From 799ecd5e3cd6a410c25d859b51cdd175ff8e3256 Mon Sep 17 00:00:00 2001 From: Matt Garber Date: Mon, 24 Apr 2023 15:29:02 -0400 Subject: [PATCH] Initial release --- .github/pull_request_template.md | 7 + .github/workflows/ci.yaml | 36 + .gitignore | 135 + .pre-commit-config.yaml | 17 + .pylintrc | 436 + .sqlfluffignore | 4 + LICENSE | 201 + README.md | 5 + cumulus_library/__init__.py | 0 cumulus_library/base_runner.py | 20 + cumulus_library/cli.py | 265 + cumulus_library/errors.py | 17 + cumulus_library/helper.py | 57 + cumulus_library/schema/__init__.py | 0 cumulus_library/schema/columns.py | 106 + cumulus_library/schema/counts.py | 128 + cumulus_library/schema/typesystem.py | 107 + cumulus_library/schema/valueset.py | 145 + cumulus_library/studies/core/condition.sql | 85 + .../studies/core/documentreference.sql | 81 + cumulus_library/studies/core/encounter.sql | 115 + cumulus_library/studies/core/fhir_define.sql | 115 + cumulus_library/studies/core/manifest.toml | 23 + .../studies/core/observation_lab.sql | 80 + cumulus_library/studies/core/patient.sql | 60 + cumulus_library/studies/core/setup.sql | 63 + cumulus_library/studies/core/study_period.sql | 45 + cumulus_library/studies/template/counts.sql | 25 + .../studies/template/date_range.sql | 5 + .../studies/template/lab_observations.sql | 16 + .../studies/template/manifest.toml | 46 + cumulus_library/studies/template/setup.sql | 39 + cumulus_library/studies/vocab/ICD10.bsv | 195890 +++++++++++++++ cumulus_library/studies/vocab/ICD9.bsv | 29779 +++ cumulus_library/studies/vocab/icd_legend.sql | 20 + cumulus_library/studies/vocab/manifest.toml | 11 + .../studies/vocab/vocab_icd_builder.py | 126 + cumulus_library/study_parser.py | 332 + cumulus_library/template_sql/ctas.sql.jinja | 27 + .../template_sql/drop_view_table.sql.jinja | 1 + .../template_sql/insert_into.sql.jinja | 23 + .../template_sql/show_tables.sql.jinja | 1 + .../template_sql/show_views.sql.jinja | 1 + cumulus_library/template_sql/templates.py | 95 + docs/aws-setup.md | 52 + docs/core-study-details.md | 92 + docs/creating-studies.md | 121 + docs/first-time-setup.md | 86 + docs/sample-iam-policy.json | 116 + pyproject.toml | 74 + tests/__init__.py | 0 tests/test_cli.py | 46 + tests/test_data/__init__.py | 0 tests/test_data/count_synthea_patient.csv | 254 + tests/test_data/count_synthea_patient.parquet | Bin 0 -> 3967 bytes tests/test_data/parser_mock_data.py | 38 + .../study_missing_prefix/manifest.toml | 6 + .../study_python_no_subclass/manifest.toml | 5 + .../study_python_no_subclass/module1.py | 6 + .../study_python_no_subclass/module2.py | 3 + .../study_python_no_subclass/test.sql | 1 + .../study_python_valid/manifest.toml | 5 + tests/test_data/study_python_valid/module1.py | 6 + tests/test_data/study_python_valid/module2.py | 6 + tests/test_data/study_python_valid/test.sql | 1 + tests/test_data/study_valid/manifest.toml | 7 + tests/test_data/study_valid/test.sql | 1 + .../study_wrong_prefix/manifest.toml | 7 + tests/test_data/study_wrong_prefix/test.sql | 1 + .../test_data/study_wrong_type/manifest.toml | 7 + tests/test_study_parser.py | 128 + tests/test_templates.py | 36 + 72 files changed, 229895 insertions(+) create mode 100644 .github/pull_request_template.md create mode 100644 .github/workflows/ci.yaml create mode 100644 .gitignore create mode 100644 .pre-commit-config.yaml create mode 100644 .pylintrc create mode 100644 .sqlfluffignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 cumulus_library/__init__.py create mode 100644 cumulus_library/base_runner.py create mode 100755 cumulus_library/cli.py create mode 100644 cumulus_library/errors.py create mode 100644 cumulus_library/helper.py create mode 100644 cumulus_library/schema/__init__.py create mode 100644 cumulus_library/schema/columns.py create mode 100644 cumulus_library/schema/counts.py create mode 100644 cumulus_library/schema/typesystem.py create mode 100644 cumulus_library/schema/valueset.py create mode 100644 cumulus_library/studies/core/condition.sql create mode 100644 cumulus_library/studies/core/documentreference.sql create mode 100644 cumulus_library/studies/core/encounter.sql create mode 100644 cumulus_library/studies/core/fhir_define.sql create mode 100644 cumulus_library/studies/core/manifest.toml create mode 100644 cumulus_library/studies/core/observation_lab.sql create mode 100644 cumulus_library/studies/core/patient.sql create mode 100644 cumulus_library/studies/core/setup.sql create mode 100644 cumulus_library/studies/core/study_period.sql create mode 100644 cumulus_library/studies/template/counts.sql create mode 100644 cumulus_library/studies/template/date_range.sql create mode 100644 cumulus_library/studies/template/lab_observations.sql create mode 100644 cumulus_library/studies/template/manifest.toml create mode 100644 cumulus_library/studies/template/setup.sql create mode 100644 cumulus_library/studies/vocab/ICD10.bsv create mode 100644 cumulus_library/studies/vocab/ICD9.bsv create mode 100644 cumulus_library/studies/vocab/icd_legend.sql create mode 100644 cumulus_library/studies/vocab/manifest.toml create mode 100644 cumulus_library/studies/vocab/vocab_icd_builder.py create mode 100644 cumulus_library/study_parser.py create mode 100644 cumulus_library/template_sql/ctas.sql.jinja create mode 100644 cumulus_library/template_sql/drop_view_table.sql.jinja create mode 100644 cumulus_library/template_sql/insert_into.sql.jinja create mode 100644 cumulus_library/template_sql/show_tables.sql.jinja create mode 100644 cumulus_library/template_sql/show_views.sql.jinja create mode 100644 cumulus_library/template_sql/templates.py create mode 100644 docs/aws-setup.md create mode 100644 docs/core-study-details.md create mode 100644 docs/creating-studies.md create mode 100644 docs/first-time-setup.md create mode 100644 docs/sample-iam-policy.json create mode 100644 pyproject.toml create mode 100644 tests/__init__.py create mode 100644 tests/test_cli.py create mode 100644 tests/test_data/__init__.py create mode 100644 tests/test_data/count_synthea_patient.csv create mode 100644 tests/test_data/count_synthea_patient.parquet create mode 100644 tests/test_data/parser_mock_data.py create mode 100644 tests/test_data/study_missing_prefix/manifest.toml create mode 100644 tests/test_data/study_python_no_subclass/manifest.toml create mode 100644 tests/test_data/study_python_no_subclass/module1.py create mode 100644 tests/test_data/study_python_no_subclass/module2.py create mode 100644 tests/test_data/study_python_no_subclass/test.sql create mode 100644 tests/test_data/study_python_valid/manifest.toml create mode 100644 tests/test_data/study_python_valid/module1.py create mode 100644 tests/test_data/study_python_valid/module2.py create mode 100644 tests/test_data/study_python_valid/test.sql create mode 100644 tests/test_data/study_valid/manifest.toml create mode 100644 tests/test_data/study_valid/test.sql create mode 100644 tests/test_data/study_wrong_prefix/manifest.toml create mode 100644 tests/test_data/study_wrong_prefix/test.sql create mode 100644 tests/test_data/study_wrong_type/manifest.toml create mode 100644 tests/test_study_parser.py create mode 100644 tests/test_templates.py diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..bbe7f4f7 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,7 @@ +### Description + + +### Checklist +- [ ] Consider if documentation (like in `docs/`) needs to be updated +- [ ] Consider if tests should be added +- [ ] Run pylint if you're making changes beyond adding studies \ No newline at end of file diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000..46164764 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,36 @@ +name: CI +on: [push] +jobs: + unittest: + name: unit tests + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: 3.9 + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install ".[test]" + - name: Test with pytest + run: | + python -m pytest + lint: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + - name: Install linters + run: | + python -m pip install --upgrade pip + pip install ".[dev]" + - name: Run sqlfluff on jinja templates + run: | + sqlfluff lint + - name: Run black + if: success() || failure() # still run black if above checks fails + run: | + black --check --verbose . diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..fd59499b --- /dev/null +++ b/.gitignore @@ -0,0 +1,135 @@ +# project specific +data_export/ +.python-version +.DS_Store +cumulus_library_columns.json + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 00000000..64b6c5b2 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,17 @@ +repos: + - repo: https://github.com/psf/black + #this version is synced with the black mentioned in .github/workflows/ci.yml + rev: 22.12.0 + hooks: + - id: black + entry: bash -c 'black "$@"; git add -u' -- + # It is recommended to specify the latest version of Python + # supported by your project here, or alternatively use + # pre-commit's default_language_version, see + # https://pre-commit.com/#top_level-default_language_version + language_version: python3.9 + + - repo: https://github.com/sqlfluff/sqlfluff + rev: 2.0.2 + hooks: + - id: sqlfluff-lint diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 00000000..d44d2fad --- /dev/null +++ b/.pylintrc @@ -0,0 +1,436 @@ +# Below is a copy of Google's pylintrc, with the following modifications: +# - indent-string changed to 4 spaces (the shipped version of this config +# file has 2 because that's what Google uses internally, despite the +# public description of their style guide using 4) +# - max-line-length synced w/ black +# - wrong-import-order re-enabled, because MT likes order among chaos +# +# BELOW THIS LINE IS A COPY OF https://google.github.io/styleguide/pylintrc + +# This Pylint rcfile contains a best-effort configuration to uphold the +# best-practices and style described in the Google Python style guide: +# https://google.github.io/styleguide/pyguide.html +# +# Its canonical open-source location is: +# https://google.github.io/styleguide/pylintrc + +[MASTER] + +# Files or directories to be skipped. They should be base names, not paths. +ignore=third_party + +# Files or directories matching the regex patterns are skipped. The regex +# matches against base names, not paths. +ignore-patterns= + +# Pickle collected data for later comparisons. +persistent=no + +# List of plugins (as comma separated values of python modules names) to load, +# usually to register additional checkers. +load-plugins= + +# Use multiple processes to speed up Pylint. +jobs=4 + +# Allow loading of arbitrary C extensions. Extensions are imported into the +# active Python interpreter and may run arbitrary code. +unsafe-load-any-extension=no + + +[MESSAGES CONTROL] + +# Only show warnings with the listed confidence levels. Leave empty to show +# all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED +confidence= + +# Enable the message, report, category or checker with the given id(s). You can +# either give multiple identifier separated by comma (,) or put this option +# multiple time (only on the command line, not in the configuration file where +# it should appear only once). See also the "--disable" option for examples. +#enable= + +# Disable the message, report, category or checker with the given id(s). You +# can either give multiple identifiers separated by comma (,) or put this +# option multiple times (only on the command line, not in the configuration +# file where it should appear only once).You can also use "--disable=all" to +# disable everything first and then reenable specific checks. For example, if +# you want to run only the similarities checker, you can use "--disable=all +# --enable=similarities". If you want to run only the classes checker, but have +# no Warning level messages displayed, use"--disable=all --enable=classes +# --disable=W" +disable=abstract-method, + apply-builtin, + arguments-differ, + attribute-defined-outside-init, + backtick, + bad-option-value, + basestring-builtin, + buffer-builtin, + c-extension-no-member, + consider-using-enumerate, + cmp-builtin, + cmp-method, + coerce-builtin, + coerce-method, + delslice-method, + div-method, + duplicate-code, + eq-without-hash, + execfile-builtin, + file-builtin, + filter-builtin-not-iterating, + fixme, + getslice-method, + global-statement, + hex-method, + idiv-method, + implicit-str-concat, + import-error, + import-self, + import-star-module-level, + inconsistent-return-statements, + input-builtin, + intern-builtin, + invalid-str-codec, + locally-disabled, + long-builtin, + long-suffix, + map-builtin-not-iterating, + misplaced-comparison-constant, + missing-function-docstring, + metaclass-assignment, + next-method-called, + next-method-defined, + no-absolute-import, + no-else-break, + no-else-continue, + no-else-raise, + no-else-return, + no-init, # added + no-member, + no-name-in-module, + no-self-use, + nonzero-method, + oct-method, + old-division, + old-ne-operator, + old-octal-literal, + old-raise-syntax, + parameter-unpacking, + print-statement, + raising-string, + range-builtin-not-iterating, + raw_input-builtin, + rdiv-method, + reduce-builtin, + relative-import, + reload-builtin, + round-builtin, + setslice-method, + signature-differs, + standarderror-builtin, + suppressed-message, + sys-max-int, + too-few-public-methods, + too-many-ancestors, + too-many-arguments, + too-many-boolean-expressions, + too-many-branches, + too-many-instance-attributes, + too-many-locals, + too-many-nested-blocks, + too-many-public-methods, + too-many-return-statements, + too-many-statements, + trailing-newlines, + unichr-builtin, + unicode-builtin, + unnecessary-pass, + unpacking-in-except, + useless-else-on-loop, + useless-object-inheritance, + useless-suppression, + using-cmp-argument, + xrange-builtin, + zip-builtin-not-iterating, + + +[REPORTS] + +# Set the output format. Available formats are text, parseable, colorized, msvs +# (visual studio) and html. You can also give a reporter class, eg +# mypackage.mymodule.MyReporterClass. +output-format=text + +# Tells whether to display a full report or only the messages +reports=no + +# Python expression which should return a note less than 10 (10 is the highest +# note). You have access to the variables errors warning, statement which +# respectively contain the number of errors / warnings messages and the total +# number of statements analyzed. This is used by the global evaluation report +# (RP0004). +evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10) + +# Template used to display messages. This is a python new-style format string +# used to format the message information. See doc for all details +#msg-template= + + +[BASIC] + +# Good variable names which should always be accepted, separated by a comma +good-names=main,_ + +# Bad variable names which should always be refused, separated by a comma +bad-names= + +# Colon-delimited sets of names that determine each other's naming style when +# the name regexes allow several styles. +name-group= + +# Include a hint for the correct naming format with invalid-name +include-naming-hint=no + +# List of decorators that produce properties, such as abc.abstractproperty. Add +# to this list to register other decorators that produce valid properties. +property-classes=abc.abstractproperty,cached_property.cached_property,cached_property.threaded_cached_property,cached_property.cached_property_with_ttl,cached_property.threaded_cached_property_with_ttl + +# Regular expression matching correct function names +function-rgx=^(?:(?PsetUp|tearDown|setUpModule|tearDownModule)|(?P_?[A-Z][a-zA-Z0-9]*)|(?P_?[a-z][a-z0-9_]*))$ + +# Regular expression matching correct variable names +variable-rgx=^[a-z][a-z0-9_]*$ + +# Regular expression matching correct constant names +const-rgx=^(_?[A-Z][A-Z0-9_]*|__[a-z0-9_]+__|_?[a-z][a-z0-9_]*)$ + +# Regular expression matching correct attribute names +attr-rgx=^_{0,2}[a-z][a-z0-9_]*$ + +# Regular expression matching correct argument names +argument-rgx=^[a-z][a-z0-9_]*$ + +# Regular expression matching correct class attribute names +class-attribute-rgx=^(_?[A-Z][A-Z0-9_]*|__[a-z0-9_]+__|_?[a-z][a-z0-9_]*)$ + +# Regular expression matching correct inline iteration names +inlinevar-rgx=^[a-z][a-z0-9_]*$ + +# Regular expression matching correct class names +class-rgx=^_?[A-Z][a-zA-Z0-9]*$ + +# Regular expression matching correct module names +module-rgx=^(_?[a-z][a-z0-9_]*|__init__)$ + +# Regular expression matching correct method names +method-rgx=(?x)^(?:(?P_[a-z0-9_]+__|runTest|setUp|tearDown|setUpTestCase|tearDownTestCase|setupSelf|tearDownClass|setUpClass|(test|assert)_*[A-Z0-9][a-zA-Z0-9_]*|next)|(?P_{0,2}[A-Z][a-zA-Z0-9_]*)|(?P_{0,2}[a-z][a-z0-9_]*))$ + +# Regular expression which should only match function or class names that do +# not require a docstring. +no-docstring-rgx=(__.*__|main|test.*|.*test|.*Test)$ + +# Minimum line length for functions/classes that require docstrings, shorter +# ones are exempt. +docstring-min-length=10 + + +[TYPECHECK] + +# List of decorators that produce context managers, such as +# contextlib.contextmanager. Add to this list to register other decorators that +# produce valid context managers. +contextmanager-decorators=contextlib.contextmanager,contextlib2.contextmanager + +# Tells whether missing members accessed in mixin class should be ignored. A +# mixin class is detected if its name ends with "mixin" (case insensitive). +ignore-mixin-members=yes + +# List of module names for which member attributes should not be checked +# (useful for modules/projects where namespaces are manipulated during runtime +# and thus existing member attributes cannot be deduced by static analysis. It +# supports qualified module names, as well as Unix pattern matching. +ignored-modules= + +# List of class names for which member attributes should not be checked (useful +# for classes with dynamically set attributes). This supports the use of +# qualified names. +ignored-classes=optparse.Values,thread._local,_thread._local + +# List of members which are set dynamically and missed by pylint inference +# system, and so shouldn't trigger E1101 when accessed. Python regular +# expressions are accepted. +generated-members= + + +[FORMAT] + +# Maximum number of characters on a single line. +max-line-length=120 + +# TODO(https://github.com/PyCQA/pylint/issues/3352): Direct pylint to exempt +# lines made too long by directives to pytype. + +# Regexp for a line that is allowed to be longer than the limit. +ignore-long-lines=(?x)( + ^\s*(\#\ )??$| + ^\s*(from\s+\S+\s+)?import\s+.+$) + +# Allow the body of an if to be on the same line as the test if there is no +# else. +single-line-if-stmt=yes + +# Maximum number of lines in a module +max-module-lines=99999 + +# String used as indentation unit. The internal Google style guide mandates 2 +# spaces. Google's externaly-published style guide says 4, consistent with +# PEP 8. Here, we use 2 spaces, for conformity with many open-sourced Google +# projects (like TensorFlow). +indent-string=' ' + +# Number of spaces of indent required inside a hanging or continued line. +indent-after-paren=4 + +# Expected format of line ending, e.g. empty (any line ending), LF or CRLF. +expected-line-ending-format= + + +[MISCELLANEOUS] + +# List of note tags to take in consideration, separated by a comma. +notes=TODO + + +[STRING] + +# This flag controls whether inconsistent-quotes generates a warning when the +# character used as a quote delimiter is used inconsistently within a module. +check-quote-consistency=yes + + +[VARIABLES] + +# Tells whether we should check for unused import in __init__ files. +init-import=no + +# A regular expression matching the name of dummy variables (i.e. expectedly +# not used). +dummy-variables-rgx=^\*{0,2}(_$|unused_|dummy_) + +# List of additional names supposed to be defined in builtins. Remember that +# you should avoid to define new builtins when possible. +additional-builtins= + +# List of strings which can identify a callback function by name. A callback +# name must start or end with one of those strings. +callbacks=cb_,_cb + +# List of qualified module names which can have objects that can redefine +# builtins. +redefining-builtins-modules=six,six.moves,past.builtins,future.builtins,functools + + +[LOGGING] + +# Logging modules to check that the string format arguments are in logging +# function parameter format +logging-modules=logging,absl.logging,tensorflow.io.logging + + +[SIMILARITIES] + +# Minimum lines number of a similarity. +min-similarity-lines=4 + +# Ignore comments when computing similarities. +ignore-comments=yes + +# Ignore docstrings when computing similarities. +ignore-docstrings=yes + +# Ignore imports when computing similarities. +ignore-imports=no + + +[SPELLING] + +# Spelling dictionary name. Available dictionaries: none. To make it working +# install python-enchant package. +spelling-dict= + +# List of comma separated words that should not be checked. +spelling-ignore-words= + +# A path to a file that contains private dictionary; one word per line. +spelling-private-dict-file= + +# Tells whether to store unknown words to indicated private dictionary in +# --spelling-private-dict-file option instead of raising a message. +spelling-store-unknown-words=no + + +[IMPORTS] + +# Deprecated modules which should not be used, separated by a comma +deprecated-modules=regsub, + TERMIOS, + Bastion, + rexec, + sets + +# Create a graph of every (i.e. internal and external) dependencies in the +# given file (report RP0402 must not be disabled) +import-graph= + +# Create a graph of external dependencies in the given file (report RP0402 must +# not be disabled) +ext-import-graph= + +# Create a graph of internal dependencies in the given file (report RP0402 must +# not be disabled) +int-import-graph= + +# Force import order to recognize a module as part of the standard +# compatibility libraries. +known-standard-library= + +# Force import order to recognize a module as part of a third party library. +known-third-party=enchant, absl + +# Analyse import fallback blocks. This can be used to support both Python 2 and +# 3 compatible code, which means that the block might have code that exists +# only in one or another interpreter, leading to false positives when analysed. +analyse-fallback-blocks=no + + +[CLASSES] + +# List of method names used to declare (i.e. assign) instance attributes. +defining-attr-methods=__init__, + __new__, + setUp + +# List of member names, which should be excluded from the protected access +# warning. +exclude-protected=_asdict, + _fields, + _replace, + _source, + _make + +# List of valid names for the first argument in a class method. +valid-classmethod-first-arg=cls, + class_ + +# List of valid names for the first argument in a metaclass class method. +valid-metaclass-classmethod-first-arg=mcs + + +[EXCEPTIONS] + +# Exceptions that will emit a warning when being caught. Defaults to +# "Exception" +overgeneral-exceptions=builtins.BaseException, + builtins.Exception \ No newline at end of file diff --git a/.sqlfluffignore b/.sqlfluffignore new file mode 100644 index 00000000..65d21c8f --- /dev/null +++ b/.sqlfluffignore @@ -0,0 +1,4 @@ +# The following valid templates are ignored until sqlfluff support SHOW statements +# https://github.com/sqlfluff/sqlfluff/issues/4811 +show_tables.sql.jinja +show_views.sql.jinja diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..261eeb9e --- /dev/null +++ b/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/README.md b/README.md new file mode 100644 index 00000000..b20c0dd4 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Cumulus Library - Core + +A framework for designing, executing, and distributing SQL queries packaged as "studies", e.g., for quality monitoring, clinical research, or public health. Part of the [SMART on FHIR Cumulus Project](https://smarthealthit.org/cumulus-a-universal-sidecar-for-a-smart-learning-healthcare-system/) + +See [first time setup](./docs/first-time-setup.md) for configuring and running, [creating_studies](./docs/creating-studies.md) for using Cumulus Library as part of clinical research, and [core study details](./docs/core-study-details.md) for information about the core dataset. diff --git a/cumulus_library/__init__.py b/cumulus_library/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/cumulus_library/base_runner.py b/cumulus_library/base_runner.py new file mode 100644 index 00000000..99e1d272 --- /dev/null +++ b/cumulus_library/base_runner.py @@ -0,0 +1,20 @@ +""" abstract base for python-based study executors """ +from abc import ABC, abstractmethod + + +class BaseRunner(ABC): + """Generic base class for python study runners. + + To use a python runner, extend this class exactly once in a new module. + See ./studies/vocab for an example usage. + """ + + @abstractmethod + def run_executor(self, cursor: object, schema: str, verbose: bool): + """Main entrypoint for python runners + + :param cursor: A PEP-249 compatible cursor + :param schema: A schema name + :param verbose: toggle for verbose output mode + """ + raise NotImplementedError diff --git a/cumulus_library/cli.py b/cumulus_library/cli.py new file mode 100755 index 00000000..05a01dee --- /dev/null +++ b/cumulus_library/cli.py @@ -0,0 +1,265 @@ +#!/usr/bin/env python3 +"""Utility for building/retrieving data views in AWS Athena""" + +import argparse +import os +import sys + +from pathlib import Path, PosixPath +from typing import Dict + +import pyathena + +from pyathena.pandas.cursor import PandasCursor + +from cumulus_library.study_parser import StudyManifestParser + + +class CumulusEnv: # pylint: disable=too-few-public-methods + """ + Wrapper for Cumulus Environment vars. + Simplifies connections to StudyBuilder without requiring CLI parsing. + """ + + def __init__(self): + self.bucket = os.environ.get("CUMULUS_LIBRARY_S3") + self.region = os.environ.get("CUMULUS_LIBRARY_REGION", "us-east-1") + self.workgroup = os.environ.get("CUMULUS_LIBRARY_WORKGROUP", "cumulus") + self.profile = os.environ.get("CUMULUS_LIBRARY_PROFILE") + self.schema_name = os.environ.get("CUMULUS_LIBRARY_SCHEMA") + + def get_study_builder(self): + """Convinience method for getting athena args from environment""" + return StudyBuilder( + self.bucket, self.region, self.workgroup, self.profile, self.schema_name + ) + + +class StudyBuilder: + """Class for managing Athena cursors and executing Cumulus queries""" + + verbose = False + schema_name = None + + def __init__( # pylint: disable=too-many-arguments + self, bucket: str, region: str, workgroup: str, profile: str, schema: str + ): + self.cursor = pyathena.connect( + s3_staging_dir=bucket, + region_name=region, + work_group=workgroup, + profile_name=profile, + schema_name=schema, + ).cursor() + self.pandas_cursor = pyathena.connect( + s3_staging_dir=bucket, + region_name=region, + work_group=workgroup, + profile_name=profile, + schema_name=schema, + cursor_class=PandasCursor, + ).cursor() + self.schema_name = schema + + def reset_export_dir(self, study: PosixPath) -> None: + """ + Removes existing exports from a study's local data dir + """ + project_path = Path(__file__).resolve().parents[1] + path = Path(f"{str(project_path)}/data_export/{study}/") + if path.exists(): + for file in path.glob("*"): + file.unlink() + + ### Creating studies + def clean_and_build_study(self, target: PosixPath) -> None: + """Exports aggregates defined in a manifesty + + :param taget: A PosixPath to the study directory + """ + studyparser = StudyManifestParser(target) + studyparser.clean_study(self.cursor, self.schema_name, self.verbose) + studyparser.run_python_builder(self.cursor, self.schema_name, self.verbose) + studyparser.build_study(self.cursor, self.verbose) + + def clean_and_build_all(self, study_dict: Dict) -> None: + """Builds views for all studies. + + NOTE: By design, this method will always exclude the `template` study dir, + since 99% of the time you don't need a live copy in the database. + + :param study_dict: A dict of PosixPaths + """ + study_dict = dict(study_dict) + study_dict.pop("template") + for precursor_study in ["vocab", "core"]: + self.clean_and_build_study(study_dict[precursor_study]) + study_dict.pop(precursor_study) + for key in study_dict: + self.clean_and_build_study(study_dict[key]) + + ### Data exporters + def export_study(self, target: PosixPath) -> None: + """Exports aggregates defined in a manifesty + + :param taget: A PosixPath to the study directory + """ + studyparser = StudyManifestParser(target) + studyparser.export_study(self.pandas_cursor) + + def export_all(self, study_dict: Dict): + """Exports all defined count tables to disk""" + for key in study_dict.keys(): + self.export_study(study_dict[key]) + + +def get_study_dict() -> Dict[str, PosixPath]: + """Convenience function for getting directories in ./studies/ + + :returns: A list of pathlib.PosixPath objects + """ + manifest_studies = {} + library_path = Path(__file__).resolve().parents[0] + for path in Path(f"{library_path}/studies").iterdir(): + if path.is_dir(): + manifest_studies[path.name] = path + return manifest_studies + + +def run_cli(args: Dict): # pylint: disable=too-many-branches + """Controls which library tasks are run based on CLI arguments""" + builder = StudyBuilder( + args["s3_bucket"], + args["region"], + args["workgroup"], + args["profile"], + args["database"], + ) + if args["verbose"]: + builder.verbose = True + + # here we invoke the cursor once to confirm valid connections + builder.cursor.execute("show tables") + + if not args["build"] and not args["export"]: + sys.exit("Neither build nor export specified - exiting with no action") + study_dict = get_study_dict() + + if args["build"]: + if "all" in args["target"]: + builder.clean_and_build_all(study_dict) + else: + for target in args["target"]: + if target in study_dict: + builder.clean_and_build_study(study_dict[target]) + + if args["export"]: + if "all" in args["target"]: + builder.export_all(study_dict) + else: + for target in args["target"]: + builder.export_study(study_dict[target]) + + # returning the builder for ease of unit testing + return builder + + +def get_parser(): + """Provides parser for handling CLI arguments""" + parser = argparse.ArgumentParser( + description="""Generates study views from post-Cumulus ETL data. + + By default, make will remove, and recreate, all table views, assuming + you have set the required credentials, which are used in the following + order of preference: + - explict command line arguments + - cumulus environment variables (CUMULUS_LIBRARY_PROFILE, + CUMULUS_LIBRARY_SCHEMA, CUMULUS_LIBRARY_S3, CUMULUS_LIBRARY_REGION) + - Normal boto profile order (AWS env vars, ~/.aws/credentials, ~/.aws/config) + connecting to AWS. Passing values via the command line will override the + environment variables """ + ) + parser.add_argument( + "-t", + "--target", + action="append", + help=( + "Specify one or more studies to create views form. Default is to " + "build all studies." + ), + ) + parser.add_argument( + "-b", + "--build", + default=False, + action="store_true", + help=("Recreates Athena views from sql definitions"), + ) + parser.add_argument( + "-e", + "--export", + default=False, + action="store_true", + help=("Generates files on disk from Athena views"), + ) + parser.add_argument( + "-v", + "--verbose", + default=False, + action="store_true", + help=("Prints detailed SQL query info"), + ) + + aws = parser.add_argument_group("AWS config") + aws.add_argument("-p", "--profile", help="AWS profile", default="default") + aws.add_argument("-d", "--database", help="Cumulus ETL Athena DB/schema") + aws.add_argument( + "-w", + "--workgroup", + default="cumulus", + help="Cumulus Athena workgroup (default: cumulus)", + ) + aws.add_argument( + "-s", + "--s3_bucket", + help=( + "S3 location to store athena metadata. " "(will contain some query outputs)" + ), + ) + aws.add_argument( + "-r", + "--region", + help="AWS region data of Athena instance (default: us-east-1)", + default="us-east-1", + ) + + return parser + + +def main(cli_args=None): + """Reads CLI input/environment variables and invokes library calls""" + parser = get_parser() + args = vars(parser.parse_args(cli_args)) + if args["target"] is not None: + for target in args["target"]: + if target == "all": + args["target"] = ["all"] + break + else: + args["target"] = ["all"] + if profile_env := os.environ.get("CUMULUS_LIBRARY_PROFILE"): + args["profile"] = profile_env + if database_env := os.environ.get("CUMULUS_LIBRARY_SCHEMA"): + args["database"] = database_env + if workgroup_env := os.environ.get("CUMULUS_LIBRARY_WORKGROUP"): + args["workgroup"] = workgroup_env + if bucket_env := os.environ.get("CUMULUS_LIBRARY_S3"): + args["s3_bucket"] = bucket_env + if region_env := os.environ.get("CUMULUS_LIBRARY_REGION"): + args["region"] = region_env + + return run_cli(args) + + +if __name__ == "__main__": + main() diff --git a/cumulus_library/errors.py b/cumulus_library/errors.py new file mode 100644 index 00000000..d14d56e8 --- /dev/null +++ b/cumulus_library/errors.py @@ -0,0 +1,17 @@ +"""Error types""" + + +class LibraryError(Exception): + """ + Package level error + """ + + pass + + +class LibrarySchemaError(Exception): + """ + Package level error + """ + + pass diff --git a/cumulus_library/helper.py b/cumulus_library/helper.py new file mode 100644 index 00000000..e5a933b4 --- /dev/null +++ b/cumulus_library/helper.py @@ -0,0 +1,57 @@ +""" Collection of small commonly used utility functions """ +import os +import json +from typing import List +from rich import progress + + +def filepath(filename: str) -> str: + return os.path.join(os.path.dirname(__file__), filename) + + +def load_text(path: str) -> str: + with open(path, "r", encoding="UTF-8") as fp: + return fp.read() + + +def load_json(path: str) -> dict: + with open(path, "r", encoding="UTF-8") as fp: + return json.load(fp) + + +def parse_sql(sql_text: str) -> List[str]: + commands = [] + + for statement in sql_text.split(";"): + parsed = [] + for line in statement.splitlines(): + if not line.strip().startswith("--"): + parsed.append(line) + commands.append("\n".join(parsed)) + return filter_strip(commands) + + +def filter_strip(commands) -> List[str]: + return list(filter(None, [c.strip() for c in commands])) + + +def list_coding(code_display: dict, system=None) -> List[dict]: + as_list = [] + for code, display in code_display.items(): + if system: + item = {"code": code, "display": display, "system": system} + else: + item = {"code": code, "display": display} + as_list.append(item) + return as_list + + +def query_console_output( + verbose: bool, query: str, progress_bar: progress.Progress, task: progress.Task +): + """Convenience function for determining output type""" + if verbose: + print() + print(query) + else: + progress_bar.advance(task) diff --git a/cumulus_library/schema/__init__.py b/cumulus_library/schema/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/cumulus_library/schema/columns.py b/cumulus_library/schema/columns.py new file mode 100644 index 00000000..05bcbe1a --- /dev/null +++ b/cumulus_library/schema/columns.py @@ -0,0 +1,106 @@ +# pylint: disable=W,C,R +from enum import Enum, EnumMeta +from library.schema.typesystem import Datatypes, Coding, Vocab +from library.schema.valueset import Gender, Race, Ethnicity +from library.schema.valueset import DurationUnits +from library.schema.valueset import EncounterCode +from library.schema.valueset import ObservationInterpretationDetection + +from library.schema import future + + +class ColumnEnum(Enum): + # Counts + cnt = Datatypes.Int, "Count" + cnt_subject = Datatypes.Int, "Count Patients" + cnt_encounter = Datatypes.Int, "Count Encounters" + cnt_document = Datatypes.Int, "Count Documents" + cnt_observation = Datatypes.Int, "Count Observations" + cnt_lab = Datatypes.Int, "Count Lab Tests" + + # DataType Generics + code_display = Datatypes.Str, "Code Display" + period = Datatypes.Period, "Date Period" + + # Patient + gender = Datatypes.Coding, "Biological sex at birth", Gender + race = Datatypes.Coding, "Patient reported race", Race + race_code = Datatypes.Coding, "Patient reported race", Race + race_display = Datatypes.Str, "Patient reported race", Race + ethnicity = Datatypes.Coding, "Patient reported ethnicity", Ethnicity + age = Datatypes.Int, "Age in years calculated since DOB" + postalcode3 = Datatypes.Int, "Patient 3 digit zip" + + # Encounter + age_at_visit = Datatypes.Int, "Patient Age at Encounter" + age_group = Datatypes.Str, "Patient Age Group at Encounter" + enc_class = Datatypes.Coding, "Encounter Code (Healthcare Setting)", EncounterCode + enc_class_code = ( + Datatypes.Coding, + "Encounter Code (Healthcare Setting)", + EncounterCode, + ) + start_date = Datatypes.DateTime, "Day patient encounter started", DurationUnits.days + start_week = Datatypes.Date, "Week patient encounter started", DurationUnits.weeks + start_month = ( + Datatypes.Date, + "Month patient encounter started", + DurationUnits.months, + ) + start_year = Datatypes.Date, "Year patient encounter started", DurationUnits.years + end_date = Datatypes.DateTime, "Day patient encounter ended", DurationUnits.days + enc_los_days = Datatypes.Int, "LOS Length Of Stay (days)", DurationUnits.days + enc_los_weeks = Datatypes.Int, "LOS Length Of Stay (weeks)", DurationUnits.weeks + + # Condition + cond_code = Datatypes.Coding, "Condition code" + cond_code_display = Datatypes.Str, "Condition code" + cond_icd10 = Vocab.ICD10, "Condition code ICD10" + cond_snomed = Vocab.SNOMED, "Condition code SNOMED" + cond_date = Datatypes.DateTime, "Day condition recorded", DurationUnits.days + cond_week = Datatypes.Date, "Week condition recorded", DurationUnits.weeks + cond_month = Datatypes.Date, "Month condition recorded", DurationUnits.months + cond_year = Datatypes.Date, "Year condition recorded", DurationUnits.years + + # DocumentReference + author_date = Datatypes.DateTime, "Day document was authored", DurationUnits.days + author_week = Datatypes.Date, "Week document was authored", DurationUnits.weeks + author_month = Datatypes.Date, "Month document was authored", DurationUnits.months + author_year = Datatypes.Date, "Year document was authored", DurationUnits.years + doc_type = Vocab.LOINC, "Type of Document" + doc_type_code = Datatypes.Coding, "Type of Document (code)" + doc_type_display = Datatypes.Str, "Type of Document (display)" + doc_class = Vocab.LOINC, "Class of DocumentNote" + ed_note = Datatypes.Boolean, "ED Note was documented for encounter (true/false)" + + # Observation Lab + lab_code = Datatypes.Coding, "Laboratory Code" + lab_code_display = Datatypes.Str, "Laboratory Code Display" + lab_result = ( + Datatypes.Coding, + "Laboratory result interpretation", + ObservationInterpretationDetection, + ) + lab_result_display = Datatypes.Str, "Laboratory result" + lab_date = Datatypes.DateTime, "Day of lab result", DurationUnits.days + lab_week = Datatypes.Date, "Week of lab result", DurationUnits.weeks + lab_month = Datatypes.Date, "Month of lab result", DurationUnits.months + lab_year = Datatypes.Date, "Year of lab result", DurationUnits.years + analyte = Datatypes.Str, "Analyte/component" + + # Observation Lab PCR + pcr_code = Datatypes.Coding, "PCR test code" + pcr_result = ( + Datatypes.Coding, + "PCR result interpretation", + ObservationInterpretationDetection, + ) + pcr_result_display = ( + Datatypes.Str, + "PCR result interpretation", + ObservationInterpretationDetection, + ) + pcr_date = Datatypes.Date, "Day of PCR result", DurationUnits.days + pcr_week = Datatypes.Date, "Week of PCR result", DurationUnits.weeks + pcr_month = Datatypes.Date, "Month of PCR result", DurationUnits.months + pcr_year = Datatypes.Date, "Year of PCR result", DurationUnits.years diff --git a/cumulus_library/schema/counts.py b/cumulus_library/schema/counts.py new file mode 100644 index 00000000..e045d79d --- /dev/null +++ b/cumulus_library/schema/counts.py @@ -0,0 +1,128 @@ +# pylint: disable=W,C,R +from library.schema.valueset import DurationUnits +from library.schema.columns import ColumnEnum as Column +from library.errors import LibraryError + +################################################## +# Google Style Guide +# +# https://google.github.io/styleguide/pyguide.html +# Design by composition composition for +# +# Query Grammar (in progress) +# +# Functions = support iterable lists/types +# Objects = typesafety only +################################################## + + +def drop(table_or_view) -> str: + return f"DROP table if exists {table_or_view};" + + +def create_view(view_name) -> str: + return f"CREATE or replace VIEW {view_name} AS " + + +def name_view(count_from_table: str, duration_col=None): + if duration_col: + return f"{count_from_table}_{as_duration(duration_col).name}" + else: + return f"{count_from_table}" + + +def as_duration(col: str) -> DurationUnits: + if "_months" in col: + return DurationUnits.months + elif "_weeks" in col: + return DurationUnits.weeks + elif "_days" in col: + return DurationUnits.days + + +def str_columns(cols) -> str: + if isinstance(cols, str): + return cols + if isinstance(cols, Column): + return cols.name + if isinstance(cols, list): + targets = [str_columns(c) for c in cols] + return ", ".join(targets) + + +def where_clauses(clause=None, min_subject=10) -> str: + if not clause: + return f"cnt_subject >= {min_subject}" + elif isinstance(clause, str): + return clause + elif isinstance(clause, list): + return str_columns(clause) + ", cnt desc" + else: + raise LibraryError(f"where_sql() invalid clause {clause}") + + +def order_by_sql(order=None, cnt_desc=True) -> str: + if not order: + if cnt_desc: + return "cnt desc;" + elif isinstance(order, str): + return order + elif isinstance(order, list): + if cnt_desc: + return str_columns(order) + ", cnt desc;" + else: + return str_columns(order) + ";" + + +def count_patient( + view_name: str, from_table: str, cols_object, where=None, order_by=None +) -> str: + return count_query( + view_name, from_table, cols_object, where, order_by, cnt_encounter=False + ) + + +def count_encounter( + view_name: str, from_table: str, cols_object, where=None, order_by=None +) -> str: + return count_query( + view_name, from_table, cols_object, where, order_by, cnt_encounter=True + ) + + +def count_query( + view_name: str, + from_table: str, + cols_object, + where=None, + order_by=None, + cnt_encounter=None, +) -> str: + cols = str_columns(cols_object) + + cnt_subject = "count(distinct subject_ref) as cnt_subject" + + if cnt_encounter: + cnt_encounter = ", count(distinct encounter_ref) as cnt_encounter" + else: + cnt_encounter = False + + return f""" + {create_view(view_name)} + with powerset as + ( + select + {cnt_subject} + {cnt_encounter if cnt_encounter else ''} + , {cols} + FROM {from_table} + group by CUBE + ( {cols} ) + ) + select + {'cnt_encounter ' if cnt_encounter else 'cnt_subject'} as cnt + , {cols} + from powerset + WHERE {where_clauses(where)} + ORDER BY {order_by_sql(order_by)} + """.strip() diff --git a/cumulus_library/schema/typesystem.py b/cumulus_library/schema/typesystem.py new file mode 100644 index 00000000..296f7099 --- /dev/null +++ b/cumulus_library/schema/typesystem.py @@ -0,0 +1,107 @@ +# pylint: disable=W,C,R +from enum import Enum + +from fhirclient.models.fhirdate import FHIRDate + + +class FHIR(Enum): + def __init__(self, url: str): + self.url = url + + +class Structure(FHIR): + """ + FHIR Conformance (partial conformance towards USCDI) + """ + + Patient = "http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient" + Encounter = "http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter" + DocumentReference = ( + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference" + ) + Condition = "http://hl7.org/fhir/condition-definitions.html" + ObservationLab = ( + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab" + ) + ObservationValue = ( + "http://hl7.org/fhir/observation-definitions.html#Observation.value_x_" + ) + VitalSign = "http://hl7.org/fhir/us/vitals/ImplementationGuide/hl7.fhir.us.vitals" + + +class Vocab(FHIR): + """ + Terminologies (mapped to UMLS) referenced by Cumulus + https://terminology.hl7.org/ + """ + + ICD9 = "http://hl7.org/fhir/sid/icd-9-cm" + ICD10 = "http://hl7.org/fhir/sid/icd-10-cm" + LOINC = "http://loinc.org" + SNOMED = "http://snomed.info/sct" + UMLS = "http://www.nlm.nih.gov/research/umls/" + RXNORM = "http://www.nlm.nih.gov/research/umls/rxnorm" + CPT = "http://www.ama-assn.org/go/cpt" + + +class Datatypes(FHIR): + # basic datatypes + Boolean = "https://hl7.org/fhir/datatypes.html#boolean" + Date = "https://www.hl7.org/fhir/datatypes.html#date" + DateTime = "https://www.hl7.org/fhir/datatypes.html#dateTime" + Str = "https://hl7.org/fhir/datatypes.html#string" + Int = "http://hl7.org/fhir/datatypes.html#positiveInt" + Decimal = "https://www.hl7.org/fhir/datatypes.html#decimal" + Code = "https://www.hl7.org/fhir/datatypes.html#code" + Coding = "https://www.hl7.org/fhir/datatypes.html#coding" + Range = "https://hl7.org/fhir/datatypes.html#Range" + Period = "https://www.hl7.org/fhir/datatypes.html#Period" + Duration = "http://hl7.org/fhir/datatypes.html#Duration" + Count = "http://hl7.org/fhir/search.html#count" + + +class Period: + def __init__(self, start=None, end=None): + """ + :param start: date + :param end: date + """ + self.system = Datatypes.Period + self.start = None + self.end = None + + if isinstance(start, str): + self.start = FHIRDate(start) + else: + self.start = self.start + + if isinstance(end, str): + self.end = FHIRDate(end) + else: + self.end = end + + def as_json(self): + return {"start": str(self.start), "end": str(self.end), "system": self.system} + + +class Range: + def __init__(self, low=None, high=None): + self.system = Datatypes.Range + self.low = low + self.high = high + + def as_json(self): + return {"low": str(self.low), "high": str(self.high), "system": self.system} + + +class Coding(Enum): + def __init__(self, code=None, display=None, system=None): + self.system = system + self.code = code + self.display = display if display else code + + def as_json(self): + if self.system: + return {"code": self.code, "display": self.display, "system": self.system} + else: + return {"code": self.code, "display": self.display} diff --git a/cumulus_library/schema/valueset.py b/cumulus_library/schema/valueset.py new file mode 100644 index 00000000..be5ecbcf --- /dev/null +++ b/cumulus_library/schema/valueset.py @@ -0,0 +1,145 @@ +# pylint: disable=W,C,R +from enum import Enum +from library.schema.typesystem import Coding, Vocab + +################################################################################ +# FHIR ValueSets +################################################################################ + + +class ValueSet(Enum): + Gender = "http://hl7.org/fhir/ValueSet/administrative-gender" + Race = "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race" + Ethnicity = "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity" + DurationUnits = "http://hl7.org/fhir/valueset-duration-units.html" + Units = "http://hl7.org/fhir/ValueSet/ucum-units" + EncounterCode = "http://hl7.org/fhir/v3/ActEncounterCode/vs.html" + EncounterStatus = "http://hl7.org/fhir/ValueSet/encounter-status" + EncounterType = "http://hl7.org/fhir/ValueSet/encounter-type" + EncounterReason = "http://hl7.org/fhir/ValueSet/encounter-reason" + EncounterLocationStatus = "http://hl7.org/fhir/ValueSet/encounter-location-status" + ConditionCode = "http://hl7.org/fhir/ValueSet/condition-code" + ConditionCategory = "http://hl7.org/fhir/ValueSet/condition-category" + DocumentType = "http://hl7.org/fhir/ValueSet/c80-doc-typecodes" + ObservationCode = "http://hl7.org/fhir/ValueSet/observation-codes" + ObservationCategory = "http://hl7.org/fhir/ValueSet/observation-category" + ObservationInterpretation = ( + "http://hl7.org/fhir/ValueSet/observation-interpretation" + ) + + def __init__(self, url: str): + self.url = url + + +class DurationUnits(Coding): + milliseconds = ("ms", "milliseconds") + seconds = ("s", "seconds") + minutes = ("min", "minutes") + hours = ("h", "hours") + days = ("d", "days") + weeks = ("wk", "weeks") + months = ("mo", "months") + years = ("a", "years") + + def __init__(self, code, display): + super().__init__(code, display, ValueSet.DurationUnits.url) + + +class Gender(Coding): + """ + Biological Sex of patient, not "gender identity" + http://hl7.org/fhir/valueset-administrative-gender.html + """ + + male = ("male", "Male") + female = ("female", "Female") + trans_male = ("other", "Other") + unknown = ("unknown", "Unknown") + + def __init__(self, code=None, display=None): + super().__init__(code, display, ValueSet.Gender.url) + + +class Race(Coding): + """ + Race coding has 5 "root" levels, called the R5 shown below. + http://hl7.org/fhir/r4/v3/Race/cs.html + """ + + asian = ("2028-9", "Asian") + black = ("2054-5", "Black or African American") + white = ("2106-3", "White") + native = ("1002-5", "American Indian or Alaska Native") + islander = ("2076-8", "Native Hawaiian or Other Pacific Islander") + + def __init__(self, code, display): + super().__init__(code, display, ValueSet.Race.url) + + +class Ethnicity(Coding): + """ + RWD usually has only this binary YES/NO hispanic or latino feature populated. + For a complete list of codes, see Ethnicity.system. + """ + + hispanic_or_latino = ("2135-2", "Hispanic or Latino Hispanic or Latino") + not_hispanic_or_latino = ("2186-5", "Not Hispanic or Latino") + + def __init__(self, code, display): + super().__init__(code, display, ValueSet.Ethnicity.url) + + +################################################################################ +# Encounter +################################################################################ + + +class EncounterCode(Coding): + AMB = ("AMB", "ambulatory") + EMER = ("EMER", "emergency") + FLD = ("FLD", "field") + HH = ("HH", "home health") + IMP = ("IMP", "inpatient encounter") + ACUTE = ("ACUTE", "inpatient acute") + NONAC = ("NONAC", "inpatient non-acute") + OBSENC = ("OBSENC", "observation encounter") + PRENC = ("PRENC", "pre-admission") + SS = ("SS", "short stay") + VR = ("VR", "virtual") + + def __init__(self, code, display=None): + super().__init__(code, display, ValueSet.EncounterCode.value) + + +################################################################################ +# Observation +################################################################################ + + +class ObservationInterpretationDetection(Coding): + positive = ("POS", "Positive") + negative = ("NEG", "Negative") + indeterminate = ("IND", "Indeterminate") + equivocal = ("E", "Equivocal") + detected = ("DET", "Detected") + not_detected = ("ND", "Not detected") + + def __init__(self, code, display): + """ + Cumulus Library Note: PCR testing should use "POS", "NEG", and "IND" codes. + http://hl7.org/fhir/R4/v3/ObservationInterpretation/cs.html#v3-ObservationInterpretation-ObservationInterpretationDetection + + Interpretations of the presence or absence of a component / analyte or organism in a test or of a sign in a clinical observation. + In keeping with laboratory data processing practice, these concepts provide a categorical interpretation of the "meaning" of the quantitative value for the same observation. + + POS = + A presence finding of the specified component / analyte, organism or clinical sign based on the established threshold of the performed test or procedure. + + NEG = + An absence finding of the specified component / analyte, organism or clinical sign based on the established threshold of the performed test or procedure. + + IND = + The specified component / analyte, organism or clinical sign could neither be declared positive / negative nor detected / not detected by the performed test or procedure. + Usage Note: For example, if the specimen was degraded, poorly processed, or was missing the required anatomic structures, then "indeterminate" (i.e. "cannot be determined") is the appropriate response, not "equivocal". + """ + super().__init__(code, display, ValueSet.ObservationInterpretation.url) diff --git a/cumulus_library/studies/core/condition.sql b/cumulus_library/studies/core/condition.sql new file mode 100644 index 00000000..9d9757fe --- /dev/null +++ b/cumulus_library/studies/core/condition.sql @@ -0,0 +1,85 @@ +-- ############################################################ +-- Condition +-- https://build.fhir.org/ig/HL7/US-Core/StructureDefinition-us-core-condition-encounter-diagnosis.html +-- +--Each Condition must have: +-- a category code of “problem-list-item” or “health-concern” +-- a code that identifies the condition +-- a patient +--Each Condition must support: +-- a clinical status of the condition (e.g., active or resolved) +-- a verification status +-- a category code of ‘sdoh’ +-- a date of diagnosis* +-- abatement date (in other words, date of resolution or remission) +-- a date when recorded + + +CREATE TABLE core__condition AS +WITH temp_condition AS ( + SELECT + c.category, + c.code, + c.clinicalstatus, + c.verificationstatus, + c.subject.reference AS subject_ref, + c.encounter.reference AS encounter_ref, + c.id AS condition_id, + date(from_iso8601_timestamp(c.recordeddate)) AS recordeddate, + concat('Condition/', c.id) AS condition_ref + FROM condition AS c +) + +SELECT + t_category_coding.category_row AS category, + tc.code AS cond_code, + tc.subject_ref, + tc.encounter_ref, + tc.condition_id, + tc.condition_ref, + tc.recordeddate, + date_trunc('week', date(tc.recordeddate)) AS recorded_week, + date_trunc('month', date(tc.recordeddate)) AS recorded_month, + date_trunc('year', date(tc.recordeddate)) AS recorded_year +FROM temp_condition AS tc, + unnest(category) AS t_category (category_coding), --noqa + unnest(category_coding.coding) AS t_category_coding (category_row), --noqa + unnest(code.coding) AS t_coding (code_row) --noqa +WHERE tc.recordeddate BETWEEN date('2016-01-01') AND current_date; + +CREATE OR REPLACE VIEW core__join_condition_icd AS +SELECT + cc.subject_ref, + cc.encounter_ref, + cc.recorded_month AS cond_month, + ce.enc_class.code AS enc_class_code, + vil.code AS cond_code, + vil.code_display AS cond_code_display +FROM core__condition AS cc, core__encounter AS ce, vocab__icd_legend AS vil +WHERE + cc.encounter_ref = ce.encounter_ref + AND cc.cond_code.coding[1].code = vil.code; --noqa + +CREATE OR REPLACE VIEW core__count_condition_icd10_month AS +WITH powerset AS ( + SELECT + count(DISTINCT cc.subject_ref) AS cnt_subject, + count(DISTINCT cc.encounter_ref) AS cnt_encounter, + vil.code_display, + cc.recorded_month, + ce.enc_class + FROM core__condition AS cc, core__encounter AS ce, vocab__icd_legend AS vil + WHERE + cc.encounter_ref = ce.encounter_ref + AND cc.cond_code.coding[1].code = vil.code --noqa + GROUP BY cube(vil.code_display, cc.recorded_month, ce.enc_class) +) + +SELECT + powerset.cnt_subject AS cnt, + powerset.recorded_month AS cond_month, + powerset.code_display AS cond_code_display, + enc_class.code AS enc_class_code +FROM powerset +WHERE powerset.cnt_subject >= 10 +ORDER BY powerset.cnt_subject DESC, powerset.cnt_encounter DESC; diff --git a/cumulus_library/studies/core/documentreference.sql b/cumulus_library/studies/core/documentreference.sql new file mode 100644 index 00000000..1f04fafc --- /dev/null +++ b/cumulus_library/studies/core/documentreference.sql @@ -0,0 +1,81 @@ +-- ############################################################# +-- DocumentReference +-- https://hl7.org/fhir/us/core/StructureDefinition-us-core-documentreference.html + +--Each DocumentReference must have: +-- a status +-- a code describing the type of document +-- a document category +-- a patient +-- document referenced (content) +-- the MIME type (i.e. contentType) of the document + +--Each DocumentReference must support: +-- a business identifier for the DocumentReference (possibly generated by the transcription system or EHR) +-- date and time the reference was created +-- an author +-- a code identifying the specific details about the format of the document — over and above the content’s MIME type +-- the patient encounter that is being referenced +-- clinically relevant date + +CREATE TABLE core__documentreference AS +WITH temp_documentreference AS ( + SELECT DISTINCT + dr.type, + dr.status, + dr.context, + dr.subject.reference AS subject_ref, + dr.id AS doc_id, + date( + from_iso8601_timestamp(dr.context.period."start") + ) AS author_date, + concat('DocumentReference/', dr.id) AS doc_ref + FROM documentreference AS dr +) + +SELECT DISTINCT + type_coding.type_row AS doc_type, + coalesce(type_coding.type_row.code, '?') AS doc_type_code, + CASE + WHEN + type_coding.type_row.display IS NOT NULL + THEN replace(type_coding.type_row.display, ',') + ELSE type_row.code + END AS doc_type_display, + tdr.status, + context_encounter.encounter.reference AS encounter_ref, + date_trunc('day', tdr.author_date) AS author_date, + date_trunc('week', tdr.author_date) AS author_week, + date_trunc('month', tdr.author_date) AS author_month, + date_trunc('year', tdr.author_date) AS author_year, + tdr.subject_ref, + tdr.doc_id, + tdr.doc_ref +FROM temp_documentreference AS tdr, + unnest(context.encounter) AS context_encounter (encounter), --noqa + unnest(type.coding) AS type_coding (type_row) +WHERE author_date BETWEEN date('2016-06-01') AND current_date; + +-- count *group by* DocumentReference.type +CREATE OR REPLACE VIEW core__count_documentreference_month AS +WITH powerset AS ( + SELECT + count(DISTINCT d.subject_ref) AS cnt_subject, + count(DISTINCT d.encounter_ref) AS cnt_encounter, + count(DISTINCT d.doc_id) AS cnt_document, + d.doc_type_display, + d.author_month, + e.enc_class.code AS enc_class_code + FROM core__documentreference AS d, core__encounter AS e + WHERE d.encounter_ref = e.encounter_ref + GROUP BY cube(d.doc_type_display, d.author_month, e.enc_class) +) + +SELECT DISTINCT + cnt_document AS cnt, + author_month, + enc_class_code, + doc_type_display +FROM powerset +WHERE cnt_subject >= 10 +ORDER BY cnt_document DESC, enc_class_code ASC; diff --git a/cumulus_library/studies/core/encounter.sql b/cumulus_library/studies/core/encounter.sql new file mode 100644 index 00000000..ce8316ae --- /dev/null +++ b/cumulus_library/studies/core/encounter.sql @@ -0,0 +1,115 @@ +-- ############################################################# +-- Encounter +-- https://build.fhir.org/ig/HL7/US-Core/StructureDefinition-us-core-encounter.html + +CREATE TABLE core__encounter AS +WITH temp_encounter AS ( + SELECT DISTINCT + e.period, + e.status, + e.class, + e.type, + e.subject.reference AS subject_ref, + e.id AS encounter_id, + date(from_iso8601_timestamp(e.period."start")) AS start_date, + date(from_iso8601_timestamp(e.period."end")) AS end_date, + concat('Encounter/', e.id) AS encounter_ref + -- , reasonCode + -- , dischargeDisposition + FROM encounter AS e +) + +SELECT DISTINCT + e.class AS enc_class, + e.type AS enc_type, + date_diff('year', date(p.birthdate), e.start_date) AS age_at_visit, + date_trunc('day', e.start_date) AS start_date, + date_trunc('day', e.end_date) AS end_date, + date_trunc('week', e.start_date) AS start_week, + date_trunc('month', e.start_date) AS start_month, + date_trunc('year', e.start_date) AS start_year, + e.subject_ref, + e.encounter_ref, + e.encounter_id +FROM temp_encounter AS e, core__patient AS p +WHERE + e.subject_ref = p.subject_ref + AND start_date BETWEEN date('2016-06-01') AND current_date; + +CREATE OR REPLACE VIEW core__join_encounter_patient AS +SELECT + ce.enc_class, + ce.enc_type, + ce.age_at_visit, + ce.start_date, + ce.end_date, + ce.start_week, + ce.start_month, + ce.start_year, + ce.subject_ref, + ce.encounter_ref, + ce.encounter_id, + ce.enc_class.code AS enc_class_code, + cp.gender, + cp.race, + cp.postalcode3 +FROM core__encounter AS ce, core__patient AS cp +WHERE ce.subject_ref = cp.subject_ref; + + +CREATE OR REPLACE VIEW core__count_encounter_month AS +WITH powerset AS ( + SELECT + count(DISTINCT ce.subject_ref) AS cnt_subject, + count(DISTINCT ce.encounter_id) AS cnt_encounter, + ce.enc_class.code AS enc_class_code, + ce.start_month, + ce.age_at_visit, + cp.gender, + cp.race, + cp.postalcode3 + FROM core__encounter AS ce, core__patient AS cp + WHERE ce.subject_ref = cp.subject_ref + GROUP BY + cube( + ce.enc_class, + ce.start_month, + ce.age_at_visit, + cp.gender, + cp.race, + cp.postalcode3 + ) +) + +SELECT DISTINCT + powerset.cnt_encounter AS cnt, + powerset.enc_class_code, + powerset.start_month, + powerset.age_at_visit, + powerset.gender, + race.display AS race_display, + powerset.postalcode3 +FROM powerset +WHERE powerset.cnt_subject >= 10 +ORDER BY + powerset.start_month ASC, powerset.enc_class_code ASC, powerset.age_at_visit ASC; + +CREATE OR REPLACE VIEW core__count_encounter_day AS +WITH powerset AS ( + SELECT + count(DISTINCT ce.subject_ref) AS cnt_subject, + count(DISTINCT ce.encounter_id) AS cnt_encounter, + ce.enc_class.code AS enc_class_code, + ce.start_date + FROM core__encounter AS ce, core__patient AS cp + WHERE ce.subject_ref = cp.subject_ref + GROUP BY cube(ce.enc_class, ce.start_date) +) + +SELECT DISTINCT + cnt_encounter AS cnt, + enc_class_code, + start_date +FROM powerset +WHERE cnt_subject >= 10 +ORDER BY start_date ASC, enc_class_code ASC; diff --git a/cumulus_library/studies/core/fhir_define.sql b/cumulus_library/studies/core/fhir_define.sql new file mode 100644 index 00000000..54b750ef --- /dev/null +++ b/cumulus_library/studies/core/fhir_define.sql @@ -0,0 +1,115 @@ +-- ############################################################ +-- FHIR Terminology + +CREATE OR REPLACE VIEW core__fhir_vocab AS SELECT * FROM + ( + VALUES + ('ICD10', 'http://hl7.org/fhir/sid/icd-10-cm'), + ('ICD10', '2.16.840.1.113883.6.90'), + ('ICD10', 'ICD10'), + ('ICD10', 'ICD-10'), + ('ICD10', 'ICD-10-CM'), + ('ICD10', 'ICD10-CM'), + + ('ICD9', 'http://hl7.org/fhir/sid/icd-9-cm'), + ('ICD9', '2.16.840.1.113883.6.103'), + ('ICD9', 'ICD9'), + ('ICD9', 'ICD-9'), + ('ICD9', 'ICD-9-CM'), + ('ICD9', 'ICD9-CM'), + + ('SNOMED', 'http://snomed.info/sct'), + ('SNOMED', '2.16.840.1.113883.6.96'), + ('SNOMED', 'SNOMEDCT'), + ('SNOMED', 'SNOMEDCT_US'), + ('SNOMED', 'SNOMED'), + + ('LOINC', 'http://loinc.org'), + ('LOINC', '2.16.840.1.113883.6.1'), + ('LOINC', 'LOINC'), + ('LOINC', 'LNC'), + + ('RXNORM', 'http://www.nlm.nih.gov/research/umls/'), + ('RXNORM', '2.16.840.1.113883.6.88'), + ('RXNORM', 'RXNORM'), + + ('UMLS', 'http://www.nlm.nih.gov/research/umls/'), + ('UMLS', 'UMLS'), + + ('CPT', 'http://www.ama-assn.org/go/cpt'), + ('CPT', 'CPT') + ) AS t (alias, vocab); --noqa: AL05 + +-- ############################################################ +-- FHIR StructureDefinition + +CREATE OR REPLACE VIEW core__fhir_define AS +SELECT * FROM + ( + VALUES + ( + 'Patient', + 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient' + ), + ('Gender', 'http://hl7.org/fhir/ValueSet/administrative-gender'), + ( + 'Race', + 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-race' + ), + ( + 'Ethnicity', + 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity' + ), + ( + 'PostalCode', + 'http://hl7.org/fhir/datatypes-definitions.html#Address.postalCode' + ), + ( + 'Encounter', + 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter' + ), + ('EncounterStatus', 'http://hl7.org/fhir/ValueSet/encounter-status'), + ('EncounterType', 'http://hl7.org/fhir/ValueSet/encounter-type'), + ('EncounterReason', 'http://hl7.org/fhir/ValueSet/encounter-reason'), + ('EncounterCode', 'http://hl7.org/fhir/v3/ActEncounterCode/vs.html'), + ( + 'EncounterLocationStatus', + 'http://hl7.org/fhir/ValueSet/encounter-location-status' + ), + ('Period', 'http://hl7.org/fhir/datatypes.html#Period'), + ('Coding', 'http://hl7.org/fhir/datatypes.html#Coding'), + ( + 'DocumentReference', + 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference' + ), + ('DocumentType', 'http://hl7.org/fhir/ValueSet/c80-doc-typecodes'), + ('Condition', 'http://hl7.org/fhir/condition-definitions.html'), + ('ConditionCode', 'http://hl7.org/fhir/ValueSet/condition-code'), + ( + 'ConditionCategory', + 'http://hl7.org/fhir/ValueSet/condition-category' + ), + ( + 'ObservationLab', + 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab' + ), + ('ObservationCode', 'http://hl7.org/fhir/ValueSet/observation-codes'), + ( + 'ObservationCategory', + 'http://hl7.org/fhir/ValueSet/observation-category' + ), + ( + 'ObservationInterpretation', + 'http://hl7.org/fhir/ValueSet/observation-interpretation' + ), + ( + 'ObservationValue', + 'http://hl7.org/fhir/observation-definitions.html#Observation.value_x_' + ), + ('VitalSign', 'http://hl7.org/fhir/observation-vitalsigns.html'), + ('UMLS', 'http://www.nlm.nih.gov/research/umls/'), + ('ICD9', 'http://hl7.org/fhir/sid/icd-9-cm'), + ('ICD10', 'http://hl7.org/fhir/sid/icd-10-cm'), + ('LOINC', 'http://loinc.org'), + ('SNOMED', 'http://snomed.info/sct') + ) AS t (define, url); --noqa: AL05 diff --git a/cumulus_library/studies/core/manifest.toml b/cumulus_library/studies/core/manifest.toml new file mode 100644 index 00000000..f27e479b --- /dev/null +++ b/cumulus_library/studies/core/manifest.toml @@ -0,0 +1,23 @@ +study_prefix = "core" + +[sql_config] +file_names = [ + "setup.sql", + "fhir_define.sql", + "patient.sql", + "encounter.sql", + "documentreference.sql", + "condition.sql", + "observation_lab.sql", + "study_period.sql", +] + +[export_config] +export_list = [ + "core__count_patient", + "core__count_encounter_month", + "core__count_documentreference_month", + "core__count_observation_lab_month", + "core__count_core_condition_icd10_month", + "core__meta_date", +] diff --git a/cumulus_library/studies/core/observation_lab.sql b/cumulus_library/studies/core/observation_lab.sql new file mode 100644 index 00000000..89477313 --- /dev/null +++ b/cumulus_library/studies/core/observation_lab.sql @@ -0,0 +1,80 @@ +-- ############################################################ +-- FHIR Observation +-- http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab + +--Each Observation must have: + +--a status +--a category code of ‘laboratory’ +--a LOINC code, if available, which tells you what is being measured +--a patient +--Each Observation must support: +-- +--a time indicating when the measurement was taken +--a result value or a reason why the data is absent* +--if the result value is a numeric quantity, a standard UCUM unit + + +CREATE TABLE core__observation_lab AS +WITH temp_observation_lab AS ( + SELECT + category_row.code AS category, + o.status, + o.code, + o.valuecodeableconcept, + subject.reference AS subject_ref, + encounter.reference AS encounter_ref, + o.id AS observation_id, + date(from_iso8601_timestamp(o.effectivedatetime)) AS effectivedatetime, + concat('Observation/', o.id) AS observation_ref + -- , valueQuantity + FROM observation AS o, + unnest(category) AS t_category(observation_category), --noqa + unnest(observation_category.coding) AS t_coding(category_row) --noqa + WHERE category_row.code = 'laboratory' +) + +SELECT + tol.category, + t_coding.code_row AS lab_code, + t_vcc.value_concept_row AS lab_result, + date_trunc('day', date(tol.effectivedatetime)) AS lab_date, + date_trunc('week', date(tol.effectivedatetime)) AS lab_week, + date_trunc('month', date(tol.effectivedatetime)) AS lab_month, + date_trunc('year', date(tol.effectivedatetime)) AS lab_year, + tol.subject_ref, + tol.encounter_ref, + tol.observation_id, + tol.observation_ref +FROM temp_observation_lab AS tol, + unnest(code.coding) AS t_coding (code_row), + unnest(valuecodeableconcept.coding) AS t_vcc (value_concept_row) +WHERE tol.effectivedatetime BETWEEN date('2016-06-01') AND current_date; + +-- ########################################################################### +-- COUNT Patients, Encounters, Lab Results +-- ########################################################################### +CREATE OR REPLACE VIEW core__count_observation_lab_month AS +WITH powerset AS ( + SELECT + count(DISTINCT o.subject_ref) AS cnt_subject, + count(DISTINCT o.encounter_ref) AS cnt_encounter, + count(DISTINCT o.observation_id) AS cnt_observation, + o.lab_month, + o.lab_code, + o.lab_result, + e.enc_class + FROM core__observation_lab AS o, core__encounter AS e + WHERE o.encounter_ref = e.encounter_ref + GROUP BY cube(o.lab_month, o.lab_code, o.lab_result, e.enc_class) +) + +SELECT + powerset.cnt_observation AS cnt, + powerset.lab_month, + lab_code.code AS lab_code, + lab_result.display AS lab_result_display, + enc_class.code AS enc_class_code +FROM powerset +WHERE powerset.cnt_subject >= 10 +ORDER BY powerset.cnt_observation DESC; diff --git a/cumulus_library/studies/core/patient.sql b/cumulus_library/studies/core/patient.sql new file mode 100644 index 00000000..d271b7c5 --- /dev/null +++ b/cumulus_library/studies/core/patient.sql @@ -0,0 +1,60 @@ +-- ############################################################ +-- FHIR Patient +-- http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient + + +CREATE TABLE core__patient AS +WITH temp_patient AS ( + SELECT DISTINCT + gender, + extension, + address, + id AS subject_id, + date(concat(birthdate, '-01-01')) AS birthdate, + concat('Patient/', id) AS subject_ref + FROM + patient +) + +SELECT DISTINCT + tp.gender, + tp.birthdate, + date_diff('year', tp.birthdate, current_date) AS age, + CASE + WHEN + t_address.addr_row.postalcode IS NOT NULL + THEN substr(t_address.addr_row.postalcode, 1, 3) + ELSE '?' + END AS postalcode3, + t_extension.ext_row.valuecoding AS race, + tp.subject_id, + tp.subject_ref +FROM + temp_patient AS tp, + unnest(address) AS t_address(addr_row), --noqa + unnest(extension) AS t_extension_root(ext_root), --noqa + unnest(ext_root.extension) AS t_extension(ext_row) --noqa +WHERE + tp.birthdate IS NOT NULL + AND tp.gender IS NOT NULL; + +-- count demographics +CREATE OR REPLACE VIEW core__count_patient AS +WITH powerset AS ( + SELECT + count(DISTINCT cp.subject_ref) AS cnt_subject, + cp.gender, + cp.age, + cp.race.display AS race_display + FROM core__patient AS cp + GROUP BY cube(cp.gender, cp.age, cp.race) +) + +SELECT + cnt_subject AS cnt, + gender, + age, + race_display +FROM powerset +WHERE cnt_subject >= 10 +ORDER BY cnt DESC; diff --git a/cumulus_library/studies/core/setup.sql b/cumulus_library/studies/core/setup.sql new file mode 100644 index 00000000..efdac238 --- /dev/null +++ b/cumulus_library/studies/core/setup.sql @@ -0,0 +1,63 @@ +-- Emergency Department Notes +-- +CREATE OR REPLACE VIEW core__ed_note AS +SELECT + t.from_system, + t.from_code, + t.analyte, + t.system, + t.code, + t.display +FROM + ( + VALUES + ( + 'BCH', + 'NOTE:149798455', + 'Emergency MD', + 'http://loinc.org', + '34878-9', + 'Emergency medicine Note' + ), + ( + 'BCH', + 'NOTE:159552404', + 'ED Note Scanned', + 'http://loinc.org', + '34878-9', + 'Emergency medicine Note' + ), + ( + 'BCH', + 'NOTE:3807712', + 'ED Note', + 'http://loinc.org', + '34878-9', + 'Emergency medicine Note' + ), + ( + 'BCH', + 'NOTE:189094644', + 'Emergency Dept Scanned Forms', + 'http://loinc.org', + '34878-9', + 'Emergency medicine Note' + ), + ( + 'BCH', + 'NOTE:189094576', + 'ED Scanned', + 'http://loinc.org', + '34878-9', + 'Emergency medicine Note' + ), + ( + 'BCH', + 'NOTE:3710480', + 'ED Consultation', + 'http://loinc.org', + '51846-4', + 'Emergency department Consult note' + ) + ) + AS t (from_system, from_code, analyte, system, code, display); diff --git a/cumulus_library/studies/core/study_period.sql b/cumulus_library/studies/core/study_period.sql new file mode 100644 index 00000000..1e57837a --- /dev/null +++ b/cumulus_library/studies/core/study_period.sql @@ -0,0 +1,45 @@ +CREATE TABLE core__study_period AS +WITH documented_encounter AS ( + SELECT DISTINCT + ce.start_date, + ce.start_week, + ce.start_month, + ce.end_date, + ce.age_at_visit, + cd.author_date, + cd.author_week, + cd.author_month, + cd.author_year, + cp.gender, + cp.race.display AS race_display, + cp.subject_ref, + ce.encounter_ref, + cd.doc_ref, + date_diff('day', ce.start_date, cd.author_date) AS diff_enc_note_days, + coalesce(ce.enc_class.code, '?') AS enc_class_code, + coalesce(cd.doc_type.code, '?') AS doc_type_code, + coalesce(cd.doc_type.display, cd.doc_type.code) AS doc_type_display + FROM + core__patient AS cp, + core__encounter AS ce, + core__documentreference AS cd + WHERE + (cp.subject_ref = ce.subject_ref) + AND (ce.encounter_ref = cd.encounter_ref) + AND (cd.author_date BETWEEN date('2016-06-01') AND current_date) + AND (ce.start_date BETWEEN date('2016-06-01') AND current_date) + AND (ce.end_date BETWEEN date('2016-06-01') AND current_date) +) + +SELECT + documented_encounter.*, + coalesce(ed.code IS NOT NULL, false) AS ed_note +FROM documented_encounter +LEFT JOIN core__ed_note AS ed + ON documented_encounter.doc_type_code = ed.from_code; + +CREATE TABLE core__meta_date AS +SELECT + min(start_date) AS min_date, + max(end_date) AS max_date +FROM core__study_period; diff --git a/cumulus_library/studies/template/counts.sql b/cumulus_library/studies/template/counts.sql new file mode 100644 index 00000000..2a8fe340 --- /dev/null +++ b/cumulus_library/studies/template/counts.sql @@ -0,0 +1,25 @@ +CREATE OR REPLACE VIEW template__count_influenza_test_month AS +WITH powerset AS ( + SELECT + count(DISTINCT tflo.subject_ref) AS cnt_subject, + count(DISTINCT tflo.encounter_ref) AS cnt_encounter, + tflo.influenza_test_code AS influenza_lab_code, + upper(tflo.influenza_test_result.display) AS influenza_result_display, + tflo.influenza_test_month + FROM template__influenza_lab_observations AS tflo + GROUP BY + cube( + tflo.influenza_test_code, + tflo.influenza_test_result, + tflo.influenza_test_month + ) +) + +SELECT DISTINCT + cnt_encounter AS cnt, + influenza_lab_code, + influenza_result_display, + influenza_test_month +FROM powerset +WHERE cnt_subject >= 10 +ORDER BY cnt_encounter DESC, influenza_test_month ASC, influenza_result_display ASC; diff --git a/cumulus_library/studies/template/date_range.sql b/cumulus_library/studies/template/date_range.sql new file mode 100644 index 00000000..e8cec14a --- /dev/null +++ b/cumulus_library/studies/template/date_range.sql @@ -0,0 +1,5 @@ +CREATE TABLE template__meta_date AS +SELECT + min(tilo.influenza_test_date) AS min_date, + max(tilo.influenza_test_date) AS max_date +FROM template__influenza_lab_observations AS tilo; diff --git a/cumulus_library/studies/template/lab_observations.sql b/cumulus_library/studies/template/lab_observations.sql new file mode 100644 index 00000000..335cc3ec --- /dev/null +++ b/cumulus_library/studies/template/lab_observations.sql @@ -0,0 +1,16 @@ +CREATE TABLE template__influenza_lab_observations AS +SELECT DISTINCT + upper(o.lab_result.display) AS influenza_test_display, + o.lab_result AS influenza_test_result, + o.lab_code AS influenza_test_code, + o.lab_date AS influenza_test_date, + o.lab_week AS influenza_test_week, + o.lab_month AS influenza_test_month, + o.subject_ref, + o.encounter_ref, + o.observation_ref +FROM core__observation_lab AS o, + template__influenza_codes AS tfc +WHERE + (o.lab_date BETWEEN date('2016-06-01') AND current_date) + AND (o.lab_code.code = tfc.code); diff --git a/cumulus_library/studies/template/manifest.toml b/cumulus_library/studies/template/manifest.toml new file mode 100644 index 00000000..5ec39ff4 --- /dev/null +++ b/cumulus_library/studies/template/manifest.toml @@ -0,0 +1,46 @@ +# If you'd like to run this template study as a proof of concept, you can load +# the 1000 patient synthea cohort from: +# https://github.com/smart-on-fhir/sample-bulk-fhir-datasets +# into you database, and it will generate a very small count dataset + +# 'study_prefix' should be a string at the start of each table. We'll use this +# to clean up queries, so it should be unique. Name your tables in the following +# format: [study_prefix]__[table_name]. It should probably, but not necessarily, +# be the same name as the folder the study definition is in. +study_prefix = "template" + +# The following section describes all tables that should be generated directly +# from SQL files. +[sql_config] +# 'file_names' defines a list of sql files to execute, in order, in this folder. +# Recommended order: Any ancillary config (like a list of condition codes), +# tables/view selecting subsets of data from FHIR data, tables/views creating +# summary statistics. +file_names = [ + "setup.sql", + "lab_observations.sql", + "counts.sql", + "date_range.sql" +] + + +# The following section defines parameters related to exporting study data from +# your athena database +[export_config] +# The following tables will be output to disk when an export is run. In most cases, +# only count tables should be output in this way. +export_list = [ + "template__count_influenza_test_month", +] + + +# For most use cases, this should not be required, but if you need to run code, you +# can point to a python module. The vocab study provides an example of this. +# Python code will always be run before any SQL queries are executed. +# [python_config] +# file_names = [ +# "my_script.py", +# ] + +# If you'd like another language available, please reach out - we can likely +# accomadate, but we'd need to understand the use cases a little better. diff --git a/cumulus_library/studies/template/setup.sql b/cumulus_library/studies/template/setup.sql new file mode 100644 index 00000000..967b5f26 --- /dev/null +++ b/cumulus_library/studies/template/setup.sql @@ -0,0 +1,39 @@ +CREATE OR REPLACE VIEW template__influenza_codes AS +SELECT + t.from_system, + t.analyte, + t.system, + t.code, + t.display +FROM + ( + VALUES + ( + 'Synthea-1000', + 'FLU', + 'http://loinc.org', + '92142-9', + 'Influenza virus A RNA [Presence] in Respiratory specimen by NAA with probe detection' --noqa: LT05 + ), + ( + 'Synthea-1000', + 'FLU', + 'http://loinc.org', + '92141-1', + 'Influenza virus B RNA [Presence] in Respiratory specimen by NAA with probe detection' --noqa: LT05 + ), + ( + 'Synthea-1000', + 'FLU', + 'http://loinc.org', + '80383-3', + 'Influenza virus B Ag [Presence] in Upper respiratory specimen by Rapid immunoassay' --noqa: LT05 + ), + ( + 'Synthea-1000', + 'FLU', + 'http://loinc.org', + '80382-5', + 'Influenza virus A Ag [Presence] in Upper respiratory specimen by Rapid immunoassay' --noqa: LT05 + ) + ) AS t (from_system, analyte, system, code, display); diff --git a/cumulus_library/studies/vocab/ICD10.bsv b/cumulus_library/studies/vocab/ICD10.bsv new file mode 100644 index 00000000..213fce5c --- /dev/null +++ b/cumulus_library/studies/vocab/ICD10.bsv @@ -0,0 +1,195890 @@ +C0008354|T047|HT|A00|ICD10CM|Cholera|Cholera +C0008354|T047|AB|A00|ICD10CM|Cholera|Cholera +C0008354|T047|HT|A00|ICD10|Cholera|Cholera +C0178238|T047|HT|A00-A09|ICD10CM|Intestinal infectious diseases (A00-A09)|Intestinal infectious diseases (A00-A09) +C0178238|T047|HT|A00-A09.9|ICD10|Intestinal infectious diseases|Intestinal infectious diseases +C0694449|T047|HT|A00-B99|ICD10CM|Certain infectious and parasitic diseases (A00-B99)|Certain infectious and parasitic diseases (A00-B99) +C2880083|T047|ET|A00-B99|ICD10CM|diseases generally recognized as communicable or transmissible|diseases generally recognized as communicable or transmissible +C0694449|T047|HT|A00-B99.9|ICD10|Certain infectious and parasitic diseases|Certain infectious and parasitic diseases +C0494021|T047|PT|A00.0|ICD10|Cholera due to Vibrio cholerae 01, biovar cholerae|Cholera due to Vibrio cholerae 01, biovar cholerae +C0494021|T047|PT|A00.0|ICD10CM|Cholera due to Vibrio cholerae 01, biovar cholerae|Cholera due to Vibrio cholerae 01, biovar cholerae +C0494021|T047|AB|A00.0|ICD10CM|Cholera due to Vibrio cholerae 01, biovar cholerae|Cholera due to Vibrio cholerae 01, biovar cholerae +C0008354|T047|ET|A00.0|ICD10CM|Classical cholera|Classical cholera +C0343372|T047|PT|A00.1|ICD10CM|Cholera due to Vibrio cholerae 01, biovar eltor|Cholera due to Vibrio cholerae 01, biovar eltor +C0343372|T047|AB|A00.1|ICD10CM|Cholera due to Vibrio cholerae 01, biovar eltor|Cholera due to Vibrio cholerae 01, biovar eltor +C0343372|T047|PT|A00.1|ICD10|Cholera due to Vibrio cholerae 01, biovar eltor|Cholera due to Vibrio cholerae 01, biovar eltor +C0343372|T047|ET|A00.1|ICD10CM|Cholera eltor|Cholera eltor +C0008354|T047|PT|A00.9|ICD10CM|Cholera, unspecified|Cholera, unspecified +C0008354|T047|AB|A00.9|ICD10CM|Cholera, unspecified|Cholera, unspecified +C0008354|T047|PT|A00.9|ICD10|Cholera, unspecified|Cholera, unspecified +C0275976|T047|HT|A01|ICD10|Typhoid and paratyphoid fevers|Typhoid and paratyphoid fevers +C0275976|T047|HT|A01|ICD10CM|Typhoid and paratyphoid fevers|Typhoid and paratyphoid fevers +C0275976|T047|AB|A01|ICD10CM|Typhoid and paratyphoid fevers|Typhoid and paratyphoid fevers +C2880084|T047|ET|A01.0|ICD10CM|Infection due to Salmonella typhi|Infection due to Salmonella typhi +C0041466|T047|PT|A01.0|ICD10|Typhoid fever|Typhoid fever +C0041466|T047|HT|A01.0|ICD10CM|Typhoid fever|Typhoid fever +C0041466|T047|AB|A01.0|ICD10CM|Typhoid fever|Typhoid fever +C0041466|T047|AB|A01.00|ICD10CM|Typhoid fever, unspecified|Typhoid fever, unspecified +C0041466|T047|PT|A01.00|ICD10CM|Typhoid fever, unspecified|Typhoid fever, unspecified +C2880086|T047|AB|A01.01|ICD10CM|Typhoid meningitis|Typhoid meningitis +C2880086|T047|PT|A01.01|ICD10CM|Typhoid meningitis|Typhoid meningitis +C0340351|T047|ET|A01.02|ICD10CM|Typhoid endocarditis|Typhoid endocarditis +C2880088|T047|AB|A01.02|ICD10CM|Typhoid fever with heart involvement|Typhoid fever with heart involvement +C2880088|T047|PT|A01.02|ICD10CM|Typhoid fever with heart involvement|Typhoid fever with heart involvement +C2880087|T047|ET|A01.02|ICD10CM|Typhoid myocarditis|Typhoid myocarditis +C0339956|T047|PT|A01.03|ICD10CM|Typhoid pneumonia|Typhoid pneumonia +C0339956|T047|AB|A01.03|ICD10CM|Typhoid pneumonia|Typhoid pneumonia +C2880089|T047|AB|A01.04|ICD10CM|Typhoid arthritis|Typhoid arthritis +C2880089|T047|PT|A01.04|ICD10CM|Typhoid arthritis|Typhoid arthritis +C2880090|T047|AB|A01.05|ICD10CM|Typhoid osteomyelitis|Typhoid osteomyelitis +C2880090|T047|PT|A01.05|ICD10CM|Typhoid osteomyelitis|Typhoid osteomyelitis +C2880091|T047|AB|A01.09|ICD10CM|Typhoid fever with other complications|Typhoid fever with other complications +C2880091|T047|PT|A01.09|ICD10CM|Typhoid fever with other complications|Typhoid fever with other complications +C0343375|T047|PT|A01.1|ICD10CM|Paratyphoid fever A|Paratyphoid fever A +C0343375|T047|AB|A01.1|ICD10CM|Paratyphoid fever A|Paratyphoid fever A +C0343375|T047|PT|A01.1|ICD10|Paratyphoid fever A|Paratyphoid fever A +C0343376|T047|PT|A01.2|ICD10|Paratyphoid fever B|Paratyphoid fever B +C0343376|T047|PT|A01.2|ICD10CM|Paratyphoid fever B|Paratyphoid fever B +C0343376|T047|AB|A01.2|ICD10CM|Paratyphoid fever B|Paratyphoid fever B +C0343377|T047|PT|A01.3|ICD10CM|Paratyphoid fever C|Paratyphoid fever C +C0343377|T047|AB|A01.3|ICD10CM|Paratyphoid fever C|Paratyphoid fever C +C0343377|T047|PT|A01.3|ICD10|Paratyphoid fever C|Paratyphoid fever C +C2880092|T047|ET|A01.4|ICD10CM|Infection due to Salmonella paratyphi NOS|Infection due to Salmonella paratyphi NOS +C0030528|T047|PT|A01.4|ICD10|Paratyphoid fever, unspecified|Paratyphoid fever, unspecified +C0030528|T047|PT|A01.4|ICD10CM|Paratyphoid fever, unspecified|Paratyphoid fever, unspecified +C0030528|T047|AB|A01.4|ICD10CM|Paratyphoid fever, unspecified|Paratyphoid fever, unspecified +C0152485|T047|HT|A02|ICD10CM|Other salmonella infections|Other salmonella infections +C0152485|T047|AB|A02|ICD10CM|Other salmonella infections|Other salmonella infections +C0152485|T047|HT|A02|ICD10|Other salmonella infections|Other salmonella infections +C0036114|T037|PT|A02.0|ICD10|Salmonella enteritis|Salmonella enteritis +C0036114|T037|PT|A02.0|ICD10CM|Salmonella enteritis|Salmonella enteritis +C0036114|T037|AB|A02.0|ICD10CM|Salmonella enteritis|Salmonella enteritis +C0036114|T037|ET|A02.0|ICD10CM|Salmonellosis|Salmonellosis +C0152486|T047|PT|A02.1|ICD10CM|Salmonella sepsis|Salmonella sepsis +C0152486|T047|AB|A02.1|ICD10CM|Salmonella sepsis|Salmonella sepsis +C0152486|T047|PT|A02.1|ICD10|Salmonella septicaemia|Salmonella septicaemia +C0152486|T047|PT|A02.1|ICD10AE|Salmonella septicemia|Salmonella septicemia +C0152487|T047|HT|A02.2|ICD10CM|Localized salmonella infections|Localized salmonella infections +C0152487|T047|AB|A02.2|ICD10CM|Localized salmonella infections|Localized salmonella infections +C0152487|T047|PT|A02.2|ICD10|Localized salmonella infections|Localized salmonella infections +C0152487|T047|PT|A02.20|ICD10CM|Localized salmonella infection, unspecified|Localized salmonella infection, unspecified +C0152487|T047|AB|A02.20|ICD10CM|Localized salmonella infection, unspecified|Localized salmonella infection, unspecified +C0152488|T047|PT|A02.21|ICD10CM|Salmonella meningitis|Salmonella meningitis +C0152488|T047|AB|A02.21|ICD10CM|Salmonella meningitis|Salmonella meningitis +C0152489|T047|PT|A02.22|ICD10CM|Salmonella pneumonia|Salmonella pneumonia +C0152489|T047|AB|A02.22|ICD10CM|Salmonella pneumonia|Salmonella pneumonia +C0152490|T047|PT|A02.23|ICD10CM|Salmonella arthritis|Salmonella arthritis +C0152490|T047|AB|A02.23|ICD10CM|Salmonella arthritis|Salmonella arthritis +C0152491|T047|PT|A02.24|ICD10CM|Salmonella osteomyelitis|Salmonella osteomyelitis +C0152491|T047|AB|A02.24|ICD10CM|Salmonella osteomyelitis|Salmonella osteomyelitis +C2880095|T047|PT|A02.25|ICD10CM|Salmonella pyelonephritis|Salmonella pyelonephritis +C2880095|T047|AB|A02.25|ICD10CM|Salmonella pyelonephritis|Salmonella pyelonephritis +C2880094|T047|ET|A02.25|ICD10CM|Salmonella tubulo-interstitial nephropathy|Salmonella tubulo-interstitial nephropathy +C2880096|T047|AB|A02.29|ICD10CM|Salmonella with other localized infection|Salmonella with other localized infection +C2880096|T047|PT|A02.29|ICD10CM|Salmonella with other localized infection|Salmonella with other localized infection +C0029826|T047|PT|A02.8|ICD10CM|Other specified salmonella infections|Other specified salmonella infections +C0029826|T047|AB|A02.8|ICD10CM|Other specified salmonella infections|Other specified salmonella infections +C0029826|T047|PT|A02.8|ICD10|Other specified salmonella infections|Other specified salmonella infections +C0036117|T047|PT|A02.9|ICD10|Salmonella infection, unspecified|Salmonella infection, unspecified +C0036117|T047|PT|A02.9|ICD10CM|Salmonella infection, unspecified|Salmonella infection, unspecified +C0036117|T047|AB|A02.9|ICD10CM|Salmonella infection, unspecified|Salmonella infection, unspecified +C0013371|T047|HT|A03|ICD10|Shigellosis|Shigellosis +C0013371|T047|HT|A03|ICD10CM|Shigellosis|Shigellosis +C0013371|T047|AB|A03|ICD10CM|Shigellosis|Shigellosis +C2880097|T047|ET|A03.0|ICD10CM|Group A shigellosis [Shiga-Kruse dysentery]|Group A shigellosis [Shiga-Kruse dysentery] +C0302358|T047|PT|A03.0|ICD10CM|Shigellosis due to Shigella dysenteriae|Shigellosis due to Shigella dysenteriae +C0302358|T047|AB|A03.0|ICD10CM|Shigellosis due to Shigella dysenteriae|Shigellosis due to Shigella dysenteriae +C0302358|T047|PT|A03.0|ICD10|Shigellosis due to Shigella dysenteriae|Shigellosis due to Shigella dysenteriae +C2880098|T047|ET|A03.1|ICD10CM|Group B shigellosis|Group B shigellosis +C0302359|T047|PT|A03.1|ICD10|Shigellosis due to Shigella flexneri|Shigellosis due to Shigella flexneri +C0302359|T047|PT|A03.1|ICD10CM|Shigellosis due to Shigella flexneri|Shigellosis due to Shigella flexneri +C0302359|T047|AB|A03.1|ICD10CM|Shigellosis due to Shigella flexneri|Shigellosis due to Shigella flexneri +C2880099|T047|ET|A03.2|ICD10CM|Group C shigellosis|Group C shigellosis +C0302360|T047|PT|A03.2|ICD10CM|Shigellosis due to Shigella boydii|Shigellosis due to Shigella boydii +C0302360|T047|AB|A03.2|ICD10CM|Shigellosis due to Shigella boydii|Shigellosis due to Shigella boydii +C0302360|T047|PT|A03.2|ICD10|Shigellosis due to Shigella boydii|Shigellosis due to Shigella boydii +C2880100|T047|ET|A03.3|ICD10CM|Group D shigellosis|Group D shigellosis +C0275791|T047|PT|A03.3|ICD10|Shigellosis due to Shigella sonnei|Shigellosis due to Shigella sonnei +C0275791|T047|PT|A03.3|ICD10CM|Shigellosis due to Shigella sonnei|Shigellosis due to Shigella sonnei +C0275791|T047|AB|A03.3|ICD10CM|Shigellosis due to Shigella sonnei|Shigellosis due to Shigella sonnei +C0348093|T047|PT|A03.8|ICD10CM|Other shigellosis|Other shigellosis +C0348093|T047|AB|A03.8|ICD10CM|Other shigellosis|Other shigellosis +C0348093|T047|PT|A03.8|ICD10|Other shigellosis|Other shigellosis +C1527298|T047|ET|A03.9|ICD10CM|Bacillary dysentery NOS|Bacillary dysentery NOS +C0013371|T047|PT|A03.9|ICD10|Shigellosis, unspecified|Shigellosis, unspecified +C0013371|T047|PT|A03.9|ICD10CM|Shigellosis, unspecified|Shigellosis, unspecified +C0013371|T047|AB|A03.9|ICD10CM|Shigellosis, unspecified|Shigellosis, unspecified +C0494023|T047|AB|A04|ICD10CM|Other bacterial intestinal infections|Other bacterial intestinal infections +C0494023|T047|HT|A04|ICD10CM|Other bacterial intestinal infections|Other bacterial intestinal infections +C0494023|T047|HT|A04|ICD10|Other bacterial intestinal infections|Other bacterial intestinal infections +C0343380|T047|PT|A04.0|ICD10|Enteropathogenic Escherichia coli infection|Enteropathogenic Escherichia coli infection +C0343380|T047|PT|A04.0|ICD10CM|Enteropathogenic Escherichia coli infection|Enteropathogenic Escherichia coli infection +C0343380|T047|AB|A04.0|ICD10CM|Enteropathogenic Escherichia coli infection|Enteropathogenic Escherichia coli infection +C0343379|T047|PT|A04.1|ICD10CM|Enterotoxigenic Escherichia coli infection|Enterotoxigenic Escherichia coli infection +C0343379|T047|AB|A04.1|ICD10CM|Enterotoxigenic Escherichia coli infection|Enterotoxigenic Escherichia coli infection +C0343379|T047|PT|A04.1|ICD10|Enterotoxigenic Escherichia coli infection|Enterotoxigenic Escherichia coli infection +C0343382|T047|PT|A04.2|ICD10|Enteroinvasive Escherichia coli infection|Enteroinvasive Escherichia coli infection +C0343382|T047|PT|A04.2|ICD10CM|Enteroinvasive Escherichia coli infection|Enteroinvasive Escherichia coli infection +C0343382|T047|AB|A04.2|ICD10CM|Enteroinvasive Escherichia coli infection|Enteroinvasive Escherichia coli infection +C0343381|T047|PT|A04.3|ICD10|Enterohaemorrhagic Escherichia coli infection|Enterohaemorrhagic Escherichia coli infection +C0343381|T047|PT|A04.3|ICD10AE|Enterohemorrhagic Escherichia coli infection|Enterohemorrhagic Escherichia coli infection +C0343381|T047|PT|A04.3|ICD10CM|Enterohemorrhagic Escherichia coli infection|Enterohemorrhagic Escherichia coli infection +C0343381|T047|AB|A04.3|ICD10CM|Enterohemorrhagic Escherichia coli infection|Enterohemorrhagic Escherichia coli infection +C2880101|T047|ET|A04.4|ICD10CM|Escherichia coli enteritis NOS|Escherichia coli enteritis NOS +C0494024|T047|PT|A04.4|ICD10|Other intestinal Escherichia coli infections|Other intestinal Escherichia coli infections +C0494024|T047|PT|A04.4|ICD10CM|Other intestinal Escherichia coli infections|Other intestinal Escherichia coli infections +C0494024|T047|AB|A04.4|ICD10CM|Other intestinal Escherichia coli infections|Other intestinal Escherichia coli infections +C0275982|T047|PT|A04.5|ICD10CM|Campylobacter enteritis|Campylobacter enteritis +C0275982|T047|AB|A04.5|ICD10CM|Campylobacter enteritis|Campylobacter enteritis +C0275982|T047|PT|A04.5|ICD10|Campylobacter enteritis|Campylobacter enteritis +C3887894|T047|PT|A04.6|ICD10|Enteritis due to Yersinia enterocolitica|Enteritis due to Yersinia enterocolitica +C3887894|T047|PT|A04.6|ICD10CM|Enteritis due to Yersinia enterocolitica|Enteritis due to Yersinia enterocolitica +C3887894|T047|AB|A04.6|ICD10CM|Enteritis due to Yersinia enterocolitica|Enteritis due to Yersinia enterocolitica +C0494025|T047|AB|A04.7|ICD10CM|Enterocolitis due to Clostridium difficile|Enterocolitis due to Clostridium difficile +C0494025|T047|HT|A04.7|ICD10CM|Enterocolitis due to Clostridium difficile|Enterocolitis due to Clostridium difficile +C0494025|T047|PT|A04.7|ICD10|Enterocolitis due to Clostridium difficile|Enterocolitis due to Clostridium difficile +C2880102|T047|ET|A04.7|ICD10CM|Foodborne intoxication by Clostridium difficile|Foodborne intoxication by Clostridium difficile +C1257843|T047|ET|A04.7|ICD10CM|Pseudomembraneous colitis|Pseudomembraneous colitis +C4509014|T047|AB|A04.71|ICD10CM|Enterocolitis due to Clostridium difficile, recurrent|Enterocolitis due to Clostridium difficile, recurrent +C4509014|T047|PT|A04.71|ICD10CM|Enterocolitis due to Clostridium difficile, recurrent|Enterocolitis due to Clostridium difficile, recurrent +C4509015|T047|AB|A04.72|ICD10CM|Enterocolitis d/t Clostridium difficile, not spcf as recur|Enterocolitis d/t Clostridium difficile, not spcf as recur +C4509015|T047|PT|A04.72|ICD10CM|Enterocolitis due to Clostridium difficile, not specified as recurrent|Enterocolitis due to Clostridium difficile, not specified as recurrent +C0489951|T047|PT|A04.8|ICD10|Other specified bacterial intestinal infections|Other specified bacterial intestinal infections +C0489951|T047|PT|A04.8|ICD10CM|Other specified bacterial intestinal infections|Other specified bacterial intestinal infections +C0489951|T047|AB|A04.8|ICD10CM|Other specified bacterial intestinal infections|Other specified bacterial intestinal infections +C0152516|T047|ET|A04.9|ICD10CM|Bacterial enteritis NOS|Bacterial enteritis NOS +C0348095|T047|PT|A04.9|ICD10CM|Bacterial intestinal infection, unspecified|Bacterial intestinal infection, unspecified +C0348095|T047|AB|A04.9|ICD10CM|Bacterial intestinal infection, unspecified|Bacterial intestinal infection, unspecified +C0348095|T047|PT|A04.9|ICD10|Bacterial intestinal infection, unspecified|Bacterial intestinal infection, unspecified +C2880103|T047|AB|A05|ICD10CM|Oth bacterial foodborne intoxications, NEC|Oth bacterial foodborne intoxications, NEC +C0494026|T037|HT|A05|ICD10|Other bacterial foodborne intoxications|Other bacterial foodborne intoxications +C2880103|T047|HT|A05|ICD10CM|Other bacterial foodborne intoxications, not elsewhere classified|Other bacterial foodborne intoxications, not elsewhere classified +C0038159|T047|PT|A05.0|ICD10CM|Foodborne staphylococcal intoxication|Foodborne staphylococcal intoxication +C0038159|T047|AB|A05.0|ICD10CM|Foodborne staphylococcal intoxication|Foodborne staphylococcal intoxication +C0038159|T047|PT|A05.0|ICD10|Foodborne staphylococcal intoxication|Foodborne staphylococcal intoxication +C0006057|T037|PT|A05.1|ICD10|Botulism|Botulism +C1739094|T047|AB|A05.1|ICD10CM|Botulism food poisoning|Botulism food poisoning +C1739094|T047|PT|A05.1|ICD10CM|Botulism food poisoning|Botulism food poisoning +C0006057|T037|ET|A05.1|ICD10CM|Botulism NOS|Botulism NOS +C2880104|T037|ET|A05.1|ICD10CM|Classical foodborne intoxication due to Clostridium botulinum|Classical foodborne intoxication due to Clostridium botulinum +C0014336|T047|ET|A05.2|ICD10CM|Enteritis necroticans|Enteritis necroticans +C0275590|T037|PT|A05.2|ICD10|Foodborne Clostridium perfringens [Clostridium welchii] intoxication|Foodborne Clostridium perfringens [Clostridium welchii] intoxication +C0275590|T037|PT|A05.2|ICD10CM|Foodborne Clostridium perfringens [Clostridium welchii] intoxication|Foodborne Clostridium perfringens [Clostridium welchii] intoxication +C0275590|T037|AB|A05.2|ICD10CM|Foodborne Clostridium perfringens intoxication|Foodborne Clostridium perfringens intoxication +C0014336|T047|ET|A05.2|ICD10CM|Pig-bel|Pig-bel +C0152497|T047|PT|A05.3|ICD10|Foodborne Vibrio parahaemolyticus intoxication|Foodborne Vibrio parahaemolyticus intoxication +C0152497|T047|PT|A05.3|ICD10CM|Foodborne Vibrio parahaemolyticus intoxication|Foodborne Vibrio parahaemolyticus intoxication +C0152497|T047|AB|A05.3|ICD10CM|Foodborne Vibrio parahaemolyticus intoxication|Foodborne Vibrio parahaemolyticus intoxication +C0152497|T047|PT|A05.3|ICD10AE|Foodborne Vibrio parahemolyticus intoxication|Foodborne Vibrio parahemolyticus intoxication +C0275589|T037|PT|A05.4|ICD10CM|Foodborne Bacillus cereus intoxication|Foodborne Bacillus cereus intoxication +C0275589|T037|AB|A05.4|ICD10CM|Foodborne Bacillus cereus intoxication|Foodborne Bacillus cereus intoxication +C0275589|T037|PT|A05.4|ICD10|Foodborne Bacillus cereus intoxication|Foodborne Bacillus cereus intoxication +C2880105|T047|AB|A05.5|ICD10CM|Foodborne Vibrio vulnificus intoxication|Foodborne Vibrio vulnificus intoxication +C2880105|T047|PT|A05.5|ICD10CM|Foodborne Vibrio vulnificus intoxication|Foodborne Vibrio vulnificus intoxication +C0494030|T037|PT|A05.8|ICD10|Other specified bacterial foodborne intoxications|Other specified bacterial foodborne intoxications +C0494030|T037|PT|A05.8|ICD10CM|Other specified bacterial foodborne intoxications|Other specified bacterial foodborne intoxications +C0494030|T037|AB|A05.8|ICD10CM|Other specified bacterial foodborne intoxications|Other specified bacterial foodborne intoxications +C0348097|T037|PT|A05.9|ICD10|Bacterial foodborne intoxication, unspecified|Bacterial foodborne intoxication, unspecified +C0348097|T037|PT|A05.9|ICD10CM|Bacterial foodborne intoxication, unspecified|Bacterial foodborne intoxication, unspecified +C0348097|T037|AB|A05.9|ICD10CM|Bacterial foodborne intoxication, unspecified|Bacterial foodborne intoxication, unspecified +C0002438|T047|HT|A06|ICD10AE|Amebiasis|Amebiasis +C0002438|T047|HT|A06|ICD10CM|Amebiasis|Amebiasis +C0002438|T047|AB|A06|ICD10CM|Amebiasis|Amebiasis +C0002438|T047|HT|A06|ICD10|Amoebiasis|Amoebiasis +C4316791|T047|ET|A06|ICD10CM|infection due to Entamoeba histolytica|infection due to Entamoeba histolytica +C0152499|T047|ET|A06.0|ICD10CM|Acute amebiasis|Acute amebiasis +C0341333|T047|PT|A06.0|ICD10CM|Acute amebic dysentery|Acute amebic dysentery +C0341333|T047|AB|A06.0|ICD10CM|Acute amebic dysentery|Acute amebic dysentery +C0341333|T047|PT|A06.0|ICD10AE|Acute amebic dysentery|Acute amebic dysentery +C0341333|T047|PT|A06.0|ICD10|Acute amoebic dysentery|Acute amoebic dysentery +C0860230|T047|ET|A06.0|ICD10CM|Intestinal amebiasis NOS|Intestinal amebiasis NOS +C0152500|T047|PT|A06.1|ICD10CM|Chronic intestinal amebiasis|Chronic intestinal amebiasis +C0152500|T047|AB|A06.1|ICD10CM|Chronic intestinal amebiasis|Chronic intestinal amebiasis +C0152500|T047|PT|A06.1|ICD10AE|Chronic intestinal amebiasis|Chronic intestinal amebiasis +C0152500|T047|PT|A06.1|ICD10|Chronic intestinal amoebiasis|Chronic intestinal amoebiasis +C0152501|T047|PT|A06.2|ICD10AE|Amebic nondysenteric colitis|Amebic nondysenteric colitis +C0152501|T047|PT|A06.2|ICD10CM|Amebic nondysenteric colitis|Amebic nondysenteric colitis +C0152501|T047|AB|A06.2|ICD10CM|Amebic nondysenteric colitis|Amebic nondysenteric colitis +C0152501|T047|PT|A06.2|ICD10|Amoebic nondysenteric colitis|Amoebic nondysenteric colitis +C0002445|T047|ET|A06.3|ICD10CM|Ameboma NOS|Ameboma NOS +C0494031|T047|PT|A06.3|ICD10AE|Ameboma of intestine|Ameboma of intestine +C0494031|T047|PT|A06.3|ICD10CM|Ameboma of intestine|Ameboma of intestine +C0494031|T047|AB|A06.3|ICD10CM|Ameboma of intestine|Ameboma of intestine +C0494031|T047|PT|A06.3|ICD10|Amoeboma of intestine|Amoeboma of intestine +C0023886|T047|PT|A06.4|ICD10AE|Amebic liver abscess|Amebic liver abscess +C0023886|T047|PT|A06.4|ICD10CM|Amebic liver abscess|Amebic liver abscess +C0023886|T047|AB|A06.4|ICD10CM|Amebic liver abscess|Amebic liver abscess +C0023886|T047|PT|A06.4|ICD10|Amoebic liver abscess|Amoebic liver abscess +C0023886|T047|ET|A06.4|ICD10CM|Hepatic amebiasis|Hepatic amebiasis +C2880106|T047|ET|A06.5|ICD10CM|Amebic abscess of lung (and liver)|Amebic abscess of lung (and liver) +C0152502|T047|PT|A06.5|ICD10AE|Amebic lung abscess|Amebic lung abscess +C0152502|T047|PT|A06.5|ICD10CM|Amebic lung abscess|Amebic lung abscess +C0152502|T047|AB|A06.5|ICD10CM|Amebic lung abscess|Amebic lung abscess +C0152502|T047|PT|A06.5|ICD10|Amoebic lung abscess|Amoebic lung abscess +C2880107|T047|ET|A06.6|ICD10CM|Amebic abscess of brain (and liver) (and lung)|Amebic abscess of brain (and liver) (and lung) +C0152503|T047|PT|A06.6|ICD10AE|Amebic brain abscess|Amebic brain abscess +C0152503|T047|PT|A06.6|ICD10CM|Amebic brain abscess|Amebic brain abscess +C0152503|T047|AB|A06.6|ICD10CM|Amebic brain abscess|Amebic brain abscess +C0152503|T047|PT|A06.6|ICD10|Amoebic brain abscess|Amoebic brain abscess +C0002441|T047|PT|A06.7|ICD10AE|Cutaneous amebiasis|Cutaneous amebiasis +C0002441|T047|PT|A06.7|ICD10CM|Cutaneous amebiasis|Cutaneous amebiasis +C0002441|T047|AB|A06.7|ICD10CM|Cutaneous amebiasis|Cutaneous amebiasis +C0002441|T047|PT|A06.7|ICD10|Cutaneous amoebiasis|Cutaneous amoebiasis +C0152505|T047|HT|A06.8|ICD10CM|Amebic infection of other sites|Amebic infection of other sites +C0152505|T047|AB|A06.8|ICD10CM|Amebic infection of other sites|Amebic infection of other sites +C0152505|T047|PT|A06.8|ICD10AE|Amebic infection of other sites|Amebic infection of other sites +C0152505|T047|PT|A06.8|ICD10|Amoebic infection of other sites|Amoebic infection of other sites +C0268832|T047|PT|A06.81|ICD10CM|Amebic cystitis|Amebic cystitis +C0268832|T047|AB|A06.81|ICD10CM|Amebic cystitis|Amebic cystitis +C0276780|T047|ET|A06.82|ICD10CM|Amebic balanitis|Amebic balanitis +C1387252|T047|ET|A06.82|ICD10CM|Amebic vesiculitis|Amebic vesiculitis +C1387253|T047|ET|A06.82|ICD10CM|Amebic vulvovaginitis|Amebic vulvovaginitis +C2880108|T047|AB|A06.82|ICD10CM|Other amebic genitourinary infections|Other amebic genitourinary infections +C2880108|T047|PT|A06.82|ICD10CM|Other amebic genitourinary infections|Other amebic genitourinary infections +C0276779|T047|ET|A06.89|ICD10CM|Amebic appendicitis|Amebic appendicitis +C1385396|T047|ET|A06.89|ICD10CM|Amebic splenic abscess|Amebic splenic abscess +C2880110|T047|AB|A06.89|ICD10CM|Other amebic infections|Other amebic infections +C2880110|T047|PT|A06.89|ICD10CM|Other amebic infections|Other amebic infections +C0002438|T047|PT|A06.9|ICD10AE|Amebiasis, unspecified|Amebiasis, unspecified +C0002438|T047|PT|A06.9|ICD10CM|Amebiasis, unspecified|Amebiasis, unspecified +C0002438|T047|AB|A06.9|ICD10CM|Amebiasis, unspecified|Amebiasis, unspecified +C0002438|T047|PT|A06.9|ICD10|Amoebiasis, unspecified|Amoebiasis, unspecified +C0152506|T047|HT|A07|ICD10|Other protozoal intestinal diseases|Other protozoal intestinal diseases +C0152506|T047|HT|A07|ICD10CM|Other protozoal intestinal diseases|Other protozoal intestinal diseases +C0152506|T047|AB|A07|ICD10CM|Other protozoal intestinal diseases|Other protozoal intestinal diseases +C0004692|T047|ET|A07.0|ICD10CM|Balantidial dysentery|Balantidial dysentery +C0004692|T047|PT|A07.0|ICD10CM|Balantidiasis|Balantidiasis +C0004692|T047|AB|A07.0|ICD10CM|Balantidiasis|Balantidiasis +C0004692|T047|PT|A07.0|ICD10|Balantidiasis|Balantidiasis +C0017536|T047|PT|A07.1|ICD10|Giardiasis [lambliasis]|Giardiasis [lambliasis] +C0017536|T047|PT|A07.1|ICD10CM|Giardiasis [lambliasis]|Giardiasis [lambliasis] +C0017536|T047|AB|A07.1|ICD10CM|Giardiasis [lambliasis]|Giardiasis [lambliasis] +C0010418|T047|PT|A07.2|ICD10CM|Cryptosporidiosis|Cryptosporidiosis +C0010418|T047|AB|A07.2|ICD10CM|Cryptosporidiosis|Cryptosporidiosis +C0010418|T047|PT|A07.2|ICD10|Cryptosporidiosis|Cryptosporidiosis +C2880111|T047|ET|A07.3|ICD10CM|Infection due to Isospora belli and Isospora hominis|Infection due to Isospora belli and Isospora hominis +C1299919|T047|ET|A07.3|ICD10CM|Intestinal coccidiosis|Intestinal coccidiosis +C0311386|T047|PT|A07.3|ICD10|Isosporiasis|Isosporiasis +C0311386|T047|PT|A07.3|ICD10CM|Isosporiasis|Isosporiasis +C0311386|T047|AB|A07.3|ICD10CM|Isosporiasis|Isosporiasis +C0311386|T047|ET|A07.3|ICD10CM|Isosporosis|Isosporosis +C0343398|T047|PT|A07.4|ICD10CM|Cyclosporiasis|Cyclosporiasis +C0343398|T047|AB|A07.4|ICD10CM|Cyclosporiasis|Cyclosporiasis +C0343400|T047|ET|A07.8|ICD10CM|Intestinal microsporidiosis|Intestinal microsporidiosis +C0411268|T047|ET|A07.8|ICD10CM|Intestinal trichomoniasis|Intestinal trichomoniasis +C0152507|T047|PT|A07.8|ICD10|Other specified protozoal intestinal diseases|Other specified protozoal intestinal diseases +C0152507|T047|PT|A07.8|ICD10CM|Other specified protozoal intestinal diseases|Other specified protozoal intestinal diseases +C0152507|T047|AB|A07.8|ICD10CM|Other specified protozoal intestinal diseases|Other specified protozoal intestinal diseases +C0036231|T047|ET|A07.8|ICD10CM|Sarcocystosis|Sarcocystosis +C0036231|T047|ET|A07.8|ICD10CM|Sarcosporidiosis|Sarcosporidiosis +C0392655|T047|ET|A07.9|ICD10CM|Flagellate diarrhea|Flagellate diarrhea +C0276774|T047|ET|A07.9|ICD10CM|Protozoal colitis|Protozoal colitis +C0276774|T047|ET|A07.9|ICD10CM|Protozoal diarrhea|Protozoal diarrhea +C0276774|T047|ET|A07.9|ICD10CM|Protozoal dysentery|Protozoal dysentery +C0276774|T047|PT|A07.9|ICD10CM|Protozoal intestinal disease, unspecified|Protozoal intestinal disease, unspecified +C0276774|T047|AB|A07.9|ICD10CM|Protozoal intestinal disease, unspecified|Protozoal intestinal disease, unspecified +C0276774|T047|PT|A07.9|ICD10|Protozoal intestinal disease, unspecified|Protozoal intestinal disease, unspecified +C0494032|T047|HT|A08|ICD10|Viral and other specified intestinal infections|Viral and other specified intestinal infections +C0494032|T047|AB|A08|ICD10CM|Viral and other specified intestinal infections|Viral and other specified intestinal infections +C0494032|T047|HT|A08|ICD10CM|Viral and other specified intestinal infections|Viral and other specified intestinal infections +C0343363|T047|PT|A08.0|ICD10|Rotaviral enteritis|Rotaviral enteritis +C0343363|T047|PT|A08.0|ICD10CM|Rotaviral enteritis|Rotaviral enteritis +C0343363|T047|AB|A08.0|ICD10CM|Rotaviral enteritis|Rotaviral enteritis +C2880112|T047|AB|A08.1|ICD10CM|Acute gastrent d/t Norwalk agent and oth small round viruses|Acute gastrent d/t Norwalk agent and oth small round viruses +C0494033|T047|PT|A08.1|ICD10|Acute gastroenteropathy due to Norwalk agent|Acute gastroenteropathy due to Norwalk agent +C2880112|T047|HT|A08.1|ICD10CM|Acute gastroenteropathy due to Norwalk agent and other small round viruses|Acute gastroenteropathy due to Norwalk agent and other small round viruses +C2880113|T047|ET|A08.11|ICD10CM|Acute gastroenteropathy due to Norovirus|Acute gastroenteropathy due to Norovirus +C0494033|T047|PT|A08.11|ICD10CM|Acute gastroenteropathy due to Norwalk agent|Acute gastroenteropathy due to Norwalk agent +C0494033|T047|AB|A08.11|ICD10CM|Acute gastroenteropathy due to Norwalk agent|Acute gastroenteropathy due to Norwalk agent +C2880114|T047|ET|A08.11|ICD10CM|Acute gastroenteropathy due to Norwalk-like agent|Acute gastroenteropathy due to Norwalk-like agent +C2880116|T047|AB|A08.19|ICD10CM|Acute gastroenteropathy due to other small round viruses|Acute gastroenteropathy due to other small round viruses +C2880116|T047|PT|A08.19|ICD10CM|Acute gastroenteropathy due to other small round viruses|Acute gastroenteropathy due to other small round viruses +C2880115|T047|ET|A08.19|ICD10CM|Acute gastroenteropathy due to small round virus [SRV] NOS|Acute gastroenteropathy due to small round virus [SRV] NOS +C0276162|T047|PT|A08.2|ICD10CM|Adenoviral enteritis|Adenoviral enteritis +C0276162|T047|AB|A08.2|ICD10CM|Adenoviral enteritis|Adenoviral enteritis +C0276162|T047|PT|A08.2|ICD10|Adenoviral enteritis|Adenoviral enteritis +C0348098|T047|PT|A08.3|ICD10|Other viral enteritis|Other viral enteritis +C0348098|T047|HT|A08.3|ICD10CM|Other viral enteritis|Other viral enteritis +C0348098|T047|AB|A08.3|ICD10CM|Other viral enteritis|Other viral enteritis +C1611187|T047|PT|A08.31|ICD10CM|Calicivirus enteritis|Calicivirus enteritis +C1611187|T047|AB|A08.31|ICD10CM|Calicivirus enteritis|Calicivirus enteritis +C0374936|T047|AB|A08.32|ICD10CM|Astrovirus enteritis|Astrovirus enteritis +C0374936|T047|PT|A08.32|ICD10CM|Astrovirus enteritis|Astrovirus enteritis +C2880119|T047|ET|A08.39|ICD10CM|Coxsackie virus enteritis|Coxsackie virus enteritis +C2880120|T047|ET|A08.39|ICD10CM|Echovirus enteritis|Echovirus enteritis +C2880121|T047|ET|A08.39|ICD10CM|Enterovirus enteritis NEC|Enterovirus enteritis NEC +C0348098|T047|PT|A08.39|ICD10CM|Other viral enteritis|Other viral enteritis +C0348098|T047|AB|A08.39|ICD10CM|Other viral enteritis|Other viral enteritis +C2880122|T047|ET|A08.39|ICD10CM|Torovirus enteritis|Torovirus enteritis +C0042708|T047|ET|A08.4|ICD10CM|Viral enteritis NOS|Viral enteritis NOS +C0152517|T047|ET|A08.4|ICD10CM|Viral gastroenteritis NOS|Viral gastroenteritis NOS +C2880123|T047|ET|A08.4|ICD10CM|Viral gastroenteropathy NOS|Viral gastroenteropathy NOS +C0348099|T047|PT|A08.4|ICD10CM|Viral intestinal infection, unspecified|Viral intestinal infection, unspecified +C0348099|T047|AB|A08.4|ICD10CM|Viral intestinal infection, unspecified|Viral intestinal infection, unspecified +C0348099|T047|PT|A08.4|ICD10|Viral intestinal infection, unspecified|Viral intestinal infection, unspecified +C0348100|T047|PT|A08.5|ICD10|Other specified intestinal infections|Other specified intestinal infections +C0348100|T047|PT|A08.8|ICD10CM|Other specified intestinal infections|Other specified intestinal infections +C0348100|T047|AB|A08.8|ICD10CM|Other specified intestinal infections|Other specified intestinal infections +C0348101|T047|PT|A09|ICD10AE|Diarrhea and gastroenteritis of presumed infectious origin|Diarrhea and gastroenteritis of presumed infectious origin +C0348101|T047|PT|A09|ICD10|Diarrhoea and gastroenteritis of presumed infectious origin|Diarrhoea and gastroenteritis of presumed infectious origin +C0277524|T047|ET|A09|ICD10CM|Infectious colitis NOS|Infectious colitis NOS +C0021342|T047|ET|A09|ICD10CM|Infectious enteritis NOS|Infectious enteritis NOS +C2880124|T047|AB|A09|ICD10CM|Infectious gastroenteritis and colitis, unspecified|Infectious gastroenteritis and colitis, unspecified +C2880124|T047|PT|A09|ICD10CM|Infectious gastroenteritis and colitis, unspecified|Infectious gastroenteritis and colitis, unspecified +C0277525|T047|ET|A09|ICD10CM|Infectious gastroenteritis NOS|Infectious gastroenteritis NOS +C0041327|T047|HT|A15|ICD10CM|Respiratory tuberculosis|Respiratory tuberculosis +C0041327|T047|AB|A15|ICD10CM|Respiratory tuberculosis|Respiratory tuberculosis +C0348103|T047|HT|A15|ICD10|Respiratory tuberculosis, bacteriologically and histologically confirmed|Respiratory tuberculosis, bacteriologically and histologically confirmed +C4290043|T047|ET|A15-A19|ICD10CM|infections due to Mycobacterium tuberculosis and Mycobacterium bovis|infections due to Mycobacterium tuberculosis and Mycobacterium bovis +C0041296|T047|HT|A15-A19|ICD10CM|Tuberculosis (A15-A19)|Tuberculosis (A15-A19) +C0041296|T047|HT|A15-A19.9|ICD10|Tuberculosis|Tuberculosis +C0041327|T047|AB|A15.0|ICD10CM|Tuberculosis of lung|Tuberculosis of lung +C0041327|T047|PT|A15.0|ICD10CM|Tuberculosis of lung|Tuberculosis of lung +C0348809|T047|PT|A15.0|ICD10|Tuberculosis of lung, confirmed by sputum microscopy with or without culture|Tuberculosis of lung, confirmed by sputum microscopy with or without culture +C0152586|T047|ET|A15.0|ICD10CM|Tuberculous bronchiectasis|Tuberculous bronchiectasis +C0041336|T047|ET|A15.0|ICD10CM|Tuberculous fibrosis of lung|Tuberculous fibrosis of lung +C0275891|T047|ET|A15.0|ICD10CM|Tuberculous pneumonia|Tuberculous pneumonia +C0152600|T047|ET|A15.0|ICD10CM|Tuberculous pneumothorax|Tuberculous pneumothorax +C0348810|T047|PT|A15.1|ICD10|Tuberculosis of lung, confirmed by culture only|Tuberculosis of lung, confirmed by culture only +C0348811|T047|PT|A15.2|ICD10|Tuberculosis of lung, confirmed histologically|Tuberculosis of lung, confirmed histologically +C0348812|T047|PT|A15.3|ICD10|Tuberculosis of lung, confirmed by unspecified means|Tuberculosis of lung, confirmed by unspecified means +C0275893|T047|ET|A15.4|ICD10CM|Tuberculosis of hilar lymph nodes|Tuberculosis of hilar lymph nodes +C0152627|T047|PT|A15.4|ICD10CM|Tuberculosis of intrathoracic lymph nodes|Tuberculosis of intrathoracic lymph nodes +C0152627|T047|AB|A15.4|ICD10CM|Tuberculosis of intrathoracic lymph nodes|Tuberculosis of intrathoracic lymph nodes +C0348964|T047|PT|A15.4|ICD10|Tuberculosis of intrathoracic lymph nodes, confirmed bacteriologically and histologically|Tuberculosis of intrathoracic lymph nodes, confirmed bacteriologically and histologically +C0275894|T047|ET|A15.4|ICD10CM|Tuberculosis of mediastinal lymph nodes|Tuberculosis of mediastinal lymph nodes +C0275895|T047|ET|A15.4|ICD10CM|Tuberculosis of tracheobronchial lymph nodes|Tuberculosis of tracheobronchial lymph nodes +C0152573|T047|ET|A15.5|ICD10CM|Tuberculosis of bronchus|Tuberculosis of bronchus +C0275898|T047|ET|A15.5|ICD10CM|Tuberculosis of glottis|Tuberculosis of glottis +C0041315|T047|ET|A15.5|ICD10CM|Tuberculosis of larynx|Tuberculosis of larynx +C2880126|T047|AB|A15.5|ICD10CM|Tuberculosis of larynx, trachea and bronchus|Tuberculosis of larynx, trachea and bronchus +C2880126|T047|PT|A15.5|ICD10CM|Tuberculosis of larynx, trachea and bronchus|Tuberculosis of larynx, trachea and bronchus +C0348966|T047|PT|A15.5|ICD10|Tuberculosis of larynx, trachea and bronchus, confirmed bacteriologically and histologically|Tuberculosis of larynx, trachea and bronchus, confirmed bacteriologically and histologically +C2240379|T047|ET|A15.5|ICD10CM|Tuberculosis of trachea|Tuberculosis of trachea +C2880127|T047|ET|A15.6|ICD10CM|Tuberculosis of pleura Tuberculous empyema|Tuberculosis of pleura Tuberculous empyema +C0041326|T047|PT|A15.6|ICD10CM|Tuberculous pleurisy|Tuberculous pleurisy +C0041326|T047|AB|A15.6|ICD10CM|Tuberculous pleurisy|Tuberculous pleurisy +C0348808|T047|PT|A15.6|ICD10|Tuberculous pleurisy, confirmed bacteriologically and histologically|Tuberculous pleurisy, confirmed bacteriologically and histologically +C1407689|T047|PT|A15.7|ICD10CM|Primary respiratory tuberculosis|Primary respiratory tuberculosis +C1407689|T047|AB|A15.7|ICD10CM|Primary respiratory tuberculosis|Primary respiratory tuberculosis +C0348960|T047|PT|A15.7|ICD10|Primary respiratory tuberculosis, confirmed bacteriologically and histologically|Primary respiratory tuberculosis, confirmed bacteriologically and histologically +C0275899|T047|ET|A15.8|ICD10CM|Mediastinal tuberculosis|Mediastinal tuberculosis +C2880128|T047|ET|A15.8|ICD10CM|Nasopharyngeal tuberculosis|Nasopharyngeal tuberculosis +C0152620|T047|AB|A15.8|ICD10CM|Other respiratory tuberculosis|Other respiratory tuberculosis +C0152620|T047|PT|A15.8|ICD10CM|Other respiratory tuberculosis|Other respiratory tuberculosis +C0348102|T047|PT|A15.8|ICD10|Other respiratory tuberculosis, confirmed bacteriologically and histologically|Other respiratory tuberculosis, confirmed bacteriologically and histologically +C0275901|T047|ET|A15.8|ICD10CM|Tuberculosis of nose|Tuberculosis of nose +C2880129|T047|ET|A15.8|ICD10CM|Tuberculosis of sinus [any nasal]|Tuberculosis of sinus [any nasal] +C2880130|T047|AB|A15.9|ICD10CM|Respiratory tuberculosis unspecified|Respiratory tuberculosis unspecified +C2880130|T047|PT|A15.9|ICD10CM|Respiratory tuberculosis unspecified|Respiratory tuberculosis unspecified +C0348103|T047|PT|A15.9|ICD10|Respiratory tuberculosis unspecified, confirmed bacteriologically and histologically|Respiratory tuberculosis unspecified, confirmed bacteriologically and histologically +C0348967|T047|HT|A16|ICD10|Respiratory tuberculosis, not confirmed bacteriologically or histologically|Respiratory tuberculosis, not confirmed bacteriologically or histologically +C0348968|T047|PT|A16.0|ICD10|Tuberculosis of lung, bacteriologically and histologically negative|Tuberculosis of lung, bacteriologically and histologically negative +C0348813|T047|PT|A16.1|ICD10|Tuberculosis of lung, bacteriological and histological examination not done|Tuberculosis of lung, bacteriological and histological examination not done +C0494034|T047|PT|A16.2|ICD10|Tuberculosis of lung, without mention of bacteriological or histological confirmation|Tuberculosis of lung, without mention of bacteriological or histological confirmation +C0494037|T047|PT|A16.5|ICD10|Tuberculous pleurisy, without mention of bacteriological or histological confirmation|Tuberculous pleurisy, without mention of bacteriological or histological confirmation +C0348961|T047|PT|A16.7|ICD10|Primary respiratory tuberculosis without mention of bacteriological or histological confirmation|Primary respiratory tuberculosis without mention of bacteriological or histological confirmation +C0348104|T047|PT|A16.8|ICD10|Other respiratory tuberculosis, without mention of bacteriological or histological confirmation|Other respiratory tuberculosis, without mention of bacteriological or histological confirmation +C0348107|T047|HT|A17|ICD10|Tuberculosis of nervous system|Tuberculosis of nervous system +C0348107|T047|AB|A17|ICD10CM|Tuberculosis of nervous system|Tuberculosis of nervous system +C0348107|T047|HT|A17|ICD10CM|Tuberculosis of nervous system|Tuberculosis of nervous system +C2880131|T047|ET|A17.0|ICD10CM|Tuberculosis of meninges (cerebral)(spinal)|Tuberculosis of meninges (cerebral)(spinal) +C0275907|T047|ET|A17.0|ICD10CM|Tuberculous leptomeningitis|Tuberculous leptomeningitis +C0041318|T047|PT|A17.0|ICD10CM|Tuberculous meningitis|Tuberculous meningitis +C0041318|T047|AB|A17.0|ICD10CM|Tuberculous meningitis|Tuberculous meningitis +C0041318|T047|PT|A17.0|ICD10|Tuberculous meningitis|Tuberculous meningitis +C0152661|T047|PT|A17.1|ICD10|Meningeal tuberculoma|Meningeal tuberculoma +C0152661|T047|PT|A17.1|ICD10CM|Meningeal tuberculoma|Meningeal tuberculoma +C0152661|T047|AB|A17.1|ICD10CM|Meningeal tuberculoma|Meningeal tuberculoma +C2880132|T047|ET|A17.1|ICD10CM|Tuberculoma of meninges (cerebral) (spinal)|Tuberculoma of meninges (cerebral) (spinal) +C0348106|T047|HT|A17.8|ICD10CM|Other tuberculosis of nervous system|Other tuberculosis of nervous system +C0348106|T047|AB|A17.8|ICD10CM|Other tuberculosis of nervous system|Other tuberculosis of nervous system +C0348106|T047|PT|A17.8|ICD10|Other tuberculosis of nervous system|Other tuberculosis of nervous system +C2880134|T047|AB|A17.81|ICD10CM|Tuberculoma of brain and spinal cord|Tuberculoma of brain and spinal cord +C2880134|T047|PT|A17.81|ICD10CM|Tuberculoma of brain and spinal cord|Tuberculoma of brain and spinal cord +C2880133|T047|ET|A17.81|ICD10CM|Tuberculous abscess of brain and spinal cord|Tuberculous abscess of brain and spinal cord +C0275908|T047|PT|A17.82|ICD10CM|Tuberculous meningoencephalitis|Tuberculous meningoencephalitis +C0275908|T047|AB|A17.82|ICD10CM|Tuberculous meningoencephalitis|Tuberculous meningoencephalitis +C2959795|T047|ET|A17.82|ICD10CM|Tuberculous myelitis|Tuberculous myelitis +C2880135|T047|ET|A17.83|ICD10CM|Tuberculous mononeuropathy|Tuberculous mononeuropathy +C2880136|T047|PT|A17.83|ICD10CM|Tuberculous neuritis|Tuberculous neuritis +C2880136|T047|AB|A17.83|ICD10CM|Tuberculous neuritis|Tuberculous neuritis +C0348106|T047|PT|A17.89|ICD10CM|Other tuberculosis of nervous system|Other tuberculosis of nervous system +C0348106|T047|AB|A17.89|ICD10CM|Other tuberculosis of nervous system|Other tuberculosis of nervous system +C2880137|T047|ET|A17.89|ICD10CM|Tuberculous polyneuropathy|Tuberculous polyneuropathy +C0348107|T047|PT|A17.9|ICD10CM|Tuberculosis of nervous system, unspecified|Tuberculosis of nervous system, unspecified +C0348107|T047|AB|A17.9|ICD10CM|Tuberculosis of nervous system, unspecified|Tuberculosis of nervous system, unspecified +C0348107|T047|PT|A17.9|ICD10|Tuberculosis of nervous system, unspecified|Tuberculosis of nervous system, unspecified +C0041300|T047|HT|A18|ICD10|Tuberculosis of other organs|Tuberculosis of other organs +C0041300|T047|HT|A18|ICD10CM|Tuberculosis of other organs|Tuberculosis of other organs +C0041300|T047|AB|A18|ICD10CM|Tuberculosis of other organs|Tuberculosis of other organs +C0041324|T047|HT|A18.0|ICD10CM|Tuberculosis of bones and joints|Tuberculosis of bones and joints +C0041324|T047|AB|A18.0|ICD10CM|Tuberculosis of bones and joints|Tuberculosis of bones and joints +C0041324|T047|PT|A18.0|ICD10|Tuberculosis of bones and joints|Tuberculosis of bones and joints +C2880138|T047|ET|A18.01|ICD10CM|Pott's disease or curvature of spine|Pott's disease or curvature of spine +C0041330|T047|PT|A18.01|ICD10CM|Tuberculosis of spine|Tuberculosis of spine +C0041330|T047|AB|A18.01|ICD10CM|Tuberculosis of spine|Tuberculosis of spine +C0022415|T047|ET|A18.01|ICD10CM|Tuberculous arthritis|Tuberculous arthritis +C2880139|T047|ET|A18.01|ICD10CM|Tuberculous osteomyelitis of spine|Tuberculous osteomyelitis of spine +C0041330|T047|ET|A18.01|ICD10CM|Tuberculous spondylitis|Tuberculous spondylitis +C0152737|T047|ET|A18.02|ICD10CM|Tuberculosis of hip (joint)|Tuberculosis of hip (joint) +C0152744|T047|ET|A18.02|ICD10CM|Tuberculosis of knee (joint)|Tuberculosis of knee (joint) +C2880140|T047|AB|A18.02|ICD10CM|Tuberculous arthritis of other joints|Tuberculous arthritis of other joints +C2880140|T047|PT|A18.02|ICD10CM|Tuberculous arthritis of other joints|Tuberculous arthritis of other joints +C0347907|T047|PT|A18.03|ICD10CM|Tuberculosis of other bones|Tuberculosis of other bones +C0347907|T047|AB|A18.03|ICD10CM|Tuberculosis of other bones|Tuberculosis of other bones +C0275956|T047|ET|A18.03|ICD10CM|Tuberculous mastoiditis|Tuberculous mastoiditis +C0275922|T047|ET|A18.03|ICD10CM|Tuberculous osteomyelitis|Tuberculous osteomyelitis +C2880142|T047|AB|A18.09|ICD10CM|Other musculoskeletal tuberculosis|Other musculoskeletal tuberculosis +C2880142|T047|PT|A18.09|ICD10CM|Other musculoskeletal tuberculosis|Other musculoskeletal tuberculosis +C2880141|T047|ET|A18.09|ICD10CM|Tuberculous myositis|Tuberculous myositis +C0275925|T047|ET|A18.09|ICD10CM|Tuberculous synovitis|Tuberculous synovitis +C0238446|T047|ET|A18.09|ICD10CM|Tuberculous tenosynovitis|Tuberculous tenosynovitis +C0041333|T047|PT|A18.1|ICD10|Tuberculosis of genitourinary system|Tuberculosis of genitourinary system +C0041333|T047|HT|A18.1|ICD10CM|Tuberculosis of genitourinary system|Tuberculosis of genitourinary system +C0041333|T047|AB|A18.1|ICD10CM|Tuberculosis of genitourinary system|Tuberculosis of genitourinary system +C0041333|T047|AB|A18.10|ICD10CM|Tuberculosis of genitourinary system, unspecified|Tuberculosis of genitourinary system, unspecified +C0041333|T047|PT|A18.10|ICD10CM|Tuberculosis of genitourinary system, unspecified|Tuberculosis of genitourinary system, unspecified +C2880144|T047|AB|A18.11|ICD10CM|Tuberculosis of kidney and ureter|Tuberculosis of kidney and ureter +C2880144|T047|PT|A18.11|ICD10CM|Tuberculosis of kidney and ureter|Tuberculosis of kidney and ureter +C0152793|T047|PT|A18.12|ICD10CM|Tuberculosis of bladder|Tuberculosis of bladder +C0152793|T047|AB|A18.12|ICD10CM|Tuberculosis of bladder|Tuberculosis of bladder +C0041332|T047|PT|A18.13|ICD10CM|Tuberculosis of other urinary organs|Tuberculosis of other urinary organs +C0041332|T047|AB|A18.13|ICD10CM|Tuberculosis of other urinary organs|Tuberculosis of other urinary organs +C0341760|T047|ET|A18.13|ICD10CM|Tuberculous urethritis|Tuberculous urethritis +C0275928|T047|PT|A18.14|ICD10CM|Tuberculosis of prostate|Tuberculosis of prostate +C0275928|T047|AB|A18.14|ICD10CM|Tuberculosis of prostate|Tuberculosis of prostate +C0152821|T047|AB|A18.15|ICD10CM|Tuberculosis of other male genital organs|Tuberculosis of other male genital organs +C0152821|T047|PT|A18.15|ICD10CM|Tuberculosis of other male genital organs|Tuberculosis of other male genital organs +C2887034|T047|AB|A18.16|ICD10CM|Tuberculosis of cervix|Tuberculosis of cervix +C2887034|T047|PT|A18.16|ICD10CM|Tuberculosis of cervix|Tuberculosis of cervix +C0275958|T047|ET|A18.17|ICD10CM|Tuberculous endometritis|Tuberculous endometritis +C0452162|T047|AB|A18.17|ICD10CM|Tuberculous female pelvic inflammatory disease|Tuberculous female pelvic inflammatory disease +C0452162|T047|PT|A18.17|ICD10CM|Tuberculous female pelvic inflammatory disease|Tuberculous female pelvic inflammatory disease +C0152828|T047|ET|A18.17|ICD10CM|Tuberculous oophoritis and salpingitis|Tuberculous oophoritis and salpingitis +C0152835|T047|AB|A18.18|ICD10CM|Tuberculosis of other female genital organs|Tuberculosis of other female genital organs +C0152835|T047|PT|A18.18|ICD10CM|Tuberculosis of other female genital organs|Tuberculosis of other female genital organs +C2887035|T047|ET|A18.18|ICD10CM|Tuberculous ulceration of vulva|Tuberculous ulceration of vulva +C0041316|T047|ET|A18.2|ICD10CM|Tuberculous adenitis|Tuberculous adenitis +C0152861|T047|PT|A18.2|ICD10CM|Tuberculous peripheral lymphadenopathy|Tuberculous peripheral lymphadenopathy +C0152861|T047|AB|A18.2|ICD10CM|Tuberculous peripheral lymphadenopathy|Tuberculous peripheral lymphadenopathy +C0152861|T047|PT|A18.2|ICD10|Tuberculous peripheral lymphadenopathy|Tuberculous peripheral lymphadenopathy +C0152717|T047|PT|A18.3|ICD10|Tuberculosis of intestines, peritoneum and mesenteric glands|Tuberculosis of intestines, peritoneum and mesenteric glands +C0152717|T047|HT|A18.3|ICD10CM|Tuberculosis of intestines, peritoneum and mesenteric glands|Tuberculosis of intestines, peritoneum and mesenteric glands +C0152717|T047|AB|A18.3|ICD10CM|Tuberculosis of intestines, peritoneum and mesenteric glands|Tuberculosis of intestines, peritoneum and mesenteric glands +C0275919|T047|ET|A18.31|ICD10CM|Tuberculous ascites|Tuberculous ascites +C0041325|T047|PT|A18.31|ICD10CM|Tuberculous peritonitis|Tuberculous peritonitis +C0041325|T047|AB|A18.31|ICD10CM|Tuberculous peritonitis|Tuberculous peritonitis +C2887036|T047|ET|A18.32|ICD10CM|Tuberculosis of anus and rectum|Tuberculosis of anus and rectum +C2887037|T047|ET|A18.32|ICD10CM|Tuberculosis of intestine (large) (small)|Tuberculosis of intestine (large) (small) +C0275920|T047|PT|A18.32|ICD10CM|Tuberculous enteritis|Tuberculous enteritis +C0275920|T047|AB|A18.32|ICD10CM|Tuberculous enteritis|Tuberculous enteritis +C1407692|T047|PT|A18.39|ICD10CM|Retroperitoneal tuberculosis|Retroperitoneal tuberculosis +C1407692|T047|AB|A18.39|ICD10CM|Retroperitoneal tuberculosis|Retroperitoneal tuberculosis +C0340784|T047|ET|A18.39|ICD10CM|Tuberculosis of mesenteric glands|Tuberculosis of mesenteric glands +C2887038|T047|ET|A18.39|ICD10CM|Tuberculosis of retroperitoneal (lymph glands)|Tuberculosis of retroperitoneal (lymph glands) +C0014741|T047|ET|A18.4|ICD10CM|Erythema induratum, tuberculous|Erythema induratum, tuberculous +C2887039|T047|ET|A18.4|ICD10CM|Lupus excedens|Lupus excedens +C0024131|T047|ET|A18.4|ICD10CM|Lupus vulgaris NOS|Lupus vulgaris NOS +C2887040|T047|ET|A18.4|ICD10CM|Lupus vulgaris of eyelid|Lupus vulgaris of eyelid +C0275934|T047|ET|A18.4|ICD10CM|Scrofuloderma|Scrofuloderma +C2887041|T047|ET|A18.4|ICD10CM|Tuberculosis of external ear|Tuberculosis of external ear +C0343426|T047|PT|A18.4|ICD10CM|Tuberculosis of skin and subcutaneous tissue|Tuberculosis of skin and subcutaneous tissue +C0343426|T047|AB|A18.4|ICD10CM|Tuberculosis of skin and subcutaneous tissue|Tuberculosis of skin and subcutaneous tissue +C0343426|T047|PT|A18.4|ICD10|Tuberculosis of skin and subcutaneous tissue|Tuberculosis of skin and subcutaneous tissue +C0041322|T047|PT|A18.5|ICD10|Tuberculosis of eye|Tuberculosis of eye +C0041322|T047|HT|A18.5|ICD10CM|Tuberculosis of eye|Tuberculosis of eye +C0041322|T047|AB|A18.5|ICD10CM|Tuberculosis of eye|Tuberculosis of eye +C0041322|T047|AB|A18.50|ICD10CM|Tuberculosis of eye, unspecified|Tuberculosis of eye, unspecified +C0041322|T047|PT|A18.50|ICD10CM|Tuberculosis of eye, unspecified|Tuberculosis of eye, unspecified +C0275945|T047|PT|A18.51|ICD10CM|Tuberculous episcleritis|Tuberculous episcleritis +C0275945|T047|AB|A18.51|ICD10CM|Tuberculous episcleritis|Tuberculous episcleritis +C0275946|T047|ET|A18.52|ICD10CM|Tuberculous interstitial keratitis|Tuberculous interstitial keratitis +C2063411|T047|AB|A18.52|ICD10CM|Tuberculous keratitis|Tuberculous keratitis +C2063411|T047|PT|A18.52|ICD10CM|Tuberculous keratitis|Tuberculous keratitis +C2887042|T047|ET|A18.52|ICD10CM|Tuberculous keratoconjunctivitis (interstitial) (phlyctenular)|Tuberculous keratoconjunctivitis (interstitial) (phlyctenular) +C0339410|T047|PT|A18.53|ICD10CM|Tuberculous chorioretinitis|Tuberculous chorioretinitis +C0339410|T047|AB|A18.53|ICD10CM|Tuberculous chorioretinitis|Tuberculous chorioretinitis +C2887043|T047|AB|A18.54|ICD10CM|Tuberculous iridocyclitis|Tuberculous iridocyclitis +C2887043|T047|PT|A18.54|ICD10CM|Tuberculous iridocyclitis|Tuberculous iridocyclitis +C2887044|T047|AB|A18.59|ICD10CM|Other tuberculosis of eye|Other tuberculosis of eye +C2887044|T047|PT|A18.59|ICD10CM|Other tuberculosis of eye|Other tuberculosis of eye +C0392112|T047|ET|A18.59|ICD10CM|Tuberculous conjunctivitis|Tuberculous conjunctivitis +C2887045|T047|AB|A18.6|ICD10CM|Tuberculosis of (inner) (middle) ear|Tuberculosis of (inner) (middle) ear +C2887045|T047|PT|A18.6|ICD10CM|Tuberculosis of (inner) (middle) ear|Tuberculosis of (inner) (middle) ear +C0152874|T047|PT|A18.6|ICD10|Tuberculosis of ear|Tuberculosis of ear +C0275949|T047|ET|A18.6|ICD10CM|Tuberculous otitis media|Tuberculous otitis media +C0152889|T047|PT|A18.7|ICD10|Tuberculosis of adrenal glands|Tuberculosis of adrenal glands +C0152889|T047|PT|A18.7|ICD10CM|Tuberculosis of adrenal glands|Tuberculosis of adrenal glands +C0152889|T047|AB|A18.7|ICD10CM|Tuberculosis of adrenal glands|Tuberculosis of adrenal glands +C0546992|T047|ET|A18.7|ICD10CM|Tuberculous Addison's disease|Tuberculous Addison's disease +C0041301|T047|HT|A18.8|ICD10CM|Tuberculosis of other specified organs|Tuberculosis of other specified organs +C0041301|T047|AB|A18.8|ICD10CM|Tuberculosis of other specified organs|Tuberculosis of other specified organs +C0041301|T047|PT|A18.8|ICD10|Tuberculosis of other specified organs|Tuberculosis of other specified organs +C0152881|T047|PT|A18.81|ICD10CM|Tuberculosis of thyroid gland|Tuberculosis of thyroid gland +C0152881|T047|AB|A18.81|ICD10CM|Tuberculosis of thyroid gland|Tuberculosis of thyroid gland +C2887046|T047|AB|A18.82|ICD10CM|Tuberculosis of other endocrine glands|Tuberculosis of other endocrine glands +C2887046|T047|PT|A18.82|ICD10CM|Tuberculosis of other endocrine glands|Tuberculosis of other endocrine glands +C2170722|T047|ET|A18.82|ICD10CM|Tuberculosis of pituitary gland|Tuberculosis of pituitary gland +C2170738|T047|ET|A18.82|ICD10CM|Tuberculosis of thymus gland|Tuberculosis of thymus gland +C2887047|T047|AB|A18.83|ICD10CM|Tuberculosis of digestive tract organs, NEC|Tuberculosis of digestive tract organs, NEC +C2887047|T047|PT|A18.83|ICD10CM|Tuberculosis of digestive tract organs, not elsewhere classified|Tuberculosis of digestive tract organs, not elsewhere classified +C0578806|T047|PT|A18.84|ICD10CM|Tuberculosis of heart|Tuberculosis of heart +C0578806|T047|AB|A18.84|ICD10CM|Tuberculosis of heart|Tuberculosis of heart +C2887048|T047|ET|A18.84|ICD10CM|Tuberculous cardiomyopathy|Tuberculous cardiomyopathy +C2887049|T047|ET|A18.84|ICD10CM|Tuberculous endocarditis|Tuberculous endocarditis +C2118532|T047|ET|A18.84|ICD10CM|Tuberculous myocarditis|Tuberculous myocarditis +C0031049|T047|ET|A18.84|ICD10CM|Tuberculous pericarditis|Tuberculous pericarditis +C0041331|T047|PT|A18.85|ICD10CM|Tuberculosis of spleen|Tuberculosis of spleen +C0041331|T047|AB|A18.85|ICD10CM|Tuberculosis of spleen|Tuberculosis of spleen +C2170687|T047|ET|A18.89|ICD10CM|Tuberculosis of muscle|Tuberculosis of muscle +C2887051|T047|AB|A18.89|ICD10CM|Tuberculosis of other sites|Tuberculosis of other sites +C2887051|T047|PT|A18.89|ICD10CM|Tuberculosis of other sites|Tuberculosis of other sites +C2887050|T047|ET|A18.89|ICD10CM|Tuberculous cerebral arteritis|Tuberculous cerebral arteritis +C0152915|T047|ET|A19|ICD10CM|disseminated tuberculosis|disseminated tuberculosis +C0152915|T047|ET|A19|ICD10CM|generalized tuberculosis|generalized tuberculosis +C0041321|T047|HT|A19|ICD10CM|Miliary tuberculosis|Miliary tuberculosis +C0041321|T047|AB|A19|ICD10CM|Miliary tuberculosis|Miliary tuberculosis +C0041321|T047|HT|A19|ICD10|Miliary tuberculosis|Miliary tuberculosis +C0275960|T047|ET|A19|ICD10CM|tuberculous polyserositis|tuberculous polyserositis +C0348962|T047|PT|A19.0|ICD10|Acute miliary tuberculosis of a single specified site|Acute miliary tuberculosis of a single specified site +C0348962|T047|PT|A19.0|ICD10CM|Acute miliary tuberculosis of a single specified site|Acute miliary tuberculosis of a single specified site +C0348962|T047|AB|A19.0|ICD10CM|Acute miliary tuberculosis of a single specified site|Acute miliary tuberculosis of a single specified site +C0348963|T047|PT|A19.1|ICD10CM|Acute miliary tuberculosis of multiple sites|Acute miliary tuberculosis of multiple sites +C0348963|T047|AB|A19.1|ICD10CM|Acute miliary tuberculosis of multiple sites|Acute miliary tuberculosis of multiple sites +C0348963|T047|PT|A19.1|ICD10|Acute miliary tuberculosis of multiple sites|Acute miliary tuberculosis of multiple sites +C0152915|T047|PT|A19.2|ICD10|Acute miliary tuberculosis, unspecified|Acute miliary tuberculosis, unspecified +C0152915|T047|PT|A19.2|ICD10CM|Acute miliary tuberculosis, unspecified|Acute miliary tuberculosis, unspecified +C0152915|T047|AB|A19.2|ICD10CM|Acute miliary tuberculosis, unspecified|Acute miliary tuberculosis, unspecified +C0348109|T047|PT|A19.8|ICD10CM|Other miliary tuberculosis|Other miliary tuberculosis +C0348109|T047|AB|A19.8|ICD10CM|Other miliary tuberculosis|Other miliary tuberculosis +C0348109|T047|PT|A19.8|ICD10|Other miliary tuberculosis|Other miliary tuberculosis +C0041321|T047|PT|A19.9|ICD10|Miliary tuberculosis, unspecified|Miliary tuberculosis, unspecified +C0041321|T047|PT|A19.9|ICD10CM|Miliary tuberculosis, unspecified|Miliary tuberculosis, unspecified +C0041321|T047|AB|A19.9|ICD10CM|Miliary tuberculosis, unspecified|Miliary tuberculosis, unspecified +C0032064|T047|ET|A20|ICD10CM|infection due to Yersinia pestis|infection due to Yersinia pestis +C0032064|T047|HT|A20|ICD10CM|Plague|Plague +C0032064|T047|AB|A20|ICD10CM|Plague|Plague +C0032064|T047|HT|A20|ICD10|Plague|Plague +C0348110|T047|HT|A20-A28|ICD10CM|Certain zoonotic bacterial diseases (A20-A28)|Certain zoonotic bacterial diseases (A20-A28) +C0348110|T047|HT|A20-A28.9|ICD10|Certain zoonotic bacterial diseases|Certain zoonotic bacterial diseases +C0282312|T047|PT|A20.0|ICD10|Bubonic plague|Bubonic plague +C0282312|T047|PT|A20.0|ICD10CM|Bubonic plague|Bubonic plague +C0282312|T047|AB|A20.0|ICD10CM|Bubonic plague|Bubonic plague +C0152935|T047|PT|A20.1|ICD10CM|Cellulocutaneous plague|Cellulocutaneous plague +C0152935|T047|AB|A20.1|ICD10CM|Cellulocutaneous plague|Cellulocutaneous plague +C0152935|T047|PT|A20.1|ICD10|Cellulocutaneous plague|Cellulocutaneous plague +C0524688|T047|PT|A20.2|ICD10CM|Pneumonic plague|Pneumonic plague +C0524688|T047|AB|A20.2|ICD10CM|Pneumonic plague|Pneumonic plague +C0524688|T047|PT|A20.2|ICD10|Pneumonic plague|Pneumonic plague +C0524687|T047|PT|A20.3|ICD10|Plague meningitis|Plague meningitis +C0524687|T047|PT|A20.3|ICD10CM|Plague meningitis|Plague meningitis +C0524687|T047|AB|A20.3|ICD10CM|Plague meningitis|Plague meningitis +C0152936|T047|PT|A20.7|ICD10|Septicaemic plague|Septicaemic plague +C0152936|T047|PT|A20.7|ICD10AE|Septicemic plague|Septicemic plague +C0152936|T047|PT|A20.7|ICD10CM|Septicemic plague|Septicemic plague +C0152936|T047|AB|A20.7|ICD10CM|Septicemic plague|Septicemic plague +C0275757|T047|ET|A20.8|ICD10CM|Abortive plague|Abortive plague +C1388901|T047|ET|A20.8|ICD10CM|Asymptomatic plague|Asymptomatic plague +C0348111|T047|PT|A20.8|ICD10CM|Other forms of plague|Other forms of plague +C0348111|T047|AB|A20.8|ICD10CM|Other forms of plague|Other forms of plague +C0348111|T047|PT|A20.8|ICD10|Other forms of plague|Other forms of plague +C0275757|T047|ET|A20.8|ICD10CM|Pestis minor|Pestis minor +C0032064|T047|PT|A20.9|ICD10CM|Plague, unspecified|Plague, unspecified +C0032064|T047|AB|A20.9|ICD10CM|Plague, unspecified|Plague, unspecified +C0032064|T047|PT|A20.9|ICD10|Plague, unspecified|Plague, unspecified +C0041351|T047|ET|A21|ICD10CM|deer-fly fever|deer-fly fever +C0041351|T047|ET|A21|ICD10CM|infection due to Francisella tularensis|infection due to Francisella tularensis +C0041351|T047|ET|A21|ICD10CM|rabbit fever|rabbit fever +C0041351|T047|HT|A21|ICD10|Tularaemia|Tularaemia +C0041351|T047|HT|A21|ICD10CM|Tularemia|Tularemia +C0041351|T047|AB|A21|ICD10CM|Tularemia|Tularemia +C0041351|T047|HT|A21|ICD10AE|Tularemia|Tularemia +C0152941|T047|PT|A21.0|ICD10|Ulceroglandular tularaemia|Ulceroglandular tularaemia +C0152941|T047|PT|A21.0|ICD10AE|Ulceroglandular tularemia|Ulceroglandular tularemia +C0152941|T047|PT|A21.0|ICD10CM|Ulceroglandular tularemia|Ulceroglandular tularemia +C0152941|T047|AB|A21.0|ICD10CM|Ulceroglandular tularemia|Ulceroglandular tularemia +C0152944|T047|PT|A21.1|ICD10|Oculoglandular tularaemia|Oculoglandular tularaemia +C0152944|T047|PT|A21.1|ICD10CM|Oculoglandular tularemia|Oculoglandular tularemia +C0152944|T047|AB|A21.1|ICD10CM|Oculoglandular tularemia|Oculoglandular tularemia +C0152944|T047|PT|A21.1|ICD10AE|Oculoglandular tularemia|Oculoglandular tularemia +C0152944|T047|ET|A21.1|ICD10CM|Ophthalmic tularemia|Ophthalmic tularemia +C0339946|T047|PT|A21.2|ICD10|Pulmonary tularaemia|Pulmonary tularaemia +C0339946|T047|PT|A21.2|ICD10CM|Pulmonary tularemia|Pulmonary tularemia +C0339946|T047|AB|A21.2|ICD10CM|Pulmonary tularemia|Pulmonary tularemia +C0339946|T047|PT|A21.2|ICD10AE|Pulmonary tularemia|Pulmonary tularemia +C1385684|T047|ET|A21.3|ICD10CM|Abdominal tularemia|Abdominal tularemia +C0494039|T047|PT|A21.3|ICD10|Gastrointestinal tularaemia|Gastrointestinal tularaemia +C0494039|T047|PT|A21.3|ICD10AE|Gastrointestinal tularemia|Gastrointestinal tularemia +C0494039|T047|PT|A21.3|ICD10CM|Gastrointestinal tularemia|Gastrointestinal tularemia +C0494039|T047|AB|A21.3|ICD10CM|Gastrointestinal tularemia|Gastrointestinal tularemia +C0275975|T047|PT|A21.7|ICD10|Generalized tularaemia|Generalized tularaemia +C0275975|T047|PT|A21.7|ICD10AE|Generalized tularemia|Generalized tularemia +C0275975|T047|PT|A21.7|ICD10CM|Generalized tularemia|Generalized tularemia +C0275975|T047|AB|A21.7|ICD10CM|Generalized tularemia|Generalized tularemia +C0348112|T047|PT|A21.8|ICD10|Other forms of tularaemia|Other forms of tularaemia +C0348112|T047|PT|A21.8|ICD10CM|Other forms of tularemia|Other forms of tularemia +C0348112|T047|AB|A21.8|ICD10CM|Other forms of tularemia|Other forms of tularemia +C0348112|T047|PT|A21.8|ICD10AE|Other forms of tularemia|Other forms of tularemia +C0041351|T047|PT|A21.9|ICD10|Tularaemia, unspecified|Tularaemia, unspecified +C0041351|T047|PT|A21.9|ICD10AE|Tularemia, unspecified|Tularemia, unspecified +C0041351|T047|PT|A21.9|ICD10CM|Tularemia, unspecified|Tularemia, unspecified +C0041351|T047|AB|A21.9|ICD10CM|Tularemia, unspecified|Tularemia, unspecified +C0003175|T047|HT|A22|ICD10|Anthrax|Anthrax +C0003175|T047|HT|A22|ICD10CM|Anthrax|Anthrax +C0003175|T047|AB|A22|ICD10CM|Anthrax|Anthrax +C0003175|T047|ET|A22|ICD10CM|infection due to Bacillus anthracis|infection due to Bacillus anthracis +C0003177|T047|PT|A22.0|ICD10CM|Cutaneous anthrax|Cutaneous anthrax +C0003177|T047|AB|A22.0|ICD10CM|Cutaneous anthrax|Cutaneous anthrax +C0003177|T047|PT|A22.0|ICD10|Cutaneous anthrax|Cutaneous anthrax +C1401399|T047|ET|A22.0|ICD10CM|Malignant carbuncle|Malignant carbuncle +C0003177|T047|ET|A22.0|ICD10CM|Malignant pustule|Malignant pustule +C0155866|T047|ET|A22.1|ICD10CM|Inhalation anthrax|Inhalation anthrax +C0155866|T047|PT|A22.1|ICD10CM|Pulmonary anthrax|Pulmonary anthrax +C0155866|T047|AB|A22.1|ICD10CM|Pulmonary anthrax|Pulmonary anthrax +C0155866|T047|PT|A22.1|ICD10|Pulmonary anthrax|Pulmonary anthrax +C1411077|T047|ET|A22.1|ICD10CM|Ragpicker's disease|Ragpicker's disease +C0155866|T047|ET|A22.1|ICD10CM|Woolsorter's disease|Woolsorter's disease +C0152945|T047|PT|A22.2|ICD10CM|Gastrointestinal anthrax|Gastrointestinal anthrax +C0152945|T047|AB|A22.2|ICD10CM|Gastrointestinal anthrax|Gastrointestinal anthrax +C0152945|T047|PT|A22.2|ICD10|Gastrointestinal anthrax|Gastrointestinal anthrax +C0152946|T047|PT|A22.7|ICD10CM|Anthrax sepsis|Anthrax sepsis +C0152946|T047|AB|A22.7|ICD10CM|Anthrax sepsis|Anthrax sepsis +C0152946|T047|PT|A22.7|ICD10|Anthrax septicaemia|Anthrax septicaemia +C0152946|T047|PT|A22.7|ICD10AE|Anthrax septicemia|Anthrax septicemia +C2887054|T047|ET|A22.8|ICD10CM|Anthrax meningitis|Anthrax meningitis +C0348113|T047|PT|A22.8|ICD10|Other forms of anthrax|Other forms of anthrax +C0348113|T047|PT|A22.8|ICD10CM|Other forms of anthrax|Other forms of anthrax +C0348113|T047|AB|A22.8|ICD10CM|Other forms of anthrax|Other forms of anthrax +C0003175|T047|PT|A22.9|ICD10CM|Anthrax, unspecified|Anthrax, unspecified +C0003175|T047|AB|A22.9|ICD10CM|Anthrax, unspecified|Anthrax, unspecified +C0003175|T047|PT|A22.9|ICD10|Anthrax, unspecified|Anthrax, unspecified +C0006309|T047|HT|A23|ICD10|Brucellosis|Brucellosis +C0006309|T047|HT|A23|ICD10CM|Brucellosis|Brucellosis +C0006309|T047|AB|A23|ICD10CM|Brucellosis|Brucellosis +C0006309|T047|ET|A23|ICD10CM|Malta fever|Malta fever +C0006309|T047|ET|A23|ICD10CM|Mediterranean fever|Mediterranean fever +C0006309|T047|ET|A23|ICD10CM|undulant fever|undulant fever +C0302362|T047|PT|A23.0|ICD10CM|Brucellosis due to Brucella melitensis|Brucellosis due to Brucella melitensis +C0302362|T047|AB|A23.0|ICD10CM|Brucellosis due to Brucella melitensis|Brucellosis due to Brucella melitensis +C0302362|T047|PT|A23.0|ICD10|Brucellosis due to Brucella melitensis|Brucellosis due to Brucella melitensis +C0302363|T047|PT|A23.1|ICD10|Brucellosis due to Brucella abortus|Brucellosis due to Brucella abortus +C0302363|T047|PT|A23.1|ICD10CM|Brucellosis due to Brucella abortus|Brucellosis due to Brucella abortus +C0302363|T047|AB|A23.1|ICD10CM|Brucellosis due to Brucella abortus|Brucellosis due to Brucella abortus +C0275594|T047|PT|A23.2|ICD10CM|Brucellosis due to Brucella suis|Brucellosis due to Brucella suis +C0275594|T047|AB|A23.2|ICD10CM|Brucellosis due to Brucella suis|Brucellosis due to Brucella suis +C0275594|T047|PT|A23.2|ICD10|Brucellosis due to Brucella suis|Brucellosis due to Brucella suis +C0494040|T047|PT|A23.3|ICD10|Brucellosis due to Brucella canis|Brucellosis due to Brucella canis +C0494040|T047|PT|A23.3|ICD10CM|Brucellosis due to Brucella canis|Brucellosis due to Brucella canis +C0494040|T047|AB|A23.3|ICD10CM|Brucellosis due to Brucella canis|Brucellosis due to Brucella canis +C0029527|T047|PT|A23.8|ICD10CM|Other brucellosis|Other brucellosis +C0029527|T047|AB|A23.8|ICD10CM|Other brucellosis|Other brucellosis +C0029527|T047|PT|A23.8|ICD10|Other brucellosis|Other brucellosis +C0006309|T047|PT|A23.9|ICD10|Brucellosis, unspecified|Brucellosis, unspecified +C0006309|T047|PT|A23.9|ICD10CM|Brucellosis, unspecified|Brucellosis, unspecified +C0006309|T047|AB|A23.9|ICD10CM|Brucellosis, unspecified|Brucellosis, unspecified +C0494041|T047|HT|A24|ICD10|Glanders and melioidosis|Glanders and melioidosis +C0494041|T047|AB|A24|ICD10CM|Glanders and melioidosis|Glanders and melioidosis +C0494041|T047|HT|A24|ICD10CM|Glanders and melioidosis|Glanders and melioidosis +C0017589|T047|PT|A24.0|ICD10|Glanders|Glanders +C0017589|T047|PT|A24.0|ICD10CM|Glanders|Glanders +C0017589|T047|AB|A24.0|ICD10CM|Glanders|Glanders +C0017589|T047|ET|A24.0|ICD10CM|Infection due to Pseudomonas mallei|Infection due to Pseudomonas mallei +C0017589|T047|ET|A24.0|ICD10CM|Malleus|Malleus +C0348970|T047|PT|A24.1|ICD10|Acute and fulminating melioidosis|Acute and fulminating melioidosis +C0348970|T047|PT|A24.1|ICD10CM|Acute and fulminating melioidosis|Acute and fulminating melioidosis +C0348970|T047|AB|A24.1|ICD10CM|Acute and fulminating melioidosis|Acute and fulminating melioidosis +C1403778|T047|ET|A24.1|ICD10CM|Melioidosis pneumonia|Melioidosis pneumonia +C1403781|T047|ET|A24.1|ICD10CM|Melioidosis sepsis|Melioidosis sepsis +C0348971|T047|PT|A24.2|ICD10CM|Subacute and chronic melioidosis|Subacute and chronic melioidosis +C0348971|T047|AB|A24.2|ICD10CM|Subacute and chronic melioidosis|Subacute and chronic melioidosis +C0348971|T047|PT|A24.2|ICD10|Subacute and chronic melioidosis|Subacute and chronic melioidosis +C0348114|T047|PT|A24.3|ICD10|Other melioidosis|Other melioidosis +C0348114|T047|PT|A24.3|ICD10CM|Other melioidosis|Other melioidosis +C0348114|T047|AB|A24.3|ICD10CM|Other melioidosis|Other melioidosis +C0025229|T047|PT|A24.4|ICD10|Melioidosis, unspecified|Melioidosis, unspecified +C0025229|T047|ET|A24.9|ICD10CM|Infection due to Pseudomonas pseudomallei NOS|Infection due to Pseudomonas pseudomallei NOS +C0025229|T047|PT|A24.9|ICD10CM|Melioidosis, unspecified|Melioidosis, unspecified +C0025229|T047|AB|A24.9|ICD10CM|Melioidosis, unspecified|Melioidosis, unspecified +C0025229|T047|ET|A24.9|ICD10CM|Whitmore's disease|Whitmore's disease +C0034686|T047|HT|A25|ICD10|Rat-bite fevers|Rat-bite fevers +C0034686|T047|AB|A25|ICD10CM|Rat-bite fevers|Rat-bite fevers +C0034686|T047|HT|A25|ICD10CM|Rat-bite fevers|Rat-bite fevers +C0152062|T047|ET|A25.0|ICD10CM|Sodoku|Sodoku +C0494042|T047|PT|A25.0|ICD10|Spirillosis|Spirillosis +C0494042|T047|PT|A25.0|ICD10CM|Spirillosis|Spirillosis +C0494042|T047|AB|A25.0|ICD10CM|Spirillosis|Spirillosis +C0152063|T047|ET|A25.1|ICD10CM|Epidemic arthritic erythema|Epidemic arthritic erythema +C0152063|T047|ET|A25.1|ICD10CM|Haverhill fever|Haverhill fever +C0152063|T047|ET|A25.1|ICD10CM|Streptobacillary rat-bite fever|Streptobacillary rat-bite fever +C0494043|T047|PT|A25.1|ICD10CM|Streptobacillosis|Streptobacillosis +C0494043|T047|AB|A25.1|ICD10CM|Streptobacillosis|Streptobacillosis +C0494043|T047|PT|A25.1|ICD10|Streptobacillosis|Streptobacillosis +C0034686|T047|PT|A25.9|ICD10CM|Rat-bite fever, unspecified|Rat-bite fever, unspecified +C0034686|T047|AB|A25.9|ICD10CM|Rat-bite fever, unspecified|Rat-bite fever, unspecified +C0034686|T047|PT|A25.9|ICD10|Rat-bite fever, unspecified|Rat-bite fever, unspecified +C1276801|T047|HT|A26|ICD10|Erysipeloid|Erysipeloid +C1276801|T047|HT|A26|ICD10CM|Erysipeloid|Erysipeloid +C1276801|T047|AB|A26|ICD10CM|Erysipeloid|Erysipeloid +C0343443|T047|PT|A26.0|ICD10|Cutaneous erysipeloid|Cutaneous erysipeloid +C0343443|T047|PT|A26.0|ICD10CM|Cutaneous erysipeloid|Cutaneous erysipeloid +C0343443|T047|AB|A26.0|ICD10CM|Cutaneous erysipeloid|Cutaneous erysipeloid +C0014740|T047|ET|A26.0|ICD10CM|Erythema migrans|Erythema migrans +C0343453|T047|AB|A26.7|ICD10CM|Erysipelothrix sepsis|Erysipelothrix sepsis +C0343453|T047|PT|A26.7|ICD10CM|Erysipelothrix sepsis|Erysipelothrix sepsis +C0343453|T047|PT|A26.7|ICD10|Erysipelothrix septicaemia|Erysipelothrix septicaemia +C0343453|T047|PT|A26.7|ICD10AE|Erysipelothrix septicemia|Erysipelothrix septicemia +C0348116|T047|PT|A26.8|ICD10|Other forms of erysipeloid|Other forms of erysipeloid +C0348116|T047|PT|A26.8|ICD10CM|Other forms of erysipeloid|Other forms of erysipeloid +C0348116|T047|AB|A26.8|ICD10CM|Other forms of erysipeloid|Other forms of erysipeloid +C1276801|T047|PT|A26.9|ICD10|Erysipeloid, unspecified|Erysipeloid, unspecified +C1276801|T047|PT|A26.9|ICD10CM|Erysipeloid, unspecified|Erysipeloid, unspecified +C1276801|T047|AB|A26.9|ICD10CM|Erysipeloid, unspecified|Erysipeloid, unspecified +C0023364|T047|HT|A27|ICD10CM|Leptospirosis|Leptospirosis +C0023364|T047|AB|A27|ICD10CM|Leptospirosis|Leptospirosis +C0023364|T047|HT|A27|ICD10|Leptospirosis|Leptospirosis +C0043102|T047|ET|A27.0|ICD10CM|Leptospiral or spirochetal jaundice (hemorrhagic)|Leptospiral or spirochetal jaundice (hemorrhagic) +C0043102|T047|PT|A27.0|ICD10|Leptospirosis icterohaemorrhagica|Leptospirosis icterohaemorrhagica +C0043102|T047|PT|A27.0|ICD10CM|Leptospirosis icterohemorrhagica|Leptospirosis icterohemorrhagica +C0043102|T047|AB|A27.0|ICD10CM|Leptospirosis icterohemorrhagica|Leptospirosis icterohemorrhagica +C0043102|T047|ET|A27.0|ICD10CM|Weil's disease|Weil's disease +C0348118|T047|HT|A27.8|ICD10CM|Other forms of leptospirosis|Other forms of leptospirosis +C0348118|T047|AB|A27.8|ICD10CM|Other forms of leptospirosis|Other forms of leptospirosis +C0348118|T047|PT|A27.8|ICD10|Other forms of leptospirosis|Other forms of leptospirosis +C2887055|T047|AB|A27.81|ICD10CM|Aseptic meningitis in leptospirosis|Aseptic meningitis in leptospirosis +C2887055|T047|PT|A27.81|ICD10CM|Aseptic meningitis in leptospirosis|Aseptic meningitis in leptospirosis +C0348118|T047|PT|A27.89|ICD10CM|Other forms of leptospirosis|Other forms of leptospirosis +C0348118|T047|AB|A27.89|ICD10CM|Other forms of leptospirosis|Other forms of leptospirosis +C0023364|T047|PT|A27.9|ICD10|Leptospirosis, unspecified|Leptospirosis, unspecified +C0023364|T047|PT|A27.9|ICD10CM|Leptospirosis, unspecified|Leptospirosis, unspecified +C0023364|T047|AB|A27.9|ICD10CM|Leptospirosis, unspecified|Leptospirosis, unspecified +C0494044|T047|HT|A28|ICD10|Other zoonotic bacterial diseases, not elsewhere classified|Other zoonotic bacterial diseases, not elsewhere classified +C0494044|T047|AB|A28|ICD10CM|Other zoonotic bacterial diseases, not elsewhere classified|Other zoonotic bacterial diseases, not elsewhere classified +C0494044|T047|HT|A28|ICD10CM|Other zoonotic bacterial diseases, not elsewhere classified|Other zoonotic bacterial diseases, not elsewhere classified +C0030636|T047|PT|A28.0|ICD10CM|Pasteurellosis|Pasteurellosis +C0030636|T047|AB|A28.0|ICD10CM|Pasteurellosis|Pasteurellosis +C0030636|T047|PT|A28.0|ICD10|Pasteurellosis|Pasteurellosis +C0007361|T047|PT|A28.1|ICD10|Cat-scratch disease|Cat-scratch disease +C0007361|T047|PT|A28.1|ICD10CM|Cat-scratch disease|Cat-scratch disease +C0007361|T047|AB|A28.1|ICD10CM|Cat-scratch disease|Cat-scratch disease +C0007361|T047|ET|A28.1|ICD10CM|Cat-scratch fever|Cat-scratch fever +C0348959|T047|PT|A28.2|ICD10|Extraintestinal yersiniosis|Extraintestinal yersiniosis +C0348959|T047|PT|A28.2|ICD10CM|Extraintestinal yersiniosis|Extraintestinal yersiniosis +C0348959|T047|AB|A28.2|ICD10CM|Extraintestinal yersiniosis|Extraintestinal yersiniosis +C0868897|T047|AB|A28.8|ICD10CM|Oth zoonotic bacterial diseases, not elsewhere classified|Oth zoonotic bacterial diseases, not elsewhere classified +C0868897|T047|PT|A28.8|ICD10CM|Other specified zoonotic bacterial diseases, not elsewhere classified|Other specified zoonotic bacterial diseases, not elsewhere classified +C0868897|T047|PT|A28.8|ICD10|Other specified zoonotic bacterial diseases, not elsewhere classified|Other specified zoonotic bacterial diseases, not elsewhere classified +C0311376|T047|PT|A28.9|ICD10|Zoonotic bacterial disease, unspecified|Zoonotic bacterial disease, unspecified +C0311376|T047|PT|A28.9|ICD10CM|Zoonotic bacterial disease, unspecified|Zoonotic bacterial disease, unspecified +C0311376|T047|AB|A28.9|ICD10CM|Zoonotic bacterial disease, unspecified|Zoonotic bacterial disease, unspecified +C0023343|T047|ET|A30|ICD10CM|infection due to Mycobacterium leprae|infection due to Mycobacterium leprae +C0023343|T047|AB|A30|ICD10CM|Leprosy [Hansen's disease]|Leprosy [Hansen's disease] +C0023343|T047|HT|A30|ICD10CM|Leprosy [Hansen's disease]|Leprosy [Hansen's disease] +C0023343|T047|HT|A30|ICD10|Leprosy [Hansen's disease]|Leprosy [Hansen's disease] +C2939130|T047|HT|A30-A49|ICD10CM|Other bacterial diseases (A30-A49)|Other bacterial diseases (A30-A49) +C2939130|T047|HT|A30-A49.9|ICD10|Other bacterial diseases|Other bacterial diseases +C0021192|T047|ET|A30.0|ICD10CM|I leprosy|I leprosy +C0021192|T047|PT|A30.0|ICD10CM|Indeterminate leprosy|Indeterminate leprosy +C0021192|T047|AB|A30.0|ICD10CM|Indeterminate leprosy|Indeterminate leprosy +C0021192|T047|PT|A30.0|ICD10|Indeterminate leprosy|Indeterminate leprosy +C0023351|T047|ET|A30.1|ICD10CM|TT leprosy|TT leprosy +C0023351|T047|PT|A30.1|ICD10CM|Tuberculoid leprosy|Tuberculoid leprosy +C0023351|T047|AB|A30.1|ICD10CM|Tuberculoid leprosy|Tuberculoid leprosy +C0023351|T047|PT|A30.1|ICD10|Tuberculoid leprosy|Tuberculoid leprosy +C0343457|T047|PT|A30.2|ICD10|Borderline tuberculoid leprosy|Borderline tuberculoid leprosy +C0343457|T047|PT|A30.2|ICD10CM|Borderline tuberculoid leprosy|Borderline tuberculoid leprosy +C0343457|T047|AB|A30.2|ICD10CM|Borderline tuberculoid leprosy|Borderline tuberculoid leprosy +C0343457|T047|ET|A30.2|ICD10CM|BT leprosy|BT leprosy +C1389289|T047|ET|A30.3|ICD10CM|BB leprosy|BB leprosy +C0023346|T047|PT|A30.3|ICD10|Borderline leprosy|Borderline leprosy +C0023346|T047|PT|A30.3|ICD10CM|Borderline leprosy|Borderline leprosy +C0023346|T047|AB|A30.3|ICD10CM|Borderline leprosy|Borderline leprosy +C0343458|T047|ET|A30.4|ICD10CM|BL leprosy|BL leprosy +C0343458|T047|PT|A30.4|ICD10CM|Borderline lepromatous leprosy|Borderline lepromatous leprosy +C0343458|T047|AB|A30.4|ICD10CM|Borderline lepromatous leprosy|Borderline lepromatous leprosy +C0343458|T047|PT|A30.4|ICD10|Borderline lepromatous leprosy|Borderline lepromatous leprosy +C0023348|T047|PT|A30.5|ICD10|Lepromatous leprosy|Lepromatous leprosy +C0023348|T047|PT|A30.5|ICD10CM|Lepromatous leprosy|Lepromatous leprosy +C0023348|T047|AB|A30.5|ICD10CM|Lepromatous leprosy|Lepromatous leprosy +C0023348|T047|ET|A30.5|ICD10CM|LL leprosy|LL leprosy +C0348121|T047|PT|A30.8|ICD10|Other forms of leprosy|Other forms of leprosy +C0348121|T047|PT|A30.8|ICD10CM|Other forms of leprosy|Other forms of leprosy +C0348121|T047|AB|A30.8|ICD10CM|Other forms of leprosy|Other forms of leprosy +C0023343|T047|PT|A30.9|ICD10|Leprosy, unspecified|Leprosy, unspecified +C0023343|T047|PT|A30.9|ICD10CM|Leprosy, unspecified|Leprosy, unspecified +C0023343|T047|AB|A30.9|ICD10CM|Leprosy, unspecified|Leprosy, unspecified +C0275716|T047|HT|A31|ICD10|Infection due to other mycobacteria|Infection due to other mycobacteria +C0275716|T047|AB|A31|ICD10CM|Infection due to other mycobacteria|Infection due to other mycobacteria +C0275716|T047|HT|A31|ICD10CM|Infection due to other mycobacteria|Infection due to other mycobacteria +C3249882|T047|ET|A31.0|ICD10CM|Infection due to Mycobacterium avium|Infection due to Mycobacterium avium +C2887056|T047|ET|A31.0|ICD10CM|Infection due to Mycobacterium intracellulare [Battey bacillus]|Infection due to Mycobacterium intracellulare [Battey bacillus] +C0275706|T047|ET|A31.0|ICD10CM|Infection due to Mycobacterium kansasii|Infection due to Mycobacterium kansasii +C0392054|T047|PT|A31.0|ICD10CM|Pulmonary mycobacterial infection|Pulmonary mycobacterial infection +C0392054|T047|AB|A31.0|ICD10CM|Pulmonary mycobacterial infection|Pulmonary mycobacterial infection +C0392054|T047|PT|A31.0|ICD10|Pulmonary mycobacterial infection|Pulmonary mycobacterial infection +C0085568|T047|ET|A31.1|ICD10CM|Buruli ulcer|Buruli ulcer +C0275707|T047|PT|A31.1|ICD10CM|Cutaneous mycobacterial infection|Cutaneous mycobacterial infection +C0275707|T047|AB|A31.1|ICD10CM|Cutaneous mycobacterial infection|Cutaneous mycobacterial infection +C0275707|T047|PT|A31.1|ICD10|Cutaneous mycobacterial infection|Cutaneous mycobacterial infection +C0275708|T047|ET|A31.1|ICD10CM|Infection due to Mycobacterium marinum|Infection due to Mycobacterium marinum +C0085568|T047|ET|A31.1|ICD10CM|Infection due to Mycobacterium ulcerans|Infection due to Mycobacterium ulcerans +C2887058|T047|AB|A31.2|ICD10CM|Dissem mycobacterium avium-intracellulare complex (DMAC)|Dissem mycobacterium avium-intracellulare complex (DMAC) +C2887058|T047|PT|A31.2|ICD10CM|Disseminated mycobacterium avium-intracellulare complex (DMAC)|Disseminated mycobacterium avium-intracellulare complex (DMAC) +C2887057|T047|ET|A31.2|ICD10CM|MAC sepsis|MAC sepsis +C0348122|T047|PT|A31.8|ICD10CM|Other mycobacterial infections|Other mycobacterial infections +C0348122|T047|AB|A31.8|ICD10CM|Other mycobacterial infections|Other mycobacterial infections +C0348122|T047|PT|A31.8|ICD10|Other mycobacterial infections|Other mycobacterial infections +C0026919|T047|ET|A31.9|ICD10CM|Atypical mycobacterial infection NOS|Atypical mycobacterial infection NOS +C0026918|T047|PT|A31.9|ICD10CM|Mycobacterial infection, unspecified|Mycobacterial infection, unspecified +C0026918|T047|AB|A31.9|ICD10CM|Mycobacterial infection, unspecified|Mycobacterial infection, unspecified +C0026918|T047|PT|A31.9|ICD10|Mycobacterial infection, unspecified|Mycobacterial infection, unspecified +C0026918|T047|ET|A31.9|ICD10CM|Mycobacteriosis NOS|Mycobacteriosis NOS +C4290044|T047|ET|A32|ICD10CM|listerial foodborne infection|listerial foodborne infection +C0023860|T047|HT|A32|ICD10CM|Listeriosis|Listeriosis +C0023860|T047|AB|A32|ICD10CM|Listeriosis|Listeriosis +C0023860|T047|HT|A32|ICD10|Listeriosis|Listeriosis +C0406143|T047|PT|A32.0|ICD10CM|Cutaneous listeriosis|Cutaneous listeriosis +C0406143|T047|AB|A32.0|ICD10CM|Cutaneous listeriosis|Cutaneous listeriosis +C0406143|T047|PT|A32.0|ICD10|Cutaneous listeriosis|Cutaneous listeriosis +C0494045|T047|PT|A32.1|ICD10|Listerial meningitis and meningoencephalitis|Listerial meningitis and meningoencephalitis +C0494045|T047|HT|A32.1|ICD10CM|Listerial meningitis and meningoencephalitis|Listerial meningitis and meningoencephalitis +C0494045|T047|AB|A32.1|ICD10CM|Listerial meningitis and meningoencephalitis|Listerial meningitis and meningoencephalitis +C2887060|T047|AB|A32.11|ICD10CM|Listerial meningitis|Listerial meningitis +C2887060|T047|PT|A32.11|ICD10CM|Listerial meningitis|Listerial meningitis +C2887061|T047|PT|A32.12|ICD10CM|Listerial meningoencephalitis|Listerial meningoencephalitis +C2887061|T047|AB|A32.12|ICD10CM|Listerial meningoencephalitis|Listerial meningoencephalitis +C2887062|T047|PT|A32.7|ICD10CM|Listerial sepsis|Listerial sepsis +C2887062|T047|AB|A32.7|ICD10CM|Listerial sepsis|Listerial sepsis +C0275685|T047|PT|A32.7|ICD10|Listerial septicaemia|Listerial septicaemia +C0275685|T047|PT|A32.7|ICD10AE|Listerial septicemia|Listerial septicemia +C0348124|T047|PT|A32.8|ICD10|Other forms of listeriosis|Other forms of listeriosis +C0348124|T047|HT|A32.8|ICD10CM|Other forms of listeriosis|Other forms of listeriosis +C0348124|T047|AB|A32.8|ICD10CM|Other forms of listeriosis|Other forms of listeriosis +C0348972|T047|PT|A32.81|ICD10CM|Oculoglandular listeriosis|Oculoglandular listeriosis +C0348972|T047|AB|A32.81|ICD10CM|Oculoglandular listeriosis|Oculoglandular listeriosis +C0348868|T047|AB|A32.82|ICD10CM|Listerial endocarditis|Listerial endocarditis +C0348868|T047|PT|A32.82|ICD10CM|Listerial endocarditis|Listerial endocarditis +C0451682|T047|ET|A32.89|ICD10CM|Listerial cerebral arteritis|Listerial cerebral arteritis +C0348124|T047|PT|A32.89|ICD10CM|Other forms of listeriosis|Other forms of listeriosis +C0348124|T047|AB|A32.89|ICD10CM|Other forms of listeriosis|Other forms of listeriosis +C0023860|T047|PT|A32.9|ICD10|Listeriosis, unspecified|Listeriosis, unspecified +C0023860|T047|PT|A32.9|ICD10CM|Listeriosis, unspecified|Listeriosis, unspecified +C0023860|T047|AB|A32.9|ICD10CM|Listeriosis, unspecified|Listeriosis, unspecified +C0343312|T047|PT|A33|ICD10|Tetanus neonatorum|Tetanus neonatorum +C0343312|T047|PT|A33|ICD10CM|Tetanus neonatorum|Tetanus neonatorum +C0343312|T047|AB|A33|ICD10CM|Tetanus neonatorum|Tetanus neonatorum +C0348973|T047|PT|A34|ICD10|Obstetrical tetanus|Obstetrical tetanus +C0348973|T047|PT|A34|ICD10CM|Obstetrical tetanus|Obstetrical tetanus +C0348973|T047|AB|A34|ICD10CM|Obstetrical tetanus|Obstetrical tetanus +C0348126|T047|PT|A35|ICD10|Other tetanus|Other tetanus +C0348126|T047|PT|A35|ICD10CM|Other tetanus|Other tetanus +C0348126|T047|AB|A35|ICD10CM|Other tetanus|Other tetanus +C0039614|T047|ET|A35|ICD10CM|Tetanus NOS|Tetanus NOS +C0012546|T047|HT|A36|ICD10|Diphtheria|Diphtheria +C0012546|T047|HT|A36|ICD10CM|Diphtheria|Diphtheria +C0012546|T047|AB|A36|ICD10CM|Diphtheria|Diphtheria +C0012556|T047|ET|A36.0|ICD10CM|Diphtheritic membranous angina|Diphtheritic membranous angina +C0012556|T047|PT|A36.0|ICD10CM|Pharyngeal diphtheria|Pharyngeal diphtheria +C0012556|T047|AB|A36.0|ICD10CM|Pharyngeal diphtheria|Pharyngeal diphtheria +C0012556|T047|PT|A36.0|ICD10|Pharyngeal diphtheria|Pharyngeal diphtheria +C1395448|T047|ET|A36.0|ICD10CM|Tonsillar diphtheria|Tonsillar diphtheria +C0012558|T047|PT|A36.1|ICD10|Nasopharyngeal diphtheria|Nasopharyngeal diphtheria +C0012558|T047|PT|A36.1|ICD10CM|Nasopharyngeal diphtheria|Nasopharyngeal diphtheria +C0012558|T047|AB|A36.1|ICD10CM|Nasopharyngeal diphtheria|Nasopharyngeal diphtheria +C0012557|T047|ET|A36.2|ICD10CM|Diphtheritic laryngotracheitis|Diphtheritic laryngotracheitis +C0012557|T047|PT|A36.2|ICD10CM|Laryngeal diphtheria|Laryngeal diphtheria +C0012557|T047|AB|A36.2|ICD10CM|Laryngeal diphtheria|Laryngeal diphtheria +C0012557|T047|PT|A36.2|ICD10|Laryngeal diphtheria|Laryngeal diphtheria +C0012555|T047|PT|A36.3|ICD10|Cutaneous diphtheria|Cutaneous diphtheria +C0012555|T047|PT|A36.3|ICD10CM|Cutaneous diphtheria|Cutaneous diphtheria +C0012555|T047|AB|A36.3|ICD10CM|Cutaneous diphtheria|Cutaneous diphtheria +C0348127|T047|HT|A36.8|ICD10CM|Other diphtheria|Other diphtheria +C0348127|T047|AB|A36.8|ICD10CM|Other diphtheria|Other diphtheria +C0348127|T047|PT|A36.8|ICD10|Other diphtheria|Other diphtheria +C2887063|T047|AB|A36.81|ICD10CM|Diphtheritic cardiomyopathy|Diphtheritic cardiomyopathy +C2887063|T047|PT|A36.81|ICD10CM|Diphtheritic cardiomyopathy|Diphtheritic cardiomyopathy +C0152952|T047|ET|A36.81|ICD10CM|Diphtheritic myocarditis|Diphtheritic myocarditis +C2887064|T047|AB|A36.82|ICD10CM|Diphtheritic radiculomyelitis|Diphtheritic radiculomyelitis +C2887064|T047|PT|A36.82|ICD10CM|Diphtheritic radiculomyelitis|Diphtheritic radiculomyelitis +C2887065|T047|AB|A36.83|ICD10CM|Diphtheritic polyneuritis|Diphtheritic polyneuritis +C2887065|T047|PT|A36.83|ICD10CM|Diphtheritic polyneuritis|Diphtheritic polyneuritis +C2887066|T047|AB|A36.84|ICD10CM|Diphtheritic tubulo-interstitial nephropathy|Diphtheritic tubulo-interstitial nephropathy +C2887066|T047|PT|A36.84|ICD10CM|Diphtheritic tubulo-interstitial nephropathy|Diphtheritic tubulo-interstitial nephropathy +C0152954|T047|PT|A36.85|ICD10CM|Diphtheritic cystitis|Diphtheritic cystitis +C0152954|T047|AB|A36.85|ICD10CM|Diphtheritic cystitis|Diphtheritic cystitis +C0012554|T047|AB|A36.86|ICD10CM|Diphtheritic conjunctivitis|Diphtheritic conjunctivitis +C0012554|T047|PT|A36.86|ICD10CM|Diphtheritic conjunctivitis|Diphtheritic conjunctivitis +C0152953|T047|ET|A36.89|ICD10CM|Diphtheritic peritonitis|Diphtheritic peritonitis +C2887067|T047|AB|A36.89|ICD10CM|Other diphtheritic complications|Other diphtheritic complications +C2887067|T047|PT|A36.89|ICD10CM|Other diphtheritic complications|Other diphtheritic complications +C0012546|T047|PT|A36.9|ICD10CM|Diphtheria, unspecified|Diphtheria, unspecified +C0012546|T047|AB|A36.9|ICD10CM|Diphtheria, unspecified|Diphtheria, unspecified +C0012546|T047|PT|A36.9|ICD10|Diphtheria, unspecified|Diphtheria, unspecified +C0043168|T047|HT|A37|ICD10|Whooping cough|Whooping cough +C0043168|T047|HT|A37|ICD10CM|Whooping cough|Whooping cough +C0043168|T047|AB|A37|ICD10CM|Whooping cough|Whooping cough +C0043167|T047|HT|A37.0|ICD10CM|Whooping cough due to Bordetella pertussis|Whooping cough due to Bordetella pertussis +C0043167|T047|AB|A37.0|ICD10CM|Whooping cough due to Bordetella pertussis|Whooping cough due to Bordetella pertussis +C0043167|T047|PT|A37.0|ICD10|Whooping cough due to Bordetella pertussis|Whooping cough due to Bordetella pertussis +C2887068|T047|AB|A37.00|ICD10CM|Whooping cough due to Bordetella pertussis without pneumonia|Whooping cough due to Bordetella pertussis without pneumonia +C2887068|T047|PT|A37.00|ICD10CM|Whooping cough due to Bordetella pertussis without pneumonia|Whooping cough due to Bordetella pertussis without pneumonia +C2887069|T047|AB|A37.01|ICD10CM|Whooping cough due to Bordetella pertussis with pneumonia|Whooping cough due to Bordetella pertussis with pneumonia +C2887069|T047|PT|A37.01|ICD10CM|Whooping cough due to Bordetella pertussis with pneumonia|Whooping cough due to Bordetella pertussis with pneumonia +C0275742|T047|PT|A37.1|ICD10|Whooping cough due to Bordetella parapertussis|Whooping cough due to Bordetella parapertussis +C0275742|T047|HT|A37.1|ICD10CM|Whooping cough due to Bordetella parapertussis|Whooping cough due to Bordetella parapertussis +C0275742|T047|AB|A37.1|ICD10CM|Whooping cough due to Bordetella parapertussis|Whooping cough due to Bordetella parapertussis +C2887070|T047|AB|A37.10|ICD10CM|Whooping cough due to Bordetella parapertussis w/o pneumonia|Whooping cough due to Bordetella parapertussis w/o pneumonia +C2887070|T047|PT|A37.10|ICD10CM|Whooping cough due to Bordetella parapertussis without pneumonia|Whooping cough due to Bordetella parapertussis without pneumonia +C2887071|T047|AB|A37.11|ICD10CM|Whooping cough due to Bordetella parapertussis w pneumonia|Whooping cough due to Bordetella parapertussis w pneumonia +C2887071|T047|PT|A37.11|ICD10CM|Whooping cough due to Bordetella parapertussis with pneumonia|Whooping cough due to Bordetella parapertussis with pneumonia +C0348128|T047|HT|A37.8|ICD10CM|Whooping cough due to other Bordetella species|Whooping cough due to other Bordetella species +C0348128|T047|AB|A37.8|ICD10CM|Whooping cough due to other Bordetella species|Whooping cough due to other Bordetella species +C0348128|T047|PT|A37.8|ICD10|Whooping cough due to other Bordetella species|Whooping cough due to other Bordetella species +C2887072|T047|AB|A37.80|ICD10CM|Whooping cough due to other Bordetella species w/o pneumonia|Whooping cough due to other Bordetella species w/o pneumonia +C2887072|T047|PT|A37.80|ICD10CM|Whooping cough due to other Bordetella species without pneumonia|Whooping cough due to other Bordetella species without pneumonia +C2887073|T047|AB|A37.81|ICD10CM|Whooping cough due to oth Bordetella species with pneumonia|Whooping cough due to oth Bordetella species with pneumonia +C2887073|T047|PT|A37.81|ICD10CM|Whooping cough due to other Bordetella species with pneumonia|Whooping cough due to other Bordetella species with pneumonia +C0043168|T047|PT|A37.9|ICD10|Whooping cough, unspecified|Whooping cough, unspecified +C2887074|T047|AB|A37.9|ICD10CM|Whooping cough, unspecified species|Whooping cough, unspecified species +C2887074|T047|HT|A37.9|ICD10CM|Whooping cough, unspecified species|Whooping cough, unspecified species +C2887075|T047|AB|A37.90|ICD10CM|Whooping cough, unspecified species without pneumonia|Whooping cough, unspecified species without pneumonia +C2887075|T047|PT|A37.90|ICD10CM|Whooping cough, unspecified species without pneumonia|Whooping cough, unspecified species without pneumonia +C2887076|T047|AB|A37.91|ICD10CM|Whooping cough, unspecified species with pneumonia|Whooping cough, unspecified species with pneumonia +C2887076|T047|PT|A37.91|ICD10CM|Whooping cough, unspecified species with pneumonia|Whooping cough, unspecified species with pneumonia +C0036285|T047|ET|A38|ICD10CM|scarlatina|scarlatina +C0036285|T047|HT|A38|ICD10CM|Scarlet fever|Scarlet fever +C0036285|T047|AB|A38|ICD10CM|Scarlet fever|Scarlet fever +C0036285|T047|PT|A38|ICD10|Scarlet fever|Scarlet fever +C2887077|T047|PT|A38.0|ICD10CM|Scarlet fever with otitis media|Scarlet fever with otitis media +C2887077|T047|AB|A38.0|ICD10CM|Scarlet fever with otitis media|Scarlet fever with otitis media +C2887078|T047|PT|A38.1|ICD10CM|Scarlet fever with myocarditis|Scarlet fever with myocarditis +C2887078|T047|AB|A38.1|ICD10CM|Scarlet fever with myocarditis|Scarlet fever with myocarditis +C2887079|T047|AB|A38.8|ICD10CM|Scarlet fever with other complications|Scarlet fever with other complications +C2887079|T047|PT|A38.8|ICD10CM|Scarlet fever with other complications|Scarlet fever with other complications +C0036285|T047|ET|A38.9|ICD10CM|Scarlet fever, NOS|Scarlet fever, NOS +C2887080|T047|AB|A38.9|ICD10CM|Scarlet fever, uncomplicated|Scarlet fever, uncomplicated +C2887080|T047|PT|A38.9|ICD10CM|Scarlet fever, uncomplicated|Scarlet fever, uncomplicated +C0025303|T047|HT|A39|ICD10|Meningococcal infection|Meningococcal infection +C0025303|T047|HT|A39|ICD10CM|Meningococcal infection|Meningococcal infection +C0025303|T047|AB|A39|ICD10CM|Meningococcal infection|Meningococcal infection +C0025294|T047|PT|A39.0|ICD10CM|Meningococcal meningitis|Meningococcal meningitis +C0025294|T047|AB|A39.0|ICD10CM|Meningococcal meningitis|Meningococcal meningitis +C0025294|T047|PT|A39.0|ICD10|Meningococcal meningitis|Meningococcal meningitis +C1403891|T047|ET|A39.1|ICD10CM|Meningococcal hemorrhagic adrenalitis|Meningococcal hemorrhagic adrenalitis +C1403891|T047|ET|A39.1|ICD10CM|Meningococcic adrenal syndrome|Meningococcic adrenal syndrome +C1403891|T047|PT|A39.1|ICD10CM|Waterhouse-Friderichsen syndrome|Waterhouse-Friderichsen syndrome +C1403891|T047|AB|A39.1|ICD10CM|Waterhouse-Friderichsen syndrome|Waterhouse-Friderichsen syndrome +C1403891|T047|PT|A39.1|ICD10|Waterhouse-Friderichsen syndrome|Waterhouse-Friderichsen syndrome +C0473877|T047|PT|A39.2|ICD10|Acute meningococcaemia|Acute meningococcaemia +C0473877|T047|PT|A39.2|ICD10AE|Acute meningococcemia|Acute meningococcemia +C0473877|T047|PT|A39.2|ICD10CM|Acute meningococcemia|Acute meningococcemia +C0473877|T047|AB|A39.2|ICD10CM|Acute meningococcemia|Acute meningococcemia +C0343489|T047|PT|A39.3|ICD10|Chronic meningococcaemia|Chronic meningococcaemia +C0343489|T047|PT|A39.3|ICD10AE|Chronic meningococcemia|Chronic meningococcemia +C0343489|T047|PT|A39.3|ICD10CM|Chronic meningococcemia|Chronic meningococcemia +C0343489|T047|AB|A39.3|ICD10CM|Chronic meningococcemia|Chronic meningococcemia +C0025306|T047|PT|A39.4|ICD10|Meningococcaemia, unspecified|Meningococcaemia, unspecified +C0025306|T047|PT|A39.4|ICD10AE|Meningococcemia, unspecified|Meningococcemia, unspecified +C0025306|T047|PT|A39.4|ICD10CM|Meningococcemia, unspecified|Meningococcemia, unspecified +C0025306|T047|AB|A39.4|ICD10CM|Meningococcemia, unspecified|Meningococcemia, unspecified +C0152958|T047|HT|A39.5|ICD10CM|Meningococcal heart disease|Meningococcal heart disease +C0152958|T047|AB|A39.5|ICD10CM|Meningococcal heart disease|Meningococcal heart disease +C0152958|T047|PT|A39.5|ICD10|Meningococcal heart disease|Meningococcal heart disease +C0152958|T047|PT|A39.50|ICD10CM|Meningococcal carditis, unspecified|Meningococcal carditis, unspecified +C0152958|T047|AB|A39.50|ICD10CM|Meningococcal carditis, unspecified|Meningococcal carditis, unspecified +C0152960|T047|PT|A39.51|ICD10CM|Meningococcal endocarditis|Meningococcal endocarditis +C0152960|T047|AB|A39.51|ICD10CM|Meningococcal endocarditis|Meningococcal endocarditis +C0152961|T047|PT|A39.52|ICD10CM|Meningococcal myocarditis|Meningococcal myocarditis +C0152961|T047|AB|A39.52|ICD10CM|Meningococcal myocarditis|Meningococcal myocarditis +C0152959|T047|PT|A39.53|ICD10CM|Meningococcal pericarditis|Meningococcal pericarditis +C0152959|T047|AB|A39.53|ICD10CM|Meningococcal pericarditis|Meningococcal pericarditis +C0348130|T047|PT|A39.8|ICD10|Other meningococcal infections|Other meningococcal infections +C0348130|T047|HT|A39.8|ICD10CM|Other meningococcal infections|Other meningococcal infections +C0348130|T047|AB|A39.8|ICD10CM|Other meningococcal infections|Other meningococcal infections +C0152957|T047|PT|A39.81|ICD10CM|Meningococcal encephalitis|Meningococcal encephalitis +C0152957|T047|AB|A39.81|ICD10CM|Meningococcal encephalitis|Meningococcal encephalitis +C2887081|T047|PT|A39.82|ICD10CM|Meningococcal retrobulbar neuritis|Meningococcal retrobulbar neuritis +C2887081|T047|AB|A39.82|ICD10CM|Meningococcal retrobulbar neuritis|Meningococcal retrobulbar neuritis +C1457881|T047|PT|A39.83|ICD10CM|Meningococcal arthritis|Meningococcal arthritis +C1457881|T047|AB|A39.83|ICD10CM|Meningococcal arthritis|Meningococcal arthritis +C0343491|T047|PT|A39.84|ICD10CM|Postmeningococcal arthritis|Postmeningococcal arthritis +C0343491|T047|AB|A39.84|ICD10CM|Postmeningococcal arthritis|Postmeningococcal arthritis +C0686709|T047|ET|A39.89|ICD10CM|Meningococcal conjunctivitis|Meningococcal conjunctivitis +C0348130|T047|PT|A39.89|ICD10CM|Other meningococcal infections|Other meningococcal infections +C0348130|T047|AB|A39.89|ICD10CM|Other meningococcal infections|Other meningococcal infections +C0025303|T047|ET|A39.9|ICD10CM|Meningococcal disease NOS|Meningococcal disease NOS +C0025303|T047|PT|A39.9|ICD10CM|Meningococcal infection, unspecified|Meningococcal infection, unspecified +C0025303|T047|AB|A39.9|ICD10CM|Meningococcal infection, unspecified|Meningococcal infection, unspecified +C0025303|T047|PT|A39.9|ICD10|Meningococcal infection, unspecified|Meningococcal infection, unspecified +C0152964|T047|HT|A40|ICD10CM|Streptococcal sepsis|Streptococcal sepsis +C0152964|T047|AB|A40|ICD10CM|Streptococcal sepsis|Streptococcal sepsis +C0152964|T047|HT|A40|ICD10|Streptococcal septicaemia|Streptococcal septicaemia +C0152964|T047|HT|A40|ICD10AE|Streptococcal septicemia|Streptococcal septicemia +C2887082|T047|AB|A40.0|ICD10CM|Sepsis due to streptococcus, group A|Sepsis due to streptococcus, group A +C2887082|T047|PT|A40.0|ICD10CM|Sepsis due to streptococcus, group A|Sepsis due to streptococcus, group A +C0349003|T047|PT|A40.0|ICD10|Septicaemia due to streptococcus, group A|Septicaemia due to streptococcus, group A +C0349003|T047|PT|A40.0|ICD10AE|Septicemia due to streptococcus, group A|Septicemia due to streptococcus, group A +C2887083|T047|AB|A40.1|ICD10CM|Sepsis due to streptococcus, group B|Sepsis due to streptococcus, group B +C2887083|T047|PT|A40.1|ICD10CM|Sepsis due to streptococcus, group B|Sepsis due to streptococcus, group B +C0349004|T047|PT|A40.1|ICD10|Septicaemia due to streptococcus, group B|Septicaemia due to streptococcus, group B +C0349004|T047|PT|A40.1|ICD10AE|Septicemia due to streptococcus, group B|Septicemia due to streptococcus, group B +C0349005|T047|PT|A40.2|ICD10|Septicaemia due to streptococcus, group D|Septicaemia due to streptococcus, group D +C0349005|T047|PT|A40.2|ICD10AE|Septicemia due to streptococcus, group D|Septicemia due to streptococcus, group D +C0152966|T047|ET|A40.3|ICD10CM|Pneumococcal sepsis|Pneumococcal sepsis +C2887084|T047|PT|A40.3|ICD10CM|Sepsis due to Streptococcus pneumoniae|Sepsis due to Streptococcus pneumoniae +C2887084|T047|AB|A40.3|ICD10CM|Sepsis due to Streptococcus pneumoniae|Sepsis due to Streptococcus pneumoniae +C0152966|T047|PT|A40.3|ICD10|Septicaemia due to Streptococcus pneumoniae|Septicaemia due to Streptococcus pneumoniae +C0152966|T047|PT|A40.3|ICD10AE|Septicemia due to Streptococcus pneumoniae|Septicemia due to Streptococcus pneumoniae +C2887085|T047|AB|A40.8|ICD10CM|Other streptococcal sepsis|Other streptococcal sepsis +C2887085|T047|PT|A40.8|ICD10CM|Other streptococcal sepsis|Other streptococcal sepsis +C0348131|T047|PT|A40.8|ICD10|Other streptococcal septicaemia|Other streptococcal septicaemia +C0348131|T047|PT|A40.8|ICD10AE|Other streptococcal septicemia|Other streptococcal septicemia +C0152964|T047|AB|A40.9|ICD10CM|Streptococcal sepsis, unspecified|Streptococcal sepsis, unspecified +C0152964|T047|PT|A40.9|ICD10CM|Streptococcal sepsis, unspecified|Streptococcal sepsis, unspecified +C0152964|T047|PT|A40.9|ICD10|Streptococcal septicaemia, unspecified|Streptococcal septicaemia, unspecified +C0152964|T047|PT|A40.9|ICD10AE|Streptococcal septicemia, unspecified|Streptococcal septicemia, unspecified +C2887087|T047|AB|A41|ICD10CM|Other sepsis|Other sepsis +C2887087|T047|HT|A41|ICD10CM|Other sepsis|Other sepsis +C0494048|T047|HT|A41|ICD10|Other septicaemia|Other septicaemia +C0494048|T047|HT|A41|ICD10AE|Other septicemia|Other septicemia +C2887088|T047|HT|A41.0|ICD10CM|Sepsis due to Staphylococcus aureus|Sepsis due to Staphylococcus aureus +C2887088|T047|AB|A41.0|ICD10CM|Sepsis due to Staphylococcus aureus|Sepsis due to Staphylococcus aureus +C0349006|T047|PT|A41.0|ICD10|Septicaemia due to Staphylococcus aureus|Septicaemia due to Staphylococcus aureus +C0349006|T047|PT|A41.0|ICD10AE|Septicemia due to Staphylococcus aureus|Septicemia due to Staphylococcus aureus +C3264361|T047|ET|A41.01|ICD10CM|MSSA sepsis|MSSA sepsis +C3264362|T047|AB|A41.01|ICD10CM|Sepsis due to Methicillin susceptible Staphylococcus aureus|Sepsis due to Methicillin susceptible Staphylococcus aureus +C3264362|T047|PT|A41.01|ICD10CM|Sepsis due to Methicillin susceptible Staphylococcus aureus|Sepsis due to Methicillin susceptible Staphylococcus aureus +C0349006|T047|ET|A41.01|ICD10CM|Staphylococcus aureus sepsis NOS|Staphylococcus aureus sepsis NOS +C3164390|T047|AB|A41.02|ICD10CM|Sepsis due to Methicillin resistant Staphylococcus aureus|Sepsis due to Methicillin resistant Staphylococcus aureus +C3164390|T047|PT|A41.02|ICD10CM|Sepsis due to Methicillin resistant Staphylococcus aureus|Sepsis due to Methicillin resistant Staphylococcus aureus +C1409727|T047|ET|A41.1|ICD10CM|Coagulase negative staphylococcus sepsis|Coagulase negative staphylococcus sepsis +C2887089|T047|AB|A41.1|ICD10CM|Sepsis due to other specified staphylococcus|Sepsis due to other specified staphylococcus +C2887089|T047|PT|A41.1|ICD10CM|Sepsis due to other specified staphylococcus|Sepsis due to other specified staphylococcus +C0870076|T047|PT|A41.1|ICD10|Septicaemia due to other specified staphylococcus|Septicaemia due to other specified staphylococcus +C0870076|T047|PT|A41.1|ICD10AE|Septicemia due to other specified staphylococcus|Septicemia due to other specified staphylococcus +C2887090|T047|AB|A41.2|ICD10CM|Sepsis due to unspecified staphylococcus|Sepsis due to unspecified staphylococcus +C2887090|T047|PT|A41.2|ICD10CM|Sepsis due to unspecified staphylococcus|Sepsis due to unspecified staphylococcus +C0152965|T047|PT|A41.2|ICD10|Septicaemia due to unspecified staphylococcus|Septicaemia due to unspecified staphylococcus +C0152965|T047|PT|A41.2|ICD10AE|Septicemia due to unspecified staphylococcus|Septicemia due to unspecified staphylococcus +C2887091|T047|AB|A41.3|ICD10CM|Sepsis due to Hemophilus influenzae|Sepsis due to Hemophilus influenzae +C2887091|T047|PT|A41.3|ICD10CM|Sepsis due to Hemophilus influenzae|Sepsis due to Hemophilus influenzae +C0276029|T047|PT|A41.3|ICD10|Septicaemia due to Haemophilus influenzae|Septicaemia due to Haemophilus influenzae +C0276029|T047|PT|A41.3|ICD10AE|Septicemia due to Hemophilus influenzae|Septicemia due to Hemophilus influenzae +C2887092|T047|AB|A41.4|ICD10CM|Sepsis due to anaerobes|Sepsis due to anaerobes +C2887092|T047|PT|A41.4|ICD10CM|Sepsis due to anaerobes|Sepsis due to anaerobes +C0152967|T047|PT|A41.4|ICD10|Septicaemia due to anaerobes|Septicaemia due to anaerobes +C0152967|T047|PT|A41.4|ICD10AE|Septicemia due to anaerobes|Septicemia due to anaerobes +C2887093|T047|AB|A41.5|ICD10CM|Sepsis due to other Gram-negative organisms|Sepsis due to other Gram-negative organisms +C2887093|T047|HT|A41.5|ICD10CM|Sepsis due to other Gram-negative organisms|Sepsis due to other Gram-negative organisms +C0276063|T047|PT|A41.5|ICD10|Septicaemia due to other Gram-negative organisms|Septicaemia due to other Gram-negative organisms +C0276063|T047|PT|A41.5|ICD10AE|Septicemia due to other Gram-negative organisms|Septicemia due to other Gram-negative organisms +C0036685|T047|ET|A41.50|ICD10CM|Gram-negative sepsis NOS|Gram-negative sepsis NOS +C0036685|T047|AB|A41.50|ICD10CM|Gram-negative sepsis, unspecified|Gram-negative sepsis, unspecified +C0036685|T047|PT|A41.50|ICD10CM|Gram-negative sepsis, unspecified|Gram-negative sepsis, unspecified +C2887094|T047|AB|A41.51|ICD10CM|Sepsis due to Escherichia coli [E. coli]|Sepsis due to Escherichia coli [E. coli] +C2887094|T047|PT|A41.51|ICD10CM|Sepsis due to Escherichia coli [E. coli]|Sepsis due to Escherichia coli [E. coli] +C2887095|T047|ET|A41.52|ICD10CM|Pseudomonas aeroginosa|Pseudomonas aeroginosa +C2887096|T047|PT|A41.52|ICD10CM|Sepsis due to Pseudomonas|Sepsis due to Pseudomonas +C2887096|T047|AB|A41.52|ICD10CM|Sepsis due to Pseudomonas|Sepsis due to Pseudomonas +C2887097|T047|PT|A41.53|ICD10CM|Sepsis due to Serratia|Sepsis due to Serratia +C2887097|T047|AB|A41.53|ICD10CM|Sepsis due to Serratia|Sepsis due to Serratia +C2887098|T047|AB|A41.59|ICD10CM|Other Gram-negative sepsis|Other Gram-negative sepsis +C2887098|T047|PT|A41.59|ICD10CM|Other Gram-negative sepsis|Other Gram-negative sepsis +C2887099|T047|HT|A41.8|ICD10CM|Other specified sepsis|Other specified sepsis +C2887099|T047|AB|A41.8|ICD10CM|Other specified sepsis|Other specified sepsis +C0348133|T047|PT|A41.8|ICD10|Other specified septicaemia|Other specified septicaemia +C0348133|T047|PT|A41.8|ICD10AE|Other specified septicemia|Other specified septicemia +C0588233|T047|AB|A41.81|ICD10CM|Sepsis due to Enterococcus|Sepsis due to Enterococcus +C0588233|T047|PT|A41.81|ICD10CM|Sepsis due to Enterococcus|Sepsis due to Enterococcus +C2887099|T047|AB|A41.89|ICD10CM|Other specified sepsis|Other specified sepsis +C2887099|T047|PT|A41.89|ICD10CM|Other specified sepsis|Other specified sepsis +C2887101|T047|AB|A41.9|ICD10CM|Sepsis, unspecified organism|Sepsis, unspecified organism +C2887101|T047|PT|A41.9|ICD10CM|Sepsis, unspecified organism|Sepsis, unspecified organism +C0036690|T047|PT|A41.9|ICD10|Septicaemia, unspecified|Septicaemia, unspecified +C0036690|T047|ET|A41.9|ICD10CM|Septicemia NOS|Septicemia NOS +C0036690|T047|PT|A41.9|ICD10AE|Septicemia, unspecified|Septicemia, unspecified +C0001261|T047|HT|A42|ICD10CM|Actinomycosis|Actinomycosis +C0001261|T047|AB|A42|ICD10CM|Actinomycosis|Actinomycosis +C0001261|T047|HT|A42|ICD10|Actinomycosis|Actinomycosis +C0275566|T047|PT|A42.0|ICD10|Pulmonary actinomycosis|Pulmonary actinomycosis +C0275566|T047|PT|A42.0|ICD10CM|Pulmonary actinomycosis|Pulmonary actinomycosis +C0275566|T047|AB|A42.0|ICD10CM|Pulmonary actinomycosis|Pulmonary actinomycosis +C0001263|T047|PT|A42.1|ICD10|Abdominal actinomycosis|Abdominal actinomycosis +C0001263|T047|PT|A42.1|ICD10CM|Abdominal actinomycosis|Abdominal actinomycosis +C0001263|T047|AB|A42.1|ICD10CM|Abdominal actinomycosis|Abdominal actinomycosis +C0001264|T047|PT|A42.2|ICD10CM|Cervicofacial actinomycosis|Cervicofacial actinomycosis +C0001264|T047|AB|A42.2|ICD10CM|Cervicofacial actinomycosis|Cervicofacial actinomycosis +C0001264|T047|PT|A42.2|ICD10|Cervicofacial actinomycosis|Cervicofacial actinomycosis +C0349008|T047|PT|A42.7|ICD10CM|Actinomycotic sepsis|Actinomycotic sepsis +C0349008|T047|AB|A42.7|ICD10CM|Actinomycotic sepsis|Actinomycotic sepsis +C0349008|T047|PT|A42.7|ICD10|Actinomycotic septicaemia|Actinomycotic septicaemia +C0349008|T047|PT|A42.7|ICD10AE|Actinomycotic septicemia|Actinomycotic septicemia +C0348134|T047|HT|A42.8|ICD10CM|Other forms of actinomycosis|Other forms of actinomycosis +C0348134|T047|AB|A42.8|ICD10CM|Other forms of actinomycosis|Other forms of actinomycosis +C0348134|T047|PT|A42.8|ICD10|Other forms of actinomycosis|Other forms of actinomycosis +C0338393|T047|PT|A42.81|ICD10CM|Actinomycotic meningitis|Actinomycotic meningitis +C0338393|T047|AB|A42.81|ICD10CM|Actinomycotic meningitis|Actinomycotic meningitis +C2887102|T047|AB|A42.82|ICD10CM|Actinomycotic encephalitis|Actinomycotic encephalitis +C2887102|T047|PT|A42.82|ICD10CM|Actinomycotic encephalitis|Actinomycotic encephalitis +C0348134|T047|PT|A42.89|ICD10CM|Other forms of actinomycosis|Other forms of actinomycosis +C0348134|T047|AB|A42.89|ICD10CM|Other forms of actinomycosis|Other forms of actinomycosis +C0001261|T047|PT|A42.9|ICD10CM|Actinomycosis, unspecified|Actinomycosis, unspecified +C0001261|T047|AB|A42.9|ICD10CM|Actinomycosis, unspecified|Actinomycosis, unspecified +C0001261|T047|PT|A42.9|ICD10|Actinomycosis, unspecified|Actinomycosis, unspecified +C0028242|T047|HT|A43|ICD10|Nocardiosis|Nocardiosis +C0028242|T047|HT|A43|ICD10CM|Nocardiosis|Nocardiosis +C0028242|T047|AB|A43|ICD10CM|Nocardiosis|Nocardiosis +C0275583|T047|PT|A43.0|ICD10CM|Pulmonary nocardiosis|Pulmonary nocardiosis +C0275583|T047|AB|A43.0|ICD10CM|Pulmonary nocardiosis|Pulmonary nocardiosis +C0275583|T047|PT|A43.0|ICD10|Pulmonary nocardiosis|Pulmonary nocardiosis +C0275584|T047|PT|A43.1|ICD10|Cutaneous nocardiosis|Cutaneous nocardiosis +C0275584|T047|PT|A43.1|ICD10CM|Cutaneous nocardiosis|Cutaneous nocardiosis +C0275584|T047|AB|A43.1|ICD10CM|Cutaneous nocardiosis|Cutaneous nocardiosis +C0348136|T047|PT|A43.8|ICD10CM|Other forms of nocardiosis|Other forms of nocardiosis +C0348136|T047|AB|A43.8|ICD10CM|Other forms of nocardiosis|Other forms of nocardiosis +C0348136|T047|PT|A43.8|ICD10|Other forms of nocardiosis|Other forms of nocardiosis +C0028242|T047|PT|A43.9|ICD10|Nocardiosis, unspecified|Nocardiosis, unspecified +C0028242|T047|PT|A43.9|ICD10CM|Nocardiosis, unspecified|Nocardiosis, unspecified +C0028242|T047|AB|A43.9|ICD10CM|Nocardiosis, unspecified|Nocardiosis, unspecified +C0004771|T047|HT|A44|ICD10CM|Bartonellosis|Bartonellosis +C0004771|T047|AB|A44|ICD10CM|Bartonellosis|Bartonellosis +C0004771|T047|HT|A44|ICD10|Bartonellosis|Bartonellosis +C0029307|T047|ET|A44.0|ICD10CM|Oroya fever|Oroya fever +C0348974|T047|PT|A44.0|ICD10|Systemic bartonellosis|Systemic bartonellosis +C0348974|T047|PT|A44.0|ICD10CM|Systemic bartonellosis|Systemic bartonellosis +C0348974|T047|AB|A44.0|ICD10CM|Systemic bartonellosis|Systemic bartonellosis +C0348975|T047|PT|A44.1|ICD10CM|Cutaneous and mucocutaneous bartonellosis|Cutaneous and mucocutaneous bartonellosis +C0348975|T047|AB|A44.1|ICD10CM|Cutaneous and mucocutaneous bartonellosis|Cutaneous and mucocutaneous bartonellosis +C0348975|T047|PT|A44.1|ICD10|Cutaneous and mucocutaneous bartonellosis|Cutaneous and mucocutaneous bartonellosis +C0042552|T047|ET|A44.1|ICD10CM|Verruga peruana|Verruga peruana +C0348138|T047|PT|A44.8|ICD10|Other forms of bartonellosis|Other forms of bartonellosis +C0348138|T047|PT|A44.8|ICD10CM|Other forms of bartonellosis|Other forms of bartonellosis +C0348138|T047|AB|A44.8|ICD10CM|Other forms of bartonellosis|Other forms of bartonellosis +C0004771|T047|PT|A44.9|ICD10CM|Bartonellosis, unspecified|Bartonellosis, unspecified +C0004771|T047|AB|A44.9|ICD10CM|Bartonellosis, unspecified|Bartonellosis, unspecified +C0004771|T047|PT|A44.9|ICD10|Bartonellosis, unspecified|Bartonellosis, unspecified +C0014733|T047|PT|A46|ICD10|Erysipelas|Erysipelas +C0014733|T047|PT|A46|ICD10CM|Erysipelas|Erysipelas +C0014733|T047|AB|A46|ICD10CM|Erysipelas|Erysipelas +C0494052|T047|HT|A48|ICD10|Other bacterial diseases, not elsewhere classified|Other bacterial diseases, not elsewhere classified +C0494052|T047|AB|A48|ICD10CM|Other bacterial diseases, not elsewhere classified|Other bacterial diseases, not elsewhere classified +C0494052|T047|HT|A48|ICD10CM|Other bacterial diseases, not elsewhere classified|Other bacterial diseases, not elsewhere classified +C2887103|T047|ET|A48.0|ICD10CM|Clostridial cellulitis|Clostridial cellulitis +C0017105|T047|ET|A48.0|ICD10CM|Clostridial myonecrosis|Clostridial myonecrosis +C0017105|T047|PT|A48.0|ICD10CM|Gas gangrene|Gas gangrene +C0017105|T047|AB|A48.0|ICD10CM|Gas gangrene|Gas gangrene +C0017105|T047|PT|A48.0|ICD10|Gas gangrene|Gas gangrene +C0023241|T047|PT|A48.1|ICD10|Legionnaires' disease|Legionnaires' disease +C0023241|T047|PT|A48.1|ICD10CM|Legionnaires' disease|Legionnaires' disease +C0023241|T047|AB|A48.1|ICD10CM|Legionnaires' disease|Legionnaires' disease +C0343528|T047|PT|A48.2|ICD10CM|Nonpneumonic Legionnaires' disease [Pontiac fever]|Nonpneumonic Legionnaires' disease [Pontiac fever] +C0343528|T047|AB|A48.2|ICD10CM|Nonpneumonic Legionnaires' disease [Pontiac fever]|Nonpneumonic Legionnaires' disease [Pontiac fever] +C0343528|T047|PT|A48.2|ICD10|Nonpneumonic Legionnaires' disease [Pontiac fever]|Nonpneumonic Legionnaires' disease [Pontiac fever] +C0600327|T047|PT|A48.3|ICD10|Toxic shock syndrome|Toxic shock syndrome +C0600327|T047|PT|A48.3|ICD10CM|Toxic shock syndrome|Toxic shock syndrome +C0600327|T047|AB|A48.3|ICD10CM|Toxic shock syndrome|Toxic shock syndrome +C0275703|T047|PT|A48.4|ICD10|Brazilian purpuric fever|Brazilian purpuric fever +C0275703|T047|PT|A48.4|ICD10CM|Brazilian purpuric fever|Brazilian purpuric fever +C0275703|T047|AB|A48.4|ICD10CM|Brazilian purpuric fever|Brazilian purpuric fever +C2887104|T047|ET|A48.4|ICD10CM|Systemic Hemophilus aegyptius infection|Systemic Hemophilus aegyptius infection +C2887105|T047|ET|A48.5|ICD10CM|Non-foodborne intoxication due to toxins of Clostridium botulinum [C. botulinum]|Non-foodborne intoxication due to toxins of Clostridium botulinum [C. botulinum] +C1955553|T047|AB|A48.5|ICD10CM|Other specified botulism|Other specified botulism +C1955553|T047|HT|A48.5|ICD10CM|Other specified botulism|Other specified botulism +C0238027|T047|AB|A48.51|ICD10CM|Infant botulism|Infant botulism +C0238027|T047|PT|A48.51|ICD10CM|Infant botulism|Infant botulism +C1955552|T047|ET|A48.52|ICD10CM|Non-foodborne botulism NOS|Non-foodborne botulism NOS +C1306794|T047|PT|A48.52|ICD10CM|Wound botulism|Wound botulism +C1306794|T047|AB|A48.52|ICD10CM|Wound botulism|Wound botulism +C0152977|T047|PT|A48.8|ICD10CM|Other specified bacterial diseases|Other specified bacterial diseases +C0152977|T047|AB|A48.8|ICD10CM|Other specified bacterial diseases|Other specified bacterial diseases +C0152977|T047|PT|A48.8|ICD10|Other specified bacterial diseases|Other specified bacterial diseases +C0004623|T047|HT|A49|ICD10|Bacterial infection of unspecified site|Bacterial infection of unspecified site +C0004623|T047|AB|A49|ICD10CM|Bacterial infection of unspecified site|Bacterial infection of unspecified site +C0004623|T047|HT|A49|ICD10CM|Bacterial infection of unspecified site|Bacterial infection of unspecified site +C0038160|T047|PT|A49.0|ICD10|Staphylococcal infection, unspecified|Staphylococcal infection, unspecified +C2887106|T047|AB|A49.0|ICD10CM|Staphylococcal infection, unspecified site|Staphylococcal infection, unspecified site +C2887106|T047|HT|A49.0|ICD10CM|Staphylococcal infection, unspecified site|Staphylococcal infection, unspecified site +C3264364|T047|AB|A49.01|ICD10CM|Methicillin suscep staph infection, unsp site|Methicillin suscep staph infection, unsp site +C3264363|T047|ET|A49.01|ICD10CM|Methicillin susceptible Staphylococcus aureus (MSSA) infection|Methicillin susceptible Staphylococcus aureus (MSSA) infection +C3264364|T047|PT|A49.01|ICD10CM|Methicillin susceptible Staphylococcus aureus infection, unspecified site|Methicillin susceptible Staphylococcus aureus infection, unspecified site +C1318973|T047|ET|A49.01|ICD10CM|Staphylococcus aureus infection NOS|Staphylococcus aureus infection NOS +C3264365|T047|AB|A49.02|ICD10CM|Methicillin resis staph infection, unsp site|Methicillin resis staph infection, unsp site +C0343401|T047|ET|A49.02|ICD10CM|Methicillin resistant Staphylococcus aureus (MRSA) infection|Methicillin resistant Staphylococcus aureus (MRSA) infection +C3264365|T047|PT|A49.02|ICD10CM|Methicillin resistant Staphylococcus aureus infection, unspecified site|Methicillin resistant Staphylococcus aureus infection, unspecified site +C0038395|T047|PT|A49.1|ICD10|Streptococcal infection, unspecified|Streptococcal infection, unspecified +C2887107|T047|AB|A49.1|ICD10CM|Streptococcal infection, unspecified site|Streptococcal infection, unspecified site +C2887107|T047|PT|A49.1|ICD10CM|Streptococcal infection, unspecified site|Streptococcal infection, unspecified site +C0348321|T047|PT|A49.2|ICD10|Haemophilus influenzae infection, unspecified|Haemophilus influenzae infection, unspecified +C0348321|T047|PT|A49.2|ICD10AE|Hemophilus influenzae infection, unspecified|Hemophilus influenzae infection, unspecified +C2887108|T047|AB|A49.2|ICD10CM|Hemophilus influenzae infection, unspecified site|Hemophilus influenzae infection, unspecified site +C2887108|T047|PT|A49.2|ICD10CM|Hemophilus influenzae infection, unspecified site|Hemophilus influenzae infection, unspecified site +C0026936|T047|PT|A49.3|ICD10|Mycoplasma infection, unspecified|Mycoplasma infection, unspecified +C2887109|T047|AB|A49.3|ICD10CM|Mycoplasma infection, unspecified site|Mycoplasma infection, unspecified site +C2887109|T047|PT|A49.3|ICD10CM|Mycoplasma infection, unspecified site|Mycoplasma infection, unspecified site +C2939130|T047|PT|A49.8|ICD10|Other bacterial infections of unspecified site|Other bacterial infections of unspecified site +C2939130|T047|PT|A49.8|ICD10CM|Other bacterial infections of unspecified site|Other bacterial infections of unspecified site +C2939130|T047|AB|A49.8|ICD10CM|Other bacterial infections of unspecified site|Other bacterial infections of unspecified site +C0004623|T047|PT|A49.9|ICD10CM|Bacterial infection, unspecified|Bacterial infection, unspecified +C0004623|T047|AB|A49.9|ICD10CM|Bacterial infection, unspecified|Bacterial infection, unspecified +C0004623|T047|PT|A49.9|ICD10|Bacterial infection, unspecified|Bacterial infection, unspecified +C0039131|T047|HT|A50|ICD10|Congenital syphilis|Congenital syphilis +C0039131|T047|HT|A50|ICD10CM|Congenital syphilis|Congenital syphilis +C0039131|T047|AB|A50|ICD10CM|Congenital syphilis|Congenital syphilis +C0036916|T047|HT|A50-A64|ICD10CM|Infections with a predominantly sexual mode of transmission (A50-A64)|Infections with a predominantly sexual mode of transmission (A50-A64) +C0036916|T047|HT|A50-A64.9|ICD10|Infections with a predominantly sexual mode of transmission|Infections with a predominantly sexual mode of transmission +C0864743|T047|ET|A50.0|ICD10CM|Any congenital syphilitic condition specified as early or manifest less than two years after birth.|Any congenital syphilitic condition specified as early or manifest less than two years after birth. +C0343666|T047|PT|A50.0|ICD10|Early congenital syphilis, symptomatic|Early congenital syphilis, symptomatic +C0343666|T047|HT|A50.0|ICD10CM|Early congenital syphilis, symptomatic|Early congenital syphilis, symptomatic +C0343666|T047|AB|A50.0|ICD10CM|Early congenital syphilis, symptomatic|Early congenital syphilis, symptomatic +C2887110|T047|PT|A50.01|ICD10CM|Early congenital syphilitic oculopathy|Early congenital syphilitic oculopathy +C2887110|T047|AB|A50.01|ICD10CM|Early congenital syphilitic oculopathy|Early congenital syphilitic oculopathy +C2887111|T047|AB|A50.02|ICD10CM|Early congenital syphilitic osteochondropathy|Early congenital syphilitic osteochondropathy +C2887111|T047|PT|A50.02|ICD10CM|Early congenital syphilitic osteochondropathy|Early congenital syphilitic osteochondropathy +C2887112|T047|ET|A50.03|ICD10CM|Early congenital syphilitic laryngitis|Early congenital syphilitic laryngitis +C2887113|T047|PT|A50.03|ICD10CM|Early congenital syphilitic pharyngitis|Early congenital syphilitic pharyngitis +C2887113|T047|AB|A50.03|ICD10CM|Early congenital syphilitic pharyngitis|Early congenital syphilitic pharyngitis +C1405251|T047|AB|A50.04|ICD10CM|Early congenital syphilitic pneumonia|Early congenital syphilitic pneumonia +C1405251|T047|PT|A50.04|ICD10CM|Early congenital syphilitic pneumonia|Early congenital syphilitic pneumonia +C2887114|T047|AB|A50.05|ICD10CM|Early congenital syphilitic rhinitis|Early congenital syphilitic rhinitis +C2887114|T047|PT|A50.05|ICD10CM|Early congenital syphilitic rhinitis|Early congenital syphilitic rhinitis +C2887115|T047|AB|A50.06|ICD10CM|Early cutaneous congenital syphilis|Early cutaneous congenital syphilis +C2887115|T047|PT|A50.06|ICD10CM|Early cutaneous congenital syphilis|Early cutaneous congenital syphilis +C1410641|T047|AB|A50.07|ICD10CM|Early mucocutaneous congenital syphilis|Early mucocutaneous congenital syphilis +C1410641|T047|PT|A50.07|ICD10CM|Early mucocutaneous congenital syphilis|Early mucocutaneous congenital syphilis +C2887116|T047|AB|A50.08|ICD10CM|Early visceral congenital syphilis|Early visceral congenital syphilis +C2887116|T047|PT|A50.08|ICD10CM|Early visceral congenital syphilis|Early visceral congenital syphilis +C2887117|T047|AB|A50.09|ICD10CM|Other early congenital syphilis, symptomatic|Other early congenital syphilis, symptomatic +C2887117|T047|PT|A50.09|ICD10CM|Other early congenital syphilis, symptomatic|Other early congenital syphilis, symptomatic +C0153129|T047|PT|A50.1|ICD10|Early congenital syphilis, latent|Early congenital syphilis, latent +C0153129|T047|PT|A50.1|ICD10CM|Early congenital syphilis, latent|Early congenital syphilis, latent +C0153129|T047|AB|A50.1|ICD10CM|Early congenital syphilis, latent|Early congenital syphilis, latent +C0275859|T019|ET|A50.2|ICD10CM|Congenital syphilis NOS less than two years after birth.|Congenital syphilis NOS less than two years after birth. +C0275859|T047|ET|A50.2|ICD10CM|Congenital syphilis NOS less than two years after birth.|Congenital syphilis NOS less than two years after birth. +C0275859|T019|PT|A50.2|ICD10CM|Early congenital syphilis, unspecified|Early congenital syphilis, unspecified +C0275859|T047|PT|A50.2|ICD10CM|Early congenital syphilis, unspecified|Early congenital syphilis, unspecified +C0275859|T019|AB|A50.2|ICD10CM|Early congenital syphilis, unspecified|Early congenital syphilis, unspecified +C0275859|T047|AB|A50.2|ICD10CM|Early congenital syphilis, unspecified|Early congenital syphilis, unspecified +C0275859|T019|PT|A50.2|ICD10|Early congenital syphilis, unspecified|Early congenital syphilis, unspecified +C0275859|T047|PT|A50.2|ICD10|Early congenital syphilis, unspecified|Early congenital syphilis, unspecified +C0348985|T047|PT|A50.3|ICD10|Late congenital syphilitic oculopathy|Late congenital syphilitic oculopathy +C0348985|T047|HT|A50.3|ICD10CM|Late congenital syphilitic oculopathy|Late congenital syphilitic oculopathy +C0348985|T047|AB|A50.3|ICD10CM|Late congenital syphilitic oculopathy|Late congenital syphilitic oculopathy +C0348985|T047|AB|A50.30|ICD10CM|Late congenital syphilitic oculopathy, unspecified|Late congenital syphilitic oculopathy, unspecified +C0348985|T047|PT|A50.30|ICD10CM|Late congenital syphilitic oculopathy, unspecified|Late congenital syphilitic oculopathy, unspecified +C2887118|T047|AB|A50.31|ICD10CM|Late congenital syphilitic interstitial keratitis|Late congenital syphilitic interstitial keratitis +C2887118|T047|PT|A50.31|ICD10CM|Late congenital syphilitic interstitial keratitis|Late congenital syphilitic interstitial keratitis +C2887119|T047|AB|A50.32|ICD10CM|Late congenital syphilitic chorioretinitis|Late congenital syphilitic chorioretinitis +C2887119|T047|PT|A50.32|ICD10CM|Late congenital syphilitic chorioretinitis|Late congenital syphilitic chorioretinitis +C2893321|T047|AB|A50.39|ICD10CM|Other late congenital syphilitic oculopathy|Other late congenital syphilitic oculopathy +C2893321|T047|PT|A50.39|ICD10CM|Other late congenital syphilitic oculopathy|Other late congenital syphilitic oculopathy +C0153132|T047|HT|A50.4|ICD10CM|Late congenital neurosyphilis [juvenile neurosyphilis]|Late congenital neurosyphilis [juvenile neurosyphilis] +C0153132|T047|AB|A50.4|ICD10CM|Late congenital neurosyphilis [juvenile neurosyphilis]|Late congenital neurosyphilis [juvenile neurosyphilis] +C0153132|T047|PT|A50.4|ICD10|Late congenital neurosyphilis [juvenile neurosyphilis]|Late congenital neurosyphilis [juvenile neurosyphilis] +C0153132|T047|ET|A50.40|ICD10CM|Juvenile neurosyphilis NOS|Juvenile neurosyphilis NOS +C2893322|T047|AB|A50.40|ICD10CM|Late congenital neurosyphilis, unspecified|Late congenital neurosyphilis, unspecified +C2893322|T047|PT|A50.40|ICD10CM|Late congenital neurosyphilis, unspecified|Late congenital neurosyphilis, unspecified +C0338398|T047|PT|A50.41|ICD10CM|Late congenital syphilitic meningitis|Late congenital syphilitic meningitis +C0338398|T047|AB|A50.41|ICD10CM|Late congenital syphilitic meningitis|Late congenital syphilitic meningitis +C2893323|T047|AB|A50.42|ICD10CM|Late congenital syphilitic encephalitis|Late congenital syphilitic encephalitis +C2893323|T047|PT|A50.42|ICD10CM|Late congenital syphilitic encephalitis|Late congenital syphilitic encephalitis +C0338540|T047|PT|A50.43|ICD10CM|Late congenital syphilitic polyneuropathy|Late congenital syphilitic polyneuropathy +C0338540|T047|AB|A50.43|ICD10CM|Late congenital syphilitic polyneuropathy|Late congenital syphilitic polyneuropathy +C2893324|T047|AB|A50.44|ICD10CM|Late congenital syphilitic optic nerve atrophy|Late congenital syphilitic optic nerve atrophy +C2893324|T047|PT|A50.44|ICD10CM|Late congenital syphilitic optic nerve atrophy|Late congenital syphilitic optic nerve atrophy +C0275875|T048|ET|A50.45|ICD10CM|Dementia paralytica juvenilis|Dementia paralytica juvenilis +C0275875|T048|PT|A50.45|ICD10CM|Juvenile general paresis|Juvenile general paresis +C0275875|T048|AB|A50.45|ICD10CM|Juvenile general paresis|Juvenile general paresis +C2893325|T047|ET|A50.45|ICD10CM|Juvenile tabetoparetic neurosyphilis|Juvenile tabetoparetic neurosyphilis +C0343671|T047|ET|A50.49|ICD10CM|Juvenile tabes dorsalis|Juvenile tabes dorsalis +C2893326|T047|AB|A50.49|ICD10CM|Other late congenital neurosyphilis|Other late congenital neurosyphilis +C2893326|T047|PT|A50.49|ICD10CM|Other late congenital neurosyphilis|Other late congenital neurosyphilis +C0864747|T047|ET|A50.5|ICD10CM|Any congenital syphilitic condition specified as late or manifest two years or more after birth.|Any congenital syphilitic condition specified as late or manifest two years or more after birth. +C0153136|T047|HT|A50.5|ICD10CM|Other late congenital syphilis, symptomatic|Other late congenital syphilis, symptomatic +C0153136|T047|AB|A50.5|ICD10CM|Other late congenital syphilis, symptomatic|Other late congenital syphilis, symptomatic +C0153136|T047|PT|A50.5|ICD10|Other late congenital syphilis, symptomatic|Other late congenital syphilis, symptomatic +C0239075|T047|PT|A50.51|ICD10CM|Clutton's joints|Clutton's joints +C0239075|T047|AB|A50.51|ICD10CM|Clutton's joints|Clutton's joints +C0020186|T047|PT|A50.52|ICD10CM|Hutchinson's teeth|Hutchinson's teeth +C0020186|T047|AB|A50.52|ICD10CM|Hutchinson's teeth|Hutchinson's teeth +C0241925|T047|PT|A50.53|ICD10CM|Hutchinson's triad|Hutchinson's triad +C0241925|T047|AB|A50.53|ICD10CM|Hutchinson's triad|Hutchinson's triad +C3508810|T047|AB|A50.54|ICD10CM|Late congenital cardiovascular syphilis|Late congenital cardiovascular syphilis +C3508810|T047|PT|A50.54|ICD10CM|Late congenital cardiovascular syphilis|Late congenital cardiovascular syphilis +C2893328|T047|AB|A50.55|ICD10CM|Late congenital syphilitic arthropathy|Late congenital syphilitic arthropathy +C2893328|T047|PT|A50.55|ICD10CM|Late congenital syphilitic arthropathy|Late congenital syphilitic arthropathy +C2893329|T047|AB|A50.56|ICD10CM|Late congenital syphilitic osteochondropathy|Late congenital syphilitic osteochondropathy +C2893329|T047|PT|A50.56|ICD10CM|Late congenital syphilitic osteochondropathy|Late congenital syphilitic osteochondropathy +C0275873|T047|PT|A50.57|ICD10CM|Syphilitic saddle nose|Syphilitic saddle nose +C0275873|T047|AB|A50.57|ICD10CM|Syphilitic saddle nose|Syphilitic saddle nose +C0153136|T047|PT|A50.59|ICD10CM|Other late congenital syphilis, symptomatic|Other late congenital syphilis, symptomatic +C0153136|T047|AB|A50.59|ICD10CM|Other late congenital syphilis, symptomatic|Other late congenital syphilis, symptomatic +C0275874|T047|PT|A50.6|ICD10CM|Late congenital syphilis, latent|Late congenital syphilis, latent +C0275874|T047|AB|A50.6|ICD10CM|Late congenital syphilis, latent|Late congenital syphilis, latent +C0275874|T047|PT|A50.6|ICD10|Late congenital syphilis, latent|Late congenital syphilis, latent +C0554634|T047|ET|A50.7|ICD10CM|Congenital syphilis NOS two years or more after birth.|Congenital syphilis NOS two years or more after birth. +C0554634|T047|PT|A50.7|ICD10CM|Late congenital syphilis, unspecified|Late congenital syphilis, unspecified +C0554634|T047|AB|A50.7|ICD10CM|Late congenital syphilis, unspecified|Late congenital syphilis, unspecified +C0554634|T047|PT|A50.7|ICD10|Late congenital syphilis, unspecified|Late congenital syphilis, unspecified +C0039131|T047|PT|A50.9|ICD10|Congenital syphilis, unspecified|Congenital syphilis, unspecified +C0039131|T047|PT|A50.9|ICD10CM|Congenital syphilis, unspecified|Congenital syphilis, unspecified +C0039131|T047|AB|A50.9|ICD10CM|Congenital syphilis, unspecified|Congenital syphilis, unspecified +C0348148|T047|HT|A51|ICD10|Early syphilis|Early syphilis +C0348148|T047|AB|A51|ICD10CM|Early syphilis|Early syphilis +C0348148|T047|HT|A51|ICD10CM|Early syphilis|Early syphilis +C0017418|T047|PT|A51.0|ICD10CM|Primary genital syphilis|Primary genital syphilis +C0017418|T047|AB|A51.0|ICD10CM|Primary genital syphilis|Primary genital syphilis +C0017418|T047|PT|A51.0|ICD10|Primary genital syphilis|Primary genital syphilis +C0007939|T184|ET|A51.0|ICD10CM|Syphilitic chancre NOS|Syphilitic chancre NOS +C0153140|T047|PT|A51.1|ICD10|Primary anal syphilis|Primary anal syphilis +C0153140|T047|PT|A51.1|ICD10CM|Primary anal syphilis|Primary anal syphilis +C0153140|T047|AB|A51.1|ICD10CM|Primary anal syphilis|Primary anal syphilis +C0348146|T047|PT|A51.2|ICD10CM|Primary syphilis of other sites|Primary syphilis of other sites +C0348146|T047|AB|A51.2|ICD10CM|Primary syphilis of other sites|Primary syphilis of other sites +C0348146|T047|PT|A51.2|ICD10|Primary syphilis of other sites|Primary syphilis of other sites +C0343677|T047|PT|A51.3|ICD10|Secondary syphilis of skin and mucous membranes|Secondary syphilis of skin and mucous membranes +C0343677|T047|HT|A51.3|ICD10CM|Secondary syphilis of skin and mucous membranes|Secondary syphilis of skin and mucous membranes +C0343677|T047|AB|A51.3|ICD10CM|Secondary syphilis of skin and mucous membranes|Secondary syphilis of skin and mucous membranes +C0275828|T047|PT|A51.31|ICD10CM|Condyloma latum|Condyloma latum +C0275828|T047|AB|A51.31|ICD10CM|Condyloma latum|Condyloma latum +C0002181|T047|PT|A51.32|ICD10CM|Syphilitic alopecia|Syphilitic alopecia +C0002181|T047|AB|A51.32|ICD10CM|Syphilitic alopecia|Syphilitic alopecia +C2893331|T047|AB|A51.39|ICD10CM|Other secondary syphilis of skin|Other secondary syphilis of skin +C2893331|T047|PT|A51.39|ICD10CM|Other secondary syphilis of skin|Other secondary syphilis of skin +C0275835|T047|ET|A51.39|ICD10CM|Syphilitic leukoderma|Syphilitic leukoderma +C2893330|T047|ET|A51.39|ICD10CM|Syphilitic mucous patch|Syphilitic mucous patch +C0348147|T047|HT|A51.4|ICD10CM|Other secondary syphilis|Other secondary syphilis +C0348147|T047|AB|A51.4|ICD10CM|Other secondary syphilis|Other secondary syphilis +C0348147|T047|PT|A51.4|ICD10|Other secondary syphilis|Other secondary syphilis +C0338399|T047|PT|A51.41|ICD10CM|Secondary syphilitic meningitis|Secondary syphilitic meningitis +C0338399|T047|AB|A51.41|ICD10CM|Secondary syphilitic meningitis|Secondary syphilitic meningitis +C2893332|T047|AB|A51.42|ICD10CM|Secondary syphilitic female pelvic disease|Secondary syphilitic female pelvic disease +C2893332|T047|PT|A51.42|ICD10CM|Secondary syphilitic female pelvic disease|Secondary syphilitic female pelvic disease +C0153145|T047|ET|A51.43|ICD10CM|Secondary syphilitic chorioretinitis|Secondary syphilitic chorioretinitis +C2893333|T047|ET|A51.43|ICD10CM|Secondary syphilitic iridocyclitis, iritis|Secondary syphilitic iridocyclitis, iritis +C2893334|T047|AB|A51.43|ICD10CM|Secondary syphilitic oculopathy|Secondary syphilitic oculopathy +C2893334|T047|PT|A51.43|ICD10CM|Secondary syphilitic oculopathy|Secondary syphilitic oculopathy +C0275836|T047|ET|A51.43|ICD10CM|Secondary syphilitic uveitis|Secondary syphilitic uveitis +C2893335|T047|AB|A51.44|ICD10CM|Secondary syphilitic nephritis|Secondary syphilitic nephritis +C2893335|T047|PT|A51.44|ICD10CM|Secondary syphilitic nephritis|Secondary syphilitic nephritis +C0153149|T047|PT|A51.45|ICD10CM|Secondary syphilitic hepatitis|Secondary syphilitic hepatitis +C0153149|T047|AB|A51.45|ICD10CM|Secondary syphilitic hepatitis|Secondary syphilitic hepatitis +C2893336|T047|AB|A51.46|ICD10CM|Secondary syphilitic osteopathy|Secondary syphilitic osteopathy +C2893336|T047|PT|A51.46|ICD10CM|Secondary syphilitic osteopathy|Secondary syphilitic osteopathy +C2893338|T047|AB|A51.49|ICD10CM|Other secondary syphilitic conditions|Other secondary syphilitic conditions +C2893338|T047|PT|A51.49|ICD10CM|Other secondary syphilitic conditions|Other secondary syphilitic conditions +C0275834|T047|ET|A51.49|ICD10CM|Secondary syphilitic lymphadenopathy|Secondary syphilitic lymphadenopathy +C2893337|T047|ET|A51.49|ICD10CM|Secondary syphilitic myositis|Secondary syphilitic myositis +C0275842|T047|PT|A51.5|ICD10CM|Early syphilis, latent|Early syphilis, latent +C0275842|T047|AB|A51.5|ICD10CM|Early syphilis, latent|Early syphilis, latent +C0275842|T047|PT|A51.5|ICD10|Early syphilis, latent|Early syphilis, latent +C0348148|T047|PT|A51.9|ICD10|Early syphilis, unspecified|Early syphilis, unspecified +C0348148|T047|PT|A51.9|ICD10CM|Early syphilis, unspecified|Early syphilis, unspecified +C0348148|T047|AB|A51.9|ICD10CM|Early syphilis, unspecified|Early syphilis, unspecified +C0153188|T047|HT|A52|ICD10CM|Late syphilis|Late syphilis +C0153188|T047|AB|A52|ICD10CM|Late syphilis|Late syphilis +C0153188|T047|HT|A52|ICD10|Late syphilis|Late syphilis +C2893340|T047|AB|A52.0|ICD10CM|Cardiovascular and cerebrovascular syphilis|Cardiovascular and cerebrovascular syphilis +C2893340|T047|HT|A52.0|ICD10CM|Cardiovascular and cerebrovascular syphilis|Cardiovascular and cerebrovascular syphilis +C0039130|T047|PT|A52.0|ICD10|Cardiovascular syphilis|Cardiovascular syphilis +C0039130|T047|PT|A52.00|ICD10CM|Cardiovascular syphilis, unspecified|Cardiovascular syphilis, unspecified +C0039130|T047|AB|A52.00|ICD10CM|Cardiovascular syphilis, unspecified|Cardiovascular syphilis, unspecified +C0275844|T047|PT|A52.01|ICD10CM|Syphilitic aneurysm of aorta|Syphilitic aneurysm of aorta +C0275844|T047|AB|A52.01|ICD10CM|Syphilitic aneurysm of aorta|Syphilitic aneurysm of aorta +C0003511|T047|PT|A52.02|ICD10CM|Syphilitic aortitis|Syphilitic aortitis +C0003511|T047|AB|A52.02|ICD10CM|Syphilitic aortitis|Syphilitic aortitis +C2893341|T047|ET|A52.03|ICD10CM|Syphilitic aortic valve incompetence or stenosis|Syphilitic aortic valve incompetence or stenosis +C0153158|T047|PT|A52.03|ICD10CM|Syphilitic endocarditis|Syphilitic endocarditis +C0153158|T047|AB|A52.03|ICD10CM|Syphilitic endocarditis|Syphilitic endocarditis +C2893342|T047|ET|A52.03|ICD10CM|Syphilitic mitral valve stenosis|Syphilitic mitral valve stenosis +C2893343|T047|ET|A52.03|ICD10CM|Syphilitic pulmonary valve regurgitation|Syphilitic pulmonary valve regurgitation +C0338590|T047|PT|A52.04|ICD10CM|Syphilitic cerebral arteritis|Syphilitic cerebral arteritis +C0338590|T047|AB|A52.04|ICD10CM|Syphilitic cerebral arteritis|Syphilitic cerebral arteritis +C2893346|T047|AB|A52.05|ICD10CM|Other cerebrovascular syphilis|Other cerebrovascular syphilis +C2893346|T047|PT|A52.05|ICD10CM|Other cerebrovascular syphilis|Other cerebrovascular syphilis +C2893344|T047|ET|A52.05|ICD10CM|Syphilitic cerebral aneurysm (ruptured) (non-ruptured)|Syphilitic cerebral aneurysm (ruptured) (non-ruptured) +C2893345|T047|ET|A52.05|ICD10CM|Syphilitic cerebral thrombosis|Syphilitic cerebral thrombosis +C2893347|T047|AB|A52.06|ICD10CM|Other syphilitic heart involvement|Other syphilitic heart involvement +C2893347|T047|PT|A52.06|ICD10CM|Other syphilitic heart involvement|Other syphilitic heart involvement +C0343692|T047|ET|A52.06|ICD10CM|Syphilitic coronary artery disease|Syphilitic coronary artery disease +C0153165|T047|ET|A52.06|ICD10CM|Syphilitic myocarditis|Syphilitic myocarditis +C0153164|T047|ET|A52.06|ICD10CM|Syphilitic pericarditis|Syphilitic pericarditis +C0859895|T047|AB|A52.09|ICD10CM|Other cardiovascular syphilis|Other cardiovascular syphilis +C0859895|T047|PT|A52.09|ICD10CM|Other cardiovascular syphilis|Other cardiovascular syphilis +C0494053|T047|HT|A52.1|ICD10CM|Symptomatic neurosyphilis|Symptomatic neurosyphilis +C0494053|T047|AB|A52.1|ICD10CM|Symptomatic neurosyphilis|Symptomatic neurosyphilis +C0494053|T047|PT|A52.1|ICD10|Symptomatic neurosyphilis|Symptomatic neurosyphilis +C0494053|T047|AB|A52.10|ICD10CM|Symptomatic neurosyphilis, unspecified|Symptomatic neurosyphilis, unspecified +C0494053|T047|PT|A52.10|ICD10CM|Symptomatic neurosyphilis, unspecified|Symptomatic neurosyphilis, unspecified +C1282408|T047|ET|A52.11|ICD10CM|Locomotor ataxia (progressive)|Locomotor ataxia (progressive) +C0039223|T047|PT|A52.11|ICD10CM|Tabes dorsalis|Tabes dorsalis +C0039223|T047|AB|A52.11|ICD10CM|Tabes dorsalis|Tabes dorsalis +C0039223|T047|ET|A52.11|ICD10CM|Tabetic neurosyphilis|Tabetic neurosyphilis +C2893349|T047|AB|A52.12|ICD10CM|Other cerebrospinal syphilis|Other cerebrospinal syphilis +C2893349|T047|PT|A52.12|ICD10CM|Other cerebrospinal syphilis|Other cerebrospinal syphilis +C2893350|T047|AB|A52.13|ICD10CM|Late syphilitic meningitis|Late syphilitic meningitis +C2893350|T047|PT|A52.13|ICD10CM|Late syphilitic meningitis|Late syphilitic meningitis +C0338425|T047|PT|A52.14|ICD10CM|Late syphilitic encephalitis|Late syphilitic encephalitis +C0338425|T047|AB|A52.14|ICD10CM|Late syphilitic encephalitis|Late syphilitic encephalitis +C2893351|T047|ET|A52.15|ICD10CM|Late syphilitic acoustic neuritis|Late syphilitic acoustic neuritis +C2893355|T047|AB|A52.15|ICD10CM|Late syphilitic neuropathy|Late syphilitic neuropathy +C2893355|T047|PT|A52.15|ICD10CM|Late syphilitic neuropathy|Late syphilitic neuropathy +C2893352|T047|ET|A52.15|ICD10CM|Late syphilitic optic (nerve) atrophy|Late syphilitic optic (nerve) atrophy +C2893353|T047|ET|A52.15|ICD10CM|Late syphilitic polyneuropathy|Late syphilitic polyneuropathy +C2893354|T047|ET|A52.15|ICD10CM|Late syphilitic retrobulbar neuritis|Late syphilitic retrobulbar neuritis +C2893356|T047|PT|A52.16|ICD10CM|Charcôt's arthropathy (tabetic)|Charcôt's arthropathy (tabetic) +C2893356|T047|AB|A52.16|ICD10CM|Charcot's arthropathy (tabetic)|Charcot's arthropathy (tabetic) +C0205858|T047|ET|A52.17|ICD10CM|Dementia paralytica|Dementia paralytica +C0205858|T047|PT|A52.17|ICD10CM|General paresis|General paresis +C0205858|T047|AB|A52.17|ICD10CM|General paresis|General paresis +C2893357|T047|AB|A52.19|ICD10CM|Other symptomatic neurosyphilis|Other symptomatic neurosyphilis +C2893357|T047|PT|A52.19|ICD10CM|Other symptomatic neurosyphilis|Other symptomatic neurosyphilis +C0153169|T047|ET|A52.19|ICD10CM|Syphilitic parkinsonism|Syphilitic parkinsonism +C0153167|T047|PT|A52.2|ICD10CM|Asymptomatic neurosyphilis|Asymptomatic neurosyphilis +C0153167|T047|AB|A52.2|ICD10CM|Asymptomatic neurosyphilis|Asymptomatic neurosyphilis +C0153167|T047|PT|A52.2|ICD10|Asymptomatic neurosyphilis|Asymptomatic neurosyphilis +C0221385|T047|ET|A52.3|ICD10CM|Gumma (syphilitic)|Gumma (syphilitic) +C0027927|T047|PT|A52.3|ICD10CM|Neurosyphilis, unspecified|Neurosyphilis, unspecified +C0027927|T047|AB|A52.3|ICD10CM|Neurosyphilis, unspecified|Neurosyphilis, unspecified +C0027927|T047|PT|A52.3|ICD10|Neurosyphilis, unspecified|Neurosyphilis, unspecified +C0153188|T047|ET|A52.3|ICD10CM|Syphilis (late)|Syphilis (late) +C0221385|T047|ET|A52.3|ICD10CM|Syphiloma|Syphiloma +C0348149|T047|HT|A52.7|ICD10CM|Other symptomatic late syphilis|Other symptomatic late syphilis +C0348149|T047|AB|A52.7|ICD10CM|Other symptomatic late syphilis|Other symptomatic late syphilis +C0348149|T047|PT|A52.7|ICD10|Other symptomatic late syphilis|Other symptomatic late syphilis +C2893358|T047|ET|A52.71|ICD10CM|Late syphilitic chorioretinitis|Late syphilitic chorioretinitis +C2893359|T047|ET|A52.71|ICD10CM|Late syphilitic episcleritis|Late syphilitic episcleritis +C2893360|T047|AB|A52.71|ICD10CM|Late syphilitic oculopathy|Late syphilitic oculopathy +C2893360|T047|PT|A52.71|ICD10CM|Late syphilitic oculopathy|Late syphilitic oculopathy +C2893361|T047|AB|A52.72|ICD10CM|Syphilis of lung and bronchus|Syphilis of lung and bronchus +C2893361|T047|PT|A52.72|ICD10CM|Syphilis of lung and bronchus|Syphilis of lung and bronchus +C2893362|T047|AB|A52.73|ICD10CM|Symptomatic late syphilis of other respiratory organs|Symptomatic late syphilis of other respiratory organs +C2893362|T047|PT|A52.73|ICD10CM|Symptomatic late syphilis of other respiratory organs|Symptomatic late syphilis of other respiratory organs +C2893363|T047|ET|A52.74|ICD10CM|Late syphilitic peritonitis|Late syphilitic peritonitis +C2893364|T047|AB|A52.74|ICD10CM|Syphilis of liver and other viscera|Syphilis of liver and other viscera +C2893364|T047|PT|A52.74|ICD10CM|Syphilis of liver and other viscera|Syphilis of liver and other viscera +C2893366|T047|AB|A52.75|ICD10CM|Syphilis of kidney and ureter|Syphilis of kidney and ureter +C2893366|T047|PT|A52.75|ICD10CM|Syphilis of kidney and ureter|Syphilis of kidney and ureter +C2893365|T047|ET|A52.75|ICD10CM|Syphilitic glomerular disease|Syphilitic glomerular disease +C2893367|T047|ET|A52.76|ICD10CM|Late syphilitic female pelvic inflammatory disease|Late syphilitic female pelvic inflammatory disease +C2893368|T047|AB|A52.76|ICD10CM|Other genitourinary symptomatic late syphilis|Other genitourinary symptomatic late syphilis +C2893368|T047|PT|A52.76|ICD10CM|Other genitourinary symptomatic late syphilis|Other genitourinary symptomatic late syphilis +C2893369|T047|AB|A52.77|ICD10CM|Syphilis of bone and joint|Syphilis of bone and joint +C2893369|T047|PT|A52.77|ICD10CM|Syphilis of bone and joint|Syphilis of bone and joint +C2893370|T047|ET|A52.78|ICD10CM|Late syphilitic bursitis|Late syphilitic bursitis +C2893371|T047|ET|A52.78|ICD10CM|Syphilis [stage unspecified] of bursa|Syphilis [stage unspecified] of bursa +C2893372|T047|ET|A52.78|ICD10CM|Syphilis [stage unspecified] of muscle|Syphilis [stage unspecified] of muscle +C2893373|T047|ET|A52.78|ICD10CM|Syphilis [stage unspecified] of synovium|Syphilis [stage unspecified] of synovium +C2893374|T047|ET|A52.78|ICD10CM|Syphilis [stage unspecified] of tendon|Syphilis [stage unspecified] of tendon +C2893375|T047|AB|A52.78|ICD10CM|Syphilis of other musculoskeletal tissue|Syphilis of other musculoskeletal tissue +C2893375|T047|PT|A52.78|ICD10CM|Syphilis of other musculoskeletal tissue|Syphilis of other musculoskeletal tissue +C1410613|T047|ET|A52.79|ICD10CM|Late syphilitic leukoderma|Late syphilitic leukoderma +C0348149|T047|PT|A52.79|ICD10CM|Other symptomatic late syphilis|Other symptomatic late syphilis +C0348149|T047|AB|A52.79|ICD10CM|Other symptomatic late syphilis|Other symptomatic late syphilis +C2893376|T047|ET|A52.79|ICD10CM|Syphilis of adrenal gland|Syphilis of adrenal gland +C2893377|T047|ET|A52.79|ICD10CM|Syphilis of pituitary gland|Syphilis of pituitary gland +C2893378|T047|ET|A52.79|ICD10CM|Syphilis of thyroid gland|Syphilis of thyroid gland +C2893379|T047|ET|A52.79|ICD10CM|Syphilitic splenomegaly|Syphilitic splenomegaly +C1260915|T047|PT|A52.8|ICD10|Late syphilis, latent|Late syphilis, latent +C1260915|T047|PT|A52.8|ICD10CM|Late syphilis, latent|Late syphilis, latent +C1260915|T047|AB|A52.8|ICD10CM|Late syphilis, latent|Late syphilis, latent +C0153188|T047|PT|A52.9|ICD10CM|Late syphilis, unspecified|Late syphilis, unspecified +C0153188|T047|AB|A52.9|ICD10CM|Late syphilis, unspecified|Late syphilis, unspecified +C0153188|T047|PT|A52.9|ICD10|Late syphilis, unspecified|Late syphilis, unspecified +C0558995|T047|HT|A53|ICD10|Other and unspecified syphilis|Other and unspecified syphilis +C0558995|T047|HT|A53|ICD10CM|Other and unspecified syphilis|Other and unspecified syphilis +C0558995|T047|AB|A53|ICD10CM|Other and unspecified syphilis|Other and unspecified syphilis +C0039133|T047|ET|A53.0|ICD10CM|Latent syphilis NOS|Latent syphilis NOS +C0039133|T047|PT|A53.0|ICD10CM|Latent syphilis, unspecified as early or late|Latent syphilis, unspecified as early or late +C0039133|T047|AB|A53.0|ICD10CM|Latent syphilis, unspecified as early or late|Latent syphilis, unspecified as early or late +C0039133|T047|PT|A53.0|ICD10|Latent syphilis, unspecified as early or late|Latent syphilis, unspecified as early or late +C0864761|T033|ET|A53.0|ICD10CM|Positive serological reaction for syphilis|Positive serological reaction for syphilis +C2893380|T047|ET|A53.9|ICD10CM|Infection due to Treponema pallidum NOS|Infection due to Treponema pallidum NOS +C0343674|T047|ET|A53.9|ICD10CM|Syphilis (acquired) NOS|Syphilis (acquired) NOS +C0039128|T047|PT|A53.9|ICD10CM|Syphilis, unspecified|Syphilis, unspecified +C0039128|T047|AB|A53.9|ICD10CM|Syphilis, unspecified|Syphilis, unspecified +C0039128|T047|PT|A53.9|ICD10|Syphilis, unspecified|Syphilis, unspecified +C0018081|T047|HT|A54|ICD10|Gonococcal infection|Gonococcal infection +C0018081|T047|HT|A54|ICD10CM|Gonococcal infection|Gonococcal infection +C0018081|T047|AB|A54|ICD10CM|Gonococcal infection|Gonococcal infection +C0494054|T047|AB|A54.0|ICD10CM|Gonocl infct of low GU tract w/o periureth or acc glnd abcs|Gonocl infct of low GU tract w/o periureth or acc glnd abcs +C0494054|T047|HT|A54.0|ICD10CM|Gonococcal infection of lower genitourinary tract without periurethral or accessory gland abscess|Gonococcal infection of lower genitourinary tract without periurethral or accessory gland abscess +C0494054|T047|PT|A54.0|ICD10|Gonococcal infection of lower genitourinary tract without periurethral or accessory gland abscess|Gonococcal infection of lower genitourinary tract without periurethral or accessory gland abscess +C2893381|T047|AB|A54.00|ICD10CM|Gonococcal infection of lower genitourinary tract, unsp|Gonococcal infection of lower genitourinary tract, unsp +C2893381|T047|PT|A54.00|ICD10CM|Gonococcal infection of lower genitourinary tract, unspecified|Gonococcal infection of lower genitourinary tract, unspecified +C2893382|T047|AB|A54.01|ICD10CM|Gonococcal cystitis and urethritis, unspecified|Gonococcal cystitis and urethritis, unspecified +C2893382|T047|PT|A54.01|ICD10CM|Gonococcal cystitis and urethritis, unspecified|Gonococcal cystitis and urethritis, unspecified +C0018079|T047|AB|A54.02|ICD10CM|Gonococcal vulvovaginitis, unspecified|Gonococcal vulvovaginitis, unspecified +C0018079|T047|PT|A54.02|ICD10CM|Gonococcal vulvovaginitis, unspecified|Gonococcal vulvovaginitis, unspecified +C0812378|T047|AB|A54.03|ICD10CM|Gonococcal cervicitis, unspecified|Gonococcal cervicitis, unspecified +C0812378|T047|PT|A54.03|ICD10CM|Gonococcal cervicitis, unspecified|Gonococcal cervicitis, unspecified +C2893383|T047|AB|A54.09|ICD10CM|Other gonococcal infection of lower genitourinary tract|Other gonococcal infection of lower genitourinary tract +C2893383|T047|PT|A54.09|ICD10CM|Other gonococcal infection of lower genitourinary tract|Other gonococcal infection of lower genitourinary tract +C0494055|T047|AB|A54.1|ICD10CM|Gonocl infct of lower GU tract w periureth and acc glnd abcs|Gonocl infct of lower GU tract w periureth and acc glnd abcs +C3665381|T047|ET|A54.1|ICD10CM|Gonococcal Bartholin's gland abscess|Gonococcal Bartholin's gland abscess +C0494055|T047|PT|A54.1|ICD10CM|Gonococcal infection of lower genitourinary tract with periurethral and accessory gland abscess|Gonococcal infection of lower genitourinary tract with periurethral and accessory gland abscess +C0494055|T047|PT|A54.1|ICD10|Gonococcal infection of lower genitourinary tract with periurethral and accessory gland abscess|Gonococcal infection of lower genitourinary tract with periurethral and accessory gland abscess +C0494056|T047|AB|A54.2|ICD10CM|Gonococcal pelviperitonitis and oth gonococcal GU infection|Gonococcal pelviperitonitis and oth gonococcal GU infection +C0494056|T047|HT|A54.2|ICD10CM|Gonococcal pelviperitonitis and other gonococcal genitourinary infection|Gonococcal pelviperitonitis and other gonococcal genitourinary infection +C0494056|T047|PT|A54.2|ICD10|Gonococcal pelviperitonitis and other gonococcal genitourinary infections|Gonococcal pelviperitonitis and other gonococcal genitourinary infections +C2893384|T047|AB|A54.21|ICD10CM|Gonococcal infection of kidney and ureter|Gonococcal infection of kidney and ureter +C2893384|T047|PT|A54.21|ICD10CM|Gonococcal infection of kidney and ureter|Gonococcal infection of kidney and ureter +C0341755|T047|PT|A54.22|ICD10CM|Gonococcal prostatitis|Gonococcal prostatitis +C0341755|T047|AB|A54.22|ICD10CM|Gonococcal prostatitis|Gonococcal prostatitis +C0341778|T047|ET|A54.23|ICD10CM|Gonococcal epididymitis|Gonococcal epididymitis +C2893385|T047|AB|A54.23|ICD10CM|Gonococcal infection of other male genital organs|Gonococcal infection of other male genital organs +C2893385|T047|PT|A54.23|ICD10CM|Gonococcal infection of other male genital organs|Gonococcal infection of other male genital organs +C0864767|T047|ET|A54.23|ICD10CM|Gonococcal orchitis|Gonococcal orchitis +C0452163|T047|PT|A54.24|ICD10CM|Gonococcal female pelvic inflammatory disease|Gonococcal female pelvic inflammatory disease +C0452163|T047|AB|A54.24|ICD10CM|Gonococcal female pelvic inflammatory disease|Gonococcal female pelvic inflammatory disease +C2893386|T047|ET|A54.24|ICD10CM|Gonococcal pelviperitonitis|Gonococcal pelviperitonitis +C2893387|T047|AB|A54.29|ICD10CM|Other gonococcal genitourinary infections|Other gonococcal genitourinary infections +C2893387|T047|PT|A54.29|ICD10CM|Other gonococcal genitourinary infections|Other gonococcal genitourinary infections +C0153210|T047|PT|A54.3|ICD10|Gonococcal infection of eye|Gonococcal infection of eye +C0153210|T047|HT|A54.3|ICD10CM|Gonococcal infection of eye|Gonococcal infection of eye +C0153210|T047|AB|A54.3|ICD10CM|Gonococcal infection of eye|Gonococcal infection of eye +C0153210|T047|AB|A54.30|ICD10CM|Gonococcal infection of eye, unspecified|Gonococcal infection of eye, unspecified +C0153210|T047|PT|A54.30|ICD10CM|Gonococcal infection of eye, unspecified|Gonococcal infection of eye, unspecified +C0339166|T047|PT|A54.31|ICD10CM|Gonococcal conjunctivitis|Gonococcal conjunctivitis +C0339166|T047|AB|A54.31|ICD10CM|Gonococcal conjunctivitis|Gonococcal conjunctivitis +C2893388|T047|ET|A54.31|ICD10CM|Ophthalmia neonatorum due to gonococcus|Ophthalmia neonatorum due to gonococcus +C0153212|T047|PT|A54.32|ICD10CM|Gonococcal iridocyclitis|Gonococcal iridocyclitis +C0153212|T047|AB|A54.32|ICD10CM|Gonococcal iridocyclitis|Gonococcal iridocyclitis +C0153214|T047|PT|A54.33|ICD10CM|Gonococcal keratitis|Gonococcal keratitis +C0153214|T047|AB|A54.33|ICD10CM|Gonococcal keratitis|Gonococcal keratitis +C0153213|T047|ET|A54.39|ICD10CM|Gonococcal endophthalmia|Gonococcal endophthalmia +C0153215|T047|AB|A54.39|ICD10CM|Other gonococcal eye infection|Other gonococcal eye infection +C0153215|T047|PT|A54.39|ICD10CM|Other gonococcal eye infection|Other gonococcal eye infection +C0494057|T047|PT|A54.4|ICD10|Gonococcal infection of musculoskeletal system|Gonococcal infection of musculoskeletal system +C0494057|T047|HT|A54.4|ICD10CM|Gonococcal infection of musculoskeletal system|Gonococcal infection of musculoskeletal system +C0494057|T047|AB|A54.4|ICD10CM|Gonococcal infection of musculoskeletal system|Gonococcal infection of musculoskeletal system +C0494057|T047|AB|A54.40|ICD10CM|Gonococcal infection of musculoskeletal system, unspecified|Gonococcal infection of musculoskeletal system, unspecified +C0494057|T047|PT|A54.40|ICD10CM|Gonococcal infection of musculoskeletal system, unspecified|Gonococcal infection of musculoskeletal system, unspecified +C2893389|T047|PT|A54.41|ICD10CM|Gonococcal spondylopathy|Gonococcal spondylopathy +C2893389|T047|AB|A54.41|ICD10CM|Gonococcal spondylopathy|Gonococcal spondylopathy +C0153216|T047|PT|A54.42|ICD10CM|Gonococcal arthritis|Gonococcal arthritis +C0153216|T047|AB|A54.42|ICD10CM|Gonococcal arthritis|Gonococcal arthritis +C2893390|T047|PT|A54.43|ICD10CM|Gonococcal osteomyelitis|Gonococcal osteomyelitis +C2893390|T047|AB|A54.43|ICD10CM|Gonococcal osteomyelitis|Gonococcal osteomyelitis +C0153218|T047|ET|A54.49|ICD10CM|Gonococcal bursitis|Gonococcal bursitis +C2893392|T047|AB|A54.49|ICD10CM|Gonococcal infection of other musculoskeletal tissue|Gonococcal infection of other musculoskeletal tissue +C2893392|T047|PT|A54.49|ICD10CM|Gonococcal infection of other musculoskeletal tissue|Gonococcal infection of other musculoskeletal tissue +C2893391|T047|ET|A54.49|ICD10CM|Gonococcal myositis|Gonococcal myositis +C0275662|T047|ET|A54.49|ICD10CM|Gonococcal synovitis|Gonococcal synovitis +C0546991|T047|ET|A54.49|ICD10CM|Gonococcal tenosynovitis|Gonococcal tenosynovitis +C0149966|T047|PT|A54.5|ICD10CM|Gonococcal pharyngitis|Gonococcal pharyngitis +C0149966|T047|AB|A54.5|ICD10CM|Gonococcal pharyngitis|Gonococcal pharyngitis +C0149966|T047|PT|A54.5|ICD10|Gonococcal pharyngitis|Gonococcal pharyngitis +C0153222|T047|PT|A54.6|ICD10|Gonococcal infection of anus and rectum|Gonococcal infection of anus and rectum +C0153222|T047|PT|A54.6|ICD10CM|Gonococcal infection of anus and rectum|Gonococcal infection of anus and rectum +C0153222|T047|AB|A54.6|ICD10CM|Gonococcal infection of anus and rectum|Gonococcal infection of anus and rectum +C0348152|T047|HT|A54.8|ICD10CM|Other gonococcal infections|Other gonococcal infections +C0348152|T047|AB|A54.8|ICD10CM|Other gonococcal infections|Other gonococcal infections +C0348152|T047|PT|A54.8|ICD10|Other gonococcal infections|Other gonococcal infections +C0153225|T047|PT|A54.81|ICD10CM|Gonococcal meningitis|Gonococcal meningitis +C0153225|T047|AB|A54.81|ICD10CM|Gonococcal meningitis|Gonococcal meningitis +C2893393|T047|PT|A54.82|ICD10CM|Gonococcal brain abscess|Gonococcal brain abscess +C2893393|T047|AB|A54.82|ICD10CM|Gonococcal brain abscess|Gonococcal brain abscess +C0153227|T047|ET|A54.83|ICD10CM|Gonococcal endocarditis|Gonococcal endocarditis +C0275666|T047|AB|A54.83|ICD10CM|Gonococcal heart infection|Gonococcal heart infection +C0275666|T047|PT|A54.83|ICD10CM|Gonococcal heart infection|Gonococcal heart infection +C2893394|T047|ET|A54.83|ICD10CM|Gonococcal myocarditis|Gonococcal myocarditis +C0153226|T047|ET|A54.83|ICD10CM|Gonococcal pericarditis|Gonococcal pericarditis +C2893395|T047|PT|A54.84|ICD10CM|Gonococcal pneumonia|Gonococcal pneumonia +C2893395|T047|AB|A54.84|ICD10CM|Gonococcal pneumonia|Gonococcal pneumonia +C0018077|T047|PT|A54.85|ICD10CM|Gonococcal peritonitis|Gonococcal peritonitis +C0018077|T047|AB|A54.85|ICD10CM|Gonococcal peritonitis|Gonococcal peritonitis +C1398892|T047|AB|A54.86|ICD10CM|Gonococcal sepsis|Gonococcal sepsis +C1398892|T047|PT|A54.86|ICD10CM|Gonococcal sepsis|Gonococcal sepsis +C2893396|T047|ET|A54.89|ICD10CM|Gonococcal keratoderma|Gonococcal keratoderma +C1398870|T047|ET|A54.89|ICD10CM|Gonococcal lymphadenitis|Gonococcal lymphadenitis +C0348152|T047|PT|A54.89|ICD10CM|Other gonococcal infections|Other gonococcal infections +C0348152|T047|AB|A54.89|ICD10CM|Other gonococcal infections|Other gonococcal infections +C0018081|T047|PT|A54.9|ICD10|Gonococcal infection, unspecified|Gonococcal infection, unspecified +C0018081|T047|PT|A54.9|ICD10CM|Gonococcal infection, unspecified|Gonococcal infection, unspecified +C0018081|T047|AB|A54.9|ICD10CM|Gonococcal infection, unspecified|Gonococcal infection, unspecified +C0024286|T047|PT|A55|ICD10CM|Chlamydial lymphogranuloma (venereum)|Chlamydial lymphogranuloma (venereum) +C0024286|T047|AB|A55|ICD10CM|Chlamydial lymphogranuloma (venereum)|Chlamydial lymphogranuloma (venereum) +C0024286|T047|PT|A55|ICD10|Chlamydial lymphogranuloma (venereum)|Chlamydial lymphogranuloma (venereum) +C0024286|T047|ET|A55|ICD10CM|Climatic or tropical bubo|Climatic or tropical bubo +C0024286|T047|ET|A55|ICD10CM|Durand-Nicolas-Favre disease|Durand-Nicolas-Favre disease +C0014903|T047|ET|A55|ICD10CM|Esthiomene|Esthiomene +C0024286|T047|ET|A55|ICD10CM|Lymphogranuloma inguinale|Lymphogranuloma inguinale +C0494059|T047|AB|A56|ICD10CM|Other sexually transmitted chlamydial diseases|Other sexually transmitted chlamydial diseases +C0494059|T047|HT|A56|ICD10CM|Other sexually transmitted chlamydial diseases|Other sexually transmitted chlamydial diseases +C0494059|T047|HT|A56|ICD10|Other sexually transmitted chlamydial diseases|Other sexually transmitted chlamydial diseases +C4290045|T047|ET|A56|ICD10CM|sexually transmitted diseases due to Chlamydia|sexually transmitted diseases due to Chlamydia +C4290046|T047|ET|A56|ICD10CM|trachomatis|trachomatis +C0348904|T047|HT|A56.0|ICD10CM|Chlamydial infection of lower genitourinary tract|Chlamydial infection of lower genitourinary tract +C0348904|T047|AB|A56.0|ICD10CM|Chlamydial infection of lower genitourinary tract|Chlamydial infection of lower genitourinary tract +C0348904|T047|PT|A56.0|ICD10|Chlamydial infection of lower genitourinary tract|Chlamydial infection of lower genitourinary tract +C0348904|T047|AB|A56.00|ICD10CM|Chlamydial infection of lower genitourinary tract, unsp|Chlamydial infection of lower genitourinary tract, unsp +C0348904|T047|PT|A56.00|ICD10CM|Chlamydial infection of lower genitourinary tract, unspecified|Chlamydial infection of lower genitourinary tract, unspecified +C2893400|T047|AB|A56.01|ICD10CM|Chlamydial cystitis and urethritis|Chlamydial cystitis and urethritis +C2893400|T047|PT|A56.01|ICD10CM|Chlamydial cystitis and urethritis|Chlamydial cystitis and urethritis +C0341841|T047|PT|A56.02|ICD10CM|Chlamydial vulvovaginitis|Chlamydial vulvovaginitis +C0341841|T047|AB|A56.02|ICD10CM|Chlamydial vulvovaginitis|Chlamydial vulvovaginitis +C0341834|T047|ET|A56.09|ICD10CM|Chlamydial cervicitis|Chlamydial cervicitis +C2893401|T047|AB|A56.09|ICD10CM|Other chlamydial infection of lower genitourinary tract|Other chlamydial infection of lower genitourinary tract +C2893401|T047|PT|A56.09|ICD10CM|Other chlamydial infection of lower genitourinary tract|Other chlamydial infection of lower genitourinary tract +C0348905|T047|AB|A56.1|ICD10CM|Chlamydial infection of pelviperitoneum and oth GU organs|Chlamydial infection of pelviperitoneum and oth GU organs +C0348905|T047|HT|A56.1|ICD10CM|Chlamydial infection of pelviperitoneum and other genitourinary organs|Chlamydial infection of pelviperitoneum and other genitourinary organs +C0348905|T047|PT|A56.1|ICD10|Chlamydial infection of pelviperitoneum and other genitourinary organs|Chlamydial infection of pelviperitoneum and other genitourinary organs +C0451784|T047|AB|A56.11|ICD10CM|Chlamydial female pelvic inflammatory disease|Chlamydial female pelvic inflammatory disease +C0451784|T047|PT|A56.11|ICD10CM|Chlamydial female pelvic inflammatory disease|Chlamydial female pelvic inflammatory disease +C0341779|T047|ET|A56.19|ICD10CM|Chlamydial epididymitis|Chlamydial epididymitis +C2893402|T047|ET|A56.19|ICD10CM|Chlamydial orchitis|Chlamydial orchitis +C2893403|T047|AB|A56.19|ICD10CM|Other chlamydial genitourinary infection|Other chlamydial genitourinary infection +C2893403|T047|PT|A56.19|ICD10CM|Other chlamydial genitourinary infection|Other chlamydial genitourinary infection +C0348157|T047|PT|A56.2|ICD10CM|Chlamydial infection of genitourinary tract, unspecified|Chlamydial infection of genitourinary tract, unspecified +C0348157|T047|AB|A56.2|ICD10CM|Chlamydial infection of genitourinary tract, unspecified|Chlamydial infection of genitourinary tract, unspecified +C0348157|T047|PT|A56.2|ICD10|Chlamydial infection of genitourinary tract, unspecified|Chlamydial infection of genitourinary tract, unspecified +C0348903|T047|PT|A56.3|ICD10|Chlamydial infection of anus and rectum|Chlamydial infection of anus and rectum +C0348903|T047|PT|A56.3|ICD10CM|Chlamydial infection of anus and rectum|Chlamydial infection of anus and rectum +C0348903|T047|AB|A56.3|ICD10CM|Chlamydial infection of anus and rectum|Chlamydial infection of anus and rectum +C0149965|T047|PT|A56.4|ICD10|Chlamydial infection of pharynx|Chlamydial infection of pharynx +C0149965|T047|PT|A56.4|ICD10CM|Chlamydial infection of pharynx|Chlamydial infection of pharynx +C0149965|T047|AB|A56.4|ICD10CM|Chlamydial infection of pharynx|Chlamydial infection of pharynx +C0348153|T047|PT|A56.8|ICD10|Sexually transmitted chlamydial infection of other sites|Sexually transmitted chlamydial infection of other sites +C0348153|T047|PT|A56.8|ICD10CM|Sexually transmitted chlamydial infection of other sites|Sexually transmitted chlamydial infection of other sites +C0348153|T047|AB|A56.8|ICD10CM|Sexually transmitted chlamydial infection of other sites|Sexually transmitted chlamydial infection of other sites +C0007947|T047|PT|A57|ICD10CM|Chancroid|Chancroid +C0007947|T047|AB|A57|ICD10CM|Chancroid|Chancroid +C0007947|T047|PT|A57|ICD10|Chancroid|Chancroid +C0007947|T047|ET|A57|ICD10CM|Ulcus molle|Ulcus molle +C0018190|T047|ET|A58|ICD10CM|Donovanosis|Donovanosis +C0018190|T047|PT|A58|ICD10CM|Granuloma inguinale|Granuloma inguinale +C0018190|T047|AB|A58|ICD10CM|Granuloma inguinale|Granuloma inguinale +C0018190|T047|PT|A58|ICD10|Granuloma inguinale|Granuloma inguinale +C0040921|T047|HT|A59|ICD10|Trichomoniasis|Trichomoniasis +C0040921|T047|HT|A59|ICD10CM|Trichomoniasis|Trichomoniasis +C0040921|T047|AB|A59|ICD10CM|Trichomoniasis|Trichomoniasis +C0040928|T047|HT|A59.0|ICD10CM|Urogenital trichomoniasis|Urogenital trichomoniasis +C0040928|T047|AB|A59.0|ICD10CM|Urogenital trichomoniasis|Urogenital trichomoniasis +C0040928|T047|PT|A59.0|ICD10|Urogenital trichomoniasis|Urogenital trichomoniasis +C2893404|T047|ET|A59.00|ICD10CM|Fluor (vaginalis) due to Trichomonas|Fluor (vaginalis) due to Trichomonas +C2893405|T047|ET|A59.00|ICD10CM|Leukorrhea (vaginalis) due to Trichomonas|Leukorrhea (vaginalis) due to Trichomonas +C0040928|T047|PT|A59.00|ICD10CM|Urogenital trichomoniasis, unspecified|Urogenital trichomoniasis, unspecified +C0040928|T047|AB|A59.00|ICD10CM|Urogenital trichomoniasis, unspecified|Urogenital trichomoniasis, unspecified +C2945558|T047|PT|A59.01|ICD10CM|Trichomonal vulvovaginitis|Trichomonal vulvovaginitis +C2945558|T047|AB|A59.01|ICD10CM|Trichomonal vulvovaginitis|Trichomonal vulvovaginitis +C0153315|T047|PT|A59.02|ICD10CM|Trichomonal prostatitis|Trichomonal prostatitis +C0153315|T047|AB|A59.02|ICD10CM|Trichomonal prostatitis|Trichomonal prostatitis +C2893406|T047|AB|A59.03|ICD10CM|Trichomonal cystitis and urethritis|Trichomonal cystitis and urethritis +C2893406|T047|PT|A59.03|ICD10CM|Trichomonal cystitis and urethritis|Trichomonal cystitis and urethritis +C0153316|T047|AB|A59.09|ICD10CM|Other urogenital trichomoniasis|Other urogenital trichomoniasis +C0153316|T047|PT|A59.09|ICD10CM|Other urogenital trichomoniasis|Other urogenital trichomoniasis +C0742232|T033|ET|A59.09|ICD10CM|Trichomonas cervicitis|Trichomonas cervicitis +C0276827|T047|PT|A59.8|ICD10CM|Trichomoniasis of other sites|Trichomoniasis of other sites +C0276827|T047|AB|A59.8|ICD10CM|Trichomoniasis of other sites|Trichomoniasis of other sites +C0276827|T047|PT|A59.8|ICD10|Trichomoniasis of other sites|Trichomoniasis of other sites +C0040921|T047|PT|A59.9|ICD10|Trichomoniasis, unspecified|Trichomoniasis, unspecified +C0040921|T047|PT|A59.9|ICD10CM|Trichomoniasis, unspecified|Trichomoniasis, unspecified +C0040921|T047|AB|A59.9|ICD10CM|Trichomoniasis, unspecified|Trichomoniasis, unspecified +C0494060|T047|HT|A60|ICD10|Anogenital herpesviral [herpes simplex] infection|Anogenital herpesviral [herpes simplex] infection +C0494060|T047|AB|A60|ICD10CM|Anogenital herpesviral [herpes simplex] infections|Anogenital herpesviral [herpes simplex] infections +C0494060|T047|HT|A60|ICD10CM|Anogenital herpesviral [herpes simplex] infections|Anogenital herpesviral [herpes simplex] infections +C0494061|T047|HT|A60.0|ICD10CM|Herpesviral infection of genitalia and urogenital tract|Herpesviral infection of genitalia and urogenital tract +C0494061|T047|AB|A60.0|ICD10CM|Herpesviral infection of genitalia and urogenital tract|Herpesviral infection of genitalia and urogenital tract +C0494061|T047|PT|A60.0|ICD10|Herpesviral infection of genitalia and urogenital tract|Herpesviral infection of genitalia and urogenital tract +C2893407|T047|AB|A60.00|ICD10CM|Herpesviral infection of urogenital system, unspecified|Herpesviral infection of urogenital system, unspecified +C2893407|T047|PT|A60.00|ICD10CM|Herpesviral infection of urogenital system, unspecified|Herpesviral infection of urogenital system, unspecified +C2893408|T047|AB|A60.01|ICD10CM|Herpesviral infection of penis|Herpesviral infection of penis +C2893408|T047|PT|A60.01|ICD10CM|Herpesviral infection of penis|Herpesviral infection of penis +C2893409|T047|AB|A60.02|ICD10CM|Herpesviral infection of other male genital organs|Herpesviral infection of other male genital organs +C2893409|T047|PT|A60.02|ICD10CM|Herpesviral infection of other male genital organs|Herpesviral infection of other male genital organs +C2893410|T047|AB|A60.03|ICD10CM|Herpesviral cervicitis|Herpesviral cervicitis +C2893410|T047|PT|A60.03|ICD10CM|Herpesviral cervicitis|Herpesviral cervicitis +C2893411|T047|ET|A60.04|ICD10CM|Herpesviral [herpes simplex] ulceration|Herpesviral [herpes simplex] ulceration +C2893412|T047|ET|A60.04|ICD10CM|Herpesviral [herpes simplex] vaginitis|Herpesviral [herpes simplex] vaginitis +C2893413|T047|ET|A60.04|ICD10CM|Herpesviral [herpes simplex] vulvitis|Herpesviral [herpes simplex] vulvitis +C2893414|T047|AB|A60.04|ICD10CM|Herpesviral vulvovaginitis|Herpesviral vulvovaginitis +C2893414|T047|PT|A60.04|ICD10CM|Herpesviral vulvovaginitis|Herpesviral vulvovaginitis +C2893415|T047|AB|A60.09|ICD10CM|Herpesviral infection of other urogenital tract|Herpesviral infection of other urogenital tract +C2893415|T047|PT|A60.09|ICD10CM|Herpesviral infection of other urogenital tract|Herpesviral infection of other urogenital tract +C0348979|T047|PT|A60.1|ICD10CM|Herpesviral infection of perianal skin and rectum|Herpesviral infection of perianal skin and rectum +C0348979|T047|AB|A60.1|ICD10CM|Herpesviral infection of perianal skin and rectum|Herpesviral infection of perianal skin and rectum +C0348979|T047|PT|A60.1|ICD10|Herpesviral infection of perianal skin and rectum|Herpesviral infection of perianal skin and rectum +C0494060|T047|PT|A60.9|ICD10|Anogenital herpesviral infection, unspecified|Anogenital herpesviral infection, unspecified +C0494060|T047|PT|A60.9|ICD10CM|Anogenital herpesviral infection, unspecified|Anogenital herpesviral infection, unspecified +C0494060|T047|AB|A60.9|ICD10CM|Anogenital herpesviral infection, unspecified|Anogenital herpesviral infection, unspecified +C0494062|T047|AB|A63|ICD10CM|Oth predominantly sexually transmitted diseases, NEC|Oth predominantly sexually transmitted diseases, NEC +C0494062|T047|HT|A63|ICD10CM|Other predominantly sexually transmitted diseases, not elsewhere classified|Other predominantly sexually transmitted diseases, not elsewhere classified +C0494062|T047|HT|A63|ICD10|Other predominantly sexually transmitted diseases, not elsewhere classified|Other predominantly sexually transmitted diseases, not elsewhere classified +C0009663|T047|PT|A63.0|ICD10|Anogenital (venereal) warts|Anogenital (venereal) warts +C0009663|T047|PT|A63.0|ICD10CM|Anogenital (venereal) warts|Anogenital (venereal) warts +C0009663|T047|AB|A63.0|ICD10CM|Anogenital (venereal) warts|Anogenital (venereal) warts +C2893416|T047|ET|A63.0|ICD10CM|Anogenital warts due to (human) papillomavirus [HPV]|Anogenital warts due to (human) papillomavirus [HPV] +C0009663|T047|ET|A63.0|ICD10CM|Condyloma acuminatum|Condyloma acuminatum +C0348156|T047|PT|A63.8|ICD10|Other specified predominantly sexually transmitted diseases|Other specified predominantly sexually transmitted diseases +C0348156|T047|PT|A63.8|ICD10CM|Other specified predominantly sexually transmitted diseases|Other specified predominantly sexually transmitted diseases +C0348156|T047|AB|A63.8|ICD10CM|Other specified predominantly sexually transmitted diseases|Other specified predominantly sexually transmitted diseases +C0036916|T047|PT|A64|ICD10CM|Unspecified sexually transmitted disease|Unspecified sexually transmitted disease +C0036916|T047|AB|A64|ICD10CM|Unspecified sexually transmitted disease|Unspecified sexually transmitted disease +C0036916|T047|PT|A64|ICD10|Unspecified sexually transmitted disease|Unspecified sexually transmitted disease +C3537179|T047|ET|A65|ICD10CM|Bejel|Bejel +C3537179|T047|ET|A65|ICD10CM|Endemic syphilis|Endemic syphilis +C3537179|T047|ET|A65|ICD10CM|Njovera|Njovera +C3537179|T047|PT|A65|ICD10CM|Nonvenereal syphilis|Nonvenereal syphilis +C3537179|T047|AB|A65|ICD10CM|Nonvenereal syphilis|Nonvenereal syphilis +C3537179|T047|PT|A65|ICD10|Nonvenereal syphilis|Nonvenereal syphilis +C0178244|T047|HT|A65-A69|ICD10CM|Other spirochetal diseases (A65-A69)|Other spirochetal diseases (A65-A69) +C0178244|T047|HT|A65-A69.9|ICD10|Other spirochaetal diseases|Other spirochaetal diseases +C0178244|T047|HT|A65-A69.9|ICD10AE|Other spirochetal diseases|Other spirochetal diseases +C0043388|T047|ET|A66|ICD10CM|bouba|bouba +C0043388|T047|ET|A66|ICD10CM|frambesia (tropica)|frambesia (tropica) +C0043388|T047|ET|A66|ICD10CM|pian|pian +C0043388|T047|HT|A66|ICD10CM|Yaws|Yaws +C0043388|T047|AB|A66|ICD10CM|Yaws|Yaws +C0043388|T047|HT|A66|ICD10|Yaws|Yaws +C0275990|T047|ET|A66.0|ICD10CM|Chancre of yaws|Chancre of yaws +C0275990|T047|ET|A66.0|ICD10CM|Frambesia, initial or primary|Frambesia, initial or primary +C0275990|T047|ET|A66.0|ICD10CM|Initial frambesial ulcer|Initial frambesial ulcer +C0275990|T047|PT|A66.0|ICD10CM|Initial lesions of yaws|Initial lesions of yaws +C0275990|T047|AB|A66.0|ICD10CM|Initial lesions of yaws|Initial lesions of yaws +C0275990|T047|PT|A66.0|ICD10|Initial lesions of yaws|Initial lesions of yaws +C0275990|T047|ET|A66.0|ICD10CM|Mother yaw|Mother yaw +C0275995|T047|ET|A66.1|ICD10CM|Frambesioma|Frambesioma +C0153234|T047|PT|A66.1|ICD10CM|Multiple papillomata and wet crab yaws|Multiple papillomata and wet crab yaws +C0153234|T047|AB|A66.1|ICD10CM|Multiple papillomata and wet crab yaws|Multiple papillomata and wet crab yaws +C0153234|T047|PT|A66.1|ICD10|Multiple papillomata and wet crab yaws|Multiple papillomata and wet crab yaws +C0275995|T047|ET|A66.1|ICD10CM|Pianoma|Pianoma +C0864783|T047|ET|A66.1|ICD10CM|Plantar or palmar papilloma of yaws|Plantar or palmar papilloma of yaws +C0276000|T047|ET|A66.2|ICD10CM|Cutaneous yaws, less than five years after infection|Cutaneous yaws, less than five years after infection +C2893417|T047|ET|A66.2|ICD10CM|Early yaws (cutaneous)(macular)(maculopapular)(micropapular)(papular)|Early yaws (cutaneous)(macular)(maculopapular)(micropapular)(papular) +C0275999|T047|ET|A66.2|ICD10CM|Frambeside of early yaws|Frambeside of early yaws +C0153235|T047|PT|A66.2|ICD10|Other early skin lesions of yaws|Other early skin lesions of yaws +C0153235|T047|PT|A66.2|ICD10CM|Other early skin lesions of yaws|Other early skin lesions of yaws +C0153235|T047|AB|A66.2|ICD10CM|Other early skin lesions of yaws|Other early skin lesions of yaws +C0276002|T047|ET|A66.3|ICD10CM|Ghoul hand|Ghoul hand +C0276001|T047|PT|A66.3|ICD10CM|Hyperkeratosis of yaws|Hyperkeratosis of yaws +C0276001|T047|AB|A66.3|ICD10CM|Hyperkeratosis of yaws|Hyperkeratosis of yaws +C0276001|T047|PT|A66.3|ICD10|Hyperkeratosis of yaws|Hyperkeratosis of yaws +C2893418|T047|ET|A66.3|ICD10CM|Hyperkeratosis, palmar or plantar (early) (late) due to yaws|Hyperkeratosis, palmar or plantar (early) (late) due to yaws +C0276003|T047|ET|A66.3|ICD10CM|Worm-eaten soles|Worm-eaten soles +C0276007|T047|PT|A66.4|ICD10CM|Gummata and ulcers of yaws|Gummata and ulcers of yaws +C0276007|T047|AB|A66.4|ICD10CM|Gummata and ulcers of yaws|Gummata and ulcers of yaws +C0276007|T047|PT|A66.4|ICD10|Gummata and ulcers of yaws|Gummata and ulcers of yaws +C0276007|T047|ET|A66.4|ICD10CM|Gummatous frambeside|Gummatous frambeside +C0864792|T047|ET|A66.4|ICD10CM|Nodular late yaws (ulcerated)|Nodular late yaws (ulcerated) +C0276009|T047|PT|A66.5|ICD10CM|Gangosa|Gangosa +C0276009|T047|AB|A66.5|ICD10CM|Gangosa|Gangosa +C0276009|T047|PT|A66.5|ICD10|Gangosa|Gangosa +C0276009|T047|ET|A66.5|ICD10CM|Rhinopharyngitis mutilans|Rhinopharyngitis mutilans +C0343834|T047|PT|A66.6|ICD10CM|Bone and joint lesions of yaws|Bone and joint lesions of yaws +C0343834|T047|AB|A66.6|ICD10CM|Bone and joint lesions of yaws|Bone and joint lesions of yaws +C0343834|T047|PT|A66.6|ICD10|Bone and joint lesions of yaws|Bone and joint lesions of yaws +C0276020|T047|ET|A66.6|ICD10CM|Yaws ganglion|Yaws ganglion +C0276012|T047|ET|A66.6|ICD10CM|Yaws goundou|Yaws goundou +C0276013|T047|ET|A66.6|ICD10CM|Yaws gumma, bone|Yaws gumma, bone +C0864795|T047|ET|A66.6|ICD10CM|Yaws gummatous osteitis or periostitis|Yaws gummatous osteitis or periostitis +C0276021|T047|ET|A66.6|ICD10CM|Yaws hydrarthrosis|Yaws hydrarthrosis +C0276016|T047|ET|A66.6|ICD10CM|Yaws osteitis|Yaws osteitis +C0276018|T047|ET|A66.6|ICD10CM|Yaws periostitis (hypertrophic)|Yaws periostitis (hypertrophic) +C0276022|T047|ET|A66.7|ICD10CM|Juxta-articular nodules of yaws|Juxta-articular nodules of yaws +C0276010|T047|ET|A66.7|ICD10CM|Mucosal yaws|Mucosal yaws +C0153239|T047|PT|A66.7|ICD10CM|Other manifestations of yaws|Other manifestations of yaws +C0153239|T047|AB|A66.7|ICD10CM|Other manifestations of yaws|Other manifestations of yaws +C0153239|T047|PT|A66.7|ICD10|Other manifestations of yaws|Other manifestations of yaws +C0153240|T047|PT|A66.8|ICD10|Latent yaws|Latent yaws +C0153240|T047|PT|A66.8|ICD10CM|Latent yaws|Latent yaws +C0153240|T047|AB|A66.8|ICD10CM|Latent yaws|Latent yaws +C0153240|T047|ET|A66.8|ICD10CM|Yaws without clinical manifestations, with positive serology|Yaws without clinical manifestations, with positive serology +C0043388|T047|PT|A66.9|ICD10CM|Yaws, unspecified|Yaws, unspecified +C0043388|T047|AB|A66.9|ICD10CM|Yaws, unspecified|Yaws, unspecified +C0043388|T047|PT|A66.9|ICD10|Yaws, unspecified|Yaws, unspecified +C0031946|T047|HT|A67|ICD10|Pinta [carate]|Pinta [carate] +C0031946|T047|AB|A67|ICD10CM|Pinta [carate]|Pinta [carate] +C0031946|T047|HT|A67|ICD10CM|Pinta [carate]|Pinta [carate] +C0153241|T047|ET|A67.0|ICD10CM|Chancre (primary) of pinta|Chancre (primary) of pinta +C0153241|T047|ET|A67.0|ICD10CM|Papule (primary) of pinta|Papule (primary) of pinta +C0153241|T047|PT|A67.0|ICD10CM|Primary lesions of pinta|Primary lesions of pinta +C0153241|T047|AB|A67.0|ICD10CM|Primary lesions of pinta|Primary lesions of pinta +C0153241|T047|PT|A67.0|ICD10|Primary lesions of pinta|Primary lesions of pinta +C0275747|T047|ET|A67.1|ICD10CM|Erythematous plaques of pinta|Erythematous plaques of pinta +C0275748|T047|ET|A67.1|ICD10CM|Hyperchromic lesions of pinta|Hyperchromic lesions of pinta +C0275749|T047|ET|A67.1|ICD10CM|Hyperkeratosis of pinta|Hyperkeratosis of pinta +C0153242|T047|PT|A67.1|ICD10|Intermediate lesions of pinta|Intermediate lesions of pinta +C0153242|T047|PT|A67.1|ICD10CM|Intermediate lesions of pinta|Intermediate lesions of pinta +C0153242|T047|AB|A67.1|ICD10CM|Intermediate lesions of pinta|Intermediate lesions of pinta +C0275746|T047|ET|A67.1|ICD10CM|Pintids|Pintids +C0343836|T047|ET|A67.2|ICD10CM|Achromic skin lesions of pinta|Achromic skin lesions of pinta +C0343838|T047|ET|A67.2|ICD10CM|Cicatricial skin lesions of pinta|Cicatricial skin lesions of pinta +C0343837|T047|ET|A67.2|ICD10CM|Dyschromic skin lesions of pinta|Dyschromic skin lesions of pinta +C0153243|T047|PT|A67.2|ICD10CM|Late lesions of pinta|Late lesions of pinta +C0153243|T047|AB|A67.2|ICD10CM|Late lesions of pinta|Late lesions of pinta +C0153243|T047|PT|A67.2|ICD10|Late lesions of pinta|Late lesions of pinta +C2893419|T047|ET|A67.3|ICD10CM|Achromic with hyperchromic skin lesions of pinta [carate]|Achromic with hyperchromic skin lesions of pinta [carate] +C0153244|T047|PT|A67.3|ICD10|Mixed lesions of pinta|Mixed lesions of pinta +C0153244|T047|PT|A67.3|ICD10CM|Mixed lesions of pinta|Mixed lesions of pinta +C0153244|T047|AB|A67.3|ICD10CM|Mixed lesions of pinta|Mixed lesions of pinta +C0031946|T047|PT|A67.9|ICD10CM|Pinta, unspecified|Pinta, unspecified +C0031946|T047|AB|A67.9|ICD10CM|Pinta, unspecified|Pinta, unspecified +C0031946|T047|PT|A67.9|ICD10|Pinta, unspecified|Pinta, unspecified +C3714772|T184|ET|A68|ICD10CM|recurrent fever|recurrent fever +C0035021|T047|HT|A68|ICD10|Relapsing fevers|Relapsing fevers +C0035021|T047|AB|A68|ICD10CM|Relapsing fevers|Relapsing fevers +C0035021|T047|HT|A68|ICD10CM|Relapsing fevers|Relapsing fevers +C0152061|T047|PT|A68.0|ICD10CM|Louse-borne relapsing fever|Louse-borne relapsing fever +C0152061|T047|AB|A68.0|ICD10CM|Louse-borne relapsing fever|Louse-borne relapsing fever +C0152061|T047|PT|A68.0|ICD10|Louse-borne relapsing fever|Louse-borne relapsing fever +C0152061|T047|ET|A68.0|ICD10CM|Relapsing fever due to Borrelia recurrentis|Relapsing fever due to Borrelia recurrentis +C2893420|T047|ET|A68.1|ICD10CM|Relapsing fever due to any Borrelia species other than Borrelia recurrentis|Relapsing fever due to any Borrelia species other than Borrelia recurrentis +C0035022|T047|PT|A68.1|ICD10CM|Tick-borne relapsing fever|Tick-borne relapsing fever +C0035022|T047|AB|A68.1|ICD10CM|Tick-borne relapsing fever|Tick-borne relapsing fever +C0035022|T047|PT|A68.1|ICD10|Tick-borne relapsing fever|Tick-borne relapsing fever +C0035021|T047|PT|A68.9|ICD10|Relapsing fever, unspecified|Relapsing fever, unspecified +C0035021|T047|PT|A68.9|ICD10CM|Relapsing fever, unspecified|Relapsing fever, unspecified +C0035021|T047|AB|A68.9|ICD10CM|Relapsing fever, unspecified|Relapsing fever, unspecified +C0153245|T047|HT|A69|ICD10|Other spirochaetal infections|Other spirochaetal infections +C0153245|T047|AB|A69|ICD10CM|Other spirochetal infections|Other spirochetal infections +C0153245|T047|HT|A69|ICD10CM|Other spirochetal infections|Other spirochetal infections +C0153245|T047|HT|A69|ICD10AE|Other spirochetal infections|Other spirochetal infections +C0028271|T047|ET|A69.0|ICD10CM|Cancrum oris|Cancrum oris +C1397918|T047|ET|A69.0|ICD10CM|Fusospirochetal gangrene|Fusospirochetal gangrene +C0392103|T047|PT|A69.0|ICD10|Necrotizing ulcerative stomatitis|Necrotizing ulcerative stomatitis +C0392103|T047|PT|A69.0|ICD10CM|Necrotizing ulcerative stomatitis|Necrotizing ulcerative stomatitis +C0392103|T047|AB|A69.0|ICD10CM|Necrotizing ulcerative stomatitis|Necrotizing ulcerative stomatitis +C0028271|T047|ET|A69.0|ICD10CM|Noma|Noma +C2900437|T047|ET|A69.0|ICD10CM|Stomatitis gangrenosa|Stomatitis gangrenosa +C1318559|T047|ET|A69.1|ICD10CM|Fusospirochetal pharyngitis|Fusospirochetal pharyngitis +C0017575|T047|ET|A69.1|ICD10CM|Necrotizing ulcerative (acute) gingivitis|Necrotizing ulcerative (acute) gingivitis +C0017575|T047|ET|A69.1|ICD10CM|Necrotizing ulcerative (acute) gingivostomatitis|Necrotizing ulcerative (acute) gingivostomatitis +C0348160|T047|PT|A69.1|ICD10CM|Other Vincent's infections|Other Vincent's infections +C0348160|T047|AB|A69.1|ICD10CM|Other Vincent's infections|Other Vincent's infections +C0348160|T047|PT|A69.1|ICD10|Other Vincent's infections|Other Vincent's infections +C0017575|T047|ET|A69.1|ICD10CM|Spirochetal stomatitis|Spirochetal stomatitis +C0017575|T047|ET|A69.1|ICD10CM|Trench mouth|Trench mouth +C1527368|T047|ET|A69.1|ICD10CM|Vincent's angina|Vincent's angina +C0017575|T047|ET|A69.1|ICD10CM|Vincent's gingivitis|Vincent's gingivitis +C2900438|T047|ET|A69.2|ICD10CM|Erythema chronicum migrans due to Borrelia burgdorferi|Erythema chronicum migrans due to Borrelia burgdorferi +C0024198|T047|HT|A69.2|ICD10CM|Lyme disease|Lyme disease +C0024198|T047|AB|A69.2|ICD10CM|Lyme disease|Lyme disease +C0024198|T047|PT|A69.2|ICD10|Lyme disease|Lyme disease +C0024198|T047|AB|A69.20|ICD10CM|Lyme disease, unspecified|Lyme disease, unspecified +C0024198|T047|PT|A69.20|ICD10CM|Lyme disease, unspecified|Lyme disease, unspecified +C2900439|T047|PT|A69.21|ICD10CM|Meningitis due to Lyme disease|Meningitis due to Lyme disease +C2900439|T047|AB|A69.21|ICD10CM|Meningitis due to Lyme disease|Meningitis due to Lyme disease +C0235024|T047|ET|A69.22|ICD10CM|Cranial neuritis|Cranial neuritis +C0025309|T047|ET|A69.22|ICD10CM|Meningoencephalitis|Meningoencephalitis +C2900440|T047|AB|A69.22|ICD10CM|Other neurologic disorders in Lyme disease|Other neurologic disorders in Lyme disease +C2900440|T047|PT|A69.22|ICD10CM|Other neurologic disorders in Lyme disease|Other neurologic disorders in Lyme disease +C0152025|T047|ET|A69.22|ICD10CM|Polyneuropathy|Polyneuropathy +C2900441|T047|AB|A69.23|ICD10CM|Arthritis due to Lyme disease|Arthritis due to Lyme disease +C2900441|T047|PT|A69.23|ICD10CM|Arthritis due to Lyme disease|Arthritis due to Lyme disease +C2900442|T047|ET|A69.29|ICD10CM|Myopericarditis due to Lyme disease|Myopericarditis due to Lyme disease +C2900443|T047|AB|A69.29|ICD10CM|Other conditions associated with Lyme disease|Other conditions associated with Lyme disease +C2900443|T047|PT|A69.29|ICD10CM|Other conditions associated with Lyme disease|Other conditions associated with Lyme disease +C0029830|T047|PT|A69.8|ICD10|Other specified spirochaetal infections|Other specified spirochaetal infections +C0029830|T047|PT|A69.8|ICD10CM|Other specified spirochetal infections|Other specified spirochetal infections +C0029830|T047|AB|A69.8|ICD10CM|Other specified spirochetal infections|Other specified spirochetal infections +C0029830|T047|PT|A69.8|ICD10AE|Other specified spirochetal infections|Other specified spirochetal infections +C0037974|T047|PT|A69.9|ICD10|Spirochaetal infection, unspecified|Spirochaetal infection, unspecified +C0037974|T047|PT|A69.9|ICD10CM|Spirochetal infection, unspecified|Spirochetal infection, unspecified +C0037974|T047|AB|A69.9|ICD10CM|Spirochetal infection, unspecified|Spirochetal infection, unspecified +C0037974|T047|PT|A69.9|ICD10AE|Spirochetal infection, unspecified|Spirochetal infection, unspecified +C0276108|T047|PT|A70|ICD10|Chlamydia psittaci infection|Chlamydia psittaci infection +C0276108|T047|AB|A70|ICD10CM|Chlamydia psittaci infections|Chlamydia psittaci infections +C0276108|T047|PT|A70|ICD10CM|Chlamydia psittaci infections|Chlamydia psittaci infections +C0029291|T047|ET|A70|ICD10CM|Ornithosis|Ornithosis +C0029291|T047|ET|A70|ICD10CM|Parrot fever|Parrot fever +C0029291|T047|ET|A70|ICD10CM|Psittacosis|Psittacosis +C0348161|T047|HT|A70-A74|ICD10CM|Other diseases caused by chlamydiae (A70-A74)|Other diseases caused by chlamydiae (A70-A74) +C0348161|T047|HT|A70-A74.9|ICD10|Other diseases caused by chlamydiae|Other diseases caused by chlamydiae +C0040592|T047|HT|A71|ICD10|Trachoma|Trachoma +C0040592|T047|HT|A71|ICD10CM|Trachoma|Trachoma +C0040592|T047|AB|A71|ICD10CM|Trachoma|Trachoma +C0153107|T047|PT|A71.0|ICD10CM|Initial stage of trachoma|Initial stage of trachoma +C0153107|T047|AB|A71.0|ICD10CM|Initial stage of trachoma|Initial stage of trachoma +C0153107|T047|PT|A71.0|ICD10|Initial stage of trachoma|Initial stage of trachoma +C0153107|T047|ET|A71.0|ICD10CM|Trachoma dubium|Trachoma dubium +C0153108|T047|PT|A71.1|ICD10CM|Active stage of trachoma|Active stage of trachoma +C0153108|T047|AB|A71.1|ICD10CM|Active stage of trachoma|Active stage of trachoma +C0153108|T047|PT|A71.1|ICD10|Active stage of trachoma|Active stage of trachoma +C0276102|T047|ET|A71.1|ICD10CM|Granular conjunctivitis (trachomatous)|Granular conjunctivitis (trachomatous) +C0276103|T047|ET|A71.1|ICD10CM|Trachomatous follicular conjunctivitis|Trachomatous follicular conjunctivitis +C0276104|T047|ET|A71.1|ICD10CM|Trachomatous pannus|Trachomatous pannus +C0040592|T047|PT|A71.9|ICD10|Trachoma, unspecified|Trachoma, unspecified +C0040592|T047|PT|A71.9|ICD10CM|Trachoma, unspecified|Trachoma, unspecified +C0040592|T047|AB|A71.9|ICD10CM|Trachoma, unspecified|Trachoma, unspecified +C0348161|T047|HT|A74|ICD10|Other diseases caused by chlamydiae|Other diseases caused by chlamydiae +C0348161|T047|AB|A74|ICD10CM|Other diseases caused by chlamydiae|Other diseases caused by chlamydiae +C0348161|T047|HT|A74|ICD10CM|Other diseases caused by chlamydiae|Other diseases caused by chlamydiae +C0009770|T047|PT|A74.0|ICD10CM|Chlamydial conjunctivitis|Chlamydial conjunctivitis +C0009770|T047|AB|A74.0|ICD10CM|Chlamydial conjunctivitis|Chlamydial conjunctivitis +C0009770|T047|PT|A74.0|ICD10|Chlamydial conjunctivitis|Chlamydial conjunctivitis +C0009770|T047|ET|A74.0|ICD10CM|Paratrachoma|Paratrachoma +C0348162|T047|HT|A74.8|ICD10CM|Other chlamydial diseases|Other chlamydial diseases +C0348162|T047|AB|A74.8|ICD10CM|Other chlamydial diseases|Other chlamydial diseases +C0348162|T047|PT|A74.8|ICD10|Other chlamydial diseases|Other chlamydial diseases +C0451715|T047|PT|A74.81|ICD10CM|Chlamydial peritonitis|Chlamydial peritonitis +C0451715|T047|AB|A74.81|ICD10CM|Chlamydial peritonitis|Chlamydial peritonitis +C0348162|T047|PT|A74.89|ICD10CM|Other chlamydial diseases|Other chlamydial diseases +C0348162|T047|AB|A74.89|ICD10CM|Other chlamydial diseases|Other chlamydial diseases +C0008149|T047|PT|A74.9|ICD10|Chlamydial infection, unspecified|Chlamydial infection, unspecified +C0008149|T047|PT|A74.9|ICD10CM|Chlamydial infection, unspecified|Chlamydial infection, unspecified +C0008149|T047|AB|A74.9|ICD10CM|Chlamydial infection, unspecified|Chlamydial infection, unspecified +C0276108|T047|ET|A74.9|ICD10CM|Chlamydiosis NOS|Chlamydiosis NOS +C0041471|T047|HT|A75|ICD10|Typhus fever|Typhus fever +C0041471|T047|AB|A75|ICD10CM|Typhus fever|Typhus fever +C0041471|T047|HT|A75|ICD10CM|Typhus fever|Typhus fever +C0035585|T047|HT|A75-A79|ICD10CM|Rickettsioses (A75-A79)|Rickettsioses (A75-A79) +C0035585|T047|HT|A75-A79.9|ICD10|Rickettsioses|Rickettsioses +C0041473|T047|ET|A75.0|ICD10CM|Classical typhus (fever)|Classical typhus (fever) +C0041473|T047|ET|A75.0|ICD10CM|Epidemic (louse-borne) typhus|Epidemic (louse-borne) typhus +C0041473|T047|AB|A75.0|ICD10CM|Epidemic louse-borne typhus fever d/t Rickettsia prowazekii|Epidemic louse-borne typhus fever d/t Rickettsia prowazekii +C0041473|T047|PT|A75.0|ICD10CM|Epidemic louse-borne typhus fever due to Rickettsia prowazekii|Epidemic louse-borne typhus fever due to Rickettsia prowazekii +C0041473|T047|PT|A75.0|ICD10|Epidemic louse-borne typhus fever due to Rickettsia prowazekii|Epidemic louse-borne typhus fever due to Rickettsia prowazekii +C0006181|T047|ET|A75.1|ICD10CM|Brill-Zinsser disease|Brill-Zinsser disease +C0006181|T047|PT|A75.1|ICD10CM|Recrudescent typhus [Brill's disease]|Recrudescent typhus [Brill's disease] +C0006181|T047|AB|A75.1|ICD10CM|Recrudescent typhus [Brill's disease]|Recrudescent typhus [Brill's disease] +C0006181|T047|PT|A75.1|ICD10|Recrudescent typhus [Brill's disease]|Recrudescent typhus [Brill's disease] +C2900444|T047|ET|A75.2|ICD10CM|Murine (flea-borne) typhus|Murine (flea-borne) typhus +C0041472|T047|PT|A75.2|ICD10|Typhus fever due to Rickettsia typhi|Typhus fever due to Rickettsia typhi +C0041472|T047|PT|A75.2|ICD10CM|Typhus fever due to Rickettsia typhi|Typhus fever due to Rickettsia typhi +C0041472|T047|AB|A75.2|ICD10CM|Typhus fever due to Rickettsia typhi|Typhus fever due to Rickettsia typhi +C0036472|T047|ET|A75.3|ICD10CM|Scrub (mite-borne) typhus|Scrub (mite-borne) typhus +C0036472|T047|ET|A75.3|ICD10CM|Tsutsugamushi fever|Tsutsugamushi fever +C0036472|T047|PT|A75.3|ICD10CM|Typhus fever due to Rickettsia tsutsugamushi|Typhus fever due to Rickettsia tsutsugamushi +C0036472|T047|AB|A75.3|ICD10CM|Typhus fever due to Rickettsia tsutsugamushi|Typhus fever due to Rickettsia tsutsugamushi +C0036472|T047|PT|A75.3|ICD10|Typhus fever due to Rickettsia tsutsugamushi|Typhus fever due to Rickettsia tsutsugamushi +C0041471|T047|ET|A75.9|ICD10CM|Typhus (fever) NOS|Typhus (fever) NOS +C0041471|T047|AB|A75.9|ICD10CM|Typhus fever, unspecified|Typhus fever, unspecified +C0041471|T047|PT|A75.9|ICD10CM|Typhus fever, unspecified|Typhus fever, unspecified +C0041471|T047|PT|A75.9|ICD10|Typhus fever, unspecified|Typhus fever, unspecified +C0038041|T047|HT|A77|ICD10|Spotted fever [tick-borne rickettsioses]|Spotted fever [tick-borne rickettsioses] +C0038041|T047|AB|A77|ICD10CM|Spotted fever [tick-borne rickettsioses]|Spotted fever [tick-borne rickettsioses] +C0038041|T047|HT|A77|ICD10CM|Spotted fever [tick-borne rickettsioses]|Spotted fever [tick-borne rickettsioses] +C0035793|T047|ET|A77.0|ICD10CM|Rocky Mountain spotted fever|Rocky Mountain spotted fever +C0035793|T047|ET|A77.0|ICD10CM|Sao Paulo fever|Sao Paulo fever +C0035793|T047|PT|A77.0|ICD10CM|Spotted fever due to Rickettsia rickettsii|Spotted fever due to Rickettsia rickettsii +C0035793|T047|AB|A77.0|ICD10CM|Spotted fever due to Rickettsia rickettsii|Spotted fever due to Rickettsia rickettsii +C0035793|T047|PT|A77.0|ICD10|Spotted fever due to Rickettsia rickettsii|Spotted fever due to Rickettsia rickettsii +C1320317|T047|ET|A77.1|ICD10CM|African tick typhus|African tick typhus +C0006060|T047|ET|A77.1|ICD10CM|Boutonneuse fever|Boutonneuse fever +C0343768|T047|ET|A77.1|ICD10CM|India tick typhus|India tick typhus +C1320317|T047|ET|A77.1|ICD10CM|Kenya tick typhus|Kenya tick typhus +C0006060|T047|ET|A77.1|ICD10CM|Marseilles fever|Marseilles fever +C0006060|T047|ET|A77.1|ICD10CM|Mediterranean tick fever|Mediterranean tick fever +C0006060|T047|PT|A77.1|ICD10CM|Spotted fever due to Rickettsia conorii|Spotted fever due to Rickettsia conorii +C0006060|T047|AB|A77.1|ICD10CM|Spotted fever due to Rickettsia conorii|Spotted fever due to Rickettsia conorii +C0006060|T047|PT|A77.1|ICD10|Spotted fever due to Rickettsia conorii|Spotted fever due to Rickettsia conorii +C0549160|T047|ET|A77.2|ICD10CM|North Asian tick fever|North Asian tick fever +C0549160|T047|ET|A77.2|ICD10CM|Siberian tick typhus|Siberian tick typhus +C0549160|T047|PT|A77.2|ICD10CM|Spotted fever due to Rickettsia siberica|Spotted fever due to Rickettsia siberica +C0549160|T047|AB|A77.2|ICD10CM|Spotted fever due to Rickettsia siberica|Spotted fever due to Rickettsia siberica +C0549160|T047|PT|A77.2|ICD10|Spotted fever due to Rickettsia sibirica|Spotted fever due to Rickettsia sibirica +C2979888|T047|ET|A77.3|ICD10CM|Queensland tick typhus|Queensland tick typhus +C2979888|T047|PT|A77.3|ICD10CM|Spotted fever due to Rickettsia australis|Spotted fever due to Rickettsia australis +C2979888|T047|AB|A77.3|ICD10CM|Spotted fever due to Rickettsia australis|Spotted fever due to Rickettsia australis +C2979888|T047|PT|A77.3|ICD10|Spotted fever due to Rickettsia australis|Spotted fever due to Rickettsia australis +C0085399|T047|HT|A77.4|ICD10CM|Ehrlichiosis|Ehrlichiosis +C0085399|T047|AB|A77.4|ICD10CM|Ehrlichiosis|Ehrlichiosis +C0085399|T047|AB|A77.40|ICD10CM|Ehrlichiosis, unspecified|Ehrlichiosis, unspecified +C0085399|T047|PT|A77.40|ICD10CM|Ehrlichiosis, unspecified|Ehrlichiosis, unspecified +C1282983|T047|AB|A77.41|ICD10CM|Ehrlichiosis chafeensis [E. chafeensis]|Ehrlichiosis chafeensis [E. chafeensis] +C1282983|T047|PT|A77.41|ICD10CM|Ehrlichiosis chafeensis [E. chafeensis]|Ehrlichiosis chafeensis [E. chafeensis] +C0878688|T047|AB|A77.49|ICD10CM|Other ehrlichiosis|Other ehrlichiosis +C0878688|T047|PT|A77.49|ICD10CM|Other ehrlichiosis|Other ehrlichiosis +C0348164|T047|PT|A77.8|ICD10CM|Other spotted fevers|Other spotted fevers +C0348164|T047|AB|A77.8|ICD10CM|Other spotted fevers|Other spotted fevers +C0348164|T047|PT|A77.8|ICD10|Other spotted fevers|Other spotted fevers +C0038041|T047|PT|A77.9|ICD10|Spotted fever, unspecified|Spotted fever, unspecified +C0038041|T047|PT|A77.9|ICD10CM|Spotted fever, unspecified|Spotted fever, unspecified +C0038041|T047|AB|A77.9|ICD10CM|Spotted fever, unspecified|Spotted fever, unspecified +C0153117|T047|ET|A77.9|ICD10CM|Tick-borne typhus NOS|Tick-borne typhus NOS +C0034362|T047|ET|A78|ICD10CM|Infection due to Coxiella burnetii|Infection due to Coxiella burnetii +C0034362|T047|ET|A78|ICD10CM|Nine Mile fever|Nine Mile fever +C0034362|T047|PT|A78|ICD10CM|Q fever|Q fever +C0034362|T047|AB|A78|ICD10CM|Q fever|Q fever +C0034362|T047|PT|A78|ICD10|Q fever|Q fever +C1401747|T047|ET|A78|ICD10CM|Quadrilateral fever|Quadrilateral fever +C0153119|T047|HT|A79|ICD10|Other rickettsioses|Other rickettsioses +C0153119|T047|HT|A79|ICD10CM|Other rickettsioses|Other rickettsioses +C0153119|T047|AB|A79|ICD10CM|Other rickettsioses|Other rickettsioses +C0040830|T047|ET|A79.0|ICD10CM|Quintan fever|Quintan fever +C0040830|T047|PT|A79.0|ICD10CM|Trench fever|Trench fever +C0040830|T047|AB|A79.0|ICD10CM|Trench fever|Trench fever +C0040830|T047|PT|A79.0|ICD10|Trench fever|Trench fever +C0040830|T047|ET|A79.0|ICD10CM|Wolhynian fever|Wolhynian fever +C0035597|T047|ET|A79.1|ICD10CM|Kew Garden fever|Kew Garden fever +C0035597|T047|PT|A79.1|ICD10CM|Rickettsialpox due to Rickettsia akari|Rickettsialpox due to Rickettsia akari +C0035597|T047|AB|A79.1|ICD10CM|Rickettsialpox due to Rickettsia akari|Rickettsialpox due to Rickettsia akari +C0035597|T047|PT|A79.1|ICD10|Rickettsialpox due to Rickettsia akari|Rickettsialpox due to Rickettsia akari +C0035597|T047|ET|A79.1|ICD10CM|Vesicular rickettsiosis|Vesicular rickettsiosis +C0153120|T047|HT|A79.8|ICD10CM|Other specified rickettsioses|Other specified rickettsioses +C0153120|T047|AB|A79.8|ICD10CM|Other specified rickettsioses|Other specified rickettsioses +C0153120|T047|PT|A79.8|ICD10|Other specified rickettsioses|Other specified rickettsioses +C2900445|T047|AB|A79.81|ICD10CM|Rickettsiosis due to Ehrlichia sennetsu|Rickettsiosis due to Ehrlichia sennetsu +C2900445|T047|PT|A79.81|ICD10CM|Rickettsiosis due to Ehrlichia sennetsu|Rickettsiosis due to Ehrlichia sennetsu +C0153120|T047|PT|A79.89|ICD10CM|Other specified rickettsioses|Other specified rickettsioses +C0153120|T047|AB|A79.89|ICD10CM|Other specified rickettsioses|Other specified rickettsioses +C0035585|T047|ET|A79.9|ICD10CM|Rickettsial infection NOS|Rickettsial infection NOS +C0035585|T047|PT|A79.9|ICD10CM|Rickettsiosis, unspecified|Rickettsiosis, unspecified +C0035585|T047|AB|A79.9|ICD10CM|Rickettsiosis, unspecified|Rickettsiosis, unspecified +C0035585|T047|PT|A79.9|ICD10|Rickettsiosis, unspecified|Rickettsiosis, unspecified +C0032371|T047|HT|A80|ICD10|Acute poliomyelitis|Acute poliomyelitis +C0032371|T047|HT|A80|ICD10CM|Acute poliomyelitis|Acute poliomyelitis +C0032371|T047|AB|A80|ICD10CM|Acute poliomyelitis|Acute poliomyelitis +C2900446|T047|HT|A80-A89|ICD10CM|Viral and prion infections of the central nervous system (A80-A89)|Viral and prion infections of the central nervous system (A80-A89) +C0348165|T047|HT|A80-A89.9|ICD10|Viral infections of the central nervous system|Viral infections of the central nervous system +C0348777|T047|PT|A80.0|ICD10|Acute paralytic poliomyelitis, vaccine-associated|Acute paralytic poliomyelitis, vaccine-associated +C0348777|T047|PT|A80.0|ICD10CM|Acute paralytic poliomyelitis, vaccine-associated|Acute paralytic poliomyelitis, vaccine-associated +C0348777|T047|AB|A80.0|ICD10CM|Acute paralytic poliomyelitis, vaccine-associated|Acute paralytic poliomyelitis, vaccine-associated +C0348778|T047|PT|A80.1|ICD10CM|Acute paralytic poliomyelitis, wild virus, imported|Acute paralytic poliomyelitis, wild virus, imported +C0348778|T047|AB|A80.1|ICD10CM|Acute paralytic poliomyelitis, wild virus, imported|Acute paralytic poliomyelitis, wild virus, imported +C0348778|T047|PT|A80.1|ICD10|Acute paralytic poliomyelitis, wild virus, imported|Acute paralytic poliomyelitis, wild virus, imported +C0348779|T047|PT|A80.2|ICD10|Acute paralytic poliomyelitis, wild virus, indigenous|Acute paralytic poliomyelitis, wild virus, indigenous +C0348779|T047|PT|A80.2|ICD10CM|Acute paralytic poliomyelitis, wild virus, indigenous|Acute paralytic poliomyelitis, wild virus, indigenous +C0348779|T047|AB|A80.2|ICD10CM|Acute paralytic poliomyelitis, wild virus, indigenous|Acute paralytic poliomyelitis, wild virus, indigenous +C0348166|T047|HT|A80.3|ICD10CM|Acute paralytic poliomyelitis, other and unspecified|Acute paralytic poliomyelitis, other and unspecified +C0348166|T047|AB|A80.3|ICD10CM|Acute paralytic poliomyelitis, other and unspecified|Acute paralytic poliomyelitis, other and unspecified +C0348166|T047|PT|A80.3|ICD10|Acute paralytic poliomyelitis, other and unspecified|Acute paralytic poliomyelitis, other and unspecified +C0348776|T047|AB|A80.30|ICD10CM|Acute paralytic poliomyelitis, unspecified|Acute paralytic poliomyelitis, unspecified +C0348776|T047|PT|A80.30|ICD10CM|Acute paralytic poliomyelitis, unspecified|Acute paralytic poliomyelitis, unspecified +C2900447|T047|AB|A80.39|ICD10CM|Other acute paralytic poliomyelitis|Other acute paralytic poliomyelitis +C2900447|T047|PT|A80.39|ICD10CM|Other acute paralytic poliomyelitis|Other acute paralytic poliomyelitis +C0152998|T047|PT|A80.4|ICD10|Acute nonparalytic poliomyelitis|Acute nonparalytic poliomyelitis +C0152998|T047|PT|A80.4|ICD10CM|Acute nonparalytic poliomyelitis|Acute nonparalytic poliomyelitis +C0152998|T047|AB|A80.4|ICD10CM|Acute nonparalytic poliomyelitis|Acute nonparalytic poliomyelitis +C0032371|T047|PT|A80.9|ICD10CM|Acute poliomyelitis, unspecified|Acute poliomyelitis, unspecified +C0032371|T047|AB|A80.9|ICD10CM|Acute poliomyelitis, unspecified|Acute poliomyelitis, unspecified +C0032371|T047|PT|A80.9|ICD10|Acute poliomyelitis, unspecified|Acute poliomyelitis, unspecified +C0851226|T047|HT|A81|ICD10|Atypical virus infections of central nervous system|Atypical virus infections of central nervous system +C0851226|T047|AB|A81|ICD10CM|Atypical virus infections of central nervous system|Atypical virus infections of central nervous system +C0851226|T047|HT|A81|ICD10CM|Atypical virus infections of central nervous system|Atypical virus infections of central nervous system +C4290047|T047|ET|A81|ICD10CM|diseases of the central nervous system caused by prions|diseases of the central nervous system caused by prions +C0022336|T047|HT|A81.0|ICD10CM|Creutzfeldt-Jakob disease|Creutzfeldt-Jakob disease +C0022336|T047|AB|A81.0|ICD10CM|Creutzfeldt-Jakob disease|Creutzfeldt-Jakob disease +C0022336|T047|PT|A81.0|ICD10|Creutzfeldt-Jakob disease|Creutzfeldt-Jakob disease +C0022336|T047|AB|A81.00|ICD10CM|Creutzfeldt-Jakob disease, unspecified|Creutzfeldt-Jakob disease, unspecified +C0022336|T047|PT|A81.00|ICD10CM|Creutzfeldt-Jakob disease, unspecified|Creutzfeldt-Jakob disease, unspecified +C0022336|T047|ET|A81.00|ICD10CM|Jakob-Creutzfeldt disease, unspecified|Jakob-Creutzfeldt disease, unspecified +C0376329|T047|PT|A81.01|ICD10CM|Variant Creutzfeldt-Jakob disease|Variant Creutzfeldt-Jakob disease +C0376329|T047|AB|A81.01|ICD10CM|Variant Creutzfeldt-Jakob disease|Variant Creutzfeldt-Jakob disease +C0376329|T047|ET|A81.01|ICD10CM|vCJD|vCJD +C2900450|T047|ET|A81.09|ICD10CM|CJD|CJD +C0751254|T047|ET|A81.09|ICD10CM|Familial Creutzfeldt-Jakob disease|Familial Creutzfeldt-Jakob disease +C2349757|T047|ET|A81.09|ICD10CM|Iatrogenic Creutzfeldt-Jakob disease|Iatrogenic Creutzfeldt-Jakob disease +C2900450|T047|PT|A81.09|ICD10CM|Other Creutzfeldt-Jakob disease|Other Creutzfeldt-Jakob disease +C2900450|T047|AB|A81.09|ICD10CM|Other Creutzfeldt-Jakob disease|Other Creutzfeldt-Jakob disease +C1852467|T047|ET|A81.09|ICD10CM|Sporadic Creutzfeldt-Jakob disease|Sporadic Creutzfeldt-Jakob disease +C2900449|T047|ET|A81.09|ICD10CM|Subacute spongiform encephalopathy (with dementia)|Subacute spongiform encephalopathy (with dementia) +C0038522|T047|ET|A81.1|ICD10CM|Dawson's inclusion body encephalitis|Dawson's inclusion body encephalitis +C0038522|T047|AB|A81.1|ICD10CM|Subacute sclerosing panencephalitis|Subacute sclerosing panencephalitis +C0038522|T047|PT|A81.1|ICD10CM|Subacute sclerosing panencephalitis|Subacute sclerosing panencephalitis +C0038522|T047|PT|A81.1|ICD10|Subacute sclerosing panencephalitis|Subacute sclerosing panencephalitis +C2900451|T047|ET|A81.1|ICD10CM|Van Bogaert's sclerosing leukoencephalopathy|Van Bogaert's sclerosing leukoencephalopathy +C0023524|T047|ET|A81.2|ICD10CM|Multifocal leukoencephalopathy NOS|Multifocal leukoencephalopathy NOS +C0023524|T047|PT|A81.2|ICD10CM|Progressive multifocal leukoencephalopathy|Progressive multifocal leukoencephalopathy +C0023524|T047|AB|A81.2|ICD10CM|Progressive multifocal leukoencephalopathy|Progressive multifocal leukoencephalopathy +C0023524|T047|PT|A81.2|ICD10|Progressive multifocal leukoencephalopathy|Progressive multifocal leukoencephalopathy +C0343539|T047|PT|A81.8|ICD10|Other atypical virus infections of central nervous system|Other atypical virus infections of central nervous system +C0343539|T047|HT|A81.8|ICD10CM|Other atypical virus infections of central nervous system|Other atypical virus infections of central nervous system +C0343539|T047|AB|A81.8|ICD10CM|Other atypical virus infections of central nervous system|Other atypical virus infections of central nervous system +C0022802|T047|PT|A81.81|ICD10CM|Kuru|Kuru +C0022802|T047|AB|A81.81|ICD10CM|Kuru|Kuru +C0017495|T047|AB|A81.82|ICD10CM|Gerstmann-Straussler-Scheinker syndrome|Gerstmann-Straussler-Scheinker syndrome +C0017495|T047|PT|A81.82|ICD10CM|Gerstmann-Sträussler-Scheinker syndrome|Gerstmann-Sträussler-Scheinker syndrome +C0017495|T047|ET|A81.82|ICD10CM|GSS syndrome|GSS syndrome +C0206042|T047|PT|A81.83|ICD10CM|Fatal familial insomnia|Fatal familial insomnia +C0206042|T047|AB|A81.83|ICD10CM|Fatal familial insomnia|Fatal familial insomnia +C0206042|T047|ET|A81.83|ICD10CM|FFI|FFI +C0343539|T047|PT|A81.89|ICD10CM|Other atypical virus infections of central nervous system|Other atypical virus infections of central nervous system +C0343539|T047|AB|A81.89|ICD10CM|Other atypical virus infections of central nervous system|Other atypical virus infections of central nervous system +C0851226|T047|AB|A81.9|ICD10CM|Atypical virus infection of central nervous system, unsp|Atypical virus infection of central nervous system, unsp +C0851226|T047|PT|A81.9|ICD10CM|Atypical virus infection of central nervous system, unspecified|Atypical virus infection of central nervous system, unspecified +C0851226|T047|PT|A81.9|ICD10|Atypical virus infection of central nervous system, unspecified|Atypical virus infection of central nervous system, unspecified +C0162534|T047|ET|A81.9|ICD10CM|Prion diseases of the central nervous system NOS|Prion diseases of the central nervous system NOS +C0034494|T047|HT|A82|ICD10|Rabies|Rabies +C0034494|T047|HT|A82|ICD10CM|Rabies|Rabies +C0034494|T047|AB|A82|ICD10CM|Rabies|Rabies +C0276370|T047|PT|A82.0|ICD10|Sylvatic rabies|Sylvatic rabies +C0276370|T047|PT|A82.0|ICD10CM|Sylvatic rabies|Sylvatic rabies +C0276370|T047|AB|A82.0|ICD10CM|Sylvatic rabies|Sylvatic rabies +C0276369|T047|PT|A82.1|ICD10CM|Urban rabies|Urban rabies +C0276369|T047|AB|A82.1|ICD10CM|Urban rabies|Urban rabies +C0276369|T047|PT|A82.1|ICD10|Urban rabies|Urban rabies +C0034494|T047|PT|A82.9|ICD10|Rabies, unspecified|Rabies, unspecified +C0034494|T047|PT|A82.9|ICD10CM|Rabies, unspecified|Rabies, unspecified +C0034494|T047|AB|A82.9|ICD10CM|Rabies, unspecified|Rabies, unspecified +C0751098|T047|HT|A83|ICD10|Mosquito-borne viral encephalitis|Mosquito-borne viral encephalitis +C0751098|T047|HT|A83|ICD10CM|Mosquito-borne viral encephalitis|Mosquito-borne viral encephalitis +C0751098|T047|AB|A83|ICD10CM|Mosquito-borne viral encephalitis|Mosquito-borne viral encephalitis +C4290048|T047|ET|A83|ICD10CM|mosquito-borne viral meningoencephalitis|mosquito-borne viral meningoencephalitis +C0014057|T047|PT|A83.0|ICD10CM|Japanese encephalitis|Japanese encephalitis +C0014057|T047|AB|A83.0|ICD10CM|Japanese encephalitis|Japanese encephalitis +C0014057|T047|PT|A83.0|ICD10|Japanese encephalitis|Japanese encephalitis +C0153064|T047|PT|A83.1|ICD10|Western equine encephalitis|Western equine encephalitis +C0153064|T047|PT|A83.1|ICD10CM|Western equine encephalitis|Western equine encephalitis +C0153064|T047|AB|A83.1|ICD10CM|Western equine encephalitis|Western equine encephalitis +C0153065|T047|PT|A83.2|ICD10CM|Eastern equine encephalitis|Eastern equine encephalitis +C0153065|T047|AB|A83.2|ICD10CM|Eastern equine encephalitis|Eastern equine encephalitis +C0153065|T047|PT|A83.2|ICD10|Eastern equine encephalitis|Eastern equine encephalitis +C0014060|T047|PT|A83.3|ICD10|St Louis encephalitis|St Louis encephalitis +C0014060|T047|PT|A83.3|ICD10CM|St Louis encephalitis|St Louis encephalitis +C0014060|T047|AB|A83.3|ICD10CM|St Louis encephalitis|St Louis encephalitis +C0153066|T047|PT|A83.4|ICD10CM|Australian encephalitis|Australian encephalitis +C0153066|T047|AB|A83.4|ICD10CM|Australian encephalitis|Australian encephalitis +C0153066|T047|PT|A83.4|ICD10|Australian encephalitis|Australian encephalitis +C1401852|T047|ET|A83.4|ICD10CM|Kunjin virus disease|Kunjin virus disease +C0014053|T047|PT|A83.5|ICD10|California encephalitis|California encephalitis +C0014053|T047|PT|A83.5|ICD10CM|California encephalitis|California encephalitis +C0014053|T047|AB|A83.5|ICD10CM|California encephalitis|California encephalitis +C0014053|T047|ET|A83.5|ICD10CM|California meningoencephalitis|California meningoencephalitis +C0276379|T047|ET|A83.5|ICD10CM|La Crosse encephalitis|La Crosse encephalitis +C0276301|T047|PT|A83.6|ICD10CM|Rocio virus disease|Rocio virus disease +C0276301|T047|AB|A83.6|ICD10CM|Rocio virus disease|Rocio virus disease +C0276301|T047|PT|A83.6|ICD10|Rocio virus disease|Rocio virus disease +C0348168|T047|PT|A83.8|ICD10|Other mosquito-borne viral encephalitis|Other mosquito-borne viral encephalitis +C0348168|T047|PT|A83.8|ICD10CM|Other mosquito-borne viral encephalitis|Other mosquito-borne viral encephalitis +C0348168|T047|AB|A83.8|ICD10CM|Other mosquito-borne viral encephalitis|Other mosquito-borne viral encephalitis +C0751098|T047|PT|A83.9|ICD10CM|Mosquito-borne viral encephalitis, unspecified|Mosquito-borne viral encephalitis, unspecified +C0751098|T047|AB|A83.9|ICD10CM|Mosquito-borne viral encephalitis, unspecified|Mosquito-borne viral encephalitis, unspecified +C0751098|T047|PT|A83.9|ICD10|Mosquito-borne viral encephalitis, unspecified|Mosquito-borne viral encephalitis, unspecified +C0014061|T047|HT|A84|ICD10CM|Tick-borne viral encephalitis|Tick-borne viral encephalitis +C0014061|T047|AB|A84|ICD10CM|Tick-borne viral encephalitis|Tick-borne viral encephalitis +C0014061|T047|HT|A84|ICD10|Tick-borne viral encephalitis|Tick-borne viral encephalitis +C4290049|T047|ET|A84|ICD10CM|tick-borne viral meningoencephalitis|tick-borne viral meningoencephalitis +C0015632|T047|AB|A84.0|ICD10CM|Far Eastern tick-borne encephalitis|Far Eastern tick-borne encephalitis +C0015632|T047|PT|A84.0|ICD10CM|Far Eastern tick-borne encephalitis [Russian spring-summer encephalitis]|Far Eastern tick-borne encephalitis [Russian spring-summer encephalitis] +C0015632|T047|PT|A84.0|ICD10|Far Eastern tick-borne encephalitis [Russian spring-summer encephalitis]|Far Eastern tick-borne encephalitis [Russian spring-summer encephalitis] +C0014054|T047|PT|A84.1|ICD10|Central European tick-borne encephalitis|Central European tick-borne encephalitis +C0014054|T047|PT|A84.1|ICD10CM|Central European tick-borne encephalitis|Central European tick-borne encephalitis +C0014054|T047|AB|A84.1|ICD10CM|Central European tick-borne encephalitis|Central European tick-borne encephalitis +C0024025|T047|ET|A84.8|ICD10CM|Louping ill|Louping ill +C0311384|T047|PT|A84.8|ICD10|Other tick-borne viral encephalitis|Other tick-borne viral encephalitis +C0311384|T047|PT|A84.8|ICD10CM|Other tick-borne viral encephalitis|Other tick-borne viral encephalitis +C0311384|T047|AB|A84.8|ICD10CM|Other tick-borne viral encephalitis|Other tick-borne viral encephalitis +C0032858|T047|ET|A84.8|ICD10CM|Powassan virus disease|Powassan virus disease +C0014061|T047|PT|A84.9|ICD10|Tick-borne viral encephalitis, unspecified|Tick-borne viral encephalitis, unspecified +C0014061|T047|PT|A84.9|ICD10CM|Tick-borne viral encephalitis, unspecified|Tick-borne viral encephalitis, unspecified +C0014061|T047|AB|A84.9|ICD10CM|Tick-borne viral encephalitis, unspecified|Tick-borne viral encephalitis, unspecified +C0494074|T047|HT|A85|ICD10|Other viral encephalitis, not elsewhere classified|Other viral encephalitis, not elsewhere classified +C0494074|T047|AB|A85|ICD10CM|Other viral encephalitis, not elsewhere classified|Other viral encephalitis, not elsewhere classified +C0494074|T047|HT|A85|ICD10CM|Other viral encephalitis, not elsewhere classified|Other viral encephalitis, not elsewhere classified +C4290050|T047|ET|A85|ICD10CM|specified viral encephalomyelitis NEC|specified viral encephalomyelitis NEC +C4290051|T047|ET|A85|ICD10CM|specified viral meningoencephalitis NEC|specified viral meningoencephalitis NEC +C0338401|T047|PT|A85.0|ICD10|Enteroviral encephalitis|Enteroviral encephalitis +C0338401|T047|PT|A85.0|ICD10CM|Enteroviral encephalitis|Enteroviral encephalitis +C0338401|T047|AB|A85.0|ICD10CM|Enteroviral encephalitis|Enteroviral encephalitis +C0276429|T047|ET|A85.0|ICD10CM|Enteroviral encephalomyelitis|Enteroviral encephalomyelitis +C0276157|T047|PT|A85.1|ICD10CM|Adenoviral encephalitis|Adenoviral encephalitis +C0276157|T047|AB|A85.1|ICD10CM|Adenoviral encephalitis|Adenoviral encephalitis +C0276157|T047|PT|A85.1|ICD10|Adenoviral encephalitis|Adenoviral encephalitis +C0853861|T047|ET|A85.1|ICD10CM|Adenoviral meningoencephalitis|Adenoviral meningoencephalitis +C0348169|T047|PT|A85.2|ICD10|Arthropod-borne viral encephalitis, unspecified|Arthropod-borne viral encephalitis, unspecified +C0348169|T047|PT|A85.2|ICD10CM|Arthropod-borne viral encephalitis, unspecified|Arthropod-borne viral encephalitis, unspecified +C0348169|T047|AB|A85.2|ICD10CM|Arthropod-borne viral encephalitis, unspecified|Arthropod-borne viral encephalitis, unspecified +C0014040|T047|ET|A85.8|ICD10CM|Encephalitis lethargica|Encephalitis lethargica +C0348170|T047|PT|A85.8|ICD10CM|Other specified viral encephalitis|Other specified viral encephalitis +C0348170|T047|AB|A85.8|ICD10CM|Other specified viral encephalitis|Other specified viral encephalitis +C0348170|T047|PT|A85.8|ICD10|Other specified viral encephalitis|Other specified viral encephalitis +C2900457|T047|ET|A85.8|ICD10CM|Von Economo-Cruchet disease|Von Economo-Cruchet disease +C0243010|T047|PT|A86|ICD10|Unspecified viral encephalitis|Unspecified viral encephalitis +C0243010|T047|PT|A86|ICD10CM|Unspecified viral encephalitis|Unspecified viral encephalitis +C0243010|T047|AB|A86|ICD10CM|Unspecified viral encephalitis|Unspecified viral encephalitis +C2900458|T047|ET|A86|ICD10CM|Viral encephalomyelitis NOS|Viral encephalomyelitis NOS +C1403880|T047|ET|A86|ICD10CM|Viral meningoencephalitis NOS|Viral meningoencephalitis NOS +C0025297|T047|HT|A87|ICD10|Viral meningitis|Viral meningitis +C0025297|T047|HT|A87|ICD10CM|Viral meningitis|Viral meningitis +C0025297|T047|AB|A87|ICD10CM|Viral meningitis|Viral meningitis +C2900459|T047|ET|A87.0|ICD10CM|Coxsackievirus meningitis|Coxsackievirus meningitis +C0338388|T047|ET|A87.0|ICD10CM|Echovirus meningitis|Echovirus meningitis +C0276430|T047|PT|A87.0|ICD10CM|Enteroviral meningitis|Enteroviral meningitis +C0276430|T047|AB|A87.0|ICD10CM|Enteroviral meningitis|Enteroviral meningitis +C0276430|T047|PT|A87.0|ICD10|Enteroviral meningitis|Enteroviral meningitis +C0276160|T047|PT|A87.1|ICD10|Adenoviral meningitis|Adenoviral meningitis +C0276160|T047|PT|A87.1|ICD10CM|Adenoviral meningitis|Adenoviral meningitis +C0276160|T047|AB|A87.1|ICD10CM|Adenoviral meningitis|Adenoviral meningitis +C0024266|T047|PT|A87.2|ICD10|Lymphocytic choriomeningitis|Lymphocytic choriomeningitis +C0024266|T047|PT|A87.2|ICD10CM|Lymphocytic choriomeningitis|Lymphocytic choriomeningitis +C0024266|T047|AB|A87.2|ICD10CM|Lymphocytic choriomeningitis|Lymphocytic choriomeningitis +C0024266|T047|ET|A87.2|ICD10CM|Lymphocytic meningoencephalitis|Lymphocytic meningoencephalitis +C0348172|T047|PT|A87.8|ICD10|Other viral meningitis|Other viral meningitis +C0348172|T047|PT|A87.8|ICD10CM|Other viral meningitis|Other viral meningitis +C0348172|T047|AB|A87.8|ICD10CM|Other viral meningitis|Other viral meningitis +C0025297|T047|PT|A87.9|ICD10|Viral meningitis, unspecified|Viral meningitis, unspecified +C0025297|T047|PT|A87.9|ICD10CM|Viral meningitis, unspecified|Viral meningitis, unspecified +C0025297|T047|AB|A87.9|ICD10CM|Viral meningitis, unspecified|Viral meningitis, unspecified +C0494075|T047|AB|A88|ICD10CM|Oth viral infections of central nervous system, NEC|Oth viral infections of central nervous system, NEC +C0494075|T047|HT|A88|ICD10CM|Other viral infections of central nervous system, not elsewhere classified|Other viral infections of central nervous system, not elsewhere classified +C0494075|T047|HT|A88|ICD10|Other viral infections of central nervous system, not elsewhere classified|Other viral infections of central nervous system, not elsewhere classified +C0546948|T047|PT|A88.0|ICD10|Enteroviral exanthematous fever [Boston exanthem]|Enteroviral exanthematous fever [Boston exanthem] +C0546948|T047|PT|A88.0|ICD10CM|Enteroviral exanthematous fever [Boston exanthem]|Enteroviral exanthematous fever [Boston exanthem] +C0546948|T047|AB|A88.0|ICD10CM|Enteroviral exanthematous fever [Boston exanthem]|Enteroviral exanthematous fever [Boston exanthem] +C0751908|T047|PT|A88.1|ICD10CM|Epidemic vertigo|Epidemic vertigo +C0751908|T047|AB|A88.1|ICD10CM|Epidemic vertigo|Epidemic vertigo +C0751908|T047|PT|A88.1|ICD10|Epidemic vertigo|Epidemic vertigo +C0348173|T047|PT|A88.8|ICD10|Other specified viral infections of central nervous system|Other specified viral infections of central nervous system +C0348173|T047|PT|A88.8|ICD10CM|Other specified viral infections of central nervous system|Other specified viral infections of central nervous system +C0348173|T047|AB|A88.8|ICD10CM|Other specified viral infections of central nervous system|Other specified viral infections of central nervous system +C0348165|T047|PT|A89|ICD10CM|Unspecified viral infection of central nervous system|Unspecified viral infection of central nervous system +C0348165|T047|AB|A89|ICD10CM|Unspecified viral infection of central nervous system|Unspecified viral infection of central nervous system +C0348165|T047|PT|A89|ICD10|Unspecified viral infection of central nervous system|Unspecified viral infection of central nervous system +C0011311|T047|PT|A90|ICD10|Dengue fever [classical dengue]|Dengue fever [classical dengue] +C0011311|T047|PT|A90|ICD10CM|Dengue fever [classical dengue]|Dengue fever [classical dengue] +C0011311|T047|AB|A90|ICD10CM|Dengue fever [classical dengue]|Dengue fever [classical dengue] +C0348175|T047|HT|A90-A99|ICD10CM|Arthropod-borne viral fevers and viral hemorrhagic fevers (A90-A99)|Arthropod-borne viral fevers and viral hemorrhagic fevers (A90-A99) +C0348175|T047|HT|A90-A99.9|ICD10|Arthropod-borne viral fevers and viral haemorrhagic fevers|Arthropod-borne viral fevers and viral haemorrhagic fevers +C0348175|T047|HT|A90-A99.9|ICD10AE|Arthropod-borne viral fevers and viral hemorrhagic fevers|Arthropod-borne viral fevers and viral hemorrhagic fevers +C0019100|T047|PT|A91|ICD10|Dengue haemorrhagic fever|Dengue haemorrhagic fever +C0019100|T047|PT|A91|ICD10AE|Dengue hemorrhagic fever|Dengue hemorrhagic fever +C0019100|T047|PT|A91|ICD10CM|Dengue hemorrhagic fever|Dengue hemorrhagic fever +C0019100|T047|AB|A91|ICD10CM|Dengue hemorrhagic fever|Dengue hemorrhagic fever +C0029667|T047|AB|A92|ICD10CM|Other mosquito-borne viral fevers|Other mosquito-borne viral fevers +C0029667|T047|HT|A92|ICD10CM|Other mosquito-borne viral fevers|Other mosquito-borne viral fevers +C0029667|T047|HT|A92|ICD10|Other mosquito-borne viral fevers|Other mosquito-borne viral fevers +C0008055|T047|ET|A92.0|ICD10CM|Chikungunya (hemorrhagic) fever|Chikungunya (hemorrhagic) fever +C0008055|T047|PT|A92.0|ICD10CM|Chikungunya virus disease|Chikungunya virus disease +C0008055|T047|AB|A92.0|ICD10CM|Chikungunya virus disease|Chikungunya virus disease +C0008055|T047|PT|A92.0|ICD10|Chikungunya virus disease|Chikungunya virus disease +C0276286|T047|PT|A92.1|ICD10|O'nyong-nyong fever|O'nyong-nyong fever +C0276286|T047|PT|A92.1|ICD10CM|O'nyong-nyong fever|O'nyong-nyong fever +C0276286|T047|AB|A92.1|ICD10CM|O'nyong-nyong fever|O'nyong-nyong fever +C0014078|T047|ET|A92.2|ICD10CM|Venezuelan equine encephalitis|Venezuelan equine encephalitis +C2900460|T047|ET|A92.2|ICD10CM|Venezuelan equine encephalomyelitis virus disease|Venezuelan equine encephalomyelitis virus disease +C0014078|T047|PT|A92.2|ICD10CM|Venezuelan equine fever|Venezuelan equine fever +C0014078|T047|AB|A92.2|ICD10CM|Venezuelan equine fever|Venezuelan equine fever +C0014078|T047|PT|A92.2|ICD10|Venezuelan equine fever|Venezuelan equine fever +C0043124|T047|PT|A92.3|ICD10|West Nile fever|West Nile fever +C0043124|T047|ET|A92.3|ICD10CM|West Nile fever|West Nile fever +C0043124|T047|HT|A92.3|ICD10CM|West Nile virus infection|West Nile virus infection +C0043124|T047|AB|A92.3|ICD10CM|West Nile virus infection|West Nile virus infection +C0043124|T047|ET|A92.30|ICD10CM|West Nile fever NOS|West Nile fever NOS +C1456257|T047|ET|A92.30|ICD10CM|West Nile fever without complications|West Nile fever without complications +C1096184|T047|AB|A92.30|ICD10CM|West Nile virus infection, unspecified|West Nile virus infection, unspecified +C1096184|T047|PT|A92.30|ICD10CM|West Nile virus infection, unspecified|West Nile virus infection, unspecified +C1096184|T047|ET|A92.30|ICD10CM|West Nile virus NOS|West Nile virus NOS +C0751583|T047|ET|A92.31|ICD10CM|West Nile encephalitis|West Nile encephalitis +C1456258|T047|ET|A92.31|ICD10CM|West Nile encephalomyelitis|West Nile encephalomyelitis +C0751583|T047|AB|A92.31|ICD10CM|West Nile virus infection with encephalitis|West Nile virus infection with encephalitis +C0751583|T047|PT|A92.31|ICD10CM|West Nile virus infection with encephalitis|West Nile virus infection with encephalitis +C2900464|T047|AB|A92.32|ICD10CM|West Nile virus infection with oth neurologic manifestation|West Nile virus infection with oth neurologic manifestation +C2900464|T047|PT|A92.32|ICD10CM|West Nile virus infection with other neurologic manifestation|West Nile virus infection with other neurologic manifestation +C2900465|T047|AB|A92.39|ICD10CM|West Nile virus infection with other complications|West Nile virus infection with other complications +C2900465|T047|PT|A92.39|ICD10CM|West Nile virus infection with other complications|West Nile virus infection with other complications +C0035613|T047|PT|A92.4|ICD10|Rift Valley fever|Rift Valley fever +C0035613|T047|PT|A92.4|ICD10CM|Rift Valley fever|Rift Valley fever +C0035613|T047|AB|A92.4|ICD10CM|Rift Valley fever|Rift Valley fever +C0276289|T047|ET|A92.5|ICD10CM|Zika NOS|Zika NOS +C0276289|T047|AB|A92.5|ICD10CM|Zika virus disease|Zika virus disease +C0276289|T047|PT|A92.5|ICD10CM|Zika virus disease|Zika virus disease +C4267829|T047|ET|A92.5|ICD10CM|Zika virus fever|Zika virus fever +C0276289|T047|ET|A92.5|ICD10CM|Zika virus infection|Zika virus infection +C0348176|T047|PT|A92.8|ICD10CM|Other specified mosquito-borne viral fevers|Other specified mosquito-borne viral fevers +C0348176|T047|AB|A92.8|ICD10CM|Other specified mosquito-borne viral fevers|Other specified mosquito-borne viral fevers +C0348176|T047|PT|A92.8|ICD10|Other specified mosquito-borne viral fevers|Other specified mosquito-borne viral fevers +C0348177|T047|PT|A92.9|ICD10|Mosquito-borne viral fever, unspecified|Mosquito-borne viral fever, unspecified +C0348177|T047|PT|A92.9|ICD10CM|Mosquito-borne viral fever, unspecified|Mosquito-borne viral fever, unspecified +C0348177|T047|AB|A92.9|ICD10CM|Mosquito-borne viral fever, unspecified|Mosquito-borne viral fever, unspecified +C0494077|T047|AB|A93|ICD10CM|Other arthropod-borne viral fevers, not elsewhere classified|Other arthropod-borne viral fevers, not elsewhere classified +C0494077|T047|HT|A93|ICD10CM|Other arthropod-borne viral fevers, not elsewhere classified|Other arthropod-borne viral fevers, not elsewhere classified +C0494077|T047|HT|A93|ICD10|Other arthropod-borne viral fevers, not elsewhere classified|Other arthropod-borne viral fevers, not elsewhere classified +C0276386|T047|ET|A93.0|ICD10CM|Oropouche fever|Oropouche fever +C0276386|T047|PT|A93.0|ICD10CM|Oropouche virus disease|Oropouche virus disease +C0276386|T047|AB|A93.0|ICD10CM|Oropouche virus disease|Oropouche virus disease +C0276386|T047|PT|A93.0|ICD10|Oropouche virus disease|Oropouche virus disease +C0030372|T047|ET|A93.1|ICD10CM|Pappataci fever|Pappataci fever +C0030372|T047|ET|A93.1|ICD10CM|Phlebotomus fever|Phlebotomus fever +C0030372|T047|PT|A93.1|ICD10CM|Sandfly fever|Sandfly fever +C0030372|T047|AB|A93.1|ICD10CM|Sandfly fever|Sandfly fever +C0030372|T047|PT|A93.1|ICD10|Sandfly fever|Sandfly fever +C0009400|T047|PT|A93.2|ICD10|Colorado tick fever|Colorado tick fever +C0009400|T047|PT|A93.2|ICD10CM|Colorado tick fever|Colorado tick fever +C0009400|T047|AB|A93.2|ICD10CM|Colorado tick fever|Colorado tick fever +C0348178|T047|PT|A93.8|ICD10|Other specified arthropod-borne viral fevers|Other specified arthropod-borne viral fevers +C0348178|T047|PT|A93.8|ICD10CM|Other specified arthropod-borne viral fevers|Other specified arthropod-borne viral fevers +C0348178|T047|AB|A93.8|ICD10CM|Other specified arthropod-borne viral fevers|Other specified arthropod-borne viral fevers +C0276366|T047|ET|A93.8|ICD10CM|Piry virus disease|Piry virus disease +C2900466|T047|ET|A93.8|ICD10CM|Vesicular stomatitis virus disease [Indiana fever]|Vesicular stomatitis virus disease [Indiana fever] +C1401733|T047|ET|A94|ICD10CM|Arboviral fever NOS|Arboviral fever NOS +C0003723|T047|ET|A94|ICD10CM|Arbovirus infection NOS|Arbovirus infection NOS +C0348179|T047|PT|A94|ICD10CM|Unspecified arthropod-borne viral fever|Unspecified arthropod-borne viral fever +C0348179|T047|AB|A94|ICD10CM|Unspecified arthropod-borne viral fever|Unspecified arthropod-borne viral fever +C0348179|T047|PT|A94|ICD10|Unspecified arthropod-borne viral fever|Unspecified arthropod-borne viral fever +C0043395|T047|HT|A95|ICD10|Yellow fever|Yellow fever +C0043395|T047|HT|A95|ICD10CM|Yellow fever|Yellow fever +C0043395|T047|AB|A95|ICD10CM|Yellow fever|Yellow fever +C0043397|T047|ET|A95.0|ICD10CM|Jungle yellow fever|Jungle yellow fever +C0043397|T047|PT|A95.0|ICD10CM|Sylvatic yellow fever|Sylvatic yellow fever +C0043397|T047|AB|A95.0|ICD10CM|Sylvatic yellow fever|Sylvatic yellow fever +C0043397|T047|PT|A95.0|ICD10|Sylvatic yellow fever|Sylvatic yellow fever +C0043398|T047|PT|A95.1|ICD10|Urban yellow fever|Urban yellow fever +C0043398|T047|PT|A95.1|ICD10CM|Urban yellow fever|Urban yellow fever +C0043398|T047|AB|A95.1|ICD10CM|Urban yellow fever|Urban yellow fever +C0043395|T047|PT|A95.9|ICD10CM|Yellow fever, unspecified|Yellow fever, unspecified +C0043395|T047|AB|A95.9|ICD10CM|Yellow fever, unspecified|Yellow fever, unspecified +C0043395|T047|PT|A95.9|ICD10|Yellow fever, unspecified|Yellow fever, unspecified +C0153112|T047|HT|A96|ICD10|Arenaviral haemorrhagic fever|Arenaviral haemorrhagic fever +C0153112|T047|HT|A96|ICD10CM|Arenaviral hemorrhagic fever|Arenaviral hemorrhagic fever +C0153112|T047|AB|A96|ICD10CM|Arenaviral hemorrhagic fever|Arenaviral hemorrhagic fever +C0153112|T047|HT|A96|ICD10AE|Arenaviral hemorrhagic fever|Arenaviral hemorrhagic fever +C0019097|T047|ET|A96.0|ICD10CM|Argentinian hemorrhagic fever|Argentinian hemorrhagic fever +C0019097|T047|PT|A96.0|ICD10|Junin haemorrhagic fever|Junin haemorrhagic fever +C0019097|T047|PT|A96.0|ICD10CM|Junin hemorrhagic fever|Junin hemorrhagic fever +C0019097|T047|AB|A96.0|ICD10CM|Junin hemorrhagic fever|Junin hemorrhagic fever +C0019097|T047|PT|A96.0|ICD10AE|Junin hemorrhagic fever|Junin hemorrhagic fever +C0282192|T047|ET|A96.1|ICD10CM|Bolivian hemorrhagic fever|Bolivian hemorrhagic fever +C0282192|T047|PT|A96.1|ICD10|Machupo haemorrhagic fever|Machupo haemorrhagic fever +C0282192|T047|PT|A96.1|ICD10CM|Machupo hemorrhagic fever|Machupo hemorrhagic fever +C0282192|T047|AB|A96.1|ICD10CM|Machupo hemorrhagic fever|Machupo hemorrhagic fever +C0282192|T047|PT|A96.1|ICD10AE|Machupo hemorrhagic fever|Machupo hemorrhagic fever +C0023092|T047|PT|A96.2|ICD10CM|Lassa fever|Lassa fever +C0023092|T047|AB|A96.2|ICD10CM|Lassa fever|Lassa fever +C0023092|T047|PT|A96.2|ICD10|Lassa fever|Lassa fever +C0348180|T047|PT|A96.8|ICD10|Other arenaviral haemorrhagic fevers|Other arenaviral haemorrhagic fevers +C0348180|T047|PT|A96.8|ICD10AE|Other arenaviral hemorrhagic fevers|Other arenaviral hemorrhagic fevers +C0348180|T047|PT|A96.8|ICD10CM|Other arenaviral hemorrhagic fevers|Other arenaviral hemorrhagic fevers +C0348180|T047|AB|A96.8|ICD10CM|Other arenaviral hemorrhagic fevers|Other arenaviral hemorrhagic fevers +C0153112|T047|PT|A96.9|ICD10|Arenaviral haemorrhagic fever, unspecified|Arenaviral haemorrhagic fever, unspecified +C0153112|T047|PT|A96.9|ICD10CM|Arenaviral hemorrhagic fever, unspecified|Arenaviral hemorrhagic fever, unspecified +C0153112|T047|AB|A96.9|ICD10CM|Arenaviral hemorrhagic fever, unspecified|Arenaviral hemorrhagic fever, unspecified +C0153112|T047|PT|A96.9|ICD10AE|Arenaviral hemorrhagic fever, unspecified|Arenaviral hemorrhagic fever, unspecified +C0494078|T047|HT|A98|ICD10|Other viral haemorrhagic fevers, not elsewhere classified|Other viral haemorrhagic fevers, not elsewhere classified +C0494078|T047|HT|A98|ICD10AE|Other viral hemorrhagic fevers, not elsewhere classified|Other viral hemorrhagic fevers, not elsewhere classified +C0494078|T047|AB|A98|ICD10CM|Other viral hemorrhagic fevers, not elsewhere classified|Other viral hemorrhagic fevers, not elsewhere classified +C0494078|T047|HT|A98|ICD10CM|Other viral hemorrhagic fevers, not elsewhere classified|Other viral hemorrhagic fevers, not elsewhere classified +C0019099|T047|ET|A98.0|ICD10CM|Central Asian hemorrhagic fever|Central Asian hemorrhagic fever +C0019099|T047|PT|A98.0|ICD10|Crimean-Congo haemorrhagic fever|Crimean-Congo haemorrhagic fever +C0019099|T047|PT|A98.0|ICD10CM|Crimean-Congo hemorrhagic fever|Crimean-Congo hemorrhagic fever +C0019099|T047|AB|A98.0|ICD10CM|Crimean-Congo hemorrhagic fever|Crimean-Congo hemorrhagic fever +C0019099|T047|PT|A98.0|ICD10AE|Crimean-Congo hemorrhagic fever|Crimean-Congo hemorrhagic fever +C0019103|T047|PT|A98.1|ICD10|Omsk haemorrhagic fever|Omsk haemorrhagic fever +C0019103|T047|PT|A98.1|ICD10AE|Omsk hemorrhagic fever|Omsk hemorrhagic fever +C0019103|T047|PT|A98.1|ICD10CM|Omsk hemorrhagic fever|Omsk hemorrhagic fever +C0019103|T047|AB|A98.1|ICD10CM|Omsk hemorrhagic fever|Omsk hemorrhagic fever +C0022810|T047|PT|A98.2|ICD10CM|Kyasanur Forest disease|Kyasanur Forest disease +C0022810|T047|AB|A98.2|ICD10CM|Kyasanur Forest disease|Kyasanur Forest disease +C0022810|T047|PT|A98.2|ICD10|Kyasanur Forest disease|Kyasanur Forest disease +C0024788|T047|PT|A98.3|ICD10|Marburg virus disease|Marburg virus disease +C0024788|T047|PT|A98.3|ICD10CM|Marburg virus disease|Marburg virus disease +C0024788|T047|AB|A98.3|ICD10CM|Marburg virus disease|Marburg virus disease +C0282687|T047|PT|A98.4|ICD10|Ebola virus disease|Ebola virus disease +C0282687|T047|PT|A98.4|ICD10CM|Ebola virus disease|Ebola virus disease +C0282687|T047|AB|A98.4|ICD10CM|Ebola virus disease|Ebola virus disease +C0019101|T047|ET|A98.5|ICD10CM|Epidemic hemorrhagic fever|Epidemic hemorrhagic fever +C0019101|T047|PT|A98.5|ICD10|Haemorrhagic fever with renal syndrome|Haemorrhagic fever with renal syndrome +C0242994|T047|ET|A98.5|ICD10CM|Hantaan virus disease|Hantaan virus disease +C2900468|T047|ET|A98.5|ICD10CM|Hantavirus disease with renal manifestations|Hantavirus disease with renal manifestations +C0019101|T047|PT|A98.5|ICD10CM|Hemorrhagic fever with renal syndrome|Hemorrhagic fever with renal syndrome +C0019101|T047|AB|A98.5|ICD10CM|Hemorrhagic fever with renal syndrome|Hemorrhagic fever with renal syndrome +C0019101|T047|PT|A98.5|ICD10AE|Hemorrhagic fever with renal syndrome|Hemorrhagic fever with renal syndrome +C0019101|T047|ET|A98.5|ICD10CM|Korean hemorrhagic fever|Korean hemorrhagic fever +C0242993|T047|ET|A98.5|ICD10CM|Nephropathia epidemica|Nephropathia epidemica +C0019101|T047|ET|A98.5|ICD10CM|Russian hemorrhagic fever|Russian hemorrhagic fever +C2900469|T047|ET|A98.5|ICD10CM|Songo fever|Songo fever +C0348182|T047|PT|A98.8|ICD10|Other specified viral haemorrhagic fevers|Other specified viral haemorrhagic fevers +C0348182|T047|PT|A98.8|ICD10AE|Other specified viral hemorrhagic fevers|Other specified viral hemorrhagic fevers +C0348182|T047|PT|A98.8|ICD10CM|Other specified viral hemorrhagic fevers|Other specified viral hemorrhagic fevers +C0348182|T047|AB|A98.8|ICD10CM|Other specified viral hemorrhagic fevers|Other specified viral hemorrhagic fevers +C0019104|T047|PT|A99|ICD10|Unspecified viral haemorrhagic fever|Unspecified viral haemorrhagic fever +C0019104|T047|PT|A99|ICD10AE|Unspecified viral hemorrhagic fever|Unspecified viral hemorrhagic fever +C0019104|T047|PT|A99|ICD10CM|Unspecified viral hemorrhagic fever|Unspecified viral hemorrhagic fever +C0019104|T047|AB|A99|ICD10CM|Unspecified viral hemorrhagic fever|Unspecified viral hemorrhagic fever +C0019348|T047|AB|B00|ICD10CM|Herpesviral [herpes simplex] infections|Herpesviral [herpes simplex] infections +C0019348|T047|HT|B00|ICD10CM|Herpesviral [herpes simplex] infections|Herpesviral [herpes simplex] infections +C0019348|T047|HT|B00|ICD10|Herpesviral [herpes simplex] infections|Herpesviral [herpes simplex] infections +C0348184|T047|HT|B00-B09|ICD10CM|Viral infections characterized by skin and mucous membrane lesions (B00-B09)|Viral infections characterized by skin and mucous membrane lesions (B00-B09) +C0348184|T047|HT|B00-B09.9|ICD10|Viral infections characterized by skin and mucous membrane lesions|Viral infections characterized by skin and mucous membrane lesions +C0936250|T047|PT|B00.0|ICD10|Eczema herpeticum|Eczema herpeticum +C0936250|T047|PT|B00.0|ICD10CM|Eczema herpeticum|Eczema herpeticum +C0936250|T047|AB|B00.0|ICD10CM|Eczema herpeticum|Eczema herpeticum +C0022504|T047|ET|B00.0|ICD10CM|Kaposi's varicelliform eruption|Kaposi's varicelliform eruption +C2900470|T047|ET|B00.1|ICD10CM|Herpes simplex facialis|Herpes simplex facialis +C0019345|T047|ET|B00.1|ICD10CM|Herpes simplex labialis|Herpes simplex labialis +C0153046|T047|ET|B00.1|ICD10CM|Herpes simplex otitis externa|Herpes simplex otitis externa +C0348978|T047|PT|B00.1|ICD10CM|Herpesviral vesicular dermatitis|Herpesviral vesicular dermatitis +C0348978|T047|AB|B00.1|ICD10CM|Herpesviral vesicular dermatitis|Herpesviral vesicular dermatitis +C0348978|T047|PT|B00.1|ICD10|Herpesviral vesicular dermatitis|Herpesviral vesicular dermatitis +C2900471|T047|ET|B00.1|ICD10CM|Vesicular dermatitis of ear|Vesicular dermatitis of ear +C2900472|T047|ET|B00.1|ICD10CM|Vesicular dermatitis of lip|Vesicular dermatitis of lip +C0494079|T047|PT|B00.2|ICD10|Herpesviral gingivostomatitis and pharyngotonsillitis|Herpesviral gingivostomatitis and pharyngotonsillitis +C0494079|T047|PT|B00.2|ICD10CM|Herpesviral gingivostomatitis and pharyngotonsillitis|Herpesviral gingivostomatitis and pharyngotonsillitis +C0494079|T047|AB|B00.2|ICD10CM|Herpesviral gingivostomatitis and pharyngotonsillitis|Herpesviral gingivostomatitis and pharyngotonsillitis +C1399523|T047|ET|B00.2|ICD10CM|Herpesviral pharyngitis|Herpesviral pharyngitis +C0153045|T047|PT|B00.3|ICD10CM|Herpesviral meningitis|Herpesviral meningitis +C0153045|T047|AB|B00.3|ICD10CM|Herpesviral meningitis|Herpesviral meningitis +C0153045|T047|PT|B00.3|ICD10|Herpesviral meningitis|Herpesviral meningitis +C0276226|T047|PT|B00.4|ICD10|Herpesviral encephalitis|Herpesviral encephalitis +C0276226|T047|PT|B00.4|ICD10CM|Herpesviral encephalitis|Herpesviral encephalitis +C0276226|T047|AB|B00.4|ICD10CM|Herpesviral encephalitis|Herpesviral encephalitis +C2900473|T047|ET|B00.4|ICD10CM|Herpesviral meningoencephalitis|Herpesviral meningoencephalitis +C0037140|T047|ET|B00.4|ICD10CM|Simian B disease|Simian B disease +C0494081|T047|PT|B00.5|ICD10|Herpesviral ocular disease|Herpesviral ocular disease +C0494081|T047|HT|B00.5|ICD10CM|Herpesviral ocular disease|Herpesviral ocular disease +C0494081|T047|AB|B00.5|ICD10CM|Herpesviral ocular disease|Herpesviral ocular disease +C0494081|T047|AB|B00.50|ICD10CM|Herpesviral ocular disease, unspecified|Herpesviral ocular disease, unspecified +C0494081|T047|PT|B00.50|ICD10CM|Herpesviral ocular disease, unspecified|Herpesviral ocular disease, unspecified +C2900477|T047|AB|B00.51|ICD10CM|Herpesviral iridocyclitis|Herpesviral iridocyclitis +C2900477|T047|PT|B00.51|ICD10CM|Herpesviral iridocyclitis|Herpesviral iridocyclitis +C2900475|T047|ET|B00.51|ICD10CM|Herpesviral iritis|Herpesviral iritis +C2900476|T047|ET|B00.51|ICD10CM|Herpesviral uveitis, anterior|Herpesviral uveitis, anterior +C2900479|T047|AB|B00.52|ICD10CM|Herpesviral keratitis|Herpesviral keratitis +C2900479|T047|PT|B00.52|ICD10CM|Herpesviral keratitis|Herpesviral keratitis +C2900478|T047|ET|B00.52|ICD10CM|Herpesviral keratoconjunctivitis|Herpesviral keratoconjunctivitis +C2900480|T047|AB|B00.53|ICD10CM|Herpesviral conjunctivitis|Herpesviral conjunctivitis +C2900480|T047|PT|B00.53|ICD10CM|Herpesviral conjunctivitis|Herpesviral conjunctivitis +C2900481|T047|ET|B00.59|ICD10CM|Herpesviral dermatitis of eyelid|Herpesviral dermatitis of eyelid +C2900482|T047|AB|B00.59|ICD10CM|Other herpesviral disease of eye|Other herpesviral disease of eye +C2900482|T047|PT|B00.59|ICD10CM|Other herpesviral disease of eye|Other herpesviral disease of eye +C0494082|T047|PT|B00.7|ICD10CM|Disseminated herpesviral disease|Disseminated herpesviral disease +C0494082|T047|AB|B00.7|ICD10CM|Disseminated herpesviral disease|Disseminated herpesviral disease +C0494082|T047|PT|B00.7|ICD10|Disseminated herpesviral disease|Disseminated herpesviral disease +C1409719|T047|ET|B00.7|ICD10CM|Herpesviral sepsis|Herpesviral sepsis +C0348185|T047|PT|B00.8|ICD10|Other forms of herpesviral infection|Other forms of herpesviral infection +C0348185|T047|AB|B00.8|ICD10CM|Other forms of herpesviral infections|Other forms of herpesviral infections +C0348185|T047|HT|B00.8|ICD10CM|Other forms of herpesviral infections|Other forms of herpesviral infections +C2900483|T047|AB|B00.81|ICD10CM|Herpesviral hepatitis|Herpesviral hepatitis +C2900483|T047|PT|B00.81|ICD10CM|Herpesviral hepatitis|Herpesviral hepatitis +C1719298|T047|PT|B00.82|ICD10CM|Herpes simplex myelitis|Herpes simplex myelitis +C1719298|T047|AB|B00.82|ICD10CM|Herpes simplex myelitis|Herpes simplex myelitis +C2900484|T047|ET|B00.89|ICD10CM|Herpesviral whitlow|Herpesviral whitlow +C2900485|T047|AB|B00.89|ICD10CM|Other herpesviral infection|Other herpesviral infection +C2900485|T047|PT|B00.89|ICD10CM|Other herpesviral infection|Other herpesviral infection +C0019348|T047|ET|B00.9|ICD10CM|Herpes simplex infection NOS|Herpes simplex infection NOS +C0348186|T047|PT|B00.9|ICD10|Herpesviral infection, unspecified|Herpesviral infection, unspecified +C0348186|T047|PT|B00.9|ICD10CM|Herpesviral infection, unspecified|Herpesviral infection, unspecified +C0348186|T047|AB|B00.9|ICD10CM|Herpesviral infection, unspecified|Herpesviral infection, unspecified +C0008049|T047|AB|B01|ICD10CM|Varicella [chickenpox]|Varicella [chickenpox] +C0008049|T047|HT|B01|ICD10CM|Varicella [chickenpox]|Varicella [chickenpox] +C0008049|T047|HT|B01|ICD10|Varicella [chickenpox]|Varicella [chickenpox] +C0700503|T047|PT|B01.0|ICD10CM|Varicella meningitis|Varicella meningitis +C0700503|T047|AB|B01.0|ICD10CM|Varicella meningitis|Varicella meningitis +C0700503|T047|PT|B01.0|ICD10|Varicella meningitis|Varicella meningitis +C2900486|T047|ET|B01.1|ICD10CM|Postchickenpox encephalitis, myelitis and encephalomyelitis|Postchickenpox encephalitis, myelitis and encephalomyelitis +C0153017|T047|PT|B01.1|ICD10|Varicella encephalitis|Varicella encephalitis +C2900487|T047|AB|B01.1|ICD10CM|Varicella encephalitis, myelitis and encephalomyelitis|Varicella encephalitis, myelitis and encephalomyelitis +C2900487|T047|HT|B01.1|ICD10CM|Varicella encephalitis, myelitis and encephalomyelitis|Varicella encephalitis, myelitis and encephalomyelitis +C2900488|T047|ET|B01.11|ICD10CM|Postchickenpox encephalitis and encephalomyelitis|Postchickenpox encephalitis and encephalomyelitis +C2900489|T047|AB|B01.11|ICD10CM|Varicella encephalitis and encephalomyelitis|Varicella encephalitis and encephalomyelitis +C2900489|T047|PT|B01.11|ICD10CM|Varicella encephalitis and encephalomyelitis|Varicella encephalitis and encephalomyelitis +C1719296|T046|ET|B01.12|ICD10CM|Postchickenpox myelitis|Postchickenpox myelitis +C2900490|T047|AB|B01.12|ICD10CM|Varicella myelitis|Varicella myelitis +C2900490|T047|PT|B01.12|ICD10CM|Varicella myelitis|Varicella myelitis +C0339971|T047|PT|B01.2|ICD10|Varicella pneumonia|Varicella pneumonia +C0339971|T047|PT|B01.2|ICD10CM|Varicella pneumonia|Varicella pneumonia +C0339971|T047|AB|B01.2|ICD10CM|Varicella pneumonia|Varicella pneumonia +C0348187|T047|HT|B01.8|ICD10CM|Varicella with other complications|Varicella with other complications +C0348187|T047|AB|B01.8|ICD10CM|Varicella with other complications|Varicella with other complications +C0348187|T047|PT|B01.8|ICD10|Varicella with other complications|Varicella with other complications +C1275687|T047|PT|B01.81|ICD10CM|Varicella keratitis|Varicella keratitis +C1275687|T047|AB|B01.81|ICD10CM|Varicella keratitis|Varicella keratitis +C0348187|T047|AB|B01.89|ICD10CM|Other varicella complications|Other varicella complications +C0348187|T047|PT|B01.89|ICD10CM|Other varicella complications|Other varicella complications +C0008049|T047|ET|B01.9|ICD10CM|Varicella NOS|Varicella NOS +C0348188|T047|PT|B01.9|ICD10CM|Varicella without complication|Varicella without complication +C0348188|T047|AB|B01.9|ICD10CM|Varicella without complication|Varicella without complication +C0348188|T047|PT|B01.9|ICD10|Varicella without complication|Varicella without complication +C0019360|T047|ET|B02|ICD10CM|shingles|shingles +C0019360|T047|ET|B02|ICD10CM|zona|zona +C0019360|T047|AB|B02|ICD10CM|Zoster [herpes zoster]|Zoster [herpes zoster] +C0019360|T047|HT|B02|ICD10CM|Zoster [herpes zoster]|Zoster [herpes zoster] +C0019360|T047|HT|B02|ICD10|Zoster [herpes zoster]|Zoster [herpes zoster] +C0153017|T047|PT|B02.0|ICD10|Zoster encephalitis|Zoster encephalitis +C0153017|T047|PT|B02.0|ICD10CM|Zoster encephalitis|Zoster encephalitis +C0153017|T047|AB|B02.0|ICD10CM|Zoster encephalitis|Zoster encephalitis +C2900492|T047|ET|B02.0|ICD10CM|Zoster meningoencephalitis|Zoster meningoencephalitis +C0700503|T047|PT|B02.1|ICD10|Zoster meningitis|Zoster meningitis +C0700503|T047|PT|B02.1|ICD10CM|Zoster meningitis|Zoster meningitis +C0700503|T047|AB|B02.1|ICD10CM|Zoster meningitis|Zoster meningitis +C0153022|T047|HT|B02.2|ICD10CM|Zoster with other nervous system involvement|Zoster with other nervous system involvement +C0153022|T047|AB|B02.2|ICD10CM|Zoster with other nervous system involvement|Zoster with other nervous system involvement +C0153022|T047|PT|B02.2|ICD10|Zoster with other nervous system involvement|Zoster with other nervous system involvement +C0017409|T047|PT|B02.21|ICD10CM|Postherpetic geniculate ganglionitis|Postherpetic geniculate ganglionitis +C0017409|T047|AB|B02.21|ICD10CM|Postherpetic geniculate ganglionitis|Postherpetic geniculate ganglionitis +C0153024|T047|AB|B02.22|ICD10CM|Postherpetic trigeminal neuralgia|Postherpetic trigeminal neuralgia +C0153024|T047|PT|B02.22|ICD10CM|Postherpetic trigeminal neuralgia|Postherpetic trigeminal neuralgia +C0153025|T047|PT|B02.23|ICD10CM|Postherpetic polyneuropathy|Postherpetic polyneuropathy +C0153025|T047|AB|B02.23|ICD10CM|Postherpetic polyneuropathy|Postherpetic polyneuropathy +C1719297|T047|ET|B02.24|ICD10CM|Herpes zoster myelitis|Herpes zoster myelitis +C2900493|T047|AB|B02.24|ICD10CM|Postherpetic myelitis|Postherpetic myelitis +C2900493|T047|PT|B02.24|ICD10CM|Postherpetic myelitis|Postherpetic myelitis +C2900495|T047|AB|B02.29|ICD10CM|Other postherpetic nervous system involvement|Other postherpetic nervous system involvement +C2900495|T047|PT|B02.29|ICD10CM|Other postherpetic nervous system involvement|Other postherpetic nervous system involvement +C2900494|T047|ET|B02.29|ICD10CM|Postherpetic radiculopathy|Postherpetic radiculopathy +C0019364|T047|HT|B02.3|ICD10CM|Zoster ocular disease|Zoster ocular disease +C0019364|T047|AB|B02.3|ICD10CM|Zoster ocular disease|Zoster ocular disease +C0019364|T047|PT|B02.3|ICD10|Zoster ocular disease|Zoster ocular disease +C0019364|T047|AB|B02.30|ICD10CM|Zoster ocular disease, unspecified|Zoster ocular disease, unspecified +C0019364|T047|PT|B02.30|ICD10CM|Zoster ocular disease, unspecified|Zoster ocular disease, unspecified +C2900497|T047|AB|B02.31|ICD10CM|Zoster conjunctivitis|Zoster conjunctivitis +C2900497|T047|PT|B02.31|ICD10CM|Zoster conjunctivitis|Zoster conjunctivitis +C2900498|T047|AB|B02.32|ICD10CM|Zoster iridocyclitis|Zoster iridocyclitis +C2900498|T047|PT|B02.32|ICD10CM|Zoster iridocyclitis|Zoster iridocyclitis +C0153027|T047|ET|B02.33|ICD10CM|Herpes zoster keratoconjunctivitis|Herpes zoster keratoconjunctivitis +C2900499|T047|AB|B02.33|ICD10CM|Zoster keratitis|Zoster keratitis +C2900499|T047|PT|B02.33|ICD10CM|Zoster keratitis|Zoster keratitis +C2900500|T047|AB|B02.34|ICD10CM|Zoster scleritis|Zoster scleritis +C2900500|T047|PT|B02.34|ICD10CM|Zoster scleritis|Zoster scleritis +C2900502|T047|AB|B02.39|ICD10CM|Other herpes zoster eye disease|Other herpes zoster eye disease +C2900502|T047|PT|B02.39|ICD10CM|Other herpes zoster eye disease|Other herpes zoster eye disease +C2900501|T047|ET|B02.39|ICD10CM|Zoster blepharitis|Zoster blepharitis +C0276248|T047|PT|B02.7|ICD10CM|Disseminated zoster|Disseminated zoster +C0276248|T047|AB|B02.7|ICD10CM|Disseminated zoster|Disseminated zoster +C0276248|T047|PT|B02.7|ICD10|Disseminated zoster|Disseminated zoster +C0153031|T047|ET|B02.8|ICD10CM|Herpes zoster otitis externa|Herpes zoster otitis externa +C0276249|T047|PT|B02.8|ICD10|Zoster with other complications|Zoster with other complications +C0276249|T047|PT|B02.8|ICD10CM|Zoster with other complications|Zoster with other complications +C0276249|T047|AB|B02.8|ICD10CM|Zoster with other complications|Zoster with other complications +C0019360|T047|ET|B02.9|ICD10CM|Zoster NOS|Zoster NOS +C0348190|T047|PT|B02.9|ICD10|Zoster without complication|Zoster without complication +C0348190|T047|AB|B02.9|ICD10CM|Zoster without complications|Zoster without complications +C0348190|T047|PT|B02.9|ICD10CM|Zoster without complications|Zoster without complications +C0037354|T047|PT|B03|ICD10|Smallpox|Smallpox +C0037354|T047|PT|B03|ICD10CM|Smallpox|Smallpox +C0037354|T047|AB|B03|ICD10CM|Smallpox|Smallpox +C0276180|T047|PT|B04|ICD10|Monkeypox|Monkeypox +C0276180|T047|PT|B04|ICD10CM|Monkeypox|Monkeypox +C0276180|T047|AB|B04|ICD10CM|Monkeypox|Monkeypox +C0025007|T047|HT|B05|ICD10|Measles|Measles +C0025007|T047|HT|B05|ICD10CM|Measles|Measles +C0025007|T047|AB|B05|ICD10CM|Measles|Measles +C0025007|T047|ET|B05|ICD10CM|morbilli|morbilli +C0494085|T047|PT|B05.0|ICD10CM|Measles complicated by encephalitis|Measles complicated by encephalitis +C0494085|T047|AB|B05.0|ICD10CM|Measles complicated by encephalitis|Measles complicated by encephalitis +C0494085|T047|PT|B05.0|ICD10|Measles complicated by encephalitis|Measles complicated by encephalitis +C0153048|T047|ET|B05.0|ICD10CM|Postmeasles encephalitis|Postmeasles encephalitis +C0348980|T047|PT|B05.1|ICD10CM|Measles complicated by meningitis|Measles complicated by meningitis +C0348980|T047|AB|B05.1|ICD10CM|Measles complicated by meningitis|Measles complicated by meningitis +C0348980|T047|PT|B05.1|ICD10|Measles complicated by meningitis|Measles complicated by meningitis +C0338390|T047|ET|B05.1|ICD10CM|Postmeasles meningitis|Postmeasles meningitis +C0494086|T047|PT|B05.2|ICD10|Measles complicated by pneumonia|Measles complicated by pneumonia +C0494086|T047|PT|B05.2|ICD10CM|Measles complicated by pneumonia|Measles complicated by pneumonia +C0494086|T047|AB|B05.2|ICD10CM|Measles complicated by pneumonia|Measles complicated by pneumonia +C1112452|T047|ET|B05.2|ICD10CM|Postmeasles pneumonia|Postmeasles pneumonia +C0494087|T047|PT|B05.3|ICD10CM|Measles complicated by otitis media|Measles complicated by otitis media +C0494087|T047|AB|B05.3|ICD10CM|Measles complicated by otitis media|Measles complicated by otitis media +C0494087|T047|PT|B05.3|ICD10|Measles complicated by otitis media|Measles complicated by otitis media +C0153050|T047|ET|B05.3|ICD10CM|Postmeasles otitis media|Postmeasles otitis media +C0348981|T047|PT|B05.4|ICD10|Measles with intestinal complications|Measles with intestinal complications +C0348981|T047|PT|B05.4|ICD10CM|Measles with intestinal complications|Measles with intestinal complications +C0348981|T047|AB|B05.4|ICD10CM|Measles with intestinal complications|Measles with intestinal complications +C0348191|T047|HT|B05.8|ICD10CM|Measles with other complications|Measles with other complications +C0348191|T047|AB|B05.8|ICD10CM|Measles with other complications|Measles with other complications +C0348191|T047|PT|B05.8|ICD10|Measles with other complications|Measles with other complications +C2900503|T047|AB|B05.81|ICD10CM|Measles keratitis and keratoconjunctivitis|Measles keratitis and keratoconjunctivitis +C2900503|T047|PT|B05.81|ICD10CM|Measles keratitis and keratoconjunctivitis|Measles keratitis and keratoconjunctivitis +C0348191|T047|AB|B05.89|ICD10CM|Other measles complications|Other measles complications +C0348191|T047|PT|B05.89|ICD10CM|Other measles complications|Other measles complications +C0025007|T047|ET|B05.9|ICD10CM|Measles NOS|Measles NOS +C0348192|T047|PT|B05.9|ICD10CM|Measles without complication|Measles without complication +C0348192|T047|AB|B05.9|ICD10CM|Measles without complication|Measles without complication +C0348192|T047|PT|B05.9|ICD10|Measles without complication|Measles without complication +C0035920|T047|HT|B06|ICD10|Rubella [German measles]|Rubella [German measles] +C0035920|T047|AB|B06|ICD10CM|Rubella [German measles]|Rubella [German measles] +C0035920|T047|HT|B06|ICD10CM|Rubella [German measles]|Rubella [German measles] +C2937267|T047|PT|B06.0|ICD10|Rubella with neurological complications|Rubella with neurological complications +C2937267|T047|HT|B06.0|ICD10CM|Rubella with neurological complications|Rubella with neurological complications +C2937267|T047|AB|B06.0|ICD10CM|Rubella with neurological complications|Rubella with neurological complications +C2937267|T047|AB|B06.00|ICD10CM|Rubella with neurological complication, unspecified|Rubella with neurological complication, unspecified +C2937267|T047|PT|B06.00|ICD10CM|Rubella with neurological complication, unspecified|Rubella with neurological complication, unspecified +C0238099|T047|PT|B06.01|ICD10CM|Rubella encephalitis|Rubella encephalitis +C0238099|T047|AB|B06.01|ICD10CM|Rubella encephalitis|Rubella encephalitis +C0276307|T047|ET|B06.01|ICD10CM|Rubella meningoencephalitis|Rubella meningoencephalitis +C2900504|T047|PT|B06.02|ICD10CM|Rubella meningitis|Rubella meningitis +C2900504|T047|AB|B06.02|ICD10CM|Rubella meningitis|Rubella meningitis +C2900505|T047|AB|B06.09|ICD10CM|Other neurological complications of rubella|Other neurological complications of rubella +C2900505|T047|PT|B06.09|ICD10CM|Other neurological complications of rubella|Other neurological complications of rubella +C0348193|T047|HT|B06.8|ICD10CM|Rubella with other complications|Rubella with other complications +C0348193|T047|AB|B06.8|ICD10CM|Rubella with other complications|Rubella with other complications +C0348193|T047|PT|B06.8|ICD10|Rubella with other complications|Rubella with other complications +C2911579|T047|PT|B06.81|ICD10CM|Rubella pneumonia|Rubella pneumonia +C2911579|T047|AB|B06.81|ICD10CM|Rubella pneumonia|Rubella pneumonia +C0276308|T047|PT|B06.82|ICD10CM|Rubella arthritis|Rubella arthritis +C0276308|T047|AB|B06.82|ICD10CM|Rubella arthritis|Rubella arthritis +C0348193|T047|AB|B06.89|ICD10CM|Other rubella complications|Other rubella complications +C0348193|T047|PT|B06.89|ICD10CM|Other rubella complications|Other rubella complications +C0035920|T047|ET|B06.9|ICD10CM|Rubella NOS|Rubella NOS +C0348194|T047|PT|B06.9|ICD10CM|Rubella without complication|Rubella without complication +C0348194|T047|AB|B06.9|ICD10CM|Rubella without complication|Rubella without complication +C0348194|T047|PT|B06.9|ICD10|Rubella without complication|Rubella without complication +C0043037|T047|ET|B07|ICD10CM|verruca simplex|verruca simplex +C0043037|T047|ET|B07|ICD10CM|verruca vulgaris|verruca vulgaris +C0043037|T047|HT|B07|ICD10CM|Viral warts|Viral warts +C0043037|T047|AB|B07|ICD10CM|Viral warts|Viral warts +C0043037|T047|PT|B07|ICD10|Viral warts|Viral warts +C0043037|T047|ET|B07|ICD10CM|viral warts due to human papillomavirus|viral warts due to human papillomavirus +C0042548|T047|PT|B07.0|ICD10CM|Plantar wart|Plantar wart +C0042548|T047|AB|B07.0|ICD10CM|Plantar wart|Plantar wart +C0042548|T047|ET|B07.0|ICD10CM|Verruca plantaris|Verruca plantaris +C0043037|T047|ET|B07.8|ICD10CM|Common wart|Common wart +C0276262|T020|ET|B07.8|ICD10CM|Flat wart|Flat wart +C0559075|T047|AB|B07.8|ICD10CM|Other viral warts|Other viral warts +C0559075|T047|PT|B07.8|ICD10CM|Other viral warts|Other viral warts +C0276262|T020|ET|B07.8|ICD10CM|Verruca plana|Verruca plana +C0343642|T047|AB|B07.9|ICD10CM|Viral wart, unspecified|Viral wart, unspecified +C0343642|T047|PT|B07.9|ICD10CM|Viral wart, unspecified|Viral wart, unspecified +C0494088|T047|AB|B08|ICD10CM|Oth viral infect with skin and mucous membrane lesions, NEC|Oth viral infect with skin and mucous membrane lesions, NEC +C0494088|T047|HT|B08|ICD10CM|Other viral infections characterized by skin and mucous membrane lesions, not elsewhere classified|Other viral infections characterized by skin and mucous membrane lesions, not elsewhere classified +C0494088|T047|HT|B08|ICD10|Other viral infections characterized by skin and mucous membrane lesions, not elsewhere classified|Other viral infections characterized by skin and mucous membrane lesions, not elsewhere classified +C0348196|T047|PT|B08.0|ICD10|Other orthopoxvirus infections|Other orthopoxvirus infections +C0348196|T047|HT|B08.0|ICD10CM|Other orthopoxvirus infections|Other orthopoxvirus infections +C0348196|T047|AB|B08.0|ICD10CM|Other orthopoxvirus infections|Other orthopoxvirus infections +C2911580|T047|AB|B08.01|ICD10CM|Cowpox and vaccinia not from vaccine|Cowpox and vaccinia not from vaccine +C2911580|T047|HT|B08.01|ICD10CM|Cowpox and vaccinia not from vaccine|Cowpox and vaccinia not from vaccine +C0010232|T047|PT|B08.010|ICD10CM|Cowpox|Cowpox +C0010232|T047|AB|B08.010|ICD10CM|Cowpox|Cowpox +C2911581|T047|AB|B08.011|ICD10CM|Vaccinia not from vaccine|Vaccinia not from vaccine +C2911581|T047|PT|B08.011|ICD10CM|Vaccinia not from vaccine|Vaccinia not from vaccine +C0013570|T047|ET|B08.02|ICD10CM|Contagious pustular dermatitis|Contagious pustular dermatitis +C0013570|T047|ET|B08.02|ICD10CM|Ecthyma contagiosum|Ecthyma contagiosum +C0013570|T047|PT|B08.02|ICD10CM|Orf virus disease|Orf virus disease +C0013570|T047|AB|B08.02|ICD10CM|Orf virus disease|Orf virus disease +C2911582|T047|AB|B08.03|ICD10CM|Pseudocowpox [milker's node]|Pseudocowpox [milker's node] +C2911582|T047|PT|B08.03|ICD10CM|Pseudocowpox [milker's node]|Pseudocowpox [milker's node] +C0026143|T047|PT|B08.04|ICD10CM|Paravaccinia, unspecified|Paravaccinia, unspecified +C0026143|T047|AB|B08.04|ICD10CM|Paravaccinia, unspecified|Paravaccinia, unspecified +C1532229|T047|ET|B08.09|ICD10CM|Orthopoxvirus infection NOS|Orthopoxvirus infection NOS +C0348196|T047|PT|B08.09|ICD10CM|Other orthopoxvirus infections|Other orthopoxvirus infections +C0348196|T047|AB|B08.09|ICD10CM|Other orthopoxvirus infections|Other orthopoxvirus infections +C0026393|T047|PT|B08.1|ICD10CM|Molluscum contagiosum|Molluscum contagiosum +C0026393|T047|AB|B08.1|ICD10CM|Molluscum contagiosum|Molluscum contagiosum +C0026393|T047|PT|B08.1|ICD10|Molluscum contagiosum|Molluscum contagiosum +C0015231|T047|PT|B08.2|ICD10|Exanthema subitum [sixth disease]|Exanthema subitum [sixth disease] +C0015231|T047|HT|B08.2|ICD10CM|Exanthema subitum [sixth disease]|Exanthema subitum [sixth disease] +C0015231|T047|AB|B08.2|ICD10CM|Exanthema subitum [sixth disease]|Exanthema subitum [sixth disease] +C0015231|T047|ET|B08.2|ICD10CM|Roseola infantum|Roseola infantum +C0015231|T047|AB|B08.20|ICD10CM|Exanthema subitum [sixth disease], unspecified|Exanthema subitum [sixth disease], unspecified +C0015231|T047|PT|B08.20|ICD10CM|Exanthema subitum [sixth disease], unspecified|Exanthema subitum [sixth disease], unspecified +C0015231|T047|ET|B08.20|ICD10CM|Roseola infantum, unspecified|Roseola infantum, unspecified +C2240388|T047|AB|B08.21|ICD10CM|Exanthema subitum [sixth disease] due to human herpesvirus 6|Exanthema subitum [sixth disease] due to human herpesvirus 6 +C2240388|T047|PT|B08.21|ICD10CM|Exanthema subitum [sixth disease] due to human herpesvirus 6|Exanthema subitum [sixth disease] due to human herpesvirus 6 +C2240388|T047|ET|B08.21|ICD10CM|Roseola infantum due to human herpesvirus 6|Roseola infantum due to human herpesvirus 6 +C2911584|T047|AB|B08.22|ICD10CM|Exanthema subitum [sixth disease] due to human herpesvirus 7|Exanthema subitum [sixth disease] due to human herpesvirus 7 +C2911584|T047|PT|B08.22|ICD10CM|Exanthema subitum [sixth disease] due to human herpesvirus 7|Exanthema subitum [sixth disease] due to human herpesvirus 7 +C1274329|T047|ET|B08.22|ICD10CM|Roseola infantum due to human herpesvirus 7|Roseola infantum due to human herpesvirus 7 +C0085273|T047|PT|B08.3|ICD10CM|Erythema infectiosum [fifth disease]|Erythema infectiosum [fifth disease] +C0085273|T047|AB|B08.3|ICD10CM|Erythema infectiosum [fifth disease]|Erythema infectiosum [fifth disease] +C0085273|T047|PT|B08.3|ICD10|Erythema infectiosum [fifth disease]|Erythema infectiosum [fifth disease] +C0018572|T047|PT|B08.4|ICD10|Enteroviral vesicular stomatitis with exanthem|Enteroviral vesicular stomatitis with exanthem +C0018572|T047|PT|B08.4|ICD10CM|Enteroviral vesicular stomatitis with exanthem|Enteroviral vesicular stomatitis with exanthem +C0018572|T047|AB|B08.4|ICD10CM|Enteroviral vesicular stomatitis with exanthem|Enteroviral vesicular stomatitis with exanthem +C0018572|T047|ET|B08.4|ICD10CM|Hand, foot and mouth disease|Hand, foot and mouth disease +C0019338|T047|PT|B08.5|ICD10CM|Enteroviral vesicular pharyngitis|Enteroviral vesicular pharyngitis +C0019338|T047|AB|B08.5|ICD10CM|Enteroviral vesicular pharyngitis|Enteroviral vesicular pharyngitis +C0019338|T047|PT|B08.5|ICD10|Enteroviral vesicular pharyngitis|Enteroviral vesicular pharyngitis +C0019338|T047|ET|B08.5|ICD10CM|Herpangina|Herpangina +C2368006|T047|AB|B08.6|ICD10CM|Parapoxvirus infections|Parapoxvirus infections +C2368006|T047|HT|B08.6|ICD10CM|Parapoxvirus infections|Parapoxvirus infections +C2368006|T047|AB|B08.60|ICD10CM|Parapoxvirus infection, unspecified|Parapoxvirus infection, unspecified +C2368006|T047|PT|B08.60|ICD10CM|Parapoxvirus infection, unspecified|Parapoxvirus infection, unspecified +C2349765|T047|AB|B08.61|ICD10CM|Bovine stomatitis|Bovine stomatitis +C2349765|T047|PT|B08.61|ICD10CM|Bovine stomatitis|Bovine stomatitis +C0276191|T047|PT|B08.62|ICD10CM|Sealpox|Sealpox +C0276191|T047|AB|B08.62|ICD10CM|Sealpox|Sealpox +C2349855|T047|AB|B08.69|ICD10CM|Other parapoxvirus infections|Other parapoxvirus infections +C2349855|T047|PT|B08.69|ICD10CM|Other parapoxvirus infections|Other parapoxvirus infections +C2349857|T047|AB|B08.7|ICD10CM|Yatapoxvirus infections|Yatapoxvirus infections +C2349857|T047|HT|B08.7|ICD10CM|Yatapoxvirus infections|Yatapoxvirus infections +C2349857|T047|AB|B08.70|ICD10CM|Yatapoxvirus infection, unspecified|Yatapoxvirus infection, unspecified +C2349857|T047|PT|B08.70|ICD10CM|Yatapoxvirus infection, unspecified|Yatapoxvirus infection, unspecified +C2911585|T047|AB|B08.71|ICD10CM|Tanapox virus disease|Tanapox virus disease +C2911585|T047|PT|B08.71|ICD10CM|Tanapox virus disease|Tanapox virus disease +C2911586|T047|ET|B08.72|ICD10CM|Yaba monkey tumor disease|Yaba monkey tumor disease +C2911587|T047|AB|B08.72|ICD10CM|Yaba pox virus disease|Yaba pox virus disease +C2911587|T047|PT|B08.72|ICD10CM|Yaba pox virus disease|Yaba pox virus disease +C2911588|T047|AB|B08.79|ICD10CM|Other yatapoxvirus infections|Other yatapoxvirus infections +C2911588|T047|PT|B08.79|ICD10CM|Other yatapoxvirus infections|Other yatapoxvirus infections +C0276424|T047|ET|B08.8|ICD10CM|Enteroviral lymphonodular pharyngitis|Enteroviral lymphonodular pharyngitis +C0016514|T047|ET|B08.8|ICD10CM|Foot-and-mouth disease|Foot-and-mouth disease +C0494089|T047|AB|B08.8|ICD10CM|Oth viral infections with skin and mucous membrane lesions|Oth viral infections with skin and mucous membrane lesions +C0494089|T047|PT|B08.8|ICD10CM|Other specified viral infections characterized by skin and mucous membrane lesions|Other specified viral infections characterized by skin and mucous membrane lesions +C0494089|T047|PT|B08.8|ICD10|Other specified viral infections characterized by skin and mucous membrane lesions|Other specified viral infections characterized by skin and mucous membrane lesions +C2911589|T047|ET|B08.8|ICD10CM|Poxvirus NEC|Poxvirus NEC +C0348184|T047|AB|B09|ICD10CM|Unsp viral infection with skin and mucous membrane lesions|Unsp viral infection with skin and mucous membrane lesions +C0348184|T047|PT|B09|ICD10CM|Unspecified viral infection characterized by skin and mucous membrane lesions|Unspecified viral infection characterized by skin and mucous membrane lesions +C0348184|T047|PT|B09|ICD10|Unspecified viral infection characterized by skin and mucous membrane lesions|Unspecified viral infection characterized by skin and mucous membrane lesions +C1396414|T047|ET|B09|ICD10CM|Viral enanthema NOS|Viral enanthema NOS +C0153062|T047|ET|B09|ICD10CM|Viral exanthema NOS|Viral exanthema NOS +C1955628|T047|AB|B10|ICD10CM|Other human herpesviruses|Other human herpesviruses +C1955628|T047|HT|B10|ICD10CM|Other human herpesviruses|Other human herpesviruses +C1955628|T047|HT|B10-B10|ICD10CM|Other human herpesviruses (B10)|Other human herpesviruses (B10) +C1955630|T047|HT|B10.0|ICD10CM|Other human herpesvirus encephalitis|Other human herpesvirus encephalitis +C1955630|T047|AB|B10.0|ICD10CM|Other human herpesvirus encephalitis|Other human herpesvirus encephalitis +C1955629|T047|PT|B10.01|ICD10CM|Human herpesvirus 6 encephalitis|Human herpesvirus 6 encephalitis +C1955629|T047|AB|B10.01|ICD10CM|Human herpesvirus 6 encephalitis|Human herpesvirus 6 encephalitis +C1955631|T047|ET|B10.09|ICD10CM|Human herpesvirus 7 encephalitis|Human herpesvirus 7 encephalitis +C1955630|T047|AB|B10.09|ICD10CM|Other human herpesvirus encephalitis|Other human herpesvirus encephalitis +C1955630|T047|PT|B10.09|ICD10CM|Other human herpesvirus encephalitis|Other human herpesvirus encephalitis +C1955633|T047|HT|B10.8|ICD10CM|Other human herpesvirus infection|Other human herpesvirus infection +C1955633|T047|AB|B10.8|ICD10CM|Other human herpesvirus infection|Other human herpesvirus infection +C0854530|T047|PT|B10.81|ICD10CM|Human herpesvirus 6 infection|Human herpesvirus 6 infection +C0854530|T047|AB|B10.81|ICD10CM|Human herpesvirus 6 infection|Human herpesvirus 6 infection +C1504514|T047|PT|B10.82|ICD10CM|Human herpesvirus 7 infection|Human herpesvirus 7 infection +C1504514|T047|AB|B10.82|ICD10CM|Human herpesvirus 7 infection|Human herpesvirus 7 infection +C1512508|T047|ET|B10.89|ICD10CM|Human herpesvirus 8 infection|Human herpesvirus 8 infection +C1955634|T047|ET|B10.89|ICD10CM|Kaposi's sarcoma-associated herpesvirus infection|Kaposi's sarcoma-associated herpesvirus infection +C1955633|T047|AB|B10.89|ICD10CM|Other human herpesvirus infection|Other human herpesvirus infection +C1955633|T047|PT|B10.89|ICD10CM|Other human herpesvirus infection|Other human herpesvirus infection +C0276434|T047|HT|B15|ICD10CM|Acute hepatitis A|Acute hepatitis A +C0276434|T047|AB|B15|ICD10CM|Acute hepatitis A|Acute hepatitis A +C0276434|T047|HT|B15|ICD10|Acute hepatitis A|Acute hepatitis A +C0042721|T047|HT|B15-B19|ICD10CM|Viral hepatitis (B15-B19)|Viral hepatitis (B15-B19) +C0042721|T047|HT|B15-B19.9|ICD10|Viral hepatitis|Viral hepatitis +C0153075|T047|PT|B15.0|ICD10|Hepatitis A with hepatic coma|Hepatitis A with hepatic coma +C0153075|T047|PT|B15.0|ICD10CM|Hepatitis A with hepatic coma|Hepatitis A with hepatic coma +C0153075|T047|AB|B15.0|ICD10CM|Hepatitis A with hepatic coma|Hepatitis A with hepatic coma +C2911590|T047|ET|B15.9|ICD10CM|Hepatitis A (acute)(viral) NOS|Hepatitis A (acute)(viral) NOS +C1290810|T047|PT|B15.9|ICD10|Hepatitis A without hepatic coma|Hepatitis A without hepatic coma +C1290810|T047|PT|B15.9|ICD10CM|Hepatitis A without hepatic coma|Hepatitis A without hepatic coma +C1290810|T047|AB|B15.9|ICD10CM|Hepatitis A without hepatic coma|Hepatitis A without hepatic coma +C0276609|T047|HT|B16|ICD10|Acute hepatitis B|Acute hepatitis B +C0276609|T047|HT|B16|ICD10CM|Acute hepatitis B|Acute hepatitis B +C0276609|T047|AB|B16|ICD10CM|Acute hepatitis B|Acute hepatitis B +C0451705|T047|PT|B16.0|ICD10|Acute hepatitis B with delta-agent (coinfection) with hepatic coma|Acute hepatitis B with delta-agent (coinfection) with hepatic coma +C2911591|T047|AB|B16.0|ICD10CM|Acute hepatitis B with delta-agent with hepatic coma|Acute hepatitis B with delta-agent with hepatic coma +C2911591|T047|PT|B16.0|ICD10CM|Acute hepatitis B with delta-agent with hepatic coma|Acute hepatitis B with delta-agent with hepatic coma +C0451704|T047|PT|B16.1|ICD10|Acute hepatitis B with delta-agent (coinfection) without hepatic coma|Acute hepatitis B with delta-agent (coinfection) without hepatic coma +C0494092|T047|AB|B16.1|ICD10CM|Acute hepatitis B with delta-agent without hepatic coma|Acute hepatitis B with delta-agent without hepatic coma +C0494092|T047|PT|B16.1|ICD10CM|Acute hepatitis B with delta-agent without hepatic coma|Acute hepatitis B with delta-agent without hepatic coma +C0494092|T047|PT|B16.2|ICD10CM|Acute hepatitis B without delta-agent with hepatic coma|Acute hepatitis B without delta-agent with hepatic coma +C0494092|T047|AB|B16.2|ICD10CM|Acute hepatitis B without delta-agent with hepatic coma|Acute hepatitis B without delta-agent with hepatic coma +C0494092|T047|PT|B16.2|ICD10|Acute hepatitis B without delta-agent with hepatic coma|Acute hepatitis B without delta-agent with hepatic coma +C0494093|T047|AB|B16.9|ICD10CM|Acute hepatitis B w/o delta-agent and without hepatic coma|Acute hepatitis B w/o delta-agent and without hepatic coma +C0494093|T047|PT|B16.9|ICD10CM|Acute hepatitis B without delta-agent and without hepatic coma|Acute hepatitis B without delta-agent and without hepatic coma +C0494093|T047|PT|B16.9|ICD10|Acute hepatitis B without delta-agent and without hepatic coma|Acute hepatitis B without delta-agent and without hepatic coma +C2911592|T047|ET|B16.9|ICD10CM|Hepatitis B (acute) (viral) NOS|Hepatitis B (acute) (viral) NOS +C0494094|T047|HT|B17|ICD10|Other acute viral hepatitis|Other acute viral hepatitis +C0494094|T047|AB|B17|ICD10CM|Other acute viral hepatitis|Other acute viral hepatitis +C0494094|T047|HT|B17|ICD10CM|Other acute viral hepatitis|Other acute viral hepatitis +C0400913|T047|AB|B17.0|ICD10CM|Acute delta-(super) infection of hepatitis B carrier|Acute delta-(super) infection of hepatitis B carrier +C0400913|T047|PT|B17.0|ICD10CM|Acute delta-(super) infection of hepatitis B carrier|Acute delta-(super) infection of hepatitis B carrier +C0400913|T047|PT|B17.0|ICD10|Acute delta-(super)infection of hepatitis B carrier|Acute delta-(super)infection of hepatitis B carrier +C0400914|T047|PT|B17.1|ICD10|Acute hepatitis C|Acute hepatitis C +C0400914|T047|HT|B17.1|ICD10CM|Acute hepatitis C|Acute hepatitis C +C0400914|T047|AB|B17.1|ICD10CM|Acute hepatitis C|Acute hepatitis C +C0400914|T047|ET|B17.10|ICD10CM|Acute hepatitis C NOS|Acute hepatitis C NOS +C2911593|T047|AB|B17.10|ICD10CM|Acute hepatitis C without hepatic coma|Acute hepatitis C without hepatic coma +C2911593|T047|PT|B17.10|ICD10CM|Acute hepatitis C without hepatic coma|Acute hepatitis C without hepatic coma +C1456261|T047|AB|B17.11|ICD10CM|Acute hepatitis C with hepatic coma|Acute hepatitis C with hepatic coma +C1456261|T047|PT|B17.11|ICD10CM|Acute hepatitis C with hepatic coma|Acute hepatitis C with hepatic coma +C2063407|T047|PT|B17.2|ICD10CM|Acute hepatitis E|Acute hepatitis E +C2063407|T047|AB|B17.2|ICD10CM|Acute hepatitis E|Acute hepatitis E +C2063407|T047|PT|B17.2|ICD10|Acute hepatitis E|Acute hepatitis E +C2911594|T047|ET|B17.8|ICD10CM|Hepatitis non-A non-B (acute) (viral) NEC|Hepatitis non-A non-B (acute) (viral) NEC +C0348199|T047|PT|B17.8|ICD10CM|Other specified acute viral hepatitis|Other specified acute viral hepatitis +C0348199|T047|AB|B17.8|ICD10CM|Other specified acute viral hepatitis|Other specified acute viral hepatitis +C0348199|T047|PT|B17.8|ICD10|Other specified acute viral hepatitis|Other specified acute viral hepatitis +C0267797|T047|ET|B17.9|ICD10CM|Acute hepatitis NOS|Acute hepatitis NOS +C1386146|T047|ET|B17.9|ICD10CM|Acute infectious hepatitis NOS|Acute infectious hepatitis NOS +C0276622|T047|AB|B17.9|ICD10CM|Acute viral hepatitis, unspecified|Acute viral hepatitis, unspecified +C0276622|T047|PT|B17.9|ICD10CM|Acute viral hepatitis, unspecified|Acute viral hepatitis, unspecified +C0549126|T033|ET|B18|ICD10CM|Carrier of viral hepatitis|Carrier of viral hepatitis +C0276623|T047|HT|B18|ICD10CM|Chronic viral hepatitis|Chronic viral hepatitis +C0276623|T047|AB|B18|ICD10CM|Chronic viral hepatitis|Chronic viral hepatitis +C0276623|T047|HT|B18|ICD10|Chronic viral hepatitis|Chronic viral hepatitis +C0400918|T047|PT|B18.0|ICD10CM|Chronic viral hepatitis B with delta-agent|Chronic viral hepatitis B with delta-agent +C0400918|T047|AB|B18.0|ICD10CM|Chronic viral hepatitis B with delta-agent|Chronic viral hepatitis B with delta-agent +C0400918|T047|PT|B18.0|ICD10|Chronic viral hepatitis B with delta-agent|Chronic viral hepatitis B with delta-agent +C2911652|T033|ET|B18.1|ICD10CM|Carrier of viral hepatitis B|Carrier of viral hepatitis B +C0524909|T047|ET|B18.1|ICD10CM|Chronic (viral) hepatitis B|Chronic (viral) hepatitis B +C0276610|T047|PT|B18.1|ICD10|Chronic viral hepatitis B without delta-agent|Chronic viral hepatitis B without delta-agent +C0276610|T047|PT|B18.1|ICD10CM|Chronic viral hepatitis B without delta-agent|Chronic viral hepatitis B without delta-agent +C0276610|T047|AB|B18.1|ICD10CM|Chronic viral hepatitis B without delta-agent|Chronic viral hepatitis B without delta-agent +C0400920|T033|ET|B18.2|ICD10CM|Carrier of viral hepatitis C|Carrier of viral hepatitis C +C0524910|T047|PT|B18.2|ICD10CM|Chronic viral hepatitis C|Chronic viral hepatitis C +C0524910|T047|AB|B18.2|ICD10CM|Chronic viral hepatitis C|Chronic viral hepatitis C +C0524910|T047|PT|B18.2|ICD10|Chronic viral hepatitis C|Chronic viral hepatitis C +C4267831|T033|ET|B18.8|ICD10CM|Carrier of other viral hepatitis|Carrier of other viral hepatitis +C0348200|T047|PT|B18.8|ICD10CM|Other chronic viral hepatitis|Other chronic viral hepatitis +C0348200|T047|AB|B18.8|ICD10CM|Other chronic viral hepatitis|Other chronic viral hepatitis +C0348200|T047|PT|B18.8|ICD10|Other chronic viral hepatitis|Other chronic viral hepatitis +C0549126|T033|ET|B18.9|ICD10CM|Carrier of unspecified viral hepatitis|Carrier of unspecified viral hepatitis +C0276623|T047|PT|B18.9|ICD10|Chronic viral hepatitis, unspecified|Chronic viral hepatitis, unspecified +C0276623|T047|PT|B18.9|ICD10CM|Chronic viral hepatitis, unspecified|Chronic viral hepatitis, unspecified +C0276623|T047|AB|B18.9|ICD10CM|Chronic viral hepatitis, unspecified|Chronic viral hepatitis, unspecified +C0042721|T047|HT|B19|ICD10|Unspecified viral hepatitis|Unspecified viral hepatitis +C0042721|T047|AB|B19|ICD10CM|Unspecified viral hepatitis|Unspecified viral hepatitis +C0042721|T047|HT|B19|ICD10CM|Unspecified viral hepatitis|Unspecified viral hepatitis +C0153089|T047|PT|B19.0|ICD10|Unspecified viral hepatitis hepatic with coma|Unspecified viral hepatitis hepatic with coma +C0153089|T047|AB|B19.0|ICD10CM|Unspecified viral hepatitis with hepatic coma|Unspecified viral hepatitis with hepatic coma +C0153089|T047|PT|B19.0|ICD10CM|Unspecified viral hepatitis with hepatic coma|Unspecified viral hepatitis with hepatic coma +C2911595|T047|AB|B19.1|ICD10CM|Unspecified viral hepatitis B|Unspecified viral hepatitis B +C2911595|T047|HT|B19.1|ICD10CM|Unspecified viral hepatitis B|Unspecified viral hepatitis B +C2911595|T047|ET|B19.10|ICD10CM|Unspecified viral hepatitis B NOS|Unspecified viral hepatitis B NOS +C2911596|T047|AB|B19.10|ICD10CM|Unspecified viral hepatitis B without hepatic coma|Unspecified viral hepatitis B without hepatic coma +C2911596|T047|PT|B19.10|ICD10CM|Unspecified viral hepatitis B without hepatic coma|Unspecified viral hepatitis B without hepatic coma +C2911597|T047|AB|B19.11|ICD10CM|Unspecified viral hepatitis B with hepatic coma|Unspecified viral hepatitis B with hepatic coma +C2911597|T047|PT|B19.11|ICD10CM|Unspecified viral hepatitis B with hepatic coma|Unspecified viral hepatitis B with hepatic coma +C0019196|T047|AB|B19.2|ICD10CM|Unspecified viral hepatitis C|Unspecified viral hepatitis C +C0019196|T047|HT|B19.2|ICD10CM|Unspecified viral hepatitis C|Unspecified viral hepatitis C +C1456263|T047|AB|B19.20|ICD10CM|Unspecified viral hepatitis C without hepatic coma|Unspecified viral hepatitis C without hepatic coma +C1456263|T047|PT|B19.20|ICD10CM|Unspecified viral hepatitis C without hepatic coma|Unspecified viral hepatitis C without hepatic coma +C0019196|T047|ET|B19.20|ICD10CM|Viral hepatitis C NOS|Viral hepatitis C NOS +C1456265|T047|AB|B19.21|ICD10CM|Unspecified viral hepatitis C with hepatic coma|Unspecified viral hepatitis C with hepatic coma +C1456265|T047|PT|B19.21|ICD10CM|Unspecified viral hepatitis C with hepatic coma|Unspecified viral hepatitis C with hepatic coma +C0489954|T047|PT|B19.9|ICD10|Unspecified viral hepatitis without hepatic coma|Unspecified viral hepatitis without hepatic coma +C0489954|T047|PT|B19.9|ICD10CM|Unspecified viral hepatitis without hepatic coma|Unspecified viral hepatitis without hepatic coma +C0489954|T047|AB|B19.9|ICD10CM|Unspecified viral hepatitis without hepatic coma|Unspecified viral hepatitis without hepatic coma +C0042721|T047|ET|B19.9|ICD10CM|Viral hepatitis NOS|Viral hepatitis NOS +C0001175|T047|ET|B20|ICD10CM|acquired immune deficiency syndrome [AIDS]|acquired immune deficiency syndrome [AIDS] +C0001857|T047|ET|B20|ICD10CM|AIDS-related complex [ARC]|AIDS-related complex [ARC] +C0864665|T047|ET|B20|ICD10CM|HIV infection, symptomatic|HIV infection, symptomatic +C0019693|T047|AB|B20|ICD10CM|Human immunodeficiency virus [HIV] disease|Human immunodeficiency virus [HIV] disease +C0019693|T047|PT|B20|ICD10CM|Human immunodeficiency virus [HIV] disease|Human immunodeficiency virus [HIV] disease +C0348209|T047|HT|B20|ICD10|Human immunodeficiency virus [HIV] disease resulting in infectious and parasitic diseases|Human immunodeficiency virus [HIV] disease resulting in infectious and parasitic diseases +C0019693|T047|HT|B20-B20|ICD10CM|Human immunodeficiency virus [HIV] disease (B20)|Human immunodeficiency virus [HIV] disease (B20) +C0019693|T047|HT|B20-B24.9|ICD10|Human immunodeficiency virus [HIV] disease|Human immunodeficiency virus [HIV] disease +C0348969|T047|PT|B20.0|ICD10|HIV disease resulting in mycobacterial infection|HIV disease resulting in mycobacterial infection +C0348204|T047|PT|B20.1|ICD10|HIV disease resulting in other bacterial infections|HIV disease resulting in other bacterial infections +C0348982|T047|PT|B20.2|ICD10|HIV disease resulting in cytomegaloviral disease|HIV disease resulting in cytomegaloviral disease +C0348205|T047|PT|B20.3|ICD10|HIV disease resulting in other viral infections|HIV disease resulting in other viral infections +C0348990|T047|PT|B20.4|ICD10|HIV disease resulting in candidiasis|HIV disease resulting in candidiasis +C0348206|T047|PT|B20.5|ICD10|HIV disease resulting in other mycoses|HIV disease resulting in other mycoses +C0348804|T047|PT|B20.6|ICD10|HIV disease resulting in Pneumocystis carinii pneumonia|HIV disease resulting in Pneumocystis carinii pneumonia +C0348207|T047|PT|B20.7|ICD10|HIV disease resulting in multiple infections|HIV disease resulting in multiple infections +C0348209|T047|PT|B20.8|ICD10|HIV disease resulting in other infectious and parasitic diseases|HIV disease resulting in other infectious and parasitic diseases +C0348209|T047|PT|B20.9|ICD10|HIV disease resulting in unspecified infectious or parasitic disease|HIV disease resulting in unspecified infectious or parasitic disease +C0348213|T191|HT|B21|ICD10|Human immunodeficiency virus [HIV] disease resulting in malignant neoplasms|Human immunodeficiency virus [HIV] disease resulting in malignant neoplasms +C0276535|T191|PT|B21.0|ICD10|HIV disease resulting in Kaposi's sarcoma|HIV disease resulting in Kaposi's sarcoma +C0452189|T047|PT|B21.1|ICD10|HIV disease resulting in Burkitt's lymphoma|HIV disease resulting in Burkitt's lymphoma +C0452192|T047|PT|B21.2|ICD10|HIV disease resulting in other types of non-Hodgkin's lymphoma|HIV disease resulting in other types of non-Hodgkin's lymphoma +C0348211|T047|PT|B21.3|ICD10|HIV disease resulting in other malignant neoplasms of lymphoid, haematopoietic and related tissue|HIV disease resulting in other malignant neoplasms of lymphoid, haematopoietic and related tissue +C0348211|T047|PT|B21.3|ICD10AE|HIV disease resulting in other malignant neoplasms of lymphoid, hematopoietic and related tissue|HIV disease resulting in other malignant neoplasms of lymphoid, hematopoietic and related tissue +C0349036|T191|PT|B21.7|ICD10|HIV disease resulting in multiple malignant neoplasms|HIV disease resulting in multiple malignant neoplasms +C0348212|T047|PT|B21.8|ICD10|HIV disease resulting in other malignant neoplasms|HIV disease resulting in other malignant neoplasms +C0348213|T191|PT|B21.9|ICD10|HIV disease resulting in unspecified malignant neoplasm|HIV disease resulting in unspecified malignant neoplasm +C0494096|T047|HT|B22|ICD10|Human immunodeficiency virus [HIV] disease resulting in other specified diseases|Human immunodeficiency virus [HIV] disease resulting in other specified diseases +C0206019|T047|PT|B22.0|ICD10|HIV disease resulting in encephalopathy|HIV disease resulting in encephalopathy +C0348821|T047|PT|B22.1|ICD10|HIV disease resulting in lymphoid interstitial pneumonitis|HIV disease resulting in lymphoid interstitial pneumonitis +C0343755|T047|PT|B22.2|ICD10|HIV disease resulting in wasting syndrome|HIV disease resulting in wasting syndrome +C0348214|T047|PT|B22.7|ICD10|HIV disease resulting in multiple diseases classified elsewhere|HIV disease resulting in multiple diseases classified elsewhere +C0494097|T047|HT|B23|ICD10|Human immunodeficiency virus [HIV] disease resulting in other conditions|Human immunodeficiency virus [HIV] disease resulting in other conditions +C0343752|T047|PT|B23.0|ICD10|Acute HIV infection syndrome|Acute HIV infection syndrome +C0494099|T047|PT|B23.1|ICD10|HIV disease resulting in (persistent) generalized lymphadenopathy|HIV disease resulting in (persistent) generalized lymphadenopathy +C0868898|T047|PT|B23.2|ICD10|HIV disease resulting in haematological and immunological abnormalities, not elsewhere classified|HIV disease resulting in haematological and immunological abnormalities, not elsewhere classified +C0868898|T047|PT|B23.2|ICD10AE|HIV disease resulting in hematological and immunological abnormalities, not elsewhere classified|HIV disease resulting in hematological and immunological abnormalities, not elsewhere classified +C0276555|T047|PT|B23.8|ICD10|HIV disease resulting in other specified conditions|HIV disease resulting in other specified conditions +C0019693|T047|PT|B24|ICD10|Unspecified human immunodeficiency virus [HIV] disease|Unspecified human immunodeficiency virus [HIV] disease +C0010823|T047|HT|B25|ICD10|Cytomegaloviral disease|Cytomegaloviral disease +C0010823|T047|HT|B25|ICD10CM|Cytomegaloviral disease|Cytomegaloviral disease +C0010823|T047|AB|B25|ICD10CM|Cytomegaloviral disease|Cytomegaloviral disease +C0348217|T047|HT|B25-B34|ICD10CM|Other viral diseases (B25-B34)|Other viral diseases (B25-B34) +C0348217|T047|HT|B25-B34.9|ICD10|Other viral diseases|Other viral diseases +C0276253|T047|PT|B25.0|ICD10|Cytomegaloviral pneumonitis|Cytomegaloviral pneumonitis +C0276253|T047|PT|B25.0|ICD10CM|Cytomegaloviral pneumonitis|Cytomegaloviral pneumonitis +C0276253|T047|AB|B25.0|ICD10CM|Cytomegaloviral pneumonitis|Cytomegaloviral pneumonitis +C0276252|T047|PT|B25.1|ICD10CM|Cytomegaloviral hepatitis|Cytomegaloviral hepatitis +C0276252|T047|AB|B25.1|ICD10CM|Cytomegaloviral hepatitis|Cytomegaloviral hepatitis +C0276252|T047|PT|B25.1|ICD10|Cytomegaloviral hepatitis|Cytomegaloviral hepatitis +C0341465|T047|PT|B25.2|ICD10|Cytomegaloviral pancreatitis|Cytomegaloviral pancreatitis +C0341465|T047|PT|B25.2|ICD10CM|Cytomegaloviral pancreatitis|Cytomegaloviral pancreatitis +C0341465|T047|AB|B25.2|ICD10CM|Cytomegaloviral pancreatitis|Cytomegaloviral pancreatitis +C0238097|T047|ET|B25.8|ICD10CM|Cytomegaloviral encephalitis|Cytomegaloviral encephalitis +C0348218|T047|PT|B25.8|ICD10CM|Other cytomegaloviral diseases|Other cytomegaloviral diseases +C0348218|T047|AB|B25.8|ICD10CM|Other cytomegaloviral diseases|Other cytomegaloviral diseases +C0348218|T047|PT|B25.8|ICD10|Other cytomegaloviral diseases|Other cytomegaloviral diseases +C0010823|T047|PT|B25.9|ICD10|Cytomegaloviral disease, unspecified|Cytomegaloviral disease, unspecified +C0010823|T047|PT|B25.9|ICD10CM|Cytomegaloviral disease, unspecified|Cytomegaloviral disease, unspecified +C0010823|T047|AB|B25.9|ICD10CM|Cytomegaloviral disease, unspecified|Cytomegaloviral disease, unspecified +C0026780|T047|ET|B26|ICD10CM|epidemic parotitis|epidemic parotitis +C0026780|T047|ET|B26|ICD10CM|infectious parotitis|infectious parotitis +C0026780|T047|HT|B26|ICD10CM|Mumps|Mumps +C0026780|T047|AB|B26|ICD10CM|Mumps|Mumps +C0026780|T047|HT|B26|ICD10|Mumps|Mumps +C0153091|T047|PT|B26.0|ICD10|Mumps orchitis|Mumps orchitis +C0153091|T047|PT|B26.0|ICD10CM|Mumps orchitis|Mumps orchitis +C0153091|T047|AB|B26.0|ICD10CM|Mumps orchitis|Mumps orchitis +C0153092|T047|PT|B26.1|ICD10CM|Mumps meningitis|Mumps meningitis +C0153092|T047|AB|B26.1|ICD10CM|Mumps meningitis|Mumps meningitis +C0153092|T047|PT|B26.1|ICD10|Mumps meningitis|Mumps meningitis +C0153093|T047|PT|B26.2|ICD10|Mumps encephalitis|Mumps encephalitis +C0153093|T047|PT|B26.2|ICD10CM|Mumps encephalitis|Mumps encephalitis +C0153093|T047|AB|B26.2|ICD10CM|Mumps encephalitis|Mumps encephalitis +C0153094|T047|PT|B26.3|ICD10CM|Mumps pancreatitis|Mumps pancreatitis +C0153094|T047|AB|B26.3|ICD10CM|Mumps pancreatitis|Mumps pancreatitis +C0153094|T047|PT|B26.3|ICD10|Mumps pancreatitis|Mumps pancreatitis +C0348220|T047|PT|B26.8|ICD10|Mumps with other complications|Mumps with other complications +C0348220|T047|HT|B26.8|ICD10CM|Mumps with other complications|Mumps with other complications +C0348220|T047|AB|B26.8|ICD10CM|Mumps with other complications|Mumps with other complications +C0153096|T047|PT|B26.81|ICD10CM|Mumps hepatitis|Mumps hepatitis +C0153096|T047|AB|B26.81|ICD10CM|Mumps hepatitis|Mumps hepatitis +C0276320|T047|PT|B26.82|ICD10CM|Mumps myocarditis|Mumps myocarditis +C0276320|T047|AB|B26.82|ICD10CM|Mumps myocarditis|Mumps myocarditis +C0276319|T047|PT|B26.83|ICD10CM|Mumps nephritis|Mumps nephritis +C0276319|T047|AB|B26.83|ICD10CM|Mumps nephritis|Mumps nephritis +C0153097|T047|PT|B26.84|ICD10CM|Mumps polyneuropathy|Mumps polyneuropathy +C0153097|T047|AB|B26.84|ICD10CM|Mumps polyneuropathy|Mumps polyneuropathy +C0276321|T047|PT|B26.85|ICD10CM|Mumps arthritis|Mumps arthritis +C0276321|T047|AB|B26.85|ICD10CM|Mumps arthritis|Mumps arthritis +C0348220|T047|AB|B26.89|ICD10CM|Other mumps complications|Other mumps complications +C0348220|T047|PT|B26.89|ICD10CM|Other mumps complications|Other mumps complications +C0026780|T047|ET|B26.9|ICD10CM|Mumps NOS|Mumps NOS +C0026780|T047|ET|B26.9|ICD10CM|Mumps parotitis NOS|Mumps parotitis NOS +C1306848|T047|PT|B26.9|ICD10|Mumps without complication|Mumps without complication +C1306848|T047|PT|B26.9|ICD10CM|Mumps without complication|Mumps without complication +C1306848|T047|AB|B26.9|ICD10CM|Mumps without complication|Mumps without complication +C0021345|T047|ET|B27|ICD10CM|glandular fever|glandular fever +C0021345|T047|HT|B27|ICD10CM|Infectious mononucleosis|Infectious mononucleosis +C0021345|T047|AB|B27|ICD10CM|Infectious mononucleosis|Infectious mononucleosis +C0021345|T047|HT|B27|ICD10|Infectious mononucleosis|Infectious mononucleosis +C0021345|T047|ET|B27|ICD10CM|monocytic angina|monocytic angina +C0021345|T047|ET|B27|ICD10CM|Pfeiffer's disease|Pfeiffer's disease +C0021345|T047|HT|B27.0|ICD10CM|Gammaherpesviral mononucleosis|Gammaherpesviral mononucleosis +C0021345|T047|AB|B27.0|ICD10CM|Gammaherpesviral mononucleosis|Gammaherpesviral mononucleosis +C0021345|T047|PT|B27.0|ICD10|Gammaherpesviral mononucleosis|Gammaherpesviral mononucleosis +C2911598|T047|ET|B27.0|ICD10CM|Mononucleosis due to Epstein-Barr virus|Mononucleosis due to Epstein-Barr virus +C2911599|T047|AB|B27.00|ICD10CM|Gammaherpesviral mononucleosis without complication|Gammaherpesviral mononucleosis without complication +C2911599|T047|PT|B27.00|ICD10CM|Gammaherpesviral mononucleosis without complication|Gammaherpesviral mononucleosis without complication +C2911600|T047|PT|B27.01|ICD10CM|Gammaherpesviral mononucleosis with polyneuropathy|Gammaherpesviral mononucleosis with polyneuropathy +C2911600|T047|AB|B27.01|ICD10CM|Gammaherpesviral mononucleosis with polyneuropathy|Gammaherpesviral mononucleosis with polyneuropathy +C2911601|T047|PT|B27.02|ICD10CM|Gammaherpesviral mononucleosis with meningitis|Gammaherpesviral mononucleosis with meningitis +C2911601|T047|AB|B27.02|ICD10CM|Gammaherpesviral mononucleosis with meningitis|Gammaherpesviral mononucleosis with meningitis +C2911603|T047|AB|B27.09|ICD10CM|Gammaherpesviral mononucleosis with other complications|Gammaherpesviral mononucleosis with other complications +C2911603|T047|PT|B27.09|ICD10CM|Gammaherpesviral mononucleosis with other complications|Gammaherpesviral mononucleosis with other complications +C2911602|T047|ET|B27.09|ICD10CM|Hepatomegaly in gammaherpesviral mononucleosis|Hepatomegaly in gammaherpesviral mononucleosis +C0276254|T047|PT|B27.1|ICD10|Cytomegaloviral mononucleosis|Cytomegaloviral mononucleosis +C0276254|T047|HT|B27.1|ICD10CM|Cytomegaloviral mononucleosis|Cytomegaloviral mononucleosis +C0276254|T047|AB|B27.1|ICD10CM|Cytomegaloviral mononucleosis|Cytomegaloviral mononucleosis +C2911604|T047|PT|B27.10|ICD10CM|Cytomegaloviral mononucleosis without complications|Cytomegaloviral mononucleosis without complications +C2911604|T047|AB|B27.10|ICD10CM|Cytomegaloviral mononucleosis without complications|Cytomegaloviral mononucleosis without complications +C2911605|T047|PT|B27.11|ICD10CM|Cytomegaloviral mononucleosis with polyneuropathy|Cytomegaloviral mononucleosis with polyneuropathy +C2911605|T047|AB|B27.11|ICD10CM|Cytomegaloviral mononucleosis with polyneuropathy|Cytomegaloviral mononucleosis with polyneuropathy +C2911606|T047|PT|B27.12|ICD10CM|Cytomegaloviral mononucleosis with meningitis|Cytomegaloviral mononucleosis with meningitis +C2911606|T047|AB|B27.12|ICD10CM|Cytomegaloviral mononucleosis with meningitis|Cytomegaloviral mononucleosis with meningitis +C2911608|T047|AB|B27.19|ICD10CM|Cytomegaloviral mononucleosis with other complication|Cytomegaloviral mononucleosis with other complication +C2911608|T047|PT|B27.19|ICD10CM|Cytomegaloviral mononucleosis with other complication|Cytomegaloviral mononucleosis with other complication +C2911607|T047|ET|B27.19|ICD10CM|Hepatomegaly in cytomegaloviral mononucleosis|Hepatomegaly in cytomegaloviral mononucleosis +C0348222|T047|HT|B27.8|ICD10CM|Other infectious mononucleosis|Other infectious mononucleosis +C0348222|T047|AB|B27.8|ICD10CM|Other infectious mononucleosis|Other infectious mononucleosis +C0348222|T047|PT|B27.8|ICD10|Other infectious mononucleosis|Other infectious mononucleosis +C2911609|T047|AB|B27.80|ICD10CM|Other infectious mononucleosis without complication|Other infectious mononucleosis without complication +C2911609|T047|PT|B27.80|ICD10CM|Other infectious mononucleosis without complication|Other infectious mononucleosis without complication +C2911610|T047|AB|B27.81|ICD10CM|Other infectious mononucleosis with polyneuropathy|Other infectious mononucleosis with polyneuropathy +C2911610|T047|PT|B27.81|ICD10CM|Other infectious mononucleosis with polyneuropathy|Other infectious mononucleosis with polyneuropathy +C2911611|T047|AB|B27.82|ICD10CM|Other infectious mononucleosis with meningitis|Other infectious mononucleosis with meningitis +C2911611|T047|PT|B27.82|ICD10CM|Other infectious mononucleosis with meningitis|Other infectious mononucleosis with meningitis +C2911612|T047|ET|B27.89|ICD10CM|Hepatomegaly in other infectious mononucleosis|Hepatomegaly in other infectious mononucleosis +C2911613|T047|AB|B27.89|ICD10CM|Other infectious mononucleosis with other complication|Other infectious mononucleosis with other complication +C2911613|T047|PT|B27.89|ICD10CM|Other infectious mononucleosis with other complication|Other infectious mononucleosis with other complication +C0021345|T047|PT|B27.9|ICD10|Infectious mononucleosis, unspecified|Infectious mononucleosis, unspecified +C0021345|T047|HT|B27.9|ICD10CM|Infectious mononucleosis, unspecified|Infectious mononucleosis, unspecified +C0021345|T047|AB|B27.9|ICD10CM|Infectious mononucleosis, unspecified|Infectious mononucleosis, unspecified +C2911614|T047|AB|B27.90|ICD10CM|Infectious mononucleosis, unspecified without complication|Infectious mononucleosis, unspecified without complication +C2911614|T047|PT|B27.90|ICD10CM|Infectious mononucleosis, unspecified without complication|Infectious mononucleosis, unspecified without complication +C2911615|T047|AB|B27.91|ICD10CM|Infectious mononucleosis, unspecified with polyneuropathy|Infectious mononucleosis, unspecified with polyneuropathy +C2911615|T047|PT|B27.91|ICD10CM|Infectious mononucleosis, unspecified with polyneuropathy|Infectious mononucleosis, unspecified with polyneuropathy +C2911616|T047|AB|B27.92|ICD10CM|Infectious mononucleosis, unspecified with meningitis|Infectious mononucleosis, unspecified with meningitis +C2911616|T047|PT|B27.92|ICD10CM|Infectious mononucleosis, unspecified with meningitis|Infectious mononucleosis, unspecified with meningitis +C2911617|T047|ET|B27.99|ICD10CM|Hepatomegaly in unspecified infectious mononucleosis|Hepatomegaly in unspecified infectious mononucleosis +C2911618|T047|AB|B27.99|ICD10CM|Infectious mononucleosis, unsp with other complication|Infectious mononucleosis, unsp with other complication +C2911618|T047|PT|B27.99|ICD10CM|Infectious mononucleosis, unspecified with other complication|Infectious mononucleosis, unspecified with other complication +C0009774|T047|HT|B30|ICD10CM|Viral conjunctivitis|Viral conjunctivitis +C0009774|T047|AB|B30|ICD10CM|Viral conjunctivitis|Viral conjunctivitis +C0009774|T047|HT|B30|ICD10|Viral conjunctivitis|Viral conjunctivitis +C0014493|T047|ET|B30.0|ICD10CM|Epidemic keratoconjunctivitis|Epidemic keratoconjunctivitis +C0349360|T047|PT|B30.0|ICD10CM|Keratoconjunctivitis due to adenovirus|Keratoconjunctivitis due to adenovirus +C0349360|T047|AB|B30.0|ICD10CM|Keratoconjunctivitis due to adenovirus|Keratoconjunctivitis due to adenovirus +C0349360|T047|PT|B30.0|ICD10|Keratoconjunctivitis due to adenovirus|Keratoconjunctivitis due to adenovirus +C0014493|T047|ET|B30.0|ICD10CM|Shipyard eye|Shipyard eye +C0001305|T047|ET|B30.1|ICD10CM|Acute adenoviral follicular conjunctivitis|Acute adenoviral follicular conjunctivitis +C0600124|T047|PT|B30.1|ICD10|Conjunctivitis due to adenovirus|Conjunctivitis due to adenovirus +C0600124|T047|PT|B30.1|ICD10CM|Conjunctivitis due to adenovirus|Conjunctivitis due to adenovirus +C0600124|T047|AB|B30.1|ICD10CM|Conjunctivitis due to adenovirus|Conjunctivitis due to adenovirus +C0392644|T047|ET|B30.1|ICD10CM|Swimming-pool conjunctivitis|Swimming-pool conjunctivitis +C0542430|T047|PT|B30.2|ICD10|Viral pharyngoconjunctivitis|Viral pharyngoconjunctivitis +C0542430|T047|PT|B30.2|ICD10CM|Viral pharyngoconjunctivitis|Viral pharyngoconjunctivitis +C0542430|T047|AB|B30.2|ICD10CM|Viral pharyngoconjunctivitis|Viral pharyngoconjunctivitis +C0494100|T047|PT|B30.3|ICD10|Acute epidemic haemorrhagic conjunctivitis (enteroviral)|Acute epidemic haemorrhagic conjunctivitis (enteroviral) +C0494100|T047|PT|B30.3|ICD10CM|Acute epidemic hemorrhagic conjunctivitis (enteroviral)|Acute epidemic hemorrhagic conjunctivitis (enteroviral) +C0494100|T047|AB|B30.3|ICD10CM|Acute epidemic hemorrhagic conjunctivitis (enteroviral)|Acute epidemic hemorrhagic conjunctivitis (enteroviral) +C0494100|T047|PT|B30.3|ICD10AE|Acute epidemic hemorrhagic conjunctivitis (enteroviral)|Acute epidemic hemorrhagic conjunctivitis (enteroviral) +C2911619|T047|ET|B30.3|ICD10CM|Conjunctivitis due to coxsackievirus 24|Conjunctivitis due to coxsackievirus 24 +C2911620|T047|ET|B30.3|ICD10CM|Conjunctivitis due to enterovirus 70|Conjunctivitis due to enterovirus 70 +C2911621|T046|ET|B30.3|ICD10CM|Hemorrhagic conjunctivitis (acute)(epidemic)|Hemorrhagic conjunctivitis (acute)(epidemic) +C0027982|T047|ET|B30.8|ICD10CM|Newcastle conjunctivitis|Newcastle conjunctivitis +C0029871|T047|PT|B30.8|ICD10CM|Other viral conjunctivitis|Other viral conjunctivitis +C0029871|T047|AB|B30.8|ICD10CM|Other viral conjunctivitis|Other viral conjunctivitis +C0029871|T047|PT|B30.8|ICD10|Other viral conjunctivitis|Other viral conjunctivitis +C0009774|T047|PT|B30.9|ICD10|Viral conjunctivitis, unspecified|Viral conjunctivitis, unspecified +C0009774|T047|PT|B30.9|ICD10CM|Viral conjunctivitis, unspecified|Viral conjunctivitis, unspecified +C0009774|T047|AB|B30.9|ICD10CM|Viral conjunctivitis, unspecified|Viral conjunctivitis, unspecified +C0494101|T047|HT|B33|ICD10|Other viral diseases, not elsewhere classified|Other viral diseases, not elsewhere classified +C0494101|T047|AB|B33|ICD10CM|Other viral diseases, not elsewhere classified|Other viral diseases, not elsewhere classified +C0494101|T047|HT|B33|ICD10CM|Other viral diseases, not elsewhere classified|Other viral diseases, not elsewhere classified +C0032238|T047|ET|B33.0|ICD10CM|Bornholm disease|Bornholm disease +C0032238|T047|PT|B33.0|ICD10CM|Epidemic myalgia|Epidemic myalgia +C0032238|T047|AB|B33.0|ICD10CM|Epidemic myalgia|Epidemic myalgia +C0032238|T047|PT|B33.0|ICD10|Epidemic myalgia|Epidemic myalgia +C0919833|T047|ET|B33.1|ICD10CM|Epidemic polyarthritis and exanthema|Epidemic polyarthritis and exanthema +C0919833|T047|PT|B33.1|ICD10CM|Ross River disease|Ross River disease +C0919833|T047|AB|B33.1|ICD10CM|Ross River disease|Ross River disease +C0919833|T047|PT|B33.1|ICD10|Ross River disease|Ross River disease +C0919833|T047|ET|B33.1|ICD10CM|Ross River fever|Ross River fever +C2911622|T047|ET|B33.2|ICD10CM|Coxsackie (virus) carditis|Coxsackie (virus) carditis +C0151328|T047|PT|B33.2|ICD10|Viral carditis|Viral carditis +C0151328|T047|HT|B33.2|ICD10CM|Viral carditis|Viral carditis +C0151328|T047|AB|B33.2|ICD10CM|Viral carditis|Viral carditis +C0151328|T047|AB|B33.20|ICD10CM|Viral carditis, unspecified|Viral carditis, unspecified +C0151328|T047|PT|B33.20|ICD10CM|Viral carditis, unspecified|Viral carditis, unspecified +C0853037|T047|PT|B33.21|ICD10CM|Viral endocarditis|Viral endocarditis +C0853037|T047|AB|B33.21|ICD10CM|Viral endocarditis|Viral endocarditis +C0276138|T047|PT|B33.22|ICD10CM|Viral myocarditis|Viral myocarditis +C0276138|T047|AB|B33.22|ICD10CM|Viral myocarditis|Viral myocarditis +C0276139|T047|PT|B33.23|ICD10CM|Viral pericarditis|Viral pericarditis +C0276139|T047|AB|B33.23|ICD10CM|Viral pericarditis|Viral pericarditis +C0264797|T047|PT|B33.24|ICD10CM|Viral cardiomyopathy|Viral cardiomyopathy +C0264797|T047|AB|B33.24|ICD10CM|Viral cardiomyopathy|Viral cardiomyopathy +C0035369|T047|ET|B33.3|ICD10CM|Retrovirus infection NOS|Retrovirus infection NOS +C0868899|T047|PT|B33.3|ICD10|Retrovirus infections, not elsewhere classified|Retrovirus infections, not elsewhere classified +C0868899|T047|PT|B33.3|ICD10CM|Retrovirus infections, not elsewhere classified|Retrovirus infections, not elsewhere classified +C0868899|T047|AB|B33.3|ICD10CM|Retrovirus infections, not elsewhere classified|Retrovirus infections, not elsewhere classified +C2911626|T047|AB|B33.4|ICD10CM|Hantavirus (cardio)-pulmonary syndrome [HPS] [HCPS]|Hantavirus (cardio)-pulmonary syndrome [HPS] [HCPS] +C2911626|T047|PT|B33.4|ICD10CM|Hantavirus (cardio)-pulmonary syndrome [HPS] [HCPS]|Hantavirus (cardio)-pulmonary syndrome [HPS] [HCPS] +C2911624|T047|ET|B33.4|ICD10CM|Hantavirus disease with pulmonary manifestations|Hantavirus disease with pulmonary manifestations +C2911625|T047|ET|B33.4|ICD10CM|Sin nombre virus disease|Sin nombre virus disease +C0348226|T047|PT|B33.8|ICD10CM|Other specified viral diseases|Other specified viral diseases +C0348226|T047|AB|B33.8|ICD10CM|Other specified viral diseases|Other specified viral diseases +C0348226|T047|PT|B33.8|ICD10|Other specified viral diseases|Other specified viral diseases +C0042769|T047|HT|B34|ICD10|Viral infection of unspecified site|Viral infection of unspecified site +C0042769|T047|AB|B34|ICD10CM|Viral infection of unspecified site|Viral infection of unspecified site +C0042769|T047|HT|B34|ICD10CM|Viral infection of unspecified site|Viral infection of unspecified site +C0001486|T047|PT|B34.0|ICD10|Adenovirus infection, unspecified|Adenovirus infection, unspecified +C0001486|T047|PT|B34.0|ICD10CM|Adenovirus infection, unspecified|Adenovirus infection, unspecified +C0001486|T047|AB|B34.0|ICD10CM|Adenovirus infection, unspecified|Adenovirus infection, unspecified +C0010246|T047|ET|B34.1|ICD10CM|Coxsackievirus infection NOS|Coxsackievirus infection NOS +C0013533|T047|ET|B34.1|ICD10CM|Echovirus infection NOS|Echovirus infection NOS +C0014378|T047|PT|B34.1|ICD10CM|Enterovirus infection, unspecified|Enterovirus infection, unspecified +C0014378|T047|AB|B34.1|ICD10CM|Enterovirus infection, unspecified|Enterovirus infection, unspecified +C0014378|T047|PT|B34.1|ICD10|Enterovirus infection, unspecified|Enterovirus infection, unspecified +C0206750|T047|PT|B34.2|ICD10|Coronavirus infection, unspecified|Coronavirus infection, unspecified +C0206750|T047|PT|B34.2|ICD10CM|Coronavirus infection, unspecified|Coronavirus infection, unspecified +C0206750|T047|AB|B34.2|ICD10CM|Coronavirus infection, unspecified|Coronavirus infection, unspecified +C0205882|T047|PT|B34.3|ICD10CM|Parvovirus infection, unspecified|Parvovirus infection, unspecified +C0205882|T047|AB|B34.3|ICD10CM|Parvovirus infection, unspecified|Parvovirus infection, unspecified +C0205882|T047|PT|B34.3|ICD10|Parvovirus infection, unspecified|Parvovirus infection, unspecified +C0030364|T047|PT|B34.4|ICD10|Papovavirus infection, unspecified|Papovavirus infection, unspecified +C0030364|T047|PT|B34.4|ICD10CM|Papovavirus infection, unspecified|Papovavirus infection, unspecified +C0030364|T047|AB|B34.4|ICD10CM|Papovavirus infection, unspecified|Papovavirus infection, unspecified +C0348231|T047|PT|B34.8|ICD10|Other viral infections of unspecified site|Other viral infections of unspecified site +C0348231|T047|PT|B34.8|ICD10CM|Other viral infections of unspecified site|Other viral infections of unspecified site +C0348231|T047|AB|B34.8|ICD10CM|Other viral infections of unspecified site|Other viral infections of unspecified site +C0042769|T047|PT|B34.9|ICD10CM|Viral infection, unspecified|Viral infection, unspecified +C0042769|T047|AB|B34.9|ICD10CM|Viral infection, unspecified|Viral infection, unspecified +C0042769|T047|PT|B34.9|ICD10|Viral infection, unspecified|Viral infection, unspecified +C0042749|T047|ET|B34.9|ICD10CM|Viremia NOS|Viremia NOS +C0011636|T047|HT|B35|ICD10|Dermatophytosis|Dermatophytosis +C0011636|T047|HT|B35|ICD10CM|Dermatophytosis|Dermatophytosis +C0011636|T047|AB|B35|ICD10CM|Dermatophytosis|Dermatophytosis +C0040254|T047|ET|B35|ICD10CM|favus|favus +C4290052|T047|ET|B35|ICD10CM|infections due to species of Epidermophyton, Micro-sporum and Trichophyton|infections due to species of Epidermophyton, Micro-sporum and Trichophyton +C4290053|T047|ET|B35|ICD10CM|tinea, any type except those in B36.-|tinea, any type except those in B36.- +C0026946|T047|HT|B35-B49|ICD10CM|Mycoses (B35-B49)|Mycoses (B35-B49) +C0026946|T047|HT|B35-B49.9|ICD10|Mycoses|Mycoses +C2349994|T047|ET|B35.0|ICD10CM|Beard ringworm|Beard ringworm +C0276742|T047|ET|B35.0|ICD10CM|Kerion|Kerion +C0040250|T047|ET|B35.0|ICD10CM|Scalp ringworm|Scalp ringworm +C2349994|T047|ET|B35.0|ICD10CM|Sycosis, mycotic|Sycosis, mycotic +C0494103|T047|PT|B35.0|ICD10CM|Tinea barbae and tinea capitis|Tinea barbae and tinea capitis +C0494103|T047|AB|B35.0|ICD10CM|Tinea barbae and tinea capitis|Tinea barbae and tinea capitis +C0494103|T047|PT|B35.0|ICD10|Tinea barbae and tinea capitis|Tinea barbae and tinea capitis +C4082762|T047|ET|B35.1|ICD10CM|Dermatophytic onychia|Dermatophytic onychia +C4082762|T047|ET|B35.1|ICD10CM|Dermatophytosis of nail|Dermatophytosis of nail +C0040261|T047|ET|B35.1|ICD10CM|Onychomycosis|Onychomycosis +C0040261|T047|ET|B35.1|ICD10CM|Ringworm of nails|Ringworm of nails +C0040261|T047|PT|B35.1|ICD10CM|Tinea unguium|Tinea unguium +C0040261|T047|AB|B35.1|ICD10CM|Tinea unguium|Tinea unguium +C0040261|T047|PT|B35.1|ICD10|Tinea unguium|Tinea unguium +C0153246|T047|ET|B35.2|ICD10CM|Dermatophytosis of hand|Dermatophytosis of hand +C0153246|T047|ET|B35.2|ICD10CM|Hand ringworm|Hand ringworm +C0153246|T047|PT|B35.2|ICD10CM|Tinea manuum|Tinea manuum +C0153246|T047|AB|B35.2|ICD10CM|Tinea manuum|Tinea manuum +C0153246|T047|PT|B35.2|ICD10|Tinea manuum|Tinea manuum +C0040259|T047|ET|B35.3|ICD10CM|Athlete's foot|Athlete's foot +C0040259|T047|ET|B35.3|ICD10CM|Dermatophytosis of foot|Dermatophytosis of foot +C0040259|T047|ET|B35.3|ICD10CM|Foot ringworm|Foot ringworm +C0040259|T047|PT|B35.3|ICD10CM|Tinea pedis|Tinea pedis +C0040259|T047|AB|B35.3|ICD10CM|Tinea pedis|Tinea pedis +C0040259|T047|PT|B35.3|ICD10|Tinea pedis|Tinea pedis +C0040252|T047|ET|B35.4|ICD10CM|Ringworm of the body|Ringworm of the body +C0040252|T047|PT|B35.4|ICD10CM|Tinea corporis|Tinea corporis +C0040252|T047|AB|B35.4|ICD10CM|Tinea corporis|Tinea corporis +C0040252|T047|PT|B35.4|ICD10|Tinea corporis|Tinea corporis +C0040255|T047|PT|B35.5|ICD10|Tinea imbricata|Tinea imbricata +C0040255|T047|PT|B35.5|ICD10CM|Tinea imbricata|Tinea imbricata +C0040255|T047|AB|B35.5|ICD10CM|Tinea imbricata|Tinea imbricata +C0040255|T047|ET|B35.5|ICD10CM|Tokelau|Tokelau +C1384589|T047|ET|B35.6|ICD10CM|Dhobi itch|Dhobi itch +C1384589|T047|ET|B35.6|ICD10CM|Groin ringworm|Groin ringworm +C1384589|T047|ET|B35.6|ICD10CM|Jock itch|Jock itch +C1384589|T047|PT|B35.6|ICD10CM|Tinea cruris|Tinea cruris +C1384589|T047|AB|B35.6|ICD10CM|Tinea cruris|Tinea cruris +C1384589|T047|PT|B35.6|ICD10|Tinea cruris|Tinea cruris +C0276731|T047|ET|B35.8|ICD10CM|Disseminated dermatophytosis|Disseminated dermatophytosis +C0276730|T047|ET|B35.8|ICD10CM|Granulomatous dermatophytosis|Granulomatous dermatophytosis +C0348232|T047|PT|B35.8|ICD10CM|Other dermatophytoses|Other dermatophytoses +C0348232|T047|AB|B35.8|ICD10CM|Other dermatophytoses|Other dermatophytoses +C0348232|T047|PT|B35.8|ICD10|Other dermatophytoses|Other dermatophytoses +C0011636|T047|PT|B35.9|ICD10|Dermatophytosis, unspecified|Dermatophytosis, unspecified +C0011636|T047|PT|B35.9|ICD10CM|Dermatophytosis, unspecified|Dermatophytosis, unspecified +C0011636|T047|AB|B35.9|ICD10CM|Dermatophytosis, unspecified|Dermatophytosis, unspecified +C0040247|T047|ET|B35.9|ICD10CM|Ringworm NOS|Ringworm NOS +C0494104|T047|HT|B36|ICD10|Other superficial mycoses|Other superficial mycoses +C0494104|T047|AB|B36|ICD10CM|Other superficial mycoses|Other superficial mycoses +C0494104|T047|HT|B36|ICD10CM|Other superficial mycoses|Other superficial mycoses +C0040262|T047|PT|B36.0|ICD10CM|Pityriasis versicolor|Pityriasis versicolor +C0040262|T047|AB|B36.0|ICD10CM|Pityriasis versicolor|Pityriasis versicolor +C0040262|T047|PT|B36.0|ICD10|Pityriasis versicolor|Pityriasis versicolor +C0040262|T047|ET|B36.0|ICD10CM|Tinea flava|Tinea flava +C0040262|T047|ET|B36.0|ICD10CM|Tinea versicolor|Tinea versicolor +C0152067|T047|ET|B36.1|ICD10CM|Keratomycosis nigricans palmaris|Keratomycosis nigricans palmaris +C0152067|T047|ET|B36.1|ICD10CM|Microsporosis nigra|Microsporosis nigra +C0152067|T047|ET|B36.1|ICD10CM|Pityriasis nigra|Pityriasis nigra +C0152067|T047|PT|B36.1|ICD10CM|Tinea nigra|Tinea nigra +C0152067|T047|AB|B36.1|ICD10CM|Tinea nigra|Tinea nigra +C0152067|T047|PT|B36.1|ICD10|Tinea nigra|Tinea nigra +C0040249|T047|ET|B36.2|ICD10CM|Tinea blanca|Tinea blanca +C0040249|T047|PT|B36.2|ICD10CM|White piedra|White piedra +C0040249|T047|AB|B36.2|ICD10CM|White piedra|White piedra +C0040249|T047|PT|B36.2|ICD10|White piedra|White piedra +C0153249|T047|PT|B36.3|ICD10|Black piedra|Black piedra +C0153249|T047|PT|B36.3|ICD10CM|Black piedra|Black piedra +C0153249|T047|AB|B36.3|ICD10CM|Black piedra|Black piedra +C0348234|T047|PT|B36.8|ICD10CM|Other specified superficial mycoses|Other specified superficial mycoses +C0348234|T047|AB|B36.8|ICD10CM|Other specified superficial mycoses|Other specified superficial mycoses +C0348234|T047|PT|B36.8|ICD10|Other specified superficial mycoses|Other specified superficial mycoses +C2980104|T047|PT|B36.9|ICD10|Superficial mycosis, unspecified|Superficial mycosis, unspecified +C2980104|T047|PT|B36.9|ICD10CM|Superficial mycosis, unspecified|Superficial mycosis, unspecified +C2980104|T047|AB|B36.9|ICD10CM|Superficial mycosis, unspecified|Superficial mycosis, unspecified +C0006840|T047|HT|B37|ICD10CM|Candidiasis|Candidiasis +C0006840|T047|AB|B37|ICD10CM|Candidiasis|Candidiasis +C0006840|T047|HT|B37|ICD10|Candidiasis|Candidiasis +C0006840|T047|ET|B37|ICD10CM|candidosis|candidosis +C0006840|T047|ET|B37|ICD10CM|moniliasis|moniliasis +C0006849|T047|PT|B37.0|ICD10CM|Candidal stomatitis|Candidal stomatitis +C0006849|T047|AB|B37.0|ICD10CM|Candidal stomatitis|Candidal stomatitis +C0006849|T047|PT|B37.0|ICD10|Candidal stomatitis|Candidal stomatitis +C0006849|T047|ET|B37.0|ICD10CM|Oral thrush|Oral thrush +C2911629|T047|ET|B37.1|ICD10CM|Candidal bronchitis|Candidal bronchitis +C0153251|T047|ET|B37.1|ICD10CM|Candidal pneumonia|Candidal pneumonia +C0153251|T047|PT|B37.1|ICD10CM|Pulmonary candidiasis|Pulmonary candidiasis +C0153251|T047|AB|B37.1|ICD10CM|Pulmonary candidiasis|Pulmonary candidiasis +C0153251|T047|PT|B37.1|ICD10|Pulmonary candidiasis|Pulmonary candidiasis +C0276685|T047|ET|B37.2|ICD10CM|Candidal onychia|Candidal onychia +C1282977|T047|ET|B37.2|ICD10CM|Candidal paronychia|Candidal paronychia +C0006842|T047|PT|B37.2|ICD10CM|Candidiasis of skin and nail|Candidiasis of skin and nail +C0006842|T047|AB|B37.2|ICD10CM|Candidiasis of skin and nail|Candidiasis of skin and nail +C0006842|T047|PT|B37.2|ICD10|Candidiasis of skin and nail|Candidiasis of skin and nail +C0700345|T047|ET|B37.3|ICD10CM|Candidal vulvovaginitis|Candidal vulvovaginitis +C0700345|T047|PT|B37.3|ICD10CM|Candidiasis of vulva and vagina|Candidiasis of vulva and vagina +C0700345|T047|AB|B37.3|ICD10CM|Candidiasis of vulva and vagina|Candidiasis of vulva and vagina +C0700345|T047|PT|B37.3|ICD10|Candidiasis of vulva and vagina|Candidiasis of vulva and vagina +C0700345|T047|ET|B37.3|ICD10CM|Monilial vulvovaginitis|Monilial vulvovaginitis +C0006852|T047|ET|B37.3|ICD10CM|Vaginal thrush|Vaginal thrush +C0153250|T047|PT|B37.4|ICD10|Candidiasis of other urogenital sites|Candidiasis of other urogenital sites +C0153250|T047|HT|B37.4|ICD10CM|Candidiasis of other urogenital sites|Candidiasis of other urogenital sites +C0153250|T047|AB|B37.4|ICD10CM|Candidiasis of other urogenital sites|Candidiasis of other urogenital sites +C2911630|T047|PT|B37.41|ICD10CM|Candidal cystitis and urethritis|Candidal cystitis and urethritis +C2911630|T047|AB|B37.41|ICD10CM|Candidal cystitis and urethritis|Candidal cystitis and urethritis +C0276684|T047|PT|B37.42|ICD10CM|Candidal balanitis|Candidal balanitis +C0276684|T047|AB|B37.42|ICD10CM|Candidal balanitis|Candidal balanitis +C2911631|T047|ET|B37.49|ICD10CM|Candidal pyelonephritis|Candidal pyelonephritis +C0343866|T047|AB|B37.49|ICD10CM|Other urogenital candidiasis|Other urogenital candidiasis +C0343866|T047|PT|B37.49|ICD10CM|Other urogenital candidiasis|Other urogenital candidiasis +C0153256|T047|PT|B37.5|ICD10CM|Candidal meningitis|Candidal meningitis +C0153256|T047|AB|B37.5|ICD10CM|Candidal meningitis|Candidal meningitis +C0153256|T047|PT|B37.5|ICD10|Candidal meningitis|Candidal meningitis +C0153254|T047|PT|B37.6|ICD10|Candidal endocarditis|Candidal endocarditis +C0153254|T047|PT|B37.6|ICD10CM|Candidal endocarditis|Candidal endocarditis +C0153254|T047|AB|B37.6|ICD10CM|Candidal endocarditis|Candidal endocarditis +C2911632|T047|AB|B37.7|ICD10CM|Candidal sepsis|Candidal sepsis +C2911632|T047|PT|B37.7|ICD10CM|Candidal sepsis|Candidal sepsis +C0349009|T047|PT|B37.7|ICD10|Candidal septicaemia|Candidal septicaemia +C0349009|T047|PT|B37.7|ICD10AE|Candidal septicemia|Candidal septicemia +C0153252|T047|ET|B37.7|ICD10CM|Disseminated candidiasis|Disseminated candidiasis +C0153252|T047|ET|B37.7|ICD10CM|Systemic candidiasis|Systemic candidiasis +C0348236|T047|PT|B37.8|ICD10|Candidiasis of other sites|Candidiasis of other sites +C0348236|T047|HT|B37.8|ICD10CM|Candidiasis of other sites|Candidiasis of other sites +C0348236|T047|AB|B37.8|ICD10CM|Candidiasis of other sites|Candidiasis of other sites +C0239295|T047|PT|B37.81|ICD10CM|Candidal esophagitis|Candidal esophagitis +C0239295|T047|AB|B37.81|ICD10CM|Candidal esophagitis|Candidal esophagitis +C0858895|T047|AB|B37.82|ICD10CM|Candidal enteritis|Candidal enteritis +C0858895|T047|PT|B37.82|ICD10CM|Candidal enteritis|Candidal enteritis +C0343887|T047|ET|B37.82|ICD10CM|Candidal proctitis|Candidal proctitis +C2363907|T047|PT|B37.83|ICD10CM|Candidal cheilitis|Candidal cheilitis +C2363907|T047|AB|B37.83|ICD10CM|Candidal cheilitis|Candidal cheilitis +C0153255|T047|PT|B37.84|ICD10CM|Candidal otitis externa|Candidal otitis externa +C0153255|T047|AB|B37.84|ICD10CM|Candidal otitis externa|Candidal otitis externa +C2911633|T047|ET|B37.89|ICD10CM|Candidal osteomyelitis|Candidal osteomyelitis +C0348236|T047|AB|B37.89|ICD10CM|Other sites of candidiasis|Other sites of candidiasis +C0348236|T047|PT|B37.89|ICD10CM|Other sites of candidiasis|Other sites of candidiasis +C0006840|T047|PT|B37.9|ICD10|Candidiasis, unspecified|Candidiasis, unspecified +C0006840|T047|PT|B37.9|ICD10CM|Candidiasis, unspecified|Candidiasis, unspecified +C0006840|T047|AB|B37.9|ICD10CM|Candidiasis, unspecified|Candidiasis, unspecified +C0006849|T047|ET|B37.9|ICD10CM|Thrush NOS|Thrush NOS +C0009186|T047|HT|B38|ICD10CM|Coccidioidomycosis|Coccidioidomycosis +C0009186|T047|AB|B38|ICD10CM|Coccidioidomycosis|Coccidioidomycosis +C0009186|T047|HT|B38|ICD10|Coccidioidomycosis|Coccidioidomycosis +C0348992|T047|PT|B38.0|ICD10|Acute pulmonary coccidioidomycosis|Acute pulmonary coccidioidomycosis +C0348992|T047|PT|B38.0|ICD10CM|Acute pulmonary coccidioidomycosis|Acute pulmonary coccidioidomycosis +C0348992|T047|AB|B38.0|ICD10CM|Acute pulmonary coccidioidomycosis|Acute pulmonary coccidioidomycosis +C0339963|T047|PT|B38.1|ICD10|Chronic pulmonary coccidioidomycosis|Chronic pulmonary coccidioidomycosis +C0339963|T047|PT|B38.1|ICD10CM|Chronic pulmonary coccidioidomycosis|Chronic pulmonary coccidioidomycosis +C0339963|T047|AB|B38.1|ICD10CM|Chronic pulmonary coccidioidomycosis|Chronic pulmonary coccidioidomycosis +C0375046|T047|PT|B38.2|ICD10CM|Pulmonary coccidioidomycosis, unspecified|Pulmonary coccidioidomycosis, unspecified +C0375046|T047|AB|B38.2|ICD10CM|Pulmonary coccidioidomycosis, unspecified|Pulmonary coccidioidomycosis, unspecified +C0375046|T047|PT|B38.2|ICD10|Pulmonary coccidioidomycosis, unspecified|Pulmonary coccidioidomycosis, unspecified +C0343892|T047|PT|B38.3|ICD10CM|Cutaneous coccidioidomycosis|Cutaneous coccidioidomycosis +C0343892|T047|AB|B38.3|ICD10CM|Cutaneous coccidioidomycosis|Cutaneous coccidioidomycosis +C0343892|T047|PT|B38.3|ICD10|Cutaneous coccidioidomycosis|Cutaneous coccidioidomycosis +C0153259|T047|PT|B38.4|ICD10|Coccidioidomycosis meningitis|Coccidioidomycosis meningitis +C0153259|T047|PT|B38.4|ICD10CM|Coccidioidomycosis meningitis|Coccidioidomycosis meningitis +C0153259|T047|AB|B38.4|ICD10CM|Coccidioidomycosis meningitis|Coccidioidomycosis meningitis +C0276667|T047|PT|B38.7|ICD10|Disseminated coccidioidomycosis|Disseminated coccidioidomycosis +C0276667|T047|PT|B38.7|ICD10CM|Disseminated coccidioidomycosis|Disseminated coccidioidomycosis +C0276667|T047|AB|B38.7|ICD10CM|Disseminated coccidioidomycosis|Disseminated coccidioidomycosis +C0276667|T047|ET|B38.7|ICD10CM|Generalized coccidioidomycosis|Generalized coccidioidomycosis +C0348238|T047|HT|B38.8|ICD10CM|Other forms of coccidioidomycosis|Other forms of coccidioidomycosis +C0348238|T047|AB|B38.8|ICD10CM|Other forms of coccidioidomycosis|Other forms of coccidioidomycosis +C0348238|T047|PT|B38.8|ICD10|Other forms of coccidioidomycosis|Other forms of coccidioidomycosis +C2911634|T047|PT|B38.81|ICD10CM|Prostatic coccidioidomycosis|Prostatic coccidioidomycosis +C2911634|T047|AB|B38.81|ICD10CM|Prostatic coccidioidomycosis|Prostatic coccidioidomycosis +C0348238|T047|PT|B38.89|ICD10CM|Other forms of coccidioidomycosis|Other forms of coccidioidomycosis +C0348238|T047|AB|B38.89|ICD10CM|Other forms of coccidioidomycosis|Other forms of coccidioidomycosis +C0009186|T047|PT|B38.9|ICD10|Coccidioidomycosis, unspecified|Coccidioidomycosis, unspecified +C0009186|T047|PT|B38.9|ICD10CM|Coccidioidomycosis, unspecified|Coccidioidomycosis, unspecified +C0009186|T047|AB|B38.9|ICD10CM|Coccidioidomycosis, unspecified|Coccidioidomycosis, unspecified +C0019655|T047|HT|B39|ICD10CM|Histoplasmosis|Histoplasmosis +C0019655|T047|AB|B39|ICD10CM|Histoplasmosis|Histoplasmosis +C0019655|T047|HT|B39|ICD10|Histoplasmosis|Histoplasmosis +C0343898|T047|PT|B39.0|ICD10|Acute pulmonary histoplasmosis capsulati|Acute pulmonary histoplasmosis capsulati +C0343898|T047|PT|B39.0|ICD10CM|Acute pulmonary histoplasmosis capsulati|Acute pulmonary histoplasmosis capsulati +C0343898|T047|AB|B39.0|ICD10CM|Acute pulmonary histoplasmosis capsulati|Acute pulmonary histoplasmosis capsulati +C0343899|T047|PT|B39.1|ICD10CM|Chronic pulmonary histoplasmosis capsulati|Chronic pulmonary histoplasmosis capsulati +C0343899|T047|AB|B39.1|ICD10CM|Chronic pulmonary histoplasmosis capsulati|Chronic pulmonary histoplasmosis capsulati +C0343899|T047|PT|B39.1|ICD10|Chronic pulmonary histoplasmosis capsulati|Chronic pulmonary histoplasmosis capsulati +C0348257|T047|PT|B39.2|ICD10|Pulmonary histoplasmosis capsulati, unspecified|Pulmonary histoplasmosis capsulati, unspecified +C0348257|T047|PT|B39.2|ICD10CM|Pulmonary histoplasmosis capsulati, unspecified|Pulmonary histoplasmosis capsulati, unspecified +C0348257|T047|AB|B39.2|ICD10CM|Pulmonary histoplasmosis capsulati, unspecified|Pulmonary histoplasmosis capsulati, unspecified +C0343900|T047|PT|B39.3|ICD10CM|Disseminated histoplasmosis capsulati|Disseminated histoplasmosis capsulati +C0343900|T047|AB|B39.3|ICD10CM|Disseminated histoplasmosis capsulati|Disseminated histoplasmosis capsulati +C0343900|T047|PT|B39.3|ICD10|Disseminated histoplasmosis capsulati|Disseminated histoplasmosis capsulati +C2911635|T047|ET|B39.3|ICD10CM|Generalized histoplasmosis capsulati|Generalized histoplasmosis capsulati +C0153261|T047|ET|B39.4|ICD10CM|American histoplasmosis|American histoplasmosis +C0153261|T047|PT|B39.4|ICD10CM|Histoplasmosis capsulati, unspecified|Histoplasmosis capsulati, unspecified +C0153261|T047|AB|B39.4|ICD10CM|Histoplasmosis capsulati, unspecified|Histoplasmosis capsulati, unspecified +C0153261|T047|PT|B39.4|ICD10|Histoplasmosis capsulati, unspecified|Histoplasmosis capsulati, unspecified +C0220977|T047|ET|B39.5|ICD10CM|African histoplasmosis|African histoplasmosis +C0220977|T047|PT|B39.5|ICD10CM|Histoplasmosis duboisii|Histoplasmosis duboisii +C0220977|T047|AB|B39.5|ICD10CM|Histoplasmosis duboisii|Histoplasmosis duboisii +C0220977|T047|PT|B39.5|ICD10|Histoplasmosis duboisii|Histoplasmosis duboisii +C0019655|T047|PT|B39.9|ICD10|Histoplasmosis, unspecified|Histoplasmosis, unspecified +C0019655|T047|PT|B39.9|ICD10CM|Histoplasmosis, unspecified|Histoplasmosis, unspecified +C0019655|T047|AB|B39.9|ICD10CM|Histoplasmosis, unspecified|Histoplasmosis, unspecified +C0005716|T047|HT|B40|ICD10CM|Blastomycosis|Blastomycosis +C0005716|T047|AB|B40|ICD10CM|Blastomycosis|Blastomycosis +C0005716|T047|HT|B40|ICD10|Blastomycosis|Blastomycosis +C0348805|T047|PT|B40.0|ICD10|Acute pulmonary blastomycosis|Acute pulmonary blastomycosis +C0348805|T047|PT|B40.0|ICD10CM|Acute pulmonary blastomycosis|Acute pulmonary blastomycosis +C0348805|T047|AB|B40.0|ICD10CM|Acute pulmonary blastomycosis|Acute pulmonary blastomycosis +C0343920|T047|PT|B40.1|ICD10CM|Chronic pulmonary blastomycosis|Chronic pulmonary blastomycosis +C0343920|T047|AB|B40.1|ICD10CM|Chronic pulmonary blastomycosis|Chronic pulmonary blastomycosis +C0343920|T047|PT|B40.1|ICD10|Chronic pulmonary blastomycosis|Chronic pulmonary blastomycosis +C0339964|T047|PT|B40.2|ICD10|Pulmonary blastomycosis, unspecified|Pulmonary blastomycosis, unspecified +C0339964|T047|PT|B40.2|ICD10CM|Pulmonary blastomycosis, unspecified|Pulmonary blastomycosis, unspecified +C0339964|T047|AB|B40.2|ICD10CM|Pulmonary blastomycosis, unspecified|Pulmonary blastomycosis, unspecified +C0343922|T047|PT|B40.3|ICD10CM|Cutaneous blastomycosis|Cutaneous blastomycosis +C0343922|T047|AB|B40.3|ICD10CM|Cutaneous blastomycosis|Cutaneous blastomycosis +C0343922|T047|PT|B40.3|ICD10|Cutaneous blastomycosis|Cutaneous blastomycosis +C0343921|T047|PT|B40.7|ICD10|Disseminated blastomycosis|Disseminated blastomycosis +C0343921|T047|PT|B40.7|ICD10CM|Disseminated blastomycosis|Disseminated blastomycosis +C0343921|T047|AB|B40.7|ICD10CM|Disseminated blastomycosis|Disseminated blastomycosis +C0343921|T047|ET|B40.7|ICD10CM|Generalized blastomycosis|Generalized blastomycosis +C0348241|T047|HT|B40.8|ICD10CM|Other forms of blastomycosis|Other forms of blastomycosis +C0348241|T047|AB|B40.8|ICD10CM|Other forms of blastomycosis|Other forms of blastomycosis +C0348241|T047|PT|B40.8|ICD10|Other forms of blastomycosis|Other forms of blastomycosis +C2830232|T047|PT|B40.81|ICD10CM|Blastomycotic meningoencephalitis|Blastomycotic meningoencephalitis +C2830232|T047|AB|B40.81|ICD10CM|Blastomycotic meningoencephalitis|Blastomycotic meningoencephalitis +C2830232|T047|ET|B40.81|ICD10CM|Meningomyelitis due to blastomycosis|Meningomyelitis due to blastomycosis +C0348241|T047|PT|B40.89|ICD10CM|Other forms of blastomycosis|Other forms of blastomycosis +C0348241|T047|AB|B40.89|ICD10CM|Other forms of blastomycosis|Other forms of blastomycosis +C0005716|T047|PT|B40.9|ICD10|Blastomycosis, unspecified|Blastomycosis, unspecified +C0005716|T047|PT|B40.9|ICD10CM|Blastomycosis, unspecified|Blastomycosis, unspecified +C0005716|T047|AB|B40.9|ICD10CM|Blastomycosis, unspecified|Blastomycosis, unspecified +C0030409|T047|ET|B41|ICD10CM|Brazilian blastomycosis|Brazilian blastomycosis +C4290054|T047|ET|B41|ICD10CM|Lutz' disease|Lutz' disease +C0030409|T047|HT|B41|ICD10CM|Paracoccidioidomycosis|Paracoccidioidomycosis +C0030409|T047|AB|B41|ICD10CM|Paracoccidioidomycosis|Paracoccidioidomycosis +C0030409|T047|HT|B41|ICD10|Paracoccidioidomycosis|Paracoccidioidomycosis +C0276665|T047|PT|B41.0|ICD10|Pulmonary paracoccidioidomycosis|Pulmonary paracoccidioidomycosis +C0276665|T047|PT|B41.0|ICD10CM|Pulmonary paracoccidioidomycosis|Pulmonary paracoccidioidomycosis +C0276665|T047|AB|B41.0|ICD10CM|Pulmonary paracoccidioidomycosis|Pulmonary paracoccidioidomycosis +C0276666|T047|PT|B41.7|ICD10CM|Disseminated paracoccidioidomycosis|Disseminated paracoccidioidomycosis +C0276666|T047|AB|B41.7|ICD10CM|Disseminated paracoccidioidomycosis|Disseminated paracoccidioidomycosis +C0276666|T047|PT|B41.7|ICD10|Disseminated paracoccidioidomycosis|Disseminated paracoccidioidomycosis +C0276666|T047|ET|B41.7|ICD10CM|Generalized paracoccidioidomycosis|Generalized paracoccidioidomycosis +C0348243|T047|PT|B41.8|ICD10CM|Other forms of paracoccidioidomycosis|Other forms of paracoccidioidomycosis +C0348243|T047|AB|B41.8|ICD10CM|Other forms of paracoccidioidomycosis|Other forms of paracoccidioidomycosis +C0348243|T047|PT|B41.8|ICD10|Other forms of paracoccidioidomycosis|Other forms of paracoccidioidomycosis +C0030409|T047|PT|B41.9|ICD10|Paracoccidioidomycosis, unspecified|Paracoccidioidomycosis, unspecified +C0030409|T047|PT|B41.9|ICD10CM|Paracoccidioidomycosis, unspecified|Paracoccidioidomycosis, unspecified +C0030409|T047|AB|B41.9|ICD10CM|Paracoccidioidomycosis, unspecified|Paracoccidioidomycosis, unspecified +C0038034|T047|HT|B42|ICD10CM|Sporotrichosis|Sporotrichosis +C0038034|T047|AB|B42|ICD10CM|Sporotrichosis|Sporotrichosis +C0038034|T047|HT|B42|ICD10|Sporotrichosis|Sporotrichosis +C0276728|T047|PT|B42.0|ICD10|Pulmonary sporotrichosis|Pulmonary sporotrichosis +C0276728|T047|PT|B42.0|ICD10CM|Pulmonary sporotrichosis|Pulmonary sporotrichosis +C0276728|T047|AB|B42.0|ICD10CM|Pulmonary sporotrichosis|Pulmonary sporotrichosis +C0276727|T047|PT|B42.1|ICD10CM|Lymphocutaneous sporotrichosis|Lymphocutaneous sporotrichosis +C0276727|T047|AB|B42.1|ICD10CM|Lymphocutaneous sporotrichosis|Lymphocutaneous sporotrichosis +C0276727|T047|PT|B42.1|ICD10|Lymphocutaneous sporotrichosis|Lymphocutaneous sporotrichosis +C0276725|T047|PT|B42.7|ICD10|Disseminated sporotrichosis|Disseminated sporotrichosis +C0276725|T047|PT|B42.7|ICD10CM|Disseminated sporotrichosis|Disseminated sporotrichosis +C0276725|T047|AB|B42.7|ICD10CM|Disseminated sporotrichosis|Disseminated sporotrichosis +C0276725|T047|ET|B42.7|ICD10CM|Generalized sporotrichosis|Generalized sporotrichosis +C0348245|T047|HT|B42.8|ICD10CM|Other forms of sporotrichosis|Other forms of sporotrichosis +C0348245|T047|AB|B42.8|ICD10CM|Other forms of sporotrichosis|Other forms of sporotrichosis +C0348245|T047|PT|B42.8|ICD10|Other forms of sporotrichosis|Other forms of sporotrichosis +C2830235|T047|PT|B42.81|ICD10CM|Cerebral sporotrichosis|Cerebral sporotrichosis +C2830235|T047|AB|B42.81|ICD10CM|Cerebral sporotrichosis|Cerebral sporotrichosis +C2830234|T046|ET|B42.81|ICD10CM|Meningitis due to sporotrichosis|Meningitis due to sporotrichosis +C2830236|T047|PT|B42.82|ICD10CM|Sporotrichosis arthritis|Sporotrichosis arthritis +C2830236|T047|AB|B42.82|ICD10CM|Sporotrichosis arthritis|Sporotrichosis arthritis +C0348245|T047|PT|B42.89|ICD10CM|Other forms of sporotrichosis|Other forms of sporotrichosis +C0348245|T047|AB|B42.89|ICD10CM|Other forms of sporotrichosis|Other forms of sporotrichosis +C0038034|T047|PT|B42.9|ICD10|Sporotrichosis, unspecified|Sporotrichosis, unspecified +C0038034|T047|PT|B42.9|ICD10CM|Sporotrichosis, unspecified|Sporotrichosis, unspecified +C0038034|T047|AB|B42.9|ICD10CM|Sporotrichosis, unspecified|Sporotrichosis, unspecified +C0494106|T047|HT|B43|ICD10|Chromomycosis and phaeomycotic abscess|Chromomycosis and phaeomycotic abscess +C2830237|T047|AB|B43|ICD10CM|Chromomycosis and pheomycotic abscess|Chromomycosis and pheomycotic abscess +C2830237|T047|HT|B43|ICD10CM|Chromomycosis and pheomycotic abscess|Chromomycosis and pheomycotic abscess +C0008591|T047|PT|B43.0|ICD10CM|Cutaneous chromomycosis|Cutaneous chromomycosis +C0008591|T047|AB|B43.0|ICD10CM|Cutaneous chromomycosis|Cutaneous chromomycosis +C0008591|T047|PT|B43.0|ICD10|Cutaneous chromomycosis|Cutaneous chromomycosis +C0311213|T047|ET|B43.0|ICD10CM|Dermatitis verrucosa|Dermatitis verrucosa +C2830238|T047|ET|B43.1|ICD10CM|Cerebral chromomycosis|Cerebral chromomycosis +C0451644|T047|PT|B43.1|ICD10|Phaeomycotic brain abscess|Phaeomycotic brain abscess +C0451644|T047|PT|B43.1|ICD10CM|Pheomycotic brain abscess|Pheomycotic brain abscess +C0451644|T047|AB|B43.1|ICD10CM|Pheomycotic brain abscess|Pheomycotic brain abscess +C0348958|T047|PT|B43.2|ICD10|Subcutaneous phaeomycotic abscess and cyst|Subcutaneous phaeomycotic abscess and cyst +C0348958|T047|PT|B43.2|ICD10CM|Subcutaneous pheomycotic abscess and cyst|Subcutaneous pheomycotic abscess and cyst +C0348958|T047|AB|B43.2|ICD10CM|Subcutaneous pheomycotic abscess and cyst|Subcutaneous pheomycotic abscess and cyst +C0348247|T047|PT|B43.8|ICD10CM|Other forms of chromomycosis|Other forms of chromomycosis +C0348247|T047|AB|B43.8|ICD10CM|Other forms of chromomycosis|Other forms of chromomycosis +C0348247|T047|PT|B43.8|ICD10|Other forms of chromomycosis|Other forms of chromomycosis +C0008582|T047|PT|B43.9|ICD10|Chromomycosis, unspecified|Chromomycosis, unspecified +C0008582|T047|PT|B43.9|ICD10CM|Chromomycosis, unspecified|Chromomycosis, unspecified +C0008582|T047|AB|B43.9|ICD10CM|Chromomycosis, unspecified|Chromomycosis, unspecified +C0276651|T047|ET|B44|ICD10CM|aspergilloma|aspergilloma +C0004030|T047|HT|B44|ICD10CM|Aspergillosis|Aspergillosis +C0004030|T047|AB|B44|ICD10CM|Aspergillosis|Aspergillosis +C0004030|T047|HT|B44|ICD10|Aspergillosis|Aspergillosis +C0276653|T047|PT|B44.0|ICD10|Invasive pulmonary aspergillosis|Invasive pulmonary aspergillosis +C0276653|T047|PT|B44.0|ICD10CM|Invasive pulmonary aspergillosis|Invasive pulmonary aspergillosis +C0276653|T047|AB|B44.0|ICD10CM|Invasive pulmonary aspergillosis|Invasive pulmonary aspergillosis +C0348258|T047|PT|B44.1|ICD10CM|Other pulmonary aspergillosis|Other pulmonary aspergillosis +C0348258|T047|AB|B44.1|ICD10CM|Other pulmonary aspergillosis|Other pulmonary aspergillosis +C0348258|T047|PT|B44.1|ICD10|Other pulmonary aspergillosis|Other pulmonary aspergillosis +C0348989|T047|PT|B44.2|ICD10|Tonsillar aspergillosis|Tonsillar aspergillosis +C0348989|T047|PT|B44.2|ICD10CM|Tonsillar aspergillosis|Tonsillar aspergillosis +C0348989|T047|AB|B44.2|ICD10CM|Tonsillar aspergillosis|Tonsillar aspergillosis +C0004032|T047|PT|B44.7|ICD10|Disseminated aspergillosis|Disseminated aspergillosis +C0004032|T047|PT|B44.7|ICD10CM|Disseminated aspergillosis|Disseminated aspergillosis +C0004032|T047|AB|B44.7|ICD10CM|Disseminated aspergillosis|Disseminated aspergillosis +C0004032|T047|ET|B44.7|ICD10CM|Generalized aspergillosis|Generalized aspergillosis +C0348249|T047|PT|B44.8|ICD10|Other forms of aspergillosis|Other forms of aspergillosis +C0348249|T047|HT|B44.8|ICD10CM|Other forms of aspergillosis|Other forms of aspergillosis +C0348249|T047|AB|B44.8|ICD10CM|Other forms of aspergillosis|Other forms of aspergillosis +C0004031|T047|PT|B44.81|ICD10CM|Allergic bronchopulmonary aspergillosis|Allergic bronchopulmonary aspergillosis +C0004031|T047|AB|B44.81|ICD10CM|Allergic bronchopulmonary aspergillosis|Allergic bronchopulmonary aspergillosis +C0348249|T047|PT|B44.89|ICD10CM|Other forms of aspergillosis|Other forms of aspergillosis +C0348249|T047|AB|B44.89|ICD10CM|Other forms of aspergillosis|Other forms of aspergillosis +C0004030|T047|PT|B44.9|ICD10CM|Aspergillosis, unspecified|Aspergillosis, unspecified +C0004030|T047|AB|B44.9|ICD10CM|Aspergillosis, unspecified|Aspergillosis, unspecified +C0004030|T047|PT|B44.9|ICD10|Aspergillosis, unspecified|Aspergillosis, unspecified +C0010414|T047|HT|B45|ICD10|Cryptococcosis|Cryptococcosis +C0010414|T047|HT|B45|ICD10CM|Cryptococcosis|Cryptococcosis +C0010414|T047|AB|B45|ICD10CM|Cryptococcosis|Cryptococcosis +C0276688|T047|PT|B45.0|ICD10|Pulmonary cryptococcosis|Pulmonary cryptococcosis +C0276688|T047|PT|B45.0|ICD10CM|Pulmonary cryptococcosis|Pulmonary cryptococcosis +C0276688|T047|AB|B45.0|ICD10CM|Pulmonary cryptococcosis|Pulmonary cryptococcosis +C0348991|T047|PT|B45.1|ICD10CM|Cerebral cryptococcosis|Cerebral cryptococcosis +C0348991|T047|AB|B45.1|ICD10CM|Cerebral cryptococcosis|Cerebral cryptococcosis +C0348991|T047|PT|B45.1|ICD10|Cerebral cryptococcosis|Cerebral cryptococcosis +C0085436|T047|ET|B45.1|ICD10CM|Cryptococcal meningitis|Cryptococcal meningitis +C2830239|T047|ET|B45.1|ICD10CM|Cryptococcosis meningocerebralis|Cryptococcosis meningocerebralis +C0343888|T047|PT|B45.2|ICD10|Cutaneous cryptococcosis|Cutaneous cryptococcosis +C0343888|T047|PT|B45.2|ICD10CM|Cutaneous cryptococcosis|Cutaneous cryptococcosis +C0343888|T047|AB|B45.2|ICD10CM|Cutaneous cryptococcosis|Cutaneous cryptococcosis +C0276690|T047|PT|B45.3|ICD10CM|Osseous cryptococcosis|Osseous cryptococcosis +C0276690|T047|AB|B45.3|ICD10CM|Osseous cryptococcosis|Osseous cryptococcosis +C0276690|T047|PT|B45.3|ICD10|Osseous cryptococcosis|Osseous cryptococcosis +C0343890|T047|PT|B45.7|ICD10|Disseminated cryptococcosis|Disseminated cryptococcosis +C0343890|T047|PT|B45.7|ICD10CM|Disseminated cryptococcosis|Disseminated cryptococcosis +C0343890|T047|AB|B45.7|ICD10CM|Disseminated cryptococcosis|Disseminated cryptococcosis +C0343890|T047|ET|B45.7|ICD10CM|Generalized cryptococcosis|Generalized cryptococcosis +C0348251|T047|PT|B45.8|ICD10CM|Other forms of cryptococcosis|Other forms of cryptococcosis +C0348251|T047|AB|B45.8|ICD10CM|Other forms of cryptococcosis|Other forms of cryptococcosis +C0348251|T047|PT|B45.8|ICD10|Other forms of cryptococcosis|Other forms of cryptococcosis +C0010414|T047|PT|B45.9|ICD10|Cryptococcosis, unspecified|Cryptococcosis, unspecified +C0010414|T047|PT|B45.9|ICD10CM|Cryptococcosis, unspecified|Cryptococcosis, unspecified +C0010414|T047|AB|B45.9|ICD10CM|Cryptococcosis, unspecified|Cryptococcosis, unspecified +C0043541|T047|HT|B46|ICD10CM|Zygomycosis|Zygomycosis +C0043541|T047|AB|B46|ICD10CM|Zygomycosis|Zygomycosis +C0043541|T047|HT|B46|ICD10|Zygomycosis|Zygomycosis +C0339962|T047|PT|B46.0|ICD10|Pulmonary mucormycosis|Pulmonary mucormycosis +C0339962|T047|PT|B46.0|ICD10CM|Pulmonary mucormycosis|Pulmonary mucormycosis +C0339962|T047|AB|B46.0|ICD10CM|Pulmonary mucormycosis|Pulmonary mucormycosis +C0348802|T047|PT|B46.1|ICD10|Rhinocerebral mucormycosis|Rhinocerebral mucormycosis +C0348802|T047|PT|B46.1|ICD10CM|Rhinocerebral mucormycosis|Rhinocerebral mucormycosis +C0348802|T047|AB|B46.1|ICD10CM|Rhinocerebral mucormycosis|Rhinocerebral mucormycosis +C0348803|T047|PT|B46.2|ICD10CM|Gastrointestinal mucormycosis|Gastrointestinal mucormycosis +C0348803|T047|AB|B46.2|ICD10CM|Gastrointestinal mucormycosis|Gastrointestinal mucormycosis +C0348803|T047|PT|B46.2|ICD10|Gastrointestinal mucormycosis|Gastrointestinal mucormycosis +C0343957|T047|PT|B46.3|ICD10|Cutaneous mucormycosis|Cutaneous mucormycosis +C0343957|T047|PT|B46.3|ICD10CM|Cutaneous mucormycosis|Cutaneous mucormycosis +C0343957|T047|AB|B46.3|ICD10CM|Cutaneous mucormycosis|Cutaneous mucormycosis +C2830240|T047|ET|B46.3|ICD10CM|Subcutaneous mucormycosis|Subcutaneous mucormycosis +C0343960|T047|PT|B46.4|ICD10CM|Disseminated mucormycosis|Disseminated mucormycosis +C0343960|T047|AB|B46.4|ICD10CM|Disseminated mucormycosis|Disseminated mucormycosis +C0343960|T047|PT|B46.4|ICD10|Disseminated mucormycosis|Disseminated mucormycosis +C0343960|T047|ET|B46.4|ICD10CM|Generalized mucormycosis|Generalized mucormycosis +C0026718|T047|PT|B46.5|ICD10|Mucormycosis, unspecified|Mucormycosis, unspecified +C0026718|T047|PT|B46.5|ICD10CM|Mucormycosis, unspecified|Mucormycosis, unspecified +C0026718|T047|AB|B46.5|ICD10CM|Mucormycosis, unspecified|Mucormycosis, unspecified +C1396717|T047|ET|B46.8|ICD10CM|Entomophthoromycosis|Entomophthoromycosis +C0348253|T047|PT|B46.8|ICD10|Other zygomycoses|Other zygomycoses +C0348253|T047|PT|B46.8|ICD10CM|Other zygomycoses|Other zygomycoses +C0348253|T047|AB|B46.8|ICD10CM|Other zygomycoses|Other zygomycoses +C0300933|T047|ET|B46.9|ICD10CM|Phycomycosis NOS|Phycomycosis NOS +C0043541|T047|PT|B46.9|ICD10|Zygomycosis, unspecified|Zygomycosis, unspecified +C0043541|T047|PT|B46.9|ICD10CM|Zygomycosis, unspecified|Zygomycosis, unspecified +C0043541|T047|AB|B46.9|ICD10CM|Zygomycosis, unspecified|Zygomycosis, unspecified +C0024449|T047|HT|B47|ICD10CM|Mycetoma|Mycetoma +C0024449|T047|AB|B47|ICD10CM|Mycetoma|Mycetoma +C0024449|T047|HT|B47|ICD10|Mycetoma|Mycetoma +C2350621|T047|PT|B47.0|ICD10|Eumycetoma|Eumycetoma +C2350621|T047|PT|B47.0|ICD10CM|Eumycetoma|Eumycetoma +C2350621|T047|AB|B47.0|ICD10CM|Eumycetoma|Eumycetoma +C2350621|T047|ET|B47.0|ICD10CM|Madura foot, mycotic|Madura foot, mycotic +C2350621|T047|ET|B47.0|ICD10CM|Maduromycosis|Maduromycosis +C1261283|T047|PT|B47.1|ICD10CM|Actinomycetoma|Actinomycetoma +C1261283|T047|AB|B47.1|ICD10CM|Actinomycetoma|Actinomycetoma +C1261283|T047|PT|B47.1|ICD10|Actinomycetoma|Actinomycetoma +C2355609|T047|ET|B47.9|ICD10CM|Madura foot NOS|Madura foot NOS +C0024449|T047|PT|B47.9|ICD10CM|Mycetoma, unspecified|Mycetoma, unspecified +C0024449|T047|AB|B47.9|ICD10CM|Mycetoma, unspecified|Mycetoma, unspecified +C0024449|T047|PT|B47.9|ICD10|Mycetoma, unspecified|Mycetoma, unspecified +C0494107|T047|HT|B48|ICD10|Other mycoses, not elsewhere classified|Other mycoses, not elsewhere classified +C0494107|T047|AB|B48|ICD10CM|Other mycoses, not elsewhere classified|Other mycoses, not elsewhere classified +C0494107|T047|HT|B48|ICD10CM|Other mycoses, not elsewhere classified|Other mycoses, not elsewhere classified +C0152066|T047|ET|B48.0|ICD10CM|Keloidal blastomycosis|Keloidal blastomycosis +C0152066|T047|ET|B48.0|ICD10CM|Lobo's disease|Lobo's disease +C0152066|T047|PT|B48.0|ICD10CM|Lobomycosis|Lobomycosis +C0152066|T047|AB|B48.0|ICD10CM|Lobomycosis|Lobomycosis +C0152066|T047|PT|B48.0|ICD10|Lobomycosis|Lobomycosis +C0035469|T047|PT|B48.1|ICD10|Rhinosporidiosis|Rhinosporidiosis +C0035469|T047|PT|B48.1|ICD10CM|Rhinosporidiosis|Rhinosporidiosis +C0035469|T047|AB|B48.1|ICD10CM|Rhinosporidiosis|Rhinosporidiosis +C0153285|T047|PT|B48.2|ICD10CM|Allescheriasis|Allescheriasis +C0153285|T047|AB|B48.2|ICD10CM|Allescheriasis|Allescheriasis +C0153285|T047|PT|B48.2|ICD10|Allescheriasis|Allescheriasis +C2830241|T047|ET|B48.2|ICD10CM|Infection due to Pseudallescheria boydii|Infection due to Pseudallescheria boydii +C0017455|T047|PT|B48.3|ICD10|Geotrichosis|Geotrichosis +C0017455|T047|PT|B48.3|ICD10CM|Geotrichosis|Geotrichosis +C0017455|T047|AB|B48.3|ICD10CM|Geotrichosis|Geotrichosis +C2830242|T047|ET|B48.3|ICD10CM|Geotrichum stomatitis|Geotrichum stomatitis +C0348993|T047|PT|B48.4|ICD10|Penicillosis|Penicillosis +C0348993|T047|PT|B48.4|ICD10CM|Penicillosis|Penicillosis +C0348993|T047|AB|B48.4|ICD10CM|Penicillosis|Penicillosis +C0029119|T047|PT|B48.7|ICD10|Opportunistic mycoses|Opportunistic mycoses +C0259737|T047|ET|B48.8|ICD10CM|Adiaspiromycosis|Adiaspiromycosis +C2830243|T047|ET|B48.8|ICD10CM|Infection of tissue and organs by Alternaria|Infection of tissue and organs by Alternaria +C2830244|T047|ET|B48.8|ICD10CM|Infection of tissue and organs by Drechslera|Infection of tissue and organs by Drechslera +C2830245|T047|ET|B48.8|ICD10CM|Infection of tissue and organs by Fusarium|Infection of tissue and organs by Fusarium +C2830246|T047|ET|B48.8|ICD10CM|Infection of tissue and organs by saprophytic fungi NEC|Infection of tissue and organs by saprophytic fungi NEC +C0343847|T047|PT|B48.8|ICD10CM|Other specified mycoses|Other specified mycoses +C0343847|T047|AB|B48.8|ICD10CM|Other specified mycoses|Other specified mycoses +C0343847|T047|PT|B48.8|ICD10|Other specified mycoses|Other specified mycoses +C0085082|T047|ET|B49|ICD10CM|Fungemia NOS|Fungemia NOS +C0026946|T047|PT|B49|ICD10|Unspecified mycosis|Unspecified mycosis +C0026946|T047|PT|B49|ICD10CM|Unspecified mycosis|Unspecified mycosis +C0026946|T047|AB|B49|ICD10CM|Unspecified mycosis|Unspecified mycosis +C4290055|T047|ET|B50|ICD10CM|mixed infections of Plasmodium falciparum with any other Plasmodium species|mixed infections of Plasmodium falciparum with any other Plasmodium species +C0024535|T047|HT|B50|ICD10CM|Plasmodium falciparum malaria|Plasmodium falciparum malaria +C0024535|T047|AB|B50|ICD10CM|Plasmodium falciparum malaria|Plasmodium falciparum malaria +C0024535|T047|HT|B50|ICD10|Plasmodium falciparum malaria|Plasmodium falciparum malaria +C0033740|T047|HT|B50-B64|ICD10CM|Protozoal diseases (B50-B64)|Protozoal diseases (B50-B64) +C0033740|T047|HT|B50-B64.9|ICD10|Protozoal diseases|Protozoal diseases +C0024534|T047|ET|B50.0|ICD10CM|Cerebral malaria NOS|Cerebral malaria NOS +C0348986|T047|PT|B50.0|ICD10|Plasmodium falciparum malaria with cerebral complications|Plasmodium falciparum malaria with cerebral complications +C0348986|T047|PT|B50.0|ICD10CM|Plasmodium falciparum malaria with cerebral complications|Plasmodium falciparum malaria with cerebral complications +C0348986|T047|AB|B50.0|ICD10CM|Plasmodium falciparum malaria with cerebral complications|Plasmodium falciparum malaria with cerebral complications +C0348260|T047|PT|B50.8|ICD10CM|Other severe and complicated Plasmodium falciparum malaria|Other severe and complicated Plasmodium falciparum malaria +C0348260|T047|AB|B50.8|ICD10CM|Other severe and complicated Plasmodium falciparum malaria|Other severe and complicated Plasmodium falciparum malaria +C0348260|T047|PT|B50.8|ICD10|Other severe and complicated Plasmodium falciparum malaria|Other severe and complicated Plasmodium falciparum malaria +C2830248|T047|ET|B50.8|ICD10CM|Severe or complicated Plasmodium falciparum malaria NOS|Severe or complicated Plasmodium falciparum malaria NOS +C0024535|T047|PT|B50.9|ICD10|Plasmodium falciparum malaria, unspecified|Plasmodium falciparum malaria, unspecified +C0024535|T047|PT|B50.9|ICD10CM|Plasmodium falciparum malaria, unspecified|Plasmodium falciparum malaria, unspecified +C0024535|T047|AB|B50.9|ICD10CM|Plasmodium falciparum malaria, unspecified|Plasmodium falciparum malaria, unspecified +C4290056|T047|ET|B51|ICD10CM|mixed infections of Plasmodium vivax with other Plasmodium species, except Plasmodium falciparum|mixed infections of Plasmodium vivax with other Plasmodium species, except Plasmodium falciparum +C0024537|T047|HT|B51|ICD10CM|Plasmodium vivax malaria|Plasmodium vivax malaria +C0024537|T047|AB|B51|ICD10CM|Plasmodium vivax malaria|Plasmodium vivax malaria +C0024537|T047|HT|B51|ICD10|Plasmodium vivax malaria|Plasmodium vivax malaria +C0348987|T047|PT|B51.0|ICD10|Plasmodium vivax malaria with rupture of spleen|Plasmodium vivax malaria with rupture of spleen +C0348987|T047|PT|B51.0|ICD10CM|Plasmodium vivax malaria with rupture of spleen|Plasmodium vivax malaria with rupture of spleen +C0348987|T047|AB|B51.0|ICD10CM|Plasmodium vivax malaria with rupture of spleen|Plasmodium vivax malaria with rupture of spleen +C0348262|T047|PT|B51.8|ICD10|Plasmodium vivax malaria with other complications|Plasmodium vivax malaria with other complications +C0348262|T047|PT|B51.8|ICD10CM|Plasmodium vivax malaria with other complications|Plasmodium vivax malaria with other complications +C0348262|T047|AB|B51.8|ICD10CM|Plasmodium vivax malaria with other complications|Plasmodium vivax malaria with other complications +C0024537|T047|ET|B51.9|ICD10CM|Plasmodium vivax malaria NOS|Plasmodium vivax malaria NOS +C0348263|T047|PT|B51.9|ICD10CM|Plasmodium vivax malaria without complication|Plasmodium vivax malaria without complication +C0348263|T047|AB|B51.9|ICD10CM|Plasmodium vivax malaria without complication|Plasmodium vivax malaria without complication +C0348263|T047|PT|B51.9|ICD10|Plasmodium vivax malaria without complication|Plasmodium vivax malaria without complication +C0024536|T047|HT|B52|ICD10|Plasmodium malariae malaria|Plasmodium malariae malaria +C0024536|T047|HT|B52|ICD10CM|Plasmodium malariae malaria|Plasmodium malariae malaria +C0024536|T047|AB|B52|ICD10CM|Plasmodium malariae malaria|Plasmodium malariae malaria +C0348988|T047|PT|B52.0|ICD10CM|Plasmodium malariae malaria with nephropathy|Plasmodium malariae malaria with nephropathy +C0348988|T047|AB|B52.0|ICD10CM|Plasmodium malariae malaria with nephropathy|Plasmodium malariae malaria with nephropathy +C0348988|T047|PT|B52.0|ICD10|Plasmodium malariae malaria with nephropathy|Plasmodium malariae malaria with nephropathy +C0348264|T047|PT|B52.8|ICD10|Plasmodium malariae malaria with other complications|Plasmodium malariae malaria with other complications +C0348264|T047|PT|B52.8|ICD10CM|Plasmodium malariae malaria with other complications|Plasmodium malariae malaria with other complications +C0348264|T047|AB|B52.8|ICD10CM|Plasmodium malariae malaria with other complications|Plasmodium malariae malaria with other complications +C0024536|T047|ET|B52.9|ICD10CM|Plasmodium malariae malaria NOS|Plasmodium malariae malaria NOS +C0348265|T047|PT|B52.9|ICD10CM|Plasmodium malariae malaria without complication|Plasmodium malariae malaria without complication +C0348265|T047|AB|B52.9|ICD10CM|Plasmodium malariae malaria without complication|Plasmodium malariae malaria without complication +C0348265|T047|PT|B52.9|ICD10|Plasmodium malariae malaria without complication|Plasmodium malariae malaria without complication +C0494108|T047|HT|B53|ICD10|Other parasitologically confirmed malaria|Other parasitologically confirmed malaria +C2830251|T047|AB|B53|ICD10CM|Other specified malaria|Other specified malaria +C2830251|T047|HT|B53|ICD10CM|Other specified malaria|Other specified malaria +C0152072|T047|PT|B53.0|ICD10CM|Plasmodium ovale malaria|Plasmodium ovale malaria +C0152072|T047|AB|B53.0|ICD10CM|Plasmodium ovale malaria|Plasmodium ovale malaria +C0152072|T047|PT|B53.0|ICD10|Plasmodium ovale malaria|Plasmodium ovale malaria +C0276837|T047|PT|B53.1|ICD10|Malaria due to simian plasmodia|Malaria due to simian plasmodia +C0276837|T047|PT|B53.1|ICD10CM|Malaria due to simian plasmodia|Malaria due to simian plasmodia +C0276837|T047|AB|B53.1|ICD10CM|Malaria due to simian plasmodia|Malaria due to simian plasmodia +C2830252|T047|AB|B53.8|ICD10CM|Other malaria, not elsewhere classified|Other malaria, not elsewhere classified +C2830252|T047|PT|B53.8|ICD10CM|Other malaria, not elsewhere classified|Other malaria, not elsewhere classified +C0869044|T047|PT|B53.8|ICD10|Other parasitologically confirmed malaria, not elsewhere classified|Other parasitologically confirmed malaria, not elsewhere classified +C0024530|T047|PT|B54|ICD10CM|Unspecified malaria|Unspecified malaria +C0024530|T047|AB|B54|ICD10CM|Unspecified malaria|Unspecified malaria +C0024530|T047|PT|B54|ICD10|Unspecified malaria|Unspecified malaria +C0023281|T047|HT|B55|ICD10|Leishmaniasis|Leishmaniasis +C0023281|T047|HT|B55|ICD10CM|Leishmaniasis|Leishmaniasis +C0023281|T047|AB|B55|ICD10CM|Leishmaniasis|Leishmaniasis +C0023290|T047|ET|B55.0|ICD10CM|Kala-azar|Kala-azar +C0032749|T047|ET|B55.0|ICD10CM|Post-kala-azar dermal leishmaniasis|Post-kala-azar dermal leishmaniasis +C0023290|T047|PT|B55.0|ICD10CM|Visceral leishmaniasis|Visceral leishmaniasis +C0023290|T047|AB|B55.0|ICD10CM|Visceral leishmaniasis|Visceral leishmaniasis +C0023290|T047|PT|B55.0|ICD10|Visceral leishmaniasis|Visceral leishmaniasis +C0023283|T047|PT|B55.1|ICD10|Cutaneous leishmaniasis|Cutaneous leishmaniasis +C0023283|T047|PT|B55.1|ICD10CM|Cutaneous leishmaniasis|Cutaneous leishmaniasis +C0023283|T047|AB|B55.1|ICD10CM|Cutaneous leishmaniasis|Cutaneous leishmaniasis +C1328252|T047|PT|B55.2|ICD10|Mucocutaneous leishmaniasis|Mucocutaneous leishmaniasis +C1328252|T047|PT|B55.2|ICD10CM|Mucocutaneous leishmaniasis|Mucocutaneous leishmaniasis +C1328252|T047|AB|B55.2|ICD10CM|Mucocutaneous leishmaniasis|Mucocutaneous leishmaniasis +C0023281|T047|PT|B55.9|ICD10CM|Leishmaniasis, unspecified|Leishmaniasis, unspecified +C0023281|T047|AB|B55.9|ICD10CM|Leishmaniasis, unspecified|Leishmaniasis, unspecified +C0023281|T047|PT|B55.9|ICD10|Leishmaniasis, unspecified|Leishmaniasis, unspecified +C0041228|T047|HT|B56|ICD10|African trypanosomiasis|African trypanosomiasis +C0041228|T047|HT|B56|ICD10CM|African trypanosomiasis|African trypanosomiasis +C0041228|T047|AB|B56|ICD10CM|African trypanosomiasis|African trypanosomiasis +C0041232|T047|PT|B56.0|ICD10CM|Gambiense trypanosomiasis|Gambiense trypanosomiasis +C0041232|T047|AB|B56.0|ICD10CM|Gambiense trypanosomiasis|Gambiense trypanosomiasis +C0041232|T047|PT|B56.0|ICD10|Gambiense trypanosomiasis|Gambiense trypanosomiasis +C2830253|T047|ET|B56.0|ICD10CM|Infection due to Trypanosoma brucei gambiense|Infection due to Trypanosoma brucei gambiense +C0041232|T047|ET|B56.0|ICD10CM|West African sleeping sickness|West African sleeping sickness +C0041233|T047|ET|B56.1|ICD10CM|East African sleeping sickness|East African sleeping sickness +C2830254|T047|ET|B56.1|ICD10CM|Infection due to Trypanosoma brucei rhodesiense|Infection due to Trypanosoma brucei rhodesiense +C0041233|T047|PT|B56.1|ICD10CM|Rhodesiense trypanosomiasis|Rhodesiense trypanosomiasis +C0041233|T047|AB|B56.1|ICD10CM|Rhodesiense trypanosomiasis|Rhodesiense trypanosomiasis +C0041233|T047|PT|B56.1|ICD10|Rhodesiense trypanosomiasis|Rhodesiense trypanosomiasis +C0041228|T047|PT|B56.9|ICD10|African trypanosomiasis, unspecified|African trypanosomiasis, unspecified +C0041228|T047|PT|B56.9|ICD10CM|African trypanosomiasis, unspecified|African trypanosomiasis, unspecified +C0041228|T047|AB|B56.9|ICD10CM|African trypanosomiasis, unspecified|African trypanosomiasis, unspecified +C0041228|T047|ET|B56.9|ICD10CM|Sleeping sickness NOS|Sleeping sickness NOS +C0041234|T047|ET|B57|ICD10CM|American trypanosomiasis|American trypanosomiasis +C0041234|T047|HT|B57|ICD10CM|Chagas' disease|Chagas' disease +C0041234|T047|AB|B57|ICD10CM|Chagas' disease|Chagas' disease +C0041234|T047|HT|B57|ICD10|Chagas' disease|Chagas' disease +C0041234|T047|ET|B57|ICD10CM|infection due to Trypanosoma cruzi|infection due to Trypanosoma cruzi +C0349351|T047|PT|B57.0|ICD10|Acute Chagas' disease with heart involvement|Acute Chagas' disease with heart involvement +C0349351|T047|PT|B57.0|ICD10CM|Acute Chagas' disease with heart involvement|Acute Chagas' disease with heart involvement +C0349351|T047|AB|B57.0|ICD10CM|Acute Chagas' disease with heart involvement|Acute Chagas' disease with heart involvement +C2830256|T047|ET|B57.0|ICD10CM|Acute Chagas' disease with myocarditis|Acute Chagas' disease with myocarditis +C0343800|T047|ET|B57.1|ICD10CM|Acute Chagas' disease NOS|Acute Chagas' disease NOS +C0494111|T047|PT|B57.1|ICD10CM|Acute Chagas' disease without heart involvement|Acute Chagas' disease without heart involvement +C0494111|T047|AB|B57.1|ICD10CM|Acute Chagas' disease without heart involvement|Acute Chagas' disease without heart involvement +C0494111|T047|PT|B57.1|ICD10|Acute Chagas' disease without heart involvement|Acute Chagas' disease without heart involvement +C0041234|T047|ET|B57.2|ICD10CM|American trypanosomiasis NOS|American trypanosomiasis NOS +C0343804|T047|ET|B57.2|ICD10CM|Chagas' disease (chronic) NOS|Chagas' disease (chronic) NOS +C0494112|T047|PT|B57.2|ICD10|Chagas' disease (chronic) with heart involvement|Chagas' disease (chronic) with heart involvement +C0494112|T047|PT|B57.2|ICD10CM|Chagas' disease (chronic) with heart involvement|Chagas' disease (chronic) with heart involvement +C0494112|T047|AB|B57.2|ICD10CM|Chagas' disease (chronic) with heart involvement|Chagas' disease (chronic) with heart involvement +C2830257|T047|ET|B57.2|ICD10CM|Chagas' disease (chronic) with myocarditis|Chagas' disease (chronic) with myocarditis +C0041227|T047|ET|B57.2|ICD10CM|Trypanosomiasis NOS|Trypanosomiasis NOS +C0494113|T047|HT|B57.3|ICD10CM|Chagas' disease (chronic) with digestive system involvement|Chagas' disease (chronic) with digestive system involvement +C0494113|T047|AB|B57.3|ICD10CM|Chagas' disease (chronic) with digestive system involvement|Chagas' disease (chronic) with digestive system involvement +C0494113|T047|PT|B57.3|ICD10|Chagas' disease (chronic) with digestive system involvement|Chagas' disease (chronic) with digestive system involvement +C2830258|T047|AB|B57.30|ICD10CM|Chagas' disease with digestive system involvement, unsp|Chagas' disease with digestive system involvement, unsp +C2830258|T047|PT|B57.30|ICD10CM|Chagas' disease with digestive system involvement, unspecified|Chagas' disease with digestive system involvement, unspecified +C0348892|T047|PT|B57.31|ICD10CM|Megaesophagus in Chagas' disease|Megaesophagus in Chagas' disease +C0348892|T047|AB|B57.31|ICD10CM|Megaesophagus in Chagas' disease|Megaesophagus in Chagas' disease +C0451702|T047|PT|B57.32|ICD10CM|Megacolon in Chagas' disease|Megacolon in Chagas' disease +C0451702|T047|AB|B57.32|ICD10CM|Megacolon in Chagas' disease|Megacolon in Chagas' disease +C2830259|T047|AB|B57.39|ICD10CM|Other digestive system involvement in Chagas' disease|Other digestive system involvement in Chagas' disease +C2830259|T047|PT|B57.39|ICD10CM|Other digestive system involvement in Chagas' disease|Other digestive system involvement in Chagas' disease +C0494114|T047|PT|B57.4|ICD10|Chagas' disease (chronic) with nervous system involvement|Chagas' disease (chronic) with nervous system involvement +C0494114|T047|HT|B57.4|ICD10CM|Chagas' disease (chronic) with nervous system involvement|Chagas' disease (chronic) with nervous system involvement +C0494114|T047|AB|B57.4|ICD10CM|Chagas' disease (chronic) with nervous system involvement|Chagas' disease (chronic) with nervous system involvement +C2830260|T047|AB|B57.40|ICD10CM|Chagas' disease with nervous system involvement, unspecified|Chagas' disease with nervous system involvement, unspecified +C2830260|T047|PT|B57.40|ICD10CM|Chagas' disease with nervous system involvement, unspecified|Chagas' disease with nervous system involvement, unspecified +C2830261|T047|AB|B57.41|ICD10CM|Meningitis in Chagas' disease|Meningitis in Chagas' disease +C2830261|T047|PT|B57.41|ICD10CM|Meningitis in Chagas' disease|Meningitis in Chagas' disease +C2830262|T047|AB|B57.42|ICD10CM|Meningoencephalitis in Chagas' disease|Meningoencephalitis in Chagas' disease +C2830262|T047|PT|B57.42|ICD10CM|Meningoencephalitis in Chagas' disease|Meningoencephalitis in Chagas' disease +C2830263|T047|AB|B57.49|ICD10CM|Other nervous system involvement in Chagas' disease|Other nervous system involvement in Chagas' disease +C2830263|T047|PT|B57.49|ICD10CM|Other nervous system involvement in Chagas' disease|Other nervous system involvement in Chagas' disease +C0348267|T047|PT|B57.5|ICD10CM|Chagas' disease (chronic) with other organ involvement|Chagas' disease (chronic) with other organ involvement +C0348267|T047|AB|B57.5|ICD10CM|Chagas' disease (chronic) with other organ involvement|Chagas' disease (chronic) with other organ involvement +C0348267|T047|PT|B57.5|ICD10|Chagas' disease (chronic) with other organ involvement|Chagas' disease (chronic) with other organ involvement +C0040558|T047|ET|B58|ICD10CM|infection due to Toxoplasma gondii|infection due to Toxoplasma gondii +C0040558|T047|HT|B58|ICD10CM|Toxoplasmosis|Toxoplasmosis +C0040558|T047|AB|B58|ICD10CM|Toxoplasmosis|Toxoplasmosis +C0040558|T047|HT|B58|ICD10|Toxoplasmosis|Toxoplasmosis +C0040561|T047|PT|B58.0|ICD10|Toxoplasma oculopathy|Toxoplasma oculopathy +C0040561|T047|HT|B58.0|ICD10CM|Toxoplasma oculopathy|Toxoplasma oculopathy +C0040561|T047|AB|B58.0|ICD10CM|Toxoplasma oculopathy|Toxoplasma oculopathy +C0040561|T047|AB|B58.00|ICD10CM|Toxoplasma oculopathy, unspecified|Toxoplasma oculopathy, unspecified +C0040561|T047|PT|B58.00|ICD10CM|Toxoplasma oculopathy, unspecified|Toxoplasma oculopathy, unspecified +C0153308|T047|PT|B58.01|ICD10CM|Toxoplasma chorioretinitis|Toxoplasma chorioretinitis +C0153308|T047|AB|B58.01|ICD10CM|Toxoplasma chorioretinitis|Toxoplasma chorioretinitis +C2830267|T047|AB|B58.09|ICD10CM|Other toxoplasma oculopathy|Other toxoplasma oculopathy +C2830267|T047|PT|B58.09|ICD10CM|Other toxoplasma oculopathy|Other toxoplasma oculopathy +C2830266|T047|ET|B58.09|ICD10CM|Toxoplasma uveitis|Toxoplasma uveitis +C0400895|T047|PT|B58.1|ICD10CM|Toxoplasma hepatitis|Toxoplasma hepatitis +C0400895|T047|AB|B58.1|ICD10CM|Toxoplasma hepatitis|Toxoplasma hepatitis +C0400895|T047|PT|B58.1|ICD10|Toxoplasma hepatitis|Toxoplasma hepatitis +C0085315|T047|PT|B58.2|ICD10CM|Toxoplasma meningoencephalitis|Toxoplasma meningoencephalitis +C0085315|T047|AB|B58.2|ICD10CM|Toxoplasma meningoencephalitis|Toxoplasma meningoencephalitis +C0085315|T047|PT|B58.2|ICD10|Toxoplasma meningoencephalitis|Toxoplasma meningoencephalitis +C3495536|T047|PT|B58.3|ICD10|Pulmonary toxoplasmosis|Pulmonary toxoplasmosis +C3495536|T047|PT|B58.3|ICD10CM|Pulmonary toxoplasmosis|Pulmonary toxoplasmosis +C3495536|T047|AB|B58.3|ICD10CM|Pulmonary toxoplasmosis|Pulmonary toxoplasmosis +C0348268|T047|PT|B58.8|ICD10|Toxoplasmosis with other organ involvement|Toxoplasmosis with other organ involvement +C0348268|T047|HT|B58.8|ICD10CM|Toxoplasmosis with other organ involvement|Toxoplasmosis with other organ involvement +C0348268|T047|AB|B58.8|ICD10CM|Toxoplasmosis with other organ involvement|Toxoplasmosis with other organ involvement +C0276804|T047|PT|B58.81|ICD10CM|Toxoplasma myocarditis|Toxoplasma myocarditis +C0276804|T047|AB|B58.81|ICD10CM|Toxoplasma myocarditis|Toxoplasma myocarditis +C2830268|T047|PT|B58.82|ICD10CM|Toxoplasma myositis|Toxoplasma myositis +C2830268|T047|AB|B58.82|ICD10CM|Toxoplasma myositis|Toxoplasma myositis +C2830269|T047|ET|B58.83|ICD10CM|Toxoplasma pyelonephritis|Toxoplasma pyelonephritis +C2830270|T047|PT|B58.83|ICD10CM|Toxoplasma tubulo-interstitial nephropathy|Toxoplasma tubulo-interstitial nephropathy +C2830270|T047|AB|B58.83|ICD10CM|Toxoplasma tubulo-interstitial nephropathy|Toxoplasma tubulo-interstitial nephropathy +C0348268|T047|AB|B58.89|ICD10CM|Toxoplasmosis with other organ involvement|Toxoplasmosis with other organ involvement +C0348268|T047|PT|B58.89|ICD10CM|Toxoplasmosis with other organ involvement|Toxoplasmosis with other organ involvement +C0040558|T047|PT|B58.9|ICD10CM|Toxoplasmosis, unspecified|Toxoplasmosis, unspecified +C0040558|T047|AB|B58.9|ICD10CM|Toxoplasmosis, unspecified|Toxoplasmosis, unspecified +C0040558|T047|PT|B58.9|ICD10|Toxoplasmosis, unspecified|Toxoplasmosis, unspecified +C1535939|T047|PT|B59|ICD10|Pneumocystosis|Pneumocystosis +C1535939|T047|PT|B59|ICD10CM|Pneumocystosis|Pneumocystosis +C1535939|T047|AB|B59|ICD10CM|Pneumocystosis|Pneumocystosis +C1535939|T047|ET|B59|ICD10CM|Pneumonia due to Pneumocystis carinii|Pneumonia due to Pneumocystis carinii +C1719301|T047|ET|B59|ICD10CM|Pneumonia due to Pneumocystis jiroveci|Pneumonia due to Pneumocystis jiroveci +C0494116|T047|AB|B60|ICD10CM|Other protozoal diseases, not elsewhere classified|Other protozoal diseases, not elsewhere classified +C0494116|T047|HT|B60|ICD10CM|Other protozoal diseases, not elsewhere classified|Other protozoal diseases, not elsewhere classified +C0494116|T047|HT|B60|ICD10|Other protozoal diseases, not elsewhere classified|Other protozoal diseases, not elsewhere classified +C0004576|T047|PT|B60.0|ICD10CM|Babesiosis|Babesiosis +C0004576|T047|AB|B60.0|ICD10CM|Babesiosis|Babesiosis +C0004576|T047|PT|B60.0|ICD10|Babesiosis|Babesiosis +C0004576|T047|ET|B60.0|ICD10CM|Piroplasmosis|Piroplasmosis +C0033129|T047|PT|B60.1|ICD10AE|Acanthamebiasis|Acanthamebiasis +C0033129|T047|HT|B60.1|ICD10CM|Acanthamebiasis|Acanthamebiasis +C0033129|T047|AB|B60.1|ICD10CM|Acanthamebiasis|Acanthamebiasis +C0033129|T047|PT|B60.1|ICD10|Acanthamoebiasis|Acanthamoebiasis +C0033129|T047|AB|B60.10|ICD10CM|Acanthamebiasis, unspecified|Acanthamebiasis, unspecified +C0033129|T047|PT|B60.10|ICD10CM|Acanthamebiasis, unspecified|Acanthamebiasis, unspecified +C2830271|T047|AB|B60.11|ICD10CM|Meningoencephalitis due to Acanthamoeba (culbertsoni)|Meningoencephalitis due to Acanthamoeba (culbertsoni) +C2830271|T047|PT|B60.11|ICD10CM|Meningoencephalitis due to Acanthamoeba (culbertsoni)|Meningoencephalitis due to Acanthamoeba (culbertsoni) +C2830272|T047|PT|B60.12|ICD10CM|Conjunctivitis due to Acanthamoeba|Conjunctivitis due to Acanthamoeba +C2830272|T047|AB|B60.12|ICD10CM|Conjunctivitis due to Acanthamoeba|Conjunctivitis due to Acanthamoeba +C2830273|T047|PT|B60.13|ICD10CM|Keratoconjunctivitis due to Acanthamoeba|Keratoconjunctivitis due to Acanthamoeba +C2830273|T047|AB|B60.13|ICD10CM|Keratoconjunctivitis due to Acanthamoeba|Keratoconjunctivitis due to Acanthamoeba +C2830274|T047|AB|B60.19|ICD10CM|Other acanthamebic disease|Other acanthamebic disease +C2830274|T047|PT|B60.19|ICD10CM|Other acanthamebic disease|Other acanthamebic disease +C0276822|T047|PT|B60.2|ICD10CM|Naegleriasis|Naegleriasis +C0276822|T047|AB|B60.2|ICD10CM|Naegleriasis|Naegleriasis +C0276822|T047|PT|B60.2|ICD10|Naegleriasis|Naegleriasis +C0300934|T047|ET|B60.2|ICD10CM|Primary amebic meningoencephalitis|Primary amebic meningoencephalitis +C0085407|T047|ET|B60.8|ICD10CM|Microsporidiosis|Microsporidiosis +C0348270|T047|PT|B60.8|ICD10CM|Other specified protozoal diseases|Other specified protozoal diseases +C0348270|T047|AB|B60.8|ICD10CM|Other specified protozoal diseases|Other specified protozoal diseases +C0348270|T047|PT|B60.8|ICD10|Other specified protozoal diseases|Other specified protozoal diseases +C0033740|T047|PT|B64|ICD10|Unspecified protozoal disease|Unspecified protozoal disease +C0033740|T047|PT|B64|ICD10CM|Unspecified protozoal disease|Unspecified protozoal disease +C0033740|T047|AB|B64|ICD10CM|Unspecified protozoal disease|Unspecified protozoal disease +C0036323|T047|AB|B65|ICD10CM|Schistosomiasis [bilharziasis]|Schistosomiasis [bilharziasis] +C0036323|T047|HT|B65|ICD10CM|Schistosomiasis [bilharziasis]|Schistosomiasis [bilharziasis] +C0036323|T047|HT|B65|ICD10|Schistosomiasis [bilharziasis]|Schistosomiasis [bilharziasis] +C0036323|T047|ET|B65|ICD10CM|snail fever|snail fever +C0018889|T047|HT|B65-B83|ICD10CM|Helminthiases (B65-B83)|Helminthiases (B65-B83) +C0018889|T047|HT|B65-B83.9|ICD10|Helminthiases|Helminthiases +C1704430|T047|AB|B65.0|ICD10CM|Schistosomiasis due to Schistosoma haematobium|Schistosomiasis due to Schistosoma haematobium +C1704430|T047|PT|B65.0|ICD10CM|Schistosomiasis due to Schistosoma haematobium [urinary schistosomiasis]|Schistosomiasis due to Schistosoma haematobium [urinary schistosomiasis] +C1704430|T047|PT|B65.0|ICD10|Schistosomiasis due to Schistosoma haematobium [urinary schistosomiasis]|Schistosomiasis due to Schistosoma haematobium [urinary schistosomiasis] +C1704430|T047|PT|B65.0|ICD10AE|Schistosomiasis due to Schistosoma hematobium [urinary schistosomiasis]|Schistosomiasis due to Schistosoma hematobium [urinary schistosomiasis] +C0036330|T047|AB|B65.1|ICD10CM|Schistosomiasis due to Schistosoma mansoni|Schistosomiasis due to Schistosoma mansoni +C0036330|T047|PT|B65.1|ICD10CM|Schistosomiasis due to Schistosoma mansoni [intestinal schistosomiasis]|Schistosomiasis due to Schistosoma mansoni [intestinal schistosomiasis] +C0036330|T047|PT|B65.1|ICD10|Schistosomiasis due to Schistosoma mansoni [intestinal schistosomiasis]|Schistosomiasis due to Schistosoma mansoni [intestinal schistosomiasis] +C0036329|T047|ET|B65.2|ICD10CM|Asiatic schistosomiasis|Asiatic schistosomiasis +C0036329|T047|PT|B65.2|ICD10CM|Schistosomiasis due to Schistosoma japonicum|Schistosomiasis due to Schistosoma japonicum +C0036329|T047|AB|B65.2|ICD10CM|Schistosomiasis due to Schistosoma japonicum|Schistosomiasis due to Schistosoma japonicum +C0036329|T047|PT|B65.2|ICD10|Schistosomiasis due to Schistosoma japonicum|Schistosomiasis due to Schistosoma japonicum +C4282208|T047|PT|B65.3|ICD10|Cercarial dermatitis|Cercarial dermatitis +C4282208|T047|PT|B65.3|ICD10CM|Cercarial dermatitis|Cercarial dermatitis +C4282208|T047|AB|B65.3|ICD10CM|Cercarial dermatitis|Cercarial dermatitis +C0546996|T047|ET|B65.3|ICD10CM|Swimmer's itch|Swimmer's itch +C2830276|T047|ET|B65.8|ICD10CM|Infection due to Schistosoma intercalatum|Infection due to Schistosoma intercalatum +C2830277|T047|ET|B65.8|ICD10CM|Infection due to Schistosoma mattheei|Infection due to Schistosoma mattheei +C2830278|T047|ET|B65.8|ICD10CM|Infection due to Schistosoma mekongi|Infection due to Schistosoma mekongi +C0348272|T047|PT|B65.8|ICD10|Other schistosomiases|Other schistosomiases +C0348272|T047|AB|B65.8|ICD10CM|Other schistosomiasis|Other schistosomiasis +C0348272|T047|PT|B65.8|ICD10CM|Other schistosomiasis|Other schistosomiasis +C0036323|T047|PT|B65.9|ICD10CM|Schistosomiasis, unspecified|Schistosomiasis, unspecified +C0036323|T047|AB|B65.9|ICD10CM|Schistosomiasis, unspecified|Schistosomiasis, unspecified +C0036323|T047|PT|B65.9|ICD10|Schistosomiasis, unspecified|Schistosomiasis, unspecified +C0153288|T047|HT|B66|ICD10|Other fluke infections|Other fluke infections +C0153288|T047|AB|B66|ICD10CM|Other fluke infections|Other fluke infections +C0153288|T047|HT|B66|ICD10CM|Other fluke infections|Other fluke infections +C2830280|T047|ET|B66.0|ICD10CM|Infection due to cat liver fluke|Infection due to cat liver fluke +C2830279|T047|ET|B66.0|ICD10CM|Infection due to Opisthorchis (felineus)(viverrini)|Infection due to Opisthorchis (felineus)(viverrini) +C0029106|T047|PT|B66.0|ICD10CM|Opisthorchiasis|Opisthorchiasis +C0029106|T047|AB|B66.0|ICD10CM|Opisthorchiasis|Opisthorchiasis +C0029106|T047|PT|B66.0|ICD10|Opisthorchiasis|Opisthorchiasis +C0009021|T047|ET|B66.1|ICD10CM|Chinese liver fluke disease|Chinese liver fluke disease +C0009021|T047|PT|B66.1|ICD10CM|Clonorchiasis|Clonorchiasis +C0009021|T047|AB|B66.1|ICD10CM|Clonorchiasis|Clonorchiasis +C0009021|T047|PT|B66.1|ICD10|Clonorchiasis|Clonorchiasis +C2830281|T047|ET|B66.1|ICD10CM|Infection due to Clonorchis sinensis|Infection due to Clonorchis sinensis +C0009021|T047|ET|B66.1|ICD10CM|Oriental liver fluke disease|Oriental liver fluke disease +C0012102|T047|PT|B66.2|ICD10CM|Dicroceliasis|Dicroceliasis +C0012102|T047|AB|B66.2|ICD10CM|Dicroceliasis|Dicroceliasis +C0012102|T047|PT|B66.2|ICD10|Dicrocoeliasis|Dicrocoeliasis +C2830282|T047|ET|B66.2|ICD10CM|Infection due to Dicrocoelium dendriticum|Infection due to Dicrocoelium dendriticum +C0012102|T047|ET|B66.2|ICD10CM|Lancet fluke infection|Lancet fluke infection +C0015652|T047|PT|B66.3|ICD10CM|Fascioliasis|Fascioliasis +C0015652|T047|AB|B66.3|ICD10CM|Fascioliasis|Fascioliasis +C0015652|T047|PT|B66.3|ICD10|Fascioliasis|Fascioliasis +C2830283|T047|ET|B66.3|ICD10CM|Infection due to Fasciola gigantica|Infection due to Fasciola gigantica +C1331532|T047|ET|B66.3|ICD10CM|Infection due to Fasciola hepatica|Infection due to Fasciola hepatica +C2830285|T047|ET|B66.3|ICD10CM|Infection due to Fasciola indica|Infection due to Fasciola indica +C1331532|T047|ET|B66.3|ICD10CM|Sheep liver fluke disease|Sheep liver fluke disease +C2830286|T047|ET|B66.4|ICD10CM|Infection due to Paragonimus species|Infection due to Paragonimus species +C0030424|T047|ET|B66.4|ICD10CM|Lung fluke disease|Lung fluke disease +C0030424|T047|AB|B66.4|ICD10CM|Paragonimiasis|Paragonimiasis +C0030424|T047|PT|B66.4|ICD10|Paragonimiasis|Paragonimiasis +C0030424|T047|PT|B66.4|ICD10CM|Paragonimiasis|Paragonimiasis +C0030424|T047|ET|B66.4|ICD10CM|Pulmonary distomiasis|Pulmonary distomiasis +C0015656|T047|PT|B66.5|ICD10CM|Fasciolopsiasis|Fasciolopsiasis +C0015656|T047|AB|B66.5|ICD10CM|Fasciolopsiasis|Fasciolopsiasis +C0015656|T047|PT|B66.5|ICD10|Fasciolopsiasis|Fasciolopsiasis +C2830287|T047|ET|B66.5|ICD10CM|Infection due to Fasciolopsis buski|Infection due to Fasciolopsis buski +C0015656|T047|ET|B66.5|ICD10CM|Intestinal distomiasis|Intestinal distomiasis +C0013514|T047|ET|B66.8|ICD10CM|Echinostomiasis|Echinostomiasis +C0152071|T047|ET|B66.8|ICD10CM|Heterophyiasis|Heterophyiasis +C0025530|T047|ET|B66.8|ICD10CM|Metagonimiasis|Metagonimiasis +C1404708|T047|ET|B66.8|ICD10CM|Nanophyetiasis|Nanophyetiasis +C0348274|T047|PT|B66.8|ICD10CM|Other specified fluke infections|Other specified fluke infections +C0348274|T047|AB|B66.8|ICD10CM|Other specified fluke infections|Other specified fluke infections +C0348274|T047|PT|B66.8|ICD10|Other specified fluke infections|Other specified fluke infections +C1411158|T047|ET|B66.8|ICD10CM|Watsoniasis|Watsoniasis +C0040820|T047|PT|B66.9|ICD10|Fluke infection, unspecified|Fluke infection, unspecified +C0040820|T047|AB|B66.9|ICD10CM|Fluke infection, unspecified|Fluke infection, unspecified +C0040820|T047|PT|B66.9|ICD10CM|Fluke infection, unspecified|Fluke infection, unspecified +C0013502|T047|HT|B67|ICD10|Echinococcosis|Echinococcosis +C0013502|T047|HT|B67|ICD10CM|Echinococcosis|Echinococcosis +C0013502|T047|AB|B67|ICD10CM|Echinococcosis|Echinococcosis +C0013502|T047|ET|B67|ICD10CM|hydatidosis|hydatidosis +C0153289|T047|PT|B67.0|ICD10|Echinococcus granulosus infection of liver|Echinococcus granulosus infection of liver +C0153289|T047|PT|B67.0|ICD10CM|Echinococcus granulosus infection of liver|Echinococcus granulosus infection of liver +C0153289|T047|AB|B67.0|ICD10CM|Echinococcus granulosus infection of liver|Echinococcus granulosus infection of liver +C0153290|T047|PT|B67.1|ICD10CM|Echinococcus granulosus infection of lung|Echinococcus granulosus infection of lung +C0153290|T047|AB|B67.1|ICD10CM|Echinococcus granulosus infection of lung|Echinococcus granulosus infection of lung +C0153290|T047|PT|B67.1|ICD10|Echinococcus granulosus infection of lung|Echinococcus granulosus infection of lung +C0348994|T047|PT|B67.2|ICD10|Echinococcus granulosus infection of bone|Echinococcus granulosus infection of bone +C0348994|T047|PT|B67.2|ICD10CM|Echinococcus granulosus infection of bone|Echinococcus granulosus infection of bone +C0348994|T047|AB|B67.2|ICD10CM|Echinococcus granulosus infection of bone|Echinococcus granulosus infection of bone +C0494118|T047|PT|B67.3|ICD10|Echinococcus granulosus infection, other and multiple sites|Echinococcus granulosus infection, other and multiple sites +C0494118|T047|HT|B67.3|ICD10CM|Echinococcus granulosus infection, other and multiple sites|Echinococcus granulosus infection, other and multiple sites +C0494118|T047|AB|B67.3|ICD10CM|Echinococcus granulosus infection, other and multiple sites|Echinococcus granulosus infection, other and multiple sites +C0153291|T047|AB|B67.31|ICD10CM|Echinococcus granulosus infection, thyroid gland|Echinococcus granulosus infection, thyroid gland +C0153291|T047|PT|B67.31|ICD10CM|Echinococcus granulosus infection, thyroid gland|Echinococcus granulosus infection, thyroid gland +C2830289|T047|AB|B67.32|ICD10CM|Echinococcus granulosus infection, multiple sites|Echinococcus granulosus infection, multiple sites +C2830289|T047|PT|B67.32|ICD10CM|Echinococcus granulosus infection, multiple sites|Echinococcus granulosus infection, multiple sites +C0277055|T047|AB|B67.39|ICD10CM|Echinococcus granulosus infection, other sites|Echinococcus granulosus infection, other sites +C0277055|T047|PT|B67.39|ICD10CM|Echinococcus granulosus infection, other sites|Echinococcus granulosus infection, other sites +C0392661|T047|ET|B67.4|ICD10CM|Dog tapeworm (infection)|Dog tapeworm (infection) +C0152068|T047|PT|B67.4|ICD10CM|Echinococcus granulosus infection, unspecified|Echinococcus granulosus infection, unspecified +C0152068|T047|AB|B67.4|ICD10CM|Echinococcus granulosus infection, unspecified|Echinococcus granulosus infection, unspecified +C0152068|T047|PT|B67.4|ICD10|Echinococcus granulosus infection, unspecified|Echinococcus granulosus infection, unspecified +C0153293|T047|PT|B67.5|ICD10|Echinococcus multilocularis infection of liver|Echinococcus multilocularis infection of liver +C0153293|T047|PT|B67.5|ICD10CM|Echinococcus multilocularis infection of liver|Echinococcus multilocularis infection of liver +C0153293|T047|AB|B67.5|ICD10CM|Echinococcus multilocularis infection of liver|Echinococcus multilocularis infection of liver +C0152069|T047|AB|B67.6|ICD10CM|Echinococcus multilocularis infct, oth and multiple sites|Echinococcus multilocularis infct, oth and multiple sites +C0152069|T047|HT|B67.6|ICD10CM|Echinococcus multilocularis infection, other and multiple sites|Echinococcus multilocularis infection, other and multiple sites +C0152069|T047|PT|B67.6|ICD10|Echinococcus multilocularis infection, other and multiple sites|Echinococcus multilocularis infection, other and multiple sites +C2830290|T047|AB|B67.61|ICD10CM|Echinococcus multilocularis infection, multiple sites|Echinococcus multilocularis infection, multiple sites +C2830290|T047|PT|B67.61|ICD10CM|Echinococcus multilocularis infection, multiple sites|Echinococcus multilocularis infection, multiple sites +C0277056|T047|AB|B67.69|ICD10CM|Echinococcus multilocularis infection, other sites|Echinococcus multilocularis infection, other sites +C0277056|T047|PT|B67.69|ICD10CM|Echinococcus multilocularis infection, other sites|Echinococcus multilocularis infection, other sites +C0152069|T047|PT|B67.7|ICD10|Echinococcus multilocularis infection, unspecified|Echinococcus multilocularis infection, unspecified +C0152069|T047|PT|B67.7|ICD10CM|Echinococcus multilocularis infection, unspecified|Echinococcus multilocularis infection, unspecified +C0152069|T047|AB|B67.7|ICD10CM|Echinococcus multilocularis infection, unspecified|Echinococcus multilocularis infection, unspecified +C0013504|T047|PT|B67.8|ICD10CM|Echinococcosis, unspecified, of liver|Echinococcosis, unspecified, of liver +C0013504|T047|AB|B67.8|ICD10CM|Echinococcosis, unspecified, of liver|Echinococcosis, unspecified, of liver +C0013504|T047|PT|B67.8|ICD10|Echinococcosis, unspecified, of liver|Echinococcosis, unspecified, of liver +C0348276|T047|PT|B67.9|ICD10|Echinococcosis, other and unspecified|Echinococcosis, other and unspecified +C0348276|T047|HT|B67.9|ICD10CM|Echinococcosis, other and unspecified|Echinococcosis, other and unspecified +C0348276|T047|AB|B67.9|ICD10CM|Echinococcosis, other and unspecified|Echinococcosis, other and unspecified +C0013502|T047|ET|B67.90|ICD10CM|Echinococcosis NOS|Echinococcosis NOS +C0013502|T047|AB|B67.90|ICD10CM|Echinococcosis, unspecified|Echinococcosis, unspecified +C0013502|T047|PT|B67.90|ICD10CM|Echinococcosis, unspecified|Echinococcosis, unspecified +C2830291|T047|AB|B67.99|ICD10CM|Other echinococcosis|Other echinococcosis +C2830291|T047|PT|B67.99|ICD10CM|Other echinococcosis|Other echinococcosis +C0039254|T047|HT|B68|ICD10|Taeniasis|Taeniasis +C0039254|T047|HT|B68|ICD10CM|Taeniasis|Taeniasis +C0039254|T047|AB|B68|ICD10CM|Taeniasis|Taeniasis +C0039254|T047|HT|B68|ICD10AE|Teniasis|Teniasis +C0473878|T047|ET|B68.0|ICD10CM|Pork tapeworm (infection)|Pork tapeworm (infection) +C0473878|T047|PT|B68.0|ICD10CM|Taenia solium taeniasis|Taenia solium taeniasis +C0473878|T047|AB|B68.0|ICD10CM|Taenia solium taeniasis|Taenia solium taeniasis +C0473878|T047|PT|B68.0|ICD10|Taenia solium taeniasis|Taenia solium taeniasis +C0473878|T047|PT|B68.0|ICD10AE|Tenia solium teniasis|Tenia solium teniasis +C0152073|T047|ET|B68.1|ICD10CM|Beef tapeworm (infection)|Beef tapeworm (infection) +C2830292|T047|ET|B68.1|ICD10CM|Infection due to adult tapeworm Taenia saginata|Infection due to adult tapeworm Taenia saginata +C0152073|T047|PT|B68.1|ICD10CM|Taenia saginata taeniasis|Taenia saginata taeniasis +C0152073|T047|AB|B68.1|ICD10CM|Taenia saginata taeniasis|Taenia saginata taeniasis +C0152073|T047|PT|B68.1|ICD10|Taenia saginata taeniasis|Taenia saginata taeniasis +C0152073|T047|PT|B68.1|ICD10AE|Tenia saginata teniasis|Tenia saginata teniasis +C0039254|T047|PT|B68.9|ICD10|Taeniasis, unspecified|Taeniasis, unspecified +C0039254|T047|PT|B68.9|ICD10CM|Taeniasis, unspecified|Taeniasis, unspecified +C0039254|T047|AB|B68.9|ICD10CM|Taeniasis, unspecified|Taeniasis, unspecified +C0039254|T047|PT|B68.9|ICD10AE|Teniasis, unspecified|Teniasis, unspecified +C4290058|T047|ET|B69|ICD10CM|cysticerciasis infection due to larval form of Taenia solium|cysticerciasis infection due to larval form of Taenia solium +C0010678|T047|HT|B69|ICD10CM|Cysticercosis|Cysticercosis +C0010678|T047|AB|B69|ICD10CM|Cysticercosis|Cysticercosis +C0010678|T047|HT|B69|ICD10|Cysticercosis|Cysticercosis +C0338437|T047|PT|B69.0|ICD10|Cysticercosis of central nervous system|Cysticercosis of central nervous system +C0338437|T047|PT|B69.0|ICD10CM|Cysticercosis of central nervous system|Cysticercosis of central nervous system +C0338437|T047|AB|B69.0|ICD10CM|Cysticercosis of central nervous system|Cysticercosis of central nervous system +C0348995|T047|PT|B69.1|ICD10|Cysticercosis of eye|Cysticercosis of eye +C0348995|T047|PT|B69.1|ICD10CM|Cysticercosis of eye|Cysticercosis of eye +C0348995|T047|AB|B69.1|ICD10CM|Cysticercosis of eye|Cysticercosis of eye +C0348278|T047|PT|B69.8|ICD10|Cysticercosis of other sites|Cysticercosis of other sites +C0348278|T047|HT|B69.8|ICD10CM|Cysticercosis of other sites|Cysticercosis of other sites +C0348278|T047|AB|B69.8|ICD10CM|Cysticercosis of other sites|Cysticercosis of other sites +C0343247|T047|PT|B69.81|ICD10CM|Myositis in cysticercosis|Myositis in cysticercosis +C0343247|T047|AB|B69.81|ICD10CM|Myositis in cysticercosis|Myositis in cysticercosis +C0348278|T047|PT|B69.89|ICD10CM|Cysticercosis of other sites|Cysticercosis of other sites +C0348278|T047|AB|B69.89|ICD10CM|Cysticercosis of other sites|Cysticercosis of other sites +C0010678|T047|PT|B69.9|ICD10CM|Cysticercosis, unspecified|Cysticercosis, unspecified +C0010678|T047|AB|B69.9|ICD10CM|Cysticercosis, unspecified|Cysticercosis, unspecified +C0010678|T047|PT|B69.9|ICD10|Cysticercosis, unspecified|Cysticercosis, unspecified +C0494122|T047|AB|B70|ICD10CM|Diphyllobothriasis and sparganosis|Diphyllobothriasis and sparganosis +C0494122|T047|HT|B70|ICD10CM|Diphyllobothriasis and sparganosis|Diphyllobothriasis and sparganosis +C0494122|T047|HT|B70|ICD10|Diphyllobothriasis and sparganosis|Diphyllobothriasis and sparganosis +C0012561|T047|PT|B70.0|ICD10|Diphyllobothriasis|Diphyllobothriasis +C0012561|T047|PT|B70.0|ICD10CM|Diphyllobothriasis|Diphyllobothriasis +C0012561|T047|AB|B70.0|ICD10CM|Diphyllobothriasis|Diphyllobothriasis +C2830294|T047|ET|B70.0|ICD10CM|Diphyllobothrium (adult) (latum) (pacificum) infection|Diphyllobothrium (adult) (latum) (pacificum) infection +C0012561|T047|ET|B70.0|ICD10CM|Fish tapeworm (infection)|Fish tapeworm (infection) +C2830295|T047|ET|B70.1|ICD10CM|Infection due to Sparganum (mansoni) (proliferum)|Infection due to Sparganum (mansoni) (proliferum) +C2830296|T047|ET|B70.1|ICD10CM|Infection due to Spirometra larva|Infection due to Spirometra larva +C0037753|T047|ET|B70.1|ICD10CM|Larval diphyllobothriasis|Larval diphyllobothriasis +C0037753|T047|PT|B70.1|ICD10CM|Sparganosis|Sparganosis +C0037753|T047|AB|B70.1|ICD10CM|Sparganosis|Sparganosis +C0037753|T047|PT|B70.1|ICD10|Sparganosis|Sparganosis +C0037753|T047|ET|B70.1|ICD10CM|Spirometrosis|Spirometrosis +C0153296|T047|AB|B71|ICD10CM|Other cestode infections|Other cestode infections +C0153296|T047|HT|B71|ICD10CM|Other cestode infections|Other cestode infections +C0153296|T047|HT|B71|ICD10|Other cestode infections|Other cestode infections +C0277045|T047|ET|B71.0|ICD10CM|Dwarf tapeworm infection|Dwarf tapeworm infection +C0020413|T047|PT|B71.0|ICD10|Hymenolepiasis|Hymenolepiasis +C0020413|T047|PT|B71.0|ICD10CM|Hymenolepiasis|Hymenolepiasis +C0020413|T047|AB|B71.0|ICD10CM|Hymenolepiasis|Hymenolepiasis +C0277044|T047|ET|B71.0|ICD10CM|Rat tapeworm (infection)|Rat tapeworm (infection) +C0392661|T047|PT|B71.1|ICD10|Dipylidiasis|Dipylidiasis +C0392661|T047|PT|B71.1|ICD10CM|Dipylidiasis|Dipylidiasis +C0392661|T047|AB|B71.1|ICD10CM|Dipylidiasis|Dipylidiasis +C0009225|T047|ET|B71.8|ICD10CM|Coenurosis|Coenurosis +C0029754|T047|PT|B71.8|ICD10CM|Other specified cestode infections|Other specified cestode infections +C0029754|T047|AB|B71.8|ICD10CM|Other specified cestode infections|Other specified cestode infections +C0029754|T047|PT|B71.8|ICD10|Other specified cestode infections|Other specified cestode infections +C0007894|T047|PT|B71.9|ICD10|Cestode infection, unspecified|Cestode infection, unspecified +C0007894|T047|PT|B71.9|ICD10CM|Cestode infection, unspecified|Cestode infection, unspecified +C0007894|T047|AB|B71.9|ICD10CM|Cestode infection, unspecified|Cestode infection, unspecified +C0007894|T047|ET|B71.9|ICD10CM|Tapeworm (infection) NOS|Tapeworm (infection) NOS +C0013100|T047|PT|B72|ICD10CM|Dracunculiasis|Dracunculiasis +C0013100|T047|AB|B72|ICD10CM|Dracunculiasis|Dracunculiasis +C0013100|T047|PT|B72|ICD10|Dracunculiasis|Dracunculiasis +C0013100|T047|ET|B72|ICD10CM|guinea worm infection|guinea worm infection +C0013100|T047|ET|B72|ICD10CM|infection due to Dracunculus medinensis|infection due to Dracunculus medinensis +C0029001|T047|ET|B73|ICD10CM|onchocerca volvulus infection|onchocerca volvulus infection +C0029001|T047|HT|B73|ICD10CM|Onchocerciasis|Onchocerciasis +C0029001|T047|AB|B73|ICD10CM|Onchocerciasis|Onchocerciasis +C0029001|T047|PT|B73|ICD10|Onchocerciasis|Onchocerciasis +C0029001|T047|ET|B73|ICD10CM|onchocercosis|onchocercosis +C0029002|T047|ET|B73|ICD10CM|river blindness|river blindness +C2830298|T047|HT|B73.0|ICD10CM|Onchocerciasis with eye disease|Onchocerciasis with eye disease +C2830298|T047|AB|B73.0|ICD10CM|Onchocerciasis with eye disease|Onchocerciasis with eye disease +C2830299|T047|AB|B73.00|ICD10CM|Onchocerciasis with eye involvement, unspecified|Onchocerciasis with eye involvement, unspecified +C2830299|T047|PT|B73.00|ICD10CM|Onchocerciasis with eye involvement, unspecified|Onchocerciasis with eye involvement, unspecified +C2830300|T047|PT|B73.01|ICD10CM|Onchocerciasis with endophthalmitis|Onchocerciasis with endophthalmitis +C2830300|T047|AB|B73.01|ICD10CM|Onchocerciasis with endophthalmitis|Onchocerciasis with endophthalmitis +C2830301|T047|PT|B73.02|ICD10CM|Onchocerciasis with glaucoma|Onchocerciasis with glaucoma +C2830301|T047|AB|B73.02|ICD10CM|Onchocerciasis with glaucoma|Onchocerciasis with glaucoma +C2830302|T033|ET|B73.09|ICD10CM|Infestation of eyelid due to onchocerciasis|Infestation of eyelid due to onchocerciasis +C2830303|T047|AB|B73.09|ICD10CM|Onchocerciasis with other eye involvement|Onchocerciasis with other eye involvement +C2830303|T047|PT|B73.09|ICD10CM|Onchocerciasis with other eye involvement|Onchocerciasis with other eye involvement +C2830304|T047|PT|B73.1|ICD10CM|Onchocerciasis without eye disease|Onchocerciasis without eye disease +C2830304|T047|AB|B73.1|ICD10CM|Onchocerciasis without eye disease|Onchocerciasis without eye disease +C0016085|T047|HT|B74|ICD10CM|Filariasis|Filariasis +C0016085|T047|AB|B74|ICD10CM|Filariasis|Filariasis +C0016085|T047|HT|B74|ICD10|Filariasis|Filariasis +C4759723|T047|ET|B74.0|ICD10CM|Bancroftian elephantiasis|Bancroftian elephantiasis +C0392663|T047|ET|B74.0|ICD10CM|Bancroftian filariasis|Bancroftian filariasis +C0392663|T047|PT|B74.0|ICD10CM|Filariasis due to Wuchereria bancrofti|Filariasis due to Wuchereria bancrofti +C0392663|T047|AB|B74.0|ICD10CM|Filariasis due to Wuchereria bancrofti|Filariasis due to Wuchereria bancrofti +C0392663|T047|PT|B74.0|ICD10|Filariasis due to Wuchereria bancrofti|Filariasis due to Wuchereria bancrofti +C0152070|T047|PT|B74.1|ICD10|Filariasis due to Brugia malayi|Filariasis due to Brugia malayi +C0152070|T047|PT|B74.1|ICD10CM|Filariasis due to Brugia malayi|Filariasis due to Brugia malayi +C0152070|T047|AB|B74.1|ICD10CM|Filariasis due to Brugia malayi|Filariasis due to Brugia malayi +C0349352|T047|PT|B74.2|ICD10|Filariasis due to Brugia timori|Filariasis due to Brugia timori +C0349352|T047|PT|B74.2|ICD10CM|Filariasis due to Brugia timori|Filariasis due to Brugia timori +C0349352|T047|AB|B74.2|ICD10CM|Filariasis due to Brugia timori|Filariasis due to Brugia timori +C0241822|T047|ET|B74.3|ICD10CM|Calabar swelling|Calabar swelling +C0023968|T047|ET|B74.3|ICD10CM|Eyeworm disease of Africa|Eyeworm disease of Africa +C0023968|T047|ET|B74.3|ICD10CM|Loa loa infection|Loa loa infection +C0023968|T047|PT|B74.3|ICD10CM|Loiasis|Loiasis +C0023968|T047|AB|B74.3|ICD10CM|Loiasis|Loiasis +C0023968|T047|PT|B74.3|ICD10|Loiasis|Loiasis +C2830305|T047|ET|B74.4|ICD10CM|Infection due to Mansonella ozzardi|Infection due to Mansonella ozzardi +C2830306|T047|ET|B74.4|ICD10CM|Infection due to Mansonella perstans|Infection due to Mansonella perstans +C2830307|T047|ET|B74.4|ICD10CM|Infection due to Mansonella streptocerca|Infection due to Mansonella streptocerca +C0024759|T047|PT|B74.4|ICD10|Mansonelliasis|Mansonelliasis +C0024759|T047|PT|B74.4|ICD10CM|Mansonelliasis|Mansonelliasis +C0024759|T047|AB|B74.4|ICD10CM|Mansonelliasis|Mansonelliasis +C0012602|T047|ET|B74.8|ICD10CM|Dirofilariasis|Dirofilariasis +C0348281|T047|PT|B74.8|ICD10CM|Other filariases|Other filariases +C0348281|T047|AB|B74.8|ICD10CM|Other filariases|Other filariases +C0348281|T047|PT|B74.8|ICD10|Other filariases|Other filariases +C0016085|T047|PT|B74.9|ICD10|Filariasis, unspecified|Filariasis, unspecified +C0016085|T047|PT|B74.9|ICD10CM|Filariasis, unspecified|Filariasis, unspecified +C0016085|T047|AB|B74.9|ICD10CM|Filariasis, unspecified|Filariasis, unspecified +C0040896|T047|ET|B75|ICD10CM|infection due to Trichinella species|infection due to Trichinella species +C0040896|T047|PT|B75|ICD10CM|Trichinellosis|Trichinellosis +C0040896|T047|AB|B75|ICD10CM|Trichinellosis|Trichinellosis +C0040896|T047|PT|B75|ICD10|Trichinellosis|Trichinellosis +C0040896|T047|ET|B75|ICD10CM|trichiniasis|trichiniasis +C0019911|T047|HT|B76|ICD10|Hookworm diseases|Hookworm diseases +C0019911|T047|AB|B76|ICD10CM|Hookworm diseases|Hookworm diseases +C0019911|T047|HT|B76|ICD10CM|Hookworm diseases|Hookworm diseases +C0041648|T047|ET|B76|ICD10CM|uncinariasis|uncinariasis +C0002831|T047|PT|B76.0|ICD10CM|Ancylostomiasis|Ancylostomiasis +C0002831|T047|AB|B76.0|ICD10CM|Ancylostomiasis|Ancylostomiasis +C0002831|T047|PT|B76.0|ICD10|Ancylostomiasis|Ancylostomiasis +C2830309|T047|ET|B76.0|ICD10CM|Infection due to Ancylostoma species|Infection due to Ancylostoma species +C2830310|T047|ET|B76.1|ICD10CM|Infection due to Necator americanus|Infection due to Necator americanus +C0027528|T047|PT|B76.1|ICD10|Necatoriasis|Necatoriasis +C0027528|T047|PT|B76.1|ICD10CM|Necatoriasis|Necatoriasis +C0027528|T047|AB|B76.1|ICD10CM|Necatoriasis|Necatoriasis +C0348282|T047|PT|B76.8|ICD10|Other hookworm diseases|Other hookworm diseases +C0348282|T047|PT|B76.8|ICD10CM|Other hookworm diseases|Other hookworm diseases +C0348282|T047|AB|B76.8|ICD10CM|Other hookworm diseases|Other hookworm diseases +C0546999|T047|ET|B76.9|ICD10CM|Cutaneous larva migrans NOS|Cutaneous larva migrans NOS +C0019911|T047|PT|B76.9|ICD10CM|Hookworm disease, unspecified|Hookworm disease, unspecified +C0019911|T047|AB|B76.9|ICD10CM|Hookworm disease, unspecified|Hookworm disease, unspecified +C0019911|T047|PT|B76.9|ICD10|Hookworm disease, unspecified|Hookworm disease, unspecified +C0003950|T047|HT|B77|ICD10|Ascariasis|Ascariasis +C0003950|T047|HT|B77|ICD10CM|Ascariasis|Ascariasis +C0003950|T047|AB|B77|ICD10CM|Ascariasis|Ascariasis +C0003950|T047|ET|B77|ICD10CM|ascaridiasis|ascaridiasis +C0027583|T047|ET|B77|ICD10CM|roundworm infection|roundworm infection +C0348998|T047|PT|B77.0|ICD10CM|Ascariasis with intestinal complications|Ascariasis with intestinal complications +C0348998|T047|AB|B77.0|ICD10CM|Ascariasis with intestinal complications|Ascariasis with intestinal complications +C0348998|T047|PT|B77.0|ICD10|Ascariasis with intestinal complications|Ascariasis with intestinal complications +C0348284|T047|PT|B77.8|ICD10|Ascariasis with other complications|Ascariasis with other complications +C0348284|T047|HT|B77.8|ICD10CM|Ascariasis with other complications|Ascariasis with other complications +C0348284|T047|AB|B77.8|ICD10CM|Ascariasis with other complications|Ascariasis with other complications +C2830311|T047|AB|B77.81|ICD10CM|Ascariasis pneumonia|Ascariasis pneumonia +C2830311|T047|PT|B77.81|ICD10CM|Ascariasis pneumonia|Ascariasis pneumonia +C0348284|T047|PT|B77.89|ICD10CM|Ascariasis with other complications|Ascariasis with other complications +C0348284|T047|AB|B77.89|ICD10CM|Ascariasis with other complications|Ascariasis with other complications +C0003950|T047|PT|B77.9|ICD10CM|Ascariasis, unspecified|Ascariasis, unspecified +C0003950|T047|AB|B77.9|ICD10CM|Ascariasis, unspecified|Ascariasis, unspecified +C0003950|T047|PT|B77.9|ICD10|Ascariasis, unspecified|Ascariasis, unspecified +C0038463|T047|HT|B78|ICD10|Strongyloidiasis|Strongyloidiasis +C0038463|T047|HT|B78|ICD10CM|Strongyloidiasis|Strongyloidiasis +C0038463|T047|AB|B78|ICD10CM|Strongyloidiasis|Strongyloidiasis +C0348997|T047|PT|B78.0|ICD10|Intestinal strongyloidiasis|Intestinal strongyloidiasis +C0348997|T047|PT|B78.0|ICD10CM|Intestinal strongyloidiasis|Intestinal strongyloidiasis +C0348997|T047|AB|B78.0|ICD10CM|Intestinal strongyloidiasis|Intestinal strongyloidiasis +C0344035|T047|PT|B78.1|ICD10CM|Cutaneous strongyloidiasis|Cutaneous strongyloidiasis +C0344035|T047|AB|B78.1|ICD10CM|Cutaneous strongyloidiasis|Cutaneous strongyloidiasis +C0344035|T047|PT|B78.1|ICD10|Cutaneous strongyloidiasis|Cutaneous strongyloidiasis +C0348996|T047|PT|B78.7|ICD10|Disseminated strongyloidiasis|Disseminated strongyloidiasis +C0348996|T047|PT|B78.7|ICD10CM|Disseminated strongyloidiasis|Disseminated strongyloidiasis +C0348996|T047|AB|B78.7|ICD10CM|Disseminated strongyloidiasis|Disseminated strongyloidiasis +C0038463|T047|PT|B78.9|ICD10|Strongyloidiasis, unspecified|Strongyloidiasis, unspecified +C0038463|T047|PT|B78.9|ICD10CM|Strongyloidiasis, unspecified|Strongyloidiasis, unspecified +C0038463|T047|AB|B78.9|ICD10CM|Strongyloidiasis, unspecified|Strongyloidiasis, unspecified +C0040954|T047|ET|B79|ICD10CM|trichocephaliasis|trichocephaliasis +C0040954|T047|PT|B79|ICD10CM|Trichuriasis|Trichuriasis +C0040954|T047|AB|B79|ICD10CM|Trichuriasis|Trichuriasis +C0040954|T047|PT|B79|ICD10|Trichuriasis|Trichuriasis +C0040954|T047|ET|B79|ICD10CM|whipworm (disease)(infection)|whipworm (disease)(infection) +C0086227|T047|PT|B80|ICD10CM|Enterobiasis|Enterobiasis +C0086227|T047|AB|B80|ICD10CM|Enterobiasis|Enterobiasis +C0086227|T047|PT|B80|ICD10|Enterobiasis|Enterobiasis +C0030100|T047|ET|B80|ICD10CM|oxyuriasis|oxyuriasis +C0086227|T047|ET|B80|ICD10CM|pinworm infection|pinworm infection +C0086227|T047|ET|B80|ICD10CM|threadworm infection|threadworm infection +C0494125|T047|AB|B81|ICD10CM|Other intestinal helminthiases, not elsewhere classified|Other intestinal helminthiases, not elsewhere classified +C0494125|T047|HT|B81|ICD10CM|Other intestinal helminthiases, not elsewhere classified|Other intestinal helminthiases, not elsewhere classified +C0494125|T047|HT|B81|ICD10|Other intestinal helminthiases, not elsewhere classified|Other intestinal helminthiases, not elsewhere classified +C0162576|T047|PT|B81.0|ICD10|Anisakiasis|Anisakiasis +C0162576|T047|PT|B81.0|ICD10CM|Anisakiasis|Anisakiasis +C0162576|T047|AB|B81.0|ICD10CM|Anisakiasis|Anisakiasis +C2833780|T047|ET|B81.0|ICD10CM|Infection due to Anisakis larva|Infection due to Anisakis larva +C0006897|T047|ET|B81.1|ICD10CM|Capillariasis NOS|Capillariasis NOS +C2833781|T047|ET|B81.1|ICD10CM|Infection due to Capillaria philippinensis|Infection due to Capillaria philippinensis +C0006899|T047|PT|B81.1|ICD10CM|Intestinal capillariasis|Intestinal capillariasis +C0006899|T047|AB|B81.1|ICD10CM|Intestinal capillariasis|Intestinal capillariasis +C0006899|T047|PT|B81.1|ICD10|Intestinal capillariasis|Intestinal capillariasis +C0040948|T047|PT|B81.2|ICD10|Trichostrongyliasis|Trichostrongyliasis +C0040948|T047|PT|B81.2|ICD10CM|Trichostrongyliasis|Trichostrongyliasis +C0040948|T047|AB|B81.2|ICD10CM|Trichostrongyliasis|Trichostrongyliasis +C4509016|T047|ET|B81.3|ICD10CM|Angiostrongyliasis due to:|Angiostrongyliasis due to: +C1387797|T047|ET|B81.3|ICD10CM|Angiostrongylus costaricensis|Angiostrongylus costaricensis +C0349353|T047|PT|B81.3|ICD10CM|Intestinal angiostrongyliasis|Intestinal angiostrongyliasis +C0349353|T047|AB|B81.3|ICD10CM|Intestinal angiostrongyliasis|Intestinal angiostrongyliasis +C0349353|T047|PT|B81.3|ICD10|Intestinal angiostrongyliasis|Intestinal angiostrongyliasis +C2833782|T047|ET|B81.3|ICD10CM|Parastrongylus costaricensis|Parastrongylus costaricensis +C0153303|T047|ET|B81.4|ICD10CM|Mixed helminthiasis NOS|Mixed helminthiasis NOS +C0153303|T047|PT|B81.4|ICD10CM|Mixed intestinal helminthiases|Mixed intestinal helminthiases +C0153303|T047|AB|B81.4|ICD10CM|Mixed intestinal helminthiases|Mixed intestinal helminthiases +C0153303|T047|PT|B81.4|ICD10|Mixed intestinal helminthiases|Mixed intestinal helminthiases +C2833784|T047|ET|B81.8|ICD10CM|Infection due to Oesophagostomum species [esophagostomiasis]|Infection due to Oesophagostomum species [esophagostomiasis] +C2833785|T047|ET|B81.8|ICD10CM|Infection due to Ternidens diminutus [ternidensiasis]|Infection due to Ternidens diminutus [ternidensiasis] +C0029808|T047|PT|B81.8|ICD10|Other specified intestinal helminthiases|Other specified intestinal helminthiases +C0029808|T047|PT|B81.8|ICD10CM|Other specified intestinal helminthiases|Other specified intestinal helminthiases +C0029808|T047|AB|B81.8|ICD10CM|Other specified intestinal helminthiases|Other specified intestinal helminthiases +C0021832|T047|AB|B82|ICD10CM|Unspecified intestinal parasitism|Unspecified intestinal parasitism +C0021832|T047|HT|B82|ICD10CM|Unspecified intestinal parasitism|Unspecified intestinal parasitism +C0021832|T047|HT|B82|ICD10|Unspecified intestinal parasitism|Unspecified intestinal parasitism +C0348287|T047|PT|B82.0|ICD10|Intestinal helminthiasis, unspecified|Intestinal helminthiasis, unspecified +C0348287|T047|PT|B82.0|ICD10CM|Intestinal helminthiasis, unspecified|Intestinal helminthiasis, unspecified +C0348287|T047|AB|B82.0|ICD10CM|Intestinal helminthiasis, unspecified|Intestinal helminthiasis, unspecified +C0021832|T047|PT|B82.9|ICD10|Intestinal parasitism, unspecified|Intestinal parasitism, unspecified +C0021832|T047|PT|B82.9|ICD10CM|Intestinal parasitism, unspecified|Intestinal parasitism, unspecified +C0021832|T047|AB|B82.9|ICD10CM|Intestinal parasitism, unspecified|Intestinal parasitism, unspecified +C0494126|T047|HT|B83|ICD10|Other helminthiases|Other helminthiases +C0494126|T047|AB|B83|ICD10CM|Other helminthiases|Other helminthiases +C0494126|T047|HT|B83|ICD10CM|Other helminthiases|Other helminthiases +C0040553|T047|ET|B83.0|ICD10CM|Toxocariasis|Toxocariasis +C0023049|T047|PT|B83.0|ICD10CM|Visceral larva migrans|Visceral larva migrans +C0023049|T047|AB|B83.0|ICD10CM|Visceral larva migrans|Visceral larva migrans +C0023049|T047|PT|B83.0|ICD10|Visceral larva migrans|Visceral larva migrans +C0018013|T047|PT|B83.1|ICD10|Gnathostomiasis|Gnathostomiasis +C0018013|T047|PT|B83.1|ICD10CM|Gnathostomiasis|Gnathostomiasis +C0018013|T047|AB|B83.1|ICD10CM|Gnathostomiasis|Gnathostomiasis +C1411141|T047|ET|B83.1|ICD10CM|Wandering swelling|Wandering swelling +C0494127|T047|PT|B83.2|ICD10CM|Angiostrongyliasis due to Parastrongylus cantonensis|Angiostrongyliasis due to Parastrongylus cantonensis +C0494127|T047|AB|B83.2|ICD10CM|Angiostrongyliasis due to Parastrongylus cantonensis|Angiostrongyliasis due to Parastrongylus cantonensis +C0494127|T047|PT|B83.2|ICD10|Angiostrongyliasis due to Parastrongylus cantonensis|Angiostrongyliasis due to Parastrongylus cantonensis +C2833786|T047|ET|B83.2|ICD10CM|Eosinophilic meningoencephalitis due to Parastrongylus cantonensis|Eosinophilic meningoencephalitis due to Parastrongylus cantonensis +C0039090|T047|PT|B83.3|ICD10CM|Syngamiasis|Syngamiasis +C0039090|T047|AB|B83.3|ICD10CM|Syngamiasis|Syngamiasis +C0039090|T047|PT|B83.3|ICD10|Syngamiasis|Syngamiasis +C0039090|T047|ET|B83.3|ICD10CM|Syngamosis|Syngamosis +C0348999|T047|PT|B83.4|ICD10|Internal hirudiniasis|Internal hirudiniasis +C0348999|T047|PT|B83.4|ICD10CM|Internal hirudiniasis|Internal hirudiniasis +C0348999|T047|AB|B83.4|ICD10CM|Internal hirudiniasis|Internal hirudiniasis +C1385938|T047|ET|B83.8|ICD10CM|Acanthocephaliasis|Acanthocephaliasis +C0344054|T047|ET|B83.8|ICD10CM|Gongylonemiasis|Gongylonemiasis +C0344049|T047|ET|B83.8|ICD10CM|Hepatic capillariasis|Hepatic capillariasis +C0277318|T047|ET|B83.8|ICD10CM|Metastrongyliasis|Metastrongyliasis +C0029803|T047|PT|B83.8|ICD10CM|Other specified helminthiases|Other specified helminthiases +C0029803|T047|AB|B83.8|ICD10CM|Other specified helminthiases|Other specified helminthiases +C0029803|T047|PT|B83.8|ICD10|Other specified helminthiases|Other specified helminthiases +C0344058|T047|ET|B83.8|ICD10CM|Thelaziasis|Thelaziasis +C0018889|T047|PT|B83.9|ICD10|Helminthiasis, unspecified|Helminthiasis, unspecified +C0018889|T047|PT|B83.9|ICD10CM|Helminthiasis, unspecified|Helminthiasis, unspecified +C0018889|T047|AB|B83.9|ICD10CM|Helminthiasis, unspecified|Helminthiasis, unspecified +C0040820|T047|ET|B83.9|ICD10CM|Worms NOS|Worms NOS +C0153317|T047|AB|B85|ICD10CM|Pediculosis and phthiriasis|Pediculosis and phthiriasis +C0153317|T047|HT|B85|ICD10CM|Pediculosis and phthiriasis|Pediculosis and phthiriasis +C0153317|T047|HT|B85|ICD10|Pediculosis and phthiriasis|Pediculosis and phthiriasis +C0348290|T047|HT|B85-B89|ICD10CM|Pediculosis, acariasis and other infestations (B85-B89)|Pediculosis, acariasis and other infestations (B85-B89) +C0348290|T047|HT|B85-B89.9|ICD10|Pediculosis, acariasis and other infestations|Pediculosis, acariasis and other infestations +C0030757|T047|ET|B85.0|ICD10CM|Head-louse infestation|Head-louse infestation +C0030757|T047|PT|B85.0|ICD10CM|Pediculosis due to Pediculus humanus capitis|Pediculosis due to Pediculus humanus capitis +C0030757|T047|AB|B85.0|ICD10CM|Pediculosis due to Pediculus humanus capitis|Pediculosis due to Pediculus humanus capitis +C0030757|T047|PT|B85.0|ICD10|Pediculosis due to Pediculus humanus capitis|Pediculosis due to Pediculus humanus capitis +C0030758|T047|ET|B85.1|ICD10CM|Body-louse infestation|Body-louse infestation +C0030758|T047|PT|B85.1|ICD10CM|Pediculosis due to Pediculus humanus corporis|Pediculosis due to Pediculus humanus corporis +C0030758|T047|AB|B85.1|ICD10CM|Pediculosis due to Pediculus humanus corporis|Pediculosis due to Pediculus humanus corporis +C0030758|T047|PT|B85.1|ICD10|Pediculosis due to Pediculus humanus corporis|Pediculosis due to Pediculus humanus corporis +C0030756|T047|PT|B85.2|ICD10|Pediculosis, unspecified|Pediculosis, unspecified +C0030756|T047|PT|B85.2|ICD10CM|Pediculosis, unspecified|Pediculosis, unspecified +C0030756|T047|AB|B85.2|ICD10CM|Pediculosis, unspecified|Pediculosis, unspecified +C0030759|T047|ET|B85.3|ICD10CM|Infestation by crab-louse|Infestation by crab-louse +C0030759|T047|ET|B85.3|ICD10CM|Infestation by Phthirus pubis|Infestation by Phthirus pubis +C0277352|T047|PT|B85.3|ICD10CM|Phthiriasis|Phthiriasis +C0277352|T047|AB|B85.3|ICD10CM|Phthiriasis|Phthiriasis +C0277352|T047|PT|B85.3|ICD10|Phthiriasis|Phthiriasis +C2833787|T033|ET|B85.4|ICD10CM|Infestation classifiable to more than one of the categories B85.0-B85.3|Infestation classifiable to more than one of the categories B85.0-B85.3 +C0494131|T047|PT|B85.4|ICD10|Mixed pediculosis and phthiriasis|Mixed pediculosis and phthiriasis +C0494131|T047|PT|B85.4|ICD10CM|Mixed pediculosis and phthiriasis|Mixed pediculosis and phthiriasis +C0494131|T047|AB|B85.4|ICD10CM|Mixed pediculosis and phthiriasis|Mixed pediculosis and phthiriasis +C0036262|T047|ET|B86|ICD10CM|Sarcoptic itch|Sarcoptic itch +C0036262|T047|PT|B86|ICD10CM|Scabies|Scabies +C0036262|T047|AB|B86|ICD10CM|Scabies|Scabies +C0036262|T047|PT|B86|ICD10|Scabies|Scabies +C0027030|T047|ET|B87|ICD10CM|infestation by larva of flies|infestation by larva of flies +C0027030|T047|HT|B87|ICD10CM|Myiasis|Myiasis +C0027030|T047|AB|B87|ICD10CM|Myiasis|Myiasis +C0027030|T047|HT|B87|ICD10|Myiasis|Myiasis +C1562462|T047|ET|B87.0|ICD10CM|Creeping myiasis|Creeping myiasis +C0027031|T047|PT|B87.0|ICD10|Cutaneous myiasis|Cutaneous myiasis +C0027031|T047|PT|B87.0|ICD10CM|Cutaneous myiasis|Cutaneous myiasis +C0027031|T047|AB|B87.0|ICD10CM|Cutaneous myiasis|Cutaneous myiasis +C0344061|T047|ET|B87.1|ICD10CM|Traumatic myiasis|Traumatic myiasis +C0344061|T047|PT|B87.1|ICD10CM|Wound myiasis|Wound myiasis +C0344061|T047|AB|B87.1|ICD10CM|Wound myiasis|Wound myiasis +C0344061|T047|PT|B87.1|ICD10|Wound myiasis|Wound myiasis +C0027034|T047|PT|B87.2|ICD10|Ocular myiasis|Ocular myiasis +C0027034|T047|PT|B87.2|ICD10CM|Ocular myiasis|Ocular myiasis +C0027034|T047|AB|B87.2|ICD10CM|Ocular myiasis|Ocular myiasis +C2833788|T047|ET|B87.3|ICD10CM|Laryngeal myiasis|Laryngeal myiasis +C0349002|T047|PT|B87.3|ICD10CM|Nasopharyngeal myiasis|Nasopharyngeal myiasis +C0349002|T047|AB|B87.3|ICD10CM|Nasopharyngeal myiasis|Nasopharyngeal myiasis +C0349002|T047|PT|B87.3|ICD10|Nasopharyngeal myiasis|Nasopharyngeal myiasis +C0349001|T047|PT|B87.4|ICD10|Aural myiasis|Aural myiasis +C0349001|T047|PT|B87.4|ICD10CM|Aural myiasis|Aural myiasis +C0349001|T047|AB|B87.4|ICD10CM|Aural myiasis|Aural myiasis +C0348292|T047|PT|B87.8|ICD10|Myiasis of other sites|Myiasis of other sites +C0348292|T047|HT|B87.8|ICD10CM|Myiasis of other sites|Myiasis of other sites +C0348292|T047|AB|B87.8|ICD10CM|Myiasis of other sites|Myiasis of other sites +C0027032|T047|PT|B87.81|ICD10CM|Genitourinary myiasis|Genitourinary myiasis +C0027032|T047|AB|B87.81|ICD10CM|Genitourinary myiasis|Genitourinary myiasis +C0027033|T047|PT|B87.82|ICD10CM|Intestinal myiasis|Intestinal myiasis +C0027033|T047|AB|B87.82|ICD10CM|Intestinal myiasis|Intestinal myiasis +C0348292|T047|PT|B87.89|ICD10CM|Myiasis of other sites|Myiasis of other sites +C0348292|T047|AB|B87.89|ICD10CM|Myiasis of other sites|Myiasis of other sites +C0027030|T047|PT|B87.9|ICD10CM|Myiasis, unspecified|Myiasis, unspecified +C0027030|T047|AB|B87.9|ICD10CM|Myiasis, unspecified|Myiasis, unspecified +C0027030|T047|PT|B87.9|ICD10|Myiasis, unspecified|Myiasis, unspecified +C0153322|T047|HT|B88|ICD10|Other infestations|Other infestations +C0153322|T047|AB|B88|ICD10CM|Other infestations|Other infestations +C0153322|T047|HT|B88|ICD10CM|Other infestations|Other infestations +C0026229|T047|ET|B88.0|ICD10CM|Acarine dermatitis|Acarine dermatitis +C2833789|T047|ET|B88.0|ICD10CM|Dermatitis due to Demodex species|Dermatitis due to Demodex species +C2833790|T047|ET|B88.0|ICD10CM|Dermatitis due to Dermanyssus gallinae|Dermatitis due to Dermanyssus gallinae +C2833791|T047|ET|B88.0|ICD10CM|Dermatitis due to Liponyssoides sanguineus|Dermatitis due to Liponyssoides sanguineus +C0029482|T047|PT|B88.0|ICD10CM|Other acariasis|Other acariasis +C0029482|T047|AB|B88.0|ICD10CM|Other acariasis|Other acariasis +C0029482|T047|PT|B88.0|ICD10|Other acariasis|Other acariasis +C0311388|T047|ET|B88.0|ICD10CM|Trombiculosis|Trombiculosis +C0277356|T047|PT|B88.1|ICD10CM|Tungiasis [sandflea infestation]|Tungiasis [sandflea infestation] +C0277356|T047|AB|B88.1|ICD10CM|Tungiasis [sandflea infestation]|Tungiasis [sandflea infestation] +C0277356|T047|PT|B88.1|ICD10|Tungiasis [sandflea infestation]|Tungiasis [sandflea infestation] +C0153323|T047|PT|B88.2|ICD10|Other arthropod infestations|Other arthropod infestations +C0153323|T047|PT|B88.2|ICD10CM|Other arthropod infestations|Other arthropod infestations +C0153323|T047|AB|B88.2|ICD10CM|Other arthropod infestations|Other arthropod infestations +C0036283|T047|ET|B88.2|ICD10CM|Scarabiasis|Scarabiasis +C0392037|T047|PT|B88.3|ICD10CM|External hirudiniasis|External hirudiniasis +C0392037|T047|AB|B88.3|ICD10CM|External hirudiniasis|External hirudiniasis +C0392037|T047|PT|B88.3|ICD10|External hirudiniasis|External hirudiniasis +C0019575|T047|ET|B88.3|ICD10CM|Leech infestation NOS|Leech infestation NOS +C1400351|T047|ET|B88.8|ICD10CM|Ichthyoparasitism due to Vandellia cirrhosa|Ichthyoparasitism due to Vandellia cirrhosa +C0277474|T047|ET|B88.8|ICD10CM|Linguatulosis|Linguatulosis +C0153324|T047|PT|B88.8|ICD10|Other specified infestations|Other specified infestations +C0153324|T047|PT|B88.8|ICD10CM|Other specified infestations|Other specified infestations +C0153324|T047|AB|B88.8|ICD10CM|Other specified infestations|Other specified infestations +C0277483|T047|ET|B88.8|ICD10CM|Porocephaliasis|Porocephaliasis +C2939439|T047|ET|B88.9|ICD10CM|Infestation (skin) NOS|Infestation (skin) NOS +C0026229|T047|ET|B88.9|ICD10CM|Infestation by mites NOS|Infestation by mites NOS +C0851341|T047|PT|B88.9|ICD10|Infestation, unspecified|Infestation, unspecified +C0851341|T047|PT|B88.9|ICD10CM|Infestation, unspecified|Infestation, unspecified +C0851341|T047|AB|B88.9|ICD10CM|Infestation, unspecified|Infestation, unspecified +C2939439|T047|ET|B88.9|ICD10CM|Skin parasites NOS|Skin parasites NOS +C0348295|T047|PT|B89|ICD10CM|Unspecified parasitic disease|Unspecified parasitic disease +C0348295|T047|AB|B89|ICD10CM|Unspecified parasitic disease|Unspecified parasitic disease +C0348295|T047|PT|B89|ICD10|Unspecified parasitic disease|Unspecified parasitic disease +C0494132|T046|HT|B90|ICD10|Sequelae of tuberculosis|Sequelae of tuberculosis +C0494132|T046|HT|B90|ICD10CM|Sequelae of tuberculosis|Sequelae of tuberculosis +C0494132|T046|AB|B90|ICD10CM|Sequelae of tuberculosis|Sequelae of tuberculosis +C0348296|T047|HT|B90-B94|ICD10CM|Sequelae of infectious and parasitic diseases (B90-B94)|Sequelae of infectious and parasitic diseases (B90-B94) +C0348296|T047|HT|B90-B94.9|ICD10|Sequelae of infectious and parasitic diseases|Sequelae of infectious and parasitic diseases +C1331984|T046|PT|B90.0|ICD10|Sequelae of central nervous system tuberculosis|Sequelae of central nervous system tuberculosis +C1331984|T046|PT|B90.0|ICD10CM|Sequelae of central nervous system tuberculosis|Sequelae of central nervous system tuberculosis +C1331984|T046|AB|B90.0|ICD10CM|Sequelae of central nervous system tuberculosis|Sequelae of central nervous system tuberculosis +C1331985|T046|PT|B90.1|ICD10CM|Sequelae of genitourinary tuberculosis|Sequelae of genitourinary tuberculosis +C1331985|T046|AB|B90.1|ICD10CM|Sequelae of genitourinary tuberculosis|Sequelae of genitourinary tuberculosis +C1331985|T046|PT|B90.1|ICD10|Sequelae of genitourinary tuberculosis|Sequelae of genitourinary tuberculosis +C0153333|T046|PT|B90.2|ICD10|Sequelae of tuberculosis of bones and joints|Sequelae of tuberculosis of bones and joints +C0153333|T046|PT|B90.2|ICD10CM|Sequelae of tuberculosis of bones and joints|Sequelae of tuberculosis of bones and joints +C0153333|T046|AB|B90.2|ICD10CM|Sequelae of tuberculosis of bones and joints|Sequelae of tuberculosis of bones and joints +C0153334|T046|PT|B90.8|ICD10CM|Sequelae of tuberculosis of other organs|Sequelae of tuberculosis of other organs +C0153334|T046|AB|B90.8|ICD10CM|Sequelae of tuberculosis of other organs|Sequelae of tuberculosis of other organs +C0153334|T046|PT|B90.8|ICD10|Sequelae of tuberculosis of other organs|Sequelae of tuberculosis of other organs +C0348301|T046|PT|B90.9|ICD10|Sequelae of respiratory and unspecified tuberculosis|Sequelae of respiratory and unspecified tuberculosis +C0348301|T046|PT|B90.9|ICD10CM|Sequelae of respiratory and unspecified tuberculosis|Sequelae of respiratory and unspecified tuberculosis +C0348301|T046|AB|B90.9|ICD10CM|Sequelae of respiratory and unspecified tuberculosis|Sequelae of respiratory and unspecified tuberculosis +C0494132|T046|ET|B90.9|ICD10CM|Sequelae of tuberculosis NOS|Sequelae of tuberculosis NOS +C1331981|T046|PT|B91|ICD10|Sequelae of poliomyelitis|Sequelae of poliomyelitis +C1331981|T046|PT|B91|ICD10CM|Sequelae of poliomyelitis|Sequelae of poliomyelitis +C1331981|T046|AB|B91|ICD10CM|Sequelae of poliomyelitis|Sequelae of poliomyelitis +C0348302|T046|PT|B92|ICD10|Sequelae of leprosy|Sequelae of leprosy +C0348302|T046|PT|B92|ICD10CM|Sequelae of leprosy|Sequelae of leprosy +C0348302|T046|AB|B92|ICD10CM|Sequelae of leprosy|Sequelae of leprosy +C0494133|T046|AB|B94|ICD10CM|Sequelae of other and unsp infectious and parasitic diseases|Sequelae of other and unsp infectious and parasitic diseases +C0494133|T046|HT|B94|ICD10CM|Sequelae of other and unspecified infectious and parasitic diseases|Sequelae of other and unspecified infectious and parasitic diseases +C0494133|T046|HT|B94|ICD10|Sequelae of other and unspecified infectious and parasitic diseases|Sequelae of other and unspecified infectious and parasitic diseases +C0348303|T046|PT|B94.0|ICD10CM|Sequelae of trachoma|Sequelae of trachoma +C0348303|T046|AB|B94.0|ICD10CM|Sequelae of trachoma|Sequelae of trachoma +C0348303|T046|PT|B94.0|ICD10|Sequelae of trachoma|Sequelae of trachoma +C0153337|T046|PT|B94.1|ICD10|Sequelae of viral encephalitis|Sequelae of viral encephalitis +C0153337|T046|PT|B94.1|ICD10CM|Sequelae of viral encephalitis|Sequelae of viral encephalitis +C0153337|T046|AB|B94.1|ICD10CM|Sequelae of viral encephalitis|Sequelae of viral encephalitis +C0348305|T046|PT|B94.2|ICD10|Sequelae of viral hepatitis|Sequelae of viral hepatitis +C0348305|T046|PT|B94.2|ICD10CM|Sequelae of viral hepatitis|Sequelae of viral hepatitis +C0348305|T046|AB|B94.2|ICD10CM|Sequelae of viral hepatitis|Sequelae of viral hepatitis +C0348306|T046|AB|B94.8|ICD10CM|Sequelae of oth infectious and parasitic diseases|Sequelae of oth infectious and parasitic diseases +C0348306|T046|PT|B94.8|ICD10CM|Sequelae of other specified infectious and parasitic diseases|Sequelae of other specified infectious and parasitic diseases +C0348306|T046|PT|B94.8|ICD10|Sequelae of other specified infectious and parasitic diseases|Sequelae of other specified infectious and parasitic diseases +C0348296|T047|AB|B94.9|ICD10CM|Sequelae of unspecified infectious and parasitic disease|Sequelae of unspecified infectious and parasitic disease +C0348296|T047|PT|B94.9|ICD10CM|Sequelae of unspecified infectious and parasitic disease|Sequelae of unspecified infectious and parasitic disease +C0494134|T047|PT|B94.9|ICD10|Sequelae of unspecified infectious or parasitic disease|Sequelae of unspecified infectious or parasitic disease +C2833792|T047|AB|B95|ICD10CM|Strep as the cause of diseases classified elsewhere|Strep as the cause of diseases classified elsewhere +C0494135|T047|HT|B95|ICD10|Streptococcus and staphylococcus as the cause of diseases classified to other chapters|Streptococcus and staphylococcus as the cause of diseases classified to other chapters +C2833792|T047|HT|B95|ICD10CM|Streptococcus, Staphylococcus, and Enterococcus as the cause of diseases classified elsewhere|Streptococcus, Staphylococcus, and Enterococcus as the cause of diseases classified elsewhere +C2833793|T047|HT|B95-B97|ICD10CM|Bacterial and viral infectious agents (B95-B97)|Bacterial and viral infectious agents (B95-B97) +C0348308|T047|HT|B95-B97.9|ICD10|Bacterial, viral and other infectious agents|Bacterial, viral and other infectious agents +C2833794|T047|PT|B95.0|ICD10CM|Streptococcus, group A, as the cause of diseases classified elsewhere|Streptococcus, group A, as the cause of diseases classified elsewhere +C0348309|T047|PT|B95.0|ICD10|Streptococcus, group A, as the cause of diseases classified to other chapters|Streptococcus, group A, as the cause of diseases classified to other chapters +C2833794|T047|AB|B95.0|ICD10CM|Streptococcus, group A, causing diseases classd elswhr|Streptococcus, group A, causing diseases classd elswhr +C2833795|T047|PT|B95.1|ICD10CM|Streptococcus, group B, as the cause of diseases classified elsewhere|Streptococcus, group B, as the cause of diseases classified elsewhere +C0348310|T047|PT|B95.1|ICD10|Streptococcus, group B, as the cause of diseases classified to other chapters|Streptococcus, group B, as the cause of diseases classified to other chapters +C2833795|T047|AB|B95.1|ICD10CM|Streptococcus, group B, causing diseases classd elswhr|Streptococcus, group B, causing diseases classd elswhr +C2833796|T047|AB|B95.2|ICD10CM|Enterococcus as the cause of diseases classified elsewhere|Enterococcus as the cause of diseases classified elsewhere +C2833796|T047|PT|B95.2|ICD10CM|Enterococcus as the cause of diseases classified elsewhere|Enterococcus as the cause of diseases classified elsewhere +C0348311|T047|PT|B95.2|ICD10|Streptococcus, group D, as the cause of diseases classified to other chapters|Streptococcus, group D, as the cause of diseases classified to other chapters +C2833797|T047|PT|B95.3|ICD10CM|Streptococcus pneumoniae as the cause of diseases classified elsewhere|Streptococcus pneumoniae as the cause of diseases classified elsewhere +C0348312|T047|PT|B95.3|ICD10|Streptococcus pneumoniae as the cause of diseases classified to other chapters|Streptococcus pneumoniae as the cause of diseases classified to other chapters +C2833797|T047|AB|B95.3|ICD10CM|Streptococcus pneumoniae causing diseases classd elswhr|Streptococcus pneumoniae causing diseases classd elswhr +C2833798|T047|AB|B95.4|ICD10CM|Oth streptococcus as the cause of diseases classd elswhr|Oth streptococcus as the cause of diseases classd elswhr +C2833798|T047|PT|B95.4|ICD10CM|Other streptococcus as the cause of diseases classified elsewhere|Other streptococcus as the cause of diseases classified elsewhere +C0348313|T047|PT|B95.4|ICD10|Other streptococcus as the cause of diseases classified to other chapters|Other streptococcus as the cause of diseases classified to other chapters +C2833799|T047|AB|B95.5|ICD10CM|Unsp streptococcus as the cause of diseases classd elswhr|Unsp streptococcus as the cause of diseases classd elswhr +C2833799|T047|PT|B95.5|ICD10CM|Unspecified streptococcus as the cause of diseases classified elsewhere|Unspecified streptococcus as the cause of diseases classified elsewhere +C0348314|T047|PT|B95.5|ICD10|Unspecified streptococcus as the cause of diseases classified to other chapters|Unspecified streptococcus as the cause of diseases classified to other chapters +C2833800|T047|AB|B95.6|ICD10CM|Staphylococcus aureus as the cause of diseases classd elswhr|Staphylococcus aureus as the cause of diseases classd elswhr +C2833800|T047|HT|B95.6|ICD10CM|Staphylococcus aureus as the cause of diseases classified elsewhere|Staphylococcus aureus as the cause of diseases classified elsewhere +C0348315|T047|PT|B95.6|ICD10|Staphylococcus aureus as the cause of diseases classified to other chapters|Staphylococcus aureus as the cause of diseases classified to other chapters +C3264587|T047|AB|B95.61|ICD10CM|Methicillin suscep staph infct causing dis classd elswhr|Methicillin suscep staph infct causing dis classd elswhr +C3264586|T047|ET|B95.61|ICD10CM|Staphylococcus aureus infection NOS as the cause of diseases classified elsewhere|Staphylococcus aureus infection NOS as the cause of diseases classified elsewhere +C3264589|T047|AB|B95.62|ICD10CM|Methicillin resis staph infct causing diseases classd elswhr|Methicillin resis staph infct causing diseases classd elswhr +C3264589|T047|PT|B95.62|ICD10CM|Methicillin resistant Staphylococcus aureus infection as the cause of diseases classified elsewhere|Methicillin resistant Staphylococcus aureus infection as the cause of diseases classified elsewhere +C2833801|T047|AB|B95.7|ICD10CM|Oth staphylococcus as the cause of diseases classd elswhr|Oth staphylococcus as the cause of diseases classd elswhr +C2833801|T047|PT|B95.7|ICD10CM|Other staphylococcus as the cause of diseases classified elsewhere|Other staphylococcus as the cause of diseases classified elsewhere +C0348316|T047|PT|B95.7|ICD10|Other staphylococcus as the cause of diseases classified to other chapters|Other staphylococcus as the cause of diseases classified to other chapters +C2833802|T047|AB|B95.8|ICD10CM|Unsp staphylococcus as the cause of diseases classd elswhr|Unsp staphylococcus as the cause of diseases classd elswhr +C2833802|T047|PT|B95.8|ICD10CM|Unspecified staphylococcus as the cause of diseases classified elsewhere|Unspecified staphylococcus as the cause of diseases classified elsewhere +C0348317|T047|PT|B95.8|ICD10|Unspecified staphylococcus as the cause of diseases classified to other chapters|Unspecified staphylococcus as the cause of diseases classified to other chapters +C2833803|T047|AB|B96|ICD10CM|Oth bacterial agents as the cause of diseases classd elswhr|Oth bacterial agents as the cause of diseases classd elswhr +C2833803|T047|HT|B96|ICD10CM|Other bacterial agents as the cause of diseases classified elsewhere|Other bacterial agents as the cause of diseases classified elsewhere +C0836940|T047|HT|B96|ICD10|Other bacterial agents as the cause of diseases classified to other chapters|Other bacterial agents as the cause of diseases classified to other chapters +C2833805|T047|PT|B96.0|ICD10CM|Mycoplasma pneumoniae [M. pneumoniae] as the cause of diseases classified elsewhere|Mycoplasma pneumoniae [M. pneumoniae] as the cause of diseases classified elsewhere +C0494137|T047|PT|B96.0|ICD10|Mycoplasma pneumoniae [M. pneumoniae] as the cause of diseases classified to other chapters|Mycoplasma pneumoniae [M. pneumoniae] as the cause of diseases classified to other chapters +C2833805|T047|AB|B96.0|ICD10CM|Mycoplasma pneumoniae as the cause of diseases classd elswhr|Mycoplasma pneumoniae as the cause of diseases classd elswhr +C2833804|T047|ET|B96.0|ICD10CM|Pleuro-pneumonia-like-organism [PPLO]|Pleuro-pneumonia-like-organism [PPLO] +C2833806|T047|PT|B96.1|ICD10CM|Klebsiella pneumoniae [K. pneumoniae] as the cause of diseases classified elsewhere|Klebsiella pneumoniae [K. pneumoniae] as the cause of diseases classified elsewhere +C0519030|T047|PT|B96.1|ICD10|Klebsiella pneumoniae [K. pneumoniae] as the cause of diseases classified to other chapters|Klebsiella pneumoniae [K. pneumoniae] as the cause of diseases classified to other chapters +C2833806|T047|AB|B96.1|ICD10CM|Klebsiella pneumoniae as the cause of diseases classd elswhr|Klebsiella pneumoniae as the cause of diseases classd elswhr +C2833807|T047|HT|B96.2|ICD10CM|Escherichia coli [E. coli ] as the cause of diseases classified elsewhere|Escherichia coli [E. coli ] as the cause of diseases classified elsewhere +C0348320|T047|PT|B96.2|ICD10|Escherichia coli [E. coli] as the cause of diseases classified to other chapters|Escherichia coli [E. coli] as the cause of diseases classified to other chapters +C2833807|T047|AB|B96.2|ICD10CM|Escherichia coli as the cause of diseases classd elswhr|Escherichia coli as the cause of diseases classd elswhr +C0014836|T047|ET|B96.20|ICD10CM|Escherichia coli [E. coli] NOS|Escherichia coli [E. coli] NOS +C0014836|T047|AB|B96.20|ICD10CM|Unsp Escherichia coli as the cause of diseases classd elswhr|Unsp Escherichia coli as the cause of diseases classd elswhr +C0014836|T047|PT|B96.20|ICD10CM|Unspecified Escherichia coli [E. coli] as the cause of diseases classified elsewhere|Unspecified Escherichia coli [E. coli] as the cause of diseases classified elsewhere +C3161162|T033|ET|B96.21|ICD10CM|E. coli O157 with confirmation of Shiga toxin when H antigen is unknown, or is not H7|E. coli O157 with confirmation of Shiga toxin when H antigen is unknown, or is not H7 +C3161161|T033|ET|B96.21|ICD10CM|E. coli O157:H- (nonmotile) with confirmation of Shiga toxin|E. coli O157:H- (nonmotile) with confirmation of Shiga toxin +C3161163|T033|ET|B96.21|ICD10CM|O157:H7 Escherichia coli [E.coli] with or without confirmation of Shiga toxin-production|O157:H7 Escherichia coli [E.coli] with or without confirmation of Shiga toxin-production +C3264591|T047|AB|B96.21|ICD10CM|Shig tox E coli [STEC] O157 causing diseases classd elswhr|Shig tox E coli [STEC] O157 causing diseases classd elswhr +C3161165|T033|ET|B96.21|ICD10CM|STEC O157:H7 with or without confirmation of Shiga toxin-production|STEC O157:H7 with or without confirmation of Shiga toxin-production +C3161168|T033|ET|B96.22|ICD10CM|Non-O157 Shiga toxin-producing Escherichia coli [E.coli]|Non-O157 Shiga toxin-producing Escherichia coli [E.coli] +C3161169|T033|ET|B96.22|ICD10CM|Non-O157 Shiga toxin-producing Escherichia coli [E.coli] with known O group|Non-O157 Shiga toxin-producing Escherichia coli [E.coli] with known O group +C3264592|T047|AB|B96.22|ICD10CM|Oth shiga toxin E coli [STEC] causing diseases classd elswhr|Oth shiga toxin E coli [STEC] causing diseases classd elswhr +C3161171|T033|ET|B96.23|ICD10CM|Shiga toxin-producing Escherichia coli [E. coli] with unspecified O group|Shiga toxin-producing Escherichia coli [E. coli] with unspecified O group +C3264593|T047|ET|B96.23|ICD10CM|STEC NOS|STEC NOS +C3264593|T047|AB|B96.23|ICD10CM|Unsp shig tox E coli [STEC] causing diseases classd elswhr|Unsp shig tox E coli [STEC] causing diseases classd elswhr +C3161172|T033|ET|B96.29|ICD10CM|Non-Shiga toxin-producing E. coli|Non-Shiga toxin-producing E. coli +C3264594|T047|AB|B96.29|ICD10CM|Oth Escherichia coli as the cause of diseases classd elswhr|Oth Escherichia coli as the cause of diseases classd elswhr +C3264594|T047|PT|B96.29|ICD10CM|Other Escherichia coli [E. coli] as the cause of diseases classified elsewhere|Other Escherichia coli [E. coli] as the cause of diseases classified elsewhere +C0348321|T047|PT|B96.3|ICD10|Haemophilus influenzae [H. influenzae] as the cause of diseases classified to other chapters|Haemophilus influenzae [H. influenzae] as the cause of diseases classified to other chapters +C2833808|T047|PT|B96.3|ICD10CM|Hemophilus influenzae [H. influenzae] as the cause of diseases classified elsewhere|Hemophilus influenzae [H. influenzae] as the cause of diseases classified elsewhere +C0348321|T047|PT|B96.3|ICD10AE|Hemophilus influenzae [H. influenzae] as the cause of diseases classified to other chapters|Hemophilus influenzae [H. influenzae] as the cause of diseases classified to other chapters +C2833808|T047|AB|B96.3|ICD10CM|Hemophilus influenzae as the cause of diseases classd elswhr|Hemophilus influenzae as the cause of diseases classd elswhr +C2833809|T047|PT|B96.4|ICD10CM|Proteus (mirabilis) (morganii) as the cause of diseases classified elsewhere|Proteus (mirabilis) (morganii) as the cause of diseases classified elsewhere +C0348322|T047|PT|B96.4|ICD10|Proteus (mirabilis) (morganii) as the cause of diseases classified to other chapters|Proteus (mirabilis) (morganii) as the cause of diseases classified to other chapters +C2833809|T047|AB|B96.4|ICD10CM|Proteus (mirabilis) (morganii) causing dis classd elswhr|Proteus (mirabilis) (morganii) causing dis classd elswhr +C2833810|T047|PT|B96.5|ICD10CM|Pseudomonas (aeruginosa) (mallei) (pseudomallei) as the cause of diseases classified elsewhere|Pseudomonas (aeruginosa) (mallei) (pseudomallei) as the cause of diseases classified elsewhere +C2833810|T047|AB|B96.5|ICD10CM|Pseudomonas (mallei) causing diseases classd elswhr|Pseudomonas (mallei) causing diseases classd elswhr +C0494140|T047|PT|B96.6|ICD10|Bacillus fragilis [B. fragilis] as the cause of diseases classified to other chapters|Bacillus fragilis [B. fragilis] as the cause of diseases classified to other chapters +C2833811|T047|PT|B96.6|ICD10CM|Bacteroides fragilis [B. fragilis] as the cause of diseases classified elsewhere|Bacteroides fragilis [B. fragilis] as the cause of diseases classified elsewhere +C2833811|T047|AB|B96.6|ICD10CM|Bacteroides fragilis as the cause of diseases classd elswhr|Bacteroides fragilis as the cause of diseases classd elswhr +C2833812|T047|PT|B96.7|ICD10CM|Clostridium perfringens [C. perfringens] as the cause of diseases classified elsewhere|Clostridium perfringens [C. perfringens] as the cause of diseases classified elsewhere +C0494141|T047|PT|B96.7|ICD10|Clostridium perfringens [C. perfringens] as the cause of diseases classified to other chapters|Clostridium perfringens [C. perfringens] as the cause of diseases classified to other chapters +C2833812|T047|AB|B96.7|ICD10CM|Clostridium perfringens causing diseases classd elswhr|Clostridium perfringens causing diseases classd elswhr +C2833813|T047|AB|B96.8|ICD10CM|Oth bacterial agents as the cause of diseases classd elswhr|Oth bacterial agents as the cause of diseases classd elswhr +C2833813|T047|HT|B96.8|ICD10CM|Other specified bacterial agents as the cause of diseases classified elsewhere|Other specified bacterial agents as the cause of diseases classified elsewhere +C0348326|T047|PT|B96.8|ICD10|Other specified bacterial agents as the cause of diseases classified to other chapters|Other specified bacterial agents as the cause of diseases classified to other chapters +C2833814|T047|PT|B96.81|ICD10CM|Helicobacter pylori [H. pylori] as the cause of diseases classified elsewhere|Helicobacter pylori [H. pylori] as the cause of diseases classified elsewhere +C2833814|T047|AB|B96.81|ICD10CM|Helicobacter pylori as the cause of diseases classd elswhr|Helicobacter pylori as the cause of diseases classd elswhr +C2833815|T047|AB|B96.82|ICD10CM|Vibrio vulnificus as the cause of diseases classd elswhr|Vibrio vulnificus as the cause of diseases classd elswhr +C2833815|T047|PT|B96.82|ICD10CM|Vibrio vulnificus as the cause of diseases classified elsewhere|Vibrio vulnificus as the cause of diseases classified elsewhere +C2833813|T047|AB|B96.89|ICD10CM|Oth bacterial agents as the cause of diseases classd elswhr|Oth bacterial agents as the cause of diseases classd elswhr +C2833813|T047|PT|B96.89|ICD10CM|Other specified bacterial agents as the cause of diseases classified elsewhere|Other specified bacterial agents as the cause of diseases classified elsewhere +C2833816|T047|AB|B97|ICD10CM|Viral agents as the cause of diseases classified elsewhere|Viral agents as the cause of diseases classified elsewhere +C2833816|T047|HT|B97|ICD10CM|Viral agents as the cause of diseases classified elsewhere|Viral agents as the cause of diseases classified elsewhere +C0494142|T047|HT|B97|ICD10|Viral agents as the cause of diseases classified to other chapters|Viral agents as the cause of diseases classified to other chapters +C1386361|T047|AB|B97.0|ICD10CM|Adenovirus as the cause of diseases classified elsewhere|Adenovirus as the cause of diseases classified elsewhere +C1386361|T047|PT|B97.0|ICD10CM|Adenovirus as the cause of diseases classified elsewhere|Adenovirus as the cause of diseases classified elsewhere +C0348327|T047|PT|B97.0|ICD10|Adenovirus as the cause of diseases classified to other chapters|Adenovirus as the cause of diseases classified to other chapters +C1396712|T047|AB|B97.1|ICD10CM|Enterovirus as the cause of diseases classified elsewhere|Enterovirus as the cause of diseases classified elsewhere +C1396712|T047|HT|B97.1|ICD10CM|Enterovirus as the cause of diseases classified elsewhere|Enterovirus as the cause of diseases classified elsewhere +C0348328|T047|PT|B97.1|ICD10|Enterovirus as the cause of diseases classified to other chapters|Enterovirus as the cause of diseases classified to other chapters +C2833817|T047|AB|B97.10|ICD10CM|Unsp enterovirus as the cause of diseases classd elswhr|Unsp enterovirus as the cause of diseases classd elswhr +C2833817|T047|PT|B97.10|ICD10CM|Unspecified enterovirus as the cause of diseases classified elsewhere|Unspecified enterovirus as the cause of diseases classified elsewhere +C1394174|T047|AB|B97.11|ICD10CM|Coxsackievirus as the cause of diseases classified elsewhere|Coxsackievirus as the cause of diseases classified elsewhere +C1394174|T047|PT|B97.11|ICD10CM|Coxsackievirus as the cause of diseases classified elsewhere|Coxsackievirus as the cause of diseases classified elsewhere +C1396014|T047|AB|B97.12|ICD10CM|Echovirus as the cause of diseases classified elsewhere|Echovirus as the cause of diseases classified elsewhere +C1396014|T047|PT|B97.12|ICD10CM|Echovirus as the cause of diseases classified elsewhere|Echovirus as the cause of diseases classified elsewhere +C2833818|T047|AB|B97.19|ICD10CM|Oth enterovirus as the cause of diseases classd elswhr|Oth enterovirus as the cause of diseases classd elswhr +C2833818|T047|PT|B97.19|ICD10CM|Other enterovirus as the cause of diseases classified elsewhere|Other enterovirus as the cause of diseases classified elsewhere +C1394032|T047|AB|B97.2|ICD10CM|Coronavirus as the cause of diseases classified elsewhere|Coronavirus as the cause of diseases classified elsewhere +C1394032|T047|HT|B97.2|ICD10CM|Coronavirus as the cause of diseases classified elsewhere|Coronavirus as the cause of diseases classified elsewhere +C0348984|T047|PT|B97.2|ICD10|Coronavirus as the cause of diseases classified to other chapters|Coronavirus as the cause of diseases classified to other chapters +C2833819|T047|PT|B97.21|ICD10CM|SARS-associated coronavirus as the cause of diseases classified elsewhere|SARS-associated coronavirus as the cause of diseases classified elsewhere +C2833819|T047|AB|B97.21|ICD10CM|SARS-associated coronavirus causing diseases classd elswhr|SARS-associated coronavirus causing diseases classd elswhr +C2833820|T047|AB|B97.29|ICD10CM|Oth coronavirus as the cause of diseases classd elswhr|Oth coronavirus as the cause of diseases classd elswhr +C2833820|T047|PT|B97.29|ICD10CM|Other coronavirus as the cause of diseases classified elsewhere|Other coronavirus as the cause of diseases classified elsewhere +C1406290|T047|AB|B97.3|ICD10CM|Retrovirus as the cause of diseases classified elsewhere|Retrovirus as the cause of diseases classified elsewhere +C1406290|T047|HT|B97.3|ICD10CM|Retrovirus as the cause of diseases classified elsewhere|Retrovirus as the cause of diseases classified elsewhere +C0348329|T047|PT|B97.3|ICD10|Retrovirus as the cause of diseases classified to other chapters|Retrovirus as the cause of diseases classified to other chapters +C2833821|T047|AB|B97.30|ICD10CM|Unsp retrovirus as the cause of diseases classd elswhr|Unsp retrovirus as the cause of diseases classd elswhr +C2833821|T047|PT|B97.30|ICD10CM|Unspecified retrovirus as the cause of diseases classified elsewhere|Unspecified retrovirus as the cause of diseases classified elsewhere +C1402262|T047|AB|B97.31|ICD10CM|Lentivirus as the cause of diseases classified elsewhere|Lentivirus as the cause of diseases classified elsewhere +C1402262|T047|PT|B97.31|ICD10CM|Lentivirus as the cause of diseases classified elsewhere|Lentivirus as the cause of diseases classified elsewhere +C1408530|T047|AB|B97.32|ICD10CM|Oncovirus as the cause of diseases classified elsewhere|Oncovirus as the cause of diseases classified elsewhere +C1408530|T047|PT|B97.32|ICD10CM|Oncovirus as the cause of diseases classified elsewhere|Oncovirus as the cause of diseases classified elsewhere +C2833822|T047|AB|B97.33|ICD10CM|HTLV-I as the cause of diseases classified elsewhere|HTLV-I as the cause of diseases classified elsewhere +C2833822|T047|PT|B97.33|ICD10CM|Human T-cell lymphotrophic virus, type I [HTLV-I] as the cause of diseases classified elsewhere|Human T-cell lymphotrophic virus, type I [HTLV-I] as the cause of diseases classified elsewhere +C2833823|T047|AB|B97.34|ICD10CM|HTLV-II as the cause of diseases classified elsewhere|HTLV-II as the cause of diseases classified elsewhere +C2833823|T047|PT|B97.34|ICD10CM|Human T-cell lymphotrophic virus, type II [HTLV-II] as the cause of diseases classified elsewhere|Human T-cell lymphotrophic virus, type II [HTLV-II] as the cause of diseases classified elsewhere +C2833824|T047|AB|B97.35|ICD10CM|HIV 2 as the cause of diseases classified elsewhere|HIV 2 as the cause of diseases classified elsewhere +C2833824|T047|PT|B97.35|ICD10CM|Human immunodeficiency virus, type 2 [HIV 2] as the cause of diseases classified elsewhere|Human immunodeficiency virus, type 2 [HIV 2] as the cause of diseases classified elsewhere +C2833825|T047|AB|B97.39|ICD10CM|Oth retrovirus as the cause of diseases classified elsewhere|Oth retrovirus as the cause of diseases classified elsewhere +C2833825|T047|PT|B97.39|ICD10CM|Other retrovirus as the cause of diseases classified elsewhere|Other retrovirus as the cause of diseases classified elsewhere +C1406195|T047|PT|B97.4|ICD10CM|Respiratory syncytial virus as the cause of diseases classified elsewhere|Respiratory syncytial virus as the cause of diseases classified elsewhere +C0348330|T047|PT|B97.4|ICD10|Respiratory syncytial virus as the cause of diseases classified to other chapters|Respiratory syncytial virus as the cause of diseases classified to other chapters +C1406195|T047|AB|B97.4|ICD10CM|Respiratory syncytial virus causing diseases classd elswhr|Respiratory syncytial virus causing diseases classd elswhr +C1406195|T047|ET|B97.4|ICD10CM|RSV as the cause of diseases classified elsewhere|RSV as the cause of diseases classified elsewhere +C1406181|T047|AB|B97.5|ICD10CM|Reovirus as the cause of diseases classified elsewhere|Reovirus as the cause of diseases classified elsewhere +C1406181|T047|PT|B97.5|ICD10CM|Reovirus as the cause of diseases classified elsewhere|Reovirus as the cause of diseases classified elsewhere +C0348331|T047|PT|B97.5|ICD10|Reovirus as the cause of diseases classified to other chapters|Reovirus as the cause of diseases classified to other chapters +C1409242|T047|AB|B97.6|ICD10CM|Parvovirus as the cause of diseases classified elsewhere|Parvovirus as the cause of diseases classified elsewhere +C1409242|T047|PT|B97.6|ICD10CM|Parvovirus as the cause of diseases classified elsewhere|Parvovirus as the cause of diseases classified elsewhere +C0348332|T047|PT|B97.6|ICD10|Parvovirus as the cause of diseases classified to other chapters|Parvovirus as the cause of diseases classified to other chapters +C1409118|T047|AB|B97.7|ICD10CM|Papillomavirus as the cause of diseases classified elsewhere|Papillomavirus as the cause of diseases classified elsewhere +C1409118|T047|PT|B97.7|ICD10CM|Papillomavirus as the cause of diseases classified elsewhere|Papillomavirus as the cause of diseases classified elsewhere +C0348333|T047|PT|B97.7|ICD10|Papillomavirus as the cause of diseases classified to other chapters|Papillomavirus as the cause of diseases classified to other chapters +C2833826|T047|AB|B97.8|ICD10CM|Oth viral agents as the cause of diseases classd elswhr|Oth viral agents as the cause of diseases classd elswhr +C2833826|T047|HT|B97.8|ICD10CM|Other viral agents as the cause of diseases classified elsewhere|Other viral agents as the cause of diseases classified elsewhere +C0348334|T047|PT|B97.8|ICD10|Other viral agents as the cause of diseases classified to other chapters|Other viral agents as the cause of diseases classified to other chapters +C2833827|T047|AB|B97.81|ICD10CM|Human metapneumovirus as the cause of diseases classd elswhr|Human metapneumovirus as the cause of diseases classd elswhr +C2833827|T047|PT|B97.81|ICD10CM|Human metapneumovirus as the cause of diseases classified elsewhere|Human metapneumovirus as the cause of diseases classified elsewhere +C2833826|T047|AB|B97.89|ICD10CM|Oth viral agents as the cause of diseases classd elswhr|Oth viral agents as the cause of diseases classd elswhr +C2833826|T047|PT|B97.89|ICD10CM|Other viral agents as the cause of diseases classified elsewhere|Other viral agents as the cause of diseases classified elsewhere +C0348336|T047|PT|B99|ICD10|Other and unspecified infectious diseases|Other and unspecified infectious diseases +C0348336|T047|HT|B99|ICD10CM|Other and unspecified infectious diseases|Other and unspecified infectious diseases +C0348336|T047|AB|B99|ICD10CM|Other and unspecified infectious diseases|Other and unspecified infectious diseases +C0497442|T047|HT|B99-B99|ICD10CM|Other infectious diseases (B99)|Other infectious diseases (B99) +C0497442|T047|HT|B99-B99.9|ICD10|Other infectious diseases|Other infectious diseases +C0497442|T047|AB|B99.8|ICD10CM|Other infectious disease|Other infectious disease +C0497442|T047|PT|B99.8|ICD10CM|Other infectious disease|Other infectious disease +C2833828|T047|AB|B99.9|ICD10CM|Unspecified infectious disease|Unspecified infectious disease +C2833828|T047|PT|B99.9|ICD10CM|Unspecified infectious disease|Unspecified infectious disease +C0153340|T191|HT|C00|ICD10|Malignant neoplasm of lip|Malignant neoplasm of lip +C0153340|T191|HT|C00|ICD10CM|Malignant neoplasm of lip|Malignant neoplasm of lip +C0153340|T191|AB|C00|ICD10CM|Malignant neoplasm of lip|Malignant neoplasm of lip +C0178247|T191|HT|C00-C14|ICD10CM|Malignant neoplasms of lip, oral cavity and pharynx (C00-C14)|Malignant neoplasms of lip, oral cavity and pharynx (C00-C14) +C0178247|T191|HT|C00-C14.9|ICD10|Malignant neoplasms of lip, oral cavity and pharynx|Malignant neoplasms of lip, oral cavity and pharynx +C4267832|T191|HT|C00-C96|ICD10CM|Malignant neoplasms (C00-C96)|Malignant neoplasms (C00-C96) +C0006826|T191|HT|C00-C97.9|ICD10|Malignant neoplasms|Malignant neoplasms +C0027651|T191|HT|C00-D48.9|ICD10|Neoplasms|Neoplasms +C2977837|T191|HT|C00-D49|ICD10CM|Neoplasms (C00-D49)|Neoplasms (C00-D49) +C0474962|T191|PS|C00.0|ICD10|External upper lip|External upper lip +C0474962|T191|PX|C00.0|ICD10|Malignant neoplasm of external upper lip|Malignant neoplasm of external upper lip +C0474962|T191|PT|C00.0|ICD10CM|Malignant neoplasm of external upper lip|Malignant neoplasm of external upper lip +C0474962|T191|AB|C00.0|ICD10CM|Malignant neoplasm of external upper lip|Malignant neoplasm of external upper lip +C0474962|T191|ET|C00.0|ICD10CM|Malignant neoplasm of lipstick area of upper lip|Malignant neoplasm of lipstick area of upper lip +C0864835|T191|ET|C00.0|ICD10CM|Malignant neoplasm of upper lip NOS|Malignant neoplasm of upper lip NOS +C0474962|T191|ET|C00.0|ICD10CM|Malignant neoplasm of vermilion border of upper lip|Malignant neoplasm of vermilion border of upper lip +C0432520|T191|PS|C00.1|ICD10|External lower lip|External lower lip +C0432520|T191|PX|C00.1|ICD10|Malignant neoplasm of external lower lip|Malignant neoplasm of external lower lip +C0432520|T191|PT|C00.1|ICD10CM|Malignant neoplasm of external lower lip|Malignant neoplasm of external lower lip +C0432520|T191|AB|C00.1|ICD10CM|Malignant neoplasm of external lower lip|Malignant neoplasm of external lower lip +C0432520|T191|ET|C00.1|ICD10CM|Malignant neoplasm of lipstick area of lower lip|Malignant neoplasm of lipstick area of lower lip +C0864836|T191|ET|C00.1|ICD10CM|Malignant neoplasm of lower lip NOS|Malignant neoplasm of lower lip NOS +C0432520|T191|ET|C00.1|ICD10CM|Malignant neoplasm of vermilion border of lower lip|Malignant neoplasm of vermilion border of lower lip +C0546836|T191|PS|C00.2|ICD10|External lip, unspecified|External lip, unspecified +C0546836|T191|PX|C00.2|ICD10|Malignant neoplasm of external lip, unspecified|Malignant neoplasm of external lip, unspecified +C0546836|T191|PT|C00.2|ICD10CM|Malignant neoplasm of external lip, unspecified|Malignant neoplasm of external lip, unspecified +C0546836|T191|AB|C00.2|ICD10CM|Malignant neoplasm of external lip, unspecified|Malignant neoplasm of external lip, unspecified +C0546836|T191|ET|C00.2|ICD10CM|Malignant neoplasm of vermilion border of lip NOS|Malignant neoplasm of vermilion border of lip NOS +C0432579|T191|ET|C00.3|ICD10CM|Malignant neoplasm of buccal aspect of upper lip|Malignant neoplasm of buccal aspect of upper lip +C0345488|T191|ET|C00.3|ICD10CM|Malignant neoplasm of frenulum of upper lip|Malignant neoplasm of frenulum of upper lip +C0432579|T191|ET|C00.3|ICD10CM|Malignant neoplasm of mucosa of upper lip|Malignant neoplasm of mucosa of upper lip +C0432579|T191|ET|C00.3|ICD10CM|Malignant neoplasm of oral aspect of upper lip|Malignant neoplasm of oral aspect of upper lip +C0432579|T191|PT|C00.3|ICD10CM|Malignant neoplasm of upper lip, inner aspect|Malignant neoplasm of upper lip, inner aspect +C0432579|T191|AB|C00.3|ICD10CM|Malignant neoplasm of upper lip, inner aspect|Malignant neoplasm of upper lip, inner aspect +C0432579|T191|PX|C00.3|ICD10|Malignant neoplasm of upper lip, inner aspect|Malignant neoplasm of upper lip, inner aspect +C0432579|T191|PS|C00.3|ICD10|Upper lip, inner aspect|Upper lip, inner aspect +C0733940|T191|PS|C00.4|ICD10|Lower lip, inner aspect|Lower lip, inner aspect +C0733940|T191|ET|C00.4|ICD10CM|Malignant neoplasm of buccal aspect of lower lip|Malignant neoplasm of buccal aspect of lower lip +C0345494|T191|ET|C00.4|ICD10CM|Malignant neoplasm of frenulum of lower lip|Malignant neoplasm of frenulum of lower lip +C0733940|T191|PX|C00.4|ICD10|Malignant neoplasm of lower lip, inner aspect|Malignant neoplasm of lower lip, inner aspect +C0733940|T191|PT|C00.4|ICD10CM|Malignant neoplasm of lower lip, inner aspect|Malignant neoplasm of lower lip, inner aspect +C0733940|T191|AB|C00.4|ICD10CM|Malignant neoplasm of lower lip, inner aspect|Malignant neoplasm of lower lip, inner aspect +C0733940|T191|ET|C00.4|ICD10CM|Malignant neoplasm of mucosa of lower lip|Malignant neoplasm of mucosa of lower lip +C0733940|T191|ET|C00.4|ICD10CM|Malignant neoplasm of oral aspect of lower lip|Malignant neoplasm of oral aspect of lower lip +C0474971|T191|PS|C00.5|ICD10|Lip, unspecified, inner aspect|Lip, unspecified, inner aspect +C0474971|T191|ET|C00.5|ICD10CM|Malignant neoplasm of buccal aspect of lip, unspecified|Malignant neoplasm of buccal aspect of lip, unspecified +C0543393|T191|ET|C00.5|ICD10CM|Malignant neoplasm of frenulum of lip, unspecified|Malignant neoplasm of frenulum of lip, unspecified +C0474971|T191|AB|C00.5|ICD10CM|Malignant neoplasm of lip, unspecified, inner aspect|Malignant neoplasm of lip, unspecified, inner aspect +C0474971|T191|PT|C00.5|ICD10CM|Malignant neoplasm of lip, unspecified, inner aspect|Malignant neoplasm of lip, unspecified, inner aspect +C0474971|T191|PX|C00.5|ICD10|Malignant neoplasm of lip, unspecified, inner aspect|Malignant neoplasm of lip, unspecified, inner aspect +C0347955|T191|ET|C00.5|ICD10CM|Malignant neoplasm of mucosa of lip, unspecified|Malignant neoplasm of mucosa of lip, unspecified +C2833831|T191|ET|C00.5|ICD10CM|Malignant neoplasm of oral aspect of lip, unspecified|Malignant neoplasm of oral aspect of lip, unspecified +C0153346|T191|PS|C00.6|ICD10|Commissure of lip|Commissure of lip +C0153346|T191|PX|C00.6|ICD10|Malignant neoplasm of commissure of lip|Malignant neoplasm of commissure of lip +C2833832|T191|AB|C00.6|ICD10CM|Malignant neoplasm of commissure of lip, unspecified|Malignant neoplasm of commissure of lip, unspecified +C2833832|T191|PT|C00.6|ICD10CM|Malignant neoplasm of commissure of lip, unspecified|Malignant neoplasm of commissure of lip, unspecified +C0496754|T191|AB|C00.8|ICD10CM|Malignant neoplasm of overlapping sites of lip|Malignant neoplasm of overlapping sites of lip +C0496754|T191|PT|C00.8|ICD10CM|Malignant neoplasm of overlapping sites of lip|Malignant neoplasm of overlapping sites of lip +C0496754|T191|PX|C00.8|ICD10|Malignant neoplasm overlapping lip site|Malignant neoplasm overlapping lip site +C0496754|T191|PS|C00.8|ICD10|Overlapping lesion of lip|Overlapping lesion of lip +C0153340|T191|PS|C00.9|ICD10|Lip, unspecified|Lip, unspecified +C0153340|T191|PX|C00.9|ICD10|Malignant neoplasm of lip, unspecified|Malignant neoplasm of lip, unspecified +C0153340|T191|PT|C00.9|ICD10CM|Malignant neoplasm of lip, unspecified|Malignant neoplasm of lip, unspecified +C0153340|T191|AB|C00.9|ICD10CM|Malignant neoplasm of lip, unspecified|Malignant neoplasm of lip, unspecified +C0153350|T191|PT|C01|ICD10CM|Malignant neoplasm of base of tongue|Malignant neoplasm of base of tongue +C0153350|T191|AB|C01|ICD10CM|Malignant neoplasm of base of tongue|Malignant neoplasm of base of tongue +C0153350|T191|PT|C01|ICD10|Malignant neoplasm of base of tongue|Malignant neoplasm of base of tongue +C0347919|T191|ET|C01|ICD10CM|Malignant neoplasm of dorsal surface of base of tongue|Malignant neoplasm of dorsal surface of base of tongue +C0153350|T191|ET|C01|ICD10CM|Malignant neoplasm of fixed part of tongue NOS|Malignant neoplasm of fixed part of tongue NOS +C0153350|T191|ET|C01|ICD10CM|Malignant neoplasm of posterior third of tongue|Malignant neoplasm of posterior third of tongue +C0153357|T191|AB|C02|ICD10CM|Malignant neoplasm of other and unspecified parts of tongue|Malignant neoplasm of other and unspecified parts of tongue +C0153357|T191|HT|C02|ICD10CM|Malignant neoplasm of other and unspecified parts of tongue|Malignant neoplasm of other and unspecified parts of tongue +C0153357|T191|HT|C02|ICD10|Malignant neoplasm of other and unspecified parts of tongue|Malignant neoplasm of other and unspecified parts of tongue +C0153351|T191|PS|C02.0|ICD10|Dorsal surface of tongue|Dorsal surface of tongue +C0345504|T191|ET|C02.0|ICD10CM|Malignant neoplasm of anterior two-thirds of tongue, dorsal surface|Malignant neoplasm of anterior two-thirds of tongue, dorsal surface +C0153351|T191|PX|C02.0|ICD10|Malignant neoplasm of dorsal surface of tongue|Malignant neoplasm of dorsal surface of tongue +C0153351|T191|PT|C02.0|ICD10CM|Malignant neoplasm of dorsal surface of tongue|Malignant neoplasm of dorsal surface of tongue +C0153351|T191|AB|C02.0|ICD10CM|Malignant neoplasm of dorsal surface of tongue|Malignant neoplasm of dorsal surface of tongue +C0496755|T191|PS|C02.1|ICD10|Border of tongue|Border of tongue +C0496755|T191|PX|C02.1|ICD10|Malignant neoplasm of border of tongue|Malignant neoplasm of border of tongue +C0496755|T191|PT|C02.1|ICD10CM|Malignant neoplasm of border of tongue|Malignant neoplasm of border of tongue +C0496755|T191|AB|C02.1|ICD10CM|Malignant neoplasm of border of tongue|Malignant neoplasm of border of tongue +C0345513|T191|ET|C02.1|ICD10CM|Malignant neoplasm of tip of tongue|Malignant neoplasm of tip of tongue +C0153353|T191|ET|C02.2|ICD10CM|Malignant neoplasm of anterior two-thirds of tongue, ventral surface|Malignant neoplasm of anterior two-thirds of tongue, ventral surface +C0345518|T191|ET|C02.2|ICD10CM|Malignant neoplasm of frenulum linguae|Malignant neoplasm of frenulum linguae +C0684333|T191|PT|C02.2|ICD10CM|Malignant neoplasm of ventral surface of tongue|Malignant neoplasm of ventral surface of tongue +C0684333|T191|AB|C02.2|ICD10CM|Malignant neoplasm of ventral surface of tongue|Malignant neoplasm of ventral surface of tongue +C0684333|T191|PX|C02.2|ICD10|Malignant neoplasm of ventral surface of tongue|Malignant neoplasm of ventral surface of tongue +C0684333|T191|PS|C02.2|ICD10|Ventral surface of tongue|Ventral surface of tongue +C0153354|T191|PS|C02.3|ICD10|Anterior two-thirds of tongue, part unspecified|Anterior two-thirds of tongue, part unspecified +C0153354|T191|AB|C02.3|ICD10CM|Malig neoplasm of anterior two-thirds of tongue, part unsp|Malig neoplasm of anterior two-thirds of tongue, part unsp +C0153354|T191|PT|C02.3|ICD10CM|Malignant neoplasm of anterior two-thirds of tongue, part unspecified|Malignant neoplasm of anterior two-thirds of tongue, part unspecified +C0153354|T191|PX|C02.3|ICD10|Malignant neoplasm of anterior two-thirds of tongue, part unspecified|Malignant neoplasm of anterior two-thirds of tongue, part unspecified +C2833834|T191|ET|C02.3|ICD10CM|Malignant neoplasm of middle third of tongue NOS|Malignant neoplasm of middle third of tongue NOS +C0153354|T191|ET|C02.3|ICD10CM|Malignant neoplasm of mobile part of tongue NOS|Malignant neoplasm of mobile part of tongue NOS +C0153356|T191|PS|C02.4|ICD10|Lingual tonsil|Lingual tonsil +C0153356|T191|PX|C02.4|ICD10|Malignant neoplasm of lingual tonsil|Malignant neoplasm of lingual tonsil +C0153356|T191|PT|C02.4|ICD10CM|Malignant neoplasm of lingual tonsil|Malignant neoplasm of lingual tonsil +C0153356|T191|AB|C02.4|ICD10CM|Malignant neoplasm of lingual tonsil|Malignant neoplasm of lingual tonsil +C0496756|T191|AB|C02.8|ICD10CM|Malignant neoplasm of overlapping sites of tongue|Malignant neoplasm of overlapping sites of tongue +C0496756|T191|PT|C02.8|ICD10CM|Malignant neoplasm of overlapping sites of tongue|Malignant neoplasm of overlapping sites of tongue +C2833835|T191|ET|C02.8|ICD10CM|Malignant neoplasm of two or more contiguous sites of tongue|Malignant neoplasm of two or more contiguous sites of tongue +C0496756|T191|PX|C02.8|ICD10|Malignant neoplasm overlapping tongue site|Malignant neoplasm overlapping tongue site +C0496756|T191|PS|C02.8|ICD10|Overlapping lesion of tongue|Overlapping lesion of tongue +C0153349|T191|PX|C02.9|ICD10|Malignant neoplasm of tongue, unspecified|Malignant neoplasm of tongue, unspecified +C0153349|T191|PT|C02.9|ICD10CM|Malignant neoplasm of tongue, unspecified|Malignant neoplasm of tongue, unspecified +C0153349|T191|AB|C02.9|ICD10CM|Malignant neoplasm of tongue, unspecified|Malignant neoplasm of tongue, unspecified +C0153349|T191|PS|C02.9|ICD10|Tongue, unspecified|Tongue, unspecified +C3647198|T191|ET|C03|ICD10CM|malignant neoplasm of alveolar (ridge) mucosa|malignant neoplasm of alveolar (ridge) mucosa +C0153364|T191|ET|C03|ICD10CM|malignant neoplasm of gingiva|malignant neoplasm of gingiva +C0153364|T191|HT|C03|ICD10CM|Malignant neoplasm of gum|Malignant neoplasm of gum +C0153364|T191|AB|C03|ICD10CM|Malignant neoplasm of gum|Malignant neoplasm of gum +C0153364|T191|HT|C03|ICD10|Malignant neoplasm of gum|Malignant neoplasm of gum +C0153365|T191|PX|C03.0|ICD10|Malignant neoplasm of upper gum|Malignant neoplasm of upper gum +C0153365|T191|PT|C03.0|ICD10CM|Malignant neoplasm of upper gum|Malignant neoplasm of upper gum +C0153365|T191|AB|C03.0|ICD10CM|Malignant neoplasm of upper gum|Malignant neoplasm of upper gum +C0153365|T191|PS|C03.0|ICD10|Upper gum|Upper gum +C0432581|T191|PS|C03.1|ICD10|Lower gum|Lower gum +C0432581|T191|PX|C03.1|ICD10|Malignant neoplasm of lower gum|Malignant neoplasm of lower gum +C0432581|T191|PT|C03.1|ICD10CM|Malignant neoplasm of lower gum|Malignant neoplasm of lower gum +C0432581|T191|AB|C03.1|ICD10CM|Malignant neoplasm of lower gum|Malignant neoplasm of lower gum +C0153364|T191|PS|C03.9|ICD10|Gum, unspecified|Gum, unspecified +C0153364|T191|PX|C03.9|ICD10|Malignant neoplasm of gum, unspecified|Malignant neoplasm of gum, unspecified +C0153364|T191|PT|C03.9|ICD10CM|Malignant neoplasm of gum, unspecified|Malignant neoplasm of gum, unspecified +C0153364|T191|AB|C03.9|ICD10CM|Malignant neoplasm of gum, unspecified|Malignant neoplasm of gum, unspecified +C0153368|T191|HT|C04|ICD10CM|Malignant neoplasm of floor of mouth|Malignant neoplasm of floor of mouth +C0153368|T191|AB|C04|ICD10CM|Malignant neoplasm of floor of mouth|Malignant neoplasm of floor of mouth +C0153368|T191|HT|C04|ICD10|Malignant neoplasm of floor of mouth|Malignant neoplasm of floor of mouth +C0153369|T191|PS|C04.0|ICD10|Anterior floor of mouth|Anterior floor of mouth +C0153369|T191|PX|C04.0|ICD10|Malignant neoplasm of anterior floor of mouth|Malignant neoplasm of anterior floor of mouth +C0153369|T191|PT|C04.0|ICD10CM|Malignant neoplasm of anterior floor of mouth|Malignant neoplasm of anterior floor of mouth +C0153369|T191|AB|C04.0|ICD10CM|Malignant neoplasm of anterior floor of mouth|Malignant neoplasm of anterior floor of mouth +C2833836|T191|ET|C04.0|ICD10CM|Malignant neoplasm of anterior to the premolar-canine junction|Malignant neoplasm of anterior to the premolar-canine junction +C0496758|T191|PS|C04.1|ICD10|Lateral floor of mouth|Lateral floor of mouth +C0496758|T191|PX|C04.1|ICD10|Malignant neoplasm of lateral floor of mouth|Malignant neoplasm of lateral floor of mouth +C0496758|T191|PT|C04.1|ICD10CM|Malignant neoplasm of lateral floor of mouth|Malignant neoplasm of lateral floor of mouth +C0496758|T191|AB|C04.1|ICD10CM|Malignant neoplasm of lateral floor of mouth|Malignant neoplasm of lateral floor of mouth +C0349046|T191|AB|C04.8|ICD10CM|Malignant neoplasm of overlapping sites of floor of mouth|Malignant neoplasm of overlapping sites of floor of mouth +C0349046|T191|PT|C04.8|ICD10CM|Malignant neoplasm of overlapping sites of floor of mouth|Malignant neoplasm of overlapping sites of floor of mouth +C0349046|T191|PX|C04.8|ICD10|Malignant neoplasm overlapping floor of mouth site|Malignant neoplasm overlapping floor of mouth site +C0349046|T191|PS|C04.8|ICD10|Overlapping lesion of floor of mouth|Overlapping lesion of floor of mouth +C0153368|T191|PS|C04.9|ICD10|Floor of mouth, unspecified|Floor of mouth, unspecified +C0153368|T191|PX|C04.9|ICD10|Malignant neoplasm of floor of mouth, unspecified|Malignant neoplasm of floor of mouth, unspecified +C0153368|T191|PT|C04.9|ICD10CM|Malignant neoplasm of floor of mouth, unspecified|Malignant neoplasm of floor of mouth, unspecified +C0153368|T191|AB|C04.9|ICD10CM|Malignant neoplasm of floor of mouth, unspecified|Malignant neoplasm of floor of mouth, unspecified +C0153378|T191|AB|C05|ICD10CM|Malignant neoplasm of palate|Malignant neoplasm of palate +C0153378|T191|HT|C05|ICD10CM|Malignant neoplasm of palate|Malignant neoplasm of palate +C0153378|T191|HT|C05|ICD10|Malignant neoplasm of palate|Malignant neoplasm of palate +C0153375|T191|PS|C05.0|ICD10|Hard palate|Hard palate +C0153375|T191|PX|C05.0|ICD10|Malignant neoplasm of hard palate|Malignant neoplasm of hard palate +C0153375|T191|PT|C05.0|ICD10CM|Malignant neoplasm of hard palate|Malignant neoplasm of hard palate +C0153375|T191|AB|C05.0|ICD10CM|Malignant neoplasm of hard palate|Malignant neoplasm of hard palate +C0153376|T191|PT|C05.1|ICD10CM|Malignant neoplasm of soft palate|Malignant neoplasm of soft palate +C0153376|T191|AB|C05.1|ICD10CM|Malignant neoplasm of soft palate|Malignant neoplasm of soft palate +C0153376|T191|PX|C05.1|ICD10|Malignant neoplasm of soft palate|Malignant neoplasm of soft palate +C0153376|T191|PS|C05.1|ICD10|Soft palate|Soft palate +C0153377|T191|PX|C05.2|ICD10|Malignant neoplasm of uvula|Malignant neoplasm of uvula +C0153377|T191|PT|C05.2|ICD10CM|Malignant neoplasm of uvula|Malignant neoplasm of uvula +C0153377|T191|AB|C05.2|ICD10CM|Malignant neoplasm of uvula|Malignant neoplasm of uvula +C0153377|T191|PS|C05.2|ICD10|Uvula|Uvula +C0496760|T191|AB|C05.8|ICD10CM|Malignant neoplasm of overlapping sites of palate|Malignant neoplasm of overlapping sites of palate +C0496760|T191|PT|C05.8|ICD10CM|Malignant neoplasm of overlapping sites of palate|Malignant neoplasm of overlapping sites of palate +C0496760|T191|PX|C05.8|ICD10|Malignant neoplasm overlapping palate site|Malignant neoplasm overlapping palate site +C0496760|T191|PS|C05.8|ICD10|Overlapping lesion of palate|Overlapping lesion of palate +C0153378|T191|PX|C05.9|ICD10|Malignant neoplasm of palate, unspecified|Malignant neoplasm of palate, unspecified +C0153378|T191|PT|C05.9|ICD10CM|Malignant neoplasm of palate, unspecified|Malignant neoplasm of palate, unspecified +C0153378|T191|AB|C05.9|ICD10CM|Malignant neoplasm of palate, unspecified|Malignant neoplasm of palate, unspecified +C0153378|T191|ET|C05.9|ICD10CM|Malignant neoplasm of roof of mouth|Malignant neoplasm of roof of mouth +C0153378|T191|PS|C05.9|ICD10|Palate, unspecified|Palate, unspecified +C0153372|T191|HT|C06|ICD10|Malignant neoplasm of other and unspecified parts of mouth|Malignant neoplasm of other and unspecified parts of mouth +C0153372|T191|HT|C06|ICD10CM|Malignant neoplasm of other and unspecified parts of mouth|Malignant neoplasm of other and unspecified parts of mouth +C0153372|T191|AB|C06|ICD10CM|Malignant neoplasm of other and unspecified parts of mouth|Malignant neoplasm of other and unspecified parts of mouth +C0153373|T191|PS|C06.0|ICD10|Cheek mucosa|Cheek mucosa +C0153373|T191|ET|C06.0|ICD10CM|Malignant neoplasm of buccal mucosa NOS|Malignant neoplasm of buccal mucosa NOS +C0153373|T191|PT|C06.0|ICD10CM|Malignant neoplasm of cheek mucosa|Malignant neoplasm of cheek mucosa +C0153373|T191|AB|C06.0|ICD10CM|Malignant neoplasm of cheek mucosa|Malignant neoplasm of cheek mucosa +C0153373|T191|PX|C06.0|ICD10|Malignant neoplasm of cheek mucosa|Malignant neoplasm of cheek mucosa +C2833837|T191|ET|C06.0|ICD10CM|Malignant neoplasm of internal cheek|Malignant neoplasm of internal cheek +C2833838|T191|ET|C06.1|ICD10CM|Malignant neoplasm of buccal sulcus (upper) (lower)|Malignant neoplasm of buccal sulcus (upper) (lower) +C2833839|T191|ET|C06.1|ICD10CM|Malignant neoplasm of labial sulcus (upper) (lower)|Malignant neoplasm of labial sulcus (upper) (lower) +C0153374|T191|PX|C06.1|ICD10|Malignant neoplasm of vestibule of mouth|Malignant neoplasm of vestibule of mouth +C0153374|T191|PT|C06.1|ICD10CM|Malignant neoplasm of vestibule of mouth|Malignant neoplasm of vestibule of mouth +C0153374|T191|AB|C06.1|ICD10CM|Malignant neoplasm of vestibule of mouth|Malignant neoplasm of vestibule of mouth +C0153374|T191|PS|C06.1|ICD10|Vestibule of mouth|Vestibule of mouth +C0153379|T191|PX|C06.2|ICD10|Malignant neoplasm of retromolar area|Malignant neoplasm of retromolar area +C0153379|T191|PT|C06.2|ICD10CM|Malignant neoplasm of retromolar area|Malignant neoplasm of retromolar area +C0153379|T191|AB|C06.2|ICD10CM|Malignant neoplasm of retromolar area|Malignant neoplasm of retromolar area +C0153379|T191|PS|C06.2|ICD10|Retromolar area|Retromolar area +C2833841|T191|HT|C06.8|ICD10CM|Malignant neoplasm of overlapping sites of other and unspecified parts of mouth|Malignant neoplasm of overlapping sites of other and unspecified parts of mouth +C2833841|T191|AB|C06.8|ICD10CM|Malignant neoplasm of ovrlp sites of and unsp parts of mouth|Malignant neoplasm of ovrlp sites of and unsp parts of mouth +C0496761|T191|PX|C06.8|ICD10|Malignant neoplasm overlapping other and unspecified mouth sites|Malignant neoplasm overlapping other and unspecified mouth sites +C0496761|T191|PS|C06.8|ICD10|Overlapping lesion of other and unspecified parts of mouth|Overlapping lesion of other and unspecified parts of mouth +C2833841|T191|PT|C06.80|ICD10CM|Malignant neoplasm of overlapping sites of unspecified parts of mouth|Malignant neoplasm of overlapping sites of unspecified parts of mouth +C2833841|T191|AB|C06.80|ICD10CM|Malignant neoplasm of ovrlp sites of unsp parts of mouth|Malignant neoplasm of ovrlp sites of unsp parts of mouth +C2833842|T191|ET|C06.89|ICD10CM|'book leaf' neoplasm [ventral surface of tongue and floor of mouth]|'book leaf' neoplasm [ventral surface of tongue and floor of mouth] +C2833843|T191|AB|C06.89|ICD10CM|Malignant neoplasm of overlapping sites of oth prt mouth|Malignant neoplasm of overlapping sites of oth prt mouth +C2833843|T191|PT|C06.89|ICD10CM|Malignant neoplasm of overlapping sites of other parts of mouth|Malignant neoplasm of overlapping sites of other parts of mouth +C0864852|T191|ET|C06.9|ICD10CM|Malignant neoplasm of minor salivary gland, unspecified site|Malignant neoplasm of minor salivary gland, unspecified site +C0153381|T191|PX|C06.9|ICD10|Malignant neoplasm of mouth, unspecified|Malignant neoplasm of mouth, unspecified +C0153381|T191|PT|C06.9|ICD10CM|Malignant neoplasm of mouth, unspecified|Malignant neoplasm of mouth, unspecified +C0153381|T191|AB|C06.9|ICD10CM|Malignant neoplasm of mouth, unspecified|Malignant neoplasm of mouth, unspecified +C0153381|T191|ET|C06.9|ICD10CM|Malignant neoplasm of oral cavity NOS|Malignant neoplasm of oral cavity NOS +C0153381|T191|PS|C06.9|ICD10|Mouth, unspecified|Mouth, unspecified +C0747273|T191|PT|C07|ICD10CM|Malignant neoplasm of parotid gland|Malignant neoplasm of parotid gland +C0747273|T191|AB|C07|ICD10CM|Malignant neoplasm of parotid gland|Malignant neoplasm of parotid gland +C0747273|T191|PT|C07|ICD10|Malignant neoplasm of parotid gland|Malignant neoplasm of parotid gland +C0153362|T191|AB|C08|ICD10CM|Malignant neoplasm of other and unsp major salivary glands|Malignant neoplasm of other and unsp major salivary glands +C0153362|T191|HT|C08|ICD10CM|Malignant neoplasm of other and unspecified major salivary glands|Malignant neoplasm of other and unspecified major salivary glands +C0153362|T191|HT|C08|ICD10|Malignant neoplasm of other and unspecified major salivary glands|Malignant neoplasm of other and unspecified major salivary glands +C4290059|T191|ET|C08|ICD10CM|malignant neoplasm of salivary ducts|malignant neoplasm of salivary ducts +C0153360|T191|PX|C08.0|ICD10|Malignant neoplasm of submandibular gland|Malignant neoplasm of submandibular gland +C0153360|T191|PT|C08.0|ICD10CM|Malignant neoplasm of submandibular gland|Malignant neoplasm of submandibular gland +C0153360|T191|AB|C08.0|ICD10CM|Malignant neoplasm of submandibular gland|Malignant neoplasm of submandibular gland +C0153360|T191|ET|C08.0|ICD10CM|Malignant neoplasm of submaxillary gland|Malignant neoplasm of submaxillary gland +C0153360|T191|PS|C08.0|ICD10|Submandibular gland|Submandibular gland +C0153361|T191|PX|C08.1|ICD10|Malignant neoplasm of sublingual gland|Malignant neoplasm of sublingual gland +C0153361|T191|PT|C08.1|ICD10CM|Malignant neoplasm of sublingual gland|Malignant neoplasm of sublingual gland +C0153361|T191|AB|C08.1|ICD10CM|Malignant neoplasm of sublingual gland|Malignant neoplasm of sublingual gland +C0153361|T191|PS|C08.1|ICD10|Sublingual gland|Sublingual gland +C0349047|T191|PX|C08.8|ICD10|Malignant neoplasm overlapping major salivary gland site|Malignant neoplasm overlapping major salivary gland site +C0349047|T191|PS|C08.8|ICD10|Overlapping lesion of major salivary glands|Overlapping lesion of major salivary glands +C0496763|T191|PS|C08.9|ICD10|Major salivary gland, unspecified|Major salivary gland, unspecified +C0496763|T191|PX|C08.9|ICD10|Malignant neoplasm of major salivary gland, unspecified|Malignant neoplasm of major salivary gland, unspecified +C0496763|T191|PT|C08.9|ICD10CM|Malignant neoplasm of major salivary gland, unspecified|Malignant neoplasm of major salivary gland, unspecified +C0496763|T191|AB|C08.9|ICD10CM|Malignant neoplasm of major salivary gland, unspecified|Malignant neoplasm of major salivary gland, unspecified +C0496763|T191|ET|C08.9|ICD10CM|Malignant neoplasm of salivary gland (major) NOS|Malignant neoplasm of salivary gland (major) NOS +C0751560|T191|HT|C09|ICD10CM|Malignant neoplasm of tonsil|Malignant neoplasm of tonsil +C0751560|T191|AB|C09|ICD10CM|Malignant neoplasm of tonsil|Malignant neoplasm of tonsil +C0751560|T191|HT|C09|ICD10|Malignant neoplasm of tonsil|Malignant neoplasm of tonsil +C0153384|T191|PX|C09.0|ICD10|Malignant neoplasm of tonsillar fossa|Malignant neoplasm of tonsillar fossa +C0153384|T191|PT|C09.0|ICD10CM|Malignant neoplasm of tonsillar fossa|Malignant neoplasm of tonsillar fossa +C0153384|T191|AB|C09.0|ICD10CM|Malignant neoplasm of tonsillar fossa|Malignant neoplasm of tonsillar fossa +C0153384|T191|PS|C09.0|ICD10|Tonsillar fossa|Tonsillar fossa +C0153385|T191|AB|C09.1|ICD10CM|Malig neoplasm of tonsillar pillar (anterior) (posterior)|Malig neoplasm of tonsillar pillar (anterior) (posterior) +C0153385|T191|PT|C09.1|ICD10CM|Malignant neoplasm of tonsillar pillar (anterior) (posterior)|Malignant neoplasm of tonsillar pillar (anterior) (posterior) +C0153385|T191|PX|C09.1|ICD10|Malignant neoplasm of tonsillar pillar (anterior) (posterior)|Malignant neoplasm of tonsillar pillar (anterior) (posterior) +C0153385|T191|PS|C09.1|ICD10|Tonsillar pillar (anterior) (posterior)|Tonsillar pillar (anterior) (posterior) +C1264197|T191|AB|C09.8|ICD10CM|Malignant neoplasm of overlapping sites of tonsil|Malignant neoplasm of overlapping sites of tonsil +C1264197|T191|PT|C09.8|ICD10CM|Malignant neoplasm of overlapping sites of tonsil|Malignant neoplasm of overlapping sites of tonsil +C1264197|T191|PX|C09.8|ICD10|Malignant neoplasm overlapping tonsil site|Malignant neoplasm overlapping tonsil site +C1264197|T191|PS|C09.8|ICD10|Overlapping lesion of tonsil|Overlapping lesion of tonsil +C0751560|T191|ET|C09.9|ICD10CM|Malignant neoplasm of faucial tonsils|Malignant neoplasm of faucial tonsils +C0751560|T191|ET|C09.9|ICD10CM|Malignant neoplasm of palatine tonsils|Malignant neoplasm of palatine tonsils +C0751560|T191|ET|C09.9|ICD10CM|Malignant neoplasm of tonsil NOS|Malignant neoplasm of tonsil NOS +C0751560|T191|PT|C09.9|ICD10CM|Malignant neoplasm of tonsil, unspecified|Malignant neoplasm of tonsil, unspecified +C0751560|T191|AB|C09.9|ICD10CM|Malignant neoplasm of tonsil, unspecified|Malignant neoplasm of tonsil, unspecified +C0751560|T191|PX|C09.9|ICD10|Malignant neoplasm of tonsil, unspecified|Malignant neoplasm of tonsil, unspecified +C0751560|T191|PS|C09.9|ICD10|Tonsil, unspecified|Tonsil, unspecified +C0153382|T191|HT|C10|ICD10|Malignant neoplasm of oropharynx|Malignant neoplasm of oropharynx +C0153382|T191|HT|C10|ICD10CM|Malignant neoplasm of oropharynx|Malignant neoplasm of oropharynx +C0153382|T191|AB|C10|ICD10CM|Malignant neoplasm of oropharynx|Malignant neoplasm of oropharynx +C0153386|T191|PT|C10.0|ICD10CM|Malignant neoplasm of vallecula|Malignant neoplasm of vallecula +C0153386|T191|AB|C10.0|ICD10CM|Malignant neoplasm of vallecula|Malignant neoplasm of vallecula +C0153386|T191|PX|C10.0|ICD10|Malignant neoplasm of vallecula|Malignant neoplasm of vallecula +C0153386|T191|PS|C10.0|ICD10|Vallecula|Vallecula +C0496765|T191|PS|C10.1|ICD10|Anterior surface of epiglottis|Anterior surface of epiglottis +C0496765|T191|PX|C10.1|ICD10|Malignant neoplasm of anterior surface of epiglottis|Malignant neoplasm of anterior surface of epiglottis +C0496765|T191|PT|C10.1|ICD10CM|Malignant neoplasm of anterior surface of epiglottis|Malignant neoplasm of anterior surface of epiglottis +C0496765|T191|AB|C10.1|ICD10CM|Malignant neoplasm of anterior surface of epiglottis|Malignant neoplasm of anterior surface of epiglottis +C2833846|T191|ET|C10.1|ICD10CM|Malignant neoplasm of epiglottis, free border [margin]|Malignant neoplasm of epiglottis, free border [margin] +C0346590|T191|ET|C10.1|ICD10CM|Malignant neoplasm of glossoepiglottic fold(s)|Malignant neoplasm of glossoepiglottic fold(s) +C0153389|T191|PS|C10.2|ICD10|Lateral wall of oropharynx|Lateral wall of oropharynx +C0153389|T191|PX|C10.2|ICD10|Malignant neoplasm of lateral wall of oropharynx|Malignant neoplasm of lateral wall of oropharynx +C0153389|T191|PT|C10.2|ICD10CM|Malignant neoplasm of lateral wall of oropharynx|Malignant neoplasm of lateral wall of oropharynx +C0153389|T191|AB|C10.2|ICD10CM|Malignant neoplasm of lateral wall of oropharynx|Malignant neoplasm of lateral wall of oropharynx +C0153390|T191|PT|C10.3|ICD10CM|Malignant neoplasm of posterior wall of oropharynx|Malignant neoplasm of posterior wall of oropharynx +C0153390|T191|AB|C10.3|ICD10CM|Malignant neoplasm of posterior wall of oropharynx|Malignant neoplasm of posterior wall of oropharynx +C0153390|T191|PX|C10.3|ICD10|Malignant neoplasm of posterior wall of oropharynx|Malignant neoplasm of posterior wall of oropharynx +C0153390|T191|PS|C10.3|ICD10|Posterior wall of oropharynx|Posterior wall of oropharynx +C0496766|T191|PS|C10.4|ICD10|Branchial cleft|Branchial cleft +C0496766|T191|PX|C10.4|ICD10|Malignant neoplasm of branchial cleft|Malignant neoplasm of branchial cleft +C0496766|T191|PT|C10.4|ICD10CM|Malignant neoplasm of branchial cleft|Malignant neoplasm of branchial cleft +C0496766|T191|AB|C10.4|ICD10CM|Malignant neoplasm of branchial cleft|Malignant neoplasm of branchial cleft +C2833847|T191|ET|C10.4|ICD10CM|Malignant neoplasm of branchial cyst [site of neoplasm]|Malignant neoplasm of branchial cyst [site of neoplasm] +C0153388|T191|ET|C10.8|ICD10CM|Malignant neoplasm of junctional region of oropharynx|Malignant neoplasm of junctional region of oropharynx +C0496767|T191|AB|C10.8|ICD10CM|Malignant neoplasm of overlapping sites of oropharynx|Malignant neoplasm of overlapping sites of oropharynx +C0496767|T191|PT|C10.8|ICD10CM|Malignant neoplasm of overlapping sites of oropharynx|Malignant neoplasm of overlapping sites of oropharynx +C0496767|T191|PX|C10.8|ICD10|Malignant neoplasm overlapping oropharynx site|Malignant neoplasm overlapping oropharynx site +C0496767|T191|PS|C10.8|ICD10|Overlapping lesion of oropharynx|Overlapping lesion of oropharynx +C0153382|T191|PT|C10.9|ICD10CM|Malignant neoplasm of oropharynx, unspecified|Malignant neoplasm of oropharynx, unspecified +C0153382|T191|AB|C10.9|ICD10CM|Malignant neoplasm of oropharynx, unspecified|Malignant neoplasm of oropharynx, unspecified +C0153382|T191|PX|C10.9|ICD10|Malignant neoplasm of oropharynx, unspecified|Malignant neoplasm of oropharynx, unspecified +C0153382|T191|PS|C10.9|ICD10|Oropharynx, unspecified|Oropharynx, unspecified +C0153392|T191|HT|C11|ICD10|Malignant neoplasm of nasopharynx|Malignant neoplasm of nasopharynx +C0153392|T191|HT|C11|ICD10CM|Malignant neoplasm of nasopharynx|Malignant neoplasm of nasopharynx +C0153392|T191|AB|C11|ICD10CM|Malignant neoplasm of nasopharynx|Malignant neoplasm of nasopharynx +C0153393|T191|ET|C11.0|ICD10CM|Malignant neoplasm of roof of nasopharynx|Malignant neoplasm of roof of nasopharynx +C0153393|T191|PT|C11.0|ICD10CM|Malignant neoplasm of superior wall of nasopharynx|Malignant neoplasm of superior wall of nasopharynx +C0153393|T191|AB|C11.0|ICD10CM|Malignant neoplasm of superior wall of nasopharynx|Malignant neoplasm of superior wall of nasopharynx +C0153393|T191|PX|C11.0|ICD10|Malignant neoplasm of superior wall of nasopharynx|Malignant neoplasm of superior wall of nasopharynx +C0153393|T191|PS|C11.0|ICD10|Superior wall of nasopharynx|Superior wall of nasopharynx +C0345653|T191|ET|C11.1|ICD10CM|Malignant neoplasm of adenoid|Malignant neoplasm of adenoid +C0345653|T191|ET|C11.1|ICD10CM|Malignant neoplasm of pharyngeal tonsil|Malignant neoplasm of pharyngeal tonsil +C0153394|T191|PX|C11.1|ICD10|Malignant neoplasm of posterior wall of nasopharynx|Malignant neoplasm of posterior wall of nasopharynx +C0153394|T191|PT|C11.1|ICD10CM|Malignant neoplasm of posterior wall of nasopharynx|Malignant neoplasm of posterior wall of nasopharynx +C0153394|T191|AB|C11.1|ICD10CM|Malignant neoplasm of posterior wall of nasopharynx|Malignant neoplasm of posterior wall of nasopharynx +C0153394|T191|PS|C11.1|ICD10|Posterior wall of nasopharynx|Posterior wall of nasopharynx +C0153395|T191|PS|C11.2|ICD10|Lateral wall of nasopharynx|Lateral wall of nasopharynx +C0345656|T191|ET|C11.2|ICD10CM|Malignant neoplasm of fossa of Rosenmüller|Malignant neoplasm of fossa of Rosenmüller +C0153395|T191|PX|C11.2|ICD10|Malignant neoplasm of lateral wall of nasopharynx|Malignant neoplasm of lateral wall of nasopharynx +C0153395|T191|PT|C11.2|ICD10CM|Malignant neoplasm of lateral wall of nasopharynx|Malignant neoplasm of lateral wall of nasopharynx +C0153395|T191|AB|C11.2|ICD10CM|Malignant neoplasm of lateral wall of nasopharynx|Malignant neoplasm of lateral wall of nasopharynx +C0345658|T191|ET|C11.2|ICD10CM|Malignant neoplasm of opening of auditory tube|Malignant neoplasm of opening of auditory tube +C0345656|T191|ET|C11.2|ICD10CM|Malignant neoplasm of pharyngeal recess|Malignant neoplasm of pharyngeal recess +C0153396|T191|PS|C11.3|ICD10|Anterior wall of nasopharynx|Anterior wall of nasopharynx +C0153396|T191|PX|C11.3|ICD10|Malignant neoplasm of anterior wall of nasopharynx|Malignant neoplasm of anterior wall of nasopharynx +C0153396|T191|PT|C11.3|ICD10CM|Malignant neoplasm of anterior wall of nasopharynx|Malignant neoplasm of anterior wall of nasopharynx +C0153396|T191|AB|C11.3|ICD10CM|Malignant neoplasm of anterior wall of nasopharynx|Malignant neoplasm of anterior wall of nasopharynx +C0346577|T191|ET|C11.3|ICD10CM|Malignant neoplasm of floor of nasopharynx|Malignant neoplasm of floor of nasopharynx +C2833848|T191|ET|C11.3|ICD10CM|Malignant neoplasm of nasopharyngeal (anterior) (posterior) surface of soft palate|Malignant neoplasm of nasopharyngeal (anterior) (posterior) surface of soft palate +C2833849|T191|ET|C11.3|ICD10CM|Malignant neoplasm of posterior margin of nasal choana|Malignant neoplasm of posterior margin of nasal choana +C2833850|T191|ET|C11.3|ICD10CM|Malignant neoplasm of posterior margin of nasal septum|Malignant neoplasm of posterior margin of nasal septum +C0349038|T191|AB|C11.8|ICD10CM|Malignant neoplasm of overlapping sites of nasopharynx|Malignant neoplasm of overlapping sites of nasopharynx +C0349038|T191|PT|C11.8|ICD10CM|Malignant neoplasm of overlapping sites of nasopharynx|Malignant neoplasm of overlapping sites of nasopharynx +C0349038|T191|PX|C11.8|ICD10|Malignant neoplasm overlapping nasopharynx site|Malignant neoplasm overlapping nasopharynx site +C0349038|T191|PS|C11.8|ICD10|Overlapping lesion of nasopharynx|Overlapping lesion of nasopharynx +C3665551|T191|ET|C11.9|ICD10CM|Malignant neoplasm of nasopharyngeal wall NOS|Malignant neoplasm of nasopharyngeal wall NOS +C0153392|T191|PX|C11.9|ICD10|Malignant neoplasm of nasopharynx, unspecified|Malignant neoplasm of nasopharynx, unspecified +C0153392|T191|PT|C11.9|ICD10CM|Malignant neoplasm of nasopharynx, unspecified|Malignant neoplasm of nasopharynx, unspecified +C0153392|T191|AB|C11.9|ICD10CM|Malignant neoplasm of nasopharynx, unspecified|Malignant neoplasm of nasopharynx, unspecified +C0153392|T191|PS|C11.9|ICD10|Nasopharynx, unspecified|Nasopharynx, unspecified +C0153400|T191|ET|C12|ICD10CM|Malignant neoplasm of pyriform fossa|Malignant neoplasm of pyriform fossa +C0153400|T191|PT|C12|ICD10CM|Malignant neoplasm of pyriform sinus|Malignant neoplasm of pyriform sinus +C0153400|T191|AB|C12|ICD10CM|Malignant neoplasm of pyriform sinus|Malignant neoplasm of pyriform sinus +C0153400|T191|PT|C12|ICD10|Malignant neoplasm of pyriform sinus|Malignant neoplasm of pyriform sinus +C0153398|T191|HT|C13|ICD10|Malignant neoplasm of hypopharynx|Malignant neoplasm of hypopharynx +C0153398|T191|HT|C13|ICD10CM|Malignant neoplasm of hypopharynx|Malignant neoplasm of hypopharynx +C0153398|T191|AB|C13|ICD10CM|Malignant neoplasm of hypopharynx|Malignant neoplasm of hypopharynx +C0496769|T191|PX|C13.0|ICD10|Malignant neoplasm of postcricoid region|Malignant neoplasm of postcricoid region +C0496769|T191|PT|C13.0|ICD10CM|Malignant neoplasm of postcricoid region|Malignant neoplasm of postcricoid region +C0496769|T191|AB|C13.0|ICD10CM|Malignant neoplasm of postcricoid region|Malignant neoplasm of postcricoid region +C0496769|T191|PS|C13.0|ICD10|Postcricoid region|Postcricoid region +C0153401|T191|PS|C13.1|ICD10|Aryepiglottic fold, hypopharyngeal aspect|Aryepiglottic fold, hypopharyngeal aspect +C0153401|T191|AB|C13.1|ICD10CM|Malig neoplasm of aryepiglottic fold, hypopharyngeal aspect|Malig neoplasm of aryepiglottic fold, hypopharyngeal aspect +C2837927|T191|ET|C13.1|ICD10CM|Malignant neoplasm of aryepiglottic fold NOS|Malignant neoplasm of aryepiglottic fold NOS +C0153401|T191|PT|C13.1|ICD10CM|Malignant neoplasm of aryepiglottic fold, hypopharyngeal aspect|Malignant neoplasm of aryepiglottic fold, hypopharyngeal aspect +C0153401|T191|PX|C13.1|ICD10|Malignant neoplasm of aryepiglottic fold, hypopharyngeal aspect|Malignant neoplasm of aryepiglottic fold, hypopharyngeal aspect +C2837928|T191|ET|C13.1|ICD10CM|Malignant neoplasm of aryepiglottic fold, marginal zone|Malignant neoplasm of aryepiglottic fold, marginal zone +C2837929|T191|ET|C13.1|ICD10CM|Malignant neoplasm of interarytenoid fold NOS|Malignant neoplasm of interarytenoid fold NOS +C2837930|T191|ET|C13.1|ICD10CM|Malignant neoplasm of interarytenoid fold, marginal zone|Malignant neoplasm of interarytenoid fold, marginal zone +C0496770|T191|PT|C13.2|ICD10CM|Malignant neoplasm of posterior wall of hypopharynx|Malignant neoplasm of posterior wall of hypopharynx +C0496770|T191|AB|C13.2|ICD10CM|Malignant neoplasm of posterior wall of hypopharynx|Malignant neoplasm of posterior wall of hypopharynx +C0496770|T191|PX|C13.2|ICD10|Malignant neoplasm of posterior wall of hypopharynx|Malignant neoplasm of posterior wall of hypopharynx +C0496770|T191|PS|C13.2|ICD10|Posterior wall of hypopharynx|Posterior wall of hypopharynx +C0349039|T191|AB|C13.8|ICD10CM|Malignant neoplasm of overlapping sites of hypopharynx|Malignant neoplasm of overlapping sites of hypopharynx +C0349039|T191|PT|C13.8|ICD10CM|Malignant neoplasm of overlapping sites of hypopharynx|Malignant neoplasm of overlapping sites of hypopharynx +C0349039|T191|PX|C13.8|ICD10|Malignant neoplasm overlapping hypopharynx site|Malignant neoplasm overlapping hypopharynx site +C0349039|T191|PS|C13.8|ICD10|Overlapping lesion of hypopharynx|Overlapping lesion of hypopharynx +C0153398|T191|PS|C13.9|ICD10|Hypopharynx, unspecified|Hypopharynx, unspecified +C0864862|T191|ET|C13.9|ICD10CM|Malignant neoplasm of hypopharyngeal wall NOS|Malignant neoplasm of hypopharyngeal wall NOS +C0153398|T191|PX|C13.9|ICD10|Malignant neoplasm of hypopharynx, unspecified|Malignant neoplasm of hypopharynx, unspecified +C0153398|T191|PT|C13.9|ICD10CM|Malignant neoplasm of hypopharynx, unspecified|Malignant neoplasm of hypopharynx, unspecified +C0153398|T191|AB|C13.9|ICD10CM|Malignant neoplasm of hypopharynx, unspecified|Malignant neoplasm of hypopharynx, unspecified +C0153404|T191|AB|C14|ICD10CM|Malig neoplasm of sites in the lip, oral cavity and pharynx|Malig neoplasm of sites in the lip, oral cavity and pharynx +C0153404|T191|HT|C14|ICD10CM|Malignant neoplasm of other and ill-defined sites in the lip, oral cavity and pharynx|Malignant neoplasm of other and ill-defined sites in the lip, oral cavity and pharynx +C0153404|T191|HT|C14|ICD10|Malignant neoplasm of other and ill-defined sites in the lip, oral cavity and pharynx|Malignant neoplasm of other and ill-defined sites in the lip, oral cavity and pharynx +C0153405|T191|PX|C14.0|ICD10|Malignant neoplasm of pharynx, unspecified|Malignant neoplasm of pharynx, unspecified +C0153405|T191|PT|C14.0|ICD10CM|Malignant neoplasm of pharynx, unspecified|Malignant neoplasm of pharynx, unspecified +C0153405|T191|AB|C14.0|ICD10CM|Malignant neoplasm of pharynx, unspecified|Malignant neoplasm of pharynx, unspecified +C0153405|T191|PS|C14.0|ICD10|Pharynx, unspecified|Pharynx, unspecified +C0153406|T191|PX|C14.2|ICD10|Malignant neoplasm of Waldeyer's ring|Malignant neoplasm of Waldeyer's ring +C0153406|T191|PT|C14.2|ICD10CM|Malignant neoplasm of Waldeyer's ring|Malignant neoplasm of Waldeyer's ring +C0153406|T191|AB|C14.2|ICD10CM|Malignant neoplasm of Waldeyer's ring|Malignant neoplasm of Waldeyer's ring +C0153406|T191|PS|C14.2|ICD10|Waldeyer's ring|Waldeyer's ring +C0496772|T191|AB|C14.8|ICD10CM|Malig neoplm of ovrlp sites of lip, oral cavity and pharynx|Malig neoplm of ovrlp sites of lip, oral cavity and pharynx +C0496772|T191|PT|C14.8|ICD10CM|Malignant neoplasm of overlapping sites of lip, oral cavity and pharynx|Malignant neoplasm of overlapping sites of lip, oral cavity and pharynx +C0496772|T191|PX|C14.8|ICD10|Malignant neoplasm overlapping lip, oral cavity and pharynx sites|Malignant neoplasm overlapping lip, oral cavity and pharynx sites +C0496772|T191|PS|C14.8|ICD10|Overlapping lesion of lip, oral cavity and pharynx|Overlapping lesion of lip, oral cavity and pharynx +C2837931|T191|ET|C14.8|ICD10CM|Primary malignant neoplasm of two or more contiguous sites of lip, oral cavity and pharynx|Primary malignant neoplasm of two or more contiguous sites of lip, oral cavity and pharynx +C0546837|T191|HT|C15|ICD10AE|Malignant neoplasm of esophagus|Malignant neoplasm of esophagus +C0546837|T191|HT|C15|ICD10CM|Malignant neoplasm of esophagus|Malignant neoplasm of esophagus +C0546837|T191|AB|C15|ICD10CM|Malignant neoplasm of esophagus|Malignant neoplasm of esophagus +C0546837|T191|HT|C15|ICD10|Malignant neoplasm of oesophagus|Malignant neoplasm of oesophagus +C0346617|T191|HT|C15-C26|ICD10CM|Malignant neoplasms of digestive organs (C15-C26)|Malignant neoplasms of digestive organs (C15-C26) +C0346617|T191|HT|C15-C26.9|ICD10|Malignant neoplasms of digestive organs|Malignant neoplasms of digestive organs +C0496773|T191|PS|C15.0|ICD10AE|Cervical part of esophagus|Cervical part of esophagus +C0496773|T191|PS|C15.0|ICD10|Cervical part of oesophagus|Cervical part of oesophagus +C0496773|T191|PX|C15.0|ICD10AE|Malignant neoplasm of cervical part of esophagus|Malignant neoplasm of cervical part of esophagus +C0496773|T191|PX|C15.0|ICD10|Malignant neoplasm of cervical part of oesophagus|Malignant neoplasm of cervical part of oesophagus +C0153411|T191|PX|C15.1|ICD10AE|Malignant neoplasm of thoracic part of esophagus|Malignant neoplasm of thoracic part of esophagus +C0153411|T191|PX|C15.1|ICD10|Malignant neoplasm of thoracic part of oesophagus|Malignant neoplasm of thoracic part of oesophagus +C0153411|T191|PS|C15.1|ICD10AE|Thoracic part of esophagus|Thoracic part of esophagus +C0153411|T191|PS|C15.1|ICD10|Thoracic part of oesophagus|Thoracic part of oesophagus +C0496775|T191|PS|C15.2|ICD10AE|Abdominal part of esophagus|Abdominal part of esophagus +C0496775|T191|PS|C15.2|ICD10|Abdominal part of oesophagus|Abdominal part of oesophagus +C0496775|T191|PX|C15.2|ICD10AE|Malignant neoplasm of abdominal part of esophagus|Malignant neoplasm of abdominal part of esophagus +C0496775|T191|PX|C15.2|ICD10|Malignant neoplasm of abdominal part of oesophagus|Malignant neoplasm of abdominal part of oesophagus +C0153413|T191|PX|C15.3|ICD10AE|Malignant neoplasm of upper third of esophagus|Malignant neoplasm of upper third of esophagus +C0153413|T191|PT|C15.3|ICD10CM|Malignant neoplasm of upper third of esophagus|Malignant neoplasm of upper third of esophagus +C0153413|T191|AB|C15.3|ICD10CM|Malignant neoplasm of upper third of esophagus|Malignant neoplasm of upper third of esophagus +C0153413|T191|PX|C15.3|ICD10|Malignant neoplasm of upper third of oesophagus|Malignant neoplasm of upper third of oesophagus +C0153413|T191|PS|C15.3|ICD10AE|Upper third of esophagus|Upper third of esophagus +C0153413|T191|PS|C15.3|ICD10|Upper third of oesophagus|Upper third of oesophagus +C0153414|T191|PX|C15.4|ICD10AE|Malignant neoplasm of middle third of esophagus|Malignant neoplasm of middle third of esophagus +C0153414|T191|PT|C15.4|ICD10CM|Malignant neoplasm of middle third of esophagus|Malignant neoplasm of middle third of esophagus +C0153414|T191|AB|C15.4|ICD10CM|Malignant neoplasm of middle third of esophagus|Malignant neoplasm of middle third of esophagus +C0153414|T191|PX|C15.4|ICD10|Malignant neoplasm of middle third of oesophagus|Malignant neoplasm of middle third of oesophagus +C0153414|T191|PS|C15.4|ICD10AE|Middle third of esophagus|Middle third of esophagus +C0153414|T191|PS|C15.4|ICD10|Middle third of oesophagus|Middle third of oesophagus +C0153415|T191|PS|C15.5|ICD10AE|Lower third of esophagus|Lower third of esophagus +C0153415|T191|PS|C15.5|ICD10|Lower third of oesophagus|Lower third of oesophagus +C0153415|T191|PT|C15.5|ICD10CM|Malignant neoplasm of lower third of esophagus|Malignant neoplasm of lower third of esophagus +C0153415|T191|AB|C15.5|ICD10CM|Malignant neoplasm of lower third of esophagus|Malignant neoplasm of lower third of esophagus +C0153415|T191|PX|C15.5|ICD10AE|Malignant neoplasm of lower third of esophagus|Malignant neoplasm of lower third of esophagus +C0153415|T191|PX|C15.5|ICD10|Malignant neoplasm of lower third of oesophagus|Malignant neoplasm of lower third of oesophagus +C0496776|T191|AB|C15.8|ICD10CM|Malignant neoplasm of overlapping sites of esophagus|Malignant neoplasm of overlapping sites of esophagus +C0496776|T191|PT|C15.8|ICD10CM|Malignant neoplasm of overlapping sites of esophagus|Malignant neoplasm of overlapping sites of esophagus +C0496776|T191|PX|C15.8|ICD10AE|Malignant neoplasm overlapping esophagus site|Malignant neoplasm overlapping esophagus site +C0496776|T191|PX|C15.8|ICD10|Malignant neoplasm overlapping oesophagus site|Malignant neoplasm overlapping oesophagus site +C0496776|T191|PS|C15.8|ICD10AE|Overlapping lesion of esophagus|Overlapping lesion of esophagus +C0496776|T191|PS|C15.8|ICD10|Overlapping lesion of oesophagus|Overlapping lesion of oesophagus +C0546837|T191|PS|C15.9|ICD10AE|Esophagus, unspecified|Esophagus, unspecified +C0546837|T191|PX|C15.9|ICD10AE|Malignant neoplasm of esophagus, unspecified|Malignant neoplasm of esophagus, unspecified +C0546837|T191|PT|C15.9|ICD10CM|Malignant neoplasm of esophagus, unspecified|Malignant neoplasm of esophagus, unspecified +C0546837|T191|AB|C15.9|ICD10CM|Malignant neoplasm of esophagus, unspecified|Malignant neoplasm of esophagus, unspecified +C0546837|T191|PX|C15.9|ICD10|Malignant neoplasm of oesophagus, unspecified|Malignant neoplasm of oesophagus, unspecified +C0546837|T191|PS|C15.9|ICD10|Oesophagus, unspecified|Oesophagus, unspecified +C0024623|T191|HT|C16|ICD10CM|Malignant neoplasm of stomach|Malignant neoplasm of stomach +C0024623|T191|AB|C16|ICD10CM|Malignant neoplasm of stomach|Malignant neoplasm of stomach +C0024623|T191|HT|C16|ICD10|Malignant neoplasm of stomach|Malignant neoplasm of stomach +C0153417|T191|PS|C16.0|ICD10|Cardia|Cardia +C0153417|T191|PX|C16.0|ICD10|Malignant neoplasm of cardia|Malignant neoplasm of cardia +C0153417|T191|PT|C16.0|ICD10CM|Malignant neoplasm of cardia|Malignant neoplasm of cardia +C0153417|T191|AB|C16.0|ICD10CM|Malignant neoplasm of cardia|Malignant neoplasm of cardia +C0153417|T191|ET|C16.0|ICD10CM|Malignant neoplasm of cardiac orifice|Malignant neoplasm of cardiac orifice +C0153417|T191|ET|C16.0|ICD10CM|Malignant neoplasm of cardio-esophageal junction|Malignant neoplasm of cardio-esophageal junction +C2837932|T191|ET|C16.0|ICD10CM|Malignant neoplasm of esophagus and stomach|Malignant neoplasm of esophagus and stomach +C0346619|T191|ET|C16.0|ICD10CM|Malignant neoplasm of gastro-esophageal junction|Malignant neoplasm of gastro-esophageal junction +C0153420|T191|PS|C16.1|ICD10|Fundus of stomach|Fundus of stomach +C0153420|T191|PX|C16.1|ICD10|Malignant neoplasm of fundus of stomach|Malignant neoplasm of fundus of stomach +C0153420|T191|PT|C16.1|ICD10CM|Malignant neoplasm of fundus of stomach|Malignant neoplasm of fundus of stomach +C0153420|T191|AB|C16.1|ICD10CM|Malignant neoplasm of fundus of stomach|Malignant neoplasm of fundus of stomach +C0153421|T191|PS|C16.2|ICD10|Body of stomach|Body of stomach +C0153421|T191|PX|C16.2|ICD10|Malignant neoplasm of body of stomach|Malignant neoplasm of body of stomach +C0153421|T191|PT|C16.2|ICD10CM|Malignant neoplasm of body of stomach|Malignant neoplasm of body of stomach +C0153421|T191|AB|C16.2|ICD10CM|Malignant neoplasm of body of stomach|Malignant neoplasm of body of stomach +C2837933|T191|ET|C16.3|ICD10CM|Malignant neoplasm of gastric antrum|Malignant neoplasm of gastric antrum +C0153419|T191|PT|C16.3|ICD10CM|Malignant neoplasm of pyloric antrum|Malignant neoplasm of pyloric antrum +C0153419|T191|AB|C16.3|ICD10CM|Malignant neoplasm of pyloric antrum|Malignant neoplasm of pyloric antrum +C0153419|T191|PX|C16.3|ICD10|Malignant neoplasm of pyloric antrum|Malignant neoplasm of pyloric antrum +C0153419|T191|PS|C16.3|ICD10|Pyloric antrum|Pyloric antrum +C0153418|T191|ET|C16.4|ICD10CM|Malignant neoplasm of prepylorus|Malignant neoplasm of prepylorus +C0153418|T191|ET|C16.4|ICD10CM|Malignant neoplasm of pyloric canal|Malignant neoplasm of pyloric canal +C0153418|T191|PT|C16.4|ICD10CM|Malignant neoplasm of pylorus|Malignant neoplasm of pylorus +C0153418|T191|AB|C16.4|ICD10CM|Malignant neoplasm of pylorus|Malignant neoplasm of pylorus +C0153418|T191|PX|C16.4|ICD10|Malignant neoplasm of pylorus|Malignant neoplasm of pylorus +C0153418|T191|PS|C16.4|ICD10|Pylorus|Pylorus +C0153422|T191|PS|C16.5|ICD10|Lesser curvature of stomach, unspecified|Lesser curvature of stomach, unspecified +C2837934|T191|ET|C16.5|ICD10CM|Malignant neoplasm of lesser curvature of stomach, not classifiable to C16.1-C16.4|Malignant neoplasm of lesser curvature of stomach, not classifiable to C16.1-C16.4 +C0153422|T191|AB|C16.5|ICD10CM|Malignant neoplasm of lesser curvature of stomach, unsp|Malignant neoplasm of lesser curvature of stomach, unsp +C0153422|T191|PT|C16.5|ICD10CM|Malignant neoplasm of lesser curvature of stomach, unspecified|Malignant neoplasm of lesser curvature of stomach, unspecified +C0153422|T191|PX|C16.5|ICD10|Malignant neoplasm of lesser curvature of stomach, unspecified|Malignant neoplasm of lesser curvature of stomach, unspecified +C0153423|T191|PS|C16.6|ICD10|Greater curvature of stomach, unspecified|Greater curvature of stomach, unspecified +C2837935|T191|ET|C16.6|ICD10CM|Malignant neoplasm of greater curvature of stomach, not classifiable to C16.0-C16.4|Malignant neoplasm of greater curvature of stomach, not classifiable to C16.0-C16.4 +C0153423|T191|AB|C16.6|ICD10CM|Malignant neoplasm of greater curvature of stomach, unsp|Malignant neoplasm of greater curvature of stomach, unsp +C0153423|T191|PT|C16.6|ICD10CM|Malignant neoplasm of greater curvature of stomach, unspecified|Malignant neoplasm of greater curvature of stomach, unspecified +C0153423|T191|PX|C16.6|ICD10|Malignant neoplasm of greater curvature of stomach, unspecified|Malignant neoplasm of greater curvature of stomach, unspecified +C0349049|T191|AB|C16.8|ICD10CM|Malignant neoplasm of overlapping sites of stomach|Malignant neoplasm of overlapping sites of stomach +C0349049|T191|PT|C16.8|ICD10CM|Malignant neoplasm of overlapping sites of stomach|Malignant neoplasm of overlapping sites of stomach +C0349049|T191|PX|C16.8|ICD10|Malignant neoplasm overlapping stomach site|Malignant neoplasm overlapping stomach site +C0349049|T191|PS|C16.8|ICD10|Overlapping lesion of stomach|Overlapping lesion of stomach +C0024623|T191|ET|C16.9|ICD10CM|Gastric cancer NOS|Gastric cancer NOS +C0024623|T191|PT|C16.9|ICD10CM|Malignant neoplasm of stomach, unspecified|Malignant neoplasm of stomach, unspecified +C0024623|T191|AB|C16.9|ICD10CM|Malignant neoplasm of stomach, unspecified|Malignant neoplasm of stomach, unspecified +C0024623|T191|PX|C16.9|ICD10|Malignant neoplasm of stomach, unspecified|Malignant neoplasm of stomach, unspecified +C0024623|T191|PS|C16.9|ICD10|Stomach, unspecified|Stomach, unspecified +C0153425|T191|HT|C17|ICD10|Malignant neoplasm of small intestine|Malignant neoplasm of small intestine +C0153425|T191|AB|C17|ICD10CM|Malignant neoplasm of small intestine|Malignant neoplasm of small intestine +C0153425|T191|HT|C17|ICD10CM|Malignant neoplasm of small intestine|Malignant neoplasm of small intestine +C0153426|T191|PS|C17.0|ICD10|Duodenum|Duodenum +C0153426|T191|PX|C17.0|ICD10|Malignant neoplasm of duodenum|Malignant neoplasm of duodenum +C0153426|T191|PT|C17.0|ICD10CM|Malignant neoplasm of duodenum|Malignant neoplasm of duodenum +C0153426|T191|AB|C17.0|ICD10CM|Malignant neoplasm of duodenum|Malignant neoplasm of duodenum +C0153427|T191|PS|C17.1|ICD10|Jejunum|Jejunum +C0153427|T191|PX|C17.1|ICD10|Malignant neoplasm of jejunum|Malignant neoplasm of jejunum +C0153427|T191|PT|C17.1|ICD10CM|Malignant neoplasm of jejunum|Malignant neoplasm of jejunum +C0153427|T191|AB|C17.1|ICD10CM|Malignant neoplasm of jejunum|Malignant neoplasm of jejunum +C0153428|T191|PS|C17.2|ICD10|Ileum|Ileum +C0153428|T191|PX|C17.2|ICD10|Malignant neoplasm of ileum|Malignant neoplasm of ileum +C0153428|T191|PT|C17.2|ICD10CM|Malignant neoplasm of ileum|Malignant neoplasm of ileum +C0153428|T191|AB|C17.2|ICD10CM|Malignant neoplasm of ileum|Malignant neoplasm of ileum +C0153429|T191|PX|C17.3|ICD10|Malignant neoplasm of Meckel's diverticulum|Malignant neoplasm of Meckel's diverticulum +C0153429|T191|PS|C17.3|ICD10|Meckel's diverticulum|Meckel's diverticulum +C2979886|T191|AB|C17.3|ICD10CM|Meckel's diverticulum, malignant|Meckel's diverticulum, malignant +C2979886|T191|PT|C17.3|ICD10CM|Meckel's diverticulum, malignant|Meckel's diverticulum, malignant +C0349050|T191|AB|C17.8|ICD10CM|Malignant neoplasm of overlapping sites of small intestine|Malignant neoplasm of overlapping sites of small intestine +C0349050|T191|PT|C17.8|ICD10CM|Malignant neoplasm of overlapping sites of small intestine|Malignant neoplasm of overlapping sites of small intestine +C0349050|T191|PX|C17.8|ICD10|Malignant neoplasm overlapping small intestine site|Malignant neoplasm overlapping small intestine site +C0349050|T191|PS|C17.8|ICD10|Overlapping lesion of small intestine|Overlapping lesion of small intestine +C0153425|T191|PX|C17.9|ICD10|Malignant neoplasm of small intestine, unspecified|Malignant neoplasm of small intestine, unspecified +C0153425|T191|PT|C17.9|ICD10CM|Malignant neoplasm of small intestine, unspecified|Malignant neoplasm of small intestine, unspecified +C0153425|T191|AB|C17.9|ICD10CM|Malignant neoplasm of small intestine, unspecified|Malignant neoplasm of small intestine, unspecified +C0153425|T191|PS|C17.9|ICD10|Small intestine, unspecified|Small intestine, unspecified +C0007102|T191|HT|C18|ICD10|Malignant neoplasm of colon|Malignant neoplasm of colon +C0007102|T191|HT|C18|ICD10CM|Malignant neoplasm of colon|Malignant neoplasm of colon +C0007102|T191|AB|C18|ICD10CM|Malignant neoplasm of colon|Malignant neoplasm of colon +C0153437|T191|PS|C18.0|ICD10|Caecum|Caecum +C0153437|T191|PS|C18.0|ICD10AE|Cecum|Cecum +C0153437|T191|PX|C18.0|ICD10|Malignant neoplasm of caecum|Malignant neoplasm of caecum +C0153437|T191|PX|C18.0|ICD10AE|Malignant neoplasm of cecum|Malignant neoplasm of cecum +C0153437|T191|PT|C18.0|ICD10CM|Malignant neoplasm of cecum|Malignant neoplasm of cecum +C0153437|T191|AB|C18.0|ICD10CM|Malignant neoplasm of cecum|Malignant neoplasm of cecum +C0864871|T191|ET|C18.0|ICD10CM|Malignant neoplasm of ileocecal valve|Malignant neoplasm of ileocecal valve +C0496779|T191|PS|C18.1|ICD10|Appendix|Appendix +C0496779|T191|PX|C18.1|ICD10|Malignant neoplasm of appendix|Malignant neoplasm of appendix +C0496779|T191|PT|C18.1|ICD10CM|Malignant neoplasm of appendix|Malignant neoplasm of appendix +C0496779|T191|AB|C18.1|ICD10CM|Malignant neoplasm of appendix|Malignant neoplasm of appendix +C0153439|T191|PS|C18.2|ICD10|Ascending colon|Ascending colon +C0153439|T191|PX|C18.2|ICD10|Malignant neoplasm of ascending colon|Malignant neoplasm of ascending colon +C0153439|T191|PT|C18.2|ICD10CM|Malignant neoplasm of ascending colon|Malignant neoplasm of ascending colon +C0153439|T191|AB|C18.2|ICD10CM|Malignant neoplasm of ascending colon|Malignant neoplasm of ascending colon +C0153433|T191|PS|C18.3|ICD10|Hepatic flexure|Hepatic flexure +C0153433|T191|PX|C18.3|ICD10|Malignant neoplasm of hepatic flexure|Malignant neoplasm of hepatic flexure +C0153433|T191|PT|C18.3|ICD10CM|Malignant neoplasm of hepatic flexure|Malignant neoplasm of hepatic flexure +C0153433|T191|AB|C18.3|ICD10CM|Malignant neoplasm of hepatic flexure|Malignant neoplasm of hepatic flexure +C0153434|T191|PT|C18.4|ICD10CM|Malignant neoplasm of transverse colon|Malignant neoplasm of transverse colon +C0153434|T191|AB|C18.4|ICD10CM|Malignant neoplasm of transverse colon|Malignant neoplasm of transverse colon +C0153434|T191|PX|C18.4|ICD10|Malignant neoplasm of transverse colon|Malignant neoplasm of transverse colon +C0153434|T191|PS|C18.4|ICD10|Transverse colon|Transverse colon +C0153440|T191|PX|C18.5|ICD10|Malignant neoplasm of splenic flexure|Malignant neoplasm of splenic flexure +C0153440|T191|PT|C18.5|ICD10CM|Malignant neoplasm of splenic flexure|Malignant neoplasm of splenic flexure +C0153440|T191|AB|C18.5|ICD10CM|Malignant neoplasm of splenic flexure|Malignant neoplasm of splenic flexure +C0153440|T191|PS|C18.5|ICD10|Splenic flexure|Splenic flexure +C0153435|T191|PS|C18.6|ICD10|Descending colon|Descending colon +C0153435|T191|PX|C18.6|ICD10|Malignant neoplasm of descending colon|Malignant neoplasm of descending colon +C0153435|T191|PT|C18.6|ICD10CM|Malignant neoplasm of descending colon|Malignant neoplasm of descending colon +C0153435|T191|AB|C18.6|ICD10CM|Malignant neoplasm of descending colon|Malignant neoplasm of descending colon +C0864870|T191|ET|C18.7|ICD10CM|Malignant neoplasm of sigmoid (flexure)|Malignant neoplasm of sigmoid (flexure) +C0153436|T191|PT|C18.7|ICD10CM|Malignant neoplasm of sigmoid colon|Malignant neoplasm of sigmoid colon +C0153436|T191|AB|C18.7|ICD10CM|Malignant neoplasm of sigmoid colon|Malignant neoplasm of sigmoid colon +C0153436|T191|PX|C18.7|ICD10|Malignant neoplasm of sigmoid colon|Malignant neoplasm of sigmoid colon +C0153436|T191|PS|C18.7|ICD10|Sigmoid colon|Sigmoid colon +C0349051|T191|AB|C18.8|ICD10CM|Malignant neoplasm of overlapping sites of colon|Malignant neoplasm of overlapping sites of colon +C0349051|T191|PT|C18.8|ICD10CM|Malignant neoplasm of overlapping sites of colon|Malignant neoplasm of overlapping sites of colon +C0349051|T191|PX|C18.8|ICD10|Malignant neoplasm overlapping colon site|Malignant neoplasm overlapping colon site +C0349051|T191|PS|C18.8|ICD10|Overlapping lesion of colon|Overlapping lesion of colon +C0007102|T191|PS|C18.9|ICD10|Colon, unspecified|Colon, unspecified +C0007102|T191|PX|C18.9|ICD10|Malignant neoplasm of colon, unspecified|Malignant neoplasm of colon, unspecified +C0007102|T191|PT|C18.9|ICD10CM|Malignant neoplasm of colon, unspecified|Malignant neoplasm of colon, unspecified +C0007102|T191|AB|C18.9|ICD10CM|Malignant neoplasm of colon, unspecified|Malignant neoplasm of colon, unspecified +C0346629|T191|ET|C18.9|ICD10CM|Malignant neoplasm of large intestine NOS|Malignant neoplasm of large intestine NOS +C2919144|T191|ET|C19|ICD10CM|Malignant neoplasm of colon with rectum|Malignant neoplasm of colon with rectum +C0153443|T191|ET|C19|ICD10CM|Malignant neoplasm of rectosigmoid (colon)|Malignant neoplasm of rectosigmoid (colon) +C0153443|T191|PT|C19|ICD10CM|Malignant neoplasm of rectosigmoid junction|Malignant neoplasm of rectosigmoid junction +C0153443|T191|AB|C19|ICD10CM|Malignant neoplasm of rectosigmoid junction|Malignant neoplasm of rectosigmoid junction +C0153443|T191|PT|C19|ICD10|Malignant neoplasm of rectosigmoid junction|Malignant neoplasm of rectosigmoid junction +C0864873|T191|ET|C20|ICD10CM|Malignant neoplasm of rectal ampulla|Malignant neoplasm of rectal ampulla +C0949022|T191|PT|C20|ICD10CM|Malignant neoplasm of rectum|Malignant neoplasm of rectum +C0949022|T191|AB|C20|ICD10CM|Malignant neoplasm of rectum|Malignant neoplasm of rectum +C0949022|T191|PT|C20|ICD10|Malignant neoplasm of rectum|Malignant neoplasm of rectum +C0346631|T191|HT|C21|ICD10CM|Malignant neoplasm of anus and anal canal|Malignant neoplasm of anus and anal canal +C0346631|T191|AB|C21|ICD10CM|Malignant neoplasm of anus and anal canal|Malignant neoplasm of anus and anal canal +C0346631|T191|HT|C21|ICD10|Malignant neoplasm of anus and anal canal|Malignant neoplasm of anus and anal canal +C0153446|T191|PS|C21.0|ICD10|Anus, unspecified|Anus, unspecified +C0153446|T191|PX|C21.0|ICD10|Malignant neoplasm of anus, unspecified|Malignant neoplasm of anus, unspecified +C0153446|T191|PT|C21.0|ICD10CM|Malignant neoplasm of anus, unspecified|Malignant neoplasm of anus, unspecified +C0153446|T191|AB|C21.0|ICD10CM|Malignant neoplasm of anus, unspecified|Malignant neoplasm of anus, unspecified +C0153445|T191|PS|C21.1|ICD10|Anal canal|Anal canal +C0153445|T191|PX|C21.1|ICD10|Malignant neoplasm of anal canal|Malignant neoplasm of anal canal +C0153445|T191|PT|C21.1|ICD10CM|Malignant neoplasm of anal canal|Malignant neoplasm of anal canal +C0153445|T191|AB|C21.1|ICD10CM|Malignant neoplasm of anal canal|Malignant neoplasm of anal canal +C0864874|T191|ET|C21.1|ICD10CM|Malignant neoplasm of anal sphincter|Malignant neoplasm of anal sphincter +C0345886|T191|PS|C21.2|ICD10|Cloacogenic zone|Cloacogenic zone +C0345886|T191|PX|C21.2|ICD10|Malignant neoplasm of cloacogenic zone|Malignant neoplasm of cloacogenic zone +C0345886|T191|PT|C21.2|ICD10CM|Malignant neoplasm of cloacogenic zone|Malignant neoplasm of cloacogenic zone +C0345886|T191|AB|C21.2|ICD10CM|Malignant neoplasm of cloacogenic zone|Malignant neoplasm of cloacogenic zone +C0496781|T191|AB|C21.8|ICD10CM|Malig neoplasm of ovrlp sites of rectum, anus and anal canal|Malig neoplasm of ovrlp sites of rectum, anus and anal canal +C0345887|T191|ET|C21.8|ICD10CM|Malignant neoplasm of anorectal junction|Malignant neoplasm of anorectal junction +C0864875|T191|ET|C21.8|ICD10CM|Malignant neoplasm of anorectum|Malignant neoplasm of anorectum +C0496781|T191|PT|C21.8|ICD10CM|Malignant neoplasm of overlapping sites of rectum, anus and anal canal|Malignant neoplasm of overlapping sites of rectum, anus and anal canal +C0496781|T191|PX|C21.8|ICD10|Malignant neoplasm overlapping rectum, anus and anal canal sites|Malignant neoplasm overlapping rectum, anus and anal canal sites +C0496781|T191|PS|C21.8|ICD10|Overlapping lesion of rectum, anus and anal canal|Overlapping lesion of rectum, anus and anal canal +C2837937|T191|ET|C21.8|ICD10CM|Primary malignant neoplasm of two or more contiguous sites of rectum, anus and anal canal|Primary malignant neoplasm of two or more contiguous sites of rectum, anus and anal canal +C0153448|T191|HT|C22|ICD10CM|Malignant neoplasm of liver and intrahepatic bile ducts|Malignant neoplasm of liver and intrahepatic bile ducts +C0153448|T191|AB|C22|ICD10CM|Malignant neoplasm of liver and intrahepatic bile ducts|Malignant neoplasm of liver and intrahepatic bile ducts +C0153448|T191|HT|C22|ICD10|Malignant neoplasm of liver and intrahepatic bile ducts|Malignant neoplasm of liver and intrahepatic bile ducts +C2239176|T191|ET|C22.0|ICD10CM|Hepatocellular carcinoma|Hepatocellular carcinoma +C0023903|T191|ET|C22.0|ICD10CM|Hepatoma|Hepatoma +C2239176|T191|PT|C22.0|ICD10|Liver cell carcinoma|Liver cell carcinoma +C2239176|T191|PT|C22.0|ICD10CM|Liver cell carcinoma|Liver cell carcinoma +C2239176|T191|AB|C22.0|ICD10CM|Liver cell carcinoma|Liver cell carcinoma +C0206698|T191|ET|C22.1|ICD10CM|Cholangiocarcinoma|Cholangiocarcinoma +C0345905|T191|PT|C22.1|ICD10CM|Intrahepatic bile duct carcinoma|Intrahepatic bile duct carcinoma +C0345905|T191|AB|C22.1|ICD10CM|Intrahepatic bile duct carcinoma|Intrahepatic bile duct carcinoma +C0345905|T191|PT|C22.1|ICD10|Intrahepatic bile duct carcinoma|Intrahepatic bile duct carcinoma +C0206624|T191|PT|C22.2|ICD10|Hepatoblastoma|Hepatoblastoma +C0206624|T191|PT|C22.2|ICD10CM|Hepatoblastoma|Hepatoblastoma +C0206624|T191|AB|C22.2|ICD10CM|Hepatoblastoma|Hepatoblastoma +C0345907|T191|PT|C22.3|ICD10CM|Angiosarcoma of liver|Angiosarcoma of liver +C0345907|T191|AB|C22.3|ICD10CM|Angiosarcoma of liver|Angiosarcoma of liver +C0345907|T191|PT|C22.3|ICD10|Angiosarcoma of liver|Angiosarcoma of liver +C0334534|T191|ET|C22.3|ICD10CM|Kupffer cell sarcoma|Kupffer cell sarcoma +C0348339|T191|PT|C22.4|ICD10CM|Other sarcomas of liver|Other sarcomas of liver +C0348339|T191|AB|C22.4|ICD10CM|Other sarcomas of liver|Other sarcomas of liver +C0348339|T191|PT|C22.4|ICD10|Other sarcomas of liver|Other sarcomas of liver +C0348340|T191|PT|C22.7|ICD10|Other specified carcinomas of liver|Other specified carcinomas of liver +C0348340|T191|PT|C22.7|ICD10CM|Other specified carcinomas of liver|Other specified carcinomas of liver +C0348340|T191|AB|C22.7|ICD10CM|Other specified carcinomas of liver|Other specified carcinomas of liver +C2837938|T191|AB|C22.8|ICD10CM|Malignant neoplasm of liver, primary, unspecified as to type|Malignant neoplasm of liver, primary, unspecified as to type +C2837938|T191|PT|C22.8|ICD10CM|Malignant neoplasm of liver, primary, unspecified as to type|Malignant neoplasm of liver, primary, unspecified as to type +C0345904|T191|PS|C22.9|ICD10|Liver, unspecified|Liver, unspecified +C0345904|T191|AB|C22.9|ICD10CM|Malig neoplasm of liver, not specified as primary or sec|Malig neoplasm of liver, not specified as primary or sec +C0345904|T191|PT|C22.9|ICD10CM|Malignant neoplasm of liver, not specified as primary or secondary|Malignant neoplasm of liver, not specified as primary or secondary +C0345904|T191|PX|C22.9|ICD10|Malignant neoplasm of liver, unspecified|Malignant neoplasm of liver, unspecified +C0153452|T191|PT|C23|ICD10|Malignant neoplasm of gallbladder|Malignant neoplasm of gallbladder +C0153452|T191|PT|C23|ICD10CM|Malignant neoplasm of gallbladder|Malignant neoplasm of gallbladder +C0153452|T191|AB|C23|ICD10CM|Malignant neoplasm of gallbladder|Malignant neoplasm of gallbladder +C0494147|T191|AB|C24|ICD10CM|Malignant neoplasm of other and unsp parts of biliary tract|Malignant neoplasm of other and unsp parts of biliary tract +C0494147|T191|HT|C24|ICD10CM|Malignant neoplasm of other and unspecified parts of biliary tract|Malignant neoplasm of other and unspecified parts of biliary tract +C0494147|T191|HT|C24|ICD10|Malignant neoplasm of other and unspecified parts of biliary tract|Malignant neoplasm of other and unspecified parts of biliary tract +C0153453|T191|PS|C24.0|ICD10|Extrahepatic bile duct|Extrahepatic bile duct +C0864878|T191|ET|C24.0|ICD10CM|Malignant neoplasm of biliary duct or passage NOS|Malignant neoplasm of biliary duct or passage NOS +C3665467|T191|ET|C24.0|ICD10CM|Malignant neoplasm of common bile duct|Malignant neoplasm of common bile duct +C3647881|T191|ET|C24.0|ICD10CM|Malignant neoplasm of cystic duct|Malignant neoplasm of cystic duct +C0153453|T191|PX|C24.0|ICD10|Malignant neoplasm of extrahepatic bile duct|Malignant neoplasm of extrahepatic bile duct +C0153453|T191|PT|C24.0|ICD10CM|Malignant neoplasm of extrahepatic bile duct|Malignant neoplasm of extrahepatic bile duct +C0153453|T191|AB|C24.0|ICD10CM|Malignant neoplasm of extrahepatic bile duct|Malignant neoplasm of extrahepatic bile duct +C0346643|T191|ET|C24.0|ICD10CM|Malignant neoplasm of hepatic duct|Malignant neoplasm of hepatic duct +C0153454|T191|PS|C24.1|ICD10|Ampulla of Vater|Ampulla of Vater +C0153454|T191|PX|C24.1|ICD10|Malignant neoplasm of ampulla of Vater|Malignant neoplasm of ampulla of Vater +C0153454|T191|PT|C24.1|ICD10CM|Malignant neoplasm of ampulla of Vater|Malignant neoplasm of ampulla of Vater +C0153454|T191|AB|C24.1|ICD10CM|Malignant neoplasm of ampulla of Vater|Malignant neoplasm of ampulla of Vater +C0864880|T191|ET|C24.8|ICD10CM|Malignant neoplasm involving both intrahepatic and extrahepatic bile ducts|Malignant neoplasm involving both intrahepatic and extrahepatic bile ducts +C0349052|T191|AB|C24.8|ICD10CM|Malignant neoplasm of overlapping sites of biliary tract|Malignant neoplasm of overlapping sites of biliary tract +C0349052|T191|PT|C24.8|ICD10CM|Malignant neoplasm of overlapping sites of biliary tract|Malignant neoplasm of overlapping sites of biliary tract +C0349052|T191|PX|C24.8|ICD10|Malignant neoplasm overlapping biliary tract site|Malignant neoplasm overlapping biliary tract site +C0349052|T191|PS|C24.8|ICD10|Overlapping lesion of biliary tract|Overlapping lesion of biliary tract +C2837939|T191|ET|C24.8|ICD10CM|Primary malignant neoplasm of two or more contiguous sites of biliary tract|Primary malignant neoplasm of two or more contiguous sites of biliary tract +C0750952|T191|PS|C24.9|ICD10|Biliary tract, unspecified|Biliary tract, unspecified +C0750952|T191|PX|C24.9|ICD10|Malignant neoplasm of biliary tract, unspecified|Malignant neoplasm of biliary tract, unspecified +C0750952|T191|PT|C24.9|ICD10CM|Malignant neoplasm of biliary tract, unspecified|Malignant neoplasm of biliary tract, unspecified +C0750952|T191|AB|C24.9|ICD10CM|Malignant neoplasm of biliary tract, unspecified|Malignant neoplasm of biliary tract, unspecified +C0346647|T191|HT|C25|ICD10CM|Malignant neoplasm of pancreas|Malignant neoplasm of pancreas +C0346647|T191|AB|C25|ICD10CM|Malignant neoplasm of pancreas|Malignant neoplasm of pancreas +C0346647|T191|HT|C25|ICD10|Malignant neoplasm of pancreas|Malignant neoplasm of pancreas +C0153458|T191|PS|C25.0|ICD10|Head of pancreas|Head of pancreas +C0153458|T191|PX|C25.0|ICD10|Malignant neoplasm of head of pancreas|Malignant neoplasm of head of pancreas +C0153458|T191|PT|C25.0|ICD10CM|Malignant neoplasm of head of pancreas|Malignant neoplasm of head of pancreas +C0153458|T191|AB|C25.0|ICD10CM|Malignant neoplasm of head of pancreas|Malignant neoplasm of head of pancreas +C0153459|T191|PS|C25.1|ICD10|Body of pancreas|Body of pancreas +C0153459|T191|PX|C25.1|ICD10|Malignant neoplasm of body of pancreas|Malignant neoplasm of body of pancreas +C0153459|T191|PT|C25.1|ICD10CM|Malignant neoplasm of body of pancreas|Malignant neoplasm of body of pancreas +C0153459|T191|AB|C25.1|ICD10CM|Malignant neoplasm of body of pancreas|Malignant neoplasm of body of pancreas +C0153460|T191|PT|C25.2|ICD10CM|Malignant neoplasm of tail of pancreas|Malignant neoplasm of tail of pancreas +C0153460|T191|AB|C25.2|ICD10CM|Malignant neoplasm of tail of pancreas|Malignant neoplasm of tail of pancreas +C0153460|T191|PX|C25.2|ICD10|Malignant neoplasm of tail of pancreas|Malignant neoplasm of tail of pancreas +C0153460|T191|PS|C25.2|ICD10|Tail of pancreas|Tail of pancreas +C0153461|T191|PX|C25.3|ICD10|Malignant neoplasm of pancreatic duct|Malignant neoplasm of pancreatic duct +C0153461|T191|PT|C25.3|ICD10CM|Malignant neoplasm of pancreatic duct|Malignant neoplasm of pancreatic duct +C0153461|T191|AB|C25.3|ICD10CM|Malignant neoplasm of pancreatic duct|Malignant neoplasm of pancreatic duct +C0153461|T191|PS|C25.3|ICD10|Pancreatic duct|Pancreatic duct +C0496784|T191|PS|C25.4|ICD10|Endocrine pancreas|Endocrine pancreas +C0496784|T191|PX|C25.4|ICD10|Malignant neoplasm of endocrine pancreas|Malignant neoplasm of endocrine pancreas +C0496784|T191|PT|C25.4|ICD10CM|Malignant neoplasm of endocrine pancreas|Malignant neoplasm of endocrine pancreas +C0496784|T191|AB|C25.4|ICD10CM|Malignant neoplasm of endocrine pancreas|Malignant neoplasm of endocrine pancreas +C1328479|T191|ET|C25.4|ICD10CM|Malignant neoplasm of islets of Langerhans|Malignant neoplasm of islets of Langerhans +C2837940|T191|ET|C25.7|ICD10CM|Malignant neoplasm of neck of pancreas|Malignant neoplasm of neck of pancreas +C0496785|T191|PT|C25.7|ICD10CM|Malignant neoplasm of other parts of pancreas|Malignant neoplasm of other parts of pancreas +C0496785|T191|AB|C25.7|ICD10CM|Malignant neoplasm of other parts of pancreas|Malignant neoplasm of other parts of pancreas +C0496785|T191|PX|C25.7|ICD10|Malignant neoplasm of other parts of pancreas|Malignant neoplasm of other parts of pancreas +C0496785|T191|PS|C25.7|ICD10|Other parts of pancreas|Other parts of pancreas +C0349053|T191|AB|C25.8|ICD10CM|Malignant neoplasm of overlapping sites of pancreas|Malignant neoplasm of overlapping sites of pancreas +C0349053|T191|PT|C25.8|ICD10CM|Malignant neoplasm of overlapping sites of pancreas|Malignant neoplasm of overlapping sites of pancreas +C0349053|T191|PX|C25.8|ICD10|Malignant neoplasm overlapping pancreas site|Malignant neoplasm overlapping pancreas site +C0349053|T191|PS|C25.8|ICD10|Overlapping lesion of pancreas|Overlapping lesion of pancreas +C0346647|T191|PX|C25.9|ICD10|Malignant neoplasm of pancreas, unspecified|Malignant neoplasm of pancreas, unspecified +C0346647|T191|PT|C25.9|ICD10CM|Malignant neoplasm of pancreas, unspecified|Malignant neoplasm of pancreas, unspecified +C0346647|T191|AB|C25.9|ICD10CM|Malignant neoplasm of pancreas, unspecified|Malignant neoplasm of pancreas, unspecified +C0346647|T191|PS|C25.9|ICD10|Pancreas, unspecified|Pancreas, unspecified +C2919145|T191|HT|C26|ICD10|Malignant neoplasm of other and ill-defined digestive organs|Malignant neoplasm of other and ill-defined digestive organs +C2919145|T191|HT|C26|ICD10CM|Malignant neoplasm of other and ill-defined digestive organs|Malignant neoplasm of other and ill-defined digestive organs +C2919145|T191|AB|C26|ICD10CM|Malignant neoplasm of other and ill-defined digestive organs|Malignant neoplasm of other and ill-defined digestive organs +C0346627|T191|PS|C26.0|ICD10|Intestinal tract, part unspecified|Intestinal tract, part unspecified +C0346627|T191|PX|C26.0|ICD10|Malignant neoplasm of intestinal tract, part unspecified|Malignant neoplasm of intestinal tract, part unspecified +C0346627|T191|PT|C26.0|ICD10CM|Malignant neoplasm of intestinal tract, part unspecified|Malignant neoplasm of intestinal tract, part unspecified +C0346627|T191|AB|C26.0|ICD10CM|Malignant neoplasm of intestinal tract, part unspecified|Malignant neoplasm of intestinal tract, part unspecified +C0346627|T191|ET|C26.0|ICD10CM|Malignant neoplasm of intestine NOS|Malignant neoplasm of intestine NOS +C0153470|T191|PT|C26.1|ICD10CM|Malignant neoplasm of spleen|Malignant neoplasm of spleen +C0153470|T191|AB|C26.1|ICD10CM|Malignant neoplasm of spleen|Malignant neoplasm of spleen +C0153470|T191|PX|C26.1|ICD10|Malignant neoplasm of spleen|Malignant neoplasm of spleen +C0153470|T191|PS|C26.1|ICD10|Spleen|Spleen +C0349027|T191|PX|C26.8|ICD10|Malignant neoplasm overlapping digestive system site|Malignant neoplasm overlapping digestive system site +C0349027|T191|PS|C26.8|ICD10|Overlapping lesion of digestive system|Overlapping lesion of digestive system +C0348342|T191|PS|C26.9|ICD10|Ill-defined sites within the digestive system|Ill-defined sites within the digestive system +C0864885|T191|ET|C26.9|ICD10CM|Malignant neoplasm of alimentary canal or tract NOS|Malignant neoplasm of alimentary canal or tract NOS +C0685938|T191|ET|C26.9|ICD10CM|Malignant neoplasm of gastrointestinal tract NOS|Malignant neoplasm of gastrointestinal tract NOS +C0348342|T191|AB|C26.9|ICD10CM|Malignant neoplasm of ill-defined sites within the dgstv sys|Malignant neoplasm of ill-defined sites within the dgstv sys +C0348342|T191|PT|C26.9|ICD10CM|Malignant neoplasm of ill-defined sites within the digestive system|Malignant neoplasm of ill-defined sites within the digestive system +C0348342|T191|PX|C26.9|ICD10|Malignant neoplasm of ill-defined sites within the digestive system|Malignant neoplasm of ill-defined sites within the digestive system +C0494149|T191|AB|C30|ICD10CM|Malignant neoplasm of nasal cavity and middle ear|Malignant neoplasm of nasal cavity and middle ear +C0494149|T191|HT|C30|ICD10CM|Malignant neoplasm of nasal cavity and middle ear|Malignant neoplasm of nasal cavity and middle ear +C0494149|T191|HT|C30|ICD10|Malignant neoplasm of nasal cavity and middle ear|Malignant neoplasm of nasal cavity and middle ear +C0496788|T191|ET|C30-C39|ICD10CM|malignant neoplasm of middle ear|malignant neoplasm of middle ear +C0178249|T191|HT|C30-C39|ICD10CM|Malignant neoplasms of respiratory and intrathoracic organs (C30-C39)|Malignant neoplasms of respiratory and intrathoracic organs (C30-C39) +C0178249|T191|HT|C30-C39.9|ICD10|Malignant neoplasms of respiratory and intrathoracic organs|Malignant neoplasms of respiratory and intrathoracic organs +C0346572|T191|ET|C30.0|ICD10CM|Malignant neoplasm of cartilage of nose|Malignant neoplasm of cartilage of nose +C0864886|T191|ET|C30.0|ICD10CM|Malignant neoplasm of internal nose|Malignant neoplasm of internal nose +C0728864|T191|PT|C30.0|ICD10CM|Malignant neoplasm of nasal cavity|Malignant neoplasm of nasal cavity +C0728864|T191|AB|C30.0|ICD10CM|Malignant neoplasm of nasal cavity|Malignant neoplasm of nasal cavity +C0728864|T191|PX|C30.0|ICD10|Malignant neoplasm of nasal cavity|Malignant neoplasm of nasal cavity +C0346576|T191|ET|C30.0|ICD10CM|Malignant neoplasm of nasal concha|Malignant neoplasm of nasal concha +C0346574|T191|ET|C30.0|ICD10CM|Malignant neoplasm of septum of nose|Malignant neoplasm of septum of nose +C0345645|T191|ET|C30.0|ICD10CM|Malignant neoplasm of vestibule of nose|Malignant neoplasm of vestibule of nose +C0728864|T191|PS|C30.0|ICD10|Nasal cavity|Nasal cavity +C0864887|T191|ET|C30.1|ICD10CM|Malignant neoplasm of antrum tympanicum|Malignant neoplasm of antrum tympanicum +C2837941|T191|ET|C30.1|ICD10CM|Malignant neoplasm of auditory tube|Malignant neoplasm of auditory tube +C0686489|T191|ET|C30.1|ICD10CM|Malignant neoplasm of eustachian tube|Malignant neoplasm of eustachian tube +C2837942|T191|ET|C30.1|ICD10CM|Malignant neoplasm of inner ear|Malignant neoplasm of inner ear +C0345628|T191|ET|C30.1|ICD10CM|Malignant neoplasm of mastoid air cells|Malignant neoplasm of mastoid air cells +C0496788|T191|PT|C30.1|ICD10CM|Malignant neoplasm of middle ear|Malignant neoplasm of middle ear +C0496788|T191|AB|C30.1|ICD10CM|Malignant neoplasm of middle ear|Malignant neoplasm of middle ear +C0496788|T191|PX|C30.1|ICD10|Malignant neoplasm of middle ear|Malignant neoplasm of middle ear +C0345622|T191|ET|C30.1|ICD10CM|Malignant neoplasm of tympanic cavity|Malignant neoplasm of tympanic cavity +C0496788|T191|PS|C30.1|ICD10|Middle ear|Middle ear +C0153474|T191|HT|C31|ICD10|Malignant neoplasm of accessory sinuses|Malignant neoplasm of accessory sinuses +C0153474|T191|AB|C31|ICD10CM|Malignant neoplasm of accessory sinuses|Malignant neoplasm of accessory sinuses +C0153474|T191|HT|C31|ICD10CM|Malignant neoplasm of accessory sinuses|Malignant neoplasm of accessory sinuses +C2837943|T191|ET|C31.0|ICD10CM|Malignant neoplasm of antrum (Highmore) (maxillary)|Malignant neoplasm of antrum (Highmore) (maxillary) +C0153476|T191|PT|C31.0|ICD10CM|Malignant neoplasm of maxillary sinus|Malignant neoplasm of maxillary sinus +C0153476|T191|AB|C31.0|ICD10CM|Malignant neoplasm of maxillary sinus|Malignant neoplasm of maxillary sinus +C0153476|T191|PX|C31.0|ICD10|Malignant neoplasm of maxillary sinus|Malignant neoplasm of maxillary sinus +C0153476|T191|PS|C31.0|ICD10|Maxillary sinus|Maxillary sinus +C0153477|T191|PS|C31.1|ICD10|Ethmoidal sinus|Ethmoidal sinus +C0153477|T191|PX|C31.1|ICD10|Malignant neoplasm of ethmoidal sinus|Malignant neoplasm of ethmoidal sinus +C0153477|T191|PT|C31.1|ICD10CM|Malignant neoplasm of ethmoidal sinus|Malignant neoplasm of ethmoidal sinus +C0153477|T191|AB|C31.1|ICD10CM|Malignant neoplasm of ethmoidal sinus|Malignant neoplasm of ethmoidal sinus +C0153478|T191|PS|C31.2|ICD10|Frontal sinus|Frontal sinus +C0153478|T191|PX|C31.2|ICD10|Malignant neoplasm of frontal sinus|Malignant neoplasm of frontal sinus +C0153478|T191|PT|C31.2|ICD10CM|Malignant neoplasm of frontal sinus|Malignant neoplasm of frontal sinus +C0153478|T191|AB|C31.2|ICD10CM|Malignant neoplasm of frontal sinus|Malignant neoplasm of frontal sinus +C0153479|T191|AB|C31.3|ICD10CM|Malignant neoplasm of sphenoid sinus|Malignant neoplasm of sphenoid sinus +C0153479|T191|PT|C31.3|ICD10CM|Malignant neoplasm of sphenoid sinus|Malignant neoplasm of sphenoid sinus +C0153479|T191|PX|C31.3|ICD10|Malignant neoplasm of sphenoidal sinus|Malignant neoplasm of sphenoidal sinus +C0153479|T191|PS|C31.3|ICD10|Sphenoidal sinus|Sphenoidal sinus +C0349041|T191|AB|C31.8|ICD10CM|Malignant neoplasm of overlapping sites of accessory sinuses|Malignant neoplasm of overlapping sites of accessory sinuses +C0349041|T191|PT|C31.8|ICD10CM|Malignant neoplasm of overlapping sites of accessory sinuses|Malignant neoplasm of overlapping sites of accessory sinuses +C0349041|T191|PX|C31.8|ICD10|Malignant neoplasm overlapping accessory sinus site|Malignant neoplasm overlapping accessory sinus site +C0349041|T191|PS|C31.8|ICD10|Overlapping lesion of accessory sinuses|Overlapping lesion of accessory sinuses +C0153474|T191|PS|C31.9|ICD10|Accessory sinus, unspecified|Accessory sinus, unspecified +C0153474|T191|PX|C31.9|ICD10|Malignant neoplasm of accessory sinus, unspecified|Malignant neoplasm of accessory sinus, unspecified +C0153474|T191|PT|C31.9|ICD10CM|Malignant neoplasm of accessory sinus, unspecified|Malignant neoplasm of accessory sinus, unspecified +C0153474|T191|AB|C31.9|ICD10CM|Malignant neoplasm of accessory sinus, unspecified|Malignant neoplasm of accessory sinus, unspecified +C0007107|T191|HT|C32|ICD10|Malignant neoplasm of larynx|Malignant neoplasm of larynx +C0007107|T191|HT|C32|ICD10CM|Malignant neoplasm of larynx|Malignant neoplasm of larynx +C0007107|T191|AB|C32|ICD10CM|Malignant neoplasm of larynx|Malignant neoplasm of larynx +C0153483|T191|PS|C32.0|ICD10|Glottis|Glottis +C0153483|T191|PX|C32.0|ICD10|Malignant neoplasm of glottis|Malignant neoplasm of glottis +C0153483|T191|PT|C32.0|ICD10CM|Malignant neoplasm of glottis|Malignant neoplasm of glottis +C0153483|T191|AB|C32.0|ICD10CM|Malignant neoplasm of glottis|Malignant neoplasm of glottis +C0864889|T191|ET|C32.0|ICD10CM|Malignant neoplasm of intrinsic larynx|Malignant neoplasm of intrinsic larynx +C2837944|T191|ET|C32.0|ICD10CM|Malignant neoplasm of laryngeal commissure (anterior)(posterior)|Malignant neoplasm of laryngeal commissure (anterior)(posterior) +C0345715|T191|ET|C32.0|ICD10CM|Malignant neoplasm of vocal cord (true) NOS|Malignant neoplasm of vocal cord (true) NOS +C0864893|T191|ET|C32.1|ICD10CM|Malignant neoplasm of aryepiglottic fold or interarytenoid fold, laryngeal aspect|Malignant neoplasm of aryepiglottic fold or interarytenoid fold, laryngeal aspect +C0864894|T191|ET|C32.1|ICD10CM|Malignant neoplasm of epiglottis (suprahyoid portion) NOS|Malignant neoplasm of epiglottis (suprahyoid portion) NOS +C0153484|T191|ET|C32.1|ICD10CM|Malignant neoplasm of extrinsic larynx|Malignant neoplasm of extrinsic larynx +C0345741|T191|ET|C32.1|ICD10CM|Malignant neoplasm of false vocal cord|Malignant neoplasm of false vocal cord +C3647182|T191|ET|C32.1|ICD10CM|Malignant neoplasm of posterior (laryngeal) surface of epiglottis|Malignant neoplasm of posterior (laryngeal) surface of epiglottis +C0153484|T191|PT|C32.1|ICD10CM|Malignant neoplasm of supraglottis|Malignant neoplasm of supraglottis +C0153484|T191|AB|C32.1|ICD10CM|Malignant neoplasm of supraglottis|Malignant neoplasm of supraglottis +C0153484|T191|PX|C32.1|ICD10|Malignant neoplasm of supraglottis|Malignant neoplasm of supraglottis +C2837946|T191|ET|C32.1|ICD10CM|Malignant neoplasm of ventricular bands|Malignant neoplasm of ventricular bands +C0153484|T191|PS|C32.1|ICD10|Supraglottis|Supraglottis +C0153485|T191|PX|C32.2|ICD10|Malignant neoplasm of subglottis|Malignant neoplasm of subglottis +C0153485|T191|PT|C32.2|ICD10CM|Malignant neoplasm of subglottis|Malignant neoplasm of subglottis +C0153485|T191|AB|C32.2|ICD10CM|Malignant neoplasm of subglottis|Malignant neoplasm of subglottis +C0153485|T191|PS|C32.2|ICD10|Subglottis|Subglottis +C0153486|T191|PS|C32.3|ICD10|Laryngeal cartilage|Laryngeal cartilage +C0153486|T191|PX|C32.3|ICD10|Malignant neoplasm of laryngeal cartilage|Malignant neoplasm of laryngeal cartilage +C0153486|T191|PT|C32.3|ICD10CM|Malignant neoplasm of laryngeal cartilage|Malignant neoplasm of laryngeal cartilage +C0153486|T191|AB|C32.3|ICD10CM|Malignant neoplasm of laryngeal cartilage|Malignant neoplasm of laryngeal cartilage +C0349040|T191|AB|C32.8|ICD10CM|Malignant neoplasm of overlapping sites of larynx|Malignant neoplasm of overlapping sites of larynx +C0349040|T191|PT|C32.8|ICD10CM|Malignant neoplasm of overlapping sites of larynx|Malignant neoplasm of overlapping sites of larynx +C0349040|T191|PX|C32.8|ICD10|Malignant neoplasm overlapping larynx site|Malignant neoplasm overlapping larynx site +C0349040|T191|PS|C32.8|ICD10|Overlapping lesion of larynx|Overlapping lesion of larynx +C0007107|T191|PS|C32.9|ICD10|Larynx, unspecified|Larynx, unspecified +C0007107|T191|PX|C32.9|ICD10|Malignant neoplasm of larynx, unspecified|Malignant neoplasm of larynx, unspecified +C0007107|T191|PT|C32.9|ICD10CM|Malignant neoplasm of larynx, unspecified|Malignant neoplasm of larynx, unspecified +C0007107|T191|AB|C32.9|ICD10CM|Malignant neoplasm of larynx, unspecified|Malignant neoplasm of larynx, unspecified +C0153489|T191|PT|C33|ICD10|Malignant neoplasm of trachea|Malignant neoplasm of trachea +C0153489|T191|PT|C33|ICD10CM|Malignant neoplasm of trachea|Malignant neoplasm of trachea +C0153489|T191|AB|C33|ICD10CM|Malignant neoplasm of trachea|Malignant neoplasm of trachea +C0348343|T191|AB|C34|ICD10CM|Malignant neoplasm of bronchus and lung|Malignant neoplasm of bronchus and lung +C0348343|T191|HT|C34|ICD10CM|Malignant neoplasm of bronchus and lung|Malignant neoplasm of bronchus and lung +C0348343|T191|HT|C34|ICD10|Malignant neoplasm of bronchus and lung|Malignant neoplasm of bronchus and lung +C0153490|T191|PS|C34.0|ICD10|Main bronchus|Main bronchus +C2004495|T191|ET|C34.0|ICD10CM|Malignant neoplasm of carina|Malignant neoplasm of carina +C2607931|T191|ET|C34.0|ICD10CM|Malignant neoplasm of hilus (of lung)|Malignant neoplasm of hilus (of lung) +C0153490|T191|PX|C34.0|ICD10|Malignant neoplasm of main bronchus|Malignant neoplasm of main bronchus +C0153490|T191|HT|C34.0|ICD10CM|Malignant neoplasm of main bronchus|Malignant neoplasm of main bronchus +C0153490|T191|AB|C34.0|ICD10CM|Malignant neoplasm of main bronchus|Malignant neoplasm of main bronchus +C2837947|T191|AB|C34.00|ICD10CM|Malignant neoplasm of unspecified main bronchus|Malignant neoplasm of unspecified main bronchus +C2837947|T191|PT|C34.00|ICD10CM|Malignant neoplasm of unspecified main bronchus|Malignant neoplasm of unspecified main bronchus +C2837948|T191|AB|C34.01|ICD10CM|Malignant neoplasm of right main bronchus|Malignant neoplasm of right main bronchus +C2837948|T191|PT|C34.01|ICD10CM|Malignant neoplasm of right main bronchus|Malignant neoplasm of right main bronchus +C2837949|T191|AB|C34.02|ICD10CM|Malignant neoplasm of left main bronchus|Malignant neoplasm of left main bronchus +C2837949|T191|PT|C34.02|ICD10CM|Malignant neoplasm of left main bronchus|Malignant neoplasm of left main bronchus +C0024624|T191|PX|C34.1|ICD10|Malignant neoplasm of upper lobe, bronchus or lung|Malignant neoplasm of upper lobe, bronchus or lung +C0024624|T191|HT|C34.1|ICD10CM|Malignant neoplasm of upper lobe, bronchus or lung|Malignant neoplasm of upper lobe, bronchus or lung +C0024624|T191|AB|C34.1|ICD10CM|Malignant neoplasm of upper lobe, bronchus or lung|Malignant neoplasm of upper lobe, bronchus or lung +C0024624|T191|PS|C34.1|ICD10|Upper lobe, bronchus or lung|Upper lobe, bronchus or lung +C2837950|T191|AB|C34.10|ICD10CM|Malignant neoplasm of upper lobe, unsp bronchus or lung|Malignant neoplasm of upper lobe, unsp bronchus or lung +C2837950|T191|PT|C34.10|ICD10CM|Malignant neoplasm of upper lobe, unspecified bronchus or lung|Malignant neoplasm of upper lobe, unspecified bronchus or lung +C2837951|T191|AB|C34.11|ICD10CM|Malignant neoplasm of upper lobe, right bronchus or lung|Malignant neoplasm of upper lobe, right bronchus or lung +C2837951|T191|PT|C34.11|ICD10CM|Malignant neoplasm of upper lobe, right bronchus or lung|Malignant neoplasm of upper lobe, right bronchus or lung +C2837952|T191|AB|C34.12|ICD10CM|Malignant neoplasm of upper lobe, left bronchus or lung|Malignant neoplasm of upper lobe, left bronchus or lung +C2837952|T191|PT|C34.12|ICD10CM|Malignant neoplasm of upper lobe, left bronchus or lung|Malignant neoplasm of upper lobe, left bronchus or lung +C0153491|T191|PX|C34.2|ICD10|Malignant neoplasm of middle lobe, bronchus or lung|Malignant neoplasm of middle lobe, bronchus or lung +C0153491|T191|PT|C34.2|ICD10CM|Malignant neoplasm of middle lobe, bronchus or lung|Malignant neoplasm of middle lobe, bronchus or lung +C0153491|T191|AB|C34.2|ICD10CM|Malignant neoplasm of middle lobe, bronchus or lung|Malignant neoplasm of middle lobe, bronchus or lung +C0153491|T191|PS|C34.2|ICD10|Middle lobe, bronchus or lung|Middle lobe, bronchus or lung +C0153492|T191|PS|C34.3|ICD10|Lower lobe, bronchus or lung|Lower lobe, bronchus or lung +C0153492|T191|PX|C34.3|ICD10|Malignant neoplasm of lower lobe, bronchus or lung|Malignant neoplasm of lower lobe, bronchus or lung +C0153492|T191|HT|C34.3|ICD10CM|Malignant neoplasm of lower lobe, bronchus or lung|Malignant neoplasm of lower lobe, bronchus or lung +C0153492|T191|AB|C34.3|ICD10CM|Malignant neoplasm of lower lobe, bronchus or lung|Malignant neoplasm of lower lobe, bronchus or lung +C2837954|T191|AB|C34.30|ICD10CM|Malignant neoplasm of lower lobe, unsp bronchus or lung|Malignant neoplasm of lower lobe, unsp bronchus or lung +C2837954|T191|PT|C34.30|ICD10CM|Malignant neoplasm of lower lobe, unspecified bronchus or lung|Malignant neoplasm of lower lobe, unspecified bronchus or lung +C2837955|T191|AB|C34.31|ICD10CM|Malignant neoplasm of lower lobe, right bronchus or lung|Malignant neoplasm of lower lobe, right bronchus or lung +C2837955|T191|PT|C34.31|ICD10CM|Malignant neoplasm of lower lobe, right bronchus or lung|Malignant neoplasm of lower lobe, right bronchus or lung +C2837956|T191|AB|C34.32|ICD10CM|Malignant neoplasm of lower lobe, left bronchus or lung|Malignant neoplasm of lower lobe, left bronchus or lung +C2837956|T191|PT|C34.32|ICD10CM|Malignant neoplasm of lower lobe, left bronchus or lung|Malignant neoplasm of lower lobe, left bronchus or lung +C0349043|T191|HT|C34.8|ICD10CM|Malignant neoplasm of overlapping sites of bronchus and lung|Malignant neoplasm of overlapping sites of bronchus and lung +C0349043|T191|AB|C34.8|ICD10CM|Malignant neoplasm of overlapping sites of bronchus and lung|Malignant neoplasm of overlapping sites of bronchus and lung +C0349043|T191|PX|C34.8|ICD10|Malignant neoplasm overlapping bronchus and lung sites|Malignant neoplasm overlapping bronchus and lung sites +C0349043|T191|PS|C34.8|ICD10|Overlapping lesion of bronchus and lung|Overlapping lesion of bronchus and lung +C2837957|T191|PT|C34.80|ICD10CM|Malignant neoplasm of overlapping sites of unspecified bronchus and lung|Malignant neoplasm of overlapping sites of unspecified bronchus and lung +C2837957|T191|AB|C34.80|ICD10CM|Malignant neoplasm of ovrlp sites of unsp bronchus and lung|Malignant neoplasm of ovrlp sites of unsp bronchus and lung +C2837958|T191|PT|C34.81|ICD10CM|Malignant neoplasm of overlapping sites of right bronchus and lung|Malignant neoplasm of overlapping sites of right bronchus and lung +C2837958|T191|AB|C34.81|ICD10CM|Malignant neoplasm of ovrlp sites of right bronchus and lung|Malignant neoplasm of ovrlp sites of right bronchus and lung +C2837959|T191|PT|C34.82|ICD10CM|Malignant neoplasm of overlapping sites of left bronchus and lung|Malignant neoplasm of overlapping sites of left bronchus and lung +C2837959|T191|AB|C34.82|ICD10CM|Malignant neoplasm of ovrlp sites of left bronchus and lung|Malignant neoplasm of ovrlp sites of left bronchus and lung +C0348343|T191|PS|C34.9|ICD10|Bronchus or lung, unspecified|Bronchus or lung, unspecified +C0348343|T191|PX|C34.9|ICD10|Malignant neoplasm of bronchus or lung, unspecified|Malignant neoplasm of bronchus or lung, unspecified +C0348343|T191|AB|C34.9|ICD10CM|Malignant neoplasm of unspecified part of bronchus or lung|Malignant neoplasm of unspecified part of bronchus or lung +C0348343|T191|HT|C34.9|ICD10CM|Malignant neoplasm of unspecified part of bronchus or lung|Malignant neoplasm of unspecified part of bronchus or lung +C0242379|T191|ET|C34.90|ICD10CM|Lung cancer NOS|Lung cancer NOS +C2837960|T191|AB|C34.90|ICD10CM|Malignant neoplasm of unsp part of unsp bronchus or lung|Malignant neoplasm of unsp part of unsp bronchus or lung +C2837960|T191|PT|C34.90|ICD10CM|Malignant neoplasm of unspecified part of unspecified bronchus or lung|Malignant neoplasm of unspecified part of unspecified bronchus or lung +C2837961|T191|AB|C34.91|ICD10CM|Malignant neoplasm of unsp part of right bronchus or lung|Malignant neoplasm of unsp part of right bronchus or lung +C2837961|T191|PT|C34.91|ICD10CM|Malignant neoplasm of unspecified part of right bronchus or lung|Malignant neoplasm of unspecified part of right bronchus or lung +C2837962|T191|AB|C34.92|ICD10CM|Malignant neoplasm of unsp part of left bronchus or lung|Malignant neoplasm of unsp part of left bronchus or lung +C2837962|T191|PT|C34.92|ICD10CM|Malignant neoplasm of unspecified part of left bronchus or lung|Malignant neoplasm of unspecified part of left bronchus or lung +C0751552|T191|PT|C37|ICD10CM|Malignant neoplasm of thymus|Malignant neoplasm of thymus +C0751552|T191|AB|C37|ICD10CM|Malignant neoplasm of thymus|Malignant neoplasm of thymus +C0751552|T191|PT|C37|ICD10|Malignant neoplasm of thymus|Malignant neoplasm of thymus +C0494150|T191|HT|C38|ICD10|Malignant neoplasm of heart, mediastinum and pleura|Malignant neoplasm of heart, mediastinum and pleura +C0494150|T191|AB|C38|ICD10CM|Malignant neoplasm of heart, mediastinum and pleura|Malignant neoplasm of heart, mediastinum and pleura +C0494150|T191|HT|C38|ICD10CM|Malignant neoplasm of heart, mediastinum and pleura|Malignant neoplasm of heart, mediastinum and pleura +C0153500|T191|PS|C38.0|ICD10|Heart|Heart +C0153500|T191|PX|C38.0|ICD10|Malignant neoplasm of heart|Malignant neoplasm of heart +C0153500|T191|PT|C38.0|ICD10CM|Malignant neoplasm of heart|Malignant neoplasm of heart +C0153500|T191|AB|C38.0|ICD10CM|Malignant neoplasm of heart|Malignant neoplasm of heart +C0346609|T191|ET|C38.0|ICD10CM|Malignant neoplasm of pericardium|Malignant neoplasm of pericardium +C0153501|T191|PS|C38.1|ICD10|Anterior mediastinum|Anterior mediastinum +C0153501|T191|PX|C38.1|ICD10|Malignant neoplasm of anterior mediastinum|Malignant neoplasm of anterior mediastinum +C0153501|T191|PT|C38.1|ICD10CM|Malignant neoplasm of anterior mediastinum|Malignant neoplasm of anterior mediastinum +C0153501|T191|AB|C38.1|ICD10CM|Malignant neoplasm of anterior mediastinum|Malignant neoplasm of anterior mediastinum +C0153502|T191|PT|C38.2|ICD10CM|Malignant neoplasm of posterior mediastinum|Malignant neoplasm of posterior mediastinum +C0153502|T191|AB|C38.2|ICD10CM|Malignant neoplasm of posterior mediastinum|Malignant neoplasm of posterior mediastinum +C0153502|T191|PX|C38.2|ICD10|Malignant neoplasm of posterior mediastinum|Malignant neoplasm of posterior mediastinum +C0153502|T191|PS|C38.2|ICD10|Posterior mediastinum|Posterior mediastinum +C0153504|T191|PX|C38.3|ICD10|Malignant neoplasm of mediastinum, part unspecified|Malignant neoplasm of mediastinum, part unspecified +C0153504|T191|PT|C38.3|ICD10CM|Malignant neoplasm of mediastinum, part unspecified|Malignant neoplasm of mediastinum, part unspecified +C0153504|T191|AB|C38.3|ICD10CM|Malignant neoplasm of mediastinum, part unspecified|Malignant neoplasm of mediastinum, part unspecified +C0153504|T191|PS|C38.3|ICD10|Mediastinum, part unspecified|Mediastinum, part unspecified +C0153494|T191|PX|C38.4|ICD10|Malignant neoplasm of pleura|Malignant neoplasm of pleura +C0153494|T191|PT|C38.4|ICD10CM|Malignant neoplasm of pleura|Malignant neoplasm of pleura +C0153494|T191|AB|C38.4|ICD10CM|Malignant neoplasm of pleura|Malignant neoplasm of pleura +C0153494|T191|PS|C38.4|ICD10|Pleura|Pleura +C0349042|T191|AB|C38.8|ICD10CM|Malig neoplm of ovrlp sites of heart, mediastinum and pleura|Malig neoplm of ovrlp sites of heart, mediastinum and pleura +C0349042|T191|PT|C38.8|ICD10CM|Malignant neoplasm of overlapping sites of heart, mediastinum and pleura|Malignant neoplasm of overlapping sites of heart, mediastinum and pleura +C0349042|T191|PX|C38.8|ICD10|Malignant neoplasm overlapping heart, mediastinum and pleura sites|Malignant neoplasm overlapping heart, mediastinum and pleura sites +C0349042|T191|PS|C38.8|ICD10|Overlapping lesion of heart, mediastinum and pleura|Overlapping lesion of heart, mediastinum and pleura +C0346613|T191|AB|C39|ICD10CM|Malig neoplm of sites in the resp sys and intrathorac organs|Malig neoplm of sites in the resp sys and intrathorac organs +C0346613|T191|HT|C39|ICD10CM|Malignant neoplasm of other and ill-defined sites in the respiratory system and intrathoracic organs|Malignant neoplasm of other and ill-defined sites in the respiratory system and intrathoracic organs +C0346613|T191|HT|C39|ICD10|Malignant neoplasm of other and ill-defined sites in the respiratory system and intrathoracic organs|Malignant neoplasm of other and ill-defined sites in the respiratory system and intrathoracic organs +C0153506|T191|AB|C39.0|ICD10CM|Malignant neoplasm of upper respiratory tract, part unsp|Malignant neoplasm of upper respiratory tract, part unsp +C0153506|T191|PT|C39.0|ICD10CM|Malignant neoplasm of upper respiratory tract, part unspecified|Malignant neoplasm of upper respiratory tract, part unspecified +C0153506|T191|PX|C39.0|ICD10|Malignant neoplasm of upper respiratory tract, part unspecified|Malignant neoplasm of upper respiratory tract, part unspecified +C0153506|T191|PS|C39.0|ICD10|Upper respiratory tract, part unspecified|Upper respiratory tract, part unspecified +C0349044|T191|PX|C39.8|ICD10|Malignant neoplasm overlapping respiratory and intrathoracic organ sites|Malignant neoplasm overlapping respiratory and intrathoracic organ sites +C0349044|T191|PS|C39.8|ICD10|Overlapping lesion of respiratory and intrathoracic organs|Overlapping lesion of respiratory and intrathoracic organs +C0153508|T191|PS|C39.9|ICD10|Ill-defined sites within the respiratory system|Ill-defined sites within the respiratory system +C0153508|T191|PX|C39.9|ICD10|Malignant neoplasm of ill-defined sites within the respiratory system|Malignant neoplasm of ill-defined sites within the respiratory system +C2837964|T191|AB|C39.9|ICD10CM|Malignant neoplasm of lower respiratory tract, part unsp|Malignant neoplasm of lower respiratory tract, part unsp +C2837964|T191|PT|C39.9|ICD10CM|Malignant neoplasm of lower respiratory tract, part unspecified|Malignant neoplasm of lower respiratory tract, part unspecified +C3164456|T191|ET|C39.9|ICD10CM|Malignant neoplasm of respiratory tract NOS|Malignant neoplasm of respiratory tract NOS +C0494152|T191|AB|C40|ICD10CM|Malignant neoplasm of bone and articular cartilage of limbs|Malignant neoplasm of bone and articular cartilage of limbs +C0494152|T191|HT|C40|ICD10CM|Malignant neoplasm of bone and articular cartilage of limbs|Malignant neoplasm of bone and articular cartilage of limbs +C0494152|T191|HT|C40|ICD10|Malignant neoplasm of bone and articular cartilage of limbs|Malignant neoplasm of bone and articular cartilage of limbs +C4290060|T191|ET|C40-C41|ICD10CM|malignant neoplasm of cartilage (articular) (joint)|malignant neoplasm of cartilage (articular) (joint) +C4290061|T191|ET|C40-C41|ICD10CM|malignant neoplasm of periosteum|malignant neoplasm of periosteum +C0153509|T191|HT|C40-C41|ICD10CM|Malignant neoplasms of bone and articular cartilage (C40-C41)|Malignant neoplasms of bone and articular cartilage (C40-C41) +C0153509|T191|HT|C40-C41.9|ICD10|Malignant neoplasms of bone and articular cartilage|Malignant neoplasms of bone and articular cartilage +C0153514|T191|PX|C40.0|ICD10|Malignant neoplasm of scapula and long bones of upper limb|Malignant neoplasm of scapula and long bones of upper limb +C0153514|T191|HT|C40.0|ICD10CM|Malignant neoplasm of scapula and long bones of upper limb|Malignant neoplasm of scapula and long bones of upper limb +C0153514|T191|AB|C40.0|ICD10CM|Malignant neoplasm of scapula and long bones of upper limb|Malignant neoplasm of scapula and long bones of upper limb +C0153514|T191|PS|C40.0|ICD10|Scapula and long bones of upper limb|Scapula and long bones of upper limb +C2837967|T191|AB|C40.00|ICD10CM|Malig neoplasm of scapula and long bones of unsp upper limb|Malig neoplasm of scapula and long bones of unsp upper limb +C2837967|T191|PT|C40.00|ICD10CM|Malignant neoplasm of scapula and long bones of unspecified upper limb|Malignant neoplasm of scapula and long bones of unspecified upper limb +C2837968|T191|AB|C40.01|ICD10CM|Malig neoplasm of scapula and long bones of right upper limb|Malig neoplasm of scapula and long bones of right upper limb +C2837968|T191|PT|C40.01|ICD10CM|Malignant neoplasm of scapula and long bones of right upper limb|Malignant neoplasm of scapula and long bones of right upper limb +C2837969|T191|AB|C40.02|ICD10CM|Malig neoplasm of scapula and long bones of left upper limb|Malig neoplasm of scapula and long bones of left upper limb +C2837969|T191|PT|C40.02|ICD10CM|Malignant neoplasm of scapula and long bones of left upper limb|Malignant neoplasm of scapula and long bones of left upper limb +C0153515|T191|PX|C40.1|ICD10|Malignant neoplasm of short bones of upper limb|Malignant neoplasm of short bones of upper limb +C0153515|T191|HT|C40.1|ICD10CM|Malignant neoplasm of short bones of upper limb|Malignant neoplasm of short bones of upper limb +C0153515|T191|AB|C40.1|ICD10CM|Malignant neoplasm of short bones of upper limb|Malignant neoplasm of short bones of upper limb +C0153515|T191|PS|C40.1|ICD10|Short bones of upper limb|Short bones of upper limb +C2837970|T191|AB|C40.10|ICD10CM|Malignant neoplasm of short bones of unspecified upper limb|Malignant neoplasm of short bones of unspecified upper limb +C2837970|T191|PT|C40.10|ICD10CM|Malignant neoplasm of short bones of unspecified upper limb|Malignant neoplasm of short bones of unspecified upper limb +C2837971|T191|AB|C40.11|ICD10CM|Malignant neoplasm of short bones of right upper limb|Malignant neoplasm of short bones of right upper limb +C2837971|T191|PT|C40.11|ICD10CM|Malignant neoplasm of short bones of right upper limb|Malignant neoplasm of short bones of right upper limb +C2837972|T191|AB|C40.12|ICD10CM|Malignant neoplasm of short bones of left upper limb|Malignant neoplasm of short bones of left upper limb +C2837972|T191|PT|C40.12|ICD10CM|Malignant neoplasm of short bones of left upper limb|Malignant neoplasm of short bones of left upper limb +C0153517|T191|PS|C40.2|ICD10|Long bones of lower limb|Long bones of lower limb +C0153517|T191|PX|C40.2|ICD10|Malignant neoplasm of long bones of lower limb|Malignant neoplasm of long bones of lower limb +C0153517|T191|HT|C40.2|ICD10CM|Malignant neoplasm of long bones of lower limb|Malignant neoplasm of long bones of lower limb +C0153517|T191|AB|C40.2|ICD10CM|Malignant neoplasm of long bones of lower limb|Malignant neoplasm of long bones of lower limb +C2837973|T191|AB|C40.20|ICD10CM|Malignant neoplasm of long bones of unspecified lower limb|Malignant neoplasm of long bones of unspecified lower limb +C2837973|T191|PT|C40.20|ICD10CM|Malignant neoplasm of long bones of unspecified lower limb|Malignant neoplasm of long bones of unspecified lower limb +C2837974|T191|AB|C40.21|ICD10CM|Malignant neoplasm of long bones of right lower limb|Malignant neoplasm of long bones of right lower limb +C2837974|T191|PT|C40.21|ICD10CM|Malignant neoplasm of long bones of right lower limb|Malignant neoplasm of long bones of right lower limb +C2837975|T191|AB|C40.22|ICD10CM|Malignant neoplasm of long bones of left lower limb|Malignant neoplasm of long bones of left lower limb +C2837975|T191|PT|C40.22|ICD10CM|Malignant neoplasm of long bones of left lower limb|Malignant neoplasm of long bones of left lower limb +C0153518|T191|HT|C40.3|ICD10CM|Malignant neoplasm of short bones of lower limb|Malignant neoplasm of short bones of lower limb +C0153518|T191|AB|C40.3|ICD10CM|Malignant neoplasm of short bones of lower limb|Malignant neoplasm of short bones of lower limb +C0153518|T191|PX|C40.3|ICD10|Malignant neoplasm of short bones of lower limb|Malignant neoplasm of short bones of lower limb +C0153518|T191|PS|C40.3|ICD10|Short bones of lower limb|Short bones of lower limb +C2837976|T191|AB|C40.30|ICD10CM|Malignant neoplasm of short bones of unspecified lower limb|Malignant neoplasm of short bones of unspecified lower limb +C2837976|T191|PT|C40.30|ICD10CM|Malignant neoplasm of short bones of unspecified lower limb|Malignant neoplasm of short bones of unspecified lower limb +C2837977|T191|AB|C40.31|ICD10CM|Malignant neoplasm of short bones of right lower limb|Malignant neoplasm of short bones of right lower limb +C2837977|T191|PT|C40.31|ICD10CM|Malignant neoplasm of short bones of right lower limb|Malignant neoplasm of short bones of right lower limb +C2837978|T191|AB|C40.32|ICD10CM|Malignant neoplasm of short bones of left lower limb|Malignant neoplasm of short bones of left lower limb +C2837978|T191|PT|C40.32|ICD10CM|Malignant neoplasm of short bones of left lower limb|Malignant neoplasm of short bones of left lower limb +C0348346|T191|AB|C40.8|ICD10CM|Malig neoplasm of ovrlp sites of bone/artic cartl of limb|Malig neoplasm of ovrlp sites of bone/artic cartl of limb +C0348346|T191|HT|C40.8|ICD10CM|Malignant neoplasm of overlapping sites of bone and articular cartilage of limb|Malignant neoplasm of overlapping sites of bone and articular cartilage of limb +C0348346|T191|PX|C40.8|ICD10|Malignant neoplasm overlapping bone and articular cartilage of limb sites|Malignant neoplasm overlapping bone and articular cartilage of limb sites +C0348346|T191|PS|C40.8|ICD10|Overlapping lesion of bone and articular cartilage of limbs|Overlapping lesion of bone and articular cartilage of limbs +C2837979|T191|AB|C40.80|ICD10CM|Malig neoplm of ovrlp sites of bone/artic cartl of unsp limb|Malig neoplm of ovrlp sites of bone/artic cartl of unsp limb +C2837979|T191|PT|C40.80|ICD10CM|Malignant neoplasm of overlapping sites of bone and articular cartilage of unspecified limb|Malignant neoplasm of overlapping sites of bone and articular cartilage of unspecified limb +C2837980|T191|AB|C40.81|ICD10CM|Malig neoplm of ovrlp sites of bone/artic cartl of r limb|Malig neoplm of ovrlp sites of bone/artic cartl of r limb +C2837980|T191|PT|C40.81|ICD10CM|Malignant neoplasm of overlapping sites of bone and articular cartilage of right limb|Malignant neoplasm of overlapping sites of bone and articular cartilage of right limb +C2837981|T191|AB|C40.82|ICD10CM|Malig neoplm of ovrlp sites of bone/artic cartl of left limb|Malig neoplm of ovrlp sites of bone/artic cartl of left limb +C2837981|T191|PT|C40.82|ICD10CM|Malignant neoplasm of overlapping sites of bone and articular cartilage of left limb|Malignant neoplasm of overlapping sites of bone and articular cartilage of left limb +C0348347|T191|PS|C40.9|ICD10|Bone and articular cartilage of limb, unspecified|Bone and articular cartilage of limb, unspecified +C0348347|T191|PX|C40.9|ICD10|Malignant neoplasm of bone and articular cartilage of limb, unspecified|Malignant neoplasm of bone and articular cartilage of limb, unspecified +C0348347|T191|AB|C40.9|ICD10CM|Malignant neoplasm of unsp bones and artic cartilage of limb|Malignant neoplasm of unsp bones and artic cartilage of limb +C0348347|T191|HT|C40.9|ICD10CM|Malignant neoplasm of unspecified bones and articular cartilage of limb|Malignant neoplasm of unspecified bones and articular cartilage of limb +C2837982|T191|AB|C40.90|ICD10CM|Malig neoplasm of unsp bones and artic cartlg of unsp limb|Malig neoplasm of unsp bones and artic cartlg of unsp limb +C2837982|T191|PT|C40.90|ICD10CM|Malignant neoplasm of unspecified bones and articular cartilage of unspecified limb|Malignant neoplasm of unspecified bones and articular cartilage of unspecified limb +C2837983|T191|AB|C40.91|ICD10CM|Malig neoplasm of unsp bones and artic cartlg of right limb|Malig neoplasm of unsp bones and artic cartlg of right limb +C2837983|T191|PT|C40.91|ICD10CM|Malignant neoplasm of unspecified bones and articular cartilage of right limb|Malignant neoplasm of unspecified bones and articular cartilage of right limb +C2837984|T191|AB|C40.92|ICD10CM|Malig neoplasm of unsp bones and artic cartlg of left limb|Malig neoplasm of unsp bones and artic cartlg of left limb +C2837984|T191|PT|C40.92|ICD10CM|Malignant neoplasm of unspecified bones and articular cartilage of left limb|Malignant neoplasm of unspecified bones and articular cartilage of left limb +C0494153|T191|HT|C41|ICD10|Malignant neoplasm of bone and articular cartilage of other and unspecified sites|Malignant neoplasm of bone and articular cartilage of other and unspecified sites +C0494153|T191|HT|C41|ICD10CM|Malignant neoplasm of bone and articular cartilage of other and unspecified sites|Malignant neoplasm of bone and articular cartilage of other and unspecified sites +C0494153|T191|AB|C41|ICD10CM|Malignant neoplasm of bone/artic cartl of and unsp sites|Malignant neoplasm of bone/artic cartl of and unsp sites +C0346653|T191|PS|C41.0|ICD10|Bones of skull and face|Bones of skull and face +C0346653|T191|PX|C41.0|ICD10|Malignant neoplasm of bones of skull and face|Malignant neoplasm of bones of skull and face +C0346653|T191|PT|C41.0|ICD10CM|Malignant neoplasm of bones of skull and face|Malignant neoplasm of bones of skull and face +C0346653|T191|AB|C41.0|ICD10CM|Malignant neoplasm of bones of skull and face|Malignant neoplasm of bones of skull and face +C0346665|T191|ET|C41.0|ICD10CM|Malignant neoplasm of maxilla (superior)|Malignant neoplasm of maxilla (superior) +C0346660|T191|ET|C41.0|ICD10CM|Malignant neoplasm of orbital bone|Malignant neoplasm of orbital bone +C0153511|T191|ET|C41.1|ICD10CM|Malignant neoplasm of inferior maxilla|Malignant neoplasm of inferior maxilla +C0153511|T191|ET|C41.1|ICD10CM|Malignant neoplasm of lower jaw bone|Malignant neoplasm of lower jaw bone +C0153511|T191|PT|C41.1|ICD10CM|Malignant neoplasm of mandible|Malignant neoplasm of mandible +C0153511|T191|AB|C41.1|ICD10CM|Malignant neoplasm of mandible|Malignant neoplasm of mandible +C0153511|T191|PX|C41.1|ICD10|Malignant neoplasm of mandible|Malignant neoplasm of mandible +C0153511|T191|PS|C41.1|ICD10|Mandible|Mandible +C0346667|T191|PX|C41.2|ICD10|Malignant neoplasm of vertebral column|Malignant neoplasm of vertebral column +C0346667|T191|PT|C41.2|ICD10CM|Malignant neoplasm of vertebral column|Malignant neoplasm of vertebral column +C0346667|T191|AB|C41.2|ICD10CM|Malignant neoplasm of vertebral column|Malignant neoplasm of vertebral column +C0346667|T191|PS|C41.2|ICD10|Vertebral column|Vertebral column +C0153513|T191|PX|C41.3|ICD10|Malignant neoplasm of ribs, sternum and clavicle|Malignant neoplasm of ribs, sternum and clavicle +C0153513|T191|PT|C41.3|ICD10CM|Malignant neoplasm of ribs, sternum and clavicle|Malignant neoplasm of ribs, sternum and clavicle +C0153513|T191|AB|C41.3|ICD10CM|Malignant neoplasm of ribs, sternum and clavicle|Malignant neoplasm of ribs, sternum and clavicle +C0153513|T191|PS|C41.3|ICD10|Ribs, sternum and clavicle|Ribs, sternum and clavicle +C0153516|T191|PX|C41.4|ICD10|Malignant neoplasm of pelvic bones, sacrum and coccyx|Malignant neoplasm of pelvic bones, sacrum and coccyx +C0153516|T191|PT|C41.4|ICD10CM|Malignant neoplasm of pelvic bones, sacrum and coccyx|Malignant neoplasm of pelvic bones, sacrum and coccyx +C0153516|T191|AB|C41.4|ICD10CM|Malignant neoplasm of pelvic bones, sacrum and coccyx|Malignant neoplasm of pelvic bones, sacrum and coccyx +C0153516|T191|PS|C41.4|ICD10|Pelvic bones, sacrum and coccyx|Pelvic bones, sacrum and coccyx +C0348348|T191|PX|C41.8|ICD10|Malignant neoplasm overlapping bone and articular cartilage sites|Malignant neoplasm overlapping bone and articular cartilage sites +C0348348|T191|PS|C41.8|ICD10|Overlapping lesion of bone and articular cartilage|Overlapping lesion of bone and articular cartilage +C0153509|T191|PS|C41.9|ICD10|Bone and articular cartilage, unspecified|Bone and articular cartilage, unspecified +C0153509|T191|AB|C41.9|ICD10CM|Malignant neoplasm of bone and articular cartilage, unsp|Malignant neoplasm of bone and articular cartilage, unsp +C0153509|T191|PT|C41.9|ICD10CM|Malignant neoplasm of bone and articular cartilage, unspecified|Malignant neoplasm of bone and articular cartilage, unspecified +C0153509|T191|PX|C41.9|ICD10|Malignant neoplasm of bone and articular cartilage, unspecified|Malignant neoplasm of bone and articular cartilage, unspecified +C0151779|T191|HT|C43|ICD10|Malignant melanoma of skin|Malignant melanoma of skin +C0151779|T191|HT|C43|ICD10CM|Malignant melanoma of skin|Malignant melanoma of skin +C0151779|T191|AB|C43|ICD10CM|Malignant melanoma of skin|Malignant melanoma of skin +C0348349|T191|HT|C43-C44|ICD10CM|Melanoma and other malignant neoplasms of skin (C43-C44)|Melanoma and other malignant neoplasms of skin (C43-C44) +C0348349|T191|HT|C43-C44.9|ICD10|Melanoma and other malignant neoplasms of skin|Melanoma and other malignant neoplasms of skin +C0153529|T191|PT|C43.0|ICD10|Malignant melanoma of lip|Malignant melanoma of lip +C0153529|T191|PT|C43.0|ICD10CM|Malignant melanoma of lip|Malignant melanoma of lip +C0153529|T191|AB|C43.0|ICD10CM|Malignant melanoma of lip|Malignant melanoma of lip +C3665588|T191|PT|C43.1|ICD10|Malignant melanoma of eyelid, including canthus|Malignant melanoma of eyelid, including canthus +C3665588|T191|HT|C43.1|ICD10CM|Malignant melanoma of eyelid, including canthus|Malignant melanoma of eyelid, including canthus +C3665588|T191|AB|C43.1|ICD10CM|Malignant melanoma of eyelid, including canthus|Malignant melanoma of eyelid, including canthus +C2837985|T191|AB|C43.10|ICD10CM|Malignant melanoma of unspecified eyelid, including canthus|Malignant melanoma of unspecified eyelid, including canthus +C2837985|T191|PT|C43.10|ICD10CM|Malignant melanoma of unspecified eyelid, including canthus|Malignant melanoma of unspecified eyelid, including canthus +C2837986|T191|AB|C43.11|ICD10CM|Malignant melanoma of right eyelid, including canthus|Malignant melanoma of right eyelid, including canthus +C2837986|T191|HT|C43.11|ICD10CM|Malignant melanoma of right eyelid, including canthus|Malignant melanoma of right eyelid, including canthus +C4702890|T191|AB|C43.111|ICD10CM|Malignant melanoma of right upper eyelid, including canthus|Malignant melanoma of right upper eyelid, including canthus +C4702890|T191|PT|C43.111|ICD10CM|Malignant melanoma of right upper eyelid, including canthus|Malignant melanoma of right upper eyelid, including canthus +C4702891|T191|PT|C43.112|ICD10CM|Malignant melanoma of right lower eyelid, including canthus|Malignant melanoma of right lower eyelid, including canthus +C4702891|T191|AB|C43.112|ICD10CM|Malignant melanoma of right lower eyelid, including canthus|Malignant melanoma of right lower eyelid, including canthus +C2837987|T191|AB|C43.12|ICD10CM|Malignant melanoma of left eyelid, including canthus|Malignant melanoma of left eyelid, including canthus +C2837987|T191|HT|C43.12|ICD10CM|Malignant melanoma of left eyelid, including canthus|Malignant melanoma of left eyelid, including canthus +C4702892|T191|PT|C43.121|ICD10CM|Malignant melanoma of left upper eyelid, including canthus|Malignant melanoma of left upper eyelid, including canthus +C4702892|T191|AB|C43.121|ICD10CM|Malignant melanoma of left upper eyelid, including canthus|Malignant melanoma of left upper eyelid, including canthus +C4702893|T191|AB|C43.122|ICD10CM|Malignant melanoma of left lower eyelid, including canthus|Malignant melanoma of left lower eyelid, including canthus +C4702893|T191|PT|C43.122|ICD10CM|Malignant melanoma of left lower eyelid, including canthus|Malignant melanoma of left lower eyelid, including canthus +C0346773|T191|HT|C43.2|ICD10CM|Malignant melanoma of ear and external auricular canal|Malignant melanoma of ear and external auricular canal +C0346773|T191|AB|C43.2|ICD10CM|Malignant melanoma of ear and external auricular canal|Malignant melanoma of ear and external auricular canal +C0346773|T191|PT|C43.2|ICD10|Malignant melanoma of ear and external auricular canal|Malignant melanoma of ear and external auricular canal +C2837988|T191|AB|C43.20|ICD10CM|Malignant melanoma of unsp ear and external auricular canal|Malignant melanoma of unsp ear and external auricular canal +C2837988|T191|PT|C43.20|ICD10CM|Malignant melanoma of unspecified ear and external auricular canal|Malignant melanoma of unspecified ear and external auricular canal +C2837989|T191|AB|C43.21|ICD10CM|Malignant melanoma of right ear and external auricular canal|Malignant melanoma of right ear and external auricular canal +C2837989|T191|PT|C43.21|ICD10CM|Malignant melanoma of right ear and external auricular canal|Malignant melanoma of right ear and external auricular canal +C2837990|T191|AB|C43.22|ICD10CM|Malignant melanoma of left ear and external auricular canal|Malignant melanoma of left ear and external auricular canal +C2837990|T191|PT|C43.22|ICD10CM|Malignant melanoma of left ear and external auricular canal|Malignant melanoma of left ear and external auricular canal +C0348350|T191|PT|C43.3|ICD10|Malignant melanoma of other and unspecified parts of face|Malignant melanoma of other and unspecified parts of face +C0348350|T191|HT|C43.3|ICD10CM|Malignant melanoma of other and unspecified parts of face|Malignant melanoma of other and unspecified parts of face +C0348350|T191|AB|C43.3|ICD10CM|Malignant melanoma of other and unspecified parts of face|Malignant melanoma of other and unspecified parts of face +C2837991|T191|AB|C43.30|ICD10CM|Malignant melanoma of unspecified part of face|Malignant melanoma of unspecified part of face +C2837991|T191|PT|C43.30|ICD10CM|Malignant melanoma of unspecified part of face|Malignant melanoma of unspecified part of face +C2837992|T191|AB|C43.31|ICD10CM|Malignant melanoma of nose|Malignant melanoma of nose +C2837992|T191|PT|C43.31|ICD10CM|Malignant melanoma of nose|Malignant melanoma of nose +C2837993|T191|AB|C43.39|ICD10CM|Malignant melanoma of other parts of face|Malignant melanoma of other parts of face +C2837993|T191|PT|C43.39|ICD10CM|Malignant melanoma of other parts of face|Malignant melanoma of other parts of face +C0346782|T191|PT|C43.4|ICD10CM|Malignant melanoma of scalp and neck|Malignant melanoma of scalp and neck +C0346782|T191|AB|C43.4|ICD10CM|Malignant melanoma of scalp and neck|Malignant melanoma of scalp and neck +C0346782|T191|PT|C43.4|ICD10|Malignant melanoma of scalp and neck|Malignant melanoma of scalp and neck +C1305887|T191|PT|C43.5|ICD10|Malignant melanoma of trunk|Malignant melanoma of trunk +C1305887|T191|HT|C43.5|ICD10CM|Malignant melanoma of trunk|Malignant melanoma of trunk +C1305887|T191|AB|C43.5|ICD10CM|Malignant melanoma of trunk|Malignant melanoma of trunk +C2837994|T191|ET|C43.51|ICD10CM|Malignant melanoma of anal margin|Malignant melanoma of anal margin +C2837995|T191|AB|C43.51|ICD10CM|Malignant melanoma of anal skin|Malignant melanoma of anal skin +C2837995|T191|PT|C43.51|ICD10CM|Malignant melanoma of anal skin|Malignant melanoma of anal skin +C0346790|T191|ET|C43.51|ICD10CM|Malignant melanoma of perianal skin|Malignant melanoma of perianal skin +C0684503|T191|PT|C43.52|ICD10CM|Malignant melanoma of skin of breast|Malignant melanoma of skin of breast +C0684503|T191|AB|C43.52|ICD10CM|Malignant melanoma of skin of breast|Malignant melanoma of skin of breast +C2837996|T191|AB|C43.59|ICD10CM|Malignant melanoma of other part of trunk|Malignant melanoma of other part of trunk +C2837996|T191|PT|C43.59|ICD10CM|Malignant melanoma of other part of trunk|Malignant melanoma of other part of trunk +C1112533|T191|HT|C43.6|ICD10CM|Malignant melanoma of upper limb, including shoulder|Malignant melanoma of upper limb, including shoulder +C1112533|T191|AB|C43.6|ICD10CM|Malignant melanoma of upper limb, including shoulder|Malignant melanoma of upper limb, including shoulder +C1112533|T191|PT|C43.6|ICD10|Malignant melanoma of upper limb, including shoulder|Malignant melanoma of upper limb, including shoulder +C2837997|T191|AB|C43.60|ICD10CM|Malignant melanoma of unsp upper limb, including shoulder|Malignant melanoma of unsp upper limb, including shoulder +C2837997|T191|PT|C43.60|ICD10CM|Malignant melanoma of unspecified upper limb, including shoulder|Malignant melanoma of unspecified upper limb, including shoulder +C2837998|T191|AB|C43.61|ICD10CM|Malignant melanoma of right upper limb, including shoulder|Malignant melanoma of right upper limb, including shoulder +C2837998|T191|PT|C43.61|ICD10CM|Malignant melanoma of right upper limb, including shoulder|Malignant melanoma of right upper limb, including shoulder +C2837999|T191|AB|C43.62|ICD10CM|Malignant melanoma of left upper limb, including shoulder|Malignant melanoma of left upper limb, including shoulder +C2837999|T191|PT|C43.62|ICD10CM|Malignant melanoma of left upper limb, including shoulder|Malignant melanoma of left upper limb, including shoulder +C1112532|T191|HT|C43.7|ICD10CM|Malignant melanoma of lower limb, including hip|Malignant melanoma of lower limb, including hip +C1112532|T191|AB|C43.7|ICD10CM|Malignant melanoma of lower limb, including hip|Malignant melanoma of lower limb, including hip +C1112532|T191|PT|C43.7|ICD10|Malignant melanoma of lower limb, including hip|Malignant melanoma of lower limb, including hip +C2838000|T191|AB|C43.70|ICD10CM|Malignant melanoma of unspecified lower limb, including hip|Malignant melanoma of unspecified lower limb, including hip +C2838000|T191|PT|C43.70|ICD10CM|Malignant melanoma of unspecified lower limb, including hip|Malignant melanoma of unspecified lower limb, including hip +C2838001|T191|AB|C43.71|ICD10CM|Malignant melanoma of right lower limb, including hip|Malignant melanoma of right lower limb, including hip +C2838001|T191|PT|C43.71|ICD10CM|Malignant melanoma of right lower limb, including hip|Malignant melanoma of right lower limb, including hip +C2838002|T191|AB|C43.72|ICD10CM|Malignant melanoma of left lower limb, including hip|Malignant melanoma of left lower limb, including hip +C2838002|T191|PT|C43.72|ICD10CM|Malignant melanoma of left lower limb, including hip|Malignant melanoma of left lower limb, including hip +C0349354|T191|AB|C43.8|ICD10CM|Malignant melanoma of overlapping sites of skin|Malignant melanoma of overlapping sites of skin +C0349354|T191|PT|C43.8|ICD10CM|Malignant melanoma of overlapping sites of skin|Malignant melanoma of overlapping sites of skin +C0349354|T191|PT|C43.8|ICD10|Overlapping malignant melanoma of skin|Overlapping malignant melanoma of skin +C0151779|T191|PT|C43.9|ICD10|Malignant melanoma of skin, unspecified|Malignant melanoma of skin, unspecified +C0151779|T191|PT|C43.9|ICD10CM|Malignant melanoma of skin, unspecified|Malignant melanoma of skin, unspecified +C0151779|T191|AB|C43.9|ICD10CM|Malignant melanoma of skin, unspecified|Malignant melanoma of skin, unspecified +C2977901|T191|ET|C43.9|ICD10CM|Malignant melanoma of unspecified site of skin|Malignant melanoma of unspecified site of skin +C0151779|T191|ET|C43.9|ICD10CM|Melanoma (malignant) NOS|Melanoma (malignant) NOS +C1382026|T191|ET|C44|ICD10CM|malignant neoplasm of sebaceous glands|malignant neoplasm of sebaceous glands +C1321904|T191|ET|C44|ICD10CM|malignant neoplasm of sweat glands|malignant neoplasm of sweat glands +C3161362|T191|AB|C44|ICD10CM|Other and unspecified malignant neoplasm of skin|Other and unspecified malignant neoplasm of skin +C3161362|T191|HT|C44|ICD10CM|Other and unspecified malignant neoplasm of skin|Other and unspecified malignant neoplasm of skin +C0153538|T191|HT|C44|ICD10|Other malignant neoplasms of skin|Other malignant neoplasms of skin +C0346724|T191|PX|C44.0|ICD10|Malignant neoplasm of skin of lip|Malignant neoplasm of skin of lip +C3263726|T191|AB|C44.0|ICD10CM|Other and unspecified malignant neoplasm of skin of lip|Other and unspecified malignant neoplasm of skin of lip +C3263726|T191|HT|C44.0|ICD10CM|Other and unspecified malignant neoplasm of skin of lip|Other and unspecified malignant neoplasm of skin of lip +C0346724|T191|PS|C44.0|ICD10|Skin of lip|Skin of lip +C3161037|T191|AB|C44.00|ICD10CM|Unspecified malignant neoplasm of skin of lip|Unspecified malignant neoplasm of skin of lip +C3161037|T191|PT|C44.00|ICD10CM|Unspecified malignant neoplasm of skin of lip|Unspecified malignant neoplasm of skin of lip +C1274259|T191|PT|C44.01|ICD10CM|Basal cell carcinoma of skin of lip|Basal cell carcinoma of skin of lip +C1274259|T191|AB|C44.01|ICD10CM|Basal cell carcinoma of skin of lip|Basal cell carcinoma of skin of lip +C3161038|T191|AB|C44.02|ICD10CM|Squamous cell carcinoma of skin of lip|Squamous cell carcinoma of skin of lip +C3161038|T191|PT|C44.02|ICD10CM|Squamous cell carcinoma of skin of lip|Squamous cell carcinoma of skin of lip +C3161039|T191|AB|C44.09|ICD10CM|Other specified malignant neoplasm of skin of lip|Other specified malignant neoplasm of skin of lip +C3161039|T191|PT|C44.09|ICD10CM|Other specified malignant neoplasm of skin of lip|Other specified malignant neoplasm of skin of lip +C0496796|T191|PX|C44.1|ICD10|Malignant neoplasm of skin of eyelid, including canthus|Malignant neoplasm of skin of eyelid, including canthus +C3161363|T191|AB|C44.1|ICD10CM|Oth and unsp malignant neoplasm skin/ eyelid, inc canthus|Oth and unsp malignant neoplasm skin/ eyelid, inc canthus +C3161363|T191|HT|C44.1|ICD10CM|Other and unspecified malignant neoplasm of skin of eyelid, including canthus|Other and unspecified malignant neoplasm of skin of eyelid, including canthus +C0496796|T191|PS|C44.1|ICD10|Skin of eyelid, including canthus|Skin of eyelid, including canthus +C2838004|T191|AB|C44.10|ICD10CM|Unsp malignant neoplasm of skin of eyelid, including canthus|Unsp malignant neoplasm of skin of eyelid, including canthus +C2838004|T191|HT|C44.10|ICD10CM|Unspecified malignant neoplasm of skin of eyelid, including canthus|Unspecified malignant neoplasm of skin of eyelid, including canthus +C3263727|T191|AB|C44.101|ICD10CM|Unsp malignant neoplasm skin/ unsp eyelid, including canthus|Unsp malignant neoplasm skin/ unsp eyelid, including canthus +C3263727|T191|PT|C44.101|ICD10CM|Unspecified malignant neoplasm of skin of unspecified eyelid, including canthus|Unspecified malignant neoplasm of skin of unspecified eyelid, including canthus +C3263728|T191|AB|C44.102|ICD10CM|Unsp malignant neoplasm skin/ right eyelid, inc canthus|Unsp malignant neoplasm skin/ right eyelid, inc canthus +C3263728|T191|HT|C44.102|ICD10CM|Unspecified malignant neoplasm of skin of right eyelid, including canthus|Unspecified malignant neoplasm of skin of right eyelid, including canthus +C4554190|T191|AB|C44.1021|ICD10CM|Unsp malig neoplasm skin/ right upper eyelid, inc canthus|Unsp malig neoplasm skin/ right upper eyelid, inc canthus +C4554190|T191|PT|C44.1021|ICD10CM|Unspecified malignant neoplasm of skin of right upper eyelid, including canthus|Unspecified malignant neoplasm of skin of right upper eyelid, including canthus +C4554191|T191|AB|C44.1022|ICD10CM|Unsp malig neoplasm skin/ right lower eyelid, inc canthus|Unsp malig neoplasm skin/ right lower eyelid, inc canthus +C4554191|T191|PT|C44.1022|ICD10CM|Unspecified malignant neoplasm of skin of right lower eyelid, including canthus|Unspecified malignant neoplasm of skin of right lower eyelid, including canthus +C3263729|T191|AB|C44.109|ICD10CM|Unsp malignant neoplasm skin/ left eyelid, including canthus|Unsp malignant neoplasm skin/ left eyelid, including canthus +C3263729|T191|HT|C44.109|ICD10CM|Unspecified malignant neoplasm of skin of left eyelid, including canthus|Unspecified malignant neoplasm of skin of left eyelid, including canthus +C4554192|T191|AB|C44.1091|ICD10CM|Unsp malignant neoplasm skin/ left upper eyelid, inc canthus|Unsp malignant neoplasm skin/ left upper eyelid, inc canthus +C4554192|T191|PT|C44.1091|ICD10CM|Unspecified malignant neoplasm of skin of left upper eyelid, including canthus|Unspecified malignant neoplasm of skin of left upper eyelid, including canthus +C4554193|T191|AB|C44.1092|ICD10CM|Unsp malignant neoplasm skin/ left lower eyelid, inc canthus|Unsp malignant neoplasm skin/ left lower eyelid, inc canthus +C4554193|T191|PT|C44.1092|ICD10CM|Unspecified malignant neoplasm of skin of left lower eyelid, including canthus|Unspecified malignant neoplasm of skin of left lower eyelid, including canthus +C3161041|T191|AB|C44.11|ICD10CM|Basal cell carcinoma of skin of eyelid, including canthus|Basal cell carcinoma of skin of eyelid, including canthus +C3161041|T191|HT|C44.11|ICD10CM|Basal cell carcinoma of skin of eyelid, including canthus|Basal cell carcinoma of skin of eyelid, including canthus +C3263731|T191|PT|C44.111|ICD10CM|Basal cell carcinoma of skin of unspecified eyelid, including canthus|Basal cell carcinoma of skin of unspecified eyelid, including canthus +C3263731|T191|AB|C44.111|ICD10CM|Basal cell carcinoma skin/ unsp eyelid, including canthus|Basal cell carcinoma skin/ unsp eyelid, including canthus +C3263732|T191|HT|C44.112|ICD10CM|Basal cell carcinoma of skin of right eyelid, including canthus|Basal cell carcinoma of skin of right eyelid, including canthus +C3263732|T191|AB|C44.112|ICD10CM|Basal cell carcinoma skin/ right eyelid, including canthus|Basal cell carcinoma skin/ right eyelid, including canthus +C4553805|T191|PT|C44.1121|ICD10CM|Basal cell carcinoma of skin of right upper eyelid, including canthus|Basal cell carcinoma of skin of right upper eyelid, including canthus +C4553805|T191|AB|C44.1121|ICD10CM|Basal cell carcinoma skin/ right upper eyelid, inc canthus|Basal cell carcinoma skin/ right upper eyelid, inc canthus +C4553810|T191|PT|C44.1122|ICD10CM|Basal cell carcinoma of skin of right lower eyelid, including canthus|Basal cell carcinoma of skin of right lower eyelid, including canthus +C4553810|T191|AB|C44.1122|ICD10CM|Basal cell carcinoma skin/ right lower eyelid, inc canthus|Basal cell carcinoma skin/ right lower eyelid, inc canthus +C3263733|T191|HT|C44.119|ICD10CM|Basal cell carcinoma of skin of left eyelid, including canthus|Basal cell carcinoma of skin of left eyelid, including canthus +C3263733|T191|AB|C44.119|ICD10CM|Basal cell carcinoma skin/ left eyelid, including canthus|Basal cell carcinoma skin/ left eyelid, including canthus +C4553807|T191|PT|C44.1191|ICD10CM|Basal cell carcinoma of skin of left upper eyelid, including canthus|Basal cell carcinoma of skin of left upper eyelid, including canthus +C4553807|T191|AB|C44.1191|ICD10CM|Basal cell carcinoma skin/ left upper eyelid, inc canthus|Basal cell carcinoma skin/ left upper eyelid, inc canthus +C4553802|T191|PT|C44.1192|ICD10CM|Basal cell carcinoma of skin of left lower eyelid, including canthus|Basal cell carcinoma of skin of left lower eyelid, including canthus +C4553802|T191|AB|C44.1192|ICD10CM|Basal cell carcinoma skin/ left lower eyelid, inc canthus|Basal cell carcinoma skin/ left lower eyelid, inc canthus +C3263734|T191|AB|C44.12|ICD10CM|Squamous cell carcinoma of skin of eyelid, including canthus|Squamous cell carcinoma of skin of eyelid, including canthus +C3263734|T191|HT|C44.12|ICD10CM|Squamous cell carcinoma of skin of eyelid, including canthus|Squamous cell carcinoma of skin of eyelid, including canthus +C3263735|T191|PT|C44.121|ICD10CM|Squamous cell carcinoma of skin of unspecified eyelid, including canthus|Squamous cell carcinoma of skin of unspecified eyelid, including canthus +C3263735|T191|AB|C44.121|ICD10CM|Squamous cell carcinoma skin/ unsp eyelid, including canthus|Squamous cell carcinoma skin/ unsp eyelid, including canthus +C3263736|T191|HT|C44.122|ICD10CM|Squamous cell carcinoma of skin of right eyelid, including canthus|Squamous cell carcinoma of skin of right eyelid, including canthus +C3263736|T191|AB|C44.122|ICD10CM|Squamous cell carcinoma skin/ right eyelid, inc canthus|Squamous cell carcinoma skin/ right eyelid, inc canthus +C4553804|T191|PT|C44.1221|ICD10CM|Squamous cell carcinoma of skin of right upper eyelid, including canthus|Squamous cell carcinoma of skin of right upper eyelid, including canthus +C4553804|T191|AB|C44.1221|ICD10CM|Squamous cell carcinoma skin/ r upper eyelid, inc canthus|Squamous cell carcinoma skin/ r upper eyelid, inc canthus +C4553809|T191|PT|C44.1222|ICD10CM|Squamous cell carcinoma of skin of right lower eyelid, including canthus|Squamous cell carcinoma of skin of right lower eyelid, including canthus +C4553809|T191|AB|C44.1222|ICD10CM|Squamous cell carcinoma skin/ right low eyelid, inc canthus|Squamous cell carcinoma skin/ right low eyelid, inc canthus +C3263737|T191|HT|C44.129|ICD10CM|Squamous cell carcinoma of skin of left eyelid, including canthus|Squamous cell carcinoma of skin of left eyelid, including canthus +C3263737|T191|AB|C44.129|ICD10CM|Squamous cell carcinoma skin/ left eyelid, including canthus|Squamous cell carcinoma skin/ left eyelid, including canthus +C4702894|T191|PT|C44.1291|ICD10CM|Squamous cell carcinoma of skin of left upper eyelid, including canthus|Squamous cell carcinoma of skin of left upper eyelid, including canthus +C4702894|T191|AB|C44.1291|ICD10CM|Squamous cell carcinoma skin/ left upper eyelid, inc canthus|Squamous cell carcinoma skin/ left upper eyelid, inc canthus +C4702895|T191|PT|C44.1292|ICD10CM|Squamous cell carcinoma of skin of left lower eyelid, including canthus|Squamous cell carcinoma of skin of left lower eyelid, including canthus +C4702895|T191|AB|C44.1292|ICD10CM|Squamous cell carcinoma skin/ left lower eyelid, inc canthus|Squamous cell carcinoma skin/ left lower eyelid, inc canthus +C4702896|T191|HT|C44.13|ICD10CM|Sebaceous cell carcinoma of skin of eyelid, including canthus|Sebaceous cell carcinoma of skin of eyelid, including canthus +C4702896|T191|AB|C44.13|ICD10CM|Sebaceous cell carcinoma skin/ eyelid, including canthus|Sebaceous cell carcinoma skin/ eyelid, including canthus +C4554194|T191|PT|C44.131|ICD10CM|Sebaceous cell carcinoma of skin of unspecified eyelid, including canthus|Sebaceous cell carcinoma of skin of unspecified eyelid, including canthus +C4554194|T191|AB|C44.131|ICD10CM|Sebaceous cell carcinoma skin/ unsplid, including canthus|Sebaceous cell carcinoma skin/ unsplid, including canthus +C4702897|T191|HT|C44.132|ICD10CM|Sebaceous cell carcinoma of skin of right eyelid, including canthus|Sebaceous cell carcinoma of skin of right eyelid, including canthus +C4702897|T191|AB|C44.132|ICD10CM|Sebaceous cell carcinoma skin/ right eyelid, inc canthus|Sebaceous cell carcinoma skin/ right eyelid, inc canthus +C4553803|T191|PT|C44.1321|ICD10CM|Sebaceous cell carcinoma of skin of right upper eyelid, including canthus|Sebaceous cell carcinoma of skin of right upper eyelid, including canthus +C4553803|T191|AB|C44.1321|ICD10CM|Sebaceous cell carcinoma skin/ r upper eyelid, inc canthus|Sebaceous cell carcinoma skin/ r upper eyelid, inc canthus +C4702898|T191|PT|C44.1322|ICD10CM|Sebaceous cell carcinoma of skin of right lower eyelid, including canthus|Sebaceous cell carcinoma of skin of right lower eyelid, including canthus +C4702898|T191|AB|C44.1322|ICD10CM|Sebaceous cell carcinoma skin/ right low eyelid, inc canthus|Sebaceous cell carcinoma skin/ right low eyelid, inc canthus +C4702899|T191|HT|C44.139|ICD10CM|Sebaceous cell carcinoma of skin of left eyelid, including canthus|Sebaceous cell carcinoma of skin of left eyelid, including canthus +C4702899|T191|AB|C44.139|ICD10CM|Sebaceous cell carcinoma skin/ left eyelid, inc canthus|Sebaceous cell carcinoma skin/ left eyelid, inc canthus +C4553806|T191|PT|C44.1391|ICD10CM|Sebaceous cell carcinoma of skin of left upper eyelid, including canthus|Sebaceous cell carcinoma of skin of left upper eyelid, including canthus +C4553806|T191|AB|C44.1391|ICD10CM|Sebaceous cell carcinoma skin/ left upr eyelid, inc canthus|Sebaceous cell carcinoma skin/ left upr eyelid, inc canthus +C4553801|T191|PT|C44.1392|ICD10CM|Sebaceous cell carcinoma of skin of left lower eyelid, including canthus|Sebaceous cell carcinoma of skin of left lower eyelid, including canthus +C4553801|T191|AB|C44.1392|ICD10CM|Sebaceous cell carcinoma skin/ left low eyelid, inc canthus|Sebaceous cell carcinoma skin/ left low eyelid, inc canthus +C3263738|T191|AB|C44.19|ICD10CM|Oth malignant neoplasm of skin of eyelid, including canthus|Oth malignant neoplasm of skin of eyelid, including canthus +C3263738|T191|HT|C44.19|ICD10CM|Other specified malignant neoplasm of skin of eyelid, including canthus|Other specified malignant neoplasm of skin of eyelid, including canthus +C3263739|T191|AB|C44.191|ICD10CM|Oth malignant neoplasm skin/ unsp eyelid, including canthus|Oth malignant neoplasm skin/ unsp eyelid, including canthus +C3263739|T191|PT|C44.191|ICD10CM|Other specified malignant neoplasm of skin of unspecified eyelid, including canthus|Other specified malignant neoplasm of skin of unspecified eyelid, including canthus +C3263740|T191|AB|C44.192|ICD10CM|Oth malignant neoplasm skin/ right eyelid, including canthus|Oth malignant neoplasm skin/ right eyelid, including canthus +C3263740|T191|HT|C44.192|ICD10CM|Other specified malignant neoplasm of skin of right eyelid, including canthus|Other specified malignant neoplasm of skin of right eyelid, including canthus +C4702904|T191|AB|C44.1921|ICD10CM|Oth malignant neoplasm skin/ right upper eyelid, inc canthus|Oth malignant neoplasm skin/ right upper eyelid, inc canthus +C4702904|T191|PT|C44.1921|ICD10CM|Other specified malignant neoplasm of skin of right upper eyelid, including canthus|Other specified malignant neoplasm of skin of right upper eyelid, including canthus +C4702905|T191|AB|C44.1922|ICD10CM|Oth malignant neoplasm skin/ right lower eyelid, inc canthus|Oth malignant neoplasm skin/ right lower eyelid, inc canthus +C4702905|T191|PT|C44.1922|ICD10CM|Other specified malignant neoplasm of skin of right lower eyelid, including canthus|Other specified malignant neoplasm of skin of right lower eyelid, including canthus +C3263741|T191|AB|C44.199|ICD10CM|Oth malignant neoplasm skin/ left eyelid, including canthus|Oth malignant neoplasm skin/ left eyelid, including canthus +C3263741|T191|HT|C44.199|ICD10CM|Other specified malignant neoplasm of skin of left eyelid, including canthus|Other specified malignant neoplasm of skin of left eyelid, including canthus +C4702906|T191|AB|C44.1991|ICD10CM|Oth malignant neoplasm skin/ left upper eyelid, inc canthus|Oth malignant neoplasm skin/ left upper eyelid, inc canthus +C4702906|T191|PT|C44.1991|ICD10CM|Other specified malignant neoplasm of skin of left upper eyelid, including canthus|Other specified malignant neoplasm of skin of left upper eyelid, including canthus +C4702907|T191|AB|C44.1992|ICD10CM|Oth malignant neoplasm skin/ left lower eyelid, inc canthus|Oth malignant neoplasm skin/ left lower eyelid, inc canthus +C4702907|T191|PT|C44.1992|ICD10CM|Other specified malignant neoplasm of skin of left lower eyelid, including canthus|Other specified malignant neoplasm of skin of left lower eyelid, including canthus +C0346726|T191|PX|C44.2|ICD10|Malignant neoplasm of skin of ear and external auricular canal|Malignant neoplasm of skin of ear and external auricular canal +C3263742|T191|AB|C44.2|ICD10CM|Oth and unsp malig neoplasm skin/ ear and extrn auric canal|Oth and unsp malig neoplasm skin/ ear and extrn auric canal +C3263742|T191|HT|C44.2|ICD10CM|Other and unspecified malignant neoplasm of skin of ear and external auricular canal|Other and unspecified malignant neoplasm of skin of ear and external auricular canal +C0346726|T191|PS|C44.2|ICD10|Skin of ear and external auricular canal|Skin of ear and external auricular canal +C2838007|T191|AB|C44.20|ICD10CM|Unsp malignant neoplasm skin/ ear and external auric canal|Unsp malignant neoplasm skin/ ear and external auric canal +C2838007|T191|HT|C44.20|ICD10CM|Unspecified malignant neoplasm of skin of ear and external auricular canal|Unspecified malignant neoplasm of skin of ear and external auricular canal +C3263743|T191|AB|C44.201|ICD10CM|Unsp malig neoplasm skin/ unsp ear and external auric canal|Unsp malig neoplasm skin/ unsp ear and external auric canal +C3263743|T191|PT|C44.201|ICD10CM|Unspecified malignant neoplasm of skin of unspecified ear and external auricular canal|Unspecified malignant neoplasm of skin of unspecified ear and external auricular canal +C3263744|T191|AB|C44.202|ICD10CM|Unsp malig neoplasm skin/ right ear and external auric canal|Unsp malig neoplasm skin/ right ear and external auric canal +C3263744|T191|PT|C44.202|ICD10CM|Unspecified malignant neoplasm of skin of right ear and external auricular canal|Unspecified malignant neoplasm of skin of right ear and external auricular canal +C3263745|T191|AB|C44.209|ICD10CM|Unsp malig neoplasm skin/ left ear and external auric canal|Unsp malig neoplasm skin/ left ear and external auric canal +C3263745|T191|PT|C44.209|ICD10CM|Unspecified malignant neoplasm of skin of left ear and external auricular canal|Unspecified malignant neoplasm of skin of left ear and external auricular canal +C3263746|T191|HT|C44.21|ICD10CM|Basal cell carcinoma of skin of ear and external auricular canal|Basal cell carcinoma of skin of ear and external auricular canal +C3263746|T191|AB|C44.21|ICD10CM|Basal cell carcinoma skin/ ear and external auricular canal|Basal cell carcinoma skin/ ear and external auricular canal +C3263747|T191|PT|C44.211|ICD10CM|Basal cell carcinoma of skin of unspecified ear and external auricular canal|Basal cell carcinoma of skin of unspecified ear and external auricular canal +C3263747|T191|AB|C44.211|ICD10CM|Basal cell carcinoma skin/ unsp ear and external auric canal|Basal cell carcinoma skin/ unsp ear and external auric canal +C3263748|T191|PT|C44.212|ICD10CM|Basal cell carcinoma of skin of right ear and external auricular canal|Basal cell carcinoma of skin of right ear and external auricular canal +C3263748|T191|AB|C44.212|ICD10CM|Basal cell carcinoma skin/ r ear and external auric canal|Basal cell carcinoma skin/ r ear and external auric canal +C3263749|T191|PT|C44.219|ICD10CM|Basal cell carcinoma of skin of left ear and external auricular canal|Basal cell carcinoma of skin of left ear and external auricular canal +C3263749|T191|AB|C44.219|ICD10CM|Basal cell carcinoma skin/ left ear and external auric canal|Basal cell carcinoma skin/ left ear and external auric canal +C3263750|T191|HT|C44.22|ICD10CM|Squamous cell carcinoma of skin of ear and external auricular canal|Squamous cell carcinoma of skin of ear and external auricular canal +C3263750|T191|AB|C44.22|ICD10CM|Squamous cell carcinoma skin/ ear and external auric canal|Squamous cell carcinoma skin/ ear and external auric canal +C3263751|T191|PT|C44.221|ICD10CM|Squamous cell carcinoma of skin of unspecified ear and external auricular canal|Squamous cell carcinoma of skin of unspecified ear and external auricular canal +C3263751|T191|AB|C44.221|ICD10CM|Squamous cell carcinoma skin/ unsp ear and extrn auric canal|Squamous cell carcinoma skin/ unsp ear and extrn auric canal +C3263752|T191|PT|C44.222|ICD10CM|Squamous cell carcinoma of skin of right ear and external auricular canal|Squamous cell carcinoma of skin of right ear and external auricular canal +C3263752|T191|AB|C44.222|ICD10CM|Squamous cell carcinoma skin/ r ear and external auric canal|Squamous cell carcinoma skin/ r ear and external auric canal +C3263753|T191|PT|C44.229|ICD10CM|Squamous cell carcinoma of skin of left ear and external auricular canal|Squamous cell carcinoma of skin of left ear and external auricular canal +C3263753|T191|AB|C44.229|ICD10CM|Squamous cell carcinoma skin/ left ear and extrn auric canal|Squamous cell carcinoma skin/ left ear and extrn auric canal +C3263754|T191|AB|C44.29|ICD10CM|Oth malignant neoplasm skin/ ear and external auric canal|Oth malignant neoplasm skin/ ear and external auric canal +C3263754|T191|HT|C44.29|ICD10CM|Other specified malignant neoplasm of skin of ear and external auricular canal|Other specified malignant neoplasm of skin of ear and external auricular canal +C3263755|T191|AB|C44.291|ICD10CM|Oth malig neoplasm skin/ unsp ear and external auric canal|Oth malig neoplasm skin/ unsp ear and external auric canal +C3263755|T191|PT|C44.291|ICD10CM|Other specified malignant neoplasm of skin of unspecified ear and external auricular canal|Other specified malignant neoplasm of skin of unspecified ear and external auricular canal +C3263756|T191|AB|C44.292|ICD10CM|Oth malig neoplasm skin/ right ear and external auric canal|Oth malig neoplasm skin/ right ear and external auric canal +C3263756|T191|PT|C44.292|ICD10CM|Other specified malignant neoplasm of skin of right ear and external auricular canal|Other specified malignant neoplasm of skin of right ear and external auricular canal +C3263757|T191|AB|C44.299|ICD10CM|Oth malig neoplasm skin/ left ear and external auric canal|Oth malig neoplasm skin/ left ear and external auric canal +C3263757|T191|PT|C44.299|ICD10CM|Other specified malignant neoplasm of skin of left ear and external auricular canal|Other specified malignant neoplasm of skin of left ear and external auricular canal +C0346729|T191|PX|C44.3|ICD10|Malignant neoplasm of skin of other and unspecified parts of face|Malignant neoplasm of skin of other and unspecified parts of face +C3161365|T191|AB|C44.3|ICD10CM|Oth and unsp malignant neoplasm skin/ and unsp parts of face|Oth and unsp malignant neoplasm skin/ and unsp parts of face +C3161365|T191|HT|C44.3|ICD10CM|Other and unspecified malignant neoplasm of skin of other and unspecified parts of face|Other and unspecified malignant neoplasm of skin of other and unspecified parts of face +C0346729|T191|PS|C44.3|ICD10|Skin of other and unspecified parts of face|Skin of other and unspecified parts of face +C3161048|T047|AB|C44.30|ICD10CM|Unsp malignant neoplasm of skin of and unsp parts of face|Unsp malignant neoplasm of skin of and unsp parts of face +C3161048|T047|HT|C44.30|ICD10CM|Unspecified malignant neoplasm of skin of other and unspecified parts of face|Unspecified malignant neoplasm of skin of other and unspecified parts of face +C3263758|T191|AB|C44.300|ICD10CM|Unsp malignant neoplasm of skin of unspecified part of face|Unsp malignant neoplasm of skin of unspecified part of face +C3263758|T191|PT|C44.300|ICD10CM|Unspecified malignant neoplasm of skin of unspecified part of face|Unspecified malignant neoplasm of skin of unspecified part of face +C3263759|T191|AB|C44.301|ICD10CM|Unspecified malignant neoplasm of skin of nose|Unspecified malignant neoplasm of skin of nose +C3263759|T191|PT|C44.301|ICD10CM|Unspecified malignant neoplasm of skin of nose|Unspecified malignant neoplasm of skin of nose +C0346729|T191|AB|C44.309|ICD10CM|Unsp malignant neoplasm of skin of other parts of face|Unsp malignant neoplasm of skin of other parts of face +C0346729|T191|PT|C44.309|ICD10CM|Unspecified malignant neoplasm of skin of other parts of face|Unspecified malignant neoplasm of skin of other parts of face +C3161049|T191|AB|C44.31|ICD10CM|Basal cell carcinoma of skin of other and unsp parts of face|Basal cell carcinoma of skin of other and unsp parts of face +C3161049|T191|HT|C44.31|ICD10CM|Basal cell carcinoma of skin of other and unspecified parts of face|Basal cell carcinoma of skin of other and unspecified parts of face +C3263760|T191|AB|C44.310|ICD10CM|Basal cell carcinoma of skin of unspecified parts of face|Basal cell carcinoma of skin of unspecified parts of face +C3263760|T191|PT|C44.310|ICD10CM|Basal cell carcinoma of skin of unspecified parts of face|Basal cell carcinoma of skin of unspecified parts of face +C3263761|T191|AB|C44.311|ICD10CM|Basal cell carcinoma of skin of nose|Basal cell carcinoma of skin of nose +C3263761|T191|PT|C44.311|ICD10CM|Basal cell carcinoma of skin of nose|Basal cell carcinoma of skin of nose +C3263762|T191|AB|C44.319|ICD10CM|Basal cell carcinoma of skin of other parts of face|Basal cell carcinoma of skin of other parts of face +C3263762|T191|PT|C44.319|ICD10CM|Basal cell carcinoma of skin of other parts of face|Basal cell carcinoma of skin of other parts of face +C3161050|T191|AB|C44.32|ICD10CM|Squamous cell carcinoma of skin of and unsp parts of face|Squamous cell carcinoma of skin of and unsp parts of face +C3161050|T191|HT|C44.32|ICD10CM|Squamous cell carcinoma of skin of other and unspecified parts of face|Squamous cell carcinoma of skin of other and unspecified parts of face +C3263763|T191|AB|C44.320|ICD10CM|Squamous cell carcinoma of skin of unspecified parts of face|Squamous cell carcinoma of skin of unspecified parts of face +C3263763|T191|PT|C44.320|ICD10CM|Squamous cell carcinoma of skin of unspecified parts of face|Squamous cell carcinoma of skin of unspecified parts of face +C3263764|T191|PT|C44.321|ICD10CM|Squamous cell carcinoma of skin of nose|Squamous cell carcinoma of skin of nose +C3263764|T191|AB|C44.321|ICD10CM|Squamous cell carcinoma of skin of nose|Squamous cell carcinoma of skin of nose +C3263765|T191|AB|C44.329|ICD10CM|Squamous cell carcinoma of skin of other parts of face|Squamous cell carcinoma of skin of other parts of face +C3263765|T191|PT|C44.329|ICD10CM|Squamous cell carcinoma of skin of other parts of face|Squamous cell carcinoma of skin of other parts of face +C3161048|T047|AB|C44.39|ICD10CM|Oth malignant neoplasm of skin of oth and unsp parts of face|Oth malignant neoplasm of skin of oth and unsp parts of face +C3161048|T047|HT|C44.39|ICD10CM|Other specified malignant neoplasm of skin of other and unspecified parts of face|Other specified malignant neoplasm of skin of other and unspecified parts of face +C3263766|T191|AB|C44.390|ICD10CM|Oth malignant neoplasm of skin of unspecified parts of face|Oth malignant neoplasm of skin of unspecified parts of face +C3263766|T191|PT|C44.390|ICD10CM|Other specified malignant neoplasm of skin of unspecified parts of face|Other specified malignant neoplasm of skin of unspecified parts of face +C3263767|T191|AB|C44.391|ICD10CM|Other specified malignant neoplasm of skin of nose|Other specified malignant neoplasm of skin of nose +C3263767|T191|PT|C44.391|ICD10CM|Other specified malignant neoplasm of skin of nose|Other specified malignant neoplasm of skin of nose +C3263768|T191|AB|C44.399|ICD10CM|Oth malignant neoplasm of skin of other parts of face|Oth malignant neoplasm of skin of other parts of face +C3263768|T191|PT|C44.399|ICD10CM|Other specified malignant neoplasm of skin of other parts of face|Other specified malignant neoplasm of skin of other parts of face +C0346736|T191|PX|C44.4|ICD10|Malignant neoplasm of skin of scalp and neck|Malignant neoplasm of skin of scalp and neck +C3161366|T191|AB|C44.4|ICD10CM|Other and unsp malignant neoplasm of skin of scalp and neck|Other and unsp malignant neoplasm of skin of scalp and neck +C3161366|T191|HT|C44.4|ICD10CM|Other and unspecified malignant neoplasm of skin of scalp and neck|Other and unspecified malignant neoplasm of skin of scalp and neck +C0346736|T191|PS|C44.4|ICD10|Skin of scalp and neck|Skin of scalp and neck +C3161051|T191|AB|C44.40|ICD10CM|Unspecified malignant neoplasm of skin of scalp and neck|Unspecified malignant neoplasm of skin of scalp and neck +C3161051|T191|PT|C44.40|ICD10CM|Unspecified malignant neoplasm of skin of scalp and neck|Unspecified malignant neoplasm of skin of scalp and neck +C3161052|T191|AB|C44.41|ICD10CM|Basal cell carcinoma of skin of scalp and neck|Basal cell carcinoma of skin of scalp and neck +C3161052|T191|PT|C44.41|ICD10CM|Basal cell carcinoma of skin of scalp and neck|Basal cell carcinoma of skin of scalp and neck +C3161053|T191|AB|C44.42|ICD10CM|Squamous cell carcinoma of skin of scalp and neck|Squamous cell carcinoma of skin of scalp and neck +C3161053|T191|PT|C44.42|ICD10CM|Squamous cell carcinoma of skin of scalp and neck|Squamous cell carcinoma of skin of scalp and neck +C3263769|T191|AB|C44.49|ICD10CM|Other specified malignant neoplasm of skin of scalp and neck|Other specified malignant neoplasm of skin of scalp and neck +C3263769|T191|PT|C44.49|ICD10CM|Other specified malignant neoplasm of skin of scalp and neck|Other specified malignant neoplasm of skin of scalp and neck +C0496797|T191|PX|C44.5|ICD10|Malignant neoplasm of skin of trunk|Malignant neoplasm of skin of trunk +C3263770|T191|AB|C44.5|ICD10CM|Other and unspecified malignant neoplasm of skin of trunk|Other and unspecified malignant neoplasm of skin of trunk +C3263770|T191|HT|C44.5|ICD10CM|Other and unspecified malignant neoplasm of skin of trunk|Other and unspecified malignant neoplasm of skin of trunk +C0496797|T191|PS|C44.5|ICD10|Skin of trunk|Skin of trunk +C3263771|T191|AB|C44.50|ICD10CM|Unspecified malignant neoplasm of skin of trunk|Unspecified malignant neoplasm of skin of trunk +C3263771|T191|HT|C44.50|ICD10CM|Unspecified malignant neoplasm of skin of trunk|Unspecified malignant neoplasm of skin of trunk +C3263772|T191|ET|C44.500|ICD10CM|Unspecified malignant neoplasm of anal margin|Unspecified malignant neoplasm of anal margin +C3263774|T191|AB|C44.500|ICD10CM|Unspecified malignant neoplasm of anal skin|Unspecified malignant neoplasm of anal skin +C3263774|T191|PT|C44.500|ICD10CM|Unspecified malignant neoplasm of anal skin|Unspecified malignant neoplasm of anal skin +C3263773|T191|ET|C44.500|ICD10CM|Unspecified malignant neoplasm of perianal skin|Unspecified malignant neoplasm of perianal skin +C3263775|T191|AB|C44.501|ICD10CM|Unspecified malignant neoplasm of skin of breast|Unspecified malignant neoplasm of skin of breast +C3263775|T191|PT|C44.501|ICD10CM|Unspecified malignant neoplasm of skin of breast|Unspecified malignant neoplasm of skin of breast +C3263776|T191|AB|C44.509|ICD10CM|Unsp malignant neoplasm of skin of other part of trunk|Unsp malignant neoplasm of skin of other part of trunk +C3263776|T191|PT|C44.509|ICD10CM|Unspecified malignant neoplasm of skin of other part of trunk|Unspecified malignant neoplasm of skin of other part of trunk +C1304294|T191|AB|C44.51|ICD10CM|Basal cell carcinoma of skin of trunk|Basal cell carcinoma of skin of trunk +C1304294|T191|HT|C44.51|ICD10CM|Basal cell carcinoma of skin of trunk|Basal cell carcinoma of skin of trunk +C1332269|T191|ET|C44.510|ICD10CM|Basal cell carcinoma of anal margin|Basal cell carcinoma of anal margin +C3263777|T191|AB|C44.510|ICD10CM|Basal cell carcinoma of anal skin|Basal cell carcinoma of anal skin +C3263777|T191|PT|C44.510|ICD10CM|Basal cell carcinoma of anal skin|Basal cell carcinoma of anal skin +C1332269|T191|ET|C44.510|ICD10CM|Basal cell carcinoma of perianal skin|Basal cell carcinoma of perianal skin +C3263778|T191|PT|C44.511|ICD10CM|Basal cell carcinoma of skin of breast|Basal cell carcinoma of skin of breast +C3263778|T191|AB|C44.511|ICD10CM|Basal cell carcinoma of skin of breast|Basal cell carcinoma of skin of breast +C3263779|T191|AB|C44.519|ICD10CM|Basal cell carcinoma of skin of other part of trunk|Basal cell carcinoma of skin of other part of trunk +C3263779|T191|PT|C44.519|ICD10CM|Basal cell carcinoma of skin of other part of trunk|Basal cell carcinoma of skin of other part of trunk +C1275187|T191|HT|C44.52|ICD10CM|Squamous cell carcinoma of skin of trunk|Squamous cell carcinoma of skin of trunk +C1275187|T191|AB|C44.52|ICD10CM|Squamous cell carcinoma of skin of trunk|Squamous cell carcinoma of skin of trunk +C1412037|T191|ET|C44.520|ICD10CM|Squamous cell carcinoma of anal margin|Squamous cell carcinoma of anal margin +C3263781|T191|AB|C44.520|ICD10CM|Squamous cell carcinoma of anal skin|Squamous cell carcinoma of anal skin +C3263781|T191|PT|C44.520|ICD10CM|Squamous cell carcinoma of anal skin|Squamous cell carcinoma of anal skin +C3263780|T191|ET|C44.520|ICD10CM|Squamous cell carcinoma of perianal skin|Squamous cell carcinoma of perianal skin +C3263782|T191|AB|C44.521|ICD10CM|Squamous cell carcinoma of skin of breast|Squamous cell carcinoma of skin of breast +C3263782|T191|PT|C44.521|ICD10CM|Squamous cell carcinoma of skin of breast|Squamous cell carcinoma of skin of breast +C3263783|T191|AB|C44.529|ICD10CM|Squamous cell carcinoma of skin of other part of trunk|Squamous cell carcinoma of skin of other part of trunk +C3263783|T191|PT|C44.529|ICD10CM|Squamous cell carcinoma of skin of other part of trunk|Squamous cell carcinoma of skin of other part of trunk +C3263784|T191|AB|C44.59|ICD10CM|Other specified malignant neoplasm of skin of trunk|Other specified malignant neoplasm of skin of trunk +C3263784|T191|HT|C44.59|ICD10CM|Other specified malignant neoplasm of skin of trunk|Other specified malignant neoplasm of skin of trunk +C3263785|T191|ET|C44.590|ICD10CM|Other specified malignant neoplasm of anal margin|Other specified malignant neoplasm of anal margin +C3263787|T191|AB|C44.590|ICD10CM|Other specified malignant neoplasm of anal skin|Other specified malignant neoplasm of anal skin +C3263787|T191|PT|C44.590|ICD10CM|Other specified malignant neoplasm of anal skin|Other specified malignant neoplasm of anal skin +C3263786|T191|ET|C44.590|ICD10CM|Other specified malignant neoplasm of perianal skin|Other specified malignant neoplasm of perianal skin +C3263788|T191|AB|C44.591|ICD10CM|Other specified malignant neoplasm of skin of breast|Other specified malignant neoplasm of skin of breast +C3263788|T191|PT|C44.591|ICD10CM|Other specified malignant neoplasm of skin of breast|Other specified malignant neoplasm of skin of breast +C3263789|T191|AB|C44.599|ICD10CM|Oth malignant neoplasm of skin of other part of trunk|Oth malignant neoplasm of skin of other part of trunk +C3263789|T191|PT|C44.599|ICD10CM|Other specified malignant neoplasm of skin of other part of trunk|Other specified malignant neoplasm of skin of other part of trunk +C0496798|T191|PX|C44.6|ICD10|Malignant neoplasm of skin of upper limb, including shoulder|Malignant neoplasm of skin of upper limb, including shoulder +C3161368|T191|AB|C44.6|ICD10CM|Oth and unsp malig neoplasm skin/ upper limb, inc shoulder|Oth and unsp malig neoplasm skin/ upper limb, inc shoulder +C3161368|T191|HT|C44.6|ICD10CM|Other and unspecified malignant neoplasm of skin of upper limb, including shoulder|Other and unspecified malignant neoplasm of skin of upper limb, including shoulder +C0496798|T191|PS|C44.6|ICD10|Skin of upper limb, including shoulder|Skin of upper limb, including shoulder +C2838014|T191|AB|C44.60|ICD10CM|Unsp malignant neoplasm skin/ upper limb, including shoulder|Unsp malignant neoplasm skin/ upper limb, including shoulder +C2838014|T191|HT|C44.60|ICD10CM|Unspecified malignant neoplasm of skin of upper limb, including shoulder|Unspecified malignant neoplasm of skin of upper limb, including shoulder +C3263790|T191|AB|C44.601|ICD10CM|Unsp malignant neoplasm skin/ unsp upper limb, inc shoulder|Unsp malignant neoplasm skin/ unsp upper limb, inc shoulder +C3263790|T191|PT|C44.601|ICD10CM|Unspecified malignant neoplasm of skin of unspecified upper limb, including shoulder|Unspecified malignant neoplasm of skin of unspecified upper limb, including shoulder +C3263791|T191|AB|C44.602|ICD10CM|Unsp malignant neoplasm skin/ right upper limb, inc shoulder|Unsp malignant neoplasm skin/ right upper limb, inc shoulder +C3263791|T191|PT|C44.602|ICD10CM|Unspecified malignant neoplasm of skin of right upper limb, including shoulder|Unspecified malignant neoplasm of skin of right upper limb, including shoulder +C3263792|T191|AB|C44.609|ICD10CM|Unsp malignant neoplasm skin/ left upper limb, inc shoulder|Unsp malignant neoplasm skin/ left upper limb, inc shoulder +C3263792|T191|PT|C44.609|ICD10CM|Unspecified malignant neoplasm of skin of left upper limb, including shoulder|Unspecified malignant neoplasm of skin of left upper limb, including shoulder +C3161059|T191|HT|C44.61|ICD10CM|Basal cell carcinoma of skin of upper limb, including shoulder|Basal cell carcinoma of skin of upper limb, including shoulder +C3161059|T191|AB|C44.61|ICD10CM|Basal cell carcinoma skin/ upper limb, including shoulder|Basal cell carcinoma skin/ upper limb, including shoulder +C3263793|T191|PT|C44.611|ICD10CM|Basal cell carcinoma of skin of unspecified upper limb, including shoulder|Basal cell carcinoma of skin of unspecified upper limb, including shoulder +C3263793|T191|AB|C44.611|ICD10CM|Basal cell carcinoma skin/ unsp upper limb, inc shoulder|Basal cell carcinoma skin/ unsp upper limb, inc shoulder +C3263794|T191|PT|C44.612|ICD10CM|Basal cell carcinoma of skin of right upper limb, including shoulder|Basal cell carcinoma of skin of right upper limb, including shoulder +C3263794|T191|AB|C44.612|ICD10CM|Basal cell carcinoma skin/ right upper limb, inc shoulder|Basal cell carcinoma skin/ right upper limb, inc shoulder +C3263795|T191|PT|C44.619|ICD10CM|Basal cell carcinoma of skin of left upper limb, including shoulder|Basal cell carcinoma of skin of left upper limb, including shoulder +C3263795|T191|AB|C44.619|ICD10CM|Basal cell carcinoma skin/ left upper limb, inc shoulder|Basal cell carcinoma skin/ left upper limb, inc shoulder +C3161060|T191|HT|C44.62|ICD10CM|Squamous cell carcinoma of skin of upper limb, including shoulder|Squamous cell carcinoma of skin of upper limb, including shoulder +C3161060|T191|AB|C44.62|ICD10CM|Squamous cell carcinoma skin/ upper limb, including shoulder|Squamous cell carcinoma skin/ upper limb, including shoulder +C3263796|T191|PT|C44.621|ICD10CM|Squamous cell carcinoma of skin of unspecified upper limb, including shoulder|Squamous cell carcinoma of skin of unspecified upper limb, including shoulder +C3263796|T191|AB|C44.621|ICD10CM|Squamous cell carcinoma skin/ unsp upper limb, inc shoulder|Squamous cell carcinoma skin/ unsp upper limb, inc shoulder +C3263797|T191|PT|C44.622|ICD10CM|Squamous cell carcinoma of skin of right upper limb, including shoulder|Squamous cell carcinoma of skin of right upper limb, including shoulder +C3263797|T191|AB|C44.622|ICD10CM|Squamous cell carcinoma skin/ right upper limb, inc shoulder|Squamous cell carcinoma skin/ right upper limb, inc shoulder +C3263798|T191|PT|C44.629|ICD10CM|Squamous cell carcinoma of skin of left upper limb, including shoulder|Squamous cell carcinoma of skin of left upper limb, including shoulder +C3263798|T191|AB|C44.629|ICD10CM|Squamous cell carcinoma skin/ left upper limb, inc shoulder|Squamous cell carcinoma skin/ left upper limb, inc shoulder +C3161061|T191|AB|C44.69|ICD10CM|Oth malignant neoplasm skin/ upper limb, including shoulder|Oth malignant neoplasm skin/ upper limb, including shoulder +C3161061|T191|HT|C44.69|ICD10CM|Other specified malignant neoplasm of skin of upper limb, including shoulder|Other specified malignant neoplasm of skin of upper limb, including shoulder +C3263799|T191|AB|C44.691|ICD10CM|Oth malignant neoplasm skin/ unsp upper limb, inc shoulder|Oth malignant neoplasm skin/ unsp upper limb, inc shoulder +C3263799|T191|PT|C44.691|ICD10CM|Other specified malignant neoplasm of skin of unspecified upper limb, including shoulder|Other specified malignant neoplasm of skin of unspecified upper limb, including shoulder +C3263800|T191|AB|C44.692|ICD10CM|Oth malignant neoplasm skin/ right upper limb, inc shoulder|Oth malignant neoplasm skin/ right upper limb, inc shoulder +C3263800|T191|PT|C44.692|ICD10CM|Other specified malignant neoplasm of skin of right upper limb, including shoulder|Other specified malignant neoplasm of skin of right upper limb, including shoulder +C3263801|T191|AB|C44.699|ICD10CM|Oth malignant neoplasm skin/ left upper limb, inc shoulder|Oth malignant neoplasm skin/ left upper limb, inc shoulder +C3263801|T191|PT|C44.699|ICD10CM|Other specified malignant neoplasm of skin of left upper limb, including shoulder|Other specified malignant neoplasm of skin of left upper limb, including shoulder +C0496799|T191|PX|C44.7|ICD10|Malignant neoplasm of skin of lower limb, including hip|Malignant neoplasm of skin of lower limb, including hip +C3161369|T191|AB|C44.7|ICD10CM|Oth and unsp malignant neoplasm skin/ lower limb, inc hip|Oth and unsp malignant neoplasm skin/ lower limb, inc hip +C3161369|T191|HT|C44.7|ICD10CM|Other and unspecified malignant neoplasm of skin of lower limb, including hip|Other and unspecified malignant neoplasm of skin of lower limb, including hip +C0496799|T191|PS|C44.7|ICD10|Skin of lower limb, including hip|Skin of lower limb, including hip +C2838017|T191|AB|C44.70|ICD10CM|Unsp malignant neoplasm of skin of lower limb, including hip|Unsp malignant neoplasm of skin of lower limb, including hip +C2838017|T191|HT|C44.70|ICD10CM|Unspecified malignant neoplasm of skin of lower limb, including hip|Unspecified malignant neoplasm of skin of lower limb, including hip +C3263802|T191|AB|C44.701|ICD10CM|Unsp malignant neoplasm skin/ unsp lower limb, including hip|Unsp malignant neoplasm skin/ unsp lower limb, including hip +C3263802|T191|PT|C44.701|ICD10CM|Unspecified malignant neoplasm of skin of unspecified lower limb, including hip|Unspecified malignant neoplasm of skin of unspecified lower limb, including hip +C3263803|T191|AB|C44.702|ICD10CM|Unsp malignant neoplasm skin/ right lower limb, inc hip|Unsp malignant neoplasm skin/ right lower limb, inc hip +C3263803|T191|PT|C44.702|ICD10CM|Unspecified malignant neoplasm of skin of right lower limb, including hip|Unspecified malignant neoplasm of skin of right lower limb, including hip +C3263804|T191|AB|C44.709|ICD10CM|Unsp malignant neoplasm skin/ left lower limb, including hip|Unsp malignant neoplasm skin/ left lower limb, including hip +C3263804|T191|PT|C44.709|ICD10CM|Unspecified malignant neoplasm of skin of left lower limb, including hip|Unspecified malignant neoplasm of skin of left lower limb, including hip +C3161062|T191|HT|C44.71|ICD10CM|Basal cell carcinoma of skin of lower limb, including hip|Basal cell carcinoma of skin of lower limb, including hip +C3161062|T191|AB|C44.71|ICD10CM|Basal cell carcinoma of skin of lower limb, including hip|Basal cell carcinoma of skin of lower limb, including hip +C3263805|T191|PT|C44.711|ICD10CM|Basal cell carcinoma of skin of unspecified lower limb, including hip|Basal cell carcinoma of skin of unspecified lower limb, including hip +C3263805|T191|AB|C44.711|ICD10CM|Basal cell carcinoma skin/ unsp lower limb, including hip|Basal cell carcinoma skin/ unsp lower limb, including hip +C3263806|T191|PT|C44.712|ICD10CM|Basal cell carcinoma of skin of right lower limb, including hip|Basal cell carcinoma of skin of right lower limb, including hip +C3263806|T191|AB|C44.712|ICD10CM|Basal cell carcinoma skin/ right lower limb, including hip|Basal cell carcinoma skin/ right lower limb, including hip +C3263807|T191|PT|C44.719|ICD10CM|Basal cell carcinoma of skin of left lower limb, including hip|Basal cell carcinoma of skin of left lower limb, including hip +C3263807|T191|AB|C44.719|ICD10CM|Basal cell carcinoma skin/ left lower limb, including hip|Basal cell carcinoma skin/ left lower limb, including hip +C3161063|T191|HT|C44.72|ICD10CM|Squamous cell carcinoma of skin of lower limb, including hip|Squamous cell carcinoma of skin of lower limb, including hip +C3161063|T191|AB|C44.72|ICD10CM|Squamous cell carcinoma of skin of lower limb, including hip|Squamous cell carcinoma of skin of lower limb, including hip +C3263808|T191|PT|C44.721|ICD10CM|Squamous cell carcinoma of skin of unspecified lower limb, including hip|Squamous cell carcinoma of skin of unspecified lower limb, including hip +C3263808|T191|AB|C44.721|ICD10CM|Squamous cell carcinoma skin/ unsp lower limb, including hip|Squamous cell carcinoma skin/ unsp lower limb, including hip +C3263809|T191|PT|C44.722|ICD10CM|Squamous cell carcinoma of skin of right lower limb, including hip|Squamous cell carcinoma of skin of right lower limb, including hip +C3263809|T191|AB|C44.722|ICD10CM|Squamous cell carcinoma skin/ right lower limb, inc hip|Squamous cell carcinoma skin/ right lower limb, inc hip +C3263810|T191|PT|C44.729|ICD10CM|Squamous cell carcinoma of skin of left lower limb, including hip|Squamous cell carcinoma of skin of left lower limb, including hip +C3263810|T191|AB|C44.729|ICD10CM|Squamous cell carcinoma skin/ left lower limb, including hip|Squamous cell carcinoma skin/ left lower limb, including hip +C3161064|T191|AB|C44.79|ICD10CM|Oth malignant neoplasm of skin of lower limb, including hip|Oth malignant neoplasm of skin of lower limb, including hip +C3161064|T191|HT|C44.79|ICD10CM|Other specified malignant neoplasm of skin of lower limb, including hip|Other specified malignant neoplasm of skin of lower limb, including hip +C3263811|T191|AB|C44.791|ICD10CM|Oth malignant neoplasm skin/ unsp lower limb, including hip|Oth malignant neoplasm skin/ unsp lower limb, including hip +C3263811|T191|PT|C44.791|ICD10CM|Other specified malignant neoplasm of skin of unspecified lower limb, including hip|Other specified malignant neoplasm of skin of unspecified lower limb, including hip +C3263812|T191|AB|C44.792|ICD10CM|Oth malignant neoplasm skin/ right lower limb, including hip|Oth malignant neoplasm skin/ right lower limb, including hip +C3263812|T191|PT|C44.792|ICD10CM|Other specified malignant neoplasm of skin of right lower limb, including hip|Other specified malignant neoplasm of skin of right lower limb, including hip +C3263813|T191|AB|C44.799|ICD10CM|Oth malignant neoplasm skin/ left lower limb, including hip|Oth malignant neoplasm skin/ left lower limb, including hip +C3263813|T191|PT|C44.799|ICD10CM|Other specified malignant neoplasm of skin of left lower limb, including hip|Other specified malignant neoplasm of skin of left lower limb, including hip +C0348363|T191|PX|C44.8|ICD10|Malignant neoplasm overlapping skin site|Malignant neoplasm overlapping skin site +C3263814|T191|AB|C44.8|ICD10CM|Oth and unsp malignant neoplasm of overlapping sites of skin|Oth and unsp malignant neoplasm of overlapping sites of skin +C3263814|T191|HT|C44.8|ICD10CM|Other and unspecified malignant neoplasm of overlapping sites of skin|Other and unspecified malignant neoplasm of overlapping sites of skin +C0348363|T191|PS|C44.8|ICD10|Overlapping lesion of skin|Overlapping lesion of skin +C3263815|T191|AB|C44.80|ICD10CM|Unspecified malignant neoplasm of overlapping sites of skin|Unspecified malignant neoplasm of overlapping sites of skin +C3263815|T191|PT|C44.80|ICD10CM|Unspecified malignant neoplasm of overlapping sites of skin|Unspecified malignant neoplasm of overlapping sites of skin +C3263816|T191|PT|C44.81|ICD10CM|Basal cell carcinoma of overlapping sites of skin|Basal cell carcinoma of overlapping sites of skin +C3263816|T191|AB|C44.81|ICD10CM|Basal cell carcinoma of overlapping sites of skin|Basal cell carcinoma of overlapping sites of skin +C3263817|T191|AB|C44.82|ICD10CM|Squamous cell carcinoma of overlapping sites of skin|Squamous cell carcinoma of overlapping sites of skin +C3263817|T191|PT|C44.82|ICD10CM|Squamous cell carcinoma of overlapping sites of skin|Squamous cell carcinoma of overlapping sites of skin +C3263818|T191|AB|C44.89|ICD10CM|Oth malignant neoplasm of overlapping sites of skin|Oth malignant neoplasm of overlapping sites of skin +C3263818|T191|PT|C44.89|ICD10CM|Other specified malignant neoplasm of overlapping sites of skin|Other specified malignant neoplasm of overlapping sites of skin +C0007114|T191|PT|C44.9|ICD10|Malignant neoplasm of skin, unspecified|Malignant neoplasm of skin, unspecified +C3263819|T191|AB|C44.9|ICD10CM|Other and unsp malignant neoplasm of skin, unspecified|Other and unsp malignant neoplasm of skin, unspecified +C3263819|T191|HT|C44.9|ICD10CM|Other and unspecified malignant neoplasm of skin, unspecified|Other and unspecified malignant neoplasm of skin, unspecified +C3263820|T191|ET|C44.90|ICD10CM|Malignant neoplasm of unspecified site of skin|Malignant neoplasm of unspecified site of skin +C3263821|T191|AB|C44.90|ICD10CM|Unspecified malignant neoplasm of skin, unspecified|Unspecified malignant neoplasm of skin, unspecified +C3263821|T191|PT|C44.90|ICD10CM|Unspecified malignant neoplasm of skin, unspecified|Unspecified malignant neoplasm of skin, unspecified +C3263822|T191|AB|C44.91|ICD10CM|Basal cell carcinoma of skin, unspecified|Basal cell carcinoma of skin, unspecified +C3263822|T191|PT|C44.91|ICD10CM|Basal cell carcinoma of skin, unspecified|Basal cell carcinoma of skin, unspecified +C3263823|T191|AB|C44.92|ICD10CM|Squamous cell carcinoma of skin, unspecified|Squamous cell carcinoma of skin, unspecified +C3263823|T191|PT|C44.92|ICD10CM|Squamous cell carcinoma of skin, unspecified|Squamous cell carcinoma of skin, unspecified +C3263824|T191|AB|C44.99|ICD10CM|Other specified malignant neoplasm of skin, unspecified|Other specified malignant neoplasm of skin, unspecified +C3263824|T191|PT|C44.99|ICD10CM|Other specified malignant neoplasm of skin, unspecified|Other specified malignant neoplasm of skin, unspecified +C0025500|T191|HT|C45|ICD10|Mesothelioma|Mesothelioma +C0025500|T191|HT|C45|ICD10CM|Mesothelioma|Mesothelioma +C0025500|T191|AB|C45|ICD10CM|Mesothelioma|Mesothelioma +C0348352|T191|HT|C45-C49|ICD10CM|Malignant neoplasms of mesothelial and soft tissue (C45-C49)|Malignant neoplasms of mesothelial and soft tissue (C45-C49) +C0348352|T191|HT|C45-C49.9|ICD10|Malignant neoplasms of mesothelial and soft tissue|Malignant neoplasms of mesothelial and soft tissue +C0812413|T191|PT|C45.0|ICD10|Mesothelioma of pleura|Mesothelioma of pleura +C0812413|T191|PT|C45.0|ICD10CM|Mesothelioma of pleura|Mesothelioma of pleura +C0812413|T191|AB|C45.0|ICD10CM|Mesothelioma of pleura|Mesothelioma of pleura +C2838020|T191|ET|C45.1|ICD10CM|Mesothelioma of cul-de-sac|Mesothelioma of cul-de-sac +C1263718|T191|ET|C45.1|ICD10CM|Mesothelioma of mesentery|Mesothelioma of mesentery +C3714724|T191|ET|C45.1|ICD10CM|Mesothelioma of mesocolon|Mesothelioma of mesocolon +C1263720|T191|ET|C45.1|ICD10CM|Mesothelioma of omentum|Mesothelioma of omentum +C0346109|T191|PT|C45.1|ICD10CM|Mesothelioma of peritoneum|Mesothelioma of peritoneum +C0346109|T191|AB|C45.1|ICD10CM|Mesothelioma of peritoneum|Mesothelioma of peritoneum +C0346109|T191|PT|C45.1|ICD10|Mesothelioma of peritoneum|Mesothelioma of peritoneum +C2838021|T191|ET|C45.1|ICD10CM|Mesothelioma of peritoneum (parietal) (pelvic)|Mesothelioma of peritoneum (parietal) (pelvic) +C0346110|T191|PT|C45.2|ICD10|Mesothelioma of pericardium|Mesothelioma of pericardium +C0346110|T191|PT|C45.2|ICD10CM|Mesothelioma of pericardium|Mesothelioma of pericardium +C0346110|T191|AB|C45.2|ICD10CM|Mesothelioma of pericardium|Mesothelioma of pericardium +C0348353|T191|PT|C45.7|ICD10CM|Mesothelioma of other sites|Mesothelioma of other sites +C0348353|T191|AB|C45.7|ICD10CM|Mesothelioma of other sites|Mesothelioma of other sites +C0348353|T191|PT|C45.7|ICD10|Mesothelioma of other sites|Mesothelioma of other sites +C0025500|T191|PT|C45.9|ICD10|Mesothelioma, unspecified|Mesothelioma, unspecified +C0025500|T191|PT|C45.9|ICD10CM|Mesothelioma, unspecified|Mesothelioma, unspecified +C0025500|T191|AB|C45.9|ICD10CM|Mesothelioma, unspecified|Mesothelioma, unspecified +C0036220|T191|HT|C46|ICD10CM|Kaposi's sarcoma|Kaposi's sarcoma +C0036220|T191|AB|C46|ICD10CM|Kaposi's sarcoma|Kaposi's sarcoma +C0036220|T191|HT|C46|ICD10|Kaposi's sarcoma|Kaposi's sarcoma +C0153560|T191|PT|C46.0|ICD10|Kaposi's sarcoma of skin|Kaposi's sarcoma of skin +C0153560|T191|PT|C46.0|ICD10CM|Kaposi's sarcoma of skin|Kaposi's sarcoma of skin +C0153560|T191|AB|C46.0|ICD10CM|Kaposi's sarcoma of skin|Kaposi's sarcoma of skin +C2842020|T191|ET|C46.1|ICD10CM|Kaposi's sarcoma of blood vessel|Kaposi's sarcoma of blood vessel +C1389880|T191|ET|C46.1|ICD10CM|Kaposi's sarcoma of connective tissue|Kaposi's sarcoma of connective tissue +C2842021|T191|ET|C46.1|ICD10CM|Kaposi's sarcoma of fascia|Kaposi's sarcoma of fascia +C2842022|T191|ET|C46.1|ICD10CM|Kaposi's sarcoma of ligament|Kaposi's sarcoma of ligament +C2842023|T191|ET|C46.1|ICD10CM|Kaposi's sarcoma of lymphatic(s) NEC|Kaposi's sarcoma of lymphatic(s) NEC +C2842024|T191|ET|C46.1|ICD10CM|Kaposi's sarcoma of muscle|Kaposi's sarcoma of muscle +C0153561|T191|PT|C46.1|ICD10CM|Kaposi's sarcoma of soft tissue|Kaposi's sarcoma of soft tissue +C0153561|T191|AB|C46.1|ICD10CM|Kaposi's sarcoma of soft tissue|Kaposi's sarcoma of soft tissue +C0153561|T191|PT|C46.1|ICD10|Kaposi's sarcoma of soft tissue|Kaposi's sarcoma of soft tissue +C0153562|T191|PT|C46.2|ICD10|Kaposi's sarcoma of palate|Kaposi's sarcoma of palate +C0153562|T191|PT|C46.2|ICD10CM|Kaposi's sarcoma of palate|Kaposi's sarcoma of palate +C0153562|T191|AB|C46.2|ICD10CM|Kaposi's sarcoma of palate|Kaposi's sarcoma of palate +C0153565|T191|PT|C46.3|ICD10CM|Kaposi's sarcoma of lymph nodes|Kaposi's sarcoma of lymph nodes +C0153565|T191|AB|C46.3|ICD10CM|Kaposi's sarcoma of lymph nodes|Kaposi's sarcoma of lymph nodes +C0153565|T191|PT|C46.3|ICD10|Kaposi's sarcoma of lymph nodes|Kaposi's sarcoma of lymph nodes +C0153563|T191|AB|C46.4|ICD10CM|Kaposi's sarcoma of gastrointestinal sites|Kaposi's sarcoma of gastrointestinal sites +C0153563|T191|PT|C46.4|ICD10CM|Kaposi's sarcoma of gastrointestinal sites|Kaposi's sarcoma of gastrointestinal sites +C0153564|T191|HT|C46.5|ICD10CM|Kaposi's sarcoma of lung|Kaposi's sarcoma of lung +C0153564|T191|AB|C46.5|ICD10CM|Kaposi's sarcoma of lung|Kaposi's sarcoma of lung +C2842025|T191|AB|C46.50|ICD10CM|Kaposi's sarcoma of unspecified lung|Kaposi's sarcoma of unspecified lung +C2842025|T191|PT|C46.50|ICD10CM|Kaposi's sarcoma of unspecified lung|Kaposi's sarcoma of unspecified lung +C2842026|T191|AB|C46.51|ICD10CM|Kaposi's sarcoma of right lung|Kaposi's sarcoma of right lung +C2842026|T191|PT|C46.51|ICD10CM|Kaposi's sarcoma of right lung|Kaposi's sarcoma of right lung +C2842027|T191|AB|C46.52|ICD10CM|Kaposi's sarcoma of left lung|Kaposi's sarcoma of left lung +C2842027|T191|PT|C46.52|ICD10CM|Kaposi's sarcoma of left lung|Kaposi's sarcoma of left lung +C0348364|T191|PT|C46.7|ICD10|Kaposi's sarcoma of other sites|Kaposi's sarcoma of other sites +C0348364|T191|PT|C46.7|ICD10CM|Kaposi's sarcoma of other sites|Kaposi's sarcoma of other sites +C0348364|T191|AB|C46.7|ICD10CM|Kaposi's sarcoma of other sites|Kaposi's sarcoma of other sites +C0348355|T191|PT|C46.8|ICD10|Kaposi's sarcoma of multiple organs|Kaposi's sarcoma of multiple organs +C0036220|T191|ET|C46.9|ICD10CM|Kaposi's sarcoma of unspecified site|Kaposi's sarcoma of unspecified site +C0036220|T191|PT|C46.9|ICD10CM|Kaposi's sarcoma, unspecified|Kaposi's sarcoma, unspecified +C0036220|T191|AB|C46.9|ICD10CM|Kaposi's sarcoma, unspecified|Kaposi's sarcoma, unspecified +C0036220|T191|PT|C46.9|ICD10|Kaposi's sarcoma, unspecified|Kaposi's sarcoma, unspecified +C0348359|T191|HT|C47|ICD10|Malignant neoplasm of peripheral nerves and autonomic nervous system|Malignant neoplasm of peripheral nerves and autonomic nervous system +C0348359|T191|HT|C47|ICD10CM|Malignant neoplasm of peripheral nerves and autonomic nervous system|Malignant neoplasm of peripheral nerves and autonomic nervous system +C0348359|T191|AB|C47|ICD10CM|Malignant neoplasm of prph nerves and autonomic nervous sys|Malignant neoplasm of prph nerves and autonomic nervous sys +C4290062|T191|ET|C47|ICD10CM|malignant neoplasm of sympathetic and parasympathetic nerves and ganglia|malignant neoplasm of sympathetic and parasympathetic nerves and ganglia +C0349019|T191|PX|C47.0|ICD10|Malignant neoplasm of peripheral nerves of head, face and neck|Malignant neoplasm of peripheral nerves of head, face and neck +C0349019|T191|PT|C47.0|ICD10CM|Malignant neoplasm of peripheral nerves of head, face and neck|Malignant neoplasm of peripheral nerves of head, face and neck +C0349019|T191|AB|C47.0|ICD10CM|Malignant neoplasm of prph nerves of head, face and neck|Malignant neoplasm of prph nerves of head, face and neck +C0349019|T191|PS|C47.0|ICD10|Peripheral nerves of head, face and neck|Peripheral nerves of head, face and neck +C0349020|T191|AB|C47.1|ICD10CM|Malig neoplasm of prph nerves of upper limb, inc shoulder|Malig neoplasm of prph nerves of upper limb, inc shoulder +C0349020|T191|HT|C47.1|ICD10CM|Malignant neoplasm of peripheral nerves of upper limb, including shoulder|Malignant neoplasm of peripheral nerves of upper limb, including shoulder +C0349020|T191|PX|C47.1|ICD10|Malignant neoplasm of peripheral nerves of upper limb, including shoulder|Malignant neoplasm of peripheral nerves of upper limb, including shoulder +C0349020|T191|PS|C47.1|ICD10|Peripheral nerves of upper limb, including shoulder|Peripheral nerves of upper limb, including shoulder +C2842029|T191|AB|C47.10|ICD10CM|Malig neoplm of prph nerves of unsp upper limb, inc shoulder|Malig neoplm of prph nerves of unsp upper limb, inc shoulder +C2842029|T191|PT|C47.10|ICD10CM|Malignant neoplasm of peripheral nerves of unspecified upper limb, including shoulder|Malignant neoplasm of peripheral nerves of unspecified upper limb, including shoulder +C2842030|T191|AB|C47.11|ICD10CM|Malig neoplm of prph nerves of right upper limb, inc shldr|Malig neoplm of prph nerves of right upper limb, inc shldr +C2842030|T191|PT|C47.11|ICD10CM|Malignant neoplasm of peripheral nerves of right upper limb, including shoulder|Malignant neoplasm of peripheral nerves of right upper limb, including shoulder +C2842031|T191|AB|C47.12|ICD10CM|Malig neoplm of prph nerves of left upper limb, inc shoulder|Malig neoplm of prph nerves of left upper limb, inc shoulder +C2842031|T191|PT|C47.12|ICD10CM|Malignant neoplasm of peripheral nerves of left upper limb, including shoulder|Malignant neoplasm of peripheral nerves of left upper limb, including shoulder +C0349021|T191|PX|C47.2|ICD10|Malignant neoplasm of peripheral nerves of lower limb, including hip|Malignant neoplasm of peripheral nerves of lower limb, including hip +C0349021|T191|HT|C47.2|ICD10CM|Malignant neoplasm of peripheral nerves of lower limb, including hip|Malignant neoplasm of peripheral nerves of lower limb, including hip +C0349021|T191|AB|C47.2|ICD10CM|Malignant neoplasm of prph nerves of lower limb, inc hip|Malignant neoplasm of prph nerves of lower limb, inc hip +C0349021|T191|PS|C47.2|ICD10|Peripheral nerves of lower limb, including hip|Peripheral nerves of lower limb, including hip +C2842032|T191|AB|C47.20|ICD10CM|Malig neoplasm of prph nerves of unsp lower limb, inc hip|Malig neoplasm of prph nerves of unsp lower limb, inc hip +C2842032|T191|PT|C47.20|ICD10CM|Malignant neoplasm of peripheral nerves of unspecified lower limb, including hip|Malignant neoplasm of peripheral nerves of unspecified lower limb, including hip +C2842033|T191|AB|C47.21|ICD10CM|Malig neoplasm of prph nerves of right lower limb, inc hip|Malig neoplasm of prph nerves of right lower limb, inc hip +C2842033|T191|PT|C47.21|ICD10CM|Malignant neoplasm of peripheral nerves of right lower limb, including hip|Malignant neoplasm of peripheral nerves of right lower limb, including hip +C2842034|T191|AB|C47.22|ICD10CM|Malig neoplasm of prph nerves of left lower limb, inc hip|Malig neoplasm of prph nerves of left lower limb, inc hip +C2842034|T191|PT|C47.22|ICD10CM|Malignant neoplasm of peripheral nerves of left lower limb, including hip|Malignant neoplasm of peripheral nerves of left lower limb, including hip +C0349022|T191|PX|C47.3|ICD10|Malignant neoplasm of peripheral nerves of thorax|Malignant neoplasm of peripheral nerves of thorax +C0349022|T191|PT|C47.3|ICD10CM|Malignant neoplasm of peripheral nerves of thorax|Malignant neoplasm of peripheral nerves of thorax +C0349022|T191|AB|C47.3|ICD10CM|Malignant neoplasm of peripheral nerves of thorax|Malignant neoplasm of peripheral nerves of thorax +C0349022|T191|PS|C47.3|ICD10|Peripheral nerves of thorax|Peripheral nerves of thorax +C0349023|T191|PX|C47.4|ICD10|Malignant neoplasm of peripheral nerves of abdomen|Malignant neoplasm of peripheral nerves of abdomen +C0349023|T191|PT|C47.4|ICD10CM|Malignant neoplasm of peripheral nerves of abdomen|Malignant neoplasm of peripheral nerves of abdomen +C0349023|T191|AB|C47.4|ICD10CM|Malignant neoplasm of peripheral nerves of abdomen|Malignant neoplasm of peripheral nerves of abdomen +C0349023|T191|PS|C47.4|ICD10|Peripheral nerves of abdomen|Peripheral nerves of abdomen +C0349024|T191|PX|C47.5|ICD10|Malignant neoplasm of peripheral nerves of pelvis|Malignant neoplasm of peripheral nerves of pelvis +C0349024|T191|PT|C47.5|ICD10CM|Malignant neoplasm of peripheral nerves of pelvis|Malignant neoplasm of peripheral nerves of pelvis +C0349024|T191|AB|C47.5|ICD10CM|Malignant neoplasm of peripheral nerves of pelvis|Malignant neoplasm of peripheral nerves of pelvis +C0349024|T191|PS|C47.5|ICD10|Peripheral nerves of pelvis|Peripheral nerves of pelvis +C0348357|T191|AB|C47.6|ICD10CM|Malignant neoplasm of peripheral nerves of trunk, unsp|Malignant neoplasm of peripheral nerves of trunk, unsp +C0348357|T191|PT|C47.6|ICD10CM|Malignant neoplasm of peripheral nerves of trunk, unspecified|Malignant neoplasm of peripheral nerves of trunk, unspecified +C0348357|T191|PX|C47.6|ICD10|Malignant neoplasm of peripheral nerves of trunk, unspecified|Malignant neoplasm of peripheral nerves of trunk, unspecified +C2977921|T191|ET|C47.6|ICD10CM|Malignant neoplasm of peripheral nerves of unspecified part of trunk|Malignant neoplasm of peripheral nerves of unspecified part of trunk +C0348357|T191|PS|C47.6|ICD10|Peripheral nerves of trunk, unspecified|Peripheral nerves of trunk, unspecified +C0348358|T191|AB|C47.8|ICD10CM|Malig neoplm of ovrlp sites of prph nrv and autonm nrv sys|Malig neoplm of ovrlp sites of prph nrv and autonm nrv sys +C0348358|T191|PT|C47.8|ICD10CM|Malignant neoplasm of overlapping sites of peripheral nerves and autonomic nervous system|Malignant neoplasm of overlapping sites of peripheral nerves and autonomic nervous system +C0348358|T191|PX|C47.8|ICD10|Malignant neoplasm overlapping peripheral nerve and autonomic nervous system sites|Malignant neoplasm overlapping peripheral nerve and autonomic nervous system sites +C0348358|T191|PS|C47.8|ICD10|Overlapping lesion of peripheral nerves and autonomic nervous system|Overlapping lesion of peripheral nerves and autonomic nervous system +C0348359|T191|AB|C47.9|ICD10CM|Malig neoplasm of prph nerves and autonm nervous sys, unsp|Malig neoplasm of prph nerves and autonm nervous sys, unsp +C0348359|T191|PT|C47.9|ICD10CM|Malignant neoplasm of peripheral nerves and autonomic nervous system, unspecified|Malignant neoplasm of peripheral nerves and autonomic nervous system, unspecified +C0348359|T191|PX|C47.9|ICD10|Malignant neoplasm of peripheral nerves and autonomic nervous system, unspecified|Malignant neoplasm of peripheral nerves and autonomic nervous system, unspecified +C2977922|T191|ET|C47.9|ICD10CM|Malignant neoplasm of unspecified site of peripheral nerves and autonomic nervous system|Malignant neoplasm of unspecified site of peripheral nerves and autonomic nervous system +C0348359|T191|PS|C47.9|ICD10|Peripheral nerves and autonomic nervous system, unspecified|Peripheral nerves and autonomic nervous system, unspecified +C0153464|T191|HT|C48|ICD10|Malignant neoplasm of retroperitoneum and peritoneum|Malignant neoplasm of retroperitoneum and peritoneum +C0153464|T191|HT|C48|ICD10CM|Malignant neoplasm of retroperitoneum and peritoneum|Malignant neoplasm of retroperitoneum and peritoneum +C0153464|T191|AB|C48|ICD10CM|Malignant neoplasm of retroperitoneum and peritoneum|Malignant neoplasm of retroperitoneum and peritoneum +C0153465|T191|PT|C48.0|ICD10CM|Malignant neoplasm of retroperitoneum|Malignant neoplasm of retroperitoneum +C0153465|T191|AB|C48.0|ICD10CM|Malignant neoplasm of retroperitoneum|Malignant neoplasm of retroperitoneum +C0153465|T191|PX|C48.0|ICD10|Malignant neoplasm of retroperitoneum|Malignant neoplasm of retroperitoneum +C0153465|T191|PS|C48.0|ICD10|Retroperitoneum|Retroperitoneum +C0686142|T191|ET|C48.1|ICD10CM|Malignant neoplasm of cul-de-sac|Malignant neoplasm of cul-de-sac +C0686146|T191|ET|C48.1|ICD10CM|Malignant neoplasm of mesentery|Malignant neoplasm of mesentery +C0346814|T191|ET|C48.1|ICD10CM|Malignant neoplasm of mesocolon|Malignant neoplasm of mesocolon +C0346817|T191|ET|C48.1|ICD10CM|Malignant neoplasm of omentum|Malignant neoplasm of omentum +C2362828|T191|ET|C48.1|ICD10CM|Malignant neoplasm of parietal peritoneum|Malignant neoplasm of parietal peritoneum +C2362829|T191|ET|C48.1|ICD10CM|Malignant neoplasm of pelvic peritoneum|Malignant neoplasm of pelvic peritoneum +C0153466|T191|PX|C48.1|ICD10|Malignant neoplasm of specified parts of peritoneum|Malignant neoplasm of specified parts of peritoneum +C0153466|T191|PT|C48.1|ICD10CM|Malignant neoplasm of specified parts of peritoneum|Malignant neoplasm of specified parts of peritoneum +C0153466|T191|AB|C48.1|ICD10CM|Malignant neoplasm of specified parts of peritoneum|Malignant neoplasm of specified parts of peritoneum +C0153466|T191|PS|C48.1|ICD10|Specified parts of peritoneum|Specified parts of peritoneum +C0153467|T191|PX|C48.2|ICD10|Malignant neoplasm of peritoneum, unspecified|Malignant neoplasm of peritoneum, unspecified +C0153467|T191|PT|C48.2|ICD10CM|Malignant neoplasm of peritoneum, unspecified|Malignant neoplasm of peritoneum, unspecified +C0153467|T191|AB|C48.2|ICD10CM|Malignant neoplasm of peritoneum, unspecified|Malignant neoplasm of peritoneum, unspecified +C0153467|T191|PS|C48.2|ICD10|Peritoneum, unspecified|Peritoneum, unspecified +C0582499|T191|AB|C48.8|ICD10CM|Malig neoplasm of ovrlp sites of retroperiton and peritoneum|Malig neoplasm of ovrlp sites of retroperiton and peritoneum +C0582499|T191|PT|C48.8|ICD10CM|Malignant neoplasm of overlapping sites of retroperitoneum and peritoneum|Malignant neoplasm of overlapping sites of retroperitoneum and peritoneum +C0582499|T191|PX|C48.8|ICD10|Malignant neoplasm overlapping retroperitoneum and peritoneum sites|Malignant neoplasm overlapping retroperitoneum and peritoneum sites +C0582499|T191|PS|C48.8|ICD10|Overlapping lesion of retroperitoneum and peritoneum|Overlapping lesion of retroperitoneum and peritoneum +C1458139|T191|ET|C49|ICD10CM|malignant neoplasm of blood vessel|malignant neoplasm of blood vessel +C4290063|T191|ET|C49|ICD10CM|malignant neoplasm of bursa|malignant neoplasm of bursa +C4290064|T191|ET|C49|ICD10CM|malignant neoplasm of cartilage|malignant neoplasm of cartilage +C4290065|T191|ET|C49|ICD10CM|malignant neoplasm of fascia|malignant neoplasm of fascia +C4290066|T191|ET|C49|ICD10CM|malignant neoplasm of fat|malignant neoplasm of fat +C4290067|T191|ET|C49|ICD10CM|malignant neoplasm of ligament, except uterine|malignant neoplasm of ligament, except uterine +C4290068|T191|ET|C49|ICD10CM|malignant neoplasm of lymphatic vessel|malignant neoplasm of lymphatic vessel +C0684743|T191|ET|C49|ICD10CM|malignant neoplasm of muscle|malignant neoplasm of muscle +C0153519|T191|HT|C49|ICD10|Malignant neoplasm of other connective and soft tissue|Malignant neoplasm of other connective and soft tissue +C0153519|T191|AB|C49|ICD10CM|Malignant neoplasm of other connective and soft tissue|Malignant neoplasm of other connective and soft tissue +C0153519|T191|HT|C49|ICD10CM|Malignant neoplasm of other connective and soft tissue|Malignant neoplasm of other connective and soft tissue +C4290069|T191|ET|C49|ICD10CM|malignant neoplasm of synovia|malignant neoplasm of synovia +C4290070|T191|ET|C49|ICD10CM|malignant neoplasm of tendon (sheath)|malignant neoplasm of tendon (sheath) +C0347957|T191|PS|C49.0|ICD10|Connective and soft tissue of head, face and neck|Connective and soft tissue of head, face and neck +C0347957|T191|AB|C49.0|ICD10CM|Malig neoplm of conn and soft tissue of head, face and neck|Malig neoplm of conn and soft tissue of head, face and neck +C0347957|T191|PT|C49.0|ICD10CM|Malignant neoplasm of connective and soft tissue of head, face and neck|Malignant neoplasm of connective and soft tissue of head, face and neck +C0347957|T191|PX|C49.0|ICD10|Malignant neoplasm of connective and soft tissue of head, face and neck|Malignant neoplasm of connective and soft tissue of head, face and neck +C2118405|T191|ET|C49.0|ICD10CM|Malignant neoplasm of connective tissue of ear|Malignant neoplasm of connective tissue of ear +C2118406|T191|ET|C49.0|ICD10CM|Malignant neoplasm of connective tissue of eyelid|Malignant neoplasm of connective tissue of eyelid +C0346829|T191|PS|C49.1|ICD10|Connective and soft tissue of upper limb, including shoulder|Connective and soft tissue of upper limb, including shoulder +C0346829|T191|AB|C49.1|ICD10CM|Malig neoplm of conn and soft tiss of upper limb, inc shldr|Malig neoplm of conn and soft tiss of upper limb, inc shldr +C0346829|T191|HT|C49.1|ICD10CM|Malignant neoplasm of connective and soft tissue of upper limb, including shoulder|Malignant neoplasm of connective and soft tissue of upper limb, including shoulder +C0346829|T191|PX|C49.1|ICD10|Malignant neoplasm of connective and soft tissue of upper limb, including shoulder|Malignant neoplasm of connective and soft tissue of upper limb, including shoulder +C2842043|T191|AB|C49.10|ICD10CM|Malig neoplm of conn & soft tiss of unsp upr lmb, inc shldr|Malig neoplm of conn & soft tiss of unsp upr lmb, inc shldr +C2842043|T191|PT|C49.10|ICD10CM|Malignant neoplasm of connective and soft tissue of unspecified upper limb, including shoulder|Malignant neoplasm of connective and soft tissue of unspecified upper limb, including shoulder +C2842044|T191|AB|C49.11|ICD10CM|Malig neoplm of conn and soft tiss of r upr limb, inc shldr|Malig neoplm of conn and soft tiss of r upr limb, inc shldr +C2842044|T191|PT|C49.11|ICD10CM|Malignant neoplasm of connective and soft tissue of right upper limb, including shoulder|Malignant neoplasm of connective and soft tissue of right upper limb, including shoulder +C2842045|T191|AB|C49.12|ICD10CM|Malig neoplm of conn and soft tiss of l upr limb, inc shldr|Malig neoplm of conn and soft tiss of l upr limb, inc shldr +C2842045|T191|PT|C49.12|ICD10CM|Malignant neoplasm of connective and soft tissue of left upper limb, including shoulder|Malignant neoplasm of connective and soft tissue of left upper limb, including shoulder +C0346836|T191|PS|C49.2|ICD10|Connective and soft tissue of lower limb, including hip|Connective and soft tissue of lower limb, including hip +C0346836|T191|AB|C49.2|ICD10CM|Malig neoplm of conn and soft tissue of lower limb, inc hip|Malig neoplm of conn and soft tissue of lower limb, inc hip +C0346836|T191|HT|C49.2|ICD10CM|Malignant neoplasm of connective and soft tissue of lower limb, including hip|Malignant neoplasm of connective and soft tissue of lower limb, including hip +C0346836|T191|PX|C49.2|ICD10|Malignant neoplasm of connective and soft tissue of lower limb, including hip|Malignant neoplasm of connective and soft tissue of lower limb, including hip +C2842046|T191|AB|C49.20|ICD10CM|Malig neoplm of conn and soft tiss of unsp low limb, inc hip|Malig neoplm of conn and soft tiss of unsp low limb, inc hip +C2842046|T191|PT|C49.20|ICD10CM|Malignant neoplasm of connective and soft tissue of unspecified lower limb, including hip|Malignant neoplasm of connective and soft tissue of unspecified lower limb, including hip +C2842047|T191|AB|C49.21|ICD10CM|Malig neoplm of conn and soft tiss of r low limb, inc hip|Malig neoplm of conn and soft tiss of r low limb, inc hip +C2842047|T191|PT|C49.21|ICD10CM|Malignant neoplasm of connective and soft tissue of right lower limb, including hip|Malignant neoplasm of connective and soft tissue of right lower limb, including hip +C2842048|T191|AB|C49.22|ICD10CM|Malig neoplm of conn and soft tiss of left low limb, inc hip|Malig neoplm of conn and soft tiss of left low limb, inc hip +C2842048|T191|PT|C49.22|ICD10CM|Malignant neoplasm of connective and soft tissue of left lower limb, including hip|Malignant neoplasm of connective and soft tissue of left lower limb, including hip +C0346141|T191|PS|C49.3|ICD10|Connective and soft tissue of thorax|Connective and soft tissue of thorax +C0346947|T191|ET|C49.3|ICD10CM|Malignant neoplasm of axilla|Malignant neoplasm of axilla +C0346141|T191|PT|C49.3|ICD10CM|Malignant neoplasm of connective and soft tissue of thorax|Malignant neoplasm of connective and soft tissue of thorax +C0346141|T191|AB|C49.3|ICD10CM|Malignant neoplasm of connective and soft tissue of thorax|Malignant neoplasm of connective and soft tissue of thorax +C0346141|T191|PX|C49.3|ICD10|Malignant neoplasm of connective and soft tissue of thorax|Malignant neoplasm of connective and soft tissue of thorax +C3665404|T191|ET|C49.3|ICD10CM|Malignant neoplasm of diaphragm|Malignant neoplasm of diaphragm +C3665405|T191|ET|C49.3|ICD10CM|Malignant neoplasm of great vessels|Malignant neoplasm of great vessels +C0346848|T191|PS|C49.4|ICD10|Connective and soft tissue of abdomen|Connective and soft tissue of abdomen +C0864916|T191|ET|C49.4|ICD10CM|Malignant neoplasm of abdominal wall|Malignant neoplasm of abdominal wall +C0346848|T191|PX|C49.4|ICD10|Malignant neoplasm of connective and soft tissue of abdomen|Malignant neoplasm of connective and soft tissue of abdomen +C0346848|T191|PT|C49.4|ICD10CM|Malignant neoplasm of connective and soft tissue of abdomen|Malignant neoplasm of connective and soft tissue of abdomen +C0346848|T191|AB|C49.4|ICD10CM|Malignant neoplasm of connective and soft tissue of abdomen|Malignant neoplasm of connective and soft tissue of abdomen +C0864917|T191|ET|C49.4|ICD10CM|Malignant neoplasm of hypochondrium|Malignant neoplasm of hypochondrium +C0543394|T191|PS|C49.5|ICD10|Connective and soft tissue of pelvis|Connective and soft tissue of pelvis +C0864918|T191|ET|C49.5|ICD10CM|Malignant neoplasm of buttock|Malignant neoplasm of buttock +C0543394|T191|PX|C49.5|ICD10|Malignant neoplasm of connective and soft tissue of pelvis|Malignant neoplasm of connective and soft tissue of pelvis +C0543394|T191|PT|C49.5|ICD10CM|Malignant neoplasm of connective and soft tissue of pelvis|Malignant neoplasm of connective and soft tissue of pelvis +C0543394|T191|AB|C49.5|ICD10CM|Malignant neoplasm of connective and soft tissue of pelvis|Malignant neoplasm of connective and soft tissue of pelvis +C0864919|T191|ET|C49.5|ICD10CM|Malignant neoplasm of groin|Malignant neoplasm of groin +C0864921|T191|ET|C49.5|ICD10CM|Malignant neoplasm of perineum|Malignant neoplasm of perineum +C0348361|T191|PS|C49.6|ICD10|Connective and soft tissue of trunk, unspecified|Connective and soft tissue of trunk, unspecified +C0346956|T191|ET|C49.6|ICD10CM|Malignant neoplasm of back NOS|Malignant neoplasm of back NOS +C0348361|T191|AB|C49.6|ICD10CM|Malignant neoplasm of conn and soft tissue of trunk, unsp|Malignant neoplasm of conn and soft tissue of trunk, unsp +C0348361|T191|PT|C49.6|ICD10CM|Malignant neoplasm of connective and soft tissue of trunk, unspecified|Malignant neoplasm of connective and soft tissue of trunk, unspecified +C0348361|T191|PX|C49.6|ICD10|Malignant neoplasm of connective and soft tissue of trunk, unspecified|Malignant neoplasm of connective and soft tissue of trunk, unspecified +C0349035|T191|PT|C49.8|ICD10CM|Malignant neoplasm of overlapping sites of connective and soft tissue|Malignant neoplasm of overlapping sites of connective and soft tissue +C0349035|T191|AB|C49.8|ICD10CM|Malignant neoplasm of ovrlp sites of conn and soft tissue|Malignant neoplasm of ovrlp sites of conn and soft tissue +C0349035|T191|PX|C49.8|ICD10|Malignant neoplasm overlapping connective and soft tissue sites|Malignant neoplasm overlapping connective and soft tissue sites +C0349035|T191|PS|C49.8|ICD10|Overlapping lesion of connective and soft tissue|Overlapping lesion of connective and soft tissue +C2842049|T191|ET|C49.8|ICD10CM|Primary malignant neoplasm of two or more contiguous sites of connective and soft tissue|Primary malignant neoplasm of two or more contiguous sites of connective and soft tissue +C0348362|T191|PS|C49.9|ICD10|Connective and soft tissue, unspecified|Connective and soft tissue, unspecified +C0348362|T191|AB|C49.9|ICD10CM|Malignant neoplasm of connective and soft tissue, unsp|Malignant neoplasm of connective and soft tissue, unsp +C0348362|T191|PT|C49.9|ICD10CM|Malignant neoplasm of connective and soft tissue, unspecified|Malignant neoplasm of connective and soft tissue, unspecified +C0348362|T191|PX|C49.9|ICD10|Malignant neoplasm of connective and soft tissue, unspecified|Malignant neoplasm of connective and soft tissue, unspecified +C0238198|T191|HT|C49.A|ICD10CM|Gastrointestinal stromal tumor|Gastrointestinal stromal tumor +C0238198|T191|AB|C49.A|ICD10CM|Gastrointestinal stromal tumor|Gastrointestinal stromal tumor +C4267834|T191|AB|C49.A0|ICD10CM|Gastrointestinal stromal tumor, unspecified site|Gastrointestinal stromal tumor, unspecified site +C4267834|T191|PT|C49.A0|ICD10CM|Gastrointestinal stromal tumor, unspecified site|Gastrointestinal stromal tumor, unspecified site +C2959942|T191|AB|C49.A1|ICD10CM|Gastrointestinal stromal tumor of esophagus|Gastrointestinal stromal tumor of esophagus +C2959942|T191|PT|C49.A1|ICD10CM|Gastrointestinal stromal tumor of esophagus|Gastrointestinal stromal tumor of esophagus +C1333768|T191|PT|C49.A2|ICD10CM|Gastrointestinal stromal tumor of stomach|Gastrointestinal stromal tumor of stomach +C1333768|T191|AB|C49.A2|ICD10CM|Gastrointestinal stromal tumor of stomach|Gastrointestinal stromal tumor of stomach +C1335996|T191|PT|C49.A3|ICD10CM|Gastrointestinal stromal tumor of small intestine|Gastrointestinal stromal tumor of small intestine +C1335996|T191|AB|C49.A3|ICD10CM|Gastrointestinal stromal tumor of small intestine|Gastrointestinal stromal tumor of small intestine +C2960068|T191|PT|C49.A4|ICD10CM|Gastrointestinal stromal tumor of large intestine|Gastrointestinal stromal tumor of large intestine +C2960068|T191|AB|C49.A4|ICD10CM|Gastrointestinal stromal tumor of large intestine|Gastrointestinal stromal tumor of large intestine +C4267835|T191|AB|C49.A5|ICD10CM|Gastrointestinal stromal tumor of rectum|Gastrointestinal stromal tumor of rectum +C4267835|T191|PT|C49.A5|ICD10CM|Gastrointestinal stromal tumor of rectum|Gastrointestinal stromal tumor of rectum +C4267836|T191|AB|C49.A9|ICD10CM|Gastrointestinal stromal tumor of other sites|Gastrointestinal stromal tumor of other sites +C4267836|T191|PT|C49.A9|ICD10CM|Gastrointestinal stromal tumor of other sites|Gastrointestinal stromal tumor of other sites +C0007129|T191|HT|C4A|ICD10CM|Merkel cell carcinoma|Merkel cell carcinoma +C0007129|T191|AB|C4A|ICD10CM|Merkel cell carcinoma|Merkel cell carcinoma +C2712673|T191|AB|C4A.0|ICD10CM|Merkel cell carcinoma of lip|Merkel cell carcinoma of lip +C2712673|T191|PT|C4A.0|ICD10CM|Merkel cell carcinoma of lip|Merkel cell carcinoma of lip +C2712674|T191|HT|C4A.1|ICD10CM|Merkel cell carcinoma of eyelid, including canthus|Merkel cell carcinoma of eyelid, including canthus +C2712674|T191|AB|C4A.1|ICD10CM|Merkel cell carcinoma of eyelid, including canthus|Merkel cell carcinoma of eyelid, including canthus +C2977923|T191|AB|C4A.10|ICD10CM|Merkel cell carcinoma of unsp eyelid, including canthus|Merkel cell carcinoma of unsp eyelid, including canthus +C2977923|T191|PT|C4A.10|ICD10CM|Merkel cell carcinoma of unspecified eyelid, including canthus|Merkel cell carcinoma of unspecified eyelid, including canthus +C2842051|T191|AB|C4A.11|ICD10CM|Merkel cell carcinoma of right eyelid, including canthus|Merkel cell carcinoma of right eyelid, including canthus +C2842051|T191|HT|C4A.11|ICD10CM|Merkel cell carcinoma of right eyelid, including canthus|Merkel cell carcinoma of right eyelid, including canthus +C4702874|T191|AB|C4A.111|ICD10CM|Merkel cell carcinoma of right upper eyelid, inc canthus|Merkel cell carcinoma of right upper eyelid, inc canthus +C4702874|T191|PT|C4A.111|ICD10CM|Merkel cell carcinoma of right upper eyelid, including canthus|Merkel cell carcinoma of right upper eyelid, including canthus +C4702875|T191|AB|C4A.112|ICD10CM|Merkel cell carcinoma of right lower eyelid, inc canthus|Merkel cell carcinoma of right lower eyelid, inc canthus +C4702875|T191|PT|C4A.112|ICD10CM|Merkel cell carcinoma of right lower eyelid, including canthus|Merkel cell carcinoma of right lower eyelid, including canthus +C2842052|T191|AB|C4A.12|ICD10CM|Merkel cell carcinoma of left eyelid, including canthus|Merkel cell carcinoma of left eyelid, including canthus +C2842052|T191|HT|C4A.12|ICD10CM|Merkel cell carcinoma of left eyelid, including canthus|Merkel cell carcinoma of left eyelid, including canthus +C4702876|T191|AB|C4A.121|ICD10CM|Merkel cell carcinoma of left upper eyelid, inc canthus|Merkel cell carcinoma of left upper eyelid, inc canthus +C4702876|T191|PT|C4A.121|ICD10CM|Merkel cell carcinoma of left upper eyelid, including canthus|Merkel cell carcinoma of left upper eyelid, including canthus +C4702877|T191|AB|C4A.122|ICD10CM|Merkel cell carcinoma of left lower eyelid, inc canthus|Merkel cell carcinoma of left lower eyelid, inc canthus +C4702877|T191|PT|C4A.122|ICD10CM|Merkel cell carcinoma of left lower eyelid, including canthus|Merkel cell carcinoma of left lower eyelid, including canthus +C2842053|T191|AB|C4A.2|ICD10CM|Merkel cell carcinoma of ear and external auricular canal|Merkel cell carcinoma of ear and external auricular canal +C2842053|T191|HT|C4A.2|ICD10CM|Merkel cell carcinoma of ear and external auricular canal|Merkel cell carcinoma of ear and external auricular canal +C2977924|T191|AB|C4A.20|ICD10CM|Merkel cell carcinoma of unsp ear and external auric canal|Merkel cell carcinoma of unsp ear and external auric canal +C2977924|T191|PT|C4A.20|ICD10CM|Merkel cell carcinoma of unspecified ear and external auricular canal|Merkel cell carcinoma of unspecified ear and external auricular canal +C2842055|T191|AB|C4A.21|ICD10CM|Merkel cell carcinoma of right ear and external auric canal|Merkel cell carcinoma of right ear and external auric canal +C2842055|T191|PT|C4A.21|ICD10CM|Merkel cell carcinoma of right ear and external auricular canal|Merkel cell carcinoma of right ear and external auricular canal +C2842056|T191|AB|C4A.22|ICD10CM|Merkel cell carcinoma of left ear and external auric canal|Merkel cell carcinoma of left ear and external auric canal +C2842056|T191|PT|C4A.22|ICD10CM|Merkel cell carcinoma of left ear and external auricular canal|Merkel cell carcinoma of left ear and external auricular canal +C2842057|T191|AB|C4A.3|ICD10CM|Merkel cell carcinoma of other and unspecified parts of face|Merkel cell carcinoma of other and unspecified parts of face +C2842057|T191|HT|C4A.3|ICD10CM|Merkel cell carcinoma of other and unspecified parts of face|Merkel cell carcinoma of other and unspecified parts of face +C2842058|T191|AB|C4A.30|ICD10CM|Merkel cell carcinoma of unspecified part of face|Merkel cell carcinoma of unspecified part of face +C2842058|T191|PT|C4A.30|ICD10CM|Merkel cell carcinoma of unspecified part of face|Merkel cell carcinoma of unspecified part of face +C2842059|T191|PT|C4A.31|ICD10CM|Merkel cell carcinoma of nose|Merkel cell carcinoma of nose +C2842059|T191|AB|C4A.31|ICD10CM|Merkel cell carcinoma of nose|Merkel cell carcinoma of nose +C2842060|T191|AB|C4A.39|ICD10CM|Merkel cell carcinoma of other parts of face|Merkel cell carcinoma of other parts of face +C2842060|T191|PT|C4A.39|ICD10CM|Merkel cell carcinoma of other parts of face|Merkel cell carcinoma of other parts of face +C2712692|T191|AB|C4A.4|ICD10CM|Merkel cell carcinoma of scalp and neck|Merkel cell carcinoma of scalp and neck +C2712692|T191|PT|C4A.4|ICD10CM|Merkel cell carcinoma of scalp and neck|Merkel cell carcinoma of scalp and neck +C2712728|T191|HT|C4A.5|ICD10CM|Merkel cell carcinoma of trunk|Merkel cell carcinoma of trunk +C2712728|T191|AB|C4A.5|ICD10CM|Merkel cell carcinoma of trunk|Merkel cell carcinoma of trunk +C2842061|T191|ET|C4A.51|ICD10CM|Merkel cell carcinoma of anal margin|Merkel cell carcinoma of anal margin +C2842063|T191|PT|C4A.51|ICD10CM|Merkel cell carcinoma of anal skin|Merkel cell carcinoma of anal skin +C2842063|T191|AB|C4A.51|ICD10CM|Merkel cell carcinoma of anal skin|Merkel cell carcinoma of anal skin +C2842062|T191|ET|C4A.51|ICD10CM|Merkel cell carcinoma of perianal skin|Merkel cell carcinoma of perianal skin +C2842064|T191|PT|C4A.52|ICD10CM|Merkel cell carcinoma of skin of breast|Merkel cell carcinoma of skin of breast +C2842064|T191|AB|C4A.52|ICD10CM|Merkel cell carcinoma of skin of breast|Merkel cell carcinoma of skin of breast +C2842065|T191|AB|C4A.59|ICD10CM|Merkel cell carcinoma of other part of trunk|Merkel cell carcinoma of other part of trunk +C2842065|T191|PT|C4A.59|ICD10CM|Merkel cell carcinoma of other part of trunk|Merkel cell carcinoma of other part of trunk +C2842066|T191|AB|C4A.6|ICD10CM|Merkel cell carcinoma of upper limb, including shoulder|Merkel cell carcinoma of upper limb, including shoulder +C2842066|T191|HT|C4A.6|ICD10CM|Merkel cell carcinoma of upper limb, including shoulder|Merkel cell carcinoma of upper limb, including shoulder +C2977925|T191|AB|C4A.60|ICD10CM|Merkel cell carcinoma of unsp upper limb, including shoulder|Merkel cell carcinoma of unsp upper limb, including shoulder +C2977925|T191|PT|C4A.60|ICD10CM|Merkel cell carcinoma of unspecified upper limb, including shoulder|Merkel cell carcinoma of unspecified upper limb, including shoulder +C2842068|T191|AB|C4A.61|ICD10CM|Merkel cell carcinoma of right upper limb, inc shoulder|Merkel cell carcinoma of right upper limb, inc shoulder +C2842068|T191|PT|C4A.61|ICD10CM|Merkel cell carcinoma of right upper limb, including shoulder|Merkel cell carcinoma of right upper limb, including shoulder +C2842069|T191|AB|C4A.62|ICD10CM|Merkel cell carcinoma of left upper limb, including shoulder|Merkel cell carcinoma of left upper limb, including shoulder +C2842069|T191|PT|C4A.62|ICD10CM|Merkel cell carcinoma of left upper limb, including shoulder|Merkel cell carcinoma of left upper limb, including shoulder +C2842070|T191|AB|C4A.7|ICD10CM|Merkel cell carcinoma of lower limb, including hip|Merkel cell carcinoma of lower limb, including hip +C2842070|T191|HT|C4A.7|ICD10CM|Merkel cell carcinoma of lower limb, including hip|Merkel cell carcinoma of lower limb, including hip +C2977926|T191|AB|C4A.70|ICD10CM|Merkel cell carcinoma of unsp lower limb, including hip|Merkel cell carcinoma of unsp lower limb, including hip +C2977926|T191|PT|C4A.70|ICD10CM|Merkel cell carcinoma of unspecified lower limb, including hip|Merkel cell carcinoma of unspecified lower limb, including hip +C2842072|T191|AB|C4A.71|ICD10CM|Merkel cell carcinoma of right lower limb, including hip|Merkel cell carcinoma of right lower limb, including hip +C2842072|T191|PT|C4A.71|ICD10CM|Merkel cell carcinoma of right lower limb, including hip|Merkel cell carcinoma of right lower limb, including hip +C2842073|T191|AB|C4A.72|ICD10CM|Merkel cell carcinoma of left lower limb, including hip|Merkel cell carcinoma of left lower limb, including hip +C2842073|T191|PT|C4A.72|ICD10CM|Merkel cell carcinoma of left lower limb, including hip|Merkel cell carcinoma of left lower limb, including hip +C2842074|T191|PT|C4A.8|ICD10CM|Merkel cell carcinoma of overlapping sites|Merkel cell carcinoma of overlapping sites +C2842074|T191|AB|C4A.8|ICD10CM|Merkel cell carcinoma of overlapping sites|Merkel cell carcinoma of overlapping sites +C0007129|T191|ET|C4A.9|ICD10CM|Merkel cell carcinoma NOS|Merkel cell carcinoma NOS +C2977927|T191|ET|C4A.9|ICD10CM|Merkel cell carcinoma of unspecified site|Merkel cell carcinoma of unspecified site +C2842075|T191|AB|C4A.9|ICD10CM|Merkel cell carcinoma, unspecified|Merkel cell carcinoma, unspecified +C2842075|T191|PT|C4A.9|ICD10CM|Merkel cell carcinoma, unspecified|Merkel cell carcinoma, unspecified +C4759665|T191|ET|C50|ICD10CM|connective tissue of breast|connective tissue of breast +C0006142|T191|HT|C50|ICD10CM|Malignant neoplasm of breast|Malignant neoplasm of breast +C0006142|T191|AB|C50|ICD10CM|Malignant neoplasm of breast|Malignant neoplasm of breast +C0006142|T191|HT|C50|ICD10|Malignant neoplasm of breast|Malignant neoplasm of breast +C0030185|T191|ET|C50|ICD10CM|Paget's disease of breast|Paget's disease of breast +C1704323|T191|ET|C50|ICD10CM|Paget's disease of nipple|Paget's disease of nipple +C0006142|T191|HT|C50-C50|ICD10CM|Malignant neoplasms of breast (C50)|Malignant neoplasms of breast (C50) +C0006142|T191|HT|C50-C50.9|ICD10|Malignant neoplasm of breast|Malignant neoplasm of breast +C0496806|T191|PX|C50.0|ICD10|Malignant neoplasm of nipple and areola|Malignant neoplasm of nipple and areola +C0496806|T191|HT|C50.0|ICD10CM|Malignant neoplasm of nipple and areola|Malignant neoplasm of nipple and areola +C0496806|T191|AB|C50.0|ICD10CM|Malignant neoplasm of nipple and areola|Malignant neoplasm of nipple and areola +C0496806|T191|PS|C50.0|ICD10|Nipple and areola|Nipple and areola +C2842076|T191|AB|C50.01|ICD10CM|Malignant neoplasm of nipple and areola, female|Malignant neoplasm of nipple and areola, female +C2842076|T191|HT|C50.01|ICD10CM|Malignant neoplasm of nipple and areola, female|Malignant neoplasm of nipple and areola, female +C2842077|T191|AB|C50.011|ICD10CM|Malignant neoplasm of nipple and areola, right female breast|Malignant neoplasm of nipple and areola, right female breast +C2842077|T191|PT|C50.011|ICD10CM|Malignant neoplasm of nipple and areola, right female breast|Malignant neoplasm of nipple and areola, right female breast +C2842078|T191|AB|C50.012|ICD10CM|Malignant neoplasm of nipple and areola, left female breast|Malignant neoplasm of nipple and areola, left female breast +C2842078|T191|PT|C50.012|ICD10CM|Malignant neoplasm of nipple and areola, left female breast|Malignant neoplasm of nipple and areola, left female breast +C2842079|T191|AB|C50.019|ICD10CM|Malignant neoplasm of nipple and areola, unsp female breast|Malignant neoplasm of nipple and areola, unsp female breast +C2842079|T191|PT|C50.019|ICD10CM|Malignant neoplasm of nipple and areola, unspecified female breast|Malignant neoplasm of nipple and areola, unspecified female breast +C2842080|T191|AB|C50.02|ICD10CM|Malignant neoplasm of nipple and areola, male|Malignant neoplasm of nipple and areola, male +C2842080|T191|HT|C50.02|ICD10CM|Malignant neoplasm of nipple and areola, male|Malignant neoplasm of nipple and areola, male +C2842081|T191|AB|C50.021|ICD10CM|Malignant neoplasm of nipple and areola, right male breast|Malignant neoplasm of nipple and areola, right male breast +C2842081|T191|PT|C50.021|ICD10CM|Malignant neoplasm of nipple and areola, right male breast|Malignant neoplasm of nipple and areola, right male breast +C2842082|T191|AB|C50.022|ICD10CM|Malignant neoplasm of nipple and areola, left male breast|Malignant neoplasm of nipple and areola, left male breast +C2842082|T191|PT|C50.022|ICD10CM|Malignant neoplasm of nipple and areola, left male breast|Malignant neoplasm of nipple and areola, left male breast +C2842083|T191|AB|C50.029|ICD10CM|Malignant neoplasm of nipple and areola, unsp male breast|Malignant neoplasm of nipple and areola, unsp male breast +C2842083|T191|PT|C50.029|ICD10CM|Malignant neoplasm of nipple and areola, unspecified male breast|Malignant neoplasm of nipple and areola, unspecified male breast +C0496807|T191|PS|C50.1|ICD10|Central portion of breast|Central portion of breast +C0496807|T191|PX|C50.1|ICD10|Malignant neoplasm of central portion of breast|Malignant neoplasm of central portion of breast +C0496807|T191|HT|C50.1|ICD10CM|Malignant neoplasm of central portion of breast|Malignant neoplasm of central portion of breast +C0496807|T191|AB|C50.1|ICD10CM|Malignant neoplasm of central portion of breast|Malignant neoplasm of central portion of breast +C0153549|T191|AB|C50.11|ICD10CM|Malignant neoplasm of central portion of breast, female|Malignant neoplasm of central portion of breast, female +C0153549|T191|HT|C50.11|ICD10CM|Malignant neoplasm of central portion of breast, female|Malignant neoplasm of central portion of breast, female +C2842084|T191|AB|C50.111|ICD10CM|Malignant neoplasm of central portion of right female breast|Malignant neoplasm of central portion of right female breast +C2842084|T191|PT|C50.111|ICD10CM|Malignant neoplasm of central portion of right female breast|Malignant neoplasm of central portion of right female breast +C2842085|T191|AB|C50.112|ICD10CM|Malignant neoplasm of central portion of left female breast|Malignant neoplasm of central portion of left female breast +C2842085|T191|PT|C50.112|ICD10CM|Malignant neoplasm of central portion of left female breast|Malignant neoplasm of central portion of left female breast +C2842086|T191|AB|C50.119|ICD10CM|Malignant neoplasm of central portion of unsp female breast|Malignant neoplasm of central portion of unsp female breast +C2842086|T191|PT|C50.119|ICD10CM|Malignant neoplasm of central portion of unspecified female breast|Malignant neoplasm of central portion of unspecified female breast +C2842087|T191|AB|C50.12|ICD10CM|Malignant neoplasm of central portion of breast, male|Malignant neoplasm of central portion of breast, male +C2842087|T191|HT|C50.12|ICD10CM|Malignant neoplasm of central portion of breast, male|Malignant neoplasm of central portion of breast, male +C2842088|T191|AB|C50.121|ICD10CM|Malignant neoplasm of central portion of right male breast|Malignant neoplasm of central portion of right male breast +C2842088|T191|PT|C50.121|ICD10CM|Malignant neoplasm of central portion of right male breast|Malignant neoplasm of central portion of right male breast +C2842089|T191|AB|C50.122|ICD10CM|Malignant neoplasm of central portion of left male breast|Malignant neoplasm of central portion of left male breast +C2842089|T191|PT|C50.122|ICD10CM|Malignant neoplasm of central portion of left male breast|Malignant neoplasm of central portion of left male breast +C2842090|T191|AB|C50.129|ICD10CM|Malignant neoplasm of central portion of unsp male breast|Malignant neoplasm of central portion of unsp male breast +C2842090|T191|PT|C50.129|ICD10CM|Malignant neoplasm of central portion of unspecified male breast|Malignant neoplasm of central portion of unspecified male breast +C0496808|T191|PX|C50.2|ICD10|Malignant neoplasm of upper-inner quadrant of breast|Malignant neoplasm of upper-inner quadrant of breast +C0496808|T191|HT|C50.2|ICD10CM|Malignant neoplasm of upper-inner quadrant of breast|Malignant neoplasm of upper-inner quadrant of breast +C0496808|T191|AB|C50.2|ICD10CM|Malignant neoplasm of upper-inner quadrant of breast|Malignant neoplasm of upper-inner quadrant of breast +C0496808|T191|PS|C50.2|ICD10|Upper-inner quadrant of breast|Upper-inner quadrant of breast +C1306024|T191|AB|C50.21|ICD10CM|Malignant neoplasm of upper-inner quadrant of breast, female|Malignant neoplasm of upper-inner quadrant of breast, female +C1306024|T191|HT|C50.21|ICD10CM|Malignant neoplasm of upper-inner quadrant of breast, female|Malignant neoplasm of upper-inner quadrant of breast, female +C2842091|T191|AB|C50.211|ICD10CM|Malig neoplm of upper-inner quadrant of right female breast|Malig neoplm of upper-inner quadrant of right female breast +C2842091|T191|PT|C50.211|ICD10CM|Malignant neoplasm of upper-inner quadrant of right female breast|Malignant neoplasm of upper-inner quadrant of right female breast +C2842092|T191|AB|C50.212|ICD10CM|Malig neoplasm of upper-inner quadrant of left female breast|Malig neoplasm of upper-inner quadrant of left female breast +C2842092|T191|PT|C50.212|ICD10CM|Malignant neoplasm of upper-inner quadrant of left female breast|Malignant neoplasm of upper-inner quadrant of left female breast +C2842093|T191|AB|C50.219|ICD10CM|Malig neoplasm of upper-inner quadrant of unsp female breast|Malig neoplasm of upper-inner quadrant of unsp female breast +C2842093|T191|PT|C50.219|ICD10CM|Malignant neoplasm of upper-inner quadrant of unspecified female breast|Malignant neoplasm of upper-inner quadrant of unspecified female breast +C2842094|T191|AB|C50.22|ICD10CM|Malignant neoplasm of upper-inner quadrant of breast, male|Malignant neoplasm of upper-inner quadrant of breast, male +C2842094|T191|HT|C50.22|ICD10CM|Malignant neoplasm of upper-inner quadrant of breast, male|Malignant neoplasm of upper-inner quadrant of breast, male +C2842095|T191|AB|C50.221|ICD10CM|Malig neoplasm of upper-inner quadrant of right male breast|Malig neoplasm of upper-inner quadrant of right male breast +C2842095|T191|PT|C50.221|ICD10CM|Malignant neoplasm of upper-inner quadrant of right male breast|Malignant neoplasm of upper-inner quadrant of right male breast +C2842096|T191|AB|C50.222|ICD10CM|Malig neoplasm of upper-inner quadrant of left male breast|Malig neoplasm of upper-inner quadrant of left male breast +C2842096|T191|PT|C50.222|ICD10CM|Malignant neoplasm of upper-inner quadrant of left male breast|Malignant neoplasm of upper-inner quadrant of left male breast +C2842097|T191|AB|C50.229|ICD10CM|Malig neoplasm of upper-inner quadrant of unsp male breast|Malig neoplasm of upper-inner quadrant of unsp male breast +C2842097|T191|PT|C50.229|ICD10CM|Malignant neoplasm of upper-inner quadrant of unspecified male breast|Malignant neoplasm of upper-inner quadrant of unspecified male breast +C0496809|T191|PS|C50.3|ICD10|Lower-inner quadrant of breast|Lower-inner quadrant of breast +C0496809|T191|PX|C50.3|ICD10|Malignant neoplasm of lower-inner quadrant of breast|Malignant neoplasm of lower-inner quadrant of breast +C0496809|T191|HT|C50.3|ICD10CM|Malignant neoplasm of lower-inner quadrant of breast|Malignant neoplasm of lower-inner quadrant of breast +C0496809|T191|AB|C50.3|ICD10CM|Malignant neoplasm of lower-inner quadrant of breast|Malignant neoplasm of lower-inner quadrant of breast +C0153551|T191|AB|C50.31|ICD10CM|Malignant neoplasm of lower-inner quadrant of breast, female|Malignant neoplasm of lower-inner quadrant of breast, female +C0153551|T191|HT|C50.31|ICD10CM|Malignant neoplasm of lower-inner quadrant of breast, female|Malignant neoplasm of lower-inner quadrant of breast, female +C2842098|T191|AB|C50.311|ICD10CM|Malig neoplm of lower-inner quadrant of right female breast|Malig neoplm of lower-inner quadrant of right female breast +C2842098|T191|PT|C50.311|ICD10CM|Malignant neoplasm of lower-inner quadrant of right female breast|Malignant neoplasm of lower-inner quadrant of right female breast +C2842099|T191|AB|C50.312|ICD10CM|Malig neoplasm of lower-inner quadrant of left female breast|Malig neoplasm of lower-inner quadrant of left female breast +C2842099|T191|PT|C50.312|ICD10CM|Malignant neoplasm of lower-inner quadrant of left female breast|Malignant neoplasm of lower-inner quadrant of left female breast +C2842100|T191|AB|C50.319|ICD10CM|Malig neoplasm of lower-inner quadrant of unsp female breast|Malig neoplasm of lower-inner quadrant of unsp female breast +C2842100|T191|PT|C50.319|ICD10CM|Malignant neoplasm of lower-inner quadrant of unspecified female breast|Malignant neoplasm of lower-inner quadrant of unspecified female breast +C2842101|T191|AB|C50.32|ICD10CM|Malignant neoplasm of lower-inner quadrant of breast, male|Malignant neoplasm of lower-inner quadrant of breast, male +C2842101|T191|HT|C50.32|ICD10CM|Malignant neoplasm of lower-inner quadrant of breast, male|Malignant neoplasm of lower-inner quadrant of breast, male +C2842102|T191|AB|C50.321|ICD10CM|Malig neoplasm of lower-inner quadrant of right male breast|Malig neoplasm of lower-inner quadrant of right male breast +C2842102|T191|PT|C50.321|ICD10CM|Malignant neoplasm of lower-inner quadrant of right male breast|Malignant neoplasm of lower-inner quadrant of right male breast +C2842103|T191|AB|C50.322|ICD10CM|Malig neoplasm of lower-inner quadrant of left male breast|Malig neoplasm of lower-inner quadrant of left male breast +C2842103|T191|PT|C50.322|ICD10CM|Malignant neoplasm of lower-inner quadrant of left male breast|Malignant neoplasm of lower-inner quadrant of left male breast +C2842104|T191|AB|C50.329|ICD10CM|Malig neoplasm of lower-inner quadrant of unsp male breast|Malig neoplasm of lower-inner quadrant of unsp male breast +C2842104|T191|PT|C50.329|ICD10CM|Malignant neoplasm of lower-inner quadrant of unspecified male breast|Malignant neoplasm of lower-inner quadrant of unspecified male breast +C0496810|T191|HT|C50.4|ICD10CM|Malignant neoplasm of upper-outer quadrant of breast|Malignant neoplasm of upper-outer quadrant of breast +C0496810|T191|AB|C50.4|ICD10CM|Malignant neoplasm of upper-outer quadrant of breast|Malignant neoplasm of upper-outer quadrant of breast +C0496810|T191|PX|C50.4|ICD10|Malignant neoplasm of upper-outer quadrant of breast|Malignant neoplasm of upper-outer quadrant of breast +C0496810|T191|PS|C50.4|ICD10|Upper-outer quadrant of breast|Upper-outer quadrant of breast +C0153552|T191|AB|C50.41|ICD10CM|Malignant neoplasm of upper-outer quadrant of breast, female|Malignant neoplasm of upper-outer quadrant of breast, female +C0153552|T191|HT|C50.41|ICD10CM|Malignant neoplasm of upper-outer quadrant of breast, female|Malignant neoplasm of upper-outer quadrant of breast, female +C2842105|T191|AB|C50.411|ICD10CM|Malig neoplm of upper-outer quadrant of right female breast|Malig neoplm of upper-outer quadrant of right female breast +C2842105|T191|PT|C50.411|ICD10CM|Malignant neoplasm of upper-outer quadrant of right female breast|Malignant neoplasm of upper-outer quadrant of right female breast +C2842106|T191|AB|C50.412|ICD10CM|Malig neoplasm of upper-outer quadrant of left female breast|Malig neoplasm of upper-outer quadrant of left female breast +C2842106|T191|PT|C50.412|ICD10CM|Malignant neoplasm of upper-outer quadrant of left female breast|Malignant neoplasm of upper-outer quadrant of left female breast +C2842107|T191|AB|C50.419|ICD10CM|Malig neoplasm of upper-outer quadrant of unsp female breast|Malig neoplasm of upper-outer quadrant of unsp female breast +C2842107|T191|PT|C50.419|ICD10CM|Malignant neoplasm of upper-outer quadrant of unspecified female breast|Malignant neoplasm of upper-outer quadrant of unspecified female breast +C2842108|T191|AB|C50.42|ICD10CM|Malignant neoplasm of upper-outer quadrant of breast, male|Malignant neoplasm of upper-outer quadrant of breast, male +C2842108|T191|HT|C50.42|ICD10CM|Malignant neoplasm of upper-outer quadrant of breast, male|Malignant neoplasm of upper-outer quadrant of breast, male +C2842109|T191|AB|C50.421|ICD10CM|Malig neoplasm of upper-outer quadrant of right male breast|Malig neoplasm of upper-outer quadrant of right male breast +C2842109|T191|PT|C50.421|ICD10CM|Malignant neoplasm of upper-outer quadrant of right male breast|Malignant neoplasm of upper-outer quadrant of right male breast +C2842110|T191|AB|C50.422|ICD10CM|Malig neoplasm of upper-outer quadrant of left male breast|Malig neoplasm of upper-outer quadrant of left male breast +C2842110|T191|PT|C50.422|ICD10CM|Malignant neoplasm of upper-outer quadrant of left male breast|Malignant neoplasm of upper-outer quadrant of left male breast +C2842111|T191|AB|C50.429|ICD10CM|Malig neoplasm of upper-outer quadrant of unsp male breast|Malig neoplasm of upper-outer quadrant of unsp male breast +C2842111|T191|PT|C50.429|ICD10CM|Malignant neoplasm of upper-outer quadrant of unspecified male breast|Malignant neoplasm of upper-outer quadrant of unspecified male breast +C0496811|T191|PS|C50.5|ICD10|Lower-outer quadrant of breast|Lower-outer quadrant of breast +C0496811|T191|PX|C50.5|ICD10|Malignant neoplasm of lower-outer quadrant of breast|Malignant neoplasm of lower-outer quadrant of breast +C0496811|T191|HT|C50.5|ICD10CM|Malignant neoplasm of lower-outer quadrant of breast|Malignant neoplasm of lower-outer quadrant of breast +C0496811|T191|AB|C50.5|ICD10CM|Malignant neoplasm of lower-outer quadrant of breast|Malignant neoplasm of lower-outer quadrant of breast +C0153553|T191|AB|C50.51|ICD10CM|Malignant neoplasm of lower-outer quadrant of breast, female|Malignant neoplasm of lower-outer quadrant of breast, female +C0153553|T191|HT|C50.51|ICD10CM|Malignant neoplasm of lower-outer quadrant of breast, female|Malignant neoplasm of lower-outer quadrant of breast, female +C2842112|T191|AB|C50.511|ICD10CM|Malig neoplm of lower-outer quadrant of right female breast|Malig neoplm of lower-outer quadrant of right female breast +C2842112|T191|PT|C50.511|ICD10CM|Malignant neoplasm of lower-outer quadrant of right female breast|Malignant neoplasm of lower-outer quadrant of right female breast +C2842113|T191|AB|C50.512|ICD10CM|Malig neoplasm of lower-outer quadrant of left female breast|Malig neoplasm of lower-outer quadrant of left female breast +C2842113|T191|PT|C50.512|ICD10CM|Malignant neoplasm of lower-outer quadrant of left female breast|Malignant neoplasm of lower-outer quadrant of left female breast +C2842114|T191|AB|C50.519|ICD10CM|Malig neoplasm of lower-outer quadrant of unsp female breast|Malig neoplasm of lower-outer quadrant of unsp female breast +C2842114|T191|PT|C50.519|ICD10CM|Malignant neoplasm of lower-outer quadrant of unspecified female breast|Malignant neoplasm of lower-outer quadrant of unspecified female breast +C2842115|T191|AB|C50.52|ICD10CM|Malignant neoplasm of lower-outer quadrant of breast, male|Malignant neoplasm of lower-outer quadrant of breast, male +C2842115|T191|HT|C50.52|ICD10CM|Malignant neoplasm of lower-outer quadrant of breast, male|Malignant neoplasm of lower-outer quadrant of breast, male +C2842116|T191|AB|C50.521|ICD10CM|Malig neoplasm of lower-outer quadrant of right male breast|Malig neoplasm of lower-outer quadrant of right male breast +C2842116|T191|PT|C50.521|ICD10CM|Malignant neoplasm of lower-outer quadrant of right male breast|Malignant neoplasm of lower-outer quadrant of right male breast +C2842117|T191|AB|C50.522|ICD10CM|Malig neoplasm of lower-outer quadrant of left male breast|Malig neoplasm of lower-outer quadrant of left male breast +C2842117|T191|PT|C50.522|ICD10CM|Malignant neoplasm of lower-outer quadrant of left male breast|Malignant neoplasm of lower-outer quadrant of left male breast +C2842118|T191|AB|C50.529|ICD10CM|Malig neoplasm of lower-outer quadrant of unsp male breast|Malig neoplasm of lower-outer quadrant of unsp male breast +C2842118|T191|PT|C50.529|ICD10CM|Malignant neoplasm of lower-outer quadrant of unspecified male breast|Malignant neoplasm of lower-outer quadrant of unspecified male breast +C0496812|T191|PS|C50.6|ICD10|Axillary tail of breast|Axillary tail of breast +C0496812|T191|PX|C50.6|ICD10|Malignant neoplasm of axillary tail of breast|Malignant neoplasm of axillary tail of breast +C0496812|T191|HT|C50.6|ICD10CM|Malignant neoplasm of axillary tail of breast|Malignant neoplasm of axillary tail of breast +C0496812|T191|AB|C50.6|ICD10CM|Malignant neoplasm of axillary tail of breast|Malignant neoplasm of axillary tail of breast +C0153554|T191|AB|C50.61|ICD10CM|Malignant neoplasm of axillary tail of breast, female|Malignant neoplasm of axillary tail of breast, female +C0153554|T191|HT|C50.61|ICD10CM|Malignant neoplasm of axillary tail of breast, female|Malignant neoplasm of axillary tail of breast, female +C2842119|T191|AB|C50.611|ICD10CM|Malignant neoplasm of axillary tail of right female breast|Malignant neoplasm of axillary tail of right female breast +C2842119|T191|PT|C50.611|ICD10CM|Malignant neoplasm of axillary tail of right female breast|Malignant neoplasm of axillary tail of right female breast +C2842120|T191|AB|C50.612|ICD10CM|Malignant neoplasm of axillary tail of left female breast|Malignant neoplasm of axillary tail of left female breast +C2842120|T191|PT|C50.612|ICD10CM|Malignant neoplasm of axillary tail of left female breast|Malignant neoplasm of axillary tail of left female breast +C2842121|T191|AB|C50.619|ICD10CM|Malignant neoplasm of axillary tail of unsp female breast|Malignant neoplasm of axillary tail of unsp female breast +C2842121|T191|PT|C50.619|ICD10CM|Malignant neoplasm of axillary tail of unspecified female breast|Malignant neoplasm of axillary tail of unspecified female breast +C2842122|T191|AB|C50.62|ICD10CM|Malignant neoplasm of axillary tail of breast, male|Malignant neoplasm of axillary tail of breast, male +C2842122|T191|HT|C50.62|ICD10CM|Malignant neoplasm of axillary tail of breast, male|Malignant neoplasm of axillary tail of breast, male +C2842123|T191|AB|C50.621|ICD10CM|Malignant neoplasm of axillary tail of right male breast|Malignant neoplasm of axillary tail of right male breast +C2842123|T191|PT|C50.621|ICD10CM|Malignant neoplasm of axillary tail of right male breast|Malignant neoplasm of axillary tail of right male breast +C2842124|T191|AB|C50.622|ICD10CM|Malignant neoplasm of axillary tail of left male breast|Malignant neoplasm of axillary tail of left male breast +C2842124|T191|PT|C50.622|ICD10CM|Malignant neoplasm of axillary tail of left male breast|Malignant neoplasm of axillary tail of left male breast +C2842125|T191|AB|C50.629|ICD10CM|Malignant neoplasm of axillary tail of unsp male breast|Malignant neoplasm of axillary tail of unsp male breast +C2842125|T191|PT|C50.629|ICD10CM|Malignant neoplasm of axillary tail of unspecified male breast|Malignant neoplasm of axillary tail of unspecified male breast +C0348912|T191|AB|C50.8|ICD10CM|Malignant neoplasm of overlapping sites of breast|Malignant neoplasm of overlapping sites of breast +C0348912|T191|HT|C50.8|ICD10CM|Malignant neoplasm of overlapping sites of breast|Malignant neoplasm of overlapping sites of breast +C0348912|T191|PX|C50.8|ICD10|Malignant neoplasm overlapping breast site|Malignant neoplasm overlapping breast site +C0348912|T191|PS|C50.8|ICD10|Overlapping lesion of breast|Overlapping lesion of breast +C2842126|T191|AB|C50.81|ICD10CM|Malignant neoplasm of overlapping sites of breast, female|Malignant neoplasm of overlapping sites of breast, female +C2842126|T191|HT|C50.81|ICD10CM|Malignant neoplasm of overlapping sites of breast, female|Malignant neoplasm of overlapping sites of breast, female +C2842127|T191|PT|C50.811|ICD10CM|Malignant neoplasm of overlapping sites of right female breast|Malignant neoplasm of overlapping sites of right female breast +C2842127|T191|AB|C50.811|ICD10CM|Malignant neoplasm of ovrlp sites of right female breast|Malignant neoplasm of ovrlp sites of right female breast +C2842128|T191|PT|C50.812|ICD10CM|Malignant neoplasm of overlapping sites of left female breast|Malignant neoplasm of overlapping sites of left female breast +C2842128|T191|AB|C50.812|ICD10CM|Malignant neoplasm of ovrlp sites of left female breast|Malignant neoplasm of ovrlp sites of left female breast +C2842129|T191|PT|C50.819|ICD10CM|Malignant neoplasm of overlapping sites of unspecified female breast|Malignant neoplasm of overlapping sites of unspecified female breast +C2842129|T191|AB|C50.819|ICD10CM|Malignant neoplasm of ovrlp sites of unsp female breast|Malignant neoplasm of ovrlp sites of unsp female breast +C2842130|T191|AB|C50.82|ICD10CM|Malignant neoplasm of overlapping sites of breast, male|Malignant neoplasm of overlapping sites of breast, male +C2842130|T191|HT|C50.82|ICD10CM|Malignant neoplasm of overlapping sites of breast, male|Malignant neoplasm of overlapping sites of breast, male +C2842131|T191|AB|C50.821|ICD10CM|Malignant neoplasm of overlapping sites of right male breast|Malignant neoplasm of overlapping sites of right male breast +C2842131|T191|PT|C50.821|ICD10CM|Malignant neoplasm of overlapping sites of right male breast|Malignant neoplasm of overlapping sites of right male breast +C2842132|T191|AB|C50.822|ICD10CM|Malignant neoplasm of overlapping sites of left male breast|Malignant neoplasm of overlapping sites of left male breast +C2842132|T191|PT|C50.822|ICD10CM|Malignant neoplasm of overlapping sites of left male breast|Malignant neoplasm of overlapping sites of left male breast +C2842133|T191|AB|C50.829|ICD10CM|Malignant neoplasm of overlapping sites of unsp male breast|Malignant neoplasm of overlapping sites of unsp male breast +C2842133|T191|PT|C50.829|ICD10CM|Malignant neoplasm of overlapping sites of unspecified male breast|Malignant neoplasm of overlapping sites of unspecified male breast +C0006142|T191|PS|C50.9|ICD10|Breast, unspecified|Breast, unspecified +C2842134|T191|AB|C50.9|ICD10CM|Malignant neoplasm of breast of unspecified site|Malignant neoplasm of breast of unspecified site +C2842134|T191|HT|C50.9|ICD10CM|Malignant neoplasm of breast of unspecified site|Malignant neoplasm of breast of unspecified site +C0006142|T191|PX|C50.9|ICD10|Malignant neoplasm of breast, unspecified|Malignant neoplasm of breast, unspecified +C2842135|T191|AB|C50.91|ICD10CM|Malignant neoplasm of breast of unspecified site, female|Malignant neoplasm of breast of unspecified site, female +C2842135|T191|HT|C50.91|ICD10CM|Malignant neoplasm of breast of unspecified site, female|Malignant neoplasm of breast of unspecified site, female +C2842136|T191|AB|C50.911|ICD10CM|Malignant neoplasm of unsp site of right female breast|Malignant neoplasm of unsp site of right female breast +C2842136|T191|PT|C50.911|ICD10CM|Malignant neoplasm of unspecified site of right female breast|Malignant neoplasm of unspecified site of right female breast +C2842137|T191|AB|C50.912|ICD10CM|Malignant neoplasm of unspecified site of left female breast|Malignant neoplasm of unspecified site of left female breast +C2842137|T191|PT|C50.912|ICD10CM|Malignant neoplasm of unspecified site of left female breast|Malignant neoplasm of unspecified site of left female breast +C2842138|T191|AB|C50.919|ICD10CM|Malignant neoplasm of unsp site of unspecified female breast|Malignant neoplasm of unsp site of unspecified female breast +C2842138|T191|PT|C50.919|ICD10CM|Malignant neoplasm of unspecified site of unspecified female breast|Malignant neoplasm of unspecified site of unspecified female breast +C2842139|T191|AB|C50.92|ICD10CM|Malignant neoplasm of breast of unspecified site, male|Malignant neoplasm of breast of unspecified site, male +C2842139|T191|HT|C50.92|ICD10CM|Malignant neoplasm of breast of unspecified site, male|Malignant neoplasm of breast of unspecified site, male +C2842140|T191|AB|C50.921|ICD10CM|Malignant neoplasm of unspecified site of right male breast|Malignant neoplasm of unspecified site of right male breast +C2842140|T191|PT|C50.921|ICD10CM|Malignant neoplasm of unspecified site of right male breast|Malignant neoplasm of unspecified site of right male breast +C2842141|T191|AB|C50.922|ICD10CM|Malignant neoplasm of unspecified site of left male breast|Malignant neoplasm of unspecified site of left male breast +C2842141|T191|PT|C50.922|ICD10CM|Malignant neoplasm of unspecified site of left male breast|Malignant neoplasm of unspecified site of left male breast +C2842142|T191|AB|C50.929|ICD10CM|Malignant neoplasm of unsp site of unspecified male breast|Malignant neoplasm of unsp site of unspecified male breast +C2842142|T191|PT|C50.929|ICD10CM|Malignant neoplasm of unspecified site of unspecified male breast|Malignant neoplasm of unspecified site of unspecified male breast +C0375071|T191|HT|C51|ICD10CM|Malignant neoplasm of vulva|Malignant neoplasm of vulva +C0375071|T191|AB|C51|ICD10CM|Malignant neoplasm of vulva|Malignant neoplasm of vulva +C0375071|T191|HT|C51|ICD10|Malignant neoplasm of vulva|Malignant neoplasm of vulva +C4290071|T191|ET|C51-C58|ICD10CM|malignant neoplasm of skin of female genital organs|malignant neoplasm of skin of female genital organs +C0153592|T191|HT|C51-C58|ICD10CM|Malignant neoplasms of female genital organs (C51-C58)|Malignant neoplasms of female genital organs (C51-C58) +C0153592|T191|HT|C51-C58.9|ICD10|Malignant neoplasms of female genital organs|Malignant neoplasms of female genital organs +C0496814|T191|PS|C51.0|ICD10|Labium majus|Labium majus +C2842144|T191|ET|C51.0|ICD10CM|Malignant neoplasm of Bartholin's [greater vestibular] gland|Malignant neoplasm of Bartholin's [greater vestibular] gland +C0496814|T191|PX|C51.0|ICD10|Malignant neoplasm of labium majus|Malignant neoplasm of labium majus +C0496814|T191|PT|C51.0|ICD10CM|Malignant neoplasm of labium majus|Malignant neoplasm of labium majus +C0496814|T191|AB|C51.0|ICD10CM|Malignant neoplasm of labium majus|Malignant neoplasm of labium majus +C0496815|T191|PS|C51.1|ICD10|Labium minus|Labium minus +C0496815|T191|PX|C51.1|ICD10|Malignant neoplasm of labium minus|Malignant neoplasm of labium minus +C0496815|T191|PT|C51.1|ICD10CM|Malignant neoplasm of labium minus|Malignant neoplasm of labium minus +C0496815|T191|AB|C51.1|ICD10CM|Malignant neoplasm of labium minus|Malignant neoplasm of labium minus +C0153589|T191|PS|C51.2|ICD10|Clitoris|Clitoris +C0153589|T191|PX|C51.2|ICD10|Malignant neoplasm of clitoris|Malignant neoplasm of clitoris +C0153589|T191|PT|C51.2|ICD10CM|Malignant neoplasm of clitoris|Malignant neoplasm of clitoris +C0153589|T191|AB|C51.2|ICD10CM|Malignant neoplasm of clitoris|Malignant neoplasm of clitoris +C1263790|T191|AB|C51.8|ICD10CM|Malignant neoplasm of overlapping sites of vulva|Malignant neoplasm of overlapping sites of vulva +C1263790|T191|PT|C51.8|ICD10CM|Malignant neoplasm of overlapping sites of vulva|Malignant neoplasm of overlapping sites of vulva +C1263790|T191|PX|C51.8|ICD10|Malignant neoplasm overlapping vulva site|Malignant neoplasm overlapping vulva site +C1263790|T191|PS|C51.8|ICD10|Overlapping lesion of vulva|Overlapping lesion of vulva +C0864956|T191|ET|C51.9|ICD10CM|Malignant neoplasm of external female genitalia NOS|Malignant neoplasm of external female genitalia NOS +C0864957|T191|ET|C51.9|ICD10CM|Malignant neoplasm of pudendum|Malignant neoplasm of pudendum +C0375071|T191|PT|C51.9|ICD10CM|Malignant neoplasm of vulva, unspecified|Malignant neoplasm of vulva, unspecified +C0375071|T191|AB|C51.9|ICD10CM|Malignant neoplasm of vulva, unspecified|Malignant neoplasm of vulva, unspecified +C0375071|T191|PX|C51.9|ICD10|Malignant neoplasm of vulva, unspecified|Malignant neoplasm of vulva, unspecified +C0375071|T191|PS|C51.9|ICD10|Vulva, unspecified|Vulva, unspecified +C0042237|T191|PT|C52|ICD10|Malignant neoplasm of vagina|Malignant neoplasm of vagina +C0042237|T191|PT|C52|ICD10CM|Malignant neoplasm of vagina|Malignant neoplasm of vagina +C0042237|T191|AB|C52|ICD10CM|Malignant neoplasm of vagina|Malignant neoplasm of vagina +C0007847|T191|HT|C53|ICD10|Malignant neoplasm of cervix uteri|Malignant neoplasm of cervix uteri +C0007847|T191|HT|C53|ICD10CM|Malignant neoplasm of cervix uteri|Malignant neoplasm of cervix uteri +C0007847|T191|AB|C53|ICD10CM|Malignant neoplasm of cervix uteri|Malignant neoplasm of cervix uteri +C0153569|T191|PS|C53.0|ICD10|Endocervix|Endocervix +C0153569|T191|PX|C53.0|ICD10|Malignant neoplasm of endocervix|Malignant neoplasm of endocervix +C0153569|T191|PT|C53.0|ICD10CM|Malignant neoplasm of endocervix|Malignant neoplasm of endocervix +C0153569|T191|AB|C53.0|ICD10CM|Malignant neoplasm of endocervix|Malignant neoplasm of endocervix +C0153570|T191|PS|C53.1|ICD10|Exocervix|Exocervix +C0153570|T191|PX|C53.1|ICD10|Malignant neoplasm of exocervix|Malignant neoplasm of exocervix +C0153570|T191|PT|C53.1|ICD10CM|Malignant neoplasm of exocervix|Malignant neoplasm of exocervix +C0153570|T191|AB|C53.1|ICD10CM|Malignant neoplasm of exocervix|Malignant neoplasm of exocervix +C0348908|T191|AB|C53.8|ICD10CM|Malignant neoplasm of overlapping sites of cervix uteri|Malignant neoplasm of overlapping sites of cervix uteri +C0348908|T191|PT|C53.8|ICD10CM|Malignant neoplasm of overlapping sites of cervix uteri|Malignant neoplasm of overlapping sites of cervix uteri +C0348908|T191|PX|C53.8|ICD10|Malignant neoplasm overlapping cervix uteri site|Malignant neoplasm overlapping cervix uteri site +C0348908|T191|PS|C53.8|ICD10|Overlapping lesion of cervix uteri|Overlapping lesion of cervix uteri +C0007847|T191|PS|C53.9|ICD10|Cervix uteri, unspecified|Cervix uteri, unspecified +C0007847|T191|PX|C53.9|ICD10|Malignant neoplasm of cervix uteri, unspecified|Malignant neoplasm of cervix uteri, unspecified +C0007847|T191|PT|C53.9|ICD10CM|Malignant neoplasm of cervix uteri, unspecified|Malignant neoplasm of cervix uteri, unspecified +C0007847|T191|AB|C53.9|ICD10CM|Malignant neoplasm of cervix uteri, unspecified|Malignant neoplasm of cervix uteri, unspecified +C0153574|T191|HT|C54|ICD10|Malignant neoplasm of corpus uteri|Malignant neoplasm of corpus uteri +C0153574|T191|AB|C54|ICD10CM|Malignant neoplasm of corpus uteri|Malignant neoplasm of corpus uteri +C0153574|T191|HT|C54|ICD10CM|Malignant neoplasm of corpus uteri|Malignant neoplasm of corpus uteri +C0496818|T191|PS|C54.0|ICD10|Isthmus uteri|Isthmus uteri +C0496818|T191|PX|C54.0|ICD10|Malignant neoplasm of isthmus uteri|Malignant neoplasm of isthmus uteri +C0496818|T191|PT|C54.0|ICD10CM|Malignant neoplasm of isthmus uteri|Malignant neoplasm of isthmus uteri +C0496818|T191|AB|C54.0|ICD10CM|Malignant neoplasm of isthmus uteri|Malignant neoplasm of isthmus uteri +C0346877|T191|ET|C54.0|ICD10CM|Malignant neoplasm of lower uterine segment|Malignant neoplasm of lower uterine segment +C0007103|T191|PS|C54.1|ICD10|Endometrium|Endometrium +C0007103|T191|PX|C54.1|ICD10|Malignant neoplasm of endometrium|Malignant neoplasm of endometrium +C0007103|T191|PT|C54.1|ICD10CM|Malignant neoplasm of endometrium|Malignant neoplasm of endometrium +C0007103|T191|AB|C54.1|ICD10CM|Malignant neoplasm of endometrium|Malignant neoplasm of endometrium +C0496820|T191|PT|C54.2|ICD10CM|Malignant neoplasm of myometrium|Malignant neoplasm of myometrium +C0496820|T191|AB|C54.2|ICD10CM|Malignant neoplasm of myometrium|Malignant neoplasm of myometrium +C0496820|T191|PX|C54.2|ICD10|Malignant neoplasm of myometrium|Malignant neoplasm of myometrium +C0496820|T191|PS|C54.2|ICD10|Myometrium|Myometrium +C0496821|T191|PS|C54.3|ICD10|Fundus uteri|Fundus uteri +C0496821|T191|PX|C54.3|ICD10|Malignant neoplasm of fundus uteri|Malignant neoplasm of fundus uteri +C0496821|T191|PT|C54.3|ICD10CM|Malignant neoplasm of fundus uteri|Malignant neoplasm of fundus uteri +C0496821|T191|AB|C54.3|ICD10CM|Malignant neoplasm of fundus uteri|Malignant neoplasm of fundus uteri +C0348907|T191|AB|C54.8|ICD10CM|Malignant neoplasm of overlapping sites of corpus uteri|Malignant neoplasm of overlapping sites of corpus uteri +C0348907|T191|PT|C54.8|ICD10CM|Malignant neoplasm of overlapping sites of corpus uteri|Malignant neoplasm of overlapping sites of corpus uteri +C0348907|T191|PX|C54.8|ICD10|Malignant neoplasm overlapping corpus uteri site|Malignant neoplasm overlapping corpus uteri site +C0348907|T191|PS|C54.8|ICD10|Overlapping lesion of corpus uteri|Overlapping lesion of corpus uteri +C0153574|T191|PS|C54.9|ICD10|Corpus uteri, unspecified|Corpus uteri, unspecified +C0153574|T191|PX|C54.9|ICD10|Malignant neoplasm of corpus uteri, unspecified|Malignant neoplasm of corpus uteri, unspecified +C0153574|T191|PT|C54.9|ICD10CM|Malignant neoplasm of corpus uteri, unspecified|Malignant neoplasm of corpus uteri, unspecified +C0153574|T191|AB|C54.9|ICD10CM|Malignant neoplasm of corpus uteri, unspecified|Malignant neoplasm of corpus uteri, unspecified +C0153567|T191|PT|C55|ICD10CM|Malignant neoplasm of uterus, part unspecified|Malignant neoplasm of uterus, part unspecified +C0153567|T191|AB|C55|ICD10CM|Malignant neoplasm of uterus, part unspecified|Malignant neoplasm of uterus, part unspecified +C0153567|T191|PT|C55|ICD10|Malignant neoplasm of uterus, part unspecified|Malignant neoplasm of uterus, part unspecified +C1140680|T191|PT|C56|ICD10|Malignant neoplasm of ovary|Malignant neoplasm of ovary +C1140680|T191|HT|C56|ICD10CM|Malignant neoplasm of ovary|Malignant neoplasm of ovary +C1140680|T191|AB|C56|ICD10CM|Malignant neoplasm of ovary|Malignant neoplasm of ovary +C2842146|T191|AB|C56.1|ICD10CM|Malignant neoplasm of right ovary|Malignant neoplasm of right ovary +C2842146|T191|PT|C56.1|ICD10CM|Malignant neoplasm of right ovary|Malignant neoplasm of right ovary +C2977928|T191|AB|C56.2|ICD10CM|Malignant neoplasm of left ovary|Malignant neoplasm of left ovary +C2977928|T191|PT|C56.2|ICD10CM|Malignant neoplasm of left ovary|Malignant neoplasm of left ovary +C2842147|T191|AB|C56.9|ICD10CM|Malignant neoplasm of unspecified ovary|Malignant neoplasm of unspecified ovary +C2842147|T191|PT|C56.9|ICD10CM|Malignant neoplasm of unspecified ovary|Malignant neoplasm of unspecified ovary +C0153585|T191|AB|C57|ICD10CM|Malignant neoplasm of other and unsp female genital organs|Malignant neoplasm of other and unsp female genital organs +C0153585|T191|HT|C57|ICD10CM|Malignant neoplasm of other and unspecified female genital organs|Malignant neoplasm of other and unspecified female genital organs +C0153585|T191|HT|C57|ICD10|Malignant neoplasm of other and unspecified female genital organs|Malignant neoplasm of other and unspecified female genital organs +C0153579|T191|PS|C57.0|ICD10|Fallopian tube|Fallopian tube +C0153579|T191|PX|C57.0|ICD10|Malignant neoplasm of fallopian tube|Malignant neoplasm of fallopian tube +C0153579|T191|HT|C57.0|ICD10CM|Malignant neoplasm of fallopian tube|Malignant neoplasm of fallopian tube +C0153579|T191|AB|C57.0|ICD10CM|Malignant neoplasm of fallopian tube|Malignant neoplasm of fallopian tube +C0153579|T191|ET|C57.0|ICD10CM|Malignant neoplasm of oviduct|Malignant neoplasm of oviduct +C0153579|T191|ET|C57.0|ICD10CM|Malignant neoplasm of uterine tube|Malignant neoplasm of uterine tube +C2842148|T191|AB|C57.00|ICD10CM|Malignant neoplasm of unspecified fallopian tube|Malignant neoplasm of unspecified fallopian tube +C2842148|T191|PT|C57.00|ICD10CM|Malignant neoplasm of unspecified fallopian tube|Malignant neoplasm of unspecified fallopian tube +C2842149|T191|AB|C57.01|ICD10CM|Malignant neoplasm of right fallopian tube|Malignant neoplasm of right fallopian tube +C2842149|T191|PT|C57.01|ICD10CM|Malignant neoplasm of right fallopian tube|Malignant neoplasm of right fallopian tube +C2842150|T191|AB|C57.02|ICD10CM|Malignant neoplasm of left fallopian tube|Malignant neoplasm of left fallopian tube +C2842150|T191|PT|C57.02|ICD10CM|Malignant neoplasm of left fallopian tube|Malignant neoplasm of left fallopian tube +C0346866|T191|PS|C57.1|ICD10|Broad ligament|Broad ligament +C0346866|T191|PX|C57.1|ICD10|Malignant neoplasm of broad ligament|Malignant neoplasm of broad ligament +C0346866|T191|HT|C57.1|ICD10CM|Malignant neoplasm of broad ligament|Malignant neoplasm of broad ligament +C0346866|T191|AB|C57.1|ICD10CM|Malignant neoplasm of broad ligament|Malignant neoplasm of broad ligament +C2842151|T191|AB|C57.10|ICD10CM|Malignant neoplasm of unspecified broad ligament|Malignant neoplasm of unspecified broad ligament +C2842151|T191|PT|C57.10|ICD10CM|Malignant neoplasm of unspecified broad ligament|Malignant neoplasm of unspecified broad ligament +C2842152|T191|AB|C57.11|ICD10CM|Malignant neoplasm of right broad ligament|Malignant neoplasm of right broad ligament +C2842152|T191|PT|C57.11|ICD10CM|Malignant neoplasm of right broad ligament|Malignant neoplasm of right broad ligament +C2842153|T191|AB|C57.12|ICD10CM|Malignant neoplasm of left broad ligament|Malignant neoplasm of left broad ligament +C2842153|T191|PT|C57.12|ICD10CM|Malignant neoplasm of left broad ligament|Malignant neoplasm of left broad ligament +C0346867|T191|HT|C57.2|ICD10CM|Malignant neoplasm of round ligament|Malignant neoplasm of round ligament +C0346867|T191|AB|C57.2|ICD10CM|Malignant neoplasm of round ligament|Malignant neoplasm of round ligament +C0346867|T191|PX|C57.2|ICD10|Malignant neoplasm of round ligament|Malignant neoplasm of round ligament +C0346867|T191|PS|C57.2|ICD10|Round ligament|Round ligament +C2842154|T191|AB|C57.20|ICD10CM|Malignant neoplasm of unspecified round ligament|Malignant neoplasm of unspecified round ligament +C2842154|T191|PT|C57.20|ICD10CM|Malignant neoplasm of unspecified round ligament|Malignant neoplasm of unspecified round ligament +C2842155|T191|AB|C57.21|ICD10CM|Malignant neoplasm of right round ligament|Malignant neoplasm of right round ligament +C2842155|T191|PT|C57.21|ICD10CM|Malignant neoplasm of right round ligament|Malignant neoplasm of right round ligament +C2842156|T191|AB|C57.22|ICD10CM|Malignant neoplasm of left round ligament|Malignant neoplasm of left round ligament +C2842156|T191|PT|C57.22|ICD10CM|Malignant neoplasm of left round ligament|Malignant neoplasm of left round ligament +C0153581|T191|PX|C57.3|ICD10|Malignant neoplasm of parametrium|Malignant neoplasm of parametrium +C0153581|T191|PT|C57.3|ICD10CM|Malignant neoplasm of parametrium|Malignant neoplasm of parametrium +C0153581|T191|AB|C57.3|ICD10CM|Malignant neoplasm of parametrium|Malignant neoplasm of parametrium +C0864950|T191|ET|C57.3|ICD10CM|Malignant neoplasm of uterine ligament NOS|Malignant neoplasm of uterine ligament NOS +C0153581|T191|PS|C57.3|ICD10|Parametrium|Parametrium +C0153584|T191|PX|C57.4|ICD10|Malignant neoplasm of uterine adnexa, unspecified|Malignant neoplasm of uterine adnexa, unspecified +C0153584|T191|PT|C57.4|ICD10CM|Malignant neoplasm of uterine adnexa, unspecified|Malignant neoplasm of uterine adnexa, unspecified +C0153584|T191|AB|C57.4|ICD10CM|Malignant neoplasm of uterine adnexa, unspecified|Malignant neoplasm of uterine adnexa, unspecified +C0153584|T191|PS|C57.4|ICD10|Uterine adnexa, unspecified|Uterine adnexa, unspecified +C0348366|T191|PX|C57.7|ICD10|Malignant neoplasm of other specified female genital organs|Malignant neoplasm of other specified female genital organs +C0348366|T191|PT|C57.7|ICD10CM|Malignant neoplasm of other specified female genital organs|Malignant neoplasm of other specified female genital organs +C0348366|T191|AB|C57.7|ICD10CM|Malignant neoplasm of other specified female genital organs|Malignant neoplasm of other specified female genital organs +C2842157|T191|ET|C57.7|ICD10CM|Malignant neoplasm of wolffian body or duct|Malignant neoplasm of wolffian body or duct +C0348366|T191|PS|C57.7|ICD10|Other specified female genital organs|Other specified female genital organs +C0348367|T191|PT|C57.8|ICD10CM|Malignant neoplasm of overlapping sites of female genital organs|Malignant neoplasm of overlapping sites of female genital organs +C0348367|T191|AB|C57.8|ICD10CM|Malignant neoplasm of ovrlp sites of female genital organs|Malignant neoplasm of ovrlp sites of female genital organs +C0348367|T191|PX|C57.8|ICD10|Malignant neoplasm overlapping female genital organ site|Malignant neoplasm overlapping female genital organ site +C0348367|T191|PS|C57.8|ICD10|Overlapping lesion of female genital organs|Overlapping lesion of female genital organs +C2842159|T191|ET|C57.8|ICD10CM|Primary tubo-ovarian malignant neoplasm whose point of origin cannot be determined|Primary tubo-ovarian malignant neoplasm whose point of origin cannot be determined +C2842160|T191|ET|C57.8|ICD10CM|Primary utero-ovarian malignant neoplasm whose point of origin cannot be determined|Primary utero-ovarian malignant neoplasm whose point of origin cannot be determined +C0153592|T191|PS|C57.9|ICD10|Female genital organ, unspecified|Female genital organ, unspecified +C0153592|T191|PX|C57.9|ICD10|Malignant neoplasm of female genital organ, unspecified|Malignant neoplasm of female genital organ, unspecified +C0153592|T191|PT|C57.9|ICD10CM|Malignant neoplasm of female genital organ, unspecified|Malignant neoplasm of female genital organ, unspecified +C0153592|T191|AB|C57.9|ICD10CM|Malignant neoplasm of female genital organ, unspecified|Malignant neoplasm of female genital organ, unspecified +C0864959|T191|ET|C57.9|ICD10CM|Malignant neoplasm of female genitourinary tract NOS|Malignant neoplasm of female genitourinary tract NOS +C0008497|T191|ET|C58|ICD10CM|choriocarcinoma NOS|choriocarcinoma NOS +C0008497|T191|ET|C58|ICD10CM|chorionepithelioma NOS|chorionepithelioma NOS +C0153572|T191|PT|C58|ICD10CM|Malignant neoplasm of placenta|Malignant neoplasm of placenta +C0153572|T191|AB|C58|ICD10CM|Malignant neoplasm of placenta|Malignant neoplasm of placenta +C0153572|T191|PT|C58|ICD10|Malignant neoplasm of placenta|Malignant neoplasm of placenta +C0153601|T191|HT|C60|ICD10|Malignant neoplasm of penis|Malignant neoplasm of penis +C0153601|T191|HT|C60|ICD10CM|Malignant neoplasm of penis|Malignant neoplasm of penis +C0153601|T191|AB|C60|ICD10CM|Malignant neoplasm of penis|Malignant neoplasm of penis +C4290072|T191|ET|C60-C63|ICD10CM|malignant neoplasm of skin of male genital organs|malignant neoplasm of skin of male genital organs +C0153606|T191|HT|C60-C63|ICD10CM|Malignant neoplasms of male genital organs (C60-C63)|Malignant neoplasms of male genital organs (C60-C63) +C0153606|T191|HT|C60-C63.9|ICD10|Malignant neoplasms of male genital organs|Malignant neoplasms of male genital organs +C0153598|T191|ET|C60.0|ICD10CM|Malignant neoplasm of foreskin|Malignant neoplasm of foreskin +C0153598|T191|PT|C60.0|ICD10CM|Malignant neoplasm of prepuce|Malignant neoplasm of prepuce +C0153598|T191|AB|C60.0|ICD10CM|Malignant neoplasm of prepuce|Malignant neoplasm of prepuce +C0153598|T191|PX|C60.0|ICD10|Malignant neoplasm of prepuce|Malignant neoplasm of prepuce +C0153598|T191|PS|C60.0|ICD10|Prepuce|Prepuce +C0153599|T191|PS|C60.1|ICD10|Glans penis|Glans penis +C0153599|T191|PX|C60.1|ICD10|Malignant neoplasm of glans penis|Malignant neoplasm of glans penis +C0153599|T191|PT|C60.1|ICD10CM|Malignant neoplasm of glans penis|Malignant neoplasm of glans penis +C0153599|T191|AB|C60.1|ICD10CM|Malignant neoplasm of glans penis|Malignant neoplasm of glans penis +C0153600|T191|PS|C60.2|ICD10|Body of penis|Body of penis +C0153600|T191|PX|C60.2|ICD10|Malignant neoplasm of body of penis|Malignant neoplasm of body of penis +C0153600|T191|PT|C60.2|ICD10CM|Malignant neoplasm of body of penis|Malignant neoplasm of body of penis +C0153600|T191|AB|C60.2|ICD10CM|Malignant neoplasm of body of penis|Malignant neoplasm of body of penis +C0349457|T191|ET|C60.2|ICD10CM|Malignant neoplasm of corpus cavernosum|Malignant neoplasm of corpus cavernosum +C0349056|T191|AB|C60.8|ICD10CM|Malignant neoplasm of overlapping sites of penis|Malignant neoplasm of overlapping sites of penis +C0349056|T191|PT|C60.8|ICD10CM|Malignant neoplasm of overlapping sites of penis|Malignant neoplasm of overlapping sites of penis +C0349056|T191|PX|C60.8|ICD10|Malignant neoplasm overlapping penis site|Malignant neoplasm overlapping penis site +C0349056|T191|PS|C60.8|ICD10|Overlapping lesion of penis|Overlapping lesion of penis +C0153601|T191|PX|C60.9|ICD10|Malignant neoplasm of penis, unspecified|Malignant neoplasm of penis, unspecified +C0153601|T191|PT|C60.9|ICD10CM|Malignant neoplasm of penis, unspecified|Malignant neoplasm of penis, unspecified +C0153601|T191|AB|C60.9|ICD10CM|Malignant neoplasm of penis, unspecified|Malignant neoplasm of penis, unspecified +C0346225|T191|ET|C60.9|ICD10CM|Malignant neoplasm of skin of penis NOS|Malignant neoplasm of skin of penis NOS +C0153601|T191|PS|C60.9|ICD10|Penis, unspecified|Penis, unspecified +C0376358|T191|PT|C61|ICD10CM|Malignant neoplasm of prostate|Malignant neoplasm of prostate +C0376358|T191|AB|C61|ICD10CM|Malignant neoplasm of prostate|Malignant neoplasm of prostate +C0376358|T191|PT|C61|ICD10|Malignant neoplasm of prostate|Malignant neoplasm of prostate +C0153594|T191|HT|C62|ICD10CM|Malignant neoplasm of testis|Malignant neoplasm of testis +C0153594|T191|AB|C62|ICD10CM|Malignant neoplasm of testis|Malignant neoplasm of testis +C0153594|T191|HT|C62|ICD10|Malignant neoplasm of testis|Malignant neoplasm of testis +C0346236|T191|ET|C62.0|ICD10CM|Malignant neoplasm of ectopic testis|Malignant neoplasm of ectopic testis +C0153595|T191|ET|C62.0|ICD10CM|Malignant neoplasm of retained testis|Malignant neoplasm of retained testis +C0153595|T191|HT|C62.0|ICD10CM|Malignant neoplasm of undescended testis|Malignant neoplasm of undescended testis +C0153595|T191|AB|C62.0|ICD10CM|Malignant neoplasm of undescended testis|Malignant neoplasm of undescended testis +C0153595|T191|PX|C62.0|ICD10|Malignant neoplasm of undescended testis|Malignant neoplasm of undescended testis +C0153595|T191|PS|C62.0|ICD10|Undescended testis|Undescended testis +C2845872|T191|AB|C62.00|ICD10CM|Malignant neoplasm of unspecified undescended testis|Malignant neoplasm of unspecified undescended testis +C2845872|T191|PT|C62.00|ICD10CM|Malignant neoplasm of unspecified undescended testis|Malignant neoplasm of unspecified undescended testis +C2845873|T191|AB|C62.01|ICD10CM|Malignant neoplasm of undescended right testis|Malignant neoplasm of undescended right testis +C2845873|T191|PT|C62.01|ICD10CM|Malignant neoplasm of undescended right testis|Malignant neoplasm of undescended right testis +C2845874|T191|AB|C62.02|ICD10CM|Malignant neoplasm of undescended left testis|Malignant neoplasm of undescended left testis +C2845874|T191|PT|C62.02|ICD10CM|Malignant neoplasm of undescended left testis|Malignant neoplasm of undescended left testis +C0348906|T191|PS|C62.1|ICD10|Descended testis|Descended testis +C0348906|T191|PX|C62.1|ICD10|Malignant neoplasm of descended testis|Malignant neoplasm of descended testis +C0348906|T191|HT|C62.1|ICD10CM|Malignant neoplasm of descended testis|Malignant neoplasm of descended testis +C0348906|T191|AB|C62.1|ICD10CM|Malignant neoplasm of descended testis|Malignant neoplasm of descended testis +C0864960|T191|ET|C62.1|ICD10CM|Malignant neoplasm of scrotal testis|Malignant neoplasm of scrotal testis +C2845875|T191|AB|C62.10|ICD10CM|Malignant neoplasm of unspecified descended testis|Malignant neoplasm of unspecified descended testis +C2845875|T191|PT|C62.10|ICD10CM|Malignant neoplasm of unspecified descended testis|Malignant neoplasm of unspecified descended testis +C2845876|T191|AB|C62.11|ICD10CM|Malignant neoplasm of descended right testis|Malignant neoplasm of descended right testis +C2845876|T191|PT|C62.11|ICD10CM|Malignant neoplasm of descended right testis|Malignant neoplasm of descended right testis +C2845877|T191|AB|C62.12|ICD10CM|Malignant neoplasm of descended left testis|Malignant neoplasm of descended left testis +C2845877|T191|PT|C62.12|ICD10CM|Malignant neoplasm of descended left testis|Malignant neoplasm of descended left testis +C0153594|T191|AB|C62.9|ICD10CM|Malignant neoplasm of testis, unsp descended or undescended|Malignant neoplasm of testis, unsp descended or undescended +C0153594|T191|PX|C62.9|ICD10|Malignant neoplasm of testis, unspecified|Malignant neoplasm of testis, unspecified +C0153594|T191|HT|C62.9|ICD10CM|Malignant neoplasm of testis, unspecified whether descended or undescended|Malignant neoplasm of testis, unspecified whether descended or undescended +C0153594|T191|PS|C62.9|ICD10|Testis, unspecified|Testis, unspecified +C2845878|T191|AB|C62.90|ICD10CM|Malig neoplasm of unsp testis, unsp descended or undescended|Malig neoplasm of unsp testis, unsp descended or undescended +C0153594|T191|ET|C62.90|ICD10CM|Malignant neoplasm of testis NOS|Malignant neoplasm of testis NOS +C2845878|T191|PT|C62.90|ICD10CM|Malignant neoplasm of unspecified testis, unspecified whether descended or undescended|Malignant neoplasm of unspecified testis, unspecified whether descended or undescended +C2845879|T191|AB|C62.91|ICD10CM|Malig neoplm of right testis, unsp descended or undescended|Malig neoplm of right testis, unsp descended or undescended +C2845879|T191|PT|C62.91|ICD10CM|Malignant neoplasm of right testis, unspecified whether descended or undescended|Malignant neoplasm of right testis, unspecified whether descended or undescended +C2845880|T191|AB|C62.92|ICD10CM|Malig neoplasm of left testis, unsp descended or undescended|Malig neoplasm of left testis, unsp descended or undescended +C2845880|T191|PT|C62.92|ICD10CM|Malignant neoplasm of left testis, unspecified whether descended or undescended|Malignant neoplasm of left testis, unspecified whether descended or undescended +C0497581|T191|AB|C63|ICD10CM|Malignant neoplasm of other and unsp male genital organs|Malignant neoplasm of other and unsp male genital organs +C0497581|T191|HT|C63|ICD10CM|Malignant neoplasm of other and unspecified male genital organs|Malignant neoplasm of other and unspecified male genital organs +C0497581|T191|HT|C63|ICD10|Malignant neoplasm of other and unspecified male genital organs|Malignant neoplasm of other and unspecified male genital organs +C0153602|T191|PS|C63.0|ICD10|Epididymis|Epididymis +C0153602|T191|PX|C63.0|ICD10|Malignant neoplasm of epididymis|Malignant neoplasm of epididymis +C0153602|T191|HT|C63.0|ICD10CM|Malignant neoplasm of epididymis|Malignant neoplasm of epididymis +C0153602|T191|AB|C63.0|ICD10CM|Malignant neoplasm of epididymis|Malignant neoplasm of epididymis +C2845881|T191|AB|C63.00|ICD10CM|Malignant neoplasm of unspecified epididymis|Malignant neoplasm of unspecified epididymis +C2845881|T191|PT|C63.00|ICD10CM|Malignant neoplasm of unspecified epididymis|Malignant neoplasm of unspecified epididymis +C2845882|T191|AB|C63.01|ICD10CM|Malignant neoplasm of right epididymis|Malignant neoplasm of right epididymis +C2845882|T191|PT|C63.01|ICD10CM|Malignant neoplasm of right epididymis|Malignant neoplasm of right epididymis +C2845883|T191|AB|C63.02|ICD10CM|Malignant neoplasm of left epididymis|Malignant neoplasm of left epididymis +C2845883|T191|PT|C63.02|ICD10CM|Malignant neoplasm of left epididymis|Malignant neoplasm of left epididymis +C0153603|T191|HT|C63.1|ICD10CM|Malignant neoplasm of spermatic cord|Malignant neoplasm of spermatic cord +C0153603|T191|AB|C63.1|ICD10CM|Malignant neoplasm of spermatic cord|Malignant neoplasm of spermatic cord +C0153603|T191|PX|C63.1|ICD10|Malignant neoplasm of spermatic cord|Malignant neoplasm of spermatic cord +C0153603|T191|PS|C63.1|ICD10|Spermatic cord|Spermatic cord +C2845884|T191|AB|C63.10|ICD10CM|Malignant neoplasm of unspecified spermatic cord|Malignant neoplasm of unspecified spermatic cord +C2845884|T191|PT|C63.10|ICD10CM|Malignant neoplasm of unspecified spermatic cord|Malignant neoplasm of unspecified spermatic cord +C2845885|T191|AB|C63.11|ICD10CM|Malignant neoplasm of right spermatic cord|Malignant neoplasm of right spermatic cord +C2845885|T191|PT|C63.11|ICD10CM|Malignant neoplasm of right spermatic cord|Malignant neoplasm of right spermatic cord +C2845886|T191|AB|C63.12|ICD10CM|Malignant neoplasm of left spermatic cord|Malignant neoplasm of left spermatic cord +C2845886|T191|PT|C63.12|ICD10CM|Malignant neoplasm of left spermatic cord|Malignant neoplasm of left spermatic cord +C0153604|T191|PX|C63.2|ICD10|Malignant neoplasm of scrotum|Malignant neoplasm of scrotum +C0153604|T191|PT|C63.2|ICD10CM|Malignant neoplasm of scrotum|Malignant neoplasm of scrotum +C0153604|T191|AB|C63.2|ICD10CM|Malignant neoplasm of scrotum|Malignant neoplasm of scrotum +C0864963|T191|ET|C63.2|ICD10CM|Malignant neoplasm of skin of scrotum|Malignant neoplasm of skin of scrotum +C0153604|T191|PS|C63.2|ICD10|Scrotum|Scrotum +C0348368|T191|PX|C63.7|ICD10|Malignant neoplasm of other specified male genital organs|Malignant neoplasm of other specified male genital organs +C0348368|T191|PT|C63.7|ICD10CM|Malignant neoplasm of other specified male genital organs|Malignant neoplasm of other specified male genital organs +C0348368|T191|AB|C63.7|ICD10CM|Malignant neoplasm of other specified male genital organs|Malignant neoplasm of other specified male genital organs +C0346216|T191|ET|C63.7|ICD10CM|Malignant neoplasm of seminal vesicle|Malignant neoplasm of seminal vesicle +C0346241|T191|ET|C63.7|ICD10CM|Malignant neoplasm of tunica vaginalis|Malignant neoplasm of tunica vaginalis +C0348368|T191|PS|C63.7|ICD10|Other specified male genital organs|Other specified male genital organs +C0348369|T191|PT|C63.8|ICD10CM|Malignant neoplasm of overlapping sites of male genital organs|Malignant neoplasm of overlapping sites of male genital organs +C0348369|T191|AB|C63.8|ICD10CM|Malignant neoplasm of ovrlp sites of male genital organs|Malignant neoplasm of ovrlp sites of male genital organs +C0348369|T191|PX|C63.8|ICD10|Malignant neoplasm overlapping male genital organ site|Malignant neoplasm overlapping male genital organ site +C0348369|T191|PS|C63.8|ICD10|Overlapping lesion of male genital organs|Overlapping lesion of male genital organs +C0153606|T191|PS|C63.9|ICD10|Male genital organ, unspecified|Male genital organ, unspecified +C0153606|T191|PX|C63.9|ICD10|Malignant neoplasm of male genital organ, unspecified|Malignant neoplasm of male genital organ, unspecified +C0153606|T191|PT|C63.9|ICD10CM|Malignant neoplasm of male genital organ, unspecified|Malignant neoplasm of male genital organ, unspecified +C0153606|T191|AB|C63.9|ICD10CM|Malignant neoplasm of male genital organ, unspecified|Malignant neoplasm of male genital organ, unspecified +C2845888|T191|ET|C63.9|ICD10CM|Malignant neoplasm of male genitourinary tract NOS|Malignant neoplasm of male genitourinary tract NOS +C0494158|T191|HT|C64|ICD10CM|Malignant neoplasm of kidney, except renal pelvis|Malignant neoplasm of kidney, except renal pelvis +C0494158|T191|AB|C64|ICD10CM|Malignant neoplasm of kidney, except renal pelvis|Malignant neoplasm of kidney, except renal pelvis +C0494158|T191|PT|C64|ICD10|Malignant neoplasm of kidney, except renal pelvis|Malignant neoplasm of kidney, except renal pelvis +C0751571|T191|HT|C64-C68|ICD10CM|Malignant neoplasms of urinary tract (C64-C68)|Malignant neoplasms of urinary tract (C64-C68) +C0751571|T191|HT|C64-C68.9|ICD10|Malignant neoplasms of urinary tract|Malignant neoplasms of urinary tract +C2845890|T191|AB|C64.1|ICD10CM|Malignant neoplasm of right kidney, except renal pelvis|Malignant neoplasm of right kidney, except renal pelvis +C2845890|T191|PT|C64.1|ICD10CM|Malignant neoplasm of right kidney, except renal pelvis|Malignant neoplasm of right kidney, except renal pelvis +C2977941|T191|AB|C64.2|ICD10CM|Malignant neoplasm of left kidney, except renal pelvis|Malignant neoplasm of left kidney, except renal pelvis +C2977941|T191|PT|C64.2|ICD10CM|Malignant neoplasm of left kidney, except renal pelvis|Malignant neoplasm of left kidney, except renal pelvis +C2845891|T191|AB|C64.9|ICD10CM|Malignant neoplasm of unsp kidney, except renal pelvis|Malignant neoplasm of unsp kidney, except renal pelvis +C2845891|T191|PT|C64.9|ICD10CM|Malignant neoplasm of unspecified kidney, except renal pelvis|Malignant neoplasm of unspecified kidney, except renal pelvis +C0346265|T191|ET|C65|ICD10CM|malignant neoplasm of pelviureteric junction|malignant neoplasm of pelviureteric junction +C0346258|T191|ET|C65|ICD10CM|malignant neoplasm of renal calyces|malignant neoplasm of renal calyces +C0153618|T191|HT|C65|ICD10CM|Malignant neoplasm of renal pelvis|Malignant neoplasm of renal pelvis +C0153618|T191|AB|C65|ICD10CM|Malignant neoplasm of renal pelvis|Malignant neoplasm of renal pelvis +C0153618|T191|PT|C65|ICD10|Malignant neoplasm of renal pelvis|Malignant neoplasm of renal pelvis +C2845893|T191|AB|C65.1|ICD10CM|Malignant neoplasm of right renal pelvis|Malignant neoplasm of right renal pelvis +C2845893|T191|PT|C65.1|ICD10CM|Malignant neoplasm of right renal pelvis|Malignant neoplasm of right renal pelvis +C2977942|T191|AB|C65.2|ICD10CM|Malignant neoplasm of left renal pelvis|Malignant neoplasm of left renal pelvis +C2977942|T191|PT|C65.2|ICD10CM|Malignant neoplasm of left renal pelvis|Malignant neoplasm of left renal pelvis +C2845894|T191|AB|C65.9|ICD10CM|Malignant neoplasm of unspecified renal pelvis|Malignant neoplasm of unspecified renal pelvis +C2845894|T191|PT|C65.9|ICD10CM|Malignant neoplasm of unspecified renal pelvis|Malignant neoplasm of unspecified renal pelvis +C0153619|T191|PT|C66|ICD10|Malignant neoplasm of ureter|Malignant neoplasm of ureter +C0153619|T191|HT|C66|ICD10CM|Malignant neoplasm of ureter|Malignant neoplasm of ureter +C0153619|T191|AB|C66|ICD10CM|Malignant neoplasm of ureter|Malignant neoplasm of ureter +C2845896|T191|AB|C66.1|ICD10CM|Malignant neoplasm of right ureter|Malignant neoplasm of right ureter +C2845896|T191|PT|C66.1|ICD10CM|Malignant neoplasm of right ureter|Malignant neoplasm of right ureter +C2977943|T191|AB|C66.2|ICD10CM|Malignant neoplasm of left ureter|Malignant neoplasm of left ureter +C2977943|T191|PT|C66.2|ICD10CM|Malignant neoplasm of left ureter|Malignant neoplasm of left ureter +C2845897|T191|AB|C66.9|ICD10CM|Malignant neoplasm of unspecified ureter|Malignant neoplasm of unspecified ureter +C2845897|T191|PT|C66.9|ICD10CM|Malignant neoplasm of unspecified ureter|Malignant neoplasm of unspecified ureter +C0005684|T191|HT|C67|ICD10|Malignant neoplasm of bladder|Malignant neoplasm of bladder +C0005684|T191|HT|C67|ICD10CM|Malignant neoplasm of bladder|Malignant neoplasm of bladder +C0005684|T191|AB|C67|ICD10CM|Malignant neoplasm of bladder|Malignant neoplasm of bladder +C0496826|T191|PX|C67.0|ICD10|Malignant neoplasm of trigone of bladder|Malignant neoplasm of trigone of bladder +C0496826|T191|PT|C67.0|ICD10CM|Malignant neoplasm of trigone of bladder|Malignant neoplasm of trigone of bladder +C0496826|T191|AB|C67.0|ICD10CM|Malignant neoplasm of trigone of bladder|Malignant neoplasm of trigone of bladder +C0496826|T191|PS|C67.0|ICD10|Trigone of bladder|Trigone of bladder +C0496827|T191|PS|C67.1|ICD10|Dome of bladder|Dome of bladder +C0496827|T191|PX|C67.1|ICD10|Malignant neoplasm of dome of bladder|Malignant neoplasm of dome of bladder +C0496827|T191|PT|C67.1|ICD10CM|Malignant neoplasm of dome of bladder|Malignant neoplasm of dome of bladder +C0496827|T191|AB|C67.1|ICD10CM|Malignant neoplasm of dome of bladder|Malignant neoplasm of dome of bladder +C0496828|T191|PS|C67.2|ICD10|Lateral wall of bladder|Lateral wall of bladder +C0496828|T191|PX|C67.2|ICD10|Malignant neoplasm of lateral wall of bladder|Malignant neoplasm of lateral wall of bladder +C0496828|T191|PT|C67.2|ICD10CM|Malignant neoplasm of lateral wall of bladder|Malignant neoplasm of lateral wall of bladder +C0496828|T191|AB|C67.2|ICD10CM|Malignant neoplasm of lateral wall of bladder|Malignant neoplasm of lateral wall of bladder +C0153611|T191|PS|C67.3|ICD10|Anterior wall of bladder|Anterior wall of bladder +C0153611|T191|PX|C67.3|ICD10|Malignant neoplasm of anterior wall of bladder|Malignant neoplasm of anterior wall of bladder +C0153611|T191|PT|C67.3|ICD10CM|Malignant neoplasm of anterior wall of bladder|Malignant neoplasm of anterior wall of bladder +C0153611|T191|AB|C67.3|ICD10CM|Malignant neoplasm of anterior wall of bladder|Malignant neoplasm of anterior wall of bladder +C0153612|T191|PT|C67.4|ICD10CM|Malignant neoplasm of posterior wall of bladder|Malignant neoplasm of posterior wall of bladder +C0153612|T191|AB|C67.4|ICD10CM|Malignant neoplasm of posterior wall of bladder|Malignant neoplasm of posterior wall of bladder +C0153612|T191|PX|C67.4|ICD10|Malignant neoplasm of posterior wall of bladder|Malignant neoplasm of posterior wall of bladder +C0153612|T191|PS|C67.4|ICD10|Posterior wall of bladder|Posterior wall of bladder +C0153613|T191|PS|C67.5|ICD10|Bladder neck|Bladder neck +C0153613|T191|PX|C67.5|ICD10|Malignant neoplasm of bladder neck|Malignant neoplasm of bladder neck +C0153613|T191|PT|C67.5|ICD10CM|Malignant neoplasm of bladder neck|Malignant neoplasm of bladder neck +C0153613|T191|AB|C67.5|ICD10CM|Malignant neoplasm of bladder neck|Malignant neoplasm of bladder neck +C0864965|T191|ET|C67.5|ICD10CM|Malignant neoplasm of internal urethral orifice|Malignant neoplasm of internal urethral orifice +C0153614|T191|PT|C67.6|ICD10CM|Malignant neoplasm of ureteric orifice|Malignant neoplasm of ureteric orifice +C0153614|T191|AB|C67.6|ICD10CM|Malignant neoplasm of ureteric orifice|Malignant neoplasm of ureteric orifice +C0153614|T191|PX|C67.6|ICD10|Malignant neoplasm of ureteric orifice|Malignant neoplasm of ureteric orifice +C0153614|T191|PS|C67.6|ICD10|Ureteric orifice|Ureteric orifice +C0153615|T191|PX|C67.7|ICD10|Malignant neoplasm of urachus|Malignant neoplasm of urachus +C0153615|T191|PT|C67.7|ICD10CM|Malignant neoplasm of urachus|Malignant neoplasm of urachus +C0153615|T191|AB|C67.7|ICD10CM|Malignant neoplasm of urachus|Malignant neoplasm of urachus +C0153615|T191|PS|C67.7|ICD10|Urachus|Urachus +C0349054|T191|AB|C67.8|ICD10CM|Malignant neoplasm of overlapping sites of bladder|Malignant neoplasm of overlapping sites of bladder +C0349054|T191|PT|C67.8|ICD10CM|Malignant neoplasm of overlapping sites of bladder|Malignant neoplasm of overlapping sites of bladder +C0349054|T191|PX|C67.8|ICD10|Malignant neoplasm overlapping bladder site|Malignant neoplasm overlapping bladder site +C0349054|T191|PS|C67.8|ICD10|Overlapping lesion of bladder|Overlapping lesion of bladder +C0005684|T191|PS|C67.9|ICD10|Bladder, unspecified|Bladder, unspecified +C0005684|T191|PX|C67.9|ICD10|Malignant neoplasm of bladder, unspecified|Malignant neoplasm of bladder, unspecified +C0005684|T191|PT|C67.9|ICD10CM|Malignant neoplasm of bladder, unspecified|Malignant neoplasm of bladder, unspecified +C0005684|T191|AB|C67.9|ICD10CM|Malignant neoplasm of bladder, unspecified|Malignant neoplasm of bladder, unspecified +C0346890|T191|AB|C68|ICD10CM|Malignant neoplasm of other and unspecified urinary organs|Malignant neoplasm of other and unspecified urinary organs +C0346890|T191|HT|C68|ICD10CM|Malignant neoplasm of other and unspecified urinary organs|Malignant neoplasm of other and unspecified urinary organs +C0346890|T191|HT|C68|ICD10|Malignant neoplasm of other and unspecified urinary organs|Malignant neoplasm of other and unspecified urinary organs +C0153620|T191|PX|C68.0|ICD10|Malignant neoplasm of urethra|Malignant neoplasm of urethra +C0153620|T191|PT|C68.0|ICD10CM|Malignant neoplasm of urethra|Malignant neoplasm of urethra +C0153620|T191|AB|C68.0|ICD10CM|Malignant neoplasm of urethra|Malignant neoplasm of urethra +C0153620|T191|PS|C68.0|ICD10|Urethra|Urethra +C0153621|T191|PX|C68.1|ICD10|Malignant neoplasm of paraurethral gland|Malignant neoplasm of paraurethral gland +C0153621|T191|PT|C68.1|ICD10CM|Malignant neoplasm of paraurethral glands|Malignant neoplasm of paraurethral glands +C0153621|T191|AB|C68.1|ICD10CM|Malignant neoplasm of paraurethral glands|Malignant neoplasm of paraurethral glands +C0153621|T191|PS|C68.1|ICD10|Paraurethral gland|Paraurethral gland +C0349055|T191|AB|C68.8|ICD10CM|Malignant neoplasm of overlapping sites of urinary organs|Malignant neoplasm of overlapping sites of urinary organs +C0349055|T191|PT|C68.8|ICD10CM|Malignant neoplasm of overlapping sites of urinary organs|Malignant neoplasm of overlapping sites of urinary organs +C0349055|T191|PX|C68.8|ICD10|Malignant neoplasm overlapping urinary organ site|Malignant neoplasm overlapping urinary organ site +C0349055|T191|PS|C68.8|ICD10|Overlapping lesion of urinary organs|Overlapping lesion of urinary organs +C0348371|T191|PX|C68.9|ICD10|Malignant neoplasm of urinary organ, unspecified|Malignant neoplasm of urinary organ, unspecified +C0348371|T191|PT|C68.9|ICD10CM|Malignant neoplasm of urinary organ, unspecified|Malignant neoplasm of urinary organ, unspecified +C0348371|T191|AB|C68.9|ICD10CM|Malignant neoplasm of urinary organ, unspecified|Malignant neoplasm of urinary organ, unspecified +C0751571|T191|ET|C68.9|ICD10CM|Malignant neoplasm of urinary system NOS|Malignant neoplasm of urinary system NOS +C0348371|T191|PS|C68.9|ICD10|Urinary organ, unspecified|Urinary organ, unspecified +C0494160|T191|AB|C69|ICD10CM|Malignant neoplasm of eye and adnexa|Malignant neoplasm of eye and adnexa +C0494160|T191|HT|C69|ICD10CM|Malignant neoplasm of eye and adnexa|Malignant neoplasm of eye and adnexa +C0494160|T191|HT|C69|ICD10|Malignant neoplasm of eye and adnexa|Malignant neoplasm of eye and adnexa +C0348372|T191|HT|C69-C72|ICD10CM|Malignant neoplasms of eye, brain and other parts of central nervous system (C69-C72)|Malignant neoplasms of eye, brain and other parts of central nervous system (C69-C72) +C0348372|T191|HT|C69-C72.9|ICD10|Malignant neoplasms of eye, brain and other parts of central nervous system|Malignant neoplasms of eye, brain and other parts of central nervous system +C0153628|T191|PS|C69.0|ICD10|Conjunctiva|Conjunctiva +C0153628|T191|PX|C69.0|ICD10|Malignant neoplasm of conjunctiva|Malignant neoplasm of conjunctiva +C0153628|T191|HT|C69.0|ICD10CM|Malignant neoplasm of conjunctiva|Malignant neoplasm of conjunctiva +C0153628|T191|AB|C69.0|ICD10CM|Malignant neoplasm of conjunctiva|Malignant neoplasm of conjunctiva +C2845899|T191|AB|C69.00|ICD10CM|Malignant neoplasm of unspecified conjunctiva|Malignant neoplasm of unspecified conjunctiva +C2845899|T191|PT|C69.00|ICD10CM|Malignant neoplasm of unspecified conjunctiva|Malignant neoplasm of unspecified conjunctiva +C2845900|T191|AB|C69.01|ICD10CM|Malignant neoplasm of right conjunctiva|Malignant neoplasm of right conjunctiva +C2845900|T191|PT|C69.01|ICD10CM|Malignant neoplasm of right conjunctiva|Malignant neoplasm of right conjunctiva +C2845901|T191|AB|C69.02|ICD10CM|Malignant neoplasm of left conjunctiva|Malignant neoplasm of left conjunctiva +C2845901|T191|PT|C69.02|ICD10CM|Malignant neoplasm of left conjunctiva|Malignant neoplasm of left conjunctiva +C0153629|T191|PS|C69.1|ICD10|Cornea|Cornea +C0153629|T191|PX|C69.1|ICD10|Malignant neoplasm of cornea|Malignant neoplasm of cornea +C0153629|T191|HT|C69.1|ICD10CM|Malignant neoplasm of cornea|Malignant neoplasm of cornea +C0153629|T191|AB|C69.1|ICD10CM|Malignant neoplasm of cornea|Malignant neoplasm of cornea +C2845902|T191|AB|C69.10|ICD10CM|Malignant neoplasm of unspecified cornea|Malignant neoplasm of unspecified cornea +C2845902|T191|PT|C69.10|ICD10CM|Malignant neoplasm of unspecified cornea|Malignant neoplasm of unspecified cornea +C2845903|T191|AB|C69.11|ICD10CM|Malignant neoplasm of right cornea|Malignant neoplasm of right cornea +C2845903|T191|PT|C69.11|ICD10CM|Malignant neoplasm of right cornea|Malignant neoplasm of right cornea +C2845904|T191|AB|C69.12|ICD10CM|Malignant neoplasm of left cornea|Malignant neoplasm of left cornea +C2845904|T191|PT|C69.12|ICD10CM|Malignant neoplasm of left cornea|Malignant neoplasm of left cornea +C0024622|T191|PX|C69.2|ICD10|Malignant neoplasm of retina|Malignant neoplasm of retina +C0024622|T191|HT|C69.2|ICD10CM|Malignant neoplasm of retina|Malignant neoplasm of retina +C0024622|T191|AB|C69.2|ICD10CM|Malignant neoplasm of retina|Malignant neoplasm of retina +C0024622|T191|PS|C69.2|ICD10|Retina|Retina +C2845905|T191|AB|C69.20|ICD10CM|Malignant neoplasm of unspecified retina|Malignant neoplasm of unspecified retina +C2845905|T191|PT|C69.20|ICD10CM|Malignant neoplasm of unspecified retina|Malignant neoplasm of unspecified retina +C2845906|T191|AB|C69.21|ICD10CM|Malignant neoplasm of right retina|Malignant neoplasm of right retina +C2845906|T191|PT|C69.21|ICD10CM|Malignant neoplasm of right retina|Malignant neoplasm of right retina +C2845907|T191|AB|C69.22|ICD10CM|Malignant neoplasm of left retina|Malignant neoplasm of left retina +C2845907|T191|PT|C69.22|ICD10CM|Malignant neoplasm of left retina|Malignant neoplasm of left retina +C0153630|T191|PS|C69.3|ICD10|Choroid|Choroid +C0153630|T191|PX|C69.3|ICD10|Malignant neoplasm of choroid|Malignant neoplasm of choroid +C0153630|T191|HT|C69.3|ICD10CM|Malignant neoplasm of choroid|Malignant neoplasm of choroid +C0153630|T191|AB|C69.3|ICD10CM|Malignant neoplasm of choroid|Malignant neoplasm of choroid +C2845908|T191|AB|C69.30|ICD10CM|Malignant neoplasm of unspecified choroid|Malignant neoplasm of unspecified choroid +C2845908|T191|PT|C69.30|ICD10CM|Malignant neoplasm of unspecified choroid|Malignant neoplasm of unspecified choroid +C2845909|T191|AB|C69.31|ICD10CM|Malignant neoplasm of right choroid|Malignant neoplasm of right choroid +C2845909|T191|PT|C69.31|ICD10CM|Malignant neoplasm of right choroid|Malignant neoplasm of right choroid +C2845910|T191|AB|C69.32|ICD10CM|Malignant neoplasm of left choroid|Malignant neoplasm of left choroid +C2845910|T191|PT|C69.32|ICD10CM|Malignant neoplasm of left choroid|Malignant neoplasm of left choroid +C0496833|T191|PS|C69.4|ICD10|Ciliary body|Ciliary body +C0496833|T191|PX|C69.4|ICD10|Malignant neoplasm of ciliary body|Malignant neoplasm of ciliary body +C0496833|T191|HT|C69.4|ICD10CM|Malignant neoplasm of ciliary body|Malignant neoplasm of ciliary body +C0496833|T191|AB|C69.4|ICD10CM|Malignant neoplasm of ciliary body|Malignant neoplasm of ciliary body +C2845911|T191|AB|C69.40|ICD10CM|Malignant neoplasm of unspecified ciliary body|Malignant neoplasm of unspecified ciliary body +C2845911|T191|PT|C69.40|ICD10CM|Malignant neoplasm of unspecified ciliary body|Malignant neoplasm of unspecified ciliary body +C2845912|T191|AB|C69.41|ICD10CM|Malignant neoplasm of right ciliary body|Malignant neoplasm of right ciliary body +C2845912|T191|PT|C69.41|ICD10CM|Malignant neoplasm of right ciliary body|Malignant neoplasm of right ciliary body +C2845913|T191|AB|C69.42|ICD10CM|Malignant neoplasm of left ciliary body|Malignant neoplasm of left ciliary body +C2845913|T191|PT|C69.42|ICD10CM|Malignant neoplasm of left ciliary body|Malignant neoplasm of left ciliary body +C0496834|T191|PS|C69.5|ICD10|Lacrimal gland and duct|Lacrimal gland and duct +C0496834|T191|PX|C69.5|ICD10|Malignant neoplasm of lacrimal gland and duct|Malignant neoplasm of lacrimal gland and duct +C0496834|T191|HT|C69.5|ICD10CM|Malignant neoplasm of lacrimal gland and duct|Malignant neoplasm of lacrimal gland and duct +C0496834|T191|AB|C69.5|ICD10CM|Malignant neoplasm of lacrimal gland and duct|Malignant neoplasm of lacrimal gland and duct +C0346932|T191|ET|C69.5|ICD10CM|Malignant neoplasm of lacrimal sac|Malignant neoplasm of lacrimal sac +C0346931|T191|ET|C69.5|ICD10CM|Malignant neoplasm of nasolacrimal duct|Malignant neoplasm of nasolacrimal duct +C2845914|T191|AB|C69.50|ICD10CM|Malignant neoplasm of unspecified lacrimal gland and duct|Malignant neoplasm of unspecified lacrimal gland and duct +C2845914|T191|PT|C69.50|ICD10CM|Malignant neoplasm of unspecified lacrimal gland and duct|Malignant neoplasm of unspecified lacrimal gland and duct +C2845915|T191|AB|C69.51|ICD10CM|Malignant neoplasm of right lacrimal gland and duct|Malignant neoplasm of right lacrimal gland and duct +C2845915|T191|PT|C69.51|ICD10CM|Malignant neoplasm of right lacrimal gland and duct|Malignant neoplasm of right lacrimal gland and duct +C2845916|T191|AB|C69.52|ICD10CM|Malignant neoplasm of left lacrimal gland and duct|Malignant neoplasm of left lacrimal gland and duct +C2845916|T191|PT|C69.52|ICD10CM|Malignant neoplasm of left lacrimal gland and duct|Malignant neoplasm of left lacrimal gland and duct +C0346934|T191|ET|C69.6|ICD10CM|Malignant neoplasm of connective tissue of orbit|Malignant neoplasm of connective tissue of orbit +C0864969|T191|ET|C69.6|ICD10CM|Malignant neoplasm of extraocular muscle|Malignant neoplasm of extraocular muscle +C0153626|T191|PX|C69.6|ICD10|Malignant neoplasm of orbit|Malignant neoplasm of orbit +C0153626|T191|HT|C69.6|ICD10CM|Malignant neoplasm of orbit|Malignant neoplasm of orbit +C0153626|T191|AB|C69.6|ICD10CM|Malignant neoplasm of orbit|Malignant neoplasm of orbit +C2064622|T191|ET|C69.6|ICD10CM|Malignant neoplasm of peripheral nerves of orbit|Malignant neoplasm of peripheral nerves of orbit +C2845917|T191|ET|C69.6|ICD10CM|Malignant neoplasm of retro-ocular tissue|Malignant neoplasm of retro-ocular tissue +C2845918|T191|ET|C69.6|ICD10CM|Malignant neoplasm of retrobulbar tissue|Malignant neoplasm of retrobulbar tissue +C0153626|T191|PS|C69.6|ICD10|Orbit|Orbit +C2845919|T191|AB|C69.60|ICD10CM|Malignant neoplasm of unspecified orbit|Malignant neoplasm of unspecified orbit +C2845919|T191|PT|C69.60|ICD10CM|Malignant neoplasm of unspecified orbit|Malignant neoplasm of unspecified orbit +C2845920|T191|AB|C69.61|ICD10CM|Malignant neoplasm of right orbit|Malignant neoplasm of right orbit +C2845920|T191|PT|C69.61|ICD10CM|Malignant neoplasm of right orbit|Malignant neoplasm of right orbit +C2845921|T191|AB|C69.62|ICD10CM|Malignant neoplasm of left orbit|Malignant neoplasm of left orbit +C2845921|T191|PT|C69.62|ICD10CM|Malignant neoplasm of left orbit|Malignant neoplasm of left orbit +C1533639|T191|AB|C69.8|ICD10CM|Malignant neoplasm of overlapping sites of eye and adnexa|Malignant neoplasm of overlapping sites of eye and adnexa +C1533639|T191|HT|C69.8|ICD10CM|Malignant neoplasm of overlapping sites of eye and adnexa|Malignant neoplasm of overlapping sites of eye and adnexa +C1533639|T191|PX|C69.8|ICD10|Malignant neoplasm overlapping eye and adnexa sites|Malignant neoplasm overlapping eye and adnexa sites +C1533639|T191|PS|C69.8|ICD10|Overlapping lesion of eye and adnexa|Overlapping lesion of eye and adnexa +C2845922|T191|PT|C69.80|ICD10CM|Malignant neoplasm of overlapping sites of unspecified eye and adnexa|Malignant neoplasm of overlapping sites of unspecified eye and adnexa +C2845922|T191|AB|C69.80|ICD10CM|Malignant neoplasm of ovrlp sites of unsp eye and adnexa|Malignant neoplasm of ovrlp sites of unsp eye and adnexa +C2845923|T191|PT|C69.81|ICD10CM|Malignant neoplasm of overlapping sites of right eye and adnexa|Malignant neoplasm of overlapping sites of right eye and adnexa +C2845923|T191|AB|C69.81|ICD10CM|Malignant neoplasm of ovrlp sites of right eye and adnexa|Malignant neoplasm of ovrlp sites of right eye and adnexa +C2845924|T191|PT|C69.82|ICD10CM|Malignant neoplasm of overlapping sites of left eye and adnexa|Malignant neoplasm of overlapping sites of left eye and adnexa +C2845924|T191|AB|C69.82|ICD10CM|Malignant neoplasm of ovrlp sites of left eye and adnexa|Malignant neoplasm of ovrlp sites of left eye and adnexa +C0496836|T191|PS|C69.9|ICD10|Eye, unspecified|Eye, unspecified +C0496836|T191|PX|C69.9|ICD10|Malignant neoplasm of eye, unspecified|Malignant neoplasm of eye, unspecified +C0346930|T191|ET|C69.9|ICD10CM|Malignant neoplasm of eyeball|Malignant neoplasm of eyeball +C0496836|T191|AB|C69.9|ICD10CM|Malignant neoplasm of unspecified site of eye|Malignant neoplasm of unspecified site of eye +C0496836|T191|HT|C69.9|ICD10CM|Malignant neoplasm of unspecified site of eye|Malignant neoplasm of unspecified site of eye +C2845925|T191|AB|C69.90|ICD10CM|Malignant neoplasm of unspecified site of unspecified eye|Malignant neoplasm of unspecified site of unspecified eye +C2845925|T191|PT|C69.90|ICD10CM|Malignant neoplasm of unspecified site of unspecified eye|Malignant neoplasm of unspecified site of unspecified eye +C2845926|T191|AB|C69.91|ICD10CM|Malignant neoplasm of unspecified site of right eye|Malignant neoplasm of unspecified site of right eye +C2845926|T191|PT|C69.91|ICD10CM|Malignant neoplasm of unspecified site of right eye|Malignant neoplasm of unspecified site of right eye +C2845927|T191|AB|C69.92|ICD10CM|Malignant neoplasm of unspecified site of left eye|Malignant neoplasm of unspecified site of left eye +C2845927|T191|PT|C69.92|ICD10CM|Malignant neoplasm of unspecified site of left eye|Malignant neoplasm of unspecified site of left eye +C0348375|T191|HT|C70|ICD10|Malignant neoplasm of meninges|Malignant neoplasm of meninges +C0348375|T191|HT|C70|ICD10CM|Malignant neoplasm of meninges|Malignant neoplasm of meninges +C0348375|T191|AB|C70|ICD10CM|Malignant neoplasm of meninges|Malignant neoplasm of meninges +C0153645|T191|PS|C70.0|ICD10|Cerebral meninges|Cerebral meninges +C0153645|T191|PX|C70.0|ICD10|Malignant neoplasm of cerebral meninges|Malignant neoplasm of cerebral meninges +C0153645|T191|PT|C70.0|ICD10CM|Malignant neoplasm of cerebral meninges|Malignant neoplasm of cerebral meninges +C0153645|T191|AB|C70.0|ICD10CM|Malignant neoplasm of cerebral meninges|Malignant neoplasm of cerebral meninges +C0153647|T191|PT|C70.1|ICD10CM|Malignant neoplasm of spinal meninges|Malignant neoplasm of spinal meninges +C0153647|T191|AB|C70.1|ICD10CM|Malignant neoplasm of spinal meninges|Malignant neoplasm of spinal meninges +C0153647|T191|PX|C70.1|ICD10|Malignant neoplasm of spinal meninges|Malignant neoplasm of spinal meninges +C0153647|T191|PS|C70.1|ICD10|Spinal meninges|Spinal meninges +C0348375|T191|PX|C70.9|ICD10|Malignant neoplasm of meninges, unspecified|Malignant neoplasm of meninges, unspecified +C0348375|T191|PT|C70.9|ICD10CM|Malignant neoplasm of meninges, unspecified|Malignant neoplasm of meninges, unspecified +C0348375|T191|AB|C70.9|ICD10CM|Malignant neoplasm of meninges, unspecified|Malignant neoplasm of meninges, unspecified +C0348375|T191|PS|C70.9|ICD10|Meninges, unspecified|Meninges, unspecified +C0153633|T191|HT|C71|ICD10|Malignant neoplasm of brain|Malignant neoplasm of brain +C0153633|T191|HT|C71|ICD10CM|Malignant neoplasm of brain|Malignant neoplasm of brain +C0153633|T191|AB|C71|ICD10CM|Malignant neoplasm of brain|Malignant neoplasm of brain +C0153634|T191|PS|C71.0|ICD10|Cerebrum, except lobes and ventricles|Cerebrum, except lobes and ventricles +C0153634|T191|PX|C71.0|ICD10|Malignant neoplasm of cerebrum, except lobes and ventricles|Malignant neoplasm of cerebrum, except lobes and ventricles +C0153634|T191|PT|C71.0|ICD10CM|Malignant neoplasm of cerebrum, except lobes and ventricles|Malignant neoplasm of cerebrum, except lobes and ventricles +C0153634|T191|AB|C71.0|ICD10CM|Malignant neoplasm of cerebrum, except lobes and ventricles|Malignant neoplasm of cerebrum, except lobes and ventricles +C0751589|T191|ET|C71.0|ICD10CM|Malignant neoplasm of supratentorial NOS|Malignant neoplasm of supratentorial NOS +C0153635|T191|PS|C71.1|ICD10|Frontal lobe|Frontal lobe +C0153635|T191|PX|C71.1|ICD10|Malignant neoplasm of frontal lobe|Malignant neoplasm of frontal lobe +C0153635|T191|PT|C71.1|ICD10CM|Malignant neoplasm of frontal lobe|Malignant neoplasm of frontal lobe +C0153635|T191|AB|C71.1|ICD10CM|Malignant neoplasm of frontal lobe|Malignant neoplasm of frontal lobe +C0153636|T191|PT|C71.2|ICD10CM|Malignant neoplasm of temporal lobe|Malignant neoplasm of temporal lobe +C0153636|T191|AB|C71.2|ICD10CM|Malignant neoplasm of temporal lobe|Malignant neoplasm of temporal lobe +C0153636|T191|PX|C71.2|ICD10|Malignant neoplasm of temporal lobe|Malignant neoplasm of temporal lobe +C0153636|T191|PS|C71.2|ICD10|Temporal lobe|Temporal lobe +C0153637|T191|PX|C71.3|ICD10|Malignant neoplasm of parietal lobe|Malignant neoplasm of parietal lobe +C0153637|T191|PT|C71.3|ICD10CM|Malignant neoplasm of parietal lobe|Malignant neoplasm of parietal lobe +C0153637|T191|AB|C71.3|ICD10CM|Malignant neoplasm of parietal lobe|Malignant neoplasm of parietal lobe +C0153637|T191|PS|C71.3|ICD10|Parietal lobe|Parietal lobe +C0153638|T191|PX|C71.4|ICD10|Malignant neoplasm of occipital lobe|Malignant neoplasm of occipital lobe +C0153638|T191|PT|C71.4|ICD10CM|Malignant neoplasm of occipital lobe|Malignant neoplasm of occipital lobe +C0153638|T191|AB|C71.4|ICD10CM|Malignant neoplasm of occipital lobe|Malignant neoplasm of occipital lobe +C0153638|T191|PS|C71.4|ICD10|Occipital lobe|Occipital lobe +C0346906|T191|PS|C71.5|ICD10|Cerebral ventricle|Cerebral ventricle +C0346906|T191|PX|C71.5|ICD10|Malignant neoplasm of cerebral ventricle|Malignant neoplasm of cerebral ventricle +C0346906|T191|PT|C71.5|ICD10CM|Malignant neoplasm of cerebral ventricle|Malignant neoplasm of cerebral ventricle +C0346906|T191|AB|C71.5|ICD10CM|Malignant neoplasm of cerebral ventricle|Malignant neoplasm of cerebral ventricle +C0153640|T191|PS|C71.6|ICD10|Cerebellum|Cerebellum +C0153640|T191|PX|C71.6|ICD10|Malignant neoplasm of cerebellum|Malignant neoplasm of cerebellum +C0153640|T191|PT|C71.6|ICD10CM|Malignant neoplasm of cerebellum|Malignant neoplasm of cerebellum +C0153640|T191|AB|C71.6|ICD10CM|Malignant neoplasm of cerebellum|Malignant neoplasm of cerebellum +C0153641|T191|PS|C71.7|ICD10|Brain stem|Brain stem +C0751593|T191|ET|C71.7|ICD10CM|Infratentorial malignant neoplasm NOS|Infratentorial malignant neoplasm NOS +C0153641|T191|PT|C71.7|ICD10CM|Malignant neoplasm of brain stem|Malignant neoplasm of brain stem +C0153641|T191|AB|C71.7|ICD10CM|Malignant neoplasm of brain stem|Malignant neoplasm of brain stem +C0153641|T191|PX|C71.7|ICD10|Malignant neoplasm of brain stem|Malignant neoplasm of brain stem +C2845928|T191|ET|C71.7|ICD10CM|Malignant neoplasm of fourth cerebral ventricle|Malignant neoplasm of fourth cerebral ventricle +C0496837|T191|AB|C71.8|ICD10CM|Malignant neoplasm of overlapping sites of brain|Malignant neoplasm of overlapping sites of brain +C0496837|T191|PT|C71.8|ICD10CM|Malignant neoplasm of overlapping sites of brain|Malignant neoplasm of overlapping sites of brain +C0496837|T191|PX|C71.8|ICD10|Malignant neoplasm overlapping brain site|Malignant neoplasm overlapping brain site +C0496837|T191|PS|C71.8|ICD10|Overlapping lesion of brain|Overlapping lesion of brain +C0153633|T191|PS|C71.9|ICD10|Brain, unspecified|Brain, unspecified +C0153633|T191|PX|C71.9|ICD10|Malignant neoplasm of brain, unspecified|Malignant neoplasm of brain, unspecified +C0153633|T191|PT|C71.9|ICD10CM|Malignant neoplasm of brain, unspecified|Malignant neoplasm of brain, unspecified +C0153633|T191|AB|C71.9|ICD10CM|Malignant neoplasm of brain, unspecified|Malignant neoplasm of brain, unspecified +C0494161|T191|AB|C72|ICD10CM|Malig neoplm of spinal cord, cranial nerves and oth prt cnsl|Malig neoplm of spinal cord, cranial nerves and oth prt cnsl +C0494161|T191|HT|C72|ICD10CM|Malignant neoplasm of spinal cord, cranial nerves and other parts of central nervous system|Malignant neoplasm of spinal cord, cranial nerves and other parts of central nervous system +C0494161|T191|HT|C72|ICD10|Malignant neoplasm of spinal cord, cranial nerves and other parts of central nervous system|Malignant neoplasm of spinal cord, cranial nerves and other parts of central nervous system +C0153646|T191|PT|C72.0|ICD10CM|Malignant neoplasm of spinal cord|Malignant neoplasm of spinal cord +C0153646|T191|AB|C72.0|ICD10CM|Malignant neoplasm of spinal cord|Malignant neoplasm of spinal cord +C0153646|T191|PX|C72.0|ICD10|Malignant neoplasm of spinal cord|Malignant neoplasm of spinal cord +C0153646|T191|PS|C72.0|ICD10|Spinal cord|Spinal cord +C0349017|T191|PS|C72.1|ICD10|Cauda equina|Cauda equina +C0349017|T191|PX|C72.1|ICD10|Malignant neoplasm of cauda equina|Malignant neoplasm of cauda equina +C0349017|T191|PT|C72.1|ICD10CM|Malignant neoplasm of cauda equina|Malignant neoplasm of cauda equina +C0349017|T191|AB|C72.1|ICD10CM|Malignant neoplasm of cauda equina|Malignant neoplasm of cauda equina +C0346924|T191|ET|C72.2|ICD10CM|Malignant neoplasm of olfactory bulb|Malignant neoplasm of olfactory bulb +C0496838|T191|HT|C72.2|ICD10CM|Malignant neoplasm of olfactory nerve|Malignant neoplasm of olfactory nerve +C0496838|T191|AB|C72.2|ICD10CM|Malignant neoplasm of olfactory nerve|Malignant neoplasm of olfactory nerve +C0496838|T191|PX|C72.2|ICD10|Malignant neoplasm of olfactory nerve|Malignant neoplasm of olfactory nerve +C0496838|T191|PS|C72.2|ICD10|Olfactory nerve|Olfactory nerve +C2845929|T191|AB|C72.20|ICD10CM|Malignant neoplasm of unspecified olfactory nerve|Malignant neoplasm of unspecified olfactory nerve +C2845929|T191|PT|C72.20|ICD10CM|Malignant neoplasm of unspecified olfactory nerve|Malignant neoplasm of unspecified olfactory nerve +C2845930|T191|AB|C72.21|ICD10CM|Malignant neoplasm of right olfactory nerve|Malignant neoplasm of right olfactory nerve +C2845930|T191|PT|C72.21|ICD10CM|Malignant neoplasm of right olfactory nerve|Malignant neoplasm of right olfactory nerve +C2845931|T191|AB|C72.22|ICD10CM|Malignant neoplasm of left olfactory nerve|Malignant neoplasm of left olfactory nerve +C2845931|T191|PT|C72.22|ICD10CM|Malignant neoplasm of left olfactory nerve|Malignant neoplasm of left olfactory nerve +C0346323|T191|PX|C72.3|ICD10|Malignant neoplasm of optic nerve|Malignant neoplasm of optic nerve +C0346323|T191|HT|C72.3|ICD10CM|Malignant neoplasm of optic nerve|Malignant neoplasm of optic nerve +C0346323|T191|AB|C72.3|ICD10CM|Malignant neoplasm of optic nerve|Malignant neoplasm of optic nerve +C0346323|T191|PS|C72.3|ICD10|Optic nerve|Optic nerve +C2845932|T191|AB|C72.30|ICD10CM|Malignant neoplasm of unspecified optic nerve|Malignant neoplasm of unspecified optic nerve +C2845932|T191|PT|C72.30|ICD10CM|Malignant neoplasm of unspecified optic nerve|Malignant neoplasm of unspecified optic nerve +C2845933|T191|AB|C72.31|ICD10CM|Malignant neoplasm of right optic nerve|Malignant neoplasm of right optic nerve +C2845933|T191|PT|C72.31|ICD10CM|Malignant neoplasm of right optic nerve|Malignant neoplasm of right optic nerve +C2845934|T191|AB|C72.32|ICD10CM|Malignant neoplasm of left optic nerve|Malignant neoplasm of left optic nerve +C2845934|T191|PT|C72.32|ICD10CM|Malignant neoplasm of left optic nerve|Malignant neoplasm of left optic nerve +C0346331|T191|PS|C72.4|ICD10|Acoustic nerve|Acoustic nerve +C0346331|T191|PX|C72.4|ICD10|Malignant neoplasm of acoustic nerve|Malignant neoplasm of acoustic nerve +C0346331|T191|HT|C72.4|ICD10CM|Malignant neoplasm of acoustic nerve|Malignant neoplasm of acoustic nerve +C0346331|T191|AB|C72.4|ICD10CM|Malignant neoplasm of acoustic nerve|Malignant neoplasm of acoustic nerve +C2845935|T191|AB|C72.40|ICD10CM|Malignant neoplasm of unspecified acoustic nerve|Malignant neoplasm of unspecified acoustic nerve +C2845935|T191|PT|C72.40|ICD10CM|Malignant neoplasm of unspecified acoustic nerve|Malignant neoplasm of unspecified acoustic nerve +C2845936|T191|AB|C72.41|ICD10CM|Malignant neoplasm of right acoustic nerve|Malignant neoplasm of right acoustic nerve +C2845936|T191|PT|C72.41|ICD10CM|Malignant neoplasm of right acoustic nerve|Malignant neoplasm of right acoustic nerve +C2845937|T191|AB|C72.42|ICD10CM|Malignant neoplasm of left acoustic nerve|Malignant neoplasm of left acoustic nerve +C2845937|T191|PT|C72.42|ICD10CM|Malignant neoplasm of left acoustic nerve|Malignant neoplasm of left acoustic nerve +C0348373|T191|HT|C72.5|ICD10CM|Malignant neoplasm of other and unspecified cranial nerves|Malignant neoplasm of other and unspecified cranial nerves +C0348373|T191|AB|C72.5|ICD10CM|Malignant neoplasm of other and unspecified cranial nerves|Malignant neoplasm of other and unspecified cranial nerves +C0348373|T191|PX|C72.5|ICD10|Malignant neoplasm of other and unspecified cranial nerves|Malignant neoplasm of other and unspecified cranial nerves +C0348373|T191|PS|C72.5|ICD10|Other and unspecified cranial nerves|Other and unspecified cranial nerves +C0153644|T191|ET|C72.50|ICD10CM|Malignant neoplasm of cranial nerve NOS|Malignant neoplasm of cranial nerve NOS +C2845938|T191|AB|C72.50|ICD10CM|Malignant neoplasm of unspecified cranial nerve|Malignant neoplasm of unspecified cranial nerve +C2845938|T191|PT|C72.50|ICD10CM|Malignant neoplasm of unspecified cranial nerve|Malignant neoplasm of unspecified cranial nerve +C2845939|T191|AB|C72.59|ICD10CM|Malignant neoplasm of other cranial nerves|Malignant neoplasm of other cranial nerves +C2845939|T191|PT|C72.59|ICD10CM|Malignant neoplasm of other cranial nerves|Malignant neoplasm of other cranial nerves +C0496839|T191|PX|C72.8|ICD10|Malignant neoplasm overlapping central nervous system site|Malignant neoplasm overlapping central nervous system site +C0496839|T191|PS|C72.8|ICD10|Overlapping lesion of brain and other parts of central nervous system|Overlapping lesion of brain and other parts of central nervous system +C0348374|T191|PS|C72.9|ICD10|Central nervous system, unspecified|Central nervous system, unspecified +C0348374|T191|PX|C72.9|ICD10|Malignant neoplasm of central nervous system, unspecified|Malignant neoplasm of central nervous system, unspecified +C0348374|T191|PT|C72.9|ICD10CM|Malignant neoplasm of central nervous system, unspecified|Malignant neoplasm of central nervous system, unspecified +C0348374|T191|AB|C72.9|ICD10CM|Malignant neoplasm of central nervous system, unspecified|Malignant neoplasm of central nervous system, unspecified +C0497549|T191|ET|C72.9|ICD10CM|Malignant neoplasm of nervous system NOS|Malignant neoplasm of nervous system NOS +C2977944|T191|ET|C72.9|ICD10CM|Malignant neoplasm of unspecified site of central nervous system|Malignant neoplasm of unspecified site of central nervous system +C0007115|T191|PT|C73|ICD10|Malignant neoplasm of thyroid gland|Malignant neoplasm of thyroid gland +C0007115|T191|PT|C73|ICD10CM|Malignant neoplasm of thyroid gland|Malignant neoplasm of thyroid gland +C0007115|T191|AB|C73|ICD10CM|Malignant neoplasm of thyroid gland|Malignant neoplasm of thyroid gland +C0348377|T191|HT|C73-C75|ICD10CM|Malignant neoplasms of thyroid and other endocrine glands (C73-C75)|Malignant neoplasms of thyroid and other endocrine glands (C73-C75) +C0348377|T191|HT|C73-C75.9|ICD10|Malignant neoplasms of thyroid and other endocrine glands|Malignant neoplasms of thyroid and other endocrine glands +C0750887|T191|HT|C74|ICD10|Malignant neoplasm of adrenal gland|Malignant neoplasm of adrenal gland +C0750887|T191|HT|C74|ICD10CM|Malignant neoplasm of adrenal gland|Malignant neoplasm of adrenal gland +C0750887|T191|AB|C74|ICD10CM|Malignant neoplasm of adrenal gland|Malignant neoplasm of adrenal gland +C0346402|T191|PS|C74.0|ICD10|Cortex of adrenal gland|Cortex of adrenal gland +C0346402|T191|PX|C74.0|ICD10|Malignant neoplasm of cortex of adrenal gland|Malignant neoplasm of cortex of adrenal gland +C0346402|T191|HT|C74.0|ICD10CM|Malignant neoplasm of cortex of adrenal gland|Malignant neoplasm of cortex of adrenal gland +C0346402|T191|AB|C74.0|ICD10CM|Malignant neoplasm of cortex of adrenal gland|Malignant neoplasm of cortex of adrenal gland +C2845940|T191|AB|C74.00|ICD10CM|Malignant neoplasm of cortex of unspecified adrenal gland|Malignant neoplasm of cortex of unspecified adrenal gland +C2845940|T191|PT|C74.00|ICD10CM|Malignant neoplasm of cortex of unspecified adrenal gland|Malignant neoplasm of cortex of unspecified adrenal gland +C2845941|T191|AB|C74.01|ICD10CM|Malignant neoplasm of cortex of right adrenal gland|Malignant neoplasm of cortex of right adrenal gland +C2845941|T191|PT|C74.01|ICD10CM|Malignant neoplasm of cortex of right adrenal gland|Malignant neoplasm of cortex of right adrenal gland +C2845942|T191|AB|C74.02|ICD10CM|Malignant neoplasm of cortex of left adrenal gland|Malignant neoplasm of cortex of left adrenal gland +C2845942|T191|PT|C74.02|ICD10CM|Malignant neoplasm of cortex of left adrenal gland|Malignant neoplasm of cortex of left adrenal gland +C0344456|T191|HT|C74.1|ICD10CM|Malignant neoplasm of medulla of adrenal gland|Malignant neoplasm of medulla of adrenal gland +C0344456|T191|AB|C74.1|ICD10CM|Malignant neoplasm of medulla of adrenal gland|Malignant neoplasm of medulla of adrenal gland +C0344456|T191|PX|C74.1|ICD10|Malignant neoplasm of medulla of adrenal gland|Malignant neoplasm of medulla of adrenal gland +C0344456|T191|PS|C74.1|ICD10|Medulla of adrenal gland|Medulla of adrenal gland +C2845943|T191|AB|C74.10|ICD10CM|Malignant neoplasm of medulla of unspecified adrenal gland|Malignant neoplasm of medulla of unspecified adrenal gland +C2845943|T191|PT|C74.10|ICD10CM|Malignant neoplasm of medulla of unspecified adrenal gland|Malignant neoplasm of medulla of unspecified adrenal gland +C2845944|T191|AB|C74.11|ICD10CM|Malignant neoplasm of medulla of right adrenal gland|Malignant neoplasm of medulla of right adrenal gland +C2845944|T191|PT|C74.11|ICD10CM|Malignant neoplasm of medulla of right adrenal gland|Malignant neoplasm of medulla of right adrenal gland +C2845945|T191|AB|C74.12|ICD10CM|Malignant neoplasm of medulla of left adrenal gland|Malignant neoplasm of medulla of left adrenal gland +C2845945|T191|PT|C74.12|ICD10CM|Malignant neoplasm of medulla of left adrenal gland|Malignant neoplasm of medulla of left adrenal gland +C0750887|T191|PS|C74.9|ICD10|Adrenal gland, unspecified|Adrenal gland, unspecified +C0750887|T191|PX|C74.9|ICD10|Malignant neoplasm of adrenal gland, unspecified|Malignant neoplasm of adrenal gland, unspecified +C0750887|T191|AB|C74.9|ICD10CM|Malignant neoplasm of unspecified part of adrenal gland|Malignant neoplasm of unspecified part of adrenal gland +C0750887|T191|HT|C74.9|ICD10CM|Malignant neoplasm of unspecified part of adrenal gland|Malignant neoplasm of unspecified part of adrenal gland +C2845946|T191|AB|C74.90|ICD10CM|Malignant neoplasm of unsp part of unspecified adrenal gland|Malignant neoplasm of unsp part of unspecified adrenal gland +C2845946|T191|PT|C74.90|ICD10CM|Malignant neoplasm of unspecified part of unspecified adrenal gland|Malignant neoplasm of unspecified part of unspecified adrenal gland +C2845947|T191|AB|C74.91|ICD10CM|Malignant neoplasm of unsp part of right adrenal gland|Malignant neoplasm of unsp part of right adrenal gland +C2845947|T191|PT|C74.91|ICD10CM|Malignant neoplasm of unspecified part of right adrenal gland|Malignant neoplasm of unspecified part of right adrenal gland +C2845948|T191|AB|C74.92|ICD10CM|Malignant neoplasm of unspecified part of left adrenal gland|Malignant neoplasm of unspecified part of left adrenal gland +C2845948|T191|PT|C74.92|ICD10CM|Malignant neoplasm of unspecified part of left adrenal gland|Malignant neoplasm of unspecified part of left adrenal gland +C0153651|T191|AB|C75|ICD10CM|Malignant neoplasm of endo glands and related structures|Malignant neoplasm of endo glands and related structures +C0153651|T191|HT|C75|ICD10CM|Malignant neoplasm of other endocrine glands and related structures|Malignant neoplasm of other endocrine glands and related structures +C0153651|T191|HT|C75|ICD10|Malignant neoplasm of other endocrine glands and related structures|Malignant neoplasm of other endocrine glands and related structures +C0153653|T191|PX|C75.0|ICD10|Malignant neoplasm of parathyroid gland|Malignant neoplasm of parathyroid gland +C0153653|T191|PT|C75.0|ICD10CM|Malignant neoplasm of parathyroid gland|Malignant neoplasm of parathyroid gland +C0153653|T191|AB|C75.0|ICD10CM|Malignant neoplasm of parathyroid gland|Malignant neoplasm of parathyroid gland +C0153653|T191|PS|C75.0|ICD10|Parathyroid gland|Parathyroid gland +C0496842|T191|PT|C75.1|ICD10CM|Malignant neoplasm of pituitary gland|Malignant neoplasm of pituitary gland +C0496842|T191|AB|C75.1|ICD10CM|Malignant neoplasm of pituitary gland|Malignant neoplasm of pituitary gland +C0496842|T191|PX|C75.1|ICD10|Malignant neoplasm of pituitary gland|Malignant neoplasm of pituitary gland +C0496842|T191|PS|C75.1|ICD10|Pituitary gland|Pituitary gland +C0496843|T191|PS|C75.2|ICD10|Craniopharyngeal duct|Craniopharyngeal duct +C0496843|T191|PX|C75.2|ICD10|Malignant neoplasm of craniopharyngeal duct|Malignant neoplasm of craniopharyngeal duct +C0496843|T191|PT|C75.2|ICD10CM|Malignant neoplasm of craniopharyngeal duct|Malignant neoplasm of craniopharyngeal duct +C0496843|T191|AB|C75.2|ICD10CM|Malignant neoplasm of craniopharyngeal duct|Malignant neoplasm of craniopharyngeal duct +C0153655|T191|PX|C75.3|ICD10|Malignant neoplasm of pineal gland|Malignant neoplasm of pineal gland +C0153655|T191|PT|C75.3|ICD10CM|Malignant neoplasm of pineal gland|Malignant neoplasm of pineal gland +C0153655|T191|AB|C75.3|ICD10CM|Malignant neoplasm of pineal gland|Malignant neoplasm of pineal gland +C0153655|T191|PS|C75.3|ICD10|Pineal gland|Pineal gland +C0153656|T191|PS|C75.4|ICD10|Carotid body|Carotid body +C0153656|T191|PX|C75.4|ICD10|Malignant neoplasm of carotid body|Malignant neoplasm of carotid body +C0153656|T191|PT|C75.4|ICD10CM|Malignant neoplasm of carotid body|Malignant neoplasm of carotid body +C0153656|T191|AB|C75.4|ICD10CM|Malignant neoplasm of carotid body|Malignant neoplasm of carotid body +C0438413|T191|PS|C75.5|ICD10|Aortic body and other paraganglia|Aortic body and other paraganglia +C0438413|T191|PX|C75.5|ICD10|Malignant neoplasm of aortic body and other paraganglia|Malignant neoplasm of aortic body and other paraganglia +C0438413|T191|PT|C75.5|ICD10CM|Malignant neoplasm of aortic body and other paraganglia|Malignant neoplasm of aortic body and other paraganglia +C0438413|T191|AB|C75.5|ICD10CM|Malignant neoplasm of aortic body and other paraganglia|Malignant neoplasm of aortic body and other paraganglia +C0348378|T191|PX|C75.8|ICD10|Malignant neoplasm of pluriglandular involvement, unspecified|Malignant neoplasm of pluriglandular involvement, unspecified +C0348378|T191|AB|C75.8|ICD10CM|Malignant neoplasm with pluriglandular involvement, unsp|Malignant neoplasm with pluriglandular involvement, unsp +C0348378|T191|PT|C75.8|ICD10CM|Malignant neoplasm with pluriglandular involvement, unspecified|Malignant neoplasm with pluriglandular involvement, unspecified +C0348378|T191|PS|C75.8|ICD10|Pluriglandular involvement, unspecified|Pluriglandular involvement, unspecified +C0153658|T191|PS|C75.9|ICD10|Endocrine gland, unspecified|Endocrine gland, unspecified +C0153658|T191|PX|C75.9|ICD10|Malignant neoplasm of endocrine gland, unspecified|Malignant neoplasm of endocrine gland, unspecified +C0153658|T191|PT|C75.9|ICD10CM|Malignant neoplasm of endocrine gland, unspecified|Malignant neoplasm of endocrine gland, unspecified +C0153658|T191|AB|C75.9|ICD10CM|Malignant neoplasm of endocrine gland, unspecified|Malignant neoplasm of endocrine gland, unspecified +C0153659|T191|HT|C76|ICD10CM|Malignant neoplasm of other and ill-defined sites|Malignant neoplasm of other and ill-defined sites +C0153659|T191|AB|C76|ICD10CM|Malignant neoplasm of other and ill-defined sites|Malignant neoplasm of other and ill-defined sites +C0153659|T191|HT|C76|ICD10|Malignant neoplasm of other and ill-defined sites|Malignant neoplasm of other and ill-defined sites +C2845949|T191|HT|C76-C80|ICD10CM|Malignant neoplasms of ill-defined, other secondary and unspecified sites (C76-C80)|Malignant neoplasms of ill-defined, other secondary and unspecified sites (C76-C80) +C0348380|T191|HT|C76-C80.9|ICD10|Malignant neoplasms of ill-defined, secondary and unspecified sites|Malignant neoplasms of ill-defined, secondary and unspecified sites +C0153660|T191|PS|C76.0|ICD10|Head, face and neck|Head, face and neck +C0346945|T191|ET|C76.0|ICD10CM|Malignant neoplasm of cheek NOS|Malignant neoplasm of cheek NOS +C0153660|T191|PX|C76.0|ICD10|Malignant neoplasm of head, face and neck|Malignant neoplasm of head, face and neck +C0153660|T191|PT|C76.0|ICD10CM|Malignant neoplasm of head, face and neck|Malignant neoplasm of head, face and neck +C0153660|T191|AB|C76.0|ICD10CM|Malignant neoplasm of head, face and neck|Malignant neoplasm of head, face and neck +C0751394|T191|ET|C76.0|ICD10CM|Malignant neoplasm of nose NOS|Malignant neoplasm of nose NOS +C1998032|T191|ET|C76.1|ICD10CM|Intrathoracic malignant neoplasm NOS|Intrathoracic malignant neoplasm NOS +C0346947|T191|ET|C76.1|ICD10CM|Malignant neoplasm of axilla NOS|Malignant neoplasm of axilla NOS +C0153661|T191|PT|C76.1|ICD10CM|Malignant neoplasm of thorax|Malignant neoplasm of thorax +C0153661|T191|AB|C76.1|ICD10CM|Malignant neoplasm of thorax|Malignant neoplasm of thorax +C0153661|T191|PX|C76.1|ICD10|Malignant neoplasm of thorax|Malignant neoplasm of thorax +C0153661|T191|ET|C76.1|ICD10CM|Thoracic malignant neoplasm NOS|Thoracic malignant neoplasm NOS +C0153661|T191|PS|C76.1|ICD10|Thorax|Thorax +C0153662|T191|PS|C76.2|ICD10|Abdomen|Abdomen +C0153662|T191|PX|C76.2|ICD10|Malignant neoplasm of abdomen|Malignant neoplasm of abdomen +C0153662|T191|PT|C76.2|ICD10CM|Malignant neoplasm of abdomen|Malignant neoplasm of abdomen +C0153662|T191|AB|C76.2|ICD10CM|Malignant neoplasm of abdomen|Malignant neoplasm of abdomen +C0864919|T191|ET|C76.3|ICD10CM|Malignant neoplasm of groin NOS|Malignant neoplasm of groin NOS +C0153663|T191|PT|C76.3|ICD10CM|Malignant neoplasm of pelvis|Malignant neoplasm of pelvis +C0153663|T191|AB|C76.3|ICD10CM|Malignant neoplasm of pelvis|Malignant neoplasm of pelvis +C0153663|T191|PX|C76.3|ICD10|Malignant neoplasm of pelvis|Malignant neoplasm of pelvis +C2845950|T191|ET|C76.3|ICD10CM|Malignant neoplasm of sites overlapping systems within the pelvis|Malignant neoplasm of sites overlapping systems within the pelvis +C0153663|T191|PS|C76.3|ICD10|Pelvis|Pelvis +C3665512|T191|ET|C76.3|ICD10CM|Rectovaginal (septum) malignant neoplasm|Rectovaginal (septum) malignant neoplasm +C3665513|T191|ET|C76.3|ICD10CM|Rectovesical (septum) malignant neoplasm|Rectovesical (septum) malignant neoplasm +C0153664|T191|PX|C76.4|ICD10|Malignant neoplasm of upper limb|Malignant neoplasm of upper limb +C0153664|T191|HT|C76.4|ICD10CM|Malignant neoplasm of upper limb|Malignant neoplasm of upper limb +C0153664|T191|AB|C76.4|ICD10CM|Malignant neoplasm of upper limb|Malignant neoplasm of upper limb +C0153664|T191|PS|C76.4|ICD10|Upper limb|Upper limb +C2845951|T191|AB|C76.40|ICD10CM|Malignant neoplasm of unspecified upper limb|Malignant neoplasm of unspecified upper limb +C2845951|T191|PT|C76.40|ICD10CM|Malignant neoplasm of unspecified upper limb|Malignant neoplasm of unspecified upper limb +C2845952|T191|AB|C76.41|ICD10CM|Malignant neoplasm of right upper limb|Malignant neoplasm of right upper limb +C2845952|T191|PT|C76.41|ICD10CM|Malignant neoplasm of right upper limb|Malignant neoplasm of right upper limb +C2845953|T191|AB|C76.42|ICD10CM|Malignant neoplasm of left upper limb|Malignant neoplasm of left upper limb +C2845953|T191|PT|C76.42|ICD10CM|Malignant neoplasm of left upper limb|Malignant neoplasm of left upper limb +C0153665|T191|PS|C76.5|ICD10|Lower limb|Lower limb +C0153665|T191|PX|C76.5|ICD10|Malignant neoplasm of lower limb|Malignant neoplasm of lower limb +C0153665|T191|HT|C76.5|ICD10CM|Malignant neoplasm of lower limb|Malignant neoplasm of lower limb +C0153665|T191|AB|C76.5|ICD10CM|Malignant neoplasm of lower limb|Malignant neoplasm of lower limb +C2845954|T191|AB|C76.50|ICD10CM|Malignant neoplasm of unspecified lower limb|Malignant neoplasm of unspecified lower limb +C2845954|T191|PT|C76.50|ICD10CM|Malignant neoplasm of unspecified lower limb|Malignant neoplasm of unspecified lower limb +C2845955|T191|AB|C76.51|ICD10CM|Malignant neoplasm of right lower limb|Malignant neoplasm of right lower limb +C2845955|T191|PT|C76.51|ICD10CM|Malignant neoplasm of right lower limb|Malignant neoplasm of right lower limb +C2845956|T191|AB|C76.52|ICD10CM|Malignant neoplasm of left lower limb|Malignant neoplasm of left lower limb +C2845956|T191|PT|C76.52|ICD10CM|Malignant neoplasm of left lower limb|Malignant neoplasm of left lower limb +C0153659|T191|PX|C76.7|ICD10|Malignant neoplasm of other ill-defined sites|Malignant neoplasm of other ill-defined sites +C0153659|T191|PS|C76.7|ICD10|Other ill-defined sites|Other ill-defined sites +C2977945|T191|AB|C76.8|ICD10CM|Malignant neoplasm of other specified ill-defined sites|Malignant neoplasm of other specified ill-defined sites +C2977945|T191|PT|C76.8|ICD10CM|Malignant neoplasm of other specified ill-defined sites|Malignant neoplasm of other specified ill-defined sites +C1290324|T191|ET|C76.8|ICD10CM|Malignant neoplasm of overlapping ill-defined sites|Malignant neoplasm of overlapping ill-defined sites +C0348381|T191|PX|C76.8|ICD10|Malignant neoplasm overlapping other and ill-defined sites|Malignant neoplasm overlapping other and ill-defined sites +C0348381|T191|PS|C76.8|ICD10|Overlapping lesion of other and ill-defined sites|Overlapping lesion of other and ill-defined sites +C0686619|T191|HT|C77|ICD10|Secondary and unspecified malignant neoplasm of lymph nodes|Secondary and unspecified malignant neoplasm of lymph nodes +C0686619|T191|HT|C77|ICD10CM|Secondary and unspecified malignant neoplasm of lymph nodes|Secondary and unspecified malignant neoplasm of lymph nodes +C0686619|T191|AB|C77|ICD10CM|Secondary and unspecified malignant neoplasm of lymph nodes|Secondary and unspecified malignant neoplasm of lymph nodes +C0153668|T191|PS|C77.0|ICD10|Lymph nodes of head, face and neck|Lymph nodes of head, face and neck +C0153668|T191|AB|C77.0|ICD10CM|Sec and unsp malig neoplasm of nodes of head, face and neck|Sec and unsp malig neoplasm of nodes of head, face and neck +C0153668|T191|PT|C77.0|ICD10CM|Secondary and unspecified malignant neoplasm of lymph nodes of head, face and neck|Secondary and unspecified malignant neoplasm of lymph nodes of head, face and neck +C0153668|T191|PX|C77.0|ICD10|Secondary and unspecified malignant neoplasm of lymph nodes of head, face and neck|Secondary and unspecified malignant neoplasm of lymph nodes of head, face and neck +C0864998|T191|ET|C77.0|ICD10CM|Secondary and unspecified malignant neoplasm of supraclavicular lymph nodes|Secondary and unspecified malignant neoplasm of supraclavicular lymph nodes +C0686645|T191|PS|C77.1|ICD10|Intrathoracic lymph nodes|Intrathoracic lymph nodes +C0686645|T191|AB|C77.1|ICD10CM|Secondary and unsp malignant neoplasm of intrathorac nodes|Secondary and unsp malignant neoplasm of intrathorac nodes +C0686645|T191|PT|C77.1|ICD10CM|Secondary and unspecified malignant neoplasm of intrathoracic lymph nodes|Secondary and unspecified malignant neoplasm of intrathoracic lymph nodes +C0686645|T191|PX|C77.1|ICD10|Secondary and unspecified malignant neoplasm of intrathoracic lymph nodes|Secondary and unspecified malignant neoplasm of intrathoracic lymph nodes +C0686655|T191|PS|C77.2|ICD10|Intra-abdominal lymph nodes|Intra-abdominal lymph nodes +C0686655|T191|AB|C77.2|ICD10CM|Secondary and unsp malignant neoplasm of intra-abd nodes|Secondary and unsp malignant neoplasm of intra-abd nodes +C0686655|T191|PT|C77.2|ICD10CM|Secondary and unspecified malignant neoplasm of intra-abdominal lymph nodes|Secondary and unspecified malignant neoplasm of intra-abdominal lymph nodes +C0686655|T191|PX|C77.2|ICD10|Secondary and unspecified malignant neoplasm of intra-abdominal lymph nodes|Secondary and unspecified malignant neoplasm of intra-abdominal lymph nodes +C0153671|T191|PS|C77.3|ICD10|Axillary and upper limb lymph nodes|Axillary and upper limb lymph nodes +C0153671|T191|AB|C77.3|ICD10CM|Sec and unsp malig neoplasm of axilla and upper limb nodes|Sec and unsp malig neoplasm of axilla and upper limb nodes +C0153671|T191|PT|C77.3|ICD10CM|Secondary and unspecified malignant neoplasm of axilla and upper limb lymph nodes|Secondary and unspecified malignant neoplasm of axilla and upper limb lymph nodes +C0153671|T191|PX|C77.3|ICD10|Secondary and unspecified malignant neoplasm of axillary and upper limb lymph nodes|Secondary and unspecified malignant neoplasm of axillary and upper limb lymph nodes +C0347054|T191|ET|C77.3|ICD10CM|Secondary and unspecified malignant neoplasm of pectoral lymph nodes|Secondary and unspecified malignant neoplasm of pectoral lymph nodes +C0347055|T191|PS|C77.4|ICD10|Inguinal and lower limb lymph nodes|Inguinal and lower limb lymph nodes +C0347055|T191|AB|C77.4|ICD10CM|Sec and unsp malig neoplasm of inguinal and lower limb nodes|Sec and unsp malig neoplasm of inguinal and lower limb nodes +C0347055|T191|PT|C77.4|ICD10CM|Secondary and unspecified malignant neoplasm of inguinal and lower limb lymph nodes|Secondary and unspecified malignant neoplasm of inguinal and lower limb lymph nodes +C0347055|T191|PX|C77.4|ICD10|Secondary and unspecified malignant neoplasm of inguinal and lower limb lymph nodes|Secondary and unspecified malignant neoplasm of inguinal and lower limb lymph nodes +C0686689|T191|PS|C77.5|ICD10|Intrapelvic lymph nodes|Intrapelvic lymph nodes +C0686689|T191|AB|C77.5|ICD10CM|Secondary and unsp malignant neoplasm of intrapelv nodes|Secondary and unsp malignant neoplasm of intrapelv nodes +C0686689|T191|PT|C77.5|ICD10CM|Secondary and unspecified malignant neoplasm of intrapelvic lymph nodes|Secondary and unspecified malignant neoplasm of intrapelvic lymph nodes +C0686689|T191|PX|C77.5|ICD10|Secondary and unspecified malignant neoplasm of intrapelvic lymph nodes|Secondary and unspecified malignant neoplasm of intrapelvic lymph nodes +C0348382|T191|PS|C77.8|ICD10|Lymph nodes of multiple regions|Lymph nodes of multiple regions +C0348382|T191|AB|C77.8|ICD10CM|Sec and unsp malig neoplasm of nodes of multiple regions|Sec and unsp malig neoplasm of nodes of multiple regions +C0348382|T191|PT|C77.8|ICD10CM|Secondary and unspecified malignant neoplasm of lymph nodes of multiple regions|Secondary and unspecified malignant neoplasm of lymph nodes of multiple regions +C0348382|T191|PX|C77.8|ICD10|Secondary and unspecified malignant neoplasm of lymph nodes of multiple regions|Secondary and unspecified malignant neoplasm of lymph nodes of multiple regions +C0686619|T191|PS|C77.9|ICD10|Lymph node, unspecified|Lymph node, unspecified +C0686619|T191|AB|C77.9|ICD10CM|Secondary and unsp malignant neoplasm of lymph node, unsp|Secondary and unsp malignant neoplasm of lymph node, unsp +C0686619|T191|PT|C77.9|ICD10CM|Secondary and unspecified malignant neoplasm of lymph node, unspecified|Secondary and unspecified malignant neoplasm of lymph node, unspecified +C0686619|T191|PX|C77.9|ICD10|Secondary and unspecified malignant neoplasm of lymph node, unspecified|Secondary and unspecified malignant neoplasm of lymph node, unspecified +C0153675|T191|AB|C78|ICD10CM|Secondary malignant neoplasm of resp and digestive organs|Secondary malignant neoplasm of resp and digestive organs +C0153675|T191|HT|C78|ICD10CM|Secondary malignant neoplasm of respiratory and digestive organs|Secondary malignant neoplasm of respiratory and digestive organs +C0153675|T191|HT|C78|ICD10|Secondary malignant neoplasm of respiratory and digestive organs|Secondary malignant neoplasm of respiratory and digestive organs +C0153676|T191|PT|C78.0|ICD10|Secondary malignant neoplasm of lung|Secondary malignant neoplasm of lung +C0153676|T191|HT|C78.0|ICD10CM|Secondary malignant neoplasm of lung|Secondary malignant neoplasm of lung +C0153676|T191|AB|C78.0|ICD10CM|Secondary malignant neoplasm of lung|Secondary malignant neoplasm of lung +C2845957|T191|AB|C78.00|ICD10CM|Secondary malignant neoplasm of unspecified lung|Secondary malignant neoplasm of unspecified lung +C2845957|T191|PT|C78.00|ICD10CM|Secondary malignant neoplasm of unspecified lung|Secondary malignant neoplasm of unspecified lung +C2845958|T191|PT|C78.01|ICD10CM|Secondary malignant neoplasm of right lung|Secondary malignant neoplasm of right lung +C2845958|T191|AB|C78.01|ICD10CM|Secondary malignant neoplasm of right lung|Secondary malignant neoplasm of right lung +C2845959|T191|PT|C78.02|ICD10CM|Secondary malignant neoplasm of left lung|Secondary malignant neoplasm of left lung +C2845959|T191|AB|C78.02|ICD10CM|Secondary malignant neoplasm of left lung|Secondary malignant neoplasm of left lung +C0153677|T191|PT|C78.1|ICD10CM|Secondary malignant neoplasm of mediastinum|Secondary malignant neoplasm of mediastinum +C0153677|T191|AB|C78.1|ICD10CM|Secondary malignant neoplasm of mediastinum|Secondary malignant neoplasm of mediastinum +C0153677|T191|PT|C78.1|ICD10|Secondary malignant neoplasm of mediastinum|Secondary malignant neoplasm of mediastinum +C0153678|T191|PT|C78.2|ICD10|Secondary malignant neoplasm of pleura|Secondary malignant neoplasm of pleura +C0153678|T191|PT|C78.2|ICD10CM|Secondary malignant neoplasm of pleura|Secondary malignant neoplasm of pleura +C0153678|T191|AB|C78.2|ICD10CM|Secondary malignant neoplasm of pleura|Secondary malignant neoplasm of pleura +C0348383|T191|AB|C78.3|ICD10CM|Secondary malignant neoplasm of and unsp respiratory organs|Secondary malignant neoplasm of and unsp respiratory organs +C0348383|T191|HT|C78.3|ICD10CM|Secondary malignant neoplasm of other and unspecified respiratory organs|Secondary malignant neoplasm of other and unspecified respiratory organs +C0348383|T191|PT|C78.3|ICD10|Secondary malignant neoplasm of other and unspecified respiratory organs|Secondary malignant neoplasm of other and unspecified respiratory organs +C2845960|T191|AB|C78.30|ICD10CM|Secondary malignant neoplasm of unsp respiratory organ|Secondary malignant neoplasm of unsp respiratory organ +C2845960|T191|PT|C78.30|ICD10CM|Secondary malignant neoplasm of unspecified respiratory organ|Secondary malignant neoplasm of unspecified respiratory organ +C2745961|T191|AB|C78.39|ICD10CM|Secondary malignant neoplasm of other respiratory organs|Secondary malignant neoplasm of other respiratory organs +C2745961|T191|PT|C78.39|ICD10CM|Secondary malignant neoplasm of other respiratory organs|Secondary malignant neoplasm of other respiratory organs +C0494164|T191|PT|C78.4|ICD10CM|Secondary malignant neoplasm of small intestine|Secondary malignant neoplasm of small intestine +C0494164|T191|AB|C78.4|ICD10CM|Secondary malignant neoplasm of small intestine|Secondary malignant neoplasm of small intestine +C0494164|T191|PT|C78.4|ICD10|Secondary malignant neoplasm of small intestine|Secondary malignant neoplasm of small intestine +C0153681|T191|PT|C78.5|ICD10|Secondary malignant neoplasm of large intestine and rectum|Secondary malignant neoplasm of large intestine and rectum +C0153681|T191|PT|C78.5|ICD10CM|Secondary malignant neoplasm of large intestine and rectum|Secondary malignant neoplasm of large intestine and rectum +C0153681|T191|AB|C78.5|ICD10CM|Secondary malignant neoplasm of large intestine and rectum|Secondary malignant neoplasm of large intestine and rectum +C0036528|T191|AB|C78.6|ICD10CM|Secondary malignant neoplasm of retroperiton and peritoneum|Secondary malignant neoplasm of retroperiton and peritoneum +C0036528|T191|PT|C78.6|ICD10CM|Secondary malignant neoplasm of retroperitoneum and peritoneum|Secondary malignant neoplasm of retroperitoneum and peritoneum +C0036528|T191|PT|C78.6|ICD10|Secondary malignant neoplasm of retroperitoneum and peritoneum|Secondary malignant neoplasm of retroperitoneum and peritoneum +C2845961|T191|AB|C78.7|ICD10CM|Secondary malig neoplasm of liver and intrahepatic bile duct|Secondary malig neoplasm of liver and intrahepatic bile duct +C0494165|T191|PT|C78.7|ICD10|Secondary malignant neoplasm of liver|Secondary malignant neoplasm of liver +C2845961|T191|PT|C78.7|ICD10CM|Secondary malignant neoplasm of liver and intrahepatic bile duct|Secondary malignant neoplasm of liver and intrahepatic bile duct +C0348384|T191|AB|C78.8|ICD10CM|Secondary malignant neoplasm of and unsp digestive organs|Secondary malignant neoplasm of and unsp digestive organs +C0348384|T191|HT|C78.8|ICD10CM|Secondary malignant neoplasm of other and unspecified digestive organs|Secondary malignant neoplasm of other and unspecified digestive organs +C0348384|T191|PT|C78.8|ICD10|Secondary malignant neoplasm of other and unspecified digestive organs|Secondary malignant neoplasm of other and unspecified digestive organs +C2845962|T191|AB|C78.80|ICD10CM|Secondary malignant neoplasm of unspecified digestive organ|Secondary malignant neoplasm of unspecified digestive organ +C2845962|T191|PT|C78.80|ICD10CM|Secondary malignant neoplasm of unspecified digestive organ|Secondary malignant neoplasm of unspecified digestive organ +C0348384|T191|AB|C78.89|ICD10CM|Secondary malignant neoplasm of other digestive organs|Secondary malignant neoplasm of other digestive organs +C0348384|T191|PT|C78.89|ICD10CM|Secondary malignant neoplasm of other digestive organs|Secondary malignant neoplasm of other digestive organs +C2845963|T191|AB|C79|ICD10CM|Secondary malignant neoplasm of other and unspecified sites|Secondary malignant neoplasm of other and unspecified sites +C2845963|T191|HT|C79|ICD10CM|Secondary malignant neoplasm of other and unspecified sites|Secondary malignant neoplasm of other and unspecified sites +C0494166|T191|HT|C79|ICD10|Secondary malignant neoplasm of other sites|Secondary malignant neoplasm of other sites +C0494167|T191|PT|C79.0|ICD10|Secondary malignant neoplasm of kidney and renal pelvis|Secondary malignant neoplasm of kidney and renal pelvis +C0494167|T191|HT|C79.0|ICD10CM|Secondary malignant neoplasm of kidney and renal pelvis|Secondary malignant neoplasm of kidney and renal pelvis +C0494167|T191|AB|C79.0|ICD10CM|Secondary malignant neoplasm of kidney and renal pelvis|Secondary malignant neoplasm of kidney and renal pelvis +C2845964|T191|AB|C79.00|ICD10CM|Secondary malignant neoplasm of unsp kidney and renal pelvis|Secondary malignant neoplasm of unsp kidney and renal pelvis +C2845964|T191|PT|C79.00|ICD10CM|Secondary malignant neoplasm of unspecified kidney and renal pelvis|Secondary malignant neoplasm of unspecified kidney and renal pelvis +C2845965|T191|AB|C79.01|ICD10CM|Secondary malignant neoplasm of r kidney and renal pelvis|Secondary malignant neoplasm of r kidney and renal pelvis +C2845965|T191|PT|C79.01|ICD10CM|Secondary malignant neoplasm of right kidney and renal pelvis|Secondary malignant neoplasm of right kidney and renal pelvis +C2845966|T191|AB|C79.02|ICD10CM|Secondary malignant neoplasm of left kidney and renal pelvis|Secondary malignant neoplasm of left kidney and renal pelvis +C2845966|T191|PT|C79.02|ICD10CM|Secondary malignant neoplasm of left kidney and renal pelvis|Secondary malignant neoplasm of left kidney and renal pelvis +C0153686|T191|AB|C79.1|ICD10CM|Sec malig neoplm of bladder and oth and unsp urinary organs|Sec malig neoplm of bladder and oth and unsp urinary organs +C0153686|T191|HT|C79.1|ICD10CM|Secondary malignant neoplasm of bladder and other and unspecified urinary organs|Secondary malignant neoplasm of bladder and other and unspecified urinary organs +C0153686|T191|PT|C79.1|ICD10|Secondary malignant neoplasm of bladder and other and unspecified urinary organs|Secondary malignant neoplasm of bladder and other and unspecified urinary organs +C2845967|T191|AB|C79.10|ICD10CM|Secondary malignant neoplasm of unspecified urinary organs|Secondary malignant neoplasm of unspecified urinary organs +C2845967|T191|PT|C79.10|ICD10CM|Secondary malignant neoplasm of unspecified urinary organs|Secondary malignant neoplasm of unspecified urinary organs +C0347011|T191|PT|C79.11|ICD10CM|Secondary malignant neoplasm of bladder|Secondary malignant neoplasm of bladder +C0347011|T191|AB|C79.11|ICD10CM|Secondary malignant neoplasm of bladder|Secondary malignant neoplasm of bladder +C2845968|T191|AB|C79.19|ICD10CM|Secondary malignant neoplasm of other urinary organs|Secondary malignant neoplasm of other urinary organs +C2845968|T191|PT|C79.19|ICD10CM|Secondary malignant neoplasm of other urinary organs|Secondary malignant neoplasm of other urinary organs +C0153687|T191|PT|C79.2|ICD10CM|Secondary malignant neoplasm of skin|Secondary malignant neoplasm of skin +C0153687|T191|AB|C79.2|ICD10CM|Secondary malignant neoplasm of skin|Secondary malignant neoplasm of skin +C0153687|T191|PT|C79.2|ICD10|Secondary malignant neoplasm of skin|Secondary malignant neoplasm of skin +C0494168|T191|HT|C79.3|ICD10CM|Secondary malignant neoplasm of brain and cerebral meninges|Secondary malignant neoplasm of brain and cerebral meninges +C0494168|T191|AB|C79.3|ICD10CM|Secondary malignant neoplasm of brain and cerebral meninges|Secondary malignant neoplasm of brain and cerebral meninges +C0494168|T191|PT|C79.3|ICD10|Secondary malignant neoplasm of brain and cerebral meninges|Secondary malignant neoplasm of brain and cerebral meninges +C0220650|T191|PT|C79.31|ICD10CM|Secondary malignant neoplasm of brain|Secondary malignant neoplasm of brain +C0220650|T191|AB|C79.31|ICD10CM|Secondary malignant neoplasm of brain|Secondary malignant neoplasm of brain +C0686396|T191|PT|C79.32|ICD10CM|Secondary malignant neoplasm of cerebral meninges|Secondary malignant neoplasm of cerebral meninges +C0686396|T191|AB|C79.32|ICD10CM|Secondary malignant neoplasm of cerebral meninges|Secondary malignant neoplasm of cerebral meninges +C0348385|T191|AB|C79.4|ICD10CM|Secondary malig neoplasm of and unsp parts of nervous sys|Secondary malig neoplasm of and unsp parts of nervous sys +C0348385|T191|HT|C79.4|ICD10CM|Secondary malignant neoplasm of other and unspecified parts of nervous system|Secondary malignant neoplasm of other and unspecified parts of nervous system +C0348385|T191|PT|C79.4|ICD10|Secondary malignant neoplasm of other and unspecified parts of nervous system|Secondary malignant neoplasm of other and unspecified parts of nervous system +C2845969|T191|AB|C79.40|ICD10CM|Secondary malignant neoplasm of unsp part of nervous system|Secondary malignant neoplasm of unsp part of nervous system +C2845969|T191|PT|C79.40|ICD10CM|Secondary malignant neoplasm of unspecified part of nervous system|Secondary malignant neoplasm of unspecified part of nervous system +C0153689|T191|AB|C79.49|ICD10CM|Secondary malignant neoplasm of oth parts of nervous system|Secondary malignant neoplasm of oth parts of nervous system +C0153689|T191|PT|C79.49|ICD10CM|Secondary malignant neoplasm of other parts of nervous system|Secondary malignant neoplasm of other parts of nervous system +C0153690|T191|HT|C79.5|ICD10CM|Secondary malignant neoplasm of bone and bone marrow|Secondary malignant neoplasm of bone and bone marrow +C0153690|T191|AB|C79.5|ICD10CM|Secondary malignant neoplasm of bone and bone marrow|Secondary malignant neoplasm of bone and bone marrow +C0153690|T191|PT|C79.5|ICD10|Secondary malignant neoplasm of bone and bone marrow|Secondary malignant neoplasm of bone and bone marrow +C0153690|T191|PT|C79.51|ICD10CM|Secondary malignant neoplasm of bone|Secondary malignant neoplasm of bone +C0153690|T191|AB|C79.51|ICD10CM|Secondary malignant neoplasm of bone|Secondary malignant neoplasm of bone +C0346979|T191|PT|C79.52|ICD10CM|Secondary malignant neoplasm of bone marrow|Secondary malignant neoplasm of bone marrow +C0346979|T191|AB|C79.52|ICD10CM|Secondary malignant neoplasm of bone marrow|Secondary malignant neoplasm of bone marrow +C3647143|T191|PT|C79.6|ICD10|Secondary malignant neoplasm of ovary|Secondary malignant neoplasm of ovary +C3647143|T191|HT|C79.6|ICD10CM|Secondary malignant neoplasm of ovary|Secondary malignant neoplasm of ovary +C3647143|T191|AB|C79.6|ICD10CM|Secondary malignant neoplasm of ovary|Secondary malignant neoplasm of ovary +C2845970|T191|AB|C79.60|ICD10CM|Secondary malignant neoplasm of unspecified ovary|Secondary malignant neoplasm of unspecified ovary +C2845970|T191|PT|C79.60|ICD10CM|Secondary malignant neoplasm of unspecified ovary|Secondary malignant neoplasm of unspecified ovary +C1297997|T191|PT|C79.61|ICD10CM|Secondary malignant neoplasm of right ovary|Secondary malignant neoplasm of right ovary +C1297997|T191|AB|C79.61|ICD10CM|Secondary malignant neoplasm of right ovary|Secondary malignant neoplasm of right ovary +C1297990|T191|PT|C79.62|ICD10CM|Secondary malignant neoplasm of left ovary|Secondary malignant neoplasm of left ovary +C1297990|T191|AB|C79.62|ICD10CM|Secondary malignant neoplasm of left ovary|Secondary malignant neoplasm of left ovary +C0153691|T191|HT|C79.7|ICD10CM|Secondary malignant neoplasm of adrenal gland|Secondary malignant neoplasm of adrenal gland +C0153691|T191|AB|C79.7|ICD10CM|Secondary malignant neoplasm of adrenal gland|Secondary malignant neoplasm of adrenal gland +C0153691|T191|PT|C79.7|ICD10|Secondary malignant neoplasm of adrenal gland|Secondary malignant neoplasm of adrenal gland +C2845971|T191|AB|C79.70|ICD10CM|Secondary malignant neoplasm of unspecified adrenal gland|Secondary malignant neoplasm of unspecified adrenal gland +C2845971|T191|PT|C79.70|ICD10CM|Secondary malignant neoplasm of unspecified adrenal gland|Secondary malignant neoplasm of unspecified adrenal gland +C2845972|T191|AB|C79.71|ICD10CM|Secondary malignant neoplasm of right adrenal gland|Secondary malignant neoplasm of right adrenal gland +C2845972|T191|PT|C79.71|ICD10CM|Secondary malignant neoplasm of right adrenal gland|Secondary malignant neoplasm of right adrenal gland +C2845973|T191|AB|C79.72|ICD10CM|Secondary malignant neoplasm of left adrenal gland|Secondary malignant neoplasm of left adrenal gland +C2845973|T191|PT|C79.72|ICD10CM|Secondary malignant neoplasm of left adrenal gland|Secondary malignant neoplasm of left adrenal gland +C0153684|T191|PT|C79.8|ICD10|Secondary malignant neoplasm of other specified sites|Secondary malignant neoplasm of other specified sites +C0153684|T191|HT|C79.8|ICD10CM|Secondary malignant neoplasm of other specified sites|Secondary malignant neoplasm of other specified sites +C0153684|T191|AB|C79.8|ICD10CM|Secondary malignant neoplasm of other specified sites|Secondary malignant neoplasm of other specified sites +C0346993|T191|PT|C79.81|ICD10CM|Secondary malignant neoplasm of breast|Secondary malignant neoplasm of breast +C0346993|T191|AB|C79.81|ICD10CM|Secondary malignant neoplasm of breast|Secondary malignant neoplasm of breast +C0153693|T191|PT|C79.82|ICD10CM|Secondary malignant neoplasm of genital organs|Secondary malignant neoplasm of genital organs +C0153693|T191|AB|C79.82|ICD10CM|Secondary malignant neoplasm of genital organs|Secondary malignant neoplasm of genital organs +C0153684|T191|PT|C79.89|ICD10CM|Secondary malignant neoplasm of other specified sites|Secondary malignant neoplasm of other specified sites +C0153684|T191|AB|C79.89|ICD10CM|Secondary malignant neoplasm of other specified sites|Secondary malignant neoplasm of other specified sites +C2939420|T191|ET|C79.9|ICD10CM|Metastatic cancer NOS|Metastatic cancer NOS +C2939420|T191|ET|C79.9|ICD10CM|Metastatic disease NOS|Metastatic disease NOS +C2845974|T191|AB|C79.9|ICD10CM|Secondary malignant neoplasm of unspecified site|Secondary malignant neoplasm of unspecified site +C2845974|T191|PT|C79.9|ICD10CM|Secondary malignant neoplasm of unspecified site|Secondary malignant neoplasm of unspecified site +C2845975|T191|AB|C7A|ICD10CM|Malignant neuroendocrine tumors|Malignant neuroendocrine tumors +C2845975|T191|HT|C7A|ICD10CM|Malignant neuroendocrine tumors|Malignant neuroendocrine tumors +C2977946|T191|HT|C7A-C7A|ICD10CM|Malignant neuroendocrine tumors (C7A)|Malignant neuroendocrine tumors (C7A) +C0391970|T191|AB|C7A.0|ICD10CM|Malignant carcinoid tumors|Malignant carcinoid tumors +C0391970|T191|HT|C7A.0|ICD10CM|Malignant carcinoid tumors|Malignant carcinoid tumors +C2845976|T191|AB|C7A.00|ICD10CM|Malignant carcinoid tumor of unspecified site|Malignant carcinoid tumor of unspecified site +C2845976|T191|PT|C7A.00|ICD10CM|Malignant carcinoid tumor of unspecified site|Malignant carcinoid tumor of unspecified site +C2062527|T191|AB|C7A.01|ICD10CM|Malignant carcinoid tumors of the small intestine|Malignant carcinoid tumors of the small intestine +C2062527|T191|HT|C7A.01|ICD10CM|Malignant carcinoid tumors of the small intestine|Malignant carcinoid tumors of the small intestine +C2349314|T191|AB|C7A.010|ICD10CM|Malignant carcinoid tumor of the duodenum|Malignant carcinoid tumor of the duodenum +C2349314|T191|PT|C7A.010|ICD10CM|Malignant carcinoid tumor of the duodenum|Malignant carcinoid tumor of the duodenum +C2349315|T191|AB|C7A.011|ICD10CM|Malignant carcinoid tumor of the jejunum|Malignant carcinoid tumor of the jejunum +C2349315|T191|PT|C7A.011|ICD10CM|Malignant carcinoid tumor of the jejunum|Malignant carcinoid tumor of the jejunum +C2349316|T191|AB|C7A.012|ICD10CM|Malignant carcinoid tumor of the ileum|Malignant carcinoid tumor of the ileum +C2349316|T191|PT|C7A.012|ICD10CM|Malignant carcinoid tumor of the ileum|Malignant carcinoid tumor of the ileum +C2349313|T191|AB|C7A.019|ICD10CM|Malignant carcinoid tumor of the sm int, unsp portion|Malignant carcinoid tumor of the sm int, unsp portion +C2349313|T191|PT|C7A.019|ICD10CM|Malignant carcinoid tumor of the small intestine, unspecified portion|Malignant carcinoid tumor of the small intestine, unspecified portion +C2349324|T191|AB|C7A.02|ICD10CM|Malig carcinoid tumors of the appendix, lg int, and rectum|Malig carcinoid tumors of the appendix, lg int, and rectum +C2349324|T191|HT|C7A.02|ICD10CM|Malignant carcinoid tumors of the appendix, large intestine, and rectum|Malignant carcinoid tumors of the appendix, large intestine, and rectum +C2062529|T191|AB|C7A.020|ICD10CM|Malignant carcinoid tumor of the appendix|Malignant carcinoid tumor of the appendix +C2062529|T191|PT|C7A.020|ICD10CM|Malignant carcinoid tumor of the appendix|Malignant carcinoid tumor of the appendix +C2349319|T191|AB|C7A.021|ICD10CM|Malignant carcinoid tumor of the cecum|Malignant carcinoid tumor of the cecum +C2349319|T191|PT|C7A.021|ICD10CM|Malignant carcinoid tumor of the cecum|Malignant carcinoid tumor of the cecum +C2349320|T191|AB|C7A.022|ICD10CM|Malignant carcinoid tumor of the ascending colon|Malignant carcinoid tumor of the ascending colon +C2349320|T191|PT|C7A.022|ICD10CM|Malignant carcinoid tumor of the ascending colon|Malignant carcinoid tumor of the ascending colon +C2349321|T191|AB|C7A.023|ICD10CM|Malignant carcinoid tumor of the transverse colon|Malignant carcinoid tumor of the transverse colon +C2349321|T191|PT|C7A.023|ICD10CM|Malignant carcinoid tumor of the transverse colon|Malignant carcinoid tumor of the transverse colon +C2349322|T191|AB|C7A.024|ICD10CM|Malignant carcinoid tumor of the descending colon|Malignant carcinoid tumor of the descending colon +C2349322|T191|PT|C7A.024|ICD10CM|Malignant carcinoid tumor of the descending colon|Malignant carcinoid tumor of the descending colon +C2349323|T191|AB|C7A.025|ICD10CM|Malignant carcinoid tumor of the sigmoid colon|Malignant carcinoid tumor of the sigmoid colon +C2349323|T191|PT|C7A.025|ICD10CM|Malignant carcinoid tumor of the sigmoid colon|Malignant carcinoid tumor of the sigmoid colon +C2205119|T191|AB|C7A.026|ICD10CM|Malignant carcinoid tumor of the rectum|Malignant carcinoid tumor of the rectum +C2205119|T191|PT|C7A.026|ICD10CM|Malignant carcinoid tumor of the rectum|Malignant carcinoid tumor of the rectum +C2349318|T191|ET|C7A.029|ICD10CM|Malignant carcinoid tumor of the colon NOS|Malignant carcinoid tumor of the colon NOS +C2349317|T191|PT|C7A.029|ICD10CM|Malignant carcinoid tumor of the large intestine, unspecified portion|Malignant carcinoid tumor of the large intestine, unspecified portion +C2349317|T191|AB|C7A.029|ICD10CM|Malignant carcinoid tumor of the lg int, unsp portion|Malignant carcinoid tumor of the lg int, unsp portion +C2349331|T191|HT|C7A.09|ICD10CM|Malignant carcinoid tumors of other sites|Malignant carcinoid tumors of other sites +C2349331|T191|AB|C7A.09|ICD10CM|Malignant carcinoid tumors of other sites|Malignant carcinoid tumors of other sites +C2349326|T191|AB|C7A.090|ICD10CM|Malignant carcinoid tumor of the bronchus and lung|Malignant carcinoid tumor of the bronchus and lung +C2349326|T191|PT|C7A.090|ICD10CM|Malignant carcinoid tumor of the bronchus and lung|Malignant carcinoid tumor of the bronchus and lung +C1336746|T191|AB|C7A.091|ICD10CM|Malignant carcinoid tumor of the thymus|Malignant carcinoid tumor of the thymus +C1336746|T191|PT|C7A.091|ICD10CM|Malignant carcinoid tumor of the thymus|Malignant carcinoid tumor of the thymus +C2062573|T191|AB|C7A.092|ICD10CM|Malignant carcinoid tumor of the stomach|Malignant carcinoid tumor of the stomach +C2062573|T191|PT|C7A.092|ICD10CM|Malignant carcinoid tumor of the stomach|Malignant carcinoid tumor of the stomach +C2349327|T191|AB|C7A.093|ICD10CM|Malignant carcinoid tumor of the kidney|Malignant carcinoid tumor of the kidney +C2349327|T191|PT|C7A.093|ICD10CM|Malignant carcinoid tumor of the kidney|Malignant carcinoid tumor of the kidney +C4270805|T191|AB|C7A.094|ICD10CM|Malignant carcinoid tumor of the foregut, unspecified|Malignant carcinoid tumor of the foregut, unspecified +C4270805|T191|PT|C7A.094|ICD10CM|Malignant carcinoid tumor of the foregut, unspecified|Malignant carcinoid tumor of the foregut, unspecified +C4267837|T191|AB|C7A.095|ICD10CM|Malignant carcinoid tumor of the midgut, unspecified|Malignant carcinoid tumor of the midgut, unspecified +C4267837|T191|PT|C7A.095|ICD10CM|Malignant carcinoid tumor of the midgut, unspecified|Malignant carcinoid tumor of the midgut, unspecified +C4267838|T191|AB|C7A.096|ICD10CM|Malignant carcinoid tumor of the hindgut, unspecified|Malignant carcinoid tumor of the hindgut, unspecified +C4267838|T191|PT|C7A.096|ICD10CM|Malignant carcinoid tumor of the hindgut, unspecified|Malignant carcinoid tumor of the hindgut, unspecified +C2349331|T191|AB|C7A.098|ICD10CM|Malignant carcinoid tumors of other sites|Malignant carcinoid tumors of other sites +C2349331|T191|PT|C7A.098|ICD10CM|Malignant carcinoid tumors of other sites|Malignant carcinoid tumors of other sites +C2349334|T191|ET|C7A.1|ICD10CM|High grade neuroendocrine carcinoma, any site|High grade neuroendocrine carcinoma, any site +C2349333|T191|ET|C7A.1|ICD10CM|Malignant poorly differentiated neuroendocrine carcinoma, any site|Malignant poorly differentiated neuroendocrine carcinoma, any site +C2349335|T191|ET|C7A.1|ICD10CM|Malignant poorly differentiated neuroendocrine tumor NOS|Malignant poorly differentiated neuroendocrine tumor NOS +C2349335|T191|AB|C7A.1|ICD10CM|Malignant poorly differentiated neuroendocrine tumors|Malignant poorly differentiated neuroendocrine tumors +C2349335|T191|PT|C7A.1|ICD10CM|Malignant poorly differentiated neuroendocrine tumors|Malignant poorly differentiated neuroendocrine tumors +C2845977|T191|AB|C7A.8|ICD10CM|Other malignant neuroendocrine tumors|Other malignant neuroendocrine tumors +C2845977|T191|PT|C7A.8|ICD10CM|Other malignant neuroendocrine tumors|Other malignant neuroendocrine tumors +C2712917|T191|AB|C7B|ICD10CM|Secondary neuroendocrine tumors|Secondary neuroendocrine tumors +C2712917|T191|HT|C7B|ICD10CM|Secondary neuroendocrine tumors|Secondary neuroendocrine tumors +C2977947|T191|HT|C7B-C7B|ICD10CM|Secondary neuroendocrine tumors (C7B)|Secondary neuroendocrine tumors (C7B) +C2712918|T191|AB|C7B.0|ICD10CM|Secondary carcinoid tumors|Secondary carcinoid tumors +C2712918|T191|HT|C7B.0|ICD10CM|Secondary carcinoid tumors|Secondary carcinoid tumors +C2845978|T191|AB|C7B.00|ICD10CM|Secondary carcinoid tumors, unspecified site|Secondary carcinoid tumors, unspecified site +C2845978|T191|PT|C7B.00|ICD10CM|Secondary carcinoid tumors, unspecified site|Secondary carcinoid tumors, unspecified site +C2845980|T191|AB|C7B.01|ICD10CM|Secondary carcinoid tumors of distant lymph nodes|Secondary carcinoid tumors of distant lymph nodes +C2845980|T191|PT|C7B.01|ICD10CM|Secondary carcinoid tumors of distant lymph nodes|Secondary carcinoid tumors of distant lymph nodes +C2845981|T191|AB|C7B.02|ICD10CM|Secondary carcinoid tumors of liver|Secondary carcinoid tumors of liver +C2845981|T191|PT|C7B.02|ICD10CM|Secondary carcinoid tumors of liver|Secondary carcinoid tumors of liver +C2845982|T191|AB|C7B.03|ICD10CM|Secondary carcinoid tumors of bone|Secondary carcinoid tumors of bone +C2845982|T191|PT|C7B.03|ICD10CM|Secondary carcinoid tumors of bone|Secondary carcinoid tumors of bone +C2845979|T191|ET|C7B.04|ICD10CM|Mesentary metastasis of carcinoid tumor|Mesentary metastasis of carcinoid tumor +C2845983|T191|AB|C7B.04|ICD10CM|Secondary carcinoid tumors of peritoneum|Secondary carcinoid tumors of peritoneum +C2845983|T191|PT|C7B.04|ICD10CM|Secondary carcinoid tumors of peritoneum|Secondary carcinoid tumors of peritoneum +C2845984|T191|AB|C7B.09|ICD10CM|Secondary carcinoid tumors of other sites|Secondary carcinoid tumors of other sites +C2845984|T191|PT|C7B.09|ICD10CM|Secondary carcinoid tumors of other sites|Secondary carcinoid tumors of other sites +C2712932|T191|ET|C7B.1|ICD10CM|Merkel cell carcinoma nodal presentation|Merkel cell carcinoma nodal presentation +C2712930|T191|ET|C7B.1|ICD10CM|Merkel cell carcinoma visceral metastatic presentation|Merkel cell carcinoma visceral metastatic presentation +C2712933|T191|AB|C7B.1|ICD10CM|Secondary Merkel cell carcinoma|Secondary Merkel cell carcinoma +C2712933|T191|PT|C7B.1|ICD10CM|Secondary Merkel cell carcinoma|Secondary Merkel cell carcinoma +C2845985|T191|AB|C7B.8|ICD10CM|Other secondary neuroendocrine tumors|Other secondary neuroendocrine tumors +C2845985|T191|PT|C7B.8|ICD10CM|Other secondary neuroendocrine tumors|Other secondary neuroendocrine tumors +C0006826|T191|HT|C80|ICD10CM|Malignant neoplasm without specification of site|Malignant neoplasm without specification of site +C0006826|T191|AB|C80|ICD10CM|Malignant neoplasm without specification of site|Malignant neoplasm without specification of site +C0006826|T191|PT|C80|ICD10|Malignant neoplasm without specification of site|Malignant neoplasm without specification of site +C0205699|T191|ET|C80.0|ICD10CM|Carcinomatosis NOS|Carcinomatosis NOS +C2845988|T191|AB|C80.0|ICD10CM|Disseminated malignant neoplasm, unspecified|Disseminated malignant neoplasm, unspecified +C2845988|T191|PT|C80.0|ICD10CM|Disseminated malignant neoplasm, unspecified|Disseminated malignant neoplasm, unspecified +C2845986|T191|ET|C80.0|ICD10CM|Generalized cancer, unspecified site (primary) (secondary)|Generalized cancer, unspecified site (primary) (secondary) +C2845987|T191|ET|C80.0|ICD10CM|Generalized malignancy, unspecified site (primary) (secondary)|Generalized malignancy, unspecified site (primary) (secondary) +C0006826|T191|ET|C80.1|ICD10CM|Cancer NOS|Cancer NOS +C0865023|T191|ET|C80.1|ICD10CM|Cancer unspecified site (primary)|Cancer unspecified site (primary) +C0865026|T191|ET|C80.1|ICD10CM|Carcinoma unspecified site (primary)|Carcinoma unspecified site (primary) +C0865023|T191|ET|C80.1|ICD10CM|Malignancy unspecified site (primary)|Malignancy unspecified site (primary) +C2853710|T191|AB|C80.1|ICD10CM|Malignant (primary) neoplasm, unspecified|Malignant (primary) neoplasm, unspecified +C2853710|T191|PT|C80.1|ICD10CM|Malignant (primary) neoplasm, unspecified|Malignant (primary) neoplasm, unspecified +C2349259|T191|AB|C80.2|ICD10CM|Malignant neoplasm associated with transplanted organ|Malignant neoplasm associated with transplanted organ +C2349259|T191|PT|C80.2|ICD10CM|Malignant neoplasm associated with transplanted organ|Malignant neoplasm associated with transplanted organ +C0019829|T191|HT|C81|ICD10CM|Hodgkin lymphoma|Hodgkin lymphoma +C0019829|T191|AB|C81|ICD10CM|Hodgkin lymphoma|Hodgkin lymphoma +C0019829|T191|HT|C81|ICD10|Hodgkin's disease|Hodgkin's disease +C0348393|T191|HT|C81-C96|ICD10CM|Malignant neoplasms of lymphoid, hematopoietic and related tissue (C81-C96)|Malignant neoplasms of lymphoid, hematopoietic and related tissue (C81-C96) +C0348393|T191|HT|C81-C96.9|ICD10|Malignant neoplasms of lymphoid, haematopoietic and related tissue|Malignant neoplasms of lymphoid, haematopoietic and related tissue +C0348393|T191|HT|C81-C96.9|ICD10AE|Malignant neoplasms of lymphoid, hematopoietic and related tissue|Malignant neoplasms of lymphoid, hematopoietic and related tissue +C1266194|T191|PX|C81.0|ICD10|Hodgkin's disease with lymphocytic predominance|Hodgkin's disease with lymphocytic predominance +C1266194|T191|PS|C81.0|ICD10|Lymphocytic predominance|Lymphocytic predominance +C1334968|T191|HT|C81.0|ICD10CM|Nodular lymphocyte predominant Hodgkin lymphoma|Nodular lymphocyte predominant Hodgkin lymphoma +C1334968|T191|AB|C81.0|ICD10CM|Nodular lymphocyte predominant Hodgkin lymphoma|Nodular lymphocyte predominant Hodgkin lymphoma +C2853711|T191|AB|C81.00|ICD10CM|Nodular lymphocyte predominant Hodgkin lymphoma, unsp site|Nodular lymphocyte predominant Hodgkin lymphoma, unsp site +C2853711|T191|PT|C81.00|ICD10CM|Nodular lymphocyte predominant Hodgkin lymphoma, unspecified site|Nodular lymphocyte predominant Hodgkin lymphoma, unspecified site +C2853712|T191|AB|C81.01|ICD10CM|Nodlr lymphocy predom Hdgkn lymph, nodes of head, face, & nk|Nodlr lymphocy predom Hdgkn lymph, nodes of head, face, & nk +C2853712|T191|PT|C81.01|ICD10CM|Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of head, face, and neck|Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of head, face, and neck +C2853713|T191|AB|C81.02|ICD10CM|Nodular lymphocy predom Hodgkin lymphoma, intrathorac nodes|Nodular lymphocy predom Hodgkin lymphoma, intrathorac nodes +C2853713|T191|PT|C81.02|ICD10CM|Nodular lymphocyte predominant Hodgkin lymphoma, intrathoracic lymph nodes|Nodular lymphocyte predominant Hodgkin lymphoma, intrathoracic lymph nodes +C2853714|T191|AB|C81.03|ICD10CM|Nodular lymphocyte predom Hodgkin lymphoma, intra-abd nodes|Nodular lymphocyte predom Hodgkin lymphoma, intra-abd nodes +C2853714|T191|PT|C81.03|ICD10CM|Nodular lymphocyte predominant Hodgkin lymphoma, intra-abdominal lymph nodes|Nodular lymphocyte predominant Hodgkin lymphoma, intra-abdominal lymph nodes +C2853715|T191|AB|C81.04|ICD10CM|Nodlr lymphocy predom Hdgkn lymph, nodes of axla and upr lmb|Nodlr lymphocy predom Hdgkn lymph, nodes of axla and upr lmb +C2853715|T191|PT|C81.04|ICD10CM|Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of axilla and upper limb|Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of axilla and upper limb +C2853716|T191|AB|C81.05|ICD10CM|Nodlr lymphocy predom Hdgkn lymph,nodes of ing rgn & low lmb|Nodlr lymphocy predom Hdgkn lymph,nodes of ing rgn & low lmb +C2853716|T191|PT|C81.05|ICD10CM|Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of inguinal region and lower limb|Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of inguinal region and lower limb +C2853717|T191|AB|C81.06|ICD10CM|Nodular lymphocyte predom Hodgkin lymphoma, intrapelv nodes|Nodular lymphocyte predom Hodgkin lymphoma, intrapelv nodes +C2853717|T191|PT|C81.06|ICD10CM|Nodular lymphocyte predominant Hodgkin lymphoma, intrapelvic lymph nodes|Nodular lymphocyte predominant Hodgkin lymphoma, intrapelvic lymph nodes +C2853718|T191|AB|C81.07|ICD10CM|Nodular lymphocyte predominant Hodgkin lymphoma, spleen|Nodular lymphocyte predominant Hodgkin lymphoma, spleen +C2853718|T191|PT|C81.07|ICD10CM|Nodular lymphocyte predominant Hodgkin lymphoma, spleen|Nodular lymphocyte predominant Hodgkin lymphoma, spleen +C2853719|T191|AB|C81.08|ICD10CM|Nodular lymphocyte predom Hodgkin lymphoma, nodes mult site|Nodular lymphocyte predom Hodgkin lymphoma, nodes mult site +C2853719|T191|PT|C81.08|ICD10CM|Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of multiple sites|Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of multiple sites +C2853720|T191|AB|C81.09|ICD10CM|Nodlr lymphocy predom Hdgkn lymph, extrnod & solid org site|Nodlr lymphocy predom Hdgkn lymph, extrnod & solid org site +C2853720|T191|PT|C81.09|ICD10CM|Nodular lymphocyte predominant Hodgkin lymphoma, extranodal and solid organ sites|Nodular lymphocyte predominant Hodgkin lymphoma, extranodal and solid organ sites +C0152268|T191|PX|C81.1|ICD10|Hodgkin's disease with nodular sclerosis|Hodgkin's disease with nodular sclerosis +C0152268|T191|PS|C81.1|ICD10|Nodular sclerosis|Nodular sclerosis +C0152268|T191|ET|C81.1|ICD10CM|Nodular sclerosis classical Hodgkin lymphoma|Nodular sclerosis classical Hodgkin lymphoma +C0152268|T191|AB|C81.1|ICD10CM|Nodular sclerosis Hodgkin lymphoma|Nodular sclerosis Hodgkin lymphoma +C0152268|T191|HT|C81.1|ICD10CM|Nodular sclerosis Hodgkin lymphoma|Nodular sclerosis Hodgkin lymphoma +C4267839|T191|AB|C81.10|ICD10CM|Nodular sclerosis Hodgkin lymphoma, unspecified site|Nodular sclerosis Hodgkin lymphoma, unspecified site +C4267839|T191|PT|C81.10|ICD10CM|Nodular sclerosis Hodgkin lymphoma, unspecified site|Nodular sclerosis Hodgkin lymphoma, unspecified site +C0153760|T191|AB|C81.11|ICD10CM|Nodular scler Hodgkin lymph, nodes of head, face, and neck|Nodular scler Hodgkin lymph, nodes of head, face, and neck +C0153760|T191|PT|C81.11|ICD10CM|Nodular sclerosis Hodgkin lymphoma, lymph nodes of head, face, and neck|Nodular sclerosis Hodgkin lymphoma, lymph nodes of head, face, and neck +C4267840|T191|AB|C81.12|ICD10CM|Nodular sclerosis Hodgkin lymphoma, intrathorac lymph nodes|Nodular sclerosis Hodgkin lymphoma, intrathorac lymph nodes +C4267840|T191|PT|C81.12|ICD10CM|Nodular sclerosis Hodgkin lymphoma, intrathoracic lymph nodes|Nodular sclerosis Hodgkin lymphoma, intrathoracic lymph nodes +C4267841|T191|AB|C81.13|ICD10CM|Nodular sclerosis Hodgkin lymphoma, intra-abd lymph nodes|Nodular sclerosis Hodgkin lymphoma, intra-abd lymph nodes +C4267841|T191|PT|C81.13|ICD10CM|Nodular sclerosis Hodgkin lymphoma, intra-abdominal lymph nodes|Nodular sclerosis Hodgkin lymphoma, intra-abdominal lymph nodes +C0153763|T191|AB|C81.14|ICD10CM|Nodular scler Hodgkin lymph, nodes of axilla and upper limb|Nodular scler Hodgkin lymph, nodes of axilla and upper limb +C0153763|T191|PT|C81.14|ICD10CM|Nodular sclerosis Hodgkin lymphoma, lymph nodes of axilla and upper limb|Nodular sclerosis Hodgkin lymphoma, lymph nodes of axilla and upper limb +C0153764|T191|AB|C81.15|ICD10CM|Nodlr scler Hdgkn lymph, nodes of ing region and lower limb|Nodlr scler Hdgkn lymph, nodes of ing region and lower limb +C0153764|T191|PT|C81.15|ICD10CM|Nodular sclerosis Hodgkin lymphoma, lymph nodes of inguinal region and lower limb|Nodular sclerosis Hodgkin lymphoma, lymph nodes of inguinal region and lower limb +C4267842|T191|AB|C81.16|ICD10CM|Nodular sclerosis Hodgkin lymphoma, intrapelvic lymph nodes|Nodular sclerosis Hodgkin lymphoma, intrapelvic lymph nodes +C4267842|T191|PT|C81.16|ICD10CM|Nodular sclerosis Hodgkin lymphoma, intrapelvic lymph nodes|Nodular sclerosis Hodgkin lymphoma, intrapelvic lymph nodes +C2018758|T191|AB|C81.17|ICD10CM|Nodular sclerosis Hodgkin lymphoma, spleen|Nodular sclerosis Hodgkin lymphoma, spleen +C2018758|T191|PT|C81.17|ICD10CM|Nodular sclerosis Hodgkin lymphoma, spleen|Nodular sclerosis Hodgkin lymphoma, spleen +C4267843|T191|AB|C81.18|ICD10CM|Nodular sclerosis Hodgkin lymphoma, lymph nodes mult site|Nodular sclerosis Hodgkin lymphoma, lymph nodes mult site +C4267843|T191|PT|C81.18|ICD10CM|Nodular sclerosis Hodgkin lymphoma, lymph nodes of multiple sites|Nodular sclerosis Hodgkin lymphoma, lymph nodes of multiple sites +C4267844|T191|AB|C81.19|ICD10CM|Nodular scler Hodgkin lymph, extrnod and solid organ sites|Nodular scler Hodgkin lymph, extrnod and solid organ sites +C4267844|T191|PT|C81.19|ICD10CM|Nodular sclerosis Hodgkin lymphoma, extranodal and solid organ sites|Nodular sclerosis Hodgkin lymphoma, extranodal and solid organ sites +C0152266|T191|PX|C81.2|ICD10|Hodgkin's disease with mixed cellularity|Hodgkin's disease with mixed cellularity +C0152266|T191|PS|C81.2|ICD10|Mixed cellularity|Mixed cellularity +C0152266|T191|ET|C81.2|ICD10CM|Mixed cellularity classical Hodgkin lymphoma|Mixed cellularity classical Hodgkin lymphoma +C0152266|T191|AB|C81.2|ICD10CM|Mixed cellularity Hodgkin lymphoma|Mixed cellularity Hodgkin lymphoma +C0152266|T191|HT|C81.2|ICD10CM|Mixed cellularity Hodgkin lymphoma|Mixed cellularity Hodgkin lymphoma +C4267845|T191|AB|C81.20|ICD10CM|Mixed cellularity Hodgkin lymphoma, unspecified site|Mixed cellularity Hodgkin lymphoma, unspecified site +C4267845|T191|PT|C81.20|ICD10CM|Mixed cellularity Hodgkin lymphoma, unspecified site|Mixed cellularity Hodgkin lymphoma, unspecified site +C0153768|T191|AB|C81.21|ICD10CM|Mixed cellular Hodgkin lymph, nodes of head, face, and neck|Mixed cellular Hodgkin lymph, nodes of head, face, and neck +C0153768|T191|PT|C81.21|ICD10CM|Mixed cellularity Hodgkin lymphoma, lymph nodes of head, face, and neck|Mixed cellularity Hodgkin lymphoma, lymph nodes of head, face, and neck +C4267846|T191|AB|C81.22|ICD10CM|Mixed cellularity Hodgkin lymphoma, intrathorac lymph nodes|Mixed cellularity Hodgkin lymphoma, intrathorac lymph nodes +C4267846|T191|PT|C81.22|ICD10CM|Mixed cellularity Hodgkin lymphoma, intrathoracic lymph nodes|Mixed cellularity Hodgkin lymphoma, intrathoracic lymph nodes +C4267847|T191|AB|C81.23|ICD10CM|Mixed cellularity Hodgkin lymphoma, intra-abd lymph nodes|Mixed cellularity Hodgkin lymphoma, intra-abd lymph nodes +C4267847|T191|PT|C81.23|ICD10CM|Mixed cellularity Hodgkin lymphoma, intra-abdominal lymph nodes|Mixed cellularity Hodgkin lymphoma, intra-abdominal lymph nodes +C0153771|T191|AB|C81.24|ICD10CM|Mixed cellular Hodgkin lymph, nodes of axilla and upper limb|Mixed cellular Hodgkin lymph, nodes of axilla and upper limb +C0153771|T191|PT|C81.24|ICD10CM|Mixed cellularity Hodgkin lymphoma, lymph nodes of axilla and upper limb|Mixed cellularity Hodgkin lymphoma, lymph nodes of axilla and upper limb +C4267848|T191|AB|C81.25|ICD10CM|Mixed cellular Hdgkn lymph, nodes of ing rgn and lower limb|Mixed cellular Hdgkn lymph, nodes of ing rgn and lower limb +C4267848|T191|PT|C81.25|ICD10CM|Mixed cellularity Hodgkin lymphoma, lymph nodes of inguinal region and lower limb|Mixed cellularity Hodgkin lymphoma, lymph nodes of inguinal region and lower limb +C4267849|T191|AB|C81.26|ICD10CM|Mixed cellularity Hodgkin lymphoma, intrapelvic lymph nodes|Mixed cellularity Hodgkin lymphoma, intrapelvic lymph nodes +C4267849|T191|PT|C81.26|ICD10CM|Mixed cellularity Hodgkin lymphoma, intrapelvic lymph nodes|Mixed cellularity Hodgkin lymphoma, intrapelvic lymph nodes +C0153774|T191|AB|C81.27|ICD10CM|Mixed cellularity Hodgkin lymphoma, spleen|Mixed cellularity Hodgkin lymphoma, spleen +C0153774|T191|PT|C81.27|ICD10CM|Mixed cellularity Hodgkin lymphoma, spleen|Mixed cellularity Hodgkin lymphoma, spleen +C4267850|T191|AB|C81.28|ICD10CM|Mixed cellularity Hodgkin lymphoma, lymph nodes mult site|Mixed cellularity Hodgkin lymphoma, lymph nodes mult site +C4267850|T191|PT|C81.28|ICD10CM|Mixed cellularity Hodgkin lymphoma, lymph nodes of multiple sites|Mixed cellularity Hodgkin lymphoma, lymph nodes of multiple sites +C4267851|T191|AB|C81.29|ICD10CM|Mixed cellular Hodgkin lymph, extrnod and solid organ sites|Mixed cellular Hodgkin lymph, extrnod and solid organ sites +C4267851|T191|PT|C81.29|ICD10CM|Mixed cellularity Hodgkin lymphoma, extranodal and solid organ sites|Mixed cellularity Hodgkin lymphoma, extranodal and solid organ sites +C0152267|T191|PX|C81.3|ICD10|Hodgkin's disease with lymphocytic depletion|Hodgkin's disease with lymphocytic depletion +C0152267|T191|ET|C81.3|ICD10CM|Lymphocyte depleted classical Hodgkin lymphoma|Lymphocyte depleted classical Hodgkin lymphoma +C0152267|T191|AB|C81.3|ICD10CM|Lymphocyte depleted Hodgkin lymphoma|Lymphocyte depleted Hodgkin lymphoma +C0152267|T191|HT|C81.3|ICD10CM|Lymphocyte depleted Hodgkin lymphoma|Lymphocyte depleted Hodgkin lymphoma +C0152267|T191|PS|C81.3|ICD10|Lymphocytic depletion|Lymphocytic depletion +C4267852|T191|AB|C81.30|ICD10CM|Lymphocyte depleted Hodgkin lymphoma, unspecified site|Lymphocyte depleted Hodgkin lymphoma, unspecified site +C4267852|T191|PT|C81.30|ICD10CM|Lymphocyte depleted Hodgkin lymphoma, unspecified site|Lymphocyte depleted Hodgkin lymphoma, unspecified site +C4267853|T191|AB|C81.31|ICD10CM|Lymphocy deplet Hodgkin lymph, nodes of head, face, and neck|Lymphocy deplet Hodgkin lymph, nodes of head, face, and neck +C4267853|T191|PT|C81.31|ICD10CM|Lymphocyte depleted Hodgkin lymphoma, lymph nodes of head, face, and neck|Lymphocyte depleted Hodgkin lymphoma, lymph nodes of head, face, and neck +C4267854|T191|AB|C81.32|ICD10CM|Lymphocyte depleted Hodgkin lymphoma, intrathorac nodes|Lymphocyte depleted Hodgkin lymphoma, intrathorac nodes +C4267854|T191|PT|C81.32|ICD10CM|Lymphocyte depleted Hodgkin lymphoma, intrathoracic lymph nodes|Lymphocyte depleted Hodgkin lymphoma, intrathoracic lymph nodes +C4267855|T191|AB|C81.33|ICD10CM|Lymphocyte depleted Hodgkin lymphoma, intra-abd lymph nodes|Lymphocyte depleted Hodgkin lymphoma, intra-abd lymph nodes +C4267855|T191|PT|C81.33|ICD10CM|Lymphocyte depleted Hodgkin lymphoma, intra-abdominal lymph nodes|Lymphocyte depleted Hodgkin lymphoma, intra-abdominal lymph nodes +C4267856|T191|AB|C81.34|ICD10CM|Lymphocy deplet Hdgkn lymph, nodes of axilla and upper limb|Lymphocy deplet Hdgkn lymph, nodes of axilla and upper limb +C4267856|T191|PT|C81.34|ICD10CM|Lymphocyte depleted Hodgkin lymphoma, lymph nodes of axilla and upper limb|Lymphocyte depleted Hodgkin lymphoma, lymph nodes of axilla and upper limb +C4267857|T191|AB|C81.35|ICD10CM|Lymphocy deplet Hdgkn lymph, nodes of ing rgn and lower limb|Lymphocy deplet Hdgkn lymph, nodes of ing rgn and lower limb +C4267857|T191|PT|C81.35|ICD10CM|Lymphocyte depleted Hodgkin lymphoma, lymph nodes of inguinal region and lower limb|Lymphocyte depleted Hodgkin lymphoma, lymph nodes of inguinal region and lower limb +C4267858|T191|AB|C81.36|ICD10CM|Lymphocyte depleted Hodgkin lymphoma, intrapelv lymph nodes|Lymphocyte depleted Hodgkin lymphoma, intrapelv lymph nodes +C4267858|T191|PT|C81.36|ICD10CM|Lymphocyte depleted Hodgkin lymphoma, intrapelvic lymph nodes|Lymphocyte depleted Hodgkin lymphoma, intrapelvic lymph nodes +C4267859|T191|AB|C81.37|ICD10CM|Lymphocyte depleted Hodgkin lymphoma, spleen|Lymphocyte depleted Hodgkin lymphoma, spleen +C4267859|T191|PT|C81.37|ICD10CM|Lymphocyte depleted Hodgkin lymphoma, spleen|Lymphocyte depleted Hodgkin lymphoma, spleen +C4267860|T191|AB|C81.38|ICD10CM|Lymphocyte depleted Hodgkin lymphoma, lymph nodes mult site|Lymphocyte depleted Hodgkin lymphoma, lymph nodes mult site +C4267860|T191|PT|C81.38|ICD10CM|Lymphocyte depleted Hodgkin lymphoma, lymph nodes of multiple sites|Lymphocyte depleted Hodgkin lymphoma, lymph nodes of multiple sites +C4267861|T191|AB|C81.39|ICD10CM|Lymphocy deplet Hodgkin lymph, extrnod and solid organ sites|Lymphocy deplet Hodgkin lymph, extrnod and solid organ sites +C4267861|T191|PT|C81.39|ICD10CM|Lymphocyte depleted Hodgkin lymphoma, extranodal and solid organ sites|Lymphocyte depleted Hodgkin lymphoma, extranodal and solid organ sites +C1266194|T191|ET|C81.4|ICD10CM|Lymphocyte-rich classical Hodgkin lymphoma|Lymphocyte-rich classical Hodgkin lymphoma +C1266194|T191|AB|C81.4|ICD10CM|Lymphocyte-rich Hodgkin lymphoma|Lymphocyte-rich Hodgkin lymphoma +C1266194|T191|HT|C81.4|ICD10CM|Lymphocyte-rich Hodgkin lymphoma|Lymphocyte-rich Hodgkin lymphoma +C4267862|T191|AB|C81.40|ICD10CM|Lymphocyte-rich Hodgkin lymphoma, unspecified site|Lymphocyte-rich Hodgkin lymphoma, unspecified site +C4267862|T191|PT|C81.40|ICD10CM|Lymphocyte-rich Hodgkin lymphoma, unspecified site|Lymphocyte-rich Hodgkin lymphoma, unspecified site +C4267863|T191|AB|C81.41|ICD10CM|Lymp-rich Hodgkin lymphoma, nodes of head, face, and neck|Lymp-rich Hodgkin lymphoma, nodes of head, face, and neck +C4267863|T191|PT|C81.41|ICD10CM|Lymphocyte-rich Hodgkin lymphoma, lymph nodes of head, face, and neck|Lymphocyte-rich Hodgkin lymphoma, lymph nodes of head, face, and neck +C0153753|T191|AB|C81.42|ICD10CM|Lymphocyte-rich Hodgkin lymphoma, intrathoracic lymph nodes|Lymphocyte-rich Hodgkin lymphoma, intrathoracic lymph nodes +C0153753|T191|PT|C81.42|ICD10CM|Lymphocyte-rich Hodgkin lymphoma, intrathoracic lymph nodes|Lymphocyte-rich Hodgkin lymphoma, intrathoracic lymph nodes +C0153754|T191|AB|C81.43|ICD10CM|Lymphocyte-rich Hodgkin lymphoma, intra-abd lymph nodes|Lymphocyte-rich Hodgkin lymphoma, intra-abd lymph nodes +C0153754|T191|PT|C81.43|ICD10CM|Lymphocyte-rich Hodgkin lymphoma, intra-abdominal lymph nodes|Lymphocyte-rich Hodgkin lymphoma, intra-abdominal lymph nodes +C4267864|T191|AB|C81.44|ICD10CM|Lymp-rich Hodgkin lymphoma, nodes of axilla and upper limb|Lymp-rich Hodgkin lymphoma, nodes of axilla and upper limb +C4267864|T191|PT|C81.44|ICD10CM|Lymphocyte-rich Hodgkin lymphoma, lymph nodes of axilla and upper limb|Lymphocyte-rich Hodgkin lymphoma, lymph nodes of axilla and upper limb +C4267865|T191|AB|C81.45|ICD10CM|Lymp-rich Hodgkin lymph, nodes of ing region and lower limb|Lymp-rich Hodgkin lymph, nodes of ing region and lower limb +C4267865|T191|PT|C81.45|ICD10CM|Lymphocyte-rich Hodgkin lymphoma, lymph nodes of inguinal region and lower limb|Lymphocyte-rich Hodgkin lymphoma, lymph nodes of inguinal region and lower limb +C0153757|T191|AB|C81.46|ICD10CM|Lymphocyte-rich Hodgkin lymphoma, intrapelvic lymph nodes|Lymphocyte-rich Hodgkin lymphoma, intrapelvic lymph nodes +C0153757|T191|PT|C81.46|ICD10CM|Lymphocyte-rich Hodgkin lymphoma, intrapelvic lymph nodes|Lymphocyte-rich Hodgkin lymphoma, intrapelvic lymph nodes +C0153758|T191|AB|C81.47|ICD10CM|Lymphocyte-rich Hodgkin lymphoma, spleen|Lymphocyte-rich Hodgkin lymphoma, spleen +C0153758|T191|PT|C81.47|ICD10CM|Lymphocyte-rich Hodgkin lymphoma, spleen|Lymphocyte-rich Hodgkin lymphoma, spleen +C0153759|T191|AB|C81.48|ICD10CM|Lymphocyte-rich Hodgkin lymphoma, lymph nodes mult site|Lymphocyte-rich Hodgkin lymphoma, lymph nodes mult site +C0153759|T191|PT|C81.48|ICD10CM|Lymphocyte-rich Hodgkin lymphoma, lymph nodes of multiple sites|Lymphocyte-rich Hodgkin lymphoma, lymph nodes of multiple sites +C4267866|T191|AB|C81.49|ICD10CM|Lymp-rich Hodgkin lymphoma, extranodal and solid organ sites|Lymp-rich Hodgkin lymphoma, extranodal and solid organ sites +C4267866|T191|PT|C81.49|ICD10CM|Lymphocyte-rich Hodgkin lymphoma, extranodal and solid organ sites|Lymphocyte-rich Hodgkin lymphoma, extranodal and solid organ sites +C1333064|T191|ET|C81.7|ICD10CM|Classical Hodgkin lymphoma NOS|Classical Hodgkin lymphoma NOS +C2853762|T191|ET|C81.7|ICD10CM|Other classical Hodgkin lymphoma|Other classical Hodgkin lymphoma +C4267867|T191|AB|C81.7|ICD10CM|Other Hodgkin lymphoma|Other Hodgkin lymphoma +C4267867|T191|HT|C81.7|ICD10CM|Other Hodgkin lymphoma|Other Hodgkin lymphoma +C0348387|T191|PT|C81.7|ICD10|Other Hodgkin's disease|Other Hodgkin's disease +C4267868|T191|AB|C81.70|ICD10CM|Other Hodgkin lymphoma, unspecified site|Other Hodgkin lymphoma, unspecified site +C4267868|T191|PT|C81.70|ICD10CM|Other Hodgkin lymphoma, unspecified site|Other Hodgkin lymphoma, unspecified site +C4267869|T191|AB|C81.71|ICD10CM|Other Hodgkin lymphoma, lymph nodes of head, face, and neck|Other Hodgkin lymphoma, lymph nodes of head, face, and neck +C4267869|T191|PT|C81.71|ICD10CM|Other Hodgkin lymphoma, lymph nodes of head, face, and neck|Other Hodgkin lymphoma, lymph nodes of head, face, and neck +C4267870|T191|AB|C81.72|ICD10CM|Other Hodgkin lymphoma, intrathoracic lymph nodes|Other Hodgkin lymphoma, intrathoracic lymph nodes +C4267870|T191|PT|C81.72|ICD10CM|Other Hodgkin lymphoma, intrathoracic lymph nodes|Other Hodgkin lymphoma, intrathoracic lymph nodes +C4267871|T191|AB|C81.73|ICD10CM|Other Hodgkin lymphoma, intra-abdominal lymph nodes|Other Hodgkin lymphoma, intra-abdominal lymph nodes +C4267871|T191|PT|C81.73|ICD10CM|Other Hodgkin lymphoma, intra-abdominal lymph nodes|Other Hodgkin lymphoma, intra-abdominal lymph nodes +C4267872|T191|AB|C81.74|ICD10CM|Other Hodgkin lymphoma, lymph nodes of axilla and upper limb|Other Hodgkin lymphoma, lymph nodes of axilla and upper limb +C4267872|T191|PT|C81.74|ICD10CM|Other Hodgkin lymphoma, lymph nodes of axilla and upper limb|Other Hodgkin lymphoma, lymph nodes of axilla and upper limb +C4267873|T191|PT|C81.75|ICD10CM|Other Hodgkin lymphoma, lymph nodes of inguinal region and lower limb|Other Hodgkin lymphoma, lymph nodes of inguinal region and lower limb +C4267873|T191|AB|C81.75|ICD10CM|Other Hodgkin lymphoma, nodes of ing region and lower limb|Other Hodgkin lymphoma, nodes of ing region and lower limb +C4267874|T191|AB|C81.76|ICD10CM|Other Hodgkin lymphoma, intrapelvic lymph nodes|Other Hodgkin lymphoma, intrapelvic lymph nodes +C4267874|T191|PT|C81.76|ICD10CM|Other Hodgkin lymphoma, intrapelvic lymph nodes|Other Hodgkin lymphoma, intrapelvic lymph nodes +C4267875|T191|AB|C81.77|ICD10CM|Other Hodgkin lymphoma, spleen|Other Hodgkin lymphoma, spleen +C4267875|T191|PT|C81.77|ICD10CM|Other Hodgkin lymphoma, spleen|Other Hodgkin lymphoma, spleen +C4267876|T191|AB|C81.78|ICD10CM|Other Hodgkin lymphoma, lymph nodes of multiple sites|Other Hodgkin lymphoma, lymph nodes of multiple sites +C4267876|T191|PT|C81.78|ICD10CM|Other Hodgkin lymphoma, lymph nodes of multiple sites|Other Hodgkin lymphoma, lymph nodes of multiple sites +C4267877|T191|AB|C81.79|ICD10CM|Other Hodgkin lymphoma, extranodal and solid organ sites|Other Hodgkin lymphoma, extranodal and solid organ sites +C4267877|T191|PT|C81.79|ICD10CM|Other Hodgkin lymphoma, extranodal and solid organ sites|Other Hodgkin lymphoma, extranodal and solid organ sites +C0019829|T191|AB|C81.9|ICD10CM|Hodgkin lymphoma, unspecified|Hodgkin lymphoma, unspecified +C0019829|T191|HT|C81.9|ICD10CM|Hodgkin lymphoma, unspecified|Hodgkin lymphoma, unspecified +C0019829|T191|PT|C81.9|ICD10|Hodgkin's disease, unspecified|Hodgkin's disease, unspecified +C2853774|T191|AB|C81.90|ICD10CM|Hodgkin lymphoma, unspecified, unspecified site|Hodgkin lymphoma, unspecified, unspecified site +C2853774|T191|PT|C81.90|ICD10CM|Hodgkin lymphoma, unspecified, unspecified site|Hodgkin lymphoma, unspecified, unspecified site +C2853775|T191|AB|C81.91|ICD10CM|Hodgkin lymphoma, unsp, lymph nodes of head, face, and neck|Hodgkin lymphoma, unsp, lymph nodes of head, face, and neck +C2853775|T191|PT|C81.91|ICD10CM|Hodgkin lymphoma, unspecified, lymph nodes of head, face, and neck|Hodgkin lymphoma, unspecified, lymph nodes of head, face, and neck +C2853776|T191|AB|C81.92|ICD10CM|Hodgkin lymphoma, unspecified, intrathoracic lymph nodes|Hodgkin lymphoma, unspecified, intrathoracic lymph nodes +C2853776|T191|PT|C81.92|ICD10CM|Hodgkin lymphoma, unspecified, intrathoracic lymph nodes|Hodgkin lymphoma, unspecified, intrathoracic lymph nodes +C2853777|T191|AB|C81.93|ICD10CM|Hodgkin lymphoma, unspecified, intra-abdominal lymph nodes|Hodgkin lymphoma, unspecified, intra-abdominal lymph nodes +C2853777|T191|PT|C81.93|ICD10CM|Hodgkin lymphoma, unspecified, intra-abdominal lymph nodes|Hodgkin lymphoma, unspecified, intra-abdominal lymph nodes +C2853778|T191|AB|C81.94|ICD10CM|Hodgkin lymphoma, unsp, lymph nodes of axilla and upper limb|Hodgkin lymphoma, unsp, lymph nodes of axilla and upper limb +C2853778|T191|PT|C81.94|ICD10CM|Hodgkin lymphoma, unspecified, lymph nodes of axilla and upper limb|Hodgkin lymphoma, unspecified, lymph nodes of axilla and upper limb +C2853779|T191|AB|C81.95|ICD10CM|Hodgkin lymphoma, unsp, nodes of ing region and lower limb|Hodgkin lymphoma, unsp, nodes of ing region and lower limb +C2853779|T191|PT|C81.95|ICD10CM|Hodgkin lymphoma, unspecified, lymph nodes of inguinal region and lower limb|Hodgkin lymphoma, unspecified, lymph nodes of inguinal region and lower limb +C2853780|T191|AB|C81.96|ICD10CM|Hodgkin lymphoma, unspecified, intrapelvic lymph nodes|Hodgkin lymphoma, unspecified, intrapelvic lymph nodes +C2853780|T191|PT|C81.96|ICD10CM|Hodgkin lymphoma, unspecified, intrapelvic lymph nodes|Hodgkin lymphoma, unspecified, intrapelvic lymph nodes +C2853781|T191|AB|C81.97|ICD10CM|Hodgkin lymphoma, unspecified, spleen|Hodgkin lymphoma, unspecified, spleen +C2853781|T191|PT|C81.97|ICD10CM|Hodgkin lymphoma, unspecified, spleen|Hodgkin lymphoma, unspecified, spleen +C2853782|T191|AB|C81.98|ICD10CM|Hodgkin lymphoma, unspecified, lymph nodes of multiple sites|Hodgkin lymphoma, unspecified, lymph nodes of multiple sites +C2853782|T191|PT|C81.98|ICD10CM|Hodgkin lymphoma, unspecified, lymph nodes of multiple sites|Hodgkin lymphoma, unspecified, lymph nodes of multiple sites +C2853783|T191|AB|C81.99|ICD10CM|Hodgkin lymphoma, unsp, extranodal and solid organ sites|Hodgkin lymphoma, unsp, extranodal and solid organ sites +C2853783|T191|PT|C81.99|ICD10CM|Hodgkin lymphoma, unspecified, extranodal and solid organ sites|Hodgkin lymphoma, unspecified, extranodal and solid organ sites +C0024301|T191|HT|C82|ICD10|Follicular [nodular] non-Hodgkin's lymphoma|Follicular [nodular] non-Hodgkin's lymphoma +C0024301|T191|HT|C82|ICD10CM|Follicular lymphoma|Follicular lymphoma +C0024301|T191|AB|C82|ICD10CM|Follicular lymphoma|Follicular lymphoma +C4290073|T191|ET|C82|ICD10CM|follicular lymphoma with or without diffuse areas|follicular lymphoma with or without diffuse areas +C1956130|T191|AB|C82.0|ICD10CM|Follicular lymphoma grade I|Follicular lymphoma grade I +C1956130|T191|HT|C82.0|ICD10CM|Follicular lymphoma grade I|Follicular lymphoma grade I +C1264188|T191|PS|C82.0|ICD10|Small cleaved cell, follicular|Small cleaved cell, follicular +C1264188|T191|PX|C82.0|ICD10|Small cleaved cell, follicular non-Hodgkin's lymphoma|Small cleaved cell, follicular non-Hodgkin's lymphoma +C2853785|T191|AB|C82.00|ICD10CM|Follicular lymphoma grade I, unspecified site|Follicular lymphoma grade I, unspecified site +C2853785|T191|PT|C82.00|ICD10CM|Follicular lymphoma grade I, unspecified site|Follicular lymphoma grade I, unspecified site +C2853786|T191|PT|C82.01|ICD10CM|Follicular lymphoma grade I, lymph nodes of head, face, and neck|Follicular lymphoma grade I, lymph nodes of head, face, and neck +C2853786|T191|AB|C82.01|ICD10CM|Follicular lymphoma grade I, nodes of head, face, and neck|Follicular lymphoma grade I, nodes of head, face, and neck +C2853787|T191|AB|C82.02|ICD10CM|Follicular lymphoma grade I, intrathoracic lymph nodes|Follicular lymphoma grade I, intrathoracic lymph nodes +C2853787|T191|PT|C82.02|ICD10CM|Follicular lymphoma grade I, intrathoracic lymph nodes|Follicular lymphoma grade I, intrathoracic lymph nodes +C2853788|T191|AB|C82.03|ICD10CM|Follicular lymphoma grade I, intra-abdominal lymph nodes|Follicular lymphoma grade I, intra-abdominal lymph nodes +C2853788|T191|PT|C82.03|ICD10CM|Follicular lymphoma grade I, intra-abdominal lymph nodes|Follicular lymphoma grade I, intra-abdominal lymph nodes +C2853789|T191|PT|C82.04|ICD10CM|Follicular lymphoma grade I, lymph nodes of axilla and upper limb|Follicular lymphoma grade I, lymph nodes of axilla and upper limb +C2853789|T191|AB|C82.04|ICD10CM|Follicular lymphoma grade I, nodes of axilla and upper limb|Follicular lymphoma grade I, nodes of axilla and upper limb +C2853790|T191|AB|C82.05|ICD10CM|Foliclar lymph grade I, nodes of ing region and lower limb|Foliclar lymph grade I, nodes of ing region and lower limb +C2853790|T191|PT|C82.05|ICD10CM|Follicular lymphoma grade I, lymph nodes of inguinal region and lower limb|Follicular lymphoma grade I, lymph nodes of inguinal region and lower limb +C2853791|T191|AB|C82.06|ICD10CM|Follicular lymphoma grade I, intrapelvic lymph nodes|Follicular lymphoma grade I, intrapelvic lymph nodes +C2853791|T191|PT|C82.06|ICD10CM|Follicular lymphoma grade I, intrapelvic lymph nodes|Follicular lymphoma grade I, intrapelvic lymph nodes +C2853792|T191|AB|C82.07|ICD10CM|Follicular lymphoma grade I, spleen|Follicular lymphoma grade I, spleen +C2853792|T191|PT|C82.07|ICD10CM|Follicular lymphoma grade I, spleen|Follicular lymphoma grade I, spleen +C2853793|T191|AB|C82.08|ICD10CM|Follicular lymphoma grade I, lymph nodes of multiple sites|Follicular lymphoma grade I, lymph nodes of multiple sites +C2853793|T191|PT|C82.08|ICD10CM|Follicular lymphoma grade I, lymph nodes of multiple sites|Follicular lymphoma grade I, lymph nodes of multiple sites +C2853794|T191|PT|C82.09|ICD10CM|Follicular lymphoma grade I, extranodal and solid organ sites|Follicular lymphoma grade I, extranodal and solid organ sites +C2853794|T191|AB|C82.09|ICD10CM|Follicular lymphoma grade I, extrnod and solid organ sites|Follicular lymphoma grade I, extrnod and solid organ sites +C0079758|T191|AB|C82.1|ICD10CM|Follicular lymphoma grade II|Follicular lymphoma grade II +C0079758|T191|HT|C82.1|ICD10CM|Follicular lymphoma grade II|Follicular lymphoma grade II +C0079758|T191|PS|C82.1|ICD10|Mixed small cleaved and large cell, follicular|Mixed small cleaved and large cell, follicular +C0079758|T191|PX|C82.1|ICD10|Mixed small cleaved and large cell, follicular non-Hodgkin's lymphoma|Mixed small cleaved and large cell, follicular non-Hodgkin's lymphoma +C2853795|T191|AB|C82.10|ICD10CM|Follicular lymphoma grade II, unspecified site|Follicular lymphoma grade II, unspecified site +C2853795|T191|PT|C82.10|ICD10CM|Follicular lymphoma grade II, unspecified site|Follicular lymphoma grade II, unspecified site +C2853796|T191|PT|C82.11|ICD10CM|Follicular lymphoma grade II, lymph nodes of head, face, and neck|Follicular lymphoma grade II, lymph nodes of head, face, and neck +C2853796|T191|AB|C82.11|ICD10CM|Follicular lymphoma grade II, nodes of head, face, and neck|Follicular lymphoma grade II, nodes of head, face, and neck +C2853797|T191|AB|C82.12|ICD10CM|Follicular lymphoma grade II, intrathoracic lymph nodes|Follicular lymphoma grade II, intrathoracic lymph nodes +C2853797|T191|PT|C82.12|ICD10CM|Follicular lymphoma grade II, intrathoracic lymph nodes|Follicular lymphoma grade II, intrathoracic lymph nodes +C2853798|T191|AB|C82.13|ICD10CM|Follicular lymphoma grade II, intra-abdominal lymph nodes|Follicular lymphoma grade II, intra-abdominal lymph nodes +C2853798|T191|PT|C82.13|ICD10CM|Follicular lymphoma grade II, intra-abdominal lymph nodes|Follicular lymphoma grade II, intra-abdominal lymph nodes +C2853799|T191|PT|C82.14|ICD10CM|Follicular lymphoma grade II, lymph nodes of axilla and upper limb|Follicular lymphoma grade II, lymph nodes of axilla and upper limb +C2853799|T191|AB|C82.14|ICD10CM|Follicular lymphoma grade II, nodes of axilla and upper limb|Follicular lymphoma grade II, nodes of axilla and upper limb +C2853800|T191|AB|C82.15|ICD10CM|Foliclar lymph grade II, nodes of ing region and lower limb|Foliclar lymph grade II, nodes of ing region and lower limb +C2853800|T191|PT|C82.15|ICD10CM|Follicular lymphoma grade II, lymph nodes of inguinal region and lower limb|Follicular lymphoma grade II, lymph nodes of inguinal region and lower limb +C2853801|T191|AB|C82.16|ICD10CM|Follicular lymphoma grade II, intrapelvic lymph nodes|Follicular lymphoma grade II, intrapelvic lymph nodes +C2853801|T191|PT|C82.16|ICD10CM|Follicular lymphoma grade II, intrapelvic lymph nodes|Follicular lymphoma grade II, intrapelvic lymph nodes +C2853802|T191|AB|C82.17|ICD10CM|Follicular lymphoma grade II, spleen|Follicular lymphoma grade II, spleen +C2853802|T191|PT|C82.17|ICD10CM|Follicular lymphoma grade II, spleen|Follicular lymphoma grade II, spleen +C2853803|T191|AB|C82.18|ICD10CM|Follicular lymphoma grade II, lymph nodes of multiple sites|Follicular lymphoma grade II, lymph nodes of multiple sites +C2853803|T191|PT|C82.18|ICD10CM|Follicular lymphoma grade II, lymph nodes of multiple sites|Follicular lymphoma grade II, lymph nodes of multiple sites +C2853804|T191|PT|C82.19|ICD10CM|Follicular lymphoma grade II, extranodal and solid organ sites|Follicular lymphoma grade II, extranodal and solid organ sites +C2853804|T191|AB|C82.19|ICD10CM|Follicular lymphoma grade II, extrnod and solid organ sites|Follicular lymphoma grade II, extrnod and solid organ sites +C2853805|T191|AB|C82.2|ICD10CM|Follicular lymphoma grade III, unspecified|Follicular lymphoma grade III, unspecified +C2853805|T191|HT|C82.2|ICD10CM|Follicular lymphoma grade III, unspecified|Follicular lymphoma grade III, unspecified +C0079745|T191|PS|C82.2|ICD10|Large cell, follicular|Large cell, follicular +C1264190|T191|PX|C82.2|ICD10|Large cell, follicular non-Hodgkin's lymphoma|Large cell, follicular non-Hodgkin's lymphoma +C2853806|T191|AB|C82.20|ICD10CM|Follicular lymphoma grade III, unspecified, unspecified site|Follicular lymphoma grade III, unspecified, unspecified site +C2853806|T191|PT|C82.20|ICD10CM|Follicular lymphoma grade III, unspecified, unspecified site|Follicular lymphoma grade III, unspecified, unspecified site +C2853807|T191|AB|C82.21|ICD10CM|Foliclar lymph grade III, unsp, nodes of head, face, and nk|Foliclar lymph grade III, unsp, nodes of head, face, and nk +C2853807|T191|PT|C82.21|ICD10CM|Follicular lymphoma grade III, unspecified, lymph nodes of head, face, and neck|Follicular lymphoma grade III, unspecified, lymph nodes of head, face, and neck +C2853808|T191|AB|C82.22|ICD10CM|Follicular lymphoma grade III, unsp, intrathorac lymph nodes|Follicular lymphoma grade III, unsp, intrathorac lymph nodes +C2853808|T191|PT|C82.22|ICD10CM|Follicular lymphoma grade III, unspecified, intrathoracic lymph nodes|Follicular lymphoma grade III, unspecified, intrathoracic lymph nodes +C2853809|T191|AB|C82.23|ICD10CM|Follicular lymphoma grade III, unsp, intra-abd lymph nodes|Follicular lymphoma grade III, unsp, intra-abd lymph nodes +C2853809|T191|PT|C82.23|ICD10CM|Follicular lymphoma grade III, unspecified, intra-abdominal lymph nodes|Follicular lymphoma grade III, unspecified, intra-abdominal lymph nodes +C2853810|T191|AB|C82.24|ICD10CM|Foliclar lymph grade III, unsp, nodes of axla and upper limb|Foliclar lymph grade III, unsp, nodes of axla and upper limb +C2853810|T191|PT|C82.24|ICD10CM|Follicular lymphoma grade III, unspecified, lymph nodes of axilla and upper limb|Follicular lymphoma grade III, unspecified, lymph nodes of axilla and upper limb +C2853811|T191|AB|C82.25|ICD10CM|Foliclar lymph grade III, unsp, nodes of ing rgn and low lmb|Foliclar lymph grade III, unsp, nodes of ing rgn and low lmb +C2853811|T191|PT|C82.25|ICD10CM|Follicular lymphoma grade III, unspecified, lymph nodes of inguinal region and lower limb|Follicular lymphoma grade III, unspecified, lymph nodes of inguinal region and lower limb +C2853812|T191|AB|C82.26|ICD10CM|Follicular lymphoma grade III, unsp, intrapelvic lymph nodes|Follicular lymphoma grade III, unsp, intrapelvic lymph nodes +C2853812|T191|PT|C82.26|ICD10CM|Follicular lymphoma grade III, unspecified, intrapelvic lymph nodes|Follicular lymphoma grade III, unspecified, intrapelvic lymph nodes +C2853813|T191|AB|C82.27|ICD10CM|Follicular lymphoma grade III, unspecified, spleen|Follicular lymphoma grade III, unspecified, spleen +C2853813|T191|PT|C82.27|ICD10CM|Follicular lymphoma grade III, unspecified, spleen|Follicular lymphoma grade III, unspecified, spleen +C2853814|T191|AB|C82.28|ICD10CM|Follicular lymphoma grade III, unsp, lymph nodes mult site|Follicular lymphoma grade III, unsp, lymph nodes mult site +C2853814|T191|PT|C82.28|ICD10CM|Follicular lymphoma grade III, unspecified, lymph nodes of multiple sites|Follicular lymphoma grade III, unspecified, lymph nodes of multiple sites +C2853815|T191|AB|C82.29|ICD10CM|Foliclar lymph grade III, unsp, extrnod and solid org sites|Foliclar lymph grade III, unsp, extrnod and solid org sites +C2853815|T191|PT|C82.29|ICD10CM|Follicular lymphoma grade III, unspecified, extranodal and solid organ sites|Follicular lymphoma grade III, unspecified, extranodal and solid organ sites +C1333846|T191|AB|C82.3|ICD10CM|Follicular lymphoma grade IIIa|Follicular lymphoma grade IIIa +C1333846|T191|HT|C82.3|ICD10CM|Follicular lymphoma grade IIIa|Follicular lymphoma grade IIIa +C2853817|T191|AB|C82.30|ICD10CM|Follicular lymphoma grade IIIa, unspecified site|Follicular lymphoma grade IIIa, unspecified site +C2853817|T191|PT|C82.30|ICD10CM|Follicular lymphoma grade IIIa, unspecified site|Follicular lymphoma grade IIIa, unspecified site +C2853818|T191|AB|C82.31|ICD10CM|Foliclar lymphoma grade IIIa, nodes of head, face, and neck|Foliclar lymphoma grade IIIa, nodes of head, face, and neck +C2853818|T191|PT|C82.31|ICD10CM|Follicular lymphoma grade IIIa, lymph nodes of head, face, and neck|Follicular lymphoma grade IIIa, lymph nodes of head, face, and neck +C2853819|T191|AB|C82.32|ICD10CM|Follicular lymphoma grade IIIa, intrathoracic lymph nodes|Follicular lymphoma grade IIIa, intrathoracic lymph nodes +C2853819|T191|PT|C82.32|ICD10CM|Follicular lymphoma grade IIIa, intrathoracic lymph nodes|Follicular lymphoma grade IIIa, intrathoracic lymph nodes +C2853820|T191|AB|C82.33|ICD10CM|Follicular lymphoma grade IIIa, intra-abdominal lymph nodes|Follicular lymphoma grade IIIa, intra-abdominal lymph nodes +C2853820|T191|PT|C82.33|ICD10CM|Follicular lymphoma grade IIIa, intra-abdominal lymph nodes|Follicular lymphoma grade IIIa, intra-abdominal lymph nodes +C2853821|T191|AB|C82.34|ICD10CM|Foliclar lymphoma grade IIIa, nodes of axilla and upper limb|Foliclar lymphoma grade IIIa, nodes of axilla and upper limb +C2853821|T191|PT|C82.34|ICD10CM|Follicular lymphoma grade IIIa, lymph nodes of axilla and upper limb|Follicular lymphoma grade IIIa, lymph nodes of axilla and upper limb +C2853822|T191|AB|C82.35|ICD10CM|Foliclar lymph grade IIIa, nodes of ing rgn and lower limb|Foliclar lymph grade IIIa, nodes of ing rgn and lower limb +C2853822|T191|PT|C82.35|ICD10CM|Follicular lymphoma grade IIIa, lymph nodes of inguinal region and lower limb|Follicular lymphoma grade IIIa, lymph nodes of inguinal region and lower limb +C2853823|T191|AB|C82.36|ICD10CM|Follicular lymphoma grade IIIa, intrapelvic lymph nodes|Follicular lymphoma grade IIIa, intrapelvic lymph nodes +C2853823|T191|PT|C82.36|ICD10CM|Follicular lymphoma grade IIIa, intrapelvic lymph nodes|Follicular lymphoma grade IIIa, intrapelvic lymph nodes +C2853824|T191|AB|C82.37|ICD10CM|Follicular lymphoma grade IIIa, spleen|Follicular lymphoma grade IIIa, spleen +C2853824|T191|PT|C82.37|ICD10CM|Follicular lymphoma grade IIIa, spleen|Follicular lymphoma grade IIIa, spleen +C2853825|T191|AB|C82.38|ICD10CM|Follicular lymphoma grade IIIa, lymph nodes mult site|Follicular lymphoma grade IIIa, lymph nodes mult site +C2853825|T191|PT|C82.38|ICD10CM|Follicular lymphoma grade IIIa, lymph nodes of multiple sites|Follicular lymphoma grade IIIa, lymph nodes of multiple sites +C2853826|T191|AB|C82.39|ICD10CM|Foliclar lymphoma grade IIIa, extrnod and solid organ sites|Foliclar lymphoma grade IIIa, extrnod and solid organ sites +C2853826|T191|PT|C82.39|ICD10CM|Follicular lymphoma grade IIIa, extranodal and solid organ sites|Follicular lymphoma grade IIIa, extranodal and solid organ sites +C2853827|T191|AB|C82.4|ICD10CM|Follicular lymphoma grade IIIb|Follicular lymphoma grade IIIb +C2853827|T191|HT|C82.4|ICD10CM|Follicular lymphoma grade IIIb|Follicular lymphoma grade IIIb +C2853828|T191|AB|C82.40|ICD10CM|Follicular lymphoma grade IIIb, unspecified site|Follicular lymphoma grade IIIb, unspecified site +C2853828|T191|PT|C82.40|ICD10CM|Follicular lymphoma grade IIIb, unspecified site|Follicular lymphoma grade IIIb, unspecified site +C2853829|T191|AB|C82.41|ICD10CM|Foliclar lymphoma grade IIIb, nodes of head, face, and neck|Foliclar lymphoma grade IIIb, nodes of head, face, and neck +C2853829|T191|PT|C82.41|ICD10CM|Follicular lymphoma grade IIIb, lymph nodes of head, face, and neck|Follicular lymphoma grade IIIb, lymph nodes of head, face, and neck +C2853830|T191|AB|C82.42|ICD10CM|Follicular lymphoma grade IIIb, intrathoracic lymph nodes|Follicular lymphoma grade IIIb, intrathoracic lymph nodes +C2853830|T191|PT|C82.42|ICD10CM|Follicular lymphoma grade IIIb, intrathoracic lymph nodes|Follicular lymphoma grade IIIb, intrathoracic lymph nodes +C2853831|T191|AB|C82.43|ICD10CM|Follicular lymphoma grade IIIb, intra-abdominal lymph nodes|Follicular lymphoma grade IIIb, intra-abdominal lymph nodes +C2853831|T191|PT|C82.43|ICD10CM|Follicular lymphoma grade IIIb, intra-abdominal lymph nodes|Follicular lymphoma grade IIIb, intra-abdominal lymph nodes +C2853832|T191|AB|C82.44|ICD10CM|Foliclar lymphoma grade IIIb, nodes of axilla and upper limb|Foliclar lymphoma grade IIIb, nodes of axilla and upper limb +C2853832|T191|PT|C82.44|ICD10CM|Follicular lymphoma grade IIIb, lymph nodes of axilla and upper limb|Follicular lymphoma grade IIIb, lymph nodes of axilla and upper limb +C2853833|T191|AB|C82.45|ICD10CM|Foliclar lymph grade IIIb, nodes of ing rgn and lower limb|Foliclar lymph grade IIIb, nodes of ing rgn and lower limb +C2853833|T191|PT|C82.45|ICD10CM|Follicular lymphoma grade IIIb, lymph nodes of inguinal region and lower limb|Follicular lymphoma grade IIIb, lymph nodes of inguinal region and lower limb +C2853834|T191|AB|C82.46|ICD10CM|Follicular lymphoma grade IIIb, intrapelvic lymph nodes|Follicular lymphoma grade IIIb, intrapelvic lymph nodes +C2853834|T191|PT|C82.46|ICD10CM|Follicular lymphoma grade IIIb, intrapelvic lymph nodes|Follicular lymphoma grade IIIb, intrapelvic lymph nodes +C2853835|T191|AB|C82.47|ICD10CM|Follicular lymphoma grade IIIb, spleen|Follicular lymphoma grade IIIb, spleen +C2853835|T191|PT|C82.47|ICD10CM|Follicular lymphoma grade IIIb, spleen|Follicular lymphoma grade IIIb, spleen +C2853836|T191|AB|C82.48|ICD10CM|Follicular lymphoma grade IIIb, lymph nodes mult site|Follicular lymphoma grade IIIb, lymph nodes mult site +C2853836|T191|PT|C82.48|ICD10CM|Follicular lymphoma grade IIIb, lymph nodes of multiple sites|Follicular lymphoma grade IIIb, lymph nodes of multiple sites +C2853837|T191|AB|C82.49|ICD10CM|Foliclar lymphoma grade IIIb, extrnod and solid organ sites|Foliclar lymphoma grade IIIb, extrnod and solid organ sites +C2853837|T191|PT|C82.49|ICD10CM|Follicular lymphoma grade IIIb, extranodal and solid organ sites|Follicular lymphoma grade IIIb, extranodal and solid organ sites +C1333290|T191|HT|C82.5|ICD10CM|Diffuse follicle center lymphoma|Diffuse follicle center lymphoma +C1333290|T191|AB|C82.5|ICD10CM|Diffuse follicle center lymphoma|Diffuse follicle center lymphoma +C2853838|T191|AB|C82.50|ICD10CM|Diffuse follicle center lymphoma, unspecified site|Diffuse follicle center lymphoma, unspecified site +C2853838|T191|PT|C82.50|ICD10CM|Diffuse follicle center lymphoma, unspecified site|Diffuse follicle center lymphoma, unspecified site +C3648005|T191|AB|C82.51|ICD10CM|Diffuse folicl center lymph, nodes of head, face, and neck|Diffuse folicl center lymph, nodes of head, face, and neck +C3648005|T191|PT|C82.51|ICD10CM|Diffuse follicle center lymphoma, lymph nodes of head, face, and neck|Diffuse follicle center lymphoma, lymph nodes of head, face, and neck +C2853840|T191|AB|C82.52|ICD10CM|Diffuse follicle center lymphoma, intrathoracic lymph nodes|Diffuse follicle center lymphoma, intrathoracic lymph nodes +C2853840|T191|PT|C82.52|ICD10CM|Diffuse follicle center lymphoma, intrathoracic lymph nodes|Diffuse follicle center lymphoma, intrathoracic lymph nodes +C2853841|T191|AB|C82.53|ICD10CM|Diffuse follicle center lymphoma, intra-abd lymph nodes|Diffuse follicle center lymphoma, intra-abd lymph nodes +C2853841|T191|PT|C82.53|ICD10CM|Diffuse follicle center lymphoma, intra-abdominal lymph nodes|Diffuse follicle center lymphoma, intra-abdominal lymph nodes +C2853842|T191|AB|C82.54|ICD10CM|Diffuse folicl center lymph, nodes of axilla and upper limb|Diffuse folicl center lymph, nodes of axilla and upper limb +C2853842|T191|PT|C82.54|ICD10CM|Diffuse follicle center lymphoma, lymph nodes of axilla and upper limb|Diffuse follicle center lymphoma, lymph nodes of axilla and upper limb +C2853843|T191|AB|C82.55|ICD10CM|Diffus folicl cntr lymph, nodes of ing region and lower limb|Diffus folicl cntr lymph, nodes of ing region and lower limb +C2853843|T191|PT|C82.55|ICD10CM|Diffuse follicle center lymphoma, lymph nodes of inguinal region and lower limb|Diffuse follicle center lymphoma, lymph nodes of inguinal region and lower limb +C2853844|T191|AB|C82.56|ICD10CM|Diffuse follicle center lymphoma, intrapelvic lymph nodes|Diffuse follicle center lymphoma, intrapelvic lymph nodes +C2853844|T191|PT|C82.56|ICD10CM|Diffuse follicle center lymphoma, intrapelvic lymph nodes|Diffuse follicle center lymphoma, intrapelvic lymph nodes +C2853845|T191|AB|C82.57|ICD10CM|Diffuse follicle center lymphoma, spleen|Diffuse follicle center lymphoma, spleen +C2853845|T191|PT|C82.57|ICD10CM|Diffuse follicle center lymphoma, spleen|Diffuse follicle center lymphoma, spleen +C2853846|T191|AB|C82.58|ICD10CM|Diffuse follicle center lymphoma, lymph nodes mult site|Diffuse follicle center lymphoma, lymph nodes mult site +C2853846|T191|PT|C82.58|ICD10CM|Diffuse follicle center lymphoma, lymph nodes of multiple sites|Diffuse follicle center lymphoma, lymph nodes of multiple sites +C2853847|T191|AB|C82.59|ICD10CM|Diffuse folicl center lymph, extrnod and solid organ sites|Diffuse folicl center lymph, extrnod and solid organ sites +C2853847|T191|PT|C82.59|ICD10CM|Diffuse follicle center lymphoma, extranodal and solid organ sites|Diffuse follicle center lymphoma, extranodal and solid organ sites +C2853848|T191|HT|C82.6|ICD10CM|Cutaneous follicle center lymphoma|Cutaneous follicle center lymphoma +C2853848|T191|AB|C82.6|ICD10CM|Cutaneous follicle center lymphoma|Cutaneous follicle center lymphoma +C2853849|T191|AB|C82.60|ICD10CM|Cutaneous follicle center lymphoma, unspecified site|Cutaneous follicle center lymphoma, unspecified site +C2853849|T191|PT|C82.60|ICD10CM|Cutaneous follicle center lymphoma, unspecified site|Cutaneous follicle center lymphoma, unspecified site +C3648011|T191|AB|C82.61|ICD10CM|Cutan folicl center lymphoma, nodes of head, face, and neck|Cutan folicl center lymphoma, nodes of head, face, and neck +C3648011|T191|PT|C82.61|ICD10CM|Cutaneous follicle center lymphoma, lymph nodes of head, face, and neck|Cutaneous follicle center lymphoma, lymph nodes of head, face, and neck +C3648008|T191|AB|C82.62|ICD10CM|Cutaneous follicle center lymphoma, intrathorac lymph nodes|Cutaneous follicle center lymphoma, intrathorac lymph nodes +C3648008|T191|PT|C82.62|ICD10CM|Cutaneous follicle center lymphoma, intrathoracic lymph nodes|Cutaneous follicle center lymphoma, intrathoracic lymph nodes +C3648010|T191|AB|C82.63|ICD10CM|Cutaneous follicle center lymphoma, intra-abd lymph nodes|Cutaneous follicle center lymphoma, intra-abd lymph nodes +C3648010|T191|PT|C82.63|ICD10CM|Cutaneous follicle center lymphoma, intra-abdominal lymph nodes|Cutaneous follicle center lymphoma, intra-abdominal lymph nodes +C3648034|T191|AB|C82.64|ICD10CM|Cutan folicl center lymphoma, nodes of axilla and upper limb|Cutan folicl center lymphoma, nodes of axilla and upper limb +C3648034|T191|PT|C82.64|ICD10CM|Cutaneous follicle center lymphoma, lymph nodes of axilla and upper limb|Cutaneous follicle center lymphoma, lymph nodes of axilla and upper limb +C3648033|T191|AB|C82.65|ICD10CM|Cutan folicl cntr lymph, nodes of ing region and lower limb|Cutan folicl cntr lymph, nodes of ing region and lower limb +C3648033|T191|PT|C82.65|ICD10CM|Cutaneous follicle center lymphoma, lymph nodes of inguinal region and lower limb|Cutaneous follicle center lymphoma, lymph nodes of inguinal region and lower limb +C3648009|T191|AB|C82.66|ICD10CM|Cutaneous follicle center lymphoma, intrapelvic lymph nodes|Cutaneous follicle center lymphoma, intrapelvic lymph nodes +C3648009|T191|PT|C82.66|ICD10CM|Cutaneous follicle center lymphoma, intrapelvic lymph nodes|Cutaneous follicle center lymphoma, intrapelvic lymph nodes +C2853856|T191|AB|C82.67|ICD10CM|Cutaneous follicle center lymphoma, spleen|Cutaneous follicle center lymphoma, spleen +C2853856|T191|PT|C82.67|ICD10CM|Cutaneous follicle center lymphoma, spleen|Cutaneous follicle center lymphoma, spleen +C2853857|T191|AB|C82.68|ICD10CM|Cutaneous follicle center lymphoma, lymph nodes mult site|Cutaneous follicle center lymphoma, lymph nodes mult site +C2853857|T191|PT|C82.68|ICD10CM|Cutaneous follicle center lymphoma, lymph nodes of multiple sites|Cutaneous follicle center lymphoma, lymph nodes of multiple sites +C3647898|T191|AB|C82.69|ICD10CM|Cutan folicl center lymphoma, extrnod and solid organ sites|Cutan folicl center lymphoma, extrnod and solid organ sites +C3647898|T191|PT|C82.69|ICD10CM|Cutaneous follicle center lymphoma, extranodal and solid organ sites|Cutaneous follicle center lymphoma, extranodal and solid organ sites +C0348388|T191|PT|C82.7|ICD10|Other types of follicular non-Hodgkin's lymphoma|Other types of follicular non-Hodgkin's lymphoma +C2853859|T191|AB|C82.8|ICD10CM|Other types of follicular lymphoma|Other types of follicular lymphoma +C2853859|T191|HT|C82.8|ICD10CM|Other types of follicular lymphoma|Other types of follicular lymphoma +C2853860|T191|AB|C82.80|ICD10CM|Other types of follicular lymphoma, unspecified site|Other types of follicular lymphoma, unspecified site +C2853860|T191|PT|C82.80|ICD10CM|Other types of follicular lymphoma, unspecified site|Other types of follicular lymphoma, unspecified site +C2853861|T191|AB|C82.81|ICD10CM|Oth types of foliclar lymph, nodes of head, face, and neck|Oth types of foliclar lymph, nodes of head, face, and neck +C2853861|T191|PT|C82.81|ICD10CM|Other types of follicular lymphoma, lymph nodes of head, face, and neck|Other types of follicular lymphoma, lymph nodes of head, face, and neck +C2853862|T191|AB|C82.82|ICD10CM|Oth types of follicular lymphoma, intrathoracic lymph nodes|Oth types of follicular lymphoma, intrathoracic lymph nodes +C2853862|T191|PT|C82.82|ICD10CM|Other types of follicular lymphoma, intrathoracic lymph nodes|Other types of follicular lymphoma, intrathoracic lymph nodes +C2853863|T191|AB|C82.83|ICD10CM|Oth types of follicular lymphoma, intra-abd lymph nodes|Oth types of follicular lymphoma, intra-abd lymph nodes +C2853863|T191|PT|C82.83|ICD10CM|Other types of follicular lymphoma, intra-abdominal lymph nodes|Other types of follicular lymphoma, intra-abdominal lymph nodes +C2853864|T191|AB|C82.84|ICD10CM|Oth types of foliclar lymph, nodes of axilla and upper limb|Oth types of foliclar lymph, nodes of axilla and upper limb +C2853864|T191|PT|C82.84|ICD10CM|Other types of follicular lymphoma, lymph nodes of axilla and upper limb|Other types of follicular lymphoma, lymph nodes of axilla and upper limb +C2853865|T191|AB|C82.85|ICD10CM|Oth types of foliclar lymph, nodes of ing rgn and lower limb|Oth types of foliclar lymph, nodes of ing rgn and lower limb +C2853865|T191|PT|C82.85|ICD10CM|Other types of follicular lymphoma, lymph nodes of inguinal region and lower limb|Other types of follicular lymphoma, lymph nodes of inguinal region and lower limb +C2853866|T191|AB|C82.86|ICD10CM|Other types of follicular lymphoma, intrapelvic lymph nodes|Other types of follicular lymphoma, intrapelvic lymph nodes +C2853866|T191|PT|C82.86|ICD10CM|Other types of follicular lymphoma, intrapelvic lymph nodes|Other types of follicular lymphoma, intrapelvic lymph nodes +C2853867|T191|AB|C82.87|ICD10CM|Other types of follicular lymphoma, spleen|Other types of follicular lymphoma, spleen +C2853867|T191|PT|C82.87|ICD10CM|Other types of follicular lymphoma, spleen|Other types of follicular lymphoma, spleen +C2853868|T191|AB|C82.88|ICD10CM|Oth types of follicular lymphoma, lymph nodes mult site|Oth types of follicular lymphoma, lymph nodes mult site +C2853868|T191|PT|C82.88|ICD10CM|Other types of follicular lymphoma, lymph nodes of multiple sites|Other types of follicular lymphoma, lymph nodes of multiple sites +C2853869|T191|AB|C82.89|ICD10CM|Oth types of foliclar lymph, extrnod and solid organ sites|Oth types of foliclar lymph, extrnod and solid organ sites +C2853869|T191|PT|C82.89|ICD10CM|Other types of follicular lymphoma, extranodal and solid organ sites|Other types of follicular lymphoma, extranodal and solid organ sites +C0024301|T191|AB|C82.9|ICD10CM|Follicular lymphoma, unspecified|Follicular lymphoma, unspecified +C0024301|T191|HT|C82.9|ICD10CM|Follicular lymphoma, unspecified|Follicular lymphoma, unspecified +C0024301|T191|PT|C82.9|ICD10|Follicular non-Hodgkin's lymphoma, unspecified|Follicular non-Hodgkin's lymphoma, unspecified +C2853871|T191|AB|C82.90|ICD10CM|Follicular lymphoma, unspecified, unspecified site|Follicular lymphoma, unspecified, unspecified site +C2853871|T191|PT|C82.90|ICD10CM|Follicular lymphoma, unspecified, unspecified site|Follicular lymphoma, unspecified, unspecified site +C2853872|T191|AB|C82.91|ICD10CM|Follicular lymphoma, unsp, nodes of head, face, and neck|Follicular lymphoma, unsp, nodes of head, face, and neck +C2853872|T191|PT|C82.91|ICD10CM|Follicular lymphoma, unspecified, lymph nodes of head, face, and neck|Follicular lymphoma, unspecified, lymph nodes of head, face, and neck +C2853873|T191|AB|C82.92|ICD10CM|Follicular lymphoma, unspecified, intrathoracic lymph nodes|Follicular lymphoma, unspecified, intrathoracic lymph nodes +C2853873|T191|PT|C82.92|ICD10CM|Follicular lymphoma, unspecified, intrathoracic lymph nodes|Follicular lymphoma, unspecified, intrathoracic lymph nodes +C2853874|T191|AB|C82.93|ICD10CM|Follicular lymphoma, unsp, intra-abdominal lymph nodes|Follicular lymphoma, unsp, intra-abdominal lymph nodes +C2853874|T191|PT|C82.93|ICD10CM|Follicular lymphoma, unspecified, intra-abdominal lymph nodes|Follicular lymphoma, unspecified, intra-abdominal lymph nodes +C2853875|T191|AB|C82.94|ICD10CM|Follicular lymphoma, unsp, nodes of axilla and upper limb|Follicular lymphoma, unsp, nodes of axilla and upper limb +C2853875|T191|PT|C82.94|ICD10CM|Follicular lymphoma, unspecified, lymph nodes of axilla and upper limb|Follicular lymphoma, unspecified, lymph nodes of axilla and upper limb +C2853876|T191|AB|C82.95|ICD10CM|Foliclar lymphoma, unsp, nodes of ing region and lower limb|Foliclar lymphoma, unsp, nodes of ing region and lower limb +C2853876|T191|PT|C82.95|ICD10CM|Follicular lymphoma, unspecified, lymph nodes of inguinal region and lower limb|Follicular lymphoma, unspecified, lymph nodes of inguinal region and lower limb +C2853877|T191|AB|C82.96|ICD10CM|Follicular lymphoma, unspecified, intrapelvic lymph nodes|Follicular lymphoma, unspecified, intrapelvic lymph nodes +C2853877|T191|PT|C82.96|ICD10CM|Follicular lymphoma, unspecified, intrapelvic lymph nodes|Follicular lymphoma, unspecified, intrapelvic lymph nodes +C2853878|T191|AB|C82.97|ICD10CM|Follicular lymphoma, unspecified, spleen|Follicular lymphoma, unspecified, spleen +C2853878|T191|PT|C82.97|ICD10CM|Follicular lymphoma, unspecified, spleen|Follicular lymphoma, unspecified, spleen +C2853879|T191|AB|C82.98|ICD10CM|Follicular lymphoma, unsp, lymph nodes of multiple sites|Follicular lymphoma, unsp, lymph nodes of multiple sites +C2853879|T191|PT|C82.98|ICD10CM|Follicular lymphoma, unspecified, lymph nodes of multiple sites|Follicular lymphoma, unspecified, lymph nodes of multiple sites +C2853880|T191|AB|C82.99|ICD10CM|Follicular lymphoma, unsp, extranodal and solid organ sites|Follicular lymphoma, unsp, extranodal and solid organ sites +C2853880|T191|PT|C82.99|ICD10CM|Follicular lymphoma, unspecified, extranodal and solid organ sites|Follicular lymphoma, unspecified, extranodal and solid organ sites +C0348394|T191|HT|C83|ICD10|Diffuse non-Hodgkin's lymphoma|Diffuse non-Hodgkin's lymphoma +C2853945|T191|AB|C83|ICD10CM|Non-follicular lymphoma|Non-follicular lymphoma +C2853945|T191|HT|C83|ICD10CM|Non-follicular lymphoma|Non-follicular lymphoma +C0334633|T191|ET|C83.0|ICD10CM|Lymphoplasmacytic lymphoma|Lymphoplasmacytic lymphoma +C0855139|T191|ET|C83.0|ICD10CM|Nodal marginal zone lymphoma|Nodal marginal zone lymphoma +C2853882|T191|ET|C83.0|ICD10CM|Non-leukemic variant of B-CLL|Non-leukemic variant of B-CLL +C1264187|T191|PS|C83.0|ICD10|Small cell (diffuse)|Small cell (diffuse) +C1264187|T191|PX|C83.0|ICD10|Small cell (diffuse) non-Hodgkin's lymphoma|Small cell (diffuse) non-Hodgkin's lymphoma +C2853883|T191|AB|C83.0|ICD10CM|Small cell B-cell lymphoma|Small cell B-cell lymphoma +C2853883|T191|HT|C83.0|ICD10CM|Small cell B-cell lymphoma|Small cell B-cell lymphoma +C0349632|T191|ET|C83.0|ICD10CM|Splenic marginal zone lymphoma|Splenic marginal zone lymphoma +C2853884|T191|AB|C83.00|ICD10CM|Small cell B-cell lymphoma, unspecified site|Small cell B-cell lymphoma, unspecified site +C2853884|T191|PT|C83.00|ICD10CM|Small cell B-cell lymphoma, unspecified site|Small cell B-cell lymphoma, unspecified site +C2853885|T191|PT|C83.01|ICD10CM|Small cell B-cell lymphoma, lymph nodes of head, face, and neck|Small cell B-cell lymphoma, lymph nodes of head, face, and neck +C2853885|T191|AB|C83.01|ICD10CM|Small cell B-cell lymphoma, nodes of head, face, and neck|Small cell B-cell lymphoma, nodes of head, face, and neck +C2853886|T191|AB|C83.02|ICD10CM|Small cell B-cell lymphoma, intrathoracic lymph nodes|Small cell B-cell lymphoma, intrathoracic lymph nodes +C2853886|T191|PT|C83.02|ICD10CM|Small cell B-cell lymphoma, intrathoracic lymph nodes|Small cell B-cell lymphoma, intrathoracic lymph nodes +C2853887|T191|AB|C83.03|ICD10CM|Small cell B-cell lymphoma, intra-abdominal lymph nodes|Small cell B-cell lymphoma, intra-abdominal lymph nodes +C2853887|T191|PT|C83.03|ICD10CM|Small cell B-cell lymphoma, intra-abdominal lymph nodes|Small cell B-cell lymphoma, intra-abdominal lymph nodes +C2853888|T191|PT|C83.04|ICD10CM|Small cell B-cell lymphoma, lymph nodes of axilla and upper limb|Small cell B-cell lymphoma, lymph nodes of axilla and upper limb +C2853888|T191|AB|C83.04|ICD10CM|Small cell B-cell lymphoma, nodes of axilla and upper limb|Small cell B-cell lymphoma, nodes of axilla and upper limb +C2853889|T191|AB|C83.05|ICD10CM|Small cell B-cell lymph, nodes of ing region and lower limb|Small cell B-cell lymph, nodes of ing region and lower limb +C2853889|T191|PT|C83.05|ICD10CM|Small cell B-cell lymphoma, lymph nodes of inguinal region and lower limb|Small cell B-cell lymphoma, lymph nodes of inguinal region and lower limb +C2853890|T191|AB|C83.06|ICD10CM|Small cell B-cell lymphoma, intrapelvic lymph nodes|Small cell B-cell lymphoma, intrapelvic lymph nodes +C2853890|T191|PT|C83.06|ICD10CM|Small cell B-cell lymphoma, intrapelvic lymph nodes|Small cell B-cell lymphoma, intrapelvic lymph nodes +C2853891|T191|AB|C83.07|ICD10CM|Small cell B-cell lymphoma, spleen|Small cell B-cell lymphoma, spleen +C2853891|T191|PT|C83.07|ICD10CM|Small cell B-cell lymphoma, spleen|Small cell B-cell lymphoma, spleen +C2853892|T191|AB|C83.08|ICD10CM|Small cell B-cell lymphoma, lymph nodes of multiple sites|Small cell B-cell lymphoma, lymph nodes of multiple sites +C2853892|T191|PT|C83.08|ICD10CM|Small cell B-cell lymphoma, lymph nodes of multiple sites|Small cell B-cell lymphoma, lymph nodes of multiple sites +C2853893|T191|AB|C83.09|ICD10CM|Small cell B-cell lymphoma, extranodal and solid organ sites|Small cell B-cell lymphoma, extranodal and solid organ sites +C2853893|T191|PT|C83.09|ICD10CM|Small cell B-cell lymphoma, extranodal and solid organ sites|Small cell B-cell lymphoma, extranodal and solid organ sites +C1392224|T191|ET|C83.1|ICD10CM|Centrocytic lymphoma|Centrocytic lymphoma +C0334638|T191|ET|C83.1|ICD10CM|Malignant lymphomatous polyposis|Malignant lymphomatous polyposis +C4721414|T191|HT|C83.1|ICD10CM|Mantle cell lymphoma|Mantle cell lymphoma +C4721414|T191|AB|C83.1|ICD10CM|Mantle cell lymphoma|Mantle cell lymphoma +C0024305|T191|PS|C83.1|ICD10|Small cleaved cell (diffuse)|Small cleaved cell (diffuse) +C0024305|T191|PX|C83.1|ICD10|Small cleaved cell (diffuse) non-Hodgkin's lymphoma|Small cleaved cell (diffuse) non-Hodgkin's lymphoma +C2853894|T191|AB|C83.10|ICD10CM|Mantle cell lymphoma, unspecified site|Mantle cell lymphoma, unspecified site +C2853894|T191|PT|C83.10|ICD10CM|Mantle cell lymphoma, unspecified site|Mantle cell lymphoma, unspecified site +C2853895|T191|AB|C83.11|ICD10CM|Mantle cell lymphoma, lymph nodes of head, face, and neck|Mantle cell lymphoma, lymph nodes of head, face, and neck +C2853895|T191|PT|C83.11|ICD10CM|Mantle cell lymphoma, lymph nodes of head, face, and neck|Mantle cell lymphoma, lymph nodes of head, face, and neck +C2853896|T191|AB|C83.12|ICD10CM|Mantle cell lymphoma, intrathoracic lymph nodes|Mantle cell lymphoma, intrathoracic lymph nodes +C2853896|T191|PT|C83.12|ICD10CM|Mantle cell lymphoma, intrathoracic lymph nodes|Mantle cell lymphoma, intrathoracic lymph nodes +C2853897|T191|AB|C83.13|ICD10CM|Mantle cell lymphoma, intra-abdominal lymph nodes|Mantle cell lymphoma, intra-abdominal lymph nodes +C2853897|T191|PT|C83.13|ICD10CM|Mantle cell lymphoma, intra-abdominal lymph nodes|Mantle cell lymphoma, intra-abdominal lymph nodes +C2853898|T191|AB|C83.14|ICD10CM|Mantle cell lymphoma, lymph nodes of axilla and upper limb|Mantle cell lymphoma, lymph nodes of axilla and upper limb +C2853898|T191|PT|C83.14|ICD10CM|Mantle cell lymphoma, lymph nodes of axilla and upper limb|Mantle cell lymphoma, lymph nodes of axilla and upper limb +C2853899|T191|PT|C83.15|ICD10CM|Mantle cell lymphoma, lymph nodes of inguinal region and lower limb|Mantle cell lymphoma, lymph nodes of inguinal region and lower limb +C2853899|T191|AB|C83.15|ICD10CM|Mantle cell lymphoma, nodes of ing region and lower limb|Mantle cell lymphoma, nodes of ing region and lower limb +C2853900|T191|AB|C83.16|ICD10CM|Mantle cell lymphoma, intrapelvic lymph nodes|Mantle cell lymphoma, intrapelvic lymph nodes +C2853900|T191|PT|C83.16|ICD10CM|Mantle cell lymphoma, intrapelvic lymph nodes|Mantle cell lymphoma, intrapelvic lymph nodes +C2018777|T191|AB|C83.17|ICD10CM|Mantle cell lymphoma, spleen|Mantle cell lymphoma, spleen +C2018777|T191|PT|C83.17|ICD10CM|Mantle cell lymphoma, spleen|Mantle cell lymphoma, spleen +C2853901|T191|AB|C83.18|ICD10CM|Mantle cell lymphoma, lymph nodes of multiple sites|Mantle cell lymphoma, lymph nodes of multiple sites +C2853901|T191|PT|C83.18|ICD10CM|Mantle cell lymphoma, lymph nodes of multiple sites|Mantle cell lymphoma, lymph nodes of multiple sites +C2853902|T191|AB|C83.19|ICD10CM|Mantle cell lymphoma, extranodal and solid organ sites|Mantle cell lymphoma, extranodal and solid organ sites +C2853902|T191|PT|C83.19|ICD10CM|Mantle cell lymphoma, extranodal and solid organ sites|Mantle cell lymphoma, extranodal and solid organ sites +C0334621|T191|PS|C83.2|ICD10|Mixed small and large cell (diffuse)|Mixed small and large cell (diffuse) +C0334621|T191|PX|C83.2|ICD10|Mixed small and large cell (diffuse) non-Hodgkin's lymphoma|Mixed small and large cell (diffuse) non-Hodgkin's lymphoma +C2853903|T191|ET|C83.3|ICD10CM|Anaplastic diffuse large B-cell lymphoma|Anaplastic diffuse large B-cell lymphoma +C2853904|T191|ET|C83.3|ICD10CM|CD30-positive diffuse large B-cell lymphoma|CD30-positive diffuse large B-cell lymphoma +C2853905|T191|ET|C83.3|ICD10CM|Centroblastic diffuse large B-cell lymphoma|Centroblastic diffuse large B-cell lymphoma +C0079744|T191|HT|C83.3|ICD10CM|Diffuse large B-cell lymphoma|Diffuse large B-cell lymphoma +C0079744|T191|AB|C83.3|ICD10CM|Diffuse large B-cell lymphoma|Diffuse large B-cell lymphoma +C2853906|T191|ET|C83.3|ICD10CM|Diffuse large B-cell lymphoma, subtype not specified|Diffuse large B-cell lymphoma, subtype not specified +C2853907|T191|ET|C83.3|ICD10CM|Immunoblastic diffuse large B-cell lymphoma|Immunoblastic diffuse large B-cell lymphoma +C0079744|T191|PS|C83.3|ICD10|Large cell (diffuse)|Large cell (diffuse) +C0079744|T191|PX|C83.3|ICD10|Large cell (diffuse) non-Hodgkin's lymphoma|Large cell (diffuse) non-Hodgkin's lymphoma +C3472614|T191|ET|C83.3|ICD10CM|Plasmablastic diffuse large B-cell lymphoma|Plasmablastic diffuse large B-cell lymphoma +C2853909|T191|ET|C83.3|ICD10CM|T-cell rich diffuse large B-cell lymphoma|T-cell rich diffuse large B-cell lymphoma +C2853910|T191|AB|C83.30|ICD10CM|Diffuse large B-cell lymphoma, unspecified site|Diffuse large B-cell lymphoma, unspecified site +C2853910|T191|PT|C83.30|ICD10CM|Diffuse large B-cell lymphoma, unspecified site|Diffuse large B-cell lymphoma, unspecified site +C2853911|T191|PT|C83.31|ICD10CM|Diffuse large B-cell lymphoma, lymph nodes of head, face, and neck|Diffuse large B-cell lymphoma, lymph nodes of head, face, and neck +C2853911|T191|AB|C83.31|ICD10CM|Diffuse large B-cell lymphoma, nodes of head, face, and neck|Diffuse large B-cell lymphoma, nodes of head, face, and neck +C2853912|T191|AB|C83.32|ICD10CM|Diffuse large B-cell lymphoma, intrathoracic lymph nodes|Diffuse large B-cell lymphoma, intrathoracic lymph nodes +C2853912|T191|PT|C83.32|ICD10CM|Diffuse large B-cell lymphoma, intrathoracic lymph nodes|Diffuse large B-cell lymphoma, intrathoracic lymph nodes +C2853913|T191|AB|C83.33|ICD10CM|Diffuse large B-cell lymphoma, intra-abdominal lymph nodes|Diffuse large B-cell lymphoma, intra-abdominal lymph nodes +C2853913|T191|PT|C83.33|ICD10CM|Diffuse large B-cell lymphoma, intra-abdominal lymph nodes|Diffuse large B-cell lymphoma, intra-abdominal lymph nodes +C2853914|T191|AB|C83.34|ICD10CM|Diffuse large B-cell lymph, nodes of axilla and upper limb|Diffuse large B-cell lymph, nodes of axilla and upper limb +C2853914|T191|PT|C83.34|ICD10CM|Diffuse large B-cell lymphoma, lymph nodes of axilla and upper limb|Diffuse large B-cell lymphoma, lymph nodes of axilla and upper limb +C2853915|T191|AB|C83.35|ICD10CM|Diffus large B-cell lymph, nodes of ing rgn and lower limb|Diffus large B-cell lymph, nodes of ing rgn and lower limb +C2853915|T191|PT|C83.35|ICD10CM|Diffuse large B-cell lymphoma, lymph nodes of inguinal region and lower limb|Diffuse large B-cell lymphoma, lymph nodes of inguinal region and lower limb +C2853916|T191|AB|C83.36|ICD10CM|Diffuse large B-cell lymphoma, intrapelvic lymph nodes|Diffuse large B-cell lymphoma, intrapelvic lymph nodes +C2853916|T191|PT|C83.36|ICD10CM|Diffuse large B-cell lymphoma, intrapelvic lymph nodes|Diffuse large B-cell lymphoma, intrapelvic lymph nodes +C2018774|T191|AB|C83.37|ICD10CM|Diffuse large B-cell lymphoma, spleen|Diffuse large B-cell lymphoma, spleen +C2018774|T191|PT|C83.37|ICD10CM|Diffuse large B-cell lymphoma, spleen|Diffuse large B-cell lymphoma, spleen +C2853917|T191|AB|C83.38|ICD10CM|Diffuse large B-cell lymphoma, lymph nodes of multiple sites|Diffuse large B-cell lymphoma, lymph nodes of multiple sites +C2853917|T191|PT|C83.38|ICD10CM|Diffuse large B-cell lymphoma, lymph nodes of multiple sites|Diffuse large B-cell lymphoma, lymph nodes of multiple sites +C3647864|T191|PT|C83.39|ICD10CM|Diffuse large B-cell lymphoma, extranodal and solid organ sites|Diffuse large B-cell lymphoma, extranodal and solid organ sites +C3647864|T191|AB|C83.39|ICD10CM|Diffuse large B-cell lymphoma, extrnod and solid organ sites|Diffuse large B-cell lymphoma, extrnod and solid organ sites +C0079746|T191|PS|C83.4|ICD10|Immunoblastic (diffuse)|Immunoblastic (diffuse) +C0079746|T191|PX|C83.4|ICD10|Immunoblastic (diffuse) non-Hodgkin's lymphoma|Immunoblastic (diffuse) non-Hodgkin's lymphoma +C1390945|T191|ET|C83.5|ICD10CM|B-precursor lymphoma|B-precursor lymphoma +C0079748|T191|PS|C83.5|ICD10|Lymphoblastic (diffuse)|Lymphoblastic (diffuse) +C0079748|T191|AB|C83.5|ICD10CM|Lymphoblastic (diffuse) lymphoma|Lymphoblastic (diffuse) lymphoma +C0079748|T191|HT|C83.5|ICD10CM|Lymphoblastic (diffuse) lymphoma|Lymphoblastic (diffuse) lymphoma +C0079748|T191|PX|C83.5|ICD10|Lymphoblastic (diffuse) non-Hodgkin's lymphoma|Lymphoblastic (diffuse) non-Hodgkin's lymphoma +C2853919|T191|ET|C83.5|ICD10CM|Lymphoblastic B-cell lymphoma|Lymphoblastic B-cell lymphoma +C0079748|T191|ET|C83.5|ICD10CM|Lymphoblastic lymphoma NOS|Lymphoblastic lymphoma NOS +C2853920|T191|ET|C83.5|ICD10CM|Lymphoblastic T-cell lymphoma|Lymphoblastic T-cell lymphoma +C2853921|T191|ET|C83.5|ICD10CM|T-precursor lymphoma|T-precursor lymphoma +C2853922|T191|AB|C83.50|ICD10CM|Lymphoblastic (diffuse) lymphoma, unspecified site|Lymphoblastic (diffuse) lymphoma, unspecified site +C2853922|T191|PT|C83.50|ICD10CM|Lymphoblastic (diffuse) lymphoma, unspecified site|Lymphoblastic (diffuse) lymphoma, unspecified site +C2853923|T191|PT|C83.51|ICD10CM|Lymphoblastic (diffuse) lymphoma, lymph nodes of head, face, and neck|Lymphoblastic (diffuse) lymphoma, lymph nodes of head, face, and neck +C2853923|T191|AB|C83.51|ICD10CM|Lymphoblastic lymphoma, nodes of head, face, and neck|Lymphoblastic lymphoma, nodes of head, face, and neck +C2853924|T191|AB|C83.52|ICD10CM|Lymphoblastic (diffuse) lymphoma, intrathoracic lymph nodes|Lymphoblastic (diffuse) lymphoma, intrathoracic lymph nodes +C2853924|T191|PT|C83.52|ICD10CM|Lymphoblastic (diffuse) lymphoma, intrathoracic lymph nodes|Lymphoblastic (diffuse) lymphoma, intrathoracic lymph nodes +C2853925|T191|AB|C83.53|ICD10CM|Lymphoblastic (diffuse) lymphoma, intra-abd lymph nodes|Lymphoblastic (diffuse) lymphoma, intra-abd lymph nodes +C2853925|T191|PT|C83.53|ICD10CM|Lymphoblastic (diffuse) lymphoma, intra-abdominal lymph nodes|Lymphoblastic (diffuse) lymphoma, intra-abdominal lymph nodes +C2853926|T191|PT|C83.54|ICD10CM|Lymphoblastic (diffuse) lymphoma, lymph nodes of axilla and upper limb|Lymphoblastic (diffuse) lymphoma, lymph nodes of axilla and upper limb +C2853926|T191|AB|C83.54|ICD10CM|Lymphoblastic lymphoma, nodes of axilla and upper limb|Lymphoblastic lymphoma, nodes of axilla and upper limb +C2853927|T191|PT|C83.55|ICD10CM|Lymphoblastic (diffuse) lymphoma, lymph nodes of inguinal region and lower limb|Lymphoblastic (diffuse) lymphoma, lymph nodes of inguinal region and lower limb +C2853927|T191|AB|C83.55|ICD10CM|Lymphoblastic lymphoma, nodes of ing region and lower limb|Lymphoblastic lymphoma, nodes of ing region and lower limb +C2853928|T191|AB|C83.56|ICD10CM|Lymphoblastic (diffuse) lymphoma, intrapelvic lymph nodes|Lymphoblastic (diffuse) lymphoma, intrapelvic lymph nodes +C2853928|T191|PT|C83.56|ICD10CM|Lymphoblastic (diffuse) lymphoma, intrapelvic lymph nodes|Lymphoblastic (diffuse) lymphoma, intrapelvic lymph nodes +C2853929|T191|AB|C83.57|ICD10CM|Lymphoblastic (diffuse) lymphoma, spleen|Lymphoblastic (diffuse) lymphoma, spleen +C2853929|T191|PT|C83.57|ICD10CM|Lymphoblastic (diffuse) lymphoma, spleen|Lymphoblastic (diffuse) lymphoma, spleen +C2853930|T191|AB|C83.58|ICD10CM|Lymphoblastic (diffuse) lymphoma, lymph nodes mult site|Lymphoblastic (diffuse) lymphoma, lymph nodes mult site +C2853930|T191|PT|C83.58|ICD10CM|Lymphoblastic (diffuse) lymphoma, lymph nodes of multiple sites|Lymphoblastic (diffuse) lymphoma, lymph nodes of multiple sites +C2853931|T191|PT|C83.59|ICD10CM|Lymphoblastic (diffuse) lymphoma, extranodal and solid organ sites|Lymphoblastic (diffuse) lymphoma, extranodal and solid organ sites +C2853931|T191|AB|C83.59|ICD10CM|Lymphoblastic lymphoma, extrnod and solid organ sites|Lymphoblastic lymphoma, extrnod and solid organ sites +C0024306|T191|PS|C83.6|ICD10|Undifferentiated (diffuse)|Undifferentiated (diffuse) +C0024306|T191|PX|C83.6|ICD10|Undifferentiated (diffuse) non-Hodgkin's lymphoma|Undifferentiated (diffuse) non-Hodgkin's lymphoma +C1629504|T047|ET|C83.7|ICD10CM|Atypical Burkitt lymphoma|Atypical Burkitt lymphoma +C0006413|T191|HT|C83.7|ICD10CM|Burkitt lymphoma|Burkitt lymphoma +C0006413|T191|AB|C83.7|ICD10CM|Burkitt lymphoma|Burkitt lymphoma +C1368771|T191|ET|C83.7|ICD10CM|Burkitt-like lymphoma|Burkitt-like lymphoma +C0006413|T191|PS|C83.7|ICD10AE|Burkitt's tumor|Burkitt's tumor +C0006413|T191|PX|C83.7|ICD10AE|Burkitt's tumor non-Hodgkin's lymphoma|Burkitt's tumor non-Hodgkin's lymphoma +C0006413|T191|PS|C83.7|ICD10|Burkitt's tumour|Burkitt's tumour +C0006413|T191|PX|C83.7|ICD10|Burkitt's tumour non-Hodgkin's lymphoma|Burkitt's tumour non-Hodgkin's lymphoma +C0006413|T191|AB|C83.70|ICD10CM|Burkitt lymphoma, unspecified site|Burkitt lymphoma, unspecified site +C0006413|T191|PT|C83.70|ICD10CM|Burkitt lymphoma, unspecified site|Burkitt lymphoma, unspecified site +C0153712|T191|AB|C83.71|ICD10CM|Burkitt lymphoma, lymph nodes of head, face, and neck|Burkitt lymphoma, lymph nodes of head, face, and neck +C0153712|T191|PT|C83.71|ICD10CM|Burkitt lymphoma, lymph nodes of head, face, and neck|Burkitt lymphoma, lymph nodes of head, face, and neck +C0153713|T191|AB|C83.72|ICD10CM|Burkitt lymphoma, intrathoracic lymph nodes|Burkitt lymphoma, intrathoracic lymph nodes +C0153713|T191|PT|C83.72|ICD10CM|Burkitt lymphoma, intrathoracic lymph nodes|Burkitt lymphoma, intrathoracic lymph nodes +C0153714|T191|AB|C83.73|ICD10CM|Burkitt lymphoma, intra-abdominal lymph nodes|Burkitt lymphoma, intra-abdominal lymph nodes +C0153714|T191|PT|C83.73|ICD10CM|Burkitt lymphoma, intra-abdominal lymph nodes|Burkitt lymphoma, intra-abdominal lymph nodes +C0153715|T191|AB|C83.74|ICD10CM|Burkitt lymphoma, lymph nodes of axilla and upper limb|Burkitt lymphoma, lymph nodes of axilla and upper limb +C0153715|T191|PT|C83.74|ICD10CM|Burkitt lymphoma, lymph nodes of axilla and upper limb|Burkitt lymphoma, lymph nodes of axilla and upper limb +C0153716|T191|PT|C83.75|ICD10CM|Burkitt lymphoma, lymph nodes of inguinal region and lower limb|Burkitt lymphoma, lymph nodes of inguinal region and lower limb +C0153716|T191|AB|C83.75|ICD10CM|Burkitt lymphoma, nodes of inguinal region and lower limb|Burkitt lymphoma, nodes of inguinal region and lower limb +C0153717|T191|AB|C83.76|ICD10CM|Burkitt lymphoma, intrapelvic lymph nodes|Burkitt lymphoma, intrapelvic lymph nodes +C0153717|T191|PT|C83.76|ICD10CM|Burkitt lymphoma, intrapelvic lymph nodes|Burkitt lymphoma, intrapelvic lymph nodes +C0686546|T191|AB|C83.77|ICD10CM|Burkitt lymphoma, spleen|Burkitt lymphoma, spleen +C0686546|T191|PT|C83.77|ICD10CM|Burkitt lymphoma, spleen|Burkitt lymphoma, spleen +C0153719|T191|AB|C83.78|ICD10CM|Burkitt lymphoma, lymph nodes of multiple sites|Burkitt lymphoma, lymph nodes of multiple sites +C0153719|T191|PT|C83.78|ICD10CM|Burkitt lymphoma, lymph nodes of multiple sites|Burkitt lymphoma, lymph nodes of multiple sites +C2853932|T191|AB|C83.79|ICD10CM|Burkitt lymphoma, extranodal and solid organ sites|Burkitt lymphoma, extranodal and solid organ sites +C2853932|T191|PT|C83.79|ICD10CM|Burkitt lymphoma, extranodal and solid organ sites|Burkitt lymphoma, extranodal and solid organ sites +C0334660|T191|ET|C83.8|ICD10CM|Intravascular large B-cell lymphoma|Intravascular large B-cell lymphoma +C0024307|T191|ET|C83.8|ICD10CM|Lymphoid granulomatosis|Lymphoid granulomatosis +C2853934|T191|AB|C83.8|ICD10CM|Other non-follicular lymphoma|Other non-follicular lymphoma +C2853934|T191|HT|C83.8|ICD10CM|Other non-follicular lymphoma|Other non-follicular lymphoma +C0348389|T191|PT|C83.8|ICD10|Other types of diffuse non-Hodgkin's lymphoma|Other types of diffuse non-Hodgkin's lymphoma +C1292753|T191|ET|C83.8|ICD10CM|Primary effusion B-cell lymphoma|Primary effusion B-cell lymphoma +C2853935|T191|AB|C83.80|ICD10CM|Other non-follicular lymphoma, unspecified site|Other non-follicular lymphoma, unspecified site +C2853935|T191|PT|C83.80|ICD10CM|Other non-follicular lymphoma, unspecified site|Other non-follicular lymphoma, unspecified site +C2853936|T191|AB|C83.81|ICD10CM|Oth non-follic lymphoma, lymph nodes of head, face, and neck|Oth non-follic lymphoma, lymph nodes of head, face, and neck +C2853936|T191|PT|C83.81|ICD10CM|Other non-follicular lymphoma, lymph nodes of head, face, and neck|Other non-follicular lymphoma, lymph nodes of head, face, and neck +C2853937|T191|AB|C83.82|ICD10CM|Other non-follicular lymphoma, intrathoracic lymph nodes|Other non-follicular lymphoma, intrathoracic lymph nodes +C2853937|T191|PT|C83.82|ICD10CM|Other non-follicular lymphoma, intrathoracic lymph nodes|Other non-follicular lymphoma, intrathoracic lymph nodes +C2853938|T191|AB|C83.83|ICD10CM|Other non-follicular lymphoma, intra-abdominal lymph nodes|Other non-follicular lymphoma, intra-abdominal lymph nodes +C2853938|T191|PT|C83.83|ICD10CM|Other non-follicular lymphoma, intra-abdominal lymph nodes|Other non-follicular lymphoma, intra-abdominal lymph nodes +C2853939|T191|AB|C83.84|ICD10CM|Oth non-follic lymphoma, nodes of axilla and upper limb|Oth non-follic lymphoma, nodes of axilla and upper limb +C2853939|T191|PT|C83.84|ICD10CM|Other non-follicular lymphoma, lymph nodes of axilla and upper limb|Other non-follicular lymphoma, lymph nodes of axilla and upper limb +C2853940|T191|AB|C83.85|ICD10CM|Oth non-follic lymphoma, nodes of ing region and lower limb|Oth non-follic lymphoma, nodes of ing region and lower limb +C2853940|T191|PT|C83.85|ICD10CM|Other non-follicular lymphoma, lymph nodes of inguinal region and lower limb|Other non-follicular lymphoma, lymph nodes of inguinal region and lower limb +C2853941|T191|AB|C83.86|ICD10CM|Other non-follicular lymphoma, intrapelvic lymph nodes|Other non-follicular lymphoma, intrapelvic lymph nodes +C2853941|T191|PT|C83.86|ICD10CM|Other non-follicular lymphoma, intrapelvic lymph nodes|Other non-follicular lymphoma, intrapelvic lymph nodes +C2853942|T191|AB|C83.87|ICD10CM|Other non-follicular lymphoma, spleen|Other non-follicular lymphoma, spleen +C2853942|T191|PT|C83.87|ICD10CM|Other non-follicular lymphoma, spleen|Other non-follicular lymphoma, spleen +C2853943|T191|AB|C83.88|ICD10CM|Other non-follicular lymphoma, lymph nodes of multiple sites|Other non-follicular lymphoma, lymph nodes of multiple sites +C2853943|T191|PT|C83.88|ICD10CM|Other non-follicular lymphoma, lymph nodes of multiple sites|Other non-follicular lymphoma, lymph nodes of multiple sites +C2853944|T191|AB|C83.89|ICD10CM|Oth non-follic lymphoma, extranodal and solid organ sites|Oth non-follic lymphoma, extranodal and solid organ sites +C2853944|T191|PT|C83.89|ICD10CM|Other non-follicular lymphoma, extranodal and solid organ sites|Other non-follicular lymphoma, extranodal and solid organ sites +C0348394|T191|PT|C83.9|ICD10|Diffuse non-Hodgkin's lymphoma, unspecified|Diffuse non-Hodgkin's lymphoma, unspecified +C3263938|T191|AB|C83.9|ICD10CM|Non-follicular (diffuse) lymphoma, unspecified|Non-follicular (diffuse) lymphoma, unspecified +C3263938|T191|HT|C83.9|ICD10CM|Non-follicular (diffuse) lymphoma, unspecified|Non-follicular (diffuse) lymphoma, unspecified +C2853946|T191|AB|C83.90|ICD10CM|Non-follicular (diffuse) lymphoma, unsp, unspecified site|Non-follicular (diffuse) lymphoma, unsp, unspecified site +C2853946|T191|PT|C83.90|ICD10CM|Non-follicular (diffuse) lymphoma, unspecified, unspecified site|Non-follicular (diffuse) lymphoma, unspecified, unspecified site +C2853947|T191|AB|C83.91|ICD10CM|Non-follic lymphoma, unsp, nodes of head, face, and neck|Non-follic lymphoma, unsp, nodes of head, face, and neck +C2853947|T191|PT|C83.91|ICD10CM|Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of head, face, and neck|Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of head, face, and neck +C2853948|T191|AB|C83.92|ICD10CM|Non-follic (diffuse) lymphoma, unsp, intrathorac lymph nodes|Non-follic (diffuse) lymphoma, unsp, intrathorac lymph nodes +C2853948|T191|PT|C83.92|ICD10CM|Non-follicular (diffuse) lymphoma, unspecified, intrathoracic lymph nodes|Non-follicular (diffuse) lymphoma, unspecified, intrathoracic lymph nodes +C2853949|T191|AB|C83.93|ICD10CM|Non-follic (diffuse) lymphoma, unsp, intra-abd lymph nodes|Non-follic (diffuse) lymphoma, unsp, intra-abd lymph nodes +C2853949|T191|PT|C83.93|ICD10CM|Non-follicular (diffuse) lymphoma, unspecified, intra-abdominal lymph nodes|Non-follicular (diffuse) lymphoma, unspecified, intra-abdominal lymph nodes +C2853950|T191|AB|C83.94|ICD10CM|Non-follic lymphoma, unsp, nodes of axilla and upper limb|Non-follic lymphoma, unsp, nodes of axilla and upper limb +C2853950|T191|PT|C83.94|ICD10CM|Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of axilla and upper limb|Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of axilla and upper limb +C2853951|T191|AB|C83.95|ICD10CM|Non-follic lymph, unsp, nodes of ing region and lower limb|Non-follic lymph, unsp, nodes of ing region and lower limb +C2853951|T191|PT|C83.95|ICD10CM|Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of inguinal region and lower limb|Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of inguinal region and lower limb +C2853952|T191|AB|C83.96|ICD10CM|Non-follic (diffuse) lymphoma, unsp, intrapelvic lymph nodes|Non-follic (diffuse) lymphoma, unsp, intrapelvic lymph nodes +C2853952|T191|PT|C83.96|ICD10CM|Non-follicular (diffuse) lymphoma, unspecified, intrapelvic lymph nodes|Non-follicular (diffuse) lymphoma, unspecified, intrapelvic lymph nodes +C2853953|T191|AB|C83.97|ICD10CM|Non-follicular (diffuse) lymphoma, unspecified, spleen|Non-follicular (diffuse) lymphoma, unspecified, spleen +C2853953|T191|PT|C83.97|ICD10CM|Non-follicular (diffuse) lymphoma, unspecified, spleen|Non-follicular (diffuse) lymphoma, unspecified, spleen +C2853954|T191|AB|C83.98|ICD10CM|Non-follic (diffuse) lymphoma, unsp, lymph nodes mult site|Non-follic (diffuse) lymphoma, unsp, lymph nodes mult site +C2853954|T191|PT|C83.98|ICD10CM|Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of multiple sites|Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of multiple sites +C2853955|T191|AB|C83.99|ICD10CM|Non-follic lymphoma, unsp, extrnod and solid organ sites|Non-follic lymphoma, unsp, extrnod and solid organ sites +C2853955|T191|PT|C83.99|ICD10CM|Non-follicular (diffuse) lymphoma, unspecified, extranodal and solid organ sites|Non-follicular (diffuse) lymphoma, unspecified, extranodal and solid organ sites +C0079774|T191|AB|C84|ICD10CM|Mature T/NK-cell lymphomas|Mature T/NK-cell lymphomas +C0079774|T191|HT|C84|ICD10CM|Mature T/NK-cell lymphomas|Mature T/NK-cell lymphomas +C0456860|T191|HT|C84|ICD10|Peripheral and cutaneous T-cell lymphomas|Peripheral and cutaneous T-cell lymphomas +C0026948|T191|HT|C84.0|ICD10CM|Mycosis fungoides|Mycosis fungoides +C0026948|T191|AB|C84.0|ICD10CM|Mycosis fungoides|Mycosis fungoides +C0026948|T191|PT|C84.0|ICD10|Mycosis fungoides|Mycosis fungoides +C0026948|T191|AB|C84.00|ICD10CM|Mycosis fungoides, unspecified site|Mycosis fungoides, unspecified site +C0026948|T191|PT|C84.00|ICD10CM|Mycosis fungoides, unspecified site|Mycosis fungoides, unspecified site +C0153802|T191|AB|C84.01|ICD10CM|Mycosis fungoides, lymph nodes of head, face, and neck|Mycosis fungoides, lymph nodes of head, face, and neck +C0153802|T191|PT|C84.01|ICD10CM|Mycosis fungoides, lymph nodes of head, face, and neck|Mycosis fungoides, lymph nodes of head, face, and neck +C0153803|T191|AB|C84.02|ICD10CM|Mycosis fungoides, intrathoracic lymph nodes|Mycosis fungoides, intrathoracic lymph nodes +C0153803|T191|PT|C84.02|ICD10CM|Mycosis fungoides, intrathoracic lymph nodes|Mycosis fungoides, intrathoracic lymph nodes +C0153804|T191|AB|C84.03|ICD10CM|Mycosis fungoides, intra-abdominal lymph nodes|Mycosis fungoides, intra-abdominal lymph nodes +C0153804|T191|PT|C84.03|ICD10CM|Mycosis fungoides, intra-abdominal lymph nodes|Mycosis fungoides, intra-abdominal lymph nodes +C0153805|T191|AB|C84.04|ICD10CM|Mycosis fungoides, lymph nodes of axilla and upper limb|Mycosis fungoides, lymph nodes of axilla and upper limb +C0153805|T191|PT|C84.04|ICD10CM|Mycosis fungoides, lymph nodes of axilla and upper limb|Mycosis fungoides, lymph nodes of axilla and upper limb +C0153806|T191|PT|C84.05|ICD10CM|Mycosis fungoides, lymph nodes of inguinal region and lower limb|Mycosis fungoides, lymph nodes of inguinal region and lower limb +C0153806|T191|AB|C84.05|ICD10CM|Mycosis fungoides, nodes of inguinal region and lower limb|Mycosis fungoides, nodes of inguinal region and lower limb +C0153807|T191|AB|C84.06|ICD10CM|Mycosis fungoides, intrapelvic lymph nodes|Mycosis fungoides, intrapelvic lymph nodes +C0153807|T191|PT|C84.06|ICD10CM|Mycosis fungoides, intrapelvic lymph nodes|Mycosis fungoides, intrapelvic lymph nodes +C0153808|T191|AB|C84.07|ICD10CM|Mycosis fungoides, spleen|Mycosis fungoides, spleen +C0153808|T191|PT|C84.07|ICD10CM|Mycosis fungoides, spleen|Mycosis fungoides, spleen +C0153809|T191|AB|C84.08|ICD10CM|Mycosis fungoides, lymph nodes of multiple sites|Mycosis fungoides, lymph nodes of multiple sites +C0153809|T191|PT|C84.08|ICD10CM|Mycosis fungoides, lymph nodes of multiple sites|Mycosis fungoides, lymph nodes of multiple sites +C2853956|T191|AB|C84.09|ICD10CM|Mycosis fungoides, extranodal and solid organ sites|Mycosis fungoides, extranodal and solid organ sites +C2853956|T191|PT|C84.09|ICD10CM|Mycosis fungoides, extranodal and solid organ sites|Mycosis fungoides, extranodal and solid organ sites +C0036920|T191|AB|C84.1|ICD10CM|Sezary disease|Sezary disease +C0036920|T191|HT|C84.1|ICD10CM|Sézary disease|Sézary disease +C0036920|T191|PT|C84.1|ICD10|Sezary's disease|Sezary's disease +C0036920|T191|PT|C84.10|ICD10CM|Sézary disease, unspecified site|Sézary disease, unspecified site +C0036920|T191|AB|C84.10|ICD10CM|Sezary disease, unspecified site|Sezary disease, unspecified site +C0153810|T191|PT|C84.11|ICD10CM|Sézary disease, lymph nodes of head, face, and neck|Sézary disease, lymph nodes of head, face, and neck +C0153810|T191|AB|C84.11|ICD10CM|Sezary disease, lymph nodes of head, face, and neck|Sezary disease, lymph nodes of head, face, and neck +C0153811|T191|PT|C84.12|ICD10CM|Sézary disease, intrathoracic lymph nodes|Sézary disease, intrathoracic lymph nodes +C0153811|T191|AB|C84.12|ICD10CM|Sezary disease, intrathoracic lymph nodes|Sezary disease, intrathoracic lymph nodes +C0153812|T191|PT|C84.13|ICD10CM|Sézary disease, intra-abdominal lymph nodes|Sézary disease, intra-abdominal lymph nodes +C0153812|T191|AB|C84.13|ICD10CM|Sezary disease, intra-abdominal lymph nodes|Sezary disease, intra-abdominal lymph nodes +C0153813|T191|PT|C84.14|ICD10CM|Sézary disease, lymph nodes of axilla and upper limb|Sézary disease, lymph nodes of axilla and upper limb +C0153813|T191|AB|C84.14|ICD10CM|Sezary disease, lymph nodes of axilla and upper limb|Sezary disease, lymph nodes of axilla and upper limb +C0153814|T191|PT|C84.15|ICD10CM|Sézary disease, lymph nodes of inguinal region and lower limb|Sézary disease, lymph nodes of inguinal region and lower limb +C0153814|T191|AB|C84.15|ICD10CM|Sezary disease, nodes of inguinal region and lower limb|Sezary disease, nodes of inguinal region and lower limb +C0153815|T191|PT|C84.16|ICD10CM|Sézary disease, intrapelvic lymph nodes|Sézary disease, intrapelvic lymph nodes +C0153815|T191|AB|C84.16|ICD10CM|Sezary disease, intrapelvic lymph nodes|Sezary disease, intrapelvic lymph nodes +C0153816|T191|PT|C84.17|ICD10CM|Sézary disease, spleen|Sézary disease, spleen +C0153816|T191|AB|C84.17|ICD10CM|Sezary disease, spleen|Sezary disease, spleen +C0153817|T191|PT|C84.18|ICD10CM|Sézary disease, lymph nodes of multiple sites|Sézary disease, lymph nodes of multiple sites +C0153817|T191|AB|C84.18|ICD10CM|Sezary disease, lymph nodes of multiple sites|Sezary disease, lymph nodes of multiple sites +C2853957|T191|PT|C84.19|ICD10CM|Sézary disease, extranodal and solid organ sites|Sézary disease, extranodal and solid organ sites +C2853957|T191|AB|C84.19|ICD10CM|Sezary disease, extranodal and solid organ sites|Sezary disease, extranodal and solid organ sites +C0334655|T191|PT|C84.2|ICD10|T-zone lymphoma|T-zone lymphoma +C1621719|T191|PT|C84.3|ICD10|Lymphoepithelioid lymphoma|Lymphoepithelioid lymphoma +C1621719|T191|ET|C84.4|ICD10CM|Lennert's lymphoma|Lennert's lymphoma +C1621719|T191|ET|C84.4|ICD10CM|Lymphoepithelioid lymphoma|Lymphoepithelioid lymphoma +C2853958|T191|ET|C84.4|ICD10CM|Mature T-cell lymphoma, not elsewhere classified|Mature T-cell lymphoma, not elsewhere classified +C0079774|T191|PT|C84.4|ICD10|Peripheral T-cell lymphoma|Peripheral T-cell lymphoma +C2853959|T191|AB|C84.4|ICD10CM|Peripheral T-cell lymphoma, not classified|Peripheral T-cell lymphoma, not classified +C2853959|T191|HT|C84.4|ICD10CM|Peripheral T-cell lymphoma, not classified|Peripheral T-cell lymphoma, not classified +C2853960|T191|AB|C84.40|ICD10CM|Peripheral T-cell lymphoma, not classified, unspecified site|Peripheral T-cell lymphoma, not classified, unspecified site +C2853960|T191|PT|C84.40|ICD10CM|Peripheral T-cell lymphoma, not classified, unspecified site|Peripheral T-cell lymphoma, not classified, unspecified site +C2853961|T191|PT|C84.41|ICD10CM|Peripheral T-cell lymphoma, not classified, lymph nodes of head, face, and neck|Peripheral T-cell lymphoma, not classified, lymph nodes of head, face, and neck +C2853961|T191|AB|C84.41|ICD10CM|Prph T-cell lymph, not class, nodes of head, face, and neck|Prph T-cell lymph, not class, nodes of head, face, and neck +C2853962|T191|AB|C84.42|ICD10CM|Peripheral T-cell lymphoma, not class, intrathorac nodes|Peripheral T-cell lymphoma, not class, intrathorac nodes +C2853962|T191|PT|C84.42|ICD10CM|Peripheral T-cell lymphoma, not classified, intrathoracic lymph nodes|Peripheral T-cell lymphoma, not classified, intrathoracic lymph nodes +C2853963|T191|AB|C84.43|ICD10CM|Peripheral T-cell lymphoma, not classified, intra-abd nodes|Peripheral T-cell lymphoma, not classified, intra-abd nodes +C2853963|T191|PT|C84.43|ICD10CM|Peripheral T-cell lymphoma, not classified, intra-abdominal lymph nodes|Peripheral T-cell lymphoma, not classified, intra-abdominal lymph nodes +C2853964|T191|PT|C84.44|ICD10CM|Peripheral T-cell lymphoma, not classified, lymph nodes of axilla and upper limb|Peripheral T-cell lymphoma, not classified, lymph nodes of axilla and upper limb +C2853964|T191|AB|C84.44|ICD10CM|Prph T-cell lymph, not class, nodes of axilla and upper limb|Prph T-cell lymph, not class, nodes of axilla and upper limb +C2853965|T191|PT|C84.45|ICD10CM|Peripheral T-cell lymphoma, not classified, lymph nodes of inguinal region and lower limb|Peripheral T-cell lymphoma, not classified, lymph nodes of inguinal region and lower limb +C2853965|T191|AB|C84.45|ICD10CM|Prph T-cell lymph, not class, nodes of ing rgn and low limb|Prph T-cell lymph, not class, nodes of ing rgn and low limb +C2853966|T191|AB|C84.46|ICD10CM|Peripheral T-cell lymphoma, not classified, intrapelv nodes|Peripheral T-cell lymphoma, not classified, intrapelv nodes +C2853966|T191|PT|C84.46|ICD10CM|Peripheral T-cell lymphoma, not classified, intrapelvic lymph nodes|Peripheral T-cell lymphoma, not classified, intrapelvic lymph nodes +C2853967|T191|AB|C84.47|ICD10CM|Peripheral T-cell lymphoma, not classified, spleen|Peripheral T-cell lymphoma, not classified, spleen +C2853967|T191|PT|C84.47|ICD10CM|Peripheral T-cell lymphoma, not classified, spleen|Peripheral T-cell lymphoma, not classified, spleen +C2853968|T191|PT|C84.48|ICD10CM|Peripheral T-cell lymphoma, not classified, lymph nodes of multiple sites|Peripheral T-cell lymphoma, not classified, lymph nodes of multiple sites +C2853968|T191|AB|C84.48|ICD10CM|Peripheral T-cell lymphoma, not classified, nodes mult site|Peripheral T-cell lymphoma, not classified, nodes mult site +C2853969|T191|PT|C84.49|ICD10CM|Peripheral T-cell lymphoma, not classified, extranodal and solid organ sites|Peripheral T-cell lymphoma, not classified, extranodal and solid organ sites +C2853969|T191|AB|C84.49|ICD10CM|Prph T-cell lymph, not class, extrnod and solid organ sites|Prph T-cell lymph, not class, extrnod and solid organ sites +C0494171|T191|PT|C84.5|ICD10|Other and unspecified T-cell lymphomas|Other and unspecified T-cell lymphomas +C1332079|T191|AB|C84.6|ICD10CM|Anaplastic large cell lymphoma, ALK-positive|Anaplastic large cell lymphoma, ALK-positive +C1332079|T191|HT|C84.6|ICD10CM|Anaplastic large cell lymphoma, ALK-positive|Anaplastic large cell lymphoma, ALK-positive +C0206180|T191|ET|C84.6|ICD10CM|Anaplastic large cell lymphoma, CD30-positive|Anaplastic large cell lymphoma, CD30-positive +C2853970|T191|AB|C84.60|ICD10CM|Anaplastic large cell lymphoma, ALK-positive, unsp site|Anaplastic large cell lymphoma, ALK-positive, unsp site +C2853970|T191|PT|C84.60|ICD10CM|Anaplastic large cell lymphoma, ALK-positive, unspecified site|Anaplastic large cell lymphoma, ALK-positive, unspecified site +C2853971|T191|PT|C84.61|ICD10CM|Anaplastic large cell lymphoma, ALK-positive, lymph nodes of head, face, and neck|Anaplastic large cell lymphoma, ALK-positive, lymph nodes of head, face, and neck +C2853971|T191|AB|C84.61|ICD10CM|Anaplstc lg cell lymph, ALK-pos, nodes of head, face, and nk|Anaplstc lg cell lymph, ALK-pos, nodes of head, face, and nk +C2853972|T191|AB|C84.62|ICD10CM|Anaplastic large cell lymphoma, ALK-pos, intrathorac nodes|Anaplastic large cell lymphoma, ALK-pos, intrathorac nodes +C2853972|T191|PT|C84.62|ICD10CM|Anaplastic large cell lymphoma, ALK-positive, intrathoracic lymph nodes|Anaplastic large cell lymphoma, ALK-positive, intrathoracic lymph nodes +C2853973|T191|AB|C84.63|ICD10CM|Anaplastic large cell lymphoma, ALK-pos, intra-abd nodes|Anaplastic large cell lymphoma, ALK-pos, intra-abd nodes +C2853973|T191|PT|C84.63|ICD10CM|Anaplastic large cell lymphoma, ALK-positive, intra-abdominal lymph nodes|Anaplastic large cell lymphoma, ALK-positive, intra-abdominal lymph nodes +C2853974|T191|PT|C84.64|ICD10CM|Anaplastic large cell lymphoma, ALK-positive, lymph nodes of axilla and upper limb|Anaplastic large cell lymphoma, ALK-positive, lymph nodes of axilla and upper limb +C2853974|T191|AB|C84.64|ICD10CM|Anaplstc lg cell lymph, ALK-pos, nodes of axla and upr limb|Anaplstc lg cell lymph, ALK-pos, nodes of axla and upr limb +C2853975|T191|PT|C84.65|ICD10CM|Anaplastic large cell lymphoma, ALK-positive, lymph nodes of inguinal region and lower limb|Anaplastic large cell lymphoma, ALK-positive, lymph nodes of inguinal region and lower limb +C2853975|T191|AB|C84.65|ICD10CM|Anaplstc lg cell lymph, ALK-pos, nodes of ing rgn & low lmb|Anaplstc lg cell lymph, ALK-pos, nodes of ing rgn & low lmb +C2853976|T191|AB|C84.66|ICD10CM|Anaplastic large cell lymphoma, ALK-pos, intrapelv nodes|Anaplastic large cell lymphoma, ALK-pos, intrapelv nodes +C2853976|T191|PT|C84.66|ICD10CM|Anaplastic large cell lymphoma, ALK-positive, intrapelvic lymph nodes|Anaplastic large cell lymphoma, ALK-positive, intrapelvic lymph nodes +C2853977|T191|AB|C84.67|ICD10CM|Anaplastic large cell lymphoma, ALK-positive, spleen|Anaplastic large cell lymphoma, ALK-positive, spleen +C2853977|T191|PT|C84.67|ICD10CM|Anaplastic large cell lymphoma, ALK-positive, spleen|Anaplastic large cell lymphoma, ALK-positive, spleen +C2853978|T191|AB|C84.68|ICD10CM|Anaplastic large cell lymphoma, ALK-pos, nodes mult site|Anaplastic large cell lymphoma, ALK-pos, nodes mult site +C2853978|T191|PT|C84.68|ICD10CM|Anaplastic large cell lymphoma, ALK-positive, lymph nodes of multiple sites|Anaplastic large cell lymphoma, ALK-positive, lymph nodes of multiple sites +C2853979|T191|PT|C84.69|ICD10CM|Anaplastic large cell lymphoma, ALK-positive, extranodal and solid organ sites|Anaplastic large cell lymphoma, ALK-positive, extranodal and solid organ sites +C2853979|T191|AB|C84.69|ICD10CM|Anaplstc lg cell lymph, ALK-pos, extrnod and solid org sites|Anaplstc lg cell lymph, ALK-pos, extrnod and solid org sites +C1332078|T191|AB|C84.7|ICD10CM|Anaplastic large cell lymphoma, ALK-negative|Anaplastic large cell lymphoma, ALK-negative +C1332078|T191|HT|C84.7|ICD10CM|Anaplastic large cell lymphoma, ALK-negative|Anaplastic large cell lymphoma, ALK-negative +C2853980|T191|AB|C84.70|ICD10CM|Anaplastic large cell lymphoma, ALK-negative, unsp site|Anaplastic large cell lymphoma, ALK-negative, unsp site +C2853980|T191|PT|C84.70|ICD10CM|Anaplastic large cell lymphoma, ALK-negative, unspecified site|Anaplastic large cell lymphoma, ALK-negative, unspecified site +C2853981|T191|PT|C84.71|ICD10CM|Anaplastic large cell lymphoma, ALK-negative, lymph nodes of head, face, and neck|Anaplastic large cell lymphoma, ALK-negative, lymph nodes of head, face, and neck +C2853981|T191|AB|C84.71|ICD10CM|Anaplstc lg cell lymph, ALK-neg, nodes of head, face, and nk|Anaplstc lg cell lymph, ALK-neg, nodes of head, face, and nk +C2853982|T191|AB|C84.72|ICD10CM|Anaplastic large cell lymphoma, ALK-neg, intrathorac nodes|Anaplastic large cell lymphoma, ALK-neg, intrathorac nodes +C2853982|T191|PT|C84.72|ICD10CM|Anaplastic large cell lymphoma, ALK-negative, intrathoracic lymph nodes|Anaplastic large cell lymphoma, ALK-negative, intrathoracic lymph nodes +C2853983|T191|AB|C84.73|ICD10CM|Anaplastic large cell lymphoma, ALK-neg, intra-abd nodes|Anaplastic large cell lymphoma, ALK-neg, intra-abd nodes +C2853983|T191|PT|C84.73|ICD10CM|Anaplastic large cell lymphoma, ALK-negative, intra-abdominal lymph nodes|Anaplastic large cell lymphoma, ALK-negative, intra-abdominal lymph nodes +C2853984|T191|PT|C84.74|ICD10CM|Anaplastic large cell lymphoma, ALK-negative, lymph nodes of axilla and upper limb|Anaplastic large cell lymphoma, ALK-negative, lymph nodes of axilla and upper limb +C2853984|T191|AB|C84.74|ICD10CM|Anaplstc lg cell lymph, ALK-neg, nodes of axla and upr limb|Anaplstc lg cell lymph, ALK-neg, nodes of axla and upr limb +C2853985|T191|PT|C84.75|ICD10CM|Anaplastic large cell lymphoma, ALK-negative, lymph nodes of inguinal region and lower limb|Anaplastic large cell lymphoma, ALK-negative, lymph nodes of inguinal region and lower limb +C2853985|T191|AB|C84.75|ICD10CM|Anaplstc lg cell lymph, ALK-neg, nodes of ing rgn & low lmb|Anaplstc lg cell lymph, ALK-neg, nodes of ing rgn & low lmb +C2853986|T191|AB|C84.76|ICD10CM|Anaplastic large cell lymphoma, ALK-neg, intrapelv nodes|Anaplastic large cell lymphoma, ALK-neg, intrapelv nodes +C2853986|T191|PT|C84.76|ICD10CM|Anaplastic large cell lymphoma, ALK-negative, intrapelvic lymph nodes|Anaplastic large cell lymphoma, ALK-negative, intrapelvic lymph nodes +C2853987|T191|AB|C84.77|ICD10CM|Anaplastic large cell lymphoma, ALK-negative, spleen|Anaplastic large cell lymphoma, ALK-negative, spleen +C2853987|T191|PT|C84.77|ICD10CM|Anaplastic large cell lymphoma, ALK-negative, spleen|Anaplastic large cell lymphoma, ALK-negative, spleen +C2853988|T191|AB|C84.78|ICD10CM|Anaplastic large cell lymphoma, ALK-neg, nodes mult site|Anaplastic large cell lymphoma, ALK-neg, nodes mult site +C2853988|T191|PT|C84.78|ICD10CM|Anaplastic large cell lymphoma, ALK-negative, lymph nodes of multiple sites|Anaplastic large cell lymphoma, ALK-negative, lymph nodes of multiple sites +C2853989|T191|PT|C84.79|ICD10CM|Anaplastic large cell lymphoma, ALK-negative, extranodal and solid organ sites|Anaplastic large cell lymphoma, ALK-negative, extranodal and solid organ sites +C2853989|T191|AB|C84.79|ICD10CM|Anaplstc lg cell lymph, ALK-neg, extrnod and solid org sites|Anaplstc lg cell lymph, ALK-neg, extrnod and solid org sites +C0079774|T191|AB|C84.9|ICD10CM|Mature T/NK-cell lymphomas, unspecified|Mature T/NK-cell lymphomas, unspecified +C0079774|T191|HT|C84.9|ICD10CM|Mature T/NK-cell lymphomas, unspecified|Mature T/NK-cell lymphomas, unspecified +C0558916|T191|ET|C84.9|ICD10CM|NK/T cell lymphoma NOS|NK/T cell lymphoma NOS +C2853991|T191|AB|C84.90|ICD10CM|Mature T/NK-cell lymphomas, unspecified, unspecified site|Mature T/NK-cell lymphomas, unspecified, unspecified site +C2853991|T191|PT|C84.90|ICD10CM|Mature T/NK-cell lymphomas, unspecified, unspecified site|Mature T/NK-cell lymphomas, unspecified, unspecified site +C2853992|T191|AB|C84.91|ICD10CM|Mature T/NK-cell lymph, unsp, nodes of head, face, and neck|Mature T/NK-cell lymph, unsp, nodes of head, face, and neck +C2853992|T191|PT|C84.91|ICD10CM|Mature T/NK-cell lymphomas, unspecified, lymph nodes of head, face, and neck|Mature T/NK-cell lymphomas, unspecified, lymph nodes of head, face, and neck +C2853993|T191|AB|C84.92|ICD10CM|Mature T/NK-cell lymphomas, unsp, intrathoracic lymph nodes|Mature T/NK-cell lymphomas, unsp, intrathoracic lymph nodes +C2853993|T191|PT|C84.92|ICD10CM|Mature T/NK-cell lymphomas, unspecified, intrathoracic lymph nodes|Mature T/NK-cell lymphomas, unspecified, intrathoracic lymph nodes +C2853994|T191|AB|C84.93|ICD10CM|Mature T/NK-cell lymphomas, unsp, intra-abd lymph nodes|Mature T/NK-cell lymphomas, unsp, intra-abd lymph nodes +C2853994|T191|PT|C84.93|ICD10CM|Mature T/NK-cell lymphomas, unspecified, intra-abdominal lymph nodes|Mature T/NK-cell lymphomas, unspecified, intra-abdominal lymph nodes +C2853995|T191|AB|C84.94|ICD10CM|Mature T/NK-cell lymph, unsp, nodes of axilla and upper limb|Mature T/NK-cell lymph, unsp, nodes of axilla and upper limb +C2853995|T191|PT|C84.94|ICD10CM|Mature T/NK-cell lymphomas, unspecified, lymph nodes of axilla and upper limb|Mature T/NK-cell lymphomas, unspecified, lymph nodes of axilla and upper limb +C2853996|T191|AB|C84.95|ICD10CM|Mature T/NK-cell lymph, unsp, nodes of ing rgn and low limb|Mature T/NK-cell lymph, unsp, nodes of ing rgn and low limb +C2853996|T191|PT|C84.95|ICD10CM|Mature T/NK-cell lymphomas, unspecified, lymph nodes of inguinal region and lower limb|Mature T/NK-cell lymphomas, unspecified, lymph nodes of inguinal region and lower limb +C2853997|T191|AB|C84.96|ICD10CM|Mature T/NK-cell lymphomas, unsp, intrapelvic lymph nodes|Mature T/NK-cell lymphomas, unsp, intrapelvic lymph nodes +C2853997|T191|PT|C84.96|ICD10CM|Mature T/NK-cell lymphomas, unspecified, intrapelvic lymph nodes|Mature T/NK-cell lymphomas, unspecified, intrapelvic lymph nodes +C2853998|T191|AB|C84.97|ICD10CM|Mature T/NK-cell lymphomas, unspecified, spleen|Mature T/NK-cell lymphomas, unspecified, spleen +C2853998|T191|PT|C84.97|ICD10CM|Mature T/NK-cell lymphomas, unspecified, spleen|Mature T/NK-cell lymphomas, unspecified, spleen +C2853999|T191|AB|C84.98|ICD10CM|Mature T/NK-cell lymphomas, unsp, lymph nodes mult site|Mature T/NK-cell lymphomas, unsp, lymph nodes mult site +C2853999|T191|PT|C84.98|ICD10CM|Mature T/NK-cell lymphomas, unspecified, lymph nodes of multiple sites|Mature T/NK-cell lymphomas, unspecified, lymph nodes of multiple sites +C2854000|T191|AB|C84.99|ICD10CM|Mature T/NK-cell lymph, unsp, extrnod and solid organ sites|Mature T/NK-cell lymph, unsp, extrnod and solid organ sites +C2854000|T191|PT|C84.99|ICD10CM|Mature T/NK-cell lymphomas, unspecified, extranodal and solid organ sites|Mature T/NK-cell lymphomas, unspecified, extranodal and solid organ sites +C2854001|T191|AB|C84.A|ICD10CM|Cutaneous T-cell lymphoma, unspecified|Cutaneous T-cell lymphoma, unspecified +C2854001|T191|HT|C84.A|ICD10CM|Cutaneous T-cell lymphoma, unspecified|Cutaneous T-cell lymphoma, unspecified +C2854002|T191|AB|C84.A0|ICD10CM|Cutaneous T-cell lymphoma, unspecified, unspecified site|Cutaneous T-cell lymphoma, unspecified, unspecified site +C2854002|T191|PT|C84.A0|ICD10CM|Cutaneous T-cell lymphoma, unspecified, unspecified site|Cutaneous T-cell lymphoma, unspecified, unspecified site +C2854003|T191|AB|C84.A1|ICD10CM|Cutan T-cell lymphoma, unsp nodes of head, face, and neck|Cutan T-cell lymphoma, unsp nodes of head, face, and neck +C2854003|T191|PT|C84.A1|ICD10CM|Cutaneous T-cell lymphoma, unspecified lymph nodes of head, face, and neck|Cutaneous T-cell lymphoma, unspecified lymph nodes of head, face, and neck +C2854004|T191|AB|C84.A2|ICD10CM|Cutaneous T-cell lymphoma, unsp, intrathoracic lymph nodes|Cutaneous T-cell lymphoma, unsp, intrathoracic lymph nodes +C2854004|T191|PT|C84.A2|ICD10CM|Cutaneous T-cell lymphoma, unspecified, intrathoracic lymph nodes|Cutaneous T-cell lymphoma, unspecified, intrathoracic lymph nodes +C2854005|T191|AB|C84.A3|ICD10CM|Cutaneous T-cell lymphoma, unsp, intra-abdominal lymph nodes|Cutaneous T-cell lymphoma, unsp, intra-abdominal lymph nodes +C2854005|T191|PT|C84.A3|ICD10CM|Cutaneous T-cell lymphoma, unspecified, intra-abdominal lymph nodes|Cutaneous T-cell lymphoma, unspecified, intra-abdominal lymph nodes +C2854006|T191|AB|C84.A4|ICD10CM|Cutan T-cell lymphoma, unsp, nodes of axilla and upper limb|Cutan T-cell lymphoma, unsp, nodes of axilla and upper limb +C2854006|T191|PT|C84.A4|ICD10CM|Cutaneous T-cell lymphoma, unspecified, lymph nodes of axilla and upper limb|Cutaneous T-cell lymphoma, unspecified, lymph nodes of axilla and upper limb +C2854007|T191|AB|C84.A5|ICD10CM|Cutan T-cell lymph, unsp, nodes of ing region and lower limb|Cutan T-cell lymph, unsp, nodes of ing region and lower limb +C2854007|T191|PT|C84.A5|ICD10CM|Cutaneous T-cell lymphoma, unspecified, lymph nodes of inguinal region and lower limb|Cutaneous T-cell lymphoma, unspecified, lymph nodes of inguinal region and lower limb +C2854008|T191|AB|C84.A6|ICD10CM|Cutaneous T-cell lymphoma, unsp, intrapelvic lymph nodes|Cutaneous T-cell lymphoma, unsp, intrapelvic lymph nodes +C2854008|T191|PT|C84.A6|ICD10CM|Cutaneous T-cell lymphoma, unspecified, intrapelvic lymph nodes|Cutaneous T-cell lymphoma, unspecified, intrapelvic lymph nodes +C2854009|T191|AB|C84.A7|ICD10CM|Cutaneous T-cell lymphoma, unspecified, spleen|Cutaneous T-cell lymphoma, unspecified, spleen +C2854009|T191|PT|C84.A7|ICD10CM|Cutaneous T-cell lymphoma, unspecified, spleen|Cutaneous T-cell lymphoma, unspecified, spleen +C2854010|T191|AB|C84.A8|ICD10CM|Cutaneous T-cell lymphoma, unsp, lymph nodes mult site|Cutaneous T-cell lymphoma, unsp, lymph nodes mult site +C2854010|T191|PT|C84.A8|ICD10CM|Cutaneous T-cell lymphoma, unspecified, lymph nodes of multiple sites|Cutaneous T-cell lymphoma, unspecified, lymph nodes of multiple sites +C2854011|T191|AB|C84.A9|ICD10CM|Cutan T-cell lymphoma, unsp, extrnod and solid organ sites|Cutan T-cell lymphoma, unsp, extrnod and solid organ sites +C2854011|T191|PT|C84.A9|ICD10CM|Cutaneous T-cell lymphoma, unspecified, extranodal and solid organ sites|Cutaneous T-cell lymphoma, unspecified, extranodal and solid organ sites +C2854012|T191|AB|C84.Z|ICD10CM|Other mature T/NK-cell lymphomas|Other mature T/NK-cell lymphomas +C2854012|T191|HT|C84.Z|ICD10CM|Other mature T/NK-cell lymphomas|Other mature T/NK-cell lymphomas +C2854013|T191|AB|C84.Z0|ICD10CM|Other mature T/NK-cell lymphomas, unspecified site|Other mature T/NK-cell lymphomas, unspecified site +C2854013|T191|PT|C84.Z0|ICD10CM|Other mature T/NK-cell lymphomas, unspecified site|Other mature T/NK-cell lymphomas, unspecified site +C2854014|T191|AB|C84.Z1|ICD10CM|Oth mature T/NK-cell lymph, nodes of head, face, and neck|Oth mature T/NK-cell lymph, nodes of head, face, and neck +C2854014|T191|PT|C84.Z1|ICD10CM|Other mature T/NK-cell lymphomas, lymph nodes of head, face, and neck|Other mature T/NK-cell lymphomas, lymph nodes of head, face, and neck +C2854015|T191|AB|C84.Z2|ICD10CM|Other mature T/NK-cell lymphomas, intrathoracic lymph nodes|Other mature T/NK-cell lymphomas, intrathoracic lymph nodes +C2854015|T191|PT|C84.Z2|ICD10CM|Other mature T/NK-cell lymphomas, intrathoracic lymph nodes|Other mature T/NK-cell lymphomas, intrathoracic lymph nodes +C2854016|T191|AB|C84.Z3|ICD10CM|Oth mature T/NK-cell lymphomas, intra-abdominal lymph nodes|Oth mature T/NK-cell lymphomas, intra-abdominal lymph nodes +C2854016|T191|PT|C84.Z3|ICD10CM|Other mature T/NK-cell lymphomas, intra-abdominal lymph nodes|Other mature T/NK-cell lymphomas, intra-abdominal lymph nodes +C2854017|T191|AB|C84.Z4|ICD10CM|Oth mature T/NK-cell lymph, nodes of axilla and upper limb|Oth mature T/NK-cell lymph, nodes of axilla and upper limb +C2854017|T191|PT|C84.Z4|ICD10CM|Other mature T/NK-cell lymphomas, lymph nodes of axilla and upper limb|Other mature T/NK-cell lymphomas, lymph nodes of axilla and upper limb +C2854018|T191|AB|C84.Z5|ICD10CM|Oth mature T/NK-cell lymph, nodes of ing rgn and lower limb|Oth mature T/NK-cell lymph, nodes of ing rgn and lower limb +C2854018|T191|PT|C84.Z5|ICD10CM|Other mature T/NK-cell lymphomas, lymph nodes of inguinal region and lower limb|Other mature T/NK-cell lymphomas, lymph nodes of inguinal region and lower limb +C2854019|T191|AB|C84.Z6|ICD10CM|Other mature T/NK-cell lymphomas, intrapelvic lymph nodes|Other mature T/NK-cell lymphomas, intrapelvic lymph nodes +C2854019|T191|PT|C84.Z6|ICD10CM|Other mature T/NK-cell lymphomas, intrapelvic lymph nodes|Other mature T/NK-cell lymphomas, intrapelvic lymph nodes +C2854020|T191|AB|C84.Z7|ICD10CM|Other mature T/NK-cell lymphomas, spleen|Other mature T/NK-cell lymphomas, spleen +C2854020|T191|PT|C84.Z7|ICD10CM|Other mature T/NK-cell lymphomas, spleen|Other mature T/NK-cell lymphomas, spleen +C2854021|T191|AB|C84.Z8|ICD10CM|Oth mature T/NK-cell lymphomas, lymph nodes mult site|Oth mature T/NK-cell lymphomas, lymph nodes mult site +C2854021|T191|PT|C84.Z8|ICD10CM|Other mature T/NK-cell lymphomas, lymph nodes of multiple sites|Other mature T/NK-cell lymphomas, lymph nodes of multiple sites +C2854022|T191|AB|C84.Z9|ICD10CM|Oth mature T/NK-cell lymph, extrnod and solid organ sites|Oth mature T/NK-cell lymph, extrnod and solid organ sites +C2854022|T191|PT|C84.Z9|ICD10CM|Other mature T/NK-cell lymphomas, extranodal and solid organ sites|Other mature T/NK-cell lymphomas, extranodal and solid organ sites +C0494172|T191|AB|C85|ICD10CM|Oth and unspecified types of non-Hodgkin lymphoma|Oth and unspecified types of non-Hodgkin lymphoma +C0494172|T191|HT|C85|ICD10|Other and unspecified types of non-Hodgkin's lymphoma|Other and unspecified types of non-Hodgkin's lymphoma +C0494172|T191|HT|C85|ICD10CM|Other specified and unspecified types of non-Hodgkin lymphoma|Other specified and unspecified types of non-Hodgkin lymphoma +C3714542|T191|PT|C85.0|ICD10|Lymphosarcoma|Lymphosarcoma +C0348396|T191|PT|C85.1|ICD10|B-cell lymphoma, unspecified|B-cell lymphoma, unspecified +C0348396|T191|AB|C85.1|ICD10CM|Unspecified B-cell lymphoma|Unspecified B-cell lymphoma +C0348396|T191|HT|C85.1|ICD10CM|Unspecified B-cell lymphoma|Unspecified B-cell lymphoma +C2854023|T191|AB|C85.10|ICD10CM|Unspecified B-cell lymphoma, unspecified site|Unspecified B-cell lymphoma, unspecified site +C2854023|T191|PT|C85.10|ICD10CM|Unspecified B-cell lymphoma, unspecified site|Unspecified B-cell lymphoma, unspecified site +C2854024|T191|AB|C85.11|ICD10CM|Unsp B-cell lymphoma, lymph nodes of head, face, and neck|Unsp B-cell lymphoma, lymph nodes of head, face, and neck +C2854024|T191|PT|C85.11|ICD10CM|Unspecified B-cell lymphoma, lymph nodes of head, face, and neck|Unspecified B-cell lymphoma, lymph nodes of head, face, and neck +C2854025|T191|AB|C85.12|ICD10CM|Unspecified B-cell lymphoma, intrathoracic lymph nodes|Unspecified B-cell lymphoma, intrathoracic lymph nodes +C2854025|T191|PT|C85.12|ICD10CM|Unspecified B-cell lymphoma, intrathoracic lymph nodes|Unspecified B-cell lymphoma, intrathoracic lymph nodes +C2854026|T191|AB|C85.13|ICD10CM|Unspecified B-cell lymphoma, intra-abdominal lymph nodes|Unspecified B-cell lymphoma, intra-abdominal lymph nodes +C2854026|T191|PT|C85.13|ICD10CM|Unspecified B-cell lymphoma, intra-abdominal lymph nodes|Unspecified B-cell lymphoma, intra-abdominal lymph nodes +C2854027|T191|AB|C85.14|ICD10CM|Unsp B-cell lymphoma, lymph nodes of axilla and upper limb|Unsp B-cell lymphoma, lymph nodes of axilla and upper limb +C2854027|T191|PT|C85.14|ICD10CM|Unspecified B-cell lymphoma, lymph nodes of axilla and upper limb|Unspecified B-cell lymphoma, lymph nodes of axilla and upper limb +C2854028|T191|AB|C85.15|ICD10CM|Unsp B-cell lymphoma, nodes of ing region and lower limb|Unsp B-cell lymphoma, nodes of ing region and lower limb +C2854028|T191|PT|C85.15|ICD10CM|Unspecified B-cell lymphoma, lymph nodes of inguinal region and lower limb|Unspecified B-cell lymphoma, lymph nodes of inguinal region and lower limb +C2854029|T191|AB|C85.16|ICD10CM|Unspecified B-cell lymphoma, intrapelvic lymph nodes|Unspecified B-cell lymphoma, intrapelvic lymph nodes +C2854029|T191|PT|C85.16|ICD10CM|Unspecified B-cell lymphoma, intrapelvic lymph nodes|Unspecified B-cell lymphoma, intrapelvic lymph nodes +C2854030|T191|AB|C85.17|ICD10CM|Unspecified B-cell lymphoma, spleen|Unspecified B-cell lymphoma, spleen +C2854030|T191|PT|C85.17|ICD10CM|Unspecified B-cell lymphoma, spleen|Unspecified B-cell lymphoma, spleen +C2854031|T191|AB|C85.18|ICD10CM|Unspecified B-cell lymphoma, lymph nodes of multiple sites|Unspecified B-cell lymphoma, lymph nodes of multiple sites +C2854031|T191|PT|C85.18|ICD10CM|Unspecified B-cell lymphoma, lymph nodes of multiple sites|Unspecified B-cell lymphoma, lymph nodes of multiple sites +C2854032|T191|AB|C85.19|ICD10CM|Unsp B-cell lymphoma, extranodal and solid organ sites|Unsp B-cell lymphoma, extranodal and solid organ sites +C2854032|T191|PT|C85.19|ICD10CM|Unspecified B-cell lymphoma, extranodal and solid organ sites|Unspecified B-cell lymphoma, extranodal and solid organ sites +C1292754|T191|HT|C85.2|ICD10CM|Mediastinal (thymic) large B-cell lymphoma|Mediastinal (thymic) large B-cell lymphoma +C1292754|T191|AB|C85.2|ICD10CM|Mediastinal (thymic) large B-cell lymphoma|Mediastinal (thymic) large B-cell lymphoma +C2854033|T191|AB|C85.20|ICD10CM|Mediastinal (thymic) large B-cell lymphoma, unspecified site|Mediastinal (thymic) large B-cell lymphoma, unspecified site +C2854033|T191|PT|C85.20|ICD10CM|Mediastinal (thymic) large B-cell lymphoma, unspecified site|Mediastinal (thymic) large B-cell lymphoma, unspecified site +C2854034|T191|PT|C85.21|ICD10CM|Mediastinal (thymic) large B-cell lymphoma, lymph nodes of head, face, and neck|Mediastinal (thymic) large B-cell lymphoma, lymph nodes of head, face, and neck +C2854034|T191|AB|C85.21|ICD10CM|Mediastnl large B-cell lymph, nodes of head, face, and neck|Mediastnl large B-cell lymph, nodes of head, face, and neck +C2854035|T191|PT|C85.22|ICD10CM|Mediastinal (thymic) large B-cell lymphoma, intrathoracic lymph nodes|Mediastinal (thymic) large B-cell lymphoma, intrathoracic lymph nodes +C2854035|T191|AB|C85.22|ICD10CM|Mediastnl (thymic) large B-cell lymphoma, intrathorac nodes|Mediastnl (thymic) large B-cell lymphoma, intrathorac nodes +C2854036|T191|AB|C85.23|ICD10CM|Mediastinal (thymic) large B-cell lymphoma, intra-abd nodes|Mediastinal (thymic) large B-cell lymphoma, intra-abd nodes +C2854036|T191|PT|C85.23|ICD10CM|Mediastinal (thymic) large B-cell lymphoma, intra-abdominal lymph nodes|Mediastinal (thymic) large B-cell lymphoma, intra-abdominal lymph nodes +C2854037|T191|PT|C85.24|ICD10CM|Mediastinal (thymic) large B-cell lymphoma, lymph nodes of axilla and upper limb|Mediastinal (thymic) large B-cell lymphoma, lymph nodes of axilla and upper limb +C2854037|T191|AB|C85.24|ICD10CM|Mediastnl large B-cell lymph, nodes of axilla and upper limb|Mediastnl large B-cell lymph, nodes of axilla and upper limb +C2854038|T191|PT|C85.25|ICD10CM|Mediastinal (thymic) large B-cell lymphoma, lymph nodes of inguinal region and lower limb|Mediastinal (thymic) large B-cell lymphoma, lymph nodes of inguinal region and lower limb +C2854038|T191|AB|C85.25|ICD10CM|Mediastnl lg B-cell lymph, nodes of ing rgn and lower limb|Mediastnl lg B-cell lymph, nodes of ing rgn and lower limb +C2854039|T191|AB|C85.26|ICD10CM|Mediastinal (thymic) large B-cell lymphoma, intrapelv nodes|Mediastinal (thymic) large B-cell lymphoma, intrapelv nodes +C2854039|T191|PT|C85.26|ICD10CM|Mediastinal (thymic) large B-cell lymphoma, intrapelvic lymph nodes|Mediastinal (thymic) large B-cell lymphoma, intrapelvic lymph nodes +C2854040|T191|AB|C85.27|ICD10CM|Mediastinal (thymic) large B-cell lymphoma, spleen|Mediastinal (thymic) large B-cell lymphoma, spleen +C2854040|T191|PT|C85.27|ICD10CM|Mediastinal (thymic) large B-cell lymphoma, spleen|Mediastinal (thymic) large B-cell lymphoma, spleen +C2854041|T191|PT|C85.28|ICD10CM|Mediastinal (thymic) large B-cell lymphoma, lymph nodes of multiple sites|Mediastinal (thymic) large B-cell lymphoma, lymph nodes of multiple sites +C2854041|T191|AB|C85.28|ICD10CM|Mediastinal (thymic) large B-cell lymphoma, nodes mult site|Mediastinal (thymic) large B-cell lymphoma, nodes mult site +C2854042|T191|PT|C85.29|ICD10CM|Mediastinal (thymic) large B-cell lymphoma, extranodal and solid organ sites|Mediastinal (thymic) large B-cell lymphoma, extranodal and solid organ sites +C2854042|T191|AB|C85.29|ICD10CM|Mediastnl large B-cell lymph, extrnod and solid organ sites|Mediastnl large B-cell lymph, extrnod and solid organ sites +C0348390|T191|PT|C85.7|ICD10|Other specified types of non-Hodgkin's lymphoma|Other specified types of non-Hodgkin's lymphoma +C0348390|T191|AB|C85.8|ICD10CM|Other specified types of non-Hodgkin lymphoma|Other specified types of non-Hodgkin lymphoma +C0348390|T191|HT|C85.8|ICD10CM|Other specified types of non-Hodgkin lymphoma|Other specified types of non-Hodgkin lymphoma +C2854043|T191|AB|C85.80|ICD10CM|Oth types of non-Hodgkin lymphoma, unspecified site|Oth types of non-Hodgkin lymphoma, unspecified site +C2854043|T191|PT|C85.80|ICD10CM|Other specified types of non-Hodgkin lymphoma, unspecified site|Other specified types of non-Hodgkin lymphoma, unspecified site +C2854044|T191|AB|C85.81|ICD10CM|Oth types of non-hodg lymph, nodes of head, face, and neck|Oth types of non-hodg lymph, nodes of head, face, and neck +C2854044|T191|PT|C85.81|ICD10CM|Other specified types of non-Hodgkin lymphoma, lymph nodes of head, face, and neck|Other specified types of non-Hodgkin lymphoma, lymph nodes of head, face, and neck +C2854045|T191|AB|C85.82|ICD10CM|Oth types of non-Hodgkin lymphoma, intrathoracic lymph nodes|Oth types of non-Hodgkin lymphoma, intrathoracic lymph nodes +C2854045|T191|PT|C85.82|ICD10CM|Other specified types of non-Hodgkin lymphoma, intrathoracic lymph nodes|Other specified types of non-Hodgkin lymphoma, intrathoracic lymph nodes +C2854046|T191|AB|C85.83|ICD10CM|Oth types of non-Hodgkin lymphoma, intra-abd lymph nodes|Oth types of non-Hodgkin lymphoma, intra-abd lymph nodes +C2854046|T191|PT|C85.83|ICD10CM|Other specified types of non-Hodgkin lymphoma, intra-abdominal lymph nodes|Other specified types of non-Hodgkin lymphoma, intra-abdominal lymph nodes +C2854047|T191|AB|C85.84|ICD10CM|Oth types of non-hodg lymph, nodes of axilla and upper limb|Oth types of non-hodg lymph, nodes of axilla and upper limb +C2854047|T191|PT|C85.84|ICD10CM|Other specified types of non-Hodgkin lymphoma, lymph nodes of axilla and upper limb|Other specified types of non-Hodgkin lymphoma, lymph nodes of axilla and upper limb +C2854048|T191|AB|C85.85|ICD10CM|Oth types of non-hodg lymph, nodes of ing rgn and lower limb|Oth types of non-hodg lymph, nodes of ing rgn and lower limb +C2854048|T191|PT|C85.85|ICD10CM|Other specified types of non-Hodgkin lymphoma, lymph nodes of inguinal region and lower limb|Other specified types of non-Hodgkin lymphoma, lymph nodes of inguinal region and lower limb +C2854049|T191|AB|C85.86|ICD10CM|Oth types of non-Hodgkin lymphoma, intrapelvic lymph nodes|Oth types of non-Hodgkin lymphoma, intrapelvic lymph nodes +C2854049|T191|PT|C85.86|ICD10CM|Other specified types of non-Hodgkin lymphoma, intrapelvic lymph nodes|Other specified types of non-Hodgkin lymphoma, intrapelvic lymph nodes +C2854050|T191|AB|C85.87|ICD10CM|Other specified types of non-Hodgkin lymphoma, spleen|Other specified types of non-Hodgkin lymphoma, spleen +C2854050|T191|PT|C85.87|ICD10CM|Other specified types of non-Hodgkin lymphoma, spleen|Other specified types of non-Hodgkin lymphoma, spleen +C2854051|T191|AB|C85.88|ICD10CM|Oth types of non-Hodgkin lymphoma, lymph nodes mult site|Oth types of non-Hodgkin lymphoma, lymph nodes mult site +C2854051|T191|PT|C85.88|ICD10CM|Other specified types of non-Hodgkin lymphoma, lymph nodes of multiple sites|Other specified types of non-Hodgkin lymphoma, lymph nodes of multiple sites +C2854052|T191|AB|C85.89|ICD10CM|Oth types of non-hodg lymph, extrnod and solid organ sites|Oth types of non-hodg lymph, extrnod and solid organ sites +C2854052|T191|PT|C85.89|ICD10CM|Other specified types of non-Hodgkin lymphoma, extranodal and solid organ sites|Other specified types of non-Hodgkin lymphoma, extranodal and solid organ sites +C0024299|T191|ET|C85.9|ICD10CM|Lymphoma NOS|Lymphoma NOS +C0024299|T191|ET|C85.9|ICD10CM|Malignant lymphoma NOS|Malignant lymphoma NOS +C0024305|T191|ET|C85.9|ICD10CM|Non-Hodgkin lymphoma NOS|Non-Hodgkin lymphoma NOS +C2854053|T191|AB|C85.9|ICD10CM|Non-Hodgkin lymphoma, unspecified|Non-Hodgkin lymphoma, unspecified +C2854053|T191|HT|C85.9|ICD10CM|Non-Hodgkin lymphoma, unspecified|Non-Hodgkin lymphoma, unspecified +C0024305|T191|PT|C85.9|ICD10|Non-Hodgkin's lymphoma, unspecified type|Non-Hodgkin's lymphoma, unspecified type +C2854054|T191|AB|C85.90|ICD10CM|Non-Hodgkin lymphoma, unspecified, unspecified site|Non-Hodgkin lymphoma, unspecified, unspecified site +C2854054|T191|PT|C85.90|ICD10CM|Non-Hodgkin lymphoma, unspecified, unspecified site|Non-Hodgkin lymphoma, unspecified, unspecified site +C2854055|T191|AB|C85.91|ICD10CM|Non-Hodgkin lymphoma, unsp, nodes of head, face, and neck|Non-Hodgkin lymphoma, unsp, nodes of head, face, and neck +C2854055|T191|PT|C85.91|ICD10CM|Non-Hodgkin lymphoma, unspecified, lymph nodes of head, face, and neck|Non-Hodgkin lymphoma, unspecified, lymph nodes of head, face, and neck +C2854056|T191|AB|C85.92|ICD10CM|Non-Hodgkin lymphoma, unspecified, intrathoracic lymph nodes|Non-Hodgkin lymphoma, unspecified, intrathoracic lymph nodes +C2854056|T191|PT|C85.92|ICD10CM|Non-Hodgkin lymphoma, unspecified, intrathoracic lymph nodes|Non-Hodgkin lymphoma, unspecified, intrathoracic lymph nodes +C2854057|T191|AB|C85.93|ICD10CM|Non-Hodgkin lymphoma, unsp, intra-abdominal lymph nodes|Non-Hodgkin lymphoma, unsp, intra-abdominal lymph nodes +C2854057|T191|PT|C85.93|ICD10CM|Non-Hodgkin lymphoma, unspecified, intra-abdominal lymph nodes|Non-Hodgkin lymphoma, unspecified, intra-abdominal lymph nodes +C2854058|T191|AB|C85.94|ICD10CM|Non-Hodgkin lymphoma, unsp, nodes of axilla and upper limb|Non-Hodgkin lymphoma, unsp, nodes of axilla and upper limb +C2854058|T191|PT|C85.94|ICD10CM|Non-Hodgkin lymphoma, unspecified, lymph nodes of axilla and upper limb|Non-Hodgkin lymphoma, unspecified, lymph nodes of axilla and upper limb +C2854059|T191|AB|C85.95|ICD10CM|Non-hodg lymphoma, unsp, nodes of ing region and lower limb|Non-hodg lymphoma, unsp, nodes of ing region and lower limb +C2854059|T191|PT|C85.95|ICD10CM|Non-Hodgkin lymphoma, unspecified, lymph nodes of inguinal region and lower limb|Non-Hodgkin lymphoma, unspecified, lymph nodes of inguinal region and lower limb +C2854060|T191|AB|C85.96|ICD10CM|Non-Hodgkin lymphoma, unspecified, intrapelvic lymph nodes|Non-Hodgkin lymphoma, unspecified, intrapelvic lymph nodes +C2854060|T191|PT|C85.96|ICD10CM|Non-Hodgkin lymphoma, unspecified, intrapelvic lymph nodes|Non-Hodgkin lymphoma, unspecified, intrapelvic lymph nodes +C2854061|T191|AB|C85.97|ICD10CM|Non-Hodgkin lymphoma, unspecified, spleen|Non-Hodgkin lymphoma, unspecified, spleen +C2854061|T191|PT|C85.97|ICD10CM|Non-Hodgkin lymphoma, unspecified, spleen|Non-Hodgkin lymphoma, unspecified, spleen +C2854062|T191|AB|C85.98|ICD10CM|Non-Hodgkin lymphoma, unsp, lymph nodes of multiple sites|Non-Hodgkin lymphoma, unsp, lymph nodes of multiple sites +C2854062|T191|PT|C85.98|ICD10CM|Non-Hodgkin lymphoma, unspecified, lymph nodes of multiple sites|Non-Hodgkin lymphoma, unspecified, lymph nodes of multiple sites +C2854063|T191|AB|C85.99|ICD10CM|Non-Hodgkin lymphoma, unsp, extranodal and solid organ sites|Non-Hodgkin lymphoma, unsp, extranodal and solid organ sites +C2854063|T191|PT|C85.99|ICD10CM|Non-Hodgkin lymphoma, unspecified, extranodal and solid organ sites|Non-Hodgkin lymphoma, unspecified, extranodal and solid organ sites +C2854064|T191|AB|C86|ICD10CM|Other specified types of T/NK-cell lymphoma|Other specified types of T/NK-cell lymphoma +C2854064|T191|HT|C86|ICD10CM|Other specified types of T/NK-cell lymphoma|Other specified types of T/NK-cell lymphoma +C0392788|T191|PT|C86.0|ICD10CM|Extranodal NK/T-cell lymphoma, nasal type|Extranodal NK/T-cell lymphoma, nasal type +C0392788|T191|AB|C86.0|ICD10CM|Extranodal NK/T-cell lymphoma, nasal type|Extranodal NK/T-cell lymphoma, nasal type +C2854065|T047|ET|C86.1|ICD10CM|Alpha-beta and gamma delta types|Alpha-beta and gamma delta types +C1333984|T191|PT|C86.1|ICD10CM|Hepatosplenic T-cell lymphoma|Hepatosplenic T-cell lymphoma +C1333984|T191|AB|C86.1|ICD10CM|Hepatosplenic T-cell lymphoma|Hepatosplenic T-cell lymphoma +C0456889|T191|ET|C86.2|ICD10CM|Enteropathy associated T-cell lymphoma|Enteropathy associated T-cell lymphoma +C2854066|T191|AB|C86.2|ICD10CM|Enteropathy-type (intestinal) T-cell lymphoma|Enteropathy-type (intestinal) T-cell lymphoma +C2854066|T191|PT|C86.2|ICD10CM|Enteropathy-type (intestinal) T-cell lymphoma|Enteropathy-type (intestinal) T-cell lymphoma +C0522624|T191|PT|C86.3|ICD10CM|Subcutaneous panniculitis-like T-cell lymphoma|Subcutaneous panniculitis-like T-cell lymphoma +C0522624|T191|AB|C86.3|ICD10CM|Subcutaneous panniculitis-like T-cell lymphoma|Subcutaneous panniculitis-like T-cell lymphoma +C1301363|T191|PT|C86.4|ICD10CM|Blastic NK-cell lymphoma|Blastic NK-cell lymphoma +C1301363|T191|AB|C86.4|ICD10CM|Blastic NK-cell lymphoma|Blastic NK-cell lymphoma +C4509017|T191|ET|C86.4|ICD10CM|Blastic plasmacytoid dendritic cell neoplasm (BPDCN)|Blastic plasmacytoid dendritic cell neoplasm (BPDCN) +C0020981|T191|ET|C86.5|ICD10CM|Angioimmunoblastic lymphadenopathy with dysproteinemia (AILD)|Angioimmunoblastic lymphadenopathy with dysproteinemia (AILD) +C0020981|T191|PT|C86.5|ICD10CM|Angioimmunoblastic T-cell lymphoma|Angioimmunoblastic T-cell lymphoma +C0020981|T191|AB|C86.5|ICD10CM|Angioimmunoblastic T-cell lymphoma|Angioimmunoblastic T-cell lymphoma +C0206182|T191|ET|C86.6|ICD10CM|Lymphomatoid papulosis|Lymphomatoid papulosis +C1301362|T191|ET|C86.6|ICD10CM|Primary cutaneous anaplastic large cell lymphoma|Primary cutaneous anaplastic large cell lymphoma +C1301362|T191|ET|C86.6|ICD10CM|Primary cutaneous CD30-positive large T-cell lymphoma|Primary cutaneous CD30-positive large T-cell lymphoma +C2854068|T191|AB|C86.6|ICD10CM|Primary cutaneous CD30-positive T-cell proliferations|Primary cutaneous CD30-positive T-cell proliferations +C2854068|T191|PT|C86.6|ICD10CM|Primary cutaneous CD30-positive T-cell proliferations|Primary cutaneous CD30-positive T-cell proliferations +C2854069|T191|AB|C88|ICD10CM|Malig immunoproliferative dis and certain oth B-cell lymph|Malig immunoproliferative dis and certain oth B-cell lymph +C1264191|T191|HT|C88|ICD10|Malignant immunoproliferative diseases|Malignant immunoproliferative diseases +C2854069|T191|HT|C88|ICD10CM|Malignant immunoproliferative diseases and certain other B-cell lymphomas|Malignant immunoproliferative diseases and certain other B-cell lymphomas +C2854070|T191|ET|C88.0|ICD10CM|Lymphoplasmacytic lymphoma with IgM-production|Lymphoplasmacytic lymphoma with IgM-production +C2854071|T191|ET|C88.0|ICD10CM|Macroglobulinemia (idiopathic) (primary)|Macroglobulinemia (idiopathic) (primary) +C0024419|T191|AB|C88.0|ICD10CM|Waldenstrom macroglobulinemia|Waldenstrom macroglobulinemia +C0024419|T191|PT|C88.0|ICD10CM|Waldenström macroglobulinemia|Waldenström macroglobulinemia +C0024419|T191|PT|C88.0|ICD10|Waldenstrom's macroglobulinaemia|Waldenstrom's macroglobulinaemia +C0024419|T191|PT|C88.0|ICD10AE|Waldenstrom's macroglobulinemia|Waldenstrom's macroglobulinemia +C0021071|T191|PT|C88.1|ICD10|Alpha heavy chain disease|Alpha heavy chain disease +C0018854|T047|ET|C88.2|ICD10CM|Franklin disease|Franklin disease +C0018854|T047|ET|C88.2|ICD10CM|Gamma heavy chain disease|Gamma heavy chain disease +C0018854|T047|PT|C88.2|ICD10|Gamma heavy chain disease|Gamma heavy chain disease +C0018852|T191|PT|C88.2|ICD10CM|Heavy chain disease|Heavy chain disease +C0018852|T191|AB|C88.2|ICD10CM|Heavy chain disease|Heavy chain disease +C0242310|T191|ET|C88.2|ICD10CM|Mu heavy chain disease|Mu heavy chain disease +C0021071|T191|ET|C88.3|ICD10CM|Alpha heavy chain disease|Alpha heavy chain disease +C0021071|T191|PT|C88.3|ICD10CM|Immunoproliferative small intestinal disease|Immunoproliferative small intestinal disease +C0021071|T191|AB|C88.3|ICD10CM|Immunoproliferative small intestinal disease|Immunoproliferative small intestinal disease +C0021071|T191|PT|C88.3|ICD10|Immunoproliferative small intestinal disease|Immunoproliferative small intestinal disease +C0021071|T191|ET|C88.3|ICD10CM|Mediterranean lymphoma|Mediterranean lymphoma +C0242647|T191|PT|C88.4|ICD10CM|Extranodal marginal zone B-cell lymphoma of mucosa-associated lymphoid tissue [MALT-lymphoma]|Extranodal marginal zone B-cell lymphoma of mucosa-associated lymphoid tissue [MALT-lymphoma] +C0242647|T191|AB|C88.4|ICD10CM|Extrnod mrgnl zn B-cell lymph of mucosa-assoc lymphoid tiss|Extrnod mrgnl zn B-cell lymph of mucosa-assoc lymphoid tiss +C2854073|T191|ET|C88.4|ICD10CM|Lymphoma of bronchial-associated lymphoid tissue [BALT-lymphoma]|Lymphoma of bronchial-associated lymphoid tissue [BALT-lymphoma] +C2854074|T191|ET|C88.4|ICD10CM|Lymphoma of skin-associated lymphoid tissue [SALT-lymphoma]|Lymphoma of skin-associated lymphoid tissue [SALT-lymphoma] +C0348391|T191|PT|C88.7|ICD10|Other malignant immunoproliferative diseases|Other malignant immunoproliferative diseases +C0348391|T191|PT|C88.8|ICD10CM|Other malignant immunoproliferative diseases|Other malignant immunoproliferative diseases +C0348391|T191|AB|C88.8|ICD10CM|Other malignant immunoproliferative diseases|Other malignant immunoproliferative diseases +C0021070|T191|ET|C88.9|ICD10CM|Immunoproliferative disease NOS|Immunoproliferative disease NOS +C1264191|T191|PT|C88.9|ICD10|Malignant immunoproliferative disease, unspecified|Malignant immunoproliferative disease, unspecified +C1264191|T191|PT|C88.9|ICD10CM|Malignant immunoproliferative disease, unspecified|Malignant immunoproliferative disease, unspecified +C1264191|T191|AB|C88.9|ICD10CM|Malignant immunoproliferative disease, unspecified|Malignant immunoproliferative disease, unspecified +C0494174|T191|AB|C90|ICD10CM|Multiple myeloma and malignant plasma cell neoplasms|Multiple myeloma and malignant plasma cell neoplasms +C0494174|T191|HT|C90|ICD10CM|Multiple myeloma and malignant plasma cell neoplasms|Multiple myeloma and malignant plasma cell neoplasms +C0494174|T191|HT|C90|ICD10|Multiple myeloma and malignant plasma cell neoplasms|Multiple myeloma and malignant plasma cell neoplasms +C0026764|T191|ET|C90.0|ICD10CM|Kahler's disease|Kahler's disease +C2854075|T191|ET|C90.0|ICD10CM|Medullary plasmacytoma|Medullary plasmacytoma +C0026764|T191|HT|C90.0|ICD10CM|Multiple myeloma|Multiple myeloma +C0026764|T191|AB|C90.0|ICD10CM|Multiple myeloma|Multiple myeloma +C0026764|T191|PT|C90.0|ICD10|Multiple myeloma|Multiple myeloma +C0026764|T191|ET|C90.0|ICD10CM|Myelomatosis|Myelomatosis +C0026764|T191|ET|C90.0|ICD10CM|Plasma cell myeloma|Plasma cell myeloma +C0026764|T191|ET|C90.00|ICD10CM|Multiple myeloma NOS|Multiple myeloma NOS +C2854076|T191|AB|C90.00|ICD10CM|Multiple myeloma not having achieved remission|Multiple myeloma not having achieved remission +C2854076|T191|PT|C90.00|ICD10CM|Multiple myeloma not having achieved remission|Multiple myeloma not having achieved remission +C2349260|T191|ET|C90.00|ICD10CM|Multiple myeloma with failed remission|Multiple myeloma with failed remission +C0153869|T191|PT|C90.01|ICD10CM|Multiple myeloma in remission|Multiple myeloma in remission +C0153869|T191|AB|C90.01|ICD10CM|Multiple myeloma in remission|Multiple myeloma in remission +C2349261|T191|AB|C90.02|ICD10CM|Multiple myeloma in relapse|Multiple myeloma in relapse +C2349261|T191|PT|C90.02|ICD10CM|Multiple myeloma in relapse|Multiple myeloma in relapse +C0023484|T191|PT|C90.1|ICD10|Plasma cell leukaemia|Plasma cell leukaemia +C0023484|T191|HT|C90.1|ICD10CM|Plasma cell leukemia|Plasma cell leukemia +C0023484|T191|AB|C90.1|ICD10CM|Plasma cell leukemia|Plasma cell leukemia +C0023484|T191|PT|C90.1|ICD10AE|Plasma cell leukemia|Plasma cell leukemia +C0023484|T191|ET|C90.1|ICD10CM|Plasmacytic leukemia|Plasmacytic leukemia +C0023484|T191|ET|C90.10|ICD10CM|Plasma cell leukemia NOS|Plasma cell leukemia NOS +C2854077|T191|AB|C90.10|ICD10CM|Plasma cell leukemia not having achieved remission|Plasma cell leukemia not having achieved remission +C2854077|T191|PT|C90.10|ICD10CM|Plasma cell leukemia not having achieved remission|Plasma cell leukemia not having achieved remission +C2349262|T191|ET|C90.10|ICD10CM|Plasma cell leukemia with failed remission|Plasma cell leukemia with failed remission +C0153871|T191|PT|C90.11|ICD10CM|Plasma cell leukemia in remission|Plasma cell leukemia in remission +C0153871|T191|AB|C90.11|ICD10CM|Plasma cell leukemia in remission|Plasma cell leukemia in remission +C2349263|T191|PT|C90.12|ICD10CM|Plasma cell leukemia in relapse|Plasma cell leukemia in relapse +C2349263|T191|AB|C90.12|ICD10CM|Plasma cell leukemia in relapse|Plasma cell leukemia in relapse +C0278619|T191|HT|C90.2|ICD10CM|Extramedullary plasmacytoma|Extramedullary plasmacytoma +C0278619|T191|AB|C90.2|ICD10CM|Extramedullary plasmacytoma|Extramedullary plasmacytoma +C0278619|T191|PT|C90.2|ICD10|Plasmacytoma, extramedullary|Plasmacytoma, extramedullary +C0278619|T191|ET|C90.20|ICD10CM|Extramedullary plasmacytoma NOS|Extramedullary plasmacytoma NOS +C2854079|T191|AB|C90.20|ICD10CM|Extramedullary plasmacytoma not having achieved remission|Extramedullary plasmacytoma not having achieved remission +C2854079|T191|PT|C90.20|ICD10CM|Extramedullary plasmacytoma not having achieved remission|Extramedullary plasmacytoma not having achieved remission +C2854078|T047|ET|C90.20|ICD10CM|Extramedullary plasmacytoma with failed remission|Extramedullary plasmacytoma with failed remission +C0836956|T191|AB|C90.21|ICD10CM|Extramedullary plasmacytoma in remission|Extramedullary plasmacytoma in remission +C0836956|T191|PT|C90.21|ICD10CM|Extramedullary plasmacytoma in remission|Extramedullary plasmacytoma in remission +C2854080|T191|AB|C90.22|ICD10CM|Extramedullary plasmacytoma in relapse|Extramedullary plasmacytoma in relapse +C2854080|T191|PT|C90.22|ICD10CM|Extramedullary plasmacytoma in relapse|Extramedullary plasmacytoma in relapse +C2854081|T191|ET|C90.3|ICD10CM|Localized malignant plasma cell tumor NOS|Localized malignant plasma cell tumor NOS +C0032131|T191|ET|C90.3|ICD10CM|Plasmacytoma NOS|Plasmacytoma NOS +C0032131|T191|ET|C90.3|ICD10CM|Solitary myeloma|Solitary myeloma +C0032131|T191|HT|C90.3|ICD10CM|Solitary plasmacytoma|Solitary plasmacytoma +C0032131|T191|AB|C90.3|ICD10CM|Solitary plasmacytoma|Solitary plasmacytoma +C0032131|T191|ET|C90.30|ICD10CM|Solitary plasmacytoma NOS|Solitary plasmacytoma NOS +C2854083|T191|AB|C90.30|ICD10CM|Solitary plasmacytoma not having achieved remission|Solitary plasmacytoma not having achieved remission +C2854083|T191|PT|C90.30|ICD10CM|Solitary plasmacytoma not having achieved remission|Solitary plasmacytoma not having achieved remission +C2854082|T191|ET|C90.30|ICD10CM|Solitary plasmacytoma with failed remission|Solitary plasmacytoma with failed remission +C2854084|T191|AB|C90.31|ICD10CM|Solitary plasmacytoma in remission|Solitary plasmacytoma in remission +C2854084|T191|PT|C90.31|ICD10CM|Solitary plasmacytoma in remission|Solitary plasmacytoma in remission +C2854085|T191|AB|C90.32|ICD10CM|Solitary plasmacytoma in relapse|Solitary plasmacytoma in relapse +C2854085|T191|PT|C90.32|ICD10CM|Solitary plasmacytoma in relapse|Solitary plasmacytoma in relapse +C0023448|T191|HT|C91|ICD10|Lymphoid leukaemia|Lymphoid leukaemia +C0023448|T191|HT|C91|ICD10CM|Lymphoid leukemia|Lymphoid leukemia +C0023448|T191|AB|C91|ICD10CM|Lymphoid leukemia|Lymphoid leukemia +C0023448|T191|HT|C91|ICD10AE|Lymphoid leukemia|Lymphoid leukemia +C0023449|T191|PT|C91.0|ICD10|Acute lymphoblastic leukaemia|Acute lymphoblastic leukaemia +C0023449|T191|PT|C91.0|ICD10AE|Acute lymphoblastic leukemia|Acute lymphoblastic leukemia +C0023449|T191|AB|C91.0|ICD10CM|Acute lymphoblastic leukemia [ALL]|Acute lymphoblastic leukemia [ALL] +C0023449|T191|HT|C91.0|ICD10CM|Acute lymphoblastic leukemia [ALL]|Acute lymphoblastic leukemia [ALL] +C0023449|T191|ET|C91.00|ICD10CM|Acute lymphoblastic leukemia NOS|Acute lymphoblastic leukemia NOS +C2854087|T191|AB|C91.00|ICD10CM|Acute lymphoblastic leukemia not having achieved remission|Acute lymphoblastic leukemia not having achieved remission +C2854087|T191|PT|C91.00|ICD10CM|Acute lymphoblastic leukemia not having achieved remission|Acute lymphoblastic leukemia not having achieved remission +C2854086|T047|ET|C91.00|ICD10CM|Acute lymphoblastic leukemia with failed remission|Acute lymphoblastic leukemia with failed remission +C0153876|T191|PT|C91.01|ICD10CM|Acute lymphoblastic leukemia, in remission|Acute lymphoblastic leukemia, in remission +C0153876|T191|AB|C91.01|ICD10CM|Acute lymphoblastic leukemia, in remission|Acute lymphoblastic leukemia, in remission +C2854088|T191|AB|C91.02|ICD10CM|Acute lymphoblastic leukemia, in relapse|Acute lymphoblastic leukemia, in relapse +C2854088|T191|PT|C91.02|ICD10CM|Acute lymphoblastic leukemia, in relapse|Acute lymphoblastic leukemia, in relapse +C0023434|T191|PT|C91.1|ICD10|Chronic lymphocytic leukaemia|Chronic lymphocytic leukaemia +C0023434|T191|PT|C91.1|ICD10AE|Chronic lymphocytic leukemia|Chronic lymphocytic leukemia +C0023434|T191|AB|C91.1|ICD10CM|Chronic lymphocytic leukemia of B-cell type|Chronic lymphocytic leukemia of B-cell type +C0023434|T191|HT|C91.1|ICD10CM|Chronic lymphocytic leukemia of B-cell type|Chronic lymphocytic leukemia of B-cell type +C2854089|T191|ET|C91.1|ICD10CM|Lymphoplasmacytic leukemia|Lymphoplasmacytic leukemia +C0349631|T191|ET|C91.1|ICD10CM|Richter syndrome|Richter syndrome +C2854091|T191|AB|C91.10|ICD10CM|Chronic lymphocytic leuk of B-cell type not achieve remis|Chronic lymphocytic leuk of B-cell type not achieve remis +C0023434|T191|ET|C91.10|ICD10CM|Chronic lymphocytic leukemia of B-cell type NOS|Chronic lymphocytic leukemia of B-cell type NOS +C2854091|T191|PT|C91.10|ICD10CM|Chronic lymphocytic leukemia of B-cell type not having achieved remission|Chronic lymphocytic leukemia of B-cell type not having achieved remission +C2854090|T191|ET|C91.10|ICD10CM|Chronic lymphocytic leukemia of B-cell type with failed remission|Chronic lymphocytic leukemia of B-cell type with failed remission +C2854092|T191|AB|C91.11|ICD10CM|Chronic lymphocytic leukemia of B-cell type in remission|Chronic lymphocytic leukemia of B-cell type in remission +C2854092|T191|PT|C91.11|ICD10CM|Chronic lymphocytic leukemia of B-cell type in remission|Chronic lymphocytic leukemia of B-cell type in remission +C2854093|T191|AB|C91.12|ICD10CM|Chronic lymphocytic leukemia of B-cell type in relapse|Chronic lymphocytic leukemia of B-cell type in relapse +C2854093|T191|PT|C91.12|ICD10CM|Chronic lymphocytic leukemia of B-cell type in relapse|Chronic lymphocytic leukemia of B-cell type in relapse +C0152271|T191|PT|C91.2|ICD10|Subacute lymphocytic leukaemia|Subacute lymphocytic leukaemia +C0152271|T191|PT|C91.2|ICD10AE|Subacute lymphocytic leukemia|Subacute lymphocytic leukemia +C0023486|T191|PT|C91.3|ICD10|Prolymphocytic leukaemia|Prolymphocytic leukaemia +C0023486|T191|PT|C91.3|ICD10AE|Prolymphocytic leukemia|Prolymphocytic leukemia +C0475801|T191|HT|C91.3|ICD10CM|Prolymphocytic leukemia of B-cell type|Prolymphocytic leukemia of B-cell type +C0475801|T191|AB|C91.3|ICD10CM|Prolymphocytic leukemia of B-cell type|Prolymphocytic leukemia of B-cell type +C0475801|T191|ET|C91.30|ICD10CM|Prolymphocytic leukemia of B-cell type NOS|Prolymphocytic leukemia of B-cell type NOS +C2854095|T191|AB|C91.30|ICD10CM|Prolymphocytic leukemia of B-cell type not achieve remission|Prolymphocytic leukemia of B-cell type not achieve remission +C2854095|T191|PT|C91.30|ICD10CM|Prolymphocytic leukemia of B-cell type not having achieved remission|Prolymphocytic leukemia of B-cell type not having achieved remission +C2854094|T191|ET|C91.30|ICD10CM|Prolymphocytic leukemia of B-cell type with failed remission|Prolymphocytic leukemia of B-cell type with failed remission +C2854096|T191|AB|C91.31|ICD10CM|Prolymphocytic leukemia of B-cell type, in remission|Prolymphocytic leukemia of B-cell type, in remission +C2854096|T191|PT|C91.31|ICD10CM|Prolymphocytic leukemia of B-cell type, in remission|Prolymphocytic leukemia of B-cell type, in remission +C2854097|T191|AB|C91.32|ICD10CM|Prolymphocytic leukemia of B-cell type, in relapse|Prolymphocytic leukemia of B-cell type, in relapse +C2854097|T191|PT|C91.32|ICD10CM|Prolymphocytic leukemia of B-cell type, in relapse|Prolymphocytic leukemia of B-cell type, in relapse +C0023443|T191|HT|C91.4|ICD10CM|Hairy cell leukemia|Hairy cell leukemia +C0023443|T191|AB|C91.4|ICD10CM|Hairy cell leukemia|Hairy cell leukemia +C0023443|T191|PT|C91.4|ICD10|Hairy-cell leukaemia|Hairy-cell leukaemia +C0023443|T191|PT|C91.4|ICD10AE|Hairy-cell leukemia|Hairy-cell leukemia +C0023443|T191|ET|C91.4|ICD10CM|Leukemic reticuloendotheliosis|Leukemic reticuloendotheliosis +C0023443|T191|ET|C91.40|ICD10CM|Hairy cell leukemia NOS|Hairy cell leukemia NOS +C2854099|T191|AB|C91.40|ICD10CM|Hairy cell leukemia not having achieved remission|Hairy cell leukemia not having achieved remission +C2854099|T191|PT|C91.40|ICD10CM|Hairy cell leukemia not having achieved remission|Hairy cell leukemia not having achieved remission +C2854098|T191|ET|C91.40|ICD10CM|Hairy cell leukemia with failed remission|Hairy cell leukemia with failed remission +C0836966|T191|AB|C91.41|ICD10CM|Hairy cell leukemia, in remission|Hairy cell leukemia, in remission +C0836966|T191|PT|C91.41|ICD10CM|Hairy cell leukemia, in remission|Hairy cell leukemia, in remission +C0279780|T191|AB|C91.42|ICD10CM|Hairy cell leukemia, in relapse|Hairy cell leukemia, in relapse +C0279780|T191|PT|C91.42|ICD10CM|Hairy cell leukemia, in relapse|Hairy cell leukemia, in relapse +C2854101|T191|ET|C91.5|ICD10CM|Acute variant of adult T-cell lymphoma/leukemia (HTLV-1-associated)|Acute variant of adult T-cell lymphoma/leukemia (HTLV-1-associated) +C0023493|T191|PT|C91.5|ICD10|Adult T-cell leukaemia|Adult T-cell leukaemia +C0023493|T191|PT|C91.5|ICD10AE|Adult T-cell leukemia|Adult T-cell leukemia +C0023493|T191|AB|C91.5|ICD10CM|Adult T-cell lymphoma/leukemia (HTLV-1-associated)|Adult T-cell lymphoma/leukemia (HTLV-1-associated) +C0023493|T191|HT|C91.5|ICD10CM|Adult T-cell lymphoma/leukemia (HTLV-1-associated)|Adult T-cell lymphoma/leukemia (HTLV-1-associated) +C2854102|T191|ET|C91.5|ICD10CM|Chronic variant of adult T-cell lymphoma/leukemia (HTLV-1-associated)|Chronic variant of adult T-cell lymphoma/leukemia (HTLV-1-associated) +C2854103|T191|ET|C91.5|ICD10CM|Lymphomatoid variant of adult T-cell lymphoma/leukemia (HTLV-1-associated)|Lymphomatoid variant of adult T-cell lymphoma/leukemia (HTLV-1-associated) +C2854104|T191|ET|C91.5|ICD10CM|Smouldering variant of adult T-cell lymphoma/leukemia (HTLV-1-associated)|Smouldering variant of adult T-cell lymphoma/leukemia (HTLV-1-associated) +C2854106|T191|AB|C91.50|ICD10CM|Adult T-cell lymph/leuk (HTLV-1-assoc) not achieve remission|Adult T-cell lymph/leuk (HTLV-1-assoc) not achieve remission +C0023493|T191|ET|C91.50|ICD10CM|Adult T-cell lymphoma/leukemia (HTLV-1-associated) NOS|Adult T-cell lymphoma/leukemia (HTLV-1-associated) NOS +C2854106|T191|PT|C91.50|ICD10CM|Adult T-cell lymphoma/leukemia (HTLV-1-associated) not having achieved remission|Adult T-cell lymphoma/leukemia (HTLV-1-associated) not having achieved remission +C2854105|T191|ET|C91.50|ICD10CM|Adult T-cell lymphoma/leukemia (HTLV-1-associated) with failed remission|Adult T-cell lymphoma/leukemia (HTLV-1-associated) with failed remission +C2854107|T191|AB|C91.51|ICD10CM|Adult T-cell lymphoma/leukemia (HTLV-1-assoc), in remission|Adult T-cell lymphoma/leukemia (HTLV-1-assoc), in remission +C2854107|T191|PT|C91.51|ICD10CM|Adult T-cell lymphoma/leukemia (HTLV-1-associated), in remission|Adult T-cell lymphoma/leukemia (HTLV-1-associated), in remission +C0280427|T191|AB|C91.52|ICD10CM|Adult T-cell lymphoma/leukemia (HTLV-1-assoc), in relapse|Adult T-cell lymphoma/leukemia (HTLV-1-assoc), in relapse +C0280427|T191|PT|C91.52|ICD10CM|Adult T-cell lymphoma/leukemia (HTLV-1-associated), in relapse|Adult T-cell lymphoma/leukemia (HTLV-1-associated), in relapse +C2363142|T191|HT|C91.6|ICD10CM|Prolymphocytic leukemia of T-cell type|Prolymphocytic leukemia of T-cell type +C2363142|T191|AB|C91.6|ICD10CM|Prolymphocytic leukemia of T-cell type|Prolymphocytic leukemia of T-cell type +C2363142|T191|ET|C91.60|ICD10CM|Prolymphocytic leukemia of T-cell type NOS|Prolymphocytic leukemia of T-cell type NOS +C2854109|T191|AB|C91.60|ICD10CM|Prolymphocytic leukemia of T-cell type not achieve remission|Prolymphocytic leukemia of T-cell type not achieve remission +C2854109|T191|PT|C91.60|ICD10CM|Prolymphocytic leukemia of T-cell type not having achieved remission|Prolymphocytic leukemia of T-cell type not having achieved remission +C2854108|T191|ET|C91.60|ICD10CM|Prolymphocytic leukemia of T-cell type with failed remission|Prolymphocytic leukemia of T-cell type with failed remission +C2854110|T191|AB|C91.61|ICD10CM|Prolymphocytic leukemia of T-cell type, in remission|Prolymphocytic leukemia of T-cell type, in remission +C2854110|T191|PT|C91.61|ICD10CM|Prolymphocytic leukemia of T-cell type, in remission|Prolymphocytic leukemia of T-cell type, in remission +C2854111|T191|AB|C91.62|ICD10CM|Prolymphocytic leukemia of T-cell type, in relapse|Prolymphocytic leukemia of T-cell type, in relapse +C2854111|T191|PT|C91.62|ICD10CM|Prolymphocytic leukemia of T-cell type, in relapse|Prolymphocytic leukemia of T-cell type, in relapse +C0029660|T191|PT|C91.7|ICD10|Other lymphoid leukaemia|Other lymphoid leukaemia +C0029660|T191|PT|C91.7|ICD10AE|Other lymphoid leukemia|Other lymphoid leukemia +C0023448|T191|PT|C91.9|ICD10|Lymphoid leukaemia, unspecified|Lymphoid leukaemia, unspecified +C0023448|T191|PT|C91.9|ICD10AE|Lymphoid leukemia, unspecified|Lymphoid leukemia, unspecified +C0023448|T191|HT|C91.9|ICD10CM|Lymphoid leukemia, unspecified|Lymphoid leukemia, unspecified +C0023448|T191|AB|C91.9|ICD10CM|Lymphoid leukemia, unspecified|Lymphoid leukemia, unspecified +C0023448|T191|ET|C91.90|ICD10CM|Lymphoid leukemia NOS|Lymphoid leukemia NOS +C2854112|T191|ET|C91.90|ICD10CM|Lymphoid leukemia with failed remission|Lymphoid leukemia with failed remission +C2854113|T191|AB|C91.90|ICD10CM|Lymphoid leukemia, unspecified not having achieved remission|Lymphoid leukemia, unspecified not having achieved remission +C2854113|T191|PT|C91.90|ICD10CM|Lymphoid leukemia, unspecified not having achieved remission|Lymphoid leukemia, unspecified not having achieved remission +C0686597|T191|PT|C91.91|ICD10CM|Lymphoid leukemia, unspecified, in remission|Lymphoid leukemia, unspecified, in remission +C0686597|T191|AB|C91.91|ICD10CM|Lymphoid leukemia, unspecified, in remission|Lymphoid leukemia, unspecified, in remission +C2349274|T191|AB|C91.92|ICD10CM|Lymphoid leukemia, unspecified, in relapse|Lymphoid leukemia, unspecified, in relapse +C2349274|T191|PT|C91.92|ICD10CM|Lymphoid leukemia, unspecified, in relapse|Lymphoid leukemia, unspecified, in relapse +C2854114|T191|HT|C91.A|ICD10CM|Mature B-cell leukemia Burkitt-type|Mature B-cell leukemia Burkitt-type +C2854114|T191|AB|C91.A|ICD10CM|Mature B-cell leukemia Burkitt-type|Mature B-cell leukemia Burkitt-type +C2854114|T191|ET|C91.A0|ICD10CM|Mature B-cell leukemia Burkitt-type NOS|Mature B-cell leukemia Burkitt-type NOS +C2854116|T191|AB|C91.A0|ICD10CM|Mature B-cell leukemia Burkitt-type not achieve remission|Mature B-cell leukemia Burkitt-type not achieve remission +C2854116|T191|PT|C91.A0|ICD10CM|Mature B-cell leukemia Burkitt-type not having achieved remission|Mature B-cell leukemia Burkitt-type not having achieved remission +C2854115|T191|ET|C91.A0|ICD10CM|Mature B-cell leukemia Burkitt-type with failed remission|Mature B-cell leukemia Burkitt-type with failed remission +C2854117|T191|AB|C91.A1|ICD10CM|Mature B-cell leukemia Burkitt-type, in remission|Mature B-cell leukemia Burkitt-type, in remission +C2854117|T191|PT|C91.A1|ICD10CM|Mature B-cell leukemia Burkitt-type, in remission|Mature B-cell leukemia Burkitt-type, in remission +C2854118|T191|AB|C91.A2|ICD10CM|Mature B-cell leukemia Burkitt-type, in relapse|Mature B-cell leukemia Burkitt-type, in relapse +C2854118|T191|PT|C91.A2|ICD10CM|Mature B-cell leukemia Burkitt-type, in relapse|Mature B-cell leukemia Burkitt-type, in relapse +C0029660|T191|HT|C91.Z|ICD10CM|Other lymphoid leukemia|Other lymphoid leukemia +C0029660|T191|AB|C91.Z|ICD10CM|Other lymphoid leukemia|Other lymphoid leukemia +C2977960|T191|ET|C91.Z|ICD10CM|T-cell large granular lymphocytic leukemia (associated with rheumatoid arthritis)|T-cell large granular lymphocytic leukemia (associated with rheumatoid arthritis) +C0029660|T191|ET|C91.Z0|ICD10CM|Other lymphoid leukemia NOS|Other lymphoid leukemia NOS +C2854119|T191|AB|C91.Z0|ICD10CM|Other lymphoid leukemia not having achieved remission|Other lymphoid leukemia not having achieved remission +C2854119|T191|PT|C91.Z0|ICD10CM|Other lymphoid leukemia not having achieved remission|Other lymphoid leukemia not having achieved remission +C2349271|T191|ET|C91.Z0|ICD10CM|Other lymphoid leukemia with failed remission|Other lymphoid leukemia with failed remission +C0153882|T191|PT|C91.Z1|ICD10CM|Other lymphoid leukemia, in remission|Other lymphoid leukemia, in remission +C0153882|T191|AB|C91.Z1|ICD10CM|Other lymphoid leukemia, in remission|Other lymphoid leukemia, in remission +C2349272|T191|AB|C91.Z2|ICD10CM|Other lymphoid leukemia, in relapse|Other lymphoid leukemia, in relapse +C2349272|T191|PT|C91.Z2|ICD10CM|Other lymphoid leukemia, in relapse|Other lymphoid leukemia, in relapse +C0023470|T191|ET|C92|ICD10CM|granulocytic leukemia|granulocytic leukemia +C0023470|T191|ET|C92|ICD10CM|myelogenous leukemia|myelogenous leukemia +C0023470|T191|HT|C92|ICD10|Myeloid leukaemia|Myeloid leukaemia +C0023470|T191|HT|C92|ICD10CM|Myeloid leukemia|Myeloid leukemia +C0023470|T191|AB|C92|ICD10CM|Myeloid leukemia|Myeloid leukemia +C0023470|T191|HT|C92|ICD10AE|Myeloid leukemia|Myeloid leukemia +C0023467|T191|HT|C92.0|ICD10CM|Acute myeloblastic leukemia|Acute myeloblastic leukemia +C0023467|T191|AB|C92.0|ICD10CM|Acute myeloblastic leukemia|Acute myeloblastic leukemia +C1879321|T191|ET|C92.0|ICD10CM|Acute myeloblastic leukemia (with maturation)|Acute myeloblastic leukemia (with maturation) +C2854120|T191|ET|C92.0|ICD10CM|Acute myeloblastic leukemia (without a FAB classification) NOS|Acute myeloblastic leukemia (without a FAB classification) NOS +C2854121|T191|ET|C92.0|ICD10CM|Acute myeloblastic leukemia 1/ETO|Acute myeloblastic leukemia 1/ETO +C0522631|T191|ET|C92.0|ICD10CM|Acute myeloblastic leukemia M0|Acute myeloblastic leukemia M0 +C0026998|T191|ET|C92.0|ICD10CM|Acute myeloblastic leukemia M1|Acute myeloblastic leukemia M1 +C1879321|T191|ET|C92.0|ICD10CM|Acute myeloblastic leukemia M2|Acute myeloblastic leukemia M2 +C2854122|T191|ET|C92.0|ICD10CM|Acute myeloblastic leukemia with t(8;21)|Acute myeloblastic leukemia with t(8;21) +C0522631|T191|ET|C92.0|ICD10CM|Acute myeloblastic leukemia, minimal differentiation|Acute myeloblastic leukemia, minimal differentiation +C0023467|T191|PT|C92.0|ICD10|Acute myeloid leukaemia|Acute myeloid leukaemia +C0023467|T191|PT|C92.0|ICD10AE|Acute myeloid leukemia|Acute myeloid leukemia +C0280028|T047|ET|C92.0|ICD10CM|Refractory anemia with excess blasts in transformation [RAEB T]|Refractory anemia with excess blasts in transformation [RAEB T] +C0023467|T191|ET|C92.00|ICD10CM|Acute myeloblastic leukemia NOS|Acute myeloblastic leukemia NOS +C2861576|T191|ET|C92.00|ICD10CM|Acute myeloblastic leukemia with failed remission|Acute myeloblastic leukemia with failed remission +C2861577|T191|AB|C92.00|ICD10CM|Acute myeloblastic leukemia, not having achieved remission|Acute myeloblastic leukemia, not having achieved remission +C2861577|T191|PT|C92.00|ICD10CM|Acute myeloblastic leukemia, not having achieved remission|Acute myeloblastic leukemia, not having achieved remission +C0153886|T191|AB|C92.01|ICD10CM|Acute myeloblastic leukemia, in remission|Acute myeloblastic leukemia, in remission +C0153886|T191|PT|C92.01|ICD10CM|Acute myeloblastic leukemia, in remission|Acute myeloblastic leukemia, in remission +C2861578|T191|AB|C92.02|ICD10CM|Acute myeloblastic leukemia, in relapse|Acute myeloblastic leukemia, in relapse +C2861578|T191|PT|C92.02|ICD10CM|Acute myeloblastic leukemia, in relapse|Acute myeloblastic leukemia, in relapse +C2861579|T191|ET|C92.1|ICD10CM|Chronic myelogenous leukemia with crisis of blast cells|Chronic myelogenous leukemia with crisis of blast cells +C1292771|T191|ET|C92.1|ICD10CM|Chronic myelogenous leukemia, Philadelphia chromosome (Ph1) positive|Chronic myelogenous leukemia, Philadelphia chromosome (Ph1) positive +C1292771|T191|ET|C92.1|ICD10CM|Chronic myelogenous leukemia, t(9;22) (q34;q11)|Chronic myelogenous leukemia, t(9;22) (q34;q11) +C0023473|T191|PT|C92.1|ICD10|Chronic myeloid leukaemia|Chronic myeloid leukaemia +C0023473|T191|PT|C92.1|ICD10AE|Chronic myeloid leukemia|Chronic myeloid leukemia +C2861580|T191|AB|C92.1|ICD10CM|Chronic myeloid leukemia, BCR/ABL-positive|Chronic myeloid leukemia, BCR/ABL-positive +C2861580|T191|HT|C92.1|ICD10CM|Chronic myeloid leukemia, BCR/ABL-positive|Chronic myeloid leukemia, BCR/ABL-positive +C2861582|T191|AB|C92.10|ICD10CM|Chronic myeloid leuk, BCR/ABL-positive, not achieve remis|Chronic myeloid leuk, BCR/ABL-positive, not achieve remis +C2861580|T191|ET|C92.10|ICD10CM|Chronic myeloid leukemia, BCR/ABL-positive NOS|Chronic myeloid leukemia, BCR/ABL-positive NOS +C2861581|T191|ET|C92.10|ICD10CM|Chronic myeloid leukemia, BCR/ABL-positive with failed remission|Chronic myeloid leukemia, BCR/ABL-positive with failed remission +C2861582|T191|PT|C92.10|ICD10CM|Chronic myeloid leukemia, BCR/ABL-positive, not having achieved remission|Chronic myeloid leukemia, BCR/ABL-positive, not having achieved remission +C2861583|T191|AB|C92.11|ICD10CM|Chronic myeloid leukemia, BCR/ABL-positive, in remission|Chronic myeloid leukemia, BCR/ABL-positive, in remission +C2861583|T191|PT|C92.11|ICD10CM|Chronic myeloid leukemia, BCR/ABL-positive, in remission|Chronic myeloid leukemia, BCR/ABL-positive, in remission +C2861584|T191|AB|C92.12|ICD10CM|Chronic myeloid leukemia, BCR/ABL-positive, in relapse|Chronic myeloid leukemia, BCR/ABL-positive, in relapse +C2861584|T191|PT|C92.12|ICD10CM|Chronic myeloid leukemia, BCR/ABL-positive, in relapse|Chronic myeloid leukemia, BCR/ABL-positive, in relapse +C1292772|T191|AB|C92.2|ICD10CM|Atypical chronic myeloid leukemia, BCR/ABL-negative|Atypical chronic myeloid leukemia, BCR/ABL-negative +C1292772|T191|HT|C92.2|ICD10CM|Atypical chronic myeloid leukemia, BCR/ABL-negative|Atypical chronic myeloid leukemia, BCR/ABL-negative +C1292772|T191|PT|C92.2|ICD10|Subacute myeloid leukaemia|Subacute myeloid leukaemia +C1292772|T191|PT|C92.2|ICD10AE|Subacute myeloid leukemia|Subacute myeloid leukemia +C2861586|T191|AB|C92.20|ICD10CM|Atyp chronic myeloid leuk, BCR/ABL-neg, not achieve remis|Atyp chronic myeloid leuk, BCR/ABL-neg, not achieve remis +C1292772|T191|ET|C92.20|ICD10CM|Atypical chronic myeloid leukemia, BCR/ABL-negative NOS|Atypical chronic myeloid leukemia, BCR/ABL-negative NOS +C2861585|T191|ET|C92.20|ICD10CM|Atypical chronic myeloid leukemia, BCR/ABL-negative with failed remission|Atypical chronic myeloid leukemia, BCR/ABL-negative with failed remission +C2861586|T191|PT|C92.20|ICD10CM|Atypical chronic myeloid leukemia, BCR/ABL-negative, not having achieved remission|Atypical chronic myeloid leukemia, BCR/ABL-negative, not having achieved remission +C2861587|T191|AB|C92.21|ICD10CM|Atypical chronic myeloid leukemia, BCR/ABL-neg, in remission|Atypical chronic myeloid leukemia, BCR/ABL-neg, in remission +C2861587|T191|PT|C92.21|ICD10CM|Atypical chronic myeloid leukemia, BCR/ABL-negative, in remission|Atypical chronic myeloid leukemia, BCR/ABL-negative, in remission +C2861588|T191|AB|C92.22|ICD10CM|Atypical chronic myeloid leukemia, BCR/ABL-neg, in relapse|Atypical chronic myeloid leukemia, BCR/ABL-neg, in relapse +C2861588|T191|PT|C92.22|ICD10CM|Atypical chronic myeloid leukemia, BCR/ABL-negative, in relapse|Atypical chronic myeloid leukemia, BCR/ABL-negative, in relapse +C2861589|T191|ET|C92.3|ICD10CM|A malignant tumor of immature myeloid cells|A malignant tumor of immature myeloid cells +C4721505|T191|ET|C92.3|ICD10CM|Chloroma|Chloroma +C0152276|T191|ET|C92.3|ICD10CM|Granulocytic sarcoma|Granulocytic sarcoma +C4721505|T191|PT|C92.3|ICD10|Myeloid sarcoma|Myeloid sarcoma +C4721505|T191|HT|C92.3|ICD10CM|Myeloid sarcoma|Myeloid sarcoma +C4721505|T191|AB|C92.3|ICD10CM|Myeloid sarcoma|Myeloid sarcoma +C4721505|T191|ET|C92.30|ICD10CM|Myeloid sarcoma NOS|Myeloid sarcoma NOS +C2349280|T191|ET|C92.30|ICD10CM|Myeloid sarcoma with failed remission|Myeloid sarcoma with failed remission +C2861590|T191|AB|C92.30|ICD10CM|Myeloid sarcoma, not having achieved remission|Myeloid sarcoma, not having achieved remission +C2861590|T191|PT|C92.30|ICD10CM|Myeloid sarcoma, not having achieved remission|Myeloid sarcoma, not having achieved remission +C0153892|T191|AB|C92.31|ICD10CM|Myeloid sarcoma, in remission|Myeloid sarcoma, in remission +C0153892|T191|PT|C92.31|ICD10CM|Myeloid sarcoma, in remission|Myeloid sarcoma, in remission +C2349281|T191|AB|C92.32|ICD10CM|Myeloid sarcoma, in relapse|Myeloid sarcoma, in relapse +C2349281|T191|PT|C92.32|ICD10CM|Myeloid sarcoma, in relapse|Myeloid sarcoma, in relapse +C0023487|T191|PT|C92.4|ICD10|Acute promyelocytic leukaemia|Acute promyelocytic leukaemia +C0023487|T191|PT|C92.4|ICD10AE|Acute promyelocytic leukemia|Acute promyelocytic leukemia +C0023487|T191|HT|C92.4|ICD10CM|Acute promyelocytic leukemia|Acute promyelocytic leukemia +C0023487|T191|AB|C92.4|ICD10CM|Acute promyelocytic leukemia|Acute promyelocytic leukemia +C0023487|T191|ET|C92.4|ICD10CM|AML M3|AML M3 +C2861592|T191|ET|C92.4|ICD10CM|AML Me with t(15;17) and variants|AML Me with t(15;17) and variants +C0023487|T191|ET|C92.40|ICD10CM|Acute promyelocytic leukemia NOS|Acute promyelocytic leukemia NOS +C2861593|T191|ET|C92.40|ICD10CM|Acute promyelocytic leukemia with failed remission|Acute promyelocytic leukemia with failed remission +C2861594|T191|AB|C92.40|ICD10CM|Acute promyelocytic leukemia, not having achieved remission|Acute promyelocytic leukemia, not having achieved remission +C2861594|T191|PT|C92.40|ICD10CM|Acute promyelocytic leukemia, not having achieved remission|Acute promyelocytic leukemia, not having achieved remission +C0836971|T191|PT|C92.41|ICD10CM|Acute promyelocytic leukemia, in remission|Acute promyelocytic leukemia, in remission +C0836971|T191|AB|C92.41|ICD10CM|Acute promyelocytic leukemia, in remission|Acute promyelocytic leukemia, in remission +C2861595|T191|AB|C92.42|ICD10CM|Acute promyelocytic leukemia, in relapse|Acute promyelocytic leukemia, in relapse +C2861595|T191|PT|C92.42|ICD10CM|Acute promyelocytic leukemia, in relapse|Acute promyelocytic leukemia, in relapse +C0023479|T191|PT|C92.5|ICD10|Acute myelomonocytic leukaemia|Acute myelomonocytic leukaemia +C0023479|T191|HT|C92.5|ICD10CM|Acute myelomonocytic leukemia|Acute myelomonocytic leukemia +C0023479|T191|AB|C92.5|ICD10CM|Acute myelomonocytic leukemia|Acute myelomonocytic leukemia +C0023479|T191|PT|C92.5|ICD10AE|Acute myelomonocytic leukemia|Acute myelomonocytic leukemia +C0023479|T191|ET|C92.5|ICD10CM|AML M4|AML M4 +C2861596|T191|ET|C92.5|ICD10CM|AML M4 Eo with inv(16) or t(16;16)|AML M4 Eo with inv(16) or t(16;16) +C0023479|T191|ET|C92.50|ICD10CM|Acute myelomonocytic leukemia NOS|Acute myelomonocytic leukemia NOS +C2861597|T191|ET|C92.50|ICD10CM|Acute myelomonocytic leukemia with failed remission|Acute myelomonocytic leukemia with failed remission +C2861598|T191|AB|C92.50|ICD10CM|Acute myelomonocytic leukemia, not having achieved remission|Acute myelomonocytic leukemia, not having achieved remission +C2861598|T191|PT|C92.50|ICD10CM|Acute myelomonocytic leukemia, not having achieved remission|Acute myelomonocytic leukemia, not having achieved remission +C0836973|T191|PT|C92.51|ICD10CM|Acute myelomonocytic leukemia, in remission|Acute myelomonocytic leukemia, in remission +C0836973|T191|AB|C92.51|ICD10CM|Acute myelomonocytic leukemia, in remission|Acute myelomonocytic leukemia, in remission +C2861599|T191|AB|C92.52|ICD10CM|Acute myelomonocytic leukemia, in relapse|Acute myelomonocytic leukemia, in relapse +C2861599|T191|PT|C92.52|ICD10CM|Acute myelomonocytic leukemia, in relapse|Acute myelomonocytic leukemia, in relapse +C1292775|T191|AB|C92.6|ICD10CM|Acute myeloid leukemia with 11q23-abnormality|Acute myeloid leukemia with 11q23-abnormality +C1292775|T191|HT|C92.6|ICD10CM|Acute myeloid leukemia with 11q23-abnormality|Acute myeloid leukemia with 11q23-abnormality +C2861600|T191|ET|C92.6|ICD10CM|Acute myeloid leukemia with variation of MLL-gene|Acute myeloid leukemia with variation of MLL-gene +C2861602|T191|AB|C92.60|ICD10CM|Acute myeloid leukemia w 11q23-abnormality not achieve remis|Acute myeloid leukemia w 11q23-abnormality not achieve remis +C1292775|T191|ET|C92.60|ICD10CM|Acute myeloid leukemia with 11q23-abnormality NOS|Acute myeloid leukemia with 11q23-abnormality NOS +C2861602|T191|PT|C92.60|ICD10CM|Acute myeloid leukemia with 11q23-abnormality not having achieved remission|Acute myeloid leukemia with 11q23-abnormality not having achieved remission +C2861601|T191|ET|C92.60|ICD10CM|Acute myeloid leukemia with 11q23-abnormality with failed remission|Acute myeloid leukemia with 11q23-abnormality with failed remission +C2861603|T191|AB|C92.61|ICD10CM|Acute myeloid leukemia with 11q23-abnormality in remission|Acute myeloid leukemia with 11q23-abnormality in remission +C2861603|T191|PT|C92.61|ICD10CM|Acute myeloid leukemia with 11q23-abnormality in remission|Acute myeloid leukemia with 11q23-abnormality in remission +C2861604|T191|AB|C92.62|ICD10CM|Acute myeloid leukemia with 11q23-abnormality in relapse|Acute myeloid leukemia with 11q23-abnormality in relapse +C2861604|T191|PT|C92.62|ICD10CM|Acute myeloid leukemia with 11q23-abnormality in relapse|Acute myeloid leukemia with 11q23-abnormality in relapse +C0029670|T191|PT|C92.7|ICD10|Other myeloid leukaemia|Other myeloid leukaemia +C0029670|T191|PT|C92.7|ICD10AE|Other myeloid leukemia|Other myeloid leukemia +C0023470|T191|PT|C92.9|ICD10|Myeloid leukaemia, unspecified|Myeloid leukaemia, unspecified +C0023470|T191|PT|C92.9|ICD10AE|Myeloid leukemia, unspecified|Myeloid leukemia, unspecified +C0023470|T191|HT|C92.9|ICD10CM|Myeloid leukemia, unspecified|Myeloid leukemia, unspecified +C0023470|T191|AB|C92.9|ICD10CM|Myeloid leukemia, unspecified|Myeloid leukemia, unspecified +C0023470|T191|ET|C92.90|ICD10CM|Myeloid leukemia, unspecified NOS|Myeloid leukemia, unspecified NOS +C2349284|T191|ET|C92.90|ICD10CM|Myeloid leukemia, unspecified with failed remission|Myeloid leukemia, unspecified with failed remission +C2861605|T191|AB|C92.90|ICD10CM|Myeloid leukemia, unspecified, not having achieved remission|Myeloid leukemia, unspecified, not having achieved remission +C2861605|T191|PT|C92.90|ICD10CM|Myeloid leukemia, unspecified, not having achieved remission|Myeloid leukemia, unspecified, not having achieved remission +C0686593|T191|AB|C92.91|ICD10CM|Myeloid leukemia, unspecified in remission|Myeloid leukemia, unspecified in remission +C0686593|T191|PT|C92.91|ICD10CM|Myeloid leukemia, unspecified in remission|Myeloid leukemia, unspecified in remission +C2349285|T191|AB|C92.92|ICD10CM|Myeloid leukemia, unspecified in relapse|Myeloid leukemia, unspecified in relapse +C2349285|T191|PT|C92.92|ICD10CM|Myeloid leukemia, unspecified in relapse|Myeloid leukemia, unspecified in relapse +C1292773|T191|HT|C92.A|ICD10CM|Acute myeloid leukemia with multilineage dysplasia|Acute myeloid leukemia with multilineage dysplasia +C1292773|T191|AB|C92.A|ICD10CM|Acute myeloid leukemia with multilineage dysplasia|Acute myeloid leukemia with multilineage dysplasia +C2861608|T191|AB|C92.A0|ICD10CM|Acute myeloid leuk w multilin dysplasia, not achieve remis|Acute myeloid leuk w multilin dysplasia, not achieve remis +C1292773|T191|ET|C92.A0|ICD10CM|Acute myeloid leukemia with multilineage dysplasia NOS|Acute myeloid leukemia with multilineage dysplasia NOS +C2861607|T191|ET|C92.A0|ICD10CM|Acute myeloid leukemia with multilineage dysplasia with failed remission|Acute myeloid leukemia with multilineage dysplasia with failed remission +C2861608|T191|PT|C92.A0|ICD10CM|Acute myeloid leukemia with multilineage dysplasia, not having achieved remission|Acute myeloid leukemia with multilineage dysplasia, not having achieved remission +C2861609|T191|AB|C92.A1|ICD10CM|Acute myeloid leukemia w multilin dysplasia, in remission|Acute myeloid leukemia w multilin dysplasia, in remission +C2861609|T191|PT|C92.A1|ICD10CM|Acute myeloid leukemia with multilineage dysplasia, in remission|Acute myeloid leukemia with multilineage dysplasia, in remission +C2861610|T191|AB|C92.A2|ICD10CM|Acute myeloid leukemia w multilineage dysplasia, in relapse|Acute myeloid leukemia w multilineage dysplasia, in relapse +C2861610|T191|PT|C92.A2|ICD10CM|Acute myeloid leukemia with multilineage dysplasia, in relapse|Acute myeloid leukemia with multilineage dysplasia, in relapse +C0029670|T191|HT|C92.Z|ICD10CM|Other myeloid leukemia|Other myeloid leukemia +C0029670|T191|AB|C92.Z|ICD10CM|Other myeloid leukemia|Other myeloid leukemia +C2861611|T191|ET|C92.Z0|ICD10CM|Myeloid leukemia NEC|Myeloid leukemia NEC +C2861612|T191|ET|C92.Z0|ICD10CM|Myeloid leukemia NEC with failed remission|Myeloid leukemia NEC with failed remission +C2861613|T191|AB|C92.Z0|ICD10CM|Other myeloid leukemia not having achieved remission|Other myeloid leukemia not having achieved remission +C2861613|T191|PT|C92.Z0|ICD10CM|Other myeloid leukemia not having achieved remission|Other myeloid leukemia not having achieved remission +C0153894|T191|PT|C92.Z1|ICD10CM|Other myeloid leukemia, in remission|Other myeloid leukemia, in remission +C0153894|T191|AB|C92.Z1|ICD10CM|Other myeloid leukemia, in remission|Other myeloid leukemia, in remission +C2349283|T191|AB|C92.Z2|ICD10CM|Other myeloid leukemia, in relapse|Other myeloid leukemia, in relapse +C2349283|T191|PT|C92.Z2|ICD10CM|Other myeloid leukemia, in relapse|Other myeloid leukemia, in relapse +C0598894|T191|HT|C93|ICD10|Monocytic leukaemia|Monocytic leukaemia +C0598894|T191|HT|C93|ICD10AE|Monocytic leukemia|Monocytic leukemia +C0598894|T191|HT|C93|ICD10CM|Monocytic leukemia|Monocytic leukemia +C0598894|T191|AB|C93|ICD10CM|Monocytic leukemia|Monocytic leukemia +C0598894|T191|ET|C93|ICD10CM|monocytoid leukemia|monocytoid leukemia +C3831784|T191|AB|C93.0|ICD10CM|Acute monoblastic/monocytic leukemia|Acute monoblastic/monocytic leukemia +C3831784|T191|HT|C93.0|ICD10CM|Acute monoblastic/monocytic leukemia|Acute monoblastic/monocytic leukemia +C3831784|T191|PT|C93.0|ICD10|Acute monocytic leukaemia|Acute monocytic leukaemia +C3831784|T191|PT|C93.0|ICD10AE|Acute monocytic leukemia|Acute monocytic leukemia +C3831784|T191|ET|C93.0|ICD10CM|AML M5|AML M5 +C0457334|T191|ET|C93.0|ICD10CM|AML M5a|AML M5a +C2861614|T191|ET|C93.0|ICD10CM|AML M5b|AML M5b +C3831784|T191|ET|C93.00|ICD10CM|Acute monoblastic/monocytic leukemia NOS|Acute monoblastic/monocytic leukemia NOS +C2861615|T047|ET|C93.00|ICD10CM|Acute monoblastic/monocytic leukemia with failed remission|Acute monoblastic/monocytic leukemia with failed remission +C2861616|T191|AB|C93.00|ICD10CM|Acute monoblastic/monocytic leukemia, not achieve remission|Acute monoblastic/monocytic leukemia, not achieve remission +C2861616|T191|PT|C93.00|ICD10CM|Acute monoblastic/monocytic leukemia, not having achieved remission|Acute monoblastic/monocytic leukemia, not having achieved remission +C2861617|T191|AB|C93.01|ICD10CM|Acute monoblastic/monocytic leukemia, in remission|Acute monoblastic/monocytic leukemia, in remission +C2861617|T191|PT|C93.01|ICD10CM|Acute monoblastic/monocytic leukemia, in remission|Acute monoblastic/monocytic leukemia, in remission +C2861618|T191|AB|C93.02|ICD10CM|Acute monoblastic/monocytic leukemia, in relapse|Acute monoblastic/monocytic leukemia, in relapse +C2861618|T191|PT|C93.02|ICD10CM|Acute monoblastic/monocytic leukemia, in relapse|Acute monoblastic/monocytic leukemia, in relapse +C0023466|T191|PT|C93.1|ICD10|Chronic monocytic leukaemia|Chronic monocytic leukaemia +C0023466|T191|PT|C93.1|ICD10AE|Chronic monocytic leukemia|Chronic monocytic leukemia +C0023466|T191|ET|C93.1|ICD10CM|Chronic monocytic leukemia|Chronic monocytic leukemia +C0023480|T191|HT|C93.1|ICD10CM|Chronic myelomonocytic leukemia|Chronic myelomonocytic leukemia +C0023480|T191|AB|C93.1|ICD10CM|Chronic myelomonocytic leukemia|Chronic myelomonocytic leukemia +C1333045|T191|ET|C93.1|ICD10CM|CMML with eosinophilia|CMML with eosinophilia +C1333043|T191|ET|C93.1|ICD10CM|CMML-1|CMML-1 +C1333044|T191|ET|C93.1|ICD10CM|CMML-2|CMML-2 +C0023480|T191|ET|C93.10|ICD10CM|Chronic myelomonocytic leukemia NOS|Chronic myelomonocytic leukemia NOS +C2861620|T191|AB|C93.10|ICD10CM|Chronic myelomonocytic leukemia not achieve remission|Chronic myelomonocytic leukemia not achieve remission +C2861620|T191|PT|C93.10|ICD10CM|Chronic myelomonocytic leukemia not having achieved remission|Chronic myelomonocytic leukemia not having achieved remission +C2861619|T191|ET|C93.10|ICD10CM|Chronic myelomonocytic leukemia with failed remission|Chronic myelomonocytic leukemia with failed remission +C0854199|T191|AB|C93.11|ICD10CM|Chronic myelomonocytic leukemia, in remission|Chronic myelomonocytic leukemia, in remission +C0854199|T191|PT|C93.11|ICD10CM|Chronic myelomonocytic leukemia, in remission|Chronic myelomonocytic leukemia, in remission +C2366868|T191|AB|C93.12|ICD10CM|Chronic myelomonocytic leukemia, in relapse|Chronic myelomonocytic leukemia, in relapse +C2366868|T191|PT|C93.12|ICD10CM|Chronic myelomonocytic leukemia, in relapse|Chronic myelomonocytic leukemia, in relapse +C0152275|T191|PT|C93.2|ICD10|Subacute monocytic leukaemia|Subacute monocytic leukaemia +C0152275|T191|PT|C93.2|ICD10AE|Subacute monocytic leukemia|Subacute monocytic leukemia +C0349639|T191|HT|C93.3|ICD10CM|Juvenile myelomonocytic leukemia|Juvenile myelomonocytic leukemia +C0349639|T191|AB|C93.3|ICD10CM|Juvenile myelomonocytic leukemia|Juvenile myelomonocytic leukemia +C0349639|T191|ET|C93.30|ICD10CM|Juvenile myelomonocytic leukemia NOS|Juvenile myelomonocytic leukemia NOS +C2861621|T191|ET|C93.30|ICD10CM|Juvenile myelomonocytic leukemia with failed remission|Juvenile myelomonocytic leukemia with failed remission +C2861622|T191|AB|C93.30|ICD10CM|Juvenile myelomonocytic leukemia, not achieve remission|Juvenile myelomonocytic leukemia, not achieve remission +C2861622|T191|PT|C93.30|ICD10CM|Juvenile myelomonocytic leukemia, not having achieved remission|Juvenile myelomonocytic leukemia, not having achieved remission +C2861623|T191|AB|C93.31|ICD10CM|Juvenile myelomonocytic leukemia, in remission|Juvenile myelomonocytic leukemia, in remission +C2861623|T191|PT|C93.31|ICD10CM|Juvenile myelomonocytic leukemia, in remission|Juvenile myelomonocytic leukemia, in remission +C2861624|T191|AB|C93.32|ICD10CM|Juvenile myelomonocytic leukemia, in relapse|Juvenile myelomonocytic leukemia, in relapse +C2861624|T191|PT|C93.32|ICD10CM|Juvenile myelomonocytic leukemia, in relapse|Juvenile myelomonocytic leukemia, in relapse +C0153903|T191|PT|C93.7|ICD10|Other monocytic leukaemia|Other monocytic leukaemia +C0153903|T191|PT|C93.7|ICD10AE|Other monocytic leukemia|Other monocytic leukemia +C0598894|T191|PT|C93.9|ICD10|Monocytic leukaemia, unspecified|Monocytic leukaemia, unspecified +C0598894|T191|PT|C93.9|ICD10AE|Monocytic leukemia, unspecified|Monocytic leukemia, unspecified +C0598894|T191|HT|C93.9|ICD10CM|Monocytic leukemia, unspecified|Monocytic leukemia, unspecified +C0598894|T191|AB|C93.9|ICD10CM|Monocytic leukemia, unspecified|Monocytic leukemia, unspecified +C2861625|T191|AB|C93.90|ICD10CM|Monocytic leukemia, unsp, not having achieved remission|Monocytic leukemia, unsp, not having achieved remission +C0598894|T191|ET|C93.90|ICD10CM|Monocytic leukemia, unspecified NOS|Monocytic leukemia, unspecified NOS +C2349294|T191|ET|C93.90|ICD10CM|Monocytic leukemia, unspecified with failed remission|Monocytic leukemia, unspecified with failed remission +C2861625|T191|PT|C93.90|ICD10CM|Monocytic leukemia, unspecified, not having achieved remission|Monocytic leukemia, unspecified, not having achieved remission +C0686595|T191|AB|C93.91|ICD10CM|Monocytic leukemia, unspecified in remission|Monocytic leukemia, unspecified in remission +C0686595|T191|PT|C93.91|ICD10CM|Monocytic leukemia, unspecified in remission|Monocytic leukemia, unspecified in remission +C2349295|T191|AB|C93.92|ICD10CM|Monocytic leukemia, unspecified in relapse|Monocytic leukemia, unspecified in relapse +C2349295|T191|PT|C93.92|ICD10CM|Monocytic leukemia, unspecified in relapse|Monocytic leukemia, unspecified in relapse +C0153903|T191|HT|C93.Z|ICD10CM|Other monocytic leukemia|Other monocytic leukemia +C0153903|T191|AB|C93.Z|ICD10CM|Other monocytic leukemia|Other monocytic leukemia +C0153903|T191|ET|C93.Z0|ICD10CM|Other monocytic leukemia NOS|Other monocytic leukemia NOS +C3263939|T191|AB|C93.Z0|ICD10CM|Other monocytic leukemia, not having achieved remission|Other monocytic leukemia, not having achieved remission +C3263939|T191|PT|C93.Z0|ICD10CM|Other monocytic leukemia, not having achieved remission|Other monocytic leukemia, not having achieved remission +C0153905|T191|PT|C93.Z1|ICD10CM|Other monocytic leukemia, in remission|Other monocytic leukemia, in remission +C0153905|T191|AB|C93.Z1|ICD10CM|Other monocytic leukemia, in remission|Other monocytic leukemia, in remission +C2349293|T191|AB|C93.Z2|ICD10CM|Other monocytic leukemia, in relapse|Other monocytic leukemia, in relapse +C2349293|T191|PT|C93.Z2|ICD10CM|Other monocytic leukemia, in relapse|Other monocytic leukemia, in relapse +C0494175|T191|HT|C94|ICD10|Other leukaemias of specified cell type|Other leukaemias of specified cell type +C0494175|T191|AB|C94|ICD10CM|Other leukemias of specified cell type|Other leukemias of specified cell type +C0494175|T191|HT|C94|ICD10CM|Other leukemias of specified cell type|Other leukemias of specified cell type +C0494175|T191|HT|C94|ICD10AE|Other leukemias of specified cell type|Other leukemias of specified cell type +C0001317|T191|PT|C94.0|ICD10|Acute erythraemia and erythroleukaemia|Acute erythraemia and erythroleukaemia +C0001317|T191|PT|C94.0|ICD10AE|Acute erythremia and erythroleukemia|Acute erythremia and erythroleukemia +C0023440|T191|HT|C94.0|ICD10CM|Acute erythroid leukemia|Acute erythroid leukemia +C0023440|T191|AB|C94.0|ICD10CM|Acute erythroid leukemia|Acute erythroid leukemia +C2861627|T191|ET|C94.0|ICD10CM|Acute myeloid leukemia M6(a)(b)|Acute myeloid leukemia M6(a)(b) +C0023440|T191|ET|C94.0|ICD10CM|Erythroleukemia|Erythroleukemia +C0023440|T191|ET|C94.00|ICD10CM|Acute erythroid leukemia NOS|Acute erythroid leukemia NOS +C2976785|T191|ET|C94.00|ICD10CM|Acute erythroid leukemia with failed remission|Acute erythroid leukemia with failed remission +C2861630|T191|AB|C94.00|ICD10CM|Acute erythroid leukemia, not having achieved remission|Acute erythroid leukemia, not having achieved remission +C2861630|T191|PT|C94.00|ICD10CM|Acute erythroid leukemia, not having achieved remission|Acute erythroid leukemia, not having achieved remission +C1332148|T191|AB|C94.01|ICD10CM|Acute erythroid leukemia, in remission|Acute erythroid leukemia, in remission +C1332148|T191|PT|C94.01|ICD10CM|Acute erythroid leukemia, in remission|Acute erythroid leukemia, in remission +C2861632|T191|AB|C94.02|ICD10CM|Acute erythroid leukemia, in relapse|Acute erythroid leukemia, in relapse +C2861632|T191|PT|C94.02|ICD10CM|Acute erythroid leukemia, in relapse|Acute erythroid leukemia, in relapse +C0152272|T191|PT|C94.1|ICD10|Chronic erythraemia|Chronic erythraemia +C0152272|T191|PT|C94.1|ICD10AE|Chronic erythremia|Chronic erythremia +C0023462|T191|PT|C94.2|ICD10|Acute megakaryoblastic leukaemia|Acute megakaryoblastic leukaemia +C0023462|T191|PT|C94.2|ICD10AE|Acute megakaryoblastic leukemia|Acute megakaryoblastic leukemia +C0023462|T191|HT|C94.2|ICD10CM|Acute megakaryoblastic leukemia|Acute megakaryoblastic leukemia +C0023462|T191|AB|C94.2|ICD10CM|Acute megakaryoblastic leukemia|Acute megakaryoblastic leukemia +C0023462|T191|ET|C94.2|ICD10CM|Acute megakaryocytic leukemia|Acute megakaryocytic leukemia +C0023462|T191|ET|C94.2|ICD10CM|Acute myeloid leukemia M7|Acute myeloid leukemia M7 +C0023462|T191|ET|C94.20|ICD10CM|Acute megakaryoblastic leukemia NOS|Acute megakaryoblastic leukemia NOS +C2861634|T191|AB|C94.20|ICD10CM|Acute megakaryoblastic leukemia not achieve remission|Acute megakaryoblastic leukemia not achieve remission +C2861634|T191|PT|C94.20|ICD10CM|Acute megakaryoblastic leukemia not having achieved remission|Acute megakaryoblastic leukemia not having achieved remission +C2861634|T191|ET|C94.20|ICD10CM|Acute megakaryoblastic leukemia with failed remission|Acute megakaryoblastic leukemia with failed remission +C0153914|T191|PT|C94.21|ICD10CM|Acute megakaryoblastic leukemia, in remission|Acute megakaryoblastic leukemia, in remission +C0153914|T191|AB|C94.21|ICD10CM|Acute megakaryoblastic leukemia, in remission|Acute megakaryoblastic leukemia, in remission +C2367455|T191|AB|C94.22|ICD10CM|Acute megakaryoblastic leukemia, in relapse|Acute megakaryoblastic leukemia, in relapse +C2367455|T191|PT|C94.22|ICD10CM|Acute megakaryoblastic leukemia, in relapse|Acute megakaryoblastic leukemia, in relapse +C0023461|T191|PT|C94.3|ICD10|Mast cell leukaemia|Mast cell leukaemia +C0023461|T191|HT|C94.3|ICD10CM|Mast cell leukemia|Mast cell leukemia +C0023461|T191|AB|C94.3|ICD10CM|Mast cell leukemia|Mast cell leukemia +C0023461|T191|PT|C94.3|ICD10AE|Mast cell leukemia|Mast cell leukemia +C0023461|T191|ET|C94.30|ICD10CM|Mast cell leukemia NOS|Mast cell leukemia NOS +C2861636|T191|AB|C94.30|ICD10CM|Mast cell leukemia not having achieved remission|Mast cell leukemia not having achieved remission +C2861636|T191|PT|C94.30|ICD10CM|Mast cell leukemia not having achieved remission|Mast cell leukemia not having achieved remission +C2861635|T191|ET|C94.30|ICD10CM|Mast cell leukemia with failed remission|Mast cell leukemia with failed remission +C0836977|T191|PT|C94.31|ICD10CM|Mast cell leukemia, in remission|Mast cell leukemia, in remission +C0836977|T191|AB|C94.31|ICD10CM|Mast cell leukemia, in remission|Mast cell leukemia, in remission +C2367254|T191|AB|C94.32|ICD10CM|Mast cell leukemia, in relapse|Mast cell leukemia, in relapse +C2367254|T191|PT|C94.32|ICD10CM|Mast cell leukemia, in relapse|Mast cell leukemia, in relapse +C0334674|T191|ET|C94.4|ICD10CM|Acute myelofibrosis|Acute myelofibrosis +C0334674|T191|PT|C94.4|ICD10|Acute panmyelosis|Acute panmyelosis +C0334674|T191|HT|C94.4|ICD10CM|Acute panmyelosis with myelofibrosis|Acute panmyelosis with myelofibrosis +C0334674|T191|AB|C94.4|ICD10CM|Acute panmyelosis with myelofibrosis|Acute panmyelosis with myelofibrosis +C0334674|T191|ET|C94.40|ICD10CM|Acute myelofibrosis NOS|Acute myelofibrosis NOS +C0334674|T191|ET|C94.40|ICD10CM|Acute panmyelosis NOS|Acute panmyelosis NOS +C2861638|T191|AB|C94.40|ICD10CM|Acute panmyelosis w myelofibrosis not achieve remission|Acute panmyelosis w myelofibrosis not achieve remission +C2861638|T191|PT|C94.40|ICD10CM|Acute panmyelosis with myelofibrosis not having achieved remission|Acute panmyelosis with myelofibrosis not having achieved remission +C2861637|T047|ET|C94.40|ICD10CM|Acute panmyelosis with myelofibrosis with failed remission|Acute panmyelosis with myelofibrosis with failed remission +C2861639|T191|AB|C94.41|ICD10CM|Acute panmyelosis with myelofibrosis, in remission|Acute panmyelosis with myelofibrosis, in remission +C2861639|T191|PT|C94.41|ICD10CM|Acute panmyelosis with myelofibrosis, in remission|Acute panmyelosis with myelofibrosis, in remission +C2861640|T191|AB|C94.42|ICD10CM|Acute panmyelosis with myelofibrosis, in relapse|Acute panmyelosis with myelofibrosis, in relapse +C2861640|T191|PT|C94.42|ICD10CM|Acute panmyelosis with myelofibrosis, in relapse|Acute panmyelosis with myelofibrosis, in relapse +C0334674|T191|PT|C94.5|ICD10|Acute myelofibrosis|Acute myelofibrosis +C2861642|T191|AB|C94.6|ICD10CM|Myelodysplastic disease, not classified|Myelodysplastic disease, not classified +C2861642|T191|PT|C94.6|ICD10CM|Myelodysplastic disease, not classified|Myelodysplastic disease, not classified +C2861641|T191|ET|C94.6|ICD10CM|Myeloproliferative disease, not classified|Myeloproliferative disease, not classified +C0029812|T191|PT|C94.7|ICD10|Other specified leukaemias|Other specified leukaemias +C0029812|T191|PT|C94.7|ICD10AE|Other specified leukemias|Other specified leukemias +C0023437|T191|ET|C94.8|ICD10CM|Acute basophilic leukemia|Acute basophilic leukemia +C1292777|T191|ET|C94.8|ICD10CM|Aggressive NK-cell leukemia|Aggressive NK-cell leukemia +C0029812|T191|HT|C94.8|ICD10CM|Other specified leukemias|Other specified leukemias +C0029812|T191|AB|C94.8|ICD10CM|Other specified leukemias|Other specified leukemias +C2349302|T191|ET|C94.80|ICD10CM|Other specified leukemia with failed remission|Other specified leukemia with failed remission +C0029812|T191|ET|C94.80|ICD10CM|Other specified leukemias NOS|Other specified leukemias NOS +C2861643|T191|AB|C94.80|ICD10CM|Other specified leukemias not having achieved remission|Other specified leukemias not having achieved remission +C2861643|T191|PT|C94.80|ICD10CM|Other specified leukemias not having achieved remission|Other specified leukemias not having achieved remission +C0153916|T191|PT|C94.81|ICD10CM|Other specified leukemias, in remission|Other specified leukemias, in remission +C0153916|T191|AB|C94.81|ICD10CM|Other specified leukemias, in remission|Other specified leukemias, in remission +C2349303|T191|AB|C94.82|ICD10CM|Other specified leukemias, in relapse|Other specified leukemias, in relapse +C2349303|T191|PT|C94.82|ICD10CM|Other specified leukemias, in relapse|Other specified leukemias, in relapse +C0023418|T191|HT|C95|ICD10|Leukaemia of unspecified cell type|Leukaemia of unspecified cell type +C0023418|T191|HT|C95|ICD10CM|Leukemia of unspecified cell type|Leukemia of unspecified cell type +C0023418|T191|AB|C95|ICD10CM|Leukemia of unspecified cell type|Leukemia of unspecified cell type +C0023418|T191|HT|C95|ICD10AE|Leukemia of unspecified cell type|Leukemia of unspecified cell type +C0349680|T191|ET|C95.0|ICD10CM|Acute bilineal leukemia|Acute bilineal leukemia +C0085669|T191|PT|C95.0|ICD10|Acute leukaemia of unspecified cell type|Acute leukaemia of unspecified cell type +C0085669|T191|PT|C95.0|ICD10AE|Acute leukemia of unspecified cell type|Acute leukemia of unspecified cell type +C0085669|T191|HT|C95.0|ICD10CM|Acute leukemia of unspecified cell type|Acute leukemia of unspecified cell type +C0085669|T191|AB|C95.0|ICD10CM|Acute leukemia of unspecified cell type|Acute leukemia of unspecified cell type +C0023464|T191|ET|C95.0|ICD10CM|Acute mixed lineage leukemia|Acute mixed lineage leukemia +C0023464|T191|ET|C95.0|ICD10CM|Biphenotypic acute leukemia|Biphenotypic acute leukemia +C2861644|T191|ET|C95.0|ICD10CM|Stem cell leukemia of unclear lineage|Stem cell leukemia of unclear lineage +C0085669|T191|ET|C95.00|ICD10CM|Acute leukemia NOS|Acute leukemia NOS +C2861645|T191|AB|C95.00|ICD10CM|Acute leukemia of unsp cell type not achieve remission|Acute leukemia of unsp cell type not achieve remission +C2861645|T191|PT|C95.00|ICD10CM|Acute leukemia of unspecified cell type not having achieved remission|Acute leukemia of unspecified cell type not having achieved remission +C2349304|T191|ET|C95.00|ICD10CM|Acute leukemia of unspecified cell type with failed remission|Acute leukemia of unspecified cell type with failed remission +C0686586|T191|PT|C95.01|ICD10CM|Acute leukemia of unspecified cell type, in remission|Acute leukemia of unspecified cell type, in remission +C0686586|T191|AB|C95.01|ICD10CM|Acute leukemia of unspecified cell type, in remission|Acute leukemia of unspecified cell type, in remission +C2349305|T191|AB|C95.02|ICD10CM|Acute leukemia of unspecified cell type, in relapse|Acute leukemia of unspecified cell type, in relapse +C2349305|T191|PT|C95.02|ICD10CM|Acute leukemia of unspecified cell type, in relapse|Acute leukemia of unspecified cell type, in relapse +C1279296|T191|PT|C95.1|ICD10|Chronic leukaemia of unspecified cell type|Chronic leukaemia of unspecified cell type +C1279296|T191|PT|C95.1|ICD10AE|Chronic leukemia of unspecified cell type|Chronic leukemia of unspecified cell type +C1279296|T191|HT|C95.1|ICD10CM|Chronic leukemia of unspecified cell type|Chronic leukemia of unspecified cell type +C1279296|T191|AB|C95.1|ICD10CM|Chronic leukemia of unspecified cell type|Chronic leukemia of unspecified cell type +C1279296|T191|ET|C95.10|ICD10CM|Chronic leukemia NOS|Chronic leukemia NOS +C2861646|T191|AB|C95.10|ICD10CM|Chronic leukemia of unsp cell type not achieve remission|Chronic leukemia of unsp cell type not achieve remission +C2861646|T191|PT|C95.10|ICD10CM|Chronic leukemia of unspecified cell type not having achieved remission|Chronic leukemia of unspecified cell type not having achieved remission +C2349306|T191|ET|C95.10|ICD10CM|Chronic leukemia of unspecified cell type with failed remission|Chronic leukemia of unspecified cell type with failed remission +C0686589|T191|PT|C95.11|ICD10CM|Chronic leukemia of unspecified cell type, in remission|Chronic leukemia of unspecified cell type, in remission +C0686589|T191|AB|C95.11|ICD10CM|Chronic leukemia of unspecified cell type, in remission|Chronic leukemia of unspecified cell type, in remission +C2349307|T191|AB|C95.12|ICD10CM|Chronic leukemia of unspecified cell type, in relapse|Chronic leukemia of unspecified cell type, in relapse +C2349307|T191|PT|C95.12|ICD10CM|Chronic leukemia of unspecified cell type, in relapse|Chronic leukemia of unspecified cell type, in relapse +C0153924|T191|PT|C95.2|ICD10|Subacute leukaemia of unspecified cell type|Subacute leukaemia of unspecified cell type +C0153924|T191|PT|C95.2|ICD10AE|Subacute leukemia of unspecified cell type|Subacute leukemia of unspecified cell type +C0029655|T191|PT|C95.7|ICD10|Other leukaemia of unspecified cell type|Other leukaemia of unspecified cell type +C0029655|T191|PT|C95.7|ICD10AE|Other leukemia of unspecified cell type|Other leukemia of unspecified cell type +C0023418|T191|PT|C95.9|ICD10|Leukaemia, unspecified|Leukaemia, unspecified +C0023418|T191|PT|C95.9|ICD10AE|Leukemia, unspecified|Leukemia, unspecified +C0023418|T191|HT|C95.9|ICD10CM|Leukemia, unspecified|Leukemia, unspecified +C0023418|T191|AB|C95.9|ICD10CM|Leukemia, unspecified|Leukemia, unspecified +C0023418|T191|ET|C95.90|ICD10CM|Leukemia NOS|Leukemia NOS +C2861647|T191|AB|C95.90|ICD10CM|Leukemia, unspecified not having achieved remission|Leukemia, unspecified not having achieved remission +C2861647|T191|PT|C95.90|ICD10CM|Leukemia, unspecified not having achieved remission|Leukemia, unspecified not having achieved remission +C2349312|T191|ET|C95.90|ICD10CM|Leukemia, unspecified with failed remission|Leukemia, unspecified with failed remission +C0686584|T191|PT|C95.91|ICD10CM|Leukemia, unspecified, in remission|Leukemia, unspecified, in remission +C0686584|T191|AB|C95.91|ICD10CM|Leukemia, unspecified, in remission|Leukemia, unspecified, in remission +C0920028|T191|AB|C95.92|ICD10CM|Leukemia, unspecified, in relapse|Leukemia, unspecified, in relapse +C0920028|T191|PT|C95.92|ICD10CM|Leukemia, unspecified, in relapse|Leukemia, unspecified, in relapse +C0494176|T191|AB|C96|ICD10CM|Oth & unsp malig neoplm of lymphoid, hematpoetc and rel tiss|Oth & unsp malig neoplm of lymphoid, hematpoetc and rel tiss +C0494176|T191|HT|C96|ICD10|Other and unspecified malignant neoplasms of lymphoid, haematopoietic and related tissue|Other and unspecified malignant neoplasms of lymphoid, haematopoietic and related tissue +C0494176|T191|HT|C96|ICD10CM|Other and unspecified malignant neoplasms of lymphoid, hematopoietic and related tissue|Other and unspecified malignant neoplasms of lymphoid, hematopoietic and related tissue +C0494176|T191|HT|C96|ICD10AE|Other and unspecified malignant neoplasms of lymphoid, hematopoietic and related tissue|Other and unspecified malignant neoplasms of lymphoid, hematopoietic and related tissue +C2861648|T191|ET|C96.0|ICD10CM|Histiocytosis X, multisystemic|Histiocytosis X, multisystemic +C0023381|T047|ET|C96.0|ICD10CM|Letterer-Siwe disease|Letterer-Siwe disease +C0023381|T047|PT|C96.0|ICD10|Letterer-Siwe disease|Letterer-Siwe disease +C2861649|T191|PT|C96.0|ICD10CM|Multifocal and multisystemic (disseminated) Langerhans-cell histiocytosis|Multifocal and multisystemic (disseminated) Langerhans-cell histiocytosis +C2861649|T191|AB|C96.0|ICD10CM|Multifocal and multisystemic Langerhans-cell histiocytosis|Multifocal and multisystemic Langerhans-cell histiocytosis +C0019623|T191|PT|C96.1|ICD10|Malignant histiocytosis|Malignant histiocytosis +C0036221|T191|HT|C96.2|ICD10CM|Malignant mast cell neoplasm|Malignant mast cell neoplasm +C0036221|T191|AB|C96.2|ICD10CM|Malignant mast cell neoplasm|Malignant mast cell neoplasm +C0036221|T191|PT|C96.2|ICD10AE|Malignant mast cell tumor|Malignant mast cell tumor +C0036221|T191|PT|C96.2|ICD10|Malignant mast cell tumour|Malignant mast cell tumour +C4509018|T191|AB|C96.20|ICD10CM|Malignant mast cell neoplasm, unspecified|Malignant mast cell neoplasm, unspecified +C4509018|T191|PT|C96.20|ICD10CM|Malignant mast cell neoplasm, unspecified|Malignant mast cell neoplasm, unspecified +C1112486|T191|AB|C96.21|ICD10CM|Aggressive systemic mastocytosis|Aggressive systemic mastocytosis +C1112486|T191|PT|C96.21|ICD10CM|Aggressive systemic mastocytosis|Aggressive systemic mastocytosis +C0036221|T191|AB|C96.22|ICD10CM|Mast cell sarcoma|Mast cell sarcoma +C0036221|T191|PT|C96.22|ICD10CM|Mast cell sarcoma|Mast cell sarcoma +C4480966|T191|PT|C96.29|ICD10CM|Other malignant mast cell neoplasm|Other malignant mast cell neoplasm +C4480966|T191|AB|C96.29|ICD10CM|Other malignant mast cell neoplasm|Other malignant mast cell neoplasm +C0334663|T191|PT|C96.3|ICD10|True histiocytic lymphoma|True histiocytic lymphoma +C1260325|T191|ET|C96.4|ICD10CM|Follicular dendritic cell sarcoma|Follicular dendritic cell sarcoma +C1260326|T191|ET|C96.4|ICD10CM|Interdigitating dendritic cell sarcoma|Interdigitating dendritic cell sarcoma +C1260327|T191|ET|C96.4|ICD10CM|Langerhans cell sarcoma|Langerhans cell sarcoma +C2861650|T191|PT|C96.4|ICD10CM|Sarcoma of dendritic cells (accessory cells)|Sarcoma of dendritic cells (accessory cells) +C2861650|T191|AB|C96.4|ICD10CM|Sarcoma of dendritic cells (accessory cells)|Sarcoma of dendritic cells (accessory cells) +C0019621|T191|ET|C96.5|ICD10CM|Hand-Schüller-Christian disease|Hand-Schüller-Christian disease +C2861651|T191|ET|C96.5|ICD10CM|Histiocytosis X, multifocal|Histiocytosis X, multifocal +C2861652|T191|AB|C96.5|ICD10CM|Multifocal and unisystemic Langerhans-cell histiocytosis|Multifocal and unisystemic Langerhans-cell histiocytosis +C2861652|T191|PT|C96.5|ICD10CM|Multifocal and unisystemic Langerhans-cell histiocytosis|Multifocal and unisystemic Langerhans-cell histiocytosis +C0014461|T046|ET|C96.6|ICD10CM|Eosinophilic granuloma|Eosinophilic granuloma +C0023381|T047|ET|C96.6|ICD10CM|Histiocytosis X NOS|Histiocytosis X NOS +C2861653|T191|ET|C96.6|ICD10CM|Histiocytosis X, unifocal|Histiocytosis X, unifocal +C0019621|T191|ET|C96.6|ICD10CM|Langerhans-cell histiocytosis NOS|Langerhans-cell histiocytosis NOS +C1306599|T191|AB|C96.6|ICD10CM|Unifocal Langerhans-cell histiocytosis|Unifocal Langerhans-cell histiocytosis +C1306599|T191|PT|C96.6|ICD10CM|Unifocal Langerhans-cell histiocytosis|Unifocal Langerhans-cell histiocytosis +C0348392|T191|PT|C96.7|ICD10|Other specified malignant neoplasms of lymphoid, haematopoietic and related tissue|Other specified malignant neoplasms of lymphoid, haematopoietic and related tissue +C0348392|T191|PT|C96.7|ICD10AE|Other specified malignant neoplasms of lymphoid, hematopoietic and related tissue|Other specified malignant neoplasms of lymphoid, hematopoietic and related tissue +C0348393|T191|AB|C96.9|ICD10CM|Malig neoplm of lymphoid, hematpoetc and rel tissue, unsp|Malig neoplm of lymphoid, hematpoetc and rel tissue, unsp +C0348393|T191|PT|C96.9|ICD10|Malignant neoplasm of lymphoid, haematopoietic and related tissue, unspecified|Malignant neoplasm of lymphoid, haematopoietic and related tissue, unspecified +C0348393|T191|PT|C96.9|ICD10CM|Malignant neoplasm of lymphoid, hematopoietic and related tissue, unspecified|Malignant neoplasm of lymphoid, hematopoietic and related tissue, unspecified +C0348393|T191|PT|C96.9|ICD10AE|Malignant neoplasm of lymphoid, hematopoietic and related tissue, unspecified|Malignant neoplasm of lymphoid, hematopoietic and related tissue, unspecified +C0334663|T191|PT|C96.A|ICD10CM|Histiocytic sarcoma|Histiocytic sarcoma +C0334663|T191|AB|C96.A|ICD10CM|Histiocytic sarcoma|Histiocytic sarcoma +C0019623|T191|ET|C96.A|ICD10CM|Malignant histiocytosis|Malignant histiocytosis +C0348392|T191|AB|C96.Z|ICD10CM|Oth malig neoplm of lymphoid, hematpoetc and related tissue|Oth malig neoplm of lymphoid, hematpoetc and related tissue +C0348392|T191|PT|C96.Z|ICD10CM|Other specified malignant neoplasms of lymphoid, hematopoietic and related tissue|Other specified malignant neoplasms of lymphoid, hematopoietic and related tissue +C0362051|T191|PT|C97|ICD10|Malignant neoplasms of independent (primary) multiple sites|Malignant neoplasms of independent (primary) multiple sites +C0362051|T191|HT|C97-C97.9|ICD10|Malignant neoplasms of independent (primary) multiple sites|Malignant neoplasms of independent (primary) multiple sites +C0494177|T191|AB|D00|ICD10CM|Carcinoma in situ of oral cavity, esophagus and stomach|Carcinoma in situ of oral cavity, esophagus and stomach +C0494177|T191|HT|D00|ICD10CM|Carcinoma in situ of oral cavity, esophagus and stomach|Carcinoma in situ of oral cavity, esophagus and stomach +C0494177|T191|HT|D00|ICD10AE|Carcinoma in situ of oral cavity, esophagus and stomach|Carcinoma in situ of oral cavity, esophagus and stomach +C0494177|T191|HT|D00|ICD10|Carcinoma in situ of oral cavity, oesophagus and stomach|Carcinoma in situ of oral cavity, oesophagus and stomach +C0006079|T191|ET|D00-D09|ICD10CM|Bowen's disease|Bowen's disease +C0014818|T047|ET|D00-D09|ICD10CM|erythroplasia|erythroplasia +C4290074|T191|ET|D00-D09|ICD10CM|grade III intraepithelial neoplasia|grade III intraepithelial neoplasia +C1265999|T191|HT|D00-D09|ICD10CM|In situ neoplasms (D00-D09)|In situ neoplasms (D00-D09) +C0154089|T191|ET|D00-D09|ICD10CM|Queyrat's erythroplasia|Queyrat's erythroplasia +C1265999|T191|HT|D00-D09.9|ICD10|In situ neoplasms|In situ neoplasms +C0154058|T191|PX|D00.0|ICD10|Carcinoma in situ of lip, oral cavity and pharynx|Carcinoma in situ of lip, oral cavity and pharynx +C0154058|T191|HT|D00.0|ICD10CM|Carcinoma in situ of lip, oral cavity and pharynx|Carcinoma in situ of lip, oral cavity and pharynx +C0154058|T191|AB|D00.0|ICD10CM|Carcinoma in situ of lip, oral cavity and pharynx|Carcinoma in situ of lip, oral cavity and pharynx +C0154058|T191|PS|D00.0|ICD10|Lip, oral cavity and pharynx|Lip, oral cavity and pharynx +C2861655|T191|AB|D00.00|ICD10CM|Carcinoma in situ of oral cavity, unspecified site|Carcinoma in situ of oral cavity, unspecified site +C2861655|T191|PT|D00.00|ICD10CM|Carcinoma in situ of oral cavity, unspecified site|Carcinoma in situ of oral cavity, unspecified site +C2861656|T191|AB|D00.01|ICD10CM|Carcinoma in situ of labial mucosa and vermilion border|Carcinoma in situ of labial mucosa and vermilion border +C2861656|T191|PT|D00.01|ICD10CM|Carcinoma in situ of labial mucosa and vermilion border|Carcinoma in situ of labial mucosa and vermilion border +C1274254|T191|PT|D00.02|ICD10CM|Carcinoma in situ of buccal mucosa|Carcinoma in situ of buccal mucosa +C1274254|T191|AB|D00.02|ICD10CM|Carcinoma in situ of buccal mucosa|Carcinoma in situ of buccal mucosa +C2861657|T191|AB|D00.03|ICD10CM|Carcinoma in situ of gingiva and edentulous alveolar ridge|Carcinoma in situ of gingiva and edentulous alveolar ridge +C2861657|T191|PT|D00.03|ICD10CM|Carcinoma in situ of gingiva and edentulous alveolar ridge|Carcinoma in situ of gingiva and edentulous alveolar ridge +C0345556|T191|PT|D00.04|ICD10CM|Carcinoma in situ of soft palate|Carcinoma in situ of soft palate +C0345556|T191|AB|D00.04|ICD10CM|Carcinoma in situ of soft palate|Carcinoma in situ of soft palate +C0345551|T191|PT|D00.05|ICD10CM|Carcinoma in situ of hard palate|Carcinoma in situ of hard palate +C0345551|T191|AB|D00.05|ICD10CM|Carcinoma in situ of hard palate|Carcinoma in situ of hard palate +C0347079|T191|PT|D00.06|ICD10CM|Carcinoma in situ of floor of mouth|Carcinoma in situ of floor of mouth +C0347079|T191|AB|D00.06|ICD10CM|Carcinoma in situ of floor of mouth|Carcinoma in situ of floor of mouth +C0347074|T191|PT|D00.07|ICD10CM|Carcinoma in situ of tongue|Carcinoma in situ of tongue +C0347074|T191|AB|D00.07|ICD10CM|Carcinoma in situ of tongue|Carcinoma in situ of tongue +C0347107|T191|ET|D00.08|ICD10CM|Carcinoma in situ of aryepiglottic fold NOS|Carcinoma in situ of aryepiglottic fold NOS +C0684974|T191|ET|D00.08|ICD10CM|Carcinoma in situ of hypopharyngeal aspect of aryepiglottic fold|Carcinoma in situ of hypopharyngeal aspect of aryepiglottic fold +C2861658|T191|ET|D00.08|ICD10CM|Carcinoma in situ of marginal zone of aryepiglottic fold|Carcinoma in situ of marginal zone of aryepiglottic fold +C0347098|T191|PT|D00.08|ICD10CM|Carcinoma in situ of pharynx|Carcinoma in situ of pharynx +C0347098|T191|AB|D00.08|ICD10CM|Carcinoma in situ of pharynx|Carcinoma in situ of pharynx +C0154059|T191|PX|D00.1|ICD10AE|Carcinoma in situ of esophagus|Carcinoma in situ of esophagus +C0154059|T191|PT|D00.1|ICD10CM|Carcinoma in situ of esophagus|Carcinoma in situ of esophagus +C0154059|T191|AB|D00.1|ICD10CM|Carcinoma in situ of esophagus|Carcinoma in situ of esophagus +C0154059|T191|PX|D00.1|ICD10|Carcinoma in situ of oesophagus|Carcinoma in situ of oesophagus +C0154059|T191|PS|D00.1|ICD10AE|Esophagus|Esophagus +C0154059|T191|PS|D00.1|ICD10|Oesophagus|Oesophagus +C0154060|T191|PX|D00.2|ICD10|Carcinoma in situ of stomach|Carcinoma in situ of stomach +C0154060|T191|PT|D00.2|ICD10CM|Carcinoma in situ of stomach|Carcinoma in situ of stomach +C0154060|T191|AB|D00.2|ICD10CM|Carcinoma in situ of stomach|Carcinoma in situ of stomach +C0154060|T191|PS|D00.2|ICD10|Stomach|Stomach +C0154067|T191|HT|D01|ICD10|Carcinoma in situ of other and unspecified digestive organs|Carcinoma in situ of other and unspecified digestive organs +C0154067|T191|HT|D01|ICD10CM|Carcinoma in situ of other and unspecified digestive organs|Carcinoma in situ of other and unspecified digestive organs +C0154067|T191|AB|D01|ICD10CM|Carcinoma in situ of other and unspecified digestive organs|Carcinoma in situ of other and unspecified digestive organs +C0154061|T191|PT|D01.0|ICD10CM|Carcinoma in situ of colon|Carcinoma in situ of colon +C0154061|T191|AB|D01.0|ICD10CM|Carcinoma in situ of colon|Carcinoma in situ of colon +C0154061|T191|PX|D01.0|ICD10|Carcinoma in situ of colon|Carcinoma in situ of colon +C0154061|T191|PS|D01.0|ICD10|Colon|Colon +C0345875|T191|PX|D01.1|ICD10|Carcinoma in situ of rectosigmoid junction|Carcinoma in situ of rectosigmoid junction +C0345875|T191|PT|D01.1|ICD10CM|Carcinoma in situ of rectosigmoid junction|Carcinoma in situ of rectosigmoid junction +C0345875|T191|AB|D01.1|ICD10CM|Carcinoma in situ of rectosigmoid junction|Carcinoma in situ of rectosigmoid junction +C0345875|T191|PS|D01.1|ICD10|Rectosigmoid junction|Rectosigmoid junction +C0154062|T191|PX|D01.2|ICD10|Carcinoma in situ of rectum|Carcinoma in situ of rectum +C0154062|T191|PT|D01.2|ICD10CM|Carcinoma in situ of rectum|Carcinoma in situ of rectum +C0154062|T191|AB|D01.2|ICD10CM|Carcinoma in situ of rectum|Carcinoma in situ of rectum +C0154062|T191|PS|D01.2|ICD10|Rectum|Rectum +C0496853|T191|ET|D01.3|ICD10CM|Anal intraepithelial neoplasia III [AIN III]|Anal intraepithelial neoplasia III [AIN III] +C0496853|T191|PS|D01.3|ICD10|Anus and anal canal|Anus and anal canal +C0496853|T191|PX|D01.3|ICD10|Carcinoma in situ of anus and anal canal|Carcinoma in situ of anus and anal canal +C0496853|T191|PT|D01.3|ICD10CM|Carcinoma in situ of anus and anal canal|Carcinoma in situ of anus and anal canal +C0496853|T191|AB|D01.3|ICD10CM|Carcinoma in situ of anus and anal canal|Carcinoma in situ of anus and anal canal +C4267878|T047|ET|D01.3|ICD10CM|Severe dysplasia of anus|Severe dysplasia of anus +C0154065|T191|AB|D01.4|ICD10CM|Carcinoma in situ of other and unsp parts of intestine|Carcinoma in situ of other and unsp parts of intestine +C0154065|T191|HT|D01.4|ICD10CM|Carcinoma in situ of other and unspecified parts of intestine|Carcinoma in situ of other and unspecified parts of intestine +C0154065|T191|PX|D01.4|ICD10|Carcinoma in situ of other and unspecified parts of intestine|Carcinoma in situ of other and unspecified parts of intestine +C0154065|T191|PS|D01.4|ICD10|Other and unspecified parts of intestine|Other and unspecified parts of intestine +C2861659|T191|AB|D01.40|ICD10CM|Carcinoma in situ of unspecified part of intestine|Carcinoma in situ of unspecified part of intestine +C2861659|T191|PT|D01.40|ICD10CM|Carcinoma in situ of unspecified part of intestine|Carcinoma in situ of unspecified part of intestine +C2861660|T191|AB|D01.49|ICD10CM|Carcinoma in situ of other parts of intestine|Carcinoma in situ of other parts of intestine +C2861660|T191|PT|D01.49|ICD10CM|Carcinoma in situ of other parts of intestine|Carcinoma in situ of other parts of intestine +C0345918|T191|ET|D01.5|ICD10CM|Carcinoma in situ of ampulla of Vater|Carcinoma in situ of ampulla of Vater +C0496854|T191|PX|D01.5|ICD10|Carcinoma in situ of liver, gallbladder and bile ducts|Carcinoma in situ of liver, gallbladder and bile ducts +C0496854|T191|PT|D01.5|ICD10CM|Carcinoma in situ of liver, gallbladder and bile ducts|Carcinoma in situ of liver, gallbladder and bile ducts +C0496854|T191|AB|D01.5|ICD10CM|Carcinoma in situ of liver, gallbladder and bile ducts|Carcinoma in situ of liver, gallbladder and bile ducts +C0496854|T191|PS|D01.5|ICD10|Liver, gallbladder and bile ducts|Liver, gallbladder and bile ducts +C0348400|T191|PX|D01.7|ICD10|Carcinoma in situ of other specified digestive organs|Carcinoma in situ of other specified digestive organs +C0348400|T191|PT|D01.7|ICD10CM|Carcinoma in situ of other specified digestive organs|Carcinoma in situ of other specified digestive organs +C0348400|T191|AB|D01.7|ICD10CM|Carcinoma in situ of other specified digestive organs|Carcinoma in situ of other specified digestive organs +C0347136|T191|ET|D01.7|ICD10CM|Carcinoma in situ of pancreas|Carcinoma in situ of pancreas +C0348400|T191|PS|D01.7|ICD10|Other specified digestive organs|Other specified digestive organs +C0154057|T191|PX|D01.9|ICD10|Carcinoma in situ of digestive organ, unspecified|Carcinoma in situ of digestive organ, unspecified +C0154057|T191|PT|D01.9|ICD10CM|Carcinoma in situ of digestive organ, unspecified|Carcinoma in situ of digestive organ, unspecified +C0154057|T191|AB|D01.9|ICD10CM|Carcinoma in situ of digestive organ, unspecified|Carcinoma in situ of digestive organ, unspecified +C0154057|T191|PS|D01.9|ICD10|Digestive organ, unspecified|Digestive organ, unspecified +C0494178|T191|AB|D02|ICD10CM|Carcinoma in situ of middle ear and respiratory system|Carcinoma in situ of middle ear and respiratory system +C0494178|T191|HT|D02|ICD10CM|Carcinoma in situ of middle ear and respiratory system|Carcinoma in situ of middle ear and respiratory system +C0494178|T191|HT|D02|ICD10|Carcinoma in situ of middle ear and respiratory system|Carcinoma in situ of middle ear and respiratory system +C2861661|T191|ET|D02.0|ICD10CM|Carcinoma in situ of aryepiglottic fold or interarytenoid fold, laryngeal aspect|Carcinoma in situ of aryepiglottic fold or interarytenoid fold, laryngeal aspect +C0865117|T191|ET|D02.0|ICD10CM|Carcinoma in situ of epiglottis (suprahyoid portion)|Carcinoma in situ of epiglottis (suprahyoid portion) +C0154069|T191|PX|D02.0|ICD10|Carcinoma in situ of larynx|Carcinoma in situ of larynx +C0154069|T191|PT|D02.0|ICD10CM|Carcinoma in situ of larynx|Carcinoma in situ of larynx +C0154069|T191|AB|D02.0|ICD10CM|Carcinoma in situ of larynx|Carcinoma in situ of larynx +C0154069|T191|PS|D02.0|ICD10|Larynx|Larynx +C0154070|T191|PX|D02.1|ICD10|Carcinoma in situ of trachea|Carcinoma in situ of trachea +C0154070|T191|PT|D02.1|ICD10CM|Carcinoma in situ of trachea|Carcinoma in situ of trachea +C0154070|T191|AB|D02.1|ICD10CM|Carcinoma in situ of trachea|Carcinoma in situ of trachea +C0154070|T191|PS|D02.1|ICD10|Trachea|Trachea +C0154071|T191|PS|D02.2|ICD10|Bronchus and lung|Bronchus and lung +C0154071|T191|PX|D02.2|ICD10|Carcinoma in situ of bronchus and lung|Carcinoma in situ of bronchus and lung +C0154071|T191|HT|D02.2|ICD10CM|Carcinoma in situ of bronchus and lung|Carcinoma in situ of bronchus and lung +C0154071|T191|AB|D02.2|ICD10CM|Carcinoma in situ of bronchus and lung|Carcinoma in situ of bronchus and lung +C2861662|T191|AB|D02.20|ICD10CM|Carcinoma in situ of unspecified bronchus and lung|Carcinoma in situ of unspecified bronchus and lung +C2861662|T191|PT|D02.20|ICD10CM|Carcinoma in situ of unspecified bronchus and lung|Carcinoma in situ of unspecified bronchus and lung +C2861663|T191|AB|D02.21|ICD10CM|Carcinoma in situ of right bronchus and lung|Carcinoma in situ of right bronchus and lung +C2861663|T191|PT|D02.21|ICD10CM|Carcinoma in situ of right bronchus and lung|Carcinoma in situ of right bronchus and lung +C2861664|T191|AB|D02.22|ICD10CM|Carcinoma in situ of left bronchus and lung|Carcinoma in situ of left bronchus and lung +C2861664|T191|PT|D02.22|ICD10CM|Carcinoma in situ of left bronchus and lung|Carcinoma in situ of left bronchus and lung +C0347097|T191|ET|D02.3|ICD10CM|Carcinoma in situ of accessory sinuses|Carcinoma in situ of accessory sinuses +C0349613|T191|ET|D02.3|ICD10CM|Carcinoma in situ of middle ear|Carcinoma in situ of middle ear +C0347095|T191|ET|D02.3|ICD10CM|Carcinoma in situ of nasal cavities|Carcinoma in situ of nasal cavities +C0348401|T191|PT|D02.3|ICD10CM|Carcinoma in situ of other parts of respiratory system|Carcinoma in situ of other parts of respiratory system +C0348401|T191|AB|D02.3|ICD10CM|Carcinoma in situ of other parts of respiratory system|Carcinoma in situ of other parts of respiratory system +C0348401|T191|PX|D02.3|ICD10|Carcinoma in situ of other parts of respiratory system|Carcinoma in situ of other parts of respiratory system +C0348401|T191|PS|D02.3|ICD10|Other parts of respiratory system|Other parts of respiratory system +C0348402|T191|PX|D02.4|ICD10|Carcinoma in situ of respiratory system, unspecified|Carcinoma in situ of respiratory system, unspecified +C0348402|T191|PT|D02.4|ICD10CM|Carcinoma in situ of respiratory system, unspecified|Carcinoma in situ of respiratory system, unspecified +C0348402|T191|AB|D02.4|ICD10CM|Carcinoma in situ of respiratory system, unspecified|Carcinoma in situ of respiratory system, unspecified +C0348402|T191|PS|D02.4|ICD10|Respiratory system, unspecified|Respiratory system, unspecified +C0346040|T191|HT|D03|ICD10|Melanoma in situ|Melanoma in situ +C0346040|T191|HT|D03|ICD10CM|Melanoma in situ|Melanoma in situ +C0346040|T191|AB|D03|ICD10CM|Melanoma in situ|Melanoma in situ +C0349028|T191|PT|D03.0|ICD10|Melanoma in situ of lip|Melanoma in situ of lip +C0349028|T191|PT|D03.0|ICD10CM|Melanoma in situ of lip|Melanoma in situ of lip +C0349028|T191|AB|D03.0|ICD10CM|Melanoma in situ of lip|Melanoma in situ of lip +C0349029|T191|HT|D03.1|ICD10CM|Melanoma in situ of eyelid, including canthus|Melanoma in situ of eyelid, including canthus +C0349029|T191|AB|D03.1|ICD10CM|Melanoma in situ of eyelid, including canthus|Melanoma in situ of eyelid, including canthus +C0349029|T191|PT|D03.1|ICD10|Melanoma in situ of eyelid, including canthus|Melanoma in situ of eyelid, including canthus +C2861665|T191|AB|D03.10|ICD10CM|Melanoma in situ of unspecified eyelid, including canthus|Melanoma in situ of unspecified eyelid, including canthus +C2861665|T191|PT|D03.10|ICD10CM|Melanoma in situ of unspecified eyelid, including canthus|Melanoma in situ of unspecified eyelid, including canthus +C2861666|T191|AB|D03.11|ICD10CM|Melanoma in situ of right eyelid, including canthus|Melanoma in situ of right eyelid, including canthus +C2861666|T191|HT|D03.11|ICD10CM|Melanoma in situ of right eyelid, including canthus|Melanoma in situ of right eyelid, including canthus +C4702864|T191|PT|D03.111|ICD10CM|Melanoma in situ of right upper eyelid, including canthus|Melanoma in situ of right upper eyelid, including canthus +C4702864|T191|AB|D03.111|ICD10CM|Melanoma in situ of right upper eyelid, including canthus|Melanoma in situ of right upper eyelid, including canthus +C4702865|T191|AB|D03.112|ICD10CM|Melanoma in situ of right lower eyelid, including canthus|Melanoma in situ of right lower eyelid, including canthus +C4702865|T191|PT|D03.112|ICD10CM|Melanoma in situ of right lower eyelid, including canthus|Melanoma in situ of right lower eyelid, including canthus +C2861667|T191|AB|D03.12|ICD10CM|Melanoma in situ of left eyelid, including canthus|Melanoma in situ of left eyelid, including canthus +C2861667|T191|HT|D03.12|ICD10CM|Melanoma in situ of left eyelid, including canthus|Melanoma in situ of left eyelid, including canthus +C4702866|T191|AB|D03.121|ICD10CM|Melanoma in situ of left upper eyelid, including canthus|Melanoma in situ of left upper eyelid, including canthus +C4702866|T191|PT|D03.121|ICD10CM|Melanoma in situ of left upper eyelid, including canthus|Melanoma in situ of left upper eyelid, including canthus +C4702867|T191|AB|D03.122|ICD10CM|Melanoma in situ of left lower eyelid, including canthus|Melanoma in situ of left lower eyelid, including canthus +C4702867|T191|PT|D03.122|ICD10CM|Melanoma in situ of left lower eyelid, including canthus|Melanoma in situ of left lower eyelid, including canthus +C0349030|T191|PT|D03.2|ICD10|Melanoma in situ of ear and external auricular canal|Melanoma in situ of ear and external auricular canal +C0349030|T191|HT|D03.2|ICD10CM|Melanoma in situ of ear and external auricular canal|Melanoma in situ of ear and external auricular canal +C0349030|T191|AB|D03.2|ICD10CM|Melanoma in situ of ear and external auricular canal|Melanoma in situ of ear and external auricular canal +C2861668|T191|AB|D03.20|ICD10CM|Melanoma in situ of unsp ear and external auricular canal|Melanoma in situ of unsp ear and external auricular canal +C2861668|T191|PT|D03.20|ICD10CM|Melanoma in situ of unspecified ear and external auricular canal|Melanoma in situ of unspecified ear and external auricular canal +C2861669|T191|AB|D03.21|ICD10CM|Melanoma in situ of right ear and external auricular canal|Melanoma in situ of right ear and external auricular canal +C2861669|T191|PT|D03.21|ICD10CM|Melanoma in situ of right ear and external auricular canal|Melanoma in situ of right ear and external auricular canal +C2861670|T191|AB|D03.22|ICD10CM|Melanoma in situ of left ear and external auricular canal|Melanoma in situ of left ear and external auricular canal +C2861670|T191|PT|D03.22|ICD10CM|Melanoma in situ of left ear and external auricular canal|Melanoma in situ of left ear and external auricular canal +C0348403|T191|HT|D03.3|ICD10CM|Melanoma in situ of other and unspecified parts of face|Melanoma in situ of other and unspecified parts of face +C0348403|T191|AB|D03.3|ICD10CM|Melanoma in situ of other and unspecified parts of face|Melanoma in situ of other and unspecified parts of face +C0348403|T191|PT|D03.3|ICD10|Melanoma in situ of other and unspecified parts of face|Melanoma in situ of other and unspecified parts of face +C2861671|T191|AB|D03.30|ICD10CM|Melanoma in situ of unspecified part of face|Melanoma in situ of unspecified part of face +C2861671|T191|PT|D03.30|ICD10CM|Melanoma in situ of unspecified part of face|Melanoma in situ of unspecified part of face +C2861672|T191|AB|D03.39|ICD10CM|Melanoma in situ of other parts of face|Melanoma in situ of other parts of face +C2861672|T191|PT|D03.39|ICD10CM|Melanoma in situ of other parts of face|Melanoma in situ of other parts of face +C0349031|T191|PT|D03.4|ICD10|Melanoma in situ of scalp and neck|Melanoma in situ of scalp and neck +C0349031|T191|PT|D03.4|ICD10CM|Melanoma in situ of scalp and neck|Melanoma in situ of scalp and neck +C0349031|T191|AB|D03.4|ICD10CM|Melanoma in situ of scalp and neck|Melanoma in situ of scalp and neck +C0349032|T191|HT|D03.5|ICD10CM|Melanoma in situ of trunk|Melanoma in situ of trunk +C0349032|T191|AB|D03.5|ICD10CM|Melanoma in situ of trunk|Melanoma in situ of trunk +C0349032|T191|PT|D03.5|ICD10|Melanoma in situ of trunk|Melanoma in situ of trunk +C2861673|T191|ET|D03.51|ICD10CM|Melanoma in situ of anal margin|Melanoma in situ of anal margin +C2861674|T191|AB|D03.51|ICD10CM|Melanoma in situ of anal skin|Melanoma in situ of anal skin +C2861674|T191|PT|D03.51|ICD10CM|Melanoma in situ of anal skin|Melanoma in situ of anal skin +C1290129|T191|ET|D03.51|ICD10CM|Melanoma in situ of perianal skin|Melanoma in situ of perianal skin +C2861675|T191|AB|D03.52|ICD10CM|Melanoma in situ of breast (skin) (soft tissue)|Melanoma in situ of breast (skin) (soft tissue) +C2861675|T191|PT|D03.52|ICD10CM|Melanoma in situ of breast (skin) (soft tissue)|Melanoma in situ of breast (skin) (soft tissue) +C2861676|T191|AB|D03.59|ICD10CM|Melanoma in situ of other part of trunk|Melanoma in situ of other part of trunk +C2861676|T191|PT|D03.59|ICD10CM|Melanoma in situ of other part of trunk|Melanoma in situ of other part of trunk +C0349033|T191|PT|D03.6|ICD10|Melanoma in situ of upper limb, including shoulder|Melanoma in situ of upper limb, including shoulder +C0349033|T191|HT|D03.6|ICD10CM|Melanoma in situ of upper limb, including shoulder|Melanoma in situ of upper limb, including shoulder +C0349033|T191|AB|D03.6|ICD10CM|Melanoma in situ of upper limb, including shoulder|Melanoma in situ of upper limb, including shoulder +C2861677|T191|AB|D03.60|ICD10CM|Melanoma in situ of unsp upper limb, including shoulder|Melanoma in situ of unsp upper limb, including shoulder +C2861677|T191|PT|D03.60|ICD10CM|Melanoma in situ of unspecified upper limb, including shoulder|Melanoma in situ of unspecified upper limb, including shoulder +C2861678|T191|AB|D03.61|ICD10CM|Melanoma in situ of right upper limb, including shoulder|Melanoma in situ of right upper limb, including shoulder +C2861678|T191|PT|D03.61|ICD10CM|Melanoma in situ of right upper limb, including shoulder|Melanoma in situ of right upper limb, including shoulder +C2861679|T191|AB|D03.62|ICD10CM|Melanoma in situ of left upper limb, including shoulder|Melanoma in situ of left upper limb, including shoulder +C2861679|T191|PT|D03.62|ICD10CM|Melanoma in situ of left upper limb, including shoulder|Melanoma in situ of left upper limb, including shoulder +C0349034|T191|HT|D03.7|ICD10CM|Melanoma in situ of lower limb, including hip|Melanoma in situ of lower limb, including hip +C0349034|T191|AB|D03.7|ICD10CM|Melanoma in situ of lower limb, including hip|Melanoma in situ of lower limb, including hip +C0349034|T191|PT|D03.7|ICD10|Melanoma in situ of lower limb, including hip|Melanoma in situ of lower limb, including hip +C2861680|T191|AB|D03.70|ICD10CM|Melanoma in situ of unspecified lower limb, including hip|Melanoma in situ of unspecified lower limb, including hip +C2861680|T191|PT|D03.70|ICD10CM|Melanoma in situ of unspecified lower limb, including hip|Melanoma in situ of unspecified lower limb, including hip +C2861681|T191|AB|D03.71|ICD10CM|Melanoma in situ of right lower limb, including hip|Melanoma in situ of right lower limb, including hip +C2861681|T191|PT|D03.71|ICD10CM|Melanoma in situ of right lower limb, including hip|Melanoma in situ of right lower limb, including hip +C2861682|T191|AB|D03.72|ICD10CM|Melanoma in situ of left lower limb, including hip|Melanoma in situ of left lower limb, including hip +C2861682|T191|PT|D03.72|ICD10CM|Melanoma in situ of left lower limb, including hip|Melanoma in situ of left lower limb, including hip +C0348404|T191|PT|D03.8|ICD10|Melanoma in situ of other sites|Melanoma in situ of other sites +C0348404|T191|PT|D03.8|ICD10CM|Melanoma in situ of other sites|Melanoma in situ of other sites +C0348404|T191|AB|D03.8|ICD10CM|Melanoma in situ of other sites|Melanoma in situ of other sites +C1403733|T191|ET|D03.8|ICD10CM|Melanoma in situ of scrotum|Melanoma in situ of scrotum +C0346040|T191|PT|D03.9|ICD10|Melanoma in situ, unspecified|Melanoma in situ, unspecified +C0346040|T191|PT|D03.9|ICD10CM|Melanoma in situ, unspecified|Melanoma in situ, unspecified +C0346040|T191|AB|D03.9|ICD10CM|Melanoma in situ, unspecified|Melanoma in situ, unspecified +C0154073|T191|HT|D04|ICD10CM|Carcinoma in situ of skin|Carcinoma in situ of skin +C0154073|T191|AB|D04|ICD10CM|Carcinoma in situ of skin|Carcinoma in situ of skin +C0154073|T191|HT|D04|ICD10|Carcinoma in situ of skin|Carcinoma in situ of skin +C0154074|T191|PX|D04.0|ICD10|Carcinoma in situ of skin of lip|Carcinoma in situ of skin of lip +C0154074|T191|PT|D04.0|ICD10CM|Carcinoma in situ of skin of lip|Carcinoma in situ of skin of lip +C0154074|T191|AB|D04.0|ICD10CM|Carcinoma in situ of skin of lip|Carcinoma in situ of skin of lip +C0154074|T191|PS|D04.0|ICD10|Skin of lip|Skin of lip +C0347138|T191|PX|D04.1|ICD10|Carcinoma in situ of skin of eyelid, including canthus|Carcinoma in situ of skin of eyelid, including canthus +C0347138|T191|HT|D04.1|ICD10CM|Carcinoma in situ of skin of eyelid, including canthus|Carcinoma in situ of skin of eyelid, including canthus +C0347138|T191|AB|D04.1|ICD10CM|Carcinoma in situ of skin of eyelid, including canthus|Carcinoma in situ of skin of eyelid, including canthus +C0347138|T191|PS|D04.1|ICD10|Skin of eyelid, including canthus|Skin of eyelid, including canthus +C2861683|T191|AB|D04.10|ICD10CM|Carcinoma in situ of skin of unsp eyelid, including canthus|Carcinoma in situ of skin of unsp eyelid, including canthus +C2861683|T191|PT|D04.10|ICD10CM|Carcinoma in situ of skin of unspecified eyelid, including canthus|Carcinoma in situ of skin of unspecified eyelid, including canthus +C2861684|T191|AB|D04.11|ICD10CM|Carcinoma in situ of skin of right eyelid, including canthus|Carcinoma in situ of skin of right eyelid, including canthus +C2861684|T191|HT|D04.11|ICD10CM|Carcinoma in situ of skin of right eyelid, including canthus|Carcinoma in situ of skin of right eyelid, including canthus +C4554195|T191|AB|D04.111|ICD10CM|Ca in situ skin of right upper eyelid, including canthus|Ca in situ skin of right upper eyelid, including canthus +C4554195|T191|PT|D04.111|ICD10CM|Carcinoma in situ of skin of right upper eyelid, including canthus|Carcinoma in situ of skin of right upper eyelid, including canthus +C4554196|T191|AB|D04.112|ICD10CM|Ca in situ skin of right lower eyelid, including canthus|Ca in situ skin of right lower eyelid, including canthus +C4554196|T191|PT|D04.112|ICD10CM|Carcinoma in situ of skin of right lower eyelid, including canthus|Carcinoma in situ of skin of right lower eyelid, including canthus +C2861685|T191|AB|D04.12|ICD10CM|Carcinoma in situ of skin of left eyelid, including canthus|Carcinoma in situ of skin of left eyelid, including canthus +C2861685|T191|HT|D04.12|ICD10CM|Carcinoma in situ of skin of left eyelid, including canthus|Carcinoma in situ of skin of left eyelid, including canthus +C4554197|T191|AB|D04.121|ICD10CM|Ca in situ skin of left upper eyelid, including canthus|Ca in situ skin of left upper eyelid, including canthus +C4554197|T191|PT|D04.121|ICD10CM|Carcinoma in situ of skin of left upper eyelid, including canthus|Carcinoma in situ of skin of left upper eyelid, including canthus +C4554198|T191|AB|D04.122|ICD10CM|Ca in situ skin of left lower eyelid, including canthus|Ca in situ skin of left lower eyelid, including canthus +C4554198|T191|PT|D04.122|ICD10CM|Carcinoma in situ of skin of left lower eyelid, including canthus|Carcinoma in situ of skin of left lower eyelid, including canthus +C0347139|T191|AB|D04.2|ICD10CM|Ca in situ skin of ear and external auricular canal|Ca in situ skin of ear and external auricular canal +C0347139|T191|HT|D04.2|ICD10CM|Carcinoma in situ of skin of ear and external auricular canal|Carcinoma in situ of skin of ear and external auricular canal +C0347139|T191|PX|D04.2|ICD10|Carcinoma in situ of skin of ear and external auricular canal|Carcinoma in situ of skin of ear and external auricular canal +C0347139|T191|PS|D04.2|ICD10|Skin of ear and external auricular canal|Skin of ear and external auricular canal +C2861686|T191|AB|D04.20|ICD10CM|Ca in situ skin of unsp ear and external auricular canal|Ca in situ skin of unsp ear and external auricular canal +C2861686|T191|PT|D04.20|ICD10CM|Carcinoma in situ of skin of unspecified ear and external auricular canal|Carcinoma in situ of skin of unspecified ear and external auricular canal +C2861687|T191|AB|D04.21|ICD10CM|Ca in situ skin of right ear and external auricular canal|Ca in situ skin of right ear and external auricular canal +C2861687|T191|PT|D04.21|ICD10CM|Carcinoma in situ of skin of right ear and external auricular canal|Carcinoma in situ of skin of right ear and external auricular canal +C2861688|T191|AB|D04.22|ICD10CM|Ca in situ skin of left ear and external auricular canal|Ca in situ skin of left ear and external auricular canal +C2861688|T191|PT|D04.22|ICD10CM|Carcinoma in situ of skin of left ear and external auricular canal|Carcinoma in situ of skin of left ear and external auricular canal +C0154077|T191|AB|D04.3|ICD10CM|Carcinoma in situ of skin of other and unsp parts of face|Carcinoma in situ of skin of other and unsp parts of face +C0154077|T191|HT|D04.3|ICD10CM|Carcinoma in situ of skin of other and unspecified parts of face|Carcinoma in situ of skin of other and unspecified parts of face +C0154077|T191|PX|D04.3|ICD10|Carcinoma in situ of skin of other and unspecified parts of face|Carcinoma in situ of skin of other and unspecified parts of face +C0154077|T191|PS|D04.3|ICD10|Skin of other and unspecified parts of face|Skin of other and unspecified parts of face +C2861689|T191|AB|D04.30|ICD10CM|Carcinoma in situ of skin of unspecified part of face|Carcinoma in situ of skin of unspecified part of face +C2861689|T191|PT|D04.30|ICD10CM|Carcinoma in situ of skin of unspecified part of face|Carcinoma in situ of skin of unspecified part of face +C2861690|T191|PT|D04.39|ICD10CM|Carcinoma in situ of skin of other parts of face|Carcinoma in situ of skin of other parts of face +C2861690|T191|AB|D04.39|ICD10CM|Carcinoma in situ of skin of other parts of face|Carcinoma in situ of skin of other parts of face +C0154078|T191|PX|D04.4|ICD10|Carcinoma in situ of skin of scalp and neck|Carcinoma in situ of skin of scalp and neck +C0154078|T191|PT|D04.4|ICD10CM|Carcinoma in situ of skin of scalp and neck|Carcinoma in situ of skin of scalp and neck +C0154078|T191|AB|D04.4|ICD10CM|Carcinoma in situ of skin of scalp and neck|Carcinoma in situ of skin of scalp and neck +C0154078|T191|PS|D04.4|ICD10|Skin of scalp and neck|Skin of scalp and neck +C2861691|T191|ET|D04.5|ICD10CM|Carcinoma in situ of anal margin|Carcinoma in situ of anal margin +C2865364|T191|ET|D04.5|ICD10CM|Carcinoma in situ of anal skin|Carcinoma in situ of anal skin +C0347160|T191|ET|D04.5|ICD10CM|Carcinoma in situ of perianal skin|Carcinoma in situ of perianal skin +C0347152|T191|ET|D04.5|ICD10CM|Carcinoma in situ of skin of breast|Carcinoma in situ of skin of breast +C0347161|T191|PT|D04.5|ICD10CM|Carcinoma in situ of skin of trunk|Carcinoma in situ of skin of trunk +C0347161|T191|AB|D04.5|ICD10CM|Carcinoma in situ of skin of trunk|Carcinoma in situ of skin of trunk +C0347161|T191|PX|D04.5|ICD10|Carcinoma in situ of skin of trunk|Carcinoma in situ of skin of trunk +C0347161|T191|PS|D04.5|ICD10|Skin of trunk|Skin of trunk +C0154080|T191|PX|D04.6|ICD10|Carcinoma in situ of skin of upper limb, including shoulder|Carcinoma in situ of skin of upper limb, including shoulder +C0154080|T191|HT|D04.6|ICD10CM|Carcinoma in situ of skin of upper limb, including shoulder|Carcinoma in situ of skin of upper limb, including shoulder +C0154080|T191|AB|D04.6|ICD10CM|Carcinoma in situ of skin of upper limb, including shoulder|Carcinoma in situ of skin of upper limb, including shoulder +C0154080|T191|PS|D04.6|ICD10|Skin of upper limb, including shoulder|Skin of upper limb, including shoulder +C2865365|T191|AB|D04.60|ICD10CM|Ca in situ skin of unsp upper limb, including shoulder|Ca in situ skin of unsp upper limb, including shoulder +C2865365|T191|PT|D04.60|ICD10CM|Carcinoma in situ of skin of unspecified upper limb, including shoulder|Carcinoma in situ of skin of unspecified upper limb, including shoulder +C2865366|T191|AB|D04.61|ICD10CM|Ca in situ skin of right upper limb, including shoulder|Ca in situ skin of right upper limb, including shoulder +C2865366|T191|PT|D04.61|ICD10CM|Carcinoma in situ of skin of right upper limb, including shoulder|Carcinoma in situ of skin of right upper limb, including shoulder +C2865367|T191|AB|D04.62|ICD10CM|Ca in situ skin of left upper limb, including shoulder|Ca in situ skin of left upper limb, including shoulder +C2865367|T191|PT|D04.62|ICD10CM|Carcinoma in situ of skin of left upper limb, including shoulder|Carcinoma in situ of skin of left upper limb, including shoulder +C0154081|T191|PX|D04.7|ICD10|Carcinoma in situ of skin of lower limb, including hip|Carcinoma in situ of skin of lower limb, including hip +C0154081|T191|HT|D04.7|ICD10CM|Carcinoma in situ of skin of lower limb, including hip|Carcinoma in situ of skin of lower limb, including hip +C0154081|T191|AB|D04.7|ICD10CM|Carcinoma in situ of skin of lower limb, including hip|Carcinoma in situ of skin of lower limb, including hip +C0154081|T191|PS|D04.7|ICD10|Skin of lower limb, including hip|Skin of lower limb, including hip +C2865368|T191|AB|D04.70|ICD10CM|Carcinoma in situ of skin of unsp lower limb, including hip|Carcinoma in situ of skin of unsp lower limb, including hip +C2865368|T191|PT|D04.70|ICD10CM|Carcinoma in situ of skin of unspecified lower limb, including hip|Carcinoma in situ of skin of unspecified lower limb, including hip +C2865369|T191|AB|D04.71|ICD10CM|Carcinoma in situ of skin of right lower limb, including hip|Carcinoma in situ of skin of right lower limb, including hip +C2865369|T191|PT|D04.71|ICD10CM|Carcinoma in situ of skin of right lower limb, including hip|Carcinoma in situ of skin of right lower limb, including hip +C2865370|T191|AB|D04.72|ICD10CM|Carcinoma in situ of skin of left lower limb, including hip|Carcinoma in situ of skin of left lower limb, including hip +C2865370|T191|PT|D04.72|ICD10CM|Carcinoma in situ of skin of left lower limb, including hip|Carcinoma in situ of skin of left lower limb, including hip +C0348405|T191|PX|D04.8|ICD10|Carcinoma in situ of skin of other sites|Carcinoma in situ of skin of other sites +C0348405|T191|PT|D04.8|ICD10CM|Carcinoma in situ of skin of other sites|Carcinoma in situ of skin of other sites +C0348405|T191|AB|D04.8|ICD10CM|Carcinoma in situ of skin of other sites|Carcinoma in situ of skin of other sites +C0348405|T191|PS|D04.8|ICD10|Skin of other sites|Skin of other sites +C0154073|T191|PX|D04.9|ICD10|Carcinoma in situ of skin, unspecified|Carcinoma in situ of skin, unspecified +C0154073|T191|PT|D04.9|ICD10CM|Carcinoma in situ of skin, unspecified|Carcinoma in situ of skin, unspecified +C0154073|T191|AB|D04.9|ICD10CM|Carcinoma in situ of skin, unspecified|Carcinoma in situ of skin, unspecified +C0154073|T191|PS|D04.9|ICD10|Skin, unspecified|Skin, unspecified +C0154084|T191|HT|D05|ICD10|Carcinoma in situ of breast|Carcinoma in situ of breast +C0154084|T191|HT|D05|ICD10CM|Carcinoma in situ of breast|Carcinoma in situ of breast +C0154084|T191|AB|D05|ICD10CM|Carcinoma in situ of breast|Carcinoma in situ of breast +C0334381|T191|PT|D05.0|ICD10|Lobular carcinoma in situ|Lobular carcinoma in situ +C0279563|T191|HT|D05.0|ICD10CM|Lobular carcinoma in situ of breast|Lobular carcinoma in situ of breast +C0279563|T191|AB|D05.0|ICD10CM|Lobular carcinoma in situ of breast|Lobular carcinoma in situ of breast +C2976799|T191|AB|D05.00|ICD10CM|Lobular carcinoma in situ of unspecified breast|Lobular carcinoma in situ of unspecified breast +C2976799|T191|PT|D05.00|ICD10CM|Lobular carcinoma in situ of unspecified breast|Lobular carcinoma in situ of unspecified breast +C2865371|T191|PT|D05.01|ICD10CM|Lobular carcinoma in situ of right breast|Lobular carcinoma in situ of right breast +C2865371|T191|AB|D05.01|ICD10CM|Lobular carcinoma in situ of right breast|Lobular carcinoma in situ of right breast +C2865372|T191|PT|D05.02|ICD10CM|Lobular carcinoma in situ of left breast|Lobular carcinoma in situ of left breast +C2865372|T191|AB|D05.02|ICD10CM|Lobular carcinoma in situ of left breast|Lobular carcinoma in situ of left breast +C0007124|T191|PT|D05.1|ICD10|Intraductal carcinoma in situ|Intraductal carcinoma in situ +C0007124|T191|HT|D05.1|ICD10CM|Intraductal carcinoma in situ of breast|Intraductal carcinoma in situ of breast +C0007124|T191|AB|D05.1|ICD10CM|Intraductal carcinoma in situ of breast|Intraductal carcinoma in situ of breast +C2976800|T191|AB|D05.10|ICD10CM|Intraductal carcinoma in situ of unspecified breast|Intraductal carcinoma in situ of unspecified breast +C2976800|T191|PT|D05.10|ICD10CM|Intraductal carcinoma in situ of unspecified breast|Intraductal carcinoma in situ of unspecified breast +C2865374|T191|PT|D05.11|ICD10CM|Intraductal carcinoma in situ of right breast|Intraductal carcinoma in situ of right breast +C2865374|T191|AB|D05.11|ICD10CM|Intraductal carcinoma in situ of right breast|Intraductal carcinoma in situ of right breast +C2865375|T191|PT|D05.12|ICD10CM|Intraductal carcinoma in situ of left breast|Intraductal carcinoma in situ of left breast +C2865375|T191|AB|D05.12|ICD10CM|Intraductal carcinoma in situ of left breast|Intraductal carcinoma in situ of left breast +C0348409|T191|PT|D05.7|ICD10|Other carcinoma in situ of breast|Other carcinoma in situ of breast +C2976801|T191|AB|D05.8|ICD10CM|Other specified type of carcinoma in situ of breast|Other specified type of carcinoma in situ of breast +C2976801|T191|HT|D05.8|ICD10CM|Other specified type of carcinoma in situ of breast|Other specified type of carcinoma in situ of breast +C2976802|T191|AB|D05.80|ICD10CM|Oth type of carcinoma in situ of unspecified breast|Oth type of carcinoma in situ of unspecified breast +C2976802|T191|PT|D05.80|ICD10CM|Other specified type of carcinoma in situ of unspecified breast|Other specified type of carcinoma in situ of unspecified breast +C2976803|T191|AB|D05.81|ICD10CM|Other specified type of carcinoma in situ of right breast|Other specified type of carcinoma in situ of right breast +C2976803|T191|PT|D05.81|ICD10CM|Other specified type of carcinoma in situ of right breast|Other specified type of carcinoma in situ of right breast +C2976804|T191|AB|D05.82|ICD10CM|Other specified type of carcinoma in situ of left breast|Other specified type of carcinoma in situ of left breast +C2976804|T191|PT|D05.82|ICD10CM|Other specified type of carcinoma in situ of left breast|Other specified type of carcinoma in situ of left breast +C0154084|T191|PT|D05.9|ICD10|Carcinoma in situ of breast, unspecified|Carcinoma in situ of breast, unspecified +C0154084|T191|AB|D05.9|ICD10CM|Unspecified type of carcinoma in situ of breast|Unspecified type of carcinoma in situ of breast +C0154084|T191|HT|D05.9|ICD10CM|Unspecified type of carcinoma in situ of breast|Unspecified type of carcinoma in situ of breast +C2976805|T191|AB|D05.90|ICD10CM|Unspecified type of carcinoma in situ of unspecified breast|Unspecified type of carcinoma in situ of unspecified breast +C2976805|T191|PT|D05.90|ICD10CM|Unspecified type of carcinoma in situ of unspecified breast|Unspecified type of carcinoma in situ of unspecified breast +C2865380|T191|AB|D05.91|ICD10CM|Unspecified type of carcinoma in situ of right breast|Unspecified type of carcinoma in situ of right breast +C2865380|T191|PT|D05.91|ICD10CM|Unspecified type of carcinoma in situ of right breast|Unspecified type of carcinoma in situ of right breast +C2865381|T191|AB|D05.92|ICD10CM|Unspecified type of carcinoma in situ of left breast|Unspecified type of carcinoma in situ of left breast +C2865381|T191|PT|D05.92|ICD10CM|Unspecified type of carcinoma in situ of left breast|Unspecified type of carcinoma in situ of left breast +C0851140|T191|HT|D06|ICD10|Carcinoma in situ of cervix uteri|Carcinoma in situ of cervix uteri +C0851140|T191|HT|D06|ICD10CM|Carcinoma in situ of cervix uteri|Carcinoma in situ of cervix uteri +C0851140|T191|AB|D06|ICD10CM|Carcinoma in situ of cervix uteri|Carcinoma in situ of cervix uteri +C0346203|T191|ET|D06|ICD10CM|cervical adenocarcinoma in situ|cervical adenocarcinoma in situ +C2044987|T191|ET|D06|ICD10CM|cervical intraepithelial glandular neoplasia|cervical intraepithelial glandular neoplasia +C4290075|T191|ET|D06|ICD10CM|cervical intraepithelial neoplasia III [CIN III]|cervical intraepithelial neoplasia III [CIN III] +C4290076|T047|ET|D06|ICD10CM|severe dysplasia of cervix uteri|severe dysplasia of cervix uteri +C0349057|T191|PX|D06.0|ICD10|Carcinoma in situ of endocervix|Carcinoma in situ of endocervix +C0349057|T191|PT|D06.0|ICD10CM|Carcinoma in situ of endocervix|Carcinoma in situ of endocervix +C0349057|T191|AB|D06.0|ICD10CM|Carcinoma in situ of endocervix|Carcinoma in situ of endocervix +C0349057|T191|PS|D06.0|ICD10|Endocervix|Endocervix +C0349058|T191|PX|D06.1|ICD10|Carcinoma in situ of exocervix|Carcinoma in situ of exocervix +C0349058|T191|PT|D06.1|ICD10CM|Carcinoma in situ of exocervix|Carcinoma in situ of exocervix +C0349058|T191|AB|D06.1|ICD10CM|Carcinoma in situ of exocervix|Carcinoma in situ of exocervix +C0349058|T191|PS|D06.1|ICD10|Exocervix|Exocervix +C0348407|T191|PX|D06.7|ICD10|Carcinoma in situ of other parts of cervix|Carcinoma in situ of other parts of cervix +C0348407|T191|PT|D06.7|ICD10CM|Carcinoma in situ of other parts of cervix|Carcinoma in situ of other parts of cervix +C0348407|T191|AB|D06.7|ICD10CM|Carcinoma in situ of other parts of cervix|Carcinoma in situ of other parts of cervix +C0348407|T191|PS|D06.7|ICD10|Other parts of cervix|Other parts of cervix +C0851140|T191|PX|D06.9|ICD10|Carcinoma in situ of cervix, unspecified|Carcinoma in situ of cervix, unspecified +C0851140|T191|PT|D06.9|ICD10CM|Carcinoma in situ of cervix, unspecified|Carcinoma in situ of cervix, unspecified +C0851140|T191|AB|D06.9|ICD10CM|Carcinoma in situ of cervix, unspecified|Carcinoma in situ of cervix, unspecified +C0851140|T191|PS|D06.9|ICD10|Cervix, unspecified|Cervix, unspecified +C0494180|T191|HT|D07|ICD10|Carcinoma in situ of other and unspecified genital organs|Carcinoma in situ of other and unspecified genital organs +C0494180|T191|AB|D07|ICD10CM|Carcinoma in situ of other and unspecified genital organs|Carcinoma in situ of other and unspecified genital organs +C0494180|T191|HT|D07|ICD10CM|Carcinoma in situ of other and unspecified genital organs|Carcinoma in situ of other and unspecified genital organs +C0346191|T191|PX|D07.0|ICD10|Carcinoma in situ of endometrium|Carcinoma in situ of endometrium +C0346191|T191|AB|D07.0|ICD10CM|Carcinoma in situ of endometrium|Carcinoma in situ of endometrium +C0346191|T191|PT|D07.0|ICD10CM|Carcinoma in situ of endometrium|Carcinoma in situ of endometrium +C0346191|T191|PS|D07.0|ICD10|Endometrium|Endometrium +C0278729|T191|PX|D07.1|ICD10|Carcinoma in situ of vulva|Carcinoma in situ of vulva +C0278729|T191|PT|D07.1|ICD10CM|Carcinoma in situ of vulva|Carcinoma in situ of vulva +C0278729|T191|AB|D07.1|ICD10CM|Carcinoma in situ of vulva|Carcinoma in situ of vulva +C0349560|T191|ET|D07.1|ICD10CM|Severe dysplasia of vulva|Severe dysplasia of vulva +C0278729|T191|PS|D07.1|ICD10|Vulva|Vulva +C0278729|T191|ET|D07.1|ICD10CM|Vulvar intraepithelial neoplasia III [VIN III]|Vulvar intraepithelial neoplasia III [VIN III] +C0686277|T191|PT|D07.2|ICD10CM|Carcinoma in situ of vagina|Carcinoma in situ of vagina +C0686277|T191|AB|D07.2|ICD10CM|Carcinoma in situ of vagina|Carcinoma in situ of vagina +C0686277|T191|PX|D07.2|ICD10|Carcinoma in situ of vagina|Carcinoma in situ of vagina +C1395962|T046|ET|D07.2|ICD10CM|Severe dysplasia of vagina|Severe dysplasia of vagina +C0686277|T191|PS|D07.2|ICD10|Vagina|Vagina +C0686277|T191|ET|D07.2|ICD10CM|Vaginal intraepithelial neoplasia III [VAIN III]|Vaginal intraepithelial neoplasia III [VAIN III] +C0154087|T191|AB|D07.3|ICD10CM|Carcinoma in situ of other and unsp female genital organs|Carcinoma in situ of other and unsp female genital organs +C0154087|T191|HT|D07.3|ICD10CM|Carcinoma in situ of other and unspecified female genital organs|Carcinoma in situ of other and unspecified female genital organs +C0154087|T191|PX|D07.3|ICD10|Carcinoma in situ of other and unspecified female genital organs|Carcinoma in situ of other and unspecified female genital organs +C0154087|T191|PS|D07.3|ICD10|Other and unspecified female genital organs|Other and unspecified female genital organs +C1955737|T191|AB|D07.30|ICD10CM|Carcinoma in situ of unspecified female genital organs|Carcinoma in situ of unspecified female genital organs +C1955737|T191|PT|D07.30|ICD10CM|Carcinoma in situ of unspecified female genital organs|Carcinoma in situ of unspecified female genital organs +C1955739|T191|AB|D07.39|ICD10CM|Carcinoma in situ of other female genital organs|Carcinoma in situ of other female genital organs +C1955739|T191|PT|D07.39|ICD10CM|Carcinoma in situ of other female genital organs|Carcinoma in situ of other female genital organs +C0154089|T191|PX|D07.4|ICD10|Carcinoma in situ of penis|Carcinoma in situ of penis +C0154089|T191|PT|D07.4|ICD10CM|Carcinoma in situ of penis|Carcinoma in situ of penis +C0154089|T191|AB|D07.4|ICD10CM|Carcinoma in situ of penis|Carcinoma in situ of penis +C0154089|T191|ET|D07.4|ICD10CM|Erythroplasia of Queyrat NOS|Erythroplasia of Queyrat NOS +C0154089|T191|PS|D07.4|ICD10|Penis|Penis +C0154088|T191|PX|D07.5|ICD10|Carcinoma in situ of prostate|Carcinoma in situ of prostate +C0154088|T191|PT|D07.5|ICD10CM|Carcinoma in situ of prostate|Carcinoma in situ of prostate +C0154088|T191|AB|D07.5|ICD10CM|Carcinoma in situ of prostate|Carcinoma in situ of prostate +C0154088|T191|PS|D07.5|ICD10|Prostate|Prostate +C2976806|T191|ET|D07.5|ICD10CM|Prostatic intraepithelial neoplasia III (PIN III)|Prostatic intraepithelial neoplasia III (PIN III) +C2865383|T191|ET|D07.5|ICD10CM|Severe dysplasia of prostate|Severe dysplasia of prostate +C0154090|T191|AB|D07.6|ICD10CM|Carcinoma in situ of other and unsp male genital organs|Carcinoma in situ of other and unsp male genital organs +C0154090|T191|HT|D07.6|ICD10CM|Carcinoma in situ of other and unspecified male genital organs|Carcinoma in situ of other and unspecified male genital organs +C0154090|T191|PX|D07.6|ICD10|Carcinoma in situ of other and unspecified male genital organs|Carcinoma in situ of other and unspecified male genital organs +C0154090|T191|PS|D07.6|ICD10|Other and unspecified male genital organs|Other and unspecified male genital organs +C2865384|T191|AB|D07.60|ICD10CM|Carcinoma in situ of unspecified male genital organs|Carcinoma in situ of unspecified male genital organs +C2865384|T191|PT|D07.60|ICD10CM|Carcinoma in situ of unspecified male genital organs|Carcinoma in situ of unspecified male genital organs +C0346243|T191|PT|D07.61|ICD10CM|Carcinoma in situ of scrotum|Carcinoma in situ of scrotum +C0346243|T191|AB|D07.61|ICD10CM|Carcinoma in situ of scrotum|Carcinoma in situ of scrotum +C2865385|T191|AB|D07.69|ICD10CM|Carcinoma in situ of other male genital organs|Carcinoma in situ of other male genital organs +C2865385|T191|PT|D07.69|ICD10CM|Carcinoma in situ of other male genital organs|Carcinoma in situ of other male genital organs +C0154093|T191|HT|D09|ICD10|Carcinoma in situ of other and unspecified sites|Carcinoma in situ of other and unspecified sites +C0154093|T191|HT|D09|ICD10CM|Carcinoma in situ of other and unspecified sites|Carcinoma in situ of other and unspecified sites +C0154093|T191|AB|D09|ICD10CM|Carcinoma in situ of other and unspecified sites|Carcinoma in situ of other and unspecified sites +C0154091|T191|PS|D09.0|ICD10|Bladder|Bladder +C0154091|T191|PX|D09.0|ICD10|Carcinoma in situ of bladder|Carcinoma in situ of bladder +C0154091|T191|PT|D09.0|ICD10CM|Carcinoma in situ of bladder|Carcinoma in situ of bladder +C0154091|T191|AB|D09.0|ICD10CM|Carcinoma in situ of bladder|Carcinoma in situ of bladder +C0154092|T191|HT|D09.1|ICD10CM|Carcinoma in situ of other and unspecified urinary organs|Carcinoma in situ of other and unspecified urinary organs +C0154092|T191|AB|D09.1|ICD10CM|Carcinoma in situ of other and unspecified urinary organs|Carcinoma in situ of other and unspecified urinary organs +C0154092|T191|PX|D09.1|ICD10|Carcinoma in situ of other and unspecified urinary organs|Carcinoma in situ of other and unspecified urinary organs +C0154092|T191|PS|D09.1|ICD10|Other and unspecified urinary organs|Other and unspecified urinary organs +C2865386|T191|AB|D09.10|ICD10CM|Carcinoma in situ of unspecified urinary organ|Carcinoma in situ of unspecified urinary organ +C2865386|T191|PT|D09.10|ICD10CM|Carcinoma in situ of unspecified urinary organ|Carcinoma in situ of unspecified urinary organ +C2865387|T191|AB|D09.19|ICD10CM|Carcinoma in situ of other urinary organs|Carcinoma in situ of other urinary organs +C2865387|T191|PT|D09.19|ICD10CM|Carcinoma in situ of other urinary organs|Carcinoma in situ of other urinary organs +C0154094|T191|PX|D09.2|ICD10|Carcinoma in situ of eye|Carcinoma in situ of eye +C0154094|T191|HT|D09.2|ICD10CM|Carcinoma in situ of eye|Carcinoma in situ of eye +C0154094|T191|AB|D09.2|ICD10CM|Carcinoma in situ of eye|Carcinoma in situ of eye +C0154094|T191|PS|D09.2|ICD10|Eye|Eye +C2865388|T191|AB|D09.20|ICD10CM|Carcinoma in situ of unspecified eye|Carcinoma in situ of unspecified eye +C2865388|T191|PT|D09.20|ICD10CM|Carcinoma in situ of unspecified eye|Carcinoma in situ of unspecified eye +C2865389|T191|AB|D09.21|ICD10CM|Carcinoma in situ of right eye|Carcinoma in situ of right eye +C2865389|T191|PT|D09.21|ICD10CM|Carcinoma in situ of right eye|Carcinoma in situ of right eye +C2865390|T191|AB|D09.22|ICD10CM|Carcinoma in situ of left eye|Carcinoma in situ of left eye +C2865390|T191|PT|D09.22|ICD10CM|Carcinoma in situ of left eye|Carcinoma in situ of left eye +C0496856|T191|PX|D09.3|ICD10|Carcinoma in situ of thyroid and other endocrine glands|Carcinoma in situ of thyroid and other endocrine glands +C0496856|T191|PT|D09.3|ICD10CM|Carcinoma in situ of thyroid and other endocrine glands|Carcinoma in situ of thyroid and other endocrine glands +C0496856|T191|AB|D09.3|ICD10CM|Carcinoma in situ of thyroid and other endocrine glands|Carcinoma in situ of thyroid and other endocrine glands +C0496856|T191|PS|D09.3|ICD10|Thyroid and other endocrine glands|Thyroid and other endocrine glands +C0007100|T191|PT|D09.7|ICD10|Carcinoma in situ of other specified sites|Carcinoma in situ of other specified sites +C0007100|T191|PT|D09.8|ICD10CM|Carcinoma in situ of other specified sites|Carcinoma in situ of other specified sites +C0007100|T191|AB|D09.8|ICD10CM|Carcinoma in situ of other specified sites|Carcinoma in situ of other specified sites +C0007099|T191|PT|D09.9|ICD10CM|Carcinoma in situ, unspecified|Carcinoma in situ, unspecified +C0007099|T191|AB|D09.9|ICD10CM|Carcinoma in situ, unspecified|Carcinoma in situ, unspecified +C0007099|T191|PT|D09.9|ICD10|Carcinoma in situ, unspecified|Carcinoma in situ, unspecified +C0494182|T191|HT|D10|ICD10|Benign neoplasm of mouth and pharynx|Benign neoplasm of mouth and pharynx +C0494182|T191|AB|D10|ICD10CM|Benign neoplasm of mouth and pharynx|Benign neoplasm of mouth and pharynx +C0494182|T191|HT|D10|ICD10CM|Benign neoplasm of mouth and pharynx|Benign neoplasm of mouth and pharynx +C2865391|T191|HT|D10-D36|ICD10CM|Benign neoplasms, except benign neuroendocrine tumors (D10-D36)|Benign neoplasms, except benign neuroendocrine tumors (D10-D36) +C0086692|T191|HT|D10-D36.9|ICD10|Benign neoplasms|Benign neoplasms +C0153932|T191|PX|D10.0|ICD10|Benign neoplasm of lip|Benign neoplasm of lip +C0153932|T191|PT|D10.0|ICD10CM|Benign neoplasm of lip|Benign neoplasm of lip +C0153932|T191|AB|D10.0|ICD10CM|Benign neoplasm of lip|Benign neoplasm of lip +C2865392|T191|ET|D10.0|ICD10CM|Benign neoplasm of lip (frenulum) (inner aspect) (mucosa) (vermilion border)|Benign neoplasm of lip (frenulum) (inner aspect) (mucosa) (vermilion border) +C0153932|T191|PS|D10.0|ICD10|Lip|Lip +C0345529|T191|ET|D10.1|ICD10CM|Benign neoplasm of lingual tonsil|Benign neoplasm of lingual tonsil +C0153933|T191|PX|D10.1|ICD10|Benign neoplasm of tongue|Benign neoplasm of tongue +C0153933|T191|PT|D10.1|ICD10CM|Benign neoplasm of tongue|Benign neoplasm of tongue +C0153933|T191|AB|D10.1|ICD10CM|Benign neoplasm of tongue|Benign neoplasm of tongue +C0153933|T191|PS|D10.1|ICD10|Tongue|Tongue +C0153934|T191|PX|D10.2|ICD10|Benign neoplasm of floor of mouth|Benign neoplasm of floor of mouth +C0153934|T191|PT|D10.2|ICD10CM|Benign neoplasm of floor of mouth|Benign neoplasm of floor of mouth +C0153934|T191|AB|D10.2|ICD10CM|Benign neoplasm of floor of mouth|Benign neoplasm of floor of mouth +C0153934|T191|PS|D10.2|ICD10|Floor of mouth|Floor of mouth +C0153935|T191|PX|D10.3|ICD10|Benign neoplasm of other and unspecified parts of mouth|Benign neoplasm of other and unspecified parts of mouth +C0153935|T191|HT|D10.3|ICD10CM|Benign neoplasm of other and unspecified parts of mouth|Benign neoplasm of other and unspecified parts of mouth +C0153935|T191|AB|D10.3|ICD10CM|Benign neoplasm of other and unspecified parts of mouth|Benign neoplasm of other and unspecified parts of mouth +C0153935|T191|PS|D10.3|ICD10|Other and unspecified parts of mouth|Other and unspecified parts of mouth +C2865393|T191|AB|D10.30|ICD10CM|Benign neoplasm of unspecified part of mouth|Benign neoplasm of unspecified part of mouth +C2865393|T191|PT|D10.30|ICD10CM|Benign neoplasm of unspecified part of mouth|Benign neoplasm of unspecified part of mouth +C0345615|T191|ET|D10.39|ICD10CM|Benign neoplasm of minor salivary gland NOS|Benign neoplasm of minor salivary gland NOS +C2865394|T191|AB|D10.39|ICD10CM|Benign neoplasm of other parts of mouth|Benign neoplasm of other parts of mouth +C2865394|T191|PT|D10.39|ICD10CM|Benign neoplasm of other parts of mouth|Benign neoplasm of other parts of mouth +C0153936|T191|PX|D10.4|ICD10|Benign neoplasm of tonsil|Benign neoplasm of tonsil +C0153936|T191|PT|D10.4|ICD10CM|Benign neoplasm of tonsil|Benign neoplasm of tonsil +C0153936|T191|AB|D10.4|ICD10CM|Benign neoplasm of tonsil|Benign neoplasm of tonsil +C2865395|T191|ET|D10.4|ICD10CM|Benign neoplasm of tonsil (faucial) (palatine)|Benign neoplasm of tonsil (faucial) (palatine) +C0153936|T191|PS|D10.4|ICD10|Tonsil|Tonsil +C0347237|T191|ET|D10.5|ICD10CM|Benign neoplasm of epiglottis, anterior aspect|Benign neoplasm of epiglottis, anterior aspect +C0153937|T191|PX|D10.5|ICD10|Benign neoplasm of other parts of oropharynx|Benign neoplasm of other parts of oropharynx +C0153937|T191|PT|D10.5|ICD10CM|Benign neoplasm of other parts of oropharynx|Benign neoplasm of other parts of oropharynx +C0153937|T191|AB|D10.5|ICD10CM|Benign neoplasm of other parts of oropharynx|Benign neoplasm of other parts of oropharynx +C0345683|T191|ET|D10.5|ICD10CM|Benign neoplasm of tonsillar fossa|Benign neoplasm of tonsillar fossa +C0347225|T191|ET|D10.5|ICD10CM|Benign neoplasm of tonsillar pillars|Benign neoplasm of tonsillar pillars +C0345693|T191|ET|D10.5|ICD10CM|Benign neoplasm of vallecula|Benign neoplasm of vallecula +C0153937|T191|PS|D10.5|ICD10|Other parts of oropharynx|Other parts of oropharynx +C0153938|T191|PX|D10.6|ICD10|Benign neoplasm of nasopharynx|Benign neoplasm of nasopharynx +C0153938|T191|PT|D10.6|ICD10CM|Benign neoplasm of nasopharynx|Benign neoplasm of nasopharynx +C0153938|T191|AB|D10.6|ICD10CM|Benign neoplasm of nasopharynx|Benign neoplasm of nasopharynx +C0686609|T191|ET|D10.6|ICD10CM|Benign neoplasm of pharyngeal tonsil|Benign neoplasm of pharyngeal tonsil +C2865396|T191|ET|D10.6|ICD10CM|Benign neoplasm of posterior margin of septum and choanae|Benign neoplasm of posterior margin of septum and choanae +C0153938|T191|PS|D10.6|ICD10|Nasopharynx|Nasopharynx +C0153939|T191|PX|D10.7|ICD10|Benign neoplasm of hypopharynx|Benign neoplasm of hypopharynx +C0153939|T191|PT|D10.7|ICD10CM|Benign neoplasm of hypopharynx|Benign neoplasm of hypopharynx +C0153939|T191|AB|D10.7|ICD10CM|Benign neoplasm of hypopharynx|Benign neoplasm of hypopharynx +C0153939|T191|PS|D10.7|ICD10|Hypopharynx|Hypopharynx +C0153940|T191|PX|D10.9|ICD10|Benign neoplasm of pharynx, unspecified|Benign neoplasm of pharynx, unspecified +C0153940|T191|PT|D10.9|ICD10CM|Benign neoplasm of pharynx, unspecified|Benign neoplasm of pharynx, unspecified +C0153940|T191|AB|D10.9|ICD10CM|Benign neoplasm of pharynx, unspecified|Benign neoplasm of pharynx, unspecified +C0153940|T191|PS|D10.9|ICD10|Pharynx, unspecified|Pharynx, unspecified +C0496858|T191|HT|D11|ICD10CM|Benign neoplasm of major salivary glands|Benign neoplasm of major salivary glands +C0496858|T191|AB|D11|ICD10CM|Benign neoplasm of major salivary glands|Benign neoplasm of major salivary glands +C0496858|T191|HT|D11|ICD10|Benign neoplasm of major salivary glands|Benign neoplasm of major salivary glands +C0496857|T191|PX|D11.0|ICD10|Benign neoplasm of parotid gland|Benign neoplasm of parotid gland +C0496857|T191|PT|D11.0|ICD10CM|Benign neoplasm of parotid gland|Benign neoplasm of parotid gland +C0496857|T191|AB|D11.0|ICD10CM|Benign neoplasm of parotid gland|Benign neoplasm of parotid gland +C0496857|T191|PS|D11.0|ICD10|Parotid gland|Parotid gland +C0348410|T191|PX|D11.7|ICD10|Benign neoplasm of other major salivary glands|Benign neoplasm of other major salivary glands +C0348410|T191|PT|D11.7|ICD10CM|Benign neoplasm of other major salivary glands|Benign neoplasm of other major salivary glands +C0348410|T191|AB|D11.7|ICD10CM|Benign neoplasm of other major salivary glands|Benign neoplasm of other major salivary glands +C2865397|T191|ET|D11.7|ICD10CM|Benign neoplasm of sublingual salivary gland|Benign neoplasm of sublingual salivary gland +C2865398|T191|ET|D11.7|ICD10CM|Benign neoplasm of submandibular salivary gland|Benign neoplasm of submandibular salivary gland +C0348410|T191|PS|D11.7|ICD10|Other major salivary glands|Other major salivary glands +C0496858|T191|PX|D11.9|ICD10|Benign neoplasm of major salivary gland, unspecified|Benign neoplasm of major salivary gland, unspecified +C0496858|T191|PT|D11.9|ICD10CM|Benign neoplasm of major salivary gland, unspecified|Benign neoplasm of major salivary gland, unspecified +C0496858|T191|AB|D11.9|ICD10CM|Benign neoplasm of major salivary gland, unspecified|Benign neoplasm of major salivary gland, unspecified +C0496858|T191|PS|D11.9|ICD10|Major salivary gland, unspecified|Major salivary gland, unspecified +C0494183|T191|HT|D12|ICD10|Benign neoplasm of colon, rectum, anus and anal canal|Benign neoplasm of colon, rectum, anus and anal canal +C0494183|T191|AB|D12|ICD10CM|Benign neoplasm of colon, rectum, anus and anal canal|Benign neoplasm of colon, rectum, anus and anal canal +C0494183|T191|HT|D12|ICD10CM|Benign neoplasm of colon, rectum, anus and anal canal|Benign neoplasm of colon, rectum, anus and anal canal +C0496859|T191|PX|D12.0|ICD10|Benign neoplasm of caecum|Benign neoplasm of caecum +C0496859|T191|PX|D12.0|ICD10AE|Benign neoplasm of cecum|Benign neoplasm of cecum +C0496859|T191|PT|D12.0|ICD10CM|Benign neoplasm of cecum|Benign neoplasm of cecum +C0496859|T191|AB|D12.0|ICD10CM|Benign neoplasm of cecum|Benign neoplasm of cecum +C0347273|T191|ET|D12.0|ICD10CM|Benign neoplasm of ileocecal valve|Benign neoplasm of ileocecal valve +C0496859|T191|PS|D12.0|ICD10|Caecum|Caecum +C0496859|T191|PS|D12.0|ICD10AE|Cecum|Cecum +C0496860|T191|PS|D12.1|ICD10|Appendix|Appendix +C0496860|T191|PX|D12.1|ICD10|Benign neoplasm of appendix|Benign neoplasm of appendix +C0496860|T191|PT|D12.1|ICD10CM|Benign neoplasm of appendix|Benign neoplasm of appendix +C0496860|T191|AB|D12.1|ICD10CM|Benign neoplasm of appendix|Benign neoplasm of appendix +C0496861|T191|PS|D12.2|ICD10|Ascending colon|Ascending colon +C0496861|T191|PX|D12.2|ICD10|Benign neoplasm of ascending colon|Benign neoplasm of ascending colon +C0496861|T191|PT|D12.2|ICD10CM|Benign neoplasm of ascending colon|Benign neoplasm of ascending colon +C0496861|T191|AB|D12.2|ICD10CM|Benign neoplasm of ascending colon|Benign neoplasm of ascending colon +C0345856|T191|ET|D12.3|ICD10CM|Benign neoplasm of hepatic flexure|Benign neoplasm of hepatic flexure +C0345864|T191|ET|D12.3|ICD10CM|Benign neoplasm of splenic flexure|Benign neoplasm of splenic flexure +C0496862|T191|PT|D12.3|ICD10CM|Benign neoplasm of transverse colon|Benign neoplasm of transverse colon +C0496862|T191|AB|D12.3|ICD10CM|Benign neoplasm of transverse colon|Benign neoplasm of transverse colon +C0496862|T191|PX|D12.3|ICD10|Benign neoplasm of transverse colon|Benign neoplasm of transverse colon +C0496862|T191|PS|D12.3|ICD10|Transverse colon|Transverse colon +C0496863|T191|PX|D12.4|ICD10|Benign neoplasm of descending colon|Benign neoplasm of descending colon +C0496863|T191|PT|D12.4|ICD10CM|Benign neoplasm of descending colon|Benign neoplasm of descending colon +C0496863|T191|AB|D12.4|ICD10CM|Benign neoplasm of descending colon|Benign neoplasm of descending colon +C0496863|T191|PS|D12.4|ICD10|Descending colon|Descending colon +C0496864|T191|PX|D12.5|ICD10|Benign neoplasm of sigmoid colon|Benign neoplasm of sigmoid colon +C0496864|T191|PT|D12.5|ICD10CM|Benign neoplasm of sigmoid colon|Benign neoplasm of sigmoid colon +C0496864|T191|AB|D12.5|ICD10CM|Benign neoplasm of sigmoid colon|Benign neoplasm of sigmoid colon +C0496864|T191|PS|D12.5|ICD10|Sigmoid colon|Sigmoid colon +C2865399|T047|ET|D12.6|ICD10CM|Adenomatosis of colon|Adenomatosis of colon +C0004991|T191|PX|D12.6|ICD10|Benign neoplasm of colon, unspecified|Benign neoplasm of colon, unspecified +C0004991|T191|PT|D12.6|ICD10CM|Benign neoplasm of colon, unspecified|Benign neoplasm of colon, unspecified +C0004991|T191|AB|D12.6|ICD10CM|Benign neoplasm of colon, unspecified|Benign neoplasm of colon, unspecified +C0347272|T191|ET|D12.6|ICD10CM|Benign neoplasm of large intestine NOS|Benign neoplasm of large intestine NOS +C0004991|T191|PS|D12.6|ICD10|Colon, unspecified|Colon, unspecified +C2865400|T191|ET|D12.6|ICD10CM|Polyposis (hereditary) of colon|Polyposis (hereditary) of colon +C0496866|T191|PX|D12.7|ICD10|Benign neoplasm of rectosigmoid junction|Benign neoplasm of rectosigmoid junction +C0496866|T191|PT|D12.7|ICD10CM|Benign neoplasm of rectosigmoid junction|Benign neoplasm of rectosigmoid junction +C0496866|T191|AB|D12.7|ICD10CM|Benign neoplasm of rectosigmoid junction|Benign neoplasm of rectosigmoid junction +C0496866|T191|PS|D12.7|ICD10|Rectosigmoid junction|Rectosigmoid junction +C0496867|T191|PX|D12.8|ICD10|Benign neoplasm of rectum|Benign neoplasm of rectum +C0496867|T191|PT|D12.8|ICD10CM|Benign neoplasm of rectum|Benign neoplasm of rectum +C0496867|T191|AB|D12.8|ICD10CM|Benign neoplasm of rectum|Benign neoplasm of rectum +C0496867|T191|PS|D12.8|ICD10|Rectum|Rectum +C0496868|T191|PS|D12.9|ICD10|Anus and anal canal|Anus and anal canal +C0496868|T191|PX|D12.9|ICD10|Benign neoplasm of anus and anal canal|Benign neoplasm of anus and anal canal +C0496868|T191|PT|D12.9|ICD10CM|Benign neoplasm of anus and anal canal|Benign neoplasm of anus and anal canal +C0496868|T191|AB|D12.9|ICD10CM|Benign neoplasm of anus and anal canal|Benign neoplasm of anus and anal canal +C0347276|T191|ET|D12.9|ICD10CM|Benign neoplasm of anus NOS|Benign neoplasm of anus NOS +C0494184|T191|AB|D13|ICD10CM|Benign neoplasm of and ill-defined parts of digestive system|Benign neoplasm of and ill-defined parts of digestive system +C0494184|T191|HT|D13|ICD10CM|Benign neoplasm of other and ill-defined parts of digestive system|Benign neoplasm of other and ill-defined parts of digestive system +C0494184|T191|HT|D13|ICD10|Benign neoplasm of other and ill-defined parts of digestive system|Benign neoplasm of other and ill-defined parts of digestive system +C0153942|T191|PT|D13.0|ICD10CM|Benign neoplasm of esophagus|Benign neoplasm of esophagus +C0153942|T191|AB|D13.0|ICD10CM|Benign neoplasm of esophagus|Benign neoplasm of esophagus +C0153942|T191|PX|D13.0|ICD10AE|Benign neoplasm of esophagus|Benign neoplasm of esophagus +C0153942|T191|PX|D13.0|ICD10|Benign neoplasm of oesophagus|Benign neoplasm of oesophagus +C0153942|T191|PS|D13.0|ICD10AE|Esophagus|Esophagus +C0153942|T191|PS|D13.0|ICD10|Oesophagus|Oesophagus +C0153943|T191|PX|D13.1|ICD10|Benign neoplasm of stomach|Benign neoplasm of stomach +C0153943|T191|PT|D13.1|ICD10CM|Benign neoplasm of stomach|Benign neoplasm of stomach +C0153943|T191|AB|D13.1|ICD10CM|Benign neoplasm of stomach|Benign neoplasm of stomach +C0153943|T191|PS|D13.1|ICD10|Stomach|Stomach +C0496869|T191|PX|D13.2|ICD10|Benign neoplasm of duodenum|Benign neoplasm of duodenum +C0496869|T191|PT|D13.2|ICD10CM|Benign neoplasm of duodenum|Benign neoplasm of duodenum +C0496869|T191|AB|D13.2|ICD10CM|Benign neoplasm of duodenum|Benign neoplasm of duodenum +C0496869|T191|PS|D13.2|ICD10|Duodenum|Duodenum +C0348411|T191|AB|D13.3|ICD10CM|Benign neoplasm of other and unsp parts of small intestine|Benign neoplasm of other and unsp parts of small intestine +C0348411|T191|HT|D13.3|ICD10CM|Benign neoplasm of other and unspecified parts of small intestine|Benign neoplasm of other and unspecified parts of small intestine +C0348411|T191|PX|D13.3|ICD10|Benign neoplasm of other and unspecified parts of small intestine|Benign neoplasm of other and unspecified parts of small intestine +C0348411|T191|PS|D13.3|ICD10|Other and unspecified parts of small intestine|Other and unspecified parts of small intestine +C2865401|T191|AB|D13.30|ICD10CM|Benign neoplasm of unspecified part of small intestine|Benign neoplasm of unspecified part of small intestine +C2865401|T191|PT|D13.30|ICD10CM|Benign neoplasm of unspecified part of small intestine|Benign neoplasm of unspecified part of small intestine +C2865402|T191|AB|D13.39|ICD10CM|Benign neoplasm of other parts of small intestine|Benign neoplasm of other parts of small intestine +C2865402|T191|PT|D13.39|ICD10CM|Benign neoplasm of other parts of small intestine|Benign neoplasm of other parts of small intestine +C0345909|T191|ET|D13.4|ICD10CM|Benign neoplasm of intrahepatic bile ducts|Benign neoplasm of intrahepatic bile ducts +C0496870|T191|PX|D13.4|ICD10|Benign neoplasm of liver|Benign neoplasm of liver +C0496870|T191|PT|D13.4|ICD10CM|Benign neoplasm of liver|Benign neoplasm of liver +C0496870|T191|AB|D13.4|ICD10CM|Benign neoplasm of liver|Benign neoplasm of liver +C0496870|T191|PS|D13.4|ICD10|Liver|Liver +C0496871|T191|PX|D13.5|ICD10|Benign neoplasm of extrahepatic bile ducts|Benign neoplasm of extrahepatic bile ducts +C0496871|T191|PT|D13.5|ICD10CM|Benign neoplasm of extrahepatic bile ducts|Benign neoplasm of extrahepatic bile ducts +C0496871|T191|AB|D13.5|ICD10CM|Benign neoplasm of extrahepatic bile ducts|Benign neoplasm of extrahepatic bile ducts +C0496871|T191|PS|D13.5|ICD10|Extrahepatic bile ducts|Extrahepatic bile ducts +C0347284|T191|PX|D13.6|ICD10|Benign neoplasm of pancreas|Benign neoplasm of pancreas +C0347284|T191|PT|D13.6|ICD10CM|Benign neoplasm of pancreas|Benign neoplasm of pancreas +C0347284|T191|AB|D13.6|ICD10CM|Benign neoplasm of pancreas|Benign neoplasm of pancreas +C0347284|T191|PS|D13.6|ICD10|Pancreas|Pancreas +C0496872|T191|PT|D13.7|ICD10CM|Benign neoplasm of endocrine pancreas|Benign neoplasm of endocrine pancreas +C0496872|T191|AB|D13.7|ICD10CM|Benign neoplasm of endocrine pancreas|Benign neoplasm of endocrine pancreas +C0496872|T191|PX|D13.7|ICD10|Benign neoplasm of endocrine pancreas|Benign neoplasm of endocrine pancreas +C0496872|T191|ET|D13.7|ICD10CM|Benign neoplasm of islets of Langerhans|Benign neoplasm of islets of Langerhans +C0496872|T191|PS|D13.7|ICD10|Endocrine pancreas|Endocrine pancreas +C0242363|T191|ET|D13.7|ICD10CM|Islet cell tumor|Islet cell tumor +C0497538|T191|ET|D13.9|ICD10CM|Benign neoplasm of digestive system NOS|Benign neoplasm of digestive system NOS +C0348412|T191|AB|D13.9|ICD10CM|Benign neoplasm of ill-defined sites within the dgstv sys|Benign neoplasm of ill-defined sites within the dgstv sys +C0348412|T191|PT|D13.9|ICD10CM|Benign neoplasm of ill-defined sites within the digestive system|Benign neoplasm of ill-defined sites within the digestive system +C0348412|T191|PX|D13.9|ICD10|Benign neoplasm of ill-defined sites within the digestive system|Benign neoplasm of ill-defined sites within the digestive system +C0347269|T191|ET|D13.9|ICD10CM|Benign neoplasm of intestine NOS|Benign neoplasm of intestine NOS +C0686615|T191|ET|D13.9|ICD10CM|Benign neoplasm of spleen|Benign neoplasm of spleen +C0348412|T191|PS|D13.9|ICD10|Ill-defined sites within the digestive system|Ill-defined sites within the digestive system +C0494185|T191|AB|D14|ICD10CM|Benign neoplasm of middle ear and respiratory system|Benign neoplasm of middle ear and respiratory system +C0494185|T191|HT|D14|ICD10CM|Benign neoplasm of middle ear and respiratory system|Benign neoplasm of middle ear and respiratory system +C0494185|T191|HT|D14|ICD10|Benign neoplasm of middle ear and respiratory system|Benign neoplasm of middle ear and respiratory system +C0684925|T191|ET|D14.0|ICD10CM|Benign neoplasm of cartilage of nose|Benign neoplasm of cartilage of nose +C0153951|T191|AB|D14.0|ICD10CM|Benign neoplasm of mid ear, nasl cav and accessory sinuses|Benign neoplasm of mid ear, nasl cav and accessory sinuses +C0153951|T191|PT|D14.0|ICD10CM|Benign neoplasm of middle ear, nasal cavity and accessory sinuses|Benign neoplasm of middle ear, nasal cavity and accessory sinuses +C0153951|T191|PX|D14.0|ICD10|Benign neoplasm of middle ear, nasal cavity and accessory sinuses|Benign neoplasm of middle ear, nasal cavity and accessory sinuses +C0153951|T191|PS|D14.0|ICD10|Middle ear, nasal cavity and accessory sinuses|Middle ear, nasal cavity and accessory sinuses +C2865403|T047|ET|D14.1|ICD10CM|Adenomatous polyp of larynx|Adenomatous polyp of larynx +C0345730|T191|ET|D14.1|ICD10CM|Benign neoplasm of epiglottis (suprahyoid portion)|Benign neoplasm of epiglottis (suprahyoid portion) +C0153952|T191|PX|D14.1|ICD10|Benign neoplasm of larynx|Benign neoplasm of larynx +C0153952|T191|PT|D14.1|ICD10CM|Benign neoplasm of larynx|Benign neoplasm of larynx +C0153952|T191|AB|D14.1|ICD10CM|Benign neoplasm of larynx|Benign neoplasm of larynx +C0153952|T191|PS|D14.1|ICD10|Larynx|Larynx +C0153953|T191|PX|D14.2|ICD10|Benign neoplasm of trachea|Benign neoplasm of trachea +C0153953|T191|PT|D14.2|ICD10CM|Benign neoplasm of trachea|Benign neoplasm of trachea +C0153953|T191|AB|D14.2|ICD10CM|Benign neoplasm of trachea|Benign neoplasm of trachea +C0153953|T191|PS|D14.2|ICD10|Trachea|Trachea +C0153954|T191|PX|D14.3|ICD10|Benign neoplasm of bronchus and lung|Benign neoplasm of bronchus and lung +C0153954|T191|HT|D14.3|ICD10CM|Benign neoplasm of bronchus and lung|Benign neoplasm of bronchus and lung +C0153954|T191|AB|D14.3|ICD10CM|Benign neoplasm of bronchus and lung|Benign neoplasm of bronchus and lung +C0153954|T191|PS|D14.3|ICD10|Bronchus and lung|Bronchus and lung +C2865404|T191|AB|D14.30|ICD10CM|Benign neoplasm of unspecified bronchus and lung|Benign neoplasm of unspecified bronchus and lung +C2865404|T191|PT|D14.30|ICD10CM|Benign neoplasm of unspecified bronchus and lung|Benign neoplasm of unspecified bronchus and lung +C2865405|T191|AB|D14.31|ICD10CM|Benign neoplasm of right bronchus and lung|Benign neoplasm of right bronchus and lung +C2865405|T191|PT|D14.31|ICD10CM|Benign neoplasm of right bronchus and lung|Benign neoplasm of right bronchus and lung +C2865406|T191|AB|D14.32|ICD10CM|Benign neoplasm of left bronchus and lung|Benign neoplasm of left bronchus and lung +C2865406|T191|PT|D14.32|ICD10CM|Benign neoplasm of left bronchus and lung|Benign neoplasm of left bronchus and lung +C0497556|T191|PX|D14.4|ICD10|Benign neoplasm of respiratory system, unspecified|Benign neoplasm of respiratory system, unspecified +C0497556|T191|PT|D14.4|ICD10CM|Benign neoplasm of respiratory system, unspecified|Benign neoplasm of respiratory system, unspecified +C0497556|T191|AB|D14.4|ICD10CM|Benign neoplasm of respiratory system, unspecified|Benign neoplasm of respiratory system, unspecified +C0497556|T191|PS|D14.4|ICD10|Respiratory system, unspecified|Respiratory system, unspecified +C0348423|T191|AB|D15|ICD10CM|Benign neoplasm of other and unsp intrathoracic organs|Benign neoplasm of other and unsp intrathoracic organs +C0348423|T191|HT|D15|ICD10CM|Benign neoplasm of other and unspecified intrathoracic organs|Benign neoplasm of other and unspecified intrathoracic organs +C0348423|T191|HT|D15|ICD10|Benign neoplasm of other and unspecified intrathoracic organs|Benign neoplasm of other and unspecified intrathoracic organs +C0345975|T191|PX|D15.0|ICD10|Benign neoplasm of thymus|Benign neoplasm of thymus +C0345975|T191|PT|D15.0|ICD10CM|Benign neoplasm of thymus|Benign neoplasm of thymus +C0345975|T191|AB|D15.0|ICD10CM|Benign neoplasm of thymus|Benign neoplasm of thymus +C0345975|T191|PS|D15.0|ICD10|Thymus|Thymus +C0153957|T191|PX|D15.1|ICD10|Benign neoplasm of heart|Benign neoplasm of heart +C0153957|T191|PT|D15.1|ICD10CM|Benign neoplasm of heart|Benign neoplasm of heart +C0153957|T191|AB|D15.1|ICD10CM|Benign neoplasm of heart|Benign neoplasm of heart +C0153957|T191|PS|D15.1|ICD10|Heart|Heart +C0153956|T191|PX|D15.2|ICD10|Benign neoplasm of mediastinum|Benign neoplasm of mediastinum +C0153956|T191|PT|D15.2|ICD10CM|Benign neoplasm of mediastinum|Benign neoplasm of mediastinum +C0153956|T191|AB|D15.2|ICD10CM|Benign neoplasm of mediastinum|Benign neoplasm of mediastinum +C0153956|T191|PS|D15.2|ICD10|Mediastinum|Mediastinum +C0348413|T191|PX|D15.7|ICD10|Benign neoplasm of other specified intrathoracic organs|Benign neoplasm of other specified intrathoracic organs +C0348413|T191|PT|D15.7|ICD10CM|Benign neoplasm of other specified intrathoracic organs|Benign neoplasm of other specified intrathoracic organs +C0348413|T191|AB|D15.7|ICD10CM|Benign neoplasm of other specified intrathoracic organs|Benign neoplasm of other specified intrathoracic organs +C0348413|T191|PS|D15.7|ICD10|Other specified intrathoracic organs|Other specified intrathoracic organs +C0347245|T191|PX|D15.9|ICD10|Benign neoplasm of intrathoracic organ, unspecified|Benign neoplasm of intrathoracic organ, unspecified +C0347245|T191|PT|D15.9|ICD10CM|Benign neoplasm of intrathoracic organ, unspecified|Benign neoplasm of intrathoracic organ, unspecified +C0347245|T191|AB|D15.9|ICD10CM|Benign neoplasm of intrathoracic organ, unspecified|Benign neoplasm of intrathoracic organ, unspecified +C0347245|T191|PS|D15.9|ICD10|Intrathoracic organ, unspecified|Intrathoracic organ, unspecified +C0153959|T191|HT|D16|ICD10|Benign neoplasm of bone and articular cartilage|Benign neoplasm of bone and articular cartilage +C0153959|T191|HT|D16|ICD10CM|Benign neoplasm of bone and articular cartilage|Benign neoplasm of bone and articular cartilage +C0153959|T191|AB|D16|ICD10CM|Benign neoplasm of bone and articular cartilage|Benign neoplasm of bone and articular cartilage +C0153963|T191|HT|D16.0|ICD10CM|Benign neoplasm of scapula and long bones of upper limb|Benign neoplasm of scapula and long bones of upper limb +C0153963|T191|AB|D16.0|ICD10CM|Benign neoplasm of scapula and long bones of upper limb|Benign neoplasm of scapula and long bones of upper limb +C0153963|T191|PX|D16.0|ICD10|Benign neoplasm of scapula and long bones of upper limb|Benign neoplasm of scapula and long bones of upper limb +C0153963|T191|PS|D16.0|ICD10|Scapula and long bones of upper limb|Scapula and long bones of upper limb +C2865407|T191|AB|D16.00|ICD10CM|Benign neoplasm of scapula and long bones of unsp upper limb|Benign neoplasm of scapula and long bones of unsp upper limb +C2865407|T191|PT|D16.00|ICD10CM|Benign neoplasm of scapula and long bones of unspecified upper limb|Benign neoplasm of scapula and long bones of unspecified upper limb +C2865408|T191|PT|D16.01|ICD10CM|Benign neoplasm of scapula and long bones of right upper limb|Benign neoplasm of scapula and long bones of right upper limb +C2865408|T191|AB|D16.01|ICD10CM|Benign neoplm of scapula and long bones of right upper limb|Benign neoplm of scapula and long bones of right upper limb +C2865409|T191|AB|D16.02|ICD10CM|Benign neoplasm of scapula and long bones of left upper limb|Benign neoplasm of scapula and long bones of left upper limb +C2865409|T191|PT|D16.02|ICD10CM|Benign neoplasm of scapula and long bones of left upper limb|Benign neoplasm of scapula and long bones of left upper limb +C0153964|T191|PX|D16.1|ICD10|Benign neoplasm of short bones of upper limb|Benign neoplasm of short bones of upper limb +C0153964|T191|HT|D16.1|ICD10CM|Benign neoplasm of short bones of upper limb|Benign neoplasm of short bones of upper limb +C0153964|T191|AB|D16.1|ICD10CM|Benign neoplasm of short bones of upper limb|Benign neoplasm of short bones of upper limb +C0153964|T191|PS|D16.1|ICD10|Short bones of upper limb|Short bones of upper limb +C2865410|T191|AB|D16.10|ICD10CM|Benign neoplasm of short bones of unspecified upper limb|Benign neoplasm of short bones of unspecified upper limb +C2865410|T191|PT|D16.10|ICD10CM|Benign neoplasm of short bones of unspecified upper limb|Benign neoplasm of short bones of unspecified upper limb +C2865411|T191|AB|D16.11|ICD10CM|Benign neoplasm of short bones of right upper limb|Benign neoplasm of short bones of right upper limb +C2865411|T191|PT|D16.11|ICD10CM|Benign neoplasm of short bones of right upper limb|Benign neoplasm of short bones of right upper limb +C2865412|T191|AB|D16.12|ICD10CM|Benign neoplasm of short bones of left upper limb|Benign neoplasm of short bones of left upper limb +C2865412|T191|PT|D16.12|ICD10CM|Benign neoplasm of short bones of left upper limb|Benign neoplasm of short bones of left upper limb +C0153966|T191|PX|D16.2|ICD10|Benign neoplasm of long bones of lower limb|Benign neoplasm of long bones of lower limb +C0153966|T191|HT|D16.2|ICD10CM|Benign neoplasm of long bones of lower limb|Benign neoplasm of long bones of lower limb +C0153966|T191|AB|D16.2|ICD10CM|Benign neoplasm of long bones of lower limb|Benign neoplasm of long bones of lower limb +C0153966|T191|PS|D16.2|ICD10|Long bones of lower limb|Long bones of lower limb +C2865413|T191|AB|D16.20|ICD10CM|Benign neoplasm of long bones of unspecified lower limb|Benign neoplasm of long bones of unspecified lower limb +C2865413|T191|PT|D16.20|ICD10CM|Benign neoplasm of long bones of unspecified lower limb|Benign neoplasm of long bones of unspecified lower limb +C2865414|T191|AB|D16.21|ICD10CM|Benign neoplasm of long bones of right lower limb|Benign neoplasm of long bones of right lower limb +C2865414|T191|PT|D16.21|ICD10CM|Benign neoplasm of long bones of right lower limb|Benign neoplasm of long bones of right lower limb +C2865415|T191|AB|D16.22|ICD10CM|Benign neoplasm of long bones of left lower limb|Benign neoplasm of long bones of left lower limb +C2865415|T191|PT|D16.22|ICD10CM|Benign neoplasm of long bones of left lower limb|Benign neoplasm of long bones of left lower limb +C0153967|T191|PX|D16.3|ICD10|Benign neoplasm of short bones of lower limb|Benign neoplasm of short bones of lower limb +C0153967|T191|HT|D16.3|ICD10CM|Benign neoplasm of short bones of lower limb|Benign neoplasm of short bones of lower limb +C0153967|T191|AB|D16.3|ICD10CM|Benign neoplasm of short bones of lower limb|Benign neoplasm of short bones of lower limb +C0153967|T191|PS|D16.3|ICD10|Short bones of lower limb|Short bones of lower limb +C2865416|T191|AB|D16.30|ICD10CM|Benign neoplasm of short bones of unspecified lower limb|Benign neoplasm of short bones of unspecified lower limb +C2865416|T191|PT|D16.30|ICD10CM|Benign neoplasm of short bones of unspecified lower limb|Benign neoplasm of short bones of unspecified lower limb +C2865417|T191|AB|D16.31|ICD10CM|Benign neoplasm of short bones of right lower limb|Benign neoplasm of short bones of right lower limb +C2865417|T191|PT|D16.31|ICD10CM|Benign neoplasm of short bones of right lower limb|Benign neoplasm of short bones of right lower limb +C2865418|T191|AB|D16.32|ICD10CM|Benign neoplasm of short bones of left lower limb|Benign neoplasm of short bones of left lower limb +C2865418|T191|PT|D16.32|ICD10CM|Benign neoplasm of short bones of left lower limb|Benign neoplasm of short bones of left lower limb +C0153960|T191|PX|D16.4|ICD10|Benign neoplasm of bones of skull and face|Benign neoplasm of bones of skull and face +C0153960|T191|AB|D16.4|ICD10CM|Benign neoplasm of bones of skull and face|Benign neoplasm of bones of skull and face +C0153960|T191|PT|D16.4|ICD10CM|Benign neoplasm of bones of skull and face|Benign neoplasm of bones of skull and face +C2865419|T191|ET|D16.4|ICD10CM|Benign neoplasm of maxilla (superior)|Benign neoplasm of maxilla (superior) +C2865420|T191|ET|D16.4|ICD10CM|Benign neoplasm of orbital bone|Benign neoplasm of orbital bone +C0153960|T191|PS|D16.4|ICD10|Bones of skull and face|Bones of skull and face +C2865421|T191|ET|D16.4|ICD10CM|Keratocyst of maxilla|Keratocyst of maxilla +C2865422|T191|ET|D16.4|ICD10CM|Keratocystic odontogenic tumor of maxilla|Keratocystic odontogenic tumor of maxilla +C0004994|T191|PX|D16.5|ICD10|Benign neoplasm of lower jaw bone|Benign neoplasm of lower jaw bone +C0004994|T191|PT|D16.5|ICD10CM|Benign neoplasm of lower jaw bone|Benign neoplasm of lower jaw bone +C0004994|T191|AB|D16.5|ICD10CM|Benign neoplasm of lower jaw bone|Benign neoplasm of lower jaw bone +C2865423|T191|ET|D16.5|ICD10CM|Keratocyst of mandible|Keratocyst of mandible +C2865424|T191|ET|D16.5|ICD10CM|Keratocystic odontogenic tumor of mandible|Keratocystic odontogenic tumor of mandible +C0004994|T191|PS|D16.5|ICD10|Lower jaw bone|Lower jaw bone +C0347311|T191|PX|D16.6|ICD10|Benign neoplasm of vertebral column|Benign neoplasm of vertebral column +C0347311|T191|PT|D16.6|ICD10CM|Benign neoplasm of vertebral column|Benign neoplasm of vertebral column +C0347311|T191|AB|D16.6|ICD10CM|Benign neoplasm of vertebral column|Benign neoplasm of vertebral column +C0347311|T191|PS|D16.6|ICD10|Vertebral column|Vertebral column +C0153962|T191|PX|D16.7|ICD10|Benign neoplasm of ribs, sternum and clavicle|Benign neoplasm of ribs, sternum and clavicle +C0153962|T191|PT|D16.7|ICD10CM|Benign neoplasm of ribs, sternum and clavicle|Benign neoplasm of ribs, sternum and clavicle +C0153962|T191|AB|D16.7|ICD10CM|Benign neoplasm of ribs, sternum and clavicle|Benign neoplasm of ribs, sternum and clavicle +C0153962|T191|PS|D16.7|ICD10|Ribs, sternum and clavicle|Ribs, sternum and clavicle +C0153965|T191|PX|D16.8|ICD10|Benign neoplasm of pelvic bones, sacrum and coccyx|Benign neoplasm of pelvic bones, sacrum and coccyx +C0153965|T191|PT|D16.8|ICD10CM|Benign neoplasm of pelvic bones, sacrum and coccyx|Benign neoplasm of pelvic bones, sacrum and coccyx +C0153965|T191|AB|D16.8|ICD10CM|Benign neoplasm of pelvic bones, sacrum and coccyx|Benign neoplasm of pelvic bones, sacrum and coccyx +C0153965|T191|PS|D16.8|ICD10|Pelvic bones, sacrum and coccyx|Pelvic bones, sacrum and coccyx +C0153959|T191|PX|D16.9|ICD10|Benign neoplasm of bone and articular cartilage, unspecified|Benign neoplasm of bone and articular cartilage, unspecified +C0153959|T191|PT|D16.9|ICD10CM|Benign neoplasm of bone and articular cartilage, unspecified|Benign neoplasm of bone and articular cartilage, unspecified +C0153959|T191|AB|D16.9|ICD10CM|Benign neoplasm of bone and articular cartilage, unspecified|Benign neoplasm of bone and articular cartilage, unspecified +C0153959|T191|PS|D16.9|ICD10|Bone and articular cartilage, unspecified|Bone and articular cartilage, unspecified +C0346118|T191|HT|D17|ICD10|Benign lipomatous neoplasm|Benign lipomatous neoplasm +C0346118|T191|AB|D17|ICD10CM|Benign lipomatous neoplasm|Benign lipomatous neoplasm +C0346118|T191|HT|D17|ICD10CM|Benign lipomatous neoplasm|Benign lipomatous neoplasm +C0494188|T191|AB|D17.0|ICD10CM|Ben lipomatous neoplm of skin, subcu of head, face and neck|Ben lipomatous neoplm of skin, subcu of head, face and neck +C0494188|T191|PT|D17.0|ICD10CM|Benign lipomatous neoplasm of skin and subcutaneous tissue of head, face and neck|Benign lipomatous neoplasm of skin and subcutaneous tissue of head, face and neck +C0494188|T191|PT|D17.0|ICD10|Benign lipomatous neoplasm of skin and subcutaneous tissue of head, face and neck|Benign lipomatous neoplasm of skin and subcutaneous tissue of head, face and neck +C0494189|T191|PT|D17.1|ICD10|Benign lipomatous neoplasm of skin and subcutaneous tissue of trunk|Benign lipomatous neoplasm of skin and subcutaneous tissue of trunk +C0494189|T191|PT|D17.1|ICD10CM|Benign lipomatous neoplasm of skin and subcutaneous tissue of trunk|Benign lipomatous neoplasm of skin and subcutaneous tissue of trunk +C0494189|T191|AB|D17.1|ICD10CM|Benign lipomatous neoplasm of skin, subcu of trunk|Benign lipomatous neoplasm of skin, subcu of trunk +C0494190|T191|HT|D17.2|ICD10CM|Benign lipomatous neoplasm of skin and subcutaneous tissue of limb|Benign lipomatous neoplasm of skin and subcutaneous tissue of limb +C0494190|T191|PT|D17.2|ICD10|Benign lipomatous neoplasm of skin and subcutaneous tissue of limbs|Benign lipomatous neoplasm of skin and subcutaneous tissue of limbs +C0494190|T191|AB|D17.2|ICD10CM|Benign lipomatous neoplasm of skin, subcu of limb|Benign lipomatous neoplasm of skin, subcu of limb +C2865425|T191|PT|D17.20|ICD10CM|Benign lipomatous neoplasm of skin and subcutaneous tissue of unspecified limb|Benign lipomatous neoplasm of skin and subcutaneous tissue of unspecified limb +C2865425|T191|AB|D17.20|ICD10CM|Benign lipomatous neoplasm of skin, subcu of unsp limb|Benign lipomatous neoplasm of skin, subcu of unsp limb +C2865426|T191|PT|D17.21|ICD10CM|Benign lipomatous neoplasm of skin and subcutaneous tissue of right arm|Benign lipomatous neoplasm of skin and subcutaneous tissue of right arm +C2865426|T191|AB|D17.21|ICD10CM|Benign lipomatous neoplasm of skin, subcu of right arm|Benign lipomatous neoplasm of skin, subcu of right arm +C2865427|T191|PT|D17.22|ICD10CM|Benign lipomatous neoplasm of skin and subcutaneous tissue of left arm|Benign lipomatous neoplasm of skin and subcutaneous tissue of left arm +C2865427|T191|AB|D17.22|ICD10CM|Benign lipomatous neoplasm of skin, subcu of left arm|Benign lipomatous neoplasm of skin, subcu of left arm +C2865428|T191|PT|D17.23|ICD10CM|Benign lipomatous neoplasm of skin and subcutaneous tissue of right leg|Benign lipomatous neoplasm of skin and subcutaneous tissue of right leg +C2865428|T191|AB|D17.23|ICD10CM|Benign lipomatous neoplasm of skin, subcu of right leg|Benign lipomatous neoplasm of skin, subcu of right leg +C2865429|T191|PT|D17.24|ICD10CM|Benign lipomatous neoplasm of skin and subcutaneous tissue of left leg|Benign lipomatous neoplasm of skin and subcutaneous tissue of left leg +C2865429|T191|AB|D17.24|ICD10CM|Benign lipomatous neoplasm of skin, subcu of left leg|Benign lipomatous neoplasm of skin, subcu of left leg +C0348414|T191|HT|D17.3|ICD10CM|Benign lipomatous neoplasm of skin and subcutaneous tissue of other and unspecified sites|Benign lipomatous neoplasm of skin and subcutaneous tissue of other and unspecified sites +C0348414|T191|PT|D17.3|ICD10|Benign lipomatous neoplasm of skin and subcutaneous tissue of other and unspecified sites|Benign lipomatous neoplasm of skin and subcutaneous tissue of other and unspecified sites +C0348414|T191|AB|D17.3|ICD10CM|Benign lipomatous neoplasm of skin, subcu of and unsp sites|Benign lipomatous neoplasm of skin, subcu of and unsp sites +C0348414|T191|PT|D17.30|ICD10CM|Benign lipomatous neoplasm of skin and subcutaneous tissue of unspecified sites|Benign lipomatous neoplasm of skin and subcutaneous tissue of unspecified sites +C0348414|T191|AB|D17.30|ICD10CM|Benign lipomatous neoplasm of skin, subcu of unsp sites|Benign lipomatous neoplasm of skin, subcu of unsp sites +C2865431|T191|PT|D17.39|ICD10CM|Benign lipomatous neoplasm of skin and subcutaneous tissue of other sites|Benign lipomatous neoplasm of skin and subcutaneous tissue of other sites +C2865431|T191|AB|D17.39|ICD10CM|Benign lipomatous neoplasm of skin, subcu of sites|Benign lipomatous neoplasm of skin, subcu of sites +C0494191|T191|PT|D17.4|ICD10CM|Benign lipomatous neoplasm of intrathoracic organs|Benign lipomatous neoplasm of intrathoracic organs +C0494191|T191|AB|D17.4|ICD10CM|Benign lipomatous neoplasm of intrathoracic organs|Benign lipomatous neoplasm of intrathoracic organs +C0494191|T191|PT|D17.4|ICD10|Benign lipomatous neoplasm of intrathoracic organs|Benign lipomatous neoplasm of intrathoracic organs +C0494192|T191|PT|D17.5|ICD10|Benign lipomatous neoplasm of intra-abdominal organs|Benign lipomatous neoplasm of intra-abdominal organs +C0494192|T191|PT|D17.5|ICD10CM|Benign lipomatous neoplasm of intra-abdominal organs|Benign lipomatous neoplasm of intra-abdominal organs +C0494192|T191|AB|D17.5|ICD10CM|Benign lipomatous neoplasm of intra-abdominal organs|Benign lipomatous neoplasm of intra-abdominal organs +C0494193|T191|PT|D17.6|ICD10CM|Benign lipomatous neoplasm of spermatic cord|Benign lipomatous neoplasm of spermatic cord +C0494193|T191|AB|D17.6|ICD10CM|Benign lipomatous neoplasm of spermatic cord|Benign lipomatous neoplasm of spermatic cord +C0494193|T191|PT|D17.6|ICD10|Benign lipomatous neoplasm of spermatic cord|Benign lipomatous neoplasm of spermatic cord +C0348415|T191|HT|D17.7|ICD10CM|Benign lipomatous neoplasm of other sites|Benign lipomatous neoplasm of other sites +C0348415|T191|AB|D17.7|ICD10CM|Benign lipomatous neoplasm of other sites|Benign lipomatous neoplasm of other sites +C0348415|T191|PT|D17.7|ICD10|Benign lipomatous neoplasm of other sites|Benign lipomatous neoplasm of other sites +C3263940|T191|AB|D17.71|ICD10CM|Benign lipomatous neoplasm of kidney|Benign lipomatous neoplasm of kidney +C3263940|T191|PT|D17.71|ICD10CM|Benign lipomatous neoplasm of kidney|Benign lipomatous neoplasm of kidney +C3263941|T191|AB|D17.72|ICD10CM|Benign lipomatous neoplasm of other genitourinary organ|Benign lipomatous neoplasm of other genitourinary organ +C3263941|T191|PT|D17.72|ICD10CM|Benign lipomatous neoplasm of other genitourinary organ|Benign lipomatous neoplasm of other genitourinary organ +C0348415|T191|PT|D17.79|ICD10CM|Benign lipomatous neoplasm of other sites|Benign lipomatous neoplasm of other sites +C0348415|T191|AB|D17.79|ICD10CM|Benign lipomatous neoplasm of other sites|Benign lipomatous neoplasm of other sites +C2865432|T191|ET|D17.79|ICD10CM|Benign lipomatous neoplasm of peritoneum|Benign lipomatous neoplasm of peritoneum +C2865433|T191|ET|D17.79|ICD10CM|Benign lipomatous neoplasm of retroperitoneum|Benign lipomatous neoplasm of retroperitoneum +C0346118|T191|PT|D17.9|ICD10|Benign lipomatous neoplasm, unspecified|Benign lipomatous neoplasm, unspecified +C0346118|T191|PT|D17.9|ICD10CM|Benign lipomatous neoplasm, unspecified|Benign lipomatous neoplasm, unspecified +C0346118|T191|AB|D17.9|ICD10CM|Benign lipomatous neoplasm, unspecified|Benign lipomatous neoplasm, unspecified +C0023798|T191|ET|D17.9|ICD10CM|Lipoma NOS|Lipoma NOS +C0851225|T191|HT|D18|ICD10|Haemangioma and lymphangioma, any site|Haemangioma and lymphangioma, any site +C0851225|T191|HT|D18|ICD10AE|Hemangioma and lymphangioma, any site|Hemangioma and lymphangioma, any site +C0851225|T191|HT|D18|ICD10CM|Hemangioma and lymphangioma, any site|Hemangioma and lymphangioma, any site +C0851225|T191|AB|D18|ICD10CM|Hemangioma and lymphangioma, any site|Hemangioma and lymphangioma, any site +C0018916|T191|ET|D18.0|ICD10CM|Angioma NOS|Angioma NOS +C0018920|T191|ET|D18.0|ICD10CM|Cavernous nevus|Cavernous nevus +C0018916|T191|PT|D18.0|ICD10|Haemangioma, any site|Haemangioma, any site +C0018916|T191|HT|D18.0|ICD10CM|Hemangioma|Hemangioma +C0018916|T191|AB|D18.0|ICD10CM|Hemangioma|Hemangioma +C0018916|T191|PT|D18.0|ICD10AE|Hemangioma, any site|Hemangioma, any site +C0018916|T191|AB|D18.00|ICD10CM|Hemangioma unspecified site|Hemangioma unspecified site +C0018916|T191|PT|D18.00|ICD10CM|Hemangioma unspecified site|Hemangioma unspecified site +C0154049|T191|PT|D18.01|ICD10CM|Hemangioma of skin and subcutaneous tissue|Hemangioma of skin and subcutaneous tissue +C0154049|T191|AB|D18.01|ICD10CM|Hemangioma of skin and subcutaneous tissue|Hemangioma of skin and subcutaneous tissue +C0154050|T191|PT|D18.02|ICD10CM|Hemangioma of intracranial structures|Hemangioma of intracranial structures +C0154050|T191|AB|D18.02|ICD10CM|Hemangioma of intracranial structures|Hemangioma of intracranial structures +C0154052|T191|PT|D18.03|ICD10CM|Hemangioma of intra-abdominal structures|Hemangioma of intra-abdominal structures +C0154052|T191|AB|D18.03|ICD10CM|Hemangioma of intra-abdominal structures|Hemangioma of intra-abdominal structures +C0018918|T191|AB|D18.09|ICD10CM|Hemangioma of other sites|Hemangioma of other sites +C0018918|T191|PT|D18.09|ICD10CM|Hemangioma of other sites|Hemangioma of other sites +C0024221|T191|PT|D18.1|ICD10CM|Lymphangioma, any site|Lymphangioma, any site +C0024221|T191|AB|D18.1|ICD10CM|Lymphangioma, any site|Lymphangioma, any site +C0024221|T191|PT|D18.1|ICD10|Lymphangioma, any site|Lymphangioma, any site +C0348424|T191|HT|D19|ICD10|Benign neoplasm of mesothelial tissue|Benign neoplasm of mesothelial tissue +C0348424|T191|AB|D19|ICD10CM|Benign neoplasm of mesothelial tissue|Benign neoplasm of mesothelial tissue +C0348424|T191|HT|D19|ICD10CM|Benign neoplasm of mesothelial tissue|Benign neoplasm of mesothelial tissue +C0346112|T191|PX|D19.0|ICD10|Benign neoplasm of mesothelial tissue of pleura|Benign neoplasm of mesothelial tissue of pleura +C0346112|T191|PT|D19.0|ICD10CM|Benign neoplasm of mesothelial tissue of pleura|Benign neoplasm of mesothelial tissue of pleura +C0346112|T191|AB|D19.0|ICD10CM|Benign neoplasm of mesothelial tissue of pleura|Benign neoplasm of mesothelial tissue of pleura +C0346112|T191|PS|D19.0|ICD10|Mesothelial tissue of pleura|Mesothelial tissue of pleura +C0346113|T191|PX|D19.1|ICD10|Benign neoplasm of mesothelial tissue of peritoneum|Benign neoplasm of mesothelial tissue of peritoneum +C0346113|T191|PT|D19.1|ICD10CM|Benign neoplasm of mesothelial tissue of peritoneum|Benign neoplasm of mesothelial tissue of peritoneum +C0346113|T191|AB|D19.1|ICD10CM|Benign neoplasm of mesothelial tissue of peritoneum|Benign neoplasm of mesothelial tissue of peritoneum +C0346113|T191|PS|D19.1|ICD10|Mesothelial tissue of peritoneum|Mesothelial tissue of peritoneum +C0348416|T191|PX|D19.7|ICD10|Benign neoplasm of mesothelial tissue of other sites|Benign neoplasm of mesothelial tissue of other sites +C0348416|T191|PT|D19.7|ICD10CM|Benign neoplasm of mesothelial tissue of other sites|Benign neoplasm of mesothelial tissue of other sites +C0348416|T191|AB|D19.7|ICD10CM|Benign neoplasm of mesothelial tissue of other sites|Benign neoplasm of mesothelial tissue of other sites +C0348416|T191|PS|D19.7|ICD10|Mesothelial tissue of other sites|Mesothelial tissue of other sites +C0206675|T191|ET|D19.9|ICD10CM|Benign mesothelioma NOS|Benign mesothelioma NOS +C0348424|T191|PT|D19.9|ICD10CM|Benign neoplasm of mesothelial tissue, unspecified|Benign neoplasm of mesothelial tissue, unspecified +C0348424|T191|AB|D19.9|ICD10CM|Benign neoplasm of mesothelial tissue, unspecified|Benign neoplasm of mesothelial tissue, unspecified +C0348424|T191|PX|D19.9|ICD10|Benign neoplasm of mesothelial tissue, unspecified|Benign neoplasm of mesothelial tissue, unspecified +C0348424|T191|PS|D19.9|ICD10|Mesothelial tissue, unspecified|Mesothelial tissue, unspecified +C0494194|T191|HT|D20|ICD10|Benign neoplasm of soft tissue of retroperitoneum and peritoneum|Benign neoplasm of soft tissue of retroperitoneum and peritoneum +C0494194|T191|HT|D20|ICD10CM|Benign neoplasm of soft tissue of retroperitoneum and peritoneum|Benign neoplasm of soft tissue of retroperitoneum and peritoneum +C0494194|T191|AB|D20|ICD10CM|Benign neoplm of soft tissue of retroperiton and peritoneum|Benign neoplm of soft tissue of retroperiton and peritoneum +C0496873|T191|PX|D20.0|ICD10|Benign neoplasm of retroperitoneum|Benign neoplasm of retroperitoneum +C2865434|T191|AB|D20.0|ICD10CM|Benign neoplasm of soft tissue of retroperitoneum|Benign neoplasm of soft tissue of retroperitoneum +C2865434|T191|PT|D20.0|ICD10CM|Benign neoplasm of soft tissue of retroperitoneum|Benign neoplasm of soft tissue of retroperitoneum +C0496873|T191|PS|D20.0|ICD10|Retroperitoneum|Retroperitoneum +C0496874|T191|PX|D20.1|ICD10|Benign neoplasm of peritoneum|Benign neoplasm of peritoneum +C2865435|T191|AB|D20.1|ICD10CM|Benign neoplasm of soft tissue of peritoneum|Benign neoplasm of soft tissue of peritoneum +C2865435|T191|PT|D20.1|ICD10CM|Benign neoplasm of soft tissue of peritoneum|Benign neoplasm of soft tissue of peritoneum +C0496874|T191|PS|D20.1|ICD10|Peritoneum|Peritoneum +C0685121|T191|ET|D21|ICD10CM|benign neoplasm of blood vessel|benign neoplasm of blood vessel +C4290077|T191|ET|D21|ICD10CM|benign neoplasm of bursa|benign neoplasm of bursa +C0852519|T191|ET|D21|ICD10CM|benign neoplasm of cartilage|benign neoplasm of cartilage +C4290078|T191|ET|D21|ICD10CM|benign neoplasm of fascia|benign neoplasm of fascia +C4290079|T191|ET|D21|ICD10CM|benign neoplasm of fat|benign neoplasm of fat +C4290080|T191|ET|D21|ICD10CM|benign neoplasm of ligament, except uterine|benign neoplasm of ligament, except uterine +C4290081|T191|ET|D21|ICD10CM|benign neoplasm of lymphatic channel|benign neoplasm of lymphatic channel +C0027086|T191|ET|D21|ICD10CM|benign neoplasm of muscle|benign neoplasm of muscle +C4290082|T191|ET|D21|ICD10CM|benign neoplasm of synovia|benign neoplasm of synovia +C4290083|T191|ET|D21|ICD10CM|benign neoplasm of tendon (sheath)|benign neoplasm of tendon (sheath) +C0474833|T191|ET|D21|ICD10CM|benign stromal tumors|benign stromal tumors +C0496876|T191|AB|D21|ICD10CM|Other benign neoplasms of connective and other soft tissue|Other benign neoplasms of connective and other soft tissue +C0496876|T191|HT|D21|ICD10CM|Other benign neoplasms of connective and other soft tissue|Other benign neoplasms of connective and other soft tissue +C0496876|T191|HT|D21|ICD10|Other benign neoplasms of connective and other soft tissue|Other benign neoplasms of connective and other soft tissue +C2865445|T191|AB|D21.0|ICD10CM|Benign neoplasm of connctv/soft tiss of head, face and neck|Benign neoplasm of connctv/soft tiss of head, face and neck +C2865445|T191|PT|D21.0|ICD10CM|Benign neoplasm of connective and other soft tissue of head, face and neck|Benign neoplasm of connective and other soft tissue of head, face and neck +C2865443|T191|ET|D21.0|ICD10CM|Benign neoplasm of connective tissue of ear|Benign neoplasm of connective tissue of ear +C2865444|T191|ET|D21.0|ICD10CM|Benign neoplasm of connective tissue of eyelid|Benign neoplasm of connective tissue of eyelid +C0153974|T191|PS|D21.0|ICD10|Connective and other soft tissue of head, face and neck|Connective and other soft tissue of head, face and neck +C0153974|T191|PX|D21.0|ICD10|Other benign neoplasm of connective and other soft tissue of head, face and neck|Other benign neoplasm of connective and other soft tissue of head, face and neck +C2865446|T191|HT|D21.1|ICD10CM|Benign neoplasm of connective and other soft tissue of upper limb, including shoulder|Benign neoplasm of connective and other soft tissue of upper limb, including shoulder +C2865446|T191|AB|D21.1|ICD10CM|Benign neoplm of connctv/soft tiss of upper limb, inc shldr|Benign neoplm of connctv/soft tiss of upper limb, inc shldr +C0153975|T191|PS|D21.1|ICD10|Connective and other soft tissue of upper limb, including shoulder|Connective and other soft tissue of upper limb, including shoulder +C0153975|T191|PX|D21.1|ICD10|Other benign neoplasm of connective and other soft tissue of upper limb, including shoulder|Other benign neoplasm of connective and other soft tissue of upper limb, including shoulder +C2865447|T191|AB|D21.10|ICD10CM|Ben neoplm of connctv/soft tiss of unsp upr limb, inc shldr|Ben neoplm of connctv/soft tiss of unsp upr limb, inc shldr +C2865447|T191|PT|D21.10|ICD10CM|Benign neoplasm of connective and other soft tissue of unspecified upper limb, including shoulder|Benign neoplasm of connective and other soft tissue of unspecified upper limb, including shoulder +C2865448|T191|AB|D21.11|ICD10CM|Ben neoplm of connctv/soft tiss of r upper limb, inc shldr|Ben neoplm of connctv/soft tiss of r upper limb, inc shldr +C2865448|T191|PT|D21.11|ICD10CM|Benign neoplasm of connective and other soft tissue of right upper limb, including shoulder|Benign neoplasm of connective and other soft tissue of right upper limb, including shoulder +C2865449|T191|AB|D21.12|ICD10CM|Ben neoplm of connctv/soft tiss of left upr limb, inc shldr|Ben neoplm of connctv/soft tiss of left upr limb, inc shldr +C2865449|T191|PT|D21.12|ICD10CM|Benign neoplasm of connective and other soft tissue of left upper limb, including shoulder|Benign neoplasm of connective and other soft tissue of left upper limb, including shoulder +C2865450|T191|AB|D21.2|ICD10CM|Benign neoplasm of connctv/soft tiss of lower limb, inc hip|Benign neoplasm of connctv/soft tiss of lower limb, inc hip +C2865450|T191|HT|D21.2|ICD10CM|Benign neoplasm of connective and other soft tissue of lower limb, including hip|Benign neoplasm of connective and other soft tissue of lower limb, including hip +C0153976|T191|PS|D21.2|ICD10|Connective and other soft tissue of lower limb, including hip|Connective and other soft tissue of lower limb, including hip +C0153976|T191|PX|D21.2|ICD10|Other benign neoplasm of connective and other soft tissue of lower limb, including hip|Other benign neoplasm of connective and other soft tissue of lower limb, including hip +C2865451|T191|AB|D21.20|ICD10CM|Ben neoplm of connctv/soft tiss of unsp lower limb, inc hip|Ben neoplm of connctv/soft tiss of unsp lower limb, inc hip +C2865451|T191|PT|D21.20|ICD10CM|Benign neoplasm of connective and other soft tissue of unspecified lower limb, including hip|Benign neoplasm of connective and other soft tissue of unspecified lower limb, including hip +C2865452|T191|AB|D21.21|ICD10CM|Ben neoplm of connctv/soft tiss of right lower limb, inc hip|Ben neoplm of connctv/soft tiss of right lower limb, inc hip +C2865452|T191|PT|D21.21|ICD10CM|Benign neoplasm of connective and other soft tissue of right lower limb, including hip|Benign neoplasm of connective and other soft tissue of right lower limb, including hip +C2865453|T191|AB|D21.22|ICD10CM|Ben neoplm of connctv/soft tiss of left lower limb, inc hip|Ben neoplm of connctv/soft tiss of left lower limb, inc hip +C2865453|T191|PT|D21.22|ICD10CM|Benign neoplasm of connective and other soft tissue of left lower limb, including hip|Benign neoplasm of connective and other soft tissue of left lower limb, including hip +C0684828|T191|ET|D21.3|ICD10CM|Benign neoplasm of axilla|Benign neoplasm of axilla +C2865454|T191|AB|D21.3|ICD10CM|Benign neoplasm of connective and oth soft tissue of thorax|Benign neoplasm of connective and oth soft tissue of thorax +C2865454|T191|PT|D21.3|ICD10CM|Benign neoplasm of connective and other soft tissue of thorax|Benign neoplasm of connective and other soft tissue of thorax +C0685091|T191|ET|D21.3|ICD10CM|Benign neoplasm of diaphragm|Benign neoplasm of diaphragm +C0685125|T191|ET|D21.3|ICD10CM|Benign neoplasm of great vessels|Benign neoplasm of great vessels +C0496875|T191|PS|D21.3|ICD10|Connective and other soft tissue of thorax Axilla|Connective and other soft tissue of thorax Axilla +C0496875|T191|PX|D21.3|ICD10|Other benign neoplasm of connective and other soft tissue of thorax Axilla|Other benign neoplasm of connective and other soft tissue of thorax Axilla +C2865455|T191|AB|D21.4|ICD10CM|Benign neoplasm of connective and oth soft tissue of abdomen|Benign neoplasm of connective and oth soft tissue of abdomen +C2865455|T191|PT|D21.4|ICD10CM|Benign neoplasm of connective and other soft tissue of abdomen|Benign neoplasm of connective and other soft tissue of abdomen +C1719303|T191|ET|D21.4|ICD10CM|Benign stromal tumors of abdomen|Benign stromal tumors of abdomen +C0153978|T191|PS|D21.4|ICD10|Connective and other soft tissue of abdomen|Connective and other soft tissue of abdomen +C0153978|T191|PX|D21.4|ICD10|Other benign neoplasm of connective and other soft tissue of abdomen|Other benign neoplasm of connective and other soft tissue of abdomen +C2865456|T191|AB|D21.5|ICD10CM|Benign neoplasm of connective and oth soft tissue of pelvis|Benign neoplasm of connective and oth soft tissue of pelvis +C2865456|T191|PT|D21.5|ICD10CM|Benign neoplasm of connective and other soft tissue of pelvis|Benign neoplasm of connective and other soft tissue of pelvis +C0153979|T191|PS|D21.5|ICD10|Connective and other soft tissue of pelvis|Connective and other soft tissue of pelvis +C0153979|T191|PX|D21.5|ICD10|Other benign neoplasm of connective and other soft tissue of pelvis|Other benign neoplasm of connective and other soft tissue of pelvis +C2865457|T191|AB|D21.6|ICD10CM|Benign neoplasm of connctv/soft tiss of trunk, unsp|Benign neoplasm of connctv/soft tiss of trunk, unsp +C5141123|T191|ET|D21.6|ICD10CM|Benign neoplasm of connective and other soft tissue back NOS|Benign neoplasm of connective and other soft tissue back NOS +C2865457|T191|PT|D21.6|ICD10CM|Benign neoplasm of connective and other soft tissue of trunk, unspecified|Benign neoplasm of connective and other soft tissue of trunk, unspecified +C0375098|T191|PS|D21.6|ICD10|Connective and other soft tissue of trunk, unspecified|Connective and other soft tissue of trunk, unspecified +C0375098|T191|PX|D21.6|ICD10|Other benign neoplasm of connective and other soft tissue of trunk, unspecified|Other benign neoplasm of connective and other soft tissue of trunk, unspecified +C2865458|T191|AB|D21.9|ICD10CM|Benign neoplasm of connective and other soft tissue, unsp|Benign neoplasm of connective and other soft tissue, unsp +C2865458|T191|PT|D21.9|ICD10CM|Benign neoplasm of connective and other soft tissue, unspecified|Benign neoplasm of connective and other soft tissue, unspecified +C0496876|T191|PS|D21.9|ICD10|Connective and other soft tissue, unspecified|Connective and other soft tissue, unspecified +C0496876|T191|PX|D21.9|ICD10|Other benign neoplasm of connective and other soft tissue, unspecified|Other benign neoplasm of connective and other soft tissue, unspecified +C0205748|T191|ET|D22|ICD10CM|atypical nevus|atypical nevus +C4290084|T191|ET|D22|ICD10CM|blue hairy pigmented nevus|blue hairy pigmented nevus +C0027962|T191|HT|D22|ICD10|Melanocytic naevi|Melanocytic naevi +C0027962|T191|HT|D22|ICD10CM|Melanocytic nevi|Melanocytic nevi +C0027962|T191|AB|D22|ICD10CM|Melanocytic nevi|Melanocytic nevi +C0027962|T191|HT|D22|ICD10AE|Melanocytic nevi|Melanocytic nevi +C0027962|T191|ET|D22|ICD10CM|nevus NOS|nevus NOS +C0349061|T191|PT|D22.0|ICD10|Melanocytic naevi of lip|Melanocytic naevi of lip +C0349061|T191|PT|D22.0|ICD10CM|Melanocytic nevi of lip|Melanocytic nevi of lip +C0349061|T191|AB|D22.0|ICD10CM|Melanocytic nevi of lip|Melanocytic nevi of lip +C0349061|T191|PT|D22.0|ICD10AE|Melanocytic nevi of lip|Melanocytic nevi of lip +C0349062|T191|PT|D22.1|ICD10|Melanocytic naevi of eyelid, including canthus|Melanocytic naevi of eyelid, including canthus +C0349062|T191|PT|D22.1|ICD10AE|Melanocytic nevi of eyelid, including canthus|Melanocytic nevi of eyelid, including canthus +C0349062|T191|HT|D22.1|ICD10CM|Melanocytic nevi of eyelid, including canthus|Melanocytic nevi of eyelid, including canthus +C0349062|T191|AB|D22.1|ICD10CM|Melanocytic nevi of eyelid, including canthus|Melanocytic nevi of eyelid, including canthus +C2865460|T191|AB|D22.10|ICD10CM|Melanocytic nevi of unspecified eyelid, including canthus|Melanocytic nevi of unspecified eyelid, including canthus +C2865460|T191|PT|D22.10|ICD10CM|Melanocytic nevi of unspecified eyelid, including canthus|Melanocytic nevi of unspecified eyelid, including canthus +C2865461|T191|AB|D22.11|ICD10CM|Melanocytic nevi of right eyelid, including canthus|Melanocytic nevi of right eyelid, including canthus +C2865461|T191|HT|D22.11|ICD10CM|Melanocytic nevi of right eyelid, including canthus|Melanocytic nevi of right eyelid, including canthus +C4554199|T191|AB|D22.111|ICD10CM|Melanocytic nevi of right upper eyelid, including canthus|Melanocytic nevi of right upper eyelid, including canthus +C4554199|T191|PT|D22.111|ICD10CM|Melanocytic nevi of right upper eyelid, including canthus|Melanocytic nevi of right upper eyelid, including canthus +C4554200|T191|AB|D22.112|ICD10CM|Melanocytic nevi of right lower eyelid, including canthus|Melanocytic nevi of right lower eyelid, including canthus +C4554200|T191|PT|D22.112|ICD10CM|Melanocytic nevi of right lower eyelid, including canthus|Melanocytic nevi of right lower eyelid, including canthus +C2865462|T191|AB|D22.12|ICD10CM|Melanocytic nevi of left eyelid, including canthus|Melanocytic nevi of left eyelid, including canthus +C2865462|T191|HT|D22.12|ICD10CM|Melanocytic nevi of left eyelid, including canthus|Melanocytic nevi of left eyelid, including canthus +C4554201|T191|AB|D22.121|ICD10CM|Melanocytic nevi of left upper eyelid, including canthus|Melanocytic nevi of left upper eyelid, including canthus +C4554201|T191|PT|D22.121|ICD10CM|Melanocytic nevi of left upper eyelid, including canthus|Melanocytic nevi of left upper eyelid, including canthus +C4554202|T191|AB|D22.122|ICD10CM|Melanocytic nevi of left lower eyelid, including canthus|Melanocytic nevi of left lower eyelid, including canthus +C4554202|T191|PT|D22.122|ICD10CM|Melanocytic nevi of left lower eyelid, including canthus|Melanocytic nevi of left lower eyelid, including canthus +C0349063|T191|PT|D22.2|ICD10|Melanocytic naevi of ear and external auricular canal|Melanocytic naevi of ear and external auricular canal +C0349063|T191|HT|D22.2|ICD10CM|Melanocytic nevi of ear and external auricular canal|Melanocytic nevi of ear and external auricular canal +C0349063|T191|AB|D22.2|ICD10CM|Melanocytic nevi of ear and external auricular canal|Melanocytic nevi of ear and external auricular canal +C0349063|T191|PT|D22.2|ICD10AE|Melanocytic nevi of ear and external auricular canal|Melanocytic nevi of ear and external auricular canal +C2865463|T191|AB|D22.20|ICD10CM|Melanocytic nevi of unsp ear and external auricular canal|Melanocytic nevi of unsp ear and external auricular canal +C2865463|T191|PT|D22.20|ICD10CM|Melanocytic nevi of unspecified ear and external auricular canal|Melanocytic nevi of unspecified ear and external auricular canal +C2865464|T191|AB|D22.21|ICD10CM|Melanocytic nevi of right ear and external auricular canal|Melanocytic nevi of right ear and external auricular canal +C2865464|T191|PT|D22.21|ICD10CM|Melanocytic nevi of right ear and external auricular canal|Melanocytic nevi of right ear and external auricular canal +C2865465|T191|AB|D22.22|ICD10CM|Melanocytic nevi of left ear and external auricular canal|Melanocytic nevi of left ear and external auricular canal +C2865465|T191|PT|D22.22|ICD10CM|Melanocytic nevi of left ear and external auricular canal|Melanocytic nevi of left ear and external auricular canal +C0349064|T191|PT|D22.3|ICD10|Melanocytic naevi of other and unspecified parts of face|Melanocytic naevi of other and unspecified parts of face +C0349064|T191|PT|D22.3|ICD10AE|Melanocytic nevi of other and unspecified parts of face|Melanocytic nevi of other and unspecified parts of face +C0349064|T191|HT|D22.3|ICD10CM|Melanocytic nevi of other and unspecified parts of face|Melanocytic nevi of other and unspecified parts of face +C0349064|T191|AB|D22.3|ICD10CM|Melanocytic nevi of other and unspecified parts of face|Melanocytic nevi of other and unspecified parts of face +C2865466|T191|AB|D22.30|ICD10CM|Melanocytic nevi of unspecified part of face|Melanocytic nevi of unspecified part of face +C2865466|T191|PT|D22.30|ICD10CM|Melanocytic nevi of unspecified part of face|Melanocytic nevi of unspecified part of face +C2865467|T191|AB|D22.39|ICD10CM|Melanocytic nevi of other parts of face|Melanocytic nevi of other parts of face +C2865467|T191|PT|D22.39|ICD10CM|Melanocytic nevi of other parts of face|Melanocytic nevi of other parts of face +C0349065|T191|PT|D22.4|ICD10|Melanocytic naevi of scalp and neck|Melanocytic naevi of scalp and neck +C0349065|T191|PT|D22.4|ICD10CM|Melanocytic nevi of scalp and neck|Melanocytic nevi of scalp and neck +C0349065|T191|AB|D22.4|ICD10CM|Melanocytic nevi of scalp and neck|Melanocytic nevi of scalp and neck +C0349065|T191|PT|D22.4|ICD10AE|Melanocytic nevi of scalp and neck|Melanocytic nevi of scalp and neck +C0349066|T191|PT|D22.5|ICD10|Melanocytic naevi of trunk|Melanocytic naevi of trunk +C2865468|T191|ET|D22.5|ICD10CM|Melanocytic nevi of anal margin|Melanocytic nevi of anal margin +C2865469|T191|ET|D22.5|ICD10CM|Melanocytic nevi of anal skin|Melanocytic nevi of anal skin +C1290128|T191|ET|D22.5|ICD10CM|Melanocytic nevi of perianal skin|Melanocytic nevi of perianal skin +C1290126|T191|ET|D22.5|ICD10CM|Melanocytic nevi of skin of breast|Melanocytic nevi of skin of breast +C0349066|T191|PT|D22.5|ICD10AE|Melanocytic nevi of trunk|Melanocytic nevi of trunk +C0349066|T191|PT|D22.5|ICD10CM|Melanocytic nevi of trunk|Melanocytic nevi of trunk +C0349066|T191|AB|D22.5|ICD10CM|Melanocytic nevi of trunk|Melanocytic nevi of trunk +C0349067|T191|PT|D22.6|ICD10|Melanocytic naevi of upper limb, including shoulder|Melanocytic naevi of upper limb, including shoulder +C0349067|T191|HT|D22.6|ICD10CM|Melanocytic nevi of upper limb, including shoulder|Melanocytic nevi of upper limb, including shoulder +C0349067|T191|AB|D22.6|ICD10CM|Melanocytic nevi of upper limb, including shoulder|Melanocytic nevi of upper limb, including shoulder +C0349067|T191|PT|D22.6|ICD10AE|Melanocytic nevi of upper limb, including shoulder|Melanocytic nevi of upper limb, including shoulder +C2865470|T191|AB|D22.60|ICD10CM|Melanocytic nevi of unsp upper limb, including shoulder|Melanocytic nevi of unsp upper limb, including shoulder +C2865470|T191|PT|D22.60|ICD10CM|Melanocytic nevi of unspecified upper limb, including shoulder|Melanocytic nevi of unspecified upper limb, including shoulder +C2865471|T191|AB|D22.61|ICD10CM|Melanocytic nevi of right upper limb, including shoulder|Melanocytic nevi of right upper limb, including shoulder +C2865471|T191|PT|D22.61|ICD10CM|Melanocytic nevi of right upper limb, including shoulder|Melanocytic nevi of right upper limb, including shoulder +C2865472|T191|AB|D22.62|ICD10CM|Melanocytic nevi of left upper limb, including shoulder|Melanocytic nevi of left upper limb, including shoulder +C2865472|T191|PT|D22.62|ICD10CM|Melanocytic nevi of left upper limb, including shoulder|Melanocytic nevi of left upper limb, including shoulder +C0349068|T191|PT|D22.7|ICD10|Melanocytic naevi of lower limb, including hip|Melanocytic naevi of lower limb, including hip +C0349068|T191|PT|D22.7|ICD10AE|Melanocytic nevi of lower limb, including hip|Melanocytic nevi of lower limb, including hip +C0349068|T191|HT|D22.7|ICD10CM|Melanocytic nevi of lower limb, including hip|Melanocytic nevi of lower limb, including hip +C0349068|T191|AB|D22.7|ICD10CM|Melanocytic nevi of lower limb, including hip|Melanocytic nevi of lower limb, including hip +C2865473|T191|AB|D22.70|ICD10CM|Melanocytic nevi of unspecified lower limb, including hip|Melanocytic nevi of unspecified lower limb, including hip +C2865473|T191|PT|D22.70|ICD10CM|Melanocytic nevi of unspecified lower limb, including hip|Melanocytic nevi of unspecified lower limb, including hip +C2865474|T191|AB|D22.71|ICD10CM|Melanocytic nevi of right lower limb, including hip|Melanocytic nevi of right lower limb, including hip +C2865474|T191|PT|D22.71|ICD10CM|Melanocytic nevi of right lower limb, including hip|Melanocytic nevi of right lower limb, including hip +C2865475|T191|AB|D22.72|ICD10CM|Melanocytic nevi of left lower limb, including hip|Melanocytic nevi of left lower limb, including hip +C2865475|T191|PT|D22.72|ICD10CM|Melanocytic nevi of left lower limb, including hip|Melanocytic nevi of left lower limb, including hip +C0027962|T191|PT|D22.9|ICD10|Melanocytic naevi, unspecified|Melanocytic naevi, unspecified +C0027962|T191|PT|D22.9|ICD10AE|Melanocytic nevi, unspecified|Melanocytic nevi, unspecified +C0027962|T191|PT|D22.9|ICD10CM|Melanocytic nevi, unspecified|Melanocytic nevi, unspecified +C0027962|T191|AB|D22.9|ICD10CM|Melanocytic nevi, unspecified|Melanocytic nevi, unspecified +C0853031|T191|ET|D23|ICD10CM|benign neoplasm of hair follicles|benign neoplasm of hair follicles +C0684358|T191|ET|D23|ICD10CM|benign neoplasm of sebaceous glands|benign neoplasm of sebaceous glands +C0684354|T191|ET|D23|ICD10CM|benign neoplasm of sweat glands|benign neoplasm of sweat glands +C0496885|T191|AB|D23|ICD10CM|Other benign neoplasms of skin|Other benign neoplasms of skin +C0496885|T191|HT|D23|ICD10CM|Other benign neoplasms of skin|Other benign neoplasms of skin +C0496885|T191|HT|D23|ICD10|Other benign neoplasms of skin|Other benign neoplasms of skin +C0496877|T191|PX|D23.0|ICD10|Other benign neoplasm of skin of lip|Other benign neoplasm of skin of lip +C0496877|T191|PT|D23.0|ICD10CM|Other benign neoplasm of skin of lip|Other benign neoplasm of skin of lip +C0496877|T191|AB|D23.0|ICD10CM|Other benign neoplasm of skin of lip|Other benign neoplasm of skin of lip +C0496877|T191|PS|D23.0|ICD10|Skin of lip|Skin of lip +C0496878|T191|PX|D23.1|ICD10|Other benign neoplasm of skin of eyelid, including canthus|Other benign neoplasm of skin of eyelid, including canthus +C0496878|T191|HT|D23.1|ICD10CM|Other benign neoplasm of skin of eyelid, including canthus|Other benign neoplasm of skin of eyelid, including canthus +C0496878|T191|AB|D23.1|ICD10CM|Other benign neoplasm of skin of eyelid, including canthus|Other benign neoplasm of skin of eyelid, including canthus +C0496878|T191|PS|D23.1|ICD10|Skin of eyelid, including canthus|Skin of eyelid, including canthus +C2865476|T191|AB|D23.10|ICD10CM|Oth benign neoplasm skin/ unsp eyelid, including canthus|Oth benign neoplasm skin/ unsp eyelid, including canthus +C2865476|T191|PT|D23.10|ICD10CM|Other benign neoplasm of skin of unspecified eyelid, including canthus|Other benign neoplasm of skin of unspecified eyelid, including canthus +C2865477|T191|AB|D23.11|ICD10CM|Oth benign neoplasm skin/ right eyelid, including canthus|Oth benign neoplasm skin/ right eyelid, including canthus +C2865477|T191|HT|D23.11|ICD10CM|Other benign neoplasm of skin of right eyelid, including canthus|Other benign neoplasm of skin of right eyelid, including canthus +C4554203|T191|PT|D23.111|ICD10CM|Other benign neoplasm of skin of right upper eyelid, including canthus|Other benign neoplasm of skin of right upper eyelid, including canthus +C4554203|T191|AB|D23.111|ICD10CM|Other benign neoplasm skin/ right upper eyelid, inc canthus|Other benign neoplasm skin/ right upper eyelid, inc canthus +C4554204|T191|PT|D23.112|ICD10CM|Other benign neoplasm of skin of right lower eyelid, including canthus|Other benign neoplasm of skin of right lower eyelid, including canthus +C4554204|T191|AB|D23.112|ICD10CM|Other benign neoplasm skin/ right lower eyelid, inc canthus|Other benign neoplasm skin/ right lower eyelid, inc canthus +C2865478|T191|AB|D23.12|ICD10CM|Oth benign neoplasm skin/ left eyelid, including canthus|Oth benign neoplasm skin/ left eyelid, including canthus +C2865478|T191|HT|D23.12|ICD10CM|Other benign neoplasm of skin of left eyelid, including canthus|Other benign neoplasm of skin of left eyelid, including canthus +C4554205|T191|PT|D23.121|ICD10CM|Other benign neoplasm of skin of left upper eyelid, including canthus|Other benign neoplasm of skin of left upper eyelid, including canthus +C4554205|T191|AB|D23.121|ICD10CM|Other benign neoplasm skin/ left upper eyelid, inc canthus|Other benign neoplasm skin/ left upper eyelid, inc canthus +C4554206|T191|PT|D23.122|ICD10CM|Other benign neoplasm of skin of left lower eyelid, including canthus|Other benign neoplasm of skin of left lower eyelid, including canthus +C4554206|T191|AB|D23.122|ICD10CM|Other benign neoplasm skin/ left lower eyelid, inc canthus|Other benign neoplasm skin/ left lower eyelid, inc canthus +C0496879|T191|AB|D23.2|ICD10CM|Oth benign neoplasm skin/ ear and external auricular canal|Oth benign neoplasm skin/ ear and external auricular canal +C0496879|T191|HT|D23.2|ICD10CM|Other benign neoplasm of skin of ear and external auricular canal|Other benign neoplasm of skin of ear and external auricular canal +C0496879|T191|PX|D23.2|ICD10|Other benign neoplasm of skin of ear and external auricular canal|Other benign neoplasm of skin of ear and external auricular canal +C0496879|T191|PS|D23.2|ICD10|Skin of ear and external auricular canal|Skin of ear and external auricular canal +C2865479|T191|AB|D23.20|ICD10CM|Oth benign neoplasm skin/ unsp ear and external auric canal|Oth benign neoplasm skin/ unsp ear and external auric canal +C2865479|T191|PT|D23.20|ICD10CM|Other benign neoplasm of skin of unspecified ear and external auricular canal|Other benign neoplasm of skin of unspecified ear and external auricular canal +C2865480|T191|AB|D23.21|ICD10CM|Oth benign neoplasm skin/ right ear and external auric canal|Oth benign neoplasm skin/ right ear and external auric canal +C2865480|T191|PT|D23.21|ICD10CM|Other benign neoplasm of skin of right ear and external auricular canal|Other benign neoplasm of skin of right ear and external auricular canal +C2865481|T191|AB|D23.22|ICD10CM|Oth benign neoplasm skin/ left ear and external auric canal|Oth benign neoplasm skin/ left ear and external auric canal +C2865481|T191|PT|D23.22|ICD10CM|Other benign neoplasm of skin of left ear and external auricular canal|Other benign neoplasm of skin of left ear and external auricular canal +C0496880|T191|AB|D23.3|ICD10CM|Oth benign neoplasm of skin of other and unsp parts of face|Oth benign neoplasm of skin of other and unsp parts of face +C0496880|T191|HT|D23.3|ICD10CM|Other benign neoplasm of skin of other and unspecified parts of face|Other benign neoplasm of skin of other and unspecified parts of face +C0496880|T191|PX|D23.3|ICD10|Other benign neoplasm of skin of other and unspecified parts of face|Other benign neoplasm of skin of other and unspecified parts of face +C0496880|T191|PS|D23.3|ICD10|Skin of other and unspecified parts of face|Skin of other and unspecified parts of face +C2865482|T191|AB|D23.30|ICD10CM|Other benign neoplasm of skin of unspecified part of face|Other benign neoplasm of skin of unspecified part of face +C2865482|T191|PT|D23.30|ICD10CM|Other benign neoplasm of skin of unspecified part of face|Other benign neoplasm of skin of unspecified part of face +C2865483|T191|AB|D23.39|ICD10CM|Other benign neoplasm of skin of other parts of face|Other benign neoplasm of skin of other parts of face +C2865483|T191|PT|D23.39|ICD10CM|Other benign neoplasm of skin of other parts of face|Other benign neoplasm of skin of other parts of face +C0496881|T191|PX|D23.4|ICD10|Other benign neoplasm of skin of scalp and neck|Other benign neoplasm of skin of scalp and neck +C0496881|T191|PT|D23.4|ICD10CM|Other benign neoplasm of skin of scalp and neck|Other benign neoplasm of skin of scalp and neck +C0496881|T191|AB|D23.4|ICD10CM|Other benign neoplasm of skin of scalp and neck|Other benign neoplasm of skin of scalp and neck +C0496881|T191|PS|D23.4|ICD10|Skin of scalp and neck|Skin of scalp and neck +C2865484|T191|ET|D23.5|ICD10CM|Other benign neoplasm of anal margin|Other benign neoplasm of anal margin +C2865485|T191|ET|D23.5|ICD10CM|Other benign neoplasm of anal skin|Other benign neoplasm of anal skin +C2865486|T191|ET|D23.5|ICD10CM|Other benign neoplasm of perianal skin|Other benign neoplasm of perianal skin +C2865487|T191|ET|D23.5|ICD10CM|Other benign neoplasm of skin of breast|Other benign neoplasm of skin of breast +C0496882|T191|PX|D23.5|ICD10|Other benign neoplasm of skin of trunk|Other benign neoplasm of skin of trunk +C0496882|T191|PT|D23.5|ICD10CM|Other benign neoplasm of skin of trunk|Other benign neoplasm of skin of trunk +C0496882|T191|AB|D23.5|ICD10CM|Other benign neoplasm of skin of trunk|Other benign neoplasm of skin of trunk +C0496882|T191|PS|D23.5|ICD10|Skin of trunk|Skin of trunk +C0496883|T191|AB|D23.6|ICD10CM|Oth benign neoplasm skin/ upper limb, including shoulder|Oth benign neoplasm skin/ upper limb, including shoulder +C0496883|T191|HT|D23.6|ICD10CM|Other benign neoplasm of skin of upper limb, including shoulder|Other benign neoplasm of skin of upper limb, including shoulder +C0496883|T191|PX|D23.6|ICD10|Other benign neoplasm of skin of upper limb, including shoulder|Other benign neoplasm of skin of upper limb, including shoulder +C0496883|T191|PS|D23.6|ICD10|Skin of upper limb, including shoulder|Skin of upper limb, including shoulder +C2865488|T191|AB|D23.60|ICD10CM|Oth benign neoplasm skin/ unsp upper limb, inc shoulder|Oth benign neoplasm skin/ unsp upper limb, inc shoulder +C2865488|T191|PT|D23.60|ICD10CM|Other benign neoplasm of skin of unspecified upper limb, including shoulder|Other benign neoplasm of skin of unspecified upper limb, including shoulder +C2865489|T191|AB|D23.61|ICD10CM|Oth benign neoplasm skin/ right upper limb, inc shoulder|Oth benign neoplasm skin/ right upper limb, inc shoulder +C2865489|T191|PT|D23.61|ICD10CM|Other benign neoplasm of skin of right upper limb, including shoulder|Other benign neoplasm of skin of right upper limb, including shoulder +C2865490|T191|AB|D23.62|ICD10CM|Oth benign neoplasm skin/ left upper limb, inc shoulder|Oth benign neoplasm skin/ left upper limb, inc shoulder +C2865490|T191|PT|D23.62|ICD10CM|Other benign neoplasm of skin of left upper limb, including shoulder|Other benign neoplasm of skin of left upper limb, including shoulder +C0496884|T191|PX|D23.7|ICD10|Other benign neoplasm of skin of lower limb, including hip|Other benign neoplasm of skin of lower limb, including hip +C0496884|T191|HT|D23.7|ICD10CM|Other benign neoplasm of skin of lower limb, including hip|Other benign neoplasm of skin of lower limb, including hip +C0496884|T191|AB|D23.7|ICD10CM|Other benign neoplasm of skin of lower limb, including hip|Other benign neoplasm of skin of lower limb, including hip +C0496884|T191|PS|D23.7|ICD10|Skin of lower limb, including hip|Skin of lower limb, including hip +C3263942|T191|AB|D23.70|ICD10CM|Oth benign neoplasm skin/ unsp lower limb, including hip|Oth benign neoplasm skin/ unsp lower limb, including hip +C3263942|T191|PT|D23.70|ICD10CM|Other benign neoplasm of skin of unspecified lower limb, including hip|Other benign neoplasm of skin of unspecified lower limb, including hip +C2865492|T191|AB|D23.71|ICD10CM|Oth benign neoplasm skin/ right lower limb, including hip|Oth benign neoplasm skin/ right lower limb, including hip +C2865492|T191|PT|D23.71|ICD10CM|Other benign neoplasm of skin of right lower limb, including hip|Other benign neoplasm of skin of right lower limb, including hip +C2865493|T191|AB|D23.72|ICD10CM|Oth benign neoplasm skin/ left lower limb, including hip|Oth benign neoplasm skin/ left lower limb, including hip +C2865493|T191|PT|D23.72|ICD10CM|Other benign neoplasm of skin of left lower limb, including hip|Other benign neoplasm of skin of left lower limb, including hip +C0496885|T191|PX|D23.9|ICD10|Other benign neoplasm of skin, unspecified|Other benign neoplasm of skin, unspecified +C0496885|T191|PT|D23.9|ICD10CM|Other benign neoplasm of skin, unspecified|Other benign neoplasm of skin, unspecified +C0496885|T191|AB|D23.9|ICD10CM|Other benign neoplasm of skin, unspecified|Other benign neoplasm of skin, unspecified +C0496885|T191|PS|D23.9|ICD10|Skin, unspecified|Skin, unspecified +C0346156|T191|PT|D24|ICD10|Benign neoplasm of breast|Benign neoplasm of breast +C0346156|T191|HT|D24|ICD10CM|Benign neoplasm of breast|Benign neoplasm of breast +C0346156|T191|AB|D24|ICD10CM|Benign neoplasm of breast|Benign neoplasm of breast +C0865080|T191|ET|D24|ICD10CM|benign neoplasm of connective tissue of breast|benign neoplasm of connective tissue of breast +C0865086|T191|ET|D24|ICD10CM|benign neoplasm of soft parts of breast|benign neoplasm of soft parts of breast +C0178421|T191|ET|D24|ICD10CM|fibroadenoma of breast|fibroadenoma of breast +C2976819|T191|PT|D24.1|ICD10CM|Benign neoplasm of right breast|Benign neoplasm of right breast +C2976819|T191|AB|D24.1|ICD10CM|Benign neoplasm of right breast|Benign neoplasm of right breast +C2976820|T191|PT|D24.2|ICD10CM|Benign neoplasm of left breast|Benign neoplasm of left breast +C2976820|T191|AB|D24.2|ICD10CM|Benign neoplasm of left breast|Benign neoplasm of left breast +C2976821|T191|AB|D24.9|ICD10CM|Benign neoplasm of unspecified breast|Benign neoplasm of unspecified breast +C2976821|T191|PT|D24.9|ICD10CM|Benign neoplasm of unspecified breast|Benign neoplasm of unspecified breast +C0042133|T191|HT|D25|ICD10|Leiomyoma of uterus|Leiomyoma of uterus +C0042133|T191|HT|D25|ICD10CM|Leiomyoma of uterus|Leiomyoma of uterus +C0042133|T191|AB|D25|ICD10CM|Leiomyoma of uterus|Leiomyoma of uterus +C0042133|T191|ET|D25|ICD10CM|uterine fibroid|uterine fibroid +C0042133|T191|ET|D25|ICD10CM|uterine fibromyoma|uterine fibromyoma +C0042133|T191|ET|D25|ICD10CM|uterine myoma|uterine myoma +C0153993|T191|PT|D25.0|ICD10CM|Submucous leiomyoma of uterus|Submucous leiomyoma of uterus +C0153993|T191|AB|D25.0|ICD10CM|Submucous leiomyoma of uterus|Submucous leiomyoma of uterus +C0153993|T191|PT|D25.0|ICD10|Submucous leiomyoma of uterus|Submucous leiomyoma of uterus +C0153994|T191|ET|D25.1|ICD10CM|Interstitial leiomyoma of uterus|Interstitial leiomyoma of uterus +C0153994|T191|PT|D25.1|ICD10CM|Intramural leiomyoma of uterus|Intramural leiomyoma of uterus +C0153994|T191|AB|D25.1|ICD10CM|Intramural leiomyoma of uterus|Intramural leiomyoma of uterus +C0153994|T191|PT|D25.1|ICD10|Intramural leiomyoma of uterus|Intramural leiomyoma of uterus +C0865090|T191|ET|D25.2|ICD10CM|Subperitoneal leiomyoma of uterus|Subperitoneal leiomyoma of uterus +C0153995|T191|PT|D25.2|ICD10|Subserosal leiomyoma of uterus|Subserosal leiomyoma of uterus +C0153995|T191|PT|D25.2|ICD10CM|Subserosal leiomyoma of uterus|Subserosal leiomyoma of uterus +C0153995|T191|AB|D25.2|ICD10CM|Subserosal leiomyoma of uterus|Subserosal leiomyoma of uterus +C0042133|T191|PT|D25.9|ICD10CM|Leiomyoma of uterus, unspecified|Leiomyoma of uterus, unspecified +C0042133|T191|AB|D25.9|ICD10CM|Leiomyoma of uterus, unspecified|Leiomyoma of uterus, unspecified +C0042133|T191|PT|D25.9|ICD10|Leiomyoma of uterus, unspecified|Leiomyoma of uterus, unspecified +C0153996|T191|HT|D26|ICD10|Other benign neoplasms of uterus|Other benign neoplasms of uterus +C0153996|T191|AB|D26|ICD10CM|Other benign neoplasms of uterus|Other benign neoplasms of uterus +C0153996|T191|HT|D26|ICD10CM|Other benign neoplasms of uterus|Other benign neoplasms of uterus +C0496886|T191|PS|D26.0|ICD10|Cervix uteri|Cervix uteri +C0496886|T191|PX|D26.0|ICD10|Other benign neoplasm of cervix uteri|Other benign neoplasm of cervix uteri +C0496886|T191|PT|D26.0|ICD10CM|Other benign neoplasm of cervix uteri|Other benign neoplasm of cervix uteri +C0496886|T191|AB|D26.0|ICD10CM|Other benign neoplasm of cervix uteri|Other benign neoplasm of cervix uteri +C0494197|T191|PS|D26.1|ICD10|Corpus uteri|Corpus uteri +C0494197|T191|PX|D26.1|ICD10|Other benign neoplasm of corpus uteri|Other benign neoplasm of corpus uteri +C0494197|T191|PT|D26.1|ICD10CM|Other benign neoplasm of corpus uteri|Other benign neoplasm of corpus uteri +C0494197|T191|AB|D26.1|ICD10CM|Other benign neoplasm of corpus uteri|Other benign neoplasm of corpus uteri +C0496887|T191|PT|D26.7|ICD10CM|Other benign neoplasm of other parts of uterus|Other benign neoplasm of other parts of uterus +C0496887|T191|AB|D26.7|ICD10CM|Other benign neoplasm of other parts of uterus|Other benign neoplasm of other parts of uterus +C0496887|T191|PX|D26.7|ICD10|Other benign neoplasm of other parts of uterus|Other benign neoplasm of other parts of uterus +C0496887|T191|PS|D26.7|ICD10|Other parts of uterus|Other parts of uterus +C0153996|T191|PT|D26.9|ICD10CM|Other benign neoplasm of uterus, unspecified|Other benign neoplasm of uterus, unspecified +C0153996|T191|AB|D26.9|ICD10CM|Other benign neoplasm of uterus, unspecified|Other benign neoplasm of uterus, unspecified +C0153996|T191|PX|D26.9|ICD10|Other benign neoplasm of uterus, unspecified|Other benign neoplasm of uterus, unspecified +C0153996|T191|PS|D26.9|ICD10|Uterus, unspecified|Uterus, unspecified +C0004997|T191|PT|D27|ICD10|Benign neoplasm of ovary|Benign neoplasm of ovary +C0004997|T191|HT|D27|ICD10CM|Benign neoplasm of ovary|Benign neoplasm of ovary +C0004997|T191|AB|D27|ICD10CM|Benign neoplasm of ovary|Benign neoplasm of ovary +C2869505|T191|PT|D27.0|ICD10CM|Benign neoplasm of right ovary|Benign neoplasm of right ovary +C2869505|T191|AB|D27.0|ICD10CM|Benign neoplasm of right ovary|Benign neoplasm of right ovary +C2869506|T191|PT|D27.1|ICD10CM|Benign neoplasm of left ovary|Benign neoplasm of left ovary +C2869506|T191|AB|D27.1|ICD10CM|Benign neoplasm of left ovary|Benign neoplasm of left ovary +C2869507|T191|AB|D27.9|ICD10CM|Benign neoplasm of unspecified ovary|Benign neoplasm of unspecified ovary +C2869507|T191|PT|D27.9|ICD10CM|Benign neoplasm of unspecified ovary|Benign neoplasm of unspecified ovary +C0206677|T191|ET|D28|ICD10CM|adenomatous polyp|adenomatous polyp +C0154000|T191|AB|D28|ICD10CM|Benign neoplasm of other and unsp female genital organs|Benign neoplasm of other and unsp female genital organs +C0154000|T191|HT|D28|ICD10CM|Benign neoplasm of other and unspecified female genital organs|Benign neoplasm of other and unspecified female genital organs +C0154000|T191|HT|D28|ICD10|Benign neoplasm of other and unspecified female genital organs|Benign neoplasm of other and unspecified female genital organs +C4290085|T191|ET|D28|ICD10CM|benign neoplasm of skin of female genital organs|benign neoplasm of skin of female genital organs +C1879828|T191|ET|D28|ICD10CM|benign teratoma|benign teratoma +C0154003|T191|PX|D28.0|ICD10|Benign neoplasm of vulva|Benign neoplasm of vulva +C0154003|T191|PT|D28.0|ICD10CM|Benign neoplasm of vulva|Benign neoplasm of vulva +C0154003|T191|AB|D28.0|ICD10CM|Benign neoplasm of vulva|Benign neoplasm of vulva +C0154003|T191|PS|D28.0|ICD10|Vulva|Vulva +C0154002|T191|PX|D28.1|ICD10|Benign neoplasm of vagina|Benign neoplasm of vagina +C0154002|T191|PT|D28.1|ICD10CM|Benign neoplasm of vagina|Benign neoplasm of vagina +C0154002|T191|AB|D28.1|ICD10CM|Benign neoplasm of vagina|Benign neoplasm of vagina +C0154002|T191|PS|D28.1|ICD10|Vagina|Vagina +C0346190|T191|ET|D28.2|ICD10CM|Benign neoplasm of fallopian tube|Benign neoplasm of fallopian tube +C2869509|T191|ET|D28.2|ICD10CM|Benign neoplasm of uterine ligament (broad) (round)|Benign neoplasm of uterine ligament (broad) (round) +C0496889|T191|PT|D28.2|ICD10CM|Benign neoplasm of uterine tubes and ligaments|Benign neoplasm of uterine tubes and ligaments +C0496889|T191|AB|D28.2|ICD10CM|Benign neoplasm of uterine tubes and ligaments|Benign neoplasm of uterine tubes and ligaments +C0496889|T191|PX|D28.2|ICD10|Benign neoplasm of uterine tubes and ligaments|Benign neoplasm of uterine tubes and ligaments +C0496889|T191|PS|D28.2|ICD10|Uterine tubes and ligaments|Uterine tubes and ligaments +C0154004|T191|PT|D28.7|ICD10CM|Benign neoplasm of other specified female genital organs|Benign neoplasm of other specified female genital organs +C0154004|T191|AB|D28.7|ICD10CM|Benign neoplasm of other specified female genital organs|Benign neoplasm of other specified female genital organs +C0154004|T191|PX|D28.7|ICD10|Benign neoplasm of other specified female genital organs|Benign neoplasm of other specified female genital organs +C0154004|T191|PS|D28.7|ICD10|Other specified female genital organs|Other specified female genital organs +C0154005|T191|PX|D28.9|ICD10|Benign neoplasm of female genital organ, unspecified|Benign neoplasm of female genital organ, unspecified +C0154005|T191|PT|D28.9|ICD10CM|Benign neoplasm of female genital organ, unspecified|Benign neoplasm of female genital organ, unspecified +C0154005|T191|AB|D28.9|ICD10CM|Benign neoplasm of female genital organ, unspecified|Benign neoplasm of female genital organ, unspecified +C0154005|T191|PS|D28.9|ICD10|Female genital organ, unspecified|Female genital organ, unspecified +C0496891|T191|HT|D29|ICD10|Benign neoplasm of male genital organs|Benign neoplasm of male genital organs +C0496891|T191|HT|D29|ICD10CM|Benign neoplasm of male genital organs|Benign neoplasm of male genital organs +C0496891|T191|AB|D29|ICD10CM|Benign neoplasm of male genital organs|Benign neoplasm of male genital organs +C4290086|T191|ET|D29|ICD10CM|benign neoplasm of skin of male genital organs|benign neoplasm of skin of male genital organs +C0149627|T191|PX|D29.0|ICD10|Benign neoplasm of penis|Benign neoplasm of penis +C0149627|T191|PT|D29.0|ICD10CM|Benign neoplasm of penis|Benign neoplasm of penis +C0149627|T191|AB|D29.0|ICD10CM|Benign neoplasm of penis|Benign neoplasm of penis +C0149627|T191|PS|D29.0|ICD10|Penis|Penis +C0154009|T191|PX|D29.1|ICD10|Benign neoplasm of prostate|Benign neoplasm of prostate +C0154009|T191|PT|D29.1|ICD10CM|Benign neoplasm of prostate|Benign neoplasm of prostate +C0154009|T191|AB|D29.1|ICD10CM|Benign neoplasm of prostate|Benign neoplasm of prostate +C0154009|T191|PS|D29.1|ICD10|Prostate|Prostate +C0154007|T191|PX|D29.2|ICD10|Benign neoplasm of testis|Benign neoplasm of testis +C0154007|T191|HT|D29.2|ICD10CM|Benign neoplasm of testis|Benign neoplasm of testis +C0154007|T191|AB|D29.2|ICD10CM|Benign neoplasm of testis|Benign neoplasm of testis +C0154007|T191|PS|D29.2|ICD10|Testis|Testis +C2869511|T191|AB|D29.20|ICD10CM|Benign neoplasm of unspecified testis|Benign neoplasm of unspecified testis +C2869511|T191|PT|D29.20|ICD10CM|Benign neoplasm of unspecified testis|Benign neoplasm of unspecified testis +C2869512|T191|PT|D29.21|ICD10CM|Benign neoplasm of right testis|Benign neoplasm of right testis +C2869512|T191|AB|D29.21|ICD10CM|Benign neoplasm of right testis|Benign neoplasm of right testis +C2869513|T191|PT|D29.22|ICD10CM|Benign neoplasm of left testis|Benign neoplasm of left testis +C2869513|T191|AB|D29.22|ICD10CM|Benign neoplasm of left testis|Benign neoplasm of left testis +C0154010|T191|PX|D29.3|ICD10|Benign neoplasm of epididymis|Benign neoplasm of epididymis +C0154010|T191|HT|D29.3|ICD10CM|Benign neoplasm of epididymis|Benign neoplasm of epididymis +C0154010|T191|AB|D29.3|ICD10CM|Benign neoplasm of epididymis|Benign neoplasm of epididymis +C0154010|T191|PS|D29.3|ICD10|Epididymis|Epididymis +C2869514|T191|AB|D29.30|ICD10CM|Benign neoplasm of unspecified epididymis|Benign neoplasm of unspecified epididymis +C2869514|T191|PT|D29.30|ICD10CM|Benign neoplasm of unspecified epididymis|Benign neoplasm of unspecified epididymis +C2869515|T191|PT|D29.31|ICD10CM|Benign neoplasm of right epididymis|Benign neoplasm of right epididymis +C2869515|T191|AB|D29.31|ICD10CM|Benign neoplasm of right epididymis|Benign neoplasm of right epididymis +C2869516|T191|PT|D29.32|ICD10CM|Benign neoplasm of left epididymis|Benign neoplasm of left epididymis +C2869516|T191|AB|D29.32|ICD10CM|Benign neoplasm of left epididymis|Benign neoplasm of left epididymis +C0154011|T191|PX|D29.4|ICD10|Benign neoplasm of scrotum|Benign neoplasm of scrotum +C0154011|T191|PT|D29.4|ICD10CM|Benign neoplasm of scrotum|Benign neoplasm of scrotum +C0154011|T191|AB|D29.4|ICD10CM|Benign neoplasm of scrotum|Benign neoplasm of scrotum +C0346244|T191|ET|D29.4|ICD10CM|Benign neoplasm of skin of scrotum|Benign neoplasm of skin of scrotum +C0154011|T191|PS|D29.4|ICD10|Scrotum|Scrotum +C0347502|T191|PX|D29.7|ICD10|Benign neoplasm of other male genital organs|Benign neoplasm of other male genital organs +C0347502|T191|PS|D29.7|ICD10|Other male genital organs|Other male genital organs +C2976823|T191|AB|D29.8|ICD10CM|Benign neoplasm of other specified male genital organs|Benign neoplasm of other specified male genital organs +C2976823|T191|PT|D29.8|ICD10CM|Benign neoplasm of other specified male genital organs|Benign neoplasm of other specified male genital organs +C0346217|T191|ET|D29.8|ICD10CM|Benign neoplasm of seminal vesicle|Benign neoplasm of seminal vesicle +C0346245|T191|ET|D29.8|ICD10CM|Benign neoplasm of spermatic cord|Benign neoplasm of spermatic cord +C2976822|T191|ET|D29.8|ICD10CM|Benign neoplasm of tunica vaginalis|Benign neoplasm of tunica vaginalis +C0496891|T191|PT|D29.9|ICD10CM|Benign neoplasm of male genital organ, unspecified|Benign neoplasm of male genital organ, unspecified +C0496891|T191|AB|D29.9|ICD10CM|Benign neoplasm of male genital organ, unspecified|Benign neoplasm of male genital organ, unspecified +C0496891|T191|PX|D29.9|ICD10|Benign neoplasm of male genital organ, unspecified|Benign neoplasm of male genital organ, unspecified +C0496891|T191|PS|D29.9|ICD10|Male genital organ, unspecified|Male genital organ, unspecified +C0496893|T191|HT|D30|ICD10|Benign neoplasm of urinary organs|Benign neoplasm of urinary organs +C0496893|T191|AB|D30|ICD10CM|Benign neoplasm of urinary organs|Benign neoplasm of urinary organs +C0496893|T191|HT|D30|ICD10CM|Benign neoplasm of urinary organs|Benign neoplasm of urinary organs +C0496892|T191|HT|D30.0|ICD10CM|Benign neoplasm of kidney|Benign neoplasm of kidney +C0496892|T191|AB|D30.0|ICD10CM|Benign neoplasm of kidney|Benign neoplasm of kidney +C0496892|T191|PX|D30.0|ICD10|Benign neoplasm of kidney|Benign neoplasm of kidney +C0496892|T191|PS|D30.0|ICD10|Kidney|Kidney +C2869518|T191|AB|D30.00|ICD10CM|Benign neoplasm of unspecified kidney|Benign neoplasm of unspecified kidney +C2869518|T191|PT|D30.00|ICD10CM|Benign neoplasm of unspecified kidney|Benign neoplasm of unspecified kidney +C2869519|T191|PT|D30.01|ICD10CM|Benign neoplasm of right kidney|Benign neoplasm of right kidney +C2869519|T191|AB|D30.01|ICD10CM|Benign neoplasm of right kidney|Benign neoplasm of right kidney +C2869520|T191|PT|D30.02|ICD10CM|Benign neoplasm of left kidney|Benign neoplasm of left kidney +C2869520|T191|AB|D30.02|ICD10CM|Benign neoplasm of left kidney|Benign neoplasm of left kidney +C0154015|T191|HT|D30.1|ICD10CM|Benign neoplasm of renal pelvis|Benign neoplasm of renal pelvis +C0154015|T191|AB|D30.1|ICD10CM|Benign neoplasm of renal pelvis|Benign neoplasm of renal pelvis +C0154015|T191|PX|D30.1|ICD10|Benign neoplasm of renal pelvis|Benign neoplasm of renal pelvis +C0154015|T191|PS|D30.1|ICD10|Renal pelvis|Renal pelvis +C2869521|T191|AB|D30.10|ICD10CM|Benign neoplasm of unspecified renal pelvis|Benign neoplasm of unspecified renal pelvis +C2869521|T191|PT|D30.10|ICD10CM|Benign neoplasm of unspecified renal pelvis|Benign neoplasm of unspecified renal pelvis +C2869522|T191|PT|D30.11|ICD10CM|Benign neoplasm of right renal pelvis|Benign neoplasm of right renal pelvis +C2869522|T191|AB|D30.11|ICD10CM|Benign neoplasm of right renal pelvis|Benign neoplasm of right renal pelvis +C2869523|T191|PT|D30.12|ICD10CM|Benign neoplasm of left renal pelvis|Benign neoplasm of left renal pelvis +C2869523|T191|AB|D30.12|ICD10CM|Benign neoplasm of left renal pelvis|Benign neoplasm of left renal pelvis +C0154016|T191|PX|D30.2|ICD10|Benign neoplasm of ureter|Benign neoplasm of ureter +C0154016|T191|HT|D30.2|ICD10CM|Benign neoplasm of ureter|Benign neoplasm of ureter +C0154016|T191|AB|D30.2|ICD10CM|Benign neoplasm of ureter|Benign neoplasm of ureter +C0154016|T191|PS|D30.2|ICD10|Ureter|Ureter +C2869524|T191|AB|D30.20|ICD10CM|Benign neoplasm of unspecified ureter|Benign neoplasm of unspecified ureter +C2869524|T191|PT|D30.20|ICD10CM|Benign neoplasm of unspecified ureter|Benign neoplasm of unspecified ureter +C2869525|T191|PT|D30.21|ICD10CM|Benign neoplasm of right ureter|Benign neoplasm of right ureter +C2869525|T191|AB|D30.21|ICD10CM|Benign neoplasm of right ureter|Benign neoplasm of right ureter +C2869526|T191|PT|D30.22|ICD10CM|Benign neoplasm of left ureter|Benign neoplasm of left ureter +C2869526|T191|AB|D30.22|ICD10CM|Benign neoplasm of left ureter|Benign neoplasm of left ureter +C0154017|T191|PX|D30.3|ICD10|Benign neoplasm of bladder|Benign neoplasm of bladder +C0154017|T191|PT|D30.3|ICD10CM|Benign neoplasm of bladder|Benign neoplasm of bladder +C0154017|T191|AB|D30.3|ICD10CM|Benign neoplasm of bladder|Benign neoplasm of bladder +C2869527|T191|ET|D30.3|ICD10CM|Benign neoplasm of ureteric orifice of bladder|Benign neoplasm of ureteric orifice of bladder +C2869528|T191|ET|D30.3|ICD10CM|Benign neoplasm of urethral orifice of bladder|Benign neoplasm of urethral orifice of bladder +C0154017|T191|PS|D30.3|ICD10|Bladder|Bladder +C0154019|T191|PX|D30.4|ICD10|Benign neoplasm of urethra|Benign neoplasm of urethra +C0154019|T191|PT|D30.4|ICD10CM|Benign neoplasm of urethra|Benign neoplasm of urethra +C0154019|T191|AB|D30.4|ICD10CM|Benign neoplasm of urethra|Benign neoplasm of urethra +C0154019|T191|PS|D30.4|ICD10|Urethra|Urethra +C0348418|T191|PX|D30.7|ICD10|Benign neoplasm of other urinary organs|Benign neoplasm of other urinary organs +C0348418|T191|PS|D30.7|ICD10|Other urinary organs|Other urinary organs +C0347506|T191|AB|D30.8|ICD10CM|Benign neoplasm of other specified urinary organs|Benign neoplasm of other specified urinary organs +C0347506|T191|PT|D30.8|ICD10CM|Benign neoplasm of other specified urinary organs|Benign neoplasm of other specified urinary organs +C0346283|T191|ET|D30.8|ICD10CM|Benign neoplasm of paraurethral glands|Benign neoplasm of paraurethral glands +C0496893|T191|PX|D30.9|ICD10|Benign neoplasm of urinary organ, unspecified|Benign neoplasm of urinary organ, unspecified +C0496893|T191|PT|D30.9|ICD10CM|Benign neoplasm of urinary organ, unspecified|Benign neoplasm of urinary organ, unspecified +C0496893|T191|AB|D30.9|ICD10CM|Benign neoplasm of urinary organ, unspecified|Benign neoplasm of urinary organ, unspecified +C0686167|T191|ET|D30.9|ICD10CM|Benign neoplasm of urinary system NOS|Benign neoplasm of urinary system NOS +C0496893|T191|PS|D30.9|ICD10|Urinary organ, unspecified|Urinary organ, unspecified +C0494199|T191|HT|D31|ICD10|Benign neoplasm of eye and adnexa|Benign neoplasm of eye and adnexa +C0494199|T191|AB|D31|ICD10CM|Benign neoplasm of eye and adnexa|Benign neoplasm of eye and adnexa +C0494199|T191|HT|D31|ICD10CM|Benign neoplasm of eye and adnexa|Benign neoplasm of eye and adnexa +C0154025|T191|PX|D31.0|ICD10|Benign neoplasm of conjunctiva|Benign neoplasm of conjunctiva +C0154025|T191|HT|D31.0|ICD10CM|Benign neoplasm of conjunctiva|Benign neoplasm of conjunctiva +C0154025|T191|AB|D31.0|ICD10CM|Benign neoplasm of conjunctiva|Benign neoplasm of conjunctiva +C0154025|T191|PS|D31.0|ICD10|Conjunctiva|Conjunctiva +C2869529|T191|AB|D31.00|ICD10CM|Benign neoplasm of unspecified conjunctiva|Benign neoplasm of unspecified conjunctiva +C2869529|T191|PT|D31.00|ICD10CM|Benign neoplasm of unspecified conjunctiva|Benign neoplasm of unspecified conjunctiva +C2869530|T191|PT|D31.01|ICD10CM|Benign neoplasm of right conjunctiva|Benign neoplasm of right conjunctiva +C2869530|T191|AB|D31.01|ICD10CM|Benign neoplasm of right conjunctiva|Benign neoplasm of right conjunctiva +C2869531|T191|PT|D31.02|ICD10CM|Benign neoplasm of left conjunctiva|Benign neoplasm of left conjunctiva +C2869531|T191|AB|D31.02|ICD10CM|Benign neoplasm of left conjunctiva|Benign neoplasm of left conjunctiva +C0154026|T191|PX|D31.1|ICD10|Benign neoplasm of cornea|Benign neoplasm of cornea +C0154026|T191|HT|D31.1|ICD10CM|Benign neoplasm of cornea|Benign neoplasm of cornea +C0154026|T191|AB|D31.1|ICD10CM|Benign neoplasm of cornea|Benign neoplasm of cornea +C0154026|T191|PS|D31.1|ICD10|Cornea|Cornea +C2869532|T191|AB|D31.10|ICD10CM|Benign neoplasm of unspecified cornea|Benign neoplasm of unspecified cornea +C2869532|T191|PT|D31.10|ICD10CM|Benign neoplasm of unspecified cornea|Benign neoplasm of unspecified cornea +C2869533|T191|AB|D31.11|ICD10CM|Benign neoplasm of right cornea|Benign neoplasm of right cornea +C2869533|T191|PT|D31.11|ICD10CM|Benign neoplasm of right cornea|Benign neoplasm of right cornea +C2869534|T191|AB|D31.12|ICD10CM|Benign neoplasm of left cornea|Benign neoplasm of left cornea +C2869534|T191|PT|D31.12|ICD10CM|Benign neoplasm of left cornea|Benign neoplasm of left cornea +C0154027|T191|PX|D31.2|ICD10|Benign neoplasm of retina|Benign neoplasm of retina +C0154027|T191|HT|D31.2|ICD10CM|Benign neoplasm of retina|Benign neoplasm of retina +C0154027|T191|AB|D31.2|ICD10CM|Benign neoplasm of retina|Benign neoplasm of retina +C0154027|T191|PS|D31.2|ICD10|Retina|Retina +C2869535|T191|AB|D31.20|ICD10CM|Benign neoplasm of unspecified retina|Benign neoplasm of unspecified retina +C2869535|T191|PT|D31.20|ICD10CM|Benign neoplasm of unspecified retina|Benign neoplasm of unspecified retina +C2869536|T191|PT|D31.21|ICD10CM|Benign neoplasm of right retina|Benign neoplasm of right retina +C2869536|T191|AB|D31.21|ICD10CM|Benign neoplasm of right retina|Benign neoplasm of right retina +C2869537|T191|PT|D31.22|ICD10CM|Benign neoplasm of left retina|Benign neoplasm of left retina +C2869537|T191|AB|D31.22|ICD10CM|Benign neoplasm of left retina|Benign neoplasm of left retina +C0154028|T191|PX|D31.3|ICD10|Benign neoplasm of choroid|Benign neoplasm of choroid +C0154028|T191|HT|D31.3|ICD10CM|Benign neoplasm of choroid|Benign neoplasm of choroid +C0154028|T191|AB|D31.3|ICD10CM|Benign neoplasm of choroid|Benign neoplasm of choroid +C0154028|T191|PS|D31.3|ICD10|Choroid|Choroid +C2869538|T191|AB|D31.30|ICD10CM|Benign neoplasm of unspecified choroid|Benign neoplasm of unspecified choroid +C2869538|T191|PT|D31.30|ICD10CM|Benign neoplasm of unspecified choroid|Benign neoplasm of unspecified choroid +C2869539|T191|AB|D31.31|ICD10CM|Benign neoplasm of right choroid|Benign neoplasm of right choroid +C2869539|T191|PT|D31.31|ICD10CM|Benign neoplasm of right choroid|Benign neoplasm of right choroid +C2869540|T191|PT|D31.32|ICD10CM|Benign neoplasm of left choroid|Benign neoplasm of left choroid +C2869540|T191|AB|D31.32|ICD10CM|Benign neoplasm of left choroid|Benign neoplasm of left choroid +C0496894|T191|HT|D31.4|ICD10CM|Benign neoplasm of ciliary body|Benign neoplasm of ciliary body +C0496894|T191|AB|D31.4|ICD10CM|Benign neoplasm of ciliary body|Benign neoplasm of ciliary body +C0496894|T191|PX|D31.4|ICD10|Benign neoplasm of ciliary body|Benign neoplasm of ciliary body +C0496894|T191|PS|D31.4|ICD10|Ciliary body|Ciliary body +C2869541|T191|AB|D31.40|ICD10CM|Benign neoplasm of unspecified ciliary body|Benign neoplasm of unspecified ciliary body +C2869541|T191|PT|D31.40|ICD10CM|Benign neoplasm of unspecified ciliary body|Benign neoplasm of unspecified ciliary body +C2869542|T191|AB|D31.41|ICD10CM|Benign neoplasm of right ciliary body|Benign neoplasm of right ciliary body +C2869542|T191|PT|D31.41|ICD10CM|Benign neoplasm of right ciliary body|Benign neoplasm of right ciliary body +C2869543|T191|AB|D31.42|ICD10CM|Benign neoplasm of left ciliary body|Benign neoplasm of left ciliary body +C2869543|T191|PT|D31.42|ICD10CM|Benign neoplasm of left ciliary body|Benign neoplasm of left ciliary body +C0496895|T191|PX|D31.5|ICD10|Benign neoplasm of lacrimal gland and duct|Benign neoplasm of lacrimal gland and duct +C0496895|T191|HT|D31.5|ICD10CM|Benign neoplasm of lacrimal gland and duct|Benign neoplasm of lacrimal gland and duct +C0496895|T191|AB|D31.5|ICD10CM|Benign neoplasm of lacrimal gland and duct|Benign neoplasm of lacrimal gland and duct +C1282218|T191|ET|D31.5|ICD10CM|Benign neoplasm of lacrimal sac|Benign neoplasm of lacrimal sac +C0347521|T191|ET|D31.5|ICD10CM|Benign neoplasm of nasolacrimal duct|Benign neoplasm of nasolacrimal duct +C0496895|T191|PS|D31.5|ICD10|Lacrimal gland and duct|Lacrimal gland and duct +C2869544|T191|AB|D31.50|ICD10CM|Benign neoplasm of unspecified lacrimal gland and duct|Benign neoplasm of unspecified lacrimal gland and duct +C2869544|T191|PT|D31.50|ICD10CM|Benign neoplasm of unspecified lacrimal gland and duct|Benign neoplasm of unspecified lacrimal gland and duct +C2869545|T191|AB|D31.51|ICD10CM|Benign neoplasm of right lacrimal gland and duct|Benign neoplasm of right lacrimal gland and duct +C2869545|T191|PT|D31.51|ICD10CM|Benign neoplasm of right lacrimal gland and duct|Benign neoplasm of right lacrimal gland and duct +C2869546|T191|AB|D31.52|ICD10CM|Benign neoplasm of left lacrimal gland and duct|Benign neoplasm of left lacrimal gland and duct +C2869546|T191|PT|D31.52|ICD10CM|Benign neoplasm of left lacrimal gland and duct|Benign neoplasm of left lacrimal gland and duct +C2103040|T191|ET|D31.6|ICD10CM|Benign neoplasm of connective tissue of orbit|Benign neoplasm of connective tissue of orbit +C2869547|T191|ET|D31.6|ICD10CM|Benign neoplasm of extraocular muscle|Benign neoplasm of extraocular muscle +C0154023|T191|PX|D31.6|ICD10|Benign neoplasm of orbit, unspecified|Benign neoplasm of orbit, unspecified +C2103063|T191|ET|D31.6|ICD10CM|Benign neoplasm of peripheral nerves of orbit|Benign neoplasm of peripheral nerves of orbit +C2869548|T191|ET|D31.6|ICD10CM|Benign neoplasm of retro-ocular tissue|Benign neoplasm of retro-ocular tissue +C2869549|T191|ET|D31.6|ICD10CM|Benign neoplasm of retrobulbar tissue|Benign neoplasm of retrobulbar tissue +C0154023|T191|AB|D31.6|ICD10CM|Benign neoplasm of unspecified site of orbit|Benign neoplasm of unspecified site of orbit +C0154023|T191|HT|D31.6|ICD10CM|Benign neoplasm of unspecified site of orbit|Benign neoplasm of unspecified site of orbit +C0154023|T191|PS|D31.6|ICD10|Orbit, unspecified|Orbit, unspecified +C2869550|T191|AB|D31.60|ICD10CM|Benign neoplasm of unspecified site of unspecified orbit|Benign neoplasm of unspecified site of unspecified orbit +C2869550|T191|PT|D31.60|ICD10CM|Benign neoplasm of unspecified site of unspecified orbit|Benign neoplasm of unspecified site of unspecified orbit +C2869551|T191|AB|D31.61|ICD10CM|Benign neoplasm of unspecified site of right orbit|Benign neoplasm of unspecified site of right orbit +C2869551|T191|PT|D31.61|ICD10CM|Benign neoplasm of unspecified site of right orbit|Benign neoplasm of unspecified site of right orbit +C2869552|T191|AB|D31.62|ICD10CM|Benign neoplasm of unspecified site of left orbit|Benign neoplasm of unspecified site of left orbit +C2869552|T191|PT|D31.62|ICD10CM|Benign neoplasm of unspecified site of left orbit|Benign neoplasm of unspecified site of left orbit +C0496897|T191|PX|D31.9|ICD10|Benign neoplasm of eye, unspecified|Benign neoplasm of eye, unspecified +C0496897|T191|ET|D31.9|ICD10CM|Benign neoplasm of eyeball|Benign neoplasm of eyeball +C0496897|T191|AB|D31.9|ICD10CM|Benign neoplasm of unspecified part of eye|Benign neoplasm of unspecified part of eye +C0496897|T191|HT|D31.9|ICD10CM|Benign neoplasm of unspecified part of eye|Benign neoplasm of unspecified part of eye +C0496897|T191|PS|D31.9|ICD10|Eye, unspecified|Eye, unspecified +C2869553|T191|AB|D31.90|ICD10CM|Benign neoplasm of unspecified part of unspecified eye|Benign neoplasm of unspecified part of unspecified eye +C2869553|T191|PT|D31.90|ICD10CM|Benign neoplasm of unspecified part of unspecified eye|Benign neoplasm of unspecified part of unspecified eye +C2869554|T191|AB|D31.91|ICD10CM|Benign neoplasm of unspecified part of right eye|Benign neoplasm of unspecified part of right eye +C2869554|T191|PT|D31.91|ICD10CM|Benign neoplasm of unspecified part of right eye|Benign neoplasm of unspecified part of right eye +C2869555|T191|AB|D31.92|ICD10CM|Benign neoplasm of unspecified part of left eye|Benign neoplasm of unspecified part of left eye +C2869555|T191|PT|D31.92|ICD10CM|Benign neoplasm of unspecified part of left eye|Benign neoplasm of unspecified part of left eye +C0348426|T191|HT|D32|ICD10|Benign neoplasm of meninges|Benign neoplasm of meninges +C0348426|T191|HT|D32|ICD10CM|Benign neoplasm of meninges|Benign neoplasm of meninges +C0348426|T191|AB|D32|ICD10CM|Benign neoplasm of meninges|Benign neoplasm of meninges +C0154033|T191|PX|D32.0|ICD10|Benign neoplasm of cerebral meninges|Benign neoplasm of cerebral meninges +C0154033|T191|PT|D32.0|ICD10CM|Benign neoplasm of cerebral meninges|Benign neoplasm of cerebral meninges +C0154033|T191|AB|D32.0|ICD10CM|Benign neoplasm of cerebral meninges|Benign neoplasm of cerebral meninges +C0154033|T191|PS|D32.0|ICD10|Cerebral meninges|Cerebral meninges +C0154035|T191|PX|D32.1|ICD10|Benign neoplasm of spinal meninges|Benign neoplasm of spinal meninges +C0154035|T191|PT|D32.1|ICD10CM|Benign neoplasm of spinal meninges|Benign neoplasm of spinal meninges +C0154035|T191|AB|D32.1|ICD10CM|Benign neoplasm of spinal meninges|Benign neoplasm of spinal meninges +C0154035|T191|PS|D32.1|ICD10|Spinal meninges|Spinal meninges +C0348426|T191|PX|D32.9|ICD10|Benign neoplasm of meninges, unspecified|Benign neoplasm of meninges, unspecified +C0348426|T191|PT|D32.9|ICD10CM|Benign neoplasm of meninges, unspecified|Benign neoplasm of meninges, unspecified +C0348426|T191|AB|D32.9|ICD10CM|Benign neoplasm of meninges, unspecified|Benign neoplasm of meninges, unspecified +C0348426|T191|PS|D32.9|ICD10|Meninges, unspecified|Meninges, unspecified +C0025286|T191|ET|D32.9|ICD10CM|Meningioma NOS|Meningioma NOS +C0494200|T191|AB|D33|ICD10CM|Benign neoplasm of brain and oth prt central nervous system|Benign neoplasm of brain and oth prt central nervous system +C0494200|T191|HT|D33|ICD10CM|Benign neoplasm of brain and other parts of central nervous system|Benign neoplasm of brain and other parts of central nervous system +C0494200|T191|HT|D33|ICD10|Benign neoplasm of brain and other parts of central nervous system|Benign neoplasm of brain and other parts of central nervous system +C0349059|T191|PT|D33.0|ICD10CM|Benign neoplasm of brain, supratentorial|Benign neoplasm of brain, supratentorial +C0349059|T191|AB|D33.0|ICD10CM|Benign neoplasm of brain, supratentorial|Benign neoplasm of brain, supratentorial +C0349059|T191|PX|D33.0|ICD10|Benign neoplasm of brain, supratentorial|Benign neoplasm of brain, supratentorial +C0686393|T191|ET|D33.0|ICD10CM|Benign neoplasm of cerebral ventricle|Benign neoplasm of cerebral ventricle +C0686378|T191|ET|D33.0|ICD10CM|Benign neoplasm of cerebrum|Benign neoplasm of cerebrum +C0686381|T191|ET|D33.0|ICD10CM|Benign neoplasm of frontal lobe|Benign neoplasm of frontal lobe +C0686390|T191|ET|D33.0|ICD10CM|Benign neoplasm of occipital lobe|Benign neoplasm of occipital lobe +C0686387|T191|ET|D33.0|ICD10CM|Benign neoplasm of parietal lobe|Benign neoplasm of parietal lobe +C0686384|T191|ET|D33.0|ICD10CM|Benign neoplasm of temporal lobe|Benign neoplasm of temporal lobe +C0349059|T191|PS|D33.0|ICD10|Brain, supratentorial|Brain, supratentorial +C0686400|T191|ET|D33.1|ICD10CM|Benign neoplasm of brain stem|Benign neoplasm of brain stem +C0496898|T191|PT|D33.1|ICD10CM|Benign neoplasm of brain, infratentorial|Benign neoplasm of brain, infratentorial +C0496898|T191|AB|D33.1|ICD10CM|Benign neoplasm of brain, infratentorial|Benign neoplasm of brain, infratentorial +C0496898|T191|PX|D33.1|ICD10|Benign neoplasm of brain, infratentorial|Benign neoplasm of brain, infratentorial +C0750995|T191|ET|D33.1|ICD10CM|Benign neoplasm of cerebellum|Benign neoplasm of cerebellum +C2869556|T191|ET|D33.1|ICD10CM|Benign neoplasm of fourth ventricle|Benign neoplasm of fourth ventricle +C0496898|T191|PS|D33.1|ICD10|Brain, infratentorial|Brain, infratentorial +C0496899|T191|PX|D33.2|ICD10|Benign neoplasm of brain, unspecified|Benign neoplasm of brain, unspecified +C0496899|T191|PT|D33.2|ICD10CM|Benign neoplasm of brain, unspecified|Benign neoplasm of brain, unspecified +C0496899|T191|AB|D33.2|ICD10CM|Benign neoplasm of brain, unspecified|Benign neoplasm of brain, unspecified +C0496899|T191|PS|D33.2|ICD10|Brain, unspecified|Brain, unspecified +C0004992|T191|PX|D33.3|ICD10|Benign neoplasm of cranial nerves|Benign neoplasm of cranial nerves +C0004992|T191|PT|D33.3|ICD10CM|Benign neoplasm of cranial nerves|Benign neoplasm of cranial nerves +C0004992|T191|AB|D33.3|ICD10CM|Benign neoplasm of cranial nerves|Benign neoplasm of cranial nerves +C2869557|T191|ET|D33.3|ICD10CM|Benign neoplasm of olfactory bulb|Benign neoplasm of olfactory bulb +C0004992|T191|PS|D33.3|ICD10|Cranial nerves|Cranial nerves +C0154034|T191|PX|D33.4|ICD10|Benign neoplasm of spinal cord|Benign neoplasm of spinal cord +C0154034|T191|PT|D33.4|ICD10CM|Benign neoplasm of spinal cord|Benign neoplasm of spinal cord +C0154034|T191|AB|D33.4|ICD10CM|Benign neoplasm of spinal cord|Benign neoplasm of spinal cord +C0154034|T191|PS|D33.4|ICD10|Spinal cord|Spinal cord +C0348419|T191|AB|D33.7|ICD10CM|Benign neoplasm of oth parts of central nervous system|Benign neoplasm of oth parts of central nervous system +C0348419|T191|PT|D33.7|ICD10CM|Benign neoplasm of other specified parts of central nervous system|Benign neoplasm of other specified parts of central nervous system +C0348419|T191|PX|D33.7|ICD10|Benign neoplasm of other specified parts of central nervous system|Benign neoplasm of other specified parts of central nervous system +C0348419|T191|PS|D33.7|ICD10|Other specified parts of central nervous system|Other specified parts of central nervous system +C0347509|T191|PX|D33.9|ICD10|Benign neoplasm of central nervous system, unspecified|Benign neoplasm of central nervous system, unspecified +C0347509|T191|PT|D33.9|ICD10CM|Benign neoplasm of central nervous system, unspecified|Benign neoplasm of central nervous system, unspecified +C0347509|T191|AB|D33.9|ICD10CM|Benign neoplasm of central nervous system, unspecified|Benign neoplasm of central nervous system, unspecified +C0347509|T191|ET|D33.9|ICD10CM|Benign neoplasm of nervous system (central) NOS|Benign neoplasm of nervous system (central) NOS +C0347509|T191|PS|D33.9|ICD10|Central nervous system, unspecified|Central nervous system, unspecified +C0154038|T191|PT|D34|ICD10|Benign neoplasm of thyroid gland|Benign neoplasm of thyroid gland +C0154038|T191|PT|D34|ICD10CM|Benign neoplasm of thyroid gland|Benign neoplasm of thyroid gland +C0154038|T191|AB|D34|ICD10CM|Benign neoplasm of thyroid gland|Benign neoplasm of thyroid gland +C0494201|T191|AB|D35|ICD10CM|Benign neoplasm of other and unspecified endocrine glands|Benign neoplasm of other and unspecified endocrine glands +C0494201|T191|HT|D35|ICD10CM|Benign neoplasm of other and unspecified endocrine glands|Benign neoplasm of other and unspecified endocrine glands +C0494201|T191|HT|D35|ICD10|Benign neoplasm of other and unspecified endocrine glands|Benign neoplasm of other and unspecified endocrine glands +C0154040|T191|PS|D35.0|ICD10|Adrenal gland|Adrenal gland +C0154040|T191|PX|D35.0|ICD10|Benign neoplasm of adrenal gland|Benign neoplasm of adrenal gland +C0154040|T191|HT|D35.0|ICD10CM|Benign neoplasm of adrenal gland|Benign neoplasm of adrenal gland +C0154040|T191|AB|D35.0|ICD10CM|Benign neoplasm of adrenal gland|Benign neoplasm of adrenal gland +C2869558|T191|AB|D35.00|ICD10CM|Benign neoplasm of unspecified adrenal gland|Benign neoplasm of unspecified adrenal gland +C2869558|T191|PT|D35.00|ICD10CM|Benign neoplasm of unspecified adrenal gland|Benign neoplasm of unspecified adrenal gland +C2869559|T191|PT|D35.01|ICD10CM|Benign neoplasm of right adrenal gland|Benign neoplasm of right adrenal gland +C2869559|T191|AB|D35.01|ICD10CM|Benign neoplasm of right adrenal gland|Benign neoplasm of right adrenal gland +C2869560|T191|PT|D35.02|ICD10CM|Benign neoplasm of left adrenal gland|Benign neoplasm of left adrenal gland +C2869560|T191|AB|D35.02|ICD10CM|Benign neoplasm of left adrenal gland|Benign neoplasm of left adrenal gland +C0154041|T191|PT|D35.1|ICD10CM|Benign neoplasm of parathyroid gland|Benign neoplasm of parathyroid gland +C0154041|T191|AB|D35.1|ICD10CM|Benign neoplasm of parathyroid gland|Benign neoplasm of parathyroid gland +C0154041|T191|PX|D35.1|ICD10|Benign neoplasm of parathyroid gland|Benign neoplasm of parathyroid gland +C0154041|T191|PS|D35.1|ICD10|Parathyroid gland|Parathyroid gland +C0496901|T191|PT|D35.2|ICD10CM|Benign neoplasm of pituitary gland|Benign neoplasm of pituitary gland +C0496901|T191|AB|D35.2|ICD10CM|Benign neoplasm of pituitary gland|Benign neoplasm of pituitary gland +C0496901|T191|PX|D35.2|ICD10|Benign neoplasm of pituitary gland|Benign neoplasm of pituitary gland +C0496901|T191|PS|D35.2|ICD10|Pituitary gland|Pituitary gland +C0496902|T191|PX|D35.3|ICD10|Benign neoplasm of craniopharyngeal duct|Benign neoplasm of craniopharyngeal duct +C0496902|T191|PT|D35.3|ICD10CM|Benign neoplasm of craniopharyngeal duct|Benign neoplasm of craniopharyngeal duct +C0496902|T191|AB|D35.3|ICD10CM|Benign neoplasm of craniopharyngeal duct|Benign neoplasm of craniopharyngeal duct +C0496902|T191|PS|D35.3|ICD10|Craniopharyngeal duct|Craniopharyngeal duct +C0154043|T191|PX|D35.4|ICD10|Benign neoplasm of pineal gland|Benign neoplasm of pineal gland +C0154043|T191|PT|D35.4|ICD10CM|Benign neoplasm of pineal gland|Benign neoplasm of pineal gland +C0154043|T191|AB|D35.4|ICD10CM|Benign neoplasm of pineal gland|Benign neoplasm of pineal gland +C0154043|T191|PS|D35.4|ICD10|Pineal gland|Pineal gland +C0154044|T191|PX|D35.5|ICD10|Benign neoplasm of carotid body|Benign neoplasm of carotid body +C0154044|T191|PT|D35.5|ICD10CM|Benign neoplasm of carotid body|Benign neoplasm of carotid body +C0154044|T191|AB|D35.5|ICD10CM|Benign neoplasm of carotid body|Benign neoplasm of carotid body +C0154044|T191|PS|D35.5|ICD10|Carotid body|Carotid body +C0154045|T191|PS|D35.6|ICD10|Aortic body and other paraganglia|Aortic body and other paraganglia +C0154045|T191|PX|D35.6|ICD10|Benign neoplasm of aortic body and other paraganglia|Benign neoplasm of aortic body and other paraganglia +C0154045|T191|PT|D35.6|ICD10CM|Benign neoplasm of aortic body and other paraganglia|Benign neoplasm of aortic body and other paraganglia +C0154045|T191|AB|D35.6|ICD10CM|Benign neoplasm of aortic body and other paraganglia|Benign neoplasm of aortic body and other paraganglia +C0347860|T191|ET|D35.6|ICD10CM|Benign tumor of glomus jugulare|Benign tumor of glomus jugulare +C0348420|T191|PX|D35.7|ICD10|Benign neoplasm of other specified endocrine glands|Benign neoplasm of other specified endocrine glands +C0348420|T191|PT|D35.7|ICD10CM|Benign neoplasm of other specified endocrine glands|Benign neoplasm of other specified endocrine glands +C0348420|T191|AB|D35.7|ICD10CM|Benign neoplasm of other specified endocrine glands|Benign neoplasm of other specified endocrine glands +C0348420|T191|PS|D35.7|ICD10|Other specified endocrine glands|Other specified endocrine glands +C0349060|T191|PX|D35.8|ICD10|Benign neoplasm of pluriglandular involvement|Benign neoplasm of pluriglandular involvement +C0349060|T191|PS|D35.8|ICD10|Pluriglandular involvement|Pluriglandular involvement +C0347524|T191|PX|D35.9|ICD10|Benign neoplasm of endocrine gland, unspecified|Benign neoplasm of endocrine gland, unspecified +C0347524|T191|PT|D35.9|ICD10CM|Benign neoplasm of endocrine gland, unspecified|Benign neoplasm of endocrine gland, unspecified +C0347524|T191|AB|D35.9|ICD10CM|Benign neoplasm of endocrine gland, unspecified|Benign neoplasm of endocrine gland, unspecified +C0347524|T191|ET|D35.9|ICD10CM|Benign neoplasm of unspecified endocrine gland|Benign neoplasm of unspecified endocrine gland +C0347524|T191|PS|D35.9|ICD10|Endocrine gland, unspecified|Endocrine gland, unspecified +C0154053|T191|HT|D36|ICD10|Benign neoplasm of other and unspecified sites|Benign neoplasm of other and unspecified sites +C0154053|T191|HT|D36|ICD10CM|Benign neoplasm of other and unspecified sites|Benign neoplasm of other and unspecified sites +C0154053|T191|AB|D36|ICD10CM|Benign neoplasm of other and unspecified sites|Benign neoplasm of other and unspecified sites +C0154054|T191|PT|D36.0|ICD10CM|Benign neoplasm of lymph nodes|Benign neoplasm of lymph nodes +C0154054|T191|AB|D36.0|ICD10CM|Benign neoplasm of lymph nodes|Benign neoplasm of lymph nodes +C0154054|T191|PX|D36.0|ICD10|Benign neoplasm of lymph nodes|Benign neoplasm of lymph nodes +C0154054|T191|PS|D36.0|ICD10|Lymph nodes|Lymph nodes +C0349026|T191|PX|D36.1|ICD10|Benign neoplasm of peripheral nerves and autonomic nervous system|Benign neoplasm of peripheral nerves and autonomic nervous system +C0349026|T191|HT|D36.1|ICD10CM|Benign neoplasm of peripheral nerves and autonomic nervous system|Benign neoplasm of peripheral nerves and autonomic nervous system +C0349026|T191|AB|D36.1|ICD10CM|Benign neoplasm of prph nerves and autonomic nervous sys|Benign neoplasm of prph nerves and autonomic nervous sys +C0349026|T191|PS|D36.1|ICD10|Peripheral nerves and autonomic nervous system|Peripheral nerves and autonomic nervous system +C0349026|T191|PT|D36.10|ICD10CM|Benign neoplasm of peripheral nerves and autonomic nervous system, unspecified|Benign neoplasm of peripheral nerves and autonomic nervous system, unspecified +C0349026|T191|AB|D36.10|ICD10CM|Benign neoplasm of prph nerves and autonm nervous sys, unsp|Benign neoplasm of prph nerves and autonm nervous sys, unsp +C2869562|T191|AB|D36.11|ICD10CM|Ben neoplm of prph nerves and autonm nrv sys of face/hed/nk|Ben neoplm of prph nerves and autonm nrv sys of face/hed/nk +C2869562|T191|PT|D36.11|ICD10CM|Benign neoplasm of peripheral nerves and autonomic nervous system of face, head, and neck|Benign neoplasm of peripheral nerves and autonomic nervous system of face, head, and neck +C2869563|T191|AB|D36.12|ICD10CM|Ben neoplm of prph nrv & autonm nrv sys, upr lmb, inc shldr|Ben neoplm of prph nrv & autonm nrv sys, upr lmb, inc shldr +C2869563|T191|PT|D36.12|ICD10CM|Benign neoplasm of peripheral nerves and autonomic nervous system, upper limb, including shoulder|Benign neoplasm of peripheral nerves and autonomic nervous system, upper limb, including shoulder +C2869564|T191|AB|D36.13|ICD10CM|Ben neoplm of prph nrv & autonm nrv sys of low lmb, inc hip|Ben neoplm of prph nrv & autonm nrv sys of low lmb, inc hip +C2869564|T191|PT|D36.13|ICD10CM|Benign neoplasm of peripheral nerves and autonomic nervous system of lower limb, including hip|Benign neoplasm of peripheral nerves and autonomic nervous system of lower limb, including hip +C2869565|T191|PT|D36.14|ICD10CM|Benign neoplasm of peripheral nerves and autonomic nervous system of thorax|Benign neoplasm of peripheral nerves and autonomic nervous system of thorax +C2869565|T191|AB|D36.14|ICD10CM|Benign neoplm of prph nerves and autonm nrv sys of thorax|Benign neoplm of prph nerves and autonm nrv sys of thorax +C2869566|T191|PT|D36.15|ICD10CM|Benign neoplasm of peripheral nerves and autonomic nervous system of abdomen|Benign neoplasm of peripheral nerves and autonomic nervous system of abdomen +C2869566|T191|AB|D36.15|ICD10CM|Benign neoplm of prph nerves and autonm nervous sys of abd|Benign neoplm of prph nerves and autonm nervous sys of abd +C2869567|T191|PT|D36.16|ICD10CM|Benign neoplasm of peripheral nerves and autonomic nervous system of pelvis|Benign neoplasm of peripheral nerves and autonomic nervous system of pelvis +C2869567|T191|AB|D36.16|ICD10CM|Benign neoplm of prph nerves and autonm nrv sys of pelvis|Benign neoplm of prph nerves and autonm nrv sys of pelvis +C2869568|T191|AB|D36.17|ICD10CM|Ben neoplm of prph nerves and autonm nrv sys of trunk, unsp|Ben neoplm of prph nerves and autonm nrv sys of trunk, unsp +C2869568|T191|PT|D36.17|ICD10CM|Benign neoplasm of peripheral nerves and autonomic nervous system of trunk, unspecified|Benign neoplasm of peripheral nerves and autonomic nervous system of trunk, unspecified +C0684834|T191|ET|D36.7|ICD10CM|Benign neoplasm of back NOS|Benign neoplasm of back NOS +C0700069|T191|ET|D36.7|ICD10CM|Benign neoplasm of nose NOS|Benign neoplasm of nose NOS +C0154055|T191|PX|D36.7|ICD10|Benign neoplasm of other specified sites|Benign neoplasm of other specified sites +C0154055|T191|PT|D36.7|ICD10CM|Benign neoplasm of other specified sites|Benign neoplasm of other specified sites +C0154055|T191|AB|D36.7|ICD10CM|Benign neoplasm of other specified sites|Benign neoplasm of other specified sites +C0154055|T191|PS|D36.7|ICD10|Other specified sites|Other specified sites +C0086692|T191|PT|D36.9|ICD10|Benign neoplasm of unspecified site|Benign neoplasm of unspecified site +C0086692|T191|AB|D36.9|ICD10CM|Benign neoplasm, unspecified site|Benign neoplasm, unspecified site +C0086692|T191|PT|D36.9|ICD10CM|Benign neoplasm, unspecified site|Benign neoplasm, unspecified site +C2869569|T191|HT|D37|ICD10CM|Neoplasm of uncertain behavior of oral cavity and digestive organs|Neoplasm of uncertain behavior of oral cavity and digestive organs +C0494202|T191|HT|D37|ICD10AE|Neoplasm of uncertain or unknown behavior of oral cavity and digestive organs|Neoplasm of uncertain or unknown behavior of oral cavity and digestive organs +C0494202|T191|HT|D37|ICD10|Neoplasm of uncertain or unknown behaviour of oral cavity and digestive organs|Neoplasm of uncertain or unknown behaviour of oral cavity and digestive organs +C2869569|T191|AB|D37|ICD10CM|Neoplasm of uncrt behavior of oral cavity and dgstv organs|Neoplasm of uncrt behavior of oral cavity and dgstv organs +C2869570|T191|HT|D37-D48|ICD10CM|Neoplasms of uncertain behavior, polycythemia vera and myelodysplastic syndromes (D37-D48)|Neoplasms of uncertain behavior, polycythemia vera and myelodysplastic syndromes (D37-D48) +C0694450|T191|HT|D37-D48.9|ICD10AE|Neoplasms of uncertain or unknown behavior|Neoplasms of uncertain or unknown behavior +C0694450|T191|HT|D37-D48.9|ICD10|Neoplasms of uncertain or unknown behaviour|Neoplasms of uncertain or unknown behaviour +C0496904|T191|PS|D37.0|ICD10|Lip, oral cavity and pharynx|Lip, oral cavity and pharynx +C0154097|T191|HT|D37.0|ICD10CM|Neoplasm of uncertain behavior of lip, oral cavity and pharynx|Neoplasm of uncertain behavior of lip, oral cavity and pharynx +C0496904|T191|PX|D37.0|ICD10|Neoplasm of uncertain or unknown behavior of lip, oral cavity and pharynx|Neoplasm of uncertain or unknown behavior of lip, oral cavity and pharynx +C0154097|T191|AB|D37.0|ICD10CM|Neoplasm of uncrt behavior of lip, oral cavity and pharynx|Neoplasm of uncrt behavior of lip, oral cavity and pharynx +C0346460|T191|PT|D37.01|ICD10CM|Neoplasm of uncertain behavior of lip|Neoplasm of uncertain behavior of lip +C0346460|T191|AB|D37.01|ICD10CM|Neoplasm of uncertain behavior of lip|Neoplasm of uncertain behavior of lip +C0685945|T191|ET|D37.01|ICD10CM|Neoplasm of uncertain behavior of vermilion border of lip|Neoplasm of uncertain behavior of vermilion border of lip +C0346461|T191|PT|D37.02|ICD10CM|Neoplasm of uncertain behavior of tongue|Neoplasm of uncertain behavior of tongue +C0346461|T191|AB|D37.02|ICD10CM|Neoplasm of uncertain behavior of tongue|Neoplasm of uncertain behavior of tongue +C0154096|T191|AB|D37.03|ICD10CM|Neoplasm of uncertain behavior of the major salivary glands|Neoplasm of uncertain behavior of the major salivary glands +C0154096|T191|HT|D37.03|ICD10CM|Neoplasm of uncertain behavior of the major salivary glands|Neoplasm of uncertain behavior of the major salivary glands +C2869571|T191|AB|D37.030|ICD10CM|Neoplasm of uncertain behavior of the parotid salivary gland|Neoplasm of uncertain behavior of the parotid salivary gland +C2869571|T191|PT|D37.030|ICD10CM|Neoplasm of uncertain behavior of the parotid salivary glands|Neoplasm of uncertain behavior of the parotid salivary glands +C0346456|T191|PT|D37.031|ICD10CM|Neoplasm of uncertain behavior of the sublingual salivary glands|Neoplasm of uncertain behavior of the sublingual salivary glands +C0346456|T191|AB|D37.031|ICD10CM|Neoplasm of uncrt behavior of the sublingual salivary gland|Neoplasm of uncrt behavior of the sublingual salivary gland +C2869573|T191|PT|D37.032|ICD10CM|Neoplasm of uncertain behavior of the submandibular salivary glands|Neoplasm of uncertain behavior of the submandibular salivary glands +C2869573|T191|AB|D37.032|ICD10CM|Neoplasm of uncrt behav of the submandibular salivary gland|Neoplasm of uncrt behav of the submandibular salivary gland +C0154096|T191|PT|D37.039|ICD10CM|Neoplasm of uncertain behavior of the major salivary glands, unspecified|Neoplasm of uncertain behavior of the major salivary glands, unspecified +C0154096|T191|AB|D37.039|ICD10CM|Neoplasm of uncrt behavior of the major salivary gland, unsp|Neoplasm of uncrt behavior of the major salivary gland, unsp +C2869575|T191|ET|D37.04|ICD10CM|Neoplasm of uncertain behavior of submucosal salivary glands of cheek|Neoplasm of uncertain behavior of submucosal salivary glands of cheek +C2869576|T191|ET|D37.04|ICD10CM|Neoplasm of uncertain behavior of submucosal salivary glands of hard palate|Neoplasm of uncertain behavior of submucosal salivary glands of hard palate +C2869577|T191|ET|D37.04|ICD10CM|Neoplasm of uncertain behavior of submucosal salivary glands of lip|Neoplasm of uncertain behavior of submucosal salivary glands of lip +C2869578|T191|ET|D37.04|ICD10CM|Neoplasm of uncertain behavior of submucosal salivary glands of soft palate|Neoplasm of uncertain behavior of submucosal salivary glands of soft palate +C0346462|T191|AB|D37.04|ICD10CM|Neoplasm of uncertain behavior of the minor salivary glands|Neoplasm of uncertain behavior of the minor salivary glands +C0346462|T191|PT|D37.04|ICD10CM|Neoplasm of uncertain behavior of the minor salivary glands|Neoplasm of uncertain behavior of the minor salivary glands +C2869579|T191|ET|D37.05|ICD10CM|Neoplasm of uncertain behavior of aryepiglottic fold of pharynx NOS|Neoplasm of uncertain behavior of aryepiglottic fold of pharynx NOS +C2869580|T191|ET|D37.05|ICD10CM|Neoplasm of uncertain behavior of hypopharyngeal aspect of aryepiglottic fold of pharynx|Neoplasm of uncertain behavior of hypopharyngeal aspect of aryepiglottic fold of pharynx +C2869581|T191|ET|D37.05|ICD10CM|Neoplasm of uncertain behavior of marginal zone of aryepiglottic fold of pharynx|Neoplasm of uncertain behavior of marginal zone of aryepiglottic fold of pharynx +C2242971|T191|PT|D37.05|ICD10CM|Neoplasm of uncertain behavior of pharynx|Neoplasm of uncertain behavior of pharynx +C2242971|T191|AB|D37.05|ICD10CM|Neoplasm of uncertain behavior of pharynx|Neoplasm of uncertain behavior of pharynx +C2869582|T191|PT|D37.09|ICD10CM|Neoplasm of uncertain behavior of other specified sites of the oral cavity|Neoplasm of uncertain behavior of other specified sites of the oral cavity +C2869582|T191|AB|D37.09|ICD10CM|Neoplasm of uncertain behavior of sites of the oral cavity|Neoplasm of uncertain behavior of sites of the oral cavity +C0496905|T191|PT|D37.1|ICD10CM|Neoplasm of uncertain behavior of stomach|Neoplasm of uncertain behavior of stomach +C0496905|T191|AB|D37.1|ICD10CM|Neoplasm of uncertain behavior of stomach|Neoplasm of uncertain behavior of stomach +C0496905|T191|PX|D37.1|ICD10|Neoplasm of uncertain or unknown behavior of stomach|Neoplasm of uncertain or unknown behavior of stomach +C0496905|T191|PS|D37.1|ICD10|Stomach|Stomach +C0496906|T191|PT|D37.2|ICD10CM|Neoplasm of uncertain behavior of small intestine|Neoplasm of uncertain behavior of small intestine +C0496906|T191|AB|D37.2|ICD10CM|Neoplasm of uncertain behavior of small intestine|Neoplasm of uncertain behavior of small intestine +C0496906|T191|PX|D37.2|ICD10|Neoplasm of uncertain or unknown behavior of small intestine|Neoplasm of uncertain or unknown behavior of small intestine +C0496906|T191|PS|D37.2|ICD10|Small intestine|Small intestine +C0348899|T191|PS|D37.3|ICD10|Appendix|Appendix +C0348899|T191|PT|D37.3|ICD10CM|Neoplasm of uncertain behavior of appendix|Neoplasm of uncertain behavior of appendix +C0348899|T191|AB|D37.3|ICD10CM|Neoplasm of uncertain behavior of appendix|Neoplasm of uncertain behavior of appendix +C0348899|T191|PX|D37.3|ICD10|Neoplasm of uncertain or unknown behavior of appendix|Neoplasm of uncertain or unknown behavior of appendix +C0496907|T191|PS|D37.4|ICD10|Colon|Colon +C0496907|T191|PT|D37.4|ICD10CM|Neoplasm of uncertain behavior of colon|Neoplasm of uncertain behavior of colon +C0496907|T191|AB|D37.4|ICD10CM|Neoplasm of uncertain behavior of colon|Neoplasm of uncertain behavior of colon +C0496907|T191|PX|D37.4|ICD10|Neoplasm of uncertain or unknown behavior of colon|Neoplasm of uncertain or unknown behavior of colon +C0686103|T191|ET|D37.5|ICD10CM|Neoplasm of uncertain behavior of rectosigmoid junction|Neoplasm of uncertain behavior of rectosigmoid junction +C0496908|T191|PT|D37.5|ICD10CM|Neoplasm of uncertain behavior of rectum|Neoplasm of uncertain behavior of rectum +C0496908|T191|AB|D37.5|ICD10CM|Neoplasm of uncertain behavior of rectum|Neoplasm of uncertain behavior of rectum +C0496908|T191|PX|D37.5|ICD10|Neoplasm of uncertain or unknown behavior of rectum|Neoplasm of uncertain or unknown behavior of rectum +C0496908|T191|PS|D37.5|ICD10|Rectum|Rectum +C0496909|T191|PS|D37.6|ICD10|Liver, gallbladder and bile ducts|Liver, gallbladder and bile ducts +C0346483|T191|ET|D37.6|ICD10CM|Neoplasm of uncertain behavior of ampulla of Vater|Neoplasm of uncertain behavior of ampulla of Vater +C2869583|T191|PT|D37.6|ICD10CM|Neoplasm of uncertain behavior of liver, gallbladder and bile ducts|Neoplasm of uncertain behavior of liver, gallbladder and bile ducts +C2869583|T191|AB|D37.6|ICD10CM|Neoplasm of uncertain behavior of liver, GB & bile duct|Neoplasm of uncertain behavior of liver, GB & bile duct +C0496909|T191|PX|D37.6|ICD10|Neoplasm of uncertain or unknown behavior of liver, gallbladder and bile ducts|Neoplasm of uncertain or unknown behavior of liver, gallbladder and bile ducts +C0154101|T191|PX|D37.7|ICD10|Neoplasm of uncertain or unknown behavior of other digestive organs|Neoplasm of uncertain or unknown behavior of other digestive organs +C0154101|T191|PS|D37.7|ICD10|Other digestive organs|Other digestive organs +C0686107|T191|ET|D37.8|ICD10CM|Neoplasm of uncertain behavior of anal canal|Neoplasm of uncertain behavior of anal canal +C0865127|T191|ET|D37.8|ICD10CM|Neoplasm of uncertain behavior of anal sphincter|Neoplasm of uncertain behavior of anal sphincter +C0686105|T191|ET|D37.8|ICD10CM|Neoplasm of uncertain behavior of anus NOS|Neoplasm of uncertain behavior of anus NOS +C0346486|T191|ET|D37.8|ICD10CM|Neoplasm of uncertain behavior of esophagus|Neoplasm of uncertain behavior of esophagus +C0685940|T191|ET|D37.8|ICD10CM|Neoplasm of uncertain behavior of intestine NOS|Neoplasm of uncertain behavior of intestine NOS +C2976824|T191|AB|D37.8|ICD10CM|Neoplasm of uncertain behavior of oth digestive organs|Neoplasm of uncertain behavior of oth digestive organs +C2976824|T191|PT|D37.8|ICD10CM|Neoplasm of uncertain behavior of other specified digestive organs|Neoplasm of uncertain behavior of other specified digestive organs +C0346487|T191|ET|D37.8|ICD10CM|Neoplasm of uncertain behavior of pancreas|Neoplasm of uncertain behavior of pancreas +C0496911|T191|PS|D37.9|ICD10|Digestive organ, unspecified|Digestive organ, unspecified +C2869585|T191|AB|D37.9|ICD10CM|Neoplasm of uncertain behavior of digestive organ, unsp|Neoplasm of uncertain behavior of digestive organ, unsp +C2869585|T191|PT|D37.9|ICD10CM|Neoplasm of uncertain behavior of digestive organ, unspecified|Neoplasm of uncertain behavior of digestive organ, unspecified +C0496911|T191|PX|D37.9|ICD10|Neoplasm of uncertain or unknown behavior of digestive organ, unspecified|Neoplasm of uncertain or unknown behavior of digestive organ, unspecified +C2869586|T191|HT|D38|ICD10CM|Neoplasm of uncertain behavior of middle ear and respiratory and intrathoracic organs|Neoplasm of uncertain behavior of middle ear and respiratory and intrathoracic organs +C0494203|T191|HT|D38|ICD10AE|Neoplasm of uncertain or unknown behavior of middle ear and respiratory and intrathoracic organs|Neoplasm of uncertain or unknown behavior of middle ear and respiratory and intrathoracic organs +C0494203|T191|HT|D38|ICD10|Neoplasm of uncertain or unknown behaviour of middle ear and respiratory and intrathoracic organs|Neoplasm of uncertain or unknown behaviour of middle ear and respiratory and intrathoracic organs +C2869586|T191|AB|D38|ICD10CM|Neoplm of uncrt behav of mid ear & resp and intrathorac org|Neoplm of uncrt behav of mid ear & resp and intrathorac org +C0496912|T191|PS|D38.0|ICD10|Larynx|Larynx +C2869587|T191|ET|D38.0|ICD10CM|Neoplasm of uncertain behavior of aryepiglottic fold or interarytenoid fold, laryngeal aspect|Neoplasm of uncertain behavior of aryepiglottic fold or interarytenoid fold, laryngeal aspect +C2869588|T191|ET|D38.0|ICD10CM|Neoplasm of uncertain behavior of epiglottis (suprahyoid portion)|Neoplasm of uncertain behavior of epiglottis (suprahyoid portion) +C0496912|T191|PT|D38.0|ICD10CM|Neoplasm of uncertain behavior of larynx|Neoplasm of uncertain behavior of larynx +C0496912|T191|AB|D38.0|ICD10CM|Neoplasm of uncertain behavior of larynx|Neoplasm of uncertain behavior of larynx +C0496912|T191|PX|D38.0|ICD10|Neoplasm of uncertain or unknown behavior of larynx|Neoplasm of uncertain or unknown behavior of larynx +C0154103|T191|PT|D38.1|ICD10CM|Neoplasm of uncertain behavior of trachea, bronchus and lung|Neoplasm of uncertain behavior of trachea, bronchus and lung +C0154103|T191|AB|D38.1|ICD10CM|Neoplasm of uncertain behavior of trachea, bronchus and lung|Neoplasm of uncertain behavior of trachea, bronchus and lung +C0154103|T191|PX|D38.1|ICD10|Neoplasm of uncertain or unknown behavior of trachea, bronchus and lung|Neoplasm of uncertain or unknown behavior of trachea, bronchus and lung +C0154103|T191|PS|D38.1|ICD10|Trachea, bronchus and lung|Trachea, bronchus and lung +C0496914|T191|PT|D38.2|ICD10CM|Neoplasm of uncertain behavior of pleura|Neoplasm of uncertain behavior of pleura +C0496914|T191|AB|D38.2|ICD10CM|Neoplasm of uncertain behavior of pleura|Neoplasm of uncertain behavior of pleura +C0496914|T191|PX|D38.2|ICD10|Neoplasm of uncertain or unknown behavior of pleura|Neoplasm of uncertain or unknown behavior of pleura +C0496914|T191|PS|D38.2|ICD10|Pleura|Pleura +C0496915|T191|PS|D38.3|ICD10|Mediastinum|Mediastinum +C0496915|T191|PT|D38.3|ICD10CM|Neoplasm of uncertain behavior of mediastinum|Neoplasm of uncertain behavior of mediastinum +C0496915|T191|AB|D38.3|ICD10CM|Neoplasm of uncertain behavior of mediastinum|Neoplasm of uncertain behavior of mediastinum +C0496915|T191|PX|D38.3|ICD10|Neoplasm of uncertain or unknown behavior of mediastinum|Neoplasm of uncertain or unknown behavior of mediastinum +C0496916|T191|PT|D38.4|ICD10CM|Neoplasm of uncertain behavior of thymus|Neoplasm of uncertain behavior of thymus +C0496916|T191|AB|D38.4|ICD10CM|Neoplasm of uncertain behavior of thymus|Neoplasm of uncertain behavior of thymus +C0496916|T191|PX|D38.4|ICD10|Neoplasm of uncertain or unknown behavior of thymus|Neoplasm of uncertain or unknown behavior of thymus +C0496916|T191|PS|D38.4|ICD10|Thymus|Thymus +C0684939|T191|ET|D38.5|ICD10CM|Neoplasm of uncertain behavior of accessory sinuses|Neoplasm of uncertain behavior of accessory sinuses +C0684926|T191|ET|D38.5|ICD10CM|Neoplasm of uncertain behavior of cartilage of nose|Neoplasm of uncertain behavior of cartilage of nose +C0686487|T191|ET|D38.5|ICD10CM|Neoplasm of uncertain behavior of middle ear|Neoplasm of uncertain behavior of middle ear +C0346505|T191|ET|D38.5|ICD10CM|Neoplasm of uncertain behavior of nasal cavities|Neoplasm of uncertain behavior of nasal cavities +C2869589|T191|AB|D38.5|ICD10CM|Neoplasm of uncertain behavior of other respiratory organs|Neoplasm of uncertain behavior of other respiratory organs +C2869589|T191|PT|D38.5|ICD10CM|Neoplasm of uncertain behavior of other respiratory organs|Neoplasm of uncertain behavior of other respiratory organs +C0496917|T191|PX|D38.5|ICD10|Neoplasm of uncertain or unknown behavior of other respiratory organs|Neoplasm of uncertain or unknown behavior of other respiratory organs +C0496917|T191|PS|D38.5|ICD10|Other respiratory organs|Other respiratory organs +C2869590|T191|AB|D38.6|ICD10CM|Neoplasm of uncertain behavior of respiratory organ, unsp|Neoplasm of uncertain behavior of respiratory organ, unsp +C2869590|T191|PT|D38.6|ICD10CM|Neoplasm of uncertain behavior of respiratory organ, unspecified|Neoplasm of uncertain behavior of respiratory organ, unspecified +C0496918|T191|PX|D38.6|ICD10|Neoplasm of uncertain or unknown behavior of respiratory organ, unspecified|Neoplasm of uncertain or unknown behavior of respiratory organ, unspecified +C0496918|T191|PS|D38.6|ICD10|Respiratory organ, unspecified|Respiratory organ, unspecified +C0346521|T191|AB|D39|ICD10CM|Neoplasm of uncertain behavior of female genital organs|Neoplasm of uncertain behavior of female genital organs +C0346521|T191|HT|D39|ICD10CM|Neoplasm of uncertain behavior of female genital organs|Neoplasm of uncertain behavior of female genital organs +C0346521|T191|HT|D39|ICD10AE|Neoplasm of uncertain or unknown behavior of female genital organs|Neoplasm of uncertain or unknown behavior of female genital organs +C0346521|T191|HT|D39|ICD10|Neoplasm of uncertain or unknown behaviour of female genital organs|Neoplasm of uncertain or unknown behaviour of female genital organs +C0496919|T191|PT|D39.0|ICD10CM|Neoplasm of uncertain behavior of uterus|Neoplasm of uncertain behavior of uterus +C0496919|T191|AB|D39.0|ICD10CM|Neoplasm of uncertain behavior of uterus|Neoplasm of uncertain behavior of uterus +C0496919|T191|PX|D39.0|ICD10|Neoplasm of uncertain or unknown behavior of uterus|Neoplasm of uncertain or unknown behavior of uterus +C0496919|T191|PS|D39.0|ICD10|Uterus|Uterus +C0496920|T191|HT|D39.1|ICD10CM|Neoplasm of uncertain behavior of ovary|Neoplasm of uncertain behavior of ovary +C0496920|T191|AB|D39.1|ICD10CM|Neoplasm of uncertain behavior of ovary|Neoplasm of uncertain behavior of ovary +C0496920|T191|PX|D39.1|ICD10|Neoplasm of uncertain or unknown behavior of ovary|Neoplasm of uncertain or unknown behavior of ovary +C0496920|T191|PS|D39.1|ICD10|Ovary|Ovary +C2869591|T191|AB|D39.10|ICD10CM|Neoplasm of uncertain behavior of unspecified ovary|Neoplasm of uncertain behavior of unspecified ovary +C2869591|T191|PT|D39.10|ICD10CM|Neoplasm of uncertain behavior of unspecified ovary|Neoplasm of uncertain behavior of unspecified ovary +C2869592|T191|PT|D39.11|ICD10CM|Neoplasm of uncertain behavior of right ovary|Neoplasm of uncertain behavior of right ovary +C2869592|T191|AB|D39.11|ICD10CM|Neoplasm of uncertain behavior of right ovary|Neoplasm of uncertain behavior of right ovary +C2869593|T191|PT|D39.12|ICD10CM|Neoplasm of uncertain behavior of left ovary|Neoplasm of uncertain behavior of left ovary +C2869593|T191|AB|D39.12|ICD10CM|Neoplasm of uncertain behavior of left ovary|Neoplasm of uncertain behavior of left ovary +C0008493|T191|ET|D39.2|ICD10CM|Chorioadenoma destruens|Chorioadenoma destruens +C0008493|T191|ET|D39.2|ICD10CM|Invasive hydatidiform mole|Invasive hydatidiform mole +C0008493|T191|ET|D39.2|ICD10CM|Malignant hydatidiform mole|Malignant hydatidiform mole +C0496921|T191|PT|D39.2|ICD10CM|Neoplasm of uncertain behavior of placenta|Neoplasm of uncertain behavior of placenta +C0496921|T191|AB|D39.2|ICD10CM|Neoplasm of uncertain behavior of placenta|Neoplasm of uncertain behavior of placenta +C0496921|T191|PX|D39.2|ICD10|Neoplasm of uncertain or unknown behavior of placenta|Neoplasm of uncertain or unknown behavior of placenta +C0496921|T191|PS|D39.2|ICD10|Placenta|Placenta +C0496922|T191|PX|D39.7|ICD10|Neoplasm of uncertain or unknown behavior of other female genital organs|Neoplasm of uncertain or unknown behavior of other female genital organs +C0496922|T191|PS|D39.7|ICD10|Other female genital organs|Other female genital organs +C2976826|T191|AB|D39.8|ICD10CM|Neoplasm of uncertain behavior of oth female genital organs|Neoplasm of uncertain behavior of oth female genital organs +C2976826|T191|PT|D39.8|ICD10CM|Neoplasm of uncertain behavior of other specified female genital organs|Neoplasm of uncertain behavior of other specified female genital organs +C2976825|T191|ET|D39.8|ICD10CM|Neoplasm of uncertain behavior of skin of female genital organs|Neoplasm of uncertain behavior of skin of female genital organs +C0346521|T191|PS|D39.9|ICD10|Female genital organ, unspecified|Female genital organ, unspecified +C2869596|T191|AB|D39.9|ICD10CM|Neoplasm of uncertain behavior of female genital organ, unsp|Neoplasm of uncertain behavior of female genital organ, unsp +C2869596|T191|PT|D39.9|ICD10CM|Neoplasm of uncertain behavior of female genital organ, unspecified|Neoplasm of uncertain behavior of female genital organ, unspecified +C0346521|T191|PX|D39.9|ICD10|Neoplasm of uncertain or unknown behavior of female genital organ, unspecified|Neoplasm of uncertain or unknown behavior of female genital organ, unspecified +C0346416|T191|AB|D3A|ICD10CM|Benign neuroendocrine tumors|Benign neuroendocrine tumors +C0346416|T191|HT|D3A|ICD10CM|Benign neuroendocrine tumors|Benign neuroendocrine tumors +C2976827|T191|HT|D3A-D3A|ICD10CM|Benign neuroendocrine tumors (D3A)|Benign neuroendocrine tumors (D3A) +C2367983|T191|AB|D3A.0|ICD10CM|Benign carcinoid tumors|Benign carcinoid tumors +C2367983|T191|HT|D3A.0|ICD10CM|Benign carcinoid tumors|Benign carcinoid tumors +C2869597|T191|AB|D3A.00|ICD10CM|Benign carcinoid tumor of unspecified site|Benign carcinoid tumor of unspecified site +C2869597|T191|PT|D3A.00|ICD10CM|Benign carcinoid tumor of unspecified site|Benign carcinoid tumor of unspecified site +C0007095|T191|ET|D3A.00|ICD10CM|Carcinoid tumor NOS|Carcinoid tumor NOS +C2349340|T191|AB|D3A.01|ICD10CM|Benign carcinoid tumors of the small intestine|Benign carcinoid tumors of the small intestine +C2349340|T191|HT|D3A.01|ICD10CM|Benign carcinoid tumors of the small intestine|Benign carcinoid tumors of the small intestine +C2349337|T191|AB|D3A.010|ICD10CM|Benign carcinoid tumor of the duodenum|Benign carcinoid tumor of the duodenum +C2349337|T191|PT|D3A.010|ICD10CM|Benign carcinoid tumor of the duodenum|Benign carcinoid tumor of the duodenum +C2349338|T191|AB|D3A.011|ICD10CM|Benign carcinoid tumor of the jejunum|Benign carcinoid tumor of the jejunum +C2349338|T191|PT|D3A.011|ICD10CM|Benign carcinoid tumor of the jejunum|Benign carcinoid tumor of the jejunum +C2349339|T191|AB|D3A.012|ICD10CM|Benign carcinoid tumor of the ileum|Benign carcinoid tumor of the ileum +C2349339|T191|PT|D3A.012|ICD10CM|Benign carcinoid tumor of the ileum|Benign carcinoid tumor of the ileum +C2349336|T191|AB|D3A.019|ICD10CM|Benign carcinoid tumor of the small intestine, unsp portion|Benign carcinoid tumor of the small intestine, unsp portion +C2349336|T191|PT|D3A.019|ICD10CM|Benign carcinoid tumor of the small intestine, unspecified portion|Benign carcinoid tumor of the small intestine, unspecified portion +C2349349|T191|HT|D3A.02|ICD10CM|Benign carcinoid tumors of the appendix, large intestine, and rectum|Benign carcinoid tumors of the appendix, large intestine, and rectum +C2349349|T191|AB|D3A.02|ICD10CM|Benign carcinoid tumors of the appendix, lg int, and rectum|Benign carcinoid tumors of the appendix, lg int, and rectum +C2349342|T191|AB|D3A.020|ICD10CM|Benign carcinoid tumor of the appendix|Benign carcinoid tumor of the appendix +C2349342|T191|PT|D3A.020|ICD10CM|Benign carcinoid tumor of the appendix|Benign carcinoid tumor of the appendix +C2349343|T191|AB|D3A.021|ICD10CM|Benign carcinoid tumor of the cecum|Benign carcinoid tumor of the cecum +C2349343|T191|PT|D3A.021|ICD10CM|Benign carcinoid tumor of the cecum|Benign carcinoid tumor of the cecum +C2349344|T191|AB|D3A.022|ICD10CM|Benign carcinoid tumor of the ascending colon|Benign carcinoid tumor of the ascending colon +C2349344|T191|PT|D3A.022|ICD10CM|Benign carcinoid tumor of the ascending colon|Benign carcinoid tumor of the ascending colon +C2349345|T191|AB|D3A.023|ICD10CM|Benign carcinoid tumor of the transverse colon|Benign carcinoid tumor of the transverse colon +C2349345|T191|PT|D3A.023|ICD10CM|Benign carcinoid tumor of the transverse colon|Benign carcinoid tumor of the transverse colon +C2349346|T191|AB|D3A.024|ICD10CM|Benign carcinoid tumor of the descending colon|Benign carcinoid tumor of the descending colon +C2349346|T191|PT|D3A.024|ICD10CM|Benign carcinoid tumor of the descending colon|Benign carcinoid tumor of the descending colon +C2349347|T191|AB|D3A.025|ICD10CM|Benign carcinoid tumor of the sigmoid colon|Benign carcinoid tumor of the sigmoid colon +C2349347|T191|PT|D3A.025|ICD10CM|Benign carcinoid tumor of the sigmoid colon|Benign carcinoid tumor of the sigmoid colon +C2349348|T191|AB|D3A.026|ICD10CM|Benign carcinoid tumor of the rectum|Benign carcinoid tumor of the rectum +C2349348|T191|PT|D3A.026|ICD10CM|Benign carcinoid tumor of the rectum|Benign carcinoid tumor of the rectum +C2349341|T191|ET|D3A.029|ICD10CM|Benign carcinoid tumor of the colon NOS|Benign carcinoid tumor of the colon NOS +C2349341|T191|AB|D3A.029|ICD10CM|Benign carcinoid tumor of the large intestine, unsp portion|Benign carcinoid tumor of the large intestine, unsp portion +C2349341|T191|PT|D3A.029|ICD10CM|Benign carcinoid tumor of the large intestine, unspecified portion|Benign carcinoid tumor of the large intestine, unspecified portion +C2349358|T191|HT|D3A.09|ICD10CM|Benign carcinoid tumors of other sites|Benign carcinoid tumors of other sites +C2349358|T191|AB|D3A.09|ICD10CM|Benign carcinoid tumors of other sites|Benign carcinoid tumors of other sites +C2349351|T191|AB|D3A.090|ICD10CM|Benign carcinoid tumor of the bronchus and lung|Benign carcinoid tumor of the bronchus and lung +C2349351|T191|PT|D3A.090|ICD10CM|Benign carcinoid tumor of the bronchus and lung|Benign carcinoid tumor of the bronchus and lung +C2349352|T191|AB|D3A.091|ICD10CM|Benign carcinoid tumor of the thymus|Benign carcinoid tumor of the thymus +C2349352|T191|PT|D3A.091|ICD10CM|Benign carcinoid tumor of the thymus|Benign carcinoid tumor of the thymus +C2349353|T191|AB|D3A.092|ICD10CM|Benign carcinoid tumor of the stomach|Benign carcinoid tumor of the stomach +C2349353|T191|PT|D3A.092|ICD10CM|Benign carcinoid tumor of the stomach|Benign carcinoid tumor of the stomach +C2349354|T191|AB|D3A.093|ICD10CM|Benign carcinoid tumor of the kidney|Benign carcinoid tumor of the kidney +C2349354|T191|PT|D3A.093|ICD10CM|Benign carcinoid tumor of the kidney|Benign carcinoid tumor of the kidney +C4267879|T191|AB|D3A.094|ICD10CM|Benign carcinoid tumor of the foregut, unspecified|Benign carcinoid tumor of the foregut, unspecified +C4267879|T191|PT|D3A.094|ICD10CM|Benign carcinoid tumor of the foregut, unspecified|Benign carcinoid tumor of the foregut, unspecified +C4267880|T191|AB|D3A.095|ICD10CM|Benign carcinoid tumor of the midgut, unspecified|Benign carcinoid tumor of the midgut, unspecified +C4267880|T191|PT|D3A.095|ICD10CM|Benign carcinoid tumor of the midgut, unspecified|Benign carcinoid tumor of the midgut, unspecified +C4267881|T191|AB|D3A.096|ICD10CM|Benign carcinoid tumor of the hindgut, unspecified|Benign carcinoid tumor of the hindgut, unspecified +C4267881|T191|PT|D3A.096|ICD10CM|Benign carcinoid tumor of the hindgut, unspecified|Benign carcinoid tumor of the hindgut, unspecified +C2349358|T191|AB|D3A.098|ICD10CM|Benign carcinoid tumors of other sites|Benign carcinoid tumors of other sites +C2349358|T191|PT|D3A.098|ICD10CM|Benign carcinoid tumors of other sites|Benign carcinoid tumors of other sites +C0206754|T191|ET|D3A.8|ICD10CM|Neuroendocrine tumor NOS|Neuroendocrine tumor NOS +C2869598|T191|AB|D3A.8|ICD10CM|Other benign neuroendocrine tumors|Other benign neuroendocrine tumors +C2869598|T191|PT|D3A.8|ICD10CM|Other benign neuroendocrine tumors|Other benign neuroendocrine tumors +C0496926|T191|AB|D40|ICD10CM|Neoplasm of uncertain behavior of male genital organs|Neoplasm of uncertain behavior of male genital organs +C0496926|T191|HT|D40|ICD10CM|Neoplasm of uncertain behavior of male genital organs|Neoplasm of uncertain behavior of male genital organs +C0496926|T191|HT|D40|ICD10AE|Neoplasm of uncertain or unknown behavior of male genital organs|Neoplasm of uncertain or unknown behavior of male genital organs +C0496926|T191|HT|D40|ICD10|Neoplasm of uncertain or unknown behaviour of male genital organs|Neoplasm of uncertain or unknown behaviour of male genital organs +C0496923|T191|PT|D40.0|ICD10CM|Neoplasm of uncertain behavior of prostate|Neoplasm of uncertain behavior of prostate +C0496923|T191|AB|D40.0|ICD10CM|Neoplasm of uncertain behavior of prostate|Neoplasm of uncertain behavior of prostate +C0496923|T191|PX|D40.0|ICD10|Neoplasm of uncertain or unknown behavior of prostate|Neoplasm of uncertain or unknown behavior of prostate +C0496923|T191|PS|D40.0|ICD10|Prostate|Prostate +C0496924|T191|HT|D40.1|ICD10CM|Neoplasm of uncertain behavior of testis|Neoplasm of uncertain behavior of testis +C0496924|T191|AB|D40.1|ICD10CM|Neoplasm of uncertain behavior of testis|Neoplasm of uncertain behavior of testis +C0496924|T191|PX|D40.1|ICD10|Neoplasm of uncertain or unknown behavior of testis|Neoplasm of uncertain or unknown behavior of testis +C0496924|T191|PS|D40.1|ICD10|Testis|Testis +C2869599|T191|AB|D40.10|ICD10CM|Neoplasm of uncertain behavior of unspecified testis|Neoplasm of uncertain behavior of unspecified testis +C2869599|T191|PT|D40.10|ICD10CM|Neoplasm of uncertain behavior of unspecified testis|Neoplasm of uncertain behavior of unspecified testis +C2869600|T191|AB|D40.11|ICD10CM|Neoplasm of uncertain behavior of right testis|Neoplasm of uncertain behavior of right testis +C2869600|T191|PT|D40.11|ICD10CM|Neoplasm of uncertain behavior of right testis|Neoplasm of uncertain behavior of right testis +C2869601|T191|AB|D40.12|ICD10CM|Neoplasm of uncertain behavior of left testis|Neoplasm of uncertain behavior of left testis +C2869601|T191|PT|D40.12|ICD10CM|Neoplasm of uncertain behavior of left testis|Neoplasm of uncertain behavior of left testis +C0496925|T191|PX|D40.7|ICD10|Neoplasm of uncertain or unknown behavior of other male genital organs|Neoplasm of uncertain or unknown behavior of other male genital organs +C0496925|T191|PS|D40.7|ICD10|Other male genital organs|Other male genital organs +C2976829|T191|AB|D40.8|ICD10CM|Neoplasm of uncertain behavior of oth male genital organs|Neoplasm of uncertain behavior of oth male genital organs +C2976829|T191|PT|D40.8|ICD10CM|Neoplasm of uncertain behavior of other specified male genital organs|Neoplasm of uncertain behavior of other specified male genital organs +C2976828|T191|ET|D40.8|ICD10CM|Neoplasm of uncertain behavior of skin of male genital organs|Neoplasm of uncertain behavior of skin of male genital organs +C0496926|T191|PS|D40.9|ICD10|Male genital organ, unspecified|Male genital organ, unspecified +C2869604|T191|AB|D40.9|ICD10CM|Neoplasm of uncertain behavior of male genital organ, unsp|Neoplasm of uncertain behavior of male genital organ, unsp +C2869604|T191|PT|D40.9|ICD10CM|Neoplasm of uncertain behavior of male genital organ, unspecified|Neoplasm of uncertain behavior of male genital organ, unspecified +C0496926|T191|PX|D40.9|ICD10|Neoplasm of uncertain or unknown behavior of male genital organ, unspecified|Neoplasm of uncertain or unknown behavior of male genital organ, unspecified +C0686168|T191|AB|D41|ICD10CM|Neoplasm of uncertain behavior of urinary organs|Neoplasm of uncertain behavior of urinary organs +C0686168|T191|HT|D41|ICD10CM|Neoplasm of uncertain behavior of urinary organs|Neoplasm of uncertain behavior of urinary organs +C0496932|T191|HT|D41|ICD10AE|Neoplasm of uncertain or unknown behavior of urinary organs|Neoplasm of uncertain or unknown behavior of urinary organs +C0496932|T191|HT|D41|ICD10|Neoplasm of uncertain or unknown behaviour of urinary organs|Neoplasm of uncertain or unknown behaviour of urinary organs +C0496927|T191|PS|D41.0|ICD10|Kidney|Kidney +C0496927|T191|HT|D41.0|ICD10CM|Neoplasm of uncertain behavior of kidney|Neoplasm of uncertain behavior of kidney +C0496927|T191|AB|D41.0|ICD10CM|Neoplasm of uncertain behavior of kidney|Neoplasm of uncertain behavior of kidney +C0496927|T191|PX|D41.0|ICD10|Neoplasm of uncertain or unknown behavior of kidney|Neoplasm of uncertain or unknown behavior of kidney +C2869605|T191|AB|D41.00|ICD10CM|Neoplasm of uncertain behavior of unspecified kidney|Neoplasm of uncertain behavior of unspecified kidney +C2869605|T191|PT|D41.00|ICD10CM|Neoplasm of uncertain behavior of unspecified kidney|Neoplasm of uncertain behavior of unspecified kidney +C2869606|T191|PT|D41.01|ICD10CM|Neoplasm of uncertain behavior of right kidney|Neoplasm of uncertain behavior of right kidney +C2869606|T191|AB|D41.01|ICD10CM|Neoplasm of uncertain behavior of right kidney|Neoplasm of uncertain behavior of right kidney +C2869607|T191|PT|D41.02|ICD10CM|Neoplasm of uncertain behavior of left kidney|Neoplasm of uncertain behavior of left kidney +C2869607|T191|AB|D41.02|ICD10CM|Neoplasm of uncertain behavior of left kidney|Neoplasm of uncertain behavior of left kidney +C0348902|T191|HT|D41.1|ICD10CM|Neoplasm of uncertain behavior of renal pelvis|Neoplasm of uncertain behavior of renal pelvis +C0348902|T191|AB|D41.1|ICD10CM|Neoplasm of uncertain behavior of renal pelvis|Neoplasm of uncertain behavior of renal pelvis +C0348902|T191|PX|D41.1|ICD10|Neoplasm of uncertain or unknown behavior of renal pelvis|Neoplasm of uncertain or unknown behavior of renal pelvis +C0348902|T191|PS|D41.1|ICD10|Renal pelvis|Renal pelvis +C2869608|T191|AB|D41.10|ICD10CM|Neoplasm of uncertain behavior of unspecified renal pelvis|Neoplasm of uncertain behavior of unspecified renal pelvis +C2869608|T191|PT|D41.10|ICD10CM|Neoplasm of uncertain behavior of unspecified renal pelvis|Neoplasm of uncertain behavior of unspecified renal pelvis +C2869609|T191|AB|D41.11|ICD10CM|Neoplasm of uncertain behavior of right renal pelvis|Neoplasm of uncertain behavior of right renal pelvis +C2869609|T191|PT|D41.11|ICD10CM|Neoplasm of uncertain behavior of right renal pelvis|Neoplasm of uncertain behavior of right renal pelvis +C2869610|T191|AB|D41.12|ICD10CM|Neoplasm of uncertain behavior of left renal pelvis|Neoplasm of uncertain behavior of left renal pelvis +C2869610|T191|PT|D41.12|ICD10CM|Neoplasm of uncertain behavior of left renal pelvis|Neoplasm of uncertain behavior of left renal pelvis +C0686175|T191|HT|D41.2|ICD10CM|Neoplasm of uncertain behavior of ureter|Neoplasm of uncertain behavior of ureter +C0686175|T191|AB|D41.2|ICD10CM|Neoplasm of uncertain behavior of ureter|Neoplasm of uncertain behavior of ureter +C0496928|T191|PX|D41.2|ICD10|Neoplasm of uncertain or unknown behavior of ureter|Neoplasm of uncertain or unknown behavior of ureter +C0496928|T191|PS|D41.2|ICD10|Ureter|Ureter +C2869611|T191|AB|D41.20|ICD10CM|Neoplasm of uncertain behavior of unspecified ureter|Neoplasm of uncertain behavior of unspecified ureter +C2869611|T191|PT|D41.20|ICD10CM|Neoplasm of uncertain behavior of unspecified ureter|Neoplasm of uncertain behavior of unspecified ureter +C2869612|T191|PT|D41.21|ICD10CM|Neoplasm of uncertain behavior of right ureter|Neoplasm of uncertain behavior of right ureter +C2869612|T191|AB|D41.21|ICD10CM|Neoplasm of uncertain behavior of right ureter|Neoplasm of uncertain behavior of right ureter +C2869613|T191|PT|D41.22|ICD10CM|Neoplasm of uncertain behavior of left ureter|Neoplasm of uncertain behavior of left ureter +C2869613|T191|AB|D41.22|ICD10CM|Neoplasm of uncertain behavior of left ureter|Neoplasm of uncertain behavior of left ureter +C0496929|T191|PT|D41.3|ICD10CM|Neoplasm of uncertain behavior of urethra|Neoplasm of uncertain behavior of urethra +C0496929|T191|AB|D41.3|ICD10CM|Neoplasm of uncertain behavior of urethra|Neoplasm of uncertain behavior of urethra +C0496929|T191|PX|D41.3|ICD10|Neoplasm of uncertain or unknown behavior of urethra|Neoplasm of uncertain or unknown behavior of urethra +C0496929|T191|PS|D41.3|ICD10|Urethra|Urethra +C0496930|T191|PS|D41.4|ICD10|Bladder|Bladder +C0496930|T191|PT|D41.4|ICD10CM|Neoplasm of uncertain behavior of bladder|Neoplasm of uncertain behavior of bladder +C0496930|T191|AB|D41.4|ICD10CM|Neoplasm of uncertain behavior of bladder|Neoplasm of uncertain behavior of bladder +C0496930|T191|PX|D41.4|ICD10|Neoplasm of uncertain or unknown behavior of bladder|Neoplasm of uncertain or unknown behavior of bladder +C0496931|T191|PX|D41.7|ICD10|Neoplasm of uncertain or unknown behavior of other urinary organs|Neoplasm of uncertain or unknown behavior of other urinary organs +C0496931|T191|PS|D41.7|ICD10|Other urinary organs|Other urinary organs +C2976849|T191|AB|D41.8|ICD10CM|Neoplasm of uncertain behavior of oth urinary organs|Neoplasm of uncertain behavior of oth urinary organs +C2976849|T191|PT|D41.8|ICD10CM|Neoplasm of uncertain behavior of other specified urinary organs|Neoplasm of uncertain behavior of other specified urinary organs +C0496932|T191|AB|D41.9|ICD10CM|Neoplasm of uncertain behavior of unspecified urinary organ|Neoplasm of uncertain behavior of unspecified urinary organ +C0496932|T191|PT|D41.9|ICD10CM|Neoplasm of uncertain behavior of unspecified urinary organ|Neoplasm of uncertain behavior of unspecified urinary organ +C0496932|T191|PX|D41.9|ICD10|Neoplasm of uncertain or unknown behavior of urinary organ, unspecified|Neoplasm of uncertain or unknown behavior of urinary organ, unspecified +C0496932|T191|PS|D41.9|ICD10|Urinary organ, unspecified|Urinary organ, unspecified +C0154120|T191|HT|D42|ICD10CM|Neoplasm of uncertain behavior of meninges|Neoplasm of uncertain behavior of meninges +C0154120|T191|AB|D42|ICD10CM|Neoplasm of uncertain behavior of meninges|Neoplasm of uncertain behavior of meninges +C0154120|T191|HT|D42|ICD10AE|Neoplasm of uncertain or unknown behavior of meninges|Neoplasm of uncertain or unknown behavior of meninges +C0154120|T191|HT|D42|ICD10|Neoplasm of uncertain or unknown behaviour of meninges|Neoplasm of uncertain or unknown behaviour of meninges +C0496933|T191|PS|D42.0|ICD10|Cerebral meninges|Cerebral meninges +C0496933|T191|PT|D42.0|ICD10CM|Neoplasm of uncertain behavior of cerebral meninges|Neoplasm of uncertain behavior of cerebral meninges +C0496933|T191|AB|D42.0|ICD10CM|Neoplasm of uncertain behavior of cerebral meninges|Neoplasm of uncertain behavior of cerebral meninges +C0496933|T191|PX|D42.0|ICD10|Neoplasm of uncertain or unknown behavior of cerebral meninges|Neoplasm of uncertain or unknown behavior of cerebral meninges +C0496934|T191|PT|D42.1|ICD10CM|Neoplasm of uncertain behavior of spinal meninges|Neoplasm of uncertain behavior of spinal meninges +C0496934|T191|AB|D42.1|ICD10CM|Neoplasm of uncertain behavior of spinal meninges|Neoplasm of uncertain behavior of spinal meninges +C0496934|T191|PX|D42.1|ICD10|Neoplasm of uncertain or unknown behavior of spinal meninges|Neoplasm of uncertain or unknown behavior of spinal meninges +C0496934|T191|PS|D42.1|ICD10|Spinal meninges|Spinal meninges +C0154120|T191|PS|D42.9|ICD10|Meninges, unspecified|Meninges, unspecified +C0154120|T191|AB|D42.9|ICD10CM|Neoplasm of uncertain behavior of meninges, unspecified|Neoplasm of uncertain behavior of meninges, unspecified +C0154120|T191|PT|D42.9|ICD10CM|Neoplasm of uncertain behavior of meninges, unspecified|Neoplasm of uncertain behavior of meninges, unspecified +C0154120|T191|PX|D42.9|ICD10|Neoplasm of uncertain or unknown behavior of meninges, unspecified|Neoplasm of uncertain or unknown behavior of meninges, unspecified +C2873700|T191|HT|D43|ICD10CM|Neoplasm of uncertain behavior of brain and central nervous system|Neoplasm of uncertain behavior of brain and central nervous system +C2873700|T191|AB|D43|ICD10CM|Neoplasm of uncertain behavior of brain and cnsl|Neoplasm of uncertain behavior of brain and cnsl +C0494208|T191|HT|D43|ICD10AE|Neoplasm of uncertain or unknown behavior of brain and central nervous system|Neoplasm of uncertain or unknown behavior of brain and central nervous system +C0494208|T191|HT|D43|ICD10|Neoplasm of uncertain or unknown behaviour of brain and central nervous system|Neoplasm of uncertain or unknown behaviour of brain and central nervous system +C0349015|T191|PS|D43.0|ICD10|Brain, supratentorial|Brain, supratentorial +C2873701|T191|AB|D43.0|ICD10CM|Neoplasm of uncertain behavior of brain, supratentorial|Neoplasm of uncertain behavior of brain, supratentorial +C2873701|T191|PT|D43.0|ICD10CM|Neoplasm of uncertain behavior of brain, supratentorial|Neoplasm of uncertain behavior of brain, supratentorial +C0686394|T191|ET|D43.0|ICD10CM|Neoplasm of uncertain behavior of cerebral ventricle|Neoplasm of uncertain behavior of cerebral ventricle +C0686379|T191|ET|D43.0|ICD10CM|Neoplasm of uncertain behavior of cerebrum|Neoplasm of uncertain behavior of cerebrum +C0686382|T191|ET|D43.0|ICD10CM|Neoplasm of uncertain behavior of frontal lobe|Neoplasm of uncertain behavior of frontal lobe +C0686391|T191|ET|D43.0|ICD10CM|Neoplasm of uncertain behavior of occipital lobe|Neoplasm of uncertain behavior of occipital lobe +C0686388|T191|ET|D43.0|ICD10CM|Neoplasm of uncertain behavior of parietal lobe|Neoplasm of uncertain behavior of parietal lobe +C0686385|T191|ET|D43.0|ICD10CM|Neoplasm of uncertain behavior of temporal lobe|Neoplasm of uncertain behavior of temporal lobe +C0349015|T191|PX|D43.0|ICD10|Neoplasm of uncertain or unknown behavior of brain, supratentorial|Neoplasm of uncertain or unknown behavior of brain, supratentorial +C0349016|T191|PS|D43.1|ICD10|Brain, infratentorial|Brain, infratentorial +C0686401|T191|ET|D43.1|ICD10CM|Neoplasm of uncertain behavior of brain stem|Neoplasm of uncertain behavior of brain stem +C2873703|T191|AB|D43.1|ICD10CM|Neoplasm of uncertain behavior of brain, infratentorial|Neoplasm of uncertain behavior of brain, infratentorial +C2873703|T191|PT|D43.1|ICD10CM|Neoplasm of uncertain behavior of brain, infratentorial|Neoplasm of uncertain behavior of brain, infratentorial +C0686398|T191|ET|D43.1|ICD10CM|Neoplasm of uncertain behavior of cerebellum|Neoplasm of uncertain behavior of cerebellum +C2873702|T191|ET|D43.1|ICD10CM|Neoplasm of uncertain behavior of fourth ventricle|Neoplasm of uncertain behavior of fourth ventricle +C0349016|T191|PX|D43.1|ICD10|Neoplasm of uncertain or unknown behavior of brain, infratentorial|Neoplasm of uncertain or unknown behavior of brain, infratentorial +C0496936|T191|PS|D43.2|ICD10|Brain, unspecified|Brain, unspecified +C2873704|T191|AB|D43.2|ICD10CM|Neoplasm of uncertain behavior of brain, unspecified|Neoplasm of uncertain behavior of brain, unspecified +C2873704|T191|PT|D43.2|ICD10CM|Neoplasm of uncertain behavior of brain, unspecified|Neoplasm of uncertain behavior of brain, unspecified +C0496936|T191|PX|D43.2|ICD10|Neoplasm of uncertain or unknown behavior of brain, unspecified|Neoplasm of uncertain or unknown behavior of brain, unspecified +C0496937|T191|PS|D43.3|ICD10|Cranial nerves|Cranial nerves +C0346544|T191|AB|D43.3|ICD10CM|Neoplasm of uncertain behavior of cranial nerves|Neoplasm of uncertain behavior of cranial nerves +C0346544|T191|PT|D43.3|ICD10CM|Neoplasm of uncertain behavior of cranial nerves|Neoplasm of uncertain behavior of cranial nerves +C0496937|T191|PX|D43.3|ICD10|Neoplasm of uncertain or unknown behavior of cranial nerves|Neoplasm of uncertain or unknown behavior of cranial nerves +C0496938|T191|PT|D43.4|ICD10CM|Neoplasm of uncertain behavior of spinal cord|Neoplasm of uncertain behavior of spinal cord +C0496938|T191|AB|D43.4|ICD10CM|Neoplasm of uncertain behavior of spinal cord|Neoplasm of uncertain behavior of spinal cord +C0496938|T191|PX|D43.4|ICD10|Neoplasm of uncertain or unknown behavior of spinal cord|Neoplasm of uncertain or unknown behavior of spinal cord +C0496938|T191|PS|D43.4|ICD10|Spinal cord|Spinal cord +C0496939|T191|PX|D43.7|ICD10|Neoplasm of uncertain or unknown behavior of other parts of central nervous system|Neoplasm of uncertain or unknown behavior of other parts of central nervous system +C0496939|T191|PS|D43.7|ICD10|Other parts of central nervous system|Other parts of central nervous system +C2976850|T191|PT|D43.8|ICD10CM|Neoplasm of uncertain behavior of other specified parts of central nervous system|Neoplasm of uncertain behavior of other specified parts of central nervous system +C2976850|T191|AB|D43.8|ICD10CM|Neoplasm of uncertain behavior of prt central nervous system|Neoplasm of uncertain behavior of prt central nervous system +C0496940|T191|PS|D43.9|ICD10|Central nervous system, unspecified|Central nervous system, unspecified +C2873706|T191|PT|D43.9|ICD10CM|Neoplasm of uncertain behavior of central nervous system, unspecified|Neoplasm of uncertain behavior of central nervous system, unspecified +C2873706|T191|AB|D43.9|ICD10CM|Neoplasm of uncertain behavior of cnsl, unsp|Neoplasm of uncertain behavior of cnsl, unsp +C0686376|T191|ET|D43.9|ICD10CM|Neoplasm of uncertain behavior of nervous system (central) NOS|Neoplasm of uncertain behavior of nervous system (central) NOS +C0496940|T191|PX|D43.9|ICD10|Neoplasm of uncertain or unknown behavior of central nervous system, unspecified|Neoplasm of uncertain or unknown behavior of central nervous system, unspecified +C0496950|T191|AB|D44|ICD10CM|Neoplasm of uncertain behavior of endocrine glands|Neoplasm of uncertain behavior of endocrine glands +C0496950|T191|HT|D44|ICD10CM|Neoplasm of uncertain behavior of endocrine glands|Neoplasm of uncertain behavior of endocrine glands +C0496950|T191|HT|D44|ICD10AE|Neoplasm of uncertain or unknown behavior of endocrine glands|Neoplasm of uncertain or unknown behavior of endocrine glands +C0496950|T191|HT|D44|ICD10|Neoplasm of uncertain or unknown behaviour of endocrine glands|Neoplasm of uncertain or unknown behaviour of endocrine glands +C0496941|T191|PT|D44.0|ICD10CM|Neoplasm of uncertain behavior of thyroid gland|Neoplasm of uncertain behavior of thyroid gland +C0496941|T191|AB|D44.0|ICD10CM|Neoplasm of uncertain behavior of thyroid gland|Neoplasm of uncertain behavior of thyroid gland +C0496941|T191|PX|D44.0|ICD10|Neoplasm of uncertain or unknown behavior of thyroid gland|Neoplasm of uncertain or unknown behavior of thyroid gland +C0496941|T191|PS|D44.0|ICD10|Thyroid gland|Thyroid gland +C0154117|T191|PS|D44.1|ICD10|Adrenal gland|Adrenal gland +C0154117|T191|HT|D44.1|ICD10CM|Neoplasm of uncertain behavior of adrenal gland|Neoplasm of uncertain behavior of adrenal gland +C0154117|T191|AB|D44.1|ICD10CM|Neoplasm of uncertain behavior of adrenal gland|Neoplasm of uncertain behavior of adrenal gland +C0154117|T191|PX|D44.1|ICD10|Neoplasm of uncertain or unknown behavior of adrenal gland|Neoplasm of uncertain or unknown behavior of adrenal gland +C2873707|T191|AB|D44.10|ICD10CM|Neoplasm of uncertain behavior of unspecified adrenal gland|Neoplasm of uncertain behavior of unspecified adrenal gland +C2873707|T191|PT|D44.10|ICD10CM|Neoplasm of uncertain behavior of unspecified adrenal gland|Neoplasm of uncertain behavior of unspecified adrenal gland +C2873708|T191|PT|D44.11|ICD10CM|Neoplasm of uncertain behavior of right adrenal gland|Neoplasm of uncertain behavior of right adrenal gland +C2873708|T191|AB|D44.11|ICD10CM|Neoplasm of uncertain behavior of right adrenal gland|Neoplasm of uncertain behavior of right adrenal gland +C2873709|T191|PT|D44.12|ICD10CM|Neoplasm of uncertain behavior of left adrenal gland|Neoplasm of uncertain behavior of left adrenal gland +C2873709|T191|AB|D44.12|ICD10CM|Neoplasm of uncertain behavior of left adrenal gland|Neoplasm of uncertain behavior of left adrenal gland +C0496943|T191|PT|D44.2|ICD10CM|Neoplasm of uncertain behavior of parathyroid gland|Neoplasm of uncertain behavior of parathyroid gland +C0496943|T191|AB|D44.2|ICD10CM|Neoplasm of uncertain behavior of parathyroid gland|Neoplasm of uncertain behavior of parathyroid gland +C0496943|T191|PX|D44.2|ICD10|Neoplasm of uncertain or unknown behavior of parathyroid gland|Neoplasm of uncertain or unknown behavior of parathyroid gland +C0496943|T191|PS|D44.2|ICD10|Parathyroid gland|Parathyroid gland +C0496944|T191|PT|D44.3|ICD10CM|Neoplasm of uncertain behavior of pituitary gland|Neoplasm of uncertain behavior of pituitary gland +C0496944|T191|AB|D44.3|ICD10CM|Neoplasm of uncertain behavior of pituitary gland|Neoplasm of uncertain behavior of pituitary gland +C0496944|T191|PX|D44.3|ICD10|Neoplasm of uncertain or unknown behavior of pituitary gland|Neoplasm of uncertain or unknown behavior of pituitary gland +C0496944|T191|PS|D44.3|ICD10|Pituitary gland|Pituitary gland +C0496945|T191|PS|D44.4|ICD10|Craniopharyngeal duct|Craniopharyngeal duct +C0496945|T191|PT|D44.4|ICD10CM|Neoplasm of uncertain behavior of craniopharyngeal duct|Neoplasm of uncertain behavior of craniopharyngeal duct +C0496945|T191|AB|D44.4|ICD10CM|Neoplasm of uncertain behavior of craniopharyngeal duct|Neoplasm of uncertain behavior of craniopharyngeal duct +C0496945|T191|PX|D44.4|ICD10|Neoplasm of uncertain or unknown behavior of craniopharyngeal duct|Neoplasm of uncertain or unknown behavior of craniopharyngeal duct +C0496946|T191|PT|D44.5|ICD10CM|Neoplasm of uncertain behavior of pineal gland|Neoplasm of uncertain behavior of pineal gland +C0496946|T191|AB|D44.5|ICD10CM|Neoplasm of uncertain behavior of pineal gland|Neoplasm of uncertain behavior of pineal gland +C0496946|T191|PX|D44.5|ICD10|Neoplasm of uncertain or unknown behavior of pineal gland|Neoplasm of uncertain or unknown behavior of pineal gland +C0496946|T191|PS|D44.5|ICD10|Pineal gland|Pineal gland +C0496947|T191|PS|D44.6|ICD10|Carotid body|Carotid body +C0496947|T191|PT|D44.6|ICD10CM|Neoplasm of uncertain behavior of carotid body|Neoplasm of uncertain behavior of carotid body +C0496947|T191|AB|D44.6|ICD10CM|Neoplasm of uncertain behavior of carotid body|Neoplasm of uncertain behavior of carotid body +C0496947|T191|PX|D44.6|ICD10|Neoplasm of uncertain or unknown behavior of carotid body|Neoplasm of uncertain or unknown behavior of carotid body +C0496948|T191|PS|D44.7|ICD10|Aortic body and other paraganglia|Aortic body and other paraganglia +C2873710|T191|PT|D44.7|ICD10CM|Neoplasm of uncertain behavior of aortic body and other paraganglia|Neoplasm of uncertain behavior of aortic body and other paraganglia +C0496948|T191|PX|D44.7|ICD10|Neoplasm of uncertain or unknown behavior of aortic body and other paraganglia|Neoplasm of uncertain or unknown behavior of aortic body and other paraganglia +C2873710|T191|AB|D44.7|ICD10CM|Neoplasm of uncrt behav of aortic body and oth paraganglia|Neoplasm of uncrt behav of aortic body and oth paraganglia +C0496949|T191|PX|D44.8|ICD10|Neoplasm of uncertain or unknown behavior of pluriglandular involvement|Neoplasm of uncertain or unknown behavior of pluriglandular involvement +C0496949|T191|PS|D44.8|ICD10|Pluriglandular involvement|Pluriglandular involvement +C0496950|T191|PS|D44.9|ICD10|Endocrine gland, unspecified|Endocrine gland, unspecified +C2873711|T191|AB|D44.9|ICD10CM|Neoplasm of uncertain behavior of unsp endocrine gland|Neoplasm of uncertain behavior of unsp endocrine gland +C2873711|T191|PT|D44.9|ICD10CM|Neoplasm of uncertain behavior of unspecified endocrine gland|Neoplasm of uncertain behavior of unspecified endocrine gland +C0496950|T191|PX|D44.9|ICD10|Neoplasm of uncertain or unknown behavior of endocrine gland, unspecified|Neoplasm of uncertain or unknown behavior of endocrine gland, unspecified +C0032463|T191|PT|D45|ICD10|Polycythaemia vera|Polycythaemia vera +C0032463|T191|PT|D45|ICD10CM|Polycythemia vera|Polycythemia vera +C0032463|T191|AB|D45|ICD10CM|Polycythemia vera|Polycythemia vera +C0032463|T191|PT|D45|ICD10AE|Polycythemia vera|Polycythemia vera +C3463824|T191|HT|D46|ICD10|Myelodysplastic syndromes|Myelodysplastic syndromes +C3463824|T191|HT|D46|ICD10CM|Myelodysplastic syndromes|Myelodysplastic syndromes +C3463824|T191|AB|D46|ICD10CM|Myelodysplastic syndromes|Myelodysplastic syndromes +C0348889|T191|PT|D46.0|ICD10|Refractory anaemia without sideroblasts, so stated|Refractory anaemia without sideroblasts, so stated +C2873713|T191|AB|D46.0|ICD10CM|Refractory anemia without ring sideroblasts, so stated|Refractory anemia without ring sideroblasts, so stated +C2873713|T191|PT|D46.0|ICD10CM|Refractory anemia without ring sideroblasts, so stated|Refractory anemia without ring sideroblasts, so stated +C0348889|T191|PT|D46.0|ICD10AE|Refractory anemia without sideroblasts, so stated|Refractory anemia without sideroblasts, so stated +C2873712|T191|ET|D46.0|ICD10CM|Refractory anemia without sideroblasts, without excess of blasts|Refractory anemia without sideroblasts, without excess of blasts +C1264195|T191|ET|D46.1|ICD10CM|RARS|RARS +C0334679|T191|PT|D46.1|ICD10|Refractory anaemia with sideroblasts|Refractory anaemia with sideroblasts +C1264195|T191|PT|D46.1|ICD10CM|Refractory anemia with ring sideroblasts|Refractory anemia with ring sideroblasts +C1264195|T191|AB|D46.1|ICD10CM|Refractory anemia with ring sideroblasts|Refractory anemia with ring sideroblasts +C0334679|T191|PT|D46.1|ICD10AE|Refractory anemia with sideroblasts|Refractory anemia with sideroblasts +C0002894|T191|PT|D46.2|ICD10|Refractory anaemia with excess of blasts|Refractory anaemia with excess of blasts +C0002894|T191|PT|D46.2|ICD10AE|Refractory anemia with excess of blasts|Refractory anemia with excess of blasts +C0002894|T191|AB|D46.2|ICD10CM|Refractory anemia with excess of blasts [RAEB]|Refractory anemia with excess of blasts [RAEB] +C0002894|T191|HT|D46.2|ICD10CM|Refractory anemia with excess of blasts [RAEB]|Refractory anemia with excess of blasts [RAEB] +C0002894|T191|ET|D46.20|ICD10CM|RAEB NOS|RAEB NOS +C0002894|T191|AB|D46.20|ICD10CM|Refractory anemia with excess of blasts, unspecified|Refractory anemia with excess of blasts, unspecified +C0002894|T191|PT|D46.20|ICD10CM|Refractory anemia with excess of blasts, unspecified|Refractory anemia with excess of blasts, unspecified +C1318550|T191|ET|D46.21|ICD10CM|RAEB 1|RAEB 1 +C1318550|T191|AB|D46.21|ICD10CM|Refractory anemia with excess of blasts 1|Refractory anemia with excess of blasts 1 +C1318550|T191|PT|D46.21|ICD10CM|Refractory anemia with excess of blasts 1|Refractory anemia with excess of blasts 1 +C1318551|T191|ET|D46.22|ICD10CM|RAEB 2|RAEB 2 +C1318551|T191|AB|D46.22|ICD10CM|Refractory anemia with excess of blasts 2|Refractory anemia with excess of blasts 2 +C1318551|T191|PT|D46.22|ICD10CM|Refractory anemia with excess of blasts 2|Refractory anemia with excess of blasts 2 +C0280028|T047|PT|D46.3|ICD10|Refractory anaemia with excess of blasts with transformation|Refractory anaemia with excess of blasts with transformation +C0280028|T047|PT|D46.3|ICD10AE|Refractory anemia with excess of blasts with transformation|Refractory anemia with excess of blasts with transformation +C0348439|T191|PT|D46.4|ICD10|Refractory anaemia, unspecified|Refractory anaemia, unspecified +C0348439|T191|PT|D46.4|ICD10AE|Refractory anemia, unspecified|Refractory anemia, unspecified +C0348439|T191|PT|D46.4|ICD10CM|Refractory anemia, unspecified|Refractory anemia, unspecified +C0348439|T191|AB|D46.4|ICD10CM|Refractory anemia, unspecified|Refractory anemia, unspecified +C0494210|T191|PT|D46.7|ICD10|Other myelodysplastic syndromes|Other myelodysplastic syndromes +C0026985|T019|ET|D46.9|ICD10CM|Myelodysplasia NOS|Myelodysplasia NOS +C3463824|T191|PT|D46.9|ICD10|Myelodysplastic syndrome, unspecified|Myelodysplastic syndrome, unspecified +C3463824|T191|PT|D46.9|ICD10CM|Myelodysplastic syndrome, unspecified|Myelodysplastic syndrome, unspecified +C3463824|T191|AB|D46.9|ICD10CM|Myelodysplastic syndrome, unspecified|Myelodysplastic syndrome, unspecified +C0796466|T191|PT|D46.A|ICD10CM|Refractory cytopenia with multilineage dysplasia|Refractory cytopenia with multilineage dysplasia +C0796466|T191|AB|D46.A|ICD10CM|Refractory cytopenia with multilineage dysplasia|Refractory cytopenia with multilineage dysplasia +C1301356|T191|ET|D46.B|ICD10CM|RCMD RS|RCMD RS +C1301356|T191|AB|D46.B|ICD10CM|Refract cytopenia w multilin dysplasia and ring sideroblasts|Refract cytopenia w multilin dysplasia and ring sideroblasts +C1301356|T191|PT|D46.B|ICD10CM|Refractory cytopenia with multilineage dysplasia and ring sideroblasts|Refractory cytopenia with multilineage dysplasia and ring sideroblasts +C1292779|T191|ET|D46.C|ICD10CM|5q minus syndrome NOS|5q minus syndrome NOS +C1292779|T191|AB|D46.C|ICD10CM|Myelodysplastic syndrome w isolated del(5q) chromsoml abnlt|Myelodysplastic syndrome w isolated del(5q) chromsoml abnlt +C1292779|T191|ET|D46.C|ICD10CM|Myelodysplastic syndrome with 5q deletion|Myelodysplastic syndrome with 5q deletion +C1292779|T191|PT|D46.C|ICD10CM|Myelodysplastic syndrome with isolated del(5q) chromosomal abnormality|Myelodysplastic syndrome with isolated del(5q) chromosomal abnormality +C0494210|T191|PT|D46.Z|ICD10CM|Other myelodysplastic syndromes|Other myelodysplastic syndromes +C0494210|T191|AB|D46.Z|ICD10CM|Other myelodysplastic syndromes|Other myelodysplastic syndromes +C2873715|T191|AB|D47|ICD10CM|Oth neoplm of uncrt behav of lymphoid, hematpoetc & rel tiss|Oth neoplm of uncrt behav of lymphoid, hematpoetc & rel tiss +C2873715|T191|HT|D47|ICD10CM|Other neoplasms of uncertain behavior of lymphoid, hematopoietic and related tissue|Other neoplasms of uncertain behavior of lymphoid, hematopoietic and related tissue +C0494211|T191|HT|D47|ICD10AE|Other neoplasms of uncertain or unknown behavior of lymphoid, hematopoietic and related tissue|Other neoplasms of uncertain or unknown behavior of lymphoid, hematopoietic and related tissue +C0494211|T191|HT|D47|ICD10|Other neoplasms of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue|Other neoplasms of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue +C0154127|T191|PT|D47.0|ICD10AE|Histiocytic and mast cell tumors of uncertain and unknown behavior|Histiocytic and mast cell tumors of uncertain and unknown behavior +C0154127|T191|PT|D47.0|ICD10|Histiocytic and mast cell tumours of uncertain and unknown behaviour|Histiocytic and mast cell tumours of uncertain and unknown behaviour +C4509019|T191|AB|D47.0|ICD10CM|Mast cell neoplasms of uncertain behavior|Mast cell neoplasms of uncertain behavior +C4509019|T191|HT|D47.0|ICD10CM|Mast cell neoplasms of uncertain behavior|Mast cell neoplasms of uncertain behavior +C1136033|T191|AB|D47.01|ICD10CM|Cutaneous mastocytosis|Cutaneous mastocytosis +C1136033|T191|PT|D47.01|ICD10CM|Cutaneous mastocytosis|Cutaneous mastocytosis +C0024901|T191|ET|D47.01|ICD10CM|Diffuse cutaneous mastocytosis|Diffuse cutaneous mastocytosis +C0042111|T191|ET|D47.01|ICD10CM|Maculopapular cutaneous mastocytosis|Maculopapular cutaneous mastocytosis +C0343115|T191|ET|D47.01|ICD10CM|Solitary mastocytoma|Solitary mastocytoma +C0263402|T047|ET|D47.01|ICD10CM|Telangiectasia macularis eruptiva perstans|Telangiectasia macularis eruptiva perstans +C0042111|T191|ET|D47.01|ICD10CM|Urticaria pigmentosa|Urticaria pigmentosa +C0272203|T191|ET|D47.02|ICD10CM|Indolent systemic mastocytosis|Indolent systemic mastocytosis +C4509020|T047|ET|D47.02|ICD10CM|Isolated bone marrow mastocytosis|Isolated bone marrow mastocytosis +C3897042|T191|ET|D47.02|ICD10CM|Smoldering systemic mastocytosis|Smoldering systemic mastocytosis +C0221013|T191|AB|D47.02|ICD10CM|Systemic mastocytosis|Systemic mastocytosis +C0221013|T191|PT|D47.02|ICD10CM|Systemic mastocytosis|Systemic mastocytosis +C4509021|T191|ET|D47.02|ICD10CM|Systemic mastocytosis, with an associated hematological non-mast cell lineage disease (SM-AHNMD)|Systemic mastocytosis, with an associated hematological non-mast cell lineage disease (SM-AHNMD) +C0272202|T191|ET|D47.09|ICD10CM|Extracutaneous mastocytoma|Extracutaneous mastocytoma +C0334664|T191|ET|D47.09|ICD10CM|Mast cell tumor NOS|Mast cell tumor NOS +C0024897|T191|ET|D47.09|ICD10CM|Mastocytoma NOS|Mastocytoma NOS +C0024899|T047|ET|D47.09|ICD10CM|Mastocytosis NOS|Mastocytosis NOS +C4480967|T191|AB|D47.09|ICD10CM|Other mast cell neoplasms of uncertain behavior|Other mast cell neoplasms of uncertain behavior +C4480967|T191|PT|D47.09|ICD10CM|Other mast cell neoplasms of uncertain behavior|Other mast cell neoplasms of uncertain behavior +C1292778|T191|PT|D47.1|ICD10|Chronic myeloproliferative disease|Chronic myeloproliferative disease +C1292778|T191|PT|D47.1|ICD10CM|Chronic myeloproliferative disease|Chronic myeloproliferative disease +C1292778|T191|AB|D47.1|ICD10CM|Chronic myeloproliferative disease|Chronic myeloproliferative disease +C0023481|T191|ET|D47.1|ICD10CM|Chronic neutrophilic leukemia|Chronic neutrophilic leukemia +C0027022|T191|ET|D47.1|ICD10CM|Myeloproliferative disease, unspecified|Myeloproliferative disease, unspecified +C1136085|T191|PT|D47.2|ICD10|Monoclonal gammopathy|Monoclonal gammopathy +C1136085|T191|PT|D47.2|ICD10CM|Monoclonal gammopathy|Monoclonal gammopathy +C1136085|T191|AB|D47.2|ICD10CM|Monoclonal gammopathy|Monoclonal gammopathy +C0026470|T191|ET|D47.2|ICD10CM|Monoclonal gammopathy of undetermined significance [MGUS]|Monoclonal gammopathy of undetermined significance [MGUS] +C0040028|T047|PT|D47.3|ICD10|Essential (haemorrhagic) thrombocythaemia|Essential (haemorrhagic) thrombocythaemia +C0040028|T047|PT|D47.3|ICD10AE|Essential (hemorrhagic) thrombocythemia|Essential (hemorrhagic) thrombocythemia +C0040028|T047|PT|D47.3|ICD10CM|Essential (hemorrhagic) thrombocythemia|Essential (hemorrhagic) thrombocythemia +C0040028|T047|AB|D47.3|ICD10CM|Essential (hemorrhagic) thrombocythemia|Essential (hemorrhagic) thrombocythemia +C0040028|T047|ET|D47.3|ICD10CM|Essential thrombocytosis|Essential thrombocytosis +C0040028|T047|ET|D47.3|ICD10CM|Idiopathic hemorrhagic thrombocythemia|Idiopathic hemorrhagic thrombocythemia +C0001815|T191|ET|D47.4|ICD10CM|Chronic idiopathic myelofibrosis|Chronic idiopathic myelofibrosis +C2873716|T191|ET|D47.4|ICD10CM|Myelofibrosis (idiopathic) (with myeloid metaplasia)|Myelofibrosis (idiopathic) (with myeloid metaplasia) +C2873717|T191|ET|D47.4|ICD10CM|Myelosclerosis (megakaryocytic) with myeloid metaplasia|Myelosclerosis (megakaryocytic) with myeloid metaplasia +C0948968|T191|PT|D47.4|ICD10CM|Osteomyelofibrosis|Osteomyelofibrosis +C0948968|T191|AB|D47.4|ICD10CM|Osteomyelofibrosis|Osteomyelofibrosis +C2873718|T191|ET|D47.4|ICD10CM|Secondary myelofibrosis in myeloproliferative disease|Secondary myelofibrosis in myeloproliferative disease +C0024314|T191|ET|D47.9|ICD10CM|Lymphoproliferative disease NOS|Lymphoproliferative disease NOS +C2873719|T191|PT|D47.9|ICD10CM|Neoplasm of uncertain behavior of lymphoid, hematopoietic and related tissue, unspecified|Neoplasm of uncertain behavior of lymphoid, hematopoietic and related tissue, unspecified +C0494214|T191|PT|D47.9|ICD10AE|Neoplasm of uncertain or unknown behavior of lymphoid, hematopoietic and related tissue, unspecified|Neoplasm of uncertain or unknown behavior of lymphoid, hematopoietic and related tissue, unspecified +C2873719|T191|AB|D47.9|ICD10CM|Neoplm of uncrt behav of lymphoid,hematpoetc & rel tiss,unsp|Neoplm of uncrt behav of lymphoid,hematpoetc & rel tiss,unsp +C2873720|T191|AB|D47.Z|ICD10CM|Oth neoplm of uncrt behav of lymphoid, hematpoetc & rel tiss|Oth neoplm of uncrt behav of lymphoid, hematpoetc & rel tiss +C2873720|T191|HT|D47.Z|ICD10CM|Other specified neoplasms of uncertain behavior of lymphoid, hematopoietic and related tissue|Other specified neoplasms of uncertain behavior of lymphoid, hematopoietic and related tissue +C0432487|T191|AB|D47.Z1|ICD10CM|Post-transplant lymphoproliferative disorder (PTLD)|Post-transplant lymphoproliferative disorder (PTLD) +C0432487|T191|PT|D47.Z1|ICD10CM|Post-transplant lymphoproliferative disorder (PTLD)|Post-transplant lymphoproliferative disorder (PTLD) +C0017531|T047|PT|D47.Z2|ICD10CM|Castleman disease|Castleman disease +C0017531|T047|AB|D47.Z2|ICD10CM|Castleman disease|Castleman disease +C2873721|T191|ET|D47.Z9|ICD10CM|Histiocytic tumors of uncertain behavior|Histiocytic tumors of uncertain behavior +C2873720|T191|AB|D47.Z9|ICD10CM|Oth neoplm of uncrt behav of lymphoid, hematpoetc & rel tiss|Oth neoplm of uncrt behav of lymphoid, hematpoetc & rel tiss +C2873720|T191|PT|D47.Z9|ICD10CM|Other specified neoplasms of uncertain behavior of lymphoid, hematopoietic and related tissue|Other specified neoplasms of uncertain behavior of lymphoid, hematopoietic and related tissue +C2873722|T191|AB|D48|ICD10CM|Neoplasm of uncertain behavior of other and unsp sites|Neoplasm of uncertain behavior of other and unsp sites +C2873722|T191|HT|D48|ICD10CM|Neoplasm of uncertain behavior of other and unspecified sites|Neoplasm of uncertain behavior of other and unspecified sites +C0494215|T191|HT|D48|ICD10AE|Neoplasm of uncertain or unknown behavior of other and unspecified sites|Neoplasm of uncertain or unknown behavior of other and unspecified sites +C0494215|T191|HT|D48|ICD10|Neoplasm of uncertain or unknown behaviour of other and unspecified sites|Neoplasm of uncertain or unknown behaviour of other and unspecified sites +C0027630|T191|PS|D48.0|ICD10|Bone and articular cartilage|Bone and articular cartilage +C0027630|T191|PT|D48.0|ICD10CM|Neoplasm of uncertain behavior of bone and articular cartilage|Neoplasm of uncertain behavior of bone and articular cartilage +C0027630|T191|AB|D48.0|ICD10CM|Neoplasm of uncertain behavior of bone/artic cartl|Neoplasm of uncertain behavior of bone/artic cartl +C0027630|T191|PX|D48.0|ICD10|Neoplasm of uncertain or unknown behavior of bone and articular cartilage|Neoplasm of uncertain or unknown behavior of bone and articular cartilage +C0154125|T191|PS|D48.1|ICD10|Connective and other soft tissue|Connective and other soft tissue +C0154125|T191|AB|D48.1|ICD10CM|Neoplasm of uncertain behavior of connctv/soft tiss|Neoplasm of uncertain behavior of connctv/soft tiss +C0154125|T191|PT|D48.1|ICD10CM|Neoplasm of uncertain behavior of connective and other soft tissue|Neoplasm of uncertain behavior of connective and other soft tissue +C2873723|T191|ET|D48.1|ICD10CM|Neoplasm of uncertain behavior of connective tissue of ear|Neoplasm of uncertain behavior of connective tissue of ear +C2873724|T191|ET|D48.1|ICD10CM|Neoplasm of uncertain behavior of connective tissue of eyelid|Neoplasm of uncertain behavior of connective tissue of eyelid +C0154125|T191|PX|D48.1|ICD10|Neoplasm of uncertain or unknown behavior of connective and other soft tissue|Neoplasm of uncertain or unknown behavior of connective and other soft tissue +C2873725|T191|ET|D48.1|ICD10CM|Stromal tumors of uncertain behavior of digestive system|Stromal tumors of uncertain behavior of digestive system +C1263904|T191|PT|D48.2|ICD10CM|Neoplasm of uncertain behavior of peripheral nerves and autonomic nervous system|Neoplasm of uncertain behavior of peripheral nerves and autonomic nervous system +C0349025|T191|PX|D48.2|ICD10|Neoplasm of uncertain or unknown behavior of peripheral nerves and autonomic nervous system|Neoplasm of uncertain or unknown behavior of peripheral nerves and autonomic nervous system +C1263904|T191|AB|D48.2|ICD10CM|Neoplm of uncrt behav of prph nerves and autonm nervous sys|Neoplm of uncrt behav of prph nerves and autonm nervous sys +C0349025|T191|PS|D48.2|ICD10|Peripheral nerves and autonomic nervous system|Peripheral nerves and autonomic nervous system +C0496953|T191|PT|D48.3|ICD10CM|Neoplasm of uncertain behavior of retroperitoneum|Neoplasm of uncertain behavior of retroperitoneum +C0496953|T191|AB|D48.3|ICD10CM|Neoplasm of uncertain behavior of retroperitoneum|Neoplasm of uncertain behavior of retroperitoneum +C0496953|T191|PX|D48.3|ICD10|Neoplasm of uncertain or unknown behavior of retroperitoneum|Neoplasm of uncertain or unknown behavior of retroperitoneum +C0496953|T191|PS|D48.3|ICD10|Retroperitoneum|Retroperitoneum +C0496954|T191|PT|D48.4|ICD10CM|Neoplasm of uncertain behavior of peritoneum|Neoplasm of uncertain behavior of peritoneum +C0496954|T191|AB|D48.4|ICD10CM|Neoplasm of uncertain behavior of peritoneum|Neoplasm of uncertain behavior of peritoneum +C0496954|T191|PX|D48.4|ICD10|Neoplasm of uncertain or unknown behavior of peritoneum|Neoplasm of uncertain or unknown behavior of peritoneum +C0496954|T191|PS|D48.4|ICD10|Peritoneum|Peritoneum +C2873726|T191|ET|D48.5|ICD10CM|Neoplasm of uncertain behavior of anal margin|Neoplasm of uncertain behavior of anal margin +C2873727|T191|ET|D48.5|ICD10CM|Neoplasm of uncertain behavior of anal skin|Neoplasm of uncertain behavior of anal skin +C0684425|T191|ET|D48.5|ICD10CM|Neoplasm of uncertain behavior of perianal skin|Neoplasm of uncertain behavior of perianal skin +C0496955|T191|PT|D48.5|ICD10CM|Neoplasm of uncertain behavior of skin|Neoplasm of uncertain behavior of skin +C0496955|T191|AB|D48.5|ICD10CM|Neoplasm of uncertain behavior of skin|Neoplasm of uncertain behavior of skin +C0684418|T191|ET|D48.5|ICD10CM|Neoplasm of uncertain behavior of skin of breast|Neoplasm of uncertain behavior of skin of breast +C0496955|T191|PX|D48.5|ICD10|Neoplasm of uncertain or unknown behavior of skin|Neoplasm of uncertain or unknown behavior of skin +C0496955|T191|PS|D48.5|ICD10|Skin|Skin +C0496956|T191|PS|D48.6|ICD10|Breast|Breast +C0010701|T191|ET|D48.6|ICD10CM|Cystosarcoma phyllodes|Cystosarcoma phyllodes +C0496956|T191|HT|D48.6|ICD10CM|Neoplasm of uncertain behavior of breast|Neoplasm of uncertain behavior of breast +C0496956|T191|AB|D48.6|ICD10CM|Neoplasm of uncertain behavior of breast|Neoplasm of uncertain behavior of breast +C2873728|T191|ET|D48.6|ICD10CM|Neoplasm of uncertain behavior of connective tissue of breast|Neoplasm of uncertain behavior of connective tissue of breast +C0496956|T191|PX|D48.6|ICD10|Neoplasm of uncertain or unknown behavior of breast|Neoplasm of uncertain or unknown behavior of breast +C2976851|T191|AB|D48.60|ICD10CM|Neoplasm of uncertain behavior of unspecified breast|Neoplasm of uncertain behavior of unspecified breast +C2976851|T191|PT|D48.60|ICD10CM|Neoplasm of uncertain behavior of unspecified breast|Neoplasm of uncertain behavior of unspecified breast +C2873729|T191|PT|D48.61|ICD10CM|Neoplasm of uncertain behavior of right breast|Neoplasm of uncertain behavior of right breast +C2873729|T191|AB|D48.61|ICD10CM|Neoplasm of uncertain behavior of right breast|Neoplasm of uncertain behavior of right breast +C2873730|T191|PT|D48.62|ICD10CM|Neoplasm of uncertain behavior of left breast|Neoplasm of uncertain behavior of left breast +C2873730|T191|AB|D48.62|ICD10CM|Neoplasm of uncertain behavior of left breast|Neoplasm of uncertain behavior of left breast +C0346549|T191|ET|D48.7|ICD10CM|Neoplasm of uncertain behavior of eye|Neoplasm of uncertain behavior of eye +C0346550|T191|ET|D48.7|ICD10CM|Neoplasm of uncertain behavior of heart|Neoplasm of uncertain behavior of heart +C2873733|T191|PT|D48.7|ICD10CM|Neoplasm of uncertain behavior of other specified sites|Neoplasm of uncertain behavior of other specified sites +C2873733|T191|AB|D48.7|ICD10CM|Neoplasm of uncertain behavior of other specified sites|Neoplasm of uncertain behavior of other specified sites +C2873732|T191|ET|D48.7|ICD10CM|Neoplasm of uncertain behavior of peripheral nerves of orbit|Neoplasm of uncertain behavior of peripheral nerves of orbit +C0496957|T191|PX|D48.7|ICD10|Neoplasm of uncertain or unknown behavior of other specified sites|Neoplasm of uncertain or unknown behavior of other specified sites +C0496957|T191|PS|D48.7|ICD10|Other specified sites|Other specified sites +C2873734|T191|AB|D48.9|ICD10CM|Neoplasm of uncertain behavior, unspecified|Neoplasm of uncertain behavior, unspecified +C2873734|T191|PT|D48.9|ICD10CM|Neoplasm of uncertain behavior, unspecified|Neoplasm of uncertain behavior, unspecified +C0694450|T191|PT|D48.9|ICD10AE|Neoplasm of uncertain or unknown behavior, unspecified|Neoplasm of uncertain or unknown behavior, unspecified +C0694450|T191|PT|D48.9|ICD10|Neoplasm of uncertain or unknown behaviour, unspecified|Neoplasm of uncertain or unknown behaviour, unspecified +C4759871|T033|ET|D49|ICD10CM|'growth' NOS|'growth' NOS +C0027651|T191|ET|D49|ICD10CM|neoplasm NOS|neoplasm NOS +C2118792|T191|AB|D49|ICD10CM|Neoplasms of unspecified behavior|Neoplasms of unspecified behavior +C2118792|T191|HT|D49|ICD10CM|Neoplasms of unspecified behavior|Neoplasms of unspecified behavior +C0027651|T191|ET|D49|ICD10CM|new growth NOS|new growth NOS +C0027651|T191|ET|D49|ICD10CM|tumor NOS|tumor NOS +C2976852|T191|HT|D49-D49|ICD10CM|Neoplasms of unspecified behavior (D49)|Neoplasms of unspecified behavior (D49) +C2873735|T191|AB|D49.0|ICD10CM|Neoplasm of unspecified behavior of digestive system|Neoplasm of unspecified behavior of digestive system +C2873735|T191|PT|D49.0|ICD10CM|Neoplasm of unspecified behavior of digestive system|Neoplasm of unspecified behavior of digestive system +C0684916|T191|AB|D49.1|ICD10CM|Neoplasm of unspecified behavior of respiratory system|Neoplasm of unspecified behavior of respiratory system +C0684916|T191|PT|D49.1|ICD10CM|Neoplasm of unspecified behavior of respiratory system|Neoplasm of unspecified behavior of respiratory system +C2873737|T191|AB|D49.2|ICD10CM|Neoplasm of unsp behavior of bone, soft tissue, and skin|Neoplasm of unsp behavior of bone, soft tissue, and skin +C2873737|T191|PT|D49.2|ICD10CM|Neoplasm of unspecified behavior of bone, soft tissue, and skin|Neoplasm of unspecified behavior of bone, soft tissue, and skin +C2873738|T191|AB|D49.3|ICD10CM|Neoplasm of unspecified behavior of breast|Neoplasm of unspecified behavior of breast +C2873738|T191|PT|D49.3|ICD10CM|Neoplasm of unspecified behavior of breast|Neoplasm of unspecified behavior of breast +C2873739|T191|AB|D49.4|ICD10CM|Neoplasm of unspecified behavior of bladder|Neoplasm of unspecified behavior of bladder +C2873739|T191|PT|D49.4|ICD10CM|Neoplasm of unspecified behavior of bladder|Neoplasm of unspecified behavior of bladder +C2873740|T191|AB|D49.5|ICD10CM|Neoplasm of unsp behavior of other genitourinary organs|Neoplasm of unsp behavior of other genitourinary organs +C2873740|T191|HT|D49.5|ICD10CM|Neoplasm of unspecified behavior of other genitourinary organs|Neoplasm of unspecified behavior of other genitourinary organs +C4267882|T191|AB|D49.51|ICD10CM|Neoplasm of unspecified behavior of kidney|Neoplasm of unspecified behavior of kidney +C4267882|T191|HT|D49.51|ICD10CM|Neoplasm of unspecified behavior of kidney|Neoplasm of unspecified behavior of kidney +C4267883|T191|AB|D49.511|ICD10CM|Neoplasm of unspecified behavior of right kidney|Neoplasm of unspecified behavior of right kidney +C4267883|T191|PT|D49.511|ICD10CM|Neoplasm of unspecified behavior of right kidney|Neoplasm of unspecified behavior of right kidney +C4267884|T191|AB|D49.512|ICD10CM|Neoplasm of unspecified behavior of left kidney|Neoplasm of unspecified behavior of left kidney +C4267884|T191|PT|D49.512|ICD10CM|Neoplasm of unspecified behavior of left kidney|Neoplasm of unspecified behavior of left kidney +C4267885|T191|AB|D49.519|ICD10CM|Neoplasm of unspecified behavior of unspecified kidney|Neoplasm of unspecified behavior of unspecified kidney +C4267885|T191|PT|D49.519|ICD10CM|Neoplasm of unspecified behavior of unspecified kidney|Neoplasm of unspecified behavior of unspecified kidney +C2873740|T191|PT|D49.59|ICD10CM|Neoplasm of unspecified behavior of other genitourinary organ|Neoplasm of unspecified behavior of other genitourinary organ +C2873740|T191|AB|D49.59|ICD10CM|Neoplasm of unspecified behavior of other GU organ|Neoplasm of unspecified behavior of other GU organ +C2873741|T191|AB|D49.6|ICD10CM|Neoplasm of unspecified behavior of brain|Neoplasm of unspecified behavior of brain +C2873741|T191|PT|D49.6|ICD10CM|Neoplasm of unspecified behavior of brain|Neoplasm of unspecified behavior of brain +C2873742|T191|PT|D49.7|ICD10CM|Neoplasm of unspecified behavior of endocrine glands and other parts of nervous system|Neoplasm of unspecified behavior of endocrine glands and other parts of nervous system +C2873742|T191|AB|D49.7|ICD10CM|Neoplm of unsp behav of endo glands and oth prt nervous sys|Neoplm of unsp behav of endo glands and oth prt nervous sys +C2873743|T191|HT|D49.8|ICD10CM|Neoplasm of unspecified behavior of other specified sites|Neoplasm of unspecified behavior of other specified sites +C2873743|T191|AB|D49.8|ICD10CM|Neoplasm of unspecified behavior of other specified sites|Neoplasm of unspecified behavior of other specified sites +C2712912|T033|ET|D49.81|ICD10CM|Dark area on retina|Dark area on retina +C2873744|T191|AB|D49.81|ICD10CM|Neoplasm of unspecified behavior of retina and choroid|Neoplasm of unspecified behavior of retina and choroid +C2873744|T191|PT|D49.81|ICD10CM|Neoplasm of unspecified behavior of retina and choroid|Neoplasm of unspecified behavior of retina and choroid +C2712913|T047|ET|D49.81|ICD10CM|Retinal freckle|Retinal freckle +C2873743|T191|AB|D49.89|ICD10CM|Neoplasm of unspecified behavior of other specified sites|Neoplasm of unspecified behavior of other specified sites +C2873743|T191|PT|D49.89|ICD10CM|Neoplasm of unspecified behavior of other specified sites|Neoplasm of unspecified behavior of other specified sites +C2873745|T191|AB|D49.9|ICD10CM|Neoplasm of unspecified behavior of unspecified site|Neoplasm of unspecified behavior of unspecified site +C2873745|T191|PT|D49.9|ICD10CM|Neoplasm of unspecified behavior of unspecified site|Neoplasm of unspecified behavior of unspecified site +C0008272|T047|ET|D50|ICD10CM|asiderotic anemia|asiderotic anemia +C0002884|T047|ET|D50|ICD10CM|hypochromic anemia|hypochromic anemia +C0162316|T047|HT|D50|ICD10|Iron deficiency anaemia|Iron deficiency anaemia +C0162316|T047|HT|D50|ICD10AE|Iron deficiency anemia|Iron deficiency anemia +C0162316|T047|HT|D50|ICD10CM|Iron deficiency anemia|Iron deficiency anemia +C0162316|T047|AB|D50|ICD10CM|Iron deficiency anemia|Iron deficiency anemia +C0271903|T047|HT|D50-D53|ICD10CM|Nutritional anemias (D50-D53)|Nutritional anemias (D50-D53) +C0271903|T047|HT|D50-D53.9|ICD10|Nutritional anaemias|Nutritional anaemias +C0271903|T047|HT|D50-D53.9|ICD10AE|Nutritional anemias|Nutritional anemias +C0694451|T047|HT|D50-D89.9|ICD10|Diseases of blood and blood-forming organs and certain disorders involving the immune mechanisms|Diseases of blood and blood-forming organs and certain disorders involving the immune mechanisms +C0154286|T047|PT|D50.0|ICD10|Iron deficiency anaemia secondary to blood loss (chronic)|Iron deficiency anaemia secondary to blood loss (chronic) +C0154286|T047|PT|D50.0|ICD10AE|Iron deficiency anemia secondary to blood loss (chronic)|Iron deficiency anemia secondary to blood loss (chronic) +C0154286|T047|PT|D50.0|ICD10CM|Iron deficiency anemia secondary to blood loss (chronic)|Iron deficiency anemia secondary to blood loss (chronic) +C0154286|T047|AB|D50.0|ICD10CM|Iron deficiency anemia secondary to blood loss (chronic)|Iron deficiency anemia secondary to blood loss (chronic) +C0154286|T047|ET|D50.0|ICD10CM|Posthemorrhagic anemia (chronic)|Posthemorrhagic anemia (chronic) +C0032249|T047|ET|D50.1|ICD10CM|Kelly-Paterson syndrome|Kelly-Paterson syndrome +C0032249|T047|ET|D50.1|ICD10CM|Plummer-Vinson syndrome|Plummer-Vinson syndrome +C0032249|T047|PT|D50.1|ICD10CM|Sideropenic dysphagia|Sideropenic dysphagia +C0032249|T047|AB|D50.1|ICD10CM|Sideropenic dysphagia|Sideropenic dysphagia +C0032249|T047|PT|D50.1|ICD10|Sideropenic dysphagia|Sideropenic dysphagia +C2873746|T047|ET|D50.8|ICD10CM|Iron deficiency anemia due to inadequate dietary iron intake|Iron deficiency anemia due to inadequate dietary iron intake +C0477300|T047|PT|D50.8|ICD10|Other iron deficiency anaemias|Other iron deficiency anaemias +C0477300|T047|PT|D50.8|ICD10CM|Other iron deficiency anemias|Other iron deficiency anemias +C0477300|T047|AB|D50.8|ICD10CM|Other iron deficiency anemias|Other iron deficiency anemias +C0477300|T047|PT|D50.8|ICD10AE|Other iron deficiency anemias|Other iron deficiency anemias +C0162316|T047|PT|D50.9|ICD10|Iron deficiency anaemia, unspecified|Iron deficiency anaemia, unspecified +C0162316|T047|PT|D50.9|ICD10AE|Iron deficiency anemia, unspecified|Iron deficiency anemia, unspecified +C0162316|T047|PT|D50.9|ICD10CM|Iron deficiency anemia, unspecified|Iron deficiency anemia, unspecified +C0162316|T047|AB|D50.9|ICD10CM|Iron deficiency anemia, unspecified|Iron deficiency anemia, unspecified +C2004521|T047|HT|D51|ICD10|Vitamin B12 deficiency anaemia|Vitamin B12 deficiency anaemia +C2004521|T047|HT|D51|ICD10AE|Vitamin B12 deficiency anemia|Vitamin B12 deficiency anemia +C2004521|T047|HT|D51|ICD10CM|Vitamin B12 deficiency anemia|Vitamin B12 deficiency anemia +C2004521|T047|AB|D51|ICD10CM|Vitamin B12 deficiency anemia|Vitamin B12 deficiency anemia +C0002892|T047|ET|D51.0|ICD10CM|Addison anemia|Addison anemia +C0002892|T047|ET|D51.0|ICD10CM|Biermer anemia|Biermer anemia +C0340957|T019|ET|D51.0|ICD10CM|Congenital intrinsic factor deficiency|Congenital intrinsic factor deficiency +C1306856|T047|ET|D51.0|ICD10CM|Pernicious (congenital) anemia|Pernicious (congenital) anemia +C0494217|T047|AB|D51.0|ICD10CM|Vitamin B12 defic anemia due to intrinsic factor deficiency|Vitamin B12 defic anemia due to intrinsic factor deficiency +C0494217|T047|PT|D51.0|ICD10|Vitamin B12 deficiency anaemia due to intrinsic factor deficiency|Vitamin B12 deficiency anaemia due to intrinsic factor deficiency +C0494217|T047|PT|D51.0|ICD10CM|Vitamin B12 deficiency anemia due to intrinsic factor deficiency|Vitamin B12 deficiency anemia due to intrinsic factor deficiency +C0494217|T047|PT|D51.0|ICD10AE|Vitamin B12 deficiency anemia due to intrinsic factor deficiency|Vitamin B12 deficiency anemia due to intrinsic factor deficiency +C4551825|T047|ET|D51.1|ICD10CM|Imerslund (Gräsbeck) syndrome|Imerslund (Gräsbeck) syndrome +C1387565|T047|ET|D51.1|ICD10CM|Megaloblastic hereditary anemia|Megaloblastic hereditary anemia +C0494218|T047|AB|D51.1|ICD10CM|Vit B12 defic anemia d/t slctv vit B12 malabsorp w protein|Vit B12 defic anemia d/t slctv vit B12 malabsorp w protein +C0494218|T047|PT|D51.1|ICD10|Vitamin B12 deficiency anaemia due to selective vitamin B12 malabsorption with proteinuria|Vitamin B12 deficiency anaemia due to selective vitamin B12 malabsorption with proteinuria +C0494218|T047|PT|D51.1|ICD10CM|Vitamin B12 deficiency anemia due to selective vitamin B12 malabsorption with proteinuria|Vitamin B12 deficiency anemia due to selective vitamin B12 malabsorption with proteinuria +C0494218|T047|PT|D51.1|ICD10AE|Vitamin B12 deficiency anemia due to selective vitamin B12 malabsorption with proteinuria|Vitamin B12 deficiency anemia due to selective vitamin B12 malabsorption with proteinuria +C0342701|T047|PT|D51.2|ICD10CM|Transcobalamin II deficiency|Transcobalamin II deficiency +C0342701|T047|AB|D51.2|ICD10CM|Transcobalamin II deficiency|Transcobalamin II deficiency +C0342701|T047|PT|D51.2|ICD10|Transcobalamin II deficiency|Transcobalamin II deficiency +C0477301|T047|PT|D51.3|ICD10|Other dietary vitamin B12 deficiency anaemia|Other dietary vitamin B12 deficiency anaemia +C0477301|T047|PT|D51.3|ICD10AE|Other dietary vitamin B12 deficiency anemia|Other dietary vitamin B12 deficiency anemia +C0477301|T047|PT|D51.3|ICD10CM|Other dietary vitamin B12 deficiency anemia|Other dietary vitamin B12 deficiency anemia +C0477301|T047|AB|D51.3|ICD10CM|Other dietary vitamin B12 deficiency anemia|Other dietary vitamin B12 deficiency anemia +C0271959|T047|ET|D51.3|ICD10CM|Vegan anemia|Vegan anemia +C0154289|T047|PT|D51.8|ICD10|Other vitamin B12 deficiency anaemias|Other vitamin B12 deficiency anaemias +C0154289|T047|PT|D51.8|ICD10AE|Other vitamin B12 deficiency anemias|Other vitamin B12 deficiency anemias +C0154289|T047|PT|D51.8|ICD10CM|Other vitamin B12 deficiency anemias|Other vitamin B12 deficiency anemias +C0154289|T047|AB|D51.8|ICD10CM|Other vitamin B12 deficiency anemias|Other vitamin B12 deficiency anemias +C2004521|T047|PT|D51.9|ICD10|Vitamin B12 deficiency anaemia, unspecified|Vitamin B12 deficiency anaemia, unspecified +C2004521|T047|PT|D51.9|ICD10AE|Vitamin B12 deficiency anemia, unspecified|Vitamin B12 deficiency anemia, unspecified +C2004521|T047|PT|D51.9|ICD10CM|Vitamin B12 deficiency anemia, unspecified|Vitamin B12 deficiency anemia, unspecified +C2004521|T047|AB|D51.9|ICD10CM|Vitamin B12 deficiency anemia, unspecified|Vitamin B12 deficiency anemia, unspecified +C0151482|T047|HT|D52|ICD10|Folate deficiency anaemia|Folate deficiency anaemia +C0151482|T047|HT|D52|ICD10AE|Folate deficiency anemia|Folate deficiency anemia +C0151482|T047|HT|D52|ICD10CM|Folate deficiency anemia|Folate deficiency anemia +C0151482|T047|AB|D52|ICD10CM|Folate deficiency anemia|Folate deficiency anemia +C0271937|T047|PT|D52.0|ICD10|Dietary folate deficiency anaemia|Dietary folate deficiency anaemia +C0271937|T047|PT|D52.0|ICD10CM|Dietary folate deficiency anemia|Dietary folate deficiency anemia +C0271937|T047|AB|D52.0|ICD10CM|Dietary folate deficiency anemia|Dietary folate deficiency anemia +C0271937|T047|PT|D52.0|ICD10AE|Dietary folate deficiency anemia|Dietary folate deficiency anemia +C1366395|T047|ET|D52.0|ICD10CM|Nutritional megaloblastic anemia|Nutritional megaloblastic anemia +C0271936|T047|PT|D52.1|ICD10|Drug-induced folate deficiency anaemia|Drug-induced folate deficiency anaemia +C0271936|T047|PT|D52.1|ICD10AE|Drug-induced folate deficiency anemia|Drug-induced folate deficiency anemia +C0271936|T047|PT|D52.1|ICD10CM|Drug-induced folate deficiency anemia|Drug-induced folate deficiency anemia +C0271936|T047|AB|D52.1|ICD10CM|Drug-induced folate deficiency anemia|Drug-induced folate deficiency anemia +C0477302|T047|PT|D52.8|ICD10|Other folate deficiency anaemias|Other folate deficiency anaemias +C0477302|T047|PT|D52.8|ICD10CM|Other folate deficiency anemias|Other folate deficiency anemias +C0477302|T047|AB|D52.8|ICD10CM|Other folate deficiency anemias|Other folate deficiency anemias +C0477302|T047|PT|D52.8|ICD10AE|Other folate deficiency anemias|Other folate deficiency anemias +C0151482|T047|PT|D52.9|ICD10|Folate deficiency anaemia, unspecified|Folate deficiency anaemia, unspecified +C0151482|T047|PT|D52.9|ICD10AE|Folate deficiency anemia, unspecified|Folate deficiency anemia, unspecified +C0151482|T047|PT|D52.9|ICD10CM|Folate deficiency anemia, unspecified|Folate deficiency anemia, unspecified +C0151482|T047|AB|D52.9|ICD10CM|Folate deficiency anemia, unspecified|Folate deficiency anemia, unspecified +C0151482|T047|ET|D52.9|ICD10CM|Folic acid deficiency anemia NOS|Folic acid deficiency anemia NOS +C4290087|T047|ET|D53|ICD10CM|megaloblastic anemia unresponsive to vitamin B12 or folate therapy|megaloblastic anemia unresponsive to vitamin B12 or folate therapy +C0494219|T047|HT|D53|ICD10|Other nutritional anaemias|Other nutritional anaemias +C0494219|T047|HT|D53|ICD10AE|Other nutritional anemias|Other nutritional anemias +C0494219|T047|AB|D53|ICD10CM|Other nutritional anemias|Other nutritional anemias +C0494219|T047|HT|D53|ICD10CM|Other nutritional anemias|Other nutritional anemias +C0272022|T047|ET|D53.0|ICD10CM|Amino-acid deficiency anemia|Amino-acid deficiency anemia +C1387582|T047|ET|D53.0|ICD10CM|Orotaciduric anemia|Orotaciduric anemia +C0154290|T047|PT|D53.0|ICD10|Protein deficiency anaemia|Protein deficiency anaemia +C0154290|T047|PT|D53.0|ICD10CM|Protein deficiency anemia|Protein deficiency anemia +C0154290|T047|AB|D53.0|ICD10CM|Protein deficiency anemia|Protein deficiency anemia +C0154290|T047|PT|D53.0|ICD10AE|Protein deficiency anemia|Protein deficiency anemia +C0002888|T047|ET|D53.1|ICD10CM|Megaloblastic anemia NOS|Megaloblastic anemia NOS +C0869045|T047|PT|D53.1|ICD10|Other megaloblastic anaemias, not elsewhere classified|Other megaloblastic anaemias, not elsewhere classified +C0869045|T047|PT|D53.1|ICD10AE|Other megaloblastic anemias, not elsewhere classified|Other megaloblastic anemias, not elsewhere classified +C0869045|T047|PT|D53.1|ICD10CM|Other megaloblastic anemias, not elsewhere classified|Other megaloblastic anemias, not elsewhere classified +C0869045|T047|AB|D53.1|ICD10CM|Other megaloblastic anemias, not elsewhere classified|Other megaloblastic anemias, not elsewhere classified +C0272017|T047|PT|D53.2|ICD10|Scorbutic anaemia|Scorbutic anaemia +C0272017|T047|PT|D53.2|ICD10AE|Scorbutic anemia|Scorbutic anemia +C0272017|T047|PT|D53.2|ICD10CM|Scorbutic anemia|Scorbutic anemia +C0272017|T047|AB|D53.2|ICD10CM|Scorbutic anemia|Scorbutic anemia +C2873748|T047|ET|D53.8|ICD10CM|Anemia associated with deficiency of copper|Anemia associated with deficiency of copper +C2873749|T047|ET|D53.8|ICD10CM|Anemia associated with deficiency of molybdenum|Anemia associated with deficiency of molybdenum +C2873750|T047|ET|D53.8|ICD10CM|Anemia associated with deficiency of zinc|Anemia associated with deficiency of zinc +C0494220|T047|PT|D53.8|ICD10|Other specified nutritional anaemias|Other specified nutritional anaemias +C0494220|T047|PT|D53.8|ICD10AE|Other specified nutritional anemias|Other specified nutritional anemias +C0494220|T047|PT|D53.8|ICD10CM|Other specified nutritional anemias|Other specified nutritional anemias +C0494220|T047|AB|D53.8|ICD10CM|Other specified nutritional anemias|Other specified nutritional anemias +C0494221|T047|PT|D53.9|ICD10|Nutritional anaemia, unspecified|Nutritional anaemia, unspecified +C0494221|T047|PT|D53.9|ICD10CM|Nutritional anemia, unspecified|Nutritional anemia, unspecified +C0494221|T047|AB|D53.9|ICD10CM|Nutritional anemia, unspecified|Nutritional anemia, unspecified +C0494221|T047|PT|D53.9|ICD10AE|Nutritional anemia, unspecified|Nutritional anemia, unspecified +C0581384|T047|ET|D53.9|ICD10CM|Simple chronic anemia|Simple chronic anemia +C0494226|T047|HT|D55|ICD10|Anaemia due to enzyme disorders|Anaemia due to enzyme disorders +C0494226|T047|HT|D55|ICD10CM|Anemia due to enzyme disorders|Anemia due to enzyme disorders +C0494226|T047|AB|D55|ICD10CM|Anemia due to enzyme disorders|Anemia due to enzyme disorders +C0494226|T047|HT|D55|ICD10AE|Anemia due to enzyme disorders|Anemia due to enzyme disorders +C0002878|T047|HT|D55-D59|ICD10CM|Hemolytic anemias (D55-D59)|Hemolytic anemias (D55-D59) +C0002878|T047|HT|D55-D59.9|ICD10|Haemolytic anaemias|Haemolytic anaemias +C0002878|T047|HT|D55-D59.9|ICD10AE|Hemolytic anemias|Hemolytic anemias +C0237987|T047|PT|D55.0|ICD10|Anaemia due to glucose-6-phosphate dehydrogenase [G6PD] deficiency|Anaemia due to glucose-6-phosphate dehydrogenase [G6PD] deficiency +C0237987|T047|PT|D55.0|ICD10AE|Anemia due to glucose-6-phosphate dehydrogenase [G6PD] deficiency|Anemia due to glucose-6-phosphate dehydrogenase [G6PD] deficiency +C0237987|T047|PT|D55.0|ICD10CM|Anemia due to glucose-6-phosphate dehydrogenase [G6PD] deficiency|Anemia due to glucose-6-phosphate dehydrogenase [G6PD] deficiency +C0237987|T047|AB|D55.0|ICD10CM|Anemia due to glucose-6-phosphate dehydrogenase deficiency|Anemia due to glucose-6-phosphate dehydrogenase deficiency +C0015702|T047|ET|D55.0|ICD10CM|Favism|Favism +C0237987|T047|ET|D55.0|ICD10CM|G6PD deficiency anemia|G6PD deficiency anemia +C0494224|T047|PT|D55.1|ICD10|Anaemia due to other disorders of glutathione metabolism|Anaemia due to other disorders of glutathione metabolism +C2873752|T047|ET|D55.1|ICD10CM|Anemia (due to) hemolytic nonspherocytic (hereditary), type I|Anemia (due to) hemolytic nonspherocytic (hereditary), type I +C0494224|T047|PT|D55.1|ICD10CM|Anemia due to other disorders of glutathione metabolism|Anemia due to other disorders of glutathione metabolism +C0494224|T047|AB|D55.1|ICD10CM|Anemia due to other disorders of glutathione metabolism|Anemia due to other disorders of glutathione metabolism +C0494224|T047|PT|D55.1|ICD10AE|Anemia due to other disorders of glutathione metabolism|Anemia due to other disorders of glutathione metabolism +C0494225|T047|PT|D55.2|ICD10|Anaemia due to disorders of glycolytic enzymes|Anaemia due to disorders of glycolytic enzymes +C0494225|T047|PT|D55.2|ICD10AE|Anemia due to disorders of glycolytic enzymes|Anemia due to disorders of glycolytic enzymes +C0494225|T047|PT|D55.2|ICD10CM|Anemia due to disorders of glycolytic enzymes|Anemia due to disorders of glycolytic enzymes +C0494225|T047|AB|D55.2|ICD10CM|Anemia due to disorders of glycolytic enzymes|Anemia due to disorders of glycolytic enzymes +C2171220|T047|ET|D55.2|ICD10CM|Hemolytic nonspherocytic (hereditary) anemia, type II|Hemolytic nonspherocytic (hereditary) anemia, type II +C0272063|T047|ET|D55.2|ICD10CM|Hexokinase deficiency anemia|Hexokinase deficiency anemia +C2873753|T047|ET|D55.2|ICD10CM|Pyruvate kinase [PK] deficiency anemia|Pyruvate kinase [PK] deficiency anemia +C1387506|T047|ET|D55.2|ICD10CM|Triose-phosphate isomerase deficiency anemia|Triose-phosphate isomerase deficiency anemia +C0475533|T047|PT|D55.3|ICD10|Anaemia due to disorders of nucleotide metabolism|Anaemia due to disorders of nucleotide metabolism +C0475533|T047|PT|D55.3|ICD10AE|Anemia due to disorders of nucleotide metabolism|Anemia due to disorders of nucleotide metabolism +C0475533|T047|PT|D55.3|ICD10CM|Anemia due to disorders of nucleotide metabolism|Anemia due to disorders of nucleotide metabolism +C0475533|T047|AB|D55.3|ICD10CM|Anemia due to disorders of nucleotide metabolism|Anemia due to disorders of nucleotide metabolism +C0477305|T047|PT|D55.8|ICD10|Other anaemias due to enzyme disorders|Other anaemias due to enzyme disorders +C0477305|T047|PT|D55.8|ICD10CM|Other anemias due to enzyme disorders|Other anemias due to enzyme disorders +C0477305|T047|AB|D55.8|ICD10CM|Other anemias due to enzyme disorders|Other anemias due to enzyme disorders +C0477305|T047|PT|D55.8|ICD10AE|Other anemias due to enzyme disorders|Other anemias due to enzyme disorders +C0494226|T047|PT|D55.9|ICD10|Anaemia due to enzyme disorder, unspecified|Anaemia due to enzyme disorder, unspecified +C0494226|T047|PT|D55.9|ICD10CM|Anemia due to enzyme disorder, unspecified|Anemia due to enzyme disorder, unspecified +C0494226|T047|AB|D55.9|ICD10CM|Anemia due to enzyme disorder, unspecified|Anemia due to enzyme disorder, unspecified +C0494226|T047|PT|D55.9|ICD10AE|Anemia due to enzyme disorder, unspecified|Anemia due to enzyme disorder, unspecified +C0039730|T047|HT|D56|ICD10|Thalassaemia|Thalassaemia +C0039730|T047|HT|D56|ICD10AE|Thalassemia|Thalassemia +C0039730|T047|HT|D56|ICD10CM|Thalassemia|Thalassemia +C0039730|T047|AB|D56|ICD10CM|Thalassemia|Thalassemia +C0002312|T047|PT|D56.0|ICD10|Alpha thalassaemia|Alpha thalassaemia +C0002312|T047|PT|D56.0|ICD10AE|Alpha thalassemia|Alpha thalassemia +C0002312|T047|PT|D56.0|ICD10CM|Alpha thalassemia|Alpha thalassemia +C0002312|T047|AB|D56.0|ICD10CM|Alpha thalassemia|Alpha thalassemia +C0272005|T047|ET|D56.0|ICD10CM|Alpha thalassemia major|Alpha thalassemia major +C3161173|T047|ET|D56.0|ICD10CM|Hemoglobin H Constant Spring|Hemoglobin H Constant Spring +C0002312|T047|ET|D56.0|ICD10CM|Hemoglobin H disease|Hemoglobin H disease +C3161175|T047|ET|D56.0|ICD10CM|Hydrops fetalis due to alpha thalassemia|Hydrops fetalis due to alpha thalassemia +C2873754|T047|ET|D56.0|ICD10CM|Severe alpha thalassemia|Severe alpha thalassemia +C2873755|T047|ET|D56.0|ICD10CM|Triple gene defect alpha thalassemia|Triple gene defect alpha thalassemia +C0005283|T047|PT|D56.1|ICD10|Beta thalassaemia|Beta thalassaemia +C0005283|T047|PT|D56.1|ICD10CM|Beta thalassemia|Beta thalassemia +C0005283|T047|AB|D56.1|ICD10CM|Beta thalassemia|Beta thalassemia +C0005283|T047|PT|D56.1|ICD10AE|Beta thalassemia|Beta thalassemia +C0002875|T047|ET|D56.1|ICD10CM|Beta thalassemia major|Beta thalassemia major +C0002875|T047|ET|D56.1|ICD10CM|Cooley's anemia|Cooley's anemia +C0002875|T047|ET|D56.1|ICD10CM|Homozygous beta thalassemia|Homozygous beta thalassemia +C2873756|T047|ET|D56.1|ICD10CM|Severe beta thalassemia|Severe beta thalassemia +C0271979|T047|ET|D56.1|ICD10CM|Thalassemia intermedia|Thalassemia intermedia +C0002875|T047|ET|D56.1|ICD10CM|Thalassemia major|Thalassemia major +C0271985|T047|PT|D56.2|ICD10|Delta-beta thalassaemia|Delta-beta thalassaemia +C0271985|T047|PT|D56.2|ICD10CM|Delta-beta thalassemia|Delta-beta thalassemia +C0271985|T047|AB|D56.2|ICD10CM|Delta-beta thalassemia|Delta-beta thalassemia +C0271985|T047|PT|D56.2|ICD10AE|Delta-beta thalassemia|Delta-beta thalassemia +C2873757|T033|ET|D56.2|ICD10CM|Homozygous delta-beta thalassemia|Homozygous delta-beta thalassemia +C1260397|T047|ET|D56.3|ICD10CM|Alpha thalassemia minor|Alpha thalassemia minor +C2062366|T047|ET|D56.3|ICD10CM|Alpha thalassemia silent carrier|Alpha thalassemia silent carrier +C0472762|T047|ET|D56.3|ICD10CM|Alpha thalassemia trait|Alpha thalassemia trait +C0869532|T047|ET|D56.3|ICD10CM|Beta thalassemia minor|Beta thalassemia minor +C0878521|T047|ET|D56.3|ICD10CM|Beta thalassemia trait|Beta thalassemia trait +C2873758|T047|ET|D56.3|ICD10CM|Delta-beta thalassemia minor|Delta-beta thalassemia minor +C3161176|T047|ET|D56.3|ICD10CM|Delta-beta thalassemia trait|Delta-beta thalassemia trait +C0702157|T047|PT|D56.3|ICD10|Thalassaemia trait|Thalassaemia trait +C0085578|T047|PT|D56.3|ICD10CM|Thalassemia minor|Thalassemia minor +C0085578|T047|AB|D56.3|ICD10CM|Thalassemia minor|Thalassemia minor +C0702157|T047|PT|D56.3|ICD10AE|Thalassemia trait|Thalassemia trait +C0702157|T047|ET|D56.3|ICD10CM|Thalassemia trait NOS|Thalassemia trait NOS +C0019025|T047|PT|D56.4|ICD10|Hereditary persistence of fetal haemoglobin [HPFH]|Hereditary persistence of fetal haemoglobin [HPFH] +C0019025|T047|PT|D56.4|ICD10CM|Hereditary persistence of fetal hemoglobin [HPFH]|Hereditary persistence of fetal hemoglobin [HPFH] +C0019025|T047|AB|D56.4|ICD10CM|Hereditary persistence of fetal hemoglobin [HPFH]|Hereditary persistence of fetal hemoglobin [HPFH] +C0019025|T047|PT|D56.4|ICD10AE|Hereditary persistence of fetal hemoglobin [HPFH]|Hereditary persistence of fetal hemoglobin [HPFH] +C0472777|T047|AB|D56.5|ICD10CM|Hemoglobin E-beta thalassemia|Hemoglobin E-beta thalassemia +C0472777|T047|PT|D56.5|ICD10CM|Hemoglobin E-beta thalassemia|Hemoglobin E-beta thalassemia +C3161373|T047|ET|D56.8|ICD10CM|Dominant thalassemia|Dominant thalassemia +C0221020|T047|ET|D56.8|ICD10CM|Hemoglobin C thalassemia|Hemoglobin C thalassemia +C0865233|T047|ET|D56.8|ICD10CM|Mixed thalassemia|Mixed thalassemia +C0477306|T047|PT|D56.8|ICD10|Other thalassaemias|Other thalassaemias +C0477306|T047|PT|D56.8|ICD10CM|Other thalassemias|Other thalassemias +C0477306|T047|AB|D56.8|ICD10CM|Other thalassemias|Other thalassemias +C0477306|T047|PT|D56.8|ICD10AE|Other thalassemias|Other thalassemias +C0272086|T047|ET|D56.8|ICD10CM|Thalassemia with other hemoglobinopathy|Thalassemia with other hemoglobinopathy +C0857815|T047|ET|D56.9|ICD10CM|Mediterranean anemia (with other hemoglobinopathy)|Mediterranean anemia (with other hemoglobinopathy) +C0039730|T047|PT|D56.9|ICD10|Thalassaemia, unspecified|Thalassaemia, unspecified +C0039730|T047|PT|D56.9|ICD10AE|Thalassemia, unspecified|Thalassemia, unspecified +C0039730|T047|PT|D56.9|ICD10CM|Thalassemia, unspecified|Thalassemia, unspecified +C0039730|T047|AB|D56.9|ICD10CM|Thalassemia, unspecified|Thalassemia, unspecified +C0002895|T047|AB|D57|ICD10CM|Sickle-cell disorders|Sickle-cell disorders +C0002895|T047|HT|D57|ICD10CM|Sickle-cell disorders|Sickle-cell disorders +C0002895|T047|HT|D57|ICD10|Sickle-cell disorders|Sickle-cell disorders +C0238425|T047|HT|D57.0|ICD10CM|Hb-SS disease with crisis|Hb-SS disease with crisis +C0238425|T047|AB|D57.0|ICD10CM|Hb-SS disease with crisis|Hb-SS disease with crisis +C2873760|T047|ET|D57.0|ICD10CM|Hb-SS disease with vasoocclusive pain|Hb-SS disease with vasoocclusive pain +C0238425|T047|PT|D57.0|ICD10|Sickle-cell anaemia with crisis|Sickle-cell anaemia with crisis +C0238425|T047|PT|D57.0|ICD10AE|Sickle-cell anemia with crisis|Sickle-cell anemia with crisis +C0238425|T047|ET|D57.0|ICD10CM|Sickle-cell disease NOS with crisis|Sickle-cell disease NOS with crisis +C0238425|T047|AB|D57.00|ICD10CM|Hb-SS disease with crisis, unspecified|Hb-SS disease with crisis, unspecified +C0238425|T047|PT|D57.00|ICD10CM|Hb-SS disease with crisis, unspecified|Hb-SS disease with crisis, unspecified +C2873761|T047|AB|D57.01|ICD10CM|Hb-SS disease with acute chest syndrome|Hb-SS disease with acute chest syndrome +C2873761|T047|PT|D57.01|ICD10CM|Hb-SS disease with acute chest syndrome|Hb-SS disease with acute chest syndrome +C2873762|T047|AB|D57.02|ICD10CM|Hb-SS disease with splenic sequestration|Hb-SS disease with splenic sequestration +C2873762|T047|PT|D57.02|ICD10CM|Hb-SS disease with splenic sequestration|Hb-SS disease with splenic sequestration +C0272078|T047|ET|D57.1|ICD10CM|Hb-SS disease without crisis|Hb-SS disease without crisis +C0494228|T047|PT|D57.1|ICD10|Sickle-cell anaemia without crisis|Sickle-cell anaemia without crisis +C0002895|T047|ET|D57.1|ICD10CM|Sickle-cell anemia NOS|Sickle-cell anemia NOS +C0494228|T047|PT|D57.1|ICD10AE|Sickle-cell anemia without crisis|Sickle-cell anemia without crisis +C0002895|T047|ET|D57.1|ICD10CM|Sickle-cell disease NOS|Sickle-cell disease NOS +C0272078|T047|AB|D57.1|ICD10CM|Sickle-cell disease without crisis|Sickle-cell disease without crisis +C0272078|T047|PT|D57.1|ICD10CM|Sickle-cell disease without crisis|Sickle-cell disease without crisis +C0002895|T047|ET|D57.1|ICD10CM|Sickle-cell disorder NOS|Sickle-cell disorder NOS +C0494229|T047|PT|D57.2|ICD10|Double heterozygous sickling disorders|Double heterozygous sickling disorders +C0019034|T047|ET|D57.2|ICD10CM|Hb-S/Hb-C disease|Hb-S/Hb-C disease +C0019034|T047|ET|D57.2|ICD10CM|Hb-SC disease|Hb-SC disease +C0019034|T047|AB|D57.2|ICD10CM|Sickle-cell/Hb-C disease|Sickle-cell/Hb-C disease +C0019034|T047|HT|D57.2|ICD10CM|Sickle-cell/Hb-C disease|Sickle-cell/Hb-C disease +C0019034|T047|AB|D57.20|ICD10CM|Sickle-cell/Hb-C disease without crisis|Sickle-cell/Hb-C disease without crisis +C0019034|T047|PT|D57.20|ICD10CM|Sickle-cell/Hb-C disease without crisis|Sickle-cell/Hb-C disease without crisis +C1260398|T047|HT|D57.21|ICD10CM|Sickle-cell/Hb-C disease with crisis|Sickle-cell/Hb-C disease with crisis +C1260398|T047|AB|D57.21|ICD10CM|Sickle-cell/Hb-C disease with crisis|Sickle-cell/Hb-C disease with crisis +C2873763|T047|AB|D57.211|ICD10CM|Sickle-cell/Hb-C disease with acute chest syndrome|Sickle-cell/Hb-C disease with acute chest syndrome +C2873763|T047|PT|D57.211|ICD10CM|Sickle-cell/Hb-C disease with acute chest syndrome|Sickle-cell/Hb-C disease with acute chest syndrome +C2873764|T047|AB|D57.212|ICD10CM|Sickle-cell/Hb-C disease with splenic sequestration|Sickle-cell/Hb-C disease with splenic sequestration +C2873764|T047|PT|D57.212|ICD10CM|Sickle-cell/Hb-C disease with splenic sequestration|Sickle-cell/Hb-C disease with splenic sequestration +C1260398|T047|ET|D57.219|ICD10CM|Sickle-cell/Hb-C disease with crisis NOS|Sickle-cell/Hb-C disease with crisis NOS +C1260398|T047|AB|D57.219|ICD10CM|Sickle-cell/Hb-C disease with crisis, unspecified|Sickle-cell/Hb-C disease with crisis, unspecified +C1260398|T047|PT|D57.219|ICD10CM|Sickle-cell/Hb-C disease with crisis, unspecified|Sickle-cell/Hb-C disease with crisis, unspecified +C0037054|T047|ET|D57.3|ICD10CM|Hb-S trait|Hb-S trait +C0037054|T047|ET|D57.3|ICD10CM|Heterozygous hemoglobin S|Heterozygous hemoglobin S +C0037054|T047|PT|D57.3|ICD10CM|Sickle-cell trait|Sickle-cell trait +C0037054|T047|AB|D57.3|ICD10CM|Sickle-cell trait|Sickle-cell trait +C0037054|T047|PT|D57.3|ICD10|Sickle-cell trait|Sickle-cell trait +C0857812|T047|ET|D57.4|ICD10CM|Sickle-cell beta thalassemia|Sickle-cell beta thalassemia +C2242796|T047|AB|D57.4|ICD10CM|Sickle-cell thalassemia|Sickle-cell thalassemia +C2242796|T047|HT|D57.4|ICD10CM|Sickle-cell thalassemia|Sickle-cell thalassemia +C0221019|T047|ET|D57.4|ICD10CM|Thalassemia Hb-S disease|Thalassemia Hb-S disease +C2242796|T047|ET|D57.40|ICD10CM|Microdrepanocytosis|Microdrepanocytosis +C2242796|T047|ET|D57.40|ICD10CM|Sickle-cell thalassemia NOS|Sickle-cell thalassemia NOS +C1260393|T047|AB|D57.40|ICD10CM|Sickle-cell thalassemia without crisis|Sickle-cell thalassemia without crisis +C1260393|T047|PT|D57.40|ICD10CM|Sickle-cell thalassemia without crisis|Sickle-cell thalassemia without crisis +C1260395|T047|HT|D57.41|ICD10CM|Sickle-cell thalassemia with crisis|Sickle-cell thalassemia with crisis +C1260395|T047|AB|D57.41|ICD10CM|Sickle-cell thalassemia with crisis|Sickle-cell thalassemia with crisis +C2873765|T047|ET|D57.41|ICD10CM|Sickle-cell thalassemia with vasoocclusive pain|Sickle-cell thalassemia with vasoocclusive pain +C2873766|T047|AB|D57.411|ICD10CM|Sickle-cell thalassemia with acute chest syndrome|Sickle-cell thalassemia with acute chest syndrome +C2873766|T047|PT|D57.411|ICD10CM|Sickle-cell thalassemia with acute chest syndrome|Sickle-cell thalassemia with acute chest syndrome +C2873767|T047|AB|D57.412|ICD10CM|Sickle-cell thalassemia with splenic sequestration|Sickle-cell thalassemia with splenic sequestration +C2873767|T047|PT|D57.412|ICD10CM|Sickle-cell thalassemia with splenic sequestration|Sickle-cell thalassemia with splenic sequestration +C1260395|T047|ET|D57.419|ICD10CM|Sickle-cell thalassemia with crisis NOS|Sickle-cell thalassemia with crisis NOS +C1260395|T047|AB|D57.419|ICD10CM|Sickle-cell thalassemia with crisis, unspecified|Sickle-cell thalassemia with crisis, unspecified +C1260395|T047|PT|D57.419|ICD10CM|Sickle-cell thalassemia with crisis, unspecified|Sickle-cell thalassemia with crisis, unspecified +C2873768|T047|ET|D57.8|ICD10CM|Hb-SD disease|Hb-SD disease +C2873769|T047|ET|D57.8|ICD10CM|Hb-SE disease|Hb-SE disease +C0477307|T047|HT|D57.8|ICD10CM|Other sickle-cell disorders|Other sickle-cell disorders +C0477307|T047|AB|D57.8|ICD10CM|Other sickle-cell disorders|Other sickle-cell disorders +C0477307|T047|PT|D57.8|ICD10|Other sickle-cell disorders|Other sickle-cell disorders +C2873770|T047|AB|D57.80|ICD10CM|Other sickle-cell disorders without crisis|Other sickle-cell disorders without crisis +C2873770|T047|PT|D57.80|ICD10CM|Other sickle-cell disorders without crisis|Other sickle-cell disorders without crisis +C2873773|T047|AB|D57.81|ICD10CM|Other sickle-cell disorders with crisis|Other sickle-cell disorders with crisis +C2873773|T047|HT|D57.81|ICD10CM|Other sickle-cell disorders with crisis|Other sickle-cell disorders with crisis +C2873771|T047|AB|D57.811|ICD10CM|Other sickle-cell disorders with acute chest syndrome|Other sickle-cell disorders with acute chest syndrome +C2873771|T047|PT|D57.811|ICD10CM|Other sickle-cell disorders with acute chest syndrome|Other sickle-cell disorders with acute chest syndrome +C2873772|T047|AB|D57.812|ICD10CM|Other sickle-cell disorders with splenic sequestration|Other sickle-cell disorders with splenic sequestration +C2873772|T047|PT|D57.812|ICD10CM|Other sickle-cell disorders with splenic sequestration|Other sickle-cell disorders with splenic sequestration +C2873773|T047|ET|D57.819|ICD10CM|Other sickle-cell disorders with crisis NOS|Other sickle-cell disorders with crisis NOS +C2873773|T047|AB|D57.819|ICD10CM|Other sickle-cell disorders with crisis, unspecified|Other sickle-cell disorders with crisis, unspecified +C2873773|T047|PT|D57.819|ICD10CM|Other sickle-cell disorders with crisis, unspecified|Other sickle-cell disorders with crisis, unspecified +C0494230|T047|HT|D58|ICD10|Other hereditary haemolytic anaemias|Other hereditary haemolytic anaemias +C0494230|T047|AB|D58|ICD10CM|Other hereditary hemolytic anemias|Other hereditary hemolytic anemias +C0494230|T047|HT|D58|ICD10CM|Other hereditary hemolytic anemias|Other hereditary hemolytic anemias +C0494230|T047|HT|D58|ICD10AE|Other hereditary hemolytic anemias|Other hereditary hemolytic anemias +C0037889|T047|ET|D58.0|ICD10CM|Acholuric (familial) jaundice|Acholuric (familial) jaundice +C2873774|T047|ET|D58.0|ICD10CM|Congenital (spherocytic) hemolytic icterus|Congenital (spherocytic) hemolytic icterus +C0037889|T047|PT|D58.0|ICD10CM|Hereditary spherocytosis|Hereditary spherocytosis +C0037889|T047|AB|D58.0|ICD10CM|Hereditary spherocytosis|Hereditary spherocytosis +C0037889|T047|PT|D58.0|ICD10|Hereditary spherocytosis|Hereditary spherocytosis +C0037889|T047|ET|D58.0|ICD10CM|Minkowski-Chauffard syndrome|Minkowski-Chauffard syndrome +C0013902|T047|ET|D58.1|ICD10CM|Elliptocytosis (congenital)|Elliptocytosis (congenital) +C0013902|T047|PT|D58.1|ICD10CM|Hereditary elliptocytosis|Hereditary elliptocytosis +C0013902|T047|AB|D58.1|ICD10CM|Hereditary elliptocytosis|Hereditary elliptocytosis +C0013902|T047|PT|D58.1|ICD10|Hereditary elliptocytosis|Hereditary elliptocytosis +C0013902|T047|ET|D58.1|ICD10CM|Ovalocytosis (congenital) (hereditary)|Ovalocytosis (congenital) (hereditary) +C0349705|T033|ET|D58.2|ICD10CM|Abnormal hemoglobin NOS|Abnormal hemoglobin NOS +C0272006|T047|ET|D58.2|ICD10CM|Congenital Heinz body anemia|Congenital Heinz body anemia +C0019021|T047|ET|D58.2|ICD10CM|Hb-C disease|Hb-C disease +C0272080|T047|ET|D58.2|ICD10CM|Hb-D disease|Hb-D disease +C0238159|T047|ET|D58.2|ICD10CM|Hb-E disease|Hb-E disease +C0019045|T047|ET|D58.2|ICD10CM|Hemoglobinopathy NOS|Hemoglobinopathy NOS +C0029632|T047|PT|D58.2|ICD10|Other haemoglobinopathies|Other haemoglobinopathies +C0029632|T047|PT|D58.2|ICD10AE|Other hemoglobinopathies|Other hemoglobinopathies +C0029632|T047|PT|D58.2|ICD10CM|Other hemoglobinopathies|Other hemoglobinopathies +C0029632|T047|AB|D58.2|ICD10CM|Other hemoglobinopathies|Other hemoglobinopathies +C0272006|T047|ET|D58.2|ICD10CM|Unstable hemoglobin hemolytic disease|Unstable hemoglobin hemolytic disease +C0154296|T047|PT|D58.8|ICD10|Other specified hereditary haemolytic anaemias|Other specified hereditary haemolytic anaemias +C0154296|T047|PT|D58.8|ICD10CM|Other specified hereditary hemolytic anemias|Other specified hereditary hemolytic anemias +C0154296|T047|AB|D58.8|ICD10CM|Other specified hereditary hemolytic anemias|Other specified hereditary hemolytic anemias +C0154296|T047|PT|D58.8|ICD10AE|Other specified hereditary hemolytic anemias|Other specified hereditary hemolytic anemias +C0272048|T047|ET|D58.8|ICD10CM|Stomatocytosis|Stomatocytosis +C0002881|T047|PT|D58.9|ICD10|Hereditary haemolytic anaemia, unspecified|Hereditary haemolytic anaemia, unspecified +C0002881|T047|PT|D58.9|ICD10AE|Hereditary hemolytic anemia, unspecified|Hereditary hemolytic anemia, unspecified +C0002881|T047|PT|D58.9|ICD10CM|Hereditary hemolytic anemia, unspecified|Hereditary hemolytic anemia, unspecified +C0002881|T047|AB|D58.9|ICD10CM|Hereditary hemolytic anemia, unspecified|Hereditary hemolytic anemia, unspecified +C0002879|T047|HT|D59|ICD10|Acquired haemolytic anaemia|Acquired haemolytic anaemia +C0002879|T047|HT|D59|ICD10CM|Acquired hemolytic anemia|Acquired hemolytic anemia +C0002879|T047|AB|D59|ICD10CM|Acquired hemolytic anemia|Acquired hemolytic anemia +C0002879|T047|HT|D59|ICD10AE|Acquired hemolytic anemia|Acquired hemolytic anemia +C0391817|T046|PT|D59.0|ICD10|Drug-induced autoimmune haemolytic anaemia|Drug-induced autoimmune haemolytic anaemia +C0391817|T046|PT|D59.0|ICD10AE|Drug-induced autoimmune hemolytic anemia|Drug-induced autoimmune hemolytic anemia +C0391817|T046|PT|D59.0|ICD10CM|Drug-induced autoimmune hemolytic anemia|Drug-induced autoimmune hemolytic anemia +C0391817|T046|AB|D59.0|ICD10CM|Drug-induced autoimmune hemolytic anemia|Drug-induced autoimmune hemolytic anemia +C2873775|T047|ET|D59.1|ICD10CM|Autoimmune hemolytic disease (cold type) (warm type)|Autoimmune hemolytic disease (cold type) (warm type) +C0472753|T047|ET|D59.1|ICD10CM|Chronic cold hemagglutinin disease|Chronic cold hemagglutinin disease +C0175816|T047|ET|D59.1|ICD10CM|Cold agglutinin disease|Cold agglutinin disease +C0086774|T047|ET|D59.1|ICD10CM|Cold agglutinin hemoglobinuria|Cold agglutinin hemoglobinuria +C1387538|T047|ET|D59.1|ICD10CM|Cold type (secondary) (symptomatic) hemolytic anemia|Cold type (secondary) (symptomatic) hemolytic anemia +C0477308|T047|PT|D59.1|ICD10|Other autoimmune haemolytic anaemias|Other autoimmune haemolytic anaemias +C0477308|T047|PT|D59.1|ICD10CM|Other autoimmune hemolytic anemias|Other autoimmune hemolytic anemias +C0477308|T047|AB|D59.1|ICD10CM|Other autoimmune hemolytic anemias|Other autoimmune hemolytic anemias +C0477308|T047|PT|D59.1|ICD10AE|Other autoimmune hemolytic anemias|Other autoimmune hemolytic anemias +C1387551|T047|ET|D59.1|ICD10CM|Warm type (secondary) (symptomatic) hemolytic anemia|Warm type (secondary) (symptomatic) hemolytic anemia +C0272054|T046|ET|D59.2|ICD10CM|Drug-induced enzyme deficiency anemia|Drug-induced enzyme deficiency anemia +C0494231|T046|PT|D59.2|ICD10|Drug-induced nonautoimmune haemolytic anaemia|Drug-induced nonautoimmune haemolytic anaemia +C0494231|T046|PT|D59.2|ICD10CM|Drug-induced nonautoimmune hemolytic anemia|Drug-induced nonautoimmune hemolytic anemia +C0494231|T046|AB|D59.2|ICD10CM|Drug-induced nonautoimmune hemolytic anemia|Drug-induced nonautoimmune hemolytic anemia +C0494231|T046|PT|D59.2|ICD10AE|Drug-induced nonautoimmune hemolytic anemia|Drug-induced nonautoimmune hemolytic anemia +C0019061|T047|PT|D59.3|ICD10|Haemolytic-uraemic syndrome|Haemolytic-uraemic syndrome +C0019061|T047|PT|D59.3|ICD10CM|Hemolytic-uremic syndrome|Hemolytic-uremic syndrome +C0019061|T047|AB|D59.3|ICD10CM|Hemolytic-uremic syndrome|Hemolytic-uremic syndrome +C0019061|T047|PT|D59.3|ICD10AE|Hemolytic-uremic syndrome|Hemolytic-uremic syndrome +C1321858|T047|ET|D59.4|ICD10CM|Mechanical hemolytic anemia|Mechanical hemolytic anemia +C0221021|T047|ET|D59.4|ICD10CM|Microangiopathic hemolytic anemia|Microangiopathic hemolytic anemia +C0375155|T047|PT|D59.4|ICD10|Other nonautoimmune haemolytic anaemias|Other nonautoimmune haemolytic anaemias +C0375155|T047|PT|D59.4|ICD10AE|Other nonautoimmune hemolytic anemias|Other nonautoimmune hemolytic anemias +C0375155|T047|PT|D59.4|ICD10CM|Other nonautoimmune hemolytic anemias|Other nonautoimmune hemolytic anemias +C0375155|T047|AB|D59.4|ICD10CM|Other nonautoimmune hemolytic anemias|Other nonautoimmune hemolytic anemias +C0272094|T047|ET|D59.4|ICD10CM|Toxic hemolytic anemia|Toxic hemolytic anemia +C0024790|T047|PT|D59.5|ICD10|Paroxysmal nocturnal haemoglobinuria [Marchiafava-Micheli]|Paroxysmal nocturnal haemoglobinuria [Marchiafava-Micheli] +C0024790|T047|PT|D59.5|ICD10AE|Paroxysmal nocturnal hemoglobinuria [Marchiafava-Micheli]|Paroxysmal nocturnal hemoglobinuria [Marchiafava-Micheli] +C0024790|T047|PT|D59.5|ICD10CM|Paroxysmal nocturnal hemoglobinuria [Marchiafava-Micheli]|Paroxysmal nocturnal hemoglobinuria [Marchiafava-Micheli] +C0024790|T047|AB|D59.5|ICD10CM|Paroxysmal nocturnal hemoglobinuria [Marchiafava-Micheli]|Paroxysmal nocturnal hemoglobinuria [Marchiafava-Micheli] +C0494233|T047|PT|D59.6|ICD10|Haemoglobinuria due to haemolysis from other external causes|Haemoglobinuria due to haemolysis from other external causes +C0494233|T047|PT|D59.6|ICD10AE|Hemoglobinuria due to hemolysis from other external causes|Hemoglobinuria due to hemolysis from other external causes +C0494233|T047|PT|D59.6|ICD10CM|Hemoglobinuria due to hemolysis from other external causes|Hemoglobinuria due to hemolysis from other external causes +C0494233|T047|AB|D59.6|ICD10CM|Hemoglobinuria due to hemolysis from other external causes|Hemoglobinuria due to hemolysis from other external causes +C0221022|T047|ET|D59.6|ICD10CM|Hemoglobinuria from exertion|Hemoglobinuria from exertion +C0221022|T047|ET|D59.6|ICD10CM|March hemoglobinuria|March hemoglobinuria +C0086774|T047|ET|D59.6|ICD10CM|Paroxysmal cold hemoglobinuria|Paroxysmal cold hemoglobinuria +C0477309|T047|PT|D59.8|ICD10|Other acquired haemolytic anaemias|Other acquired haemolytic anaemias +C0477309|T047|PT|D59.8|ICD10CM|Other acquired hemolytic anemias|Other acquired hemolytic anemias +C0477309|T047|AB|D59.8|ICD10CM|Other acquired hemolytic anemias|Other acquired hemolytic anemias +C0477309|T047|PT|D59.8|ICD10AE|Other acquired hemolytic anemias|Other acquired hemolytic anemias +C0002879|T047|PT|D59.9|ICD10|Acquired haemolytic anaemia, unspecified|Acquired haemolytic anaemia, unspecified +C0002879|T047|PT|D59.9|ICD10AE|Acquired hemolytic anemia, unspecified|Acquired hemolytic anemia, unspecified +C0002879|T047|PT|D59.9|ICD10CM|Acquired hemolytic anemia, unspecified|Acquired hemolytic anemia, unspecified +C0002879|T047|AB|D59.9|ICD10CM|Acquired hemolytic anemia, unspecified|Acquired hemolytic anemia, unspecified +C0271904|T047|ET|D59.9|ICD10CM|Idiopathic hemolytic anemia, chronic|Idiopathic hemolytic anemia, chronic +C0340961|T047|AB|D60|ICD10CM|Acquired pure red cell aplasia [erythroblastopenia]|Acquired pure red cell aplasia [erythroblastopenia] +C0340961|T047|HT|D60|ICD10CM|Acquired pure red cell aplasia [erythroblastopenia]|Acquired pure red cell aplasia [erythroblastopenia] +C0340961|T047|HT|D60|ICD10|Acquired pure red cell aplasia [erythroblastopenia]|Acquired pure red cell aplasia [erythroblastopenia] +C0865240|T047|ET|D60|ICD10CM|red cell aplasia (acquired) (adult) (with thymoma)|red cell aplasia (acquired) (adult) (with thymoma) +C2873776|T047|HT|D60-D64|ICD10CM|Aplastic and other anemias and other bone marrow failure syndromes (D60-D64)|Aplastic and other anemias and other bone marrow failure syndromes (D60-D64) +C0477310|T047|HT|D60-D64.9|ICD10|Aplastic and other anaemias|Aplastic and other anaemias +C0477310|T047|HT|D60-D64.9|ICD10AE|Aplastic and other anemias|Aplastic and other anemias +C0271923|T047|PT|D60.0|ICD10|Chronic acquired pure red cell aplasia|Chronic acquired pure red cell aplasia +C0271923|T047|PT|D60.0|ICD10CM|Chronic acquired pure red cell aplasia|Chronic acquired pure red cell aplasia +C0271923|T047|AB|D60.0|ICD10CM|Chronic acquired pure red cell aplasia|Chronic acquired pure red cell aplasia +C0451688|T047|PT|D60.1|ICD10|Transient acquired pure red cell aplasia|Transient acquired pure red cell aplasia +C0451688|T047|PT|D60.1|ICD10CM|Transient acquired pure red cell aplasia|Transient acquired pure red cell aplasia +C0451688|T047|AB|D60.1|ICD10CM|Transient acquired pure red cell aplasia|Transient acquired pure red cell aplasia +C0477311|T047|PT|D60.8|ICD10CM|Other acquired pure red cell aplasias|Other acquired pure red cell aplasias +C0477311|T047|AB|D60.8|ICD10CM|Other acquired pure red cell aplasias|Other acquired pure red cell aplasias +C0477311|T047|PT|D60.8|ICD10|Other acquired pure red cell aplasias|Other acquired pure red cell aplasias +C0340961|T047|PT|D60.9|ICD10CM|Acquired pure red cell aplasia, unspecified|Acquired pure red cell aplasia, unspecified +C0340961|T047|AB|D60.9|ICD10CM|Acquired pure red cell aplasia, unspecified|Acquired pure red cell aplasia, unspecified +C0340961|T047|PT|D60.9|ICD10|Acquired pure red cell aplasia, unspecified|Acquired pure red cell aplasia, unspecified +C2873777|T047|AB|D61|ICD10CM|Oth aplastic anemias and other bone marrow failure syndromes|Oth aplastic anemias and other bone marrow failure syndromes +C0477310|T047|HT|D61|ICD10|Other aplastic anaemias|Other aplastic anaemias +C0477310|T047|HT|D61|ICD10AE|Other aplastic anemias|Other aplastic anemias +C2873777|T047|HT|D61|ICD10CM|Other aplastic anemias and other bone marrow failure syndromes|Other aplastic anemias and other bone marrow failure syndromes +C0702159|T047|PT|D61.0|ICD10|Constitutional aplastic anaemia|Constitutional aplastic anaemia +C0702159|T047|PT|D61.0|ICD10AE|Constitutional aplastic anemia|Constitutional aplastic anemia +C0702159|T047|HT|D61.0|ICD10CM|Constitutional aplastic anemia|Constitutional aplastic anemia +C0702159|T047|AB|D61.0|ICD10CM|Constitutional aplastic anemia|Constitutional aplastic anemia +C1260899|T047|ET|D61.01|ICD10CM|Blackfan-Diamond syndrome|Blackfan-Diamond syndrome +C1260899|T047|ET|D61.01|ICD10CM|Congenital (pure) red cell aplasia|Congenital (pure) red cell aplasia +C2873778|T047|AB|D61.01|ICD10CM|Constitutional (pure) red blood cell aplasia|Constitutional (pure) red blood cell aplasia +C2873778|T047|PT|D61.01|ICD10CM|Constitutional (pure) red blood cell aplasia|Constitutional (pure) red blood cell aplasia +C0949116|T047|ET|D61.01|ICD10CM|Familial hypoplastic anemia|Familial hypoplastic anemia +C1719320|T047|ET|D61.01|ICD10CM|Primary (pure) red cell aplasia|Primary (pure) red cell aplasia +C1719321|T047|ET|D61.01|ICD10CM|Red cell (pure) aplasia of infants|Red cell (pure) aplasia of infants +C0015625|T047|ET|D61.09|ICD10CM|Fanconi's anemia|Fanconi's anemia +C1719322|T047|AB|D61.09|ICD10CM|Other constitutional aplastic anemia|Other constitutional aplastic anemia +C1719322|T047|PT|D61.09|ICD10CM|Other constitutional aplastic anemia|Other constitutional aplastic anemia +C0340959|T047|ET|D61.09|ICD10CM|Pancytopenia with malformations|Pancytopenia with malformations +C0271909|T047|PT|D61.1|ICD10|Drug-induced aplastic anaemia|Drug-induced aplastic anaemia +C0271909|T047|PT|D61.1|ICD10CM|Drug-induced aplastic anemia|Drug-induced aplastic anemia +C0271909|T047|AB|D61.1|ICD10CM|Drug-induced aplastic anemia|Drug-induced aplastic anemia +C0271909|T047|PT|D61.1|ICD10AE|Drug-induced aplastic anemia|Drug-induced aplastic anemia +C0494236|T047|PT|D61.2|ICD10|Aplastic anaemia due to other external agents|Aplastic anaemia due to other external agents +C0494236|T047|PT|D61.2|ICD10AE|Aplastic anemia due to other external agents|Aplastic anemia due to other external agents +C0494236|T047|PT|D61.2|ICD10CM|Aplastic anemia due to other external agents|Aplastic anemia due to other external agents +C0494236|T047|AB|D61.2|ICD10CM|Aplastic anemia due to other external agents|Aplastic anemia due to other external agents +C0348890|T047|PT|D61.3|ICD10|Idiopathic aplastic anaemia|Idiopathic aplastic anaemia +C0348890|T047|PT|D61.3|ICD10AE|Idiopathic aplastic anemia|Idiopathic aplastic anemia +C0348890|T047|PT|D61.3|ICD10CM|Idiopathic aplastic anemia|Idiopathic aplastic anemia +C0348890|T047|AB|D61.3|ICD10CM|Idiopathic aplastic anemia|Idiopathic aplastic anemia +C2873779|T047|AB|D61.8|ICD10CM|Oth aplastic anemias and other bone marrow failure syndromes|Oth aplastic anemias and other bone marrow failure syndromes +C0029745|T047|PT|D61.8|ICD10|Other specified aplastic anaemias|Other specified aplastic anaemias +C0029745|T047|PT|D61.8|ICD10AE|Other specified aplastic anemias|Other specified aplastic anemias +C2873779|T047|HT|D61.8|ICD10CM|Other specified aplastic anemias and other bone marrow failure syndromes|Other specified aplastic anemias and other bone marrow failure syndromes +C0030312|T047|HT|D61.81|ICD10CM|Pancytopenia|Pancytopenia +C0030312|T047|AB|D61.81|ICD10CM|Pancytopenia|Pancytopenia +C3161073|T046|AB|D61.810|ICD10CM|Antineoplastic chemotherapy induced pancytopenia|Antineoplastic chemotherapy induced pancytopenia +C3161073|T046|PT|D61.810|ICD10CM|Antineoplastic chemotherapy induced pancytopenia|Antineoplastic chemotherapy induced pancytopenia +C3161074|T046|AB|D61.811|ICD10CM|Other drug-induced pancytopenia|Other drug-induced pancytopenia +C3161074|T046|PT|D61.811|ICD10CM|Other drug-induced pancytopenia|Other drug-induced pancytopenia +C3161075|T047|AB|D61.818|ICD10CM|Other pancytopenia|Other pancytopenia +C3161075|T047|PT|D61.818|ICD10CM|Other pancytopenia|Other pancytopenia +C0002890|T047|ET|D61.82|ICD10CM|Leukoerythroblastic anemia|Leukoerythroblastic anemia +C0002890|T047|ET|D61.82|ICD10CM|Myelophthisic anemia|Myelophthisic anemia +C0302112|T047|PT|D61.82|ICD10CM|Myelophthisis|Myelophthisis +C0302112|T047|AB|D61.82|ICD10CM|Myelophthisis|Myelophthisis +C0235583|T047|ET|D61.82|ICD10CM|Panmyelophthisis|Panmyelophthisis +C2873779|T047|AB|D61.89|ICD10CM|Oth aplastic anemias and other bone marrow failure syndromes|Oth aplastic anemias and other bone marrow failure syndromes +C2873779|T047|PT|D61.89|ICD10CM|Other specified aplastic anemias and other bone marrow failure syndromes|Other specified aplastic anemias and other bone marrow failure syndromes +C0002874|T047|PT|D61.9|ICD10|Aplastic anaemia, unspecified|Aplastic anaemia, unspecified +C0002874|T047|PT|D61.9|ICD10CM|Aplastic anemia, unspecified|Aplastic anemia, unspecified +C0002874|T047|AB|D61.9|ICD10CM|Aplastic anemia, unspecified|Aplastic anemia, unspecified +C0002874|T047|PT|D61.9|ICD10AE|Aplastic anemia, unspecified|Aplastic anemia, unspecified +C0178416|T047|ET|D61.9|ICD10CM|Hypoplastic anemia NOS|Hypoplastic anemia NOS +C0151773|T047|ET|D61.9|ICD10CM|Medullary hypoplasia|Medullary hypoplasia +C0154298|T047|PT|D62|ICD10|Acute posthaemorrhagic anaemia|Acute posthaemorrhagic anaemia +C0154298|T047|PT|D62|ICD10CM|Acute posthemorrhagic anemia|Acute posthemorrhagic anemia +C0154298|T047|AB|D62|ICD10CM|Acute posthemorrhagic anemia|Acute posthemorrhagic anemia +C0154298|T047|PT|D62|ICD10AE|Acute posthemorrhagic anemia|Acute posthemorrhagic anemia +C0694467|T047|HT|D63|ICD10|Anaemia in chronic diseases classified elsewhere|Anaemia in chronic diseases classified elsewhere +C0694467|T047|HT|D63|ICD10AE|Anemia in chronic diseases classified elsewhere|Anemia in chronic diseases classified elsewhere +C0694467|T047|AB|D63|ICD10CM|Anemia in chronic diseases classified elsewhere|Anemia in chronic diseases classified elsewhere +C0694467|T047|HT|D63|ICD10CM|Anemia in chronic diseases classified elsewhere|Anemia in chronic diseases classified elsewhere +C0475534|T047|PT|D63.0|ICD10|Anaemia in neoplastic disease|Anaemia in neoplastic disease +C0475534|T047|PT|D63.0|ICD10AE|Anemia in neoplastic disease|Anemia in neoplastic disease +C0475534|T047|PT|D63.0|ICD10CM|Anemia in neoplastic disease|Anemia in neoplastic disease +C0475534|T047|AB|D63.0|ICD10CM|Anemia in neoplastic disease|Anemia in neoplastic disease +C1561828|T047|PT|D63.1|ICD10CM|Anemia in chronic kidney disease|Anemia in chronic kidney disease +C1561828|T047|AB|D63.1|ICD10CM|Anemia in chronic kidney disease|Anemia in chronic kidney disease +C2873780|T047|ET|D63.1|ICD10CM|Erythropoietin resistant anemia (EPO resistant anemia)|Erythropoietin resistant anemia (EPO resistant anemia) +C0477312|T047|PT|D63.8|ICD10|Anaemia in other chronic diseases classified elsewhere|Anaemia in other chronic diseases classified elsewhere +C0477312|T047|PT|D63.8|ICD10CM|Anemia in other chronic diseases classified elsewhere|Anemia in other chronic diseases classified elsewhere +C0477312|T047|AB|D63.8|ICD10CM|Anemia in other chronic diseases classified elsewhere|Anemia in other chronic diseases classified elsewhere +C0477312|T047|PT|D63.8|ICD10AE|Anemia in other chronic diseases classified elsewhere|Anemia in other chronic diseases classified elsewhere +C0472702|T047|HT|D64|ICD10|Other anaemias|Other anaemias +C0472702|T047|HT|D64|ICD10AE|Other anemias|Other anemias +C0472702|T047|AB|D64|ICD10CM|Other anemias|Other anemias +C0472702|T047|HT|D64|ICD10CM|Other anemias|Other anemias +C0221018|T047|PT|D64.0|ICD10|Hereditary sideroblastic anaemia|Hereditary sideroblastic anaemia +C0221018|T047|PT|D64.0|ICD10CM|Hereditary sideroblastic anemia|Hereditary sideroblastic anemia +C0221018|T047|AB|D64.0|ICD10CM|Hereditary sideroblastic anemia|Hereditary sideroblastic anemia +C0221018|T047|PT|D64.0|ICD10AE|Hereditary sideroblastic anemia|Hereditary sideroblastic anemia +C4551511|T047|ET|D64.0|ICD10CM|Sex-linked hypochromic sideroblastic anemia|Sex-linked hypochromic sideroblastic anemia +C0475532|T047|PT|D64.1|ICD10|Secondary sideroblastic anaemia due to disease|Secondary sideroblastic anaemia due to disease +C0475532|T047|PT|D64.1|ICD10AE|Secondary sideroblastic anemia due to disease|Secondary sideroblastic anemia due to disease +C0475532|T047|PT|D64.1|ICD10CM|Secondary sideroblastic anemia due to disease|Secondary sideroblastic anemia due to disease +C0475532|T047|AB|D64.1|ICD10CM|Secondary sideroblastic anemia due to disease|Secondary sideroblastic anemia due to disease +C0475531|T046|PT|D64.2|ICD10|Secondary sideroblastic anaemia due to drugs and toxins|Secondary sideroblastic anaemia due to drugs and toxins +C0475531|T046|PT|D64.2|ICD10CM|Secondary sideroblastic anemia due to drugs and toxins|Secondary sideroblastic anemia due to drugs and toxins +C0475531|T046|AB|D64.2|ICD10CM|Secondary sideroblastic anemia due to drugs and toxins|Secondary sideroblastic anemia due to drugs and toxins +C0475531|T046|PT|D64.2|ICD10AE|Secondary sideroblastic anemia due to drugs and toxins|Secondary sideroblastic anemia due to drugs and toxins +C0477313|T047|PT|D64.3|ICD10|Other sideroblastic anaemias|Other sideroblastic anaemias +C0477313|T047|PT|D64.3|ICD10AE|Other sideroblastic anemias|Other sideroblastic anemias +C0477313|T047|PT|D64.3|ICD10CM|Other sideroblastic anemias|Other sideroblastic anemias +C0477313|T047|AB|D64.3|ICD10CM|Other sideroblastic anemias|Other sideroblastic anemias +C2873781|T047|ET|D64.3|ICD10CM|Pyridoxine-responsive sideroblastic anemia NEC|Pyridoxine-responsive sideroblastic anemia NEC +C0002896|T047|ET|D64.3|ICD10CM|Sideroblastic anemia NOS|Sideroblastic anemia NOS +C0002876|T047|PT|D64.4|ICD10|Congenital dyserythropoietic anaemia|Congenital dyserythropoietic anaemia +C0002876|T047|PT|D64.4|ICD10CM|Congenital dyserythropoietic anemia|Congenital dyserythropoietic anemia +C0002876|T047|AB|D64.4|ICD10CM|Congenital dyserythropoietic anemia|Congenital dyserythropoietic anemia +C0002876|T047|PT|D64.4|ICD10AE|Congenital dyserythropoietic anemia|Congenital dyserythropoietic anemia +C0002876|T047|ET|D64.4|ICD10CM|Dyshematopoietic anemia (congenital)|Dyshematopoietic anemia (congenital) +C0029744|T047|PT|D64.8|ICD10|Other specified anaemias|Other specified anaemias +C0029744|T047|PT|D64.8|ICD10AE|Other specified anemias|Other specified anemias +C0029744|T047|HT|D64.8|ICD10CM|Other specified anemias|Other specified anemias +C0029744|T047|AB|D64.8|ICD10CM|Other specified anemias|Other specified anemias +C2712647|T046|AB|D64.81|ICD10CM|Anemia due to antineoplastic chemotherapy|Anemia due to antineoplastic chemotherapy +C2712647|T046|PT|D64.81|ICD10CM|Anemia due to antineoplastic chemotherapy|Anemia due to antineoplastic chemotherapy +C2712646|T047|ET|D64.81|ICD10CM|Antineoplastic chemotherapy induced anemia|Antineoplastic chemotherapy induced anemia +C3536761|T033|ET|D64.89|ICD10CM|Infantile pseudoleukemia|Infantile pseudoleukemia +C0029744|T047|PT|D64.89|ICD10CM|Other specified anemias|Other specified anemias +C0029744|T047|AB|D64.89|ICD10CM|Other specified anemias|Other specified anemias +C0002871|T047|PT|D64.9|ICD10|Anaemia, unspecified|Anaemia, unspecified +C0002871|T047|PT|D64.9|ICD10AE|Anemia, unspecified|Anemia, unspecified +C0002871|T047|PT|D64.9|ICD10CM|Anemia, unspecified|Anemia, unspecified +C0002871|T047|AB|D64.9|ICD10CM|Anemia, unspecified|Anemia, unspecified +C1260902|T047|ET|D65|ICD10CM|Afibrinogenemia, acquired|Afibrinogenemia, acquired +C0012739|T047|ET|D65|ICD10CM|Consumption coagulopathy|Consumption coagulopathy +C2873782|T047|ET|D65|ICD10CM|Diffuse or disseminated intravascular coagulation [DIC]|Diffuse or disseminated intravascular coagulation [DIC] +C0012739|T047|AB|D65|ICD10CM|Disseminated intravascular coagulation|Disseminated intravascular coagulation +C0012739|T047|PT|D65|ICD10CM|Disseminated intravascular coagulation [defibrination syndrome]|Disseminated intravascular coagulation [defibrination syndrome] +C0012739|T047|PT|D65|ICD10|Disseminated intravascular coagulation [defibrination syndrome]|Disseminated intravascular coagulation [defibrination syndrome] +C0865256|T047|ET|D65|ICD10CM|Fibrinolytic hemorrhage, acquired|Fibrinolytic hemorrhage, acquired +C0311369|T047|ET|D65|ICD10CM|Fibrinolytic purpura|Fibrinolytic purpura +C0085650|T047|ET|D65|ICD10CM|Purpura fulminans|Purpura fulminans +C0477315|T047|HT|D65-D69|ICD10CM|Coagulation defects, purpura and other hemorrhagic conditions (D65-D69)|Coagulation defects, purpura and other hemorrhagic conditions (D65-D69) +C0477315|T047|HT|D65-D69.9|ICD10|Coagulation defects, purpura and other haemorrhagic conditions|Coagulation defects, purpura and other haemorrhagic conditions +C0477315|T047|HT|D65-D69.9|ICD10AE|Coagulation defects, purpura and other hemorrhagic conditions|Coagulation defects, purpura and other hemorrhagic conditions +C0019069|T047|ET|D66|ICD10CM|Classical hemophilia|Classical hemophilia +C2873783|T047|ET|D66|ICD10CM|Deficiency factor VIII (with functional defect)|Deficiency factor VIII (with functional defect) +C0019069|T047|ET|D66|ICD10CM|Hemophilia A|Hemophilia A +C0019069|T047|ET|D66|ICD10CM|Hemophilia NOS|Hemophilia NOS +C0019069|T047|PT|D66|ICD10CM|Hereditary factor VIII deficiency|Hereditary factor VIII deficiency +C0019069|T047|AB|D66|ICD10CM|Hereditary factor VIII deficiency|Hereditary factor VIII deficiency +C0019069|T047|PT|D66|ICD10|Hereditary factor VIII deficiency|Hereditary factor VIII deficiency +C0008533|T047|ET|D67|ICD10CM|Christmas disease|Christmas disease +C2873784|T047|ET|D67|ICD10CM|Factor IX deficiency (with functional defect)|Factor IX deficiency (with functional defect) +C0008533|T047|ET|D67|ICD10CM|Hemophilia B|Hemophilia B +C0008533|T047|PT|D67|ICD10CM|Hereditary factor IX deficiency|Hereditary factor IX deficiency +C0008533|T047|AB|D67|ICD10CM|Hereditary factor IX deficiency|Hereditary factor IX deficiency +C0008533|T047|PT|D67|ICD10|Hereditary factor IX deficiency|Hereditary factor IX deficiency +C0008533|T047|ET|D67|ICD10CM|Plasma thromboplastin component [PTC] deficiency|Plasma thromboplastin component [PTC] deficiency +C0029496|T047|AB|D68|ICD10CM|Other coagulation defects|Other coagulation defects +C0029496|T047|HT|D68|ICD10CM|Other coagulation defects|Other coagulation defects +C0029496|T047|HT|D68|ICD10|Other coagulation defects|Other coagulation defects +C0042974|T047|ET|D68.0|ICD10CM|Angiohemophilia|Angiohemophilia +C0042974|T047|ET|D68.0|ICD10CM|Factor VIII deficiency with vascular defect|Factor VIII deficiency with vascular defect +C0042974|T047|ET|D68.0|ICD10CM|Vascular hemophilia|Vascular hemophilia +C0042974|T047|PT|D68.0|ICD10CM|Von Willebrand's disease|Von Willebrand's disease +C0042974|T047|AB|D68.0|ICD10CM|Von Willebrand's disease|Von Willebrand's disease +C0042974|T047|PT|D68.0|ICD10|Von Willebrand's disease|Von Willebrand's disease +C0015523|T047|ET|D68.1|ICD10CM|Hemophilia C|Hemophilia C +C0015523|T047|PT|D68.1|ICD10CM|Hereditary factor XI deficiency|Hereditary factor XI deficiency +C0015523|T047|AB|D68.1|ICD10CM|Hereditary factor XI deficiency|Hereditary factor XI deficiency +C0015523|T047|PT|D68.1|ICD10|Hereditary factor XI deficiency|Hereditary factor XI deficiency +C0015523|T047|ET|D68.1|ICD10CM|Plasma thromboplastin antecedent [PTA] deficiency|Plasma thromboplastin antecedent [PTA] deficiency +C0015523|T047|ET|D68.1|ICD10CM|Rosenthal's disease|Rosenthal's disease +C0015499|T047|ET|D68.2|ICD10CM|AC globulin deficiency|AC globulin deficiency +C2584774|T047|ET|D68.2|ICD10CM|Congenital afibrinogenemia|Congenital afibrinogenemia +C4316812|T047|ET|D68.2|ICD10CM|Deficiency of factor I [fibrinogen]|Deficiency of factor I [fibrinogen] +C3203356|T047|ET|D68.2|ICD10CM|Deficiency of factor II [prothrombin]|Deficiency of factor II [prothrombin] +C2873785|T047|ET|D68.2|ICD10CM|Deficiency of factor V [labile]|Deficiency of factor V [labile] +C2873786|T047|ET|D68.2|ICD10CM|Deficiency of factor VII [stable]|Deficiency of factor VII [stable] +C2873787|T047|ET|D68.2|ICD10CM|Deficiency of factor X [Stuart-Prower]|Deficiency of factor X [Stuart-Prower] +C2873788|T047|ET|D68.2|ICD10CM|Deficiency of factor XII [Hageman]|Deficiency of factor XII [Hageman] +C2873789|T047|ET|D68.2|ICD10CM|Deficiency of factor XIII [fibrin stabilizing]|Deficiency of factor XIII [fibrin stabilizing] +C0272350|T047|ET|D68.2|ICD10CM|Dysfibrinogenemia (congenital)|Dysfibrinogenemia (congenital) +C0494242|T047|PT|D68.2|ICD10|Hereditary deficiency of other clotting factors|Hereditary deficiency of other clotting factors +C0494242|T047|PT|D68.2|ICD10CM|Hereditary deficiency of other clotting factors|Hereditary deficiency of other clotting factors +C0494242|T047|AB|D68.2|ICD10CM|Hereditary deficiency of other clotting factors|Hereditary deficiency of other clotting factors +C0015503|T047|ET|D68.2|ICD10CM|Hypoproconvertinemia|Hypoproconvertinemia +C0015499|T047|ET|D68.2|ICD10CM|Owren's disease|Owren's disease +C0015499|T047|ET|D68.2|ICD10CM|Proaccelerin deficiency|Proaccelerin deficiency +C1399404|T047|PT|D68.3|ICD10|Haemorrhagic disorder due to circulating anticoagulants|Haemorrhagic disorder due to circulating anticoagulants +C1399404|T047|PT|D68.3|ICD10AE|Hemorrhagic disorder due to circulating anticoagulants|Hemorrhagic disorder due to circulating anticoagulants +C1399404|T047|HT|D68.3|ICD10CM|Hemorrhagic disorder due to circulating anticoagulants|Hemorrhagic disorder due to circulating anticoagulants +C1399404|T047|AB|D68.3|ICD10CM|Hemorrhagic disorder due to circulating anticoagulants|Hemorrhagic disorder due to circulating anticoagulants +C3648917|T047|HT|D68.31|ICD10CM|Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors|Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors +C3648917|T047|AB|D68.31|ICD10CM|Hemorrhagic disorder due to intrns circ anticoag,antib,inhib|Hemorrhagic disorder due to intrns circ anticoag,antib,inhib +C1096116|T047|PT|D68.311|ICD10CM|Acquired hemophilia|Acquired hemophilia +C1096116|T047|AB|D68.311|ICD10CM|Acquired hemophilia|Acquired hemophilia +C3161177|T047|ET|D68.311|ICD10CM|Autoimmune hemophilia|Autoimmune hemophilia +C3161178|T033|ET|D68.311|ICD10CM|Autoimmune inhibitors to clotting factors|Autoimmune inhibitors to clotting factors +C3161179|T047|ET|D68.311|ICD10CM|Secondary hemophilia|Secondary hemophilia +C3161076|T047|AB|D68.312|ICD10CM|Antiphospholipid antibody with hemorrhagic disorder|Antiphospholipid antibody with hemorrhagic disorder +C3161076|T047|PT|D68.312|ICD10CM|Antiphospholipid antibody with hemorrhagic disorder|Antiphospholipid antibody with hemorrhagic disorder +C3161180|T047|ET|D68.312|ICD10CM|Lupus anticoagulant (LAC) with hemorrhagic disorder|Lupus anticoagulant (LAC) with hemorrhagic disorder +C3161181|T047|ET|D68.312|ICD10CM|Systemic lupus erythematosus [SLE] inhibitor with hemorrhagic disorder|Systemic lupus erythematosus [SLE] inhibitor with hemorrhagic disorder +C0865250|T047|ET|D68.318|ICD10CM|Antithromboplastinemia|Antithromboplastinemia +C1388117|T047|ET|D68.318|ICD10CM|Antithromboplastinogenemia|Antithromboplastinogenemia +C3263943|T047|ET|D68.318|ICD10CM|Hemorrhagic disorder due to intrinsic increase in anti-IXa|Hemorrhagic disorder due to intrinsic increase in anti-IXa +C3263944|T047|ET|D68.318|ICD10CM|Hemorrhagic disorder due to intrinsic increase in anti-VIIIa|Hemorrhagic disorder due to intrinsic increase in anti-VIIIa +C3263945|T047|ET|D68.318|ICD10CM|Hemorrhagic disorder due to intrinsic increase in anti-XIa|Hemorrhagic disorder due to intrinsic increase in anti-XIa +C3263946|T047|ET|D68.318|ICD10CM|Hemorrhagic disorder due to intrinsic increase in antithrombin|Hemorrhagic disorder due to intrinsic increase in antithrombin +C3161077|T047|AB|D68.318|ICD10CM|Oth hemorrhagic disord d/t intrns circ anticoag,antib,inhib|Oth hemorrhagic disord d/t intrns circ anticoag,antib,inhib +C3161077|T047|PT|D68.318|ICD10CM|Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors|Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors +C2873795|T046|ET|D68.32|ICD10CM|Drug-induced hemorrhagic disorder|Drug-induced hemorrhagic disorder +C2873796|T046|AB|D68.32|ICD10CM|Hemorrhagic disord d/t extrinsic circulating anticoagulants|Hemorrhagic disord d/t extrinsic circulating anticoagulants +C2873796|T046|PT|D68.32|ICD10CM|Hemorrhagic disorder due to extrinsic circulating anticoagulants|Hemorrhagic disorder due to extrinsic circulating anticoagulants +C3263947|T046|ET|D68.32|ICD10CM|Hemorrhagic disorder due to increase in anti-IIa|Hemorrhagic disorder due to increase in anti-IIa +C3263948|T046|ET|D68.32|ICD10CM|Hemorrhagic disorder due to increase in anti-Xa|Hemorrhagic disorder due to increase in anti-Xa +C3203346|T047|ET|D68.32|ICD10CM|Hyperheparinemia|Hyperheparinemia +C0001169|T047|PT|D68.4|ICD10CM|Acquired coagulation factor deficiency|Acquired coagulation factor deficiency +C0001169|T047|AB|D68.4|ICD10CM|Acquired coagulation factor deficiency|Acquired coagulation factor deficiency +C0001169|T047|PT|D68.4|ICD10|Acquired coagulation factor deficiency|Acquired coagulation factor deficiency +C0398604|T047|ET|D68.4|ICD10CM|Deficiency of coagulation factor due to liver disease|Deficiency of coagulation factor due to liver disease +C0398603|T047|ET|D68.4|ICD10CM|Deficiency of coagulation factor due to vitamin K deficiency|Deficiency of coagulation factor due to vitamin K deficiency +C1260404|T047|ET|D68.5|ICD10CM|Primary hypercoagulable states|Primary hypercoagulable states +C2584620|T047|HT|D68.5|ICD10CM|Primary thrombophilia|Primary thrombophilia +C2584620|T047|AB|D68.5|ICD10CM|Primary thrombophilia|Primary thrombophilia +C0600433|T047|PT|D68.51|ICD10CM|Activated protein C resistance|Activated protein C resistance +C0600433|T047|AB|D68.51|ICD10CM|Activated protein C resistance|Activated protein C resistance +C0584960|T047|ET|D68.51|ICD10CM|Factor V Leiden mutation|Factor V Leiden mutation +C1260403|T047|AB|D68.52|ICD10CM|Prothrombin gene mutation|Prothrombin gene mutation +C1260403|T047|PT|D68.52|ICD10CM|Prothrombin gene mutation|Prothrombin gene mutation +C0272375|T047|ET|D68.59|ICD10CM|Antithrombin III deficiency|Antithrombin III deficiency +C0398623|T047|ET|D68.59|ICD10CM|Hypercoagulable state NOS|Hypercoagulable state NOS +C2873799|T046|AB|D68.59|ICD10CM|Other primary thrombophilia|Other primary thrombophilia +C2873799|T046|PT|D68.59|ICD10CM|Other primary thrombophilia|Other primary thrombophilia +C2873797|T046|ET|D68.59|ICD10CM|Primary hypercoagulable state NEC|Primary hypercoagulable state NEC +C2873798|T046|ET|D68.59|ICD10CM|Primary thrombophilia NEC|Primary thrombophilia NEC +C0398625|T047|ET|D68.59|ICD10CM|Protein C deficiency|Protein C deficiency +C0242666|T047|ET|D68.59|ICD10CM|Protein S deficiency|Protein S deficiency +C0398623|T047|ET|D68.59|ICD10CM|Thrombophilia NOS|Thrombophilia NOS +C2873800|T046|ET|D68.6|ICD10CM|Other hypercoagulable states|Other hypercoagulable states +C2873801|T046|HT|D68.6|ICD10CM|Other thrombophilia|Other thrombophilia +C2873801|T046|AB|D68.6|ICD10CM|Other thrombophilia|Other thrombophilia +C0085278|T047|ET|D68.61|ICD10CM|Anticardiolipin syndrome|Anticardiolipin syndrome +C0085278|T047|ET|D68.61|ICD10CM|Antiphospholipid antibody syndrome|Antiphospholipid antibody syndrome +C0085278|T047|AB|D68.61|ICD10CM|Antiphospholipid syndrome|Antiphospholipid syndrome +C0085278|T047|PT|D68.61|ICD10CM|Antiphospholipid syndrome|Antiphospholipid syndrome +C0311370|T047|ET|D68.62|ICD10CM|Lupus anticoagulant|Lupus anticoagulant +C0311370|T047|AB|D68.62|ICD10CM|Lupus anticoagulant syndrome|Lupus anticoagulant syndrome +C0311370|T047|PT|D68.62|ICD10CM|Lupus anticoagulant syndrome|Lupus anticoagulant syndrome +C2873802|T047|ET|D68.62|ICD10CM|Presence of systemic lupus erythematosus [SLE] inhibitor|Presence of systemic lupus erythematosus [SLE] inhibitor +C2873803|T046|ET|D68.69|ICD10CM|Hypercoagulable states NEC|Hypercoagulable states NEC +C2873801|T046|AB|D68.69|ICD10CM|Other thrombophilia|Other thrombophilia +C2873801|T046|PT|D68.69|ICD10CM|Other thrombophilia|Other thrombophilia +C1456282|T047|ET|D68.69|ICD10CM|Secondary hypercoagulable state NOS|Secondary hypercoagulable state NOS +C0477316|T047|PT|D68.8|ICD10|Other specified coagulation defects|Other specified coagulation defects +C0477316|T047|PT|D68.8|ICD10CM|Other specified coagulation defects|Other specified coagulation defects +C0477316|T047|AB|D68.8|ICD10CM|Other specified coagulation defects|Other specified coagulation defects +C0005779|T047|PT|D68.9|ICD10|Coagulation defect, unspecified|Coagulation defect, unspecified +C0005779|T047|PT|D68.9|ICD10CM|Coagulation defect, unspecified|Coagulation defect, unspecified +C0005779|T047|AB|D68.9|ICD10CM|Coagulation defect, unspecified|Coagulation defect, unspecified +C0154300|T047|HT|D69|ICD10|Purpura and other haemorrhagic conditions|Purpura and other haemorrhagic conditions +C0154300|T047|HT|D69|ICD10AE|Purpura and other hemorrhagic conditions|Purpura and other hemorrhagic conditions +C0154300|T047|HT|D69|ICD10CM|Purpura and other hemorrhagic conditions|Purpura and other hemorrhagic conditions +C0154300|T047|AB|D69|ICD10CM|Purpura and other hemorrhagic conditions|Purpura and other hemorrhagic conditions +C0034152|T047|PT|D69.0|ICD10CM|Allergic purpura|Allergic purpura +C0034152|T047|AB|D69.0|ICD10CM|Allergic purpura|Allergic purpura +C0034152|T047|PT|D69.0|ICD10|Allergic purpura|Allergic purpura +C0151436|T047|ET|D69.0|ICD10CM|Allergic vasculitis|Allergic vasculitis +C0865259|T047|ET|D69.0|ICD10CM|Nonthrombocytopenic hemorrhagic purpura|Nonthrombocytopenic hemorrhagic purpura +C0865260|T047|ET|D69.0|ICD10CM|Nonthrombocytopenic idiopathic purpura|Nonthrombocytopenic idiopathic purpura +C0034152|T047|ET|D69.0|ICD10CM|Purpura anaphylactoid|Purpura anaphylactoid +C0034152|T047|ET|D69.0|ICD10CM|Purpura Henoch(-Schönlein)|Purpura Henoch(-Schönlein) +C0272295|T047|ET|D69.0|ICD10CM|Purpura rheumatica|Purpura rheumatica +C1368065|T046|ET|D69.0|ICD10CM|Vascular purpura|Vascular purpura +C2873804|T047|ET|D69.1|ICD10CM|Bernard-Soulier [giant platelet] syndrome|Bernard-Soulier [giant platelet] syndrome +C0040015|T047|ET|D69.1|ICD10CM|Glanzmann's disease|Glanzmann's disease +C0272302|T047|ET|D69.1|ICD10CM|Grey platelet syndrome|Grey platelet syndrome +C0235604|T047|PT|D69.1|ICD10CM|Qualitative platelet defects|Qualitative platelet defects +C0235604|T047|AB|D69.1|ICD10CM|Qualitative platelet defects|Qualitative platelet defects +C0235604|T047|PT|D69.1|ICD10|Qualitative platelet defects|Qualitative platelet defects +C2873805|T047|ET|D69.1|ICD10CM|Thromboasthenia (hemorrhagic) (hereditary)|Thromboasthenia (hemorrhagic) (hereditary) +C0235604|T047|ET|D69.1|ICD10CM|Thrombocytopathy|Thrombocytopathy +C0029678|T047|PT|D69.2|ICD10|Other nonthrombocytopenic purpura|Other nonthrombocytopenic purpura +C0029678|T047|PT|D69.2|ICD10CM|Other nonthrombocytopenic purpura|Other nonthrombocytopenic purpura +C0029678|T047|AB|D69.2|ICD10CM|Other nonthrombocytopenic purpura|Other nonthrombocytopenic purpura +C0034150|T047|ET|D69.2|ICD10CM|Purpura NOS|Purpura NOS +C0272309|T047|ET|D69.2|ICD10CM|Purpura simplex|Purpura simplex +C0149766|T047|ET|D69.2|ICD10CM|Senile purpura|Senile purpura +C2873806|T046|ET|D69.3|ICD10CM|Hemorrhagic (thrombocytopenic) purpura|Hemorrhagic (thrombocytopenic) purpura +C0398650|T047|ET|D69.3|ICD10CM|Idiopathic thrombocytopenic purpura|Idiopathic thrombocytopenic purpura +C0398650|T047|PT|D69.3|ICD10|Idiopathic thrombocytopenic purpura|Idiopathic thrombocytopenic purpura +C0398650|T047|PT|D69.3|ICD10CM|Immune thrombocytopenic purpura|Immune thrombocytopenic purpura +C0398650|T047|AB|D69.3|ICD10CM|Immune thrombocytopenic purpura|Immune thrombocytopenic purpura +C0272282|T047|ET|D69.3|ICD10CM|Tidal platelet dysgenesis|Tidal platelet dysgenesis +C0477317|T047|HT|D69.4|ICD10CM|Other primary thrombocytopenia|Other primary thrombocytopenia +C0477317|T047|AB|D69.4|ICD10CM|Other primary thrombocytopenia|Other primary thrombocytopenia +C0477317|T047|PT|D69.4|ICD10|Other primary thrombocytopenia|Other primary thrombocytopenia +C0272126|T047|PT|D69.41|ICD10CM|Evans syndrome|Evans syndrome +C0272126|T047|AB|D69.41|ICD10CM|Evans syndrome|Evans syndrome +C2873807|T047|AB|D69.42|ICD10CM|Congenital and hereditary thrombocytopenia purpura|Congenital and hereditary thrombocytopenia purpura +C2873807|T047|PT|D69.42|ICD10CM|Congenital and hereditary thrombocytopenia purpura|Congenital and hereditary thrombocytopenia purpura +C0272278|T047|ET|D69.42|ICD10CM|Congenital thrombocytopenia|Congenital thrombocytopenia +C0272278|T047|ET|D69.42|ICD10CM|Hereditary thrombocytopenia|Hereditary thrombocytopenia +C1260901|T047|ET|D69.49|ICD10CM|Megakaryocytic hypoplasia|Megakaryocytic hypoplasia +C0477317|T047|PT|D69.49|ICD10CM|Other primary thrombocytopenia|Other primary thrombocytopenia +C0477317|T047|AB|D69.49|ICD10CM|Other primary thrombocytopenia|Other primary thrombocytopenia +C0701157|T047|ET|D69.49|ICD10CM|Primary thrombocytopenia NOS|Primary thrombocytopenia NOS +C0154301|T047|HT|D69.5|ICD10CM|Secondary thrombocytopenia|Secondary thrombocytopenia +C0154301|T047|AB|D69.5|ICD10CM|Secondary thrombocytopenia|Secondary thrombocytopenia +C0154301|T047|PT|D69.5|ICD10|Secondary thrombocytopenia|Secondary thrombocytopenia +C0398648|T046|PT|D69.51|ICD10CM|Posttransfusion purpura|Posttransfusion purpura +C0398648|T046|AB|D69.51|ICD10CM|Posttransfusion purpura|Posttransfusion purpura +C2921024|T046|ET|D69.51|ICD10CM|Posttransfusion purpura from whole blood (fresh) or blood products|Posttransfusion purpura from whole blood (fresh) or blood products +C0398648|T046|ET|D69.51|ICD10CM|PTP|PTP +C2921026|T047|AB|D69.59|ICD10CM|Other secondary thrombocytopenia|Other secondary thrombocytopenia +C2921026|T047|PT|D69.59|ICD10CM|Other secondary thrombocytopenia|Other secondary thrombocytopenia +C0040034|T047|PT|D69.6|ICD10|Thrombocytopenia, unspecified|Thrombocytopenia, unspecified +C0040034|T047|PT|D69.6|ICD10CM|Thrombocytopenia, unspecified|Thrombocytopenia, unspecified +C0040034|T047|AB|D69.6|ICD10CM|Thrombocytopenia, unspecified|Thrombocytopenia, unspecified +C0340804|T047|ET|D69.8|ICD10CM|Capillary fragility (hereditary)|Capillary fragility (hereditary) +C0029804|T046|PT|D69.8|ICD10|Other specified haemorrhagic conditions|Other specified haemorrhagic conditions +C0029804|T046|PT|D69.8|ICD10CM|Other specified hemorrhagic conditions|Other specified hemorrhagic conditions +C0029804|T046|AB|D69.8|ICD10CM|Other specified hemorrhagic conditions|Other specified hemorrhagic conditions +C0029804|T046|PT|D69.8|ICD10AE|Other specified hemorrhagic conditions|Other specified hemorrhagic conditions +C0042974|T047|ET|D69.8|ICD10CM|Vascular pseudohemophilia|Vascular pseudohemophilia +C0019087|T047|PT|D69.9|ICD10|Haemorrhagic condition, unspecified|Haemorrhagic condition, unspecified +C0019087|T047|PT|D69.9|ICD10AE|Hemorrhagic condition, unspecified|Hemorrhagic condition, unspecified +C0019087|T047|PT|D69.9|ICD10CM|Hemorrhagic condition, unspecified|Hemorrhagic condition, unspecified +C0019087|T047|AB|D69.9|ICD10CM|Hemorrhagic condition, unspecified|Hemorrhagic condition, unspecified +C0001824|T047|ET|D70|ICD10CM|agranulocytosis|agranulocytosis +C0001824|T047|PT|D70|ICD10|Agranulocytosis|Agranulocytosis +C4290088|T033|ET|D70|ICD10CM|decreased absolute neurophile count (ANC)|decreased absolute neurophile count (ANC) +C0027947|T047|HT|D70|ICD10CM|Neutropenia|Neutropenia +C0027947|T047|AB|D70|ICD10CM|Neutropenia|Neutropenia +C2873809|T047|HT|D70-D77|ICD10CM|Other disorders of blood and blood-forming organs (D70-D77)|Other disorders of blood and blood-forming organs (D70-D77) +C0451639|T047|HT|D70-D77.9|ICD10|Other diseases of blood and blood-forming organs|Other diseases of blood and blood-forming organs +C1853118|T047|AB|D70.0|ICD10CM|Congenital agranulocytosis|Congenital agranulocytosis +C1853118|T047|PT|D70.0|ICD10CM|Congenital agranulocytosis|Congenital agranulocytosis +C1853118|T047|ET|D70.0|ICD10CM|Congenital neutropenia|Congenital neutropenia +C1853118|T047|ET|D70.0|ICD10CM|Infantile genetic agranulocytosis|Infantile genetic agranulocytosis +C1853118|T047|ET|D70.0|ICD10CM|Kostmann's disease|Kostmann's disease +C2873810|T046|AB|D70.1|ICD10CM|Agranulocytosis secondary to cancer chemotherapy|Agranulocytosis secondary to cancer chemotherapy +C2873810|T046|PT|D70.1|ICD10CM|Agranulocytosis secondary to cancer chemotherapy|Agranulocytosis secondary to cancer chemotherapy +C2873811|T046|AB|D70.2|ICD10CM|Other drug-induced agranulocytosis|Other drug-induced agranulocytosis +C2873811|T046|PT|D70.2|ICD10CM|Other drug-induced agranulocytosis|Other drug-induced agranulocytosis +C0272181|T047|AB|D70.3|ICD10CM|Neutropenia due to infection|Neutropenia due to infection +C0272181|T047|PT|D70.3|ICD10CM|Neutropenia due to infection|Neutropenia due to infection +C0221023|T047|ET|D70.4|ICD10CM|Cyclic hematopoiesis|Cyclic hematopoiesis +C0221023|T047|PT|D70.4|ICD10CM|Cyclic neutropenia|Cyclic neutropenia +C0221023|T047|AB|D70.4|ICD10CM|Cyclic neutropenia|Cyclic neutropenia +C0221023|T047|ET|D70.4|ICD10CM|Periodic neutropenia|Periodic neutropenia +C2873812|T047|AB|D70.8|ICD10CM|Other neutropenia|Other neutropenia +C2873812|T047|PT|D70.8|ICD10CM|Other neutropenia|Other neutropenia +C0027947|T047|AB|D70.9|ICD10CM|Neutropenia, unspecified|Neutropenia, unspecified +C0027947|T047|PT|D70.9|ICD10CM|Neutropenia, unspecified|Neutropenia, unspecified +C2873813|T047|ET|D71|ICD10CM|Cell membrane receptor complex [CR3] defect|Cell membrane receptor complex [CR3] defect +C1398939|T047|ET|D71|ICD10CM|Chronic (childhood) granulomatous disease|Chronic (childhood) granulomatous disease +C0018203|T047|ET|D71|ICD10CM|Congenital dysphagocytosis|Congenital dysphagocytosis +C0016808|T047|PT|D71|ICD10CM|Functional disorders of polymorphonuclear neutrophils|Functional disorders of polymorphonuclear neutrophils +C0016808|T047|AB|D71|ICD10CM|Functional disorders of polymorphonuclear neutrophils|Functional disorders of polymorphonuclear neutrophils +C0016808|T047|PT|D71|ICD10|Functional disorders of polymorphonuclear neutrophils|Functional disorders of polymorphonuclear neutrophils +C0865267|T047|ET|D71|ICD10CM|Progressive septic granulomatosis|Progressive septic granulomatosis +C0494244|T047|AB|D72|ICD10CM|Other disorders of white blood cells|Other disorders of white blood cells +C0494244|T047|HT|D72|ICD10CM|Other disorders of white blood cells|Other disorders of white blood cells +C0494244|T047|HT|D72|ICD10|Other disorders of white blood cells|Other disorders of white blood cells +C2873814|T047|ET|D72.0|ICD10CM|Alder (granulation) (granulocyte) anomaly|Alder (granulation) (granulocyte) anomaly +C1527030|T047|ET|D72.0|ICD10CM|Alder syndrome|Alder syndrome +C0017377|T047|PT|D72.0|ICD10|Genetic anomalies of leukocytes|Genetic anomalies of leukocytes +C0017377|T047|PT|D72.0|ICD10CM|Genetic anomalies of leukocytes|Genetic anomalies of leukocytes +C0017377|T047|AB|D72.0|ICD10CM|Genetic anomalies of leukocytes|Genetic anomalies of leukocytes +C1400046|T047|ET|D72.0|ICD10CM|Hereditary leukocytic hypersegmentation|Hereditary leukocytic hypersegmentation +C1400295|T047|ET|D72.0|ICD10CM|Hereditary leukocytic hyposegmentation|Hereditary leukocytic hyposegmentation +C0007965|T047|ET|D72.0|ICD10CM|Hereditary leukomelanopathy|Hereditary leukomelanopathy +C2873815|T047|ET|D72.0|ICD10CM|May-Hegglin (granulation) (granulocyte) anomaly|May-Hegglin (granulation) (granulocyte) anomaly +C0340978|T047|ET|D72.0|ICD10CM|May-Hegglin syndrome|May-Hegglin syndrome +C2873816|T047|ET|D72.0|ICD10CM|Pelger-Huët (granulation) (granulocyte) anomaly|Pelger-Huët (granulation) (granulocyte) anomaly +C0281938|T047|ET|D72.0|ICD10CM|Pelger-Huët syndrome|Pelger-Huët syndrome +C0272193|T047|ET|D72.1|ICD10CM|Allergic eosinophilia|Allergic eosinophilia +C0014457|T047|PT|D72.1|ICD10CM|Eosinophilia|Eosinophilia +C0014457|T047|AB|D72.1|ICD10CM|Eosinophilia|Eosinophilia +C0014457|T047|PT|D72.1|ICD10|Eosinophilia|Eosinophilia +C0272192|T047|ET|D72.1|ICD10CM|Hereditary eosinophilia|Hereditary eosinophilia +C0477318|T047|PT|D72.8|ICD10|Other specified disorders of white blood cells|Other specified disorders of white blood cells +C0477318|T047|HT|D72.8|ICD10CM|Other specified disorders of white blood cells|Other specified disorders of white blood cells +C0477318|T047|AB|D72.8|ICD10CM|Other specified disorders of white blood cells|Other specified disorders of white blood cells +C0750394|T033|AB|D72.81|ICD10CM|Decreased white blood cell count|Decreased white blood cell count +C0750394|T033|HT|D72.81|ICD10CM|Decreased white blood cell count|Decreased white blood cell count +C0024312|T047|ET|D72.810|ICD10CM|Decreased lymphocytes|Decreased lymphocytes +C0024312|T047|PT|D72.810|ICD10CM|Lymphocytopenia|Lymphocytopenia +C0024312|T047|AB|D72.810|ICD10CM|Lymphocytopenia|Lymphocytopenia +C1719331|T033|ET|D72.818|ICD10CM|Basophilic leukopenia|Basophilic leukopenia +C0272195|T047|ET|D72.818|ICD10CM|Eosinophilic leukopenia|Eosinophilic leukopenia +C0427544|T033|ET|D72.818|ICD10CM|Monocytopenia|Monocytopenia +C2873817|T033|ET|D72.818|ICD10CM|Other decreased leukocytes|Other decreased leukocytes +C1719330|T047|AB|D72.818|ICD10CM|Other decreased white blood cell count|Other decreased white blood cell count +C1719330|T047|PT|D72.818|ICD10CM|Other decreased white blood cell count|Other decreased white blood cell count +C1719333|T047|ET|D72.818|ICD10CM|Plasmacytopenia|Plasmacytopenia +C1719329|T033|ET|D72.819|ICD10CM|Decreased leukocytes, unspecified|Decreased leukocytes, unspecified +C1719725|T033|AB|D72.819|ICD10CM|Decreased white blood cell count, unspecified|Decreased white blood cell count, unspecified +C1719725|T033|PT|D72.819|ICD10CM|Decreased white blood cell count, unspecified|Decreased white blood cell count, unspecified +C0023530|T047|ET|D72.819|ICD10CM|Leukocytopenia, unspecified|Leukocytopenia, unspecified +C0023530|T047|ET|D72.819|ICD10CM|Leukopenia|Leukopenia +C0750426|T033|AB|D72.82|ICD10CM|Elevated white blood cell count|Elevated white blood cell count +C0750426|T033|HT|D72.82|ICD10CM|Elevated white blood cell count|Elevated white blood cell count +C1719338|T033|ET|D72.820|ICD10CM|Elevated lymphocytes|Elevated lymphocytes +C1719337|T047|AB|D72.820|ICD10CM|Lymphocytosis (symptomatic)|Lymphocytosis (symptomatic) +C1719337|T047|PT|D72.820|ICD10CM|Lymphocytosis (symptomatic)|Lymphocytosis (symptomatic) +C1719340|T047|AB|D72.821|ICD10CM|Monocytosis (symptomatic)|Monocytosis (symptomatic) +C1719340|T047|PT|D72.821|ICD10CM|Monocytosis (symptomatic)|Monocytosis (symptomatic) +C0085663|T047|PT|D72.822|ICD10CM|Plasmacytosis|Plasmacytosis +C0085663|T047|AB|D72.822|ICD10CM|Plasmacytosis|Plasmacytosis +C1719339|T047|ET|D72.823|ICD10CM|Basophilic leukemoid reaction|Basophilic leukemoid reaction +C0023501|T047|PT|D72.823|ICD10CM|Leukemoid reaction|Leukemoid reaction +C0023501|T047|AB|D72.823|ICD10CM|Leukemoid reaction|Leukemoid reaction +C0023501|T047|ET|D72.823|ICD10CM|Leukemoid reaction NOS|Leukemoid reaction NOS +C0272215|T047|ET|D72.823|ICD10CM|Lymphocytic leukemoid reaction|Lymphocytic leukemoid reaction +C0272198|T047|ET|D72.823|ICD10CM|Monocytic leukemoid reaction|Monocytic leukemoid reaction +C0272161|T047|ET|D72.823|ICD10CM|Myelocytic leukemoid reaction|Myelocytic leukemoid reaction +C0272161|T047|ET|D72.823|ICD10CM|Neutrophilic leukemoid reaction|Neutrophilic leukemoid reaction +C0702266|T047|PT|D72.824|ICD10CM|Basophilia|Basophilia +C0702266|T047|AB|D72.824|ICD10CM|Basophilia|Basophilia +C0741439|T047|PT|D72.825|ICD10CM|Bandemia|Bandemia +C0741439|T047|AB|D72.825|ICD10CM|Bandemia|Bandemia +C1955748|T047|ET|D72.825|ICD10CM|Bandemia without diagnosis of specific infection|Bandemia without diagnosis of specific infection +C1719341|T047|AB|D72.828|ICD10CM|Other elevated white blood cell count|Other elevated white blood cell count +C1719341|T047|PT|D72.828|ICD10CM|Other elevated white blood cell count|Other elevated white blood cell count +C1719335|T033|ET|D72.829|ICD10CM|Elevated leukocytes, unspecified|Elevated leukocytes, unspecified +C1719336|T033|AB|D72.829|ICD10CM|Elevated white blood cell count, unspecified|Elevated white blood cell count, unspecified +C1719336|T033|PT|D72.829|ICD10CM|Elevated white blood cell count, unspecified|Elevated white blood cell count, unspecified +C0023518|T047|ET|D72.829|ICD10CM|Leukocytosis, unspecified|Leukocytosis, unspecified +C2873818|T033|ET|D72.89|ICD10CM|Abnormality of white blood cells NEC|Abnormality of white blood cells NEC +C0477318|T047|PT|D72.89|ICD10CM|Other specified disorders of white blood cells|Other specified disorders of white blood cells +C0477318|T047|AB|D72.89|ICD10CM|Other specified disorders of white blood cells|Other specified disorders of white blood cells +C2873819|T033|ET|D72.9|ICD10CM|Abnormal leukocyte differential NOS|Abnormal leukocyte differential NOS +C0023510|T047|PT|D72.9|ICD10CM|Disorder of white blood cells, unspecified|Disorder of white blood cells, unspecified +C0023510|T047|AB|D72.9|ICD10CM|Disorder of white blood cells, unspecified|Disorder of white blood cells, unspecified +C0023510|T047|PT|D72.9|ICD10|Disorder of white blood cells, unspecified|Disorder of white blood cells, unspecified +C0037997|T047|HT|D73|ICD10|Diseases of spleen|Diseases of spleen +C0037997|T047|AB|D73|ICD10CM|Diseases of spleen|Diseases of spleen +C0037997|T047|HT|D73|ICD10CM|Diseases of spleen|Diseases of spleen +C0340987|T047|ET|D73.0|ICD10CM|Atrophy of spleen|Atrophy of spleen +C0272404|T047|PT|D73.0|ICD10CM|Hyposplenism|Hyposplenism +C0272404|T047|AB|D73.0|ICD10CM|Hyposplenism|Hyposplenism +C0272404|T047|PT|D73.0|ICD10|Hyposplenism|Hyposplenism +C0020532|T047|PT|D73.1|ICD10|Hypersplenism|Hypersplenism +C0020532|T047|PT|D73.1|ICD10CM|Hypersplenism|Hypersplenism +C0020532|T047|AB|D73.1|ICD10CM|Hypersplenism|Hypersplenism +C0398661|T047|PT|D73.2|ICD10CM|Chronic congestive splenomegaly|Chronic congestive splenomegaly +C0398661|T047|AB|D73.2|ICD10CM|Chronic congestive splenomegaly|Chronic congestive splenomegaly +C0398661|T047|PT|D73.2|ICD10|Chronic congestive splenomegaly|Chronic congestive splenomegaly +C0272412|T047|PT|D73.3|ICD10|Abscess of spleen|Abscess of spleen +C0272412|T047|PT|D73.3|ICD10CM|Abscess of spleen|Abscess of spleen +C0272412|T047|AB|D73.3|ICD10CM|Abscess of spleen|Abscess of spleen +C0272407|T047|PT|D73.4|ICD10CM|Cyst of spleen|Cyst of spleen +C0272407|T047|AB|D73.4|ICD10CM|Cyst of spleen|Cyst of spleen +C0272407|T047|PT|D73.4|ICD10|Cyst of spleen|Cyst of spleen +C0037998|T047|PT|D73.5|ICD10|Infarction of spleen|Infarction of spleen +C0037998|T047|PT|D73.5|ICD10CM|Infarction of spleen|Infarction of spleen +C0037998|T047|AB|D73.5|ICD10CM|Infarction of spleen|Infarction of spleen +C0272409|T047|ET|D73.5|ICD10CM|Splenic rupture, nontraumatic|Splenic rupture, nontraumatic +C0340985|T046|ET|D73.5|ICD10CM|Torsion of spleen|Torsion of spleen +C0154305|T047|PT|D73.8|ICD10|Other diseases of spleen|Other diseases of spleen +C0154305|T047|HT|D73.8|ICD10CM|Other diseases of spleen|Other diseases of spleen +C0154305|T047|AB|D73.8|ICD10CM|Other diseases of spleen|Other diseases of spleen +C0398580|T047|PT|D73.81|ICD10CM|Neutropenic splenomegaly|Neutropenic splenomegaly +C0398580|T047|AB|D73.81|ICD10CM|Neutropenic splenomegaly|Neutropenic splenomegaly +C2873820|T047|ET|D73.81|ICD10CM|Werner-Schultz disease|Werner-Schultz disease +C0272408|T047|ET|D73.89|ICD10CM|Fibrosis of spleen NOS|Fibrosis of spleen NOS +C0154305|T047|PT|D73.89|ICD10CM|Other diseases of spleen|Other diseases of spleen +C0154305|T047|AB|D73.89|ICD10CM|Other diseases of spleen|Other diseases of spleen +C0272413|T047|ET|D73.89|ICD10CM|Perisplenitis|Perisplenitis +C0272410|T047|ET|D73.89|ICD10CM|Splenitis NOS|Splenitis NOS +C0037997|T047|PT|D73.9|ICD10CM|Disease of spleen, unspecified|Disease of spleen, unspecified +C0037997|T047|AB|D73.9|ICD10CM|Disease of spleen, unspecified|Disease of spleen, unspecified +C0037997|T047|PT|D73.9|ICD10|Disease of spleen, unspecified|Disease of spleen, unspecified +C0025637|T047|HT|D74|ICD10|Methaemoglobinaemia|Methaemoglobinaemia +C0025637|T047|HT|D74|ICD10AE|Methemoglobinemia|Methemoglobinemia +C0025637|T047|HT|D74|ICD10CM|Methemoglobinemia|Methemoglobinemia +C0025637|T047|AB|D74|ICD10CM|Methemoglobinemia|Methemoglobinemia +C0272087|T047|PT|D74.0|ICD10|Congenital methaemoglobinaemia|Congenital methaemoglobinaemia +C0272087|T047|PT|D74.0|ICD10AE|Congenital methemoglobinemia|Congenital methemoglobinemia +C0272087|T047|PT|D74.0|ICD10CM|Congenital methemoglobinemia|Congenital methemoglobinemia +C0272087|T047|AB|D74.0|ICD10CM|Congenital methemoglobinemia|Congenital methemoglobinemia +C0268193|T047|ET|D74.0|ICD10CM|Congenital NADH-methemoglobin reductase deficiency|Congenital NADH-methemoglobin reductase deficiency +C2873821|T047|ET|D74.0|ICD10CM|Hemoglobin-M [Hb-M] disease|Hemoglobin-M [Hb-M] disease +C3665425|T047|ET|D74.0|ICD10CM|Methemoglobinemia, hereditary|Methemoglobinemia, hereditary +C0865279|T020|ET|D74.8|ICD10CM|Acquired methemoglobinemia (with sulfhemoglobinemia)|Acquired methemoglobinemia (with sulfhemoglobinemia) +C0477319|T047|PT|D74.8|ICD10|Other methaemoglobinaemias|Other methaemoglobinaemias +C0477319|T047|AB|D74.8|ICD10CM|Other methemoglobinemias|Other methemoglobinemias +C0477319|T047|PT|D74.8|ICD10CM|Other methemoglobinemias|Other methemoglobinemias +C2242784|T047|ET|D74.8|ICD10CM|Toxic methemoglobinemia|Toxic methemoglobinemia +C0025637|T047|PT|D74.9|ICD10|Methaemoglobinaemia, unspecified|Methaemoglobinaemia, unspecified +C0025637|T047|PT|D74.9|ICD10AE|Methemoglobinemia, unspecified|Methemoglobinemia, unspecified +C0025637|T047|PT|D74.9|ICD10CM|Methemoglobinemia, unspecified|Methemoglobinemia, unspecified +C0025637|T047|AB|D74.9|ICD10CM|Methemoglobinemia, unspecified|Methemoglobinemia, unspecified +C2873822|T047|AB|D75|ICD10CM|Other and unsp diseases of blood and blood-forming organs|Other and unsp diseases of blood and blood-forming organs +C2873822|T047|HT|D75|ICD10CM|Other and unspecified diseases of blood and blood-forming organs|Other and unspecified diseases of blood and blood-forming organs +C0451639|T047|HT|D75|ICD10|Other diseases of blood and blood-forming organs|Other diseases of blood and blood-forming organs +C0221276|T047|ET|D75.0|ICD10CM|Benign polycythemia|Benign polycythemia +C0152264|T047|PT|D75.0|ICD10|Familial erythrocytosis|Familial erythrocytosis +C0152264|T047|PT|D75.0|ICD10CM|Familial erythrocytosis|Familial erythrocytosis +C0152264|T047|AB|D75.0|ICD10CM|Familial erythrocytosis|Familial erythrocytosis +C0152264|T047|ET|D75.0|ICD10CM|Familial polycythemia|Familial polycythemia +C1318533|T047|ET|D75.1|ICD10CM|Acquired polycythemia|Acquired polycythemia +C0541719|T047|ET|D75.1|ICD10CM|Emotional polycythemia|Emotional polycythemia +C1527405|T033|ET|D75.1|ICD10CM|Erythrocytosis NOS|Erythrocytosis NOS +C0272144|T047|ET|D75.1|ICD10CM|Hypoxemic polycythemia|Hypoxemic polycythemia +C0391869|T047|ET|D75.1|ICD10CM|Nephrogenous polycythemia|Nephrogenous polycythemia +C2873823|T047|ET|D75.1|ICD10CM|Polycythemia due to erythropoietin|Polycythemia due to erythropoietin +C0865275|T047|ET|D75.1|ICD10CM|Polycythemia due to fall in plasma volume|Polycythemia due to fall in plasma volume +C0865276|T047|ET|D75.1|ICD10CM|Polycythemia due to high altitude|Polycythemia due to high altitude +C2873824|T047|ET|D75.1|ICD10CM|Polycythemia due to stress|Polycythemia due to stress +C0032461|T047|ET|D75.1|ICD10CM|Polycythemia NOS|Polycythemia NOS +C0221276|T047|ET|D75.1|ICD10CM|Relative polycythemia|Relative polycythemia +C1318533|T047|PT|D75.1|ICD10|Secondary polycythaemia|Secondary polycythaemia +C1318533|T047|PT|D75.1|ICD10AE|Secondary polycythemia|Secondary polycythemia +C1318533|T047|PT|D75.1|ICD10CM|Secondary polycythemia|Secondary polycythemia +C1318533|T047|AB|D75.1|ICD10CM|Secondary polycythemia|Secondary polycythemia +C0040028|T047|PT|D75.2|ICD10|Essential thrombocytosis|Essential thrombocytosis +C0029768|T047|PT|D75.8|ICD10|Other specified diseases of blood and blood-forming organs|Other specified diseases of blood and blood-forming organs +C0029768|T047|HT|D75.8|ICD10CM|Other specified diseases of blood and blood-forming organs|Other specified diseases of blood and blood-forming organs +C0029768|T047|AB|D75.8|ICD10CM|Other specified diseases of blood and blood-forming organs|Other specified diseases of blood and blood-forming organs +C0026987|T191|PT|D75.81|ICD10CM|Myelofibrosis|Myelofibrosis +C0026987|T191|AB|D75.81|ICD10CM|Myelofibrosis|Myelofibrosis +C0026987|T191|ET|D75.81|ICD10CM|Myelofibrosis NOS|Myelofibrosis NOS +C0242006|T047|ET|D75.81|ICD10CM|Secondary myelofibrosis NOS|Secondary myelofibrosis NOS +C0272285|T047|AB|D75.82|ICD10CM|Heparin induced thrombocytopenia (HIT)|Heparin induced thrombocytopenia (HIT) +C0272285|T047|PT|D75.82|ICD10CM|Heparin induced thrombocytopenia (HIT)|Heparin induced thrombocytopenia (HIT) +C0029768|T047|PT|D75.89|ICD10CM|Other specified diseases of blood and blood-forming organs|Other specified diseases of blood and blood-forming organs +C0029768|T047|AB|D75.89|ICD10CM|Other specified diseases of blood and blood-forming organs|Other specified diseases of blood and blood-forming organs +C0018939|T047|PT|D75.9|ICD10CM|Disease of blood and blood-forming organs, unspecified|Disease of blood and blood-forming organs, unspecified +C0018939|T047|AB|D75.9|ICD10CM|Disease of blood and blood-forming organs, unspecified|Disease of blood and blood-forming organs, unspecified +C0018939|T047|PT|D75.9|ICD10|Disease of blood and blood-forming organs, unspecified|Disease of blood and blood-forming organs, unspecified +C5140807|T047|AB|D75.A|ICD10CM|Glucose-6-phosphate dehydrgnse (G6PD) defic without anemia|Glucose-6-phosphate dehydrgnse (G6PD) defic without anemia +C5140807|T047|PT|D75.A|ICD10CM|Glucose-6-phosphate dehydrogenase (G6PD) deficiency without anemia|Glucose-6-phosphate dehydrogenase (G6PD) deficiency without anemia +C0494246|T047|HT|D76|ICD10|Certain diseases involving lymphoreticular tissue and reticulohistiocytic system|Certain diseases involving lymphoreticular tissue and reticulohistiocytic system +C2873825|T047|AB|D76|ICD10CM|Oth dis with lymphoreticular and reticulohistiocytic tissue|Oth dis with lymphoreticular and reticulohistiocytic tissue +C2873825|T047|HT|D76|ICD10CM|Other specified diseases with participation of lymphoreticular and reticulohistiocytic tissue|Other specified diseases with participation of lymphoreticular and reticulohistiocytic tissue +C0494247|T047|PT|D76.0|ICD10|Langerhans' cell histiocytosis, not elsewhere classified|Langerhans' cell histiocytosis, not elsewhere classified +C0272199|T047|ET|D76.1|ICD10CM|Familial hemophagocytic reticulosis|Familial hemophagocytic reticulosis +C0024291|T047|PT|D76.1|ICD10|Haemophagocytic lymphohistiocytosis|Haemophagocytic lymphohistiocytosis +C0024291|T047|PT|D76.1|ICD10CM|Hemophagocytic lymphohistiocytosis|Hemophagocytic lymphohistiocytosis +C0024291|T047|AB|D76.1|ICD10CM|Hemophagocytic lymphohistiocytosis|Hemophagocytic lymphohistiocytosis +C1399675|T047|ET|D76.1|ICD10CM|Histiocytoses of mononuclear phagocytes|Histiocytoses of mononuclear phagocytes +C0019068|T047|PT|D76.2|ICD10|Haemophagocytic syndrome, infection-associated|Haemophagocytic syndrome, infection-associated +C0019068|T047|PT|D76.2|ICD10CM|Hemophagocytic syndrome, infection-associated|Hemophagocytic syndrome, infection-associated +C0019068|T047|AB|D76.2|ICD10CM|Hemophagocytic syndrome, infection-associated|Hemophagocytic syndrome, infection-associated +C0477320|T047|PT|D76.3|ICD10|Other histiocytosis syndromes|Other histiocytosis syndromes +C0477320|T047|PT|D76.3|ICD10CM|Other histiocytosis syndromes|Other histiocytosis syndromes +C0477320|T047|AB|D76.3|ICD10CM|Other histiocytosis syndromes|Other histiocytosis syndromes +C2873826|T047|ET|D76.3|ICD10CM|Reticulohistiocytoma (giant-cell)|Reticulohistiocytoma (giant-cell) +C0019625|T047|ET|D76.3|ICD10CM|Sinus histiocytosis with massive lymphadenopathy|Sinus histiocytosis with massive lymphadenopathy +C1704214|T047|ET|D76.3|ICD10CM|Xanthogranuloma|Xanthogranuloma +C0477321|T047|AB|D77|ICD10CM|Oth disord of bld/bld-frm organs in diseases classd elswhr|Oth disord of bld/bld-frm organs in diseases classd elswhr +C0477321|T047|PT|D77|ICD10CM|Other disorders of blood and blood-forming organs in diseases classified elsewhere|Other disorders of blood and blood-forming organs in diseases classified elsewhere +C0477321|T047|PT|D77|ICD10|Other disorders of blood and blood-forming organs in diseases classified elsewhere|Other disorders of blood and blood-forming organs in diseases classified elsewhere +C2873827|T046|AB|D78|ICD10CM|Intraop and postprocedural complications of the spleen|Intraop and postprocedural complications of the spleen +C2873827|T046|HT|D78|ICD10CM|Intraoperative and postprocedural complications of the spleen|Intraoperative and postprocedural complications of the spleen +C2873827|T046|HT|D78-D78|ICD10CM|Intraoperative and postprocedural complications of the spleen (D78)|Intraoperative and postprocedural complications of the spleen (D78) +C2873828|T046|AB|D78.0|ICD10CM|Intraop hemor/hemtom of the spleen complicating a procedure|Intraop hemor/hemtom of the spleen complicating a procedure +C2873828|T046|HT|D78.0|ICD10CM|Intraoperative hemorrhage and hematoma of the spleen complicating a procedure|Intraoperative hemorrhage and hematoma of the spleen complicating a procedure +C2873829|T046|AB|D78.01|ICD10CM|Intraop hemor/hemtom of the spleen comp a proc on the spleen|Intraop hemor/hemtom of the spleen comp a proc on the spleen +C2873829|T046|PT|D78.01|ICD10CM|Intraoperative hemorrhage and hematoma of the spleen complicating a procedure on the spleen|Intraoperative hemorrhage and hematoma of the spleen complicating a procedure on the spleen +C2873830|T046|AB|D78.02|ICD10CM|Intraop hemor/hemtom of the spleen comp oth procedure|Intraop hemor/hemtom of the spleen comp oth procedure +C2873830|T046|PT|D78.02|ICD10CM|Intraoperative hemorrhage and hematoma of the spleen complicating other procedure|Intraoperative hemorrhage and hematoma of the spleen complicating other procedure +C2873831|T037|AB|D78.1|ICD10CM|Accidental pnctr & lac of the spleen during a procedure|Accidental pnctr & lac of the spleen during a procedure +C2873831|T037|HT|D78.1|ICD10CM|Accidental puncture and laceration of the spleen during a procedure|Accidental puncture and laceration of the spleen during a procedure +C2873832|T037|AB|D78.11|ICD10CM|Accidental pnctr & lac of the spleen dur proc on the spleen|Accidental pnctr & lac of the spleen dur proc on the spleen +C2873832|T037|PT|D78.11|ICD10CM|Accidental puncture and laceration of the spleen during a procedure on the spleen|Accidental puncture and laceration of the spleen during a procedure on the spleen +C2873833|T037|AB|D78.12|ICD10CM|Accidental pnctr & lac of the spleen during oth procedure|Accidental pnctr & lac of the spleen during oth procedure +C2873833|T037|PT|D78.12|ICD10CM|Accidental puncture and laceration of the spleen during other procedure|Accidental puncture and laceration of the spleen during other procedure +C3646687|T046|AB|D78.2|ICD10CM|Postproc hemorrhage of the spleen following a procedure|Postproc hemorrhage of the spleen following a procedure +C3646687|T046|HT|D78.2|ICD10CM|Postprocedural hemorrhage of the spleen following a procedure|Postprocedural hemorrhage of the spleen following a procedure +C3646686|T046|AB|D78.21|ICD10CM|Postprocedural hemorrhage of the spleen fol proc on spleen|Postprocedural hemorrhage of the spleen fol proc on spleen +C3646686|T046|PT|D78.21|ICD10CM|Postprocedural hemorrhage of the spleen following a procedure on the spleen|Postprocedural hemorrhage of the spleen following a procedure on the spleen +C4267886|T046|AB|D78.22|ICD10CM|Postproc hemorrhage of the spleen following other procedure|Postproc hemorrhage of the spleen following other procedure +C4267886|T046|PT|D78.22|ICD10CM|Postprocedural hemorrhage of the spleen following other procedure|Postprocedural hemorrhage of the spleen following other procedure +C4267887|T046|AB|D78.3|ICD10CM|Postproc hematoma and seroma of the spleen fol a procedure|Postproc hematoma and seroma of the spleen fol a procedure +C4267887|T046|HT|D78.3|ICD10CM|Postprocedural hematoma and seroma of the spleen following a procedure|Postprocedural hematoma and seroma of the spleen following a procedure +C3646699|T046|AB|D78.31|ICD10CM|Postprocedural hematoma of the spleen fol proc on spleen|Postprocedural hematoma of the spleen fol proc on spleen +C3646699|T046|PT|D78.31|ICD10CM|Postprocedural hematoma of the spleen following a procedure on the spleen|Postprocedural hematoma of the spleen following a procedure on the spleen +C4267888|T046|AB|D78.32|ICD10CM|Postproc hematoma of the spleen following other procedure|Postproc hematoma of the spleen following other procedure +C4267888|T046|PT|D78.32|ICD10CM|Postprocedural hematoma of the spleen following other procedure|Postprocedural hematoma of the spleen following other procedure +C4267889|T046|AB|D78.33|ICD10CM|Postprocedural seroma of the spleen fol proc on spleen|Postprocedural seroma of the spleen fol proc on spleen +C4267889|T046|PT|D78.33|ICD10CM|Postprocedural seroma of the spleen following a procedure on the spleen|Postprocedural seroma of the spleen following a procedure on the spleen +C4267890|T046|AB|D78.34|ICD10CM|Postproc seroma of the spleen following other procedure|Postproc seroma of the spleen following other procedure +C4267890|T046|PT|D78.34|ICD10CM|Postprocedural seroma of the spleen following other procedure|Postprocedural seroma of the spleen following other procedure +C2873837|T046|AB|D78.8|ICD10CM|Oth intraop and postprocedural complications of the spleen|Oth intraop and postprocedural complications of the spleen +C2873837|T046|HT|D78.8|ICD10CM|Other intraoperative and postprocedural complications of the spleen|Other intraoperative and postprocedural complications of the spleen +C2873838|T046|AB|D78.81|ICD10CM|Other intraoperative complications of the spleen|Other intraoperative complications of the spleen +C2873838|T046|PT|D78.81|ICD10CM|Other intraoperative complications of the spleen|Other intraoperative complications of the spleen +C2873839|T046|AB|D78.89|ICD10CM|Other postprocedural complications of the spleen|Other postprocedural complications of the spleen +C2873839|T046|PT|D78.89|ICD10CM|Other postprocedural complications of the spleen|Other postprocedural complications of the spleen +C0494248|T047|HT|D80|ICD10|Immunodeficiency with predominantly antibody defects|Immunodeficiency with predominantly antibody defects +C0494248|T047|AB|D80|ICD10CM|Immunodeficiency with predominantly antibody defects|Immunodeficiency with predominantly antibody defects +C0494248|T047|HT|D80|ICD10CM|Immunodeficiency with predominantly antibody defects|Immunodeficiency with predominantly antibody defects +C0477322|T047|HT|D80-D89|ICD10CM|Certain disorders involving the immune mechanism (D80-D89)|Certain disorders involving the immune mechanism (D80-D89) +C0272242|T047|ET|D80-D89|ICD10CM|defects in the complement system|defects in the complement system +C4290089|T047|ET|D80-D89|ICD10CM|immunodeficiency disorders, except human immunodeficiency virus [HIV] disease|immunodeficiency disorders, except human immunodeficiency virus [HIV] disease +C0036202|T047|ET|D80-D89|ICD10CM|sarcoidosis|sarcoidosis +C0477322|T047|HT|D80-D89.9|ICD10|Certain disorders involving the immune mechanism|Certain disorders involving the immune mechanism +C2873841|T047|ET|D80.0|ICD10CM|Autosomal recessive agammaglobulinemia (Swiss type)|Autosomal recessive agammaglobulinemia (Swiss type) +C0494249|T047|PT|D80.0|ICD10|Hereditary hypogammaglobulinaemia|Hereditary hypogammaglobulinaemia +C0494249|T047|PT|D80.0|ICD10AE|Hereditary hypogammaglobulinemia|Hereditary hypogammaglobulinemia +C0494249|T047|PT|D80.0|ICD10CM|Hereditary hypogammaglobulinemia|Hereditary hypogammaglobulinemia +C0494249|T047|AB|D80.0|ICD10CM|Hereditary hypogammaglobulinemia|Hereditary hypogammaglobulinemia +C2873842|T047|ET|D80.0|ICD10CM|X-linked agammaglobulinemia [Bruton] (with growth hormone deficiency)|X-linked agammaglobulinemia [Bruton] (with growth hormone deficiency) +C1386923|T047|ET|D80.1|ICD10CM|Agammaglobulinemia with immunoglobulin-bearing B-lymphocytes|Agammaglobulinemia with immunoglobulin-bearing B-lymphocytes +C2873843|T047|ET|D80.1|ICD10CM|Common variable agammaglobulinemia [CVAgamma]|Common variable agammaglobulinemia [CVAgamma] +C0086438|T047|ET|D80.1|ICD10CM|Hypogammaglobulinemia NOS|Hypogammaglobulinemia NOS +C0494250|T047|PT|D80.1|ICD10|Nonfamilial hypogammaglobulinaemia|Nonfamilial hypogammaglobulinaemia +C0494250|T047|PT|D80.1|ICD10CM|Nonfamilial hypogammaglobulinemia|Nonfamilial hypogammaglobulinemia +C0494250|T047|AB|D80.1|ICD10CM|Nonfamilial hypogammaglobulinemia|Nonfamilial hypogammaglobulinemia +C0494250|T047|PT|D80.1|ICD10AE|Nonfamilial hypogammaglobulinemia|Nonfamilial hypogammaglobulinemia +C4049006|T047|PT|D80.2|ICD10|Selective deficiency of immunoglobulin A [IgA]|Selective deficiency of immunoglobulin A [IgA] +C4049006|T047|PT|D80.2|ICD10CM|Selective deficiency of immunoglobulin A [IgA]|Selective deficiency of immunoglobulin A [IgA] +C4049006|T047|AB|D80.2|ICD10CM|Selective deficiency of immunoglobulin A [IgA]|Selective deficiency of immunoglobulin A [IgA] +C0162539|T047|PT|D80.3|ICD10CM|Selective deficiency of immunoglobulin G [IgG] subclasses|Selective deficiency of immunoglobulin G [IgG] subclasses +C0162539|T047|AB|D80.3|ICD10CM|Selective deficiency of immunoglobulin G [IgG] subclasses|Selective deficiency of immunoglobulin G [IgG] subclasses +C0162539|T047|PT|D80.3|ICD10|Selective deficiency of immunoglobulin G [IgG] subclasses|Selective deficiency of immunoglobulin G [IgG] subclasses +C0154275|T046|PT|D80.4|ICD10|Selective deficiency of immunoglobulin M [IgM]|Selective deficiency of immunoglobulin M [IgM] +C0154275|T046|AB|D80.4|ICD10CM|Selective deficiency of immunoglobulin M [IgM]|Selective deficiency of immunoglobulin M [IgM] +C0154275|T046|PT|D80.4|ICD10CM|Selective deficiency of immunoglobulin M [IgM]|Selective deficiency of immunoglobulin M [IgM] +C0740331|T047|PT|D80.5|ICD10|Immunodeficiency with increased immunoglobulin M [IgM]|Immunodeficiency with increased immunoglobulin M [IgM] +C0740331|T047|PT|D80.5|ICD10CM|Immunodeficiency with increased immunoglobulin M [IgM]|Immunodeficiency with increased immunoglobulin M [IgM] +C0740331|T047|AB|D80.5|ICD10CM|Immunodeficiency with increased immunoglobulin M [IgM]|Immunodeficiency with increased immunoglobulin M [IgM] +C0475535|T047|AB|D80.6|ICD10CM|Antibody defic w near-norm immunoglob or w hyperimmunoglob|Antibody defic w near-norm immunoglob or w hyperimmunoglob +C0475535|T047|PT|D80.6|ICD10|Antibody deficiency with near-normal immunoglobulins or with hyperimmunoglobulinaemia|Antibody deficiency with near-normal immunoglobulins or with hyperimmunoglobulinaemia +C0475535|T047|PT|D80.6|ICD10CM|Antibody deficiency with near-normal immunoglobulins or with hyperimmunoglobulinemia|Antibody deficiency with near-normal immunoglobulins or with hyperimmunoglobulinemia +C0475535|T047|PT|D80.6|ICD10AE|Antibody deficiency with near-normal immunoglobulins or with hyperimmunoglobulinemia|Antibody deficiency with near-normal immunoglobulins or with hyperimmunoglobulinemia +C0272238|T047|PT|D80.7|ICD10|Transient hypogammaglobulinaemia of infancy|Transient hypogammaglobulinaemia of infancy +C0272238|T047|PT|D80.7|ICD10AE|Transient hypogammaglobulinemia of infancy|Transient hypogammaglobulinemia of infancy +C0272238|T047|PT|D80.7|ICD10CM|Transient hypogammaglobulinemia of infancy|Transient hypogammaglobulinemia of infancy +C0272238|T047|AB|D80.7|ICD10CM|Transient hypogammaglobulinemia of infancy|Transient hypogammaglobulinemia of infancy +C3248381|T047|ET|D80.8|ICD10CM|Kappa light chain deficiency|Kappa light chain deficiency +C0477323|T047|PT|D80.8|ICD10|Other immunodeficiencies with predominantly antibody defects|Other immunodeficiencies with predominantly antibody defects +C0477323|T047|PT|D80.8|ICD10CM|Other immunodeficiencies with predominantly antibody defects|Other immunodeficiencies with predominantly antibody defects +C0477323|T047|AB|D80.8|ICD10CM|Other immunodeficiencies with predominantly antibody defects|Other immunodeficiencies with predominantly antibody defects +C0494248|T047|AB|D80.9|ICD10CM|Immunodeficiency with predominantly antibody defects, unsp|Immunodeficiency with predominantly antibody defects, unsp +C0494248|T047|PT|D80.9|ICD10CM|Immunodeficiency with predominantly antibody defects, unspecified|Immunodeficiency with predominantly antibody defects, unspecified +C0494248|T047|PT|D80.9|ICD10|Immunodeficiency with predominantly antibody defects, unspecified|Immunodeficiency with predominantly antibody defects, unspecified +C0494261|T047|HT|D81|ICD10|Combined immunodeficiencies|Combined immunodeficiencies +C0494261|T047|AB|D81|ICD10CM|Combined immunodeficiencies|Combined immunodeficiencies +C0494261|T047|HT|D81|ICD10CM|Combined immunodeficiencies|Combined immunodeficiencies +C0494256|T047|PT|D81.0|ICD10CM|Severe combined immunodeficiency [SCID] with reticular dysgenesis|Severe combined immunodeficiency [SCID] with reticular dysgenesis +C0494256|T047|PT|D81.0|ICD10|Severe combined immunodeficiency [SCID] with reticular dysgenesis|Severe combined immunodeficiency [SCID] with reticular dysgenesis +C0494256|T047|AB|D81.0|ICD10CM|Severe combined immunodeficiency with reticular dysgenesis|Severe combined immunodeficiency with reticular dysgenesis +C0451693|T047|PT|D81.1|ICD10|Severe combined immunodeficiency [SCID] with low T- and B-cell numbers|Severe combined immunodeficiency [SCID] with low T- and B-cell numbers +C0451693|T047|PT|D81.1|ICD10CM|Severe combined immunodeficiency [SCID] with low T- and B-cell numbers|Severe combined immunodeficiency [SCID] with low T- and B-cell numbers +C0451693|T047|AB|D81.1|ICD10CM|Severe combined immunodeficiency w low T- and B-cell numbers|Severe combined immunodeficiency w low T- and B-cell numbers +C0451694|T047|AB|D81.2|ICD10CM|Severe combined immunodef w low or normal B-cell numbers|Severe combined immunodef w low or normal B-cell numbers +C0451694|T047|PT|D81.2|ICD10CM|Severe combined immunodeficiency [SCID] with low or normal B-cell numbers|Severe combined immunodeficiency [SCID] with low or normal B-cell numbers +C0451694|T047|PT|D81.2|ICD10|Severe combined immunodeficiency [SCID] with low or normal B-cell numbers|Severe combined immunodeficiency [SCID] with low or normal B-cell numbers +C0268124|T047|AB|D81.3|ICD10CM|Adenosine deaminase [ADA] deficiency|Adenosine deaminase [ADA] deficiency +C0268124|T047|HT|D81.3|ICD10CM|Adenosine deaminase [ADA] deficiency|Adenosine deaminase [ADA] deficiency +C0268124|T047|PT|D81.3|ICD10|Adenosine deaminase [ADA] deficiency|Adenosine deaminase [ADA] deficiency +C0268124|T047|ET|D81.30|ICD10CM|ADA deficiency NOS|ADA deficiency NOS +C0268124|T047|AB|D81.30|ICD10CM|Adenosine deaminase deficiency, unspecified|Adenosine deaminase deficiency, unspecified +C0268124|T047|PT|D81.30|ICD10CM|Adenosine deaminase deficiency, unspecified|Adenosine deaminase deficiency, unspecified +C0392607|T047|ET|D81.31|ICD10CM|ADA deficiency with SCID|ADA deficiency with SCID +C0392607|T047|ET|D81.31|ICD10CM|Adenosine deaminase [ADA] deficiency with severe combined immunodeficiency|Adenosine deaminase [ADA] deficiency with severe combined immunodeficiency +C0392607|T047|AB|D81.31|ICD10CM|Severe combined immunodef due to adenosine deaminase defic|Severe combined immunodef due to adenosine deaminase defic +C0392607|T047|PT|D81.31|ICD10CM|Severe combined immunodeficiency due to adenosine deaminase deficiency|Severe combined immunodeficiency due to adenosine deaminase deficiency +C4289994|T047|ET|D81.32|ICD10CM|ADA2 deficiency|ADA2 deficiency +C4289994|T047|AB|D81.32|ICD10CM|Adenosine deaminase 2 deficiency|Adenosine deaminase 2 deficiency +C4289994|T047|PT|D81.32|ICD10CM|Adenosine deaminase 2 deficiency|Adenosine deaminase 2 deficiency +C4289994|T047|ET|D81.32|ICD10CM|Adenosine deaminase deficiency type 2|Adenosine deaminase deficiency type 2 +C5141124|T047|ET|D81.39|ICD10CM|Adenosine deaminase [ADA] deficiency type 1, NOS|Adenosine deaminase [ADA] deficiency type 1, NOS +C5141125|T047|ET|D81.39|ICD10CM|Adenosine deaminase [ADA] deficiency type 1, without SCID|Adenosine deaminase [ADA] deficiency type 1, without SCID +C5141125|T047|ET|D81.39|ICD10CM|Adenosine deaminase [ADA] deficiency type 1, without severe combined immunodeficiency|Adenosine deaminase [ADA] deficiency type 1, without severe combined immunodeficiency +C5141121|T047|AB|D81.39|ICD10CM|Other adenosine deaminase deficiency|Other adenosine deaminase deficiency +C5141121|T047|PT|D81.39|ICD10CM|Other adenosine deaminase deficiency|Other adenosine deaminase deficiency +C5141126|T047|ET|D81.39|ICD10CM|Partial ADA deficiency (type 1)|Partial ADA deficiency (type 1) +C5141126|T047|ET|D81.39|ICD10CM|Partial adenosine deaminase deficiency (type 1)|Partial adenosine deaminase deficiency (type 1) +C0152094|T047|PT|D81.4|ICD10|Nezelof's syndrome|Nezelof's syndrome +C0152094|T047|PT|D81.4|ICD10CM|Nezelof's syndrome|Nezelof's syndrome +C0152094|T047|AB|D81.4|ICD10CM|Nezelof's syndrome|Nezelof's syndrome +C0268125|T047|PT|D81.5|ICD10|Purine nucleoside phosphorylase [PNP] deficiency|Purine nucleoside phosphorylase [PNP] deficiency +C0268125|T047|PT|D81.5|ICD10CM|Purine nucleoside phosphorylase [PNP] deficiency|Purine nucleoside phosphorylase [PNP] deficiency +C0268125|T047|AB|D81.5|ICD10CM|Purine nucleoside phosphorylase [PNP] deficiency|Purine nucleoside phosphorylase [PNP] deficiency +C0242583|T047|ET|D81.6|ICD10CM|Bare lymphocyte syndrome|Bare lymphocyte syndrome +C0451695|T047|PT|D81.6|ICD10|Major histocompatibility complex class I deficiency|Major histocompatibility complex class I deficiency +C0451695|T047|PT|D81.6|ICD10CM|Major histocompatibility complex class I deficiency|Major histocompatibility complex class I deficiency +C0451695|T047|AB|D81.6|ICD10CM|Major histocompatibility complex class I deficiency|Major histocompatibility complex class I deficiency +C0451696|T047|PT|D81.7|ICD10CM|Major histocompatibility complex class II deficiency|Major histocompatibility complex class II deficiency +C0451696|T047|AB|D81.7|ICD10CM|Major histocompatibility complex class II deficiency|Major histocompatibility complex class II deficiency +C0451696|T047|PT|D81.7|ICD10|Major histocompatibility complex class II deficiency|Major histocompatibility complex class II deficiency +C0477324|T047|PT|D81.8|ICD10|Other combined immunodeficiencies|Other combined immunodeficiencies +C0477324|T047|HT|D81.8|ICD10CM|Other combined immunodeficiencies|Other combined immunodeficiencies +C0477324|T047|AB|D81.8|ICD10CM|Other combined immunodeficiencies|Other combined immunodeficiencies +C1389901|T047|AB|D81.81|ICD10CM|Biotin-dependent carboxylase deficiency|Biotin-dependent carboxylase deficiency +C1389901|T047|HT|D81.81|ICD10CM|Biotin-dependent carboxylase deficiency|Biotin-dependent carboxylase deficiency +C0026755|T047|ET|D81.81|ICD10CM|Multiple carboxylase deficiency|Multiple carboxylase deficiency +C0220754|T047|PT|D81.810|ICD10CM|Biotinidase deficiency|Biotinidase deficiency +C0220754|T047|AB|D81.810|ICD10CM|Biotinidase deficiency|Biotinidase deficiency +C0268581|T047|ET|D81.818|ICD10CM|Holocarboxylase synthetase deficiency|Holocarboxylase synthetase deficiency +C2873845|T047|AB|D81.818|ICD10CM|Other biotin-dependent carboxylase deficiency|Other biotin-dependent carboxylase deficiency +C2873845|T047|PT|D81.818|ICD10CM|Other biotin-dependent carboxylase deficiency|Other biotin-dependent carboxylase deficiency +C2873844|T046|ET|D81.818|ICD10CM|Other multiple carboxylase deficiency|Other multiple carboxylase deficiency +C1389901|T047|AB|D81.819|ICD10CM|Biotin-dependent carboxylase deficiency, unspecified|Biotin-dependent carboxylase deficiency, unspecified +C1389901|T047|PT|D81.819|ICD10CM|Biotin-dependent carboxylase deficiency, unspecified|Biotin-dependent carboxylase deficiency, unspecified +C0026755|T047|ET|D81.819|ICD10CM|Multiple carboxylase deficiency, unspecified|Multiple carboxylase deficiency, unspecified +C0477324|T047|PT|D81.89|ICD10CM|Other combined immunodeficiencies|Other combined immunodeficiencies +C0477324|T047|AB|D81.89|ICD10CM|Other combined immunodeficiencies|Other combined immunodeficiencies +C0494261|T047|PT|D81.9|ICD10|Combined immunodeficiency, unspecified|Combined immunodeficiency, unspecified +C0494261|T047|PT|D81.9|ICD10CM|Combined immunodeficiency, unspecified|Combined immunodeficiency, unspecified +C0494261|T047|AB|D81.9|ICD10CM|Combined immunodeficiency, unspecified|Combined immunodeficiency, unspecified +C2873846|T047|ET|D81.9|ICD10CM|Severe combined immunodeficiency disorder [SCID] NOS|Severe combined immunodeficiency disorder [SCID] NOS +C0494262|T047|AB|D82|ICD10CM|Immunodeficiency associated with other major defects|Immunodeficiency associated with other major defects +C0494262|T047|HT|D82|ICD10CM|Immunodeficiency associated with other major defects|Immunodeficiency associated with other major defects +C0494262|T047|HT|D82|ICD10|Immunodeficiency associated with other major defects|Immunodeficiency associated with other major defects +C0043194|T047|ET|D82.0|ICD10CM|Immunodeficiency with thrombocytopenia and eczema|Immunodeficiency with thrombocytopenia and eczema +C0043194|T047|PT|D82.0|ICD10CM|Wiskott-Aldrich syndrome|Wiskott-Aldrich syndrome +C0043194|T047|AB|D82.0|ICD10CM|Wiskott-Aldrich syndrome|Wiskott-Aldrich syndrome +C0043194|T047|PT|D82.0|ICD10|Wiskott-Aldrich syndrome|Wiskott-Aldrich syndrome +C0012236|T047|PT|D82.1|ICD10|Di George's syndrome|Di George's syndrome +C0012236|T047|PT|D82.1|ICD10CM|Di George's syndrome|Di George's syndrome +C0012236|T047|AB|D82.1|ICD10CM|Di George's syndrome|Di George's syndrome +C0012236|T047|ET|D82.1|ICD10CM|Pharyngeal pouch syndrome|Pharyngeal pouch syndrome +C0543687|T047|ET|D82.1|ICD10CM|Thymic alymphoplasia|Thymic alymphoplasia +C2873847|T047|ET|D82.1|ICD10CM|Thymic aplasia or hypoplasia with immunodeficiency|Thymic aplasia or hypoplasia with immunodeficiency +C0265299|T047|PT|D82.2|ICD10CM|Immunodeficiency with short-limbed stature|Immunodeficiency with short-limbed stature +C0265299|T047|AB|D82.2|ICD10CM|Immunodeficiency with short-limbed stature|Immunodeficiency with short-limbed stature +C0265299|T047|PT|D82.2|ICD10|Immunodeficiency with short-limbed stature|Immunodeficiency with short-limbed stature +C0451697|T047|AB|D82.3|ICD10CM|Immunodef fol heredit defctv response to Epstein-Barr virus|Immunodef fol heredit defctv response to Epstein-Barr virus +C0451697|T047|PT|D82.3|ICD10CM|Immunodeficiency following hereditary defective response to Epstein-Barr virus|Immunodeficiency following hereditary defective response to Epstein-Barr virus +C0451697|T047|PT|D82.3|ICD10|Immunodeficiency following hereditary defective response to Epstein-Barr virus|Immunodeficiency following hereditary defective response to Epstein-Barr virus +C0549463|T191|ET|D82.3|ICD10CM|X-linked lymphoproliferative disease|X-linked lymphoproliferative disease +C3887645|T047|PT|D82.4|ICD10|Hyperimmunoglobulin E [IgE] syndrome|Hyperimmunoglobulin E [IgE] syndrome +C3887645|T047|PT|D82.4|ICD10CM|Hyperimmunoglobulin E [IgE] syndrome|Hyperimmunoglobulin E [IgE] syndrome +C3887645|T047|AB|D82.4|ICD10CM|Hyperimmunoglobulin E [IgE] syndrome|Hyperimmunoglobulin E [IgE] syndrome +C0477325|T047|AB|D82.8|ICD10CM|Immunodeficiency associated with oth major defects|Immunodeficiency associated with oth major defects +C0477325|T047|PT|D82.8|ICD10CM|Immunodeficiency associated with other specified major defects|Immunodeficiency associated with other specified major defects +C0477325|T047|PT|D82.8|ICD10|Immunodeficiency associated with other specified major defects|Immunodeficiency associated with other specified major defects +C0477326|T047|PT|D82.9|ICD10|Immunodeficiency associated with major defect, unspecified|Immunodeficiency associated with major defect, unspecified +C0477326|T047|PT|D82.9|ICD10CM|Immunodeficiency associated with major defect, unspecified|Immunodeficiency associated with major defect, unspecified +C0477326|T047|AB|D82.9|ICD10CM|Immunodeficiency associated with major defect, unspecified|Immunodeficiency associated with major defect, unspecified +C0009447|T047|HT|D83|ICD10CM|Common variable immunodeficiency|Common variable immunodeficiency +C0009447|T047|AB|D83|ICD10CM|Common variable immunodeficiency|Common variable immunodeficiency +C0009447|T047|HT|D83|ICD10|Common variable immunodeficiency|Common variable immunodeficiency +C0451698|T047|AB|D83.0|ICD10CM|Com variab immunodef w predom abnlt of B-cell nums & functn|Com variab immunodef w predom abnlt of B-cell nums & functn +C0451698|T047|PT|D83.0|ICD10CM|Common variable immunodeficiency with predominant abnormalities of B-cell numbers and function|Common variable immunodeficiency with predominant abnormalities of B-cell numbers and function +C0451698|T047|PT|D83.0|ICD10|Common variable immunodeficiency with predominant abnormalities of B-cell numbers and function|Common variable immunodeficiency with predominant abnormalities of B-cell numbers and function +C0451690|T047|AB|D83.1|ICD10CM|Com variab immunodef w predom immunoreg T-cell disorders|Com variab immunodef w predom immunoreg T-cell disorders +C0451690|T047|PT|D83.1|ICD10CM|Common variable immunodeficiency with predominant immunoregulatory T-cell disorders|Common variable immunodeficiency with predominant immunoregulatory T-cell disorders +C0451690|T047|PT|D83.1|ICD10|Common variable immunodeficiency with predominant immunoregulatory T-cell disorders|Common variable immunodeficiency with predominant immunoregulatory T-cell disorders +C0451691|T047|AB|D83.2|ICD10CM|Common variable immunodef w autoantibodies to B- or T-cells|Common variable immunodef w autoantibodies to B- or T-cells +C0451691|T047|PT|D83.2|ICD10CM|Common variable immunodeficiency with autoantibodies to B- or T-cells|Common variable immunodeficiency with autoantibodies to B- or T-cells +C0451691|T047|PT|D83.2|ICD10|Common variable immunodeficiency with autoantibodies to B- or T-cells|Common variable immunodeficiency with autoantibodies to B- or T-cells +C0477327|T047|PT|D83.8|ICD10|Other common variable immunodeficiencies|Other common variable immunodeficiencies +C0477327|T047|PT|D83.8|ICD10CM|Other common variable immunodeficiencies|Other common variable immunodeficiencies +C0477327|T047|AB|D83.8|ICD10CM|Other common variable immunodeficiencies|Other common variable immunodeficiencies +C0009447|T047|PT|D83.9|ICD10|Common variable immunodeficiency, unspecified|Common variable immunodeficiency, unspecified +C0009447|T047|PT|D83.9|ICD10CM|Common variable immunodeficiency, unspecified|Common variable immunodeficiency, unspecified +C0009447|T047|AB|D83.9|ICD10CM|Common variable immunodeficiency, unspecified|Common variable immunodeficiency, unspecified +C0494264|T047|HT|D84|ICD10|Other immunodeficiencies|Other immunodeficiencies +C0494264|T047|AB|D84|ICD10CM|Other immunodeficiencies|Other immunodeficiencies +C0494264|T047|HT|D84|ICD10CM|Other immunodeficiencies|Other immunodeficiencies +C0451699|T047|PT|D84.0|ICD10CM|Lymphocyte function antigen-1 [LFA-1] defect|Lymphocyte function antigen-1 [LFA-1] defect +C0451699|T047|AB|D84.0|ICD10CM|Lymphocyte function antigen-1 [LFA-1] defect|Lymphocyte function antigen-1 [LFA-1] defect +C0451699|T047|PT|D84.0|ICD10|Lymphocyte function antigen-1 [LFA-1] defect|Lymphocyte function antigen-1 [LFA-1] defect +C2873848|T047|ET|D84.1|ICD10CM|C1 esterase inhibitor [C1-INH] deficiency|C1 esterase inhibitor [C1-INH] deficiency +C0272242|T047|PT|D84.1|ICD10|Defects in the complement system|Defects in the complement system +C0272242|T047|PT|D84.1|ICD10CM|Defects in the complement system|Defects in the complement system +C0272242|T047|AB|D84.1|ICD10CM|Defects in the complement system|Defects in the complement system +C0494266|T047|PT|D84.8|ICD10|Other specified immunodeficiencies|Other specified immunodeficiencies +C0494266|T047|PT|D84.8|ICD10CM|Other specified immunodeficiencies|Other specified immunodeficiencies +C0494266|T047|AB|D84.8|ICD10CM|Other specified immunodeficiencies|Other specified immunodeficiencies +C0021051|T047|PT|D84.9|ICD10CM|Immunodeficiency, unspecified|Immunodeficiency, unspecified +C0021051|T047|AB|D84.9|ICD10CM|Immunodeficiency, unspecified|Immunodeficiency, unspecified +C0021051|T047|PT|D84.9|ICD10|Immunodeficiency, unspecified|Immunodeficiency, unspecified +C0036202|T047|HT|D86|ICD10|Sarcoidosis|Sarcoidosis +C0036202|T047|HT|D86|ICD10CM|Sarcoidosis|Sarcoidosis +C0036202|T047|AB|D86|ICD10CM|Sarcoidosis|Sarcoidosis +C0036205|T047|PT|D86.0|ICD10CM|Sarcoidosis of lung|Sarcoidosis of lung +C0036205|T047|AB|D86.0|ICD10CM|Sarcoidosis of lung|Sarcoidosis of lung +C0036205|T047|PT|D86.0|ICD10|Sarcoidosis of lung|Sarcoidosis of lung +C0036204|T047|PT|D86.1|ICD10|Sarcoidosis of lymph nodes|Sarcoidosis of lymph nodes +C0036204|T047|PT|D86.1|ICD10CM|Sarcoidosis of lymph nodes|Sarcoidosis of lymph nodes +C0036204|T047|AB|D86.1|ICD10CM|Sarcoidosis of lymph nodes|Sarcoidosis of lymph nodes +C0348826|T047|PT|D86.2|ICD10|Sarcoidosis of lung with sarcoidosis of lymph nodes|Sarcoidosis of lung with sarcoidosis of lymph nodes +C0348826|T047|PT|D86.2|ICD10CM|Sarcoidosis of lung with sarcoidosis of lymph nodes|Sarcoidosis of lung with sarcoidosis of lymph nodes +C0348826|T047|AB|D86.2|ICD10CM|Sarcoidosis of lung with sarcoidosis of lymph nodes|Sarcoidosis of lung with sarcoidosis of lymph nodes +C0036203|T047|PT|D86.3|ICD10|Sarcoidosis of skin|Sarcoidosis of skin +C0036203|T047|PT|D86.3|ICD10CM|Sarcoidosis of skin|Sarcoidosis of skin +C0036203|T047|AB|D86.3|ICD10CM|Sarcoidosis of skin|Sarcoidosis of skin +C0477329|T047|PT|D86.8|ICD10|Sarcoidosis of other and combined sites|Sarcoidosis of other and combined sites +C2873849|T047|HT|D86.8|ICD10CM|Sarcoidosis of other sites|Sarcoidosis of other sites +C2873849|T047|AB|D86.8|ICD10CM|Sarcoidosis of other sites|Sarcoidosis of other sites +C0154648|T047|PT|D86.81|ICD10CM|Sarcoid meningitis|Sarcoid meningitis +C0154648|T047|AB|D86.81|ICD10CM|Sarcoid meningitis|Sarcoid meningitis +C0451646|T047|PT|D86.82|ICD10CM|Multiple cranial nerve palsies in sarcoidosis|Multiple cranial nerve palsies in sarcoidosis +C0451646|T047|AB|D86.82|ICD10CM|Multiple cranial nerve palsies in sarcoidosis|Multiple cranial nerve palsies in sarcoidosis +C2873850|T047|PT|D86.83|ICD10CM|Sarcoid iridocyclitis|Sarcoid iridocyclitis +C2873850|T047|AB|D86.83|ICD10CM|Sarcoid iridocyclitis|Sarcoid iridocyclitis +C2873852|T047|AB|D86.84|ICD10CM|Sarcoid pyelonephritis|Sarcoid pyelonephritis +C2873852|T047|PT|D86.84|ICD10CM|Sarcoid pyelonephritis|Sarcoid pyelonephritis +C2873851|T047|ET|D86.84|ICD10CM|Tubulo-interstitial nephropathy in sarcoidosis|Tubulo-interstitial nephropathy in sarcoidosis +C0340432|T047|PT|D86.85|ICD10CM|Sarcoid myocarditis|Sarcoid myocarditis +C0340432|T047|AB|D86.85|ICD10CM|Sarcoid myocarditis|Sarcoid myocarditis +C2873853|T047|ET|D86.86|ICD10CM|Polyarthritis in sarcoidosis|Polyarthritis in sarcoidosis +C0398673|T047|PT|D86.86|ICD10CM|Sarcoid arthropathy|Sarcoid arthropathy +C0398673|T047|AB|D86.86|ICD10CM|Sarcoid arthropathy|Sarcoid arthropathy +C2873854|T047|AB|D86.87|ICD10CM|Sarcoid myositis|Sarcoid myositis +C2873854|T047|PT|D86.87|ICD10CM|Sarcoid myositis|Sarcoid myositis +C0745754|T047|ET|D86.89|ICD10CM|Hepatic granuloma|Hepatic granuloma +C2873849|T047|AB|D86.89|ICD10CM|Sarcoidosis of other sites|Sarcoidosis of other sites +C2873849|T047|PT|D86.89|ICD10CM|Sarcoidosis of other sites|Sarcoidosis of other sites +C0042171|T047|ET|D86.89|ICD10CM|Uveoparotid fever [Heerfordt]|Uveoparotid fever [Heerfordt] +C0036202|T047|PT|D86.9|ICD10CM|Sarcoidosis, unspecified|Sarcoidosis, unspecified +C0036202|T047|AB|D86.9|ICD10CM|Sarcoidosis, unspecified|Sarcoidosis, unspecified +C0036202|T047|PT|D86.9|ICD10|Sarcoidosis, unspecified|Sarcoidosis, unspecified +C0494268|T047|AB|D89|ICD10CM|Oth disorders involving the immune mechanism, NEC|Oth disorders involving the immune mechanism, NEC +C0494268|T047|HT|D89|ICD10CM|Other disorders involving the immune mechanism, not elsewhere classified|Other disorders involving the immune mechanism, not elsewhere classified +C0494268|T047|HT|D89|ICD10|Other disorders involving the immune mechanism, not elsewhere classified|Other disorders involving the immune mechanism, not elsewhere classified +C2873855|T047|ET|D89.0|ICD10CM|Benign hypergammaglobulinemic purpura|Benign hypergammaglobulinemic purpura +C0272249|T047|ET|D89.0|ICD10CM|Polyclonal gammopathy NOS|Polyclonal gammopathy NOS +C0154254|T047|PT|D89.0|ICD10|Polyclonal hypergammaglobulinaemia|Polyclonal hypergammaglobulinaemia +C0154254|T047|PT|D89.0|ICD10AE|Polyclonal hypergammaglobulinemia|Polyclonal hypergammaglobulinemia +C0154254|T047|PT|D89.0|ICD10CM|Polyclonal hypergammaglobulinemia|Polyclonal hypergammaglobulinemia +C0154254|T047|AB|D89.0|ICD10CM|Polyclonal hypergammaglobulinemia|Polyclonal hypergammaglobulinemia +C0010403|T047|PT|D89.1|ICD10|Cryoglobulinaemia|Cryoglobulinaemia +C0010403|T047|PT|D89.1|ICD10AE|Cryoglobulinemia|Cryoglobulinemia +C0010403|T047|PT|D89.1|ICD10CM|Cryoglobulinemia|Cryoglobulinemia +C0010403|T047|AB|D89.1|ICD10CM|Cryoglobulinemia|Cryoglobulinemia +C0340979|T184|ET|D89.1|ICD10CM|Cryoglobulinemic purpura|Cryoglobulinemic purpura +C0340992|T047|ET|D89.1|ICD10CM|Cryoglobulinemic vasculitis|Cryoglobulinemic vasculitis +C2873856|T047|ET|D89.1|ICD10CM|Essential cryoglobulinemia|Essential cryoglobulinemia +C2873857|T047|ET|D89.1|ICD10CM|Idiopathic cryoglobulinemia|Idiopathic cryoglobulinemia +C0543697|T047|ET|D89.1|ICD10CM|Mixed cryoglobulinemia|Mixed cryoglobulinemia +C0272258|T047|ET|D89.1|ICD10CM|Primary cryoglobulinemia|Primary cryoglobulinemia +C0272259|T047|ET|D89.1|ICD10CM|Secondary cryoglobulinemia|Secondary cryoglobulinemia +C0494269|T047|PT|D89.2|ICD10|Hypergammaglobulinaemia, unspecified|Hypergammaglobulinaemia, unspecified +C0494269|T047|PT|D89.2|ICD10CM|Hypergammaglobulinemia, unspecified|Hypergammaglobulinemia, unspecified +C0494269|T047|AB|D89.2|ICD10CM|Hypergammaglobulinemia, unspecified|Hypergammaglobulinemia, unspecified +C0494269|T047|PT|D89.2|ICD10AE|Hypergammaglobulinemia, unspecified|Hypergammaglobulinemia, unspecified +C2976853|T047|ET|D89.3|ICD10CM|Immune reconstitution inflammatory syndrome [IRIS]|Immune reconstitution inflammatory syndrome [IRIS] +C1096197|T047|PT|D89.3|ICD10CM|Immune reconstitution syndrome|Immune reconstitution syndrome +C1096197|T047|AB|D89.3|ICD10CM|Immune reconstitution syndrome|Immune reconstitution syndrome +C4267891|T047|AB|D89.4|ICD10CM|Mast cell activation syndrome and related disorders|Mast cell activation syndrome and related disorders +C4267891|T047|HT|D89.4|ICD10CM|Mast cell activation syndrome and related disorders|Mast cell activation syndrome and related disorders +C4267892|T047|ET|D89.40|ICD10CM|Mast cell activation disorder, unspecified|Mast cell activation disorder, unspecified +C5200989|T047|ET|D89.40|ICD10CM|Mast cell activation syndrome, NOS|Mast cell activation syndrome, NOS +C4267892|T047|AB|D89.40|ICD10CM|Mast cell activation, unspecified|Mast cell activation, unspecified +C4267892|T047|PT|D89.40|ICD10CM|Mast cell activation, unspecified|Mast cell activation, unspecified +C4267893|T047|AB|D89.41|ICD10CM|Monoclonal mast cell activation syndrome|Monoclonal mast cell activation syndrome +C4267893|T047|PT|D89.41|ICD10CM|Monoclonal mast cell activation syndrome|Monoclonal mast cell activation syndrome +C4267894|T047|AB|D89.42|ICD10CM|Idiopathic mast cell activation syndrome|Idiopathic mast cell activation syndrome +C4267894|T047|PT|D89.42|ICD10CM|Idiopathic mast cell activation syndrome|Idiopathic mast cell activation syndrome +C4267895|T047|AB|D89.43|ICD10CM|Secondary mast cell activation|Secondary mast cell activation +C4267895|T047|PT|D89.43|ICD10CM|Secondary mast cell activation|Secondary mast cell activation +C4267895|T047|ET|D89.43|ICD10CM|Secondary mast cell activation syndrome|Secondary mast cell activation syndrome +C4267896|T047|AB|D89.49|ICD10CM|Other mast cell activation disorder|Other mast cell activation disorder +C4267896|T047|PT|D89.49|ICD10CM|Other mast cell activation disorder|Other mast cell activation disorder +C4267896|T047|ET|D89.49|ICD10CM|Other mast cell activation syndrome|Other mast cell activation syndrome +C0869046|T047|AB|D89.8|ICD10CM|Oth disrd involving the immune mechanism, NEC|Oth disrd involving the immune mechanism, NEC +C0869046|T047|HT|D89.8|ICD10CM|Other specified disorders involving the immune mechanism, not elsewhere classified|Other specified disorders involving the immune mechanism, not elsewhere classified +C0869046|T047|PT|D89.8|ICD10|Other specified disorders involving the immune mechanism, not elsewhere classified|Other specified disorders involving the immune mechanism, not elsewhere classified +C0018133|T047|HT|D89.81|ICD10CM|Graft-versus-host disease|Graft-versus-host disease +C0018133|T047|AB|D89.81|ICD10CM|Graft-versus-host disease|Graft-versus-host disease +C0856825|T047|PT|D89.810|ICD10CM|Acute graft-versus-host disease|Acute graft-versus-host disease +C0856825|T047|AB|D89.810|ICD10CM|Acute graft-versus-host disease|Acute graft-versus-host disease +C0867389|T047|PT|D89.811|ICD10CM|Chronic graft-versus-host disease|Chronic graft-versus-host disease +C0867389|T047|AB|D89.811|ICD10CM|Chronic graft-versus-host disease|Chronic graft-versus-host disease +C2349403|T047|AB|D89.812|ICD10CM|Acute on chronic graft-versus-host disease|Acute on chronic graft-versus-host disease +C2349403|T047|PT|D89.812|ICD10CM|Acute on chronic graft-versus-host disease|Acute on chronic graft-versus-host disease +C0018133|T047|AB|D89.813|ICD10CM|Graft-versus-host disease, unspecified|Graft-versus-host disease, unspecified +C0018133|T047|PT|D89.813|ICD10CM|Graft-versus-host disease, unspecified|Graft-versus-host disease, unspecified +C1328840|T047|AB|D89.82|ICD10CM|Autoimmune lymphoproliferative syndrome [ALPS]|Autoimmune lymphoproliferative syndrome [ALPS] +C1328840|T047|PT|D89.82|ICD10CM|Autoimmune lymphoproliferative syndrome [ALPS]|Autoimmune lymphoproliferative syndrome [ALPS] +C0869046|T047|AB|D89.89|ICD10CM|Oth disrd involving the immune mechanism, NEC|Oth disrd involving the immune mechanism, NEC +C0869046|T047|PT|D89.89|ICD10CM|Other specified disorders involving the immune mechanism, not elsewhere classified|Other specified disorders involving the immune mechanism, not elsewhere classified +C0041806|T047|PT|D89.9|ICD10|Disorder involving the immune mechanism, unspecified|Disorder involving the immune mechanism, unspecified +C0041806|T047|PT|D89.9|ICD10CM|Disorder involving the immune mechanism, unspecified|Disorder involving the immune mechanism, unspecified +C0041806|T047|AB|D89.9|ICD10CM|Disorder involving the immune mechanism, unspecified|Disorder involving the immune mechanism, unspecified +C0021053|T047|ET|D89.9|ICD10CM|Immune disease NOS|Immune disease NOS +C3165526|T047|HT|E00|ICD10|Congenital iodine-deficiency syndrome|Congenital iodine-deficiency syndrome +C3165526|T047|HT|E00|ICD10CM|Congenital iodine-deficiency syndrome|Congenital iodine-deficiency syndrome +C3165526|T047|AB|E00|ICD10CM|Congenital iodine-deficiency syndrome|Congenital iodine-deficiency syndrome +C0040128|T047|HT|E00-E07|ICD10CM|Disorders of thyroid gland (E00-E07)|Disorders of thyroid gland (E00-E07) +C0040128|T047|HT|E00-E07.9|ICD10|Disorders of thyroid gland|Disorders of thyroid gland +C2976854|T047|HT|E00-E89|ICD10CM|Endocrine, nutritional and metabolic diseases (E00-E89)|Endocrine, nutritional and metabolic diseases (E00-E89) +C0694452|T047|HT|E00-E90.9|ICD10|Endocrine, nutritional and metabolic diseases|Endocrine, nutritional and metabolic diseases +C0342203|T047|PT|E00.0|ICD10CM|Congenital iodine-deficiency syndrome, neurological type|Congenital iodine-deficiency syndrome, neurological type +C0342203|T047|AB|E00.0|ICD10CM|Congenital iodine-deficiency syndrome, neurological type|Congenital iodine-deficiency syndrome, neurological type +C0342203|T047|PT|E00.0|ICD10|Congenital iodine-deficiency syndrome, neurological type|Congenital iodine-deficiency syndrome, neurological type +C0342203|T047|ET|E00.0|ICD10CM|Endemic cretinism, neurological type|Endemic cretinism, neurological type +C2584703|T047|PT|E00.1|ICD10AE|Congenital iodine-deficiency syndrome, myxedematous type|Congenital iodine-deficiency syndrome, myxedematous type +C2584703|T047|PT|E00.1|ICD10CM|Congenital iodine-deficiency syndrome, myxedematous type|Congenital iodine-deficiency syndrome, myxedematous type +C2584703|T047|AB|E00.1|ICD10CM|Congenital iodine-deficiency syndrome, myxedematous type|Congenital iodine-deficiency syndrome, myxedematous type +C2584703|T047|PT|E00.1|ICD10|Congenital iodine-deficiency syndrome, myxoedematous type|Congenital iodine-deficiency syndrome, myxoedematous type +C2584703|T047|ET|E00.1|ICD10CM|Endemic cretinism, myxedematous type|Endemic cretinism, myxedematous type +C0342200|T047|ET|E00.1|ICD10CM|Endemic hypothyroid cretinism|Endemic hypothyroid cretinism +C0342202|T047|PT|E00.2|ICD10CM|Congenital iodine-deficiency syndrome, mixed type|Congenital iodine-deficiency syndrome, mixed type +C0342202|T047|AB|E00.2|ICD10CM|Congenital iodine-deficiency syndrome, mixed type|Congenital iodine-deficiency syndrome, mixed type +C0342202|T047|PT|E00.2|ICD10|Congenital iodine-deficiency syndrome, mixed type|Congenital iodine-deficiency syndrome, mixed type +C0342202|T047|ET|E00.2|ICD10CM|Endemic cretinism, mixed type|Endemic cretinism, mixed type +C3165526|T047|ET|E00.9|ICD10CM|Congenital iodine-deficiency hypothyroidism NOS|Congenital iodine-deficiency hypothyroidism NOS +C3165526|T047|PT|E00.9|ICD10CM|Congenital iodine-deficiency syndrome, unspecified|Congenital iodine-deficiency syndrome, unspecified +C3165526|T047|AB|E00.9|ICD10CM|Congenital iodine-deficiency syndrome, unspecified|Congenital iodine-deficiency syndrome, unspecified +C3165526|T047|PT|E00.9|ICD10|Congenital iodine-deficiency syndrome, unspecified|Congenital iodine-deficiency syndrome, unspecified +C3165526|T047|ET|E00.9|ICD10CM|Endemic cretinism NOS|Endemic cretinism NOS +C0494270|T047|AB|E01|ICD10CM|Iodine-deficiency related thyroid disorders and allied cond|Iodine-deficiency related thyroid disorders and allied cond +C0494270|T047|HT|E01|ICD10CM|Iodine-deficiency related thyroid disorders and allied conditions|Iodine-deficiency related thyroid disorders and allied conditions +C0494270|T047|HT|E01|ICD10|Iodine-deficiency-related thyroid disorders and allied conditions|Iodine-deficiency-related thyroid disorders and allied conditions +C0018022|T047|AB|E01.0|ICD10CM|Iodine-deficiency related diffuse (endemic) goiter|Iodine-deficiency related diffuse (endemic) goiter +C0018022|T047|PT|E01.0|ICD10CM|Iodine-deficiency related diffuse (endemic) goiter|Iodine-deficiency related diffuse (endemic) goiter +C0018022|T047|PT|E01.0|ICD10AE|Iodine-deficiency-related diffuse (endemic) goiter|Iodine-deficiency-related diffuse (endemic) goiter +C0018022|T047|PT|E01.0|ICD10|Iodine-deficiency-related diffuse (endemic) goitre|Iodine-deficiency-related diffuse (endemic) goitre +C0342212|T047|AB|E01.1|ICD10CM|Iodine-deficiency related multinodular (endemic) goiter|Iodine-deficiency related multinodular (endemic) goiter +C0342212|T047|PT|E01.1|ICD10CM|Iodine-deficiency related multinodular (endemic) goiter|Iodine-deficiency related multinodular (endemic) goiter +C2873858|T047|ET|E01.1|ICD10CM|Iodine-deficiency related nodular goiter|Iodine-deficiency related nodular goiter +C0342212|T047|PT|E01.1|ICD10AE|Iodine-deficiency-related multinodular (endemic) goiter|Iodine-deficiency-related multinodular (endemic) goiter +C0342212|T047|PT|E01.1|ICD10|Iodine-deficiency-related multinodular (endemic) goitre|Iodine-deficiency-related multinodular (endemic) goitre +C0018022|T047|ET|E01.2|ICD10CM|Endemic goiter NOS|Endemic goiter NOS +C0018022|T047|AB|E01.2|ICD10CM|Iodine-deficiency related (endemic) goiter, unspecified|Iodine-deficiency related (endemic) goiter, unspecified +C0018022|T047|PT|E01.2|ICD10CM|Iodine-deficiency related (endemic) goiter, unspecified|Iodine-deficiency related (endemic) goiter, unspecified +C0018022|T047|PT|E01.2|ICD10AE|Iodine-deficiency-related (endemic) goiter, unspecified|Iodine-deficiency-related (endemic) goiter, unspecified +C0018022|T047|PT|E01.2|ICD10|Iodine-deficiency-related (endemic) goitre, unspecified|Iodine-deficiency-related (endemic) goitre, unspecified +C1400311|T047|ET|E01.8|ICD10CM|Acquired iodine-deficiency hypothyroidism NOS|Acquired iodine-deficiency hypothyroidism NOS +C0348442|T047|AB|E01.8|ICD10CM|Oth iodine-deficiency related thyroid disord and allied cond|Oth iodine-deficiency related thyroid disord and allied cond +C0348442|T047|PT|E01.8|ICD10CM|Other iodine-deficiency related thyroid disorders and allied conditions|Other iodine-deficiency related thyroid disorders and allied conditions +C0348442|T047|PT|E01.8|ICD10|Other iodine-deficiency-related thyroid disorders and allied conditions|Other iodine-deficiency-related thyroid disorders and allied conditions +C0342204|T047|PT|E02|ICD10|Subclinical iodine-deficiency hypothyroidism|Subclinical iodine-deficiency hypothyroidism +C0342204|T047|PT|E02|ICD10CM|Subclinical iodine-deficiency hypothyroidism|Subclinical iodine-deficiency hypothyroidism +C0342204|T047|AB|E02|ICD10CM|Subclinical iodine-deficiency hypothyroidism|Subclinical iodine-deficiency hypothyroidism +C0494271|T047|AB|E03|ICD10CM|Other hypothyroidism|Other hypothyroidism +C0494271|T047|HT|E03|ICD10CM|Other hypothyroidism|Other hypothyroidism +C0494271|T047|HT|E03|ICD10|Other hypothyroidism|Other hypothyroidism +C2873859|T019|ET|E03.0|ICD10CM|Congenital goiter (nontoxic) NOS|Congenital goiter (nontoxic) NOS +C0342149|T019|PT|E03.0|ICD10CM|Congenital hypothyroidism with diffuse goiter|Congenital hypothyroidism with diffuse goiter +C0342149|T047|PT|E03.0|ICD10CM|Congenital hypothyroidism with diffuse goiter|Congenital hypothyroidism with diffuse goiter +C0342149|T019|AB|E03.0|ICD10CM|Congenital hypothyroidism with diffuse goiter|Congenital hypothyroidism with diffuse goiter +C0342149|T047|AB|E03.0|ICD10CM|Congenital hypothyroidism with diffuse goiter|Congenital hypothyroidism with diffuse goiter +C0342149|T019|PT|E03.0|ICD10AE|Congenital hypothyroidism with diffuse goiter|Congenital hypothyroidism with diffuse goiter +C0342149|T047|PT|E03.0|ICD10AE|Congenital hypothyroidism with diffuse goiter|Congenital hypothyroidism with diffuse goiter +C0342149|T019|PT|E03.0|ICD10|Congenital hypothyroidism with diffuse goitre|Congenital hypothyroidism with diffuse goitre +C0342149|T047|PT|E03.0|ICD10|Congenital hypothyroidism with diffuse goitre|Congenital hypothyroidism with diffuse goitre +C2873860|T046|ET|E03.0|ICD10CM|Congenital parenchymatous goiter (nontoxic)|Congenital parenchymatous goiter (nontoxic) +C0749420|T019|ET|E03.1|ICD10CM|Aplasia of thyroid (with myxedema)|Aplasia of thyroid (with myxedema) +C0342154|T019|ET|E03.1|ICD10CM|Congenital atrophy of thyroid|Congenital atrophy of thyroid +C0010308|T047|ET|E03.1|ICD10CM|Congenital hypothyroidism NOS|Congenital hypothyroidism NOS +C0342151|T019|PT|E03.1|ICD10AE|Congenital hypothyroidism without goiter|Congenital hypothyroidism without goiter +C0342151|T047|PT|E03.1|ICD10AE|Congenital hypothyroidism without goiter|Congenital hypothyroidism without goiter +C0342151|T019|PT|E03.1|ICD10CM|Congenital hypothyroidism without goiter|Congenital hypothyroidism without goiter +C0342151|T047|PT|E03.1|ICD10CM|Congenital hypothyroidism without goiter|Congenital hypothyroidism without goiter +C0342151|T019|AB|E03.1|ICD10CM|Congenital hypothyroidism without goiter|Congenital hypothyroidism without goiter +C0342151|T047|AB|E03.1|ICD10CM|Congenital hypothyroidism without goiter|Congenital hypothyroidism without goiter +C0342151|T019|PT|E03.1|ICD10|Congenital hypothyroidism without goitre|Congenital hypothyroidism without goitre +C0342151|T047|PT|E03.1|ICD10|Congenital hypothyroidism without goitre|Congenital hypothyroidism without goitre +C0494272|T047|PT|E03.2|ICD10CM|Hypothyroidism due to medicaments and other exogenous substances|Hypothyroidism due to medicaments and other exogenous substances +C0494272|T047|PT|E03.2|ICD10|Hypothyroidism due to medicaments and other exogenous substances|Hypothyroidism due to medicaments and other exogenous substances +C0494272|T047|AB|E03.2|ICD10CM|Hypothyroidism due to meds and oth exogenous substances|Hypothyroidism due to meds and oth exogenous substances +C0342173|T047|PT|E03.3|ICD10|Postinfectious hypothyroidism|Postinfectious hypothyroidism +C0342173|T047|PT|E03.3|ICD10CM|Postinfectious hypothyroidism|Postinfectious hypothyroidism +C0342173|T047|AB|E03.3|ICD10CM|Postinfectious hypothyroidism|Postinfectious hypothyroidism +C0342197|T020|PT|E03.4|ICD10CM|Atrophy of thyroid (acquired)|Atrophy of thyroid (acquired) +C0342197|T020|AB|E03.4|ICD10CM|Atrophy of thyroid (acquired)|Atrophy of thyroid (acquired) +C0342197|T020|PT|E03.4|ICD10|Atrophy of thyroid (acquired)|Atrophy of thyroid (acquired) +C0238298|T047|PT|E03.5|ICD10CM|Myxedema coma|Myxedema coma +C0238298|T047|AB|E03.5|ICD10CM|Myxedema coma|Myxedema coma +C0238298|T047|PT|E03.5|ICD10AE|Myxedema coma|Myxedema coma +C0238298|T047|PT|E03.5|ICD10|Myxoedema coma|Myxoedema coma +C0494273|T047|PT|E03.8|ICD10CM|Other specified hypothyroidism|Other specified hypothyroidism +C0494273|T047|AB|E03.8|ICD10CM|Other specified hypothyroidism|Other specified hypothyroidism +C0494273|T047|PT|E03.8|ICD10|Other specified hypothyroidism|Other specified hypothyroidism +C0020676|T047|PT|E03.9|ICD10|Hypothyroidism, unspecified|Hypothyroidism, unspecified +C0020676|T047|PT|E03.9|ICD10CM|Hypothyroidism, unspecified|Hypothyroidism, unspecified +C0020676|T047|AB|E03.9|ICD10CM|Hypothyroidism, unspecified|Hypothyroidism, unspecified +C0027145|T047|ET|E03.9|ICD10CM|Myxedema NOS|Myxedema NOS +C0494274|T047|HT|E04|ICD10AE|Other nontoxic goiter|Other nontoxic goiter +C0494274|T047|AB|E04|ICD10CM|Other nontoxic goiter|Other nontoxic goiter +C0494274|T047|HT|E04|ICD10CM|Other nontoxic goiter|Other nontoxic goiter +C0494274|T047|HT|E04|ICD10|Other nontoxic goitre|Other nontoxic goitre +C0221268|T047|ET|E04.0|ICD10CM|Diffuse (colloid) nontoxic goiter|Diffuse (colloid) nontoxic goiter +C0342114|T047|PT|E04.0|ICD10CM|Nontoxic diffuse goiter|Nontoxic diffuse goiter +C0342114|T047|AB|E04.0|ICD10CM|Nontoxic diffuse goiter|Nontoxic diffuse goiter +C0342114|T047|PT|E04.0|ICD10AE|Nontoxic diffuse goiter|Nontoxic diffuse goiter +C0342114|T047|PT|E04.0|ICD10|Nontoxic diffuse goitre|Nontoxic diffuse goitre +C0221777|T047|ET|E04.0|ICD10CM|Simple nontoxic goiter|Simple nontoxic goiter +C2873861|T047|ET|E04.1|ICD10CM|Colloid nodule (cystic) (thyroid)|Colloid nodule (cystic) (thyroid) +C0342115|T047|PT|E04.1|ICD10CM|Nontoxic single thyroid nodule|Nontoxic single thyroid nodule +C0342115|T047|AB|E04.1|ICD10CM|Nontoxic single thyroid nodule|Nontoxic single thyroid nodule +C0342115|T047|PT|E04.1|ICD10|Nontoxic single thyroid nodule|Nontoxic single thyroid nodule +C0342115|T047|ET|E04.1|ICD10CM|Nontoxic uninodular goiter|Nontoxic uninodular goiter +C2873862|T047|ET|E04.1|ICD10CM|Thyroid (cystic) nodule NOS|Thyroid (cystic) nodule NOS +C1410326|T047|ET|E04.2|ICD10CM|Cystic goiter NOS|Cystic goiter NOS +C2873863|T047|ET|E04.2|ICD10CM|Multinodular (cystic) goiter NOS|Multinodular (cystic) goiter NOS +C0271761|T047|PT|E04.2|ICD10CM|Nontoxic multinodular goiter|Nontoxic multinodular goiter +C0271761|T047|AB|E04.2|ICD10CM|Nontoxic multinodular goiter|Nontoxic multinodular goiter +C0271761|T047|PT|E04.2|ICD10AE|Nontoxic multinodular goiter|Nontoxic multinodular goiter +C0271761|T047|PT|E04.2|ICD10|Nontoxic multinodular goitre|Nontoxic multinodular goitre +C0348444|T047|PT|E04.8|ICD10AE|Other specified nontoxic goiter|Other specified nontoxic goiter +C0348444|T047|PT|E04.8|ICD10CM|Other specified nontoxic goiter|Other specified nontoxic goiter +C0348444|T047|AB|E04.8|ICD10CM|Other specified nontoxic goiter|Other specified nontoxic goiter +C0348444|T047|PT|E04.8|ICD10|Other specified nontoxic goitre|Other specified nontoxic goitre +C0018021|T047|ET|E04.9|ICD10CM|Goiter NOS|Goiter NOS +C1318500|T047|ET|E04.9|ICD10CM|Nodular goiter (nontoxic) NOS|Nodular goiter (nontoxic) NOS +C0221777|T047|PT|E04.9|ICD10AE|Nontoxic goiter, unspecified|Nontoxic goiter, unspecified +C0221777|T047|PT|E04.9|ICD10CM|Nontoxic goiter, unspecified|Nontoxic goiter, unspecified +C0221777|T047|AB|E04.9|ICD10CM|Nontoxic goiter, unspecified|Nontoxic goiter, unspecified +C0221777|T047|PT|E04.9|ICD10|Nontoxic goitre, unspecified|Nontoxic goitre, unspecified +C0494276|T047|AB|E05|ICD10CM|Thyrotoxicosis [hyperthyroidism]|Thyrotoxicosis [hyperthyroidism] +C0494276|T047|HT|E05|ICD10CM|Thyrotoxicosis [hyperthyroidism]|Thyrotoxicosis [hyperthyroidism] +C0494276|T047|HT|E05|ICD10|Thyrotoxicosis [hyperthyroidism]|Thyrotoxicosis [hyperthyroidism] +C0865140|T047|ET|E05.0|ICD10CM|Exophthalmic or toxic goiter NOS|Exophthalmic or toxic goiter NOS +C0018213|T047|ET|E05.0|ICD10CM|Graves' disease|Graves' disease +C0342122|T047|PT|E05.0|ICD10AE|Thyrotoxicosis with diffuse goiter|Thyrotoxicosis with diffuse goiter +C0342122|T047|HT|E05.0|ICD10CM|Thyrotoxicosis with diffuse goiter|Thyrotoxicosis with diffuse goiter +C0342122|T047|AB|E05.0|ICD10CM|Thyrotoxicosis with diffuse goiter|Thyrotoxicosis with diffuse goiter +C0342122|T047|PT|E05.0|ICD10|Thyrotoxicosis with diffuse goitre|Thyrotoxicosis with diffuse goitre +C0342122|T047|ET|E05.0|ICD10CM|Toxic diffuse goiter|Toxic diffuse goiter +C2873864|T047|AB|E05.00|ICD10CM|Thyrotoxicosis w diffuse goiter w/o thyrotoxic crisis|Thyrotoxicosis w diffuse goiter w/o thyrotoxic crisis +C2873864|T047|PT|E05.00|ICD10CM|Thyrotoxicosis with diffuse goiter without thyrotoxic crisis or storm|Thyrotoxicosis with diffuse goiter without thyrotoxic crisis or storm +C2873865|T047|AB|E05.01|ICD10CM|Thyrotoxicosis w diffuse goiter w thyrotoxic crisis or storm|Thyrotoxicosis w diffuse goiter w thyrotoxic crisis or storm +C2873865|T047|PT|E05.01|ICD10CM|Thyrotoxicosis with diffuse goiter with thyrotoxic crisis or storm|Thyrotoxicosis with diffuse goiter with thyrotoxic crisis or storm +C0154141|T047|PT|E05.1|ICD10|Thyrotoxicosis with toxic single thyroid nodule|Thyrotoxicosis with toxic single thyroid nodule +C0154141|T047|HT|E05.1|ICD10CM|Thyrotoxicosis with toxic single thyroid nodule|Thyrotoxicosis with toxic single thyroid nodule +C0154141|T047|AB|E05.1|ICD10CM|Thyrotoxicosis with toxic single thyroid nodule|Thyrotoxicosis with toxic single thyroid nodule +C2873866|T047|ET|E05.1|ICD10CM|Thyrotoxicosis with toxic uninodular goiter|Thyrotoxicosis with toxic uninodular goiter +C2873867|T047|PT|E05.10|ICD10CM|Thyrotoxicosis with toxic single thyroid nodule without thyrotoxic crisis or storm|Thyrotoxicosis with toxic single thyroid nodule without thyrotoxic crisis or storm +C2873867|T047|AB|E05.10|ICD10CM|Thyrotxcosis w toxic sing thyroid nodule w/o thyrotxc crisis|Thyrotxcosis w toxic sing thyroid nodule w/o thyrotxc crisis +C0154141|T047|PT|E05.11|ICD10CM|Thyrotoxicosis with toxic single thyroid nodule with thyrotoxic crisis or storm|Thyrotoxicosis with toxic single thyroid nodule with thyrotoxic crisis or storm +C0154141|T047|AB|E05.11|ICD10CM|Thyrotxcosis w toxic single thyroid nodule w thyrotxc crisis|Thyrotxcosis w toxic single thyroid nodule w thyrotxc crisis +C0154143|T047|HT|E05.2|ICD10CM|Thyrotoxicosis with toxic multinodular goiter|Thyrotoxicosis with toxic multinodular goiter +C0154143|T047|AB|E05.2|ICD10CM|Thyrotoxicosis with toxic multinodular goiter|Thyrotoxicosis with toxic multinodular goiter +C0154143|T047|PT|E05.2|ICD10AE|Thyrotoxicosis with toxic multinodular goiter|Thyrotoxicosis with toxic multinodular goiter +C0154143|T047|PT|E05.2|ICD10|Thyrotoxicosis with toxic multinodular goitre|Thyrotoxicosis with toxic multinodular goitre +C0342127|T047|ET|E05.2|ICD10CM|Toxic nodular goiter NOS|Toxic nodular goiter NOS +C2873869|T047|PT|E05.20|ICD10CM|Thyrotoxicosis with toxic multinodular goiter without thyrotoxic crisis or storm|Thyrotoxicosis with toxic multinodular goiter without thyrotoxic crisis or storm +C2873869|T047|AB|E05.20|ICD10CM|Thyrotxcosis w toxic multinod goiter w/o thyrotoxic crisis|Thyrotxcosis w toxic multinod goiter w/o thyrotoxic crisis +C2873870|T047|PT|E05.21|ICD10CM|Thyrotoxicosis with toxic multinodular goiter with thyrotoxic crisis or storm|Thyrotoxicosis with toxic multinodular goiter with thyrotoxic crisis or storm +C2873870|T047|AB|E05.21|ICD10CM|Thyrotxcosis w toxic multinodular goiter w thyrotoxic crisis|Thyrotxcosis w toxic multinodular goiter w thyrotoxic crisis +C0154148|T047|PT|E05.3|ICD10|Thyrotoxicosis from ectopic thyroid tissue|Thyrotoxicosis from ectopic thyroid tissue +C0154148|T047|HT|E05.3|ICD10CM|Thyrotoxicosis from ectopic thyroid tissue|Thyrotoxicosis from ectopic thyroid tissue +C0154148|T047|AB|E05.3|ICD10CM|Thyrotoxicosis from ectopic thyroid tissue|Thyrotoxicosis from ectopic thyroid tissue +C2873871|T047|PT|E05.30|ICD10CM|Thyrotoxicosis from ectopic thyroid tissue without thyrotoxic crisis or storm|Thyrotoxicosis from ectopic thyroid tissue without thyrotoxic crisis or storm +C2873871|T047|AB|E05.30|ICD10CM|Thyrotxcosis from ectopic thyroid tissue w/o thyrotxc crisis|Thyrotxcosis from ectopic thyroid tissue w/o thyrotxc crisis +C2873872|T047|PT|E05.31|ICD10CM|Thyrotoxicosis from ectopic thyroid tissue with thyrotoxic crisis or storm|Thyrotoxicosis from ectopic thyroid tissue with thyrotoxic crisis or storm +C2873872|T047|AB|E05.31|ICD10CM|Thyrotxcosis from ectopic thyroid tissue w thyrotoxic crisis|Thyrotxcosis from ectopic thyroid tissue w thyrotoxic crisis +C0238460|T047|PT|E05.4|ICD10|Thyrotoxicosis factitia|Thyrotoxicosis factitia +C0238460|T047|HT|E05.4|ICD10CM|Thyrotoxicosis factitia|Thyrotoxicosis factitia +C0238460|T047|AB|E05.4|ICD10CM|Thyrotoxicosis factitia|Thyrotoxicosis factitia +C2873873|T047|AB|E05.40|ICD10CM|Thyrotoxicosis factitia without thyrotoxic crisis or storm|Thyrotoxicosis factitia without thyrotoxic crisis or storm +C2873873|T047|PT|E05.40|ICD10CM|Thyrotoxicosis factitia without thyrotoxic crisis or storm|Thyrotoxicosis factitia without thyrotoxic crisis or storm +C3250150|T047|PT|E05.41|ICD10CM|Thyrotoxicosis factitia with thyrotoxic crisis or storm|Thyrotoxicosis factitia with thyrotoxic crisis or storm +C3250150|T047|AB|E05.41|ICD10CM|Thyrotoxicosis factitia with thyrotoxic crisis or storm|Thyrotoxicosis factitia with thyrotoxic crisis or storm +C0040127|T047|PT|E05.5|ICD10|Thyroid crisis or storm|Thyroid crisis or storm +C0348445|T047|PT|E05.8|ICD10|Other thyrotoxicosis|Other thyrotoxicosis +C0348445|T047|HT|E05.8|ICD10CM|Other thyrotoxicosis|Other thyrotoxicosis +C0348445|T047|AB|E05.8|ICD10CM|Other thyrotoxicosis|Other thyrotoxicosis +C0271551|T047|ET|E05.8|ICD10CM|Overproduction of thyroid-stimulating hormone|Overproduction of thyroid-stimulating hormone +C2873875|T047|AB|E05.80|ICD10CM|Other thyrotoxicosis without thyrotoxic crisis or storm|Other thyrotoxicosis without thyrotoxic crisis or storm +C2873875|T047|PT|E05.80|ICD10CM|Other thyrotoxicosis without thyrotoxic crisis or storm|Other thyrotoxicosis without thyrotoxic crisis or storm +C2873876|T047|AB|E05.81|ICD10CM|Other thyrotoxicosis with thyrotoxic crisis or storm|Other thyrotoxicosis with thyrotoxic crisis or storm +C2873876|T047|PT|E05.81|ICD10CM|Other thyrotoxicosis with thyrotoxic crisis or storm|Other thyrotoxicosis with thyrotoxic crisis or storm +C0020550|T047|ET|E05.9|ICD10CM|Hyperthyroidism NOS|Hyperthyroidism NOS +C0040156|T047|HT|E05.9|ICD10CM|Thyrotoxicosis, unspecified|Thyrotoxicosis, unspecified +C0040156|T047|AB|E05.9|ICD10CM|Thyrotoxicosis, unspecified|Thyrotoxicosis, unspecified +C0040156|T047|PT|E05.9|ICD10|Thyrotoxicosis, unspecified|Thyrotoxicosis, unspecified +C2873877|T047|AB|E05.90|ICD10CM|Thyrotoxicosis, unsp without thyrotoxic crisis or storm|Thyrotoxicosis, unsp without thyrotoxic crisis or storm +C2873877|T047|PT|E05.90|ICD10CM|Thyrotoxicosis, unspecified without thyrotoxic crisis or storm|Thyrotoxicosis, unspecified without thyrotoxic crisis or storm +C2873878|T047|AB|E05.91|ICD10CM|Thyrotoxicosis, unspecified with thyrotoxic crisis or storm|Thyrotoxicosis, unspecified with thyrotoxic crisis or storm +C2873878|T047|PT|E05.91|ICD10CM|Thyrotoxicosis, unspecified with thyrotoxic crisis or storm|Thyrotoxicosis, unspecified with thyrotoxic crisis or storm +C0040147|T047|HT|E06|ICD10|Thyroiditis|Thyroiditis +C0040147|T047|HT|E06|ICD10CM|Thyroiditis|Thyroiditis +C0040147|T047|AB|E06|ICD10CM|Thyroiditis|Thyroiditis +C0342174|T047|ET|E06.0|ICD10CM|Abscess of thyroid|Abscess of thyroid +C0001360|T047|PT|E06.0|ICD10|Acute thyroiditis|Acute thyroiditis +C0001360|T047|PT|E06.0|ICD10CM|Acute thyroiditis|Acute thyroiditis +C0001360|T047|AB|E06.0|ICD10CM|Acute thyroiditis|Acute thyroiditis +C0238465|T047|ET|E06.0|ICD10CM|Pyogenic thyroiditis|Pyogenic thyroiditis +C0040150|T047|ET|E06.0|ICD10CM|Suppurative thyroiditis|Suppurative thyroiditis +C0040149|T047|ET|E06.1|ICD10CM|de Quervain thyroiditis|de Quervain thyroiditis +C0040149|T047|ET|E06.1|ICD10CM|Giant-cell thyroiditis|Giant-cell thyroiditis +C0040149|T047|ET|E06.1|ICD10CM|Granulomatous thyroiditis|Granulomatous thyroiditis +C1406948|T047|ET|E06.1|ICD10CM|Nonsuppurative thyroiditis|Nonsuppurative thyroiditis +C0040149|T047|PT|E06.1|ICD10CM|Subacute thyroiditis|Subacute thyroiditis +C0040149|T047|AB|E06.1|ICD10CM|Subacute thyroiditis|Subacute thyroiditis +C0040149|T047|PT|E06.1|ICD10|Subacute thyroiditis|Subacute thyroiditis +C0271812|T047|ET|E06.1|ICD10CM|Viral thyroiditis|Viral thyroiditis +C0342178|T047|PT|E06.2|ICD10CM|Chronic thyroiditis with transient thyrotoxicosis|Chronic thyroiditis with transient thyrotoxicosis +C0342178|T047|AB|E06.2|ICD10CM|Chronic thyroiditis with transient thyrotoxicosis|Chronic thyroiditis with transient thyrotoxicosis +C0342178|T047|PT|E06.2|ICD10|Chronic thyroiditis with transient thyrotoxicosis|Chronic thyroiditis with transient thyrotoxicosis +C0920350|T047|PT|E06.3|ICD10|Autoimmune thyroiditis|Autoimmune thyroiditis +C0920350|T047|PT|E06.3|ICD10CM|Autoimmune thyroiditis|Autoimmune thyroiditis +C0920350|T047|AB|E06.3|ICD10CM|Autoimmune thyroiditis|Autoimmune thyroiditis +C0677607|T047|ET|E06.3|ICD10CM|Hashimoto's thyroiditis|Hashimoto's thyroiditis +C0342125|T047|ET|E06.3|ICD10CM|Hashitoxicosis (transient)|Hashitoxicosis (transient) +C0677606|T047|ET|E06.3|ICD10CM|Lymphadenoid goiter|Lymphadenoid goiter +C0920350|T047|ET|E06.3|ICD10CM|Lymphocytic thyroiditis|Lymphocytic thyroiditis +C0677607|T047|ET|E06.3|ICD10CM|Struma lymphomatosa|Struma lymphomatosa +C0342179|T046|PT|E06.4|ICD10|Drug-induced thyroiditis|Drug-induced thyroiditis +C0342179|T046|PT|E06.4|ICD10CM|Drug-induced thyroiditis|Drug-induced thyroiditis +C0342179|T046|AB|E06.4|ICD10CM|Drug-induced thyroiditis|Drug-induced thyroiditis +C3887878|T047|ET|E06.5|ICD10CM|Chronic fibrous thyroiditis|Chronic fibrous thyroiditis +C0242520|T047|ET|E06.5|ICD10CM|Chronic thyroiditis NOS|Chronic thyroiditis NOS +C0154162|T047|ET|E06.5|ICD10CM|Ligneous thyroiditis|Ligneous thyroiditis +C0029495|T047|PT|E06.5|ICD10|Other chronic thyroiditis|Other chronic thyroiditis +C0029495|T047|PT|E06.5|ICD10CM|Other chronic thyroiditis|Other chronic thyroiditis +C0029495|T047|AB|E06.5|ICD10CM|Other chronic thyroiditis|Other chronic thyroiditis +C0154162|T047|ET|E06.5|ICD10CM|Riedel thyroiditis|Riedel thyroiditis +C0040147|T047|PT|E06.9|ICD10CM|Thyroiditis, unspecified|Thyroiditis, unspecified +C0040147|T047|AB|E06.9|ICD10CM|Thyroiditis, unspecified|Thyroiditis, unspecified +C0040147|T047|PT|E06.9|ICD10|Thyroiditis, unspecified|Thyroiditis, unspecified +C0154164|T047|HT|E07|ICD10|Other disorders of thyroid|Other disorders of thyroid +C0154164|T047|HT|E07|ICD10CM|Other disorders of thyroid|Other disorders of thyroid +C0154164|T047|AB|E07|ICD10CM|Other disorders of thyroid|Other disorders of thyroid +C0342190|T047|ET|E07.0|ICD10CM|C-cell hyperplasia of thyroid|C-cell hyperplasia of thyroid +C0271822|T046|PT|E07.0|ICD10CM|Hypersecretion of calcitonin|Hypersecretion of calcitonin +C0271822|T046|AB|E07.0|ICD10CM|Hypersecretion of calcitonin|Hypersecretion of calcitonin +C0271822|T046|PT|E07.0|ICD10|Hypersecretion of calcitonin|Hypersecretion of calcitonin +C0271822|T046|ET|E07.0|ICD10CM|Hypersecretion of thyrocalcitonin|Hypersecretion of thyrocalcitonin +C0152077|T047|PT|E07.1|ICD10CM|Dyshormogenetic goiter|Dyshormogenetic goiter +C0152077|T047|AB|E07.1|ICD10CM|Dyshormogenetic goiter|Dyshormogenetic goiter +C0152077|T047|PT|E07.1|ICD10AE|Dyshormogenetic goiter|Dyshormogenetic goiter +C0152077|T047|PT|E07.1|ICD10|Dyshormogenetic goitre|Dyshormogenetic goitre +C2873879|T047|ET|E07.1|ICD10CM|Familial dyshormogenetic goiter|Familial dyshormogenetic goiter +C0271829|T047|ET|E07.1|ICD10CM|Pendred's syndrome|Pendred's syndrome +C0154167|T047|PT|E07.8|ICD10|Other specified disorders of thyroid|Other specified disorders of thyroid +C0154167|T047|HT|E07.8|ICD10CM|Other specified disorders of thyroid|Other specified disorders of thyroid +C0154167|T047|AB|E07.8|ICD10CM|Other specified disorders of thyroid|Other specified disorders of thyroid +C0015190|T047|ET|E07.81|ICD10CM|Euthyroid sick-syndrome|Euthyroid sick-syndrome +C0015190|T047|PT|E07.81|ICD10CM|Sick-euthyroid syndrome|Sick-euthyroid syndrome +C0015190|T047|AB|E07.81|ICD10CM|Sick-euthyroid syndrome|Sick-euthyroid syndrome +C0342181|T046|ET|E07.89|ICD10CM|Abnormality of thyroid-binding globulin|Abnormality of thyroid-binding globulin +C0271820|T046|ET|E07.89|ICD10CM|Hemorrhage of thyroid|Hemorrhage of thyroid +C0271821|T047|ET|E07.89|ICD10CM|Infarction of thyroid|Infarction of thyroid +C0154167|T047|PT|E07.89|ICD10CM|Other specified disorders of thyroid|Other specified disorders of thyroid +C0154167|T047|AB|E07.89|ICD10CM|Other specified disorders of thyroid|Other specified disorders of thyroid +C0040128|T047|PT|E07.9|ICD10CM|Disorder of thyroid, unspecified|Disorder of thyroid, unspecified +C0040128|T047|AB|E07.9|ICD10CM|Disorder of thyroid, unspecified|Disorder of thyroid, unspecified +C0040128|T047|PT|E07.9|ICD10|Disorder of thyroid, unspecified|Disorder of thyroid, unspecified +C2873880|T047|AB|E08|ICD10CM|Diabetes mellitus due to underlying condition|Diabetes mellitus due to underlying condition +C2873880|T047|HT|E08|ICD10CM|Diabetes mellitus due to underlying condition|Diabetes mellitus due to underlying condition +C0011849|T047|HT|E08-E13|ICD10CM|Diabetes mellitus (E08-E13)|Diabetes mellitus (E08-E13) +C2873881|T047|AB|E08.0|ICD10CM|Diabetes due to underlying condition w hyperosmolarity|Diabetes due to underlying condition w hyperosmolarity +C2873881|T047|HT|E08.0|ICD10CM|Diabetes mellitus due to underlying condition with hyperosmolarity|Diabetes mellitus due to underlying condition with hyperosmolarity +C2873882|T047|AB|E08.00|ICD10CM|Diab d/t undrl cond w hyprosm w/o nonket hyprgly-hypros coma|Diab d/t undrl cond w hyprosm w/o nonket hyprgly-hypros coma +C2873883|T047|AB|E08.01|ICD10CM|Diabetes due to underlying condition w hyprosm w coma|Diabetes due to underlying condition w hyprosm w coma +C2873883|T047|PT|E08.01|ICD10CM|Diabetes mellitus due to underlying condition with hyperosmolarity with coma|Diabetes mellitus due to underlying condition with hyperosmolarity with coma +C2873884|T047|AB|E08.1|ICD10CM|Diabetes mellitus due to underlying condition w ketoacidosis|Diabetes mellitus due to underlying condition w ketoacidosis +C2873884|T047|HT|E08.1|ICD10CM|Diabetes mellitus due to underlying condition with ketoacidosis|Diabetes mellitus due to underlying condition with ketoacidosis +C2873885|T047|AB|E08.10|ICD10CM|Diabetes due to underlying condition w ketoacidosis w/o coma|Diabetes due to underlying condition w ketoacidosis w/o coma +C2873885|T047|PT|E08.10|ICD10CM|Diabetes mellitus due to underlying condition with ketoacidosis without coma|Diabetes mellitus due to underlying condition with ketoacidosis without coma +C2873886|T047|AB|E08.11|ICD10CM|Diabetes due to underlying condition w ketoacidosis w coma|Diabetes due to underlying condition w ketoacidosis w coma +C2873886|T047|PT|E08.11|ICD10CM|Diabetes mellitus due to underlying condition with ketoacidosis with coma|Diabetes mellitus due to underlying condition with ketoacidosis with coma +C2873887|T047|AB|E08.2|ICD10CM|Diabetes due to underlying condition w kidney complications|Diabetes due to underlying condition w kidney complications +C2873887|T047|HT|E08.2|ICD10CM|Diabetes mellitus due to underlying condition with kidney complications|Diabetes mellitus due to underlying condition with kidney complications +C2873891|T047|AB|E08.21|ICD10CM|Diabetes due to underlying condition w diabetic nephropathy|Diabetes due to underlying condition w diabetic nephropathy +C2873891|T047|PT|E08.21|ICD10CM|Diabetes mellitus due to underlying condition with diabetic nephropathy|Diabetes mellitus due to underlying condition with diabetic nephropathy +C2873889|T046|ET|E08.21|ICD10CM|Diabetes mellitus due to underlying condition with intercapillary glomerulosclerosis|Diabetes mellitus due to underlying condition with intercapillary glomerulosclerosis +C2873890|T046|ET|E08.21|ICD10CM|Diabetes mellitus due to underlying condition with intracapillary glomerulonephrosis|Diabetes mellitus due to underlying condition with intracapillary glomerulonephrosis +C2873888|T046|ET|E08.21|ICD10CM|Diabetes mellitus due to underlying condition with Kimmelstiel-Wilson disease|Diabetes mellitus due to underlying condition with Kimmelstiel-Wilson disease +C2873892|T047|AB|E08.22|ICD10CM|Diabetes due to undrl cond w diabetic chronic kidney disease|Diabetes due to undrl cond w diabetic chronic kidney disease +C2873892|T047|PT|E08.22|ICD10CM|Diabetes mellitus due to underlying condition with diabetic chronic kidney disease|Diabetes mellitus due to underlying condition with diabetic chronic kidney disease +C2873894|T047|AB|E08.29|ICD10CM|Diabetes due to undrl condition w oth diabetic kidney comp|Diabetes due to undrl condition w oth diabetic kidney comp +C2873894|T047|PT|E08.29|ICD10CM|Diabetes mellitus due to underlying condition with other diabetic kidney complication|Diabetes mellitus due to underlying condition with other diabetic kidney complication +C2873893|T046|ET|E08.29|ICD10CM|Renal tubular degeneration in diabetes mellitus due to underlying condition|Renal tubular degeneration in diabetes mellitus due to underlying condition +C2873895|T047|AB|E08.3|ICD10CM|Diabetes due to underlying condition w ophthalmic comp|Diabetes due to underlying condition w ophthalmic comp +C2873895|T047|HT|E08.3|ICD10CM|Diabetes mellitus due to underlying condition with ophthalmic complications|Diabetes mellitus due to underlying condition with ophthalmic complications +C2873896|T047|AB|E08.31|ICD10CM|Diabetes due to underlying condition w unsp diabetic rtnop|Diabetes due to underlying condition w unsp diabetic rtnop +C2873896|T047|HT|E08.31|ICD10CM|Diabetes mellitus due to underlying condition with unspecified diabetic retinopathy|Diabetes mellitus due to underlying condition with unspecified diabetic retinopathy +C2873897|T047|AB|E08.311|ICD10CM|Diab due to undrl cond w unsp diabetic rtnop w macular edema|Diab due to undrl cond w unsp diabetic rtnop w macular edema +C2873898|T047|AB|E08.319|ICD10CM|Diab due to undrl cond w unsp diab rtnop w/o macular edema|Diab due to undrl cond w unsp diab rtnop w/o macular edema +C2873900|T047|AB|E08.32|ICD10CM|Diabetes due to undrl cond w mild nonprlf diabetic rtnop|Diabetes due to undrl cond w mild nonprlf diabetic rtnop +C2873900|T047|HT|E08.32|ICD10CM|Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy|Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy +C2873899|T046|ET|E08.32|ICD10CM|Diabetes mellitus due to underlying condition with nonproliferative diabetic retinopathy NOS|Diabetes mellitus due to underlying condition with nonproliferative diabetic retinopathy NOS +C2873901|T047|AB|E08.321|ICD10CM|Diab d/t undrl cond w mild nonprlf diab rtnop w mclr edema|Diab d/t undrl cond w mild nonprlf diab rtnop w mclr edema +C4267897|T047|AB|E08.3211|ICD10CM|Diabetes with mild nonp rtnop with macular edema, right eye|Diabetes with mild nonp rtnop with macular edema, right eye +C4267898|T047|AB|E08.3212|ICD10CM|Diabetes with mild nonp rtnop with macular edema, left eye|Diabetes with mild nonp rtnop with macular edema, left eye +C4267899|T047|AB|E08.3213|ICD10CM|Diabetes with mild nonp rtnop with macular edema, bilateral|Diabetes with mild nonp rtnop with macular edema, bilateral +C4267900|T047|AB|E08.3219|ICD10CM|Diabetes with mild nonp rtnop with macular edema, unsp|Diabetes with mild nonp rtnop with macular edema, unsp +C2873902|T047|AB|E08.329|ICD10CM|Diab d/t undrl cond w mild nonprlf diab rtnop w/o mclr edema|Diab d/t undrl cond w mild nonprlf diab rtnop w/o mclr edema +C4267901|T047|AB|E08.3291|ICD10CM|Diabetes with mild nonp rtnop without macular edema, r eye|Diabetes with mild nonp rtnop without macular edema, r eye +C4267902|T047|AB|E08.3292|ICD10CM|Diab with mild nonp rtnop without macular edema, left eye|Diab with mild nonp rtnop without macular edema, left eye +C4267903|T047|AB|E08.3293|ICD10CM|Diabetes with mild nonp rtnop without macular edema, bi|Diabetes with mild nonp rtnop without macular edema, bi +C4267904|T047|AB|E08.3299|ICD10CM|Diabetes with mild nonp rtnop without macular edema, unsp|Diabetes with mild nonp rtnop without macular edema, unsp +C2873903|T047|AB|E08.33|ICD10CM|Diabetes due to undrl cond w moderate nonprlf diabetic rtnop|Diabetes due to undrl cond w moderate nonprlf diabetic rtnop +C2873903|T047|HT|E08.33|ICD10CM|Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy|Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy +C2873904|T047|AB|E08.331|ICD10CM|Diab due to undrl cond w mod nonprlf diab rtnop w mclr edema|Diab due to undrl cond w mod nonprlf diab rtnop w mclr edema +C4267905|T047|AB|E08.3311|ICD10CM|Diabetes with moderate nonp rtnop with macular edema, r eye|Diabetes with moderate nonp rtnop with macular edema, r eye +C4267906|T047|AB|E08.3312|ICD10CM|Diab with moderate nonp rtnop with macular edema, left eye|Diab with moderate nonp rtnop with macular edema, left eye +C4267907|T047|AB|E08.3313|ICD10CM|Diabetes with moderate nonp rtnop with macular edema, bi|Diabetes with moderate nonp rtnop with macular edema, bi +C4267908|T047|AB|E08.3319|ICD10CM|Diabetes with moderate nonp rtnop with macular edema, unsp|Diabetes with moderate nonp rtnop with macular edema, unsp +C2873905|T047|AB|E08.339|ICD10CM|Diab d/t undrl cond w mod nonprlf diab rtnop w/o mclr edema|Diab d/t undrl cond w mod nonprlf diab rtnop w/o mclr edema +C4267909|T047|AB|E08.3391|ICD10CM|Diab with moderate nonp rtnop without macular edema, r eye|Diab with moderate nonp rtnop without macular edema, r eye +C4267910|T047|AB|E08.3392|ICD10CM|Diab with moderate nonp rtnop without macular edema, l eye|Diab with moderate nonp rtnop without macular edema, l eye +C4267911|T047|AB|E08.3393|ICD10CM|Diabetes with moderate nonp rtnop without macular edema, bi|Diabetes with moderate nonp rtnop without macular edema, bi +C4267912|T047|AB|E08.3399|ICD10CM|Diab with moderate nonp rtnop without macular edema, unsp|Diab with moderate nonp rtnop without macular edema, unsp +C2873906|T047|AB|E08.34|ICD10CM|Diabetes due to undrl cond w severe nonprlf diabetic rtnop|Diabetes due to undrl cond w severe nonprlf diabetic rtnop +C2873906|T047|HT|E08.34|ICD10CM|Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy|Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy +C2873907|T047|AB|E08.341|ICD10CM|Diab d/t undrl cond w severe nonprlf diab rtnop w mclr edema|Diab d/t undrl cond w severe nonprlf diab rtnop w mclr edema +C4267913|T047|AB|E08.3411|ICD10CM|Diabetes with severe nonp rtnop with macular edema, r eye|Diabetes with severe nonp rtnop with macular edema, r eye +C4267914|T047|AB|E08.3412|ICD10CM|Diabetes with severe nonp rtnop with macular edema, left eye|Diabetes with severe nonp rtnop with macular edema, left eye +C4267915|T047|AB|E08.3413|ICD10CM|Diabetes with severe nonp rtnop with macular edema, bi|Diabetes with severe nonp rtnop with macular edema, bi +C4267916|T047|AB|E08.3419|ICD10CM|Diabetes with severe nonp rtnop with macular edema, unsp|Diabetes with severe nonp rtnop with macular edema, unsp +C2873908|T047|AB|E08.349|ICD10CM|Diab d/t undrl cond w sev nonprlf diab rtnop w/o mclr edema|Diab d/t undrl cond w sev nonprlf diab rtnop w/o mclr edema +C4267917|T047|AB|E08.3491|ICD10CM|Diabetes with severe nonp rtnop without macular edema, r eye|Diabetes with severe nonp rtnop without macular edema, r eye +C4267918|T047|AB|E08.3492|ICD10CM|Diab with severe nonp rtnop without macular edema, left eye|Diab with severe nonp rtnop without macular edema, left eye +C4267919|T047|AB|E08.3493|ICD10CM|Diabetes with severe nonp rtnop without macular edema, bi|Diabetes with severe nonp rtnop without macular edema, bi +C4267920|T047|AB|E08.3499|ICD10CM|Diabetes with severe nonp rtnop without macular edema, unsp|Diabetes with severe nonp rtnop without macular edema, unsp +C2873909|T047|AB|E08.35|ICD10CM|Diabetes due to underlying condition w prolif diabetic rtnop|Diabetes due to underlying condition w prolif diabetic rtnop +C2873909|T047|HT|E08.35|ICD10CM|Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy|Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy +C2873910|T047|AB|E08.351|ICD10CM|Diab due to undrl cond w prolif diab rtnop w macular edema|Diab due to undrl cond w prolif diab rtnop w macular edema +C4267921|T047|AB|E08.3511|ICD10CM|Diab with prolif diabetic rtnop with macular edema, r eye|Diab with prolif diabetic rtnop with macular edema, r eye +C4267922|T047|AB|E08.3512|ICD10CM|Diab with prolif diabetic rtnop with macular edema, left eye|Diab with prolif diabetic rtnop with macular edema, left eye +C4267923|T047|AB|E08.3513|ICD10CM|Diabetes with prolif diabetic rtnop with macular edema, bi|Diabetes with prolif diabetic rtnop with macular edema, bi +C4267924|T047|AB|E08.3519|ICD10CM|Diabetes with prolif diabetic rtnop with macular edema, unsp|Diabetes with prolif diabetic rtnop with macular edema, unsp +C4267925|T047|AB|E08.352|ICD10CM|Diabetes with prolif diabetic rtnop with trctn dtch macula|Diabetes with prolif diabetic rtnop with trctn dtch macula +C4267926|T047|AB|E08.3521|ICD10CM|Diab with prolif diab rtnop with trctn dtch macula, r eye|Diab with prolif diab rtnop with trctn dtch macula, r eye +C4267927|T047|AB|E08.3522|ICD10CM|Diab with prolif diab rtnop with trctn dtch macula, left eye|Diab with prolif diab rtnop with trctn dtch macula, left eye +C4267928|T047|AB|E08.3523|ICD10CM|Diab with prolif diabetic rtnop with trctn dtch macula, bi|Diab with prolif diabetic rtnop with trctn dtch macula, bi +C4267929|T047|AB|E08.3529|ICD10CM|Diab with prolif diabetic rtnop with trctn dtch macula, unsp|Diab with prolif diabetic rtnop with trctn dtch macula, unsp +C4267930|T047|AB|E08.353|ICD10CM|Diabetes with prolif diabetic rtnop with trctn dtch n-mcla|Diabetes with prolif diabetic rtnop with trctn dtch n-mcla +C4267931|T047|AB|E08.3531|ICD10CM|Diab with prolif diab rtnop with trctn dtch n-mcla, r eye|Diab with prolif diab rtnop with trctn dtch n-mcla, r eye +C4267932|T047|AB|E08.3532|ICD10CM|Diab with prolif diab rtnop with trctn dtch n-mcla, left eye|Diab with prolif diab rtnop with trctn dtch n-mcla, left eye +C4267933|T047|AB|E08.3533|ICD10CM|Diab with prolif diabetic rtnop with trctn dtch n-mcla, bi|Diab with prolif diabetic rtnop with trctn dtch n-mcla, bi +C4267934|T047|AB|E08.3539|ICD10CM|Diab with prolif diabetic rtnop with trctn dtch n-mcla, unsp|Diab with prolif diabetic rtnop with trctn dtch n-mcla, unsp +C4267935|T047|AB|E08.354|ICD10CM|Diabetes with prolif diabetic rtnop with combined detachment|Diabetes with prolif diabetic rtnop with combined detachment +C4267936|T047|AB|E08.3541|ICD10CM|Diabetes with prolif diabetic rtnop with comb detach, r eye|Diabetes with prolif diabetic rtnop with comb detach, r eye +C4267937|T047|AB|E08.3542|ICD10CM|Diab with prolif diabetic rtnop with comb detach, left eye|Diab with prolif diabetic rtnop with comb detach, left eye +C4267938|T047|AB|E08.3543|ICD10CM|Diabetes with prolif diabetic rtnop with combined detach, bi|Diabetes with prolif diabetic rtnop with combined detach, bi +C4267939|T047|AB|E08.3549|ICD10CM|Diabetes with prolif diabetic rtnop with comb detach, unsp|Diabetes with prolif diabetic rtnop with comb detach, unsp +C4272973|T047|HT|E08.355|ICD10CM|Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy|Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy +C4272973|T047|AB|E08.355|ICD10CM|Diabetes with stable proliferative diabetic retinopathy|Diabetes with stable proliferative diabetic retinopathy +C4267941|T047|AB|E08.3551|ICD10CM|Diabetes with stable prolif diabetic retinopathy, right eye|Diabetes with stable prolif diabetic retinopathy, right eye +C4267942|T047|AB|E08.3552|ICD10CM|Diabetes with stable prolif diabetic retinopathy, left eye|Diabetes with stable prolif diabetic retinopathy, left eye +C4267943|T047|AB|E08.3553|ICD10CM|Diabetes with stable prolif diabetic retinopathy, bilateral|Diabetes with stable prolif diabetic retinopathy, bilateral +C4267944|T047|AB|E08.3559|ICD10CM|Diabetes with stable prolif diabetic retinopathy, unsp|Diabetes with stable prolif diabetic retinopathy, unsp +C2873911|T047|AB|E08.359|ICD10CM|Diab due to undrl cond w prolif diab rtnop w/o macular edema|Diab due to undrl cond w prolif diab rtnop w/o macular edema +C4267945|T047|AB|E08.3591|ICD10CM|Diab with prolif diabetic rtnop without macular edema, r eye|Diab with prolif diabetic rtnop without macular edema, r eye +C4267946|T047|AB|E08.3592|ICD10CM|Diab with prolif diab rtnop without macular edema, left eye|Diab with prolif diab rtnop without macular edema, left eye +C4267947|T047|AB|E08.3593|ICD10CM|Diab with prolif diabetic rtnop without macular edema, bi|Diab with prolif diabetic rtnop without macular edema, bi +C4267948|T047|AB|E08.3599|ICD10CM|Diab with prolif diabetic rtnop without macular edema, unsp|Diab with prolif diabetic rtnop without macular edema, unsp +C2873912|T047|AB|E08.36|ICD10CM|Diabetes due to underlying condition w diabetic cataract|Diabetes due to underlying condition w diabetic cataract +C2873912|T047|PT|E08.36|ICD10CM|Diabetes mellitus due to underlying condition with diabetic cataract|Diabetes mellitus due to underlying condition with diabetic cataract +C4267949|T047|AB|E08.37|ICD10CM|Diabetes with diabetic macular edema, resolved fol treatment|Diabetes with diabetic macular edema, resolved fol treatment +C4267950|T047|AB|E08.37X1|ICD10CM|Diab with diabetic macular edema, resolved fol trtmt, r eye|Diab with diabetic macular edema, resolved fol trtmt, r eye +C4267951|T047|AB|E08.37X2|ICD10CM|Diab with diab macular edema, resolved fol trtmt, left eye|Diab with diab macular edema, resolved fol trtmt, left eye +C4267952|T047|AB|E08.37X3|ICD10CM|Diabetes with diabetic macular edema, resolved fol trtmt, bi|Diabetes with diabetic macular edema, resolved fol trtmt, bi +C4267953|T047|AB|E08.37X9|ICD10CM|Diab with diabetic macular edema, resolved fol trtmt, unsp|Diab with diabetic macular edema, resolved fol trtmt, unsp +C2873913|T047|AB|E08.39|ICD10CM|Diabetes due to undrl condition w oth diabetic opth comp|Diabetes due to undrl condition w oth diabetic opth comp +C2873913|T047|PT|E08.39|ICD10CM|Diabetes mellitus due to underlying condition with other diabetic ophthalmic complication|Diabetes mellitus due to underlying condition with other diabetic ophthalmic complication +C2873914|T047|AB|E08.4|ICD10CM|Diabetes due to underlying condition w neurological comp|Diabetes due to underlying condition w neurological comp +C2873914|T047|HT|E08.4|ICD10CM|Diabetes mellitus due to underlying condition with neurological complications|Diabetes mellitus due to underlying condition with neurological complications +C2873915|T047|AB|E08.40|ICD10CM|Diabetes due to underlying condition w diabetic neurop, unsp|Diabetes due to underlying condition w diabetic neurop, unsp +C2873915|T047|PT|E08.40|ICD10CM|Diabetes mellitus due to underlying condition with diabetic neuropathy, unspecified|Diabetes mellitus due to underlying condition with diabetic neuropathy, unspecified +C2873916|T047|AB|E08.41|ICD10CM|Diabetes due to undrl condition w diabetic mononeuropathy|Diabetes due to undrl condition w diabetic mononeuropathy +C2873916|T047|PT|E08.41|ICD10CM|Diabetes mellitus due to underlying condition with diabetic mononeuropathy|Diabetes mellitus due to underlying condition with diabetic mononeuropathy +C2873918|T047|AB|E08.42|ICD10CM|Diabetes due to underlying condition w diabetic polyneurop|Diabetes due to underlying condition w diabetic polyneurop +C2873917|T046|ET|E08.42|ICD10CM|Diabetes mellitus due to underlying condition with diabetic neuralgia|Diabetes mellitus due to underlying condition with diabetic neuralgia +C2873918|T047|PT|E08.42|ICD10CM|Diabetes mellitus due to underlying condition with diabetic polyneuropathy|Diabetes mellitus due to underlying condition with diabetic polyneuropathy +C2873920|T047|AB|E08.43|ICD10CM|Diab due to undrl cond w diabetic autonm (poly)neuropathy|Diab due to undrl cond w diabetic autonm (poly)neuropathy +C2873920|T047|PT|E08.43|ICD10CM|Diabetes mellitus due to underlying condition with diabetic autonomic (poly)neuropathy|Diabetes mellitus due to underlying condition with diabetic autonomic (poly)neuropathy +C2873919|T046|ET|E08.43|ICD10CM|Diabetes mellitus due to underlying condition with diabetic gastroparesis|Diabetes mellitus due to underlying condition with diabetic gastroparesis +C2873921|T047|AB|E08.44|ICD10CM|Diabetes due to underlying condition w diabetic amyotrophy|Diabetes due to underlying condition w diabetic amyotrophy +C2873921|T047|PT|E08.44|ICD10CM|Diabetes mellitus due to underlying condition with diabetic amyotrophy|Diabetes mellitus due to underlying condition with diabetic amyotrophy +C2873922|T047|AB|E08.49|ICD10CM|Diabetes due to undrl condition w oth diabetic neuro comp|Diabetes due to undrl condition w oth diabetic neuro comp +C2873922|T047|PT|E08.49|ICD10CM|Diabetes mellitus due to underlying condition with other diabetic neurological complication|Diabetes mellitus due to underlying condition with other diabetic neurological complication +C2873923|T047|AB|E08.5|ICD10CM|Diabetes due to underlying condition w circulatory comp|Diabetes due to underlying condition w circulatory comp +C2873923|T047|HT|E08.5|ICD10CM|Diabetes mellitus due to underlying condition with circulatory complications|Diabetes mellitus due to underlying condition with circulatory complications +C2873924|T047|AB|E08.51|ICD10CM|Diab due to undrl cond w diab prph angiopath w/o gangrene|Diab due to undrl cond w diab prph angiopath w/o gangrene +C2873924|T047|PT|E08.51|ICD10CM|Diabetes mellitus due to underlying condition with diabetic peripheral angiopathy without gangrene|Diabetes mellitus due to underlying condition with diabetic peripheral angiopathy without gangrene +C2873926|T047|AB|E08.52|ICD10CM|Diab due to undrl cond w diabetic prph angiopath w gangrene|Diab due to undrl cond w diabetic prph angiopath w gangrene +C2873925|T046|ET|E08.52|ICD10CM|Diabetes mellitus due to underlying condition with diabetic gangrene|Diabetes mellitus due to underlying condition with diabetic gangrene +C2873926|T047|PT|E08.52|ICD10CM|Diabetes mellitus due to underlying condition with diabetic peripheral angiopathy with gangrene|Diabetes mellitus due to underlying condition with diabetic peripheral angiopathy with gangrene +C2873927|T047|AB|E08.59|ICD10CM|Diabetes due to underlying condition w oth circulatory comp|Diabetes due to underlying condition w oth circulatory comp +C2873927|T047|PT|E08.59|ICD10CM|Diabetes mellitus due to underlying condition with other circulatory complications|Diabetes mellitus due to underlying condition with other circulatory complications +C2873945|T047|AB|E08.6|ICD10CM|Diabetes due to underlying condition w oth complications|Diabetes due to underlying condition w oth complications +C2873945|T047|HT|E08.6|ICD10CM|Diabetes mellitus due to underlying condition with other specified complications|Diabetes mellitus due to underlying condition with other specified complications +C2873928|T047|AB|E08.61|ICD10CM|Diabetes due to underlying condition w diabetic arthropathy|Diabetes due to underlying condition w diabetic arthropathy +C2873928|T047|HT|E08.61|ICD10CM|Diabetes mellitus due to underlying condition with diabetic arthropathy|Diabetes mellitus due to underlying condition with diabetic arthropathy +C2873930|T047|AB|E08.610|ICD10CM|Diabetes due to undrl cond w diabetic neuropathic arthrop|Diabetes due to undrl cond w diabetic neuropathic arthrop +C2873929|T046|ET|E08.610|ICD10CM|Diabetes mellitus due to underlying condition with Charcôt's joints|Diabetes mellitus due to underlying condition with Charcôt's joints +C2873930|T047|PT|E08.610|ICD10CM|Diabetes mellitus due to underlying condition with diabetic neuropathic arthropathy|Diabetes mellitus due to underlying condition with diabetic neuropathic arthropathy +C2873931|T047|AB|E08.618|ICD10CM|Diabetes due to underlying condition w oth diabetic arthrop|Diabetes due to underlying condition w oth diabetic arthrop +C2873931|T047|PT|E08.618|ICD10CM|Diabetes mellitus due to underlying condition with other diabetic arthropathy|Diabetes mellitus due to underlying condition with other diabetic arthropathy +C2873932|T047|AB|E08.62|ICD10CM|Diabetes due to underlying condition w skin complications|Diabetes due to underlying condition w skin complications +C2873932|T047|HT|E08.62|ICD10CM|Diabetes mellitus due to underlying condition with skin complications|Diabetes mellitus due to underlying condition with skin complications +C2873934|T047|AB|E08.620|ICD10CM|Diabetes due to underlying condition w diabetic dermatitis|Diabetes due to underlying condition w diabetic dermatitis +C2873934|T047|PT|E08.620|ICD10CM|Diabetes mellitus due to underlying condition with diabetic dermatitis|Diabetes mellitus due to underlying condition with diabetic dermatitis +C2873933|T046|ET|E08.620|ICD10CM|Diabetes mellitus due to underlying condition with diabetic necrobiosis lipoidica|Diabetes mellitus due to underlying condition with diabetic necrobiosis lipoidica +C2873935|T047|AB|E08.621|ICD10CM|Diabetes mellitus due to underlying condition w foot ulcer|Diabetes mellitus due to underlying condition w foot ulcer +C2873935|T047|PT|E08.621|ICD10CM|Diabetes mellitus due to underlying condition with foot ulcer|Diabetes mellitus due to underlying condition with foot ulcer +C2873936|T047|AB|E08.622|ICD10CM|Diabetes due to underlying condition w oth skin ulcer|Diabetes due to underlying condition w oth skin ulcer +C2873936|T047|PT|E08.622|ICD10CM|Diabetes mellitus due to underlying condition with other skin ulcer|Diabetes mellitus due to underlying condition with other skin ulcer +C2873937|T047|AB|E08.628|ICD10CM|Diabetes due to underlying condition w oth skin comp|Diabetes due to underlying condition w oth skin comp +C2873937|T047|PT|E08.628|ICD10CM|Diabetes mellitus due to underlying condition with other skin complications|Diabetes mellitus due to underlying condition with other skin complications +C2873938|T047|AB|E08.63|ICD10CM|Diabetes due to underlying condition w oral complications|Diabetes due to underlying condition w oral complications +C2873938|T047|HT|E08.63|ICD10CM|Diabetes mellitus due to underlying condition with oral complications|Diabetes mellitus due to underlying condition with oral complications +C2873939|T047|AB|E08.630|ICD10CM|Diabetes due to underlying condition w periodontal disease|Diabetes due to underlying condition w periodontal disease +C2873939|T047|PT|E08.630|ICD10CM|Diabetes mellitus due to underlying condition with periodontal disease|Diabetes mellitus due to underlying condition with periodontal disease +C2873940|T047|AB|E08.638|ICD10CM|Diabetes due to underlying condition w oth oral comp|Diabetes due to underlying condition w oth oral comp +C2873940|T047|PT|E08.638|ICD10CM|Diabetes mellitus due to underlying condition with other oral complications|Diabetes mellitus due to underlying condition with other oral complications +C2873941|T047|AB|E08.64|ICD10CM|Diabetes mellitus due to underlying condition w hypoglycemia|Diabetes mellitus due to underlying condition w hypoglycemia +C2873941|T047|HT|E08.64|ICD10CM|Diabetes mellitus due to underlying condition with hypoglycemia|Diabetes mellitus due to underlying condition with hypoglycemia +C2873942|T047|AB|E08.641|ICD10CM|Diabetes due to underlying condition w hypoglycemia w coma|Diabetes due to underlying condition w hypoglycemia w coma +C2873942|T047|PT|E08.641|ICD10CM|Diabetes mellitus due to underlying condition with hypoglycemia with coma|Diabetes mellitus due to underlying condition with hypoglycemia with coma +C2873943|T047|AB|E08.649|ICD10CM|Diabetes due to underlying condition w hypoglycemia w/o coma|Diabetes due to underlying condition w hypoglycemia w/o coma +C2873943|T047|PT|E08.649|ICD10CM|Diabetes mellitus due to underlying condition with hypoglycemia without coma|Diabetes mellitus due to underlying condition with hypoglycemia without coma +C2873944|T047|AB|E08.65|ICD10CM|Diabetes due to underlying condition w hyperglycemia|Diabetes due to underlying condition w hyperglycemia +C2873944|T047|PT|E08.65|ICD10CM|Diabetes mellitus due to underlying condition with hyperglycemia|Diabetes mellitus due to underlying condition with hyperglycemia +C2873945|T047|AB|E08.69|ICD10CM|Diabetes due to underlying condition w oth complication|Diabetes due to underlying condition w oth complication +C2873945|T047|PT|E08.69|ICD10CM|Diabetes mellitus due to underlying condition with other specified complication|Diabetes mellitus due to underlying condition with other specified complication +C2873946|T047|AB|E08.8|ICD10CM|Diabetes due to underlying condition w unsp complications|Diabetes due to underlying condition w unsp complications +C2873946|T047|PT|E08.8|ICD10CM|Diabetes mellitus due to underlying condition with unspecified complications|Diabetes mellitus due to underlying condition with unspecified complications +C2873947|T047|AB|E08.9|ICD10CM|Diabetes due to underlying condition w/o complications|Diabetes due to underlying condition w/o complications +C2873947|T047|PT|E08.9|ICD10CM|Diabetes mellitus due to underlying condition without complications|Diabetes mellitus due to underlying condition without complications +C2873948|T047|AB|E09|ICD10CM|Drug or chemical induced diabetes mellitus|Drug or chemical induced diabetes mellitus +C2873948|T047|HT|E09|ICD10CM|Drug or chemical induced diabetes mellitus|Drug or chemical induced diabetes mellitus +C2873949|T047|AB|E09.0|ICD10CM|Drug or chemical induced diabetes mellitus w hyperosmolarity|Drug or chemical induced diabetes mellitus w hyperosmolarity +C2873949|T047|HT|E09.0|ICD10CM|Drug or chemical induced diabetes mellitus with hyperosmolarity|Drug or chemical induced diabetes mellitus with hyperosmolarity +C2873950|T047|AB|E09.00|ICD10CM|Drug/chem diab w hyprosm w/o nonket hyprgly-hypros coma|Drug/chem diab w hyprosm w/o nonket hyprgly-hypros coma +C2873951|T047|PT|E09.01|ICD10CM|Drug or chemical induced diabetes mellitus with hyperosmolarity with coma|Drug or chemical induced diabetes mellitus with hyperosmolarity with coma +C2873951|T047|AB|E09.01|ICD10CM|Drug/chem diabetes mellitus w hyperosmolarity w coma|Drug/chem diabetes mellitus w hyperosmolarity w coma +C2873952|T047|AB|E09.1|ICD10CM|Drug or chemical induced diabetes mellitus with ketoacidosis|Drug or chemical induced diabetes mellitus with ketoacidosis +C2873952|T047|HT|E09.1|ICD10CM|Drug or chemical induced diabetes mellitus with ketoacidosis|Drug or chemical induced diabetes mellitus with ketoacidosis +C2873953|T047|PT|E09.10|ICD10CM|Drug or chemical induced diabetes mellitus with ketoacidosis without coma|Drug or chemical induced diabetes mellitus with ketoacidosis without coma +C2873953|T047|AB|E09.10|ICD10CM|Drug/chem diabetes mellitus w ketoacidosis w/o coma|Drug/chem diabetes mellitus w ketoacidosis w/o coma +C2873954|T047|PT|E09.11|ICD10CM|Drug or chemical induced diabetes mellitus with ketoacidosis with coma|Drug or chemical induced diabetes mellitus with ketoacidosis with coma +C2873954|T047|AB|E09.11|ICD10CM|Drug/chem diabetes mellitus w ketoacidosis w coma|Drug/chem diabetes mellitus w ketoacidosis w coma +C2873955|T047|HT|E09.2|ICD10CM|Drug or chemical induced diabetes mellitus with kidney complications|Drug or chemical induced diabetes mellitus with kidney complications +C2873955|T047|AB|E09.2|ICD10CM|Drug/chem diabetes mellitus w kidney complications|Drug/chem diabetes mellitus w kidney complications +C2873959|T047|PT|E09.21|ICD10CM|Drug or chemical induced diabetes mellitus with diabetic nephropathy|Drug or chemical induced diabetes mellitus with diabetic nephropathy +C2873957|T046|ET|E09.21|ICD10CM|Drug or chemical induced diabetes mellitus with intercapillary glomerulosclerosis|Drug or chemical induced diabetes mellitus with intercapillary glomerulosclerosis +C2873958|T046|ET|E09.21|ICD10CM|Drug or chemical induced diabetes mellitus with intracapillary glomerulonephrosis|Drug or chemical induced diabetes mellitus with intracapillary glomerulonephrosis +C2873956|T046|ET|E09.21|ICD10CM|Drug or chemical induced diabetes mellitus with Kimmelstiel-Wilson disease|Drug or chemical induced diabetes mellitus with Kimmelstiel-Wilson disease +C2873959|T047|AB|E09.21|ICD10CM|Drug/chem diabetes mellitus w diabetic nephropathy|Drug/chem diabetes mellitus w diabetic nephropathy +C2873960|T047|PT|E09.22|ICD10CM|Drug or chemical induced diabetes mellitus with diabetic chronic kidney disease|Drug or chemical induced diabetes mellitus with diabetic chronic kidney disease +C2873960|T047|AB|E09.22|ICD10CM|Drug/chem diabetes w diabetic chronic kidney disease|Drug/chem diabetes w diabetic chronic kidney disease +C2873962|T047|PT|E09.29|ICD10CM|Drug or chemical induced diabetes mellitus with other diabetic kidney complication|Drug or chemical induced diabetes mellitus with other diabetic kidney complication +C2873961|T046|ET|E09.29|ICD10CM|Drug or chemical induced diabetes mellitus with renal tubular degeneration|Drug or chemical induced diabetes mellitus with renal tubular degeneration +C2873962|T047|AB|E09.29|ICD10CM|Drug/chem diabetes w oth diabetic kidney complication|Drug/chem diabetes w oth diabetic kidney complication +C2873963|T047|HT|E09.3|ICD10CM|Drug or chemical induced diabetes mellitus with ophthalmic complications|Drug or chemical induced diabetes mellitus with ophthalmic complications +C2873963|T047|AB|E09.3|ICD10CM|Drug/chem diabetes mellitus w ophthalmic complications|Drug/chem diabetes mellitus w ophthalmic complications +C2873964|T047|HT|E09.31|ICD10CM|Drug or chemical induced diabetes mellitus with unspecified diabetic retinopathy|Drug or chemical induced diabetes mellitus with unspecified diabetic retinopathy +C2873964|T047|AB|E09.31|ICD10CM|Drug/chem diabetes mellitus w unsp diabetic retinopathy|Drug/chem diabetes mellitus w unsp diabetic retinopathy +C2873965|T047|PT|E09.311|ICD10CM|Drug or chemical induced diabetes mellitus with unspecified diabetic retinopathy with macular edema|Drug or chemical induced diabetes mellitus with unspecified diabetic retinopathy with macular edema +C2873965|T047|AB|E09.311|ICD10CM|Drug/chem diabetes w unsp diabetic rtnop w macular edema|Drug/chem diabetes w unsp diabetic rtnop w macular edema +C2873966|T047|AB|E09.319|ICD10CM|Drug/chem diabetes w unsp diabetic rtnop w/o macular edema|Drug/chem diabetes w unsp diabetic rtnop w/o macular edema +C2873968|T047|HT|E09.32|ICD10CM|Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy|Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy +C2873967|T046|ET|E09.32|ICD10CM|Drug or chemical induced diabetes mellitus with nonproliferative diabetic retinopathy NOS|Drug or chemical induced diabetes mellitus with nonproliferative diabetic retinopathy NOS +C2873968|T047|AB|E09.32|ICD10CM|Drug/chem diabetes w mild nonprlf diabetic retinopathy|Drug/chem diabetes w mild nonprlf diabetic retinopathy +C2873969|T047|AB|E09.321|ICD10CM|Drug/chem diab w mild nonprlf diabetic rtnop w macular edema|Drug/chem diab w mild nonprlf diabetic rtnop w macular edema +C4267954|T047|AB|E09.3211|ICD10CM|Drug/chem diab with mild nonp rtnop with mclr edema, r eye|Drug/chem diab with mild nonp rtnop with mclr edema, r eye +C4267955|T047|AB|E09.3212|ICD10CM|Drug/chem diab with mild nonp rtnop with mclr edema, l eye|Drug/chem diab with mild nonp rtnop with mclr edema, l eye +C4267956|T047|AB|E09.3213|ICD10CM|Drug/chem diab with mild nonp rtnop with macular edema, bi|Drug/chem diab with mild nonp rtnop with macular edema, bi +C4267957|T047|AB|E09.3219|ICD10CM|Drug/chem diab with mild nonp rtnop with macular edema, unsp|Drug/chem diab with mild nonp rtnop with macular edema, unsp +C2873970|T047|AB|E09.329|ICD10CM|Drug/chem diab w mild nonprlf diab rtnop w/o macular edema|Drug/chem diab w mild nonprlf diab rtnop w/o macular edema +C4267958|T047|AB|E09.3291|ICD10CM|Drug/chem diab with mild nonp rtnop w/o mclr edema, r eye|Drug/chem diab with mild nonp rtnop w/o mclr edema, r eye +C4267959|T047|AB|E09.3292|ICD10CM|Drug/chem diab with mild nonp rtnop w/o mclr edema, l eye|Drug/chem diab with mild nonp rtnop w/o mclr edema, l eye +C4267960|T047|AB|E09.3293|ICD10CM|Drug/chem diab with mild nonp rtnop without mclr edema, bi|Drug/chem diab with mild nonp rtnop without mclr edema, bi +C4267961|T047|AB|E09.3299|ICD10CM|Drug/chem diab with mild nonp rtnop without mclr edema, unsp|Drug/chem diab with mild nonp rtnop without mclr edema, unsp +C2873971|T047|HT|E09.33|ICD10CM|Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy|Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy +C2873971|T047|AB|E09.33|ICD10CM|Drug/chem diabetes w moderate nonprlf diabetic retinopathy|Drug/chem diabetes w moderate nonprlf diabetic retinopathy +C2873972|T047|AB|E09.331|ICD10CM|Drug/chem diab w moderate nonprlf diab rtnop w macular edema|Drug/chem diab w moderate nonprlf diab rtnop w macular edema +C4267962|T047|AB|E09.3311|ICD10CM|Drug/chem diab with mod nonp rtnop with macular edema, r eye|Drug/chem diab with mod nonp rtnop with macular edema, r eye +C4267963|T047|AB|E09.3312|ICD10CM|Drug/chem diab with mod nonp rtnop with macular edema, l eye|Drug/chem diab with mod nonp rtnop with macular edema, l eye +C4267964|T047|AB|E09.3313|ICD10CM|Drug/chem diab with mod nonp rtnop with macular edema, bi|Drug/chem diab with mod nonp rtnop with macular edema, bi +C4267965|T047|AB|E09.3319|ICD10CM|Drug/chem diab with mod nonp rtnop with macular edema, unsp|Drug/chem diab with mod nonp rtnop with macular edema, unsp +C2873973|T047|AB|E09.339|ICD10CM|Drug/chem diab w mod nonprlf diab rtnop w/o macular edema|Drug/chem diab w mod nonprlf diab rtnop w/o macular edema +C4267966|T047|AB|E09.3391|ICD10CM|Drug/chem diab with mod nonp rtnop without mclr edema, r eye|Drug/chem diab with mod nonp rtnop without mclr edema, r eye +C4267967|T047|AB|E09.3392|ICD10CM|Drug/chem diab with mod nonp rtnop without mclr edema, l eye|Drug/chem diab with mod nonp rtnop without mclr edema, l eye +C4267968|T047|AB|E09.3393|ICD10CM|Drug/chem diab with mod nonp rtnop without macular edema, bi|Drug/chem diab with mod nonp rtnop without macular edema, bi +C4267969|T047|AB|E09.3399|ICD10CM|Drug/chem diab with mod nonp rtnop without mclr edema, unsp|Drug/chem diab with mod nonp rtnop without mclr edema, unsp +C2873974|T047|HT|E09.34|ICD10CM|Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy|Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy +C2873974|T047|AB|E09.34|ICD10CM|Drug/chem diabetes w severe nonprlf diabetic retinopathy|Drug/chem diabetes w severe nonprlf diabetic retinopathy +C2873975|T047|AB|E09.341|ICD10CM|Drug/chem diab w severe nonprlf diab rtnop w macular edema|Drug/chem diab w severe nonprlf diab rtnop w macular edema +C4267970|T047|AB|E09.3411|ICD10CM|Drug/chem diab with severe nonp rtnop with mclr edema, r eye|Drug/chem diab with severe nonp rtnop with mclr edema, r eye +C4267971|T047|AB|E09.3412|ICD10CM|Drug/chem diab with severe nonp rtnop with mclr edema, l eye|Drug/chem diab with severe nonp rtnop with mclr edema, l eye +C4267972|T047|AB|E09.3413|ICD10CM|Drug/chem diab with severe nonp rtnop with macular edema, bi|Drug/chem diab with severe nonp rtnop with macular edema, bi +C4267973|T047|AB|E09.3419|ICD10CM|Drug/chem diab with severe nonp rtnop with mclr edema, unsp|Drug/chem diab with severe nonp rtnop with mclr edema, unsp +C2873976|T047|AB|E09.349|ICD10CM|Drug/chem diab w severe nonprlf diab rtnop w/o macular edema|Drug/chem diab w severe nonprlf diab rtnop w/o macular edema +C4267974|T047|AB|E09.3491|ICD10CM|Drug/chem diab with severe nonp rtnop w/o mclr edema, r eye|Drug/chem diab with severe nonp rtnop w/o mclr edema, r eye +C4267975|T047|AB|E09.3492|ICD10CM|Drug/chem diab with severe nonp rtnop w/o mclr edema, l eye|Drug/chem diab with severe nonp rtnop w/o mclr edema, l eye +C4267976|T047|AB|E09.3493|ICD10CM|Drug/chem diab with severe nonp rtnop without mclr edema, bi|Drug/chem diab with severe nonp rtnop without mclr edema, bi +C4267977|T047|AB|E09.3499|ICD10CM|Drug/chem diab with severe nonp rtnop w/o mclr edema, unsp|Drug/chem diab with severe nonp rtnop w/o mclr edema, unsp +C2873977|T047|HT|E09.35|ICD10CM|Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy|Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy +C2873977|T047|AB|E09.35|ICD10CM|Drug/chem diabetes w proliferative diabetic retinopathy|Drug/chem diabetes w proliferative diabetic retinopathy +C2873978|T047|AB|E09.351|ICD10CM|Drug/chem diabetes w prolif diabetic rtnop w macular edema|Drug/chem diabetes w prolif diabetic rtnop w macular edema +C4267978|T047|AB|E09.3511|ICD10CM|Drug/chem diab with prolif diab rtnop with mclr edema, r eye|Drug/chem diab with prolif diab rtnop with mclr edema, r eye +C4267979|T047|AB|E09.3512|ICD10CM|Drug/chem diab with prolif diab rtnop with mclr edema, l eye|Drug/chem diab with prolif diab rtnop with mclr edema, l eye +C4267980|T047|AB|E09.3513|ICD10CM|Drug/chem diab with prolif diab rtnop with macular edema, bi|Drug/chem diab with prolif diab rtnop with macular edema, bi +C4267981|T047|AB|E09.3519|ICD10CM|Drug/chem diab with prolif diab rtnop with mclr edema, unsp|Drug/chem diab with prolif diab rtnop with mclr edema, unsp +C4267982|T047|AB|E09.352|ICD10CM|Drug/chem diab with prolif diab rtnop with trctn dtch macula|Drug/chem diab with prolif diab rtnop with trctn dtch macula +C4267983|T047|AB|E09.3521|ICD10CM|Drug/chem diab w prolif diab rtnop w trctn dtch macula,r eye|Drug/chem diab w prolif diab rtnop w trctn dtch macula,r eye +C4267984|T047|AB|E09.3522|ICD10CM|Drug/chem diab w prolif diab rtnop w trctn dtch macula,l eye|Drug/chem diab w prolif diab rtnop w trctn dtch macula,l eye +C4267985|T047|AB|E09.3523|ICD10CM|Drug/chem diab w prolif diab rtnop w trctn dtch macula, bi|Drug/chem diab w prolif diab rtnop w trctn dtch macula, bi +C4267986|T047|AB|E09.3529|ICD10CM|Drug/chem diab w prolif diab rtnop w trctn dtch macula, unsp|Drug/chem diab w prolif diab rtnop w trctn dtch macula, unsp +C4267987|T047|AB|E09.353|ICD10CM|Drug/chem diab with prolif diab rtnop with trctn dtch n-mcla|Drug/chem diab with prolif diab rtnop with trctn dtch n-mcla +C4267988|T047|AB|E09.3531|ICD10CM|Drug/chem diab w prolif diab rtnop w trctn dtch n-mcla,r eye|Drug/chem diab w prolif diab rtnop w trctn dtch n-mcla,r eye +C4267989|T047|AB|E09.3532|ICD10CM|Drug/chem diab w prolif diab rtnop w trctn dtch n-mcla,l eye|Drug/chem diab w prolif diab rtnop w trctn dtch n-mcla,l eye +C4267990|T047|AB|E09.3533|ICD10CM|Drug/chem diab w prolif diab rtnop w trctn dtch n-mcla, bi|Drug/chem diab w prolif diab rtnop w trctn dtch n-mcla, bi +C4267991|T047|AB|E09.3539|ICD10CM|Drug/chem diab w prolif diab rtnop w trctn dtch n-mcla, unsp|Drug/chem diab w prolif diab rtnop w trctn dtch n-mcla, unsp +C4267992|T047|AB|E09.354|ICD10CM|Drug/chem diab with prolif diabetic rtnop with comb detach|Drug/chem diab with prolif diabetic rtnop with comb detach +C4267993|T047|AB|E09.3541|ICD10CM|Drug/chem diab w prolif diab rtnop with comb detach, r eye|Drug/chem diab w prolif diab rtnop with comb detach, r eye +C4267994|T047|AB|E09.3542|ICD10CM|Drug/chem diab w prolif diab rtnop with comb detach, l eye|Drug/chem diab w prolif diab rtnop with comb detach, l eye +C4267995|T047|AB|E09.3543|ICD10CM|Drug/chem diab with prolif diab rtnop with comb detach, bi|Drug/chem diab with prolif diab rtnop with comb detach, bi +C4267996|T047|AB|E09.3549|ICD10CM|Drug/chem diab with prolif diab rtnop with comb detach, unsp|Drug/chem diab with prolif diab rtnop with comb detach, unsp +C4267997|T047|HT|E09.355|ICD10CM|Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy|Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy +C4267997|T047|AB|E09.355|ICD10CM|Drug/chem diabetes with stable prolif diabetic retinopathy|Drug/chem diabetes with stable prolif diabetic retinopathy +C4267998|T047|PT|E09.3551|ICD10CM|Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy, right eye|Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy, right eye +C4267998|T047|AB|E09.3551|ICD10CM|Drug/chem diabetes with stable prolif diabetic rtnop, r eye|Drug/chem diabetes with stable prolif diabetic rtnop, r eye +C4267999|T047|PT|E09.3552|ICD10CM|Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy, left eye|Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy, left eye +C4267999|T047|AB|E09.3552|ICD10CM|Drug/chem diab with stable prolif diabetic rtnop, left eye|Drug/chem diab with stable prolif diabetic rtnop, left eye +C4268000|T047|PT|E09.3553|ICD10CM|Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy, bilateral|Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy, bilateral +C4268000|T047|AB|E09.3553|ICD10CM|Drug/chem diabetes with stable prolif diabetic rtnop, bi|Drug/chem diabetes with stable prolif diabetic rtnop, bi +C4268001|T047|AB|E09.3559|ICD10CM|Drug/chem diabetes with stable prolif diabetic rtnop, unsp|Drug/chem diabetes with stable prolif diabetic rtnop, unsp +C2873979|T047|AB|E09.359|ICD10CM|Drug/chem diabetes w prolif diabetic rtnop w/o macular edema|Drug/chem diabetes w prolif diabetic rtnop w/o macular edema +C4268002|T047|AB|E09.3591|ICD10CM|Drug/chem diab with prolif diab rtnop w/o mclr edema, r eye|Drug/chem diab with prolif diab rtnop w/o mclr edema, r eye +C4268003|T047|AB|E09.3592|ICD10CM|Drug/chem diab with prolif diab rtnop w/o mclr edema, l eye|Drug/chem diab with prolif diab rtnop w/o mclr edema, l eye +C4268004|T047|AB|E09.3593|ICD10CM|Drug/chem diab with prolif diab rtnop without mclr edema, bi|Drug/chem diab with prolif diab rtnop without mclr edema, bi +C4268005|T047|AB|E09.3599|ICD10CM|Drug/chem diab with prolif diab rtnop w/o mclr edema, unsp|Drug/chem diab with prolif diab rtnop w/o mclr edema, unsp +C2873980|T047|PT|E09.36|ICD10CM|Drug or chemical induced diabetes mellitus with diabetic cataract|Drug or chemical induced diabetes mellitus with diabetic cataract +C2873980|T047|AB|E09.36|ICD10CM|Drug/chem diabetes mellitus w diabetic cataract|Drug/chem diabetes mellitus w diabetic cataract +C4268006|T047|HT|E09.37|ICD10CM|Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment|Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment +C4268006|T047|AB|E09.37|ICD10CM|Drug/chem diab with diab macular edema, resolved fol trtmt|Drug/chem diab with diab macular edema, resolved fol trtmt +C4268007|T047|AB|E09.37X1|ICD10CM|Drug/chem diab w diab mclr edma, resolved fol trtmt, r eye|Drug/chem diab w diab mclr edma, resolved fol trtmt, r eye +C4268008|T047|AB|E09.37X2|ICD10CM|Drug/chem diab w diab mclr edma, resolved fol trtmt, l eye|Drug/chem diab w diab mclr edma, resolved fol trtmt, l eye +C4268009|T047|AB|E09.37X3|ICD10CM|Drug/chem diab with diab mclr edema, resolved fol trtmt, bi|Drug/chem diab with diab mclr edema, resolved fol trtmt, bi +C4268010|T047|AB|E09.37X9|ICD10CM|Drug/chem diab with diab mclr edma, resolved fol trtmt, unsp|Drug/chem diab with diab mclr edma, resolved fol trtmt, unsp +C2873981|T047|PT|E09.39|ICD10CM|Drug or chemical induced diabetes mellitus with other diabetic ophthalmic complication|Drug or chemical induced diabetes mellitus with other diabetic ophthalmic complication +C2873981|T047|AB|E09.39|ICD10CM|Drug/chem diabetes w oth diabetic ophthalmic complication|Drug/chem diabetes w oth diabetic ophthalmic complication +C2873982|T047|HT|E09.4|ICD10CM|Drug or chemical induced diabetes mellitus with neurological complications|Drug or chemical induced diabetes mellitus with neurological complications +C2873982|T047|AB|E09.4|ICD10CM|Drug/chem diabetes mellitus w neurological complications|Drug/chem diabetes mellitus w neurological complications +C2873983|T047|AB|E09.40|ICD10CM|Drug/chem diabetes w neuro comp w diabetic neuropathy, unsp|Drug/chem diabetes w neuro comp w diabetic neuropathy, unsp +C2873984|T047|AB|E09.41|ICD10CM|Drug/chem diabetes w neuro comp w diabetic mononeuropathy|Drug/chem diabetes w neuro comp w diabetic mononeuropathy +C2873985|T046|ET|E09.42|ICD10CM|Drug or chemical induced diabetes mellitus with diabetic neuralgia|Drug or chemical induced diabetes mellitus with diabetic neuralgia +C2873986|T047|AB|E09.42|ICD10CM|Drug/chem diabetes w neurological comp w diabetic polyneurop|Drug/chem diabetes w neurological comp w diabetic polyneurop +C2873987|T046|ET|E09.43|ICD10CM|Drug or chemical induced diabetes mellitus with diabetic gastroparesis|Drug or chemical induced diabetes mellitus with diabetic gastroparesis +C2873988|T047|AB|E09.43|ICD10CM|Drug/chem diab w neuro comp w diab autonm (poly)neuropathy|Drug/chem diab w neuro comp w diab autonm (poly)neuropathy +C2873989|T047|PT|E09.44|ICD10CM|Drug or chemical induced diabetes mellitus with neurological complications with diabetic amyotrophy|Drug or chemical induced diabetes mellitus with neurological complications with diabetic amyotrophy +C2873989|T047|AB|E09.44|ICD10CM|Drug/chem diabetes w neurological comp w diabetic amyotrophy|Drug/chem diabetes w neurological comp w diabetic amyotrophy +C2873990|T047|AB|E09.49|ICD10CM|Drug/chem diabetes w neuro comp w oth diabetic neuro comp|Drug/chem diabetes w neuro comp w oth diabetic neuro comp +C2873991|T047|HT|E09.5|ICD10CM|Drug or chemical induced diabetes mellitus with circulatory complications|Drug or chemical induced diabetes mellitus with circulatory complications +C2873991|T047|AB|E09.5|ICD10CM|Drug/chem diabetes mellitus w circulatory complications|Drug/chem diabetes mellitus w circulatory complications +C2873992|T047|PT|E09.51|ICD10CM|Drug or chemical induced diabetes mellitus with diabetic peripheral angiopathy without gangrene|Drug or chemical induced diabetes mellitus with diabetic peripheral angiopathy without gangrene +C2873992|T047|AB|E09.51|ICD10CM|Drug/chem diabetes w diabetic prph angiopath w/o gangrene|Drug/chem diabetes w diabetic prph angiopath w/o gangrene +C2873993|T046|ET|E09.52|ICD10CM|Drug or chemical induced diabetes mellitus with diabetic gangrene|Drug or chemical induced diabetes mellitus with diabetic gangrene +C2873994|T047|PT|E09.52|ICD10CM|Drug or chemical induced diabetes mellitus with diabetic peripheral angiopathy with gangrene|Drug or chemical induced diabetes mellitus with diabetic peripheral angiopathy with gangrene +C2873994|T047|AB|E09.52|ICD10CM|Drug/chem diabetes w diabetic prph angiopath w gangrene|Drug/chem diabetes w diabetic prph angiopath w gangrene +C2873995|T047|PT|E09.59|ICD10CM|Drug or chemical induced diabetes mellitus with other circulatory complications|Drug or chemical induced diabetes mellitus with other circulatory complications +C2873995|T047|AB|E09.59|ICD10CM|Drug/chem diabetes mellitus w oth circulatory complications|Drug/chem diabetes mellitus w oth circulatory complications +C2874013|T047|HT|E09.6|ICD10CM|Drug or chemical induced diabetes mellitus with other specified complications|Drug or chemical induced diabetes mellitus with other specified complications +C2874013|T047|AB|E09.6|ICD10CM|Drug/chem diabetes mellitus w oth complications|Drug/chem diabetes mellitus w oth complications +C2873996|T047|HT|E09.61|ICD10CM|Drug or chemical induced diabetes mellitus with diabetic arthropathy|Drug or chemical induced diabetes mellitus with diabetic arthropathy +C2873996|T047|AB|E09.61|ICD10CM|Drug/chem diabetes mellitus w diabetic arthropathy|Drug/chem diabetes mellitus w diabetic arthropathy +C2873997|T046|ET|E09.610|ICD10CM|Drug or chemical induced diabetes mellitus with Charcôt's joints|Drug or chemical induced diabetes mellitus with Charcôt's joints +C2873998|T047|PT|E09.610|ICD10CM|Drug or chemical induced diabetes mellitus with diabetic neuropathic arthropathy|Drug or chemical induced diabetes mellitus with diabetic neuropathic arthropathy +C2873998|T047|AB|E09.610|ICD10CM|Drug/chem diabetes w diabetic neuropathic arthropathy|Drug/chem diabetes w diabetic neuropathic arthropathy +C2873999|T047|PT|E09.618|ICD10CM|Drug or chemical induced diabetes mellitus with other diabetic arthropathy|Drug or chemical induced diabetes mellitus with other diabetic arthropathy +C2873999|T047|AB|E09.618|ICD10CM|Drug/chem diabetes mellitus w oth diabetic arthropathy|Drug/chem diabetes mellitus w oth diabetic arthropathy +C2874000|T047|HT|E09.62|ICD10CM|Drug or chemical induced diabetes mellitus with skin complications|Drug or chemical induced diabetes mellitus with skin complications +C2874000|T047|AB|E09.62|ICD10CM|Drug/chem diabetes mellitus w skin complications|Drug/chem diabetes mellitus w skin complications +C2874002|T047|PT|E09.620|ICD10CM|Drug or chemical induced diabetes mellitus with diabetic dermatitis|Drug or chemical induced diabetes mellitus with diabetic dermatitis +C2874001|T046|ET|E09.620|ICD10CM|Drug or chemical induced diabetes mellitus with diabetic necrobiosis lipoidica|Drug or chemical induced diabetes mellitus with diabetic necrobiosis lipoidica +C2874002|T047|AB|E09.620|ICD10CM|Drug/chem diabetes mellitus w diabetic dermatitis|Drug/chem diabetes mellitus w diabetic dermatitis +C2874003|T047|AB|E09.621|ICD10CM|Drug or chemical induced diabetes mellitus with foot ulcer|Drug or chemical induced diabetes mellitus with foot ulcer +C2874003|T047|PT|E09.621|ICD10CM|Drug or chemical induced diabetes mellitus with foot ulcer|Drug or chemical induced diabetes mellitus with foot ulcer +C2874004|T047|AB|E09.622|ICD10CM|Drug or chemical induced diabetes mellitus w oth skin ulcer|Drug or chemical induced diabetes mellitus w oth skin ulcer +C2874004|T047|PT|E09.622|ICD10CM|Drug or chemical induced diabetes mellitus with other skin ulcer|Drug or chemical induced diabetes mellitus with other skin ulcer +C2874005|T047|PT|E09.628|ICD10CM|Drug or chemical induced diabetes mellitus with other skin complications|Drug or chemical induced diabetes mellitus with other skin complications +C2874005|T047|AB|E09.628|ICD10CM|Drug/chem diabetes mellitus w oth skin complications|Drug/chem diabetes mellitus w oth skin complications +C2874006|T047|HT|E09.63|ICD10CM|Drug or chemical induced diabetes mellitus with oral complications|Drug or chemical induced diabetes mellitus with oral complications +C2874006|T047|AB|E09.63|ICD10CM|Drug/chem diabetes mellitus w oral complications|Drug/chem diabetes mellitus w oral complications +C2874007|T047|PT|E09.630|ICD10CM|Drug or chemical induced diabetes mellitus with periodontal disease|Drug or chemical induced diabetes mellitus with periodontal disease +C2874007|T047|AB|E09.630|ICD10CM|Drug/chem diabetes mellitus w periodontal disease|Drug/chem diabetes mellitus w periodontal disease +C2874008|T047|PT|E09.638|ICD10CM|Drug or chemical induced diabetes mellitus with other oral complications|Drug or chemical induced diabetes mellitus with other oral complications +C2874008|T047|AB|E09.638|ICD10CM|Drug/chem diabetes mellitus w oth oral complications|Drug/chem diabetes mellitus w oth oral complications +C2874009|T047|AB|E09.64|ICD10CM|Drug or chemical induced diabetes mellitus with hypoglycemia|Drug or chemical induced diabetes mellitus with hypoglycemia +C2874009|T047|HT|E09.64|ICD10CM|Drug or chemical induced diabetes mellitus with hypoglycemia|Drug or chemical induced diabetes mellitus with hypoglycemia +C2874010|T047|PT|E09.641|ICD10CM|Drug or chemical induced diabetes mellitus with hypoglycemia with coma|Drug or chemical induced diabetes mellitus with hypoglycemia with coma +C2874010|T047|AB|E09.641|ICD10CM|Drug/chem diabetes mellitus w hypoglycemia w coma|Drug/chem diabetes mellitus w hypoglycemia w coma +C2874011|T047|PT|E09.649|ICD10CM|Drug or chemical induced diabetes mellitus with hypoglycemia without coma|Drug or chemical induced diabetes mellitus with hypoglycemia without coma +C2874011|T047|AB|E09.649|ICD10CM|Drug/chem diabetes mellitus w hypoglycemia w/o coma|Drug/chem diabetes mellitus w hypoglycemia w/o coma +C2874012|T047|AB|E09.65|ICD10CM|Drug or chemical induced diabetes mellitus w hyperglycemia|Drug or chemical induced diabetes mellitus w hyperglycemia +C2874012|T047|PT|E09.65|ICD10CM|Drug or chemical induced diabetes mellitus with hyperglycemia|Drug or chemical induced diabetes mellitus with hyperglycemia +C2874013|T047|PT|E09.69|ICD10CM|Drug or chemical induced diabetes mellitus with other specified complication|Drug or chemical induced diabetes mellitus with other specified complication +C2874013|T047|AB|E09.69|ICD10CM|Drug/chem diabetes mellitus w oth complication|Drug/chem diabetes mellitus w oth complication +C2874014|T047|PT|E09.8|ICD10CM|Drug or chemical induced diabetes mellitus with unspecified complications|Drug or chemical induced diabetes mellitus with unspecified complications +C2874014|T047|AB|E09.8|ICD10CM|Drug/chem diabetes mellitus w unsp complications|Drug/chem diabetes mellitus w unsp complications +C2874015|T047|AB|E09.9|ICD10CM|Drug or chemical induced diabetes mellitus w/o complications|Drug or chemical induced diabetes mellitus w/o complications +C2874015|T047|PT|E09.9|ICD10CM|Drug or chemical induced diabetes mellitus without complications|Drug or chemical induced diabetes mellitus without complications +C0011854|T047|ET|E10|ICD10CM|brittle diabetes (mellitus)|brittle diabetes (mellitus) +C4290090|T047|ET|E10|ICD10CM|diabetes (mellitus) due to autoimmune process|diabetes (mellitus) due to autoimmune process +C4290091|T047|ET|E10|ICD10CM|diabetes (mellitus) due to immune mediated pancreatic islet beta-cell destruction|diabetes (mellitus) due to immune mediated pancreatic islet beta-cell destruction +C4290092|T047|ET|E10|ICD10CM|idiopathic diabetes (mellitus)|idiopathic diabetes (mellitus) +C0011854|T047|HT|E10|ICD10|Insulin-dependent diabetes mellitus|Insulin-dependent diabetes mellitus +C0011854|T047|ET|E10|ICD10CM|juvenile onset diabetes (mellitus)|juvenile onset diabetes (mellitus) +C3837958|T047|ET|E10|ICD10CM|ketosis-prone diabetes (mellitus)|ketosis-prone diabetes (mellitus) +C0011854|T047|HT|E10|ICD10CM|Type 1 diabetes mellitus|Type 1 diabetes mellitus +C0011854|T047|AB|E10|ICD10CM|Type 1 diabetes mellitus|Type 1 diabetes mellitus +C0011849|T047|HT|E10-E14.9|ICD10|Diabetes mellitus|Diabetes mellitus +C0494279|T047|PT|E10.0|ICD10|Insulin-dependent diabetes mellitus with coma|Insulin-dependent diabetes mellitus with coma +C0342294|T047|PT|E10.1|ICD10|Insulin-dependent diabetes mellitus with ketoacidosis|Insulin-dependent diabetes mellitus with ketoacidosis +C0342294|T047|AB|E10.1|ICD10CM|Type 1 diabetes mellitus with ketoacidosis|Type 1 diabetes mellitus with ketoacidosis +C0342294|T047|HT|E10.1|ICD10CM|Type 1 diabetes mellitus with ketoacidosis|Type 1 diabetes mellitus with ketoacidosis +C0836987|T047|AB|E10.10|ICD10CM|Type 1 diabetes mellitus with ketoacidosis without coma|Type 1 diabetes mellitus with ketoacidosis without coma +C0836987|T047|PT|E10.10|ICD10CM|Type 1 diabetes mellitus with ketoacidosis without coma|Type 1 diabetes mellitus with ketoacidosis without coma +C0836988|T047|AB|E10.11|ICD10CM|Type 1 diabetes mellitus with ketoacidosis with coma|Type 1 diabetes mellitus with ketoacidosis with coma +C0836988|T047|PT|E10.11|ICD10CM|Type 1 diabetes mellitus with ketoacidosis with coma|Type 1 diabetes mellitus with ketoacidosis with coma +C0348913|T047|PT|E10.2|ICD10|Insulin-dependent diabetes mellitus with renal complications|Insulin-dependent diabetes mellitus with renal complications +C2874020|T047|AB|E10.2|ICD10CM|Type 1 diabetes mellitus with kidney complications|Type 1 diabetes mellitus with kidney complications +C2874020|T047|HT|E10.2|ICD10CM|Type 1 diabetes mellitus with kidney complications|Type 1 diabetes mellitus with kidney complications +C0836995|T047|AB|E10.21|ICD10CM|Type 1 diabetes mellitus with diabetic nephropathy|Type 1 diabetes mellitus with diabetic nephropathy +C0836995|T047|PT|E10.21|ICD10CM|Type 1 diabetes mellitus with diabetic nephropathy|Type 1 diabetes mellitus with diabetic nephropathy +C2874022|T047|ET|E10.21|ICD10CM|Type 1 diabetes mellitus with intercapillary glomerulosclerosis|Type 1 diabetes mellitus with intercapillary glomerulosclerosis +C2874023|T047|ET|E10.21|ICD10CM|Type 1 diabetes mellitus with intracapillary glomerulonephrosis|Type 1 diabetes mellitus with intracapillary glomerulonephrosis +C2874021|T047|ET|E10.21|ICD10CM|Type 1 diabetes mellitus with Kimmelstiel-Wilson disease|Type 1 diabetes mellitus with Kimmelstiel-Wilson disease +C2874025|T047|AB|E10.22|ICD10CM|Type 1 diabetes mellitus w diabetic chronic kidney disease|Type 1 diabetes mellitus w diabetic chronic kidney disease +C2874025|T047|PT|E10.22|ICD10CM|Type 1 diabetes mellitus with diabetic chronic kidney disease|Type 1 diabetes mellitus with diabetic chronic kidney disease +C2874027|T047|AB|E10.29|ICD10CM|Type 1 diabetes mellitus w oth diabetic kidney complication|Type 1 diabetes mellitus w oth diabetic kidney complication +C2874027|T047|PT|E10.29|ICD10CM|Type 1 diabetes mellitus with other diabetic kidney complication|Type 1 diabetes mellitus with other diabetic kidney complication +C2874026|T047|ET|E10.29|ICD10CM|Type 1 diabetes mellitus with renal tubular degeneration|Type 1 diabetes mellitus with renal tubular degeneration +C0348914|T047|PT|E10.3|ICD10|Insulin-dependent diabetes mellitus with ophthalmic complications|Insulin-dependent diabetes mellitus with ophthalmic complications +C0348914|T047|AB|E10.3|ICD10CM|Type 1 diabetes mellitus with ophthalmic complications|Type 1 diabetes mellitus with ophthalmic complications +C0348914|T047|HT|E10.3|ICD10CM|Type 1 diabetes mellitus with ophthalmic complications|Type 1 diabetes mellitus with ophthalmic complications +C2874028|T047|AB|E10.31|ICD10CM|Type 1 diabetes mellitus with unsp diabetic retinopathy|Type 1 diabetes mellitus with unsp diabetic retinopathy +C2874028|T047|HT|E10.31|ICD10CM|Type 1 diabetes mellitus with unspecified diabetic retinopathy|Type 1 diabetes mellitus with unspecified diabetic retinopathy +C2874029|T047|PT|E10.311|ICD10CM|Type 1 diabetes mellitus with unspecified diabetic retinopathy with macular edema|Type 1 diabetes mellitus with unspecified diabetic retinopathy with macular edema +C2874029|T047|AB|E10.311|ICD10CM|Type 1 diabetes w unsp diabetic retinopathy w macular edema|Type 1 diabetes w unsp diabetic retinopathy w macular edema +C2874030|T047|PT|E10.319|ICD10CM|Type 1 diabetes mellitus with unspecified diabetic retinopathy without macular edema|Type 1 diabetes mellitus with unspecified diabetic retinopathy without macular edema +C2874030|T047|AB|E10.319|ICD10CM|Type 1 diabetes w unsp diabetic rtnop w/o macular edema|Type 1 diabetes w unsp diabetic rtnop w/o macular edema +C2874032|T047|HT|E10.32|ICD10CM|Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy|Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy +C2874031|T047|ET|E10.32|ICD10CM|Type 1 diabetes mellitus with nonproliferative diabetic retinopathy NOS|Type 1 diabetes mellitus with nonproliferative diabetic retinopathy NOS +C2874032|T047|AB|E10.32|ICD10CM|Type 1 diabetes w mild nonproliferative diabetic retinopathy|Type 1 diabetes w mild nonproliferative diabetic retinopathy +C2874033|T047|AB|E10.321|ICD10CM|Type 1 diab w mild nonprlf diabetic rtnop w macular edema|Type 1 diab w mild nonprlf diabetic rtnop w macular edema +C2874033|T047|HT|E10.321|ICD10CM|Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema|Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema +C4268011|T047|AB|E10.3211|ICD10CM|Type 1 diab with mild nonp rtnop with macular edema, r eye|Type 1 diab with mild nonp rtnop with macular edema, r eye +C4268012|T047|AB|E10.3212|ICD10CM|Type 1 diab with mild nonp rtnop with macular edema, l eye|Type 1 diab with mild nonp rtnop with macular edema, l eye +C4268013|T047|AB|E10.3213|ICD10CM|Type 1 diabetes with mild nonp rtnop with macular edema, bi|Type 1 diabetes with mild nonp rtnop with macular edema, bi +C4268014|T047|AB|E10.3219|ICD10CM|Type 1 diab with mild nonp rtnop with macular edema, unsp|Type 1 diab with mild nonp rtnop with macular edema, unsp +C2874034|T047|AB|E10.329|ICD10CM|Type 1 diab w mild nonprlf diabetic rtnop w/o macular edema|Type 1 diab w mild nonprlf diabetic rtnop w/o macular edema +C2874034|T047|HT|E10.329|ICD10CM|Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema|Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema +C4268015|T047|AB|E10.3291|ICD10CM|Type 1 diab with mild nonp rtnop without mclr edema, r eye|Type 1 diab with mild nonp rtnop without mclr edema, r eye +C4268016|T047|AB|E10.3292|ICD10CM|Type 1 diab with mild nonp rtnop without mclr edema, l eye|Type 1 diab with mild nonp rtnop without mclr edema, l eye +C4268017|T047|AB|E10.3293|ICD10CM|Type 1 diab with mild nonp rtnop without macular edema, bi|Type 1 diab with mild nonp rtnop without macular edema, bi +C4268018|T047|AB|E10.3299|ICD10CM|Type 1 diab with mild nonp rtnop without macular edema, unsp|Type 1 diab with mild nonp rtnop without macular edema, unsp +C2874035|T047|HT|E10.33|ICD10CM|Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy|Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy +C2874035|T047|AB|E10.33|ICD10CM|Type 1 diabetes w moderate nonprlf diabetic retinopathy|Type 1 diabetes w moderate nonprlf diabetic retinopathy +C2874036|T047|AB|E10.331|ICD10CM|Type 1 diab w moderate nonprlf diab rtnop w macular edema|Type 1 diab w moderate nonprlf diab rtnop w macular edema +C2874036|T047|HT|E10.331|ICD10CM|Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema|Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema +C4268019|T047|AB|E10.3311|ICD10CM|Type 1 diab with mod nonp rtnop with macular edema, r eye|Type 1 diab with mod nonp rtnop with macular edema, r eye +C4268020|T047|AB|E10.3312|ICD10CM|Type 1 diab with mod nonp rtnop with macular edema, l eye|Type 1 diab with mod nonp rtnop with macular edema, l eye +C4268021|T047|AB|E10.3313|ICD10CM|Type 1 diab with moderate nonp rtnop with macular edema, bi|Type 1 diab with moderate nonp rtnop with macular edema, bi +C4268022|T047|AB|E10.3319|ICD10CM|Type 1 diab with mod nonp rtnop with macular edema, unsp|Type 1 diab with mod nonp rtnop with macular edema, unsp +C2874037|T047|AB|E10.339|ICD10CM|Type 1 diab w moderate nonprlf diab rtnop w/o macular edema|Type 1 diab w moderate nonprlf diab rtnop w/o macular edema +C2874037|T047|HT|E10.339|ICD10CM|Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema|Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema +C4268023|T047|AB|E10.3391|ICD10CM|Type 1 diab with mod nonp rtnop without macular edema, r eye|Type 1 diab with mod nonp rtnop without macular edema, r eye +C4268024|T047|AB|E10.3392|ICD10CM|Type 1 diab with mod nonp rtnop without macular edema, l eye|Type 1 diab with mod nonp rtnop without macular edema, l eye +C4268025|T047|AB|E10.3393|ICD10CM|Type 1 diab with mod nonp rtnop without macular edema, bi|Type 1 diab with mod nonp rtnop without macular edema, bi +C4268026|T047|AB|E10.3399|ICD10CM|Type 1 diab with mod nonp rtnop without macular edema, unsp|Type 1 diab with mod nonp rtnop without macular edema, unsp +C2874038|T047|HT|E10.34|ICD10CM|Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy|Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy +C2874038|T047|AB|E10.34|ICD10CM|Type 1 diabetes w severe nonprlf diabetic retinopathy|Type 1 diabetes w severe nonprlf diabetic retinopathy +C2874039|T047|AB|E10.341|ICD10CM|Type 1 diab w severe nonprlf diabetic rtnop w macular edema|Type 1 diab w severe nonprlf diabetic rtnop w macular edema +C2874039|T047|HT|E10.341|ICD10CM|Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema|Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema +C4268027|T047|AB|E10.3411|ICD10CM|Type 1 diab with severe nonp rtnop with macular edema, r eye|Type 1 diab with severe nonp rtnop with macular edema, r eye +C4268028|T047|AB|E10.3412|ICD10CM|Type 1 diab with severe nonp rtnop with macular edema, l eye|Type 1 diab with severe nonp rtnop with macular edema, l eye +C4268029|T047|AB|E10.3413|ICD10CM|Type 1 diab with severe nonp rtnop with macular edema, bi|Type 1 diab with severe nonp rtnop with macular edema, bi +C4268030|T047|AB|E10.3419|ICD10CM|Type 1 diab with severe nonp rtnop with macular edema, unsp|Type 1 diab with severe nonp rtnop with macular edema, unsp +C2874040|T047|AB|E10.349|ICD10CM|Type 1 diab w severe nonprlf diab rtnop w/o macular edema|Type 1 diab w severe nonprlf diab rtnop w/o macular edema +C2874040|T047|HT|E10.349|ICD10CM|Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema|Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema +C4268031|T047|AB|E10.3491|ICD10CM|Type 1 diab with severe nonp rtnop without mclr edema, r eye|Type 1 diab with severe nonp rtnop without mclr edema, r eye +C4268032|T047|AB|E10.3492|ICD10CM|Type 1 diab with severe nonp rtnop without mclr edema, l eye|Type 1 diab with severe nonp rtnop without mclr edema, l eye +C4268033|T047|AB|E10.3493|ICD10CM|Type 1 diab with severe nonp rtnop without macular edema, bi|Type 1 diab with severe nonp rtnop without macular edema, bi +C4268034|T047|AB|E10.3499|ICD10CM|Type 1 diab with severe nonp rtnop without mclr edema, unsp|Type 1 diab with severe nonp rtnop without mclr edema, unsp +C2874041|T047|HT|E10.35|ICD10CM|Type 1 diabetes mellitus with proliferative diabetic retinopathy|Type 1 diabetes mellitus with proliferative diabetic retinopathy +C2874041|T047|AB|E10.35|ICD10CM|Type 1 diabetes w proliferative diabetic retinopathy|Type 1 diabetes w proliferative diabetic retinopathy +C2874042|T047|HT|E10.351|ICD10CM|Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema|Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema +C2874042|T047|AB|E10.351|ICD10CM|Type 1 diabetes w prolif diabetic rtnop w macular edema|Type 1 diabetes w prolif diabetic rtnop w macular edema +C4268035|T047|AB|E10.3511|ICD10CM|Type 1 diab with prolif diab rtnop with macular edema, r eye|Type 1 diab with prolif diab rtnop with macular edema, r eye +C4268035|T047|PT|E10.3511|ICD10CM|Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye|Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye +C4268036|T047|AB|E10.3512|ICD10CM|Type 1 diab with prolif diab rtnop with macular edema, l eye|Type 1 diab with prolif diab rtnop with macular edema, l eye +C4268036|T047|PT|E10.3512|ICD10CM|Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye|Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye +C4268037|T047|AB|E10.3513|ICD10CM|Type 1 diab with prolif diab rtnop with macular edema, bi|Type 1 diab with prolif diab rtnop with macular edema, bi +C4268037|T047|PT|E10.3513|ICD10CM|Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral|Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral +C4268038|T047|AB|E10.3519|ICD10CM|Type 1 diab with prolif diab rtnop with macular edema, unsp|Type 1 diab with prolif diab rtnop with macular edema, unsp +C4268038|T047|PT|E10.3519|ICD10CM|Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye|Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye +C4268039|T047|AB|E10.352|ICD10CM|Type 1 diab with prolif diab rtnop with trctn dtch macula|Type 1 diab with prolif diab rtnop with trctn dtch macula +C4268040|T047|AB|E10.3521|ICD10CM|Type 1 diab w prolif diab rtnop w trctn dtch macula, r eye|Type 1 diab w prolif diab rtnop w trctn dtch macula, r eye +C4268041|T047|AB|E10.3522|ICD10CM|Type 1 diab w prolif diab rtnop w trctn dtch macula, l eye|Type 1 diab w prolif diab rtnop w trctn dtch macula, l eye +C4268042|T047|AB|E10.3523|ICD10CM|Type 1 diab w prolif diab rtnop with trctn dtch macula, bi|Type 1 diab w prolif diab rtnop with trctn dtch macula, bi +C4268043|T047|AB|E10.3529|ICD10CM|Type 1 diab w prolif diab rtnop with trctn dtch macula, unsp|Type 1 diab w prolif diab rtnop with trctn dtch macula, unsp +C4268044|T047|AB|E10.353|ICD10CM|Type 1 diab with prolif diab rtnop with trctn dtch n-mcla|Type 1 diab with prolif diab rtnop with trctn dtch n-mcla +C4268045|T047|AB|E10.3531|ICD10CM|Type 1 diab w prolif diab rtnop w trctn dtch n-mcla, r eye|Type 1 diab w prolif diab rtnop w trctn dtch n-mcla, r eye +C4268046|T047|AB|E10.3532|ICD10CM|Type 1 diab w prolif diab rtnop w trctn dtch n-mcla, l eye|Type 1 diab w prolif diab rtnop w trctn dtch n-mcla, l eye +C4268047|T047|AB|E10.3533|ICD10CM|Type 1 diab w prolif diab rtnop with trctn dtch n-mcla, bi|Type 1 diab w prolif diab rtnop with trctn dtch n-mcla, bi +C4268048|T047|AB|E10.3539|ICD10CM|Type 1 diab w prolif diab rtnop with trctn dtch n-mcla, unsp|Type 1 diab w prolif diab rtnop with trctn dtch n-mcla, unsp +C4268049|T047|AB|E10.354|ICD10CM|Type 1 diabetes with prolif diabetic rtnop with comb detach|Type 1 diabetes with prolif diabetic rtnop with comb detach +C4268050|T047|AB|E10.3541|ICD10CM|Type 1 diab with prolif diab rtnop with comb detach, r eye|Type 1 diab with prolif diab rtnop with comb detach, r eye +C4268051|T047|AB|E10.3542|ICD10CM|Type 1 diab with prolif diab rtnop with comb detach, l eye|Type 1 diab with prolif diab rtnop with comb detach, l eye +C4268052|T047|AB|E10.3543|ICD10CM|Type 1 diab with prolif diabetic rtnop with comb detach, bi|Type 1 diab with prolif diabetic rtnop with comb detach, bi +C4268053|T047|AB|E10.3549|ICD10CM|Type 1 diab with prolif diab rtnop with comb detach, unsp|Type 1 diab with prolif diab rtnop with comb detach, unsp +C4268054|T047|HT|E10.355|ICD10CM|Type 1 diabetes mellitus with stable proliferative diabetic retinopathy|Type 1 diabetes mellitus with stable proliferative diabetic retinopathy +C4268054|T047|AB|E10.355|ICD10CM|Type 1 diabetes with stable prolif diabetic retinopathy|Type 1 diabetes with stable prolif diabetic retinopathy +C4268055|T047|PT|E10.3551|ICD10CM|Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, right eye|Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, right eye +C4268055|T047|AB|E10.3551|ICD10CM|Type 1 diabetes with stable prolif diabetic rtnop, right eye|Type 1 diabetes with stable prolif diabetic rtnop, right eye +C4268056|T047|PT|E10.3552|ICD10CM|Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, left eye|Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, left eye +C4268056|T047|AB|E10.3552|ICD10CM|Type 1 diabetes with stable prolif diabetic rtnop, left eye|Type 1 diabetes with stable prolif diabetic rtnop, left eye +C4268057|T047|PT|E10.3553|ICD10CM|Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, bilateral|Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, bilateral +C4268057|T047|AB|E10.3553|ICD10CM|Type 1 diabetes with stable prolif diabetic rtnop, bilateral|Type 1 diabetes with stable prolif diabetic rtnop, bilateral +C4268058|T047|PT|E10.3559|ICD10CM|Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye|Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye +C4268058|T047|AB|E10.3559|ICD10CM|Type 1 diabetes with stable prolif diabetic rtnop, unsp|Type 1 diabetes with stable prolif diabetic rtnop, unsp +C2874043|T047|HT|E10.359|ICD10CM|Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema|Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema +C2874043|T047|AB|E10.359|ICD10CM|Type 1 diabetes w prolif diabetic rtnop w/o macular edema|Type 1 diabetes w prolif diabetic rtnop w/o macular edema +C4268059|T047|AB|E10.3591|ICD10CM|Type 1 diab with prolif diab rtnop without mclr edema, r eye|Type 1 diab with prolif diab rtnop without mclr edema, r eye +C4268059|T047|PT|E10.3591|ICD10CM|Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye|Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye +C4268060|T047|AB|E10.3592|ICD10CM|Type 1 diab with prolif diab rtnop without mclr edema, l eye|Type 1 diab with prolif diab rtnop without mclr edema, l eye +C4268060|T047|PT|E10.3592|ICD10CM|Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye|Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye +C4268061|T047|AB|E10.3593|ICD10CM|Type 1 diab with prolif diab rtnop without macular edema, bi|Type 1 diab with prolif diab rtnop without macular edema, bi +C4268061|T047|PT|E10.3593|ICD10CM|Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral|Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral +C4268062|T047|AB|E10.3599|ICD10CM|Type 1 diab with prolif diab rtnop without mclr edema, unsp|Type 1 diab with prolif diab rtnop without mclr edema, unsp +C0837004|T047|PT|E10.36|ICD10CM|Type 1 diabetes mellitus with diabetic cataract|Type 1 diabetes mellitus with diabetic cataract +C0837004|T047|AB|E10.36|ICD10CM|Type 1 diabetes mellitus with diabetic cataract|Type 1 diabetes mellitus with diabetic cataract +C4268063|T047|AB|E10.37|ICD10CM|Type 1 diab with diabetic macular edema, resolved fol trtmt|Type 1 diab with diabetic macular edema, resolved fol trtmt +C4268063|T047|HT|E10.37|ICD10CM|Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment|Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment +C4268064|T047|AB|E10.37X1|ICD10CM|Type 1 diab with diab mclr edema, resolved fol trtmt, r eye|Type 1 diab with diab mclr edema, resolved fol trtmt, r eye +C4268064|T047|PT|E10.37X1|ICD10CM|Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, right eye|Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, right eye +C4268065|T047|AB|E10.37X2|ICD10CM|Type 1 diab with diab mclr edema, resolved fol trtmt, l eye|Type 1 diab with diab mclr edema, resolved fol trtmt, l eye +C4268065|T047|PT|E10.37X2|ICD10CM|Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, left eye|Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, left eye +C4268066|T047|AB|E10.37X3|ICD10CM|Type 1 diab with diab macular edema, resolved fol trtmt, bi|Type 1 diab with diab macular edema, resolved fol trtmt, bi +C4268066|T047|PT|E10.37X3|ICD10CM|Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral|Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral +C4268067|T047|AB|E10.37X9|ICD10CM|Type 1 diab with diab mclr edema, resolved fol trtmt, unsp|Type 1 diab with diab mclr edema, resolved fol trtmt, unsp +C4268067|T047|PT|E10.37X9|ICD10CM|Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye|Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye +C2874044|T047|PT|E10.39|ICD10CM|Type 1 diabetes mellitus with other diabetic ophthalmic complication|Type 1 diabetes mellitus with other diabetic ophthalmic complication +C2874044|T047|AB|E10.39|ICD10CM|Type 1 diabetes w oth diabetic ophthalmic complication|Type 1 diabetes w oth diabetic ophthalmic complication +C0348915|T047|PT|E10.4|ICD10|Insulin-dependent diabetes mellitus with neurological complications|Insulin-dependent diabetes mellitus with neurological complications +C0348915|T047|AB|E10.4|ICD10CM|Type 1 diabetes mellitus with neurological complications|Type 1 diabetes mellitus with neurological complications +C0348915|T047|HT|E10.4|ICD10CM|Type 1 diabetes mellitus with neurological complications|Type 1 diabetes mellitus with neurological complications +C2874045|T047|AB|E10.40|ICD10CM|Type 1 diabetes mellitus with diabetic neuropathy, unsp|Type 1 diabetes mellitus with diabetic neuropathy, unsp +C2874045|T047|PT|E10.40|ICD10CM|Type 1 diabetes mellitus with diabetic neuropathy, unspecified|Type 1 diabetes mellitus with diabetic neuropathy, unspecified +C0837007|T047|PT|E10.41|ICD10CM|Type 1 diabetes mellitus with diabetic mononeuropathy|Type 1 diabetes mellitus with diabetic mononeuropathy +C0837007|T047|AB|E10.41|ICD10CM|Type 1 diabetes mellitus with diabetic mononeuropathy|Type 1 diabetes mellitus with diabetic mononeuropathy +C2874046|T047|ET|E10.42|ICD10CM|Type 1 diabetes mellitus with diabetic neuralgia|Type 1 diabetes mellitus with diabetic neuralgia +C0837008|T047|PT|E10.42|ICD10CM|Type 1 diabetes mellitus with diabetic polyneuropathy|Type 1 diabetes mellitus with diabetic polyneuropathy +C0837008|T047|AB|E10.42|ICD10CM|Type 1 diabetes mellitus with diabetic polyneuropathy|Type 1 diabetes mellitus with diabetic polyneuropathy +C2874048|T047|PT|E10.43|ICD10CM|Type 1 diabetes mellitus with diabetic autonomic (poly)neuropathy|Type 1 diabetes mellitus with diabetic autonomic (poly)neuropathy +C2874047|T047|ET|E10.43|ICD10CM|Type 1 diabetes mellitus with diabetic gastroparesis|Type 1 diabetes mellitus with diabetic gastroparesis +C2874048|T047|AB|E10.43|ICD10CM|Type 1 diabetes w diabetic autonomic (poly)neuropathy|Type 1 diabetes w diabetic autonomic (poly)neuropathy +C2874049|T047|AB|E10.44|ICD10CM|Type 1 diabetes mellitus with diabetic amyotrophy|Type 1 diabetes mellitus with diabetic amyotrophy +C2874049|T047|PT|E10.44|ICD10CM|Type 1 diabetes mellitus with diabetic amyotrophy|Type 1 diabetes mellitus with diabetic amyotrophy +C2874050|T047|PT|E10.49|ICD10CM|Type 1 diabetes mellitus with other diabetic neurological complication|Type 1 diabetes mellitus with other diabetic neurological complication +C2874050|T047|AB|E10.49|ICD10CM|Type 1 diabetes w oth diabetic neurological complication|Type 1 diabetes w oth diabetic neurological complication +C0154182|T047|PT|E10.5|ICD10|Insulin-dependent diabetes mellitus with peripheral circulatory complications|Insulin-dependent diabetes mellitus with peripheral circulatory complications +C0837011|T047|AB|E10.5|ICD10CM|Type 1 diabetes mellitus with circulatory complications|Type 1 diabetes mellitus with circulatory complications +C0837011|T047|HT|E10.5|ICD10CM|Type 1 diabetes mellitus with circulatory complications|Type 1 diabetes mellitus with circulatory complications +C2874051|T047|PT|E10.51|ICD10CM|Type 1 diabetes mellitus with diabetic peripheral angiopathy without gangrene|Type 1 diabetes mellitus with diabetic peripheral angiopathy without gangrene +C2874051|T047|AB|E10.51|ICD10CM|Type 1 diabetes w diabetic peripheral angiopath w/o gangrene|Type 1 diabetes w diabetic peripheral angiopath w/o gangrene +C2874052|T047|ET|E10.52|ICD10CM|Type 1 diabetes mellitus with diabetic gangrene|Type 1 diabetes mellitus with diabetic gangrene +C2874053|T047|PT|E10.52|ICD10CM|Type 1 diabetes mellitus with diabetic peripheral angiopathy with gangrene|Type 1 diabetes mellitus with diabetic peripheral angiopathy with gangrene +C2874053|T047|AB|E10.52|ICD10CM|Type 1 diabetes w diabetic peripheral angiopathy w gangrene|Type 1 diabetes w diabetic peripheral angiopathy w gangrene +C2874054|T047|AB|E10.59|ICD10CM|Type 1 diabetes mellitus with oth circulatory complications|Type 1 diabetes mellitus with oth circulatory complications +C2874054|T047|PT|E10.59|ICD10CM|Type 1 diabetes mellitus with other circulatory complications|Type 1 diabetes mellitus with other circulatory complications +C0342261|T047|PT|E10.6|ICD10|Insulin-dependent diabetes mellitus with other specified complications|Insulin-dependent diabetes mellitus with other specified complications +C0342261|T047|AB|E10.6|ICD10CM|Type 1 diabetes mellitus with other specified complications|Type 1 diabetes mellitus with other specified complications +C0342261|T047|HT|E10.6|ICD10CM|Type 1 diabetes mellitus with other specified complications|Type 1 diabetes mellitus with other specified complications +C2874055|T047|AB|E10.61|ICD10CM|Type 1 diabetes mellitus with diabetic arthropathy|Type 1 diabetes mellitus with diabetic arthropathy +C2874055|T047|HT|E10.61|ICD10CM|Type 1 diabetes mellitus with diabetic arthropathy|Type 1 diabetes mellitus with diabetic arthropathy +C2874057|T047|AB|E10.610|ICD10CM|Type 1 diabetes mellitus w diabetic neuropathic arthropathy|Type 1 diabetes mellitus w diabetic neuropathic arthropathy +C2874056|T047|ET|E10.610|ICD10CM|Type 1 diabetes mellitus with Charcôt's joints|Type 1 diabetes mellitus with Charcôt's joints +C2874057|T047|PT|E10.610|ICD10CM|Type 1 diabetes mellitus with diabetic neuropathic arthropathy|Type 1 diabetes mellitus with diabetic neuropathic arthropathy +C2874058|T047|AB|E10.618|ICD10CM|Type 1 diabetes mellitus with other diabetic arthropathy|Type 1 diabetes mellitus with other diabetic arthropathy +C2874058|T047|PT|E10.618|ICD10CM|Type 1 diabetes mellitus with other diabetic arthropathy|Type 1 diabetes mellitus with other diabetic arthropathy +C2874059|T047|AB|E10.62|ICD10CM|Type 1 diabetes mellitus with skin complications|Type 1 diabetes mellitus with skin complications +C2874059|T047|HT|E10.62|ICD10CM|Type 1 diabetes mellitus with skin complications|Type 1 diabetes mellitus with skin complications +C2874061|T047|PT|E10.620|ICD10CM|Type 1 diabetes mellitus with diabetic dermatitis|Type 1 diabetes mellitus with diabetic dermatitis +C2874061|T047|AB|E10.620|ICD10CM|Type 1 diabetes mellitus with diabetic dermatitis|Type 1 diabetes mellitus with diabetic dermatitis +C2874060|T047|ET|E10.620|ICD10CM|Type 1 diabetes mellitus with diabetic necrobiosis lipoidica|Type 1 diabetes mellitus with diabetic necrobiosis lipoidica +C2874062|T047|PT|E10.621|ICD10CM|Type 1 diabetes mellitus with foot ulcer|Type 1 diabetes mellitus with foot ulcer +C2874062|T047|AB|E10.621|ICD10CM|Type 1 diabetes mellitus with foot ulcer|Type 1 diabetes mellitus with foot ulcer +C2874063|T047|AB|E10.622|ICD10CM|Type 1 diabetes mellitus with other skin ulcer|Type 1 diabetes mellitus with other skin ulcer +C2874063|T047|PT|E10.622|ICD10CM|Type 1 diabetes mellitus with other skin ulcer|Type 1 diabetes mellitus with other skin ulcer +C2874064|T047|AB|E10.628|ICD10CM|Type 1 diabetes mellitus with other skin complications|Type 1 diabetes mellitus with other skin complications +C2874064|T047|PT|E10.628|ICD10CM|Type 1 diabetes mellitus with other skin complications|Type 1 diabetes mellitus with other skin complications +C2874065|T047|AB|E10.63|ICD10CM|Type 1 diabetes mellitus with oral complications|Type 1 diabetes mellitus with oral complications +C2874065|T047|HT|E10.63|ICD10CM|Type 1 diabetes mellitus with oral complications|Type 1 diabetes mellitus with oral complications +C2874066|T047|PT|E10.630|ICD10CM|Type 1 diabetes mellitus with periodontal disease|Type 1 diabetes mellitus with periodontal disease +C2874066|T047|AB|E10.630|ICD10CM|Type 1 diabetes mellitus with periodontal disease|Type 1 diabetes mellitus with periodontal disease +C2874067|T047|AB|E10.638|ICD10CM|Type 1 diabetes mellitus with other oral complications|Type 1 diabetes mellitus with other oral complications +C2874067|T047|PT|E10.638|ICD10CM|Type 1 diabetes mellitus with other oral complications|Type 1 diabetes mellitus with other oral complications +C0837018|T047|HT|E10.64|ICD10CM|Type 1 diabetes mellitus with hypoglycemia|Type 1 diabetes mellitus with hypoglycemia +C0837018|T047|AB|E10.64|ICD10CM|Type 1 diabetes mellitus with hypoglycemia|Type 1 diabetes mellitus with hypoglycemia +C2874068|T047|AB|E10.641|ICD10CM|Type 1 diabetes mellitus with hypoglycemia with coma|Type 1 diabetes mellitus with hypoglycemia with coma +C2874068|T047|PT|E10.641|ICD10CM|Type 1 diabetes mellitus with hypoglycemia with coma|Type 1 diabetes mellitus with hypoglycemia with coma +C2874069|T047|AB|E10.649|ICD10CM|Type 1 diabetes mellitus with hypoglycemia without coma|Type 1 diabetes mellitus with hypoglycemia without coma +C2874069|T047|PT|E10.649|ICD10CM|Type 1 diabetes mellitus with hypoglycemia without coma|Type 1 diabetes mellitus with hypoglycemia without coma +C2874070|T047|AB|E10.65|ICD10CM|Type 1 diabetes mellitus with hyperglycemia|Type 1 diabetes mellitus with hyperglycemia +C2874070|T047|PT|E10.65|ICD10CM|Type 1 diabetes mellitus with hyperglycemia|Type 1 diabetes mellitus with hyperglycemia +C0342261|T047|PT|E10.69|ICD10CM|Type 1 diabetes mellitus with other specified complication|Type 1 diabetes mellitus with other specified complication +C0342261|T047|AB|E10.69|ICD10CM|Type 1 diabetes mellitus with other specified complication|Type 1 diabetes mellitus with other specified complication +C0348916|T047|PT|E10.7|ICD10|Insulin-dependent diabetes mellitus with multiple complications|Insulin-dependent diabetes mellitus with multiple complications +C1299613|T047|PT|E10.8|ICD10|Insulin-dependent diabetes mellitus with unspecified complications|Insulin-dependent diabetes mellitus with unspecified complications +C1299613|T047|AB|E10.8|ICD10CM|Type 1 diabetes mellitus with unspecified complications|Type 1 diabetes mellitus with unspecified complications +C1299613|T047|PT|E10.8|ICD10CM|Type 1 diabetes mellitus with unspecified complications|Type 1 diabetes mellitus with unspecified complications +C0494284|T047|PT|E10.9|ICD10|Insulin-dependent diabetes mellitus without complications|Insulin-dependent diabetes mellitus without complications +C0494284|T047|AB|E10.9|ICD10CM|Type 1 diabetes mellitus without complications|Type 1 diabetes mellitus without complications +C0494284|T047|PT|E10.9|ICD10CM|Type 1 diabetes mellitus without complications|Type 1 diabetes mellitus without complications +C4290093|T047|ET|E11|ICD10CM|diabetes (mellitus) due to insulin secretory defect|diabetes (mellitus) due to insulin secretory defect +C0011847|T047|ET|E11|ICD10CM|diabetes NOS|diabetes NOS +C0854110|T047|ET|E11|ICD10CM|insulin resistant diabetes (mellitus)|insulin resistant diabetes (mellitus) +C0011860|T047|HT|E11|ICD10|Non-insulin-dependent diabetes mellitus|Non-insulin-dependent diabetes mellitus +C0011860|T047|HT|E11|ICD10CM|Type 2 diabetes mellitus|Type 2 diabetes mellitus +C0011860|T047|AB|E11|ICD10CM|Type 2 diabetes mellitus|Type 2 diabetes mellitus +C0494285|T047|PT|E11.0|ICD10|Non-insulin-dependent diabetes mellitus with coma|Non-insulin-dependent diabetes mellitus with coma +C0851219|T047|HT|E11.0|ICD10CM|Type 2 diabetes mellitus with hyperosmolarity|Type 2 diabetes mellitus with hyperosmolarity +C0851219|T047|AB|E11.0|ICD10CM|Type 2 diabetes mellitus with hyperosmolarity|Type 2 diabetes mellitus with hyperosmolarity +C0837021|T047|AB|E11.00|ICD10CM|Type 2 diab w hyprosm w/o nonket hyprgly-hypros coma (NKHHC)|Type 2 diab w hyprosm w/o nonket hyprgly-hypros coma (NKHHC) +C0837022|T047|PT|E11.01|ICD10CM|Type 2 diabetes mellitus with hyperosmolarity with coma|Type 2 diabetes mellitus with hyperosmolarity with coma +C0837022|T047|AB|E11.01|ICD10CM|Type 2 diabetes mellitus with hyperosmolarity with coma|Type 2 diabetes mellitus with hyperosmolarity with coma +C0342295|T047|PT|E11.1|ICD10|Non-insulin-dependent diabetes mellitus with ketoacidosis|Non-insulin-dependent diabetes mellitus with ketoacidosis +C0342295|T047|AB|E11.1|ICD10CM|Type 2 diabetes mellitus with ketoacidosis|Type 2 diabetes mellitus with ketoacidosis +C0342295|T047|HT|E11.1|ICD10CM|Type 2 diabetes mellitus with ketoacidosis|Type 2 diabetes mellitus with ketoacidosis +C0837023|T047|AB|E11.10|ICD10CM|Type 2 diabetes mellitus with ketoacidosis without coma|Type 2 diabetes mellitus with ketoacidosis without coma +C0837023|T047|PT|E11.10|ICD10CM|Type 2 diabetes mellitus with ketoacidosis without coma|Type 2 diabetes mellitus with ketoacidosis without coma +C0837024|T047|AB|E11.11|ICD10CM|Type 2 diabetes mellitus with ketoacidosis with coma|Type 2 diabetes mellitus with ketoacidosis with coma +C0837024|T047|PT|E11.11|ICD10CM|Type 2 diabetes mellitus with ketoacidosis with coma|Type 2 diabetes mellitus with ketoacidosis with coma +C0348918|T047|PT|E11.2|ICD10|Non-insulin-dependent diabetes mellitus with renal complications|Non-insulin-dependent diabetes mellitus with renal complications +C2874072|T047|AB|E11.2|ICD10CM|Type 2 diabetes mellitus with kidney complications|Type 2 diabetes mellitus with kidney complications +C2874072|T047|HT|E11.2|ICD10CM|Type 2 diabetes mellitus with kidney complications|Type 2 diabetes mellitus with kidney complications +C0837031|T047|AB|E11.21|ICD10CM|Type 2 diabetes mellitus with diabetic nephropathy|Type 2 diabetes mellitus with diabetic nephropathy +C0837031|T047|PT|E11.21|ICD10CM|Type 2 diabetes mellitus with diabetic nephropathy|Type 2 diabetes mellitus with diabetic nephropathy +C2874074|T047|ET|E11.21|ICD10CM|Type 2 diabetes mellitus with intercapillary glomerulosclerosis|Type 2 diabetes mellitus with intercapillary glomerulosclerosis +C2874075|T047|ET|E11.21|ICD10CM|Type 2 diabetes mellitus with intracapillary glomerulonephrosis|Type 2 diabetes mellitus with intracapillary glomerulonephrosis +C2874073|T047|ET|E11.21|ICD10CM|Type 2 diabetes mellitus with Kimmelstiel-Wilson disease|Type 2 diabetes mellitus with Kimmelstiel-Wilson disease +C3250571|T047|AB|E11.22|ICD10CM|Type 2 diabetes mellitus w diabetic chronic kidney disease|Type 2 diabetes mellitus w diabetic chronic kidney disease +C3250571|T047|PT|E11.22|ICD10CM|Type 2 diabetes mellitus with diabetic chronic kidney disease|Type 2 diabetes mellitus with diabetic chronic kidney disease +C2874079|T047|AB|E11.29|ICD10CM|Type 2 diabetes mellitus w oth diabetic kidney complication|Type 2 diabetes mellitus w oth diabetic kidney complication +C2874079|T047|PT|E11.29|ICD10CM|Type 2 diabetes mellitus with other diabetic kidney complication|Type 2 diabetes mellitus with other diabetic kidney complication +C2874078|T047|ET|E11.29|ICD10CM|Type 2 diabetes mellitus with renal tubular degeneration|Type 2 diabetes mellitus with renal tubular degeneration +C0348919|T047|PT|E11.3|ICD10|Non-insulin-dependent diabetes mellitus with ophthalmic complications|Non-insulin-dependent diabetes mellitus with ophthalmic complications +C0348919|T047|AB|E11.3|ICD10CM|Type 2 diabetes mellitus with ophthalmic complications|Type 2 diabetes mellitus with ophthalmic complications +C0348919|T047|HT|E11.3|ICD10CM|Type 2 diabetes mellitus with ophthalmic complications|Type 2 diabetes mellitus with ophthalmic complications +C2874080|T047|AB|E11.31|ICD10CM|Type 2 diabetes mellitus with unsp diabetic retinopathy|Type 2 diabetes mellitus with unsp diabetic retinopathy +C2874080|T047|HT|E11.31|ICD10CM|Type 2 diabetes mellitus with unspecified diabetic retinopathy|Type 2 diabetes mellitus with unspecified diabetic retinopathy +C2874081|T047|PT|E11.311|ICD10CM|Type 2 diabetes mellitus with unspecified diabetic retinopathy with macular edema|Type 2 diabetes mellitus with unspecified diabetic retinopathy with macular edema +C2874081|T047|AB|E11.311|ICD10CM|Type 2 diabetes w unsp diabetic retinopathy w macular edema|Type 2 diabetes w unsp diabetic retinopathy w macular edema +C2874082|T047|PT|E11.319|ICD10CM|Type 2 diabetes mellitus with unspecified diabetic retinopathy without macular edema|Type 2 diabetes mellitus with unspecified diabetic retinopathy without macular edema +C2874082|T047|AB|E11.319|ICD10CM|Type 2 diabetes w unsp diabetic rtnop w/o macular edema|Type 2 diabetes w unsp diabetic rtnop w/o macular edema +C2874084|T047|HT|E11.32|ICD10CM|Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy|Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy +C2874083|T047|ET|E11.32|ICD10CM|Type 2 diabetes mellitus with nonproliferative diabetic retinopathy NOS|Type 2 diabetes mellitus with nonproliferative diabetic retinopathy NOS +C2874084|T047|AB|E11.32|ICD10CM|Type 2 diabetes w mild nonproliferative diabetic retinopathy|Type 2 diabetes w mild nonproliferative diabetic retinopathy +C2874085|T047|AB|E11.321|ICD10CM|Type 2 diab w mild nonprlf diabetic rtnop w macular edema|Type 2 diab w mild nonprlf diabetic rtnop w macular edema +C2874085|T047|HT|E11.321|ICD10CM|Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema|Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema +C4268068|T047|AB|E11.3211|ICD10CM|Type 2 diab with mild nonp rtnop with macular edema, r eye|Type 2 diab with mild nonp rtnop with macular edema, r eye +C4268069|T047|AB|E11.3212|ICD10CM|Type 2 diab with mild nonp rtnop with macular edema, l eye|Type 2 diab with mild nonp rtnop with macular edema, l eye +C4268070|T047|AB|E11.3213|ICD10CM|Type 2 diabetes with mild nonp rtnop with macular edema, bi|Type 2 diabetes with mild nonp rtnop with macular edema, bi +C4268071|T047|AB|E11.3219|ICD10CM|Type 2 diab with mild nonp rtnop with macular edema, unsp|Type 2 diab with mild nonp rtnop with macular edema, unsp +C2874086|T047|AB|E11.329|ICD10CM|Type 2 diab w mild nonprlf diabetic rtnop w/o macular edema|Type 2 diab w mild nonprlf diabetic rtnop w/o macular edema +C2874086|T047|HT|E11.329|ICD10CM|Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema|Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema +C4268072|T047|AB|E11.3291|ICD10CM|Type 2 diab with mild nonp rtnop without mclr edema, r eye|Type 2 diab with mild nonp rtnop without mclr edema, r eye +C4268073|T047|AB|E11.3292|ICD10CM|Type 2 diab with mild nonp rtnop without mclr edema, l eye|Type 2 diab with mild nonp rtnop without mclr edema, l eye +C4268074|T047|AB|E11.3293|ICD10CM|Type 2 diab with mild nonp rtnop without macular edema, bi|Type 2 diab with mild nonp rtnop without macular edema, bi +C4268075|T047|AB|E11.3299|ICD10CM|Type 2 diab with mild nonp rtnop without macular edema, unsp|Type 2 diab with mild nonp rtnop without macular edema, unsp +C2874087|T047|HT|E11.33|ICD10CM|Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy|Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy +C2874087|T047|AB|E11.33|ICD10CM|Type 2 diabetes w moderate nonprlf diabetic retinopathy|Type 2 diabetes w moderate nonprlf diabetic retinopathy +C2874088|T047|AB|E11.331|ICD10CM|Type 2 diab w moderate nonprlf diab rtnop w macular edema|Type 2 diab w moderate nonprlf diab rtnop w macular edema +C2874088|T047|HT|E11.331|ICD10CM|Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema|Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema +C4268076|T047|AB|E11.3311|ICD10CM|Type 2 diab with mod nonp rtnop with macular edema, r eye|Type 2 diab with mod nonp rtnop with macular edema, r eye +C4268077|T047|AB|E11.3312|ICD10CM|Type 2 diab with mod nonp rtnop with macular edema, l eye|Type 2 diab with mod nonp rtnop with macular edema, l eye +C4268078|T047|AB|E11.3313|ICD10CM|Type 2 diab with moderate nonp rtnop with macular edema, bi|Type 2 diab with moderate nonp rtnop with macular edema, bi +C4268079|T047|AB|E11.3319|ICD10CM|Type 2 diab with mod nonp rtnop with macular edema, unsp|Type 2 diab with mod nonp rtnop with macular edema, unsp +C2874089|T047|AB|E11.339|ICD10CM|Type 2 diab w moderate nonprlf diab rtnop w/o macular edema|Type 2 diab w moderate nonprlf diab rtnop w/o macular edema +C2874089|T047|HT|E11.339|ICD10CM|Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema|Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema +C4268080|T047|AB|E11.3391|ICD10CM|Type 2 diab with mod nonp rtnop without macular edema, r eye|Type 2 diab with mod nonp rtnop without macular edema, r eye +C4268081|T047|AB|E11.3392|ICD10CM|Type 2 diab with mod nonp rtnop without macular edema, l eye|Type 2 diab with mod nonp rtnop without macular edema, l eye +C4268082|T047|AB|E11.3393|ICD10CM|Type 2 diab with mod nonp rtnop without macular edema, bi|Type 2 diab with mod nonp rtnop without macular edema, bi +C4268083|T047|AB|E11.3399|ICD10CM|Type 2 diab with mod nonp rtnop without macular edema, unsp|Type 2 diab with mod nonp rtnop without macular edema, unsp +C2874090|T047|HT|E11.34|ICD10CM|Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy|Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy +C2874090|T047|AB|E11.34|ICD10CM|Type 2 diabetes w severe nonprlf diabetic retinopathy|Type 2 diabetes w severe nonprlf diabetic retinopathy +C2874091|T047|AB|E11.341|ICD10CM|Type 2 diab w severe nonprlf diabetic rtnop w macular edema|Type 2 diab w severe nonprlf diabetic rtnop w macular edema +C2874091|T047|HT|E11.341|ICD10CM|Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema|Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema +C4268084|T047|AB|E11.3411|ICD10CM|Type 2 diab with severe nonp rtnop with macular edema, r eye|Type 2 diab with severe nonp rtnop with macular edema, r eye +C4268085|T047|AB|E11.3412|ICD10CM|Type 2 diab with severe nonp rtnop with macular edema, l eye|Type 2 diab with severe nonp rtnop with macular edema, l eye +C4268086|T047|AB|E11.3413|ICD10CM|Type 2 diab with severe nonp rtnop with macular edema, bi|Type 2 diab with severe nonp rtnop with macular edema, bi +C4268087|T047|AB|E11.3419|ICD10CM|Type 2 diab with severe nonp rtnop with macular edema, unsp|Type 2 diab with severe nonp rtnop with macular edema, unsp +C2874092|T047|AB|E11.349|ICD10CM|Type 2 diab w severe nonprlf diab rtnop w/o macular edema|Type 2 diab w severe nonprlf diab rtnop w/o macular edema +C2874092|T047|HT|E11.349|ICD10CM|Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema|Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema +C4268088|T047|AB|E11.3491|ICD10CM|Type 2 diab with severe nonp rtnop without mclr edema, r eye|Type 2 diab with severe nonp rtnop without mclr edema, r eye +C4268089|T047|AB|E11.3492|ICD10CM|Type 2 diab with severe nonp rtnop without mclr edema, l eye|Type 2 diab with severe nonp rtnop without mclr edema, l eye +C4268090|T047|AB|E11.3493|ICD10CM|Type 2 diab with severe nonp rtnop without macular edema, bi|Type 2 diab with severe nonp rtnop without macular edema, bi +C4268091|T047|AB|E11.3499|ICD10CM|Type 2 diab with severe nonp rtnop without mclr edema, unsp|Type 2 diab with severe nonp rtnop without mclr edema, unsp +C2874093|T047|HT|E11.35|ICD10CM|Type 2 diabetes mellitus with proliferative diabetic retinopathy|Type 2 diabetes mellitus with proliferative diabetic retinopathy +C2874093|T047|AB|E11.35|ICD10CM|Type 2 diabetes w proliferative diabetic retinopathy|Type 2 diabetes w proliferative diabetic retinopathy +C2874094|T047|HT|E11.351|ICD10CM|Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema|Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema +C2874094|T047|AB|E11.351|ICD10CM|Type 2 diabetes w prolif diabetic rtnop w macular edema|Type 2 diabetes w prolif diabetic rtnop w macular edema +C4268092|T047|AB|E11.3511|ICD10CM|Type 2 diab with prolif diab rtnop with macular edema, r eye|Type 2 diab with prolif diab rtnop with macular edema, r eye +C4268092|T047|PT|E11.3511|ICD10CM|Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye|Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye +C4268093|T047|AB|E11.3512|ICD10CM|Type 2 diab with prolif diab rtnop with macular edema, l eye|Type 2 diab with prolif diab rtnop with macular edema, l eye +C4268093|T047|PT|E11.3512|ICD10CM|Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye|Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye +C4268094|T047|AB|E11.3513|ICD10CM|Type 2 diab with prolif diab rtnop with macular edema, bi|Type 2 diab with prolif diab rtnop with macular edema, bi +C4268094|T047|PT|E11.3513|ICD10CM|Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral|Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral +C4268095|T047|AB|E11.3519|ICD10CM|Type 2 diab with prolif diab rtnop with macular edema, unsp|Type 2 diab with prolif diab rtnop with macular edema, unsp +C4268095|T047|PT|E11.3519|ICD10CM|Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye|Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye +C4268096|T047|AB|E11.352|ICD10CM|Type 2 diab with prolif diab rtnop with trctn dtch macula|Type 2 diab with prolif diab rtnop with trctn dtch macula +C4268097|T047|AB|E11.3521|ICD10CM|Type 2 diab w prolif diab rtnop w trctn dtch macula, r eye|Type 2 diab w prolif diab rtnop w trctn dtch macula, r eye +C4268098|T047|AB|E11.3522|ICD10CM|Type 2 diab w prolif diab rtnop w trctn dtch macula, l eye|Type 2 diab w prolif diab rtnop w trctn dtch macula, l eye +C4268099|T047|AB|E11.3523|ICD10CM|Type 2 diab w prolif diab rtnop with trctn dtch macula, bi|Type 2 diab w prolif diab rtnop with trctn dtch macula, bi +C4268100|T047|AB|E11.3529|ICD10CM|Type 2 diab w prolif diab rtnop with trctn dtch macula, unsp|Type 2 diab w prolif diab rtnop with trctn dtch macula, unsp +C4268101|T047|AB|E11.353|ICD10CM|Type 2 diab with prolif diab rtnop with trctn dtch n-mcla|Type 2 diab with prolif diab rtnop with trctn dtch n-mcla +C4268102|T047|AB|E11.3531|ICD10CM|Type 2 diab w prolif diab rtnop w trctn dtch n-mcla, r eye|Type 2 diab w prolif diab rtnop w trctn dtch n-mcla, r eye +C4268103|T047|AB|E11.3532|ICD10CM|Type 2 diab w prolif diab rtnop w trctn dtch n-mcla, l eye|Type 2 diab w prolif diab rtnop w trctn dtch n-mcla, l eye +C4268104|T047|AB|E11.3533|ICD10CM|Type 2 diab w prolif diab rtnop with trctn dtch n-mcla, bi|Type 2 diab w prolif diab rtnop with trctn dtch n-mcla, bi +C4268105|T047|AB|E11.3539|ICD10CM|Type 2 diab w prolif diab rtnop with trctn dtch n-mcla, unsp|Type 2 diab w prolif diab rtnop with trctn dtch n-mcla, unsp +C4268106|T047|AB|E11.354|ICD10CM|Type 2 diabetes with prolif diabetic rtnop with comb detach|Type 2 diabetes with prolif diabetic rtnop with comb detach +C4268107|T047|AB|E11.3541|ICD10CM|Type 2 diab with prolif diab rtnop with comb detach, r eye|Type 2 diab with prolif diab rtnop with comb detach, r eye +C4268108|T047|AB|E11.3542|ICD10CM|Type 2 diab with prolif diab rtnop with comb detach, l eye|Type 2 diab with prolif diab rtnop with comb detach, l eye +C4268109|T047|AB|E11.3543|ICD10CM|Type 2 diab with prolif diabetic rtnop with comb detach, bi|Type 2 diab with prolif diabetic rtnop with comb detach, bi +C4268110|T047|AB|E11.3549|ICD10CM|Type 2 diab with prolif diab rtnop with comb detach, unsp|Type 2 diab with prolif diab rtnop with comb detach, unsp +C4268111|T047|HT|E11.355|ICD10CM|Type 2 diabetes mellitus with stable proliferative diabetic retinopathy|Type 2 diabetes mellitus with stable proliferative diabetic retinopathy +C4268111|T047|AB|E11.355|ICD10CM|Type 2 diabetes with stable prolif diabetic retinopathy|Type 2 diabetes with stable prolif diabetic retinopathy +C4268112|T047|PT|E11.3551|ICD10CM|Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, right eye|Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, right eye +C4268112|T047|AB|E11.3551|ICD10CM|Type 2 diabetes with stable prolif diabetic rtnop, right eye|Type 2 diabetes with stable prolif diabetic rtnop, right eye +C4268113|T047|PT|E11.3552|ICD10CM|Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, left eye|Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, left eye +C4268113|T047|AB|E11.3552|ICD10CM|Type 2 diabetes with stable prolif diabetic rtnop, left eye|Type 2 diabetes with stable prolif diabetic rtnop, left eye +C4268114|T047|PT|E11.3553|ICD10CM|Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, bilateral|Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, bilateral +C4268114|T047|AB|E11.3553|ICD10CM|Type 2 diabetes with stable prolif diabetic rtnop, bilateral|Type 2 diabetes with stable prolif diabetic rtnop, bilateral +C4268115|T047|PT|E11.3559|ICD10CM|Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye|Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye +C4268115|T047|AB|E11.3559|ICD10CM|Type 2 diabetes with stable prolif diabetic rtnop, unsp|Type 2 diabetes with stable prolif diabetic rtnop, unsp +C2874095|T047|HT|E11.359|ICD10CM|Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema|Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema +C2874095|T047|AB|E11.359|ICD10CM|Type 2 diabetes w prolif diabetic rtnop w/o macular edema|Type 2 diabetes w prolif diabetic rtnop w/o macular edema +C4268116|T047|AB|E11.3591|ICD10CM|Type 2 diab with prolif diab rtnop without mclr edema, r eye|Type 2 diab with prolif diab rtnop without mclr edema, r eye +C4268116|T047|PT|E11.3591|ICD10CM|Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye|Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye +C4268117|T047|AB|E11.3592|ICD10CM|Type 2 diab with prolif diab rtnop without mclr edema, l eye|Type 2 diab with prolif diab rtnop without mclr edema, l eye +C4268117|T047|PT|E11.3592|ICD10CM|Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye|Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye +C4268118|T047|AB|E11.3593|ICD10CM|Type 2 diab with prolif diab rtnop without macular edema, bi|Type 2 diab with prolif diab rtnop without macular edema, bi +C4268118|T047|PT|E11.3593|ICD10CM|Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral|Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral +C4268119|T047|AB|E11.3599|ICD10CM|Type 2 diab with prolif diab rtnop without mclr edema, unsp|Type 2 diab with prolif diab rtnop without mclr edema, unsp +C0837040|T047|PT|E11.36|ICD10CM|Type 2 diabetes mellitus with diabetic cataract|Type 2 diabetes mellitus with diabetic cataract +C0837040|T047|AB|E11.36|ICD10CM|Type 2 diabetes mellitus with diabetic cataract|Type 2 diabetes mellitus with diabetic cataract +C4268120|T047|AB|E11.37|ICD10CM|Type 2 diab with diabetic macular edema, resolved fol trtmt|Type 2 diab with diabetic macular edema, resolved fol trtmt +C4268120|T047|HT|E11.37|ICD10CM|Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment|Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment +C4268121|T047|AB|E11.37X1|ICD10CM|Type 2 diab with diab mclr edema, resolved fol trtmt, r eye|Type 2 diab with diab mclr edema, resolved fol trtmt, r eye +C4268121|T047|PT|E11.37X1|ICD10CM|Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, right eye|Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, right eye +C4268122|T047|AB|E11.37X2|ICD10CM|Type 2 diab with diab mclr edema, resolved fol trtmt, l eye|Type 2 diab with diab mclr edema, resolved fol trtmt, l eye +C4268122|T047|PT|E11.37X2|ICD10CM|Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, left eye|Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, left eye +C4268123|T047|AB|E11.37X3|ICD10CM|Type 2 diab with diab macular edema, resolved fol trtmt, bi|Type 2 diab with diab macular edema, resolved fol trtmt, bi +C4268123|T047|PT|E11.37X3|ICD10CM|Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral|Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral +C4268124|T047|AB|E11.37X9|ICD10CM|Type 2 diab with diab mclr edema, resolved fol trtmt, unsp|Type 2 diab with diab mclr edema, resolved fol trtmt, unsp +C4268124|T047|PT|E11.37X9|ICD10CM|Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye|Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye +C2874096|T047|PT|E11.39|ICD10CM|Type 2 diabetes mellitus with other diabetic ophthalmic complication|Type 2 diabetes mellitus with other diabetic ophthalmic complication +C2874096|T047|AB|E11.39|ICD10CM|Type 2 diabetes w oth diabetic ophthalmic complication|Type 2 diabetes w oth diabetic ophthalmic complication +C0348920|T047|PT|E11.4|ICD10|Non-insulin-dependent diabetes mellitus with neurological complications|Non-insulin-dependent diabetes mellitus with neurological complications +C0348920|T047|AB|E11.4|ICD10CM|Type 2 diabetes mellitus with neurological complications|Type 2 diabetes mellitus with neurological complications +C0348920|T047|HT|E11.4|ICD10CM|Type 2 diabetes mellitus with neurological complications|Type 2 diabetes mellitus with neurological complications +C2874097|T047|AB|E11.40|ICD10CM|Type 2 diabetes mellitus with diabetic neuropathy, unsp|Type 2 diabetes mellitus with diabetic neuropathy, unsp +C2874097|T047|PT|E11.40|ICD10CM|Type 2 diabetes mellitus with diabetic neuropathy, unspecified|Type 2 diabetes mellitus with diabetic neuropathy, unspecified +C0837043|T047|PT|E11.41|ICD10CM|Type 2 diabetes mellitus with diabetic mononeuropathy|Type 2 diabetes mellitus with diabetic mononeuropathy +C0837043|T047|AB|E11.41|ICD10CM|Type 2 diabetes mellitus with diabetic mononeuropathy|Type 2 diabetes mellitus with diabetic mononeuropathy +C2874098|T047|ET|E11.42|ICD10CM|Type 2 diabetes mellitus with diabetic neuralgia|Type 2 diabetes mellitus with diabetic neuralgia +C0837044|T047|PT|E11.42|ICD10CM|Type 2 diabetes mellitus with diabetic polyneuropathy|Type 2 diabetes mellitus with diabetic polyneuropathy +C0837044|T047|AB|E11.42|ICD10CM|Type 2 diabetes mellitus with diabetic polyneuropathy|Type 2 diabetes mellitus with diabetic polyneuropathy +C2874100|T047|PT|E11.43|ICD10CM|Type 2 diabetes mellitus with diabetic autonomic (poly)neuropathy|Type 2 diabetes mellitus with diabetic autonomic (poly)neuropathy +C2874099|T047|ET|E11.43|ICD10CM|Type 2 diabetes mellitus with diabetic gastroparesis|Type 2 diabetes mellitus with diabetic gastroparesis +C2874100|T047|AB|E11.43|ICD10CM|Type 2 diabetes w diabetic autonomic (poly)neuropathy|Type 2 diabetes w diabetic autonomic (poly)neuropathy +C2874101|T047|AB|E11.44|ICD10CM|Type 2 diabetes mellitus with diabetic amyotrophy|Type 2 diabetes mellitus with diabetic amyotrophy +C2874101|T047|PT|E11.44|ICD10CM|Type 2 diabetes mellitus with diabetic amyotrophy|Type 2 diabetes mellitus with diabetic amyotrophy +C2874102|T047|PT|E11.49|ICD10CM|Type 2 diabetes mellitus with other diabetic neurological complication|Type 2 diabetes mellitus with other diabetic neurological complication +C2874102|T047|AB|E11.49|ICD10CM|Type 2 diabetes w oth diabetic neurological complication|Type 2 diabetes w oth diabetic neurological complication +C0154181|T047|PT|E11.5|ICD10|Non-insulin-dependent diabetes mellitus with peripheral circulatory complications|Non-insulin-dependent diabetes mellitus with peripheral circulatory complications +C2874103|T047|AB|E11.5|ICD10CM|Type 2 diabetes mellitus with circulatory complications|Type 2 diabetes mellitus with circulatory complications +C2874103|T047|HT|E11.5|ICD10CM|Type 2 diabetes mellitus with circulatory complications|Type 2 diabetes mellitus with circulatory complications +C2874104|T047|PT|E11.51|ICD10CM|Type 2 diabetes mellitus with diabetic peripheral angiopathy without gangrene|Type 2 diabetes mellitus with diabetic peripheral angiopathy without gangrene +C2874104|T047|AB|E11.51|ICD10CM|Type 2 diabetes w diabetic peripheral angiopath w/o gangrene|Type 2 diabetes w diabetic peripheral angiopath w/o gangrene +C2874105|T047|ET|E11.52|ICD10CM|Type 2 diabetes mellitus with diabetic gangrene|Type 2 diabetes mellitus with diabetic gangrene +C2874106|T047|PT|E11.52|ICD10CM|Type 2 diabetes mellitus with diabetic peripheral angiopathy with gangrene|Type 2 diabetes mellitus with diabetic peripheral angiopathy with gangrene +C2874106|T047|AB|E11.52|ICD10CM|Type 2 diabetes w diabetic peripheral angiopathy w gangrene|Type 2 diabetes w diabetic peripheral angiopathy w gangrene +C2874107|T047|AB|E11.59|ICD10CM|Type 2 diabetes mellitus with oth circulatory complications|Type 2 diabetes mellitus with oth circulatory complications +C2874107|T047|PT|E11.59|ICD10CM|Type 2 diabetes mellitus with other circulatory complications|Type 2 diabetes mellitus with other circulatory complications +C0342262|T047|PT|E11.6|ICD10|Non-insulin-dependent diabetes mellitus with other specified complications|Non-insulin-dependent diabetes mellitus with other specified complications +C0342262|T047|AB|E11.6|ICD10CM|Type 2 diabetes mellitus with other specified complications|Type 2 diabetes mellitus with other specified complications +C0342262|T047|HT|E11.6|ICD10CM|Type 2 diabetes mellitus with other specified complications|Type 2 diabetes mellitus with other specified complications +C2874108|T047|AB|E11.61|ICD10CM|Type 2 diabetes mellitus with diabetic arthropathy|Type 2 diabetes mellitus with diabetic arthropathy +C2874108|T047|HT|E11.61|ICD10CM|Type 2 diabetes mellitus with diabetic arthropathy|Type 2 diabetes mellitus with diabetic arthropathy +C2874110|T047|AB|E11.610|ICD10CM|Type 2 diabetes mellitus w diabetic neuropathic arthropathy|Type 2 diabetes mellitus w diabetic neuropathic arthropathy +C2874109|T047|ET|E11.610|ICD10CM|Type 2 diabetes mellitus with Charcôt's joints|Type 2 diabetes mellitus with Charcôt's joints +C2874110|T047|PT|E11.610|ICD10CM|Type 2 diabetes mellitus with diabetic neuropathic arthropathy|Type 2 diabetes mellitus with diabetic neuropathic arthropathy +C2874111|T047|AB|E11.618|ICD10CM|Type 2 diabetes mellitus with other diabetic arthropathy|Type 2 diabetes mellitus with other diabetic arthropathy +C2874111|T047|PT|E11.618|ICD10CM|Type 2 diabetes mellitus with other diabetic arthropathy|Type 2 diabetes mellitus with other diabetic arthropathy +C2874112|T047|AB|E11.62|ICD10CM|Type 2 diabetes mellitus with skin complications|Type 2 diabetes mellitus with skin complications +C2874112|T047|HT|E11.62|ICD10CM|Type 2 diabetes mellitus with skin complications|Type 2 diabetes mellitus with skin complications +C2874114|T047|PT|E11.620|ICD10CM|Type 2 diabetes mellitus with diabetic dermatitis|Type 2 diabetes mellitus with diabetic dermatitis +C2874114|T047|AB|E11.620|ICD10CM|Type 2 diabetes mellitus with diabetic dermatitis|Type 2 diabetes mellitus with diabetic dermatitis +C2874113|T047|ET|E11.620|ICD10CM|Type 2 diabetes mellitus with diabetic necrobiosis lipoidica|Type 2 diabetes mellitus with diabetic necrobiosis lipoidica +C2874115|T047|PT|E11.621|ICD10CM|Type 2 diabetes mellitus with foot ulcer|Type 2 diabetes mellitus with foot ulcer +C2874115|T047|AB|E11.621|ICD10CM|Type 2 diabetes mellitus with foot ulcer|Type 2 diabetes mellitus with foot ulcer +C2874116|T047|AB|E11.622|ICD10CM|Type 2 diabetes mellitus with other skin ulcer|Type 2 diabetes mellitus with other skin ulcer +C2874116|T047|PT|E11.622|ICD10CM|Type 2 diabetes mellitus with other skin ulcer|Type 2 diabetes mellitus with other skin ulcer +C2874117|T047|AB|E11.628|ICD10CM|Type 2 diabetes mellitus with other skin complications|Type 2 diabetes mellitus with other skin complications +C2874117|T047|PT|E11.628|ICD10CM|Type 2 diabetes mellitus with other skin complications|Type 2 diabetes mellitus with other skin complications +C2874118|T047|AB|E11.63|ICD10CM|Type 2 diabetes mellitus with oral complications|Type 2 diabetes mellitus with oral complications +C2874118|T047|HT|E11.63|ICD10CM|Type 2 diabetes mellitus with oral complications|Type 2 diabetes mellitus with oral complications +C2874119|T047|PT|E11.630|ICD10CM|Type 2 diabetes mellitus with periodontal disease|Type 2 diabetes mellitus with periodontal disease +C2874119|T047|AB|E11.630|ICD10CM|Type 2 diabetes mellitus with periodontal disease|Type 2 diabetes mellitus with periodontal disease +C2874120|T047|AB|E11.638|ICD10CM|Type 2 diabetes mellitus with other oral complications|Type 2 diabetes mellitus with other oral complications +C2874120|T047|PT|E11.638|ICD10CM|Type 2 diabetes mellitus with other oral complications|Type 2 diabetes mellitus with other oral complications +C0837054|T047|HT|E11.64|ICD10CM|Type 2 diabetes mellitus with hypoglycemia|Type 2 diabetes mellitus with hypoglycemia +C0837054|T047|AB|E11.64|ICD10CM|Type 2 diabetes mellitus with hypoglycemia|Type 2 diabetes mellitus with hypoglycemia +C2874121|T047|PT|E11.641|ICD10CM|Type 2 diabetes mellitus with hypoglycemia with coma|Type 2 diabetes mellitus with hypoglycemia with coma +C2874121|T047|AB|E11.641|ICD10CM|Type 2 diabetes mellitus with hypoglycemia with coma|Type 2 diabetes mellitus with hypoglycemia with coma +C2874122|T047|PT|E11.649|ICD10CM|Type 2 diabetes mellitus with hypoglycemia without coma|Type 2 diabetes mellitus with hypoglycemia without coma +C2874122|T047|AB|E11.649|ICD10CM|Type 2 diabetes mellitus with hypoglycemia without coma|Type 2 diabetes mellitus with hypoglycemia without coma +C2874123|T047|AB|E11.65|ICD10CM|Type 2 diabetes mellitus with hyperglycemia|Type 2 diabetes mellitus with hyperglycemia +C2874123|T047|PT|E11.65|ICD10CM|Type 2 diabetes mellitus with hyperglycemia|Type 2 diabetes mellitus with hyperglycemia +C0342262|T047|PT|E11.69|ICD10CM|Type 2 diabetes mellitus with other specified complication|Type 2 diabetes mellitus with other specified complication +C0342262|T047|AB|E11.69|ICD10CM|Type 2 diabetes mellitus with other specified complication|Type 2 diabetes mellitus with other specified complication +C0349363|T047|PT|E11.7|ICD10|Non-insulin-dependent diabetes mellitus with multiple complications|Non-insulin-dependent diabetes mellitus with multiple complications +C1299614|T047|PT|E11.8|ICD10|Non-insulin-dependent diabetes mellitus with unspecified complications|Non-insulin-dependent diabetes mellitus with unspecified complications +C1299614|T047|AB|E11.8|ICD10CM|Type 2 diabetes mellitus with unspecified complications|Type 2 diabetes mellitus with unspecified complications +C1299614|T047|PT|E11.8|ICD10CM|Type 2 diabetes mellitus with unspecified complications|Type 2 diabetes mellitus with unspecified complications +C0494290|T047|PT|E11.9|ICD10|Non-insulin-dependent diabetes mellitus without complications|Non-insulin-dependent diabetes mellitus without complications +C0494290|T047|AB|E11.9|ICD10CM|Type 2 diabetes mellitus without complications|Type 2 diabetes mellitus without complications +C0494290|T047|PT|E11.9|ICD10CM|Type 2 diabetes mellitus without complications|Type 2 diabetes mellitus without complications +C0271641|T047|HT|E12|ICD10|Malnutrition-related diabetes mellitus|Malnutrition-related diabetes mellitus +C0348922|T047|PT|E12.0|ICD10|Malnutrition-related diabetes mellitus with coma|Malnutrition-related diabetes mellitus with coma +C0494291|T047|PT|E12.1|ICD10|Malnutrition-related diabetes mellitus with ketoacidosis|Malnutrition-related diabetes mellitus with ketoacidosis +C0348924|T047|PT|E12.2|ICD10|Malnutrition-related diabetes mellitus with renal complications|Malnutrition-related diabetes mellitus with renal complications +C0348925|T047|PT|E12.3|ICD10|Malnutrition-related diabetes mellitus with ophthalmic complications|Malnutrition-related diabetes mellitus with ophthalmic complications +C0348926|T047|PT|E12.4|ICD10|Malnutrition-related diabetes mellitus with neurological complications|Malnutrition-related diabetes mellitus with neurological complications +C0348927|T047|PT|E12.5|ICD10|Malnutrition-related diabetes mellitus with peripheral circulatory complications|Malnutrition-related diabetes mellitus with peripheral circulatory complications +C0348448|T047|PT|E12.6|ICD10|Malnutrition-reltaed diabetes mellitus with other specified complications|Malnutrition-reltaed diabetes mellitus with other specified complications +C0348928|T047|PT|E12.7|ICD10|Malnutrition-related diabetes mellitus with multiple complications|Malnutrition-related diabetes mellitus with multiple complications +C0348449|T047|PT|E12.8|ICD10|Malnutrition-related diabetes mellitus with unspecified complications|Malnutrition-related diabetes mellitus with unspecified complications +C0348929|T047|PT|E12.9|ICD10|Malnutrition-related diabetes mellitus without complications|Malnutrition-related diabetes mellitus without complications +C2874124|T047|ET|E13|ICD10CM|diabetes mellitus due to genetic defects in insulin action|diabetes mellitus due to genetic defects in insulin action +C2874125|T047|ET|E13|ICD10CM|diabetes mellitus due to genetic defects of beta-cell function|diabetes mellitus due to genetic defects of beta-cell function +C0348447|T047|HT|E13|ICD10|Other specified diabetes mellitus|Other specified diabetes mellitus +C0348447|T047|AB|E13|ICD10CM|Other specified diabetes mellitus|Other specified diabetes mellitus +C0348447|T047|HT|E13|ICD10CM|Other specified diabetes mellitus|Other specified diabetes mellitus +C0473524|T047|ET|E13|ICD10CM|postpancreatectomy diabetes mellitus|postpancreatectomy diabetes mellitus +C4290094|T047|ET|E13|ICD10CM|postprocedural diabetes mellitus|postprocedural diabetes mellitus +C4290095|T047|ET|E13|ICD10CM|secondary diabetes mellitus NEC|secondary diabetes mellitus NEC +C0348933|T047|PT|E13.0|ICD10|Other specified diabetes mellitus with coma|Other specified diabetes mellitus with coma +C0851211|T047|AB|E13.0|ICD10CM|Other specified diabetes mellitus with hyperosmolarity|Other specified diabetes mellitus with hyperosmolarity +C0851211|T047|HT|E13.0|ICD10CM|Other specified diabetes mellitus with hyperosmolarity|Other specified diabetes mellitus with hyperosmolarity +C0837058|T047|AB|E13.00|ICD10CM|Oth diab w hyprosm w/o nonket hyprgly-hypros coma (NKHHC)|Oth diab w hyprosm w/o nonket hyprgly-hypros coma (NKHHC) +C0837059|T047|AB|E13.01|ICD10CM|Oth diabetes mellitus with hyperosmolarity with coma|Oth diabetes mellitus with hyperosmolarity with coma +C0837059|T047|PT|E13.01|ICD10CM|Other specified diabetes mellitus with hyperosmolarity with coma|Other specified diabetes mellitus with hyperosmolarity with coma +C0348941|T047|PT|E13.1|ICD10|Other specified diabetes mellitus with ketoacidosis|Other specified diabetes mellitus with ketoacidosis +C0348941|T047|HT|E13.1|ICD10CM|Other specified diabetes mellitus with ketoacidosis|Other specified diabetes mellitus with ketoacidosis +C0348941|T047|AB|E13.1|ICD10CM|Other specified diabetes mellitus with ketoacidosis|Other specified diabetes mellitus with ketoacidosis +C0837060|T047|AB|E13.10|ICD10CM|Oth diabetes mellitus with ketoacidosis without coma|Oth diabetes mellitus with ketoacidosis without coma +C0837060|T047|PT|E13.10|ICD10CM|Other specified diabetes mellitus with ketoacidosis without coma|Other specified diabetes mellitus with ketoacidosis without coma +C0837061|T047|AB|E13.11|ICD10CM|Oth diabetes mellitus with ketoacidosis with coma|Oth diabetes mellitus with ketoacidosis with coma +C0837061|T047|PT|E13.11|ICD10CM|Other specified diabetes mellitus with ketoacidosis with coma|Other specified diabetes mellitus with ketoacidosis with coma +C2874126|T047|AB|E13.2|ICD10CM|Other specified diabetes mellitus with kidney complications|Other specified diabetes mellitus with kidney complications +C2874126|T047|HT|E13.2|ICD10CM|Other specified diabetes mellitus with kidney complications|Other specified diabetes mellitus with kidney complications +C0348934|T047|PT|E13.2|ICD10|Other specified diabetes mellitus with renal complications|Other specified diabetes mellitus with renal complications +C2874130|T047|AB|E13.21|ICD10CM|Other specified diabetes mellitus with diabetic nephropathy|Other specified diabetes mellitus with diabetic nephropathy +C2874130|T047|PT|E13.21|ICD10CM|Other specified diabetes mellitus with diabetic nephropathy|Other specified diabetes mellitus with diabetic nephropathy +C2874128|T047|ET|E13.21|ICD10CM|Other specified diabetes mellitus with intercapillary glomerulosclerosis|Other specified diabetes mellitus with intercapillary glomerulosclerosis +C2874129|T047|ET|E13.21|ICD10CM|Other specified diabetes mellitus with intracapillary glomerulonephrosis|Other specified diabetes mellitus with intracapillary glomerulonephrosis +C2874127|T047|ET|E13.21|ICD10CM|Other specified diabetes mellitus with Kimmelstiel-Wilson disease|Other specified diabetes mellitus with Kimmelstiel-Wilson disease +C2874131|T047|AB|E13.22|ICD10CM|Oth diabetes mellitus with diabetic chronic kidney disease|Oth diabetes mellitus with diabetic chronic kidney disease +C2874131|T047|PT|E13.22|ICD10CM|Other specified diabetes mellitus with diabetic chronic kidney disease|Other specified diabetes mellitus with diabetic chronic kidney disease +C2874133|T047|AB|E13.29|ICD10CM|Oth diabetes mellitus with oth diabetic kidney complication|Oth diabetes mellitus with oth diabetic kidney complication +C2874133|T047|PT|E13.29|ICD10CM|Other specified diabetes mellitus with other diabetic kidney complication|Other specified diabetes mellitus with other diabetic kidney complication +C2874132|T047|ET|E13.29|ICD10CM|Other specified diabetes mellitus with renal tubular degeneration|Other specified diabetes mellitus with renal tubular degeneration +C0348935|T047|AB|E13.3|ICD10CM|Oth diabetes mellitus with ophthalmic complications|Oth diabetes mellitus with ophthalmic complications +C0348935|T047|HT|E13.3|ICD10CM|Other specified diabetes mellitus with ophthalmic complications|Other specified diabetes mellitus with ophthalmic complications +C0348935|T047|PT|E13.3|ICD10|Other specified diabetes mellitus with ophthalmic complications|Other specified diabetes mellitus with ophthalmic complications +C2874134|T047|AB|E13.31|ICD10CM|Oth diabetes mellitus with unspecified diabetic retinopathy|Oth diabetes mellitus with unspecified diabetic retinopathy +C2874134|T047|HT|E13.31|ICD10CM|Other specified diabetes mellitus with unspecified diabetic retinopathy|Other specified diabetes mellitus with unspecified diabetic retinopathy +C2874135|T047|AB|E13.311|ICD10CM|Oth diabetes w unsp diabetic retinopathy w macular edema|Oth diabetes w unsp diabetic retinopathy w macular edema +C2874135|T047|PT|E13.311|ICD10CM|Other specified diabetes mellitus with unspecified diabetic retinopathy with macular edema|Other specified diabetes mellitus with unspecified diabetic retinopathy with macular edema +C2874136|T047|AB|E13.319|ICD10CM|Oth diabetes w unsp diabetic retinopathy w/o macular edema|Oth diabetes w unsp diabetic retinopathy w/o macular edema +C2874136|T047|PT|E13.319|ICD10CM|Other specified diabetes mellitus with unspecified diabetic retinopathy without macular edema|Other specified diabetes mellitus with unspecified diabetic retinopathy without macular edema +C2874138|T047|AB|E13.32|ICD10CM|Oth diabetes w mild nonproliferative diabetic retinopathy|Oth diabetes w mild nonproliferative diabetic retinopathy +C2874138|T047|HT|E13.32|ICD10CM|Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy|Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy +C2874137|T047|ET|E13.32|ICD10CM|Other specified diabetes mellitus with nonproliferative diabetic retinopathy NOS|Other specified diabetes mellitus with nonproliferative diabetic retinopathy NOS +C2874139|T047|AB|E13.321|ICD10CM|Oth diabetes w mild nonprlf diabetic rtnop w macular edema|Oth diabetes w mild nonprlf diabetic rtnop w macular edema +C2874139|T047|HT|E13.321|ICD10CM|Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema|Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema +C4268125|T047|AB|E13.3211|ICD10CM|Oth diabetes with mild nonp rtnop with macular edema, r eye|Oth diabetes with mild nonp rtnop with macular edema, r eye +C4268126|T047|AB|E13.3212|ICD10CM|Oth diab with mild nonp rtnop with macular edema, left eye|Oth diab with mild nonp rtnop with macular edema, left eye +C4268127|T047|AB|E13.3213|ICD10CM|Oth diabetes with mild nonp rtnop with macular edema, bi|Oth diabetes with mild nonp rtnop with macular edema, bi +C4268128|T047|AB|E13.3219|ICD10CM|Oth diabetes with mild nonp rtnop with macular edema, unsp|Oth diabetes with mild nonp rtnop with macular edema, unsp +C2874140|T047|AB|E13.329|ICD10CM|Oth diabetes w mild nonprlf diabetic rtnop w/o macular edema|Oth diabetes w mild nonprlf diabetic rtnop w/o macular edema +C4268129|T047|AB|E13.3291|ICD10CM|Oth diab with mild nonp rtnop without macular edema, r eye|Oth diab with mild nonp rtnop without macular edema, r eye +C4268130|T047|AB|E13.3292|ICD10CM|Oth diab with mild nonp rtnop without macular edema, l eye|Oth diab with mild nonp rtnop without macular edema, l eye +C4268131|T047|AB|E13.3293|ICD10CM|Oth diabetes with mild nonp rtnop without macular edema, bi|Oth diabetes with mild nonp rtnop without macular edema, bi +C4268132|T047|AB|E13.3299|ICD10CM|Oth diab with mild nonp rtnop without macular edema, unsp|Oth diab with mild nonp rtnop without macular edema, unsp +C2874141|T047|AB|E13.33|ICD10CM|Oth diabetes w moderate nonprlf diabetic retinopathy|Oth diabetes w moderate nonprlf diabetic retinopathy +C2874141|T047|HT|E13.33|ICD10CM|Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy|Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy +C2874142|T047|AB|E13.331|ICD10CM|Oth diab w moderate nonprlf diabetic rtnop w macular edema|Oth diab w moderate nonprlf diabetic rtnop w macular edema +C4268133|T047|AB|E13.3311|ICD10CM|Oth diab with moderate nonp rtnop with macular edema, r eye|Oth diab with moderate nonp rtnop with macular edema, r eye +C4268134|T047|AB|E13.3312|ICD10CM|Oth diab with moderate nonp rtnop with macular edema, l eye|Oth diab with moderate nonp rtnop with macular edema, l eye +C4268135|T047|AB|E13.3313|ICD10CM|Oth diabetes with moderate nonp rtnop with macular edema, bi|Oth diabetes with moderate nonp rtnop with macular edema, bi +C4268136|T047|AB|E13.3319|ICD10CM|Oth diab with moderate nonp rtnop with macular edema, unsp|Oth diab with moderate nonp rtnop with macular edema, unsp +C2874143|T047|AB|E13.339|ICD10CM|Oth diab w moderate nonprlf diabetic rtnop w/o macular edema|Oth diab w moderate nonprlf diabetic rtnop w/o macular edema +C4268137|T047|AB|E13.3391|ICD10CM|Oth diab with mod nonp rtnop without macular edema, r eye|Oth diab with mod nonp rtnop without macular edema, r eye +C4268138|T047|AB|E13.3392|ICD10CM|Oth diab with mod nonp rtnop without macular edema, l eye|Oth diab with mod nonp rtnop without macular edema, l eye +C4268139|T047|AB|E13.3393|ICD10CM|Oth diab with moderate nonp rtnop without macular edema, bi|Oth diab with moderate nonp rtnop without macular edema, bi +C4268140|T047|AB|E13.3399|ICD10CM|Oth diab with mod nonp rtnop without macular edema, unsp|Oth diab with mod nonp rtnop without macular edema, unsp +C2874144|T047|AB|E13.34|ICD10CM|Oth diabetes w severe nonproliferative diabetic retinopathy|Oth diabetes w severe nonproliferative diabetic retinopathy +C2874144|T047|HT|E13.34|ICD10CM|Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy|Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy +C2874145|T047|AB|E13.341|ICD10CM|Oth diabetes w severe nonprlf diabetic rtnop w macular edema|Oth diabetes w severe nonprlf diabetic rtnop w macular edema +C4268141|T047|AB|E13.3411|ICD10CM|Oth diab with severe nonp rtnop with macular edema, r eye|Oth diab with severe nonp rtnop with macular edema, r eye +C4268142|T047|AB|E13.3412|ICD10CM|Oth diab with severe nonp rtnop with macular edema, left eye|Oth diab with severe nonp rtnop with macular edema, left eye +C4268143|T047|AB|E13.3413|ICD10CM|Oth diabetes with severe nonp rtnop with macular edema, bi|Oth diabetes with severe nonp rtnop with macular edema, bi +C4268144|T047|AB|E13.3419|ICD10CM|Oth diabetes with severe nonp rtnop with macular edema, unsp|Oth diabetes with severe nonp rtnop with macular edema, unsp +C2874146|T047|AB|E13.349|ICD10CM|Oth diab w severe nonprlf diabetic rtnop w/o macular edema|Oth diab w severe nonprlf diabetic rtnop w/o macular edema +C4268145|T047|AB|E13.3491|ICD10CM|Oth diab with severe nonp rtnop without macular edema, r eye|Oth diab with severe nonp rtnop without macular edema, r eye +C4268146|T047|AB|E13.3492|ICD10CM|Oth diab with severe nonp rtnop without macular edema, l eye|Oth diab with severe nonp rtnop without macular edema, l eye +C4268147|T047|AB|E13.3493|ICD10CM|Oth diab with severe nonp rtnop without macular edema, bi|Oth diab with severe nonp rtnop without macular edema, bi +C4268148|T047|AB|E13.3499|ICD10CM|Oth diab with severe nonp rtnop without macular edema, unsp|Oth diab with severe nonp rtnop without macular edema, unsp +C2874147|T047|AB|E13.35|ICD10CM|Oth diabetes mellitus w proliferative diabetic retinopathy|Oth diabetes mellitus w proliferative diabetic retinopathy +C2874147|T047|HT|E13.35|ICD10CM|Other specified diabetes mellitus with proliferative diabetic retinopathy|Other specified diabetes mellitus with proliferative diabetic retinopathy +C2874148|T047|AB|E13.351|ICD10CM|Oth diabetes w prolif diabetic retinopathy w macular edema|Oth diabetes w prolif diabetic retinopathy w macular edema +C2874148|T047|HT|E13.351|ICD10CM|Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema|Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema +C4268149|T047|AB|E13.3511|ICD10CM|Oth diab with prolif diab rtnop with macular edema, r eye|Oth diab with prolif diab rtnop with macular edema, r eye +C4268150|T047|AB|E13.3512|ICD10CM|Oth diab with prolif diab rtnop with macular edema, left eye|Oth diab with prolif diab rtnop with macular edema, left eye +C4268151|T047|AB|E13.3513|ICD10CM|Oth diab with prolif diabetic rtnop with macular edema, bi|Oth diab with prolif diabetic rtnop with macular edema, bi +C4268152|T047|AB|E13.3519|ICD10CM|Oth diab with prolif diabetic rtnop with macular edema, unsp|Oth diab with prolif diabetic rtnop with macular edema, unsp +C4268153|T047|AB|E13.352|ICD10CM|Oth diab with prolif diabetic rtnop with trctn dtch macula|Oth diab with prolif diabetic rtnop with trctn dtch macula +C4268154|T047|AB|E13.3521|ICD10CM|Oth diab w prolif diab rtnop with trctn dtch macula, r eye|Oth diab w prolif diab rtnop with trctn dtch macula, r eye +C4268155|T047|AB|E13.3522|ICD10CM|Oth diab w prolif diab rtnop with trctn dtch macula, l eye|Oth diab w prolif diab rtnop with trctn dtch macula, l eye +C4268156|T047|AB|E13.3523|ICD10CM|Oth diab with prolif diab rtnop with trctn dtch macula, bi|Oth diab with prolif diab rtnop with trctn dtch macula, bi +C4268157|T047|AB|E13.3529|ICD10CM|Oth diab with prolif diab rtnop with trctn dtch macula, unsp|Oth diab with prolif diab rtnop with trctn dtch macula, unsp +C4268158|T047|AB|E13.353|ICD10CM|Oth diab with prolif diabetic rtnop with trctn dtch n-mcla|Oth diab with prolif diabetic rtnop with trctn dtch n-mcla +C4268159|T047|AB|E13.3531|ICD10CM|Oth diab w prolif diab rtnop with trctn dtch n-mcla, r eye|Oth diab w prolif diab rtnop with trctn dtch n-mcla, r eye +C4268160|T047|AB|E13.3532|ICD10CM|Oth diab w prolif diab rtnop with trctn dtch n-mcla, l eye|Oth diab w prolif diab rtnop with trctn dtch n-mcla, l eye +C4268161|T047|AB|E13.3533|ICD10CM|Oth diab with prolif diab rtnop with trctn dtch n-mcla, bi|Oth diab with prolif diab rtnop with trctn dtch n-mcla, bi +C4268162|T047|AB|E13.3539|ICD10CM|Oth diab with prolif diab rtnop with trctn dtch n-mcla, unsp|Oth diab with prolif diab rtnop with trctn dtch n-mcla, unsp +C4268163|T047|AB|E13.354|ICD10CM|Oth diabetes with prolif diabetic rtnop with combined detach|Oth diabetes with prolif diabetic rtnop with combined detach +C4268164|T047|AB|E13.3541|ICD10CM|Oth diab with prolif diabetic rtnop with comb detach, r eye|Oth diab with prolif diabetic rtnop with comb detach, r eye +C4268165|T047|AB|E13.3542|ICD10CM|Oth diab with prolif diab rtnop with comb detach, left eye|Oth diab with prolif diab rtnop with comb detach, left eye +C4268166|T047|AB|E13.3543|ICD10CM|Oth diabetes with prolif diabetic rtnop with comb detach, bi|Oth diabetes with prolif diabetic rtnop with comb detach, bi +C4268167|T047|AB|E13.3549|ICD10CM|Oth diab with prolif diabetic rtnop with comb detach, unsp|Oth diab with prolif diabetic rtnop with comb detach, unsp +C4268168|T047|AB|E13.355|ICD10CM|Oth diabetes with stable proliferative diabetic retinopathy|Oth diabetes with stable proliferative diabetic retinopathy +C4268168|T047|HT|E13.355|ICD10CM|Other specified diabetes mellitus with stable proliferative diabetic retinopathy|Other specified diabetes mellitus with stable proliferative diabetic retinopathy +C4268169|T047|AB|E13.3551|ICD10CM|Oth diabetes with stable prolif diabetic rtnop, right eye|Oth diabetes with stable prolif diabetic rtnop, right eye +C4268169|T047|PT|E13.3551|ICD10CM|Other specified diabetes mellitus with stable proliferative diabetic retinopathy, right eye|Other specified diabetes mellitus with stable proliferative diabetic retinopathy, right eye +C4268170|T047|AB|E13.3552|ICD10CM|Oth diabetes with stable prolif diabetic rtnop, left eye|Oth diabetes with stable prolif diabetic rtnop, left eye +C4268170|T047|PT|E13.3552|ICD10CM|Other specified diabetes mellitus with stable proliferative diabetic retinopathy, left eye|Other specified diabetes mellitus with stable proliferative diabetic retinopathy, left eye +C4268171|T047|AB|E13.3553|ICD10CM|Oth diabetes with stable prolif diabetic rtnop, bilateral|Oth diabetes with stable prolif diabetic rtnop, bilateral +C4268171|T047|PT|E13.3553|ICD10CM|Other specified diabetes mellitus with stable proliferative diabetic retinopathy, bilateral|Other specified diabetes mellitus with stable proliferative diabetic retinopathy, bilateral +C4268172|T047|AB|E13.3559|ICD10CM|Oth diabetes with stable prolif diabetic retinopathy, unsp|Oth diabetes with stable prolif diabetic retinopathy, unsp +C4268172|T047|PT|E13.3559|ICD10CM|Other specified diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye|Other specified diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye +C2874149|T047|AB|E13.359|ICD10CM|Oth diabetes w prolif diabetic retinopathy w/o macular edema|Oth diabetes w prolif diabetic retinopathy w/o macular edema +C2874149|T047|HT|E13.359|ICD10CM|Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema|Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema +C4268173|T047|AB|E13.3591|ICD10CM|Oth diab with prolif diab rtnop without macular edema, r eye|Oth diab with prolif diab rtnop without macular edema, r eye +C4268174|T047|AB|E13.3592|ICD10CM|Oth diab with prolif diab rtnop without macular edema, l eye|Oth diab with prolif diab rtnop without macular edema, l eye +C4268175|T047|AB|E13.3593|ICD10CM|Oth diab with prolif diab rtnop without macular edema, bi|Oth diab with prolif diab rtnop without macular edema, bi +C4268176|T047|AB|E13.3599|ICD10CM|Oth diab with prolif diab rtnop without macular edema, unsp|Oth diab with prolif diab rtnop without macular edema, unsp +C0837077|T047|PT|E13.36|ICD10CM|Other specified diabetes mellitus with diabetic cataract|Other specified diabetes mellitus with diabetic cataract +C0837077|T047|AB|E13.36|ICD10CM|Other specified diabetes mellitus with diabetic cataract|Other specified diabetes mellitus with diabetic cataract +C4268177|T047|AB|E13.37|ICD10CM|Oth diabetes with diabetic macular edema, resolved fol trtmt|Oth diabetes with diabetic macular edema, resolved fol trtmt +C4268177|T047|HT|E13.37|ICD10CM|Other specified diabetes mellitus with diabetic macular edema, resolved following treatment|Other specified diabetes mellitus with diabetic macular edema, resolved following treatment +C4268178|T047|AB|E13.37X1|ICD10CM|Oth diab with diab macular edema, resolved fol trtmt, r eye|Oth diab with diab macular edema, resolved fol trtmt, r eye +C4268179|T047|AB|E13.37X2|ICD10CM|Oth diab with diab macular edema, resolved fol trtmt, l eye|Oth diab with diab macular edema, resolved fol trtmt, l eye +C4268180|T047|AB|E13.37X3|ICD10CM|Oth diab with diabetic macular edema, resolved fol trtmt, bi|Oth diab with diabetic macular edema, resolved fol trtmt, bi +C4268181|T047|AB|E13.37X9|ICD10CM|Oth diab with diab macular edema, resolved fol trtmt, unsp|Oth diab with diab macular edema, resolved fol trtmt, unsp +C2874150|T047|AB|E13.39|ICD10CM|Oth diabetes mellitus w oth diabetic ophthalmic complication|Oth diabetes mellitus w oth diabetic ophthalmic complication +C2874150|T047|PT|E13.39|ICD10CM|Other specified diabetes mellitus with other diabetic ophthalmic complication|Other specified diabetes mellitus with other diabetic ophthalmic complication +C0348936|T047|AB|E13.4|ICD10CM|Oth diabetes mellitus with neurological complications|Oth diabetes mellitus with neurological complications +C0348936|T047|HT|E13.4|ICD10CM|Other specified diabetes mellitus with neurological complications|Other specified diabetes mellitus with neurological complications +C0348936|T047|PT|E13.4|ICD10|Other specified diabetes mellitus with neurological complications|Other specified diabetes mellitus with neurological complications +C2874151|T047|AB|E13.40|ICD10CM|Oth diabetes mellitus with diabetic neuropathy, unspecified|Oth diabetes mellitus with diabetic neuropathy, unspecified +C2874151|T047|PT|E13.40|ICD10CM|Other specified diabetes mellitus with diabetic neuropathy, unspecified|Other specified diabetes mellitus with diabetic neuropathy, unspecified +C0837080|T047|AB|E13.41|ICD10CM|Oth diabetes mellitus with diabetic mononeuropathy|Oth diabetes mellitus with diabetic mononeuropathy +C0837080|T047|PT|E13.41|ICD10CM|Other specified diabetes mellitus with diabetic mononeuropathy|Other specified diabetes mellitus with diabetic mononeuropathy +C0837081|T047|AB|E13.42|ICD10CM|Oth diabetes mellitus with diabetic polyneuropathy|Oth diabetes mellitus with diabetic polyneuropathy +C2874152|T047|ET|E13.42|ICD10CM|Other specified diabetes mellitus with diabetic neuralgia|Other specified diabetes mellitus with diabetic neuralgia +C0837081|T047|PT|E13.42|ICD10CM|Other specified diabetes mellitus with diabetic polyneuropathy|Other specified diabetes mellitus with diabetic polyneuropathy +C2874154|T047|AB|E13.43|ICD10CM|Oth diabetes mellitus w diabetic autonomic (poly)neuropathy|Oth diabetes mellitus w diabetic autonomic (poly)neuropathy +C2874154|T047|PT|E13.43|ICD10CM|Other specified diabetes mellitus with diabetic autonomic (poly)neuropathy|Other specified diabetes mellitus with diabetic autonomic (poly)neuropathy +C2874153|T047|ET|E13.43|ICD10CM|Other specified diabetes mellitus with diabetic gastroparesis|Other specified diabetes mellitus with diabetic gastroparesis +C2874155|T047|AB|E13.44|ICD10CM|Other specified diabetes mellitus with diabetic amyotrophy|Other specified diabetes mellitus with diabetic amyotrophy +C2874155|T047|PT|E13.44|ICD10CM|Other specified diabetes mellitus with diabetic amyotrophy|Other specified diabetes mellitus with diabetic amyotrophy +C2874156|T047|AB|E13.49|ICD10CM|Oth diabetes w oth diabetic neurological complication|Oth diabetes w oth diabetic neurological complication +C2874156|T047|PT|E13.49|ICD10CM|Other specified diabetes mellitus with other diabetic neurological complication|Other specified diabetes mellitus with other diabetic neurological complication +C0837084|T047|AB|E13.5|ICD10CM|Oth diabetes mellitus with circulatory complications|Oth diabetes mellitus with circulatory complications +C0837084|T047|HT|E13.5|ICD10CM|Other specified diabetes mellitus with circulatory complications|Other specified diabetes mellitus with circulatory complications +C0348937|T047|PT|E13.5|ICD10|Other specified diabetes mellitus with peripheral circulatory complications|Other specified diabetes mellitus with peripheral circulatory complications +C2874157|T047|AB|E13.51|ICD10CM|Oth diabetes w diabetic peripheral angiopathy w/o gangrene|Oth diabetes w diabetic peripheral angiopathy w/o gangrene +C2874157|T047|PT|E13.51|ICD10CM|Other specified diabetes mellitus with diabetic peripheral angiopathy without gangrene|Other specified diabetes mellitus with diabetic peripheral angiopathy without gangrene +C2874159|T047|AB|E13.52|ICD10CM|Oth diabetes w diabetic peripheral angiopathy w gangrene|Oth diabetes w diabetic peripheral angiopathy w gangrene +C2874158|T047|ET|E13.52|ICD10CM|Other specified diabetes mellitus with diabetic gangrene|Other specified diabetes mellitus with diabetic gangrene +C2874159|T047|PT|E13.52|ICD10CM|Other specified diabetes mellitus with diabetic peripheral angiopathy with gangrene|Other specified diabetes mellitus with diabetic peripheral angiopathy with gangrene +C2874160|T047|AB|E13.59|ICD10CM|Oth diabetes mellitus with other circulatory complications|Oth diabetes mellitus with other circulatory complications +C2874160|T047|PT|E13.59|ICD10CM|Other specified diabetes mellitus with other circulatory complications|Other specified diabetes mellitus with other circulatory complications +C0348931|T047|AB|E13.6|ICD10CM|Oth diabetes mellitus with other specified complications|Oth diabetes mellitus with other specified complications +C0348931|T047|HT|E13.6|ICD10CM|Other specified diabetes mellitus with other specified complications|Other specified diabetes mellitus with other specified complications +C0348931|T047|PT|E13.6|ICD10|Other specified diabetes mellitus with other specified complications|Other specified diabetes mellitus with other specified complications +C2874161|T047|AB|E13.61|ICD10CM|Other specified diabetes mellitus with diabetic arthropathy|Other specified diabetes mellitus with diabetic arthropathy +C2874161|T047|HT|E13.61|ICD10CM|Other specified diabetes mellitus with diabetic arthropathy|Other specified diabetes mellitus with diabetic arthropathy +C2874163|T047|AB|E13.610|ICD10CM|Oth diabetes mellitus with diabetic neuropathic arthropathy|Oth diabetes mellitus with diabetic neuropathic arthropathy +C2874162|T047|ET|E13.610|ICD10CM|Other specified diabetes mellitus with Charcôt's joints|Other specified diabetes mellitus with Charcôt's joints +C2874163|T047|PT|E13.610|ICD10CM|Other specified diabetes mellitus with diabetic neuropathic arthropathy|Other specified diabetes mellitus with diabetic neuropathic arthropathy +C2874164|T047|AB|E13.618|ICD10CM|Oth diabetes mellitus with other diabetic arthropathy|Oth diabetes mellitus with other diabetic arthropathy +C2874164|T047|PT|E13.618|ICD10CM|Other specified diabetes mellitus with other diabetic arthropathy|Other specified diabetes mellitus with other diabetic arthropathy +C2874165|T047|AB|E13.62|ICD10CM|Other specified diabetes mellitus with skin complications|Other specified diabetes mellitus with skin complications +C2874165|T047|HT|E13.62|ICD10CM|Other specified diabetes mellitus with skin complications|Other specified diabetes mellitus with skin complications +C2874167|T047|AB|E13.620|ICD10CM|Other specified diabetes mellitus with diabetic dermatitis|Other specified diabetes mellitus with diabetic dermatitis +C2874167|T047|PT|E13.620|ICD10CM|Other specified diabetes mellitus with diabetic dermatitis|Other specified diabetes mellitus with diabetic dermatitis +C2874166|T047|ET|E13.620|ICD10CM|Other specified diabetes mellitus with diabetic necrobiosis lipoidica|Other specified diabetes mellitus with diabetic necrobiosis lipoidica +C2874168|T047|AB|E13.621|ICD10CM|Other specified diabetes mellitus with foot ulcer|Other specified diabetes mellitus with foot ulcer +C2874168|T047|PT|E13.621|ICD10CM|Other specified diabetes mellitus with foot ulcer|Other specified diabetes mellitus with foot ulcer +C2874169|T047|AB|E13.622|ICD10CM|Other specified diabetes mellitus with other skin ulcer|Other specified diabetes mellitus with other skin ulcer +C2874169|T047|PT|E13.622|ICD10CM|Other specified diabetes mellitus with other skin ulcer|Other specified diabetes mellitus with other skin ulcer +C2874170|T047|AB|E13.628|ICD10CM|Oth diabetes mellitus with other skin complications|Oth diabetes mellitus with other skin complications +C2874170|T047|PT|E13.628|ICD10CM|Other specified diabetes mellitus with other skin complications|Other specified diabetes mellitus with other skin complications +C2874171|T047|AB|E13.63|ICD10CM|Other specified diabetes mellitus with oral complications|Other specified diabetes mellitus with oral complications +C2874171|T047|HT|E13.63|ICD10CM|Other specified diabetes mellitus with oral complications|Other specified diabetes mellitus with oral complications +C2874172|T047|AB|E13.630|ICD10CM|Other specified diabetes mellitus with periodontal disease|Other specified diabetes mellitus with periodontal disease +C2874172|T047|PT|E13.630|ICD10CM|Other specified diabetes mellitus with periodontal disease|Other specified diabetes mellitus with periodontal disease +C2874173|T047|AB|E13.638|ICD10CM|Oth diabetes mellitus with other oral complications|Oth diabetes mellitus with other oral complications +C2874173|T047|PT|E13.638|ICD10CM|Other specified diabetes mellitus with other oral complications|Other specified diabetes mellitus with other oral complications +C0837091|T047|HT|E13.64|ICD10CM|Other specified diabetes mellitus with hypoglycemia|Other specified diabetes mellitus with hypoglycemia +C0837091|T047|AB|E13.64|ICD10CM|Other specified diabetes mellitus with hypoglycemia|Other specified diabetes mellitus with hypoglycemia +C2874174|T047|AB|E13.641|ICD10CM|Oth diabetes mellitus with hypoglycemia with coma|Oth diabetes mellitus with hypoglycemia with coma +C2874174|T047|PT|E13.641|ICD10CM|Other specified diabetes mellitus with hypoglycemia with coma|Other specified diabetes mellitus with hypoglycemia with coma +C2874175|T047|AB|E13.649|ICD10CM|Oth diabetes mellitus with hypoglycemia without coma|Oth diabetes mellitus with hypoglycemia without coma +C2874175|T047|PT|E13.649|ICD10CM|Other specified diabetes mellitus with hypoglycemia without coma|Other specified diabetes mellitus with hypoglycemia without coma +C2874176|T047|AB|E13.65|ICD10CM|Other specified diabetes mellitus with hyperglycemia|Other specified diabetes mellitus with hyperglycemia +C2874176|T047|PT|E13.65|ICD10CM|Other specified diabetes mellitus with hyperglycemia|Other specified diabetes mellitus with hyperglycemia +C0348931|T047|AB|E13.69|ICD10CM|Oth diabetes mellitus with other specified complication|Oth diabetes mellitus with other specified complication +C0348931|T047|PT|E13.69|ICD10CM|Other specified diabetes mellitus with other specified complication|Other specified diabetes mellitus with other specified complication +C0348938|T047|PT|E13.7|ICD10|Other specified diabetes mellitus with multiple complications|Other specified diabetes mellitus with multiple complications +C0348932|T047|AB|E13.8|ICD10CM|Oth diabetes mellitus with unspecified complications|Oth diabetes mellitus with unspecified complications +C0348932|T047|PT|E13.8|ICD10CM|Other specified diabetes mellitus with unspecified complications|Other specified diabetes mellitus with unspecified complications +C0348932|T047|PT|E13.8|ICD10|Other specified diabetes mellitus with unspecified complications|Other specified diabetes mellitus with unspecified complications +C0494293|T047|PT|E13.9|ICD10|Other specified diabetes mellitus without complications|Other specified diabetes mellitus without complications +C0494293|T047|PT|E13.9|ICD10CM|Other specified diabetes mellitus without complications|Other specified diabetes mellitus without complications +C0494293|T047|AB|E13.9|ICD10CM|Other specified diabetes mellitus without complications|Other specified diabetes mellitus without complications +C0011849|T047|HT|E14|ICD10|Unspecified diabetes mellitus|Unspecified diabetes mellitus +C0494295|T047|PT|E14.0|ICD10|Unspecified diabetes mellitus with coma|Unspecified diabetes mellitus with coma +C0494296|T047|PT|E14.1|ICD10|Unspecified diabetes mellitus with ketoacidosis|Unspecified diabetes mellitus with ketoacidosis +C0348450|T047|PT|E14.2|ICD10|Unspecified diabetes mellitus with renal complications|Unspecified diabetes mellitus with renal complications +C1744704|T047|PT|E14.3|ICD10|Unspecified diabetes mellitus with ophthalmic complications|Unspecified diabetes mellitus with ophthalmic complications +C2362567|T047|PT|E14.4|ICD10|Unspecified diabetes mellitus with neurological complications|Unspecified diabetes mellitus with neurological complications +C0011871|T047|PT|E14.5|ICD10|Unspecified diabetes mellitus with peripheral circulatory complications|Unspecified diabetes mellitus with peripheral circulatory complications +C0494300|T047|PT|E14.6|ICD10|Unspecified diabetes mellitus with other specified complications|Unspecified diabetes mellitus with other specified complications +C0348939|T047|PT|E14.7|ICD10|Unspecified diabetes mellitus with multiple complications|Unspecified diabetes mellitus with multiple complications +C0342257|T047|PT|E14.8|ICD10|Unspecified diabetes mellitus with unspecified complications|Unspecified diabetes mellitus with unspecified complications +C0271635|T047|PT|E14.9|ICD10|Unspecified diabetes mellitus without complications|Unspecified diabetes mellitus without complications +C1392869|T047|ET|E15|ICD10CM|drug-induced insulin coma in nondiabetic|drug-induced insulin coma in nondiabetic +C4290096|T047|ET|E15|ICD10CM|hyperinsulinism with hypoglycemic coma|hyperinsulinism with hypoglycemic coma +C0020617|T047|ET|E15|ICD10CM|hypoglycemic coma NOS|hypoglycemic coma NOS +C0338603|T047|PT|E15|ICD10|Nondiabetic hypoglycaemic coma|Nondiabetic hypoglycaemic coma +C0338603|T047|PT|E15|ICD10AE|Nondiabetic hypoglycemic coma|Nondiabetic hypoglycemic coma +C0338603|T047|PT|E15|ICD10CM|Nondiabetic hypoglycemic coma|Nondiabetic hypoglycemic coma +C0338603|T047|AB|E15|ICD10CM|Nondiabetic hypoglycemic coma|Nondiabetic hypoglycemic coma +C0348451|T047|HT|E15-E16|ICD10CM|Other disorders of glucose regulation and pancreatic internal secretion (E15-E16)|Other disorders of glucose regulation and pancreatic internal secretion (E15-E16) +C0348451|T047|HT|E15-E16.9|ICD10|Other disorders of glucose regulation and pancreatic internal secretion|Other disorders of glucose regulation and pancreatic internal secretion +C0154189|T047|HT|E16|ICD10|Other disorders of pancreatic internal secretion|Other disorders of pancreatic internal secretion +C0154189|T047|HT|E16|ICD10CM|Other disorders of pancreatic internal secretion|Other disorders of pancreatic internal secretion +C0154189|T047|AB|E16|ICD10CM|Other disorders of pancreatic internal secretion|Other disorders of pancreatic internal secretion +C0348942|T046|PT|E16.0|ICD10|Drug-induced hypoglycaemia without coma|Drug-induced hypoglycaemia without coma +C0348942|T046|PT|E16.0|ICD10AE|Drug-induced hypoglycemia without coma|Drug-induced hypoglycemia without coma +C0348942|T046|PT|E16.0|ICD10CM|Drug-induced hypoglycemia without coma|Drug-induced hypoglycemia without coma +C0348942|T046|AB|E16.0|ICD10CM|Drug-induced hypoglycemia without coma|Drug-induced hypoglycemia without coma +C0271705|T047|ET|E16.1|ICD10CM|Functional hyperinsulinism|Functional hyperinsulinism +C2874178|T047|ET|E16.1|ICD10CM|Functional nonhyperinsulinemic hypoglycemia|Functional nonhyperinsulinemic hypoglycemia +C0020459|T047|ET|E16.1|ICD10CM|Hyperinsulinism NOS|Hyperinsulinism NOS +C0271706|T047|ET|E16.1|ICD10CM|Hyperplasia of pancreatic islet beta cells NOS|Hyperplasia of pancreatic islet beta cells NOS +C0348452|T047|PT|E16.1|ICD10|Other hypoglycaemia|Other hypoglycaemia +C0348452|T047|PT|E16.1|ICD10CM|Other hypoglycemia|Other hypoglycemia +C0348452|T047|AB|E16.1|ICD10CM|Other hypoglycemia|Other hypoglycemia +C0348452|T047|PT|E16.1|ICD10AE|Other hypoglycemia|Other hypoglycemia +C0020615|T047|PT|E16.2|ICD10|Hypoglycaemia, unspecified|Hypoglycaemia, unspecified +C0020615|T047|PT|E16.2|ICD10AE|Hypoglycemia, unspecified|Hypoglycemia, unspecified +C0020615|T047|PT|E16.2|ICD10CM|Hypoglycemia, unspecified|Hypoglycemia, unspecified +C0020615|T047|AB|E16.2|ICD10CM|Hypoglycemia, unspecified|Hypoglycemia, unspecified +C2874179|T033|ET|E16.3|ICD10CM|Hyperplasia of pancreatic endocrine cells with glucagon excess|Hyperplasia of pancreatic endocrine cells with glucagon excess +C0494303|T033|PT|E16.3|ICD10|Increased secretion of glucagon|Increased secretion of glucagon +C0494303|T033|PT|E16.3|ICD10CM|Increased secretion of glucagon|Increased secretion of glucagon +C0494303|T033|AB|E16.3|ICD10CM|Increased secretion of glucagon|Increased secretion of glucagon +C0000774|T047|PT|E16.4|ICD10|Abnormal secretion of gastrin|Abnormal secretion of gastrin +C0232567|T033|ET|E16.4|ICD10CM|Hypergastrinemia|Hypergastrinemia +C2874180|T033|ET|E16.4|ICD10CM|Hyperplasia of pancreatic endocrine cells with gastrin excess|Hyperplasia of pancreatic endocrine cells with gastrin excess +C2874181|T047|PT|E16.4|ICD10CM|Increased secretion of gastrin|Increased secretion of gastrin +C2874181|T047|AB|E16.4|ICD10CM|Increased secretion of gastrin|Increased secretion of gastrin +C0043515|T047|ET|E16.4|ICD10CM|Zollinger-Ellison syndrome|Zollinger-Ellison syndrome +C2874182|T047|ET|E16.8|ICD10CM|Increased secretion from endocrine pancreas of growth hormone-releasing hormone|Increased secretion from endocrine pancreas of growth hormone-releasing hormone +C2874183|T047|ET|E16.8|ICD10CM|Increased secretion from endocrine pancreas of pancreatic polypeptide|Increased secretion from endocrine pancreas of pancreatic polypeptide +C2874184|T047|ET|E16.8|ICD10CM|Increased secretion from endocrine pancreas of somatostatin|Increased secretion from endocrine pancreas of somatostatin +C2874185|T047|ET|E16.8|ICD10CM|Increased secretion from endocrine pancreas of vasoactive-intestinal polypeptide|Increased secretion from endocrine pancreas of vasoactive-intestinal polypeptide +C0154192|T047|PT|E16.8|ICD10CM|Other specified disorders of pancreatic internal secretion|Other specified disorders of pancreatic internal secretion +C0154192|T047|AB|E16.8|ICD10CM|Other specified disorders of pancreatic internal secretion|Other specified disorders of pancreatic internal secretion +C0154192|T047|PT|E16.8|ICD10|Other specified disorders of pancreatic internal secretion|Other specified disorders of pancreatic internal secretion +C1263961|T047|PT|E16.9|ICD10|Disorder of pancreatic internal secretion, unspecified|Disorder of pancreatic internal secretion, unspecified +C1263961|T047|PT|E16.9|ICD10CM|Disorder of pancreatic internal secretion, unspecified|Disorder of pancreatic internal secretion, unspecified +C1263961|T047|AB|E16.9|ICD10CM|Disorder of pancreatic internal secretion, unspecified|Disorder of pancreatic internal secretion, unspecified +C0027773|T047|ET|E16.9|ICD10CM|Islet-cell hyperplasia NOS|Islet-cell hyperplasia NOS +C0027773|T047|ET|E16.9|ICD10CM|Pancreatic endocrine cell hyperplasia NOS|Pancreatic endocrine cell hyperplasia NOS +C0020626|T047|HT|E20|ICD10CM|Hypoparathyroidism|Hypoparathyroidism +C0020626|T047|AB|E20|ICD10CM|Hypoparathyroidism|Hypoparathyroidism +C0020626|T047|HT|E20|ICD10|Hypoparathyroidism|Hypoparathyroidism +C0178257|T047|HT|E20-E35|ICD10CM|Disorders of other endocrine glands (E20-E35)|Disorders of other endocrine glands (E20-E35) +C0178257|T047|HT|E20-E35.9|ICD10|Disorders of other endocrine glands|Disorders of other endocrine glands +C0342342|T047|PT|E20.0|ICD10|Idiopathic hypoparathyroidism|Idiopathic hypoparathyroidism +C0342342|T047|PT|E20.0|ICD10CM|Idiopathic hypoparathyroidism|Idiopathic hypoparathyroidism +C0342342|T047|AB|E20.0|ICD10CM|Idiopathic hypoparathyroidism|Idiopathic hypoparathyroidism +C0033806|T047|PT|E20.1|ICD10|Pseudohypoparathyroidism|Pseudohypoparathyroidism +C0033806|T047|PT|E20.1|ICD10CM|Pseudohypoparathyroidism|Pseudohypoparathyroidism +C0033806|T047|AB|E20.1|ICD10CM|Pseudohypoparathyroidism|Pseudohypoparathyroidism +C0348454|T047|PT|E20.8|ICD10|Other hypoparathyroidism|Other hypoparathyroidism +C0348454|T047|PT|E20.8|ICD10CM|Other hypoparathyroidism|Other hypoparathyroidism +C0348454|T047|AB|E20.8|ICD10CM|Other hypoparathyroidism|Other hypoparathyroidism +C0020626|T047|PT|E20.9|ICD10CM|Hypoparathyroidism, unspecified|Hypoparathyroidism, unspecified +C0020626|T047|AB|E20.9|ICD10CM|Hypoparathyroidism, unspecified|Hypoparathyroidism, unspecified +C0020626|T047|PT|E20.9|ICD10|Hypoparathyroidism, unspecified|Hypoparathyroidism, unspecified +C0242037|T047|ET|E20.9|ICD10CM|Parathyroid tetany|Parathyroid tetany +C0494304|T047|HT|E21|ICD10|Hyperparathyroidism and other disorders of parathyroid gland|Hyperparathyroidism and other disorders of parathyroid gland +C0494304|T047|AB|E21|ICD10CM|Hyperparathyroidism and other disorders of parathyroid gland|Hyperparathyroidism and other disorders of parathyroid gland +C0494304|T047|HT|E21|ICD10CM|Hyperparathyroidism and other disorders of parathyroid gland|Hyperparathyroidism and other disorders of parathyroid gland +C0271844|T047|ET|E21.0|ICD10CM|Hyperplasia of parathyroid|Hyperplasia of parathyroid +C2874186|T047|ET|E21.0|ICD10CM|Osteitis fibrosa cystica generalisata [von Recklinghausen's disease of bone]|Osteitis fibrosa cystica generalisata [von Recklinghausen's disease of bone] +C0221002|T047|PT|E21.0|ICD10CM|Primary hyperparathyroidism|Primary hyperparathyroidism +C0221002|T047|AB|E21.0|ICD10CM|Primary hyperparathyroidism|Primary hyperparathyroidism +C0221002|T047|PT|E21.0|ICD10|Primary hyperparathyroidism|Primary hyperparathyroidism +C0494305|T047|PT|E21.1|ICD10CM|Secondary hyperparathyroidism, not elsewhere classified|Secondary hyperparathyroidism, not elsewhere classified +C0494305|T047|AB|E21.1|ICD10CM|Secondary hyperparathyroidism, not elsewhere classified|Secondary hyperparathyroidism, not elsewhere classified +C0494305|T047|PT|E21.1|ICD10|Secondary hyperparathyroidism, not elsewhere classified|Secondary hyperparathyroidism, not elsewhere classified +C0348455|T047|PT|E21.2|ICD10CM|Other hyperparathyroidism|Other hyperparathyroidism +C0348455|T047|AB|E21.2|ICD10CM|Other hyperparathyroidism|Other hyperparathyroidism +C0348455|T047|PT|E21.2|ICD10|Other hyperparathyroidism|Other hyperparathyroidism +C0271858|T047|ET|E21.2|ICD10CM|Tertiary hyperparathyroidism|Tertiary hyperparathyroidism +C0020502|T047|PT|E21.3|ICD10|Hyperparathyroidism, unspecified|Hyperparathyroidism, unspecified +C0020502|T047|PT|E21.3|ICD10CM|Hyperparathyroidism, unspecified|Hyperparathyroidism, unspecified +C0020502|T047|AB|E21.3|ICD10CM|Hyperparathyroidism, unspecified|Hyperparathyroidism, unspecified +C0154195|T047|PT|E21.4|ICD10|Other specified disorders of parathyroid gland|Other specified disorders of parathyroid gland +C0154195|T047|PT|E21.4|ICD10CM|Other specified disorders of parathyroid gland|Other specified disorders of parathyroid gland +C0154195|T047|AB|E21.4|ICD10CM|Other specified disorders of parathyroid gland|Other specified disorders of parathyroid gland +C0030517|T047|PT|E21.5|ICD10CM|Disorder of parathyroid gland, unspecified|Disorder of parathyroid gland, unspecified +C0030517|T047|AB|E21.5|ICD10CM|Disorder of parathyroid gland, unspecified|Disorder of parathyroid gland, unspecified +C0030517|T047|PT|E21.5|ICD10|Disorder of parathyroid gland, unspecified|Disorder of parathyroid gland, unspecified +C0348469|T047|HT|E22|ICD10|Hyperfunction of pituitary gland|Hyperfunction of pituitary gland +C0348469|T047|AB|E22|ICD10CM|Hyperfunction of pituitary gland|Hyperfunction of pituitary gland +C0348469|T047|HT|E22|ICD10CM|Hyperfunction of pituitary gland|Hyperfunction of pituitary gland +C0405578|T047|PT|E22.0|ICD10CM|Acromegaly and pituitary gigantism|Acromegaly and pituitary gigantism +C0405578|T047|AB|E22.0|ICD10CM|Acromegaly and pituitary gigantism|Acromegaly and pituitary gigantism +C0405578|T047|PT|E22.0|ICD10|Acromegaly and pituitary gigantism|Acromegaly and pituitary gigantism +C0271547|T047|ET|E22.0|ICD10CM|Overproduction of growth hormone|Overproduction of growth hormone +C0020514|T047|PT|E22.1|ICD10|Hyperprolactinaemia|Hyperprolactinaemia +C0020514|T047|PT|E22.1|ICD10CM|Hyperprolactinemia|Hyperprolactinemia +C0020514|T047|AB|E22.1|ICD10CM|Hyperprolactinemia|Hyperprolactinemia +C0020514|T047|PT|E22.1|ICD10AE|Hyperprolactinemia|Hyperprolactinemia +C0021141|T047|PT|E22.2|ICD10CM|Syndrome of inappropriate secretion of antidiuretic hormone|Syndrome of inappropriate secretion of antidiuretic hormone +C0021141|T047|AB|E22.2|ICD10CM|Syndrome of inappropriate secretion of antidiuretic hormone|Syndrome of inappropriate secretion of antidiuretic hormone +C0021141|T047|PT|E22.2|ICD10|Syndrome of inappropriate secretion of antidiuretic hormone|Syndrome of inappropriate secretion of antidiuretic hormone +C0342543|T047|ET|E22.8|ICD10CM|Central precocious puberty|Central precocious puberty +C0348456|T046|PT|E22.8|ICD10|Other hyperfunction of pituitary gland|Other hyperfunction of pituitary gland +C0348456|T046|PT|E22.8|ICD10CM|Other hyperfunction of pituitary gland|Other hyperfunction of pituitary gland +C0348456|T046|AB|E22.8|ICD10CM|Other hyperfunction of pituitary gland|Other hyperfunction of pituitary gland +C0348469|T047|PT|E22.9|ICD10CM|Hyperfunction of pituitary gland, unspecified|Hyperfunction of pituitary gland, unspecified +C0348469|T047|AB|E22.9|ICD10CM|Hyperfunction of pituitary gland, unspecified|Hyperfunction of pituitary gland, unspecified +C0348469|T047|PT|E22.9|ICD10|Hyperfunction of pituitary gland, unspecified|Hyperfunction of pituitary gland, unspecified +C0494308|T047|HT|E23|ICD10|Hypofunction and other disorders of pituitary gland|Hypofunction and other disorders of pituitary gland +C0494308|T047|AB|E23|ICD10CM|Hypofunction and other disorders of the pituitary gland|Hypofunction and other disorders of the pituitary gland +C0494308|T047|HT|E23|ICD10CM|Hypofunction and other disorders of the pituitary gland|Hypofunction and other disorders of the pituitary gland +C4290097|T047|ET|E23|ICD10CM|the listed conditions whether the disorder is in the pituitary or the hypothalamus|the listed conditions whether the disorder is in the pituitary or the hypothalamus +C0271582|T047|ET|E23.0|ICD10CM|Fertile eunuch syndrome|Fertile eunuch syndrome +C0271623|T047|ET|E23.0|ICD10CM|Hypogonadotropic hypogonadism|Hypogonadotropic hypogonadism +C0020635|T047|PT|E23.0|ICD10|Hypopituitarism|Hypopituitarism +C0020635|T047|PT|E23.0|ICD10CM|Hypopituitarism|Hypopituitarism +C0020635|T047|AB|E23.0|ICD10CM|Hypopituitarism|Hypopituitarism +C0342381|T047|ET|E23.0|ICD10CM|Idiopathic growth hormone deficiency|Idiopathic growth hormone deficiency +C0271577|T047|ET|E23.0|ICD10CM|Isolated deficiency of gonadotropin|Isolated deficiency of gonadotropin +C0013338|T047|ET|E23.0|ICD10CM|Isolated deficiency of growth hormone|Isolated deficiency of growth hormone +C2874188|T047|ET|E23.0|ICD10CM|Isolated deficiency of pituitary hormone|Isolated deficiency of pituitary hormone +C0162809|T047|ET|E23.0|ICD10CM|Kallmann's syndrome|Kallmann's syndrome +C0013338|T047|ET|E23.0|ICD10CM|Lorain-Levi short stature|Lorain-Levi short stature +C2874189|T046|ET|E23.0|ICD10CM|Necrosis of pituitary gland (postpartum)|Necrosis of pituitary gland (postpartum) +C0242343|T047|ET|E23.0|ICD10CM|Panhypopituitarism|Panhypopituitarism +C0221405|T047|ET|E23.0|ICD10CM|Pituitary cachexia|Pituitary cachexia +C0020635|T047|ET|E23.0|ICD10CM|Pituitary insufficiency NOS|Pituitary insufficiency NOS +C2874190|T047|ET|E23.0|ICD10CM|Pituitary short stature|Pituitary short stature +C0242342|T047|ET|E23.0|ICD10CM|Sheehan's syndrome|Sheehan's syndrome +C0242342|T047|ET|E23.0|ICD10CM|Simmonds' disease|Simmonds' disease +C0494309|T046|PT|E23.1|ICD10CM|Drug-induced hypopituitarism|Drug-induced hypopituitarism +C0494309|T046|AB|E23.1|ICD10CM|Drug-induced hypopituitarism|Drug-induced hypopituitarism +C0494309|T046|PT|E23.1|ICD10|Drug-induced hypopituitarism|Drug-induced hypopituitarism +C0011848|T047|PT|E23.2|ICD10CM|Diabetes insipidus|Diabetes insipidus +C0011848|T047|AB|E23.2|ICD10CM|Diabetes insipidus|Diabetes insipidus +C0011848|T047|PT|E23.2|ICD10|Diabetes insipidus|Diabetes insipidus +C0869047|T046|PT|E23.3|ICD10|Hypothalamic dysfunction, not elsewhere classified|Hypothalamic dysfunction, not elsewhere classified +C0869047|T046|PT|E23.3|ICD10CM|Hypothalamic dysfunction, not elsewhere classified|Hypothalamic dysfunction, not elsewhere classified +C0869047|T046|AB|E23.3|ICD10CM|Hypothalamic dysfunction, not elsewhere classified|Hypothalamic dysfunction, not elsewhere classified +C0271543|T020|ET|E23.6|ICD10CM|Abscess of pituitary|Abscess of pituitary +C0016724|T047|ET|E23.6|ICD10CM|Adiposogenital dystrophy|Adiposogenital dystrophy +C0348457|T047|PT|E23.6|ICD10CM|Other disorders of pituitary gland|Other disorders of pituitary gland +C0348457|T047|AB|E23.6|ICD10CM|Other disorders of pituitary gland|Other disorders of pituitary gland +C0348457|T047|PT|E23.6|ICD10|Other disorders of pituitary gland|Other disorders of pituitary gland +C0032002|T047|PT|E23.7|ICD10|Disorder of pituitary gland, unspecified|Disorder of pituitary gland, unspecified +C0032002|T047|PT|E23.7|ICD10CM|Disorder of pituitary gland, unspecified|Disorder of pituitary gland, unspecified +C0032002|T047|AB|E23.7|ICD10CM|Disorder of pituitary gland, unspecified|Disorder of pituitary gland, unspecified +C0010481|T047|HT|E24|ICD10CM|Cushing's syndrome|Cushing's syndrome +C0010481|T047|AB|E24|ICD10CM|Cushing's syndrome|Cushing's syndrome +C0010481|T047|HT|E24|ICD10|Cushing's syndrome|Cushing's syndrome +C2874191|T047|ET|E24.0|ICD10CM|Overproduction of pituitary ACTH|Overproduction of pituitary ACTH +C0221406|T047|PT|E24.0|ICD10|Pituitary-dependent Cushing's disease|Pituitary-dependent Cushing's disease +C0221406|T047|PT|E24.0|ICD10CM|Pituitary-dependent Cushing's disease|Pituitary-dependent Cushing's disease +C0221406|T047|AB|E24.0|ICD10CM|Pituitary-dependent Cushing's disease|Pituitary-dependent Cushing's disease +C1399950|T047|ET|E24.0|ICD10CM|Pituitary-dependent hypercorticalism|Pituitary-dependent hypercorticalism +C0027577|T191|PT|E24.1|ICD10|Nelson's syndrome|Nelson's syndrome +C0027577|T191|PT|E24.1|ICD10CM|Nelson's syndrome|Nelson's syndrome +C0027577|T191|AB|E24.1|ICD10CM|Nelson's syndrome|Nelson's syndrome +C3714740|T047|PT|E24.2|ICD10|Drug-induced Cushing's syndrome|Drug-induced Cushing's syndrome +C3714740|T047|PT|E24.2|ICD10CM|Drug-induced Cushing's syndrome|Drug-induced Cushing's syndrome +C3714740|T047|AB|E24.2|ICD10CM|Drug-induced Cushing's syndrome|Drug-induced Cushing's syndrome +C0001231|T047|PT|E24.3|ICD10CM|Ectopic ACTH syndrome|Ectopic ACTH syndrome +C0001231|T047|AB|E24.3|ICD10CM|Ectopic ACTH syndrome|Ectopic ACTH syndrome +C0001231|T047|PT|E24.3|ICD10|Ectopic ACTH syndrome|Ectopic ACTH syndrome +C0342446|T047|PT|E24.4|ICD10|Alcohol-induced pseudo-Cushing's syndrome|Alcohol-induced pseudo-Cushing's syndrome +C0342446|T047|PT|E24.4|ICD10CM|Alcohol-induced pseudo-Cushing's syndrome|Alcohol-induced pseudo-Cushing's syndrome +C0342446|T047|AB|E24.4|ICD10CM|Alcohol-induced pseudo-Cushing's syndrome|Alcohol-induced pseudo-Cushing's syndrome +C0348458|T047|PT|E24.8|ICD10|Other Cushing's syndrome|Other Cushing's syndrome +C0348458|T047|PT|E24.8|ICD10CM|Other Cushing's syndrome|Other Cushing's syndrome +C0348458|T047|AB|E24.8|ICD10CM|Other Cushing's syndrome|Other Cushing's syndrome +C0010481|T047|PT|E24.9|ICD10|Cushing's syndrome, unspecified|Cushing's syndrome, unspecified +C0010481|T047|PT|E24.9|ICD10CM|Cushing's syndrome, unspecified|Cushing's syndrome, unspecified +C0010481|T047|AB|E24.9|ICD10CM|Cushing's syndrome, unspecified|Cushing's syndrome, unspecified +C0701163|T047|HT|E25|ICD10|Adrenogenital disorders|Adrenogenital disorders +C0701163|T047|HT|E25|ICD10CM|Adrenogenital disorders|Adrenogenital disorders +C0701163|T047|AB|E25|ICD10CM|Adrenogenital disorders|Adrenogenital disorders +C0865178|T047|ET|E25|ICD10CM|Female adrenal pseudohermaphroditism|Female adrenal pseudohermaphroditism +C1405552|T047|ET|E25|ICD10CM|Female heterosexual precocious pseudopuberty|Female heterosexual precocious pseudopuberty +C1405551|T047|ET|E25|ICD10CM|Male isosexual precocious pseudopuberty|Male isosexual precocious pseudopuberty +C0865179|T047|ET|E25|ICD10CM|Male macrogenitosomia praecox|Male macrogenitosomia praecox +C0865180|T047|ET|E25|ICD10CM|Male sexual precocity with adrenal hyperplasia|Male sexual precocity with adrenal hyperplasia +C4290099|T047|ET|E25|ICD10CM|Male virilization (female)|Male virilization (female) +C0852654|T047|ET|E25.0|ICD10CM|21-Hydroxylase deficiency|21-Hydroxylase deficiency +C0001627|T047|ET|E25.0|ICD10CM|Congenital adrenal hyperplasia|Congenital adrenal hyperplasia +C0494311|T047|AB|E25.0|ICD10CM|Congenital adrenogenital disorders assoc w enzyme deficiency|Congenital adrenogenital disorders assoc w enzyme deficiency +C0494311|T047|PT|E25.0|ICD10CM|Congenital adrenogenital disorders associated with enzyme deficiency|Congenital adrenogenital disorders associated with enzyme deficiency +C0494311|T047|PT|E25.0|ICD10|Congenital adrenogenital disorders associated with enzyme deficiency|Congenital adrenogenital disorders associated with enzyme deficiency +C0342464|T019|ET|E25.0|ICD10CM|Salt-losing congenital adrenal hyperplasia|Salt-losing congenital adrenal hyperplasia +C1384854|T047|ET|E25.8|ICD10CM|Idiopathic adrenogenital disorder|Idiopathic adrenogenital disorder +C0348459|T047|PT|E25.8|ICD10CM|Other adrenogenital disorders|Other adrenogenital disorders +C0348459|T047|AB|E25.8|ICD10CM|Other adrenogenital disorders|Other adrenogenital disorders +C0348459|T047|PT|E25.8|ICD10|Other adrenogenital disorders|Other adrenogenital disorders +C0701163|T047|PT|E25.9|ICD10|Adrenogenital disorder, unspecified|Adrenogenital disorder, unspecified +C0701163|T047|PT|E25.9|ICD10CM|Adrenogenital disorder, unspecified|Adrenogenital disorder, unspecified +C0701163|T047|AB|E25.9|ICD10CM|Adrenogenital disorder, unspecified|Adrenogenital disorder, unspecified +C0302280|T047|ET|E25.9|ICD10CM|Adrenogenital syndrome NOS|Adrenogenital syndrome NOS +C0020428|T047|HT|E26|ICD10|Hyperaldosteronism|Hyperaldosteronism +C0020428|T047|HT|E26|ICD10CM|Hyperaldosteronism|Hyperaldosteronism +C0020428|T047|AB|E26|ICD10CM|Hyperaldosteronism|Hyperaldosteronism +C1384514|T047|PT|E26.0|ICD10|Primary hyperaldosteronism|Primary hyperaldosteronism +C1384514|T047|HT|E26.0|ICD10CM|Primary hyperaldosteronism|Primary hyperaldosteronism +C1384514|T047|AB|E26.0|ICD10CM|Primary hyperaldosteronism|Primary hyperaldosteronism +C1384514|T047|PT|E26.01|ICD10CM|Conn's syndrome|Conn's syndrome +C1384514|T047|AB|E26.01|ICD10CM|Conn's syndrome|Conn's syndrome +C1260385|T047|ET|E26.02|ICD10CM|Familial aldosteronism type I|Familial aldosteronism type I +C1260386|T047|PT|E26.02|ICD10CM|Glucocorticoid-remediable aldosteronism|Glucocorticoid-remediable aldosteronism +C1260386|T047|AB|E26.02|ICD10CM|Glucocorticoid-remediable aldosteronism|Glucocorticoid-remediable aldosteronism +C2874194|T047|AB|E26.09|ICD10CM|Other primary hyperaldosteronism|Other primary hyperaldosteronism +C2874194|T047|PT|E26.09|ICD10CM|Other primary hyperaldosteronism|Other primary hyperaldosteronism +C2062374|T047|ET|E26.09|ICD10CM|Primary aldosteronism due to adrenal hyperplasia (bilateral)|Primary aldosteronism due to adrenal hyperplasia (bilateral) +C0271728|T047|PT|E26.1|ICD10CM|Secondary hyperaldosteronism|Secondary hyperaldosteronism +C0271728|T047|AB|E26.1|ICD10CM|Secondary hyperaldosteronism|Secondary hyperaldosteronism +C0271728|T047|PT|E26.1|ICD10|Secondary hyperaldosteronism|Secondary hyperaldosteronism +C0348460|T047|PT|E26.8|ICD10|Other hyperaldosteronism|Other hyperaldosteronism +C0348460|T047|HT|E26.8|ICD10CM|Other hyperaldosteronism|Other hyperaldosteronism +C0348460|T047|AB|E26.8|ICD10CM|Other hyperaldosteronism|Other hyperaldosteronism +C0004775|T047|PT|E26.81|ICD10CM|Bartter's syndrome|Bartter's syndrome +C0004775|T047|AB|E26.81|ICD10CM|Bartter's syndrome|Bartter's syndrome +C0348460|T047|PT|E26.89|ICD10CM|Other hyperaldosteronism|Other hyperaldosteronism +C0348460|T047|AB|E26.89|ICD10CM|Other hyperaldosteronism|Other hyperaldosteronism +C0020428|T047|ET|E26.9|ICD10CM|Aldosteronism NOS|Aldosteronism NOS +C0020428|T047|ET|E26.9|ICD10CM|Hyperaldosteronism NOS|Hyperaldosteronism NOS +C0020428|T047|PT|E26.9|ICD10CM|Hyperaldosteronism, unspecified|Hyperaldosteronism, unspecified +C0020428|T047|AB|E26.9|ICD10CM|Hyperaldosteronism, unspecified|Hyperaldosteronism, unspecified +C0020428|T047|PT|E26.9|ICD10|Hyperaldosteronism, unspecified|Hyperaldosteronism, unspecified +C0494313|T047|HT|E27|ICD10|Other disorders of adrenal gland|Other disorders of adrenal gland +C0494313|T047|AB|E27|ICD10CM|Other disorders of adrenal gland|Other disorders of adrenal gland +C0494313|T047|HT|E27|ICD10CM|Other disorders of adrenal gland|Other disorders of adrenal gland +C0348461|T047|PT|E27.0|ICD10|Other adrenocortical overactivity|Other adrenocortical overactivity +C0348461|T047|PT|E27.0|ICD10CM|Other adrenocortical overactivity|Other adrenocortical overactivity +C0348461|T047|AB|E27.0|ICD10CM|Other adrenocortical overactivity|Other adrenocortical overactivity +C2874195|T047|ET|E27.0|ICD10CM|Overproduction of ACTH, not associated with Cushing's disease|Overproduction of ACTH, not associated with Cushing's disease +C0342546|T047|ET|E27.0|ICD10CM|Premature adrenarche|Premature adrenarche +C0001403|T047|ET|E27.1|ICD10CM|Addison's disease|Addison's disease +C0271737|T047|ET|E27.1|ICD10CM|Autoimmune adrenalitis|Autoimmune adrenalitis +C0001403|T047|PT|E27.1|ICD10|Primary adrenocortical insufficiency|Primary adrenocortical insufficiency +C0001403|T047|PT|E27.1|ICD10CM|Primary adrenocortical insufficiency|Primary adrenocortical insufficiency +C0001403|T047|AB|E27.1|ICD10CM|Primary adrenocortical insufficiency|Primary adrenocortical insufficiency +C0151467|T047|PT|E27.2|ICD10CM|Addisonian crisis|Addisonian crisis +C0151467|T047|AB|E27.2|ICD10CM|Addisonian crisis|Addisonian crisis +C0151467|T047|PT|E27.2|ICD10|Addisonian crisis|Addisonian crisis +C0151467|T047|ET|E27.2|ICD10CM|Adrenal crisis|Adrenal crisis +C0151467|T047|ET|E27.2|ICD10CM|Adrenocortical crisis|Adrenocortical crisis +C0348943|T046|PT|E27.3|ICD10|Drug-induced adrenocortical insufficiency|Drug-induced adrenocortical insufficiency +C0348943|T046|PT|E27.3|ICD10CM|Drug-induced adrenocortical insufficiency|Drug-induced adrenocortical insufficiency +C0348943|T046|AB|E27.3|ICD10CM|Drug-induced adrenocortical insufficiency|Drug-induced adrenocortical insufficiency +C0494314|T047|HT|E27.4|ICD10CM|Other and unspecified adrenocortical insufficiency|Other and unspecified adrenocortical insufficiency +C0494314|T047|AB|E27.4|ICD10CM|Other and unspecified adrenocortical insufficiency|Other and unspecified adrenocortical insufficiency +C0494314|T047|PT|E27.4|ICD10|Other and unspecified adrenocortical insufficiency|Other and unspecified adrenocortical insufficiency +C0020595|T047|ET|E27.40|ICD10CM|Adrenocortical insufficiency NOS|Adrenocortical insufficiency NOS +C0020595|T047|ET|E27.40|ICD10CM|Hypoaldosteronism|Hypoaldosteronism +C0020595|T047|AB|E27.40|ICD10CM|Unspecified adrenocortical insufficiency|Unspecified adrenocortical insufficiency +C0020595|T047|PT|E27.40|ICD10CM|Unspecified adrenocortical insufficiency|Unspecified adrenocortical insufficiency +C0151693|T046|ET|E27.49|ICD10CM|Adrenal hemorrhage|Adrenal hemorrhage +C0271751|T047|ET|E27.49|ICD10CM|Adrenal infarction|Adrenal infarction +C2874196|T047|AB|E27.49|ICD10CM|Other adrenocortical insufficiency|Other adrenocortical insufficiency +C2874196|T047|PT|E27.49|ICD10CM|Other adrenocortical insufficiency|Other adrenocortical insufficiency +C0154206|T047|PT|E27.5|ICD10CM|Adrenomedullary hyperfunction|Adrenomedullary hyperfunction +C0154206|T047|AB|E27.5|ICD10CM|Adrenomedullary hyperfunction|Adrenomedullary hyperfunction +C0154206|T047|PT|E27.5|ICD10|Adrenomedullary hyperfunction|Adrenomedullary hyperfunction +C0342498|T046|ET|E27.5|ICD10CM|Adrenomedullary hyperplasia|Adrenomedullary hyperplasia +C0342455|T046|ET|E27.5|ICD10CM|Catecholamine hypersecretion|Catecholamine hypersecretion +C0271749|T047|ET|E27.8|ICD10CM|Abnormality of cortisol-binding globulin|Abnormality of cortisol-binding globulin +C0154207|T047|PT|E27.8|ICD10|Other specified disorders of adrenal gland|Other specified disorders of adrenal gland +C0154207|T047|PT|E27.8|ICD10CM|Other specified disorders of adrenal gland|Other specified disorders of adrenal gland +C0154207|T047|AB|E27.8|ICD10CM|Other specified disorders of adrenal gland|Other specified disorders of adrenal gland +C0001621|T047|PT|E27.9|ICD10|Disorder of adrenal gland, unspecified|Disorder of adrenal gland, unspecified +C0001621|T047|PT|E27.9|ICD10CM|Disorder of adrenal gland, unspecified|Disorder of adrenal gland, unspecified +C0001621|T047|AB|E27.9|ICD10CM|Disorder of adrenal gland, unspecified|Disorder of adrenal gland, unspecified +C0154208|T047|HT|E28|ICD10|Ovarian dysfunction|Ovarian dysfunction +C0154208|T047|HT|E28|ICD10CM|Ovarian dysfunction|Ovarian dysfunction +C0154208|T047|AB|E28|ICD10CM|Ovarian dysfunction|Ovarian dysfunction +C0154209|T047|PT|E28.0|ICD10CM|Estrogen excess|Estrogen excess +C0154209|T047|AB|E28.0|ICD10CM|Estrogen excess|Estrogen excess +C0154209|T047|PT|E28.0|ICD10|Estrogen excess|Estrogen excess +C0235461|T033|PT|E28.1|ICD10|Androgen excess|Androgen excess +C0235461|T033|PT|E28.1|ICD10CM|Androgen excess|Androgen excess +C0235461|T033|AB|E28.1|ICD10CM|Androgen excess|Androgen excess +C0271602|T047|ET|E28.1|ICD10CM|Hypersecretion of ovarian androgens|Hypersecretion of ovarian androgens +C0032460|T047|PT|E28.2|ICD10|Polycystic ovarian syndrome|Polycystic ovarian syndrome +C0032460|T047|PT|E28.2|ICD10CM|Polycystic ovarian syndrome|Polycystic ovarian syndrome +C0032460|T047|AB|E28.2|ICD10CM|Polycystic ovarian syndrome|Polycystic ovarian syndrome +C0032460|T047|ET|E28.2|ICD10CM|Sclerocystic ovary syndrome|Sclerocystic ovary syndrome +C0032460|T047|ET|E28.2|ICD10CM|Stein-Leventhal syndrome|Stein-Leventhal syndrome +C0085215|T047|HT|E28.3|ICD10CM|Primary ovarian failure|Primary ovarian failure +C0085215|T047|AB|E28.3|ICD10CM|Primary ovarian failure|Primary ovarian failure +C0085215|T047|PT|E28.3|ICD10|Primary ovarian failure|Primary ovarian failure +C0025322|T047|HT|E28.31|ICD10CM|Premature menopause|Premature menopause +C0025322|T047|AB|E28.31|ICD10CM|Premature menopause|Premature menopause +C2874198|T047|PT|E28.310|ICD10CM|Symptomatic premature menopause|Symptomatic premature menopause +C2874198|T047|AB|E28.310|ICD10CM|Symptomatic premature menopause|Symptomatic premature menopause +C2874199|T047|PT|E28.319|ICD10CM|Asymptomatic premature menopause|Asymptomatic premature menopause +C2874199|T047|AB|E28.319|ICD10CM|Asymptomatic premature menopause|Asymptomatic premature menopause +C0025322|T047|ET|E28.319|ICD10CM|Premature menopause NOS|Premature menopause NOS +C0239302|T033|ET|E28.39|ICD10CM|Decreased estrogen|Decreased estrogen +C2874200|T047|AB|E28.39|ICD10CM|Other primary ovarian failure|Other primary ovarian failure +C2874200|T047|PT|E28.39|ICD10CM|Other primary ovarian failure|Other primary ovarian failure +C0086367|T047|ET|E28.39|ICD10CM|Resistant ovary syndrome|Resistant ovary syndrome +C0154212|T047|PT|E28.8|ICD10CM|Other ovarian dysfunction|Other ovarian dysfunction +C0154212|T047|AB|E28.8|ICD10CM|Other ovarian dysfunction|Other ovarian dysfunction +C0154212|T047|PT|E28.8|ICD10|Other ovarian dysfunction|Other ovarian dysfunction +C0854129|T047|ET|E28.8|ICD10CM|Ovarian hyperfunction NOS|Ovarian hyperfunction NOS +C0154208|T047|PT|E28.9|ICD10|Ovarian dysfunction, unspecified|Ovarian dysfunction, unspecified +C0154208|T047|PT|E28.9|ICD10CM|Ovarian dysfunction, unspecified|Ovarian dysfunction, unspecified +C0154208|T047|AB|E28.9|ICD10CM|Ovarian dysfunction, unspecified|Ovarian dysfunction, unspecified +C0405581|T047|HT|E29|ICD10|Testicular dysfunction|Testicular dysfunction +C0405581|T047|HT|E29|ICD10CM|Testicular dysfunction|Testicular dysfunction +C0405581|T047|AB|E29|ICD10CM|Testicular dysfunction|Testicular dysfunction +C0154215|T047|ET|E29.0|ICD10CM|Hypersecretion of testicular hormones|Hypersecretion of testicular hormones +C0154215|T047|PT|E29.0|ICD10CM|Testicular hyperfunction|Testicular hyperfunction +C0154215|T047|AB|E29.0|ICD10CM|Testicular hyperfunction|Testicular hyperfunction +C0154215|T047|PT|E29.0|ICD10|Testicular hyperfunction|Testicular hyperfunction +C2874201|T047|ET|E29.1|ICD10CM|5-delta-Reductase deficiency (with male pseudohermaphroditism)|5-delta-Reductase deficiency (with male pseudohermaphroditism) +C0342527|T047|ET|E29.1|ICD10CM|Defective biosynthesis of testicular androgen NOS|Defective biosynthesis of testicular androgen NOS +C0271622|T047|PT|E29.1|ICD10CM|Testicular hypofunction|Testicular hypofunction +C0271622|T047|AB|E29.1|ICD10CM|Testicular hypofunction|Testicular hypofunction +C0271622|T047|PT|E29.1|ICD10|Testicular hypofunction|Testicular hypofunction +C0151721|T047|ET|E29.1|ICD10CM|Testicular hypogonadism NOS|Testicular hypogonadism NOS +C0029857|T046|PT|E29.8|ICD10CM|Other testicular dysfunction|Other testicular dysfunction +C0029857|T046|AB|E29.8|ICD10CM|Other testicular dysfunction|Other testicular dysfunction +C0029857|T046|PT|E29.8|ICD10|Other testicular dysfunction|Other testicular dysfunction +C0405581|T047|PT|E29.9|ICD10CM|Testicular dysfunction, unspecified|Testicular dysfunction, unspecified +C0405581|T047|AB|E29.9|ICD10CM|Testicular dysfunction, unspecified|Testicular dysfunction, unspecified +C0405581|T047|PT|E29.9|ICD10|Testicular dysfunction, unspecified|Testicular dysfunction, unspecified +C0494317|T047|HT|E30|ICD10|Disorders of puberty, not elsewhere classified|Disorders of puberty, not elsewhere classified +C0494317|T047|AB|E30|ICD10CM|Disorders of puberty, not elsewhere classified|Disorders of puberty, not elsewhere classified +C0494317|T047|HT|E30|ICD10CM|Disorders of puberty, not elsewhere classified|Disorders of puberty, not elsewhere classified +C2874202|T047|ET|E30.0|ICD10CM|Constitutional delay of puberty|Constitutional delay of puberty +C0034012|T046|PT|E30.0|ICD10CM|Delayed puberty|Delayed puberty +C0034012|T046|AB|E30.0|ICD10CM|Delayed puberty|Delayed puberty +C0034012|T046|PT|E30.0|ICD10|Delayed puberty|Delayed puberty +C0034012|T046|ET|E30.0|ICD10CM|Delayed sexual development|Delayed sexual development +C0342548|T033|ET|E30.1|ICD10CM|Precocious menstruation|Precocious menstruation +C0034013|T047|PT|E30.1|ICD10|Precocious puberty|Precocious puberty +C0034013|T047|PT|E30.1|ICD10CM|Precocious puberty|Precocious puberty +C0034013|T047|AB|E30.1|ICD10CM|Precocious puberty|Precocious puberty +C0348463|T047|PT|E30.8|ICD10CM|Other disorders of puberty|Other disorders of puberty +C0348463|T047|AB|E30.8|ICD10CM|Other disorders of puberty|Other disorders of puberty +C0348463|T047|PT|E30.8|ICD10|Other disorders of puberty|Other disorders of puberty +C0425772|T033|ET|E30.8|ICD10CM|Premature thelarche|Premature thelarche +C0342537|T047|PT|E30.9|ICD10CM|Disorder of puberty, unspecified|Disorder of puberty, unspecified +C0342537|T047|AB|E30.9|ICD10CM|Disorder of puberty, unspecified|Disorder of puberty, unspecified +C0342537|T047|PT|E30.9|ICD10|Disorder of puberty, unspecified|Disorder of puberty, unspecified +C0154222|T047|HT|E31|ICD10|Polyglandular dysfunction|Polyglandular dysfunction +C0154222|T047|HT|E31|ICD10CM|Polyglandular dysfunction|Polyglandular dysfunction +C0154222|T047|AB|E31|ICD10CM|Polyglandular dysfunction|Polyglandular dysfunction +C0085409|T047|PT|E31.0|ICD10CM|Autoimmune polyglandular failure|Autoimmune polyglandular failure +C0085409|T047|AB|E31.0|ICD10CM|Autoimmune polyglandular failure|Autoimmune polyglandular failure +C0085409|T047|PT|E31.0|ICD10|Autoimmune polyglandular failure|Autoimmune polyglandular failure +C0085860|T047|ET|E31.0|ICD10CM|Schmidt's syndrome|Schmidt's syndrome +C0342556|T046|PT|E31.1|ICD10|Polyglandular hyperfunction|Polyglandular hyperfunction +C0342556|T046|PT|E31.1|ICD10CM|Polyglandular hyperfunction|Polyglandular hyperfunction +C0342556|T046|AB|E31.1|ICD10CM|Polyglandular hyperfunction|Polyglandular hyperfunction +C0027662|T191|ET|E31.2|ICD10CM|Multiple endocrine adenomatosis|Multiple endocrine adenomatosis +C0027662|T191|AB|E31.2|ICD10CM|Multiple endocrine neoplasia [MEN] syndromes|Multiple endocrine neoplasia [MEN] syndromes +C0027662|T191|HT|E31.2|ICD10CM|Multiple endocrine neoplasia [MEN] syndromes|Multiple endocrine neoplasia [MEN] syndromes +C0027662|T191|ET|E31.20|ICD10CM|Multiple endocrine adenomatosis NOS|Multiple endocrine adenomatosis NOS +C0027662|T191|ET|E31.20|ICD10CM|Multiple endocrine neoplasia [MEN] syndrome NOS|Multiple endocrine neoplasia [MEN] syndrome NOS +C0027662|T191|AB|E31.20|ICD10CM|Multiple endocrine neoplasia [MEN] syndrome, unspecified|Multiple endocrine neoplasia [MEN] syndrome, unspecified +C0027662|T191|PT|E31.20|ICD10CM|Multiple endocrine neoplasia [MEN] syndrome, unspecified|Multiple endocrine neoplasia [MEN] syndrome, unspecified +C0025267|T191|AB|E31.21|ICD10CM|Multiple endocrine neoplasia [MEN] type I|Multiple endocrine neoplasia [MEN] type I +C0025267|T191|PT|E31.21|ICD10CM|Multiple endocrine neoplasia [MEN] type I|Multiple endocrine neoplasia [MEN] type I +C0025267|T191|ET|E31.21|ICD10CM|Wermer's syndrome|Wermer's syndrome +C0025268|T191|AB|E31.22|ICD10CM|Multiple endocrine neoplasia [MEN] type IIA|Multiple endocrine neoplasia [MEN] type IIA +C0025268|T191|PT|E31.22|ICD10CM|Multiple endocrine neoplasia [MEN] type IIA|Multiple endocrine neoplasia [MEN] type IIA +C0025268|T191|ET|E31.22|ICD10CM|Sipple's syndrome|Sipple's syndrome +C0025269|T191|AB|E31.23|ICD10CM|Multiple endocrine neoplasia [MEN] type IIB|Multiple endocrine neoplasia [MEN] type IIB +C0025269|T191|PT|E31.23|ICD10CM|Multiple endocrine neoplasia [MEN] type IIB|Multiple endocrine neoplasia [MEN] type IIB +C0348464|T046|PT|E31.8|ICD10CM|Other polyglandular dysfunction|Other polyglandular dysfunction +C0348464|T046|AB|E31.8|ICD10CM|Other polyglandular dysfunction|Other polyglandular dysfunction +C0348464|T046|PT|E31.8|ICD10|Other polyglandular dysfunction|Other polyglandular dysfunction +C0154222|T047|PT|E31.9|ICD10|Polyglandular dysfunction, unspecified|Polyglandular dysfunction, unspecified +C0154222|T047|PT|E31.9|ICD10CM|Polyglandular dysfunction, unspecified|Polyglandular dysfunction, unspecified +C0154222|T047|AB|E31.9|ICD10CM|Polyglandular dysfunction, unspecified|Polyglandular dysfunction, unspecified +C0154199|T047|AB|E32|ICD10CM|Diseases of thymus|Diseases of thymus +C0154199|T047|HT|E32|ICD10CM|Diseases of thymus|Diseases of thymus +C0154199|T047|HT|E32|ICD10|Diseases of thymus|Diseases of thymus +C1510517|T047|ET|E32.0|ICD10CM|Hypertrophy of thymus|Hypertrophy of thymus +C3887666|T047|PT|E32.0|ICD10CM|Persistent hyperplasia of thymus|Persistent hyperplasia of thymus +C3887666|T047|AB|E32.0|ICD10CM|Persistent hyperplasia of thymus|Persistent hyperplasia of thymus +C3887666|T047|PT|E32.0|ICD10|Persistent hyperplasia of thymus|Persistent hyperplasia of thymus +C0154200|T047|PT|E32.1|ICD10|Abscess of thymus|Abscess of thymus +C0154200|T047|PT|E32.1|ICD10CM|Abscess of thymus|Abscess of thymus +C0154200|T047|AB|E32.1|ICD10CM|Abscess of thymus|Abscess of thymus +C0348465|T047|PT|E32.8|ICD10|Other diseases of thymus|Other diseases of thymus +C0348465|T047|PT|E32.8|ICD10CM|Other diseases of thymus|Other diseases of thymus +C0348465|T047|AB|E32.8|ICD10CM|Other diseases of thymus|Other diseases of thymus +C0154199|T047|PT|E32.9|ICD10CM|Disease of thymus, unspecified|Disease of thymus, unspecified +C0154199|T047|AB|E32.9|ICD10CM|Disease of thymus, unspecified|Disease of thymus, unspecified +C0154199|T047|PT|E32.9|ICD10|Disease of thymus, unspecified|Disease of thymus, unspecified +C0154223|T047|HT|E34|ICD10|Other endocrine disorders|Other endocrine disorders +C0154223|T047|HT|E34|ICD10CM|Other endocrine disorders|Other endocrine disorders +C0154223|T047|AB|E34|ICD10CM|Other endocrine disorders|Other endocrine disorders +C0024586|T047|PT|E34.0|ICD10CM|Carcinoid syndrome|Carcinoid syndrome +C0024586|T047|AB|E34.0|ICD10CM|Carcinoid syndrome|Carcinoid syndrome +C0024586|T047|PT|E34.0|ICD10|Carcinoid syndrome|Carcinoid syndrome +C0477331|T046|PT|E34.1|ICD10CM|Other hypersecretion of intestinal hormones|Other hypersecretion of intestinal hormones +C0477331|T046|AB|E34.1|ICD10CM|Other hypersecretion of intestinal hormones|Other hypersecretion of intestinal hormones +C0477331|T046|PT|E34.1|ICD10|Other hypersecretion of intestinal hormones|Other hypersecretion of intestinal hormones +C0869496|T047|PT|E34.2|ICD10|Ectopic hormone secretion, not elsewhere classified|Ectopic hormone secretion, not elsewhere classified +C0869496|T047|AB|E34.2|ICD10CM|Ectopic hormone secretion, not elsewhere classified|Ectopic hormone secretion, not elsewhere classified +C0869496|T047|PT|E34.2|ICD10CM|Ectopic hormone secretion, not elsewhere classified|Ectopic hormone secretion, not elsewhere classified +C0013336|T019|ET|E34.3|ICD10CM|Constitutional short stature|Constitutional short stature +C0271568|T047|ET|E34.3|ICD10CM|Laron-type short stature|Laron-type short stature +C2874203|T033|PT|E34.3|ICD10CM|Short stature due to endocrine disorder|Short stature due to endocrine disorder +C2874203|T033|AB|E34.3|ICD10CM|Short stature due to endocrine disorder|Short stature due to endocrine disorder +C0494319|T047|PT|E34.3|ICD10|Short stature, not elsewhere classified|Short stature, not elsewhere classified +C0342571|T047|ET|E34.4|ICD10CM|Constitutional gigantism|Constitutional gigantism +C0342571|T047|PT|E34.4|ICD10CM|Constitutional tall stature|Constitutional tall stature +C0342571|T047|AB|E34.4|ICD10CM|Constitutional tall stature|Constitutional tall stature +C0342571|T047|PT|E34.4|ICD10|Constitutional tall stature|Constitutional tall stature +C0039585|T047|HT|E34.5|ICD10CM|Androgen insensitivity syndrome|Androgen insensitivity syndrome +C0039585|T047|AB|E34.5|ICD10CM|Androgen insensitivity syndrome|Androgen insensitivity syndrome +C0039585|T047|PT|E34.5|ICD10|Androgen resistance syndrome|Androgen resistance syndrome +C2874204|T047|ET|E34.50|ICD10CM|Androgen insensitivity NOS|Androgen insensitivity NOS +C0039585|T047|AB|E34.50|ICD10CM|Androgen insensitivity syndrome, unspecified|Androgen insensitivity syndrome, unspecified +C0039585|T047|PT|E34.50|ICD10CM|Androgen insensitivity syndrome, unspecified|Androgen insensitivity syndrome, unspecified +C0936016|T047|ET|E34.51|ICD10CM|Complete androgen insensitivity|Complete androgen insensitivity +C0936016|T047|PT|E34.51|ICD10CM|Complete androgen insensitivity syndrome|Complete androgen insensitivity syndrome +C0936016|T047|AB|E34.51|ICD10CM|Complete androgen insensitivity syndrome|Complete androgen insensitivity syndrome +C2349401|T047|ET|E34.51|ICD10CM|de Quervain syndrome|de Quervain syndrome +C0936016|T047|ET|E34.51|ICD10CM|Goldberg-Maxwell syndrome|Goldberg-Maxwell syndrome +C0268301|T047|ET|E34.52|ICD10CM|Partial androgen insensitivity|Partial androgen insensitivity +C0268301|T047|PT|E34.52|ICD10CM|Partial androgen insensitivity syndrome|Partial androgen insensitivity syndrome +C0268301|T047|AB|E34.52|ICD10CM|Partial androgen insensitivity syndrome|Partial androgen insensitivity syndrome +C0268301|T047|ET|E34.52|ICD10CM|Reifenstein syndrome|Reifenstein syndrome +C0029793|T047|PT|E34.8|ICD10|Other specified endocrine disorders|Other specified endocrine disorders +C0029793|T047|PT|E34.8|ICD10CM|Other specified endocrine disorders|Other specified endocrine disorders +C0029793|T047|AB|E34.8|ICD10CM|Other specified endocrine disorders|Other specified endocrine disorders +C0271531|T047|ET|E34.8|ICD10CM|Pineal gland dysfunction|Pineal gland dysfunction +C0033300|T047|ET|E34.8|ICD10CM|Progeria|Progeria +C0014130|T047|PT|E34.9|ICD10CM|Endocrine disorder, unspecified|Endocrine disorder, unspecified +C0014130|T047|AB|E34.9|ICD10CM|Endocrine disorder, unspecified|Endocrine disorder, unspecified +C0014130|T047|PT|E34.9|ICD10|Endocrine disorder, unspecified|Endocrine disorder, unspecified +C0014130|T047|ET|E34.9|ICD10CM|Endocrine disturbance NOS|Endocrine disturbance NOS +C0014130|T047|ET|E34.9|ICD10CM|Hormone disturbance NOS|Hormone disturbance NOS +C0694468|T047|AB|E35|ICD10CM|Disorders of endocrine glands in diseases classd elswhr|Disorders of endocrine glands in diseases classd elswhr +C0694468|T047|PT|E35|ICD10CM|Disorders of endocrine glands in diseases classified elsewhere|Disorders of endocrine glands in diseases classified elsewhere +C0694468|T047|HT|E35|ICD10|Disorders of endocrine glands in diseases classified elsewhere|Disorders of endocrine glands in diseases classified elsewhere +C0348466|T047|PT|E35.0|ICD10|Disorders of thyroid gland in diseases classified elsewhere|Disorders of thyroid gland in diseases classified elsewhere +C0348467|T047|PT|E35.1|ICD10|Disorders of adrenal glands in diseases classified elsewhere|Disorders of adrenal glands in diseases classified elsewhere +C0348468|T047|PT|E35.8|ICD10|Disorders of other endocrine glands in diseases classified elsewhere|Disorders of other endocrine glands in diseases classified elsewhere +C2874206|T046|AB|E36|ICD10CM|Intraoperative complications of endocrine system|Intraoperative complications of endocrine system +C2874206|T046|HT|E36|ICD10CM|Intraoperative complications of endocrine system|Intraoperative complications of endocrine system +C2976862|T046|HT|E36-E36|ICD10CM|Intraoperative complications of endocrine system (E36)|Intraoperative complications of endocrine system (E36) +C2874207|T046|AB|E36.0|ICD10CM|Intraop hemor/hemtom of an endo sys org comp a procedure|Intraop hemor/hemtom of an endo sys org comp a procedure +C2874208|T046|AB|E36.01|ICD10CM|Intraop hemor/hemtom of endo sys org comp an endo sys proc|Intraop hemor/hemtom of endo sys org comp an endo sys proc +C2874209|T046|AB|E36.02|ICD10CM|Intraop hemor/hemtom of an endo sys org comp oth procedure|Intraop hemor/hemtom of an endo sys org comp oth procedure +C2874210|T037|AB|E36.1|ICD10CM|Accidental pnctr & lac of an endo sys org during a procedure|Accidental pnctr & lac of an endo sys org during a procedure +C2874210|T037|HT|E36.1|ICD10CM|Accidental puncture and laceration of an endocrine system organ or structure during a procedure|Accidental puncture and laceration of an endocrine system organ or structure during a procedure +C2874211|T037|AB|E36.11|ICD10CM|Acc pnctr & lac of an endo sys org during an endo sys proc|Acc pnctr & lac of an endo sys org during an endo sys proc +C2874212|T037|AB|E36.12|ICD10CM|Acc pnctr & lac of an endo sys org during oth procedure|Acc pnctr & lac of an endo sys org during oth procedure +C2874212|T037|PT|E36.12|ICD10CM|Accidental puncture and laceration of an endocrine system organ or structure during other procedure|Accidental puncture and laceration of an endocrine system organ or structure during other procedure +C2874213|T046|AB|E36.8|ICD10CM|Other intraoperative complications of endocrine system|Other intraoperative complications of endocrine system +C2874213|T046|PT|E36.8|ICD10CM|Other intraoperative complications of endocrine system|Other intraoperative complications of endocrine system +C0022806|T047|PT|E40|ICD10|Kwashiorkor|Kwashiorkor +C0022806|T047|PT|E40|ICD10CM|Kwashiorkor|Kwashiorkor +C0022806|T047|AB|E40|ICD10CM|Kwashiorkor|Kwashiorkor +C0022806|T047|ET|E40|ICD10CM|Severe malnutrition with nutritional edema with dyspigmentation of skin and hair|Severe malnutrition with nutritional edema with dyspigmentation of skin and hair +C0162429|T047|HT|E40-E46|ICD10CM|Malnutrition (E40-E46)|Malnutrition (E40-E46) +C0162429|T047|HT|E40-E46.9|ICD10|Malnutrition|Malnutrition +C0086588|T047|PT|E41|ICD10|Nutritional marasmus|Nutritional marasmus +C0086588|T047|PT|E41|ICD10CM|Nutritional marasmus|Nutritional marasmus +C0086588|T047|AB|E41|ICD10CM|Nutritional marasmus|Nutritional marasmus +C0086588|T047|ET|E41|ICD10CM|Severe malnutrition with marasmus|Severe malnutrition with marasmus +C2874214|T047|ET|E42|ICD10CM|Intermediate form severe protein-calorie malnutrition|Intermediate form severe protein-calorie malnutrition +C0342914|T047|PT|E42|ICD10|Marasmic kwashiorkor|Marasmic kwashiorkor +C0342914|T047|PT|E42|ICD10CM|Marasmic kwashiorkor|Marasmic kwashiorkor +C0342914|T047|AB|E42|ICD10CM|Marasmic kwashiorkor|Marasmic kwashiorkor +C2874215|T047|ET|E42|ICD10CM|Severe protein-calorie malnutrition with signs of both kwashiorkor and marasmus|Severe protein-calorie malnutrition with signs of both kwashiorkor and marasmus +C1408484|T047|ET|E43|ICD10CM|Starvation edema|Starvation edema +C2874216|T047|AB|E43|ICD10CM|Unspecified severe protein-calorie malnutrition|Unspecified severe protein-calorie malnutrition +C2874216|T047|PT|E43|ICD10CM|Unspecified severe protein-calorie malnutrition|Unspecified severe protein-calorie malnutrition +C0348472|T047|PT|E43|ICD10|Unspecified severe protein-energy malnutrition|Unspecified severe protein-energy malnutrition +C2874217|T047|AB|E44|ICD10CM|Protein-calorie malnutrition of moderate and mild degree|Protein-calorie malnutrition of moderate and mild degree +C2874217|T047|HT|E44|ICD10CM|Protein-calorie malnutrition of moderate and mild degree|Protein-calorie malnutrition of moderate and mild degree +C0494320|T047|HT|E44|ICD10|Protein-energy malnutrition of moderate and mild degree|Protein-energy malnutrition of moderate and mild degree +C2874218|T047|AB|E44.0|ICD10CM|Moderate protein-calorie malnutrition|Moderate protein-calorie malnutrition +C2874218|T047|PT|E44.0|ICD10CM|Moderate protein-calorie malnutrition|Moderate protein-calorie malnutrition +C0349366|T047|PT|E44.0|ICD10|Moderate protein-energy malnutrition|Moderate protein-energy malnutrition +C2874219|T047|AB|E44.1|ICD10CM|Mild protein-calorie malnutrition|Mild protein-calorie malnutrition +C2874219|T047|PT|E44.1|ICD10CM|Mild protein-calorie malnutrition|Mild protein-calorie malnutrition +C0349365|T047|PT|E44.1|ICD10|Mild protein-energy malnutrition|Mild protein-energy malnutrition +C1398539|T047|ET|E45|ICD10CM|Nutritional short stature|Nutritional short stature +C0342916|T047|ET|E45|ICD10CM|Nutritional stunting|Nutritional stunting +C0154229|T047|ET|E45|ICD10CM|Physical retardation due to malnutrition|Physical retardation due to malnutrition +C2874220|T047|AB|E45|ICD10CM|Retarded development following protein-calorie malnutrition|Retarded development following protein-calorie malnutrition +C2874220|T047|PT|E45|ICD10CM|Retarded development following protein-calorie malnutrition|Retarded development following protein-calorie malnutrition +C0154229|T047|PT|E45|ICD10|Retarded development following protein-energy malnutrition|Retarded development following protein-energy malnutrition +C0162429|T047|ET|E46|ICD10CM|Malnutrition NOS|Malnutrition NOS +C2874221|T047|ET|E46|ICD10CM|Protein-calorie imbalance NOS|Protein-calorie imbalance NOS +C0033677|T046|PT|E46|ICD10CM|Unspecified protein-calorie malnutrition|Unspecified protein-calorie malnutrition +C0033677|T046|AB|E46|ICD10CM|Unspecified protein-calorie malnutrition|Unspecified protein-calorie malnutrition +C0033677|T046|PT|E46|ICD10|Unspecified protein-energy malnutrition|Unspecified protein-energy malnutrition +C0042842|T047|HT|E50|ICD10|Vitamin A deficiency|Vitamin A deficiency +C0042842|T047|HT|E50|ICD10CM|Vitamin A deficiency|Vitamin A deficiency +C0042842|T047|AB|E50|ICD10CM|Vitamin A deficiency|Vitamin A deficiency +C0154241|T047|HT|E50-E64|ICD10CM|Other nutritional deficiencies (E50-E64)|Other nutritional deficiencies (E50-E64) +C0154241|T047|HT|E50-E64.9|ICD10|Other nutritional deficiencies|Other nutritional deficiencies +C0154231|T047|PT|E50.0|ICD10|Vitamin A deficiency with conjunctival xerosis|Vitamin A deficiency with conjunctival xerosis +C0154231|T047|PT|E50.0|ICD10CM|Vitamin A deficiency with conjunctival xerosis|Vitamin A deficiency with conjunctival xerosis +C0154231|T047|AB|E50.0|ICD10CM|Vitamin A deficiency with conjunctival xerosis|Vitamin A deficiency with conjunctival xerosis +C0865185|T047|ET|E50.1|ICD10CM|Bitot's spot in the young child|Bitot's spot in the young child +C0154232|T047|AB|E50.1|ICD10CM|Vitamin A deficiency w Bitot's spot and conjunctival xerosis|Vitamin A deficiency w Bitot's spot and conjunctival xerosis +C0154232|T047|PT|E50.1|ICD10CM|Vitamin A deficiency with Bitot's spot and conjunctival xerosis|Vitamin A deficiency with Bitot's spot and conjunctival xerosis +C0154232|T047|PT|E50.1|ICD10|Vitamin A deficiency with Bitot's spot and conjunctival xerosis|Vitamin A deficiency with Bitot's spot and conjunctival xerosis +C0154233|T047|PT|E50.2|ICD10|Vitamin A deficiency with corneal xerosis|Vitamin A deficiency with corneal xerosis +C0154233|T047|PT|E50.2|ICD10CM|Vitamin A deficiency with corneal xerosis|Vitamin A deficiency with corneal xerosis +C0154233|T047|AB|E50.2|ICD10CM|Vitamin A deficiency with corneal xerosis|Vitamin A deficiency with corneal xerosis +C0154234|T047|PT|E50.3|ICD10CM|Vitamin A deficiency with corneal ulceration and xerosis|Vitamin A deficiency with corneal ulceration and xerosis +C0154234|T047|AB|E50.3|ICD10CM|Vitamin A deficiency with corneal ulceration and xerosis|Vitamin A deficiency with corneal ulceration and xerosis +C0154234|T047|PT|E50.3|ICD10|Vitamin A deficiency with corneal ulceration and xerosis|Vitamin A deficiency with corneal ulceration and xerosis +C0154235|T047|PT|E50.4|ICD10|Vitamin A deficiency with keratomalacia|Vitamin A deficiency with keratomalacia +C0154235|T047|PT|E50.4|ICD10CM|Vitamin A deficiency with keratomalacia|Vitamin A deficiency with keratomalacia +C0154235|T047|AB|E50.4|ICD10CM|Vitamin A deficiency with keratomalacia|Vitamin A deficiency with keratomalacia +C0154236|T047|PT|E50.5|ICD10CM|Vitamin A deficiency with night blindness|Vitamin A deficiency with night blindness +C0154236|T047|AB|E50.5|ICD10CM|Vitamin A deficiency with night blindness|Vitamin A deficiency with night blindness +C0154236|T047|PT|E50.5|ICD10|Vitamin A deficiency with night blindness|Vitamin A deficiency with night blindness +C0154237|T047|PT|E50.6|ICD10|Vitamin A deficiency with xerophthalmic scars of cornea|Vitamin A deficiency with xerophthalmic scars of cornea +C0154237|T047|PT|E50.6|ICD10CM|Vitamin A deficiency with xerophthalmic scars of cornea|Vitamin A deficiency with xerophthalmic scars of cornea +C0154237|T047|AB|E50.6|ICD10CM|Vitamin A deficiency with xerophthalmic scars of cornea|Vitamin A deficiency with xerophthalmic scars of cornea +C0154238|T047|PT|E50.7|ICD10CM|Other ocular manifestations of vitamin A deficiency|Other ocular manifestations of vitamin A deficiency +C0154238|T047|AB|E50.7|ICD10CM|Other ocular manifestations of vitamin A deficiency|Other ocular manifestations of vitamin A deficiency +C0154238|T047|PT|E50.7|ICD10|Other ocular manifestations of vitamin A deficiency|Other ocular manifestations of vitamin A deficiency +C0043349|T047|ET|E50.7|ICD10CM|Xerophthalmia NOS|Xerophthalmia NOS +C0022595|T047|ET|E50.8|ICD10CM|Follicular keratosis|Follicular keratosis +C0029665|T047|PT|E50.8|ICD10CM|Other manifestations of vitamin A deficiency|Other manifestations of vitamin A deficiency +C0029665|T047|AB|E50.8|ICD10CM|Other manifestations of vitamin A deficiency|Other manifestations of vitamin A deficiency +C0029665|T047|PT|E50.8|ICD10|Other manifestations of vitamin A deficiency|Other manifestations of vitamin A deficiency +C0043345|T047|ET|E50.8|ICD10CM|Xeroderma|Xeroderma +C0042842|T047|ET|E50.9|ICD10CM|Hypovitaminosis A NOS|Hypovitaminosis A NOS +C0042842|T047|PT|E50.9|ICD10CM|Vitamin A deficiency, unspecified|Vitamin A deficiency, unspecified +C0042842|T047|AB|E50.9|ICD10CM|Vitamin A deficiency, unspecified|Vitamin A deficiency, unspecified +C0042842|T047|PT|E50.9|ICD10|Vitamin A deficiency, unspecified|Vitamin A deficiency, unspecified +C0039841|T047|HT|E51|ICD10|Thiamine deficiency|Thiamine deficiency +C0039841|T047|HT|E51|ICD10CM|Thiamine deficiency|Thiamine deficiency +C0039841|T047|AB|E51|ICD10CM|Thiamine deficiency|Thiamine deficiency +C0005122|T047|PT|E51.1|ICD10|Beriberi|Beriberi +C0005122|T047|HT|E51.1|ICD10CM|Beriberi|Beriberi +C0005122|T047|AB|E51.1|ICD10CM|Beriberi|Beriberi +C0005122|T047|ET|E51.11|ICD10CM|Beriberi NOS|Beriberi NOS +C0268670|T047|ET|E51.11|ICD10CM|Beriberi with polyneuropathy|Beriberi with polyneuropathy +C0268670|T047|PT|E51.11|ICD10CM|Dry beriberi|Dry beriberi +C0268670|T047|AB|E51.11|ICD10CM|Dry beriberi|Dry beriberi +C2874222|T047|ET|E51.12|ICD10CM|Beriberi with cardiovascular manifestations|Beriberi with cardiovascular manifestations +C0268669|T047|ET|E51.12|ICD10CM|Cardiovascular beriberi|Cardiovascular beriberi +C2874223|T047|ET|E51.12|ICD10CM|Shoshin disease|Shoshin disease +C0268669|T047|PT|E51.12|ICD10CM|Wet beriberi|Wet beriberi +C0268669|T047|AB|E51.12|ICD10CM|Wet beriberi|Wet beriberi +C0043121|T047|PT|E51.2|ICD10|Wernicke's encephalopathy|Wernicke's encephalopathy +C0043121|T047|PT|E51.2|ICD10CM|Wernicke's encephalopathy|Wernicke's encephalopathy +C0043121|T047|AB|E51.2|ICD10CM|Wernicke's encephalopathy|Wernicke's encephalopathy +C0494323|T046|PT|E51.8|ICD10CM|Other manifestations of thiamine deficiency|Other manifestations of thiamine deficiency +C0494323|T046|AB|E51.8|ICD10CM|Other manifestations of thiamine deficiency|Other manifestations of thiamine deficiency +C0494323|T046|PT|E51.8|ICD10|Other manifestations of thiamine deficiency|Other manifestations of thiamine deficiency +C0039841|T047|PT|E51.9|ICD10CM|Thiamine deficiency, unspecified|Thiamine deficiency, unspecified +C0039841|T047|AB|E51.9|ICD10CM|Thiamine deficiency, unspecified|Thiamine deficiency, unspecified +C0039841|T047|PT|E51.9|ICD10|Thiamine deficiency, unspecified|Thiamine deficiency, unspecified +C4317126|T047|ET|E52|ICD10CM|Niacin (-tryptophan) deficiency|Niacin (-tryptophan) deficiency +C4317126|T047|PT|E52|ICD10CM|Niacin deficiency [pellagra]|Niacin deficiency [pellagra] +C4317126|T047|AB|E52|ICD10CM|Niacin deficiency [pellagra]|Niacin deficiency [pellagra] +C4317126|T047|PT|E52|ICD10|Niacin deficiency [pellagra]|Niacin deficiency [pellagra] +C4317126|T047|ET|E52|ICD10CM|Nicotinamide deficiency|Nicotinamide deficiency +C0268672|T047|ET|E52|ICD10CM|Pellagra (alcoholic)|Pellagra (alcoholic) +C0494324|T047|HT|E53|ICD10|Deficiency of other B group vitamins|Deficiency of other B group vitamins +C0494324|T047|AB|E53|ICD10CM|Deficiency of other B group vitamins|Deficiency of other B group vitamins +C0494324|T047|HT|E53|ICD10CM|Deficiency of other B group vitamins|Deficiency of other B group vitamins +C0035528|T047|ET|E53.0|ICD10CM|Ariboflavinosis|Ariboflavinosis +C0035528|T047|PT|E53.0|ICD10CM|Riboflavin deficiency|Riboflavin deficiency +C0035528|T047|AB|E53.0|ICD10CM|Riboflavin deficiency|Riboflavin deficiency +C0035528|T047|PT|E53.0|ICD10|Riboflavin deficiency|Riboflavin deficiency +C0035528|T047|ET|E53.0|ICD10CM|Vitamin B2 deficiency|Vitamin B2 deficiency +C1527330|T047|PT|E53.1|ICD10|Pyridoxine deficiency|Pyridoxine deficiency +C1527330|T047|PT|E53.1|ICD10CM|Pyridoxine deficiency|Pyridoxine deficiency +C1527330|T047|AB|E53.1|ICD10CM|Pyridoxine deficiency|Pyridoxine deficiency +C0936215|T047|ET|E53.1|ICD10CM|Vitamin B6 deficiency|Vitamin B6 deficiency +C0268680|T047|ET|E53.8|ICD10CM|Biotin deficiency|Biotin deficiency +C0042847|T047|ET|E53.8|ICD10CM|Cyanocobalamin deficiency|Cyanocobalamin deficiency +C0348474|T047|PT|E53.8|ICD10|Deficiency of other specified B group vitamins|Deficiency of other specified B group vitamins +C0348474|T047|PT|E53.8|ICD10CM|Deficiency of other specified B group vitamins|Deficiency of other specified B group vitamins +C0348474|T047|AB|E53.8|ICD10CM|Deficiency of other specified B group vitamins|Deficiency of other specified B group vitamins +C0016412|T047|ET|E53.8|ICD10CM|Folate deficiency|Folate deficiency +C0016412|T047|ET|E53.8|ICD10CM|Folic acid deficiency|Folic acid deficiency +C0342938|T047|ET|E53.8|ICD10CM|Pantothenic acid deficiency|Pantothenic acid deficiency +C0042847|T047|ET|E53.8|ICD10CM|Vitamin B12 deficiency|Vitamin B12 deficiency +C0042850|T047|PT|E53.9|ICD10CM|Vitamin B deficiency, unspecified|Vitamin B deficiency, unspecified +C0042850|T047|AB|E53.9|ICD10CM|Vitamin B deficiency, unspecified|Vitamin B deficiency, unspecified +C0042850|T047|PT|E53.9|ICD10|Vitamin B deficiency, unspecified|Vitamin B deficiency, unspecified +C0003969|T047|PT|E54|ICD10|Ascorbic acid deficiency|Ascorbic acid deficiency +C0003969|T047|PT|E54|ICD10CM|Ascorbic acid deficiency|Ascorbic acid deficiency +C0003969|T047|AB|E54|ICD10CM|Ascorbic acid deficiency|Ascorbic acid deficiency +C0003969|T047|ET|E54|ICD10CM|Deficiency of vitamin C|Deficiency of vitamin C +C0036474|T047|ET|E54|ICD10CM|Scurvy|Scurvy +C0042870|T047|HT|E55|ICD10CM|Vitamin D deficiency|Vitamin D deficiency +C0042870|T047|AB|E55|ICD10CM|Vitamin D deficiency|Vitamin D deficiency +C0042870|T047|HT|E55|ICD10|Vitamin D deficiency|Vitamin D deficiency +C0035579|T047|ET|E55.0|ICD10CM|Infantile osteomalacia|Infantile osteomalacia +C1401365|T047|ET|E55.0|ICD10CM|Juvenile osteomalacia|Juvenile osteomalacia +C0221468|T047|PT|E55.0|ICD10|Rickets, active|Rickets, active +C0221468|T047|PT|E55.0|ICD10CM|Rickets, active|Rickets, active +C0221468|T047|AB|E55.0|ICD10CM|Rickets, active|Rickets, active +C0042870|T047|ET|E55.9|ICD10CM|Avitaminosis D|Avitaminosis D +C0042870|T047|PT|E55.9|ICD10CM|Vitamin D deficiency, unspecified|Vitamin D deficiency, unspecified +C0042870|T047|AB|E55.9|ICD10CM|Vitamin D deficiency, unspecified|Vitamin D deficiency, unspecified +C0042870|T047|PT|E55.9|ICD10|Vitamin D deficiency, unspecified|Vitamin D deficiency, unspecified +C0011157|T047|HT|E56|ICD10|Other vitamin deficiencies|Other vitamin deficiencies +C0011157|T047|AB|E56|ICD10CM|Other vitamin deficiencies|Other vitamin deficiencies +C0011157|T047|HT|E56|ICD10CM|Other vitamin deficiencies|Other vitamin deficiencies +C0042875|T047|PT|E56.0|ICD10|Deficiency of vitamin E|Deficiency of vitamin E +C0042875|T047|PT|E56.0|ICD10CM|Deficiency of vitamin E|Deficiency of vitamin E +C0042875|T047|AB|E56.0|ICD10CM|Deficiency of vitamin E|Deficiency of vitamin E +C0042880|T047|PT|E56.1|ICD10CM|Deficiency of vitamin K|Deficiency of vitamin K +C0042880|T047|AB|E56.1|ICD10CM|Deficiency of vitamin K|Deficiency of vitamin K +C0042880|T047|PT|E56.1|ICD10|Deficiency of vitamin K|Deficiency of vitamin K +C0011157|T047|PT|E56.8|ICD10|Deficiency of other vitamins|Deficiency of other vitamins +C0011157|T047|PT|E56.8|ICD10CM|Deficiency of other vitamins|Deficiency of other vitamins +C0011157|T047|AB|E56.8|ICD10CM|Deficiency of other vitamins|Deficiency of other vitamins +C1510471|T047|PT|E56.9|ICD10|Vitamin deficiency, unspecified|Vitamin deficiency, unspecified +C1510471|T047|PT|E56.9|ICD10CM|Vitamin deficiency, unspecified|Vitamin deficiency, unspecified +C1510471|T047|AB|E56.9|ICD10CM|Vitamin deficiency, unspecified|Vitamin deficiency, unspecified +C0342922|T047|PT|E58|ICD10CM|Dietary calcium deficiency|Dietary calcium deficiency +C0342922|T047|AB|E58|ICD10CM|Dietary calcium deficiency|Dietary calcium deficiency +C0342922|T047|PT|E58|ICD10|Dietary calcium deficiency|Dietary calcium deficiency +C0451817|T047|PT|E59|ICD10CM|Dietary selenium deficiency|Dietary selenium deficiency +C0451817|T047|AB|E59|ICD10CM|Dietary selenium deficiency|Dietary selenium deficiency +C0451817|T047|PT|E59|ICD10|Dietary selenium deficiency|Dietary selenium deficiency +C0268095|T047|ET|E59|ICD10CM|Keshan disease|Keshan disease +C0451818|T047|PT|E60|ICD10|Dietary zinc deficiency|Dietary zinc deficiency +C0451818|T047|PT|E60|ICD10CM|Dietary zinc deficiency|Dietary zinc deficiency +C0451818|T047|AB|E60|ICD10CM|Dietary zinc deficiency|Dietary zinc deficiency +C0494325|T047|AB|E61|ICD10CM|Deficiency of other nutrient elements|Deficiency of other nutrient elements +C0494325|T047|HT|E61|ICD10CM|Deficiency of other nutrient elements|Deficiency of other nutrient elements +C0494325|T047|HT|E61|ICD10|Deficiency of other nutrient elements|Deficiency of other nutrient elements +C0268070|T047|PT|E61.0|ICD10|Copper deficiency|Copper deficiency +C0268070|T047|PT|E61.0|ICD10CM|Copper deficiency|Copper deficiency +C0268070|T047|AB|E61.0|ICD10CM|Copper deficiency|Copper deficiency +C0240066|T047|PT|E61.1|ICD10CM|Iron deficiency|Iron deficiency +C0240066|T047|AB|E61.1|ICD10CM|Iron deficiency|Iron deficiency +C0240066|T047|PT|E61.1|ICD10|Iron deficiency|Iron deficiency +C0024473|T047|PT|E61.2|ICD10|Magnesium deficiency|Magnesium deficiency +C0024473|T047|PT|E61.2|ICD10CM|Magnesium deficiency|Magnesium deficiency +C0024473|T047|AB|E61.2|ICD10CM|Magnesium deficiency|Magnesium deficiency +C0268090|T047|PT|E61.3|ICD10|Manganese deficiency|Manganese deficiency +C0268090|T047|PT|E61.3|ICD10CM|Manganese deficiency|Manganese deficiency +C0268090|T047|AB|E61.3|ICD10CM|Manganese deficiency|Manganese deficiency +C0268093|T047|PT|E61.4|ICD10CM|Chromium deficiency|Chromium deficiency +C0268093|T047|AB|E61.4|ICD10CM|Chromium deficiency|Chromium deficiency +C0268093|T047|PT|E61.4|ICD10|Chromium deficiency|Chromium deficiency +C0342928|T047|PT|E61.5|ICD10|Molybdenum deficiency|Molybdenum deficiency +C0342928|T047|PT|E61.5|ICD10CM|Molybdenum deficiency|Molybdenum deficiency +C0342928|T047|AB|E61.5|ICD10CM|Molybdenum deficiency|Molybdenum deficiency +C0342929|T047|PT|E61.6|ICD10CM|Vanadium deficiency|Vanadium deficiency +C0342929|T047|AB|E61.6|ICD10CM|Vanadium deficiency|Vanadium deficiency +C0342929|T047|PT|E61.6|ICD10|Vanadium deficiency|Vanadium deficiency +C0348947|T047|PT|E61.7|ICD10|Deficiency of multiple nutrient elements|Deficiency of multiple nutrient elements +C0348947|T047|PT|E61.7|ICD10CM|Deficiency of multiple nutrient elements|Deficiency of multiple nutrient elements +C0348947|T047|AB|E61.7|ICD10CM|Deficiency of multiple nutrient elements|Deficiency of multiple nutrient elements +C0348475|T047|PT|E61.8|ICD10CM|Deficiency of other specified nutrient elements|Deficiency of other specified nutrient elements +C0348475|T047|AB|E61.8|ICD10CM|Deficiency of other specified nutrient elements|Deficiency of other specified nutrient elements +C0348475|T047|PT|E61.8|ICD10|Deficiency of other specified nutrient elements|Deficiency of other specified nutrient elements +C0494326|T047|PT|E61.9|ICD10|Deficiency of nutrient element, unspecified|Deficiency of nutrient element, unspecified +C0494326|T047|PT|E61.9|ICD10CM|Deficiency of nutrient element, unspecified|Deficiency of nutrient element, unspecified +C0494326|T047|AB|E61.9|ICD10CM|Deficiency of nutrient element, unspecified|Deficiency of nutrient element, unspecified +C0154241|T047|HT|E63|ICD10|Other nutritional deficiencies|Other nutritional deficiencies +C0154241|T047|HT|E63|ICD10CM|Other nutritional deficiencies|Other nutritional deficiencies +C0154241|T047|AB|E63|ICD10CM|Other nutritional deficiencies|Other nutritional deficiencies +C0342919|T046|PT|E63.0|ICD10|Essential fatty acid [EFA] deficiency|Essential fatty acid [EFA] deficiency +C0342919|T046|PT|E63.0|ICD10CM|Essential fatty acid [EFA] deficiency|Essential fatty acid [EFA] deficiency +C0342919|T046|AB|E63.0|ICD10CM|Essential fatty acid [EFA] deficiency|Essential fatty acid [EFA] deficiency +C0348951|T047|PT|E63.1|ICD10CM|Imbalance of constituents of food intake|Imbalance of constituents of food intake +C0348951|T047|AB|E63.1|ICD10CM|Imbalance of constituents of food intake|Imbalance of constituents of food intake +C0348951|T047|PT|E63.1|ICD10|Imbalance of constituents of food intake|Imbalance of constituents of food intake +C0348476|T047|PT|E63.8|ICD10|Other specified nutritional deficiencies|Other specified nutritional deficiencies +C0348476|T047|PT|E63.8|ICD10CM|Other specified nutritional deficiencies|Other specified nutritional deficiencies +C0348476|T047|AB|E63.8|ICD10CM|Other specified nutritional deficiencies|Other specified nutritional deficiencies +C4761312|T047|PT|E63.9|ICD10|Nutritional deficiency, unspecified|Nutritional deficiency, unspecified +C4761312|T047|PT|E63.9|ICD10CM|Nutritional deficiency, unspecified|Nutritional deficiency, unspecified +C4761312|T047|AB|E63.9|ICD10CM|Nutritional deficiency, unspecified|Nutritional deficiency, unspecified +C0348952|T046|HT|E64|ICD10CM|Sequelae of malnutrition and other nutritional deficiencies|Sequelae of malnutrition and other nutritional deficiencies +C0348952|T046|AB|E64|ICD10CM|Sequelae of malnutrition and other nutritional deficiencies|Sequelae of malnutrition and other nutritional deficiencies +C0348952|T046|HT|E64|ICD10|Sequelae of malnutrition and other nutritional deficiencies|Sequelae of malnutrition and other nutritional deficiencies +C2874224|T047|AB|E64.0|ICD10CM|Sequelae of protein-calorie malnutrition|Sequelae of protein-calorie malnutrition +C2874224|T047|PT|E64.0|ICD10CM|Sequelae of protein-calorie malnutrition|Sequelae of protein-calorie malnutrition +C0348953|T047|PT|E64.0|ICD10|Sequelae of protein-energy malnutrition|Sequelae of protein-energy malnutrition +C0348954|T046|PT|E64.1|ICD10|Sequelae of vitamin A deficiency|Sequelae of vitamin A deficiency +C0348954|T046|PT|E64.1|ICD10CM|Sequelae of vitamin A deficiency|Sequelae of vitamin A deficiency +C0348954|T046|AB|E64.1|ICD10CM|Sequelae of vitamin A deficiency|Sequelae of vitamin A deficiency +C0348955|T046|PT|E64.2|ICD10CM|Sequelae of vitamin C deficiency|Sequelae of vitamin C deficiency +C0348955|T046|AB|E64.2|ICD10CM|Sequelae of vitamin C deficiency|Sequelae of vitamin C deficiency +C0348955|T046|PT|E64.2|ICD10|Sequelae of vitamin C deficiency|Sequelae of vitamin C deficiency +C0494328|T046|PT|E64.3|ICD10CM|Sequelae of rickets|Sequelae of rickets +C0494328|T046|AB|E64.3|ICD10CM|Sequelae of rickets|Sequelae of rickets +C0494328|T046|PT|E64.3|ICD10|Sequelae of rickets|Sequelae of rickets +C0348477|T046|PT|E64.8|ICD10|Sequelae of other nutritional deficiencies|Sequelae of other nutritional deficiencies +C0348477|T046|PT|E64.8|ICD10CM|Sequelae of other nutritional deficiencies|Sequelae of other nutritional deficiencies +C0348477|T046|AB|E64.8|ICD10CM|Sequelae of other nutritional deficiencies|Sequelae of other nutritional deficiencies +C0348479|T046|PT|E64.9|ICD10CM|Sequelae of unspecified nutritional deficiency|Sequelae of unspecified nutritional deficiency +C0348479|T046|AB|E64.9|ICD10CM|Sequelae of unspecified nutritional deficiency|Sequelae of unspecified nutritional deficiency +C0348479|T046|PT|E64.9|ICD10|Sequelae of unspecified nutritional deficiency|Sequelae of unspecified nutritional deficiency +C0154270|T033|PT|E65|ICD10|Localized adiposity|Localized adiposity +C0154270|T033|PT|E65|ICD10CM|Localized adiposity|Localized adiposity +C0154270|T033|AB|E65|ICD10CM|Localized adiposity|Localized adiposity +C1561827|T047|HT|E65-E68|ICD10CM|Overweight, obesity and other hyperalimentation (E65-E68)|Overweight, obesity and other hyperalimentation (E65-E68) +C0154269|T047|HT|E65-E68.9|ICD10|Obesity and other hyperalimentation|Obesity and other hyperalimentation +C0028754|T047|HT|E66|ICD10|Obesity|Obesity +C1561826|T047|AB|E66|ICD10CM|Overweight and obesity|Overweight and obesity +C1561826|T047|HT|E66|ICD10CM|Overweight and obesity|Overweight and obesity +C0451819|T047|PT|E66.0|ICD10|Obesity due to excess calories|Obesity due to excess calories +C0451819|T047|HT|E66.0|ICD10CM|Obesity due to excess calories|Obesity due to excess calories +C0451819|T047|AB|E66.0|ICD10CM|Obesity due to excess calories|Obesity due to excess calories +C2874225|T047|AB|E66.01|ICD10CM|Morbid (severe) obesity due to excess calories|Morbid (severe) obesity due to excess calories +C2874225|T047|PT|E66.01|ICD10CM|Morbid (severe) obesity due to excess calories|Morbid (severe) obesity due to excess calories +C2874226|T047|AB|E66.09|ICD10CM|Other obesity due to excess calories|Other obesity due to excess calories +C2874226|T047|PT|E66.09|ICD10CM|Other obesity due to excess calories|Other obesity due to excess calories +C0348956|T046|PT|E66.1|ICD10CM|Drug-induced obesity|Drug-induced obesity +C0348956|T046|AB|E66.1|ICD10CM|Drug-induced obesity|Drug-induced obesity +C0348956|T046|PT|E66.1|ICD10|Drug-induced obesity|Drug-induced obesity +C0031880|T047|PT|E66.2|ICD10|Extreme obesity with alveolar hypoventilation|Extreme obesity with alveolar hypoventilation +C2874227|T047|AB|E66.2|ICD10CM|Morbid (severe) obesity with alveolar hypoventilation|Morbid (severe) obesity with alveolar hypoventilation +C2874227|T047|PT|E66.2|ICD10CM|Morbid (severe) obesity with alveolar hypoventilation|Morbid (severe) obesity with alveolar hypoventilation +C4268182|T047|ET|E66.2|ICD10CM|Obesity hypoventilation syndrome (OHS)|Obesity hypoventilation syndrome (OHS) +C0031880|T047|ET|E66.2|ICD10CM|Pickwickian syndrome|Pickwickian syndrome +C0497406|T033|PT|E66.3|ICD10CM|Overweight|Overweight +C0497406|T033|AB|E66.3|ICD10CM|Overweight|Overweight +C0348480|T047|PT|E66.8|ICD10CM|Other obesity|Other obesity +C0348480|T047|AB|E66.8|ICD10CM|Other obesity|Other obesity +C0348480|T047|PT|E66.8|ICD10|Other obesity|Other obesity +C0028754|T047|ET|E66.9|ICD10CM|Obesity NOS|Obesity NOS +C0028754|T047|PT|E66.9|ICD10CM|Obesity, unspecified|Obesity, unspecified +C0028754|T047|AB|E66.9|ICD10CM|Obesity, unspecified|Obesity, unspecified +C0028754|T047|PT|E66.9|ICD10|Obesity, unspecified|Obesity, unspecified +C0029635|T047|HT|E67|ICD10|Other hyperalimentation|Other hyperalimentation +C0029635|T047|HT|E67|ICD10CM|Other hyperalimentation|Other hyperalimentation +C0029635|T047|AB|E67|ICD10CM|Other hyperalimentation|Other hyperalimentation +C0020579|T047|PT|E67.0|ICD10CM|Hypervitaminosis A|Hypervitaminosis A +C0020579|T047|AB|E67.0|ICD10CM|Hypervitaminosis A|Hypervitaminosis A +C0020579|T047|PT|E67.0|ICD10|Hypervitaminosis A|Hypervitaminosis A +C0154271|T047|PT|E67.1|ICD10|Hypercarotenaemia|Hypercarotenaemia +C0154271|T047|AB|E67.1|ICD10CM|Hypercarotenemia|Hypercarotenemia +C0154271|T047|PT|E67.1|ICD10CM|Hypercarotenemia|Hypercarotenemia +C0238176|T047|PT|E67.2|ICD10CM|Megavitamin-B6 syndrome|Megavitamin-B6 syndrome +C0238176|T047|AB|E67.2|ICD10CM|Megavitamin-B6 syndrome|Megavitamin-B6 syndrome +C0238176|T047|PT|E67.2|ICD10|Megavitamin-B6 syndrome|Megavitamin-B6 syndrome +C1442839|T047|PT|E67.3|ICD10|Hypervitaminosis D|Hypervitaminosis D +C1442839|T047|PT|E67.3|ICD10CM|Hypervitaminosis D|Hypervitaminosis D +C1442839|T047|AB|E67.3|ICD10CM|Hypervitaminosis D|Hypervitaminosis D +C0348481|T047|PT|E67.8|ICD10|Other specified hyperalimentation|Other specified hyperalimentation +C0348481|T047|PT|E67.8|ICD10CM|Other specified hyperalimentation|Other specified hyperalimentation +C0348481|T047|AB|E67.8|ICD10CM|Other specified hyperalimentation|Other specified hyperalimentation +C0348949|T046|PT|E68|ICD10CM|Sequelae of hyperalimentation|Sequelae of hyperalimentation +C0348949|T046|AB|E68|ICD10CM|Sequelae of hyperalimentation|Sequelae of hyperalimentation +C0348949|T046|PT|E68|ICD10|Sequelae of hyperalimentation|Sequelae of hyperalimentation +C0342674|T047|HT|E70|ICD10|Disorders of aromatic amino-acid metabolism|Disorders of aromatic amino-acid metabolism +C0342674|T047|AB|E70|ICD10CM|Disorders of aromatic amino-acid metabolism|Disorders of aromatic amino-acid metabolism +C0342674|T047|HT|E70|ICD10CM|Disorders of aromatic amino-acid metabolism|Disorders of aromatic amino-acid metabolism +C2976863|T047|HT|E70-E88|ICD10CM|Metabolic disorders (E70-E88)|Metabolic disorders (E70-E88) +C0025517|T047|HT|E70-E90.9|ICD10|Metabolic disorders|Metabolic disorders +C0751434|T047|PT|E70.0|ICD10|Classical phenylketonuria|Classical phenylketonuria +C0751434|T047|PT|E70.0|ICD10CM|Classical phenylketonuria|Classical phenylketonuria +C0751434|T047|AB|E70.0|ICD10CM|Classical phenylketonuria|Classical phenylketonuria +C0348482|T047|PT|E70.1|ICD10|Other hyperphenylalaninaemias|Other hyperphenylalaninaemias +C0348482|T047|AB|E70.1|ICD10CM|Other hyperphenylalaninemias|Other hyperphenylalaninemias +C0348482|T047|PT|E70.1|ICD10CM|Other hyperphenylalaninemias|Other hyperphenylalaninemias +C0268482|T047|PT|E70.2|ICD10|Disorders of tyrosine metabolism|Disorders of tyrosine metabolism +C0268482|T047|HT|E70.2|ICD10CM|Disorders of tyrosine metabolism|Disorders of tyrosine metabolism +C0268482|T047|AB|E70.2|ICD10CM|Disorders of tyrosine metabolism|Disorders of tyrosine metabolism +C0268482|T047|AB|E70.20|ICD10CM|Disorder of tyrosine metabolism, unspecified|Disorder of tyrosine metabolism, unspecified +C0268482|T047|PT|E70.20|ICD10CM|Disorder of tyrosine metabolism, unspecified|Disorder of tyrosine metabolism, unspecified +C1879362|T047|ET|E70.21|ICD10CM|Hypertyrosinemia|Hypertyrosinemia +C0268483|T047|PT|E70.21|ICD10CM|Tyrosinemia|Tyrosinemia +C0268483|T047|AB|E70.21|ICD10CM|Tyrosinemia|Tyrosinemia +C0002066|T047|ET|E70.29|ICD10CM|Alkaptonuria|Alkaptonuria +C0028817|T047|ET|E70.29|ICD10CM|Ochronosis|Ochronosis +C2874228|T047|AB|E70.29|ICD10CM|Other disorders of tyrosine metabolism|Other disorders of tyrosine metabolism +C2874228|T047|PT|E70.29|ICD10CM|Other disorders of tyrosine metabolism|Other disorders of tyrosine metabolism +C0001916|T047|HT|E70.3|ICD10CM|Albinism|Albinism +C0001916|T047|AB|E70.3|ICD10CM|Albinism|Albinism +C0001916|T047|PT|E70.3|ICD10|Albinism|Albinism +C0001916|T047|AB|E70.30|ICD10CM|Albinism, unspecified|Albinism, unspecified +C0001916|T047|PT|E70.30|ICD10CM|Albinism, unspecified|Albinism, unspecified +C0078917|T019|HT|E70.31|ICD10CM|Ocular albinism|Ocular albinism +C0078917|T019|AB|E70.31|ICD10CM|Ocular albinism|Ocular albinism +C0342684|T047|PT|E70.310|ICD10CM|X-linked ocular albinism|X-linked ocular albinism +C0342684|T047|AB|E70.310|ICD10CM|X-linked ocular albinism|X-linked ocular albinism +C0268503|T019|PT|E70.311|ICD10CM|Autosomal recessive ocular albinism|Autosomal recessive ocular albinism +C0268503|T019|AB|E70.311|ICD10CM|Autosomal recessive ocular albinism|Autosomal recessive ocular albinism +C2874229|T019|AB|E70.318|ICD10CM|Other ocular albinism|Other ocular albinism +C2874229|T019|PT|E70.318|ICD10CM|Other ocular albinism|Other ocular albinism +C0078917|T019|AB|E70.319|ICD10CM|Ocular albinism, unspecified|Ocular albinism, unspecified +C0078917|T019|PT|E70.319|ICD10CM|Ocular albinism, unspecified|Ocular albinism, unspecified +C0078918|T019|HT|E70.32|ICD10CM|Oculocutaneous albinism|Oculocutaneous albinism +C0078918|T019|AB|E70.32|ICD10CM|Oculocutaneous albinism|Oculocutaneous albinism +C4551504|T047|ET|E70.320|ICD10CM|Albinism I|Albinism I +C4551504|T047|ET|E70.320|ICD10CM|Oculocutaneous albinism ty-neg|Oculocutaneous albinism ty-neg +C4551504|T047|AB|E70.320|ICD10CM|Tyrosinase negative oculocutaneous albinism|Tyrosinase negative oculocutaneous albinism +C4551504|T047|PT|E70.320|ICD10CM|Tyrosinase negative oculocutaneous albinism|Tyrosinase negative oculocutaneous albinism +C0268495|T047|ET|E70.321|ICD10CM|Albinism II|Albinism II +C0268495|T047|ET|E70.321|ICD10CM|Oculocutaneous albinism ty-pos|Oculocutaneous albinism ty-pos +C0268495|T047|AB|E70.321|ICD10CM|Tyrosinase positive oculocutaneous albinism|Tyrosinase positive oculocutaneous albinism +C0268495|T047|PT|E70.321|ICD10CM|Tyrosinase positive oculocutaneous albinism|Tyrosinase positive oculocutaneous albinism +C2936910|T047|ET|E70.328|ICD10CM|Cross syndrome|Cross syndrome +C2874230|T019|AB|E70.328|ICD10CM|Other oculocutaneous albinism|Other oculocutaneous albinism +C2874230|T019|PT|E70.328|ICD10CM|Other oculocutaneous albinism|Other oculocutaneous albinism +C0078918|T019|AB|E70.329|ICD10CM|Oculocutaneous albinism, unspecified|Oculocutaneous albinism, unspecified +C0078918|T019|PT|E70.329|ICD10CM|Oculocutaneous albinism, unspecified|Oculocutaneous albinism, unspecified +C2874231|T019|AB|E70.33|ICD10CM|Albinism with hematologic abnormality|Albinism with hematologic abnormality +C2874231|T019|HT|E70.33|ICD10CM|Albinism with hematologic abnormality|Albinism with hematologic abnormality +C0007965|T047|PT|E70.330|ICD10CM|Chediak-Higashi syndrome|Chediak-Higashi syndrome +C0007965|T047|AB|E70.330|ICD10CM|Chediak-Higashi syndrome|Chediak-Higashi syndrome +C0079504|T047|PT|E70.331|ICD10CM|Hermansky-Pudlak syndrome|Hermansky-Pudlak syndrome +C0079504|T047|AB|E70.331|ICD10CM|Hermansky-Pudlak syndrome|Hermansky-Pudlak syndrome +C2874232|T019|AB|E70.338|ICD10CM|Other albinism with hematologic abnormality|Other albinism with hematologic abnormality +C2874232|T019|PT|E70.338|ICD10CM|Other albinism with hematologic abnormality|Other albinism with hematologic abnormality +C2874231|T019|AB|E70.339|ICD10CM|Albinism with hematologic abnormality, unspecified|Albinism with hematologic abnormality, unspecified +C2874231|T019|PT|E70.339|ICD10CM|Albinism with hematologic abnormality, unspecified|Albinism with hematologic abnormality, unspecified +C2874233|T019|AB|E70.39|ICD10CM|Other specified albinism|Other specified albinism +C2874233|T019|PT|E70.39|ICD10CM|Other specified albinism|Other specified albinism +C0080024|T019|ET|E70.39|ICD10CM|Piebaldism|Piebaldism +C0268512|T047|AB|E70.4|ICD10CM|Disorders of histidine metabolism|Disorders of histidine metabolism +C0268512|T047|HT|E70.4|ICD10CM|Disorders of histidine metabolism|Disorders of histidine metabolism +C0268512|T047|AB|E70.40|ICD10CM|Disorders of histidine metabolism, unspecified|Disorders of histidine metabolism, unspecified +C0268512|T047|PT|E70.40|ICD10CM|Disorders of histidine metabolism, unspecified|Disorders of histidine metabolism, unspecified +C0220992|T047|PT|E70.41|ICD10CM|Histidinemia|Histidinemia +C0220992|T047|AB|E70.41|ICD10CM|Histidinemia|Histidinemia +C2874234|T047|AB|E70.49|ICD10CM|Other disorders of histidine metabolism|Other disorders of histidine metabolism +C2874234|T047|PT|E70.49|ICD10CM|Other disorders of histidine metabolism|Other disorders of histidine metabolism +C0041254|T046|AB|E70.5|ICD10CM|Disorders of tryptophan metabolism|Disorders of tryptophan metabolism +C0041254|T046|PT|E70.5|ICD10CM|Disorders of tryptophan metabolism|Disorders of tryptophan metabolism +C0348483|T047|PT|E70.8|ICD10|Other disorders of aromatic amino-acid metabolism|Other disorders of aromatic amino-acid metabolism +C0348483|T047|PT|E70.8|ICD10CM|Other disorders of aromatic amino-acid metabolism|Other disorders of aromatic amino-acid metabolism +C0348483|T047|AB|E70.8|ICD10CM|Other disorders of aromatic amino-acid metabolism|Other disorders of aromatic amino-acid metabolism +C0342674|T047|PT|E70.9|ICD10CM|Disorder of aromatic amino-acid metabolism, unspecified|Disorder of aromatic amino-acid metabolism, unspecified +C0342674|T047|AB|E70.9|ICD10CM|Disorder of aromatic amino-acid metabolism, unspecified|Disorder of aromatic amino-acid metabolism, unspecified +C0342674|T047|PT|E70.9|ICD10|Disorder of aromatic amino-acid metabolism, unspecified|Disorder of aromatic amino-acid metabolism, unspecified +C0494332|T047|AB|E71|ICD10CM|Disord of branched-chain amino-acid metab & fatty-acid metab|Disord of branched-chain amino-acid metab & fatty-acid metab +C0494332|T047|HT|E71|ICD10CM|Disorders of branched-chain amino-acid metabolism and fatty-acid metabolism|Disorders of branched-chain amino-acid metabolism and fatty-acid metabolism +C0494332|T047|HT|E71|ICD10|Disorders of branched-chain amino-acid metabolism and fatty-acid metabolism|Disorders of branched-chain amino-acid metabolism and fatty-acid metabolism +C0024776|T047|PT|E71.0|ICD10|Maple-syrup-urine disease|Maple-syrup-urine disease +C0024776|T047|PT|E71.0|ICD10CM|Maple-syrup-urine disease|Maple-syrup-urine disease +C0024776|T047|AB|E71.0|ICD10CM|Maple-syrup-urine disease|Maple-syrup-urine disease +C0348484|T047|PT|E71.1|ICD10|Other disorders of branched-chain amino-acid metabolism|Other disorders of branched-chain amino-acid metabolism +C0348484|T047|HT|E71.1|ICD10CM|Other disorders of branched-chain amino-acid metabolism|Other disorders of branched-chain amino-acid metabolism +C0348484|T047|AB|E71.1|ICD10CM|Other disorders of branched-chain amino-acid metabolism|Other disorders of branched-chain amino-acid metabolism +C2874235|T047|AB|E71.11|ICD10CM|Branched-chain organic acidurias|Branched-chain organic acidurias +C2874235|T047|HT|E71.11|ICD10CM|Branched-chain organic acidurias|Branched-chain organic acidurias +C0268575|T047|PT|E71.110|ICD10CM|Isovaleric acidemia|Isovaleric acidemia +C0268575|T047|AB|E71.110|ICD10CM|Isovaleric acidemia|Isovaleric acidemia +C3696376|T047|PT|E71.111|ICD10CM|3-methylglutaconic aciduria|3-methylglutaconic aciduria +C3696376|T047|AB|E71.111|ICD10CM|3-methylglutaconic aciduria|3-methylglutaconic aciduria +C2874236|T047|AB|E71.118|ICD10CM|Other branched-chain organic acidurias|Other branched-chain organic acidurias +C2874236|T047|PT|E71.118|ICD10CM|Other branched-chain organic acidurias|Other branched-chain organic acidurias +C2874237|T047|AB|E71.12|ICD10CM|Disorders of propionate metabolism|Disorders of propionate metabolism +C2874237|T047|HT|E71.12|ICD10CM|Disorders of propionate metabolism|Disorders of propionate metabolism +C0268583|T047|PT|E71.120|ICD10CM|Methylmalonic acidemia|Methylmalonic acidemia +C0268583|T047|AB|E71.120|ICD10CM|Methylmalonic acidemia|Methylmalonic acidemia +C0268579|T047|PT|E71.121|ICD10CM|Propionic acidemia|Propionic acidemia +C0268579|T047|AB|E71.121|ICD10CM|Propionic acidemia|Propionic acidemia +C2874238|T047|AB|E71.128|ICD10CM|Other disorders of propionate metabolism|Other disorders of propionate metabolism +C2874238|T047|PT|E71.128|ICD10CM|Other disorders of propionate metabolism|Other disorders of propionate metabolism +C0268574|T047|ET|E71.19|ICD10CM|Hyperleucine-isoleucinemia|Hyperleucine-isoleucinemia +C0268573|T047|ET|E71.19|ICD10CM|Hypervalinemia|Hypervalinemia +C0348484|T047|PT|E71.19|ICD10CM|Other disorders of branched-chain amino-acid metabolism|Other disorders of branched-chain amino-acid metabolism +C0348484|T047|AB|E71.19|ICD10CM|Other disorders of branched-chain amino-acid metabolism|Other disorders of branched-chain amino-acid metabolism +C0342712|T047|AB|E71.2|ICD10CM|Disorder of branched-chain amino-acid metabolism, unsp|Disorder of branched-chain amino-acid metabolism, unsp +C0342712|T047|PT|E71.2|ICD10CM|Disorder of branched-chain amino-acid metabolism, unspecified|Disorder of branched-chain amino-acid metabolism, unspecified +C0342712|T047|PT|E71.2|ICD10|Disorder of branched-chain amino-acid metabolism, unspecified|Disorder of branched-chain amino-acid metabolism, unspecified +C0268634|T047|PT|E71.3|ICD10|Disorders of fatty-acid metabolism|Disorders of fatty-acid metabolism +C0268634|T047|HT|E71.3|ICD10CM|Disorders of fatty-acid metabolism|Disorders of fatty-acid metabolism +C0268634|T047|AB|E71.3|ICD10CM|Disorders of fatty-acid metabolism|Disorders of fatty-acid metabolism +C0268634|T047|AB|E71.30|ICD10CM|Disorder of fatty-acid metabolism, unspecified|Disorder of fatty-acid metabolism, unspecified +C0268634|T047|PT|E71.30|ICD10CM|Disorder of fatty-acid metabolism, unspecified|Disorder of fatty-acid metabolism, unspecified +C1456270|T047|AB|E71.31|ICD10CM|Disorders of fatty-acid oxidation|Disorders of fatty-acid oxidation +C1456270|T047|HT|E71.31|ICD10CM|Disorders of fatty-acid oxidation|Disorders of fatty-acid oxidation +C2874239|T047|ET|E71.310|ICD10CM|LCAD|LCAD +C2874239|T047|PT|E71.310|ICD10CM|Long chain/very long chain acyl CoA dehydrogenase deficiency|Long chain/very long chain acyl CoA dehydrogenase deficiency +C2874239|T047|AB|E71.310|ICD10CM|Long chain/very long chain acyl CoA dehydrogenase deficiency|Long chain/very long chain acyl CoA dehydrogenase deficiency +C2874239|T047|ET|E71.310|ICD10CM|VLCAD|VLCAD +C0220710|T047|ET|E71.311|ICD10CM|MCAD|MCAD +C0220710|T047|PT|E71.311|ICD10CM|Medium chain acyl CoA dehydrogenase deficiency|Medium chain acyl CoA dehydrogenase deficiency +C0220710|T047|AB|E71.311|ICD10CM|Medium chain acyl CoA dehydrogenase deficiency|Medium chain acyl CoA dehydrogenase deficiency +C0342783|T047|ET|E71.312|ICD10CM|SCAD|SCAD +C0342783|T047|AB|E71.312|ICD10CM|Short chain acyl CoA dehydrogenase deficiency|Short chain acyl CoA dehydrogenase deficiency +C0342783|T047|PT|E71.312|ICD10CM|Short chain acyl CoA dehydrogenase deficiency|Short chain acyl CoA dehydrogenase deficiency +C0268596|T047|PT|E71.313|ICD10CM|Glutaric aciduria type II|Glutaric aciduria type II +C0268596|T047|AB|E71.313|ICD10CM|Glutaric aciduria type II|Glutaric aciduria type II +C2874240|T047|ET|E71.313|ICD10CM|Glutaric aciduria type II A|Glutaric aciduria type II A +C2874241|T047|ET|E71.313|ICD10CM|Glutaric aciduria type II B|Glutaric aciduria type II B +C2874242|T047|ET|E71.313|ICD10CM|Glutaric aciduria type II C|Glutaric aciduria type II C +C2874243|T047|AB|E71.314|ICD10CM|Muscle carnitine palmitoyltransferase deficiency|Muscle carnitine palmitoyltransferase deficiency +C2874243|T047|PT|E71.314|ICD10CM|Muscle carnitine palmitoyltransferase deficiency|Muscle carnitine palmitoyltransferase deficiency +C1829846|T047|AB|E71.318|ICD10CM|Other disorders of fatty-acid oxidation|Other disorders of fatty-acid oxidation +C1829846|T047|PT|E71.318|ICD10CM|Other disorders of fatty-acid oxidation|Other disorders of fatty-acid oxidation +C2874244|T047|AB|E71.32|ICD10CM|Disorders of ketone metabolism|Disorders of ketone metabolism +C2874244|T047|PT|E71.32|ICD10CM|Disorders of ketone metabolism|Disorders of ketone metabolism +C2874245|T047|AB|E71.39|ICD10CM|Other disorders of fatty-acid metabolism|Other disorders of fatty-acid metabolism +C2874245|T047|PT|E71.39|ICD10CM|Other disorders of fatty-acid metabolism|Other disorders of fatty-acid metabolism +C2874246|T047|AB|E71.4|ICD10CM|Disorders of carnitine metabolism|Disorders of carnitine metabolism +C2874246|T047|HT|E71.4|ICD10CM|Disorders of carnitine metabolism|Disorders of carnitine metabolism +C2874246|T047|AB|E71.40|ICD10CM|Disorder of carnitine metabolism, unspecified|Disorder of carnitine metabolism, unspecified +C2874246|T047|PT|E71.40|ICD10CM|Disorder of carnitine metabolism, unspecified|Disorder of carnitine metabolism, unspecified +C0342788|T047|PT|E71.41|ICD10CM|Primary carnitine deficiency|Primary carnitine deficiency +C0342788|T047|AB|E71.41|ICD10CM|Primary carnitine deficiency|Primary carnitine deficiency +C3875374|T047|AB|E71.42|ICD10CM|Carnitine deficiency due to inborn errors of metabolism|Carnitine deficiency due to inborn errors of metabolism +C3875374|T047|PT|E71.42|ICD10CM|Carnitine deficiency due to inborn errors of metabolism|Carnitine deficiency due to inborn errors of metabolism +C1260389|T046|ET|E71.43|ICD10CM|Carnitine deficiency due to hemodialysis|Carnitine deficiency due to hemodialysis +C1260390|T046|ET|E71.43|ICD10CM|Carnitine deficiency due to Valproic acid therapy|Carnitine deficiency due to Valproic acid therapy +C1260391|T046|PT|E71.43|ICD10CM|Iatrogenic carnitine deficiency|Iatrogenic carnitine deficiency +C1260391|T046|AB|E71.43|ICD10CM|Iatrogenic carnitine deficiency|Iatrogenic carnitine deficiency +C1260392|T047|HT|E71.44|ICD10CM|Other secondary carnitine deficiency|Other secondary carnitine deficiency +C1260392|T047|AB|E71.44|ICD10CM|Other secondary carnitine deficiency|Other secondary carnitine deficiency +C0265326|T047|PT|E71.440|ICD10CM|Ruvalcaba-Myhre-Smith syndrome|Ruvalcaba-Myhre-Smith syndrome +C0265326|T047|AB|E71.440|ICD10CM|Ruvalcaba-Myhre-Smith syndrome|Ruvalcaba-Myhre-Smith syndrome +C1260392|T047|AB|E71.448|ICD10CM|Other secondary carnitine deficiency|Other secondary carnitine deficiency +C1260392|T047|PT|E71.448|ICD10CM|Other secondary carnitine deficiency|Other secondary carnitine deficiency +C0282528|T047|HT|E71.5|ICD10CM|Peroxisomal disorders|Peroxisomal disorders +C0282528|T047|AB|E71.5|ICD10CM|Peroxisomal disorders|Peroxisomal disorders +C0282528|T047|AB|E71.50|ICD10CM|Peroxisomal disorder, unspecified|Peroxisomal disorder, unspecified +C0282528|T047|PT|E71.50|ICD10CM|Peroxisomal disorder, unspecified|Peroxisomal disorder, unspecified +C1832200|T047|AB|E71.51|ICD10CM|Disorders of peroxisome biogenesis|Disorders of peroxisome biogenesis +C1832200|T047|HT|E71.51|ICD10CM|Disorders of peroxisome biogenesis|Disorders of peroxisome biogenesis +C2874247|T047|ET|E71.51|ICD10CM|Group 1 peroxisomal disorders|Group 1 peroxisomal disorders +C0043459|T047|PT|E71.510|ICD10CM|Zellweger syndrome|Zellweger syndrome +C0043459|T047|AB|E71.510|ICD10CM|Zellweger syndrome|Zellweger syndrome +C0282525|T047|PT|E71.511|ICD10CM|Neonatal adrenoleukodystrophy|Neonatal adrenoleukodystrophy +C0282525|T047|AB|E71.511|ICD10CM|Neonatal adrenoleukodystrophy|Neonatal adrenoleukodystrophy +C2874248|T047|AB|E71.518|ICD10CM|Other disorders of peroxisome biogenesis|Other disorders of peroxisome biogenesis +C2874248|T047|PT|E71.518|ICD10CM|Other disorders of peroxisome biogenesis|Other disorders of peroxisome biogenesis +C0162309|T047|HT|E71.52|ICD10CM|X-linked adrenoleukodystrophy|X-linked adrenoleukodystrophy +C0162309|T047|AB|E71.52|ICD10CM|X-linked adrenoleukodystrophy|X-linked adrenoleukodystrophy +C2874249|T047|PT|E71.520|ICD10CM|Childhood cerebral X-linked adrenoleukodystrophy|Childhood cerebral X-linked adrenoleukodystrophy +C2874249|T047|AB|E71.520|ICD10CM|Childhood cerebral X-linked adrenoleukodystrophy|Childhood cerebral X-linked adrenoleukodystrophy +C2874250|T047|PT|E71.521|ICD10CM|Adolescent X-linked adrenoleukodystrophy|Adolescent X-linked adrenoleukodystrophy +C2874250|T047|AB|E71.521|ICD10CM|Adolescent X-linked adrenoleukodystrophy|Adolescent X-linked adrenoleukodystrophy +C1527231|T047|PT|E71.522|ICD10CM|Adrenomyeloneuropathy|Adrenomyeloneuropathy +C1527231|T047|AB|E71.522|ICD10CM|Adrenomyeloneuropathy|Adrenomyeloneuropathy +C2874251|T047|ET|E71.528|ICD10CM|Addison only phenotype adrenoleukodystrophy|Addison only phenotype adrenoleukodystrophy +C2874252|T047|ET|E71.528|ICD10CM|Addison-Schilder adrenoleukodystrophy|Addison-Schilder adrenoleukodystrophy +C2874253|T047|AB|E71.528|ICD10CM|Other X-linked adrenoleukodystrophy|Other X-linked adrenoleukodystrophy +C2874253|T047|PT|E71.528|ICD10CM|Other X-linked adrenoleukodystrophy|Other X-linked adrenoleukodystrophy +C0162309|T047|AB|E71.529|ICD10CM|X-linked adrenoleukodystrophy, unspecified type|X-linked adrenoleukodystrophy, unspecified type +C0162309|T047|PT|E71.529|ICD10CM|X-linked adrenoleukodystrophy, unspecified type|X-linked adrenoleukodystrophy, unspecified type +C2874254|T047|AB|E71.53|ICD10CM|Other group 2 peroxisomal disorders|Other group 2 peroxisomal disorders +C2874254|T047|PT|E71.53|ICD10CM|Other group 2 peroxisomal disorders|Other group 2 peroxisomal disorders +C2874255|T047|HT|E71.54|ICD10CM|Other peroxisomal disorders|Other peroxisomal disorders +C2874255|T047|AB|E71.54|ICD10CM|Other peroxisomal disorders|Other peroxisomal disorders +C0282529|T047|PT|E71.540|ICD10CM|Rhizomelic chondrodysplasia punctata|Rhizomelic chondrodysplasia punctata +C0282529|T047|AB|E71.540|ICD10CM|Rhizomelic chondrodysplasia punctata|Rhizomelic chondrodysplasia punctata +C0751594|T047|PT|E71.541|ICD10CM|Zellweger-like syndrome|Zellweger-like syndrome +C0751594|T047|AB|E71.541|ICD10CM|Zellweger-like syndrome|Zellweger-like syndrome +C2874256|T047|AB|E71.542|ICD10CM|Other group 3 peroxisomal disorders|Other group 3 peroxisomal disorders +C2874256|T047|PT|E71.542|ICD10CM|Other group 3 peroxisomal disorders|Other group 3 peroxisomal disorders +C2874255|T047|AB|E71.548|ICD10CM|Other peroxisomal disorders|Other peroxisomal disorders +C2874255|T047|PT|E71.548|ICD10CM|Other peroxisomal disorders|Other peroxisomal disorders +C0494334|T047|AB|E72|ICD10CM|Other disorders of amino-acid metabolism|Other disorders of amino-acid metabolism +C0494334|T047|HT|E72|ICD10CM|Other disorders of amino-acid metabolism|Other disorders of amino-acid metabolism +C0494334|T047|HT|E72|ICD10|Other disorders of amino-acid metabolism|Other disorders of amino-acid metabolism +C0268641|T047|PT|E72.0|ICD10|Disorders of amino-acid transport|Disorders of amino-acid transport +C0268641|T047|HT|E72.0|ICD10CM|Disorders of amino-acid transport|Disorders of amino-acid transport +C0268641|T047|AB|E72.0|ICD10CM|Disorders of amino-acid transport|Disorders of amino-acid transport +C0268641|T047|AB|E72.00|ICD10CM|Disorders of amino-acid transport, unspecified|Disorders of amino-acid transport, unspecified +C0268641|T047|PT|E72.00|ICD10CM|Disorders of amino-acid transport, unspecified|Disorders of amino-acid transport, unspecified +C0010691|T047|PT|E72.01|ICD10CM|Cystinuria|Cystinuria +C0010691|T047|AB|E72.01|ICD10CM|Cystinuria|Cystinuria +C0018609|T047|AB|E72.02|ICD10CM|Hartnup's disease|Hartnup's disease +C0018609|T047|PT|E72.02|ICD10CM|Hartnup's disease|Hartnup's disease +C0028860|T047|PT|E72.03|ICD10CM|Lowe's syndrome|Lowe's syndrome +C0028860|T047|AB|E72.03|ICD10CM|Lowe's syndrome|Lowe's syndrome +C4316899|T047|PT|E72.04|ICD10CM|Cystinosis|Cystinosis +C4316899|T047|AB|E72.04|ICD10CM|Cystinosis|Cystinosis +C2874257|T047|ET|E72.04|ICD10CM|Fanconi (-de Toni) (-Debré) syndrome with cystinosis|Fanconi (-de Toni) (-Debré) syndrome with cystinosis +C2874258|T047|ET|E72.09|ICD10CM|Fanconi (-de Toni) (-Debré) syndrome, unspecified|Fanconi (-de Toni) (-Debré) syndrome, unspecified +C2874259|T047|AB|E72.09|ICD10CM|Other disorders of amino-acid transport|Other disorders of amino-acid transport +C2874259|T047|PT|E72.09|ICD10CM|Other disorders of amino-acid transport|Other disorders of amino-acid transport +C0268613|T047|HT|E72.1|ICD10CM|Disorders of sulfur-bearing amino-acid metabolism|Disorders of sulfur-bearing amino-acid metabolism +C0268613|T047|AB|E72.1|ICD10CM|Disorders of sulfur-bearing amino-acid metabolism|Disorders of sulfur-bearing amino-acid metabolism +C0268613|T047|PT|E72.1|ICD10|Disorders of sulfur-bearing amino-acid metabolism|Disorders of sulfur-bearing amino-acid metabolism +C0268613|T047|AB|E72.10|ICD10CM|Disorders of sulfur-bearing amino-acid metabolism, unsp|Disorders of sulfur-bearing amino-acid metabolism, unsp +C0268613|T047|PT|E72.10|ICD10CM|Disorders of sulfur-bearing amino-acid metabolism, unspecified|Disorders of sulfur-bearing amino-acid metabolism, unspecified +C0019880|T047|ET|E72.11|ICD10CM|Cystathionine synthase deficiency|Cystathionine synthase deficiency +C0019880|T047|PT|E72.11|ICD10CM|Homocystinuria|Homocystinuria +C0019880|T047|AB|E72.11|ICD10CM|Homocystinuria|Homocystinuria +C1856061|T047|PT|E72.12|ICD10CM|Methylenetetrahydrofolate reductase deficiency|Methylenetetrahydrofolate reductase deficiency +C1856061|T047|AB|E72.12|ICD10CM|Methylenetetrahydrofolate reductase deficiency|Methylenetetrahydrofolate reductase deficiency +C0220993|T047|ET|E72.19|ICD10CM|Cystathioninuria|Cystathioninuria +C4048705|T047|ET|E72.19|ICD10CM|Methioninemia|Methioninemia +C2874260|T047|AB|E72.19|ICD10CM|Other disorders of sulfur-bearing amino-acid metabolism|Other disorders of sulfur-bearing amino-acid metabolism +C2874260|T047|PT|E72.19|ICD10CM|Other disorders of sulfur-bearing amino-acid metabolism|Other disorders of sulfur-bearing amino-acid metabolism +C0268624|T047|ET|E72.19|ICD10CM|Sulfite oxidase deficiency|Sulfite oxidase deficiency +C0154246|T047|PT|E72.2|ICD10|Disorders of urea cycle metabolism|Disorders of urea cycle metabolism +C0154246|T047|HT|E72.2|ICD10CM|Disorders of urea cycle metabolism|Disorders of urea cycle metabolism +C0154246|T047|AB|E72.2|ICD10CM|Disorders of urea cycle metabolism|Disorders of urea cycle metabolism +C0154246|T047|AB|E72.20|ICD10CM|Disorder of urea cycle metabolism, unspecified|Disorder of urea cycle metabolism, unspecified +C0154246|T047|PT|E72.20|ICD10CM|Disorder of urea cycle metabolism, unspecified|Disorder of urea cycle metabolism, unspecified +C0220994|T047|ET|E72.20|ICD10CM|Hyperammonemia|Hyperammonemia +C0268548|T047|PT|E72.21|ICD10CM|Argininemia|Argininemia +C0268548|T047|AB|E72.21|ICD10CM|Argininemia|Argininemia +C0596122|T046|PT|E72.22|ICD10CM|Arginosuccinic aciduria|Arginosuccinic aciduria +C0596122|T046|AB|E72.22|ICD10CM|Arginosuccinic aciduria|Arginosuccinic aciduria +C0175683|T047|PT|E72.23|ICD10CM|Citrullinemia|Citrullinemia +C0175683|T047|AB|E72.23|ICD10CM|Citrullinemia|Citrullinemia +C2874261|T047|AB|E72.29|ICD10CM|Other disorders of urea cycle metabolism|Other disorders of urea cycle metabolism +C2874261|T047|PT|E72.29|ICD10CM|Other disorders of urea cycle metabolism|Other disorders of urea cycle metabolism +C0268552|T047|PT|E72.3|ICD10CM|Disorders of lysine and hydroxylysine metabolism|Disorders of lysine and hydroxylysine metabolism +C0268552|T047|AB|E72.3|ICD10CM|Disorders of lysine and hydroxylysine metabolism|Disorders of lysine and hydroxylysine metabolism +C0268552|T047|PT|E72.3|ICD10|Disorders of lysine and hydroxylysine metabolism|Disorders of lysine and hydroxylysine metabolism +C0268595|T047|ET|E72.3|ICD10CM|Glutaric aciduria (type I)|Glutaric aciduria (type I) +C0268594|T047|ET|E72.3|ICD10CM|Glutaric aciduria NOS|Glutaric aciduria NOS +C1399910|T047|ET|E72.3|ICD10CM|Hydroxylysinemia|Hydroxylysinemia +C0268553|T047|ET|E72.3|ICD10CM|Hyperlysinemia|Hyperlysinemia +C0342690|T047|PT|E72.4|ICD10CM|Disorders of ornithine metabolism|Disorders of ornithine metabolism +C0342690|T047|AB|E72.4|ICD10CM|Disorders of ornithine metabolism|Disorders of ornithine metabolism +C0342690|T047|PT|E72.4|ICD10|Disorders of ornithine metabolism|Disorders of ornithine metabolism +C0268540|T047|ET|E72.4|ICD10CM|Hyperammonemia-Hyperornithinemia-Homocitrullinemia syndrome|Hyperammonemia-Hyperornithinemia-Homocitrullinemia syndrome +C0268542|T047|ET|E72.4|ICD10CM|Ornithine transcarbamylase deficiency|Ornithine transcarbamylase deficiency +C2874262|T047|ET|E72.4|ICD10CM|Ornithinemia (types I, II)|Ornithinemia (types I, II) +C0268558|T047|HT|E72.5|ICD10CM|Disorders of glycine metabolism|Disorders of glycine metabolism +C0268558|T047|AB|E72.5|ICD10CM|Disorders of glycine metabolism|Disorders of glycine metabolism +C0268558|T047|PT|E72.5|ICD10|Disorders of glycine metabolism|Disorders of glycine metabolism +C0268558|T047|AB|E72.50|ICD10CM|Disorder of glycine metabolism, unspecified|Disorder of glycine metabolism, unspecified +C0268558|T047|PT|E72.50|ICD10CM|Disorder of glycine metabolism, unspecified|Disorder of glycine metabolism, unspecified +C0751748|T047|PT|E72.51|ICD10CM|Non-ketotic hyperglycinemia|Non-ketotic hyperglycinemia +C0751748|T047|AB|E72.51|ICD10CM|Non-ketotic hyperglycinemia|Non-ketotic hyperglycinemia +C0342739|T047|PT|E72.52|ICD10CM|Trimethylaminuria|Trimethylaminuria +C0342739|T047|AB|E72.52|ICD10CM|Trimethylaminuria|Trimethylaminuria +C1298681|T047|ET|E72.53|ICD10CM|Oxalosis|Oxalosis +C0020500|T047|ET|E72.53|ICD10CM|Oxaluria|Oxaluria +C0020501|T047|AB|E72.53|ICD10CM|Primary hyperoxaluria|Primary hyperoxaluria +C0020501|T047|PT|E72.53|ICD10CM|Primary hyperoxaluria|Primary hyperoxaluria +C1291386|T047|ET|E72.59|ICD10CM|D-glycericacidemia|D-glycericacidemia +C0268531|T047|ET|E72.59|ICD10CM|Hyperhydroxyprolinemia|Hyperhydroxyprolinemia +C2874263|T047|ET|E72.59|ICD10CM|Hyperprolinemia (types I, II)|Hyperprolinemia (types I, II) +C2874264|T047|AB|E72.59|ICD10CM|Other disorders of glycine metabolism|Other disorders of glycine metabolism +C2874264|T047|PT|E72.59|ICD10CM|Other disorders of glycine metabolism|Other disorders of glycine metabolism +C0268563|T047|ET|E72.59|ICD10CM|Sarcosinemia|Sarcosinemia +C0029774|T047|AB|E72.8|ICD10CM|Other specified disorders of amino-acid metabolism|Other specified disorders of amino-acid metabolism +C0029774|T047|HT|E72.8|ICD10CM|Other specified disorders of amino-acid metabolism|Other specified disorders of amino-acid metabolism +C0029774|T047|PT|E72.8|ICD10|Other specified disorders of amino-acid metabolism|Other specified disorders of amino-acid metabolism +C0268631|T047|ET|E72.81|ICD10CM|4-hydroxybutyric aciduria|4-hydroxybutyric aciduria +C4718779|T047|ET|E72.81|ICD10CM|Disorders of GABA metabolism|Disorders of GABA metabolism +C4702813|T047|AB|E72.81|ICD10CM|Disorders of gamma aminobutyric acid metabolism|Disorders of gamma aminobutyric acid metabolism +C4702813|T047|PT|E72.81|ICD10CM|Disorders of gamma aminobutyric acid metabolism|Disorders of gamma aminobutyric acid metabolism +C0268631|T047|ET|E72.81|ICD10CM|GABA metabolic defect|GABA metabolic defect +C0342708|T047|ET|E72.81|ICD10CM|GABA transaminase deficiency|GABA transaminase deficiency +C0342708|T047|ET|E72.81|ICD10CM|GABA-T deficiency|GABA-T deficiency +C0268631|T047|ET|E72.81|ICD10CM|Gamma-hydroxybutyric aciduria|Gamma-hydroxybutyric aciduria +C0268631|T047|ET|E72.81|ICD10CM|SSADHD|SSADHD +C0268631|T047|ET|E72.81|ICD10CM|Succinic semialdehyde dehydrogenase deficiency|Succinic semialdehyde dehydrogenase deficiency +C4718780|T047|ET|E72.89|ICD10CM|Disorders of beta-amino-acid metabolism|Disorders of beta-amino-acid metabolism +C0268517|T047|ET|E72.89|ICD10CM|Disorders of gamma-glutamyl cycle|Disorders of gamma-glutamyl cycle +C0029774|T047|PT|E72.89|ICD10CM|Other specified disorders of amino-acid metabolism|Other specified disorders of amino-acid metabolism +C0029774|T047|AB|E72.89|ICD10CM|Other specified disorders of amino-acid metabolism|Other specified disorders of amino-acid metabolism +C0002514|T047|PT|E72.9|ICD10CM|Disorder of amino-acid metabolism, unspecified|Disorder of amino-acid metabolism, unspecified +C0002514|T047|AB|E72.9|ICD10CM|Disorder of amino-acid metabolism, unspecified|Disorder of amino-acid metabolism, unspecified +C0002514|T047|PT|E72.9|ICD10|Disorder of amino-acid metabolism, unspecified|Disorder of amino-acid metabolism, unspecified +C0022951|T047|HT|E73|ICD10|Lactose intolerance|Lactose intolerance +C0022951|T047|HT|E73|ICD10CM|Lactose intolerance|Lactose intolerance +C0022951|T047|AB|E73|ICD10CM|Lactose intolerance|Lactose intolerance +C0268179|T046|PT|E73.0|ICD10|Congenital lactase deficiency|Congenital lactase deficiency +C0268179|T046|PT|E73.0|ICD10CM|Congenital lactase deficiency|Congenital lactase deficiency +C0268179|T046|AB|E73.0|ICD10CM|Congenital lactase deficiency|Congenital lactase deficiency +C0268183|T047|PT|E73.1|ICD10CM|Secondary lactase deficiency|Secondary lactase deficiency +C0268183|T047|AB|E73.1|ICD10CM|Secondary lactase deficiency|Secondary lactase deficiency +C0268183|T047|PT|E73.1|ICD10|Secondary lactase deficiency|Secondary lactase deficiency +C0348485|T047|PT|E73.8|ICD10|Other lactose intolerance|Other lactose intolerance +C0348485|T047|PT|E73.8|ICD10CM|Other lactose intolerance|Other lactose intolerance +C0348485|T047|AB|E73.8|ICD10CM|Other lactose intolerance|Other lactose intolerance +C0022951|T047|PT|E73.9|ICD10CM|Lactose intolerance, unspecified|Lactose intolerance, unspecified +C0022951|T047|AB|E73.9|ICD10CM|Lactose intolerance, unspecified|Lactose intolerance, unspecified +C0022951|T047|PT|E73.9|ICD10|Lactose intolerance, unspecified|Lactose intolerance, unspecified +C0494336|T047|AB|E74|ICD10CM|Other disorders of carbohydrate metabolism|Other disorders of carbohydrate metabolism +C0494336|T047|HT|E74|ICD10CM|Other disorders of carbohydrate metabolism|Other disorders of carbohydrate metabolism +C0494336|T047|HT|E74|ICD10|Other disorders of carbohydrate metabolism|Other disorders of carbohydrate metabolism +C0017919|T047|PT|E74.0|ICD10|Glycogen storage disease|Glycogen storage disease +C0017919|T047|HT|E74.0|ICD10CM|Glycogen storage disease|Glycogen storage disease +C0017919|T047|AB|E74.0|ICD10CM|Glycogen storage disease|Glycogen storage disease +C0017919|T047|AB|E74.00|ICD10CM|Glycogen storage disease, unspecified|Glycogen storage disease, unspecified +C0017919|T047|PT|E74.00|ICD10CM|Glycogen storage disease, unspecified|Glycogen storage disease, unspecified +C0017920|T047|ET|E74.01|ICD10CM|Type I glycogen storage disease|Type I glycogen storage disease +C0017920|T047|PT|E74.01|ICD10CM|von Gierke disease|von Gierke disease +C0017920|T047|AB|E74.01|ICD10CM|von Gierke disease|von Gierke disease +C0340420|T019|ET|E74.02|ICD10CM|Cardiac glycogenosis|Cardiac glycogenosis +C0017921|T047|PT|E74.02|ICD10CM|Pompe disease|Pompe disease +C0017921|T047|AB|E74.02|ICD10CM|Pompe disease|Pompe disease +C0342751|T047|ET|E74.02|ICD10CM|Type II glycogen storage disease|Type II glycogen storage disease +C0017922|T047|PT|E74.03|ICD10CM|Cori disease|Cori disease +C0017922|T047|AB|E74.03|ICD10CM|Cori disease|Cori disease +C0017922|T047|ET|E74.03|ICD10CM|Forbes disease|Forbes disease +C0017922|T047|ET|E74.03|ICD10CM|Type III glycogen storage disease|Type III glycogen storage disease +C0017924|T047|PT|E74.04|ICD10CM|McArdle disease|McArdle disease +C0017924|T047|AB|E74.04|ICD10CM|McArdle disease|McArdle disease +C0017924|T047|ET|E74.04|ICD10CM|Type V glycogen storage disease|Type V glycogen storage disease +C0017923|T047|ET|E74.09|ICD10CM|Andersen disease|Andersen disease +C2874266|T047|ET|E74.09|ICD10CM|Glycogen storage disease, types 0, IV, VI-XI|Glycogen storage disease, types 0, IV, VI-XI +C0017925|T047|ET|E74.09|ICD10CM|Hers disease|Hers disease +C0017925|T047|ET|E74.09|ICD10CM|Liver phosphorylase deficiency|Liver phosphorylase deficiency +C0017926|T047|ET|E74.09|ICD10CM|Muscle phosphofructokinase deficiency|Muscle phosphofructokinase deficiency +C2874267|T047|AB|E74.09|ICD10CM|Other glycogen storage disease|Other glycogen storage disease +C2874267|T047|PT|E74.09|ICD10CM|Other glycogen storage disease|Other glycogen storage disease +C0017926|T047|ET|E74.09|ICD10CM|Tauri disease|Tauri disease +C0342744|T047|HT|E74.1|ICD10CM|Disorders of fructose metabolism|Disorders of fructose metabolism +C0342744|T047|AB|E74.1|ICD10CM|Disorders of fructose metabolism|Disorders of fructose metabolism +C0342744|T047|PT|E74.1|ICD10|Disorders of fructose metabolism|Disorders of fructose metabolism +C0342744|T047|AB|E74.10|ICD10CM|Disorder of fructose metabolism, unspecified|Disorder of fructose metabolism, unspecified +C0342744|T047|PT|E74.10|ICD10CM|Disorder of fructose metabolism, unspecified|Disorder of fructose metabolism, unspecified +C0268160|T047|PT|E74.11|ICD10CM|Essential fructosuria|Essential fructosuria +C0268160|T047|AB|E74.11|ICD10CM|Essential fructosuria|Essential fructosuria +C0268160|T047|ET|E74.11|ICD10CM|Fructokinase deficiency|Fructokinase deficiency +C0016751|T047|ET|E74.12|ICD10CM|Fructosemia|Fructosemia +C0016751|T047|PT|E74.12|ICD10CM|Hereditary fructose intolerance|Hereditary fructose intolerance +C0016751|T047|AB|E74.12|ICD10CM|Hereditary fructose intolerance|Hereditary fructose intolerance +C0016756|T047|ET|E74.19|ICD10CM|Fructose-1, 6-diphosphatase deficiency|Fructose-1, 6-diphosphatase deficiency +C2874268|T047|AB|E74.19|ICD10CM|Other disorders of fructose metabolism|Other disorders of fructose metabolism +C2874268|T047|PT|E74.19|ICD10CM|Other disorders of fructose metabolism|Other disorders of fructose metabolism +C0342745|T047|HT|E74.2|ICD10CM|Disorders of galactose metabolism|Disorders of galactose metabolism +C0342745|T047|AB|E74.2|ICD10CM|Disorders of galactose metabolism|Disorders of galactose metabolism +C0342745|T047|PT|E74.2|ICD10|Disorders of galactose metabolism|Disorders of galactose metabolism +C0342745|T047|AB|E74.20|ICD10CM|Disorders of galactose metabolism, unspecified|Disorders of galactose metabolism, unspecified +C0342745|T047|PT|E74.20|ICD10CM|Disorders of galactose metabolism, unspecified|Disorders of galactose metabolism, unspecified +C0016952|T047|PT|E74.21|ICD10CM|Galactosemia|Galactosemia +C0016952|T047|AB|E74.21|ICD10CM|Galactosemia|Galactosemia +C0268155|T047|ET|E74.29|ICD10CM|Galactokinase deficiency|Galactokinase deficiency +C2874269|T047|AB|E74.29|ICD10CM|Other disorders of galactose metabolism|Other disorders of galactose metabolism +C2874269|T047|PT|E74.29|ICD10CM|Other disorders of galactose metabolism|Other disorders of galactose metabolism +C0348486|T047|HT|E74.3|ICD10CM|Other disorders of intestinal carbohydrate absorption|Other disorders of intestinal carbohydrate absorption +C0348486|T047|AB|E74.3|ICD10CM|Other disorders of intestinal carbohydrate absorption|Other disorders of intestinal carbohydrate absorption +C0348486|T047|PT|E74.3|ICD10|Other disorders of intestinal carbohydrate absorption|Other disorders of intestinal carbohydrate absorption +C1283620|T047|PT|E74.31|ICD10CM|Sucrase-isomaltase deficiency|Sucrase-isomaltase deficiency +C1283620|T047|AB|E74.31|ICD10CM|Sucrase-isomaltase deficiency|Sucrase-isomaltase deficiency +C0232658|T046|ET|E74.39|ICD10CM|Disorder of intestinal carbohydrate absorption NOS|Disorder of intestinal carbohydrate absorption NOS +C0268186|T019|ET|E74.39|ICD10CM|Glucose-galactose malabsorption|Glucose-galactose malabsorption +C0268186|T047|ET|E74.39|ICD10CM|Glucose-galactose malabsorption|Glucose-galactose malabsorption +C0348486|T047|PT|E74.39|ICD10CM|Other disorders of intestinal carbohydrate absorption|Other disorders of intestinal carbohydrate absorption +C0348486|T047|AB|E74.39|ICD10CM|Other disorders of intestinal carbohydrate absorption|Other disorders of intestinal carbohydrate absorption +C0543515|T047|ET|E74.39|ICD10CM|Sucrase deficiency|Sucrase deficiency +C0268194|T047|ET|E74.4|ICD10CM|Deficiency of phosphoenolpyruvate carboxykinase|Deficiency of phosphoenolpyruvate carboxykinase +C0034341|T047|ET|E74.4|ICD10CM|Deficiency of pyruvate carboxylase|Deficiency of pyruvate carboxylase +C0034345|T047|ET|E74.4|ICD10CM|Deficiency of pyruvate dehydrogenase|Deficiency of pyruvate dehydrogenase +C0348946|T047|PT|E74.4|ICD10CM|Disorders of pyruvate metabolism and gluconeogenesis|Disorders of pyruvate metabolism and gluconeogenesis +C0348946|T047|AB|E74.4|ICD10CM|Disorders of pyruvate metabolism and gluconeogenesis|Disorders of pyruvate metabolism and gluconeogenesis +C0348946|T047|PT|E74.4|ICD10|Disorders of pyruvate metabolism and gluconeogenesis|Disorders of pyruvate metabolism and gluconeogenesis +C0268162|T047|ET|E74.8|ICD10CM|Essential pentosuria|Essential pentosuria +C0348487|T047|PT|E74.8|ICD10CM|Other specified disorders of carbohydrate metabolism|Other specified disorders of carbohydrate metabolism +C0348487|T047|AB|E74.8|ICD10CM|Other specified disorders of carbohydrate metabolism|Other specified disorders of carbohydrate metabolism +C0348487|T047|PT|E74.8|ICD10|Other specified disorders of carbohydrate metabolism|Other specified disorders of carbohydrate metabolism +C0017980|T047|ET|E74.8|ICD10CM|Renal glycosuria|Renal glycosuria +C0149670|T047|PT|E74.9|ICD10CM|Disorder of carbohydrate metabolism, unspecified|Disorder of carbohydrate metabolism, unspecified +C0149670|T047|AB|E74.9|ICD10CM|Disorder of carbohydrate metabolism, unspecified|Disorder of carbohydrate metabolism, unspecified +C0149670|T047|PT|E74.9|ICD10|Disorder of carbohydrate metabolism, unspecified|Disorder of carbohydrate metabolism, unspecified +C0494338|T047|AB|E75|ICD10CM|Disord of sphingolipid metab and oth lipid storage disorders|Disord of sphingolipid metab and oth lipid storage disorders +C0494338|T047|HT|E75|ICD10CM|Disorders of sphingolipid metabolism and other lipid storage disorders|Disorders of sphingolipid metabolism and other lipid storage disorders +C0494338|T047|HT|E75|ICD10|Disorders of sphingolipid metabolism and other lipid storage disorders|Disorders of sphingolipid metabolism and other lipid storage disorders +C0268274|T047|HT|E75.0|ICD10CM|GM2 gangliosidosis|GM2 gangliosidosis +C0268274|T047|AB|E75.0|ICD10CM|GM2 gangliosidosis|GM2 gangliosidosis +C0268274|T047|PT|E75.0|ICD10|GM2 gangliosidosis|GM2 gangliosidosis +C0268274|T047|AB|E75.00|ICD10CM|GM2 gangliosidosis, unspecified|GM2 gangliosidosis, unspecified +C0268274|T047|PT|E75.00|ICD10CM|GM2 gangliosidosis, unspecified|GM2 gangliosidosis, unspecified +C0036161|T047|PT|E75.01|ICD10CM|Sandhoff disease|Sandhoff disease +C0036161|T047|AB|E75.01|ICD10CM|Sandhoff disease|Sandhoff disease +C0039373|T047|PT|E75.02|ICD10CM|Tay-Sachs disease|Tay-Sachs disease +C0039373|T047|AB|E75.02|ICD10CM|Tay-Sachs disease|Tay-Sachs disease +C2874270|T047|ET|E75.09|ICD10CM|Adult GM2 gangliosidosis|Adult GM2 gangliosidosis +C0268276|T047|ET|E75.09|ICD10CM|Juvenile GM2 gangliosidosis|Juvenile GM2 gangliosidosis +C2874271|T047|AB|E75.09|ICD10CM|Other GM2 gangliosidosis|Other GM2 gangliosidosis +C2874271|T047|PT|E75.09|ICD10CM|Other GM2 gangliosidosis|Other GM2 gangliosidosis +C2874272|T047|AB|E75.1|ICD10CM|Other and unspecified gangliosidosis|Other and unspecified gangliosidosis +C2874272|T047|HT|E75.1|ICD10CM|Other and unspecified gangliosidosis|Other and unspecified gangliosidosis +C0348488|T047|PT|E75.1|ICD10|Other gangliosidosis|Other gangliosidosis +C0017083|T047|ET|E75.10|ICD10CM|Gangliosidosis NOS|Gangliosidosis NOS +C0017083|T047|AB|E75.10|ICD10CM|Unspecified gangliosidosis|Unspecified gangliosidosis +C0017083|T047|PT|E75.10|ICD10CM|Unspecified gangliosidosis|Unspecified gangliosidosis +C0238286|T047|PT|E75.11|ICD10CM|Mucolipidosis IV|Mucolipidosis IV +C0238286|T047|AB|E75.11|ICD10CM|Mucolipidosis IV|Mucolipidosis IV +C0085131|T047|ET|E75.19|ICD10CM|GM1 gangliosidosis|GM1 gangliosidosis +C0795951|T047|ET|E75.19|ICD10CM|GM3 gangliosidosis|GM3 gangliosidosis +C0348488|T047|PT|E75.19|ICD10CM|Other gangliosidosis|Other gangliosidosis +C0348488|T047|AB|E75.19|ICD10CM|Other gangliosidosis|Other gangliosidosis +C0348489|T047|HT|E75.2|ICD10CM|Other sphingolipidosis|Other sphingolipidosis +C0348489|T047|AB|E75.2|ICD10CM|Other sphingolipidosis|Other sphingolipidosis +C0348489|T047|PT|E75.2|ICD10|Other sphingolipidosis|Other sphingolipidosis +C0002986|T047|AB|E75.21|ICD10CM|Fabry (-Anderson) disease|Fabry (-Anderson) disease +C0002986|T047|PT|E75.21|ICD10CM|Fabry (-Anderson) disease|Fabry (-Anderson) disease +C0017205|T047|PT|E75.22|ICD10CM|Gaucher disease|Gaucher disease +C0017205|T047|AB|E75.22|ICD10CM|Gaucher disease|Gaucher disease +C0023521|T047|PT|E75.23|ICD10CM|Krabbe disease|Krabbe disease +C0023521|T047|AB|E75.23|ICD10CM|Krabbe disease|Krabbe disease +C0028064|T047|HT|E75.24|ICD10CM|Niemann-Pick disease|Niemann-Pick disease +C0028064|T047|AB|E75.24|ICD10CM|Niemann-Pick disease|Niemann-Pick disease +C0268242|T047|PT|E75.240|ICD10CM|Niemann-Pick disease type A|Niemann-Pick disease type A +C0268242|T047|AB|E75.240|ICD10CM|Niemann-Pick disease type A|Niemann-Pick disease type A +C0268243|T047|PT|E75.241|ICD10CM|Niemann-Pick disease type B|Niemann-Pick disease type B +C0268243|T047|AB|E75.241|ICD10CM|Niemann-Pick disease type B|Niemann-Pick disease type B +C0220756|T047|PT|E75.242|ICD10CM|Niemann-Pick disease type C|Niemann-Pick disease type C +C0220756|T047|AB|E75.242|ICD10CM|Niemann-Pick disease type C|Niemann-Pick disease type C +C0268247|T047|PT|E75.243|ICD10CM|Niemann-Pick disease type D|Niemann-Pick disease type D +C0268247|T047|AB|E75.243|ICD10CM|Niemann-Pick disease type D|Niemann-Pick disease type D +C2874273|T047|AB|E75.248|ICD10CM|Other Niemann-Pick disease|Other Niemann-Pick disease +C2874273|T047|PT|E75.248|ICD10CM|Other Niemann-Pick disease|Other Niemann-Pick disease +C0028064|T047|AB|E75.249|ICD10CM|Niemann-Pick disease, unspecified|Niemann-Pick disease, unspecified +C0028064|T047|PT|E75.249|ICD10CM|Niemann-Pick disease, unspecified|Niemann-Pick disease, unspecified +C0023522|T047|PT|E75.25|ICD10CM|Metachromatic leukodystrophy|Metachromatic leukodystrophy +C0023522|T047|AB|E75.25|ICD10CM|Metachromatic leukodystrophy|Metachromatic leukodystrophy +C0268263|T047|ET|E75.26|ICD10CM|Multiple sulfatase deficiency (MSD)|Multiple sulfatase deficiency (MSD) +C1283601|T047|AB|E75.26|ICD10CM|Sulfatase deficiency|Sulfatase deficiency +C1283601|T047|PT|E75.26|ICD10CM|Sulfatase deficiency|Sulfatase deficiency +C2874274|T047|ET|E75.29|ICD10CM|Farber's syndrome|Farber's syndrome +C0348489|T047|PT|E75.29|ICD10CM|Other sphingolipidosis|Other sphingolipidosis +C0348489|T047|AB|E75.29|ICD10CM|Other sphingolipidosis|Other sphingolipidosis +C0023522|T047|ET|E75.29|ICD10CM|Sulfatide lipidosis|Sulfatide lipidosis +C0037899|T047|PT|E75.3|ICD10CM|Sphingolipidosis, unspecified|Sphingolipidosis, unspecified +C0037899|T047|AB|E75.3|ICD10CM|Sphingolipidosis, unspecified|Sphingolipidosis, unspecified +C0037899|T047|PT|E75.3|ICD10|Sphingolipidosis, unspecified|Sphingolipidosis, unspecified +C0751383|T047|ET|E75.4|ICD10CM|Batten disease|Batten disease +C0022340|T047|ET|E75.4|ICD10CM|Bielschowsky-Jansky disease|Bielschowsky-Jansky disease +C0022797|T047|ET|E75.4|ICD10CM|Kufs disease|Kufs disease +C0027877|T047|PT|E75.4|ICD10CM|Neuronal ceroid lipofuscinosis|Neuronal ceroid lipofuscinosis +C0027877|T047|AB|E75.4|ICD10CM|Neuronal ceroid lipofuscinosis|Neuronal ceroid lipofuscinosis +C0027877|T047|PT|E75.4|ICD10|Neuronal ceroid lipofuscinosis|Neuronal ceroid lipofuscinosis +C0751383|T047|ET|E75.4|ICD10CM|Spielmeyer-Vogt disease|Spielmeyer-Vogt disease +C2874275|T047|ET|E75.5|ICD10CM|Cerebrotendinous cholesterosis [van Bogaert-Scherer-Epstein]|Cerebrotendinous cholesterosis [van Bogaert-Scherer-Epstein] +C0348490|T047|PT|E75.5|ICD10|Other lipid storage disorders|Other lipid storage disorders +C0348490|T047|PT|E75.5|ICD10CM|Other lipid storage disorders|Other lipid storage disorders +C0348490|T047|AB|E75.5|ICD10CM|Other lipid storage disorders|Other lipid storage disorders +C0043208|T047|ET|E75.5|ICD10CM|Wolman's disease|Wolman's disease +C0023794|T047|PT|E75.6|ICD10CM|Lipid storage disorder, unspecified|Lipid storage disorder, unspecified +C0023794|T047|AB|E75.6|ICD10CM|Lipid storage disorder, unspecified|Lipid storage disorder, unspecified +C0023794|T047|PT|E75.6|ICD10|Lipid storage disorder, unspecified|Lipid storage disorder, unspecified +C0342837|T047|HT|E76|ICD10|Disorders of glycosaminoglycan metabolism|Disorders of glycosaminoglycan metabolism +C0342837|T047|AB|E76|ICD10CM|Disorders of glycosaminoglycan metabolism|Disorders of glycosaminoglycan metabolism +C0342837|T047|HT|E76|ICD10CM|Disorders of glycosaminoglycan metabolism|Disorders of glycosaminoglycan metabolism +C0023786|T047|PT|E76.0|ICD10|Mucopolysaccharidosis, type I|Mucopolysaccharidosis, type I +C0023786|T047|HT|E76.0|ICD10CM|Mucopolysaccharidosis, type I|Mucopolysaccharidosis, type I +C0023786|T047|AB|E76.0|ICD10CM|Mucopolysaccharidosis, type I|Mucopolysaccharidosis, type I +C0086795|T047|PT|E76.01|ICD10CM|Hurler's syndrome|Hurler's syndrome +C0086795|T047|AB|E76.01|ICD10CM|Hurler's syndrome|Hurler's syndrome +C0086431|T047|PT|E76.02|ICD10CM|Hurler-Scheie syndrome|Hurler-Scheie syndrome +C0086431|T047|AB|E76.02|ICD10CM|Hurler-Scheie syndrome|Hurler-Scheie syndrome +C0026708|T047|PT|E76.03|ICD10CM|Scheie's syndrome|Scheie's syndrome +C0026708|T047|AB|E76.03|ICD10CM|Scheie's syndrome|Scheie's syndrome +C0026705|T047|ET|E76.1|ICD10CM|Hunter's syndrome|Hunter's syndrome +C0026705|T047|PT|E76.1|ICD10CM|Mucopolysaccharidosis, type II|Mucopolysaccharidosis, type II +C0026705|T047|AB|E76.1|ICD10CM|Mucopolysaccharidosis, type II|Mucopolysaccharidosis, type II +C0026705|T047|PT|E76.1|ICD10|Mucopolysaccharidosis, type II|Mucopolysaccharidosis, type II +C0348491|T047|PT|E76.2|ICD10|Other mucopolysaccharidoses|Other mucopolysaccharidoses +C0348491|T047|HT|E76.2|ICD10CM|Other mucopolysaccharidoses|Other mucopolysaccharidoses +C0348491|T047|AB|E76.2|ICD10CM|Other mucopolysaccharidoses|Other mucopolysaccharidoses +C2874280|T047|AB|E76.21|ICD10CM|Morquio mucopolysaccharidoses|Morquio mucopolysaccharidoses +C2874280|T047|HT|E76.21|ICD10CM|Morquio mucopolysaccharidoses|Morquio mucopolysaccharidoses +C2874276|T047|ET|E76.210|ICD10CM|Classic Morquio syndrome|Classic Morquio syndrome +C2874277|T047|AB|E76.210|ICD10CM|Morquio A mucopolysaccharidoses|Morquio A mucopolysaccharidoses +C2874277|T047|PT|E76.210|ICD10CM|Morquio A mucopolysaccharidoses|Morquio A mucopolysaccharidoses +C0086651|T047|ET|E76.210|ICD10CM|Morquio syndrome A|Morquio syndrome A +C0086651|T047|ET|E76.210|ICD10CM|Mucopolysaccharidosis, type IVA|Mucopolysaccharidosis, type IVA +C2874279|T047|AB|E76.211|ICD10CM|Morquio B mucopolysaccharidoses|Morquio B mucopolysaccharidoses +C2874279|T047|PT|E76.211|ICD10CM|Morquio B mucopolysaccharidoses|Morquio B mucopolysaccharidoses +C0086652|T047|ET|E76.211|ICD10CM|Morquio syndrome B|Morquio syndrome B +C2874278|T047|ET|E76.211|ICD10CM|Morquio-like mucopolysaccharidoses|Morquio-like mucopolysaccharidoses +C0086652|T047|ET|E76.211|ICD10CM|Morquio-like syndrome|Morquio-like syndrome +C0086652|T047|ET|E76.211|ICD10CM|Mucopolysaccharidosis, type IVB|Mucopolysaccharidosis, type IVB +C2874280|T047|AB|E76.219|ICD10CM|Morquio mucopolysaccharidoses, unspecified|Morquio mucopolysaccharidoses, unspecified +C2874280|T047|PT|E76.219|ICD10CM|Morquio mucopolysaccharidoses, unspecified|Morquio mucopolysaccharidoses, unspecified +C0026707|T047|ET|E76.219|ICD10CM|Morquio syndrome|Morquio syndrome +C0026707|T047|ET|E76.219|ICD10CM|Mucopolysaccharidosis, type IV|Mucopolysaccharidosis, type IV +C2874281|T047|ET|E76.22|ICD10CM|Mucopolysaccharidosis, type III (A) (B) (C) (D)|Mucopolysaccharidosis, type III (A) (B) (C) (D) +C0086647|T047|ET|E76.22|ICD10CM|Sanfilippo A syndrome|Sanfilippo A syndrome +C0086648|T047|ET|E76.22|ICD10CM|Sanfilippo B syndrome|Sanfilippo B syndrome +C0086649|T047|ET|E76.22|ICD10CM|Sanfilippo C syndrome|Sanfilippo C syndrome +C0086650|T047|ET|E76.22|ICD10CM|Sanfilippo D syndrome|Sanfilippo D syndrome +C2874282|T047|AB|E76.22|ICD10CM|Sanfilippo mucopolysaccharidoses|Sanfilippo mucopolysaccharidoses +C2874282|T047|PT|E76.22|ICD10CM|Sanfilippo mucopolysaccharidoses|Sanfilippo mucopolysaccharidoses +C0085132|T047|ET|E76.29|ICD10CM|beta-Glucuronidase deficiency|beta-Glucuronidase deficiency +C2874283|T047|ET|E76.29|ICD10CM|Maroteaux-Lamy (mild) (severe) syndrome|Maroteaux-Lamy (mild) (severe) syndrome +C2874284|T047|ET|E76.29|ICD10CM|Mucopolysaccharidosis, types VI, VII|Mucopolysaccharidosis, types VI, VII +C0348491|T047|PT|E76.29|ICD10CM|Other mucopolysaccharidoses|Other mucopolysaccharidoses +C0348491|T047|AB|E76.29|ICD10CM|Other mucopolysaccharidoses|Other mucopolysaccharidoses +C0026703|T047|PT|E76.3|ICD10CM|Mucopolysaccharidosis, unspecified|Mucopolysaccharidosis, unspecified +C0026703|T047|AB|E76.3|ICD10CM|Mucopolysaccharidosis, unspecified|Mucopolysaccharidosis, unspecified +C0026703|T047|PT|E76.3|ICD10|Mucopolysaccharidosis, unspecified|Mucopolysaccharidosis, unspecified +C0348492|T047|PT|E76.8|ICD10|Other disorders of glucosaminoglycan metabolism|Other disorders of glucosaminoglycan metabolism +C0348492|T047|PT|E76.8|ICD10CM|Other disorders of glucosaminoglycan metabolism|Other disorders of glucosaminoglycan metabolism +C0348492|T047|AB|E76.8|ICD10CM|Other disorders of glucosaminoglycan metabolism|Other disorders of glucosaminoglycan metabolism +C0348503|T047|PT|E76.9|ICD10|Disorder of glucosaminoglycan metabolism, unspecified|Disorder of glucosaminoglycan metabolism, unspecified +C0348503|T047|AB|E76.9|ICD10CM|Glucosaminoglycan metabolism disorder, unspecified|Glucosaminoglycan metabolism disorder, unspecified +C0348503|T047|PT|E76.9|ICD10CM|Glucosaminoglycan metabolism disorder, unspecified|Glucosaminoglycan metabolism disorder, unspecified +C0342844|T047|HT|E77|ICD10CM|Disorders of glycoprotein metabolism|Disorders of glycoprotein metabolism +C0342844|T047|AB|E77|ICD10CM|Disorders of glycoprotein metabolism|Disorders of glycoprotein metabolism +C0342844|T047|HT|E77|ICD10|Disorders of glycoprotein metabolism|Disorders of glycoprotein metabolism +C0342845|T047|AB|E77.0|ICD10CM|Defects in post-translational mod of lysosomal enzymes|Defects in post-translational mod of lysosomal enzymes +C0342845|T047|PT|E77.0|ICD10CM|Defects in post-translational modification of lysosomal enzymes|Defects in post-translational modification of lysosomal enzymes +C0342845|T047|PT|E77.0|ICD10|Defects in post-translational modification of lysosomal enzymes|Defects in post-translational modification of lysosomal enzymes +C2874285|T047|ET|E77.0|ICD10CM|Mucolipidosis II [I-cell disease]|Mucolipidosis II [I-cell disease] +C2874286|T047|ET|E77.0|ICD10CM|Mucolipidosis III [pseudo-Hurler polydystrophy]|Mucolipidosis III [pseudo-Hurler polydystrophy] +C0268225|T047|ET|E77.1|ICD10CM|Aspartylglucosaminuria|Aspartylglucosaminuria +C0494342|T047|PT|E77.1|ICD10|Defects in glycoprotein degradation|Defects in glycoprotein degradation +C0494342|T047|PT|E77.1|ICD10CM|Defects in glycoprotein degradation|Defects in glycoprotein degradation +C0494342|T047|AB|E77.1|ICD10CM|Defects in glycoprotein degradation|Defects in glycoprotein degradation +C0016788|T047|ET|E77.1|ICD10CM|Fucosidosis|Fucosidosis +C1257960|T047|ET|E77.1|ICD10CM|Mannosidosis|Mannosidosis +C0268226|T047|ET|E77.1|ICD10CM|Sialidosis [mucolipidosis I]|Sialidosis [mucolipidosis I] +C0348493|T047|PT|E77.8|ICD10CM|Other disorders of glycoprotein metabolism|Other disorders of glycoprotein metabolism +C0348493|T047|AB|E77.8|ICD10CM|Other disorders of glycoprotein metabolism|Other disorders of glycoprotein metabolism +C0348493|T047|PT|E77.8|ICD10|Other disorders of glycoprotein metabolism|Other disorders of glycoprotein metabolism +C0342844|T047|PT|E77.9|ICD10|Disorder of glycoprotein metabolism, unspecified|Disorder of glycoprotein metabolism, unspecified +C0342844|T047|PT|E77.9|ICD10CM|Disorder of glycoprotein metabolism, unspecified|Disorder of glycoprotein metabolism, unspecified +C0342844|T047|AB|E77.9|ICD10CM|Disorder of glycoprotein metabolism, unspecified|Disorder of glycoprotein metabolism, unspecified +C0494343|T047|HT|E78|ICD10|Disorders of lipoprotein metabolism and other lipidaemias|Disorders of lipoprotein metabolism and other lipidaemias +C2874287|T047|AB|E78|ICD10CM|Disorders of lipoprotein metabolism and other lipidemias|Disorders of lipoprotein metabolism and other lipidemias +C2874287|T047|HT|E78|ICD10CM|Disorders of lipoprotein metabolism and other lipidemias|Disorders of lipoprotein metabolism and other lipidemias +C0678189|T047|PT|E78.0|ICD10|Pure hypercholesterolaemia|Pure hypercholesterolaemia +C0678189|T047|PT|E78.0|ICD10AE|Pure hypercholesterolemia|Pure hypercholesterolemia +C0678189|T047|AB|E78.0|ICD10CM|Pure hypercholesterolemia|Pure hypercholesterolemia +C0678189|T047|HT|E78.0|ICD10CM|Pure hypercholesterolemia|Pure hypercholesterolemia +C0678189|T047|ET|E78.00|ICD10CM|(Pure) hypercholesterolemia NOS|(Pure) hypercholesterolemia NOS +C0745103|T047|ET|E78.00|ICD10CM|Fredrickson's hyperlipoproteinemia, type IIa|Fredrickson's hyperlipoproteinemia, type IIa +C0020445|T047|ET|E78.00|ICD10CM|Hyperbetalipoproteinemia|Hyperbetalipoproteinemia +C4270821|T047|ET|E78.00|ICD10CM|Low-density-lipoprotein-type [LDL] hyperlipoproteinemia|Low-density-lipoprotein-type [LDL] hyperlipoproteinemia +C4268183|T047|AB|E78.00|ICD10CM|Pure hypercholesterolemia, unspecified|Pure hypercholesterolemia, unspecified +C4268183|T047|PT|E78.00|ICD10CM|Pure hypercholesterolemia, unspecified|Pure hypercholesterolemia, unspecified +C0020445|T047|PT|E78.01|ICD10CM|Familial hypercholesterolemia|Familial hypercholesterolemia +C0020445|T047|AB|E78.01|ICD10CM|Familial hypercholesterolemia|Familial hypercholesterolemia +C2874288|T033|ET|E78.1|ICD10CM|Elevated fasting triglycerides|Elevated fasting triglycerides +C0020480|T047|ET|E78.1|ICD10CM|Endogenous hyperglyceridemia|Endogenous hyperglyceridemia +C0020480|T047|ET|E78.1|ICD10CM|Fredrickson's hyperlipoproteinemia, type IV|Fredrickson's hyperlipoproteinemia, type IV +C0020480|T047|ET|E78.1|ICD10CM|Hyperlipidemia, group B|Hyperlipidemia, group B +C0020480|T047|ET|E78.1|ICD10CM|Hyperprebetalipoproteinemia|Hyperprebetalipoproteinemia +C0020480|T047|PT|E78.1|ICD10|Pure hyperglyceridaemia|Pure hyperglyceridaemia +C0020480|T047|PT|E78.1|ICD10CM|Pure hyperglyceridemia|Pure hyperglyceridemia +C0020480|T047|AB|E78.1|ICD10CM|Pure hyperglyceridemia|Pure hyperglyceridemia +C0020480|T047|PT|E78.1|ICD10AE|Pure hyperglyceridemia|Pure hyperglyceridemia +C0020480|T047|ET|E78.1|ICD10CM|Very-low-density-lipoprotein-type [VLDL] hyperlipoproteinemia|Very-low-density-lipoprotein-type [VLDL] hyperlipoproteinemia +C2047520|T047|ET|E78.2|ICD10CM|Broad- or floating-betalipoproteinemia|Broad- or floating-betalipoproteinemia +C2712907|T047|ET|E78.2|ICD10CM|Combined hyperlipidemia NOS|Combined hyperlipidemia NOS +C2712905|T047|ET|E78.2|ICD10CM|Elevated cholesterol with elevated triglycerides NEC|Elevated cholesterol with elevated triglycerides NEC +C1704417|T047|ET|E78.2|ICD10CM|Fredrickson's hyperlipoproteinemia, type IIb or III|Fredrickson's hyperlipoproteinemia, type IIb or III +C1704417|T047|ET|E78.2|ICD10CM|Hyperbetalipoproteinemia with prebetalipoproteinemia|Hyperbetalipoproteinemia with prebetalipoproteinemia +C2874289|T033|ET|E78.2|ICD10CM|Hypercholesteremia with endogenous hyperglyceridemia|Hypercholesteremia with endogenous hyperglyceridemia +C1399990|T047|ET|E78.2|ICD10CM|Hyperlipidemia, group C|Hyperlipidemia, group C +C2047520|T047|PT|E78.2|ICD10|Mixed hyperlipidaemia|Mixed hyperlipidaemia +C2047520|T047|PT|E78.2|ICD10AE|Mixed hyperlipidemia|Mixed hyperlipidemia +C2047520|T047|PT|E78.2|ICD10CM|Mixed hyperlipidemia|Mixed hyperlipidemia +C2047520|T047|AB|E78.2|ICD10CM|Mixed hyperlipidemia|Mixed hyperlipidemia +C0302164|T047|ET|E78.2|ICD10CM|Tubo-eruptive xanthoma|Tubo-eruptive xanthoma +C0302164|T047|ET|E78.2|ICD10CM|Xanthoma tuberosum|Xanthoma tuberosum +C0795956|T047|ET|E78.3|ICD10CM|Chylomicron retention disease|Chylomicron retention disease +C0023817|T047|ET|E78.3|ICD10CM|Fredrickson's hyperlipoproteinemia, type I or V|Fredrickson's hyperlipoproteinemia, type I or V +C0023817|T047|PT|E78.3|ICD10|Hyperchylomicronaemia|Hyperchylomicronaemia +C0023817|T047|PT|E78.3|ICD10CM|Hyperchylomicronemia|Hyperchylomicronemia +C0023817|T047|AB|E78.3|ICD10CM|Hyperchylomicronemia|Hyperchylomicronemia +C0023817|T047|PT|E78.3|ICD10AE|Hyperchylomicronemia|Hyperchylomicronemia +C0023817|T047|ET|E78.3|ICD10CM|Hyperlipidemia, group D|Hyperlipidemia, group D +C0023817|T047|ET|E78.3|ICD10CM|Mixed hyperglyceridemia|Mixed hyperglyceridemia +C0348494|T047|PT|E78.4|ICD10|Other hyperlipidaemia|Other hyperlipidaemia +C0348494|T047|PT|E78.4|ICD10AE|Other hyperlipidemia|Other hyperlipidemia +C0348494|T047|AB|E78.4|ICD10CM|Other hyperlipidemia|Other hyperlipidemia +C0348494|T047|HT|E78.4|ICD10CM|Other hyperlipidemia|Other hyperlipidemia +C4702812|T033|AB|E78.41|ICD10CM|Elevated Lipoprotein(a)|Elevated Lipoprotein(a) +C4702812|T033|PT|E78.41|ICD10CM|Elevated Lipoprotein(a)|Elevated Lipoprotein(a) +C4702812|T033|ET|E78.41|ICD10CM|Elevated Lp(a)|Elevated Lp(a) +C0020474|T047|ET|E78.49|ICD10CM|Familial combined hyperlipidemia|Familial combined hyperlipidemia +C0348494|T047|PT|E78.49|ICD10CM|Other hyperlipidemia|Other hyperlipidemia +C0348494|T047|AB|E78.49|ICD10CM|Other hyperlipidemia|Other hyperlipidemia +C0020473|T047|PT|E78.5|ICD10|Hyperlipidaemia, unspecified|Hyperlipidaemia, unspecified +C0020473|T047|PT|E78.5|ICD10CM|Hyperlipidemia, unspecified|Hyperlipidemia, unspecified +C0020473|T047|AB|E78.5|ICD10CM|Hyperlipidemia, unspecified|Hyperlipidemia, unspecified +C0020473|T047|PT|E78.5|ICD10AE|Hyperlipidemia, unspecified|Hyperlipidemia, unspecified +C0000744|T047|ET|E78.6|ICD10CM|Abetalipoproteinemia|Abetalipoproteinemia +C2874290|T033|ET|E78.6|ICD10CM|Depressed HDL cholesterol|Depressed HDL cholesterol +C3165209|T047|ET|E78.6|ICD10CM|High-density lipoprotein deficiency|High-density lipoprotein deficiency +C0473527|T047|ET|E78.6|ICD10CM|Hypoalphalipoproteinemia|Hypoalphalipoproteinemia +C1862596|T047|ET|E78.6|ICD10CM|Hypobetalipoproteinemia (familial)|Hypobetalipoproteinemia (familial) +C0023195|T047|ET|E78.6|ICD10CM|Lecithin cholesterol acyltransferase deficiency|Lecithin cholesterol acyltransferase deficiency +C0020623|T033|PT|E78.6|ICD10CM|Lipoprotein deficiency|Lipoprotein deficiency +C0020623|T033|AB|E78.6|ICD10CM|Lipoprotein deficiency|Lipoprotein deficiency +C0020623|T033|PT|E78.6|ICD10|Lipoprotein deficiency|Lipoprotein deficiency +C0039292|T047|ET|E78.6|ICD10CM|Tangier disease|Tangier disease +C2874291|T047|AB|E78.7|ICD10CM|Disorders of bile acid and cholesterol metabolism|Disorders of bile acid and cholesterol metabolism +C2874291|T047|HT|E78.7|ICD10CM|Disorders of bile acid and cholesterol metabolism|Disorders of bile acid and cholesterol metabolism +C2874292|T047|AB|E78.70|ICD10CM|Disorder of bile acid and cholesterol metabolism, unsp|Disorder of bile acid and cholesterol metabolism, unsp +C2874292|T047|PT|E78.70|ICD10CM|Disorder of bile acid and cholesterol metabolism, unspecified|Disorder of bile acid and cholesterol metabolism, unspecified +C0574083|T047|PT|E78.71|ICD10CM|Barth syndrome|Barth syndrome +C0574083|T047|AB|E78.71|ICD10CM|Barth syndrome|Barth syndrome +C0175694|T047|PT|E78.72|ICD10CM|Smith-Lemli-Opitz syndrome|Smith-Lemli-Opitz syndrome +C0175694|T047|AB|E78.72|ICD10CM|Smith-Lemli-Opitz syndrome|Smith-Lemli-Opitz syndrome +C2874293|T047|AB|E78.79|ICD10CM|Other disorders of bile acid and cholesterol metabolism|Other disorders of bile acid and cholesterol metabolism +C2874293|T047|PT|E78.79|ICD10CM|Other disorders of bile acid and cholesterol metabolism|Other disorders of bile acid and cholesterol metabolism +C0348495|T047|HT|E78.8|ICD10CM|Other disorders of lipoprotein metabolism|Other disorders of lipoprotein metabolism +C0348495|T047|AB|E78.8|ICD10CM|Other disorders of lipoprotein metabolism|Other disorders of lipoprotein metabolism +C0348495|T047|PT|E78.8|ICD10|Other disorders of lipoprotein metabolism|Other disorders of lipoprotein metabolism +C0311284|T047|PT|E78.81|ICD10CM|Lipoid dermatoarthritis|Lipoid dermatoarthritis +C0311284|T047|AB|E78.81|ICD10CM|Lipoid dermatoarthritis|Lipoid dermatoarthritis +C0348495|T047|AB|E78.89|ICD10CM|Other lipoprotein metabolism disorders|Other lipoprotein metabolism disorders +C0348495|T047|PT|E78.89|ICD10CM|Other lipoprotein metabolism disorders|Other lipoprotein metabolism disorders +C0494345|T047|PT|E78.9|ICD10|Disorder of lipoprotein metabolism, unspecified|Disorder of lipoprotein metabolism, unspecified +C0494345|T047|PT|E78.9|ICD10CM|Disorder of lipoprotein metabolism, unspecified|Disorder of lipoprotein metabolism, unspecified +C0494345|T047|AB|E78.9|ICD10CM|Disorder of lipoprotein metabolism, unspecified|Disorder of lipoprotein metabolism, unspecified +C0034139|T047|HT|E79|ICD10CM|Disorders of purine and pyrimidine metabolism|Disorders of purine and pyrimidine metabolism +C0034139|T047|AB|E79|ICD10CM|Disorders of purine and pyrimidine metabolism|Disorders of purine and pyrimidine metabolism +C0034139|T047|HT|E79|ICD10|Disorders of purine and pyrimidine metabolism|Disorders of purine and pyrimidine metabolism +C0281782|T047|ET|E79.0|ICD10CM|Asymptomatic hyperuricemia|Asymptomatic hyperuricemia +C0348944|T047|PT|E79.0|ICD10|Hyperuricaemia without signs of inflammatory arthritis and tophaceous disease|Hyperuricaemia without signs of inflammatory arthritis and tophaceous disease +C0348944|T047|AB|E79.0|ICD10CM|Hyperuricemia w/o signs of inflam arthrit and tophaceous dis|Hyperuricemia w/o signs of inflam arthrit and tophaceous dis +C0348944|T047|PT|E79.0|ICD10CM|Hyperuricemia without signs of inflammatory arthritis and tophaceous disease|Hyperuricemia without signs of inflammatory arthritis and tophaceous disease +C0348944|T047|PT|E79.0|ICD10AE|Hyperuricemia without signs of inflammatory arthritis and tophaceous disease|Hyperuricemia without signs of inflammatory arthritis and tophaceous disease +C0023374|T047|ET|E79.1|ICD10CM|HGPRT deficiency|HGPRT deficiency +C0023374|T047|PT|E79.1|ICD10CM|Lesch-Nyhan syndrome|Lesch-Nyhan syndrome +C0023374|T047|AB|E79.1|ICD10CM|Lesch-Nyhan syndrome|Lesch-Nyhan syndrome +C0023374|T047|PT|E79.1|ICD10|Lesch-Nyhan syndrome|Lesch-Nyhan syndrome +C0268123|T047|PT|E79.2|ICD10CM|Myoadenylate deaminase deficiency|Myoadenylate deaminase deficiency +C0268123|T047|AB|E79.2|ICD10CM|Myoadenylate deaminase deficiency|Myoadenylate deaminase deficiency +C0220988|T047|ET|E79.8|ICD10CM|Hereditary xanthinuria|Hereditary xanthinuria +C0029595|T047|PT|E79.8|ICD10CM|Other disorders of purine and pyrimidine metabolism|Other disorders of purine and pyrimidine metabolism +C0029595|T047|AB|E79.8|ICD10CM|Other disorders of purine and pyrimidine metabolism|Other disorders of purine and pyrimidine metabolism +C0029595|T047|PT|E79.8|ICD10|Other disorders of purine and pyrimidine metabolism|Other disorders of purine and pyrimidine metabolism +C0034139|T047|PT|E79.9|ICD10|Disorder of purine and pyrimidine metabolism, unspecified|Disorder of purine and pyrimidine metabolism, unspecified +C0034139|T047|PT|E79.9|ICD10CM|Disorder of purine and pyrimidine metabolism, unspecified|Disorder of purine and pyrimidine metabolism, unspecified +C0034139|T047|AB|E79.9|ICD10CM|Disorder of purine and pyrimidine metabolism, unspecified|Disorder of purine and pyrimidine metabolism, unspecified +C0494349|T047|ET|E80|ICD10CM|defects of catalase and peroxidase|defects of catalase and peroxidase +C0494347|T047|AB|E80|ICD10CM|Disorders of porphyrin and bilirubin metabolism|Disorders of porphyrin and bilirubin metabolism +C0494347|T047|HT|E80|ICD10CM|Disorders of porphyrin and bilirubin metabolism|Disorders of porphyrin and bilirubin metabolism +C0494347|T047|HT|E80|ICD10|Disorders of porphyrin and bilirubin metabolism|Disorders of porphyrin and bilirubin metabolism +C0162530|T047|ET|E80.0|ICD10CM|Congenital erythropoietic porphyria|Congenital erythropoietic porphyria +C0162568|T047|ET|E80.0|ICD10CM|Erythropoietic protoporphyria|Erythropoietic protoporphyria +C0162530|T047|PT|E80.0|ICD10CM|Hereditary erythropoietic porphyria|Hereditary erythropoietic porphyria +C0162530|T047|AB|E80.0|ICD10CM|Hereditary erythropoietic porphyria|Hereditary erythropoietic porphyria +C0162530|T047|PT|E80.0|ICD10|Hereditary erythropoietic porphyria|Hereditary erythropoietic porphyria +C0162566|T047|PT|E80.1|ICD10|Porphyria cutanea tarda|Porphyria cutanea tarda +C0162566|T047|PT|E80.1|ICD10CM|Porphyria cutanea tarda|Porphyria cutanea tarda +C0162566|T047|AB|E80.1|ICD10CM|Porphyria cutanea tarda|Porphyria cutanea tarda +C2874294|T047|AB|E80.2|ICD10CM|Other and unspecified porphyria|Other and unspecified porphyria +C2874294|T047|HT|E80.2|ICD10CM|Other and unspecified porphyria|Other and unspecified porphyria +C0348496|T047|PT|E80.2|ICD10|Other porphyria|Other porphyria +C0032708|T047|ET|E80.20|ICD10CM|Porphyria NOS|Porphyria NOS +C0032708|T047|AB|E80.20|ICD10CM|Unspecified porphyria|Unspecified porphyria +C0032708|T047|PT|E80.20|ICD10CM|Unspecified porphyria|Unspecified porphyria +C2874295|T047|AB|E80.21|ICD10CM|Acute intermittent (hepatic) porphyria|Acute intermittent (hepatic) porphyria +C2874295|T047|PT|E80.21|ICD10CM|Acute intermittent (hepatic) porphyria|Acute intermittent (hepatic) porphyria +C0162531|T047|ET|E80.29|ICD10CM|Hereditary coproporphyria|Hereditary coproporphyria +C0348496|T047|PT|E80.29|ICD10CM|Other porphyria|Other porphyria +C0348496|T047|AB|E80.29|ICD10CM|Other porphyria|Other porphyria +C2874296|T047|ET|E80.3|ICD10CM|Acatalasia [Takahara]|Acatalasia [Takahara] +C0494349|T047|PT|E80.3|ICD10|Defects of catalase and peroxidase|Defects of catalase and peroxidase +C0494349|T047|PT|E80.3|ICD10CM|Defects of catalase and peroxidase|Defects of catalase and peroxidase +C0494349|T047|AB|E80.3|ICD10CM|Defects of catalase and peroxidase|Defects of catalase and peroxidase +C0017551|T047|PT|E80.4|ICD10CM|Gilbert syndrome|Gilbert syndrome +C0017551|T047|AB|E80.4|ICD10CM|Gilbert syndrome|Gilbert syndrome +C0017551|T047|PT|E80.4|ICD10|Gilbert's syndrome|Gilbert's syndrome +C0010324|T047|PT|E80.5|ICD10|Crigler-Najjar syndrome|Crigler-Najjar syndrome +C0010324|T047|PT|E80.5|ICD10CM|Crigler-Najjar syndrome|Crigler-Najjar syndrome +C0010324|T047|AB|E80.5|ICD10CM|Crigler-Najjar syndrome|Crigler-Najjar syndrome +C0022350|T047|ET|E80.6|ICD10CM|Dubin-Johnson syndrome|Dubin-Johnson syndrome +C0348497|T047|PT|E80.6|ICD10|Other disorders of bilirubin metabolism|Other disorders of bilirubin metabolism +C0348497|T047|PT|E80.6|ICD10CM|Other disorders of bilirubin metabolism|Other disorders of bilirubin metabolism +C0348497|T047|AB|E80.6|ICD10CM|Other disorders of bilirubin metabolism|Other disorders of bilirubin metabolism +C0220991|T047|ET|E80.6|ICD10CM|Rotor's syndrome|Rotor's syndrome +C0268305|T047|PT|E80.7|ICD10CM|Disorder of bilirubin metabolism, unspecified|Disorder of bilirubin metabolism, unspecified +C0268305|T047|AB|E80.7|ICD10CM|Disorder of bilirubin metabolism, unspecified|Disorder of bilirubin metabolism, unspecified +C0268305|T047|PT|E80.7|ICD10|Disorder of bilirubin metabolism, unspecified|Disorder of bilirubin metabolism, unspecified +C0154260|T046|HT|E83|ICD10|Disorders of mineral metabolism|Disorders of mineral metabolism +C0154260|T046|HT|E83|ICD10CM|Disorders of mineral metabolism|Disorders of mineral metabolism +C0154260|T046|AB|E83|ICD10CM|Disorders of mineral metabolism|Disorders of mineral metabolism +C0012714|T047|PT|E83.0|ICD10|Disorders of copper metabolism|Disorders of copper metabolism +C0012714|T047|HT|E83.0|ICD10CM|Disorders of copper metabolism|Disorders of copper metabolism +C0012714|T047|AB|E83.0|ICD10CM|Disorders of copper metabolism|Disorders of copper metabolism +C0012714|T047|AB|E83.00|ICD10CM|Disorder of copper metabolism, unspecified|Disorder of copper metabolism, unspecified +C0012714|T047|PT|E83.00|ICD10CM|Disorder of copper metabolism, unspecified|Disorder of copper metabolism, unspecified +C0019202|T047|PT|E83.01|ICD10CM|Wilson's disease|Wilson's disease +C0019202|T047|AB|E83.01|ICD10CM|Wilson's disease|Wilson's disease +C2874297|T047|ET|E83.09|ICD10CM|Menkes' (kinky hair) (steely hair) disease|Menkes' (kinky hair) (steely hair) disease +C2874298|T047|AB|E83.09|ICD10CM|Other disorders of copper metabolism|Other disorders of copper metabolism +C2874298|T047|PT|E83.09|ICD10CM|Other disorders of copper metabolism|Other disorders of copper metabolism +C0012715|T047|HT|E83.1|ICD10CM|Disorders of iron metabolism|Disorders of iron metabolism +C0012715|T047|AB|E83.1|ICD10CM|Disorders of iron metabolism|Disorders of iron metabolism +C0012715|T047|PT|E83.1|ICD10|Disorders of iron metabolism|Disorders of iron metabolism +C0012715|T047|AB|E83.10|ICD10CM|Disorder of iron metabolism, unspecified|Disorder of iron metabolism, unspecified +C0012715|T047|PT|E83.10|ICD10CM|Disorder of iron metabolism, unspecified|Disorder of iron metabolism, unspecified +C0018995|T047|HT|E83.11|ICD10CM|Hemochromatosis|Hemochromatosis +C0018995|T047|AB|E83.11|ICD10CM|Hemochromatosis|Hemochromatosis +C0018995|T047|ET|E83.110|ICD10CM|Bronzed diabetes|Bronzed diabetes +C0392514|T047|PT|E83.110|ICD10CM|Hereditary hemochromatosis|Hereditary hemochromatosis +C0392514|T047|AB|E83.110|ICD10CM|Hereditary hemochromatosis|Hereditary hemochromatosis +C1442995|T047|ET|E83.110|ICD10CM|Pigmentary cirrhosis (of liver)|Pigmentary cirrhosis (of liver) +C2921013|T047|ET|E83.110|ICD10CM|Primary (hereditary) hemochromatosis|Primary (hereditary) hemochromatosis +C2921014|T047|AB|E83.111|ICD10CM|Hemochromatosis due to repeated red blood cell transfusions|Hemochromatosis due to repeated red blood cell transfusions +C2921014|T047|PT|E83.111|ICD10CM|Hemochromatosis due to repeated red blood cell transfusions|Hemochromatosis due to repeated red blood cell transfusions +C2921015|T046|ET|E83.111|ICD10CM|Iron overload due to repeated red blood cell transfusions|Iron overload due to repeated red blood cell transfusions +C2921016|T046|ET|E83.111|ICD10CM|Transfusion (red blood cell) associated hemochromatosis|Transfusion (red blood cell) associated hemochromatosis +C2921018|T047|AB|E83.118|ICD10CM|Other hemochromatosis|Other hemochromatosis +C2921018|T047|PT|E83.118|ICD10CM|Other hemochromatosis|Other hemochromatosis +C0018995|T047|AB|E83.119|ICD10CM|Hemochromatosis, unspecified|Hemochromatosis, unspecified +C0018995|T047|PT|E83.119|ICD10CM|Hemochromatosis, unspecified|Hemochromatosis, unspecified +C2874299|T047|AB|E83.19|ICD10CM|Other disorders of iron metabolism|Other disorders of iron metabolism +C2874299|T047|PT|E83.19|ICD10CM|Other disorders of iron metabolism|Other disorders of iron metabolism +C0221036|T047|ET|E83.2|ICD10CM|Acrodermatitis enteropathica|Acrodermatitis enteropathica +C0268085|T046|PT|E83.2|ICD10CM|Disorders of zinc metabolism|Disorders of zinc metabolism +C0268085|T046|AB|E83.2|ICD10CM|Disorders of zinc metabolism|Disorders of zinc metabolism +C0268085|T046|PT|E83.2|ICD10|Disorders of zinc metabolism|Disorders of zinc metabolism +C0031707|T047|PT|E83.3|ICD10|Disorders of phosphorus metabolism|Disorders of phosphorus metabolism +C2874300|T046|AB|E83.3|ICD10CM|Disorders of phosphorus metabolism and phosphatases|Disorders of phosphorus metabolism and phosphatases +C2874300|T046|HT|E83.3|ICD10CM|Disorders of phosphorus metabolism and phosphatases|Disorders of phosphorus metabolism and phosphatases +C2874301|T046|AB|E83.30|ICD10CM|Disorder of phosphorus metabolism, unspecified|Disorder of phosphorus metabolism, unspecified +C2874301|T046|PT|E83.30|ICD10CM|Disorder of phosphorus metabolism, unspecified|Disorder of phosphorus metabolism, unspecified +C0020631|T047|PT|E83.31|ICD10CM|Familial hypophosphatemia|Familial hypophosphatemia +C0020631|T047|AB|E83.31|ICD10CM|Familial hypophosphatemia|Familial hypophosphatemia +C2363067|T047|ET|E83.31|ICD10CM|Vitamin D-resistant osteomalacia|Vitamin D-resistant osteomalacia +C2363065|T047|ET|E83.31|ICD10CM|Vitamin D-resistant rickets|Vitamin D-resistant rickets +C2874302|T047|ET|E83.32|ICD10CM|25-hydroxyvitamin D 1-alpha-hydroxylase deficiency|25-hydroxyvitamin D 1-alpha-hydroxylase deficiency +C2874305|T046|AB|E83.32|ICD10CM|Hereditary vitamin D-dependent rickets (type 1) (type 2)|Hereditary vitamin D-dependent rickets (type 1) (type 2) +C2874305|T046|PT|E83.32|ICD10CM|Hereditary vitamin D-dependent rickets (type 1) (type 2)|Hereditary vitamin D-dependent rickets (type 1) (type 2) +C2874303|T047|ET|E83.32|ICD10CM|Pseudovitamin D deficiency|Pseudovitamin D deficiency +C2874304|T047|ET|E83.32|ICD10CM|Vitamin D receptor defect|Vitamin D receptor defect +C0268410|T047|ET|E83.39|ICD10CM|Acid phosphatase deficiency|Acid phosphatase deficiency +C0020630|T047|ET|E83.39|ICD10CM|Hypophosphatasia|Hypophosphatasia +C2874306|T046|AB|E83.39|ICD10CM|Other disorders of phosphorus metabolism|Other disorders of phosphorus metabolism +C2874306|T046|PT|E83.39|ICD10CM|Other disorders of phosphorus metabolism|Other disorders of phosphorus metabolism +C0012716|T047|HT|E83.4|ICD10CM|Disorders of magnesium metabolism|Disorders of magnesium metabolism +C0012716|T047|AB|E83.4|ICD10CM|Disorders of magnesium metabolism|Disorders of magnesium metabolism +C0012716|T047|PT|E83.4|ICD10|Disorders of magnesium metabolism|Disorders of magnesium metabolism +C0012716|T047|AB|E83.40|ICD10CM|Disorders of magnesium metabolism, unspecified|Disorders of magnesium metabolism, unspecified +C0012716|T047|PT|E83.40|ICD10CM|Disorders of magnesium metabolism, unspecified|Disorders of magnesium metabolism, unspecified +C0151714|T047|PT|E83.41|ICD10CM|Hypermagnesemia|Hypermagnesemia +C0151714|T047|AB|E83.41|ICD10CM|Hypermagnesemia|Hypermagnesemia +C0151723|T047|PT|E83.42|ICD10CM|Hypomagnesemia|Hypomagnesemia +C0151723|T047|AB|E83.42|ICD10CM|Hypomagnesemia|Hypomagnesemia +C2874307|T047|AB|E83.49|ICD10CM|Other disorders of magnesium metabolism|Other disorders of magnesium metabolism +C2874307|T047|PT|E83.49|ICD10CM|Other disorders of magnesium metabolism|Other disorders of magnesium metabolism +C0006705|T047|HT|E83.5|ICD10CM|Disorders of calcium metabolism|Disorders of calcium metabolism +C0006705|T047|AB|E83.5|ICD10CM|Disorders of calcium metabolism|Disorders of calcium metabolism +C0006705|T047|PT|E83.5|ICD10|Disorders of calcium metabolism|Disorders of calcium metabolism +C0006705|T047|AB|E83.50|ICD10CM|Unspecified disorder of calcium metabolism|Unspecified disorder of calcium metabolism +C0006705|T047|PT|E83.50|ICD10CM|Unspecified disorder of calcium metabolism|Unspecified disorder of calcium metabolism +C0020598|T047|PT|E83.51|ICD10CM|Hypocalcemia|Hypocalcemia +C0020598|T047|AB|E83.51|ICD10CM|Hypocalcemia|Hypocalcemia +C1809471|T047|ET|E83.52|ICD10CM|Familial hypocalciuric hypercalcemia|Familial hypocalciuric hypercalcemia +C0020437|T047|PT|E83.52|ICD10CM|Hypercalcemia|Hypercalcemia +C0020437|T047|AB|E83.52|ICD10CM|Hypercalcemia|Hypercalcemia +C0489982|T047|AB|E83.59|ICD10CM|Other disorders of calcium metabolism|Other disorders of calcium metabolism +C0489982|T047|PT|E83.59|ICD10CM|Other disorders of calcium metabolism|Other disorders of calcium metabolism +C0348498|T046|PT|E83.8|ICD10|Other disorders of mineral metabolism|Other disorders of mineral metabolism +C0348498|T046|HT|E83.8|ICD10CM|Other disorders of mineral metabolism|Other disorders of mineral metabolism +C0348498|T046|AB|E83.8|ICD10CM|Other disorders of mineral metabolism|Other disorders of mineral metabolism +C0342635|T047|PT|E83.81|ICD10CM|Hungry bone syndrome|Hungry bone syndrome +C0342635|T047|AB|E83.81|ICD10CM|Hungry bone syndrome|Hungry bone syndrome +C0348498|T046|PT|E83.89|ICD10CM|Other disorders of mineral metabolism|Other disorders of mineral metabolism +C0348498|T046|AB|E83.89|ICD10CM|Other disorders of mineral metabolism|Other disorders of mineral metabolism +C0154260|T046|PT|E83.9|ICD10CM|Disorder of mineral metabolism, unspecified|Disorder of mineral metabolism, unspecified +C0154260|T046|AB|E83.9|ICD10CM|Disorder of mineral metabolism, unspecified|Disorder of mineral metabolism, unspecified +C0154260|T046|PT|E83.9|ICD10|Disorder of mineral metabolism, unspecified|Disorder of mineral metabolism, unspecified +C0010674|T047|HT|E84|ICD10|Cystic fibrosis|Cystic fibrosis +C0010674|T047|HT|E84|ICD10CM|Cystic fibrosis|Cystic fibrosis +C0010674|T047|AB|E84|ICD10CM|Cystic fibrosis|Cystic fibrosis +C0010674|T047|ET|E84|ICD10CM|mucoviscidosis|mucoviscidosis +C0348815|T047|PT|E84.0|ICD10CM|Cystic fibrosis with pulmonary manifestations|Cystic fibrosis with pulmonary manifestations +C0348815|T047|AB|E84.0|ICD10CM|Cystic fibrosis with pulmonary manifestations|Cystic fibrosis with pulmonary manifestations +C0348815|T047|PT|E84.0|ICD10|Cystic fibrosis with pulmonary manifestations|Cystic fibrosis with pulmonary manifestations +C0348816|T047|PT|E84.1|ICD10|Cystic fibrosis with intestinal manifestations|Cystic fibrosis with intestinal manifestations +C0348816|T047|HT|E84.1|ICD10CM|Cystic fibrosis with intestinal manifestations|Cystic fibrosis with intestinal manifestations +C0348816|T047|AB|E84.1|ICD10CM|Cystic fibrosis with intestinal manifestations|Cystic fibrosis with intestinal manifestations +C0546982|T047|PT|E84.11|ICD10CM|Meconium ileus in cystic fibrosis|Meconium ileus in cystic fibrosis +C0546982|T047|AB|E84.11|ICD10CM|Meconium ileus in cystic fibrosis|Meconium ileus in cystic fibrosis +C2874308|T047|AB|E84.19|ICD10CM|Cystic fibrosis with other intestinal manifestations|Cystic fibrosis with other intestinal manifestations +C2874308|T047|PT|E84.19|ICD10CM|Cystic fibrosis with other intestinal manifestations|Cystic fibrosis with other intestinal manifestations +C0398349|T047|ET|E84.19|ICD10CM|Distal intestinal obstruction syndrome|Distal intestinal obstruction syndrome +C0494350|T047|PT|E84.8|ICD10CM|Cystic fibrosis with other manifestations|Cystic fibrosis with other manifestations +C0494350|T047|AB|E84.8|ICD10CM|Cystic fibrosis with other manifestations|Cystic fibrosis with other manifestations +C0494350|T047|PT|E84.8|ICD10|Cystic fibrosis with other manifestations|Cystic fibrosis with other manifestations +C0010674|T047|PT|E84.9|ICD10CM|Cystic fibrosis, unspecified|Cystic fibrosis, unspecified +C0010674|T047|AB|E84.9|ICD10CM|Cystic fibrosis, unspecified|Cystic fibrosis, unspecified +C0010674|T047|PT|E84.9|ICD10|Cystic fibrosis, unspecified|Cystic fibrosis, unspecified +C0002726|T047|HT|E85|ICD10|Amyloidosis|Amyloidosis +C0002726|T047|HT|E85|ICD10CM|Amyloidosis|Amyloidosis +C0002726|T047|AB|E85|ICD10CM|Amyloidosis|Amyloidosis +C1719313|T047|ET|E85.0|ICD10CM|Hereditary amyloid nephropathy|Hereditary amyloid nephropathy +C0342611|T047|PT|E85.0|ICD10CM|Non-neuropathic heredofamilial amyloidosis|Non-neuropathic heredofamilial amyloidosis +C0342611|T047|AB|E85.0|ICD10CM|Non-neuropathic heredofamilial amyloidosis|Non-neuropathic heredofamilial amyloidosis +C0342611|T047|PT|E85.0|ICD10|Non-neuropathic heredofamilial amyloidosis|Non-neuropathic heredofamilial amyloidosis +C2874309|T047|ET|E85.1|ICD10CM|Amyloid polyneuropathy (Portuguese)|Amyloid polyneuropathy (Portuguese) +C0206245|T047|PT|E85.1|ICD10|Neuropathic heredofamilial amyloidosis|Neuropathic heredofamilial amyloidosis +C0206245|T047|PT|E85.1|ICD10CM|Neuropathic heredofamilial amyloidosis|Neuropathic heredofamilial amyloidosis +C0206245|T047|AB|E85.1|ICD10CM|Neuropathic heredofamilial amyloidosis|Neuropathic heredofamilial amyloidosis +C4509022|T047|ET|E85.1|ICD10CM|Transthyretin-related (ATTR) familial amyloid polyneuropathy|Transthyretin-related (ATTR) familial amyloid polyneuropathy +C0348506|T047|PT|E85.2|ICD10CM|Heredofamilial amyloidosis, unspecified|Heredofamilial amyloidosis, unspecified +C0348506|T047|AB|E85.2|ICD10CM|Heredofamilial amyloidosis, unspecified|Heredofamilial amyloidosis, unspecified +C0348506|T047|PT|E85.2|ICD10|Heredofamilial amyloidosis, unspecified|Heredofamilial amyloidosis, unspecified +C0268405|T047|ET|E85.3|ICD10CM|Hemodialysis-associated amyloidosis|Hemodialysis-associated amyloidosis +C3536716|T047|PT|E85.3|ICD10|Secondary systemic amyloidosis|Secondary systemic amyloidosis +C3536716|T047|PT|E85.3|ICD10CM|Secondary systemic amyloidosis|Secondary systemic amyloidosis +C3536716|T047|AB|E85.3|ICD10CM|Secondary systemic amyloidosis|Secondary systemic amyloidosis +C0268392|T047|ET|E85.4|ICD10CM|Localized amyloidosis|Localized amyloidosis +C0494354|T047|PT|E85.4|ICD10|Organ-limited amyloidosis|Organ-limited amyloidosis +C0494354|T047|PT|E85.4|ICD10CM|Organ-limited amyloidosis|Organ-limited amyloidosis +C0494354|T047|AB|E85.4|ICD10CM|Organ-limited amyloidosis|Organ-limited amyloidosis +C4509596|T047|ET|E85.4|ICD10CM|Transthyretin-related (ATTR) familial amyloid cardiomyopathy|Transthyretin-related (ATTR) familial amyloid cardiomyopathy +C0348499|T047|PT|E85.8|ICD10|Other amyloidosis|Other amyloidosis +C0348499|T047|AB|E85.8|ICD10CM|Other amyloidosis|Other amyloidosis +C0348499|T047|HT|E85.8|ICD10CM|Other amyloidosis|Other amyloidosis +C4509023|T047|AB|E85.81|ICD10CM|Light chain (AL) amyloidosis|Light chain (AL) amyloidosis +C4509023|T047|PT|E85.81|ICD10CM|Light chain (AL) amyloidosis|Light chain (AL) amyloidosis +C4509024|T047|ET|E85.82|ICD10CM|Senile systemic amyloidosis (SSA)|Senile systemic amyloidosis (SSA) +C4480969|T047|AB|E85.82|ICD10CM|Wild-type transthyretin-related (ATTR) amyloidosis|Wild-type transthyretin-related (ATTR) amyloidosis +C4480969|T047|PT|E85.82|ICD10CM|Wild-type transthyretin-related (ATTR) amyloidosis|Wild-type transthyretin-related (ATTR) amyloidosis +C0348499|T047|PT|E85.89|ICD10CM|Other amyloidosis|Other amyloidosis +C0348499|T047|AB|E85.89|ICD10CM|Other amyloidosis|Other amyloidosis +C0002726|T047|PT|E85.9|ICD10CM|Amyloidosis, unspecified|Amyloidosis, unspecified +C0002726|T047|AB|E85.9|ICD10CM|Amyloidosis, unspecified|Amyloidosis, unspecified +C0002726|T047|PT|E85.9|ICD10|Amyloidosis, unspecified|Amyloidosis, unspecified +C0546884|T033|HT|E86|ICD10CM|Volume depletion|Volume depletion +C0546884|T033|AB|E86|ICD10CM|Volume depletion|Volume depletion +C0546884|T033|PT|E86|ICD10|Volume depletion|Volume depletion +C0011175|T047|PT|E86.0|ICD10CM|Dehydration|Dehydration +C0011175|T047|AB|E86.0|ICD10CM|Dehydration|Dehydration +C5201039|T033|ET|E86.1|ICD10CM|Depletion of volume of plasma|Depletion of volume of plasma +C0546884|T033|PT|E86.1|ICD10CM|Hypovolemia|Hypovolemia +C0546884|T033|AB|E86.1|ICD10CM|Hypovolemia|Hypovolemia +C0546884|T033|AB|E86.9|ICD10CM|Volume depletion, unspecified|Volume depletion, unspecified +C0546884|T033|PT|E86.9|ICD10CM|Volume depletion, unspecified|Volume depletion, unspecified +C0494355|T046|AB|E87|ICD10CM|Other disorders of fluid, electrolyte and acid-base balance|Other disorders of fluid, electrolyte and acid-base balance +C0494355|T046|HT|E87|ICD10CM|Other disorders of fluid, electrolyte and acid-base balance|Other disorders of fluid, electrolyte and acid-base balance +C0494355|T046|HT|E87|ICD10|Other disorders of fluid, electrolyte and acid-base balance|Other disorders of fluid, electrolyte and acid-base balance +C2004271|T047|PT|E87.0|ICD10|Hyperosmolality and hypernatraemia|Hyperosmolality and hypernatraemia +C2004271|T047|PT|E87.0|ICD10AE|Hyperosmolality and hypernatremia|Hyperosmolality and hypernatremia +C2004271|T047|PT|E87.0|ICD10CM|Hyperosmolality and hypernatremia|Hyperosmolality and hypernatremia +C2004271|T047|AB|E87.0|ICD10CM|Hyperosmolality and hypernatremia|Hyperosmolality and hypernatremia +C0020488|T047|ET|E87.0|ICD10CM|Sodium [Na] excess|Sodium [Na] excess +C0020488|T047|ET|E87.0|ICD10CM|Sodium [Na] overload|Sodium [Na] overload +C0494356|T047|PT|E87.1|ICD10|Hypo-osmolality and hyponatraemia|Hypo-osmolality and hyponatraemia +C0494356|T047|PT|E87.1|ICD10AE|Hypo-osmolality and hyponatremia|Hypo-osmolality and hyponatremia +C0494356|T047|PT|E87.1|ICD10CM|Hypo-osmolality and hyponatremia|Hypo-osmolality and hyponatremia +C0494356|T047|AB|E87.1|ICD10CM|Hypo-osmolality and hyponatremia|Hypo-osmolality and hyponatremia +C0020625|T047|ET|E87.1|ICD10CM|Sodium [Na] deficiency|Sodium [Na] deficiency +C0001122|T046|PT|E87.2|ICD10CM|Acidosis|Acidosis +C0001122|T046|AB|E87.2|ICD10CM|Acidosis|Acidosis +C0001122|T046|PT|E87.2|ICD10|Acidosis|Acidosis +C0001122|T046|ET|E87.2|ICD10CM|Acidosis NOS|Acidosis NOS +C0001125|T047|ET|E87.2|ICD10CM|Lactic acidosis|Lactic acidosis +C0220981|T046|ET|E87.2|ICD10CM|Metabolic acidosis|Metabolic acidosis +C0001127|T047|ET|E87.2|ICD10CM|Respiratory acidosis|Respiratory acidosis +C0002063|T047|PT|E87.3|ICD10CM|Alkalosis|Alkalosis +C0002063|T047|AB|E87.3|ICD10CM|Alkalosis|Alkalosis +C0002063|T047|PT|E87.3|ICD10|Alkalosis|Alkalosis +C0002063|T047|ET|E87.3|ICD10CM|Alkalosis NOS|Alkalosis NOS +C0220983|T047|ET|E87.3|ICD10CM|Metabolic alkalosis|Metabolic alkalosis +C0002064|T046|ET|E87.3|ICD10CM|Respiratory alkalosis|Respiratory alkalosis +C0154264|T047|PT|E87.4|ICD10|Mixed disorder of acid-base balance|Mixed disorder of acid-base balance +C0154264|T047|PT|E87.4|ICD10CM|Mixed disorder of acid-base balance|Mixed disorder of acid-base balance +C0154264|T047|AB|E87.4|ICD10CM|Mixed disorder of acid-base balance|Mixed disorder of acid-base balance +C0020461|T033|PT|E87.5|ICD10|Hyperkalaemia|Hyperkalaemia +C0020461|T033|PT|E87.5|ICD10CM|Hyperkalemia|Hyperkalemia +C0020461|T033|AB|E87.5|ICD10CM|Hyperkalemia|Hyperkalemia +C0020461|T033|PT|E87.5|ICD10AE|Hyperkalemia|Hyperkalemia +C0020461|T033|ET|E87.5|ICD10CM|Potassium [K] excess|Potassium [K] excess +C0020461|T033|ET|E87.5|ICD10CM|Potassium [K] overload|Potassium [K] overload +C0020621|T033|PT|E87.6|ICD10|Hypokalaemia|Hypokalaemia +C0020621|T033|PT|E87.6|ICD10CM|Hypokalemia|Hypokalemia +C0020621|T033|AB|E87.6|ICD10CM|Hypokalemia|Hypokalemia +C0020621|T033|PT|E87.6|ICD10AE|Hypokalemia|Hypokalemia +C0020621|T033|ET|E87.6|ICD10CM|Potassium [K] deficiency|Potassium [K] deficiency +C0546817|T046|PT|E87.7|ICD10|Fluid overload|Fluid overload +C0546817|T046|HT|E87.7|ICD10CM|Fluid overload|Fluid overload +C0546817|T046|AB|E87.7|ICD10CM|Fluid overload|Fluid overload +C0546817|T046|AB|E87.70|ICD10CM|Fluid overload, unspecified|Fluid overload, unspecified +C0546817|T046|PT|E87.70|ICD10CM|Fluid overload, unspecified|Fluid overload, unspecified +C2921020|T046|ET|E87.71|ICD10CM|Fluid overload due to transfusion (blood) (blood components)|Fluid overload due to transfusion (blood) (blood components) +C2921022|T046|ET|E87.71|ICD10CM|TACO|TACO +C2921022|T046|PT|E87.71|ICD10CM|Transfusion associated circulatory overload|Transfusion associated circulatory overload +C2921022|T046|AB|E87.71|ICD10CM|Transfusion associated circulatory overload|Transfusion associated circulatory overload +C2921023|T047|AB|E87.79|ICD10CM|Other fluid overload|Other fluid overload +C2921023|T047|PT|E87.79|ICD10CM|Other fluid overload|Other fluid overload +C0342579|T046|ET|E87.8|ICD10CM|Electrolyte imbalance NOS|Electrolyte imbalance NOS +C0085679|T047|ET|E87.8|ICD10CM|Hyperchloremia|Hyperchloremia +C0085680|T047|ET|E87.8|ICD10CM|Hypochloremia|Hypochloremia +C0869048|T046|AB|E87.8|ICD10CM|Oth disorders of electrolyte and fluid balance, NEC|Oth disorders of electrolyte and fluid balance, NEC +C0869048|T046|PT|E87.8|ICD10CM|Other disorders of electrolyte and fluid balance, not elsewhere classified|Other disorders of electrolyte and fluid balance, not elsewhere classified +C0869048|T046|PT|E87.8|ICD10|Other disorders of electrolyte and fluid balance, not elsewhere classified|Other disorders of electrolyte and fluid balance, not elsewhere classified +C2874310|T047|AB|E88|ICD10CM|Other and unspecified metabolic disorders|Other and unspecified metabolic disorders +C2874310|T047|HT|E88|ICD10CM|Other and unspecified metabolic disorders|Other and unspecified metabolic disorders +C0268329|T047|HT|E88|ICD10|Other metabolic disorders|Other metabolic disorders +C0494359|T047|AB|E88.0|ICD10CM|Disorders of plasma-protein metabolism, NEC|Disorders of plasma-protein metabolism, NEC +C0494359|T047|HT|E88.0|ICD10CM|Disorders of plasma-protein metabolism, not elsewhere classified|Disorders of plasma-protein metabolism, not elsewhere classified +C0494359|T047|PT|E88.0|ICD10|Disorders of plasma-protein metabolism, not elsewhere classified|Disorders of plasma-protein metabolism, not elsewhere classified +C0221757|T047|ET|E88.01|ICD10CM|AAT deficiency|AAT deficiency +C0221757|T047|PT|E88.01|ICD10CM|Alpha-1-antitrypsin deficiency|Alpha-1-antitrypsin deficiency +C0221757|T047|AB|E88.01|ICD10CM|Alpha-1-antitrypsin deficiency|Alpha-1-antitrypsin deficiency +C1968804|T047|ET|E88.02|ICD10CM|Dysplasminogenemia|Dysplasminogenemia +C0398621|T047|ET|E88.02|ICD10CM|Hypoplasminogenemia|Hypoplasminogenemia +C0398621|T047|PT|E88.02|ICD10CM|Plasminogen deficiency|Plasminogen deficiency +C0398621|T047|AB|E88.02|ICD10CM|Plasminogen deficiency|Plasminogen deficiency +C4718781|T033|ET|E88.02|ICD10CM|Type 1 plasminogen deficiency|Type 1 plasminogen deficiency +C4718782|T033|ET|E88.02|ICD10CM|Type 2 plasminogen deficiency|Type 2 plasminogen deficiency +C1261565|T033|ET|E88.09|ICD10CM|Bisalbuminemia|Bisalbuminemia +C2874311|T047|AB|E88.09|ICD10CM|Oth disorders of plasma-protein metabolism, NEC|Oth disorders of plasma-protein metabolism, NEC +C2874311|T047|PT|E88.09|ICD10CM|Other disorders of plasma-protein metabolism, not elsewhere classified|Other disorders of plasma-protein metabolism, not elsewhere classified +C0023787|T047|ET|E88.1|ICD10CM|Lipodystrophy NOS|Lipodystrophy NOS +C0494360|T047|PT|E88.1|ICD10|Lipodystrophy, not elsewhere classified|Lipodystrophy, not elsewhere classified +C0494360|T047|PT|E88.1|ICD10CM|Lipodystrophy, not elsewhere classified|Lipodystrophy, not elsewhere classified +C0494360|T047|AB|E88.1|ICD10CM|Lipodystrophy, not elsewhere classified|Lipodystrophy, not elsewhere classified +C0001529|T047|ET|E88.2|ICD10CM|Lipomatosis (Check) dolorosa [Dercum]|Lipomatosis (Check) dolorosa [Dercum] +C0023801|T047|ET|E88.2|ICD10CM|Lipomatosis NOS|Lipomatosis NOS +C0869206|T047|PT|E88.2|ICD10|Lipomatosis, not elsewhere classified|Lipomatosis, not elsewhere classified +C0869206|T047|PT|E88.2|ICD10CM|Lipomatosis, not elsewhere classified|Lipomatosis, not elsewhere classified +C0869206|T047|AB|E88.2|ICD10CM|Lipomatosis, not elsewhere classified|Lipomatosis, not elsewhere classified +C0041364|T047|PT|E88.3|ICD10CM|Tumor lysis syndrome|Tumor lysis syndrome +C0041364|T047|AB|E88.3|ICD10CM|Tumor lysis syndrome|Tumor lysis syndrome +C2712743|T047|ET|E88.3|ICD10CM|Tumor lysis syndrome (spontaneous)|Tumor lysis syndrome (spontaneous) +C2874312|T047|ET|E88.3|ICD10CM|Tumor lysis syndrome following antineoplastic drug chemotherapy|Tumor lysis syndrome following antineoplastic drug chemotherapy +C1456275|T047|AB|E88.4|ICD10CM|Mitochondrial metabolism disorders|Mitochondrial metabolism disorders +C1456275|T047|HT|E88.4|ICD10CM|Mitochondrial metabolism disorders|Mitochondrial metabolism disorders +C1456275|T047|AB|E88.40|ICD10CM|Mitochondrial metabolism disorder, unspecified|Mitochondrial metabolism disorder, unspecified +C1456275|T047|PT|E88.40|ICD10CM|Mitochondrial metabolism disorder, unspecified|Mitochondrial metabolism disorder, unspecified +C0162671|T047|PT|E88.41|ICD10CM|MELAS syndrome|MELAS syndrome +C0162671|T047|AB|E88.41|ICD10CM|MELAS syndrome|MELAS syndrome +C0162671|T047|ET|E88.41|ICD10CM|Mitochondrial myopathy, encephalopathy, lactic acidosis and stroke-like episodes|Mitochondrial myopathy, encephalopathy, lactic acidosis and stroke-like episodes +C0162672|T047|PT|E88.42|ICD10CM|MERRF syndrome|MERRF syndrome +C0162672|T047|AB|E88.42|ICD10CM|MERRF syndrome|MERRF syndrome +C0162672|T047|ET|E88.42|ICD10CM|Myoclonic epilepsy associated with ragged-red fibers|Myoclonic epilepsy associated with ragged-red fibers +C2874313|T047|AB|E88.49|ICD10CM|Other mitochondrial metabolism disorders|Other mitochondrial metabolism disorders +C2874313|T047|PT|E88.49|ICD10CM|Other mitochondrial metabolism disorders|Other mitochondrial metabolism disorders +C0494362|T047|PT|E88.8|ICD10|Other specified metabolic disorders|Other specified metabolic disorders +C0494362|T047|HT|E88.8|ICD10CM|Other specified metabolic disorders|Other specified metabolic disorders +C0494362|T047|AB|E88.8|ICD10CM|Other specified metabolic disorders|Other specified metabolic disorders +C0524620|T047|ET|E88.81|ICD10CM|Dysmetabolic syndrome X|Dysmetabolic syndrome X +C0524620|T047|PT|E88.81|ICD10CM|Metabolic syndrome|Metabolic syndrome +C0524620|T047|AB|E88.81|ICD10CM|Metabolic syndrome|Metabolic syndrome +C1386301|T047|ET|E88.89|ICD10CM|Launois-Bensaude adenolipomatosis|Launois-Bensaude adenolipomatosis +C0494362|T047|PT|E88.89|ICD10CM|Other specified metabolic disorders|Other specified metabolic disorders +C0494362|T047|AB|E88.89|ICD10CM|Other specified metabolic disorders|Other specified metabolic disorders +C0025517|T047|PT|E88.9|ICD10|Metabolic disorder, unspecified|Metabolic disorder, unspecified +C0025517|T047|PT|E88.9|ICD10CM|Metabolic disorder, unspecified|Metabolic disorder, unspecified +C0025517|T047|AB|E88.9|ICD10CM|Metabolic disorder, unspecified|Metabolic disorder, unspecified +C2874314|T047|AB|E89|ICD10CM|Postproc endocrine and metabolic comp and disorders, NEC|Postproc endocrine and metabolic comp and disorders, NEC +C2874314|T047|HT|E89|ICD10CM|Postprocedural endocrine and metabolic complications and disorders, not elsewhere classified|Postprocedural endocrine and metabolic complications and disorders, not elsewhere classified +C0494363|T047|HT|E89|ICD10|Postprocedural endocrine and metabolic disorders, not elsewhere classified|Postprocedural endocrine and metabolic disorders, not elsewhere classified +C2976866|T046|HT|E89-E89|ICD10CM|Postprocedural endocrine and metabolic complications and disorders, not elsewhere classified (E89)|Postprocedural endocrine and metabolic complications and disorders, not elsewhere classified (E89) +C2874315|T046|ET|E89.0|ICD10CM|Postirradiation hypothyroidism|Postirradiation hypothyroidism +C0494364|T046|PT|E89.0|ICD10|Postprocedural hypothyroidism|Postprocedural hypothyroidism +C0494364|T046|PT|E89.0|ICD10CM|Postprocedural hypothyroidism|Postprocedural hypothyroidism +C0494364|T046|AB|E89.0|ICD10CM|Postprocedural hypothyroidism|Postprocedural hypothyroidism +C0154157|T047|ET|E89.0|ICD10CM|Postsurgical hypothyroidism|Postsurgical hypothyroidism +C0271716|T047|ET|E89.1|ICD10CM|Postpancreatectomy hyperglycemia|Postpancreatectomy hyperglycemia +C0494365|T046|PT|E89.1|ICD10|Postprocedural hypoinsulinaemia|Postprocedural hypoinsulinaemia +C0494365|T046|PT|E89.1|ICD10CM|Postprocedural hypoinsulinemia|Postprocedural hypoinsulinemia +C0494365|T046|AB|E89.1|ICD10CM|Postprocedural hypoinsulinemia|Postprocedural hypoinsulinemia +C0494365|T046|PT|E89.1|ICD10AE|Postprocedural hypoinsulinemia|Postprocedural hypoinsulinemia +C0154190|T047|ET|E89.1|ICD10CM|Postsurgical hypoinsulinemia|Postsurgical hypoinsulinemia +C0242037|T047|ET|E89.2|ICD10CM|Parathyroprival tetany|Parathyroprival tetany +C0494366|T046|PT|E89.2|ICD10|Postprocedural hypoparathyroidism|Postprocedural hypoparathyroidism +C0494366|T046|PT|E89.2|ICD10CM|Postprocedural hypoparathyroidism|Postprocedural hypoparathyroidism +C0494366|T046|AB|E89.2|ICD10CM|Postprocedural hypoparathyroidism|Postprocedural hypoparathyroidism +C2874316|T046|ET|E89.3|ICD10CM|Postirradiation hypopituitarism|Postirradiation hypopituitarism +C0494367|T046|PT|E89.3|ICD10CM|Postprocedural hypopituitarism|Postprocedural hypopituitarism +C0494367|T046|AB|E89.3|ICD10CM|Postprocedural hypopituitarism|Postprocedural hypopituitarism +C0494367|T046|PT|E89.3|ICD10|Postprocedural hypopituitarism|Postprocedural hypopituitarism +C0494368|T047|PT|E89.4|ICD10|Postprocedural ovarian failure|Postprocedural ovarian failure +C0494368|T047|HT|E89.4|ICD10CM|Postprocedural ovarian failure|Postprocedural ovarian failure +C0494368|T047|AB|E89.4|ICD10CM|Postprocedural ovarian failure|Postprocedural ovarian failure +C2874317|T047|PT|E89.40|ICD10CM|Asymptomatic postprocedural ovarian failure|Asymptomatic postprocedural ovarian failure +C2874317|T047|AB|E89.40|ICD10CM|Asymptomatic postprocedural ovarian failure|Asymptomatic postprocedural ovarian failure +C0494368|T047|ET|E89.40|ICD10CM|Postprocedural ovarian failure NOS|Postprocedural ovarian failure NOS +C2874319|T047|PT|E89.41|ICD10CM|Symptomatic postprocedural ovarian failure|Symptomatic postprocedural ovarian failure +C2874319|T047|AB|E89.41|ICD10CM|Symptomatic postprocedural ovarian failure|Symptomatic postprocedural ovarian failure +C0494369|T046|PT|E89.5|ICD10CM|Postprocedural testicular hypofunction|Postprocedural testicular hypofunction +C0494369|T046|AB|E89.5|ICD10CM|Postprocedural testicular hypofunction|Postprocedural testicular hypofunction +C0494369|T046|PT|E89.5|ICD10|Postprocedural testicular hypofunction|Postprocedural testicular hypofunction +C0349364|T046|AB|E89.6|ICD10CM|Postprocedural adrenocortical (-medullary) hypofunction|Postprocedural adrenocortical (-medullary) hypofunction +C0349364|T046|PT|E89.6|ICD10CM|Postprocedural adrenocortical (-medullary) hypofunction|Postprocedural adrenocortical (-medullary) hypofunction +C0349364|T046|PT|E89.6|ICD10|Postprocedural adrenocortical(-medullary) hypofunction|Postprocedural adrenocortical(-medullary) hypofunction +C2874320|T047|AB|E89.8|ICD10CM|Oth postproc endocrine and metabolic comp and disorders|Oth postproc endocrine and metabolic comp and disorders +C2874320|T047|HT|E89.8|ICD10CM|Other postprocedural endocrine and metabolic complications and disorders|Other postprocedural endocrine and metabolic complications and disorders +C0348501|T047|PT|E89.8|ICD10|Other postprocedural endocrine and metabolic disorders|Other postprocedural endocrine and metabolic disorders +C4268184|T046|AB|E89.81|ICD10CM|Postproc hemorrhage of an endo sys org following a procedure|Postproc hemorrhage of an endo sys org following a procedure +C4268184|T046|HT|E89.81|ICD10CM|Postprocedural hemorrhage of an endocrine system organ or structure following a procedure|Postprocedural hemorrhage of an endocrine system organ or structure following a procedure +C4268185|T047|AB|E89.810|ICD10CM|Postproc hemor of an endo sys org fol an endo sys procedure|Postproc hemor of an endo sys org fol an endo sys procedure +C4268186|T047|AB|E89.811|ICD10CM|Postproc hemor of an endo sys org following other procedure|Postproc hemor of an endo sys org following other procedure +C4268186|T047|PT|E89.811|ICD10CM|Postprocedural hemorrhage of an endocrine system organ or structure following other procedure|Postprocedural hemorrhage of an endocrine system organ or structure following other procedure +C4268187|T046|AB|E89.82|ICD10CM|Postprocedural hematoma and seroma of an endo sys org|Postprocedural hematoma and seroma of an endo sys org +C4268187|T046|HT|E89.82|ICD10CM|Postprocedural hematoma and seroma of an endocrine system organ or structure|Postprocedural hematoma and seroma of an endocrine system organ or structure +C4268188|T047|AB|E89.820|ICD10CM|Postproc hematoma of an endo sys org fol an endo sys proc|Postproc hematoma of an endo sys org fol an endo sys proc +C4268189|T047|AB|E89.821|ICD10CM|Postproc hematoma of an endo sys org fol other procedure|Postproc hematoma of an endo sys org fol other procedure +C4268189|T047|PT|E89.821|ICD10CM|Postprocedural hematoma of an endocrine system organ or structure following other procedure|Postprocedural hematoma of an endocrine system organ or structure following other procedure +C4268190|T047|AB|E89.822|ICD10CM|Postproc seroma of an endo sys org fol an endo sys procedure|Postproc seroma of an endo sys org fol an endo sys procedure +C4268191|T047|AB|E89.823|ICD10CM|Postproc seroma of an endo sys org following other procedure|Postproc seroma of an endo sys org following other procedure +C4268191|T047|PT|E89.823|ICD10CM|Postprocedural seroma of an endocrine system organ or structure following other procedure|Postprocedural seroma of an endocrine system organ or structure following other procedure +C2874320|T047|AB|E89.89|ICD10CM|Oth postproc endocrine and metabolic comp and disorders|Oth postproc endocrine and metabolic comp and disorders +C2874320|T047|PT|E89.89|ICD10CM|Other postprocedural endocrine and metabolic complications and disorders|Other postprocedural endocrine and metabolic complications and disorders +C0348507|T047|PT|E89.9|ICD10|Postprocedural endocrine and metabolic disorder, unspecified|Postprocedural endocrine and metabolic disorder, unspecified +C0348502|T047|PT|E90|ICD10|Nutritional and metabolic disorders in diseases classified elsewhere|Nutritional and metabolic disorders in diseases classified elsewhere +C3665464|T048|HT|F00|ICD10|Dementia in Alzheimer's disease|Dementia in Alzheimer's disease +C0556007|T048|HT|F00-F09.9|ICD10|Organic, including symptomatic, mental disorders|Organic, including symptomatic, mental disorders +C0556006|T048|HT|F00-F99.9|ICD10AE|Mental, behavioral disorders|Mental, behavioral disorders +C0556006|T048|HT|F00-F99.9|ICD10|Mental, behavioural disorders|Mental, behavioural disorders +C0750901|T047|PT|F00.0|ICD10|Dementia in Alzheimer's disease with early onset|Dementia in Alzheimer's disease with early onset +C0494463|T048|PT|F00.1|ICD10|Dementia in Alzheimer's disease with late onset|Dementia in Alzheimer's disease with late onset +C0349078|T048|PT|F00.2|ICD10|Dementia in Alzheimer's disease, atypical or mixed type|Dementia in Alzheimer's disease, atypical or mixed type +C3665464|T048|PT|F00.9|ICD10|Dementia in Alzheimer's disease, unspecified|Dementia in Alzheimer's disease, unspecified +C0600359|T047|ET|F01|ICD10CM|arteriosclerotic dementia|arteriosclerotic dementia +C0011269|T047|HT|F01|ICD10CM|Vascular dementia|Vascular dementia +C0011269|T047|AB|F01|ICD10CM|Vascular dementia|Vascular dementia +C0011269|T047|HT|F01|ICD10|Vascular dementia|Vascular dementia +C2874362|T048|HT|F01-F09|ICD10CM|Mental disorders due to known physiological conditions (F01-F09)|Mental disorders due to known physiological conditions (F01-F09) +C0478658|T048|ET|F01-F99|ICD10CM|disorders of psychological development|disorders of psychological development +C0393560|T047|PT|F01.0|ICD10|Vascular dementia of acute onset|Vascular dementia of acute onset +C0011263|T047|PT|F01.1|ICD10|Multi-infarct dementia|Multi-infarct dementia +C0393561|T047|PT|F01.2|ICD10|Subcortical vascular dementia|Subcortical vascular dementia +C0393562|T048|PT|F01.3|ICD10|Mixed cortical and subcortical vascular dementia|Mixed cortical and subcortical vascular dementia +C0011269|T047|HT|F01.5|ICD10CM|Vascular dementia|Vascular dementia +C0011269|T047|AB|F01.5|ICD10CM|Vascular dementia|Vascular dementia +C4268192|T048|ET|F01.50|ICD10CM|Major neurocognitive disorder without behavioral disturbance|Major neurocognitive disorder without behavioral disturbance +C2874324|T047|PT|F01.50|ICD10CM|Vascular dementia without behavioral disturbance|Vascular dementia without behavioral disturbance +C2874324|T047|AB|F01.50|ICD10CM|Vascular dementia without behavioral disturbance|Vascular dementia without behavioral disturbance +C4268193|T048|ET|F01.51|ICD10CM|Major neurocognitive disorder due to vascular disease, with behavioral disturbance|Major neurocognitive disorder due to vascular disease, with behavioral disturbance +C4268194|T048|ET|F01.51|ICD10CM|Major neurocognitive disorder with aggressive behavior|Major neurocognitive disorder with aggressive behavior +C4268195|T048|ET|F01.51|ICD10CM|Major neurocognitive disorder with combative behavior|Major neurocognitive disorder with combative behavior +C4268196|T048|ET|F01.51|ICD10CM|Major neurocognitive disorder with violent behavior|Major neurocognitive disorder with violent behavior +C2874325|T048|ET|F01.51|ICD10CM|Vascular dementia with aggressive behavior|Vascular dementia with aggressive behavior +C2874329|T048|PT|F01.51|ICD10CM|Vascular dementia with behavioral disturbance|Vascular dementia with behavioral disturbance +C2874329|T048|AB|F01.51|ICD10CM|Vascular dementia with behavioral disturbance|Vascular dementia with behavioral disturbance +C2874326|T048|ET|F01.51|ICD10CM|Vascular dementia with combative behavior|Vascular dementia with combative behavior +C2874327|T048|ET|F01.51|ICD10CM|Vascular dementia with violent behavior|Vascular dementia with violent behavior +C0478654|T048|PT|F01.8|ICD10|Other vascular dementia|Other vascular dementia +C0011269|T047|PT|F01.9|ICD10|Vascular dementia, unspecified|Vascular dementia, unspecified +C0349079|T048|HT|F02|ICD10|Dementia in other diseases classified elsewhere|Dementia in other diseases classified elsewhere +C0349079|T048|HT|F02|ICD10CM|Dementia in other diseases classified elsewhere|Dementia in other diseases classified elsewhere +C0349079|T048|AB|F02|ICD10CM|Dementia in other diseases classified elsewhere|Dementia in other diseases classified elsewhere +C4268197|T048|ET|F02|ICD10CM|Major neurocognitive disorder in other diseases classified elsewhere|Major neurocognitive disorder in other diseases classified elsewhere +C1399562|T047|PT|F02.0|ICD10|Dementia in Pick's disease|Dementia in Pick's disease +C0236641|T048|PT|F02.1|ICD10|Dementia in Creutzfeldt-Jakob disease|Dementia in Creutzfeldt-Jakob disease +C0349080|T048|PT|F02.2|ICD10|Dementia in Huntington's disease|Dementia in Huntington's disease +C1828079|T048|PT|F02.3|ICD10|Dementia in Parkinson's disease|Dementia in Parkinson's disease +C0001849|T047|PT|F02.4|ICD10|Dementia in human immunodeficiency virus [HIV] disease|Dementia in human immunodeficiency virus [HIV] disease +C0349079|T048|AB|F02.8|ICD10CM|Dementia in other diseases classified elsewhere|Dementia in other diseases classified elsewhere +C0349079|T048|HT|F02.8|ICD10CM|Dementia in other diseases classified elsewhere|Dementia in other diseases classified elsewhere +C0349082|T048|PT|F02.8|ICD10|Dementia in other specified diseases classified elsewhere|Dementia in other specified diseases classified elsewhere +C2874330|T048|AB|F02.80|ICD10CM|Dementia in oth diseases classd elswhr w/o behavrl disturb|Dementia in oth diseases classd elswhr w/o behavrl disturb +C0349079|T048|ET|F02.80|ICD10CM|Dementia in other diseases classified elsewhere NOS|Dementia in other diseases classified elsewhere NOS +C2874330|T048|PT|F02.80|ICD10CM|Dementia in other diseases classified elsewhere without behavioral disturbance|Dementia in other diseases classified elsewhere without behavioral disturbance +C4268197|T048|ET|F02.80|ICD10CM|Major neurocognitive disorder in other diseases classified elsewhere|Major neurocognitive disorder in other diseases classified elsewhere +C2874335|T048|AB|F02.81|ICD10CM|Dementia in oth diseases classd elswhr w behavioral disturb|Dementia in oth diseases classd elswhr w behavioral disturb +C2874331|T048|ET|F02.81|ICD10CM|Dementia in other diseases classified elsewhere with aggressive behavior|Dementia in other diseases classified elsewhere with aggressive behavior +C2874335|T048|PT|F02.81|ICD10CM|Dementia in other diseases classified elsewhere with behavioral disturbance|Dementia in other diseases classified elsewhere with behavioral disturbance +C2874332|T048|ET|F02.81|ICD10CM|Dementia in other diseases classified elsewhere with combative behavior|Dementia in other diseases classified elsewhere with combative behavior +C2874333|T048|ET|F02.81|ICD10CM|Dementia in other diseases classified elsewhere with violent behavior|Dementia in other diseases classified elsewhere with violent behavior +C4268198|T048|ET|F02.81|ICD10CM|Major neurocognitive disorder in other diseases classified elsewhere with aggressive behavior|Major neurocognitive disorder in other diseases classified elsewhere with aggressive behavior +C4268199|T048|ET|F02.81|ICD10CM|Major neurocognitive disorder in other diseases classified elsewhere with combative behavior|Major neurocognitive disorder in other diseases classified elsewhere with combative behavior +C4268200|T048|ET|F02.81|ICD10CM|Major neurocognitive disorder in other diseases classified elsewhere with violent behavior|Major neurocognitive disorder in other diseases classified elsewhere with violent behavior +C0011265|T048|ET|F03|ICD10CM|Presenile dementia NOS|Presenile dementia NOS +C0011265|T048|ET|F03|ICD10CM|Presenile psychosis NOS|Presenile psychosis NOS +C3714594|T048|ET|F03|ICD10CM|Primary degenerative dementia NOS|Primary degenerative dementia NOS +C0859643|T048|ET|F03|ICD10CM|Senile dementia depressed or paranoid type|Senile dementia depressed or paranoid type +C0011268|T048|ET|F03|ICD10CM|Senile dementia NOS|Senile dementia NOS +C1457889|T048|ET|F03|ICD10CM|Senile psychosis NOS|Senile psychosis NOS +C0497327|T048|PT|F03|ICD10|Unspecified dementia|Unspecified dementia +C0497327|T048|HT|F03|ICD10CM|Unspecified dementia|Unspecified dementia +C0497327|T048|AB|F03|ICD10CM|Unspecified dementia|Unspecified dementia +C0497327|T048|HT|F03.9|ICD10CM|Unspecified dementia|Unspecified dementia +C0497327|T048|AB|F03.9|ICD10CM|Unspecified dementia|Unspecified dementia +C0497327|T048|ET|F03.90|ICD10CM|Dementia NOS|Dementia NOS +C3161078|T048|AB|F03.90|ICD10CM|Unspecified dementia without behavioral disturbance|Unspecified dementia without behavioral disturbance +C3161078|T048|PT|F03.90|ICD10CM|Unspecified dementia without behavioral disturbance|Unspecified dementia without behavioral disturbance +C3263950|T048|ET|F03.91|ICD10CM|Unspecified dementia with aggressive behavior|Unspecified dementia with aggressive behavior +C3161079|T048|AB|F03.91|ICD10CM|Unspecified dementia with behavioral disturbance|Unspecified dementia with behavioral disturbance +C3161079|T048|PT|F03.91|ICD10CM|Unspecified dementia with behavioral disturbance|Unspecified dementia with behavioral disturbance +C3263951|T048|ET|F03.91|ICD10CM|Unspecified dementia with combative behavior|Unspecified dementia with combative behavior +C3263952|T048|ET|F03.91|ICD10CM|Unspecified dementia with violent behavior|Unspecified dementia with violent behavior +C2874336|T048|AB|F04|ICD10CM|Amnestic disorder due to known physiological condition|Amnestic disorder due to known physiological condition +C2874336|T048|PT|F04|ICD10CM|Amnestic disorder due to known physiological condition|Amnestic disorder due to known physiological condition +C0268671|T048|ET|F04|ICD10CM|Korsakov's psychosis or syndrome, nonalcoholic|Korsakov's psychosis or syndrome, nonalcoholic +C0494371|T048|PT|F04|ICD10|Organic amnesic syndrome, not induced by alcohol and other psychoactive substances|Organic amnesic syndrome, not induced by alcohol and other psychoactive substances +C1399605|T048|ET|F05|ICD10CM|Acute or subacute brain syndrome|Acute or subacute brain syndrome +C2874337|T048|ET|F05|ICD10CM|Acute or subacute confusional state (nonalcoholic)|Acute or subacute confusional state (nonalcoholic) +C2874338|T048|ET|F05|ICD10CM|Acute or subacute infective psychosis|Acute or subacute infective psychosis +C2874339|T048|ET|F05|ICD10CM|Acute or subacute organic reaction|Acute or subacute organic reaction +C1405604|T048|ET|F05|ICD10CM|Acute or subacute psycho-organic syndrome|Acute or subacute psycho-organic syndrome +C2874341|T048|AB|F05|ICD10CM|Delirium due to known physiological condition|Delirium due to known physiological condition +C2874341|T048|PT|F05|ICD10CM|Delirium due to known physiological condition|Delirium due to known physiological condition +C2874340|T048|ET|F05|ICD10CM|Delirium of mixed etiology|Delirium of mixed etiology +C0349086|T048|ET|F05|ICD10CM|Delirium superimposed on dementia|Delirium superimposed on dementia +C0494372|T048|HT|F05|ICD10|Delirium, not induced by alcohol and other psychoactive substances|Delirium, not induced by alcohol and other psychoactive substances +C1142436|T048|ET|F05|ICD10CM|Sundowning|Sundowning +C0349085|T048|PT|F05.0|ICD10|Delirium not superimposed on dementia, so described|Delirium not superimposed on dementia, so described +C0349086|T048|PT|F05.1|ICD10|Delirium superimposed on dementia|Delirium superimposed on dementia +C0349087|T048|PT|F05.8|ICD10|Other delirium|Other delirium +C0011206|T048|PT|F05.9|ICD10|Delirium, unspecified|Delirium, unspecified +C4290100|T048|ET|F06|ICD10CM|mental disorders due to endocrine disorder|mental disorders due to endocrine disorder +C4290101|T048|ET|F06|ICD10CM|mental disorders due to exogenous hormone|mental disorders due to exogenous hormone +C4290102|T048|ET|F06|ICD10CM|mental disorders due to exogenous toxic substance|mental disorders due to exogenous toxic substance +C4290103|T048|ET|F06|ICD10CM|mental disorders due to primary cerebral disease|mental disorders due to primary cerebral disease +C4290104|T048|ET|F06|ICD10CM|mental disorders due to somatic illness|mental disorders due to somatic illness +C4290105|T048|ET|F06|ICD10CM|mental disorders due to systemic disease affecting the brain|mental disorders due to systemic disease affecting the brain +C0349089|T048|HT|F06|ICD10|Other mental disorders due to brain damage and dysfunction and to physical disease|Other mental disorders due to brain damage and dysfunction and to physical disease +C2874348|T048|AB|F06|ICD10CM|Other mental disorders due to known physiological condition|Other mental disorders due to known physiological condition +C2874348|T048|HT|F06|ICD10CM|Other mental disorders due to known physiological condition|Other mental disorders due to known physiological condition +C0029226|T048|ET|F06.0|ICD10CM|Organic hallucinatory state (nonalcoholic)|Organic hallucinatory state (nonalcoholic) +C0029226|T048|PT|F06.0|ICD10|Organic hallucinosis|Organic hallucinosis +C2874349|T048|AB|F06.0|ICD10CM|Psychotic disorder w hallucin due to known physiol condition|Psychotic disorder w hallucin due to known physiol condition +C2874349|T048|PT|F06.0|ICD10CM|Psychotic disorder with hallucinations due to known physiological condition|Psychotic disorder with hallucinations due to known physiological condition +C4268201|T048|ET|F06.1|ICD10CM|Catatonia associated with another mental disorder|Catatonia associated with another mental disorder +C0007398|T048|ET|F06.1|ICD10CM|Catatonia NOS|Catatonia NOS +C2874350|T048|AB|F06.1|ICD10CM|Catatonic disorder due to known physiological condition|Catatonic disorder due to known physiological condition +C2874350|T048|PT|F06.1|ICD10CM|Catatonic disorder due to known physiological condition|Catatonic disorder due to known physiological condition +C0338650|T047|PT|F06.1|ICD10|Organic catatonic disorder|Organic catatonic disorder +C0029225|T048|PT|F06.2|ICD10|Organic delusional [schizophrenia-like] disorder|Organic delusional [schizophrenia-like] disorder +C2874351|T048|ET|F06.2|ICD10CM|Paranoid and paranoid-hallucinatory organic states|Paranoid and paranoid-hallucinatory organic states +C2874353|T048|AB|F06.2|ICD10CM|Psychotic disorder w delusions due to known physiol cond|Psychotic disorder w delusions due to known physiol cond +C2874353|T048|PT|F06.2|ICD10CM|Psychotic disorder with delusions due to known physiological condition|Psychotic disorder with delusions due to known physiological condition +C2874352|T048|ET|F06.2|ICD10CM|Schizophrenia-like psychosis in epilepsy|Schizophrenia-like psychosis in epilepsy +C2874355|T048|AB|F06.3|ICD10CM|Mood disorder due to known physiological condition|Mood disorder due to known physiological condition +C2874355|T048|HT|F06.3|ICD10CM|Mood disorder due to known physiological condition|Mood disorder due to known physiological condition +C0029232|T048|PT|F06.3|ICD10|Organic mood [affective] disorders|Organic mood [affective] disorders +C2874355|T048|AB|F06.30|ICD10CM|Mood disorder due to known physiological condition, unsp|Mood disorder due to known physiological condition, unsp +C2874355|T048|PT|F06.30|ICD10CM|Mood disorder due to known physiological condition, unspecified|Mood disorder due to known physiological condition, unspecified +C4509025|T048|ET|F06.31|ICD10CM|Depressive disorder due to known physiological condition, with depressive features|Depressive disorder due to known physiological condition, with depressive features +C2874356|T048|AB|F06.31|ICD10CM|Mood disorder due to known physiol cond w depressv features|Mood disorder due to known physiol cond w depressv features +C2874356|T048|PT|F06.31|ICD10CM|Mood disorder due to known physiological condition with depressive features|Mood disorder due to known physiological condition with depressive features +C4509026|T048|ET|F06.32|ICD10CM|Depressive disorder due to known physiological condition, with major depressive-like episode|Depressive disorder due to known physiological condition, with major depressive-like episode +C2874357|T048|AB|F06.32|ICD10CM|Mood disord d/t physiol cond w major depressive-like epsd|Mood disord d/t physiol cond w major depressive-like epsd +C2874357|T048|PT|F06.32|ICD10CM|Mood disorder due to known physiological condition with major depressive-like episode|Mood disorder due to known physiological condition with major depressive-like episode +C4509027|T048|ET|F06.33|ICD10CM|Bipolar and related disorder due to a known physiological condition, with manic features|Bipolar and related disorder due to a known physiological condition, with manic features +C2874358|T048|AB|F06.33|ICD10CM|Mood disorder due to known physiol cond w manic features|Mood disorder due to known physiol cond w manic features +C2874358|T048|PT|F06.33|ICD10CM|Mood disorder due to known physiological condition with manic features|Mood disorder due to known physiological condition with manic features +C4509029|T048|ET|F06.34|ICD10CM|Bipolar and related disorder due to known physiological condition, with mixed features|Bipolar and related disorder due to known physiological condition, with mixed features +C4509030|T048|ET|F06.34|ICD10CM|Depressive disorder due to known physiological condition, with mixed features|Depressive disorder due to known physiological condition, with mixed features +C2874359|T048|AB|F06.34|ICD10CM|Mood disorder due to known physiol cond w mixed features|Mood disorder due to known physiol cond w mixed features +C2874359|T048|PT|F06.34|ICD10CM|Mood disorder due to known physiological condition with mixed features|Mood disorder due to known physiological condition with mixed features +C2874360|T048|AB|F06.4|ICD10CM|Anxiety disorder due to known physiological condition|Anxiety disorder due to known physiological condition +C2874360|T048|PT|F06.4|ICD10CM|Anxiety disorder due to known physiological condition|Anxiety disorder due to known physiological condition +C0236748|T048|PT|F06.4|ICD10|Organic anxiety disorder|Organic anxiety disorder +C0338654|T048|PT|F06.5|ICD10|Organic dissociative disorder|Organic dissociative disorder +C0338655|T048|PT|F06.6|ICD10|Organic emotionally labile [asthenic] disorder|Organic emotionally labile [asthenic] disorder +C1270972|T048|PT|F06.7|ICD10|Mild cognitive disorder|Mild cognitive disorder +C0338658|T048|ET|F06.8|ICD10CM|Epileptic psychosis NOS|Epileptic psychosis NOS +C4509031|T048|ET|F06.8|ICD10CM|Obsessive-compulsive and related disorder due to a known physiological condition|Obsessive-compulsive and related disorder due to a known physiological condition +C0338654|T048|ET|F06.8|ICD10CM|Organic dissociative disorder|Organic dissociative disorder +C0338655|T048|ET|F06.8|ICD10CM|Organic emotionally labile [asthenic] disorder|Organic emotionally labile [asthenic] disorder +C2874361|T048|AB|F06.8|ICD10CM|Oth mental disorders due to known physiological condition|Oth mental disorders due to known physiological condition +C0349090|T048|PT|F06.8|ICD10|Other specified mental disorders due to brain damage and dysfunction and to physical disease|Other specified mental disorders due to brain damage and dysfunction and to physical disease +C2874361|T048|PT|F06.8|ICD10CM|Other specified mental disorders due to known physiological condition|Other specified mental disorders due to known physiological condition +C0349091|T048|PT|F06.9|ICD10|Unspecified mental disorder due to brain damage and dysfunction and to physical disease|Unspecified mental disorder due to brain damage and dysfunction and to physical disease +C2874363|T048|AB|F07|ICD10CM|Personality & behavrl disorders due to known physiol cond|Personality & behavrl disorders due to known physiol cond +C0349092|T048|HT|F07|ICD10AE|Personality and behavioral disorders due to brain disease, damage and dysfunction|Personality and behavioral disorders due to brain disease, damage and dysfunction +C2874363|T048|HT|F07|ICD10CM|Personality and behavioral disorders due to known physiological condition|Personality and behavioral disorders due to known physiological condition +C0349092|T048|HT|F07|ICD10|Personality and behavioural disorders due to brain disease, damage and dysfunction|Personality and behavioural disorders due to brain disease, damage and dysfunction +C0549117|T047|ET|F07.0|ICD10CM|Frontal lobe syndrome|Frontal lobe syndrome +C0338661|T048|ET|F07.0|ICD10CM|Limbic epilepsy personality syndrome|Limbic epilepsy personality syndrome +C0549116|T047|ET|F07.0|ICD10CM|Lobotomy syndrome|Lobotomy syndrome +C0029233|T048|PT|F07.0|ICD10|Organic personality disorder|Organic personality disorder +C0029233|T048|ET|F07.0|ICD10CM|Organic personality disorder|Organic personality disorder +C0338662|T047|ET|F07.0|ICD10CM|Organic pseudopsychopathic personality|Organic pseudopsychopathic personality +C0338663|T047|ET|F07.0|ICD10CM|Organic pseudoretarded personality|Organic pseudoretarded personality +C2874364|T048|AB|F07.0|ICD10CM|Personality change due to known physiological condition|Personality change due to known physiological condition +C2874364|T048|PT|F07.0|ICD10CM|Personality change due to known physiological condition|Personality change due to known physiological condition +C0152130|T048|ET|F07.0|ICD10CM|Postleucotomy syndrome|Postleucotomy syndrome +C0338664|T047|PT|F07.1|ICD10|Postencephalitic syndrome|Postencephalitic syndrome +C0546983|T047|PT|F07.2|ICD10|Postconcussional syndrome|Postconcussional syndrome +C2874365|T048|AB|F07.8|ICD10CM|Oth personality & behavrl disord due to known physiol cond|Oth personality & behavrl disord due to known physiol cond +C0349093|T048|PT|F07.8|ICD10AE|Other organic personality and behavioral disorders due to brain disease, damage and dysfunction|Other organic personality and behavioral disorders due to brain disease, damage and dysfunction +C0349093|T048|PT|F07.8|ICD10|Other organic personality and behavioural disorders due to brain disease, damage and dysfunction|Other organic personality and behavioural disorders due to brain disease, damage and dysfunction +C2874365|T048|HT|F07.8|ICD10CM|Other personality and behavioral disorders due to known physiological condition|Other personality and behavioral disorders due to known physiological condition +C0546983|T047|ET|F07.81|ICD10CM|Post-traumatic brain syndrome, nonpsychotic|Post-traumatic brain syndrome, nonpsychotic +C0546983|T047|PT|F07.81|ICD10CM|Postconcussional syndrome|Postconcussional syndrome +C0546983|T047|AB|F07.81|ICD10CM|Postconcussional syndrome|Postconcussional syndrome +C2874367|T047|ET|F07.81|ICD10CM|Postcontusional syndrome (encephalopathy)|Postcontusional syndrome (encephalopathy) +C2874365|T048|AB|F07.89|ICD10CM|Oth personality & behavrl disord due to known physiol cond|Oth personality & behavrl disord due to known physiol cond +C2874365|T048|PT|F07.89|ICD10CM|Other personality and behavioral disorders due to known physiological condition|Other personality and behavioral disorders due to known physiological condition +C0338664|T047|ET|F07.89|ICD10CM|Postencephalitic syndrome|Postencephalitic syndrome +C0338651|T048|ET|F07.89|ICD10CM|Right hemispheric organic affective disorder|Right hemispheric organic affective disorder +C0679479|T047|ET|F07.9|ICD10CM|Organic psychosyndrome|Organic psychosyndrome +C2874368|T048|AB|F07.9|ICD10CM|Unsp personality & behavrl disord due to known physiol cond|Unsp personality & behavrl disord due to known physiol cond +C0349094|T048|PT|F07.9|ICD10AE|Unspecified organic personality and behavioral disorder due to brain disease, damage and dysfunction|Unspecified organic personality and behavioral disorder due to brain disease, damage and dysfunction +C2874368|T048|PT|F07.9|ICD10CM|Unspecified personality and behavioral disorder due to known physiological condition|Unspecified personality and behavioral disorder due to known physiological condition +C2976868|T048|ET|F09|ICD10CM|Mental disorder NOS due to known physiological condition|Mental disorder NOS due to known physiological condition +C0029221|T047|ET|F09|ICD10CM|Organic brain syndrome NOS|Organic brain syndrome NOS +C0029227|T048|ET|F09|ICD10CM|Organic mental disorder NOS|Organic mental disorder NOS +C0520473|T048|ET|F09|ICD10CM|Organic psychosis NOS|Organic psychosis NOS +C1405648|T048|ET|F09|ICD10CM|Symptomatic psychosis NOS|Symptomatic psychosis NOS +C2874369|T048|AB|F09|ICD10CM|Unsp mental disorder due to known physiological condition|Unsp mental disorder due to known physiological condition +C2874369|T048|PT|F09|ICD10CM|Unspecified mental disorder due to known physiological condition|Unspecified mental disorder due to known physiological condition +C0349095|T048|PT|F09|ICD10|Unspecified organic or symptomatic mental disorder|Unspecified organic or symptomatic mental disorder +C0236664|T047|AB|F10|ICD10CM|Alcohol related disorders|Alcohol related disorders +C0236664|T047|HT|F10|ICD10CM|Alcohol related disorders|Alcohol related disorders +C0349096|T048|HT|F10|ICD10AE|Mental and behavioral disorders due to use of alcohol|Mental and behavioral disorders due to use of alcohol +C0349096|T048|HT|F10|ICD10|Mental and behavioural disorders due to use of alcohol|Mental and behavioural disorders due to use of alcohol +C0556008|T048|HT|F10-F19|ICD10CM|Mental and behavioral disorders due to psychoactive substance use (F10-F19)|Mental and behavioral disorders due to psychoactive substance use (F10-F19) +C0556008|T048|HT|F10-F19.9|ICD10AE|Mental and behavioral disorders due to psychoactive substance use|Mental and behavioral disorders due to psychoactive substance use +C0556008|T048|HT|F10-F19.9|ICD10|Mental and behavioural disorders due to psychoactive substance use|Mental and behavioural disorders due to psychoactive substance use +C0394996|T048|PT|F10.0|ICD10AE|Mental and behavioral disorders due to use of alcohol, acute intoxication|Mental and behavioral disorders due to use of alcohol, acute intoxication +C0394996|T048|PT|F10.0|ICD10|Mental and behavioural disorders due to use of alcohol, acute intoxication|Mental and behavioural disorders due to use of alcohol, acute intoxication +C0085762|T048|HT|F10.1|ICD10CM|Alcohol abuse|Alcohol abuse +C0085762|T048|AB|F10.1|ICD10CM|Alcohol abuse|Alcohol abuse +C0349097|T048|PT|F10.1|ICD10AE|Mental and behavioral disorders due to use of alcohol, harmful use|Mental and behavioral disorders due to use of alcohol, harmful use +C0349097|T048|PT|F10.1|ICD10|Mental and behavioural disorders due to use of alcohol, harmful use|Mental and behavioural disorders due to use of alcohol, harmful use +C2874370|T048|AB|F10.10|ICD10CM|Alcohol abuse, uncomplicated|Alcohol abuse, uncomplicated +C2874370|T048|PT|F10.10|ICD10CM|Alcohol abuse, uncomplicated|Alcohol abuse, uncomplicated +C4236927|T048|ET|F10.10|ICD10CM|Alcohol use disorder, mild|Alcohol use disorder, mild +C0154516|T048|AB|F10.11|ICD10CM|Alcohol abuse, in remission|Alcohol abuse, in remission +C0154516|T048|PT|F10.11|ICD10CM|Alcohol abuse, in remission|Alcohol abuse, in remission +C4509032|T048|ET|F10.11|ICD10CM|Alcohol use disorder, mild, in early remission|Alcohol use disorder, mild, in early remission +C4509033|T048|ET|F10.11|ICD10CM|Alcohol use disorder, mild, in sustained remission|Alcohol use disorder, mild, in sustained remission +C2874371|T048|HT|F10.12|ICD10CM|Alcohol abuse with intoxication|Alcohol abuse with intoxication +C2874371|T048|AB|F10.12|ICD10CM|Alcohol abuse with intoxication|Alcohol abuse with intoxication +C2874372|T048|AB|F10.120|ICD10CM|Alcohol abuse with intoxication, uncomplicated|Alcohol abuse with intoxication, uncomplicated +C2874372|T048|PT|F10.120|ICD10CM|Alcohol abuse with intoxication, uncomplicated|Alcohol abuse with intoxication, uncomplicated +C2874373|T048|PT|F10.121|ICD10CM|Alcohol abuse with intoxication delirium|Alcohol abuse with intoxication delirium +C2874373|T048|AB|F10.121|ICD10CM|Alcohol abuse with intoxication delirium|Alcohol abuse with intoxication delirium +C2874371|T048|AB|F10.129|ICD10CM|Alcohol abuse with intoxication, unspecified|Alcohol abuse with intoxication, unspecified +C2874371|T048|PT|F10.129|ICD10CM|Alcohol abuse with intoxication, unspecified|Alcohol abuse with intoxication, unspecified +C2874377|T048|PT|F10.14|ICD10CM|Alcohol abuse with alcohol-induced mood disorder|Alcohol abuse with alcohol-induced mood disorder +C2874377|T048|AB|F10.14|ICD10CM|Alcohol abuse with alcohol-induced mood disorder|Alcohol abuse with alcohol-induced mood disorder +C4268202|T048|ET|F10.14|ICD10CM|Alcohol use disorder, mild, with alcohol-induced bipolar or related disorder|Alcohol use disorder, mild, with alcohol-induced bipolar or related disorder +C4268203|T048|ET|F10.14|ICD10CM|Alcohol use disorder, mild, with alcohol-induced depressive disorder|Alcohol use disorder, mild, with alcohol-induced depressive disorder +C2874377|T048|HT|F10.15|ICD10CM|Alcohol abuse with alcohol-induced psychotic disorder|Alcohol abuse with alcohol-induced psychotic disorder +C2874377|T048|AB|F10.15|ICD10CM|Alcohol abuse with alcohol-induced psychotic disorder|Alcohol abuse with alcohol-induced psychotic disorder +C2874375|T048|AB|F10.150|ICD10CM|Alcohol abuse w alcoh-induce psychotic disorder w delusions|Alcohol abuse w alcoh-induce psychotic disorder w delusions +C2874375|T048|PT|F10.150|ICD10CM|Alcohol abuse with alcohol-induced psychotic disorder with delusions|Alcohol abuse with alcohol-induced psychotic disorder with delusions +C2874376|T048|AB|F10.151|ICD10CM|Alcohol abuse w alcoh-induce psychotic disorder w hallucin|Alcohol abuse w alcoh-induce psychotic disorder w hallucin +C2874376|T048|PT|F10.151|ICD10CM|Alcohol abuse with alcohol-induced psychotic disorder with hallucinations|Alcohol abuse with alcohol-induced psychotic disorder with hallucinations +C2874377|T048|AB|F10.159|ICD10CM|Alcohol abuse with alcohol-induced psychotic disorder, unsp|Alcohol abuse with alcohol-induced psychotic disorder, unsp +C2874377|T048|PT|F10.159|ICD10CM|Alcohol abuse with alcohol-induced psychotic disorder, unspecified|Alcohol abuse with alcohol-induced psychotic disorder, unspecified +C2874381|T048|AB|F10.18|ICD10CM|Alcohol abuse with other alcohol-induced disorders|Alcohol abuse with other alcohol-induced disorders +C2874381|T048|HT|F10.18|ICD10CM|Alcohol abuse with other alcohol-induced disorders|Alcohol abuse with other alcohol-induced disorders +C2874378|T048|PT|F10.180|ICD10CM|Alcohol abuse with alcohol-induced anxiety disorder|Alcohol abuse with alcohol-induced anxiety disorder +C2874378|T048|AB|F10.180|ICD10CM|Alcohol abuse with alcohol-induced anxiety disorder|Alcohol abuse with alcohol-induced anxiety disorder +C2874379|T048|PT|F10.181|ICD10CM|Alcohol abuse with alcohol-induced sexual dysfunction|Alcohol abuse with alcohol-induced sexual dysfunction +C2874379|T048|AB|F10.181|ICD10CM|Alcohol abuse with alcohol-induced sexual dysfunction|Alcohol abuse with alcohol-induced sexual dysfunction +C2874380|T048|PT|F10.182|ICD10CM|Alcohol abuse with alcohol-induced sleep disorder|Alcohol abuse with alcohol-induced sleep disorder +C2874380|T048|AB|F10.182|ICD10CM|Alcohol abuse with alcohol-induced sleep disorder|Alcohol abuse with alcohol-induced sleep disorder +C2874381|T048|AB|F10.188|ICD10CM|Alcohol abuse with other alcohol-induced disorder|Alcohol abuse with other alcohol-induced disorder +C2874381|T048|PT|F10.188|ICD10CM|Alcohol abuse with other alcohol-induced disorder|Alcohol abuse with other alcohol-induced disorder +C2874382|T048|AB|F10.19|ICD10CM|Alcohol abuse with unspecified alcohol-induced disorder|Alcohol abuse with unspecified alcohol-induced disorder +C2874382|T048|PT|F10.19|ICD10CM|Alcohol abuse with unspecified alcohol-induced disorder|Alcohol abuse with unspecified alcohol-induced disorder +C0001973|T048|HT|F10.2|ICD10CM|Alcohol dependence|Alcohol dependence +C0001973|T048|AB|F10.2|ICD10CM|Alcohol dependence|Alcohol dependence +C0001973|T048|PT|F10.2|ICD10AE|Mental and behavioral disorders due to use of alcohol, dependence syndrome|Mental and behavioral disorders due to use of alcohol, dependence syndrome +C0001973|T048|PT|F10.2|ICD10|Mental and behavioural disorders due to use of alcohol, dependence syndrome|Mental and behavioural disorders due to use of alcohol, dependence syndrome +C2874383|T048|AB|F10.20|ICD10CM|Alcohol dependence, uncomplicated|Alcohol dependence, uncomplicated +C2874383|T048|PT|F10.20|ICD10CM|Alcohol dependence, uncomplicated|Alcohol dependence, uncomplicated +C4236928|T048|ET|F10.20|ICD10CM|Alcohol use disorder, moderate|Alcohol use disorder, moderate +C4236929|T048|ET|F10.20|ICD10CM|Alcohol use disorder, severe|Alcohol use disorder, severe +C2197979|T048|AB|F10.21|ICD10CM|Alcohol dependence, in remission|Alcohol dependence, in remission +C2197979|T048|PT|F10.21|ICD10CM|Alcohol dependence, in remission|Alcohol dependence, in remission +C4509034|T048|ET|F10.21|ICD10CM|Alcohol use disorder, moderate, in early remission|Alcohol use disorder, moderate, in early remission +C4509035|T048|ET|F10.21|ICD10CM|Alcohol use disorder, moderate, in sustained remission|Alcohol use disorder, moderate, in sustained remission +C4509036|T048|ET|F10.21|ICD10CM|Alcohol use disorder, severe, in early remission|Alcohol use disorder, severe, in early remission +C4509037|T048|ET|F10.21|ICD10CM|Alcohol use disorder, severe, in sustained remission|Alcohol use disorder, severe, in sustained remission +C0812429|T048|ET|F10.22|ICD10CM|Acute drunkenness (in alcoholism)|Acute drunkenness (in alcoholism) +C2874387|T048|HT|F10.22|ICD10CM|Alcohol dependence with intoxication|Alcohol dependence with intoxication +C2874387|T048|AB|F10.22|ICD10CM|Alcohol dependence with intoxication|Alcohol dependence with intoxication +C2874385|T048|AB|F10.220|ICD10CM|Alcohol dependence with intoxication, uncomplicated|Alcohol dependence with intoxication, uncomplicated +C2874385|T048|PT|F10.220|ICD10CM|Alcohol dependence with intoxication, uncomplicated|Alcohol dependence with intoxication, uncomplicated +C2874386|T048|PT|F10.221|ICD10CM|Alcohol dependence with intoxication delirium|Alcohol dependence with intoxication delirium +C2874386|T048|AB|F10.221|ICD10CM|Alcohol dependence with intoxication delirium|Alcohol dependence with intoxication delirium +C2874387|T048|AB|F10.229|ICD10CM|Alcohol dependence with intoxication, unspecified|Alcohol dependence with intoxication, unspecified +C2874387|T048|PT|F10.229|ICD10CM|Alcohol dependence with intoxication, unspecified|Alcohol dependence with intoxication, unspecified +C2874392|T048|HT|F10.23|ICD10CM|Alcohol dependence with withdrawal|Alcohol dependence with withdrawal +C2874392|T048|AB|F10.23|ICD10CM|Alcohol dependence with withdrawal|Alcohol dependence with withdrawal +C2874389|T048|AB|F10.230|ICD10CM|Alcohol dependence with withdrawal, uncomplicated|Alcohol dependence with withdrawal, uncomplicated +C2874389|T048|PT|F10.230|ICD10CM|Alcohol dependence with withdrawal, uncomplicated|Alcohol dependence with withdrawal, uncomplicated +C2874390|T048|PT|F10.231|ICD10CM|Alcohol dependence with withdrawal delirium|Alcohol dependence with withdrawal delirium +C2874390|T048|AB|F10.231|ICD10CM|Alcohol dependence with withdrawal delirium|Alcohol dependence with withdrawal delirium +C2874391|T048|AB|F10.232|ICD10CM|Alcohol dependence w withdrawal with perceptual disturbance|Alcohol dependence w withdrawal with perceptual disturbance +C2874391|T048|PT|F10.232|ICD10CM|Alcohol dependence with withdrawal with perceptual disturbance|Alcohol dependence with withdrawal with perceptual disturbance +C2874392|T048|AB|F10.239|ICD10CM|Alcohol dependence with withdrawal, unspecified|Alcohol dependence with withdrawal, unspecified +C2874392|T048|PT|F10.239|ICD10CM|Alcohol dependence with withdrawal, unspecified|Alcohol dependence with withdrawal, unspecified +C2874393|T048|PT|F10.24|ICD10CM|Alcohol dependence with alcohol-induced mood disorder|Alcohol dependence with alcohol-induced mood disorder +C2874393|T048|AB|F10.24|ICD10CM|Alcohol dependence with alcohol-induced mood disorder|Alcohol dependence with alcohol-induced mood disorder +C4268204|T048|ET|F10.24|ICD10CM|Alcohol use disorder, moderate, with alcohol-induced bipolar or related disorder|Alcohol use disorder, moderate, with alcohol-induced bipolar or related disorder +C4268205|T048|ET|F10.24|ICD10CM|Alcohol use disorder, moderate, with alcohol-induced depressive disorder|Alcohol use disorder, moderate, with alcohol-induced depressive disorder +C4268206|T048|ET|F10.24|ICD10CM|Alcohol use disorder, severe, with alcohol-induced bipolar or related disorder|Alcohol use disorder, severe, with alcohol-induced bipolar or related disorder +C4268207|T048|ET|F10.24|ICD10CM|Alcohol use disorder, severe, with alcohol-induced depressive disorder|Alcohol use disorder, severe, with alcohol-induced depressive disorder +C2874397|T048|HT|F10.25|ICD10CM|Alcohol dependence with alcohol-induced psychotic disorder|Alcohol dependence with alcohol-induced psychotic disorder +C2874397|T048|AB|F10.25|ICD10CM|Alcohol dependence with alcohol-induced psychotic disorder|Alcohol dependence with alcohol-induced psychotic disorder +C2874395|T048|AB|F10.250|ICD10CM|Alcohol depend w alcoh-induce psychotic disorder w delusions|Alcohol depend w alcoh-induce psychotic disorder w delusions +C2874395|T048|PT|F10.250|ICD10CM|Alcohol dependence with alcohol-induced psychotic disorder with delusions|Alcohol dependence with alcohol-induced psychotic disorder with delusions +C2874396|T048|AB|F10.251|ICD10CM|Alcohol depend w alcoh-induce psychotic disorder w hallucin|Alcohol depend w alcoh-induce psychotic disorder w hallucin +C2874396|T048|PT|F10.251|ICD10CM|Alcohol dependence with alcohol-induced psychotic disorder with hallucinations|Alcohol dependence with alcohol-induced psychotic disorder with hallucinations +C2874397|T048|AB|F10.259|ICD10CM|Alcohol dependence w alcoh-induce psychotic disorder, unsp|Alcohol dependence w alcoh-induce psychotic disorder, unsp +C2874397|T048|PT|F10.259|ICD10CM|Alcohol dependence with alcohol-induced psychotic disorder, unspecified|Alcohol dependence with alcohol-induced psychotic disorder, unspecified +C2874398|T048|AB|F10.26|ICD10CM|Alcohol depend w alcoh-induce persisting amnestic disorder|Alcohol depend w alcoh-induce persisting amnestic disorder +C2874398|T048|PT|F10.26|ICD10CM|Alcohol dependence with alcohol-induced persisting amnestic disorder|Alcohol dependence with alcohol-induced persisting amnestic disorder +C2874399|T048|AB|F10.27|ICD10CM|Alcohol dependence with alcohol-induced persisting dementia|Alcohol dependence with alcohol-induced persisting dementia +C2874399|T048|PT|F10.27|ICD10CM|Alcohol dependence with alcohol-induced persisting dementia|Alcohol dependence with alcohol-induced persisting dementia +C2874403|T048|AB|F10.28|ICD10CM|Alcohol dependence with other alcohol-induced disorders|Alcohol dependence with other alcohol-induced disorders +C2874403|T048|HT|F10.28|ICD10CM|Alcohol dependence with other alcohol-induced disorders|Alcohol dependence with other alcohol-induced disorders +C2874400|T048|PT|F10.280|ICD10CM|Alcohol dependence with alcohol-induced anxiety disorder|Alcohol dependence with alcohol-induced anxiety disorder +C2874400|T048|AB|F10.280|ICD10CM|Alcohol dependence with alcohol-induced anxiety disorder|Alcohol dependence with alcohol-induced anxiety disorder +C2874401|T048|PT|F10.281|ICD10CM|Alcohol dependence with alcohol-induced sexual dysfunction|Alcohol dependence with alcohol-induced sexual dysfunction +C2874401|T048|AB|F10.281|ICD10CM|Alcohol dependence with alcohol-induced sexual dysfunction|Alcohol dependence with alcohol-induced sexual dysfunction +C2874402|T048|PT|F10.282|ICD10CM|Alcohol dependence with alcohol-induced sleep disorder|Alcohol dependence with alcohol-induced sleep disorder +C2874402|T048|AB|F10.282|ICD10CM|Alcohol dependence with alcohol-induced sleep disorder|Alcohol dependence with alcohol-induced sleep disorder +C2874403|T048|AB|F10.288|ICD10CM|Alcohol dependence with other alcohol-induced disorder|Alcohol dependence with other alcohol-induced disorder +C2874403|T048|PT|F10.288|ICD10CM|Alcohol dependence with other alcohol-induced disorder|Alcohol dependence with other alcohol-induced disorder +C4268212|T048|ET|F10.288|ICD10CM|Alcohol use disorder, moderate, with alcohol-induced mild neurocognitive disorder|Alcohol use disorder, moderate, with alcohol-induced mild neurocognitive disorder +C4268213|T048|ET|F10.288|ICD10CM|Alcohol use disorder, severe, with alcohol-induced mild neurocognitive disorder|Alcohol use disorder, severe, with alcohol-induced mild neurocognitive disorder +C2874404|T048|AB|F10.29|ICD10CM|Alcohol dependence with unspecified alcohol-induced disorder|Alcohol dependence with unspecified alcohol-induced disorder +C2874404|T048|PT|F10.29|ICD10CM|Alcohol dependence with unspecified alcohol-induced disorder|Alcohol dependence with unspecified alcohol-induced disorder +C0494375|T048|PT|F10.3|ICD10AE|Mental and behavioral disorders due to use of alcohol, withdrawal state|Mental and behavioral disorders due to use of alcohol, withdrawal state +C0494375|T048|PT|F10.3|ICD10|Mental and behavioural disorders due to use of alcohol, withdrawal state|Mental and behavioural disorders due to use of alcohol, withdrawal state +C0001957|T047|PT|F10.4|ICD10AE|Mental and behavioral disorders due to use of alcohol, withdrawal state with delirium|Mental and behavioral disorders due to use of alcohol, withdrawal state with delirium +C0001957|T047|PT|F10.4|ICD10|Mental and behavioural disorders due to use of alcohol, withdrawal state with delirium|Mental and behavioural disorders due to use of alcohol, withdrawal state with delirium +C0033936|T048|PT|F10.5|ICD10AE|Mental and behavioral disorders due to use of alcohol, psychotic disorder|Mental and behavioral disorders due to use of alcohol, psychotic disorder +C0033936|T048|PT|F10.5|ICD10|Mental and behavioural disorders due to use of alcohol, psychotic disorder|Mental and behavioural disorders due to use of alcohol, psychotic disorder +C0001940|T048|PT|F10.6|ICD10AE|Mental and behavioral disorders due to use of alcohol, amnesic syndrome|Mental and behavioral disorders due to use of alcohol, amnesic syndrome +C0001940|T048|PT|F10.6|ICD10|Mental and behavioural disorders due to use of alcohol, amnesic syndrome|Mental and behavioural disorders due to use of alcohol, amnesic syndrome +C0349099|T048|PT|F10.7|ICD10AE|Mental and behavioral disorders due to use of alcohol, residual and late-onset psychotic disorder|Mental and behavioral disorders due to use of alcohol, residual and late-onset psychotic disorder +C0349099|T048|PT|F10.7|ICD10|Mental and behavioural disorders due to use of alcohol, residual and late-onset psychotic disorder|Mental and behavioural disorders due to use of alcohol, residual and late-onset psychotic disorder +C0349100|T048|PT|F10.8|ICD10AE|Mental and behavioral disorders due to use of alcohol, other mental and behavioral disorders|Mental and behavioral disorders due to use of alcohol, other mental and behavioral disorders +C0349100|T048|PT|F10.8|ICD10|Mental and behavioural disorders due to use of alcohol, other mental and behavioural disorders|Mental and behavioural disorders due to use of alcohol, other mental and behavioural disorders +C2874405|T048|AB|F10.9|ICD10CM|Alcohol use, unspecified|Alcohol use, unspecified +C2874405|T048|HT|F10.9|ICD10CM|Alcohol use, unspecified|Alcohol use, unspecified +C0349101|T048|PT|F10.9|ICD10AE|Mental and behavioral disorders due to use of alcohol, unspecified mental and behavioral disorder|Mental and behavioral disorders due to use of alcohol, unspecified mental and behavioral disorder +C0349101|T048|PT|F10.9|ICD10|Mental and behavioural disorders due to use of alcohol, unspecified mental and behavioural disorder|Mental and behavioural disorders due to use of alcohol, unspecified mental and behavioural disorder +C2874408|T048|AB|F10.92|ICD10CM|Alcohol use, unspecified with intoxication|Alcohol use, unspecified with intoxication +C2874408|T048|HT|F10.92|ICD10CM|Alcohol use, unspecified with intoxication|Alcohol use, unspecified with intoxication +C2874406|T048|AB|F10.920|ICD10CM|Alcohol use, unspecified with intoxication, uncomplicated|Alcohol use, unspecified with intoxication, uncomplicated +C2874406|T048|PT|F10.920|ICD10CM|Alcohol use, unspecified with intoxication, uncomplicated|Alcohol use, unspecified with intoxication, uncomplicated +C2874407|T048|AB|F10.921|ICD10CM|Alcohol use, unspecified with intoxication delirium|Alcohol use, unspecified with intoxication delirium +C2874407|T048|PT|F10.921|ICD10CM|Alcohol use, unspecified with intoxication delirium|Alcohol use, unspecified with intoxication delirium +C2874408|T048|AB|F10.929|ICD10CM|Alcohol use, unspecified with intoxication, unspecified|Alcohol use, unspecified with intoxication, unspecified +C2874408|T048|PT|F10.929|ICD10CM|Alcohol use, unspecified with intoxication, unspecified|Alcohol use, unspecified with intoxication, unspecified +C4268214|T048|ET|F10.94|ICD10CM|Alcohol induced bipolar or related disorder, without use disorder|Alcohol induced bipolar or related disorder, without use disorder +C4236940|T048|ET|F10.94|ICD10CM|Alcohol induced depressive disorder, without use disorder|Alcohol induced depressive disorder, without use disorder +C2874409|T048|AB|F10.94|ICD10CM|Alcohol use, unspecified with alcohol-induced mood disorder|Alcohol use, unspecified with alcohol-induced mood disorder +C2874409|T048|PT|F10.94|ICD10CM|Alcohol use, unspecified with alcohol-induced mood disorder|Alcohol use, unspecified with alcohol-induced mood disorder +C2874410|T048|AB|F10.95|ICD10CM|Alcohol use, unsp with alcohol-induced psychotic disorder|Alcohol use, unsp with alcohol-induced psychotic disorder +C2874410|T048|HT|F10.95|ICD10CM|Alcohol use, unspecified with alcohol-induced psychotic disorder|Alcohol use, unspecified with alcohol-induced psychotic disorder +C2874411|T048|AB|F10.950|ICD10CM|Alcohol use, unsp w alcoh-induce psych disorder w delusions|Alcohol use, unsp w alcoh-induce psych disorder w delusions +C2874411|T048|PT|F10.950|ICD10CM|Alcohol use, unspecified with alcohol-induced psychotic disorder with delusions|Alcohol use, unspecified with alcohol-induced psychotic disorder with delusions +C2874412|T048|AB|F10.951|ICD10CM|Alcohol use, unsp w alcoh-induce psych disorder w hallucin|Alcohol use, unsp w alcoh-induce psych disorder w hallucin +C2874412|T048|PT|F10.951|ICD10CM|Alcohol use, unspecified with alcohol-induced psychotic disorder with hallucinations|Alcohol use, unspecified with alcohol-induced psychotic disorder with hallucinations +C2874413|T048|AB|F10.959|ICD10CM|Alcohol use, unsp w alcohol-induced psychotic disorder, unsp|Alcohol use, unsp w alcohol-induced psychotic disorder, unsp +C2874413|T048|PT|F10.959|ICD10CM|Alcohol use, unspecified with alcohol-induced psychotic disorder, unspecified|Alcohol use, unspecified with alcohol-induced psychotic disorder, unspecified +C4236949|T048|ET|F10.959|ICD10CM|Alcohol-induced psychotic disorder without use disorder|Alcohol-induced psychotic disorder without use disorder +C2874414|T048|AB|F10.96|ICD10CM|Alcohol use, unsp w alcoh-induce persist amnestic disorder|Alcohol use, unsp w alcoh-induce persist amnestic disorder +C2874414|T048|PT|F10.96|ICD10CM|Alcohol use, unspecified with alcohol-induced persisting amnestic disorder|Alcohol use, unspecified with alcohol-induced persisting amnestic disorder +C4236942|T048|ET|F10.96|ICD10CM|Alcohol-induced major neurocognitive disorder, amnestic-confabulatory type, without use disorder|Alcohol-induced major neurocognitive disorder, amnestic-confabulatory type, without use disorder +C2874415|T048|AB|F10.97|ICD10CM|Alcohol use, unsp with alcohol-induced persisting dementia|Alcohol use, unsp with alcohol-induced persisting dementia +C2874415|T048|PT|F10.97|ICD10CM|Alcohol use, unspecified with alcohol-induced persisting dementia|Alcohol use, unspecified with alcohol-induced persisting dementia +C4236944|T048|ET|F10.97|ICD10CM|Alcohol-induced major neurocognitive disorder, nonamnestic-confabulatory type, without use disorder|Alcohol-induced major neurocognitive disorder, nonamnestic-confabulatory type, without use disorder +C2874419|T048|AB|F10.98|ICD10CM|Alcohol use, unsp with other alcohol-induced disorders|Alcohol use, unsp with other alcohol-induced disorders +C2874419|T048|HT|F10.98|ICD10CM|Alcohol use, unspecified with other alcohol-induced disorders|Alcohol use, unspecified with other alcohol-induced disorders +C4236934|T048|ET|F10.980|ICD10CM|Alcohol induced anxiety disorder, without use disorder|Alcohol induced anxiety disorder, without use disorder +C2874416|T048|AB|F10.980|ICD10CM|Alcohol use, unsp with alcohol-induced anxiety disorder|Alcohol use, unsp with alcohol-induced anxiety disorder +C2874416|T048|PT|F10.980|ICD10CM|Alcohol use, unspecified with alcohol-induced anxiety disorder|Alcohol use, unspecified with alcohol-induced anxiety disorder +C4236952|T048|ET|F10.981|ICD10CM|Alcohol induced sexual dysfunction, without use disorder|Alcohol induced sexual dysfunction, without use disorder +C2874417|T048|AB|F10.981|ICD10CM|Alcohol use, unsp with alcohol-induced sexual dysfunction|Alcohol use, unsp with alcohol-induced sexual dysfunction +C2874417|T048|PT|F10.981|ICD10CM|Alcohol use, unspecified with alcohol-induced sexual dysfunction|Alcohol use, unspecified with alcohol-induced sexual dysfunction +C4236955|T048|ET|F10.982|ICD10CM|Alcohol induced sleep disorder, without use disorder|Alcohol induced sleep disorder, without use disorder +C2874418|T048|AB|F10.982|ICD10CM|Alcohol use, unspecified with alcohol-induced sleep disorder|Alcohol use, unspecified with alcohol-induced sleep disorder +C2874418|T048|PT|F10.982|ICD10CM|Alcohol use, unspecified with alcohol-induced sleep disorder|Alcohol use, unspecified with alcohol-induced sleep disorder +C4236946|T048|ET|F10.988|ICD10CM|Alcohol induced mild neurocognitive disorder, without use disorder|Alcohol induced mild neurocognitive disorder, without use disorder +C2874419|T048|AB|F10.988|ICD10CM|Alcohol use, unspecified with other alcohol-induced disorder|Alcohol use, unspecified with other alcohol-induced disorder +C2874419|T048|PT|F10.988|ICD10CM|Alcohol use, unspecified with other alcohol-induced disorder|Alcohol use, unspecified with other alcohol-induced disorder +C2874420|T048|AB|F10.99|ICD10CM|Alcohol use, unsp with unspecified alcohol-induced disorder|Alcohol use, unsp with unspecified alcohol-induced disorder +C2874420|T048|PT|F10.99|ICD10CM|Alcohol use, unspecified with unspecified alcohol-induced disorder|Alcohol use, unspecified with unspecified alcohol-induced disorder +C0349111|T048|HT|F11|ICD10AE|Mental and behavioral disorders due to use of opioids|Mental and behavioral disorders due to use of opioids +C0349111|T048|HT|F11|ICD10|Mental and behavioural disorders due to use of opioids|Mental and behavioural disorders due to use of opioids +C0027412|T048|AB|F11|ICD10CM|Opioid related disorders|Opioid related disorders +C0027412|T048|HT|F11|ICD10CM|Opioid related disorders|Opioid related disorders +C0349103|T048|PT|F11.0|ICD10AE|Mental and behavioral disorders due to use of opioids, acute intoxication|Mental and behavioral disorders due to use of opioids, acute intoxication +C0349103|T048|PT|F11.0|ICD10|Mental and behavioural disorders due to use of opioids, acute intoxication|Mental and behavioural disorders due to use of opioids, acute intoxication +C0349104|T048|PT|F11.1|ICD10AE|Mental and behavioral disorders due to use of opioids, harmful use|Mental and behavioral disorders due to use of opioids, harmful use +C0349104|T048|PT|F11.1|ICD10|Mental and behavioural disorders due to use of opioids, harmful use|Mental and behavioural disorders due to use of opioids, harmful use +C0029095|T048|HT|F11.1|ICD10CM|Opioid abuse|Opioid abuse +C0029095|T048|AB|F11.1|ICD10CM|Opioid abuse|Opioid abuse +C2874421|T048|AB|F11.10|ICD10CM|Opioid abuse, uncomplicated|Opioid abuse, uncomplicated +C2874421|T048|PT|F11.10|ICD10CM|Opioid abuse, uncomplicated|Opioid abuse, uncomplicated +C4237237|T048|ET|F11.10|ICD10CM|Opioid use disorder, mild|Opioid use disorder, mild +C0154532|T048|AB|F11.11|ICD10CM|Opioid abuse, in remission|Opioid abuse, in remission +C0154532|T048|PT|F11.11|ICD10CM|Opioid abuse, in remission|Opioid abuse, in remission +C4509038|T048|ET|F11.11|ICD10CM|Opioid use disorder, mild, in early remission|Opioid use disorder, mild, in early remission +C4509039|T048|ET|F11.11|ICD10CM|Opioid use disorder, mild, in sustained remission|Opioid use disorder, mild, in sustained remission +C2874426|T048|HT|F11.12|ICD10CM|Opioid abuse with intoxication|Opioid abuse with intoxication +C2874426|T048|AB|F11.12|ICD10CM|Opioid abuse with intoxication|Opioid abuse with intoxication +C2874423|T048|AB|F11.120|ICD10CM|Opioid abuse with intoxication, uncomplicated|Opioid abuse with intoxication, uncomplicated +C2874423|T048|PT|F11.120|ICD10CM|Opioid abuse with intoxication, uncomplicated|Opioid abuse with intoxication, uncomplicated +C2874424|T048|PT|F11.121|ICD10CM|Opioid abuse with intoxication delirium|Opioid abuse with intoxication delirium +C2874424|T048|AB|F11.121|ICD10CM|Opioid abuse with intoxication delirium|Opioid abuse with intoxication delirium +C2874425|T048|PT|F11.122|ICD10CM|Opioid abuse with intoxication with perceptual disturbance|Opioid abuse with intoxication with perceptual disturbance +C2874425|T048|AB|F11.122|ICD10CM|Opioid abuse with intoxication with perceptual disturbance|Opioid abuse with intoxication with perceptual disturbance +C2874426|T048|AB|F11.129|ICD10CM|Opioid abuse with intoxication, unspecified|Opioid abuse with intoxication, unspecified +C2874426|T048|PT|F11.129|ICD10CM|Opioid abuse with intoxication, unspecified|Opioid abuse with intoxication, unspecified +C2874427|T048|PT|F11.14|ICD10CM|Opioid abuse with opioid-induced mood disorder|Opioid abuse with opioid-induced mood disorder +C2874427|T048|AB|F11.14|ICD10CM|Opioid abuse with opioid-induced mood disorder|Opioid abuse with opioid-induced mood disorder +C4268215|T048|ET|F11.14|ICD10CM|Opioid use disorder, mild, with opioid-induced depressive disorder|Opioid use disorder, mild, with opioid-induced depressive disorder +C2874431|T048|HT|F11.15|ICD10CM|Opioid abuse with opioid-induced psychotic disorder|Opioid abuse with opioid-induced psychotic disorder +C2874431|T048|AB|F11.15|ICD10CM|Opioid abuse with opioid-induced psychotic disorder|Opioid abuse with opioid-induced psychotic disorder +C2874429|T048|AB|F11.150|ICD10CM|Opioid abuse w opioid-induced psychotic disorder w delusions|Opioid abuse w opioid-induced psychotic disorder w delusions +C2874429|T048|PT|F11.150|ICD10CM|Opioid abuse with opioid-induced psychotic disorder with delusions|Opioid abuse with opioid-induced psychotic disorder with delusions +C2874430|T048|AB|F11.151|ICD10CM|Opioid abuse w opioid-induced psychotic disorder w hallucin|Opioid abuse w opioid-induced psychotic disorder w hallucin +C2874430|T048|PT|F11.151|ICD10CM|Opioid abuse with opioid-induced psychotic disorder with hallucinations|Opioid abuse with opioid-induced psychotic disorder with hallucinations +C2874431|T048|AB|F11.159|ICD10CM|Opioid abuse with opioid-induced psychotic disorder, unsp|Opioid abuse with opioid-induced psychotic disorder, unsp +C2874431|T048|PT|F11.159|ICD10CM|Opioid abuse with opioid-induced psychotic disorder, unspecified|Opioid abuse with opioid-induced psychotic disorder, unspecified +C2874432|T048|HT|F11.18|ICD10CM|Opioid abuse with other opioid-induced disorder|Opioid abuse with other opioid-induced disorder +C2874432|T048|AB|F11.18|ICD10CM|Opioid abuse with other opioid-induced disorder|Opioid abuse with other opioid-induced disorder +C2874433|T048|PT|F11.181|ICD10CM|Opioid abuse with opioid-induced sexual dysfunction|Opioid abuse with opioid-induced sexual dysfunction +C2874433|T048|AB|F11.181|ICD10CM|Opioid abuse with opioid-induced sexual dysfunction|Opioid abuse with opioid-induced sexual dysfunction +C2874434|T048|PT|F11.182|ICD10CM|Opioid abuse with opioid-induced sleep disorder|Opioid abuse with opioid-induced sleep disorder +C2874434|T048|AB|F11.182|ICD10CM|Opioid abuse with opioid-induced sleep disorder|Opioid abuse with opioid-induced sleep disorder +C2874432|T048|AB|F11.188|ICD10CM|Opioid abuse with other opioid-induced disorder|Opioid abuse with other opioid-induced disorder +C2874432|T048|PT|F11.188|ICD10CM|Opioid abuse with other opioid-induced disorder|Opioid abuse with other opioid-induced disorder +C2874435|T048|AB|F11.19|ICD10CM|Opioid abuse with unspecified opioid-induced disorder|Opioid abuse with unspecified opioid-induced disorder +C2874435|T048|PT|F11.19|ICD10CM|Opioid abuse with unspecified opioid-induced disorder|Opioid abuse with unspecified opioid-induced disorder +C0494376|T048|PT|F11.2|ICD10AE|Mental and behavioral disorders due to use of opioids, dependence syndrome|Mental and behavioral disorders due to use of opioids, dependence syndrome +C0494376|T048|PT|F11.2|ICD10|Mental and behavioural disorders due to use of opioids, dependence syndrome|Mental and behavioural disorders due to use of opioids, dependence syndrome +C0524662|T048|HT|F11.2|ICD10CM|Opioid dependence|Opioid dependence +C0524662|T048|AB|F11.2|ICD10CM|Opioid dependence|Opioid dependence +C2874436|T048|AB|F11.20|ICD10CM|Opioid dependence, uncomplicated|Opioid dependence, uncomplicated +C2874436|T048|PT|F11.20|ICD10CM|Opioid dependence, uncomplicated|Opioid dependence, uncomplicated +C4237238|T048|ET|F11.20|ICD10CM|Opioid use disorder, moderate|Opioid use disorder, moderate +C4237239|T048|ET|F11.20|ICD10CM|Opioid use disorder, severe|Opioid use disorder, severe +C0338781|T047|AB|F11.21|ICD10CM|Opioid dependence, in remission|Opioid dependence, in remission +C0338781|T047|PT|F11.21|ICD10CM|Opioid dependence, in remission|Opioid dependence, in remission +C4509040|T048|ET|F11.21|ICD10CM|Opioid use disorder, moderate, in early remission|Opioid use disorder, moderate, in early remission +C4509041|T048|ET|F11.21|ICD10CM|Opioid use disorder, moderate, in sustained remission|Opioid use disorder, moderate, in sustained remission +C4509042|T048|ET|F11.21|ICD10CM|Opioid use disorder, severe, in early remission|Opioid use disorder, severe, in early remission +C4509043|T048|ET|F11.21|ICD10CM|Opioid use disorder, severe, in sustained remission|Opioid use disorder, severe, in sustained remission +C2874441|T048|HT|F11.22|ICD10CM|Opioid dependence with intoxication|Opioid dependence with intoxication +C2874441|T048|AB|F11.22|ICD10CM|Opioid dependence with intoxication|Opioid dependence with intoxication +C2874438|T048|AB|F11.220|ICD10CM|Opioid dependence with intoxication, uncomplicated|Opioid dependence with intoxication, uncomplicated +C2874438|T048|PT|F11.220|ICD10CM|Opioid dependence with intoxication, uncomplicated|Opioid dependence with intoxication, uncomplicated +C2874439|T048|PT|F11.221|ICD10CM|Opioid dependence with intoxication delirium|Opioid dependence with intoxication delirium +C2874439|T048|AB|F11.221|ICD10CM|Opioid dependence with intoxication delirium|Opioid dependence with intoxication delirium +C2874440|T048|AB|F11.222|ICD10CM|Opioid dependence w intoxication with perceptual disturbance|Opioid dependence w intoxication with perceptual disturbance +C2874440|T048|PT|F11.222|ICD10CM|Opioid dependence with intoxication with perceptual disturbance|Opioid dependence with intoxication with perceptual disturbance +C2874441|T048|AB|F11.229|ICD10CM|Opioid dependence with intoxication, unspecified|Opioid dependence with intoxication, unspecified +C2874441|T048|PT|F11.229|ICD10CM|Opioid dependence with intoxication, unspecified|Opioid dependence with intoxication, unspecified +C2874442|T048|PT|F11.23|ICD10CM|Opioid dependence with withdrawal|Opioid dependence with withdrawal +C2874442|T048|AB|F11.23|ICD10CM|Opioid dependence with withdrawal|Opioid dependence with withdrawal +C2874443|T048|PT|F11.24|ICD10CM|Opioid dependence with opioid-induced mood disorder|Opioid dependence with opioid-induced mood disorder +C2874443|T048|AB|F11.24|ICD10CM|Opioid dependence with opioid-induced mood disorder|Opioid dependence with opioid-induced mood disorder +C4268216|T048|ET|F11.24|ICD10CM|Opioid use disorder, moderate, with opioid induced depressive disorder|Opioid use disorder, moderate, with opioid induced depressive disorder +C2874447|T048|HT|F11.25|ICD10CM|Opioid dependence with opioid-induced psychotic disorder|Opioid dependence with opioid-induced psychotic disorder +C2874447|T048|AB|F11.25|ICD10CM|Opioid dependence with opioid-induced psychotic disorder|Opioid dependence with opioid-induced psychotic disorder +C2874445|T048|AB|F11.250|ICD10CM|Opioid depend w opioid-induc psychotic disorder w delusions|Opioid depend w opioid-induc psychotic disorder w delusions +C2874445|T048|PT|F11.250|ICD10CM|Opioid dependence with opioid-induced psychotic disorder with delusions|Opioid dependence with opioid-induced psychotic disorder with delusions +C2874446|T048|AB|F11.251|ICD10CM|Opioid depend w opioid-induc psychotic disorder w hallucin|Opioid depend w opioid-induc psychotic disorder w hallucin +C2874446|T048|PT|F11.251|ICD10CM|Opioid dependence with opioid-induced psychotic disorder with hallucinations|Opioid dependence with opioid-induced psychotic disorder with hallucinations +C2874447|T048|AB|F11.259|ICD10CM|Opioid dependence w opioid-induced psychotic disorder, unsp|Opioid dependence w opioid-induced psychotic disorder, unsp +C2874447|T048|PT|F11.259|ICD10CM|Opioid dependence with opioid-induced psychotic disorder, unspecified|Opioid dependence with opioid-induced psychotic disorder, unspecified +C2874448|T048|HT|F11.28|ICD10CM|Opioid dependence with other opioid-induced disorder|Opioid dependence with other opioid-induced disorder +C2874448|T048|AB|F11.28|ICD10CM|Opioid dependence with other opioid-induced disorder|Opioid dependence with other opioid-induced disorder +C2874449|T048|PT|F11.281|ICD10CM|Opioid dependence with opioid-induced sexual dysfunction|Opioid dependence with opioid-induced sexual dysfunction +C2874449|T048|AB|F11.281|ICD10CM|Opioid dependence with opioid-induced sexual dysfunction|Opioid dependence with opioid-induced sexual dysfunction +C2874450|T048|PT|F11.282|ICD10CM|Opioid dependence with opioid-induced sleep disorder|Opioid dependence with opioid-induced sleep disorder +C2874450|T048|AB|F11.282|ICD10CM|Opioid dependence with opioid-induced sleep disorder|Opioid dependence with opioid-induced sleep disorder +C2874448|T048|AB|F11.288|ICD10CM|Opioid dependence with other opioid-induced disorder|Opioid dependence with other opioid-induced disorder +C2874448|T048|PT|F11.288|ICD10CM|Opioid dependence with other opioid-induced disorder|Opioid dependence with other opioid-induced disorder +C2874451|T048|AB|F11.29|ICD10CM|Opioid dependence with unspecified opioid-induced disorder|Opioid dependence with unspecified opioid-induced disorder +C2874451|T048|PT|F11.29|ICD10CM|Opioid dependence with unspecified opioid-induced disorder|Opioid dependence with unspecified opioid-induced disorder +C0029104|T048|PT|F11.3|ICD10AE|Mental and behavioral disorders due to use of opioids, withdrawal state|Mental and behavioral disorders due to use of opioids, withdrawal state +C0029104|T048|PT|F11.3|ICD10|Mental and behavioural disorders due to use of opioids, withdrawal state|Mental and behavioural disorders due to use of opioids, withdrawal state +C0349106|T048|PT|F11.4|ICD10AE|Mental and behavioral disorders due to use of opioids, withdrawal state with delirium|Mental and behavioral disorders due to use of opioids, withdrawal state with delirium +C0349106|T048|PT|F11.4|ICD10|Mental and behavioural disorders due to use of opioids, withdrawal state with delirium|Mental and behavioural disorders due to use of opioids, withdrawal state with delirium +C0349107|T048|PT|F11.5|ICD10AE|Mental and behavioral disorders due to use of opioids, psychotic disorder|Mental and behavioral disorders due to use of opioids, psychotic disorder +C0349107|T048|PT|F11.5|ICD10|Mental and behavioural disorders due to use of opioids, psychotic disorder|Mental and behavioural disorders due to use of opioids, psychotic disorder +C0349108|T048|PT|F11.6|ICD10AE|Mental and behavioral disorders due to use of opioids, amnesic syndrome|Mental and behavioral disorders due to use of opioids, amnesic syndrome +C0349108|T048|PT|F11.6|ICD10|Mental and behavioural disorders due to use of opioids, amnesic syndrome|Mental and behavioural disorders due to use of opioids, amnesic syndrome +C0349109|T048|PT|F11.7|ICD10AE|Mental and behavioral disorders due to use of opioids, residual and late-onset psychotic disorder|Mental and behavioral disorders due to use of opioids, residual and late-onset psychotic disorder +C0349109|T048|PT|F11.7|ICD10|Mental and behavioural disorders due to use of opioids, residual and late-onset psychotic disorder|Mental and behavioural disorders due to use of opioids, residual and late-onset psychotic disorder +C0349110|T048|PT|F11.8|ICD10AE|Mental and behavioral disorders due to use of opioids, other mental and behavioral disorders|Mental and behavioral disorders due to use of opioids, other mental and behavioral disorders +C0349110|T048|PT|F11.8|ICD10|Mental and behavioural disorders due to use of opioids, other mental and behavioural disorders|Mental and behavioural disorders due to use of opioids, other mental and behavioural disorders +C0349111|T048|PT|F11.9|ICD10AE|Mental and behavioral disorders due to use of opioids, unspecified mental and behavioral disorder|Mental and behavioral disorders due to use of opioids, unspecified mental and behavioral disorder +C0349111|T048|PT|F11.9|ICD10|Mental and behavioural disorders due to use of opioids, unspecified mental and behavioural disorder|Mental and behavioural disorders due to use of opioids, unspecified mental and behavioural disorder +C2874452|T048|AB|F11.9|ICD10CM|Opioid use, unspecified|Opioid use, unspecified +C2874452|T048|HT|F11.9|ICD10CM|Opioid use, unspecified|Opioid use, unspecified +C2874453|T048|AB|F11.90|ICD10CM|Opioid use, unspecified, uncomplicated|Opioid use, unspecified, uncomplicated +C2874453|T048|PT|F11.90|ICD10CM|Opioid use, unspecified, uncomplicated|Opioid use, unspecified, uncomplicated +C2874454|T048|AB|F11.92|ICD10CM|Opioid use, unspecified with intoxication|Opioid use, unspecified with intoxication +C2874454|T048|HT|F11.92|ICD10CM|Opioid use, unspecified with intoxication|Opioid use, unspecified with intoxication +C2874455|T048|AB|F11.920|ICD10CM|Opioid use, unspecified with intoxication, uncomplicated|Opioid use, unspecified with intoxication, uncomplicated +C2874455|T048|PT|F11.920|ICD10CM|Opioid use, unspecified with intoxication, uncomplicated|Opioid use, unspecified with intoxication, uncomplicated +C2874456|T048|AB|F11.921|ICD10CM|Opioid use, unspecified with intoxication delirium|Opioid use, unspecified with intoxication delirium +C2874456|T048|PT|F11.921|ICD10CM|Opioid use, unspecified with intoxication delirium|Opioid use, unspecified with intoxication delirium +C0236691|T048|ET|F11.921|ICD10CM|Opioid-induced delirium|Opioid-induced delirium +C2874457|T048|AB|F11.922|ICD10CM|Opioid use, unsp w intoxication with perceptual disturbance|Opioid use, unsp w intoxication with perceptual disturbance +C2874457|T048|PT|F11.922|ICD10CM|Opioid use, unspecified with intoxication with perceptual disturbance|Opioid use, unspecified with intoxication with perceptual disturbance +C2874458|T048|AB|F11.929|ICD10CM|Opioid use, unspecified with intoxication, unspecified|Opioid use, unspecified with intoxication, unspecified +C2874458|T048|PT|F11.929|ICD10CM|Opioid use, unspecified with intoxication, unspecified|Opioid use, unspecified with intoxication, unspecified +C2874459|T048|AB|F11.93|ICD10CM|Opioid use, unspecified with withdrawal|Opioid use, unspecified with withdrawal +C2874459|T048|PT|F11.93|ICD10CM|Opioid use, unspecified with withdrawal|Opioid use, unspecified with withdrawal +C4237245|T048|ET|F11.94|ICD10CM|Opioid induced depressive disorder, without use disorder|Opioid induced depressive disorder, without use disorder +C2874460|T048|AB|F11.94|ICD10CM|Opioid use, unspecified with opioid-induced mood disorder|Opioid use, unspecified with opioid-induced mood disorder +C2874460|T048|PT|F11.94|ICD10CM|Opioid use, unspecified with opioid-induced mood disorder|Opioid use, unspecified with opioid-induced mood disorder +C2874461|T048|AB|F11.95|ICD10CM|Opioid use, unsp with opioid-induced psychotic disorder|Opioid use, unsp with opioid-induced psychotic disorder +C2874461|T048|HT|F11.95|ICD10CM|Opioid use, unspecified with opioid-induced psychotic disorder|Opioid use, unspecified with opioid-induced psychotic disorder +C2874462|T048|AB|F11.950|ICD10CM|Opioid use, unsp w opioid-induc psych disorder w delusions|Opioid use, unsp w opioid-induc psych disorder w delusions +C2874462|T048|PT|F11.950|ICD10CM|Opioid use, unspecified with opioid-induced psychotic disorder with delusions|Opioid use, unspecified with opioid-induced psychotic disorder with delusions +C2874463|T048|AB|F11.951|ICD10CM|Opioid use, unsp w opioid-induc psych disorder w hallucin|Opioid use, unsp w opioid-induc psych disorder w hallucin +C2874463|T048|PT|F11.951|ICD10CM|Opioid use, unspecified with opioid-induced psychotic disorder with hallucinations|Opioid use, unspecified with opioid-induced psychotic disorder with hallucinations +C2874464|T048|AB|F11.959|ICD10CM|Opioid use, unsp w opioid-induced psychotic disorder, unsp|Opioid use, unsp w opioid-induced psychotic disorder, unsp +C2874464|T048|PT|F11.959|ICD10CM|Opioid use, unspecified with opioid-induced psychotic disorder, unspecified|Opioid use, unspecified with opioid-induced psychotic disorder, unspecified +C2874465|T048|AB|F11.98|ICD10CM|Opioid use, unspecified with oth opioid-induced disorder|Opioid use, unspecified with oth opioid-induced disorder +C2874465|T048|HT|F11.98|ICD10CM|Opioid use, unspecified with other specified opioid-induced disorder|Opioid use, unspecified with other specified opioid-induced disorder +C4237248|T048|ET|F11.981|ICD10CM|Opioid induced sexual dysfunction, without use disorder|Opioid induced sexual dysfunction, without use disorder +C2874466|T048|AB|F11.981|ICD10CM|Opioid use, unsp with opioid-induced sexual dysfunction|Opioid use, unsp with opioid-induced sexual dysfunction +C2874466|T048|PT|F11.981|ICD10CM|Opioid use, unspecified with opioid-induced sexual dysfunction|Opioid use, unspecified with opioid-induced sexual dysfunction +C4237251|T048|ET|F11.982|ICD10CM|Opioid induced sleep disorder, without use disorder|Opioid induced sleep disorder, without use disorder +C2874467|T048|AB|F11.982|ICD10CM|Opioid use, unspecified with opioid-induced sleep disorder|Opioid use, unspecified with opioid-induced sleep disorder +C2874467|T048|PT|F11.982|ICD10CM|Opioid use, unspecified with opioid-induced sleep disorder|Opioid use, unspecified with opioid-induced sleep disorder +C4237242|T048|ET|F11.988|ICD10CM|Opioid induced anxiety disorder, without use disorder|Opioid induced anxiety disorder, without use disorder +C2874468|T048|AB|F11.988|ICD10CM|Opioid use, unspecified with other opioid-induced disorder|Opioid use, unspecified with other opioid-induced disorder +C2874468|T048|PT|F11.988|ICD10CM|Opioid use, unspecified with other opioid-induced disorder|Opioid use, unspecified with other opioid-induced disorder +C2874469|T048|AB|F11.99|ICD10CM|Opioid use, unsp with unspecified opioid-induced disorder|Opioid use, unsp with unspecified opioid-induced disorder +C2874469|T048|PT|F11.99|ICD10CM|Opioid use, unspecified with unspecified opioid-induced disorder|Opioid use, unspecified with unspecified opioid-induced disorder +C0236735|T047|AB|F12|ICD10CM|Cannabis related disorders|Cannabis related disorders +C0236735|T047|HT|F12|ICD10CM|Cannabis related disorders|Cannabis related disorders +C0024809|T048|ET|F12|ICD10CM|marijuana|marijuana +C0349121|T048|HT|F12|ICD10AE|Mental and behavioral disorders due to use of cannabinoids|Mental and behavioral disorders due to use of cannabinoids +C0349121|T048|HT|F12|ICD10|Mental and behavioural disorders due to use of cannabinoids|Mental and behavioural disorders due to use of cannabinoids +C0349113|T048|PT|F12.0|ICD10AE|Mental and behavioral disorders due to use of cannabinoids, acute intoxication|Mental and behavioral disorders due to use of cannabinoids, acute intoxication +C0349113|T048|PT|F12.0|ICD10|Mental and behavioural disorders due to use of cannabinoids, acute intoxication|Mental and behavioural disorders due to use of cannabinoids, acute intoxication +C0006868|T048|HT|F12.1|ICD10CM|Cannabis abuse|Cannabis abuse +C0006868|T048|AB|F12.1|ICD10CM|Cannabis abuse|Cannabis abuse +C0349114|T048|PT|F12.1|ICD10AE|Mental and behavioral disorders due to use of cannabinoids, harmful use|Mental and behavioral disorders due to use of cannabinoids, harmful use +C0349114|T048|PT|F12.1|ICD10|Mental and behavioural disorders due to use of cannabinoids, harmful use|Mental and behavioural disorders due to use of cannabinoids, harmful use +C2874470|T048|AB|F12.10|ICD10CM|Cannabis abuse, uncomplicated|Cannabis abuse, uncomplicated +C2874470|T048|PT|F12.10|ICD10CM|Cannabis abuse, uncomplicated|Cannabis abuse, uncomplicated +C4237026|T048|ET|F12.10|ICD10CM|Cannabis use disorder, mild|Cannabis use disorder, mild +C0154522|T048|AB|F12.11|ICD10CM|Cannabis abuse, in remission|Cannabis abuse, in remission +C0154522|T048|PT|F12.11|ICD10CM|Cannabis abuse, in remission|Cannabis abuse, in remission +C4509044|T048|ET|F12.11|ICD10CM|Cannabis use disorder, mild, in early remission|Cannabis use disorder, mild, in early remission +C4509045|T048|ET|F12.11|ICD10CM|Cannabis use disorder, mild, in sustained remission|Cannabis use disorder, mild, in sustained remission +C2874475|T048|HT|F12.12|ICD10CM|Cannabis abuse with intoxication|Cannabis abuse with intoxication +C2874475|T048|AB|F12.12|ICD10CM|Cannabis abuse with intoxication|Cannabis abuse with intoxication +C2874472|T048|AB|F12.120|ICD10CM|Cannabis abuse with intoxication, uncomplicated|Cannabis abuse with intoxication, uncomplicated +C2874472|T048|PT|F12.120|ICD10CM|Cannabis abuse with intoxication, uncomplicated|Cannabis abuse with intoxication, uncomplicated +C2874473|T048|PT|F12.121|ICD10CM|Cannabis abuse with intoxication delirium|Cannabis abuse with intoxication delirium +C2874473|T048|AB|F12.121|ICD10CM|Cannabis abuse with intoxication delirium|Cannabis abuse with intoxication delirium +C2874474|T048|PT|F12.122|ICD10CM|Cannabis abuse with intoxication with perceptual disturbance|Cannabis abuse with intoxication with perceptual disturbance +C2874474|T048|AB|F12.122|ICD10CM|Cannabis abuse with intoxication with perceptual disturbance|Cannabis abuse with intoxication with perceptual disturbance +C2874475|T048|AB|F12.129|ICD10CM|Cannabis abuse with intoxication, unspecified|Cannabis abuse with intoxication, unspecified +C2874475|T048|PT|F12.129|ICD10CM|Cannabis abuse with intoxication, unspecified|Cannabis abuse with intoxication, unspecified +C2874479|T048|HT|F12.15|ICD10CM|Cannabis abuse with psychotic disorder|Cannabis abuse with psychotic disorder +C2874479|T048|AB|F12.15|ICD10CM|Cannabis abuse with psychotic disorder|Cannabis abuse with psychotic disorder +C2874477|T048|PT|F12.150|ICD10CM|Cannabis abuse with psychotic disorder with delusions|Cannabis abuse with psychotic disorder with delusions +C2874477|T048|AB|F12.150|ICD10CM|Cannabis abuse with psychotic disorder with delusions|Cannabis abuse with psychotic disorder with delusions +C2874478|T048|PT|F12.151|ICD10CM|Cannabis abuse with psychotic disorder with hallucinations|Cannabis abuse with psychotic disorder with hallucinations +C2874478|T048|AB|F12.151|ICD10CM|Cannabis abuse with psychotic disorder with hallucinations|Cannabis abuse with psychotic disorder with hallucinations +C2874479|T048|AB|F12.159|ICD10CM|Cannabis abuse with psychotic disorder, unspecified|Cannabis abuse with psychotic disorder, unspecified +C2874479|T048|PT|F12.159|ICD10CM|Cannabis abuse with psychotic disorder, unspecified|Cannabis abuse with psychotic disorder, unspecified +C2874480|T048|HT|F12.18|ICD10CM|Cannabis abuse with other cannabis-induced disorder|Cannabis abuse with other cannabis-induced disorder +C2874480|T048|AB|F12.18|ICD10CM|Cannabis abuse with other cannabis-induced disorder|Cannabis abuse with other cannabis-induced disorder +C2874481|T048|PT|F12.180|ICD10CM|Cannabis abuse with cannabis-induced anxiety disorder|Cannabis abuse with cannabis-induced anxiety disorder +C2874481|T048|AB|F12.180|ICD10CM|Cannabis abuse with cannabis-induced anxiety disorder|Cannabis abuse with cannabis-induced anxiety disorder +C2874480|T048|AB|F12.188|ICD10CM|Cannabis abuse with other cannabis-induced disorder|Cannabis abuse with other cannabis-induced disorder +C2874480|T048|PT|F12.188|ICD10CM|Cannabis abuse with other cannabis-induced disorder|Cannabis abuse with other cannabis-induced disorder +C4268217|T048|ET|F12.188|ICD10CM|Cannabis use disorder, mild, with cannabis-induced sleep disorder|Cannabis use disorder, mild, with cannabis-induced sleep disorder +C2874482|T048|AB|F12.19|ICD10CM|Cannabis abuse with unspecified cannabis-induced disorder|Cannabis abuse with unspecified cannabis-induced disorder +C2874482|T048|PT|F12.19|ICD10CM|Cannabis abuse with unspecified cannabis-induced disorder|Cannabis abuse with unspecified cannabis-induced disorder +C0006870|T048|HT|F12.2|ICD10CM|Cannabis dependence|Cannabis dependence +C0006870|T048|AB|F12.2|ICD10CM|Cannabis dependence|Cannabis dependence +C0494377|T048|PT|F12.2|ICD10AE|Mental and behavioral disorders due to use of cannabinoids, dependence syndrome|Mental and behavioral disorders due to use of cannabinoids, dependence syndrome +C0494377|T048|PT|F12.2|ICD10|Mental and behavioural disorders due to use of cannabinoids, dependence syndrome|Mental and behavioural disorders due to use of cannabinoids, dependence syndrome +C2874483|T048|AB|F12.20|ICD10CM|Cannabis dependence, uncomplicated|Cannabis dependence, uncomplicated +C2874483|T048|PT|F12.20|ICD10CM|Cannabis dependence, uncomplicated|Cannabis dependence, uncomplicated +C4237027|T048|ET|F12.20|ICD10CM|Cannabis use disorder, moderate|Cannabis use disorder, moderate +C4237028|T048|ET|F12.20|ICD10CM|Cannabis use disorder, severe|Cannabis use disorder, severe +C0154490|T047|PT|F12.21|ICD10CM|Cannabis dependence, in remission|Cannabis dependence, in remission +C0154490|T047|AB|F12.21|ICD10CM|Cannabis dependence, in remission|Cannabis dependence, in remission +C4509046|T048|ET|F12.21|ICD10CM|Cannabis use disorder, moderate, in early remission|Cannabis use disorder, moderate, in early remission +C4509047|T048|ET|F12.21|ICD10CM|Cannabis use disorder, moderate, in sustained remission|Cannabis use disorder, moderate, in sustained remission +C4509048|T048|ET|F12.21|ICD10CM|Cannabis use disorder, severe, in early remission|Cannabis use disorder, severe, in early remission +C4509049|T048|ET|F12.21|ICD10CM|Cannabis use disorder, severe, in sustained remission|Cannabis use disorder, severe, in sustained remission +C2874488|T048|HT|F12.22|ICD10CM|Cannabis dependence with intoxication|Cannabis dependence with intoxication +C2874488|T048|AB|F12.22|ICD10CM|Cannabis dependence with intoxication|Cannabis dependence with intoxication +C2874485|T048|AB|F12.220|ICD10CM|Cannabis dependence with intoxication, uncomplicated|Cannabis dependence with intoxication, uncomplicated +C2874485|T048|PT|F12.220|ICD10CM|Cannabis dependence with intoxication, uncomplicated|Cannabis dependence with intoxication, uncomplicated +C2874486|T048|PT|F12.221|ICD10CM|Cannabis dependence with intoxication delirium|Cannabis dependence with intoxication delirium +C2874486|T048|AB|F12.221|ICD10CM|Cannabis dependence with intoxication delirium|Cannabis dependence with intoxication delirium +C2874487|T048|AB|F12.222|ICD10CM|Cannabis dependence w intoxication w perceptual disturbance|Cannabis dependence w intoxication w perceptual disturbance +C2874487|T048|PT|F12.222|ICD10CM|Cannabis dependence with intoxication with perceptual disturbance|Cannabis dependence with intoxication with perceptual disturbance +C2874488|T048|AB|F12.229|ICD10CM|Cannabis dependence with intoxication, unspecified|Cannabis dependence with intoxication, unspecified +C2874488|T048|PT|F12.229|ICD10CM|Cannabis dependence with intoxication, unspecified|Cannabis dependence with intoxication, unspecified +C4702818|T048|AB|F12.23|ICD10CM|Cannabis dependence with withdrawal|Cannabis dependence with withdrawal +C4702818|T048|PT|F12.23|ICD10CM|Cannabis dependence with withdrawal|Cannabis dependence with withdrawal +C2874492|T048|HT|F12.25|ICD10CM|Cannabis dependence with psychotic disorder|Cannabis dependence with psychotic disorder +C2874492|T048|AB|F12.25|ICD10CM|Cannabis dependence with psychotic disorder|Cannabis dependence with psychotic disorder +C2874490|T048|PT|F12.250|ICD10CM|Cannabis dependence with psychotic disorder with delusions|Cannabis dependence with psychotic disorder with delusions +C2874490|T048|AB|F12.250|ICD10CM|Cannabis dependence with psychotic disorder with delusions|Cannabis dependence with psychotic disorder with delusions +C2874491|T048|AB|F12.251|ICD10CM|Cannabis dependence w psychotic disorder with hallucinations|Cannabis dependence w psychotic disorder with hallucinations +C2874491|T048|PT|F12.251|ICD10CM|Cannabis dependence with psychotic disorder with hallucinations|Cannabis dependence with psychotic disorder with hallucinations +C2874492|T048|AB|F12.259|ICD10CM|Cannabis dependence with psychotic disorder, unspecified|Cannabis dependence with psychotic disorder, unspecified +C2874492|T048|PT|F12.259|ICD10CM|Cannabis dependence with psychotic disorder, unspecified|Cannabis dependence with psychotic disorder, unspecified +C2874493|T048|HT|F12.28|ICD10CM|Cannabis dependence with other cannabis-induced disorder|Cannabis dependence with other cannabis-induced disorder +C2874493|T048|AB|F12.28|ICD10CM|Cannabis dependence with other cannabis-induced disorder|Cannabis dependence with other cannabis-induced disorder +C2874494|T048|PT|F12.280|ICD10CM|Cannabis dependence with cannabis-induced anxiety disorder|Cannabis dependence with cannabis-induced anxiety disorder +C2874494|T048|AB|F12.280|ICD10CM|Cannabis dependence with cannabis-induced anxiety disorder|Cannabis dependence with cannabis-induced anxiety disorder +C2874493|T048|AB|F12.288|ICD10CM|Cannabis dependence with other cannabis-induced disorder|Cannabis dependence with other cannabis-induced disorder +C2874493|T048|PT|F12.288|ICD10CM|Cannabis dependence with other cannabis-induced disorder|Cannabis dependence with other cannabis-induced disorder +C4268218|T048|ET|F12.288|ICD10CM|Cannabis use disorder, moderate, with cannabis-induced sleep disorder|Cannabis use disorder, moderate, with cannabis-induced sleep disorder +C4268219|T048|ET|F12.288|ICD10CM|Cannabis use disorder, severe, with cannabis-induced sleep disorder|Cannabis use disorder, severe, with cannabis-induced sleep disorder +C2874495|T048|AB|F12.29|ICD10CM|Cannabis dependence with unsp cannabis-induced disorder|Cannabis dependence with unsp cannabis-induced disorder +C2874495|T048|PT|F12.29|ICD10CM|Cannabis dependence with unspecified cannabis-induced disorder|Cannabis dependence with unspecified cannabis-induced disorder +C0349115|T048|PT|F12.3|ICD10AE|Mental and behavioral disorders due to use of cannabinoids, withdrawal state|Mental and behavioral disorders due to use of cannabinoids, withdrawal state +C0349115|T048|PT|F12.3|ICD10|Mental and behavioural disorders due to use of cannabinoids, withdrawal state|Mental and behavioural disorders due to use of cannabinoids, withdrawal state +C0349116|T048|PT|F12.4|ICD10AE|Mental and behavioral disorders due to use of cannabinoids, withdrawal state with delirium|Mental and behavioral disorders due to use of cannabinoids, withdrawal state with delirium +C0349116|T048|PT|F12.4|ICD10|Mental and behavioural disorders due to use of cannabinoids, withdrawal state with delirium|Mental and behavioural disorders due to use of cannabinoids, withdrawal state with delirium +C0349117|T048|PT|F12.5|ICD10AE|Mental and behavioral disorders due to use of cannabinoids, psychotic disorder|Mental and behavioral disorders due to use of cannabinoids, psychotic disorder +C0349117|T048|PT|F12.5|ICD10|Mental and behavioural disorders due to use of cannabinoids, psychotic disorder|Mental and behavioural disorders due to use of cannabinoids, psychotic disorder +C0494378|T048|PT|F12.6|ICD10AE|Mental and behavioral disorders due to use of cannabionoids, amnesic syndrome|Mental and behavioral disorders due to use of cannabionoids, amnesic syndrome +C0494378|T048|PT|F12.6|ICD10|Mental and behavioural disorders due to use of cannabionoids, amnesic syndrome|Mental and behavioural disorders due to use of cannabionoids, amnesic syndrome +C0349120|T048|PT|F12.8|ICD10AE|Mental and behavioral disorders due to use of cannabinoids, other mental and behavioral disorders|Mental and behavioral disorders due to use of cannabinoids, other mental and behavioral disorders +C0349120|T048|PT|F12.8|ICD10|Mental and behavioural disorders due to use of cannabinoids, other mental and behavioural disorders|Mental and behavioural disorders due to use of cannabinoids, other mental and behavioural disorders +C2874496|T048|AB|F12.9|ICD10CM|Cannabis use, unspecified|Cannabis use, unspecified +C2874496|T048|HT|F12.9|ICD10CM|Cannabis use, unspecified|Cannabis use, unspecified +C2874497|T048|AB|F12.90|ICD10CM|Cannabis use, unspecified, uncomplicated|Cannabis use, unspecified, uncomplicated +C2874497|T048|PT|F12.90|ICD10CM|Cannabis use, unspecified, uncomplicated|Cannabis use, unspecified, uncomplicated +C2874498|T048|AB|F12.92|ICD10CM|Cannabis use, unspecified with intoxication|Cannabis use, unspecified with intoxication +C2874498|T048|HT|F12.92|ICD10CM|Cannabis use, unspecified with intoxication|Cannabis use, unspecified with intoxication +C2874499|T048|AB|F12.920|ICD10CM|Cannabis use, unspecified with intoxication, uncomplicated|Cannabis use, unspecified with intoxication, uncomplicated +C2874499|T048|PT|F12.920|ICD10CM|Cannabis use, unspecified with intoxication, uncomplicated|Cannabis use, unspecified with intoxication, uncomplicated +C2874500|T048|AB|F12.921|ICD10CM|Cannabis use, unspecified with intoxication delirium|Cannabis use, unspecified with intoxication delirium +C2874500|T048|PT|F12.921|ICD10CM|Cannabis use, unspecified with intoxication delirium|Cannabis use, unspecified with intoxication delirium +C2874501|T048|AB|F12.922|ICD10CM|Cannabis use, unsp w intoxication w perceptual disturbance|Cannabis use, unsp w intoxication w perceptual disturbance +C2874501|T048|PT|F12.922|ICD10CM|Cannabis use, unspecified with intoxication with perceptual disturbance|Cannabis use, unspecified with intoxication with perceptual disturbance +C2874502|T048|AB|F12.929|ICD10CM|Cannabis use, unspecified with intoxication, unspecified|Cannabis use, unspecified with intoxication, unspecified +C2874502|T048|PT|F12.929|ICD10CM|Cannabis use, unspecified with intoxication, unspecified|Cannabis use, unspecified with intoxication, unspecified +C4554207|T048|AB|F12.93|ICD10CM|Cannabis use, unspecified with withdrawal|Cannabis use, unspecified with withdrawal +C4554207|T048|PT|F12.93|ICD10CM|Cannabis use, unspecified with withdrawal|Cannabis use, unspecified with withdrawal +C2874503|T048|AB|F12.95|ICD10CM|Cannabis use, unspecified with psychotic disorder|Cannabis use, unspecified with psychotic disorder +C2874503|T048|HT|F12.95|ICD10CM|Cannabis use, unspecified with psychotic disorder|Cannabis use, unspecified with psychotic disorder +C2874504|T048|AB|F12.950|ICD10CM|Cannabis use, unsp with psychotic disorder with delusions|Cannabis use, unsp with psychotic disorder with delusions +C2874504|T048|PT|F12.950|ICD10CM|Cannabis use, unspecified with psychotic disorder with delusions|Cannabis use, unspecified with psychotic disorder with delusions +C2874505|T048|AB|F12.951|ICD10CM|Cannabis use, unsp w psychotic disorder with hallucinations|Cannabis use, unsp w psychotic disorder with hallucinations +C2874505|T048|PT|F12.951|ICD10CM|Cannabis use, unspecified with psychotic disorder with hallucinations|Cannabis use, unspecified with psychotic disorder with hallucinations +C4237034|T048|ET|F12.959|ICD10CM|Cannabis induced psychotic disorder, without use disorder|Cannabis induced psychotic disorder, without use disorder +C2874506|T048|AB|F12.959|ICD10CM|Cannabis use, unsp with psychotic disorder, unspecified|Cannabis use, unsp with psychotic disorder, unspecified +C2874506|T048|PT|F12.959|ICD10CM|Cannabis use, unspecified with psychotic disorder, unspecified|Cannabis use, unspecified with psychotic disorder, unspecified +C2874507|T048|AB|F12.98|ICD10CM|Cannabis use, unsp with other cannabis-induced disorder|Cannabis use, unsp with other cannabis-induced disorder +C2874507|T048|HT|F12.98|ICD10CM|Cannabis use, unspecified with other cannabis-induced disorder|Cannabis use, unspecified with other cannabis-induced disorder +C4237031|T048|ET|F12.980|ICD10CM|Cannabis induced anxiety disorder, without use disorder|Cannabis induced anxiety disorder, without use disorder +C2874508|T048|AB|F12.980|ICD10CM|Cannabis use, unspecified with anxiety disorder|Cannabis use, unspecified with anxiety disorder +C2874508|T048|PT|F12.980|ICD10CM|Cannabis use, unspecified with anxiety disorder|Cannabis use, unspecified with anxiety disorder +C4237037|T048|ET|F12.988|ICD10CM|Cannabis induced sleep disorder, without use disorder|Cannabis induced sleep disorder, without use disorder +C2874507|T048|AB|F12.988|ICD10CM|Cannabis use, unsp with other cannabis-induced disorder|Cannabis use, unsp with other cannabis-induced disorder +C2874507|T048|PT|F12.988|ICD10CM|Cannabis use, unspecified with other cannabis-induced disorder|Cannabis use, unspecified with other cannabis-induced disorder +C2874509|T048|AB|F12.99|ICD10CM|Cannabis use, unsp with unsp cannabis-induced disorder|Cannabis use, unsp with unsp cannabis-induced disorder +C2874509|T048|PT|F12.99|ICD10CM|Cannabis use, unspecified with unspecified cannabis-induced disorder|Cannabis use, unspecified with unspecified cannabis-induced disorder +C0349131|T048|HT|F13|ICD10AE|Mental and behavioral disorders due to use of sedatives or hypnotics|Mental and behavioral disorders due to use of sedatives or hypnotics +C0349131|T048|HT|F13|ICD10|Mental and behavioural disorders due to use of sedatives or hypnotics|Mental and behavioural disorders due to use of sedatives or hypnotics +C0236743|T048|AB|F13|ICD10CM|Sedative, hypnotic, or anxiolytic related disorders|Sedative, hypnotic, or anxiolytic related disorders +C0236743|T048|HT|F13|ICD10CM|Sedative, hypnotic, or anxiolytic related disorders|Sedative, hypnotic, or anxiolytic related disorders +C0349122|T048|PT|F13.0|ICD10AE|Mental and behavioral disorders due to use of sedatives or hypnotics, acute intoxication|Mental and behavioral disorders due to use of sedatives or hypnotics, acute intoxication +C0349122|T048|PT|F13.0|ICD10|Mental and behavioural disorders due to use of sedatives or hypnotics, acute intoxication|Mental and behavioural disorders due to use of sedatives or hypnotics, acute intoxication +C0349123|T048|PT|F13.1|ICD10AE|Mental and behavioral disorders due to use of sedatives or hypnotics, harmful use|Mental and behavioral disorders due to use of sedatives or hypnotics, harmful use +C0349123|T048|PT|F13.1|ICD10|Mental and behavioural disorders due to use of sedatives or hypnotics, harmful use|Mental and behavioural disorders due to use of sedatives or hypnotics, harmful use +C2874510|T048|AB|F13.1|ICD10CM|Sedative, hypnotic or anxiolytic-related abuse|Sedative, hypnotic or anxiolytic-related abuse +C2874510|T048|HT|F13.1|ICD10CM|Sedative, hypnotic or anxiolytic-related abuse|Sedative, hypnotic or anxiolytic-related abuse +C2874511|T048|AB|F13.10|ICD10CM|Sedative, hypnotic or anxiolytic abuse, uncomplicated|Sedative, hypnotic or anxiolytic abuse, uncomplicated +C2874511|T048|PT|F13.10|ICD10CM|Sedative, hypnotic or anxiolytic abuse, uncomplicated|Sedative, hypnotic or anxiolytic abuse, uncomplicated +C4237386|T048|ET|F13.10|ICD10CM|Sedative, hypnotic, or anxiolytic use disorder, mild|Sedative, hypnotic, or anxiolytic use disorder, mild +C0154529|T048|AB|F13.11|ICD10CM|Sedative, hypnotic or anxiolytic abuse, in remission|Sedative, hypnotic or anxiolytic abuse, in remission +C0154529|T048|PT|F13.11|ICD10CM|Sedative, hypnotic or anxiolytic abuse, in remission|Sedative, hypnotic or anxiolytic abuse, in remission +C4509050|T048|ET|F13.11|ICD10CM|Sedative, hypnotic or anxiolytic use disorder, mild, in early remission|Sedative, hypnotic or anxiolytic use disorder, mild, in early remission +C4509051|T048|ET|F13.11|ICD10CM|Sedative, hypnotic or anxiolytic use disorder, mild, in sustained remission|Sedative, hypnotic or anxiolytic use disorder, mild, in sustained remission +C2874515|T048|AB|F13.12|ICD10CM|Sedative, hypnotic or anxiolytic abuse with intoxication|Sedative, hypnotic or anxiolytic abuse with intoxication +C2874515|T048|HT|F13.12|ICD10CM|Sedative, hypnotic or anxiolytic abuse with intoxication|Sedative, hypnotic or anxiolytic abuse with intoxication +C2874513|T048|PT|F13.120|ICD10CM|Sedative, hypnotic or anxiolytic abuse with intoxication, uncomplicated|Sedative, hypnotic or anxiolytic abuse with intoxication, uncomplicated +C2874513|T048|AB|F13.120|ICD10CM|Sedatv/hyp/anxiolytc abuse w intoxication, uncomplicated|Sedatv/hyp/anxiolytc abuse w intoxication, uncomplicated +C2874514|T048|PT|F13.121|ICD10CM|Sedative, hypnotic or anxiolytic abuse with intoxication delirium|Sedative, hypnotic or anxiolytic abuse with intoxication delirium +C2874514|T048|AB|F13.121|ICD10CM|Sedatv/hyp/anxiolytc abuse w intoxication delirium|Sedatv/hyp/anxiolytc abuse w intoxication delirium +C2874515|T048|AB|F13.129|ICD10CM|Sedative, hypnotic or anxiolytic abuse w intoxication, unsp|Sedative, hypnotic or anxiolytic abuse w intoxication, unsp +C2874515|T048|PT|F13.129|ICD10CM|Sedative, hypnotic or anxiolytic abuse with intoxication, unspecified|Sedative, hypnotic or anxiolytic abuse with intoxication, unspecified +C2874516|T048|AB|F13.14|ICD10CM|Sedative, hypnotic or anxiolytic abuse w mood disorder|Sedative, hypnotic or anxiolytic abuse w mood disorder +C2874516|T048|PT|F13.14|ICD10CM|Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced mood disorder|Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced mood disorder +C2874520|T048|AB|F13.15|ICD10CM|Sedative, hypnotic or anxiolytic abuse w psychotic disorder|Sedative, hypnotic or anxiolytic abuse w psychotic disorder +C2874518|T048|AB|F13.150|ICD10CM|Sedatv/hyp/anxiolytc abuse w psychotic disorder w delusions|Sedatv/hyp/anxiolytc abuse w psychotic disorder w delusions +C2874519|T048|AB|F13.151|ICD10CM|Sedatv/hyp/anxiolytc abuse w psychotic disorder w hallucin|Sedatv/hyp/anxiolytc abuse w psychotic disorder w hallucin +C2874520|T048|AB|F13.159|ICD10CM|Sedatv/hyp/anxiolytc abuse w psychotic disorder, unsp|Sedatv/hyp/anxiolytc abuse w psychotic disorder, unsp +C2874524|T048|AB|F13.18|ICD10CM|Sedative, hypnotic or anxiolytic abuse w oth disorders|Sedative, hypnotic or anxiolytic abuse w oth disorders +C2874524|T048|HT|F13.18|ICD10CM|Sedative, hypnotic or anxiolytic abuse with other sedative, hypnotic or anxiolytic-induced disorders|Sedative, hypnotic or anxiolytic abuse with other sedative, hypnotic or anxiolytic-induced disorders +C2874521|T048|AB|F13.180|ICD10CM|Sedative, hypnotic or anxiolytic abuse w anxiety disorder|Sedative, hypnotic or anxiolytic abuse w anxiety disorder +C2874522|T048|AB|F13.181|ICD10CM|Sedative, hypnotic or anxiolytic abuse w sexual dysfunction|Sedative, hypnotic or anxiolytic abuse w sexual dysfunction +C2874523|T048|AB|F13.182|ICD10CM|Sedative, hypnotic or anxiolytic abuse w sleep disorder|Sedative, hypnotic or anxiolytic abuse w sleep disorder +C2874523|T048|PT|F13.182|ICD10CM|Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced sleep disorder|Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced sleep disorder +C2874524|T048|AB|F13.188|ICD10CM|Sedative, hypnotic or anxiolytic abuse w oth disorder|Sedative, hypnotic or anxiolytic abuse w oth disorder +C2874524|T048|PT|F13.188|ICD10CM|Sedative, hypnotic or anxiolytic abuse with other sedative, hypnotic or anxiolytic-induced disorder|Sedative, hypnotic or anxiolytic abuse with other sedative, hypnotic or anxiolytic-induced disorder +C2874525|T048|AB|F13.19|ICD10CM|Sedative, hypnotic or anxiolytic abuse w unsp disorder|Sedative, hypnotic or anxiolytic abuse w unsp disorder +C0349124|T048|PT|F13.2|ICD10AE|Mental and behavioral disorders due to use of sedatives or hypnotics, dependence syndrome|Mental and behavioral disorders due to use of sedatives or hypnotics, dependence syndrome +C0349124|T048|PT|F13.2|ICD10|Mental and behavioural disorders due to use of sedatives or hypnotics, dependence syndrome|Mental and behavioural disorders due to use of sedatives or hypnotics, dependence syndrome +C2874526|T048|AB|F13.2|ICD10CM|Sedative, hypnotic or anxiolytic-related dependence|Sedative, hypnotic or anxiolytic-related dependence +C2874526|T048|HT|F13.2|ICD10CM|Sedative, hypnotic or anxiolytic-related dependence|Sedative, hypnotic or anxiolytic-related dependence +C2874527|T048|AB|F13.20|ICD10CM|Sedative, hypnotic or anxiolytic dependence, uncomplicated|Sedative, hypnotic or anxiolytic dependence, uncomplicated +C2874527|T048|PT|F13.20|ICD10CM|Sedative, hypnotic or anxiolytic dependence, uncomplicated|Sedative, hypnotic or anxiolytic dependence, uncomplicated +C2874528|T048|AB|F13.21|ICD10CM|Sedative, hypnotic or anxiolytic dependence, in remission|Sedative, hypnotic or anxiolytic dependence, in remission +C2874528|T048|PT|F13.21|ICD10CM|Sedative, hypnotic or anxiolytic dependence, in remission|Sedative, hypnotic or anxiolytic dependence, in remission +C4509052|T048|ET|F13.21|ICD10CM|Sedative, hypnotic or anxiolytic use disorder, moderate, in early remission|Sedative, hypnotic or anxiolytic use disorder, moderate, in early remission +C4509053|T048|ET|F13.21|ICD10CM|Sedative, hypnotic or anxiolytic use disorder, moderate, in sustained remission|Sedative, hypnotic or anxiolytic use disorder, moderate, in sustained remission +C4509054|T048|ET|F13.21|ICD10CM|Sedative, hypnotic or anxiolytic use disorder, severe, in early remission|Sedative, hypnotic or anxiolytic use disorder, severe, in early remission +C4509055|T048|ET|F13.21|ICD10CM|Sedative, hypnotic or anxiolytic use disorder, severe, in sustained remission|Sedative, hypnotic or anxiolytic use disorder, severe, in sustained remission +C2874532|T048|AB|F13.22|ICD10CM|Sedative, hypnotic or anxiolytic dependence w intoxication|Sedative, hypnotic or anxiolytic dependence w intoxication +C2874532|T048|HT|F13.22|ICD10CM|Sedative, hypnotic or anxiolytic dependence with intoxication|Sedative, hypnotic or anxiolytic dependence with intoxication +C2874530|T048|PT|F13.220|ICD10CM|Sedative, hypnotic or anxiolytic dependence with intoxication, uncomplicated|Sedative, hypnotic or anxiolytic dependence with intoxication, uncomplicated +C2874530|T048|AB|F13.220|ICD10CM|Sedatv/hyp/anxiolytc dependence w intoxication, uncomp|Sedatv/hyp/anxiolytc dependence w intoxication, uncomp +C2874531|T048|PT|F13.221|ICD10CM|Sedative, hypnotic or anxiolytic dependence with intoxication delirium|Sedative, hypnotic or anxiolytic dependence with intoxication delirium +C2874531|T048|AB|F13.221|ICD10CM|Sedatv/hyp/anxiolytc dependence w intoxication delirium|Sedatv/hyp/anxiolytc dependence w intoxication delirium +C2874532|T048|PT|F13.229|ICD10CM|Sedative, hypnotic or anxiolytic dependence with intoxication, unspecified|Sedative, hypnotic or anxiolytic dependence with intoxication, unspecified +C2874532|T048|AB|F13.229|ICD10CM|Sedatv/hyp/anxiolytc dependence w intoxication, unsp|Sedatv/hyp/anxiolytc dependence w intoxication, unsp +C2874537|T048|AB|F13.23|ICD10CM|Sedative, hypnotic or anxiolytic dependence with withdrawal|Sedative, hypnotic or anxiolytic dependence with withdrawal +C2874537|T048|HT|F13.23|ICD10CM|Sedative, hypnotic or anxiolytic dependence with withdrawal|Sedative, hypnotic or anxiolytic dependence with withdrawal +C4237387|T048|ET|F13.23|ICD10CM|Sedative, hypnotic, or anxiolytic use disorder, moderate|Sedative, hypnotic, or anxiolytic use disorder, moderate +C4237388|T048|ET|F13.23|ICD10CM|Sedative, hypnotic, or anxiolytic use disorder, severe|Sedative, hypnotic, or anxiolytic use disorder, severe +C2874534|T048|PT|F13.230|ICD10CM|Sedative, hypnotic or anxiolytic dependence with withdrawal, uncomplicated|Sedative, hypnotic or anxiolytic dependence with withdrawal, uncomplicated +C2874534|T048|AB|F13.230|ICD10CM|Sedatv/hyp/anxiolytc dependence w withdrawal, uncomplicated|Sedatv/hyp/anxiolytc dependence w withdrawal, uncomplicated +C2874535|T048|PT|F13.231|ICD10CM|Sedative, hypnotic or anxiolytic dependence with withdrawal delirium|Sedative, hypnotic or anxiolytic dependence with withdrawal delirium +C2874535|T048|AB|F13.231|ICD10CM|Sedatv/hyp/anxiolytc dependence w withdrawal delirium|Sedatv/hyp/anxiolytc dependence w withdrawal delirium +C2874536|T048|PT|F13.232|ICD10CM|Sedative, hypnotic or anxiolytic dependence with withdrawal with perceptual disturbance|Sedative, hypnotic or anxiolytic dependence with withdrawal with perceptual disturbance +C4237389|T048|ET|F13.232|ICD10CM|Sedative, hypnotic, or anxiolytic withdrawal with perceptual disturbances|Sedative, hypnotic, or anxiolytic withdrawal with perceptual disturbances +C2874536|T048|AB|F13.232|ICD10CM|Sedatv/hyp/anxiolytc depend w w/drawal w perceptual disturb|Sedatv/hyp/anxiolytc depend w w/drawal w perceptual disturb +C2874537|T048|PT|F13.239|ICD10CM|Sedative, hypnotic or anxiolytic dependence with withdrawal, unspecified|Sedative, hypnotic or anxiolytic dependence with withdrawal, unspecified +C4237390|T048|ET|F13.239|ICD10CM|Sedative, hypnotic, or anxiolytic withdrawal without perceptual disturbances|Sedative, hypnotic, or anxiolytic withdrawal without perceptual disturbances +C2874537|T048|AB|F13.239|ICD10CM|Sedatv/hyp/anxiolytc dependence w withdrawal, unsp|Sedatv/hyp/anxiolytc dependence w withdrawal, unsp +C2874538|T048|AB|F13.24|ICD10CM|Sedative, hypnotic or anxiolytic dependence w mood disorder|Sedative, hypnotic or anxiolytic dependence w mood disorder +C2874542|T048|AB|F13.25|ICD10CM|Sedatv/hyp/anxiolytc dependence w psychotic disorder|Sedatv/hyp/anxiolytc dependence w psychotic disorder +C2874540|T048|AB|F13.250|ICD10CM|Sedatv/hyp/anxiolytc depend w psychotic disorder w delusions|Sedatv/hyp/anxiolytc depend w psychotic disorder w delusions +C2874541|T048|AB|F13.251|ICD10CM|Sedatv/hyp/anxiolytc depend w psychotic disorder w hallucin|Sedatv/hyp/anxiolytc depend w psychotic disorder w hallucin +C2874542|T048|AB|F13.259|ICD10CM|Sedatv/hyp/anxiolytc dependence w psychotic disorder, unsp|Sedatv/hyp/anxiolytc dependence w psychotic disorder, unsp +C2874543|T048|AB|F13.26|ICD10CM|Sedatv/hyp/anxiolytc depend w persisting amnestic disorder|Sedatv/hyp/anxiolytc depend w persisting amnestic disorder +C2874544|T048|AB|F13.27|ICD10CM|Sedatv/hyp/anxiolytc dependence w persisting dementia|Sedatv/hyp/anxiolytc dependence w persisting dementia +C2874548|T048|AB|F13.28|ICD10CM|Sedative, hypnotic or anxiolytic dependence w oth disorders|Sedative, hypnotic or anxiolytic dependence w oth disorders +C2874545|T048|AB|F13.280|ICD10CM|Sedatv/hyp/anxiolytc dependence w anxiety disorder|Sedatv/hyp/anxiolytc dependence w anxiety disorder +C2874546|T048|AB|F13.281|ICD10CM|Sedatv/hyp/anxiolytc dependence w sexual dysfunction|Sedatv/hyp/anxiolytc dependence w sexual dysfunction +C2874547|T048|AB|F13.282|ICD10CM|Sedative, hypnotic or anxiolytic dependence w sleep disorder|Sedative, hypnotic or anxiolytic dependence w sleep disorder +C2874548|T048|AB|F13.288|ICD10CM|Sedative, hypnotic or anxiolytic dependence w oth disorder|Sedative, hypnotic or anxiolytic dependence w oth disorder +C2874549|T048|AB|F13.29|ICD10CM|Sedative, hypnotic or anxiolytic dependence w unsp disorder|Sedative, hypnotic or anxiolytic dependence w unsp disorder +C0349125|T048|PT|F13.3|ICD10AE|Mental and behavioral disorders due to use of sedatives or hypnotics, withdrawal state|Mental and behavioral disorders due to use of sedatives or hypnotics, withdrawal state +C0349125|T048|PT|F13.3|ICD10|Mental and behavioural disorders due to use of sedatives or hypnotics, withdrawal state|Mental and behavioural disorders due to use of sedatives or hypnotics, withdrawal state +C0349126|T048|PT|F13.4|ICD10AE|Mental and behavioral disorders due to use of sedatives or hypnotics, withdrawal state with delirium|Mental and behavioral disorders due to use of sedatives or hypnotics, withdrawal state with delirium +C0349127|T048|PT|F13.5|ICD10AE|Mental and behavioral disorders due to use of sedatives or hypnotics, psychotic disorder|Mental and behavioral disorders due to use of sedatives or hypnotics, psychotic disorder +C0349127|T048|PT|F13.5|ICD10|Mental and behavioural disorders due to use of sedatives or hypnotics, psychotic disorder|Mental and behavioural disorders due to use of sedatives or hypnotics, psychotic disorder +C0349128|T048|PT|F13.6|ICD10AE|Mental and behavioral disorders due to use of sedatives or hypnotics, amnesic syndrome|Mental and behavioral disorders due to use of sedatives or hypnotics, amnesic syndrome +C0349128|T048|PT|F13.6|ICD10|Mental and behavioural disorders due to use of sedatives or hypnotics, amnesic syndrome|Mental and behavioural disorders due to use of sedatives or hypnotics, amnesic syndrome +C2874550|T048|AB|F13.9|ICD10CM|Sedative, hypnotic or anxiolytic-related use, unspecified|Sedative, hypnotic or anxiolytic-related use, unspecified +C2874550|T048|HT|F13.9|ICD10CM|Sedative, hypnotic or anxiolytic-related use, unspecified|Sedative, hypnotic or anxiolytic-related use, unspecified +C2874551|T048|AB|F13.90|ICD10CM|Sedative, hypnotic, or anxiolytic use, unsp, uncomplicated|Sedative, hypnotic, or anxiolytic use, unsp, uncomplicated +C2874551|T048|PT|F13.90|ICD10CM|Sedative, hypnotic, or anxiolytic use, unspecified, uncomplicated|Sedative, hypnotic, or anxiolytic use, unspecified, uncomplicated +C2874552|T048|AB|F13.92|ICD10CM|Sedative, hypnotic or anxiolytic use, unsp with intoxication|Sedative, hypnotic or anxiolytic use, unsp with intoxication +C2874552|T048|HT|F13.92|ICD10CM|Sedative, hypnotic or anxiolytic use, unspecified with intoxication|Sedative, hypnotic or anxiolytic use, unspecified with intoxication +C2874553|T048|PT|F13.920|ICD10CM|Sedative, hypnotic or anxiolytic use, unspecified with intoxication, uncomplicated|Sedative, hypnotic or anxiolytic use, unspecified with intoxication, uncomplicated +C2874553|T048|AB|F13.920|ICD10CM|Sedatv/hyp/anxiolytc use, unsp w intoxication, uncomplicated|Sedatv/hyp/anxiolytc use, unsp w intoxication, uncomplicated +C2874554|T048|PT|F13.921|ICD10CM|Sedative, hypnotic or anxiolytic use, unspecified with intoxication delirium|Sedative, hypnotic or anxiolytic use, unspecified with intoxication delirium +C4237397|T048|ET|F13.921|ICD10CM|Sedative, hypnotic, or anxiolytic-induced delirium|Sedative, hypnotic, or anxiolytic-induced delirium +C2874554|T048|AB|F13.921|ICD10CM|Sedatv/hyp/anxiolytc use, unsp w intoxication delirium|Sedatv/hyp/anxiolytc use, unsp w intoxication delirium +C2874555|T048|PT|F13.929|ICD10CM|Sedative, hypnotic or anxiolytic use, unspecified with intoxication, unspecified|Sedative, hypnotic or anxiolytic use, unspecified with intoxication, unspecified +C2874555|T048|AB|F13.929|ICD10CM|Sedatv/hyp/anxiolytc use, unsp w intoxication, unsp|Sedatv/hyp/anxiolytc use, unsp w intoxication, unsp +C2874556|T048|AB|F13.93|ICD10CM|Sedative, hypnotic or anxiolytic use, unsp with withdrawal|Sedative, hypnotic or anxiolytic use, unsp with withdrawal +C2874556|T048|HT|F13.93|ICD10CM|Sedative, hypnotic or anxiolytic use, unspecified with withdrawal|Sedative, hypnotic or anxiolytic use, unspecified with withdrawal +C2874557|T048|PT|F13.930|ICD10CM|Sedative, hypnotic or anxiolytic use, unspecified with withdrawal, uncomplicated|Sedative, hypnotic or anxiolytic use, unspecified with withdrawal, uncomplicated +C2874557|T048|AB|F13.930|ICD10CM|Sedatv/hyp/anxiolytc use, unsp w withdrawal, uncomplicated|Sedatv/hyp/anxiolytc use, unsp w withdrawal, uncomplicated +C2874558|T048|PT|F13.931|ICD10CM|Sedative, hypnotic or anxiolytic use, unspecified with withdrawal delirium|Sedative, hypnotic or anxiolytic use, unspecified with withdrawal delirium +C2874558|T048|AB|F13.931|ICD10CM|Sedatv/hyp/anxiolytc use, unsp w withdrawal delirium|Sedatv/hyp/anxiolytc use, unsp w withdrawal delirium +C2874559|T048|PT|F13.932|ICD10CM|Sedative, hypnotic or anxiolytic use, unspecified with withdrawal with perceptual disturbances|Sedative, hypnotic or anxiolytic use, unspecified with withdrawal with perceptual disturbances +C2874559|T048|AB|F13.932|ICD10CM|Sedatv/hyp/anxiolytc use, unsp w w/drawal w perceptl disturb|Sedatv/hyp/anxiolytc use, unsp w w/drawal w perceptl disturb +C2874560|T048|PT|F13.939|ICD10CM|Sedative, hypnotic or anxiolytic use, unspecified with withdrawal, unspecified|Sedative, hypnotic or anxiolytic use, unspecified with withdrawal, unspecified +C2874560|T048|AB|F13.939|ICD10CM|Sedatv/hyp/anxiolytc use, unsp w withdrawal, unsp|Sedatv/hyp/anxiolytc use, unsp w withdrawal, unsp +C2874561|T048|AB|F13.94|ICD10CM|Sedative, hypnotic or anxiolytic use, unsp w mood disorder|Sedative, hypnotic or anxiolytic use, unsp w mood disorder +C4268230|T048|ET|F13.94|ICD10CM|Sedative, hypnotic, or anxiolytic-induced bipolar or related disorder, without use disorder|Sedative, hypnotic, or anxiolytic-induced bipolar or related disorder, without use disorder +C4237400|T048|ET|F13.94|ICD10CM|Sedative, hypnotic, or anxiolytic-induced depressive disorder, without use disorder|Sedative, hypnotic, or anxiolytic-induced depressive disorder, without use disorder +C2874562|T048|AB|F13.95|ICD10CM|Sedatv/hyp/anxiolytc use, unsp w psychotic disorder|Sedatv/hyp/anxiolytc use, unsp w psychotic disorder +C2874563|T048|AB|F13.950|ICD10CM|Sedatv/hyp/anxiolytc use, unsp w psych disorder w delusions|Sedatv/hyp/anxiolytc use, unsp w psych disorder w delusions +C2874564|T048|AB|F13.951|ICD10CM|Sedatv/hyp/anxiolytc use, unsp w psych disorder w hallucin|Sedatv/hyp/anxiolytc use, unsp w psych disorder w hallucin +C4237407|T048|ET|F13.959|ICD10CM|Sedative, hypnotic, or anxiolytic-induced psychotic disorder, without use disorder|Sedative, hypnotic, or anxiolytic-induced psychotic disorder, without use disorder +C2874565|T048|AB|F13.959|ICD10CM|Sedatv/hyp/anxiolytc use, unsp w psychotic disorder, unsp|Sedatv/hyp/anxiolytc use, unsp w psychotic disorder, unsp +C2874566|T048|AB|F13.96|ICD10CM|Sedatv/hyp/anxiolytc use, unsp w persist amnestic disorder|Sedatv/hyp/anxiolytc use, unsp w persist amnestic disorder +C4237402|T048|ET|F13.97|ICD10CM|Sedative, hypnotic, or anxiolytic-induced major neurocognitive disorder, without use disorder|Sedative, hypnotic, or anxiolytic-induced major neurocognitive disorder, without use disorder +C2874567|T048|AB|F13.97|ICD10CM|Sedatv/hyp/anxiolytc use, unsp w persisting dementia|Sedatv/hyp/anxiolytc use, unsp w persisting dementia +C2874571|T048|AB|F13.98|ICD10CM|Sedative, hypnotic or anxiolytic use, unsp w oth disorders|Sedative, hypnotic or anxiolytic use, unsp w oth disorders +C4237393|T048|ET|F13.980|ICD10CM|Sedative, hypnotic, or anxiolytic-induced anxiety disorder, without use disorder|Sedative, hypnotic, or anxiolytic-induced anxiety disorder, without use disorder +C2874568|T048|AB|F13.980|ICD10CM|Sedatv/hyp/anxiolytc use, unsp w anxiety disorder|Sedatv/hyp/anxiolytc use, unsp w anxiety disorder +C4268231|T048|ET|F13.981|ICD10CM|Sedative, hypnotic, or anxiolytic-induced sexual dysfunction disorder, without use disorder|Sedative, hypnotic, or anxiolytic-induced sexual dysfunction disorder, without use disorder +C2874569|T048|AB|F13.981|ICD10CM|Sedatv/hyp/anxiolytc use, unsp w sexual dysfunction|Sedatv/hyp/anxiolytc use, unsp w sexual dysfunction +C2874570|T048|AB|F13.982|ICD10CM|Sedative, hypnotic or anxiolytic use, unsp w sleep disorder|Sedative, hypnotic or anxiolytic use, unsp w sleep disorder +C4237413|T048|ET|F13.982|ICD10CM|Sedative, hypnotic, or anxiolytic-induced sleep disorder, without use disorder|Sedative, hypnotic, or anxiolytic-induced sleep disorder, without use disorder +C2874571|T048|AB|F13.988|ICD10CM|Sedative, hypnotic or anxiolytic use, unsp w oth disorder|Sedative, hypnotic or anxiolytic use, unsp w oth disorder +C4237559|T048|ET|F13.988|ICD10CM|Sedative, hypnotic, or anxiolytic-induced mild neurocognitive disorder|Sedative, hypnotic, or anxiolytic-induced mild neurocognitive disorder +C2874572|T048|AB|F13.99|ICD10CM|Sedative, hypnotic or anxiolytic use, unsp w unsp disorder|Sedative, hypnotic or anxiolytic use, unsp w unsp disorder +C0236736|T048|AB|F14|ICD10CM|Cocaine related disorders|Cocaine related disorders +C0236736|T048|HT|F14|ICD10CM|Cocaine related disorders|Cocaine related disorders +C0349141|T048|HT|F14|ICD10AE|Mental and behavioral disorders due to use of cocaine|Mental and behavioral disorders due to use of cocaine +C0349141|T048|HT|F14|ICD10|Mental and behavioural disorders due to use of cocaine|Mental and behavioural disorders due to use of cocaine +C0349133|T048|PT|F14.0|ICD10AE|Mental and behavioral disorders due to use of cocaine, acute intoxication|Mental and behavioral disorders due to use of cocaine, acute intoxication +C0349133|T048|PT|F14.0|ICD10|Mental and behavioural disorders due to use of cocaine, acute intoxication|Mental and behavioural disorders due to use of cocaine, acute intoxication +C0009171|T048|HT|F14.1|ICD10CM|Cocaine abuse|Cocaine abuse +C0009171|T048|AB|F14.1|ICD10CM|Cocaine abuse|Cocaine abuse +C0349134|T048|PT|F14.1|ICD10AE|Mental and behavioral disorders due to use of cocaine, harmful use|Mental and behavioral disorders due to use of cocaine, harmful use +C0349134|T048|PT|F14.1|ICD10|Mental and behavioural disorders due to use of cocaine, harmful use|Mental and behavioural disorders due to use of cocaine, harmful use +C2874573|T048|AB|F14.10|ICD10CM|Cocaine abuse, uncomplicated|Cocaine abuse, uncomplicated +C2874573|T048|PT|F14.10|ICD10CM|Cocaine abuse, uncomplicated|Cocaine abuse, uncomplicated +C4237064|T048|ET|F14.10|ICD10CM|Cocaine use disorder, mild|Cocaine use disorder, mild +C0154535|T048|AB|F14.11|ICD10CM|Cocaine abuse, in remission|Cocaine abuse, in remission +C0154535|T048|PT|F14.11|ICD10CM|Cocaine abuse, in remission|Cocaine abuse, in remission +C4509056|T048|ET|F14.11|ICD10CM|Cocaine use disorder, mild, in early remission|Cocaine use disorder, mild, in early remission +C4509057|T048|ET|F14.11|ICD10CM|Cocaine use disorder, mild, in sustained remission|Cocaine use disorder, mild, in sustained remission +C2874578|T048|HT|F14.12|ICD10CM|Cocaine abuse with intoxication|Cocaine abuse with intoxication +C2874578|T048|AB|F14.12|ICD10CM|Cocaine abuse with intoxication|Cocaine abuse with intoxication +C2874575|T048|AB|F14.120|ICD10CM|Cocaine abuse with intoxication, uncomplicated|Cocaine abuse with intoxication, uncomplicated +C2874575|T048|PT|F14.120|ICD10CM|Cocaine abuse with intoxication, uncomplicated|Cocaine abuse with intoxication, uncomplicated +C2874576|T048|PT|F14.121|ICD10CM|Cocaine abuse with intoxication with delirium|Cocaine abuse with intoxication with delirium +C2874576|T048|AB|F14.121|ICD10CM|Cocaine abuse with intoxication with delirium|Cocaine abuse with intoxication with delirium +C2874577|T048|AB|F14.122|ICD10CM|Cocaine abuse with intoxication with perceptual disturbance|Cocaine abuse with intoxication with perceptual disturbance +C2874577|T048|PT|F14.122|ICD10CM|Cocaine abuse with intoxication with perceptual disturbance|Cocaine abuse with intoxication with perceptual disturbance +C2874578|T048|AB|F14.129|ICD10CM|Cocaine abuse with intoxication, unspecified|Cocaine abuse with intoxication, unspecified +C2874578|T048|PT|F14.129|ICD10CM|Cocaine abuse with intoxication, unspecified|Cocaine abuse with intoxication, unspecified +C2874579|T048|PT|F14.14|ICD10CM|Cocaine abuse with cocaine-induced mood disorder|Cocaine abuse with cocaine-induced mood disorder +C2874579|T048|AB|F14.14|ICD10CM|Cocaine abuse with cocaine-induced mood disorder|Cocaine abuse with cocaine-induced mood disorder +C4268232|T048|ET|F14.14|ICD10CM|Cocaine use disorder, mild, with cocaine-induced bipolar or related disorder|Cocaine use disorder, mild, with cocaine-induced bipolar or related disorder +C4268233|T048|ET|F14.14|ICD10CM|Cocaine use disorder, mild, with cocaine-induced depressive disorder|Cocaine use disorder, mild, with cocaine-induced depressive disorder +C2874583|T048|HT|F14.15|ICD10CM|Cocaine abuse with cocaine-induced psychotic disorder|Cocaine abuse with cocaine-induced psychotic disorder +C2874583|T048|AB|F14.15|ICD10CM|Cocaine abuse with cocaine-induced psychotic disorder|Cocaine abuse with cocaine-induced psychotic disorder +C2874581|T048|AB|F14.150|ICD10CM|Cocaine abuse w cocaine-induc psychotic disorder w delusions|Cocaine abuse w cocaine-induc psychotic disorder w delusions +C2874581|T048|PT|F14.150|ICD10CM|Cocaine abuse with cocaine-induced psychotic disorder with delusions|Cocaine abuse with cocaine-induced psychotic disorder with delusions +C2874582|T048|AB|F14.151|ICD10CM|Cocaine abuse w cocaine-induc psychotic disorder w hallucin|Cocaine abuse w cocaine-induc psychotic disorder w hallucin +C2874582|T048|PT|F14.151|ICD10CM|Cocaine abuse with cocaine-induced psychotic disorder with hallucinations|Cocaine abuse with cocaine-induced psychotic disorder with hallucinations +C2874583|T048|AB|F14.159|ICD10CM|Cocaine abuse with cocaine-induced psychotic disorder, unsp|Cocaine abuse with cocaine-induced psychotic disorder, unsp +C2874583|T048|PT|F14.159|ICD10CM|Cocaine abuse with cocaine-induced psychotic disorder, unspecified|Cocaine abuse with cocaine-induced psychotic disorder, unspecified +C2874584|T048|HT|F14.18|ICD10CM|Cocaine abuse with other cocaine-induced disorder|Cocaine abuse with other cocaine-induced disorder +C2874584|T048|AB|F14.18|ICD10CM|Cocaine abuse with other cocaine-induced disorder|Cocaine abuse with other cocaine-induced disorder +C2874585|T048|PT|F14.180|ICD10CM|Cocaine abuse with cocaine-induced anxiety disorder|Cocaine abuse with cocaine-induced anxiety disorder +C2874585|T048|AB|F14.180|ICD10CM|Cocaine abuse with cocaine-induced anxiety disorder|Cocaine abuse with cocaine-induced anxiety disorder +C2874586|T048|PT|F14.181|ICD10CM|Cocaine abuse with cocaine-induced sexual dysfunction|Cocaine abuse with cocaine-induced sexual dysfunction +C2874586|T048|AB|F14.181|ICD10CM|Cocaine abuse with cocaine-induced sexual dysfunction|Cocaine abuse with cocaine-induced sexual dysfunction +C2874587|T048|PT|F14.182|ICD10CM|Cocaine abuse with cocaine-induced sleep disorder|Cocaine abuse with cocaine-induced sleep disorder +C2874587|T048|AB|F14.182|ICD10CM|Cocaine abuse with cocaine-induced sleep disorder|Cocaine abuse with cocaine-induced sleep disorder +C2874584|T048|AB|F14.188|ICD10CM|Cocaine abuse with other cocaine-induced disorder|Cocaine abuse with other cocaine-induced disorder +C2874584|T048|PT|F14.188|ICD10CM|Cocaine abuse with other cocaine-induced disorder|Cocaine abuse with other cocaine-induced disorder +C4268234|T048|ET|F14.188|ICD10CM|Cocaine use disorder, mild, with cocaine-induced obsessive compulsive or related disorder|Cocaine use disorder, mild, with cocaine-induced obsessive compulsive or related disorder +C2874588|T048|AB|F14.19|ICD10CM|Cocaine abuse with unspecified cocaine-induced disorder|Cocaine abuse with unspecified cocaine-induced disorder +C2874588|T048|PT|F14.19|ICD10CM|Cocaine abuse with unspecified cocaine-induced disorder|Cocaine abuse with unspecified cocaine-induced disorder +C0600427|T048|HT|F14.2|ICD10CM|Cocaine dependence|Cocaine dependence +C0600427|T048|AB|F14.2|ICD10CM|Cocaine dependence|Cocaine dependence +C0600427|T048|PT|F14.2|ICD10AE|Mental and behavioral disorders due to use of cocaine, dependence syndrome|Mental and behavioral disorders due to use of cocaine, dependence syndrome +C0600427|T048|PT|F14.2|ICD10|Mental and behavioural disorders due to use of cocaine, dependence syndrome|Mental and behavioural disorders due to use of cocaine, dependence syndrome +C2874589|T048|AB|F14.20|ICD10CM|Cocaine dependence, uncomplicated|Cocaine dependence, uncomplicated +C2874589|T048|PT|F14.20|ICD10CM|Cocaine dependence, uncomplicated|Cocaine dependence, uncomplicated +C4237065|T048|ET|F14.20|ICD10CM|Cocaine use disorder, moderate|Cocaine use disorder, moderate +C4237066|T048|ET|F14.20|ICD10CM|Cocaine use disorder, severe|Cocaine use disorder, severe +C0154487|T048|PT|F14.21|ICD10CM|Cocaine dependence, in remission|Cocaine dependence, in remission +C0154487|T048|AB|F14.21|ICD10CM|Cocaine dependence, in remission|Cocaine dependence, in remission +C4509058|T048|ET|F14.21|ICD10CM|Cocaine use disorder, moderate, in early remission|Cocaine use disorder, moderate, in early remission +C4509059|T048|ET|F14.21|ICD10CM|Cocaine use disorder, moderate, in sustained remission|Cocaine use disorder, moderate, in sustained remission +C4509060|T048|ET|F14.21|ICD10CM|Cocaine use disorder, severe, in early remission|Cocaine use disorder, severe, in early remission +C4509061|T048|ET|F14.21|ICD10CM|Cocaine use disorder, severe, in sustained remission|Cocaine use disorder, severe, in sustained remission +C2874594|T048|HT|F14.22|ICD10CM|Cocaine dependence with intoxication|Cocaine dependence with intoxication +C2874594|T048|AB|F14.22|ICD10CM|Cocaine dependence with intoxication|Cocaine dependence with intoxication +C2874591|T048|AB|F14.220|ICD10CM|Cocaine dependence with intoxication, uncomplicated|Cocaine dependence with intoxication, uncomplicated +C2874591|T048|PT|F14.220|ICD10CM|Cocaine dependence with intoxication, uncomplicated|Cocaine dependence with intoxication, uncomplicated +C2874592|T048|PT|F14.221|ICD10CM|Cocaine dependence with intoxication delirium|Cocaine dependence with intoxication delirium +C2874592|T048|AB|F14.221|ICD10CM|Cocaine dependence with intoxication delirium|Cocaine dependence with intoxication delirium +C2874593|T048|AB|F14.222|ICD10CM|Cocaine dependence w intoxication w perceptual disturbance|Cocaine dependence w intoxication w perceptual disturbance +C2874593|T048|PT|F14.222|ICD10CM|Cocaine dependence with intoxication with perceptual disturbance|Cocaine dependence with intoxication with perceptual disturbance +C2874594|T048|AB|F14.229|ICD10CM|Cocaine dependence with intoxication, unspecified|Cocaine dependence with intoxication, unspecified +C2874594|T048|PT|F14.229|ICD10CM|Cocaine dependence with intoxication, unspecified|Cocaine dependence with intoxication, unspecified +C2874595|T048|PT|F14.23|ICD10CM|Cocaine dependence with withdrawal|Cocaine dependence with withdrawal +C2874595|T048|AB|F14.23|ICD10CM|Cocaine dependence with withdrawal|Cocaine dependence with withdrawal +C2874596|T048|PT|F14.24|ICD10CM|Cocaine dependence with cocaine-induced mood disorder|Cocaine dependence with cocaine-induced mood disorder +C2874596|T048|AB|F14.24|ICD10CM|Cocaine dependence with cocaine-induced mood disorder|Cocaine dependence with cocaine-induced mood disorder +C4268235|T048|ET|F14.24|ICD10CM|Cocaine use disorder, moderate, with cocaine-induced bipolar or related disorder|Cocaine use disorder, moderate, with cocaine-induced bipolar or related disorder +C4268236|T048|ET|F14.24|ICD10CM|Cocaine use disorder, moderate, with cocaine-induced depressive disorder|Cocaine use disorder, moderate, with cocaine-induced depressive disorder +C4268237|T048|ET|F14.24|ICD10CM|Cocaine use disorder, severe, with cocaine-induced bipolar or related disorder|Cocaine use disorder, severe, with cocaine-induced bipolar or related disorder +C4268238|T048|ET|F14.24|ICD10CM|Cocaine use disorder, severe, with cocaine-induced depressive disorder|Cocaine use disorder, severe, with cocaine-induced depressive disorder +C2874600|T048|HT|F14.25|ICD10CM|Cocaine dependence with cocaine-induced psychotic disorder|Cocaine dependence with cocaine-induced psychotic disorder +C2874600|T048|AB|F14.25|ICD10CM|Cocaine dependence with cocaine-induced psychotic disorder|Cocaine dependence with cocaine-induced psychotic disorder +C2874598|T048|AB|F14.250|ICD10CM|Cocaine depend w cocaine-induc psych disorder w delusions|Cocaine depend w cocaine-induc psych disorder w delusions +C2874598|T048|PT|F14.250|ICD10CM|Cocaine dependence with cocaine-induced psychotic disorder with delusions|Cocaine dependence with cocaine-induced psychotic disorder with delusions +C2874599|T048|AB|F14.251|ICD10CM|Cocaine depend w cocaine-induc psychotic disorder w hallucin|Cocaine depend w cocaine-induc psychotic disorder w hallucin +C2874599|T048|PT|F14.251|ICD10CM|Cocaine dependence with cocaine-induced psychotic disorder with hallucinations|Cocaine dependence with cocaine-induced psychotic disorder with hallucinations +C2874600|T048|AB|F14.259|ICD10CM|Cocaine dependence w cocaine-induc psychotic disorder, unsp|Cocaine dependence w cocaine-induc psychotic disorder, unsp +C2874600|T048|PT|F14.259|ICD10CM|Cocaine dependence with cocaine-induced psychotic disorder, unspecified|Cocaine dependence with cocaine-induced psychotic disorder, unspecified +C2874601|T048|HT|F14.28|ICD10CM|Cocaine dependence with other cocaine-induced disorder|Cocaine dependence with other cocaine-induced disorder +C2874601|T048|AB|F14.28|ICD10CM|Cocaine dependence with other cocaine-induced disorder|Cocaine dependence with other cocaine-induced disorder +C2874602|T048|PT|F14.280|ICD10CM|Cocaine dependence with cocaine-induced anxiety disorder|Cocaine dependence with cocaine-induced anxiety disorder +C2874602|T048|AB|F14.280|ICD10CM|Cocaine dependence with cocaine-induced anxiety disorder|Cocaine dependence with cocaine-induced anxiety disorder +C2874603|T048|PT|F14.281|ICD10CM|Cocaine dependence with cocaine-induced sexual dysfunction|Cocaine dependence with cocaine-induced sexual dysfunction +C2874603|T048|AB|F14.281|ICD10CM|Cocaine dependence with cocaine-induced sexual dysfunction|Cocaine dependence with cocaine-induced sexual dysfunction +C2874604|T048|PT|F14.282|ICD10CM|Cocaine dependence with cocaine-induced sleep disorder|Cocaine dependence with cocaine-induced sleep disorder +C2874604|T048|AB|F14.282|ICD10CM|Cocaine dependence with cocaine-induced sleep disorder|Cocaine dependence with cocaine-induced sleep disorder +C2874601|T048|AB|F14.288|ICD10CM|Cocaine dependence with other cocaine-induced disorder|Cocaine dependence with other cocaine-induced disorder +C2874601|T048|PT|F14.288|ICD10CM|Cocaine dependence with other cocaine-induced disorder|Cocaine dependence with other cocaine-induced disorder +C4268239|T048|ET|F14.288|ICD10CM|Cocaine use disorder, moderate, with cocaine-induced obsessive compulsive or related disorder|Cocaine use disorder, moderate, with cocaine-induced obsessive compulsive or related disorder +C4268240|T048|ET|F14.288|ICD10CM|Cocaine use disorder, severe, with cocaine-induced obsessive compulsive or related disorder|Cocaine use disorder, severe, with cocaine-induced obsessive compulsive or related disorder +C2874605|T048|AB|F14.29|ICD10CM|Cocaine dependence with unspecified cocaine-induced disorder|Cocaine dependence with unspecified cocaine-induced disorder +C2874605|T048|PT|F14.29|ICD10CM|Cocaine dependence with unspecified cocaine-induced disorder|Cocaine dependence with unspecified cocaine-induced disorder +C0349135|T048|PT|F14.3|ICD10AE|Mental and behavioral disorders due to use of cocaine, withdrawal state|Mental and behavioral disorders due to use of cocaine, withdrawal state +C0349135|T048|PT|F14.3|ICD10|Mental and behavioural disorders due to use of cocaine, withdrawal state|Mental and behavioural disorders due to use of cocaine, withdrawal state +C0349136|T048|PT|F14.4|ICD10AE|Mental and behavioral disorders due to use of cocaine, withdrawal state with delirium|Mental and behavioral disorders due to use of cocaine, withdrawal state with delirium +C0349136|T048|PT|F14.4|ICD10|Mental and behavioural disorders due to use of cocaine, withdrawal state with delirium|Mental and behavioural disorders due to use of cocaine, withdrawal state with delirium +C0349137|T048|PT|F14.5|ICD10AE|Mental and behavioral disorders due to use of cocaine, psychotic disorder|Mental and behavioral disorders due to use of cocaine, psychotic disorder +C0349137|T048|PT|F14.5|ICD10|Mental and behavioural disorders due to use of cocaine, psychotic disorder|Mental and behavioural disorders due to use of cocaine, psychotic disorder +C0349138|T048|PT|F14.6|ICD10AE|Mental and behavioral disorders due to use of cocaine, amnesic syndrome|Mental and behavioral disorders due to use of cocaine, amnesic syndrome +C0349138|T048|PT|F14.6|ICD10|Mental and behavioural disorders due to use of cocaine, amnesic syndrome|Mental and behavioural disorders due to use of cocaine, amnesic syndrome +C0349139|T048|PT|F14.7|ICD10AE|Mental and behavioral disorders due to use of cocaine, residual and late-onset psychotic disorder|Mental and behavioral disorders due to use of cocaine, residual and late-onset psychotic disorder +C0349139|T048|PT|F14.7|ICD10|Mental and behavioural disorders due to use of cocaine, residual and late-onset psychotic disorder|Mental and behavioural disorders due to use of cocaine, residual and late-onset psychotic disorder +C0349140|T048|PT|F14.8|ICD10AE|Mental and behavioral disorders due to use of cocaine, other mental and behavioral disorders|Mental and behavioral disorders due to use of cocaine, other mental and behavioral disorders +C0349140|T048|PT|F14.8|ICD10|Mental and behavioural disorders due to use of cocaine, other mental and behavioural disorders|Mental and behavioural disorders due to use of cocaine, other mental and behavioural disorders +C2874606|T048|AB|F14.9|ICD10CM|Cocaine use, unspecified|Cocaine use, unspecified +C2874606|T048|HT|F14.9|ICD10CM|Cocaine use, unspecified|Cocaine use, unspecified +C0349141|T048|PT|F14.9|ICD10AE|Mental and behavioral disorders due to use of cocaine, unspecified mental and behavioral disorder|Mental and behavioral disorders due to use of cocaine, unspecified mental and behavioral disorder +C0349141|T048|PT|F14.9|ICD10|Mental and behavioural disorders due to use of cocaine, unspecified mental and behavioural disorder|Mental and behavioural disorders due to use of cocaine, unspecified mental and behavioural disorder +C2874607|T048|AB|F14.90|ICD10CM|Cocaine use, unspecified, uncomplicated|Cocaine use, unspecified, uncomplicated +C2874607|T048|PT|F14.90|ICD10CM|Cocaine use, unspecified, uncomplicated|Cocaine use, unspecified, uncomplicated +C2874608|T048|AB|F14.92|ICD10CM|Cocaine use, unspecified with intoxication|Cocaine use, unspecified with intoxication +C2874608|T048|HT|F14.92|ICD10CM|Cocaine use, unspecified with intoxication|Cocaine use, unspecified with intoxication +C2874609|T048|AB|F14.920|ICD10CM|Cocaine use, unspecified with intoxication, uncomplicated|Cocaine use, unspecified with intoxication, uncomplicated +C2874609|T048|PT|F14.920|ICD10CM|Cocaine use, unspecified with intoxication, uncomplicated|Cocaine use, unspecified with intoxication, uncomplicated +C2874610|T048|AB|F14.921|ICD10CM|Cocaine use, unspecified with intoxication delirium|Cocaine use, unspecified with intoxication delirium +C2874610|T048|PT|F14.921|ICD10CM|Cocaine use, unspecified with intoxication delirium|Cocaine use, unspecified with intoxication delirium +C2874611|T048|AB|F14.922|ICD10CM|Cocaine use, unsp w intoxication with perceptual disturbance|Cocaine use, unsp w intoxication with perceptual disturbance +C2874611|T048|PT|F14.922|ICD10CM|Cocaine use, unspecified with intoxication with perceptual disturbance|Cocaine use, unspecified with intoxication with perceptual disturbance +C2874612|T048|AB|F14.929|ICD10CM|Cocaine use, unspecified with intoxication, unspecified|Cocaine use, unspecified with intoxication, unspecified +C2874612|T048|PT|F14.929|ICD10CM|Cocaine use, unspecified with intoxication, unspecified|Cocaine use, unspecified with intoxication, unspecified +C4268241|T048|ET|F14.94|ICD10CM|Cocaine induced bipolar or related disorder, without use disorder|Cocaine induced bipolar or related disorder, without use disorder +C4237075|T048|ET|F14.94|ICD10CM|Cocaine induced depressive disorder, without use disorder|Cocaine induced depressive disorder, without use disorder +C2874613|T048|AB|F14.94|ICD10CM|Cocaine use, unspecified with cocaine-induced mood disorder|Cocaine use, unspecified with cocaine-induced mood disorder +C2874613|T048|PT|F14.94|ICD10CM|Cocaine use, unspecified with cocaine-induced mood disorder|Cocaine use, unspecified with cocaine-induced mood disorder +C2874614|T048|AB|F14.95|ICD10CM|Cocaine use, unsp with cocaine-induced psychotic disorder|Cocaine use, unsp with cocaine-induced psychotic disorder +C2874614|T048|HT|F14.95|ICD10CM|Cocaine use, unspecified with cocaine-induced psychotic disorder|Cocaine use, unspecified with cocaine-induced psychotic disorder +C2874615|T048|AB|F14.950|ICD10CM|Cocaine use, unsp w cocaine-induc psych disorder w delusions|Cocaine use, unsp w cocaine-induc psych disorder w delusions +C2874615|T048|PT|F14.950|ICD10CM|Cocaine use, unspecified with cocaine-induced psychotic disorder with delusions|Cocaine use, unspecified with cocaine-induced psychotic disorder with delusions +C2874616|T048|AB|F14.951|ICD10CM|Cocaine use, unsp w cocaine-induc psych disorder w hallucin|Cocaine use, unsp w cocaine-induc psych disorder w hallucin +C2874616|T048|PT|F14.951|ICD10CM|Cocaine use, unspecified with cocaine-induced psychotic disorder with hallucinations|Cocaine use, unspecified with cocaine-induced psychotic disorder with hallucinations +C4237081|T048|ET|F14.959|ICD10CM|Cocaine induced psychotic disorder, without use disorder|Cocaine induced psychotic disorder, without use disorder +C2874617|T048|AB|F14.959|ICD10CM|Cocaine use, unsp w cocaine-induced psychotic disorder, unsp|Cocaine use, unsp w cocaine-induced psychotic disorder, unsp +C2874617|T048|PT|F14.959|ICD10CM|Cocaine use, unspecified with cocaine-induced psychotic disorder, unspecified|Cocaine use, unspecified with cocaine-induced psychotic disorder, unspecified +C2874618|T048|AB|F14.98|ICD10CM|Cocaine use, unspecified with oth cocaine-induced disorder|Cocaine use, unspecified with oth cocaine-induced disorder +C2874618|T048|HT|F14.98|ICD10CM|Cocaine use, unspecified with other specified cocaine-induced disorder|Cocaine use, unspecified with other specified cocaine-induced disorder +C4237069|T048|ET|F14.980|ICD10CM|Cocaine induced anxiety disorder, without use disorder|Cocaine induced anxiety disorder, without use disorder +C2874619|T048|AB|F14.980|ICD10CM|Cocaine use, unsp with cocaine-induced anxiety disorder|Cocaine use, unsp with cocaine-induced anxiety disorder +C2874619|T048|PT|F14.980|ICD10CM|Cocaine use, unspecified with cocaine-induced anxiety disorder|Cocaine use, unspecified with cocaine-induced anxiety disorder +C4237084|T048|ET|F14.981|ICD10CM|Cocaine induced sexual dysfunction, without use disorder|Cocaine induced sexual dysfunction, without use disorder +C2874620|T048|AB|F14.981|ICD10CM|Cocaine use, unsp with cocaine-induced sexual dysfunction|Cocaine use, unsp with cocaine-induced sexual dysfunction +C2874620|T048|PT|F14.981|ICD10CM|Cocaine use, unspecified with cocaine-induced sexual dysfunction|Cocaine use, unspecified with cocaine-induced sexual dysfunction +C4237087|T048|ET|F14.982|ICD10CM|Cocaine induced sleep disorder, without use disorder|Cocaine induced sleep disorder, without use disorder +C2874621|T048|AB|F14.982|ICD10CM|Cocaine use, unspecified with cocaine-induced sleep disorder|Cocaine use, unspecified with cocaine-induced sleep disorder +C2874621|T048|PT|F14.982|ICD10CM|Cocaine use, unspecified with cocaine-induced sleep disorder|Cocaine use, unspecified with cocaine-induced sleep disorder +C4268242|T048|ET|F14.988|ICD10CM|Cocaine induced obsessive compulsive or related disorder|Cocaine induced obsessive compulsive or related disorder +C2874622|T048|AB|F14.988|ICD10CM|Cocaine use, unspecified with other cocaine-induced disorder|Cocaine use, unspecified with other cocaine-induced disorder +C2874622|T048|PT|F14.988|ICD10CM|Cocaine use, unspecified with other cocaine-induced disorder|Cocaine use, unspecified with other cocaine-induced disorder +C2874623|T048|AB|F14.99|ICD10CM|Cocaine use, unsp with unspecified cocaine-induced disorder|Cocaine use, unsp with unspecified cocaine-induced disorder +C2874623|T048|PT|F14.99|ICD10CM|Cocaine use, unspecified with unspecified cocaine-induced disorder|Cocaine use, unspecified with unspecified cocaine-induced disorder +C0236733|T048|ET|F15|ICD10CM|amphetamine-related disorders|amphetamine-related disorders +C0236734|T048|ET|F15|ICD10CM|caffeine|caffeine +C0494381|T048|HT|F15|ICD10AE|Mental and behavioral disorders due to use of other stimulants, including caffeine|Mental and behavioral disorders due to use of other stimulants, including caffeine +C0494381|T048|HT|F15|ICD10|Mental and behavioural disorders due to use of other stimulants, including caffeine|Mental and behavioural disorders due to use of other stimulants, including caffeine +C2874624|T048|AB|F15|ICD10CM|Other stimulant related disorders|Other stimulant related disorders +C2874624|T048|HT|F15|ICD10CM|Other stimulant related disorders|Other stimulant related disorders +C0349143|T048|PT|F15.1|ICD10AE|Mental and behavioral disorders due to use of other stimulants including caffeine, harmful use|Mental and behavioral disorders due to use of other stimulants including caffeine, harmful use +C0349143|T048|PT|F15.1|ICD10|Mental and behavioural disorders due to use of other stimulants including caffeine, harmful use|Mental and behavioural disorders due to use of other stimulants including caffeine, harmful use +C2874625|T048|AB|F15.1|ICD10CM|Other stimulant abuse|Other stimulant abuse +C2874625|T048|HT|F15.1|ICD10CM|Other stimulant abuse|Other stimulant abuse +C4236988|T048|ET|F15.10|ICD10CM|Amphetamine type substance use disorder, mild|Amphetamine type substance use disorder, mild +C4237316|T048|ET|F15.10|ICD10CM|Other or unspecified stimulant use disorder, mild|Other or unspecified stimulant use disorder, mild +C2874626|T048|AB|F15.10|ICD10CM|Other stimulant abuse, uncomplicated|Other stimulant abuse, uncomplicated +C2874626|T048|PT|F15.10|ICD10CM|Other stimulant abuse, uncomplicated|Other stimulant abuse, uncomplicated +C4509062|T048|ET|F15.11|ICD10CM|Amphetamine type substance use disorder, mild, in early remission|Amphetamine type substance use disorder, mild, in early remission +C4509063|T048|ET|F15.11|ICD10CM|Amphetamine type substance use disorder, mild, in sustained remission|Amphetamine type substance use disorder, mild, in sustained remission +C4481003|T048|ET|F15.11|ICD10CM|Other or unspecified stimulant use disorder, mild, in early remission|Other or unspecified stimulant use disorder, mild, in early remission +C4481004|T048|ET|F15.11|ICD10CM|Other or unspecified stimulant use disorder, mild, in sustained remission|Other or unspecified stimulant use disorder, mild, in sustained remission +C4481000|T048|AB|F15.11|ICD10CM|Other stimulant abuse, in remission|Other stimulant abuse, in remission +C4481000|T048|PT|F15.11|ICD10CM|Other stimulant abuse, in remission|Other stimulant abuse, in remission +C2874631|T048|AB|F15.12|ICD10CM|Other stimulant abuse with intoxication|Other stimulant abuse with intoxication +C2874631|T048|HT|F15.12|ICD10CM|Other stimulant abuse with intoxication|Other stimulant abuse with intoxication +C2874628|T048|AB|F15.120|ICD10CM|Other stimulant abuse with intoxication, uncomplicated|Other stimulant abuse with intoxication, uncomplicated +C2874628|T048|PT|F15.120|ICD10CM|Other stimulant abuse with intoxication, uncomplicated|Other stimulant abuse with intoxication, uncomplicated +C2874629|T048|AB|F15.121|ICD10CM|Other stimulant abuse with intoxication delirium|Other stimulant abuse with intoxication delirium +C2874629|T048|PT|F15.121|ICD10CM|Other stimulant abuse with intoxication delirium|Other stimulant abuse with intoxication delirium +C2874630|T048|AB|F15.122|ICD10CM|Oth stimulant abuse w intoxication w perceptual disturbance|Oth stimulant abuse w intoxication w perceptual disturbance +C2874630|T048|PT|F15.122|ICD10CM|Other stimulant abuse with intoxication with perceptual disturbance|Other stimulant abuse with intoxication with perceptual disturbance +C2874631|T048|AB|F15.129|ICD10CM|Other stimulant abuse with intoxication, unspecified|Other stimulant abuse with intoxication, unspecified +C2874631|T048|PT|F15.129|ICD10CM|Other stimulant abuse with intoxication, unspecified|Other stimulant abuse with intoxication, unspecified +C2874632|T048|AB|F15.14|ICD10CM|Other stimulant abuse with stimulant-induced mood disorder|Other stimulant abuse with stimulant-induced mood disorder +C2874632|T048|PT|F15.14|ICD10CM|Other stimulant abuse with stimulant-induced mood disorder|Other stimulant abuse with stimulant-induced mood disorder +C2874636|T048|AB|F15.15|ICD10CM|Oth stimulant abuse w stimulant-induced psychotic disorder|Oth stimulant abuse w stimulant-induced psychotic disorder +C2874636|T048|HT|F15.15|ICD10CM|Other stimulant abuse with stimulant-induced psychotic disorder|Other stimulant abuse with stimulant-induced psychotic disorder +C2874634|T048|AB|F15.150|ICD10CM|Oth stimulant abuse w stim-induce psych disorder w delusions|Oth stimulant abuse w stim-induce psych disorder w delusions +C2874634|T048|PT|F15.150|ICD10CM|Other stimulant abuse with stimulant-induced psychotic disorder with delusions|Other stimulant abuse with stimulant-induced psychotic disorder with delusions +C2874635|T048|AB|F15.151|ICD10CM|Oth stimulant abuse w stim-induce psych disorder w hallucin|Oth stimulant abuse w stim-induce psych disorder w hallucin +C2874635|T048|PT|F15.151|ICD10CM|Other stimulant abuse with stimulant-induced psychotic disorder with hallucinations|Other stimulant abuse with stimulant-induced psychotic disorder with hallucinations +C2874636|T048|AB|F15.159|ICD10CM|Oth stimulant abuse w stim-induce psychotic disorder, unsp|Oth stimulant abuse w stim-induce psychotic disorder, unsp +C2874636|T048|PT|F15.159|ICD10CM|Other stimulant abuse with stimulant-induced psychotic disorder, unspecified|Other stimulant abuse with stimulant-induced psychotic disorder, unspecified +C2874637|T048|HT|F15.18|ICD10CM|Other stimulant abuse with other stimulant-induced disorder|Other stimulant abuse with other stimulant-induced disorder +C2874637|T048|AB|F15.18|ICD10CM|Other stimulant abuse with other stimulant-induced disorder|Other stimulant abuse with other stimulant-induced disorder +C2874638|T048|AB|F15.180|ICD10CM|Oth stimulant abuse with stimulant-induced anxiety disorder|Oth stimulant abuse with stimulant-induced anxiety disorder +C2874638|T048|PT|F15.180|ICD10CM|Other stimulant abuse with stimulant-induced anxiety disorder|Other stimulant abuse with stimulant-induced anxiety disorder +C2874639|T048|AB|F15.181|ICD10CM|Oth stimulant abuse w stimulant-induced sexual dysfunction|Oth stimulant abuse w stimulant-induced sexual dysfunction +C2874639|T048|PT|F15.181|ICD10CM|Other stimulant abuse with stimulant-induced sexual dysfunction|Other stimulant abuse with stimulant-induced sexual dysfunction +C2874640|T048|AB|F15.182|ICD10CM|Other stimulant abuse with stimulant-induced sleep disorder|Other stimulant abuse with stimulant-induced sleep disorder +C2874640|T048|PT|F15.182|ICD10CM|Other stimulant abuse with stimulant-induced sleep disorder|Other stimulant abuse with stimulant-induced sleep disorder +C2874637|T048|AB|F15.188|ICD10CM|Other stimulant abuse with other stimulant-induced disorder|Other stimulant abuse with other stimulant-induced disorder +C2874637|T048|PT|F15.188|ICD10CM|Other stimulant abuse with other stimulant-induced disorder|Other stimulant abuse with other stimulant-induced disorder +C2874641|T048|AB|F15.19|ICD10CM|Other stimulant abuse with unsp stimulant-induced disorder|Other stimulant abuse with unsp stimulant-induced disorder +C2874641|T048|PT|F15.19|ICD10CM|Other stimulant abuse with unspecified stimulant-induced disorder|Other stimulant abuse with unspecified stimulant-induced disorder +C2874642|T048|AB|F15.2|ICD10CM|Other stimulant dependence|Other stimulant dependence +C2874642|T048|HT|F15.2|ICD10CM|Other stimulant dependence|Other stimulant dependence +C4236989|T048|ET|F15.20|ICD10CM|Amphetamine type substance use disorder, moderate|Amphetamine type substance use disorder, moderate +C4236990|T048|ET|F15.20|ICD10CM|Amphetamine type substance use disorder, severe|Amphetamine type substance use disorder, severe +C4237317|T048|ET|F15.20|ICD10CM|Other or unspecified stimulant use disorder, moderate|Other or unspecified stimulant use disorder, moderate +C4237318|T048|ET|F15.20|ICD10CM|Other or unspecified stimulant use disorder, severe|Other or unspecified stimulant use disorder, severe +C2874643|T048|AB|F15.20|ICD10CM|Other stimulant dependence, uncomplicated|Other stimulant dependence, uncomplicated +C2874643|T048|PT|F15.20|ICD10CM|Other stimulant dependence, uncomplicated|Other stimulant dependence, uncomplicated +C4509064|T048|ET|F15.21|ICD10CM|Amphetamine type substance use disorder, moderate, in early remission|Amphetamine type substance use disorder, moderate, in early remission +C4509065|T048|ET|F15.21|ICD10CM|Amphetamine type substance use disorder, moderate, in sustained remission|Amphetamine type substance use disorder, moderate, in sustained remission +C4509066|T048|ET|F15.21|ICD10CM|Amphetamine type substance use disorder, severe, in early remission|Amphetamine type substance use disorder, severe, in early remission +C4509067|T048|ET|F15.21|ICD10CM|Amphetamine type substance use disorder, severe, in sustained remission|Amphetamine type substance use disorder, severe, in sustained remission +C4481009|T048|ET|F15.21|ICD10CM|Other or unspecified stimulant use disorder, moderate, in early remission|Other or unspecified stimulant use disorder, moderate, in early remission +C4481010|T048|ET|F15.21|ICD10CM|Other or unspecified stimulant use disorder, moderate, in sustained remission|Other or unspecified stimulant use disorder, moderate, in sustained remission +C4481011|T048|ET|F15.21|ICD10CM|Other or unspecified stimulant use disorder, severe, in early remission|Other or unspecified stimulant use disorder, severe, in early remission +C4481012|T048|ET|F15.21|ICD10CM|Other or unspecified stimulant use disorder, severe, in sustained remission|Other or unspecified stimulant use disorder, severe, in sustained remission +C2874644|T048|AB|F15.21|ICD10CM|Other stimulant dependence, in remission|Other stimulant dependence, in remission +C2874644|T048|PT|F15.21|ICD10CM|Other stimulant dependence, in remission|Other stimulant dependence, in remission +C2874649|T048|AB|F15.22|ICD10CM|Other stimulant dependence with intoxication|Other stimulant dependence with intoxication +C2874649|T048|HT|F15.22|ICD10CM|Other stimulant dependence with intoxication|Other stimulant dependence with intoxication +C2874646|T048|AB|F15.220|ICD10CM|Other stimulant dependence with intoxication, uncomplicated|Other stimulant dependence with intoxication, uncomplicated +C2874646|T048|PT|F15.220|ICD10CM|Other stimulant dependence with intoxication, uncomplicated|Other stimulant dependence with intoxication, uncomplicated +C2874647|T048|AB|F15.221|ICD10CM|Other stimulant dependence with intoxication delirium|Other stimulant dependence with intoxication delirium +C2874647|T048|PT|F15.221|ICD10CM|Other stimulant dependence with intoxication delirium|Other stimulant dependence with intoxication delirium +C2874648|T048|AB|F15.222|ICD10CM|Oth stimulant dependence w intox w perceptual disturbance|Oth stimulant dependence w intox w perceptual disturbance +C2874648|T048|PT|F15.222|ICD10CM|Other stimulant dependence with intoxication with perceptual disturbance|Other stimulant dependence with intoxication with perceptual disturbance +C2874649|T048|AB|F15.229|ICD10CM|Other stimulant dependence with intoxication, unspecified|Other stimulant dependence with intoxication, unspecified +C2874649|T048|PT|F15.229|ICD10CM|Other stimulant dependence with intoxication, unspecified|Other stimulant dependence with intoxication, unspecified +C4236987|T048|ET|F15.23|ICD10CM|Amphetamine or other stimulant withdrawal|Amphetamine or other stimulant withdrawal +C2874650|T048|AB|F15.23|ICD10CM|Other stimulant dependence with withdrawal|Other stimulant dependence with withdrawal +C2874650|T048|PT|F15.23|ICD10CM|Other stimulant dependence with withdrawal|Other stimulant dependence with withdrawal +C2874651|T048|AB|F15.24|ICD10CM|Oth stimulant dependence w stimulant-induced mood disorder|Oth stimulant dependence w stimulant-induced mood disorder +C2874651|T048|PT|F15.24|ICD10CM|Other stimulant dependence with stimulant-induced mood disorder|Other stimulant dependence with stimulant-induced mood disorder +C2874655|T048|AB|F15.25|ICD10CM|Oth stimulant dependence w stim-induce psychotic disorder|Oth stimulant dependence w stim-induce psychotic disorder +C2874655|T048|HT|F15.25|ICD10CM|Other stimulant dependence with stimulant-induced psychotic disorder|Other stimulant dependence with stimulant-induced psychotic disorder +C2874653|T048|AB|F15.250|ICD10CM|Oth stim depend w stim-induce psych disorder w delusions|Oth stim depend w stim-induce psych disorder w delusions +C2874653|T048|PT|F15.250|ICD10CM|Other stimulant dependence with stimulant-induced psychotic disorder with delusions|Other stimulant dependence with stimulant-induced psychotic disorder with delusions +C2874654|T048|AB|F15.251|ICD10CM|Oth stimulant depend w stim-induce psych disorder w hallucin|Oth stimulant depend w stim-induce psych disorder w hallucin +C2874654|T048|PT|F15.251|ICD10CM|Other stimulant dependence with stimulant-induced psychotic disorder with hallucinations|Other stimulant dependence with stimulant-induced psychotic disorder with hallucinations +C2874655|T048|AB|F15.259|ICD10CM|Oth stimulant depend w stim-induce psychotic disorder, unsp|Oth stimulant depend w stim-induce psychotic disorder, unsp +C2874655|T048|PT|F15.259|ICD10CM|Other stimulant dependence with stimulant-induced psychotic disorder, unspecified|Other stimulant dependence with stimulant-induced psychotic disorder, unspecified +C2874656|T048|AB|F15.28|ICD10CM|Oth stimulant dependence with oth stimulant-induced disorder|Oth stimulant dependence with oth stimulant-induced disorder +C2874656|T048|HT|F15.28|ICD10CM|Other stimulant dependence with other stimulant-induced disorder|Other stimulant dependence with other stimulant-induced disorder +C2874657|T048|AB|F15.280|ICD10CM|Oth stimulant dependence w stim-induce anxiety disorder|Oth stimulant dependence w stim-induce anxiety disorder +C2874657|T048|PT|F15.280|ICD10CM|Other stimulant dependence with stimulant-induced anxiety disorder|Other stimulant dependence with stimulant-induced anxiety disorder +C2874658|T048|AB|F15.281|ICD10CM|Oth stimulant dependence w stim-induce sexual dysfunction|Oth stimulant dependence w stim-induce sexual dysfunction +C2874658|T048|PT|F15.281|ICD10CM|Other stimulant dependence with stimulant-induced sexual dysfunction|Other stimulant dependence with stimulant-induced sexual dysfunction +C2874659|T048|AB|F15.282|ICD10CM|Oth stimulant dependence w stimulant-induced sleep disorder|Oth stimulant dependence w stimulant-induced sleep disorder +C2874659|T048|PT|F15.282|ICD10CM|Other stimulant dependence with stimulant-induced sleep disorder|Other stimulant dependence with stimulant-induced sleep disorder +C2874656|T048|AB|F15.288|ICD10CM|Oth stimulant dependence with oth stimulant-induced disorder|Oth stimulant dependence with oth stimulant-induced disorder +C2874656|T048|PT|F15.288|ICD10CM|Other stimulant dependence with other stimulant-induced disorder|Other stimulant dependence with other stimulant-induced disorder +C2874660|T048|AB|F15.29|ICD10CM|Oth stimulant dependence w unsp stimulant-induced disorder|Oth stimulant dependence w unsp stimulant-induced disorder +C2874660|T048|PT|F15.29|ICD10CM|Other stimulant dependence with unspecified stimulant-induced disorder|Other stimulant dependence with unspecified stimulant-induced disorder +C0349145|T048|PT|F15.3|ICD10AE|Mental and behavioral disorders due to use of other stimulants including caffeine, withdrawal state|Mental and behavioral disorders due to use of other stimulants including caffeine, withdrawal state +C0349145|T048|PT|F15.3|ICD10|Mental and behavioural disorders due to use of other stimulants including caffeine, withdrawal state|Mental and behavioural disorders due to use of other stimulants including caffeine, withdrawal state +C0349148|T048|PT|F15.6|ICD10AE|Mental and behavioral disorders due to use of other stimulants inclduing caffeine, amnesic syndrome|Mental and behavioral disorders due to use of other stimulants inclduing caffeine, amnesic syndrome +C0349148|T048|PT|F15.6|ICD10|Mental and behavioural disorders due to use of other stimulants inclduing caffeine, amnesic syndrome|Mental and behavioural disorders due to use of other stimulants inclduing caffeine, amnesic syndrome +C2874661|T048|AB|F15.9|ICD10CM|Other stimulant use, unspecified|Other stimulant use, unspecified +C2874661|T048|HT|F15.9|ICD10CM|Other stimulant use, unspecified|Other stimulant use, unspecified +C2874662|T048|AB|F15.90|ICD10CM|Other stimulant use, unspecified, uncomplicated|Other stimulant use, unspecified, uncomplicated +C2874662|T048|PT|F15.90|ICD10CM|Other stimulant use, unspecified, uncomplicated|Other stimulant use, unspecified, uncomplicated +C2874663|T048|AB|F15.92|ICD10CM|Other stimulant use, unspecified with intoxication|Other stimulant use, unspecified with intoxication +C2874663|T048|HT|F15.92|ICD10CM|Other stimulant use, unspecified with intoxication|Other stimulant use, unspecified with intoxication +C2874664|T048|AB|F15.920|ICD10CM|Other stimulant use, unsp with intoxication, uncomplicated|Other stimulant use, unsp with intoxication, uncomplicated +C2874664|T048|PT|F15.920|ICD10CM|Other stimulant use, unspecified with intoxication, uncomplicated|Other stimulant use, unspecified with intoxication, uncomplicated +C4236965|T048|ET|F15.921|ICD10CM|Amphetamine or other stimulant-induced delirium|Amphetamine or other stimulant-induced delirium +C2874665|T048|AB|F15.921|ICD10CM|Other stimulant use, unspecified with intoxication delirium|Other stimulant use, unspecified with intoxication delirium +C2874665|T048|PT|F15.921|ICD10CM|Other stimulant use, unspecified with intoxication delirium|Other stimulant use, unspecified with intoxication delirium +C2874666|T048|AB|F15.922|ICD10CM|Oth stimulant use, unsp w intox w perceptual disturbance|Oth stimulant use, unsp w intox w perceptual disturbance +C2874666|T048|PT|F15.922|ICD10CM|Other stimulant use, unspecified with intoxication with perceptual disturbance|Other stimulant use, unspecified with intoxication with perceptual disturbance +C0006647|T048|ET|F15.929|ICD10CM|Caffeine intoxication|Caffeine intoxication +C2874667|T048|AB|F15.929|ICD10CM|Other stimulant use, unsp with intoxication, unspecified|Other stimulant use, unsp with intoxication, unspecified +C2874667|T048|PT|F15.929|ICD10CM|Other stimulant use, unspecified with intoxication, unspecified|Other stimulant use, unspecified with intoxication, unspecified +C0521652|T048|ET|F15.93|ICD10CM|Caffeine withdrawal|Caffeine withdrawal +C2874668|T048|AB|F15.93|ICD10CM|Other stimulant use, unspecified with withdrawal|Other stimulant use, unspecified with withdrawal +C2874668|T048|PT|F15.93|ICD10CM|Other stimulant use, unspecified with withdrawal|Other stimulant use, unspecified with withdrawal +C4268258|T048|ET|F15.94|ICD10CM|Amphetamine or other stimulant-induced bipolar or related disorder, without use disorder|Amphetamine or other stimulant-induced bipolar or related disorder, without use disorder +C4236968|T048|ET|F15.94|ICD10CM|Amphetamine or other stimulant-induced depressive disorder, without use disorder|Amphetamine or other stimulant-induced depressive disorder, without use disorder +C2874669|T048|AB|F15.94|ICD10CM|Oth stimulant use, unsp with stimulant-induced mood disorder|Oth stimulant use, unsp with stimulant-induced mood disorder +C2874669|T048|PT|F15.94|ICD10CM|Other stimulant use, unspecified with stimulant-induced mood disorder|Other stimulant use, unspecified with stimulant-induced mood disorder +C2874670|T048|AB|F15.95|ICD10CM|Oth stimulant use, unsp w stim-induce psychotic disorder|Oth stimulant use, unsp w stim-induce psychotic disorder +C2874670|T048|HT|F15.95|ICD10CM|Other stimulant use, unspecified with stimulant-induced psychotic disorder|Other stimulant use, unspecified with stimulant-induced psychotic disorder +C2874671|T048|AB|F15.950|ICD10CM|Oth stim use, unsp w stim-induce psych disorder w delusions|Oth stim use, unsp w stim-induce psych disorder w delusions +C2874671|T048|PT|F15.950|ICD10CM|Other stimulant use, unspecified with stimulant-induced psychotic disorder with delusions|Other stimulant use, unspecified with stimulant-induced psychotic disorder with delusions +C2874672|T048|AB|F15.951|ICD10CM|Oth stim use, unsp w stim-induce psych disorder w hallucin|Oth stim use, unsp w stim-induce psych disorder w hallucin +C2874672|T048|PT|F15.951|ICD10CM|Other stimulant use, unspecified with stimulant-induced psychotic disorder with hallucinations|Other stimulant use, unspecified with stimulant-induced psychotic disorder with hallucinations +C4236974|T048|ET|F15.959|ICD10CM|Amphetamine or other stimulant-induced psychotic disorder, without use disorder|Amphetamine or other stimulant-induced psychotic disorder, without use disorder +C2874673|T048|AB|F15.959|ICD10CM|Oth stimulant use, unsp w stim-induce psych disorder, unsp|Oth stimulant use, unsp w stim-induce psych disorder, unsp +C2874673|T048|PT|F15.959|ICD10CM|Other stimulant use, unspecified with stimulant-induced psychotic disorder, unspecified|Other stimulant use, unspecified with stimulant-induced psychotic disorder, unspecified +C2874674|T048|AB|F15.98|ICD10CM|Oth stimulant use, unsp with oth stimulant-induced disorder|Oth stimulant use, unsp with oth stimulant-induced disorder +C2874674|T048|HT|F15.98|ICD10CM|Other stimulant use, unspecified with other stimulant-induced disorder|Other stimulant use, unspecified with other stimulant-induced disorder +C4236961|T048|ET|F15.980|ICD10CM|Amphetamine or other stimulant-induced anxiety disorder, without use disorder|Amphetamine or other stimulant-induced anxiety disorder, without use disorder +C4237013|T048|ET|F15.980|ICD10CM|Caffeine induced anxiety disorder, without use disorder|Caffeine induced anxiety disorder, without use disorder +C2874675|T048|AB|F15.980|ICD10CM|Oth stimulant use, unsp w stimulant-induced anxiety disorder|Oth stimulant use, unsp w stimulant-induced anxiety disorder +C2874675|T048|PT|F15.980|ICD10CM|Other stimulant use, unspecified with stimulant-induced anxiety disorder|Other stimulant use, unspecified with stimulant-induced anxiety disorder +C4236977|T048|ET|F15.981|ICD10CM|Amphetamine or other stimulant-induced sexual dysfunction, without use disorder|Amphetamine or other stimulant-induced sexual dysfunction, without use disorder +C2874676|T048|AB|F15.981|ICD10CM|Oth stimulant use, unsp w stim-induce sexual dysfunction|Oth stimulant use, unsp w stim-induce sexual dysfunction +C2874676|T048|PT|F15.981|ICD10CM|Other stimulant use, unspecified with stimulant-induced sexual dysfunction|Other stimulant use, unspecified with stimulant-induced sexual dysfunction +C4236980|T048|ET|F15.982|ICD10CM|Amphetamine or other stimulant-induced sleep disorder, without use disorder|Amphetamine or other stimulant-induced sleep disorder, without use disorder +C4237016|T048|ET|F15.982|ICD10CM|Caffeine induced sleep disorder, without use disorder|Caffeine induced sleep disorder, without use disorder +C2874677|T048|AB|F15.982|ICD10CM|Oth stimulant use, unsp w stimulant-induced sleep disorder|Oth stimulant use, unsp w stimulant-induced sleep disorder +C2874677|T048|PT|F15.982|ICD10CM|Other stimulant use, unspecified with stimulant-induced sleep disorder|Other stimulant use, unspecified with stimulant-induced sleep disorder +C2874674|T048|AB|F15.988|ICD10CM|Oth stimulant use, unsp with oth stimulant-induced disorder|Oth stimulant use, unsp with oth stimulant-induced disorder +C2874674|T048|PT|F15.988|ICD10CM|Other stimulant use, unspecified with other stimulant-induced disorder|Other stimulant use, unspecified with other stimulant-induced disorder +C2874678|T048|AB|F15.99|ICD10CM|Oth stimulant use, unsp with unsp stimulant-induced disorder|Oth stimulant use, unsp with unsp stimulant-induced disorder +C2874678|T048|PT|F15.99|ICD10CM|Other stimulant use, unspecified with unspecified stimulant-induced disorder|Other stimulant use, unspecified with unspecified stimulant-induced disorder +C4284120|T048|ET|F16|ICD10CM|ecstasy|ecstasy +C5200922|T048|AB|F16|ICD10CM|Hallucinogen related disorders|Hallucinogen related disorders +C5200922|T048|HT|F16|ICD10CM|Hallucinogen related disorders|Hallucinogen related disorders +C0349161|T048|HT|F16|ICD10AE|Mental and behavioral disorders due to use of hallucinogens|Mental and behavioral disorders due to use of hallucinogens +C0349161|T048|HT|F16|ICD10|Mental and behavioural disorders due to use of hallucinogens|Mental and behavioural disorders due to use of hallucinogens +C2919094|T048|ET|F16|ICD10CM|PCP|PCP +C2919094|T048|ET|F16|ICD10CM|phencyclidine|phencyclidine +C0349153|T048|PT|F16.0|ICD10AE|Mental and behavioral disorders due to use of hallucinogens, acute intoxication|Mental and behavioral disorders due to use of hallucinogens, acute intoxication +C0349153|T048|PT|F16.0|ICD10|Mental and behavioural disorders due to use of hallucinogens, acute intoxication|Mental and behavioural disorders due to use of hallucinogens, acute intoxication +C0018526|T048|HT|F16.1|ICD10CM|Hallucinogen abuse|Hallucinogen abuse +C0018526|T048|AB|F16.1|ICD10CM|Hallucinogen abuse|Hallucinogen abuse +C0349154|T048|PT|F16.1|ICD10AE|Mental and behavioral disorders due to use of hallucinogens, harmful use|Mental and behavioral disorders due to use of hallucinogens, harmful use +C0349154|T048|PT|F16.1|ICD10|Mental and behavioural disorders due to use of hallucinogens, harmful use|Mental and behavioural disorders due to use of hallucinogens, harmful use +C2874679|T048|PT|F16.10|ICD10CM|Hallucinogen abuse, uncomplicated|Hallucinogen abuse, uncomplicated +C2874679|T048|AB|F16.10|ICD10CM|Hallucinogen abuse, uncomplicated|Hallucinogen abuse, uncomplicated +C4237299|T048|ET|F16.10|ICD10CM|Other hallucinogen use disorder, mild|Other hallucinogen use disorder, mild +C4237358|T048|ET|F16.10|ICD10CM|Phencyclidine use disorder, mild|Phencyclidine use disorder, mild +C0154525|T048|PT|F16.11|ICD10CM|Hallucinogen abuse, in remission|Hallucinogen abuse, in remission +C0154525|T048|AB|F16.11|ICD10CM|Hallucinogen abuse, in remission|Hallucinogen abuse, in remission +C4509068|T048|ET|F16.11|ICD10CM|Other hallucinogen use disorder, mild, in early remission|Other hallucinogen use disorder, mild, in early remission +C4509069|T048|ET|F16.11|ICD10CM|Other hallucinogen use disorder, mild, in sustained remission|Other hallucinogen use disorder, mild, in sustained remission +C4509070|T048|ET|F16.11|ICD10CM|Phencyclidine use disorder, mild, in early remission|Phencyclidine use disorder, mild, in early remission +C4509071|T048|ET|F16.11|ICD10CM|Phencyclidine use disorder, mild, in sustained remission|Phencyclidine use disorder, mild, in sustained remission +C2874683|T048|HT|F16.12|ICD10CM|Hallucinogen abuse with intoxication|Hallucinogen abuse with intoxication +C2874683|T048|AB|F16.12|ICD10CM|Hallucinogen abuse with intoxication|Hallucinogen abuse with intoxication +C2874680|T048|AB|F16.120|ICD10CM|Hallucinogen abuse with intoxication, uncomplicated|Hallucinogen abuse with intoxication, uncomplicated +C2874680|T048|PT|F16.120|ICD10CM|Hallucinogen abuse with intoxication, uncomplicated|Hallucinogen abuse with intoxication, uncomplicated +C2874681|T048|PT|F16.121|ICD10CM|Hallucinogen abuse with intoxication with delirium|Hallucinogen abuse with intoxication with delirium +C2874681|T048|AB|F16.121|ICD10CM|Hallucinogen abuse with intoxication with delirium|Hallucinogen abuse with intoxication with delirium +C2874682|T048|AB|F16.122|ICD10CM|Hallucinogen abuse w intoxication w perceptual disturbance|Hallucinogen abuse w intoxication w perceptual disturbance +C2874682|T048|PT|F16.122|ICD10CM|Hallucinogen abuse with intoxication with perceptual disturbance|Hallucinogen abuse with intoxication with perceptual disturbance +C2874683|T048|AB|F16.129|ICD10CM|Hallucinogen abuse with intoxication, unspecified|Hallucinogen abuse with intoxication, unspecified +C2874683|T048|PT|F16.129|ICD10CM|Hallucinogen abuse with intoxication, unspecified|Hallucinogen abuse with intoxication, unspecified +C2874684|T048|PT|F16.14|ICD10CM|Hallucinogen abuse with hallucinogen-induced mood disorder|Hallucinogen abuse with hallucinogen-induced mood disorder +C2874684|T048|AB|F16.14|ICD10CM|Hallucinogen abuse with hallucinogen-induced mood disorder|Hallucinogen abuse with hallucinogen-induced mood disorder +C4268261|T048|ET|F16.14|ICD10CM|Other hallucinogen use disorder, mild, with other hallucinogen induced bipolar or related disorder|Other hallucinogen use disorder, mild, with other hallucinogen induced bipolar or related disorder +C4268262|T048|ET|F16.14|ICD10CM|Other hallucinogen use disorder, mild, with other hallucinogen induced depressive disorder|Other hallucinogen use disorder, mild, with other hallucinogen induced depressive disorder +C4268263|T048|ET|F16.14|ICD10CM|Phencyclidine use disorder, mild, with phencyclidine induced bipolar or related disorder|Phencyclidine use disorder, mild, with phencyclidine induced bipolar or related disorder +C4268264|T048|ET|F16.14|ICD10CM|Phencyclidine use disorder, mild, with phencyclidine induced depressive disorder|Phencyclidine use disorder, mild, with phencyclidine induced depressive disorder +C2874688|T048|AB|F16.15|ICD10CM|Hallucinogen abuse w hallucinogen-induced psychotic disorder|Hallucinogen abuse w hallucinogen-induced psychotic disorder +C2874688|T048|HT|F16.15|ICD10CM|Hallucinogen abuse with hallucinogen-induced psychotic disorder|Hallucinogen abuse with hallucinogen-induced psychotic disorder +C2874686|T048|AB|F16.150|ICD10CM|Hallucinogen abuse w psychotic disorder w delusions|Hallucinogen abuse w psychotic disorder w delusions +C2874686|T048|PT|F16.150|ICD10CM|Hallucinogen abuse with hallucinogen-induced psychotic disorder with delusions|Hallucinogen abuse with hallucinogen-induced psychotic disorder with delusions +C2874687|T048|AB|F16.151|ICD10CM|Hallucinogen abuse w psychotic disorder w hallucinations|Hallucinogen abuse w psychotic disorder w hallucinations +C2874687|T048|PT|F16.151|ICD10CM|Hallucinogen abuse with hallucinogen-induced psychotic disorder with hallucinations|Hallucinogen abuse with hallucinogen-induced psychotic disorder with hallucinations +C2874688|T048|AB|F16.159|ICD10CM|Hallucinogen abuse w psychotic disorder, unsp|Hallucinogen abuse w psychotic disorder, unsp +C2874688|T048|PT|F16.159|ICD10CM|Hallucinogen abuse with hallucinogen-induced psychotic disorder, unspecified|Hallucinogen abuse with hallucinogen-induced psychotic disorder, unspecified +C2874689|T048|HT|F16.18|ICD10CM|Hallucinogen abuse with other hallucinogen-induced disorder|Hallucinogen abuse with other hallucinogen-induced disorder +C2874689|T048|AB|F16.18|ICD10CM|Hallucinogen abuse with other hallucinogen-induced disorder|Hallucinogen abuse with other hallucinogen-induced disorder +C2874690|T048|AB|F16.180|ICD10CM|Hallucinogen abuse w hallucinogen-induced anxiety disorder|Hallucinogen abuse w hallucinogen-induced anxiety disorder +C2874690|T048|PT|F16.180|ICD10CM|Hallucinogen abuse with hallucinogen-induced anxiety disorder|Hallucinogen abuse with hallucinogen-induced anxiety disorder +C2874691|T048|AB|F16.183|ICD10CM|Hallucign abuse w hallucign persisting perception disorder|Hallucign abuse w hallucign persisting perception disorder +C2874691|T048|PT|F16.183|ICD10CM|Hallucinogen abuse with hallucinogen persisting perception disorder (flashbacks)|Hallucinogen abuse with hallucinogen persisting perception disorder (flashbacks) +C2874689|T048|AB|F16.188|ICD10CM|Hallucinogen abuse with other hallucinogen-induced disorder|Hallucinogen abuse with other hallucinogen-induced disorder +C2874689|T048|PT|F16.188|ICD10CM|Hallucinogen abuse with other hallucinogen-induced disorder|Hallucinogen abuse with other hallucinogen-induced disorder +C2874692|T048|AB|F16.19|ICD10CM|Hallucinogen abuse with unsp hallucinogen-induced disorder|Hallucinogen abuse with unsp hallucinogen-induced disorder +C2874692|T048|PT|F16.19|ICD10CM|Hallucinogen abuse with unspecified hallucinogen-induced disorder|Hallucinogen abuse with unspecified hallucinogen-induced disorder +C0018528|T048|HT|F16.2|ICD10CM|Hallucinogen dependence|Hallucinogen dependence +C0018528|T048|AB|F16.2|ICD10CM|Hallucinogen dependence|Hallucinogen dependence +C0494384|T048|PT|F16.2|ICD10AE|Mental and behavioral disorders due to use of hallucinogens, dependence syndrome|Mental and behavioral disorders due to use of hallucinogens, dependence syndrome +C0494384|T048|PT|F16.2|ICD10|Mental and behavioural disorders due to use of hallucinogens, dependence syndrome|Mental and behavioural disorders due to use of hallucinogens, dependence syndrome +C2874693|T048|AB|F16.20|ICD10CM|Hallucinogen dependence, uncomplicated|Hallucinogen dependence, uncomplicated +C2874693|T048|PT|F16.20|ICD10CM|Hallucinogen dependence, uncomplicated|Hallucinogen dependence, uncomplicated +C4237300|T048|ET|F16.20|ICD10CM|Other hallucinogen use disorder, moderate|Other hallucinogen use disorder, moderate +C4237301|T048|ET|F16.20|ICD10CM|Other hallucinogen use disorder, severe|Other hallucinogen use disorder, severe +C4237359|T048|ET|F16.20|ICD10CM|Phencyclidine use disorder, moderate|Phencyclidine use disorder, moderate +C4237360|T048|ET|F16.20|ICD10CM|Phencyclidine use disorder, severe|Phencyclidine use disorder, severe +C0154497|T047|PT|F16.21|ICD10CM|Hallucinogen dependence, in remission|Hallucinogen dependence, in remission +C0154497|T047|AB|F16.21|ICD10CM|Hallucinogen dependence, in remission|Hallucinogen dependence, in remission +C4509072|T048|ET|F16.21|ICD10CM|Other hallucinogen use disorder, moderate, in early remission|Other hallucinogen use disorder, moderate, in early remission +C4509073|T048|ET|F16.21|ICD10CM|Other hallucinogen use disorder, moderate, in sustained remission|Other hallucinogen use disorder, moderate, in sustained remission +C4509074|T048|ET|F16.21|ICD10CM|Other hallucinogen use disorder, severe, in early remission|Other hallucinogen use disorder, severe, in early remission +C4509075|T048|ET|F16.21|ICD10CM|Other hallucinogen use disorder, severe, in sustained remission|Other hallucinogen use disorder, severe, in sustained remission +C4481027|T048|ET|F16.21|ICD10CM|Phencyclidine use disorder, moderate, in early remission|Phencyclidine use disorder, moderate, in early remission +C4481028|T048|ET|F16.21|ICD10CM|Phencyclidine use disorder, moderate, in sustained remission|Phencyclidine use disorder, moderate, in sustained remission +C4481029|T048|ET|F16.21|ICD10CM|Phencyclidine use disorder, severe, in early remission|Phencyclidine use disorder, severe, in early remission +C4481030|T048|ET|F16.21|ICD10CM|Phencyclidine use disorder, severe, in sustained remission|Phencyclidine use disorder, severe, in sustained remission +C2874697|T048|HT|F16.22|ICD10CM|Hallucinogen dependence with intoxication|Hallucinogen dependence with intoxication +C2874697|T048|AB|F16.22|ICD10CM|Hallucinogen dependence with intoxication|Hallucinogen dependence with intoxication +C2874695|T048|AB|F16.220|ICD10CM|Hallucinogen dependence with intoxication, uncomplicated|Hallucinogen dependence with intoxication, uncomplicated +C2874695|T048|PT|F16.220|ICD10CM|Hallucinogen dependence with intoxication, uncomplicated|Hallucinogen dependence with intoxication, uncomplicated +C2874696|T048|PT|F16.221|ICD10CM|Hallucinogen dependence with intoxication with delirium|Hallucinogen dependence with intoxication with delirium +C2874696|T048|AB|F16.221|ICD10CM|Hallucinogen dependence with intoxication with delirium|Hallucinogen dependence with intoxication with delirium +C2874697|T048|AB|F16.229|ICD10CM|Hallucinogen dependence with intoxication, unspecified|Hallucinogen dependence with intoxication, unspecified +C2874697|T048|PT|F16.229|ICD10CM|Hallucinogen dependence with intoxication, unspecified|Hallucinogen dependence with intoxication, unspecified +C2874698|T048|AB|F16.24|ICD10CM|Hallucinogen dependence w hallucinogen-induced mood disorder|Hallucinogen dependence w hallucinogen-induced mood disorder +C2874698|T048|PT|F16.24|ICD10CM|Hallucinogen dependence with hallucinogen-induced mood disorder|Hallucinogen dependence with hallucinogen-induced mood disorder +C4268266|T048|ET|F16.24|ICD10CM|Other hallucinogen use disorder, moderate, with other hallucinogen induced depressive disorder|Other hallucinogen use disorder, moderate, with other hallucinogen induced depressive disorder +C4268267|T048|ET|F16.24|ICD10CM|Other hallucinogen use disorder, severe, with other hallucinogen-induced bipolar or related disorder|Other hallucinogen use disorder, severe, with other hallucinogen-induced bipolar or related disorder +C4268268|T048|ET|F16.24|ICD10CM|Other hallucinogen use disorder, severe, with other hallucinogen-induced depressive disorder|Other hallucinogen use disorder, severe, with other hallucinogen-induced depressive disorder +C4268269|T048|ET|F16.24|ICD10CM|Phencyclidine use disorder, moderate, with phencyclidine induced bipolar or related disorder|Phencyclidine use disorder, moderate, with phencyclidine induced bipolar or related disorder +C4268270|T048|ET|F16.24|ICD10CM|Phencyclidine use disorder, moderate, with phencyclidine induced depressive disorder|Phencyclidine use disorder, moderate, with phencyclidine induced depressive disorder +C4268271|T048|ET|F16.24|ICD10CM|Phencyclidine use disorder, severe, with phencyclidine induced bipolar or related disorder|Phencyclidine use disorder, severe, with phencyclidine induced bipolar or related disorder +C4268272|T048|ET|F16.24|ICD10CM|Phencyclidine use disorder, severe, with phencyclidine-induced depressive disorder|Phencyclidine use disorder, severe, with phencyclidine-induced depressive disorder +C2874702|T048|AB|F16.25|ICD10CM|Hallucinogen dependence w psychotic disorder|Hallucinogen dependence w psychotic disorder +C2874702|T048|HT|F16.25|ICD10CM|Hallucinogen dependence with hallucinogen-induced psychotic disorder|Hallucinogen dependence with hallucinogen-induced psychotic disorder +C2874700|T048|AB|F16.250|ICD10CM|Hallucinogen dependence w psychotic disorder w delusions|Hallucinogen dependence w psychotic disorder w delusions +C2874700|T048|PT|F16.250|ICD10CM|Hallucinogen dependence with hallucinogen-induced psychotic disorder with delusions|Hallucinogen dependence with hallucinogen-induced psychotic disorder with delusions +C2874701|T048|AB|F16.251|ICD10CM|Hallucinogen dependence w psychotic disorder w hallucin|Hallucinogen dependence w psychotic disorder w hallucin +C2874701|T048|PT|F16.251|ICD10CM|Hallucinogen dependence with hallucinogen-induced psychotic disorder with hallucinations|Hallucinogen dependence with hallucinogen-induced psychotic disorder with hallucinations +C2874702|T048|AB|F16.259|ICD10CM|Hallucinogen dependence w psychotic disorder, unsp|Hallucinogen dependence w psychotic disorder, unsp +C2874702|T048|PT|F16.259|ICD10CM|Hallucinogen dependence with hallucinogen-induced psychotic disorder, unspecified|Hallucinogen dependence with hallucinogen-induced psychotic disorder, unspecified +C2874703|T048|AB|F16.28|ICD10CM|Hallucinogen dependence w oth hallucinogen-induced disorder|Hallucinogen dependence w oth hallucinogen-induced disorder +C2874703|T048|HT|F16.28|ICD10CM|Hallucinogen dependence with other hallucinogen-induced disorder|Hallucinogen dependence with other hallucinogen-induced disorder +C2874704|T048|AB|F16.280|ICD10CM|Hallucinogen dependence w anxiety disorder|Hallucinogen dependence w anxiety disorder +C2874704|T048|PT|F16.280|ICD10CM|Hallucinogen dependence with hallucinogen-induced anxiety disorder|Hallucinogen dependence with hallucinogen-induced anxiety disorder +C2874705|T048|AB|F16.283|ICD10CM|Hallucign depend w hallucign persisting perception disorder|Hallucign depend w hallucign persisting perception disorder +C2874705|T048|PT|F16.283|ICD10CM|Hallucinogen dependence with hallucinogen persisting perception disorder (flashbacks)|Hallucinogen dependence with hallucinogen persisting perception disorder (flashbacks) +C2874703|T048|AB|F16.288|ICD10CM|Hallucinogen dependence w oth hallucinogen-induced disorder|Hallucinogen dependence w oth hallucinogen-induced disorder +C2874703|T048|PT|F16.288|ICD10CM|Hallucinogen dependence with other hallucinogen-induced disorder|Hallucinogen dependence with other hallucinogen-induced disorder +C2874706|T048|AB|F16.29|ICD10CM|Hallucinogen dependence w unsp hallucinogen-induced disorder|Hallucinogen dependence w unsp hallucinogen-induced disorder +C2874706|T048|PT|F16.29|ICD10CM|Hallucinogen dependence with unspecified hallucinogen-induced disorder|Hallucinogen dependence with unspecified hallucinogen-induced disorder +C0349155|T048|PT|F16.3|ICD10AE|Mental and behavioral disorders due to use of hallucinogens, withdrawal state|Mental and behavioral disorders due to use of hallucinogens, withdrawal state +C0349155|T048|PT|F16.3|ICD10|Mental and behavioural disorders due to use of hallucinogens, withdrawal state|Mental and behavioural disorders due to use of hallucinogens, withdrawal state +C0349156|T048|PT|F16.4|ICD10AE|Mental and behavioral disorders due to use of hallucinogens, withdrawal state with delirium|Mental and behavioral disorders due to use of hallucinogens, withdrawal state with delirium +C0349156|T048|PT|F16.4|ICD10|Mental and behavioural disorders due to use of hallucinogens, withdrawal state with delirium|Mental and behavioural disorders due to use of hallucinogens, withdrawal state with delirium +C0349157|T048|PT|F16.5|ICD10AE|Mental and behavioral disorders due to use of hallucinogens, psychotic disorder|Mental and behavioral disorders due to use of hallucinogens, psychotic disorder +C0349157|T048|PT|F16.5|ICD10|Mental and behavioural disorders due to use of hallucinogens, psychotic disorder|Mental and behavioural disorders due to use of hallucinogens, psychotic disorder +C0349158|T048|PT|F16.6|ICD10AE|Mental and behavioral disorders due to use of hallucinogens, amnesic syndrome|Mental and behavioral disorders due to use of hallucinogens, amnesic syndrome +C0349158|T048|PT|F16.6|ICD10|Mental and behavioural disorders due to use of hallucinogens, amnesic syndrome|Mental and behavioural disorders due to use of hallucinogens, amnesic syndrome +C0349160|T048|PT|F16.8|ICD10AE|Mental and behavioral disorders due to use of hallucinogens, other mental and behavioral disorders|Mental and behavioral disorders due to use of hallucinogens, other mental and behavioral disorders +C0349160|T048|PT|F16.8|ICD10|Mental and behavioural disorders due to use of hallucinogens, other mental and behavioural disorders|Mental and behavioural disorders due to use of hallucinogens, other mental and behavioural disorders +C2874707|T048|AB|F16.9|ICD10CM|Hallucinogen use, unspecified|Hallucinogen use, unspecified +C2874707|T048|HT|F16.9|ICD10CM|Hallucinogen use, unspecified|Hallucinogen use, unspecified +C2874708|T048|AB|F16.90|ICD10CM|Hallucinogen use, unspecified, uncomplicated|Hallucinogen use, unspecified, uncomplicated +C2874708|T048|PT|F16.90|ICD10CM|Hallucinogen use, unspecified, uncomplicated|Hallucinogen use, unspecified, uncomplicated +C2874711|T048|AB|F16.92|ICD10CM|Hallucinogen use, unspecified with intoxication|Hallucinogen use, unspecified with intoxication +C2874711|T048|HT|F16.92|ICD10CM|Hallucinogen use, unspecified with intoxication|Hallucinogen use, unspecified with intoxication +C2874709|T048|AB|F16.920|ICD10CM|Hallucinogen use, unsp with intoxication, uncomplicated|Hallucinogen use, unsp with intoxication, uncomplicated +C2874709|T048|PT|F16.920|ICD10CM|Hallucinogen use, unspecified with intoxication, uncomplicated|Hallucinogen use, unspecified with intoxication, uncomplicated +C2874710|T048|AB|F16.921|ICD10CM|Hallucinogen use, unsp with intoxication with delirium|Hallucinogen use, unsp with intoxication with delirium +C2874710|T048|PT|F16.921|ICD10CM|Hallucinogen use, unspecified with intoxication with delirium|Hallucinogen use, unspecified with intoxication with delirium +C4237548|T048|ET|F16.921|ICD10CM|Other hallucinogen intoxication delirium|Other hallucinogen intoxication delirium +C2874711|T048|AB|F16.929|ICD10CM|Hallucinogen use, unspecified with intoxication, unspecified|Hallucinogen use, unspecified with intoxication, unspecified +C2874711|T048|PT|F16.929|ICD10CM|Hallucinogen use, unspecified with intoxication, unspecified|Hallucinogen use, unspecified with intoxication, unspecified +C2874712|T048|AB|F16.94|ICD10CM|Hallucinogen use, unsp w hallucinogen-induced mood disorder|Hallucinogen use, unsp w hallucinogen-induced mood disorder +C2874712|T048|PT|F16.94|ICD10CM|Hallucinogen use, unspecified with hallucinogen-induced mood disorder|Hallucinogen use, unspecified with hallucinogen-induced mood disorder +C4268273|T048|ET|F16.94|ICD10CM|Other hallucinogen induced bipolar or related disorder, without use disorder|Other hallucinogen induced bipolar or related disorder, without use disorder +C4237310|T048|ET|F16.94|ICD10CM|Other hallucinogen induced depressive disorder, without use disorder|Other hallucinogen induced depressive disorder, without use disorder +C4268274|T048|ET|F16.94|ICD10CM|Phencyclidine induced bipolar or related disorder, without use disorder|Phencyclidine induced bipolar or related disorder, without use disorder +C4237369|T048|ET|F16.94|ICD10CM|Phencyclidine induced depressive disorder, without use disorder|Phencyclidine induced depressive disorder, without use disorder +C2874713|T048|AB|F16.95|ICD10CM|Hallucinogen use, unsp w psychotic disorder|Hallucinogen use, unsp w psychotic disorder +C2874713|T048|HT|F16.95|ICD10CM|Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder|Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder +C2874714|T048|AB|F16.950|ICD10CM|Hallucinogen use, unsp w psychotic disorder w delusions|Hallucinogen use, unsp w psychotic disorder w delusions +C2874714|T048|PT|F16.950|ICD10CM|Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder with delusions|Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder with delusions +C2874715|T048|AB|F16.951|ICD10CM|Hallucinogen use, unsp w psychotic disorder w hallucinations|Hallucinogen use, unsp w psychotic disorder w hallucinations +C2874715|T048|PT|F16.951|ICD10CM|Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder with hallucinations|Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder with hallucinations +C2874716|T048|AB|F16.959|ICD10CM|Hallucinogen use, unsp w psychotic disorder, unsp|Hallucinogen use, unsp w psychotic disorder, unsp +C2874716|T048|PT|F16.959|ICD10CM|Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder, unspecified|Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder, unspecified +C4237313|T048|ET|F16.959|ICD10CM|Other hallucinogen induced psychotic disorder, without use disorder|Other hallucinogen induced psychotic disorder, without use disorder +C4237372|T048|ET|F16.959|ICD10CM|Phencyclidine induced psychotic disorder, without use disorder|Phencyclidine induced psychotic disorder, without use disorder +C2874717|T048|AB|F16.98|ICD10CM|Hallucinogen use, unsp w oth hallucinogen-induced disorder|Hallucinogen use, unsp w oth hallucinogen-induced disorder +C2874717|T048|HT|F16.98|ICD10CM|Hallucinogen use, unspecified with other specified hallucinogen-induced disorder|Hallucinogen use, unspecified with other specified hallucinogen-induced disorder +C2874718|T048|AB|F16.980|ICD10CM|Hallucinogen use, unsp w anxiety disorder|Hallucinogen use, unsp w anxiety disorder +C2874718|T048|PT|F16.980|ICD10CM|Hallucinogen use, unspecified with hallucinogen-induced anxiety disorder|Hallucinogen use, unspecified with hallucinogen-induced anxiety disorder +C4237304|T048|ET|F16.980|ICD10CM|Other hallucinogen-induced anxiety disorder, without use disorder|Other hallucinogen-induced anxiety disorder, without use disorder +C4237363|T048|ET|F16.980|ICD10CM|Phencyclidine induced anxiety disorder, without use disorder|Phencyclidine induced anxiety disorder, without use disorder +C2874719|T048|AB|F16.983|ICD10CM|Hallucign use, unsp w hallucign persist perception disorder|Hallucign use, unsp w hallucign persist perception disorder +C2874719|T048|PT|F16.983|ICD10CM|Hallucinogen use, unspecified with hallucinogen persisting perception disorder (flashbacks)|Hallucinogen use, unspecified with hallucinogen persisting perception disorder (flashbacks) +C2874720|T048|AB|F16.988|ICD10CM|Hallucinogen use, unsp w oth hallucinogen-induced disorder|Hallucinogen use, unsp w oth hallucinogen-induced disorder +C2874720|T048|PT|F16.988|ICD10CM|Hallucinogen use, unspecified with other hallucinogen-induced disorder|Hallucinogen use, unspecified with other hallucinogen-induced disorder +C2874721|T048|AB|F16.99|ICD10CM|Hallucinogen use, unsp w unsp hallucinogen-induced disorder|Hallucinogen use, unsp w unsp hallucinogen-induced disorder +C2874721|T048|PT|F16.99|ICD10CM|Hallucinogen use, unspecified with unspecified hallucinogen-induced disorder|Hallucinogen use, unspecified with unspecified hallucinogen-induced disorder +C0349170|T048|HT|F17|ICD10AE|Mental and behavioral disorders due to use of tobacco|Mental and behavioral disorders due to use of tobacco +C0349170|T048|HT|F17|ICD10|Mental and behavioural disorders due to use of tobacco|Mental and behavioural disorders due to use of tobacco +C0028043|T048|HT|F17|ICD10CM|Nicotine dependence|Nicotine dependence +C0028043|T048|AB|F17|ICD10CM|Nicotine dependence|Nicotine dependence +C0349163|T048|PT|F17.0|ICD10AE|Mental and behavioral disorders due to use of tobacco, acute intoxication|Mental and behavioral disorders due to use of tobacco, acute intoxication +C0349163|T048|PT|F17.0|ICD10|Mental and behavioural disorders due to use of tobacco, acute intoxication|Mental and behavioural disorders due to use of tobacco, acute intoxication +C0349164|T048|PT|F17.1|ICD10AE|Mental and behavioral disorders due to use of tobacco, harmful use|Mental and behavioral disorders due to use of tobacco, harmful use +C0349164|T048|PT|F17.1|ICD10|Mental and behavioural disorders due to use of tobacco, harmful use|Mental and behavioural disorders due to use of tobacco, harmful use +C0040332|T048|PT|F17.2|ICD10AE|Mental and behavioral disorders due to use of tobacco, dependence syndrome|Mental and behavioral disorders due to use of tobacco, dependence syndrome +C0040332|T048|PT|F17.2|ICD10|Mental and behavioural disorders due to use of tobacco, dependence syndrome|Mental and behavioural disorders due to use of tobacco, dependence syndrome +C0028043|T048|HT|F17.2|ICD10CM|Nicotine dependence|Nicotine dependence +C0028043|T048|AB|F17.2|ICD10CM|Nicotine dependence|Nicotine dependence +C0028043|T048|AB|F17.20|ICD10CM|Nicotine dependence, unspecified|Nicotine dependence, unspecified +C0028043|T048|HT|F17.20|ICD10CM|Nicotine dependence, unspecified|Nicotine dependence, unspecified +C2874723|T048|AB|F17.200|ICD10CM|Nicotine dependence, unspecified, uncomplicated|Nicotine dependence, unspecified, uncomplicated +C2874723|T048|PT|F17.200|ICD10CM|Nicotine dependence, unspecified, uncomplicated|Nicotine dependence, unspecified, uncomplicated +C4237562|T048|ET|F17.200|ICD10CM|Tobacco use disorder, mild|Tobacco use disorder, mild +C4237447|T048|ET|F17.200|ICD10CM|Tobacco use disorder, moderate|Tobacco use disorder, moderate +C4237448|T048|ET|F17.200|ICD10CM|Tobacco use disorder, severe|Tobacco use disorder, severe +C2874724|T048|AB|F17.201|ICD10CM|Nicotine dependence, unspecified, in remission|Nicotine dependence, unspecified, in remission +C2874724|T048|PT|F17.201|ICD10CM|Nicotine dependence, unspecified, in remission|Nicotine dependence, unspecified, in remission +C4509076|T048|ET|F17.201|ICD10CM|Tobacco use disorder, mild, in early remission|Tobacco use disorder, mild, in early remission +C4509077|T048|ET|F17.201|ICD10CM|Tobacco use disorder, mild, in sustained remission|Tobacco use disorder, mild, in sustained remission +C4509078|T048|ET|F17.201|ICD10CM|Tobacco use disorder, moderate, in early remission|Tobacco use disorder, moderate, in early remission +C4509079|T048|ET|F17.201|ICD10CM|Tobacco use disorder, moderate, in sustained remission|Tobacco use disorder, moderate, in sustained remission +C4509080|T048|ET|F17.201|ICD10CM|Tobacco use disorder, severe, in early remission|Tobacco use disorder, severe, in early remission +C4509081|T048|ET|F17.201|ICD10CM|Tobacco use disorder, severe, in sustained remission|Tobacco use disorder, severe, in sustained remission +C2874725|T048|AB|F17.203|ICD10CM|Nicotine dependence unspecified, with withdrawal|Nicotine dependence unspecified, with withdrawal +C2874725|T048|PT|F17.203|ICD10CM|Nicotine dependence unspecified, with withdrawal|Nicotine dependence unspecified, with withdrawal +C4082145|T048|ET|F17.203|ICD10CM|Tobacco withdrawal|Tobacco withdrawal +C2874726|T048|AB|F17.208|ICD10CM|Nicotine dependence, unsp, w oth nicotine-induced disorders|Nicotine dependence, unsp, w oth nicotine-induced disorders +C2874726|T048|PT|F17.208|ICD10CM|Nicotine dependence, unspecified, with other nicotine-induced disorders|Nicotine dependence, unspecified, with other nicotine-induced disorders +C2874727|T048|AB|F17.209|ICD10CM|Nicotine dependence, unsp, w unsp nicotine-induced disorders|Nicotine dependence, unsp, w unsp nicotine-induced disorders +C2874727|T048|PT|F17.209|ICD10CM|Nicotine dependence, unspecified, with unspecified nicotine-induced disorders|Nicotine dependence, unspecified, with unspecified nicotine-induced disorders +C2874728|T048|AB|F17.21|ICD10CM|Nicotine dependence, cigarettes|Nicotine dependence, cigarettes +C2874728|T048|HT|F17.21|ICD10CM|Nicotine dependence, cigarettes|Nicotine dependence, cigarettes +C2874729|T048|AB|F17.210|ICD10CM|Nicotine dependence, cigarettes, uncomplicated|Nicotine dependence, cigarettes, uncomplicated +C2874729|T048|PT|F17.210|ICD10CM|Nicotine dependence, cigarettes, uncomplicated|Nicotine dependence, cigarettes, uncomplicated +C2874730|T048|AB|F17.211|ICD10CM|Nicotine dependence, cigarettes, in remission|Nicotine dependence, cigarettes, in remission +C2874730|T048|PT|F17.211|ICD10CM|Nicotine dependence, cigarettes, in remission|Nicotine dependence, cigarettes, in remission +C4509082|T048|ET|F17.211|ICD10CM|Tobacco use disorder, cigarettes, mild, in early remission|Tobacco use disorder, cigarettes, mild, in early remission +C4509083|T048|ET|F17.211|ICD10CM|Tobacco use disorder, cigarettes, mild, in sustained remission|Tobacco use disorder, cigarettes, mild, in sustained remission +C4509084|T048|ET|F17.211|ICD10CM|Tobacco use disorder, cigarettes, moderate, in early remission|Tobacco use disorder, cigarettes, moderate, in early remission +C4509085|T048|ET|F17.211|ICD10CM|Tobacco use disorder, cigarettes, moderate, in sustained remission|Tobacco use disorder, cigarettes, moderate, in sustained remission +C4509086|T048|ET|F17.211|ICD10CM|Tobacco use disorder, cigarettes, severe, in early remission|Tobacco use disorder, cigarettes, severe, in early remission +C4509087|T048|ET|F17.211|ICD10CM|Tobacco use disorder, cigarettes, severe, in sustained remission|Tobacco use disorder, cigarettes, severe, in sustained remission +C2874731|T048|AB|F17.213|ICD10CM|Nicotine dependence, cigarettes, with withdrawal|Nicotine dependence, cigarettes, with withdrawal +C2874731|T048|PT|F17.213|ICD10CM|Nicotine dependence, cigarettes, with withdrawal|Nicotine dependence, cigarettes, with withdrawal +C2874732|T048|AB|F17.218|ICD10CM|Nicotine dependence, cigarettes, w oth disorders|Nicotine dependence, cigarettes, w oth disorders +C2874732|T048|PT|F17.218|ICD10CM|Nicotine dependence, cigarettes, with other nicotine-induced disorders|Nicotine dependence, cigarettes, with other nicotine-induced disorders +C2874733|T048|AB|F17.219|ICD10CM|Nicotine dependence, cigarettes, w unsp disorders|Nicotine dependence, cigarettes, w unsp disorders +C2874733|T048|PT|F17.219|ICD10CM|Nicotine dependence, cigarettes, with unspecified nicotine-induced disorders|Nicotine dependence, cigarettes, with unspecified nicotine-induced disorders +C2874734|T048|AB|F17.22|ICD10CM|Nicotine dependence, chewing tobacco|Nicotine dependence, chewing tobacco +C2874734|T048|HT|F17.22|ICD10CM|Nicotine dependence, chewing tobacco|Nicotine dependence, chewing tobacco +C2874735|T048|AB|F17.220|ICD10CM|Nicotine dependence, chewing tobacco, uncomplicated|Nicotine dependence, chewing tobacco, uncomplicated +C2874735|T048|PT|F17.220|ICD10CM|Nicotine dependence, chewing tobacco, uncomplicated|Nicotine dependence, chewing tobacco, uncomplicated +C2874736|T048|AB|F17.221|ICD10CM|Nicotine dependence, chewing tobacco, in remission|Nicotine dependence, chewing tobacco, in remission +C2874736|T048|PT|F17.221|ICD10CM|Nicotine dependence, chewing tobacco, in remission|Nicotine dependence, chewing tobacco, in remission +C4509088|T048|ET|F17.221|ICD10CM|Tobacco use disorder, chewing tobacco, mild, in early remission|Tobacco use disorder, chewing tobacco, mild, in early remission +C4509089|T048|ET|F17.221|ICD10CM|Tobacco use disorder, chewing tobacco, mild, in sustained remission|Tobacco use disorder, chewing tobacco, mild, in sustained remission +C4509090|T048|ET|F17.221|ICD10CM|Tobacco use disorder, chewing tobacco, moderate, in early remission|Tobacco use disorder, chewing tobacco, moderate, in early remission +C4509091|T048|ET|F17.221|ICD10CM|Tobacco use disorder, chewing tobacco, moderate, in sustained remission|Tobacco use disorder, chewing tobacco, moderate, in sustained remission +C4509092|T048|ET|F17.221|ICD10CM|Tobacco use disorder, chewing tobacco, severe, in early remission|Tobacco use disorder, chewing tobacco, severe, in early remission +C4509093|T048|ET|F17.221|ICD10CM|Tobacco use disorder, chewing tobacco, severe, in sustained remission|Tobacco use disorder, chewing tobacco, severe, in sustained remission +C2874737|T048|AB|F17.223|ICD10CM|Nicotine dependence, chewing tobacco, with withdrawal|Nicotine dependence, chewing tobacco, with withdrawal +C2874737|T048|PT|F17.223|ICD10CM|Nicotine dependence, chewing tobacco, with withdrawal|Nicotine dependence, chewing tobacco, with withdrawal +C2874738|T048|AB|F17.228|ICD10CM|Nicotine dependence, chewing tobacco, w oth disorders|Nicotine dependence, chewing tobacco, w oth disorders +C2874738|T048|PT|F17.228|ICD10CM|Nicotine dependence, chewing tobacco, with other nicotine-induced disorders|Nicotine dependence, chewing tobacco, with other nicotine-induced disorders +C2874739|T048|AB|F17.229|ICD10CM|Nicotine dependence, chewing tobacco, w unsp disorders|Nicotine dependence, chewing tobacco, w unsp disorders +C2874739|T048|PT|F17.229|ICD10CM|Nicotine dependence, chewing tobacco, with unspecified nicotine-induced disorders|Nicotine dependence, chewing tobacco, with unspecified nicotine-induced disorders +C2874740|T048|AB|F17.29|ICD10CM|Nicotine dependence, other tobacco product|Nicotine dependence, other tobacco product +C2874740|T048|HT|F17.29|ICD10CM|Nicotine dependence, other tobacco product|Nicotine dependence, other tobacco product +C2874741|T048|AB|F17.290|ICD10CM|Nicotine dependence, other tobacco product, uncomplicated|Nicotine dependence, other tobacco product, uncomplicated +C2874741|T048|PT|F17.290|ICD10CM|Nicotine dependence, other tobacco product, uncomplicated|Nicotine dependence, other tobacco product, uncomplicated +C2874742|T048|AB|F17.291|ICD10CM|Nicotine dependence, other tobacco product, in remission|Nicotine dependence, other tobacco product, in remission +C2874742|T048|PT|F17.291|ICD10CM|Nicotine dependence, other tobacco product, in remission|Nicotine dependence, other tobacco product, in remission +C4509094|T048|ET|F17.291|ICD10CM|Tobacco use disorder, other tobacco product, mild, in early remission|Tobacco use disorder, other tobacco product, mild, in early remission +C4509095|T048|ET|F17.291|ICD10CM|Tobacco use disorder, other tobacco product, mild, in sustained remission|Tobacco use disorder, other tobacco product, mild, in sustained remission +C4509096|T048|ET|F17.291|ICD10CM|Tobacco use disorder, other tobacco product, moderate, in early remission|Tobacco use disorder, other tobacco product, moderate, in early remission +C4509097|T048|ET|F17.291|ICD10CM|Tobacco use disorder, other tobacco product, moderate, in sustained remission|Tobacco use disorder, other tobacco product, moderate, in sustained remission +C4509098|T048|ET|F17.291|ICD10CM|Tobacco use disorder, other tobacco product, severe, in early remission|Tobacco use disorder, other tobacco product, severe, in early remission +C4509099|T048|ET|F17.291|ICD10CM|Tobacco use disorder, other tobacco product, severe, in sustained remission|Tobacco use disorder, other tobacco product, severe, in sustained remission +C2874743|T048|AB|F17.293|ICD10CM|Nicotine dependence, other tobacco product, with withdrawal|Nicotine dependence, other tobacco product, with withdrawal +C2874743|T048|PT|F17.293|ICD10CM|Nicotine dependence, other tobacco product, with withdrawal|Nicotine dependence, other tobacco product, with withdrawal +C2874744|T048|AB|F17.298|ICD10CM|Nicotine dependence, oth tobacco product, w oth disorders|Nicotine dependence, oth tobacco product, w oth disorders +C2874744|T048|PT|F17.298|ICD10CM|Nicotine dependence, other tobacco product, with other nicotine-induced disorders|Nicotine dependence, other tobacco product, with other nicotine-induced disorders +C2874745|T048|AB|F17.299|ICD10CM|Nicotine dependence, oth tobacco product, w unsp disorders|Nicotine dependence, oth tobacco product, w unsp disorders +C2874745|T048|PT|F17.299|ICD10CM|Nicotine dependence, other tobacco product, with unspecified nicotine-induced disorders|Nicotine dependence, other tobacco product, with unspecified nicotine-induced disorders +C0494385|T048|PT|F17.3|ICD10AE|Mental and behavioral disorders due to use of tobacco, withdrawal state|Mental and behavioral disorders due to use of tobacco, withdrawal state +C0494385|T048|PT|F17.3|ICD10|Mental and behavioural disorders due to use of tobacco, withdrawal state|Mental and behavioural disorders due to use of tobacco, withdrawal state +C0349165|T048|PT|F17.4|ICD10AE|Mental and behavioral disorders due to use of tobacco, withdrawal state with delirium|Mental and behavioral disorders due to use of tobacco, withdrawal state with delirium +C0349165|T048|PT|F17.4|ICD10|Mental and behavioural disorders due to use of tobacco, withdrawal state with delirium|Mental and behavioural disorders due to use of tobacco, withdrawal state with delirium +C0349166|T048|PT|F17.5|ICD10AE|Mental and behavioral disorders due to use of tobacco, psychotic disorder|Mental and behavioral disorders due to use of tobacco, psychotic disorder +C0349166|T048|PT|F17.5|ICD10|Mental and behavioural disorders due to use of tobacco, psychotic disorder|Mental and behavioural disorders due to use of tobacco, psychotic disorder +C0349167|T048|PT|F17.6|ICD10AE|Mental and behavioral disorders due to use of tobacco, amnesic syndrome|Mental and behavioral disorders due to use of tobacco, amnesic syndrome +C0349167|T048|PT|F17.6|ICD10|Mental and behavioural disorders due to use of tobacco, amnesic syndrome|Mental and behavioural disorders due to use of tobacco, amnesic syndrome +C0349168|T048|PT|F17.7|ICD10AE|Mental and behavioral disorders due to use of tobacco, residual and late-onset psychotic disorder|Mental and behavioral disorders due to use of tobacco, residual and late-onset psychotic disorder +C0349168|T048|PT|F17.7|ICD10|Mental and behavioural disorders due to use of tobacco, residual and late-onset psychotic disorder|Mental and behavioural disorders due to use of tobacco, residual and late-onset psychotic disorder +C0349169|T048|PT|F17.8|ICD10AE|Mental and behavioral disorders due to use of tobacco, other mental and behavioral disorders|Mental and behavioral disorders due to use of tobacco, other mental and behavioral disorders +C0349169|T048|PT|F17.8|ICD10|Mental and behavioural disorders due to use of tobacco, other mental and behavioural disorders|Mental and behavioural disorders due to use of tobacco, other mental and behavioural disorders +C0349170|T048|PT|F17.9|ICD10AE|Mental and behavioral disorders due to use of tobacco, unspecified mental and behavioral disorder|Mental and behavioral disorders due to use of tobacco, unspecified mental and behavioral disorder +C0349170|T048|PT|F17.9|ICD10|Mental and behavioural disorders due to use of tobacco, unspecified mental and behavioural disorder|Mental and behavioural disorders due to use of tobacco, unspecified mental and behavioural disorder +C5200975|T048|AB|F18|ICD10CM|Inhalant related disorders|Inhalant related disorders +C5200975|T048|HT|F18|ICD10CM|Inhalant related disorders|Inhalant related disorders +C0349181|T048|HT|F18|ICD10AE|Mental and behavioral disorders due to use of volatile solvents|Mental and behavioral disorders due to use of volatile solvents +C0349181|T048|HT|F18|ICD10|Mental and behavioural disorders due to use of volatile solvents|Mental and behavioural disorders due to use of volatile solvents +C4759675|T037|ET|F18|ICD10CM|volatile solvents|volatile solvents +C0349172|T048|PT|F18.0|ICD10AE|Mental and behavioral disorders due to use of volatile solvents, acute intoxication|Mental and behavioral disorders due to use of volatile solvents, acute intoxication +C0349172|T048|PT|F18.0|ICD10|Mental and behavioural disorders due to use of volatile solvents, acute intoxication|Mental and behavioural disorders due to use of volatile solvents, acute intoxication +C0021449|T048|HT|F18.1|ICD10CM|Inhalant abuse|Inhalant abuse +C0021449|T048|AB|F18.1|ICD10CM|Inhalant abuse|Inhalant abuse +C0349173|T048|PT|F18.1|ICD10AE|Mental and behavioral disorders due to use of volatile solvents, harmful use|Mental and behavioral disorders due to use of volatile solvents, harmful use +C0349173|T048|PT|F18.1|ICD10|Mental and behavioural disorders due to use of volatile solvents, harmful use|Mental and behavioural disorders due to use of volatile solvents, harmful use +C2874746|T048|AB|F18.10|ICD10CM|Inhalant abuse, uncomplicated|Inhalant abuse, uncomplicated +C2874746|T048|PT|F18.10|ICD10CM|Inhalant abuse, uncomplicated|Inhalant abuse, uncomplicated +C4237146|T048|ET|F18.10|ICD10CM|Inhalant use disorder, mild|Inhalant use disorder, mild +C2077012|T048|AB|F18.11|ICD10CM|Inhalant abuse, in remission|Inhalant abuse, in remission +C2077012|T048|PT|F18.11|ICD10CM|Inhalant abuse, in remission|Inhalant abuse, in remission +C4509100|T048|ET|F18.11|ICD10CM|Inhalant use disorder, mild, in early remission|Inhalant use disorder, mild, in early remission +C4509101|T048|ET|F18.11|ICD10CM|Inhalant use disorder, mild, in sustained remission|Inhalant use disorder, mild, in sustained remission +C2874749|T048|HT|F18.12|ICD10CM|Inhalant abuse with intoxication|Inhalant abuse with intoxication +C2874749|T048|AB|F18.12|ICD10CM|Inhalant abuse with intoxication|Inhalant abuse with intoxication +C2874747|T048|AB|F18.120|ICD10CM|Inhalant abuse with intoxication, uncomplicated|Inhalant abuse with intoxication, uncomplicated +C2874747|T048|PT|F18.120|ICD10CM|Inhalant abuse with intoxication, uncomplicated|Inhalant abuse with intoxication, uncomplicated +C2874748|T048|PT|F18.121|ICD10CM|Inhalant abuse with intoxication delirium|Inhalant abuse with intoxication delirium +C2874748|T048|AB|F18.121|ICD10CM|Inhalant abuse with intoxication delirium|Inhalant abuse with intoxication delirium +C2874749|T048|AB|F18.129|ICD10CM|Inhalant abuse with intoxication, unspecified|Inhalant abuse with intoxication, unspecified +C2874749|T048|PT|F18.129|ICD10CM|Inhalant abuse with intoxication, unspecified|Inhalant abuse with intoxication, unspecified +C2874750|T048|PT|F18.14|ICD10CM|Inhalant abuse with inhalant-induced mood disorder|Inhalant abuse with inhalant-induced mood disorder +C2874750|T048|AB|F18.14|ICD10CM|Inhalant abuse with inhalant-induced mood disorder|Inhalant abuse with inhalant-induced mood disorder +C4268275|T048|ET|F18.14|ICD10CM|Inhalant use disorder, mild, with inhalant induced depressive disorder|Inhalant use disorder, mild, with inhalant induced depressive disorder +C2874754|T048|HT|F18.15|ICD10CM|Inhalant abuse with inhalant-induced psychotic disorder|Inhalant abuse with inhalant-induced psychotic disorder +C2874754|T048|AB|F18.15|ICD10CM|Inhalant abuse with inhalant-induced psychotic disorder|Inhalant abuse with inhalant-induced psychotic disorder +C2874752|T048|AB|F18.150|ICD10CM|Inhalant abuse w inhalnt-induce psych disorder w delusions|Inhalant abuse w inhalnt-induce psych disorder w delusions +C2874752|T048|PT|F18.150|ICD10CM|Inhalant abuse with inhalant-induced psychotic disorder with delusions|Inhalant abuse with inhalant-induced psychotic disorder with delusions +C2874753|T048|AB|F18.151|ICD10CM|Inhalant abuse w inhalnt-induce psych disorder w hallucin|Inhalant abuse w inhalnt-induce psych disorder w hallucin +C2874753|T048|PT|F18.151|ICD10CM|Inhalant abuse with inhalant-induced psychotic disorder with hallucinations|Inhalant abuse with inhalant-induced psychotic disorder with hallucinations +C2874754|T048|AB|F18.159|ICD10CM|Inhalant abuse w inhalant-induced psychotic disorder, unsp|Inhalant abuse w inhalant-induced psychotic disorder, unsp +C2874754|T048|PT|F18.159|ICD10CM|Inhalant abuse with inhalant-induced psychotic disorder, unspecified|Inhalant abuse with inhalant-induced psychotic disorder, unspecified +C2874755|T048|PT|F18.17|ICD10CM|Inhalant abuse with inhalant-induced dementia|Inhalant abuse with inhalant-induced dementia +C2874755|T048|AB|F18.17|ICD10CM|Inhalant abuse with inhalant-induced dementia|Inhalant abuse with inhalant-induced dementia +C4268276|T048|ET|F18.17|ICD10CM|Inhalant use disorder, mild, with inhalant induced major neurocognitive disorder|Inhalant use disorder, mild, with inhalant induced major neurocognitive disorder +C2874757|T048|AB|F18.18|ICD10CM|Inhalant abuse with other inhalant-induced disorders|Inhalant abuse with other inhalant-induced disorders +C2874757|T048|HT|F18.18|ICD10CM|Inhalant abuse with other inhalant-induced disorders|Inhalant abuse with other inhalant-induced disorders +C2874756|T048|PT|F18.180|ICD10CM|Inhalant abuse with inhalant-induced anxiety disorder|Inhalant abuse with inhalant-induced anxiety disorder +C2874756|T048|AB|F18.180|ICD10CM|Inhalant abuse with inhalant-induced anxiety disorder|Inhalant abuse with inhalant-induced anxiety disorder +C2874757|T048|AB|F18.188|ICD10CM|Inhalant abuse with other inhalant-induced disorder|Inhalant abuse with other inhalant-induced disorder +C2874757|T048|PT|F18.188|ICD10CM|Inhalant abuse with other inhalant-induced disorder|Inhalant abuse with other inhalant-induced disorder +C4268277|T048|ET|F18.188|ICD10CM|Inhalant use disorder, mild, with inhalant induced mild neurocognitive disorder|Inhalant use disorder, mild, with inhalant induced mild neurocognitive disorder +C2874758|T048|AB|F18.19|ICD10CM|Inhalant abuse with unspecified inhalant-induced disorder|Inhalant abuse with unspecified inhalant-induced disorder +C2874758|T048|PT|F18.19|ICD10CM|Inhalant abuse with unspecified inhalant-induced disorder|Inhalant abuse with unspecified inhalant-induced disorder +C0021450|T048|HT|F18.2|ICD10CM|Inhalant dependence|Inhalant dependence +C0021450|T048|AB|F18.2|ICD10CM|Inhalant dependence|Inhalant dependence +C0349174|T048|PT|F18.2|ICD10AE|Mental and behavioral disorders due to use of volatile solvents, dependence syndrome|Mental and behavioral disorders due to use of volatile solvents, dependence syndrome +C0349174|T048|PT|F18.2|ICD10|Mental and behavioural disorders due to use of volatile solvents, dependence syndrome|Mental and behavioural disorders due to use of volatile solvents, dependence syndrome +C2874759|T048|AB|F18.20|ICD10CM|Inhalant dependence, uncomplicated|Inhalant dependence, uncomplicated +C2874759|T048|PT|F18.20|ICD10CM|Inhalant dependence, uncomplicated|Inhalant dependence, uncomplicated +C4237147|T048|ET|F18.20|ICD10CM|Inhalant use disorder, moderate|Inhalant use disorder, moderate +C4237148|T048|ET|F18.20|ICD10CM|Inhalant use disorder, severe|Inhalant use disorder, severe +C2077013|T048|AB|F18.21|ICD10CM|Inhalant dependence, in remission|Inhalant dependence, in remission +C2077013|T048|PT|F18.21|ICD10CM|Inhalant dependence, in remission|Inhalant dependence, in remission +C4509102|T048|ET|F18.21|ICD10CM|Inhalant use disorder, moderate, in early remission|Inhalant use disorder, moderate, in early remission +C4509103|T048|ET|F18.21|ICD10CM|Inhalant use disorder, moderate, in sustained remission|Inhalant use disorder, moderate, in sustained remission +C4509104|T048|ET|F18.21|ICD10CM|Inhalant use disorder, severe, in early remission|Inhalant use disorder, severe, in early remission +C4509105|T048|ET|F18.21|ICD10CM|Inhalant use disorder, severe, in sustained remission|Inhalant use disorder, severe, in sustained remission +C2874762|T048|HT|F18.22|ICD10CM|Inhalant dependence with intoxication|Inhalant dependence with intoxication +C2874762|T048|AB|F18.22|ICD10CM|Inhalant dependence with intoxication|Inhalant dependence with intoxication +C2874760|T048|AB|F18.220|ICD10CM|Inhalant dependence with intoxication, uncomplicated|Inhalant dependence with intoxication, uncomplicated +C2874760|T048|PT|F18.220|ICD10CM|Inhalant dependence with intoxication, uncomplicated|Inhalant dependence with intoxication, uncomplicated +C2874761|T048|PT|F18.221|ICD10CM|Inhalant dependence with intoxication delirium|Inhalant dependence with intoxication delirium +C2874761|T048|AB|F18.221|ICD10CM|Inhalant dependence with intoxication delirium|Inhalant dependence with intoxication delirium +C2874762|T048|AB|F18.229|ICD10CM|Inhalant dependence with intoxication, unspecified|Inhalant dependence with intoxication, unspecified +C2874762|T048|PT|F18.229|ICD10CM|Inhalant dependence with intoxication, unspecified|Inhalant dependence with intoxication, unspecified +C2874763|T048|PT|F18.24|ICD10CM|Inhalant dependence with inhalant-induced mood disorder|Inhalant dependence with inhalant-induced mood disorder +C2874763|T048|AB|F18.24|ICD10CM|Inhalant dependence with inhalant-induced mood disorder|Inhalant dependence with inhalant-induced mood disorder +C4268278|T048|ET|F18.24|ICD10CM|Inhalant use disorder, moderate, with inhalant induced depressive disorder|Inhalant use disorder, moderate, with inhalant induced depressive disorder +C4268279|T048|ET|F18.24|ICD10CM|Inhalant use disorder, severe, with inhalant induced depressive disorder|Inhalant use disorder, severe, with inhalant induced depressive disorder +C2874767|T048|HT|F18.25|ICD10CM|Inhalant dependence with inhalant-induced psychotic disorder|Inhalant dependence with inhalant-induced psychotic disorder +C2874767|T048|AB|F18.25|ICD10CM|Inhalant dependence with inhalant-induced psychotic disorder|Inhalant dependence with inhalant-induced psychotic disorder +C2874765|T048|AB|F18.250|ICD10CM|Inhalant depend w inhalnt-induce psych disorder w delusions|Inhalant depend w inhalnt-induce psych disorder w delusions +C2874765|T048|PT|F18.250|ICD10CM|Inhalant dependence with inhalant-induced psychotic disorder with delusions|Inhalant dependence with inhalant-induced psychotic disorder with delusions +C2874766|T048|AB|F18.251|ICD10CM|Inhalant depend w inhalnt-induce psych disorder w hallucin|Inhalant depend w inhalnt-induce psych disorder w hallucin +C2874766|T048|PT|F18.251|ICD10CM|Inhalant dependence with inhalant-induced psychotic disorder with hallucinations|Inhalant dependence with inhalant-induced psychotic disorder with hallucinations +C2874767|T048|AB|F18.259|ICD10CM|Inhalant depend w inhalnt-induce psychotic disorder, unsp|Inhalant depend w inhalnt-induce psychotic disorder, unsp +C2874767|T048|PT|F18.259|ICD10CM|Inhalant dependence with inhalant-induced psychotic disorder, unspecified|Inhalant dependence with inhalant-induced psychotic disorder, unspecified +C2874768|T048|PT|F18.27|ICD10CM|Inhalant dependence with inhalant-induced dementia|Inhalant dependence with inhalant-induced dementia +C2874768|T048|AB|F18.27|ICD10CM|Inhalant dependence with inhalant-induced dementia|Inhalant dependence with inhalant-induced dementia +C4268280|T048|ET|F18.27|ICD10CM|Inhalant use disorder, moderate, with inhalant induced major neurocognitive disorder|Inhalant use disorder, moderate, with inhalant induced major neurocognitive disorder +C4268281|T048|ET|F18.27|ICD10CM|Inhalant use disorder, severe, with inhalant induced major neurocognitive disorder|Inhalant use disorder, severe, with inhalant induced major neurocognitive disorder +C2874770|T048|AB|F18.28|ICD10CM|Inhalant dependence with other inhalant-induced disorders|Inhalant dependence with other inhalant-induced disorders +C2874770|T048|HT|F18.28|ICD10CM|Inhalant dependence with other inhalant-induced disorders|Inhalant dependence with other inhalant-induced disorders +C2874769|T048|PT|F18.280|ICD10CM|Inhalant dependence with inhalant-induced anxiety disorder|Inhalant dependence with inhalant-induced anxiety disorder +C2874769|T048|AB|F18.280|ICD10CM|Inhalant dependence with inhalant-induced anxiety disorder|Inhalant dependence with inhalant-induced anxiety disorder +C2874770|T048|AB|F18.288|ICD10CM|Inhalant dependence with other inhalant-induced disorder|Inhalant dependence with other inhalant-induced disorder +C2874770|T048|PT|F18.288|ICD10CM|Inhalant dependence with other inhalant-induced disorder|Inhalant dependence with other inhalant-induced disorder +C4268282|T048|ET|F18.288|ICD10CM|Inhalant use disorder, moderate, with inhalant-induced mild neurocognitive disorder|Inhalant use disorder, moderate, with inhalant-induced mild neurocognitive disorder +C4268283|T048|ET|F18.288|ICD10CM|Inhalant use disorder, severe, with inhalant-induced mild neurocognitive disorder|Inhalant use disorder, severe, with inhalant-induced mild neurocognitive disorder +C2874771|T048|AB|F18.29|ICD10CM|Inhalant dependence with unsp inhalant-induced disorder|Inhalant dependence with unsp inhalant-induced disorder +C2874771|T048|PT|F18.29|ICD10CM|Inhalant dependence with unspecified inhalant-induced disorder|Inhalant dependence with unspecified inhalant-induced disorder +C0349175|T048|PT|F18.3|ICD10AE|Mental and behavioral disorders due to use of volatile solvents, withdrawal state|Mental and behavioral disorders due to use of volatile solvents, withdrawal state +C0349175|T048|PT|F18.3|ICD10|Mental and behavioural disorders due to use of volatile solvents, withdrawal state|Mental and behavioural disorders due to use of volatile solvents, withdrawal state +C0349176|T048|PT|F18.4|ICD10AE|Mental and behavioral disorders due to use of volatile solvents, withdrawal state with delirium|Mental and behavioral disorders due to use of volatile solvents, withdrawal state with delirium +C0349176|T048|PT|F18.4|ICD10|Mental and behavioural disorders due to use of volatile solvents, withdrawal state with delirium|Mental and behavioural disorders due to use of volatile solvents, withdrawal state with delirium +C0349177|T048|PT|F18.5|ICD10AE|Mental and behavioral disorders due to use of volatile solvents, psychotic disorder|Mental and behavioral disorders due to use of volatile solvents, psychotic disorder +C0349177|T048|PT|F18.5|ICD10|Mental and behavioural disorders due to use of volatile solvents, psychotic disorder|Mental and behavioural disorders due to use of volatile solvents, psychotic disorder +C0349178|T048|PT|F18.6|ICD10AE|Mental and behavioral disorders due to use of volatile solvents, amnesic syndrome|Mental and behavioral disorders due to use of volatile solvents, amnesic syndrome +C0349178|T048|PT|F18.6|ICD10|Mental and behavioural disorders due to use of volatile solvents, amnesic syndrome|Mental and behavioural disorders due to use of volatile solvents, amnesic syndrome +C2874772|T048|AB|F18.9|ICD10CM|Inhalant use, unspecified|Inhalant use, unspecified +C2874772|T048|HT|F18.9|ICD10CM|Inhalant use, unspecified|Inhalant use, unspecified +C2874773|T048|AB|F18.90|ICD10CM|Inhalant use, unspecified, uncomplicated|Inhalant use, unspecified, uncomplicated +C2874773|T048|PT|F18.90|ICD10CM|Inhalant use, unspecified, uncomplicated|Inhalant use, unspecified, uncomplicated +C2874774|T048|AB|F18.92|ICD10CM|Inhalant use, unspecified with intoxication|Inhalant use, unspecified with intoxication +C2874774|T048|HT|F18.92|ICD10CM|Inhalant use, unspecified with intoxication|Inhalant use, unspecified with intoxication +C2874775|T048|AB|F18.920|ICD10CM|Inhalant use, unspecified with intoxication, uncomplicated|Inhalant use, unspecified with intoxication, uncomplicated +C2874775|T048|PT|F18.920|ICD10CM|Inhalant use, unspecified with intoxication, uncomplicated|Inhalant use, unspecified with intoxication, uncomplicated +C2874776|T048|AB|F18.921|ICD10CM|Inhalant use, unspecified with intoxication with delirium|Inhalant use, unspecified with intoxication with delirium +C2874776|T048|PT|F18.921|ICD10CM|Inhalant use, unspecified with intoxication with delirium|Inhalant use, unspecified with intoxication with delirium +C2874777|T048|AB|F18.929|ICD10CM|Inhalant use, unspecified with intoxication, unspecified|Inhalant use, unspecified with intoxication, unspecified +C2874777|T048|PT|F18.929|ICD10CM|Inhalant use, unspecified with intoxication, unspecified|Inhalant use, unspecified with intoxication, unspecified +C4237567|T048|ET|F18.94|ICD10CM|Inhalant induced depressive disorder|Inhalant induced depressive disorder +C2874778|T048|AB|F18.94|ICD10CM|Inhalant use, unsp with inhalant-induced mood disorder|Inhalant use, unsp with inhalant-induced mood disorder +C2874778|T048|PT|F18.94|ICD10CM|Inhalant use, unspecified with inhalant-induced mood disorder|Inhalant use, unspecified with inhalant-induced mood disorder +C2874779|T048|AB|F18.95|ICD10CM|Inhalant use, unsp with inhalant-induced psychotic disorder|Inhalant use, unsp with inhalant-induced psychotic disorder +C2874779|T048|HT|F18.95|ICD10CM|Inhalant use, unspecified with inhalant-induced psychotic disorder|Inhalant use, unspecified with inhalant-induced psychotic disorder +C2874780|T048|AB|F18.950|ICD10CM|Inhalant use, unsp w inhalnt-induce psych disord w delusions|Inhalant use, unsp w inhalnt-induce psych disord w delusions +C2874780|T048|PT|F18.950|ICD10CM|Inhalant use, unspecified with inhalant-induced psychotic disorder with delusions|Inhalant use, unspecified with inhalant-induced psychotic disorder with delusions +C2874781|T048|AB|F18.951|ICD10CM|Inhalant use, unsp w inhalnt-induce psych disord w hallucin|Inhalant use, unsp w inhalnt-induce psych disord w hallucin +C2874781|T048|PT|F18.951|ICD10CM|Inhalant use, unspecified with inhalant-induced psychotic disorder with hallucinations|Inhalant use, unspecified with inhalant-induced psychotic disorder with hallucinations +C2874782|T048|AB|F18.959|ICD10CM|Inhalant use, unsp w inhalnt-induce psychotic disorder, unsp|Inhalant use, unsp w inhalnt-induce psychotic disorder, unsp +C2874782|T048|PT|F18.959|ICD10CM|Inhalant use, unspecified with inhalant-induced psychotic disorder, unspecified|Inhalant use, unspecified with inhalant-induced psychotic disorder, unspecified +C2874783|T048|AB|F18.97|ICD10CM|Inhalant use, unsp with inhalant-induced persisting dementia|Inhalant use, unsp with inhalant-induced persisting dementia +C2874783|T048|PT|F18.97|ICD10CM|Inhalant use, unspecified with inhalant-induced persisting dementia|Inhalant use, unspecified with inhalant-induced persisting dementia +C4237513|T048|ET|F18.97|ICD10CM|Inhalant-induced major neurocognitive disorder|Inhalant-induced major neurocognitive disorder +C2874785|T048|AB|F18.98|ICD10CM|Inhalant use, unsp with other inhalant-induced disorders|Inhalant use, unsp with other inhalant-induced disorders +C2874785|T048|HT|F18.98|ICD10CM|Inhalant use, unspecified with other inhalant-induced disorders|Inhalant use, unspecified with other inhalant-induced disorders +C2874784|T048|AB|F18.980|ICD10CM|Inhalant use, unsp with inhalant-induced anxiety disorder|Inhalant use, unsp with inhalant-induced anxiety disorder +C2874784|T048|PT|F18.980|ICD10CM|Inhalant use, unspecified with inhalant-induced anxiety disorder|Inhalant use, unspecified with inhalant-induced anxiety disorder +C2874785|T048|AB|F18.988|ICD10CM|Inhalant use, unsp with other inhalant-induced disorder|Inhalant use, unsp with other inhalant-induced disorder +C2874785|T048|PT|F18.988|ICD10CM|Inhalant use, unspecified with other inhalant-induced disorder|Inhalant use, unspecified with other inhalant-induced disorder +C4237514|T048|ET|F18.988|ICD10CM|Inhalant-induced mild neurocognitive disorder|Inhalant-induced mild neurocognitive disorder +C2874786|T048|AB|F18.99|ICD10CM|Inhalant use, unsp with unsp inhalant-induced disorder|Inhalant use, unsp with unsp inhalant-induced disorder +C2874786|T048|PT|F18.99|ICD10CM|Inhalant use, unspecified with unspecified inhalant-induced disorder|Inhalant use, unspecified with unspecified inhalant-induced disorder +C0349182|T048|HT|F19|ICD10AE|Mental and behavioral disorders due to multiple drug use and use of other psychoactive substances|Mental and behavioral disorders due to multiple drug use and use of other psychoactive substances +C0349182|T048|HT|F19|ICD10|Mental and behavioural disorders due to multiple drug use and use of other psychoactive substances|Mental and behavioural disorders due to multiple drug use and use of other psychoactive substances +C2874788|T048|AB|F19|ICD10CM|Other psychoactive substance related disorders|Other psychoactive substance related disorders +C2874788|T048|HT|F19|ICD10CM|Other psychoactive substance related disorders|Other psychoactive substance related disorders +C4290106|T048|ET|F19|ICD10CM|polysubstance drug use (indiscriminate drug use)|polysubstance drug use (indiscriminate drug use) +C2874789|T048|AB|F19.1|ICD10CM|Other psychoactive substance abuse|Other psychoactive substance abuse +C2874789|T048|HT|F19.1|ICD10CM|Other psychoactive substance abuse|Other psychoactive substance abuse +C4237258|T048|ET|F19.10|ICD10CM|Other (or unknown) substance use disorder, mild|Other (or unknown) substance use disorder, mild +C2874790|T048|AB|F19.10|ICD10CM|Other psychoactive substance abuse, uncomplicated|Other psychoactive substance abuse, uncomplicated +C2874790|T048|PT|F19.10|ICD10CM|Other psychoactive substance abuse, uncomplicated|Other psychoactive substance abuse, uncomplicated +C4509107|T048|ET|F19.11|ICD10CM|Other (or unknown) substance use disorder, mild, in early remission|Other (or unknown) substance use disorder, mild, in early remission +C4509108|T048|ET|F19.11|ICD10CM|Other (or unknown) substance use disorder, mild, in sustained remission|Other (or unknown) substance use disorder, mild, in sustained remission +C4509106|T048|AB|F19.11|ICD10CM|Other psychoactive substance abuse, in remission|Other psychoactive substance abuse, in remission +C4509106|T048|PT|F19.11|ICD10CM|Other psychoactive substance abuse, in remission|Other psychoactive substance abuse, in remission +C2874795|T048|AB|F19.12|ICD10CM|Other psychoactive substance abuse with intoxication|Other psychoactive substance abuse with intoxication +C2874795|T048|HT|F19.12|ICD10CM|Other psychoactive substance abuse with intoxication|Other psychoactive substance abuse with intoxication +C2874792|T048|AB|F19.120|ICD10CM|Oth psychoactive substance abuse w intoxication, uncomp|Oth psychoactive substance abuse w intoxication, uncomp +C2874792|T048|PT|F19.120|ICD10CM|Other psychoactive substance abuse with intoxication, uncomplicated|Other psychoactive substance abuse with intoxication, uncomplicated +C2874793|T048|AB|F19.121|ICD10CM|Oth psychoactive substance abuse with intoxication delirium|Oth psychoactive substance abuse with intoxication delirium +C2874793|T048|PT|F19.121|ICD10CM|Other psychoactive substance abuse with intoxication delirium|Other psychoactive substance abuse with intoxication delirium +C2874794|T048|AB|F19.122|ICD10CM|Oth psychoactv substance abuse w intox w perceptual disturb|Oth psychoactv substance abuse w intox w perceptual disturb +C2874794|T048|PT|F19.122|ICD10CM|Other psychoactive substance abuse with intoxication with perceptual disturbances|Other psychoactive substance abuse with intoxication with perceptual disturbances +C2874795|T048|AB|F19.129|ICD10CM|Other psychoactive substance abuse with intoxication, unsp|Other psychoactive substance abuse with intoxication, unsp +C2874795|T048|PT|F19.129|ICD10CM|Other psychoactive substance abuse with intoxication, unspecified|Other psychoactive substance abuse with intoxication, unspecified +C2874796|T048|AB|F19.14|ICD10CM|Oth psychoactive substance abuse w mood disorder|Oth psychoactive substance abuse w mood disorder +C2874796|T048|PT|F19.14|ICD10CM|Other psychoactive substance abuse with psychoactive substance-induced mood disorder|Other psychoactive substance abuse with psychoactive substance-induced mood disorder +C2874800|T048|AB|F19.15|ICD10CM|Oth psychoactive substance abuse w psychotic disorder|Oth psychoactive substance abuse w psychotic disorder +C2874800|T048|HT|F19.15|ICD10CM|Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder|Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder +C2874798|T048|AB|F19.150|ICD10CM|Oth psychoactv substance abuse w psych disorder w delusions|Oth psychoactv substance abuse w psych disorder w delusions +C2874799|T048|AB|F19.151|ICD10CM|Oth psychoactv substance abuse w psych disorder w hallucin|Oth psychoactv substance abuse w psych disorder w hallucin +C2874800|T048|AB|F19.159|ICD10CM|Oth psychoactive substance abuse w psychotic disorder, unsp|Oth psychoactive substance abuse w psychotic disorder, unsp +C2874801|T048|AB|F19.16|ICD10CM|Oth psychoactv substance abuse w persist amnestic disorder|Oth psychoactv substance abuse w persist amnestic disorder +C2874801|T048|PT|F19.16|ICD10CM|Other psychoactive substance abuse with psychoactive substance-induced persisting amnestic disorder|Other psychoactive substance abuse with psychoactive substance-induced persisting amnestic disorder +C2874802|T048|AB|F19.17|ICD10CM|Oth psychoactive substance abuse w persisting dementia|Oth psychoactive substance abuse w persisting dementia +C2874802|T048|PT|F19.17|ICD10CM|Other psychoactive substance abuse with psychoactive substance-induced persisting dementia|Other psychoactive substance abuse with psychoactive substance-induced persisting dementia +C2874806|T048|AB|F19.18|ICD10CM|Oth psychoactive substance abuse w oth disorders|Oth psychoactive substance abuse w oth disorders +C2874806|T048|HT|F19.18|ICD10CM|Other psychoactive substance abuse with other psychoactive substance-induced disorders|Other psychoactive substance abuse with other psychoactive substance-induced disorders +C2874803|T048|AB|F19.180|ICD10CM|Oth psychoactive substance abuse w anxiety disorder|Oth psychoactive substance abuse w anxiety disorder +C2874803|T048|PT|F19.180|ICD10CM|Other psychoactive substance abuse with psychoactive substance-induced anxiety disorder|Other psychoactive substance abuse with psychoactive substance-induced anxiety disorder +C2874804|T048|AB|F19.181|ICD10CM|Oth psychoactive substance abuse w sexual dysfunction|Oth psychoactive substance abuse w sexual dysfunction +C2874804|T048|PT|F19.181|ICD10CM|Other psychoactive substance abuse with psychoactive substance-induced sexual dysfunction|Other psychoactive substance abuse with psychoactive substance-induced sexual dysfunction +C2874805|T048|AB|F19.182|ICD10CM|Oth psychoactive substance abuse w sleep disorder|Oth psychoactive substance abuse w sleep disorder +C2874805|T048|PT|F19.182|ICD10CM|Other psychoactive substance abuse with psychoactive substance-induced sleep disorder|Other psychoactive substance abuse with psychoactive substance-induced sleep disorder +C2874806|T048|AB|F19.188|ICD10CM|Oth psychoactive substance abuse w oth disorder|Oth psychoactive substance abuse w oth disorder +C2874806|T048|PT|F19.188|ICD10CM|Other psychoactive substance abuse with other psychoactive substance-induced disorder|Other psychoactive substance abuse with other psychoactive substance-induced disorder +C2874807|T048|AB|F19.19|ICD10CM|Oth psychoactive substance abuse w unsp disorder|Oth psychoactive substance abuse w unsp disorder +C2874807|T048|PT|F19.19|ICD10CM|Other psychoactive substance abuse with unspecified psychoactive substance-induced disorder|Other psychoactive substance abuse with unspecified psychoactive substance-induced disorder +C2874808|T048|AB|F19.2|ICD10CM|Other psychoactive substance dependence|Other psychoactive substance dependence +C2874808|T048|HT|F19.2|ICD10CM|Other psychoactive substance dependence|Other psychoactive substance dependence +C4237259|T048|ET|F19.20|ICD10CM|Other (or unknown) substance use disorder, moderate|Other (or unknown) substance use disorder, moderate +C4237260|T048|ET|F19.20|ICD10CM|Other (or unknown) substance use disorder, severe|Other (or unknown) substance use disorder, severe +C2874809|T048|AB|F19.20|ICD10CM|Other psychoactive substance dependence, uncomplicated|Other psychoactive substance dependence, uncomplicated +C2874809|T048|PT|F19.20|ICD10CM|Other psychoactive substance dependence, uncomplicated|Other psychoactive substance dependence, uncomplicated +C4509109|T048|ET|F19.21|ICD10CM|Other (or unknown) substance use disorder, moderate, in early remission|Other (or unknown) substance use disorder, moderate, in early remission +C4509110|T048|ET|F19.21|ICD10CM|Other (or unknown) substance use disorder, moderate, in sustained remission|Other (or unknown) substance use disorder, moderate, in sustained remission +C4509111|T048|ET|F19.21|ICD10CM|Other (or unknown) substance use disorder, severe, in early remission|Other (or unknown) substance use disorder, severe, in early remission +C4509112|T048|ET|F19.21|ICD10CM|Other (or unknown) substance use disorder, severe, in sustained remission|Other (or unknown) substance use disorder, severe, in sustained remission +C2874810|T048|AB|F19.21|ICD10CM|Other psychoactive substance dependence, in remission|Other psychoactive substance dependence, in remission +C2874810|T048|PT|F19.21|ICD10CM|Other psychoactive substance dependence, in remission|Other psychoactive substance dependence, in remission +C2874815|T048|AB|F19.22|ICD10CM|Other psychoactive substance dependence with intoxication|Other psychoactive substance dependence with intoxication +C2874815|T048|HT|F19.22|ICD10CM|Other psychoactive substance dependence with intoxication|Other psychoactive substance dependence with intoxication +C2874812|T048|AB|F19.220|ICD10CM|Oth psychoactive substance dependence w intoxication, uncomp|Oth psychoactive substance dependence w intoxication, uncomp +C2874812|T048|PT|F19.220|ICD10CM|Other psychoactive substance dependence with intoxication, uncomplicated|Other psychoactive substance dependence with intoxication, uncomplicated +C2874813|T048|AB|F19.221|ICD10CM|Oth psychoactive substance dependence w intox delirium|Oth psychoactive substance dependence w intox delirium +C2874813|T048|PT|F19.221|ICD10CM|Other psychoactive substance dependence with intoxication delirium|Other psychoactive substance dependence with intoxication delirium +C2874814|T048|AB|F19.222|ICD10CM|Oth psychoactv substance depend w intox w perceptual disturb|Oth psychoactv substance depend w intox w perceptual disturb +C2874814|T048|PT|F19.222|ICD10CM|Other psychoactive substance dependence with intoxication with perceptual disturbance|Other psychoactive substance dependence with intoxication with perceptual disturbance +C2874815|T048|AB|F19.229|ICD10CM|Oth psychoactive substance dependence w intoxication, unsp|Oth psychoactive substance dependence w intoxication, unsp +C2874815|T048|PT|F19.229|ICD10CM|Other psychoactive substance dependence with intoxication, unspecified|Other psychoactive substance dependence with intoxication, unspecified +C2874820|T048|AB|F19.23|ICD10CM|Other psychoactive substance dependence with withdrawal|Other psychoactive substance dependence with withdrawal +C2874820|T048|HT|F19.23|ICD10CM|Other psychoactive substance dependence with withdrawal|Other psychoactive substance dependence with withdrawal +C2874817|T048|AB|F19.230|ICD10CM|Oth psychoactive substance dependence w withdrawal, uncomp|Oth psychoactive substance dependence w withdrawal, uncomp +C2874817|T048|PT|F19.230|ICD10CM|Other psychoactive substance dependence with withdrawal, uncomplicated|Other psychoactive substance dependence with withdrawal, uncomplicated +C2874818|T048|AB|F19.231|ICD10CM|Oth psychoactive substance dependence w withdrawal delirium|Oth psychoactive substance dependence w withdrawal delirium +C2874818|T048|PT|F19.231|ICD10CM|Other psychoactive substance dependence with withdrawal delirium|Other psychoactive substance dependence with withdrawal delirium +C2874819|T048|AB|F19.232|ICD10CM|Oth psychoactv sub depend w w/drawal w perceptl disturb|Oth psychoactv sub depend w w/drawal w perceptl disturb +C2874819|T048|PT|F19.232|ICD10CM|Other psychoactive substance dependence with withdrawal with perceptual disturbance|Other psychoactive substance dependence with withdrawal with perceptual disturbance +C2874820|T048|AB|F19.239|ICD10CM|Oth psychoactive substance dependence with withdrawal, unsp|Oth psychoactive substance dependence with withdrawal, unsp +C2874820|T048|PT|F19.239|ICD10CM|Other psychoactive substance dependence with withdrawal, unspecified|Other psychoactive substance dependence with withdrawal, unspecified +C2874821|T048|AB|F19.24|ICD10CM|Oth psychoactive substance dependence w mood disorder|Oth psychoactive substance dependence w mood disorder +C2874821|T048|PT|F19.24|ICD10CM|Other psychoactive substance dependence with psychoactive substance-induced mood disorder|Other psychoactive substance dependence with psychoactive substance-induced mood disorder +C2874825|T048|AB|F19.25|ICD10CM|Oth psychoactive substance dependence w psychotic disorder|Oth psychoactive substance dependence w psychotic disorder +C2874825|T048|HT|F19.25|ICD10CM|Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder|Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder +C2874823|T048|AB|F19.250|ICD10CM|Oth psychoactv substance depend w psych disorder w delusions|Oth psychoactv substance depend w psych disorder w delusions +C2874824|T048|AB|F19.251|ICD10CM|Oth psychoactv substance depend w psych disorder w hallucin|Oth psychoactv substance depend w psych disorder w hallucin +C2874825|T048|AB|F19.259|ICD10CM|Oth psychoactv substance depend w psychotic disorder, unsp|Oth psychoactv substance depend w psychotic disorder, unsp +C2874826|T048|AB|F19.26|ICD10CM|Oth psychoactv substance depend w persist amnestic disorder|Oth psychoactv substance depend w persist amnestic disorder +C2874827|T048|AB|F19.27|ICD10CM|Oth psychoactive substance dependence w persisting dementia|Oth psychoactive substance dependence w persisting dementia +C2874827|T048|PT|F19.27|ICD10CM|Other psychoactive substance dependence with psychoactive substance-induced persisting dementia|Other psychoactive substance dependence with psychoactive substance-induced persisting dementia +C2874831|T048|AB|F19.28|ICD10CM|Oth psychoactive substance dependence w oth disorders|Oth psychoactive substance dependence w oth disorders +C2874831|T048|HT|F19.28|ICD10CM|Other psychoactive substance dependence with other psychoactive substance-induced disorders|Other psychoactive substance dependence with other psychoactive substance-induced disorders +C2874828|T048|AB|F19.280|ICD10CM|Oth psychoactive substance dependence w anxiety disorder|Oth psychoactive substance dependence w anxiety disorder +C2874828|T048|PT|F19.280|ICD10CM|Other psychoactive substance dependence with psychoactive substance-induced anxiety disorder|Other psychoactive substance dependence with psychoactive substance-induced anxiety disorder +C2874829|T048|AB|F19.281|ICD10CM|Oth psychoactive substance dependence w sexual dysfunction|Oth psychoactive substance dependence w sexual dysfunction +C2874829|T048|PT|F19.281|ICD10CM|Other psychoactive substance dependence with psychoactive substance-induced sexual dysfunction|Other psychoactive substance dependence with psychoactive substance-induced sexual dysfunction +C2874830|T048|AB|F19.282|ICD10CM|Oth psychoactive substance dependence w sleep disorder|Oth psychoactive substance dependence w sleep disorder +C2874830|T048|PT|F19.282|ICD10CM|Other psychoactive substance dependence with psychoactive substance-induced sleep disorder|Other psychoactive substance dependence with psychoactive substance-induced sleep disorder +C2874831|T048|AB|F19.288|ICD10CM|Oth psychoactive substance dependence w oth disorder|Oth psychoactive substance dependence w oth disorder +C2874831|T048|PT|F19.288|ICD10CM|Other psychoactive substance dependence with other psychoactive substance-induced disorder|Other psychoactive substance dependence with other psychoactive substance-induced disorder +C2874832|T048|AB|F19.29|ICD10CM|Oth psychoactive substance dependence w unsp disorder|Oth psychoactive substance dependence w unsp disorder +C2874832|T048|PT|F19.29|ICD10CM|Other psychoactive substance dependence with unspecified psychoactive substance-induced disorder|Other psychoactive substance dependence with unspecified psychoactive substance-induced disorder +C2874833|T048|AB|F19.9|ICD10CM|Other psychoactive substance use, unspecified|Other psychoactive substance use, unspecified +C2874833|T048|HT|F19.9|ICD10CM|Other psychoactive substance use, unspecified|Other psychoactive substance use, unspecified +C2874834|T048|AB|F19.90|ICD10CM|Other psychoactive substance use, unspecified, uncomplicated|Other psychoactive substance use, unspecified, uncomplicated +C2874834|T048|PT|F19.90|ICD10CM|Other psychoactive substance use, unspecified, uncomplicated|Other psychoactive substance use, unspecified, uncomplicated +C2874835|T048|AB|F19.92|ICD10CM|Other psychoactive substance use, unsp with intoxication|Other psychoactive substance use, unsp with intoxication +C2874835|T048|HT|F19.92|ICD10CM|Other psychoactive substance use, unspecified with intoxication|Other psychoactive substance use, unspecified with intoxication +C2874836|T048|AB|F19.920|ICD10CM|Oth psychoactive substance use, unsp w intoxication, uncomp|Oth psychoactive substance use, unsp w intoxication, uncomp +C2874836|T048|PT|F19.920|ICD10CM|Other psychoactive substance use, unspecified with intoxication, uncomplicated|Other psychoactive substance use, unspecified with intoxication, uncomplicated +C2874837|T048|AB|F19.921|ICD10CM|Oth psychoactive substance use, unsp w intox w delirium|Oth psychoactive substance use, unsp w intox w delirium +C0236692|T048|ET|F19.921|ICD10CM|Other (or unknown) substance-induced delirium|Other (or unknown) substance-induced delirium +C2874837|T048|PT|F19.921|ICD10CM|Other psychoactive substance use, unspecified with intoxication with delirium|Other psychoactive substance use, unspecified with intoxication with delirium +C2874838|T048|AB|F19.922|ICD10CM|Oth psychoactv sub use, unsp w intox w perceptl disturb|Oth psychoactv sub use, unsp w intox w perceptl disturb +C2874838|T048|PT|F19.922|ICD10CM|Other psychoactive substance use, unspecified with intoxication with perceptual disturbance|Other psychoactive substance use, unspecified with intoxication with perceptual disturbance +C2874839|T048|AB|F19.929|ICD10CM|Oth psychoactive substance use, unsp with intoxication, unsp|Oth psychoactive substance use, unsp with intoxication, unsp +C2874839|T048|PT|F19.929|ICD10CM|Other psychoactive substance use, unspecified with intoxication, unspecified|Other psychoactive substance use, unspecified with intoxication, unspecified +C2874840|T048|AB|F19.93|ICD10CM|Other psychoactive substance use, unsp with withdrawal|Other psychoactive substance use, unsp with withdrawal +C2874840|T048|HT|F19.93|ICD10CM|Other psychoactive substance use, unspecified with withdrawal|Other psychoactive substance use, unspecified with withdrawal +C2874841|T048|AB|F19.930|ICD10CM|Oth psychoactive substance use, unsp w withdrawal, uncomp|Oth psychoactive substance use, unsp w withdrawal, uncomp +C2874841|T048|PT|F19.930|ICD10CM|Other psychoactive substance use, unspecified with withdrawal, uncomplicated|Other psychoactive substance use, unspecified with withdrawal, uncomplicated +C2874842|T048|AB|F19.931|ICD10CM|Oth psychoactive substance use, unsp w withdrawal delirium|Oth psychoactive substance use, unsp w withdrawal delirium +C2874842|T048|PT|F19.931|ICD10CM|Other psychoactive substance use, unspecified with withdrawal delirium|Other psychoactive substance use, unspecified with withdrawal delirium +C2874843|T048|AB|F19.932|ICD10CM|Oth psychoactv sub use, unsp w w/drawal w perceptl disturb|Oth psychoactv sub use, unsp w w/drawal w perceptl disturb +C2874843|T048|PT|F19.932|ICD10CM|Other psychoactive substance use, unspecified with withdrawal with perceptual disturbance|Other psychoactive substance use, unspecified with withdrawal with perceptual disturbance +C2874844|T048|AB|F19.939|ICD10CM|Other psychoactive substance use, unsp with withdrawal, unsp|Other psychoactive substance use, unsp with withdrawal, unsp +C2874844|T048|PT|F19.939|ICD10CM|Other psychoactive substance use, unspecified with withdrawal, unspecified|Other psychoactive substance use, unspecified with withdrawal, unspecified +C2874845|T048|AB|F19.94|ICD10CM|Oth psychoactive substance use, unsp w mood disorder|Oth psychoactive substance use, unsp w mood disorder +C4268299|T048|ET|F19.94|ICD10CM|Other (or unknown) substance-induced bipolar or related disorder, without use disorder|Other (or unknown) substance-induced bipolar or related disorder, without use disorder +C4237270|T048|ET|F19.94|ICD10CM|Other (or unknown) substance-induced depressive disorder, without use disorder|Other (or unknown) substance-induced depressive disorder, without use disorder +C2874845|T048|PT|F19.94|ICD10CM|Other psychoactive substance use, unspecified with psychoactive substance-induced mood disorder|Other psychoactive substance use, unspecified with psychoactive substance-induced mood disorder +C2874846|T048|AB|F19.95|ICD10CM|Oth psychoactive substance use, unsp w psychotic disorder|Oth psychoactive substance use, unsp w psychotic disorder +C2874846|T048|HT|F19.95|ICD10CM|Other psychoactive substance use, unspecified with psychoactive substance-induced psychotic disorder|Other psychoactive substance use, unspecified with psychoactive substance-induced psychotic disorder +C2874847|T048|AB|F19.950|ICD10CM|Oth psychoactv sub use, unsp w psych disorder w delusions|Oth psychoactv sub use, unsp w psych disorder w delusions +C2874848|T048|AB|F19.951|ICD10CM|Oth psychoactv sub use, unsp w psych disorder w hallucin|Oth psychoactv sub use, unsp w psych disorder w hallucin +C2874849|T048|AB|F19.959|ICD10CM|Oth psychoactv substance use, unsp w psych disorder, unsp|Oth psychoactv substance use, unsp w psych disorder, unsp +C4237282|T048|ET|F19.959|ICD10CM|Other or unknown substance-induced psychotic disorder, without use disorder|Other or unknown substance-induced psychotic disorder, without use disorder +C2874850|T048|AB|F19.96|ICD10CM|Oth psychoactv sub use, unsp w persist amnestic disorder|Oth psychoactv sub use, unsp w persist amnestic disorder +C2874851|T048|AB|F19.97|ICD10CM|Oth psychoactive substance use, unsp w persisting dementia|Oth psychoactive substance use, unsp w persisting dementia +C4237273|T048|ET|F19.97|ICD10CM|Other (or unknown) substance-induced major neurocognitive disorder, without use disorder|Other (or unknown) substance-induced major neurocognitive disorder, without use disorder +C2874855|T048|AB|F19.98|ICD10CM|Oth psychoactive substance use, unsp w oth disorders|Oth psychoactive substance use, unsp w oth disorders +C2874855|T048|HT|F19.98|ICD10CM|Other psychoactive substance use, unspecified with other psychoactive substance-induced disorders|Other psychoactive substance use, unspecified with other psychoactive substance-induced disorders +C2874852|T048|AB|F19.980|ICD10CM|Oth psychoactive substance use, unsp w anxiety disorder|Oth psychoactive substance use, unsp w anxiety disorder +C4237264|T048|ET|F19.980|ICD10CM|Other (or unknown) substance-induced anxiety disorder, without use disorder|Other (or unknown) substance-induced anxiety disorder, without use disorder +C2874852|T048|PT|F19.980|ICD10CM|Other psychoactive substance use, unspecified with psychoactive substance-induced anxiety disorder|Other psychoactive substance use, unspecified with psychoactive substance-induced anxiety disorder +C2874853|T048|AB|F19.981|ICD10CM|Oth psychoactive substance use, unsp w sexual dysfunction|Oth psychoactive substance use, unsp w sexual dysfunction +C4237285|T048|ET|F19.981|ICD10CM|Other (or unknown) substance-induced sexual dysfunction, without use disorder|Other (or unknown) substance-induced sexual dysfunction, without use disorder +C2874853|T048|PT|F19.981|ICD10CM|Other psychoactive substance use, unspecified with psychoactive substance-induced sexual dysfunction|Other psychoactive substance use, unspecified with psychoactive substance-induced sexual dysfunction +C2874854|T048|AB|F19.982|ICD10CM|Oth psychoactive substance use, unsp w sleep disorder|Oth psychoactive substance use, unsp w sleep disorder +C4237288|T048|ET|F19.982|ICD10CM|Other (or unknown) substance-induced sleep disorder, without use disorder|Other (or unknown) substance-induced sleep disorder, without use disorder +C2874854|T048|PT|F19.982|ICD10CM|Other psychoactive substance use, unspecified with psychoactive substance-induced sleep disorder|Other psychoactive substance use, unspecified with psychoactive substance-induced sleep disorder +C2874855|T048|AB|F19.988|ICD10CM|Oth psychoactive substance use, unsp w oth disorder|Oth psychoactive substance use, unsp w oth disorder +C4237276|T048|ET|F19.988|ICD10CM|Other (or unknown) substance-induced mild neurocognitive disorder, without use disorder|Other (or unknown) substance-induced mild neurocognitive disorder, without use disorder +C4268300|T048|ET|F19.988|ICD10CM|Other (or unknown) substance-induced obsessive-compulsive or related disorder, without use disorder|Other (or unknown) substance-induced obsessive-compulsive or related disorder, without use disorder +C2874855|T048|PT|F19.988|ICD10CM|Other psychoactive substance use, unspecified with other psychoactive substance-induced disorder|Other psychoactive substance use, unspecified with other psychoactive substance-induced disorder +C2874856|T048|AB|F19.99|ICD10CM|Oth psychoactive substance use, unsp w unsp disorder|Oth psychoactive substance use, unsp w unsp disorder +C0036341|T048|HT|F20|ICD10|Schizophrenia|Schizophrenia +C0036341|T048|HT|F20|ICD10CM|Schizophrenia|Schizophrenia +C0036341|T048|AB|F20|ICD10CM|Schizophrenia|Schizophrenia +C2874857|T048|HT|F20-F29|ICD10CM|Schizophrenia, schizotypal, delusional, and other non-mood psychotic disorders (F20-F29)|Schizophrenia, schizotypal, delusional, and other non-mood psychotic disorders (F20-F29) +C0349192|T048|HT|F20-F29.9|ICD10|Schizophrenia, schizotypal and delusional disorders|Schizophrenia, schizotypal and delusional disorders +C0036349|T048|PT|F20.0|ICD10|Paranoid schizophrenia|Paranoid schizophrenia +C0036349|T048|PT|F20.0|ICD10CM|Paranoid schizophrenia|Paranoid schizophrenia +C0036349|T048|AB|F20.0|ICD10CM|Paranoid schizophrenia|Paranoid schizophrenia +C0036349|T048|ET|F20.0|ICD10CM|Paraphrenic schizophrenia|Paraphrenic schizophrenia +C0036347|T048|PT|F20.1|ICD10CM|Disorganized schizophrenia|Disorganized schizophrenia +C0036347|T048|AB|F20.1|ICD10CM|Disorganized schizophrenia|Disorganized schizophrenia +C0036347|T048|ET|F20.1|ICD10CM|Hebephrenia|Hebephrenia +C0036347|T048|ET|F20.1|ICD10CM|Hebephrenic schizophrenia|Hebephrenic schizophrenia +C0036347|T048|PT|F20.1|ICD10|Hebephrenic schizophrenia|Hebephrenic schizophrenia +C0036344|T048|PT|F20.2|ICD10|Catatonic schizophrenia|Catatonic schizophrenia +C0036344|T048|PT|F20.2|ICD10CM|Catatonic schizophrenia|Catatonic schizophrenia +C0036344|T048|AB|F20.2|ICD10CM|Catatonic schizophrenia|Catatonic schizophrenia +C0036344|T048|ET|F20.2|ICD10CM|Schizophrenic catalepsy|Schizophrenic catalepsy +C0036344|T048|ET|F20.2|ICD10CM|Schizophrenic catatonia|Schizophrenic catatonia +C0036344|T048|ET|F20.2|ICD10CM|Schizophrenic flexibilitas cerea|Schizophrenic flexibilitas cerea +C0392322|T048|ET|F20.3|ICD10CM|Atypical schizophrenia|Atypical schizophrenia +C0392322|T048|PT|F20.3|ICD10CM|Undifferentiated schizophrenia|Undifferentiated schizophrenia +C0392322|T048|AB|F20.3|ICD10CM|Undifferentiated schizophrenia|Undifferentiated schizophrenia +C0392322|T048|PT|F20.3|ICD10|Undifferentiated schizophrenia|Undifferentiated schizophrenia +C0338808|T048|PT|F20.4|ICD10|Post-schizophrenic depression|Post-schizophrenic depression +C0036351|T048|PT|F20.5|ICD10|Residual schizophrenia|Residual schizophrenia +C0036351|T048|PT|F20.5|ICD10CM|Residual schizophrenia|Residual schizophrenia +C0036351|T048|AB|F20.5|ICD10CM|Residual schizophrenia|Residual schizophrenia +C0036351|T048|ET|F20.5|ICD10CM|Restzustand (schizophrenic)|Restzustand (schizophrenic) +C0036351|T048|ET|F20.5|ICD10CM|Schizophrenic residual state|Schizophrenic residual state +C0221520|T048|PT|F20.6|ICD10|Simple schizophrenia|Simple schizophrenia +C0338798|T048|PT|F20.8|ICD10|Other schizophrenia|Other schizophrenia +C0338798|T048|HT|F20.8|ICD10CM|Other schizophrenia|Other schizophrenia +C0338798|T048|AB|F20.8|ICD10CM|Other schizophrenia|Other schizophrenia +C0036358|T048|PT|F20.81|ICD10CM|Schizophreniform disorder|Schizophreniform disorder +C0036358|T048|AB|F20.81|ICD10CM|Schizophreniform disorder|Schizophreniform disorder +C0865304|T048|ET|F20.81|ICD10CM|Schizophreniform psychosis NOS|Schizophreniform psychosis NOS +C0338807|T048|ET|F20.89|ICD10CM|Cenesthopathic schizophrenia|Cenesthopathic schizophrenia +C0338798|T048|PT|F20.89|ICD10CM|Other schizophrenia|Other schizophrenia +C0338798|T048|AB|F20.89|ICD10CM|Other schizophrenia|Other schizophrenia +C0221520|T048|ET|F20.89|ICD10CM|Simple schizophrenia|Simple schizophrenia +C0036341|T048|PT|F20.9|ICD10CM|Schizophrenia, unspecified|Schizophrenia, unspecified +C0036341|T048|AB|F20.9|ICD10CM|Schizophrenia, unspecified|Schizophrenia, unspecified +C0036341|T048|PT|F20.9|ICD10|Schizophrenia, unspecified|Schizophrenia, unspecified +C0036343|T048|ET|F21|ICD10CM|Borderline schizophrenia|Borderline schizophrenia +C0023105|T048|ET|F21|ICD10CM|Latent schizophrenia|Latent schizophrenia +C0023105|T048|ET|F21|ICD10CM|Latent schizophrenic reaction|Latent schizophrenic reaction +C0021151|T048|ET|F21|ICD10CM|Prepsychotic schizophrenia|Prepsychotic schizophrenia +C0021151|T048|ET|F21|ICD10CM|Prodromal schizophrenia|Prodromal schizophrenia +C0033823|T048|ET|F21|ICD10CM|Pseudoneurotic schizophrenia|Pseudoneurotic schizophrenia +C0033836|T048|ET|F21|ICD10CM|Pseudopsychopathic schizophrenia|Pseudopsychopathic schizophrenia +C1443045|T048|PT|F21|ICD10|Schizotypal disorder|Schizotypal disorder +C1443045|T048|PT|F21|ICD10CM|Schizotypal disorder|Schizotypal disorder +C1443045|T048|AB|F21|ICD10CM|Schizotypal disorder|Schizotypal disorder +C0036363|T048|ET|F21|ICD10CM|Schizotypal personality disorder|Schizotypal personality disorder +C0011251|T048|PT|F22|ICD10CM|Delusional disorders|Delusional disorders +C0011251|T048|AB|F22|ICD10CM|Delusional disorders|Delusional disorders +C0349691|T048|ET|F22|ICD10CM|Delusional dysmorphophobia|Delusional dysmorphophobia +C0701820|T048|ET|F22|ICD10CM|Involutional paranoid state|Involutional paranoid state +C1456784|T048|ET|F22|ICD10CM|Paranoia|Paranoia +C0338819|T048|ET|F22|ICD10CM|Paranoia querulans|Paranoia querulans +C1456784|T048|ET|F22|ICD10CM|Paranoid psychosis|Paranoid psychosis +C1456786|T048|ET|F22|ICD10CM|Paranoid state|Paranoid state +C1571983|T048|ET|F22|ICD10CM|Paraphrenia (late)|Paraphrenia (late) +C0338817|T048|HT|F22|ICD10|Persistent delusional disorders|Persistent delusional disorders +C0865321|T048|ET|F22|ICD10CM|Sensitiver Beziehungswahn|Sensitiver Beziehungswahn +C0011251|T048|PT|F22.0|ICD10|Delusional disorder|Delusional disorder +C0349193|T048|PT|F22.8|ICD10|Other persistent delusional disorders|Other persistent delusional disorders +C0338817|T048|PT|F22.9|ICD10|Persistent delusional disorder, unspecified|Persistent delusional disorder, unspecified +C0349198|T048|HT|F23|ICD10|Acute and transient psychotic disorders|Acute and transient psychotic disorders +C0033958|T048|PT|F23|ICD10CM|Brief psychotic disorder|Brief psychotic disorder +C0033958|T048|AB|F23|ICD10CM|Brief psychotic disorder|Brief psychotic disorder +C0151836|T048|ET|F23|ICD10CM|Paranoid reaction|Paranoid reaction +C0152126|T048|ET|F23|ICD10CM|Psychogenic paranoid psychosis|Psychogenic paranoid psychosis +C0349194|T048|PT|F23.0|ICD10|Acute polymorphic psychotic disorder without symptoms of schizophrenia|Acute polymorphic psychotic disorder without symptoms of schizophrenia +C0349195|T048|PT|F23.1|ICD10|Acute polymorphic psychotic disorder with symptoms of schizophrenia|Acute polymorphic psychotic disorder with symptoms of schizophrenia +C0349709|T048|PT|F23.2|ICD10|Acute schizophrenia-like psychotic disorder|Acute schizophrenia-like psychotic disorder +C0349196|T048|PT|F23.3|ICD10|Other acute predominantly delusional psychotic disorders|Other acute predominantly delusional psychotic disorders +C0349197|T048|PT|F23.8|ICD10|Other acute and transient psychotic disorders|Other acute and transient psychotic disorders +C0349198|T048|PT|F23.9|ICD10|Acute and transient psychotic disorder, unspecified|Acute and transient psychotic disorder, unspecified +C0036939|T048|ET|F24|ICD10CM|Folie à deux|Folie à deux +C0036939|T048|PT|F24|ICD10|Induced delusional disorder|Induced delusional disorder +C0036939|T048|ET|F24|ICD10CM|Induced paranoid disorder|Induced paranoid disorder +C0036939|T048|ET|F24|ICD10CM|Induced psychotic disorder|Induced psychotic disorder +C0036939|T048|PT|F24|ICD10CM|Shared psychotic disorder|Shared psychotic disorder +C0036939|T048|AB|F24|ICD10CM|Shared psychotic disorder|Shared psychotic disorder +C0036337|T048|AB|F25|ICD10CM|Schizoaffective disorders|Schizoaffective disorders +C0036337|T048|HT|F25|ICD10CM|Schizoaffective disorders|Schizoaffective disorders +C0036337|T048|HT|F25|ICD10|Schizoaffective disorders|Schizoaffective disorders +C1456872|T048|ET|F25.0|ICD10CM|Cyclic schizophrenia|Cyclic schizophrenia +C0270496|T048|PT|F25.0|ICD10CM|Schizoaffective disorder, bipolar type|Schizoaffective disorder, bipolar type +C0270496|T048|AB|F25.0|ICD10CM|Schizoaffective disorder, bipolar type|Schizoaffective disorder, bipolar type +C0349199|T048|ET|F25.0|ICD10CM|Schizoaffective disorder, manic type|Schizoaffective disorder, manic type +C0349199|T048|PT|F25.0|ICD10|Schizoaffective disorder, manic type|Schizoaffective disorder, manic type +C0349200|T048|ET|F25.0|ICD10CM|Schizoaffective disorder, mixed type|Schizoaffective disorder, mixed type +C2874858|T048|ET|F25.0|ICD10CM|Schizoaffective psychosis, bipolar type|Schizoaffective psychosis, bipolar type +C0270497|T048|PT|F25.1|ICD10CM|Schizoaffective disorder, depressive type|Schizoaffective disorder, depressive type +C0270497|T048|AB|F25.1|ICD10CM|Schizoaffective disorder, depressive type|Schizoaffective disorder, depressive type +C0270497|T048|PT|F25.1|ICD10|Schizoaffective disorder, depressive type|Schizoaffective disorder, depressive type +C1405641|T048|ET|F25.1|ICD10CM|Schizoaffective psychosis, depressive type|Schizoaffective psychosis, depressive type +C0349200|T048|PT|F25.2|ICD10|Schizoaffective disorder, mixed type|Schizoaffective disorder, mixed type +C0349201|T048|PT|F25.8|ICD10|Other schizoaffective disorders|Other schizoaffective disorders +C0349201|T048|PT|F25.8|ICD10CM|Other schizoaffective disorders|Other schizoaffective disorders +C0349201|T048|AB|F25.8|ICD10CM|Other schizoaffective disorders|Other schizoaffective disorders +C0036337|T048|PT|F25.9|ICD10|Schizoaffective disorder, unspecified|Schizoaffective disorder, unspecified +C0036337|T048|PT|F25.9|ICD10CM|Schizoaffective disorder, unspecified|Schizoaffective disorder, unspecified +C0036337|T048|AB|F25.9|ICD10CM|Schizoaffective disorder, unspecified|Schizoaffective disorder, unspecified +C0036337|T048|ET|F25.9|ICD10CM|Schizoaffective psychosis NOS|Schizoaffective psychosis NOS +C2874859|T048|ET|F28|ICD10CM|Chronic hallucinatory psychosis|Chronic hallucinatory psychosis +C2874860|T048|AB|F28|ICD10CM|Oth psych disorder not due to a sub or known physiol cond|Oth psych disorder not due to a sub or known physiol cond +C0349203|T048|PT|F28|ICD10|Other nonorganic psychotic disorders|Other nonorganic psychotic disorders +C2874860|T048|PT|F28|ICD10CM|Other psychotic disorder not due to a substance or known physiological condition|Other psychotic disorder not due to a substance or known physiological condition +C4237337|T048|ET|F28|ICD10CM|Other specified schizophrenia spectrum and other psychotic disorder|Other specified schizophrenia spectrum and other psychotic disorder +C0349204|T048|ET|F29|ICD10CM|Psychosis NOS|Psychosis NOS +C2874861|T048|AB|F29|ICD10CM|Unsp psychosis not due to a substance or known physiol cond|Unsp psychosis not due to a substance or known physiol cond +C0349204|T048|PT|F29|ICD10|Unspecified nonorganic psychosis|Unspecified nonorganic psychosis +C2874861|T048|PT|F29|ICD10CM|Unspecified psychosis not due to a substance or known physiological condition|Unspecified psychosis not due to a substance or known physiological condition +C4237481|T048|ET|F29|ICD10CM|Unspecified schizophrenia spectrum and other psychotic disorder|Unspecified schizophrenia spectrum and other psychotic disorder +C1389904|T048|ET|F30|ICD10CM|bipolar disorder, single manic episode|bipolar disorder, single manic episode +C0349208|T048|HT|F30|ICD10|Manic episode|Manic episode +C0349208|T048|HT|F30|ICD10CM|Manic episode|Manic episode +C0349208|T048|AB|F30|ICD10CM|Manic episode|Manic episode +C4290107|T048|ET|F30|ICD10CM|mixed affective episode|mixed affective episode +C0525045|T048|HT|F30-F39|ICD10CM|Mood [affective] disorders (F30-F39)|Mood [affective] disorders (F30-F39) +C0525045|T048|HT|F30-F39.9|ICD10|Mood [affective] disorders|Mood [affective] disorders +C0241934|T033|PT|F30.0|ICD10|Hypomania|Hypomania +C0349205|T048|PT|F30.1|ICD10|Mania without psychotic symptoms|Mania without psychotic symptoms +C2874863|T048|HT|F30.1|ICD10CM|Manic episode without psychotic symptoms|Manic episode without psychotic symptoms +C2874863|T048|AB|F30.1|ICD10CM|Manic episode without psychotic symptoms|Manic episode without psychotic symptoms +C2874863|T048|AB|F30.10|ICD10CM|Manic episode without psychotic symptoms, unspecified|Manic episode without psychotic symptoms, unspecified +C2874863|T048|PT|F30.10|ICD10CM|Manic episode without psychotic symptoms, unspecified|Manic episode without psychotic symptoms, unspecified +C2874864|T048|AB|F30.11|ICD10CM|Manic episode without psychotic symptoms, mild|Manic episode without psychotic symptoms, mild +C2874864|T048|PT|F30.11|ICD10CM|Manic episode without psychotic symptoms, mild|Manic episode without psychotic symptoms, mild +C2874865|T048|AB|F30.12|ICD10CM|Manic episode without psychotic symptoms, moderate|Manic episode without psychotic symptoms, moderate +C2874865|T048|PT|F30.12|ICD10CM|Manic episode without psychotic symptoms, moderate|Manic episode without psychotic symptoms, moderate +C2874866|T048|AB|F30.13|ICD10CM|Manic episode, severe, without psychotic symptoms|Manic episode, severe, without psychotic symptoms +C2874866|T048|PT|F30.13|ICD10CM|Manic episode, severe, without psychotic symptoms|Manic episode, severe, without psychotic symptoms +C2874867|T048|ET|F30.2|ICD10CM|Mania with mood-congruent psychotic symptoms|Mania with mood-congruent psychotic symptoms +C2874868|T048|ET|F30.2|ICD10CM|Mania with mood-incongruent psychotic symptoms|Mania with mood-incongruent psychotic symptoms +C0349206|T048|PT|F30.2|ICD10|Mania with psychotic symptoms|Mania with psychotic symptoms +C2874869|T048|AB|F30.2|ICD10CM|Manic episode, severe with psychotic symptoms|Manic episode, severe with psychotic symptoms +C2874869|T048|PT|F30.2|ICD10CM|Manic episode, severe with psychotic symptoms|Manic episode, severe with psychotic symptoms +C0338846|T048|ET|F30.2|ICD10CM|Manic stupor|Manic stupor +C2874870|T048|AB|F30.3|ICD10CM|Manic episode in partial remission|Manic episode in partial remission +C2874870|T048|PT|F30.3|ICD10CM|Manic episode in partial remission|Manic episode in partial remission +C2874871|T048|AB|F30.4|ICD10CM|Manic episode in full remission|Manic episode in full remission +C2874871|T048|PT|F30.4|ICD10CM|Manic episode in full remission|Manic episode in full remission +C0241934|T033|ET|F30.8|ICD10CM|Hypomania|Hypomania +C0349207|T048|PT|F30.8|ICD10CM|Other manic episodes|Other manic episodes +C0349207|T048|AB|F30.8|ICD10CM|Other manic episodes|Other manic episodes +C0349207|T048|PT|F30.8|ICD10|Other manic episodes|Other manic episodes +C0338831|T048|ET|F30.9|ICD10CM|Mania NOS|Mania NOS +C0349208|T048|PT|F30.9|ICD10|Manic episode, unspecified|Manic episode, unspecified +C0349208|T048|PT|F30.9|ICD10CM|Manic episode, unspecified|Manic episode, unspecified +C0349208|T048|AB|F30.9|ICD10CM|Manic episode, unspecified|Manic episode, unspecified +C0005586|T048|HT|F31|ICD10|Bipolar affective disorder|Bipolar affective disorder +C0005586|T048|HT|F31|ICD10CM|Bipolar disorder|Bipolar disorder +C0005586|T048|AB|F31|ICD10CM|Bipolar disorder|Bipolar disorder +C0853193|T048|ET|F31|ICD10CM|bipolar I disorder|bipolar I disorder +C4509113|T048|ET|F31|ICD10CM|bipolar type I disorder|bipolar type I disorder +C0005586|T048|ET|F31|ICD10CM|manic-depressive illness|manic-depressive illness +C1852197|T048|ET|F31|ICD10CM|manic-depressive psychosis|manic-depressive psychosis +C0005586|T048|ET|F31|ICD10CM|manic-depressive reaction|manic-depressive reaction +C0236765|T048|PT|F31.0|ICD10|Bipolar affective disorder, current episode hypomanic|Bipolar affective disorder, current episode hypomanic +C2874872|T048|AB|F31.0|ICD10CM|Bipolar disorder, current episode hypomanic|Bipolar disorder, current episode hypomanic +C2874872|T048|PT|F31.0|ICD10CM|Bipolar disorder, current episode hypomanic|Bipolar disorder, current episode hypomanic +C0349210|T048|PT|F31.1|ICD10|Bipolar affective disorder, current episode manic without psychotic symptoms|Bipolar affective disorder, current episode manic without psychotic symptoms +C2874874|T048|AB|F31.1|ICD10CM|Bipolar disorder, current episode manic w/o psych features|Bipolar disorder, current episode manic w/o psych features +C2874874|T048|HT|F31.1|ICD10CM|Bipolar disorder, current episode manic without psychotic features|Bipolar disorder, current episode manic without psychotic features +C2874874|T048|AB|F31.10|ICD10CM|Bipolar disord, crnt episode manic w/o psych features, unsp|Bipolar disord, crnt episode manic w/o psych features, unsp +C2874874|T048|PT|F31.10|ICD10CM|Bipolar disorder, current episode manic without psychotic features, unspecified|Bipolar disorder, current episode manic without psychotic features, unspecified +C2874875|T048|AB|F31.11|ICD10CM|Bipolar disord, crnt episode manic w/o psych features, mild|Bipolar disord, crnt episode manic w/o psych features, mild +C2874875|T048|PT|F31.11|ICD10CM|Bipolar disorder, current episode manic without psychotic features, mild|Bipolar disorder, current episode manic without psychotic features, mild +C2874876|T048|AB|F31.12|ICD10CM|Bipolar disord, crnt episode manic w/o psych features, mod|Bipolar disord, crnt episode manic w/o psych features, mod +C2874876|T048|PT|F31.12|ICD10CM|Bipolar disorder, current episode manic without psychotic features, moderate|Bipolar disorder, current episode manic without psychotic features, moderate +C2874877|T048|AB|F31.13|ICD10CM|Bipolar disord, crnt epsd manic w/o psych features, severe|Bipolar disord, crnt epsd manic w/o psych features, severe +C2874877|T048|PT|F31.13|ICD10CM|Bipolar disorder, current episode manic without psychotic features, severe|Bipolar disorder, current episode manic without psychotic features, severe +C0349211|T048|PT|F31.2|ICD10|Bipolar affective disorder, current episode manic with psychotic symptoms|Bipolar affective disorder, current episode manic with psychotic symptoms +C2874880|T048|AB|F31.2|ICD10CM|Bipolar disord, crnt episode manic severe w psych features|Bipolar disord, crnt episode manic severe w psych features +C2874880|T048|PT|F31.2|ICD10CM|Bipolar disorder, current episode manic severe with psychotic features|Bipolar disorder, current episode manic severe with psychotic features +C2874878|T048|ET|F31.2|ICD10CM|Bipolar disorder, current episode manic with mood-congruent psychotic symptoms|Bipolar disorder, current episode manic with mood-congruent psychotic symptoms +C2874879|T048|ET|F31.2|ICD10CM|Bipolar disorder, current episode manic with mood-incongruent psychotic symptoms|Bipolar disorder, current episode manic with mood-incongruent psychotic symptoms +C4237007|T048|ET|F31.2|ICD10CM|Bipolar I disorder, current or most recent episode manic with psychotic features|Bipolar I disorder, current or most recent episode manic with psychotic features +C0349212|T048|PT|F31.3|ICD10|Bipolar affective disorder, current episode mild or moderate depression|Bipolar affective disorder, current episode mild or moderate depression +C2874882|T048|AB|F31.3|ICD10CM|Bipolar disord, current episode depress, mild or mod severt|Bipolar disord, current episode depress, mild or mod severt +C2874882|T048|HT|F31.3|ICD10CM|Bipolar disorder, current episode depressed, mild or moderate severity|Bipolar disorder, current episode depressed, mild or moderate severity +C2874882|T048|AB|F31.30|ICD10CM|Bipolar disord, crnt epsd depress, mild or mod severt, unsp|Bipolar disord, crnt epsd depress, mild or mod severt, unsp +C2874882|T048|PT|F31.30|ICD10CM|Bipolar disorder, current episode depressed, mild or moderate severity, unspecified|Bipolar disorder, current episode depressed, mild or moderate severity, unspecified +C2874883|T048|AB|F31.31|ICD10CM|Bipolar disorder, current episode depressed, mild|Bipolar disorder, current episode depressed, mild +C2874883|T048|PT|F31.31|ICD10CM|Bipolar disorder, current episode depressed, mild|Bipolar disorder, current episode depressed, mild +C2874884|T048|AB|F31.32|ICD10CM|Bipolar disorder, current episode depressed, moderate|Bipolar disorder, current episode depressed, moderate +C2874884|T048|PT|F31.32|ICD10CM|Bipolar disorder, current episode depressed, moderate|Bipolar disorder, current episode depressed, moderate +C0349213|T048|PT|F31.4|ICD10|Bipolar affective disorder, current episode severe depression without psychotic symptoms|Bipolar affective disorder, current episode severe depression without psychotic symptoms +C2874885|T048|AB|F31.4|ICD10CM|Bipolar disord, crnt epsd depress, sev, w/o psych features|Bipolar disord, crnt epsd depress, sev, w/o psych features +C2874885|T048|PT|F31.4|ICD10CM|Bipolar disorder, current episode depressed, severe, without psychotic features|Bipolar disorder, current episode depressed, severe, without psychotic features +C0494396|T048|PT|F31.5|ICD10|Bipolar affective disorder, current episode severe depression with psychotic symptoms|Bipolar affective disorder, current episode severe depression with psychotic symptoms +C2874888|T048|AB|F31.5|ICD10CM|Bipolar disord, crnt epsd depress, severe, w psych features|Bipolar disord, crnt epsd depress, severe, w psych features +C2874886|T048|ET|F31.5|ICD10CM|Bipolar disorder, current episode depressed with mood-congruent psychotic symptoms|Bipolar disorder, current episode depressed with mood-congruent psychotic symptoms +C2874887|T048|ET|F31.5|ICD10CM|Bipolar disorder, current episode depressed with mood-incongruent psychotic symptoms|Bipolar disorder, current episode depressed with mood-incongruent psychotic symptoms +C2874888|T048|PT|F31.5|ICD10CM|Bipolar disorder, current episode depressed, severe, with psychotic features|Bipolar disorder, current episode depressed, severe, with psychotic features +C4237000|T048|ET|F31.5|ICD10CM|Bipolar I disorder, current or most recent episode depressed, with psychotic features|Bipolar I disorder, current or most recent episode depressed, with psychotic features +C2939428|T048|PT|F31.6|ICD10|Bipolar affective disorder, current episode mixed|Bipolar affective disorder, current episode mixed +C2874890|T048|AB|F31.6|ICD10CM|Bipolar disorder, current episode mixed|Bipolar disorder, current episode mixed +C2874890|T048|HT|F31.6|ICD10CM|Bipolar disorder, current episode mixed|Bipolar disorder, current episode mixed +C2874890|T048|AB|F31.60|ICD10CM|Bipolar disorder, current episode mixed, unspecified|Bipolar disorder, current episode mixed, unspecified +C2874890|T048|PT|F31.60|ICD10CM|Bipolar disorder, current episode mixed, unspecified|Bipolar disorder, current episode mixed, unspecified +C2874891|T048|AB|F31.61|ICD10CM|Bipolar disorder, current episode mixed, mild|Bipolar disorder, current episode mixed, mild +C2874891|T048|PT|F31.61|ICD10CM|Bipolar disorder, current episode mixed, mild|Bipolar disorder, current episode mixed, mild +C2874892|T048|AB|F31.62|ICD10CM|Bipolar disorder, current episode mixed, moderate|Bipolar disorder, current episode mixed, moderate +C2874892|T048|PT|F31.62|ICD10CM|Bipolar disorder, current episode mixed, moderate|Bipolar disorder, current episode mixed, moderate +C2874893|T048|AB|F31.63|ICD10CM|Bipolar disord, crnt epsd mixed, severe, w/o psych features|Bipolar disord, crnt epsd mixed, severe, w/o psych features +C2874893|T048|PT|F31.63|ICD10CM|Bipolar disorder, current episode mixed, severe, without psychotic features|Bipolar disorder, current episode mixed, severe, without psychotic features +C2874896|T048|AB|F31.64|ICD10CM|Bipolar disord, crnt episode mixed, severe, w psych features|Bipolar disord, crnt episode mixed, severe, w psych features +C2874894|T048|ET|F31.64|ICD10CM|Bipolar disorder, current episode mixed with mood-congruent psychotic symptoms|Bipolar disorder, current episode mixed with mood-congruent psychotic symptoms +C2874895|T048|ET|F31.64|ICD10CM|Bipolar disorder, current episode mixed with mood-incongruent psychotic symptoms|Bipolar disorder, current episode mixed with mood-incongruent psychotic symptoms +C2874896|T048|PT|F31.64|ICD10CM|Bipolar disorder, current episode mixed, severe, with psychotic features|Bipolar disorder, current episode mixed, severe, with psychotic features +C0349214|T048|PT|F31.7|ICD10|Bipolar affective disorder, currently in remission|Bipolar affective disorder, currently in remission +C2874897|T048|AB|F31.7|ICD10CM|Bipolar disorder, currently in remission|Bipolar disorder, currently in remission +C2874897|T048|HT|F31.7|ICD10CM|Bipolar disorder, currently in remission|Bipolar disorder, currently in remission +C2874898|T048|AB|F31.70|ICD10CM|Bipolar disord, currently in remis, most recent episode unsp|Bipolar disord, currently in remis, most recent episode unsp +C2874898|T048|PT|F31.70|ICD10CM|Bipolar disorder, currently in remission, most recent episode unspecified|Bipolar disorder, currently in remission, most recent episode unspecified +C2874899|T048|AB|F31.71|ICD10CM|Bipolar disord, in partial remis, most recent epsd hypomanic|Bipolar disord, in partial remis, most recent epsd hypomanic +C2874899|T048|PT|F31.71|ICD10CM|Bipolar disorder, in partial remission, most recent episode hypomanic|Bipolar disorder, in partial remission, most recent episode hypomanic +C2874900|T048|AB|F31.72|ICD10CM|Bipolar disord, in full remis, most recent episode hypomanic|Bipolar disord, in full remis, most recent episode hypomanic +C2874900|T048|PT|F31.72|ICD10CM|Bipolar disorder, in full remission, most recent episode hypomanic|Bipolar disorder, in full remission, most recent episode hypomanic +C2874901|T048|AB|F31.73|ICD10CM|Bipolar disord, in partial remis, most recent episode manic|Bipolar disord, in partial remis, most recent episode manic +C2874901|T048|PT|F31.73|ICD10CM|Bipolar disorder, in partial remission, most recent episode manic|Bipolar disorder, in partial remission, most recent episode manic +C2874902|T048|AB|F31.74|ICD10CM|Bipolar disorder, in full remis, most recent episode manic|Bipolar disorder, in full remis, most recent episode manic +C2874902|T048|PT|F31.74|ICD10CM|Bipolar disorder, in full remission, most recent episode manic|Bipolar disorder, in full remission, most recent episode manic +C2874903|T048|AB|F31.75|ICD10CM|Bipolar disord, in partial remis, most recent epsd depress|Bipolar disord, in partial remis, most recent epsd depress +C2874903|T048|PT|F31.75|ICD10CM|Bipolar disorder, in partial remission, most recent episode depressed|Bipolar disorder, in partial remission, most recent episode depressed +C2874904|T048|AB|F31.76|ICD10CM|Bipolar disorder, in full remis, most recent episode depress|Bipolar disorder, in full remis, most recent episode depress +C2874904|T048|PT|F31.76|ICD10CM|Bipolar disorder, in full remission, most recent episode depressed|Bipolar disorder, in full remission, most recent episode depressed +C2874905|T048|AB|F31.77|ICD10CM|Bipolar disord, in partial remis, most recent episode mixed|Bipolar disord, in partial remis, most recent episode mixed +C2874905|T048|PT|F31.77|ICD10CM|Bipolar disorder, in partial remission, most recent episode mixed|Bipolar disorder, in partial remission, most recent episode mixed +C2874906|T048|AB|F31.78|ICD10CM|Bipolar disorder, in full remis, most recent episode mixed|Bipolar disorder, in full remis, most recent episode mixed +C2874906|T048|PT|F31.78|ICD10CM|Bipolar disorder, in full remission, most recent episode mixed|Bipolar disorder, in full remission, most recent episode mixed +C0349215|T048|PT|F31.8|ICD10|Other bipolar affective disorders|Other bipolar affective disorders +C1456308|T048|HT|F31.8|ICD10CM|Other bipolar disorders|Other bipolar disorders +C1456308|T048|AB|F31.8|ICD10CM|Other bipolar disorders|Other bipolar disorders +C0236788|T048|ET|F31.81|ICD10CM|Bipolar disorder, type 2|Bipolar disorder, type 2 +C0236788|T048|PT|F31.81|ICD10CM|Bipolar II disorder|Bipolar II disorder +C0236788|T048|AB|F31.81|ICD10CM|Bipolar II disorder|Bipolar II disorder +C1456308|T048|PT|F31.89|ICD10CM|Other bipolar disorder|Other bipolar disorder +C1456308|T048|AB|F31.89|ICD10CM|Other bipolar disorder|Other bipolar disorder +C0338832|T048|ET|F31.89|ICD10CM|Recurrent manic episodes NOS|Recurrent manic episodes NOS +C0005586|T048|PT|F31.9|ICD10|Bipolar affective disorder, unspecified|Bipolar affective disorder, unspecified +C0005586|T048|PT|F31.9|ICD10CM|Bipolar disorder, unspecified|Bipolar disorder, unspecified +C0005586|T048|AB|F31.9|ICD10CM|Bipolar disorder, unspecified|Bipolar disorder, unspecified +C0005586|T048|ET|F31.9|ICD10CM|Manic depression|Manic depression +C0349217|T048|HT|F32|ICD10|Depressive episode|Depressive episode +C0024517|T048|HT|F32|ICD10CM|Major depressive disorder, single episode|Major depressive disorder, single episode +C0024517|T048|AB|F32|ICD10CM|Major depressive disorder, single episode|Major depressive disorder, single episode +C4290108|T048|ET|F32|ICD10CM|single episode of agitated depression|single episode of agitated depression +C4290109|T048|ET|F32|ICD10CM|single episode of depressive reaction|single episode of depressive reaction +C0024517|T048|ET|F32|ICD10CM|single episode of major depression|single episode of major depression +C4290110|T048|ET|F32|ICD10CM|single episode of psychogenic depression|single episode of psychogenic depression +C4290111|T048|ET|F32|ICD10CM|single episode of reactive depression|single episode of reactive depression +C1395203|T048|ET|F32|ICD10CM|single episode of vital depression|single episode of vital depression +C0154403|T048|AB|F32.0|ICD10CM|Major depressive disorder, single episode, mild|Major depressive disorder, single episode, mild +C0154403|T048|PT|F32.0|ICD10CM|Major depressive disorder, single episode, mild|Major depressive disorder, single episode, mild +C0494397|T048|PT|F32.0|ICD10|Mild depressive episode|Mild depressive episode +C0154404|T048|AB|F32.1|ICD10CM|Major depressive disorder, single episode, moderate|Major depressive disorder, single episode, moderate +C0154404|T048|PT|F32.1|ICD10CM|Major depressive disorder, single episode, moderate|Major depressive disorder, single episode, moderate +C0494398|T048|PT|F32.1|ICD10|Moderate depressive episode|Moderate depressive episode +C0154405|T048|PT|F32.2|ICD10CM|Major depressive disorder, single episode, severe without psychotic features|Major depressive disorder, single episode, severe without psychotic features +C0154405|T048|AB|F32.2|ICD10CM|Major depressv disord, single epsd, sev w/o psych features|Major depressv disord, single epsd, sev w/o psych features +C0494399|T048|PT|F32.2|ICD10|Severe depressive episode without psychotic symptoms|Severe depressive episode without psychotic symptoms +C0154406|T048|PT|F32.3|ICD10CM|Major depressive disorder, single episode, severe with psychotic features|Major depressive disorder, single episode, severe with psychotic features +C0154406|T048|AB|F32.3|ICD10CM|Major depressv disord, single epsd, severe w psych features|Major depressv disord, single epsd, severe w psych features +C0494400|T048|PT|F32.3|ICD10|Severe depressive episode with psychotic symptoms|Severe depressive episode with psychotic symptoms +C2874911|T048|ET|F32.3|ICD10CM|Single episode of major depression with mood-congruent psychotic symptoms|Single episode of major depression with mood-congruent psychotic symptoms +C2874912|T048|ET|F32.3|ICD10CM|Single episode of major depression with mood-incongruent psychotic symptoms|Single episode of major depression with mood-incongruent psychotic symptoms +C2874913|T048|ET|F32.3|ICD10CM|Single episode of major depression with psychotic symptoms|Single episode of major depression with psychotic symptoms +C2874914|T048|ET|F32.3|ICD10CM|Single episode of psychogenic depressive psychosis|Single episode of psychogenic depressive psychosis +C2874915|T048|ET|F32.3|ICD10CM|Single episode of psychotic depression|Single episode of psychotic depression +C2874916|T048|ET|F32.3|ICD10CM|Single episode of reactive depressive psychosis|Single episode of reactive depressive psychosis +C0236763|T048|PT|F32.4|ICD10CM|Major depressive disorder, single episode, in partial remission|Major depressive disorder, single episode, in partial remission +C0236763|T048|AB|F32.4|ICD10CM|Major depressv disorder, single episode, in partial remis|Major depressv disorder, single episode, in partial remis +C0154408|T048|AB|F32.5|ICD10CM|Major depressive disorder, single episode, in full remission|Major depressive disorder, single episode, in full remission +C0154408|T048|PT|F32.5|ICD10CM|Major depressive disorder, single episode, in full remission|Major depressive disorder, single episode, in full remission +C0349216|T048|PT|F32.8|ICD10|Other depressive episodes|Other depressive episodes +C0349216|T048|AB|F32.8|ICD10CM|Other depressive episodes|Other depressive episodes +C0349216|T048|HT|F32.8|ICD10CM|Other depressive episodes|Other depressive episodes +C0520676|T048|PT|F32.81|ICD10CM|Premenstrual dysphoric disorder|Premenstrual dysphoric disorder +C0520676|T048|AB|F32.81|ICD10CM|Premenstrual dysphoric disorder|Premenstrual dysphoric disorder +C0154437|T048|ET|F32.89|ICD10CM|Atypical depression|Atypical depression +C4268301|T048|AB|F32.89|ICD10CM|Other specified depressive episodes|Other specified depressive episodes +C4268301|T048|PT|F32.89|ICD10CM|Other specified depressive episodes|Other specified depressive episodes +C0338808|T048|ET|F32.89|ICD10CM|Post-schizophrenic depression|Post-schizophrenic depression +C4268302|T048|ET|F32.89|ICD10CM|Single episode of 'masked' depression NOS|Single episode of 'masked' depression NOS +C0011570|T048|ET|F32.9|ICD10CM|Depression NOS|Depression NOS +C0011581|T048|ET|F32.9|ICD10CM|Depressive disorder NOS|Depressive disorder NOS +C0349217|T048|PT|F32.9|ICD10|Depressive episode, unspecified|Depressive episode, unspecified +C1269683|T048|ET|F32.9|ICD10CM|Major depression NOS|Major depression NOS +C0024517|T048|AB|F32.9|ICD10CM|Major depressive disorder, single episode, unspecified|Major depressive disorder, single episode, unspecified +C0024517|T048|PT|F32.9|ICD10CM|Major depressive disorder, single episode, unspecified|Major depressive disorder, single episode, unspecified +C0154409|T048|AB|F33|ICD10CM|Major depressive disorder, recurrent|Major depressive disorder, recurrent +C0154409|T048|HT|F33|ICD10CM|Major depressive disorder, recurrent|Major depressive disorder, recurrent +C0349218|T048|HT|F33|ICD10|Recurrent depressive disorder|Recurrent depressive disorder +C4290112|T048|ET|F33|ICD10CM|recurrent episodes of depressive reaction|recurrent episodes of depressive reaction +C4290113|T048|ET|F33|ICD10CM|recurrent episodes of endogenous depression|recurrent episodes of endogenous depression +C0154409|T048|ET|F33|ICD10CM|recurrent episodes of major depression|recurrent episodes of major depression +C4290114|T048|ET|F33|ICD10CM|recurrent episodes of psychogenic depression|recurrent episodes of psychogenic depression +C4290115|T048|ET|F33|ICD10CM|recurrent episodes of reactive depression|recurrent episodes of reactive depression +C4290116|T048|ET|F33|ICD10CM|recurrent episodes of seasonal depressive disorder|recurrent episodes of seasonal depressive disorder +C4290117|T048|ET|F33|ICD10CM|recurrent episodes of vital depression|recurrent episodes of vital depression +C0154410|T048|AB|F33.0|ICD10CM|Major depressive disorder, recurrent, mild|Major depressive disorder, recurrent, mild +C0154410|T048|PT|F33.0|ICD10CM|Major depressive disorder, recurrent, mild|Major depressive disorder, recurrent, mild +C0349219|T048|PT|F33.0|ICD10|Recurrent depressive disorder, current episode mild|Recurrent depressive disorder, current episode mild +C0154411|T048|AB|F33.1|ICD10CM|Major depressive disorder, recurrent, moderate|Major depressive disorder, recurrent, moderate +C0154411|T048|PT|F33.1|ICD10CM|Major depressive disorder, recurrent, moderate|Major depressive disorder, recurrent, moderate +C0154411|T048|PT|F33.1|ICD10|Recurrent depressive disorder, current episode moderate|Recurrent depressive disorder, current episode moderate +C0154412|T048|PT|F33.2|ICD10CM|Major depressive disorder, recurrent severe without psychotic features|Major depressive disorder, recurrent severe without psychotic features +C0154412|T048|AB|F33.2|ICD10CM|Major depressv disorder, recurrent severe w/o psych features|Major depressv disorder, recurrent severe w/o psych features +C0154412|T048|PT|F33.2|ICD10|Recurrent depressive disorder, current episode severe without psychotic symptoms|Recurrent depressive disorder, current episode severe without psychotic symptoms +C1395188|T048|ET|F33.3|ICD10CM|Endogenous depression with psychotic symptoms|Endogenous depression with psychotic symptoms +C0154413|T048|PT|F33.3|ICD10CM|Major depressive disorder, recurrent, severe with psychotic symptoms|Major depressive disorder, recurrent, severe with psychotic symptoms +C0743078|T048|ET|F33.3|ICD10CM|Major depressive disorder, recurrent, with psychotic features|Major depressive disorder, recurrent, with psychotic features +C0154413|T048|AB|F33.3|ICD10CM|Major depressv disorder, recurrent, severe w psych symptoms|Major depressv disorder, recurrent, severe w psych symptoms +C0154413|T048|PT|F33.3|ICD10|Recurrent depressive disorder, current episode severe with psychotic symptoms|Recurrent depressive disorder, current episode severe with psychotic symptoms +C2874925|T048|ET|F33.3|ICD10CM|Recurrent severe episodes of major depression with mood-congruent psychotic symptoms|Recurrent severe episodes of major depression with mood-congruent psychotic symptoms +C2874926|T048|ET|F33.3|ICD10CM|Recurrent severe episodes of major depression with mood-incongruent psychotic symptoms|Recurrent severe episodes of major depression with mood-incongruent psychotic symptoms +C2874927|T048|ET|F33.3|ICD10CM|Recurrent severe episodes of major depression with psychotic symptoms|Recurrent severe episodes of major depression with psychotic symptoms +C2874928|T048|ET|F33.3|ICD10CM|Recurrent severe episodes of psychogenic depressive psychosis|Recurrent severe episodes of psychogenic depressive psychosis +C2874929|T048|ET|F33.3|ICD10CM|Recurrent severe episodes of psychotic depression|Recurrent severe episodes of psychotic depression +C2874930|T048|ET|F33.3|ICD10CM|Recurrent severe episodes of reactive depressive psychosis|Recurrent severe episodes of reactive depressive psychosis +C2874933|T048|AB|F33.4|ICD10CM|Major depressive disorder, recurrent, in remission|Major depressive disorder, recurrent, in remission +C2874933|T048|HT|F33.4|ICD10CM|Major depressive disorder, recurrent, in remission|Major depressive disorder, recurrent, in remission +C0270477|T048|PT|F33.4|ICD10|Recurrent depressive disorder, currently in remission|Recurrent depressive disorder, currently in remission +C2874933|T048|AB|F33.40|ICD10CM|Major depressive disorder, recurrent, in remission, unsp|Major depressive disorder, recurrent, in remission, unsp +C2874933|T048|PT|F33.40|ICD10CM|Major depressive disorder, recurrent, in remission, unspecified|Major depressive disorder, recurrent, in remission, unspecified +C0236764|T048|AB|F33.41|ICD10CM|Major depressive disorder, recurrent, in partial remission|Major depressive disorder, recurrent, in partial remission +C0236764|T048|PT|F33.41|ICD10CM|Major depressive disorder, recurrent, in partial remission|Major depressive disorder, recurrent, in partial remission +C3665667|T048|AB|F33.42|ICD10CM|Major depressive disorder, recurrent, in full remission|Major depressive disorder, recurrent, in full remission +C3665667|T048|PT|F33.42|ICD10CM|Major depressive disorder, recurrent, in full remission|Major depressive disorder, recurrent, in full remission +C0349221|T048|PT|F33.8|ICD10CM|Other recurrent depressive disorders|Other recurrent depressive disorders +C0349221|T048|AB|F33.8|ICD10CM|Other recurrent depressive disorders|Other recurrent depressive disorders +C0349221|T048|PT|F33.8|ICD10|Other recurrent depressive disorders|Other recurrent depressive disorders +C2874934|T048|ET|F33.8|ICD10CM|Recurrent brief depressive episodes|Recurrent brief depressive episodes +C0154409|T048|AB|F33.9|ICD10CM|Major depressive disorder, recurrent, unspecified|Major depressive disorder, recurrent, unspecified +C0154409|T048|PT|F33.9|ICD10CM|Major depressive disorder, recurrent, unspecified|Major depressive disorder, recurrent, unspecified +C0011570|T048|ET|F33.9|ICD10CM|Monopolar depression NOS|Monopolar depression NOS +C0349218|T048|PT|F33.9|ICD10|Recurrent depressive disorder, unspecified|Recurrent depressive disorder, unspecified +C0349224|T048|HT|F34|ICD10|Persistent mood [affective] disorders|Persistent mood [affective] disorders +C0349224|T048|AB|F34|ICD10CM|Persistent mood [affective] disorders|Persistent mood [affective] disorders +C0349224|T048|HT|F34|ICD10CM|Persistent mood [affective] disorders|Persistent mood [affective] disorders +C0010598|T048|ET|F34.0|ICD10CM|Affective personality disorder|Affective personality disorder +C0010598|T048|ET|F34.0|ICD10CM|Cycloid personality|Cycloid personality +C0010598|T048|ET|F34.0|ICD10CM|Cyclothymia|Cyclothymia +C0010598|T048|PT|F34.0|ICD10|Cyclothymia|Cyclothymia +C0010598|T048|PT|F34.0|ICD10CM|Cyclothymic disorder|Cyclothymic disorder +C0010598|T048|AB|F34.0|ICD10CM|Cyclothymic disorder|Cyclothymic disorder +C0010598|T048|ET|F34.0|ICD10CM|Cyclothymic personality|Cyclothymic personality +C0011581|T048|ET|F34.1|ICD10CM|Depressive neurosis|Depressive neurosis +C0302874|T048|ET|F34.1|ICD10CM|Depressive personality disorder|Depressive personality disorder +C0013415|T048|ET|F34.1|ICD10CM|Dysthymia|Dysthymia +C0013415|T048|PT|F34.1|ICD10|Dysthymia|Dysthymia +C0013415|T048|PT|F34.1|ICD10CM|Dysthymic disorder|Dysthymic disorder +C0013415|T048|AB|F34.1|ICD10CM|Dysthymic disorder|Dysthymic disorder +C0282126|T048|ET|F34.1|ICD10CM|Neurotic depression|Neurotic depression +C1387804|T048|ET|F34.1|ICD10CM|Persistent anxiety depression|Persistent anxiety depression +C4087263|T048|ET|F34.1|ICD10CM|Persistent depressive disorder|Persistent depressive disorder +C0349223|T048|PT|F34.8|ICD10|Other persistent mood [affective] disorders|Other persistent mood [affective] disorders +C0349223|T048|AB|F34.8|ICD10CM|Other persistent mood [affective] disorders|Other persistent mood [affective] disorders +C0349223|T048|HT|F34.8|ICD10CM|Other persistent mood [affective] disorders|Other persistent mood [affective] disorders +C4065471|T048|PT|F34.81|ICD10CM|Disruptive mood dysregulation disorder|Disruptive mood dysregulation disorder +C4065471|T048|AB|F34.81|ICD10CM|Disruptive mood dysregulation disorder|Disruptive mood dysregulation disorder +C4268303|T048|AB|F34.89|ICD10CM|Other specified persistent mood disorders|Other specified persistent mood disorders +C4268303|T048|PT|F34.89|ICD10CM|Other specified persistent mood disorders|Other specified persistent mood disorders +C0349224|T048|PT|F34.9|ICD10CM|Persistent mood [affective] disorder, unspecified|Persistent mood [affective] disorder, unspecified +C0349224|T048|AB|F34.9|ICD10CM|Persistent mood [affective] disorder, unspecified|Persistent mood [affective] disorder, unspecified +C0349224|T048|PT|F34.9|ICD10|Persistent mood [affective] disorder, unspecified|Persistent mood [affective] disorder, unspecified +C0494404|T048|HT|F38|ICD10|Other mood [affective] disorders|Other mood [affective] disorders +C0349225|T048|PT|F38.0|ICD10|Other single mood [affective] disorders|Other single mood [affective] disorders +C0349226|T048|PT|F38.1|ICD10|Other recurrent mood [affective] disorders|Other recurrent mood [affective] disorders +C0349227|T048|PT|F38.8|ICD10|Other specified mood [affective] disorders|Other specified mood [affective] disorders +C0001723|T048|ET|F39|ICD10CM|Affective psychosis NOS|Affective psychosis NOS +C0525045|T048|PT|F39|ICD10|Unspecified mood [affective] disorder|Unspecified mood [affective] disorder +C0525045|T048|PT|F39|ICD10CM|Unspecified mood [affective] disorder|Unspecified mood [affective] disorder +C0525045|T048|AB|F39|ICD10CM|Unspecified mood [affective] disorder|Unspecified mood [affective] disorder +C0349231|T048|HT|F40|ICD10|Phobic anxiety disorders|Phobic anxiety disorders +C0349231|T048|AB|F40|ICD10CM|Phobic anxiety disorders|Phobic anxiety disorders +C0349231|T048|HT|F40|ICD10CM|Phobic anxiety disorders|Phobic anxiety disorders +C2874935|T048|HT|F40-F48|ICD10CM|Anxiety, dissociative, stress-related, somatoform and other nonpsychotic mental disorders (F40-F48)|Anxiety, dissociative, stress-related, somatoform and other nonpsychotic mental disorders (F40-F48) +C0694453|T048|HT|F40-F48.9|ICD10|Neurotic, stress-related and somatoform disorders|Neurotic, stress-related and somatoform disorders +C0001818|T048|HT|F40.0|ICD10CM|Agoraphobia|Agoraphobia +C0001818|T048|AB|F40.0|ICD10CM|Agoraphobia|Agoraphobia +C0001818|T048|PT|F40.0|ICD10|Agoraphobia|Agoraphobia +C0001818|T048|AB|F40.00|ICD10CM|Agoraphobia, unspecified|Agoraphobia, unspecified +C0001818|T048|PT|F40.00|ICD10CM|Agoraphobia, unspecified|Agoraphobia, unspecified +C0236800|T048|PT|F40.01|ICD10CM|Agoraphobia with panic disorder|Agoraphobia with panic disorder +C0236800|T048|AB|F40.01|ICD10CM|Agoraphobia with panic disorder|Agoraphobia with panic disorder +C0236800|T048|ET|F40.01|ICD10CM|Panic disorder with agoraphobia|Panic disorder with agoraphobia +C3264595|T048|AB|F40.02|ICD10CM|Agoraphobia without panic disorder|Agoraphobia without panic disorder +C3264595|T048|PT|F40.02|ICD10CM|Agoraphobia without panic disorder|Agoraphobia without panic disorder +C1388120|T048|ET|F40.1|ICD10CM|Anthropophobia|Anthropophobia +C0031572|T048|ET|F40.1|ICD10CM|Social anxiety disorder|Social anxiety disorder +C0270305|T048|ET|F40.1|ICD10CM|Social anxiety disorder of childhood|Social anxiety disorder of childhood +C0031572|T048|ET|F40.1|ICD10CM|Social neurosis|Social neurosis +C0031572|T048|HT|F40.1|ICD10CM|Social phobias|Social phobias +C0031572|T048|AB|F40.1|ICD10CM|Social phobias|Social phobias +C0031572|T048|PT|F40.1|ICD10|Social phobias|Social phobias +C0031572|T048|AB|F40.10|ICD10CM|Social phobia, unspecified|Social phobia, unspecified +C0031572|T048|PT|F40.10|ICD10CM|Social phobia, unspecified|Social phobia, unspecified +C0270587|T048|AB|F40.11|ICD10CM|Social phobia, generalized|Social phobia, generalized +C0270587|T048|PT|F40.11|ICD10CM|Social phobia, generalized|Social phobia, generalized +C0236801|T048|HT|F40.2|ICD10CM|Specific (isolated) phobias|Specific (isolated) phobias +C0236801|T048|AB|F40.2|ICD10CM|Specific (isolated) phobias|Specific (isolated) phobias +C0236801|T048|PT|F40.2|ICD10|Specific (isolated) phobias|Specific (isolated) phobias +C2874936|T048|HT|F40.21|ICD10CM|Animal type phobia|Animal type phobia +C2874936|T048|AB|F40.21|ICD10CM|Animal type phobia|Animal type phobia +C0392331|T048|PT|F40.210|ICD10CM|Arachnophobia|Arachnophobia +C0392331|T048|AB|F40.210|ICD10CM|Arachnophobia|Arachnophobia +C0392331|T048|ET|F40.210|ICD10CM|Fear of spiders|Fear of spiders +C2874937|T048|AB|F40.218|ICD10CM|Other animal type phobia|Other animal type phobia +C2874937|T048|PT|F40.218|ICD10CM|Other animal type phobia|Other animal type phobia +C2874938|T048|HT|F40.22|ICD10CM|Natural environment type phobia|Natural environment type phobia +C2874938|T048|AB|F40.22|ICD10CM|Natural environment type phobia|Natural environment type phobia +C0558207|T048|PT|F40.220|ICD10CM|Fear of thunderstorms|Fear of thunderstorms +C0558207|T048|AB|F40.220|ICD10CM|Fear of thunderstorms|Fear of thunderstorms +C2874939|T048|AB|F40.228|ICD10CM|Other natural environment type phobia|Other natural environment type phobia +C2874939|T048|PT|F40.228|ICD10CM|Other natural environment type phobia|Other natural environment type phobia +C2874940|T048|HT|F40.23|ICD10CM|Blood, injection, injury type phobia|Blood, injection, injury type phobia +C2874940|T048|AB|F40.23|ICD10CM|Blood, injection, injury type phobia|Blood, injection, injury type phobia +C0522183|T048|PT|F40.230|ICD10CM|Fear of blood|Fear of blood +C0522183|T048|AB|F40.230|ICD10CM|Fear of blood|Fear of blood +C2874941|T048|PT|F40.231|ICD10CM|Fear of injections and transfusions|Fear of injections and transfusions +C2874941|T048|AB|F40.231|ICD10CM|Fear of injections and transfusions|Fear of injections and transfusions +C2874942|T048|AB|F40.232|ICD10CM|Fear of other medical care|Fear of other medical care +C2874942|T048|PT|F40.232|ICD10CM|Fear of other medical care|Fear of other medical care +C2874943|T033|PT|F40.233|ICD10CM|Fear of injury|Fear of injury +C2874943|T033|AB|F40.233|ICD10CM|Fear of injury|Fear of injury +C2874944|T048|HT|F40.24|ICD10CM|Situational type phobia|Situational type phobia +C2874944|T048|AB|F40.24|ICD10CM|Situational type phobia|Situational type phobia +C0008909|T048|PT|F40.240|ICD10CM|Claustrophobia|Claustrophobia +C0008909|T048|AB|F40.240|ICD10CM|Claustrophobia|Claustrophobia +C0233701|T048|PT|F40.241|ICD10CM|Acrophobia|Acrophobia +C0233701|T048|AB|F40.241|ICD10CM|Acrophobia|Acrophobia +C2874945|T048|PT|F40.242|ICD10CM|Fear of bridges|Fear of bridges +C2874945|T048|AB|F40.242|ICD10CM|Fear of bridges|Fear of bridges +C0424184|T048|PT|F40.243|ICD10CM|Fear of flying|Fear of flying +C0424184|T048|AB|F40.243|ICD10CM|Fear of flying|Fear of flying +C2874946|T048|AB|F40.248|ICD10CM|Other situational type phobia|Other situational type phobia +C2874946|T048|PT|F40.248|ICD10CM|Other situational type phobia|Other situational type phobia +C2874947|T048|HT|F40.29|ICD10CM|Other specified phobia|Other specified phobia +C2874947|T048|AB|F40.29|ICD10CM|Other specified phobia|Other specified phobia +C0522194|T048|PT|F40.290|ICD10CM|Androphobia|Androphobia +C0522194|T048|AB|F40.290|ICD10CM|Androphobia|Androphobia +C0522194|T048|ET|F40.290|ICD10CM|Fear of men|Fear of men +C0522195|T048|ET|F40.291|ICD10CM|Fear of women|Fear of women +C0522195|T048|PT|F40.291|ICD10CM|Gynephobia|Gynephobia +C0522195|T048|AB|F40.291|ICD10CM|Gynephobia|Gynephobia +C2874947|T048|AB|F40.298|ICD10CM|Other specified phobia|Other specified phobia +C2874947|T048|PT|F40.298|ICD10CM|Other specified phobia|Other specified phobia +C0349230|T048|PT|F40.8|ICD10CM|Other phobic anxiety disorders|Other phobic anxiety disorders +C0349230|T048|AB|F40.8|ICD10CM|Other phobic anxiety disorders|Other phobic anxiety disorders +C0349230|T048|PT|F40.8|ICD10|Other phobic anxiety disorders|Other phobic anxiety disorders +C0349337|T048|ET|F40.8|ICD10CM|Phobic anxiety disorder of childhood|Phobic anxiety disorder of childhood +C0349231|T048|ET|F40.9|ICD10CM|Phobia NOS|Phobia NOS +C0349231|T048|PT|F40.9|ICD10CM|Phobic anxiety disorder, unspecified|Phobic anxiety disorder, unspecified +C0349231|T048|AB|F40.9|ICD10CM|Phobic anxiety disorder, unspecified|Phobic anxiety disorder, unspecified +C0349231|T048|PT|F40.9|ICD10|Phobic anxiety disorder, unspecified|Phobic anxiety disorder, unspecified +C0349231|T048|ET|F40.9|ICD10CM|Phobic state NOS|Phobic state NOS +C0349232|T048|AB|F41|ICD10CM|Other anxiety disorders|Other anxiety disorders +C0349232|T048|HT|F41|ICD10CM|Other anxiety disorders|Other anxiety disorders +C0349232|T048|HT|F41|ICD10|Other anxiety disorders|Other anxiety disorders +C0086769|T048|ET|F41.0|ICD10CM|Panic attack|Panic attack +C0030319|T048|AB|F41.0|ICD10CM|Panic disorder [episodic paroxysmal anxiety]|Panic disorder [episodic paroxysmal anxiety] +C0030319|T048|PT|F41.0|ICD10CM|Panic disorder [episodic paroxysmal anxiety]|Panic disorder [episodic paroxysmal anxiety] +C0030319|T048|PT|F41.0|ICD10|Panic disorder [episodic paroxysmal anxiety]|Panic disorder [episodic paroxysmal anxiety] +C0030318|T033|ET|F41.0|ICD10CM|Panic state|Panic state +C1279420|T048|ET|F41.1|ICD10CM|Anxiety neurosis|Anxiety neurosis +C0003467|T048|ET|F41.1|ICD10CM|Anxiety reaction|Anxiety reaction +C0700613|T048|ET|F41.1|ICD10CM|Anxiety state|Anxiety state +C0270549|T048|PT|F41.1|ICD10CM|Generalized anxiety disorder|Generalized anxiety disorder +C0270549|T048|AB|F41.1|ICD10CM|Generalized anxiety disorder|Generalized anxiety disorder +C0270549|T048|PT|F41.1|ICD10|Generalized anxiety disorder|Generalized anxiety disorder +C0029942|T048|ET|F41.1|ICD10CM|Overanxious disorder|Overanxious disorder +C0338908|T048|PT|F41.2|ICD10|Mixed anxiety and depressive disorder|Mixed anxiety and depressive disorder +C0349233|T048|PT|F41.3|ICD10|Other mixed anxiety disorders|Other mixed anxiety disorders +C0349233|T048|PT|F41.3|ICD10CM|Other mixed anxiety disorders|Other mixed anxiety disorders +C0349233|T048|AB|F41.3|ICD10CM|Other mixed anxiety disorders|Other mixed anxiety disorders +C2874949|T048|ET|F41.8|ICD10CM|Anxiety depression (mild or not persistent)|Anxiety depression (mild or not persistent) +C0338909|T048|ET|F41.8|ICD10CM|Anxiety hysteria|Anxiety hysteria +C0338908|T048|ET|F41.8|ICD10CM|Mixed anxiety and depressive disorder|Mixed anxiety and depressive disorder +C0349234|T048|PT|F41.8|ICD10CM|Other specified anxiety disorders|Other specified anxiety disorders +C0349234|T048|AB|F41.8|ICD10CM|Other specified anxiety disorders|Other specified anxiety disorders +C0349234|T048|PT|F41.8|ICD10|Other specified anxiety disorders|Other specified anxiety disorders +C0003469|T048|PT|F41.9|ICD10|Anxiety disorder, unspecified|Anxiety disorder, unspecified +C0003469|T048|PT|F41.9|ICD10CM|Anxiety disorder, unspecified|Anxiety disorder, unspecified +C0003469|T048|AB|F41.9|ICD10CM|Anxiety disorder, unspecified|Anxiety disorder, unspecified +C0003469|T048|ET|F41.9|ICD10CM|Anxiety NOS|Anxiety NOS +C0028768|T048|AB|F42|ICD10CM|Obsessive-compulsive disorder|Obsessive-compulsive disorder +C0028768|T048|HT|F42|ICD10CM|Obsessive-compulsive disorder|Obsessive-compulsive disorder +C0028768|T048|HT|F42|ICD10|Obsessive-compulsive disorder|Obsessive-compulsive disorder +C0349236|T048|PT|F42.0|ICD10|Predominantly obsessional thoughts or ruminations|Predominantly obsessional thoughts or ruminations +C0349237|T048|PT|F42.1|ICD10|Predominantly compulsive acts [obsessional rituals]|Predominantly compulsive acts [obsessional rituals] +C0349238|T048|PT|F42.2|ICD10|Mixed obsessional thoughts and acts|Mixed obsessional thoughts and acts +C0349238|T048|AB|F42.2|ICD10CM|Mixed obsessional thoughts and acts|Mixed obsessional thoughts and acts +C0349238|T048|PT|F42.2|ICD10CM|Mixed obsessional thoughts and acts|Mixed obsessional thoughts and acts +C3837219|T048|AB|F42.3|ICD10CM|Hoarding disorder|Hoarding disorder +C3837219|T048|PT|F42.3|ICD10CM|Hoarding disorder|Hoarding disorder +C4237131|T048|AB|F42.4|ICD10CM|Excoriation (skin-picking) disorder|Excoriation (skin-picking) disorder +C4237131|T048|PT|F42.4|ICD10CM|Excoriation (skin-picking) disorder|Excoriation (skin-picking) disorder +C0028768|T048|ET|F42.8|ICD10CM|Anancastic neurosis|Anancastic neurosis +C0028768|T048|ET|F42.8|ICD10CM|Obsessive-compulsive neurosis|Obsessive-compulsive neurosis +C0349239|T048|AB|F42.8|ICD10CM|Other obsessive-compulsive disorder|Other obsessive-compulsive disorder +C0349239|T048|PT|F42.8|ICD10CM|Other obsessive-compulsive disorder|Other obsessive-compulsive disorder +C0349239|T048|PT|F42.8|ICD10|Other obsessive-compulsive disorders|Other obsessive-compulsive disorders +C0028768|T048|PT|F42.9|ICD10|Obsessive-compulsive disorder, unspecified|Obsessive-compulsive disorder, unspecified +C0028768|T048|AB|F42.9|ICD10CM|Obsessive-compulsive disorder, unspecified|Obsessive-compulsive disorder, unspecified +C0028768|T048|PT|F42.9|ICD10CM|Obsessive-compulsive disorder, unspecified|Obsessive-compulsive disorder, unspecified +C0494406|T048|HT|F43|ICD10|Reaction to severe stress, and adjustment disorders|Reaction to severe stress, and adjustment disorders +C0494406|T048|AB|F43|ICD10CM|Reaction to severe stress, and adjustment disorders|Reaction to severe stress, and adjustment disorders +C0494406|T048|HT|F43|ICD10CM|Reaction to severe stress, and adjustment disorders|Reaction to severe stress, and adjustment disorders +C0236816|T048|ET|F43.0|ICD10CM|Acute crisis reaction|Acute crisis reaction +C0236816|T048|ET|F43.0|ICD10CM|Acute reaction to stress|Acute reaction to stress +C0236816|T048|PT|F43.0|ICD10CM|Acute stress reaction|Acute stress reaction +C0236816|T048|AB|F43.0|ICD10CM|Acute stress reaction|Acute stress reaction +C0236816|T048|PT|F43.0|ICD10|Acute stress reaction|Acute stress reaction +C2976869|T048|ET|F43.0|ICD10CM|Combat and operational stress reaction|Combat and operational stress reaction +C3249879|T048|ET|F43.0|ICD10CM|Combat fatigue|Combat fatigue +C1394213|T048|ET|F43.0|ICD10CM|Crisis state|Crisis state +C0236816|T048|ET|F43.0|ICD10CM|Psychic shock|Psychic shock +C0038436|T048|PT|F43.1|ICD10|Post-traumatic stress disorder|Post-traumatic stress disorder +C0038436|T048|AB|F43.1|ICD10CM|Post-traumatic stress disorder (PTSD)|Post-traumatic stress disorder (PTSD) +C0038436|T048|HT|F43.1|ICD10CM|Post-traumatic stress disorder (PTSD)|Post-traumatic stress disorder (PTSD) +C0038436|T048|ET|F43.1|ICD10CM|Traumatic neurosis|Traumatic neurosis +C0038436|T048|AB|F43.10|ICD10CM|Post-traumatic stress disorder, unspecified|Post-traumatic stress disorder, unspecified +C0038436|T048|PT|F43.10|ICD10CM|Post-traumatic stress disorder, unspecified|Post-traumatic stress disorder, unspecified +C0747767|T048|AB|F43.11|ICD10CM|Post-traumatic stress disorder, acute|Post-traumatic stress disorder, acute +C0747767|T048|PT|F43.11|ICD10CM|Post-traumatic stress disorder, acute|Post-traumatic stress disorder, acute +C0730525|T048|AB|F43.12|ICD10CM|Post-traumatic stress disorder, chronic|Post-traumatic stress disorder, chronic +C0730525|T048|PT|F43.12|ICD10CM|Post-traumatic stress disorder, chronic|Post-traumatic stress disorder, chronic +C0001546|T048|PT|F43.2|ICD10|Adjustment disorders|Adjustment disorders +C0001546|T048|HT|F43.2|ICD10CM|Adjustment disorders|Adjustment disorders +C0001546|T048|AB|F43.2|ICD10CM|Adjustment disorders|Adjustment disorders +C0221521|T048|ET|F43.2|ICD10CM|Culture shock|Culture shock +C0865406|T048|ET|F43.2|ICD10CM|Hospitalism in children|Hospitalism in children +C0001546|T048|AB|F43.20|ICD10CM|Adjustment disorder, unspecified|Adjustment disorder, unspecified +C0001546|T048|PT|F43.20|ICD10CM|Adjustment disorder, unspecified|Adjustment disorder, unspecified +C0001539|T048|PT|F43.21|ICD10CM|Adjustment disorder with depressed mood|Adjustment disorder with depressed mood +C0001539|T048|AB|F43.21|ICD10CM|Adjustment disorder with depressed mood|Adjustment disorder with depressed mood +C0154587|T048|PT|F43.22|ICD10CM|Adjustment disorder with anxiety|Adjustment disorder with anxiety +C0154587|T048|AB|F43.22|ICD10CM|Adjustment disorder with anxiety|Adjustment disorder with anxiety +C0154588|T048|PT|F43.23|ICD10CM|Adjustment disorder with mixed anxiety and depressed mood|Adjustment disorder with mixed anxiety and depressed mood +C0154588|T048|AB|F43.23|ICD10CM|Adjustment disorder with mixed anxiety and depressed mood|Adjustment disorder with mixed anxiety and depressed mood +C0001540|T048|PT|F43.24|ICD10CM|Adjustment disorder with disturbance of conduct|Adjustment disorder with disturbance of conduct +C0001540|T048|AB|F43.24|ICD10CM|Adjustment disorder with disturbance of conduct|Adjustment disorder with disturbance of conduct +C0001541|T048|AB|F43.25|ICD10CM|Adjustment disorder w mixed disturb of emotions and conduct|Adjustment disorder w mixed disturb of emotions and conduct +C0001541|T048|PT|F43.25|ICD10CM|Adjustment disorder with mixed disturbance of emotions and conduct|Adjustment disorder with mixed disturbance of emotions and conduct +C2874950|T048|AB|F43.29|ICD10CM|Adjustment disorder with other symptoms|Adjustment disorder with other symptoms +C2874950|T048|PT|F43.29|ICD10CM|Adjustment disorder with other symptoms|Adjustment disorder with other symptoms +C0349241|T048|PT|F43.8|ICD10|Other reactions to severe stress|Other reactions to severe stress +C0349241|T048|PT|F43.8|ICD10CM|Other reactions to severe stress|Other reactions to severe stress +C0349241|T048|AB|F43.8|ICD10CM|Other reactions to severe stress|Other reactions to severe stress +C4237342|T048|ET|F43.8|ICD10CM|Other specified trauma and stressor-related disorder|Other specified trauma and stressor-related disorder +C0349242|T048|PT|F43.9|ICD10CM|Reaction to severe stress, unspecified|Reaction to severe stress, unspecified +C0349242|T048|AB|F43.9|ICD10CM|Reaction to severe stress, unspecified|Reaction to severe stress, unspecified +C0349242|T048|PT|F43.9|ICD10|Reaction to severe stress, unspecified|Reaction to severe stress, unspecified +C4042925|T048|ET|F43.9|ICD10CM|Trauma and stressor-related disorder, NOS|Trauma and stressor-related disorder, NOS +C0009946|T048|ET|F44|ICD10CM|conversion hysteria|conversion hysteria +C0009946|T048|ET|F44|ICD10CM|conversion reaction|conversion reaction +C1442976|T048|HT|F44|ICD10|Dissociative [conversion] disorders|Dissociative [conversion] disorders +C1442976|T048|AB|F44|ICD10CM|Dissociative and conversion disorders|Dissociative and conversion disorders +C1442976|T048|HT|F44|ICD10CM|Dissociative and conversion disorders|Dissociative and conversion disorders +C0009946|T048|ET|F44|ICD10CM|hysteria|hysteria +C0853077|T048|ET|F44|ICD10CM|hysterical psychosis|hysterical psychosis +C0236795|T048|PT|F44.0|ICD10|Dissociative amnesia|Dissociative amnesia +C0236795|T048|PT|F44.0|ICD10CM|Dissociative amnesia|Dissociative amnesia +C0236795|T048|AB|F44.0|ICD10CM|Dissociative amnesia|Dissociative amnesia +C4237105|T048|ET|F44.1|ICD10CM|Dissociative amnesia with dissociative fugue|Dissociative amnesia with dissociative fugue +C0020703|T048|PT|F44.1|ICD10CM|Dissociative fugue|Dissociative fugue +C0020703|T048|AB|F44.1|ICD10CM|Dissociative fugue|Dissociative fugue +C0020703|T048|PT|F44.1|ICD10|Dissociative fugue|Dissociative fugue +C0349449|T048|PT|F44.2|ICD10|Dissociative stupor|Dissociative stupor +C0349449|T048|PT|F44.2|ICD10CM|Dissociative stupor|Dissociative stupor +C0349449|T048|AB|F44.2|ICD10CM|Dissociative stupor|Dissociative stupor +C0349243|T048|PT|F44.3|ICD10|Trance and possession disorders|Trance and possession disorders +C4065856|T048|ET|F44.4|ICD10CM|Conversion disorder with abnormal movement|Conversion disorder with abnormal movement +C2063822|T048|AB|F44.4|ICD10CM|Conversion disorder with motor symptom or deficit|Conversion disorder with motor symptom or deficit +C2063822|T048|PT|F44.4|ICD10CM|Conversion disorder with motor symptom or deficit|Conversion disorder with motor symptom or deficit +C4065852|T048|ET|F44.4|ICD10CM|Conversion disorder with speech symptoms|Conversion disorder with speech symptoms +C4065851|T048|ET|F44.4|ICD10CM|Conversion disorder with swallowing symptoms|Conversion disorder with swallowing symptoms +C4509115|T048|ET|F44.4|ICD10CM|Conversion disorder with weakness/paralysis|Conversion disorder with weakness/paralysis +C0349244|T048|PT|F44.4|ICD10|Dissociative motor disorders|Dissociative motor disorders +C0349244|T048|ET|F44.4|ICD10CM|Dissociative motor disorders|Dissociative motor disorders +C1442975|T048|ET|F44.4|ICD10CM|Psychogenic aphonia|Psychogenic aphonia +C0264622|T047|ET|F44.4|ICD10CM|Psychogenic dysphonia|Psychogenic dysphonia +C4065854|T048|ET|F44.5|ICD10CM|Conversion disorder with attacks or seizures|Conversion disorder with attacks or seizures +C2874951|T048|AB|F44.5|ICD10CM|Conversion disorder with seizures or convulsions|Conversion disorder with seizures or convulsions +C2874951|T048|PT|F44.5|ICD10CM|Conversion disorder with seizures or convulsions|Conversion disorder with seizures or convulsions +C0349245|T048|ET|F44.5|ICD10CM|Dissociative convulsions|Dissociative convulsions +C0349245|T048|PT|F44.5|ICD10|Dissociative convulsions|Dissociative convulsions +C4065855|T048|ET|F44.6|ICD10CM|Conversion disorder with anesthesia or sensory loss|Conversion disorder with anesthesia or sensory loss +C2063823|T048|AB|F44.6|ICD10CM|Conversion disorder with sensory symptom or deficit|Conversion disorder with sensory symptom or deficit +C2063823|T048|PT|F44.6|ICD10CM|Conversion disorder with sensory symptom or deficit|Conversion disorder with sensory symptom or deficit +C4065853|T048|ET|F44.6|ICD10CM|Conversion disorder with special sensory symptoms|Conversion disorder with special sensory symptoms +C0349246|T048|PT|F44.6|ICD10|Dissociative anaesthesia and sensory loss|Dissociative anaesthesia and sensory loss +C0349246|T048|ET|F44.6|ICD10CM|Dissociative anesthesia and sensory loss|Dissociative anesthesia and sensory loss +C0349246|T048|PT|F44.6|ICD10AE|Dissociative anesthesia and sensory loss|Dissociative anesthesia and sensory loss +C0018779|T048|ET|F44.6|ICD10CM|Psychogenic deafness|Psychogenic deafness +C2874952|T048|AB|F44.7|ICD10CM|Conversion disorder with mixed symptom presentation|Conversion disorder with mixed symptom presentation +C2874952|T048|PT|F44.7|ICD10CM|Conversion disorder with mixed symptom presentation|Conversion disorder with mixed symptom presentation +C0349247|T048|PT|F44.7|ICD10|Mixed dissociative [conversion] disorders|Mixed dissociative [conversion] disorders +C0362053|T048|PT|F44.8|ICD10|Other dissociative [conversion] disorders|Other dissociative [conversion] disorders +C0362053|T048|HT|F44.8|ICD10CM|Other dissociative and conversion disorders|Other dissociative and conversion disorders +C0362053|T048|AB|F44.8|ICD10CM|Other dissociative and conversion disorders|Other dissociative and conversion disorders +C0026773|T048|PT|F44.81|ICD10CM|Dissociative identity disorder|Dissociative identity disorder +C0026773|T048|AB|F44.81|ICD10CM|Dissociative identity disorder|Dissociative identity disorder +C0026773|T048|ET|F44.81|ICD10CM|Multiple personality disorder|Multiple personality disorder +C0086335|T048|ET|F44.89|ICD10CM|Ganser's syndrome|Ganser's syndrome +C0362053|T048|AB|F44.89|ICD10CM|Other dissociative and conversion disorders|Other dissociative and conversion disorders +C0362053|T048|PT|F44.89|ICD10CM|Other dissociative and conversion disorders|Other dissociative and conversion disorders +C0152124|T048|ET|F44.89|ICD10CM|Psychogenic confusion|Psychogenic confusion +C0152124|T048|ET|F44.89|ICD10CM|Psychogenic twilight state|Psychogenic twilight state +C0349243|T048|ET|F44.89|ICD10CM|Trance and possession disorders|Trance and possession disorders +C1442976|T048|PT|F44.9|ICD10|Dissociative [conversion] disorder, unspecified|Dissociative [conversion] disorder, unspecified +C1442976|T048|AB|F44.9|ICD10CM|Dissociative and conversion disorder, unspecified|Dissociative and conversion disorder, unspecified +C1442976|T048|PT|F44.9|ICD10CM|Dissociative and conversion disorder, unspecified|Dissociative and conversion disorder, unspecified +C0012746|T048|ET|F44.9|ICD10CM|Dissociative disorder NOS|Dissociative disorder NOS +C0037650|T048|HT|F45|ICD10|Somatoform disorders|Somatoform disorders +C0037650|T048|AB|F45|ICD10CM|Somatoform disorders|Somatoform disorders +C0037650|T048|HT|F45|ICD10CM|Somatoform disorders|Somatoform disorders +C0520482|T048|ET|F45.0|ICD10CM|Briquet's disorder|Briquet's disorder +C1405656|T048|ET|F45.0|ICD10CM|Multiple psychosomatic disorder|Multiple psychosomatic disorder +C0520482|T048|PT|F45.0|ICD10CM|Somatization disorder|Somatization disorder +C0520482|T048|AB|F45.0|ICD10CM|Somatization disorder|Somatization disorder +C0520482|T048|PT|F45.0|ICD10|Somatization disorder|Somatization disorder +C4087321|T048|ET|F45.1|ICD10CM|Somatic symptom disorder|Somatic symptom disorder +C0041672|T048|ET|F45.1|ICD10CM|Undifferentiated psychosomatic disorder|Undifferentiated psychosomatic disorder +C0041672|T048|PT|F45.1|ICD10CM|Undifferentiated somatoform disorder|Undifferentiated somatoform disorder +C0041672|T048|AB|F45.1|ICD10CM|Undifferentiated somatoform disorder|Undifferentiated somatoform disorder +C0041672|T048|PT|F45.1|ICD10|Undifferentiated somatoform disorder|Undifferentiated somatoform disorder +C0020604|T048|PT|F45.2|ICD10|Hypochondriacal disorder|Hypochondriacal disorder +C0020604|T048|AB|F45.2|ICD10CM|Hypochondriacal disorders|Hypochondriacal disorders +C0020604|T048|HT|F45.2|ICD10CM|Hypochondriacal disorders|Hypochondriacal disorders +C2874953|T048|AB|F45.20|ICD10CM|Hypochondriacal disorder, unspecified|Hypochondriacal disorder, unspecified +C2874953|T048|PT|F45.20|ICD10CM|Hypochondriacal disorder, unspecified|Hypochondriacal disorder, unspecified +C0020604|T048|ET|F45.21|ICD10CM|Hypochondriacal neurosis|Hypochondriacal neurosis +C0020604|T048|PT|F45.21|ICD10CM|Hypochondriasis|Hypochondriasis +C0020604|T048|AB|F45.21|ICD10CM|Hypochondriasis|Hypochondriasis +C4064938|T048|ET|F45.21|ICD10CM|Illness anxiety disorder|Illness anxiety disorder +C0005887|T048|PT|F45.22|ICD10CM|Body dysmorphic disorder|Body dysmorphic disorder +C0005887|T048|AB|F45.22|ICD10CM|Body dysmorphic disorder|Body dysmorphic disorder +C0005887|T048|ET|F45.22|ICD10CM|Dysmorphophobia (nondelusional)|Dysmorphophobia (nondelusional) +C0522182|T048|ET|F45.22|ICD10CM|Nosophobia|Nosophobia +C2874954|T048|AB|F45.29|ICD10CM|Other hypochondriacal disorders|Other hypochondriacal disorders +C2874954|T048|PT|F45.29|ICD10CM|Other hypochondriacal disorders|Other hypochondriacal disorders +C0338939|T048|PT|F45.3|ICD10|Somatoform autonomic dysfunction|Somatoform autonomic dysfunction +C1456322|T048|AB|F45.4|ICD10CM|Pain disorders related to psychological factors|Pain disorders related to psychological factors +C1456322|T048|HT|F45.4|ICD10CM|Pain disorders related to psychological factors|Pain disorders related to psychological factors +C0494408|T048|PT|F45.4|ICD10|Persistent somatoform pain disorder|Persistent somatoform pain disorder +C2874955|T048|AB|F45.41|ICD10CM|Pain disorder exclusively related to psychological factors|Pain disorder exclusively related to psychological factors +C2874955|T048|PT|F45.41|ICD10CM|Pain disorder exclusively related to psychological factors|Pain disorder exclusively related to psychological factors +C0494408|T048|ET|F45.41|ICD10CM|Somatoform pain disorder (persistent)|Somatoform pain disorder (persistent) +C1456322|T048|PT|F45.42|ICD10CM|Pain disorder with related psychological factors|Pain disorder with related psychological factors +C1456322|T048|AB|F45.42|ICD10CM|Pain disorder with related psychological factors|Pain disorder with related psychological factors +C0349249|T048|PT|F45.8|ICD10|Other somatoform disorders|Other somatoform disorders +C0349249|T048|PT|F45.8|ICD10CM|Other somatoform disorders|Other somatoform disorders +C0349249|T048|AB|F45.8|ICD10CM|Other somatoform disorders|Other somatoform disorders +C0154555|T048|ET|F45.8|ICD10CM|Psychogenic dysmenorrhea|Psychogenic dysmenorrhea +C2874956|T048|ET|F45.8|ICD10CM|Psychogenic dysphagia, including 'globus hystericus'|Psychogenic dysphagia, including 'globus hystericus' +C0149765|T048|ET|F45.8|ICD10CM|Psychogenic pruritus|Psychogenic pruritus +C0349785|T048|ET|F45.8|ICD10CM|Psychogenic torticollis|Psychogenic torticollis +C0338939|T048|ET|F45.8|ICD10CM|Somatoform autonomic dysfunction|Somatoform autonomic dysfunction +C0006325|T048|ET|F45.8|ICD10CM|Teeth grinding|Teeth grinding +C0033931|T048|ET|F45.9|ICD10CM|Psychosomatic disorder NOS|Psychosomatic disorder NOS +C0037650|T048|PT|F45.9|ICD10CM|Somatoform disorder, unspecified|Somatoform disorder, unspecified +C0037650|T048|AB|F45.9|ICD10CM|Somatoform disorder, unspecified|Somatoform disorder, unspecified +C0037650|T048|PT|F45.9|ICD10|Somatoform disorder, unspecified|Somatoform disorder, unspecified +C0154458|T048|HT|F48|ICD10|Other neurotic disorders|Other neurotic disorders +C2874957|T048|AB|F48|ICD10CM|Other nonpsychotic mental disorders|Other nonpsychotic mental disorders +C2874957|T048|HT|F48|ICD10CM|Other nonpsychotic mental disorders|Other nonpsychotic mental disorders +C0027804|T048|PT|F48.0|ICD10|Neurasthenia|Neurasthenia +C0338952|T048|PT|F48.1|ICD10|Depersonalization-derealization syndrome|Depersonalization-derealization syndrome +C0338952|T048|PT|F48.1|ICD10CM|Depersonalization-derealization syndrome|Depersonalization-derealization syndrome +C0338952|T048|AB|F48.1|ICD10CM|Depersonalization-derealization syndrome|Depersonalization-derealization syndrome +C3161187|T047|ET|F48.2|ICD10CM|Involuntary emotional expression disorder|Involuntary emotional expression disorder +C2316460|T048|PT|F48.2|ICD10CM|Pseudobulbar affect|Pseudobulbar affect +C2316460|T048|AB|F48.2|ICD10CM|Pseudobulbar affect|Pseudobulbar affect +C0520698|T048|ET|F48.8|ICD10CM|Dhat syndrome|Dhat syndrome +C0027804|T048|ET|F48.8|ICD10CM|Neurasthenia|Neurasthenia +C0865333|T048|ET|F48.8|ICD10CM|Occupational neurosis, including writer's cramp|Occupational neurosis, including writer's cramp +C0478656|T048|PT|F48.8|ICD10|Other specified neurotic disorders|Other specified neurotic disorders +C2874958|T048|AB|F48.8|ICD10CM|Other specified nonpsychotic mental disorders|Other specified nonpsychotic mental disorders +C2874958|T048|PT|F48.8|ICD10CM|Other specified nonpsychotic mental disorders|Other specified nonpsychotic mental disorders +C0338900|T048|ET|F48.8|ICD10CM|Psychasthenia|Psychasthenia +C0338900|T048|ET|F48.8|ICD10CM|Psychasthenic neurosis|Psychasthenic neurosis +C0235245|T048|ET|F48.8|ICD10CM|Psychogenic syncope|Psychogenic syncope +C0027932|T048|ET|F48.9|ICD10CM|Neurosis NOS|Neurosis NOS +C0027932|T048|PT|F48.9|ICD10|Neurotic disorder, unspecified|Neurotic disorder, unspecified +C0041857|T048|AB|F48.9|ICD10CM|Nonpsychotic mental disorder, unspecified|Nonpsychotic mental disorder, unspecified +C0041857|T048|PT|F48.9|ICD10CM|Nonpsychotic mental disorder, unspecified|Nonpsychotic mental disorder, unspecified +C0013473|T048|HT|F50|ICD10CM|Eating disorders|Eating disorders +C0013473|T048|AB|F50|ICD10CM|Eating disorders|Eating disorders +C0013473|T048|HT|F50|ICD10|Eating disorders|Eating disorders +C0349251|T048|HT|F50-F59|ICD10CM|Behavioral syndromes associated with physiological disturbances and physical factors (F50-F59)|Behavioral syndromes associated with physiological disturbances and physical factors (F50-F59) +C0349251|T048|HT|F50-F59.9|ICD10AE|Behavioral syndromes associated with physiological disturbances and physical factors|Behavioral syndromes associated with physiological disturbances and physical factors +C0349251|T048|HT|F50-F59.9|ICD10|Behavioural syndromes associated with physiological disturbances and physical factors|Behavioural syndromes associated with physiological disturbances and physical factors +C0003125|T048|HT|F50.0|ICD10CM|Anorexia nervosa|Anorexia nervosa +C0003125|T048|AB|F50.0|ICD10CM|Anorexia nervosa|Anorexia nervosa +C0003125|T048|PT|F50.0|ICD10|Anorexia nervosa|Anorexia nervosa +C0003125|T048|AB|F50.00|ICD10CM|Anorexia nervosa, unspecified|Anorexia nervosa, unspecified +C0003125|T048|PT|F50.00|ICD10CM|Anorexia nervosa, unspecified|Anorexia nervosa, unspecified +C0520608|T048|PT|F50.01|ICD10CM|Anorexia nervosa, restricting type|Anorexia nervosa, restricting type +C0520608|T048|AB|F50.01|ICD10CM|Anorexia nervosa, restricting type|Anorexia nervosa, restricting type +C0520609|T048|AB|F50.02|ICD10CM|Anorexia nervosa, binge eating/purging type|Anorexia nervosa, binge eating/purging type +C0520609|T048|PT|F50.02|ICD10CM|Anorexia nervosa, binge eating/purging type|Anorexia nervosa, binge eating/purging type +C0338959|T048|PT|F50.1|ICD10|Atypical anorexia nervosa|Atypical anorexia nervosa +C2267227|T048|PT|F50.2|ICD10|Bulimia nervosa|Bulimia nervosa +C2267227|T048|PT|F50.2|ICD10CM|Bulimia nervosa|Bulimia nervosa +C2267227|T048|AB|F50.2|ICD10CM|Bulimia nervosa|Bulimia nervosa +C0006370|T048|ET|F50.2|ICD10CM|Bulimia NOS|Bulimia NOS +C0596170|T048|ET|F50.2|ICD10CM|Hyperorexia nervosa|Hyperorexia nervosa +C0338960|T048|PT|F50.3|ICD10|Atypical bulimia nervosa|Atypical bulimia nervosa +C0349252|T048|PT|F50.4|ICD10|Overeating associated with other psychological disturbances|Overeating associated with other psychological disturbances +C0349253|T048|PT|F50.5|ICD10|Vomiting associated with other psychological disturbances|Vomiting associated with other psychological disturbances +C0029587|T048|PT|F50.8|ICD10|Other eating disorders|Other eating disorders +C0029587|T048|AB|F50.8|ICD10CM|Other eating disorders|Other eating disorders +C0029587|T048|HT|F50.8|ICD10CM|Other eating disorders|Other eating disorders +C0596170|T048|PT|F50.81|ICD10CM|Binge eating disorder|Binge eating disorder +C0596170|T048|AB|F50.81|ICD10CM|Binge eating disorder|Binge eating disorder +C3840121|T048|PT|F50.82|ICD10CM|Avoidant/restrictive food intake disorder|Avoidant/restrictive food intake disorder +C3840121|T048|AB|F50.82|ICD10CM|Avoidant/restrictive food intake disorder|Avoidant/restrictive food intake disorder +C4268304|T048|AB|F50.89|ICD10CM|Other specified eating disorder|Other specified eating disorder +C4268304|T048|PT|F50.89|ICD10CM|Other specified eating disorder|Other specified eating disorder +C2874959|T048|ET|F50.89|ICD10CM|Pica in adults|Pica in adults +C0338953|T048|ET|F50.89|ICD10CM|Psychogenic loss of appetite|Psychogenic loss of appetite +C0338959|T048|ET|F50.9|ICD10CM|Atypical anorexia nervosa|Atypical anorexia nervosa +C0338960|T048|ET|F50.9|ICD10CM|Atypical bulimia nervosa|Atypical bulimia nervosa +C0013473|T048|PT|F50.9|ICD10|Eating disorder, unspecified|Eating disorder, unspecified +C0013473|T048|PT|F50.9|ICD10CM|Eating disorder, unspecified|Eating disorder, unspecified +C0013473|T048|AB|F50.9|ICD10CM|Eating disorder, unspecified|Eating disorder, unspecified +C4237465|T048|ET|F50.9|ICD10CM|Feeding or eating disorder, unspecified|Feeding or eating disorder, unspecified +C4509116|T048|ET|F50.9|ICD10CM|Other specified feeding disorder|Other specified feeding disorder +C0154565|T048|HT|F51|ICD10|Nonorganic sleep disorders|Nonorganic sleep disorders +C2874960|T048|AB|F51|ICD10CM|Sleep disorders not due to a substance or known physiol cond|Sleep disorders not due to a substance or known physiol cond +C2874960|T048|HT|F51|ICD10CM|Sleep disorders not due to a substance or known physiological condition|Sleep disorders not due to a substance or known physiological condition +C2874961|T048|AB|F51.0|ICD10CM|Insomnia not due to a substance or known physiol condition|Insomnia not due to a substance or known physiol condition +C2874961|T048|HT|F51.0|ICD10CM|Insomnia not due to a substance or known physiological condition|Insomnia not due to a substance or known physiological condition +C0349255|T047|PT|F51.0|ICD10|Nonorganic insomnia|Nonorganic insomnia +C1561842|T048|ET|F51.01|ICD10CM|Idiopathic insomnia|Idiopathic insomnia +C0033139|T047|PT|F51.01|ICD10CM|Primary insomnia|Primary insomnia +C0033139|T047|AB|F51.01|ICD10CM|Primary insomnia|Primary insomnia +C1561841|T048|PT|F51.02|ICD10CM|Adjustment insomnia|Adjustment insomnia +C1561841|T048|AB|F51.02|ICD10CM|Adjustment insomnia|Adjustment insomnia +C0752286|T048|PT|F51.03|ICD10CM|Paradoxical insomnia|Paradoxical insomnia +C0752286|T048|AB|F51.03|ICD10CM|Paradoxical insomnia|Paradoxical insomnia +C1960036|T048|PT|F51.04|ICD10CM|Psychophysiologic insomnia|Psychophysiologic insomnia +C1960036|T048|AB|F51.04|ICD10CM|Psychophysiologic insomnia|Psychophysiologic insomnia +C2874962|T048|AB|F51.05|ICD10CM|Insomnia due to other mental disorder|Insomnia due to other mental disorder +C2874962|T048|PT|F51.05|ICD10CM|Insomnia due to other mental disorder|Insomnia due to other mental disorder +C2874963|T048|AB|F51.09|ICD10CM|Oth insomnia not due to a substance or known physiol cond|Oth insomnia not due to a substance or known physiol cond +C2874963|T048|PT|F51.09|ICD10CM|Other insomnia not due to a substance or known physiological condition|Other insomnia not due to a substance or known physiological condition +C2874964|T048|AB|F51.1|ICD10CM|Hypersomnia not due to a substance or known physiol cond|Hypersomnia not due to a substance or known physiol cond +C2874964|T048|HT|F51.1|ICD10CM|Hypersomnia not due to a substance or known physiological condition|Hypersomnia not due to a substance or known physiological condition +C1305395|T048|PT|F51.1|ICD10|Nonorganic hypersomnia|Nonorganic hypersomnia +C0033138|T048|PT|F51.11|ICD10CM|Primary hypersomnia|Primary hypersomnia +C0033138|T048|AB|F51.11|ICD10CM|Primary hypersomnia|Primary hypersomnia +C0751505|T047|PT|F51.12|ICD10CM|Insufficient sleep syndrome|Insufficient sleep syndrome +C0751505|T047|AB|F51.12|ICD10CM|Insufficient sleep syndrome|Insufficient sleep syndrome +C2874965|T048|AB|F51.13|ICD10CM|Hypersomnia due to other mental disorder|Hypersomnia due to other mental disorder +C2874965|T048|PT|F51.13|ICD10CM|Hypersomnia due to other mental disorder|Hypersomnia due to other mental disorder +C2874966|T048|AB|F51.19|ICD10CM|Oth hypersomnia not due to a substance or known physiol cond|Oth hypersomnia not due to a substance or known physiol cond +C2874966|T048|PT|F51.19|ICD10CM|Other hypersomnia not due to a substance or known physiological condition|Other hypersomnia not due to a substance or known physiological condition +C0494410|T048|PT|F51.2|ICD10|Nonorganic disorder of the sleep-wake schedule|Nonorganic disorder of the sleep-wake schedule +C4237225|T048|ET|F51.3|ICD10CM|Non-rapid eye movement sleep arousal disorders, sleepwalking type|Non-rapid eye movement sleep arousal disorders, sleepwalking type +C0037672|T047|PT|F51.3|ICD10|Sleepwalking [somnambulism]|Sleepwalking [somnambulism] +C0037672|T047|PT|F51.3|ICD10CM|Sleepwalking [somnambulism]|Sleepwalking [somnambulism] +C0037672|T047|AB|F51.3|ICD10CM|Sleepwalking [somnambulism]|Sleepwalking [somnambulism] +C4237224|T048|ET|F51.4|ICD10CM|Non-rapid eye movement sleep arousal disorders, sleep terror type|Non-rapid eye movement sleep arousal disorders, sleep terror type +C0037320|T048|PT|F51.4|ICD10CM|Sleep terrors [night terrors]|Sleep terrors [night terrors] +C0037320|T048|AB|F51.4|ICD10CM|Sleep terrors [night terrors]|Sleep terrors [night terrors] +C0037320|T048|PT|F51.4|ICD10|Sleep terrors [night terrors]|Sleep terrors [night terrors] +C3887605|T048|ET|F51.5|ICD10CM|Dream anxiety disorder|Dream anxiety disorder +C3887605|T048|PT|F51.5|ICD10CM|Nightmare disorder|Nightmare disorder +C3887605|T048|AB|F51.5|ICD10CM|Nightmare disorder|Nightmare disorder +C0028084|T184|PT|F51.5|ICD10|Nightmares|Nightmares +C2874967|T048|AB|F51.8|ICD10CM|Oth sleep disord not due to a sub or known physiol cond|Oth sleep disord not due to a sub or known physiol cond +C0338961|T048|PT|F51.8|ICD10|Other nonorganic sleep disorders|Other nonorganic sleep disorders +C2874967|T048|PT|F51.8|ICD10CM|Other sleep disorders not due to a substance or known physiological condition|Other sleep disorders not due to a substance or known physiological condition +C1396391|T048|ET|F51.9|ICD10CM|Emotional sleep disorder NOS|Emotional sleep disorder NOS +C0154565|T048|PT|F51.9|ICD10|Nonorganic sleep disorder, unspecified|Nonorganic sleep disorder, unspecified +C2874968|T048|AB|F51.9|ICD10CM|Sleep disorder not due to a sub or known physiol cond, unsp|Sleep disorder not due to a sub or known physiol cond, unsp +C2874968|T048|PT|F51.9|ICD10CM|Sleep disorder not due to a substance or known physiological condition, unspecified|Sleep disorder not due to a substance or known physiological condition, unspecified +C2874969|T048|AB|F52|ICD10CM|Sexual dysfnct not due to a substance or known physiol cond|Sexual dysfnct not due to a substance or known physiol cond +C2874969|T048|HT|F52|ICD10CM|Sexual dysfunction not due to a substance or known physiological condition|Sexual dysfunction not due to a substance or known physiological condition +C3714744|T048|HT|F52|ICD10|Sexual dysfunction, not caused by organic disorder or disease|Sexual dysfunction, not caused by organic disorder or disease +C0020594|T048|PT|F52.0|ICD10CM|Hypoactive sexual desire disorder|Hypoactive sexual desire disorder +C0020594|T048|AB|F52.0|ICD10CM|Hypoactive sexual desire disorder|Hypoactive sexual desire disorder +C0020594|T048|ET|F52.0|ICD10CM|Lack or loss of sexual desire|Lack or loss of sexual desire +C0020594|T048|PT|F52.0|ICD10|Lack or loss of sexual desire|Lack or loss of sexual desire +C4237207|T048|ET|F52.0|ICD10CM|Male hypoactive sexual desire disorder|Male hypoactive sexual desire disorder +C0234019|T033|ET|F52.0|ICD10CM|Sexual anhedonia|Sexual anhedonia +C0349257|T048|PT|F52.1|ICD10|Sexual aversion and lack of sexual enjoyment|Sexual aversion and lack of sexual enjoyment +C0349257|T048|ET|F52.1|ICD10CM|Sexual aversion and lack of sexual enjoyment|Sexual aversion and lack of sexual enjoyment +C0036903|T048|PT|F52.1|ICD10CM|Sexual aversion disorder|Sexual aversion disorder +C0036903|T048|AB|F52.1|ICD10CM|Sexual aversion disorder|Sexual aversion disorder +C0349258|T048|ET|F52.2|ICD10CM|Failure of genital response|Failure of genital response +C0349258|T048|PT|F52.2|ICD10|Failure of genital response|Failure of genital response +C0036902|T048|HT|F52.2|ICD10CM|Sexual arousal disorders|Sexual arousal disorders +C0036902|T048|AB|F52.2|ICD10CM|Sexual arousal disorders|Sexual arousal disorders +C0242350|T047|ET|F52.21|ICD10CM|Erectile disorder|Erectile disorder +C0242350|T047|PT|F52.21|ICD10CM|Male erectile disorder|Male erectile disorder +C0242350|T047|AB|F52.21|ICD10CM|Male erectile disorder|Male erectile disorder +C0234016|T048|ET|F52.21|ICD10CM|Psychogenic impotence|Psychogenic impotence +C0015786|T048|PT|F52.22|ICD10CM|Female sexual arousal disorder|Female sexual arousal disorder +C0015786|T048|AB|F52.22|ICD10CM|Female sexual arousal disorder|Female sexual arousal disorder +C4237134|T048|ET|F52.22|ICD10CM|Female sexual interest/arousal disorder|Female sexual interest/arousal disorder +C0425762|T033|ET|F52.3|ICD10CM|Inhibited orgasm|Inhibited orgasm +C0029261|T048|HT|F52.3|ICD10CM|Orgasmic disorder|Orgasmic disorder +C0029261|T048|AB|F52.3|ICD10CM|Orgasmic disorder|Orgasmic disorder +C0029261|T048|PT|F52.3|ICD10|Orgasmic dysfunction|Orgasmic dysfunction +C2874970|T048|ET|F52.3|ICD10CM|Psychogenic anorgasmy|Psychogenic anorgasmy +C0033948|T048|PT|F52.31|ICD10CM|Female orgasmic disorder|Female orgasmic disorder +C0033948|T048|AB|F52.31|ICD10CM|Female orgasmic disorder|Female orgasmic disorder +C0234047|T046|ET|F52.32|ICD10CM|Delayed ejaculation|Delayed ejaculation +C0033949|T048|PT|F52.32|ICD10CM|Male orgasmic disorder|Male orgasmic disorder +C0033949|T048|AB|F52.32|ICD10CM|Male orgasmic disorder|Male orgasmic disorder +C0033038|T048|PT|F52.4|ICD10CM|Premature ejaculation|Premature ejaculation +C0033038|T048|AB|F52.4|ICD10CM|Premature ejaculation|Premature ejaculation +C0033038|T048|PT|F52.4|ICD10|Premature ejaculation|Premature ejaculation +C0042266|T048|PT|F52.5|ICD10|Nonorganic vaginismus|Nonorganic vaginismus +C0042266|T048|ET|F52.5|ICD10CM|Psychogenic vaginismus|Psychogenic vaginismus +C2874971|T048|AB|F52.5|ICD10CM|Vaginismus not due to a substance or known physiol condition|Vaginismus not due to a substance or known physiol condition +C2874971|T048|PT|F52.5|ICD10CM|Vaginismus not due to a substance or known physiological condition|Vaginismus not due to a substance or known physiological condition +C2874972|T048|AB|F52.6|ICD10CM|Dyspareunia not due to a substance or known physiol cond|Dyspareunia not due to a substance or known physiol cond +C2874972|T048|PT|F52.6|ICD10CM|Dyspareunia not due to a substance or known physiological condition|Dyspareunia not due to a substance or known physiological condition +C4087327|T048|ET|F52.6|ICD10CM|Genito-pelvic pain penetration disorder|Genito-pelvic pain penetration disorder +C0154466|T048|PT|F52.6|ICD10|Nonorganic dyspareunia|Nonorganic dyspareunia +C0154466|T048|ET|F52.6|ICD10CM|Psychogenic dyspareunia|Psychogenic dyspareunia +C0349260|T048|PT|F52.7|ICD10|Excessive sexual drive|Excessive sexual drive +C0349260|T048|ET|F52.8|ICD10CM|Excessive sexual drive|Excessive sexual drive +C0233619|T048|ET|F52.8|ICD10CM|Nymphomania|Nymphomania +C2874973|T048|AB|F52.8|ICD10CM|Oth sexual dysfnct not due to a sub or known physiol cond|Oth sexual dysfnct not due to a sub or known physiol cond +C2874973|T048|PT|F52.8|ICD10CM|Other sexual dysfunction not due to a substance or known physiological condition|Other sexual dysfunction not due to a substance or known physiological condition +C0349261|T048|PT|F52.8|ICD10|Other sexual dysfunction, not caused by organic disorder or disease|Other sexual dysfunction, not caused by organic disorder or disease +C0233620|T048|ET|F52.8|ICD10CM|Satyriasis|Satyriasis +C0549622|T048|ET|F52.9|ICD10CM|Sexual dysfunction NOS|Sexual dysfunction NOS +C2874974|T048|AB|F52.9|ICD10CM|Unsp sexual dysfnct not due to a sub or known physiol cond|Unsp sexual dysfnct not due to a sub or known physiol cond +C2874974|T048|PT|F52.9|ICD10CM|Unspecified sexual dysfunction not due to a substance or known physiological condition|Unspecified sexual dysfunction not due to a substance or known physiological condition +C3714744|T048|PT|F52.9|ICD10|Unspecified sexual dysfunction, not caused by organic disorder or disease|Unspecified sexual dysfunction, not caused by organic disorder or disease +C0869121|T048|HT|F53|ICD10AE|Mental and behavioral disorders associated with the puerperium, not elsewhere classified|Mental and behavioral disorders associated with the puerperium, not elsewhere classified +C4552595|T048|HT|F53|ICD10CM|Mental and behavioral disorders associated with the puerperium, not elsewhere classified|Mental and behavioral disorders associated with the puerperium, not elsewhere classified +C0869121|T048|HT|F53|ICD10|Mental and behavioural disorders associated with the puerperium, not elsewhere classified|Mental and behavioural disorders associated with the puerperium, not elsewhere classified +C4552595|T048|AB|F53|ICD10CM|Mental and behavrl disorders assoc with the puerperium, NEC|Mental and behavrl disorders assoc with the puerperium, NEC +C0869478|T048|PT|F53.0|ICD10AE|Mild mental and behavioral disorders associated with the puerperium, not elsewhere classified|Mild mental and behavioral disorders associated with the puerperium, not elsewhere classified +C0869478|T048|PT|F53.0|ICD10|Mild mental and behavioural disorders associated with the puerperium, not elsewhere classified|Mild mental and behavioural disorders associated with the puerperium, not elsewhere classified +C0221074|T048|ET|F53.0|ICD10CM|Postnatal depression, NOS|Postnatal depression, NOS +C0221074|T048|AB|F53.0|ICD10CM|Postpartum depression|Postpartum depression +C0221074|T048|PT|F53.0|ICD10CM|Postpartum depression|Postpartum depression +C0221074|T048|ET|F53.0|ICD10CM|Postpartum depression, NOS|Postpartum depression, NOS +C0520678|T048|ET|F53.1|ICD10CM|Postpartum psychosis|Postpartum psychosis +C0520678|T048|PT|F53.1|ICD10CM|Puerperal psychosis|Puerperal psychosis +C0520678|T048|AB|F53.1|ICD10CM|Puerperal psychosis|Puerperal psychosis +C0520678|T048|ET|F53.1|ICD10CM|Puerperal psychosis, NOS|Puerperal psychosis, NOS +C0869479|T048|PT|F53.1|ICD10AE|Severe mental and behavioral disorders associated with the puerperium, not elsewhere classified|Severe mental and behavioral disorders associated with the puerperium, not elsewhere classified +C0869479|T048|PT|F53.1|ICD10|Severe mental and behavioural disorders associated with the puerperium, not elsewhere classified|Severe mental and behavioural disorders associated with the puerperium, not elsewhere classified +C0869122|T048|PT|F53.8|ICD10AE|Other mental and behavioral disorders associated with the puerperium, not elsewhere classified|Other mental and behavioral disorders associated with the puerperium, not elsewhere classified +C0869122|T048|PT|F53.8|ICD10|Other mental and behavioural disorders associated with the puerperium, not elsewhere classified|Other mental and behavioural disorders associated with the puerperium, not elsewhere classified +C0349267|T048|PT|F53.9|ICD10|Puerperal mental disorder, unspecified|Puerperal mental disorder, unspecified +C0349268|T048|AB|F54|ICD10CM|Psych & behavrl factors assoc w disord or dis classd elswhr|Psych & behavrl factors assoc w disord or dis classd elswhr +C0349268|T048|PT|F54|ICD10CM|Psychological and behavioral factors associated with disorders or diseases classified elsewhere|Psychological and behavioral factors associated with disorders or diseases classified elsewhere +C0349268|T048|PT|F54|ICD10AE|Psychological and behavioral factors associated with disorders or diseases classified elsewhere|Psychological and behavioral factors associated with disorders or diseases classified elsewhere +C0349268|T048|PT|F54|ICD10|Psychological and behavioural factors associated with disorders or diseases classified elsewhere|Psychological and behavioural factors associated with disorders or diseases classified elsewhere +C0033899|T033|ET|F54|ICD10CM|Psychological factors affecting physical conditions|Psychological factors affecting physical conditions +C0349269|T048|PT|F55|ICD10|Abuse of non-dependence-producing substances|Abuse of non-dependence-producing substances +C2874975|T048|HT|F55|ICD10CM|Abuse of non-psychoactive substances|Abuse of non-psychoactive substances +C2874975|T048|AB|F55|ICD10CM|Abuse of non-psychoactive substances|Abuse of non-psychoactive substances +C0349770|T048|PT|F55.0|ICD10CM|Abuse of antacids|Abuse of antacids +C0349770|T048|AB|F55.0|ICD10CM|Abuse of antacids|Abuse of antacids +C1404084|T048|PT|F55.1|ICD10CM|Abuse of herbal or folk remedies|Abuse of herbal or folk remedies +C1404084|T048|AB|F55.1|ICD10CM|Abuse of herbal or folk remedies|Abuse of herbal or folk remedies +C0149720|T048|PT|F55.2|ICD10CM|Abuse of laxatives|Abuse of laxatives +C0149720|T048|AB|F55.2|ICD10CM|Abuse of laxatives|Abuse of laxatives +C2874976|T048|PT|F55.3|ICD10CM|Abuse of steroids or hormones|Abuse of steroids or hormones +C2874976|T048|AB|F55.3|ICD10CM|Abuse of steroids or hormones|Abuse of steroids or hormones +C0349767|T048|PT|F55.4|ICD10CM|Abuse of vitamins|Abuse of vitamins +C0349767|T048|AB|F55.4|ICD10CM|Abuse of vitamins|Abuse of vitamins +C2874977|T048|AB|F55.8|ICD10CM|Abuse of other non-psychoactive substances|Abuse of other non-psychoactive substances +C2874977|T048|PT|F55.8|ICD10CM|Abuse of other non-psychoactive substances|Abuse of other non-psychoactive substances +C2874978|T048|ET|F59|ICD10CM|Psychogenic physiological dysfunction NOS|Psychogenic physiological dysfunction NOS +C0349251|T048|AB|F59|ICD10CM|Unsp behavrl synd assoc w physiol disturb and physcl factors|Unsp behavrl synd assoc w physiol disturb and physcl factors +C0349251|T048|PT|F59|ICD10CM|Unspecified behavioral syndromes associated with physiological disturbances and physical factors|Unspecified behavioral syndromes associated with physiological disturbances and physical factors +C0349251|T048|PT|F59|ICD10AE|Unspecified behavioral syndromes associated with physiological disturbances and physical factors|Unspecified behavioral syndromes associated with physiological disturbances and physical factors +C0349251|T048|PT|F59|ICD10|Unspecified behavioural syndromes associated with physiological disturbances and physical factors|Unspecified behavioural syndromes associated with physiological disturbances and physical factors +C0349272|T048|HT|F60|ICD10|Specific personality disorders|Specific personality disorders +C0349272|T048|AB|F60|ICD10CM|Specific personality disorders|Specific personality disorders +C0349272|T048|HT|F60|ICD10CM|Specific personality disorders|Specific personality disorders +C0349297|T048|HT|F60-F69|ICD10CM|Disorders of adult personality and behavior (F60-F69)|Disorders of adult personality and behavior (F60-F69) +C0349297|T048|HT|F60-F69.9|ICD10AE|Disorders of adult personality and behavior|Disorders of adult personality and behavior +C0349297|T048|HT|F60-F69.9|ICD10|Disorders of adult personality and behaviour|Disorders of adult personality and behaviour +C1397052|T048|ET|F60.0|ICD10CM|Expansive paranoid personality (disorder)|Expansive paranoid personality (disorder) +C0338968|T048|ET|F60.0|ICD10CM|Fanatic personality (disorder)|Fanatic personality (disorder) +C0030477|T048|ET|F60.0|ICD10CM|Paranoid personality (disorder)|Paranoid personality (disorder) +C0030477|T048|PT|F60.0|ICD10CM|Paranoid personality disorder|Paranoid personality disorder +C0030477|T048|AB|F60.0|ICD10CM|Paranoid personality disorder|Paranoid personality disorder +C0030477|T048|PT|F60.0|ICD10|Paranoid personality disorder|Paranoid personality disorder +C1404984|T048|ET|F60.0|ICD10CM|Querulant personality (disorder)|Querulant personality (disorder) +C1404986|T048|ET|F60.0|ICD10CM|Sensitive paranoid personality (disorder)|Sensitive paranoid personality (disorder) +C0036339|T048|PT|F60.1|ICD10|Schizoid personality disorder|Schizoid personality disorder +C0036339|T048|PT|F60.1|ICD10CM|Schizoid personality disorder|Schizoid personality disorder +C0036339|T048|AB|F60.1|ICD10CM|Schizoid personality disorder|Schizoid personality disorder +C1387255|T048|ET|F60.2|ICD10CM|Amoral personality (disorder)|Amoral personality (disorder) +C0003431|T048|PT|F60.2|ICD10CM|Antisocial personality disorder|Antisocial personality disorder +C0003431|T048|AB|F60.2|ICD10CM|Antisocial personality disorder|Antisocial personality disorder +C0003431|T048|ET|F60.2|ICD10CM|Asocial personality (disorder)|Asocial personality (disorder) +C0003431|T048|ET|F60.2|ICD10CM|Dissocial personality disorder|Dissocial personality disorder +C0003431|T048|PT|F60.2|ICD10|Dissocial personality disorder|Dissocial personality disorder +C0003431|T048|ET|F60.2|ICD10CM|Psychopathic personality (disorder)|Psychopathic personality (disorder) +C0003431|T048|ET|F60.2|ICD10CM|Sociopathic personality (disorder)|Sociopathic personality (disorder) +C1387047|T048|ET|F60.3|ICD10CM|Aggressive personality (disorder)|Aggressive personality (disorder) +C0006012|T048|PT|F60.3|ICD10CM|Borderline personality disorder|Borderline personality disorder +C0006012|T048|AB|F60.3|ICD10CM|Borderline personality disorder|Borderline personality disorder +C0338970|T048|PT|F60.3|ICD10|Emotionally unstable personality disorder|Emotionally unstable personality disorder +C0338970|T048|ET|F60.3|ICD10CM|Emotionally unstable personality disorder|Emotionally unstable personality disorder +C0152183|T048|ET|F60.3|ICD10CM|Explosive personality (disorder)|Explosive personality (disorder) +C0019681|T048|PT|F60.4|ICD10CM|Histrionic personality disorder|Histrionic personality disorder +C0019681|T048|AB|F60.4|ICD10CM|Histrionic personality disorder|Histrionic personality disorder +C0019681|T048|PT|F60.4|ICD10|Histrionic personality disorder|Histrionic personality disorder +C0019681|T048|ET|F60.4|ICD10CM|Hysterical personality (disorder)|Hysterical personality (disorder) +C0338971|T048|ET|F60.4|ICD10CM|Psychoinfantile personality (disorder)|Psychoinfantile personality (disorder) +C0009595|T048|ET|F60.5|ICD10CM|Anankastic personality (disorder)|Anankastic personality (disorder) +C0009595|T048|PT|F60.5|ICD10|Anankastic personality disorder|Anankastic personality disorder +C1704373|T048|ET|F60.5|ICD10CM|Compulsive personality (disorder)|Compulsive personality (disorder) +C0009595|T048|ET|F60.5|ICD10CM|Obsessional personality (disorder)|Obsessional personality (disorder) +C0009595|T048|PT|F60.5|ICD10CM|Obsessive-compulsive personality disorder|Obsessive-compulsive personality disorder +C0009595|T048|AB|F60.5|ICD10CM|Obsessive-compulsive personality disorder|Obsessive-compulsive personality disorder +C0494415|T048|PT|F60.6|ICD10|Anxious [avoidant] personality disorder|Anxious [avoidant] personality disorder +C0494415|T048|ET|F60.6|ICD10CM|Anxious personality disorder|Anxious personality disorder +C0004444|T048|PT|F60.6|ICD10CM|Avoidant personality disorder|Avoidant personality disorder +C0004444|T048|AB|F60.6|ICD10CM|Avoidant personality disorder|Avoidant personality disorder +C0856182|T048|ET|F60.7|ICD10CM|Asthenic personality (disorder)|Asthenic personality (disorder) +C0011548|T048|PT|F60.7|ICD10CM|Dependent personality disorder|Dependent personality disorder +C0011548|T048|AB|F60.7|ICD10CM|Dependent personality disorder|Dependent personality disorder +C0011548|T048|PT|F60.7|ICD10|Dependent personality disorder|Dependent personality disorder +C0021139|T048|ET|F60.7|ICD10CM|Inadequate personality (disorder)|Inadequate personality (disorder) +C1404980|T048|ET|F60.7|ICD10CM|Passive personality (disorder)|Passive personality (disorder) +C0349273|T048|PT|F60.8|ICD10|Other specific personality disorders|Other specific personality disorders +C0349273|T048|HT|F60.8|ICD10CM|Other specific personality disorders|Other specific personality disorders +C0349273|T048|AB|F60.8|ICD10CM|Other specific personality disorders|Other specific personality disorders +C0027402|T048|PT|F60.81|ICD10CM|Narcissistic personality disorder|Narcissistic personality disorder +C0027402|T048|AB|F60.81|ICD10CM|Narcissistic personality disorder|Narcissistic personality disorder +C1399107|T048|ET|F60.89|ICD10CM|'Haltlose' type personality disorder|'Haltlose' type personality disorder +C0338964|T048|ET|F60.89|ICD10CM|Eccentric personality disorder|Eccentric personality disorder +C0338965|T048|ET|F60.89|ICD10CM|Immature personality disorder|Immature personality disorder +C0349273|T048|PT|F60.89|ICD10CM|Other specific personality disorders|Other specific personality disorders +C0349273|T048|AB|F60.89|ICD10CM|Other specific personality disorders|Other specific personality disorders +C0030631|T048|ET|F60.89|ICD10CM|Passive-aggressive personality disorder|Passive-aggressive personality disorder +C0481408|T048|ET|F60.89|ICD10CM|Psychoneurotic personality disorder|Psychoneurotic personality disorder +C1404989|T048|ET|F60.89|ICD10CM|Self-defeating personality disorder|Self-defeating personality disorder +C0031212|T048|ET|F60.9|ICD10CM|Character disorder NOS|Character disorder NOS +C0031212|T048|ET|F60.9|ICD10CM|Character neurosis NOS|Character neurosis NOS +C0302527|T048|ET|F60.9|ICD10CM|Pathological personality NOS|Pathological personality NOS +C0031212|T048|PT|F60.9|ICD10CM|Personality disorder, unspecified|Personality disorder, unspecified +C0031212|T048|AB|F60.9|ICD10CM|Personality disorder, unspecified|Personality disorder, unspecified +C0031212|T048|PT|F60.9|ICD10|Personality disorder, unspecified|Personality disorder, unspecified +C0349274|T048|PT|F61|ICD10|Mixed and other personality disorders|Mixed and other personality disorders +C0494416|T048|HT|F62|ICD10|Enduring personality changes, not attributable to brain damage and disease|Enduring personality changes, not attributable to brain damage and disease +C0349276|T048|PT|F62.0|ICD10|Enduring personality change after catastrophic experience|Enduring personality change after catastrophic experience +C0349277|T048|PT|F62.1|ICD10|Enduring personality change after psychiatric illness|Enduring personality change after psychiatric illness +C0349278|T048|PT|F62.8|ICD10|Other enduring personality changes|Other enduring personality changes +C0349279|T048|PT|F62.9|ICD10|Enduring personality change, unspecified|Enduring personality change, unspecified +C0349280|T048|HT|F63|ICD10|Habit and impulse disorders|Habit and impulse disorders +C1400433|T048|AB|F63|ICD10CM|Impulse disorders|Impulse disorders +C1400433|T048|HT|F63|ICD10CM|Impulse disorders|Impulse disorders +C0030662|T048|ET|F63.0|ICD10CM|Compulsive gambling|Compulsive gambling +C0030662|T048|ET|F63.0|ICD10CM|Gambling disorder|Gambling disorder +C0030662|T048|PT|F63.0|ICD10CM|Pathological gambling|Pathological gambling +C0030662|T048|AB|F63.0|ICD10CM|Pathological gambling|Pathological gambling +C0030662|T048|PT|F63.0|ICD10|Pathological gambling|Pathological gambling +C0016142|T048|ET|F63.1|ICD10CM|Pathological fire-setting|Pathological fire-setting +C0016142|T048|PT|F63.1|ICD10|Pathological fire-setting [pyromania]|Pathological fire-setting [pyromania] +C0016142|T048|PT|F63.1|ICD10CM|Pyromania|Pyromania +C0016142|T048|AB|F63.1|ICD10CM|Pyromania|Pyromania +C0022734|T048|PT|F63.2|ICD10CM|Kleptomania|Kleptomania +C0022734|T048|AB|F63.2|ICD10CM|Kleptomania|Kleptomania +C0022734|T048|ET|F63.2|ICD10CM|Pathological stealing|Pathological stealing +C0022734|T048|PT|F63.2|ICD10|Pathological stealing [kleptomania]|Pathological stealing [kleptomania] +C0040953|T048|ET|F63.3|ICD10CM|Hair plucking|Hair plucking +C0040953|T048|PT|F63.3|ICD10CM|Trichotillomania|Trichotillomania +C0040953|T048|AB|F63.3|ICD10CM|Trichotillomania|Trichotillomania +C0040953|T048|PT|F63.3|ICD10|Trichotillomania|Trichotillomania +C0349281|T048|PT|F63.8|ICD10|Other habit and impulse disorders|Other habit and impulse disorders +C2874979|T048|HT|F63.8|ICD10CM|Other impulse disorders|Other impulse disorders +C2874979|T048|AB|F63.8|ICD10CM|Other impulse disorders|Other impulse disorders +C0021776|T048|PT|F63.81|ICD10CM|Intermittent explosive disorder|Intermittent explosive disorder +C0021776|T048|AB|F63.81|ICD10CM|Intermittent explosive disorder|Intermittent explosive disorder +C2874979|T048|AB|F63.89|ICD10CM|Other impulse disorders|Other impulse disorders +C2874979|T048|PT|F63.89|ICD10CM|Other impulse disorders|Other impulse disorders +C0349280|T048|PT|F63.9|ICD10|Habit and impulse disorder, unspecified|Habit and impulse disorder, unspecified +C0021122|T048|ET|F63.9|ICD10CM|Impulse control disorder NOS|Impulse control disorder NOS +C2874980|T048|AB|F63.9|ICD10CM|Impulse disorder, unspecified|Impulse disorder, unspecified +C2874980|T048|PT|F63.9|ICD10CM|Impulse disorder, unspecified|Impulse disorder, unspecified +C0017250|T048|AB|F64|ICD10CM|Gender identity disorders|Gender identity disorders +C0017250|T048|HT|F64|ICD10CM|Gender identity disorders|Gender identity disorders +C0017250|T048|HT|F64|ICD10|Gender identity disorders|Gender identity disorders +C4237136|T048|ET|F64.0|ICD10CM|Gender dysphoria in adolescents and adults|Gender dysphoria in adolescents and adults +C4268305|T048|ET|F64.0|ICD10CM|Gender identity disorder in adolescence and adulthood|Gender identity disorder in adolescence and adulthood +C4237137|T048|ET|F64.2|ICD10CM|Gender dysphoria in children|Gender dysphoria in children +C0236802|T048|PT|F64.2|ICD10|Gender identity disorder of childhood|Gender identity disorder of childhood +C0236802|T048|PT|F64.2|ICD10CM|Gender identity disorder of childhood|Gender identity disorder of childhood +C0236802|T048|AB|F64.2|ICD10CM|Gender identity disorder of childhood|Gender identity disorder of childhood +C0349284|T048|PT|F64.8|ICD10CM|Other gender identity disorders|Other gender identity disorders +C0349284|T048|AB|F64.8|ICD10CM|Other gender identity disorders|Other gender identity disorders +C0349284|T048|PT|F64.8|ICD10|Other gender identity disorders|Other gender identity disorders +C4237330|T048|ET|F64.8|ICD10CM|Other specified gender dysphoria|Other specified gender dysphoria +C4237466|T048|ET|F64.9|ICD10CM|Gender dysphoria, unspecified|Gender dysphoria, unspecified +C0017250|T048|PT|F64.9|ICD10|Gender identity disorder, unspecified|Gender identity disorder, unspecified +C0017250|T048|PT|F64.9|ICD10CM|Gender identity disorder, unspecified|Gender identity disorder, unspecified +C0017250|T048|AB|F64.9|ICD10CM|Gender identity disorder, unspecified|Gender identity disorder, unspecified +C0017250|T048|ET|F64.9|ICD10CM|Gender-role disorder NOS|Gender-role disorder NOS +C0935617|T048|HT|F65|ICD10|Disorders of sexual preference|Disorders of sexual preference +C0030482|T048|HT|F65|ICD10CM|Paraphilias|Paraphilias +C0030482|T048|AB|F65|ICD10CM|Paraphilias|Paraphilias +C0015957|T048|PT|F65.0|ICD10CM|Fetishism|Fetishism +C0015957|T048|AB|F65.0|ICD10CM|Fetishism|Fetishism +C0015957|T048|PT|F65.0|ICD10|Fetishism|Fetishism +C0015957|T048|ET|F65.0|ICD10CM|Fetishistic disorder|Fetishistic disorder +C4237450|T048|ET|F65.1|ICD10CM|Transvestic disorder|Transvestic disorder +C0015269|T048|PT|F65.2|ICD10CM|Exhibitionism|Exhibitionism +C0015269|T048|AB|F65.2|ICD10CM|Exhibitionism|Exhibitionism +C0015269|T048|PT|F65.2|ICD10|Exhibitionism|Exhibitionism +C4237132|T048|ET|F65.2|ICD10CM|Exhibitionistic disorder|Exhibitionistic disorder +C0042979|T048|PT|F65.3|ICD10|Voyeurism|Voyeurism +C0042979|T048|PT|F65.3|ICD10CM|Voyeurism|Voyeurism +C0042979|T048|AB|F65.3|ICD10CM|Voyeurism|Voyeurism +C4237489|T048|ET|F65.3|ICD10CM|Voyeuristic disorder|Voyeuristic disorder +C0030764|T048|PT|F65.4|ICD10|Paedophilia|Paedophilia +C0030764|T048|PT|F65.4|ICD10CM|Pedophilia|Pedophilia +C0030764|T048|AB|F65.4|ICD10CM|Pedophilia|Pedophilia +C0030764|T048|PT|F65.4|ICD10AE|Pedophilia|Pedophilia +C4237344|T048|ET|F65.4|ICD10CM|Pedophilic disorder|Pedophilic disorder +C0392361|T048|PT|F65.5|ICD10|Sadomasochism|Sadomasochism +C0392361|T048|HT|F65.5|ICD10CM|Sadomasochism|Sadomasochism +C0392361|T048|AB|F65.5|ICD10CM|Sadomasochism|Sadomasochism +C0392361|T048|AB|F65.50|ICD10CM|Sadomasochism, unspecified|Sadomasochism, unspecified +C0392361|T048|PT|F65.50|ICD10CM|Sadomasochism, unspecified|Sadomasochism, unspecified +C0036908|T048|PT|F65.51|ICD10CM|Sexual masochism|Sexual masochism +C0036908|T048|AB|F65.51|ICD10CM|Sexual masochism|Sexual masochism +C0036908|T048|ET|F65.51|ICD10CM|Sexual masochism disorder|Sexual masochism disorder +C0036913|T048|PT|F65.52|ICD10CM|Sexual sadism|Sexual sadism +C0036913|T048|AB|F65.52|ICD10CM|Sexual sadism|Sexual sadism +C0036913|T048|ET|F65.52|ICD10CM|Sexual sadism disorder|Sexual sadism disorder +C0349287|T048|PT|F65.6|ICD10|Multiple disorders of sexual preference|Multiple disorders of sexual preference +C0349288|T048|PT|F65.8|ICD10|Other disorders of sexual preference|Other disorders of sexual preference +C2874982|T048|HT|F65.8|ICD10CM|Other paraphilias|Other paraphilias +C2874982|T048|AB|F65.8|ICD10CM|Other paraphilias|Other paraphilias +C0016738|T048|PT|F65.81|ICD10CM|Frotteurism|Frotteurism +C0016738|T048|AB|F65.81|ICD10CM|Frotteurism|Frotteurism +C4237135|T048|ET|F65.81|ICD10CM|Frotteuristic disorder|Frotteuristic disorder +C0270498|T048|ET|F65.89|ICD10CM|Necrophilia|Necrophilia +C2874982|T048|AB|F65.89|ICD10CM|Other paraphilias|Other paraphilias +C2874982|T048|PT|F65.89|ICD10CM|Other paraphilias|Other paraphilias +C4237336|T048|ET|F65.89|ICD10CM|Other specified paraphilic disorder|Other specified paraphilic disorder +C0935617|T048|PT|F65.9|ICD10|Disorder of sexual preference, unspecified|Disorder of sexual preference, unspecified +C2874983|T048|AB|F65.9|ICD10CM|Paraphilia, unspecified|Paraphilia, unspecified +C2874983|T048|PT|F65.9|ICD10CM|Paraphilia, unspecified|Paraphilia, unspecified +C4237478|T048|ET|F65.9|ICD10CM|Paraphilic disorder, unspecified|Paraphilic disorder, unspecified +C1527307|T048|ET|F65.9|ICD10CM|Sexual deviation NOS|Sexual deviation NOS +C0029736|T048|AB|F66|ICD10CM|Other sexual disorders|Other sexual disorders +C0029736|T048|PT|F66|ICD10CM|Other sexual disorders|Other sexual disorders +C0494419|T048|HT|F66|ICD10AE|Psychological and behavioral disorders associated with sexual development and orientation|Psychological and behavioral disorders associated with sexual development and orientation +C0494419|T048|HT|F66|ICD10|Psychological and behavioural disorders associated with sexual development and orientation|Psychological and behavioural disorders associated with sexual development and orientation +C0349290|T048|ET|F66|ICD10CM|Sexual maturation disorder|Sexual maturation disorder +C0349291|T048|ET|F66|ICD10CM|Sexual relationship disorder|Sexual relationship disorder +C0349290|T048|PT|F66.0|ICD10|Sexual maturation disorder|Sexual maturation disorder +C0233880|T048|PT|F66.1|ICD10|Egodystonic sexual orientation|Egodystonic sexual orientation +C0349291|T048|PT|F66.2|ICD10|Sexual relationship disorder|Sexual relationship disorder +C0349292|T048|PT|F66.8|ICD10|Other psychosexual development disorders|Other psychosexual development disorders +C0349293|T048|PT|F66.9|ICD10|Psychosexual development disorder, unspecified|Psychosexual development disorder, unspecified +C0349294|T048|HT|F68|ICD10AE|Other disorders of adult personality and behavior|Other disorders of adult personality and behavior +C0349294|T048|AB|F68|ICD10CM|Other disorders of adult personality and behavior|Other disorders of adult personality and behavior +C0349294|T048|HT|F68|ICD10CM|Other disorders of adult personality and behavior|Other disorders of adult personality and behavior +C0349294|T048|HT|F68|ICD10|Other disorders of adult personality and behaviour|Other disorders of adult personality and behaviour +C0349295|T048|PT|F68.0|ICD10|Elaboration of physical symptoms for psychological reasons|Elaboration of physical symptoms for psychological reasons +C0270595|T048|ET|F68.1|ICD10CM|Compensation neurosis|Compensation neurosis +C0349295|T048|ET|F68.1|ICD10CM|Elaboration of physical symptoms for psychological reasons|Elaboration of physical symptoms for psychological reasons +C4065090|T048|AB|F68.1|ICD10CM|Factitious disorder imposed on self|Factitious disorder imposed on self +C4065090|T048|HT|F68.1|ICD10CM|Factitious disorder imposed on self|Factitious disorder imposed on self +C0026785|T048|ET|F68.1|ICD10CM|Hospital hopper syndrome|Hospital hopper syndrome +C0026785|T048|ET|F68.1|ICD10CM|Münchausen's syndrome|Münchausen's syndrome +C0026785|T048|ET|F68.1|ICD10CM|Peregrinating patient|Peregrinating patient +C4554208|T048|AB|F68.10|ICD10CM|Factitious disorder imposed on self, unspecified|Factitious disorder imposed on self, unspecified +C4554208|T048|PT|F68.10|ICD10CM|Factitious disorder imposed on self, unspecified|Factitious disorder imposed on self, unspecified +C4702819|T048|AB|F68.11|ICD10CM|Factit disord imposed on self, with predom psych signs/symp|Factit disord imposed on self, with predom psych signs/symp +C4702819|T048|PT|F68.11|ICD10CM|Factitious disorder imposed on self, with predominantly psychological signs and symptoms|Factitious disorder imposed on self, with predominantly psychological signs and symptoms +C4702820|T048|AB|F68.12|ICD10CM|Factit disord impsd on self, with predom physcl signs/symp|Factit disord impsd on self, with predom physcl signs/symp +C4702820|T048|PT|F68.12|ICD10CM|Factitious disorder imposed on self, with predominantly physical signs and symptoms|Factitious disorder imposed on self, with predominantly physical signs and symptoms +C4702821|T048|AB|F68.13|ICD10CM|Factit disord impsd on self,w comb psych & physcl signs/symp|Factit disord impsd on self,w comb psych & physcl signs/symp +C4702821|T048|PT|F68.13|ICD10CM|Factitious disorder imposed on self, with combined psychological and physical signs and symptoms|Factitious disorder imposed on self, with combined psychological and physical signs and symptoms +C0349296|T048|PT|F68.8|ICD10AE|Other specified disorders of adult personality and behavior|Other specified disorders of adult personality and behavior +C0349296|T048|PT|F68.8|ICD10CM|Other specified disorders of adult personality and behavior|Other specified disorders of adult personality and behavior +C0349296|T048|AB|F68.8|ICD10CM|Other specified disorders of adult personality and behavior|Other specified disorders of adult personality and behavior +C0349296|T048|PT|F68.8|ICD10|Other specified disorders of adult personality and behaviour|Other specified disorders of adult personality and behaviour +C0860651|T048|ET|F68.A|ICD10CM|Factitious disorder by proxy|Factitious disorder by proxy +C4554209|T048|AB|F68.A|ICD10CM|Factitious disorder imposed on another|Factitious disorder imposed on another +C4554209|T048|PT|F68.A|ICD10CM|Factitious disorder imposed on another|Factitious disorder imposed on another +C0085277|T048|ET|F68.A|ICD10CM|Münchausen's by proxy|Münchausen's by proxy +C0349297|T048|PT|F69|ICD10CM|Unspecified disorder of adult personality and behavior|Unspecified disorder of adult personality and behavior +C0349297|T048|AB|F69|ICD10CM|Unspecified disorder of adult personality and behavior|Unspecified disorder of adult personality and behavior +C0349297|T048|PT|F69|ICD10AE|Unspecified disorder of adult personality and behavior|Unspecified disorder of adult personality and behavior +C0349297|T048|PT|F69|ICD10|Unspecified disorder of adult personality and behaviour|Unspecified disorder of adult personality and behaviour +C2874985|T048|ET|F70|ICD10CM|IQ level 50-55 to approximately 70|IQ level 50-55 to approximately 70 +C0026106|T048|PT|F70|ICD10CM|Mild intellectual disabilities|Mild intellectual disabilities +C0026106|T048|AB|F70|ICD10CM|Mild intellectual disabilities|Mild intellectual disabilities +C0026106|T048|HT|F70|ICD10|Mild mental retardation|Mild mental retardation +C0026106|T048|ET|F70|ICD10CM|Mild mental subnormality|Mild mental subnormality +C3263953|T048|HT|F70-F79|ICD10CM|Intellectual Disabilities (F70-F79)|Intellectual Disabilities (F70-F79) +C0025362|T048|HT|F70-F79.9|ICD10|Mental retardation|Mental retardation +C0349298|T048|PT|F70.0|ICD10AE|Mild mental retardation with the statement of no, or minimal, impairment of behavior|Mild mental retardation with the statement of no, or minimal, impairment of behavior +C0349298|T048|PT|F70.0|ICD10|Mild mental retardation with the statement of no, or minimal, impairment of behaviour|Mild mental retardation with the statement of no, or minimal, impairment of behaviour +C0349299|T048|PT|F70.1|ICD10AE|Mild mental retardation, significant impairment of behavior requiring attention or treatment|Mild mental retardation, significant impairment of behavior requiring attention or treatment +C0349299|T048|PT|F70.1|ICD10|Mild mental retardation, significant impairment of behaviour requiring attention or treatment|Mild mental retardation, significant impairment of behaviour requiring attention or treatment +C0349300|T048|PT|F70.8|ICD10AE|Mild mental retardation, other impairments of behavior|Mild mental retardation, other impairments of behavior +C0349300|T048|PT|F70.8|ICD10|Mild mental retardation, other impairments of behaviour|Mild mental retardation, other impairments of behaviour +C0349301|T048|PT|F70.9|ICD10AE|Mild mental retardation without mention of impairment of behavior|Mild mental retardation without mention of impairment of behavior +C0349301|T048|PT|F70.9|ICD10|Mild mental retardation without mention of impairment of behaviour|Mild mental retardation without mention of impairment of behaviour +C2874986|T048|ET|F71|ICD10CM|IQ level 35-40 to 50-55|IQ level 35-40 to 50-55 +C0026351|T048|PT|F71|ICD10CM|Moderate intellectual disabilities|Moderate intellectual disabilities +C0026351|T048|AB|F71|ICD10CM|Moderate intellectual disabilities|Moderate intellectual disabilities +C0026351|T048|HT|F71|ICD10|Moderate mental retardation|Moderate mental retardation +C0026351|T048|ET|F71|ICD10CM|Moderate mental subnormality|Moderate mental subnormality +C0349302|T048|PT|F71.0|ICD10AE|Moderate mental retardation with the statement of no, or minimal, impairment of behavior|Moderate mental retardation with the statement of no, or minimal, impairment of behavior +C0349302|T048|PT|F71.0|ICD10|Moderate mental retardation with the statement of no, or minimal, impairment of behaviour|Moderate mental retardation with the statement of no, or minimal, impairment of behaviour +C0349303|T048|PT|F71.1|ICD10AE|Moderate mental retardation, significant impairment of behavior requiring attention or treatment|Moderate mental retardation, significant impairment of behavior requiring attention or treatment +C0349303|T048|PT|F71.1|ICD10|Moderate mental retardation, significant impairment of behaviour requiring attention or treatment|Moderate mental retardation, significant impairment of behaviour requiring attention or treatment +C0494421|T048|PT|F71.8|ICD10AE|Moderate mental retardation, other impairments of behavior|Moderate mental retardation, other impairments of behavior +C0494421|T048|PT|F71.8|ICD10|Moderate mental retardation, other impairments of behaviour|Moderate mental retardation, other impairments of behaviour +C0349305|T048|PT|F71.9|ICD10AE|Moderate mental retardation without mention of impairment of behavior|Moderate mental retardation without mention of impairment of behavior +C0349305|T048|PT|F71.9|ICD10|Moderate mental retardation without mention of impairment of behaviour|Moderate mental retardation without mention of impairment of behaviour +C2874987|T048|ET|F72|ICD10CM|IQ 20-25 to 35-40|IQ 20-25 to 35-40 +C0036857|T048|AB|F72|ICD10CM|Severe intellectual disabilities|Severe intellectual disabilities +C0036857|T048|PT|F72|ICD10CM|Severe intellectual disabilities|Severe intellectual disabilities +C0036857|T048|HT|F72|ICD10|Severe mental retardation|Severe mental retardation +C0036857|T048|ET|F72|ICD10CM|Severe mental subnormality|Severe mental subnormality +C0349306|T048|PT|F72.0|ICD10AE|Severe mental retardation with the statement of no, or minimal, impairment of behavior|Severe mental retardation with the statement of no, or minimal, impairment of behavior +C0349306|T048|PT|F72.0|ICD10|Severe mental retardation with the statement of no, or minimal, impairment of behaviour|Severe mental retardation with the statement of no, or minimal, impairment of behaviour +C0349307|T048|PT|F72.1|ICD10AE|Severe mental retardation, significant impairment of behavior requiring attention or treatment|Severe mental retardation, significant impairment of behavior requiring attention or treatment +C0349307|T048|PT|F72.1|ICD10|Severe mental retardation, significant impairment of behaviour requiring attention or treatment|Severe mental retardation, significant impairment of behaviour requiring attention or treatment +C0349308|T048|PT|F72.8|ICD10AE|Severe mental retardation, other impairments of behavior|Severe mental retardation, other impairments of behavior +C0349308|T048|PT|F72.8|ICD10|Severe mental retardation, other impairments of behaviour|Severe mental retardation, other impairments of behaviour +C0349309|T048|PT|F72.9|ICD10AE|Severe mental retardation without mention of impairment of behavior|Severe mental retardation without mention of impairment of behavior +C0349309|T048|PT|F72.9|ICD10|Severe mental retardation without mention of impairment of behaviour|Severe mental retardation without mention of impairment of behaviour +C2874988|T048|ET|F73|ICD10CM|IQ level below 20-25|IQ level below 20-25 +C3161330|T048|AB|F73|ICD10CM|Profound intellectual disabilities|Profound intellectual disabilities +C3161330|T048|PT|F73|ICD10CM|Profound intellectual disabilities|Profound intellectual disabilities +C0020796|T048|HT|F73|ICD10|Profound mental retardation|Profound mental retardation +C0020796|T048|ET|F73|ICD10CM|Profound mental subnormality|Profound mental subnormality +C0349310|T048|PT|F73.0|ICD10AE|Profound mental retardation with the statement of no, or minimal, impairment of behavior|Profound mental retardation with the statement of no, or minimal, impairment of behavior +C0349310|T048|PT|F73.0|ICD10|Profound mental retardation with the statement of no, or minimal, impairment of behaviour|Profound mental retardation with the statement of no, or minimal, impairment of behaviour +C0349311|T048|PT|F73.1|ICD10AE|Profound mental retardation, significant impairment of behavior requiring attention or treatment|Profound mental retardation, significant impairment of behavior requiring attention or treatment +C0349311|T048|PT|F73.1|ICD10|Profound mental retardation, significant impairment of behaviour requiring attention or treatment|Profound mental retardation, significant impairment of behaviour requiring attention or treatment +C0349312|T048|PT|F73.8|ICD10AE|Profound mental retardation, other impairments of behavior|Profound mental retardation, other impairments of behavior +C0349312|T048|PT|F73.8|ICD10|Profound mental retardation, other impairments of behaviour|Profound mental retardation, other impairments of behaviour +C0349313|T048|PT|F73.9|ICD10AE|Profound mental retardation without mention of impairment of behavior|Profound mental retardation without mention of impairment of behavior +C0349313|T048|PT|F73.9|ICD10|Profound mental retardation without mention of impairment of behaviour|Profound mental retardation without mention of impairment of behaviour +C3263954|T048|AB|F78|ICD10CM|Other intellectual disabilities|Other intellectual disabilities +C3263954|T048|PT|F78|ICD10CM|Other intellectual disabilities|Other intellectual disabilities +C0494422|T048|HT|F78|ICD10|Other mental retardation|Other mental retardation +C0349314|T048|PT|F78.0|ICD10AE|Other mental retardation with the statement of no, or minimal, impairment of behavior|Other mental retardation with the statement of no, or minimal, impairment of behavior +C0349314|T048|PT|F78.0|ICD10|Other mental retardation with the statement of no, or minimal, impairment of behaviour|Other mental retardation with the statement of no, or minimal, impairment of behaviour +C0349315|T048|PT|F78.1|ICD10AE|Other mental retardation, significant impairment of behavior requiring attention or treatment|Other mental retardation, significant impairment of behavior requiring attention or treatment +C0349315|T048|PT|F78.1|ICD10|Other mental retardation, significant impairment of behaviour requiring attention or treatment|Other mental retardation, significant impairment of behaviour requiring attention or treatment +C0349316|T048|PT|F78.8|ICD10AE|Other mental retardation, other impairments of behavior|Other mental retardation, other impairments of behavior +C0349316|T048|PT|F78.8|ICD10|Other mental retardation, other impairments of behaviour|Other mental retardation, other impairments of behaviour +C0349317|T048|PT|F78.9|ICD10AE|Other mental retardation without mention of impairment of behavior|Other mental retardation without mention of impairment of behavior +C0349317|T048|PT|F78.9|ICD10|Other mental retardation without mention of impairment of behaviour|Other mental retardation without mention of impairment of behaviour +C0917816|T048|ET|F79|ICD10CM|Mental deficiency NOS|Mental deficiency NOS +C1306341|T048|ET|F79|ICD10CM|Mental subnormality NOS|Mental subnormality NOS +C3161331|T048|PT|F79|ICD10CM|Unspecified intellectual disabilities|Unspecified intellectual disabilities +C3161331|T048|AB|F79|ICD10CM|Unspecified intellectual disabilities|Unspecified intellectual disabilities +C0025362|T048|HT|F79|ICD10|Unspecified mental retardation|Unspecified mental retardation +C0349318|T048|PT|F79.0|ICD10AE|Unspecified mental retardation with the statement of no, or minimal, impairment of behavior|Unspecified mental retardation with the statement of no, or minimal, impairment of behavior +C0349318|T048|PT|F79.0|ICD10|Unspecified mental retardation with the statement of no, or minimal, impairment of behaviour|Unspecified mental retardation with the statement of no, or minimal, impairment of behaviour +C0349319|T048|PT|F79.1|ICD10AE|Unspecified mental retardation, significant impairment of behavior requiring attention or treatment|Unspecified mental retardation, significant impairment of behavior requiring attention or treatment +C0349319|T048|PT|F79.1|ICD10|Unspecified mental retardation, significant impairment of behaviour requiring attention or treatment|Unspecified mental retardation, significant impairment of behaviour requiring attention or treatment +C0349320|T048|PT|F79.8|ICD10AE|Unspecified mental retardation, other impairments of behavior|Unspecified mental retardation, other impairments of behavior +C0349320|T048|PT|F79.8|ICD10|Unspecified mental retardation, other impairments of behaviour|Unspecified mental retardation, other impairments of behaviour +C0349321|T048|PT|F79.9|ICD10AE|Unspecified mental retardation without mention of impairment of behavior|Unspecified mental retardation without mention of impairment of behavior +C0349321|T048|PT|F79.9|ICD10|Unspecified mental retardation without mention of impairment of behaviour|Unspecified mental retardation without mention of impairment of behaviour +C0494423|T048|HT|F80|ICD10|Specific developmental disorders of speech and language|Specific developmental disorders of speech and language +C0494423|T048|AB|F80|ICD10CM|Specific developmental disorders of speech and language|Specific developmental disorders of speech and language +C0494423|T048|HT|F80|ICD10CM|Specific developmental disorders of speech and language|Specific developmental disorders of speech and language +C2874989|T048|HT|F80-F89|ICD10CM|Pervasive and specific developmental disorders (F80-F89)|Pervasive and specific developmental disorders (F80-F89) +C0478658|T048|HT|F80-F89.9|ICD10|Disorders of psychological development|Disorders of psychological development +C0236828|T048|ET|F80.0|ICD10CM|Dyslalia|Dyslalia +C0236828|T048|ET|F80.0|ICD10CM|Functional speech articulation disorder|Functional speech articulation disorder +C0233727|T033|ET|F80.0|ICD10CM|Lalling|Lalling +C0233728|T048|ET|F80.0|ICD10CM|Lisping|Lisping +C2004345|T048|ET|F80.0|ICD10CM|Phonological developmental disorder|Phonological developmental disorder +C4048283|T048|PT|F80.0|ICD10CM|Phonological disorder|Phonological disorder +C4048283|T048|AB|F80.0|ICD10CM|Phonological disorder|Phonological disorder +C0236828|T048|PT|F80.0|ICD10|Specific speech articulation disorder|Specific speech articulation disorder +C0236828|T048|ET|F80.0|ICD10CM|Speech articulation developmental disorder|Speech articulation developmental disorder +C2004345|T048|ET|F80.0|ICD10CM|Speech-sound disorder|Speech-sound disorder +C2874991|T048|ET|F80.1|ICD10CM|Developmental dysphasia or aphasia, expressive type|Developmental dysphasia or aphasia, expressive type +C0236826|T048|PT|F80.1|ICD10CM|Expressive language disorder|Expressive language disorder +C0236826|T048|AB|F80.1|ICD10CM|Expressive language disorder|Expressive language disorder +C0236826|T048|PT|F80.1|ICD10|Expressive language disorder|Expressive language disorder +C2874992|T048|ET|F80.2|ICD10CM|Developmental dysphasia or aphasia, receptive type|Developmental dysphasia or aphasia, receptive type +C1386518|T048|ET|F80.2|ICD10CM|Developmental Wernicke's aphasia|Developmental Wernicke's aphasia +C0236827|T048|PT|F80.2|ICD10CM|Mixed receptive-expressive language disorder|Mixed receptive-expressive language disorder +C0236827|T048|AB|F80.2|ICD10CM|Mixed receptive-expressive language disorder|Mixed receptive-expressive language disorder +C0011768|T048|PT|F80.2|ICD10|Receptive language disorder|Receptive language disorder +C0282512|T048|PT|F80.3|ICD10|Acquired aphasia with epilepsy [Landau-Kleffner]|Acquired aphasia with epilepsy [Landau-Kleffner] +C2874993|T046|AB|F80.4|ICD10CM|Speech and language development delay due to hearing loss|Speech and language development delay due to hearing loss +C2874993|T046|PT|F80.4|ICD10CM|Speech and language development delay due to hearing loss|Speech and language development delay due to hearing loss +C0349324|T048|PT|F80.8|ICD10|Other developmental disorders of speech and language|Other developmental disorders of speech and language +C0349324|T048|HT|F80.8|ICD10CM|Other developmental disorders of speech and language|Other developmental disorders of speech and language +C0349324|T048|AB|F80.8|ICD10CM|Other developmental disorders of speech and language|Other developmental disorders of speech and language +C2921028|T048|PT|F80.81|ICD10CM|Childhood onset fluency disorder|Childhood onset fluency disorder +C2921028|T048|AB|F80.81|ICD10CM|Childhood onset fluency disorder|Childhood onset fluency disorder +C0009090|T184|ET|F80.81|ICD10CM|Cluttering NOS|Cluttering NOS +C0038506|T048|ET|F80.81|ICD10CM|Stuttering NOS|Stuttering NOS +C0150080|T048|AB|F80.82|ICD10CM|Social pragmatic communication disorder|Social pragmatic communication disorder +C0150080|T048|PT|F80.82|ICD10CM|Social pragmatic communication disorder|Social pragmatic communication disorder +C0349324|T048|PT|F80.89|ICD10CM|Other developmental disorders of speech and language|Other developmental disorders of speech and language +C0349324|T048|AB|F80.89|ICD10CM|Other developmental disorders of speech and language|Other developmental disorders of speech and language +C0009460|T048|ET|F80.9|ICD10CM|Communication disorder NOS|Communication disorder NOS +C0349325|T048|PT|F80.9|ICD10CM|Developmental disorder of speech and language, unspecified|Developmental disorder of speech and language, unspecified +C0349325|T048|AB|F80.9|ICD10CM|Developmental disorder of speech and language, unspecified|Developmental disorder of speech and language, unspecified +C0349325|T048|PT|F80.9|ICD10|Developmental disorder of speech and language, unspecified|Developmental disorder of speech and language, unspecified +C0023015|T048|ET|F80.9|ICD10CM|Language disorder NOS|Language disorder NOS +C0494426|T048|AB|F81|ICD10CM|Specific developmental disorders of scholastic skills|Specific developmental disorders of scholastic skills +C0494426|T048|HT|F81|ICD10CM|Specific developmental disorders of scholastic skills|Specific developmental disorders of scholastic skills +C0494426|T048|HT|F81|ICD10|Specific developmental disorders of scholastic skills|Specific developmental disorders of scholastic skills +C1389228|T048|ET|F81.0|ICD10CM|'Backward reading'|'Backward reading' +C0920296|T048|ET|F81.0|ICD10CM|Developmental dyslexia|Developmental dyslexia +C4237420|T048|ET|F81.0|ICD10CM|Specific learning disorder, with impairment in reading|Specific learning disorder, with impairment in reading +C0037789|T048|PT|F81.0|ICD10|Specific reading disorder|Specific reading disorder +C0037789|T048|PT|F81.0|ICD10CM|Specific reading disorder|Specific reading disorder +C0037789|T048|AB|F81.0|ICD10CM|Specific reading disorder|Specific reading disorder +C0476254|T048|ET|F81.0|ICD10CM|Specific reading retardation|Specific reading retardation +C0349326|T048|PT|F81.1|ICD10|Specific spelling disorder|Specific spelling disorder +C1385931|T048|ET|F81.2|ICD10CM|Developmental acalculia|Developmental acalculia +C1411876|T048|ET|F81.2|ICD10CM|Developmental arithmetical disorder|Developmental arithmetical disorder +C0936244|T047|ET|F81.2|ICD10CM|Developmental Gerstmann's syndrome|Developmental Gerstmann's syndrome +C1411876|T048|PT|F81.2|ICD10CM|Mathematics disorder|Mathematics disorder +C1411876|T048|AB|F81.2|ICD10CM|Mathematics disorder|Mathematics disorder +C0494427|T048|PT|F81.2|ICD10|Specific disorder of arithmetical skills|Specific disorder of arithmetical skills +C4237419|T048|ET|F81.2|ICD10CM|Specific learning disorder, with impairment in mathematics|Specific learning disorder, with impairment in mathematics +C0349327|T048|PT|F81.3|ICD10|Mixed disorder of scholastic skills|Mixed disorder of scholastic skills +C0011764|T048|HT|F81.8|ICD10CM|Other developmental disorders of scholastic skills|Other developmental disorders of scholastic skills +C0011764|T048|AB|F81.8|ICD10CM|Other developmental disorders of scholastic skills|Other developmental disorders of scholastic skills +C0011764|T048|PT|F81.8|ICD10|Other developmental disorders of scholastic skills|Other developmental disorders of scholastic skills +C0236825|T048|PT|F81.81|ICD10CM|Disorder of written expression|Disorder of written expression +C0236825|T048|AB|F81.81|ICD10CM|Disorder of written expression|Disorder of written expression +C4237421|T048|ET|F81.81|ICD10CM|Specific learning disorder, with impairment in written expression|Specific learning disorder, with impairment in written expression +C0349326|T048|ET|F81.81|ICD10CM|Specific spelling disorder|Specific spelling disorder +C0011764|T048|PT|F81.89|ICD10CM|Other developmental disorders of scholastic skills|Other developmental disorders of scholastic skills +C0011764|T048|AB|F81.89|ICD10CM|Other developmental disorders of scholastic skills|Other developmental disorders of scholastic skills +C1330966|T033|PT|F81.9|ICD10|Developmental disorder of scholastic skills, unspecified|Developmental disorder of scholastic skills, unspecified +C1330966|T033|PT|F81.9|ICD10CM|Developmental disorder of scholastic skills, unspecified|Developmental disorder of scholastic skills, unspecified +C1330966|T033|AB|F81.9|ICD10CM|Developmental disorder of scholastic skills, unspecified|Developmental disorder of scholastic skills, unspecified +C2874996|T048|ET|F81.9|ICD10CM|Knowledge acquisition disability NOS|Knowledge acquisition disability NOS +C0751265|T048|ET|F81.9|ICD10CM|Learning disability NOS|Learning disability NOS +C0023186|T048|ET|F81.9|ICD10CM|Learning disorder NOS|Learning disorder NOS +C0520947|T048|ET|F82|ICD10CM|Clumsy child syndrome|Clumsy child syndrome +C0011757|T048|ET|F82|ICD10CM|Developmental coordination disorder|Developmental coordination disorder +C0011757|T048|ET|F82|ICD10CM|Developmental dyspraxia|Developmental dyspraxia +C0026613|T048|PT|F82|ICD10CM|Specific developmental disorder of motor function|Specific developmental disorder of motor function +C0026613|T048|AB|F82|ICD10CM|Specific developmental disorder of motor function|Specific developmental disorder of motor function +C0026613|T048|PT|F82|ICD10|Specific developmental disorder of motor function|Specific developmental disorder of motor function +C0494428|T048|PT|F83|ICD10|Mixed specific developmental disorders|Mixed specific developmental disorders +C0524528|T048|HT|F84|ICD10|Pervasive developmental disorders|Pervasive developmental disorders +C0524528|T048|AB|F84|ICD10CM|Pervasive developmental disorders|Pervasive developmental disorders +C0524528|T048|HT|F84|ICD10CM|Pervasive developmental disorders|Pervasive developmental disorders +C1510586|T048|ET|F84.0|ICD10CM|Autism spectrum disorder|Autism spectrum disorder +C0004352|T048|PT|F84.0|ICD10CM|Autistic disorder|Autistic disorder +C0004352|T048|AB|F84.0|ICD10CM|Autistic disorder|Autistic disorder +C0004352|T048|PT|F84.0|ICD10|Childhood autism|Childhood autism +C0004352|T048|ET|F84.0|ICD10CM|Infantile autism|Infantile autism +C2603372|T048|ET|F84.0|ICD10CM|Infantile psychosis|Infantile psychosis +C0004352|T048|ET|F84.0|ICD10CM|Kanner's syndrome|Kanner's syndrome +C0338986|T048|PT|F84.1|ICD10|Atypical autism|Atypical autism +C0035372|T047|PT|F84.2|ICD10|Rett's syndrome|Rett's syndrome +C0035372|T047|PT|F84.2|ICD10CM|Rett's syndrome|Rett's syndrome +C0035372|T047|AB|F84.2|ICD10CM|Rett's syndrome|Rett's syndrome +C0236791|T048|ET|F84.3|ICD10CM|Dementia infantilis|Dementia infantilis +C0236791|T048|ET|F84.3|ICD10CM|Disintegrative psychosis|Disintegrative psychosis +C0236791|T048|ET|F84.3|ICD10CM|Heller's syndrome|Heller's syndrome +C0349329|T048|PT|F84.3|ICD10CM|Other childhood disintegrative disorder|Other childhood disintegrative disorder +C0349329|T048|AB|F84.3|ICD10CM|Other childhood disintegrative disorder|Other childhood disintegrative disorder +C0349329|T048|PT|F84.3|ICD10|Other childhood disintegrative disorder|Other childhood disintegrative disorder +C0036939|T048|ET|F84.3|ICD10CM|Symbiotic psychosis|Symbiotic psychosis +C0349330|T048|PT|F84.4|ICD10|Overactive disorder associated with mental retardation and stereotyped movements|Overactive disorder associated with mental retardation and stereotyped movements +C0236792|T048|ET|F84.5|ICD10CM|Asperger's disorder|Asperger's disorder +C0236792|T048|PT|F84.5|ICD10CM|Asperger's syndrome|Asperger's syndrome +C0236792|T048|AB|F84.5|ICD10CM|Asperger's syndrome|Asperger's syndrome +C0236792|T048|PT|F84.5|ICD10|Asperger's syndrome|Asperger's syndrome +C1306579|T047|ET|F84.5|ICD10CM|Autistic psychopathy|Autistic psychopathy +C1306578|T047|ET|F84.5|ICD10CM|Schizoid disorder of childhood|Schizoid disorder of childhood +C0349331|T048|PT|F84.8|ICD10|Other pervasive developmental disorders|Other pervasive developmental disorders +C0349331|T048|PT|F84.8|ICD10CM|Other pervasive developmental disorders|Other pervasive developmental disorders +C0349331|T048|AB|F84.8|ICD10CM|Other pervasive developmental disorders|Other pervasive developmental disorders +C3263955|T048|ET|F84.8|ICD10CM|Overactive disorder associated with intellectual disabilities and stereotyped movements|Overactive disorder associated with intellectual disabilities and stereotyped movements +C0338986|T048|ET|F84.9|ICD10CM|Atypical autism|Atypical autism +C0524528|T048|PT|F84.9|ICD10|Pervasive developmental disorder, unspecified|Pervasive developmental disorder, unspecified +C0524528|T048|PT|F84.9|ICD10CM|Pervasive developmental disorder, unspecified|Pervasive developmental disorder, unspecified +C0524528|T048|AB|F84.9|ICD10CM|Pervasive developmental disorder, unspecified|Pervasive developmental disorder, unspecified +C0395013|T048|ET|F88|ICD10CM|Developmental agnosia|Developmental agnosia +C0557874|T048|ET|F88|ICD10CM|Global developmental delay|Global developmental delay +C0478657|T048|PT|F88|ICD10CM|Other disorders of psychological development|Other disorders of psychological development +C0478657|T048|AB|F88|ICD10CM|Other disorders of psychological development|Other disorders of psychological development +C0478657|T048|PT|F88|ICD10|Other disorders of psychological development|Other disorders of psychological development +C4237334|T048|ET|F88|ICD10CM|Other specified neurodevelopmental disorder|Other specified neurodevelopmental disorder +C0008073|T048|ET|F89|ICD10CM|Developmental disorder NOS|Developmental disorder NOS +C1535926|T048|ET|F89|ICD10CM|Neurodevelopmental disorder NOS|Neurodevelopmental disorder NOS +C0478658|T048|PT|F89|ICD10|Unspecified disorder of psychological development|Unspecified disorder of psychological development +C0478658|T048|PT|F89|ICD10CM|Unspecified disorder of psychological development|Unspecified disorder of psychological development +C0478658|T048|AB|F89|ICD10CM|Unspecified disorder of psychological development|Unspecified disorder of psychological development +C1263846|T048|ET|F90|ICD10CM|attention deficit disorder with hyperactivity|attention deficit disorder with hyperactivity +C1263846|T048|ET|F90|ICD10CM|attention deficit syndrome with hyperactivity|attention deficit syndrome with hyperactivity +C1263846|T048|AB|F90|ICD10CM|Attention-deficit hyperactivity disorders|Attention-deficit hyperactivity disorders +C1263846|T048|HT|F90|ICD10CM|Attention-deficit hyperactivity disorders|Attention-deficit hyperactivity disorders +C1263846|T048|HT|F90|ICD10|Hyperkinetic disorders|Hyperkinetic disorders +C0349350|T048|HT|F90-F98.9|ICD10AE|Behavioral and emotional disorders with onset usually occurring in childhood and adolescence|Behavioral and emotional disorders with onset usually occurring in childhood and adolescence +C0349350|T048|HT|F90-F98.9|ICD10|Behavioural and emotional disorders with onset usually occurring in childhood and adolescence|Behavioural and emotional disorders with onset usually occurring in childhood and adolescence +C0339002|T048|PT|F90.0|ICD10CM|Attention-deficit hyperactivity disorder, predominantly inattentive type|Attention-deficit hyperactivity disorder, predominantly inattentive type +C4236997|T048|ET|F90.0|ICD10CM|Attention-deficit/hyperactivity disorder, predominantly inattentive presentation|Attention-deficit/hyperactivity disorder, predominantly inattentive presentation +C0339002|T048|AB|F90.0|ICD10CM|Attn-defct hyperactivity disorder, predom inattentive type|Attn-defct hyperactivity disorder, predom inattentive type +C0579986|T048|PT|F90.0|ICD10|Disturbance of activity and attention|Disturbance of activity and attention +C2874998|T048|PT|F90.1|ICD10CM|Attention-deficit hyperactivity disorder, predominantly hyperactive type|Attention-deficit hyperactivity disorder, predominantly hyperactive type +C4236996|T048|ET|F90.1|ICD10CM|Attention-deficit/hyperactivity disorder, predominantly hyperactive impulsive presentation|Attention-deficit/hyperactivity disorder, predominantly hyperactive impulsive presentation +C2874998|T048|AB|F90.1|ICD10CM|Attn-defct hyperactivity disorder, predom hyperactive type|Attn-defct hyperactivity disorder, predom hyperactive type +C0339004|T048|PT|F90.1|ICD10|Hyperkinetic conduct disorder|Hyperkinetic conduct disorder +C2945552|T048|AB|F90.2|ICD10CM|Attention-deficit hyperactivity disorder, combined type|Attention-deficit hyperactivity disorder, combined type +C2945552|T048|PT|F90.2|ICD10CM|Attention-deficit hyperactivity disorder, combined type|Attention-deficit hyperactivity disorder, combined type +C4236995|T048|ET|F90.2|ICD10CM|Attention-deficit/hyperactivity disorder, combined presentation|Attention-deficit/hyperactivity disorder, combined presentation +C2874999|T048|AB|F90.8|ICD10CM|Attention-deficit hyperactivity disorder, other type|Attention-deficit hyperactivity disorder, other type +C2874999|T048|PT|F90.8|ICD10CM|Attention-deficit hyperactivity disorder, other type|Attention-deficit hyperactivity disorder, other type +C0349333|T048|PT|F90.8|ICD10|Other hyperkinetic disorders|Other hyperkinetic disorders +C1263846|T048|ET|F90.9|ICD10CM|Attention-deficit hyperactivity disorder NOS|Attention-deficit hyperactivity disorder NOS +C2875000|T048|ET|F90.9|ICD10CM|Attention-deficit hyperactivity disorder of childhood or adolescence NOS|Attention-deficit hyperactivity disorder of childhood or adolescence NOS +C2875001|T048|AB|F90.9|ICD10CM|Attention-deficit hyperactivity disorder, unspecified type|Attention-deficit hyperactivity disorder, unspecified type +C2875001|T048|PT|F90.9|ICD10CM|Attention-deficit hyperactivity disorder, unspecified type|Attention-deficit hyperactivity disorder, unspecified type +C1263846|T048|PT|F90.9|ICD10|Hyperkinetic disorder, unspecified|Hyperkinetic disorder, unspecified +C0149654|T048|HT|F91|ICD10|Conduct disorders|Conduct disorders +C0149654|T048|AB|F91|ICD10CM|Conduct disorders|Conduct disorders +C0149654|T048|HT|F91|ICD10CM|Conduct disorders|Conduct disorders +C0339009|T048|PT|F91.0|ICD10CM|Conduct disorder confined to family context|Conduct disorder confined to family context +C0339009|T048|AB|F91.0|ICD10CM|Conduct disorder confined to family context|Conduct disorder confined to family context +C0339009|T048|PT|F91.0|ICD10|Conduct disorder confined to the family context|Conduct disorder confined to the family context +C0339005|T048|PT|F91.1|ICD10CM|Conduct disorder, childhood-onset type|Conduct disorder, childhood-onset type +C0339005|T048|AB|F91.1|ICD10CM|Conduct disorder, childhood-onset type|Conduct disorder, childhood-onset type +C0009656|T048|ET|F91.1|ICD10CM|Conduct disorder, solitary aggressive type|Conduct disorder, solitary aggressive type +C0865417|T048|ET|F91.1|ICD10CM|Unsocialized aggressive disorder|Unsocialized aggressive disorder +C0339010|T048|ET|F91.1|ICD10CM|Unsocialized conduct disorder|Unsocialized conduct disorder +C0339010|T048|PT|F91.1|ICD10|Unsocialized conduct disorder|Unsocialized conduct disorder +C0375192|T048|PT|F91.2|ICD10CM|Conduct disorder, adolescent-onset type|Conduct disorder, adolescent-onset type +C0375192|T048|AB|F91.2|ICD10CM|Conduct disorder, adolescent-onset type|Conduct disorder, adolescent-onset type +C0009655|T048|ET|F91.2|ICD10CM|Conduct disorder, group type|Conduct disorder, group type +C0037448|T048|PT|F91.2|ICD10|Socialized conduct disorder|Socialized conduct disorder +C0037448|T048|ET|F91.2|ICD10CM|Socialized conduct disorder|Socialized conduct disorder +C0029121|T048|PT|F91.3|ICD10|Oppositional defiant disorder|Oppositional defiant disorder +C0029121|T048|PT|F91.3|ICD10CM|Oppositional defiant disorder|Oppositional defiant disorder +C0029121|T048|AB|F91.3|ICD10CM|Oppositional defiant disorder|Oppositional defiant disorder +C0375193|T048|PT|F91.8|ICD10CM|Other conduct disorders|Other conduct disorders +C0375193|T048|AB|F91.8|ICD10CM|Other conduct disorders|Other conduct disorders +C0375193|T048|PT|F91.8|ICD10|Other conduct disorders|Other conduct disorders +C4268306|T048|ET|F91.8|ICD10CM|Other specified conduct disorder|Other specified conduct disorder +C4268307|T048|ET|F91.8|ICD10CM|Other specified disruptive disorder|Other specified disruptive disorder +C0004930|T048|ET|F91.9|ICD10CM|Behavioral disorder NOS|Behavioral disorder NOS +C0149654|T048|ET|F91.9|ICD10CM|Conduct disorder NOS|Conduct disorder NOS +C0149654|T048|PT|F91.9|ICD10CM|Conduct disorder, unspecified|Conduct disorder, unspecified +C0149654|T048|AB|F91.9|ICD10CM|Conduct disorder, unspecified|Conduct disorder, unspecified +C0149654|T048|PT|F91.9|ICD10|Conduct disorder, unspecified|Conduct disorder, unspecified +C0012734|T048|ET|F91.9|ICD10CM|Disruptive behavior disorder NOS|Disruptive behavior disorder NOS +C4268308|T048|ET|F91.9|ICD10CM|Disruptive disorder NOS|Disruptive disorder NOS +C0494432|T048|HT|F92|ICD10|Mixed disorders of conduct and emotions|Mixed disorders of conduct and emotions +C0339017|T048|PT|F92.0|ICD10|Depressive conduct disorder|Depressive conduct disorder +C0349335|T048|PT|F92.8|ICD10|Other mixed disorders of conduct and emotions|Other mixed disorders of conduct and emotions +C0494432|T048|PT|F92.9|ICD10|Mixed disorder of conduct and emotions, unspecified|Mixed disorder of conduct and emotions, unspecified +C0349336|T048|HT|F93|ICD10|Emotional disorders with onset specific to childhood|Emotional disorders with onset specific to childhood +C0349336|T048|AB|F93|ICD10CM|Emotional disorders with onset specific to childhood|Emotional disorders with onset specific to childhood +C0349336|T048|HT|F93|ICD10CM|Emotional disorders with onset specific to childhood|Emotional disorders with onset specific to childhood +C1527281|T048|PT|F93.0|ICD10|Separation anxiety disorder of childhood|Separation anxiety disorder of childhood +C1527281|T048|PT|F93.0|ICD10CM|Separation anxiety disorder of childhood|Separation anxiety disorder of childhood +C1527281|T048|AB|F93.0|ICD10CM|Separation anxiety disorder of childhood|Separation anxiety disorder of childhood +C0349337|T048|PT|F93.1|ICD10|Phobic anxiety disorder of childhood|Phobic anxiety disorder of childhood +C0270305|T048|PT|F93.2|ICD10|Social anxiety disorder of childhood|Social anxiety disorder of childhood +C0233560|T048|PT|F93.3|ICD10|Sibling rivalry disorder|Sibling rivalry disorder +C0236819|T048|ET|F93.8|ICD10CM|Identity disorder|Identity disorder +C0349339|T048|PT|F93.8|ICD10CM|Other childhood emotional disorders|Other childhood emotional disorders +C0349339|T048|AB|F93.8|ICD10CM|Other childhood emotional disorders|Other childhood emotional disorders +C0349339|T048|PT|F93.8|ICD10|Other childhood emotional disorders|Other childhood emotional disorders +C0349336|T048|PT|F93.9|ICD10|Childhood emotional disorder, unspecified|Childhood emotional disorder, unspecified +C0349336|T048|PT|F93.9|ICD10CM|Childhood emotional disorder, unspecified|Childhood emotional disorder, unspecified +C0349336|T048|AB|F93.9|ICD10CM|Childhood emotional disorder, unspecified|Childhood emotional disorder, unspecified +C0494435|T048|AB|F94|ICD10CM|Disord social w onset specific to childhood and adolescence|Disord social w onset specific to childhood and adolescence +C0494435|T048|HT|F94|ICD10CM|Disorders of social functioning with onset specific to childhood and adolescence|Disorders of social functioning with onset specific to childhood and adolescence +C0494435|T048|HT|F94|ICD10|Disorders of social functioning with onset specific to childhood and adolescence|Disorders of social functioning with onset specific to childhood and adolescence +C0236818|T048|ET|F94.0|ICD10CM|Elective mutism|Elective mutism +C0236818|T048|PT|F94.0|ICD10|Elective mutism|Elective mutism +C0236818|T048|PT|F94.0|ICD10CM|Selective mutism|Selective mutism +C0236818|T048|AB|F94.0|ICD10CM|Selective mutism|Selective mutism +C0349342|T048|PT|F94.1|ICD10|Reactive attachment disorder of childhood|Reactive attachment disorder of childhood +C0349342|T048|PT|F94.1|ICD10CM|Reactive attachment disorder of childhood|Reactive attachment disorder of childhood +C0349342|T048|AB|F94.1|ICD10CM|Reactive attachment disorder of childhood|Reactive attachment disorder of childhood +C1386532|T048|ET|F94.2|ICD10CM|Affectionless psychopathy|Affectionless psychopathy +C0349343|T048|PT|F94.2|ICD10CM|Disinhibited attachment disorder of childhood|Disinhibited attachment disorder of childhood +C0349343|T048|AB|F94.2|ICD10CM|Disinhibited attachment disorder of childhood|Disinhibited attachment disorder of childhood +C0349343|T048|PT|F94.2|ICD10|Disinhibited attachment disorder of childhood|Disinhibited attachment disorder of childhood +C0349343|T048|ET|F94.2|ICD10CM|Institutional syndrome|Institutional syndrome +C0349344|T048|PT|F94.8|ICD10CM|Other childhood disorders of social functioning|Other childhood disorders of social functioning +C0349344|T048|AB|F94.8|ICD10CM|Other childhood disorders of social functioning|Other childhood disorders of social functioning +C0349344|T048|PT|F94.8|ICD10|Other childhood disorders of social functioning|Other childhood disorders of social functioning +C0349345|T048|PT|F94.9|ICD10|Childhood disorder of social functioning, unspecified|Childhood disorder of social functioning, unspecified +C0349345|T048|PT|F94.9|ICD10CM|Childhood disorder of social functioning, unspecified|Childhood disorder of social functioning, unspecified +C0349345|T048|AB|F94.9|ICD10CM|Childhood disorder of social functioning, unspecified|Childhood disorder of social functioning, unspecified +C0040188|T048|HT|F95|ICD10CM|Tic disorder|Tic disorder +C0040188|T048|AB|F95|ICD10CM|Tic disorder|Tic disorder +C0040188|T048|HT|F95|ICD10|Tic disorders|Tic disorders +C4049209|T048|ET|F95.0|ICD10CM|Provisional tic disorder|Provisional tic disorder +C0040702|T048|PT|F95.0|ICD10|Transient tic disorder|Transient tic disorder +C0040702|T048|PT|F95.0|ICD10CM|Transient tic disorder|Transient tic disorder +C0040702|T048|AB|F95.0|ICD10CM|Transient tic disorder|Transient tic disorder +C0008701|T048|PT|F95.1|ICD10|Chronic motor or vocal tic disorder|Chronic motor or vocal tic disorder +C0008701|T048|PT|F95.1|ICD10CM|Chronic motor or vocal tic disorder|Chronic motor or vocal tic disorder +C0008701|T048|AB|F95.1|ICD10CM|Chronic motor or vocal tic disorder|Chronic motor or vocal tic disorder +C0040517|T047|PT|F95.2|ICD10|Combined vocal and multiple motor tic disorder [de la Tourette]|Combined vocal and multiple motor tic disorder [de la Tourette] +C0040517|T047|ET|F95.2|ICD10CM|Combined vocal and multiple motor tic disorder [de la Tourette]|Combined vocal and multiple motor tic disorder [de la Tourette] +C0040517|T047|PT|F95.2|ICD10CM|Tourette's disorder|Tourette's disorder +C0040517|T047|AB|F95.2|ICD10CM|Tourette's disorder|Tourette's disorder +C0040517|T047|ET|F95.2|ICD10CM|Tourette's syndrome|Tourette's syndrome +C0494437|T048|PT|F95.8|ICD10|Other tic disorders|Other tic disorders +C0494437|T048|PT|F95.8|ICD10CM|Other tic disorders|Other tic disorders +C0494437|T048|AB|F95.8|ICD10CM|Other tic disorders|Other tic disorders +C0040188|T048|PT|F95.9|ICD10|Tic disorder, unspecified|Tic disorder, unspecified +C0040188|T048|PT|F95.9|ICD10CM|Tic disorder, unspecified|Tic disorder, unspecified +C0040188|T048|AB|F95.9|ICD10CM|Tic disorder, unspecified|Tic disorder, unspecified +C0040188|T048|ET|F95.9|ICD10CM|Tic NOS|Tic NOS +C0349346|T048|AB|F98|ICD10CM|Oth behav/emotn disord w onset usly occur in chldhd and adol|Oth behav/emotn disord w onset usly occur in chldhd and adol +C0349346|T048|HT|F98|ICD10CM|Other behavioral and emotional disorders with onset usually occurring in childhood and adolescence|Other behavioral and emotional disorders with onset usually occurring in childhood and adolescence +C0349346|T048|HT|F98|ICD10AE|Other behavioral and emotional disorders with onset usually occurring in childhood and adolescence|Other behavioral and emotional disorders with onset usually occurring in childhood and adolescence +C0349346|T048|HT|F98|ICD10|Other behavioural and emotional disorders with onset usually occurring in childhood and adolescence|Other behavioural and emotional disorders with onset usually occurring in childhood and adolescence +C2875002|T047|ET|F98.0|ICD10CM|Enuresis (primary) (secondary) of nonorganic origin|Enuresis (primary) (secondary) of nonorganic origin +C2875003|T048|AB|F98.0|ICD10CM|Enuresis not due to a substance or known physiol condition|Enuresis not due to a substance or known physiol condition +C2875003|T048|PT|F98.0|ICD10CM|Enuresis not due to a substance or known physiological condition|Enuresis not due to a substance or known physiological condition +C0016811|T048|ET|F98.0|ICD10CM|Functional enuresis|Functional enuresis +C0016811|T048|PT|F98.0|ICD10|Nonorganic enuresis|Nonorganic enuresis +C0016811|T048|ET|F98.0|ICD10CM|Psychogenic enuresis|Psychogenic enuresis +C0403670|T047|ET|F98.0|ICD10CM|Urinary incontinence of nonorganic origin|Urinary incontinence of nonorganic origin +C2875005|T048|AB|F98.1|ICD10CM|Encopresis not due to a substance or known physiol condition|Encopresis not due to a substance or known physiol condition +C2875005|T048|PT|F98.1|ICD10CM|Encopresis not due to a substance or known physiological condition|Encopresis not due to a substance or known physiological condition +C0014089|T048|ET|F98.1|ICD10CM|Functional encopresis|Functional encopresis +C0014089|T048|ET|F98.1|ICD10CM|Incontinence of feces of nonorganic origin|Incontinence of feces of nonorganic origin +C0014089|T048|PT|F98.1|ICD10|Nonorganic encopresis|Nonorganic encopresis +C0014089|T048|ET|F98.1|ICD10CM|Psychogenic encopresis|Psychogenic encopresis +C0494440|T048|PT|F98.2|ICD10|Feeding disorder of infancy and childhood|Feeding disorder of infancy and childhood +C2875006|T048|AB|F98.2|ICD10CM|Other feeding disorders of infancy and childhood|Other feeding disorders of infancy and childhood +C2875006|T048|HT|F98.2|ICD10CM|Other feeding disorders of infancy and childhood|Other feeding disorders of infancy and childhood +C0035951|T048|PT|F98.21|ICD10CM|Rumination disorder of infancy|Rumination disorder of infancy +C0035951|T048|AB|F98.21|ICD10CM|Rumination disorder of infancy|Rumination disorder of infancy +C2875007|T048|AB|F98.29|ICD10CM|Other feeding disorders of infancy and early childhood|Other feeding disorders of infancy and early childhood +C2875007|T048|PT|F98.29|ICD10CM|Other feeding disorders of infancy and early childhood|Other feeding disorders of infancy and early childhood +C0349348|T048|PT|F98.3|ICD10CM|Pica of infancy and childhood|Pica of infancy and childhood +C0349348|T048|AB|F98.3|ICD10CM|Pica of infancy and childhood|Pica of infancy and childhood +C0349348|T048|PT|F98.3|ICD10|Pica of infancy and childhood|Pica of infancy and childhood +C2875008|T048|ET|F98.4|ICD10CM|Stereotype/habit disorder|Stereotype/habit disorder +C0038273|T048|PT|F98.4|ICD10CM|Stereotyped movement disorders|Stereotyped movement disorders +C0038273|T048|AB|F98.4|ICD10CM|Stereotyped movement disorders|Stereotyped movement disorders +C0038273|T048|PT|F98.4|ICD10|Stereotyped movement disorders|Stereotyped movement disorders +C2921027|T048|PT|F98.5|ICD10CM|Adult onset fluency disorder|Adult onset fluency disorder +C2921027|T048|AB|F98.5|ICD10CM|Adult onset fluency disorder|Adult onset fluency disorder +C0395018|T033|PT|F98.5|ICD10|Stuttering [stammering]|Stuttering [stammering] +C0009090|T184|PT|F98.6|ICD10|Cluttering|Cluttering +C0424410|T048|ET|F98.8|ICD10CM|Excessive masturbation|Excessive masturbation +C0686785|T033|ET|F98.8|ICD10CM|Nose-picking|Nose-picking +C0349349|T048|AB|F98.8|ICD10CM|Oth behav/emotn disord w onset usly occur in chldhd and adol|Oth behav/emotn disord w onset usly occur in chldhd and adol +C0040068|T033|ET|F98.8|ICD10CM|Thumb-sucking|Thumb-sucking +C0349350|T048|AB|F98.9|ICD10CM|Unsp behav/emotn disord w onst usly occur in chldhd and adol|Unsp behav/emotn disord w onst usly occur in chldhd and adol +C0004936|T048|PT|F99|ICD10CM|Mental disorder, not otherwise specified|Mental disorder, not otherwise specified +C0004936|T048|AB|F99|ICD10CM|Mental disorder, not otherwise specified|Mental disorder, not otherwise specified +C0004936|T048|PT|F99|ICD10|Mental disorder, not otherwise specified|Mental disorder, not otherwise specified +C0004936|T048|ET|F99|ICD10CM|Mental illness NOS|Mental illness NOS +C0004936|T048|HT|F99-F99|ICD10CM|Unspecified mental disorder (F99)|Unspecified mental disorder (F99) +C0004936|T048|HT|F99-F99.9|ICD10|Unspecified mental disorder|Unspecified mental disorder +C4290118|T047|ET|G00|ICD10CM|bacterial arachnoiditis|bacterial arachnoiditis +C4290119|T047|ET|G00|ICD10CM|bacterial leptomeningitis|bacterial leptomeningitis +C0085437|T047|ET|G00|ICD10CM|bacterial meningitis|bacterial meningitis +C0494441|T047|AB|G00|ICD10CM|Bacterial meningitis, not elsewhere classified|Bacterial meningitis, not elsewhere classified +C0494441|T047|HT|G00|ICD10CM|Bacterial meningitis, not elsewhere classified|Bacterial meningitis, not elsewhere classified +C0494441|T047|HT|G00|ICD10|Bacterial meningitis, not elsewhere classified|Bacterial meningitis, not elsewhere classified +C4290120|T047|ET|G00|ICD10CM|bacterial pachymeningitis|bacterial pachymeningitis +C0178264|T047|HT|G00-G09|ICD10CM|Inflammatory diseases of the central nervous system (G00-G09)|Inflammatory diseases of the central nervous system (G00-G09) +C0178264|T047|HT|G00-G09.9|ICD10|Inflammatory diseases of the central nervous system|Inflammatory diseases of the central nervous system +C0027765|T047|HT|G00-G99|ICD10CM|Diseases of the nervous system (G00-G99)|Diseases of the nervous system (G00-G99) +C0027765|T047|HT|G00-G99.9|ICD10|Diseases of the nervous system|Diseases of the nervous system +C0025292|T047|PT|G00.0|ICD10|Haemophilus meningitis|Haemophilus meningitis +C0025292|T047|PT|G00.0|ICD10CM|Hemophilus meningitis|Hemophilus meningitis +C0025292|T047|AB|G00.0|ICD10CM|Hemophilus meningitis|Hemophilus meningitis +C0025292|T047|PT|G00.0|ICD10AE|Hemophilus meningitis|Hemophilus meningitis +C0276028|T047|ET|G00.0|ICD10CM|Meningitis due to Hemophilus influenzae|Meningitis due to Hemophilus influenzae +C0025295|T047|ET|G00.1|ICD10CM|Meningtitis due to Streptococcal pneumoniae|Meningtitis due to Streptococcal pneumoniae +C0025295|T047|PT|G00.1|ICD10CM|Pneumococcal meningitis|Pneumococcal meningitis +C0025295|T047|AB|G00.1|ICD10CM|Pneumococcal meningitis|Pneumococcal meningitis +C0025295|T047|PT|G00.1|ICD10|Pneumococcal meningitis|Pneumococcal meningitis +C0154639|T047|PT|G00.2|ICD10|Streptococcal meningitis|Streptococcal meningitis +C0154639|T047|PT|G00.2|ICD10CM|Streptococcal meningitis|Streptococcal meningitis +C0154639|T047|AB|G00.2|ICD10CM|Streptococcal meningitis|Streptococcal meningitis +C0154640|T047|PT|G00.3|ICD10CM|Staphylococcal meningitis|Staphylococcal meningitis +C0154640|T047|AB|G00.3|ICD10CM|Staphylococcal meningitis|Staphylococcal meningitis +C0154640|T047|PT|G00.3|ICD10|Staphylococcal meningitis|Staphylococcal meningitis +C0338395|T047|ET|G00.8|ICD10CM|Meningitis due to Escherichia coli|Meningitis due to Escherichia coli +C0393434|T047|ET|G00.8|ICD10CM|Meningitis due to Friedländer's bacillus|Meningitis due to Friedländer's bacillus +C2875012|T047|ET|G00.8|ICD10CM|Meningitis due to Klebsiella|Meningitis due to Klebsiella +C0477333|T047|PT|G00.8|ICD10CM|Other bacterial meningitis|Other bacterial meningitis +C0477333|T047|AB|G00.8|ICD10CM|Other bacterial meningitis|Other bacterial meningitis +C0477333|T047|PT|G00.8|ICD10|Other bacterial meningitis|Other bacterial meningitis +C0085437|T047|PT|G00.9|ICD10CM|Bacterial meningitis, unspecified|Bacterial meningitis, unspecified +C0085437|T047|AB|G00.9|ICD10CM|Bacterial meningitis, unspecified|Bacterial meningitis, unspecified +C0085437|T047|PT|G00.9|ICD10|Bacterial meningitis, unspecified|Bacterial meningitis, unspecified +C2875013|T046|ET|G00.9|ICD10CM|Meningitis due to gram-negative bacteria, unspecified|Meningitis due to gram-negative bacteria, unspecified +C0865440|T047|ET|G00.9|ICD10CM|Purulent meningitis NOS|Purulent meningitis NOS +C0302869|T047|ET|G00.9|ICD10CM|Pyogenic meningitis NOS|Pyogenic meningitis NOS +C0865441|T047|ET|G00.9|ICD10CM|Suppurative meningitis NOS|Suppurative meningitis NOS +C0694469|T047|PT|G01|ICD10|Meningitis in bacterial diseases classified elsewhere|Meningitis in bacterial diseases classified elsewhere +C0694469|T047|PT|G01|ICD10CM|Meningitis in bacterial diseases classified elsewhere|Meningitis in bacterial diseases classified elsewhere +C0694469|T047|AB|G01|ICD10CM|Meningitis in bacterial diseases classified elsewhere|Meningitis in bacterial diseases classified elsewhere +C0694470|T047|AB|G02|ICD10CM|Meningitis in oth infec/parastc diseases classd elswhr|Meningitis in oth infec/parastc diseases classd elswhr +C0694470|T047|PT|G02|ICD10CM|Meningitis in other infectious and parasitic diseases classified elsewhere|Meningitis in other infectious and parasitic diseases classified elsewhere +C0694470|T047|HT|G02|ICD10|Meningitis in other infectious and parasitic diseases classified elsewhere|Meningitis in other infectious and parasitic diseases classified elsewhere +C0477334|T047|PT|G02.0|ICD10|Meningitis in viral diseases classified elsewhere|Meningitis in viral diseases classified elsewhere +C0085438|T047|PT|G02.1|ICD10|Meningitis in mycoses|Meningitis in mycoses +C0477336|T047|PT|G02.8|ICD10|Meningitis in other specified infectious and parasitic diseases classified elsewhere|Meningitis in other specified infectious and parasitic diseases classified elsewhere +C0003708|T047|ET|G03|ICD10CM|arachnoiditis NOS|arachnoiditis NOS +C0023355|T047|ET|G03|ICD10CM|leptomeningitis NOS|leptomeningitis NOS +C0494444|T047|HT|G03|ICD10|Meningitis due to other and unspecified causes|Meningitis due to other and unspecified causes +C0494444|T047|AB|G03|ICD10CM|Meningitis due to other and unspecified causes|Meningitis due to other and unspecified causes +C0494444|T047|HT|G03|ICD10CM|Meningitis due to other and unspecified causes|Meningitis due to other and unspecified causes +C0025289|T047|ET|G03|ICD10CM|meningitis NOS|meningitis NOS +C0030167|T047|ET|G03|ICD10CM|pachymeningitis NOS|pachymeningitis NOS +C0025290|T047|ET|G03.0|ICD10CM|Aseptic meningitis|Aseptic meningitis +C1403842|T047|ET|G03.0|ICD10CM|Nonbacterial meningitis|Nonbacterial meningitis +C0154651|T047|PT|G03.0|ICD10|Nonpyogenic meningitis|Nonpyogenic meningitis +C0154651|T047|PT|G03.0|ICD10CM|Nonpyogenic meningitis|Nonpyogenic meningitis +C0154651|T047|AB|G03.0|ICD10CM|Nonpyogenic meningitis|Nonpyogenic meningitis +C0154653|T047|PT|G03.1|ICD10CM|Chronic meningitis|Chronic meningitis +C0154653|T047|AB|G03.1|ICD10CM|Chronic meningitis|Chronic meningitis +C0154653|T047|PT|G03.1|ICD10|Chronic meningitis|Chronic meningitis +C0220979|T047|PT|G03.2|ICD10|Benign recurrent meningitis [Mollaret]|Benign recurrent meningitis [Mollaret] +C0220979|T047|PT|G03.2|ICD10CM|Benign recurrent meningitis [Mollaret]|Benign recurrent meningitis [Mollaret] +C0220979|T047|AB|G03.2|ICD10CM|Benign recurrent meningitis [Mollaret]|Benign recurrent meningitis [Mollaret] +C0477337|T047|PT|G03.8|ICD10CM|Meningitis due to other specified causes|Meningitis due to other specified causes +C0477337|T047|AB|G03.8|ICD10CM|Meningitis due to other specified causes|Meningitis due to other specified causes +C0477337|T047|PT|G03.8|ICD10|Meningitis due to other specified causes|Meningitis due to other specified causes +C1710146|T047|ET|G03.9|ICD10CM|Arachnoiditis (spinal) NOS|Arachnoiditis (spinal) NOS +C0025289|T047|PT|G03.9|ICD10CM|Meningitis, unspecified|Meningitis, unspecified +C0025289|T047|AB|G03.9|ICD10CM|Meningitis, unspecified|Meningitis, unspecified +C0025289|T047|PT|G03.9|ICD10|Meningitis, unspecified|Meningitis, unspecified +C0270626|T047|ET|G04|ICD10CM|acute ascending myelitis|acute ascending myelitis +C0014058|T047|HT|G04|ICD10|Encephalitis, myelitis and encephalomyelitis|Encephalitis, myelitis and encephalomyelitis +C0014058|T047|HT|G04|ICD10CM|Encephalitis, myelitis and encephalomyelitis|Encephalitis, myelitis and encephalomyelitis +C0014058|T047|AB|G04|ICD10CM|Encephalitis, myelitis and encephalomyelitis|Encephalitis, myelitis and encephalomyelitis +C0025309|T047|ET|G04|ICD10CM|meningoencephalitis|meningoencephalitis +C0025311|T047|ET|G04|ICD10CM|meningomyelitis|meningomyelitis +C3536864|T047|PT|G04.0|ICD10|Acute disseminated encephalitis|Acute disseminated encephalitis +C2875014|T047|AB|G04.0|ICD10CM|Acute disseminated encephalitis and encephalomyelitis (ADEM)|Acute disseminated encephalitis and encephalomyelitis (ADEM) +C2875014|T047|HT|G04.0|ICD10CM|Acute disseminated encephalitis and encephalomyelitis (ADEM)|Acute disseminated encephalitis and encephalomyelitis (ADEM) +C2875015|T047|AB|G04.00|ICD10CM|Acute disseminated encephalitis and encephalomyelitis, unsp|Acute disseminated encephalitis and encephalomyelitis, unsp +C2875015|T047|PT|G04.00|ICD10CM|Acute disseminated encephalitis and encephalomyelitis, unspecified|Acute disseminated encephalitis and encephalomyelitis, unspecified +C3263956|T047|AB|G04.01|ICD10CM|Postinfect acute dissem encephalitis and encephalomyelitis|Postinfect acute dissem encephalitis and encephalomyelitis +C3263956|T047|PT|G04.01|ICD10CM|Postinfectious acute disseminated encephalitis and encephalomyelitis (postinfectious ADEM)|Postinfectious acute disseminated encephalitis and encephalomyelitis (postinfectious ADEM) +C0729577|T047|ET|G04.02|ICD10CM|Encephalitis, post immunization|Encephalitis, post immunization +C0751101|T047|ET|G04.02|ICD10CM|Encephalomyelitis, post immunization|Encephalomyelitis, post immunization +C3263957|T047|AB|G04.02|ICD10CM|Postimmun ac dissem encphlts, myelitis and encephalomyelitis|Postimmun ac dissem encphlts, myelitis and encephalomyelitis +C3263957|T047|PT|G04.02|ICD10CM|Postimmunization acute disseminated encephalitis, myelitis and encephalomyelitis|Postimmunization acute disseminated encephalitis, myelitis and encephalomyelitis +C0030481|T047|PT|G04.1|ICD10|Tropical spastic paraplegia|Tropical spastic paraplegia +C0030481|T047|PT|G04.1|ICD10CM|Tropical spastic paraplegia|Tropical spastic paraplegia +C0030481|T047|AB|G04.1|ICD10CM|Tropical spastic paraplegia|Tropical spastic paraplegia +C0869049|T047|AB|G04.2|ICD10CM|Bacterial meningoencephalitis and meningomyelitis, NEC|Bacterial meningoencephalitis and meningomyelitis, NEC +C0869049|T047|PT|G04.2|ICD10CM|Bacterial meningoencephalitis and meningomyelitis, not elsewhere classified|Bacterial meningoencephalitis and meningomyelitis, not elsewhere classified +C0869049|T047|PT|G04.2|ICD10|Bacterial meningoencephalitis and meningomyelitis, not elsewhere classified|Bacterial meningoencephalitis and meningomyelitis, not elsewhere classified +C1719359|T047|AB|G04.3|ICD10CM|Acute necrotizing hemorrhagic encephalopathy|Acute necrotizing hemorrhagic encephalopathy +C1719359|T047|HT|G04.3|ICD10CM|Acute necrotizing hemorrhagic encephalopathy|Acute necrotizing hemorrhagic encephalopathy +C3263958|T047|AB|G04.30|ICD10CM|Acute necrotizing hemorrhagic encephalopathy, unspecified|Acute necrotizing hemorrhagic encephalopathy, unspecified +C3263958|T047|PT|G04.30|ICD10CM|Acute necrotizing hemorrhagic encephalopathy, unspecified|Acute necrotizing hemorrhagic encephalopathy, unspecified +C3263959|T047|AB|G04.31|ICD10CM|Postinfectious acute necrotizing hemorrhagic encephalopathy|Postinfectious acute necrotizing hemorrhagic encephalopathy +C3263959|T047|PT|G04.31|ICD10CM|Postinfectious acute necrotizing hemorrhagic encephalopathy|Postinfectious acute necrotizing hemorrhagic encephalopathy +C3263960|T047|AB|G04.32|ICD10CM|Postimmun acute necrotizing hemorrhagic encephalopathy|Postimmun acute necrotizing hemorrhagic encephalopathy +C3263960|T047|PT|G04.32|ICD10CM|Postimmunization acute necrotizing hemorrhagic encephalopathy|Postimmunization acute necrotizing hemorrhagic encephalopathy +C3263961|T047|AB|G04.39|ICD10CM|Other acute necrotizing hemorrhagic encephalopathy|Other acute necrotizing hemorrhagic encephalopathy +C3263961|T047|PT|G04.39|ICD10CM|Other acute necrotizing hemorrhagic encephalopathy|Other acute necrotizing hemorrhagic encephalopathy +C0477339|T047|PT|G04.8|ICD10|Other encephalitis, myelitis and encephalomyelitis|Other encephalitis, myelitis and encephalomyelitis +C0477339|T047|HT|G04.8|ICD10CM|Other encephalitis, myelitis and encephalomyelitis|Other encephalitis, myelitis and encephalomyelitis +C0477339|T047|AB|G04.8|ICD10CM|Other encephalitis, myelitis and encephalomyelitis|Other encephalitis, myelitis and encephalomyelitis +C2875021|T047|ET|G04.81|ICD10CM|Noninfectious acute disseminated encephalomyelitis (noninfectious ADEM)|Noninfectious acute disseminated encephalomyelitis (noninfectious ADEM) +C2875022|T047|AB|G04.81|ICD10CM|Other encephalitis and encephalomyelitis|Other encephalitis and encephalomyelitis +C2875022|T047|PT|G04.81|ICD10CM|Other encephalitis and encephalomyelitis|Other encephalitis and encephalomyelitis +C2875023|T047|AB|G04.89|ICD10CM|Other myelitis|Other myelitis +C2875023|T047|PT|G04.89|ICD10CM|Other myelitis|Other myelitis +C0014058|T047|HT|G04.9|ICD10CM|Encephalitis, myelitis and encephalomyelitis, unspecified|Encephalitis, myelitis and encephalomyelitis, unspecified +C0014058|T047|AB|G04.9|ICD10CM|Encephalitis, myelitis and encephalomyelitis, unspecified|Encephalitis, myelitis and encephalomyelitis, unspecified +C0014058|T047|PT|G04.9|ICD10|Encephalitis, myelitis and encephalomyelitis, unspecified|Encephalitis, myelitis and encephalomyelitis, unspecified +C2875025|T047|AB|G04.90|ICD10CM|Encephalitis and encephalomyelitis, unspecified|Encephalitis and encephalomyelitis, unspecified +C2875025|T047|PT|G04.90|ICD10CM|Encephalitis and encephalomyelitis, unspecified|Encephalitis and encephalomyelitis, unspecified +C2875024|T047|ET|G04.90|ICD10CM|Ventriculitis (cerebral) NOS|Ventriculitis (cerebral) NOS +C2875026|T047|AB|G04.91|ICD10CM|Myelitis, unspecified|Myelitis, unspecified +C2875026|T047|PT|G04.91|ICD10CM|Myelitis, unspecified|Myelitis, unspecified +C0694471|T047|HT|G05|ICD10|Encephalitis, myelitis and encephalomyelitis in diseases classified elsewhere|Encephalitis, myelitis and encephalomyelitis in diseases classified elsewhere +C0694471|T047|HT|G05|ICD10CM|Encephalitis, myelitis and encephalomyelitis in diseases classified elsewhere|Encephalitis, myelitis and encephalomyelitis in diseases classified elsewhere +C0694471|T047|AB|G05|ICD10CM|Encphlts, myelitis & encephalomyelitis in dis classd elswhr|Encphlts, myelitis & encephalomyelitis in dis classd elswhr +C0477340|T047|PT|G05.0|ICD10|Encephalitis, myelitis and encephalomyelitis in bacterial diseases classified elsewhere|Encephalitis, myelitis and encephalomyelitis in bacterial diseases classified elsewhere +C0477341|T047|PT|G05.1|ICD10|Encephalitis, myelitis and encephalomyelitis in viral diseases classified elsewhere|Encephalitis, myelitis and encephalomyelitis in viral diseases classified elsewhere +C2875028|T047|AB|G05.3|ICD10CM|Encephalitis and encephalomyelitis in diseases classd elswhr|Encephalitis and encephalomyelitis in diseases classd elswhr +C2875028|T047|PT|G05.3|ICD10CM|Encephalitis and encephalomyelitis in diseases classified elsewhere|Encephalitis and encephalomyelitis in diseases classified elsewhere +C2875027|T047|ET|G05.3|ICD10CM|Meningoencephalitis in diseases classified elsewhere|Meningoencephalitis in diseases classified elsewhere +C2875029|T047|ET|G05.4|ICD10CM|Meningomyelitis in diseases classified elsewhere|Meningomyelitis in diseases classified elsewhere +C2875030|T047|PT|G05.4|ICD10CM|Myelitis in diseases classified elsewhere|Myelitis in diseases classified elsewhere +C2875030|T047|AB|G05.4|ICD10CM|Myelitis in diseases classified elsewhere|Myelitis in diseases classified elsewhere +C0477343|T047|PT|G05.8|ICD10|Encephalitis, myelitis and encephalomyelitis in other diseases classified elsewhere|Encephalitis, myelitis and encephalomyelitis in other diseases classified elsewhere +C0494447|T047|HT|G06|ICD10|Intracranial and intraspinal abscess and granuloma|Intracranial and intraspinal abscess and granuloma +C0494447|T047|AB|G06|ICD10CM|Intracranial and intraspinal abscess and granuloma|Intracranial and intraspinal abscess and granuloma +C0494447|T047|HT|G06|ICD10CM|Intracranial and intraspinal abscess and granuloma|Intracranial and intraspinal abscess and granuloma +C2875031|T047|ET|G06.0|ICD10CM|Brain [any part] abscess (embolic)|Brain [any part] abscess (embolic) +C0865455|T047|ET|G06.0|ICD10CM|Cerebellar abscess (embolic)|Cerebellar abscess (embolic) +C0865456|T047|ET|G06.0|ICD10CM|Cerebral abscess (embolic)|Cerebral abscess (embolic) +C0494448|T047|PT|G06.0|ICD10CM|Intracranial abscess and granuloma|Intracranial abscess and granuloma +C0494448|T047|AB|G06.0|ICD10CM|Intracranial abscess and granuloma|Intracranial abscess and granuloma +C0494448|T047|PT|G06.0|ICD10|Intracranial abscess and granuloma|Intracranial abscess and granuloma +C2875032|T047|ET|G06.0|ICD10CM|Intracranial epidural abscess or granuloma|Intracranial epidural abscess or granuloma +C2875033|T046|ET|G06.0|ICD10CM|Intracranial extradural abscess or granuloma|Intracranial extradural abscess or granuloma +C2875034|T046|ET|G06.0|ICD10CM|Intracranial subdural abscess or granuloma|Intracranial subdural abscess or granuloma +C2875035|T047|ET|G06.0|ICD10CM|Otogenic abscess (embolic)|Otogenic abscess (embolic) +C2875036|T047|ET|G06.1|ICD10CM|Abscess (embolic) of spinal cord [any part]|Abscess (embolic) of spinal cord [any part] +C0494449|T047|PT|G06.1|ICD10|Intraspinal abscess and granuloma|Intraspinal abscess and granuloma +C0494449|T047|PT|G06.1|ICD10CM|Intraspinal abscess and granuloma|Intraspinal abscess and granuloma +C0494449|T047|AB|G06.1|ICD10CM|Intraspinal abscess and granuloma|Intraspinal abscess and granuloma +C2875037|T046|ET|G06.1|ICD10CM|Intraspinal epidural abscess or granuloma|Intraspinal epidural abscess or granuloma +C2875038|T047|ET|G06.1|ICD10CM|Intraspinal extradural abscess or granuloma|Intraspinal extradural abscess or granuloma +C2875039|T047|ET|G06.1|ICD10CM|Intraspinal subdural abscess or granuloma|Intraspinal subdural abscess or granuloma +C0477346|T047|PT|G06.2|ICD10CM|Extradural and subdural abscess, unspecified|Extradural and subdural abscess, unspecified +C0477346|T047|AB|G06.2|ICD10CM|Extradural and subdural abscess, unspecified|Extradural and subdural abscess, unspecified +C0477346|T047|PT|G06.2|ICD10|Extradural and subdural abscess, unspecified|Extradural and subdural abscess, unspecified +C0477344|T047|AB|G07|ICD10CM|Intcrn & intraspinal abscs & granuloma in dis classd elswhr|Intcrn & intraspinal abscs & granuloma in dis classd elswhr +C0477344|T047|PT|G07|ICD10CM|Intracranial and intraspinal abscess and granuloma in diseases classified elsewhere|Intracranial and intraspinal abscess and granuloma in diseases classified elsewhere +C0477344|T047|PT|G07|ICD10|Intracranial and intraspinal abscess and granuloma in diseases classified elsewhere|Intracranial and intraspinal abscess and granuloma in diseases classified elsewhere +C0494450|T047|PT|G08|ICD10|Intracranial and intraspinal phlebitis and thrombophlebitis|Intracranial and intraspinal phlebitis and thrombophlebitis +C0494450|T047|PT|G08|ICD10CM|Intracranial and intraspinal phlebitis and thrombophlebitis|Intracranial and intraspinal phlebitis and thrombophlebitis +C0494450|T047|AB|G08|ICD10CM|Intracranial and intraspinal phlebitis and thrombophlebitis|Intracranial and intraspinal phlebitis and thrombophlebitis +C2875040|T046|ET|G08|ICD10CM|Septic embolism of intracranial or intraspinal venous sinuses and veins|Septic embolism of intracranial or intraspinal venous sinuses and veins +C2875041|T046|ET|G08|ICD10CM|Septic endophlebitis of intracranial or intraspinal venous sinuses and veins|Septic endophlebitis of intracranial or intraspinal venous sinuses and veins +C2875042|T047|ET|G08|ICD10CM|Septic phlebitis of intracranial or intraspinal venous sinuses and veins|Septic phlebitis of intracranial or intraspinal venous sinuses and veins +C2875043|T046|ET|G08|ICD10CM|Septic thrombophlebitis of intracranial or intraspinal venous sinuses and veins|Septic thrombophlebitis of intracranial or intraspinal venous sinuses and veins +C2875044|T046|ET|G08|ICD10CM|Septic thrombosis of intracranial or intraspinal venous sinuses and veins|Septic thrombosis of intracranial or intraspinal venous sinuses and veins +C0477345|T046|PT|G09|ICD10|Sequelae of inflammatory diseases of central nervous system|Sequelae of inflammatory diseases of central nervous system +C0477345|T046|PT|G09|ICD10CM|Sequelae of inflammatory diseases of central nervous system|Sequelae of inflammatory diseases of central nervous system +C0477345|T046|AB|G09|ICD10CM|Sequelae of inflammatory diseases of central nervous system|Sequelae of inflammatory diseases of central nervous system +C0020179|T047|ET|G10|ICD10CM|Huntington's chorea|Huntington's chorea +C0349080|T048|ET|G10|ICD10CM|Huntington's dementia|Huntington's dementia +C0020179|T047|PT|G10|ICD10CM|Huntington's disease|Huntington's disease +C0020179|T047|AB|G10|ICD10CM|Huntington's disease|Huntington's disease +C0020179|T047|PT|G10|ICD10|Huntington's disease|Huntington's disease +C0477347|T047|HT|G10-G13.9|ICD10|Systemic atrophies primarily affecting the central nervous system|Systemic atrophies primarily affecting the central nervous system +C0477347|T047|HT|G10-G14|ICD10CM|Systemic atrophies primarily affecting the central nervous system (G10-G14)|Systemic atrophies primarily affecting the central nervous system (G10-G14) +C0004138|T047|HT|G11|ICD10CM|Hereditary ataxia|Hereditary ataxia +C0004138|T047|AB|G11|ICD10CM|Hereditary ataxia|Hereditary ataxia +C0004138|T047|HT|G11|ICD10|Hereditary ataxia|Hereditary ataxia +C0394004|T047|PT|G11.0|ICD10|Congenital nonprogressive ataxia|Congenital nonprogressive ataxia +C0394004|T047|PT|G11.0|ICD10CM|Congenital nonprogressive ataxia|Congenital nonprogressive ataxia +C0394004|T047|AB|G11.0|ICD10CM|Congenital nonprogressive ataxia|Congenital nonprogressive ataxia +C0393519|T047|PT|G11.1|ICD10CM|Early-onset cerebellar ataxia|Early-onset cerebellar ataxia +C0393519|T047|AB|G11.1|ICD10CM|Early-onset cerebellar ataxia|Early-onset cerebellar ataxia +C0393519|T047|PT|G11.1|ICD10|Early-onset cerebellar ataxia|Early-onset cerebellar ataxia +C0393523|T047|ET|G11.1|ICD10CM|Early-onset cerebellar ataxia with essential tremor|Early-onset cerebellar ataxia with essential tremor +C0007761|T047|ET|G11.1|ICD10CM|Early-onset cerebellar ataxia with myoclonus [Hunt's ataxia]|Early-onset cerebellar ataxia with myoclonus [Hunt's ataxia] +C0393520|T047|ET|G11.1|ICD10CM|Early-onset cerebellar ataxia with retained tendon reflexes|Early-onset cerebellar ataxia with retained tendon reflexes +C2875045|T047|ET|G11.1|ICD10CM|Friedreich's ataxia (autosomal recessive)|Friedreich's ataxia (autosomal recessive) +C2875046|T047|ET|G11.1|ICD10CM|X-linked recessive spinocerebellar ataxia|X-linked recessive spinocerebellar ataxia +C0393524|T047|PT|G11.2|ICD10CM|Late-onset cerebellar ataxia|Late-onset cerebellar ataxia +C0393524|T047|AB|G11.2|ICD10CM|Late-onset cerebellar ataxia|Late-onset cerebellar ataxia +C0393524|T047|PT|G11.2|ICD10|Late-onset cerebellar ataxia|Late-onset cerebellar ataxia +C2875047|T047|ET|G11.3|ICD10CM|Ataxia telangiectasia [Louis-Bar]|Ataxia telangiectasia [Louis-Bar] +C0494451|T047|PT|G11.3|ICD10|Cerebellar ataxia with defective DNA repair|Cerebellar ataxia with defective DNA repair +C0494451|T047|PT|G11.3|ICD10CM|Cerebellar ataxia with defective DNA repair|Cerebellar ataxia with defective DNA repair +C0494451|T047|AB|G11.3|ICD10CM|Cerebellar ataxia with defective DNA repair|Cerebellar ataxia with defective DNA repair +C0037773|T047|PT|G11.4|ICD10CM|Hereditary spastic paraplegia|Hereditary spastic paraplegia +C0037773|T047|AB|G11.4|ICD10CM|Hereditary spastic paraplegia|Hereditary spastic paraplegia +C0037773|T047|PT|G11.4|ICD10|Hereditary spastic paraplegia|Hereditary spastic paraplegia +C0477348|T047|PT|G11.8|ICD10|Other hereditary ataxias|Other hereditary ataxias +C0477348|T047|PT|G11.8|ICD10CM|Other hereditary ataxias|Other hereditary ataxias +C0477348|T047|AB|G11.8|ICD10CM|Other hereditary ataxias|Other hereditary ataxias +C0004138|T047|PT|G11.9|ICD10|Hereditary ataxia, unspecified|Hereditary ataxia, unspecified +C0004138|T047|PT|G11.9|ICD10CM|Hereditary ataxia, unspecified|Hereditary ataxia, unspecified +C0004138|T047|AB|G11.9|ICD10CM|Hereditary ataxia, unspecified|Hereditary ataxia, unspecified +C0270749|T047|ET|G11.9|ICD10CM|Hereditary cerebellar ataxia NOS|Hereditary cerebellar ataxia NOS +C0270752|T047|ET|G11.9|ICD10CM|Hereditary cerebellar degeneration|Hereditary cerebellar degeneration +C2875048|T047|ET|G11.9|ICD10CM|Hereditary cerebellar disease|Hereditary cerebellar disease +C2875049|T047|ET|G11.9|ICD10CM|Hereditary cerebellar syndrome|Hereditary cerebellar syndrome +C0494452|T047|AB|G12|ICD10CM|Spinal muscular atrophy and related syndromes|Spinal muscular atrophy and related syndromes +C0494452|T047|HT|G12|ICD10CM|Spinal muscular atrophy and related syndromes|Spinal muscular atrophy and related syndromes +C0494452|T047|HT|G12|ICD10|Spinal muscular atrophy and related syndromes|Spinal muscular atrophy and related syndromes +C0043116|T047|PT|G12.0|ICD10|Infantile spinal muscular atrophy, type I [Werdnig-Hoffman]|Infantile spinal muscular atrophy, type I [Werdnig-Hoffman] +C0043116|T047|PT|G12.0|ICD10CM|Infantile spinal muscular atrophy, type I [Werdnig-Hoffman]|Infantile spinal muscular atrophy, type I [Werdnig-Hoffman] +C0043116|T047|AB|G12.0|ICD10CM|Infantile spinal muscular atrophy, type I [Werdnig-Hoffman]|Infantile spinal muscular atrophy, type I [Werdnig-Hoffman] +C1838230|T047|ET|G12.1|ICD10CM|Adult form spinal muscular atrophy|Adult form spinal muscular atrophy +C2875050|T047|ET|G12.1|ICD10CM|Childhood form, type II spinal muscular atrophy|Childhood form, type II spinal muscular atrophy +C0393541|T047|ET|G12.1|ICD10CM|Distal spinal muscular atrophy|Distal spinal muscular atrophy +C2875051|T047|ET|G12.1|ICD10CM|Juvenile form, type III spinal muscular atrophy [Kugelberg-Welander]|Juvenile form, type III spinal muscular atrophy [Kugelberg-Welander] +C0477349|T047|PT|G12.1|ICD10CM|Other inherited spinal muscular atrophy|Other inherited spinal muscular atrophy +C0477349|T047|AB|G12.1|ICD10CM|Other inherited spinal muscular atrophy|Other inherited spinal muscular atrophy +C0477349|T047|PT|G12.1|ICD10|Other inherited spinal muscular atrophy|Other inherited spinal muscular atrophy +C0015708|T047|ET|G12.1|ICD10CM|Progressive bulbar palsy of childhood [Fazio-Londe]|Progressive bulbar palsy of childhood [Fazio-Londe] +C0751335|T047|ET|G12.1|ICD10CM|Scapuloperoneal form spinal muscular atrophy|Scapuloperoneal form spinal muscular atrophy +C0085084|T047|HT|G12.2|ICD10CM|Motor neuron disease|Motor neuron disease +C0085084|T047|AB|G12.2|ICD10CM|Motor neuron disease|Motor neuron disease +C0085084|T047|PT|G12.2|ICD10|Motor neuron disease|Motor neuron disease +C0085084|T047|AB|G12.20|ICD10CM|Motor neuron disease, unspecified|Motor neuron disease, unspecified +C0085084|T047|PT|G12.20|ICD10CM|Motor neuron disease, unspecified|Motor neuron disease, unspecified +C0002736|T047|PT|G12.21|ICD10CM|Amyotrophic lateral sclerosis|Amyotrophic lateral sclerosis +C0002736|T047|AB|G12.21|ICD10CM|Amyotrophic lateral sclerosis|Amyotrophic lateral sclerosis +C0030442|T047|PT|G12.22|ICD10CM|Progressive bulbar palsy|Progressive bulbar palsy +C0030442|T047|AB|G12.22|ICD10CM|Progressive bulbar palsy|Progressive bulbar palsy +C0154682|T047|PT|G12.23|ICD10CM|Primary lateral sclerosis|Primary lateral sclerosis +C0154682|T047|AB|G12.23|ICD10CM|Primary lateral sclerosis|Primary lateral sclerosis +C0270763|T047|AB|G12.24|ICD10CM|Familial motor neuron disease|Familial motor neuron disease +C0270763|T047|PT|G12.24|ICD10CM|Familial motor neuron disease|Familial motor neuron disease +C4082951|T047|AB|G12.25|ICD10CM|Progressive spinal muscle atrophy|Progressive spinal muscle atrophy +C4082951|T047|PT|G12.25|ICD10CM|Progressive spinal muscle atrophy|Progressive spinal muscle atrophy +C0154683|T047|AB|G12.29|ICD10CM|Other motor neuron disease|Other motor neuron disease +C0154683|T047|PT|G12.29|ICD10CM|Other motor neuron disease|Other motor neuron disease +C0477350|T047|PT|G12.8|ICD10|Other spinal muscular atrophies and related syndromes|Other spinal muscular atrophies and related syndromes +C0477350|T047|PT|G12.8|ICD10CM|Other spinal muscular atrophies and related syndromes|Other spinal muscular atrophies and related syndromes +C0477350|T047|AB|G12.8|ICD10CM|Other spinal muscular atrophies and related syndromes|Other spinal muscular atrophies and related syndromes +C0026847|T047|PT|G12.9|ICD10CM|Spinal muscular atrophy, unspecified|Spinal muscular atrophy, unspecified +C0026847|T047|AB|G12.9|ICD10CM|Spinal muscular atrophy, unspecified|Spinal muscular atrophy, unspecified +C0026847|T047|PT|G12.9|ICD10|Spinal muscular atrophy, unspecified|Spinal muscular atrophy, unspecified +C0694472|T047|AB|G13|ICD10CM|Systemic atrophies aff cnsl in diseases classd elswhr|Systemic atrophies aff cnsl in diseases classd elswhr +C0694472|T047|HT|G13|ICD10CM|Systemic atrophies primarily affecting central nervous system in diseases classified elsewhere|Systemic atrophies primarily affecting central nervous system in diseases classified elsewhere +C0694472|T047|HT|G13|ICD10|Systemic atrophies primarily affecting central nervous system in diseases classified elsewhere|Systemic atrophies primarily affecting central nervous system in diseases classified elsewhere +C2875052|T191|ET|G13.0|ICD10CM|Carcinomatous neuromyopathy|Carcinomatous neuromyopathy +C0477351|T047|PT|G13.0|ICD10|Paraneoplastic neuromyopathy and neuropathy|Paraneoplastic neuromyopathy and neuropathy +C0477351|T047|PT|G13.0|ICD10CM|Paraneoplastic neuromyopathy and neuropathy|Paraneoplastic neuromyopathy and neuropathy +C0477351|T047|AB|G13.0|ICD10CM|Paraneoplastic neuromyopathy and neuropathy|Paraneoplastic neuromyopathy and neuropathy +C2875053|T047|ET|G13.0|ICD10CM|Sensorial paraneoplastic neuropathy [Denny Brown]|Sensorial paraneoplastic neuropathy [Denny Brown] +C0494454|T047|AB|G13.1|ICD10CM|Oth systemic atrophy aff cnsl in neoplastic disease|Oth systemic atrophy aff cnsl in neoplastic disease +C0494454|T047|PT|G13.1|ICD10CM|Other systemic atrophy primarily affecting central nervous system in neoplastic disease|Other systemic atrophy primarily affecting central nervous system in neoplastic disease +C0494454|T047|PT|G13.1|ICD10|Other systemic atrophy primarily affecting central nervous system in neoplastic disease|Other systemic atrophy primarily affecting central nervous system in neoplastic disease +C0338430|T047|ET|G13.1|ICD10CM|Paraneoplastic limbic encephalopathy|Paraneoplastic limbic encephalopathy +C0494455|T047|PT|G13.2|ICD10AE|Systemic atrophy primarily affecting central nervous system in myxedema|Systemic atrophy primarily affecting central nervous system in myxedema +C0494455|T047|PT|G13.2|ICD10|Systemic atrophy primarily affecting central nervous system in myxoedema|Systemic atrophy primarily affecting central nervous system in myxoedema +C0494455|T047|PT|G13.2|ICD10CM|Systemic atrophy primarily affecting the central nervous system in myxedema|Systemic atrophy primarily affecting the central nervous system in myxedema +C0494455|T047|AB|G13.2|ICD10CM|Systemic atrophy primarily affecting the cnsl in myxedema|Systemic atrophy primarily affecting the cnsl in myxedema +C0494456|T047|AB|G13.8|ICD10CM|Systemic atrophy aff cnsl in oth diseases classd elswhr|Systemic atrophy aff cnsl in oth diseases classd elswhr +C0494456|T047|PT|G13.8|ICD10CM|Systemic atrophy primarily affecting central nervous system in other diseases classified elsewhere|Systemic atrophy primarily affecting central nervous system in other diseases classified elsewhere +C0494456|T047|PT|G13.8|ICD10|Systemic atrophy primarily affecting central nervous system in other diseases classified elsewhere|Systemic atrophy primarily affecting central nervous system in other diseases classified elsewhere +C0080040|T047|ET|G14|ICD10CM|postpolio myelitic syndrome|postpolio myelitic syndrome +C0080040|T047|PT|G14|ICD10CM|Postpolio syndrome|Postpolio syndrome +C0080040|T047|AB|G14|ICD10CM|Postpolio syndrome|Postpolio syndrome +C1399358|T047|ET|G20|ICD10CM|Hemiparkinsonism|Hemiparkinsonism +C0865475|T047|ET|G20|ICD10CM|Idiopathic Parkinsonism or Parkinson's disease|Idiopathic Parkinsonism or Parkinson's disease +C0030567|T047|ET|G20|ICD10CM|Paralysis agitans|Paralysis agitans +C0030567|T047|PT|G20|ICD10CM|Parkinson's disease|Parkinson's disease +C0030567|T047|AB|G20|ICD10CM|Parkinson's disease|Parkinson's disease +C0030567|T047|PT|G20|ICD10|Parkinson's disease|Parkinson's disease +C0865474|T047|ET|G20|ICD10CM|Parkinsonism or Parkinson's disease NOS|Parkinsonism or Parkinson's disease NOS +C0865476|T047|ET|G20|ICD10CM|Primary Parkinsonism or Parkinson's disease|Primary Parkinsonism or Parkinson's disease +C0477355|T047|HT|G20-G26|ICD10CM|Extrapyramidal and movement disorders (G20-G26)|Extrapyramidal and movement disorders (G20-G26) +C0477355|T047|HT|G20-G26.9|ICD10|Extrapyramidal and movement disorders|Extrapyramidal and movement disorders +C0030569|T047|HT|G21|ICD10CM|Secondary parkinsonism|Secondary parkinsonism +C0030569|T047|AB|G21|ICD10CM|Secondary parkinsonism|Secondary parkinsonism +C0030569|T047|HT|G21|ICD10|Secondary parkinsonism|Secondary parkinsonism +C0027849|T047|PT|G21.0|ICD10|Malignant neuroleptic syndrome|Malignant neuroleptic syndrome +C0027849|T047|PT|G21.0|ICD10CM|Malignant neuroleptic syndrome|Malignant neuroleptic syndrome +C0027849|T047|AB|G21.0|ICD10CM|Malignant neuroleptic syndrome|Malignant neuroleptic syndrome +C0477356|T046|PT|G21.1|ICD10|Other drug-induced secondary parkinsonism|Other drug-induced secondary parkinsonism +C0477356|T046|HT|G21.1|ICD10CM|Other drug-induced secondary parkinsonism|Other drug-induced secondary parkinsonism +C0477356|T046|AB|G21.1|ICD10CM|Other drug-induced secondary parkinsonism|Other drug-induced secondary parkinsonism +C0236830|T047|AB|G21.11|ICD10CM|Neuroleptic induced parkinsonism|Neuroleptic induced parkinsonism +C0236830|T047|PT|G21.11|ICD10CM|Neuroleptic induced parkinsonism|Neuroleptic induced parkinsonism +C0477356|T046|AB|G21.19|ICD10CM|Other drug induced secondary parkinsonism|Other drug induced secondary parkinsonism +C0477356|T046|PT|G21.19|ICD10CM|Other drug induced secondary parkinsonism|Other drug induced secondary parkinsonism +C4237315|T047|ET|G21.19|ICD10CM|Other medication-induced parkinsonism|Other medication-induced parkinsonism +C0481392|T047|PT|G21.2|ICD10|Secondary parkinsonism due to other external agents|Secondary parkinsonism due to other external agents +C0481392|T047|PT|G21.2|ICD10CM|Secondary parkinsonism due to other external agents|Secondary parkinsonism due to other external agents +C0481392|T047|AB|G21.2|ICD10CM|Secondary parkinsonism due to other external agents|Secondary parkinsonism due to other external agents +C0030568|T047|PT|G21.3|ICD10|Postencephalitic parkinsonism|Postencephalitic parkinsonism +C0030568|T047|PT|G21.3|ICD10CM|Postencephalitic parkinsonism|Postencephalitic parkinsonism +C0030568|T047|AB|G21.3|ICD10CM|Postencephalitic parkinsonism|Postencephalitic parkinsonism +C0393568|T047|PT|G21.4|ICD10CM|Vascular parkinsonism|Vascular parkinsonism +C0393568|T047|AB|G21.4|ICD10CM|Vascular parkinsonism|Vascular parkinsonism +C0477357|T047|PT|G21.8|ICD10CM|Other secondary parkinsonism|Other secondary parkinsonism +C0477357|T047|AB|G21.8|ICD10CM|Other secondary parkinsonism|Other secondary parkinsonism +C0477357|T047|PT|G21.8|ICD10|Other secondary parkinsonism|Other secondary parkinsonism +C0030569|T047|PT|G21.9|ICD10CM|Secondary parkinsonism, unspecified|Secondary parkinsonism, unspecified +C0030569|T047|AB|G21.9|ICD10CM|Secondary parkinsonism, unspecified|Secondary parkinsonism, unspecified +C0030569|T047|PT|G21.9|ICD10|Secondary parkinsonism, unspecified|Secondary parkinsonism, unspecified +C0477358|T047|PT|G22|ICD10|Parkinsonism in diseases classified elsewhere|Parkinsonism in diseases classified elsewhere +C0029571|T047|HT|G23|ICD10|Other degenerative diseases of basal ganglia|Other degenerative diseases of basal ganglia +C0029571|T047|AB|G23|ICD10CM|Other degenerative diseases of basal ganglia|Other degenerative diseases of basal ganglia +C0029571|T047|HT|G23|ICD10CM|Other degenerative diseases of basal ganglia|Other degenerative diseases of basal ganglia +C0018523|T047|PT|G23.0|ICD10CM|Hallervorden-Spatz disease|Hallervorden-Spatz disease +C0018523|T047|AB|G23.0|ICD10CM|Hallervorden-Spatz disease|Hallervorden-Spatz disease +C0018523|T047|PT|G23.0|ICD10|Hallervorden-Spatz disease|Hallervorden-Spatz disease +C0018523|T047|ET|G23.0|ICD10CM|Pigmentary pallidal degeneration|Pigmentary pallidal degeneration +C4551862|T047|AB|G23.1|ICD10CM|Progressive supranuclear ophthalmoplegia|Progressive supranuclear ophthalmoplegia +C4551862|T047|PT|G23.1|ICD10CM|Progressive supranuclear ophthalmoplegia [Steele-Richardson-Olszewski]|Progressive supranuclear ophthalmoplegia [Steele-Richardson-Olszewski] +C4551862|T047|PT|G23.1|ICD10|Progressive supranuclear ophthalmoplegia [Steele-Richardson-Olszewski]|Progressive supranuclear ophthalmoplegia [Steele-Richardson-Olszewski] +C0038868|T047|ET|G23.1|ICD10CM|Progressive supranuclear palsy|Progressive supranuclear palsy +C0270733|T047|PT|G23.2|ICD10|Striatonigral degeneration|Striatonigral degeneration +C0270733|T047|PT|G23.2|ICD10CM|Striatonigral degeneration|Striatonigral degeneration +C0270733|T047|AB|G23.2|ICD10CM|Striatonigral degeneration|Striatonigral degeneration +C1389280|T046|ET|G23.8|ICD10CM|Calcification of basal ganglia|Calcification of basal ganglia +C0477359|T047|PT|G23.8|ICD10|Other specified degenerative diseases of basal ganglia|Other specified degenerative diseases of basal ganglia +C0477359|T047|PT|G23.8|ICD10CM|Other specified degenerative diseases of basal ganglia|Other specified degenerative diseases of basal ganglia +C0477359|T047|AB|G23.8|ICD10CM|Other specified degenerative diseases of basal ganglia|Other specified degenerative diseases of basal ganglia +C0494458|T047|PT|G23.9|ICD10CM|Degenerative disease of basal ganglia, unspecified|Degenerative disease of basal ganglia, unspecified +C0494458|T047|AB|G23.9|ICD10CM|Degenerative disease of basal ganglia, unspecified|Degenerative disease of basal ganglia, unspecified +C0494458|T047|PT|G23.9|ICD10|Degenerative disease of basal ganglia, unspecified|Degenerative disease of basal ganglia, unspecified +C0013384|T047|ET|G24|ICD10CM|dyskinesia|dyskinesia +C0393593|T047|HT|G24|ICD10CM|Dystonia|Dystonia +C0393593|T047|AB|G24|ICD10CM|Dystonia|Dystonia +C0393593|T047|HT|G24|ICD10|Dystonia|Dystonia +C0393595|T046|AB|G24.0|ICD10CM|Drug induced dystonia|Drug induced dystonia +C0393595|T046|HT|G24.0|ICD10CM|Drug induced dystonia|Drug induced dystonia +C0393595|T046|PT|G24.0|ICD10|Drug-induced dystonia|Drug-induced dystonia +C2199094|T046|ET|G24.01|ICD10CM|Drug induced blepharospasm|Drug induced blepharospasm +C0577697|T046|ET|G24.01|ICD10CM|Drug induced orofacial dyskinesia|Drug induced orofacial dyskinesia +C2875055|T046|AB|G24.01|ICD10CM|Drug induced subacute dyskinesia|Drug induced subacute dyskinesia +C2875055|T046|PT|G24.01|ICD10CM|Drug induced subacute dyskinesia|Drug induced subacute dyskinesia +C0543891|T047|ET|G24.01|ICD10CM|Neuroleptic induced tardive dyskinesia|Neuroleptic induced tardive dyskinesia +C0686347|T047|ET|G24.01|ICD10CM|Tardive dyskinesia|Tardive dyskinesia +C2875056|T047|ET|G24.02|ICD10CM|Acute dystonic reaction to drugs|Acute dystonic reaction to drugs +C0393596|T046|AB|G24.02|ICD10CM|Drug induced acute dystonia|Drug induced acute dystonia +C0393596|T046|PT|G24.02|ICD10CM|Drug induced acute dystonia|Drug induced acute dystonia +C0236832|T047|ET|G24.02|ICD10CM|Neuroleptic induced acute dystonia|Neuroleptic induced acute dystonia +C2875057|T046|AB|G24.09|ICD10CM|Other drug induced dystonia|Other drug induced dystonia +C2875057|T046|PT|G24.09|ICD10CM|Other drug induced dystonia|Other drug induced dystonia +C0013423|T047|ET|G24.1|ICD10CM|(Schwalbe-) Ziehen-Oppenheim disease|(Schwalbe-) Ziehen-Oppenheim disease +C0013423|T047|ET|G24.1|ICD10CM|Dystonia deformans progressiva|Dystonia deformans progressiva +C0013423|T047|ET|G24.1|ICD10CM|Dystonia musculorum deformans|Dystonia musculorum deformans +C2875058|T047|ET|G24.1|ICD10CM|Familial torsion dystonia|Familial torsion dystonia +C0013423|T047|AB|G24.1|ICD10CM|Genetic torsion dystonia|Genetic torsion dystonia +C0013423|T047|PT|G24.1|ICD10CM|Genetic torsion dystonia|Genetic torsion dystonia +C0013423|T047|ET|G24.1|ICD10CM|Idiopathic (torsion) dystonia NOS|Idiopathic (torsion) dystonia NOS +C0393598|T047|ET|G24.1|ICD10CM|Idiopathic familial dystonia|Idiopathic familial dystonia +C0393598|T047|PT|G24.1|ICD10|Idiopathic familial dystonia|Idiopathic familial dystonia +C0393601|T047|PT|G24.2|ICD10|Idiopathic nonfamilial dystonia|Idiopathic nonfamilial dystonia +C0393601|T047|PT|G24.2|ICD10CM|Idiopathic nonfamilial dystonia|Idiopathic nonfamilial dystonia +C0393601|T047|AB|G24.2|ICD10CM|Idiopathic nonfamilial dystonia|Idiopathic nonfamilial dystonia +C0152116|T184|PT|G24.3|ICD10CM|Spasmodic torticollis|Spasmodic torticollis +C0152116|T184|AB|G24.3|ICD10CM|Spasmodic torticollis|Spasmodic torticollis +C0152116|T184|PT|G24.3|ICD10|Spasmodic torticollis|Spasmodic torticollis +C0393605|T047|PT|G24.4|ICD10CM|Idiopathic orofacial dystonia|Idiopathic orofacial dystonia +C0393605|T047|AB|G24.4|ICD10CM|Idiopathic orofacial dystonia|Idiopathic orofacial dystonia +C0393605|T047|PT|G24.4|ICD10|Idiopathic orofacial dystonia|Idiopathic orofacial dystonia +C0152115|T047|ET|G24.4|ICD10CM|Orofacial dyskinesia|Orofacial dyskinesia +C0005747|T047|PT|G24.5|ICD10|Blepharospasm|Blepharospasm +C0005747|T047|PT|G24.5|ICD10CM|Blepharospasm|Blepharospasm +C0005747|T047|AB|G24.5|ICD10CM|Blepharospasm|Blepharospasm +C1719382|T047|ET|G24.8|ICD10CM|Acquired torsion dystonia NOS|Acquired torsion dystonia NOS +C0477360|T047|PT|G24.8|ICD10|Other dystonia|Other dystonia +C0477360|T047|PT|G24.8|ICD10CM|Other dystonia|Other dystonia +C0477360|T047|AB|G24.8|ICD10CM|Other dystonia|Other dystonia +C0013384|T047|ET|G24.9|ICD10CM|Dyskinesia NOS|Dyskinesia NOS +C0393593|T047|PT|G24.9|ICD10CM|Dystonia, unspecified|Dystonia, unspecified +C0393593|T047|AB|G24.9|ICD10CM|Dystonia, unspecified|Dystonia, unspecified +C0393593|T047|PT|G24.9|ICD10|Dystonia, unspecified|Dystonia, unspecified +C0154678|T047|HT|G25|ICD10|Other extrapyramidal and movement disorders|Other extrapyramidal and movement disorders +C0154678|T047|AB|G25|ICD10CM|Other extrapyramidal and movement disorders|Other extrapyramidal and movement disorders +C0154678|T047|HT|G25|ICD10CM|Other extrapyramidal and movement disorders|Other extrapyramidal and movement disorders +C0270736|T047|PT|G25.0|ICD10|Essential tremor|Essential tremor +C0270736|T047|PT|G25.0|ICD10CM|Essential tremor|Essential tremor +C0270736|T047|AB|G25.0|ICD10CM|Essential tremor|Essential tremor +C0393615|T047|ET|G25.0|ICD10CM|Familial tremor|Familial tremor +C0236831|T047|PT|G25.1|ICD10|Drug-induced tremor|Drug-induced tremor +C0236831|T047|PT|G25.1|ICD10CM|Drug-induced tremor|Drug-induced tremor +C0236831|T047|AB|G25.1|ICD10CM|Drug-induced tremor|Drug-induced tremor +C4551520|T184|ET|G25.2|ICD10CM|Intention tremor|Intention tremor +C0477361|T046|PT|G25.2|ICD10CM|Other specified forms of tremor|Other specified forms of tremor +C0477361|T046|AB|G25.2|ICD10CM|Other specified forms of tremor|Other specified forms of tremor +C0477361|T046|PT|G25.2|ICD10|Other specified forms of tremor|Other specified forms of tremor +C0393622|T046|ET|G25.3|ICD10CM|Drug-induced myoclonus|Drug-induced myoclonus +C0027066|T184|PT|G25.3|ICD10|Myoclonus|Myoclonus +C0027066|T184|PT|G25.3|ICD10CM|Myoclonus|Myoclonus +C0027066|T184|AB|G25.3|ICD10CM|Myoclonus|Myoclonus +C0030214|T184|ET|G25.3|ICD10CM|Palatal myoclonus|Palatal myoclonus +C0393582|T046|PT|G25.4|ICD10|Drug-induced chorea|Drug-induced chorea +C0393582|T046|PT|G25.4|ICD10CM|Drug-induced chorea|Drug-induced chorea +C0393582|T046|AB|G25.4|ICD10CM|Drug-induced chorea|Drug-induced chorea +C0008489|T047|ET|G25.5|ICD10CM|Chorea NOS|Chorea NOS +C0029542|T046|PT|G25.5|ICD10CM|Other chorea|Other chorea +C0029542|T046|AB|G25.5|ICD10CM|Other chorea|Other chorea +C0029542|T046|PT|G25.5|ICD10|Other chorea|Other chorea +C0494460|T046|AB|G25.6|ICD10CM|Drug induced tics and other tics of organic origin|Drug induced tics and other tics of organic origin +C0494460|T046|HT|G25.6|ICD10CM|Drug induced tics and other tics of organic origin|Drug induced tics and other tics of organic origin +C0494460|T046|PT|G25.6|ICD10|Drug-induced tics and other tics of organic origin|Drug-induced tics and other tics of organic origin +C0338466|T046|AB|G25.61|ICD10CM|Drug induced tics|Drug induced tics +C0338466|T046|PT|G25.61|ICD10CM|Drug induced tics|Drug induced tics +C2875059|T046|AB|G25.69|ICD10CM|Other tics of organic origin|Other tics of organic origin +C2875059|T046|PT|G25.69|ICD10CM|Other tics of organic origin|Other tics of organic origin +C2875060|T047|AB|G25.7|ICD10CM|Other and unspecified drug induced movement disorders|Other and unspecified drug induced movement disorders +C2875060|T047|HT|G25.7|ICD10CM|Other and unspecified drug induced movement disorders|Other and unspecified drug induced movement disorders +C2875061|T047|AB|G25.70|ICD10CM|Drug induced movement disorder, unspecified|Drug induced movement disorder, unspecified +C2875061|T047|PT|G25.70|ICD10CM|Drug induced movement disorder, unspecified|Drug induced movement disorder, unspecified +C0162550|T047|ET|G25.71|ICD10CM|Drug induced acathisia|Drug induced acathisia +C0162550|T047|AB|G25.71|ICD10CM|Drug induced akathisia|Drug induced akathisia +C0162550|T047|PT|G25.71|ICD10CM|Drug induced akathisia|Drug induced akathisia +C0236835|T047|ET|G25.71|ICD10CM|Neuroleptic induced acute akathisia|Neuroleptic induced acute akathisia +C0162549|T047|ET|G25.71|ICD10CM|Tardive akathisia|Tardive akathisia +C2875062|T047|AB|G25.79|ICD10CM|Other drug induced movement disorders|Other drug induced movement disorders +C2875062|T047|PT|G25.79|ICD10CM|Other drug induced movement disorders|Other drug induced movement disorders +C0477362|T047|PT|G25.8|ICD10|Other specified extrapyramidal and movement disorders|Other specified extrapyramidal and movement disorders +C0477362|T047|HT|G25.8|ICD10CM|Other specified extrapyramidal and movement disorders|Other specified extrapyramidal and movement disorders +C0477362|T047|AB|G25.8|ICD10CM|Other specified extrapyramidal and movement disorders|Other specified extrapyramidal and movement disorders +C0035258|T047|PT|G25.81|ICD10CM|Restless legs syndrome|Restless legs syndrome +C0035258|T047|AB|G25.81|ICD10CM|Restless legs syndrome|Restless legs syndrome +C0085292|T047|PT|G25.82|ICD10CM|Stiff-man syndrome|Stiff-man syndrome +C0085292|T047|AB|G25.82|ICD10CM|Stiff-man syndrome|Stiff-man syndrome +C0375200|T047|AB|G25.83|ICD10CM|Benign shuddering attacks|Benign shuddering attacks +C0375200|T047|PT|G25.83|ICD10CM|Benign shuddering attacks|Benign shuddering attacks +C0477362|T047|PT|G25.89|ICD10CM|Other specified extrapyramidal and movement disorders|Other specified extrapyramidal and movement disorders +C0477362|T047|AB|G25.89|ICD10CM|Other specified extrapyramidal and movement disorders|Other specified extrapyramidal and movement disorders +C0477355|T047|PT|G25.9|ICD10CM|Extrapyramidal and movement disorder, unspecified|Extrapyramidal and movement disorder, unspecified +C0477355|T047|AB|G25.9|ICD10CM|Extrapyramidal and movement disorder, unspecified|Extrapyramidal and movement disorder, unspecified +C0477355|T047|PT|G25.9|ICD10|Extrapyramidal and movement disorder, unspecified|Extrapyramidal and movement disorder, unspecified +C0477363|T047|AB|G26|ICD10CM|Extrapyramidal and movement disord in diseases classd elswhr|Extrapyramidal and movement disord in diseases classd elswhr +C0477363|T047|PT|G26|ICD10CM|Extrapyramidal and movement disorders in diseases classified elsewhere|Extrapyramidal and movement disorders in diseases classified elsewhere +C0477363|T047|PT|G26|ICD10|Extrapyramidal and movement disorders in diseases classified elsewhere|Extrapyramidal and movement disorders in diseases classified elsewhere +C4290121|T047|ET|G30|ICD10CM|Alzheimer's dementia senile and presenile forms|Alzheimer's dementia senile and presenile forms +C0002395|T047|HT|G30|ICD10CM|Alzheimer's disease|Alzheimer's disease +C0002395|T047|AB|G30|ICD10CM|Alzheimer's disease|Alzheimer's disease +C0002395|T047|HT|G30|ICD10|Alzheimer's disease|Alzheimer's disease +C0393643|T047|HT|G30-G32|ICD10CM|Other degenerative diseases of the nervous system (G30-G32)|Other degenerative diseases of the nervous system (G30-G32) +C0393643|T047|HT|G30-G32.9|ICD10|Other degenerative diseases of the nervous system|Other degenerative diseases of the nervous system +C0750901|T047|PT|G30.0|ICD10CM|Alzheimer's disease with early onset|Alzheimer's disease with early onset +C0750901|T047|AB|G30.0|ICD10CM|Alzheimer's disease with early onset|Alzheimer's disease with early onset +C0750901|T047|PT|G30.0|ICD10|Alzheimer's disease with early onset|Alzheimer's disease with early onset +C0494463|T048|PT|G30.1|ICD10CM|Alzheimer's disease with late onset|Alzheimer's disease with late onset +C0494463|T048|AB|G30.1|ICD10CM|Alzheimer's disease with late onset|Alzheimer's disease with late onset +C0494463|T048|PT|G30.1|ICD10|Alzheimer's disease with late onset|Alzheimer's disease with late onset +C0477364|T048|PT|G30.8|ICD10|Other Alzheimer's disease|Other Alzheimer's disease +C0477364|T048|PT|G30.8|ICD10CM|Other Alzheimer's disease|Other Alzheimer's disease +C0477364|T048|AB|G30.8|ICD10CM|Other Alzheimer's disease|Other Alzheimer's disease +C0002395|T047|PT|G30.9|ICD10|Alzheimer's disease, unspecified|Alzheimer's disease, unspecified +C0002395|T047|PT|G30.9|ICD10CM|Alzheimer's disease, unspecified|Alzheimer's disease, unspecified +C0002395|T047|AB|G30.9|ICD10CM|Alzheimer's disease, unspecified|Alzheimer's disease, unspecified +C0494464|T047|AB|G31|ICD10CM|Oth degenerative diseases of nervous system, NEC|Oth degenerative diseases of nervous system, NEC +C0494464|T047|HT|G31|ICD10CM|Other degenerative diseases of nervous system, not elsewhere classified|Other degenerative diseases of nervous system, not elsewhere classified +C0494464|T047|HT|G31|ICD10|Other degenerative diseases of nervous system, not elsewhere classified|Other degenerative diseases of nervous system, not elsewhere classified +C0221394|T046|PT|G31.0|ICD10|Circumscribed brain atrophy|Circumscribed brain atrophy +C0338451|T047|HT|G31.0|ICD10CM|Frontotemporal dementia|Frontotemporal dementia +C0338451|T047|AB|G31.0|ICD10CM|Frontotemporal dementia|Frontotemporal dementia +C0236642|T047|PT|G31.01|ICD10CM|Pick's disease|Pick's disease +C0236642|T047|AB|G31.01|ICD10CM|Pick's disease|Pick's disease +C0282513|T048|ET|G31.01|ICD10CM|Primary progressive aphasia|Primary progressive aphasia +C1386519|T046|ET|G31.01|ICD10CM|Progressive isolated aphasia|Progressive isolated aphasia +C1260405|T047|ET|G31.09|ICD10CM|Frontal dementia|Frontal dementia +C1260406|T047|AB|G31.09|ICD10CM|Other frontotemporal dementia|Other frontotemporal dementia +C1260406|T047|PT|G31.09|ICD10CM|Other frontotemporal dementia|Other frontotemporal dementia +C0494465|T047|PT|G31.1|ICD10|Senile degeneration of brain, not elsewhere classified|Senile degeneration of brain, not elsewhere classified +C0494465|T047|PT|G31.1|ICD10CM|Senile degeneration of brain, not elsewhere classified|Senile degeneration of brain, not elsewhere classified +C0494465|T047|AB|G31.1|ICD10CM|Senile degeneration of brain, not elsewhere classified|Senile degeneration of brain, not elsewhere classified +C1261109|T047|ET|G31.2|ICD10CM|Alcoholic cerebellar ataxia|Alcoholic cerebellar ataxia +C0338442|T047|ET|G31.2|ICD10CM|Alcoholic cerebellar degeneration|Alcoholic cerebellar degeneration +C2875064|T047|ET|G31.2|ICD10CM|Alcoholic cerebral degeneration|Alcoholic cerebral degeneration +C2931917|T047|ET|G31.2|ICD10CM|Alcoholic encephalopathy|Alcoholic encephalopathy +C0494466|T047|PT|G31.2|ICD10CM|Degeneration of nervous system due to alcohol|Degeneration of nervous system due to alcohol +C0494466|T047|AB|G31.2|ICD10CM|Degeneration of nervous system due to alcohol|Degeneration of nervous system due to alcohol +C0494466|T047|PT|G31.2|ICD10|Degeneration of nervous system due to alcohol|Degeneration of nervous system due to alcohol +C2875065|T047|ET|G31.2|ICD10CM|Dysfunction of the autonomic nervous system due to alcohol|Dysfunction of the autonomic nervous system due to alcohol +C0477365|T047|PT|G31.8|ICD10|Other specified degenerative diseases of nervous system|Other specified degenerative diseases of nervous system +C0477365|T047|HT|G31.8|ICD10CM|Other specified degenerative diseases of nervous system|Other specified degenerative diseases of nervous system +C0477365|T047|AB|G31.8|ICD10CM|Other specified degenerative diseases of nervous system|Other specified degenerative diseases of nervous system +C0205710|T047|AB|G31.81|ICD10CM|Alpers disease|Alpers disease +C0205710|T047|PT|G31.81|ICD10CM|Alpers disease|Alpers disease +C0205710|T047|ET|G31.81|ICD10CM|Grey-matter degeneration|Grey-matter degeneration +C0023264|T047|PT|G31.82|ICD10CM|Leigh's disease|Leigh's disease +C0023264|T047|AB|G31.82|ICD10CM|Leigh's disease|Leigh's disease +C0023264|T047|ET|G31.82|ICD10CM|Subacute necrotizing encephalopathy|Subacute necrotizing encephalopathy +C0752347|T047|PT|G31.83|ICD10CM|Dementia with Lewy bodies|Dementia with Lewy bodies +C0752347|T047|AB|G31.83|ICD10CM|Dementia with Lewy bodies|Dementia with Lewy bodies +C1828079|T048|ET|G31.83|ICD10CM|Dementia with Parkinsonism|Dementia with Parkinsonism +C0752347|T047|ET|G31.83|ICD10CM|Lewy body dementia|Lewy body dementia +C0752347|T047|ET|G31.83|ICD10CM|Lewy body disease|Lewy body disease +C1719378|T047|AB|G31.84|ICD10CM|Mild cognitive impairment, so stated|Mild cognitive impairment, so stated +C1719378|T047|PT|G31.84|ICD10CM|Mild cognitive impairment, so stated|Mild cognitive impairment, so stated +C1270972|T048|ET|G31.84|ICD10CM|Mild neurocognitive disorder|Mild neurocognitive disorder +C0393570|T047|AB|G31.85|ICD10CM|Corticobasal degeneration|Corticobasal degeneration +C0393570|T047|PT|G31.85|ICD10CM|Corticobasal degeneration|Corticobasal degeneration +C0477365|T047|PT|G31.89|ICD10CM|Other specified degenerative diseases of nervous system|Other specified degenerative diseases of nervous system +C0477365|T047|AB|G31.89|ICD10CM|Other specified degenerative diseases of nervous system|Other specified degenerative diseases of nervous system +C0524851|T047|AB|G31.9|ICD10CM|Degenerative disease of nervous system, unspecified|Degenerative disease of nervous system, unspecified +C0524851|T047|PT|G31.9|ICD10CM|Degenerative disease of nervous system, unspecified|Degenerative disease of nervous system, unspecified +C0524851|T047|PT|G31.9|ICD10|Degenerative disease of nervous system, unspecified|Degenerative disease of nervous system, unspecified +C0694473|T047|AB|G32|ICD10CM|Oth degeneratv disord of nervous sys in dis classd elswhr|Oth degeneratv disord of nervous sys in dis classd elswhr +C0694473|T047|HT|G32|ICD10CM|Other degenerative disorders of nervous system in diseases classified elsewhere|Other degenerative disorders of nervous system in diseases classified elsewhere +C0694473|T047|HT|G32|ICD10|Other degenerative disorders of nervous system in diseases classified elsewhere|Other degenerative disorders of nervous system in diseases classified elsewhere +C0221065|T047|ET|G32.0|ICD10CM|Dana-Putnam syndrome|Dana-Putnam syndrome +C2875066|T047|ET|G32.0|ICD10CM|Sclerosis of spinal cord (combined) (dorsolateral) (posterolateral)|Sclerosis of spinal cord (combined) (dorsolateral) (posterolateral) +C0154686|T047|AB|G32.0|ICD10CM|Subac comb degeneration of spinal cord in dis classd elswhr|Subac comb degeneration of spinal cord in dis classd elswhr +C0154686|T047|PT|G32.0|ICD10CM|Subacute combined degeneration of spinal cord in diseases classified elsewhere|Subacute combined degeneration of spinal cord in diseases classified elsewhere +C0154686|T047|PT|G32.0|ICD10|Subacute combined degeneration of spinal cord in diseases classified elsewhere|Subacute combined degeneration of spinal cord in diseases classified elsewhere +C0477366|T047|AB|G32.8|ICD10CM|Oth degeneratv disord of nervous sys in dis classd elswhr|Oth degeneratv disord of nervous sys in dis classd elswhr +C0477366|T047|HT|G32.8|ICD10CM|Other specified degenerative disorders of nervous system in diseases classified elsewhere|Other specified degenerative disorders of nervous system in diseases classified elsewhere +C0477366|T047|PT|G32.8|ICD10|Other specified degenerative disorders of nervous system in diseases classified elsewhere|Other specified degenerative disorders of nervous system in diseases classified elsewhere +C0393517|T047|PT|G32.81|ICD10CM|Cerebellar ataxia in diseases classified elsewhere|Cerebellar ataxia in diseases classified elsewhere +C0393517|T047|AB|G32.81|ICD10CM|Cerebellar ataxia in diseases classified elsewhere|Cerebellar ataxia in diseases classified elsewhere +C3263962|T047|ET|G32.89|ICD10CM|Degenerative encephalopathy in diseases classified elsewhere|Degenerative encephalopathy in diseases classified elsewhere +C0477366|T047|AB|G32.89|ICD10CM|Oth degeneratv disord of nervous sys in dis classd elswhr|Oth degeneratv disord of nervous sys in dis classd elswhr +C0477366|T047|PT|G32.89|ICD10CM|Other specified degenerative disorders of nervous system in diseases classified elsewhere|Other specified degenerative disorders of nervous system in diseases classified elsewhere +C2875068|T047|ET|G35|ICD10CM|Disseminated multiple sclerosis|Disseminated multiple sclerosis +C0026769|T047|ET|G35|ICD10CM|Generalized multiple sclerosis|Generalized multiple sclerosis +C0026769|T047|PT|G35|ICD10CM|Multiple sclerosis|Multiple sclerosis +C0026769|T047|AB|G35|ICD10CM|Multiple sclerosis|Multiple sclerosis +C0026769|T047|PT|G35|ICD10|Multiple sclerosis|Multiple sclerosis +C0026769|T047|ET|G35|ICD10CM|Multiple sclerosis NOS|Multiple sclerosis NOS +C0270784|T047|ET|G35|ICD10CM|Multiple sclerosis of brain stem|Multiple sclerosis of brain stem +C0338475|T047|ET|G35|ICD10CM|Multiple sclerosis of cord|Multiple sclerosis of cord +C0011302|T047|HT|G35-G37|ICD10CM|Demyelinating diseases of the central nervous system (G35-G37)|Demyelinating diseases of the central nervous system (G35-G37) +C0011302|T047|HT|G35-G37.9|ICD10|Demyelinating diseases of the central nervous system|Demyelinating diseases of the central nervous system +C0494468|T046|HT|G36|ICD10|Other acute disseminated demyelination|Other acute disseminated demyelination +C0494468|T046|AB|G36|ICD10CM|Other acute disseminated demyelination|Other acute disseminated demyelination +C0494468|T046|HT|G36|ICD10CM|Other acute disseminated demyelination|Other acute disseminated demyelination +C1395170|T047|ET|G36.0|ICD10CM|Demyelination in optic neuritis|Demyelination in optic neuritis +C0027873|T047|PT|G36.0|ICD10|Neuromyelitis optica [Devic]|Neuromyelitis optica [Devic] +C0027873|T047|PT|G36.0|ICD10CM|Neuromyelitis optica [Devic]|Neuromyelitis optica [Devic] +C0027873|T047|AB|G36.0|ICD10CM|Neuromyelitis optica [Devic]|Neuromyelitis optica [Devic] +C0349367|T047|PT|G36.1|ICD10|Acute and subacute haemorrhagic leukoencephalitis [Hurst]|Acute and subacute haemorrhagic leukoencephalitis [Hurst] +C0349367|T047|PT|G36.1|ICD10AE|Acute and subacute hemorrhagic leukencephalitis [Hurst]|Acute and subacute hemorrhagic leukencephalitis [Hurst] +C0349367|T047|PT|G36.1|ICD10CM|Acute and subacute hemorrhagic leukoencephalitis [Hurst]|Acute and subacute hemorrhagic leukoencephalitis [Hurst] +C0349367|T047|AB|G36.1|ICD10CM|Acute and subacute hemorrhagic leukoencephalitis [Hurst]|Acute and subacute hemorrhagic leukoencephalitis [Hurst] +C0477367|T047|PT|G36.8|ICD10CM|Other specified acute disseminated demyelination|Other specified acute disseminated demyelination +C0477367|T047|AB|G36.8|ICD10CM|Other specified acute disseminated demyelination|Other specified acute disseminated demyelination +C0477367|T047|PT|G36.8|ICD10|Other specified acute disseminated demyelination|Other specified acute disseminated demyelination +C0477368|T047|PT|G36.9|ICD10|Acute disseminated demyelination, unspecified|Acute disseminated demyelination, unspecified +C0477368|T047|PT|G36.9|ICD10CM|Acute disseminated demyelination, unspecified|Acute disseminated demyelination, unspecified +C0477368|T047|AB|G36.9|ICD10CM|Acute disseminated demyelination, unspecified|Acute disseminated demyelination, unspecified +C0154692|T047|HT|G37|ICD10CM|Other demyelinating diseases of central nervous system|Other demyelinating diseases of central nervous system +C0154692|T047|AB|G37|ICD10CM|Other demyelinating diseases of central nervous system|Other demyelinating diseases of central nervous system +C0154692|T047|HT|G37|ICD10|Other demyelinating diseases of central nervous system|Other demyelinating diseases of central nervous system +C0007795|T047|PT|G37.0|ICD10|Diffuse sclerosis|Diffuse sclerosis +C2875070|T047|AB|G37.0|ICD10CM|Diffuse sclerosis of central nervous system|Diffuse sclerosis of central nervous system +C2875070|T047|PT|G37.0|ICD10CM|Diffuse sclerosis of central nervous system|Diffuse sclerosis of central nervous system +C2875069|T047|ET|G37.0|ICD10CM|Periaxial encephalitis|Periaxial encephalitis +C0007795|T047|ET|G37.0|ICD10CM|Schilder's disease|Schilder's disease +C0238265|T047|PT|G37.1|ICD10CM|Central demyelination of corpus callosum|Central demyelination of corpus callosum +C0238265|T047|AB|G37.1|ICD10CM|Central demyelination of corpus callosum|Central demyelination of corpus callosum +C0238265|T047|PT|G37.1|ICD10|Central demyelination of corpus callosum|Central demyelination of corpus callosum +C0206083|T047|PT|G37.2|ICD10|Central pontine myelinolysis|Central pontine myelinolysis +C0206083|T047|PT|G37.2|ICD10CM|Central pontine myelinolysis|Central pontine myelinolysis +C0206083|T047|AB|G37.2|ICD10CM|Central pontine myelinolysis|Central pontine myelinolysis +C0494470|T047|PT|G37.3|ICD10CM|Acute transverse myelitis in demyelinating disease of central nervous system|Acute transverse myelitis in demyelinating disease of central nervous system +C0494470|T047|PT|G37.3|ICD10|Acute transverse myelitis in demyelinating disease of central nervous system|Acute transverse myelitis in demyelinating disease of central nervous system +C0494470|T047|AB|G37.3|ICD10CM|Acute transverse myelitis in demyelinating disease of cnsl|Acute transverse myelitis in demyelinating disease of cnsl +C0270627|T047|ET|G37.3|ICD10CM|Acute transverse myelitis NOS|Acute transverse myelitis NOS +C2875071|T047|ET|G37.3|ICD10CM|Acute transverse myelopathy|Acute transverse myelopathy +C0472347|T047|PT|G37.4|ICD10|Subacute necrotizing myelitis|Subacute necrotizing myelitis +C2875072|T047|PT|G37.4|ICD10CM|Subacute necrotizing myelitis of central nervous system|Subacute necrotizing myelitis of central nervous system +C2875072|T047|AB|G37.4|ICD10CM|Subacute necrotizing myelitis of central nervous system|Subacute necrotizing myelitis of central nervous system +C0004712|T047|PT|G37.5|ICD10|Concentric sclerosis [Balo]|Concentric sclerosis [Balo] +C2875073|T047|AB|G37.5|ICD10CM|Concentric sclerosis [Balo] of central nervous system|Concentric sclerosis [Balo] of central nervous system +C2875073|T047|PT|G37.5|ICD10CM|Concentric sclerosis [Balo] of central nervous system|Concentric sclerosis [Balo] of central nervous system +C0393663|T047|AB|G37.8|ICD10CM|Oth demyelinating diseases of central nervous system|Oth demyelinating diseases of central nervous system +C0393663|T047|PT|G37.8|ICD10CM|Other specified demyelinating diseases of central nervous system|Other specified demyelinating diseases of central nervous system +C0393663|T047|PT|G37.8|ICD10|Other specified demyelinating diseases of central nervous system|Other specified demyelinating diseases of central nervous system +C0011302|T047|PT|G37.9|ICD10|Demyelinating disease of central nervous system, unspecified|Demyelinating disease of central nervous system, unspecified +C0011302|T047|PT|G37.9|ICD10CM|Demyelinating disease of central nervous system, unspecified|Demyelinating disease of central nervous system, unspecified +C0011302|T047|AB|G37.9|ICD10CM|Demyelinating disease of central nervous system, unspecified|Demyelinating disease of central nervous system, unspecified +C0014544|T047|HT|G40|ICD10|Epilepsy|Epilepsy +C1719410|T047|AB|G40|ICD10CM|Epilepsy and recurrent seizures|Epilepsy and recurrent seizures +C1719410|T047|HT|G40|ICD10CM|Epilepsy and recurrent seizures|Epilepsy and recurrent seizures +C0477369|T047|HT|G40-G47|ICD10CM|Episodic and paroxysmal disorders (G40-G47)|Episodic and paroxysmal disorders (G40-G47) +C0477369|T047|HT|G40-G47.9|ICD10|Episodic and paroxysmal disorders|Episodic and paroxysmal disorders +C2875074|T047|ET|G40.0|ICD10CM|Benign childhood epilepsy with centrotemporal EEG spikes|Benign childhood epilepsy with centrotemporal EEG spikes +C1396190|T047|ET|G40.0|ICD10CM|Childhood epilepsy with occipital EEG paroxysms|Childhood epilepsy with occipital EEG paroxysms +C0475521|T047|AB|G40.0|ICD10CM|Local-rel (focal) idio epilepsy w seizures of loc onset|Local-rel (focal) idio epilepsy w seizures of loc onset +C2875075|T047|AB|G40.00|ICD10CM|Local-rel (focal) idio epi w seiz of loc onset, not ntrct|Local-rel (focal) idio epi w seiz of loc onset, not ntrct +C2875076|T047|AB|G40.001|ICD10CM|Local-rel idio epi w seiz of loc onst, not ntrct, w stat epi|Local-rel idio epi w seiz of loc onst, not ntrct, w stat epi +C2875077|T047|AB|G40.009|ICD10CM|Local-rel idio epi w seiz of loc onst,not ntrct,w/o stat epi|Local-rel idio epi w seiz of loc onst,not ntrct,w/o stat epi +C2875078|T047|AB|G40.01|ICD10CM|Local-rel (focal) idio epi w seizures of loc onset, ntrct|Local-rel (focal) idio epi w seizures of loc onset, ntrct +C2875079|T047|AB|G40.011|ICD10CM|Local-rel idio epi w seiz of loc onset, ntrct, w stat epi|Local-rel idio epi w seiz of loc onset, ntrct, w stat epi +C2875080|T047|AB|G40.019|ICD10CM|Local-rel idio epi w seiz of loc onset, ntrct, w/o stat epi|Local-rel idio epi w seiz of loc onset, ntrct, w/o stat epi +C2875081|T047|ET|G40.1|ICD10CM|Attacks without alteration of consciousness|Attacks without alteration of consciousness +C0085543|T047|ET|G40.1|ICD10CM|Epilepsia partialis continua [Kozhevnikof]|Epilepsia partialis continua [Kozhevnikof] +C0494471|T047|AB|G40.1|ICD10CM|Local-rel (focal) symptc epilepsy w simple partial seizures|Local-rel (focal) symptc epilepsy w simple partial seizures +C2875082|T047|ET|G40.1|ICD10CM|Simple partial seizures developing into secondarily generalized seizures|Simple partial seizures developing into secondarily generalized seizures +C2875083|T047|AB|G40.10|ICD10CM|Local-rel symptc epi w simple partial seiz, not ntrct|Local-rel symptc epi w simple partial seiz, not ntrct +C2875084|T047|AB|G40.101|ICD10CM|Local-rel symptc epi w simp part seiz, not ntrct, w stat epi|Local-rel symptc epi w simp part seiz, not ntrct, w stat epi +C2875085|T047|AB|G40.109|ICD10CM|Local-rel symptc epi w simp prt seiz,not ntrct, w/o stat epi|Local-rel symptc epi w simp prt seiz,not ntrct, w/o stat epi +C2875086|T047|AB|G40.11|ICD10CM|Local-rel (focal) symptc epi w simple partial seiz, ntrct|Local-rel (focal) symptc epi w simple partial seiz, ntrct +C2875087|T047|AB|G40.111|ICD10CM|Local-rel symptc epi w simple part seiz, ntrct, w stat epi|Local-rel symptc epi w simple part seiz, ntrct, w stat epi +C2875088|T047|AB|G40.119|ICD10CM|Local-rel symptc epi w simple part seiz, ntrct, w/o stat epi|Local-rel symptc epi w simple part seiz, ntrct, w/o stat epi +C2875089|T047|ET|G40.2|ICD10CM|Attacks with alteration of consciousness, often with automatisms|Attacks with alteration of consciousness, often with automatisms +C2875090|T047|ET|G40.2|ICD10CM|Complex partial seizures developing into secondarily generalized seizures|Complex partial seizures developing into secondarily generalized seizures +C0494472|T047|AB|G40.2|ICD10CM|Local-rel (focal) symptc epilepsy w complex partial seizures|Local-rel (focal) symptc epilepsy w complex partial seizures +C2875091|T047|AB|G40.20|ICD10CM|Local-rel symptc epi w complex partial seiz, not ntrct|Local-rel symptc epi w complex partial seiz, not ntrct +C2875092|T047|AB|G40.201|ICD10CM|Local-rel symptc epi w cmplx prt seiz, not ntrct, w stat epi|Local-rel symptc epi w cmplx prt seiz, not ntrct, w stat epi +C2875093|T047|AB|G40.209|ICD10CM|Local-rel symptc epi w cmplx prt seiz,not ntrct,w/o stat epi|Local-rel symptc epi w cmplx prt seiz,not ntrct,w/o stat epi +C2875094|T047|AB|G40.21|ICD10CM|Local-rel (focal) symptc epi w complex partial seiz, ntrct|Local-rel (focal) symptc epi w complex partial seiz, ntrct +C2875095|T047|AB|G40.211|ICD10CM|Local-rel symptc epi w cmplx partial seiz, ntrct, w stat epi|Local-rel symptc epi w cmplx partial seiz, ntrct, w stat epi +C2875096|T047|AB|G40.219|ICD10CM|Local-rel symptc epi w cmplx part seiz, ntrct, w/o stat epi|Local-rel symptc epi w cmplx part seiz, ntrct, w/o stat epi +C0270850|T047|HT|G40.3|ICD10CM|Generalized idiopathic epilepsy and epileptic syndromes|Generalized idiopathic epilepsy and epileptic syndromes +C0270850|T047|AB|G40.3|ICD10CM|Generalized idiopathic epilepsy and epileptic syndromes|Generalized idiopathic epilepsy and epileptic syndromes +C0270850|T047|PT|G40.3|ICD10|Generalized idiopathic epilepsy and epileptic syndromes|Generalized idiopathic epilepsy and epileptic syndromes +C2976873|T047|ET|G40.30|ICD10CM|Generalized idiopathic epilepsy and epileptic syndromes without intractability|Generalized idiopathic epilepsy and epileptic syndromes without intractability +C2875104|T047|HT|G40.30|ICD10CM|Generalized idiopathic epilepsy and epileptic syndromes, not intractable|Generalized idiopathic epilepsy and epileptic syndromes, not intractable +C2875104|T047|AB|G40.30|ICD10CM|Generalized idiopathic epilepsy, not intractable|Generalized idiopathic epilepsy, not intractable +C2875105|T047|AB|G40.301|ICD10CM|Gen idiopathic epilepsy, not intractable, w stat epi|Gen idiopathic epilepsy, not intractable, w stat epi +C2875105|T047|PT|G40.301|ICD10CM|Generalized idiopathic epilepsy and epileptic syndromes, not intractable, with status epilepticus|Generalized idiopathic epilepsy and epileptic syndromes, not intractable, with status epilepticus +C2875106|T047|AB|G40.309|ICD10CM|Gen idiopathic epilepsy, not intractable, w/o stat epi|Gen idiopathic epilepsy, not intractable, w/o stat epi +C0270850|T047|ET|G40.309|ICD10CM|Generalized idiopathic epilepsy and epileptic syndromes NOS|Generalized idiopathic epilepsy and epileptic syndromes NOS +C2875106|T047|PT|G40.309|ICD10CM|Generalized idiopathic epilepsy and epileptic syndromes, not intractable, without status epilepticus|Generalized idiopathic epilepsy and epileptic syndromes, not intractable, without status epilepticus +C3536568|T047|HT|G40.31|ICD10CM|Generalized idiopathic epilepsy and epileptic syndromes, intractable|Generalized idiopathic epilepsy and epileptic syndromes, intractable +C3536568|T047|AB|G40.31|ICD10CM|Generalized idiopathic epilepsy, intractable|Generalized idiopathic epilepsy, intractable +C2875108|T047|PT|G40.311|ICD10CM|Generalized idiopathic epilepsy and epileptic syndromes, intractable, with status epilepticus|Generalized idiopathic epilepsy and epileptic syndromes, intractable, with status epilepticus +C2875108|T047|AB|G40.311|ICD10CM|Generalized idiopathic epilepsy, intractable, w stat epi|Generalized idiopathic epilepsy, intractable, w stat epi +C2875109|T047|PT|G40.319|ICD10CM|Generalized idiopathic epilepsy and epileptic syndromes, intractable, without status epilepticus|Generalized idiopathic epilepsy and epileptic syndromes, intractable, without status epilepticus +C2875109|T047|AB|G40.319|ICD10CM|Generalized idiopathic epilepsy, intractable, w/o stat epi|Generalized idiopathic epilepsy, intractable, w/o stat epi +C0393697|T047|ET|G40.4|ICD10CM|Epilepsy with grand mal seizures on awakening|Epilepsy with grand mal seizures on awakening +C0393703|T047|ET|G40.4|ICD10CM|Epilepsy with myoclonic absences|Epilepsy with myoclonic absences +C0393702|T047|ET|G40.4|ICD10CM|Epilepsy with myoclonic-astatic seizures|Epilepsy with myoclonic-astatic seizures +C0494475|T047|ET|G40.4|ICD10CM|Grand mal seizure NOS|Grand mal seizure NOS +C3263963|T047|ET|G40.4|ICD10CM|Nonspecific atonic epileptic seizures|Nonspecific atonic epileptic seizures +C3263964|T047|ET|G40.4|ICD10CM|Nonspecific clonic epileptic seizures|Nonspecific clonic epileptic seizures +C3263965|T047|ET|G40.4|ICD10CM|Nonspecific myoclonic epileptic seizures|Nonspecific myoclonic epileptic seizures +C3263966|T047|ET|G40.4|ICD10CM|Nonspecific tonic epileptic seizures|Nonspecific tonic epileptic seizures +C3263967|T047|ET|G40.4|ICD10CM|Nonspecific tonic-clonic epileptic seizures|Nonspecific tonic-clonic epileptic seizures +C0477370|T047|PT|G40.4|ICD10|Other generalized epilepsy and epileptic syndromes|Other generalized epilepsy and epileptic syndromes +C0477370|T047|HT|G40.4|ICD10CM|Other generalized epilepsy and epileptic syndromes|Other generalized epilepsy and epileptic syndromes +C0477370|T047|AB|G40.4|ICD10CM|Other generalized epilepsy and epileptic syndromes|Other generalized epilepsy and epileptic syndromes +C0270855|T047|ET|G40.4|ICD10CM|Symptomatic early myoclonic encephalopathy|Symptomatic early myoclonic encephalopathy +C2875111|T047|AB|G40.40|ICD10CM|Oth generalized epilepsy, not intractable|Oth generalized epilepsy, not intractable +C0477370|T047|ET|G40.40|ICD10CM|Other generalized epilepsy and epileptic syndromes NOS|Other generalized epilepsy and epileptic syndromes NOS +C2875110|T047|ET|G40.40|ICD10CM|Other generalized epilepsy and epileptic syndromes without intractability|Other generalized epilepsy and epileptic syndromes without intractability +C2875111|T047|HT|G40.40|ICD10CM|Other generalized epilepsy and epileptic syndromes, not intractable|Other generalized epilepsy and epileptic syndromes, not intractable +C2875112|T047|AB|G40.401|ICD10CM|Oth generalized epilepsy, not intractable, w stat epi|Oth generalized epilepsy, not intractable, w stat epi +C2875112|T047|PT|G40.401|ICD10CM|Other generalized epilepsy and epileptic syndromes, not intractable, with status epilepticus|Other generalized epilepsy and epileptic syndromes, not intractable, with status epilepticus +C2875113|T047|AB|G40.409|ICD10CM|Oth generalized epilepsy, not intractable, w/o stat epi|Oth generalized epilepsy, not intractable, w/o stat epi +C2875113|T047|PT|G40.409|ICD10CM|Other generalized epilepsy and epileptic syndromes, not intractable, without status epilepticus|Other generalized epilepsy and epileptic syndromes, not intractable, without status epilepticus +C2875114|T047|AB|G40.41|ICD10CM|Oth generalized epilepsy, intractable|Oth generalized epilepsy, intractable +C2875114|T047|HT|G40.41|ICD10CM|Other generalized epilepsy and epileptic syndromes, intractable|Other generalized epilepsy and epileptic syndromes, intractable +C2875115|T047|AB|G40.411|ICD10CM|Oth generalized epilepsy, intractable, w status epilepticus|Oth generalized epilepsy, intractable, w status epilepticus +C2875115|T047|PT|G40.411|ICD10CM|Other generalized epilepsy and epileptic syndromes, intractable, with status epilepticus|Other generalized epilepsy and epileptic syndromes, intractable, with status epilepticus +C2875116|T047|AB|G40.419|ICD10CM|Oth generalized epilepsy, intractable, w/o stat epi|Oth generalized epilepsy, intractable, w/o stat epi +C2875116|T047|PT|G40.419|ICD10CM|Other generalized epilepsy and epileptic syndromes, intractable, without status epilepticus|Other generalized epilepsy and epileptic syndromes, intractable, without status epilepticus +C2875118|T047|ET|G40.5|ICD10CM|Epileptic seizures related to alcohol|Epileptic seizures related to alcohol +C2875119|T047|ET|G40.5|ICD10CM|Epileptic seizures related to drugs|Epileptic seizures related to drugs +C3263970|T047|AB|G40.5|ICD10CM|Epileptic seizures related to external causes|Epileptic seizures related to external causes +C3263970|T047|HT|G40.5|ICD10CM|Epileptic seizures related to external causes|Epileptic seizures related to external causes +C2875120|T046|ET|G40.5|ICD10CM|Epileptic seizures related to hormonal changes|Epileptic seizures related to hormonal changes +C2875121|T047|ET|G40.5|ICD10CM|Epileptic seizures related to sleep deprivation|Epileptic seizures related to sleep deprivation +C2875122|T047|ET|G40.5|ICD10CM|Epileptic seizures related to stress|Epileptic seizures related to stress +C0494474|T047|PT|G40.5|ICD10|Special epileptic syndromes|Special epileptic syndromes +C3263968|T047|HT|G40.50|ICD10CM|Epileptic seizures related to external causes, not intractable|Epileptic seizures related to external causes, not intractable +C3263968|T047|AB|G40.50|ICD10CM|Epileptic seizures related to external causes, not ntrct|Epileptic seizures related to external causes, not ntrct +C3263969|T047|AB|G40.501|ICD10CM|Epileptic seiz rel to extrn causes, not ntrct, w stat epi|Epileptic seiz rel to extrn causes, not ntrct, w stat epi +C3263969|T047|PT|G40.501|ICD10CM|Epileptic seizures related to external causes, not intractable, with status epilepticus|Epileptic seizures related to external causes, not intractable, with status epilepticus +C3263971|T047|AB|G40.509|ICD10CM|Epileptic seiz rel to extrn causes, not ntrct, w/o stat epi|Epileptic seiz rel to extrn causes, not ntrct, w/o stat epi +C3263970|T047|ET|G40.509|ICD10CM|Epileptic seizures related to external causes, NOS|Epileptic seizures related to external causes, NOS +C3263971|T047|PT|G40.509|ICD10CM|Epileptic seizures related to external causes, not intractable, without status epilepticus|Epileptic seizures related to external causes, not intractable, without status epilepticus +C0494475|T047|PT|G40.6|ICD10|Grand mal seizures, unspecified (with or without petit mal)|Grand mal seizures, unspecified (with or without petit mal) +C0014553|T047|PT|G40.7|ICD10|Petit mal, unspecified, without grand mal seizures|Petit mal, unspecified, without grand mal seizures +C2875129|T047|ET|G40.8|ICD10CM|Epilepsies and epileptic syndromes undetermined as to whether they are focal or generalized|Epilepsies and epileptic syndromes undetermined as to whether they are focal or generalized +C0282512|T048|ET|G40.8|ICD10CM|Landau-Kleffner syndrome|Landau-Kleffner syndrome +C0477371|T047|PT|G40.8|ICD10|Other epilepsy|Other epilepsy +C3263972|T047|AB|G40.8|ICD10CM|Other epilepsy and recurrent seizures|Other epilepsy and recurrent seizures +C3263972|T047|HT|G40.8|ICD10CM|Other epilepsy and recurrent seizures|Other epilepsy and recurrent seizures +C0477371|T047|HT|G40.80|ICD10CM|Other epilepsy|Other epilepsy +C0477371|T047|AB|G40.80|ICD10CM|Other epilepsy|Other epilepsy +C3263973|T047|ET|G40.801|ICD10CM|Other epilepsy without intractability with status epilepticus|Other epilepsy without intractability with status epilepticus +C2875132|T047|AB|G40.801|ICD10CM|Other epilepsy, not intractable, with status epilepticus|Other epilepsy, not intractable, with status epilepticus +C2875132|T047|PT|G40.801|ICD10CM|Other epilepsy, not intractable, with status epilepticus|Other epilepsy, not intractable, with status epilepticus +C0477371|T047|ET|G40.802|ICD10CM|Other epilepsy NOS|Other epilepsy NOS +C3263974|T047|ET|G40.802|ICD10CM|Other epilepsy without intractability without status epilepticus|Other epilepsy without intractability without status epilepticus +C3263975|T047|AB|G40.802|ICD10CM|Other epilepsy, not intractable, without status epilepticus|Other epilepsy, not intractable, without status epilepticus +C3263975|T047|PT|G40.802|ICD10CM|Other epilepsy, not intractable, without status epilepticus|Other epilepsy, not intractable, without status epilepticus +C3263976|T047|AB|G40.803|ICD10CM|Other epilepsy, intractable, with status epilepticus|Other epilepsy, intractable, with status epilepticus +C3263976|T047|PT|G40.803|ICD10CM|Other epilepsy, intractable, with status epilepticus|Other epilepsy, intractable, with status epilepticus +C3263977|T047|AB|G40.804|ICD10CM|Other epilepsy, intractable, without status epilepticus|Other epilepsy, intractable, without status epilepticus +C3263977|T047|PT|G40.804|ICD10CM|Other epilepsy, intractable, without status epilepticus|Other epilepsy, intractable, without status epilepticus +C0238111|T047|HT|G40.81|ICD10CM|Lennox-Gastaut syndrome|Lennox-Gastaut syndrome +C0238111|T047|AB|G40.81|ICD10CM|Lennox-Gastaut syndrome|Lennox-Gastaut syndrome +C3263978|T047|AB|G40.811|ICD10CM|Lennox-Gastaut syndrome, not intractable, w stat epi|Lennox-Gastaut syndrome, not intractable, w stat epi +C3263978|T047|PT|G40.811|ICD10CM|Lennox-Gastaut syndrome, not intractable, with status epilepticus|Lennox-Gastaut syndrome, not intractable, with status epilepticus +C3263979|T047|AB|G40.812|ICD10CM|Lennox-Gastaut syndrome, not intractable, w/o stat epi|Lennox-Gastaut syndrome, not intractable, w/o stat epi +C3263979|T047|PT|G40.812|ICD10CM|Lennox-Gastaut syndrome, not intractable, without status epilepticus|Lennox-Gastaut syndrome, not intractable, without status epilepticus +C3263980|T047|AB|G40.813|ICD10CM|Lennox-Gastaut syndrome, intractable, w status epilepticus|Lennox-Gastaut syndrome, intractable, w status epilepticus +C3263980|T047|PT|G40.813|ICD10CM|Lennox-Gastaut syndrome, intractable, with status epilepticus|Lennox-Gastaut syndrome, intractable, with status epilepticus +C3263981|T047|AB|G40.814|ICD10CM|Lennox-Gastaut syndrome, intractable, w/o status epilepticus|Lennox-Gastaut syndrome, intractable, w/o status epilepticus +C3263981|T047|PT|G40.814|ICD10CM|Lennox-Gastaut syndrome, intractable, without status epilepticus|Lennox-Gastaut syndrome, intractable, without status epilepticus +C1527366|T047|HT|G40.82|ICD10CM|Epileptic spasms|Epileptic spasms +C1527366|T047|AB|G40.82|ICD10CM|Epileptic spasms|Epileptic spasms +C0037769|T047|ET|G40.82|ICD10CM|Infantile spasms|Infantile spasms +C1527366|T047|ET|G40.82|ICD10CM|Salaam attacks|Salaam attacks +C0037769|T047|ET|G40.82|ICD10CM|West's syndrome|West's syndrome +C3263983|T047|AB|G40.821|ICD10CM|Epileptic spasms, not intractable, with status epilepticus|Epileptic spasms, not intractable, with status epilepticus +C3263983|T047|PT|G40.821|ICD10CM|Epileptic spasms, not intractable, with status epilepticus|Epileptic spasms, not intractable, with status epilepticus +C3263984|T047|AB|G40.822|ICD10CM|Epileptic spasms, not intractable, w/o status epilepticus|Epileptic spasms, not intractable, w/o status epilepticus +C3263984|T047|PT|G40.822|ICD10CM|Epileptic spasms, not intractable, without status epilepticus|Epileptic spasms, not intractable, without status epilepticus +C3263985|T047|AB|G40.823|ICD10CM|Epileptic spasms, intractable, with status epilepticus|Epileptic spasms, intractable, with status epilepticus +C3263985|T047|PT|G40.823|ICD10CM|Epileptic spasms, intractable, with status epilepticus|Epileptic spasms, intractable, with status epilepticus +C3263986|T047|AB|G40.824|ICD10CM|Epileptic spasms, intractable, without status epilepticus|Epileptic spasms, intractable, without status epilepticus +C3263986|T047|PT|G40.824|ICD10CM|Epileptic spasms, intractable, without status epilepticus|Epileptic spasms, intractable, without status epilepticus +C2875137|T047|AB|G40.89|ICD10CM|Other seizures|Other seizures +C2875137|T047|PT|G40.89|ICD10CM|Other seizures|Other seizures +C0014544|T047|HT|G40.9|ICD10CM|Epilepsy, unspecified|Epilepsy, unspecified +C0014544|T047|AB|G40.9|ICD10CM|Epilepsy, unspecified|Epilepsy, unspecified +C0014544|T047|PT|G40.9|ICD10|Epilepsy, unspecified|Epilepsy, unspecified +C2875138|T047|AB|G40.90|ICD10CM|Epilepsy, unspecified, not intractable|Epilepsy, unspecified, not intractable +C2875138|T047|HT|G40.90|ICD10CM|Epilepsy, unspecified, not intractable|Epilepsy, unspecified, not intractable +C2976876|T047|ET|G40.90|ICD10CM|Epilepsy, unspecified, without intractability|Epilepsy, unspecified, without intractability +C2875139|T047|AB|G40.901|ICD10CM|Epilepsy, unsp, not intractable, with status epilepticus|Epilepsy, unsp, not intractable, with status epilepticus +C2875139|T047|PT|G40.901|ICD10CM|Epilepsy, unspecified, not intractable, with status epilepticus|Epilepsy, unspecified, not intractable, with status epilepticus +C0014544|T047|ET|G40.909|ICD10CM|Epilepsy NOS|Epilepsy NOS +C2875140|T047|AB|G40.909|ICD10CM|Epilepsy, unsp, not intractable, without status epilepticus|Epilepsy, unsp, not intractable, without status epilepticus +C2875140|T047|PT|G40.909|ICD10CM|Epilepsy, unspecified, not intractable, without status epilepticus|Epilepsy, unspecified, not intractable, without status epilepticus +C0014544|T047|ET|G40.909|ICD10CM|Epileptic convulsions NOS|Epileptic convulsions NOS +C0014544|T047|ET|G40.909|ICD10CM|Epileptic fits NOS|Epileptic fits NOS +C0014544|T047|ET|G40.909|ICD10CM|Epileptic seizures NOS|Epileptic seizures NOS +C0748607|T047|ET|G40.909|ICD10CM|Recurrent seizures NOS|Recurrent seizures NOS +C0014544|T047|ET|G40.909|ICD10CM|Seizure disorder NOS|Seizure disorder NOS +C2875141|T047|AB|G40.91|ICD10CM|Epilepsy, unspecified, intractable|Epilepsy, unspecified, intractable +C2875141|T047|HT|G40.91|ICD10CM|Epilepsy, unspecified, intractable|Epilepsy, unspecified, intractable +C2976877|T047|ET|G40.91|ICD10CM|Intractable seizure disorder NOS|Intractable seizure disorder NOS +C2875142|T047|AB|G40.911|ICD10CM|Epilepsy, unspecified, intractable, with status epilepticus|Epilepsy, unspecified, intractable, with status epilepticus +C2875142|T047|PT|G40.911|ICD10CM|Epilepsy, unspecified, intractable, with status epilepticus|Epilepsy, unspecified, intractable, with status epilepticus +C2875143|T047|AB|G40.919|ICD10CM|Epilepsy, unsp, intractable, without status epilepticus|Epilepsy, unsp, intractable, without status epilepticus +C2875143|T047|PT|G40.919|ICD10CM|Epilepsy, unspecified, intractable, without status epilepticus|Epilepsy, unspecified, intractable, without status epilepticus +C3263989|T047|AB|G40.A|ICD10CM|Absence epileptic syndrome|Absence epileptic syndrome +C3263989|T047|HT|G40.A|ICD10CM|Absence epileptic syndrome|Absence epileptic syndrome +C3263987|T047|ET|G40.A|ICD10CM|Absence epileptic syndrome, NOS|Absence epileptic syndrome, NOS +C3263988|T047|ET|G40.A|ICD10CM|Childhood absence epilepsy [pyknolepsy]|Childhood absence epilepsy [pyknolepsy] +C4317339|T047|ET|G40.A|ICD10CM|Juvenile absence epilepsy|Juvenile absence epilepsy +C3263990|T047|AB|G40.A0|ICD10CM|Absence epileptic syndrome, not intractable|Absence epileptic syndrome, not intractable +C3263990|T047|HT|G40.A0|ICD10CM|Absence epileptic syndrome, not intractable|Absence epileptic syndrome, not intractable +C3263991|T047|AB|G40.A01|ICD10CM|Absence epileptic syndrome, not intractable, w stat epi|Absence epileptic syndrome, not intractable, w stat epi +C3263991|T047|PT|G40.A01|ICD10CM|Absence epileptic syndrome, not intractable, with status epilepticus|Absence epileptic syndrome, not intractable, with status epilepticus +C3263992|T047|AB|G40.A09|ICD10CM|Absence epileptic syndrome, not intractable, w/o stat epi|Absence epileptic syndrome, not intractable, w/o stat epi +C3263992|T047|PT|G40.A09|ICD10CM|Absence epileptic syndrome, not intractable, without status epilepticus|Absence epileptic syndrome, not intractable, without status epilepticus +C3263993|T047|AB|G40.A1|ICD10CM|Absence epileptic syndrome, intractable|Absence epileptic syndrome, intractable +C3263993|T047|HT|G40.A1|ICD10CM|Absence epileptic syndrome, intractable|Absence epileptic syndrome, intractable +C3263994|T047|AB|G40.A11|ICD10CM|Absence epileptic syndrome, intractable, w stat epi|Absence epileptic syndrome, intractable, w stat epi +C3263994|T047|PT|G40.A11|ICD10CM|Absence epileptic syndrome, intractable, with status epilepticus|Absence epileptic syndrome, intractable, with status epilepticus +C3263995|T047|AB|G40.A19|ICD10CM|Absence epileptic syndrome, intractable, w/o stat epi|Absence epileptic syndrome, intractable, w/o stat epi +C3263995|T047|PT|G40.A19|ICD10CM|Absence epileptic syndrome, intractable, without status epilepticus|Absence epileptic syndrome, intractable, without status epilepticus +C3263996|T047|AB|G40.B|ICD10CM|Juvenile myoclonic epilepsy [impulsive petit mal]|Juvenile myoclonic epilepsy [impulsive petit mal] +C3263996|T047|HT|G40.B|ICD10CM|Juvenile myoclonic epilepsy [impulsive petit mal]|Juvenile myoclonic epilepsy [impulsive petit mal] +C3263997|T047|AB|G40.B0|ICD10CM|Juvenile myoclonic epilepsy, not intractable|Juvenile myoclonic epilepsy, not intractable +C3263997|T047|HT|G40.B0|ICD10CM|Juvenile myoclonic epilepsy, not intractable|Juvenile myoclonic epilepsy, not intractable +C3263998|T047|AB|G40.B01|ICD10CM|Juvenile myoclonic epilepsy, not intractable, w stat epi|Juvenile myoclonic epilepsy, not intractable, w stat epi +C3263998|T047|PT|G40.B01|ICD10CM|Juvenile myoclonic epilepsy, not intractable, with status epilepticus|Juvenile myoclonic epilepsy, not intractable, with status epilepticus +C3263999|T047|AB|G40.B09|ICD10CM|Juvenile myoclonic epilepsy, not intractable, w/o stat epi|Juvenile myoclonic epilepsy, not intractable, w/o stat epi +C3263999|T047|PT|G40.B09|ICD10CM|Juvenile myoclonic epilepsy, not intractable, without status epilepticus|Juvenile myoclonic epilepsy, not intractable, without status epilepticus +C3264000|T047|AB|G40.B1|ICD10CM|Juvenile myoclonic epilepsy, intractable|Juvenile myoclonic epilepsy, intractable +C3264000|T047|HT|G40.B1|ICD10CM|Juvenile myoclonic epilepsy, intractable|Juvenile myoclonic epilepsy, intractable +C3264001|T047|AB|G40.B11|ICD10CM|Juvenile myoclonic epilepsy, intractable, w stat epi|Juvenile myoclonic epilepsy, intractable, w stat epi +C3264001|T047|PT|G40.B11|ICD10CM|Juvenile myoclonic epilepsy, intractable, with status epilepticus|Juvenile myoclonic epilepsy, intractable, with status epilepticus +C3264002|T047|AB|G40.B19|ICD10CM|Juvenile myoclonic epilepsy, intractable, w/o stat epi|Juvenile myoclonic epilepsy, intractable, w/o stat epi +C3264002|T047|PT|G40.B19|ICD10CM|Juvenile myoclonic epilepsy, intractable, without status epilepticus|Juvenile myoclonic epilepsy, intractable, without status epilepticus +C0038220|T047|HT|G41|ICD10|Status epilepticus|Status epilepticus +C0311335|T047|PT|G41.0|ICD10|Grand mal status epilepticus|Grand mal status epilepticus +C0270823|T047|PT|G41.1|ICD10|Petit mal status epilepticus|Petit mal status epilepticus +C0393734|T047|PT|G41.2|ICD10|Complex partial status epilepticus|Complex partial status epilepticus +C0477372|T047|PT|G41.8|ICD10|Other status epilepticus|Other status epilepticus +C0038220|T047|PT|G41.9|ICD10|Status epilepticus, unspecified|Status epilepticus, unspecified +C0149931|T047|HT|G43|ICD10|Migraine|Migraine +C0149931|T047|HT|G43|ICD10CM|Migraine|Migraine +C0149931|T047|AB|G43|ICD10CM|Migraine|Migraine +C0338480|T047|ET|G43.0|ICD10CM|Common migraine|Common migraine +C0338480|T047|HT|G43.0|ICD10CM|Migraine without aura|Migraine without aura +C0338480|T047|AB|G43.0|ICD10CM|Migraine without aura|Migraine without aura +C0338480|T047|PT|G43.0|ICD10|Migraine without aura [common migraine]|Migraine without aura [common migraine] +C3264003|T047|ET|G43.00|ICD10CM|Migraine without aura without mention of refractory migraine|Migraine without aura without mention of refractory migraine +C2875144|T047|AB|G43.00|ICD10CM|Migraine without aura, not intractable|Migraine without aura, not intractable +C2875144|T047|HT|G43.00|ICD10CM|Migraine without aura, not intractable|Migraine without aura, not intractable +C2875145|T047|AB|G43.001|ICD10CM|Migraine w/o aura, not intractable, with status migrainosus|Migraine w/o aura, not intractable, with status migrainosus +C2875145|T047|PT|G43.001|ICD10CM|Migraine without aura, not intractable, with status migrainosus|Migraine without aura, not intractable, with status migrainosus +C2875146|T047|AB|G43.009|ICD10CM|Migraine w/o aura, not intractable, w/o status migrainosus|Migraine w/o aura, not intractable, w/o status migrainosus +C0338480|T047|ET|G43.009|ICD10CM|Migraine without aura NOS|Migraine without aura NOS +C2875146|T047|PT|G43.009|ICD10CM|Migraine without aura, not intractable, without status migrainosus|Migraine without aura, not intractable, without status migrainosus +C3264004|T047|ET|G43.01|ICD10CM|Migraine without aura with refractory migraine|Migraine without aura with refractory migraine +C1827624|T047|AB|G43.01|ICD10CM|Migraine without aura, intractable|Migraine without aura, intractable +C1827624|T047|HT|G43.01|ICD10CM|Migraine without aura, intractable|Migraine without aura, intractable +C2875147|T047|AB|G43.011|ICD10CM|Migraine without aura, intractable, with status migrainosus|Migraine without aura, intractable, with status migrainosus +C2875147|T047|PT|G43.011|ICD10CM|Migraine without aura, intractable, with status migrainosus|Migraine without aura, intractable, with status migrainosus +C2875148|T047|AB|G43.019|ICD10CM|Migraine w/o aura, intractable, without status migrainosus|Migraine w/o aura, intractable, without status migrainosus +C2875148|T047|PT|G43.019|ICD10CM|Migraine without aura, intractable, without status migrainosus|Migraine without aura, intractable, without status migrainosus +C0270860|T047|ET|G43.1|ICD10CM|Basilar migraine|Basilar migraine +C1735856|T047|ET|G43.1|ICD10CM|Classical migraine|Classical migraine +C0262555|T047|ET|G43.1|ICD10CM|Migraine equivalents|Migraine equivalents +C0154723|T047|ET|G43.1|ICD10CM|Migraine preceded or accompanied by transient focal neurological phenomena|Migraine preceded or accompanied by transient focal neurological phenomena +C2349436|T047|ET|G43.1|ICD10CM|Migraine triggered seizures|Migraine triggered seizures +C0751904|T047|ET|G43.1|ICD10CM|Migraine with acute-onset aura|Migraine with acute-onset aura +C0154723|T047|HT|G43.1|ICD10CM|Migraine with aura|Migraine with aura +C0154723|T047|AB|G43.1|ICD10CM|Migraine with aura|Migraine with aura +C1735856|T047|PT|G43.1|ICD10|Migraine with aura [classical migraine]|Migraine with aura [classical migraine] +C2349437|T046|ET|G43.1|ICD10CM|Migraine with aura without headache (migraine equivalents)|Migraine with aura without headache (migraine equivalents) +C0338483|T047|ET|G43.1|ICD10CM|Migraine with prolonged aura|Migraine with prolonged aura +C1735856|T047|ET|G43.1|ICD10CM|Migraine with typical aura|Migraine with typical aura +C0270861|T047|ET|G43.1|ICD10CM|Retinal migraine|Retinal migraine +C3264005|T047|ET|G43.10|ICD10CM|Migraine with aura without mention of refractory migraine|Migraine with aura without mention of refractory migraine +C2875149|T047|AB|G43.10|ICD10CM|Migraine with aura, not intractable|Migraine with aura, not intractable +C2875149|T047|HT|G43.10|ICD10CM|Migraine with aura, not intractable|Migraine with aura, not intractable +C2875150|T047|AB|G43.101|ICD10CM|Migraine with aura, not intractable, with status migrainosus|Migraine with aura, not intractable, with status migrainosus +C2875150|T047|PT|G43.101|ICD10CM|Migraine with aura, not intractable, with status migrainosus|Migraine with aura, not intractable, with status migrainosus +C0154723|T047|ET|G43.109|ICD10CM|Migraine with aura NOS|Migraine with aura NOS +C2875151|T047|AB|G43.109|ICD10CM|Migraine with aura, not intractable, w/o status migrainosus|Migraine with aura, not intractable, w/o status migrainosus +C2875151|T047|PT|G43.109|ICD10CM|Migraine with aura, not intractable, without status migrainosus|Migraine with aura, not intractable, without status migrainosus +C3264006|T047|ET|G43.11|ICD10CM|Migraine with aura with refractory migraine|Migraine with aura with refractory migraine +C1827052|T047|AB|G43.11|ICD10CM|Migraine with aura, intractable|Migraine with aura, intractable +C1827052|T047|HT|G43.11|ICD10CM|Migraine with aura, intractable|Migraine with aura, intractable +C2349435|T047|AB|G43.111|ICD10CM|Migraine with aura, intractable, with status migrainosus|Migraine with aura, intractable, with status migrainosus +C2349435|T047|PT|G43.111|ICD10CM|Migraine with aura, intractable, with status migrainosus|Migraine with aura, intractable, with status migrainosus +C2349433|T047|AB|G43.119|ICD10CM|Migraine with aura, intractable, without status migrainosus|Migraine with aura, intractable, without status migrainosus +C2349433|T047|PT|G43.119|ICD10CM|Migraine with aura, intractable, without status migrainosus|Migraine with aura, intractable, without status migrainosus +C0338489|T047|PT|G43.2|ICD10|Status migrainosus|Status migrainosus +C0338483|T047|PT|G43.3|ICD10|Complicated migraine|Complicated migraine +C2349453|T047|ET|G43.4|ICD10CM|Familial migraine|Familial migraine +C0270862|T047|HT|G43.4|ICD10CM|Hemiplegic migraine|Hemiplegic migraine +C0270862|T047|AB|G43.4|ICD10CM|Hemiplegic migraine|Hemiplegic migraine +C2349454|T047|ET|G43.4|ICD10CM|Sporadic migraine|Sporadic migraine +C3264007|T047|ET|G43.40|ICD10CM|Hemiplegic migraine without refractory migraine|Hemiplegic migraine without refractory migraine +C2875154|T047|AB|G43.40|ICD10CM|Hemiplegic migraine, not intractable|Hemiplegic migraine, not intractable +C2875154|T047|HT|G43.40|ICD10CM|Hemiplegic migraine, not intractable|Hemiplegic migraine, not intractable +C2875155|T047|AB|G43.401|ICD10CM|Hemiplegic migraine, not intractable, w status migrainosus|Hemiplegic migraine, not intractable, w status migrainosus +C2875155|T047|PT|G43.401|ICD10CM|Hemiplegic migraine, not intractable, with status migrainosus|Hemiplegic migraine, not intractable, with status migrainosus +C0270862|T047|ET|G43.409|ICD10CM|Hemiplegic migraine NOS|Hemiplegic migraine NOS +C2875156|T047|AB|G43.409|ICD10CM|Hemiplegic migraine, not intractable, w/o status migrainosus|Hemiplegic migraine, not intractable, w/o status migrainosus +C2875156|T047|PT|G43.409|ICD10CM|Hemiplegic migraine, not intractable, without status migrainosus|Hemiplegic migraine, not intractable, without status migrainosus +C3264008|T047|ET|G43.41|ICD10CM|Hemiplegic migraine with refractory migraine|Hemiplegic migraine with refractory migraine +C2875157|T047|AB|G43.41|ICD10CM|Hemiplegic migraine, intractable|Hemiplegic migraine, intractable +C2875157|T047|HT|G43.41|ICD10CM|Hemiplegic migraine, intractable|Hemiplegic migraine, intractable +C2875158|T047|AB|G43.411|ICD10CM|Hemiplegic migraine, intractable, with status migrainosus|Hemiplegic migraine, intractable, with status migrainosus +C2875158|T047|PT|G43.411|ICD10CM|Hemiplegic migraine, intractable, with status migrainosus|Hemiplegic migraine, intractable, with status migrainosus +C2875159|T047|AB|G43.419|ICD10CM|Hemiplegic migraine, intractable, without status migrainosus|Hemiplegic migraine, intractable, without status migrainosus +C2875159|T047|PT|G43.419|ICD10CM|Hemiplegic migraine, intractable, without status migrainosus|Hemiplegic migraine, intractable, without status migrainosus +C2349465|T046|AB|G43.5|ICD10CM|Persistent migraine aura without cerebral infarction|Persistent migraine aura without cerebral infarction +C2349465|T046|HT|G43.5|ICD10CM|Persistent migraine aura without cerebral infarction|Persistent migraine aura without cerebral infarction +C2875160|T047|AB|G43.50|ICD10CM|Persistent migraine aura w/o cerebral infarction, not ntrct|Persistent migraine aura w/o cerebral infarction, not ntrct +C2875160|T047|HT|G43.50|ICD10CM|Persistent migraine aura without cerebral infarction, not intractable|Persistent migraine aura without cerebral infarction, not intractable +C3264009|T047|ET|G43.50|ICD10CM|Persistent migraine aura without cerebral infarction, without refractory migraine|Persistent migraine aura without cerebral infarction, without refractory migraine +C2875161|T047|PT|G43.501|ICD10CM|Persistent migraine aura without cerebral infarction, not intractable, with status migrainosus|Persistent migraine aura without cerebral infarction, not intractable, with status migrainosus +C2875161|T047|AB|G43.501|ICD10CM|Perst migraine aura w/o cereb infrc, not ntrct, w stat migr|Perst migraine aura w/o cereb infrc, not ntrct, w stat migr +C2349465|T046|ET|G43.509|ICD10CM|Persistent migraine aura NOS|Persistent migraine aura NOS +C2875162|T047|PT|G43.509|ICD10CM|Persistent migraine aura without cerebral infarction, not intractable, without status migrainosus|Persistent migraine aura without cerebral infarction, not intractable, without status migrainosus +C2875162|T047|AB|G43.509|ICD10CM|Perst migrn aura w/o cereb infrc, not ntrct, w/o stat migr|Perst migrn aura w/o cereb infrc, not ntrct, w/o stat migr +C2875163|T047|AB|G43.51|ICD10CM|Persistent migraine aura w/o cerebral infarction, ntrct|Persistent migraine aura w/o cerebral infarction, ntrct +C2875163|T047|HT|G43.51|ICD10CM|Persistent migraine aura without cerebral infarction, intractable|Persistent migraine aura without cerebral infarction, intractable +C3264010|T047|ET|G43.51|ICD10CM|Persistent migraine aura without cerebral infarction, with refractory migraine|Persistent migraine aura without cerebral infarction, with refractory migraine +C2875164|T047|PT|G43.511|ICD10CM|Persistent migraine aura without cerebral infarction, intractable, with status migrainosus|Persistent migraine aura without cerebral infarction, intractable, with status migrainosus +C2875164|T047|AB|G43.511|ICD10CM|Perst migraine aura w/o cerebral infrc, ntrct, w stat migr|Perst migraine aura w/o cerebral infrc, ntrct, w stat migr +C2875165|T047|PT|G43.519|ICD10CM|Persistent migraine aura without cerebral infarction, intractable, without status migrainosus|Persistent migraine aura without cerebral infarction, intractable, without status migrainosus +C2875165|T047|AB|G43.519|ICD10CM|Perst migraine aura w/o cerebral infrc, ntrct, w/o stat migr|Perst migraine aura w/o cerebral infrc, ntrct, w/o stat migr +C2349471|T047|AB|G43.6|ICD10CM|Persistent migraine aura with cerebral infarction|Persistent migraine aura with cerebral infarction +C2349471|T047|HT|G43.6|ICD10CM|Persistent migraine aura with cerebral infarction|Persistent migraine aura with cerebral infarction +C2875166|T047|AB|G43.60|ICD10CM|Persistent migraine aura w cerebral infarction, not ntrct|Persistent migraine aura w cerebral infarction, not ntrct +C2875166|T047|HT|G43.60|ICD10CM|Persistent migraine aura with cerebral infarction, not intractable|Persistent migraine aura with cerebral infarction, not intractable +C3264011|T047|ET|G43.60|ICD10CM|Persistent migraine aura with cerebral infarction, without refractory migraine|Persistent migraine aura with cerebral infarction, without refractory migraine +C2875167|T047|PT|G43.601|ICD10CM|Persistent migraine aura with cerebral infarction, not intractable, with status migrainosus|Persistent migraine aura with cerebral infarction, not intractable, with status migrainosus +C2875167|T047|AB|G43.601|ICD10CM|Perst migraine aura w cerebral infrc, not ntrct, w stat migr|Perst migraine aura w cerebral infrc, not ntrct, w stat migr +C2875168|T047|PT|G43.609|ICD10CM|Persistent migraine aura with cerebral infarction, not intractable, without status migrainosus|Persistent migraine aura with cerebral infarction, not intractable, without status migrainosus +C2875168|T047|AB|G43.609|ICD10CM|Perst migraine aura w cereb infrc, not ntrct, w/o stat migr|Perst migraine aura w cereb infrc, not ntrct, w/o stat migr +C2875169|T047|AB|G43.61|ICD10CM|Persistent migraine aura w cerebral infarction, intractable|Persistent migraine aura w cerebral infarction, intractable +C2875169|T047|HT|G43.61|ICD10CM|Persistent migraine aura with cerebral infarction, intractable|Persistent migraine aura with cerebral infarction, intractable +C3264012|T047|ET|G43.61|ICD10CM|Persistent migraine aura with cerebral infarction, with refractory migraine|Persistent migraine aura with cerebral infarction, with refractory migraine +C2875170|T047|PT|G43.611|ICD10CM|Persistent migraine aura with cerebral infarction, intractable, with status migrainosus|Persistent migraine aura with cerebral infarction, intractable, with status migrainosus +C2875170|T047|AB|G43.611|ICD10CM|Perst migraine aura w cerebral infrc, ntrct, w stat migr|Perst migraine aura w cerebral infrc, ntrct, w stat migr +C2875171|T047|PT|G43.619|ICD10CM|Persistent migraine aura with cerebral infarction, intractable, without status migrainosus|Persistent migraine aura with cerebral infarction, intractable, without status migrainosus +C2875171|T047|AB|G43.619|ICD10CM|Perst migraine aura w cerebral infrc, ntrct, w/o stat migr|Perst migraine aura w cerebral infrc, ntrct, w/o stat migr +C2349476|T047|HT|G43.7|ICD10CM|Chronic migraine without aura|Chronic migraine without aura +C2349476|T047|AB|G43.7|ICD10CM|Chronic migraine without aura|Chronic migraine without aura +C1960870|T047|ET|G43.7|ICD10CM|Transformed migraine|Transformed migraine +C2875172|T047|AB|G43.70|ICD10CM|Chronic migraine without aura, not intractable|Chronic migraine without aura, not intractable +C2875172|T047|HT|G43.70|ICD10CM|Chronic migraine without aura, not intractable|Chronic migraine without aura, not intractable +C3264013|T047|ET|G43.70|ICD10CM|Chronic migraine without aura, without refractory migraine|Chronic migraine without aura, without refractory migraine +C2875173|T047|AB|G43.701|ICD10CM|Chronic migraine w/o aura, not intractable, w stat migr|Chronic migraine w/o aura, not intractable, w stat migr +C2875173|T047|PT|G43.701|ICD10CM|Chronic migraine without aura, not intractable, with status migrainosus|Chronic migraine without aura, not intractable, with status migrainosus +C2875174|T047|AB|G43.709|ICD10CM|Chronic migraine w/o aura, not intractable, w/o stat migr|Chronic migraine w/o aura, not intractable, w/o stat migr +C2349476|T047|ET|G43.709|ICD10CM|Chronic migraine without aura NOS|Chronic migraine without aura NOS +C2875174|T047|PT|G43.709|ICD10CM|Chronic migraine without aura, not intractable, without status migrainosus|Chronic migraine without aura, not intractable, without status migrainosus +C2875175|T047|AB|G43.71|ICD10CM|Chronic migraine without aura, intractable|Chronic migraine without aura, intractable +C2875175|T047|HT|G43.71|ICD10CM|Chronic migraine without aura, intractable|Chronic migraine without aura, intractable +C3264014|T047|ET|G43.71|ICD10CM|Chronic migraine without aura, with refractory migraine|Chronic migraine without aura, with refractory migraine +C2875176|T047|AB|G43.711|ICD10CM|Chronic migraine w/o aura, intractable, w status migrainosus|Chronic migraine w/o aura, intractable, w status migrainosus +C2875176|T047|PT|G43.711|ICD10CM|Chronic migraine without aura, intractable, with status migrainosus|Chronic migraine without aura, intractable, with status migrainosus +C2875177|T047|AB|G43.719|ICD10CM|Chronic migraine w/o aura, intractable, w/o stat migr|Chronic migraine w/o aura, intractable, w/o stat migr +C2875177|T047|PT|G43.719|ICD10CM|Chronic migraine without aura, intractable, without status migrainosus|Chronic migraine without aura, intractable, without status migrainosus +C0477373|T047|PT|G43.8|ICD10|Other migraine|Other migraine +C0477373|T047|HT|G43.8|ICD10CM|Other migraine|Other migraine +C0477373|T047|AB|G43.8|ICD10CM|Other migraine|Other migraine +C2875178|T047|AB|G43.80|ICD10CM|Other migraine, not intractable|Other migraine, not intractable +C2875178|T047|HT|G43.80|ICD10CM|Other migraine, not intractable|Other migraine, not intractable +C3264015|T047|ET|G43.80|ICD10CM|Other migraine, without refractory migraine|Other migraine, without refractory migraine +C2875179|T047|AB|G43.801|ICD10CM|Other migraine, not intractable, with status migrainosus|Other migraine, not intractable, with status migrainosus +C2875179|T047|PT|G43.801|ICD10CM|Other migraine, not intractable, with status migrainosus|Other migraine, not intractable, with status migrainosus +C2875180|T047|AB|G43.809|ICD10CM|Other migraine, not intractable, without status migrainosus|Other migraine, not intractable, without status migrainosus +C2875180|T047|PT|G43.809|ICD10CM|Other migraine, not intractable, without status migrainosus|Other migraine, not intractable, without status migrainosus +C2875181|T047|AB|G43.81|ICD10CM|Other migraine, intractable|Other migraine, intractable +C2875181|T047|HT|G43.81|ICD10CM|Other migraine, intractable|Other migraine, intractable +C3264016|T047|ET|G43.81|ICD10CM|Other migraine, with refractory migraine|Other migraine, with refractory migraine +C2875182|T047|AB|G43.811|ICD10CM|Other migraine, intractable, with status migrainosus|Other migraine, intractable, with status migrainosus +C2875182|T047|PT|G43.811|ICD10CM|Other migraine, intractable, with status migrainosus|Other migraine, intractable, with status migrainosus +C2875183|T047|AB|G43.819|ICD10CM|Other migraine, intractable, without status migrainosus|Other migraine, intractable, without status migrainosus +C2875183|T047|PT|G43.819|ICD10CM|Other migraine, intractable, without status migrainosus|Other migraine, intractable, without status migrainosus +C3264017|T047|ET|G43.82|ICD10CM|Menstrual headache, not intractable|Menstrual headache, not intractable +C3264023|T047|AB|G43.82|ICD10CM|Menstrual migraine, not intractable|Menstrual migraine, not intractable +C3264023|T047|HT|G43.82|ICD10CM|Menstrual migraine, not intractable|Menstrual migraine, not intractable +C3264018|T047|ET|G43.82|ICD10CM|Menstrual migraine, without refractory migraine|Menstrual migraine, without refractory migraine +C3264019|T047|ET|G43.82|ICD10CM|Menstrually related migraine, not intractable|Menstrually related migraine, not intractable +C3264020|T047|ET|G43.82|ICD10CM|Pre-menstrual headache, not intractable|Pre-menstrual headache, not intractable +C3264021|T047|ET|G43.82|ICD10CM|Pre-menstrual migraine, not intractable|Pre-menstrual migraine, not intractable +C3264022|T047|ET|G43.82|ICD10CM|Pure menstrual migraine, not intractable|Pure menstrual migraine, not intractable +C3264024|T047|AB|G43.821|ICD10CM|Menstrual migraine, not intractable, with status migrainosus|Menstrual migraine, not intractable, with status migrainosus +C3264024|T047|PT|G43.821|ICD10CM|Menstrual migraine, not intractable, with status migrainosus|Menstrual migraine, not intractable, with status migrainosus +C0269226|T046|ET|G43.829|ICD10CM|Menstrual migraine NOS|Menstrual migraine NOS +C3264025|T047|AB|G43.829|ICD10CM|Menstrual migraine, not intractable, w/o status migrainosus|Menstrual migraine, not intractable, w/o status migrainosus +C3264025|T047|PT|G43.829|ICD10CM|Menstrual migraine, not intractable, without status migrainosus|Menstrual migraine, not intractable, without status migrainosus +C3264026|T047|ET|G43.83|ICD10CM|Menstrual headache, intractable|Menstrual headache, intractable +C3264032|T047|AB|G43.83|ICD10CM|Menstrual migraine, intractable|Menstrual migraine, intractable +C3264032|T047|HT|G43.83|ICD10CM|Menstrual migraine, intractable|Menstrual migraine, intractable +C3264027|T047|ET|G43.83|ICD10CM|Menstrual migraine, with refractory migraine|Menstrual migraine, with refractory migraine +C3264028|T047|ET|G43.83|ICD10CM|Menstrually related migraine, intractable|Menstrually related migraine, intractable +C3264029|T047|ET|G43.83|ICD10CM|Pre-menstrual headache, intractable|Pre-menstrual headache, intractable +C3264030|T047|ET|G43.83|ICD10CM|Pre-menstrual migraine, intractable|Pre-menstrual migraine, intractable +C3264031|T047|ET|G43.83|ICD10CM|Pure menstrual migraine, intractable|Pure menstrual migraine, intractable +C3264033|T047|AB|G43.831|ICD10CM|Menstrual migraine, intractable, with status migrainosus|Menstrual migraine, intractable, with status migrainosus +C3264033|T047|PT|G43.831|ICD10CM|Menstrual migraine, intractable, with status migrainosus|Menstrual migraine, intractable, with status migrainosus +C3264034|T047|AB|G43.839|ICD10CM|Menstrual migraine, intractable, without status migrainosus|Menstrual migraine, intractable, without status migrainosus +C3264034|T047|PT|G43.839|ICD10CM|Menstrual migraine, intractable, without status migrainosus|Menstrual migraine, intractable, without status migrainosus +C0149931|T047|HT|G43.9|ICD10CM|Migraine, unspecified|Migraine, unspecified +C0149931|T047|AB|G43.9|ICD10CM|Migraine, unspecified|Migraine, unspecified +C0149931|T047|PT|G43.9|ICD10|Migraine, unspecified|Migraine, unspecified +C2875184|T047|AB|G43.90|ICD10CM|Migraine, unspecified, not intractable|Migraine, unspecified, not intractable +C2875184|T047|HT|G43.90|ICD10CM|Migraine, unspecified, not intractable|Migraine, unspecified, not intractable +C3264035|T047|ET|G43.90|ICD10CM|Migraine, unspecified, without refractory migraine|Migraine, unspecified, without refractory migraine +C2875185|T047|AB|G43.901|ICD10CM|Migraine, unsp, not intractable, with status migrainosus|Migraine, unsp, not intractable, with status migrainosus +C2875185|T047|PT|G43.901|ICD10CM|Migraine, unspecified, not intractable, with status migrainosus|Migraine, unspecified, not intractable, with status migrainosus +C0338489|T047|ET|G43.901|ICD10CM|Status migrainosus NOS|Status migrainosus NOS +C0149931|T047|ET|G43.909|ICD10CM|Migraine NOS|Migraine NOS +C2875186|T047|AB|G43.909|ICD10CM|Migraine, unsp, not intractable, without status migrainosus|Migraine, unsp, not intractable, without status migrainosus +C2875186|T047|PT|G43.909|ICD10CM|Migraine, unspecified, not intractable, without status migrainosus|Migraine, unspecified, not intractable, without status migrainosus +C2875187|T047|AB|G43.91|ICD10CM|Migraine, unspecified, intractable|Migraine, unspecified, intractable +C2875187|T047|HT|G43.91|ICD10CM|Migraine, unspecified, intractable|Migraine, unspecified, intractable +C3264036|T047|ET|G43.91|ICD10CM|Migraine, unspecified, with refractory migraine|Migraine, unspecified, with refractory migraine +C2875188|T047|AB|G43.911|ICD10CM|Migraine, unspecified, intractable, with status migrainosus|Migraine, unspecified, intractable, with status migrainosus +C2875188|T047|PT|G43.911|ICD10CM|Migraine, unspecified, intractable, with status migrainosus|Migraine, unspecified, intractable, with status migrainosus +C2875189|T047|AB|G43.919|ICD10CM|Migraine, unsp, intractable, without status migrainosus|Migraine, unsp, intractable, without status migrainosus +C2875189|T047|PT|G43.919|ICD10CM|Migraine, unspecified, intractable, without status migrainosus|Migraine, unspecified, intractable, without status migrainosus +C0152164|T047|HT|G43.A|ICD10CM|Cyclical vomiting|Cyclical vomiting +C0152164|T047|AB|G43.A|ICD10CM|Cyclical vomiting|Cyclical vomiting +C2875190|T047|AB|G43.A0|ICD10CM|Cyclical vomiting, in migraine, not intractable|Cyclical vomiting, in migraine, not intractable +C2875190|T047|PT|G43.A0|ICD10CM|Cyclical vomiting, in migraine, not intractable|Cyclical vomiting, in migraine, not intractable +C3264037|T047|ET|G43.A0|ICD10CM|Cyclical vomiting, without refractory migraine|Cyclical vomiting, without refractory migraine +C2875193|T047|AB|G43.A1|ICD10CM|Cyclical vomiting, in migraine, intractable|Cyclical vomiting, in migraine, intractable +C2875193|T047|PT|G43.A1|ICD10CM|Cyclical vomiting, in migraine, intractable|Cyclical vomiting, in migraine, intractable +C3264038|T047|ET|G43.A1|ICD10CM|Cyclical vomiting, with refractory migraine|Cyclical vomiting, with refractory migraine +C0221058|T047|HT|G43.B|ICD10CM|Ophthalmoplegic migraine|Ophthalmoplegic migraine +C0221058|T047|AB|G43.B|ICD10CM|Ophthalmoplegic migraine|Ophthalmoplegic migraine +C2875196|T047|AB|G43.B0|ICD10CM|Ophthalmoplegic migraine, not intractable|Ophthalmoplegic migraine, not intractable +C2875196|T047|PT|G43.B0|ICD10CM|Ophthalmoplegic migraine, not intractable|Ophthalmoplegic migraine, not intractable +C3264039|T047|ET|G43.B0|ICD10CM|Ophthalmoplegic migraine, without refractory migraine|Ophthalmoplegic migraine, without refractory migraine +C2875199|T047|AB|G43.B1|ICD10CM|Ophthalmoplegic migraine, intractable|Ophthalmoplegic migraine, intractable +C2875199|T047|PT|G43.B1|ICD10CM|Ophthalmoplegic migraine, intractable|Ophthalmoplegic migraine, intractable +C3264040|T047|ET|G43.B1|ICD10CM|Ophthalmoplegic migraine, with refractory migraine|Ophthalmoplegic migraine, with refractory migraine +C2875204|T047|AB|G43.C|ICD10CM|Periodic headache syndromes in child or adult|Periodic headache syndromes in child or adult +C2875204|T047|HT|G43.C|ICD10CM|Periodic headache syndromes in child or adult|Periodic headache syndromes in child or adult +C2875202|T047|PT|G43.C0|ICD10CM|Periodic headache syndromes in child or adult, not intractable|Periodic headache syndromes in child or adult, not intractable +C3264041|T047|ET|G43.C0|ICD10CM|Periodic headache syndromes in child or adult, without refractory migraine|Periodic headache syndromes in child or adult, without refractory migraine +C2875202|T047|AB|G43.C0|ICD10CM|Periodic headache syndromes in chld/adlt, not intractable|Periodic headache syndromes in chld/adlt, not intractable +C2875206|T047|AB|G43.C1|ICD10CM|Periodic headache syndromes in child or adult, intractable|Periodic headache syndromes in child or adult, intractable +C2875206|T047|PT|G43.C1|ICD10CM|Periodic headache syndromes in child or adult, intractable|Periodic headache syndromes in child or adult, intractable +C3264042|T047|ET|G43.C1|ICD10CM|Periodic headache syndromes in child or adult, with refractory migraine|Periodic headache syndromes in child or adult, with refractory migraine +C0270858|T047|HT|G43.D|ICD10CM|Abdominal migraine|Abdominal migraine +C0270858|T047|AB|G43.D|ICD10CM|Abdominal migraine|Abdominal migraine +C3264044|T047|AB|G43.D0|ICD10CM|Abdominal migraine, not intractable|Abdominal migraine, not intractable +C3264044|T047|PT|G43.D0|ICD10CM|Abdominal migraine, not intractable|Abdominal migraine, not intractable +C3264043|T047|ET|G43.D0|ICD10CM|Abdominal migraine, without refractory migraine|Abdominal migraine, without refractory migraine +C2078046|T047|AB|G43.D1|ICD10CM|Abdominal migraine, intractable|Abdominal migraine, intractable +C2078046|T047|PT|G43.D1|ICD10CM|Abdominal migraine, intractable|Abdominal migraine, intractable +C3264045|T047|ET|G43.D1|ICD10CM|Abdominal migraine, with refractory migraine|Abdominal migraine, with refractory migraine +C0494479|T047|HT|G44|ICD10CM|Other headache syndromes|Other headache syndromes +C0494479|T047|AB|G44|ICD10CM|Other headache syndromes|Other headache syndromes +C0494479|T047|HT|G44|ICD10|Other headache syndromes|Other headache syndromes +C0009088|T047|PT|G44.0|ICD10|Cluster headache syndrome|Cluster headache syndrome +C2875218|T047|AB|G44.0|ICD10CM|Cluster headaches and oth trigeminal autonm cephalgias (TAC)|Cluster headaches and oth trigeminal autonm cephalgias (TAC) +C2875218|T047|HT|G44.0|ICD10CM|Cluster headaches and other trigeminal autonomic cephalgias (TAC)|Cluster headaches and other trigeminal autonomic cephalgias (TAC) +C0009088|T047|ET|G44.00|ICD10CM|Ciliary neuralgia|Ciliary neuralgia +C0009088|T047|ET|G44.00|ICD10CM|Cluster headache NOS|Cluster headache NOS +C0009088|T047|HT|G44.00|ICD10CM|Cluster headache syndrome, unspecified|Cluster headache syndrome, unspecified +C0009088|T047|AB|G44.00|ICD10CM|Cluster headache syndrome, unspecified|Cluster headache syndrome, unspecified +C0009088|T047|ET|G44.00|ICD10CM|Histamine cephalgia|Histamine cephalgia +C0270859|T047|ET|G44.00|ICD10CM|Lower half migraine|Lower half migraine +C0009088|T047|ET|G44.00|ICD10CM|Migrainous neuralgia|Migrainous neuralgia +C2875219|T047|AB|G44.001|ICD10CM|Cluster headache syndrome, unspecified, intractable|Cluster headache syndrome, unspecified, intractable +C2875219|T047|PT|G44.001|ICD10CM|Cluster headache syndrome, unspecified, intractable|Cluster headache syndrome, unspecified, intractable +C0009088|T047|ET|G44.009|ICD10CM|Cluster headache syndrome NOS|Cluster headache syndrome NOS +C2875220|T047|AB|G44.009|ICD10CM|Cluster headache syndrome, unspecified, not intractable|Cluster headache syndrome, unspecified, not intractable +C2875220|T047|PT|G44.009|ICD10CM|Cluster headache syndrome, unspecified, not intractable|Cluster headache syndrome, unspecified, not intractable +C0393739|T047|HT|G44.01|ICD10CM|Episodic cluster headache|Episodic cluster headache +C0393739|T047|AB|G44.01|ICD10CM|Episodic cluster headache|Episodic cluster headache +C2875221|T047|AB|G44.011|ICD10CM|Episodic cluster headache, intractable|Episodic cluster headache, intractable +C2875221|T047|PT|G44.011|ICD10CM|Episodic cluster headache, intractable|Episodic cluster headache, intractable +C0393739|T047|ET|G44.019|ICD10CM|Episodic cluster headache NOS|Episodic cluster headache NOS +C2875222|T047|AB|G44.019|ICD10CM|Episodic cluster headache, not intractable|Episodic cluster headache, not intractable +C2875222|T047|PT|G44.019|ICD10CM|Episodic cluster headache, not intractable|Episodic cluster headache, not intractable +C0009088|T047|HT|G44.02|ICD10CM|Chronic cluster headache|Chronic cluster headache +C0009088|T047|AB|G44.02|ICD10CM|Chronic cluster headache|Chronic cluster headache +C2875223|T047|AB|G44.021|ICD10CM|Chronic cluster headache, intractable|Chronic cluster headache, intractable +C2875223|T047|PT|G44.021|ICD10CM|Chronic cluster headache, intractable|Chronic cluster headache, intractable +C0009088|T047|ET|G44.029|ICD10CM|Chronic cluster headache NOS|Chronic cluster headache NOS +C2875224|T047|AB|G44.029|ICD10CM|Chronic cluster headache, not intractable|Chronic cluster headache, not intractable +C2875224|T047|PT|G44.029|ICD10CM|Chronic cluster headache, not intractable|Chronic cluster headache, not intractable +C1565171|T047|HT|G44.03|ICD10CM|Episodic paroxysmal hemicrania|Episodic paroxysmal hemicrania +C1565171|T047|AB|G44.03|ICD10CM|Episodic paroxysmal hemicrania|Episodic paroxysmal hemicrania +C1399352|T047|ET|G44.03|ICD10CM|Paroxysmal hemicrania NOS|Paroxysmal hemicrania NOS +C2875225|T047|AB|G44.031|ICD10CM|Episodic paroxysmal hemicrania, intractable|Episodic paroxysmal hemicrania, intractable +C2875225|T047|PT|G44.031|ICD10CM|Episodic paroxysmal hemicrania, intractable|Episodic paroxysmal hemicrania, intractable +C1565171|T047|ET|G44.039|ICD10CM|Episodic paroxysmal hemicrania NOS|Episodic paroxysmal hemicrania NOS +C2875226|T047|AB|G44.039|ICD10CM|Episodic paroxysmal hemicrania, not intractable|Episodic paroxysmal hemicrania, not intractable +C2875226|T047|PT|G44.039|ICD10CM|Episodic paroxysmal hemicrania, not intractable|Episodic paroxysmal hemicrania, not intractable +C0393743|T047|HT|G44.04|ICD10CM|Chronic paroxysmal hemicrania|Chronic paroxysmal hemicrania +C0393743|T047|AB|G44.04|ICD10CM|Chronic paroxysmal hemicrania|Chronic paroxysmal hemicrania +C2875227|T047|AB|G44.041|ICD10CM|Chronic paroxysmal hemicrania, intractable|Chronic paroxysmal hemicrania, intractable +C2875227|T047|PT|G44.041|ICD10CM|Chronic paroxysmal hemicrania, intractable|Chronic paroxysmal hemicrania, intractable +C0393743|T047|ET|G44.049|ICD10CM|Chronic paroxysmal hemicrania NOS|Chronic paroxysmal hemicrania NOS +C2875228|T047|AB|G44.049|ICD10CM|Chronic paroxysmal hemicrania, not intractable|Chronic paroxysmal hemicrania, not intractable +C2875228|T047|PT|G44.049|ICD10CM|Chronic paroxysmal hemicrania, not intractable|Chronic paroxysmal hemicrania, not intractable +C2875230|T047|HT|G44.05|ICD10CM|Short lasting unilateral neuralgiform headache with conjunctival injection and tearing (SUNCT)|Short lasting unilateral neuralgiform headache with conjunctival injection and tearing (SUNCT) +C2875230|T047|AB|G44.05|ICD10CM|Shrt lst unil nerlgif headache w cnjnct inject/tear (SUNCT)|Shrt lst unil nerlgif headache w cnjnct inject/tear (SUNCT) +C2875229|T047|AB|G44.051|ICD10CM|Shrt lst unil nerlgif hdache w cnjnct inject/tear, ntrct|Shrt lst unil nerlgif hdache w cnjnct inject/tear, ntrct +C2875230|T047|ET|G44.059|ICD10CM|Short lasting unilateral neuralgiform headache with conjunctival injection and tearing (SUNCT) NOS|Short lasting unilateral neuralgiform headache with conjunctival injection and tearing (SUNCT) NOS +C2875231|T047|AB|G44.059|ICD10CM|Shrt lst unil nerlgif hdache w cnjnct inject/tear, not ntrct|Shrt lst unil nerlgif hdache w cnjnct inject/tear, not ntrct +C2875232|T047|AB|G44.09|ICD10CM|Other trigeminal autonomic cephalgias (TAC)|Other trigeminal autonomic cephalgias (TAC) +C2875232|T047|HT|G44.09|ICD10CM|Other trigeminal autonomic cephalgias (TAC)|Other trigeminal autonomic cephalgias (TAC) +C2875233|T047|AB|G44.091|ICD10CM|Other trigeminal autonomic cephalgias (TAC), intractable|Other trigeminal autonomic cephalgias (TAC), intractable +C2875233|T047|PT|G44.091|ICD10CM|Other trigeminal autonomic cephalgias (TAC), intractable|Other trigeminal autonomic cephalgias (TAC), intractable +C2875234|T047|AB|G44.099|ICD10CM|Other trigeminal autonomic cephalgias (TAC), not intractable|Other trigeminal autonomic cephalgias (TAC), not intractable +C2875234|T047|PT|G44.099|ICD10CM|Other trigeminal autonomic cephalgias (TAC), not intractable|Other trigeminal autonomic cephalgias (TAC), not intractable +C0869050|T047|PT|G44.1|ICD10|Vascular headache, not elsewhere classified|Vascular headache, not elsewhere classified +C0869050|T047|PT|G44.1|ICD10CM|Vascular headache, not elsewhere classified|Vascular headache, not elsewhere classified +C0869050|T047|AB|G44.1|ICD10CM|Vascular headache, not elsewhere classified|Vascular headache, not elsewhere classified +C0033893|T047|PT|G44.2|ICD10|Tension-type headache|Tension-type headache +C0033893|T047|HT|G44.2|ICD10CM|Tension-type headache|Tension-type headache +C0033893|T047|AB|G44.2|ICD10CM|Tension-type headache|Tension-type headache +C0033893|T047|AB|G44.20|ICD10CM|Tension-type headache, unspecified|Tension-type headache, unspecified +C0033893|T047|HT|G44.20|ICD10CM|Tension-type headache, unspecified|Tension-type headache, unspecified +C2875237|T047|AB|G44.201|ICD10CM|Tension-type headache, unspecified, intractable|Tension-type headache, unspecified, intractable +C2875237|T047|PT|G44.201|ICD10CM|Tension-type headache, unspecified, intractable|Tension-type headache, unspecified, intractable +C0033893|T047|ET|G44.209|ICD10CM|Tension headache NOS|Tension headache NOS +C2875238|T047|AB|G44.209|ICD10CM|Tension-type headache, unspecified, not intractable|Tension-type headache, unspecified, not intractable +C2875238|T047|PT|G44.209|ICD10CM|Tension-type headache, unspecified, not intractable|Tension-type headache, unspecified, not intractable +C0393737|T047|HT|G44.21|ICD10CM|Episodic tension-type headache|Episodic tension-type headache +C0393737|T047|AB|G44.21|ICD10CM|Episodic tension-type headache|Episodic tension-type headache +C2875239|T047|AB|G44.211|ICD10CM|Episodic tension-type headache, intractable|Episodic tension-type headache, intractable +C2875239|T047|PT|G44.211|ICD10CM|Episodic tension-type headache, intractable|Episodic tension-type headache, intractable +C0393737|T047|ET|G44.219|ICD10CM|Episodic tension-type headache NOS|Episodic tension-type headache NOS +C2875240|T047|AB|G44.219|ICD10CM|Episodic tension-type headache, not intractable|Episodic tension-type headache, not intractable +C2875240|T047|PT|G44.219|ICD10CM|Episodic tension-type headache, not intractable|Episodic tension-type headache, not intractable +C0393738|T047|HT|G44.22|ICD10CM|Chronic tension-type headache|Chronic tension-type headache +C0393738|T047|AB|G44.22|ICD10CM|Chronic tension-type headache|Chronic tension-type headache +C2875241|T047|AB|G44.221|ICD10CM|Chronic tension-type headache, intractable|Chronic tension-type headache, intractable +C2875241|T047|PT|G44.221|ICD10CM|Chronic tension-type headache, intractable|Chronic tension-type headache, intractable +C0393738|T047|ET|G44.229|ICD10CM|Chronic tension-type headache NOS|Chronic tension-type headache NOS +C2875242|T047|AB|G44.229|ICD10CM|Chronic tension-type headache, not intractable|Chronic tension-type headache, not intractable +C2875242|T047|PT|G44.229|ICD10CM|Chronic tension-type headache, not intractable|Chronic tension-type headache, not intractable +C0393745|T047|PT|G44.3|ICD10|Chronic post-traumatic headache|Chronic post-traumatic headache +C0032816|T046|HT|G44.3|ICD10CM|Post-traumatic headache|Post-traumatic headache +C0032816|T046|AB|G44.3|ICD10CM|Post-traumatic headache|Post-traumatic headache +C0032816|T046|HT|G44.30|ICD10CM|Post-traumatic headache, unspecified|Post-traumatic headache, unspecified +C0032816|T046|AB|G44.30|ICD10CM|Post-traumatic headache, unspecified|Post-traumatic headache, unspecified +C2875243|T047|AB|G44.301|ICD10CM|Post-traumatic headache, unspecified, intractable|Post-traumatic headache, unspecified, intractable +C2875243|T047|PT|G44.301|ICD10CM|Post-traumatic headache, unspecified, intractable|Post-traumatic headache, unspecified, intractable +C0032816|T046|ET|G44.309|ICD10CM|Post-traumatic headache NOS|Post-traumatic headache NOS +C2875244|T047|AB|G44.309|ICD10CM|Post-traumatic headache, unspecified, not intractable|Post-traumatic headache, unspecified, not intractable +C2875244|T047|PT|G44.309|ICD10CM|Post-traumatic headache, unspecified, not intractable|Post-traumatic headache, unspecified, not intractable +C2349421|T047|HT|G44.31|ICD10CM|Acute post-traumatic headache|Acute post-traumatic headache +C2349421|T047|AB|G44.31|ICD10CM|Acute post-traumatic headache|Acute post-traumatic headache +C2875245|T047|AB|G44.311|ICD10CM|Acute post-traumatic headache, intractable|Acute post-traumatic headache, intractable +C2875245|T047|PT|G44.311|ICD10CM|Acute post-traumatic headache, intractable|Acute post-traumatic headache, intractable +C2349421|T047|ET|G44.319|ICD10CM|Acute post-traumatic headache NOS|Acute post-traumatic headache NOS +C2875246|T047|AB|G44.319|ICD10CM|Acute post-traumatic headache, not intractable|Acute post-traumatic headache, not intractable +C2875246|T047|PT|G44.319|ICD10CM|Acute post-traumatic headache, not intractable|Acute post-traumatic headache, not intractable +C0393745|T047|HT|G44.32|ICD10CM|Chronic post-traumatic headache|Chronic post-traumatic headache +C0393745|T047|AB|G44.32|ICD10CM|Chronic post-traumatic headache|Chronic post-traumatic headache +C2875247|T047|AB|G44.321|ICD10CM|Chronic post-traumatic headache, intractable|Chronic post-traumatic headache, intractable +C2875247|T047|PT|G44.321|ICD10CM|Chronic post-traumatic headache, intractable|Chronic post-traumatic headache, intractable +C0393745|T047|ET|G44.329|ICD10CM|Chronic post-traumatic headache NOS|Chronic post-traumatic headache NOS +C2875248|T047|AB|G44.329|ICD10CM|Chronic post-traumatic headache, not intractable|Chronic post-traumatic headache, not intractable +C2875248|T047|PT|G44.329|ICD10CM|Chronic post-traumatic headache, not intractable|Chronic post-traumatic headache, not intractable +C0869051|T047|PT|G44.4|ICD10|Drug-induced headache, not elsewhere classified|Drug-induced headache, not elsewhere classified +C0869051|T047|HT|G44.4|ICD10CM|Drug-induced headache, not elsewhere classified|Drug-induced headache, not elsewhere classified +C0869051|T047|AB|G44.4|ICD10CM|Drug-induced headache, not elsewhere classified|Drug-induced headache, not elsewhere classified +C2349423|T046|ET|G44.4|ICD10CM|Medication overuse headache|Medication overuse headache +C2875249|T047|AB|G44.40|ICD10CM|Drug-induced headache, NEC, not intractable|Drug-induced headache, NEC, not intractable +C2875249|T047|PT|G44.40|ICD10CM|Drug-induced headache, not elsewhere classified, not intractable|Drug-induced headache, not elsewhere classified, not intractable +C2875250|T047|AB|G44.41|ICD10CM|Drug-induced headache, not elsewhere classified, intractable|Drug-induced headache, not elsewhere classified, intractable +C2875250|T047|PT|G44.41|ICD10CM|Drug-induced headache, not elsewhere classified, intractable|Drug-induced headache, not elsewhere classified, intractable +C2349428|T047|AB|G44.5|ICD10CM|Complicated headache syndromes|Complicated headache syndromes +C2349428|T047|HT|G44.5|ICD10CM|Complicated headache syndromes|Complicated headache syndromes +C2349425|T047|PT|G44.51|ICD10CM|Hemicrania continua|Hemicrania continua +C2349425|T047|AB|G44.51|ICD10CM|Hemicrania continua|Hemicrania continua +C2875251|T047|AB|G44.52|ICD10CM|New daily persistent headache (NDPH)|New daily persistent headache (NDPH) +C2875251|T047|PT|G44.52|ICD10CM|New daily persistent headache (NDPH)|New daily persistent headache (NDPH) +C0521668|T047|PT|G44.53|ICD10CM|Primary thunderclap headache|Primary thunderclap headache +C0521668|T047|AB|G44.53|ICD10CM|Primary thunderclap headache|Primary thunderclap headache +C2349427|T047|AB|G44.59|ICD10CM|Other complicated headache syndrome|Other complicated headache syndrome +C2349427|T047|PT|G44.59|ICD10CM|Other complicated headache syndrome|Other complicated headache syndrome +C0477374|T047|HT|G44.8|ICD10CM|Other specified headache syndromes|Other specified headache syndromes +C0477374|T047|AB|G44.8|ICD10CM|Other specified headache syndromes|Other specified headache syndromes +C0477374|T047|PT|G44.8|ICD10|Other specified headache syndromes|Other specified headache syndromes +C0752150|T047|PT|G44.81|ICD10CM|Hypnic headache|Hypnic headache +C0752150|T047|AB|G44.81|ICD10CM|Hypnic headache|Hypnic headache +C0393754|T184|PT|G44.82|ICD10CM|Headache associated with sexual activity|Headache associated with sexual activity +C0393754|T184|AB|G44.82|ICD10CM|Headache associated with sexual activity|Headache associated with sexual activity +C2349429|T046|ET|G44.82|ICD10CM|Orgasmic headache|Orgasmic headache +C2349430|T047|ET|G44.82|ICD10CM|Preorgasmic headache|Preorgasmic headache +C0751185|T047|PT|G44.83|ICD10CM|Primary cough headache|Primary cough headache +C0751185|T047|AB|G44.83|ICD10CM|Primary cough headache|Primary cough headache +C0522253|T047|PT|G44.84|ICD10CM|Primary exertional headache|Primary exertional headache +C0522253|T047|AB|G44.84|ICD10CM|Primary exertional headache|Primary exertional headache +C0751191|T033|PT|G44.85|ICD10CM|Primary stabbing headache|Primary stabbing headache +C0751191|T033|AB|G44.85|ICD10CM|Primary stabbing headache|Primary stabbing headache +C0494479|T047|PT|G44.89|ICD10CM|Other headache syndrome|Other headache syndrome +C0494479|T047|AB|G44.89|ICD10CM|Other headache syndrome|Other headache syndrome +C0494480|T047|HT|G45|ICD10|Transient cerebral ischaemic attacks and related syndromes|Transient cerebral ischaemic attacks and related syndromes +C0494480|T047|AB|G45|ICD10CM|Transient cerebral ischemic attacks and related syndromes|Transient cerebral ischemic attacks and related syndromes +C0494480|T047|HT|G45|ICD10CM|Transient cerebral ischemic attacks and related syndromes|Transient cerebral ischemic attacks and related syndromes +C0494480|T047|HT|G45|ICD10AE|Transient cerebral ischemic attacks and related syndromes|Transient cerebral ischemic attacks and related syndromes +C0042568|T047|PT|G45.0|ICD10CM|Vertebro-basilar artery syndrome|Vertebro-basilar artery syndrome +C0042568|T047|AB|G45.0|ICD10CM|Vertebro-basilar artery syndrome|Vertebro-basilar artery syndrome +C0042568|T047|PT|G45.0|ICD10|Vertebro-basilar artery syndrome|Vertebro-basilar artery syndrome +C0451678|T047|PT|G45.1|ICD10|Carotid artery syndrome (hemispheric)|Carotid artery syndrome (hemispheric) +C0451678|T047|PT|G45.1|ICD10CM|Carotid artery syndrome (hemispheric)|Carotid artery syndrome (hemispheric) +C0451678|T047|AB|G45.1|ICD10CM|Carotid artery syndrome (hemispheric)|Carotid artery syndrome (hemispheric) +C0451679|T047|PT|G45.2|ICD10CM|Multiple and bilateral precerebral artery syndromes|Multiple and bilateral precerebral artery syndromes +C0451679|T047|AB|G45.2|ICD10CM|Multiple and bilateral precerebral artery syndromes|Multiple and bilateral precerebral artery syndromes +C0451679|T047|PT|G45.2|ICD10|Multiple and bilateral precerebral artery syndromes|Multiple and bilateral precerebral artery syndromes +C0149793|T184|PT|G45.3|ICD10|Amaurosis fugax|Amaurosis fugax +C0149793|T184|PT|G45.3|ICD10CM|Amaurosis fugax|Amaurosis fugax +C0149793|T184|AB|G45.3|ICD10CM|Amaurosis fugax|Amaurosis fugax +C0338591|T048|PT|G45.4|ICD10CM|Transient global amnesia|Transient global amnesia +C0338591|T048|AB|G45.4|ICD10CM|Transient global amnesia|Transient global amnesia +C0338591|T048|PT|G45.4|ICD10|Transient global amnesia|Transient global amnesia +C0477375|T047|AB|G45.8|ICD10CM|Oth transient cerebral ischemic attacks and related synd|Oth transient cerebral ischemic attacks and related synd +C0477375|T047|PT|G45.8|ICD10|Other transient cerebral ischaemic attacks and related syndromes|Other transient cerebral ischaemic attacks and related syndromes +C0477375|T047|PT|G45.8|ICD10CM|Other transient cerebral ischemic attacks and related syndromes|Other transient cerebral ischemic attacks and related syndromes +C0477375|T047|PT|G45.8|ICD10AE|Other transient cerebral ischemic attacks and related syndromes|Other transient cerebral ischemic attacks and related syndromes +C0265110|T047|ET|G45.9|ICD10CM|Spasm of cerebral artery|Spasm of cerebral artery +C0007787|T047|ET|G45.9|ICD10CM|TIA|TIA +C0007787|T047|PT|G45.9|ICD10|Transient cerebral ischaemic attack, unspecified|Transient cerebral ischaemic attack, unspecified +C0917805|T047|ET|G45.9|ICD10CM|Transient cerebral ischemia NOS|Transient cerebral ischemia NOS +C0007787|T047|PT|G45.9|ICD10CM|Transient cerebral ischemic attack, unspecified|Transient cerebral ischemic attack, unspecified +C0007787|T047|AB|G45.9|ICD10CM|Transient cerebral ischemic attack, unspecified|Transient cerebral ischemic attack, unspecified +C0007787|T047|PT|G45.9|ICD10AE|Transient cerebral ischemic attack, unspecified|Transient cerebral ischemic attack, unspecified +C0694474|T047|HT|G46|ICD10|Vascular syndromes of brain in cerebrovascular diseases|Vascular syndromes of brain in cerebrovascular diseases +C0694474|T047|AB|G46|ICD10CM|Vascular syndromes of brain in cerebrovascular diseases|Vascular syndromes of brain in cerebrovascular diseases +C0694474|T047|HT|G46|ICD10CM|Vascular syndromes of brain in cerebrovascular diseases|Vascular syndromes of brain in cerebrovascular diseases +C0238281|T047|PT|G46.0|ICD10CM|Middle cerebral artery syndrome|Middle cerebral artery syndrome +C0238281|T047|AB|G46.0|ICD10CM|Middle cerebral artery syndrome|Middle cerebral artery syndrome +C0238281|T047|PT|G46.0|ICD10|Middle cerebral artery syndrome|Middle cerebral artery syndrome +C0451680|T047|PT|G46.1|ICD10CM|Anterior cerebral artery syndrome|Anterior cerebral artery syndrome +C0451680|T047|AB|G46.1|ICD10CM|Anterior cerebral artery syndrome|Anterior cerebral artery syndrome +C0451680|T047|PT|G46.1|ICD10|Anterior cerebral artery syndrome|Anterior cerebral artery syndrome +C0451681|T047|PT|G46.2|ICD10|Posterior cerebral artery syndrome|Posterior cerebral artery syndrome +C0451681|T047|PT|G46.2|ICD10CM|Posterior cerebral artery syndrome|Posterior cerebral artery syndrome +C0451681|T047|AB|G46.2|ICD10CM|Posterior cerebral artery syndrome|Posterior cerebral artery syndrome +C0455715|T047|ET|G46.3|ICD10CM|Benedikt syndrome|Benedikt syndrome +C0451671|T047|PT|G46.3|ICD10CM|Brain stem stroke syndrome|Brain stem stroke syndrome +C0451671|T047|AB|G46.3|ICD10CM|Brain stem stroke syndrome|Brain stem stroke syndrome +C0451671|T047|PT|G46.3|ICD10|Brain stem stroke syndrome|Brain stem stroke syndrome +C0271373|T047|ET|G46.3|ICD10CM|Claude syndrome|Claude syndrome +C0455716|T047|ET|G46.3|ICD10CM|Foville syndrome|Foville syndrome +C0271391|T047|ET|G46.3|ICD10CM|Millard-Gubler syndrome|Millard-Gubler syndrome +C0043019|T047|ET|G46.3|ICD10CM|Wallenberg syndrome|Wallenberg syndrome +C0455717|T047|ET|G46.3|ICD10CM|Weber syndrome|Weber syndrome +C0451672|T047|PT|G46.4|ICD10CM|Cerebellar stroke syndrome|Cerebellar stroke syndrome +C0451672|T047|AB|G46.4|ICD10CM|Cerebellar stroke syndrome|Cerebellar stroke syndrome +C0451672|T047|PT|G46.4|ICD10|Cerebellar stroke syndrome|Cerebellar stroke syndrome +C0393957|T047|PT|G46.5|ICD10|Pure motor lacunar syndrome|Pure motor lacunar syndrome +C0393957|T047|PT|G46.5|ICD10CM|Pure motor lacunar syndrome|Pure motor lacunar syndrome +C0393957|T047|AB|G46.5|ICD10CM|Pure motor lacunar syndrome|Pure motor lacunar syndrome +C0393958|T047|PT|G46.6|ICD10CM|Pure sensory lacunar syndrome|Pure sensory lacunar syndrome +C0393958|T047|AB|G46.6|ICD10CM|Pure sensory lacunar syndrome|Pure sensory lacunar syndrome +C0393958|T047|PT|G46.6|ICD10|Pure sensory lacunar syndrome|Pure sensory lacunar syndrome +C0477376|T047|PT|G46.7|ICD10|Other lacunar syndromes|Other lacunar syndromes +C0477376|T047|PT|G46.7|ICD10CM|Other lacunar syndromes|Other lacunar syndromes +C0477376|T047|AB|G46.7|ICD10CM|Other lacunar syndromes|Other lacunar syndromes +C0477377|T047|AB|G46.8|ICD10CM|Oth vascular syndromes of brain in cerebrovascular diseases|Oth vascular syndromes of brain in cerebrovascular diseases +C0477377|T047|PT|G46.8|ICD10CM|Other vascular syndromes of brain in cerebrovascular diseases|Other vascular syndromes of brain in cerebrovascular diseases +C0477377|T047|PT|G46.8|ICD10|Other vascular syndromes of brain in cerebrovascular diseases|Other vascular syndromes of brain in cerebrovascular diseases +C0851578|T048|HT|G47|ICD10|Sleep disorders|Sleep disorders +C0851578|T048|HT|G47|ICD10CM|Sleep disorders|Sleep disorders +C0851578|T048|AB|G47|ICD10CM|Sleep disorders|Sleep disorders +C0021603|T047|PT|G47.0|ICD10|Disorders of initiating and maintaining sleep [insomnias]|Disorders of initiating and maintaining sleep [insomnias] +C0917801|T184|HT|G47.0|ICD10CM|Insomnia|Insomnia +C0917801|T184|AB|G47.0|ICD10CM|Insomnia|Insomnia +C0917801|T184|ET|G47.00|ICD10CM|Insomnia NOS|Insomnia NOS +C0917801|T184|AB|G47.00|ICD10CM|Insomnia, unspecified|Insomnia, unspecified +C0917801|T184|PT|G47.00|ICD10CM|Insomnia, unspecified|Insomnia, unspecified +C2875252|T047|AB|G47.01|ICD10CM|Insomnia due to medical condition|Insomnia due to medical condition +C2875252|T047|PT|G47.01|ICD10CM|Insomnia due to medical condition|Insomnia due to medical condition +C0029645|T184|AB|G47.09|ICD10CM|Other insomnia|Other insomnia +C0029645|T184|PT|G47.09|ICD10CM|Other insomnia|Other insomnia +C0020524|T048|PT|G47.1|ICD10|Disorders of excessive somnolence [hypersomnias]|Disorders of excessive somnolence [hypersomnias] +C0917799|T047|HT|G47.1|ICD10CM|Hypersomnia|Hypersomnia +C0917799|T047|AB|G47.1|ICD10CM|Hypersomnia|Hypersomnia +C0917799|T047|ET|G47.10|ICD10CM|Hypersomnia NOS|Hypersomnia NOS +C0917799|T047|AB|G47.10|ICD10CM|Hypersomnia, unspecified|Hypersomnia, unspecified +C0917799|T047|PT|G47.10|ICD10CM|Hypersomnia, unspecified|Hypersomnia, unspecified +C0751757|T047|ET|G47.11|ICD10CM|Idiopathic hypersomnia NOS|Idiopathic hypersomnia NOS +C2711059|T047|PT|G47.11|ICD10CM|Idiopathic hypersomnia with long sleep time|Idiopathic hypersomnia with long sleep time +C2711059|T047|AB|G47.11|ICD10CM|Idiopathic hypersomnia with long sleep time|Idiopathic hypersomnia with long sleep time +C1561855|T047|PT|G47.12|ICD10CM|Idiopathic hypersomnia without long sleep time|Idiopathic hypersomnia without long sleep time +C1561855|T047|AB|G47.12|ICD10CM|Idiopathic hypersomnia without long sleep time|Idiopathic hypersomnia without long sleep time +C0206085|T047|ET|G47.13|ICD10CM|Kleine-Levin syndrome|Kleine-Levin syndrome +C1561856|T047|ET|G47.13|ICD10CM|Menstrual related hypersomnia|Menstrual related hypersomnia +C0751226|T047|PT|G47.13|ICD10CM|Recurrent hypersomnia|Recurrent hypersomnia +C0751226|T047|AB|G47.13|ICD10CM|Recurrent hypersomnia|Recurrent hypersomnia +C2875253|T184|AB|G47.14|ICD10CM|Hypersomnia due to medical condition|Hypersomnia due to medical condition +C2875253|T184|PT|G47.14|ICD10CM|Hypersomnia due to medical condition|Hypersomnia due to medical condition +C0029637|T184|AB|G47.19|ICD10CM|Other hypersomnia|Other hypersomnia +C0029637|T184|PT|G47.19|ICD10CM|Other hypersomnia|Other hypersomnia +C0877792|T046|AB|G47.2|ICD10CM|Circadian rhythm sleep disorders|Circadian rhythm sleep disorders +C0877792|T046|HT|G47.2|ICD10CM|Circadian rhythm sleep disorders|Circadian rhythm sleep disorders +C0877792|T046|ET|G47.2|ICD10CM|Disorders of the sleep wake schedule|Disorders of the sleep wake schedule +C0877792|T046|PT|G47.2|ICD10|Disorders of the sleep-wake schedule|Disorders of the sleep-wake schedule +C2875254|T046|ET|G47.2|ICD10CM|Inversion of nyctohemeral rhythm|Inversion of nyctohemeral rhythm +C0338497|T047|ET|G47.2|ICD10CM|Inversion of sleep rhythm|Inversion of sleep rhythm +C2875255|T046|AB|G47.20|ICD10CM|Circadian rhythm sleep disorder, unspecified type|Circadian rhythm sleep disorder, unspecified type +C2875255|T046|PT|G47.20|ICD10CM|Circadian rhythm sleep disorder, unspecified type|Circadian rhythm sleep disorder, unspecified type +C0877792|T046|ET|G47.20|ICD10CM|Sleep wake schedule disorder NOS|Sleep wake schedule disorder NOS +C0393770|T047|PT|G47.21|ICD10CM|Circadian rhythm sleep disorder, delayed sleep phase type|Circadian rhythm sleep disorder, delayed sleep phase type +C0393770|T047|AB|G47.21|ICD10CM|Circadian rhythm sleep disorder, delayed sleep phase type|Circadian rhythm sleep disorder, delayed sleep phase type +C0393770|T047|ET|G47.21|ICD10CM|Delayed sleep phase syndrome|Delayed sleep phase syndrome +C0751758|T047|PT|G47.22|ICD10CM|Circadian rhythm sleep disorder, advanced sleep phase type|Circadian rhythm sleep disorder, advanced sleep phase type +C0751758|T047|AB|G47.22|ICD10CM|Circadian rhythm sleep disorder, advanced sleep phase type|Circadian rhythm sleep disorder, advanced sleep phase type +C1561874|T047|PT|G47.23|ICD10CM|Circadian rhythm sleep disorder, irregular sleep wake type|Circadian rhythm sleep disorder, irregular sleep wake type +C1561874|T047|AB|G47.23|ICD10CM|Circadian rhythm sleep disorder, irregular sleep wake type|Circadian rhythm sleep disorder, irregular sleep wake type +C0393771|T047|ET|G47.23|ICD10CM|Irregular sleep-wake pattern|Irregular sleep-wake pattern +C0393772|T033|PT|G47.24|ICD10CM|Circadian rhythm sleep disorder, free running type|Circadian rhythm sleep disorder, free running type +C0393772|T033|AB|G47.24|ICD10CM|Circadian rhythm sleep disorder, free running type|Circadian rhythm sleep disorder, free running type +C4509117|T047|ET|G47.24|ICD10CM|Circadian rhythm sleep disorder, non-24-hour sleep-wake type|Circadian rhythm sleep disorder, non-24-hour sleep-wake type +C0231311|T047|PT|G47.25|ICD10CM|Circadian rhythm sleep disorder, jet lag type|Circadian rhythm sleep disorder, jet lag type +C0231311|T047|AB|G47.25|ICD10CM|Circadian rhythm sleep disorder, jet lag type|Circadian rhythm sleep disorder, jet lag type +C0393773|T047|PT|G47.26|ICD10CM|Circadian rhythm sleep disorder, shift work type|Circadian rhythm sleep disorder, shift work type +C0393773|T047|AB|G47.26|ICD10CM|Circadian rhythm sleep disorder, shift work type|Circadian rhythm sleep disorder, shift work type +C1561878|T047|AB|G47.27|ICD10CM|Circadian rhythm sleep disorder in conditions classd elswhr|Circadian rhythm sleep disorder in conditions classd elswhr +C1561878|T047|PT|G47.27|ICD10CM|Circadian rhythm sleep disorder in conditions classified elsewhere|Circadian rhythm sleep disorder in conditions classified elsewhere +C1561879|T047|AB|G47.29|ICD10CM|Other circadian rhythm sleep disorder|Other circadian rhythm sleep disorder +C1561879|T047|PT|G47.29|ICD10CM|Other circadian rhythm sleep disorder|Other circadian rhythm sleep disorder +C0037315|T047|HT|G47.3|ICD10CM|Sleep apnea|Sleep apnea +C0037315|T047|AB|G47.3|ICD10CM|Sleep apnea|Sleep apnea +C0037315|T047|PT|G47.3|ICD10AE|Sleep apnea|Sleep apnea +C0037315|T047|PT|G47.3|ICD10|Sleep apnoea|Sleep apnoea +C0037315|T047|ET|G47.30|ICD10CM|Sleep apnea NOS|Sleep apnea NOS +C0037315|T047|PT|G47.30|ICD10CM|Sleep apnea, unspecified|Sleep apnea, unspecified +C0037315|T047|AB|G47.30|ICD10CM|Sleep apnea, unspecified|Sleep apnea, unspecified +C4509118|T047|ET|G47.31|ICD10CM|Idiopathic central sleep apnea|Idiopathic central sleep apnea +C0751762|T047|PT|G47.31|ICD10CM|Primary central sleep apnea|Primary central sleep apnea +C0751762|T047|AB|G47.31|ICD10CM|Primary central sleep apnea|Primary central sleep apnea +C1561862|T047|PT|G47.32|ICD10CM|High altitude periodic breathing|High altitude periodic breathing +C1561862|T047|AB|G47.32|ICD10CM|High altitude periodic breathing|High altitude periodic breathing +C0520679|T047|AB|G47.33|ICD10CM|Obstructive sleep apnea (adult) (pediatric)|Obstructive sleep apnea (adult) (pediatric) +C0520679|T047|PT|G47.33|ICD10CM|Obstructive sleep apnea (adult) (pediatric)|Obstructive sleep apnea (adult) (pediatric) +C4237227|T047|ET|G47.33|ICD10CM|Obstructive sleep apnea hypopnea|Obstructive sleep apnea hypopnea +C2711232|T047|AB|G47.34|ICD10CM|Idio sleep related nonobstructive alveolar hypoventilation|Idio sleep related nonobstructive alveolar hypoventilation +C2711232|T047|PT|G47.34|ICD10CM|Idiopathic sleep related nonobstructive alveolar hypoventilation|Idiopathic sleep related nonobstructive alveolar hypoventilation +C1561865|T047|ET|G47.34|ICD10CM|Sleep related hypoxia|Sleep related hypoxia +C1561866|T047|AB|G47.35|ICD10CM|Congenital central alveolar hypoventilation syndrome|Congenital central alveolar hypoventilation syndrome +C1561866|T047|PT|G47.35|ICD10CM|Congenital central alveolar hypoventilation syndrome|Congenital central alveolar hypoventilation syndrome +C2875257|T047|AB|G47.36|ICD10CM|Sleep related hypoventilation in conditions classd elswhr|Sleep related hypoventilation in conditions classd elswhr +C2875257|T047|PT|G47.36|ICD10CM|Sleep related hypoventilation in conditions classified elsewhere|Sleep related hypoventilation in conditions classified elsewhere +C2875256|T047|ET|G47.36|ICD10CM|Sleep related hypoxemia in conditions classified elsewhere|Sleep related hypoxemia in conditions classified elsewhere +C1561868|T047|AB|G47.37|ICD10CM|Central sleep apnea in conditions classified elsewhere|Central sleep apnea in conditions classified elsewhere +C1561868|T047|PT|G47.37|ICD10CM|Central sleep apnea in conditions classified elsewhere|Central sleep apnea in conditions classified elsewhere +C0837174|T047|PT|G47.39|ICD10CM|Other sleep apnea|Other sleep apnea +C0837174|T047|AB|G47.39|ICD10CM|Other sleep apnea|Other sleep apnea +C0751362|T047|HT|G47.4|ICD10CM|Narcolepsy and cataplexy|Narcolepsy and cataplexy +C0751362|T047|AB|G47.4|ICD10CM|Narcolepsy and cataplexy|Narcolepsy and cataplexy +C0751362|T047|PT|G47.4|ICD10|Narcolepsy and cataplexy|Narcolepsy and cataplexy +C0027404|T047|HT|G47.41|ICD10CM|Narcolepsy|Narcolepsy +C0027404|T047|AB|G47.41|ICD10CM|Narcolepsy|Narcolepsy +C0751362|T047|AB|G47.411|ICD10CM|Narcolepsy with cataplexy|Narcolepsy with cataplexy +C0751362|T047|PT|G47.411|ICD10CM|Narcolepsy with cataplexy|Narcolepsy with cataplexy +C0027404|T047|ET|G47.419|ICD10CM|Narcolepsy NOS|Narcolepsy NOS +C1456240|T047|PT|G47.419|ICD10CM|Narcolepsy without cataplexy|Narcolepsy without cataplexy +C1456240|T047|AB|G47.419|ICD10CM|Narcolepsy without cataplexy|Narcolepsy without cataplexy +C1456243|T047|AB|G47.42|ICD10CM|Narcolepsy in conditions classified elsewhere|Narcolepsy in conditions classified elsewhere +C1456243|T047|HT|G47.42|ICD10CM|Narcolepsy in conditions classified elsewhere|Narcolepsy in conditions classified elsewhere +C1456242|T047|AB|G47.421|ICD10CM|Narcolepsy in conditions classified elsewhere with cataplexy|Narcolepsy in conditions classified elsewhere with cataplexy +C1456242|T047|PT|G47.421|ICD10CM|Narcolepsy in conditions classified elsewhere with cataplexy|Narcolepsy in conditions classified elsewhere with cataplexy +C1456241|T047|AB|G47.429|ICD10CM|Narcolepsy in conditions classified elsewhere w/o cataplexy|Narcolepsy in conditions classified elsewhere w/o cataplexy +C1456241|T047|PT|G47.429|ICD10CM|Narcolepsy in conditions classified elsewhere without cataplexy|Narcolepsy in conditions classified elsewhere without cataplexy +C0030508|T047|HT|G47.5|ICD10CM|Parasomnia|Parasomnia +C0030508|T047|AB|G47.5|ICD10CM|Parasomnia|Parasomnia +C0030508|T047|ET|G47.50|ICD10CM|Parasomnia NOS|Parasomnia NOS +C0030508|T047|AB|G47.50|ICD10CM|Parasomnia, unspecified|Parasomnia, unspecified +C0030508|T047|PT|G47.50|ICD10CM|Parasomnia, unspecified|Parasomnia, unspecified +C0752295|T048|AB|G47.51|ICD10CM|Confusional arousals|Confusional arousals +C0752295|T048|PT|G47.51|ICD10CM|Confusional arousals|Confusional arousals +C0751772|T048|PT|G47.52|ICD10CM|REM sleep behavior disorder|REM sleep behavior disorder +C0751772|T048|AB|G47.52|ICD10CM|REM sleep behavior disorder|REM sleep behavior disorder +C1561883|T046|PT|G47.53|ICD10CM|Recurrent isolated sleep paralysis|Recurrent isolated sleep paralysis +C1561883|T046|AB|G47.53|ICD10CM|Recurrent isolated sleep paralysis|Recurrent isolated sleep paralysis +C3693456|T047|PT|G47.54|ICD10CM|Parasomnia in conditions classified elsewhere|Parasomnia in conditions classified elsewhere +C3693456|T047|AB|G47.54|ICD10CM|Parasomnia in conditions classified elsewhere|Parasomnia in conditions classified elsewhere +C2875258|T047|AB|G47.59|ICD10CM|Other parasomnia|Other parasomnia +C2875258|T047|PT|G47.59|ICD10CM|Other parasomnia|Other parasomnia +C2231106|T047|AB|G47.6|ICD10CM|Sleep related movement disorders|Sleep related movement disorders +C2231106|T047|HT|G47.6|ICD10CM|Sleep related movement disorders|Sleep related movement disorders +C0751774|T047|PT|G47.61|ICD10CM|Periodic limb movement disorder|Periodic limb movement disorder +C0751774|T047|AB|G47.61|ICD10CM|Periodic limb movement disorder|Periodic limb movement disorder +C1561888|T047|AB|G47.62|ICD10CM|Sleep related leg cramps|Sleep related leg cramps +C1561888|T047|PT|G47.62|ICD10CM|Sleep related leg cramps|Sleep related leg cramps +C0393774|T047|PT|G47.63|ICD10CM|Sleep related bruxism|Sleep related bruxism +C0393774|T047|AB|G47.63|ICD10CM|Sleep related bruxism|Sleep related bruxism +C2875259|T047|AB|G47.69|ICD10CM|Other sleep related movement disorders|Other sleep related movement disorders +C2875259|T047|PT|G47.69|ICD10CM|Other sleep related movement disorders|Other sleep related movement disorders +C0236993|T048|PT|G47.8|ICD10|Other sleep disorders|Other sleep disorders +C0236993|T048|PT|G47.8|ICD10CM|Other sleep disorders|Other sleep disorders +C0236993|T048|AB|G47.8|ICD10CM|Other sleep disorders|Other sleep disorders +C4237339|T048|ET|G47.8|ICD10CM|Other specified sleep-wake disorder|Other specified sleep-wake disorder +C0851578|T048|ET|G47.9|ICD10CM|Sleep disorder NOS|Sleep disorder NOS +C0851578|T048|PT|G47.9|ICD10CM|Sleep disorder, unspecified|Sleep disorder, unspecified +C0851578|T048|AB|G47.9|ICD10CM|Sleep disorder, unspecified|Sleep disorder, unspecified +C0851578|T048|PT|G47.9|ICD10|Sleep disorder, unspecified|Sleep disorder, unspecified +C4237483|T048|ET|G47.9|ICD10CM|Unspecified sleep-wake disorder|Unspecified sleep-wake disorder +C4290122|T047|ET|G50|ICD10CM|disorders of 5th cranial nerve|disorders of 5th cranial nerve +C0152177|T047|HT|G50|ICD10|Disorders of trigeminal nerve|Disorders of trigeminal nerve +C0152177|T047|AB|G50|ICD10CM|Disorders of trigeminal nerve|Disorders of trigeminal nerve +C0152177|T047|HT|G50|ICD10CM|Disorders of trigeminal nerve|Disorders of trigeminal nerve +C0694454|T047|HT|G50-G59|ICD10CM|Nerve, nerve root and plexus disorders (G50-G59)|Nerve, nerve root and plexus disorders (G50-G59) +C0694454|T047|HT|G50-G59.9|ICD10|Nerve, nerve root and plexus disorders|Nerve, nerve root and plexus disorders +C1406705|T047|ET|G50.0|ICD10CM|Syndrome of paroxysmal facial pain|Syndrome of paroxysmal facial pain +C0040997|T047|ET|G50.0|ICD10CM|Tic douloureux|Tic douloureux +C0040997|T047|PT|G50.0|ICD10CM|Trigeminal neuralgia|Trigeminal neuralgia +C0040997|T047|AB|G50.0|ICD10CM|Trigeminal neuralgia|Trigeminal neuralgia +C0040997|T047|PT|G50.0|ICD10|Trigeminal neuralgia|Trigeminal neuralgia +C0154729|T184|PT|G50.1|ICD10|Atypical facial pain|Atypical facial pain +C0154729|T184|PT|G50.1|ICD10CM|Atypical facial pain|Atypical facial pain +C0154729|T184|AB|G50.1|ICD10CM|Atypical facial pain|Atypical facial pain +C0477380|T047|PT|G50.8|ICD10CM|Other disorders of trigeminal nerve|Other disorders of trigeminal nerve +C0477380|T047|AB|G50.8|ICD10CM|Other disorders of trigeminal nerve|Other disorders of trigeminal nerve +C0477380|T047|PT|G50.8|ICD10|Other disorders of trigeminal nerve|Other disorders of trigeminal nerve +C0152177|T047|PT|G50.9|ICD10CM|Disorder of trigeminal nerve, unspecified|Disorder of trigeminal nerve, unspecified +C0152177|T047|AB|G50.9|ICD10CM|Disorder of trigeminal nerve, unspecified|Disorder of trigeminal nerve, unspecified +C0152177|T047|PT|G50.9|ICD10|Disorder of trigeminal nerve, unspecified|Disorder of trigeminal nerve, unspecified +C4290123|T047|ET|G51|ICD10CM|disorders of 7th cranial nerve|disorders of 7th cranial nerve +C0015464|T047|HT|G51|ICD10|Facial nerve disorders|Facial nerve disorders +C0015464|T047|HT|G51|ICD10CM|Facial nerve disorders|Facial nerve disorders +C0015464|T047|AB|G51|ICD10CM|Facial nerve disorders|Facial nerve disorders +C0376175|T047|PT|G51.0|ICD10|Bell's palsy|Bell's palsy +C0376175|T047|PT|G51.0|ICD10CM|Bell's palsy|Bell's palsy +C0376175|T047|AB|G51.0|ICD10CM|Bell's palsy|Bell's palsy +C0015469|T047|ET|G51.0|ICD10CM|Facial palsy|Facial palsy +C0017407|T047|PT|G51.1|ICD10CM|Geniculate ganglionitis|Geniculate ganglionitis +C0017407|T047|AB|G51.1|ICD10CM|Geniculate ganglionitis|Geniculate ganglionitis +C0017407|T047|PT|G51.1|ICD10|Geniculate ganglionitis|Geniculate ganglionitis +C0025235|T047|ET|G51.2|ICD10CM|Melkersson-Rosenthal syndrome|Melkersson-Rosenthal syndrome +C0025235|T047|PT|G51.2|ICD10CM|Melkersson's syndrome|Melkersson's syndrome +C0025235|T047|AB|G51.2|ICD10CM|Melkersson's syndrome|Melkersson's syndrome +C0025235|T047|PT|G51.2|ICD10|Melkersson's syndrome|Melkersson's syndrome +C3536936|T047|PT|G51.3|ICD10|Clonic hemifacial spasm|Clonic hemifacial spasm +C3536936|T047|AB|G51.3|ICD10CM|Clonic hemifacial spasm|Clonic hemifacial spasm +C3536936|T047|HT|G51.3|ICD10CM|Clonic hemifacial spasm|Clonic hemifacial spasm +C4554210|T047|AB|G51.31|ICD10CM|Clonic hemifacial spasm, right|Clonic hemifacial spasm, right +C4554210|T047|PT|G51.31|ICD10CM|Clonic hemifacial spasm, right|Clonic hemifacial spasm, right +C4554211|T047|AB|G51.32|ICD10CM|Clonic hemifacial spasm, left|Clonic hemifacial spasm, left +C4554211|T047|PT|G51.32|ICD10CM|Clonic hemifacial spasm, left|Clonic hemifacial spasm, left +C4554212|T047|AB|G51.33|ICD10CM|Clonic hemifacial spasm, bilateral|Clonic hemifacial spasm, bilateral +C4554212|T047|PT|G51.33|ICD10CM|Clonic hemifacial spasm, bilateral|Clonic hemifacial spasm, bilateral +C4554213|T047|AB|G51.39|ICD10CM|Clonic hemifacial spasm, unspecified|Clonic hemifacial spasm, unspecified +C4554213|T047|PT|G51.39|ICD10CM|Clonic hemifacial spasm, unspecified|Clonic hemifacial spasm, unspecified +C0270871|T047|PT|G51.4|ICD10|Facial myokymia|Facial myokymia +C0270871|T047|PT|G51.4|ICD10CM|Facial myokymia|Facial myokymia +C0270871|T047|AB|G51.4|ICD10CM|Facial myokymia|Facial myokymia +C0029616|T047|PT|G51.8|ICD10|Other disorders of facial nerve|Other disorders of facial nerve +C0029616|T047|AB|G51.8|ICD10CM|Other disorders of facial nerve|Other disorders of facial nerve +C0029616|T047|PT|G51.8|ICD10CM|Other disorders of facial nerve|Other disorders of facial nerve +C0015464|T047|PT|G51.9|ICD10CM|Disorder of facial nerve, unspecified|Disorder of facial nerve, unspecified +C0015464|T047|AB|G51.9|ICD10CM|Disorder of facial nerve, unspecified|Disorder of facial nerve, unspecified +C0015464|T047|PT|G51.9|ICD10|Disorder of facial nerve, unspecified|Disorder of facial nerve, unspecified +C0154730|T047|HT|G52|ICD10|Disorders of other cranial nerves|Disorders of other cranial nerves +C0154730|T047|HT|G52|ICD10CM|Disorders of other cranial nerves|Disorders of other cranial nerves +C0154730|T047|AB|G52|ICD10CM|Disorders of other cranial nerves|Disorders of other cranial nerves +C2875260|T047|ET|G52.0|ICD10CM|Disorders of 1st cranial nerve|Disorders of 1st cranial nerve +C0751937|T047|PT|G52.0|ICD10|Disorders of olfactory nerve|Disorders of olfactory nerve +C0751937|T047|PT|G52.0|ICD10CM|Disorders of olfactory nerve|Disorders of olfactory nerve +C0751937|T047|AB|G52.0|ICD10CM|Disorders of olfactory nerve|Disorders of olfactory nerve +C2875261|T046|ET|G52.1|ICD10CM|Disorder of 9th cranial nerve|Disorder of 9th cranial nerve +C0751941|T047|PT|G52.1|ICD10CM|Disorders of glossopharyngeal nerve|Disorders of glossopharyngeal nerve +C0751941|T047|AB|G52.1|ICD10CM|Disorders of glossopharyngeal nerve|Disorders of glossopharyngeal nerve +C0751941|T047|PT|G52.1|ICD10|Disorders of glossopharyngeal nerve|Disorders of glossopharyngeal nerve +C0154731|T047|ET|G52.1|ICD10CM|Glossopharyngeal neuralgia|Glossopharyngeal neuralgia +C0152179|T047|ET|G52.2|ICD10CM|Disorders of pneumogastric [10th] nerve|Disorders of pneumogastric [10th] nerve +C0152179|T047|PT|G52.2|ICD10CM|Disorders of vagus nerve|Disorders of vagus nerve +C0152179|T047|AB|G52.2|ICD10CM|Disorders of vagus nerve|Disorders of vagus nerve +C0152179|T047|PT|G52.2|ICD10|Disorders of vagus nerve|Disorders of vagus nerve +C0152181|T047|ET|G52.3|ICD10CM|Disorders of 12th cranial nerve|Disorders of 12th cranial nerve +C0152181|T047|PT|G52.3|ICD10CM|Disorders of hypoglossal nerve|Disorders of hypoglossal nerve +C0152181|T047|AB|G52.3|ICD10CM|Disorders of hypoglossal nerve|Disorders of hypoglossal nerve +C0152181|T047|PT|G52.3|ICD10|Disorders of hypoglossal nerve|Disorders of hypoglossal nerve +C0154733|T047|PT|G52.7|ICD10|Disorders of multiple cranial nerves|Disorders of multiple cranial nerves +C0154733|T047|PT|G52.7|ICD10CM|Disorders of multiple cranial nerves|Disorders of multiple cranial nerves +C0154733|T047|AB|G52.7|ICD10CM|Disorders of multiple cranial nerves|Disorders of multiple cranial nerves +C0270886|T047|ET|G52.7|ICD10CM|Polyneuritis cranialis|Polyneuritis cranialis +C0494481|T047|PT|G52.8|ICD10CM|Disorders of other specified cranial nerves|Disorders of other specified cranial nerves +C0494481|T047|AB|G52.8|ICD10CM|Disorders of other specified cranial nerves|Disorders of other specified cranial nerves +C0494481|T047|PT|G52.8|ICD10|Disorders of other specified cranial nerves|Disorders of other specified cranial nerves +C0010266|T047|PT|G52.9|ICD10CM|Cranial nerve disorder, unspecified|Cranial nerve disorder, unspecified +C0010266|T047|AB|G52.9|ICD10CM|Cranial nerve disorder, unspecified|Cranial nerve disorder, unspecified +C0010266|T047|PT|G52.9|ICD10|Cranial nerve disorder, unspecified|Cranial nerve disorder, unspecified +C0694475|T047|HT|G53|ICD10|Cranial nerve disorders in diseases classified elsewhere|Cranial nerve disorders in diseases classified elsewhere +C0694475|T047|AB|G53|ICD10CM|Cranial nerve disorders in diseases classified elsewhere|Cranial nerve disorders in diseases classified elsewhere +C0694475|T047|PT|G53|ICD10CM|Cranial nerve disorders in diseases classified elsewhere|Cranial nerve disorders in diseases classified elsewhere +C0032768|T047|PT|G53.0|ICD10|Postzoster neuralgia|Postzoster neuralgia +C0477381|T047|PT|G53.1|ICD10|Multiple cranial nerve palsies in infectious and parasitic diseases classified elsewhere|Multiple cranial nerve palsies in infectious and parasitic diseases classified elsewhere +C0451646|T047|PT|G53.2|ICD10|Multiple cranial nerve palsies in sarcoidosis|Multiple cranial nerve palsies in sarcoidosis +C0451647|T191|PT|G53.3|ICD10|Multiple cranial nerve palsies in neoplastic disease|Multiple cranial nerve palsies in neoplastic disease +C0477383|T047|PT|G53.8|ICD10|Other cranial nerve disorders in other diseases classified elsewhere|Other cranial nerve disorders in other diseases classified elsewhere +C0270890|T047|HT|G54|ICD10|Nerve root and plexus disorders|Nerve root and plexus disorders +C0270890|T047|HT|G54|ICD10CM|Nerve root and plexus disorders|Nerve root and plexus disorders +C0270890|T047|AB|G54|ICD10CM|Nerve root and plexus disorders|Nerve root and plexus disorders +C0700251|T047|PT|G54.0|ICD10|Brachial plexus disorders|Brachial plexus disorders +C0700251|T047|PT|G54.0|ICD10CM|Brachial plexus disorders|Brachial plexus disorders +C0700251|T047|AB|G54.0|ICD10CM|Brachial plexus disorders|Brachial plexus disorders +C0039984|T047|ET|G54.0|ICD10CM|Thoracic outlet syndrome|Thoracic outlet syndrome +C0392020|T047|PT|G54.1|ICD10|Lumbosacral plexus disorders|Lumbosacral plexus disorders +C0392020|T047|PT|G54.1|ICD10CM|Lumbosacral plexus disorders|Lumbosacral plexus disorders +C0392020|T047|AB|G54.1|ICD10CM|Lumbosacral plexus disorders|Lumbosacral plexus disorders +C0869207|T047|PT|G54.2|ICD10|Cervical root disorders, not elsewhere classified|Cervical root disorders, not elsewhere classified +C0869207|T047|PT|G54.2|ICD10CM|Cervical root disorders, not elsewhere classified|Cervical root disorders, not elsewhere classified +C0869207|T047|AB|G54.2|ICD10CM|Cervical root disorders, not elsewhere classified|Cervical root disorders, not elsewhere classified +C0868841|T047|PT|G54.3|ICD10CM|Thoracic root disorders, not elsewhere classified|Thoracic root disorders, not elsewhere classified +C0868841|T047|AB|G54.3|ICD10CM|Thoracic root disorders, not elsewhere classified|Thoracic root disorders, not elsewhere classified +C0868841|T047|PT|G54.3|ICD10|Thoracic root disorders, not elsewhere classified|Thoracic root disorders, not elsewhere classified +C0851334|T047|PT|G54.4|ICD10|Lumbosacral root disorders, not elsewhere classified|Lumbosacral root disorders, not elsewhere classified +C0851334|T047|PT|G54.4|ICD10CM|Lumbosacral root disorders, not elsewhere classified|Lumbosacral root disorders, not elsewhere classified +C0851334|T047|AB|G54.4|ICD10CM|Lumbosacral root disorders, not elsewhere classified|Lumbosacral root disorders, not elsewhere classified +C1510479|T047|PT|G54.5|ICD10CM|Neuralgic amyotrophy|Neuralgic amyotrophy +C1510479|T047|AB|G54.5|ICD10CM|Neuralgic amyotrophy|Neuralgic amyotrophy +C1510479|T047|PT|G54.5|ICD10|Neuralgic amyotrophy|Neuralgic amyotrophy +C0221759|T047|ET|G54.5|ICD10CM|Parsonage-Aldren-Turner syndrome|Parsonage-Aldren-Turner syndrome +C1408140|T047|ET|G54.5|ICD10CM|Shoulder-girdle neuritis|Shoulder-girdle neuritis +C0031315|T047|PT|G54.6|ICD10CM|Phantom limb syndrome with pain|Phantom limb syndrome with pain +C0031315|T047|AB|G54.6|ICD10CM|Phantom limb syndrome with pain|Phantom limb syndrome with pain +C0031315|T047|PT|G54.6|ICD10|Phantom limb syndrome with pain|Phantom limb syndrome with pain +C0031315|T047|ET|G54.7|ICD10CM|Phantom limb syndrome NOS|Phantom limb syndrome NOS +C0452135|T047|PT|G54.7|ICD10|Phantom limb syndrome without pain|Phantom limb syndrome without pain +C0452135|T047|PT|G54.7|ICD10CM|Phantom limb syndrome without pain|Phantom limb syndrome without pain +C0452135|T047|AB|G54.7|ICD10CM|Phantom limb syndrome without pain|Phantom limb syndrome without pain +C0154739|T047|PT|G54.8|ICD10CM|Other nerve root and plexus disorders|Other nerve root and plexus disorders +C0154739|T047|AB|G54.8|ICD10CM|Other nerve root and plexus disorders|Other nerve root and plexus disorders +C0154739|T047|PT|G54.8|ICD10|Other nerve root and plexus disorders|Other nerve root and plexus disorders +C0270890|T047|PT|G54.9|ICD10|Nerve root and plexus disorder, unspecified|Nerve root and plexus disorder, unspecified +C0270890|T047|PT|G54.9|ICD10CM|Nerve root and plexus disorder, unspecified|Nerve root and plexus disorder, unspecified +C0270890|T047|AB|G54.9|ICD10CM|Nerve root and plexus disorder, unspecified|Nerve root and plexus disorder, unspecified +C0451665|T047|AB|G55|ICD10CM|Nerve root and plexus compressions in diseases classd elswhr|Nerve root and plexus compressions in diseases classd elswhr +C0451665|T047|PT|G55|ICD10CM|Nerve root and plexus compressions in diseases classified elsewhere|Nerve root and plexus compressions in diseases classified elsewhere +C0451665|T047|HT|G55|ICD10|Nerve root and plexus compressions in diseases classified elsewhere|Nerve root and plexus compressions in diseases classified elsewhere +C0451666|T191|PT|G55.0|ICD10|Nerve root and plexus compressions in neoplastic disease|Nerve root and plexus compressions in neoplastic disease +C0451667|T047|PT|G55.1|ICD10|Nerve root and plexus compressions in intervertebral disc disorders|Nerve root and plexus compressions in intervertebral disc disorders +C0451668|T047|PT|G55.2|ICD10|Nerve root and plexus compressions in spondylosis|Nerve root and plexus compressions in spondylosis +C0477385|T047|PT|G55.3|ICD10|Nerve root and plexus compressions in other dorsopathies|Nerve root and plexus compressions in other dorsopathies +C0477386|T047|PT|G55.8|ICD10|Nerve root and plexus compressions in other diseases classified elsewhere|Nerve root and plexus compressions in other diseases classified elsewhere +C0494487|T047|HT|G56|ICD10|Mononeuropathies of upper limb|Mononeuropathies of upper limb +C0494487|T047|AB|G56|ICD10CM|Mononeuropathies of upper limb|Mononeuropathies of upper limb +C0494487|T047|HT|G56|ICD10CM|Mononeuropathies of upper limb|Mononeuropathies of upper limb +C0007286|T047|PT|G56.0|ICD10|Carpal tunnel syndrome|Carpal tunnel syndrome +C0007286|T047|HT|G56.0|ICD10CM|Carpal tunnel syndrome|Carpal tunnel syndrome +C0007286|T047|AB|G56.0|ICD10CM|Carpal tunnel syndrome|Carpal tunnel syndrome +C0007286|T047|AB|G56.00|ICD10CM|Carpal tunnel syndrome, unspecified upper limb|Carpal tunnel syndrome, unspecified upper limb +C0007286|T047|PT|G56.00|ICD10CM|Carpal tunnel syndrome, unspecified upper limb|Carpal tunnel syndrome, unspecified upper limb +C2875263|T047|AB|G56.01|ICD10CM|Carpal tunnel syndrome, right upper limb|Carpal tunnel syndrome, right upper limb +C2875263|T047|PT|G56.01|ICD10CM|Carpal tunnel syndrome, right upper limb|Carpal tunnel syndrome, right upper limb +C2875264|T047|AB|G56.02|ICD10CM|Carpal tunnel syndrome, left upper limb|Carpal tunnel syndrome, left upper limb +C2875264|T047|PT|G56.02|ICD10CM|Carpal tunnel syndrome, left upper limb|Carpal tunnel syndrome, left upper limb +C4268309|T047|AB|G56.03|ICD10CM|Carpal tunnel syndrome, bilateral upper limbs|Carpal tunnel syndrome, bilateral upper limbs +C4268309|T047|PT|G56.03|ICD10CM|Carpal tunnel syndrome, bilateral upper limbs|Carpal tunnel syndrome, bilateral upper limbs +C0154742|T046|PT|G56.1|ICD10|Other lesions of median nerve|Other lesions of median nerve +C0154742|T046|HT|G56.1|ICD10CM|Other lesions of median nerve|Other lesions of median nerve +C0154742|T046|AB|G56.1|ICD10CM|Other lesions of median nerve|Other lesions of median nerve +C0154742|T046|AB|G56.10|ICD10CM|Other lesions of median nerve, unspecified upper limb|Other lesions of median nerve, unspecified upper limb +C0154742|T046|PT|G56.10|ICD10CM|Other lesions of median nerve, unspecified upper limb|Other lesions of median nerve, unspecified upper limb +C2875265|T047|AB|G56.11|ICD10CM|Other lesions of median nerve, right upper limb|Other lesions of median nerve, right upper limb +C2875265|T047|PT|G56.11|ICD10CM|Other lesions of median nerve, right upper limb|Other lesions of median nerve, right upper limb +C2875266|T047|AB|G56.12|ICD10CM|Other lesions of median nerve, left upper limb|Other lesions of median nerve, left upper limb +C2875266|T047|PT|G56.12|ICD10CM|Other lesions of median nerve, left upper limb|Other lesions of median nerve, left upper limb +C4268310|T046|AB|G56.13|ICD10CM|Other lesions of median nerve, bilateral upper limbs|Other lesions of median nerve, bilateral upper limbs +C4268310|T046|PT|G56.13|ICD10CM|Other lesions of median nerve, bilateral upper limbs|Other lesions of median nerve, bilateral upper limbs +C1288279|T047|PT|G56.2|ICD10|Lesion of ulnar nerve|Lesion of ulnar nerve +C1288279|T047|HT|G56.2|ICD10CM|Lesion of ulnar nerve|Lesion of ulnar nerve +C1288279|T047|AB|G56.2|ICD10CM|Lesion of ulnar nerve|Lesion of ulnar nerve +C0270906|T047|ET|G56.2|ICD10CM|Tardy ulnar nerve palsy|Tardy ulnar nerve palsy +C1288279|T047|AB|G56.20|ICD10CM|Lesion of ulnar nerve, unspecified upper limb|Lesion of ulnar nerve, unspecified upper limb +C1288279|T047|PT|G56.20|ICD10CM|Lesion of ulnar nerve, unspecified upper limb|Lesion of ulnar nerve, unspecified upper limb +C2875267|T047|AB|G56.21|ICD10CM|Lesion of ulnar nerve, right upper limb|Lesion of ulnar nerve, right upper limb +C2875267|T047|PT|G56.21|ICD10CM|Lesion of ulnar nerve, right upper limb|Lesion of ulnar nerve, right upper limb +C2875268|T047|AB|G56.22|ICD10CM|Lesion of ulnar nerve, left upper limb|Lesion of ulnar nerve, left upper limb +C2875268|T047|PT|G56.22|ICD10CM|Lesion of ulnar nerve, left upper limb|Lesion of ulnar nerve, left upper limb +C4268311|T047|AB|G56.23|ICD10CM|Lesion of ulnar nerve, bilateral upper limbs|Lesion of ulnar nerve, bilateral upper limbs +C4268311|T047|PT|G56.23|ICD10CM|Lesion of ulnar nerve, bilateral upper limbs|Lesion of ulnar nerve, bilateral upper limbs +C0154744|T047|HT|G56.3|ICD10CM|Lesion of radial nerve|Lesion of radial nerve +C0154744|T047|AB|G56.3|ICD10CM|Lesion of radial nerve|Lesion of radial nerve +C0154744|T047|PT|G56.3|ICD10|Lesion of radial nerve|Lesion of radial nerve +C0154744|T047|AB|G56.30|ICD10CM|Lesion of radial nerve, unspecified upper limb|Lesion of radial nerve, unspecified upper limb +C0154744|T047|PT|G56.30|ICD10CM|Lesion of radial nerve, unspecified upper limb|Lesion of radial nerve, unspecified upper limb +C2875269|T047|AB|G56.31|ICD10CM|Lesion of radial nerve, right upper limb|Lesion of radial nerve, right upper limb +C2875269|T047|PT|G56.31|ICD10CM|Lesion of radial nerve, right upper limb|Lesion of radial nerve, right upper limb +C2875270|T047|AB|G56.32|ICD10CM|Lesion of radial nerve, left upper limb|Lesion of radial nerve, left upper limb +C2875270|T047|PT|G56.32|ICD10CM|Lesion of radial nerve, left upper limb|Lesion of radial nerve, left upper limb +C4268312|T047|AB|G56.33|ICD10CM|Lesion of radial nerve, bilateral upper limbs|Lesion of radial nerve, bilateral upper limbs +C4268312|T047|PT|G56.33|ICD10CM|Lesion of radial nerve, bilateral upper limbs|Lesion of radial nerve, bilateral upper limbs +C0007462|T047|PT|G56.4|ICD10|Causalgia|Causalgia +C1443291|T047|HT|G56.4|ICD10CM|Causalgia of upper limb|Causalgia of upper limb +C1443291|T047|AB|G56.4|ICD10CM|Causalgia of upper limb|Causalgia of upper limb +C2875271|T047|ET|G56.4|ICD10CM|Complex regional pain syndrome II of upper limb|Complex regional pain syndrome II of upper limb +C1443291|T047|AB|G56.40|ICD10CM|Causalgia of unspecified upper limb|Causalgia of unspecified upper limb +C1443291|T047|PT|G56.40|ICD10CM|Causalgia of unspecified upper limb|Causalgia of unspecified upper limb +C2921599|T047|AB|G56.41|ICD10CM|Causalgia of right upper limb|Causalgia of right upper limb +C2921599|T047|PT|G56.41|ICD10CM|Causalgia of right upper limb|Causalgia of right upper limb +C2921598|T047|AB|G56.42|ICD10CM|Causalgia of left upper limb|Causalgia of left upper limb +C2921598|T047|PT|G56.42|ICD10CM|Causalgia of left upper limb|Causalgia of left upper limb +C4268313|T047|AB|G56.43|ICD10CM|Causalgia of bilateral upper limbs|Causalgia of bilateral upper limbs +C4268313|T047|PT|G56.43|ICD10CM|Causalgia of bilateral upper limbs|Causalgia of bilateral upper limbs +C1408160|T047|ET|G56.8|ICD10CM|Interdigital neuroma of upper limb|Interdigital neuroma of upper limb +C0477387|T047|PT|G56.8|ICD10|Other mononeuropathies of upper limb|Other mononeuropathies of upper limb +C2976878|T047|AB|G56.8|ICD10CM|Other specified mononeuropathies of upper limb|Other specified mononeuropathies of upper limb +C2976878|T047|HT|G56.8|ICD10CM|Other specified mononeuropathies of upper limb|Other specified mononeuropathies of upper limb +C2976879|T047|AB|G56.80|ICD10CM|Other specified mononeuropathies of unspecified upper limb|Other specified mononeuropathies of unspecified upper limb +C2976879|T047|PT|G56.80|ICD10CM|Other specified mononeuropathies of unspecified upper limb|Other specified mononeuropathies of unspecified upper limb +C2875274|T047|AB|G56.81|ICD10CM|Other specified mononeuropathies of right upper limb|Other specified mononeuropathies of right upper limb +C2875274|T047|PT|G56.81|ICD10CM|Other specified mononeuropathies of right upper limb|Other specified mononeuropathies of right upper limb +C2875275|T047|AB|G56.82|ICD10CM|Other specified mononeuropathies of left upper limb|Other specified mononeuropathies of left upper limb +C2875275|T047|PT|G56.82|ICD10CM|Other specified mononeuropathies of left upper limb|Other specified mononeuropathies of left upper limb +C4268314|T047|AB|G56.83|ICD10CM|Other specified mononeuropathies of bilateral upper limbs|Other specified mononeuropathies of bilateral upper limbs +C4268314|T047|PT|G56.83|ICD10CM|Other specified mononeuropathies of bilateral upper limbs|Other specified mononeuropathies of bilateral upper limbs +C0494487|T047|PT|G56.9|ICD10|Mononeuropathy of upper limb, unspecified|Mononeuropathy of upper limb, unspecified +C0494487|T047|AB|G56.9|ICD10CM|Unspecified mononeuropathy of upper limb|Unspecified mononeuropathy of upper limb +C0494487|T047|HT|G56.9|ICD10CM|Unspecified mononeuropathy of upper limb|Unspecified mononeuropathy of upper limb +C0494487|T047|AB|G56.90|ICD10CM|Unspecified mononeuropathy of unspecified upper limb|Unspecified mononeuropathy of unspecified upper limb +C0494487|T047|PT|G56.90|ICD10CM|Unspecified mononeuropathy of unspecified upper limb|Unspecified mononeuropathy of unspecified upper limb +C2875276|T047|AB|G56.91|ICD10CM|Unspecified mononeuropathy of right upper limb|Unspecified mononeuropathy of right upper limb +C2875276|T047|PT|G56.91|ICD10CM|Unspecified mononeuropathy of right upper limb|Unspecified mononeuropathy of right upper limb +C2875277|T047|AB|G56.92|ICD10CM|Unspecified mononeuropathy of left upper limb|Unspecified mononeuropathy of left upper limb +C2875277|T047|PT|G56.92|ICD10CM|Unspecified mononeuropathy of left upper limb|Unspecified mononeuropathy of left upper limb +C4268315|T047|AB|G56.93|ICD10CM|Unspecified mononeuropathy of bilateral upper limbs|Unspecified mononeuropathy of bilateral upper limbs +C4268315|T047|PT|G56.93|ICD10CM|Unspecified mononeuropathy of bilateral upper limbs|Unspecified mononeuropathy of bilateral upper limbs +C0494489|T047|AB|G57|ICD10CM|Mononeuropathies of lower limb|Mononeuropathies of lower limb +C0494489|T047|HT|G57|ICD10CM|Mononeuropathies of lower limb|Mononeuropathies of lower limb +C0494489|T047|HT|G57|ICD10|Mononeuropathies of lower limb|Mononeuropathies of lower limb +C0154748|T047|PT|G57.0|ICD10|Lesion of sciatic nerve|Lesion of sciatic nerve +C0154748|T047|HT|G57.0|ICD10CM|Lesion of sciatic nerve|Lesion of sciatic nerve +C0154748|T047|AB|G57.0|ICD10CM|Lesion of sciatic nerve|Lesion of sciatic nerve +C0154748|T047|AB|G57.00|ICD10CM|Lesion of sciatic nerve, unspecified lower limb|Lesion of sciatic nerve, unspecified lower limb +C0154748|T047|PT|G57.00|ICD10CM|Lesion of sciatic nerve, unspecified lower limb|Lesion of sciatic nerve, unspecified lower limb +C2875278|T047|AB|G57.01|ICD10CM|Lesion of sciatic nerve, right lower limb|Lesion of sciatic nerve, right lower limb +C2875278|T047|PT|G57.01|ICD10CM|Lesion of sciatic nerve, right lower limb|Lesion of sciatic nerve, right lower limb +C2875279|T047|AB|G57.02|ICD10CM|Lesion of sciatic nerve, left lower limb|Lesion of sciatic nerve, left lower limb +C2875279|T047|PT|G57.02|ICD10CM|Lesion of sciatic nerve, left lower limb|Lesion of sciatic nerve, left lower limb +C4268316|T047|AB|G57.03|ICD10CM|Lesion of sciatic nerve, bilateral lower limbs|Lesion of sciatic nerve, bilateral lower limbs +C4268316|T047|PT|G57.03|ICD10CM|Lesion of sciatic nerve, bilateral lower limbs|Lesion of sciatic nerve, bilateral lower limbs +C2875280|T047|ET|G57.1|ICD10CM|Lateral cutaneous nerve of thigh syndrome|Lateral cutaneous nerve of thigh syndrome +C0152110|T047|PT|G57.1|ICD10|Meralgia paraesthetica|Meralgia paraesthetica +C0152110|T047|HT|G57.1|ICD10CM|Meralgia paresthetica|Meralgia paresthetica +C0152110|T047|AB|G57.1|ICD10CM|Meralgia paresthetica|Meralgia paresthetica +C0152110|T047|AB|G57.10|ICD10CM|Meralgia paresthetica, unspecified lower limb|Meralgia paresthetica, unspecified lower limb +C0152110|T047|PT|G57.10|ICD10CM|Meralgia paresthetica, unspecified lower limb|Meralgia paresthetica, unspecified lower limb +C2875281|T047|AB|G57.11|ICD10CM|Meralgia paresthetica, right lower limb|Meralgia paresthetica, right lower limb +C2875281|T047|PT|G57.11|ICD10CM|Meralgia paresthetica, right lower limb|Meralgia paresthetica, right lower limb +C2875282|T047|AB|G57.12|ICD10CM|Meralgia paresthetica, left lower limb|Meralgia paresthetica, left lower limb +C2875282|T047|PT|G57.12|ICD10CM|Meralgia paresthetica, left lower limb|Meralgia paresthetica, left lower limb +C4273178|T047|AB|G57.13|ICD10CM|Meralgia paresthetica, bilateral lower limbs|Meralgia paresthetica, bilateral lower limbs +C4273178|T047|PT|G57.13|ICD10CM|Meralgia paresthetica, bilateral lower limbs|Meralgia paresthetica, bilateral lower limbs +C0751931|T047|HT|G57.2|ICD10CM|Lesion of femoral nerve|Lesion of femoral nerve +C0751931|T047|AB|G57.2|ICD10CM|Lesion of femoral nerve|Lesion of femoral nerve +C0751931|T047|PT|G57.2|ICD10|Lesion of femoral nerve|Lesion of femoral nerve +C0751931|T047|AB|G57.20|ICD10CM|Lesion of femoral nerve, unspecified lower limb|Lesion of femoral nerve, unspecified lower limb +C0751931|T047|PT|G57.20|ICD10CM|Lesion of femoral nerve, unspecified lower limb|Lesion of femoral nerve, unspecified lower limb +C2875283|T047|AB|G57.21|ICD10CM|Lesion of femoral nerve, right lower limb|Lesion of femoral nerve, right lower limb +C2875283|T047|PT|G57.21|ICD10CM|Lesion of femoral nerve, right lower limb|Lesion of femoral nerve, right lower limb +C2875284|T047|AB|G57.22|ICD10CM|Lesion of femoral nerve, left lower limb|Lesion of femoral nerve, left lower limb +C2875284|T047|PT|G57.22|ICD10CM|Lesion of femoral nerve, left lower limb|Lesion of femoral nerve, left lower limb +C4268317|T047|AB|G57.23|ICD10CM|Lesion of femoral nerve, bilateral lower limbs|Lesion of femoral nerve, bilateral lower limbs +C4268317|T047|PT|G57.23|ICD10CM|Lesion of femoral nerve, bilateral lower limbs|Lesion of femoral nerve, bilateral lower limbs +C0270909|T047|PT|G57.3|ICD10|Lesion of lateral popliteal nerve|Lesion of lateral popliteal nerve +C0270909|T047|HT|G57.3|ICD10CM|Lesion of lateral popliteal nerve|Lesion of lateral popliteal nerve +C0270909|T047|AB|G57.3|ICD10CM|Lesion of lateral popliteal nerve|Lesion of lateral popliteal nerve +C0270810|T047|ET|G57.3|ICD10CM|Peroneal nerve palsy|Peroneal nerve palsy +C0270909|T047|AB|G57.30|ICD10CM|Lesion of lateral popliteal nerve, unspecified lower limb|Lesion of lateral popliteal nerve, unspecified lower limb +C0270909|T047|PT|G57.30|ICD10CM|Lesion of lateral popliteal nerve, unspecified lower limb|Lesion of lateral popliteal nerve, unspecified lower limb +C2875285|T047|AB|G57.31|ICD10CM|Lesion of lateral popliteal nerve, right lower limb|Lesion of lateral popliteal nerve, right lower limb +C2875285|T047|PT|G57.31|ICD10CM|Lesion of lateral popliteal nerve, right lower limb|Lesion of lateral popliteal nerve, right lower limb +C2875286|T047|AB|G57.32|ICD10CM|Lesion of lateral popliteal nerve, left lower limb|Lesion of lateral popliteal nerve, left lower limb +C2875286|T047|PT|G57.32|ICD10CM|Lesion of lateral popliteal nerve, left lower limb|Lesion of lateral popliteal nerve, left lower limb +C4268318|T047|AB|G57.33|ICD10CM|Lesion of lateral popliteal nerve, bilateral lower limbs|Lesion of lateral popliteal nerve, bilateral lower limbs +C4268318|T047|PT|G57.33|ICD10CM|Lesion of lateral popliteal nerve, bilateral lower limbs|Lesion of lateral popliteal nerve, bilateral lower limbs +C1302325|T047|PT|G57.4|ICD10|Lesion of medial popliteal nerve|Lesion of medial popliteal nerve +C1302325|T047|HT|G57.4|ICD10CM|Lesion of medial popliteal nerve|Lesion of medial popliteal nerve +C1302325|T047|AB|G57.4|ICD10CM|Lesion of medial popliteal nerve|Lesion of medial popliteal nerve +C1302325|T047|AB|G57.40|ICD10CM|Lesion of medial popliteal nerve, unspecified lower limb|Lesion of medial popliteal nerve, unspecified lower limb +C1302325|T047|PT|G57.40|ICD10CM|Lesion of medial popliteal nerve, unspecified lower limb|Lesion of medial popliteal nerve, unspecified lower limb +C2875287|T047|AB|G57.41|ICD10CM|Lesion of medial popliteal nerve, right lower limb|Lesion of medial popliteal nerve, right lower limb +C2875287|T047|PT|G57.41|ICD10CM|Lesion of medial popliteal nerve, right lower limb|Lesion of medial popliteal nerve, right lower limb +C2875288|T047|AB|G57.42|ICD10CM|Lesion of medial popliteal nerve, left lower limb|Lesion of medial popliteal nerve, left lower limb +C2875288|T047|PT|G57.42|ICD10CM|Lesion of medial popliteal nerve, left lower limb|Lesion of medial popliteal nerve, left lower limb +C4268319|T047|AB|G57.43|ICD10CM|Lesion of medial popliteal nerve, bilateral lower limbs|Lesion of medial popliteal nerve, bilateral lower limbs +C4268319|T047|PT|G57.43|ICD10CM|Lesion of medial popliteal nerve, bilateral lower limbs|Lesion of medial popliteal nerve, bilateral lower limbs +C0039319|T047|HT|G57.5|ICD10CM|Tarsal tunnel syndrome|Tarsal tunnel syndrome +C0039319|T047|AB|G57.5|ICD10CM|Tarsal tunnel syndrome|Tarsal tunnel syndrome +C0039319|T047|PT|G57.5|ICD10|Tarsal tunnel syndrome|Tarsal tunnel syndrome +C0039319|T047|AB|G57.50|ICD10CM|Tarsal tunnel syndrome, unspecified lower limb|Tarsal tunnel syndrome, unspecified lower limb +C0039319|T047|PT|G57.50|ICD10CM|Tarsal tunnel syndrome, unspecified lower limb|Tarsal tunnel syndrome, unspecified lower limb +C2875289|T047|AB|G57.51|ICD10CM|Tarsal tunnel syndrome, right lower limb|Tarsal tunnel syndrome, right lower limb +C2875289|T047|PT|G57.51|ICD10CM|Tarsal tunnel syndrome, right lower limb|Tarsal tunnel syndrome, right lower limb +C2875290|T047|AB|G57.52|ICD10CM|Tarsal tunnel syndrome, left lower limb|Tarsal tunnel syndrome, left lower limb +C2875290|T047|PT|G57.52|ICD10CM|Tarsal tunnel syndrome, left lower limb|Tarsal tunnel syndrome, left lower limb +C4268320|T047|AB|G57.53|ICD10CM|Tarsal tunnel syndrome, bilateral lower limbs|Tarsal tunnel syndrome, bilateral lower limbs +C4268320|T047|PT|G57.53|ICD10CM|Tarsal tunnel syndrome, bilateral lower limbs|Tarsal tunnel syndrome, bilateral lower limbs +C0154752|T047|HT|G57.6|ICD10CM|Lesion of plantar nerve|Lesion of plantar nerve +C0154752|T047|AB|G57.6|ICD10CM|Lesion of plantar nerve|Lesion of plantar nerve +C0154752|T047|PT|G57.6|ICD10|Lesion of plantar nerve|Lesion of plantar nerve +C0311337|T047|ET|G57.6|ICD10CM|Morton's metatarsalgia|Morton's metatarsalgia +C0154752|T047|AB|G57.60|ICD10CM|Lesion of plantar nerve, unspecified lower limb|Lesion of plantar nerve, unspecified lower limb +C0154752|T047|PT|G57.60|ICD10CM|Lesion of plantar nerve, unspecified lower limb|Lesion of plantar nerve, unspecified lower limb +C2875291|T047|AB|G57.61|ICD10CM|Lesion of plantar nerve, right lower limb|Lesion of plantar nerve, right lower limb +C2875291|T047|PT|G57.61|ICD10CM|Lesion of plantar nerve, right lower limb|Lesion of plantar nerve, right lower limb +C2875292|T047|AB|G57.62|ICD10CM|Lesion of plantar nerve, left lower limb|Lesion of plantar nerve, left lower limb +C2875292|T047|PT|G57.62|ICD10CM|Lesion of plantar nerve, left lower limb|Lesion of plantar nerve, left lower limb +C4270807|T047|AB|G57.63|ICD10CM|Lesion of plantar nerve, bilateral lower limbs|Lesion of plantar nerve, bilateral lower limbs +C4270807|T047|PT|G57.63|ICD10CM|Lesion of plantar nerve, bilateral lower limbs|Lesion of plantar nerve, bilateral lower limbs +C0375242|T047|HT|G57.7|ICD10CM|Causalgia of lower limb|Causalgia of lower limb +C0375242|T047|AB|G57.7|ICD10CM|Causalgia of lower limb|Causalgia of lower limb +C2875293|T047|ET|G57.7|ICD10CM|Complex regional pain syndrome II of lower limb|Complex regional pain syndrome II of lower limb +C0375242|T047|AB|G57.70|ICD10CM|Causalgia of unspecified lower limb|Causalgia of unspecified lower limb +C0375242|T047|PT|G57.70|ICD10CM|Causalgia of unspecified lower limb|Causalgia of unspecified lower limb +C2875294|T047|AB|G57.71|ICD10CM|Causalgia of right lower limb|Causalgia of right lower limb +C2875294|T047|PT|G57.71|ICD10CM|Causalgia of right lower limb|Causalgia of right lower limb +C2875295|T047|AB|G57.72|ICD10CM|Causalgia of left lower limb|Causalgia of left lower limb +C2875295|T047|PT|G57.72|ICD10CM|Causalgia of left lower limb|Causalgia of left lower limb +C4268321|T047|AB|G57.73|ICD10CM|Causalgia of bilateral lower limbs|Causalgia of bilateral lower limbs +C4268321|T047|PT|G57.73|ICD10CM|Causalgia of bilateral lower limbs|Causalgia of bilateral lower limbs +C1401117|T047|ET|G57.8|ICD10CM|Interdigital neuroma of lower limb|Interdigital neuroma of lower limb +C0477388|T047|PT|G57.8|ICD10|Other mononeuropathies of lower limb|Other mononeuropathies of lower limb +C2976880|T047|AB|G57.8|ICD10CM|Other specified mononeuropathies of lower limb|Other specified mononeuropathies of lower limb +C2976880|T047|HT|G57.8|ICD10CM|Other specified mononeuropathies of lower limb|Other specified mononeuropathies of lower limb +C2976881|T047|AB|G57.80|ICD10CM|Other specified mononeuropathies of unspecified lower limb|Other specified mononeuropathies of unspecified lower limb +C2976881|T047|PT|G57.80|ICD10CM|Other specified mononeuropathies of unspecified lower limb|Other specified mononeuropathies of unspecified lower limb +C2875296|T047|AB|G57.81|ICD10CM|Other specified mononeuropathies of right lower limb|Other specified mononeuropathies of right lower limb +C2875296|T047|PT|G57.81|ICD10CM|Other specified mononeuropathies of right lower limb|Other specified mononeuropathies of right lower limb +C2875297|T047|AB|G57.82|ICD10CM|Other specified mononeuropathies of left lower limb|Other specified mononeuropathies of left lower limb +C2875297|T047|PT|G57.82|ICD10CM|Other specified mononeuropathies of left lower limb|Other specified mononeuropathies of left lower limb +C4268322|T047|AB|G57.83|ICD10CM|Other specified mononeuropathies of bilateral lower limbs|Other specified mononeuropathies of bilateral lower limbs +C4268322|T047|PT|G57.83|ICD10CM|Other specified mononeuropathies of bilateral lower limbs|Other specified mononeuropathies of bilateral lower limbs +C0494489|T047|PT|G57.9|ICD10|Mononeuropathy of lower limb, unspecified|Mononeuropathy of lower limb, unspecified +C0494489|T047|AB|G57.9|ICD10CM|Unspecified mononeuropathy of lower limb|Unspecified mononeuropathy of lower limb +C0494489|T047|HT|G57.9|ICD10CM|Unspecified mononeuropathy of lower limb|Unspecified mononeuropathy of lower limb +C0494489|T047|AB|G57.90|ICD10CM|Unspecified mononeuropathy of unspecified lower limb|Unspecified mononeuropathy of unspecified lower limb +C0494489|T047|PT|G57.90|ICD10CM|Unspecified mononeuropathy of unspecified lower limb|Unspecified mononeuropathy of unspecified lower limb +C2875298|T047|AB|G57.91|ICD10CM|Unspecified mononeuropathy of right lower limb|Unspecified mononeuropathy of right lower limb +C2875298|T047|PT|G57.91|ICD10CM|Unspecified mononeuropathy of right lower limb|Unspecified mononeuropathy of right lower limb +C2875299|T047|AB|G57.92|ICD10CM|Unspecified mononeuropathy of left lower limb|Unspecified mononeuropathy of left lower limb +C2875299|T047|PT|G57.92|ICD10CM|Unspecified mononeuropathy of left lower limb|Unspecified mononeuropathy of left lower limb +C4268323|T047|AB|G57.93|ICD10CM|Unspecified mononeuropathy of bilateral lower limbs|Unspecified mononeuropathy of bilateral lower limbs +C4268323|T047|PT|G57.93|ICD10CM|Unspecified mononeuropathy of bilateral lower limbs|Unspecified mononeuropathy of bilateral lower limbs +C0494490|T047|AB|G58|ICD10CM|Other mononeuropathies|Other mononeuropathies +C0494490|T047|HT|G58|ICD10CM|Other mononeuropathies|Other mononeuropathies +C0494490|T047|HT|G58|ICD10|Other mononeuropathies|Other mononeuropathies +C0393897|T047|PT|G58.0|ICD10|Intercostal neuropathy|Intercostal neuropathy +C0393897|T047|PT|G58.0|ICD10CM|Intercostal neuropathy|Intercostal neuropathy +C0393897|T047|AB|G58.0|ICD10CM|Intercostal neuropathy|Intercostal neuropathy +C0151295|T047|PT|G58.7|ICD10|Mononeuritis multiplex|Mononeuritis multiplex +C0151295|T047|PT|G58.7|ICD10CM|Mononeuritis multiplex|Mononeuritis multiplex +C0151295|T047|AB|G58.7|ICD10CM|Mononeuritis multiplex|Mononeuritis multiplex +C0477389|T047|PT|G58.8|ICD10CM|Other specified mononeuropathies|Other specified mononeuropathies +C0477389|T047|AB|G58.8|ICD10CM|Other specified mononeuropathies|Other specified mononeuropathies +C0477389|T047|PT|G58.8|ICD10|Other specified mononeuropathies|Other specified mononeuropathies +C0494491|T047|PT|G58.9|ICD10|Mononeuropathy, unspecified|Mononeuropathy, unspecified +C0494491|T047|PT|G58.9|ICD10CM|Mononeuropathy, unspecified|Mononeuropathy, unspecified +C0494491|T047|AB|G58.9|ICD10CM|Mononeuropathy, unspecified|Mononeuropathy, unspecified +C0694476|T047|PT|G59|ICD10CM|Mononeuropathy in diseases classified elsewhere|Mononeuropathy in diseases classified elsewhere +C0694476|T047|AB|G59|ICD10CM|Mononeuropathy in diseases classified elsewhere|Mononeuropathy in diseases classified elsewhere +C0694476|T047|HT|G59|ICD10|Mononeuropathy in diseases classified elsewhere|Mononeuropathy in diseases classified elsewhere +C0271678|T047|PT|G59.0|ICD10|Diabetic mononeuropathy|Diabetic mononeuropathy +C0477390|T047|PT|G59.8|ICD10|Other mononeuropathies in diseases classified elsewhere|Other mononeuropathies in diseases classified elsewhere +C0154754|T047|AB|G60|ICD10CM|Hereditary and idiopathic neuropathy|Hereditary and idiopathic neuropathy +C0154754|T047|HT|G60|ICD10CM|Hereditary and idiopathic neuropathy|Hereditary and idiopathic neuropathy +C0154754|T047|HT|G60|ICD10|Hereditary and idiopathic neuropathy|Hereditary and idiopathic neuropathy +C0477391|T047|HT|G60-G64.9|ICD10|Polyneuropathies and other disorders of the peripheral nervous system|Polyneuropathies and other disorders of the peripheral nervous system +C2976882|T047|HT|G60-G65|ICD10CM|Polyneuropathies and other disorders of the peripheral nervous system (G60-G65)|Polyneuropathies and other disorders of the peripheral nervous system (G60-G65) +C0007959|T047|ET|G60.0|ICD10CM|Charcot-Marie-Tooth disease|Charcot-Marie-Tooth disease +C0011195|T047|ET|G60.0|ICD10CM|Déjérine-Sottas disease|Déjérine-Sottas disease +C0027888|T047|PT|G60.0|ICD10CM|Hereditary motor and sensory neuropathy|Hereditary motor and sensory neuropathy +C0027888|T047|AB|G60.0|ICD10CM|Hereditary motor and sensory neuropathy|Hereditary motor and sensory neuropathy +C0027888|T047|PT|G60.0|ICD10|Hereditary motor and sensory neuropathy|Hereditary motor and sensory neuropathy +C1408182|T047|ET|G60.0|ICD10CM|Hereditary motor and sensory neuropathy, types I-IV|Hereditary motor and sensory neuropathy, types I-IV +C1408174|T047|ET|G60.0|ICD10CM|Hypertrophic neuropathy of infancy|Hypertrophic neuropathy of infancy +C2875300|T047|ET|G60.0|ICD10CM|Peroneal muscular atrophy (axonal type) (hypertrophic type)|Peroneal muscular atrophy (axonal type) (hypertrophic type) +C0205713|T047|ET|G60.0|ICD10CM|Roussy-Levy syndrome|Roussy-Levy syndrome +C0282527|T047|ET|G60.1|ICD10CM|Infantile Refsum disease|Infantile Refsum disease +C0034960|T047|PT|G60.1|ICD10|Refsum's disease|Refsum's disease +C0034960|T047|PT|G60.1|ICD10CM|Refsum's disease|Refsum's disease +C0034960|T047|AB|G60.1|ICD10CM|Refsum's disease|Refsum's disease +C0451669|T047|PT|G60.2|ICD10CM|Neuropathy in association with hereditary ataxia|Neuropathy in association with hereditary ataxia +C0451669|T047|AB|G60.2|ICD10CM|Neuropathy in association with hereditary ataxia|Neuropathy in association with hereditary ataxia +C0451669|T047|PT|G60.2|ICD10|Neuropathy in association with hereditary ataxia|Neuropathy in association with hereditary ataxia +C0494493|T047|PT|G60.3|ICD10|Idiopathic progressive neuropathy|Idiopathic progressive neuropathy +C0494493|T047|PT|G60.3|ICD10CM|Idiopathic progressive neuropathy|Idiopathic progressive neuropathy +C0494493|T047|AB|G60.3|ICD10CM|Idiopathic progressive neuropathy|Idiopathic progressive neuropathy +C2875301|T047|ET|G60.8|ICD10CM|Dominantly inherited sensory neuropathy|Dominantly inherited sensory neuropathy +C0751540|T047|ET|G60.8|ICD10CM|Morvan's disease|Morvan's disease +C2875302|T047|ET|G60.8|ICD10CM|Nelaton's syndrome|Nelaton's syndrome +C0477392|T047|PT|G60.8|ICD10|Other hereditary and idiopathic neuropathies|Other hereditary and idiopathic neuropathies +C0477392|T047|PT|G60.8|ICD10CM|Other hereditary and idiopathic neuropathies|Other hereditary and idiopathic neuropathies +C0477392|T047|AB|G60.8|ICD10CM|Other hereditary and idiopathic neuropathies|Other hereditary and idiopathic neuropathies +C2875303|T047|ET|G60.8|ICD10CM|Recessively inherited sensory neuropathy|Recessively inherited sensory neuropathy +C0154754|T047|PT|G60.9|ICD10CM|Hereditary and idiopathic neuropathy, unspecified|Hereditary and idiopathic neuropathy, unspecified +C0154754|T047|AB|G60.9|ICD10CM|Hereditary and idiopathic neuropathy, unspecified|Hereditary and idiopathic neuropathy, unspecified +C0154754|T047|PT|G60.9|ICD10|Hereditary and idiopathic neuropathy, unspecified|Hereditary and idiopathic neuropathy, unspecified +C0477402|T047|AB|G61|ICD10CM|Inflammatory polyneuropathy|Inflammatory polyneuropathy +C0477402|T047|HT|G61|ICD10CM|Inflammatory polyneuropathy|Inflammatory polyneuropathy +C0477402|T047|HT|G61|ICD10|Inflammatory polyneuropathy|Inflammatory polyneuropathy +C2875304|T047|ET|G61.0|ICD10CM|Acute (post-)infective polyneuritis|Acute (post-)infective polyneuritis +C0018378|T047|PT|G61.0|ICD10|Guillain-Barre syndrome|Guillain-Barre syndrome +C0018378|T047|PT|G61.0|ICD10CM|Guillain-Barre syndrome|Guillain-Barre syndrome +C0018378|T047|AB|G61.0|ICD10CM|Guillain-Barre syndrome|Guillain-Barre syndrome +C0393799|T047|ET|G61.0|ICD10CM|Miller Fisher Syndrome|Miller Fisher Syndrome +C0451648|T047|PT|G61.1|ICD10CM|Serum neuropathy|Serum neuropathy +C0451648|T047|AB|G61.1|ICD10CM|Serum neuropathy|Serum neuropathy +C0451648|T047|PT|G61.1|ICD10|Serum neuropathy|Serum neuropathy +C0477393|T047|PT|G61.8|ICD10|Other inflammatory polyneuropathies|Other inflammatory polyneuropathies +C0477393|T047|HT|G61.8|ICD10CM|Other inflammatory polyneuropathies|Other inflammatory polyneuropathies +C0477393|T047|AB|G61.8|ICD10CM|Other inflammatory polyneuropathies|Other inflammatory polyneuropathies +C0393819|T047|AB|G61.81|ICD10CM|Chronic inflammatory demyelinating polyneuritis|Chronic inflammatory demyelinating polyneuritis +C0393819|T047|PT|G61.81|ICD10CM|Chronic inflammatory demyelinating polyneuritis|Chronic inflammatory demyelinating polyneuritis +C0393847|T047|ET|G61.82|ICD10CM|MMN|MMN +C0393847|T047|PT|G61.82|ICD10CM|Multifocal motor neuropathy|Multifocal motor neuropathy +C0393847|T047|AB|G61.82|ICD10CM|Multifocal motor neuropathy|Multifocal motor neuropathy +C0477393|T047|PT|G61.89|ICD10CM|Other inflammatory polyneuropathies|Other inflammatory polyneuropathies +C0477393|T047|AB|G61.89|ICD10CM|Other inflammatory polyneuropathies|Other inflammatory polyneuropathies +C0477402|T047|PT|G61.9|ICD10CM|Inflammatory polyneuropathy, unspecified|Inflammatory polyneuropathy, unspecified +C0477402|T047|AB|G61.9|ICD10CM|Inflammatory polyneuropathy, unspecified|Inflammatory polyneuropathy, unspecified +C0477402|T047|PT|G61.9|ICD10|Inflammatory polyneuropathy, unspecified|Inflammatory polyneuropathy, unspecified +C2875305|T047|AB|G62|ICD10CM|Other and unspecified polyneuropathies|Other and unspecified polyneuropathies +C2875305|T047|HT|G62|ICD10CM|Other and unspecified polyneuropathies|Other and unspecified polyneuropathies +C0494494|T047|HT|G62|ICD10|Other polyneuropathies|Other polyneuropathies +C0154762|T047|PT|G62.0|ICD10|Drug-induced polyneuropathy|Drug-induced polyneuropathy +C0154762|T047|PT|G62.0|ICD10CM|Drug-induced polyneuropathy|Drug-induced polyneuropathy +C0154762|T047|AB|G62.0|ICD10CM|Drug-induced polyneuropathy|Drug-induced polyneuropathy +C0085677|T047|PT|G62.1|ICD10CM|Alcoholic polyneuropathy|Alcoholic polyneuropathy +C0085677|T047|AB|G62.1|ICD10CM|Alcoholic polyneuropathy|Alcoholic polyneuropathy +C0085677|T047|PT|G62.1|ICD10|Alcoholic polyneuropathy|Alcoholic polyneuropathy +C0154763|T047|PT|G62.2|ICD10|Polyneuropathy due to other toxic agents|Polyneuropathy due to other toxic agents +C0154763|T047|PT|G62.2|ICD10CM|Polyneuropathy due to other toxic agents|Polyneuropathy due to other toxic agents +C0154763|T047|AB|G62.2|ICD10CM|Polyneuropathy due to other toxic agents|Polyneuropathy due to other toxic agents +C0477394|T047|PT|G62.8|ICD10|Other specified polyneuropathies|Other specified polyneuropathies +C0477394|T047|HT|G62.8|ICD10CM|Other specified polyneuropathies|Other specified polyneuropathies +C0477394|T047|AB|G62.8|ICD10CM|Other specified polyneuropathies|Other specified polyneuropathies +C1135343|T047|ET|G62.81|ICD10CM|Acute motor neuropathy|Acute motor neuropathy +C0393851|T047|PT|G62.81|ICD10CM|Critical illness polyneuropathy|Critical illness polyneuropathy +C0393851|T047|AB|G62.81|ICD10CM|Critical illness polyneuropathy|Critical illness polyneuropathy +C2875306|T047|AB|G62.82|ICD10CM|Radiation-induced polyneuropathy|Radiation-induced polyneuropathy +C2875306|T047|PT|G62.82|ICD10CM|Radiation-induced polyneuropathy|Radiation-induced polyneuropathy +C0477394|T047|PT|G62.89|ICD10CM|Other specified polyneuropathies|Other specified polyneuropathies +C0477394|T047|AB|G62.89|ICD10CM|Other specified polyneuropathies|Other specified polyneuropathies +C0442874|T047|ET|G62.9|ICD10CM|Neuropathy NOS|Neuropathy NOS +C0152025|T047|PT|G62.9|ICD10CM|Polyneuropathy, unspecified|Polyneuropathy, unspecified +C0152025|T047|AB|G62.9|ICD10CM|Polyneuropathy, unspecified|Polyneuropathy, unspecified +C0152025|T047|PT|G62.9|ICD10|Polyneuropathy, unspecified|Polyneuropathy, unspecified +C0694477|T047|PT|G63|ICD10CM|Polyneuropathy in diseases classified elsewhere|Polyneuropathy in diseases classified elsewhere +C0694477|T047|AB|G63|ICD10CM|Polyneuropathy in diseases classified elsewhere|Polyneuropathy in diseases classified elsewhere +C0694477|T047|HT|G63|ICD10|Polyneuropathy in diseases classified elsewhere|Polyneuropathy in diseases classified elsewhere +C0477395|T047|PT|G63.0|ICD10|Polyneuropathy in infectious and parasitic diseases classified elsewhere|Polyneuropathy in infectious and parasitic diseases classified elsewhere +C0393842|T191|PT|G63.1|ICD10|Polyneuropathy in neoplastic disease|Polyneuropathy in neoplastic disease +C0271680|T047|PT|G63.2|ICD10|Diabetic polyneuropathy|Diabetic polyneuropathy +C0494497|T047|PT|G63.3|ICD10|Polyneuropathy in other endocrine and metabolic diseases|Polyneuropathy in other endocrine and metabolic diseases +C0494498|T047|PT|G63.4|ICD10|Polyneuropathy in nutritional deficiency|Polyneuropathy in nutritional deficiency +C0494499|T047|PT|G63.5|ICD10|Polyneuropathy in systemic connective tissue disorders|Polyneuropathy in systemic connective tissue disorders +C0494500|T047|PT|G63.6|ICD10|Polyneuropathy in other musculoskeletal disorders|Polyneuropathy in other musculoskeletal disorders +C0154761|T047|PT|G63.8|ICD10|Polyneuropathy in other diseases classified elsewhere|Polyneuropathy in other diseases classified elsewhere +C4721453|T047|ET|G64|ICD10CM|Disorder of peripheral nervous system NOS|Disorder of peripheral nervous system NOS +C0477401|T047|PT|G64|ICD10|Other disorders of peripheral nervous system|Other disorders of peripheral nervous system +C0477401|T047|PT|G64|ICD10CM|Other disorders of peripheral nervous system|Other disorders of peripheral nervous system +C0477401|T047|AB|G64|ICD10CM|Other disorders of peripheral nervous system|Other disorders of peripheral nervous system +C2875307|T046|AB|G65|ICD10CM|Sequelae of inflammatory and toxic polyneuropathies|Sequelae of inflammatory and toxic polyneuropathies +C2875307|T046|HT|G65|ICD10CM|Sequelae of inflammatory and toxic polyneuropathies|Sequelae of inflammatory and toxic polyneuropathies +C2875308|T046|PT|G65.0|ICD10CM|Sequelae of Guillain-Barré syndrome|Sequelae of Guillain-Barré syndrome +C2875308|T046|AB|G65.0|ICD10CM|Sequelae of Guillain-Barre syndrome|Sequelae of Guillain-Barre syndrome +C2875309|T046|AB|G65.1|ICD10CM|Sequelae of other inflammatory polyneuropathy|Sequelae of other inflammatory polyneuropathy +C2875309|T046|PT|G65.1|ICD10CM|Sequelae of other inflammatory polyneuropathy|Sequelae of other inflammatory polyneuropathy +C2875310|T046|AB|G65.2|ICD10CM|Sequelae of toxic polyneuropathy|Sequelae of toxic polyneuropathy +C2875310|T046|PT|G65.2|ICD10CM|Sequelae of toxic polyneuropathy|Sequelae of toxic polyneuropathy +C0494501|T047|HT|G70|ICD10|Myasthenia gravis and other myoneural disorders|Myasthenia gravis and other myoneural disorders +C0494501|T047|AB|G70|ICD10CM|Myasthenia gravis and other myoneural disorders|Myasthenia gravis and other myoneural disorders +C0494501|T047|HT|G70|ICD10CM|Myasthenia gravis and other myoneural disorders|Myasthenia gravis and other myoneural disorders +C0477403|T047|HT|G70-G73|ICD10CM|Diseases of myoneural junction and muscle (G70-G73)|Diseases of myoneural junction and muscle (G70-G73) +C0477403|T047|HT|G70-G73.9|ICD10|Diseases of myoneural junction and muscle|Diseases of myoneural junction and muscle +C0026896|T047|PT|G70.0|ICD10|Myasthenia gravis|Myasthenia gravis +C0026896|T047|AB|G70.0|ICD10CM|Myasthenia gravis|Myasthenia gravis +C0026896|T047|HT|G70.0|ICD10CM|Myasthenia gravis|Myasthenia gravis +C0026896|T047|ET|G70.00|ICD10CM|Myasthenia gravis NOS|Myasthenia gravis NOS +C1260409|T047|AB|G70.00|ICD10CM|Myasthenia gravis without (acute) exacerbation|Myasthenia gravis without (acute) exacerbation +C1260409|T047|PT|G70.00|ICD10CM|Myasthenia gravis without (acute) exacerbation|Myasthenia gravis without (acute) exacerbation +C0270942|T047|ET|G70.01|ICD10CM|Myasthenia gravis in crisis|Myasthenia gravis in crisis +C0270942|T047|AB|G70.01|ICD10CM|Myasthenia gravis with (acute) exacerbation|Myasthenia gravis with (acute) exacerbation +C0270942|T047|PT|G70.01|ICD10CM|Myasthenia gravis with (acute) exacerbation|Myasthenia gravis with (acute) exacerbation +C0393939|T047|PT|G70.1|ICD10|Toxic myoneural disorders|Toxic myoneural disorders +C0393939|T047|PT|G70.1|ICD10CM|Toxic myoneural disorders|Toxic myoneural disorders +C0393939|T047|AB|G70.1|ICD10CM|Toxic myoneural disorders|Toxic myoneural disorders +C0451670|T019|PT|G70.2|ICD10CM|Congenital and developmental myasthenia|Congenital and developmental myasthenia +C0451670|T047|PT|G70.2|ICD10CM|Congenital and developmental myasthenia|Congenital and developmental myasthenia +C0451670|T019|AB|G70.2|ICD10CM|Congenital and developmental myasthenia|Congenital and developmental myasthenia +C0451670|T047|AB|G70.2|ICD10CM|Congenital and developmental myasthenia|Congenital and developmental myasthenia +C0451670|T019|PT|G70.2|ICD10|Congenital and developmental myasthenia|Congenital and developmental myasthenia +C0451670|T047|PT|G70.2|ICD10|Congenital and developmental myasthenia|Congenital and developmental myasthenia +C0029816|T047|PT|G70.8|ICD10|Other specified myoneural disorders|Other specified myoneural disorders +C0029816|T047|HT|G70.8|ICD10CM|Other specified myoneural disorders|Other specified myoneural disorders +C0029816|T047|AB|G70.8|ICD10CM|Other specified myoneural disorders|Other specified myoneural disorders +C0022972|T047|ET|G70.80|ICD10CM|Lambert-Eaton syndrome NOS|Lambert-Eaton syndrome NOS +C3161080|T047|AB|G70.80|ICD10CM|Lambert-Eaton syndrome, unspecified|Lambert-Eaton syndrome, unspecified +C3161080|T047|PT|G70.80|ICD10CM|Lambert-Eaton syndrome, unspecified|Lambert-Eaton syndrome, unspecified +C3250442|T047|AB|G70.81|ICD10CM|Lambert-Eaton syndrome in disease classified elsewhere|Lambert-Eaton syndrome in disease classified elsewhere +C3250442|T047|PT|G70.81|ICD10CM|Lambert-Eaton syndrome in disease classified elsewhere|Lambert-Eaton syndrome in disease classified elsewhere +C0029816|T047|AB|G70.89|ICD10CM|Other specified myoneural disorders|Other specified myoneural disorders +C0029816|T047|PT|G70.89|ICD10CM|Other specified myoneural disorders|Other specified myoneural disorders +C0027868|T047|PT|G70.9|ICD10CM|Myoneural disorder, unspecified|Myoneural disorder, unspecified +C0027868|T047|AB|G70.9|ICD10CM|Myoneural disorder, unspecified|Myoneural disorder, unspecified +C0027868|T047|PT|G70.9|ICD10|Myoneural disorder, unspecified|Myoneural disorder, unspecified +C0494503|T047|HT|G71|ICD10|Primary disorders of muscles|Primary disorders of muscles +C0494503|T047|AB|G71|ICD10CM|Primary disorders of muscles|Primary disorders of muscles +C0494503|T047|HT|G71|ICD10CM|Primary disorders of muscles|Primary disorders of muscles +C0026850|T047|PT|G71.0|ICD10|Muscular dystrophy|Muscular dystrophy +C0026850|T047|AB|G71.0|ICD10CM|Muscular dystrophy|Muscular dystrophy +C0026850|T047|HT|G71.0|ICD10CM|Muscular dystrophy|Muscular dystrophy +C4554214|T047|AB|G71.00|ICD10CM|Muscular dystrophy, unspecified|Muscular dystrophy, unspecified +C4554214|T047|PT|G71.00|ICD10CM|Muscular dystrophy, unspecified|Muscular dystrophy, unspecified +C4718783|T047|ET|G71.01|ICD10CM|Benign [Becker] muscular dystrophy|Benign [Becker] muscular dystrophy +C4554215|T047|PT|G71.01|ICD10CM|Duchenne or Becker muscular dystrophy|Duchenne or Becker muscular dystrophy +C4554215|T047|AB|G71.01|ICD10CM|Duchenne or Becker muscular dystrophy|Duchenne or Becker muscular dystrophy +C2875313|T047|ET|G71.01|ICD10CM|Severe [Duchenne] muscular dystrophy|Severe [Duchenne] muscular dystrophy +C0238288|T047|PT|G71.02|ICD10CM|Facioscapulohumeral muscular dystrophy|Facioscapulohumeral muscular dystrophy +C0238288|T047|AB|G71.02|ICD10CM|Facioscapulohumeral muscular dystrophy|Facioscapulohumeral muscular dystrophy +C0410192|T047|ET|G71.02|ICD10CM|Scapulohumeral muscular dystrophy|Scapulohumeral muscular dystrophy +C2875312|T047|ET|G71.09|ICD10CM|Benign scapuloperoneal muscular dystrophy with early contractures [Emery-Dreifuss]|Benign scapuloperoneal muscular dystrophy with early contractures [Emery-Dreifuss] +C0699743|T047|ET|G71.09|ICD10CM|Congenital muscular dystrophy NOS|Congenital muscular dystrophy NOS +C3264046|T019|ET|G71.09|ICD10CM|Congenital muscular dystrophy with specific morphological abnormalities of the muscle fiber|Congenital muscular dystrophy with specific morphological abnormalities of the muscle fiber +C3264046|T047|ET|G71.09|ICD10CM|Congenital muscular dystrophy with specific morphological abnormalities of the muscle fiber|Congenital muscular dystrophy with specific morphological abnormalities of the muscle fiber +C0751336|T047|ET|G71.09|ICD10CM|Distal muscular dystrophy|Distal muscular dystrophy +C0686353|T047|ET|G71.09|ICD10CM|Limb-girdle muscular dystrophy|Limb-girdle muscular dystrophy +C0270951|T047|ET|G71.09|ICD10CM|Ocular muscular dystrophy|Ocular muscular dystrophy +C0270952|T047|ET|G71.09|ICD10CM|Oculopharyngeal muscular dystrophy|Oculopharyngeal muscular dystrophy +C4702817|T047|AB|G71.09|ICD10CM|Other specified muscular dystrophies|Other specified muscular dystrophies +C4702817|T047|PT|G71.09|ICD10CM|Other specified muscular dystrophies|Other specified muscular dystrophies +C4759774|T047|ET|G71.09|ICD10CM|Scapuloperoneal muscular dystrophy|Scapuloperoneal muscular dystrophy +C0553604|T047|PT|G71.1|ICD10|Myotonic disorders|Myotonic disorders +C0553604|T047|HT|G71.1|ICD10CM|Myotonic disorders|Myotonic disorders +C0553604|T047|AB|G71.1|ICD10CM|Myotonic disorders|Myotonic disorders +C0027126|T047|ET|G71.11|ICD10CM|Dystrophia myotonica [Steinert]|Dystrophia myotonica [Steinert] +C0027126|T047|ET|G71.11|ICD10CM|Myotonia atrophica|Myotonia atrophica +C0027126|T047|ET|G71.11|ICD10CM|Myotonic dystrophy|Myotonic dystrophy +C0027126|T047|AB|G71.11|ICD10CM|Myotonic muscular dystrophy|Myotonic muscular dystrophy +C0027126|T047|PT|G71.11|ICD10CM|Myotonic muscular dystrophy|Myotonic muscular dystrophy +C2931689|T047|ET|G71.11|ICD10CM|Proximal myotonic myopathy (PROMM)|Proximal myotonic myopathy (PROMM) +C0027126|T047|ET|G71.11|ICD10CM|Steinert disease|Steinert disease +C2931826|T047|ET|G71.12|ICD10CM|Acetazolamide responsive myotonia congenita|Acetazolamide responsive myotonia congenita +C2936781|T047|ET|G71.12|ICD10CM|Dominant myotonia congenita [Thomsen disease]|Dominant myotonia congenita [Thomsen disease] +C2936781|T047|PT|G71.12|ICD10CM|Myotonia congenita|Myotonia congenita +C2936781|T047|AB|G71.12|ICD10CM|Myotonia congenita|Myotonia congenita +C0270959|T047|ET|G71.12|ICD10CM|Myotonia levior|Myotonia levior +C0751360|T047|ET|G71.12|ICD10CM|Recessive myotonia congenita [Becker disease]|Recessive myotonia congenita [Becker disease] +C0036391|T047|ET|G71.13|ICD10CM|Chondrodystrophic myotonia|Chondrodystrophic myotonia +C0036391|T047|ET|G71.13|ICD10CM|Congenital myotonic chondrodystrophy|Congenital myotonic chondrodystrophy +C0036391|T047|PT|G71.13|ICD10CM|Myotonic chondrodystrophy|Myotonic chondrodystrophy +C0036391|T047|AB|G71.13|ICD10CM|Myotonic chondrodystrophy|Myotonic chondrodystrophy +C0036391|T047|ET|G71.13|ICD10CM|Schwartz-Jampel disease|Schwartz-Jampel disease +C1404542|T046|AB|G71.14|ICD10CM|Drug induced myotonia|Drug induced myotonia +C1404542|T046|PT|G71.14|ICD10CM|Drug induced myotonia|Drug induced myotonia +C0752355|T047|ET|G71.19|ICD10CM|Myotonia fluctuans|Myotonia fluctuans +C2931826|T047|ET|G71.19|ICD10CM|Myotonia permanens|Myotonia permanens +C2875314|T047|ET|G71.19|ICD10CM|Neuromyotonia [Isaacs]|Neuromyotonia [Isaacs] +C0410224|T047|AB|G71.19|ICD10CM|Other specified myotonic disorders|Other specified myotonic disorders +C0410224|T047|PT|G71.19|ICD10CM|Other specified myotonic disorders|Other specified myotonic disorders +C0221055|T047|ET|G71.19|ICD10CM|Paramyotonia congenita (of von Eulenburg)|Paramyotonia congenita (of von Eulenburg) +C4521481|T047|ET|G71.19|ICD10CM|Pseudomyotonia|Pseudomyotonia +C1404544|T047|ET|G71.19|ICD10CM|Symptomatic myotonia|Symptomatic myotonia +C0751951|T047|ET|G71.2|ICD10CM|Central core disease|Central core disease +C0270960|T047|PT|G71.2|ICD10CM|Congenital myopathies|Congenital myopathies +C0270960|T047|AB|G71.2|ICD10CM|Congenital myopathies|Congenital myopathies +C0270960|T047|PT|G71.2|ICD10|Congenital myopathies|Congenital myopathies +C0546264|T019|ET|G71.2|ICD10CM|Fiber-type disproportion|Fiber-type disproportion +C0270962|T019|ET|G71.2|ICD10CM|Minicore disease|Minicore disease +C0270962|T019|ET|G71.2|ICD10CM|Multicore disease|Multicore disease +C2875316|T019|ET|G71.2|ICD10CM|Myotubular (centronuclear) myopathy|Myotubular (centronuclear) myopathy +C0206157|T047|ET|G71.2|ICD10CM|Nemaline myopathy|Nemaline myopathy +C0869052|T047|PT|G71.3|ICD10|Mitochondrial myopathy, not elsewhere classified|Mitochondrial myopathy, not elsewhere classified +C0869052|T047|PT|G71.3|ICD10CM|Mitochondrial myopathy, not elsewhere classified|Mitochondrial myopathy, not elsewhere classified +C0869052|T047|AB|G71.3|ICD10CM|Mitochondrial myopathy, not elsewhere classified|Mitochondrial myopathy, not elsewhere classified +C0477404|T047|PT|G71.8|ICD10|Other primary disorders of muscles|Other primary disorders of muscles +C0477404|T047|PT|G71.8|ICD10CM|Other primary disorders of muscles|Other primary disorders of muscles +C0477404|T047|AB|G71.8|ICD10CM|Other primary disorders of muscles|Other primary disorders of muscles +C1399469|T047|ET|G71.9|ICD10CM|Hereditary myopathy NOS|Hereditary myopathy NOS +C0494503|T047|PT|G71.9|ICD10|Primary disorder of muscle, unspecified|Primary disorder of muscle, unspecified +C0494503|T047|PT|G71.9|ICD10CM|Primary disorder of muscle, unspecified|Primary disorder of muscle, unspecified +C0494503|T047|AB|G71.9|ICD10CM|Primary disorder of muscle, unspecified|Primary disorder of muscle, unspecified +C2875317|T047|AB|G72|ICD10CM|Other and unspecified myopathies|Other and unspecified myopathies +C2875317|T047|HT|G72|ICD10CM|Other and unspecified myopathies|Other and unspecified myopathies +C0546839|T047|HT|G72|ICD10|Other myopathies|Other myopathies +C0410220|T047|PT|G72.0|ICD10|Drug-induced myopathy|Drug-induced myopathy +C0410220|T047|PT|G72.0|ICD10CM|Drug-induced myopathy|Drug-induced myopathy +C0410220|T047|AB|G72.0|ICD10CM|Drug-induced myopathy|Drug-induced myopathy +C0270985|T047|PT|G72.1|ICD10CM|Alcoholic myopathy|Alcoholic myopathy +C0270985|T047|AB|G72.1|ICD10CM|Alcoholic myopathy|Alcoholic myopathy +C0270985|T047|PT|G72.1|ICD10|Alcoholic myopathy|Alcoholic myopathy +C0494504|T047|PT|G72.2|ICD10CM|Myopathy due to other toxic agents|Myopathy due to other toxic agents +C0494504|T047|AB|G72.2|ICD10CM|Myopathy due to other toxic agents|Myopathy due to other toxic agents +C0494504|T047|PT|G72.2|ICD10|Myopathy due to other toxic agents|Myopathy due to other toxic agents +C0030443|T047|ET|G72.3|ICD10CM|Familial periodic paralysis|Familial periodic paralysis +C0238357|T047|ET|G72.3|ICD10CM|Hyperkalemic periodic paralysis (familial)|Hyperkalemic periodic paralysis (familial) +C0238358|T047|ET|G72.3|ICD10CM|Hypokalemic periodic paralysis (familial)|Hypokalemic periodic paralysis (familial) +C2875318|T047|ET|G72.3|ICD10CM|Myotonic periodic paralysis (familial)|Myotonic periodic paralysis (familial) +C2875319|T047|ET|G72.3|ICD10CM|Normokalemic paralysis (familial)|Normokalemic paralysis (familial) +C1279412|T047|PT|G72.3|ICD10|Periodic paralysis|Periodic paralysis +C1279412|T047|PT|G72.3|ICD10CM|Periodic paralysis|Periodic paralysis +C1279412|T047|AB|G72.3|ICD10CM|Periodic paralysis|Periodic paralysis +C1955768|T047|ET|G72.3|ICD10CM|Potassium sensitive periodic paralysis|Potassium sensitive periodic paralysis +C2875320|T047|AB|G72.4|ICD10CM|Inflammatory and immune myopathies, not elsewhere classified|Inflammatory and immune myopathies, not elsewhere classified +C2875320|T047|HT|G72.4|ICD10CM|Inflammatory and immune myopathies, not elsewhere classified|Inflammatory and immune myopathies, not elsewhere classified +C0869053|T047|PT|G72.4|ICD10|Inflammatory myopathy, not elsewhere classified|Inflammatory myopathy, not elsewhere classified +C0238190|T047|AB|G72.41|ICD10CM|Inclusion body myositis [IBM]|Inclusion body myositis [IBM] +C0238190|T047|PT|G72.41|ICD10CM|Inclusion body myositis [IBM]|Inclusion body myositis [IBM] +C0027121|T047|ET|G72.49|ICD10CM|Inflammatory myopathy NOS|Inflammatory myopathy NOS +C2875321|T047|AB|G72.49|ICD10CM|Oth inflammatory and immune myopathies, NEC|Oth inflammatory and immune myopathies, NEC +C2875321|T047|PT|G72.49|ICD10CM|Other inflammatory and immune myopathies, not elsewhere classified|Other inflammatory and immune myopathies, not elsewhere classified +C0477405|T047|HT|G72.8|ICD10CM|Other specified myopathies|Other specified myopathies +C0477405|T047|AB|G72.8|ICD10CM|Other specified myopathies|Other specified myopathies +C0477405|T047|PT|G72.8|ICD10|Other specified myopathies|Other specified myopathies +C1135344|T047|ET|G72.81|ICD10CM|Acute necrotizing myopathy|Acute necrotizing myopathy +C1135345|T047|ET|G72.81|ICD10CM|Acute quadriplegic myopathy|Acute quadriplegic myopathy +C1135188|T047|PT|G72.81|ICD10CM|Critical illness myopathy|Critical illness myopathy +C1135188|T047|AB|G72.81|ICD10CM|Critical illness myopathy|Critical illness myopathy +C1135346|T047|ET|G72.81|ICD10CM|Intensive care (ICU) myopathy|Intensive care (ICU) myopathy +C1135188|T047|ET|G72.81|ICD10CM|Myopathy of critical illness|Myopathy of critical illness +C0477405|T047|PT|G72.89|ICD10CM|Other specified myopathies|Other specified myopathies +C0477405|T047|AB|G72.89|ICD10CM|Other specified myopathies|Other specified myopathies +C0026848|T047|PT|G72.9|ICD10CM|Myopathy, unspecified|Myopathy, unspecified +C0026848|T047|AB|G72.9|ICD10CM|Myopathy, unspecified|Myopathy, unspecified +C0026848|T047|PT|G72.9|ICD10|Myopathy, unspecified|Myopathy, unspecified +C0694478|T047|AB|G73|ICD10CM|Disord of myoneural junction and muscle in dis classd elswhr|Disord of myoneural junction and muscle in dis classd elswhr +C0694478|T047|HT|G73|ICD10CM|Disorders of myoneural junction and muscle in diseases classified elsewhere|Disorders of myoneural junction and muscle in diseases classified elsewhere +C0694478|T047|HT|G73|ICD10|Disorders of myoneural junction and muscle in diseases classified elsewhere|Disorders of myoneural junction and muscle in diseases classified elsewhere +C0494505|T047|PT|G73.0|ICD10|Myasthenic syndromes in endocrine diseases|Myasthenic syndromes in endocrine diseases +C0022972|T047|PT|G73.1|ICD10|Eaton-Lambert syndrome|Eaton-Lambert syndrome +C3161081|T047|AB|G73.1|ICD10CM|Lambert-Eaton syndrome in neoplastic disease|Lambert-Eaton syndrome in neoplastic disease +C3161081|T047|PT|G73.1|ICD10CM|Lambert-Eaton syndrome in neoplastic disease|Lambert-Eaton syndrome in neoplastic disease +C0494506|T047|PT|G73.2|ICD10|Other myasthenic syndromes in neoplastic disease|Other myasthenic syndromes in neoplastic disease +C0477408|T047|PT|G73.3|ICD10|Myasthenic syndromes in other diseases classified elsewhere|Myasthenic syndromes in other diseases classified elsewhere +C0477408|T047|PT|G73.3|ICD10CM|Myasthenic syndromes in other diseases classified elsewhere|Myasthenic syndromes in other diseases classified elsewhere +C0477408|T047|AB|G73.3|ICD10CM|Myasthenic syndromes in other diseases classified elsewhere|Myasthenic syndromes in other diseases classified elsewhere +C0477409|T047|PT|G73.4|ICD10|Myopathy in infectious and parasitic diseases classified elsewhere|Myopathy in infectious and parasitic diseases classified elsewhere +C0494507|T047|PT|G73.5|ICD10|Myopathy in endocrine diseases|Myopathy in endocrine diseases +C0270984|T047|PT|G73.6|ICD10|Myopathy in metabolic diseases|Myopathy in metabolic diseases +C2875322|T047|AB|G73.7|ICD10CM|Myopathy in diseases classified elsewhere|Myopathy in diseases classified elsewhere +C2875322|T047|PT|G73.7|ICD10CM|Myopathy in diseases classified elsewhere|Myopathy in diseases classified elsewhere +C0477411|T047|PT|G73.7|ICD10|Myopathy in other diseases classified elsewhere|Myopathy in other diseases classified elsewhere +C0007789|T047|HT|G80|ICD10CM|Cerebral palsy|Cerebral palsy +C0007789|T047|AB|G80|ICD10CM|Cerebral palsy|Cerebral palsy +C0392549|T047|HT|G80|ICD10|Infantile cerebral palsy|Infantile cerebral palsy +C0477414|T047|HT|G80-G83|ICD10CM|Cerebral palsy and other paralytic syndromes (G80-G83)|Cerebral palsy and other paralytic syndromes (G80-G83) +C0477414|T047|HT|G80-G83.9|ICD10|Cerebral palsy and other paralytic syndromes|Cerebral palsy and other paralytic syndromes +C2875323|T019|ET|G80.0|ICD10CM|Congenital spastic paralysis (cerebral)|Congenital spastic paralysis (cerebral) +C0338596|T019|PT|G80.0|ICD10|Spastic cerebral palsy|Spastic cerebral palsy +C0338596|T047|PT|G80.0|ICD10|Spastic cerebral palsy|Spastic cerebral palsy +C0837178|T047|PT|G80.0|ICD10CM|Spastic quadriplegic cerebral palsy|Spastic quadriplegic cerebral palsy +C0837178|T047|AB|G80.0|ICD10CM|Spastic quadriplegic cerebral palsy|Spastic quadriplegic cerebral palsy +C0338596|T019|ET|G80.1|ICD10CM|Spastic cerebral palsy NOS|Spastic cerebral palsy NOS +C0338596|T047|ET|G80.1|ICD10CM|Spastic cerebral palsy NOS|Spastic cerebral palsy NOS +C0023882|T047|PT|G80.1|ICD10|Spastic diplegia|Spastic diplegia +C0023882|T047|PT|G80.1|ICD10CM|Spastic diplegic cerebral palsy|Spastic diplegic cerebral palsy +C0023882|T047|AB|G80.1|ICD10CM|Spastic diplegic cerebral palsy|Spastic diplegic cerebral palsy +C0392550|T047|PT|G80.2|ICD10|Infantile hemiplegia|Infantile hemiplegia +C0837177|T047|PT|G80.2|ICD10CM|Spastic hemiplegic cerebral palsy|Spastic hemiplegic cerebral palsy +C0837177|T047|AB|G80.2|ICD10CM|Spastic hemiplegic cerebral palsy|Spastic hemiplegic cerebral palsy +C0270742|T047|PT|G80.3|ICD10CM|Athetoid cerebral palsy|Athetoid cerebral palsy +C0270742|T047|AB|G80.3|ICD10CM|Athetoid cerebral palsy|Athetoid cerebral palsy +C0270743|T047|ET|G80.3|ICD10CM|Double athetosis (syndrome)|Double athetosis (syndrome) +C0270742|T047|ET|G80.3|ICD10CM|Dyskinetic cerebral palsy|Dyskinetic cerebral palsy +C0270742|T047|PT|G80.3|ICD10|Dyskinetic cerebral palsy|Dyskinetic cerebral palsy +C2875324|T047|ET|G80.3|ICD10CM|Dystonic cerebral palsy|Dystonic cerebral palsy +C0270742|T047|ET|G80.3|ICD10CM|Vogt disease|Vogt disease +C0394005|T047|PT|G80.4|ICD10CM|Ataxic cerebral palsy|Ataxic cerebral palsy +C0394005|T047|AB|G80.4|ICD10CM|Ataxic cerebral palsy|Ataxic cerebral palsy +C0394005|T047|PT|G80.4|ICD10|Ataxic cerebral palsy|Ataxic cerebral palsy +C2875325|T047|ET|G80.8|ICD10CM|Mixed cerebral palsy syndromes|Mixed cerebral palsy syndromes +C0851216|T047|PT|G80.8|ICD10CM|Other cerebral palsy|Other cerebral palsy +C0851216|T047|AB|G80.8|ICD10CM|Other cerebral palsy|Other cerebral palsy +C0477415|T047|PT|G80.8|ICD10|Other infantile cerebral palsy|Other infantile cerebral palsy +C0007789|T047|ET|G80.9|ICD10CM|Cerebral palsy NOS|Cerebral palsy NOS +C0007789|T047|PT|G80.9|ICD10CM|Cerebral palsy, unspecified|Cerebral palsy, unspecified +C0007789|T047|AB|G80.9|ICD10CM|Cerebral palsy, unspecified|Cerebral palsy, unspecified +C0392549|T047|PT|G80.9|ICD10|Infantile cerebral palsy, unspecified|Infantile cerebral palsy, unspecified +C0018991|T184|HT|G81|ICD10|Hemiplegia|Hemiplegia +C0375206|T047|AB|G81|ICD10CM|Hemiplegia and hemiparesis|Hemiplegia and hemiparesis +C0375206|T047|HT|G81|ICD10CM|Hemiplegia and hemiparesis|Hemiplegia and hemiparesis +C0154693|T184|HT|G81.0|ICD10CM|Flaccid hemiplegia|Flaccid hemiplegia +C0154693|T184|AB|G81.0|ICD10CM|Flaccid hemiplegia|Flaccid hemiplegia +C0154693|T184|PT|G81.0|ICD10|Flaccid hemiplegia|Flaccid hemiplegia +C0154693|T184|AB|G81.00|ICD10CM|Flaccid hemiplegia affecting unspecified side|Flaccid hemiplegia affecting unspecified side +C0154693|T184|PT|G81.00|ICD10CM|Flaccid hemiplegia affecting unspecified side|Flaccid hemiplegia affecting unspecified side +C2875326|T184|AB|G81.01|ICD10CM|Flaccid hemiplegia affecting right dominant side|Flaccid hemiplegia affecting right dominant side +C2875326|T184|PT|G81.01|ICD10CM|Flaccid hemiplegia affecting right dominant side|Flaccid hemiplegia affecting right dominant side +C2875327|T184|AB|G81.02|ICD10CM|Flaccid hemiplegia affecting left dominant side|Flaccid hemiplegia affecting left dominant side +C2875327|T184|PT|G81.02|ICD10CM|Flaccid hemiplegia affecting left dominant side|Flaccid hemiplegia affecting left dominant side +C2875328|T184|AB|G81.03|ICD10CM|Flaccid hemiplegia affecting right nondominant side|Flaccid hemiplegia affecting right nondominant side +C2875328|T184|PT|G81.03|ICD10CM|Flaccid hemiplegia affecting right nondominant side|Flaccid hemiplegia affecting right nondominant side +C2875329|T184|AB|G81.04|ICD10CM|Flaccid hemiplegia affecting left nondominant side|Flaccid hemiplegia affecting left nondominant side +C2875329|T184|PT|G81.04|ICD10CM|Flaccid hemiplegia affecting left nondominant side|Flaccid hemiplegia affecting left nondominant side +C0154694|T047|HT|G81.1|ICD10CM|Spastic hemiplegia|Spastic hemiplegia +C0154694|T047|AB|G81.1|ICD10CM|Spastic hemiplegia|Spastic hemiplegia +C0154694|T047|PT|G81.1|ICD10|Spastic hemiplegia|Spastic hemiplegia +C0154694|T047|AB|G81.10|ICD10CM|Spastic hemiplegia affecting unspecified side|Spastic hemiplegia affecting unspecified side +C0154694|T047|PT|G81.10|ICD10CM|Spastic hemiplegia affecting unspecified side|Spastic hemiplegia affecting unspecified side +C2875330|T184|AB|G81.11|ICD10CM|Spastic hemiplegia affecting right dominant side|Spastic hemiplegia affecting right dominant side +C2875330|T184|PT|G81.11|ICD10CM|Spastic hemiplegia affecting right dominant side|Spastic hemiplegia affecting right dominant side +C2875331|T184|AB|G81.12|ICD10CM|Spastic hemiplegia affecting left dominant side|Spastic hemiplegia affecting left dominant side +C2875331|T184|PT|G81.12|ICD10CM|Spastic hemiplegia affecting left dominant side|Spastic hemiplegia affecting left dominant side +C2875332|T184|AB|G81.13|ICD10CM|Spastic hemiplegia affecting right nondominant side|Spastic hemiplegia affecting right nondominant side +C2875332|T184|PT|G81.13|ICD10CM|Spastic hemiplegia affecting right nondominant side|Spastic hemiplegia affecting right nondominant side +C2875333|T184|AB|G81.14|ICD10CM|Spastic hemiplegia affecting left nondominant side|Spastic hemiplegia affecting left nondominant side +C2875333|T184|PT|G81.14|ICD10CM|Spastic hemiplegia affecting left nondominant side|Spastic hemiplegia affecting left nondominant side +C0018991|T184|PT|G81.9|ICD10|Hemiplegia, unspecified|Hemiplegia, unspecified +C0018991|T184|HT|G81.9|ICD10CM|Hemiplegia, unspecified|Hemiplegia, unspecified +C0018991|T184|AB|G81.9|ICD10CM|Hemiplegia, unspecified|Hemiplegia, unspecified +C0375218|T184|AB|G81.90|ICD10CM|Hemiplegia, unspecified affecting unspecified side|Hemiplegia, unspecified affecting unspecified side +C0375218|T184|PT|G81.90|ICD10CM|Hemiplegia, unspecified affecting unspecified side|Hemiplegia, unspecified affecting unspecified side +C2875334|T184|AB|G81.91|ICD10CM|Hemiplegia, unspecified affecting right dominant side|Hemiplegia, unspecified affecting right dominant side +C2875334|T184|PT|G81.91|ICD10CM|Hemiplegia, unspecified affecting right dominant side|Hemiplegia, unspecified affecting right dominant side +C2875335|T184|AB|G81.92|ICD10CM|Hemiplegia, unspecified affecting left dominant side|Hemiplegia, unspecified affecting left dominant side +C2875335|T184|PT|G81.92|ICD10CM|Hemiplegia, unspecified affecting left dominant side|Hemiplegia, unspecified affecting left dominant side +C2875336|T184|AB|G81.93|ICD10CM|Hemiplegia, unspecified affecting right nondominant side|Hemiplegia, unspecified affecting right nondominant side +C2875336|T184|PT|G81.93|ICD10CM|Hemiplegia, unspecified affecting right nondominant side|Hemiplegia, unspecified affecting right nondominant side +C2875337|T184|AB|G81.94|ICD10CM|Hemiplegia, unspecified affecting left nondominant side|Hemiplegia, unspecified affecting left nondominant side +C2875337|T184|PT|G81.94|ICD10CM|Hemiplegia, unspecified affecting left nondominant side|Hemiplegia, unspecified affecting left nondominant side +C2875338|T047|AB|G82|ICD10CM|Paraplegia (paraparesis) and quadriplegia (quadriparesis)|Paraplegia (paraparesis) and quadriplegia (quadriparesis) +C2875338|T047|HT|G82|ICD10CM|Paraplegia (paraparesis) and quadriplegia (quadriparesis)|Paraplegia (paraparesis) and quadriplegia (quadriparesis) +C0494508|T047|HT|G82|ICD10|Paraplegia and tetraplegia|Paraplegia and tetraplegia +C0452143|T184|PT|G82.0|ICD10|Flaccid paraplegia|Flaccid paraplegia +C0037772|T047|PT|G82.1|ICD10|Spastic paraplegia|Spastic paraplegia +C0030486|T047|ET|G82.2|ICD10CM|Paralysis of both lower limbs NOS|Paralysis of both lower limbs NOS +C0221166|T184|ET|G82.2|ICD10CM|Paraparesis (lower) NOS|Paraparesis (lower) NOS +C0030486|T047|HT|G82.2|ICD10CM|Paraplegia|Paraplegia +C0030486|T047|AB|G82.2|ICD10CM|Paraplegia|Paraplegia +C0030486|T047|ET|G82.2|ICD10CM|Paraplegia (lower) NOS|Paraplegia (lower) NOS +C0030486|T047|PT|G82.2|ICD10|Paraplegia, unspecified|Paraplegia, unspecified +C0030486|T047|PT|G82.20|ICD10CM|Paraplegia, unspecified|Paraplegia, unspecified +C0030486|T047|AB|G82.20|ICD10CM|Paraplegia, unspecified|Paraplegia, unspecified +C1659098|T047|AB|G82.21|ICD10CM|Paraplegia, complete|Paraplegia, complete +C1659098|T047|PT|G82.21|ICD10CM|Paraplegia, complete|Paraplegia, complete +C1660761|T047|AB|G82.22|ICD10CM|Paraplegia, incomplete|Paraplegia, incomplete +C1660761|T047|PT|G82.22|ICD10CM|Paraplegia, incomplete|Paraplegia, incomplete +C0751460|T047|PT|G82.3|ICD10|Flaccid tetraplegia|Flaccid tetraplegia +C0426970|T047|PT|G82.4|ICD10|Spastic tetraplegia|Spastic tetraplegia +C0034372|T047|HT|G82.5|ICD10CM|Quadriplegia|Quadriplegia +C0034372|T047|AB|G82.5|ICD10CM|Quadriplegia|Quadriplegia +C0034372|T047|PT|G82.5|ICD10|Tetraplegia, unspecified|Tetraplegia, unspecified +C0034372|T047|PT|G82.50|ICD10CM|Quadriplegia, unspecified|Quadriplegia, unspecified +C0034372|T047|AB|G82.50|ICD10CM|Quadriplegia, unspecified|Quadriplegia, unspecified +C2875339|T047|AB|G82.51|ICD10CM|Quadriplegia, C1-C4 complete|Quadriplegia, C1-C4 complete +C2875339|T047|PT|G82.51|ICD10CM|Quadriplegia, C1-C4 complete|Quadriplegia, C1-C4 complete +C2875340|T047|AB|G82.52|ICD10CM|Quadriplegia, C1-C4 incomplete|Quadriplegia, C1-C4 incomplete +C2875340|T047|PT|G82.52|ICD10CM|Quadriplegia, C1-C4 incomplete|Quadriplegia, C1-C4 incomplete +C2875341|T047|AB|G82.53|ICD10CM|Quadriplegia, C5-C7 complete|Quadriplegia, C5-C7 complete +C2875341|T047|PT|G82.53|ICD10CM|Quadriplegia, C5-C7 complete|Quadriplegia, C5-C7 complete +C2875342|T047|AB|G82.54|ICD10CM|Quadriplegia, C5-C7 incomplete|Quadriplegia, C5-C7 incomplete +C2875342|T047|PT|G82.54|ICD10CM|Quadriplegia, C5-C7 incomplete|Quadriplegia, C5-C7 incomplete +C0154700|T047|HT|G83|ICD10CM|Other paralytic syndromes|Other paralytic syndromes +C0154700|T047|AB|G83|ICD10CM|Other paralytic syndromes|Other paralytic syndromes +C0154700|T047|HT|G83|ICD10|Other paralytic syndromes|Other paralytic syndromes +C4290124|T047|ET|G83|ICD10CM|paralysis (complete) (incomplete), except as in G80-G82|paralysis (complete) (incomplete), except as in G80-G82 +C0154701|T047|ET|G83.0|ICD10CM|Diplegia (upper)|Diplegia (upper) +C0154701|T047|PT|G83.0|ICD10CM|Diplegia of upper limbs|Diplegia of upper limbs +C0154701|T047|AB|G83.0|ICD10CM|Diplegia of upper limbs|Diplegia of upper limbs +C0154701|T047|PT|G83.0|ICD10|Diplegia of upper limbs|Diplegia of upper limbs +C0154701|T047|ET|G83.0|ICD10CM|Paralysis of both upper limbs|Paralysis of both upper limbs +C0154702|T047|HT|G83.1|ICD10CM|Monoplegia of lower limb|Monoplegia of lower limb +C0154702|T047|AB|G83.1|ICD10CM|Monoplegia of lower limb|Monoplegia of lower limb +C0154702|T047|PT|G83.1|ICD10|Monoplegia of lower limb|Monoplegia of lower limb +C0154702|T047|ET|G83.1|ICD10CM|Paralysis of lower limb|Paralysis of lower limb +C0375224|T184|PT|G83.10|ICD10CM|Monoplegia of lower limb affecting unspecified side|Monoplegia of lower limb affecting unspecified side +C0375224|T184|AB|G83.10|ICD10CM|Monoplegia of lower limb affecting unspecified side|Monoplegia of lower limb affecting unspecified side +C2875344|T047|AB|G83.11|ICD10CM|Monoplegia of lower limb affecting right dominant side|Monoplegia of lower limb affecting right dominant side +C2875344|T047|PT|G83.11|ICD10CM|Monoplegia of lower limb affecting right dominant side|Monoplegia of lower limb affecting right dominant side +C2875345|T047|AB|G83.12|ICD10CM|Monoplegia of lower limb affecting left dominant side|Monoplegia of lower limb affecting left dominant side +C2875345|T047|PT|G83.12|ICD10CM|Monoplegia of lower limb affecting left dominant side|Monoplegia of lower limb affecting left dominant side +C2875346|T047|AB|G83.13|ICD10CM|Monoplegia of lower limb affecting right nondominant side|Monoplegia of lower limb affecting right nondominant side +C2875346|T047|PT|G83.13|ICD10CM|Monoplegia of lower limb affecting right nondominant side|Monoplegia of lower limb affecting right nondominant side +C2875347|T047|AB|G83.14|ICD10CM|Monoplegia of lower limb affecting left nondominant side|Monoplegia of lower limb affecting left nondominant side +C2875347|T047|PT|G83.14|ICD10CM|Monoplegia of lower limb affecting left nondominant side|Monoplegia of lower limb affecting left nondominant side +C0154703|T047|HT|G83.2|ICD10CM|Monoplegia of upper limb|Monoplegia of upper limb +C0154703|T047|AB|G83.2|ICD10CM|Monoplegia of upper limb|Monoplegia of upper limb +C0154703|T047|PT|G83.2|ICD10|Monoplegia of upper limb|Monoplegia of upper limb +C0154703|T047|ET|G83.2|ICD10CM|Paralysis of upper limb|Paralysis of upper limb +C0154703|T047|PT|G83.20|ICD10CM|Monoplegia of upper limb affecting unspecified side|Monoplegia of upper limb affecting unspecified side +C0154703|T047|AB|G83.20|ICD10CM|Monoplegia of upper limb affecting unspecified side|Monoplegia of upper limb affecting unspecified side +C2875348|T047|AB|G83.21|ICD10CM|Monoplegia of upper limb affecting right dominant side|Monoplegia of upper limb affecting right dominant side +C2875348|T047|PT|G83.21|ICD10CM|Monoplegia of upper limb affecting right dominant side|Monoplegia of upper limb affecting right dominant side +C2875349|T047|AB|G83.22|ICD10CM|Monoplegia of upper limb affecting left dominant side|Monoplegia of upper limb affecting left dominant side +C2875349|T047|PT|G83.22|ICD10CM|Monoplegia of upper limb affecting left dominant side|Monoplegia of upper limb affecting left dominant side +C2875350|T047|AB|G83.23|ICD10CM|Monoplegia of upper limb affecting right nondominant side|Monoplegia of upper limb affecting right nondominant side +C2875350|T047|PT|G83.23|ICD10CM|Monoplegia of upper limb affecting right nondominant side|Monoplegia of upper limb affecting right nondominant side +C2875351|T047|AB|G83.24|ICD10CM|Monoplegia of upper limb affecting left nondominant side|Monoplegia of upper limb affecting left nondominant side +C2875351|T047|PT|G83.24|ICD10CM|Monoplegia of upper limb affecting left nondominant side|Monoplegia of upper limb affecting left nondominant side +C0085622|T047|HT|G83.3|ICD10CM|Monoplegia, unspecified|Monoplegia, unspecified +C0085622|T047|AB|G83.3|ICD10CM|Monoplegia, unspecified|Monoplegia, unspecified +C0085622|T047|PT|G83.3|ICD10|Monoplegia, unspecified|Monoplegia, unspecified +C2875352|T047|AB|G83.30|ICD10CM|Monoplegia, unspecified affecting unspecified side|Monoplegia, unspecified affecting unspecified side +C2875352|T047|PT|G83.30|ICD10CM|Monoplegia, unspecified affecting unspecified side|Monoplegia, unspecified affecting unspecified side +C2875353|T047|AB|G83.31|ICD10CM|Monoplegia, unspecified affecting right dominant side|Monoplegia, unspecified affecting right dominant side +C2875353|T047|PT|G83.31|ICD10CM|Monoplegia, unspecified affecting right dominant side|Monoplegia, unspecified affecting right dominant side +C2875354|T047|AB|G83.32|ICD10CM|Monoplegia, unspecified affecting left dominant side|Monoplegia, unspecified affecting left dominant side +C2875354|T047|PT|G83.32|ICD10CM|Monoplegia, unspecified affecting left dominant side|Monoplegia, unspecified affecting left dominant side +C2875355|T047|AB|G83.33|ICD10CM|Monoplegia, unspecified affecting right nondominant side|Monoplegia, unspecified affecting right nondominant side +C2875355|T047|PT|G83.33|ICD10CM|Monoplegia, unspecified affecting right nondominant side|Monoplegia, unspecified affecting right nondominant side +C2875356|T047|AB|G83.34|ICD10CM|Monoplegia, unspecified affecting left nondominant side|Monoplegia, unspecified affecting left nondominant side +C2875356|T047|PT|G83.34|ICD10CM|Monoplegia, unspecified affecting left nondominant side|Monoplegia, unspecified affecting left nondominant side +C0392548|T047|PT|G83.4|ICD10|Cauda equina syndrome|Cauda equina syndrome +C0392548|T047|PT|G83.4|ICD10CM|Cauda equina syndrome|Cauda equina syndrome +C0392548|T047|AB|G83.4|ICD10CM|Cauda equina syndrome|Cauda equina syndrome +C2875357|T046|ET|G83.4|ICD10CM|Neurogenic bladder due to cauda equina syndrome|Neurogenic bladder due to cauda equina syndrome +C0023944|T047|PT|G83.5|ICD10CM|Locked-in state|Locked-in state +C0023944|T047|AB|G83.5|ICD10CM|Locked-in state|Locked-in state +C0154706|T047|PT|G83.8|ICD10|Other specified paralytic syndromes|Other specified paralytic syndromes +C0154706|T047|HT|G83.8|ICD10CM|Other specified paralytic syndromes|Other specified paralytic syndromes +C0154706|T047|AB|G83.8|ICD10CM|Other specified paralytic syndromes|Other specified paralytic syndromes +C0242644|T047|PT|G83.81|ICD10CM|Brown-Séquard syndrome|Brown-Séquard syndrome +C0242644|T047|AB|G83.81|ICD10CM|Brown-Sequard syndrome|Brown-Sequard syndrome +C0221069|T047|PT|G83.82|ICD10CM|Anterior cord syndrome|Anterior cord syndrome +C0221069|T047|AB|G83.82|ICD10CM|Anterior cord syndrome|Anterior cord syndrome +C0560650|T037|PT|G83.83|ICD10CM|Posterior cord syndrome|Posterior cord syndrome +C0560650|T037|AB|G83.83|ICD10CM|Posterior cord syndrome|Posterior cord syndrome +C2875358|T047|AB|G83.84|ICD10CM|Todd's paralysis (postepileptic)|Todd's paralysis (postepileptic) +C2875358|T047|PT|G83.84|ICD10CM|Todd's paralysis (postepileptic)|Todd's paralysis (postepileptic) +C0154706|T047|PT|G83.89|ICD10CM|Other specified paralytic syndromes|Other specified paralytic syndromes +C0154706|T047|AB|G83.89|ICD10CM|Other specified paralytic syndromes|Other specified paralytic syndromes +C0270788|T047|PT|G83.9|ICD10CM|Paralytic syndrome, unspecified|Paralytic syndrome, unspecified +C0270788|T047|AB|G83.9|ICD10CM|Paralytic syndrome, unspecified|Paralytic syndrome, unspecified +C0270788|T047|PT|G83.9|ICD10|Paralytic syndrome, unspecified|Paralytic syndrome, unspecified +C0995154|T184|AB|G89|ICD10CM|Pain, not elsewhere classified|Pain, not elsewhere classified +C0995154|T184|HT|G89|ICD10CM|Pain, not elsewhere classified|Pain, not elsewhere classified +C0154725|T047|HT|G89-G99|ICD10CM|Other disorders of the nervous system (G89-G99)|Other disorders of the nervous system (G89-G99) +C1536114|T047|PT|G89.0|ICD10CM|Central pain syndrome|Central pain syndrome +C1536114|T047|AB|G89.0|ICD10CM|Central pain syndrome|Central pain syndrome +C0221057|T047|ET|G89.0|ICD10CM|Déjérine-Roussy syndrome|Déjérine-Roussy syndrome +C1719387|T047|ET|G89.0|ICD10CM|Myelopathic pain syndrome|Myelopathic pain syndrome +C1719386|T047|ET|G89.0|ICD10CM|Thalamic pain syndrome (hyperesthetic)|Thalamic pain syndrome (hyperesthetic) +C2875359|T184|AB|G89.1|ICD10CM|Acute pain, not elsewhere classified|Acute pain, not elsewhere classified +C2875359|T184|HT|G89.1|ICD10CM|Acute pain, not elsewhere classified|Acute pain, not elsewhere classified +C1719389|T047|AB|G89.11|ICD10CM|Acute pain due to trauma|Acute pain due to trauma +C1719389|T047|PT|G89.11|ICD10CM|Acute pain due to trauma|Acute pain due to trauma +C1719390|T047|AB|G89.12|ICD10CM|Acute post-thoracotomy pain|Acute post-thoracotomy pain +C1719390|T047|PT|G89.12|ICD10CM|Acute post-thoracotomy pain|Acute post-thoracotomy pain +C1719391|T184|ET|G89.12|ICD10CM|Post-thoracotomy pain NOS|Post-thoracotomy pain NOS +C2875361|T184|AB|G89.18|ICD10CM|Other acute postprocedural pain|Other acute postprocedural pain +C2875361|T184|PT|G89.18|ICD10CM|Other acute postprocedural pain|Other acute postprocedural pain +C0030201|T184|ET|G89.18|ICD10CM|Postoperative pain NOS|Postoperative pain NOS +C2875360|T184|ET|G89.18|ICD10CM|Postprocedural pain NOS|Postprocedural pain NOS +C2875362|T184|AB|G89.2|ICD10CM|Chronic pain, not elsewhere classified|Chronic pain, not elsewhere classified +C2875362|T184|HT|G89.2|ICD10CM|Chronic pain, not elsewhere classified|Chronic pain, not elsewhere classified +C1719393|T047|AB|G89.21|ICD10CM|Chronic pain due to trauma|Chronic pain due to trauma +C1719393|T047|PT|G89.21|ICD10CM|Chronic pain due to trauma|Chronic pain due to trauma +C1719710|T047|AB|G89.22|ICD10CM|Chronic post-thoracotomy pain|Chronic post-thoracotomy pain +C1719710|T047|PT|G89.22|ICD10CM|Chronic post-thoracotomy pain|Chronic post-thoracotomy pain +C1719394|T047|ET|G89.28|ICD10CM|Other chronic postoperative pain|Other chronic postoperative pain +C2875363|T184|AB|G89.28|ICD10CM|Other chronic postprocedural pain|Other chronic postprocedural pain +C2875363|T184|PT|G89.28|ICD10CM|Other chronic postprocedural pain|Other chronic postprocedural pain +C0478148|T184|AB|G89.29|ICD10CM|Other chronic pain|Other chronic pain +C0478148|T184|PT|G89.29|ICD10CM|Other chronic pain|Other chronic pain +C0596240|T184|ET|G89.3|ICD10CM|Cancer associated pain|Cancer associated pain +C1719395|T047|AB|G89.3|ICD10CM|Neoplasm related pain (acute) (chronic)|Neoplasm related pain (acute) (chronic) +C1719395|T047|PT|G89.3|ICD10CM|Neoplasm related pain (acute) (chronic)|Neoplasm related pain (acute) (chronic) +C2875364|T184|ET|G89.3|ICD10CM|Pain due to malignancy (primary) (secondary)|Pain due to malignancy (primary) (secondary) +C0596240|T184|ET|G89.3|ICD10CM|Tumor associated pain|Tumor associated pain +C1719401|T184|ET|G89.4|ICD10CM|Chronic pain associated with significant psychosocial dysfunction|Chronic pain associated with significant psychosocial dysfunction +C1298685|T047|PT|G89.4|ICD10CM|Chronic pain syndrome|Chronic pain syndrome +C1298685|T047|AB|G89.4|ICD10CM|Chronic pain syndrome|Chronic pain syndrome +C1145628|T047|HT|G90|ICD10CM|Disorders of autonomic nervous system|Disorders of autonomic nervous system +C1145628|T047|AB|G90|ICD10CM|Disorders of autonomic nervous system|Disorders of autonomic nervous system +C1145628|T047|HT|G90|ICD10|Disorders of autonomic nervous system|Disorders of autonomic nervous system +C0154725|T047|HT|G90-G99.9|ICD10|Other disorders of the nervous system|Other disorders of the nervous system +C0154690|T047|PT|G90.0|ICD10|Idiopathic peripheral autonomic neuropathy|Idiopathic peripheral autonomic neuropathy +C0154690|T047|HT|G90.0|ICD10CM|Idiopathic peripheral autonomic neuropathy|Idiopathic peripheral autonomic neuropathy +C0154690|T047|AB|G90.0|ICD10CM|Idiopathic peripheral autonomic neuropathy|Idiopathic peripheral autonomic neuropathy +C0221046|T047|PT|G90.01|ICD10CM|Carotid sinus syncope|Carotid sinus syncope +C0221046|T047|AB|G90.01|ICD10CM|Carotid sinus syncope|Carotid sinus syncope +C0221046|T047|ET|G90.01|ICD10CM|Carotid sinus syndrome|Carotid sinus syndrome +C0154690|T047|ET|G90.09|ICD10CM|Idiopathic peripheral autonomic neuropathy NOS|Idiopathic peripheral autonomic neuropathy NOS +C2349411|T047|AB|G90.09|ICD10CM|Other idiopathic peripheral autonomic neuropathy|Other idiopathic peripheral autonomic neuropathy +C2349411|T047|PT|G90.09|ICD10CM|Other idiopathic peripheral autonomic neuropathy|Other idiopathic peripheral autonomic neuropathy +C0013364|T019|PT|G90.1|ICD10CM|Familial dysautonomia [Riley-Day]|Familial dysautonomia [Riley-Day] +C0013364|T047|PT|G90.1|ICD10CM|Familial dysautonomia [Riley-Day]|Familial dysautonomia [Riley-Day] +C0013364|T019|AB|G90.1|ICD10CM|Familial dysautonomia [Riley-Day]|Familial dysautonomia [Riley-Day] +C0013364|T047|AB|G90.1|ICD10CM|Familial dysautonomia [Riley-Day]|Familial dysautonomia [Riley-Day] +C0013364|T019|PT|G90.1|ICD10|Familial dysautonomia [Riley-Day]|Familial dysautonomia [Riley-Day] +C0013364|T047|PT|G90.1|ICD10|Familial dysautonomia [Riley-Day]|Familial dysautonomia [Riley-Day] +C0019937|T047|ET|G90.2|ICD10CM|Bernard(-Horner) syndrome|Bernard(-Horner) syndrome +C0865487|T047|ET|G90.2|ICD10CM|Cervical sympathetic dystrophy or paralysis|Cervical sympathetic dystrophy or paralysis +C0019937|T047|PT|G90.2|ICD10CM|Horner's syndrome|Horner's syndrome +C0019937|T047|AB|G90.2|ICD10CM|Horner's syndrome|Horner's syndrome +C0019937|T047|PT|G90.2|ICD10|Horner's syndrome|Horner's syndrome +C0494512|T046|PT|G90.3|ICD10|Multi-system degeneration|Multi-system degeneration +C2875366|T047|AB|G90.3|ICD10CM|Multi-system degeneration of the autonomic nervous system|Multi-system degeneration of the autonomic nervous system +C2875366|T047|PT|G90.3|ICD10CM|Multi-system degeneration of the autonomic nervous system|Multi-system degeneration of the autonomic nervous system +C2875365|T046|ET|G90.3|ICD10CM|Neurogenic orthostatic hypotension [Shy-Drager]|Neurogenic orthostatic hypotension [Shy-Drager] +C0238015|T047|PT|G90.4|ICD10CM|Autonomic dysreflexia|Autonomic dysreflexia +C0238015|T047|AB|G90.4|ICD10CM|Autonomic dysreflexia|Autonomic dysreflexia +C2875367|T047|AB|G90.5|ICD10CM|Complex regional pain syndrome I (CRPS I)|Complex regional pain syndrome I (CRPS I) +C2875367|T047|HT|G90.5|ICD10CM|Complex regional pain syndrome I (CRPS I)|Complex regional pain syndrome I (CRPS I) +C0034931|T047|ET|G90.5|ICD10CM|Reflex sympathetic dystrophy|Reflex sympathetic dystrophy +C2875367|T047|AB|G90.50|ICD10CM|Complex regional pain syndrome I, unspecified|Complex regional pain syndrome I, unspecified +C2875367|T047|PT|G90.50|ICD10CM|Complex regional pain syndrome I, unspecified|Complex regional pain syndrome I, unspecified +C2875368|T047|AB|G90.51|ICD10CM|Complex regional pain syndrome I of upper limb|Complex regional pain syndrome I of upper limb +C2875368|T047|HT|G90.51|ICD10CM|Complex regional pain syndrome I of upper limb|Complex regional pain syndrome I of upper limb +C2875369|T047|AB|G90.511|ICD10CM|Complex regional pain syndrome I of right upper limb|Complex regional pain syndrome I of right upper limb +C2875369|T047|PT|G90.511|ICD10CM|Complex regional pain syndrome I of right upper limb|Complex regional pain syndrome I of right upper limb +C2875370|T047|AB|G90.512|ICD10CM|Complex regional pain syndrome I of left upper limb|Complex regional pain syndrome I of left upper limb +C2875370|T047|PT|G90.512|ICD10CM|Complex regional pain syndrome I of left upper limb|Complex regional pain syndrome I of left upper limb +C2875371|T047|AB|G90.513|ICD10CM|Complex regional pain syndrome I of upper limb, bilateral|Complex regional pain syndrome I of upper limb, bilateral +C2875371|T047|PT|G90.513|ICD10CM|Complex regional pain syndrome I of upper limb, bilateral|Complex regional pain syndrome I of upper limb, bilateral +C2875372|T047|AB|G90.519|ICD10CM|Complex regional pain syndrome I of unspecified upper limb|Complex regional pain syndrome I of unspecified upper limb +C2875372|T047|PT|G90.519|ICD10CM|Complex regional pain syndrome I of unspecified upper limb|Complex regional pain syndrome I of unspecified upper limb +C2875373|T047|AB|G90.52|ICD10CM|Complex regional pain syndrome I of lower limb|Complex regional pain syndrome I of lower limb +C2875373|T047|HT|G90.52|ICD10CM|Complex regional pain syndrome I of lower limb|Complex regional pain syndrome I of lower limb +C2875374|T047|AB|G90.521|ICD10CM|Complex regional pain syndrome I of right lower limb|Complex regional pain syndrome I of right lower limb +C2875374|T047|PT|G90.521|ICD10CM|Complex regional pain syndrome I of right lower limb|Complex regional pain syndrome I of right lower limb +C2875375|T047|AB|G90.522|ICD10CM|Complex regional pain syndrome I of left lower limb|Complex regional pain syndrome I of left lower limb +C2875375|T047|PT|G90.522|ICD10CM|Complex regional pain syndrome I of left lower limb|Complex regional pain syndrome I of left lower limb +C2875376|T047|AB|G90.523|ICD10CM|Complex regional pain syndrome I of lower limb, bilateral|Complex regional pain syndrome I of lower limb, bilateral +C2875376|T047|PT|G90.523|ICD10CM|Complex regional pain syndrome I of lower limb, bilateral|Complex regional pain syndrome I of lower limb, bilateral +C2875377|T047|AB|G90.529|ICD10CM|Complex regional pain syndrome I of unspecified lower limb|Complex regional pain syndrome I of unspecified lower limb +C2875377|T047|PT|G90.529|ICD10CM|Complex regional pain syndrome I of unspecified lower limb|Complex regional pain syndrome I of unspecified lower limb +C2875378|T047|AB|G90.59|ICD10CM|Complex regional pain syndrome I of other specified site|Complex regional pain syndrome I of other specified site +C2875378|T047|PT|G90.59|ICD10CM|Complex regional pain syndrome I of other specified site|Complex regional pain syndrome I of other specified site +C0477416|T047|PT|G90.8|ICD10|Other disorders of autonomic nervous system|Other disorders of autonomic nervous system +C0477416|T047|PT|G90.8|ICD10CM|Other disorders of autonomic nervous system|Other disorders of autonomic nervous system +C0477416|T047|AB|G90.8|ICD10CM|Other disorders of autonomic nervous system|Other disorders of autonomic nervous system +C1145628|T047|PT|G90.9|ICD10|Disorder of autonomic nervous system, unspecified|Disorder of autonomic nervous system, unspecified +C1145628|T047|AB|G90.9|ICD10CM|Disorder of the autonomic nervous system, unspecified|Disorder of the autonomic nervous system, unspecified +C1145628|T047|PT|G90.9|ICD10CM|Disorder of the autonomic nervous system, unspecified|Disorder of the autonomic nervous system, unspecified +C0270716|T020|ET|G91|ICD10CM|acquired hydrocephalus|acquired hydrocephalus +C0020255|T047|HT|G91|ICD10CM|Hydrocephalus|Hydrocephalus +C0020255|T047|AB|G91|ICD10CM|Hydrocephalus|Hydrocephalus +C0020255|T047|HT|G91|ICD10|Hydrocephalus|Hydrocephalus +C0009451|T047|PT|G91.0|ICD10|Communicating hydrocephalus|Communicating hydrocephalus +C0009451|T047|PT|G91.0|ICD10CM|Communicating hydrocephalus|Communicating hydrocephalus +C0009451|T047|AB|G91.0|ICD10CM|Communicating hydrocephalus|Communicating hydrocephalus +C1955759|T047|ET|G91.0|ICD10CM|Secondary normal pressure hydrocephalus|Secondary normal pressure hydrocephalus +C0549423|T047|PT|G91.1|ICD10|Obstructive hydrocephalus|Obstructive hydrocephalus +C0549423|T047|PT|G91.1|ICD10CM|Obstructive hydrocephalus|Obstructive hydrocephalus +C0549423|T047|AB|G91.1|ICD10CM|Obstructive hydrocephalus|Obstructive hydrocephalus +C2047886|T047|AB|G91.2|ICD10CM|(Idiopathic) normal pressure hydrocephalus|(Idiopathic) normal pressure hydrocephalus +C2047886|T047|PT|G91.2|ICD10CM|(Idiopathic) normal pressure hydrocephalus|(Idiopathic) normal pressure hydrocephalus +C0020258|T047|ET|G91.2|ICD10CM|Normal pressure hydrocephalus NOS|Normal pressure hydrocephalus NOS +C0020258|T047|PT|G91.2|ICD10|Normal-pressure hydrocephalus|Normal-pressure hydrocephalus +C0477432|T047|PT|G91.3|ICD10|Post-traumatic hydrocephalus, unspecified|Post-traumatic hydrocephalus, unspecified +C0477432|T047|PT|G91.3|ICD10CM|Post-traumatic hydrocephalus, unspecified|Post-traumatic hydrocephalus, unspecified +C0477432|T047|AB|G91.3|ICD10CM|Post-traumatic hydrocephalus, unspecified|Post-traumatic hydrocephalus, unspecified +C2875379|T047|PT|G91.4|ICD10CM|Hydrocephalus in diseases classified elsewhere|Hydrocephalus in diseases classified elsewhere +C2875379|T047|AB|G91.4|ICD10CM|Hydrocephalus in diseases classified elsewhere|Hydrocephalus in diseases classified elsewhere +C0477417|T047|PT|G91.8|ICD10CM|Other hydrocephalus|Other hydrocephalus +C0477417|T047|AB|G91.8|ICD10CM|Other hydrocephalus|Other hydrocephalus +C0477417|T047|PT|G91.8|ICD10|Other hydrocephalus|Other hydrocephalus +C0020255|T047|PT|G91.9|ICD10|Hydrocephalus, unspecified|Hydrocephalus, unspecified +C0020255|T047|PT|G91.9|ICD10CM|Hydrocephalus, unspecified|Hydrocephalus, unspecified +C0020255|T047|AB|G91.9|ICD10CM|Hydrocephalus, unspecified|Hydrocephalus, unspecified +C0154659|T037|ET|G92|ICD10CM|Toxic encephalitis|Toxic encephalitis +C0149504|T037|PT|G92|ICD10CM|Toxic encephalopathy|Toxic encephalopathy +C0149504|T037|AB|G92|ICD10CM|Toxic encephalopathy|Toxic encephalopathy +C0149504|T037|PT|G92|ICD10|Toxic encephalopathy|Toxic encephalopathy +C0852400|T037|ET|G92|ICD10CM|Toxic metabolic encephalopathy|Toxic metabolic encephalopathy +C0494513|T047|HT|G93|ICD10|Other disorders of brain|Other disorders of brain +C0494513|T047|AB|G93|ICD10CM|Other disorders of brain|Other disorders of brain +C0494513|T047|HT|G93|ICD10CM|Other disorders of brain|Other disorders of brain +C0078981|T047|ET|G93.0|ICD10CM|Arachnoid cyst|Arachnoid cyst +C0154724|T047|PT|G93.0|ICD10CM|Cerebral cysts|Cerebral cysts +C0154724|T047|AB|G93.0|ICD10CM|Cerebral cysts|Cerebral cysts +C0154724|T047|PT|G93.0|ICD10|Cerebral cysts|Cerebral cysts +C1394412|T190|ET|G93.0|ICD10CM|Porencephalic cyst, acquired|Porencephalic cyst, acquired +C0494514|T046|PT|G93.1|ICD10CM|Anoxic brain damage, not elsewhere classified|Anoxic brain damage, not elsewhere classified +C0494514|T046|AB|G93.1|ICD10CM|Anoxic brain damage, not elsewhere classified|Anoxic brain damage, not elsewhere classified +C0494514|T046|PT|G93.1|ICD10|Anoxic brain damage, not elsewhere classified|Anoxic brain damage, not elsewhere classified +C0033845|T047|PT|G93.2|ICD10CM|Benign intracranial hypertension|Benign intracranial hypertension +C0033845|T047|AB|G93.2|ICD10CM|Benign intracranial hypertension|Benign intracranial hypertension +C0033845|T047|PT|G93.2|ICD10|Benign intracranial hypertension|Benign intracranial hypertension +C0015674|T047|ET|G93.3|ICD10CM|Benign myalgic encephalomyelitis|Benign myalgic encephalomyelitis +C0015674|T047|PT|G93.3|ICD10CM|Postviral fatigue syndrome|Postviral fatigue syndrome +C0015674|T047|AB|G93.3|ICD10CM|Postviral fatigue syndrome|Postviral fatigue syndrome +C0015674|T047|PT|G93.3|ICD10|Postviral fatigue syndrome|Postviral fatigue syndrome +C0085584|T047|PT|G93.4|ICD10|Encephalopathy, unspecified|Encephalopathy, unspecified +C2875380|T047|AB|G93.4|ICD10CM|Other and unspecified encephalopathy|Other and unspecified encephalopathy +C2875380|T047|HT|G93.4|ICD10CM|Other and unspecified encephalopathy|Other and unspecified encephalopathy +C0085584|T047|PT|G93.40|ICD10CM|Encephalopathy, unspecified|Encephalopathy, unspecified +C0085584|T047|AB|G93.40|ICD10CM|Encephalopathy, unspecified|Encephalopathy, unspecified +C0006112|T047|PT|G93.41|ICD10CM|Metabolic encephalopathy|Metabolic encephalopathy +C0006112|T047|AB|G93.41|ICD10CM|Metabolic encephalopathy|Metabolic encephalopathy +C0393642|T047|ET|G93.41|ICD10CM|Septic encephalopathy|Septic encephalopathy +C1260408|T047|ET|G93.49|ICD10CM|Encephalopathy NEC|Encephalopathy NEC +C1260408|T047|AB|G93.49|ICD10CM|Other encephalopathy|Other encephalopathy +C1260408|T047|PT|G93.49|ICD10CM|Other encephalopathy|Other encephalopathy +C2875381|T047|ET|G93.5|ICD10CM|Arnold-Chiari type 1 compression of brain|Arnold-Chiari type 1 compression of brain +C0009592|T047|PT|G93.5|ICD10CM|Compression of brain|Compression of brain +C0009592|T047|AB|G93.5|ICD10CM|Compression of brain|Compression of brain +C0009592|T047|PT|G93.5|ICD10|Compression of brain|Compression of brain +C0270680|T047|ET|G93.5|ICD10CM|Compression of brain (stem)|Compression of brain (stem) +C0270679|T190|ET|G93.5|ICD10CM|Herniation of brain (stem)|Herniation of brain (stem) +C0006114|T046|PT|G93.6|ICD10CM|Cerebral edema|Cerebral edema +C0006114|T046|AB|G93.6|ICD10CM|Cerebral edema|Cerebral edema +C0006114|T046|PT|G93.6|ICD10AE|Cerebral edema|Cerebral edema +C0006114|T046|PT|G93.6|ICD10|Cerebral oedema|Cerebral oedema +C0035400|T047|PT|G93.7|ICD10|Reye's syndrome|Reye's syndrome +C0035400|T047|PT|G93.7|ICD10CM|Reye's syndrome|Reye's syndrome +C0035400|T047|AB|G93.7|ICD10CM|Reye's syndrome|Reye's syndrome +C0477418|T047|PT|G93.8|ICD10|Other specified disorders of brain|Other specified disorders of brain +C0477418|T047|HT|G93.8|ICD10CM|Other specified disorders of brain|Other specified disorders of brain +C0477418|T047|AB|G93.8|ICD10CM|Other specified disorders of brain|Other specified disorders of brain +C1504404|T047|ET|G93.81|ICD10CM|Hippocampal sclerosis|Hippocampal sclerosis +C2062593|T047|ET|G93.81|ICD10CM|Mesial temporal sclerosis|Mesial temporal sclerosis +C2712987|T047|AB|G93.81|ICD10CM|Temporal sclerosis|Temporal sclerosis +C2712987|T047|PT|G93.81|ICD10CM|Temporal sclerosis|Temporal sclerosis +C0006110|T046|PT|G93.82|ICD10CM|Brain death|Brain death +C0006110|T046|AB|G93.82|ICD10CM|Brain death|Brain death +C0477418|T047|PT|G93.89|ICD10CM|Other specified disorders of brain|Other specified disorders of brain +C0477418|T047|AB|G93.89|ICD10CM|Other specified disorders of brain|Other specified disorders of brain +C2875382|T046|ET|G93.89|ICD10CM|Postradiation encephalopathy|Postradiation encephalopathy +C0006111|T047|PT|G93.9|ICD10CM|Disorder of brain, unspecified|Disorder of brain, unspecified +C0006111|T047|AB|G93.9|ICD10CM|Disorder of brain, unspecified|Disorder of brain, unspecified +C0006111|T047|PT|G93.9|ICD10|Disorder of brain, unspecified|Disorder of brain, unspecified +C0694479|T047|HT|G94|ICD10|Other disorders of brain in diseases classified elsewhere|Other disorders of brain in diseases classified elsewhere +C0694479|T047|AB|G94|ICD10CM|Other disorders of brain in diseases classified elsewhere|Other disorders of brain in diseases classified elsewhere +C0694479|T047|PT|G94|ICD10CM|Other disorders of brain in diseases classified elsewhere|Other disorders of brain in diseases classified elsewhere +C0477419|T047|PT|G94.0|ICD10|Hydrocephalus in infectious and parasitic diseases classified elsewhere|Hydrocephalus in infectious and parasitic diseases classified elsewhere +C0494515|T020|PT|G94.1|ICD10|Hydrocephalus in neoplastic disease|Hydrocephalus in neoplastic disease +C0477421|T047|PT|G94.2|ICD10|Hydrocephalus in other diseases classified elsewhere|Hydrocephalus in other diseases classified elsewhere +C0477422|T047|PT|G94.8|ICD10|Other specified disorders of brain in diseases classified elsewhere|Other specified disorders of brain in diseases classified elsewhere +C2875383|T047|AB|G95|ICD10CM|Other and unspecified diseases of spinal cord|Other and unspecified diseases of spinal cord +C2875383|T047|HT|G95|ICD10CM|Other and unspecified diseases of spinal cord|Other and unspecified diseases of spinal cord +C0154688|T047|HT|G95|ICD10|Other diseases of spinal cord|Other diseases of spinal cord +C0039145|T047|PT|G95.0|ICD10|Syringomyelia and syringobulbia|Syringomyelia and syringobulbia +C0039145|T047|PT|G95.0|ICD10CM|Syringomyelia and syringobulbia|Syringomyelia and syringobulbia +C0039145|T047|AB|G95.0|ICD10CM|Syringomyelia and syringobulbia|Syringomyelia and syringobulbia +C0154685|T047|HT|G95.1|ICD10CM|Vascular myelopathies|Vascular myelopathies +C0154685|T047|AB|G95.1|ICD10CM|Vascular myelopathies|Vascular myelopathies +C0154685|T047|PT|G95.1|ICD10|Vascular myelopathies|Vascular myelopathies +C2875385|T047|AB|G95.11|ICD10CM|Acute infarction of spinal cord (embolic) (nonembolic)|Acute infarction of spinal cord (embolic) (nonembolic) +C2875385|T047|PT|G95.11|ICD10CM|Acute infarction of spinal cord (embolic) (nonembolic)|Acute infarction of spinal cord (embolic) (nonembolic) +C2875384|T046|ET|G95.11|ICD10CM|Anoxia of spinal cord|Anoxia of spinal cord +C0270775|T047|ET|G95.11|ICD10CM|Arterial thrombosis of spinal cord|Arterial thrombosis of spinal cord +C0270777|T046|ET|G95.19|ICD10CM|Edema of spinal cord|Edema of spinal cord +C0018949|T047|ET|G95.19|ICD10CM|Hematomyelia|Hematomyelia +C2875386|T046|ET|G95.19|ICD10CM|Nonpyogenic intraspinal phlebitis and thrombophlebitis|Nonpyogenic intraspinal phlebitis and thrombophlebitis +C2875387|T047|AB|G95.19|ICD10CM|Other vascular myelopathies|Other vascular myelopathies +C2875387|T047|PT|G95.19|ICD10CM|Other vascular myelopathies|Other vascular myelopathies +C0270778|T047|ET|G95.19|ICD10CM|Subacute necrotic myelopathy|Subacute necrotic myelopathy +C0037926|T047|PT|G95.2|ICD10|Cord compression, unspecified|Cord compression, unspecified +C2875388|T047|AB|G95.2|ICD10CM|Other and unspecified cord compression|Other and unspecified cord compression +C2875388|T047|HT|G95.2|ICD10CM|Other and unspecified cord compression|Other and unspecified cord compression +C0037926|T047|AB|G95.20|ICD10CM|Unspecified cord compression|Unspecified cord compression +C0037926|T047|PT|G95.20|ICD10CM|Unspecified cord compression|Unspecified cord compression +C2875389|T047|AB|G95.29|ICD10CM|Other cord compression|Other cord compression +C2875389|T047|PT|G95.29|ICD10CM|Other cord compression|Other cord compression +C0477423|T047|PT|G95.8|ICD10|Other specified diseases of spinal cord|Other specified diseases of spinal cord +C0477423|T047|HT|G95.8|ICD10CM|Other specified diseases of spinal cord|Other specified diseases of spinal cord +C0477423|T047|AB|G95.8|ICD10CM|Other specified diseases of spinal cord|Other specified diseases of spinal cord +C0742803|T047|PT|G95.81|ICD10CM|Conus medullaris syndrome|Conus medullaris syndrome +C0742803|T047|AB|G95.81|ICD10CM|Conus medullaris syndrome|Conus medullaris syndrome +C0270800|T047|ET|G95.89|ICD10CM|Cord bladder NOS|Cord bladder NOS +C0270770|T046|ET|G95.89|ICD10CM|Drug-induced myelopathy|Drug-induced myelopathy +C0477423|T047|PT|G95.89|ICD10CM|Other specified diseases of spinal cord|Other specified diseases of spinal cord +C0477423|T047|AB|G95.89|ICD10CM|Other specified diseases of spinal cord|Other specified diseases of spinal cord +C0270769|T037|ET|G95.89|ICD10CM|Radiation-induced myelopathy|Radiation-induced myelopathy +C0037928|T047|PT|G95.9|ICD10|Disease of spinal cord, unspecified|Disease of spinal cord, unspecified +C0037928|T047|PT|G95.9|ICD10CM|Disease of spinal cord, unspecified|Disease of spinal cord, unspecified +C0037928|T047|AB|G95.9|ICD10CM|Disease of spinal cord, unspecified|Disease of spinal cord, unspecified +C0037928|T047|ET|G95.9|ICD10CM|Myelopathy NOS|Myelopathy NOS +C0178266|T047|HT|G96|ICD10|Other disorders of central nervous system|Other disorders of central nervous system +C0178266|T047|AB|G96|ICD10CM|Other disorders of central nervous system|Other disorders of central nervous system +C0178266|T047|HT|G96|ICD10CM|Other disorders of central nervous system|Other disorders of central nervous system +C0023182|T046|PT|G96.0|ICD10|Cerebrospinal fluid leak|Cerebrospinal fluid leak +C0023182|T046|PT|G96.0|ICD10CM|Cerebrospinal fluid leak|Cerebrospinal fluid leak +C0023182|T046|AB|G96.0|ICD10CM|Cerebrospinal fluid leak|Cerebrospinal fluid leak +C0795685|T047|PT|G96.1|ICD10|Disorders of meninges, not elsewhere classified|Disorders of meninges, not elsewhere classified +C0795685|T047|HT|G96.1|ICD10CM|Disorders of meninges, not elsewhere classified|Disorders of meninges, not elsewhere classified +C0795685|T047|AB|G96.1|ICD10CM|Disorders of meninges, not elsewhere classified|Disorders of meninges, not elsewhere classified +C1504340|T037|PT|G96.11|ICD10CM|Dural tear|Dural tear +C1504340|T037|AB|G96.11|ICD10CM|Dural tear|Dural tear +C2875390|T047|AB|G96.12|ICD10CM|Meningeal adhesions (cerebral) (spinal)|Meningeal adhesions (cerebral) (spinal) +C2875390|T047|PT|G96.12|ICD10CM|Meningeal adhesions (cerebral) (spinal)|Meningeal adhesions (cerebral) (spinal) +C2875391|T047|AB|G96.19|ICD10CM|Other disorders of meninges, not elsewhere classified|Other disorders of meninges, not elsewhere classified +C2875391|T047|PT|G96.19|ICD10CM|Other disorders of meninges, not elsewhere classified|Other disorders of meninges, not elsewhere classified +C0477424|T047|PT|G96.8|ICD10|Other specified disorders of central nervous system|Other specified disorders of central nervous system +C0477424|T047|PT|G96.8|ICD10CM|Other specified disorders of central nervous system|Other specified disorders of central nervous system +C0477424|T047|AB|G96.8|ICD10CM|Other specified disorders of central nervous system|Other specified disorders of central nervous system +C0007682|T047|AB|G96.9|ICD10CM|Disorder of central nervous system, unspecified|Disorder of central nervous system, unspecified +C0007682|T047|PT|G96.9|ICD10CM|Disorder of central nervous system, unspecified|Disorder of central nervous system, unspecified +C0007682|T047|PT|G96.9|ICD10|Disorder of central nervous system, unspecified|Disorder of central nervous system, unspecified +C2875392|T046|AB|G97|ICD10CM|Intraop and postproc comp and disorders of nervous sys, NEC|Intraop and postproc comp and disorders of nervous sys, NEC +C0494516|T047|HT|G97|ICD10|Postprocedural disorders of nervous system, not elsewhere classified|Postprocedural disorders of nervous system, not elsewhere classified +C0451683|T020|PT|G97.0|ICD10|Cerebrospinal fluid leak from spinal puncture|Cerebrospinal fluid leak from spinal puncture +C0451683|T020|PT|G97.0|ICD10CM|Cerebrospinal fluid leak from spinal puncture|Cerebrospinal fluid leak from spinal puncture +C0451683|T020|AB|G97.0|ICD10CM|Cerebrospinal fluid leak from spinal puncture|Cerebrospinal fluid leak from spinal puncture +C2875393|T046|ET|G97.1|ICD10CM|Headache due to lumbar puncture|Headache due to lumbar puncture +C0477425|T033|PT|G97.1|ICD10CM|Other reaction to spinal and lumbar puncture|Other reaction to spinal and lumbar puncture +C0477425|T033|AB|G97.1|ICD10CM|Other reaction to spinal and lumbar puncture|Other reaction to spinal and lumbar puncture +C0477425|T033|PT|G97.1|ICD10|Other reaction to spinal and lumbar puncture|Other reaction to spinal and lumbar puncture +C0451684|T046|PT|G97.2|ICD10|Intracranial hypotension following ventricular shunting|Intracranial hypotension following ventricular shunting +C0451684|T046|PT|G97.2|ICD10CM|Intracranial hypotension following ventricular shunting|Intracranial hypotension following ventricular shunting +C0451684|T046|AB|G97.2|ICD10CM|Intracranial hypotension following ventricular shunting|Intracranial hypotension following ventricular shunting +C2875394|T046|AB|G97.3|ICD10CM|Intraop hemor/hemtom of a nervous sys org comp a procedure|Intraop hemor/hemtom of a nervous sys org comp a procedure +C2875395|T046|AB|G97.31|ICD10CM|Intraop hemor/hemtom of a nervous sys org comp nrv sys proc|Intraop hemor/hemtom of a nervous sys org comp nrv sys proc +C2875396|T046|AB|G97.32|ICD10CM|Intraop hemor/hemtom of a nervous sys org comp oth procedure|Intraop hemor/hemtom of a nervous sys org comp oth procedure +C2875397|T037|AB|G97.4|ICD10CM|Accidental pnctr & lac of a nervous system org dur proc|Accidental pnctr & lac of a nervous system org dur proc +C2875397|T037|HT|G97.4|ICD10CM|Accidental puncture and laceration of a nervous system organ or structure during a procedure|Accidental puncture and laceration of a nervous system organ or structure during a procedure +C2349483|T037|AB|G97.41|ICD10CM|Accidental puncture or laceration of dura during a procedure|Accidental puncture or laceration of dura during a procedure +C2349483|T037|PT|G97.41|ICD10CM|Accidental puncture or laceration of dura during a procedure|Accidental puncture or laceration of dura during a procedure +C2349484|T037|ET|G97.41|ICD10CM|Incidental (inadvertent) durotomy|Incidental (inadvertent) durotomy +C2875398|T037|AB|G97.48|ICD10CM|Acc pnctr & lac of nervous sys org during a nervous sys proc|Acc pnctr & lac of nervous sys org during a nervous sys proc +C2875399|T037|AB|G97.49|ICD10CM|Acc pnctr & lac of nervous sys org during oth procedure|Acc pnctr & lac of nervous sys org during oth procedure +C2875399|T037|PT|G97.49|ICD10CM|Accidental puncture and laceration of other nervous system organ or structure during other procedure|Accidental puncture and laceration of other nervous system organ or structure during other procedure +C4268324|T046|AB|G97.5|ICD10CM|Postproc hemor of a nervous sys org following a procedure|Postproc hemor of a nervous sys org following a procedure +C4268324|T046|HT|G97.5|ICD10CM|Postprocedural hemorrhage of a nervous system organ or structure following a procedure|Postprocedural hemorrhage of a nervous system organ or structure following a procedure +C4268325|T046|AB|G97.51|ICD10CM|Postproc hemor of a nervous sys org fol a nervous sys proc|Postproc hemor of a nervous sys org fol a nervous sys proc +C4268326|T046|AB|G97.52|ICD10CM|Postproc hemor of a nervous sys org fol other procedure|Postproc hemor of a nervous sys org fol other procedure +C4268326|T046|PT|G97.52|ICD10CM|Postprocedural hemorrhage of a nervous system organ or structure following other procedure|Postprocedural hemorrhage of a nervous system organ or structure following other procedure +C4268327|T046|AB|G97.6|ICD10CM|Postproc hematoma and seroma of a nervous sys org fol a proc|Postproc hematoma and seroma of a nervous sys org fol a proc +C4268327|T046|HT|G97.6|ICD10CM|Postprocedural hematoma and seroma of a nervous system organ or structure following a procedure|Postprocedural hematoma and seroma of a nervous system organ or structure following a procedure +C4268328|T046|AB|G97.61|ICD10CM|Postp hematoma of a nervous sys org fol a nervous sys proc|Postp hematoma of a nervous sys org fol a nervous sys proc +C4268328|T046|PT|G97.61|ICD10CM|Postprocedural hematoma of a nervous system organ or structure following a nervous system procedure|Postprocedural hematoma of a nervous system organ or structure following a nervous system procedure +C4268329|T046|AB|G97.62|ICD10CM|Postproc hematoma of a nervous sys org fol other procedure|Postproc hematoma of a nervous sys org fol other procedure +C4268329|T046|PT|G97.62|ICD10CM|Postprocedural hematoma of a nervous system organ or structure following other procedure|Postprocedural hematoma of a nervous system organ or structure following other procedure +C4268330|T046|AB|G97.63|ICD10CM|Postproc seroma of a nervous sys org fol a nervous sys proc|Postproc seroma of a nervous sys org fol a nervous sys proc +C4268330|T046|PT|G97.63|ICD10CM|Postprocedural seroma of a nervous system organ or structure following a nervous system procedure|Postprocedural seroma of a nervous system organ or structure following a nervous system procedure +C4268331|T046|AB|G97.64|ICD10CM|Postproc seroma of a nervous sys org fol other procedure|Postproc seroma of a nervous sys org fol other procedure +C4268331|T046|PT|G97.64|ICD10CM|Postprocedural seroma of a nervous system organ or structure following other procedure|Postprocedural seroma of a nervous system organ or structure following other procedure +C2875403|T046|AB|G97.8|ICD10CM|Oth intraop and postproc comp and disorders of nervous sys|Oth intraop and postproc comp and disorders of nervous sys +C2875403|T046|HT|G97.8|ICD10CM|Other intraoperative and postprocedural complications and disorders of nervous system|Other intraoperative and postprocedural complications and disorders of nervous system +C0477426|T037|PT|G97.8|ICD10|Other postprocedural disorders of nervous system|Other postprocedural disorders of nervous system +C2875404|T046|AB|G97.81|ICD10CM|Other intraoperative complications of nervous system|Other intraoperative complications of nervous system +C2875404|T046|PT|G97.81|ICD10CM|Other intraoperative complications of nervous system|Other intraoperative complications of nervous system +C2875405|T046|AB|G97.82|ICD10CM|Oth postproc complications and disorders of nervous sys|Oth postproc complications and disorders of nervous sys +C2875405|T046|PT|G97.82|ICD10CM|Other postprocedural complications and disorders of nervous system|Other postprocedural complications and disorders of nervous system +C0494517|T046|PT|G97.9|ICD10|Postprocedural disorder of nervous system, unspecified|Postprocedural disorder of nervous system, unspecified +C0027765|T047|ET|G98|ICD10CM|nervous system disorder NOS|nervous system disorder NOS +C0869054|T047|AB|G98|ICD10CM|Other disorders of nervous system not elsewhere classified|Other disorders of nervous system not elsewhere classified +C0869054|T047|HT|G98|ICD10CM|Other disorders of nervous system not elsewhere classified|Other disorders of nervous system not elsewhere classified +C0869054|T047|PT|G98|ICD10|Other disorders of nervous system, not elsewhere classified|Other disorders of nervous system, not elsewhere classified +C2875408|T047|AB|G98.0|ICD10CM|Neurogenic arthritis, not elsewhere classified|Neurogenic arthritis, not elsewhere classified +C2875408|T047|PT|G98.0|ICD10CM|Neurogenic arthritis, not elsewhere classified|Neurogenic arthritis, not elsewhere classified +C2875406|T046|ET|G98.0|ICD10CM|Nonsyphilitic neurogenic arthropathy NEC|Nonsyphilitic neurogenic arthropathy NEC +C2875407|T046|ET|G98.0|ICD10CM|Nonsyphilitic neurogenic spondylopathy NEC|Nonsyphilitic neurogenic spondylopathy NEC +C0027765|T047|ET|G98.8|ICD10CM|Nervous system disorder NOS|Nervous system disorder NOS +C0154725|T047|AB|G98.8|ICD10CM|Other disorders of nervous system|Other disorders of nervous system +C0154725|T047|PT|G98.8|ICD10CM|Other disorders of nervous system|Other disorders of nervous system +C0694480|T047|AB|G99|ICD10CM|Oth disorders of nervous system in diseases classd elswhr|Oth disorders of nervous system in diseases classd elswhr +C0694480|T047|HT|G99|ICD10CM|Other disorders of nervous system in diseases classified elsewhere|Other disorders of nervous system in diseases classified elsewhere +C0694480|T047|HT|G99|ICD10|Other disorders of nervous system in diseases classified elsewhere|Other disorders of nervous system in diseases classified elsewhere +C2875409|T047|AB|G99.0|ICD10CM|Autonomic neuropathy in diseases classified elsewhere|Autonomic neuropathy in diseases classified elsewhere +C2875409|T047|PT|G99.0|ICD10CM|Autonomic neuropathy in diseases classified elsewhere|Autonomic neuropathy in diseases classified elsewhere +C0494518|T047|PT|G99.0|ICD10|Autonomic neuropathy in endocrine and metabolic diseases|Autonomic neuropathy in endocrine and metabolic diseases +C0477429|T047|PT|G99.1|ICD10|Other disorders of autonomic nervous system in other diseases classified elsewhere|Other disorders of autonomic nervous system in other diseases classified elsewhere +C0477430|T047|PT|G99.2|ICD10|Myelopathy in diseases classified elsewhere|Myelopathy in diseases classified elsewhere +C0477430|T047|PT|G99.2|ICD10CM|Myelopathy in diseases classified elsewhere|Myelopathy in diseases classified elsewhere +C0477430|T047|AB|G99.2|ICD10CM|Myelopathy in diseases classified elsewhere|Myelopathy in diseases classified elsewhere +C0477431|T047|AB|G99.8|ICD10CM|Oth disrd of nervous system in diseases classified elsewhere|Oth disrd of nervous system in diseases classified elsewhere +C0477431|T047|PT|G99.8|ICD10CM|Other specified disorders of nervous system in diseases classified elsewhere|Other specified disorders of nervous system in diseases classified elsewhere +C0477431|T047|PT|G99.8|ICD10|Other specified disorders of nervous system in diseases classified elsewhere|Other specified disorders of nervous system in diseases classified elsewhere +C0494519|T047|HT|H00|ICD10|Hordeolum and chalazion|Hordeolum and chalazion +C0494519|T047|AB|H00|ICD10CM|Hordeolum and chalazion|Hordeolum and chalazion +C0494519|T047|HT|H00|ICD10CM|Hordeolum and chalazion|Hordeolum and chalazion +C0348508|T047|HT|H00-H05|ICD10CM|Disorders of eyelid, lacrimal system and orbit (H00-H05)|Disorders of eyelid, lacrimal system and orbit (H00-H05) +C0348508|T047|HT|H00-H06.9|ICD10|Disorders of eyelid, lacrimal system and orbit|Disorders of eyelid, lacrimal system and orbit +C1314803|T047|HT|H00-H59|ICD10CM|Diseases of the eye and adnexa (H00-H59)|Diseases of the eye and adnexa (H00-H59) +C1314803|T047|HT|H00-H59.9|ICD10|Diseases of the eye and adnexa|Diseases of the eye and adnexa +C2875410|T047|AB|H00.0|ICD10CM|Hordeolum (externum) (internum) of eyelid|Hordeolum (externum) (internum) of eyelid +C2875410|T047|HT|H00.0|ICD10CM|Hordeolum (externum) (internum) of eyelid|Hordeolum (externum) (internum) of eyelid +C0019918|T047|PT|H00.0|ICD10|Hordeolum and other deep inflammation of eyelid|Hordeolum and other deep inflammation of eyelid +C0019919|T047|HT|H00.01|ICD10CM|Hordeolum externum|Hordeolum externum +C0019919|T047|AB|H00.01|ICD10CM|Hordeolum externum|Hordeolum externum +C0019917|T047|ET|H00.01|ICD10CM|Hordeolum NOS|Hordeolum NOS +C0019917|T047|ET|H00.01|ICD10CM|Stye|Stye +C2875411|T047|AB|H00.011|ICD10CM|Hordeolum externum right upper eyelid|Hordeolum externum right upper eyelid +C2875411|T047|PT|H00.011|ICD10CM|Hordeolum externum right upper eyelid|Hordeolum externum right upper eyelid +C2875412|T047|AB|H00.012|ICD10CM|Hordeolum externum right lower eyelid|Hordeolum externum right lower eyelid +C2875412|T047|PT|H00.012|ICD10CM|Hordeolum externum right lower eyelid|Hordeolum externum right lower eyelid +C2875413|T047|AB|H00.013|ICD10CM|Hordeolum externum right eye, unspecified eyelid|Hordeolum externum right eye, unspecified eyelid +C2875413|T047|PT|H00.013|ICD10CM|Hordeolum externum right eye, unspecified eyelid|Hordeolum externum right eye, unspecified eyelid +C2875414|T047|AB|H00.014|ICD10CM|Hordeolum externum left upper eyelid|Hordeolum externum left upper eyelid +C2875414|T047|PT|H00.014|ICD10CM|Hordeolum externum left upper eyelid|Hordeolum externum left upper eyelid +C2875415|T047|AB|H00.015|ICD10CM|Hordeolum externum left lower eyelid|Hordeolum externum left lower eyelid +C2875415|T047|PT|H00.015|ICD10CM|Hordeolum externum left lower eyelid|Hordeolum externum left lower eyelid +C2875416|T047|AB|H00.016|ICD10CM|Hordeolum externum left eye, unspecified eyelid|Hordeolum externum left eye, unspecified eyelid +C2875416|T047|PT|H00.016|ICD10CM|Hordeolum externum left eye, unspecified eyelid|Hordeolum externum left eye, unspecified eyelid +C2875417|T047|AB|H00.019|ICD10CM|Hordeolum externum unspecified eye, unspecified eyelid|Hordeolum externum unspecified eye, unspecified eyelid +C2875417|T047|PT|H00.019|ICD10CM|Hordeolum externum unspecified eye, unspecified eyelid|Hordeolum externum unspecified eye, unspecified eyelid +C0085690|T047|HT|H00.02|ICD10CM|Hordeolum internum|Hordeolum internum +C0085690|T047|AB|H00.02|ICD10CM|Hordeolum internum|Hordeolum internum +C0521730|T047|ET|H00.02|ICD10CM|Infection of meibomian gland|Infection of meibomian gland +C2875418|T047|PT|H00.021|ICD10CM|Hordeolum internum right upper eyelid|Hordeolum internum right upper eyelid +C2875418|T047|AB|H00.021|ICD10CM|Hordeolum internum right upper eyelid|Hordeolum internum right upper eyelid +C2875419|T047|PT|H00.022|ICD10CM|Hordeolum internum right lower eyelid|Hordeolum internum right lower eyelid +C2875419|T047|AB|H00.022|ICD10CM|Hordeolum internum right lower eyelid|Hordeolum internum right lower eyelid +C2875420|T047|AB|H00.023|ICD10CM|Hordeolum internum right eye, unspecified eyelid|Hordeolum internum right eye, unspecified eyelid +C2875420|T047|PT|H00.023|ICD10CM|Hordeolum internum right eye, unspecified eyelid|Hordeolum internum right eye, unspecified eyelid +C2875421|T047|PT|H00.024|ICD10CM|Hordeolum internum left upper eyelid|Hordeolum internum left upper eyelid +C2875421|T047|AB|H00.024|ICD10CM|Hordeolum internum left upper eyelid|Hordeolum internum left upper eyelid +C2875422|T047|PT|H00.025|ICD10CM|Hordeolum internum left lower eyelid|Hordeolum internum left lower eyelid +C2875422|T047|AB|H00.025|ICD10CM|Hordeolum internum left lower eyelid|Hordeolum internum left lower eyelid +C2875423|T047|AB|H00.026|ICD10CM|Hordeolum internum left eye, unspecified eyelid|Hordeolum internum left eye, unspecified eyelid +C2875423|T047|PT|H00.026|ICD10CM|Hordeolum internum left eye, unspecified eyelid|Hordeolum internum left eye, unspecified eyelid +C2875424|T047|AB|H00.029|ICD10CM|Hordeolum internum unspecified eye, unspecified eyelid|Hordeolum internum unspecified eye, unspecified eyelid +C2875424|T047|PT|H00.029|ICD10CM|Hordeolum internum unspecified eye, unspecified eyelid|Hordeolum internum unspecified eye, unspecified eyelid +C0155175|T047|HT|H00.03|ICD10CM|Abscess of eyelid|Abscess of eyelid +C0155175|T047|AB|H00.03|ICD10CM|Abscess of eyelid|Abscess of eyelid +C0019919|T047|ET|H00.03|ICD10CM|Furuncle of eyelid|Furuncle of eyelid +C2042059|T047|PT|H00.031|ICD10CM|Abscess of right upper eyelid|Abscess of right upper eyelid +C2042059|T047|AB|H00.031|ICD10CM|Abscess of right upper eyelid|Abscess of right upper eyelid +C2042056|T047|PT|H00.032|ICD10CM|Abscess of right lower eyelid|Abscess of right lower eyelid +C2042056|T047|AB|H00.032|ICD10CM|Abscess of right lower eyelid|Abscess of right lower eyelid +C2875425|T047|AB|H00.033|ICD10CM|Abscess of eyelid right eye, unspecified eyelid|Abscess of eyelid right eye, unspecified eyelid +C2875425|T047|PT|H00.033|ICD10CM|Abscess of eyelid right eye, unspecified eyelid|Abscess of eyelid right eye, unspecified eyelid +C2042053|T047|PT|H00.034|ICD10CM|Abscess of left upper eyelid|Abscess of left upper eyelid +C2042053|T047|AB|H00.034|ICD10CM|Abscess of left upper eyelid|Abscess of left upper eyelid +C2042050|T047|PT|H00.035|ICD10CM|Abscess of left lower eyelid|Abscess of left lower eyelid +C2042050|T047|AB|H00.035|ICD10CM|Abscess of left lower eyelid|Abscess of left lower eyelid +C2875426|T047|AB|H00.036|ICD10CM|Abscess of eyelid left eye, unspecified eyelid|Abscess of eyelid left eye, unspecified eyelid +C2875426|T047|PT|H00.036|ICD10CM|Abscess of eyelid left eye, unspecified eyelid|Abscess of eyelid left eye, unspecified eyelid +C2875427|T047|AB|H00.039|ICD10CM|Abscess of eyelid unspecified eye, unspecified eyelid|Abscess of eyelid unspecified eye, unspecified eyelid +C2875427|T047|PT|H00.039|ICD10CM|Abscess of eyelid unspecified eye, unspecified eyelid|Abscess of eyelid unspecified eye, unspecified eyelid +C0007933|T047|HT|H00.1|ICD10CM|Chalazion|Chalazion +C0007933|T047|AB|H00.1|ICD10CM|Chalazion|Chalazion +C0007933|T047|PT|H00.1|ICD10|Chalazion|Chalazion +C0007933|T047|ET|H00.1|ICD10CM|Meibomian (gland) cyst|Meibomian (gland) cyst +C2045028|T047|AB|H00.11|ICD10CM|Chalazion right upper eyelid|Chalazion right upper eyelid +C2045028|T047|PT|H00.11|ICD10CM|Chalazion right upper eyelid|Chalazion right upper eyelid +C2045026|T033|AB|H00.12|ICD10CM|Chalazion right lower eyelid|Chalazion right lower eyelid +C2045026|T033|PT|H00.12|ICD10CM|Chalazion right lower eyelid|Chalazion right lower eyelid +C2875428|T047|AB|H00.13|ICD10CM|Chalazion right eye, unspecified eyelid|Chalazion right eye, unspecified eyelid +C2875428|T047|PT|H00.13|ICD10CM|Chalazion right eye, unspecified eyelid|Chalazion right eye, unspecified eyelid +C2045022|T047|AB|H00.14|ICD10CM|Chalazion left upper eyelid|Chalazion left upper eyelid +C2045022|T047|PT|H00.14|ICD10CM|Chalazion left upper eyelid|Chalazion left upper eyelid +C2045024|T033|AB|H00.15|ICD10CM|Chalazion left lower eyelid|Chalazion left lower eyelid +C2045024|T033|PT|H00.15|ICD10CM|Chalazion left lower eyelid|Chalazion left lower eyelid +C2875429|T047|AB|H00.16|ICD10CM|Chalazion left eye, unspecified eyelid|Chalazion left eye, unspecified eyelid +C2875429|T047|PT|H00.16|ICD10CM|Chalazion left eye, unspecified eyelid|Chalazion left eye, unspecified eyelid +C2875430|T047|AB|H00.19|ICD10CM|Chalazion unspecified eye, unspecified eyelid|Chalazion unspecified eye, unspecified eyelid +C2875430|T047|PT|H00.19|ICD10CM|Chalazion unspecified eye, unspecified eyelid|Chalazion unspecified eye, unspecified eyelid +C0155184|T047|AB|H01|ICD10CM|Other inflammation of eyelid|Other inflammation of eyelid +C0155184|T047|HT|H01|ICD10CM|Other inflammation of eyelid|Other inflammation of eyelid +C0155184|T047|HT|H01|ICD10|Other inflammation of eyelid|Other inflammation of eyelid +C0005741|T047|PT|H01.0|ICD10|Blepharitis|Blepharitis +C0005741|T047|HT|H01.0|ICD10CM|Blepharitis|Blepharitis +C0005741|T047|AB|H01.0|ICD10CM|Blepharitis|Blepharitis +C0005741|T047|AB|H01.00|ICD10CM|Unspecified blepharitis|Unspecified blepharitis +C0005741|T047|HT|H01.00|ICD10CM|Unspecified blepharitis|Unspecified blepharitis +C2875431|T047|AB|H01.001|ICD10CM|Unspecified blepharitis right upper eyelid|Unspecified blepharitis right upper eyelid +C2875431|T047|PT|H01.001|ICD10CM|Unspecified blepharitis right upper eyelid|Unspecified blepharitis right upper eyelid +C2174365|T047|AB|H01.002|ICD10CM|Unspecified blepharitis right lower eyelid|Unspecified blepharitis right lower eyelid +C2174365|T047|PT|H01.002|ICD10CM|Unspecified blepharitis right lower eyelid|Unspecified blepharitis right lower eyelid +C2875432|T047|AB|H01.003|ICD10CM|Unspecified blepharitis right eye, unspecified eyelid|Unspecified blepharitis right eye, unspecified eyelid +C2875432|T047|PT|H01.003|ICD10CM|Unspecified blepharitis right eye, unspecified eyelid|Unspecified blepharitis right eye, unspecified eyelid +C2069906|T047|AB|H01.004|ICD10CM|Unspecified blepharitis left upper eyelid|Unspecified blepharitis left upper eyelid +C2069906|T047|PT|H01.004|ICD10CM|Unspecified blepharitis left upper eyelid|Unspecified blepharitis left upper eyelid +C2174366|T047|AB|H01.005|ICD10CM|Unspecified blepharitis left lower eyelid|Unspecified blepharitis left lower eyelid +C2174366|T047|PT|H01.005|ICD10CM|Unspecified blepharitis left lower eyelid|Unspecified blepharitis left lower eyelid +C2875433|T047|AB|H01.006|ICD10CM|Unspecified blepharitis left eye, unspecified eyelid|Unspecified blepharitis left eye, unspecified eyelid +C2875433|T047|PT|H01.006|ICD10CM|Unspecified blepharitis left eye, unspecified eyelid|Unspecified blepharitis left eye, unspecified eyelid +C2875434|T047|AB|H01.009|ICD10CM|Unspecified blepharitis unspecified eye, unspecified eyelid|Unspecified blepharitis unspecified eye, unspecified eyelid +C2875434|T047|PT|H01.009|ICD10CM|Unspecified blepharitis unspecified eye, unspecified eyelid|Unspecified blepharitis unspecified eye, unspecified eyelid +C4554216|T047|AB|H01.00A|ICD10CM|Unspecified blepharitis right eye, upper and lower eyelids|Unspecified blepharitis right eye, upper and lower eyelids +C4554216|T047|PT|H01.00A|ICD10CM|Unspecified blepharitis right eye, upper and lower eyelids|Unspecified blepharitis right eye, upper and lower eyelids +C4554217|T047|AB|H01.00B|ICD10CM|Unspecified blepharitis left eye, upper and lower eyelids|Unspecified blepharitis left eye, upper and lower eyelids +C4554217|T047|PT|H01.00B|ICD10CM|Unspecified blepharitis left eye, upper and lower eyelids|Unspecified blepharitis left eye, upper and lower eyelids +C0155173|T047|HT|H01.01|ICD10CM|Ulcerative blepharitis|Ulcerative blepharitis +C0155173|T047|AB|H01.01|ICD10CM|Ulcerative blepharitis|Ulcerative blepharitis +C2875435|T047|AB|H01.011|ICD10CM|Ulcerative blepharitis right upper eyelid|Ulcerative blepharitis right upper eyelid +C2875435|T047|PT|H01.011|ICD10CM|Ulcerative blepharitis right upper eyelid|Ulcerative blepharitis right upper eyelid +C2875436|T047|AB|H01.012|ICD10CM|Ulcerative blepharitis right lower eyelid|Ulcerative blepharitis right lower eyelid +C2875436|T047|PT|H01.012|ICD10CM|Ulcerative blepharitis right lower eyelid|Ulcerative blepharitis right lower eyelid +C2875437|T047|AB|H01.013|ICD10CM|Ulcerative blepharitis right eye, unspecified eyelid|Ulcerative blepharitis right eye, unspecified eyelid +C2875437|T047|PT|H01.013|ICD10CM|Ulcerative blepharitis right eye, unspecified eyelid|Ulcerative blepharitis right eye, unspecified eyelid +C2875438|T047|AB|H01.014|ICD10CM|Ulcerative blepharitis left upper eyelid|Ulcerative blepharitis left upper eyelid +C2875438|T047|PT|H01.014|ICD10CM|Ulcerative blepharitis left upper eyelid|Ulcerative blepharitis left upper eyelid +C2875439|T047|AB|H01.015|ICD10CM|Ulcerative blepharitis left lower eyelid|Ulcerative blepharitis left lower eyelid +C2875439|T047|PT|H01.015|ICD10CM|Ulcerative blepharitis left lower eyelid|Ulcerative blepharitis left lower eyelid +C2875440|T047|AB|H01.016|ICD10CM|Ulcerative blepharitis left eye, unspecified eyelid|Ulcerative blepharitis left eye, unspecified eyelid +C2875440|T047|PT|H01.016|ICD10CM|Ulcerative blepharitis left eye, unspecified eyelid|Ulcerative blepharitis left eye, unspecified eyelid +C2875441|T047|AB|H01.019|ICD10CM|Ulcerative blepharitis unspecified eye, unspecified eyelid|Ulcerative blepharitis unspecified eye, unspecified eyelid +C2875441|T047|PT|H01.019|ICD10CM|Ulcerative blepharitis unspecified eye, unspecified eyelid|Ulcerative blepharitis unspecified eye, unspecified eyelid +C4554218|T047|AB|H01.01A|ICD10CM|Ulcerative blepharitis right eye, upper and lower eyelids|Ulcerative blepharitis right eye, upper and lower eyelids +C4554218|T047|PT|H01.01A|ICD10CM|Ulcerative blepharitis right eye, upper and lower eyelids|Ulcerative blepharitis right eye, upper and lower eyelids +C4554272|T047|AB|H01.01B|ICD10CM|Ulcerative blepharitis left eye, upper and lower eyelids|Ulcerative blepharitis left eye, upper and lower eyelids +C4554272|T047|PT|H01.01B|ICD10CM|Ulcerative blepharitis left eye, upper and lower eyelids|Ulcerative blepharitis left eye, upper and lower eyelids +C0155174|T047|HT|H01.02|ICD10CM|Squamous blepharitis|Squamous blepharitis +C0155174|T047|AB|H01.02|ICD10CM|Squamous blepharitis|Squamous blepharitis +C2875442|T047|AB|H01.021|ICD10CM|Squamous blepharitis right upper eyelid|Squamous blepharitis right upper eyelid +C2875442|T047|PT|H01.021|ICD10CM|Squamous blepharitis right upper eyelid|Squamous blepharitis right upper eyelid +C2875443|T047|AB|H01.022|ICD10CM|Squamous blepharitis right lower eyelid|Squamous blepharitis right lower eyelid +C2875443|T047|PT|H01.022|ICD10CM|Squamous blepharitis right lower eyelid|Squamous blepharitis right lower eyelid +C2875444|T047|AB|H01.023|ICD10CM|Squamous blepharitis right eye, unspecified eyelid|Squamous blepharitis right eye, unspecified eyelid +C2875444|T047|PT|H01.023|ICD10CM|Squamous blepharitis right eye, unspecified eyelid|Squamous blepharitis right eye, unspecified eyelid +C2875445|T047|AB|H01.024|ICD10CM|Squamous blepharitis left upper eyelid|Squamous blepharitis left upper eyelid +C2875445|T047|PT|H01.024|ICD10CM|Squamous blepharitis left upper eyelid|Squamous blepharitis left upper eyelid +C2875446|T047|AB|H01.025|ICD10CM|Squamous blepharitis left lower eyelid|Squamous blepharitis left lower eyelid +C2875446|T047|PT|H01.025|ICD10CM|Squamous blepharitis left lower eyelid|Squamous blepharitis left lower eyelid +C2875447|T047|AB|H01.026|ICD10CM|Squamous blepharitis left eye, unspecified eyelid|Squamous blepharitis left eye, unspecified eyelid +C2875447|T047|PT|H01.026|ICD10CM|Squamous blepharitis left eye, unspecified eyelid|Squamous blepharitis left eye, unspecified eyelid +C2875448|T047|AB|H01.029|ICD10CM|Squamous blepharitis unspecified eye, unspecified eyelid|Squamous blepharitis unspecified eye, unspecified eyelid +C2875448|T047|PT|H01.029|ICD10CM|Squamous blepharitis unspecified eye, unspecified eyelid|Squamous blepharitis unspecified eye, unspecified eyelid +C4554273|T047|AB|H01.02A|ICD10CM|Squamous blepharitis right eye, upper and lower eyelids|Squamous blepharitis right eye, upper and lower eyelids +C4554273|T047|PT|H01.02A|ICD10CM|Squamous blepharitis right eye, upper and lower eyelids|Squamous blepharitis right eye, upper and lower eyelids +C4554274|T047|AB|H01.02B|ICD10CM|Squamous blepharitis left eye, upper and lower eyelids|Squamous blepharitis left eye, upper and lower eyelids +C4554274|T047|PT|H01.02B|ICD10CM|Squamous blepharitis left eye, upper and lower eyelids|Squamous blepharitis left eye, upper and lower eyelids +C0155176|T047|HT|H01.1|ICD10CM|Noninfectious dermatoses of eyelid|Noninfectious dermatoses of eyelid +C0155176|T047|AB|H01.1|ICD10CM|Noninfectious dermatoses of eyelid|Noninfectious dermatoses of eyelid +C0155176|T047|PT|H01.1|ICD10|Noninfectious dermatoses of eyelid|Noninfectious dermatoses of eyelid +C0271308|T047|AB|H01.11|ICD10CM|Allergic dermatitis of eyelid|Allergic dermatitis of eyelid +C0271308|T047|HT|H01.11|ICD10CM|Allergic dermatitis of eyelid|Allergic dermatitis of eyelid +C0271308|T047|ET|H01.11|ICD10CM|Contact dermatitis of eyelid|Contact dermatitis of eyelid +C2875449|T047|AB|H01.111|ICD10CM|Allergic dermatitis of right upper eyelid|Allergic dermatitis of right upper eyelid +C2875449|T047|PT|H01.111|ICD10CM|Allergic dermatitis of right upper eyelid|Allergic dermatitis of right upper eyelid +C2875450|T047|AB|H01.112|ICD10CM|Allergic dermatitis of right lower eyelid|Allergic dermatitis of right lower eyelid +C2875450|T047|PT|H01.112|ICD10CM|Allergic dermatitis of right lower eyelid|Allergic dermatitis of right lower eyelid +C2875451|T047|AB|H01.113|ICD10CM|Allergic dermatitis of right eye, unspecified eyelid|Allergic dermatitis of right eye, unspecified eyelid +C2875451|T047|PT|H01.113|ICD10CM|Allergic dermatitis of right eye, unspecified eyelid|Allergic dermatitis of right eye, unspecified eyelid +C2875452|T047|AB|H01.114|ICD10CM|Allergic dermatitis of left upper eyelid|Allergic dermatitis of left upper eyelid +C2875452|T047|PT|H01.114|ICD10CM|Allergic dermatitis of left upper eyelid|Allergic dermatitis of left upper eyelid +C2875453|T047|AB|H01.115|ICD10CM|Allergic dermatitis of left lower eyelid|Allergic dermatitis of left lower eyelid +C2875453|T047|PT|H01.115|ICD10CM|Allergic dermatitis of left lower eyelid|Allergic dermatitis of left lower eyelid +C2875454|T047|AB|H01.116|ICD10CM|Allergic dermatitis of left eye, unspecified eyelid|Allergic dermatitis of left eye, unspecified eyelid +C2875454|T047|PT|H01.116|ICD10CM|Allergic dermatitis of left eye, unspecified eyelid|Allergic dermatitis of left eye, unspecified eyelid +C2875455|T047|AB|H01.119|ICD10CM|Allergic dermatitis of unspecified eye, unspecified eyelid|Allergic dermatitis of unspecified eye, unspecified eyelid +C2875455|T047|PT|H01.119|ICD10CM|Allergic dermatitis of unspecified eye, unspecified eyelid|Allergic dermatitis of unspecified eye, unspecified eyelid +C0155180|T047|HT|H01.12|ICD10CM|Discoid lupus erythematosus of eyelid|Discoid lupus erythematosus of eyelid +C0155180|T047|AB|H01.12|ICD10CM|Discoid lupus erythematosus of eyelid|Discoid lupus erythematosus of eyelid +C2875456|T047|AB|H01.121|ICD10CM|Discoid lupus erythematosus of right upper eyelid|Discoid lupus erythematosus of right upper eyelid +C2875456|T047|PT|H01.121|ICD10CM|Discoid lupus erythematosus of right upper eyelid|Discoid lupus erythematosus of right upper eyelid +C2875457|T047|AB|H01.122|ICD10CM|Discoid lupus erythematosus of right lower eyelid|Discoid lupus erythematosus of right lower eyelid +C2875457|T047|PT|H01.122|ICD10CM|Discoid lupus erythematosus of right lower eyelid|Discoid lupus erythematosus of right lower eyelid +C2875458|T047|AB|H01.123|ICD10CM|Discoid lupus erythematosus of right eye, unspecified eyelid|Discoid lupus erythematosus of right eye, unspecified eyelid +C2875458|T047|PT|H01.123|ICD10CM|Discoid lupus erythematosus of right eye, unspecified eyelid|Discoid lupus erythematosus of right eye, unspecified eyelid +C2875459|T047|AB|H01.124|ICD10CM|Discoid lupus erythematosus of left upper eyelid|Discoid lupus erythematosus of left upper eyelid +C2875459|T047|PT|H01.124|ICD10CM|Discoid lupus erythematosus of left upper eyelid|Discoid lupus erythematosus of left upper eyelid +C2875460|T047|AB|H01.125|ICD10CM|Discoid lupus erythematosus of left lower eyelid|Discoid lupus erythematosus of left lower eyelid +C2875460|T047|PT|H01.125|ICD10CM|Discoid lupus erythematosus of left lower eyelid|Discoid lupus erythematosus of left lower eyelid +C2875461|T047|AB|H01.126|ICD10CM|Discoid lupus erythematosus of left eye, unspecified eyelid|Discoid lupus erythematosus of left eye, unspecified eyelid +C2875461|T047|PT|H01.126|ICD10CM|Discoid lupus erythematosus of left eye, unspecified eyelid|Discoid lupus erythematosus of left eye, unspecified eyelid +C2875462|T047|AB|H01.129|ICD10CM|Discoid lupus erythematosus of unsp eye, unspecified eyelid|Discoid lupus erythematosus of unsp eye, unspecified eyelid +C2875462|T047|PT|H01.129|ICD10CM|Discoid lupus erythematosus of unspecified eye, unspecified eyelid|Discoid lupus erythematosus of unspecified eye, unspecified eyelid +C0155177|T047|HT|H01.13|ICD10CM|Eczematous dermatitis of eyelid|Eczematous dermatitis of eyelid +C0155177|T047|AB|H01.13|ICD10CM|Eczematous dermatitis of eyelid|Eczematous dermatitis of eyelid +C2875463|T047|PT|H01.131|ICD10CM|Eczematous dermatitis of right upper eyelid|Eczematous dermatitis of right upper eyelid +C2875463|T047|AB|H01.131|ICD10CM|Eczematous dermatitis of right upper eyelid|Eczematous dermatitis of right upper eyelid +C2875464|T047|AB|H01.132|ICD10CM|Eczematous dermatitis of right lower eyelid|Eczematous dermatitis of right lower eyelid +C2875464|T047|PT|H01.132|ICD10CM|Eczematous dermatitis of right lower eyelid|Eczematous dermatitis of right lower eyelid +C2875465|T047|AB|H01.133|ICD10CM|Eczematous dermatitis of right eye, unspecified eyelid|Eczematous dermatitis of right eye, unspecified eyelid +C2875465|T047|PT|H01.133|ICD10CM|Eczematous dermatitis of right eye, unspecified eyelid|Eczematous dermatitis of right eye, unspecified eyelid +C2875466|T047|PT|H01.134|ICD10CM|Eczematous dermatitis of left upper eyelid|Eczematous dermatitis of left upper eyelid +C2875466|T047|AB|H01.134|ICD10CM|Eczematous dermatitis of left upper eyelid|Eczematous dermatitis of left upper eyelid +C2875467|T047|AB|H01.135|ICD10CM|Eczematous dermatitis of left lower eyelid|Eczematous dermatitis of left lower eyelid +C2875467|T047|PT|H01.135|ICD10CM|Eczematous dermatitis of left lower eyelid|Eczematous dermatitis of left lower eyelid +C2875468|T047|AB|H01.136|ICD10CM|Eczematous dermatitis of left eye, unspecified eyelid|Eczematous dermatitis of left eye, unspecified eyelid +C2875468|T047|PT|H01.136|ICD10CM|Eczematous dermatitis of left eye, unspecified eyelid|Eczematous dermatitis of left eye, unspecified eyelid +C2875469|T047|AB|H01.139|ICD10CM|Eczematous dermatitis of unspecified eye, unspecified eyelid|Eczematous dermatitis of unspecified eye, unspecified eyelid +C2875469|T047|PT|H01.139|ICD10CM|Eczematous dermatitis of unspecified eye, unspecified eyelid|Eczematous dermatitis of unspecified eye, unspecified eyelid +C0155179|T047|HT|H01.14|ICD10CM|Xeroderma of eyelid|Xeroderma of eyelid +C0155179|T047|AB|H01.14|ICD10CM|Xeroderma of eyelid|Xeroderma of eyelid +C2875470|T047|PT|H01.141|ICD10CM|Xeroderma of right upper eyelid|Xeroderma of right upper eyelid +C2875470|T047|AB|H01.141|ICD10CM|Xeroderma of right upper eyelid|Xeroderma of right upper eyelid +C2875471|T047|PT|H01.142|ICD10CM|Xeroderma of right lower eyelid|Xeroderma of right lower eyelid +C2875471|T047|AB|H01.142|ICD10CM|Xeroderma of right lower eyelid|Xeroderma of right lower eyelid +C2875472|T047|AB|H01.143|ICD10CM|Xeroderma of right eye, unspecified eyelid|Xeroderma of right eye, unspecified eyelid +C2875472|T047|PT|H01.143|ICD10CM|Xeroderma of right eye, unspecified eyelid|Xeroderma of right eye, unspecified eyelid +C2875473|T047|PT|H01.144|ICD10CM|Xeroderma of left upper eyelid|Xeroderma of left upper eyelid +C2875473|T047|AB|H01.144|ICD10CM|Xeroderma of left upper eyelid|Xeroderma of left upper eyelid +C2875474|T047|PT|H01.145|ICD10CM|Xeroderma of left lower eyelid|Xeroderma of left lower eyelid +C2875474|T047|AB|H01.145|ICD10CM|Xeroderma of left lower eyelid|Xeroderma of left lower eyelid +C2875475|T047|AB|H01.146|ICD10CM|Xeroderma of left eye, unspecified eyelid|Xeroderma of left eye, unspecified eyelid +C2875475|T047|PT|H01.146|ICD10CM|Xeroderma of left eye, unspecified eyelid|Xeroderma of left eye, unspecified eyelid +C2875476|T047|AB|H01.149|ICD10CM|Xeroderma of unspecified eye, unspecified eyelid|Xeroderma of unspecified eye, unspecified eyelid +C2875476|T047|PT|H01.149|ICD10CM|Xeroderma of unspecified eye, unspecified eyelid|Xeroderma of unspecified eye, unspecified eyelid +C0348509|T047|PT|H01.8|ICD10|Other specified inflammation of eyelid|Other specified inflammation of eyelid +C0348509|T047|AB|H01.8|ICD10CM|Other specified inflammations of eyelid|Other specified inflammations of eyelid +C0348509|T047|PT|H01.8|ICD10CM|Other specified inflammations of eyelid|Other specified inflammations of eyelid +C0005741|T047|ET|H01.9|ICD10CM|Inflammation of eyelid NOS|Inflammation of eyelid NOS +C0005741|T047|PT|H01.9|ICD10|Inflammation of eyelid, unspecified|Inflammation of eyelid, unspecified +C0005741|T047|PT|H01.9|ICD10CM|Unspecified inflammation of eyelid|Unspecified inflammation of eyelid +C0005741|T047|AB|H01.9|ICD10CM|Unspecified inflammation of eyelid|Unspecified inflammation of eyelid +C0155186|T047|HT|H02|ICD10CM|Other disorders of eyelid|Other disorders of eyelid +C0155186|T047|AB|H02|ICD10CM|Other disorders of eyelid|Other disorders of eyelid +C0155186|T047|HT|H02|ICD10|Other disorders of eyelid|Other disorders of eyelid +C0339058|T047|PT|H02.0|ICD10|Entropion and trichiasis of eyelid|Entropion and trichiasis of eyelid +C0339058|T047|HT|H02.0|ICD10CM|Entropion and trichiasis of eyelid|Entropion and trichiasis of eyelid +C0339058|T047|AB|H02.0|ICD10CM|Entropion and trichiasis of eyelid|Entropion and trichiasis of eyelid +C2875477|T047|AB|H02.00|ICD10CM|Unspecified entropion of eyelid|Unspecified entropion of eyelid +C2875477|T047|HT|H02.00|ICD10CM|Unspecified entropion of eyelid|Unspecified entropion of eyelid +C2875478|T047|AB|H02.001|ICD10CM|Unspecified entropion of right upper eyelid|Unspecified entropion of right upper eyelid +C2875478|T047|PT|H02.001|ICD10CM|Unspecified entropion of right upper eyelid|Unspecified entropion of right upper eyelid +C2875479|T047|AB|H02.002|ICD10CM|Unspecified entropion of right lower eyelid|Unspecified entropion of right lower eyelid +C2875479|T047|PT|H02.002|ICD10CM|Unspecified entropion of right lower eyelid|Unspecified entropion of right lower eyelid +C2875480|T047|AB|H02.003|ICD10CM|Unspecified entropion of right eye, unspecified eyelid|Unspecified entropion of right eye, unspecified eyelid +C2875480|T047|PT|H02.003|ICD10CM|Unspecified entropion of right eye, unspecified eyelid|Unspecified entropion of right eye, unspecified eyelid +C2875481|T047|AB|H02.004|ICD10CM|Unspecified entropion of left upper eyelid|Unspecified entropion of left upper eyelid +C2875481|T047|PT|H02.004|ICD10CM|Unspecified entropion of left upper eyelid|Unspecified entropion of left upper eyelid +C2875482|T047|AB|H02.005|ICD10CM|Unspecified entropion of left lower eyelid|Unspecified entropion of left lower eyelid +C2875482|T047|PT|H02.005|ICD10CM|Unspecified entropion of left lower eyelid|Unspecified entropion of left lower eyelid +C2875483|T047|AB|H02.006|ICD10CM|Unspecified entropion of left eye, unspecified eyelid|Unspecified entropion of left eye, unspecified eyelid +C2875483|T047|PT|H02.006|ICD10CM|Unspecified entropion of left eye, unspecified eyelid|Unspecified entropion of left eye, unspecified eyelid +C2875484|T047|AB|H02.009|ICD10CM|Unspecified entropion of unspecified eye, unspecified eyelid|Unspecified entropion of unspecified eye, unspecified eyelid +C2875484|T047|PT|H02.009|ICD10CM|Unspecified entropion of unspecified eye, unspecified eyelid|Unspecified entropion of unspecified eye, unspecified eyelid +C2875485|T047|AB|H02.01|ICD10CM|Cicatricial entropion of eyelid|Cicatricial entropion of eyelid +C2875485|T047|HT|H02.01|ICD10CM|Cicatricial entropion of eyelid|Cicatricial entropion of eyelid +C2875486|T047|AB|H02.011|ICD10CM|Cicatricial entropion of right upper eyelid|Cicatricial entropion of right upper eyelid +C2875486|T047|PT|H02.011|ICD10CM|Cicatricial entropion of right upper eyelid|Cicatricial entropion of right upper eyelid +C2875487|T047|AB|H02.012|ICD10CM|Cicatricial entropion of right lower eyelid|Cicatricial entropion of right lower eyelid +C2875487|T047|PT|H02.012|ICD10CM|Cicatricial entropion of right lower eyelid|Cicatricial entropion of right lower eyelid +C2875488|T047|AB|H02.013|ICD10CM|Cicatricial entropion of right eye, unspecified eyelid|Cicatricial entropion of right eye, unspecified eyelid +C2875488|T047|PT|H02.013|ICD10CM|Cicatricial entropion of right eye, unspecified eyelid|Cicatricial entropion of right eye, unspecified eyelid +C2875489|T047|AB|H02.014|ICD10CM|Cicatricial entropion of left upper eyelid|Cicatricial entropion of left upper eyelid +C2875489|T047|PT|H02.014|ICD10CM|Cicatricial entropion of left upper eyelid|Cicatricial entropion of left upper eyelid +C2875490|T047|AB|H02.015|ICD10CM|Cicatricial entropion of left lower eyelid|Cicatricial entropion of left lower eyelid +C2875490|T047|PT|H02.015|ICD10CM|Cicatricial entropion of left lower eyelid|Cicatricial entropion of left lower eyelid +C2875491|T047|AB|H02.016|ICD10CM|Cicatricial entropion of left eye, unspecified eyelid|Cicatricial entropion of left eye, unspecified eyelid +C2875491|T047|PT|H02.016|ICD10CM|Cicatricial entropion of left eye, unspecified eyelid|Cicatricial entropion of left eye, unspecified eyelid +C2875492|T047|AB|H02.019|ICD10CM|Cicatricial entropion of unspecified eye, unspecified eyelid|Cicatricial entropion of unspecified eye, unspecified eyelid +C2875492|T047|PT|H02.019|ICD10CM|Cicatricial entropion of unspecified eye, unspecified eyelid|Cicatricial entropion of unspecified eye, unspecified eyelid +C2875493|T047|AB|H02.02|ICD10CM|Mechanical entropion of eyelid|Mechanical entropion of eyelid +C2875493|T047|HT|H02.02|ICD10CM|Mechanical entropion of eyelid|Mechanical entropion of eyelid +C2875494|T047|AB|H02.021|ICD10CM|Mechanical entropion of right upper eyelid|Mechanical entropion of right upper eyelid +C2875494|T047|PT|H02.021|ICD10CM|Mechanical entropion of right upper eyelid|Mechanical entropion of right upper eyelid +C2875495|T047|AB|H02.022|ICD10CM|Mechanical entropion of right lower eyelid|Mechanical entropion of right lower eyelid +C2875495|T047|PT|H02.022|ICD10CM|Mechanical entropion of right lower eyelid|Mechanical entropion of right lower eyelid +C2875496|T047|AB|H02.023|ICD10CM|Mechanical entropion of right eye, unspecified eyelid|Mechanical entropion of right eye, unspecified eyelid +C2875496|T047|PT|H02.023|ICD10CM|Mechanical entropion of right eye, unspecified eyelid|Mechanical entropion of right eye, unspecified eyelid +C2875497|T047|AB|H02.024|ICD10CM|Mechanical entropion of left upper eyelid|Mechanical entropion of left upper eyelid +C2875497|T047|PT|H02.024|ICD10CM|Mechanical entropion of left upper eyelid|Mechanical entropion of left upper eyelid +C2875498|T047|AB|H02.025|ICD10CM|Mechanical entropion of left lower eyelid|Mechanical entropion of left lower eyelid +C2875498|T047|PT|H02.025|ICD10CM|Mechanical entropion of left lower eyelid|Mechanical entropion of left lower eyelid +C2875499|T047|AB|H02.026|ICD10CM|Mechanical entropion of left eye, unspecified eyelid|Mechanical entropion of left eye, unspecified eyelid +C2875499|T047|PT|H02.026|ICD10CM|Mechanical entropion of left eye, unspecified eyelid|Mechanical entropion of left eye, unspecified eyelid +C2875500|T047|AB|H02.029|ICD10CM|Mechanical entropion of unspecified eye, unspecified eyelid|Mechanical entropion of unspecified eye, unspecified eyelid +C2875500|T047|PT|H02.029|ICD10CM|Mechanical entropion of unspecified eye, unspecified eyelid|Mechanical entropion of unspecified eye, unspecified eyelid +C2875501|T047|AB|H02.03|ICD10CM|Senile entropion of eyelid|Senile entropion of eyelid +C2875501|T047|HT|H02.03|ICD10CM|Senile entropion of eyelid|Senile entropion of eyelid +C2875502|T047|AB|H02.031|ICD10CM|Senile entropion of right upper eyelid|Senile entropion of right upper eyelid +C2875502|T047|PT|H02.031|ICD10CM|Senile entropion of right upper eyelid|Senile entropion of right upper eyelid +C2875503|T047|PT|H02.032|ICD10CM|Senile entropion of right lower eyelid|Senile entropion of right lower eyelid +C2875503|T047|AB|H02.032|ICD10CM|Senile entropion of right lower eyelid|Senile entropion of right lower eyelid +C2875504|T047|AB|H02.033|ICD10CM|Senile entropion of right eye, unspecified eyelid|Senile entropion of right eye, unspecified eyelid +C2875504|T047|PT|H02.033|ICD10CM|Senile entropion of right eye, unspecified eyelid|Senile entropion of right eye, unspecified eyelid +C2875505|T047|AB|H02.034|ICD10CM|Senile entropion of left upper eyelid|Senile entropion of left upper eyelid +C2875505|T047|PT|H02.034|ICD10CM|Senile entropion of left upper eyelid|Senile entropion of left upper eyelid +C2875506|T047|PT|H02.035|ICD10CM|Senile entropion of left lower eyelid|Senile entropion of left lower eyelid +C2875506|T047|AB|H02.035|ICD10CM|Senile entropion of left lower eyelid|Senile entropion of left lower eyelid +C2875507|T047|AB|H02.036|ICD10CM|Senile entropion of left eye, unspecified eyelid|Senile entropion of left eye, unspecified eyelid +C2875507|T047|PT|H02.036|ICD10CM|Senile entropion of left eye, unspecified eyelid|Senile entropion of left eye, unspecified eyelid +C2875508|T047|AB|H02.039|ICD10CM|Senile entropion of unspecified eye, unspecified eyelid|Senile entropion of unspecified eye, unspecified eyelid +C2875508|T047|PT|H02.039|ICD10CM|Senile entropion of unspecified eye, unspecified eyelid|Senile entropion of unspecified eye, unspecified eyelid +C2875509|T047|AB|H02.04|ICD10CM|Spastic entropion of eyelid|Spastic entropion of eyelid +C2875509|T047|HT|H02.04|ICD10CM|Spastic entropion of eyelid|Spastic entropion of eyelid +C2875510|T047|AB|H02.041|ICD10CM|Spastic entropion of right upper eyelid|Spastic entropion of right upper eyelid +C2875510|T047|PT|H02.041|ICD10CM|Spastic entropion of right upper eyelid|Spastic entropion of right upper eyelid +C2875511|T047|PT|H02.042|ICD10CM|Spastic entropion of right lower eyelid|Spastic entropion of right lower eyelid +C2875511|T047|AB|H02.042|ICD10CM|Spastic entropion of right lower eyelid|Spastic entropion of right lower eyelid +C2875512|T047|AB|H02.043|ICD10CM|Spastic entropion of right eye, unspecified eyelid|Spastic entropion of right eye, unspecified eyelid +C2875512|T047|PT|H02.043|ICD10CM|Spastic entropion of right eye, unspecified eyelid|Spastic entropion of right eye, unspecified eyelid +C2875513|T047|AB|H02.044|ICD10CM|Spastic entropion of left upper eyelid|Spastic entropion of left upper eyelid +C2875513|T047|PT|H02.044|ICD10CM|Spastic entropion of left upper eyelid|Spastic entropion of left upper eyelid +C2875514|T047|PT|H02.045|ICD10CM|Spastic entropion of left lower eyelid|Spastic entropion of left lower eyelid +C2875514|T047|AB|H02.045|ICD10CM|Spastic entropion of left lower eyelid|Spastic entropion of left lower eyelid +C2875515|T047|AB|H02.046|ICD10CM|Spastic entropion of left eye, unspecified eyelid|Spastic entropion of left eye, unspecified eyelid +C2875515|T047|PT|H02.046|ICD10CM|Spastic entropion of left eye, unspecified eyelid|Spastic entropion of left eye, unspecified eyelid +C2875516|T047|AB|H02.049|ICD10CM|Spastic entropion of unspecified eye, unspecified eyelid|Spastic entropion of unspecified eye, unspecified eyelid +C2875516|T047|PT|H02.049|ICD10CM|Spastic entropion of unspecified eye, unspecified eyelid|Spastic entropion of unspecified eye, unspecified eyelid +C0271311|T047|HT|H02.05|ICD10CM|Trichiasis without entropion|Trichiasis without entropion +C0271311|T047|AB|H02.05|ICD10CM|Trichiasis without entropion|Trichiasis without entropion +C2875518|T047|AB|H02.051|ICD10CM|Trichiasis without entropion right upper eyelid|Trichiasis without entropion right upper eyelid +C2875518|T047|PT|H02.051|ICD10CM|Trichiasis without entropion right upper eyelid|Trichiasis without entropion right upper eyelid +C2875519|T047|AB|H02.052|ICD10CM|Trichiasis without entropion right lower eyelid|Trichiasis without entropion right lower eyelid +C2875519|T047|PT|H02.052|ICD10CM|Trichiasis without entropion right lower eyelid|Trichiasis without entropion right lower eyelid +C2875520|T047|AB|H02.053|ICD10CM|Trichiasis without entropion right eye, unspecified eyelid|Trichiasis without entropion right eye, unspecified eyelid +C2875520|T047|PT|H02.053|ICD10CM|Trichiasis without entropion right eye, unspecified eyelid|Trichiasis without entropion right eye, unspecified eyelid +C2875521|T047|AB|H02.054|ICD10CM|Trichiasis without entropion left upper eyelid|Trichiasis without entropion left upper eyelid +C2875521|T047|PT|H02.054|ICD10CM|Trichiasis without entropion left upper eyelid|Trichiasis without entropion left upper eyelid +C2875522|T047|AB|H02.055|ICD10CM|Trichiasis without entropion left lower eyelid|Trichiasis without entropion left lower eyelid +C2875522|T047|PT|H02.055|ICD10CM|Trichiasis without entropion left lower eyelid|Trichiasis without entropion left lower eyelid +C2875523|T047|AB|H02.056|ICD10CM|Trichiasis without entropion left eye, unspecified eyelid|Trichiasis without entropion left eye, unspecified eyelid +C2875523|T047|PT|H02.056|ICD10CM|Trichiasis without entropion left eye, unspecified eyelid|Trichiasis without entropion left eye, unspecified eyelid +C2875524|T047|AB|H02.059|ICD10CM|Trichiasis without entropion unsp, unspecified eyelid|Trichiasis without entropion unsp, unspecified eyelid +C2875524|T047|PT|H02.059|ICD10CM|Trichiasis without entropion unspecified eye, unspecified eyelid|Trichiasis without entropion unspecified eye, unspecified eyelid +C0013592|T047|PT|H02.1|ICD10|Ectropion of eyelid|Ectropion of eyelid +C0013592|T047|HT|H02.1|ICD10CM|Ectropion of eyelid|Ectropion of eyelid +C0013592|T047|AB|H02.1|ICD10CM|Ectropion of eyelid|Ectropion of eyelid +C0013592|T047|AB|H02.10|ICD10CM|Unspecified ectropion of eyelid|Unspecified ectropion of eyelid +C0013592|T047|HT|H02.10|ICD10CM|Unspecified ectropion of eyelid|Unspecified ectropion of eyelid +C2069899|T033|AB|H02.101|ICD10CM|Unspecified ectropion of right upper eyelid|Unspecified ectropion of right upper eyelid +C2069899|T033|PT|H02.101|ICD10CM|Unspecified ectropion of right upper eyelid|Unspecified ectropion of right upper eyelid +C2875525|T190|AB|H02.102|ICD10CM|Unspecified ectropion of right lower eyelid|Unspecified ectropion of right lower eyelid +C2875525|T190|PT|H02.102|ICD10CM|Unspecified ectropion of right lower eyelid|Unspecified ectropion of right lower eyelid +C2875526|T190|AB|H02.103|ICD10CM|Unspecified ectropion of right eye, unspecified eyelid|Unspecified ectropion of right eye, unspecified eyelid +C2875526|T190|PT|H02.103|ICD10CM|Unspecified ectropion of right eye, unspecified eyelid|Unspecified ectropion of right eye, unspecified eyelid +C2875527|T190|AB|H02.104|ICD10CM|Unspecified ectropion of left upper eyelid|Unspecified ectropion of left upper eyelid +C2875527|T190|PT|H02.104|ICD10CM|Unspecified ectropion of left upper eyelid|Unspecified ectropion of left upper eyelid +C2875528|T190|AB|H02.105|ICD10CM|Unspecified ectropion of left lower eyelid|Unspecified ectropion of left lower eyelid +C2875528|T190|PT|H02.105|ICD10CM|Unspecified ectropion of left lower eyelid|Unspecified ectropion of left lower eyelid +C2875529|T190|AB|H02.106|ICD10CM|Unspecified ectropion of left eye, unspecified eyelid|Unspecified ectropion of left eye, unspecified eyelid +C2875529|T190|PT|H02.106|ICD10CM|Unspecified ectropion of left eye, unspecified eyelid|Unspecified ectropion of left eye, unspecified eyelid +C0013592|T047|AB|H02.109|ICD10CM|Unspecified ectropion of unspecified eye, unspecified eyelid|Unspecified ectropion of unspecified eye, unspecified eyelid +C0013592|T047|PT|H02.109|ICD10CM|Unspecified ectropion of unspecified eye, unspecified eyelid|Unspecified ectropion of unspecified eye, unspecified eyelid +C2875530|T190|AB|H02.11|ICD10CM|Cicatricial ectropion of eyelid|Cicatricial ectropion of eyelid +C2875530|T190|HT|H02.11|ICD10CM|Cicatricial ectropion of eyelid|Cicatricial ectropion of eyelid +C2875531|T190|AB|H02.111|ICD10CM|Cicatricial ectropion of right upper eyelid|Cicatricial ectropion of right upper eyelid +C2875531|T190|PT|H02.111|ICD10CM|Cicatricial ectropion of right upper eyelid|Cicatricial ectropion of right upper eyelid +C2875532|T190|PT|H02.112|ICD10CM|Cicatricial ectropion of right lower eyelid|Cicatricial ectropion of right lower eyelid +C2875532|T190|AB|H02.112|ICD10CM|Cicatricial ectropion of right lower eyelid|Cicatricial ectropion of right lower eyelid +C2875533|T190|AB|H02.113|ICD10CM|Cicatricial ectropion of right eye, unspecified eyelid|Cicatricial ectropion of right eye, unspecified eyelid +C2875533|T190|PT|H02.113|ICD10CM|Cicatricial ectropion of right eye, unspecified eyelid|Cicatricial ectropion of right eye, unspecified eyelid +C2875534|T190|AB|H02.114|ICD10CM|Cicatricial ectropion of left upper eyelid|Cicatricial ectropion of left upper eyelid +C2875534|T190|PT|H02.114|ICD10CM|Cicatricial ectropion of left upper eyelid|Cicatricial ectropion of left upper eyelid +C2875535|T190|PT|H02.115|ICD10CM|Cicatricial ectropion of left lower eyelid|Cicatricial ectropion of left lower eyelid +C2875535|T190|AB|H02.115|ICD10CM|Cicatricial ectropion of left lower eyelid|Cicatricial ectropion of left lower eyelid +C2875536|T190|AB|H02.116|ICD10CM|Cicatricial ectropion of left eye, unspecified eyelid|Cicatricial ectropion of left eye, unspecified eyelid +C2875536|T190|PT|H02.116|ICD10CM|Cicatricial ectropion of left eye, unspecified eyelid|Cicatricial ectropion of left eye, unspecified eyelid +C2875537|T190|AB|H02.119|ICD10CM|Cicatricial ectropion of unspecified eye, unspecified eyelid|Cicatricial ectropion of unspecified eye, unspecified eyelid +C2875537|T190|PT|H02.119|ICD10CM|Cicatricial ectropion of unspecified eye, unspecified eyelid|Cicatricial ectropion of unspecified eye, unspecified eyelid +C2875544|T190|AB|H02.12|ICD10CM|Mechanical ectropion of eyelid|Mechanical ectropion of eyelid +C2875544|T190|HT|H02.12|ICD10CM|Mechanical ectropion of eyelid|Mechanical ectropion of eyelid +C2875538|T190|AB|H02.121|ICD10CM|Mechanical ectropion of right upper eyelid|Mechanical ectropion of right upper eyelid +C2875538|T190|PT|H02.121|ICD10CM|Mechanical ectropion of right upper eyelid|Mechanical ectropion of right upper eyelid +C2875539|T190|AB|H02.122|ICD10CM|Mechanical ectropion of right lower eyelid|Mechanical ectropion of right lower eyelid +C2875539|T190|PT|H02.122|ICD10CM|Mechanical ectropion of right lower eyelid|Mechanical ectropion of right lower eyelid +C2875540|T190|AB|H02.123|ICD10CM|Mechanical ectropion of right eye, unspecified eyelid|Mechanical ectropion of right eye, unspecified eyelid +C2875540|T190|PT|H02.123|ICD10CM|Mechanical ectropion of right eye, unspecified eyelid|Mechanical ectropion of right eye, unspecified eyelid +C2875541|T190|AB|H02.124|ICD10CM|Mechanical ectropion of left upper eyelid|Mechanical ectropion of left upper eyelid +C2875541|T190|PT|H02.124|ICD10CM|Mechanical ectropion of left upper eyelid|Mechanical ectropion of left upper eyelid +C2875542|T190|AB|H02.125|ICD10CM|Mechanical ectropion of left lower eyelid|Mechanical ectropion of left lower eyelid +C2875542|T190|PT|H02.125|ICD10CM|Mechanical ectropion of left lower eyelid|Mechanical ectropion of left lower eyelid +C2875543|T190|AB|H02.126|ICD10CM|Mechanical ectropion of left eye, unspecified eyelid|Mechanical ectropion of left eye, unspecified eyelid +C2875543|T190|PT|H02.126|ICD10CM|Mechanical ectropion of left eye, unspecified eyelid|Mechanical ectropion of left eye, unspecified eyelid +C2875544|T190|AB|H02.129|ICD10CM|Mechanical ectropion of unspecified eye, unspecified eyelid|Mechanical ectropion of unspecified eye, unspecified eyelid +C2875544|T190|PT|H02.129|ICD10CM|Mechanical ectropion of unspecified eye, unspecified eyelid|Mechanical ectropion of unspecified eye, unspecified eyelid +C2875545|T190|AB|H02.13|ICD10CM|Senile ectropion of eyelid|Senile ectropion of eyelid +C2875545|T190|HT|H02.13|ICD10CM|Senile ectropion of eyelid|Senile ectropion of eyelid +C2875546|T190|AB|H02.131|ICD10CM|Senile ectropion of right upper eyelid|Senile ectropion of right upper eyelid +C2875546|T190|PT|H02.131|ICD10CM|Senile ectropion of right upper eyelid|Senile ectropion of right upper eyelid +C2875547|T190|PT|H02.132|ICD10CM|Senile ectropion of right lower eyelid|Senile ectropion of right lower eyelid +C2875547|T190|AB|H02.132|ICD10CM|Senile ectropion of right lower eyelid|Senile ectropion of right lower eyelid +C2875548|T190|AB|H02.133|ICD10CM|Senile ectropion of right eye, unspecified eyelid|Senile ectropion of right eye, unspecified eyelid +C2875548|T190|PT|H02.133|ICD10CM|Senile ectropion of right eye, unspecified eyelid|Senile ectropion of right eye, unspecified eyelid +C2875549|T190|AB|H02.134|ICD10CM|Senile ectropion of left upper eyelid|Senile ectropion of left upper eyelid +C2875549|T190|PT|H02.134|ICD10CM|Senile ectropion of left upper eyelid|Senile ectropion of left upper eyelid +C2875550|T190|PT|H02.135|ICD10CM|Senile ectropion of left lower eyelid|Senile ectropion of left lower eyelid +C2875550|T190|AB|H02.135|ICD10CM|Senile ectropion of left lower eyelid|Senile ectropion of left lower eyelid +C2875551|T190|AB|H02.136|ICD10CM|Senile ectropion of left eye, unspecified eyelid|Senile ectropion of left eye, unspecified eyelid +C2875551|T190|PT|H02.136|ICD10CM|Senile ectropion of left eye, unspecified eyelid|Senile ectropion of left eye, unspecified eyelid +C2875545|T190|AB|H02.139|ICD10CM|Senile ectropion of unspecified eye, unspecified eyelid|Senile ectropion of unspecified eye, unspecified eyelid +C2875545|T190|PT|H02.139|ICD10CM|Senile ectropion of unspecified eye, unspecified eyelid|Senile ectropion of unspecified eye, unspecified eyelid +C2875552|T190|AB|H02.14|ICD10CM|Spastic ectropion of eyelid|Spastic ectropion of eyelid +C2875552|T190|HT|H02.14|ICD10CM|Spastic ectropion of eyelid|Spastic ectropion of eyelid +C2875553|T190|AB|H02.141|ICD10CM|Spastic ectropion of right upper eyelid|Spastic ectropion of right upper eyelid +C2875553|T190|PT|H02.141|ICD10CM|Spastic ectropion of right upper eyelid|Spastic ectropion of right upper eyelid +C2875554|T190|AB|H02.142|ICD10CM|Spastic ectropion of right lower eyelid|Spastic ectropion of right lower eyelid +C2875554|T190|PT|H02.142|ICD10CM|Spastic ectropion of right lower eyelid|Spastic ectropion of right lower eyelid +C2875555|T190|AB|H02.143|ICD10CM|Spastic ectropion of right eye, unspecified eyelid|Spastic ectropion of right eye, unspecified eyelid +C2875555|T190|PT|H02.143|ICD10CM|Spastic ectropion of right eye, unspecified eyelid|Spastic ectropion of right eye, unspecified eyelid +C2875556|T190|AB|H02.144|ICD10CM|Spastic ectropion of left upper eyelid|Spastic ectropion of left upper eyelid +C2875556|T190|PT|H02.144|ICD10CM|Spastic ectropion of left upper eyelid|Spastic ectropion of left upper eyelid +C2875557|T190|AB|H02.145|ICD10CM|Spastic ectropion of left lower eyelid|Spastic ectropion of left lower eyelid +C2875557|T190|PT|H02.145|ICD10CM|Spastic ectropion of left lower eyelid|Spastic ectropion of left lower eyelid +C2875558|T190|AB|H02.146|ICD10CM|Spastic ectropion of left eye, unspecified eyelid|Spastic ectropion of left eye, unspecified eyelid +C2875558|T190|PT|H02.146|ICD10CM|Spastic ectropion of left eye, unspecified eyelid|Spastic ectropion of left eye, unspecified eyelid +C2875552|T190|AB|H02.149|ICD10CM|Spastic ectropion of unspecified eye, unspecified eyelid|Spastic ectropion of unspecified eye, unspecified eyelid +C2875552|T190|PT|H02.149|ICD10CM|Spastic ectropion of unspecified eye, unspecified eyelid|Spastic ectropion of unspecified eye, unspecified eyelid +C4718784|T047|AB|H02.15|ICD10CM|Paralytic ectropion of eyelid|Paralytic ectropion of eyelid +C4718784|T047|HT|H02.15|ICD10CM|Paralytic ectropion of eyelid|Paralytic ectropion of eyelid +C4554275|T047|AB|H02.151|ICD10CM|Paralytic ectropion of right upper eyelid|Paralytic ectropion of right upper eyelid +C4554275|T047|PT|H02.151|ICD10CM|Paralytic ectropion of right upper eyelid|Paralytic ectropion of right upper eyelid +C4554276|T047|AB|H02.152|ICD10CM|Paralytic ectropion of right lower eyelid|Paralytic ectropion of right lower eyelid +C4554276|T047|PT|H02.152|ICD10CM|Paralytic ectropion of right lower eyelid|Paralytic ectropion of right lower eyelid +C4554277|T047|AB|H02.153|ICD10CM|Paralytic ectropion of right eye, unspecified eyelid|Paralytic ectropion of right eye, unspecified eyelid +C4554277|T047|PT|H02.153|ICD10CM|Paralytic ectropion of right eye, unspecified eyelid|Paralytic ectropion of right eye, unspecified eyelid +C4554278|T047|AB|H02.154|ICD10CM|Paralytic ectropion of left upper eyelid|Paralytic ectropion of left upper eyelid +C4554278|T047|PT|H02.154|ICD10CM|Paralytic ectropion of left upper eyelid|Paralytic ectropion of left upper eyelid +C4554279|T047|AB|H02.155|ICD10CM|Paralytic ectropion of left lower eyelid|Paralytic ectropion of left lower eyelid +C4554279|T047|PT|H02.155|ICD10CM|Paralytic ectropion of left lower eyelid|Paralytic ectropion of left lower eyelid +C4554280|T047|AB|H02.156|ICD10CM|Paralytic ectropion of left eye, unspecified eyelid|Paralytic ectropion of left eye, unspecified eyelid +C4554280|T047|PT|H02.156|ICD10CM|Paralytic ectropion of left eye, unspecified eyelid|Paralytic ectropion of left eye, unspecified eyelid +C4554281|T047|AB|H02.159|ICD10CM|Paralytic ectropion of unspecified eye, unspecified eyelid|Paralytic ectropion of unspecified eye, unspecified eyelid +C4554281|T047|PT|H02.159|ICD10CM|Paralytic ectropion of unspecified eye, unspecified eyelid|Paralytic ectropion of unspecified eye, unspecified eyelid +C0152226|T047|PT|H02.2|ICD10|Lagophthalmos|Lagophthalmos +C0152226|T047|HT|H02.2|ICD10CM|Lagophthalmos|Lagophthalmos +C0152226|T047|AB|H02.2|ICD10CM|Lagophthalmos|Lagophthalmos +C0152226|T047|AB|H02.20|ICD10CM|Unspecified lagophthalmos|Unspecified lagophthalmos +C0152226|T047|HT|H02.20|ICD10CM|Unspecified lagophthalmos|Unspecified lagophthalmos +C2875559|T047|AB|H02.201|ICD10CM|Unspecified lagophthalmos right upper eyelid|Unspecified lagophthalmos right upper eyelid +C2875559|T047|PT|H02.201|ICD10CM|Unspecified lagophthalmos right upper eyelid|Unspecified lagophthalmos right upper eyelid +C2875560|T047|AB|H02.202|ICD10CM|Unspecified lagophthalmos right lower eyelid|Unspecified lagophthalmos right lower eyelid +C2875560|T047|PT|H02.202|ICD10CM|Unspecified lagophthalmos right lower eyelid|Unspecified lagophthalmos right lower eyelid +C2875561|T047|AB|H02.203|ICD10CM|Unspecified lagophthalmos right eye, unspecified eyelid|Unspecified lagophthalmos right eye, unspecified eyelid +C2875561|T047|PT|H02.203|ICD10CM|Unspecified lagophthalmos right eye, unspecified eyelid|Unspecified lagophthalmos right eye, unspecified eyelid +C2875562|T047|AB|H02.204|ICD10CM|Unspecified lagophthalmos left upper eyelid|Unspecified lagophthalmos left upper eyelid +C2875562|T047|PT|H02.204|ICD10CM|Unspecified lagophthalmos left upper eyelid|Unspecified lagophthalmos left upper eyelid +C2875563|T047|AB|H02.205|ICD10CM|Unspecified lagophthalmos left lower eyelid|Unspecified lagophthalmos left lower eyelid +C2875563|T047|PT|H02.205|ICD10CM|Unspecified lagophthalmos left lower eyelid|Unspecified lagophthalmos left lower eyelid +C2875564|T047|AB|H02.206|ICD10CM|Unspecified lagophthalmos left eye, unspecified eyelid|Unspecified lagophthalmos left eye, unspecified eyelid +C2875564|T047|PT|H02.206|ICD10CM|Unspecified lagophthalmos left eye, unspecified eyelid|Unspecified lagophthalmos left eye, unspecified eyelid +C2875565|T047|AB|H02.209|ICD10CM|Unsp lagophthalmos unspecified eye, unspecified eyelid|Unsp lagophthalmos unspecified eye, unspecified eyelid +C2875565|T047|PT|H02.209|ICD10CM|Unspecified lagophthalmos unspecified eye, unspecified eyelid|Unspecified lagophthalmos unspecified eye, unspecified eyelid +C4554282|T047|AB|H02.20A|ICD10CM|Unspecified lagophthalmos right eye, upper and lower eyelids|Unspecified lagophthalmos right eye, upper and lower eyelids +C4554282|T047|PT|H02.20A|ICD10CM|Unspecified lagophthalmos right eye, upper and lower eyelids|Unspecified lagophthalmos right eye, upper and lower eyelids +C4554283|T047|AB|H02.20B|ICD10CM|Unspecified lagophthalmos left eye, upper and lower eyelids|Unspecified lagophthalmos left eye, upper and lower eyelids +C4554283|T047|PT|H02.20B|ICD10CM|Unspecified lagophthalmos left eye, upper and lower eyelids|Unspecified lagophthalmos left eye, upper and lower eyelids +C4554284|T047|AB|H02.20C|ICD10CM|Unsp lagophthalmos, bilateral, upper and lower eyelids|Unsp lagophthalmos, bilateral, upper and lower eyelids +C4554284|T047|PT|H02.20C|ICD10CM|Unspecified lagophthalmos, bilateral, upper and lower eyelids|Unspecified lagophthalmos, bilateral, upper and lower eyelids +C0155199|T047|HT|H02.21|ICD10CM|Cicatricial lagophthalmos|Cicatricial lagophthalmos +C0155199|T047|AB|H02.21|ICD10CM|Cicatricial lagophthalmos|Cicatricial lagophthalmos +C2875566|T047|AB|H02.211|ICD10CM|Cicatricial lagophthalmos right upper eyelid|Cicatricial lagophthalmos right upper eyelid +C2875566|T047|PT|H02.211|ICD10CM|Cicatricial lagophthalmos right upper eyelid|Cicatricial lagophthalmos right upper eyelid +C2875567|T047|AB|H02.212|ICD10CM|Cicatricial lagophthalmos right lower eyelid|Cicatricial lagophthalmos right lower eyelid +C2875567|T047|PT|H02.212|ICD10CM|Cicatricial lagophthalmos right lower eyelid|Cicatricial lagophthalmos right lower eyelid +C2875568|T047|AB|H02.213|ICD10CM|Cicatricial lagophthalmos right eye, unspecified eyelid|Cicatricial lagophthalmos right eye, unspecified eyelid +C2875568|T047|PT|H02.213|ICD10CM|Cicatricial lagophthalmos right eye, unspecified eyelid|Cicatricial lagophthalmos right eye, unspecified eyelid +C2875569|T047|AB|H02.214|ICD10CM|Cicatricial lagophthalmos left upper eyelid|Cicatricial lagophthalmos left upper eyelid +C2875569|T047|PT|H02.214|ICD10CM|Cicatricial lagophthalmos left upper eyelid|Cicatricial lagophthalmos left upper eyelid +C2875570|T047|AB|H02.215|ICD10CM|Cicatricial lagophthalmos left lower eyelid|Cicatricial lagophthalmos left lower eyelid +C2875570|T047|PT|H02.215|ICD10CM|Cicatricial lagophthalmos left lower eyelid|Cicatricial lagophthalmos left lower eyelid +C2875571|T047|AB|H02.216|ICD10CM|Cicatricial lagophthalmos left eye, unspecified eyelid|Cicatricial lagophthalmos left eye, unspecified eyelid +C2875571|T047|PT|H02.216|ICD10CM|Cicatricial lagophthalmos left eye, unspecified eyelid|Cicatricial lagophthalmos left eye, unspecified eyelid +C2875572|T047|AB|H02.219|ICD10CM|Cicatricial lagophthalmos unsp eye, unspecified eyelid|Cicatricial lagophthalmos unsp eye, unspecified eyelid +C2875572|T047|PT|H02.219|ICD10CM|Cicatricial lagophthalmos unspecified eye, unspecified eyelid|Cicatricial lagophthalmos unspecified eye, unspecified eyelid +C4554285|T047|AB|H02.21A|ICD10CM|Cicatricial lagophthalmos right eye, upper and lower eyelids|Cicatricial lagophthalmos right eye, upper and lower eyelids +C4554285|T047|PT|H02.21A|ICD10CM|Cicatricial lagophthalmos right eye, upper and lower eyelids|Cicatricial lagophthalmos right eye, upper and lower eyelids +C4554286|T047|AB|H02.21B|ICD10CM|Cicatricial lagophthalmos left eye, upper and lower eyelids|Cicatricial lagophthalmos left eye, upper and lower eyelids +C4554286|T047|PT|H02.21B|ICD10CM|Cicatricial lagophthalmos left eye, upper and lower eyelids|Cicatricial lagophthalmos left eye, upper and lower eyelids +C4554287|T047|AB|H02.21C|ICD10CM|Cicatricial lagophthalmos, bi, upper and lower eyelids|Cicatricial lagophthalmos, bi, upper and lower eyelids +C4554287|T047|PT|H02.21C|ICD10CM|Cicatricial lagophthalmos, bilateral, upper and lower eyelids|Cicatricial lagophthalmos, bilateral, upper and lower eyelids +C0155198|T047|HT|H02.22|ICD10CM|Mechanical lagophthalmos|Mechanical lagophthalmos +C0155198|T047|AB|H02.22|ICD10CM|Mechanical lagophthalmos|Mechanical lagophthalmos +C2875573|T047|AB|H02.221|ICD10CM|Mechanical lagophthalmos right upper eyelid|Mechanical lagophthalmos right upper eyelid +C2875573|T047|PT|H02.221|ICD10CM|Mechanical lagophthalmos right upper eyelid|Mechanical lagophthalmos right upper eyelid +C2875574|T047|AB|H02.222|ICD10CM|Mechanical lagophthalmos right lower eyelid|Mechanical lagophthalmos right lower eyelid +C2875574|T047|PT|H02.222|ICD10CM|Mechanical lagophthalmos right lower eyelid|Mechanical lagophthalmos right lower eyelid +C2875575|T047|AB|H02.223|ICD10CM|Mechanical lagophthalmos right eye, unspecified eyelid|Mechanical lagophthalmos right eye, unspecified eyelid +C2875575|T047|PT|H02.223|ICD10CM|Mechanical lagophthalmos right eye, unspecified eyelid|Mechanical lagophthalmos right eye, unspecified eyelid +C2875576|T047|AB|H02.224|ICD10CM|Mechanical lagophthalmos left upper eyelid|Mechanical lagophthalmos left upper eyelid +C2875576|T047|PT|H02.224|ICD10CM|Mechanical lagophthalmos left upper eyelid|Mechanical lagophthalmos left upper eyelid +C2875577|T047|AB|H02.225|ICD10CM|Mechanical lagophthalmos left lower eyelid|Mechanical lagophthalmos left lower eyelid +C2875577|T047|PT|H02.225|ICD10CM|Mechanical lagophthalmos left lower eyelid|Mechanical lagophthalmos left lower eyelid +C2875578|T047|AB|H02.226|ICD10CM|Mechanical lagophthalmos left eye, unspecified eyelid|Mechanical lagophthalmos left eye, unspecified eyelid +C2875578|T047|PT|H02.226|ICD10CM|Mechanical lagophthalmos left eye, unspecified eyelid|Mechanical lagophthalmos left eye, unspecified eyelid +C2875579|T047|AB|H02.229|ICD10CM|Mechanical lagophthalmos unspecified eye, unspecified eyelid|Mechanical lagophthalmos unspecified eye, unspecified eyelid +C2875579|T047|PT|H02.229|ICD10CM|Mechanical lagophthalmos unspecified eye, unspecified eyelid|Mechanical lagophthalmos unspecified eye, unspecified eyelid +C4554288|T047|AB|H02.22A|ICD10CM|Mechanical lagophthalmos right eye, upper and lower eyelids|Mechanical lagophthalmos right eye, upper and lower eyelids +C4554288|T047|PT|H02.22A|ICD10CM|Mechanical lagophthalmos right eye, upper and lower eyelids|Mechanical lagophthalmos right eye, upper and lower eyelids +C4554289|T047|AB|H02.22B|ICD10CM|Mechanical lagophthalmos left eye, upper and lower eyelids|Mechanical lagophthalmos left eye, upper and lower eyelids +C4554289|T047|PT|H02.22B|ICD10CM|Mechanical lagophthalmos left eye, upper and lower eyelids|Mechanical lagophthalmos left eye, upper and lower eyelids +C4554290|T047|AB|H02.22C|ICD10CM|Mechanical lagophthalmos, bilateral, upper and lower eyelids|Mechanical lagophthalmos, bilateral, upper and lower eyelids +C4554290|T047|PT|H02.22C|ICD10CM|Mechanical lagophthalmos, bilateral, upper and lower eyelids|Mechanical lagophthalmos, bilateral, upper and lower eyelids +C0155197|T047|HT|H02.23|ICD10CM|Paralytic lagophthalmos|Paralytic lagophthalmos +C0155197|T047|AB|H02.23|ICD10CM|Paralytic lagophthalmos|Paralytic lagophthalmos +C2875580|T047|AB|H02.231|ICD10CM|Paralytic lagophthalmos right upper eyelid|Paralytic lagophthalmos right upper eyelid +C2875580|T047|PT|H02.231|ICD10CM|Paralytic lagophthalmos right upper eyelid|Paralytic lagophthalmos right upper eyelid +C2875581|T047|AB|H02.232|ICD10CM|Paralytic lagophthalmos right lower eyelid|Paralytic lagophthalmos right lower eyelid +C2875581|T047|PT|H02.232|ICD10CM|Paralytic lagophthalmos right lower eyelid|Paralytic lagophthalmos right lower eyelid +C2875582|T047|AB|H02.233|ICD10CM|Paralytic lagophthalmos right eye, unspecified eyelid|Paralytic lagophthalmos right eye, unspecified eyelid +C2875582|T047|PT|H02.233|ICD10CM|Paralytic lagophthalmos right eye, unspecified eyelid|Paralytic lagophthalmos right eye, unspecified eyelid +C2875583|T047|AB|H02.234|ICD10CM|Paralytic lagophthalmos left upper eyelid|Paralytic lagophthalmos left upper eyelid +C2875583|T047|PT|H02.234|ICD10CM|Paralytic lagophthalmos left upper eyelid|Paralytic lagophthalmos left upper eyelid +C2875584|T047|AB|H02.235|ICD10CM|Paralytic lagophthalmos left lower eyelid|Paralytic lagophthalmos left lower eyelid +C2875584|T047|PT|H02.235|ICD10CM|Paralytic lagophthalmos left lower eyelid|Paralytic lagophthalmos left lower eyelid +C2875585|T047|AB|H02.236|ICD10CM|Paralytic lagophthalmos left eye, unspecified eyelid|Paralytic lagophthalmos left eye, unspecified eyelid +C2875585|T047|PT|H02.236|ICD10CM|Paralytic lagophthalmos left eye, unspecified eyelid|Paralytic lagophthalmos left eye, unspecified eyelid +C2875586|T047|AB|H02.239|ICD10CM|Paralytic lagophthalmos unspecified eye, unspecified eyelid|Paralytic lagophthalmos unspecified eye, unspecified eyelid +C2875586|T047|PT|H02.239|ICD10CM|Paralytic lagophthalmos unspecified eye, unspecified eyelid|Paralytic lagophthalmos unspecified eye, unspecified eyelid +C4554291|T047|AB|H02.23A|ICD10CM|Paralytic lagophthalmos right eye, upper and lower eyelids|Paralytic lagophthalmos right eye, upper and lower eyelids +C4554291|T047|PT|H02.23A|ICD10CM|Paralytic lagophthalmos right eye, upper and lower eyelids|Paralytic lagophthalmos right eye, upper and lower eyelids +C4554292|T047|AB|H02.23B|ICD10CM|Paralytic lagophthalmos left eye, upper and lower eyelids|Paralytic lagophthalmos left eye, upper and lower eyelids +C4554292|T047|PT|H02.23B|ICD10CM|Paralytic lagophthalmos left eye, upper and lower eyelids|Paralytic lagophthalmos left eye, upper and lower eyelids +C4554293|T047|AB|H02.23C|ICD10CM|Paralytic lagophthalmos, bilateral, upper and lower eyelids|Paralytic lagophthalmos, bilateral, upper and lower eyelids +C4554293|T047|PT|H02.23C|ICD10CM|Paralytic lagophthalmos, bilateral, upper and lower eyelids|Paralytic lagophthalmos, bilateral, upper and lower eyelids +C0005742|T047|HT|H02.3|ICD10CM|Blepharochalasis|Blepharochalasis +C0005742|T047|AB|H02.3|ICD10CM|Blepharochalasis|Blepharochalasis +C0005742|T047|PT|H02.3|ICD10|Blepharochalasis|Blepharochalasis +C0271312|T047|ET|H02.3|ICD10CM|Pseudoptosis|Pseudoptosis +C2875587|T047|AB|H02.30|ICD10CM|Blepharochalasis unspecified eye, unspecified eyelid|Blepharochalasis unspecified eye, unspecified eyelid +C2875587|T047|PT|H02.30|ICD10CM|Blepharochalasis unspecified eye, unspecified eyelid|Blepharochalasis unspecified eye, unspecified eyelid +C2875588|T047|AB|H02.31|ICD10CM|Blepharochalasis right upper eyelid|Blepharochalasis right upper eyelid +C2875588|T047|PT|H02.31|ICD10CM|Blepharochalasis right upper eyelid|Blepharochalasis right upper eyelid +C2875589|T047|AB|H02.32|ICD10CM|Blepharochalasis right lower eyelid|Blepharochalasis right lower eyelid +C2875589|T047|PT|H02.32|ICD10CM|Blepharochalasis right lower eyelid|Blepharochalasis right lower eyelid +C2875590|T047|AB|H02.33|ICD10CM|Blepharochalasis right eye, unspecified eyelid|Blepharochalasis right eye, unspecified eyelid +C2875590|T047|PT|H02.33|ICD10CM|Blepharochalasis right eye, unspecified eyelid|Blepharochalasis right eye, unspecified eyelid +C2875591|T047|AB|H02.34|ICD10CM|Blepharochalasis left upper eyelid|Blepharochalasis left upper eyelid +C2875591|T047|PT|H02.34|ICD10CM|Blepharochalasis left upper eyelid|Blepharochalasis left upper eyelid +C2875592|T047|AB|H02.35|ICD10CM|Blepharochalasis left lower eyelid|Blepharochalasis left lower eyelid +C2875592|T047|PT|H02.35|ICD10CM|Blepharochalasis left lower eyelid|Blepharochalasis left lower eyelid +C2875593|T047|AB|H02.36|ICD10CM|Blepharochalasis left eye, unspecified eyelid|Blepharochalasis left eye, unspecified eyelid +C2875593|T047|PT|H02.36|ICD10CM|Blepharochalasis left eye, unspecified eyelid|Blepharochalasis left eye, unspecified eyelid +C0005745|T047|PT|H02.4|ICD10|Ptosis of eyelid|Ptosis of eyelid +C0005745|T047|HT|H02.4|ICD10CM|Ptosis of eyelid|Ptosis of eyelid +C0005745|T047|AB|H02.4|ICD10CM|Ptosis of eyelid|Ptosis of eyelid +C0005745|T047|AB|H02.40|ICD10CM|Unspecified ptosis of eyelid|Unspecified ptosis of eyelid +C0005745|T047|HT|H02.40|ICD10CM|Unspecified ptosis of eyelid|Unspecified ptosis of eyelid +C2875594|T190|AB|H02.401|ICD10CM|Unspecified ptosis of right eyelid|Unspecified ptosis of right eyelid +C2875594|T190|PT|H02.401|ICD10CM|Unspecified ptosis of right eyelid|Unspecified ptosis of right eyelid +C2875595|T190|AB|H02.402|ICD10CM|Unspecified ptosis of left eyelid|Unspecified ptosis of left eyelid +C2875595|T190|PT|H02.402|ICD10CM|Unspecified ptosis of left eyelid|Unspecified ptosis of left eyelid +C2875596|T190|AB|H02.403|ICD10CM|Unspecified ptosis of bilateral eyelids|Unspecified ptosis of bilateral eyelids +C2875596|T190|PT|H02.403|ICD10CM|Unspecified ptosis of bilateral eyelids|Unspecified ptosis of bilateral eyelids +C0005745|T047|AB|H02.409|ICD10CM|Unspecified ptosis of unspecified eyelid|Unspecified ptosis of unspecified eyelid +C0005745|T047|PT|H02.409|ICD10CM|Unspecified ptosis of unspecified eyelid|Unspecified ptosis of unspecified eyelid +C2875600|T190|AB|H02.41|ICD10CM|Mechanical ptosis of eyelid|Mechanical ptosis of eyelid +C2875600|T190|HT|H02.41|ICD10CM|Mechanical ptosis of eyelid|Mechanical ptosis of eyelid +C2875597|T190|AB|H02.411|ICD10CM|Mechanical ptosis of right eyelid|Mechanical ptosis of right eyelid +C2875597|T190|PT|H02.411|ICD10CM|Mechanical ptosis of right eyelid|Mechanical ptosis of right eyelid +C2875598|T190|AB|H02.412|ICD10CM|Mechanical ptosis of left eyelid|Mechanical ptosis of left eyelid +C2875598|T190|PT|H02.412|ICD10CM|Mechanical ptosis of left eyelid|Mechanical ptosis of left eyelid +C2875599|T190|AB|H02.413|ICD10CM|Mechanical ptosis of bilateral eyelids|Mechanical ptosis of bilateral eyelids +C2875599|T190|PT|H02.413|ICD10CM|Mechanical ptosis of bilateral eyelids|Mechanical ptosis of bilateral eyelids +C2875600|T190|AB|H02.419|ICD10CM|Mechanical ptosis of unspecified eyelid|Mechanical ptosis of unspecified eyelid +C2875600|T190|PT|H02.419|ICD10CM|Mechanical ptosis of unspecified eyelid|Mechanical ptosis of unspecified eyelid +C2875604|T190|AB|H02.42|ICD10CM|Myogenic ptosis of eyelid|Myogenic ptosis of eyelid +C2875604|T190|HT|H02.42|ICD10CM|Myogenic ptosis of eyelid|Myogenic ptosis of eyelid +C2875601|T190|AB|H02.421|ICD10CM|Myogenic ptosis of right eyelid|Myogenic ptosis of right eyelid +C2875601|T190|PT|H02.421|ICD10CM|Myogenic ptosis of right eyelid|Myogenic ptosis of right eyelid +C2875602|T190|AB|H02.422|ICD10CM|Myogenic ptosis of left eyelid|Myogenic ptosis of left eyelid +C2875602|T190|PT|H02.422|ICD10CM|Myogenic ptosis of left eyelid|Myogenic ptosis of left eyelid +C2875603|T190|AB|H02.423|ICD10CM|Myogenic ptosis of bilateral eyelids|Myogenic ptosis of bilateral eyelids +C2875603|T190|PT|H02.423|ICD10CM|Myogenic ptosis of bilateral eyelids|Myogenic ptosis of bilateral eyelids +C2875604|T190|AB|H02.429|ICD10CM|Myogenic ptosis of unspecified eyelid|Myogenic ptosis of unspecified eyelid +C2875604|T190|PT|H02.429|ICD10CM|Myogenic ptosis of unspecified eyelid|Myogenic ptosis of unspecified eyelid +C2875605|T190|ET|H02.43|ICD10CM|Neurogenic ptosis of eyelid|Neurogenic ptosis of eyelid +C2875609|T190|AB|H02.43|ICD10CM|Paralytic ptosis of eyelid|Paralytic ptosis of eyelid +C2875609|T190|HT|H02.43|ICD10CM|Paralytic ptosis of eyelid|Paralytic ptosis of eyelid +C2875606|T190|AB|H02.431|ICD10CM|Paralytic ptosis of right eyelid|Paralytic ptosis of right eyelid +C2875606|T190|PT|H02.431|ICD10CM|Paralytic ptosis of right eyelid|Paralytic ptosis of right eyelid +C2875607|T190|AB|H02.432|ICD10CM|Paralytic ptosis of left eyelid|Paralytic ptosis of left eyelid +C2875607|T190|PT|H02.432|ICD10CM|Paralytic ptosis of left eyelid|Paralytic ptosis of left eyelid +C2875608|T190|AB|H02.433|ICD10CM|Paralytic ptosis of bilateral eyelids|Paralytic ptosis of bilateral eyelids +C2875608|T190|PT|H02.433|ICD10CM|Paralytic ptosis of bilateral eyelids|Paralytic ptosis of bilateral eyelids +C2875609|T190|AB|H02.439|ICD10CM|Paralytic ptosis unspecified eyelid|Paralytic ptosis unspecified eyelid +C2875609|T190|PT|H02.439|ICD10CM|Paralytic ptosis unspecified eyelid|Paralytic ptosis unspecified eyelid +C0155203|T047|HT|H02.5|ICD10CM|Other disorders affecting eyelid function|Other disorders affecting eyelid function +C0155203|T047|AB|H02.5|ICD10CM|Other disorders affecting eyelid function|Other disorders affecting eyelid function +C0155203|T047|PT|H02.5|ICD10|Other disorders affecting eyelid function|Other disorders affecting eyelid function +C0702104|T047|HT|H02.51|ICD10CM|Abnormal innervation syndrome|Abnormal innervation syndrome +C0702104|T047|AB|H02.51|ICD10CM|Abnormal innervation syndrome|Abnormal innervation syndrome +C2875610|T047|PT|H02.511|ICD10CM|Abnormal innervation syndrome right upper eyelid|Abnormal innervation syndrome right upper eyelid +C2875610|T047|AB|H02.511|ICD10CM|Abnormal innervation syndrome right upper eyelid|Abnormal innervation syndrome right upper eyelid +C2875611|T047|PT|H02.512|ICD10CM|Abnormal innervation syndrome right lower eyelid|Abnormal innervation syndrome right lower eyelid +C2875611|T047|AB|H02.512|ICD10CM|Abnormal innervation syndrome right lower eyelid|Abnormal innervation syndrome right lower eyelid +C2875612|T047|AB|H02.513|ICD10CM|Abnormal innervation syndrome right eye, unspecified eyelid|Abnormal innervation syndrome right eye, unspecified eyelid +C2875612|T047|PT|H02.513|ICD10CM|Abnormal innervation syndrome right eye, unspecified eyelid|Abnormal innervation syndrome right eye, unspecified eyelid +C2875613|T047|PT|H02.514|ICD10CM|Abnormal innervation syndrome left upper eyelid|Abnormal innervation syndrome left upper eyelid +C2875613|T047|AB|H02.514|ICD10CM|Abnormal innervation syndrome left upper eyelid|Abnormal innervation syndrome left upper eyelid +C2875614|T047|PT|H02.515|ICD10CM|Abnormal innervation syndrome left lower eyelid|Abnormal innervation syndrome left lower eyelid +C2875614|T047|AB|H02.515|ICD10CM|Abnormal innervation syndrome left lower eyelid|Abnormal innervation syndrome left lower eyelid +C2875615|T047|AB|H02.516|ICD10CM|Abnormal innervation syndrome left eye, unspecified eyelid|Abnormal innervation syndrome left eye, unspecified eyelid +C2875615|T047|PT|H02.516|ICD10CM|Abnormal innervation syndrome left eye, unspecified eyelid|Abnormal innervation syndrome left eye, unspecified eyelid +C2875616|T047|AB|H02.519|ICD10CM|Abnormal innervation syndrome unsp eye, unspecified eyelid|Abnormal innervation syndrome unsp eye, unspecified eyelid +C2875616|T047|PT|H02.519|ICD10CM|Abnormal innervation syndrome unspecified eye, unspecified eyelid|Abnormal innervation syndrome unspecified eye, unspecified eyelid +C0339182|T190|ET|H02.52|ICD10CM|Ankyloblepharon|Ankyloblepharon +C0005744|T019|HT|H02.52|ICD10CM|Blepharophimosis|Blepharophimosis +C0005744|T019|AB|H02.52|ICD10CM|Blepharophimosis|Blepharophimosis +C2875617|T019|AB|H02.521|ICD10CM|Blepharophimosis right upper eyelid|Blepharophimosis right upper eyelid +C2875617|T019|PT|H02.521|ICD10CM|Blepharophimosis right upper eyelid|Blepharophimosis right upper eyelid +C2875618|T019|AB|H02.522|ICD10CM|Blepharophimosis right lower eyelid|Blepharophimosis right lower eyelid +C2875618|T047|AB|H02.522|ICD10CM|Blepharophimosis right lower eyelid|Blepharophimosis right lower eyelid +C2875618|T019|PT|H02.522|ICD10CM|Blepharophimosis right lower eyelid|Blepharophimosis right lower eyelid +C2875618|T047|PT|H02.522|ICD10CM|Blepharophimosis right lower eyelid|Blepharophimosis right lower eyelid +C2875619|T019|AB|H02.523|ICD10CM|Blepharophimosis right eye, unspecified eyelid|Blepharophimosis right eye, unspecified eyelid +C2875619|T047|AB|H02.523|ICD10CM|Blepharophimosis right eye, unspecified eyelid|Blepharophimosis right eye, unspecified eyelid +C2875619|T019|PT|H02.523|ICD10CM|Blepharophimosis right eye, unspecified eyelid|Blepharophimosis right eye, unspecified eyelid +C2875619|T047|PT|H02.523|ICD10CM|Blepharophimosis right eye, unspecified eyelid|Blepharophimosis right eye, unspecified eyelid +C2875620|T019|AB|H02.524|ICD10CM|Blepharophimosis left upper eyelid|Blepharophimosis left upper eyelid +C2875620|T019|PT|H02.524|ICD10CM|Blepharophimosis left upper eyelid|Blepharophimosis left upper eyelid +C2875621|T047|AB|H02.525|ICD10CM|Blepharophimosis left lower eyelid|Blepharophimosis left lower eyelid +C2875621|T047|PT|H02.525|ICD10CM|Blepharophimosis left lower eyelid|Blepharophimosis left lower eyelid +C2875622|T047|AB|H02.526|ICD10CM|Blepharophimosis left eye, unspecified eyelid|Blepharophimosis left eye, unspecified eyelid +C2875622|T047|PT|H02.526|ICD10CM|Blepharophimosis left eye, unspecified eyelid|Blepharophimosis left eye, unspecified eyelid +C2875623|T019|AB|H02.529|ICD10CM|Blepharophimosis unspecified eye, unspecified lid|Blepharophimosis unspecified eye, unspecified lid +C2875623|T019|PT|H02.529|ICD10CM|Blepharophimosis unspecified eye, unspecified lid|Blepharophimosis unspecified eye, unspecified lid +C0234664|T184|ET|H02.53|ICD10CM|Eyelid lag|Eyelid lag +C0234665|T033|HT|H02.53|ICD10CM|Eyelid retraction|Eyelid retraction +C0234665|T033|AB|H02.53|ICD10CM|Eyelid retraction|Eyelid retraction +C2875624|T184|AB|H02.531|ICD10CM|Eyelid retraction right upper eyelid|Eyelid retraction right upper eyelid +C2875624|T184|PT|H02.531|ICD10CM|Eyelid retraction right upper eyelid|Eyelid retraction right upper eyelid +C2875625|T184|AB|H02.532|ICD10CM|Eyelid retraction right lower eyelid|Eyelid retraction right lower eyelid +C2875625|T184|PT|H02.532|ICD10CM|Eyelid retraction right lower eyelid|Eyelid retraction right lower eyelid +C2875626|T184|AB|H02.533|ICD10CM|Eyelid retraction right eye, unspecified eyelid|Eyelid retraction right eye, unspecified eyelid +C2875626|T184|PT|H02.533|ICD10CM|Eyelid retraction right eye, unspecified eyelid|Eyelid retraction right eye, unspecified eyelid +C2875627|T184|AB|H02.534|ICD10CM|Eyelid retraction left upper eyelid|Eyelid retraction left upper eyelid +C2875627|T184|PT|H02.534|ICD10CM|Eyelid retraction left upper eyelid|Eyelid retraction left upper eyelid +C2875628|T184|AB|H02.535|ICD10CM|Eyelid retraction left lower eyelid|Eyelid retraction left lower eyelid +C2875628|T184|PT|H02.535|ICD10CM|Eyelid retraction left lower eyelid|Eyelid retraction left lower eyelid +C2875629|T184|AB|H02.536|ICD10CM|Eyelid retraction left eye, unspecified eyelid|Eyelid retraction left eye, unspecified eyelid +C2875629|T184|PT|H02.536|ICD10CM|Eyelid retraction left eye, unspecified eyelid|Eyelid retraction left eye, unspecified eyelid +C2875630|T184|AB|H02.539|ICD10CM|Eyelid retraction unspecified eye, unspecified lid|Eyelid retraction unspecified eye, unspecified lid +C2875630|T184|PT|H02.539|ICD10CM|Eyelid retraction unspecified eye, unspecified lid|Eyelid retraction unspecified eye, unspecified lid +C0339059|T046|ET|H02.59|ICD10CM|Deficient blink reflex|Deficient blink reflex +C0155203|T047|PT|H02.59|ICD10CM|Other disorders affecting eyelid function|Other disorders affecting eyelid function +C0155203|T047|AB|H02.59|ICD10CM|Other disorders affecting eyelid function|Other disorders affecting eyelid function +C0152027|T047|ET|H02.59|ICD10CM|Sensory disorders|Sensory disorders +C0155210|T047|HT|H02.6|ICD10CM|Xanthelasma of eyelid|Xanthelasma of eyelid +C0155210|T047|AB|H02.6|ICD10CM|Xanthelasma of eyelid|Xanthelasma of eyelid +C0155210|T047|PT|H02.6|ICD10|Xanthelasma of eyelid|Xanthelasma of eyelid +C2875631|T047|AB|H02.60|ICD10CM|Xanthelasma of unspecified eye, unspecified eyelid|Xanthelasma of unspecified eye, unspecified eyelid +C2875631|T047|PT|H02.60|ICD10CM|Xanthelasma of unspecified eye, unspecified eyelid|Xanthelasma of unspecified eye, unspecified eyelid +C2069910|T047|PT|H02.61|ICD10CM|Xanthelasma of right upper eyelid|Xanthelasma of right upper eyelid +C2069910|T047|AB|H02.61|ICD10CM|Xanthelasma of right upper eyelid|Xanthelasma of right upper eyelid +C2174367|T047|PT|H02.62|ICD10CM|Xanthelasma of right lower eyelid|Xanthelasma of right lower eyelid +C2174367|T047|AB|H02.62|ICD10CM|Xanthelasma of right lower eyelid|Xanthelasma of right lower eyelid +C2875632|T047|AB|H02.63|ICD10CM|Xanthelasma of right eye, unspecified eyelid|Xanthelasma of right eye, unspecified eyelid +C2875632|T047|PT|H02.63|ICD10CM|Xanthelasma of right eye, unspecified eyelid|Xanthelasma of right eye, unspecified eyelid +C2069911|T047|PT|H02.64|ICD10CM|Xanthelasma of left upper eyelid|Xanthelasma of left upper eyelid +C2069911|T047|AB|H02.64|ICD10CM|Xanthelasma of left upper eyelid|Xanthelasma of left upper eyelid +C2174368|T047|PT|H02.65|ICD10CM|Xanthelasma of left lower eyelid|Xanthelasma of left lower eyelid +C2174368|T047|AB|H02.65|ICD10CM|Xanthelasma of left lower eyelid|Xanthelasma of left lower eyelid +C2875633|T047|AB|H02.66|ICD10CM|Xanthelasma of left eye, unspecified eyelid|Xanthelasma of left eye, unspecified eyelid +C2875633|T047|PT|H02.66|ICD10CM|Xanthelasma of left eye, unspecified eyelid|Xanthelasma of left eye, unspecified eyelid +C2875634|T047|AB|H02.7|ICD10CM|Oth and unsp degeneratv disord of eyelid and perioculr area|Oth and unsp degeneratv disord of eyelid and perioculr area +C2875634|T047|HT|H02.7|ICD10CM|Other and unspecified degenerative disorders of eyelid and periocular area|Other and unspecified degenerative disorders of eyelid and periocular area +C0348510|T047|PT|H02.7|ICD10|Other degenerative disorders of eyelid and periocular area|Other degenerative disorders of eyelid and periocular area +C2875635|T047|AB|H02.70|ICD10CM|Unsp degenerative disorders of eyelid and periocular area|Unsp degenerative disorders of eyelid and periocular area +C2875635|T047|PT|H02.70|ICD10CM|Unspecified degenerative disorders of eyelid and periocular area|Unspecified degenerative disorders of eyelid and periocular area +C2875636|T047|AB|H02.71|ICD10CM|Chloasma of eyelid and periocular area|Chloasma of eyelid and periocular area +C2875636|T047|HT|H02.71|ICD10CM|Chloasma of eyelid and periocular area|Chloasma of eyelid and periocular area +C0155211|T047|ET|H02.71|ICD10CM|Dyspigmentation of eyelid|Dyspigmentation of eyelid +C0155211|T047|ET|H02.71|ICD10CM|Hyperpigmentation of eyelid|Hyperpigmentation of eyelid +C2875637|T047|AB|H02.711|ICD10CM|Chloasma of right upper eyelid and periocular area|Chloasma of right upper eyelid and periocular area +C2875637|T047|PT|H02.711|ICD10CM|Chloasma of right upper eyelid and periocular area|Chloasma of right upper eyelid and periocular area +C2875638|T047|AB|H02.712|ICD10CM|Chloasma of right lower eyelid and periocular area|Chloasma of right lower eyelid and periocular area +C2875638|T047|PT|H02.712|ICD10CM|Chloasma of right lower eyelid and periocular area|Chloasma of right lower eyelid and periocular area +C2875639|T047|AB|H02.713|ICD10CM|Chloasma of right eye, unsp eyelid and periocular area|Chloasma of right eye, unsp eyelid and periocular area +C2875639|T047|PT|H02.713|ICD10CM|Chloasma of right eye, unspecified eyelid and periocular area|Chloasma of right eye, unspecified eyelid and periocular area +C2875640|T047|AB|H02.714|ICD10CM|Chloasma of left upper eyelid and periocular area|Chloasma of left upper eyelid and periocular area +C2875640|T047|PT|H02.714|ICD10CM|Chloasma of left upper eyelid and periocular area|Chloasma of left upper eyelid and periocular area +C2875641|T047|AB|H02.715|ICD10CM|Chloasma of left lower eyelid and periocular area|Chloasma of left lower eyelid and periocular area +C2875641|T047|PT|H02.715|ICD10CM|Chloasma of left lower eyelid and periocular area|Chloasma of left lower eyelid and periocular area +C2875642|T047|AB|H02.716|ICD10CM|Chloasma of left eye, unspecified eyelid and periocular area|Chloasma of left eye, unspecified eyelid and periocular area +C2875642|T047|PT|H02.716|ICD10CM|Chloasma of left eye, unspecified eyelid and periocular area|Chloasma of left eye, unspecified eyelid and periocular area +C2875643|T047|AB|H02.719|ICD10CM|Chloasma of unsp eye, unspecified eyelid and periocular area|Chloasma of unsp eye, unspecified eyelid and periocular area +C2875643|T047|PT|H02.719|ICD10CM|Chloasma of unspecified eye, unspecified eyelid and periocular area|Chloasma of unspecified eye, unspecified eyelid and periocular area +C0155214|T047|ET|H02.72|ICD10CM|Hypotrichosis of eyelid|Hypotrichosis of eyelid +C2875644|T047|AB|H02.72|ICD10CM|Madarosis of eyelid and periocular area|Madarosis of eyelid and periocular area +C2875644|T047|HT|H02.72|ICD10CM|Madarosis of eyelid and periocular area|Madarosis of eyelid and periocular area +C2875645|T047|AB|H02.721|ICD10CM|Madarosis of right upper eyelid and periocular area|Madarosis of right upper eyelid and periocular area +C2875645|T047|PT|H02.721|ICD10CM|Madarosis of right upper eyelid and periocular area|Madarosis of right upper eyelid and periocular area +C2875646|T047|AB|H02.722|ICD10CM|Madarosis of right lower eyelid and periocular area|Madarosis of right lower eyelid and periocular area +C2875646|T047|PT|H02.722|ICD10CM|Madarosis of right lower eyelid and periocular area|Madarosis of right lower eyelid and periocular area +C2875647|T047|AB|H02.723|ICD10CM|Madarosis of right eye, unsp eyelid and periocular area|Madarosis of right eye, unsp eyelid and periocular area +C2875647|T047|PT|H02.723|ICD10CM|Madarosis of right eye, unspecified eyelid and periocular area|Madarosis of right eye, unspecified eyelid and periocular area +C2875648|T047|AB|H02.724|ICD10CM|Madarosis of left upper eyelid and periocular area|Madarosis of left upper eyelid and periocular area +C2875648|T047|PT|H02.724|ICD10CM|Madarosis of left upper eyelid and periocular area|Madarosis of left upper eyelid and periocular area +C2875649|T047|AB|H02.725|ICD10CM|Madarosis of left lower eyelid and periocular area|Madarosis of left lower eyelid and periocular area +C2875649|T047|PT|H02.725|ICD10CM|Madarosis of left lower eyelid and periocular area|Madarosis of left lower eyelid and periocular area +C2875650|T047|AB|H02.726|ICD10CM|Madarosis of left eye, unsp eyelid and periocular area|Madarosis of left eye, unsp eyelid and periocular area +C2875650|T047|PT|H02.726|ICD10CM|Madarosis of left eye, unspecified eyelid and periocular area|Madarosis of left eye, unspecified eyelid and periocular area +C2875651|T047|AB|H02.729|ICD10CM|Madarosis of unsp eye, unsp eyelid and periocular area|Madarosis of unsp eye, unsp eyelid and periocular area +C2875651|T047|PT|H02.729|ICD10CM|Madarosis of unspecified eye, unspecified eyelid and periocular area|Madarosis of unspecified eye, unspecified eyelid and periocular area +C0155212|T047|ET|H02.73|ICD10CM|Hypopigmentation of eyelid|Hypopigmentation of eyelid +C2875652|T047|HT|H02.73|ICD10CM|Vitiligo of eyelid and periocular area|Vitiligo of eyelid and periocular area +C2875652|T047|AB|H02.73|ICD10CM|Vitiligo of eyelid and periocular area|Vitiligo of eyelid and periocular area +C2875653|T047|AB|H02.731|ICD10CM|Vitiligo of right upper eyelid and periocular area|Vitiligo of right upper eyelid and periocular area +C2875653|T047|PT|H02.731|ICD10CM|Vitiligo of right upper eyelid and periocular area|Vitiligo of right upper eyelid and periocular area +C2875654|T047|AB|H02.732|ICD10CM|Vitiligo of right lower eyelid and periocular area|Vitiligo of right lower eyelid and periocular area +C2875654|T047|PT|H02.732|ICD10CM|Vitiligo of right lower eyelid and periocular area|Vitiligo of right lower eyelid and periocular area +C2875655|T047|AB|H02.733|ICD10CM|Vitiligo of right eye, unsp eyelid and periocular area|Vitiligo of right eye, unsp eyelid and periocular area +C2875655|T047|PT|H02.733|ICD10CM|Vitiligo of right eye, unspecified eyelid and periocular area|Vitiligo of right eye, unspecified eyelid and periocular area +C2875656|T047|AB|H02.734|ICD10CM|Vitiligo of left upper eyelid and periocular area|Vitiligo of left upper eyelid and periocular area +C2875656|T047|PT|H02.734|ICD10CM|Vitiligo of left upper eyelid and periocular area|Vitiligo of left upper eyelid and periocular area +C2875657|T047|AB|H02.735|ICD10CM|Vitiligo of left lower eyelid and periocular area|Vitiligo of left lower eyelid and periocular area +C2875657|T047|PT|H02.735|ICD10CM|Vitiligo of left lower eyelid and periocular area|Vitiligo of left lower eyelid and periocular area +C2875658|T047|AB|H02.736|ICD10CM|Vitiligo of left eye, unspecified eyelid and periocular area|Vitiligo of left eye, unspecified eyelid and periocular area +C2875658|T047|PT|H02.736|ICD10CM|Vitiligo of left eye, unspecified eyelid and periocular area|Vitiligo of left eye, unspecified eyelid and periocular area +C2875659|T047|AB|H02.739|ICD10CM|Vitiligo of unsp eye, unspecified eyelid and periocular area|Vitiligo of unsp eye, unspecified eyelid and periocular area +C2875659|T047|PT|H02.739|ICD10CM|Vitiligo of unspecified eye, unspecified eyelid and periocular area|Vitiligo of unspecified eye, unspecified eyelid and periocular area +C0348510|T047|PT|H02.79|ICD10CM|Other degenerative disorders of eyelid and periocular area|Other degenerative disorders of eyelid and periocular area +C0348510|T047|AB|H02.79|ICD10CM|Other degenerative disorders of eyelid and periocular area|Other degenerative disorders of eyelid and periocular area +C0348511|T047|HT|H02.8|ICD10CM|Other specified disorders of eyelid|Other specified disorders of eyelid +C0348511|T047|AB|H02.8|ICD10CM|Other specified disorders of eyelid|Other specified disorders of eyelid +C0348511|T047|PT|H02.8|ICD10|Other specified disorders of eyelid|Other specified disorders of eyelid +C0339097|T047|AB|H02.81|ICD10CM|Retained foreign body in eyelid|Retained foreign body in eyelid +C0339097|T047|HT|H02.81|ICD10CM|Retained foreign body in eyelid|Retained foreign body in eyelid +C2875660|T047|AB|H02.811|ICD10CM|Retained foreign body in right upper eyelid|Retained foreign body in right upper eyelid +C2875660|T047|PT|H02.811|ICD10CM|Retained foreign body in right upper eyelid|Retained foreign body in right upper eyelid +C2875661|T047|AB|H02.812|ICD10CM|Retained foreign body in right lower eyelid|Retained foreign body in right lower eyelid +C2875661|T047|PT|H02.812|ICD10CM|Retained foreign body in right lower eyelid|Retained foreign body in right lower eyelid +C2875662|T047|AB|H02.813|ICD10CM|Retained foreign body in right eye, unspecified eyelid|Retained foreign body in right eye, unspecified eyelid +C2875662|T047|PT|H02.813|ICD10CM|Retained foreign body in right eye, unspecified eyelid|Retained foreign body in right eye, unspecified eyelid +C2875663|T047|AB|H02.814|ICD10CM|Retained foreign body in left upper eyelid|Retained foreign body in left upper eyelid +C2875663|T047|PT|H02.814|ICD10CM|Retained foreign body in left upper eyelid|Retained foreign body in left upper eyelid +C2875664|T047|AB|H02.815|ICD10CM|Retained foreign body in left lower eyelid|Retained foreign body in left lower eyelid +C2875664|T047|PT|H02.815|ICD10CM|Retained foreign body in left lower eyelid|Retained foreign body in left lower eyelid +C2875665|T047|AB|H02.816|ICD10CM|Retained foreign body in left eye, unspecified eyelid|Retained foreign body in left eye, unspecified eyelid +C2875665|T047|PT|H02.816|ICD10CM|Retained foreign body in left eye, unspecified eyelid|Retained foreign body in left eye, unspecified eyelid +C2875666|T047|AB|H02.819|ICD10CM|Retained foreign body in unspecified eye, unspecified eyelid|Retained foreign body in unspecified eye, unspecified eyelid +C2875666|T047|PT|H02.819|ICD10CM|Retained foreign body in unspecified eye, unspecified eyelid|Retained foreign body in unspecified eye, unspecified eyelid +C0155218|T047|AB|H02.82|ICD10CM|Cysts of eyelid|Cysts of eyelid +C0155218|T047|HT|H02.82|ICD10CM|Cysts of eyelid|Cysts of eyelid +C0271304|T033|ET|H02.82|ICD10CM|Sebaceous cyst of eyelid|Sebaceous cyst of eyelid +C2119049|T047|AB|H02.821|ICD10CM|Cysts of right upper eyelid|Cysts of right upper eyelid +C2119049|T047|PT|H02.821|ICD10CM|Cysts of right upper eyelid|Cysts of right upper eyelid +C2231415|T047|PT|H02.822|ICD10CM|Cysts of right lower eyelid|Cysts of right lower eyelid +C2231415|T047|AB|H02.822|ICD10CM|Cysts of right lower eyelid|Cysts of right lower eyelid +C2875667|T047|AB|H02.823|ICD10CM|Cysts of right eye, unspecified eyelid|Cysts of right eye, unspecified eyelid +C2875667|T047|PT|H02.823|ICD10CM|Cysts of right eye, unspecified eyelid|Cysts of right eye, unspecified eyelid +C2119050|T047|AB|H02.824|ICD10CM|Cysts of left upper eyelid|Cysts of left upper eyelid +C2119050|T047|PT|H02.824|ICD10CM|Cysts of left upper eyelid|Cysts of left upper eyelid +C2231416|T033|AB|H02.825|ICD10CM|Cysts of left lower eyelid|Cysts of left lower eyelid +C2231416|T033|PT|H02.825|ICD10CM|Cysts of left lower eyelid|Cysts of left lower eyelid +C2875668|T047|AB|H02.826|ICD10CM|Cysts of left eye, unspecified eyelid|Cysts of left eye, unspecified eyelid +C2875668|T047|PT|H02.826|ICD10CM|Cysts of left eye, unspecified eyelid|Cysts of left eye, unspecified eyelid +C2875669|T047|AB|H02.829|ICD10CM|Cysts of unspecified eye, unspecified eyelid|Cysts of unspecified eye, unspecified eyelid +C2875669|T047|PT|H02.829|ICD10CM|Cysts of unspecified eye, unspecified eyelid|Cysts of unspecified eye, unspecified eyelid +C2875670|T047|AB|H02.83|ICD10CM|Dermatochalasis of eyelid|Dermatochalasis of eyelid +C2875670|T047|HT|H02.83|ICD10CM|Dermatochalasis of eyelid|Dermatochalasis of eyelid +C2875671|T047|PT|H02.831|ICD10CM|Dermatochalasis of right upper eyelid|Dermatochalasis of right upper eyelid +C2875671|T047|AB|H02.831|ICD10CM|Dermatochalasis of right upper eyelid|Dermatochalasis of right upper eyelid +C2875672|T047|PT|H02.832|ICD10CM|Dermatochalasis of right lower eyelid|Dermatochalasis of right lower eyelid +C2875672|T047|AB|H02.832|ICD10CM|Dermatochalasis of right lower eyelid|Dermatochalasis of right lower eyelid +C2875673|T047|AB|H02.833|ICD10CM|Dermatochalasis of right eye, unspecified eyelid|Dermatochalasis of right eye, unspecified eyelid +C2875673|T047|PT|H02.833|ICD10CM|Dermatochalasis of right eye, unspecified eyelid|Dermatochalasis of right eye, unspecified eyelid +C2875674|T047|PT|H02.834|ICD10CM|Dermatochalasis of left upper eyelid|Dermatochalasis of left upper eyelid +C2875674|T047|AB|H02.834|ICD10CM|Dermatochalasis of left upper eyelid|Dermatochalasis of left upper eyelid +C2875675|T047|PT|H02.835|ICD10CM|Dermatochalasis of left lower eyelid|Dermatochalasis of left lower eyelid +C2875675|T047|AB|H02.835|ICD10CM|Dermatochalasis of left lower eyelid|Dermatochalasis of left lower eyelid +C2875676|T047|AB|H02.836|ICD10CM|Dermatochalasis of left eye, unspecified eyelid|Dermatochalasis of left eye, unspecified eyelid +C2875676|T047|PT|H02.836|ICD10CM|Dermatochalasis of left eye, unspecified eyelid|Dermatochalasis of left eye, unspecified eyelid +C2875677|T047|AB|H02.839|ICD10CM|Dermatochalasis of unspecified eye, unspecified eyelid|Dermatochalasis of unspecified eye, unspecified eyelid +C2875677|T047|PT|H02.839|ICD10CM|Dermatochalasis of unspecified eye, unspecified eyelid|Dermatochalasis of unspecified eye, unspecified eyelid +C0162285|T046|HT|H02.84|ICD10CM|Edema of eyelid|Edema of eyelid +C0162285|T046|AB|H02.84|ICD10CM|Edema of eyelid|Edema of eyelid +C0271303|T033|ET|H02.84|ICD10CM|Hyperemia of eyelid|Hyperemia of eyelid +C2875678|T046|PT|H02.841|ICD10CM|Edema of right upper eyelid|Edema of right upper eyelid +C2875678|T046|AB|H02.841|ICD10CM|Edema of right upper eyelid|Edema of right upper eyelid +C2875679|T033|AB|H02.842|ICD10CM|Edema of right lower eyelid|Edema of right lower eyelid +C2875679|T033|PT|H02.842|ICD10CM|Edema of right lower eyelid|Edema of right lower eyelid +C2875680|T033|AB|H02.843|ICD10CM|Edema of right eye, unspecified eyelid|Edema of right eye, unspecified eyelid +C2875680|T033|PT|H02.843|ICD10CM|Edema of right eye, unspecified eyelid|Edema of right eye, unspecified eyelid +C2875681|T046|PT|H02.844|ICD10CM|Edema of left upper eyelid|Edema of left upper eyelid +C2875681|T046|AB|H02.844|ICD10CM|Edema of left upper eyelid|Edema of left upper eyelid +C2875682|T033|AB|H02.845|ICD10CM|Edema of left lower eyelid|Edema of left lower eyelid +C2875682|T033|PT|H02.845|ICD10CM|Edema of left lower eyelid|Edema of left lower eyelid +C2875683|T033|AB|H02.846|ICD10CM|Edema of left eye, unspecified eyelid|Edema of left eye, unspecified eyelid +C2875683|T033|PT|H02.846|ICD10CM|Edema of left eye, unspecified eyelid|Edema of left eye, unspecified eyelid +C2875684|T033|AB|H02.849|ICD10CM|Edema of unspecified eye, unspecified eyelid|Edema of unspecified eye, unspecified eyelid +C2875684|T033|PT|H02.849|ICD10CM|Edema of unspecified eye, unspecified eyelid|Edema of unspecified eye, unspecified eyelid +C0155217|T047|HT|H02.85|ICD10CM|Elephantiasis of eyelid|Elephantiasis of eyelid +C0155217|T047|AB|H02.85|ICD10CM|Elephantiasis of eyelid|Elephantiasis of eyelid +C2875685|T047|AB|H02.851|ICD10CM|Elephantiasis of right upper eyelid|Elephantiasis of right upper eyelid +C2875685|T047|PT|H02.851|ICD10CM|Elephantiasis of right upper eyelid|Elephantiasis of right upper eyelid +C2875686|T047|AB|H02.852|ICD10CM|Elephantiasis of right lower eyelid|Elephantiasis of right lower eyelid +C2875686|T047|PT|H02.852|ICD10CM|Elephantiasis of right lower eyelid|Elephantiasis of right lower eyelid +C2875687|T047|AB|H02.853|ICD10CM|Elephantiasis of right eye, unspecified eyelid|Elephantiasis of right eye, unspecified eyelid +C2875687|T047|PT|H02.853|ICD10CM|Elephantiasis of right eye, unspecified eyelid|Elephantiasis of right eye, unspecified eyelid +C2875688|T047|AB|H02.854|ICD10CM|Elephantiasis of left upper eyelid|Elephantiasis of left upper eyelid +C2875688|T047|PT|H02.854|ICD10CM|Elephantiasis of left upper eyelid|Elephantiasis of left upper eyelid +C2875689|T047|AB|H02.855|ICD10CM|Elephantiasis of left lower eyelid|Elephantiasis of left lower eyelid +C2875689|T047|PT|H02.855|ICD10CM|Elephantiasis of left lower eyelid|Elephantiasis of left lower eyelid +C2875690|T047|AB|H02.856|ICD10CM|Elephantiasis of left eye, unspecified eyelid|Elephantiasis of left eye, unspecified eyelid +C2875690|T047|PT|H02.856|ICD10CM|Elephantiasis of left eye, unspecified eyelid|Elephantiasis of left eye, unspecified eyelid +C2875691|T047|AB|H02.859|ICD10CM|Elephantiasis of unspecified eye, unspecified eyelid|Elephantiasis of unspecified eye, unspecified eyelid +C2875691|T047|PT|H02.859|ICD10CM|Elephantiasis of unspecified eye, unspecified eyelid|Elephantiasis of unspecified eye, unspecified eyelid +C0155213|T047|HT|H02.86|ICD10CM|Hypertrichosis of eyelid|Hypertrichosis of eyelid +C0155213|T047|AB|H02.86|ICD10CM|Hypertrichosis of eyelid|Hypertrichosis of eyelid +C2047596|T047|AB|H02.861|ICD10CM|Hypertrichosis of right upper eyelid|Hypertrichosis of right upper eyelid +C2047596|T047|PT|H02.861|ICD10CM|Hypertrichosis of right upper eyelid|Hypertrichosis of right upper eyelid +C2047595|T047|AB|H02.862|ICD10CM|Hypertrichosis of right lower eyelid|Hypertrichosis of right lower eyelid +C2047595|T047|PT|H02.862|ICD10CM|Hypertrichosis of right lower eyelid|Hypertrichosis of right lower eyelid +C2875692|T047|AB|H02.863|ICD10CM|Hypertrichosis of right eye, unspecified eyelid|Hypertrichosis of right eye, unspecified eyelid +C2875692|T047|PT|H02.863|ICD10CM|Hypertrichosis of right eye, unspecified eyelid|Hypertrichosis of right eye, unspecified eyelid +C2047594|T047|AB|H02.864|ICD10CM|Hypertrichosis of left upper eyelid|Hypertrichosis of left upper eyelid +C2047594|T047|PT|H02.864|ICD10CM|Hypertrichosis of left upper eyelid|Hypertrichosis of left upper eyelid +C2047593|T047|AB|H02.865|ICD10CM|Hypertrichosis of left lower eyelid|Hypertrichosis of left lower eyelid +C2047593|T047|PT|H02.865|ICD10CM|Hypertrichosis of left lower eyelid|Hypertrichosis of left lower eyelid +C2875693|T047|AB|H02.866|ICD10CM|Hypertrichosis of left eye, unspecified eyelid|Hypertrichosis of left eye, unspecified eyelid +C2875693|T047|PT|H02.866|ICD10CM|Hypertrichosis of left eye, unspecified eyelid|Hypertrichosis of left eye, unspecified eyelid +C2875694|T047|AB|H02.869|ICD10CM|Hypertrichosis of unspecified eye, unspecified eyelid|Hypertrichosis of unspecified eye, unspecified eyelid +C2875694|T047|PT|H02.869|ICD10CM|Hypertrichosis of unspecified eye, unspecified eyelid|Hypertrichosis of unspecified eye, unspecified eyelid +C0155219|T190|HT|H02.87|ICD10CM|Vascular anomalies of eyelid|Vascular anomalies of eyelid +C0155219|T190|AB|H02.87|ICD10CM|Vascular anomalies of eyelid|Vascular anomalies of eyelid +C2069922|T033|AB|H02.871|ICD10CM|Vascular anomalies of right upper eyelid|Vascular anomalies of right upper eyelid +C2069922|T033|PT|H02.871|ICD10CM|Vascular anomalies of right upper eyelid|Vascular anomalies of right upper eyelid +C2174395|T033|AB|H02.872|ICD10CM|Vascular anomalies of right lower eyelid|Vascular anomalies of right lower eyelid +C2174395|T033|PT|H02.872|ICD10CM|Vascular anomalies of right lower eyelid|Vascular anomalies of right lower eyelid +C2875695|T190|AB|H02.873|ICD10CM|Vascular anomalies of right eye, unspecified eyelid|Vascular anomalies of right eye, unspecified eyelid +C2875695|T190|PT|H02.873|ICD10CM|Vascular anomalies of right eye, unspecified eyelid|Vascular anomalies of right eye, unspecified eyelid +C2069923|T033|AB|H02.874|ICD10CM|Vascular anomalies of left upper eyelid|Vascular anomalies of left upper eyelid +C2069923|T033|PT|H02.874|ICD10CM|Vascular anomalies of left upper eyelid|Vascular anomalies of left upper eyelid +C2174396|T033|AB|H02.875|ICD10CM|Vascular anomalies of left lower eyelid|Vascular anomalies of left lower eyelid +C2174396|T033|PT|H02.875|ICD10CM|Vascular anomalies of left lower eyelid|Vascular anomalies of left lower eyelid +C2875696|T190|AB|H02.876|ICD10CM|Vascular anomalies of left eye, unspecified eyelid|Vascular anomalies of left eye, unspecified eyelid +C2875696|T190|PT|H02.876|ICD10CM|Vascular anomalies of left eye, unspecified eyelid|Vascular anomalies of left eye, unspecified eyelid +C0155219|T190|AB|H02.879|ICD10CM|Vascular anomalies of unspecified eye, unspecified eyelid|Vascular anomalies of unspecified eye, unspecified eyelid +C0155219|T190|PT|H02.879|ICD10CM|Vascular anomalies of unspecified eye, unspecified eyelid|Vascular anomalies of unspecified eye, unspecified eyelid +C1275684|T047|AB|H02.88|ICD10CM|Meibomian gland dysfunction of eyelid|Meibomian gland dysfunction of eyelid +C1275684|T047|HT|H02.88|ICD10CM|Meibomian gland dysfunction of eyelid|Meibomian gland dysfunction of eyelid +C4554294|T047|AB|H02.881|ICD10CM|Meibomian gland dysfunction right upper eyelid|Meibomian gland dysfunction right upper eyelid +C4554294|T047|PT|H02.881|ICD10CM|Meibomian gland dysfunction right upper eyelid|Meibomian gland dysfunction right upper eyelid +C4554295|T047|AB|H02.882|ICD10CM|Meibomian gland dysfunction right lower eyelid|Meibomian gland dysfunction right lower eyelid +C4554295|T047|PT|H02.882|ICD10CM|Meibomian gland dysfunction right lower eyelid|Meibomian gland dysfunction right lower eyelid +C4554296|T047|AB|H02.883|ICD10CM|Meibomian gland dysfunction of right eye, unspecified eyelid|Meibomian gland dysfunction of right eye, unspecified eyelid +C4554296|T047|PT|H02.883|ICD10CM|Meibomian gland dysfunction of right eye, unspecified eyelid|Meibomian gland dysfunction of right eye, unspecified eyelid +C4554297|T047|AB|H02.884|ICD10CM|Meibomian gland dysfunction left upper eyelid|Meibomian gland dysfunction left upper eyelid +C4554297|T047|PT|H02.884|ICD10CM|Meibomian gland dysfunction left upper eyelid|Meibomian gland dysfunction left upper eyelid +C4554298|T047|AB|H02.885|ICD10CM|Meibomian gland dysfunction left lower eyelid|Meibomian gland dysfunction left lower eyelid +C4554298|T047|PT|H02.885|ICD10CM|Meibomian gland dysfunction left lower eyelid|Meibomian gland dysfunction left lower eyelid +C4554299|T047|AB|H02.886|ICD10CM|Meibomian gland dysfunction of left eye, unspecified eyelid|Meibomian gland dysfunction of left eye, unspecified eyelid +C4554299|T047|PT|H02.886|ICD10CM|Meibomian gland dysfunction of left eye, unspecified eyelid|Meibomian gland dysfunction of left eye, unspecified eyelid +C4554300|T047|AB|H02.889|ICD10CM|Meibomian gland dysfunction of unsp, unspecified eyelid|Meibomian gland dysfunction of unsp, unspecified eyelid +C4554300|T047|PT|H02.889|ICD10CM|Meibomian gland dysfunction of unspecified eye, unspecified eyelid|Meibomian gland dysfunction of unspecified eye, unspecified eyelid +C4553607|T047|AB|H02.88A|ICD10CM|Meibomian gland dysfnct right eye, upper and lower eyelids|Meibomian gland dysfnct right eye, upper and lower eyelids +C4553607|T047|PT|H02.88A|ICD10CM|Meibomian gland dysfunction right eye, upper and lower eyelids|Meibomian gland dysfunction right eye, upper and lower eyelids +C4554301|T047|AB|H02.88B|ICD10CM|Meibomian gland dysfnct left eye, upper and lower eyelids|Meibomian gland dysfnct left eye, upper and lower eyelids +C4554301|T047|PT|H02.88B|ICD10CM|Meibomian gland dysfunction left eye, upper and lower eyelids|Meibomian gland dysfunction left eye, upper and lower eyelids +C0155216|T046|ET|H02.89|ICD10CM|Hemorrhage of eyelid|Hemorrhage of eyelid +C0348511|T047|PT|H02.89|ICD10CM|Other specified disorders of eyelid|Other specified disorders of eyelid +C0348511|T047|AB|H02.89|ICD10CM|Other specified disorders of eyelid|Other specified disorders of eyelid +C0015423|T047|ET|H02.9|ICD10CM|Disorder of eyelid NOS|Disorder of eyelid NOS +C0015423|T047|PT|H02.9|ICD10|Disorder of eyelid, unspecified|Disorder of eyelid, unspecified +C0015423|T047|PT|H02.9|ICD10CM|Unspecified disorder of eyelid|Unspecified disorder of eyelid +C0015423|T047|AB|H02.9|ICD10CM|Unspecified disorder of eyelid|Unspecified disorder of eyelid +C0694481|T047|HT|H03|ICD10|Disorders of eyelid in diseases classified elsewhere|Disorders of eyelid in diseases classified elsewhere +C0348512|T047|PT|H03.0|ICD10|Parasitic infestation of eyelid in diseases classified elsewhere|Parasitic infestation of eyelid in diseases classified elsewhere +C0348513|T047|PT|H03.1|ICD10|Involvement of eyelid in other infectious diseases classified elsewhere|Involvement of eyelid in other infectious diseases classified elsewhere +C0348514|T047|PT|H03.8|ICD10|Involvement of eyelid in other diseases classified elsewhere|Involvement of eyelid in other diseases classified elsewhere +C0022904|T047|HT|H04|ICD10|Disorders of lacrimal system|Disorders of lacrimal system +C0022904|T047|HT|H04|ICD10CM|Disorders of lacrimal system|Disorders of lacrimal system +C0022904|T047|AB|H04|ICD10CM|Disorders of lacrimal system|Disorders of lacrimal system +C0155223|T047|PT|H04.0|ICD10|Dacryoadenitis|Dacryoadenitis +C0155223|T047|HT|H04.0|ICD10CM|Dacryoadenitis|Dacryoadenitis +C0155223|T047|AB|H04.0|ICD10CM|Dacryoadenitis|Dacryoadenitis +C0155223|T047|AB|H04.00|ICD10CM|Unspecified dacryoadenitis|Unspecified dacryoadenitis +C0155223|T047|HT|H04.00|ICD10CM|Unspecified dacryoadenitis|Unspecified dacryoadenitis +C2875697|T047|AB|H04.001|ICD10CM|Unspecified dacryoadenitis, right lacrimal gland|Unspecified dacryoadenitis, right lacrimal gland +C2875697|T047|PT|H04.001|ICD10CM|Unspecified dacryoadenitis, right lacrimal gland|Unspecified dacryoadenitis, right lacrimal gland +C2875698|T047|AB|H04.002|ICD10CM|Unspecified dacryoadenitis, left lacrimal gland|Unspecified dacryoadenitis, left lacrimal gland +C2875698|T047|PT|H04.002|ICD10CM|Unspecified dacryoadenitis, left lacrimal gland|Unspecified dacryoadenitis, left lacrimal gland +C2875699|T047|AB|H04.003|ICD10CM|Unspecified dacryoadenitis, bilateral lacrimal glands|Unspecified dacryoadenitis, bilateral lacrimal glands +C2875699|T047|PT|H04.003|ICD10CM|Unspecified dacryoadenitis, bilateral lacrimal glands|Unspecified dacryoadenitis, bilateral lacrimal glands +C2875700|T047|AB|H04.009|ICD10CM|Unspecified dacryoadenitis, unspecified lacrimal gland|Unspecified dacryoadenitis, unspecified lacrimal gland +C2875700|T047|PT|H04.009|ICD10CM|Unspecified dacryoadenitis, unspecified lacrimal gland|Unspecified dacryoadenitis, unspecified lacrimal gland +C0149505|T047|HT|H04.01|ICD10CM|Acute dacryoadenitis|Acute dacryoadenitis +C0149505|T047|AB|H04.01|ICD10CM|Acute dacryoadenitis|Acute dacryoadenitis +C2875701|T047|AB|H04.011|ICD10CM|Acute dacryoadenitis, right lacrimal gland|Acute dacryoadenitis, right lacrimal gland +C2875701|T047|PT|H04.011|ICD10CM|Acute dacryoadenitis, right lacrimal gland|Acute dacryoadenitis, right lacrimal gland +C2875702|T047|AB|H04.012|ICD10CM|Acute dacryoadenitis, left lacrimal gland|Acute dacryoadenitis, left lacrimal gland +C2875702|T047|PT|H04.012|ICD10CM|Acute dacryoadenitis, left lacrimal gland|Acute dacryoadenitis, left lacrimal gland +C2875703|T047|AB|H04.013|ICD10CM|Acute dacryoadenitis, bilateral lacrimal glands|Acute dacryoadenitis, bilateral lacrimal glands +C2875703|T047|PT|H04.013|ICD10CM|Acute dacryoadenitis, bilateral lacrimal glands|Acute dacryoadenitis, bilateral lacrimal glands +C2875704|T047|AB|H04.019|ICD10CM|Acute dacryoadenitis, unspecified lacrimal gland|Acute dacryoadenitis, unspecified lacrimal gland +C2875704|T047|PT|H04.019|ICD10CM|Acute dacryoadenitis, unspecified lacrimal gland|Acute dacryoadenitis, unspecified lacrimal gland +C0155224|T047|HT|H04.02|ICD10CM|Chronic dacryoadenitis|Chronic dacryoadenitis +C0155224|T047|AB|H04.02|ICD10CM|Chronic dacryoadenitis|Chronic dacryoadenitis +C2875705|T047|AB|H04.021|ICD10CM|Chronic dacryoadenitis, right lacrimal gland|Chronic dacryoadenitis, right lacrimal gland +C2875705|T047|PT|H04.021|ICD10CM|Chronic dacryoadenitis, right lacrimal gland|Chronic dacryoadenitis, right lacrimal gland +C2875706|T047|AB|H04.022|ICD10CM|Chronic dacryoadenitis, left lacrimal gland|Chronic dacryoadenitis, left lacrimal gland +C2875706|T047|PT|H04.022|ICD10CM|Chronic dacryoadenitis, left lacrimal gland|Chronic dacryoadenitis, left lacrimal gland +C2875707|T047|AB|H04.023|ICD10CM|Chronic dacryoadenitis, bilateral lacrimal gland|Chronic dacryoadenitis, bilateral lacrimal gland +C2875707|T047|PT|H04.023|ICD10CM|Chronic dacryoadenitis, bilateral lacrimal gland|Chronic dacryoadenitis, bilateral lacrimal gland +C2875708|T047|AB|H04.029|ICD10CM|Chronic dacryoadenitis, unspecified lacrimal gland|Chronic dacryoadenitis, unspecified lacrimal gland +C2875708|T047|PT|H04.029|ICD10CM|Chronic dacryoadenitis, unspecified lacrimal gland|Chronic dacryoadenitis, unspecified lacrimal gland +C1300133|T047|HT|H04.03|ICD10CM|Chronic enlargement of lacrimal gland|Chronic enlargement of lacrimal gland +C1300133|T047|AB|H04.03|ICD10CM|Chronic enlargement of lacrimal gland|Chronic enlargement of lacrimal gland +C2875709|T047|AB|H04.031|ICD10CM|Chronic enlargement of right lacrimal gland|Chronic enlargement of right lacrimal gland +C2875709|T047|PT|H04.031|ICD10CM|Chronic enlargement of right lacrimal gland|Chronic enlargement of right lacrimal gland +C2875710|T047|AB|H04.032|ICD10CM|Chronic enlargement of left lacrimal gland|Chronic enlargement of left lacrimal gland +C2875710|T047|PT|H04.032|ICD10CM|Chronic enlargement of left lacrimal gland|Chronic enlargement of left lacrimal gland +C2875711|T047|AB|H04.033|ICD10CM|Chronic enlargement of bilateral lacrimal glands|Chronic enlargement of bilateral lacrimal glands +C2875711|T047|PT|H04.033|ICD10CM|Chronic enlargement of bilateral lacrimal glands|Chronic enlargement of bilateral lacrimal glands +C2875712|T047|AB|H04.039|ICD10CM|Chronic enlargement of unspecified lacrimal gland|Chronic enlargement of unspecified lacrimal gland +C2875712|T047|PT|H04.039|ICD10CM|Chronic enlargement of unspecified lacrimal gland|Chronic enlargement of unspecified lacrimal gland +C0155226|T047|HT|H04.1|ICD10CM|Other disorders of lacrimal gland|Other disorders of lacrimal gland +C0155226|T047|AB|H04.1|ICD10CM|Other disorders of lacrimal gland|Other disorders of lacrimal gland +C0155226|T047|PT|H04.1|ICD10|Other disorders of lacrimal gland|Other disorders of lacrimal gland +C0155227|T184|HT|H04.11|ICD10CM|Dacryops|Dacryops +C0155227|T184|AB|H04.11|ICD10CM|Dacryops|Dacryops +C2875713|T047|AB|H04.111|ICD10CM|Dacryops of right lacrimal gland|Dacryops of right lacrimal gland +C2875713|T047|PT|H04.111|ICD10CM|Dacryops of right lacrimal gland|Dacryops of right lacrimal gland +C2875714|T047|AB|H04.112|ICD10CM|Dacryops of left lacrimal gland|Dacryops of left lacrimal gland +C2875714|T047|PT|H04.112|ICD10CM|Dacryops of left lacrimal gland|Dacryops of left lacrimal gland +C2875715|T047|AB|H04.113|ICD10CM|Dacryops of bilateral lacrimal glands|Dacryops of bilateral lacrimal glands +C2875715|T047|PT|H04.113|ICD10CM|Dacryops of bilateral lacrimal glands|Dacryops of bilateral lacrimal glands +C2875716|T047|AB|H04.119|ICD10CM|Dacryops of unspecified lacrimal gland|Dacryops of unspecified lacrimal gland +C2875716|T047|PT|H04.119|ICD10CM|Dacryops of unspecified lacrimal gland|Dacryops of unspecified lacrimal gland +C0013238|T047|HT|H04.12|ICD10CM|Dry eye syndrome|Dry eye syndrome +C0013238|T047|AB|H04.12|ICD10CM|Dry eye syndrome|Dry eye syndrome +C0043349|T047|ET|H04.12|ICD10CM|Tear film insufficiency, NOS|Tear film insufficiency, NOS +C2875717|T047|AB|H04.121|ICD10CM|Dry eye syndrome of right lacrimal gland|Dry eye syndrome of right lacrimal gland +C2875717|T047|PT|H04.121|ICD10CM|Dry eye syndrome of right lacrimal gland|Dry eye syndrome of right lacrimal gland +C2875718|T047|AB|H04.122|ICD10CM|Dry eye syndrome of left lacrimal gland|Dry eye syndrome of left lacrimal gland +C2875718|T047|PT|H04.122|ICD10CM|Dry eye syndrome of left lacrimal gland|Dry eye syndrome of left lacrimal gland +C2875719|T047|AB|H04.123|ICD10CM|Dry eye syndrome of bilateral lacrimal glands|Dry eye syndrome of bilateral lacrimal glands +C2875719|T047|PT|H04.123|ICD10CM|Dry eye syndrome of bilateral lacrimal glands|Dry eye syndrome of bilateral lacrimal glands +C2875720|T047|AB|H04.129|ICD10CM|Dry eye syndrome of unspecified lacrimal gland|Dry eye syndrome of unspecified lacrimal gland +C2875720|T047|PT|H04.129|ICD10CM|Dry eye syndrome of unspecified lacrimal gland|Dry eye syndrome of unspecified lacrimal gland +C0271323|T033|HT|H04.13|ICD10CM|Lacrimal cyst|Lacrimal cyst +C0271323|T033|AB|H04.13|ICD10CM|Lacrimal cyst|Lacrimal cyst +C2875721|T033|ET|H04.13|ICD10CM|Lacrimal cystic degeneration|Lacrimal cystic degeneration +C2875722|T033|AB|H04.131|ICD10CM|Lacrimal cyst, right lacrimal gland|Lacrimal cyst, right lacrimal gland +C2875722|T033|PT|H04.131|ICD10CM|Lacrimal cyst, right lacrimal gland|Lacrimal cyst, right lacrimal gland +C2875723|T033|AB|H04.132|ICD10CM|Lacrimal cyst, left lacrimal gland|Lacrimal cyst, left lacrimal gland +C2875723|T033|PT|H04.132|ICD10CM|Lacrimal cyst, left lacrimal gland|Lacrimal cyst, left lacrimal gland +C2875724|T033|AB|H04.133|ICD10CM|Lacrimal cyst, bilateral lacrimal glands|Lacrimal cyst, bilateral lacrimal glands +C2875724|T033|PT|H04.133|ICD10CM|Lacrimal cyst, bilateral lacrimal glands|Lacrimal cyst, bilateral lacrimal glands +C2875725|T033|AB|H04.139|ICD10CM|Lacrimal cyst, unspecified lacrimal gland|Lacrimal cyst, unspecified lacrimal gland +C2875725|T033|PT|H04.139|ICD10CM|Lacrimal cyst, unspecified lacrimal gland|Lacrimal cyst, unspecified lacrimal gland +C2875726|T047|AB|H04.14|ICD10CM|Primary lacrimal gland atrophy|Primary lacrimal gland atrophy +C2875726|T047|HT|H04.14|ICD10CM|Primary lacrimal gland atrophy|Primary lacrimal gland atrophy +C2875727|T047|AB|H04.141|ICD10CM|Primary lacrimal gland atrophy, right lacrimal gland|Primary lacrimal gland atrophy, right lacrimal gland +C2875727|T047|PT|H04.141|ICD10CM|Primary lacrimal gland atrophy, right lacrimal gland|Primary lacrimal gland atrophy, right lacrimal gland +C2875728|T047|AB|H04.142|ICD10CM|Primary lacrimal gland atrophy, left lacrimal gland|Primary lacrimal gland atrophy, left lacrimal gland +C2875728|T047|PT|H04.142|ICD10CM|Primary lacrimal gland atrophy, left lacrimal gland|Primary lacrimal gland atrophy, left lacrimal gland +C2875729|T047|AB|H04.143|ICD10CM|Primary lacrimal gland atrophy, bilateral lacrimal glands|Primary lacrimal gland atrophy, bilateral lacrimal glands +C2875729|T047|PT|H04.143|ICD10CM|Primary lacrimal gland atrophy, bilateral lacrimal glands|Primary lacrimal gland atrophy, bilateral lacrimal glands +C2875730|T047|AB|H04.149|ICD10CM|Primary lacrimal gland atrophy, unspecified lacrimal gland|Primary lacrimal gland atrophy, unspecified lacrimal gland +C2875730|T047|PT|H04.149|ICD10CM|Primary lacrimal gland atrophy, unspecified lacrimal gland|Primary lacrimal gland atrophy, unspecified lacrimal gland +C0339121|T020|AB|H04.15|ICD10CM|Secondary lacrimal gland atrophy|Secondary lacrimal gland atrophy +C0339121|T020|HT|H04.15|ICD10CM|Secondary lacrimal gland atrophy|Secondary lacrimal gland atrophy +C2875731|T047|AB|H04.151|ICD10CM|Secondary lacrimal gland atrophy, right lacrimal gland|Secondary lacrimal gland atrophy, right lacrimal gland +C2875731|T047|PT|H04.151|ICD10CM|Secondary lacrimal gland atrophy, right lacrimal gland|Secondary lacrimal gland atrophy, right lacrimal gland +C2875732|T047|AB|H04.152|ICD10CM|Secondary lacrimal gland atrophy, left lacrimal gland|Secondary lacrimal gland atrophy, left lacrimal gland +C2875732|T047|PT|H04.152|ICD10CM|Secondary lacrimal gland atrophy, left lacrimal gland|Secondary lacrimal gland atrophy, left lacrimal gland +C2875733|T047|AB|H04.153|ICD10CM|Secondary lacrimal gland atrophy, bilateral lacrimal glands|Secondary lacrimal gland atrophy, bilateral lacrimal glands +C2875733|T047|PT|H04.153|ICD10CM|Secondary lacrimal gland atrophy, bilateral lacrimal glands|Secondary lacrimal gland atrophy, bilateral lacrimal glands +C2875734|T047|AB|H04.159|ICD10CM|Secondary lacrimal gland atrophy, unspecified lacrimal gland|Secondary lacrimal gland atrophy, unspecified lacrimal gland +C2875734|T047|PT|H04.159|ICD10CM|Secondary lacrimal gland atrophy, unspecified lacrimal gland|Secondary lacrimal gland atrophy, unspecified lacrimal gland +C0155231|T047|HT|H04.16|ICD10CM|Lacrimal gland dislocation|Lacrimal gland dislocation +C0155231|T047|AB|H04.16|ICD10CM|Lacrimal gland dislocation|Lacrimal gland dislocation +C2875735|T047|AB|H04.161|ICD10CM|Lacrimal gland dislocation, right lacrimal gland|Lacrimal gland dislocation, right lacrimal gland +C2875735|T047|PT|H04.161|ICD10CM|Lacrimal gland dislocation, right lacrimal gland|Lacrimal gland dislocation, right lacrimal gland +C2875736|T047|AB|H04.162|ICD10CM|Lacrimal gland dislocation, left lacrimal gland|Lacrimal gland dislocation, left lacrimal gland +C2875736|T047|PT|H04.162|ICD10CM|Lacrimal gland dislocation, left lacrimal gland|Lacrimal gland dislocation, left lacrimal gland +C2875737|T047|AB|H04.163|ICD10CM|Lacrimal gland dislocation, bilateral lacrimal glands|Lacrimal gland dislocation, bilateral lacrimal glands +C2875737|T047|PT|H04.163|ICD10CM|Lacrimal gland dislocation, bilateral lacrimal glands|Lacrimal gland dislocation, bilateral lacrimal glands +C2875738|T047|AB|H04.169|ICD10CM|Lacrimal gland dislocation, unspecified lacrimal gland|Lacrimal gland dislocation, unspecified lacrimal gland +C2875738|T047|PT|H04.169|ICD10CM|Lacrimal gland dislocation, unspecified lacrimal gland|Lacrimal gland dislocation, unspecified lacrimal gland +C0155226|T047|AB|H04.19|ICD10CM|Other specified disorders of lacrimal gland|Other specified disorders of lacrimal gland +C0155226|T047|PT|H04.19|ICD10CM|Other specified disorders of lacrimal gland|Other specified disorders of lacrimal gland +C0152227|T047|HT|H04.2|ICD10CM|Epiphora|Epiphora +C0152227|T047|AB|H04.2|ICD10CM|Epiphora|Epiphora +C0152227|T047|PT|H04.2|ICD10|Epiphora|Epiphora +C0152227|T047|AB|H04.20|ICD10CM|Unspecified epiphora|Unspecified epiphora +C0152227|T047|HT|H04.20|ICD10CM|Unspecified epiphora|Unspecified epiphora +C4554302|T047|AB|H04.201|ICD10CM|Unspecified epiphora, right side|Unspecified epiphora, right side +C4554302|T047|PT|H04.201|ICD10CM|Unspecified epiphora, right side|Unspecified epiphora, right side +C4553608|T047|AB|H04.202|ICD10CM|Unspecified epiphora, left side|Unspecified epiphora, left side +C4553608|T047|PT|H04.202|ICD10CM|Unspecified epiphora, left side|Unspecified epiphora, left side +C2875739|T047|AB|H04.203|ICD10CM|Unspecified epiphora, bilateral|Unspecified epiphora, bilateral +C2875739|T047|PT|H04.203|ICD10CM|Unspecified epiphora, bilateral|Unspecified epiphora, bilateral +C2875740|T047|AB|H04.209|ICD10CM|Unspecified epiphora, unspecified side|Unspecified epiphora, unspecified side +C2875740|T047|PT|H04.209|ICD10CM|Unspecified epiphora, unspecified side|Unspecified epiphora, unspecified side +C0155233|T047|HT|H04.21|ICD10CM|Epiphora due to excess lacrimation|Epiphora due to excess lacrimation +C0155233|T047|AB|H04.21|ICD10CM|Epiphora due to excess lacrimation|Epiphora due to excess lacrimation +C2875741|T047|AB|H04.211|ICD10CM|Epiphora due to excess lacrimation, right lacrimal gland|Epiphora due to excess lacrimation, right lacrimal gland +C2875741|T047|PT|H04.211|ICD10CM|Epiphora due to excess lacrimation, right lacrimal gland|Epiphora due to excess lacrimation, right lacrimal gland +C2875742|T047|AB|H04.212|ICD10CM|Epiphora due to excess lacrimation, left lacrimal gland|Epiphora due to excess lacrimation, left lacrimal gland +C2875742|T047|PT|H04.212|ICD10CM|Epiphora due to excess lacrimation, left lacrimal gland|Epiphora due to excess lacrimation, left lacrimal gland +C2875743|T047|AB|H04.213|ICD10CM|Epiphora due to excess lacrimation, bi lacrimal glands|Epiphora due to excess lacrimation, bi lacrimal glands +C2875743|T047|PT|H04.213|ICD10CM|Epiphora due to excess lacrimation, bilateral lacrimal glands|Epiphora due to excess lacrimation, bilateral lacrimal glands +C2875744|T047|AB|H04.219|ICD10CM|Epiphora due to excess lacrimation, unsp lacrimal gland|Epiphora due to excess lacrimation, unsp lacrimal gland +C2875744|T047|PT|H04.219|ICD10CM|Epiphora due to excess lacrimation, unspecified lacrimal gland|Epiphora due to excess lacrimation, unspecified lacrimal gland +C0155234|T047|HT|H04.22|ICD10CM|Epiphora due to insufficient drainage|Epiphora due to insufficient drainage +C0155234|T047|AB|H04.22|ICD10CM|Epiphora due to insufficient drainage|Epiphora due to insufficient drainage +C2875745|T047|AB|H04.221|ICD10CM|Epiphora due to insufficient drainage, right side|Epiphora due to insufficient drainage, right side +C2875745|T047|PT|H04.221|ICD10CM|Epiphora due to insufficient drainage, right side|Epiphora due to insufficient drainage, right side +C2875746|T047|AB|H04.222|ICD10CM|Epiphora due to insufficient drainage, left side|Epiphora due to insufficient drainage, left side +C2875746|T047|PT|H04.222|ICD10CM|Epiphora due to insufficient drainage, left side|Epiphora due to insufficient drainage, left side +C2875747|T047|AB|H04.223|ICD10CM|Epiphora due to insufficient drainage, bilateral|Epiphora due to insufficient drainage, bilateral +C2875747|T047|PT|H04.223|ICD10CM|Epiphora due to insufficient drainage, bilateral|Epiphora due to insufficient drainage, bilateral +C2875748|T047|AB|H04.229|ICD10CM|Epiphora due to insufficient drainage, unspecified side|Epiphora due to insufficient drainage, unspecified side +C2875748|T047|PT|H04.229|ICD10CM|Epiphora due to insufficient drainage, unspecified side|Epiphora due to insufficient drainage, unspecified side +C0339129|T047|PT|H04.3|ICD10|Acute and unspecified inflammation of lacrimal passages|Acute and unspecified inflammation of lacrimal passages +C0339129|T047|HT|H04.3|ICD10CM|Acute and unspecified inflammation of lacrimal passages|Acute and unspecified inflammation of lacrimal passages +C0339129|T047|AB|H04.3|ICD10CM|Acute and unspecified inflammation of lacrimal passages|Acute and unspecified inflammation of lacrimal passages +C0010930|T047|AB|H04.30|ICD10CM|Unspecified dacryocystitis|Unspecified dacryocystitis +C0010930|T047|HT|H04.30|ICD10CM|Unspecified dacryocystitis|Unspecified dacryocystitis +C2875749|T047|AB|H04.301|ICD10CM|Unspecified dacryocystitis of right lacrimal passage|Unspecified dacryocystitis of right lacrimal passage +C2875749|T047|PT|H04.301|ICD10CM|Unspecified dacryocystitis of right lacrimal passage|Unspecified dacryocystitis of right lacrimal passage +C2875750|T047|AB|H04.302|ICD10CM|Unspecified dacryocystitis of left lacrimal passage|Unspecified dacryocystitis of left lacrimal passage +C2875750|T047|PT|H04.302|ICD10CM|Unspecified dacryocystitis of left lacrimal passage|Unspecified dacryocystitis of left lacrimal passage +C2875751|T047|AB|H04.303|ICD10CM|Unspecified dacryocystitis of bilateral lacrimal passages|Unspecified dacryocystitis of bilateral lacrimal passages +C2875751|T047|PT|H04.303|ICD10CM|Unspecified dacryocystitis of bilateral lacrimal passages|Unspecified dacryocystitis of bilateral lacrimal passages +C2875752|T047|AB|H04.309|ICD10CM|Unspecified dacryocystitis of unspecified lacrimal passage|Unspecified dacryocystitis of unspecified lacrimal passage +C2875752|T047|PT|H04.309|ICD10CM|Unspecified dacryocystitis of unspecified lacrimal passage|Unspecified dacryocystitis of unspecified lacrimal passage +C0155238|T047|HT|H04.31|ICD10CM|Phlegmonous dacryocystitis|Phlegmonous dacryocystitis +C0155238|T047|AB|H04.31|ICD10CM|Phlegmonous dacryocystitis|Phlegmonous dacryocystitis +C2875753|T047|AB|H04.311|ICD10CM|Phlegmonous dacryocystitis of right lacrimal passage|Phlegmonous dacryocystitis of right lacrimal passage +C2875753|T047|PT|H04.311|ICD10CM|Phlegmonous dacryocystitis of right lacrimal passage|Phlegmonous dacryocystitis of right lacrimal passage +C2875754|T047|AB|H04.312|ICD10CM|Phlegmonous dacryocystitis of left lacrimal passage|Phlegmonous dacryocystitis of left lacrimal passage +C2875754|T047|PT|H04.312|ICD10CM|Phlegmonous dacryocystitis of left lacrimal passage|Phlegmonous dacryocystitis of left lacrimal passage +C2875755|T047|AB|H04.313|ICD10CM|Phlegmonous dacryocystitis of bilateral lacrimal passages|Phlegmonous dacryocystitis of bilateral lacrimal passages +C2875755|T047|PT|H04.313|ICD10CM|Phlegmonous dacryocystitis of bilateral lacrimal passages|Phlegmonous dacryocystitis of bilateral lacrimal passages +C2875756|T047|AB|H04.319|ICD10CM|Phlegmonous dacryocystitis of unspecified lacrimal passage|Phlegmonous dacryocystitis of unspecified lacrimal passage +C2875756|T047|PT|H04.319|ICD10CM|Phlegmonous dacryocystitis of unspecified lacrimal passage|Phlegmonous dacryocystitis of unspecified lacrimal passage +C0155237|T047|HT|H04.32|ICD10CM|Acute dacryocystitis|Acute dacryocystitis +C0155237|T047|AB|H04.32|ICD10CM|Acute dacryocystitis|Acute dacryocystitis +C2875757|T047|ET|H04.32|ICD10CM|Acute dacryopericystitis|Acute dacryopericystitis +C2875758|T047|AB|H04.321|ICD10CM|Acute dacryocystitis of right lacrimal passage|Acute dacryocystitis of right lacrimal passage +C2875758|T047|PT|H04.321|ICD10CM|Acute dacryocystitis of right lacrimal passage|Acute dacryocystitis of right lacrimal passage +C2875759|T047|AB|H04.322|ICD10CM|Acute dacryocystitis of left lacrimal passage|Acute dacryocystitis of left lacrimal passage +C2875759|T047|PT|H04.322|ICD10CM|Acute dacryocystitis of left lacrimal passage|Acute dacryocystitis of left lacrimal passage +C2875760|T047|AB|H04.323|ICD10CM|Acute dacryocystitis of bilateral lacrimal passages|Acute dacryocystitis of bilateral lacrimal passages +C2875760|T047|PT|H04.323|ICD10CM|Acute dacryocystitis of bilateral lacrimal passages|Acute dacryocystitis of bilateral lacrimal passages +C2875761|T047|AB|H04.329|ICD10CM|Acute dacryocystitis of unspecified lacrimal passage|Acute dacryocystitis of unspecified lacrimal passage +C2875761|T047|PT|H04.329|ICD10CM|Acute dacryocystitis of unspecified lacrimal passage|Acute dacryocystitis of unspecified lacrimal passage +C0339130|T047|HT|H04.33|ICD10CM|Acute lacrimal canaliculitis|Acute lacrimal canaliculitis +C0339130|T047|AB|H04.33|ICD10CM|Acute lacrimal canaliculitis|Acute lacrimal canaliculitis +C2875762|T047|AB|H04.331|ICD10CM|Acute lacrimal canaliculitis of right lacrimal passage|Acute lacrimal canaliculitis of right lacrimal passage +C2875762|T047|PT|H04.331|ICD10CM|Acute lacrimal canaliculitis of right lacrimal passage|Acute lacrimal canaliculitis of right lacrimal passage +C2875763|T047|AB|H04.332|ICD10CM|Acute lacrimal canaliculitis of left lacrimal passage|Acute lacrimal canaliculitis of left lacrimal passage +C2875763|T047|PT|H04.332|ICD10CM|Acute lacrimal canaliculitis of left lacrimal passage|Acute lacrimal canaliculitis of left lacrimal passage +C2875764|T047|AB|H04.333|ICD10CM|Acute lacrimal canaliculitis of bilateral lacrimal passages|Acute lacrimal canaliculitis of bilateral lacrimal passages +C2875764|T047|PT|H04.333|ICD10CM|Acute lacrimal canaliculitis of bilateral lacrimal passages|Acute lacrimal canaliculitis of bilateral lacrimal passages +C2875765|T047|AB|H04.339|ICD10CM|Acute lacrimal canaliculitis of unspecified lacrimal passage|Acute lacrimal canaliculitis of unspecified lacrimal passage +C2875765|T047|PT|H04.339|ICD10CM|Acute lacrimal canaliculitis of unspecified lacrimal passage|Acute lacrimal canaliculitis of unspecified lacrimal passage +C0155239|T047|HT|H04.4|ICD10CM|Chronic inflammation of lacrimal passages|Chronic inflammation of lacrimal passages +C0155239|T047|AB|H04.4|ICD10CM|Chronic inflammation of lacrimal passages|Chronic inflammation of lacrimal passages +C0155239|T047|PT|H04.4|ICD10|Chronic inflammation of lacrimal passages|Chronic inflammation of lacrimal passages +C0149506|T047|HT|H04.41|ICD10CM|Chronic dacryocystitis|Chronic dacryocystitis +C0149506|T047|AB|H04.41|ICD10CM|Chronic dacryocystitis|Chronic dacryocystitis +C2875766|T047|AB|H04.411|ICD10CM|Chronic dacryocystitis of right lacrimal passage|Chronic dacryocystitis of right lacrimal passage +C2875766|T047|PT|H04.411|ICD10CM|Chronic dacryocystitis of right lacrimal passage|Chronic dacryocystitis of right lacrimal passage +C2875767|T047|AB|H04.412|ICD10CM|Chronic dacryocystitis of left lacrimal passage|Chronic dacryocystitis of left lacrimal passage +C2875767|T047|PT|H04.412|ICD10CM|Chronic dacryocystitis of left lacrimal passage|Chronic dacryocystitis of left lacrimal passage +C2875768|T047|AB|H04.413|ICD10CM|Chronic dacryocystitis of bilateral lacrimal passages|Chronic dacryocystitis of bilateral lacrimal passages +C2875768|T047|PT|H04.413|ICD10CM|Chronic dacryocystitis of bilateral lacrimal passages|Chronic dacryocystitis of bilateral lacrimal passages +C2875769|T047|AB|H04.419|ICD10CM|Chronic dacryocystitis of unspecified lacrimal passage|Chronic dacryocystitis of unspecified lacrimal passage +C2875769|T047|PT|H04.419|ICD10CM|Chronic dacryocystitis of unspecified lacrimal passage|Chronic dacryocystitis of unspecified lacrimal passage +C0155240|T047|HT|H04.42|ICD10CM|Chronic lacrimal canaliculitis|Chronic lacrimal canaliculitis +C0155240|T047|AB|H04.42|ICD10CM|Chronic lacrimal canaliculitis|Chronic lacrimal canaliculitis +C2875770|T047|AB|H04.421|ICD10CM|Chronic lacrimal canaliculitis of right lacrimal passage|Chronic lacrimal canaliculitis of right lacrimal passage +C2875770|T047|PT|H04.421|ICD10CM|Chronic lacrimal canaliculitis of right lacrimal passage|Chronic lacrimal canaliculitis of right lacrimal passage +C2875771|T047|AB|H04.422|ICD10CM|Chronic lacrimal canaliculitis of left lacrimal passage|Chronic lacrimal canaliculitis of left lacrimal passage +C2875771|T047|PT|H04.422|ICD10CM|Chronic lacrimal canaliculitis of left lacrimal passage|Chronic lacrimal canaliculitis of left lacrimal passage +C2875772|T047|AB|H04.423|ICD10CM|Chronic lacrimal canaliculitis of bi lacrimal passages|Chronic lacrimal canaliculitis of bi lacrimal passages +C2875772|T047|PT|H04.423|ICD10CM|Chronic lacrimal canaliculitis of bilateral lacrimal passages|Chronic lacrimal canaliculitis of bilateral lacrimal passages +C2875773|T047|AB|H04.429|ICD10CM|Chronic lacrimal canaliculitis of unsp lacrimal passage|Chronic lacrimal canaliculitis of unsp lacrimal passage +C2875773|T047|PT|H04.429|ICD10CM|Chronic lacrimal canaliculitis of unspecified lacrimal passage|Chronic lacrimal canaliculitis of unspecified lacrimal passage +C2875774|T047|AB|H04.43|ICD10CM|Chronic lacrimal mucocele|Chronic lacrimal mucocele +C2875774|T047|HT|H04.43|ICD10CM|Chronic lacrimal mucocele|Chronic lacrimal mucocele +C2875775|T047|AB|H04.431|ICD10CM|Chronic lacrimal mucocele of right lacrimal passage|Chronic lacrimal mucocele of right lacrimal passage +C2875775|T047|PT|H04.431|ICD10CM|Chronic lacrimal mucocele of right lacrimal passage|Chronic lacrimal mucocele of right lacrimal passage +C2875776|T047|AB|H04.432|ICD10CM|Chronic lacrimal mucocele of left lacrimal passage|Chronic lacrimal mucocele of left lacrimal passage +C2875776|T047|PT|H04.432|ICD10CM|Chronic lacrimal mucocele of left lacrimal passage|Chronic lacrimal mucocele of left lacrimal passage +C2875777|T047|AB|H04.433|ICD10CM|Chronic lacrimal mucocele of bilateral lacrimal passages|Chronic lacrimal mucocele of bilateral lacrimal passages +C2875777|T047|PT|H04.433|ICD10CM|Chronic lacrimal mucocele of bilateral lacrimal passages|Chronic lacrimal mucocele of bilateral lacrimal passages +C2875778|T047|AB|H04.439|ICD10CM|Chronic lacrimal mucocele of unspecified lacrimal passage|Chronic lacrimal mucocele of unspecified lacrimal passage +C2875778|T047|PT|H04.439|ICD10CM|Chronic lacrimal mucocele of unspecified lacrimal passage|Chronic lacrimal mucocele of unspecified lacrimal passage +C0155242|T047|HT|H04.5|ICD10CM|Stenosis and insufficiency of lacrimal passages|Stenosis and insufficiency of lacrimal passages +C0155242|T190|HT|H04.5|ICD10CM|Stenosis and insufficiency of lacrimal passages|Stenosis and insufficiency of lacrimal passages +C0155242|T047|AB|H04.5|ICD10CM|Stenosis and insufficiency of lacrimal passages|Stenosis and insufficiency of lacrimal passages +C0155242|T190|AB|H04.5|ICD10CM|Stenosis and insufficiency of lacrimal passages|Stenosis and insufficiency of lacrimal passages +C0155242|T047|PT|H04.5|ICD10|Stenosis and insufficiency of lacrimal passages|Stenosis and insufficiency of lacrimal passages +C0155242|T190|PT|H04.5|ICD10|Stenosis and insufficiency of lacrimal passages|Stenosis and insufficiency of lacrimal passages +C0155249|T047|HT|H04.51|ICD10CM|Dacryolith|Dacryolith +C0155249|T047|AB|H04.51|ICD10CM|Dacryolith|Dacryolith +C2875779|T047|AB|H04.511|ICD10CM|Dacryolith of right lacrimal passage|Dacryolith of right lacrimal passage +C2875779|T047|PT|H04.511|ICD10CM|Dacryolith of right lacrimal passage|Dacryolith of right lacrimal passage +C2875780|T047|AB|H04.512|ICD10CM|Dacryolith of left lacrimal passage|Dacryolith of left lacrimal passage +C2875780|T047|PT|H04.512|ICD10CM|Dacryolith of left lacrimal passage|Dacryolith of left lacrimal passage +C2875781|T047|AB|H04.513|ICD10CM|Dacryolith of bilateral lacrimal passages|Dacryolith of bilateral lacrimal passages +C2875781|T047|PT|H04.513|ICD10CM|Dacryolith of bilateral lacrimal passages|Dacryolith of bilateral lacrimal passages +C2875782|T047|AB|H04.519|ICD10CM|Dacryolith of unspecified lacrimal passage|Dacryolith of unspecified lacrimal passage +C2875782|T047|PT|H04.519|ICD10CM|Dacryolith of unspecified lacrimal passage|Dacryolith of unspecified lacrimal passage +C0155243|T047|HT|H04.52|ICD10CM|Eversion of lacrimal punctum|Eversion of lacrimal punctum +C0155243|T047|AB|H04.52|ICD10CM|Eversion of lacrimal punctum|Eversion of lacrimal punctum +C2875783|T047|AB|H04.521|ICD10CM|Eversion of right lacrimal punctum|Eversion of right lacrimal punctum +C2875783|T047|PT|H04.521|ICD10CM|Eversion of right lacrimal punctum|Eversion of right lacrimal punctum +C2875784|T047|AB|H04.522|ICD10CM|Eversion of left lacrimal punctum|Eversion of left lacrimal punctum +C2875784|T047|PT|H04.522|ICD10CM|Eversion of left lacrimal punctum|Eversion of left lacrimal punctum +C2875785|T047|AB|H04.523|ICD10CM|Eversion of bilateral lacrimal punctum|Eversion of bilateral lacrimal punctum +C2875785|T047|PT|H04.523|ICD10CM|Eversion of bilateral lacrimal punctum|Eversion of bilateral lacrimal punctum +C2875786|T047|AB|H04.529|ICD10CM|Eversion of unspecified lacrimal punctum|Eversion of unspecified lacrimal punctum +C2875786|T047|PT|H04.529|ICD10CM|Eversion of unspecified lacrimal punctum|Eversion of unspecified lacrimal punctum +C2745960|T047|HT|H04.53|ICD10CM|Neonatal obstruction of nasolacrimal duct|Neonatal obstruction of nasolacrimal duct +C2745960|T047|AB|H04.53|ICD10CM|Neonatal obstruction of nasolacrimal duct|Neonatal obstruction of nasolacrimal duct +C2875787|T047|AB|H04.531|ICD10CM|Neonatal obstruction of right nasolacrimal duct|Neonatal obstruction of right nasolacrimal duct +C2875787|T047|PT|H04.531|ICD10CM|Neonatal obstruction of right nasolacrimal duct|Neonatal obstruction of right nasolacrimal duct +C2875788|T047|AB|H04.532|ICD10CM|Neonatal obstruction of left nasolacrimal duct|Neonatal obstruction of left nasolacrimal duct +C2875788|T047|PT|H04.532|ICD10CM|Neonatal obstruction of left nasolacrimal duct|Neonatal obstruction of left nasolacrimal duct +C2875789|T047|AB|H04.533|ICD10CM|Neonatal obstruction of bilateral nasolacrimal duct|Neonatal obstruction of bilateral nasolacrimal duct +C2875789|T047|PT|H04.533|ICD10CM|Neonatal obstruction of bilateral nasolacrimal duct|Neonatal obstruction of bilateral nasolacrimal duct +C2745960|T047|AB|H04.539|ICD10CM|Neonatal obstruction of unspecified nasolacrimal duct|Neonatal obstruction of unspecified nasolacrimal duct +C2745960|T047|PT|H04.539|ICD10CM|Neonatal obstruction of unspecified nasolacrimal duct|Neonatal obstruction of unspecified nasolacrimal duct +C0155245|T190|HT|H04.54|ICD10CM|Stenosis of lacrimal canaliculi|Stenosis of lacrimal canaliculi +C0155245|T190|AB|H04.54|ICD10CM|Stenosis of lacrimal canaliculi|Stenosis of lacrimal canaliculi +C2875790|T046|AB|H04.541|ICD10CM|Stenosis of right lacrimal canaliculi|Stenosis of right lacrimal canaliculi +C2875790|T046|PT|H04.541|ICD10CM|Stenosis of right lacrimal canaliculi|Stenosis of right lacrimal canaliculi +C2875791|T046|AB|H04.542|ICD10CM|Stenosis of left lacrimal canaliculi|Stenosis of left lacrimal canaliculi +C2875791|T046|PT|H04.542|ICD10CM|Stenosis of left lacrimal canaliculi|Stenosis of left lacrimal canaliculi +C2875792|T046|PT|H04.543|ICD10CM|Stenosis of bilateral lacrimal canaliculi|Stenosis of bilateral lacrimal canaliculi +C2875792|T046|AB|H04.543|ICD10CM|Stenosis of bilateral lacrimal canaliculi|Stenosis of bilateral lacrimal canaliculi +C0155245|T190|AB|H04.549|ICD10CM|Stenosis of unspecified lacrimal canaliculi|Stenosis of unspecified lacrimal canaliculi +C0155245|T190|PT|H04.549|ICD10CM|Stenosis of unspecified lacrimal canaliculi|Stenosis of unspecified lacrimal canaliculi +C0155248|T020|HT|H04.55|ICD10CM|Acquired stenosis of nasolacrimal duct|Acquired stenosis of nasolacrimal duct +C0155248|T020|AB|H04.55|ICD10CM|Acquired stenosis of nasolacrimal duct|Acquired stenosis of nasolacrimal duct +C2875793|T046|PT|H04.551|ICD10CM|Acquired stenosis of right nasolacrimal duct|Acquired stenosis of right nasolacrimal duct +C2875793|T046|AB|H04.551|ICD10CM|Acquired stenosis of right nasolacrimal duct|Acquired stenosis of right nasolacrimal duct +C2875794|T046|PT|H04.552|ICD10CM|Acquired stenosis of left nasolacrimal duct|Acquired stenosis of left nasolacrimal duct +C2875794|T046|AB|H04.552|ICD10CM|Acquired stenosis of left nasolacrimal duct|Acquired stenosis of left nasolacrimal duct +C2875795|T020|AB|H04.553|ICD10CM|Acquired stenosis of bilateral nasolacrimal duct|Acquired stenosis of bilateral nasolacrimal duct +C2875795|T020|PT|H04.553|ICD10CM|Acquired stenosis of bilateral nasolacrimal duct|Acquired stenosis of bilateral nasolacrimal duct +C2875796|T020|AB|H04.559|ICD10CM|Acquired stenosis of unspecified nasolacrimal duct|Acquired stenosis of unspecified nasolacrimal duct +C2875796|T020|PT|H04.559|ICD10CM|Acquired stenosis of unspecified nasolacrimal duct|Acquired stenosis of unspecified nasolacrimal duct +C0155244|T047|HT|H04.56|ICD10CM|Stenosis of lacrimal punctum|Stenosis of lacrimal punctum +C0155244|T047|AB|H04.56|ICD10CM|Stenosis of lacrimal punctum|Stenosis of lacrimal punctum +C2875797|T047|AB|H04.561|ICD10CM|Stenosis of right lacrimal punctum|Stenosis of right lacrimal punctum +C2875797|T047|PT|H04.561|ICD10CM|Stenosis of right lacrimal punctum|Stenosis of right lacrimal punctum +C2875798|T047|AB|H04.562|ICD10CM|Stenosis of left lacrimal punctum|Stenosis of left lacrimal punctum +C2875798|T190|AB|H04.562|ICD10CM|Stenosis of left lacrimal punctum|Stenosis of left lacrimal punctum +C2875798|T047|PT|H04.562|ICD10CM|Stenosis of left lacrimal punctum|Stenosis of left lacrimal punctum +C2875798|T190|PT|H04.562|ICD10CM|Stenosis of left lacrimal punctum|Stenosis of left lacrimal punctum +C2875799|T047|AB|H04.563|ICD10CM|Stenosis of bilateral lacrimal punctum|Stenosis of bilateral lacrimal punctum +C2875799|T190|AB|H04.563|ICD10CM|Stenosis of bilateral lacrimal punctum|Stenosis of bilateral lacrimal punctum +C2875799|T047|PT|H04.563|ICD10CM|Stenosis of bilateral lacrimal punctum|Stenosis of bilateral lacrimal punctum +C2875799|T190|PT|H04.563|ICD10CM|Stenosis of bilateral lacrimal punctum|Stenosis of bilateral lacrimal punctum +C2875800|T047|AB|H04.569|ICD10CM|Stenosis of unspecified lacrimal punctum|Stenosis of unspecified lacrimal punctum +C2875800|T047|PT|H04.569|ICD10CM|Stenosis of unspecified lacrimal punctum|Stenosis of unspecified lacrimal punctum +C0155246|T190|HT|H04.57|ICD10CM|Stenosis of lacrimal sac|Stenosis of lacrimal sac +C0155246|T190|AB|H04.57|ICD10CM|Stenosis of lacrimal sac|Stenosis of lacrimal sac +C2875801|T190|AB|H04.571|ICD10CM|Stenosis of right lacrimal sac|Stenosis of right lacrimal sac +C2875801|T190|PT|H04.571|ICD10CM|Stenosis of right lacrimal sac|Stenosis of right lacrimal sac +C2875802|T190|AB|H04.572|ICD10CM|Stenosis of left lacrimal sac|Stenosis of left lacrimal sac +C2875802|T190|PT|H04.572|ICD10CM|Stenosis of left lacrimal sac|Stenosis of left lacrimal sac +C2875803|T190|AB|H04.573|ICD10CM|Stenosis of bilateral lacrimal sac|Stenosis of bilateral lacrimal sac +C2875803|T190|PT|H04.573|ICD10CM|Stenosis of bilateral lacrimal sac|Stenosis of bilateral lacrimal sac +C0155246|T190|AB|H04.579|ICD10CM|Stenosis of unspecified lacrimal sac|Stenosis of unspecified lacrimal sac +C0155246|T190|PT|H04.579|ICD10CM|Stenosis of unspecified lacrimal sac|Stenosis of unspecified lacrimal sac +C0155250|T020|PT|H04.6|ICD10|Other changes in lacrimal passages|Other changes in lacrimal passages +C0155250|T020|HT|H04.6|ICD10CM|Other changes of lacrimal passages|Other changes of lacrimal passages +C0155250|T020|AB|H04.6|ICD10CM|Other changes of lacrimal passages|Other changes of lacrimal passages +C0155251|T190|HT|H04.61|ICD10CM|Lacrimal fistula|Lacrimal fistula +C0155251|T190|AB|H04.61|ICD10CM|Lacrimal fistula|Lacrimal fistula +C2875804|T190|AB|H04.611|ICD10CM|Lacrimal fistula right lacrimal passage|Lacrimal fistula right lacrimal passage +C2875804|T190|PT|H04.611|ICD10CM|Lacrimal fistula right lacrimal passage|Lacrimal fistula right lacrimal passage +C2875805|T190|AB|H04.612|ICD10CM|Lacrimal fistula left lacrimal passage|Lacrimal fistula left lacrimal passage +C2875805|T190|PT|H04.612|ICD10CM|Lacrimal fistula left lacrimal passage|Lacrimal fistula left lacrimal passage +C2875806|T190|AB|H04.613|ICD10CM|Lacrimal fistula bilateral lacrimal passages|Lacrimal fistula bilateral lacrimal passages +C2875806|T190|PT|H04.613|ICD10CM|Lacrimal fistula bilateral lacrimal passages|Lacrimal fistula bilateral lacrimal passages +C2875807|T190|AB|H04.619|ICD10CM|Lacrimal fistula unspecified lacrimal passage|Lacrimal fistula unspecified lacrimal passage +C2875807|T190|PT|H04.619|ICD10CM|Lacrimal fistula unspecified lacrimal passage|Lacrimal fistula unspecified lacrimal passage +C0155250|T020|AB|H04.69|ICD10CM|Other changes of lacrimal passages|Other changes of lacrimal passages +C0155250|T020|PT|H04.69|ICD10CM|Other changes of lacrimal passages|Other changes of lacrimal passages +C0155252|T047|HT|H04.8|ICD10CM|Other disorders of lacrimal system|Other disorders of lacrimal system +C0155252|T047|AB|H04.8|ICD10CM|Other disorders of lacrimal system|Other disorders of lacrimal system +C0155252|T047|PT|H04.8|ICD10|Other disorders of lacrimal system|Other disorders of lacrimal system +C0155253|T047|HT|H04.81|ICD10CM|Granuloma of lacrimal passages|Granuloma of lacrimal passages +C0155253|T047|AB|H04.81|ICD10CM|Granuloma of lacrimal passages|Granuloma of lacrimal passages +C2875808|T047|AB|H04.811|ICD10CM|Granuloma of right lacrimal passage|Granuloma of right lacrimal passage +C2875808|T047|PT|H04.811|ICD10CM|Granuloma of right lacrimal passage|Granuloma of right lacrimal passage +C2875809|T047|AB|H04.812|ICD10CM|Granuloma of left lacrimal passage|Granuloma of left lacrimal passage +C2875809|T047|PT|H04.812|ICD10CM|Granuloma of left lacrimal passage|Granuloma of left lacrimal passage +C2875810|T047|AB|H04.813|ICD10CM|Granuloma of bilateral lacrimal passages|Granuloma of bilateral lacrimal passages +C2875810|T047|PT|H04.813|ICD10CM|Granuloma of bilateral lacrimal passages|Granuloma of bilateral lacrimal passages +C2875811|T047|AB|H04.819|ICD10CM|Granuloma of unspecified lacrimal passage|Granuloma of unspecified lacrimal passage +C2875811|T047|PT|H04.819|ICD10CM|Granuloma of unspecified lacrimal passage|Granuloma of unspecified lacrimal passage +C0155252|T047|PT|H04.89|ICD10CM|Other disorders of lacrimal system|Other disorders of lacrimal system +C0155252|T047|AB|H04.89|ICD10CM|Other disorders of lacrimal system|Other disorders of lacrimal system +C0022904|T047|PT|H04.9|ICD10|Disorder of lacrimal system, unspecified|Disorder of lacrimal system, unspecified +C0022904|T047|PT|H04.9|ICD10CM|Disorder of lacrimal system, unspecified|Disorder of lacrimal system, unspecified +C0022904|T047|AB|H04.9|ICD10CM|Disorder of lacrimal system, unspecified|Disorder of lacrimal system, unspecified +C0029182|T047|AB|H05|ICD10CM|Disorders of orbit|Disorders of orbit +C0029182|T047|HT|H05|ICD10CM|Disorders of orbit|Disorders of orbit +C0029182|T047|HT|H05|ICD10|Disorders of orbit|Disorders of orbit +C0155256|T033|PT|H05.0|ICD10|Acute inflammation of orbit|Acute inflammation of orbit +C0155256|T033|HT|H05.0|ICD10CM|Acute inflammation of orbit|Acute inflammation of orbit +C0155256|T033|AB|H05.0|ICD10CM|Acute inflammation of orbit|Acute inflammation of orbit +C0155256|T033|AB|H05.00|ICD10CM|Unspecified acute inflammation of orbit|Unspecified acute inflammation of orbit +C0155256|T033|PT|H05.00|ICD10CM|Unspecified acute inflammation of orbit|Unspecified acute inflammation of orbit +C0271331|T047|ET|H05.01|ICD10CM|Abscess of orbit|Abscess of orbit +C0149507|T047|AB|H05.01|ICD10CM|Cellulitis of orbit|Cellulitis of orbit +C0149507|T047|HT|H05.01|ICD10CM|Cellulitis of orbit|Cellulitis of orbit +C2875812|T047|PT|H05.011|ICD10CM|Cellulitis of right orbit|Cellulitis of right orbit +C2875812|T047|AB|H05.011|ICD10CM|Cellulitis of right orbit|Cellulitis of right orbit +C2875813|T047|PT|H05.012|ICD10CM|Cellulitis of left orbit|Cellulitis of left orbit +C2875813|T047|AB|H05.012|ICD10CM|Cellulitis of left orbit|Cellulitis of left orbit +C2875814|T047|PT|H05.013|ICD10CM|Cellulitis of bilateral orbits|Cellulitis of bilateral orbits +C2875814|T047|AB|H05.013|ICD10CM|Cellulitis of bilateral orbits|Cellulitis of bilateral orbits +C2875815|T047|AB|H05.019|ICD10CM|Cellulitis of unspecified orbit|Cellulitis of unspecified orbit +C2875815|T047|PT|H05.019|ICD10CM|Cellulitis of unspecified orbit|Cellulitis of unspecified orbit +C0155258|T047|AB|H05.02|ICD10CM|Osteomyelitis of orbit|Osteomyelitis of orbit +C0155258|T047|HT|H05.02|ICD10CM|Osteomyelitis of orbit|Osteomyelitis of orbit +C2875816|T047|AB|H05.021|ICD10CM|Osteomyelitis of right orbit|Osteomyelitis of right orbit +C2875816|T047|PT|H05.021|ICD10CM|Osteomyelitis of right orbit|Osteomyelitis of right orbit +C2875817|T047|AB|H05.022|ICD10CM|Osteomyelitis of left orbit|Osteomyelitis of left orbit +C2875817|T047|PT|H05.022|ICD10CM|Osteomyelitis of left orbit|Osteomyelitis of left orbit +C2875818|T047|AB|H05.023|ICD10CM|Osteomyelitis of bilateral orbits|Osteomyelitis of bilateral orbits +C2875818|T047|PT|H05.023|ICD10CM|Osteomyelitis of bilateral orbits|Osteomyelitis of bilateral orbits +C2875819|T047|AB|H05.029|ICD10CM|Osteomyelitis of unspecified orbit|Osteomyelitis of unspecified orbit +C2875819|T047|PT|H05.029|ICD10CM|Osteomyelitis of unspecified orbit|Osteomyelitis of unspecified orbit +C0155257|T047|AB|H05.03|ICD10CM|Periostitis of orbit|Periostitis of orbit +C0155257|T047|HT|H05.03|ICD10CM|Periostitis of orbit|Periostitis of orbit +C2875820|T047|AB|H05.031|ICD10CM|Periostitis of right orbit|Periostitis of right orbit +C2875820|T047|PT|H05.031|ICD10CM|Periostitis of right orbit|Periostitis of right orbit +C2875821|T047|AB|H05.032|ICD10CM|Periostitis of left orbit|Periostitis of left orbit +C2875821|T047|PT|H05.032|ICD10CM|Periostitis of left orbit|Periostitis of left orbit +C2875822|T047|AB|H05.033|ICD10CM|Periostitis of bilateral orbits|Periostitis of bilateral orbits +C2875822|T047|PT|H05.033|ICD10CM|Periostitis of bilateral orbits|Periostitis of bilateral orbits +C2875823|T047|AB|H05.039|ICD10CM|Periostitis of unspecified orbit|Periostitis of unspecified orbit +C2875823|T047|PT|H05.039|ICD10CM|Periostitis of unspecified orbit|Periostitis of unspecified orbit +C2875824|T033|AB|H05.04|ICD10CM|Tenonitis of orbit|Tenonitis of orbit +C2875824|T033|HT|H05.04|ICD10CM|Tenonitis of orbit|Tenonitis of orbit +C2875825|T033|AB|H05.041|ICD10CM|Tenonitis of right orbit|Tenonitis of right orbit +C2875825|T033|PT|H05.041|ICD10CM|Tenonitis of right orbit|Tenonitis of right orbit +C2875826|T033|AB|H05.042|ICD10CM|Tenonitis of left orbit|Tenonitis of left orbit +C2875826|T033|PT|H05.042|ICD10CM|Tenonitis of left orbit|Tenonitis of left orbit +C2875827|T033|AB|H05.043|ICD10CM|Tenonitis of bilateral orbits|Tenonitis of bilateral orbits +C2875827|T033|PT|H05.043|ICD10CM|Tenonitis of bilateral orbits|Tenonitis of bilateral orbits +C2875828|T033|AB|H05.049|ICD10CM|Tenonitis of unspecified orbit|Tenonitis of unspecified orbit +C2875828|T033|PT|H05.049|ICD10CM|Tenonitis of unspecified orbit|Tenonitis of unspecified orbit +C0155261|T047|HT|H05.1|ICD10CM|Chronic inflammatory disorders of orbit|Chronic inflammatory disorders of orbit +C0155261|T047|AB|H05.1|ICD10CM|Chronic inflammatory disorders of orbit|Chronic inflammatory disorders of orbit +C0155261|T047|PT|H05.1|ICD10|Chronic inflammatory disorders of orbit|Chronic inflammatory disorders of orbit +C2875829|T047|AB|H05.10|ICD10CM|Unspecified chronic inflammatory disorders of orbit|Unspecified chronic inflammatory disorders of orbit +C2875829|T047|PT|H05.10|ICD10CM|Unspecified chronic inflammatory disorders of orbit|Unspecified chronic inflammatory disorders of orbit +C0155262|T047|AB|H05.11|ICD10CM|Granuloma of orbit|Granuloma of orbit +C0155262|T047|HT|H05.11|ICD10CM|Granuloma of orbit|Granuloma of orbit +C0085270|T047|ET|H05.11|ICD10CM|Pseudotumor (inflammatory) of orbit|Pseudotumor (inflammatory) of orbit +C2875830|T047|AB|H05.111|ICD10CM|Granuloma of right orbit|Granuloma of right orbit +C2875830|T047|PT|H05.111|ICD10CM|Granuloma of right orbit|Granuloma of right orbit +C2875831|T047|AB|H05.112|ICD10CM|Granuloma of left orbit|Granuloma of left orbit +C2875831|T047|PT|H05.112|ICD10CM|Granuloma of left orbit|Granuloma of left orbit +C2875832|T047|AB|H05.113|ICD10CM|Granuloma of bilateral orbits|Granuloma of bilateral orbits +C2875832|T047|PT|H05.113|ICD10CM|Granuloma of bilateral orbits|Granuloma of bilateral orbits +C2875833|T047|AB|H05.119|ICD10CM|Granuloma of unspecified orbit|Granuloma of unspecified orbit +C2875833|T047|PT|H05.119|ICD10CM|Granuloma of unspecified orbit|Granuloma of unspecified orbit +C2350476|T047|HT|H05.12|ICD10CM|Orbital myositis|Orbital myositis +C2350476|T047|AB|H05.12|ICD10CM|Orbital myositis|Orbital myositis +C2875834|T047|AB|H05.121|ICD10CM|Orbital myositis, right orbit|Orbital myositis, right orbit +C2875834|T047|PT|H05.121|ICD10CM|Orbital myositis, right orbit|Orbital myositis, right orbit +C2875835|T047|AB|H05.122|ICD10CM|Orbital myositis, left orbit|Orbital myositis, left orbit +C2875835|T047|PT|H05.122|ICD10CM|Orbital myositis, left orbit|Orbital myositis, left orbit +C2875836|T047|AB|H05.123|ICD10CM|Orbital myositis, bilateral|Orbital myositis, bilateral +C2875836|T047|PT|H05.123|ICD10CM|Orbital myositis, bilateral|Orbital myositis, bilateral +C2875837|T047|AB|H05.129|ICD10CM|Orbital myositis, unspecified orbit|Orbital myositis, unspecified orbit +C2875837|T047|PT|H05.129|ICD10CM|Orbital myositis, unspecified orbit|Orbital myositis, unspecified orbit +C0494520|T047|HT|H05.2|ICD10CM|Exophthalmic conditions|Exophthalmic conditions +C0494520|T047|AB|H05.2|ICD10CM|Exophthalmic conditions|Exophthalmic conditions +C0494520|T047|PT|H05.2|ICD10|Exophthalmic conditions|Exophthalmic conditions +C0015300|T047|AB|H05.20|ICD10CM|Unspecified exophthalmos|Unspecified exophthalmos +C0015300|T047|PT|H05.20|ICD10CM|Unspecified exophthalmos|Unspecified exophthalmos +C0155272|T047|AB|H05.21|ICD10CM|Displacement (lateral) of globe|Displacement (lateral) of globe +C0155272|T047|HT|H05.21|ICD10CM|Displacement (lateral) of globe|Displacement (lateral) of globe +C2069932|T033|AB|H05.211|ICD10CM|Displacement (lateral) of globe, right eye|Displacement (lateral) of globe, right eye +C2069932|T033|PT|H05.211|ICD10CM|Displacement (lateral) of globe, right eye|Displacement (lateral) of globe, right eye +C2069933|T033|AB|H05.212|ICD10CM|Displacement (lateral) of globe, left eye|Displacement (lateral) of globe, left eye +C2069933|T033|PT|H05.212|ICD10CM|Displacement (lateral) of globe, left eye|Displacement (lateral) of globe, left eye +C2875840|T047|AB|H05.213|ICD10CM|Displacement (lateral) of globe, bilateral|Displacement (lateral) of globe, bilateral +C2875840|T047|PT|H05.213|ICD10CM|Displacement (lateral) of globe, bilateral|Displacement (lateral) of globe, bilateral +C2875841|T047|AB|H05.219|ICD10CM|Displacement (lateral) of globe, unspecified eye|Displacement (lateral) of globe, unspecified eye +C2875841|T047|PT|H05.219|ICD10CM|Displacement (lateral) of globe, unspecified eye|Displacement (lateral) of globe, unspecified eye +C0424813|T046|AB|H05.22|ICD10CM|Edema of orbit|Edema of orbit +C0424813|T046|HT|H05.22|ICD10CM|Edema of orbit|Edema of orbit +C0271335|T047|ET|H05.22|ICD10CM|Orbital congestion|Orbital congestion +C2875842|T046|AB|H05.221|ICD10CM|Edema of right orbit|Edema of right orbit +C2875842|T046|PT|H05.221|ICD10CM|Edema of right orbit|Edema of right orbit +C2875843|T046|AB|H05.222|ICD10CM|Edema of left orbit|Edema of left orbit +C2875843|T046|PT|H05.222|ICD10CM|Edema of left orbit|Edema of left orbit +C2875844|T046|AB|H05.223|ICD10CM|Edema of bilateral orbit|Edema of bilateral orbit +C2875844|T046|PT|H05.223|ICD10CM|Edema of bilateral orbit|Edema of bilateral orbit +C0424813|T046|AB|H05.229|ICD10CM|Edema of unspecified orbit|Edema of unspecified orbit +C0424813|T046|PT|H05.229|ICD10CM|Edema of unspecified orbit|Edema of unspecified orbit +C0155268|T046|AB|H05.23|ICD10CM|Hemorrhage of orbit|Hemorrhage of orbit +C0155268|T046|HT|H05.23|ICD10CM|Hemorrhage of orbit|Hemorrhage of orbit +C2875845|T046|PT|H05.231|ICD10CM|Hemorrhage of right orbit|Hemorrhage of right orbit +C2875845|T046|AB|H05.231|ICD10CM|Hemorrhage of right orbit|Hemorrhage of right orbit +C2875846|T046|PT|H05.232|ICD10CM|Hemorrhage of left orbit|Hemorrhage of left orbit +C2875846|T046|AB|H05.232|ICD10CM|Hemorrhage of left orbit|Hemorrhage of left orbit +C2875847|T046|AB|H05.233|ICD10CM|Hemorrhage of bilateral orbit|Hemorrhage of bilateral orbit +C2875847|T046|PT|H05.233|ICD10CM|Hemorrhage of bilateral orbit|Hemorrhage of bilateral orbit +C0155268|T046|AB|H05.239|ICD10CM|Hemorrhage of unspecified orbit|Hemorrhage of unspecified orbit +C0155268|T046|PT|H05.239|ICD10CM|Hemorrhage of unspecified orbit|Hemorrhage of unspecified orbit +C0155267|T047|HT|H05.24|ICD10CM|Constant exophthalmos|Constant exophthalmos +C0155267|T047|AB|H05.24|ICD10CM|Constant exophthalmos|Constant exophthalmos +C2875848|T047|AB|H05.241|ICD10CM|Constant exophthalmos, right eye|Constant exophthalmos, right eye +C2875848|T047|PT|H05.241|ICD10CM|Constant exophthalmos, right eye|Constant exophthalmos, right eye +C2875849|T047|AB|H05.242|ICD10CM|Constant exophthalmos, left eye|Constant exophthalmos, left eye +C2875849|T047|PT|H05.242|ICD10CM|Constant exophthalmos, left eye|Constant exophthalmos, left eye +C2875850|T047|AB|H05.243|ICD10CM|Constant exophthalmos, bilateral|Constant exophthalmos, bilateral +C2875850|T047|PT|H05.243|ICD10CM|Constant exophthalmos, bilateral|Constant exophthalmos, bilateral +C2875851|T047|AB|H05.249|ICD10CM|Constant exophthalmos, unspecified eye|Constant exophthalmos, unspecified eye +C2875851|T047|PT|H05.249|ICD10CM|Constant exophthalmos, unspecified eye|Constant exophthalmos, unspecified eye +C0155270|T047|HT|H05.25|ICD10CM|Intermittent exophthalmos|Intermittent exophthalmos +C0155270|T047|AB|H05.25|ICD10CM|Intermittent exophthalmos|Intermittent exophthalmos +C2875852|T047|AB|H05.251|ICD10CM|Intermittent exophthalmos, right eye|Intermittent exophthalmos, right eye +C2875852|T047|PT|H05.251|ICD10CM|Intermittent exophthalmos, right eye|Intermittent exophthalmos, right eye +C2875853|T047|AB|H05.252|ICD10CM|Intermittent exophthalmos, left eye|Intermittent exophthalmos, left eye +C2875853|T047|PT|H05.252|ICD10CM|Intermittent exophthalmos, left eye|Intermittent exophthalmos, left eye +C2875854|T047|AB|H05.253|ICD10CM|Intermittent exophthalmos, bilateral|Intermittent exophthalmos, bilateral +C2875854|T047|PT|H05.253|ICD10CM|Intermittent exophthalmos, bilateral|Intermittent exophthalmos, bilateral +C2875855|T047|AB|H05.259|ICD10CM|Intermittent exophthalmos, unspecified eye|Intermittent exophthalmos, unspecified eye +C2875855|T047|PT|H05.259|ICD10CM|Intermittent exophthalmos, unspecified eye|Intermittent exophthalmos, unspecified eye +C0155271|T047|HT|H05.26|ICD10CM|Pulsating exophthalmos|Pulsating exophthalmos +C0155271|T047|AB|H05.26|ICD10CM|Pulsating exophthalmos|Pulsating exophthalmos +C2875856|T047|AB|H05.261|ICD10CM|Pulsating exophthalmos, right eye|Pulsating exophthalmos, right eye +C2875856|T047|PT|H05.261|ICD10CM|Pulsating exophthalmos, right eye|Pulsating exophthalmos, right eye +C2875857|T047|AB|H05.262|ICD10CM|Pulsating exophthalmos, left eye|Pulsating exophthalmos, left eye +C2875857|T047|PT|H05.262|ICD10CM|Pulsating exophthalmos, left eye|Pulsating exophthalmos, left eye +C2875858|T047|AB|H05.263|ICD10CM|Pulsating exophthalmos, bilateral|Pulsating exophthalmos, bilateral +C2875858|T047|PT|H05.263|ICD10CM|Pulsating exophthalmos, bilateral|Pulsating exophthalmos, bilateral +C2875859|T047|AB|H05.269|ICD10CM|Pulsating exophthalmos, unspecified eye|Pulsating exophthalmos, unspecified eye +C2875859|T047|PT|H05.269|ICD10CM|Pulsating exophthalmos, unspecified eye|Pulsating exophthalmos, unspecified eye +C0162019|T190|HT|H05.3|ICD10CM|Deformity of orbit|Deformity of orbit +C0162019|T190|AB|H05.3|ICD10CM|Deformity of orbit|Deformity of orbit +C0162019|T190|PT|H05.3|ICD10|Deformity of orbit|Deformity of orbit +C0162019|T190|AB|H05.30|ICD10CM|Unspecified deformity of orbit|Unspecified deformity of orbit +C0162019|T190|PT|H05.30|ICD10CM|Unspecified deformity of orbit|Unspecified deformity of orbit +C0155278|T046|HT|H05.31|ICD10CM|Atrophy of orbit|Atrophy of orbit +C0155278|T046|AB|H05.31|ICD10CM|Atrophy of orbit|Atrophy of orbit +C2875860|T046|AB|H05.311|ICD10CM|Atrophy of right orbit|Atrophy of right orbit +C2875860|T046|PT|H05.311|ICD10CM|Atrophy of right orbit|Atrophy of right orbit +C2875861|T046|AB|H05.312|ICD10CM|Atrophy of left orbit|Atrophy of left orbit +C2875861|T046|PT|H05.312|ICD10CM|Atrophy of left orbit|Atrophy of left orbit +C2875862|T046|AB|H05.313|ICD10CM|Atrophy of bilateral orbit|Atrophy of bilateral orbit +C2875862|T046|PT|H05.313|ICD10CM|Atrophy of bilateral orbit|Atrophy of bilateral orbit +C0155278|T046|AB|H05.319|ICD10CM|Atrophy of unspecified orbit|Atrophy of unspecified orbit +C0155278|T046|PT|H05.319|ICD10CM|Atrophy of unspecified orbit|Atrophy of unspecified orbit +C2875863|T190|AB|H05.32|ICD10CM|Deformity of orbit due to bone disease|Deformity of orbit due to bone disease +C2875863|T190|HT|H05.32|ICD10CM|Deformity of orbit due to bone disease|Deformity of orbit due to bone disease +C2875864|T190|AB|H05.321|ICD10CM|Deformity of right orbit due to bone disease|Deformity of right orbit due to bone disease +C2875864|T190|PT|H05.321|ICD10CM|Deformity of right orbit due to bone disease|Deformity of right orbit due to bone disease +C2875865|T190|AB|H05.322|ICD10CM|Deformity of left orbit due to bone disease|Deformity of left orbit due to bone disease +C2875865|T190|PT|H05.322|ICD10CM|Deformity of left orbit due to bone disease|Deformity of left orbit due to bone disease +C2875866|T190|AB|H05.323|ICD10CM|Deformity of bilateral orbits due to bone disease|Deformity of bilateral orbits due to bone disease +C2875866|T190|PT|H05.323|ICD10CM|Deformity of bilateral orbits due to bone disease|Deformity of bilateral orbits due to bone disease +C2875867|T190|AB|H05.329|ICD10CM|Deformity of unspecified orbit due to bone disease|Deformity of unspecified orbit due to bone disease +C2875867|T190|PT|H05.329|ICD10CM|Deformity of unspecified orbit due to bone disease|Deformity of unspecified orbit due to bone disease +C0155280|T020|HT|H05.33|ICD10CM|Deformity of orbit due to trauma or surgery|Deformity of orbit due to trauma or surgery +C0155280|T020|AB|H05.33|ICD10CM|Deformity of orbit due to trauma or surgery|Deformity of orbit due to trauma or surgery +C2875868|T020|AB|H05.331|ICD10CM|Deformity of right orbit due to trauma or surgery|Deformity of right orbit due to trauma or surgery +C2875868|T020|PT|H05.331|ICD10CM|Deformity of right orbit due to trauma or surgery|Deformity of right orbit due to trauma or surgery +C2875869|T020|AB|H05.332|ICD10CM|Deformity of left orbit due to trauma or surgery|Deformity of left orbit due to trauma or surgery +C2875869|T020|PT|H05.332|ICD10CM|Deformity of left orbit due to trauma or surgery|Deformity of left orbit due to trauma or surgery +C2875870|T020|AB|H05.333|ICD10CM|Deformity of bilateral orbits due to trauma or surgery|Deformity of bilateral orbits due to trauma or surgery +C2875870|T020|PT|H05.333|ICD10CM|Deformity of bilateral orbits due to trauma or surgery|Deformity of bilateral orbits due to trauma or surgery +C2875871|T020|AB|H05.339|ICD10CM|Deformity of unspecified orbit due to trauma or surgery|Deformity of unspecified orbit due to trauma or surgery +C2875871|T020|PT|H05.339|ICD10CM|Deformity of unspecified orbit due to trauma or surgery|Deformity of unspecified orbit due to trauma or surgery +C0155279|T047|HT|H05.34|ICD10CM|Enlargement of orbit|Enlargement of orbit +C0155279|T047|AB|H05.34|ICD10CM|Enlargement of orbit|Enlargement of orbit +C2875872|T046|AB|H05.341|ICD10CM|Enlargement of right orbit|Enlargement of right orbit +C2875872|T046|PT|H05.341|ICD10CM|Enlargement of right orbit|Enlargement of right orbit +C2875873|T046|AB|H05.342|ICD10CM|Enlargement of left orbit|Enlargement of left orbit +C2875873|T046|PT|H05.342|ICD10CM|Enlargement of left orbit|Enlargement of left orbit +C2875874|T046|AB|H05.343|ICD10CM|Enlargement of bilateral orbits|Enlargement of bilateral orbits +C2875874|T046|PT|H05.343|ICD10CM|Enlargement of bilateral orbits|Enlargement of bilateral orbits +C2875875|T046|AB|H05.349|ICD10CM|Enlargement of unspecified orbit|Enlargement of unspecified orbit +C2875875|T046|PT|H05.349|ICD10CM|Enlargement of unspecified orbit|Enlargement of unspecified orbit +C0155275|T047|HT|H05.35|ICD10CM|Exostosis of orbit|Exostosis of orbit +C0155275|T047|AB|H05.35|ICD10CM|Exostosis of orbit|Exostosis of orbit +C2875876|T047|AB|H05.351|ICD10CM|Exostosis of right orbit|Exostosis of right orbit +C2875876|T047|PT|H05.351|ICD10CM|Exostosis of right orbit|Exostosis of right orbit +C2875877|T047|AB|H05.352|ICD10CM|Exostosis of left orbit|Exostosis of left orbit +C2875877|T047|PT|H05.352|ICD10CM|Exostosis of left orbit|Exostosis of left orbit +C2875878|T047|AB|H05.353|ICD10CM|Exostosis of bilateral orbits|Exostosis of bilateral orbits +C2875878|T047|PT|H05.353|ICD10CM|Exostosis of bilateral orbits|Exostosis of bilateral orbits +C2875879|T047|AB|H05.359|ICD10CM|Exostosis of unspecified orbit|Exostosis of unspecified orbit +C2875879|T047|PT|H05.359|ICD10CM|Exostosis of unspecified orbit|Exostosis of unspecified orbit +C0014306|T047|HT|H05.4|ICD10CM|Enophthalmos|Enophthalmos +C0014306|T047|AB|H05.4|ICD10CM|Enophthalmos|Enophthalmos +C0014306|T047|PT|H05.4|ICD10|Enophthalmos|Enophthalmos +C0014306|T047|AB|H05.40|ICD10CM|Unspecified enophthalmos|Unspecified enophthalmos +C0014306|T047|HT|H05.40|ICD10CM|Unspecified enophthalmos|Unspecified enophthalmos +C2069884|T047|AB|H05.401|ICD10CM|Unspecified enophthalmos, right eye|Unspecified enophthalmos, right eye +C2069884|T047|PT|H05.401|ICD10CM|Unspecified enophthalmos, right eye|Unspecified enophthalmos, right eye +C2069885|T047|AB|H05.402|ICD10CM|Unspecified enophthalmos, left eye|Unspecified enophthalmos, left eye +C2069885|T047|PT|H05.402|ICD10CM|Unspecified enophthalmos, left eye|Unspecified enophthalmos, left eye +C2875880|T047|AB|H05.403|ICD10CM|Unspecified enophthalmos, bilateral|Unspecified enophthalmos, bilateral +C2875880|T047|PT|H05.403|ICD10CM|Unspecified enophthalmos, bilateral|Unspecified enophthalmos, bilateral +C2875881|T047|AB|H05.409|ICD10CM|Unspecified enophthalmos, unspecified eye|Unspecified enophthalmos, unspecified eye +C2875881|T047|PT|H05.409|ICD10CM|Unspecified enophthalmos, unspecified eye|Unspecified enophthalmos, unspecified eye +C0155281|T047|HT|H05.41|ICD10CM|Enophthalmos due to atrophy of orbital tissue|Enophthalmos due to atrophy of orbital tissue +C0155281|T047|AB|H05.41|ICD10CM|Enophthalmos due to atrophy of orbital tissue|Enophthalmos due to atrophy of orbital tissue +C2228116|T047|AB|H05.411|ICD10CM|Enophthalmos due to atrophy of orbital tissue, right eye|Enophthalmos due to atrophy of orbital tissue, right eye +C2228116|T047|PT|H05.411|ICD10CM|Enophthalmos due to atrophy of orbital tissue, right eye|Enophthalmos due to atrophy of orbital tissue, right eye +C2228115|T047|AB|H05.412|ICD10CM|Enophthalmos due to atrophy of orbital tissue, left eye|Enophthalmos due to atrophy of orbital tissue, left eye +C2228115|T047|PT|H05.412|ICD10CM|Enophthalmos due to atrophy of orbital tissue, left eye|Enophthalmos due to atrophy of orbital tissue, left eye +C2875882|T047|AB|H05.413|ICD10CM|Enophthalmos due to atrophy of orbital tissue, bilateral|Enophthalmos due to atrophy of orbital tissue, bilateral +C2875882|T047|PT|H05.413|ICD10CM|Enophthalmos due to atrophy of orbital tissue, bilateral|Enophthalmos due to atrophy of orbital tissue, bilateral +C2875883|T047|AB|H05.419|ICD10CM|Enophthalmos due to atrophy of orbital tissue, unsp eye|Enophthalmos due to atrophy of orbital tissue, unsp eye +C2875883|T047|PT|H05.419|ICD10CM|Enophthalmos due to atrophy of orbital tissue, unspecified eye|Enophthalmos due to atrophy of orbital tissue, unspecified eye +C0155282|T020|HT|H05.42|ICD10CM|Enophthalmos due to trauma or surgery|Enophthalmos due to trauma or surgery +C0155282|T020|AB|H05.42|ICD10CM|Enophthalmos due to trauma or surgery|Enophthalmos due to trauma or surgery +C2875884|T020|AB|H05.421|ICD10CM|Enophthalmos due to trauma or surgery, right eye|Enophthalmos due to trauma or surgery, right eye +C2875884|T020|PT|H05.421|ICD10CM|Enophthalmos due to trauma or surgery, right eye|Enophthalmos due to trauma or surgery, right eye +C2875885|T020|AB|H05.422|ICD10CM|Enophthalmos due to trauma or surgery, left eye|Enophthalmos due to trauma or surgery, left eye +C2875885|T020|PT|H05.422|ICD10CM|Enophthalmos due to trauma or surgery, left eye|Enophthalmos due to trauma or surgery, left eye +C2875886|T020|AB|H05.423|ICD10CM|Enophthalmos due to trauma or surgery, bilateral|Enophthalmos due to trauma or surgery, bilateral +C2875886|T020|PT|H05.423|ICD10CM|Enophthalmos due to trauma or surgery, bilateral|Enophthalmos due to trauma or surgery, bilateral +C2875887|T020|AB|H05.429|ICD10CM|Enophthalmos due to trauma or surgery, unspecified eye|Enophthalmos due to trauma or surgery, unspecified eye +C2875887|T020|PT|H05.429|ICD10CM|Enophthalmos due to trauma or surgery, unspecified eye|Enophthalmos due to trauma or surgery, unspecified eye +C0155283|T020|AB|H05.5|ICD10CM|Retained (old) fb following penetrating wound of orbit|Retained (old) fb following penetrating wound of orbit +C0155283|T020|HT|H05.5|ICD10CM|Retained (old) foreign body following penetrating wound of orbit|Retained (old) foreign body following penetrating wound of orbit +C0155283|T020|PT|H05.5|ICD10|Retained (old) foreign body following penetrating wound of orbit|Retained (old) foreign body following penetrating wound of orbit +C0271329|T037|ET|H05.5|ICD10CM|Retrobulbar foreign body|Retrobulbar foreign body +C0155283|T020|AB|H05.50|ICD10CM|Retained (old) fb following penetrating wound of unsp orbit|Retained (old) fb following penetrating wound of unsp orbit +C0155283|T020|PT|H05.50|ICD10CM|Retained (old) foreign body following penetrating wound of unspecified orbit|Retained (old) foreign body following penetrating wound of unspecified orbit +C2875888|T020|AB|H05.51|ICD10CM|Retained (old) fb following penetrating wound of right orbit|Retained (old) fb following penetrating wound of right orbit +C2875888|T020|PT|H05.51|ICD10CM|Retained (old) foreign body following penetrating wound of right orbit|Retained (old) foreign body following penetrating wound of right orbit +C2875889|T020|AB|H05.52|ICD10CM|Retained (old) fb following penetrating wound of left orbit|Retained (old) fb following penetrating wound of left orbit +C2875889|T020|PT|H05.52|ICD10CM|Retained (old) foreign body following penetrating wound of left orbit|Retained (old) foreign body following penetrating wound of left orbit +C2875890|T020|AB|H05.53|ICD10CM|Retained (old) fb following penetrating wound of bi orbit|Retained (old) fb following penetrating wound of bi orbit +C2875890|T020|PT|H05.53|ICD10CM|Retained (old) foreign body following penetrating wound of bilateral orbits|Retained (old) foreign body following penetrating wound of bilateral orbits +C0155284|T047|HT|H05.8|ICD10CM|Other disorders of orbit|Other disorders of orbit +C0155284|T047|AB|H05.8|ICD10CM|Other disorders of orbit|Other disorders of orbit +C0155284|T047|PT|H05.8|ICD10|Other disorders of orbit|Other disorders of orbit +C0155285|T047|HT|H05.81|ICD10CM|Cyst of orbit|Cyst of orbit +C0155285|T047|AB|H05.81|ICD10CM|Cyst of orbit|Cyst of orbit +C0271330|T019|ET|H05.81|ICD10CM|Encephalocele of orbit|Encephalocele of orbit +C2875891|T047|PT|H05.811|ICD10CM|Cyst of right orbit|Cyst of right orbit +C2875891|T047|AB|H05.811|ICD10CM|Cyst of right orbit|Cyst of right orbit +C2875892|T047|PT|H05.812|ICD10CM|Cyst of left orbit|Cyst of left orbit +C2875892|T047|AB|H05.812|ICD10CM|Cyst of left orbit|Cyst of left orbit +C2875893|T047|AB|H05.813|ICD10CM|Cyst of bilateral orbits|Cyst of bilateral orbits +C2875893|T047|PT|H05.813|ICD10CM|Cyst of bilateral orbits|Cyst of bilateral orbits +C2875894|T047|AB|H05.819|ICD10CM|Cyst of unspecified orbit|Cyst of unspecified orbit +C2875894|T047|PT|H05.819|ICD10CM|Cyst of unspecified orbit|Cyst of unspecified orbit +C0155286|T047|HT|H05.82|ICD10CM|Myopathy of extraocular muscles|Myopathy of extraocular muscles +C0155286|T047|AB|H05.82|ICD10CM|Myopathy of extraocular muscles|Myopathy of extraocular muscles +C2875895|T047|AB|H05.821|ICD10CM|Myopathy of extraocular muscles, right orbit|Myopathy of extraocular muscles, right orbit +C2875895|T047|PT|H05.821|ICD10CM|Myopathy of extraocular muscles, right orbit|Myopathy of extraocular muscles, right orbit +C2875896|T047|AB|H05.822|ICD10CM|Myopathy of extraocular muscles, left orbit|Myopathy of extraocular muscles, left orbit +C2875896|T047|PT|H05.822|ICD10CM|Myopathy of extraocular muscles, left orbit|Myopathy of extraocular muscles, left orbit +C2875897|T047|AB|H05.823|ICD10CM|Myopathy of extraocular muscles, bilateral|Myopathy of extraocular muscles, bilateral +C2875897|T047|PT|H05.823|ICD10CM|Myopathy of extraocular muscles, bilateral|Myopathy of extraocular muscles, bilateral +C2875898|T047|AB|H05.829|ICD10CM|Myopathy of extraocular muscles, unspecified orbit|Myopathy of extraocular muscles, unspecified orbit +C2875898|T047|PT|H05.829|ICD10CM|Myopathy of extraocular muscles, unspecified orbit|Myopathy of extraocular muscles, unspecified orbit +C0155284|T047|PT|H05.89|ICD10CM|Other disorders of orbit|Other disorders of orbit +C0155284|T047|AB|H05.89|ICD10CM|Other disorders of orbit|Other disorders of orbit +C0029182|T047|PT|H05.9|ICD10|Disorder of orbit, unspecified|Disorder of orbit, unspecified +C0029182|T047|AB|H05.9|ICD10CM|Unspecified disorder of orbit|Unspecified disorder of orbit +C0029182|T047|PT|H05.9|ICD10CM|Unspecified disorder of orbit|Unspecified disorder of orbit +C0694482|T047|HT|H06|ICD10|Disorders of lacrimal system and orbit in diseases classified elsewhere|Disorders of lacrimal system and orbit in diseases classified elsewhere +C0348515|T047|PT|H06.0|ICD10|Disorders of lacrimal system in diseases classified elsewhere|Disorders of lacrimal system in diseases classified elsewhere +C0348516|T047|PT|H06.1|ICD10|Parasitic infestation of orbit in diseases classified elsewhere|Parasitic infestation of orbit in diseases classified elsewhere +C0339143|T047|PT|H06.2|ICD10|Dysthyroid exophthalmos|Dysthyroid exophthalmos +C0348518|T047|PT|H06.3|ICD10|Other disorders of orbit in diseases classified elsewhere|Other disorders of orbit in diseases classified elsewhere +C0009763|T047|HT|H10|ICD10|Conjunctivitis|Conjunctivitis +C0009763|T047|HT|H10|ICD10CM|Conjunctivitis|Conjunctivitis +C0009763|T047|AB|H10|ICD10CM|Conjunctivitis|Conjunctivitis +C0009759|T047|HT|H10-H11|ICD10CM|Disorders of conjunctiva (H10-H11)|Disorders of conjunctiva (H10-H11) +C0009759|T047|HT|H10-H13.9|ICD10|Disorders of conjunctiva|Disorders of conjunctiva +C0009768|T047|PT|H10.0|ICD10|Mucopurulent conjunctivitis|Mucopurulent conjunctivitis +C0009768|T047|HT|H10.0|ICD10CM|Mucopurulent conjunctivitis|Mucopurulent conjunctivitis +C0009768|T047|AB|H10.0|ICD10CM|Mucopurulent conjunctivitis|Mucopurulent conjunctivitis +C0155143|T047|HT|H10.01|ICD10CM|Acute follicular conjunctivitis|Acute follicular conjunctivitis +C0155143|T047|AB|H10.01|ICD10CM|Acute follicular conjunctivitis|Acute follicular conjunctivitis +C2875899|T047|AB|H10.011|ICD10CM|Acute follicular conjunctivitis, right eye|Acute follicular conjunctivitis, right eye +C2875899|T047|PT|H10.011|ICD10CM|Acute follicular conjunctivitis, right eye|Acute follicular conjunctivitis, right eye +C2875900|T047|AB|H10.012|ICD10CM|Acute follicular conjunctivitis, left eye|Acute follicular conjunctivitis, left eye +C2875900|T047|PT|H10.012|ICD10CM|Acute follicular conjunctivitis, left eye|Acute follicular conjunctivitis, left eye +C2875901|T047|AB|H10.013|ICD10CM|Acute follicular conjunctivitis, bilateral|Acute follicular conjunctivitis, bilateral +C2875901|T047|PT|H10.013|ICD10CM|Acute follicular conjunctivitis, bilateral|Acute follicular conjunctivitis, bilateral +C2875902|T047|AB|H10.019|ICD10CM|Acute follicular conjunctivitis, unspecified eye|Acute follicular conjunctivitis, unspecified eye +C2875902|T047|PT|H10.019|ICD10CM|Acute follicular conjunctivitis, unspecified eye|Acute follicular conjunctivitis, unspecified eye +C0029668|T047|HT|H10.02|ICD10CM|Other mucopurulent conjunctivitis|Other mucopurulent conjunctivitis +C0029668|T047|AB|H10.02|ICD10CM|Other mucopurulent conjunctivitis|Other mucopurulent conjunctivitis +C2875903|T047|AB|H10.021|ICD10CM|Other mucopurulent conjunctivitis, right eye|Other mucopurulent conjunctivitis, right eye +C2875903|T047|PT|H10.021|ICD10CM|Other mucopurulent conjunctivitis, right eye|Other mucopurulent conjunctivitis, right eye +C2875904|T047|AB|H10.022|ICD10CM|Other mucopurulent conjunctivitis, left eye|Other mucopurulent conjunctivitis, left eye +C2875904|T047|PT|H10.022|ICD10CM|Other mucopurulent conjunctivitis, left eye|Other mucopurulent conjunctivitis, left eye +C2875905|T047|AB|H10.023|ICD10CM|Other mucopurulent conjunctivitis, bilateral|Other mucopurulent conjunctivitis, bilateral +C2875905|T047|PT|H10.023|ICD10CM|Other mucopurulent conjunctivitis, bilateral|Other mucopurulent conjunctivitis, bilateral +C2875906|T047|AB|H10.029|ICD10CM|Other mucopurulent conjunctivitis, unspecified eye|Other mucopurulent conjunctivitis, unspecified eye +C2875906|T047|PT|H10.029|ICD10CM|Other mucopurulent conjunctivitis, unspecified eye|Other mucopurulent conjunctivitis, unspecified eye +C0001309|T047|HT|H10.1|ICD10CM|Acute atopic conjunctivitis|Acute atopic conjunctivitis +C0001309|T047|AB|H10.1|ICD10CM|Acute atopic conjunctivitis|Acute atopic conjunctivitis +C0001309|T047|PT|H10.1|ICD10|Acute atopic conjunctivitis|Acute atopic conjunctivitis +C2875907|T047|ET|H10.1|ICD10CM|Acute papillary conjunctivitis|Acute papillary conjunctivitis +C2875908|T047|AB|H10.10|ICD10CM|Acute atopic conjunctivitis, unspecified eye|Acute atopic conjunctivitis, unspecified eye +C2875908|T047|PT|H10.10|ICD10CM|Acute atopic conjunctivitis, unspecified eye|Acute atopic conjunctivitis, unspecified eye +C2875909|T047|AB|H10.11|ICD10CM|Acute atopic conjunctivitis, right eye|Acute atopic conjunctivitis, right eye +C2875909|T047|PT|H10.11|ICD10CM|Acute atopic conjunctivitis, right eye|Acute atopic conjunctivitis, right eye +C2875910|T047|AB|H10.12|ICD10CM|Acute atopic conjunctivitis, left eye|Acute atopic conjunctivitis, left eye +C2875910|T047|PT|H10.12|ICD10CM|Acute atopic conjunctivitis, left eye|Acute atopic conjunctivitis, left eye +C2875911|T047|AB|H10.13|ICD10CM|Acute atopic conjunctivitis, bilateral|Acute atopic conjunctivitis, bilateral +C2875911|T047|PT|H10.13|ICD10CM|Acute atopic conjunctivitis, bilateral|Acute atopic conjunctivitis, bilateral +C0348519|T047|PT|H10.2|ICD10|Other acute conjunctivitis|Other acute conjunctivitis +C0348519|T047|HT|H10.2|ICD10CM|Other acute conjunctivitis|Other acute conjunctivitis +C0348519|T047|AB|H10.2|ICD10CM|Other acute conjunctivitis|Other acute conjunctivitis +C2712777|T047|ET|H10.21|ICD10CM|Acute chemical conjunctivitis|Acute chemical conjunctivitis +C2712776|T047|AB|H10.21|ICD10CM|Acute toxic conjunctivitis|Acute toxic conjunctivitis +C2712776|T047|HT|H10.21|ICD10CM|Acute toxic conjunctivitis|Acute toxic conjunctivitis +C2875912|T047|AB|H10.211|ICD10CM|Acute toxic conjunctivitis, right eye|Acute toxic conjunctivitis, right eye +C2875912|T047|PT|H10.211|ICD10CM|Acute toxic conjunctivitis, right eye|Acute toxic conjunctivitis, right eye +C2875913|T047|AB|H10.212|ICD10CM|Acute toxic conjunctivitis, left eye|Acute toxic conjunctivitis, left eye +C2875913|T047|PT|H10.212|ICD10CM|Acute toxic conjunctivitis, left eye|Acute toxic conjunctivitis, left eye +C2875914|T047|AB|H10.213|ICD10CM|Acute toxic conjunctivitis, bilateral|Acute toxic conjunctivitis, bilateral +C2875914|T047|PT|H10.213|ICD10CM|Acute toxic conjunctivitis, bilateral|Acute toxic conjunctivitis, bilateral +C2875915|T047|AB|H10.219|ICD10CM|Acute toxic conjunctivitis, unspecified eye|Acute toxic conjunctivitis, unspecified eye +C2875915|T047|PT|H10.219|ICD10CM|Acute toxic conjunctivitis, unspecified eye|Acute toxic conjunctivitis, unspecified eye +C0155144|T047|HT|H10.22|ICD10CM|Pseudomembranous conjunctivitis|Pseudomembranous conjunctivitis +C0155144|T047|AB|H10.22|ICD10CM|Pseudomembranous conjunctivitis|Pseudomembranous conjunctivitis +C2875916|T047|AB|H10.221|ICD10CM|Pseudomembranous conjunctivitis, right eye|Pseudomembranous conjunctivitis, right eye +C2875916|T047|PT|H10.221|ICD10CM|Pseudomembranous conjunctivitis, right eye|Pseudomembranous conjunctivitis, right eye +C2875917|T047|AB|H10.222|ICD10CM|Pseudomembranous conjunctivitis, left eye|Pseudomembranous conjunctivitis, left eye +C2875917|T047|PT|H10.222|ICD10CM|Pseudomembranous conjunctivitis, left eye|Pseudomembranous conjunctivitis, left eye +C2875918|T047|AB|H10.223|ICD10CM|Pseudomembranous conjunctivitis, bilateral|Pseudomembranous conjunctivitis, bilateral +C2875918|T047|PT|H10.223|ICD10CM|Pseudomembranous conjunctivitis, bilateral|Pseudomembranous conjunctivitis, bilateral +C2875919|T047|AB|H10.229|ICD10CM|Pseudomembranous conjunctivitis, unspecified eye|Pseudomembranous conjunctivitis, unspecified eye +C2875919|T047|PT|H10.229|ICD10CM|Pseudomembranous conjunctivitis, unspecified eye|Pseudomembranous conjunctivitis, unspecified eye +C0155142|T047|HT|H10.23|ICD10CM|Serous conjunctivitis, except viral|Serous conjunctivitis, except viral +C0155142|T047|AB|H10.23|ICD10CM|Serous conjunctivitis, except viral|Serous conjunctivitis, except viral +C2875920|T047|AB|H10.231|ICD10CM|Serous conjunctivitis, except viral, right eye|Serous conjunctivitis, except viral, right eye +C2875920|T047|PT|H10.231|ICD10CM|Serous conjunctivitis, except viral, right eye|Serous conjunctivitis, except viral, right eye +C2875921|T047|AB|H10.232|ICD10CM|Serous conjunctivitis, except viral, left eye|Serous conjunctivitis, except viral, left eye +C2875921|T047|PT|H10.232|ICD10CM|Serous conjunctivitis, except viral, left eye|Serous conjunctivitis, except viral, left eye +C2875922|T047|AB|H10.233|ICD10CM|Serous conjunctivitis, except viral, bilateral|Serous conjunctivitis, except viral, bilateral +C2875922|T047|PT|H10.233|ICD10CM|Serous conjunctivitis, except viral, bilateral|Serous conjunctivitis, except viral, bilateral +C2875923|T047|AB|H10.239|ICD10CM|Serous conjunctivitis, except viral, unspecified eye|Serous conjunctivitis, except viral, unspecified eye +C2875923|T047|PT|H10.239|ICD10CM|Serous conjunctivitis, except viral, unspecified eye|Serous conjunctivitis, except viral, unspecified eye +C0155141|T047|PT|H10.3|ICD10|Acute conjunctivitis, unspecified|Acute conjunctivitis, unspecified +C0155141|T047|AB|H10.3|ICD10CM|Unspecified acute conjunctivitis|Unspecified acute conjunctivitis +C0155141|T047|HT|H10.3|ICD10CM|Unspecified acute conjunctivitis|Unspecified acute conjunctivitis +C2875924|T047|AB|H10.30|ICD10CM|Unspecified acute conjunctivitis, unspecified eye|Unspecified acute conjunctivitis, unspecified eye +C2875924|T047|PT|H10.30|ICD10CM|Unspecified acute conjunctivitis, unspecified eye|Unspecified acute conjunctivitis, unspecified eye +C2875925|T047|AB|H10.31|ICD10CM|Unspecified acute conjunctivitis, right eye|Unspecified acute conjunctivitis, right eye +C2875925|T047|PT|H10.31|ICD10CM|Unspecified acute conjunctivitis, right eye|Unspecified acute conjunctivitis, right eye +C2875926|T047|AB|H10.32|ICD10CM|Unspecified acute conjunctivitis, left eye|Unspecified acute conjunctivitis, left eye +C2875926|T047|PT|H10.32|ICD10CM|Unspecified acute conjunctivitis, left eye|Unspecified acute conjunctivitis, left eye +C2875927|T047|AB|H10.33|ICD10CM|Unspecified acute conjunctivitis, bilateral|Unspecified acute conjunctivitis, bilateral +C2875927|T047|PT|H10.33|ICD10CM|Unspecified acute conjunctivitis, bilateral|Unspecified acute conjunctivitis, bilateral +C0155145|T047|HT|H10.4|ICD10CM|Chronic conjunctivitis|Chronic conjunctivitis +C0155145|T047|AB|H10.4|ICD10CM|Chronic conjunctivitis|Chronic conjunctivitis +C0155145|T047|PT|H10.4|ICD10|Chronic conjunctivitis|Chronic conjunctivitis +C0155145|T047|AB|H10.40|ICD10CM|Unspecified chronic conjunctivitis|Unspecified chronic conjunctivitis +C0155145|T047|HT|H10.40|ICD10CM|Unspecified chronic conjunctivitis|Unspecified chronic conjunctivitis +C2875928|T047|AB|H10.401|ICD10CM|Unspecified chronic conjunctivitis, right eye|Unspecified chronic conjunctivitis, right eye +C2875928|T047|PT|H10.401|ICD10CM|Unspecified chronic conjunctivitis, right eye|Unspecified chronic conjunctivitis, right eye +C2875929|T047|AB|H10.402|ICD10CM|Unspecified chronic conjunctivitis, left eye|Unspecified chronic conjunctivitis, left eye +C2875929|T047|PT|H10.402|ICD10CM|Unspecified chronic conjunctivitis, left eye|Unspecified chronic conjunctivitis, left eye +C2875930|T047|AB|H10.403|ICD10CM|Unspecified chronic conjunctivitis, bilateral|Unspecified chronic conjunctivitis, bilateral +C2875930|T047|PT|H10.403|ICD10CM|Unspecified chronic conjunctivitis, bilateral|Unspecified chronic conjunctivitis, bilateral +C2875931|T047|AB|H10.409|ICD10CM|Unspecified chronic conjunctivitis, unspecified eye|Unspecified chronic conjunctivitis, unspecified eye +C2875931|T047|PT|H10.409|ICD10CM|Unspecified chronic conjunctivitis, unspecified eye|Unspecified chronic conjunctivitis, unspecified eye +C2875932|T047|AB|H10.41|ICD10CM|Chronic giant papillary conjunctivitis|Chronic giant papillary conjunctivitis +C2875932|T047|HT|H10.41|ICD10CM|Chronic giant papillary conjunctivitis|Chronic giant papillary conjunctivitis +C2875933|T047|AB|H10.411|ICD10CM|Chronic giant papillary conjunctivitis, right eye|Chronic giant papillary conjunctivitis, right eye +C2875933|T047|PT|H10.411|ICD10CM|Chronic giant papillary conjunctivitis, right eye|Chronic giant papillary conjunctivitis, right eye +C2875934|T047|AB|H10.412|ICD10CM|Chronic giant papillary conjunctivitis, left eye|Chronic giant papillary conjunctivitis, left eye +C2875934|T047|PT|H10.412|ICD10CM|Chronic giant papillary conjunctivitis, left eye|Chronic giant papillary conjunctivitis, left eye +C2875935|T047|AB|H10.413|ICD10CM|Chronic giant papillary conjunctivitis, bilateral|Chronic giant papillary conjunctivitis, bilateral +C2875935|T047|PT|H10.413|ICD10CM|Chronic giant papillary conjunctivitis, bilateral|Chronic giant papillary conjunctivitis, bilateral +C2875936|T047|AB|H10.419|ICD10CM|Chronic giant papillary conjunctivitis, unspecified eye|Chronic giant papillary conjunctivitis, unspecified eye +C2875936|T047|PT|H10.419|ICD10CM|Chronic giant papillary conjunctivitis, unspecified eye|Chronic giant papillary conjunctivitis, unspecified eye +C0155146|T047|HT|H10.42|ICD10CM|Simple chronic conjunctivitis|Simple chronic conjunctivitis +C0155146|T047|AB|H10.42|ICD10CM|Simple chronic conjunctivitis|Simple chronic conjunctivitis +C2875937|T047|AB|H10.421|ICD10CM|Simple chronic conjunctivitis, right eye|Simple chronic conjunctivitis, right eye +C2875937|T047|PT|H10.421|ICD10CM|Simple chronic conjunctivitis, right eye|Simple chronic conjunctivitis, right eye +C2875938|T047|AB|H10.422|ICD10CM|Simple chronic conjunctivitis, left eye|Simple chronic conjunctivitis, left eye +C2875938|T047|PT|H10.422|ICD10CM|Simple chronic conjunctivitis, left eye|Simple chronic conjunctivitis, left eye +C2875939|T047|AB|H10.423|ICD10CM|Simple chronic conjunctivitis, bilateral|Simple chronic conjunctivitis, bilateral +C2875939|T047|PT|H10.423|ICD10CM|Simple chronic conjunctivitis, bilateral|Simple chronic conjunctivitis, bilateral +C2875940|T047|AB|H10.429|ICD10CM|Simple chronic conjunctivitis, unspecified eye|Simple chronic conjunctivitis, unspecified eye +C2875940|T047|PT|H10.429|ICD10CM|Simple chronic conjunctivitis, unspecified eye|Simple chronic conjunctivitis, unspecified eye +C0155147|T047|HT|H10.43|ICD10CM|Chronic follicular conjunctivitis|Chronic follicular conjunctivitis +C0155147|T047|AB|H10.43|ICD10CM|Chronic follicular conjunctivitis|Chronic follicular conjunctivitis +C2875941|T047|AB|H10.431|ICD10CM|Chronic follicular conjunctivitis, right eye|Chronic follicular conjunctivitis, right eye +C2875941|T047|PT|H10.431|ICD10CM|Chronic follicular conjunctivitis, right eye|Chronic follicular conjunctivitis, right eye +C2875942|T047|AB|H10.432|ICD10CM|Chronic follicular conjunctivitis, left eye|Chronic follicular conjunctivitis, left eye +C2875942|T047|PT|H10.432|ICD10CM|Chronic follicular conjunctivitis, left eye|Chronic follicular conjunctivitis, left eye +C2875943|T047|AB|H10.433|ICD10CM|Chronic follicular conjunctivitis, bilateral|Chronic follicular conjunctivitis, bilateral +C2875943|T047|PT|H10.433|ICD10CM|Chronic follicular conjunctivitis, bilateral|Chronic follicular conjunctivitis, bilateral +C2875944|T047|AB|H10.439|ICD10CM|Chronic follicular conjunctivitis, unspecified eye|Chronic follicular conjunctivitis, unspecified eye +C2875944|T047|PT|H10.439|ICD10CM|Chronic follicular conjunctivitis, unspecified eye|Chronic follicular conjunctivitis, unspecified eye +C0009773|T047|PT|H10.44|ICD10CM|Vernal conjunctivitis|Vernal conjunctivitis +C0009773|T047|AB|H10.44|ICD10CM|Vernal conjunctivitis|Vernal conjunctivitis +C0029543|T047|AB|H10.45|ICD10CM|Other chronic allergic conjunctivitis|Other chronic allergic conjunctivitis +C0029543|T047|PT|H10.45|ICD10CM|Other chronic allergic conjunctivitis|Other chronic allergic conjunctivitis +C0005743|T047|HT|H10.5|ICD10CM|Blepharoconjunctivitis|Blepharoconjunctivitis +C0005743|T047|AB|H10.5|ICD10CM|Blepharoconjunctivitis|Blepharoconjunctivitis +C0005743|T047|PT|H10.5|ICD10|Blepharoconjunctivitis|Blepharoconjunctivitis +C0005743|T047|AB|H10.50|ICD10CM|Unspecified blepharoconjunctivitis|Unspecified blepharoconjunctivitis +C0005743|T047|HT|H10.50|ICD10CM|Unspecified blepharoconjunctivitis|Unspecified blepharoconjunctivitis +C2875945|T047|AB|H10.501|ICD10CM|Unspecified blepharoconjunctivitis, right eye|Unspecified blepharoconjunctivitis, right eye +C2875945|T047|PT|H10.501|ICD10CM|Unspecified blepharoconjunctivitis, right eye|Unspecified blepharoconjunctivitis, right eye +C2875946|T047|AB|H10.502|ICD10CM|Unspecified blepharoconjunctivitis, left eye|Unspecified blepharoconjunctivitis, left eye +C2875946|T047|PT|H10.502|ICD10CM|Unspecified blepharoconjunctivitis, left eye|Unspecified blepharoconjunctivitis, left eye +C2875947|T047|AB|H10.503|ICD10CM|Unspecified blepharoconjunctivitis, bilateral|Unspecified blepharoconjunctivitis, bilateral +C2875947|T047|PT|H10.503|ICD10CM|Unspecified blepharoconjunctivitis, bilateral|Unspecified blepharoconjunctivitis, bilateral +C2875948|T047|AB|H10.509|ICD10CM|Unspecified blepharoconjunctivitis, unspecified eye|Unspecified blepharoconjunctivitis, unspecified eye +C2875948|T047|PT|H10.509|ICD10CM|Unspecified blepharoconjunctivitis, unspecified eye|Unspecified blepharoconjunctivitis, unspecified eye +C1274789|T047|HT|H10.51|ICD10CM|Ligneous conjunctivitis|Ligneous conjunctivitis +C1274789|T047|AB|H10.51|ICD10CM|Ligneous conjunctivitis|Ligneous conjunctivitis +C2875949|T047|AB|H10.511|ICD10CM|Ligneous conjunctivitis, right eye|Ligneous conjunctivitis, right eye +C2875949|T047|PT|H10.511|ICD10CM|Ligneous conjunctivitis, right eye|Ligneous conjunctivitis, right eye +C2875950|T047|AB|H10.512|ICD10CM|Ligneous conjunctivitis, left eye|Ligneous conjunctivitis, left eye +C2875950|T047|PT|H10.512|ICD10CM|Ligneous conjunctivitis, left eye|Ligneous conjunctivitis, left eye +C2875951|T047|AB|H10.513|ICD10CM|Ligneous conjunctivitis, bilateral|Ligneous conjunctivitis, bilateral +C2875951|T047|PT|H10.513|ICD10CM|Ligneous conjunctivitis, bilateral|Ligneous conjunctivitis, bilateral +C2875952|T047|AB|H10.519|ICD10CM|Ligneous conjunctivitis, unspecified eye|Ligneous conjunctivitis, unspecified eye +C2875952|T047|PT|H10.519|ICD10CM|Ligneous conjunctivitis, unspecified eye|Ligneous conjunctivitis, unspecified eye +C0155149|T047|HT|H10.52|ICD10CM|Angular blepharoconjunctivitis|Angular blepharoconjunctivitis +C0155149|T047|AB|H10.52|ICD10CM|Angular blepharoconjunctivitis|Angular blepharoconjunctivitis +C2875953|T047|AB|H10.521|ICD10CM|Angular blepharoconjunctivitis, right eye|Angular blepharoconjunctivitis, right eye +C2875953|T047|PT|H10.521|ICD10CM|Angular blepharoconjunctivitis, right eye|Angular blepharoconjunctivitis, right eye +C2875954|T047|AB|H10.522|ICD10CM|Angular blepharoconjunctivitis, left eye|Angular blepharoconjunctivitis, left eye +C2875954|T047|PT|H10.522|ICD10CM|Angular blepharoconjunctivitis, left eye|Angular blepharoconjunctivitis, left eye +C2875955|T047|AB|H10.523|ICD10CM|Angular blepharoconjunctivitis, bilateral|Angular blepharoconjunctivitis, bilateral +C2875955|T047|PT|H10.523|ICD10CM|Angular blepharoconjunctivitis, bilateral|Angular blepharoconjunctivitis, bilateral +C2875956|T047|AB|H10.529|ICD10CM|Angular blepharoconjunctivitis, unspecified eye|Angular blepharoconjunctivitis, unspecified eye +C2875956|T047|PT|H10.529|ICD10CM|Angular blepharoconjunctivitis, unspecified eye|Angular blepharoconjunctivitis, unspecified eye +C0155150|T047|HT|H10.53|ICD10CM|Contact blepharoconjunctivitis|Contact blepharoconjunctivitis +C0155150|T047|AB|H10.53|ICD10CM|Contact blepharoconjunctivitis|Contact blepharoconjunctivitis +C2875957|T047|AB|H10.531|ICD10CM|Contact blepharoconjunctivitis, right eye|Contact blepharoconjunctivitis, right eye +C2875957|T047|PT|H10.531|ICD10CM|Contact blepharoconjunctivitis, right eye|Contact blepharoconjunctivitis, right eye +C2875958|T047|AB|H10.532|ICD10CM|Contact blepharoconjunctivitis, left eye|Contact blepharoconjunctivitis, left eye +C2875958|T047|PT|H10.532|ICD10CM|Contact blepharoconjunctivitis, left eye|Contact blepharoconjunctivitis, left eye +C2875959|T047|AB|H10.533|ICD10CM|Contact blepharoconjunctivitis, bilateral|Contact blepharoconjunctivitis, bilateral +C2875959|T047|PT|H10.533|ICD10CM|Contact blepharoconjunctivitis, bilateral|Contact blepharoconjunctivitis, bilateral +C2875960|T047|AB|H10.539|ICD10CM|Contact blepharoconjunctivitis, unspecified eye|Contact blepharoconjunctivitis, unspecified eye +C2875960|T047|PT|H10.539|ICD10CM|Contact blepharoconjunctivitis, unspecified eye|Contact blepharoconjunctivitis, unspecified eye +C0029560|T047|HT|H10.8|ICD10CM|Other conjunctivitis|Other conjunctivitis +C0029560|T047|AB|H10.8|ICD10CM|Other conjunctivitis|Other conjunctivitis +C0029560|T047|PT|H10.8|ICD10|Other conjunctivitis|Other conjunctivitis +C1328333|T047|HT|H10.81|ICD10CM|Pingueculitis|Pingueculitis +C1328333|T047|AB|H10.81|ICD10CM|Pingueculitis|Pingueculitis +C2875961|T047|AB|H10.811|ICD10CM|Pingueculitis, right eye|Pingueculitis, right eye +C2875961|T047|PT|H10.811|ICD10CM|Pingueculitis, right eye|Pingueculitis, right eye +C2875962|T047|AB|H10.812|ICD10CM|Pingueculitis, left eye|Pingueculitis, left eye +C2875962|T047|PT|H10.812|ICD10CM|Pingueculitis, left eye|Pingueculitis, left eye +C2875963|T047|AB|H10.813|ICD10CM|Pingueculitis, bilateral|Pingueculitis, bilateral +C2875963|T047|PT|H10.813|ICD10CM|Pingueculitis, bilateral|Pingueculitis, bilateral +C2875964|T047|AB|H10.819|ICD10CM|Pingueculitis, unspecified eye|Pingueculitis, unspecified eye +C2875964|T047|PT|H10.819|ICD10CM|Pingueculitis, unspecified eye|Pingueculitis, unspecified eye +C0155152|T047|HT|H10.82|ICD10CM|Rosacea conjunctivitis|Rosacea conjunctivitis +C0155152|T047|AB|H10.82|ICD10CM|Rosacea conjunctivitis|Rosacea conjunctivitis +C4554303|T047|AB|H10.821|ICD10CM|Rosacea conjunctivitis, right eye|Rosacea conjunctivitis, right eye +C4554303|T047|PT|H10.821|ICD10CM|Rosacea conjunctivitis, right eye|Rosacea conjunctivitis, right eye +C4554304|T047|AB|H10.822|ICD10CM|Rosacea conjunctivitis, left eye|Rosacea conjunctivitis, left eye +C4554304|T047|PT|H10.822|ICD10CM|Rosacea conjunctivitis, left eye|Rosacea conjunctivitis, left eye +C4554305|T047|AB|H10.823|ICD10CM|Rosacea conjunctivitis, bilateral|Rosacea conjunctivitis, bilateral +C4554305|T047|PT|H10.823|ICD10CM|Rosacea conjunctivitis, bilateral|Rosacea conjunctivitis, bilateral +C4554306|T047|AB|H10.829|ICD10CM|Rosacea conjunctivitis, unspecified eye|Rosacea conjunctivitis, unspecified eye +C4554306|T047|PT|H10.829|ICD10CM|Rosacea conjunctivitis, unspecified eye|Rosacea conjunctivitis, unspecified eye +C0029560|T047|PT|H10.89|ICD10CM|Other conjunctivitis|Other conjunctivitis +C0029560|T047|AB|H10.89|ICD10CM|Other conjunctivitis|Other conjunctivitis +C0009763|T047|PT|H10.9|ICD10|Conjunctivitis, unspecified|Conjunctivitis, unspecified +C0009763|T047|AB|H10.9|ICD10CM|Unspecified conjunctivitis|Unspecified conjunctivitis +C0009763|T047|PT|H10.9|ICD10CM|Unspecified conjunctivitis|Unspecified conjunctivitis +C0155171|T047|HT|H11|ICD10|Other disorders of conjunctiva|Other disorders of conjunctiva +C0155171|T047|HT|H11|ICD10CM|Other disorders of conjunctiva|Other disorders of conjunctiva +C0155171|T047|AB|H11|ICD10CM|Other disorders of conjunctiva|Other disorders of conjunctiva +C4520843|T047|PT|H11.0|ICD10|Pterygium|Pterygium +C4520843|T047|HT|H11.0|ICD10CM|Pterygium of eye|Pterygium of eye +C4520843|T047|AB|H11.0|ICD10CM|Pterygium of eye|Pterygium of eye +C4520843|T047|AB|H11.00|ICD10CM|Unspecified pterygium of eye|Unspecified pterygium of eye +C4520843|T047|HT|H11.00|ICD10CM|Unspecified pterygium of eye|Unspecified pterygium of eye +C2143074|T047|AB|H11.001|ICD10CM|Unspecified pterygium of right eye|Unspecified pterygium of right eye +C2143074|T047|PT|H11.001|ICD10CM|Unspecified pterygium of right eye|Unspecified pterygium of right eye +C2143069|T047|AB|H11.002|ICD10CM|Unspecified pterygium of left eye|Unspecified pterygium of left eye +C2143069|T047|PT|H11.002|ICD10CM|Unspecified pterygium of left eye|Unspecified pterygium of left eye +C2875965|T047|AB|H11.003|ICD10CM|Unspecified pterygium of eye, bilateral|Unspecified pterygium of eye, bilateral +C2875965|T047|PT|H11.003|ICD10CM|Unspecified pterygium of eye, bilateral|Unspecified pterygium of eye, bilateral +C4520843|T047|AB|H11.009|ICD10CM|Unspecified pterygium of unspecified eye|Unspecified pterygium of unspecified eye +C4520843|T047|PT|H11.009|ICD10CM|Unspecified pterygium of unspecified eye|Unspecified pterygium of unspecified eye +C2875966|T047|HT|H11.01|ICD10CM|Amyloid pterygium|Amyloid pterygium +C2875966|T047|AB|H11.01|ICD10CM|Amyloid pterygium|Amyloid pterygium +C2875967|T190|AB|H11.011|ICD10CM|Amyloid pterygium of right eye|Amyloid pterygium of right eye +C2875967|T190|PT|H11.011|ICD10CM|Amyloid pterygium of right eye|Amyloid pterygium of right eye +C2875968|T190|AB|H11.012|ICD10CM|Amyloid pterygium of left eye|Amyloid pterygium of left eye +C2875968|T190|PT|H11.012|ICD10CM|Amyloid pterygium of left eye|Amyloid pterygium of left eye +C2875969|T190|AB|H11.013|ICD10CM|Amyloid pterygium of eye, bilateral|Amyloid pterygium of eye, bilateral +C2875969|T190|PT|H11.013|ICD10CM|Amyloid pterygium of eye, bilateral|Amyloid pterygium of eye, bilateral +C2875970|T190|AB|H11.019|ICD10CM|Amyloid pterygium of unspecified eye|Amyloid pterygium of unspecified eye +C2875970|T190|PT|H11.019|ICD10CM|Amyloid pterygium of unspecified eye|Amyloid pterygium of unspecified eye +C2875971|T190|AB|H11.02|ICD10CM|Central pterygium of eye|Central pterygium of eye +C2875971|T190|HT|H11.02|ICD10CM|Central pterygium of eye|Central pterygium of eye +C2875972|T190|PT|H11.021|ICD10CM|Central pterygium of right eye|Central pterygium of right eye +C2875972|T190|AB|H11.021|ICD10CM|Central pterygium of right eye|Central pterygium of right eye +C2875973|T190|PT|H11.022|ICD10CM|Central pterygium of left eye|Central pterygium of left eye +C2875973|T190|AB|H11.022|ICD10CM|Central pterygium of left eye|Central pterygium of left eye +C2875974|T190|AB|H11.023|ICD10CM|Central pterygium of eye, bilateral|Central pterygium of eye, bilateral +C2875974|T190|PT|H11.023|ICD10CM|Central pterygium of eye, bilateral|Central pterygium of eye, bilateral +C2875975|T190|AB|H11.029|ICD10CM|Central pterygium of unspecified eye|Central pterygium of unspecified eye +C2875975|T190|PT|H11.029|ICD10CM|Central pterygium of unspecified eye|Central pterygium of unspecified eye +C2875976|T190|AB|H11.03|ICD10CM|Double pterygium of eye|Double pterygium of eye +C2875976|T190|HT|H11.03|ICD10CM|Double pterygium of eye|Double pterygium of eye +C2875977|T190|PT|H11.031|ICD10CM|Double pterygium of right eye|Double pterygium of right eye +C2875977|T190|AB|H11.031|ICD10CM|Double pterygium of right eye|Double pterygium of right eye +C2875978|T190|PT|H11.032|ICD10CM|Double pterygium of left eye|Double pterygium of left eye +C2875978|T190|AB|H11.032|ICD10CM|Double pterygium of left eye|Double pterygium of left eye +C2875979|T190|AB|H11.033|ICD10CM|Double pterygium of eye, bilateral|Double pterygium of eye, bilateral +C2875979|T190|PT|H11.033|ICD10CM|Double pterygium of eye, bilateral|Double pterygium of eye, bilateral +C2875980|T190|AB|H11.039|ICD10CM|Double pterygium of unspecified eye|Double pterygium of unspecified eye +C2875980|T190|PT|H11.039|ICD10CM|Double pterygium of unspecified eye|Double pterygium of unspecified eye +C2875984|T047|AB|H11.04|ICD10CM|Peripheral pterygium of eye, stationary|Peripheral pterygium of eye, stationary +C2875984|T047|HT|H11.04|ICD10CM|Peripheral pterygium of eye, stationary|Peripheral pterygium of eye, stationary +C2875981|T047|AB|H11.041|ICD10CM|Peripheral pterygium, stationary, right eye|Peripheral pterygium, stationary, right eye +C2875981|T047|PT|H11.041|ICD10CM|Peripheral pterygium, stationary, right eye|Peripheral pterygium, stationary, right eye +C2875982|T047|AB|H11.042|ICD10CM|Peripheral pterygium, stationary, left eye|Peripheral pterygium, stationary, left eye +C2875982|T047|PT|H11.042|ICD10CM|Peripheral pterygium, stationary, left eye|Peripheral pterygium, stationary, left eye +C2875983|T047|AB|H11.043|ICD10CM|Peripheral pterygium, stationary, bilateral|Peripheral pterygium, stationary, bilateral +C2875983|T047|PT|H11.043|ICD10CM|Peripheral pterygium, stationary, bilateral|Peripheral pterygium, stationary, bilateral +C2875984|T047|AB|H11.049|ICD10CM|Peripheral pterygium, stationary, unspecified eye|Peripheral pterygium, stationary, unspecified eye +C2875984|T047|PT|H11.049|ICD10CM|Peripheral pterygium, stationary, unspecified eye|Peripheral pterygium, stationary, unspecified eye +C2875988|T047|AB|H11.05|ICD10CM|Peripheral pterygium of eye, progressive|Peripheral pterygium of eye, progressive +C2875988|T047|HT|H11.05|ICD10CM|Peripheral pterygium of eye, progressive|Peripheral pterygium of eye, progressive +C2875985|T047|AB|H11.051|ICD10CM|Peripheral pterygium, progressive, right eye|Peripheral pterygium, progressive, right eye +C2875985|T047|PT|H11.051|ICD10CM|Peripheral pterygium, progressive, right eye|Peripheral pterygium, progressive, right eye +C2875986|T047|AB|H11.052|ICD10CM|Peripheral pterygium, progressive, left eye|Peripheral pterygium, progressive, left eye +C2875986|T047|PT|H11.052|ICD10CM|Peripheral pterygium, progressive, left eye|Peripheral pterygium, progressive, left eye +C2875987|T047|AB|H11.053|ICD10CM|Peripheral pterygium, progressive, bilateral|Peripheral pterygium, progressive, bilateral +C2875987|T047|PT|H11.053|ICD10CM|Peripheral pterygium, progressive, bilateral|Peripheral pterygium, progressive, bilateral +C2875988|T047|AB|H11.059|ICD10CM|Peripheral pterygium, progressive, unspecified eye|Peripheral pterygium, progressive, unspecified eye +C2875988|T047|PT|H11.059|ICD10CM|Peripheral pterygium, progressive, unspecified eye|Peripheral pterygium, progressive, unspecified eye +C2875992|T047|AB|H11.06|ICD10CM|Recurrent pterygium of eye|Recurrent pterygium of eye +C2875992|T047|HT|H11.06|ICD10CM|Recurrent pterygium of eye|Recurrent pterygium of eye +C2875989|T047|PT|H11.061|ICD10CM|Recurrent pterygium of right eye|Recurrent pterygium of right eye +C2875989|T047|AB|H11.061|ICD10CM|Recurrent pterygium of right eye|Recurrent pterygium of right eye +C2875990|T047|PT|H11.062|ICD10CM|Recurrent pterygium of left eye|Recurrent pterygium of left eye +C2875990|T047|AB|H11.062|ICD10CM|Recurrent pterygium of left eye|Recurrent pterygium of left eye +C2875991|T047|AB|H11.063|ICD10CM|Recurrent pterygium of eye, bilateral|Recurrent pterygium of eye, bilateral +C2875991|T047|PT|H11.063|ICD10CM|Recurrent pterygium of eye, bilateral|Recurrent pterygium of eye, bilateral +C2875992|T047|AB|H11.069|ICD10CM|Recurrent pterygium of unspecified eye|Recurrent pterygium of unspecified eye +C2875992|T047|PT|H11.069|ICD10CM|Recurrent pterygium of unspecified eye|Recurrent pterygium of unspecified eye +C0155159|T020|HT|H11.1|ICD10CM|Conjunctival degenerations and deposits|Conjunctival degenerations and deposits +C0155159|T020|AB|H11.1|ICD10CM|Conjunctival degenerations and deposits|Conjunctival degenerations and deposits +C0155159|T020|PT|H11.1|ICD10|Conjunctival degenerations and deposits|Conjunctival degenerations and deposits +C0155160|T047|AB|H11.10|ICD10CM|Unspecified conjunctival degenerations|Unspecified conjunctival degenerations +C0155160|T047|PT|H11.10|ICD10CM|Unspecified conjunctival degenerations|Unspecified conjunctival degenerations +C0162280|T047|HT|H11.11|ICD10CM|Conjunctival deposits|Conjunctival deposits +C0162280|T047|AB|H11.11|ICD10CM|Conjunctival deposits|Conjunctival deposits +C2064587|T047|AB|H11.111|ICD10CM|Conjunctival deposits, right eye|Conjunctival deposits, right eye +C2064587|T047|PT|H11.111|ICD10CM|Conjunctival deposits, right eye|Conjunctival deposits, right eye +C2064588|T047|AB|H11.112|ICD10CM|Conjunctival deposits, left eye|Conjunctival deposits, left eye +C2064588|T047|PT|H11.112|ICD10CM|Conjunctival deposits, left eye|Conjunctival deposits, left eye +C2875993|T047|AB|H11.113|ICD10CM|Conjunctival deposits, bilateral|Conjunctival deposits, bilateral +C2875993|T047|PT|H11.113|ICD10CM|Conjunctival deposits, bilateral|Conjunctival deposits, bilateral +C2875994|T047|AB|H11.119|ICD10CM|Conjunctival deposits, unspecified eye|Conjunctival deposits, unspecified eye +C2875994|T047|PT|H11.119|ICD10CM|Conjunctival deposits, unspecified eye|Conjunctival deposits, unspecified eye +C0155162|T020|HT|H11.12|ICD10CM|Conjunctival concretions|Conjunctival concretions +C0155162|T020|AB|H11.12|ICD10CM|Conjunctival concretions|Conjunctival concretions +C2875995|T047|AB|H11.121|ICD10CM|Conjunctival concretions, right eye|Conjunctival concretions, right eye +C2875995|T047|PT|H11.121|ICD10CM|Conjunctival concretions, right eye|Conjunctival concretions, right eye +C2875996|T047|AB|H11.122|ICD10CM|Conjunctival concretions, left eye|Conjunctival concretions, left eye +C2875996|T047|PT|H11.122|ICD10CM|Conjunctival concretions, left eye|Conjunctival concretions, left eye +C2875997|T047|AB|H11.123|ICD10CM|Conjunctival concretions, bilateral|Conjunctival concretions, bilateral +C2875997|T047|PT|H11.123|ICD10CM|Conjunctival concretions, bilateral|Conjunctival concretions, bilateral +C2875998|T047|AB|H11.129|ICD10CM|Conjunctival concretions, unspecified eye|Conjunctival concretions, unspecified eye +C2875998|T047|PT|H11.129|ICD10CM|Conjunctival concretions, unspecified eye|Conjunctival concretions, unspecified eye +C2875999|T047|ET|H11.13|ICD10CM|Conjunctival argyrosis [argyria]|Conjunctival argyrosis [argyria] +C0155163|T047|HT|H11.13|ICD10CM|Conjunctival pigmentations|Conjunctival pigmentations +C0155163|T047|AB|H11.13|ICD10CM|Conjunctival pigmentations|Conjunctival pigmentations +C2876000|T047|AB|H11.131|ICD10CM|Conjunctival pigmentations, right eye|Conjunctival pigmentations, right eye +C2876000|T047|PT|H11.131|ICD10CM|Conjunctival pigmentations, right eye|Conjunctival pigmentations, right eye +C2876001|T047|AB|H11.132|ICD10CM|Conjunctival pigmentations, left eye|Conjunctival pigmentations, left eye +C2876001|T047|PT|H11.132|ICD10CM|Conjunctival pigmentations, left eye|Conjunctival pigmentations, left eye +C2876002|T047|AB|H11.133|ICD10CM|Conjunctival pigmentations, bilateral|Conjunctival pigmentations, bilateral +C2876002|T047|PT|H11.133|ICD10CM|Conjunctival pigmentations, bilateral|Conjunctival pigmentations, bilateral +C2876003|T047|AB|H11.139|ICD10CM|Conjunctival pigmentations, unspecified eye|Conjunctival pigmentations, unspecified eye +C2876003|T047|PT|H11.139|ICD10CM|Conjunctival pigmentations, unspecified eye|Conjunctival pigmentations, unspecified eye +C3665609|T047|AB|H11.14|ICD10CM|Conjunctival xerosis, unspecified|Conjunctival xerosis, unspecified +C3665609|T047|HT|H11.14|ICD10CM|Conjunctival xerosis, unspecified|Conjunctival xerosis, unspecified +C2876004|T047|AB|H11.141|ICD10CM|Conjunctival xerosis, unspecified, right eye|Conjunctival xerosis, unspecified, right eye +C2876004|T047|PT|H11.141|ICD10CM|Conjunctival xerosis, unspecified, right eye|Conjunctival xerosis, unspecified, right eye +C2876005|T047|AB|H11.142|ICD10CM|Conjunctival xerosis, unspecified, left eye|Conjunctival xerosis, unspecified, left eye +C2876005|T047|PT|H11.142|ICD10CM|Conjunctival xerosis, unspecified, left eye|Conjunctival xerosis, unspecified, left eye +C2876006|T047|AB|H11.143|ICD10CM|Conjunctival xerosis, unspecified, bilateral|Conjunctival xerosis, unspecified, bilateral +C2876006|T047|PT|H11.143|ICD10CM|Conjunctival xerosis, unspecified, bilateral|Conjunctival xerosis, unspecified, bilateral +C2876007|T047|AB|H11.149|ICD10CM|Conjunctival xerosis, unspecified, unspecified eye|Conjunctival xerosis, unspecified, unspecified eye +C2876007|T047|PT|H11.149|ICD10CM|Conjunctival xerosis, unspecified, unspecified eye|Conjunctival xerosis, unspecified, unspecified eye +C0152255|T047|HT|H11.15|ICD10CM|Pinguecula|Pinguecula +C0152255|T047|AB|H11.15|ICD10CM|Pinguecula|Pinguecula +C3862467|T047|AB|H11.151|ICD10CM|Pinguecula, right eye|Pinguecula, right eye +C3862467|T047|PT|H11.151|ICD10CM|Pinguecula, right eye|Pinguecula, right eye +C2876009|T047|AB|H11.152|ICD10CM|Pinguecula, left eye|Pinguecula, left eye +C2876009|T047|PT|H11.152|ICD10CM|Pinguecula, left eye|Pinguecula, left eye +C2876010|T047|AB|H11.153|ICD10CM|Pinguecula, bilateral|Pinguecula, bilateral +C2876010|T047|PT|H11.153|ICD10CM|Pinguecula, bilateral|Pinguecula, bilateral +C2876011|T047|AB|H11.159|ICD10CM|Pinguecula, unspecified eye|Pinguecula, unspecified eye +C2876011|T047|PT|H11.159|ICD10CM|Pinguecula, unspecified eye|Pinguecula, unspecified eye +C0155164|T020|HT|H11.2|ICD10CM|Conjunctival scars|Conjunctival scars +C0155164|T020|AB|H11.2|ICD10CM|Conjunctival scars|Conjunctival scars +C0155164|T020|PT|H11.2|ICD10|Conjunctival scars|Conjunctival scars +C2876012|T047|AB|H11.21|ICD10CM|Conjunctival adhesions and strands (localized)|Conjunctival adhesions and strands (localized) +C2876012|T047|HT|H11.21|ICD10CM|Conjunctival adhesions and strands (localized)|Conjunctival adhesions and strands (localized) +C2876013|T047|AB|H11.211|ICD10CM|Conjunctival adhesions and strands (localized), right eye|Conjunctival adhesions and strands (localized), right eye +C2876013|T047|PT|H11.211|ICD10CM|Conjunctival adhesions and strands (localized), right eye|Conjunctival adhesions and strands (localized), right eye +C2876014|T047|AB|H11.212|ICD10CM|Conjunctival adhesions and strands (localized), left eye|Conjunctival adhesions and strands (localized), left eye +C2876014|T047|PT|H11.212|ICD10CM|Conjunctival adhesions and strands (localized), left eye|Conjunctival adhesions and strands (localized), left eye +C2876015|T047|AB|H11.213|ICD10CM|Conjunctival adhesions and strands (localized), bilateral|Conjunctival adhesions and strands (localized), bilateral +C2876015|T047|PT|H11.213|ICD10CM|Conjunctival adhesions and strands (localized), bilateral|Conjunctival adhesions and strands (localized), bilateral +C2876016|T047|AB|H11.219|ICD10CM|Conjunctival adhesions and strands (localized), unsp eye|Conjunctival adhesions and strands (localized), unsp eye +C2876016|T047|PT|H11.219|ICD10CM|Conjunctival adhesions and strands (localized), unspecified eye|Conjunctival adhesions and strands (localized), unspecified eye +C0155165|T047|HT|H11.22|ICD10CM|Conjunctival granuloma|Conjunctival granuloma +C0155165|T047|AB|H11.22|ICD10CM|Conjunctival granuloma|Conjunctival granuloma +C2064590|T047|AB|H11.221|ICD10CM|Conjunctival granuloma, right eye|Conjunctival granuloma, right eye +C2064590|T047|PT|H11.221|ICD10CM|Conjunctival granuloma, right eye|Conjunctival granuloma, right eye +C2064591|T047|AB|H11.222|ICD10CM|Conjunctival granuloma, left eye|Conjunctival granuloma, left eye +C2064591|T047|PT|H11.222|ICD10CM|Conjunctival granuloma, left eye|Conjunctival granuloma, left eye +C2876017|T047|AB|H11.223|ICD10CM|Conjunctival granuloma, bilateral|Conjunctival granuloma, bilateral +C2876017|T047|PT|H11.223|ICD10CM|Conjunctival granuloma, bilateral|Conjunctival granuloma, bilateral +C0155165|T047|AB|H11.229|ICD10CM|Conjunctival granuloma, unspecified|Conjunctival granuloma, unspecified +C0155165|T047|PT|H11.229|ICD10CM|Conjunctival granuloma, unspecified|Conjunctival granuloma, unspecified +C0152454|T046|HT|H11.23|ICD10CM|Symblepharon|Symblepharon +C0152454|T046|AB|H11.23|ICD10CM|Symblepharon|Symblepharon +C2876019|T190|AB|H11.231|ICD10CM|Symblepharon, right eye|Symblepharon, right eye +C2876019|T190|PT|H11.231|ICD10CM|Symblepharon, right eye|Symblepharon, right eye +C2876020|T190|AB|H11.232|ICD10CM|Symblepharon, left eye|Symblepharon, left eye +C2876020|T190|PT|H11.232|ICD10CM|Symblepharon, left eye|Symblepharon, left eye +C2876021|T190|AB|H11.233|ICD10CM|Symblepharon, bilateral|Symblepharon, bilateral +C2876021|T190|PT|H11.233|ICD10CM|Symblepharon, bilateral|Symblepharon, bilateral +C0152454|T046|AB|H11.239|ICD10CM|Symblepharon, unspecified eye|Symblepharon, unspecified eye +C0152454|T046|PT|H11.239|ICD10CM|Symblepharon, unspecified eye|Symblepharon, unspecified eye +C0155164|T020|HT|H11.24|ICD10CM|Scarring of conjunctiva|Scarring of conjunctiva +C0155164|T020|AB|H11.24|ICD10CM|Scarring of conjunctiva|Scarring of conjunctiva +C2069808|T020|AB|H11.241|ICD10CM|Scarring of conjunctiva, right eye|Scarring of conjunctiva, right eye +C2069808|T020|PT|H11.241|ICD10CM|Scarring of conjunctiva, right eye|Scarring of conjunctiva, right eye +C2069809|T020|AB|H11.242|ICD10CM|Scarring of conjunctiva, left eye|Scarring of conjunctiva, left eye +C2069809|T020|PT|H11.242|ICD10CM|Scarring of conjunctiva, left eye|Scarring of conjunctiva, left eye +C2876022|T020|AB|H11.243|ICD10CM|Scarring of conjunctiva, bilateral|Scarring of conjunctiva, bilateral +C2876022|T020|PT|H11.243|ICD10CM|Scarring of conjunctiva, bilateral|Scarring of conjunctiva, bilateral +C0155164|T020|AB|H11.249|ICD10CM|Scarring of conjunctiva, unspecified eye|Scarring of conjunctiva, unspecified eye +C0155164|T020|PT|H11.249|ICD10CM|Scarring of conjunctiva, unspecified eye|Scarring of conjunctiva, unspecified eye +C0009760|T046|PT|H11.3|ICD10|Conjunctival haemorrhage|Conjunctival haemorrhage +C0009760|T046|PT|H11.3|ICD10AE|Conjunctival hemorrhage|Conjunctival hemorrhage +C0009760|T046|HT|H11.3|ICD10CM|Conjunctival hemorrhage|Conjunctival hemorrhage +C0009760|T046|AB|H11.3|ICD10CM|Conjunctival hemorrhage|Conjunctival hemorrhage +C0038534|T046|ET|H11.3|ICD10CM|Subconjunctival hemorrhage|Subconjunctival hemorrhage +C0009760|T046|AB|H11.30|ICD10CM|Conjunctival hemorrhage, unspecified eye|Conjunctival hemorrhage, unspecified eye +C0009760|T046|PT|H11.30|ICD10CM|Conjunctival hemorrhage, unspecified eye|Conjunctival hemorrhage, unspecified eye +C2876023|T046|AB|H11.31|ICD10CM|Conjunctival hemorrhage, right eye|Conjunctival hemorrhage, right eye +C2876023|T046|PT|H11.31|ICD10CM|Conjunctival hemorrhage, right eye|Conjunctival hemorrhage, right eye +C2876024|T046|AB|H11.32|ICD10CM|Conjunctival hemorrhage, left eye|Conjunctival hemorrhage, left eye +C2876024|T046|PT|H11.32|ICD10CM|Conjunctival hemorrhage, left eye|Conjunctival hemorrhage, left eye +C2876025|T046|AB|H11.33|ICD10CM|Conjunctival hemorrhage, bilateral|Conjunctival hemorrhage, bilateral +C2876025|T046|PT|H11.33|ICD10CM|Conjunctival hemorrhage, bilateral|Conjunctival hemorrhage, bilateral +C0348520|T047|PT|H11.4|ICD10|Other conjunctival vascular disorders and cysts|Other conjunctival vascular disorders and cysts +C0348520|T047|HT|H11.4|ICD10CM|Other conjunctival vascular disorders and cysts|Other conjunctival vascular disorders and cysts +C0348520|T047|AB|H11.4|ICD10CM|Other conjunctival vascular disorders and cysts|Other conjunctival vascular disorders and cysts +C0271300|T190|ET|H11.41|ICD10CM|Conjunctival aneurysm|Conjunctival aneurysm +C0042370|T190|HT|H11.41|ICD10CM|Vascular abnormalities of conjunctiva|Vascular abnormalities of conjunctiva +C0042370|T190|AB|H11.41|ICD10CM|Vascular abnormalities of conjunctiva|Vascular abnormalities of conjunctiva +C2876026|T047|AB|H11.411|ICD10CM|Vascular abnormalities of conjunctiva, right eye|Vascular abnormalities of conjunctiva, right eye +C2876026|T190|AB|H11.411|ICD10CM|Vascular abnormalities of conjunctiva, right eye|Vascular abnormalities of conjunctiva, right eye +C2876026|T047|PT|H11.411|ICD10CM|Vascular abnormalities of conjunctiva, right eye|Vascular abnormalities of conjunctiva, right eye +C2876026|T190|PT|H11.411|ICD10CM|Vascular abnormalities of conjunctiva, right eye|Vascular abnormalities of conjunctiva, right eye +C2876027|T190|AB|H11.412|ICD10CM|Vascular abnormalities of conjunctiva, left eye|Vascular abnormalities of conjunctiva, left eye +C2876027|T190|PT|H11.412|ICD10CM|Vascular abnormalities of conjunctiva, left eye|Vascular abnormalities of conjunctiva, left eye +C2876028|T190|AB|H11.413|ICD10CM|Vascular abnormalities of conjunctiva, bilateral|Vascular abnormalities of conjunctiva, bilateral +C2876028|T190|PT|H11.413|ICD10CM|Vascular abnormalities of conjunctiva, bilateral|Vascular abnormalities of conjunctiva, bilateral +C2876029|T190|AB|H11.419|ICD10CM|Vascular abnormalities of conjunctiva, unspecified eye|Vascular abnormalities of conjunctiva, unspecified eye +C2876029|T190|PT|H11.419|ICD10CM|Vascular abnormalities of conjunctiva, unspecified eye|Vascular abnormalities of conjunctiva, unspecified eye +C0151601|T046|HT|H11.42|ICD10CM|Conjunctival edema|Conjunctival edema +C0151601|T046|AB|H11.42|ICD10CM|Conjunctival edema|Conjunctival edema +C2876030|T046|AB|H11.421|ICD10CM|Conjunctival edema, right eye|Conjunctival edema, right eye +C2876030|T046|PT|H11.421|ICD10CM|Conjunctival edema, right eye|Conjunctival edema, right eye +C2876031|T046|AB|H11.422|ICD10CM|Conjunctival edema, left eye|Conjunctival edema, left eye +C2876031|T046|PT|H11.422|ICD10CM|Conjunctival edema, left eye|Conjunctival edema, left eye +C2876032|T046|AB|H11.423|ICD10CM|Conjunctival edema, bilateral|Conjunctival edema, bilateral +C2876032|T046|PT|H11.423|ICD10CM|Conjunctival edema, bilateral|Conjunctival edema, bilateral +C2876033|T033|AB|H11.429|ICD10CM|Conjunctival edema, unspecified eye|Conjunctival edema, unspecified eye +C2876033|T033|PT|H11.429|ICD10CM|Conjunctival edema, unspecified eye|Conjunctival edema, unspecified eye +C1761613|T033|HT|H11.43|ICD10CM|Conjunctival hyperemia|Conjunctival hyperemia +C1761613|T033|AB|H11.43|ICD10CM|Conjunctival hyperemia|Conjunctival hyperemia +C2201181|T033|AB|H11.431|ICD10CM|Conjunctival hyperemia, right eye|Conjunctival hyperemia, right eye +C2201181|T033|PT|H11.431|ICD10CM|Conjunctival hyperemia, right eye|Conjunctival hyperemia, right eye +C2140551|T033|AB|H11.432|ICD10CM|Conjunctival hyperemia, left eye|Conjunctival hyperemia, left eye +C2140551|T033|PT|H11.432|ICD10CM|Conjunctival hyperemia, left eye|Conjunctival hyperemia, left eye +C2225063|T033|AB|H11.433|ICD10CM|Conjunctival hyperemia, bilateral|Conjunctival hyperemia, bilateral +C2225063|T033|PT|H11.433|ICD10CM|Conjunctival hyperemia, bilateral|Conjunctival hyperemia, bilateral +C2876036|T033|AB|H11.439|ICD10CM|Conjunctival hyperemia, unspecified eye|Conjunctival hyperemia, unspecified eye +C2876036|T033|PT|H11.439|ICD10CM|Conjunctival hyperemia, unspecified eye|Conjunctival hyperemia, unspecified eye +C0155170|T047|HT|H11.44|ICD10CM|Conjunctival cysts|Conjunctival cysts +C0155170|T047|AB|H11.44|ICD10CM|Conjunctival cysts|Conjunctival cysts +C2876037|T047|AB|H11.441|ICD10CM|Conjunctival cysts, right eye|Conjunctival cysts, right eye +C2876037|T047|PT|H11.441|ICD10CM|Conjunctival cysts, right eye|Conjunctival cysts, right eye +C2876038|T047|AB|H11.442|ICD10CM|Conjunctival cysts, left eye|Conjunctival cysts, left eye +C2876038|T047|PT|H11.442|ICD10CM|Conjunctival cysts, left eye|Conjunctival cysts, left eye +C2876039|T047|AB|H11.443|ICD10CM|Conjunctival cysts, bilateral|Conjunctival cysts, bilateral +C2876039|T047|PT|H11.443|ICD10CM|Conjunctival cysts, bilateral|Conjunctival cysts, bilateral +C2876040|T047|AB|H11.449|ICD10CM|Conjunctival cysts, unspecified eye|Conjunctival cysts, unspecified eye +C2876040|T047|PT|H11.449|ICD10CM|Conjunctival cysts, unspecified eye|Conjunctival cysts, unspecified eye +C0348521|T047|HT|H11.8|ICD10CM|Other specified disorders of conjunctiva|Other specified disorders of conjunctiva +C0348521|T047|AB|H11.8|ICD10CM|Other specified disorders of conjunctiva|Other specified disorders of conjunctiva +C0348521|T047|PT|H11.8|ICD10|Other specified disorders of conjunctiva|Other specified disorders of conjunctiva +C2876041|T047|AB|H11.81|ICD10CM|Pseudopterygium of conjunctiva|Pseudopterygium of conjunctiva +C2876041|T047|HT|H11.81|ICD10CM|Pseudopterygium of conjunctiva|Pseudopterygium of conjunctiva +C2876042|T047|AB|H11.811|ICD10CM|Pseudopterygium of conjunctiva, right eye|Pseudopterygium of conjunctiva, right eye +C2876042|T047|PT|H11.811|ICD10CM|Pseudopterygium of conjunctiva, right eye|Pseudopterygium of conjunctiva, right eye +C2876043|T047|AB|H11.812|ICD10CM|Pseudopterygium of conjunctiva, left eye|Pseudopterygium of conjunctiva, left eye +C2876043|T047|PT|H11.812|ICD10CM|Pseudopterygium of conjunctiva, left eye|Pseudopterygium of conjunctiva, left eye +C2876044|T047|AB|H11.813|ICD10CM|Pseudopterygium of conjunctiva, bilateral|Pseudopterygium of conjunctiva, bilateral +C2876044|T047|PT|H11.813|ICD10CM|Pseudopterygium of conjunctiva, bilateral|Pseudopterygium of conjunctiva, bilateral +C2876045|T047|AB|H11.819|ICD10CM|Pseudopterygium of conjunctiva, unspecified eye|Pseudopterygium of conjunctiva, unspecified eye +C2876045|T047|PT|H11.819|ICD10CM|Pseudopterygium of conjunctiva, unspecified eye|Pseudopterygium of conjunctiva, unspecified eye +C0878693|T047|HT|H11.82|ICD10CM|Conjunctivochalasis|Conjunctivochalasis +C0878693|T047|AB|H11.82|ICD10CM|Conjunctivochalasis|Conjunctivochalasis +C2876046|T047|AB|H11.821|ICD10CM|Conjunctivochalasis, right eye|Conjunctivochalasis, right eye +C2876046|T047|PT|H11.821|ICD10CM|Conjunctivochalasis, right eye|Conjunctivochalasis, right eye +C2876047|T047|AB|H11.822|ICD10CM|Conjunctivochalasis, left eye|Conjunctivochalasis, left eye +C2876047|T047|PT|H11.822|ICD10CM|Conjunctivochalasis, left eye|Conjunctivochalasis, left eye +C2876048|T047|AB|H11.823|ICD10CM|Conjunctivochalasis, bilateral|Conjunctivochalasis, bilateral +C2876048|T047|PT|H11.823|ICD10CM|Conjunctivochalasis, bilateral|Conjunctivochalasis, bilateral +C2876049|T047|AB|H11.829|ICD10CM|Conjunctivochalasis, unspecified eye|Conjunctivochalasis, unspecified eye +C2876049|T047|PT|H11.829|ICD10CM|Conjunctivochalasis, unspecified eye|Conjunctivochalasis, unspecified eye +C0348521|T047|PT|H11.89|ICD10CM|Other specified disorders of conjunctiva|Other specified disorders of conjunctiva +C0348521|T047|AB|H11.89|ICD10CM|Other specified disorders of conjunctiva|Other specified disorders of conjunctiva +C0009759|T047|PT|H11.9|ICD10|Disorder of conjunctiva, unspecified|Disorder of conjunctiva, unspecified +C0009759|T047|PT|H11.9|ICD10CM|Unspecified disorder of conjunctiva|Unspecified disorder of conjunctiva +C0009759|T047|AB|H11.9|ICD10CM|Unspecified disorder of conjunctiva|Unspecified disorder of conjunctiva +C0694483|T047|HT|H13|ICD10|Disorders of conjunctiva in diseases classified elsewhere|Disorders of conjunctiva in diseases classified elsewhere +C0348789|T047|PT|H13.0|ICD10|Filarial infection of conjunctiva|Filarial infection of conjunctiva +C0348522|T047|PT|H13.1|ICD10|Conjunctivitis in infectious and parasitic diseases classified elsewhere|Conjunctivitis in infectious and parasitic diseases classified elsewhere +C0348523|T047|PT|H13.2|ICD10|Conjunctivitis in other diseases classified elsewhere|Conjunctivitis in other diseases classified elsewhere +C0157721|T047|PT|H13.3|ICD10|Ocular pemphigoid|Ocular pemphigoid +C0348524|T047|PT|H13.8|ICD10|Other disorders of conjunctiva in diseases classified elsewhere|Other disorders of conjunctiva in diseases classified elsewhere +C0036412|T047|HT|H15|ICD10|Disorders of sclera|Disorders of sclera +C0036412|T047|AB|H15|ICD10CM|Disorders of sclera|Disorders of sclera +C0036412|T047|HT|H15|ICD10CM|Disorders of sclera|Disorders of sclera +C0348525|T047|HT|H15-H22|ICD10CM|Disorders of sclera, cornea, iris and ciliary body (H15-H22)|Disorders of sclera, cornea, iris and ciliary body (H15-H22) +C0348525|T047|HT|H15-H22.9|ICD10|Disorders of sclera, cornea, iris and ciliary body|Disorders of sclera, cornea, iris and ciliary body +C0036416|T047|PT|H15.0|ICD10|Scleritis|Scleritis +C0036416|T047|HT|H15.0|ICD10CM|Scleritis|Scleritis +C0036416|T047|AB|H15.0|ICD10CM|Scleritis|Scleritis +C0036416|T047|AB|H15.00|ICD10CM|Unspecified scleritis|Unspecified scleritis +C0036416|T047|HT|H15.00|ICD10CM|Unspecified scleritis|Unspecified scleritis +C2876050|T047|AB|H15.001|ICD10CM|Unspecified scleritis, right eye|Unspecified scleritis, right eye +C2876050|T047|PT|H15.001|ICD10CM|Unspecified scleritis, right eye|Unspecified scleritis, right eye +C2876051|T047|AB|H15.002|ICD10CM|Unspecified scleritis, left eye|Unspecified scleritis, left eye +C2876051|T047|PT|H15.002|ICD10CM|Unspecified scleritis, left eye|Unspecified scleritis, left eye +C2876052|T047|AB|H15.003|ICD10CM|Unspecified scleritis, bilateral|Unspecified scleritis, bilateral +C2876052|T047|PT|H15.003|ICD10CM|Unspecified scleritis, bilateral|Unspecified scleritis, bilateral +C2876053|T047|AB|H15.009|ICD10CM|Unspecified scleritis, unspecified eye|Unspecified scleritis, unspecified eye +C2876053|T047|PT|H15.009|ICD10CM|Unspecified scleritis, unspecified eye|Unspecified scleritis, unspecified eye +C0155353|T047|HT|H15.01|ICD10CM|Anterior scleritis|Anterior scleritis +C0155353|T047|AB|H15.01|ICD10CM|Anterior scleritis|Anterior scleritis +C2876054|T047|AB|H15.011|ICD10CM|Anterior scleritis, right eye|Anterior scleritis, right eye +C2876054|T047|PT|H15.011|ICD10CM|Anterior scleritis, right eye|Anterior scleritis, right eye +C2876055|T047|AB|H15.012|ICD10CM|Anterior scleritis, left eye|Anterior scleritis, left eye +C2876055|T047|PT|H15.012|ICD10CM|Anterior scleritis, left eye|Anterior scleritis, left eye +C2876056|T047|AB|H15.013|ICD10CM|Anterior scleritis, bilateral|Anterior scleritis, bilateral +C2876056|T047|PT|H15.013|ICD10CM|Anterior scleritis, bilateral|Anterior scleritis, bilateral +C2876057|T047|AB|H15.019|ICD10CM|Anterior scleritis, unspecified eye|Anterior scleritis, unspecified eye +C2876057|T047|PT|H15.019|ICD10CM|Anterior scleritis, unspecified eye|Anterior scleritis, unspecified eye +C0155356|T047|HT|H15.02|ICD10CM|Brawny scleritis|Brawny scleritis +C0155356|T047|AB|H15.02|ICD10CM|Brawny scleritis|Brawny scleritis +C2880145|T047|AB|H15.021|ICD10CM|Brawny scleritis, right eye|Brawny scleritis, right eye +C2880145|T047|PT|H15.021|ICD10CM|Brawny scleritis, right eye|Brawny scleritis, right eye +C2880146|T047|AB|H15.022|ICD10CM|Brawny scleritis, left eye|Brawny scleritis, left eye +C2880146|T047|PT|H15.022|ICD10CM|Brawny scleritis, left eye|Brawny scleritis, left eye +C2880147|T047|AB|H15.023|ICD10CM|Brawny scleritis, bilateral|Brawny scleritis, bilateral +C2880147|T047|PT|H15.023|ICD10CM|Brawny scleritis, bilateral|Brawny scleritis, bilateral +C2880148|T047|AB|H15.029|ICD10CM|Brawny scleritis, unspecified eye|Brawny scleritis, unspecified eye +C2880148|T047|PT|H15.029|ICD10CM|Brawny scleritis, unspecified eye|Brawny scleritis, unspecified eye +C0155357|T047|HT|H15.03|ICD10CM|Posterior scleritis|Posterior scleritis +C0155357|T047|AB|H15.03|ICD10CM|Posterior scleritis|Posterior scleritis +C0546985|T047|ET|H15.03|ICD10CM|Sclerotenonitis|Sclerotenonitis +C2880149|T047|AB|H15.031|ICD10CM|Posterior scleritis, right eye|Posterior scleritis, right eye +C2880149|T047|PT|H15.031|ICD10CM|Posterior scleritis, right eye|Posterior scleritis, right eye +C2880150|T047|AB|H15.032|ICD10CM|Posterior scleritis, left eye|Posterior scleritis, left eye +C2880150|T047|PT|H15.032|ICD10CM|Posterior scleritis, left eye|Posterior scleritis, left eye +C2880151|T047|AB|H15.033|ICD10CM|Posterior scleritis, bilateral|Posterior scleritis, bilateral +C2880151|T047|PT|H15.033|ICD10CM|Posterior scleritis, bilateral|Posterior scleritis, bilateral +C2880152|T047|AB|H15.039|ICD10CM|Posterior scleritis, unspecified eye|Posterior scleritis, unspecified eye +C2880152|T047|PT|H15.039|ICD10CM|Posterior scleritis, unspecified eye|Posterior scleritis, unspecified eye +C0155355|T047|HT|H15.04|ICD10CM|Scleritis with corneal involvement|Scleritis with corneal involvement +C0155355|T047|AB|H15.04|ICD10CM|Scleritis with corneal involvement|Scleritis with corneal involvement +C2880153|T047|AB|H15.041|ICD10CM|Scleritis with corneal involvement, right eye|Scleritis with corneal involvement, right eye +C2880153|T047|PT|H15.041|ICD10CM|Scleritis with corneal involvement, right eye|Scleritis with corneal involvement, right eye +C2880154|T047|AB|H15.042|ICD10CM|Scleritis with corneal involvement, left eye|Scleritis with corneal involvement, left eye +C2880154|T047|PT|H15.042|ICD10CM|Scleritis with corneal involvement, left eye|Scleritis with corneal involvement, left eye +C2880155|T047|AB|H15.043|ICD10CM|Scleritis with corneal involvement, bilateral|Scleritis with corneal involvement, bilateral +C2880155|T047|PT|H15.043|ICD10CM|Scleritis with corneal involvement, bilateral|Scleritis with corneal involvement, bilateral +C2880156|T047|AB|H15.049|ICD10CM|Scleritis with corneal involvement, unspecified eye|Scleritis with corneal involvement, unspecified eye +C2880156|T047|PT|H15.049|ICD10CM|Scleritis with corneal involvement, unspecified eye|Scleritis with corneal involvement, unspecified eye +C0155354|T047|HT|H15.05|ICD10CM|Scleromalacia perforans|Scleromalacia perforans +C0155354|T047|AB|H15.05|ICD10CM|Scleromalacia perforans|Scleromalacia perforans +C2880157|T047|AB|H15.051|ICD10CM|Scleromalacia perforans, right eye|Scleromalacia perforans, right eye +C2880157|T047|PT|H15.051|ICD10CM|Scleromalacia perforans, right eye|Scleromalacia perforans, right eye +C2880158|T047|AB|H15.052|ICD10CM|Scleromalacia perforans, left eye|Scleromalacia perforans, left eye +C2880158|T047|PT|H15.052|ICD10CM|Scleromalacia perforans, left eye|Scleromalacia perforans, left eye +C2880159|T047|AB|H15.053|ICD10CM|Scleromalacia perforans, bilateral|Scleromalacia perforans, bilateral +C2880159|T047|PT|H15.053|ICD10CM|Scleromalacia perforans, bilateral|Scleromalacia perforans, bilateral +C2880160|T047|AB|H15.059|ICD10CM|Scleromalacia perforans, unspecified eye|Scleromalacia perforans, unspecified eye +C2880160|T047|PT|H15.059|ICD10CM|Scleromalacia perforans, unspecified eye|Scleromalacia perforans, unspecified eye +C0029734|T047|HT|H15.09|ICD10CM|Other scleritis|Other scleritis +C0029734|T047|AB|H15.09|ICD10CM|Other scleritis|Other scleritis +C0271402|T047|ET|H15.09|ICD10CM|Scleral abscess|Scleral abscess +C2880161|T047|AB|H15.091|ICD10CM|Other scleritis, right eye|Other scleritis, right eye +C2880161|T047|PT|H15.091|ICD10CM|Other scleritis, right eye|Other scleritis, right eye +C2880162|T047|AB|H15.092|ICD10CM|Other scleritis, left eye|Other scleritis, left eye +C2880162|T047|PT|H15.092|ICD10CM|Other scleritis, left eye|Other scleritis, left eye +C2880163|T047|AB|H15.093|ICD10CM|Other scleritis, bilateral|Other scleritis, bilateral +C2880163|T047|PT|H15.093|ICD10CM|Other scleritis, bilateral|Other scleritis, bilateral +C2880164|T047|AB|H15.099|ICD10CM|Other scleritis, unspecified eye|Other scleritis, unspecified eye +C2880164|T047|PT|H15.099|ICD10CM|Other scleritis, unspecified eye|Other scleritis, unspecified eye +C0014583|T047|HT|H15.1|ICD10CM|Episcleritis|Episcleritis +C0014583|T047|AB|H15.1|ICD10CM|Episcleritis|Episcleritis +C0014583|T047|PT|H15.1|ICD10|Episcleritis|Episcleritis +C2880165|T047|AB|H15.10|ICD10CM|Unspecified episcleritis|Unspecified episcleritis +C2880165|T047|HT|H15.10|ICD10CM|Unspecified episcleritis|Unspecified episcleritis +C2880166|T047|AB|H15.101|ICD10CM|Unspecified episcleritis, right eye|Unspecified episcleritis, right eye +C2880166|T047|PT|H15.101|ICD10CM|Unspecified episcleritis, right eye|Unspecified episcleritis, right eye +C2880167|T047|AB|H15.102|ICD10CM|Unspecified episcleritis, left eye|Unspecified episcleritis, left eye +C2880167|T047|PT|H15.102|ICD10CM|Unspecified episcleritis, left eye|Unspecified episcleritis, left eye +C2880168|T047|AB|H15.103|ICD10CM|Unspecified episcleritis, bilateral|Unspecified episcleritis, bilateral +C2880168|T047|PT|H15.103|ICD10CM|Unspecified episcleritis, bilateral|Unspecified episcleritis, bilateral +C2880169|T047|AB|H15.109|ICD10CM|Unspecified episcleritis, unspecified eye|Unspecified episcleritis, unspecified eye +C2880169|T047|PT|H15.109|ICD10CM|Unspecified episcleritis, unspecified eye|Unspecified episcleritis, unspecified eye +C0155351|T047|HT|H15.11|ICD10CM|Episcleritis periodica fugax|Episcleritis periodica fugax +C0155351|T047|AB|H15.11|ICD10CM|Episcleritis periodica fugax|Episcleritis periodica fugax +C2880170|T047|AB|H15.111|ICD10CM|Episcleritis periodica fugax, right eye|Episcleritis periodica fugax, right eye +C2880170|T047|PT|H15.111|ICD10CM|Episcleritis periodica fugax, right eye|Episcleritis periodica fugax, right eye +C2880171|T047|AB|H15.112|ICD10CM|Episcleritis periodica fugax, left eye|Episcleritis periodica fugax, left eye +C2880171|T047|PT|H15.112|ICD10CM|Episcleritis periodica fugax, left eye|Episcleritis periodica fugax, left eye +C2880172|T047|AB|H15.113|ICD10CM|Episcleritis periodica fugax, bilateral|Episcleritis periodica fugax, bilateral +C2880172|T047|PT|H15.113|ICD10CM|Episcleritis periodica fugax, bilateral|Episcleritis periodica fugax, bilateral +C2880173|T047|AB|H15.119|ICD10CM|Episcleritis periodica fugax, unspecified eye|Episcleritis periodica fugax, unspecified eye +C2880173|T047|PT|H15.119|ICD10CM|Episcleritis periodica fugax, unspecified eye|Episcleritis periodica fugax, unspecified eye +C0155352|T047|HT|H15.12|ICD10CM|Nodular episcleritis|Nodular episcleritis +C0155352|T047|AB|H15.12|ICD10CM|Nodular episcleritis|Nodular episcleritis +C2880174|T047|AB|H15.121|ICD10CM|Nodular episcleritis, right eye|Nodular episcleritis, right eye +C2880174|T047|PT|H15.121|ICD10CM|Nodular episcleritis, right eye|Nodular episcleritis, right eye +C2880175|T047|AB|H15.122|ICD10CM|Nodular episcleritis, left eye|Nodular episcleritis, left eye +C2880175|T047|PT|H15.122|ICD10CM|Nodular episcleritis, left eye|Nodular episcleritis, left eye +C2880176|T047|AB|H15.123|ICD10CM|Nodular episcleritis, bilateral|Nodular episcleritis, bilateral +C2880176|T047|PT|H15.123|ICD10CM|Nodular episcleritis, bilateral|Nodular episcleritis, bilateral +C2880177|T047|AB|H15.129|ICD10CM|Nodular episcleritis, unspecified eye|Nodular episcleritis, unspecified eye +C2880177|T047|PT|H15.129|ICD10CM|Nodular episcleritis, unspecified eye|Nodular episcleritis, unspecified eye +C0155358|T047|HT|H15.8|ICD10CM|Other disorders of sclera|Other disorders of sclera +C0155358|T047|AB|H15.8|ICD10CM|Other disorders of sclera|Other disorders of sclera +C0155358|T047|PT|H15.8|ICD10|Other disorders of sclera|Other disorders of sclera +C0155361|T047|HT|H15.81|ICD10CM|Equatorial staphyloma|Equatorial staphyloma +C0155361|T047|AB|H15.81|ICD10CM|Equatorial staphyloma|Equatorial staphyloma +C2228265|T047|AB|H15.811|ICD10CM|Equatorial staphyloma, right eye|Equatorial staphyloma, right eye +C2228265|T047|PT|H15.811|ICD10CM|Equatorial staphyloma, right eye|Equatorial staphyloma, right eye +C2228264|T047|AB|H15.812|ICD10CM|Equatorial staphyloma, left eye|Equatorial staphyloma, left eye +C2228264|T047|PT|H15.812|ICD10CM|Equatorial staphyloma, left eye|Equatorial staphyloma, left eye +C2880178|T047|AB|H15.813|ICD10CM|Equatorial staphyloma, bilateral|Equatorial staphyloma, bilateral +C2880178|T047|PT|H15.813|ICD10CM|Equatorial staphyloma, bilateral|Equatorial staphyloma, bilateral +C2880179|T047|AB|H15.819|ICD10CM|Equatorial staphyloma, unspecified eye|Equatorial staphyloma, unspecified eye +C2880179|T047|PT|H15.819|ICD10CM|Equatorial staphyloma, unspecified eye|Equatorial staphyloma, unspecified eye +C0155362|T047|HT|H15.82|ICD10CM|Localized anterior staphyloma|Localized anterior staphyloma +C0155362|T047|AB|H15.82|ICD10CM|Localized anterior staphyloma|Localized anterior staphyloma +C2880180|T047|AB|H15.821|ICD10CM|Localized anterior staphyloma, right eye|Localized anterior staphyloma, right eye +C2880180|T047|PT|H15.821|ICD10CM|Localized anterior staphyloma, right eye|Localized anterior staphyloma, right eye +C2880181|T047|AB|H15.822|ICD10CM|Localized anterior staphyloma, left eye|Localized anterior staphyloma, left eye +C2880181|T047|PT|H15.822|ICD10CM|Localized anterior staphyloma, left eye|Localized anterior staphyloma, left eye +C2880182|T047|AB|H15.823|ICD10CM|Localized anterior staphyloma, bilateral|Localized anterior staphyloma, bilateral +C2880182|T047|PT|H15.823|ICD10CM|Localized anterior staphyloma, bilateral|Localized anterior staphyloma, bilateral +C2880183|T047|AB|H15.829|ICD10CM|Localized anterior staphyloma, unspecified eye|Localized anterior staphyloma, unspecified eye +C2880183|T047|PT|H15.829|ICD10CM|Localized anterior staphyloma, unspecified eye|Localized anterior staphyloma, unspecified eye +C0155360|T047|HT|H15.83|ICD10CM|Staphyloma posticum|Staphyloma posticum +C0155360|T047|AB|H15.83|ICD10CM|Staphyloma posticum|Staphyloma posticum +C2019867|T047|AB|H15.831|ICD10CM|Staphyloma posticum, right eye|Staphyloma posticum, right eye +C2019867|T047|PT|H15.831|ICD10CM|Staphyloma posticum, right eye|Staphyloma posticum, right eye +C2019866|T047|AB|H15.832|ICD10CM|Staphyloma posticum, left eye|Staphyloma posticum, left eye +C2019866|T047|PT|H15.832|ICD10CM|Staphyloma posticum, left eye|Staphyloma posticum, left eye +C2880184|T047|AB|H15.833|ICD10CM|Staphyloma posticum, bilateral|Staphyloma posticum, bilateral +C2880184|T047|PT|H15.833|ICD10CM|Staphyloma posticum, bilateral|Staphyloma posticum, bilateral +C2880185|T047|AB|H15.839|ICD10CM|Staphyloma posticum, unspecified eye|Staphyloma posticum, unspecified eye +C2880185|T047|PT|H15.839|ICD10CM|Staphyloma posticum, unspecified eye|Staphyloma posticum, unspecified eye +C0155359|T047|HT|H15.84|ICD10CM|Scleral ectasia|Scleral ectasia +C0155359|T047|AB|H15.84|ICD10CM|Scleral ectasia|Scleral ectasia +C2880186|T047|AB|H15.841|ICD10CM|Scleral ectasia, right eye|Scleral ectasia, right eye +C2880186|T047|PT|H15.841|ICD10CM|Scleral ectasia, right eye|Scleral ectasia, right eye +C2880187|T047|AB|H15.842|ICD10CM|Scleral ectasia, left eye|Scleral ectasia, left eye +C2880187|T047|PT|H15.842|ICD10CM|Scleral ectasia, left eye|Scleral ectasia, left eye +C2880188|T047|AB|H15.843|ICD10CM|Scleral ectasia, bilateral|Scleral ectasia, bilateral +C2880188|T047|PT|H15.843|ICD10CM|Scleral ectasia, bilateral|Scleral ectasia, bilateral +C2880189|T047|AB|H15.849|ICD10CM|Scleral ectasia, unspecified eye|Scleral ectasia, unspecified eye +C2880189|T047|PT|H15.849|ICD10CM|Scleral ectasia, unspecified eye|Scleral ectasia, unspecified eye +C0155363|T047|HT|H15.85|ICD10CM|Ring staphyloma|Ring staphyloma +C0155363|T047|AB|H15.85|ICD10CM|Ring staphyloma|Ring staphyloma +C2219318|T047|AB|H15.851|ICD10CM|Ring staphyloma, right eye|Ring staphyloma, right eye +C2219318|T047|PT|H15.851|ICD10CM|Ring staphyloma, right eye|Ring staphyloma, right eye +C2219317|T047|AB|H15.852|ICD10CM|Ring staphyloma, left eye|Ring staphyloma, left eye +C2219317|T047|PT|H15.852|ICD10CM|Ring staphyloma, left eye|Ring staphyloma, left eye +C2880190|T047|AB|H15.853|ICD10CM|Ring staphyloma, bilateral|Ring staphyloma, bilateral +C2880190|T047|PT|H15.853|ICD10CM|Ring staphyloma, bilateral|Ring staphyloma, bilateral +C2880191|T047|AB|H15.859|ICD10CM|Ring staphyloma, unspecified eye|Ring staphyloma, unspecified eye +C2880191|T047|PT|H15.859|ICD10CM|Ring staphyloma, unspecified eye|Ring staphyloma, unspecified eye +C0155358|T047|PT|H15.89|ICD10CM|Other disorders of sclera|Other disorders of sclera +C0155358|T047|AB|H15.89|ICD10CM|Other disorders of sclera|Other disorders of sclera +C0036412|T047|PT|H15.9|ICD10|Disorder of sclera, unspecified|Disorder of sclera, unspecified +C0036412|T047|AB|H15.9|ICD10CM|Unspecified disorder of sclera|Unspecified disorder of sclera +C0036412|T047|PT|H15.9|ICD10CM|Unspecified disorder of sclera|Unspecified disorder of sclera +C0022568|T047|HT|H16|ICD10|Keratitis|Keratitis +C0022568|T047|HT|H16|ICD10CM|Keratitis|Keratitis +C0022568|T047|AB|H16|ICD10CM|Keratitis|Keratitis +C0010043|T047|HT|H16.0|ICD10CM|Corneal ulcer|Corneal ulcer +C0010043|T047|AB|H16.0|ICD10CM|Corneal ulcer|Corneal ulcer +C0010043|T047|PT|H16.0|ICD10|Corneal ulcer|Corneal ulcer +C0010043|T047|AB|H16.00|ICD10CM|Unspecified corneal ulcer|Unspecified corneal ulcer +C0010043|T047|HT|H16.00|ICD10CM|Unspecified corneal ulcer|Unspecified corneal ulcer +C2880192|T047|AB|H16.001|ICD10CM|Unspecified corneal ulcer, right eye|Unspecified corneal ulcer, right eye +C2880192|T047|PT|H16.001|ICD10CM|Unspecified corneal ulcer, right eye|Unspecified corneal ulcer, right eye +C2880193|T047|AB|H16.002|ICD10CM|Unspecified corneal ulcer, left eye|Unspecified corneal ulcer, left eye +C2880193|T047|PT|H16.002|ICD10CM|Unspecified corneal ulcer, left eye|Unspecified corneal ulcer, left eye +C2880194|T047|AB|H16.003|ICD10CM|Unspecified corneal ulcer, bilateral|Unspecified corneal ulcer, bilateral +C2880194|T047|PT|H16.003|ICD10CM|Unspecified corneal ulcer, bilateral|Unspecified corneal ulcer, bilateral +C2880195|T047|AB|H16.009|ICD10CM|Unspecified corneal ulcer, unspecified eye|Unspecified corneal ulcer, unspecified eye +C2880195|T047|PT|H16.009|ICD10CM|Unspecified corneal ulcer, unspecified eye|Unspecified corneal ulcer, unspecified eye +C0155069|T047|HT|H16.01|ICD10CM|Central corneal ulcer|Central corneal ulcer +C0155069|T047|AB|H16.01|ICD10CM|Central corneal ulcer|Central corneal ulcer +C2880196|T047|AB|H16.011|ICD10CM|Central corneal ulcer, right eye|Central corneal ulcer, right eye +C2880196|T047|PT|H16.011|ICD10CM|Central corneal ulcer, right eye|Central corneal ulcer, right eye +C2880197|T047|AB|H16.012|ICD10CM|Central corneal ulcer, left eye|Central corneal ulcer, left eye +C2880197|T047|PT|H16.012|ICD10CM|Central corneal ulcer, left eye|Central corneal ulcer, left eye +C2880198|T047|AB|H16.013|ICD10CM|Central corneal ulcer, bilateral|Central corneal ulcer, bilateral +C2880198|T047|PT|H16.013|ICD10CM|Central corneal ulcer, bilateral|Central corneal ulcer, bilateral +C2880199|T047|AB|H16.019|ICD10CM|Central corneal ulcer, unspecified eye|Central corneal ulcer, unspecified eye +C2880199|T047|PT|H16.019|ICD10CM|Central corneal ulcer, unspecified eye|Central corneal ulcer, unspecified eye +C0155068|T047|HT|H16.02|ICD10CM|Ring corneal ulcer|Ring corneal ulcer +C0155068|T047|AB|H16.02|ICD10CM|Ring corneal ulcer|Ring corneal ulcer +C2880200|T047|AB|H16.021|ICD10CM|Ring corneal ulcer, right eye|Ring corneal ulcer, right eye +C2880200|T047|PT|H16.021|ICD10CM|Ring corneal ulcer, right eye|Ring corneal ulcer, right eye +C2880201|T047|AB|H16.022|ICD10CM|Ring corneal ulcer, left eye|Ring corneal ulcer, left eye +C2880201|T047|PT|H16.022|ICD10CM|Ring corneal ulcer, left eye|Ring corneal ulcer, left eye +C2880202|T047|AB|H16.023|ICD10CM|Ring corneal ulcer, bilateral|Ring corneal ulcer, bilateral +C2880202|T047|PT|H16.023|ICD10CM|Ring corneal ulcer, bilateral|Ring corneal ulcer, bilateral +C2880203|T047|AB|H16.029|ICD10CM|Ring corneal ulcer, unspecified eye|Ring corneal ulcer, unspecified eye +C2880203|T047|PT|H16.029|ICD10CM|Ring corneal ulcer, unspecified eye|Ring corneal ulcer, unspecified eye +C0155070|T047|HT|H16.03|ICD10CM|Corneal ulcer with hypopyon|Corneal ulcer with hypopyon +C0155070|T047|AB|H16.03|ICD10CM|Corneal ulcer with hypopyon|Corneal ulcer with hypopyon +C2880204|T047|AB|H16.031|ICD10CM|Corneal ulcer with hypopyon, right eye|Corneal ulcer with hypopyon, right eye +C2880204|T047|PT|H16.031|ICD10CM|Corneal ulcer with hypopyon, right eye|Corneal ulcer with hypopyon, right eye +C2880205|T047|AB|H16.032|ICD10CM|Corneal ulcer with hypopyon, left eye|Corneal ulcer with hypopyon, left eye +C2880205|T047|PT|H16.032|ICD10CM|Corneal ulcer with hypopyon, left eye|Corneal ulcer with hypopyon, left eye +C2880206|T047|AB|H16.033|ICD10CM|Corneal ulcer with hypopyon, bilateral|Corneal ulcer with hypopyon, bilateral +C2880206|T047|PT|H16.033|ICD10CM|Corneal ulcer with hypopyon, bilateral|Corneal ulcer with hypopyon, bilateral +C2880207|T047|AB|H16.039|ICD10CM|Corneal ulcer with hypopyon, unspecified eye|Corneal ulcer with hypopyon, unspecified eye +C2880207|T047|PT|H16.039|ICD10CM|Corneal ulcer with hypopyon, unspecified eye|Corneal ulcer with hypopyon, unspecified eye +C0155067|T047|HT|H16.04|ICD10CM|Marginal corneal ulcer|Marginal corneal ulcer +C0155067|T047|AB|H16.04|ICD10CM|Marginal corneal ulcer|Marginal corneal ulcer +C2880208|T047|AB|H16.041|ICD10CM|Marginal corneal ulcer, right eye|Marginal corneal ulcer, right eye +C2880208|T047|PT|H16.041|ICD10CM|Marginal corneal ulcer, right eye|Marginal corneal ulcer, right eye +C2880209|T047|AB|H16.042|ICD10CM|Marginal corneal ulcer, left eye|Marginal corneal ulcer, left eye +C2880209|T047|PT|H16.042|ICD10CM|Marginal corneal ulcer, left eye|Marginal corneal ulcer, left eye +C2880210|T047|AB|H16.043|ICD10CM|Marginal corneal ulcer, bilateral|Marginal corneal ulcer, bilateral +C2880210|T047|PT|H16.043|ICD10CM|Marginal corneal ulcer, bilateral|Marginal corneal ulcer, bilateral +C2880211|T047|AB|H16.049|ICD10CM|Marginal corneal ulcer, unspecified eye|Marginal corneal ulcer, unspecified eye +C2880211|T047|PT|H16.049|ICD10CM|Marginal corneal ulcer, unspecified eye|Marginal corneal ulcer, unspecified eye +C0155072|T047|HT|H16.05|ICD10CM|Mooren's corneal ulcer|Mooren's corneal ulcer +C0155072|T047|AB|H16.05|ICD10CM|Mooren's corneal ulcer|Mooren's corneal ulcer +C2880212|T047|AB|H16.051|ICD10CM|Mooren's corneal ulcer, right eye|Mooren's corneal ulcer, right eye +C2880212|T047|PT|H16.051|ICD10CM|Mooren's corneal ulcer, right eye|Mooren's corneal ulcer, right eye +C2880213|T047|AB|H16.052|ICD10CM|Mooren's corneal ulcer, left eye|Mooren's corneal ulcer, left eye +C2880213|T047|PT|H16.052|ICD10CM|Mooren's corneal ulcer, left eye|Mooren's corneal ulcer, left eye +C2880214|T047|AB|H16.053|ICD10CM|Mooren's corneal ulcer, bilateral|Mooren's corneal ulcer, bilateral +C2880214|T047|PT|H16.053|ICD10CM|Mooren's corneal ulcer, bilateral|Mooren's corneal ulcer, bilateral +C2880215|T047|AB|H16.059|ICD10CM|Mooren's corneal ulcer, unspecified eye|Mooren's corneal ulcer, unspecified eye +C2880215|T047|PT|H16.059|ICD10CM|Mooren's corneal ulcer, unspecified eye|Mooren's corneal ulcer, unspecified eye +C0155071|T047|HT|H16.06|ICD10CM|Mycotic corneal ulcer|Mycotic corneal ulcer +C0155071|T047|AB|H16.06|ICD10CM|Mycotic corneal ulcer|Mycotic corneal ulcer +C2880216|T047|AB|H16.061|ICD10CM|Mycotic corneal ulcer, right eye|Mycotic corneal ulcer, right eye +C2880216|T047|PT|H16.061|ICD10CM|Mycotic corneal ulcer, right eye|Mycotic corneal ulcer, right eye +C2880217|T047|AB|H16.062|ICD10CM|Mycotic corneal ulcer, left eye|Mycotic corneal ulcer, left eye +C2880217|T047|PT|H16.062|ICD10CM|Mycotic corneal ulcer, left eye|Mycotic corneal ulcer, left eye +C2880218|T047|AB|H16.063|ICD10CM|Mycotic corneal ulcer, bilateral|Mycotic corneal ulcer, bilateral +C2880218|T047|PT|H16.063|ICD10CM|Mycotic corneal ulcer, bilateral|Mycotic corneal ulcer, bilateral +C2880219|T047|AB|H16.069|ICD10CM|Mycotic corneal ulcer, unspecified eye|Mycotic corneal ulcer, unspecified eye +C2880219|T047|PT|H16.069|ICD10CM|Mycotic corneal ulcer, unspecified eye|Mycotic corneal ulcer, unspecified eye +C0151844|T047|HT|H16.07|ICD10CM|Perforated corneal ulcer|Perforated corneal ulcer +C0151844|T047|AB|H16.07|ICD10CM|Perforated corneal ulcer|Perforated corneal ulcer +C2880220|T047|AB|H16.071|ICD10CM|Perforated corneal ulcer, right eye|Perforated corneal ulcer, right eye +C2880220|T047|PT|H16.071|ICD10CM|Perforated corneal ulcer, right eye|Perforated corneal ulcer, right eye +C2880221|T047|AB|H16.072|ICD10CM|Perforated corneal ulcer, left eye|Perforated corneal ulcer, left eye +C2880221|T047|PT|H16.072|ICD10CM|Perforated corneal ulcer, left eye|Perforated corneal ulcer, left eye +C2880222|T047|AB|H16.073|ICD10CM|Perforated corneal ulcer, bilateral|Perforated corneal ulcer, bilateral +C2880222|T047|PT|H16.073|ICD10CM|Perforated corneal ulcer, bilateral|Perforated corneal ulcer, bilateral +C2880223|T047|AB|H16.079|ICD10CM|Perforated corneal ulcer, unspecified eye|Perforated corneal ulcer, unspecified eye +C2880223|T047|PT|H16.079|ICD10CM|Perforated corneal ulcer, unspecified eye|Perforated corneal ulcer, unspecified eye +C2880224|T047|AB|H16.1|ICD10CM|Other and unsp superficial keratitis without conjunctivitis|Other and unsp superficial keratitis without conjunctivitis +C2880224|T047|HT|H16.1|ICD10CM|Other and unspecified superficial keratitis without conjunctivitis|Other and unspecified superficial keratitis without conjunctivitis +C0339239|T047|PT|H16.1|ICD10|Other superficial keratitis without conjunctivitis|Other superficial keratitis without conjunctivitis +C0155074|T047|AB|H16.10|ICD10CM|Unspecified superficial keratitis|Unspecified superficial keratitis +C0155074|T047|HT|H16.10|ICD10CM|Unspecified superficial keratitis|Unspecified superficial keratitis +C2880225|T047|AB|H16.101|ICD10CM|Unspecified superficial keratitis, right eye|Unspecified superficial keratitis, right eye +C2880225|T047|PT|H16.101|ICD10CM|Unspecified superficial keratitis, right eye|Unspecified superficial keratitis, right eye +C2880226|T047|AB|H16.102|ICD10CM|Unspecified superficial keratitis, left eye|Unspecified superficial keratitis, left eye +C2880226|T047|PT|H16.102|ICD10CM|Unspecified superficial keratitis, left eye|Unspecified superficial keratitis, left eye +C2880227|T047|AB|H16.103|ICD10CM|Unspecified superficial keratitis, bilateral|Unspecified superficial keratitis, bilateral +C2880227|T047|PT|H16.103|ICD10CM|Unspecified superficial keratitis, bilateral|Unspecified superficial keratitis, bilateral +C2880228|T047|AB|H16.109|ICD10CM|Unspecified superficial keratitis, unspecified eye|Unspecified superficial keratitis, unspecified eye +C2880228|T047|PT|H16.109|ICD10CM|Unspecified superficial keratitis, unspecified eye|Unspecified superficial keratitis, unspecified eye +C0271260|T047|ET|H16.11|ICD10CM|Areolar keratitis|Areolar keratitis +C0155076|T047|HT|H16.11|ICD10CM|Macular keratitis|Macular keratitis +C0155076|T047|AB|H16.11|ICD10CM|Macular keratitis|Macular keratitis +C0271261|T047|ET|H16.11|ICD10CM|Nummular keratitis|Nummular keratitis +C0271262|T047|ET|H16.11|ICD10CM|Stellate keratitis|Stellate keratitis +C0271263|T047|ET|H16.11|ICD10CM|Striate keratitis|Striate keratitis +C2880229|T047|AB|H16.111|ICD10CM|Macular keratitis, right eye|Macular keratitis, right eye +C2880229|T047|PT|H16.111|ICD10CM|Macular keratitis, right eye|Macular keratitis, right eye +C2880230|T047|AB|H16.112|ICD10CM|Macular keratitis, left eye|Macular keratitis, left eye +C2880230|T047|PT|H16.112|ICD10CM|Macular keratitis, left eye|Macular keratitis, left eye +C2880231|T047|AB|H16.113|ICD10CM|Macular keratitis, bilateral|Macular keratitis, bilateral +C2880231|T047|PT|H16.113|ICD10CM|Macular keratitis, bilateral|Macular keratitis, bilateral +C2880232|T047|AB|H16.119|ICD10CM|Macular keratitis, unspecified eye|Macular keratitis, unspecified eye +C2880232|T047|PT|H16.119|ICD10CM|Macular keratitis, unspecified eye|Macular keratitis, unspecified eye +C0155077|T047|HT|H16.12|ICD10CM|Filamentary keratitis|Filamentary keratitis +C0155077|T047|AB|H16.12|ICD10CM|Filamentary keratitis|Filamentary keratitis +C2880233|T047|AB|H16.121|ICD10CM|Filamentary keratitis, right eye|Filamentary keratitis, right eye +C2880233|T047|PT|H16.121|ICD10CM|Filamentary keratitis, right eye|Filamentary keratitis, right eye +C2880234|T047|AB|H16.122|ICD10CM|Filamentary keratitis, left eye|Filamentary keratitis, left eye +C2880234|T047|PT|H16.122|ICD10CM|Filamentary keratitis, left eye|Filamentary keratitis, left eye +C2880235|T047|AB|H16.123|ICD10CM|Filamentary keratitis, bilateral|Filamentary keratitis, bilateral +C2880235|T047|PT|H16.123|ICD10CM|Filamentary keratitis, bilateral|Filamentary keratitis, bilateral +C2880236|T047|AB|H16.129|ICD10CM|Filamentary keratitis, unspecified eye|Filamentary keratitis, unspecified eye +C2880236|T047|PT|H16.129|ICD10CM|Filamentary keratitis, unspecified eye|Filamentary keratitis, unspecified eye +C0155078|T047|HT|H16.13|ICD10CM|Photokeratitis|Photokeratitis +C0155078|T047|AB|H16.13|ICD10CM|Photokeratitis|Photokeratitis +C0271265|T037|ET|H16.13|ICD10CM|Snow blindness|Snow blindness +C0339299|T047|ET|H16.13|ICD10CM|Welders keratitis|Welders keratitis +C2880237|T047|AB|H16.131|ICD10CM|Photokeratitis, right eye|Photokeratitis, right eye +C2880237|T047|PT|H16.131|ICD10CM|Photokeratitis, right eye|Photokeratitis, right eye +C2880238|T047|AB|H16.132|ICD10CM|Photokeratitis, left eye|Photokeratitis, left eye +C2880238|T047|PT|H16.132|ICD10CM|Photokeratitis, left eye|Photokeratitis, left eye +C2880239|T047|AB|H16.133|ICD10CM|Photokeratitis, bilateral|Photokeratitis, bilateral +C2880239|T047|PT|H16.133|ICD10CM|Photokeratitis, bilateral|Photokeratitis, bilateral +C2880240|T047|AB|H16.139|ICD10CM|Photokeratitis, unspecified eye|Photokeratitis, unspecified eye +C2880240|T047|PT|H16.139|ICD10CM|Photokeratitis, unspecified eye|Photokeratitis, unspecified eye +C0259799|T047|HT|H16.14|ICD10CM|Punctate keratitis|Punctate keratitis +C0259799|T047|AB|H16.14|ICD10CM|Punctate keratitis|Punctate keratitis +C2880241|T047|AB|H16.141|ICD10CM|Punctate keratitis, right eye|Punctate keratitis, right eye +C2880241|T047|PT|H16.141|ICD10CM|Punctate keratitis, right eye|Punctate keratitis, right eye +C2880242|T047|AB|H16.142|ICD10CM|Punctate keratitis, left eye|Punctate keratitis, left eye +C2880242|T047|PT|H16.142|ICD10CM|Punctate keratitis, left eye|Punctate keratitis, left eye +C2880243|T047|AB|H16.143|ICD10CM|Punctate keratitis, bilateral|Punctate keratitis, bilateral +C2880243|T047|PT|H16.143|ICD10CM|Punctate keratitis, bilateral|Punctate keratitis, bilateral +C2880244|T047|AB|H16.149|ICD10CM|Punctate keratitis, unspecified eye|Punctate keratitis, unspecified eye +C2880244|T047|PT|H16.149|ICD10CM|Punctate keratitis, unspecified eye|Punctate keratitis, unspecified eye +C0022573|T047|HT|H16.2|ICD10CM|Keratoconjunctivitis|Keratoconjunctivitis +C0022573|T047|AB|H16.2|ICD10CM|Keratoconjunctivitis|Keratoconjunctivitis +C0022573|T047|PT|H16.2|ICD10|Keratoconjunctivitis|Keratoconjunctivitis +C0022573|T047|ET|H16.20|ICD10CM|Superficial keratitis with conjunctivitis NOS|Superficial keratitis with conjunctivitis NOS +C0022573|T047|AB|H16.20|ICD10CM|Unspecified keratoconjunctivitis|Unspecified keratoconjunctivitis +C0022573|T047|HT|H16.20|ICD10CM|Unspecified keratoconjunctivitis|Unspecified keratoconjunctivitis +C2880245|T047|AB|H16.201|ICD10CM|Unspecified keratoconjunctivitis, right eye|Unspecified keratoconjunctivitis, right eye +C2880245|T047|PT|H16.201|ICD10CM|Unspecified keratoconjunctivitis, right eye|Unspecified keratoconjunctivitis, right eye +C2880246|T047|AB|H16.202|ICD10CM|Unspecified keratoconjunctivitis, left eye|Unspecified keratoconjunctivitis, left eye +C2880246|T047|PT|H16.202|ICD10CM|Unspecified keratoconjunctivitis, left eye|Unspecified keratoconjunctivitis, left eye +C2880247|T047|AB|H16.203|ICD10CM|Unspecified keratoconjunctivitis, bilateral|Unspecified keratoconjunctivitis, bilateral +C2880247|T047|PT|H16.203|ICD10CM|Unspecified keratoconjunctivitis, bilateral|Unspecified keratoconjunctivitis, bilateral +C2880248|T047|AB|H16.209|ICD10CM|Unspecified keratoconjunctivitis, unspecified eye|Unspecified keratoconjunctivitis, unspecified eye +C2880248|T047|PT|H16.209|ICD10CM|Unspecified keratoconjunctivitis, unspecified eye|Unspecified keratoconjunctivitis, unspecified eye +C0339295|T047|HT|H16.21|ICD10CM|Exposure keratoconjunctivitis|Exposure keratoconjunctivitis +C0339295|T047|AB|H16.21|ICD10CM|Exposure keratoconjunctivitis|Exposure keratoconjunctivitis +C2880249|T047|AB|H16.211|ICD10CM|Exposure keratoconjunctivitis, right eye|Exposure keratoconjunctivitis, right eye +C2880249|T047|PT|H16.211|ICD10CM|Exposure keratoconjunctivitis, right eye|Exposure keratoconjunctivitis, right eye +C2880250|T047|AB|H16.212|ICD10CM|Exposure keratoconjunctivitis, left eye|Exposure keratoconjunctivitis, left eye +C2880250|T047|PT|H16.212|ICD10CM|Exposure keratoconjunctivitis, left eye|Exposure keratoconjunctivitis, left eye +C2880251|T047|AB|H16.213|ICD10CM|Exposure keratoconjunctivitis, bilateral|Exposure keratoconjunctivitis, bilateral +C2880251|T047|PT|H16.213|ICD10CM|Exposure keratoconjunctivitis, bilateral|Exposure keratoconjunctivitis, bilateral +C2880252|T047|AB|H16.219|ICD10CM|Exposure keratoconjunctivitis, unspecified eye|Exposure keratoconjunctivitis, unspecified eye +C2880252|T047|PT|H16.219|ICD10CM|Exposure keratoconjunctivitis, unspecified eye|Exposure keratoconjunctivitis, unspecified eye +C0155082|T047|AB|H16.22|ICD10CM|Keratoconjunctivitis sicca, not specified as Sjogren's|Keratoconjunctivitis sicca, not specified as Sjogren's +C0155082|T047|HT|H16.22|ICD10CM|Keratoconjunctivitis sicca, not specified as Sjögren's|Keratoconjunctivitis sicca, not specified as Sjögren's +C2880253|T047|AB|H16.221|ICD10CM|Keratoconjunct sicca, not specified as Sjogren's, right eye|Keratoconjunct sicca, not specified as Sjogren's, right eye +C2880253|T047|PT|H16.221|ICD10CM|Keratoconjunctivitis sicca, not specified as Sjögren's, right eye|Keratoconjunctivitis sicca, not specified as Sjögren's, right eye +C2880254|T047|AB|H16.222|ICD10CM|Keratoconjunct sicca, not specified as Sjogren's, left eye|Keratoconjunct sicca, not specified as Sjogren's, left eye +C2880254|T047|PT|H16.222|ICD10CM|Keratoconjunctivitis sicca, not specified as Sjögren's, left eye|Keratoconjunctivitis sicca, not specified as Sjögren's, left eye +C2880255|T047|AB|H16.223|ICD10CM|Keratoconjunct sicca, not specified as Sjogren's, bilateral|Keratoconjunct sicca, not specified as Sjogren's, bilateral +C2880255|T047|PT|H16.223|ICD10CM|Keratoconjunctivitis sicca, not specified as Sjögren's, bilateral|Keratoconjunctivitis sicca, not specified as Sjögren's, bilateral +C2880256|T047|AB|H16.229|ICD10CM|Keratoconjunct sicca, not specified as Sjogren's, unsp eye|Keratoconjunct sicca, not specified as Sjogren's, unsp eye +C2880256|T047|PT|H16.229|ICD10CM|Keratoconjunctivitis sicca, not specified as Sjögren's, unspecified eye|Keratoconjunctivitis sicca, not specified as Sjögren's, unspecified eye +C0155084|T047|HT|H16.23|ICD10CM|Neurotrophic keratoconjunctivitis|Neurotrophic keratoconjunctivitis +C0155084|T047|AB|H16.23|ICD10CM|Neurotrophic keratoconjunctivitis|Neurotrophic keratoconjunctivitis +C2880257|T047|AB|H16.231|ICD10CM|Neurotrophic keratoconjunctivitis, right eye|Neurotrophic keratoconjunctivitis, right eye +C2880257|T047|PT|H16.231|ICD10CM|Neurotrophic keratoconjunctivitis, right eye|Neurotrophic keratoconjunctivitis, right eye +C2880258|T047|AB|H16.232|ICD10CM|Neurotrophic keratoconjunctivitis, left eye|Neurotrophic keratoconjunctivitis, left eye +C2880258|T047|PT|H16.232|ICD10CM|Neurotrophic keratoconjunctivitis, left eye|Neurotrophic keratoconjunctivitis, left eye +C2880259|T047|AB|H16.233|ICD10CM|Neurotrophic keratoconjunctivitis, bilateral|Neurotrophic keratoconjunctivitis, bilateral +C2880259|T047|PT|H16.233|ICD10CM|Neurotrophic keratoconjunctivitis, bilateral|Neurotrophic keratoconjunctivitis, bilateral +C2880260|T047|AB|H16.239|ICD10CM|Neurotrophic keratoconjunctivitis, unspecified eye|Neurotrophic keratoconjunctivitis, unspecified eye +C2880260|T047|PT|H16.239|ICD10CM|Neurotrophic keratoconjunctivitis, unspecified eye|Neurotrophic keratoconjunctivitis, unspecified eye +C0154775|T047|HT|H16.24|ICD10CM|Ophthalmia nodosa|Ophthalmia nodosa +C0154775|T047|AB|H16.24|ICD10CM|Ophthalmia nodosa|Ophthalmia nodosa +C2880261|T047|AB|H16.241|ICD10CM|Ophthalmia nodosa, right eye|Ophthalmia nodosa, right eye +C2880261|T047|PT|H16.241|ICD10CM|Ophthalmia nodosa, right eye|Ophthalmia nodosa, right eye +C2880262|T047|AB|H16.242|ICD10CM|Ophthalmia nodosa, left eye|Ophthalmia nodosa, left eye +C2880262|T047|PT|H16.242|ICD10CM|Ophthalmia nodosa, left eye|Ophthalmia nodosa, left eye +C2880263|T047|AB|H16.243|ICD10CM|Ophthalmia nodosa, bilateral|Ophthalmia nodosa, bilateral +C2880263|T047|PT|H16.243|ICD10CM|Ophthalmia nodosa, bilateral|Ophthalmia nodosa, bilateral +C2880264|T047|AB|H16.249|ICD10CM|Ophthalmia nodosa, unspecified eye|Ophthalmia nodosa, unspecified eye +C2880264|T047|PT|H16.249|ICD10CM|Ophthalmia nodosa, unspecified eye|Ophthalmia nodosa, unspecified eye +C0155080|T047|HT|H16.25|ICD10CM|Phlyctenular keratoconjunctivitis|Phlyctenular keratoconjunctivitis +C0155080|T047|AB|H16.25|ICD10CM|Phlyctenular keratoconjunctivitis|Phlyctenular keratoconjunctivitis +C2880265|T047|AB|H16.251|ICD10CM|Phlyctenular keratoconjunctivitis, right eye|Phlyctenular keratoconjunctivitis, right eye +C2880265|T047|PT|H16.251|ICD10CM|Phlyctenular keratoconjunctivitis, right eye|Phlyctenular keratoconjunctivitis, right eye +C2880266|T047|AB|H16.252|ICD10CM|Phlyctenular keratoconjunctivitis, left eye|Phlyctenular keratoconjunctivitis, left eye +C2880266|T047|PT|H16.252|ICD10CM|Phlyctenular keratoconjunctivitis, left eye|Phlyctenular keratoconjunctivitis, left eye +C2880267|T047|AB|H16.253|ICD10CM|Phlyctenular keratoconjunctivitis, bilateral|Phlyctenular keratoconjunctivitis, bilateral +C2880267|T047|PT|H16.253|ICD10CM|Phlyctenular keratoconjunctivitis, bilateral|Phlyctenular keratoconjunctivitis, bilateral +C2880268|T047|AB|H16.259|ICD10CM|Phlyctenular keratoconjunctivitis, unspecified eye|Phlyctenular keratoconjunctivitis, unspecified eye +C2880268|T047|PT|H16.259|ICD10CM|Phlyctenular keratoconjunctivitis, unspecified eye|Phlyctenular keratoconjunctivitis, unspecified eye +C2880269|T047|AB|H16.26|ICD10CM|Vernal keratoconjunct, w limbar and corneal involvement|Vernal keratoconjunct, w limbar and corneal involvement +C2880269|T047|HT|H16.26|ICD10CM|Vernal keratoconjunctivitis, with limbar and corneal involvement|Vernal keratoconjunctivitis, with limbar and corneal involvement +C2880270|T047|AB|H16.261|ICD10CM|Vernal keratoconjunct, w limbar and corneal involv, r eye|Vernal keratoconjunct, w limbar and corneal involv, r eye +C2880270|T047|PT|H16.261|ICD10CM|Vernal keratoconjunctivitis, with limbar and corneal involvement, right eye|Vernal keratoconjunctivitis, with limbar and corneal involvement, right eye +C2880271|T047|AB|H16.262|ICD10CM|Vernal keratoconjunct, w limbar and corneal involv, left eye|Vernal keratoconjunct, w limbar and corneal involv, left eye +C2880271|T047|PT|H16.262|ICD10CM|Vernal keratoconjunctivitis, with limbar and corneal involvement, left eye|Vernal keratoconjunctivitis, with limbar and corneal involvement, left eye +C2880272|T047|AB|H16.263|ICD10CM|Vernal keratoconjunct, w limbar and corneal involv, bi|Vernal keratoconjunct, w limbar and corneal involv, bi +C2880272|T047|PT|H16.263|ICD10CM|Vernal keratoconjunctivitis, with limbar and corneal involvement, bilateral|Vernal keratoconjunctivitis, with limbar and corneal involvement, bilateral +C2880273|T047|AB|H16.269|ICD10CM|Vernal keratoconjunct, w limbar and corneal involv, unsp eye|Vernal keratoconjunct, w limbar and corneal involv, unsp eye +C2880273|T047|PT|H16.269|ICD10CM|Vernal keratoconjunctivitis, with limbar and corneal involvement, unspecified eye|Vernal keratoconjunctivitis, with limbar and corneal involvement, unspecified eye +C0029650|T047|HT|H16.29|ICD10CM|Other keratoconjunctivitis|Other keratoconjunctivitis +C0029650|T047|AB|H16.29|ICD10CM|Other keratoconjunctivitis|Other keratoconjunctivitis +C2880274|T047|AB|H16.291|ICD10CM|Other keratoconjunctivitis, right eye|Other keratoconjunctivitis, right eye +C2880274|T047|PT|H16.291|ICD10CM|Other keratoconjunctivitis, right eye|Other keratoconjunctivitis, right eye +C2880275|T047|AB|H16.292|ICD10CM|Other keratoconjunctivitis, left eye|Other keratoconjunctivitis, left eye +C2880275|T047|PT|H16.292|ICD10CM|Other keratoconjunctivitis, left eye|Other keratoconjunctivitis, left eye +C2880276|T047|AB|H16.293|ICD10CM|Other keratoconjunctivitis, bilateral|Other keratoconjunctivitis, bilateral +C2880276|T047|PT|H16.293|ICD10CM|Other keratoconjunctivitis, bilateral|Other keratoconjunctivitis, bilateral +C2880277|T047|AB|H16.299|ICD10CM|Other keratoconjunctivitis, unspecified eye|Other keratoconjunctivitis, unspecified eye +C2880277|T047|PT|H16.299|ICD10CM|Other keratoconjunctivitis, unspecified eye|Other keratoconjunctivitis, unspecified eye +C0155087|T047|HT|H16.3|ICD10CM|Interstitial and deep keratitis|Interstitial and deep keratitis +C0155087|T047|AB|H16.3|ICD10CM|Interstitial and deep keratitis|Interstitial and deep keratitis +C0155087|T047|PT|H16.3|ICD10|Interstitial and deep keratitis|Interstitial and deep keratitis +C0155088|T047|AB|H16.30|ICD10CM|Unspecified interstitial keratitis|Unspecified interstitial keratitis +C0155088|T047|HT|H16.30|ICD10CM|Unspecified interstitial keratitis|Unspecified interstitial keratitis +C2880278|T047|AB|H16.301|ICD10CM|Unspecified interstitial keratitis, right eye|Unspecified interstitial keratitis, right eye +C2880278|T047|PT|H16.301|ICD10CM|Unspecified interstitial keratitis, right eye|Unspecified interstitial keratitis, right eye +C2880279|T047|AB|H16.302|ICD10CM|Unspecified interstitial keratitis, left eye|Unspecified interstitial keratitis, left eye +C2880279|T047|PT|H16.302|ICD10CM|Unspecified interstitial keratitis, left eye|Unspecified interstitial keratitis, left eye +C2880280|T047|AB|H16.303|ICD10CM|Unspecified interstitial keratitis, bilateral|Unspecified interstitial keratitis, bilateral +C2880280|T047|PT|H16.303|ICD10CM|Unspecified interstitial keratitis, bilateral|Unspecified interstitial keratitis, bilateral +C2880281|T047|AB|H16.309|ICD10CM|Unspecified interstitial keratitis, unspecified eye|Unspecified interstitial keratitis, unspecified eye +C2880281|T047|PT|H16.309|ICD10CM|Unspecified interstitial keratitis, unspecified eye|Unspecified interstitial keratitis, unspecified eye +C0155091|T047|HT|H16.31|ICD10CM|Corneal abscess|Corneal abscess +C0155091|T047|AB|H16.31|ICD10CM|Corneal abscess|Corneal abscess +C2880282|T047|AB|H16.311|ICD10CM|Corneal abscess, right eye|Corneal abscess, right eye +C2880282|T047|PT|H16.311|ICD10CM|Corneal abscess, right eye|Corneal abscess, right eye +C2880283|T047|AB|H16.312|ICD10CM|Corneal abscess, left eye|Corneal abscess, left eye +C2880283|T047|PT|H16.312|ICD10CM|Corneal abscess, left eye|Corneal abscess, left eye +C2880284|T047|AB|H16.313|ICD10CM|Corneal abscess, bilateral|Corneal abscess, bilateral +C2880284|T047|PT|H16.313|ICD10CM|Corneal abscess, bilateral|Corneal abscess, bilateral +C2880285|T047|AB|H16.319|ICD10CM|Corneal abscess, unspecified eye|Corneal abscess, unspecified eye +C2880285|T047|PT|H16.319|ICD10CM|Corneal abscess, unspecified eye|Corneal abscess, unspecified eye +C0271270|T047|ET|H16.32|ICD10CM|Cogan's syndrome|Cogan's syndrome +C0155089|T047|HT|H16.32|ICD10CM|Diffuse interstitial keratitis|Diffuse interstitial keratitis +C0155089|T047|AB|H16.32|ICD10CM|Diffuse interstitial keratitis|Diffuse interstitial keratitis +C2880286|T047|AB|H16.321|ICD10CM|Diffuse interstitial keratitis, right eye|Diffuse interstitial keratitis, right eye +C2880286|T047|PT|H16.321|ICD10CM|Diffuse interstitial keratitis, right eye|Diffuse interstitial keratitis, right eye +C2880287|T047|AB|H16.322|ICD10CM|Diffuse interstitial keratitis, left eye|Diffuse interstitial keratitis, left eye +C2880287|T047|PT|H16.322|ICD10CM|Diffuse interstitial keratitis, left eye|Diffuse interstitial keratitis, left eye +C2880288|T047|AB|H16.323|ICD10CM|Diffuse interstitial keratitis, bilateral|Diffuse interstitial keratitis, bilateral +C2880288|T047|PT|H16.323|ICD10CM|Diffuse interstitial keratitis, bilateral|Diffuse interstitial keratitis, bilateral +C2880289|T047|AB|H16.329|ICD10CM|Diffuse interstitial keratitis, unspecified eye|Diffuse interstitial keratitis, unspecified eye +C2880289|T047|PT|H16.329|ICD10CM|Diffuse interstitial keratitis, unspecified eye|Diffuse interstitial keratitis, unspecified eye +C0155090|T047|HT|H16.33|ICD10CM|Sclerosing keratitis|Sclerosing keratitis +C0155090|T047|AB|H16.33|ICD10CM|Sclerosing keratitis|Sclerosing keratitis +C2880290|T047|AB|H16.331|ICD10CM|Sclerosing keratitis, right eye|Sclerosing keratitis, right eye +C2880290|T047|PT|H16.331|ICD10CM|Sclerosing keratitis, right eye|Sclerosing keratitis, right eye +C2880291|T047|AB|H16.332|ICD10CM|Sclerosing keratitis, left eye|Sclerosing keratitis, left eye +C2880291|T047|PT|H16.332|ICD10CM|Sclerosing keratitis, left eye|Sclerosing keratitis, left eye +C2880292|T047|AB|H16.333|ICD10CM|Sclerosing keratitis, bilateral|Sclerosing keratitis, bilateral +C2880292|T047|PT|H16.333|ICD10CM|Sclerosing keratitis, bilateral|Sclerosing keratitis, bilateral +C2880293|T047|AB|H16.339|ICD10CM|Sclerosing keratitis, unspecified eye|Sclerosing keratitis, unspecified eye +C2880293|T047|PT|H16.339|ICD10CM|Sclerosing keratitis, unspecified eye|Sclerosing keratitis, unspecified eye +C0155092|T047|HT|H16.39|ICD10CM|Other interstitial and deep keratitis|Other interstitial and deep keratitis +C0155092|T047|AB|H16.39|ICD10CM|Other interstitial and deep keratitis|Other interstitial and deep keratitis +C2880294|T047|AB|H16.391|ICD10CM|Other interstitial and deep keratitis, right eye|Other interstitial and deep keratitis, right eye +C2880294|T047|PT|H16.391|ICD10CM|Other interstitial and deep keratitis, right eye|Other interstitial and deep keratitis, right eye +C2880295|T047|AB|H16.392|ICD10CM|Other interstitial and deep keratitis, left eye|Other interstitial and deep keratitis, left eye +C2880295|T047|PT|H16.392|ICD10CM|Other interstitial and deep keratitis, left eye|Other interstitial and deep keratitis, left eye +C2880296|T047|AB|H16.393|ICD10CM|Other interstitial and deep keratitis, bilateral|Other interstitial and deep keratitis, bilateral +C2880296|T047|PT|H16.393|ICD10CM|Other interstitial and deep keratitis, bilateral|Other interstitial and deep keratitis, bilateral +C2880297|T047|AB|H16.399|ICD10CM|Other interstitial and deep keratitis, unspecified eye|Other interstitial and deep keratitis, unspecified eye +C2880297|T047|PT|H16.399|ICD10CM|Other interstitial and deep keratitis, unspecified eye|Other interstitial and deep keratitis, unspecified eye +C0085109|T047|HT|H16.4|ICD10CM|Corneal neovascularization|Corneal neovascularization +C0085109|T047|AB|H16.4|ICD10CM|Corneal neovascularization|Corneal neovascularization +C0085109|T047|PT|H16.4|ICD10|Corneal neovascularization|Corneal neovascularization +C0085109|T047|AB|H16.40|ICD10CM|Unspecified corneal neovascularization|Unspecified corneal neovascularization +C0085109|T047|HT|H16.40|ICD10CM|Unspecified corneal neovascularization|Unspecified corneal neovascularization +C2880298|T047|AB|H16.401|ICD10CM|Unspecified corneal neovascularization, right eye|Unspecified corneal neovascularization, right eye +C2880298|T047|PT|H16.401|ICD10CM|Unspecified corneal neovascularization, right eye|Unspecified corneal neovascularization, right eye +C2880299|T047|AB|H16.402|ICD10CM|Unspecified corneal neovascularization, left eye|Unspecified corneal neovascularization, left eye +C2880299|T047|PT|H16.402|ICD10CM|Unspecified corneal neovascularization, left eye|Unspecified corneal neovascularization, left eye +C2880300|T047|AB|H16.403|ICD10CM|Unspecified corneal neovascularization, bilateral|Unspecified corneal neovascularization, bilateral +C2880300|T047|PT|H16.403|ICD10CM|Unspecified corneal neovascularization, bilateral|Unspecified corneal neovascularization, bilateral +C2880301|T047|AB|H16.409|ICD10CM|Unspecified corneal neovascularization, unspecified eye|Unspecified corneal neovascularization, unspecified eye +C2880301|T047|PT|H16.409|ICD10CM|Unspecified corneal neovascularization, unspecified eye|Unspecified corneal neovascularization, unspecified eye +C0155096|T190|HT|H16.41|ICD10CM|Ghost vessels (corneal)|Ghost vessels (corneal) +C0155096|T190|AB|H16.41|ICD10CM|Ghost vessels (corneal)|Ghost vessels (corneal) +C2880302|T190|AB|H16.411|ICD10CM|Ghost vessels (corneal), right eye|Ghost vessels (corneal), right eye +C2880302|T190|PT|H16.411|ICD10CM|Ghost vessels (corneal), right eye|Ghost vessels (corneal), right eye +C2880303|T190|AB|H16.412|ICD10CM|Ghost vessels (corneal), left eye|Ghost vessels (corneal), left eye +C2880303|T190|PT|H16.412|ICD10CM|Ghost vessels (corneal), left eye|Ghost vessels (corneal), left eye +C2880304|T190|AB|H16.413|ICD10CM|Ghost vessels (corneal), bilateral|Ghost vessels (corneal), bilateral +C2880304|T190|PT|H16.413|ICD10CM|Ghost vessels (corneal), bilateral|Ghost vessels (corneal), bilateral +C0155096|T190|AB|H16.419|ICD10CM|Ghost vessels (corneal), unspecified eye|Ghost vessels (corneal), unspecified eye +C0155096|T190|PT|H16.419|ICD10CM|Ghost vessels (corneal), unspecified eye|Ghost vessels (corneal), unspecified eye +C0155094|T047|HT|H16.42|ICD10CM|Pannus (corneal)|Pannus (corneal) +C0155094|T047|AB|H16.42|ICD10CM|Pannus (corneal)|Pannus (corneal) +C2880305|T047|AB|H16.421|ICD10CM|Pannus (corneal), right eye|Pannus (corneal), right eye +C2880305|T047|PT|H16.421|ICD10CM|Pannus (corneal), right eye|Pannus (corneal), right eye +C2069850|T047|AB|H16.422|ICD10CM|Pannus (corneal), left eye|Pannus (corneal), left eye +C2069850|T047|PT|H16.422|ICD10CM|Pannus (corneal), left eye|Pannus (corneal), left eye +C2880306|T047|AB|H16.423|ICD10CM|Pannus (corneal), bilateral|Pannus (corneal), bilateral +C2880306|T047|PT|H16.423|ICD10CM|Pannus (corneal), bilateral|Pannus (corneal), bilateral +C2880307|T047|AB|H16.429|ICD10CM|Pannus (corneal), unspecified eye|Pannus (corneal), unspecified eye +C2880307|T047|PT|H16.429|ICD10CM|Pannus (corneal), unspecified eye|Pannus (corneal), unspecified eye +C0155093|T047|HT|H16.43|ICD10CM|Localized vascularization of cornea|Localized vascularization of cornea +C0155093|T047|AB|H16.43|ICD10CM|Localized vascularization of cornea|Localized vascularization of cornea +C2880308|T047|AB|H16.431|ICD10CM|Localized vascularization of cornea, right eye|Localized vascularization of cornea, right eye +C2880308|T047|PT|H16.431|ICD10CM|Localized vascularization of cornea, right eye|Localized vascularization of cornea, right eye +C2880309|T047|AB|H16.432|ICD10CM|Localized vascularization of cornea, left eye|Localized vascularization of cornea, left eye +C2880309|T047|PT|H16.432|ICD10CM|Localized vascularization of cornea, left eye|Localized vascularization of cornea, left eye +C2880310|T047|AB|H16.433|ICD10CM|Localized vascularization of cornea, bilateral|Localized vascularization of cornea, bilateral +C2880310|T047|PT|H16.433|ICD10CM|Localized vascularization of cornea, bilateral|Localized vascularization of cornea, bilateral +C2880311|T047|AB|H16.439|ICD10CM|Localized vascularization of cornea, unspecified eye|Localized vascularization of cornea, unspecified eye +C2880311|T047|PT|H16.439|ICD10CM|Localized vascularization of cornea, unspecified eye|Localized vascularization of cornea, unspecified eye +C0155095|T047|HT|H16.44|ICD10CM|Deep vascularization of cornea|Deep vascularization of cornea +C0155095|T047|AB|H16.44|ICD10CM|Deep vascularization of cornea|Deep vascularization of cornea +C2880312|T047|AB|H16.441|ICD10CM|Deep vascularization of cornea, right eye|Deep vascularization of cornea, right eye +C2880312|T047|PT|H16.441|ICD10CM|Deep vascularization of cornea, right eye|Deep vascularization of cornea, right eye +C2880313|T047|AB|H16.442|ICD10CM|Deep vascularization of cornea, left eye|Deep vascularization of cornea, left eye +C2880313|T047|PT|H16.442|ICD10CM|Deep vascularization of cornea, left eye|Deep vascularization of cornea, left eye +C2880314|T047|AB|H16.443|ICD10CM|Deep vascularization of cornea, bilateral|Deep vascularization of cornea, bilateral +C2880314|T047|PT|H16.443|ICD10CM|Deep vascularization of cornea, bilateral|Deep vascularization of cornea, bilateral +C2880315|T047|AB|H16.449|ICD10CM|Deep vascularization of cornea, unspecified eye|Deep vascularization of cornea, unspecified eye +C2880315|T047|PT|H16.449|ICD10CM|Deep vascularization of cornea, unspecified eye|Deep vascularization of cornea, unspecified eye +C0348526|T047|PT|H16.8|ICD10|Other keratitis|Other keratitis +C0348526|T047|PT|H16.8|ICD10CM|Other keratitis|Other keratitis +C0348526|T047|AB|H16.8|ICD10CM|Other keratitis|Other keratitis +C0022568|T047|PT|H16.9|ICD10|Keratitis, unspecified|Keratitis, unspecified +C0022568|T047|PT|H16.9|ICD10CM|Unspecified keratitis|Unspecified keratitis +C0022568|T047|AB|H16.9|ICD10CM|Unspecified keratitis|Unspecified keratitis +C0155098|T020|HT|H17|ICD10|Corneal scars and opacities|Corneal scars and opacities +C0155098|T020|HT|H17|ICD10CM|Corneal scars and opacities|Corneal scars and opacities +C0155098|T020|AB|H17|ICD10CM|Corneal scars and opacities|Corneal scars and opacities +C0271275|T033|HT|H17.0|ICD10CM|Adherent leukoma|Adherent leukoma +C0271275|T033|AB|H17.0|ICD10CM|Adherent leukoma|Adherent leukoma +C0271275|T033|PT|H17.0|ICD10|Adherent leukoma|Adherent leukoma +C0271275|T033|AB|H17.00|ICD10CM|Adherent leukoma, unspecified eye|Adherent leukoma, unspecified eye +C0271275|T033|PT|H17.00|ICD10CM|Adherent leukoma, unspecified eye|Adherent leukoma, unspecified eye +C2215334|T033|AB|H17.01|ICD10CM|Adherent leukoma, right eye|Adherent leukoma, right eye +C2215334|T033|PT|H17.01|ICD10CM|Adherent leukoma, right eye|Adherent leukoma, right eye +C2215333|T033|AB|H17.02|ICD10CM|Adherent leukoma, left eye|Adherent leukoma, left eye +C2215333|T033|PT|H17.02|ICD10CM|Adherent leukoma, left eye|Adherent leukoma, left eye +C2215332|T033|AB|H17.03|ICD10CM|Adherent leukoma, bilateral|Adherent leukoma, bilateral +C2215332|T033|PT|H17.03|ICD10CM|Adherent leukoma, bilateral|Adherent leukoma, bilateral +C0007686|T033|AB|H17.1|ICD10CM|Central corneal opacity|Central corneal opacity +C0007686|T033|HT|H17.1|ICD10CM|Central corneal opacity|Central corneal opacity +C0348527|T020|PT|H17.1|ICD10|Other central corneal opacity|Other central corneal opacity +C2880318|T020|AB|H17.10|ICD10CM|Central corneal opacity, unspecified eye|Central corneal opacity, unspecified eye +C2880318|T020|PT|H17.10|ICD10CM|Central corneal opacity, unspecified eye|Central corneal opacity, unspecified eye +C2880319|T020|AB|H17.11|ICD10CM|Central corneal opacity, right eye|Central corneal opacity, right eye +C2880319|T020|PT|H17.11|ICD10CM|Central corneal opacity, right eye|Central corneal opacity, right eye +C2880320|T020|AB|H17.12|ICD10CM|Central corneal opacity, left eye|Central corneal opacity, left eye +C2880320|T020|PT|H17.12|ICD10CM|Central corneal opacity, left eye|Central corneal opacity, left eye +C2880321|T020|AB|H17.13|ICD10CM|Central corneal opacity, bilateral|Central corneal opacity, bilateral +C2880321|T020|PT|H17.13|ICD10CM|Central corneal opacity, bilateral|Central corneal opacity, bilateral +C0348528|T020|PT|H17.8|ICD10|Other corneal scars and opacities|Other corneal scars and opacities +C0348528|T020|HT|H17.8|ICD10CM|Other corneal scars and opacities|Other corneal scars and opacities +C0348528|T020|AB|H17.8|ICD10CM|Other corneal scars and opacities|Other corneal scars and opacities +C0271272|T047|ET|H17.81|ICD10CM|Corneal nebula|Corneal nebula +C0155099|T033|HT|H17.81|ICD10CM|Minor opacity of cornea|Minor opacity of cornea +C0155099|T033|AB|H17.81|ICD10CM|Minor opacity of cornea|Minor opacity of cornea +C2880322|T047|AB|H17.811|ICD10CM|Minor opacity of cornea, right eye|Minor opacity of cornea, right eye +C2880322|T047|PT|H17.811|ICD10CM|Minor opacity of cornea, right eye|Minor opacity of cornea, right eye +C2880323|T047|AB|H17.812|ICD10CM|Minor opacity of cornea, left eye|Minor opacity of cornea, left eye +C2880323|T047|PT|H17.812|ICD10CM|Minor opacity of cornea, left eye|Minor opacity of cornea, left eye +C2880324|T047|AB|H17.813|ICD10CM|Minor opacity of cornea, bilateral|Minor opacity of cornea, bilateral +C2880324|T047|PT|H17.813|ICD10CM|Minor opacity of cornea, bilateral|Minor opacity of cornea, bilateral +C2880325|T047|AB|H17.819|ICD10CM|Minor opacity of cornea, unspecified eye|Minor opacity of cornea, unspecified eye +C2880325|T047|PT|H17.819|ICD10CM|Minor opacity of cornea, unspecified eye|Minor opacity of cornea, unspecified eye +C0155100|T033|HT|H17.82|ICD10CM|Peripheral opacity of cornea|Peripheral opacity of cornea +C0155100|T033|AB|H17.82|ICD10CM|Peripheral opacity of cornea|Peripheral opacity of cornea +C2880326|T047|AB|H17.821|ICD10CM|Peripheral opacity of cornea, right eye|Peripheral opacity of cornea, right eye +C2880326|T047|PT|H17.821|ICD10CM|Peripheral opacity of cornea, right eye|Peripheral opacity of cornea, right eye +C2880327|T047|AB|H17.822|ICD10CM|Peripheral opacity of cornea, left eye|Peripheral opacity of cornea, left eye +C2880327|T047|PT|H17.822|ICD10CM|Peripheral opacity of cornea, left eye|Peripheral opacity of cornea, left eye +C2880328|T047|AB|H17.823|ICD10CM|Peripheral opacity of cornea, bilateral|Peripheral opacity of cornea, bilateral +C2880328|T047|PT|H17.823|ICD10CM|Peripheral opacity of cornea, bilateral|Peripheral opacity of cornea, bilateral +C2880329|T047|AB|H17.829|ICD10CM|Peripheral opacity of cornea, unspecified eye|Peripheral opacity of cornea, unspecified eye +C2880329|T047|PT|H17.829|ICD10CM|Peripheral opacity of cornea, unspecified eye|Peripheral opacity of cornea, unspecified eye +C0348528|T020|PT|H17.89|ICD10CM|Other corneal scars and opacities|Other corneal scars and opacities +C0348528|T020|AB|H17.89|ICD10CM|Other corneal scars and opacities|Other corneal scars and opacities +C0155098|T020|PT|H17.9|ICD10|Corneal scar and opacity, unspecified|Corneal scar and opacity, unspecified +C0155098|T020|AB|H17.9|ICD10CM|Unspecified corneal scar and opacity|Unspecified corneal scar and opacity +C0155098|T020|PT|H17.9|ICD10CM|Unspecified corneal scar and opacity|Unspecified corneal scar and opacity +C0155137|T047|AB|H18|ICD10CM|Other disorders of cornea|Other disorders of cornea +C0155137|T047|HT|H18|ICD10CM|Other disorders of cornea|Other disorders of cornea +C0155137|T047|HT|H18|ICD10|Other disorders of cornea|Other disorders of cornea +C0339249|T033|PT|H18.0|ICD10|Corneal pigmentations and deposits|Corneal pigmentations and deposits +C0339249|T033|HT|H18.0|ICD10CM|Corneal pigmentations and deposits|Corneal pigmentations and deposits +C0339249|T033|AB|H18.0|ICD10CM|Corneal pigmentations and deposits|Corneal pigmentations and deposits +C0162281|T047|AB|H18.00|ICD10CM|Unspecified corneal deposit|Unspecified corneal deposit +C0162281|T047|HT|H18.00|ICD10CM|Unspecified corneal deposit|Unspecified corneal deposit +C2880330|T047|AB|H18.001|ICD10CM|Unspecified corneal deposit, right eye|Unspecified corneal deposit, right eye +C2880330|T047|PT|H18.001|ICD10CM|Unspecified corneal deposit, right eye|Unspecified corneal deposit, right eye +C2880331|T047|AB|H18.002|ICD10CM|Unspecified corneal deposit, left eye|Unspecified corneal deposit, left eye +C2880331|T047|PT|H18.002|ICD10CM|Unspecified corneal deposit, left eye|Unspecified corneal deposit, left eye +C2880332|T047|AB|H18.003|ICD10CM|Unspecified corneal deposit, bilateral|Unspecified corneal deposit, bilateral +C2880332|T047|PT|H18.003|ICD10CM|Unspecified corneal deposit, bilateral|Unspecified corneal deposit, bilateral +C2880333|T047|AB|H18.009|ICD10CM|Unspecified corneal deposit, unspecified eye|Unspecified corneal deposit, unspecified eye +C2880333|T047|PT|H18.009|ICD10CM|Unspecified corneal deposit, unspecified eye|Unspecified corneal deposit, unspecified eye +C0155104|T047|HT|H18.01|ICD10CM|Anterior corneal pigmentations|Anterior corneal pigmentations +C0155104|T047|AB|H18.01|ICD10CM|Anterior corneal pigmentations|Anterior corneal pigmentations +C2880334|T047|ET|H18.01|ICD10CM|Staehli's line|Staehli's line +C2880335|T047|AB|H18.011|ICD10CM|Anterior corneal pigmentations, right eye|Anterior corneal pigmentations, right eye +C2880335|T047|PT|H18.011|ICD10CM|Anterior corneal pigmentations, right eye|Anterior corneal pigmentations, right eye +C2880336|T047|AB|H18.012|ICD10CM|Anterior corneal pigmentations, left eye|Anterior corneal pigmentations, left eye +C2880336|T047|PT|H18.012|ICD10CM|Anterior corneal pigmentations, left eye|Anterior corneal pigmentations, left eye +C2880337|T047|AB|H18.013|ICD10CM|Anterior corneal pigmentations, bilateral|Anterior corneal pigmentations, bilateral +C2880337|T047|PT|H18.013|ICD10CM|Anterior corneal pigmentations, bilateral|Anterior corneal pigmentations, bilateral +C2880338|T047|AB|H18.019|ICD10CM|Anterior corneal pigmentations, unspecified eye|Anterior corneal pigmentations, unspecified eye +C2880338|T047|PT|H18.019|ICD10CM|Anterior corneal pigmentations, unspecified eye|Anterior corneal pigmentations, unspecified eye +C0155108|T047|HT|H18.02|ICD10CM|Argentous corneal deposits|Argentous corneal deposits +C0155108|T047|AB|H18.02|ICD10CM|Argentous corneal deposits|Argentous corneal deposits +C2880339|T047|AB|H18.021|ICD10CM|Argentous corneal deposits, right eye|Argentous corneal deposits, right eye +C2880339|T047|PT|H18.021|ICD10CM|Argentous corneal deposits, right eye|Argentous corneal deposits, right eye +C2880340|T047|AB|H18.022|ICD10CM|Argentous corneal deposits, left eye|Argentous corneal deposits, left eye +C2880340|T047|PT|H18.022|ICD10CM|Argentous corneal deposits, left eye|Argentous corneal deposits, left eye +C2880341|T047|AB|H18.023|ICD10CM|Argentous corneal deposits, bilateral|Argentous corneal deposits, bilateral +C2880341|T047|PT|H18.023|ICD10CM|Argentous corneal deposits, bilateral|Argentous corneal deposits, bilateral +C2880342|T047|AB|H18.029|ICD10CM|Argentous corneal deposits, unspecified eye|Argentous corneal deposits, unspecified eye +C2880342|T047|PT|H18.029|ICD10CM|Argentous corneal deposits, unspecified eye|Argentous corneal deposits, unspecified eye +C2880343|T184|AB|H18.03|ICD10CM|Corneal deposits in metabolic disorders|Corneal deposits in metabolic disorders +C2880343|T184|HT|H18.03|ICD10CM|Corneal deposits in metabolic disorders|Corneal deposits in metabolic disorders +C2880344|T184|AB|H18.031|ICD10CM|Corneal deposits in metabolic disorders, right eye|Corneal deposits in metabolic disorders, right eye +C2880344|T184|PT|H18.031|ICD10CM|Corneal deposits in metabolic disorders, right eye|Corneal deposits in metabolic disorders, right eye +C2880345|T184|AB|H18.032|ICD10CM|Corneal deposits in metabolic disorders, left eye|Corneal deposits in metabolic disorders, left eye +C2880345|T184|PT|H18.032|ICD10CM|Corneal deposits in metabolic disorders, left eye|Corneal deposits in metabolic disorders, left eye +C2880346|T184|AB|H18.033|ICD10CM|Corneal deposits in metabolic disorders, bilateral|Corneal deposits in metabolic disorders, bilateral +C2880346|T184|PT|H18.033|ICD10CM|Corneal deposits in metabolic disorders, bilateral|Corneal deposits in metabolic disorders, bilateral +C2880347|T184|AB|H18.039|ICD10CM|Corneal deposits in metabolic disorders, unspecified eye|Corneal deposits in metabolic disorders, unspecified eye +C2880347|T184|PT|H18.039|ICD10CM|Corneal deposits in metabolic disorders, unspecified eye|Corneal deposits in metabolic disorders, unspecified eye +C0152457|T047|HT|H18.04|ICD10CM|Kayser-Fleischer ring|Kayser-Fleischer ring +C0152457|T047|AB|H18.04|ICD10CM|Kayser-Fleischer ring|Kayser-Fleischer ring +C2069843|T033|AB|H18.041|ICD10CM|Kayser-Fleischer ring, right eye|Kayser-Fleischer ring, right eye +C2069843|T033|PT|H18.041|ICD10CM|Kayser-Fleischer ring, right eye|Kayser-Fleischer ring, right eye +C2069844|T033|AB|H18.042|ICD10CM|Kayser-Fleischer ring, left eye|Kayser-Fleischer ring, left eye +C2069844|T033|PT|H18.042|ICD10CM|Kayser-Fleischer ring, left eye|Kayser-Fleischer ring, left eye +C2880348|T047|AB|H18.043|ICD10CM|Kayser-Fleischer ring, bilateral|Kayser-Fleischer ring, bilateral +C2880348|T047|PT|H18.043|ICD10CM|Kayser-Fleischer ring, bilateral|Kayser-Fleischer ring, bilateral +C2880349|T047|AB|H18.049|ICD10CM|Kayser-Fleischer ring, unspecified eye|Kayser-Fleischer ring, unspecified eye +C2880349|T047|PT|H18.049|ICD10CM|Kayser-Fleischer ring, unspecified eye|Kayser-Fleischer ring, unspecified eye +C0271278|T047|ET|H18.05|ICD10CM|Krukenberg's spindle|Krukenberg's spindle +C0155106|T047|HT|H18.05|ICD10CM|Posterior corneal pigmentations|Posterior corneal pigmentations +C0155106|T047|AB|H18.05|ICD10CM|Posterior corneal pigmentations|Posterior corneal pigmentations +C2880350|T047|AB|H18.051|ICD10CM|Posterior corneal pigmentations, right eye|Posterior corneal pigmentations, right eye +C2880350|T047|PT|H18.051|ICD10CM|Posterior corneal pigmentations, right eye|Posterior corneal pigmentations, right eye +C2880351|T047|AB|H18.052|ICD10CM|Posterior corneal pigmentations, left eye|Posterior corneal pigmentations, left eye +C2880351|T047|PT|H18.052|ICD10CM|Posterior corneal pigmentations, left eye|Posterior corneal pigmentations, left eye +C2880352|T047|AB|H18.053|ICD10CM|Posterior corneal pigmentations, bilateral|Posterior corneal pigmentations, bilateral +C2880352|T047|PT|H18.053|ICD10CM|Posterior corneal pigmentations, bilateral|Posterior corneal pigmentations, bilateral +C2880353|T047|AB|H18.059|ICD10CM|Posterior corneal pigmentations, unspecified eye|Posterior corneal pigmentations, unspecified eye +C2880353|T047|PT|H18.059|ICD10CM|Posterior corneal pigmentations, unspecified eye|Posterior corneal pigmentations, unspecified eye +C0339255|T046|ET|H18.06|ICD10CM|Hematocornea|Hematocornea +C0155105|T047|HT|H18.06|ICD10CM|Stromal corneal pigmentations|Stromal corneal pigmentations +C0155105|T047|AB|H18.06|ICD10CM|Stromal corneal pigmentations|Stromal corneal pigmentations +C2880354|T047|AB|H18.061|ICD10CM|Stromal corneal pigmentations, right eye|Stromal corneal pigmentations, right eye +C2880354|T047|PT|H18.061|ICD10CM|Stromal corneal pigmentations, right eye|Stromal corneal pigmentations, right eye +C2880355|T047|AB|H18.062|ICD10CM|Stromal corneal pigmentations, left eye|Stromal corneal pigmentations, left eye +C2880355|T047|PT|H18.062|ICD10CM|Stromal corneal pigmentations, left eye|Stromal corneal pigmentations, left eye +C2880356|T047|AB|H18.063|ICD10CM|Stromal corneal pigmentations, bilateral|Stromal corneal pigmentations, bilateral +C2880356|T047|PT|H18.063|ICD10CM|Stromal corneal pigmentations, bilateral|Stromal corneal pigmentations, bilateral +C2880357|T047|AB|H18.069|ICD10CM|Stromal corneal pigmentations, unspecified eye|Stromal corneal pigmentations, unspecified eye +C2880357|T047|PT|H18.069|ICD10CM|Stromal corneal pigmentations, unspecified eye|Stromal corneal pigmentations, unspecified eye +C0155111|T047|HT|H18.1|ICD10CM|Bullous keratopathy|Bullous keratopathy +C0155111|T047|AB|H18.1|ICD10CM|Bullous keratopathy|Bullous keratopathy +C0155111|T047|PT|H18.1|ICD10|Bullous keratopathy|Bullous keratopathy +C2880358|T047|AB|H18.10|ICD10CM|Bullous keratopathy, unspecified eye|Bullous keratopathy, unspecified eye +C2880358|T047|PT|H18.10|ICD10CM|Bullous keratopathy, unspecified eye|Bullous keratopathy, unspecified eye +C2231420|T047|AB|H18.11|ICD10CM|Bullous keratopathy, right eye|Bullous keratopathy, right eye +C2231420|T047|PT|H18.11|ICD10CM|Bullous keratopathy, right eye|Bullous keratopathy, right eye +C2231421|T047|AB|H18.12|ICD10CM|Bullous keratopathy, left eye|Bullous keratopathy, left eye +C2231421|T047|PT|H18.12|ICD10CM|Bullous keratopathy, left eye|Bullous keratopathy, left eye +C2880359|T047|AB|H18.13|ICD10CM|Bullous keratopathy, bilateral|Bullous keratopathy, bilateral +C2880359|T047|PT|H18.13|ICD10CM|Bullous keratopathy, bilateral|Bullous keratopathy, bilateral +C2880360|T047|AB|H18.2|ICD10CM|Other and unspecified corneal edema|Other and unspecified corneal edema +C2880360|T047|HT|H18.2|ICD10CM|Other and unspecified corneal edema|Other and unspecified corneal edema +C0348529|T046|PT|H18.2|ICD10AE|Other corneal edema|Other corneal edema +C0348529|T046|PT|H18.2|ICD10|Other corneal oedema|Other corneal oedema +C0010037|T046|AB|H18.20|ICD10CM|Unspecified corneal edema|Unspecified corneal edema +C0010037|T046|PT|H18.20|ICD10CM|Unspecified corneal edema|Unspecified corneal edema +C2880361|T047|AB|H18.21|ICD10CM|Corneal edema secondary to contact lens|Corneal edema secondary to contact lens +C2880361|T047|HT|H18.21|ICD10CM|Corneal edema secondary to contact lens|Corneal edema secondary to contact lens +C2880362|T047|AB|H18.211|ICD10CM|Corneal edema secondary to contact lens, right eye|Corneal edema secondary to contact lens, right eye +C2880362|T047|PT|H18.211|ICD10CM|Corneal edema secondary to contact lens, right eye|Corneal edema secondary to contact lens, right eye +C2880363|T047|AB|H18.212|ICD10CM|Corneal edema secondary to contact lens, left eye|Corneal edema secondary to contact lens, left eye +C2880363|T047|PT|H18.212|ICD10CM|Corneal edema secondary to contact lens, left eye|Corneal edema secondary to contact lens, left eye +C2880364|T047|AB|H18.213|ICD10CM|Corneal edema secondary to contact lens, bilateral|Corneal edema secondary to contact lens, bilateral +C2880364|T047|PT|H18.213|ICD10CM|Corneal edema secondary to contact lens, bilateral|Corneal edema secondary to contact lens, bilateral +C2880365|T047|AB|H18.219|ICD10CM|Corneal edema secondary to contact lens, unspecified eye|Corneal edema secondary to contact lens, unspecified eye +C2880365|T047|PT|H18.219|ICD10CM|Corneal edema secondary to contact lens, unspecified eye|Corneal edema secondary to contact lens, unspecified eye +C0155109|T047|HT|H18.22|ICD10CM|Idiopathic corneal edema|Idiopathic corneal edema +C0155109|T047|AB|H18.22|ICD10CM|Idiopathic corneal edema|Idiopathic corneal edema +C2880366|T047|AB|H18.221|ICD10CM|Idiopathic corneal edema, right eye|Idiopathic corneal edema, right eye +C2880366|T047|PT|H18.221|ICD10CM|Idiopathic corneal edema, right eye|Idiopathic corneal edema, right eye +C2880367|T047|AB|H18.222|ICD10CM|Idiopathic corneal edema, left eye|Idiopathic corneal edema, left eye +C2880367|T047|PT|H18.222|ICD10CM|Idiopathic corneal edema, left eye|Idiopathic corneal edema, left eye +C2880368|T047|AB|H18.223|ICD10CM|Idiopathic corneal edema, bilateral|Idiopathic corneal edema, bilateral +C2880368|T047|PT|H18.223|ICD10CM|Idiopathic corneal edema, bilateral|Idiopathic corneal edema, bilateral +C2880369|T047|AB|H18.229|ICD10CM|Idiopathic corneal edema, unspecified eye|Idiopathic corneal edema, unspecified eye +C2880369|T047|PT|H18.229|ICD10CM|Idiopathic corneal edema, unspecified eye|Idiopathic corneal edema, unspecified eye +C0155110|T047|HT|H18.23|ICD10CM|Secondary corneal edema|Secondary corneal edema +C0155110|T047|AB|H18.23|ICD10CM|Secondary corneal edema|Secondary corneal edema +C2880370|T047|AB|H18.231|ICD10CM|Secondary corneal edema, right eye|Secondary corneal edema, right eye +C2880370|T047|PT|H18.231|ICD10CM|Secondary corneal edema, right eye|Secondary corneal edema, right eye +C2880371|T047|AB|H18.232|ICD10CM|Secondary corneal edema, left eye|Secondary corneal edema, left eye +C2880371|T047|PT|H18.232|ICD10CM|Secondary corneal edema, left eye|Secondary corneal edema, left eye +C2880372|T047|AB|H18.233|ICD10CM|Secondary corneal edema, bilateral|Secondary corneal edema, bilateral +C2880372|T047|PT|H18.233|ICD10CM|Secondary corneal edema, bilateral|Secondary corneal edema, bilateral +C2880373|T047|AB|H18.239|ICD10CM|Secondary corneal edema, unspecified eye|Secondary corneal edema, unspecified eye +C2880373|T047|PT|H18.239|ICD10CM|Secondary corneal edema, unspecified eye|Secondary corneal edema, unspecified eye +C0155114|T020|PT|H18.3|ICD10|Changes in corneal membranes|Changes in corneal membranes +C0155114|T020|HT|H18.3|ICD10CM|Changes of corneal membranes|Changes of corneal membranes +C0155114|T020|AB|H18.3|ICD10CM|Changes of corneal membranes|Changes of corneal membranes +C0155114|T020|AB|H18.30|ICD10CM|Unspecified corneal membrane change|Unspecified corneal membrane change +C0155114|T020|PT|H18.30|ICD10CM|Unspecified corneal membrane change|Unspecified corneal membrane change +C0155115|T047|HT|H18.31|ICD10CM|Folds and rupture in Bowman's membrane|Folds and rupture in Bowman's membrane +C0155115|T047|AB|H18.31|ICD10CM|Folds and rupture in Bowman's membrane|Folds and rupture in Bowman's membrane +C2137301|T033|AB|H18.311|ICD10CM|Folds and rupture in Bowman's membrane, right eye|Folds and rupture in Bowman's membrane, right eye +C2137301|T033|PT|H18.311|ICD10CM|Folds and rupture in Bowman's membrane, right eye|Folds and rupture in Bowman's membrane, right eye +C2137300|T033|AB|H18.312|ICD10CM|Folds and rupture in Bowman's membrane, left eye|Folds and rupture in Bowman's membrane, left eye +C2137300|T033|PT|H18.312|ICD10CM|Folds and rupture in Bowman's membrane, left eye|Folds and rupture in Bowman's membrane, left eye +C2880374|T047|AB|H18.313|ICD10CM|Folds and rupture in Bowman's membrane, bilateral|Folds and rupture in Bowman's membrane, bilateral +C2880374|T047|PT|H18.313|ICD10CM|Folds and rupture in Bowman's membrane, bilateral|Folds and rupture in Bowman's membrane, bilateral +C2880375|T047|AB|H18.319|ICD10CM|Folds and rupture in Bowman's membrane, unspecified eye|Folds and rupture in Bowman's membrane, unspecified eye +C2880375|T047|PT|H18.319|ICD10CM|Folds and rupture in Bowman's membrane, unspecified eye|Folds and rupture in Bowman's membrane, unspecified eye +C0155116|T190|HT|H18.32|ICD10CM|Folds in Descemet's membrane|Folds in Descemet's membrane +C0155116|T190|AB|H18.32|ICD10CM|Folds in Descemet's membrane|Folds in Descemet's membrane +C2137304|T033|AB|H18.321|ICD10CM|Folds in Descemet's membrane, right eye|Folds in Descemet's membrane, right eye +C2137304|T033|PT|H18.321|ICD10CM|Folds in Descemet's membrane, right eye|Folds in Descemet's membrane, right eye +C2137302|T033|AB|H18.322|ICD10CM|Folds in Descemet's membrane, left eye|Folds in Descemet's membrane, left eye +C2137302|T033|PT|H18.322|ICD10CM|Folds in Descemet's membrane, left eye|Folds in Descemet's membrane, left eye +C2880376|T033|AB|H18.323|ICD10CM|Folds in Descemet's membrane, bilateral|Folds in Descemet's membrane, bilateral +C2880376|T033|PT|H18.323|ICD10CM|Folds in Descemet's membrane, bilateral|Folds in Descemet's membrane, bilateral +C2880377|T033|AB|H18.329|ICD10CM|Folds in Descemet's membrane, unspecified eye|Folds in Descemet's membrane, unspecified eye +C2880377|T033|PT|H18.329|ICD10CM|Folds in Descemet's membrane, unspecified eye|Folds in Descemet's membrane, unspecified eye +C0155117|T020|HT|H18.33|ICD10CM|Rupture in Descemet's membrane|Rupture in Descemet's membrane +C0155117|T020|AB|H18.33|ICD10CM|Rupture in Descemet's membrane|Rupture in Descemet's membrane +C2137322|T033|AB|H18.331|ICD10CM|Rupture in Descemet's membrane, right eye|Rupture in Descemet's membrane, right eye +C2137322|T033|PT|H18.331|ICD10CM|Rupture in Descemet's membrane, right eye|Rupture in Descemet's membrane, right eye +C2137321|T033|AB|H18.332|ICD10CM|Rupture in Descemet's membrane, left eye|Rupture in Descemet's membrane, left eye +C2137321|T033|PT|H18.332|ICD10CM|Rupture in Descemet's membrane, left eye|Rupture in Descemet's membrane, left eye +C2880378|T020|AB|H18.333|ICD10CM|Rupture in Descemet's membrane, bilateral|Rupture in Descemet's membrane, bilateral +C2880378|T020|PT|H18.333|ICD10CM|Rupture in Descemet's membrane, bilateral|Rupture in Descemet's membrane, bilateral +C0155117|T020|AB|H18.339|ICD10CM|Rupture in Descemet's membrane, unspecified eye|Rupture in Descemet's membrane, unspecified eye +C0155117|T020|PT|H18.339|ICD10CM|Rupture in Descemet's membrane, unspecified eye|Rupture in Descemet's membrane, unspecified eye +C0155118|T047|HT|H18.4|ICD10CM|Corneal degeneration|Corneal degeneration +C0155118|T047|AB|H18.4|ICD10CM|Corneal degeneration|Corneal degeneration +C0155118|T047|PT|H18.4|ICD10|Corneal degeneration|Corneal degeneration +C0155118|T047|AB|H18.40|ICD10CM|Unspecified corneal degeneration|Unspecified corneal degeneration +C0155118|T047|PT|H18.40|ICD10CM|Unspecified corneal degeneration|Unspecified corneal degeneration +C0003742|T047|HT|H18.41|ICD10CM|Arcus senilis|Arcus senilis +C0003742|T047|AB|H18.41|ICD10CM|Arcus senilis|Arcus senilis +C0036647|T020|ET|H18.41|ICD10CM|Senile corneal changes|Senile corneal changes +C2880379|T047|AB|H18.411|ICD10CM|Arcus senilis, right eye|Arcus senilis, right eye +C2880379|T047|PT|H18.411|ICD10CM|Arcus senilis, right eye|Arcus senilis, right eye +C2880380|T047|AB|H18.412|ICD10CM|Arcus senilis, left eye|Arcus senilis, left eye +C2880380|T047|PT|H18.412|ICD10CM|Arcus senilis, left eye|Arcus senilis, left eye +C2880381|T047|AB|H18.413|ICD10CM|Arcus senilis, bilateral|Arcus senilis, bilateral +C2880381|T047|PT|H18.413|ICD10CM|Arcus senilis, bilateral|Arcus senilis, bilateral +C2880382|T047|AB|H18.419|ICD10CM|Arcus senilis, unspecified eye|Arcus senilis, unspecified eye +C2880382|T047|PT|H18.419|ICD10CM|Arcus senilis, unspecified eye|Arcus senilis, unspecified eye +C0155120|T047|HT|H18.42|ICD10CM|Band keratopathy|Band keratopathy +C0155120|T047|AB|H18.42|ICD10CM|Band keratopathy|Band keratopathy +C2069840|T033|AB|H18.421|ICD10CM|Band keratopathy, right eye|Band keratopathy, right eye +C2069840|T033|PT|H18.421|ICD10CM|Band keratopathy, right eye|Band keratopathy, right eye +C2069841|T033|AB|H18.422|ICD10CM|Band keratopathy, left eye|Band keratopathy, left eye +C2069841|T033|PT|H18.422|ICD10CM|Band keratopathy, left eye|Band keratopathy, left eye +C2880383|T047|AB|H18.423|ICD10CM|Band keratopathy, bilateral|Band keratopathy, bilateral +C2880383|T047|PT|H18.423|ICD10CM|Band keratopathy, bilateral|Band keratopathy, bilateral +C2880384|T047|AB|H18.429|ICD10CM|Band keratopathy, unspecified eye|Band keratopathy, unspecified eye +C2880384|T047|PT|H18.429|ICD10CM|Band keratopathy, unspecified eye|Band keratopathy, unspecified eye +C0155121|T047|AB|H18.43|ICD10CM|Other calcerous corneal degeneration|Other calcerous corneal degeneration +C0155121|T047|PT|H18.43|ICD10CM|Other calcerous corneal degeneration|Other calcerous corneal degeneration +C0152455|T047|HT|H18.44|ICD10CM|Keratomalacia|Keratomalacia +C0152455|T047|AB|H18.44|ICD10CM|Keratomalacia|Keratomalacia +C2880385|T047|AB|H18.441|ICD10CM|Keratomalacia, right eye|Keratomalacia, right eye +C2880385|T047|PT|H18.441|ICD10CM|Keratomalacia, right eye|Keratomalacia, right eye +C2880386|T047|AB|H18.442|ICD10CM|Keratomalacia, left eye|Keratomalacia, left eye +C2880386|T047|PT|H18.442|ICD10CM|Keratomalacia, left eye|Keratomalacia, left eye +C2880387|T047|AB|H18.443|ICD10CM|Keratomalacia, bilateral|Keratomalacia, bilateral +C2880387|T047|PT|H18.443|ICD10CM|Keratomalacia, bilateral|Keratomalacia, bilateral +C2880388|T047|AB|H18.449|ICD10CM|Keratomalacia, unspecified eye|Keratomalacia, unspecified eye +C2880388|T047|PT|H18.449|ICD10CM|Keratomalacia, unspecified eye|Keratomalacia, unspecified eye +C0155122|T047|AB|H18.45|ICD10CM|Nodular corneal degeneration|Nodular corneal degeneration +C0155122|T047|HT|H18.45|ICD10CM|Nodular corneal degeneration|Nodular corneal degeneration +C2880389|T047|AB|H18.451|ICD10CM|Nodular corneal degeneration, right eye|Nodular corneal degeneration, right eye +C2880389|T047|PT|H18.451|ICD10CM|Nodular corneal degeneration, right eye|Nodular corneal degeneration, right eye +C2880390|T047|AB|H18.452|ICD10CM|Nodular corneal degeneration, left eye|Nodular corneal degeneration, left eye +C2880390|T047|PT|H18.452|ICD10CM|Nodular corneal degeneration, left eye|Nodular corneal degeneration, left eye +C2880391|T047|AB|H18.453|ICD10CM|Nodular corneal degeneration, bilateral|Nodular corneal degeneration, bilateral +C2880391|T047|PT|H18.453|ICD10CM|Nodular corneal degeneration, bilateral|Nodular corneal degeneration, bilateral +C2880392|T047|AB|H18.459|ICD10CM|Nodular corneal degeneration, unspecified eye|Nodular corneal degeneration, unspecified eye +C2880392|T047|PT|H18.459|ICD10CM|Nodular corneal degeneration, unspecified eye|Nodular corneal degeneration, unspecified eye +C0155123|T047|AB|H18.46|ICD10CM|Peripheral corneal degeneration|Peripheral corneal degeneration +C0155123|T047|HT|H18.46|ICD10CM|Peripheral corneal degeneration|Peripheral corneal degeneration +C2880393|T047|AB|H18.461|ICD10CM|Peripheral corneal degeneration, right eye|Peripheral corneal degeneration, right eye +C2880393|T047|PT|H18.461|ICD10CM|Peripheral corneal degeneration, right eye|Peripheral corneal degeneration, right eye +C2880394|T047|AB|H18.462|ICD10CM|Peripheral corneal degeneration, left eye|Peripheral corneal degeneration, left eye +C2880394|T047|PT|H18.462|ICD10CM|Peripheral corneal degeneration, left eye|Peripheral corneal degeneration, left eye +C2880395|T047|AB|H18.463|ICD10CM|Peripheral corneal degeneration, bilateral|Peripheral corneal degeneration, bilateral +C2880395|T047|PT|H18.463|ICD10CM|Peripheral corneal degeneration, bilateral|Peripheral corneal degeneration, bilateral +C2880396|T047|AB|H18.469|ICD10CM|Peripheral corneal degeneration, unspecified eye|Peripheral corneal degeneration, unspecified eye +C2880396|T047|PT|H18.469|ICD10CM|Peripheral corneal degeneration, unspecified eye|Peripheral corneal degeneration, unspecified eye +C0155124|T047|AB|H18.49|ICD10CM|Other corneal degeneration|Other corneal degeneration +C0155124|T047|PT|H18.49|ICD10CM|Other corneal degeneration|Other corneal degeneration +C0010035|T047|HT|H18.5|ICD10CM|Hereditary corneal dystrophies|Hereditary corneal dystrophies +C0010035|T047|AB|H18.5|ICD10CM|Hereditary corneal dystrophies|Hereditary corneal dystrophies +C0010035|T047|PT|H18.5|ICD10|Hereditary corneal dystrophies|Hereditary corneal dystrophies +C0010035|T047|AB|H18.50|ICD10CM|Unspecified hereditary corneal dystrophies|Unspecified hereditary corneal dystrophies +C0010035|T047|PT|H18.50|ICD10CM|Unspecified hereditary corneal dystrophies|Unspecified hereditary corneal dystrophies +C0544008|T047|PT|H18.51|ICD10CM|Endothelial corneal dystrophy|Endothelial corneal dystrophy +C0544008|T047|AB|H18.51|ICD10CM|Endothelial corneal dystrophy|Endothelial corneal dystrophy +C0016781|T047|ET|H18.51|ICD10CM|Fuchs' dystrophy|Fuchs' dystrophy +C0339277|T019|AB|H18.52|ICD10CM|Epithelial (juvenile) corneal dystrophy|Epithelial (juvenile) corneal dystrophy +C0339277|T019|PT|H18.52|ICD10CM|Epithelial (juvenile) corneal dystrophy|Epithelial (juvenile) corneal dystrophy +C0018179|T047|PT|H18.53|ICD10CM|Granular corneal dystrophy|Granular corneal dystrophy +C0018179|T047|AB|H18.53|ICD10CM|Granular corneal dystrophy|Granular corneal dystrophy +C0155127|T047|PT|H18.54|ICD10CM|Lattice corneal dystrophy|Lattice corneal dystrophy +C0155127|T047|AB|H18.54|ICD10CM|Lattice corneal dystrophy|Lattice corneal dystrophy +C0024439|T047|PT|H18.55|ICD10CM|Macular corneal dystrophy|Macular corneal dystrophy +C0024439|T047|AB|H18.55|ICD10CM|Macular corneal dystrophy|Macular corneal dystrophy +C2880397|T047|AB|H18.59|ICD10CM|Other hereditary corneal dystrophies|Other hereditary corneal dystrophies +C2880397|T047|PT|H18.59|ICD10CM|Other hereditary corneal dystrophies|Other hereditary corneal dystrophies +C0022578|T047|HT|H18.6|ICD10CM|Keratoconus|Keratoconus +C0022578|T047|AB|H18.6|ICD10CM|Keratoconus|Keratoconus +C0022578|T047|PT|H18.6|ICD10|Keratoconus|Keratoconus +C0022578|T047|HT|H18.60|ICD10CM|Keratoconus, unspecified|Keratoconus, unspecified +C0022578|T047|AB|H18.60|ICD10CM|Keratoconus, unspecified|Keratoconus, unspecified +C2880398|T047|AB|H18.601|ICD10CM|Keratoconus, unspecified, right eye|Keratoconus, unspecified, right eye +C2880398|T047|PT|H18.601|ICD10CM|Keratoconus, unspecified, right eye|Keratoconus, unspecified, right eye +C2880399|T047|AB|H18.602|ICD10CM|Keratoconus, unspecified, left eye|Keratoconus, unspecified, left eye +C2880399|T047|PT|H18.602|ICD10CM|Keratoconus, unspecified, left eye|Keratoconus, unspecified, left eye +C2880400|T047|AB|H18.603|ICD10CM|Keratoconus, unspecified, bilateral|Keratoconus, unspecified, bilateral +C2880400|T047|PT|H18.603|ICD10CM|Keratoconus, unspecified, bilateral|Keratoconus, unspecified, bilateral +C2880401|T047|AB|H18.609|ICD10CM|Keratoconus, unspecified, unspecified eye|Keratoconus, unspecified, unspecified eye +C2880401|T047|PT|H18.609|ICD10CM|Keratoconus, unspecified, unspecified eye|Keratoconus, unspecified, unspecified eye +C0155131|T047|AB|H18.61|ICD10CM|Keratoconus, stable|Keratoconus, stable +C0155131|T047|HT|H18.61|ICD10CM|Keratoconus, stable|Keratoconus, stable +C2880402|T047|AB|H18.611|ICD10CM|Keratoconus, stable, right eye|Keratoconus, stable, right eye +C2880402|T047|PT|H18.611|ICD10CM|Keratoconus, stable, right eye|Keratoconus, stable, right eye +C2880403|T047|AB|H18.612|ICD10CM|Keratoconus, stable, left eye|Keratoconus, stable, left eye +C2880403|T047|PT|H18.612|ICD10CM|Keratoconus, stable, left eye|Keratoconus, stable, left eye +C2880404|T047|AB|H18.613|ICD10CM|Keratoconus, stable, bilateral|Keratoconus, stable, bilateral +C2880404|T047|PT|H18.613|ICD10CM|Keratoconus, stable, bilateral|Keratoconus, stable, bilateral +C2880405|T047|AB|H18.619|ICD10CM|Keratoconus, stable, unspecified eye|Keratoconus, stable, unspecified eye +C2880405|T047|PT|H18.619|ICD10CM|Keratoconus, stable, unspecified eye|Keratoconus, stable, unspecified eye +C0333230|T047|ET|H18.62|ICD10CM|Acute hydrops|Acute hydrops +C2880406|T047|AB|H18.62|ICD10CM|Keratoconus, unstable|Keratoconus, unstable +C2880406|T047|HT|H18.62|ICD10CM|Keratoconus, unstable|Keratoconus, unstable +C2880407|T047|AB|H18.621|ICD10CM|Keratoconus, unstable, right eye|Keratoconus, unstable, right eye +C2880407|T047|PT|H18.621|ICD10CM|Keratoconus, unstable, right eye|Keratoconus, unstable, right eye +C2880408|T047|AB|H18.622|ICD10CM|Keratoconus, unstable, left eye|Keratoconus, unstable, left eye +C2880408|T047|PT|H18.622|ICD10CM|Keratoconus, unstable, left eye|Keratoconus, unstable, left eye +C2880409|T047|AB|H18.623|ICD10CM|Keratoconus, unstable, bilateral|Keratoconus, unstable, bilateral +C2880409|T047|PT|H18.623|ICD10CM|Keratoconus, unstable, bilateral|Keratoconus, unstable, bilateral +C2880410|T047|AB|H18.629|ICD10CM|Keratoconus, unstable, unspecified eye|Keratoconus, unstable, unspecified eye +C2880410|T047|PT|H18.629|ICD10CM|Keratoconus, unstable, unspecified eye|Keratoconus, unstable, unspecified eye +C2880411|T047|AB|H18.7|ICD10CM|Other and unspecified corneal deformities|Other and unspecified corneal deformities +C2880411|T047|HT|H18.7|ICD10CM|Other and unspecified corneal deformities|Other and unspecified corneal deformities +C0155133|T190|PT|H18.7|ICD10|Other corneal deformities|Other corneal deformities +C0339212|T190|AB|H18.70|ICD10CM|Unspecified corneal deformity|Unspecified corneal deformity +C0339212|T190|PT|H18.70|ICD10CM|Unspecified corneal deformity|Unspecified corneal deformity +C0155135|T047|HT|H18.71|ICD10CM|Corneal ectasia|Corneal ectasia +C0155135|T047|AB|H18.71|ICD10CM|Corneal ectasia|Corneal ectasia +C2880412|T047|AB|H18.711|ICD10CM|Corneal ectasia, right eye|Corneal ectasia, right eye +C2880412|T047|PT|H18.711|ICD10CM|Corneal ectasia, right eye|Corneal ectasia, right eye +C2880413|T047|AB|H18.712|ICD10CM|Corneal ectasia, left eye|Corneal ectasia, left eye +C2880413|T047|PT|H18.712|ICD10CM|Corneal ectasia, left eye|Corneal ectasia, left eye +C2880414|T047|AB|H18.713|ICD10CM|Corneal ectasia, bilateral|Corneal ectasia, bilateral +C2880414|T047|PT|H18.713|ICD10CM|Corneal ectasia, bilateral|Corneal ectasia, bilateral +C2880415|T047|AB|H18.719|ICD10CM|Corneal ectasia, unspecified eye|Corneal ectasia, unspecified eye +C2880415|T047|PT|H18.719|ICD10CM|Corneal ectasia, unspecified eye|Corneal ectasia, unspecified eye +C0152440|T047|HT|H18.72|ICD10CM|Corneal staphyloma|Corneal staphyloma +C0152440|T047|AB|H18.72|ICD10CM|Corneal staphyloma|Corneal staphyloma +C2064578|T047|AB|H18.721|ICD10CM|Corneal staphyloma, right eye|Corneal staphyloma, right eye +C2064578|T047|PT|H18.721|ICD10CM|Corneal staphyloma, right eye|Corneal staphyloma, right eye +C2064579|T047|AB|H18.722|ICD10CM|Corneal staphyloma, left eye|Corneal staphyloma, left eye +C2064579|T047|PT|H18.722|ICD10CM|Corneal staphyloma, left eye|Corneal staphyloma, left eye +C2880416|T047|AB|H18.723|ICD10CM|Corneal staphyloma, bilateral|Corneal staphyloma, bilateral +C2880416|T047|PT|H18.723|ICD10CM|Corneal staphyloma, bilateral|Corneal staphyloma, bilateral +C2880417|T047|AB|H18.729|ICD10CM|Corneal staphyloma, unspecified eye|Corneal staphyloma, unspecified eye +C2880417|T047|PT|H18.729|ICD10CM|Corneal staphyloma, unspecified eye|Corneal staphyloma, unspecified eye +C0155136|T190|HT|H18.73|ICD10CM|Descemetocele|Descemetocele +C0155136|T190|AB|H18.73|ICD10CM|Descemetocele|Descemetocele +C2880418|T190|AB|H18.731|ICD10CM|Descemetocele, right eye|Descemetocele, right eye +C2880418|T190|PT|H18.731|ICD10CM|Descemetocele, right eye|Descemetocele, right eye +C2880419|T190|AB|H18.732|ICD10CM|Descemetocele, left eye|Descemetocele, left eye +C2880419|T190|PT|H18.732|ICD10CM|Descemetocele, left eye|Descemetocele, left eye +C2880420|T190|AB|H18.733|ICD10CM|Descemetocele, bilateral|Descemetocele, bilateral +C2880420|T190|PT|H18.733|ICD10CM|Descemetocele, bilateral|Descemetocele, bilateral +C2880421|T190|AB|H18.739|ICD10CM|Descemetocele, unspecified eye|Descemetocele, unspecified eye +C2880421|T190|PT|H18.739|ICD10CM|Descemetocele, unspecified eye|Descemetocele, unspecified eye +C0155133|T190|HT|H18.79|ICD10CM|Other corneal deformities|Other corneal deformities +C0155133|T190|AB|H18.79|ICD10CM|Other corneal deformities|Other corneal deformities +C2880422|T190|AB|H18.791|ICD10CM|Other corneal deformities, right eye|Other corneal deformities, right eye +C2880422|T190|PT|H18.791|ICD10CM|Other corneal deformities, right eye|Other corneal deformities, right eye +C2880423|T190|AB|H18.792|ICD10CM|Other corneal deformities, left eye|Other corneal deformities, left eye +C2880423|T190|PT|H18.792|ICD10CM|Other corneal deformities, left eye|Other corneal deformities, left eye +C2880424|T190|AB|H18.793|ICD10CM|Other corneal deformities, bilateral|Other corneal deformities, bilateral +C2880424|T190|PT|H18.793|ICD10CM|Other corneal deformities, bilateral|Other corneal deformities, bilateral +C0155133|T190|AB|H18.799|ICD10CM|Other corneal deformities, unspecified eye|Other corneal deformities, unspecified eye +C0155133|T190|PT|H18.799|ICD10CM|Other corneal deformities, unspecified eye|Other corneal deformities, unspecified eye +C0348530|T047|PT|H18.8|ICD10|Other specified disorders of cornea|Other specified disorders of cornea +C0348530|T047|HT|H18.8|ICD10CM|Other specified disorders of cornea|Other specified disorders of cornea +C0348530|T047|AB|H18.8|ICD10CM|Other specified disorders of cornea|Other specified disorders of cornea +C2880425|T047|AB|H18.81|ICD10CM|Anesthesia and hypoesthesia of cornea|Anesthesia and hypoesthesia of cornea +C2880425|T047|HT|H18.81|ICD10CM|Anesthesia and hypoesthesia of cornea|Anesthesia and hypoesthesia of cornea +C2880426|T047|AB|H18.811|ICD10CM|Anesthesia and hypoesthesia of cornea, right eye|Anesthesia and hypoesthesia of cornea, right eye +C2880426|T047|PT|H18.811|ICD10CM|Anesthesia and hypoesthesia of cornea, right eye|Anesthesia and hypoesthesia of cornea, right eye +C2880427|T047|AB|H18.812|ICD10CM|Anesthesia and hypoesthesia of cornea, left eye|Anesthesia and hypoesthesia of cornea, left eye +C2880427|T047|PT|H18.812|ICD10CM|Anesthesia and hypoesthesia of cornea, left eye|Anesthesia and hypoesthesia of cornea, left eye +C2880428|T047|AB|H18.813|ICD10CM|Anesthesia and hypoesthesia of cornea, bilateral|Anesthesia and hypoesthesia of cornea, bilateral +C2880428|T047|PT|H18.813|ICD10CM|Anesthesia and hypoesthesia of cornea, bilateral|Anesthesia and hypoesthesia of cornea, bilateral +C2880429|T047|AB|H18.819|ICD10CM|Anesthesia and hypoesthesia of cornea, unspecified eye|Anesthesia and hypoesthesia of cornea, unspecified eye +C2880429|T047|PT|H18.819|ICD10CM|Anesthesia and hypoesthesia of cornea, unspecified eye|Anesthesia and hypoesthesia of cornea, unspecified eye +C0375253|T020|HT|H18.82|ICD10CM|Corneal disorder due to contact lens|Corneal disorder due to contact lens +C0375253|T020|AB|H18.82|ICD10CM|Corneal disorder due to contact lens|Corneal disorder due to contact lens +C2880430|T020|AB|H18.821|ICD10CM|Corneal disorder due to contact lens, right eye|Corneal disorder due to contact lens, right eye +C2880430|T020|PT|H18.821|ICD10CM|Corneal disorder due to contact lens, right eye|Corneal disorder due to contact lens, right eye +C2880431|T020|AB|H18.822|ICD10CM|Corneal disorder due to contact lens, left eye|Corneal disorder due to contact lens, left eye +C2880431|T020|PT|H18.822|ICD10CM|Corneal disorder due to contact lens, left eye|Corneal disorder due to contact lens, left eye +C2880432|T020|AB|H18.823|ICD10CM|Corneal disorder due to contact lens, bilateral|Corneal disorder due to contact lens, bilateral +C2880432|T020|PT|H18.823|ICD10CM|Corneal disorder due to contact lens, bilateral|Corneal disorder due to contact lens, bilateral +C2880433|T020|AB|H18.829|ICD10CM|Corneal disorder due to contact lens, unspecified eye|Corneal disorder due to contact lens, unspecified eye +C2880433|T020|PT|H18.829|ICD10CM|Corneal disorder due to contact lens, unspecified eye|Corneal disorder due to contact lens, unspecified eye +C0155119|T047|HT|H18.83|ICD10CM|Recurrent erosion of cornea|Recurrent erosion of cornea +C0155119|T047|AB|H18.83|ICD10CM|Recurrent erosion of cornea|Recurrent erosion of cornea +C2880434|T047|AB|H18.831|ICD10CM|Recurrent erosion of cornea, right eye|Recurrent erosion of cornea, right eye +C2880434|T047|PT|H18.831|ICD10CM|Recurrent erosion of cornea, right eye|Recurrent erosion of cornea, right eye +C2880435|T047|AB|H18.832|ICD10CM|Recurrent erosion of cornea, left eye|Recurrent erosion of cornea, left eye +C2880435|T047|PT|H18.832|ICD10CM|Recurrent erosion of cornea, left eye|Recurrent erosion of cornea, left eye +C2880436|T047|AB|H18.833|ICD10CM|Recurrent erosion of cornea, bilateral|Recurrent erosion of cornea, bilateral +C2880436|T047|PT|H18.833|ICD10CM|Recurrent erosion of cornea, bilateral|Recurrent erosion of cornea, bilateral +C2880437|T047|AB|H18.839|ICD10CM|Recurrent erosion of cornea, unspecified eye|Recurrent erosion of cornea, unspecified eye +C2880437|T047|PT|H18.839|ICD10CM|Recurrent erosion of cornea, unspecified eye|Recurrent erosion of cornea, unspecified eye +C0348530|T047|HT|H18.89|ICD10CM|Other specified disorders of cornea|Other specified disorders of cornea +C0348530|T047|AB|H18.89|ICD10CM|Other specified disorders of cornea|Other specified disorders of cornea +C2880438|T047|AB|H18.891|ICD10CM|Other specified disorders of cornea, right eye|Other specified disorders of cornea, right eye +C2880438|T047|PT|H18.891|ICD10CM|Other specified disorders of cornea, right eye|Other specified disorders of cornea, right eye +C2880439|T047|AB|H18.892|ICD10CM|Other specified disorders of cornea, left eye|Other specified disorders of cornea, left eye +C2880439|T047|PT|H18.892|ICD10CM|Other specified disorders of cornea, left eye|Other specified disorders of cornea, left eye +C2880440|T047|AB|H18.893|ICD10CM|Other specified disorders of cornea, bilateral|Other specified disorders of cornea, bilateral +C2880440|T047|PT|H18.893|ICD10CM|Other specified disorders of cornea, bilateral|Other specified disorders of cornea, bilateral +C2880441|T047|AB|H18.899|ICD10CM|Other specified disorders of cornea, unspecified eye|Other specified disorders of cornea, unspecified eye +C2880441|T047|PT|H18.899|ICD10CM|Other specified disorders of cornea, unspecified eye|Other specified disorders of cornea, unspecified eye +C0010034|T047|PT|H18.9|ICD10|Disorder of cornea, unspecified|Disorder of cornea, unspecified +C0010034|T047|AB|H18.9|ICD10CM|Unspecified disorder of cornea|Unspecified disorder of cornea +C0010034|T047|PT|H18.9|ICD10CM|Unspecified disorder of cornea|Unspecified disorder of cornea +C0694484|T047|HT|H19|ICD10|Disorders of sclera and cornea in diseases classified elsewhere|Disorders of sclera and cornea in diseases classified elsewhere +C0348531|T047|PT|H19.0|ICD10|Scleritis and episcleritis in diseases classified elsewhere|Scleritis and episcleritis in diseases classified elsewhere +C0494524|T047|PT|H19.1|ICD10|Herpesviral keratitis and keratoconjunctivitis|Herpesviral keratitis and keratoconjunctivitis +C0348532|T047|PT|H19.2|ICD10|Keratitis and keratoconjunctivitis in other infectious and parasitic diseases classified elsewhere|Keratitis and keratoconjunctivitis in other infectious and parasitic diseases classified elsewhere +C0348533|T047|PT|H19.3|ICD10|Keratitis and keratoconjunctivitis in other diseases classified elsewhere|Keratitis and keratoconjunctivitis in other diseases classified elsewhere +C0348534|T047|PT|H19.8|ICD10|Other disorders of sclera and cornea in diseases classified elsewhere|Other disorders of sclera and cornea in diseases classified elsewhere +C0022073|T047|HT|H20|ICD10|Iridocyclitis|Iridocyclitis +C0022073|T047|HT|H20|ICD10CM|Iridocyclitis|Iridocyclitis +C0022073|T047|AB|H20|ICD10CM|Iridocyclitis|Iridocyclitis +C0154908|T047|PT|H20.0|ICD10|Acute and subacute iridocyclitis|Acute and subacute iridocyclitis +C0154908|T047|HT|H20.0|ICD10CM|Acute and subacute iridocyclitis|Acute and subacute iridocyclitis +C0154908|T047|AB|H20.0|ICD10CM|Acute and subacute iridocyclitis|Acute and subacute iridocyclitis +C0701807|T047|ET|H20.0|ICD10CM|Acute anterior uveitis|Acute anterior uveitis +C1455748|T047|ET|H20.0|ICD10CM|Acute cyclitis|Acute cyclitis +C0271105|T047|ET|H20.0|ICD10CM|Acute iritis|Acute iritis +C0271102|T047|ET|H20.0|ICD10CM|Subacute anterior uveitis|Subacute anterior uveitis +C0271104|T047|ET|H20.0|ICD10CM|Subacute cyclitis|Subacute cyclitis +C0271106|T047|ET|H20.0|ICD10CM|Subacute iritis|Subacute iritis +C0154908|T047|AB|H20.00|ICD10CM|Unspecified acute and subacute iridocyclitis|Unspecified acute and subacute iridocyclitis +C0154908|T047|PT|H20.00|ICD10CM|Unspecified acute and subacute iridocyclitis|Unspecified acute and subacute iridocyclitis +C0154909|T047|HT|H20.01|ICD10CM|Primary iridocyclitis|Primary iridocyclitis +C0154909|T047|AB|H20.01|ICD10CM|Primary iridocyclitis|Primary iridocyclitis +C2880442|T047|AB|H20.011|ICD10CM|Primary iridocyclitis, right eye|Primary iridocyclitis, right eye +C2880442|T047|PT|H20.011|ICD10CM|Primary iridocyclitis, right eye|Primary iridocyclitis, right eye +C2880443|T047|AB|H20.012|ICD10CM|Primary iridocyclitis, left eye|Primary iridocyclitis, left eye +C2880443|T047|PT|H20.012|ICD10CM|Primary iridocyclitis, left eye|Primary iridocyclitis, left eye +C2880444|T047|AB|H20.013|ICD10CM|Primary iridocyclitis, bilateral|Primary iridocyclitis, bilateral +C2880444|T047|PT|H20.013|ICD10CM|Primary iridocyclitis, bilateral|Primary iridocyclitis, bilateral +C2880445|T047|AB|H20.019|ICD10CM|Primary iridocyclitis, unspecified eye|Primary iridocyclitis, unspecified eye +C2880445|T047|PT|H20.019|ICD10CM|Primary iridocyclitis, unspecified eye|Primary iridocyclitis, unspecified eye +C2880446|T047|HT|H20.02|ICD10CM|Recurrent acute iridocyclitis|Recurrent acute iridocyclitis +C2880446|T047|AB|H20.02|ICD10CM|Recurrent acute iridocyclitis|Recurrent acute iridocyclitis +C2880447|T047|AB|H20.021|ICD10CM|Recurrent acute iridocyclitis, right eye|Recurrent acute iridocyclitis, right eye +C2880447|T047|PT|H20.021|ICD10CM|Recurrent acute iridocyclitis, right eye|Recurrent acute iridocyclitis, right eye +C2880448|T047|AB|H20.022|ICD10CM|Recurrent acute iridocyclitis, left eye|Recurrent acute iridocyclitis, left eye +C2880448|T047|PT|H20.022|ICD10CM|Recurrent acute iridocyclitis, left eye|Recurrent acute iridocyclitis, left eye +C2880449|T047|AB|H20.023|ICD10CM|Recurrent acute iridocyclitis, bilateral|Recurrent acute iridocyclitis, bilateral +C2880449|T047|PT|H20.023|ICD10CM|Recurrent acute iridocyclitis, bilateral|Recurrent acute iridocyclitis, bilateral +C2880450|T047|AB|H20.029|ICD10CM|Recurrent acute iridocyclitis, unspecified eye|Recurrent acute iridocyclitis, unspecified eye +C2880450|T047|PT|H20.029|ICD10CM|Recurrent acute iridocyclitis, unspecified eye|Recurrent acute iridocyclitis, unspecified eye +C0154911|T047|AB|H20.03|ICD10CM|Secondary infectious iridocyclitis|Secondary infectious iridocyclitis +C0154911|T047|HT|H20.03|ICD10CM|Secondary infectious iridocyclitis|Secondary infectious iridocyclitis +C2880451|T047|AB|H20.031|ICD10CM|Secondary infectious iridocyclitis, right eye|Secondary infectious iridocyclitis, right eye +C2880451|T047|PT|H20.031|ICD10CM|Secondary infectious iridocyclitis, right eye|Secondary infectious iridocyclitis, right eye +C2880452|T047|AB|H20.032|ICD10CM|Secondary infectious iridocyclitis, left eye|Secondary infectious iridocyclitis, left eye +C2880452|T047|PT|H20.032|ICD10CM|Secondary infectious iridocyclitis, left eye|Secondary infectious iridocyclitis, left eye +C2880453|T047|AB|H20.033|ICD10CM|Secondary infectious iridocyclitis, bilateral|Secondary infectious iridocyclitis, bilateral +C2880453|T047|PT|H20.033|ICD10CM|Secondary infectious iridocyclitis, bilateral|Secondary infectious iridocyclitis, bilateral +C2880454|T047|AB|H20.039|ICD10CM|Secondary infectious iridocyclitis, unspecified eye|Secondary infectious iridocyclitis, unspecified eye +C2880454|T047|PT|H20.039|ICD10CM|Secondary infectious iridocyclitis, unspecified eye|Secondary infectious iridocyclitis, unspecified eye +C2937264|T047|AB|H20.04|ICD10CM|Secondary noninfectious iridocyclitis|Secondary noninfectious iridocyclitis +C2937264|T047|HT|H20.04|ICD10CM|Secondary noninfectious iridocyclitis|Secondary noninfectious iridocyclitis +C2880455|T047|AB|H20.041|ICD10CM|Secondary noninfectious iridocyclitis, right eye|Secondary noninfectious iridocyclitis, right eye +C2880455|T047|PT|H20.041|ICD10CM|Secondary noninfectious iridocyclitis, right eye|Secondary noninfectious iridocyclitis, right eye +C2880456|T047|AB|H20.042|ICD10CM|Secondary noninfectious iridocyclitis, left eye|Secondary noninfectious iridocyclitis, left eye +C2880456|T047|PT|H20.042|ICD10CM|Secondary noninfectious iridocyclitis, left eye|Secondary noninfectious iridocyclitis, left eye +C2880457|T047|AB|H20.043|ICD10CM|Secondary noninfectious iridocyclitis, bilateral|Secondary noninfectious iridocyclitis, bilateral +C2880457|T047|PT|H20.043|ICD10CM|Secondary noninfectious iridocyclitis, bilateral|Secondary noninfectious iridocyclitis, bilateral +C2880458|T047|AB|H20.049|ICD10CM|Secondary noninfectious iridocyclitis, unspecified eye|Secondary noninfectious iridocyclitis, unspecified eye +C2880458|T047|PT|H20.049|ICD10CM|Secondary noninfectious iridocyclitis, unspecified eye|Secondary noninfectious iridocyclitis, unspecified eye +C0020641|T047|HT|H20.05|ICD10CM|Hypopyon|Hypopyon +C0020641|T047|AB|H20.05|ICD10CM|Hypopyon|Hypopyon +C2880459|T047|AB|H20.051|ICD10CM|Hypopyon, right eye|Hypopyon, right eye +C2880459|T047|PT|H20.051|ICD10CM|Hypopyon, right eye|Hypopyon, right eye +C2880460|T047|AB|H20.052|ICD10CM|Hypopyon, left eye|Hypopyon, left eye +C2880460|T047|PT|H20.052|ICD10CM|Hypopyon, left eye|Hypopyon, left eye +C2880461|T047|AB|H20.053|ICD10CM|Hypopyon, bilateral|Hypopyon, bilateral +C2880461|T047|PT|H20.053|ICD10CM|Hypopyon, bilateral|Hypopyon, bilateral +C2880462|T047|AB|H20.059|ICD10CM|Hypopyon, unspecified eye|Hypopyon, unspecified eye +C2880462|T047|PT|H20.059|ICD10CM|Hypopyon, unspecified eye|Hypopyon, unspecified eye +C1510449|T047|PT|H20.1|ICD10|Chronic iridocyclitis|Chronic iridocyclitis +C1510449|T047|HT|H20.1|ICD10CM|Chronic iridocyclitis|Chronic iridocyclitis +C1510449|T047|AB|H20.1|ICD10CM|Chronic iridocyclitis|Chronic iridocyclitis +C2880463|T047|AB|H20.10|ICD10CM|Chronic iridocyclitis, unspecified eye|Chronic iridocyclitis, unspecified eye +C2880463|T047|PT|H20.10|ICD10CM|Chronic iridocyclitis, unspecified eye|Chronic iridocyclitis, unspecified eye +C2880464|T047|AB|H20.11|ICD10CM|Chronic iridocyclitis, right eye|Chronic iridocyclitis, right eye +C2880464|T047|PT|H20.11|ICD10CM|Chronic iridocyclitis, right eye|Chronic iridocyclitis, right eye +C2880465|T047|AB|H20.12|ICD10CM|Chronic iridocyclitis, left eye|Chronic iridocyclitis, left eye +C2880465|T047|PT|H20.12|ICD10CM|Chronic iridocyclitis, left eye|Chronic iridocyclitis, left eye +C2880466|T047|AB|H20.13|ICD10CM|Chronic iridocyclitis, bilateral|Chronic iridocyclitis, bilateral +C2880466|T047|PT|H20.13|ICD10CM|Chronic iridocyclitis, bilateral|Chronic iridocyclitis, bilateral +C0339320|T047|HT|H20.2|ICD10CM|Lens-induced iridocyclitis|Lens-induced iridocyclitis +C0339320|T047|AB|H20.2|ICD10CM|Lens-induced iridocyclitis|Lens-induced iridocyclitis +C0339320|T047|PT|H20.2|ICD10|Lens-induced iridocyclitis|Lens-induced iridocyclitis +C2880467|T047|AB|H20.20|ICD10CM|Lens-induced iridocyclitis, unspecified eye|Lens-induced iridocyclitis, unspecified eye +C2880467|T047|PT|H20.20|ICD10CM|Lens-induced iridocyclitis, unspecified eye|Lens-induced iridocyclitis, unspecified eye +C2880468|T047|AB|H20.21|ICD10CM|Lens-induced iridocyclitis, right eye|Lens-induced iridocyclitis, right eye +C2880468|T047|PT|H20.21|ICD10CM|Lens-induced iridocyclitis, right eye|Lens-induced iridocyclitis, right eye +C2880469|T047|AB|H20.22|ICD10CM|Lens-induced iridocyclitis, left eye|Lens-induced iridocyclitis, left eye +C2880469|T047|PT|H20.22|ICD10CM|Lens-induced iridocyclitis, left eye|Lens-induced iridocyclitis, left eye +C2880470|T047|AB|H20.23|ICD10CM|Lens-induced iridocyclitis, bilateral|Lens-induced iridocyclitis, bilateral +C2880470|T047|PT|H20.23|ICD10CM|Lens-induced iridocyclitis, bilateral|Lens-induced iridocyclitis, bilateral +C0348535|T047|PT|H20.8|ICD10|Other iridocyclitis|Other iridocyclitis +C0348535|T047|HT|H20.8|ICD10CM|Other iridocyclitis|Other iridocyclitis +C0348535|T047|AB|H20.8|ICD10CM|Other iridocyclitis|Other iridocyclitis +C0016782|T047|HT|H20.81|ICD10CM|Fuchs' heterochromic cyclitis|Fuchs' heterochromic cyclitis +C0016782|T047|AB|H20.81|ICD10CM|Fuchs' heterochromic cyclitis|Fuchs' heterochromic cyclitis +C2880471|T047|AB|H20.811|ICD10CM|Fuchs' heterochromic cyclitis, right eye|Fuchs' heterochromic cyclitis, right eye +C2880471|T047|PT|H20.811|ICD10CM|Fuchs' heterochromic cyclitis, right eye|Fuchs' heterochromic cyclitis, right eye +C2880472|T047|AB|H20.812|ICD10CM|Fuchs' heterochromic cyclitis, left eye|Fuchs' heterochromic cyclitis, left eye +C2880472|T047|PT|H20.812|ICD10CM|Fuchs' heterochromic cyclitis, left eye|Fuchs' heterochromic cyclitis, left eye +C2880473|T047|AB|H20.813|ICD10CM|Fuchs' heterochromic cyclitis, bilateral|Fuchs' heterochromic cyclitis, bilateral +C2880473|T047|PT|H20.813|ICD10CM|Fuchs' heterochromic cyclitis, bilateral|Fuchs' heterochromic cyclitis, bilateral +C2880474|T047|AB|H20.819|ICD10CM|Fuchs' heterochromic cyclitis, unspecified eye|Fuchs' heterochromic cyclitis, unspecified eye +C2880474|T047|PT|H20.819|ICD10CM|Fuchs' heterochromic cyclitis, unspecified eye|Fuchs' heterochromic cyclitis, unspecified eye +C0042170|T047|HT|H20.82|ICD10CM|Vogt-Koyanagi syndrome|Vogt-Koyanagi syndrome +C0042170|T047|AB|H20.82|ICD10CM|Vogt-Koyanagi syndrome|Vogt-Koyanagi syndrome +C2880475|T047|AB|H20.821|ICD10CM|Vogt-Koyanagi syndrome, right eye|Vogt-Koyanagi syndrome, right eye +C2880475|T047|PT|H20.821|ICD10CM|Vogt-Koyanagi syndrome, right eye|Vogt-Koyanagi syndrome, right eye +C2880476|T047|AB|H20.822|ICD10CM|Vogt-Koyanagi syndrome, left eye|Vogt-Koyanagi syndrome, left eye +C2880476|T047|PT|H20.822|ICD10CM|Vogt-Koyanagi syndrome, left eye|Vogt-Koyanagi syndrome, left eye +C2880477|T047|AB|H20.823|ICD10CM|Vogt-Koyanagi syndrome, bilateral|Vogt-Koyanagi syndrome, bilateral +C2880477|T047|PT|H20.823|ICD10CM|Vogt-Koyanagi syndrome, bilateral|Vogt-Koyanagi syndrome, bilateral +C2880478|T047|AB|H20.829|ICD10CM|Vogt-Koyanagi syndrome, unspecified eye|Vogt-Koyanagi syndrome, unspecified eye +C2880478|T047|PT|H20.829|ICD10CM|Vogt-Koyanagi syndrome, unspecified eye|Vogt-Koyanagi syndrome, unspecified eye +C0022073|T047|PT|H20.9|ICD10|Iridocyclitis, unspecified|Iridocyclitis, unspecified +C0022073|T047|PT|H20.9|ICD10CM|Unspecified iridocyclitis|Unspecified iridocyclitis +C0022073|T047|AB|H20.9|ICD10CM|Unspecified iridocyclitis|Unspecified iridocyclitis +C0042164|T047|ET|H20.9|ICD10CM|Uveitis NOS|Uveitis NOS +C0339308|T047|HT|H21|ICD10|Other disorders of iris and ciliary body|Other disorders of iris and ciliary body +C0339308|T047|HT|H21|ICD10CM|Other disorders of iris and ciliary body|Other disorders of iris and ciliary body +C0339308|T047|AB|H21|ICD10CM|Other disorders of iris and ciliary body|Other disorders of iris and ciliary body +C0020581|T046|PT|H21.0|ICD10|Hyphaema|Hyphaema +C0020581|T046|HT|H21.0|ICD10CM|Hyphema|Hyphema +C0020581|T046|AB|H21.0|ICD10CM|Hyphema|Hyphema +C0020581|T046|PT|H21.0|ICD10AE|Hyphema|Hyphema +C0020581|T046|AB|H21.00|ICD10CM|Hyphema, unspecified eye|Hyphema, unspecified eye +C0020581|T046|PT|H21.00|ICD10CM|Hyphema, unspecified eye|Hyphema, unspecified eye +C2047706|T047|AB|H21.01|ICD10CM|Hyphema, right eye|Hyphema, right eye +C2047706|T047|PT|H21.01|ICD10CM|Hyphema, right eye|Hyphema, right eye +C2047703|T046|AB|H21.02|ICD10CM|Hyphema, left eye|Hyphema, left eye +C2047703|T046|PT|H21.02|ICD10CM|Hyphema, left eye|Hyphema, left eye +C2880479|T046|AB|H21.03|ICD10CM|Hyphema, bilateral|Hyphema, bilateral +C2880479|T046|PT|H21.03|ICD10CM|Hyphema, bilateral|Hyphema, bilateral +C0865524|T047|ET|H21.1|ICD10CM|Neovascularization of iris or ciliary body|Neovascularization of iris or ciliary body +C0348536|T047|HT|H21.1|ICD10CM|Other vascular disorders of iris and ciliary body|Other vascular disorders of iris and ciliary body +C0348536|T047|AB|H21.1|ICD10CM|Other vascular disorders of iris and ciliary body|Other vascular disorders of iris and ciliary body +C0348536|T047|PT|H21.1|ICD10|Other vascular disorders of iris and ciliary body|Other vascular disorders of iris and ciliary body +C0154916|T047|ET|H21.1|ICD10CM|Rubeosis iridis|Rubeosis iridis +C1401273|T047|ET|H21.1|ICD10CM|Rubeosis of iris|Rubeosis of iris +C0348536|T047|HT|H21.1X|ICD10CM|Other vascular disorders of iris and ciliary body|Other vascular disorders of iris and ciliary body +C0348536|T047|AB|H21.1X|ICD10CM|Other vascular disorders of iris and ciliary body|Other vascular disorders of iris and ciliary body +C2880480|T047|AB|H21.1X1|ICD10CM|Other vascular disorders of iris and ciliary body, right eye|Other vascular disorders of iris and ciliary body, right eye +C2880480|T047|PT|H21.1X1|ICD10CM|Other vascular disorders of iris and ciliary body, right eye|Other vascular disorders of iris and ciliary body, right eye +C2880481|T047|AB|H21.1X2|ICD10CM|Other vascular disorders of iris and ciliary body, left eye|Other vascular disorders of iris and ciliary body, left eye +C2880481|T047|PT|H21.1X2|ICD10CM|Other vascular disorders of iris and ciliary body, left eye|Other vascular disorders of iris and ciliary body, left eye +C2880482|T047|AB|H21.1X3|ICD10CM|Other vascular disorders of iris and ciliary body, bilateral|Other vascular disorders of iris and ciliary body, bilateral +C2880482|T047|PT|H21.1X3|ICD10CM|Other vascular disorders of iris and ciliary body, bilateral|Other vascular disorders of iris and ciliary body, bilateral +C2880483|T047|AB|H21.1X9|ICD10CM|Other vascular disorders of iris and ciliary body, unsp eye|Other vascular disorders of iris and ciliary body, unsp eye +C2880483|T047|PT|H21.1X9|ICD10CM|Other vascular disorders of iris and ciliary body, unspecified eye|Other vascular disorders of iris and ciliary body, unspecified eye +C0154917|T020|PT|H21.2|ICD10|Degeneration of iris and ciliary body|Degeneration of iris and ciliary body +C0154917|T020|HT|H21.2|ICD10CM|Degeneration of iris and ciliary body|Degeneration of iris and ciliary body +C0154917|T020|AB|H21.2|ICD10CM|Degeneration of iris and ciliary body|Degeneration of iris and ciliary body +C2880484|T020|AB|H21.21|ICD10CM|Degeneration of chamber angle|Degeneration of chamber angle +C2880484|T020|HT|H21.21|ICD10CM|Degeneration of chamber angle|Degeneration of chamber angle +C2880485|T020|AB|H21.211|ICD10CM|Degeneration of chamber angle, right eye|Degeneration of chamber angle, right eye +C2880485|T020|PT|H21.211|ICD10CM|Degeneration of chamber angle, right eye|Degeneration of chamber angle, right eye +C2880486|T020|AB|H21.212|ICD10CM|Degeneration of chamber angle, left eye|Degeneration of chamber angle, left eye +C2880486|T020|PT|H21.212|ICD10CM|Degeneration of chamber angle, left eye|Degeneration of chamber angle, left eye +C2880487|T020|AB|H21.213|ICD10CM|Degeneration of chamber angle, bilateral|Degeneration of chamber angle, bilateral +C2880487|T020|PT|H21.213|ICD10CM|Degeneration of chamber angle, bilateral|Degeneration of chamber angle, bilateral +C2880488|T020|AB|H21.219|ICD10CM|Degeneration of chamber angle, unspecified eye|Degeneration of chamber angle, unspecified eye +C2880488|T020|PT|H21.219|ICD10CM|Degeneration of chamber angle, unspecified eye|Degeneration of chamber angle, unspecified eye +C0154924|T047|AB|H21.22|ICD10CM|Degeneration of ciliary body|Degeneration of ciliary body +C0154924|T047|HT|H21.22|ICD10CM|Degeneration of ciliary body|Degeneration of ciliary body +C2880489|T047|AB|H21.221|ICD10CM|Degeneration of ciliary body, right eye|Degeneration of ciliary body, right eye +C2880489|T047|PT|H21.221|ICD10CM|Degeneration of ciliary body, right eye|Degeneration of ciliary body, right eye +C2880490|T047|AB|H21.222|ICD10CM|Degeneration of ciliary body, left eye|Degeneration of ciliary body, left eye +C2880490|T047|PT|H21.222|ICD10CM|Degeneration of ciliary body, left eye|Degeneration of ciliary body, left eye +C2880491|T047|AB|H21.223|ICD10CM|Degeneration of ciliary body, bilateral|Degeneration of ciliary body, bilateral +C2880491|T047|PT|H21.223|ICD10CM|Degeneration of ciliary body, bilateral|Degeneration of ciliary body, bilateral +C2880492|T047|AB|H21.229|ICD10CM|Degeneration of ciliary body, unspecified eye|Degeneration of ciliary body, unspecified eye +C2880492|T047|PT|H21.229|ICD10CM|Degeneration of ciliary body, unspecified eye|Degeneration of ciliary body, unspecified eye +C0154920|T033|AB|H21.23|ICD10CM|Degeneration of iris (pigmentary)|Degeneration of iris (pigmentary) +C0154920|T033|HT|H21.23|ICD10CM|Degeneration of iris (pigmentary)|Degeneration of iris (pigmentary) +C0271113|T047|ET|H21.23|ICD10CM|Translucency of iris|Translucency of iris +C2064470|T047|AB|H21.231|ICD10CM|Degeneration of iris (pigmentary), right eye|Degeneration of iris (pigmentary), right eye +C2064470|T047|PT|H21.231|ICD10CM|Degeneration of iris (pigmentary), right eye|Degeneration of iris (pigmentary), right eye +C2064471|T047|AB|H21.232|ICD10CM|Degeneration of iris (pigmentary), left eye|Degeneration of iris (pigmentary), left eye +C2064471|T047|PT|H21.232|ICD10CM|Degeneration of iris (pigmentary), left eye|Degeneration of iris (pigmentary), left eye +C2880493|T047|AB|H21.233|ICD10CM|Degeneration of iris (pigmentary), bilateral|Degeneration of iris (pigmentary), bilateral +C2880493|T047|PT|H21.233|ICD10CM|Degeneration of iris (pigmentary), bilateral|Degeneration of iris (pigmentary), bilateral +C2880494|T047|AB|H21.239|ICD10CM|Degeneration of iris (pigmentary), unspecified eye|Degeneration of iris (pigmentary), unspecified eye +C2880494|T047|PT|H21.239|ICD10CM|Degeneration of iris (pigmentary), unspecified eye|Degeneration of iris (pigmentary), unspecified eye +C0154921|T047|HT|H21.24|ICD10CM|Degeneration of pupillary margin|Degeneration of pupillary margin +C0154921|T047|AB|H21.24|ICD10CM|Degeneration of pupillary margin|Degeneration of pupillary margin +C2164814|T047|AB|H21.241|ICD10CM|Degeneration of pupillary margin, right eye|Degeneration of pupillary margin, right eye +C2164814|T047|PT|H21.241|ICD10CM|Degeneration of pupillary margin, right eye|Degeneration of pupillary margin, right eye +C2164813|T047|AB|H21.242|ICD10CM|Degeneration of pupillary margin, left eye|Degeneration of pupillary margin, left eye +C2164813|T047|PT|H21.242|ICD10CM|Degeneration of pupillary margin, left eye|Degeneration of pupillary margin, left eye +C2880495|T047|AB|H21.243|ICD10CM|Degeneration of pupillary margin, bilateral|Degeneration of pupillary margin, bilateral +C2880495|T047|PT|H21.243|ICD10CM|Degeneration of pupillary margin, bilateral|Degeneration of pupillary margin, bilateral +C2880496|T047|AB|H21.249|ICD10CM|Degeneration of pupillary margin, unspecified eye|Degeneration of pupillary margin, unspecified eye +C2880496|T047|PT|H21.249|ICD10CM|Degeneration of pupillary margin, unspecified eye|Degeneration of pupillary margin, unspecified eye +C0154919|T047|HT|H21.25|ICD10CM|Iridoschisis|Iridoschisis +C0154919|T047|AB|H21.25|ICD10CM|Iridoschisis|Iridoschisis +C2079265|T047|AB|H21.251|ICD10CM|Iridoschisis, right eye|Iridoschisis, right eye +C2079265|T047|PT|H21.251|ICD10CM|Iridoschisis, right eye|Iridoschisis, right eye +C2079264|T047|AB|H21.252|ICD10CM|Iridoschisis, left eye|Iridoschisis, left eye +C2079264|T047|PT|H21.252|ICD10CM|Iridoschisis, left eye|Iridoschisis, left eye +C2880497|T047|AB|H21.253|ICD10CM|Iridoschisis, bilateral|Iridoschisis, bilateral +C2880497|T047|PT|H21.253|ICD10CM|Iridoschisis, bilateral|Iridoschisis, bilateral +C2880498|T047|AB|H21.259|ICD10CM|Iridoschisis, unspecified eye|Iridoschisis, unspecified eye +C2880498|T047|PT|H21.259|ICD10CM|Iridoschisis, unspecified eye|Iridoschisis, unspecified eye +C2880502|T020|AB|H21.26|ICD10CM|Iris atrophy (essential) (progressive)|Iris atrophy (essential) (progressive) +C2880502|T020|HT|H21.26|ICD10CM|Iris atrophy (essential) (progressive)|Iris atrophy (essential) (progressive) +C2880499|T020|AB|H21.261|ICD10CM|Iris atrophy (essential) (progressive), right eye|Iris atrophy (essential) (progressive), right eye +C2880499|T020|PT|H21.261|ICD10CM|Iris atrophy (essential) (progressive), right eye|Iris atrophy (essential) (progressive), right eye +C2880500|T020|AB|H21.262|ICD10CM|Iris atrophy (essential) (progressive), left eye|Iris atrophy (essential) (progressive), left eye +C2880500|T020|PT|H21.262|ICD10CM|Iris atrophy (essential) (progressive), left eye|Iris atrophy (essential) (progressive), left eye +C2880501|T020|AB|H21.263|ICD10CM|Iris atrophy (essential) (progressive), bilateral|Iris atrophy (essential) (progressive), bilateral +C2880501|T020|PT|H21.263|ICD10CM|Iris atrophy (essential) (progressive), bilateral|Iris atrophy (essential) (progressive), bilateral +C2880502|T020|AB|H21.269|ICD10CM|Iris atrophy (essential) (progressive), unspecified eye|Iris atrophy (essential) (progressive), unspecified eye +C2880502|T020|PT|H21.269|ICD10CM|Iris atrophy (essential) (progressive), unspecified eye|Iris atrophy (essential) (progressive), unspecified eye +C1394374|T020|AB|H21.27|ICD10CM|Miotic pupillary cyst|Miotic pupillary cyst +C1394374|T020|HT|H21.27|ICD10CM|Miotic pupillary cyst|Miotic pupillary cyst +C2880503|T020|AB|H21.271|ICD10CM|Miotic pupillary cyst, right eye|Miotic pupillary cyst, right eye +C2880503|T020|PT|H21.271|ICD10CM|Miotic pupillary cyst, right eye|Miotic pupillary cyst, right eye +C2880504|T020|AB|H21.272|ICD10CM|Miotic pupillary cyst, left eye|Miotic pupillary cyst, left eye +C2880504|T020|PT|H21.272|ICD10CM|Miotic pupillary cyst, left eye|Miotic pupillary cyst, left eye +C2880505|T020|AB|H21.273|ICD10CM|Miotic pupillary cyst, bilateral|Miotic pupillary cyst, bilateral +C2880505|T020|PT|H21.273|ICD10CM|Miotic pupillary cyst, bilateral|Miotic pupillary cyst, bilateral +C1394374|T020|AB|H21.279|ICD10CM|Miotic pupillary cyst, unspecified eye|Miotic pupillary cyst, unspecified eye +C1394374|T020|PT|H21.279|ICD10CM|Miotic pupillary cyst, unspecified eye|Miotic pupillary cyst, unspecified eye +C0154925|T047|AB|H21.29|ICD10CM|Other iris atrophy|Other iris atrophy +C0154925|T047|PT|H21.29|ICD10CM|Other iris atrophy|Other iris atrophy +C0154926|T047|HT|H21.3|ICD10CM|Cyst of iris, ciliary body and anterior chamber|Cyst of iris, ciliary body and anterior chamber +C0154926|T047|AB|H21.3|ICD10CM|Cyst of iris, ciliary body and anterior chamber|Cyst of iris, ciliary body and anterior chamber +C0154926|T047|PT|H21.3|ICD10|Cyst of iris, ciliary body and anterior chamber|Cyst of iris, ciliary body and anterior chamber +C0154926|T047|ET|H21.30|ICD10CM|Cyst of iris, ciliary body or anterior chamber NOS|Cyst of iris, ciliary body or anterior chamber NOS +C0339341|T047|AB|H21.30|ICD10CM|Idiopathic cysts of iris, ciliary body or anterior chamber|Idiopathic cysts of iris, ciliary body or anterior chamber +C0339341|T047|HT|H21.30|ICD10CM|Idiopathic cysts of iris, ciliary body or anterior chamber|Idiopathic cysts of iris, ciliary body or anterior chamber +C2880507|T047|AB|H21.301|ICD10CM|Idio cysts of iris, ciliary body or ant chamber, right eye|Idio cysts of iris, ciliary body or ant chamber, right eye +C2880507|T047|PT|H21.301|ICD10CM|Idiopathic cysts of iris, ciliary body or anterior chamber, right eye|Idiopathic cysts of iris, ciliary body or anterior chamber, right eye +C2880508|T047|AB|H21.302|ICD10CM|Idio cysts of iris, ciliary body or ant chamber, left eye|Idio cysts of iris, ciliary body or ant chamber, left eye +C2880508|T047|PT|H21.302|ICD10CM|Idiopathic cysts of iris, ciliary body or anterior chamber, left eye|Idiopathic cysts of iris, ciliary body or anterior chamber, left eye +C2880509|T047|AB|H21.303|ICD10CM|Idio cysts of iris, ciliary body or ant chamber, bilateral|Idio cysts of iris, ciliary body or ant chamber, bilateral +C2880509|T047|PT|H21.303|ICD10CM|Idiopathic cysts of iris, ciliary body or anterior chamber, bilateral|Idiopathic cysts of iris, ciliary body or anterior chamber, bilateral +C2880510|T047|AB|H21.309|ICD10CM|Idio cysts of iris, ciliary body or ant chamber, unsp eye|Idio cysts of iris, ciliary body or ant chamber, unsp eye +C2880510|T047|PT|H21.309|ICD10CM|Idiopathic cysts of iris, ciliary body or anterior chamber, unspecified eye|Idiopathic cysts of iris, ciliary body or anterior chamber, unspecified eye +C0154929|T047|HT|H21.31|ICD10CM|Exudative cysts of iris or anterior chamber|Exudative cysts of iris or anterior chamber +C0154929|T047|AB|H21.31|ICD10CM|Exudative cysts of iris or anterior chamber|Exudative cysts of iris or anterior chamber +C2880511|T190|AB|H21.311|ICD10CM|Exudative cysts of iris or anterior chamber, right eye|Exudative cysts of iris or anterior chamber, right eye +C2880511|T190|PT|H21.311|ICD10CM|Exudative cysts of iris or anterior chamber, right eye|Exudative cysts of iris or anterior chamber, right eye +C2880512|T190|AB|H21.312|ICD10CM|Exudative cysts of iris or anterior chamber, left eye|Exudative cysts of iris or anterior chamber, left eye +C2880512|T190|PT|H21.312|ICD10CM|Exudative cysts of iris or anterior chamber, left eye|Exudative cysts of iris or anterior chamber, left eye +C2880513|T190|AB|H21.313|ICD10CM|Exudative cysts of iris or anterior chamber, bilateral|Exudative cysts of iris or anterior chamber, bilateral +C2880513|T190|PT|H21.313|ICD10CM|Exudative cysts of iris or anterior chamber, bilateral|Exudative cysts of iris or anterior chamber, bilateral +C2880514|T190|AB|H21.319|ICD10CM|Exudative cysts of iris or anterior chamber, unspecified eye|Exudative cysts of iris or anterior chamber, unspecified eye +C2880514|T190|PT|H21.319|ICD10CM|Exudative cysts of iris or anterior chamber, unspecified eye|Exudative cysts of iris or anterior chamber, unspecified eye +C0339342|T047|AB|H21.32|ICD10CM|Implantation cysts of iris, ciliary body or anterior chamber|Implantation cysts of iris, ciliary body or anterior chamber +C0339342|T047|HT|H21.32|ICD10CM|Implantation cysts of iris, ciliary body or anterior chamber|Implantation cysts of iris, ciliary body or anterior chamber +C2880515|T047|AB|H21.321|ICD10CM|Implant cysts of iris, ciliary body or ant chamber, r eye|Implant cysts of iris, ciliary body or ant chamber, r eye +C2880515|T047|PT|H21.321|ICD10CM|Implantation cysts of iris, ciliary body or anterior chamber, right eye|Implantation cysts of iris, ciliary body or anterior chamber, right eye +C2880516|T047|AB|H21.322|ICD10CM|Implant cysts of iris, ciliary body or ant chamber, left eye|Implant cysts of iris, ciliary body or ant chamber, left eye +C2880516|T047|PT|H21.322|ICD10CM|Implantation cysts of iris, ciliary body or anterior chamber, left eye|Implantation cysts of iris, ciliary body or anterior chamber, left eye +C2880517|T047|AB|H21.323|ICD10CM|Implant cysts of iris, ciliary body or ant chamber, bi|Implant cysts of iris, ciliary body or ant chamber, bi +C2880517|T047|PT|H21.323|ICD10CM|Implantation cysts of iris, ciliary body or anterior chamber, bilateral|Implantation cysts of iris, ciliary body or anterior chamber, bilateral +C2880518|T047|AB|H21.329|ICD10CM|Implant cysts of iris, ciliary body or ant chamber, unsp eye|Implant cysts of iris, ciliary body or ant chamber, unsp eye +C2880518|T047|PT|H21.329|ICD10CM|Implantation cysts of iris, ciliary body or anterior chamber, unspecified eye|Implantation cysts of iris, ciliary body or anterior chamber, unspecified eye +C2880519|T047|AB|H21.33|ICD10CM|Parasitic cyst of iris, ciliary body or anterior chamber|Parasitic cyst of iris, ciliary body or anterior chamber +C2880519|T047|HT|H21.33|ICD10CM|Parasitic cyst of iris, ciliary body or anterior chamber|Parasitic cyst of iris, ciliary body or anterior chamber +C2880520|T047|PT|H21.331|ICD10CM|Parasitic cyst of iris, ciliary body or anterior chamber, right eye|Parasitic cyst of iris, ciliary body or anterior chamber, right eye +C2880520|T047|AB|H21.331|ICD10CM|Parastc cyst of iris, ciliary body or ant chamber, right eye|Parastc cyst of iris, ciliary body or ant chamber, right eye +C2880521|T047|PT|H21.332|ICD10CM|Parasitic cyst of iris, ciliary body or anterior chamber, left eye|Parasitic cyst of iris, ciliary body or anterior chamber, left eye +C2880521|T047|AB|H21.332|ICD10CM|Parastc cyst of iris, ciliary body or ant chamber, left eye|Parastc cyst of iris, ciliary body or ant chamber, left eye +C2880522|T047|AB|H21.333|ICD10CM|Parasitic cyst of iris, ciliary body or ant chamber, bi|Parasitic cyst of iris, ciliary body or ant chamber, bi +C2880522|T047|PT|H21.333|ICD10CM|Parasitic cyst of iris, ciliary body or anterior chamber, bilateral|Parasitic cyst of iris, ciliary body or anterior chamber, bilateral +C2880523|T047|PT|H21.339|ICD10CM|Parasitic cyst of iris, ciliary body or anterior chamber, unspecified eye|Parasitic cyst of iris, ciliary body or anterior chamber, unspecified eye +C2880523|T047|AB|H21.339|ICD10CM|Parastc cyst of iris, ciliary body or ant chamber, unsp eye|Parastc cyst of iris, ciliary body or ant chamber, unsp eye +C0154930|T047|HT|H21.34|ICD10CM|Primary cyst of pars plana|Primary cyst of pars plana +C0154930|T047|AB|H21.34|ICD10CM|Primary cyst of pars plana|Primary cyst of pars plana +C2880524|T047|AB|H21.341|ICD10CM|Primary cyst of pars plana, right eye|Primary cyst of pars plana, right eye +C2880524|T047|PT|H21.341|ICD10CM|Primary cyst of pars plana, right eye|Primary cyst of pars plana, right eye +C2880525|T047|AB|H21.342|ICD10CM|Primary cyst of pars plana, left eye|Primary cyst of pars plana, left eye +C2880525|T047|PT|H21.342|ICD10CM|Primary cyst of pars plana, left eye|Primary cyst of pars plana, left eye +C2880526|T047|AB|H21.343|ICD10CM|Primary cyst of pars plana, bilateral|Primary cyst of pars plana, bilateral +C2880526|T047|PT|H21.343|ICD10CM|Primary cyst of pars plana, bilateral|Primary cyst of pars plana, bilateral +C2880527|T047|AB|H21.349|ICD10CM|Primary cyst of pars plana, unspecified eye|Primary cyst of pars plana, unspecified eye +C2880527|T047|PT|H21.349|ICD10CM|Primary cyst of pars plana, unspecified eye|Primary cyst of pars plana, unspecified eye +C0154931|T047|HT|H21.35|ICD10CM|Exudative cyst of pars plana|Exudative cyst of pars plana +C0154931|T047|AB|H21.35|ICD10CM|Exudative cyst of pars plana|Exudative cyst of pars plana +C2880528|T047|AB|H21.351|ICD10CM|Exudative cyst of pars plana, right eye|Exudative cyst of pars plana, right eye +C2880528|T047|PT|H21.351|ICD10CM|Exudative cyst of pars plana, right eye|Exudative cyst of pars plana, right eye +C2880529|T047|AB|H21.352|ICD10CM|Exudative cyst of pars plana, left eye|Exudative cyst of pars plana, left eye +C2880529|T047|PT|H21.352|ICD10CM|Exudative cyst of pars plana, left eye|Exudative cyst of pars plana, left eye +C2880530|T047|AB|H21.353|ICD10CM|Exudative cyst of pars plana, bilateral|Exudative cyst of pars plana, bilateral +C2880530|T047|PT|H21.353|ICD10CM|Exudative cyst of pars plana, bilateral|Exudative cyst of pars plana, bilateral +C2880531|T047|AB|H21.359|ICD10CM|Exudative cyst of pars plana, unspecified eye|Exudative cyst of pars plana, unspecified eye +C2880531|T047|PT|H21.359|ICD10CM|Exudative cyst of pars plana, unspecified eye|Exudative cyst of pars plana, unspecified eye +C0271133|T047|ET|H21.4|ICD10CM|Iris bombé|Iris bombé +C0496958|T047|PX|H21.4|ICD10|Other disorder of pupillary membranes|Other disorder of pupillary membranes +C0496958|T047|PS|H21.4|ICD10|Pupillary membranes|Pupillary membranes +C0496958|T047|HT|H21.4|ICD10CM|Pupillary membranes|Pupillary membranes +C0496958|T047|AB|H21.4|ICD10CM|Pupillary membranes|Pupillary membranes +C0271131|T047|ET|H21.4|ICD10CM|Pupillary occlusion|Pupillary occlusion +C0423329|T033|ET|H21.4|ICD10CM|Pupillary seclusion|Pupillary seclusion +C2880532|T019|AB|H21.40|ICD10CM|Pupillary membranes, unspecified eye|Pupillary membranes, unspecified eye +C2880532|T019|PT|H21.40|ICD10CM|Pupillary membranes, unspecified eye|Pupillary membranes, unspecified eye +C2880533|T019|AB|H21.41|ICD10CM|Pupillary membranes, right eye|Pupillary membranes, right eye +C2880533|T019|PT|H21.41|ICD10CM|Pupillary membranes, right eye|Pupillary membranes, right eye +C2880534|T019|AB|H21.42|ICD10CM|Pupillary membranes, left eye|Pupillary membranes, left eye +C2880534|T019|PT|H21.42|ICD10CM|Pupillary membranes, left eye|Pupillary membranes, left eye +C2880535|T019|AB|H21.43|ICD10CM|Pupillary membranes, bilateral|Pupillary membranes, bilateral +C2880535|T019|PT|H21.43|ICD10CM|Pupillary membranes, bilateral|Pupillary membranes, bilateral +C2880536|T047|AB|H21.5|ICD10CM|Oth and unsp adhes and disruptions of iris and ciliary body|Oth and unsp adhes and disruptions of iris and ciliary body +C0348537|T047|PT|H21.5|ICD10|Other adhesions and disruptions of iris and ciliary body|Other adhesions and disruptions of iris and ciliary body +C2880536|T047|HT|H21.5|ICD10CM|Other and unspecified adhesions and disruptions of iris and ciliary body|Other and unspecified adhesions and disruptions of iris and ciliary body +C0154933|T047|ET|H21.50|ICD10CM|Synechia (iris) NOS|Synechia (iris) NOS +C0154933|T047|AB|H21.50|ICD10CM|Unspecified adhesions of iris|Unspecified adhesions of iris +C0154933|T047|HT|H21.50|ICD10CM|Unspecified adhesions of iris|Unspecified adhesions of iris +C2880537|T047|AB|H21.501|ICD10CM|Unspecified adhesions of iris, right eye|Unspecified adhesions of iris, right eye +C2880537|T047|PT|H21.501|ICD10CM|Unspecified adhesions of iris, right eye|Unspecified adhesions of iris, right eye +C2880538|T047|AB|H21.502|ICD10CM|Unspecified adhesions of iris, left eye|Unspecified adhesions of iris, left eye +C2880538|T047|PT|H21.502|ICD10CM|Unspecified adhesions of iris, left eye|Unspecified adhesions of iris, left eye +C2880539|T047|AB|H21.503|ICD10CM|Unspecified adhesions of iris, bilateral|Unspecified adhesions of iris, bilateral +C2880539|T047|PT|H21.503|ICD10CM|Unspecified adhesions of iris, bilateral|Unspecified adhesions of iris, bilateral +C2880540|T047|AB|H21.509|ICD10CM|Unsp adhesions of iris and ciliary body, unspecified eye|Unsp adhesions of iris and ciliary body, unspecified eye +C2880540|T047|PT|H21.509|ICD10CM|Unspecified adhesions of iris and ciliary body, unspecified eye|Unspecified adhesions of iris and ciliary body, unspecified eye +C0152252|T047|AB|H21.51|ICD10CM|Anterior synechiae (iris)|Anterior synechiae (iris) +C0152252|T047|HT|H21.51|ICD10CM|Anterior synechiae (iris)|Anterior synechiae (iris) +C2880541|T047|AB|H21.511|ICD10CM|Anterior synechiae (iris), right eye|Anterior synechiae (iris), right eye +C2880541|T047|PT|H21.511|ICD10CM|Anterior synechiae (iris), right eye|Anterior synechiae (iris), right eye +C2880542|T047|AB|H21.512|ICD10CM|Anterior synechiae (iris), left eye|Anterior synechiae (iris), left eye +C2880542|T047|PT|H21.512|ICD10CM|Anterior synechiae (iris), left eye|Anterior synechiae (iris), left eye +C2880543|T047|AB|H21.513|ICD10CM|Anterior synechiae (iris), bilateral|Anterior synechiae (iris), bilateral +C2880543|T047|PT|H21.513|ICD10CM|Anterior synechiae (iris), bilateral|Anterior synechiae (iris), bilateral +C2880544|T047|AB|H21.519|ICD10CM|Anterior synechiae (iris), unspecified eye|Anterior synechiae (iris), unspecified eye +C2880544|T047|PT|H21.519|ICD10CM|Anterior synechiae (iris), unspecified eye|Anterior synechiae (iris), unspecified eye +C0154934|T047|HT|H21.52|ICD10CM|Goniosynechiae|Goniosynechiae +C0154934|T047|AB|H21.52|ICD10CM|Goniosynechiae|Goniosynechiae +C2880545|T047|AB|H21.521|ICD10CM|Goniosynechiae, right eye|Goniosynechiae, right eye +C2880545|T047|PT|H21.521|ICD10CM|Goniosynechiae, right eye|Goniosynechiae, right eye +C2880546|T047|AB|H21.522|ICD10CM|Goniosynechiae, left eye|Goniosynechiae, left eye +C2880546|T047|PT|H21.522|ICD10CM|Goniosynechiae, left eye|Goniosynechiae, left eye +C2880547|T047|AB|H21.523|ICD10CM|Goniosynechiae, bilateral|Goniosynechiae, bilateral +C2880547|T047|PT|H21.523|ICD10CM|Goniosynechiae, bilateral|Goniosynechiae, bilateral +C2880548|T047|AB|H21.529|ICD10CM|Goniosynechiae, unspecified eye|Goniosynechiae, unspecified eye +C2880548|T047|PT|H21.529|ICD10CM|Goniosynechiae, unspecified eye|Goniosynechiae, unspecified eye +C0152246|T047|HT|H21.53|ICD10CM|Iridodialysis|Iridodialysis +C0152246|T047|AB|H21.53|ICD10CM|Iridodialysis|Iridodialysis +C2079257|T047|AB|H21.531|ICD10CM|Iridodialysis, right eye|Iridodialysis, right eye +C2079257|T047|PT|H21.531|ICD10CM|Iridodialysis, right eye|Iridodialysis, right eye +C2079256|T047|AB|H21.532|ICD10CM|Iridodialysis, left eye|Iridodialysis, left eye +C2079256|T047|PT|H21.532|ICD10CM|Iridodialysis, left eye|Iridodialysis, left eye +C2880549|T047|AB|H21.533|ICD10CM|Iridodialysis, bilateral|Iridodialysis, bilateral +C2880549|T047|PT|H21.533|ICD10CM|Iridodialysis, bilateral|Iridodialysis, bilateral +C2880550|T047|AB|H21.539|ICD10CM|Iridodialysis, unspecified eye|Iridodialysis, unspecified eye +C2880550|T047|PT|H21.539|ICD10CM|Iridodialysis, unspecified eye|Iridodialysis, unspecified eye +C0152253|T047|AB|H21.54|ICD10CM|Posterior synechiae (iris)|Posterior synechiae (iris) +C0152253|T047|HT|H21.54|ICD10CM|Posterior synechiae (iris)|Posterior synechiae (iris) +C2880551|T047|AB|H21.541|ICD10CM|Posterior synechiae (iris), right eye|Posterior synechiae (iris), right eye +C2880551|T047|PT|H21.541|ICD10CM|Posterior synechiae (iris), right eye|Posterior synechiae (iris), right eye +C2880552|T047|AB|H21.542|ICD10CM|Posterior synechiae (iris), left eye|Posterior synechiae (iris), left eye +C2880552|T047|PT|H21.542|ICD10CM|Posterior synechiae (iris), left eye|Posterior synechiae (iris), left eye +C2880553|T047|AB|H21.543|ICD10CM|Posterior synechiae (iris), bilateral|Posterior synechiae (iris), bilateral +C2880553|T047|PT|H21.543|ICD10CM|Posterior synechiae (iris), bilateral|Posterior synechiae (iris), bilateral +C2880554|T047|AB|H21.549|ICD10CM|Posterior synechiae (iris), unspecified eye|Posterior synechiae (iris), unspecified eye +C2880554|T047|PT|H21.549|ICD10CM|Posterior synechiae (iris), unspecified eye|Posterior synechiae (iris), unspecified eye +C0154937|T046|HT|H21.55|ICD10CM|Recession of chamber angle|Recession of chamber angle +C0154937|T046|AB|H21.55|ICD10CM|Recession of chamber angle|Recession of chamber angle +C2169675|T046|AB|H21.551|ICD10CM|Recession of chamber angle, right eye|Recession of chamber angle, right eye +C2169675|T046|PT|H21.551|ICD10CM|Recession of chamber angle, right eye|Recession of chamber angle, right eye +C2169674|T046|AB|H21.552|ICD10CM|Recession of chamber angle, left eye|Recession of chamber angle, left eye +C2169674|T046|PT|H21.552|ICD10CM|Recession of chamber angle, left eye|Recession of chamber angle, left eye +C2880555|T046|AB|H21.553|ICD10CM|Recession of chamber angle, bilateral|Recession of chamber angle, bilateral +C2880555|T046|PT|H21.553|ICD10CM|Recession of chamber angle, bilateral|Recession of chamber angle, bilateral +C0154937|T046|AB|H21.559|ICD10CM|Recession of chamber angle, unspecified eye|Recession of chamber angle, unspecified eye +C0154937|T046|PT|H21.559|ICD10CM|Recession of chamber angle, unspecified eye|Recession of chamber angle, unspecified eye +C0271134|T190|ET|H21.56|ICD10CM|Deformed pupil|Deformed pupil +C0271135|T047|ET|H21.56|ICD10CM|Ectopic pupil|Ectopic pupil +C0154936|T033|HT|H21.56|ICD10CM|Pupillary abnormalities|Pupillary abnormalities +C0154936|T033|AB|H21.56|ICD10CM|Pupillary abnormalities|Pupillary abnormalities +C0751457|T037|ET|H21.56|ICD10CM|Rupture of sphincter, pupil|Rupture of sphincter, pupil +C2880556|T047|AB|H21.561|ICD10CM|Pupillary abnormality, right eye|Pupillary abnormality, right eye +C2880556|T047|PT|H21.561|ICD10CM|Pupillary abnormality, right eye|Pupillary abnormality, right eye +C2880557|T047|AB|H21.562|ICD10CM|Pupillary abnormality, left eye|Pupillary abnormality, left eye +C2880557|T047|PT|H21.562|ICD10CM|Pupillary abnormality, left eye|Pupillary abnormality, left eye +C2880558|T047|AB|H21.563|ICD10CM|Pupillary abnormality, bilateral|Pupillary abnormality, bilateral +C2880558|T047|PT|H21.563|ICD10CM|Pupillary abnormality, bilateral|Pupillary abnormality, bilateral +C2880559|T047|AB|H21.569|ICD10CM|Pupillary abnormality, unspecified eye|Pupillary abnormality, unspecified eye +C2880559|T047|PT|H21.569|ICD10CM|Pupillary abnormality, unspecified eye|Pupillary abnormality, unspecified eye +C0348538|T047|HT|H21.8|ICD10CM|Other specified disorders of iris and ciliary body|Other specified disorders of iris and ciliary body +C0348538|T047|AB|H21.8|ICD10CM|Other specified disorders of iris and ciliary body|Other specified disorders of iris and ciliary body +C0348538|T047|PT|H21.8|ICD10|Other specified disorders of iris and ciliary body|Other specified disorders of iris and ciliary body +C1735601|T046|PT|H21.81|ICD10CM|Floppy iris syndrome|Floppy iris syndrome +C1735601|T046|AB|H21.81|ICD10CM|Floppy iris syndrome|Floppy iris syndrome +C1688637|T047|ET|H21.81|ICD10CM|Intraoperative floppy iris syndrome (IFIS)|Intraoperative floppy iris syndrome (IFIS) +C2880560|T047|AB|H21.82|ICD10CM|Plateau iris syndrome (post-iridectomy) (postprocedural)|Plateau iris syndrome (post-iridectomy) (postprocedural) +C2880560|T047|PT|H21.82|ICD10CM|Plateau iris syndrome (post-iridectomy) (postprocedural)|Plateau iris syndrome (post-iridectomy) (postprocedural) +C0348538|T047|PT|H21.89|ICD10CM|Other specified disorders of iris and ciliary body|Other specified disorders of iris and ciliary body +C0348538|T047|AB|H21.89|ICD10CM|Other specified disorders of iris and ciliary body|Other specified disorders of iris and ciliary body +C0154907|T047|PT|H21.9|ICD10|Disorder of iris and ciliary body, unspecified|Disorder of iris and ciliary body, unspecified +C0154907|T047|AB|H21.9|ICD10CM|Unspecified disorder of iris and ciliary body|Unspecified disorder of iris and ciliary body +C0154907|T047|PT|H21.9|ICD10CM|Unspecified disorder of iris and ciliary body|Unspecified disorder of iris and ciliary body +C0694485|T047|AB|H22|ICD10CM|Disorders of iris and ciliary body in diseases classd elswhr|Disorders of iris and ciliary body in diseases classd elswhr +C0694485|T047|PT|H22|ICD10CM|Disorders of iris and ciliary body in diseases classified elsewhere|Disorders of iris and ciliary body in diseases classified elsewhere +C0694485|T047|HT|H22|ICD10|Disorders of iris and ciliary body in diseases classified elsewhere|Disorders of iris and ciliary body in diseases classified elsewhere +C0348539|T047|PT|H22.0|ICD10|Iridocyclitis in infectious and parasitic diseases classified elsewhere|Iridocyclitis in infectious and parasitic diseases classified elsewhere +C0348540|T047|PT|H22.1|ICD10|Iridocyclitis in other diseases classified elsewhere|Iridocyclitis in other diseases classified elsewhere +C0348541|T047|PT|H22.8|ICD10|Other disorders of iris and ciliary body in diseases classified elsewhere|Other disorders of iris and ciliary body in diseases classified elsewhere +C0036646|T020|HT|H25|ICD10CM|Age-related cataract|Age-related cataract +C0036646|T020|AB|H25|ICD10CM|Age-related cataract|Age-related cataract +C0036646|T020|ET|H25|ICD10CM|Senile cataract|Senile cataract +C0036646|T020|HT|H25|ICD10|Senile cataract|Senile cataract +C0023308|T047|HT|H25-H28|ICD10CM|Disorders of lens (H25-H28)|Disorders of lens (H25-H28) +C0023308|T047|HT|H25-H28.9|ICD10|Disorders of lens|Disorders of lens +C2880561|T020|AB|H25.0|ICD10CM|Age-related incipient cataract|Age-related incipient cataract +C2880561|T020|HT|H25.0|ICD10CM|Age-related incipient cataract|Age-related incipient cataract +C2939157|T047|PT|H25.0|ICD10|Senile incipient cataract|Senile incipient cataract +C2880562|T020|AB|H25.01|ICD10CM|Cortical age-related cataract|Cortical age-related cataract +C2880562|T020|HT|H25.01|ICD10CM|Cortical age-related cataract|Cortical age-related cataract +C2880563|T020|AB|H25.011|ICD10CM|Cortical age-related cataract, right eye|Cortical age-related cataract, right eye +C2880563|T020|PT|H25.011|ICD10CM|Cortical age-related cataract, right eye|Cortical age-related cataract, right eye +C2880564|T020|AB|H25.012|ICD10CM|Cortical age-related cataract, left eye|Cortical age-related cataract, left eye +C2880564|T020|PT|H25.012|ICD10CM|Cortical age-related cataract, left eye|Cortical age-related cataract, left eye +C2880565|T020|AB|H25.013|ICD10CM|Cortical age-related cataract, bilateral|Cortical age-related cataract, bilateral +C2880565|T020|PT|H25.013|ICD10CM|Cortical age-related cataract, bilateral|Cortical age-related cataract, bilateral +C2880566|T020|AB|H25.019|ICD10CM|Cortical age-related cataract, unspecified eye|Cortical age-related cataract, unspecified eye +C2880566|T020|PT|H25.019|ICD10CM|Cortical age-related cataract, unspecified eye|Cortical age-related cataract, unspecified eye +C2880567|T020|AB|H25.03|ICD10CM|Anterior subcapsular polar age-related cataract|Anterior subcapsular polar age-related cataract +C2880567|T020|HT|H25.03|ICD10CM|Anterior subcapsular polar age-related cataract|Anterior subcapsular polar age-related cataract +C2880568|T020|AB|H25.031|ICD10CM|Anterior subcapsular polar age-related cataract, right eye|Anterior subcapsular polar age-related cataract, right eye +C2880568|T020|PT|H25.031|ICD10CM|Anterior subcapsular polar age-related cataract, right eye|Anterior subcapsular polar age-related cataract, right eye +C2880569|T020|AB|H25.032|ICD10CM|Anterior subcapsular polar age-related cataract, left eye|Anterior subcapsular polar age-related cataract, left eye +C2880569|T020|PT|H25.032|ICD10CM|Anterior subcapsular polar age-related cataract, left eye|Anterior subcapsular polar age-related cataract, left eye +C2880570|T020|AB|H25.033|ICD10CM|Anterior subcapsular polar age-related cataract, bilateral|Anterior subcapsular polar age-related cataract, bilateral +C2880570|T020|PT|H25.033|ICD10CM|Anterior subcapsular polar age-related cataract, bilateral|Anterior subcapsular polar age-related cataract, bilateral +C2880571|T020|AB|H25.039|ICD10CM|Anterior subcapsular polar age-related cataract, unsp eye|Anterior subcapsular polar age-related cataract, unsp eye +C2880571|T020|PT|H25.039|ICD10CM|Anterior subcapsular polar age-related cataract, unspecified eye|Anterior subcapsular polar age-related cataract, unspecified eye +C2880572|T046|AB|H25.04|ICD10CM|Posterior subcapsular polar age-related cataract|Posterior subcapsular polar age-related cataract +C2880572|T046|HT|H25.04|ICD10CM|Posterior subcapsular polar age-related cataract|Posterior subcapsular polar age-related cataract +C2880573|T046|AB|H25.041|ICD10CM|Posterior subcapsular polar age-related cataract, right eye|Posterior subcapsular polar age-related cataract, right eye +C2880573|T046|PT|H25.041|ICD10CM|Posterior subcapsular polar age-related cataract, right eye|Posterior subcapsular polar age-related cataract, right eye +C2880574|T046|AB|H25.042|ICD10CM|Posterior subcapsular polar age-related cataract, left eye|Posterior subcapsular polar age-related cataract, left eye +C2880574|T046|PT|H25.042|ICD10CM|Posterior subcapsular polar age-related cataract, left eye|Posterior subcapsular polar age-related cataract, left eye +C2880575|T046|AB|H25.043|ICD10CM|Posterior subcapsular polar age-related cataract, bilateral|Posterior subcapsular polar age-related cataract, bilateral +C2880575|T046|PT|H25.043|ICD10CM|Posterior subcapsular polar age-related cataract, bilateral|Posterior subcapsular polar age-related cataract, bilateral +C2880576|T046|AB|H25.049|ICD10CM|Posterior subcapsular polar age-related cataract, unsp eye|Posterior subcapsular polar age-related cataract, unsp eye +C2880576|T046|PT|H25.049|ICD10CM|Posterior subcapsular polar age-related cataract, unspecified eye|Posterior subcapsular polar age-related cataract, unspecified eye +C2880577|T047|ET|H25.09|ICD10CM|Coronary age-related cataract|Coronary age-related cataract +C2880579|T020|AB|H25.09|ICD10CM|Other age-related incipient cataract|Other age-related incipient cataract +C2880579|T020|HT|H25.09|ICD10CM|Other age-related incipient cataract|Other age-related incipient cataract +C2880578|T047|ET|H25.09|ICD10CM|Punctate age-related cataract|Punctate age-related cataract +C0271163|T047|ET|H25.09|ICD10CM|Water clefts|Water clefts +C2880580|T020|AB|H25.091|ICD10CM|Other age-related incipient cataract, right eye|Other age-related incipient cataract, right eye +C2880580|T020|PT|H25.091|ICD10CM|Other age-related incipient cataract, right eye|Other age-related incipient cataract, right eye +C2880581|T020|AB|H25.092|ICD10CM|Other age-related incipient cataract, left eye|Other age-related incipient cataract, left eye +C2880581|T020|PT|H25.092|ICD10CM|Other age-related incipient cataract, left eye|Other age-related incipient cataract, left eye +C2880582|T020|AB|H25.093|ICD10CM|Other age-related incipient cataract, bilateral|Other age-related incipient cataract, bilateral +C2880582|T020|PT|H25.093|ICD10CM|Other age-related incipient cataract, bilateral|Other age-related incipient cataract, bilateral +C2880579|T020|AB|H25.099|ICD10CM|Other age-related incipient cataract, unspecified eye|Other age-related incipient cataract, unspecified eye +C2880579|T020|PT|H25.099|ICD10CM|Other age-related incipient cataract, unspecified eye|Other age-related incipient cataract, unspecified eye +C1832423|T046|HT|H25.1|ICD10CM|Age-related nuclear cataract|Age-related nuclear cataract +C1832423|T046|AB|H25.1|ICD10CM|Age-related nuclear cataract|Age-related nuclear cataract +C0271167|T020|ET|H25.1|ICD10CM|Cataracta brunescens|Cataracta brunescens +C1392114|T047|ET|H25.1|ICD10CM|Nuclear sclerosis cataract|Nuclear sclerosis cataract +C0271166|T020|PT|H25.1|ICD10|Senile nuclear cataract|Senile nuclear cataract +C2880583|T047|AB|H25.10|ICD10CM|Age-related nuclear cataract, unspecified eye|Age-related nuclear cataract, unspecified eye +C2880583|T047|PT|H25.10|ICD10CM|Age-related nuclear cataract, unspecified eye|Age-related nuclear cataract, unspecified eye +C2880584|T047|AB|H25.11|ICD10CM|Age-related nuclear cataract, right eye|Age-related nuclear cataract, right eye +C2880584|T047|PT|H25.11|ICD10CM|Age-related nuclear cataract, right eye|Age-related nuclear cataract, right eye +C2880585|T047|AB|H25.12|ICD10CM|Age-related nuclear cataract, left eye|Age-related nuclear cataract, left eye +C2880585|T047|PT|H25.12|ICD10CM|Age-related nuclear cataract, left eye|Age-related nuclear cataract, left eye +C2880586|T047|AB|H25.13|ICD10CM|Age-related nuclear cataract, bilateral|Age-related nuclear cataract, bilateral +C2880586|T047|PT|H25.13|ICD10CM|Age-related nuclear cataract, bilateral|Age-related nuclear cataract, bilateral +C2880588|T020|AB|H25.2|ICD10CM|Age-related cataract, morgagnian type|Age-related cataract, morgagnian type +C2880588|T020|HT|H25.2|ICD10CM|Age-related cataract, morgagnian type|Age-related cataract, morgagnian type +C2880587|T020|ET|H25.2|ICD10CM|Age-related hypermature cataract|Age-related hypermature cataract +C0152258|T047|PT|H25.2|ICD10|Senile cataract, morgagnian type|Senile cataract, morgagnian type +C2880588|T020|AB|H25.20|ICD10CM|Age-related cataract, morgagnian type, unspecified eye|Age-related cataract, morgagnian type, unspecified eye +C2880588|T020|PT|H25.20|ICD10CM|Age-related cataract, morgagnian type, unspecified eye|Age-related cataract, morgagnian type, unspecified eye +C2880589|T020|AB|H25.21|ICD10CM|Age-related cataract, morgagnian type, right eye|Age-related cataract, morgagnian type, right eye +C2880589|T020|PT|H25.21|ICD10CM|Age-related cataract, morgagnian type, right eye|Age-related cataract, morgagnian type, right eye +C2880590|T020|AB|H25.22|ICD10CM|Age-related cataract, morgagnian type, left eye|Age-related cataract, morgagnian type, left eye +C2880590|T020|PT|H25.22|ICD10CM|Age-related cataract, morgagnian type, left eye|Age-related cataract, morgagnian type, left eye +C2880591|T020|AB|H25.23|ICD10CM|Age-related cataract, morgagnian type, bilateral|Age-related cataract, morgagnian type, bilateral +C2880591|T020|PT|H25.23|ICD10CM|Age-related cataract, morgagnian type, bilateral|Age-related cataract, morgagnian type, bilateral +C2880592|T020|HT|H25.8|ICD10CM|Other age-related cataract|Other age-related cataract +C2880592|T020|AB|H25.8|ICD10CM|Other age-related cataract|Other age-related cataract +C0339362|T020|PT|H25.8|ICD10|Other senile cataract|Other senile cataract +C2880593|T020|AB|H25.81|ICD10CM|Combined forms of age-related cataract|Combined forms of age-related cataract +C2880593|T020|HT|H25.81|ICD10CM|Combined forms of age-related cataract|Combined forms of age-related cataract +C2880594|T020|AB|H25.811|ICD10CM|Combined forms of age-related cataract, right eye|Combined forms of age-related cataract, right eye +C2880594|T020|PT|H25.811|ICD10CM|Combined forms of age-related cataract, right eye|Combined forms of age-related cataract, right eye +C2880595|T020|AB|H25.812|ICD10CM|Combined forms of age-related cataract, left eye|Combined forms of age-related cataract, left eye +C2880595|T020|PT|H25.812|ICD10CM|Combined forms of age-related cataract, left eye|Combined forms of age-related cataract, left eye +C2880596|T020|AB|H25.813|ICD10CM|Combined forms of age-related cataract, bilateral|Combined forms of age-related cataract, bilateral +C2880596|T020|PT|H25.813|ICD10CM|Combined forms of age-related cataract, bilateral|Combined forms of age-related cataract, bilateral +C2880593|T020|AB|H25.819|ICD10CM|Combined forms of age-related cataract, unspecified eye|Combined forms of age-related cataract, unspecified eye +C2880593|T020|PT|H25.819|ICD10CM|Combined forms of age-related cataract, unspecified eye|Combined forms of age-related cataract, unspecified eye +C2880592|T020|AB|H25.89|ICD10CM|Other age-related cataract|Other age-related cataract +C2880592|T020|PT|H25.89|ICD10CM|Other age-related cataract|Other age-related cataract +C0036646|T020|PT|H25.9|ICD10|Senile cataract, unspecified|Senile cataract, unspecified +C2880597|T020|AB|H25.9|ICD10CM|Unspecified age-related cataract|Unspecified age-related cataract +C2880597|T020|PT|H25.9|ICD10CM|Unspecified age-related cataract|Unspecified age-related cataract +C0029531|T047|HT|H26|ICD10|Other cataract|Other cataract +C0029531|T047|HT|H26|ICD10CM|Other cataract|Other cataract +C0029531|T047|AB|H26|ICD10CM|Other cataract|Other cataract +C2880598|T047|AB|H26.0|ICD10CM|Infantile and juvenile cataract|Infantile and juvenile cataract +C2880598|T047|HT|H26.0|ICD10CM|Infantile and juvenile cataract|Infantile and juvenile cataract +C0154970|T047|PT|H26.0|ICD10|Infantile, juvenile and presenile cataract|Infantile, juvenile and presenile cataract +C2880599|T047|AB|H26.00|ICD10CM|Unspecified infantile and juvenile cataract|Unspecified infantile and juvenile cataract +C2880599|T047|HT|H26.00|ICD10CM|Unspecified infantile and juvenile cataract|Unspecified infantile and juvenile cataract +C2880600|T047|AB|H26.001|ICD10CM|Unspecified infantile and juvenile cataract, right eye|Unspecified infantile and juvenile cataract, right eye +C2880600|T047|PT|H26.001|ICD10CM|Unspecified infantile and juvenile cataract, right eye|Unspecified infantile and juvenile cataract, right eye +C2880601|T047|AB|H26.002|ICD10CM|Unspecified infantile and juvenile cataract, left eye|Unspecified infantile and juvenile cataract, left eye +C2880601|T047|PT|H26.002|ICD10CM|Unspecified infantile and juvenile cataract, left eye|Unspecified infantile and juvenile cataract, left eye +C2880602|T047|AB|H26.003|ICD10CM|Unspecified infantile and juvenile cataract, bilateral|Unspecified infantile and juvenile cataract, bilateral +C2880602|T047|PT|H26.003|ICD10CM|Unspecified infantile and juvenile cataract, bilateral|Unspecified infantile and juvenile cataract, bilateral +C2880603|T047|AB|H26.009|ICD10CM|Unspecified infantile and juvenile cataract, unspecified eye|Unspecified infantile and juvenile cataract, unspecified eye +C2880603|T047|PT|H26.009|ICD10CM|Unspecified infantile and juvenile cataract, unspecified eye|Unspecified infantile and juvenile cataract, unspecified eye +C2880604|T047|HT|H26.01|ICD10CM|Infantile and juvenile cortical, lamellar, or zonular cataract|Infantile and juvenile cortical, lamellar, or zonular cataract +C2880604|T047|AB|H26.01|ICD10CM|Infantile and juvenile cortical/lamellar/zonular cataract|Infantile and juvenile cortical/lamellar/zonular cataract +C2880605|T047|AB|H26.011|ICD10CM|Infantile and juv cortical/lamellar/zonular cataract, r eye|Infantile and juv cortical/lamellar/zonular cataract, r eye +C2880605|T047|PT|H26.011|ICD10CM|Infantile and juvenile cortical, lamellar, or zonular cataract, right eye|Infantile and juvenile cortical, lamellar, or zonular cataract, right eye +C2880606|T047|AB|H26.012|ICD10CM|Infantile and juv cortical/lamellar/zonular cataract, l eye|Infantile and juv cortical/lamellar/zonular cataract, l eye +C2880606|T047|PT|H26.012|ICD10CM|Infantile and juvenile cortical, lamellar, or zonular cataract, left eye|Infantile and juvenile cortical, lamellar, or zonular cataract, left eye +C2880607|T047|AB|H26.013|ICD10CM|Infantile and juv cortical/lamellar/zonular cataract, bi|Infantile and juv cortical/lamellar/zonular cataract, bi +C2880607|T047|PT|H26.013|ICD10CM|Infantile and juvenile cortical, lamellar, or zonular cataract, bilateral|Infantile and juvenile cortical, lamellar, or zonular cataract, bilateral +C2880608|T047|AB|H26.019|ICD10CM|Infantile & juv cortical/lamellar/zonular cataract, unsp eye|Infantile & juv cortical/lamellar/zonular cataract, unsp eye +C2880608|T047|PT|H26.019|ICD10CM|Infantile and juvenile cortical, lamellar, or zonular cataract, unspecified eye|Infantile and juvenile cortical, lamellar, or zonular cataract, unspecified eye +C2880609|T047|AB|H26.03|ICD10CM|Infantile and juvenile nuclear cataract|Infantile and juvenile nuclear cataract +C2880609|T047|HT|H26.03|ICD10CM|Infantile and juvenile nuclear cataract|Infantile and juvenile nuclear cataract +C2880610|T047|AB|H26.031|ICD10CM|Infantile and juvenile nuclear cataract, right eye|Infantile and juvenile nuclear cataract, right eye +C2880610|T047|PT|H26.031|ICD10CM|Infantile and juvenile nuclear cataract, right eye|Infantile and juvenile nuclear cataract, right eye +C2880611|T047|AB|H26.032|ICD10CM|Infantile and juvenile nuclear cataract, left eye|Infantile and juvenile nuclear cataract, left eye +C2880611|T047|PT|H26.032|ICD10CM|Infantile and juvenile nuclear cataract, left eye|Infantile and juvenile nuclear cataract, left eye +C2880612|T047|AB|H26.033|ICD10CM|Infantile and juvenile nuclear cataract, bilateral|Infantile and juvenile nuclear cataract, bilateral +C2880612|T047|PT|H26.033|ICD10CM|Infantile and juvenile nuclear cataract, bilateral|Infantile and juvenile nuclear cataract, bilateral +C2880613|T047|AB|H26.039|ICD10CM|Infantile and juvenile nuclear cataract, unspecified eye|Infantile and juvenile nuclear cataract, unspecified eye +C2880613|T047|PT|H26.039|ICD10CM|Infantile and juvenile nuclear cataract, unspecified eye|Infantile and juvenile nuclear cataract, unspecified eye +C2880614|T047|AB|H26.04|ICD10CM|Anterior subcapsular polar infantile and juvenile cataract|Anterior subcapsular polar infantile and juvenile cataract +C2880614|T047|HT|H26.04|ICD10CM|Anterior subcapsular polar infantile and juvenile cataract|Anterior subcapsular polar infantile and juvenile cataract +C2880615|T047|AB|H26.041|ICD10CM|Ant subcapsular polar infantile and juvenile cataract, r eye|Ant subcapsular polar infantile and juvenile cataract, r eye +C2880615|T047|PT|H26.041|ICD10CM|Anterior subcapsular polar infantile and juvenile cataract, right eye|Anterior subcapsular polar infantile and juvenile cataract, right eye +C2880616|T047|AB|H26.042|ICD10CM|Ant subcapsular polar infantile and juv cataract, left eye|Ant subcapsular polar infantile and juv cataract, left eye +C2880616|T047|PT|H26.042|ICD10CM|Anterior subcapsular polar infantile and juvenile cataract, left eye|Anterior subcapsular polar infantile and juvenile cataract, left eye +C2880617|T047|AB|H26.043|ICD10CM|Ant subcapsular polar infantile and juvenile cataract, bi|Ant subcapsular polar infantile and juvenile cataract, bi +C2880617|T047|PT|H26.043|ICD10CM|Anterior subcapsular polar infantile and juvenile cataract, bilateral|Anterior subcapsular polar infantile and juvenile cataract, bilateral +C2880618|T047|AB|H26.049|ICD10CM|Ant subcapsular polar infantile and juv cataract, unsp eye|Ant subcapsular polar infantile and juv cataract, unsp eye +C2880618|T047|PT|H26.049|ICD10CM|Anterior subcapsular polar infantile and juvenile cataract, unspecified eye|Anterior subcapsular polar infantile and juvenile cataract, unspecified eye +C2880619|T047|AB|H26.05|ICD10CM|Posterior subcapsular polar infantile and juvenile cataract|Posterior subcapsular polar infantile and juvenile cataract +C2880619|T047|HT|H26.05|ICD10CM|Posterior subcapsular polar infantile and juvenile cataract|Posterior subcapsular polar infantile and juvenile cataract +C2880620|T047|AB|H26.051|ICD10CM|Post subcapsular polar infantile and juv cataract, r eye|Post subcapsular polar infantile and juv cataract, r eye +C2880620|T047|PT|H26.051|ICD10CM|Posterior subcapsular polar infantile and juvenile cataract, right eye|Posterior subcapsular polar infantile and juvenile cataract, right eye +C2880621|T047|AB|H26.052|ICD10CM|Post subcapsular polar infantile and juv cataract, left eye|Post subcapsular polar infantile and juv cataract, left eye +C2880621|T047|PT|H26.052|ICD10CM|Posterior subcapsular polar infantile and juvenile cataract, left eye|Posterior subcapsular polar infantile and juvenile cataract, left eye +C2880622|T047|AB|H26.053|ICD10CM|Post subcapsular polar infantile and juvenile cataract, bi|Post subcapsular polar infantile and juvenile cataract, bi +C2880622|T047|PT|H26.053|ICD10CM|Posterior subcapsular polar infantile and juvenile cataract, bilateral|Posterior subcapsular polar infantile and juvenile cataract, bilateral +C2880623|T047|AB|H26.059|ICD10CM|Post subcapsular polar infantile and juv cataract, unsp eye|Post subcapsular polar infantile and juv cataract, unsp eye +C2880623|T047|PT|H26.059|ICD10CM|Posterior subcapsular polar infantile and juvenile cataract, unspecified eye|Posterior subcapsular polar infantile and juvenile cataract, unspecified eye +C2880624|T047|AB|H26.06|ICD10CM|Combined forms of infantile and juvenile cataract|Combined forms of infantile and juvenile cataract +C2880624|T047|HT|H26.06|ICD10CM|Combined forms of infantile and juvenile cataract|Combined forms of infantile and juvenile cataract +C2880625|T047|AB|H26.061|ICD10CM|Combined forms of infantile and juvenile cataract, right eye|Combined forms of infantile and juvenile cataract, right eye +C2880625|T047|PT|H26.061|ICD10CM|Combined forms of infantile and juvenile cataract, right eye|Combined forms of infantile and juvenile cataract, right eye +C2880626|T047|AB|H26.062|ICD10CM|Combined forms of infantile and juvenile cataract, left eye|Combined forms of infantile and juvenile cataract, left eye +C2880626|T047|PT|H26.062|ICD10CM|Combined forms of infantile and juvenile cataract, left eye|Combined forms of infantile and juvenile cataract, left eye +C2880627|T047|AB|H26.063|ICD10CM|Combined forms of infantile and juvenile cataract, bilateral|Combined forms of infantile and juvenile cataract, bilateral +C2880627|T047|PT|H26.063|ICD10CM|Combined forms of infantile and juvenile cataract, bilateral|Combined forms of infantile and juvenile cataract, bilateral +C2880628|T047|AB|H26.069|ICD10CM|Combined forms of infantile and juvenile cataract, unsp eye|Combined forms of infantile and juvenile cataract, unsp eye +C2880628|T047|PT|H26.069|ICD10CM|Combined forms of infantile and juvenile cataract, unspecified eye|Combined forms of infantile and juvenile cataract, unspecified eye +C2880629|T047|AB|H26.09|ICD10CM|Other infantile and juvenile cataract|Other infantile and juvenile cataract +C2880629|T047|PT|H26.09|ICD10CM|Other infantile and juvenile cataract|Other infantile and juvenile cataract +C0154983|T037|PT|H26.1|ICD10|Traumatic cataract|Traumatic cataract +C0154983|T037|HT|H26.1|ICD10CM|Traumatic cataract|Traumatic cataract +C0154983|T037|AB|H26.1|ICD10CM|Traumatic cataract|Traumatic cataract +C0154983|T037|AB|H26.10|ICD10CM|Unspecified traumatic cataract|Unspecified traumatic cataract +C0154983|T037|HT|H26.10|ICD10CM|Unspecified traumatic cataract|Unspecified traumatic cataract +C2025452|T037|AB|H26.101|ICD10CM|Unspecified traumatic cataract, right eye|Unspecified traumatic cataract, right eye +C2025452|T037|PT|H26.101|ICD10CM|Unspecified traumatic cataract, right eye|Unspecified traumatic cataract, right eye +C2025450|T037|AB|H26.102|ICD10CM|Unspecified traumatic cataract, left eye|Unspecified traumatic cataract, left eye +C2025450|T037|PT|H26.102|ICD10CM|Unspecified traumatic cataract, left eye|Unspecified traumatic cataract, left eye +C2880630|T037|AB|H26.103|ICD10CM|Unspecified traumatic cataract, bilateral|Unspecified traumatic cataract, bilateral +C2880630|T037|PT|H26.103|ICD10CM|Unspecified traumatic cataract, bilateral|Unspecified traumatic cataract, bilateral +C2880631|T047|AB|H26.109|ICD10CM|Unspecified traumatic cataract, unspecified eye|Unspecified traumatic cataract, unspecified eye +C2880631|T047|PT|H26.109|ICD10CM|Unspecified traumatic cataract, unspecified eye|Unspecified traumatic cataract, unspecified eye +C0154984|T037|HT|H26.11|ICD10CM|Localized traumatic opacities|Localized traumatic opacities +C0154984|T037|AB|H26.11|ICD10CM|Localized traumatic opacities|Localized traumatic opacities +C2880632|T037|AB|H26.111|ICD10CM|Localized traumatic opacities, right eye|Localized traumatic opacities, right eye +C2880632|T037|PT|H26.111|ICD10CM|Localized traumatic opacities, right eye|Localized traumatic opacities, right eye +C2880633|T037|AB|H26.112|ICD10CM|Localized traumatic opacities, left eye|Localized traumatic opacities, left eye +C2880633|T037|PT|H26.112|ICD10CM|Localized traumatic opacities, left eye|Localized traumatic opacities, left eye +C2880634|T047|AB|H26.113|ICD10CM|Localized traumatic opacities, bilateral|Localized traumatic opacities, bilateral +C2880634|T047|PT|H26.113|ICD10CM|Localized traumatic opacities, bilateral|Localized traumatic opacities, bilateral +C2880635|T037|AB|H26.119|ICD10CM|Localized traumatic opacities, unspecified eye|Localized traumatic opacities, unspecified eye +C2880635|T037|PT|H26.119|ICD10CM|Localized traumatic opacities, unspecified eye|Localized traumatic opacities, unspecified eye +C0154986|T037|HT|H26.12|ICD10CM|Partially resolved traumatic cataract|Partially resolved traumatic cataract +C0154986|T037|AB|H26.12|ICD10CM|Partially resolved traumatic cataract|Partially resolved traumatic cataract +C2880636|T037|AB|H26.121|ICD10CM|Partially resolved traumatic cataract, right eye|Partially resolved traumatic cataract, right eye +C2880636|T037|PT|H26.121|ICD10CM|Partially resolved traumatic cataract, right eye|Partially resolved traumatic cataract, right eye +C2880637|T037|AB|H26.122|ICD10CM|Partially resolved traumatic cataract, left eye|Partially resolved traumatic cataract, left eye +C2880637|T037|PT|H26.122|ICD10CM|Partially resolved traumatic cataract, left eye|Partially resolved traumatic cataract, left eye +C2880638|T037|AB|H26.123|ICD10CM|Partially resolved traumatic cataract, bilateral|Partially resolved traumatic cataract, bilateral +C2880638|T037|PT|H26.123|ICD10CM|Partially resolved traumatic cataract, bilateral|Partially resolved traumatic cataract, bilateral +C2880639|T037|AB|H26.129|ICD10CM|Partially resolved traumatic cataract, unspecified eye|Partially resolved traumatic cataract, unspecified eye +C2880639|T037|PT|H26.129|ICD10CM|Partially resolved traumatic cataract, unspecified eye|Partially resolved traumatic cataract, unspecified eye +C0154985|T037|HT|H26.13|ICD10CM|Total traumatic cataract|Total traumatic cataract +C0154985|T037|AB|H26.13|ICD10CM|Total traumatic cataract|Total traumatic cataract +C2880640|T037|AB|H26.131|ICD10CM|Total traumatic cataract, right eye|Total traumatic cataract, right eye +C2880640|T037|PT|H26.131|ICD10CM|Total traumatic cataract, right eye|Total traumatic cataract, right eye +C2880641|T037|AB|H26.132|ICD10CM|Total traumatic cataract, left eye|Total traumatic cataract, left eye +C2880641|T037|PT|H26.132|ICD10CM|Total traumatic cataract, left eye|Total traumatic cataract, left eye +C2880642|T037|AB|H26.133|ICD10CM|Total traumatic cataract, bilateral|Total traumatic cataract, bilateral +C2880642|T037|PT|H26.133|ICD10CM|Total traumatic cataract, bilateral|Total traumatic cataract, bilateral +C2880643|T037|AB|H26.139|ICD10CM|Total traumatic cataract, unspecified eye|Total traumatic cataract, unspecified eye +C2880643|T037|PT|H26.139|ICD10CM|Total traumatic cataract, unspecified eye|Total traumatic cataract, unspecified eye +C4721766|T047|HT|H26.2|ICD10CM|Complicated cataract|Complicated cataract +C4721766|T047|AB|H26.2|ICD10CM|Complicated cataract|Complicated cataract +C4721766|T047|PT|H26.2|ICD10|Complicated cataract|Complicated cataract +C4721766|T047|ET|H26.20|ICD10CM|Cataracta complicata NOS|Cataracta complicata NOS +C2880644|T047|AB|H26.20|ICD10CM|Unspecified complicated cataract|Unspecified complicated cataract +C2880644|T047|PT|H26.20|ICD10CM|Unspecified complicated cataract|Unspecified complicated cataract +C0271172|T020|HT|H26.21|ICD10CM|Cataract with neovascularization|Cataract with neovascularization +C0271172|T020|AB|H26.21|ICD10CM|Cataract with neovascularization|Cataract with neovascularization +C2880645|T047|AB|H26.211|ICD10CM|Cataract with neovascularization, right eye|Cataract with neovascularization, right eye +C2880645|T047|PT|H26.211|ICD10CM|Cataract with neovascularization, right eye|Cataract with neovascularization, right eye +C2880646|T047|AB|H26.212|ICD10CM|Cataract with neovascularization, left eye|Cataract with neovascularization, left eye +C2880646|T047|PT|H26.212|ICD10CM|Cataract with neovascularization, left eye|Cataract with neovascularization, left eye +C2880647|T047|AB|H26.213|ICD10CM|Cataract with neovascularization, bilateral|Cataract with neovascularization, bilateral +C2880647|T047|PT|H26.213|ICD10CM|Cataract with neovascularization, bilateral|Cataract with neovascularization, bilateral +C2880648|T047|AB|H26.219|ICD10CM|Cataract with neovascularization, unspecified eye|Cataract with neovascularization, unspecified eye +C2880648|T047|PT|H26.219|ICD10CM|Cataract with neovascularization, unspecified eye|Cataract with neovascularization, unspecified eye +C2880649|T047|HT|H26.22|ICD10CM|Cataract secondary to ocular disorders (degenerative) (inflammatory)|Cataract secondary to ocular disorders (degenerative) (inflammatory) +C2880649|T047|AB|H26.22|ICD10CM|Cataract secondary to ocular disorders (inflammatory)|Cataract secondary to ocular disorders (inflammatory) +C2880650|T047|PT|H26.221|ICD10CM|Cataract secondary to ocular disorders (degenerative) (inflammatory), right eye|Cataract secondary to ocular disorders (degenerative) (inflammatory), right eye +C2880650|T047|AB|H26.221|ICD10CM|Cataract secondary to ocular disorders, right eye|Cataract secondary to ocular disorders, right eye +C2880651|T047|PT|H26.222|ICD10CM|Cataract secondary to ocular disorders (degenerative) (inflammatory), left eye|Cataract secondary to ocular disorders (degenerative) (inflammatory), left eye +C2880651|T047|AB|H26.222|ICD10CM|Cataract secondary to ocular disorders, left eye|Cataract secondary to ocular disorders, left eye +C2880652|T047|PT|H26.223|ICD10CM|Cataract secondary to ocular disorders (degenerative) (inflammatory), bilateral|Cataract secondary to ocular disorders (degenerative) (inflammatory), bilateral +C2880652|T047|AB|H26.223|ICD10CM|Cataract secondary to ocular disorders, bilateral|Cataract secondary to ocular disorders, bilateral +C2880653|T047|PT|H26.229|ICD10CM|Cataract secondary to ocular disorders (degenerative) (inflammatory), unspecified eye|Cataract secondary to ocular disorders (degenerative) (inflammatory), unspecified eye +C2880653|T047|AB|H26.229|ICD10CM|Cataract secondary to ocular disorders, unsp eye|Cataract secondary to ocular disorders, unsp eye +C0271170|T047|AB|H26.23|ICD10CM|Glaucomatous flecks (subcapsular)|Glaucomatous flecks (subcapsular) +C0271170|T047|HT|H26.23|ICD10CM|Glaucomatous flecks (subcapsular)|Glaucomatous flecks (subcapsular) +C2880654|T047|AB|H26.231|ICD10CM|Glaucomatous flecks (subcapsular), right eye|Glaucomatous flecks (subcapsular), right eye +C2880654|T047|PT|H26.231|ICD10CM|Glaucomatous flecks (subcapsular), right eye|Glaucomatous flecks (subcapsular), right eye +C2880655|T047|AB|H26.232|ICD10CM|Glaucomatous flecks (subcapsular), left eye|Glaucomatous flecks (subcapsular), left eye +C2880655|T047|PT|H26.232|ICD10CM|Glaucomatous flecks (subcapsular), left eye|Glaucomatous flecks (subcapsular), left eye +C2880656|T047|AB|H26.233|ICD10CM|Glaucomatous flecks (subcapsular), bilateral|Glaucomatous flecks (subcapsular), bilateral +C2880656|T047|PT|H26.233|ICD10CM|Glaucomatous flecks (subcapsular), bilateral|Glaucomatous flecks (subcapsular), bilateral +C2880657|T047|AB|H26.239|ICD10CM|Glaucomatous flecks (subcapsular), unspecified eye|Glaucomatous flecks (subcapsular), unspecified eye +C2880657|T047|PT|H26.239|ICD10CM|Glaucomatous flecks (subcapsular), unspecified eye|Glaucomatous flecks (subcapsular), unspecified eye +C0339366|T046|HT|H26.3|ICD10CM|Drug-induced cataract|Drug-induced cataract +C0339366|T046|AB|H26.3|ICD10CM|Drug-induced cataract|Drug-induced cataract +C0339366|T046|PT|H26.3|ICD10|Drug-induced cataract|Drug-induced cataract +C0154995|T037|ET|H26.3|ICD10CM|Toxic cataract|Toxic cataract +C2880658|T047|AB|H26.30|ICD10CM|Drug-induced cataract, unspecified eye|Drug-induced cataract, unspecified eye +C2880658|T047|PT|H26.30|ICD10CM|Drug-induced cataract, unspecified eye|Drug-induced cataract, unspecified eye +C2880659|T047|AB|H26.31|ICD10CM|Drug-induced cataract, right eye|Drug-induced cataract, right eye +C2880659|T047|PT|H26.31|ICD10CM|Drug-induced cataract, right eye|Drug-induced cataract, right eye +C2880660|T047|AB|H26.32|ICD10CM|Drug-induced cataract, left eye|Drug-induced cataract, left eye +C2880660|T047|PT|H26.32|ICD10CM|Drug-induced cataract, left eye|Drug-induced cataract, left eye +C2880661|T047|AB|H26.33|ICD10CM|Drug-induced cataract, bilateral|Drug-induced cataract, bilateral +C2880661|T047|PT|H26.33|ICD10CM|Drug-induced cataract, bilateral|Drug-induced cataract, bilateral +C1306068|T047|PT|H26.4|ICD10|After-cataract|After-cataract +C1306068|T047|HT|H26.4|ICD10CM|Secondary cataract|Secondary cataract +C1306068|T047|AB|H26.4|ICD10CM|Secondary cataract|Secondary cataract +C4721766|T047|PT|H26.40|ICD10CM|Unspecified secondary cataract|Unspecified secondary cataract +C4721766|T047|AB|H26.40|ICD10CM|Unspecified secondary cataract|Unspecified secondary cataract +C0152260|T033|HT|H26.41|ICD10CM|Soemmering's ring|Soemmering's ring +C0152260|T033|AB|H26.41|ICD10CM|Soemmering's ring|Soemmering's ring +C2016773|T033|AB|H26.411|ICD10CM|Soemmering's ring, right eye|Soemmering's ring, right eye +C2016773|T033|PT|H26.411|ICD10CM|Soemmering's ring, right eye|Soemmering's ring, right eye +C2016772|T033|AB|H26.412|ICD10CM|Soemmering's ring, left eye|Soemmering's ring, left eye +C2016772|T033|PT|H26.412|ICD10CM|Soemmering's ring, left eye|Soemmering's ring, left eye +C2880662|T033|AB|H26.413|ICD10CM|Soemmering's ring, bilateral|Soemmering's ring, bilateral +C2880662|T033|PT|H26.413|ICD10CM|Soemmering's ring, bilateral|Soemmering's ring, bilateral +C0152260|T033|AB|H26.419|ICD10CM|Soemmering's ring, unspecified eye|Soemmering's ring, unspecified eye +C0152260|T033|PT|H26.419|ICD10CM|Soemmering's ring, unspecified eye|Soemmering's ring, unspecified eye +C2880666|T020|AB|H26.49|ICD10CM|Other secondary cataract|Other secondary cataract +C2880666|T020|HT|H26.49|ICD10CM|Other secondary cataract|Other secondary cataract +C2880663|T020|AB|H26.491|ICD10CM|Other secondary cataract, right eye|Other secondary cataract, right eye +C2880663|T020|PT|H26.491|ICD10CM|Other secondary cataract, right eye|Other secondary cataract, right eye +C2880664|T020|AB|H26.492|ICD10CM|Other secondary cataract, left eye|Other secondary cataract, left eye +C2880664|T020|PT|H26.492|ICD10CM|Other secondary cataract, left eye|Other secondary cataract, left eye +C2880665|T020|AB|H26.493|ICD10CM|Other secondary cataract, bilateral|Other secondary cataract, bilateral +C2880665|T020|PT|H26.493|ICD10CM|Other secondary cataract, bilateral|Other secondary cataract, bilateral +C2880666|T020|AB|H26.499|ICD10CM|Other secondary cataract, unspecified eye|Other secondary cataract, unspecified eye +C2880666|T020|PT|H26.499|ICD10CM|Other secondary cataract, unspecified eye|Other secondary cataract, unspecified eye +C0348542|T047|PT|H26.8|ICD10|Other specified cataract|Other specified cataract +C0348542|T047|PT|H26.8|ICD10CM|Other specified cataract|Other specified cataract +C0348542|T047|AB|H26.8|ICD10CM|Other specified cataract|Other specified cataract +C0086543|T020|PT|H26.9|ICD10|Cataract, unspecified|Cataract, unspecified +C0086543|T020|PT|H26.9|ICD10CM|Unspecified cataract|Unspecified cataract +C0086543|T020|AB|H26.9|ICD10CM|Unspecified cataract|Unspecified cataract +C0029590|T047|HT|H27|ICD10|Other disorders of lens|Other disorders of lens +C0029590|T047|HT|H27|ICD10CM|Other disorders of lens|Other disorders of lens +C0029590|T047|AB|H27|ICD10CM|Other disorders of lens|Other disorders of lens +C0546244|T020|ET|H27.0|ICD10CM|Acquired absence of lens|Acquired absence of lens +C0546244|T020|ET|H27.0|ICD10CM|Acquired aphakia|Acquired aphakia +C0003534|T190|HT|H27.0|ICD10CM|Aphakia|Aphakia +C0003534|T190|AB|H27.0|ICD10CM|Aphakia|Aphakia +C0003534|T190|PT|H27.0|ICD10|Aphakia|Aphakia +C2880668|T037|ET|H27.0|ICD10CM|Aphakia due to trauma|Aphakia due to trauma +C2880669|T190|AB|H27.00|ICD10CM|Aphakia, unspecified eye|Aphakia, unspecified eye +C2880669|T190|PT|H27.00|ICD10CM|Aphakia, unspecified eye|Aphakia, unspecified eye +C2070008|T033|AB|H27.01|ICD10CM|Aphakia, right eye|Aphakia, right eye +C2070008|T033|PT|H27.01|ICD10CM|Aphakia, right eye|Aphakia, right eye +C2070009|T033|AB|H27.02|ICD10CM|Aphakia, left eye|Aphakia, left eye +C2070009|T033|PT|H27.02|ICD10CM|Aphakia, left eye|Aphakia, left eye +C2880670|T190|AB|H27.03|ICD10CM|Aphakia, bilateral|Aphakia, bilateral +C2880670|T190|PT|H27.03|ICD10CM|Aphakia, bilateral|Aphakia, bilateral +C0023309|T037|PT|H27.1|ICD10|Dislocation of lens|Dislocation of lens +C0023309|T037|HT|H27.1|ICD10CM|Dislocation of lens|Dislocation of lens +C0023309|T037|AB|H27.1|ICD10CM|Dislocation of lens|Dislocation of lens +C0023309|T037|AB|H27.10|ICD10CM|Unspecified dislocation of lens|Unspecified dislocation of lens +C0023309|T037|PT|H27.10|ICD10CM|Unspecified dislocation of lens|Unspecified dislocation of lens +C0023316|T047|HT|H27.11|ICD10CM|Subluxation of lens|Subluxation of lens +C0023316|T047|AB|H27.11|ICD10CM|Subluxation of lens|Subluxation of lens +C2036840|T047|AB|H27.111|ICD10CM|Subluxation of lens, right eye|Subluxation of lens, right eye +C2036840|T047|PT|H27.111|ICD10CM|Subluxation of lens, right eye|Subluxation of lens, right eye +C2036839|T047|AB|H27.112|ICD10CM|Subluxation of lens, left eye|Subluxation of lens, left eye +C2036839|T047|PT|H27.112|ICD10CM|Subluxation of lens, left eye|Subluxation of lens, left eye +C2036838|T047|AB|H27.113|ICD10CM|Subluxation of lens, bilateral|Subluxation of lens, bilateral +C2036838|T047|PT|H27.113|ICD10CM|Subluxation of lens, bilateral|Subluxation of lens, bilateral +C2880672|T047|AB|H27.119|ICD10CM|Subluxation of lens, unspecified eye|Subluxation of lens, unspecified eye +C2880672|T047|PT|H27.119|ICD10CM|Subluxation of lens, unspecified eye|Subluxation of lens, unspecified eye +C0155372|T047|HT|H27.12|ICD10CM|Anterior dislocation of lens|Anterior dislocation of lens +C0155372|T047|AB|H27.12|ICD10CM|Anterior dislocation of lens|Anterior dislocation of lens +C2064541|T190|AB|H27.121|ICD10CM|Anterior dislocation of lens, right eye|Anterior dislocation of lens, right eye +C2064541|T190|PT|H27.121|ICD10CM|Anterior dislocation of lens, right eye|Anterior dislocation of lens, right eye +C2064543|T190|AB|H27.122|ICD10CM|Anterior dislocation of lens, left eye|Anterior dislocation of lens, left eye +C2064543|T190|PT|H27.122|ICD10CM|Anterior dislocation of lens, left eye|Anterior dislocation of lens, left eye +C2880673|T047|AB|H27.123|ICD10CM|Anterior dislocation of lens, bilateral|Anterior dislocation of lens, bilateral +C2880673|T047|PT|H27.123|ICD10CM|Anterior dislocation of lens, bilateral|Anterior dislocation of lens, bilateral +C2880674|T047|AB|H27.129|ICD10CM|Anterior dislocation of lens, unspecified eye|Anterior dislocation of lens, unspecified eye +C2880674|T047|PT|H27.129|ICD10CM|Anterior dislocation of lens, unspecified eye|Anterior dislocation of lens, unspecified eye +C0155373|T047|HT|H27.13|ICD10CM|Posterior dislocation of lens|Posterior dislocation of lens +C0155373|T047|AB|H27.13|ICD10CM|Posterior dislocation of lens|Posterior dislocation of lens +C2064545|T190|AB|H27.131|ICD10CM|Posterior dislocation of lens, right eye|Posterior dislocation of lens, right eye +C2064545|T190|PT|H27.131|ICD10CM|Posterior dislocation of lens, right eye|Posterior dislocation of lens, right eye +C2064546|T190|AB|H27.132|ICD10CM|Posterior dislocation of lens, left eye|Posterior dislocation of lens, left eye +C2064546|T190|PT|H27.132|ICD10CM|Posterior dislocation of lens, left eye|Posterior dislocation of lens, left eye +C2880675|T047|AB|H27.133|ICD10CM|Posterior dislocation of lens, bilateral|Posterior dislocation of lens, bilateral +C2880675|T047|PT|H27.133|ICD10CM|Posterior dislocation of lens, bilateral|Posterior dislocation of lens, bilateral +C2880676|T047|AB|H27.139|ICD10CM|Posterior dislocation of lens, unspecified eye|Posterior dislocation of lens, unspecified eye +C2880676|T047|PT|H27.139|ICD10CM|Posterior dislocation of lens, unspecified eye|Posterior dislocation of lens, unspecified eye +C0348543|T047|PT|H27.8|ICD10|Other specified disorders of lens|Other specified disorders of lens +C0348543|T047|PT|H27.8|ICD10CM|Other specified disorders of lens|Other specified disorders of lens +C0348543|T047|AB|H27.8|ICD10CM|Other specified disorders of lens|Other specified disorders of lens +C0023308|T047|PT|H27.9|ICD10|Disorder of lens, unspecified|Disorder of lens, unspecified +C0023308|T047|AB|H27.9|ICD10CM|Unspecified disorder of lens|Unspecified disorder of lens +C0023308|T047|PT|H27.9|ICD10CM|Unspecified disorder of lens|Unspecified disorder of lens +C0694486|T047|HT|H28|ICD10|Cataract and other disorders of lens in diseases classified elsewhere|Cataract and other disorders of lens in diseases classified elsewhere +C2880677|T047|AB|H28|ICD10CM|Cataract in diseases classified elsewhere|Cataract in diseases classified elsewhere +C2880677|T047|PT|H28|ICD10CM|Cataract in diseases classified elsewhere|Cataract in diseases classified elsewhere +C0011876|T047|PT|H28.0|ICD10|Diabetic cataract|Diabetic cataract +C0494527|T020|PT|H28.1|ICD10|Cataract in other endocrine, nutritional and metabolic diseases|Cataract in other endocrine, nutritional and metabolic diseases +C0348545|T020|PT|H28.2|ICD10|Cataract in other diseases classified elsewhere|Cataract in other diseases classified elsewhere +C0348546|T047|PT|H28.8|ICD10|Other disorders of lens in diseases classified elsewhere|Other disorders of lens in diseases classified elsewhere +C0008513|T047|HT|H30|ICD10|Chorioretinal inflammation|Chorioretinal inflammation +C0008513|T047|HT|H30|ICD10CM|Chorioretinal inflammation|Chorioretinal inflammation +C0008513|T047|AB|H30|ICD10CM|Chorioretinal inflammation|Chorioretinal inflammation +C0271022|T047|HT|H30-H36|ICD10CM|Disorders of choroid and retina (H30-H36)|Disorders of choroid and retina (H30-H36) +C0271022|T047|HT|H30-H36.9|ICD10|Disorders of choroid and retina|Disorders of choroid and retina +C0154870|T047|PT|H30.0|ICD10|Focal chorioretinal inflammation|Focal chorioretinal inflammation +C0154870|T047|HT|H30.0|ICD10CM|Focal chorioretinal inflammation|Focal chorioretinal inflammation +C0154870|T047|AB|H30.0|ICD10CM|Focal chorioretinal inflammation|Focal chorioretinal inflammation +C0154870|T047|ET|H30.0|ICD10CM|Focal chorioretinitis|Focal chorioretinitis +C0271024|T047|ET|H30.0|ICD10CM|Focal choroiditis|Focal choroiditis +C0271025|T047|ET|H30.0|ICD10CM|Focal retinitis|Focal retinitis +C0154870|T047|ET|H30.0|ICD10CM|Focal retinochoroiditis|Focal retinochoroiditis +C0154870|T047|ET|H30.00|ICD10CM|Focal chorioretinitis NOS|Focal chorioretinitis NOS +C0271024|T047|ET|H30.00|ICD10CM|Focal choroiditis NOS|Focal choroiditis NOS +C0271025|T047|ET|H30.00|ICD10CM|Focal retinitis NOS|Focal retinitis NOS +C0154870|T047|ET|H30.00|ICD10CM|Focal retinochoroiditis NOS|Focal retinochoroiditis NOS +C2880678|T047|AB|H30.00|ICD10CM|Unspecified focal chorioretinal inflammation|Unspecified focal chorioretinal inflammation +C2880678|T047|HT|H30.00|ICD10CM|Unspecified focal chorioretinal inflammation|Unspecified focal chorioretinal inflammation +C2880679|T047|AB|H30.001|ICD10CM|Unspecified focal chorioretinal inflammation, right eye|Unspecified focal chorioretinal inflammation, right eye +C2880679|T047|PT|H30.001|ICD10CM|Unspecified focal chorioretinal inflammation, right eye|Unspecified focal chorioretinal inflammation, right eye +C2880680|T047|AB|H30.002|ICD10CM|Unspecified focal chorioretinal inflammation, left eye|Unspecified focal chorioretinal inflammation, left eye +C2880680|T047|PT|H30.002|ICD10CM|Unspecified focal chorioretinal inflammation, left eye|Unspecified focal chorioretinal inflammation, left eye +C2880681|T047|AB|H30.003|ICD10CM|Unspecified focal chorioretinal inflammation, bilateral|Unspecified focal chorioretinal inflammation, bilateral +C2880681|T047|PT|H30.003|ICD10CM|Unspecified focal chorioretinal inflammation, bilateral|Unspecified focal chorioretinal inflammation, bilateral +C2880682|T047|AB|H30.009|ICD10CM|Unsp focal chorioretinal inflammation, unspecified eye|Unsp focal chorioretinal inflammation, unspecified eye +C2880682|T047|PT|H30.009|ICD10CM|Unspecified focal chorioretinal inflammation, unspecified eye|Unspecified focal chorioretinal inflammation, unspecified eye +C2880683|T047|AB|H30.01|ICD10CM|Focal chorioretinal inflammation, juxtapapillary|Focal chorioretinal inflammation, juxtapapillary +C2880683|T047|HT|H30.01|ICD10CM|Focal chorioretinal inflammation, juxtapapillary|Focal chorioretinal inflammation, juxtapapillary +C2880684|T047|AB|H30.011|ICD10CM|Focal chorioretinal inflammation, juxtapapillary, right eye|Focal chorioretinal inflammation, juxtapapillary, right eye +C2880684|T047|PT|H30.011|ICD10CM|Focal chorioretinal inflammation, juxtapapillary, right eye|Focal chorioretinal inflammation, juxtapapillary, right eye +C2880685|T047|AB|H30.012|ICD10CM|Focal chorioretinal inflammation, juxtapapillary, left eye|Focal chorioretinal inflammation, juxtapapillary, left eye +C2880685|T047|PT|H30.012|ICD10CM|Focal chorioretinal inflammation, juxtapapillary, left eye|Focal chorioretinal inflammation, juxtapapillary, left eye +C2880686|T047|AB|H30.013|ICD10CM|Focal chorioretinal inflammation, juxtapapillary, bilateral|Focal chorioretinal inflammation, juxtapapillary, bilateral +C2880686|T047|PT|H30.013|ICD10CM|Focal chorioretinal inflammation, juxtapapillary, bilateral|Focal chorioretinal inflammation, juxtapapillary, bilateral +C2880687|T047|AB|H30.019|ICD10CM|Focal chorioretinal inflammation, juxtapapillary, unsp eye|Focal chorioretinal inflammation, juxtapapillary, unsp eye +C2880687|T047|PT|H30.019|ICD10CM|Focal chorioretinal inflammation, juxtapapillary, unspecified eye|Focal chorioretinal inflammation, juxtapapillary, unspecified eye +C2880688|T047|AB|H30.02|ICD10CM|Focal chorioretinal inflammation of posterior pole|Focal chorioretinal inflammation of posterior pole +C2880688|T047|HT|H30.02|ICD10CM|Focal chorioretinal inflammation of posterior pole|Focal chorioretinal inflammation of posterior pole +C2880689|T047|AB|H30.021|ICD10CM|Focal chorioretin inflammation of posterior pole, right eye|Focal chorioretin inflammation of posterior pole, right eye +C2880689|T047|PT|H30.021|ICD10CM|Focal chorioretinal inflammation of posterior pole, right eye|Focal chorioretinal inflammation of posterior pole, right eye +C2880690|T047|AB|H30.022|ICD10CM|Focal chorioretinal inflammation of posterior pole, left eye|Focal chorioretinal inflammation of posterior pole, left eye +C2880690|T047|PT|H30.022|ICD10CM|Focal chorioretinal inflammation of posterior pole, left eye|Focal chorioretinal inflammation of posterior pole, left eye +C2880691|T047|AB|H30.023|ICD10CM|Focal chorioretin inflammation of posterior pole, bilateral|Focal chorioretin inflammation of posterior pole, bilateral +C2880691|T047|PT|H30.023|ICD10CM|Focal chorioretinal inflammation of posterior pole, bilateral|Focal chorioretinal inflammation of posterior pole, bilateral +C2880692|T047|AB|H30.029|ICD10CM|Focal chorioretinal inflammation of posterior pole, unsp eye|Focal chorioretinal inflammation of posterior pole, unsp eye +C2880692|T047|PT|H30.029|ICD10CM|Focal chorioretinal inflammation of posterior pole, unspecified eye|Focal chorioretinal inflammation of posterior pole, unspecified eye +C2880693|T047|AB|H30.03|ICD10CM|Focal chorioretinal inflammation, peripheral|Focal chorioretinal inflammation, peripheral +C2880693|T047|HT|H30.03|ICD10CM|Focal chorioretinal inflammation, peripheral|Focal chorioretinal inflammation, peripheral +C2880694|T047|AB|H30.031|ICD10CM|Focal chorioretinal inflammation, peripheral, right eye|Focal chorioretinal inflammation, peripheral, right eye +C2880694|T047|PT|H30.031|ICD10CM|Focal chorioretinal inflammation, peripheral, right eye|Focal chorioretinal inflammation, peripheral, right eye +C2880695|T047|AB|H30.032|ICD10CM|Focal chorioretinal inflammation, peripheral, left eye|Focal chorioretinal inflammation, peripheral, left eye +C2880695|T047|PT|H30.032|ICD10CM|Focal chorioretinal inflammation, peripheral, left eye|Focal chorioretinal inflammation, peripheral, left eye +C2880696|T047|AB|H30.033|ICD10CM|Focal chorioretinal inflammation, peripheral, bilateral|Focal chorioretinal inflammation, peripheral, bilateral +C2880696|T047|PT|H30.033|ICD10CM|Focal chorioretinal inflammation, peripheral, bilateral|Focal chorioretinal inflammation, peripheral, bilateral +C2880697|T047|AB|H30.039|ICD10CM|Focal chorioretinal inflammation, peripheral, unsp eye|Focal chorioretinal inflammation, peripheral, unsp eye +C2880697|T047|PT|H30.039|ICD10CM|Focal chorioretinal inflammation, peripheral, unspecified eye|Focal chorioretinal inflammation, peripheral, unspecified eye +C2880698|T047|AB|H30.04|ICD10CM|Focal chorioretinal inflammation, macular or paramacular|Focal chorioretinal inflammation, macular or paramacular +C2880698|T047|HT|H30.04|ICD10CM|Focal chorioretinal inflammation, macular or paramacular|Focal chorioretinal inflammation, macular or paramacular +C2880699|T047|AB|H30.041|ICD10CM|Focal chorioretin inflam, macular or paramacular, right eye|Focal chorioretin inflam, macular or paramacular, right eye +C2880699|T047|PT|H30.041|ICD10CM|Focal chorioretinal inflammation, macular or paramacular, right eye|Focal chorioretinal inflammation, macular or paramacular, right eye +C2880700|T047|AB|H30.042|ICD10CM|Focal chorioretin inflam, macular or paramacular, left eye|Focal chorioretin inflam, macular or paramacular, left eye +C2880700|T047|PT|H30.042|ICD10CM|Focal chorioretinal inflammation, macular or paramacular, left eye|Focal chorioretinal inflammation, macular or paramacular, left eye +C2880701|T047|AB|H30.043|ICD10CM|Focal chorioretin inflam, macular or paramacular, bilateral|Focal chorioretin inflam, macular or paramacular, bilateral +C2880701|T047|PT|H30.043|ICD10CM|Focal chorioretinal inflammation, macular or paramacular, bilateral|Focal chorioretinal inflammation, macular or paramacular, bilateral +C2880702|T047|AB|H30.049|ICD10CM|Focal chorioretin inflam, macular or paramacular, unsp eye|Focal chorioretin inflam, macular or paramacular, unsp eye +C2880702|T047|PT|H30.049|ICD10CM|Focal chorioretinal inflammation, macular or paramacular, unspecified eye|Focal chorioretinal inflammation, macular or paramacular, unspecified eye +C0154879|T047|HT|H30.1|ICD10CM|Disseminated chorioretinal inflammation|Disseminated chorioretinal inflammation +C0154879|T047|AB|H30.1|ICD10CM|Disseminated chorioretinal inflammation|Disseminated chorioretinal inflammation +C0154879|T047|PT|H30.1|ICD10|Disseminated chorioretinal inflammation|Disseminated chorioretinal inflammation +C0154879|T047|ET|H30.1|ICD10CM|Disseminated chorioretinitis|Disseminated chorioretinitis +C0271027|T047|ET|H30.1|ICD10CM|Disseminated choroiditis|Disseminated choroiditis +C0271028|T047|ET|H30.1|ICD10CM|Disseminated retinitis|Disseminated retinitis +C0154879|T047|ET|H30.1|ICD10CM|Disseminated retinochoroiditis|Disseminated retinochoroiditis +C0154879|T047|ET|H30.10|ICD10CM|Disseminated chorioretinitis NOS|Disseminated chorioretinitis NOS +C0271027|T047|ET|H30.10|ICD10CM|Disseminated choroiditis NOS|Disseminated choroiditis NOS +C0271028|T047|ET|H30.10|ICD10CM|Disseminated retinitis NOS|Disseminated retinitis NOS +C0154879|T047|ET|H30.10|ICD10CM|Disseminated retinochoroiditis NOS|Disseminated retinochoroiditis NOS +C2880703|T047|AB|H30.10|ICD10CM|Unspecified disseminated chorioretinal inflammation|Unspecified disseminated chorioretinal inflammation +C2880703|T047|HT|H30.10|ICD10CM|Unspecified disseminated chorioretinal inflammation|Unspecified disseminated chorioretinal inflammation +C2880704|T047|AB|H30.101|ICD10CM|Unsp disseminated chorioretinal inflammation, right eye|Unsp disseminated chorioretinal inflammation, right eye +C2880704|T047|PT|H30.101|ICD10CM|Unspecified disseminated chorioretinal inflammation, right eye|Unspecified disseminated chorioretinal inflammation, right eye +C2880705|T047|AB|H30.102|ICD10CM|Unsp disseminated chorioretinal inflammation, left eye|Unsp disseminated chorioretinal inflammation, left eye +C2880705|T047|PT|H30.102|ICD10CM|Unspecified disseminated chorioretinal inflammation, left eye|Unspecified disseminated chorioretinal inflammation, left eye +C2880706|T047|AB|H30.103|ICD10CM|Unsp disseminated chorioretinal inflammation, bilateral|Unsp disseminated chorioretinal inflammation, bilateral +C2880706|T047|PT|H30.103|ICD10CM|Unspecified disseminated chorioretinal inflammation, bilateral|Unspecified disseminated chorioretinal inflammation, bilateral +C2880707|T047|AB|H30.109|ICD10CM|Unsp disseminated chorioretinal inflammation, unsp eye|Unsp disseminated chorioretinal inflammation, unsp eye +C2880707|T047|PT|H30.109|ICD10CM|Unspecified disseminated chorioretinal inflammation, unspecified eye|Unspecified disseminated chorioretinal inflammation, unspecified eye +C2880708|T047|AB|H30.11|ICD10CM|Disseminated chorioretinal inflammation of posterior pole|Disseminated chorioretinal inflammation of posterior pole +C2880708|T047|HT|H30.11|ICD10CM|Disseminated chorioretinal inflammation of posterior pole|Disseminated chorioretinal inflammation of posterior pole +C2880709|T047|AB|H30.111|ICD10CM|Dissem chorioretin inflammation of posterior pole, right eye|Dissem chorioretin inflammation of posterior pole, right eye +C2880709|T047|PT|H30.111|ICD10CM|Disseminated chorioretinal inflammation of posterior pole, right eye|Disseminated chorioretinal inflammation of posterior pole, right eye +C2880710|T047|AB|H30.112|ICD10CM|Dissem chorioretin inflammation of posterior pole, left eye|Dissem chorioretin inflammation of posterior pole, left eye +C2880710|T047|PT|H30.112|ICD10CM|Disseminated chorioretinal inflammation of posterior pole, left eye|Disseminated chorioretinal inflammation of posterior pole, left eye +C2880711|T047|AB|H30.113|ICD10CM|Dissem chorioretin inflammation of posterior pole, bilateral|Dissem chorioretin inflammation of posterior pole, bilateral +C2880711|T047|PT|H30.113|ICD10CM|Disseminated chorioretinal inflammation of posterior pole, bilateral|Disseminated chorioretinal inflammation of posterior pole, bilateral +C2880712|T047|AB|H30.119|ICD10CM|Dissem chorioretin inflammation of posterior pole, unsp eye|Dissem chorioretin inflammation of posterior pole, unsp eye +C2880712|T047|PT|H30.119|ICD10CM|Disseminated chorioretinal inflammation of posterior pole, unspecified eye|Disseminated chorioretinal inflammation of posterior pole, unspecified eye +C2880713|T047|AB|H30.12|ICD10CM|Disseminated chorioretinal inflammation, peripheral|Disseminated chorioretinal inflammation, peripheral +C2880713|T047|HT|H30.12|ICD10CM|Disseminated chorioretinal inflammation, peripheral|Disseminated chorioretinal inflammation, peripheral +C2880714|T047|AB|H30.121|ICD10CM|Disseminated chorioretin inflammation, peripheral right eye|Disseminated chorioretin inflammation, peripheral right eye +C2880714|T047|PT|H30.121|ICD10CM|Disseminated chorioretinal inflammation, peripheral right eye|Disseminated chorioretinal inflammation, peripheral right eye +C2880715|T047|AB|H30.122|ICD10CM|Disseminated chorioretin inflammation, peripheral, left eye|Disseminated chorioretin inflammation, peripheral, left eye +C2880715|T047|PT|H30.122|ICD10CM|Disseminated chorioretinal inflammation, peripheral, left eye|Disseminated chorioretinal inflammation, peripheral, left eye +C2880716|T047|AB|H30.123|ICD10CM|Disseminated chorioretin inflammation, peripheral, bilateral|Disseminated chorioretin inflammation, peripheral, bilateral +C2880716|T047|PT|H30.123|ICD10CM|Disseminated chorioretinal inflammation, peripheral, bilateral|Disseminated chorioretinal inflammation, peripheral, bilateral +C2880717|T047|AB|H30.129|ICD10CM|Disseminated chorioretin inflammation, peripheral, unsp eye|Disseminated chorioretin inflammation, peripheral, unsp eye +C2880717|T047|PT|H30.129|ICD10CM|Disseminated chorioretinal inflammation, peripheral, unspecified eye|Disseminated chorioretinal inflammation, peripheral, unspecified eye +C2880718|T047|AB|H30.13|ICD10CM|Disseminated chorioretinal inflammation, generalized|Disseminated chorioretinal inflammation, generalized +C2880718|T047|HT|H30.13|ICD10CM|Disseminated chorioretinal inflammation, generalized|Disseminated chorioretinal inflammation, generalized +C2880719|T047|AB|H30.131|ICD10CM|Dissem chorioretin inflammation, generalized, right eye|Dissem chorioretin inflammation, generalized, right eye +C2880719|T047|PT|H30.131|ICD10CM|Disseminated chorioretinal inflammation, generalized, right eye|Disseminated chorioretinal inflammation, generalized, right eye +C2880720|T047|AB|H30.132|ICD10CM|Disseminated chorioretin inflammation, generalized, left eye|Disseminated chorioretin inflammation, generalized, left eye +C2880720|T047|PT|H30.132|ICD10CM|Disseminated chorioretinal inflammation, generalized, left eye|Disseminated chorioretinal inflammation, generalized, left eye +C2880721|T047|AB|H30.133|ICD10CM|Dissem chorioretin inflammation, generalized, bilateral|Dissem chorioretin inflammation, generalized, bilateral +C2880721|T047|PT|H30.133|ICD10CM|Disseminated chorioretinal inflammation, generalized, bilateral|Disseminated chorioretinal inflammation, generalized, bilateral +C2880722|T047|AB|H30.139|ICD10CM|Disseminated chorioretin inflammation, generalized, unsp eye|Disseminated chorioretin inflammation, generalized, unsp eye +C2880722|T047|PT|H30.139|ICD10CM|Disseminated chorioretinal inflammation, generalized, unspecified eye|Disseminated chorioretinal inflammation, generalized, unspecified eye +C0154884|T047|HT|H30.14|ICD10CM|Acute posterior multifocal placoid pigment epitheliopathy|Acute posterior multifocal placoid pigment epitheliopathy +C0154884|T047|AB|H30.14|ICD10CM|Acute posterior multifocal placoid pigment epitheliopathy|Acute posterior multifocal placoid pigment epitheliopathy +C2215256|T047|AB|H30.141|ICD10CM|Acute post multifoc placoid pigment epitheliopathy, r eye|Acute post multifoc placoid pigment epitheliopathy, r eye +C2215256|T047|PT|H30.141|ICD10CM|Acute posterior multifocal placoid pigment epitheliopathy, right eye|Acute posterior multifocal placoid pigment epitheliopathy, right eye +C2215255|T047|AB|H30.142|ICD10CM|Acute post multifoc placoid pigment epitheliopathy, left eye|Acute post multifoc placoid pigment epitheliopathy, left eye +C2215255|T047|PT|H30.142|ICD10CM|Acute posterior multifocal placoid pigment epitheliopathy, left eye|Acute posterior multifocal placoid pigment epitheliopathy, left eye +C2880723|T047|AB|H30.143|ICD10CM|Acute posterior multifoc placoid pigment epitheliopathy, bi|Acute posterior multifoc placoid pigment epitheliopathy, bi +C2880723|T047|PT|H30.143|ICD10CM|Acute posterior multifocal placoid pigment epitheliopathy, bilateral|Acute posterior multifocal placoid pigment epitheliopathy, bilateral +C2880724|T047|AB|H30.149|ICD10CM|Acute post multifoc placoid pigment epitheliopathy, unsp eye|Acute post multifoc placoid pigment epitheliopathy, unsp eye +C2880724|T047|PT|H30.149|ICD10CM|Acute posterior multifocal placoid pigment epitheliopathy, unspecified eye|Acute posterior multifocal placoid pigment epitheliopathy, unspecified eye +C0030593|T047|ET|H30.2|ICD10CM|Pars planitis|Pars planitis +C0030593|T047|HT|H30.2|ICD10CM|Posterior cyclitis|Posterior cyclitis +C0030593|T047|AB|H30.2|ICD10CM|Posterior cyclitis|Posterior cyclitis +C0030593|T047|PT|H30.2|ICD10|Posterior cyclitis|Posterior cyclitis +C2880725|T047|AB|H30.20|ICD10CM|Posterior cyclitis, unspecified eye|Posterior cyclitis, unspecified eye +C2880725|T047|PT|H30.20|ICD10CM|Posterior cyclitis, unspecified eye|Posterior cyclitis, unspecified eye +C2880726|T047|AB|H30.21|ICD10CM|Posterior cyclitis, right eye|Posterior cyclitis, right eye +C2880726|T047|PT|H30.21|ICD10CM|Posterior cyclitis, right eye|Posterior cyclitis, right eye +C2880727|T047|AB|H30.22|ICD10CM|Posterior cyclitis, left eye|Posterior cyclitis, left eye +C2880727|T047|PT|H30.22|ICD10CM|Posterior cyclitis, left eye|Posterior cyclitis, left eye +C2880728|T047|AB|H30.23|ICD10CM|Posterior cyclitis, bilateral|Posterior cyclitis, bilateral +C2880728|T047|PT|H30.23|ICD10CM|Posterior cyclitis, bilateral|Posterior cyclitis, bilateral +C0348547|T047|PT|H30.8|ICD10|Other chorioretinal inflammations|Other chorioretinal inflammations +C0348547|T047|HT|H30.8|ICD10CM|Other chorioretinal inflammations|Other chorioretinal inflammations +C0348547|T047|AB|H30.8|ICD10CM|Other chorioretinal inflammations|Other chorioretinal inflammations +C0042170|T047|HT|H30.81|ICD10CM|Harada's disease|Harada's disease +C0042170|T047|AB|H30.81|ICD10CM|Harada's disease|Harada's disease +C2880729|T047|AB|H30.811|ICD10CM|Harada's disease, right eye|Harada's disease, right eye +C2880729|T047|PT|H30.811|ICD10CM|Harada's disease, right eye|Harada's disease, right eye +C2880730|T047|AB|H30.812|ICD10CM|Harada's disease, left eye|Harada's disease, left eye +C2880730|T047|PT|H30.812|ICD10CM|Harada's disease, left eye|Harada's disease, left eye +C2880731|T047|AB|H30.813|ICD10CM|Harada's disease, bilateral|Harada's disease, bilateral +C2880731|T047|PT|H30.813|ICD10CM|Harada's disease, bilateral|Harada's disease, bilateral +C2880732|T047|AB|H30.819|ICD10CM|Harada's disease, unspecified eye|Harada's disease, unspecified eye +C2880732|T047|PT|H30.819|ICD10CM|Harada's disease, unspecified eye|Harada's disease, unspecified eye +C0348547|T047|HT|H30.89|ICD10CM|Other chorioretinal inflammations|Other chorioretinal inflammations +C0348547|T047|AB|H30.89|ICD10CM|Other chorioretinal inflammations|Other chorioretinal inflammations +C2880733|T047|AB|H30.891|ICD10CM|Other chorioretinal inflammations, right eye|Other chorioretinal inflammations, right eye +C2880733|T047|PT|H30.891|ICD10CM|Other chorioretinal inflammations, right eye|Other chorioretinal inflammations, right eye +C2880734|T047|AB|H30.892|ICD10CM|Other chorioretinal inflammations, left eye|Other chorioretinal inflammations, left eye +C2880734|T047|PT|H30.892|ICD10CM|Other chorioretinal inflammations, left eye|Other chorioretinal inflammations, left eye +C2880735|T047|AB|H30.893|ICD10CM|Other chorioretinal inflammations, bilateral|Other chorioretinal inflammations, bilateral +C2880735|T047|PT|H30.893|ICD10CM|Other chorioretinal inflammations, bilateral|Other chorioretinal inflammations, bilateral +C2880736|T047|AB|H30.899|ICD10CM|Other chorioretinal inflammations, unspecified eye|Other chorioretinal inflammations, unspecified eye +C2880736|T047|PT|H30.899|ICD10CM|Other chorioretinal inflammations, unspecified eye|Other chorioretinal inflammations, unspecified eye +C0008513|T047|PT|H30.9|ICD10|Chorioretinal inflammation, unspecified|Chorioretinal inflammation, unspecified +C0008513|T047|ET|H30.9|ICD10CM|Chorioretinitis NOS|Chorioretinitis NOS +C0008526|T047|ET|H30.9|ICD10CM|Choroiditis NOS|Choroiditis NOS +C0154874|T047|ET|H30.9|ICD10CM|Neuroretinitis NOS|Neuroretinitis NOS +C0035333|T047|ET|H30.9|ICD10CM|Retinitis NOS|Retinitis NOS +C0008513|T047|ET|H30.9|ICD10CM|Retinochoroiditis NOS|Retinochoroiditis NOS +C0008513|T047|AB|H30.9|ICD10CM|Unspecified chorioretinal inflammation|Unspecified chorioretinal inflammation +C0008513|T047|HT|H30.9|ICD10CM|Unspecified chorioretinal inflammation|Unspecified chorioretinal inflammation +C2880737|T047|AB|H30.90|ICD10CM|Unspecified chorioretinal inflammation, unspecified eye|Unspecified chorioretinal inflammation, unspecified eye +C2880737|T047|PT|H30.90|ICD10CM|Unspecified chorioretinal inflammation, unspecified eye|Unspecified chorioretinal inflammation, unspecified eye +C2880738|T047|AB|H30.91|ICD10CM|Unspecified chorioretinal inflammation, right eye|Unspecified chorioretinal inflammation, right eye +C2880738|T047|PT|H30.91|ICD10CM|Unspecified chorioretinal inflammation, right eye|Unspecified chorioretinal inflammation, right eye +C2880739|T047|AB|H30.92|ICD10CM|Unspecified chorioretinal inflammation, left eye|Unspecified chorioretinal inflammation, left eye +C2880739|T047|PT|H30.92|ICD10CM|Unspecified chorioretinal inflammation, left eye|Unspecified chorioretinal inflammation, left eye +C2880740|T047|AB|H30.93|ICD10CM|Unspecified chorioretinal inflammation, bilateral|Unspecified chorioretinal inflammation, bilateral +C2880740|T047|PT|H30.93|ICD10CM|Unspecified chorioretinal inflammation, bilateral|Unspecified chorioretinal inflammation, bilateral +C0154906|T047|HT|H31|ICD10CM|Other disorders of choroid|Other disorders of choroid +C0154906|T047|AB|H31|ICD10CM|Other disorders of choroid|Other disorders of choroid +C0154906|T047|HT|H31|ICD10|Other disorders of choroid|Other disorders of choroid +C0008512|T020|PT|H31.0|ICD10|Chorioretinal scars|Chorioretinal scars +C0008512|T020|HT|H31.0|ICD10CM|Chorioretinal scars|Chorioretinal scars +C0008512|T020|AB|H31.0|ICD10CM|Chorioretinal scars|Chorioretinal scars +C0008512|T020|AB|H31.00|ICD10CM|Unspecified chorioretinal scars|Unspecified chorioretinal scars +C0008512|T020|HT|H31.00|ICD10CM|Unspecified chorioretinal scars|Unspecified chorioretinal scars +C2880741|T047|AB|H31.001|ICD10CM|Unspecified chorioretinal scars, right eye|Unspecified chorioretinal scars, right eye +C2880741|T047|PT|H31.001|ICD10CM|Unspecified chorioretinal scars, right eye|Unspecified chorioretinal scars, right eye +C2880742|T047|AB|H31.002|ICD10CM|Unspecified chorioretinal scars, left eye|Unspecified chorioretinal scars, left eye +C2880742|T047|PT|H31.002|ICD10CM|Unspecified chorioretinal scars, left eye|Unspecified chorioretinal scars, left eye +C2880743|T047|AB|H31.003|ICD10CM|Unspecified chorioretinal scars, bilateral|Unspecified chorioretinal scars, bilateral +C2880743|T047|PT|H31.003|ICD10CM|Unspecified chorioretinal scars, bilateral|Unspecified chorioretinal scars, bilateral +C2880744|T047|AB|H31.009|ICD10CM|Unspecified chorioretinal scars, unspecified eye|Unspecified chorioretinal scars, unspecified eye +C2880744|T047|PT|H31.009|ICD10CM|Unspecified chorioretinal scars, unspecified eye|Unspecified chorioretinal scars, unspecified eye +C2880745|T020|AB|H31.01|ICD10CM|Macula scars of posterior pole (post-traumatic)|Macula scars of posterior pole (post-traumatic) +C2880745|T020|HT|H31.01|ICD10CM|Macula scars of posterior pole (postinflammatory) (post-traumatic)|Macula scars of posterior pole (postinflammatory) (post-traumatic) +C2880746|T047|AB|H31.011|ICD10CM|Macula scars of posterior pole (post-traumatic), right eye|Macula scars of posterior pole (post-traumatic), right eye +C2880746|T047|PT|H31.011|ICD10CM|Macula scars of posterior pole (postinflammatory) (post-traumatic), right eye|Macula scars of posterior pole (postinflammatory) (post-traumatic), right eye +C2880747|T047|AB|H31.012|ICD10CM|Macula scars of posterior pole (post-traumatic), left eye|Macula scars of posterior pole (post-traumatic), left eye +C2880747|T047|PT|H31.012|ICD10CM|Macula scars of posterior pole (postinflammatory) (post-traumatic), left eye|Macula scars of posterior pole (postinflammatory) (post-traumatic), left eye +C2880748|T047|AB|H31.013|ICD10CM|Macula scars of posterior pole (post-traumatic), bilateral|Macula scars of posterior pole (post-traumatic), bilateral +C2880748|T047|PT|H31.013|ICD10CM|Macula scars of posterior pole (postinflammatory) (post-traumatic), bilateral|Macula scars of posterior pole (postinflammatory) (post-traumatic), bilateral +C2880749|T047|AB|H31.019|ICD10CM|Macula scars of posterior pole (post-traumatic), unsp eye|Macula scars of posterior pole (post-traumatic), unsp eye +C2880749|T047|PT|H31.019|ICD10CM|Macula scars of posterior pole (postinflammatory) (post-traumatic), unspecified eye|Macula scars of posterior pole (postinflammatory) (post-traumatic), unspecified eye +C0152131|T047|HT|H31.02|ICD10CM|Solar retinopathy|Solar retinopathy +C0152131|T047|AB|H31.02|ICD10CM|Solar retinopathy|Solar retinopathy +C2017444|T047|AB|H31.021|ICD10CM|Solar retinopathy, right eye|Solar retinopathy, right eye +C2017444|T047|PT|H31.021|ICD10CM|Solar retinopathy, right eye|Solar retinopathy, right eye +C2017443|T047|AB|H31.022|ICD10CM|Solar retinopathy, left eye|Solar retinopathy, left eye +C2017443|T047|PT|H31.022|ICD10CM|Solar retinopathy, left eye|Solar retinopathy, left eye +C2880750|T047|AB|H31.023|ICD10CM|Solar retinopathy, bilateral|Solar retinopathy, bilateral +C2880750|T047|PT|H31.023|ICD10CM|Solar retinopathy, bilateral|Solar retinopathy, bilateral +C2880751|T047|AB|H31.029|ICD10CM|Solar retinopathy, unspecified eye|Solar retinopathy, unspecified eye +C2880751|T047|PT|H31.029|ICD10CM|Solar retinopathy, unspecified eye|Solar retinopathy, unspecified eye +C2880752|T047|AB|H31.09|ICD10CM|Other chorioretinal scars|Other chorioretinal scars +C2880752|T047|HT|H31.09|ICD10CM|Other chorioretinal scars|Other chorioretinal scars +C2880753|T047|AB|H31.091|ICD10CM|Other chorioretinal scars, right eye|Other chorioretinal scars, right eye +C2880753|T047|PT|H31.091|ICD10CM|Other chorioretinal scars, right eye|Other chorioretinal scars, right eye +C2880754|T047|AB|H31.092|ICD10CM|Other chorioretinal scars, left eye|Other chorioretinal scars, left eye +C2880754|T047|PT|H31.092|ICD10CM|Other chorioretinal scars, left eye|Other chorioretinal scars, left eye +C2880755|T047|AB|H31.093|ICD10CM|Other chorioretinal scars, bilateral|Other chorioretinal scars, bilateral +C2880755|T047|PT|H31.093|ICD10CM|Other chorioretinal scars, bilateral|Other chorioretinal scars, bilateral +C2880756|T047|AB|H31.099|ICD10CM|Other chorioretinal scars, unspecified eye|Other chorioretinal scars, unspecified eye +C2880756|T047|PT|H31.099|ICD10CM|Other chorioretinal scars, unspecified eye|Other chorioretinal scars, unspecified eye +C0344297|T047|HT|H31.1|ICD10CM|Choroidal degeneration|Choroidal degeneration +C0344297|T047|AB|H31.1|ICD10CM|Choroidal degeneration|Choroidal degeneration +C0344297|T047|PT|H31.1|ICD10|Choroidal degeneration|Choroidal degeneration +C0344297|T047|ET|H31.10|ICD10CM|Choroidal sclerosis NOS|Choroidal sclerosis NOS +C0344297|T047|AB|H31.10|ICD10CM|Unspecified choroidal degeneration|Unspecified choroidal degeneration +C0344297|T047|HT|H31.10|ICD10CM|Unspecified choroidal degeneration|Unspecified choroidal degeneration +C2880757|T047|AB|H31.101|ICD10CM|Choroidal degeneration, unspecified, right eye|Choroidal degeneration, unspecified, right eye +C2880757|T047|PT|H31.101|ICD10CM|Choroidal degeneration, unspecified, right eye|Choroidal degeneration, unspecified, right eye +C2880758|T047|AB|H31.102|ICD10CM|Choroidal degeneration, unspecified, left eye|Choroidal degeneration, unspecified, left eye +C2880758|T047|PT|H31.102|ICD10CM|Choroidal degeneration, unspecified, left eye|Choroidal degeneration, unspecified, left eye +C2880759|T047|AB|H31.103|ICD10CM|Choroidal degeneration, unspecified, bilateral|Choroidal degeneration, unspecified, bilateral +C2880759|T047|PT|H31.103|ICD10CM|Choroidal degeneration, unspecified, bilateral|Choroidal degeneration, unspecified, bilateral +C2880760|T047|AB|H31.109|ICD10CM|Choroidal degeneration, unspecified, unspecified eye|Choroidal degeneration, unspecified, unspecified eye +C2880760|T047|PT|H31.109|ICD10CM|Choroidal degeneration, unspecified, unspecified eye|Choroidal degeneration, unspecified, unspecified eye +C2880761|T047|AB|H31.11|ICD10CM|Age-related choroidal atrophy|Age-related choroidal atrophy +C2880761|T047|HT|H31.11|ICD10CM|Age-related choroidal atrophy|Age-related choroidal atrophy +C2880762|T047|AB|H31.111|ICD10CM|Age-related choroidal atrophy, right eye|Age-related choroidal atrophy, right eye +C2880762|T047|PT|H31.111|ICD10CM|Age-related choroidal atrophy, right eye|Age-related choroidal atrophy, right eye +C2880763|T047|AB|H31.112|ICD10CM|Age-related choroidal atrophy, left eye|Age-related choroidal atrophy, left eye +C2880763|T047|PT|H31.112|ICD10CM|Age-related choroidal atrophy, left eye|Age-related choroidal atrophy, left eye +C2880764|T047|AB|H31.113|ICD10CM|Age-related choroidal atrophy, bilateral|Age-related choroidal atrophy, bilateral +C2880764|T047|PT|H31.113|ICD10CM|Age-related choroidal atrophy, bilateral|Age-related choroidal atrophy, bilateral +C2880765|T047|AB|H31.119|ICD10CM|Age-related choroidal atrophy, unspecified eye|Age-related choroidal atrophy, unspecified eye +C2880765|T047|PT|H31.119|ICD10CM|Age-related choroidal atrophy, unspecified eye|Age-related choroidal atrophy, unspecified eye +C0154892|T047|HT|H31.12|ICD10CM|Diffuse secondary atrophy of choroid|Diffuse secondary atrophy of choroid +C0154892|T047|AB|H31.12|ICD10CM|Diffuse secondary atrophy of choroid|Diffuse secondary atrophy of choroid +C2880766|T047|AB|H31.121|ICD10CM|Diffuse secondary atrophy of choroid, right eye|Diffuse secondary atrophy of choroid, right eye +C2880766|T047|PT|H31.121|ICD10CM|Diffuse secondary atrophy of choroid, right eye|Diffuse secondary atrophy of choroid, right eye +C2880767|T047|AB|H31.122|ICD10CM|Diffuse secondary atrophy of choroid, left eye|Diffuse secondary atrophy of choroid, left eye +C2880767|T047|PT|H31.122|ICD10CM|Diffuse secondary atrophy of choroid, left eye|Diffuse secondary atrophy of choroid, left eye +C2880768|T047|AB|H31.123|ICD10CM|Diffuse secondary atrophy of choroid, bilateral|Diffuse secondary atrophy of choroid, bilateral +C2880768|T047|PT|H31.123|ICD10CM|Diffuse secondary atrophy of choroid, bilateral|Diffuse secondary atrophy of choroid, bilateral +C2880769|T047|AB|H31.129|ICD10CM|Diffuse secondary atrophy of choroid, unspecified eye|Diffuse secondary atrophy of choroid, unspecified eye +C2880769|T047|PT|H31.129|ICD10CM|Diffuse secondary atrophy of choroid, unspecified eye|Diffuse secondary atrophy of choroid, unspecified eye +C0154893|T047|HT|H31.2|ICD10CM|Hereditary choroidal dystrophy|Hereditary choroidal dystrophy +C0154893|T047|AB|H31.2|ICD10CM|Hereditary choroidal dystrophy|Hereditary choroidal dystrophy +C0154893|T047|PT|H31.2|ICD10|Hereditary choroidal dystrophy|Hereditary choroidal dystrophy +C0154893|T047|AB|H31.20|ICD10CM|Hereditary choroidal dystrophy, unspecified|Hereditary choroidal dystrophy, unspecified +C0154893|T047|PT|H31.20|ICD10CM|Hereditary choroidal dystrophy, unspecified|Hereditary choroidal dystrophy, unspecified +C0008525|T047|PT|H31.21|ICD10CM|Choroideremia|Choroideremia +C0008525|T047|AB|H31.21|ICD10CM|Choroideremia|Choroideremia +C2880771|T047|PT|H31.22|ICD10CM|Choroidal dystrophy (central areolar) (generalized) (peripapillary)|Choroidal dystrophy (central areolar) (generalized) (peripapillary) +C2880771|T047|AB|H31.22|ICD10CM|Choroidal dystrophy (central areolar) (peripapillary)|Choroidal dystrophy (central areolar) (peripapillary) +C1389043|T047|AB|H31.23|ICD10CM|Gyrate atrophy, choroid|Gyrate atrophy, choroid +C1389043|T047|PT|H31.23|ICD10CM|Gyrate atrophy, choroid|Gyrate atrophy, choroid +C2880772|T047|AB|H31.29|ICD10CM|Other hereditary choroidal dystrophy|Other hereditary choroidal dystrophy +C2880772|T047|PT|H31.29|ICD10CM|Other hereditary choroidal dystrophy|Other hereditary choroidal dystrophy +C0154901|T046|PT|H31.3|ICD10|Choroidal haemorrhage and rupture|Choroidal haemorrhage and rupture +C0154901|T046|PT|H31.3|ICD10AE|Choroidal hemorrhage and rupture|Choroidal hemorrhage and rupture +C0154901|T046|HT|H31.3|ICD10CM|Choroidal hemorrhage and rupture|Choroidal hemorrhage and rupture +C0154901|T046|AB|H31.3|ICD10CM|Choroidal hemorrhage and rupture|Choroidal hemorrhage and rupture +C0008522|T046|AB|H31.30|ICD10CM|Unspecified choroidal hemorrhage|Unspecified choroidal hemorrhage +C0008522|T046|HT|H31.30|ICD10CM|Unspecified choroidal hemorrhage|Unspecified choroidal hemorrhage +C2880773|T046|AB|H31.301|ICD10CM|Unspecified choroidal hemorrhage, right eye|Unspecified choroidal hemorrhage, right eye +C2880773|T046|PT|H31.301|ICD10CM|Unspecified choroidal hemorrhage, right eye|Unspecified choroidal hemorrhage, right eye +C2880774|T046|AB|H31.302|ICD10CM|Unspecified choroidal hemorrhage, left eye|Unspecified choroidal hemorrhage, left eye +C2880774|T046|PT|H31.302|ICD10CM|Unspecified choroidal hemorrhage, left eye|Unspecified choroidal hemorrhage, left eye +C2880775|T046|AB|H31.303|ICD10CM|Unspecified choroidal hemorrhage, bilateral|Unspecified choroidal hemorrhage, bilateral +C2880775|T046|PT|H31.303|ICD10CM|Unspecified choroidal hemorrhage, bilateral|Unspecified choroidal hemorrhage, bilateral +C0008522|T046|AB|H31.309|ICD10CM|Unspecified choroidal hemorrhage, unspecified eye|Unspecified choroidal hemorrhage, unspecified eye +C0008522|T046|PT|H31.309|ICD10CM|Unspecified choroidal hemorrhage, unspecified eye|Unspecified choroidal hemorrhage, unspecified eye +C0154902|T047|HT|H31.31|ICD10CM|Expulsive choroidal hemorrhage|Expulsive choroidal hemorrhage +C0154902|T047|AB|H31.31|ICD10CM|Expulsive choroidal hemorrhage|Expulsive choroidal hemorrhage +C2880776|T047|AB|H31.311|ICD10CM|Expulsive choroidal hemorrhage, right eye|Expulsive choroidal hemorrhage, right eye +C2880776|T047|PT|H31.311|ICD10CM|Expulsive choroidal hemorrhage, right eye|Expulsive choroidal hemorrhage, right eye +C2880777|T047|AB|H31.312|ICD10CM|Expulsive choroidal hemorrhage, left eye|Expulsive choroidal hemorrhage, left eye +C2880777|T047|PT|H31.312|ICD10CM|Expulsive choroidal hemorrhage, left eye|Expulsive choroidal hemorrhage, left eye +C2880778|T047|AB|H31.313|ICD10CM|Expulsive choroidal hemorrhage, bilateral|Expulsive choroidal hemorrhage, bilateral +C2880778|T047|PT|H31.313|ICD10CM|Expulsive choroidal hemorrhage, bilateral|Expulsive choroidal hemorrhage, bilateral +C2880779|T047|AB|H31.319|ICD10CM|Expulsive choroidal hemorrhage, unspecified eye|Expulsive choroidal hemorrhage, unspecified eye +C2880779|T047|PT|H31.319|ICD10CM|Expulsive choroidal hemorrhage, unspecified eye|Expulsive choroidal hemorrhage, unspecified eye +C0154903|T047|HT|H31.32|ICD10CM|Choroidal rupture|Choroidal rupture +C0154903|T047|AB|H31.32|ICD10CM|Choroidal rupture|Choroidal rupture +C2074476|T033|AB|H31.321|ICD10CM|Choroidal rupture, right eye|Choroidal rupture, right eye +C2074476|T033|PT|H31.321|ICD10CM|Choroidal rupture, right eye|Choroidal rupture, right eye +C2074475|T033|AB|H31.322|ICD10CM|Choroidal rupture, left eye|Choroidal rupture, left eye +C2074475|T033|PT|H31.322|ICD10CM|Choroidal rupture, left eye|Choroidal rupture, left eye +C2880780|T047|AB|H31.323|ICD10CM|Choroidal rupture, bilateral|Choroidal rupture, bilateral +C2880780|T047|PT|H31.323|ICD10CM|Choroidal rupture, bilateral|Choroidal rupture, bilateral +C2880781|T047|AB|H31.329|ICD10CM|Choroidal rupture, unspecified eye|Choroidal rupture, unspecified eye +C2880781|T047|PT|H31.329|ICD10CM|Choroidal rupture, unspecified eye|Choroidal rupture, unspecified eye +C0162279|T020|HT|H31.4|ICD10CM|Choroidal detachment|Choroidal detachment +C0162279|T020|AB|H31.4|ICD10CM|Choroidal detachment|Choroidal detachment +C0162279|T020|PT|H31.4|ICD10|Choroidal detachment|Choroidal detachment +C0162279|T020|AB|H31.40|ICD10CM|Unspecified choroidal detachment|Unspecified choroidal detachment +C0162279|T020|HT|H31.40|ICD10CM|Unspecified choroidal detachment|Unspecified choroidal detachment +C2880782|T020|AB|H31.401|ICD10CM|Unspecified choroidal detachment, right eye|Unspecified choroidal detachment, right eye +C2880782|T020|PT|H31.401|ICD10CM|Unspecified choroidal detachment, right eye|Unspecified choroidal detachment, right eye +C2880783|T020|AB|H31.402|ICD10CM|Unspecified choroidal detachment, left eye|Unspecified choroidal detachment, left eye +C2880783|T020|PT|H31.402|ICD10CM|Unspecified choroidal detachment, left eye|Unspecified choroidal detachment, left eye +C2880784|T020|AB|H31.403|ICD10CM|Unspecified choroidal detachment, bilateral|Unspecified choroidal detachment, bilateral +C2880784|T020|PT|H31.403|ICD10CM|Unspecified choroidal detachment, bilateral|Unspecified choroidal detachment, bilateral +C2880785|T020|AB|H31.409|ICD10CM|Unspecified choroidal detachment, unspecified eye|Unspecified choroidal detachment, unspecified eye +C2880785|T020|PT|H31.409|ICD10CM|Unspecified choroidal detachment, unspecified eye|Unspecified choroidal detachment, unspecified eye +C0154905|T047|HT|H31.41|ICD10CM|Hemorrhagic choroidal detachment|Hemorrhagic choroidal detachment +C0154905|T047|AB|H31.41|ICD10CM|Hemorrhagic choroidal detachment|Hemorrhagic choroidal detachment +C2880786|T047|AB|H31.411|ICD10CM|Hemorrhagic choroidal detachment, right eye|Hemorrhagic choroidal detachment, right eye +C2880786|T047|PT|H31.411|ICD10CM|Hemorrhagic choroidal detachment, right eye|Hemorrhagic choroidal detachment, right eye +C2880787|T047|AB|H31.412|ICD10CM|Hemorrhagic choroidal detachment, left eye|Hemorrhagic choroidal detachment, left eye +C2880787|T047|PT|H31.412|ICD10CM|Hemorrhagic choroidal detachment, left eye|Hemorrhagic choroidal detachment, left eye +C2880788|T047|AB|H31.413|ICD10CM|Hemorrhagic choroidal detachment, bilateral|Hemorrhagic choroidal detachment, bilateral +C2880788|T047|PT|H31.413|ICD10CM|Hemorrhagic choroidal detachment, bilateral|Hemorrhagic choroidal detachment, bilateral +C2880789|T047|AB|H31.419|ICD10CM|Hemorrhagic choroidal detachment, unspecified eye|Hemorrhagic choroidal detachment, unspecified eye +C2880789|T047|PT|H31.419|ICD10CM|Hemorrhagic choroidal detachment, unspecified eye|Hemorrhagic choroidal detachment, unspecified eye +C0154904|T047|HT|H31.42|ICD10CM|Serous choroidal detachment|Serous choroidal detachment +C0154904|T047|AB|H31.42|ICD10CM|Serous choroidal detachment|Serous choroidal detachment +C2880790|T047|AB|H31.421|ICD10CM|Serous choroidal detachment, right eye|Serous choroidal detachment, right eye +C2880790|T047|PT|H31.421|ICD10CM|Serous choroidal detachment, right eye|Serous choroidal detachment, right eye +C2880791|T047|AB|H31.422|ICD10CM|Serous choroidal detachment, left eye|Serous choroidal detachment, left eye +C2880791|T047|PT|H31.422|ICD10CM|Serous choroidal detachment, left eye|Serous choroidal detachment, left eye +C2880792|T047|AB|H31.423|ICD10CM|Serous choroidal detachment, bilateral|Serous choroidal detachment, bilateral +C2880792|T047|PT|H31.423|ICD10CM|Serous choroidal detachment, bilateral|Serous choroidal detachment, bilateral +C2880793|T047|AB|H31.429|ICD10CM|Serous choroidal detachment, unspecified eye|Serous choroidal detachment, unspecified eye +C2880793|T047|PT|H31.429|ICD10CM|Serous choroidal detachment, unspecified eye|Serous choroidal detachment, unspecified eye +C0348548|T047|PT|H31.8|ICD10|Other specified disorders of choroid|Other specified disorders of choroid +C0348548|T047|PT|H31.8|ICD10CM|Other specified disorders of choroid|Other specified disorders of choroid +C0348548|T047|AB|H31.8|ICD10CM|Other specified disorders of choroid|Other specified disorders of choroid +C0008521|T047|PT|H31.9|ICD10|Disorder of choroid, unspecified|Disorder of choroid, unspecified +C0008521|T047|PT|H31.9|ICD10CM|Unspecified disorder of choroid|Unspecified disorder of choroid +C0008521|T047|AB|H31.9|ICD10CM|Unspecified disorder of choroid|Unspecified disorder of choroid +C0694487|T047|HT|H32|ICD10|Chorioretinal disorders in diseases classified elsewhere|Chorioretinal disorders in diseases classified elsewhere +C0694487|T047|PT|H32|ICD10CM|Chorioretinal disorders in diseases classified elsewhere|Chorioretinal disorders in diseases classified elsewhere +C0694487|T047|AB|H32|ICD10CM|Chorioretinal disorders in diseases classified elsewhere|Chorioretinal disorders in diseases classified elsewhere +C0348549|T047|PT|H32.0|ICD10|Chorioretinal inflammation in infectious and parasitic diseases classified elsewhere|Chorioretinal inflammation in infectious and parasitic diseases classified elsewhere +C0348550|T047|PT|H32.8|ICD10|Other chorioretinal disorders in diseases classified elsewhere|Other chorioretinal disorders in diseases classified elsewhere +C0271055|T047|HT|H33|ICD10|Retinal detachments and breaks|Retinal detachments and breaks +C0271055|T047|AB|H33|ICD10CM|Retinal detachments and breaks|Retinal detachments and breaks +C0271055|T047|HT|H33|ICD10CM|Retinal detachments and breaks|Retinal detachments and breaks +C0271055|T047|HT|H33.0|ICD10CM|Retinal detachment with retinal break|Retinal detachment with retinal break +C0271055|T047|AB|H33.0|ICD10CM|Retinal detachment with retinal break|Retinal detachment with retinal break +C0271055|T047|PT|H33.0|ICD10|Retinal detachment with retinal break|Retinal detachment with retinal break +C0271055|T047|ET|H33.0|ICD10CM|Rhegmatogenous retinal detachment|Rhegmatogenous retinal detachment +C2880797|T047|AB|H33.00|ICD10CM|Unspecified retinal detachment with retinal break|Unspecified retinal detachment with retinal break +C2880797|T047|HT|H33.00|ICD10CM|Unspecified retinal detachment with retinal break|Unspecified retinal detachment with retinal break +C2880794|T047|AB|H33.001|ICD10CM|Unspecified retinal detachment with retinal break, right eye|Unspecified retinal detachment with retinal break, right eye +C2880794|T047|PT|H33.001|ICD10CM|Unspecified retinal detachment with retinal break, right eye|Unspecified retinal detachment with retinal break, right eye +C2880795|T047|AB|H33.002|ICD10CM|Unspecified retinal detachment with retinal break, left eye|Unspecified retinal detachment with retinal break, left eye +C2880795|T047|PT|H33.002|ICD10CM|Unspecified retinal detachment with retinal break, left eye|Unspecified retinal detachment with retinal break, left eye +C2880796|T047|AB|H33.003|ICD10CM|Unspecified retinal detachment with retinal break, bilateral|Unspecified retinal detachment with retinal break, bilateral +C2880796|T047|PT|H33.003|ICD10CM|Unspecified retinal detachment with retinal break, bilateral|Unspecified retinal detachment with retinal break, bilateral +C2880797|T047|AB|H33.009|ICD10CM|Unsp retinal detachment with retinal break, unspecified eye|Unsp retinal detachment with retinal break, unspecified eye +C2880797|T047|PT|H33.009|ICD10CM|Unspecified retinal detachment with retinal break, unspecified eye|Unspecified retinal detachment with retinal break, unspecified eye +C2880801|T047|HT|H33.01|ICD10CM|Retinal detachment with single break|Retinal detachment with single break +C2880801|T047|AB|H33.01|ICD10CM|Retinal detachment with single break|Retinal detachment with single break +C2880798|T047|AB|H33.011|ICD10CM|Retinal detachment with single break, right eye|Retinal detachment with single break, right eye +C2880798|T047|PT|H33.011|ICD10CM|Retinal detachment with single break, right eye|Retinal detachment with single break, right eye +C2880799|T047|AB|H33.012|ICD10CM|Retinal detachment with single break, left eye|Retinal detachment with single break, left eye +C2880799|T047|PT|H33.012|ICD10CM|Retinal detachment with single break, left eye|Retinal detachment with single break, left eye +C2880800|T047|AB|H33.013|ICD10CM|Retinal detachment with single break, bilateral|Retinal detachment with single break, bilateral +C2880800|T047|PT|H33.013|ICD10CM|Retinal detachment with single break, bilateral|Retinal detachment with single break, bilateral +C2880801|T047|AB|H33.019|ICD10CM|Retinal detachment with single break, unspecified eye|Retinal detachment with single break, unspecified eye +C2880801|T047|PT|H33.019|ICD10CM|Retinal detachment with single break, unspecified eye|Retinal detachment with single break, unspecified eye +C2880805|T047|HT|H33.02|ICD10CM|Retinal detachment with multiple breaks|Retinal detachment with multiple breaks +C2880805|T047|AB|H33.02|ICD10CM|Retinal detachment with multiple breaks|Retinal detachment with multiple breaks +C2880802|T047|AB|H33.021|ICD10CM|Retinal detachment with multiple breaks, right eye|Retinal detachment with multiple breaks, right eye +C2880802|T047|PT|H33.021|ICD10CM|Retinal detachment with multiple breaks, right eye|Retinal detachment with multiple breaks, right eye +C2880803|T047|AB|H33.022|ICD10CM|Retinal detachment with multiple breaks, left eye|Retinal detachment with multiple breaks, left eye +C2880803|T047|PT|H33.022|ICD10CM|Retinal detachment with multiple breaks, left eye|Retinal detachment with multiple breaks, left eye +C2880804|T047|AB|H33.023|ICD10CM|Retinal detachment with multiple breaks, bilateral|Retinal detachment with multiple breaks, bilateral +C2880804|T047|PT|H33.023|ICD10CM|Retinal detachment with multiple breaks, bilateral|Retinal detachment with multiple breaks, bilateral +C2880805|T047|AB|H33.029|ICD10CM|Retinal detachment with multiple breaks, unspecified eye|Retinal detachment with multiple breaks, unspecified eye +C2880805|T047|PT|H33.029|ICD10CM|Retinal detachment with multiple breaks, unspecified eye|Retinal detachment with multiple breaks, unspecified eye +C2880809|T047|AB|H33.03|ICD10CM|Retinal detachment with giant retinal tear|Retinal detachment with giant retinal tear +C2880809|T047|HT|H33.03|ICD10CM|Retinal detachment with giant retinal tear|Retinal detachment with giant retinal tear +C2880806|T047|AB|H33.031|ICD10CM|Retinal detachment with giant retinal tear, right eye|Retinal detachment with giant retinal tear, right eye +C2880806|T047|PT|H33.031|ICD10CM|Retinal detachment with giant retinal tear, right eye|Retinal detachment with giant retinal tear, right eye +C2880807|T047|AB|H33.032|ICD10CM|Retinal detachment with giant retinal tear, left eye|Retinal detachment with giant retinal tear, left eye +C2880807|T047|PT|H33.032|ICD10CM|Retinal detachment with giant retinal tear, left eye|Retinal detachment with giant retinal tear, left eye +C2880808|T047|AB|H33.033|ICD10CM|Retinal detachment with giant retinal tear, bilateral|Retinal detachment with giant retinal tear, bilateral +C2880808|T047|PT|H33.033|ICD10CM|Retinal detachment with giant retinal tear, bilateral|Retinal detachment with giant retinal tear, bilateral +C2880809|T047|AB|H33.039|ICD10CM|Retinal detachment with giant retinal tear, unspecified eye|Retinal detachment with giant retinal tear, unspecified eye +C2880809|T047|PT|H33.039|ICD10CM|Retinal detachment with giant retinal tear, unspecified eye|Retinal detachment with giant retinal tear, unspecified eye +C2880813|T047|AB|H33.04|ICD10CM|Retinal detachment with retinal dialysis|Retinal detachment with retinal dialysis +C2880813|T047|HT|H33.04|ICD10CM|Retinal detachment with retinal dialysis|Retinal detachment with retinal dialysis +C2880810|T047|AB|H33.041|ICD10CM|Retinal detachment with retinal dialysis, right eye|Retinal detachment with retinal dialysis, right eye +C2880810|T047|PT|H33.041|ICD10CM|Retinal detachment with retinal dialysis, right eye|Retinal detachment with retinal dialysis, right eye +C2880811|T047|AB|H33.042|ICD10CM|Retinal detachment with retinal dialysis, left eye|Retinal detachment with retinal dialysis, left eye +C2880811|T047|PT|H33.042|ICD10CM|Retinal detachment with retinal dialysis, left eye|Retinal detachment with retinal dialysis, left eye +C2880812|T047|AB|H33.043|ICD10CM|Retinal detachment with retinal dialysis, bilateral|Retinal detachment with retinal dialysis, bilateral +C2880812|T047|PT|H33.043|ICD10CM|Retinal detachment with retinal dialysis, bilateral|Retinal detachment with retinal dialysis, bilateral +C2880813|T047|AB|H33.049|ICD10CM|Retinal detachment with retinal dialysis, unspecified eye|Retinal detachment with retinal dialysis, unspecified eye +C2880813|T047|PT|H33.049|ICD10CM|Retinal detachment with retinal dialysis, unspecified eye|Retinal detachment with retinal dialysis, unspecified eye +C2063431|T047|HT|H33.05|ICD10CM|Total retinal detachment|Total retinal detachment +C2063431|T047|AB|H33.05|ICD10CM|Total retinal detachment|Total retinal detachment +C2144998|T047|AB|H33.051|ICD10CM|Total retinal detachment, right eye|Total retinal detachment, right eye +C2144998|T047|PT|H33.051|ICD10CM|Total retinal detachment, right eye|Total retinal detachment, right eye +C2144997|T047|AB|H33.052|ICD10CM|Total retinal detachment, left eye|Total retinal detachment, left eye +C2144997|T047|PT|H33.052|ICD10CM|Total retinal detachment, left eye|Total retinal detachment, left eye +C2880814|T047|AB|H33.053|ICD10CM|Total retinal detachment, bilateral|Total retinal detachment, bilateral +C2880814|T047|PT|H33.053|ICD10CM|Total retinal detachment, bilateral|Total retinal detachment, bilateral +C2880815|T047|AB|H33.059|ICD10CM|Total retinal detachment, unspecified eye|Total retinal detachment, unspecified eye +C2880815|T047|PT|H33.059|ICD10CM|Total retinal detachment, unspecified eye|Total retinal detachment, unspecified eye +C0154816|T020|PT|H33.1|ICD10|Retinoschisis and retinal cysts|Retinoschisis and retinal cysts +C0154816|T020|HT|H33.1|ICD10CM|Retinoschisis and retinal cysts|Retinoschisis and retinal cysts +C0154816|T020|AB|H33.1|ICD10CM|Retinoschisis and retinal cysts|Retinoschisis and retinal cysts +C0152439|T047|AB|H33.10|ICD10CM|Unspecified retinoschisis|Unspecified retinoschisis +C0152439|T047|HT|H33.10|ICD10CM|Unspecified retinoschisis|Unspecified retinoschisis +C2880816|T047|AB|H33.101|ICD10CM|Unspecified retinoschisis, right eye|Unspecified retinoschisis, right eye +C2880816|T047|PT|H33.101|ICD10CM|Unspecified retinoschisis, right eye|Unspecified retinoschisis, right eye +C2880817|T047|AB|H33.102|ICD10CM|Unspecified retinoschisis, left eye|Unspecified retinoschisis, left eye +C2880817|T047|PT|H33.102|ICD10CM|Unspecified retinoschisis, left eye|Unspecified retinoschisis, left eye +C2880818|T047|AB|H33.103|ICD10CM|Unspecified retinoschisis, bilateral|Unspecified retinoschisis, bilateral +C2880818|T047|PT|H33.103|ICD10CM|Unspecified retinoschisis, bilateral|Unspecified retinoschisis, bilateral +C2880819|T047|AB|H33.109|ICD10CM|Unspecified retinoschisis, unspecified eye|Unspecified retinoschisis, unspecified eye +C2880819|T047|PT|H33.109|ICD10CM|Unspecified retinoschisis, unspecified eye|Unspecified retinoschisis, unspecified eye +C1394389|T020|AB|H33.11|ICD10CM|Cyst of ora serrata|Cyst of ora serrata +C1394389|T020|HT|H33.11|ICD10CM|Cyst of ora serrata|Cyst of ora serrata +C2880820|T020|AB|H33.111|ICD10CM|Cyst of ora serrata, right eye|Cyst of ora serrata, right eye +C2880820|T020|PT|H33.111|ICD10CM|Cyst of ora serrata, right eye|Cyst of ora serrata, right eye +C2880821|T020|AB|H33.112|ICD10CM|Cyst of ora serrata, left eye|Cyst of ora serrata, left eye +C2880821|T020|PT|H33.112|ICD10CM|Cyst of ora serrata, left eye|Cyst of ora serrata, left eye +C2880822|T020|AB|H33.113|ICD10CM|Cyst of ora serrata, bilateral|Cyst of ora serrata, bilateral +C2880822|T020|PT|H33.113|ICD10CM|Cyst of ora serrata, bilateral|Cyst of ora serrata, bilateral +C2880823|T020|AB|H33.119|ICD10CM|Cyst of ora serrata, unspecified eye|Cyst of ora serrata, unspecified eye +C2880823|T020|PT|H33.119|ICD10CM|Cyst of ora serrata, unspecified eye|Cyst of ora serrata, unspecified eye +C2880827|T047|HT|H33.12|ICD10CM|Parasitic cyst of retina|Parasitic cyst of retina +C2880827|T047|AB|H33.12|ICD10CM|Parasitic cyst of retina|Parasitic cyst of retina +C2880824|T047|AB|H33.121|ICD10CM|Parasitic cyst of retina, right eye|Parasitic cyst of retina, right eye +C2880824|T047|PT|H33.121|ICD10CM|Parasitic cyst of retina, right eye|Parasitic cyst of retina, right eye +C2880825|T047|AB|H33.122|ICD10CM|Parasitic cyst of retina, left eye|Parasitic cyst of retina, left eye +C2880825|T047|PT|H33.122|ICD10CM|Parasitic cyst of retina, left eye|Parasitic cyst of retina, left eye +C2880826|T047|AB|H33.123|ICD10CM|Parasitic cyst of retina, bilateral|Parasitic cyst of retina, bilateral +C2880826|T047|PT|H33.123|ICD10CM|Parasitic cyst of retina, bilateral|Parasitic cyst of retina, bilateral +C2880827|T047|AB|H33.129|ICD10CM|Parasitic cyst of retina, unspecified eye|Parasitic cyst of retina, unspecified eye +C2880827|T047|PT|H33.129|ICD10CM|Parasitic cyst of retina, unspecified eye|Parasitic cyst of retina, unspecified eye +C0154821|T047|HT|H33.19|ICD10CM|Other retinoschisis and retinal cysts|Other retinoschisis and retinal cysts +C0154821|T047|AB|H33.19|ICD10CM|Other retinoschisis and retinal cysts|Other retinoschisis and retinal cysts +C0271060|T047|ET|H33.19|ICD10CM|Pseudocyst of retina|Pseudocyst of retina +C2880828|T047|AB|H33.191|ICD10CM|Other retinoschisis and retinal cysts, right eye|Other retinoschisis and retinal cysts, right eye +C2880828|T047|PT|H33.191|ICD10CM|Other retinoschisis and retinal cysts, right eye|Other retinoschisis and retinal cysts, right eye +C2880829|T047|AB|H33.192|ICD10CM|Other retinoschisis and retinal cysts, left eye|Other retinoschisis and retinal cysts, left eye +C2880829|T047|PT|H33.192|ICD10CM|Other retinoschisis and retinal cysts, left eye|Other retinoschisis and retinal cysts, left eye +C2880830|T047|AB|H33.193|ICD10CM|Other retinoschisis and retinal cysts, bilateral|Other retinoschisis and retinal cysts, bilateral +C2880830|T047|PT|H33.193|ICD10CM|Other retinoschisis and retinal cysts, bilateral|Other retinoschisis and retinal cysts, bilateral +C0154821|T047|AB|H33.199|ICD10CM|Other retinoschisis and retinal cysts, unspecified eye|Other retinoschisis and retinal cysts, unspecified eye +C0154821|T047|PT|H33.199|ICD10CM|Other retinoschisis and retinal cysts, unspecified eye|Other retinoschisis and retinal cysts, unspecified eye +C0035305|T047|ET|H33.2|ICD10CM|Retinal detachment NOS|Retinal detachment NOS +C2880831|T047|ET|H33.2|ICD10CM|Retinal detachment without retinal break|Retinal detachment without retinal break +C0154822|T047|HT|H33.2|ICD10CM|Serous retinal detachment|Serous retinal detachment +C0154822|T047|AB|H33.2|ICD10CM|Serous retinal detachment|Serous retinal detachment +C0154822|T047|PT|H33.2|ICD10|Serous retinal detachment|Serous retinal detachment +C0154822|T047|AB|H33.20|ICD10CM|Serous retinal detachment, unspecified eye|Serous retinal detachment, unspecified eye +C0154822|T047|PT|H33.20|ICD10CM|Serous retinal detachment, unspecified eye|Serous retinal detachment, unspecified eye +C2175567|T047|AB|H33.21|ICD10CM|Serous retinal detachment, right eye|Serous retinal detachment, right eye +C2175567|T047|PT|H33.21|ICD10CM|Serous retinal detachment, right eye|Serous retinal detachment, right eye +C2175571|T033|AB|H33.22|ICD10CM|Serous retinal detachment, left eye|Serous retinal detachment, left eye +C2175571|T033|PT|H33.22|ICD10CM|Serous retinal detachment, left eye|Serous retinal detachment, left eye +C2880832|T047|AB|H33.23|ICD10CM|Serous retinal detachment, bilateral|Serous retinal detachment, bilateral +C2880832|T047|PT|H33.23|ICD10CM|Serous retinal detachment, bilateral|Serous retinal detachment, bilateral +C0494530|T047|PT|H33.3|ICD10|Retinal breaks without detachment|Retinal breaks without detachment +C0494530|T047|HT|H33.3|ICD10CM|Retinal breaks without detachment|Retinal breaks without detachment +C0494530|T047|AB|H33.3|ICD10CM|Retinal breaks without detachment|Retinal breaks without detachment +C2880836|T047|AB|H33.30|ICD10CM|Unspecified retinal break|Unspecified retinal break +C2880836|T047|HT|H33.30|ICD10CM|Unspecified retinal break|Unspecified retinal break +C2880833|T047|AB|H33.301|ICD10CM|Unspecified retinal break, right eye|Unspecified retinal break, right eye +C2880833|T047|PT|H33.301|ICD10CM|Unspecified retinal break, right eye|Unspecified retinal break, right eye +C2880834|T047|AB|H33.302|ICD10CM|Unspecified retinal break, left eye|Unspecified retinal break, left eye +C2880834|T047|PT|H33.302|ICD10CM|Unspecified retinal break, left eye|Unspecified retinal break, left eye +C2880835|T047|AB|H33.303|ICD10CM|Unspecified retinal break, bilateral|Unspecified retinal break, bilateral +C2880835|T047|PT|H33.303|ICD10CM|Unspecified retinal break, bilateral|Unspecified retinal break, bilateral +C2880836|T047|AB|H33.309|ICD10CM|Unspecified retinal break, unspecified eye|Unspecified retinal break, unspecified eye +C2880836|T047|PT|H33.309|ICD10CM|Unspecified retinal break, unspecified eye|Unspecified retinal break, unspecified eye +C0154826|T047|HT|H33.31|ICD10CM|Horseshoe tear of retina without detachment|Horseshoe tear of retina without detachment +C0154826|T047|AB|H33.31|ICD10CM|Horseshoe tear of retina without detachment|Horseshoe tear of retina without detachment +C0271062|T047|ET|H33.31|ICD10CM|Operculum of retina without detachment|Operculum of retina without detachment +C2880837|T047|AB|H33.311|ICD10CM|Horseshoe tear of retina without detachment, right eye|Horseshoe tear of retina without detachment, right eye +C2880837|T047|PT|H33.311|ICD10CM|Horseshoe tear of retina without detachment, right eye|Horseshoe tear of retina without detachment, right eye +C2880838|T047|AB|H33.312|ICD10CM|Horseshoe tear of retina without detachment, left eye|Horseshoe tear of retina without detachment, left eye +C2880838|T047|PT|H33.312|ICD10CM|Horseshoe tear of retina without detachment, left eye|Horseshoe tear of retina without detachment, left eye +C2880839|T047|AB|H33.313|ICD10CM|Horseshoe tear of retina without detachment, bilateral|Horseshoe tear of retina without detachment, bilateral +C2880839|T047|PT|H33.313|ICD10CM|Horseshoe tear of retina without detachment, bilateral|Horseshoe tear of retina without detachment, bilateral +C2880840|T047|AB|H33.319|ICD10CM|Horseshoe tear of retina without detachment, unspecified eye|Horseshoe tear of retina without detachment, unspecified eye +C2880840|T047|PT|H33.319|ICD10CM|Horseshoe tear of retina without detachment, unspecified eye|Horseshoe tear of retina without detachment, unspecified eye +C0154825|T047|HT|H33.32|ICD10CM|Round hole of retina without detachment|Round hole of retina without detachment +C0154825|T047|AB|H33.32|ICD10CM|Round hole of retina without detachment|Round hole of retina without detachment +C2880841|T047|AB|H33.321|ICD10CM|Round hole, right eye|Round hole, right eye +C2880841|T047|PT|H33.321|ICD10CM|Round hole, right eye|Round hole, right eye +C2880842|T020|AB|H33.322|ICD10CM|Round hole, left eye|Round hole, left eye +C2880842|T020|PT|H33.322|ICD10CM|Round hole, left eye|Round hole, left eye +C2880843|T047|AB|H33.323|ICD10CM|Round hole, bilateral|Round hole, bilateral +C2880843|T047|PT|H33.323|ICD10CM|Round hole, bilateral|Round hole, bilateral +C2880844|T047|AB|H33.329|ICD10CM|Round hole, unspecified eye|Round hole, unspecified eye +C2880844|T047|PT|H33.329|ICD10CM|Round hole, unspecified eye|Round hole, unspecified eye +C0154827|T047|HT|H33.33|ICD10CM|Multiple defects of retina without detachment|Multiple defects of retina without detachment +C0154827|T047|AB|H33.33|ICD10CM|Multiple defects of retina without detachment|Multiple defects of retina without detachment +C2880845|T047|AB|H33.331|ICD10CM|Multiple defects of retina without detachment, right eye|Multiple defects of retina without detachment, right eye +C2880845|T047|PT|H33.331|ICD10CM|Multiple defects of retina without detachment, right eye|Multiple defects of retina without detachment, right eye +C2880846|T047|AB|H33.332|ICD10CM|Multiple defects of retina without detachment, left eye|Multiple defects of retina without detachment, left eye +C2880846|T047|PT|H33.332|ICD10CM|Multiple defects of retina without detachment, left eye|Multiple defects of retina without detachment, left eye +C2880847|T047|AB|H33.333|ICD10CM|Multiple defects of retina without detachment, bilateral|Multiple defects of retina without detachment, bilateral +C2880847|T047|PT|H33.333|ICD10CM|Multiple defects of retina without detachment, bilateral|Multiple defects of retina without detachment, bilateral +C2880848|T047|AB|H33.339|ICD10CM|Multiple defects of retina without detachment, unsp eye|Multiple defects of retina without detachment, unsp eye +C2880848|T047|PT|H33.339|ICD10CM|Multiple defects of retina without detachment, unspecified eye|Multiple defects of retina without detachment, unspecified eye +C2880849|T047|ET|H33.4|ICD10CM|Proliferative vitreo-retinopathy with retinal detachment|Proliferative vitreo-retinopathy with retinal detachment +C0154828|T046|HT|H33.4|ICD10CM|Traction detachment of retina|Traction detachment of retina +C0154828|T046|AB|H33.4|ICD10CM|Traction detachment of retina|Traction detachment of retina +C0154828|T046|PT|H33.4|ICD10|Traction detachment of retina|Traction detachment of retina +C0154828|T046|AB|H33.40|ICD10CM|Traction detachment of retina, unspecified eye|Traction detachment of retina, unspecified eye +C0154828|T046|PT|H33.40|ICD10CM|Traction detachment of retina, unspecified eye|Traction detachment of retina, unspecified eye +C2145126|T020|AB|H33.41|ICD10CM|Traction detachment of retina, right eye|Traction detachment of retina, right eye +C2145126|T020|PT|H33.41|ICD10CM|Traction detachment of retina, right eye|Traction detachment of retina, right eye +C2145094|T020|AB|H33.42|ICD10CM|Traction detachment of retina, left eye|Traction detachment of retina, left eye +C2145094|T020|PT|H33.42|ICD10CM|Traction detachment of retina, left eye|Traction detachment of retina, left eye +C2880850|T020|AB|H33.43|ICD10CM|Traction detachment of retina, bilateral|Traction detachment of retina, bilateral +C2880850|T020|PT|H33.43|ICD10CM|Traction detachment of retina, bilateral|Traction detachment of retina, bilateral +C0339440|T020|PT|H33.5|ICD10|Other retinal detachments|Other retinal detachments +C0339440|T020|PT|H33.8|ICD10CM|Other retinal detachments|Other retinal detachments +C0339440|T020|AB|H33.8|ICD10CM|Other retinal detachments|Other retinal detachments +C0035326|T047|HT|H34|ICD10|Retinal vascular occlusions|Retinal vascular occlusions +C0035326|T047|AB|H34|ICD10CM|Retinal vascular occlusions|Retinal vascular occlusions +C0035326|T047|HT|H34|ICD10CM|Retinal vascular occlusions|Retinal vascular occlusions +C0154840|T047|HT|H34.0|ICD10CM|Transient retinal artery occlusion|Transient retinal artery occlusion +C0154840|T047|AB|H34.0|ICD10CM|Transient retinal artery occlusion|Transient retinal artery occlusion +C0154840|T047|PT|H34.0|ICD10|Transient retinal artery occlusion|Transient retinal artery occlusion +C2880851|T047|AB|H34.00|ICD10CM|Transient retinal artery occlusion, unspecified eye|Transient retinal artery occlusion, unspecified eye +C2880851|T047|PT|H34.00|ICD10CM|Transient retinal artery occlusion, unspecified eye|Transient retinal artery occlusion, unspecified eye +C2880852|T047|AB|H34.01|ICD10CM|Transient retinal artery occlusion, right eye|Transient retinal artery occlusion, right eye +C2880852|T047|PT|H34.01|ICD10CM|Transient retinal artery occlusion, right eye|Transient retinal artery occlusion, right eye +C2880853|T047|AB|H34.02|ICD10CM|Transient retinal artery occlusion, left eye|Transient retinal artery occlusion, left eye +C2880853|T047|PT|H34.02|ICD10CM|Transient retinal artery occlusion, left eye|Transient retinal artery occlusion, left eye +C2880854|T047|AB|H34.03|ICD10CM|Transient retinal artery occlusion, bilateral|Transient retinal artery occlusion, bilateral +C2880854|T047|PT|H34.03|ICD10CM|Transient retinal artery occlusion, bilateral|Transient retinal artery occlusion, bilateral +C0007688|T047|PT|H34.1|ICD10|Central retinal artery occlusion|Central retinal artery occlusion +C0007688|T047|HT|H34.1|ICD10CM|Central retinal artery occlusion|Central retinal artery occlusion +C0007688|T047|AB|H34.1|ICD10CM|Central retinal artery occlusion|Central retinal artery occlusion +C2880855|T047|AB|H34.10|ICD10CM|Central retinal artery occlusion, unspecified eye|Central retinal artery occlusion, unspecified eye +C2880855|T047|PT|H34.10|ICD10CM|Central retinal artery occlusion, unspecified eye|Central retinal artery occlusion, unspecified eye +C2880856|T047|AB|H34.11|ICD10CM|Central retinal artery occlusion, right eye|Central retinal artery occlusion, right eye +C2880856|T047|PT|H34.11|ICD10CM|Central retinal artery occlusion, right eye|Central retinal artery occlusion, right eye +C2880857|T047|AB|H34.12|ICD10CM|Central retinal artery occlusion, left eye|Central retinal artery occlusion, left eye +C2880857|T047|PT|H34.12|ICD10CM|Central retinal artery occlusion, left eye|Central retinal artery occlusion, left eye +C2880858|T046|AB|H34.13|ICD10CM|Central retinal artery occlusion, bilateral|Central retinal artery occlusion, bilateral +C2880858|T046|PT|H34.13|ICD10CM|Central retinal artery occlusion, bilateral|Central retinal artery occlusion, bilateral +C0348551|T190|PT|H34.2|ICD10|Other retinal artery occlusions|Other retinal artery occlusions +C0348551|T190|HT|H34.2|ICD10CM|Other retinal artery occlusions|Other retinal artery occlusions +C0348551|T190|AB|H34.2|ICD10CM|Other retinal artery occlusions|Other retinal artery occlusions +C1321321|T047|ET|H34.21|ICD10CM|Hollenhorst's plaque|Hollenhorst's plaque +C0154839|T047|HT|H34.21|ICD10CM|Partial retinal artery occlusion|Partial retinal artery occlusion +C0154839|T047|AB|H34.21|ICD10CM|Partial retinal artery occlusion|Partial retinal artery occlusion +C0271078|T047|ET|H34.21|ICD10CM|Retinal microembolism|Retinal microembolism +C2880859|T047|AB|H34.211|ICD10CM|Partial retinal artery occlusion, right eye|Partial retinal artery occlusion, right eye +C2880859|T047|PT|H34.211|ICD10CM|Partial retinal artery occlusion, right eye|Partial retinal artery occlusion, right eye +C2880860|T047|AB|H34.212|ICD10CM|Partial retinal artery occlusion, left eye|Partial retinal artery occlusion, left eye +C2880860|T047|PT|H34.212|ICD10CM|Partial retinal artery occlusion, left eye|Partial retinal artery occlusion, left eye +C2880861|T047|AB|H34.213|ICD10CM|Partial retinal artery occlusion, bilateral|Partial retinal artery occlusion, bilateral +C2880861|T047|PT|H34.213|ICD10CM|Partial retinal artery occlusion, bilateral|Partial retinal artery occlusion, bilateral +C0154839|T047|AB|H34.219|ICD10CM|Partial retinal artery occlusion, unspecified eye|Partial retinal artery occlusion, unspecified eye +C0154839|T047|PT|H34.219|ICD10CM|Partial retinal artery occlusion, unspecified eye|Partial retinal artery occlusion, unspecified eye +C0006123|T047|AB|H34.23|ICD10CM|Retinal artery branch occlusion|Retinal artery branch occlusion +C0006123|T047|HT|H34.23|ICD10CM|Retinal artery branch occlusion|Retinal artery branch occlusion +C2880863|T047|AB|H34.231|ICD10CM|Retinal artery branch occlusion, right eye|Retinal artery branch occlusion, right eye +C2880863|T047|PT|H34.231|ICD10CM|Retinal artery branch occlusion, right eye|Retinal artery branch occlusion, right eye +C2880864|T047|AB|H34.232|ICD10CM|Retinal artery branch occlusion, left eye|Retinal artery branch occlusion, left eye +C2880864|T047|PT|H34.232|ICD10CM|Retinal artery branch occlusion, left eye|Retinal artery branch occlusion, left eye +C2880865|T047|AB|H34.233|ICD10CM|Retinal artery branch occlusion, bilateral|Retinal artery branch occlusion, bilateral +C2880865|T047|PT|H34.233|ICD10CM|Retinal artery branch occlusion, bilateral|Retinal artery branch occlusion, bilateral +C2880866|T047|AB|H34.239|ICD10CM|Retinal artery branch occlusion, unspecified eye|Retinal artery branch occlusion, unspecified eye +C2880866|T047|PT|H34.239|ICD10CM|Retinal artery branch occlusion, unspecified eye|Retinal artery branch occlusion, unspecified eye +C0348552|T190|HT|H34.8|ICD10CM|Other retinal vascular occlusions|Other retinal vascular occlusions +C0348552|T190|AB|H34.8|ICD10CM|Other retinal vascular occlusions|Other retinal vascular occlusions +C0348552|T190|PT|H34.8|ICD10|Other retinal vascular occlusions|Other retinal vascular occlusions +C0154841|T047|HT|H34.81|ICD10CM|Central retinal vein occlusion|Central retinal vein occlusion +C0154841|T047|AB|H34.81|ICD10CM|Central retinal vein occlusion|Central retinal vein occlusion +C2880867|T047|AB|H34.811|ICD10CM|Central retinal vein occlusion, right eye|Central retinal vein occlusion, right eye +C2880867|T047|HT|H34.811|ICD10CM|Central retinal vein occlusion, right eye|Central retinal vein occlusion, right eye +C4268332|T047|AB|H34.8110|ICD10CM|Central retinal vein occls, right eye, with macular edema|Central retinal vein occls, right eye, with macular edema +C4268332|T047|PT|H34.8110|ICD10CM|Central retinal vein occlusion, right eye, with macular edema|Central retinal vein occlusion, right eye, with macular edema +C4268333|T047|AB|H34.8111|ICD10CM|Central retinal vein occlusion, right eye, w rtnl neovas|Central retinal vein occlusion, right eye, w rtnl neovas +C4268333|T047|PT|H34.8111|ICD10CM|Central retinal vein occlusion, right eye, with retinal neovascularization|Central retinal vein occlusion, right eye, with retinal neovascularization +C4268334|T047|AB|H34.8112|ICD10CM|Central retinal vein occlusion, right eye, stable|Central retinal vein occlusion, right eye, stable +C4268334|T047|PT|H34.8112|ICD10CM|Central retinal vein occlusion, right eye, stable|Central retinal vein occlusion, right eye, stable +C2880868|T047|AB|H34.812|ICD10CM|Central retinal vein occlusion, left eye|Central retinal vein occlusion, left eye +C2880868|T047|HT|H34.812|ICD10CM|Central retinal vein occlusion, left eye|Central retinal vein occlusion, left eye +C4268335|T047|AB|H34.8120|ICD10CM|Central retinal vein occlusion, left eye, with macular edema|Central retinal vein occlusion, left eye, with macular edema +C4268335|T047|PT|H34.8120|ICD10CM|Central retinal vein occlusion, left eye, with macular edema|Central retinal vein occlusion, left eye, with macular edema +C4268336|T047|AB|H34.8121|ICD10CM|Central retinal vein occlusion, left eye, w rtnl neovas|Central retinal vein occlusion, left eye, w rtnl neovas +C4268336|T047|PT|H34.8121|ICD10CM|Central retinal vein occlusion, left eye, with retinal neovascularization|Central retinal vein occlusion, left eye, with retinal neovascularization +C4268337|T047|AB|H34.8122|ICD10CM|Central retinal vein occlusion, left eye, stable|Central retinal vein occlusion, left eye, stable +C4268337|T047|PT|H34.8122|ICD10CM|Central retinal vein occlusion, left eye, stable|Central retinal vein occlusion, left eye, stable +C2880869|T047|AB|H34.813|ICD10CM|Central retinal vein occlusion, bilateral|Central retinal vein occlusion, bilateral +C2880869|T047|HT|H34.813|ICD10CM|Central retinal vein occlusion, bilateral|Central retinal vein occlusion, bilateral +C4268338|T047|AB|H34.8130|ICD10CM|Central retinal vein occlusion, bi, with macular edema|Central retinal vein occlusion, bi, with macular edema +C4268338|T047|PT|H34.8130|ICD10CM|Central retinal vein occlusion, bilateral, with macular edema|Central retinal vein occlusion, bilateral, with macular edema +C4268339|T047|AB|H34.8131|ICD10CM|Central retinal vein occlusion, bilateral, w rtnl neovas|Central retinal vein occlusion, bilateral, w rtnl neovas +C4268339|T047|PT|H34.8131|ICD10CM|Central retinal vein occlusion, bilateral, with retinal neovascularization|Central retinal vein occlusion, bilateral, with retinal neovascularization +C4268340|T047|AB|H34.8132|ICD10CM|Central retinal vein occlusion, bilateral, stable|Central retinal vein occlusion, bilateral, stable +C4268340|T047|PT|H34.8132|ICD10CM|Central retinal vein occlusion, bilateral, stable|Central retinal vein occlusion, bilateral, stable +C2880870|T047|AB|H34.819|ICD10CM|Central retinal vein occlusion, unspecified eye|Central retinal vein occlusion, unspecified eye +C2880870|T047|HT|H34.819|ICD10CM|Central retinal vein occlusion, unspecified eye|Central retinal vein occlusion, unspecified eye +C4268341|T047|AB|H34.8190|ICD10CM|Central retinal vein occlusion, unsp, with macular edema|Central retinal vein occlusion, unsp, with macular edema +C4268341|T047|PT|H34.8190|ICD10CM|Central retinal vein occlusion, unspecified eye, with macular edema|Central retinal vein occlusion, unspecified eye, with macular edema +C4268342|T047|AB|H34.8191|ICD10CM|Central retinal vein occlusion, unsp, w rtnl neovas|Central retinal vein occlusion, unsp, w rtnl neovas +C4268342|T047|PT|H34.8191|ICD10CM|Central retinal vein occlusion, unspecified eye, with retinal neovascularization|Central retinal vein occlusion, unspecified eye, with retinal neovascularization +C4268343|T047|AB|H34.8192|ICD10CM|Central retinal vein occlusion, unspecified eye, stable|Central retinal vein occlusion, unspecified eye, stable +C4268343|T047|PT|H34.8192|ICD10CM|Central retinal vein occlusion, unspecified eye, stable|Central retinal vein occlusion, unspecified eye, stable +C0271079|T047|ET|H34.82|ICD10CM|Incipient retinal vein occlusion|Incipient retinal vein occlusion +C0271080|T047|ET|H34.82|ICD10CM|Partial retinal vein occlusion|Partial retinal vein occlusion +C0154843|T046|HT|H34.82|ICD10CM|Venous engorgement|Venous engorgement +C0154843|T046|AB|H34.82|ICD10CM|Venous engorgement|Venous engorgement +C2880871|T046|AB|H34.821|ICD10CM|Venous engorgement, right eye|Venous engorgement, right eye +C2880871|T046|PT|H34.821|ICD10CM|Venous engorgement, right eye|Venous engorgement, right eye +C2880872|T046|AB|H34.822|ICD10CM|Venous engorgement, left eye|Venous engorgement, left eye +C2880872|T046|PT|H34.822|ICD10CM|Venous engorgement, left eye|Venous engorgement, left eye +C2880873|T046|AB|H34.823|ICD10CM|Venous engorgement, bilateral|Venous engorgement, bilateral +C2880873|T046|PT|H34.823|ICD10CM|Venous engorgement, bilateral|Venous engorgement, bilateral +C0154843|T046|AB|H34.829|ICD10CM|Venous engorgement, unspecified eye|Venous engorgement, unspecified eye +C0154843|T046|PT|H34.829|ICD10CM|Venous engorgement, unspecified eye|Venous engorgement, unspecified eye +C2880877|T047|AB|H34.83|ICD10CM|Tributary (branch) retinal vein occlusion|Tributary (branch) retinal vein occlusion +C2880877|T047|HT|H34.83|ICD10CM|Tributary (branch) retinal vein occlusion|Tributary (branch) retinal vein occlusion +C2880874|T047|AB|H34.831|ICD10CM|Tributary (branch) retinal vein occlusion, right eye|Tributary (branch) retinal vein occlusion, right eye +C2880874|T047|HT|H34.831|ICD10CM|Tributary (branch) retinal vein occlusion, right eye|Tributary (branch) retinal vein occlusion, right eye +C4268344|T047|AB|H34.8310|ICD10CM|Trib rtnl vein occlusion, right eye, with macular edema|Trib rtnl vein occlusion, right eye, with macular edema +C4268344|T047|PT|H34.8310|ICD10CM|Tributary (branch) retinal vein occlusion, right eye, with macular edema|Tributary (branch) retinal vein occlusion, right eye, with macular edema +C4268345|T047|AB|H34.8311|ICD10CM|Trib rtnl vein occlusion, right eye, w rtnl neovas|Trib rtnl vein occlusion, right eye, w rtnl neovas +C4268345|T047|PT|H34.8311|ICD10CM|Tributary (branch) retinal vein occlusion, right eye, with retinal neovascularization|Tributary (branch) retinal vein occlusion, right eye, with retinal neovascularization +C4268346|T047|AB|H34.8312|ICD10CM|Tributary (branch) retinal vein occlusion, right eye, stable|Tributary (branch) retinal vein occlusion, right eye, stable +C4268346|T047|PT|H34.8312|ICD10CM|Tributary (branch) retinal vein occlusion, right eye, stable|Tributary (branch) retinal vein occlusion, right eye, stable +C2880875|T047|AB|H34.832|ICD10CM|Tributary (branch) retinal vein occlusion, left eye|Tributary (branch) retinal vein occlusion, left eye +C2880875|T047|HT|H34.832|ICD10CM|Tributary (branch) retinal vein occlusion, left eye|Tributary (branch) retinal vein occlusion, left eye +C4268347|T047|AB|H34.8320|ICD10CM|Trib rtnl vein occlusion, left eye, with macular edema|Trib rtnl vein occlusion, left eye, with macular edema +C4268347|T047|PT|H34.8320|ICD10CM|Tributary (branch) retinal vein occlusion, left eye, with macular edema|Tributary (branch) retinal vein occlusion, left eye, with macular edema +C4268348|T047|AB|H34.8321|ICD10CM|Trib rtnl vein occlusion, left eye, w rtnl neovas|Trib rtnl vein occlusion, left eye, w rtnl neovas +C4268348|T047|PT|H34.8321|ICD10CM|Tributary (branch) retinal vein occlusion, left eye, with retinal neovascularization|Tributary (branch) retinal vein occlusion, left eye, with retinal neovascularization +C4268349|T047|AB|H34.8322|ICD10CM|Tributary (branch) retinal vein occlusion, left eye, stable|Tributary (branch) retinal vein occlusion, left eye, stable +C4268349|T047|PT|H34.8322|ICD10CM|Tributary (branch) retinal vein occlusion, left eye, stable|Tributary (branch) retinal vein occlusion, left eye, stable +C2880876|T047|AB|H34.833|ICD10CM|Tributary (branch) retinal vein occlusion, bilateral|Tributary (branch) retinal vein occlusion, bilateral +C2880876|T047|HT|H34.833|ICD10CM|Tributary (branch) retinal vein occlusion, bilateral|Tributary (branch) retinal vein occlusion, bilateral +C4268350|T047|AB|H34.8330|ICD10CM|Trib rtnl vein occlusion, bilateral, with macular edema|Trib rtnl vein occlusion, bilateral, with macular edema +C4268350|T047|PT|H34.8330|ICD10CM|Tributary (branch) retinal vein occlusion, bilateral, with macular edema|Tributary (branch) retinal vein occlusion, bilateral, with macular edema +C4268351|T047|AB|H34.8331|ICD10CM|Trib rtnl vein occlusion, bilateral, w rtnl neovas|Trib rtnl vein occlusion, bilateral, w rtnl neovas +C4268351|T047|PT|H34.8331|ICD10CM|Tributary (branch) retinal vein occlusion, bilateral, with retinal neovascularization|Tributary (branch) retinal vein occlusion, bilateral, with retinal neovascularization +C4268352|T047|AB|H34.8332|ICD10CM|Tributary (branch) retinal vein occlusion, bilateral, stable|Tributary (branch) retinal vein occlusion, bilateral, stable +C4268352|T047|PT|H34.8332|ICD10CM|Tributary (branch) retinal vein occlusion, bilateral, stable|Tributary (branch) retinal vein occlusion, bilateral, stable +C2880877|T047|AB|H34.839|ICD10CM|Tributary (branch) retinal vein occlusion, unspecified eye|Tributary (branch) retinal vein occlusion, unspecified eye +C2880877|T047|HT|H34.839|ICD10CM|Tributary (branch) retinal vein occlusion, unspecified eye|Tributary (branch) retinal vein occlusion, unspecified eye +C4268353|T047|AB|H34.8390|ICD10CM|Trib rtnl vein occlusion, unsp, with macular edema|Trib rtnl vein occlusion, unsp, with macular edema +C4268353|T047|PT|H34.8390|ICD10CM|Tributary (branch) retinal vein occlusion, unspecified eye, with macular edema|Tributary (branch) retinal vein occlusion, unspecified eye, with macular edema +C4268354|T047|AB|H34.8391|ICD10CM|Trib rtnl vein occlusion, unspecified eye, w rtnl neovas|Trib rtnl vein occlusion, unspecified eye, w rtnl neovas +C4268354|T047|PT|H34.8391|ICD10CM|Tributary (branch) retinal vein occlusion, unspecified eye, with retinal neovascularization|Tributary (branch) retinal vein occlusion, unspecified eye, with retinal neovascularization +C4268355|T047|AB|H34.8392|ICD10CM|Trib rtnl vein occlusion, unspecified eye, stable|Trib rtnl vein occlusion, unspecified eye, stable +C4268355|T047|PT|H34.8392|ICD10CM|Tributary (branch) retinal vein occlusion, unspecified eye, stable|Tributary (branch) retinal vein occlusion, unspecified eye, stable +C0035326|T047|PT|H34.9|ICD10|Retinal vascular occlusion, unspecified|Retinal vascular occlusion, unspecified +C0035326|T047|AB|H34.9|ICD10CM|Unspecified retinal vascular occlusion|Unspecified retinal vascular occlusion +C0035326|T047|PT|H34.9|ICD10CM|Unspecified retinal vascular occlusion|Unspecified retinal vascular occlusion +C0339438|T047|HT|H35|ICD10|Other retinal disorders|Other retinal disorders +C0339438|T047|HT|H35|ICD10CM|Other retinal disorders|Other retinal disorders +C0339438|T047|AB|H35|ICD10CM|Other retinal disorders|Other retinal disorders +C0494531|T047|HT|H35.0|ICD10CM|Background retinopathy and retinal vascular changes|Background retinopathy and retinal vascular changes +C0494531|T047|AB|H35.0|ICD10CM|Background retinopathy and retinal vascular changes|Background retinopathy and retinal vascular changes +C0494531|T047|PT|H35.0|ICD10|Background retinopathy and retinal vascular changes|Background retinopathy and retinal vascular changes +C0004608|T047|AB|H35.00|ICD10CM|Unspecified background retinopathy|Unspecified background retinopathy +C0004608|T047|PT|H35.00|ICD10CM|Unspecified background retinopathy|Unspecified background retinopathy +C1363843|T047|HT|H35.01|ICD10CM|Changes in retinal vascular appearance|Changes in retinal vascular appearance +C1363843|T047|AB|H35.01|ICD10CM|Changes in retinal vascular appearance|Changes in retinal vascular appearance +C0271065|T047|ET|H35.01|ICD10CM|Retinal vascular sheathing|Retinal vascular sheathing +C2880878|T047|AB|H35.011|ICD10CM|Changes in retinal vascular appearance, right eye|Changes in retinal vascular appearance, right eye +C2880878|T047|PT|H35.011|ICD10CM|Changes in retinal vascular appearance, right eye|Changes in retinal vascular appearance, right eye +C2880879|T047|AB|H35.012|ICD10CM|Changes in retinal vascular appearance, left eye|Changes in retinal vascular appearance, left eye +C2880879|T047|PT|H35.012|ICD10CM|Changes in retinal vascular appearance, left eye|Changes in retinal vascular appearance, left eye +C2880880|T047|AB|H35.013|ICD10CM|Changes in retinal vascular appearance, bilateral|Changes in retinal vascular appearance, bilateral +C2880880|T047|PT|H35.013|ICD10CM|Changes in retinal vascular appearance, bilateral|Changes in retinal vascular appearance, bilateral +C2880881|T047|AB|H35.019|ICD10CM|Changes in retinal vascular appearance, unspecified eye|Changes in retinal vascular appearance, unspecified eye +C2880881|T047|PT|H35.019|ICD10CM|Changes in retinal vascular appearance, unspecified eye|Changes in retinal vascular appearance, unspecified eye +C2880882|T047|ET|H35.02|ICD10CM|Coats retinopathy|Coats retinopathy +C0154832|T047|HT|H35.02|ICD10CM|Exudative retinopathy|Exudative retinopathy +C0154832|T047|AB|H35.02|ICD10CM|Exudative retinopathy|Exudative retinopathy +C2880883|T047|AB|H35.021|ICD10CM|Exudative retinopathy, right eye|Exudative retinopathy, right eye +C2880883|T047|PT|H35.021|ICD10CM|Exudative retinopathy, right eye|Exudative retinopathy, right eye +C2880884|T047|AB|H35.022|ICD10CM|Exudative retinopathy, left eye|Exudative retinopathy, left eye +C2880884|T047|PT|H35.022|ICD10CM|Exudative retinopathy, left eye|Exudative retinopathy, left eye +C2880885|T047|AB|H35.023|ICD10CM|Exudative retinopathy, bilateral|Exudative retinopathy, bilateral +C2880885|T047|PT|H35.023|ICD10CM|Exudative retinopathy, bilateral|Exudative retinopathy, bilateral +C2880886|T047|AB|H35.029|ICD10CM|Exudative retinopathy, unspecified eye|Exudative retinopathy, unspecified eye +C2880886|T047|PT|H35.029|ICD10CM|Exudative retinopathy, unspecified eye|Exudative retinopathy, unspecified eye +C0152132|T047|HT|H35.03|ICD10CM|Hypertensive retinopathy|Hypertensive retinopathy +C0152132|T047|AB|H35.03|ICD10CM|Hypertensive retinopathy|Hypertensive retinopathy +C2187280|T047|AB|H35.031|ICD10CM|Hypertensive retinopathy, right eye|Hypertensive retinopathy, right eye +C2187280|T047|PT|H35.031|ICD10CM|Hypertensive retinopathy, right eye|Hypertensive retinopathy, right eye +C2187279|T047|AB|H35.032|ICD10CM|Hypertensive retinopathy, left eye|Hypertensive retinopathy, left eye +C2187279|T047|PT|H35.032|ICD10CM|Hypertensive retinopathy, left eye|Hypertensive retinopathy, left eye +C2880887|T047|AB|H35.033|ICD10CM|Hypertensive retinopathy, bilateral|Hypertensive retinopathy, bilateral +C2880887|T047|PT|H35.033|ICD10CM|Hypertensive retinopathy, bilateral|Hypertensive retinopathy, bilateral +C2880888|T047|AB|H35.039|ICD10CM|Hypertensive retinopathy, unspecified eye|Hypertensive retinopathy, unspecified eye +C2880888|T047|PT|H35.039|ICD10CM|Hypertensive retinopathy, unspecified eye|Hypertensive retinopathy, unspecified eye +C2880889|T047|AB|H35.04|ICD10CM|Retinal micro-aneurysms, unspecified|Retinal micro-aneurysms, unspecified +C2880889|T047|HT|H35.04|ICD10CM|Retinal micro-aneurysms, unspecified|Retinal micro-aneurysms, unspecified +C2880890|T047|AB|H35.041|ICD10CM|Retinal micro-aneurysms, unspecified, right eye|Retinal micro-aneurysms, unspecified, right eye +C2880890|T047|PT|H35.041|ICD10CM|Retinal micro-aneurysms, unspecified, right eye|Retinal micro-aneurysms, unspecified, right eye +C2880891|T047|AB|H35.042|ICD10CM|Retinal micro-aneurysms, unspecified, left eye|Retinal micro-aneurysms, unspecified, left eye +C2880891|T047|PT|H35.042|ICD10CM|Retinal micro-aneurysms, unspecified, left eye|Retinal micro-aneurysms, unspecified, left eye +C2880892|T047|AB|H35.043|ICD10CM|Retinal micro-aneurysms, unspecified, bilateral|Retinal micro-aneurysms, unspecified, bilateral +C2880892|T047|PT|H35.043|ICD10CM|Retinal micro-aneurysms, unspecified, bilateral|Retinal micro-aneurysms, unspecified, bilateral +C2880893|T047|AB|H35.049|ICD10CM|Retinal micro-aneurysms, unspecified, unspecified eye|Retinal micro-aneurysms, unspecified, unspecified eye +C2880893|T047|PT|H35.049|ICD10CM|Retinal micro-aneurysms, unspecified, unspecified eye|Retinal micro-aneurysms, unspecified, unspecified eye +C2976966|T047|AB|H35.05|ICD10CM|Retinal neovascularization, unspecified|Retinal neovascularization, unspecified +C2976966|T047|HT|H35.05|ICD10CM|Retinal neovascularization, unspecified|Retinal neovascularization, unspecified +C2187226|T046|AB|H35.051|ICD10CM|Retinal neovascularization, unspecified, right eye|Retinal neovascularization, unspecified, right eye +C2187226|T046|PT|H35.051|ICD10CM|Retinal neovascularization, unspecified, right eye|Retinal neovascularization, unspecified, right eye +C2187225|T046|AB|H35.052|ICD10CM|Retinal neovascularization, unspecified, left eye|Retinal neovascularization, unspecified, left eye +C2187225|T046|PT|H35.052|ICD10CM|Retinal neovascularization, unspecified, left eye|Retinal neovascularization, unspecified, left eye +C2880894|T046|AB|H35.053|ICD10CM|Retinal neovascularization, unspecified, bilateral|Retinal neovascularization, unspecified, bilateral +C2880894|T046|PT|H35.053|ICD10CM|Retinal neovascularization, unspecified, bilateral|Retinal neovascularization, unspecified, bilateral +C2976967|T047|AB|H35.059|ICD10CM|Retinal neovascularization, unspecified, unspecified eye|Retinal neovascularization, unspecified, unspecified eye +C2976967|T047|PT|H35.059|ICD10CM|Retinal neovascularization, unspecified, unspecified eye|Retinal neovascularization, unspecified, unspecified eye +C0271073|T047|ET|H35.06|ICD10CM|Eales disease|Eales disease +C0271073|T047|ET|H35.06|ICD10CM|Retinal perivasculitis|Retinal perivasculitis +C0152026|T047|HT|H35.06|ICD10CM|Retinal vasculitis|Retinal vasculitis +C0152026|T047|AB|H35.06|ICD10CM|Retinal vasculitis|Retinal vasculitis +C2187267|T047|AB|H35.061|ICD10CM|Retinal vasculitis, right eye|Retinal vasculitis, right eye +C2187267|T047|PT|H35.061|ICD10CM|Retinal vasculitis, right eye|Retinal vasculitis, right eye +C2187266|T047|AB|H35.062|ICD10CM|Retinal vasculitis, left eye|Retinal vasculitis, left eye +C2187266|T047|PT|H35.062|ICD10CM|Retinal vasculitis, left eye|Retinal vasculitis, left eye +C2187265|T047|AB|H35.063|ICD10CM|Retinal vasculitis, bilateral|Retinal vasculitis, bilateral +C2187265|T047|PT|H35.063|ICD10CM|Retinal vasculitis, bilateral|Retinal vasculitis, bilateral +C2880896|T047|AB|H35.069|ICD10CM|Retinal vasculitis, unspecified eye|Retinal vasculitis, unspecified eye +C2880896|T047|PT|H35.069|ICD10CM|Retinal vasculitis, unspecified eye|Retinal vasculitis, unspecified eye +C0154832|T047|AB|H35.07|ICD10CM|Retinal telangiectasis|Retinal telangiectasis +C0154832|T047|HT|H35.07|ICD10CM|Retinal telangiectasis|Retinal telangiectasis +C2880897|T047|AB|H35.071|ICD10CM|Retinal telangiectasis, right eye|Retinal telangiectasis, right eye +C2880897|T047|PT|H35.071|ICD10CM|Retinal telangiectasis, right eye|Retinal telangiectasis, right eye +C2880898|T047|AB|H35.072|ICD10CM|Retinal telangiectasis, left eye|Retinal telangiectasis, left eye +C2880898|T047|PT|H35.072|ICD10CM|Retinal telangiectasis, left eye|Retinal telangiectasis, left eye +C2880899|T047|AB|H35.073|ICD10CM|Retinal telangiectasis, bilateral|Retinal telangiectasis, bilateral +C2880899|T047|PT|H35.073|ICD10CM|Retinal telangiectasis, bilateral|Retinal telangiectasis, bilateral +C2880900|T047|AB|H35.079|ICD10CM|Retinal telangiectasis, unspecified eye|Retinal telangiectasis, unspecified eye +C2880900|T047|PT|H35.079|ICD10CM|Retinal telangiectasis, unspecified eye|Retinal telangiectasis, unspecified eye +C0154836|T047|AB|H35.09|ICD10CM|Other intraretinal microvascular abnormalities|Other intraretinal microvascular abnormalities +C0154836|T047|PT|H35.09|ICD10CM|Other intraretinal microvascular abnormalities|Other intraretinal microvascular abnormalities +C0271068|T047|ET|H35.09|ICD10CM|Retinal varices|Retinal varices +C0035344|T047|HT|H35.1|ICD10CM|Retinopathy of prematurity|Retinopathy of prematurity +C0035344|T047|AB|H35.1|ICD10CM|Retinopathy of prematurity|Retinopathy of prematurity +C0035344|T047|PT|H35.1|ICD10|Retinopathy of prematurity|Retinopathy of prematurity +C0035344|T047|ET|H35.10|ICD10CM|Retinopathy of prematurity NOS|Retinopathy of prematurity NOS +C0035344|T047|HT|H35.10|ICD10CM|Retinopathy of prematurity, unspecified|Retinopathy of prematurity, unspecified +C0035344|T047|AB|H35.10|ICD10CM|Retinopathy of prematurity, unspecified|Retinopathy of prematurity, unspecified +C2880901|T047|AB|H35.101|ICD10CM|Retinopathy of prematurity, unspecified, right eye|Retinopathy of prematurity, unspecified, right eye +C2880901|T047|PT|H35.101|ICD10CM|Retinopathy of prematurity, unspecified, right eye|Retinopathy of prematurity, unspecified, right eye +C2880902|T047|AB|H35.102|ICD10CM|Retinopathy of prematurity, unspecified, left eye|Retinopathy of prematurity, unspecified, left eye +C2880902|T047|PT|H35.102|ICD10CM|Retinopathy of prematurity, unspecified, left eye|Retinopathy of prematurity, unspecified, left eye +C2880903|T047|AB|H35.103|ICD10CM|Retinopathy of prematurity, unspecified, bilateral|Retinopathy of prematurity, unspecified, bilateral +C2880903|T047|PT|H35.103|ICD10CM|Retinopathy of prematurity, unspecified, bilateral|Retinopathy of prematurity, unspecified, bilateral +C2880904|T047|AB|H35.109|ICD10CM|Retinopathy of prematurity, unspecified, unspecified eye|Retinopathy of prematurity, unspecified, unspecified eye +C2880904|T047|PT|H35.109|ICD10CM|Retinopathy of prematurity, unspecified, unspecified eye|Retinopathy of prematurity, unspecified, unspecified eye +C3812410|T047|HT|H35.11|ICD10CM|Retinopathy of prematurity, stage 0|Retinopathy of prematurity, stage 0 +C3812410|T047|AB|H35.11|ICD10CM|Retinopathy of prematurity, stage 0|Retinopathy of prematurity, stage 0 +C2880905|T047|AB|H35.111|ICD10CM|Retinopathy of prematurity, stage 0, right eye|Retinopathy of prematurity, stage 0, right eye +C2880905|T047|PT|H35.111|ICD10CM|Retinopathy of prematurity, stage 0, right eye|Retinopathy of prematurity, stage 0, right eye +C2880906|T047|AB|H35.112|ICD10CM|Retinopathy of prematurity, stage 0, left eye|Retinopathy of prematurity, stage 0, left eye +C2880906|T047|PT|H35.112|ICD10CM|Retinopathy of prematurity, stage 0, left eye|Retinopathy of prematurity, stage 0, left eye +C2880907|T047|AB|H35.113|ICD10CM|Retinopathy of prematurity, stage 0, bilateral|Retinopathy of prematurity, stage 0, bilateral +C2880907|T047|PT|H35.113|ICD10CM|Retinopathy of prematurity, stage 0, bilateral|Retinopathy of prematurity, stage 0, bilateral +C2880908|T047|AB|H35.119|ICD10CM|Retinopathy of prematurity, stage 0, unspecified eye|Retinopathy of prematurity, stage 0, unspecified eye +C2880908|T047|PT|H35.119|ICD10CM|Retinopathy of prematurity, stage 0, unspecified eye|Retinopathy of prematurity, stage 0, unspecified eye +C1443381|T047|HT|H35.12|ICD10CM|Retinopathy of prematurity, stage 1|Retinopathy of prematurity, stage 1 +C1443381|T047|AB|H35.12|ICD10CM|Retinopathy of prematurity, stage 1|Retinopathy of prematurity, stage 1 +C2880909|T047|AB|H35.121|ICD10CM|Retinopathy of prematurity, stage 1, right eye|Retinopathy of prematurity, stage 1, right eye +C2880909|T047|PT|H35.121|ICD10CM|Retinopathy of prematurity, stage 1, right eye|Retinopathy of prematurity, stage 1, right eye +C2880910|T047|AB|H35.122|ICD10CM|Retinopathy of prematurity, stage 1, left eye|Retinopathy of prematurity, stage 1, left eye +C2880910|T047|PT|H35.122|ICD10CM|Retinopathy of prematurity, stage 1, left eye|Retinopathy of prematurity, stage 1, left eye +C2880911|T047|AB|H35.123|ICD10CM|Retinopathy of prematurity, stage 1, bilateral|Retinopathy of prematurity, stage 1, bilateral +C2880911|T047|PT|H35.123|ICD10CM|Retinopathy of prematurity, stage 1, bilateral|Retinopathy of prematurity, stage 1, bilateral +C2880912|T047|AB|H35.129|ICD10CM|Retinopathy of prematurity, stage 1, unspecified eye|Retinopathy of prematurity, stage 1, unspecified eye +C2880912|T047|PT|H35.129|ICD10CM|Retinopathy of prematurity, stage 1, unspecified eye|Retinopathy of prematurity, stage 1, unspecified eye +C1443382|T047|HT|H35.13|ICD10CM|Retinopathy of prematurity, stage 2|Retinopathy of prematurity, stage 2 +C1443382|T047|AB|H35.13|ICD10CM|Retinopathy of prematurity, stage 2|Retinopathy of prematurity, stage 2 +C2880913|T047|AB|H35.131|ICD10CM|Retinopathy of prematurity, stage 2, right eye|Retinopathy of prematurity, stage 2, right eye +C2880913|T047|PT|H35.131|ICD10CM|Retinopathy of prematurity, stage 2, right eye|Retinopathy of prematurity, stage 2, right eye +C2880914|T047|AB|H35.132|ICD10CM|Retinopathy of prematurity, stage 2, left eye|Retinopathy of prematurity, stage 2, left eye +C2880914|T047|PT|H35.132|ICD10CM|Retinopathy of prematurity, stage 2, left eye|Retinopathy of prematurity, stage 2, left eye +C2880915|T047|AB|H35.133|ICD10CM|Retinopathy of prematurity, stage 2, bilateral|Retinopathy of prematurity, stage 2, bilateral +C2880915|T047|PT|H35.133|ICD10CM|Retinopathy of prematurity, stage 2, bilateral|Retinopathy of prematurity, stage 2, bilateral +C2880916|T047|AB|H35.139|ICD10CM|Retinopathy of prematurity, stage 2, unspecified eye|Retinopathy of prematurity, stage 2, unspecified eye +C2880916|T047|PT|H35.139|ICD10CM|Retinopathy of prematurity, stage 2, unspecified eye|Retinopathy of prematurity, stage 2, unspecified eye +C1443383|T047|HT|H35.14|ICD10CM|Retinopathy of prematurity, stage 3|Retinopathy of prematurity, stage 3 +C1443383|T047|AB|H35.14|ICD10CM|Retinopathy of prematurity, stage 3|Retinopathy of prematurity, stage 3 +C2880917|T047|AB|H35.141|ICD10CM|Retinopathy of prematurity, stage 3, right eye|Retinopathy of prematurity, stage 3, right eye +C2880917|T047|PT|H35.141|ICD10CM|Retinopathy of prematurity, stage 3, right eye|Retinopathy of prematurity, stage 3, right eye +C2880918|T047|AB|H35.142|ICD10CM|Retinopathy of prematurity, stage 3, left eye|Retinopathy of prematurity, stage 3, left eye +C2880918|T047|PT|H35.142|ICD10CM|Retinopathy of prematurity, stage 3, left eye|Retinopathy of prematurity, stage 3, left eye +C2880919|T047|AB|H35.143|ICD10CM|Retinopathy of prematurity, stage 3, bilateral|Retinopathy of prematurity, stage 3, bilateral +C2880919|T047|PT|H35.143|ICD10CM|Retinopathy of prematurity, stage 3, bilateral|Retinopathy of prematurity, stage 3, bilateral +C2880920|T047|AB|H35.149|ICD10CM|Retinopathy of prematurity, stage 3, unspecified eye|Retinopathy of prematurity, stage 3, unspecified eye +C2880920|T047|PT|H35.149|ICD10CM|Retinopathy of prematurity, stage 3, unspecified eye|Retinopathy of prematurity, stage 3, unspecified eye +C1443384|T047|HT|H35.15|ICD10CM|Retinopathy of prematurity, stage 4|Retinopathy of prematurity, stage 4 +C1443384|T047|AB|H35.15|ICD10CM|Retinopathy of prematurity, stage 4|Retinopathy of prematurity, stage 4 +C2880921|T047|AB|H35.151|ICD10CM|Retinopathy of prematurity, stage 4, right eye|Retinopathy of prematurity, stage 4, right eye +C2880921|T047|PT|H35.151|ICD10CM|Retinopathy of prematurity, stage 4, right eye|Retinopathy of prematurity, stage 4, right eye +C2880922|T047|AB|H35.152|ICD10CM|Retinopathy of prematurity, stage 4, left eye|Retinopathy of prematurity, stage 4, left eye +C2880922|T047|PT|H35.152|ICD10CM|Retinopathy of prematurity, stage 4, left eye|Retinopathy of prematurity, stage 4, left eye +C2880923|T047|AB|H35.153|ICD10CM|Retinopathy of prematurity, stage 4, bilateral|Retinopathy of prematurity, stage 4, bilateral +C2880923|T047|PT|H35.153|ICD10CM|Retinopathy of prematurity, stage 4, bilateral|Retinopathy of prematurity, stage 4, bilateral +C2880924|T047|AB|H35.159|ICD10CM|Retinopathy of prematurity, stage 4, unspecified eye|Retinopathy of prematurity, stage 4, unspecified eye +C2880924|T047|PT|H35.159|ICD10CM|Retinopathy of prematurity, stage 4, unspecified eye|Retinopathy of prematurity, stage 4, unspecified eye +C1443385|T047|HT|H35.16|ICD10CM|Retinopathy of prematurity, stage 5|Retinopathy of prematurity, stage 5 +C1443385|T047|AB|H35.16|ICD10CM|Retinopathy of prematurity, stage 5|Retinopathy of prematurity, stage 5 +C2187303|T047|AB|H35.161|ICD10CM|Retinopathy of prematurity, stage 5, right eye|Retinopathy of prematurity, stage 5, right eye +C2187303|T047|PT|H35.161|ICD10CM|Retinopathy of prematurity, stage 5, right eye|Retinopathy of prematurity, stage 5, right eye +C2187298|T047|AB|H35.162|ICD10CM|Retinopathy of prematurity, stage 5, left eye|Retinopathy of prematurity, stage 5, left eye +C2187298|T047|PT|H35.162|ICD10CM|Retinopathy of prematurity, stage 5, left eye|Retinopathy of prematurity, stage 5, left eye +C2880925|T047|AB|H35.163|ICD10CM|Retinopathy of prematurity, stage 5, bilateral|Retinopathy of prematurity, stage 5, bilateral +C2880925|T047|PT|H35.163|ICD10CM|Retinopathy of prematurity, stage 5, bilateral|Retinopathy of prematurity, stage 5, bilateral +C2880926|T047|AB|H35.169|ICD10CM|Retinopathy of prematurity, stage 5, unspecified eye|Retinopathy of prematurity, stage 5, unspecified eye +C2880926|T047|PT|H35.169|ICD10CM|Retinopathy of prematurity, stage 5, unspecified eye|Retinopathy of prematurity, stage 5, unspecified eye +C0035344|T047|HT|H35.17|ICD10CM|Retrolental fibroplasia|Retrolental fibroplasia +C0035344|T047|AB|H35.17|ICD10CM|Retrolental fibroplasia|Retrolental fibroplasia +C2880927|T047|AB|H35.171|ICD10CM|Retrolental fibroplasia, right eye|Retrolental fibroplasia, right eye +C2880927|T047|PT|H35.171|ICD10CM|Retrolental fibroplasia, right eye|Retrolental fibroplasia, right eye +C2880928|T047|AB|H35.172|ICD10CM|Retrolental fibroplasia, left eye|Retrolental fibroplasia, left eye +C2880928|T047|PT|H35.172|ICD10CM|Retrolental fibroplasia, left eye|Retrolental fibroplasia, left eye +C2880929|T047|AB|H35.173|ICD10CM|Retrolental fibroplasia, bilateral|Retrolental fibroplasia, bilateral +C2880929|T047|PT|H35.173|ICD10CM|Retrolental fibroplasia, bilateral|Retrolental fibroplasia, bilateral +C2880930|T047|AB|H35.179|ICD10CM|Retrolental fibroplasia, unspecified eye|Retrolental fibroplasia, unspecified eye +C2880930|T047|PT|H35.179|ICD10CM|Retrolental fibroplasia, unspecified eye|Retrolental fibroplasia, unspecified eye +C0154838|T047|AB|H35.2|ICD10CM|Other non-diabetic proliferative retinopathy|Other non-diabetic proliferative retinopathy +C0154838|T047|HT|H35.2|ICD10CM|Other non-diabetic proliferative retinopathy|Other non-diabetic proliferative retinopathy +C0154837|T047|PT|H35.2|ICD10|Other proliferative retinopathy|Other proliferative retinopathy +C2880931|T047|ET|H35.2|ICD10CM|Proliferative vitreo-retinopathy|Proliferative vitreo-retinopathy +C2880933|T047|AB|H35.20|ICD10CM|Other non-diabetic proliferative retinopathy, unsp eye|Other non-diabetic proliferative retinopathy, unsp eye +C2880933|T047|PT|H35.20|ICD10CM|Other non-diabetic proliferative retinopathy, unspecified eye|Other non-diabetic proliferative retinopathy, unspecified eye +C2880934|T047|AB|H35.21|ICD10CM|Other non-diabetic proliferative retinopathy, right eye|Other non-diabetic proliferative retinopathy, right eye +C2880934|T047|PT|H35.21|ICD10CM|Other non-diabetic proliferative retinopathy, right eye|Other non-diabetic proliferative retinopathy, right eye +C2880935|T047|AB|H35.22|ICD10CM|Other non-diabetic proliferative retinopathy, left eye|Other non-diabetic proliferative retinopathy, left eye +C2880935|T047|PT|H35.22|ICD10CM|Other non-diabetic proliferative retinopathy, left eye|Other non-diabetic proliferative retinopathy, left eye +C2880936|T047|AB|H35.23|ICD10CM|Other non-diabetic proliferative retinopathy, bilateral|Other non-diabetic proliferative retinopathy, bilateral +C2880936|T047|PT|H35.23|ICD10CM|Other non-diabetic proliferative retinopathy, bilateral|Other non-diabetic proliferative retinopathy, bilateral +C0339436|T047|PT|H35.3|ICD10|Degeneration of macula and posterior pole|Degeneration of macula and posterior pole +C0339436|T047|HT|H35.3|ICD10CM|Degeneration of macula and posterior pole|Degeneration of macula and posterior pole +C0339436|T047|AB|H35.3|ICD10CM|Degeneration of macula and posterior pole|Degeneration of macula and posterior pole +C0242383|T047|ET|H35.30|ICD10CM|Age-related macular degeneration|Age-related macular degeneration +C3264146|T047|AB|H35.30|ICD10CM|Unspecified macular degeneration|Unspecified macular degeneration +C3264146|T047|PT|H35.30|ICD10CM|Unspecified macular degeneration|Unspecified macular degeneration +C0271083|T020|ET|H35.31|ICD10CM|Atrophic age-related macular degeneration|Atrophic age-related macular degeneration +C3888461|T190|ET|H35.31|ICD10CM|Dry age-related macular degeneration|Dry age-related macular degeneration +C0271083|T020|AB|H35.31|ICD10CM|Nonexudative age-related macular degeneration|Nonexudative age-related macular degeneration +C0271083|T020|HT|H35.31|ICD10CM|Nonexudative age-related macular degeneration|Nonexudative age-related macular degeneration +C4047849|T047|AB|H35.311|ICD10CM|Nonexudative age-related macular degeneration, right eye|Nonexudative age-related macular degeneration, right eye +C4047849|T047|HT|H35.311|ICD10CM|Nonexudative age-related macular degeneration, right eye|Nonexudative age-related macular degeneration, right eye +C4268356|T047|AB|H35.3110|ICD10CM|Nexdtve age-related mclr degn, right eye, stage unspecified|Nexdtve age-related mclr degn, right eye, stage unspecified +C4268356|T047|PT|H35.3110|ICD10CM|Nonexudative age-related macular degeneration, right eye, stage unspecified|Nonexudative age-related macular degeneration, right eye, stage unspecified +C4268357|T047|AB|H35.3111|ICD10CM|Nexdtve age-related mclr degn, right eye, early dry stage|Nexdtve age-related mclr degn, right eye, early dry stage +C4268357|T047|PT|H35.3111|ICD10CM|Nonexudative age-related macular degeneration, right eye, early dry stage|Nonexudative age-related macular degeneration, right eye, early dry stage +C4268358|T047|AB|H35.3112|ICD10CM|Nexdtve age-related mclr degn, right eye, intermed dry stage|Nexdtve age-related mclr degn, right eye, intermed dry stage +C4268358|T047|PT|H35.3112|ICD10CM|Nonexudative age-related macular degeneration, right eye, intermediate dry stage|Nonexudative age-related macular degeneration, right eye, intermediate dry stage +C4268359|T047|AB|H35.3113|ICD10CM|Nexdtve age-rel mclr degn, r eye, adv atrpc w/o sbfvl invl|Nexdtve age-rel mclr degn, r eye, adv atrpc w/o sbfvl invl +C4268360|T047|AB|H35.3114|ICD10CM|Nexdtve age-rel mclr degn, r eye, adv atrpc with sbfvl invl|Nexdtve age-rel mclr degn, r eye, adv atrpc with sbfvl invl +C4047848|T047|AB|H35.312|ICD10CM|Nonexudative age-related macular degeneration, left eye|Nonexudative age-related macular degeneration, left eye +C4047848|T047|HT|H35.312|ICD10CM|Nonexudative age-related macular degeneration, left eye|Nonexudative age-related macular degeneration, left eye +C4268361|T047|AB|H35.3120|ICD10CM|Nexdtve age-related mclr degn, left eye, stage unspecified|Nexdtve age-related mclr degn, left eye, stage unspecified +C4268361|T047|PT|H35.3120|ICD10CM|Nonexudative age-related macular degeneration, left eye, stage unspecified|Nonexudative age-related macular degeneration, left eye, stage unspecified +C4268362|T047|AB|H35.3121|ICD10CM|Nexdtve age-related mclr degn, left eye, early dry stage|Nexdtve age-related mclr degn, left eye, early dry stage +C4268362|T047|PT|H35.3121|ICD10CM|Nonexudative age-related macular degeneration, left eye, early dry stage|Nonexudative age-related macular degeneration, left eye, early dry stage +C4268363|T047|AB|H35.3122|ICD10CM|Nexdtve age-related mclr degn, left eye, intermed dry stage|Nexdtve age-related mclr degn, left eye, intermed dry stage +C4268363|T047|PT|H35.3122|ICD10CM|Nonexudative age-related macular degeneration, left eye, intermediate dry stage|Nonexudative age-related macular degeneration, left eye, intermediate dry stage +C4268364|T047|AB|H35.3123|ICD10CM|Nexdtve age-rel mclr degn, l eye, adv atrpc w/o sbfvl invl|Nexdtve age-rel mclr degn, l eye, adv atrpc w/o sbfvl invl +C4268365|T047|AB|H35.3124|ICD10CM|Nexdtve age-rel mclr degn, l eye, adv atrpc with sbfvl invl|Nexdtve age-rel mclr degn, l eye, adv atrpc with sbfvl invl +C4047850|T047|AB|H35.313|ICD10CM|Nonexudative age-related macular degeneration, bilateral|Nonexudative age-related macular degeneration, bilateral +C4047850|T047|HT|H35.313|ICD10CM|Nonexudative age-related macular degeneration, bilateral|Nonexudative age-related macular degeneration, bilateral +C4268366|T047|AB|H35.3130|ICD10CM|Nexdtve age-related mclr degn, bilateral, stage unspecified|Nexdtve age-related mclr degn, bilateral, stage unspecified +C4268366|T047|PT|H35.3130|ICD10CM|Nonexudative age-related macular degeneration, bilateral, stage unspecified|Nonexudative age-related macular degeneration, bilateral, stage unspecified +C4268367|T047|AB|H35.3131|ICD10CM|Nexdtve age-related mclr degn, bilateral, early dry stage|Nexdtve age-related mclr degn, bilateral, early dry stage +C4268367|T047|PT|H35.3131|ICD10CM|Nonexudative age-related macular degeneration, bilateral, early dry stage|Nonexudative age-related macular degeneration, bilateral, early dry stage +C4268368|T047|AB|H35.3132|ICD10CM|Nexdtve age-related mclr degn, bilateral, intermed dry stage|Nexdtve age-related mclr degn, bilateral, intermed dry stage +C4268368|T047|PT|H35.3132|ICD10CM|Nonexudative age-related macular degeneration, bilateral, intermediate dry stage|Nonexudative age-related macular degeneration, bilateral, intermediate dry stage +C4268369|T047|AB|H35.3133|ICD10CM|Nexdtve age-rel mclr degn, bi, adv atrpc without sbfvl invl|Nexdtve age-rel mclr degn, bi, adv atrpc without sbfvl invl +C4268370|T047|AB|H35.3134|ICD10CM|Nexdtve age-rel mclr degn, bi, adv atrpc with subfoveal invl|Nexdtve age-rel mclr degn, bi, adv atrpc with subfoveal invl +C4268371|T020|HT|H35.319|ICD10CM|Nonexudative age-related macular degeneration, unspecified eye|Nonexudative age-related macular degeneration, unspecified eye +C4268371|T020|AB|H35.319|ICD10CM|Nonexudative age-related mclr degn, unspecified eye|Nonexudative age-related mclr degn, unspecified eye +C4268372|T020|PT|H35.3190|ICD10CM|Nonexudative age-related macular degeneration, unspecified eye, stage unspecified|Nonexudative age-related macular degeneration, unspecified eye, stage unspecified +C4268372|T020|AB|H35.3190|ICD10CM|Nonexudative age-related mclr degn, unsp, stage unspecified|Nonexudative age-related mclr degn, unsp, stage unspecified +C4268373|T020|PT|H35.3191|ICD10CM|Nonexudative age-related macular degeneration, unspecified eye, early dry stage|Nonexudative age-related macular degeneration, unspecified eye, early dry stage +C4268373|T020|AB|H35.3191|ICD10CM|Nonexudative age-related mclr degn, unsp, early dry stage|Nonexudative age-related mclr degn, unsp, early dry stage +C4268374|T020|PT|H35.3192|ICD10CM|Nonexudative age-related macular degeneration, unspecified eye, intermediate dry stage|Nonexudative age-related macular degeneration, unspecified eye, intermediate dry stage +C4268374|T020|AB|H35.3192|ICD10CM|Nonexudative age-related mclr degn, unsp, intermed dry stage|Nonexudative age-related mclr degn, unsp, intermed dry stage +C4268375|T020|AB|H35.3193|ICD10CM|Nexdtve age-rel mclr degn, unsp, adv atrpc w/o sbfvl invl|Nexdtve age-rel mclr degn, unsp, adv atrpc w/o sbfvl invl +C4268376|T020|AB|H35.3194|ICD10CM|Nexdtve age-rel mclr degn, unsp, adv atrpc with sbfvl invl|Nexdtve age-rel mclr degn, unsp, adv atrpc with sbfvl invl +C0271084|T047|AB|H35.32|ICD10CM|Exudative age-related macular degeneration|Exudative age-related macular degeneration +C0271084|T047|HT|H35.32|ICD10CM|Exudative age-related macular degeneration|Exudative age-related macular degeneration +C3888896|T047|ET|H35.32|ICD10CM|Wet age-related macular degeneration|Wet age-related macular degeneration +C4047846|T047|AB|H35.321|ICD10CM|Exudative age-related macular degeneration, right eye|Exudative age-related macular degeneration, right eye +C4047846|T047|HT|H35.321|ICD10CM|Exudative age-related macular degeneration, right eye|Exudative age-related macular degeneration, right eye +C4268377|T047|AB|H35.3210|ICD10CM|Exudative age-rel mclr degn, right eye, stage unspecified|Exudative age-rel mclr degn, right eye, stage unspecified +C4268377|T047|PT|H35.3210|ICD10CM|Exudative age-related macular degeneration, right eye, stage unspecified|Exudative age-related macular degeneration, right eye, stage unspecified +C4268378|T047|AB|H35.3211|ICD10CM|Exdtve age-rel mclr degn, right eye, with actv chrdl neovas|Exdtve age-rel mclr degn, right eye, with actv chrdl neovas +C4268378|T047|PT|H35.3211|ICD10CM|Exudative age-related macular degeneration, right eye, with active choroidal neovascularization|Exudative age-related macular degeneration, right eye, with active choroidal neovascularization +C4268379|T047|AB|H35.3212|ICD10CM|Exdtve age-rel mclr degn, right eye, with inact chrdl neovas|Exdtve age-rel mclr degn, right eye, with inact chrdl neovas +C4268379|T047|PT|H35.3212|ICD10CM|Exudative age-related macular degeneration, right eye, with inactive choroidal neovascularization|Exudative age-related macular degeneration, right eye, with inactive choroidal neovascularization +C4268380|T047|AB|H35.3213|ICD10CM|Exudative age-rel mclr degn, right eye, with inactive scar|Exudative age-rel mclr degn, right eye, with inactive scar +C4268380|T047|PT|H35.3213|ICD10CM|Exudative age-related macular degeneration, right eye, with inactive scar|Exudative age-related macular degeneration, right eye, with inactive scar +C4047845|T047|AB|H35.322|ICD10CM|Exudative age-related macular degeneration, left eye|Exudative age-related macular degeneration, left eye +C4047845|T047|HT|H35.322|ICD10CM|Exudative age-related macular degeneration, left eye|Exudative age-related macular degeneration, left eye +C4268381|T047|PT|H35.3220|ICD10CM|Exudative age-related macular degeneration, left eye, stage unspecified|Exudative age-related macular degeneration, left eye, stage unspecified +C4268381|T047|AB|H35.3220|ICD10CM|Exudative age-related mclr degn, left eye, stage unspecified|Exudative age-related mclr degn, left eye, stage unspecified +C4268382|T047|AB|H35.3221|ICD10CM|Exdtve age-rel mclr degn, left eye, with actv chrdl neovas|Exdtve age-rel mclr degn, left eye, with actv chrdl neovas +C4268382|T047|PT|H35.3221|ICD10CM|Exudative age-related macular degeneration, left eye, with active choroidal neovascularization|Exudative age-related macular degeneration, left eye, with active choroidal neovascularization +C4268383|T047|AB|H35.3222|ICD10CM|Exdtve age-rel mclr degn, left eye, with inact chrdl neovas|Exdtve age-rel mclr degn, left eye, with inact chrdl neovas +C4268383|T047|PT|H35.3222|ICD10CM|Exudative age-related macular degeneration, left eye, with inactive choroidal neovascularization|Exudative age-related macular degeneration, left eye, with inactive choroidal neovascularization +C4268384|T047|AB|H35.3223|ICD10CM|Exudative age-rel mclr degn, left eye, with inactive scar|Exudative age-rel mclr degn, left eye, with inactive scar +C4268384|T047|PT|H35.3223|ICD10CM|Exudative age-related macular degeneration, left eye, with inactive scar|Exudative age-related macular degeneration, left eye, with inactive scar +C4268385|T047|AB|H35.323|ICD10CM|Exudative age-related macular degeneration, bilateral|Exudative age-related macular degeneration, bilateral +C4268385|T047|HT|H35.323|ICD10CM|Exudative age-related macular degeneration, bilateral|Exudative age-related macular degeneration, bilateral +C4268386|T047|AB|H35.3230|ICD10CM|Exudative age-rel mclr degn, bilateral, stage unspecified|Exudative age-rel mclr degn, bilateral, stage unspecified +C4268386|T047|PT|H35.3230|ICD10CM|Exudative age-related macular degeneration, bilateral, stage unspecified|Exudative age-related macular degeneration, bilateral, stage unspecified +C4268387|T047|AB|H35.3231|ICD10CM|Exudative age-rel mclr degn, bi, with actv chrdl neovas|Exudative age-rel mclr degn, bi, with actv chrdl neovas +C4268387|T047|PT|H35.3231|ICD10CM|Exudative age-related macular degeneration, bilateral, with active choroidal neovascularization|Exudative age-related macular degeneration, bilateral, with active choroidal neovascularization +C4268388|T047|AB|H35.3232|ICD10CM|Exudative age-rel mclr degn, bi, with inact chrdl neovas|Exudative age-rel mclr degn, bi, with inact chrdl neovas +C4268388|T047|PT|H35.3232|ICD10CM|Exudative age-related macular degeneration, bilateral, with inactive choroidal neovascularization|Exudative age-related macular degeneration, bilateral, with inactive choroidal neovascularization +C4268389|T047|AB|H35.3233|ICD10CM|Exudative age-rel mclr degn, bilateral, with inactive scar|Exudative age-rel mclr degn, bilateral, with inactive scar +C4268389|T047|PT|H35.3233|ICD10CM|Exudative age-related macular degeneration, bilateral, with inactive scar|Exudative age-related macular degeneration, bilateral, with inactive scar +C4268390|T047|AB|H35.329|ICD10CM|Exudative age-related macular degeneration, unspecified eye|Exudative age-related macular degeneration, unspecified eye +C4268390|T047|HT|H35.329|ICD10CM|Exudative age-related macular degeneration, unspecified eye|Exudative age-related macular degeneration, unspecified eye +C4268391|T047|PT|H35.3290|ICD10CM|Exudative age-related macular degeneration, unspecified eye, stage unspecified|Exudative age-related macular degeneration, unspecified eye, stage unspecified +C4268391|T047|AB|H35.3290|ICD10CM|Exudative age-related mclr degn, unsp, stage unspecified|Exudative age-related mclr degn, unsp, stage unspecified +C4268392|T047|AB|H35.3291|ICD10CM|Exudative age-rel mclr degn, unsp, with actv chrdl neovas|Exudative age-rel mclr degn, unsp, with actv chrdl neovas +C4268393|T047|AB|H35.3292|ICD10CM|Exudative age-rel mclr degn, unsp, with inact chrdl neovas|Exudative age-rel mclr degn, unsp, with inact chrdl neovas +C4268394|T047|PT|H35.3293|ICD10CM|Exudative age-related macular degeneration, unspecified eye, with inactive scar|Exudative age-related macular degeneration, unspecified eye, with inactive scar +C4268394|T047|AB|H35.3293|ICD10CM|Exudative age-related mclr degn, unsp, with inactive scar|Exudative age-related mclr degn, unsp, with inactive scar +C2880938|T047|AB|H35.33|ICD10CM|Angioid streaks of macula|Angioid streaks of macula +C2880938|T047|PT|H35.33|ICD10CM|Angioid streaks of macula|Angioid streaks of macula +C1261331|T047|HT|H35.34|ICD10CM|Macular cyst, hole, or pseudohole|Macular cyst, hole, or pseudohole +C1261331|T047|AB|H35.34|ICD10CM|Macular cyst, hole, or pseudohole|Macular cyst, hole, or pseudohole +C2880940|T047|AB|H35.341|ICD10CM|Macular cyst, hole, or pseudohole, right eye|Macular cyst, hole, or pseudohole, right eye +C2880940|T047|PT|H35.341|ICD10CM|Macular cyst, hole, or pseudohole, right eye|Macular cyst, hole, or pseudohole, right eye +C2880941|T047|AB|H35.342|ICD10CM|Macular cyst, hole, or pseudohole, left eye|Macular cyst, hole, or pseudohole, left eye +C2880941|T047|PT|H35.342|ICD10CM|Macular cyst, hole, or pseudohole, left eye|Macular cyst, hole, or pseudohole, left eye +C2880942|T047|AB|H35.343|ICD10CM|Macular cyst, hole, or pseudohole, bilateral|Macular cyst, hole, or pseudohole, bilateral +C2880942|T047|PT|H35.343|ICD10CM|Macular cyst, hole, or pseudohole, bilateral|Macular cyst, hole, or pseudohole, bilateral +C2880943|T047|AB|H35.349|ICD10CM|Macular cyst, hole, or pseudohole, unspecified eye|Macular cyst, hole, or pseudohole, unspecified eye +C2880943|T047|PT|H35.349|ICD10CM|Macular cyst, hole, or pseudohole, unspecified eye|Macular cyst, hole, or pseudohole, unspecified eye +C0154850|T047|HT|H35.35|ICD10CM|Cystoid macular degeneration|Cystoid macular degeneration +C0154850|T047|AB|H35.35|ICD10CM|Cystoid macular degeneration|Cystoid macular degeneration +C2880944|T047|AB|H35.351|ICD10CM|Cystoid macular degeneration, right eye|Cystoid macular degeneration, right eye +C2880944|T047|PT|H35.351|ICD10CM|Cystoid macular degeneration, right eye|Cystoid macular degeneration, right eye +C2880945|T047|AB|H35.352|ICD10CM|Cystoid macular degeneration, left eye|Cystoid macular degeneration, left eye +C2880945|T047|PT|H35.352|ICD10CM|Cystoid macular degeneration, left eye|Cystoid macular degeneration, left eye +C2880946|T047|AB|H35.353|ICD10CM|Cystoid macular degeneration, bilateral|Cystoid macular degeneration, bilateral +C2880946|T047|PT|H35.353|ICD10CM|Cystoid macular degeneration, bilateral|Cystoid macular degeneration, bilateral +C2880947|T047|AB|H35.359|ICD10CM|Cystoid macular degeneration, unspecified eye|Cystoid macular degeneration, unspecified eye +C2880947|T047|PT|H35.359|ICD10CM|Cystoid macular degeneration, unspecified eye|Cystoid macular degeneration, unspecified eye +C2880948|T047|AB|H35.36|ICD10CM|Drusen (degenerative) of macula|Drusen (degenerative) of macula +C2880948|T047|HT|H35.36|ICD10CM|Drusen (degenerative) of macula|Drusen (degenerative) of macula +C2880949|T047|AB|H35.361|ICD10CM|Drusen (degenerative) of macula, right eye|Drusen (degenerative) of macula, right eye +C2880949|T047|PT|H35.361|ICD10CM|Drusen (degenerative) of macula, right eye|Drusen (degenerative) of macula, right eye +C2880950|T047|AB|H35.362|ICD10CM|Drusen (degenerative) of macula, left eye|Drusen (degenerative) of macula, left eye +C2880950|T047|PT|H35.362|ICD10CM|Drusen (degenerative) of macula, left eye|Drusen (degenerative) of macula, left eye +C2880951|T047|AB|H35.363|ICD10CM|Drusen (degenerative) of macula, bilateral|Drusen (degenerative) of macula, bilateral +C2880951|T047|PT|H35.363|ICD10CM|Drusen (degenerative) of macula, bilateral|Drusen (degenerative) of macula, bilateral +C2880952|T047|AB|H35.369|ICD10CM|Drusen (degenerative) of macula, unspecified eye|Drusen (degenerative) of macula, unspecified eye +C2880952|T047|PT|H35.369|ICD10CM|Drusen (degenerative) of macula, unspecified eye|Drusen (degenerative) of macula, unspecified eye +C1405686|T047|AB|H35.37|ICD10CM|Puckering of macula|Puckering of macula +C1405686|T047|HT|H35.37|ICD10CM|Puckering of macula|Puckering of macula +C2880953|T047|AB|H35.371|ICD10CM|Puckering of macula, right eye|Puckering of macula, right eye +C2880953|T047|PT|H35.371|ICD10CM|Puckering of macula, right eye|Puckering of macula, right eye +C2880954|T047|AB|H35.372|ICD10CM|Puckering of macula, left eye|Puckering of macula, left eye +C2880954|T047|PT|H35.372|ICD10CM|Puckering of macula, left eye|Puckering of macula, left eye +C2880955|T047|AB|H35.373|ICD10CM|Puckering of macula, bilateral|Puckering of macula, bilateral +C2880955|T047|PT|H35.373|ICD10CM|Puckering of macula, bilateral|Puckering of macula, bilateral +C2880956|T047|AB|H35.379|ICD10CM|Puckering of macula, unspecified eye|Puckering of macula, unspecified eye +C2880956|T047|PT|H35.379|ICD10CM|Puckering of macula, unspecified eye|Puckering of macula, unspecified eye +C0271086|T047|HT|H35.38|ICD10CM|Toxic maculopathy|Toxic maculopathy +C0271086|T047|AB|H35.38|ICD10CM|Toxic maculopathy|Toxic maculopathy +C2145008|T047|AB|H35.381|ICD10CM|Toxic maculopathy, right eye|Toxic maculopathy, right eye +C2145008|T047|PT|H35.381|ICD10CM|Toxic maculopathy, right eye|Toxic maculopathy, right eye +C2145007|T047|AB|H35.382|ICD10CM|Toxic maculopathy, left eye|Toxic maculopathy, left eye +C2145007|T047|PT|H35.382|ICD10CM|Toxic maculopathy, left eye|Toxic maculopathy, left eye +C2880957|T047|AB|H35.383|ICD10CM|Toxic maculopathy, bilateral|Toxic maculopathy, bilateral +C2880957|T047|PT|H35.383|ICD10CM|Toxic maculopathy, bilateral|Toxic maculopathy, bilateral +C2880958|T047|AB|H35.389|ICD10CM|Toxic maculopathy, unspecified eye|Toxic maculopathy, unspecified eye +C2880958|T047|PT|H35.389|ICD10CM|Toxic maculopathy, unspecified eye|Toxic maculopathy, unspecified eye +C1320640|T047|PT|H35.4|ICD10|Peripheral retinal degeneration|Peripheral retinal degeneration +C1320640|T047|HT|H35.4|ICD10CM|Peripheral retinal degeneration|Peripheral retinal degeneration +C1320640|T047|AB|H35.4|ICD10CM|Peripheral retinal degeneration|Peripheral retinal degeneration +C1320640|T047|AB|H35.40|ICD10CM|Unspecified peripheral retinal degeneration|Unspecified peripheral retinal degeneration +C1320640|T047|PT|H35.40|ICD10CM|Unspecified peripheral retinal degeneration|Unspecified peripheral retinal degeneration +C0154856|T047|HT|H35.41|ICD10CM|Lattice degeneration of retina|Lattice degeneration of retina +C0154856|T047|AB|H35.41|ICD10CM|Lattice degeneration of retina|Lattice degeneration of retina +C0154856|T047|ET|H35.41|ICD10CM|Palisade degeneration of retina|Palisade degeneration of retina +C2880959|T047|AB|H35.411|ICD10CM|Lattice degeneration of retina, right eye|Lattice degeneration of retina, right eye +C2880959|T047|PT|H35.411|ICD10CM|Lattice degeneration of retina, right eye|Lattice degeneration of retina, right eye +C2880960|T047|AB|H35.412|ICD10CM|Lattice degeneration of retina, left eye|Lattice degeneration of retina, left eye +C2880960|T047|PT|H35.412|ICD10CM|Lattice degeneration of retina, left eye|Lattice degeneration of retina, left eye +C2880961|T047|AB|H35.413|ICD10CM|Lattice degeneration of retina, bilateral|Lattice degeneration of retina, bilateral +C2880961|T047|PT|H35.413|ICD10CM|Lattice degeneration of retina, bilateral|Lattice degeneration of retina, bilateral +C2880962|T047|AB|H35.419|ICD10CM|Lattice degeneration of retina, unspecified eye|Lattice degeneration of retina, unspecified eye +C2880962|T047|PT|H35.419|ICD10CM|Lattice degeneration of retina, unspecified eye|Lattice degeneration of retina, unspecified eye +C0154855|T047|HT|H35.42|ICD10CM|Microcystoid degeneration of retina|Microcystoid degeneration of retina +C0154855|T047|AB|H35.42|ICD10CM|Microcystoid degeneration of retina|Microcystoid degeneration of retina +C2880963|T047|AB|H35.421|ICD10CM|Microcystoid degeneration of retina, right eye|Microcystoid degeneration of retina, right eye +C2880963|T047|PT|H35.421|ICD10CM|Microcystoid degeneration of retina, right eye|Microcystoid degeneration of retina, right eye +C2880964|T047|AB|H35.422|ICD10CM|Microcystoid degeneration of retina, left eye|Microcystoid degeneration of retina, left eye +C2880964|T047|PT|H35.422|ICD10CM|Microcystoid degeneration of retina, left eye|Microcystoid degeneration of retina, left eye +C2880965|T047|AB|H35.423|ICD10CM|Microcystoid degeneration of retina, bilateral|Microcystoid degeneration of retina, bilateral +C2880965|T047|PT|H35.423|ICD10CM|Microcystoid degeneration of retina, bilateral|Microcystoid degeneration of retina, bilateral +C2880966|T047|AB|H35.429|ICD10CM|Microcystoid degeneration of retina, unspecified eye|Microcystoid degeneration of retina, unspecified eye +C2880966|T047|PT|H35.429|ICD10CM|Microcystoid degeneration of retina, unspecified eye|Microcystoid degeneration of retina, unspecified eye +C0154854|T047|HT|H35.43|ICD10CM|Paving stone degeneration of retina|Paving stone degeneration of retina +C0154854|T047|AB|H35.43|ICD10CM|Paving stone degeneration of retina|Paving stone degeneration of retina +C2880967|T047|AB|H35.431|ICD10CM|Paving stone degeneration of retina, right eye|Paving stone degeneration of retina, right eye +C2880967|T047|PT|H35.431|ICD10CM|Paving stone degeneration of retina, right eye|Paving stone degeneration of retina, right eye +C2880968|T047|AB|H35.432|ICD10CM|Paving stone degeneration of retina, left eye|Paving stone degeneration of retina, left eye +C2880968|T047|PT|H35.432|ICD10CM|Paving stone degeneration of retina, left eye|Paving stone degeneration of retina, left eye +C2880969|T047|AB|H35.433|ICD10CM|Paving stone degeneration of retina, bilateral|Paving stone degeneration of retina, bilateral +C2880969|T047|PT|H35.433|ICD10CM|Paving stone degeneration of retina, bilateral|Paving stone degeneration of retina, bilateral +C2880970|T047|AB|H35.439|ICD10CM|Paving stone degeneration of retina, unspecified eye|Paving stone degeneration of retina, unspecified eye +C2880970|T047|PT|H35.439|ICD10CM|Paving stone degeneration of retina, unspecified eye|Paving stone degeneration of retina, unspecified eye +C2880971|T047|AB|H35.44|ICD10CM|Age-related reticular degeneration of retina|Age-related reticular degeneration of retina +C2880971|T047|HT|H35.44|ICD10CM|Age-related reticular degeneration of retina|Age-related reticular degeneration of retina +C2880972|T047|AB|H35.441|ICD10CM|Age-related reticular degeneration of retina, right eye|Age-related reticular degeneration of retina, right eye +C2880972|T047|PT|H35.441|ICD10CM|Age-related reticular degeneration of retina, right eye|Age-related reticular degeneration of retina, right eye +C2880973|T047|AB|H35.442|ICD10CM|Age-related reticular degeneration of retina, left eye|Age-related reticular degeneration of retina, left eye +C2880973|T047|PT|H35.442|ICD10CM|Age-related reticular degeneration of retina, left eye|Age-related reticular degeneration of retina, left eye +C2880974|T047|AB|H35.443|ICD10CM|Age-related reticular degeneration of retina, bilateral|Age-related reticular degeneration of retina, bilateral +C2880974|T047|PT|H35.443|ICD10CM|Age-related reticular degeneration of retina, bilateral|Age-related reticular degeneration of retina, bilateral +C2880975|T047|AB|H35.449|ICD10CM|Age-related reticular degeneration of retina, unsp eye|Age-related reticular degeneration of retina, unsp eye +C2880975|T047|PT|H35.449|ICD10CM|Age-related reticular degeneration of retina, unspecified eye|Age-related reticular degeneration of retina, unspecified eye +C0154858|T047|HT|H35.45|ICD10CM|Secondary pigmentary degeneration|Secondary pigmentary degeneration +C0154858|T047|AB|H35.45|ICD10CM|Secondary pigmentary degeneration|Secondary pigmentary degeneration +C2880977|T047|AB|H35.451|ICD10CM|Secondary pigmentary degeneration, right eye|Secondary pigmentary degeneration, right eye +C2880977|T047|PT|H35.451|ICD10CM|Secondary pigmentary degeneration, right eye|Secondary pigmentary degeneration, right eye +C2880978|T047|AB|H35.452|ICD10CM|Secondary pigmentary degeneration, left eye|Secondary pigmentary degeneration, left eye +C2880978|T047|PT|H35.452|ICD10CM|Secondary pigmentary degeneration, left eye|Secondary pigmentary degeneration, left eye +C2880979|T047|AB|H35.453|ICD10CM|Secondary pigmentary degeneration, bilateral|Secondary pigmentary degeneration, bilateral +C2880979|T047|PT|H35.453|ICD10CM|Secondary pigmentary degeneration, bilateral|Secondary pigmentary degeneration, bilateral +C2880980|T047|AB|H35.459|ICD10CM|Secondary pigmentary degeneration, unspecified eye|Secondary pigmentary degeneration, unspecified eye +C2880980|T047|PT|H35.459|ICD10CM|Secondary pigmentary degeneration, unspecified eye|Secondary pigmentary degeneration, unspecified eye +C0154859|T047|HT|H35.46|ICD10CM|Secondary vitreoretinal degeneration|Secondary vitreoretinal degeneration +C0154859|T047|AB|H35.46|ICD10CM|Secondary vitreoretinal degeneration|Secondary vitreoretinal degeneration +C2880981|T047|AB|H35.461|ICD10CM|Secondary vitreoretinal degeneration, right eye|Secondary vitreoretinal degeneration, right eye +C2880981|T047|PT|H35.461|ICD10CM|Secondary vitreoretinal degeneration, right eye|Secondary vitreoretinal degeneration, right eye +C2880982|T047|AB|H35.462|ICD10CM|Secondary vitreoretinal degeneration, left eye|Secondary vitreoretinal degeneration, left eye +C2880982|T047|PT|H35.462|ICD10CM|Secondary vitreoretinal degeneration, left eye|Secondary vitreoretinal degeneration, left eye +C2880983|T047|AB|H35.463|ICD10CM|Secondary vitreoretinal degeneration, bilateral|Secondary vitreoretinal degeneration, bilateral +C2880983|T047|PT|H35.463|ICD10CM|Secondary vitreoretinal degeneration, bilateral|Secondary vitreoretinal degeneration, bilateral +C2880984|T047|AB|H35.469|ICD10CM|Secondary vitreoretinal degeneration, unspecified eye|Secondary vitreoretinal degeneration, unspecified eye +C2880984|T047|PT|H35.469|ICD10CM|Secondary vitreoretinal degeneration, unspecified eye|Secondary vitreoretinal degeneration, unspecified eye +C0154860|T047|HT|H35.5|ICD10CM|Hereditary retinal dystrophy|Hereditary retinal dystrophy +C0154860|T047|AB|H35.5|ICD10CM|Hereditary retinal dystrophy|Hereditary retinal dystrophy +C0154860|T047|PT|H35.5|ICD10|Hereditary retinal dystrophy|Hereditary retinal dystrophy +C0154860|T047|AB|H35.50|ICD10CM|Unspecified hereditary retinal dystrophy|Unspecified hereditary retinal dystrophy +C0154860|T047|PT|H35.50|ICD10CM|Unspecified hereditary retinal dystrophy|Unspecified hereditary retinal dystrophy +C0154863|T047|PT|H35.51|ICD10CM|Vitreoretinal dystrophy|Vitreoretinal dystrophy +C0154863|T047|AB|H35.51|ICD10CM|Vitreoretinal dystrophy|Vitreoretinal dystrophy +C4551633|T047|ET|H35.52|ICD10CM|Albipunctate retinal dystrophy|Albipunctate retinal dystrophy +C4551633|T047|PT|H35.52|ICD10CM|Pigmentary retinal dystrophy|Pigmentary retinal dystrophy +C4551633|T047|AB|H35.52|ICD10CM|Pigmentary retinal dystrophy|Pigmentary retinal dystrophy +C0035334|T047|ET|H35.52|ICD10CM|Retinitis pigmentosa|Retinitis pigmentosa +C0339523|T019|ET|H35.52|ICD10CM|Tapetoretinal dystrophy|Tapetoretinal dystrophy +C0154864|T047|AB|H35.53|ICD10CM|Other dystrophies primarily involving the sensory retina|Other dystrophies primarily involving the sensory retina +C0154864|T047|PT|H35.53|ICD10CM|Other dystrophies primarily involving the sensory retina|Other dystrophies primarily involving the sensory retina +C0271093|T047|ET|H35.53|ICD10CM|Stargardt's disease|Stargardt's disease +C0154865|T047|PT|H35.54|ICD10CM|Dystrophies primarily involving the retinal pigment epithelium|Dystrophies primarily involving the retinal pigment epithelium +C0154865|T047|AB|H35.54|ICD10CM|Dystrophies primarily w the retinal pigment epithelium|Dystrophies primarily w the retinal pigment epithelium +C2880985|T047|ET|H35.54|ICD10CM|Vitelliform retinal dystrophy|Vitelliform retinal dystrophy +C0035317|T047|PT|H35.6|ICD10|Retinal haemorrhage|Retinal haemorrhage +C0035317|T047|HT|H35.6|ICD10CM|Retinal hemorrhage|Retinal hemorrhage +C0035317|T047|AB|H35.6|ICD10CM|Retinal hemorrhage|Retinal hemorrhage +C0035317|T047|PT|H35.6|ICD10AE|Retinal hemorrhage|Retinal hemorrhage +C0035317|T047|AB|H35.60|ICD10CM|Retinal hemorrhage, unspecified eye|Retinal hemorrhage, unspecified eye +C0035317|T047|PT|H35.60|ICD10CM|Retinal hemorrhage, unspecified eye|Retinal hemorrhage, unspecified eye +C2880986|T046|AB|H35.61|ICD10CM|Retinal hemorrhage, right eye|Retinal hemorrhage, right eye +C2880986|T046|PT|H35.61|ICD10CM|Retinal hemorrhage, right eye|Retinal hemorrhage, right eye +C2880987|T046|AB|H35.62|ICD10CM|Retinal hemorrhage, left eye|Retinal hemorrhage, left eye +C2880987|T046|PT|H35.62|ICD10CM|Retinal hemorrhage, left eye|Retinal hemorrhage, left eye +C2880988|T046|AB|H35.63|ICD10CM|Retinal hemorrhage, bilateral|Retinal hemorrhage, bilateral +C2880988|T046|PT|H35.63|ICD10CM|Retinal hemorrhage, bilateral|Retinal hemorrhage, bilateral +C0154844|T020|HT|H35.7|ICD10CM|Separation of retinal layers|Separation of retinal layers +C0154844|T020|AB|H35.7|ICD10CM|Separation of retinal layers|Separation of retinal layers +C0154844|T020|PT|H35.7|ICD10|Separation of retinal layers|Separation of retinal layers +C0154844|T020|AB|H35.70|ICD10CM|Unspecified separation of retinal layers|Unspecified separation of retinal layers +C0154844|T020|PT|H35.70|ICD10CM|Unspecified separation of retinal layers|Unspecified separation of retinal layers +C0730328|T047|HT|H35.71|ICD10CM|Central serous chorioretinopathy|Central serous chorioretinopathy +C0730328|T047|AB|H35.71|ICD10CM|Central serous chorioretinopathy|Central serous chorioretinopathy +C2880989|T047|AB|H35.711|ICD10CM|Central serous chorioretinopathy, right eye|Central serous chorioretinopathy, right eye +C2880989|T047|PT|H35.711|ICD10CM|Central serous chorioretinopathy, right eye|Central serous chorioretinopathy, right eye +C2880990|T047|AB|H35.712|ICD10CM|Central serous chorioretinopathy, left eye|Central serous chorioretinopathy, left eye +C2880990|T047|PT|H35.712|ICD10CM|Central serous chorioretinopathy, left eye|Central serous chorioretinopathy, left eye +C2880991|T047|AB|H35.713|ICD10CM|Central serous chorioretinopathy, bilateral|Central serous chorioretinopathy, bilateral +C2880991|T047|PT|H35.713|ICD10CM|Central serous chorioretinopathy, bilateral|Central serous chorioretinopathy, bilateral +C2880992|T047|AB|H35.719|ICD10CM|Central serous chorioretinopathy, unspecified eye|Central serous chorioretinopathy, unspecified eye +C2880992|T047|PT|H35.719|ICD10CM|Central serous chorioretinopathy, unspecified eye|Central serous chorioretinopathy, unspecified eye +C0154845|T047|HT|H35.72|ICD10CM|Serous detachment of retinal pigment epithelium|Serous detachment of retinal pigment epithelium +C0154845|T047|AB|H35.72|ICD10CM|Serous detachment of retinal pigment epithelium|Serous detachment of retinal pigment epithelium +C2880993|T047|AB|H35.721|ICD10CM|Serous detachment of retinal pigment epithelium, right eye|Serous detachment of retinal pigment epithelium, right eye +C2880993|T047|PT|H35.721|ICD10CM|Serous detachment of retinal pigment epithelium, right eye|Serous detachment of retinal pigment epithelium, right eye +C2880994|T047|AB|H35.722|ICD10CM|Serous detachment of retinal pigment epithelium, left eye|Serous detachment of retinal pigment epithelium, left eye +C2880994|T047|PT|H35.722|ICD10CM|Serous detachment of retinal pigment epithelium, left eye|Serous detachment of retinal pigment epithelium, left eye +C2880995|T047|AB|H35.723|ICD10CM|Serous detachment of retinal pigment epithelium, bilateral|Serous detachment of retinal pigment epithelium, bilateral +C2880995|T047|PT|H35.723|ICD10CM|Serous detachment of retinal pigment epithelium, bilateral|Serous detachment of retinal pigment epithelium, bilateral +C2880996|T047|AB|H35.729|ICD10CM|Serous detachment of retinal pigment epithelium, unsp eye|Serous detachment of retinal pigment epithelium, unsp eye +C2880996|T047|PT|H35.729|ICD10CM|Serous detachment of retinal pigment epithelium, unspecified eye|Serous detachment of retinal pigment epithelium, unspecified eye +C0154846|T046|HT|H35.73|ICD10CM|Hemorrhagic detachment of retinal pigment epithelium|Hemorrhagic detachment of retinal pigment epithelium +C0154846|T046|AB|H35.73|ICD10CM|Hemorrhagic detachment of retinal pigment epithelium|Hemorrhagic detachment of retinal pigment epithelium +C2880997|T046|AB|H35.731|ICD10CM|Hemorrhagic detach of retinal pigment epithelium, right eye|Hemorrhagic detach of retinal pigment epithelium, right eye +C2880997|T046|PT|H35.731|ICD10CM|Hemorrhagic detachment of retinal pigment epithelium, right eye|Hemorrhagic detachment of retinal pigment epithelium, right eye +C2880998|T046|AB|H35.732|ICD10CM|Hemorrhagic detach of retinal pigment epithelium, left eye|Hemorrhagic detach of retinal pigment epithelium, left eye +C2880998|T046|PT|H35.732|ICD10CM|Hemorrhagic detachment of retinal pigment epithelium, left eye|Hemorrhagic detachment of retinal pigment epithelium, left eye +C2880999|T046|AB|H35.733|ICD10CM|Hemorrhagic detach of retinal pigment epithelium, bilateral|Hemorrhagic detach of retinal pigment epithelium, bilateral +C2880999|T046|PT|H35.733|ICD10CM|Hemorrhagic detachment of retinal pigment epithelium, bilateral|Hemorrhagic detachment of retinal pigment epithelium, bilateral +C0154846|T046|AB|H35.739|ICD10CM|Hemorrhagic detach of retinal pigment epithelium, unsp eye|Hemorrhagic detach of retinal pigment epithelium, unsp eye +C0154846|T046|PT|H35.739|ICD10CM|Hemorrhagic detachment of retinal pigment epithelium, unspecified eye|Hemorrhagic detachment of retinal pigment epithelium, unspecified eye +C0348553|T047|PT|H35.8|ICD10|Other specified retinal disorders|Other specified retinal disorders +C0348553|T047|HT|H35.8|ICD10CM|Other specified retinal disorders|Other specified retinal disorders +C0348553|T047|AB|H35.8|ICD10CM|Other specified retinal disorders|Other specified retinal disorders +C0271053|T033|ET|H35.81|ICD10CM|Retinal cotton wool spots|Retinal cotton wool spots +C0242420|T046|PT|H35.81|ICD10CM|Retinal edema|Retinal edema +C0242420|T046|AB|H35.81|ICD10CM|Retinal edema|Retinal edema +C0162291|T046|PT|H35.82|ICD10CM|Retinal ischemia|Retinal ischemia +C0162291|T046|AB|H35.82|ICD10CM|Retinal ischemia|Retinal ischemia +C0348553|T047|PT|H35.89|ICD10CM|Other specified retinal disorders|Other specified retinal disorders +C0348553|T047|AB|H35.89|ICD10CM|Other specified retinal disorders|Other specified retinal disorders +C0035309|T047|PT|H35.9|ICD10|Retinal disorder, unspecified|Retinal disorder, unspecified +C0035309|T047|PT|H35.9|ICD10CM|Unspecified retinal disorder|Unspecified retinal disorder +C0035309|T047|AB|H35.9|ICD10CM|Unspecified retinal disorder|Unspecified retinal disorder +C0694488|T047|HT|H36|ICD10|Retinal disorders in diseases classified elsewhere|Retinal disorders in diseases classified elsewhere +C0694488|T047|PT|H36|ICD10CM|Retinal disorders in diseases classified elsewhere|Retinal disorders in diseases classified elsewhere +C0694488|T047|AB|H36|ICD10CM|Retinal disorders in diseases classified elsewhere|Retinal disorders in diseases classified elsewhere +C0011884|T047|PT|H36.0|ICD10|Diabetic retinopathy|Diabetic retinopathy +C0348554|T047|PT|H36.8|ICD10|Other retinal disorders in diseases classified elsewhere|Other retinal disorders in diseases classified elsewhere +C0017601|T047|HT|H40|ICD10|Glaucoma|Glaucoma +C0017601|T047|HT|H40|ICD10CM|Glaucoma|Glaucoma +C0017601|T047|AB|H40|ICD10CM|Glaucoma|Glaucoma +C0017601|T047|HT|H40-H42|ICD10CM|Glaucoma (H40-H42)|Glaucoma (H40-H42) +C0017601|T047|HT|H40-H42.9|ICD10|Glaucoma|Glaucoma +C0017614|T047|PT|H40.0|ICD10|Glaucoma suspect|Glaucoma suspect +C0017614|T047|HT|H40.0|ICD10CM|Glaucoma suspect|Glaucoma suspect +C0017614|T047|AB|H40.0|ICD10CM|Glaucoma suspect|Glaucoma suspect +C0549470|T047|HT|H40.00|ICD10CM|Preglaucoma, unspecified|Preglaucoma, unspecified +C0549470|T047|AB|H40.00|ICD10CM|Preglaucoma, unspecified|Preglaucoma, unspecified +C3264147|T047|AB|H40.001|ICD10CM|Preglaucoma, unspecified, right eye|Preglaucoma, unspecified, right eye +C3264147|T047|PT|H40.001|ICD10CM|Preglaucoma, unspecified, right eye|Preglaucoma, unspecified, right eye +C3264148|T047|AB|H40.002|ICD10CM|Preglaucoma, unspecified, left eye|Preglaucoma, unspecified, left eye +C3264148|T047|PT|H40.002|ICD10CM|Preglaucoma, unspecified, left eye|Preglaucoma, unspecified, left eye +C3264149|T047|AB|H40.003|ICD10CM|Preglaucoma, unspecified, bilateral|Preglaucoma, unspecified, bilateral +C3264149|T047|PT|H40.003|ICD10CM|Preglaucoma, unspecified, bilateral|Preglaucoma, unspecified, bilateral +C3264150|T047|AB|H40.009|ICD10CM|Preglaucoma, unspecified, unspecified eye|Preglaucoma, unspecified, unspecified eye +C3264150|T047|PT|H40.009|ICD10CM|Preglaucoma, unspecified, unspecified eye|Preglaucoma, unspecified, unspecified eye +C3264152|T047|HT|H40.01|ICD10CM|Open angle with borderline findings, low risk|Open angle with borderline findings, low risk +C3264152|T047|AB|H40.01|ICD10CM|Open angle with borderline findings, low risk|Open angle with borderline findings, low risk +C3264151|T047|ET|H40.01|ICD10CM|Open angle, low risk|Open angle, low risk +C3264153|T047|AB|H40.011|ICD10CM|Open angle with borderline findings, low risk, right eye|Open angle with borderline findings, low risk, right eye +C3264153|T047|PT|H40.011|ICD10CM|Open angle with borderline findings, low risk, right eye|Open angle with borderline findings, low risk, right eye +C3264154|T047|AB|H40.012|ICD10CM|Open angle with borderline findings, low risk, left eye|Open angle with borderline findings, low risk, left eye +C3264154|T047|PT|H40.012|ICD10CM|Open angle with borderline findings, low risk, left eye|Open angle with borderline findings, low risk, left eye +C3264155|T047|AB|H40.013|ICD10CM|Open angle with borderline findings, low risk, bilateral|Open angle with borderline findings, low risk, bilateral +C3264155|T047|PT|H40.013|ICD10CM|Open angle with borderline findings, low risk, bilateral|Open angle with borderline findings, low risk, bilateral +C3264156|T047|AB|H40.019|ICD10CM|Open angle with borderline findings, low risk, unsp eye|Open angle with borderline findings, low risk, unsp eye +C3264156|T047|PT|H40.019|ICD10CM|Open angle with borderline findings, low risk, unspecified eye|Open angle with borderline findings, low risk, unspecified eye +C3161083|T047|HT|H40.02|ICD10CM|Open angle with borderline findings, high risk|Open angle with borderline findings, high risk +C3161083|T047|AB|H40.02|ICD10CM|Open angle with borderline findings, high risk|Open angle with borderline findings, high risk +C3264157|T047|ET|H40.02|ICD10CM|Open angle, high risk|Open angle, high risk +C3264159|T047|AB|H40.021|ICD10CM|Open angle with borderline findings, high risk, right eye|Open angle with borderline findings, high risk, right eye +C3264159|T047|PT|H40.021|ICD10CM|Open angle with borderline findings, high risk, right eye|Open angle with borderline findings, high risk, right eye +C3264160|T047|AB|H40.022|ICD10CM|Open angle with borderline findings, high risk, left eye|Open angle with borderline findings, high risk, left eye +C3264160|T047|PT|H40.022|ICD10CM|Open angle with borderline findings, high risk, left eye|Open angle with borderline findings, high risk, left eye +C3264161|T047|AB|H40.023|ICD10CM|Open angle with borderline findings, high risk, bilateral|Open angle with borderline findings, high risk, bilateral +C3264161|T047|PT|H40.023|ICD10CM|Open angle with borderline findings, high risk, bilateral|Open angle with borderline findings, high risk, bilateral +C3264162|T047|AB|H40.029|ICD10CM|Open angle with borderline findings, high risk, unsp eye|Open angle with borderline findings, high risk, unsp eye +C3264162|T047|PT|H40.029|ICD10CM|Open angle with borderline findings, high risk, unspecified eye|Open angle with borderline findings, high risk, unspecified eye +C1387453|T033|AB|H40.03|ICD10CM|Anatomical narrow angle|Anatomical narrow angle +C1387453|T033|HT|H40.03|ICD10CM|Anatomical narrow angle|Anatomical narrow angle +C3264163|T033|ET|H40.03|ICD10CM|Primary angle closure suspect|Primary angle closure suspect +C3264164|T033|AB|H40.031|ICD10CM|Anatomical narrow angle, right eye|Anatomical narrow angle, right eye +C3264164|T033|PT|H40.031|ICD10CM|Anatomical narrow angle, right eye|Anatomical narrow angle, right eye +C3264165|T033|AB|H40.032|ICD10CM|Anatomical narrow angle, left eye|Anatomical narrow angle, left eye +C3264165|T033|PT|H40.032|ICD10CM|Anatomical narrow angle, left eye|Anatomical narrow angle, left eye +C3264166|T033|AB|H40.033|ICD10CM|Anatomical narrow angle, bilateral|Anatomical narrow angle, bilateral +C3264166|T033|PT|H40.033|ICD10CM|Anatomical narrow angle, bilateral|Anatomical narrow angle, bilateral +C3264167|T033|AB|H40.039|ICD10CM|Anatomical narrow angle, unspecified eye|Anatomical narrow angle, unspecified eye +C3264167|T033|PT|H40.039|ICD10CM|Anatomical narrow angle, unspecified eye|Anatomical narrow angle, unspecified eye +C3264168|T033|AB|H40.04|ICD10CM|Steroid responder|Steroid responder +C3264168|T033|HT|H40.04|ICD10CM|Steroid responder|Steroid responder +C3264169|T047|AB|H40.041|ICD10CM|Steroid responder, right eye|Steroid responder, right eye +C3264169|T047|PT|H40.041|ICD10CM|Steroid responder, right eye|Steroid responder, right eye +C3264170|T047|AB|H40.042|ICD10CM|Steroid responder, left eye|Steroid responder, left eye +C3264170|T047|PT|H40.042|ICD10CM|Steroid responder, left eye|Steroid responder, left eye +C3264171|T047|AB|H40.043|ICD10CM|Steroid responder, bilateral|Steroid responder, bilateral +C3264171|T047|PT|H40.043|ICD10CM|Steroid responder, bilateral|Steroid responder, bilateral +C3264172|T047|AB|H40.049|ICD10CM|Steroid responder, unspecified eye|Steroid responder, unspecified eye +C3264172|T047|PT|H40.049|ICD10CM|Steroid responder, unspecified eye|Steroid responder, unspecified eye +C0028840|T047|HT|H40.05|ICD10CM|Ocular hypertension|Ocular hypertension +C0028840|T047|AB|H40.05|ICD10CM|Ocular hypertension|Ocular hypertension +C3264173|T047|AB|H40.051|ICD10CM|Ocular hypertension, right eye|Ocular hypertension, right eye +C3264173|T047|PT|H40.051|ICD10CM|Ocular hypertension, right eye|Ocular hypertension, right eye +C3264174|T047|AB|H40.052|ICD10CM|Ocular hypertension, left eye|Ocular hypertension, left eye +C3264174|T047|PT|H40.052|ICD10CM|Ocular hypertension, left eye|Ocular hypertension, left eye +C3264175|T047|AB|H40.053|ICD10CM|Ocular hypertension, bilateral|Ocular hypertension, bilateral +C3264175|T047|PT|H40.053|ICD10CM|Ocular hypertension, bilateral|Ocular hypertension, bilateral +C3264176|T047|AB|H40.059|ICD10CM|Ocular hypertension, unspecified eye|Ocular hypertension, unspecified eye +C3264176|T047|PT|H40.059|ICD10CM|Ocular hypertension, unspecified eye|Ocular hypertension, unspecified eye +C3161084|T047|HT|H40.06|ICD10CM|Primary angle closure without glaucoma damage|Primary angle closure without glaucoma damage +C3161084|T047|AB|H40.06|ICD10CM|Primary angle closure without glaucoma damage|Primary angle closure without glaucoma damage +C3264177|T047|AB|H40.061|ICD10CM|Primary angle closure without glaucoma damage, right eye|Primary angle closure without glaucoma damage, right eye +C3264177|T047|PT|H40.061|ICD10CM|Primary angle closure without glaucoma damage, right eye|Primary angle closure without glaucoma damage, right eye +C3264178|T047|AB|H40.062|ICD10CM|Primary angle closure without glaucoma damage, left eye|Primary angle closure without glaucoma damage, left eye +C3264178|T047|PT|H40.062|ICD10CM|Primary angle closure without glaucoma damage, left eye|Primary angle closure without glaucoma damage, left eye +C3264179|T047|AB|H40.063|ICD10CM|Primary angle closure without glaucoma damage, bilateral|Primary angle closure without glaucoma damage, bilateral +C3264179|T047|PT|H40.063|ICD10CM|Primary angle closure without glaucoma damage, bilateral|Primary angle closure without glaucoma damage, bilateral +C3264180|T047|AB|H40.069|ICD10CM|Primary angle closure without glaucoma damage, unsp eye|Primary angle closure without glaucoma damage, unsp eye +C3264180|T047|PT|H40.069|ICD10CM|Primary angle closure without glaucoma damage, unspecified eye|Primary angle closure without glaucoma damage, unspecified eye +C0017612|T047|HT|H40.1|ICD10CM|Open-angle glaucoma|Open-angle glaucoma +C0017612|T047|AB|H40.1|ICD10CM|Open-angle glaucoma|Open-angle glaucoma +C0339573|T047|PT|H40.1|ICD10|Primary open-angle glaucoma|Primary open-angle glaucoma +C0017612|T047|AB|H40.10|ICD10CM|Unspecified open-angle glaucoma|Unspecified open-angle glaucoma +C0017612|T047|HT|H40.10|ICD10CM|Unspecified open-angle glaucoma|Unspecified open-angle glaucoma +C3264181|T047|AB|H40.10X0|ICD10CM|Unspecified open-angle glaucoma, stage unspecified|Unspecified open-angle glaucoma, stage unspecified +C3264181|T047|PT|H40.10X0|ICD10CM|Unspecified open-angle glaucoma, stage unspecified|Unspecified open-angle glaucoma, stage unspecified +C3264182|T047|AB|H40.10X1|ICD10CM|Unspecified open-angle glaucoma, mild stage|Unspecified open-angle glaucoma, mild stage +C3264182|T047|PT|H40.10X1|ICD10CM|Unspecified open-angle glaucoma, mild stage|Unspecified open-angle glaucoma, mild stage +C3264183|T047|AB|H40.10X2|ICD10CM|Unspecified open-angle glaucoma, moderate stage|Unspecified open-angle glaucoma, moderate stage +C3264183|T047|PT|H40.10X2|ICD10CM|Unspecified open-angle glaucoma, moderate stage|Unspecified open-angle glaucoma, moderate stage +C3264184|T047|AB|H40.10X3|ICD10CM|Unspecified open-angle glaucoma, severe stage|Unspecified open-angle glaucoma, severe stage +C3264184|T047|PT|H40.10X3|ICD10CM|Unspecified open-angle glaucoma, severe stage|Unspecified open-angle glaucoma, severe stage +C3264185|T047|AB|H40.10X4|ICD10CM|Unspecified open-angle glaucoma, indeterminate stage|Unspecified open-angle glaucoma, indeterminate stage +C3264185|T047|PT|H40.10X4|ICD10CM|Unspecified open-angle glaucoma, indeterminate stage|Unspecified open-angle glaucoma, indeterminate stage +C0339573|T047|ET|H40.11|ICD10CM|Chronic simple glaucoma|Chronic simple glaucoma +C0339573|T047|HT|H40.11|ICD10CM|Primary open-angle glaucoma|Primary open-angle glaucoma +C0339573|T047|AB|H40.11|ICD10CM|Primary open-angle glaucoma|Primary open-angle glaucoma +C2012184|T047|AB|H40.111|ICD10CM|Primary open-angle glaucoma, right eye|Primary open-angle glaucoma, right eye +C2012184|T047|HT|H40.111|ICD10CM|Primary open-angle glaucoma, right eye|Primary open-angle glaucoma, right eye +C4268395|T047|AB|H40.1110|ICD10CM|Primary open-angle glaucoma, right eye, stage unspecified|Primary open-angle glaucoma, right eye, stage unspecified +C4268395|T047|PT|H40.1110|ICD10CM|Primary open-angle glaucoma, right eye, stage unspecified|Primary open-angle glaucoma, right eye, stage unspecified +C4268396|T047|AB|H40.1111|ICD10CM|Primary open-angle glaucoma, right eye, mild stage|Primary open-angle glaucoma, right eye, mild stage +C4268396|T047|PT|H40.1111|ICD10CM|Primary open-angle glaucoma, right eye, mild stage|Primary open-angle glaucoma, right eye, mild stage +C4268397|T047|AB|H40.1112|ICD10CM|Primary open-angle glaucoma, right eye, moderate stage|Primary open-angle glaucoma, right eye, moderate stage +C4268397|T047|PT|H40.1112|ICD10CM|Primary open-angle glaucoma, right eye, moderate stage|Primary open-angle glaucoma, right eye, moderate stage +C4268398|T047|AB|H40.1113|ICD10CM|Primary open-angle glaucoma, right eye, severe stage|Primary open-angle glaucoma, right eye, severe stage +C4268398|T047|PT|H40.1113|ICD10CM|Primary open-angle glaucoma, right eye, severe stage|Primary open-angle glaucoma, right eye, severe stage +C4268399|T047|AB|H40.1114|ICD10CM|Primary open-angle glaucoma, right eye, indeterminate stage|Primary open-angle glaucoma, right eye, indeterminate stage +C4268399|T047|PT|H40.1114|ICD10CM|Primary open-angle glaucoma, right eye, indeterminate stage|Primary open-angle glaucoma, right eye, indeterminate stage +C2012183|T047|AB|H40.112|ICD10CM|Primary open-angle glaucoma, left eye|Primary open-angle glaucoma, left eye +C2012183|T047|HT|H40.112|ICD10CM|Primary open-angle glaucoma, left eye|Primary open-angle glaucoma, left eye +C4268400|T047|AB|H40.1120|ICD10CM|Primary open-angle glaucoma, left eye, stage unspecified|Primary open-angle glaucoma, left eye, stage unspecified +C4268400|T047|PT|H40.1120|ICD10CM|Primary open-angle glaucoma, left eye, stage unspecified|Primary open-angle glaucoma, left eye, stage unspecified +C4270808|T047|AB|H40.1121|ICD10CM|Primary open-angle glaucoma, left eye, mild stage|Primary open-angle glaucoma, left eye, mild stage +C4270808|T047|PT|H40.1121|ICD10CM|Primary open-angle glaucoma, left eye, mild stage|Primary open-angle glaucoma, left eye, mild stage +C4268401|T047|AB|H40.1122|ICD10CM|Primary open-angle glaucoma, left eye, moderate stage|Primary open-angle glaucoma, left eye, moderate stage +C4268401|T047|PT|H40.1122|ICD10CM|Primary open-angle glaucoma, left eye, moderate stage|Primary open-angle glaucoma, left eye, moderate stage +C4268402|T047|AB|H40.1123|ICD10CM|Primary open-angle glaucoma, left eye, severe stage|Primary open-angle glaucoma, left eye, severe stage +C4268402|T047|PT|H40.1123|ICD10CM|Primary open-angle glaucoma, left eye, severe stage|Primary open-angle glaucoma, left eye, severe stage +C4268403|T047|AB|H40.1124|ICD10CM|Primary open-angle glaucoma, left eye, indeterminate stage|Primary open-angle glaucoma, left eye, indeterminate stage +C4268403|T047|PT|H40.1124|ICD10CM|Primary open-angle glaucoma, left eye, indeterminate stage|Primary open-angle glaucoma, left eye, indeterminate stage +C2012182|T047|AB|H40.113|ICD10CM|Primary open-angle glaucoma, bilateral|Primary open-angle glaucoma, bilateral +C2012182|T047|HT|H40.113|ICD10CM|Primary open-angle glaucoma, bilateral|Primary open-angle glaucoma, bilateral +C4268404|T047|AB|H40.1130|ICD10CM|Primary open-angle glaucoma, bilateral, stage unspecified|Primary open-angle glaucoma, bilateral, stage unspecified +C4268404|T047|PT|H40.1130|ICD10CM|Primary open-angle glaucoma, bilateral, stage unspecified|Primary open-angle glaucoma, bilateral, stage unspecified +C4268405|T047|AB|H40.1131|ICD10CM|Primary open-angle glaucoma, bilateral, mild stage|Primary open-angle glaucoma, bilateral, mild stage +C4268405|T047|PT|H40.1131|ICD10CM|Primary open-angle glaucoma, bilateral, mild stage|Primary open-angle glaucoma, bilateral, mild stage +C4268406|T047|AB|H40.1132|ICD10CM|Primary open-angle glaucoma, bilateral, moderate stage|Primary open-angle glaucoma, bilateral, moderate stage +C4268406|T047|PT|H40.1132|ICD10CM|Primary open-angle glaucoma, bilateral, moderate stage|Primary open-angle glaucoma, bilateral, moderate stage +C4268407|T047|AB|H40.1133|ICD10CM|Primary open-angle glaucoma, bilateral, severe stage|Primary open-angle glaucoma, bilateral, severe stage +C4268407|T047|PT|H40.1133|ICD10CM|Primary open-angle glaucoma, bilateral, severe stage|Primary open-angle glaucoma, bilateral, severe stage +C4268408|T047|AB|H40.1134|ICD10CM|Primary open-angle glaucoma, bilateral, indeterminate stage|Primary open-angle glaucoma, bilateral, indeterminate stage +C4268408|T047|PT|H40.1134|ICD10CM|Primary open-angle glaucoma, bilateral, indeterminate stage|Primary open-angle glaucoma, bilateral, indeterminate stage +C4268409|T047|AB|H40.119|ICD10CM|Primary open-angle glaucoma, unspecified eye|Primary open-angle glaucoma, unspecified eye +C4268409|T047|HT|H40.119|ICD10CM|Primary open-angle glaucoma, unspecified eye|Primary open-angle glaucoma, unspecified eye +C4268410|T047|AB|H40.1190|ICD10CM|Primary open-angle glaucoma, unsp, stage unspecified|Primary open-angle glaucoma, unsp, stage unspecified +C4268410|T047|PT|H40.1190|ICD10CM|Primary open-angle glaucoma, unspecified eye, stage unspecified|Primary open-angle glaucoma, unspecified eye, stage unspecified +C4268411|T047|AB|H40.1191|ICD10CM|Primary open-angle glaucoma, unspecified eye, mild stage|Primary open-angle glaucoma, unspecified eye, mild stage +C4268411|T047|PT|H40.1191|ICD10CM|Primary open-angle glaucoma, unspecified eye, mild stage|Primary open-angle glaucoma, unspecified eye, mild stage +C4268412|T047|AB|H40.1192|ICD10CM|Primary open-angle glaucoma, unspecified eye, moderate stage|Primary open-angle glaucoma, unspecified eye, moderate stage +C4268412|T047|PT|H40.1192|ICD10CM|Primary open-angle glaucoma, unspecified eye, moderate stage|Primary open-angle glaucoma, unspecified eye, moderate stage +C4268413|T047|AB|H40.1193|ICD10CM|Primary open-angle glaucoma, unspecified eye, severe stage|Primary open-angle glaucoma, unspecified eye, severe stage +C4268413|T047|PT|H40.1193|ICD10CM|Primary open-angle glaucoma, unspecified eye, severe stage|Primary open-angle glaucoma, unspecified eye, severe stage +C4268414|T047|AB|H40.1194|ICD10CM|Primary open-angle glaucoma, unsp, indeterminate stage|Primary open-angle glaucoma, unsp, indeterminate stage +C4268414|T047|PT|H40.1194|ICD10CM|Primary open-angle glaucoma, unspecified eye, indeterminate stage|Primary open-angle glaucoma, unspecified eye, indeterminate stage +C0152136|T047|AB|H40.12|ICD10CM|Low-tension glaucoma|Low-tension glaucoma +C0152136|T047|HT|H40.12|ICD10CM|Low-tension glaucoma|Low-tension glaucoma +C2881000|T047|AB|H40.121|ICD10CM|Low-tension glaucoma, right eye|Low-tension glaucoma, right eye +C2881000|T047|HT|H40.121|ICD10CM|Low-tension glaucoma, right eye|Low-tension glaucoma, right eye +C3264191|T047|PT|H40.1210|ICD10CM|Low-tension glaucoma, right eye, stage unspecified|Low-tension glaucoma, right eye, stage unspecified +C3264191|T047|AB|H40.1210|ICD10CM|Low-tension glaucoma, right eye, stage unspecified|Low-tension glaucoma, right eye, stage unspecified +C3264192|T047|AB|H40.1211|ICD10CM|Low-tension glaucoma, right eye, mild stage|Low-tension glaucoma, right eye, mild stage +C3264192|T047|PT|H40.1211|ICD10CM|Low-tension glaucoma, right eye, mild stage|Low-tension glaucoma, right eye, mild stage +C3264193|T047|PT|H40.1212|ICD10CM|Low-tension glaucoma, right eye, moderate stage|Low-tension glaucoma, right eye, moderate stage +C3264193|T047|AB|H40.1212|ICD10CM|Low-tension glaucoma, right eye, moderate stage|Low-tension glaucoma, right eye, moderate stage +C3264194|T047|PT|H40.1213|ICD10CM|Low-tension glaucoma, right eye, severe stage|Low-tension glaucoma, right eye, severe stage +C3264194|T047|AB|H40.1213|ICD10CM|Low-tension glaucoma, right eye, severe stage|Low-tension glaucoma, right eye, severe stage +C3264195|T047|PT|H40.1214|ICD10CM|Low-tension glaucoma, right eye, indeterminate stage|Low-tension glaucoma, right eye, indeterminate stage +C3264195|T047|AB|H40.1214|ICD10CM|Low-tension glaucoma, right eye, indeterminate stage|Low-tension glaucoma, right eye, indeterminate stage +C2881001|T047|AB|H40.122|ICD10CM|Low-tension glaucoma, left eye|Low-tension glaucoma, left eye +C2881001|T047|HT|H40.122|ICD10CM|Low-tension glaucoma, left eye|Low-tension glaucoma, left eye +C3264196|T047|AB|H40.1220|ICD10CM|Low-tension glaucoma, left eye, stage unspecified|Low-tension glaucoma, left eye, stage unspecified +C3264196|T047|PT|H40.1220|ICD10CM|Low-tension glaucoma, left eye, stage unspecified|Low-tension glaucoma, left eye, stage unspecified +C3264197|T047|PT|H40.1221|ICD10CM|Low-tension glaucoma, left eye, mild stage|Low-tension glaucoma, left eye, mild stage +C3264197|T047|AB|H40.1221|ICD10CM|Low-tension glaucoma, left eye, mild stage|Low-tension glaucoma, left eye, mild stage +C3264198|T047|AB|H40.1222|ICD10CM|Low-tension glaucoma, left eye, moderate stage|Low-tension glaucoma, left eye, moderate stage +C3264198|T047|PT|H40.1222|ICD10CM|Low-tension glaucoma, left eye, moderate stage|Low-tension glaucoma, left eye, moderate stage +C3264199|T047|AB|H40.1223|ICD10CM|Low-tension glaucoma, left eye, severe stage|Low-tension glaucoma, left eye, severe stage +C3264199|T047|PT|H40.1223|ICD10CM|Low-tension glaucoma, left eye, severe stage|Low-tension glaucoma, left eye, severe stage +C3264200|T047|PT|H40.1224|ICD10CM|Low-tension glaucoma, left eye, indeterminate stage|Low-tension glaucoma, left eye, indeterminate stage +C3264200|T047|AB|H40.1224|ICD10CM|Low-tension glaucoma, left eye, indeterminate stage|Low-tension glaucoma, left eye, indeterminate stage +C2881002|T047|AB|H40.123|ICD10CM|Low-tension glaucoma, bilateral|Low-tension glaucoma, bilateral +C2881002|T047|HT|H40.123|ICD10CM|Low-tension glaucoma, bilateral|Low-tension glaucoma, bilateral +C3264201|T047|PT|H40.1230|ICD10CM|Low-tension glaucoma, bilateral, stage unspecified|Low-tension glaucoma, bilateral, stage unspecified +C3264201|T047|AB|H40.1230|ICD10CM|Low-tension glaucoma, bilateral, stage unspecified|Low-tension glaucoma, bilateral, stage unspecified +C3264202|T047|PT|H40.1231|ICD10CM|Low-tension glaucoma, bilateral, mild stage|Low-tension glaucoma, bilateral, mild stage +C3264202|T047|AB|H40.1231|ICD10CM|Low-tension glaucoma, bilateral, mild stage|Low-tension glaucoma, bilateral, mild stage +C3264203|T047|AB|H40.1232|ICD10CM|Low-tension glaucoma, bilateral, moderate stage|Low-tension glaucoma, bilateral, moderate stage +C3264203|T047|PT|H40.1232|ICD10CM|Low-tension glaucoma, bilateral, moderate stage|Low-tension glaucoma, bilateral, moderate stage +C3264204|T047|AB|H40.1233|ICD10CM|Low-tension glaucoma, bilateral, severe stage|Low-tension glaucoma, bilateral, severe stage +C3264204|T047|PT|H40.1233|ICD10CM|Low-tension glaucoma, bilateral, severe stage|Low-tension glaucoma, bilateral, severe stage +C3264205|T047|PT|H40.1234|ICD10CM|Low-tension glaucoma, bilateral, indeterminate stage|Low-tension glaucoma, bilateral, indeterminate stage +C3264205|T047|AB|H40.1234|ICD10CM|Low-tension glaucoma, bilateral, indeterminate stage|Low-tension glaucoma, bilateral, indeterminate stage +C2881003|T047|AB|H40.129|ICD10CM|Low-tension glaucoma, unspecified eye|Low-tension glaucoma, unspecified eye +C2881003|T047|HT|H40.129|ICD10CM|Low-tension glaucoma, unspecified eye|Low-tension glaucoma, unspecified eye +C3264206|T047|AB|H40.1290|ICD10CM|Low-tension glaucoma, unspecified eye, stage unspecified|Low-tension glaucoma, unspecified eye, stage unspecified +C3264206|T047|PT|H40.1290|ICD10CM|Low-tension glaucoma, unspecified eye, stage unspecified|Low-tension glaucoma, unspecified eye, stage unspecified +C3264207|T047|PT|H40.1291|ICD10CM|Low-tension glaucoma, unspecified eye, mild stage|Low-tension glaucoma, unspecified eye, mild stage +C3264207|T047|AB|H40.1291|ICD10CM|Low-tension glaucoma, unspecified eye, mild stage|Low-tension glaucoma, unspecified eye, mild stage +C3264208|T047|PT|H40.1292|ICD10CM|Low-tension glaucoma, unspecified eye, moderate stage|Low-tension glaucoma, unspecified eye, moderate stage +C3264208|T047|AB|H40.1292|ICD10CM|Low-tension glaucoma, unspecified eye, moderate stage|Low-tension glaucoma, unspecified eye, moderate stage +C3264209|T047|PT|H40.1293|ICD10CM|Low-tension glaucoma, unspecified eye, severe stage|Low-tension glaucoma, unspecified eye, severe stage +C3264209|T047|AB|H40.1293|ICD10CM|Low-tension glaucoma, unspecified eye, severe stage|Low-tension glaucoma, unspecified eye, severe stage +C3264210|T047|PT|H40.1294|ICD10CM|Low-tension glaucoma, unspecified eye, indeterminate stage|Low-tension glaucoma, unspecified eye, indeterminate stage +C3264210|T047|AB|H40.1294|ICD10CM|Low-tension glaucoma, unspecified eye, indeterminate stage|Low-tension glaucoma, unspecified eye, indeterminate stage +C0017612|T047|HT|H40.13|ICD10CM|Pigmentary glaucoma|Pigmentary glaucoma +C0017612|T047|AB|H40.13|ICD10CM|Pigmentary glaucoma|Pigmentary glaucoma +C2012193|T047|AB|H40.131|ICD10CM|Pigmentary glaucoma, right eye|Pigmentary glaucoma, right eye +C2012193|T047|HT|H40.131|ICD10CM|Pigmentary glaucoma, right eye|Pigmentary glaucoma, right eye +C3264211|T047|AB|H40.1310|ICD10CM|Pigmentary glaucoma, right eye, stage unspecified|Pigmentary glaucoma, right eye, stage unspecified +C3264211|T047|PT|H40.1310|ICD10CM|Pigmentary glaucoma, right eye, stage unspecified|Pigmentary glaucoma, right eye, stage unspecified +C3264212|T047|PT|H40.1311|ICD10CM|Pigmentary glaucoma, right eye, mild stage|Pigmentary glaucoma, right eye, mild stage +C3264212|T047|AB|H40.1311|ICD10CM|Pigmentary glaucoma, right eye, mild stage|Pigmentary glaucoma, right eye, mild stage +C3264213|T047|AB|H40.1312|ICD10CM|Pigmentary glaucoma, right eye, moderate stage|Pigmentary glaucoma, right eye, moderate stage +C3264213|T047|PT|H40.1312|ICD10CM|Pigmentary glaucoma, right eye, moderate stage|Pigmentary glaucoma, right eye, moderate stage +C3264214|T047|AB|H40.1313|ICD10CM|Pigmentary glaucoma, right eye, severe stage|Pigmentary glaucoma, right eye, severe stage +C3264214|T047|PT|H40.1313|ICD10CM|Pigmentary glaucoma, right eye, severe stage|Pigmentary glaucoma, right eye, severe stage +C3264215|T047|AB|H40.1314|ICD10CM|Pigmentary glaucoma, right eye, indeterminate stage|Pigmentary glaucoma, right eye, indeterminate stage +C3264215|T047|PT|H40.1314|ICD10CM|Pigmentary glaucoma, right eye, indeterminate stage|Pigmentary glaucoma, right eye, indeterminate stage +C2012192|T047|AB|H40.132|ICD10CM|Pigmentary glaucoma, left eye|Pigmentary glaucoma, left eye +C2012192|T047|HT|H40.132|ICD10CM|Pigmentary glaucoma, left eye|Pigmentary glaucoma, left eye +C3264216|T047|AB|H40.1320|ICD10CM|Pigmentary glaucoma, left eye, stage unspecified|Pigmentary glaucoma, left eye, stage unspecified +C3264216|T047|PT|H40.1320|ICD10CM|Pigmentary glaucoma, left eye, stage unspecified|Pigmentary glaucoma, left eye, stage unspecified +C3264217|T047|AB|H40.1321|ICD10CM|Pigmentary glaucoma, left eye, mild stage|Pigmentary glaucoma, left eye, mild stage +C3264217|T047|PT|H40.1321|ICD10CM|Pigmentary glaucoma, left eye, mild stage|Pigmentary glaucoma, left eye, mild stage +C3264218|T047|PT|H40.1322|ICD10CM|Pigmentary glaucoma, left eye, moderate stage|Pigmentary glaucoma, left eye, moderate stage +C3264218|T047|AB|H40.1322|ICD10CM|Pigmentary glaucoma, left eye, moderate stage|Pigmentary glaucoma, left eye, moderate stage +C3264219|T047|PT|H40.1323|ICD10CM|Pigmentary glaucoma, left eye, severe stage|Pigmentary glaucoma, left eye, severe stage +C3264219|T047|AB|H40.1323|ICD10CM|Pigmentary glaucoma, left eye, severe stage|Pigmentary glaucoma, left eye, severe stage +C3264220|T047|AB|H40.1324|ICD10CM|Pigmentary glaucoma, left eye, indeterminate stage|Pigmentary glaucoma, left eye, indeterminate stage +C3264220|T047|PT|H40.1324|ICD10CM|Pigmentary glaucoma, left eye, indeterminate stage|Pigmentary glaucoma, left eye, indeterminate stage +C2881004|T047|AB|H40.133|ICD10CM|Pigmentary glaucoma, bilateral|Pigmentary glaucoma, bilateral +C2881004|T047|HT|H40.133|ICD10CM|Pigmentary glaucoma, bilateral|Pigmentary glaucoma, bilateral +C3264221|T047|AB|H40.1330|ICD10CM|Pigmentary glaucoma, bilateral, stage unspecified|Pigmentary glaucoma, bilateral, stage unspecified +C3264221|T047|PT|H40.1330|ICD10CM|Pigmentary glaucoma, bilateral, stage unspecified|Pigmentary glaucoma, bilateral, stage unspecified +C3264222|T047|PT|H40.1331|ICD10CM|Pigmentary glaucoma, bilateral, mild stage|Pigmentary glaucoma, bilateral, mild stage +C3264222|T047|AB|H40.1331|ICD10CM|Pigmentary glaucoma, bilateral, mild stage|Pigmentary glaucoma, bilateral, mild stage +C3264223|T047|AB|H40.1332|ICD10CM|Pigmentary glaucoma, bilateral, moderate stage|Pigmentary glaucoma, bilateral, moderate stage +C3264223|T047|PT|H40.1332|ICD10CM|Pigmentary glaucoma, bilateral, moderate stage|Pigmentary glaucoma, bilateral, moderate stage +C3264224|T047|PT|H40.1333|ICD10CM|Pigmentary glaucoma, bilateral, severe stage|Pigmentary glaucoma, bilateral, severe stage +C3264224|T047|AB|H40.1333|ICD10CM|Pigmentary glaucoma, bilateral, severe stage|Pigmentary glaucoma, bilateral, severe stage +C3264225|T047|PT|H40.1334|ICD10CM|Pigmentary glaucoma, bilateral, indeterminate stage|Pigmentary glaucoma, bilateral, indeterminate stage +C3264225|T047|AB|H40.1334|ICD10CM|Pigmentary glaucoma, bilateral, indeterminate stage|Pigmentary glaucoma, bilateral, indeterminate stage +C2881005|T047|AB|H40.139|ICD10CM|Pigmentary glaucoma, unspecified eye|Pigmentary glaucoma, unspecified eye +C2881005|T047|HT|H40.139|ICD10CM|Pigmentary glaucoma, unspecified eye|Pigmentary glaucoma, unspecified eye +C3264226|T047|PT|H40.1390|ICD10CM|Pigmentary glaucoma, unspecified eye, stage unspecified|Pigmentary glaucoma, unspecified eye, stage unspecified +C3264226|T047|AB|H40.1390|ICD10CM|Pigmentary glaucoma, unspecified eye, stage unspecified|Pigmentary glaucoma, unspecified eye, stage unspecified +C3264227|T047|PT|H40.1391|ICD10CM|Pigmentary glaucoma, unspecified eye, mild stage|Pigmentary glaucoma, unspecified eye, mild stage +C3264227|T047|AB|H40.1391|ICD10CM|Pigmentary glaucoma, unspecified eye, mild stage|Pigmentary glaucoma, unspecified eye, mild stage +C3264228|T047|PT|H40.1392|ICD10CM|Pigmentary glaucoma, unspecified eye, moderate stage|Pigmentary glaucoma, unspecified eye, moderate stage +C3264228|T047|AB|H40.1392|ICD10CM|Pigmentary glaucoma, unspecified eye, moderate stage|Pigmentary glaucoma, unspecified eye, moderate stage +C3264229|T047|AB|H40.1393|ICD10CM|Pigmentary glaucoma, unspecified eye, severe stage|Pigmentary glaucoma, unspecified eye, severe stage +C3264229|T047|PT|H40.1393|ICD10CM|Pigmentary glaucoma, unspecified eye, severe stage|Pigmentary glaucoma, unspecified eye, severe stage +C3264230|T047|PT|H40.1394|ICD10CM|Pigmentary glaucoma, unspecified eye, indeterminate stage|Pigmentary glaucoma, unspecified eye, indeterminate stage +C3264230|T047|AB|H40.1394|ICD10CM|Pigmentary glaucoma, unspecified eye, indeterminate stage|Pigmentary glaucoma, unspecified eye, indeterminate stage +C2881006|T047|AB|H40.14|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens|Capsular glaucoma with pseudoexfoliation of lens +C2881006|T047|HT|H40.14|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens|Capsular glaucoma with pseudoexfoliation of lens +C2881007|T047|AB|H40.141|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, right eye|Capsular glaucoma with pseudoexfoliation of lens, right eye +C2881007|T047|HT|H40.141|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, right eye|Capsular glaucoma with pseudoexfoliation of lens, right eye +C3531718|T047|AB|H40.1410|ICD10CM|Capslr glaucoma w/pseudxf lens, right eye, stage unsp|Capslr glaucoma w/pseudxf lens, right eye, stage unsp +C3531718|T047|PT|H40.1410|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, right eye, stage unspecified|Capsular glaucoma with pseudoexfoliation of lens, right eye, stage unspecified +C3531717|T047|AB|H40.1411|ICD10CM|Capslr glaucoma w/pseudxf lens, right eye, mild stage|Capslr glaucoma w/pseudxf lens, right eye, mild stage +C3531717|T047|PT|H40.1411|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, right eye, mild stage|Capsular glaucoma with pseudoexfoliation of lens, right eye, mild stage +C3531716|T047|AB|H40.1412|ICD10CM|Capslr glaucoma w/pseudxf lens, right eye, moderate stage|Capslr glaucoma w/pseudxf lens, right eye, moderate stage +C3531716|T047|PT|H40.1412|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, right eye, moderate stage|Capsular glaucoma with pseudoexfoliation of lens, right eye, moderate stage +C3531715|T047|AB|H40.1413|ICD10CM|Capslr glaucoma w/pseudxf lens, right eye, severe stage|Capslr glaucoma w/pseudxf lens, right eye, severe stage +C3531715|T047|PT|H40.1413|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, right eye, severe stage|Capsular glaucoma with pseudoexfoliation of lens, right eye, severe stage +C3531714|T047|AB|H40.1414|ICD10CM|Capslr glaucoma w/pseudxf lens, r eye, indeterminate stage|Capslr glaucoma w/pseudxf lens, r eye, indeterminate stage +C3531714|T047|PT|H40.1414|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, right eye, indeterminate stage|Capsular glaucoma with pseudoexfoliation of lens, right eye, indeterminate stage +C2881008|T047|AB|H40.142|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, left eye|Capsular glaucoma with pseudoexfoliation of lens, left eye +C2881008|T047|HT|H40.142|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, left eye|Capsular glaucoma with pseudoexfoliation of lens, left eye +C3531713|T047|AB|H40.1420|ICD10CM|Capslr glaucoma w/pseudxf lens, left eye, stage unsp|Capslr glaucoma w/pseudxf lens, left eye, stage unsp +C3531713|T047|PT|H40.1420|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, left eye, stage unspecified|Capsular glaucoma with pseudoexfoliation of lens, left eye, stage unspecified +C3531712|T047|AB|H40.1421|ICD10CM|Capslr glaucoma w/pseudxf lens, left eye, mild stage|Capslr glaucoma w/pseudxf lens, left eye, mild stage +C3531712|T047|PT|H40.1421|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, left eye, mild stage|Capsular glaucoma with pseudoexfoliation of lens, left eye, mild stage +C3531711|T047|AB|H40.1422|ICD10CM|Capslr glaucoma w/pseudxf lens, left eye, moderate stage|Capslr glaucoma w/pseudxf lens, left eye, moderate stage +C3531711|T047|PT|H40.1422|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, left eye, moderate stage|Capsular glaucoma with pseudoexfoliation of lens, left eye, moderate stage +C3531710|T047|AB|H40.1423|ICD10CM|Capslr glaucoma w/pseudxf lens, left eye, severe stage|Capslr glaucoma w/pseudxf lens, left eye, severe stage +C3531710|T047|PT|H40.1423|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, left eye, severe stage|Capsular glaucoma with pseudoexfoliation of lens, left eye, severe stage +C3531709|T047|AB|H40.1424|ICD10CM|Capslr glaucoma w/pseudxf lens, l eye, indeterminate stage|Capslr glaucoma w/pseudxf lens, l eye, indeterminate stage +C3531709|T047|PT|H40.1424|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, left eye, indeterminate stage|Capsular glaucoma with pseudoexfoliation of lens, left eye, indeterminate stage +C2881009|T047|AB|H40.143|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, bilateral|Capsular glaucoma with pseudoexfoliation of lens, bilateral +C2881009|T047|HT|H40.143|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, bilateral|Capsular glaucoma with pseudoexfoliation of lens, bilateral +C3531708|T047|AB|H40.1430|ICD10CM|Capslr glaucoma w/pseudxf lens, bilateral, stage unsp|Capslr glaucoma w/pseudxf lens, bilateral, stage unsp +C3531708|T047|PT|H40.1430|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, bilateral, stage unspecified|Capsular glaucoma with pseudoexfoliation of lens, bilateral, stage unspecified +C3531707|T047|AB|H40.1431|ICD10CM|Capslr glaucoma w/pseudxf lens, bilateral, mild stage|Capslr glaucoma w/pseudxf lens, bilateral, mild stage +C3531707|T047|PT|H40.1431|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, bilateral, mild stage|Capsular glaucoma with pseudoexfoliation of lens, bilateral, mild stage +C3531706|T047|AB|H40.1432|ICD10CM|Capslr glaucoma w/pseudxf lens, bilateral, moderate stage|Capslr glaucoma w/pseudxf lens, bilateral, moderate stage +C3531706|T047|PT|H40.1432|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, bilateral, moderate stage|Capsular glaucoma with pseudoexfoliation of lens, bilateral, moderate stage +C3531705|T047|AB|H40.1433|ICD10CM|Capslr glaucoma w/pseudxf lens, bilateral, severe stage|Capslr glaucoma w/pseudxf lens, bilateral, severe stage +C3531705|T047|PT|H40.1433|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, bilateral, severe stage|Capsular glaucoma with pseudoexfoliation of lens, bilateral, severe stage +C3531704|T047|AB|H40.1434|ICD10CM|Capslr glaucoma w/pseudxf lens, bi, indeterminate stage|Capslr glaucoma w/pseudxf lens, bi, indeterminate stage +C3531704|T047|PT|H40.1434|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, bilateral, indeterminate stage|Capsular glaucoma with pseudoexfoliation of lens, bilateral, indeterminate stage +C2881010|T047|AB|H40.149|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, unsp eye|Capsular glaucoma with pseudoexfoliation of lens, unsp eye +C2881010|T047|HT|H40.149|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, unspecified eye|Capsular glaucoma with pseudoexfoliation of lens, unspecified eye +C3531703|T047|AB|H40.1490|ICD10CM|Capslr glaucoma w/pseudxf lens, unsp eye, stage unsp|Capslr glaucoma w/pseudxf lens, unsp eye, stage unsp +C3531703|T047|PT|H40.1490|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, stage unspecified|Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, stage unspecified +C3531702|T047|AB|H40.1491|ICD10CM|Capslr glaucoma w/pseudxf lens, unsp eye, mild stage|Capslr glaucoma w/pseudxf lens, unsp eye, mild stage +C3531702|T047|PT|H40.1491|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, mild stage|Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, mild stage +C3531701|T047|AB|H40.1492|ICD10CM|Capslr glaucoma w/pseudxf lens, unsp eye, moderate stage|Capslr glaucoma w/pseudxf lens, unsp eye, moderate stage +C3531701|T047|PT|H40.1492|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, moderate stage|Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, moderate stage +C3531700|T047|AB|H40.1493|ICD10CM|Capslr glaucoma w/pseudxf lens, unsp eye, severe stage|Capslr glaucoma w/pseudxf lens, unsp eye, severe stage +C3531700|T047|PT|H40.1493|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, severe stage|Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, severe stage +C3531699|T047|AB|H40.1494|ICD10CM|Capslr glaucoma w/pseudxf lens, unsp eye, indeterminate stg|Capslr glaucoma w/pseudxf lens, unsp eye, indeterminate stg +C3531699|T047|PT|H40.1494|ICD10CM|Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, indeterminate stage|Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, indeterminate stage +C0154944|T047|AB|H40.15|ICD10CM|Residual stage of open-angle glaucoma|Residual stage of open-angle glaucoma +C0154944|T047|HT|H40.15|ICD10CM|Residual stage of open-angle glaucoma|Residual stage of open-angle glaucoma +C2012187|T047|AB|H40.151|ICD10CM|Residual stage of open-angle glaucoma, right eye|Residual stage of open-angle glaucoma, right eye +C2012187|T047|PT|H40.151|ICD10CM|Residual stage of open-angle glaucoma, right eye|Residual stage of open-angle glaucoma, right eye +C2012186|T047|AB|H40.152|ICD10CM|Residual stage of open-angle glaucoma, left eye|Residual stage of open-angle glaucoma, left eye +C2012186|T047|PT|H40.152|ICD10CM|Residual stage of open-angle glaucoma, left eye|Residual stage of open-angle glaucoma, left eye +C2881011|T047|AB|H40.153|ICD10CM|Residual stage of open-angle glaucoma, bilateral|Residual stage of open-angle glaucoma, bilateral +C2881011|T047|PT|H40.153|ICD10CM|Residual stage of open-angle glaucoma, bilateral|Residual stage of open-angle glaucoma, bilateral +C2881012|T047|AB|H40.159|ICD10CM|Residual stage of open-angle glaucoma, unspecified eye|Residual stage of open-angle glaucoma, unspecified eye +C2881012|T047|PT|H40.159|ICD10CM|Residual stage of open-angle glaucoma, unspecified eye|Residual stage of open-angle glaucoma, unspecified eye +C0017606|T047|HT|H40.2|ICD10CM|Primary angle-closure glaucoma|Primary angle-closure glaucoma +C0017606|T047|AB|H40.2|ICD10CM|Primary angle-closure glaucoma|Primary angle-closure glaucoma +C0017606|T047|PT|H40.2|ICD10|Primary angle-closure glaucoma|Primary angle-closure glaucoma +C0017606|T047|AB|H40.20|ICD10CM|Unspecified primary angle-closure glaucoma|Unspecified primary angle-closure glaucoma +C0017606|T047|HT|H40.20|ICD10CM|Unspecified primary angle-closure glaucoma|Unspecified primary angle-closure glaucoma +C3264251|T047|AB|H40.20X0|ICD10CM|Unsp primary angle-closure glaucoma, stage unspecified|Unsp primary angle-closure glaucoma, stage unspecified +C3264251|T047|PT|H40.20X0|ICD10CM|Unspecified primary angle-closure glaucoma, stage unspecified|Unspecified primary angle-closure glaucoma, stage unspecified +C3264252|T047|AB|H40.20X1|ICD10CM|Unspecified primary angle-closure glaucoma, mild stage|Unspecified primary angle-closure glaucoma, mild stage +C3264252|T047|PT|H40.20X1|ICD10CM|Unspecified primary angle-closure glaucoma, mild stage|Unspecified primary angle-closure glaucoma, mild stage +C3264253|T047|AB|H40.20X2|ICD10CM|Unspecified primary angle-closure glaucoma, moderate stage|Unspecified primary angle-closure glaucoma, moderate stage +C3264253|T047|PT|H40.20X2|ICD10CM|Unspecified primary angle-closure glaucoma, moderate stage|Unspecified primary angle-closure glaucoma, moderate stage +C3264254|T047|AB|H40.20X3|ICD10CM|Unspecified primary angle-closure glaucoma, severe stage|Unspecified primary angle-closure glaucoma, severe stage +C3264254|T047|PT|H40.20X3|ICD10CM|Unspecified primary angle-closure glaucoma, severe stage|Unspecified primary angle-closure glaucoma, severe stage +C3264255|T047|AB|H40.20X4|ICD10CM|Unsp primary angle-closure glaucoma, indeterminate stage|Unsp primary angle-closure glaucoma, indeterminate stage +C3264255|T047|PT|H40.20X4|ICD10CM|Unspecified primary angle-closure glaucoma, indeterminate stage|Unspecified primary angle-closure glaucoma, indeterminate stage +C0154946|T047|HT|H40.21|ICD10CM|Acute angle-closure glaucoma|Acute angle-closure glaucoma +C0154946|T047|AB|H40.21|ICD10CM|Acute angle-closure glaucoma|Acute angle-closure glaucoma +C3161424|T047|ET|H40.21|ICD10CM|Acute angle-closure glaucoma attack|Acute angle-closure glaucoma attack +C3161425|T047|ET|H40.21|ICD10CM|Acute angle-closure glaucoma crisis|Acute angle-closure glaucoma crisis +C2881013|T047|AB|H40.211|ICD10CM|Acute angle-closure glaucoma, right eye|Acute angle-closure glaucoma, right eye +C2881013|T047|PT|H40.211|ICD10CM|Acute angle-closure glaucoma, right eye|Acute angle-closure glaucoma, right eye +C2881014|T047|AB|H40.212|ICD10CM|Acute angle-closure glaucoma, left eye|Acute angle-closure glaucoma, left eye +C2881014|T047|PT|H40.212|ICD10CM|Acute angle-closure glaucoma, left eye|Acute angle-closure glaucoma, left eye +C2881015|T047|AB|H40.213|ICD10CM|Acute angle-closure glaucoma, bilateral|Acute angle-closure glaucoma, bilateral +C2881015|T047|PT|H40.213|ICD10CM|Acute angle-closure glaucoma, bilateral|Acute angle-closure glaucoma, bilateral +C2881016|T047|AB|H40.219|ICD10CM|Acute angle-closure glaucoma, unspecified eye|Acute angle-closure glaucoma, unspecified eye +C2881016|T047|PT|H40.219|ICD10CM|Acute angle-closure glaucoma, unspecified eye|Acute angle-closure glaucoma, unspecified eye +C0154947|T047|HT|H40.22|ICD10CM|Chronic angle-closure glaucoma|Chronic angle-closure glaucoma +C0154947|T047|AB|H40.22|ICD10CM|Chronic angle-closure glaucoma|Chronic angle-closure glaucoma +C0543991|T047|ET|H40.22|ICD10CM|Chronic primary angle closure glaucoma|Chronic primary angle closure glaucoma +C2881017|T047|AB|H40.221|ICD10CM|Chronic angle-closure glaucoma, right eye|Chronic angle-closure glaucoma, right eye +C2881017|T047|HT|H40.221|ICD10CM|Chronic angle-closure glaucoma, right eye|Chronic angle-closure glaucoma, right eye +C3264256|T047|AB|H40.2210|ICD10CM|Chronic angle-closure glaucoma, right eye, stage unspecified|Chronic angle-closure glaucoma, right eye, stage unspecified +C3264256|T047|PT|H40.2210|ICD10CM|Chronic angle-closure glaucoma, right eye, stage unspecified|Chronic angle-closure glaucoma, right eye, stage unspecified +C3264257|T047|AB|H40.2211|ICD10CM|Chronic angle-closure glaucoma, right eye, mild stage|Chronic angle-closure glaucoma, right eye, mild stage +C3264257|T047|PT|H40.2211|ICD10CM|Chronic angle-closure glaucoma, right eye, mild stage|Chronic angle-closure glaucoma, right eye, mild stage +C3264258|T047|AB|H40.2212|ICD10CM|Chronic angle-closure glaucoma, right eye, moderate stage|Chronic angle-closure glaucoma, right eye, moderate stage +C3264258|T047|PT|H40.2212|ICD10CM|Chronic angle-closure glaucoma, right eye, moderate stage|Chronic angle-closure glaucoma, right eye, moderate stage +C3264259|T047|AB|H40.2213|ICD10CM|Chronic angle-closure glaucoma, right eye, severe stage|Chronic angle-closure glaucoma, right eye, severe stage +C3264259|T047|PT|H40.2213|ICD10CM|Chronic angle-closure glaucoma, right eye, severe stage|Chronic angle-closure glaucoma, right eye, severe stage +C3264260|T047|AB|H40.2214|ICD10CM|Chronic angle-closure glaucoma, r eye, indeterminate stage|Chronic angle-closure glaucoma, r eye, indeterminate stage +C3264260|T047|PT|H40.2214|ICD10CM|Chronic angle-closure glaucoma, right eye, indeterminate stage|Chronic angle-closure glaucoma, right eye, indeterminate stage +C2881018|T047|AB|H40.222|ICD10CM|Chronic angle-closure glaucoma, left eye|Chronic angle-closure glaucoma, left eye +C2881018|T047|HT|H40.222|ICD10CM|Chronic angle-closure glaucoma, left eye|Chronic angle-closure glaucoma, left eye +C3264261|T047|AB|H40.2220|ICD10CM|Chronic angle-closure glaucoma, left eye, stage unspecified|Chronic angle-closure glaucoma, left eye, stage unspecified +C3264261|T047|PT|H40.2220|ICD10CM|Chronic angle-closure glaucoma, left eye, stage unspecified|Chronic angle-closure glaucoma, left eye, stage unspecified +C3264262|T047|AB|H40.2221|ICD10CM|Chronic angle-closure glaucoma, left eye, mild stage|Chronic angle-closure glaucoma, left eye, mild stage +C3264262|T047|PT|H40.2221|ICD10CM|Chronic angle-closure glaucoma, left eye, mild stage|Chronic angle-closure glaucoma, left eye, mild stage +C3264263|T047|AB|H40.2222|ICD10CM|Chronic angle-closure glaucoma, left eye, moderate stage|Chronic angle-closure glaucoma, left eye, moderate stage +C3264263|T047|PT|H40.2222|ICD10CM|Chronic angle-closure glaucoma, left eye, moderate stage|Chronic angle-closure glaucoma, left eye, moderate stage +C3264264|T047|AB|H40.2223|ICD10CM|Chronic angle-closure glaucoma, left eye, severe stage|Chronic angle-closure glaucoma, left eye, severe stage +C3264264|T047|PT|H40.2223|ICD10CM|Chronic angle-closure glaucoma, left eye, severe stage|Chronic angle-closure glaucoma, left eye, severe stage +C3264265|T047|AB|H40.2224|ICD10CM|Chronic angle-closure glaucoma, l eye, indeterminate stage|Chronic angle-closure glaucoma, l eye, indeterminate stage +C3264265|T047|PT|H40.2224|ICD10CM|Chronic angle-closure glaucoma, left eye, indeterminate stage|Chronic angle-closure glaucoma, left eye, indeterminate stage +C2881019|T047|AB|H40.223|ICD10CM|Chronic angle-closure glaucoma, bilateral|Chronic angle-closure glaucoma, bilateral +C2881019|T047|HT|H40.223|ICD10CM|Chronic angle-closure glaucoma, bilateral|Chronic angle-closure glaucoma, bilateral +C3264266|T047|AB|H40.2230|ICD10CM|Chronic angle-closure glaucoma, bilateral, stage unspecified|Chronic angle-closure glaucoma, bilateral, stage unspecified +C3264266|T047|PT|H40.2230|ICD10CM|Chronic angle-closure glaucoma, bilateral, stage unspecified|Chronic angle-closure glaucoma, bilateral, stage unspecified +C3264267|T047|AB|H40.2231|ICD10CM|Chronic angle-closure glaucoma, bilateral, mild stage|Chronic angle-closure glaucoma, bilateral, mild stage +C3264267|T047|PT|H40.2231|ICD10CM|Chronic angle-closure glaucoma, bilateral, mild stage|Chronic angle-closure glaucoma, bilateral, mild stage +C3264268|T047|AB|H40.2232|ICD10CM|Chronic angle-closure glaucoma, bilateral, moderate stage|Chronic angle-closure glaucoma, bilateral, moderate stage +C3264268|T047|PT|H40.2232|ICD10CM|Chronic angle-closure glaucoma, bilateral, moderate stage|Chronic angle-closure glaucoma, bilateral, moderate stage +C3264269|T047|AB|H40.2233|ICD10CM|Chronic angle-closure glaucoma, bilateral, severe stage|Chronic angle-closure glaucoma, bilateral, severe stage +C3264269|T047|PT|H40.2233|ICD10CM|Chronic angle-closure glaucoma, bilateral, severe stage|Chronic angle-closure glaucoma, bilateral, severe stage +C3264270|T047|AB|H40.2234|ICD10CM|Chronic angle-closure glaucoma, bi, indeterminate stage|Chronic angle-closure glaucoma, bi, indeterminate stage +C3264270|T047|PT|H40.2234|ICD10CM|Chronic angle-closure glaucoma, bilateral, indeterminate stage|Chronic angle-closure glaucoma, bilateral, indeterminate stage +C2881020|T047|AB|H40.229|ICD10CM|Chronic angle-closure glaucoma, unspecified eye|Chronic angle-closure glaucoma, unspecified eye +C2881020|T047|HT|H40.229|ICD10CM|Chronic angle-closure glaucoma, unspecified eye|Chronic angle-closure glaucoma, unspecified eye +C3264271|T047|AB|H40.2290|ICD10CM|Chronic angle-closure glaucoma, unsp eye, stage unspecified|Chronic angle-closure glaucoma, unsp eye, stage unspecified +C3264271|T047|PT|H40.2290|ICD10CM|Chronic angle-closure glaucoma, unspecified eye, stage unspecified|Chronic angle-closure glaucoma, unspecified eye, stage unspecified +C3264272|T047|AB|H40.2291|ICD10CM|Chronic angle-closure glaucoma, unspecified eye, mild stage|Chronic angle-closure glaucoma, unspecified eye, mild stage +C3264272|T047|PT|H40.2291|ICD10CM|Chronic angle-closure glaucoma, unspecified eye, mild stage|Chronic angle-closure glaucoma, unspecified eye, mild stage +C3264273|T047|AB|H40.2292|ICD10CM|Chronic angle-closure glaucoma, unsp eye, moderate stage|Chronic angle-closure glaucoma, unsp eye, moderate stage +C3264273|T047|PT|H40.2292|ICD10CM|Chronic angle-closure glaucoma, unspecified eye, moderate stage|Chronic angle-closure glaucoma, unspecified eye, moderate stage +C3264274|T047|AB|H40.2293|ICD10CM|Chronic angle-closure glaucoma, unsp eye, severe stage|Chronic angle-closure glaucoma, unsp eye, severe stage +C3264274|T047|PT|H40.2293|ICD10CM|Chronic angle-closure glaucoma, unspecified eye, severe stage|Chronic angle-closure glaucoma, unspecified eye, severe stage +C3264275|T047|AB|H40.2294|ICD10CM|Chr angle-closure glaucoma, unsp eye, indeterminate stage|Chr angle-closure glaucoma, unsp eye, indeterminate stage +C3264275|T047|PT|H40.2294|ICD10CM|Chronic angle-closure glaucoma, unspecified eye, indeterminate stage|Chronic angle-closure glaucoma, unspecified eye, indeterminate stage +C0154945|T047|HT|H40.23|ICD10CM|Intermittent angle-closure glaucoma|Intermittent angle-closure glaucoma +C0154945|T047|AB|H40.23|ICD10CM|Intermittent angle-closure glaucoma|Intermittent angle-closure glaucoma +C2881021|T047|AB|H40.231|ICD10CM|Intermittent angle-closure glaucoma, right eye|Intermittent angle-closure glaucoma, right eye +C2881021|T047|PT|H40.231|ICD10CM|Intermittent angle-closure glaucoma, right eye|Intermittent angle-closure glaucoma, right eye +C2881022|T047|AB|H40.232|ICD10CM|Intermittent angle-closure glaucoma, left eye|Intermittent angle-closure glaucoma, left eye +C2881022|T047|PT|H40.232|ICD10CM|Intermittent angle-closure glaucoma, left eye|Intermittent angle-closure glaucoma, left eye +C2881023|T047|AB|H40.233|ICD10CM|Intermittent angle-closure glaucoma, bilateral|Intermittent angle-closure glaucoma, bilateral +C2881023|T047|PT|H40.233|ICD10CM|Intermittent angle-closure glaucoma, bilateral|Intermittent angle-closure glaucoma, bilateral +C2881024|T047|AB|H40.239|ICD10CM|Intermittent angle-closure glaucoma, unspecified eye|Intermittent angle-closure glaucoma, unspecified eye +C2881024|T047|PT|H40.239|ICD10CM|Intermittent angle-closure glaucoma, unspecified eye|Intermittent angle-closure glaucoma, unspecified eye +C0154948|T047|HT|H40.24|ICD10CM|Residual stage of angle-closure glaucoma|Residual stage of angle-closure glaucoma +C0154948|T047|AB|H40.24|ICD10CM|Residual stage of angle-closure glaucoma|Residual stage of angle-closure glaucoma +C2881025|T047|AB|H40.241|ICD10CM|Residual stage of angle-closure glaucoma, right eye|Residual stage of angle-closure glaucoma, right eye +C2881025|T047|PT|H40.241|ICD10CM|Residual stage of angle-closure glaucoma, right eye|Residual stage of angle-closure glaucoma, right eye +C2881026|T047|AB|H40.242|ICD10CM|Residual stage of angle-closure glaucoma, left eye|Residual stage of angle-closure glaucoma, left eye +C2881026|T047|PT|H40.242|ICD10CM|Residual stage of angle-closure glaucoma, left eye|Residual stage of angle-closure glaucoma, left eye +C2881027|T047|AB|H40.243|ICD10CM|Residual stage of angle-closure glaucoma, bilateral|Residual stage of angle-closure glaucoma, bilateral +C2881027|T047|PT|H40.243|ICD10CM|Residual stage of angle-closure glaucoma, bilateral|Residual stage of angle-closure glaucoma, bilateral +C2881028|T047|AB|H40.249|ICD10CM|Residual stage of angle-closure glaucoma, unspecified eye|Residual stage of angle-closure glaucoma, unspecified eye +C2881028|T047|PT|H40.249|ICD10CM|Residual stage of angle-closure glaucoma, unspecified eye|Residual stage of angle-closure glaucoma, unspecified eye +C0494532|T047|HT|H40.3|ICD10CM|Glaucoma secondary to eye trauma|Glaucoma secondary to eye trauma +C0494532|T047|AB|H40.3|ICD10CM|Glaucoma secondary to eye trauma|Glaucoma secondary to eye trauma +C0494532|T047|PT|H40.3|ICD10|Glaucoma secondary to eye trauma|Glaucoma secondary to eye trauma +C2881029|T047|AB|H40.30|ICD10CM|Glaucoma secondary to eye trauma, unspecified eye|Glaucoma secondary to eye trauma, unspecified eye +C2881029|T047|HT|H40.30|ICD10CM|Glaucoma secondary to eye trauma, unspecified eye|Glaucoma secondary to eye trauma, unspecified eye +C3264276|T047|AB|H40.30X0|ICD10CM|Glaucoma secondary to eye trauma, unsp eye, stage unsp|Glaucoma secondary to eye trauma, unsp eye, stage unsp +C3264276|T047|PT|H40.30X0|ICD10CM|Glaucoma secondary to eye trauma, unspecified eye, stage unspecified|Glaucoma secondary to eye trauma, unspecified eye, stage unspecified +C3264277|T047|AB|H40.30X1|ICD10CM|Glaucoma secondary to eye trauma, unsp eye, mild stage|Glaucoma secondary to eye trauma, unsp eye, mild stage +C3264277|T047|PT|H40.30X1|ICD10CM|Glaucoma secondary to eye trauma, unspecified eye, mild stage|Glaucoma secondary to eye trauma, unspecified eye, mild stage +C3264278|T047|AB|H40.30X2|ICD10CM|Glaucoma secondary to eye trauma, unsp eye, moderate stage|Glaucoma secondary to eye trauma, unsp eye, moderate stage +C3264278|T047|PT|H40.30X2|ICD10CM|Glaucoma secondary to eye trauma, unspecified eye, moderate stage|Glaucoma secondary to eye trauma, unspecified eye, moderate stage +C3264279|T047|AB|H40.30X3|ICD10CM|Glaucoma secondary to eye trauma, unsp eye, severe stage|Glaucoma secondary to eye trauma, unsp eye, severe stage +C3264279|T047|PT|H40.30X3|ICD10CM|Glaucoma secondary to eye trauma, unspecified eye, severe stage|Glaucoma secondary to eye trauma, unspecified eye, severe stage +C3264280|T047|AB|H40.30X4|ICD10CM|Glaucoma sec to eye trauma, unsp eye, indeterminate stage|Glaucoma sec to eye trauma, unsp eye, indeterminate stage +C3264280|T047|PT|H40.30X4|ICD10CM|Glaucoma secondary to eye trauma, unspecified eye, indeterminate stage|Glaucoma secondary to eye trauma, unspecified eye, indeterminate stage +C2881030|T047|AB|H40.31|ICD10CM|Glaucoma secondary to eye trauma, right eye|Glaucoma secondary to eye trauma, right eye +C2881030|T047|HT|H40.31|ICD10CM|Glaucoma secondary to eye trauma, right eye|Glaucoma secondary to eye trauma, right eye +C3264281|T047|AB|H40.31X0|ICD10CM|Glaucoma secondary to eye trauma, right eye, stage unsp|Glaucoma secondary to eye trauma, right eye, stage unsp +C3264281|T047|PT|H40.31X0|ICD10CM|Glaucoma secondary to eye trauma, right eye, stage unspecified|Glaucoma secondary to eye trauma, right eye, stage unspecified +C3264282|T047|AB|H40.31X1|ICD10CM|Glaucoma secondary to eye trauma, right eye, mild stage|Glaucoma secondary to eye trauma, right eye, mild stage +C3264282|T047|PT|H40.31X1|ICD10CM|Glaucoma secondary to eye trauma, right eye, mild stage|Glaucoma secondary to eye trauma, right eye, mild stage +C3264283|T047|AB|H40.31X2|ICD10CM|Glaucoma secondary to eye trauma, right eye, moderate stage|Glaucoma secondary to eye trauma, right eye, moderate stage +C3264283|T047|PT|H40.31X2|ICD10CM|Glaucoma secondary to eye trauma, right eye, moderate stage|Glaucoma secondary to eye trauma, right eye, moderate stage +C3264284|T047|AB|H40.31X3|ICD10CM|Glaucoma secondary to eye trauma, right eye, severe stage|Glaucoma secondary to eye trauma, right eye, severe stage +C3264284|T047|PT|H40.31X3|ICD10CM|Glaucoma secondary to eye trauma, right eye, severe stage|Glaucoma secondary to eye trauma, right eye, severe stage +C3264285|T047|AB|H40.31X4|ICD10CM|Glaucoma secondary to eye trauma, r eye, indeterminate stage|Glaucoma secondary to eye trauma, r eye, indeterminate stage +C3264285|T047|PT|H40.31X4|ICD10CM|Glaucoma secondary to eye trauma, right eye, indeterminate stage|Glaucoma secondary to eye trauma, right eye, indeterminate stage +C2881031|T047|AB|H40.32|ICD10CM|Glaucoma secondary to eye trauma, left eye|Glaucoma secondary to eye trauma, left eye +C2881031|T047|HT|H40.32|ICD10CM|Glaucoma secondary to eye trauma, left eye|Glaucoma secondary to eye trauma, left eye +C3264286|T047|AB|H40.32X0|ICD10CM|Glaucoma secondary to eye trauma, left eye, stage unsp|Glaucoma secondary to eye trauma, left eye, stage unsp +C3264286|T047|PT|H40.32X0|ICD10CM|Glaucoma secondary to eye trauma, left eye, stage unspecified|Glaucoma secondary to eye trauma, left eye, stage unspecified +C3264287|T047|AB|H40.32X1|ICD10CM|Glaucoma secondary to eye trauma, left eye, mild stage|Glaucoma secondary to eye trauma, left eye, mild stage +C3264287|T047|PT|H40.32X1|ICD10CM|Glaucoma secondary to eye trauma, left eye, mild stage|Glaucoma secondary to eye trauma, left eye, mild stage +C3264288|T047|AB|H40.32X2|ICD10CM|Glaucoma secondary to eye trauma, left eye, moderate stage|Glaucoma secondary to eye trauma, left eye, moderate stage +C3264288|T047|PT|H40.32X2|ICD10CM|Glaucoma secondary to eye trauma, left eye, moderate stage|Glaucoma secondary to eye trauma, left eye, moderate stage +C3264289|T047|AB|H40.32X3|ICD10CM|Glaucoma secondary to eye trauma, left eye, severe stage|Glaucoma secondary to eye trauma, left eye, severe stage +C3264289|T047|PT|H40.32X3|ICD10CM|Glaucoma secondary to eye trauma, left eye, severe stage|Glaucoma secondary to eye trauma, left eye, severe stage +C3264290|T047|AB|H40.32X4|ICD10CM|Glaucoma sec to eye trauma, left eye, indeterminate stage|Glaucoma sec to eye trauma, left eye, indeterminate stage +C3264290|T047|PT|H40.32X4|ICD10CM|Glaucoma secondary to eye trauma, left eye, indeterminate stage|Glaucoma secondary to eye trauma, left eye, indeterminate stage +C2881032|T047|AB|H40.33|ICD10CM|Glaucoma secondary to eye trauma, bilateral|Glaucoma secondary to eye trauma, bilateral +C2881032|T047|HT|H40.33|ICD10CM|Glaucoma secondary to eye trauma, bilateral|Glaucoma secondary to eye trauma, bilateral +C3264291|T047|AB|H40.33X0|ICD10CM|Glaucoma secondary to eye trauma, bilateral, stage unsp|Glaucoma secondary to eye trauma, bilateral, stage unsp +C3264291|T047|PT|H40.33X0|ICD10CM|Glaucoma secondary to eye trauma, bilateral, stage unspecified|Glaucoma secondary to eye trauma, bilateral, stage unspecified +C3264292|T047|AB|H40.33X1|ICD10CM|Glaucoma secondary to eye trauma, bilateral, mild stage|Glaucoma secondary to eye trauma, bilateral, mild stage +C3264292|T047|PT|H40.33X1|ICD10CM|Glaucoma secondary to eye trauma, bilateral, mild stage|Glaucoma secondary to eye trauma, bilateral, mild stage +C3264293|T047|AB|H40.33X2|ICD10CM|Glaucoma secondary to eye trauma, bilateral, moderate stage|Glaucoma secondary to eye trauma, bilateral, moderate stage +C3264293|T047|PT|H40.33X2|ICD10CM|Glaucoma secondary to eye trauma, bilateral, moderate stage|Glaucoma secondary to eye trauma, bilateral, moderate stage +C3264294|T047|AB|H40.33X3|ICD10CM|Glaucoma secondary to eye trauma, bilateral, severe stage|Glaucoma secondary to eye trauma, bilateral, severe stage +C3264294|T047|PT|H40.33X3|ICD10CM|Glaucoma secondary to eye trauma, bilateral, severe stage|Glaucoma secondary to eye trauma, bilateral, severe stage +C3264295|T047|AB|H40.33X4|ICD10CM|Glaucoma secondary to eye trauma, bi, indeterminate stage|Glaucoma secondary to eye trauma, bi, indeterminate stage +C3264295|T047|PT|H40.33X4|ICD10CM|Glaucoma secondary to eye trauma, bilateral, indeterminate stage|Glaucoma secondary to eye trauma, bilateral, indeterminate stage +C0494533|T047|PT|H40.4|ICD10|Glaucoma secondary to eye inflammation|Glaucoma secondary to eye inflammation +C0494533|T047|HT|H40.4|ICD10CM|Glaucoma secondary to eye inflammation|Glaucoma secondary to eye inflammation +C0494533|T047|AB|H40.4|ICD10CM|Glaucoma secondary to eye inflammation|Glaucoma secondary to eye inflammation +C2881033|T047|AB|H40.40|ICD10CM|Glaucoma secondary to eye inflammation, unspecified eye|Glaucoma secondary to eye inflammation, unspecified eye +C2881033|T047|HT|H40.40|ICD10CM|Glaucoma secondary to eye inflammation, unspecified eye|Glaucoma secondary to eye inflammation, unspecified eye +C3264296|T047|AB|H40.40X0|ICD10CM|Glaucoma secondary to eye inflammation, unsp eye, stage unsp|Glaucoma secondary to eye inflammation, unsp eye, stage unsp +C3264296|T047|PT|H40.40X0|ICD10CM|Glaucoma secondary to eye inflammation, unspecified eye, stage unspecified|Glaucoma secondary to eye inflammation, unspecified eye, stage unspecified +C3264297|T047|AB|H40.40X1|ICD10CM|Glaucoma secondary to eye inflammation, unsp eye, mild stage|Glaucoma secondary to eye inflammation, unsp eye, mild stage +C3264297|T047|PT|H40.40X1|ICD10CM|Glaucoma secondary to eye inflammation, unspecified eye, mild stage|Glaucoma secondary to eye inflammation, unspecified eye, mild stage +C3264298|T047|AB|H40.40X2|ICD10CM|Glaucoma secondary to eye inflam, unsp eye, moderate stage|Glaucoma secondary to eye inflam, unsp eye, moderate stage +C3264298|T047|PT|H40.40X2|ICD10CM|Glaucoma secondary to eye inflammation, unspecified eye, moderate stage|Glaucoma secondary to eye inflammation, unspecified eye, moderate stage +C3264299|T047|AB|H40.40X3|ICD10CM|Glaucoma secondary to eye inflam, unsp eye, severe stage|Glaucoma secondary to eye inflam, unsp eye, severe stage +C3264299|T047|PT|H40.40X3|ICD10CM|Glaucoma secondary to eye inflammation, unspecified eye, severe stage|Glaucoma secondary to eye inflammation, unspecified eye, severe stage +C3264300|T047|AB|H40.40X4|ICD10CM|Glaucoma sec to eye inflam, unsp eye, indeterminate stage|Glaucoma sec to eye inflam, unsp eye, indeterminate stage +C3264300|T047|PT|H40.40X4|ICD10CM|Glaucoma secondary to eye inflammation, unspecified eye, indeterminate stage|Glaucoma secondary to eye inflammation, unspecified eye, indeterminate stage +C2881034|T047|AB|H40.41|ICD10CM|Glaucoma secondary to eye inflammation, right eye|Glaucoma secondary to eye inflammation, right eye +C2881034|T047|HT|H40.41|ICD10CM|Glaucoma secondary to eye inflammation, right eye|Glaucoma secondary to eye inflammation, right eye +C3264301|T047|AB|H40.41X0|ICD10CM|Glaucoma secondary to eye inflam, right eye, stage unsp|Glaucoma secondary to eye inflam, right eye, stage unsp +C3264301|T047|PT|H40.41X0|ICD10CM|Glaucoma secondary to eye inflammation, right eye, stage unspecified|Glaucoma secondary to eye inflammation, right eye, stage unspecified +C3264302|T047|AB|H40.41X1|ICD10CM|Glaucoma secondary to eye inflam, right eye, mild stage|Glaucoma secondary to eye inflam, right eye, mild stage +C3264302|T047|PT|H40.41X1|ICD10CM|Glaucoma secondary to eye inflammation, right eye, mild stage|Glaucoma secondary to eye inflammation, right eye, mild stage +C3264303|T047|AB|H40.41X2|ICD10CM|Glaucoma secondary to eye inflam, right eye, moderate stage|Glaucoma secondary to eye inflam, right eye, moderate stage +C3264303|T047|PT|H40.41X2|ICD10CM|Glaucoma secondary to eye inflammation, right eye, moderate stage|Glaucoma secondary to eye inflammation, right eye, moderate stage +C3264304|T047|AB|H40.41X3|ICD10CM|Glaucoma secondary to eye inflam, right eye, severe stage|Glaucoma secondary to eye inflam, right eye, severe stage +C3264304|T047|PT|H40.41X3|ICD10CM|Glaucoma secondary to eye inflammation, right eye, severe stage|Glaucoma secondary to eye inflammation, right eye, severe stage +C3264305|T047|AB|H40.41X4|ICD10CM|Glaucoma secondary to eye inflam, r eye, indeterminate stage|Glaucoma secondary to eye inflam, r eye, indeterminate stage +C3264305|T047|PT|H40.41X4|ICD10CM|Glaucoma secondary to eye inflammation, right eye, indeterminate stage|Glaucoma secondary to eye inflammation, right eye, indeterminate stage +C2881035|T047|AB|H40.42|ICD10CM|Glaucoma secondary to eye inflammation, left eye|Glaucoma secondary to eye inflammation, left eye +C2881035|T047|HT|H40.42|ICD10CM|Glaucoma secondary to eye inflammation, left eye|Glaucoma secondary to eye inflammation, left eye +C3264306|T047|AB|H40.42X0|ICD10CM|Glaucoma secondary to eye inflammation, left eye, stage unsp|Glaucoma secondary to eye inflammation, left eye, stage unsp +C3264306|T047|PT|H40.42X0|ICD10CM|Glaucoma secondary to eye inflammation, left eye, stage unspecified|Glaucoma secondary to eye inflammation, left eye, stage unspecified +C3264307|T047|AB|H40.42X1|ICD10CM|Glaucoma secondary to eye inflammation, left eye, mild stage|Glaucoma secondary to eye inflammation, left eye, mild stage +C3264307|T047|PT|H40.42X1|ICD10CM|Glaucoma secondary to eye inflammation, left eye, mild stage|Glaucoma secondary to eye inflammation, left eye, mild stage +C3264308|T047|AB|H40.42X2|ICD10CM|Glaucoma secondary to eye inflam, left eye, moderate stage|Glaucoma secondary to eye inflam, left eye, moderate stage +C3264308|T047|PT|H40.42X2|ICD10CM|Glaucoma secondary to eye inflammation, left eye, moderate stage|Glaucoma secondary to eye inflammation, left eye, moderate stage +C3264309|T047|AB|H40.42X3|ICD10CM|Glaucoma secondary to eye inflam, left eye, severe stage|Glaucoma secondary to eye inflam, left eye, severe stage +C3264309|T047|PT|H40.42X3|ICD10CM|Glaucoma secondary to eye inflammation, left eye, severe stage|Glaucoma secondary to eye inflammation, left eye, severe stage +C3264310|T047|AB|H40.42X4|ICD10CM|Glaucoma sec to eye inflam, left eye, indeterminate stage|Glaucoma sec to eye inflam, left eye, indeterminate stage +C3264310|T047|PT|H40.42X4|ICD10CM|Glaucoma secondary to eye inflammation, left eye, indeterminate stage|Glaucoma secondary to eye inflammation, left eye, indeterminate stage +C2881036|T047|AB|H40.43|ICD10CM|Glaucoma secondary to eye inflammation, bilateral|Glaucoma secondary to eye inflammation, bilateral +C2881036|T047|HT|H40.43|ICD10CM|Glaucoma secondary to eye inflammation, bilateral|Glaucoma secondary to eye inflammation, bilateral +C3264311|T047|AB|H40.43X0|ICD10CM|Glaucoma secondary to eye inflam, bilateral, stage unsp|Glaucoma secondary to eye inflam, bilateral, stage unsp +C3264311|T047|PT|H40.43X0|ICD10CM|Glaucoma secondary to eye inflammation, bilateral, stage unspecified|Glaucoma secondary to eye inflammation, bilateral, stage unspecified +C3264312|T047|AB|H40.43X1|ICD10CM|Glaucoma secondary to eye inflam, bilateral, mild stage|Glaucoma secondary to eye inflam, bilateral, mild stage +C3264312|T047|PT|H40.43X1|ICD10CM|Glaucoma secondary to eye inflammation, bilateral, mild stage|Glaucoma secondary to eye inflammation, bilateral, mild stage +C3264313|T047|AB|H40.43X2|ICD10CM|Glaucoma secondary to eye inflam, bilateral, moderate stage|Glaucoma secondary to eye inflam, bilateral, moderate stage +C3264313|T047|PT|H40.43X2|ICD10CM|Glaucoma secondary to eye inflammation, bilateral, moderate stage|Glaucoma secondary to eye inflammation, bilateral, moderate stage +C3264314|T047|AB|H40.43X3|ICD10CM|Glaucoma secondary to eye inflam, bilateral, severe stage|Glaucoma secondary to eye inflam, bilateral, severe stage +C3264314|T047|PT|H40.43X3|ICD10CM|Glaucoma secondary to eye inflammation, bilateral, severe stage|Glaucoma secondary to eye inflammation, bilateral, severe stage +C3264315|T047|AB|H40.43X4|ICD10CM|Glaucoma secondary to eye inflam, bi, indeterminate stage|Glaucoma secondary to eye inflam, bi, indeterminate stage +C3264315|T047|PT|H40.43X4|ICD10CM|Glaucoma secondary to eye inflammation, bilateral, indeterminate stage|Glaucoma secondary to eye inflammation, bilateral, indeterminate stage +C0494534|T047|HT|H40.5|ICD10CM|Glaucoma secondary to other eye disorders|Glaucoma secondary to other eye disorders +C0494534|T047|AB|H40.5|ICD10CM|Glaucoma secondary to other eye disorders|Glaucoma secondary to other eye disorders +C0494534|T047|PT|H40.5|ICD10|Glaucoma secondary to other eye disorders|Glaucoma secondary to other eye disorders +C2881037|T047|AB|H40.50|ICD10CM|Glaucoma secondary to other eye disorders, unspecified eye|Glaucoma secondary to other eye disorders, unspecified eye +C2881037|T047|HT|H40.50|ICD10CM|Glaucoma secondary to other eye disorders, unspecified eye|Glaucoma secondary to other eye disorders, unspecified eye +C3264316|T047|AB|H40.50X0|ICD10CM|Glaucoma secondary to oth eye disord, unsp eye, stage unsp|Glaucoma secondary to oth eye disord, unsp eye, stage unsp +C3264316|T047|PT|H40.50X0|ICD10CM|Glaucoma secondary to other eye disorders, unspecified eye, stage unspecified|Glaucoma secondary to other eye disorders, unspecified eye, stage unspecified +C3264317|T047|AB|H40.50X1|ICD10CM|Glaucoma secondary to oth eye disord, unsp eye, mild stage|Glaucoma secondary to oth eye disord, unsp eye, mild stage +C3264317|T047|PT|H40.50X1|ICD10CM|Glaucoma secondary to other eye disorders, unspecified eye, mild stage|Glaucoma secondary to other eye disorders, unspecified eye, mild stage +C3264318|T047|AB|H40.50X2|ICD10CM|Glaucoma sec to oth eye disord, unsp eye, moderate stage|Glaucoma sec to oth eye disord, unsp eye, moderate stage +C3264318|T047|PT|H40.50X2|ICD10CM|Glaucoma secondary to other eye disorders, unspecified eye, moderate stage|Glaucoma secondary to other eye disorders, unspecified eye, moderate stage +C3264319|T047|AB|H40.50X3|ICD10CM|Glaucoma secondary to oth eye disord, unsp eye, severe stage|Glaucoma secondary to oth eye disord, unsp eye, severe stage +C3264319|T047|PT|H40.50X3|ICD10CM|Glaucoma secondary to other eye disorders, unspecified eye, severe stage|Glaucoma secondary to other eye disorders, unspecified eye, severe stage +C3264320|T047|AB|H40.50X4|ICD10CM|Glaucoma sec to oth eye disord, unsp eye, indeterminate stg|Glaucoma sec to oth eye disord, unsp eye, indeterminate stg +C3264320|T047|PT|H40.50X4|ICD10CM|Glaucoma secondary to other eye disorders, unspecified eye, indeterminate stage|Glaucoma secondary to other eye disorders, unspecified eye, indeterminate stage +C2881038|T047|AB|H40.51|ICD10CM|Glaucoma secondary to other eye disorders, right eye|Glaucoma secondary to other eye disorders, right eye +C2881038|T047|HT|H40.51|ICD10CM|Glaucoma secondary to other eye disorders, right eye|Glaucoma secondary to other eye disorders, right eye +C3264321|T047|AB|H40.51X0|ICD10CM|Glaucoma secondary to oth eye disord, right eye, stage unsp|Glaucoma secondary to oth eye disord, right eye, stage unsp +C3264321|T047|PT|H40.51X0|ICD10CM|Glaucoma secondary to other eye disorders, right eye, stage unspecified|Glaucoma secondary to other eye disorders, right eye, stage unspecified +C3264322|T047|AB|H40.51X1|ICD10CM|Glaucoma secondary to oth eye disord, right eye, mild stage|Glaucoma secondary to oth eye disord, right eye, mild stage +C3264322|T047|PT|H40.51X1|ICD10CM|Glaucoma secondary to other eye disorders, right eye, mild stage|Glaucoma secondary to other eye disorders, right eye, mild stage +C3264323|T047|AB|H40.51X2|ICD10CM|Glaucoma secondary to oth eye disord, r eye, moderate stage|Glaucoma secondary to oth eye disord, r eye, moderate stage +C3264323|T047|PT|H40.51X2|ICD10CM|Glaucoma secondary to other eye disorders, right eye, moderate stage|Glaucoma secondary to other eye disorders, right eye, moderate stage +C3264324|T047|AB|H40.51X3|ICD10CM|Glaucoma secondary to oth eye disord, r eye, severe stage|Glaucoma secondary to oth eye disord, r eye, severe stage +C3264324|T047|PT|H40.51X3|ICD10CM|Glaucoma secondary to other eye disorders, right eye, severe stage|Glaucoma secondary to other eye disorders, right eye, severe stage +C3264325|T047|AB|H40.51X4|ICD10CM|Glaucoma sec to oth eye disord, r eye, indeterminate stage|Glaucoma sec to oth eye disord, r eye, indeterminate stage +C3264325|T047|PT|H40.51X4|ICD10CM|Glaucoma secondary to other eye disorders, right eye, indeterminate stage|Glaucoma secondary to other eye disorders, right eye, indeterminate stage +C2881039|T047|AB|H40.52|ICD10CM|Glaucoma secondary to other eye disorders, left eye|Glaucoma secondary to other eye disorders, left eye +C2881039|T047|HT|H40.52|ICD10CM|Glaucoma secondary to other eye disorders, left eye|Glaucoma secondary to other eye disorders, left eye +C3264326|T047|AB|H40.52X0|ICD10CM|Glaucoma secondary to oth eye disord, left eye, stage unsp|Glaucoma secondary to oth eye disord, left eye, stage unsp +C3264326|T047|PT|H40.52X0|ICD10CM|Glaucoma secondary to other eye disorders, left eye, stage unspecified|Glaucoma secondary to other eye disorders, left eye, stage unspecified +C3264327|T047|AB|H40.52X1|ICD10CM|Glaucoma secondary to oth eye disord, left eye, mild stage|Glaucoma secondary to oth eye disord, left eye, mild stage +C3264327|T047|PT|H40.52X1|ICD10CM|Glaucoma secondary to other eye disorders, left eye, mild stage|Glaucoma secondary to other eye disorders, left eye, mild stage +C3264328|T047|AB|H40.52X2|ICD10CM|Glaucoma sec to oth eye disord, left eye, moderate stage|Glaucoma sec to oth eye disord, left eye, moderate stage +C3264328|T047|PT|H40.52X2|ICD10CM|Glaucoma secondary to other eye disorders, left eye, moderate stage|Glaucoma secondary to other eye disorders, left eye, moderate stage +C3264329|T047|AB|H40.52X3|ICD10CM|Glaucoma secondary to oth eye disord, left eye, severe stage|Glaucoma secondary to oth eye disord, left eye, severe stage +C3264329|T047|PT|H40.52X3|ICD10CM|Glaucoma secondary to other eye disorders, left eye, severe stage|Glaucoma secondary to other eye disorders, left eye, severe stage +C3264330|T047|AB|H40.52X4|ICD10CM|Glaucoma sec to oth eye disord, l eye, indeterminate stage|Glaucoma sec to oth eye disord, l eye, indeterminate stage +C3264330|T047|PT|H40.52X4|ICD10CM|Glaucoma secondary to other eye disorders, left eye, indeterminate stage|Glaucoma secondary to other eye disorders, left eye, indeterminate stage +C2881040|T047|AB|H40.53|ICD10CM|Glaucoma secondary to other eye disorders, bilateral|Glaucoma secondary to other eye disorders, bilateral +C2881040|T047|HT|H40.53|ICD10CM|Glaucoma secondary to other eye disorders, bilateral|Glaucoma secondary to other eye disorders, bilateral +C3264331|T047|AB|H40.53X0|ICD10CM|Glaucoma secondary to oth eye disorders, bi, stage unsp|Glaucoma secondary to oth eye disorders, bi, stage unsp +C3264331|T047|PT|H40.53X0|ICD10CM|Glaucoma secondary to other eye disorders, bilateral, stage unspecified|Glaucoma secondary to other eye disorders, bilateral, stage unspecified +C3264332|T047|AB|H40.53X1|ICD10CM|Glaucoma secondary to oth eye disorders, bi, mild stage|Glaucoma secondary to oth eye disorders, bi, mild stage +C3264332|T047|PT|H40.53X1|ICD10CM|Glaucoma secondary to other eye disorders, bilateral, mild stage|Glaucoma secondary to other eye disorders, bilateral, mild stage +C3264333|T047|AB|H40.53X2|ICD10CM|Glaucoma secondary to oth eye disorders, bi, moderate stage|Glaucoma secondary to oth eye disorders, bi, moderate stage +C3264333|T047|PT|H40.53X2|ICD10CM|Glaucoma secondary to other eye disorders, bilateral, moderate stage|Glaucoma secondary to other eye disorders, bilateral, moderate stage +C3264334|T047|AB|H40.53X3|ICD10CM|Glaucoma secondary to oth eye disorders, bi, severe stage|Glaucoma secondary to oth eye disorders, bi, severe stage +C3264334|T047|PT|H40.53X3|ICD10CM|Glaucoma secondary to other eye disorders, bilateral, severe stage|Glaucoma secondary to other eye disorders, bilateral, severe stage +C3264335|T047|AB|H40.53X4|ICD10CM|Glaucoma sec to oth eye disord, bi, indeterminate stage|Glaucoma sec to oth eye disord, bi, indeterminate stage +C3264335|T047|PT|H40.53X4|ICD10CM|Glaucoma secondary to other eye disorders, bilateral, indeterminate stage|Glaucoma secondary to other eye disorders, bilateral, indeterminate stage +C0494535|T047|PT|H40.6|ICD10|Glaucoma secondary to drugs|Glaucoma secondary to drugs +C0494535|T047|HT|H40.6|ICD10CM|Glaucoma secondary to drugs|Glaucoma secondary to drugs +C0494535|T047|AB|H40.6|ICD10CM|Glaucoma secondary to drugs|Glaucoma secondary to drugs +C2881041|T047|AB|H40.60|ICD10CM|Glaucoma secondary to drugs, unspecified eye|Glaucoma secondary to drugs, unspecified eye +C2881041|T047|HT|H40.60|ICD10CM|Glaucoma secondary to drugs, unspecified eye|Glaucoma secondary to drugs, unspecified eye +C3264336|T047|AB|H40.60X0|ICD10CM|Glaucoma secondary to drugs, unsp eye, stage unspecified|Glaucoma secondary to drugs, unsp eye, stage unspecified +C3264336|T047|PT|H40.60X0|ICD10CM|Glaucoma secondary to drugs, unspecified eye, stage unspecified|Glaucoma secondary to drugs, unspecified eye, stage unspecified +C3264337|T047|AB|H40.60X1|ICD10CM|Glaucoma secondary to drugs, unspecified eye, mild stage|Glaucoma secondary to drugs, unspecified eye, mild stage +C3264337|T047|PT|H40.60X1|ICD10CM|Glaucoma secondary to drugs, unspecified eye, mild stage|Glaucoma secondary to drugs, unspecified eye, mild stage +C3264338|T047|AB|H40.60X2|ICD10CM|Glaucoma secondary to drugs, unspecified eye, moderate stage|Glaucoma secondary to drugs, unspecified eye, moderate stage +C3264338|T047|PT|H40.60X2|ICD10CM|Glaucoma secondary to drugs, unspecified eye, moderate stage|Glaucoma secondary to drugs, unspecified eye, moderate stage +C3264339|T047|AB|H40.60X3|ICD10CM|Glaucoma secondary to drugs, unspecified eye, severe stage|Glaucoma secondary to drugs, unspecified eye, severe stage +C3264339|T047|PT|H40.60X3|ICD10CM|Glaucoma secondary to drugs, unspecified eye, severe stage|Glaucoma secondary to drugs, unspecified eye, severe stage +C3264340|T047|AB|H40.60X4|ICD10CM|Glaucoma secondary to drugs, unsp eye, indeterminate stage|Glaucoma secondary to drugs, unsp eye, indeterminate stage +C3264340|T047|PT|H40.60X4|ICD10CM|Glaucoma secondary to drugs, unspecified eye, indeterminate stage|Glaucoma secondary to drugs, unspecified eye, indeterminate stage +C2881042|T047|AB|H40.61|ICD10CM|Glaucoma secondary to drugs, right eye|Glaucoma secondary to drugs, right eye +C2881042|T047|HT|H40.61|ICD10CM|Glaucoma secondary to drugs, right eye|Glaucoma secondary to drugs, right eye +C3264341|T047|AB|H40.61X0|ICD10CM|Glaucoma secondary to drugs, right eye, stage unspecified|Glaucoma secondary to drugs, right eye, stage unspecified +C3264341|T047|PT|H40.61X0|ICD10CM|Glaucoma secondary to drugs, right eye, stage unspecified|Glaucoma secondary to drugs, right eye, stage unspecified +C3264342|T047|AB|H40.61X1|ICD10CM|Glaucoma secondary to drugs, right eye, mild stage|Glaucoma secondary to drugs, right eye, mild stage +C3264342|T047|PT|H40.61X1|ICD10CM|Glaucoma secondary to drugs, right eye, mild stage|Glaucoma secondary to drugs, right eye, mild stage +C3264343|T047|AB|H40.61X2|ICD10CM|Glaucoma secondary to drugs, right eye, moderate stage|Glaucoma secondary to drugs, right eye, moderate stage +C3264343|T047|PT|H40.61X2|ICD10CM|Glaucoma secondary to drugs, right eye, moderate stage|Glaucoma secondary to drugs, right eye, moderate stage +C3264344|T047|AB|H40.61X3|ICD10CM|Glaucoma secondary to drugs, right eye, severe stage|Glaucoma secondary to drugs, right eye, severe stage +C3264344|T047|PT|H40.61X3|ICD10CM|Glaucoma secondary to drugs, right eye, severe stage|Glaucoma secondary to drugs, right eye, severe stage +C3264345|T047|AB|H40.61X4|ICD10CM|Glaucoma secondary to drugs, right eye, indeterminate stage|Glaucoma secondary to drugs, right eye, indeterminate stage +C3264345|T047|PT|H40.61X4|ICD10CM|Glaucoma secondary to drugs, right eye, indeterminate stage|Glaucoma secondary to drugs, right eye, indeterminate stage +C2881043|T047|AB|H40.62|ICD10CM|Glaucoma secondary to drugs, left eye|Glaucoma secondary to drugs, left eye +C2881043|T047|HT|H40.62|ICD10CM|Glaucoma secondary to drugs, left eye|Glaucoma secondary to drugs, left eye +C3264346|T047|AB|H40.62X0|ICD10CM|Glaucoma secondary to drugs, left eye, stage unspecified|Glaucoma secondary to drugs, left eye, stage unspecified +C3264346|T047|PT|H40.62X0|ICD10CM|Glaucoma secondary to drugs, left eye, stage unspecified|Glaucoma secondary to drugs, left eye, stage unspecified +C3264347|T047|AB|H40.62X1|ICD10CM|Glaucoma secondary to drugs, left eye, mild stage|Glaucoma secondary to drugs, left eye, mild stage +C3264347|T047|PT|H40.62X1|ICD10CM|Glaucoma secondary to drugs, left eye, mild stage|Glaucoma secondary to drugs, left eye, mild stage +C3264348|T047|AB|H40.62X2|ICD10CM|Glaucoma secondary to drugs, left eye, moderate stage|Glaucoma secondary to drugs, left eye, moderate stage +C3264348|T047|PT|H40.62X2|ICD10CM|Glaucoma secondary to drugs, left eye, moderate stage|Glaucoma secondary to drugs, left eye, moderate stage +C3264349|T047|AB|H40.62X3|ICD10CM|Glaucoma secondary to drugs, left eye, severe stage|Glaucoma secondary to drugs, left eye, severe stage +C3264349|T047|PT|H40.62X3|ICD10CM|Glaucoma secondary to drugs, left eye, severe stage|Glaucoma secondary to drugs, left eye, severe stage +C3264350|T047|AB|H40.62X4|ICD10CM|Glaucoma secondary to drugs, left eye, indeterminate stage|Glaucoma secondary to drugs, left eye, indeterminate stage +C3264350|T047|PT|H40.62X4|ICD10CM|Glaucoma secondary to drugs, left eye, indeterminate stage|Glaucoma secondary to drugs, left eye, indeterminate stage +C2881044|T047|AB|H40.63|ICD10CM|Glaucoma secondary to drugs, bilateral|Glaucoma secondary to drugs, bilateral +C2881044|T047|HT|H40.63|ICD10CM|Glaucoma secondary to drugs, bilateral|Glaucoma secondary to drugs, bilateral +C3264351|T047|AB|H40.63X0|ICD10CM|Glaucoma secondary to drugs, bilateral, stage unspecified|Glaucoma secondary to drugs, bilateral, stage unspecified +C3264351|T047|PT|H40.63X0|ICD10CM|Glaucoma secondary to drugs, bilateral, stage unspecified|Glaucoma secondary to drugs, bilateral, stage unspecified +C3264352|T047|AB|H40.63X1|ICD10CM|Glaucoma secondary to drugs, bilateral, mild stage|Glaucoma secondary to drugs, bilateral, mild stage +C3264352|T047|PT|H40.63X1|ICD10CM|Glaucoma secondary to drugs, bilateral, mild stage|Glaucoma secondary to drugs, bilateral, mild stage +C3264353|T047|AB|H40.63X2|ICD10CM|Glaucoma secondary to drugs, bilateral, moderate stage|Glaucoma secondary to drugs, bilateral, moderate stage +C3264353|T047|PT|H40.63X2|ICD10CM|Glaucoma secondary to drugs, bilateral, moderate stage|Glaucoma secondary to drugs, bilateral, moderate stage +C3264354|T047|AB|H40.63X3|ICD10CM|Glaucoma secondary to drugs, bilateral, severe stage|Glaucoma secondary to drugs, bilateral, severe stage +C3264354|T047|PT|H40.63X3|ICD10CM|Glaucoma secondary to drugs, bilateral, severe stage|Glaucoma secondary to drugs, bilateral, severe stage +C3264355|T047|AB|H40.63X4|ICD10CM|Glaucoma secondary to drugs, bilateral, indeterminate stage|Glaucoma secondary to drugs, bilateral, indeterminate stage +C3264355|T047|PT|H40.63X4|ICD10CM|Glaucoma secondary to drugs, bilateral, indeterminate stage|Glaucoma secondary to drugs, bilateral, indeterminate stage +C0348555|T047|HT|H40.8|ICD10CM|Other glaucoma|Other glaucoma +C0348555|T047|AB|H40.8|ICD10CM|Other glaucoma|Other glaucoma +C0348555|T047|PT|H40.8|ICD10|Other glaucoma|Other glaucoma +C0339596|T047|HT|H40.81|ICD10CM|Glaucoma with increased episcleral venous pressure|Glaucoma with increased episcleral venous pressure +C0339596|T047|AB|H40.81|ICD10CM|Glaucoma with increased episcleral venous pressure|Glaucoma with increased episcleral venous pressure +C2881045|T047|AB|H40.811|ICD10CM|Glaucoma w increased episcleral venous pressure, right eye|Glaucoma w increased episcleral venous pressure, right eye +C2881045|T047|PT|H40.811|ICD10CM|Glaucoma with increased episcleral venous pressure, right eye|Glaucoma with increased episcleral venous pressure, right eye +C2881046|T047|AB|H40.812|ICD10CM|Glaucoma with increased episcleral venous pressure, left eye|Glaucoma with increased episcleral venous pressure, left eye +C2881046|T047|PT|H40.812|ICD10CM|Glaucoma with increased episcleral venous pressure, left eye|Glaucoma with increased episcleral venous pressure, left eye +C2881047|T047|AB|H40.813|ICD10CM|Glaucoma w increased episcleral venous pressure, bilateral|Glaucoma w increased episcleral venous pressure, bilateral +C2881047|T047|PT|H40.813|ICD10CM|Glaucoma with increased episcleral venous pressure, bilateral|Glaucoma with increased episcleral venous pressure, bilateral +C2881048|T047|AB|H40.819|ICD10CM|Glaucoma with increased episcleral venous pressure, unsp eye|Glaucoma with increased episcleral venous pressure, unsp eye +C2881048|T047|PT|H40.819|ICD10CM|Glaucoma with increased episcleral venous pressure, unspecified eye|Glaucoma with increased episcleral venous pressure, unspecified eye +C0154968|T047|HT|H40.82|ICD10CM|Hypersecretion glaucoma|Hypersecretion glaucoma +C0154968|T047|AB|H40.82|ICD10CM|Hypersecretion glaucoma|Hypersecretion glaucoma +C2047534|T047|AB|H40.821|ICD10CM|Hypersecretion glaucoma, right eye|Hypersecretion glaucoma, right eye +C2047534|T047|PT|H40.821|ICD10CM|Hypersecretion glaucoma, right eye|Hypersecretion glaucoma, right eye +C2047533|T047|AB|H40.822|ICD10CM|Hypersecretion glaucoma, left eye|Hypersecretion glaucoma, left eye +C2047533|T047|PT|H40.822|ICD10CM|Hypersecretion glaucoma, left eye|Hypersecretion glaucoma, left eye +C2881049|T047|AB|H40.823|ICD10CM|Hypersecretion glaucoma, bilateral|Hypersecretion glaucoma, bilateral +C2881049|T047|PT|H40.823|ICD10CM|Hypersecretion glaucoma, bilateral|Hypersecretion glaucoma, bilateral +C2881050|T047|AB|H40.829|ICD10CM|Hypersecretion glaucoma, unspecified eye|Hypersecretion glaucoma, unspecified eye +C2881050|T047|PT|H40.829|ICD10CM|Hypersecretion glaucoma, unspecified eye|Hypersecretion glaucoma, unspecified eye +C1135189|T047|HT|H40.83|ICD10CM|Aqueous misdirection|Aqueous misdirection +C1135189|T047|AB|H40.83|ICD10CM|Aqueous misdirection|Aqueous misdirection +C0271152|T047|ET|H40.83|ICD10CM|Malignant glaucoma|Malignant glaucoma +C2881051|T047|AB|H40.831|ICD10CM|Aqueous misdirection, right eye|Aqueous misdirection, right eye +C2881051|T047|PT|H40.831|ICD10CM|Aqueous misdirection, right eye|Aqueous misdirection, right eye +C2881052|T047|AB|H40.832|ICD10CM|Aqueous misdirection, left eye|Aqueous misdirection, left eye +C2881052|T047|PT|H40.832|ICD10CM|Aqueous misdirection, left eye|Aqueous misdirection, left eye +C2881053|T047|AB|H40.833|ICD10CM|Aqueous misdirection, bilateral|Aqueous misdirection, bilateral +C2881053|T047|PT|H40.833|ICD10CM|Aqueous misdirection, bilateral|Aqueous misdirection, bilateral +C2881054|T047|AB|H40.839|ICD10CM|Aqueous misdirection, unspecified eye|Aqueous misdirection, unspecified eye +C2881054|T047|PT|H40.839|ICD10CM|Aqueous misdirection, unspecified eye|Aqueous misdirection, unspecified eye +C0029802|T047|AB|H40.89|ICD10CM|Other specified glaucoma|Other specified glaucoma +C0029802|T047|PT|H40.89|ICD10CM|Other specified glaucoma|Other specified glaucoma +C0017601|T047|PT|H40.9|ICD10|Glaucoma, unspecified|Glaucoma, unspecified +C0017601|T047|PT|H40.9|ICD10CM|Unspecified glaucoma|Unspecified glaucoma +C0017601|T047|AB|H40.9|ICD10CM|Unspecified glaucoma|Unspecified glaucoma +C0348557|T047|HT|H42|ICD10|Glaucoma in diseases classified elsewhere|Glaucoma in diseases classified elsewhere +C0348557|T047|PT|H42|ICD10CM|Glaucoma in diseases classified elsewhere|Glaucoma in diseases classified elsewhere +C0348557|T047|AB|H42|ICD10CM|Glaucoma in diseases classified elsewhere|Glaucoma in diseases classified elsewhere +C0348791|T047|PT|H42.0|ICD10|Glaucoma in endocrine, nutritional and metabolic diseases|Glaucoma in endocrine, nutritional and metabolic diseases +C0348557|T047|PT|H42.8|ICD10|Glaucoma in other diseases classified elsewhere|Glaucoma in other diseases classified elsewhere +C0155365|T047|HT|H43|ICD10|Disorders of vitreous body|Disorders of vitreous body +C0155365|T047|HT|H43|ICD10CM|Disorders of vitreous body|Disorders of vitreous body +C0155365|T047|AB|H43|ICD10CM|Disorders of vitreous body|Disorders of vitreous body +C0348558|T047|HT|H43-H44|ICD10CM|Disorders of vitreous body and globe (H43-H44)|Disorders of vitreous body and globe (H43-H44) +C0348558|T047|HT|H43-H45.9|ICD10|Disorders of vitreous body and globe|Disorders of vitreous body and globe +C0155369|T190|PT|H43.0|ICD10|Vitreous prolapse|Vitreous prolapse +C0155369|T190|HT|H43.0|ICD10CM|Vitreous prolapse|Vitreous prolapse +C0155369|T190|AB|H43.0|ICD10CM|Vitreous prolapse|Vitreous prolapse +C0155369|T190|AB|H43.00|ICD10CM|Vitreous prolapse, unspecified eye|Vitreous prolapse, unspecified eye +C0155369|T190|PT|H43.00|ICD10CM|Vitreous prolapse, unspecified eye|Vitreous prolapse, unspecified eye +C2202685|T190|AB|H43.01|ICD10CM|Vitreous prolapse, right eye|Vitreous prolapse, right eye +C2202685|T190|PT|H43.01|ICD10CM|Vitreous prolapse, right eye|Vitreous prolapse, right eye +C2202684|T190|AB|H43.02|ICD10CM|Vitreous prolapse, left eye|Vitreous prolapse, left eye +C2202684|T190|PT|H43.02|ICD10CM|Vitreous prolapse, left eye|Vitreous prolapse, left eye +C2881055|T190|AB|H43.03|ICD10CM|Vitreous prolapse, bilateral|Vitreous prolapse, bilateral +C2881055|T190|PT|H43.03|ICD10CM|Vitreous prolapse, bilateral|Vitreous prolapse, bilateral +C0042909|T046|PT|H43.1|ICD10|Vitreous haemorrhage|Vitreous haemorrhage +C0042909|T046|PT|H43.1|ICD10AE|Vitreous hemorrhage|Vitreous hemorrhage +C0042909|T046|HT|H43.1|ICD10CM|Vitreous hemorrhage|Vitreous hemorrhage +C0042909|T046|AB|H43.1|ICD10CM|Vitreous hemorrhage|Vitreous hemorrhage +C0042909|T046|AB|H43.10|ICD10CM|Vitreous hemorrhage, unspecified eye|Vitreous hemorrhage, unspecified eye +C0042909|T046|PT|H43.10|ICD10CM|Vitreous hemorrhage, unspecified eye|Vitreous hemorrhage, unspecified eye +C2070032|T046|AB|H43.11|ICD10CM|Vitreous hemorrhage, right eye|Vitreous hemorrhage, right eye +C2070032|T046|PT|H43.11|ICD10CM|Vitreous hemorrhage, right eye|Vitreous hemorrhage, right eye +C2070033|T046|AB|H43.12|ICD10CM|Vitreous hemorrhage, left eye|Vitreous hemorrhage, left eye +C2070033|T046|PT|H43.12|ICD10CM|Vitreous hemorrhage, left eye|Vitreous hemorrhage, left eye +C2881056|T046|AB|H43.13|ICD10CM|Vitreous hemorrhage, bilateral|Vitreous hemorrhage, bilateral +C2881056|T046|PT|H43.13|ICD10CM|Vitreous hemorrhage, bilateral|Vitreous hemorrhage, bilateral +C0155367|T047|HT|H43.2|ICD10CM|Crystalline deposits in vitreous body|Crystalline deposits in vitreous body +C0155367|T047|AB|H43.2|ICD10CM|Crystalline deposits in vitreous body|Crystalline deposits in vitreous body +C0155367|T047|PT|H43.2|ICD10|Crystalline deposits in vitreous body|Crystalline deposits in vitreous body +C2881057|T047|AB|H43.20|ICD10CM|Crystalline deposits in vitreous body, unspecified eye|Crystalline deposits in vitreous body, unspecified eye +C2881057|T047|PT|H43.20|ICD10CM|Crystalline deposits in vitreous body, unspecified eye|Crystalline deposits in vitreous body, unspecified eye +C2881058|T047|AB|H43.21|ICD10CM|Crystalline deposits in vitreous body, right eye|Crystalline deposits in vitreous body, right eye +C2881058|T047|PT|H43.21|ICD10CM|Crystalline deposits in vitreous body, right eye|Crystalline deposits in vitreous body, right eye +C2881059|T047|AB|H43.22|ICD10CM|Crystalline deposits in vitreous body, left eye|Crystalline deposits in vitreous body, left eye +C2881059|T047|PT|H43.22|ICD10CM|Crystalline deposits in vitreous body, left eye|Crystalline deposits in vitreous body, left eye +C2881060|T047|AB|H43.23|ICD10CM|Crystalline deposits in vitreous body, bilateral|Crystalline deposits in vitreous body, bilateral +C2881060|T047|PT|H43.23|ICD10CM|Crystalline deposits in vitreous body, bilateral|Crystalline deposits in vitreous body, bilateral +C0029872|T047|PT|H43.3|ICD10|Other vitreous opacities|Other vitreous opacities +C0029872|T047|HT|H43.3|ICD10CM|Other vitreous opacities|Other vitreous opacities +C0029872|T047|AB|H43.3|ICD10CM|Other vitreous opacities|Other vitreous opacities +C0155368|T047|HT|H43.31|ICD10CM|Vitreous membranes and strands|Vitreous membranes and strands +C0155368|T047|AB|H43.31|ICD10CM|Vitreous membranes and strands|Vitreous membranes and strands +C2202682|T047|AB|H43.311|ICD10CM|Vitreous membranes and strands, right eye|Vitreous membranes and strands, right eye +C2202682|T047|PT|H43.311|ICD10CM|Vitreous membranes and strands, right eye|Vitreous membranes and strands, right eye +C2202681|T047|AB|H43.312|ICD10CM|Vitreous membranes and strands, left eye|Vitreous membranes and strands, left eye +C2202681|T047|PT|H43.312|ICD10CM|Vitreous membranes and strands, left eye|Vitreous membranes and strands, left eye +C2881061|T047|AB|H43.313|ICD10CM|Vitreous membranes and strands, bilateral|Vitreous membranes and strands, bilateral +C2881061|T047|PT|H43.313|ICD10CM|Vitreous membranes and strands, bilateral|Vitreous membranes and strands, bilateral +C2881062|T047|AB|H43.319|ICD10CM|Vitreous membranes and strands, unspecified eye|Vitreous membranes and strands, unspecified eye +C2881062|T047|PT|H43.319|ICD10CM|Vitreous membranes and strands, unspecified eye|Vitreous membranes and strands, unspecified eye +C0029872|T047|HT|H43.39|ICD10CM|Other vitreous opacities|Other vitreous opacities +C0029872|T047|AB|H43.39|ICD10CM|Other vitreous opacities|Other vitreous opacities +C0016242|T033|ET|H43.39|ICD10CM|Vitreous floaters|Vitreous floaters +C2881063|T047|AB|H43.391|ICD10CM|Other vitreous opacities, right eye|Other vitreous opacities, right eye +C2881063|T047|PT|H43.391|ICD10CM|Other vitreous opacities, right eye|Other vitreous opacities, right eye +C2881064|T047|AB|H43.392|ICD10CM|Other vitreous opacities, left eye|Other vitreous opacities, left eye +C2881064|T047|PT|H43.392|ICD10CM|Other vitreous opacities, left eye|Other vitreous opacities, left eye +C2881065|T047|AB|H43.393|ICD10CM|Other vitreous opacities, bilateral|Other vitreous opacities, bilateral +C2881065|T047|PT|H43.393|ICD10CM|Other vitreous opacities, bilateral|Other vitreous opacities, bilateral +C2881066|T047|AB|H43.399|ICD10CM|Other vitreous opacities, unspecified eye|Other vitreous opacities, unspecified eye +C2881066|T047|PT|H43.399|ICD10CM|Other vitreous opacities, unspecified eye|Other vitreous opacities, unspecified eye +C0348559|T047|HT|H43.8|ICD10CM|Other disorders of vitreous body|Other disorders of vitreous body +C0348559|T047|AB|H43.8|ICD10CM|Other disorders of vitreous body|Other disorders of vitreous body +C0348559|T047|PT|H43.8|ICD10|Other disorders of vitreous body|Other disorders of vitreous body +C0155366|T047|HT|H43.81|ICD10CM|Vitreous degeneration|Vitreous degeneration +C0155366|T047|AB|H43.81|ICD10CM|Vitreous degeneration|Vitreous degeneration +C0042907|T047|ET|H43.81|ICD10CM|Vitreous detachment|Vitreous detachment +C2881067|T047|AB|H43.811|ICD10CM|Vitreous degeneration, right eye|Vitreous degeneration, right eye +C2881067|T047|PT|H43.811|ICD10CM|Vitreous degeneration, right eye|Vitreous degeneration, right eye +C2881068|T047|AB|H43.812|ICD10CM|Vitreous degeneration, left eye|Vitreous degeneration, left eye +C2881068|T047|PT|H43.812|ICD10CM|Vitreous degeneration, left eye|Vitreous degeneration, left eye +C2881069|T047|AB|H43.813|ICD10CM|Vitreous degeneration, bilateral|Vitreous degeneration, bilateral +C2881069|T047|PT|H43.813|ICD10CM|Vitreous degeneration, bilateral|Vitreous degeneration, bilateral +C2881070|T047|AB|H43.819|ICD10CM|Vitreous degeneration, unspecified eye|Vitreous degeneration, unspecified eye +C2881070|T047|PT|H43.819|ICD10CM|Vitreous degeneration, unspecified eye|Vitreous degeneration, unspecified eye +C2748203|T190|HT|H43.82|ICD10CM|Vitreomacular adhesion|Vitreomacular adhesion +C2748203|T190|AB|H43.82|ICD10CM|Vitreomacular adhesion|Vitreomacular adhesion +C3161192|T047|ET|H43.82|ICD10CM|Vitreomacular traction|Vitreomacular traction +C3250375|T190|AB|H43.821|ICD10CM|Vitreomacular adhesion, right eye|Vitreomacular adhesion, right eye +C3250375|T190|PT|H43.821|ICD10CM|Vitreomacular adhesion, right eye|Vitreomacular adhesion, right eye +C3250376|T047|AB|H43.822|ICD10CM|Vitreomacular adhesion, left eye|Vitreomacular adhesion, left eye +C3250376|T047|PT|H43.822|ICD10CM|Vitreomacular adhesion, left eye|Vitreomacular adhesion, left eye +C3264356|T190|AB|H43.823|ICD10CM|Vitreomacular adhesion, bilateral|Vitreomacular adhesion, bilateral +C3264356|T190|PT|H43.823|ICD10CM|Vitreomacular adhesion, bilateral|Vitreomacular adhesion, bilateral +C3264357|T190|AB|H43.829|ICD10CM|Vitreomacular adhesion, unspecified eye|Vitreomacular adhesion, unspecified eye +C3264357|T190|PT|H43.829|ICD10CM|Vitreomacular adhesion, unspecified eye|Vitreomacular adhesion, unspecified eye +C0348559|T047|PT|H43.89|ICD10CM|Other disorders of vitreous body|Other disorders of vitreous body +C0348559|T047|AB|H43.89|ICD10CM|Other disorders of vitreous body|Other disorders of vitreous body +C0155365|T047|PT|H43.9|ICD10|Disorder of vitreous body, unspecified|Disorder of vitreous body, unspecified +C0155365|T047|AB|H43.9|ICD10CM|Unspecified disorder of vitreous body|Unspecified disorder of vitreous body +C0155365|T047|PT|H43.9|ICD10CM|Unspecified disorder of vitreous body|Unspecified disorder of vitreous body +C4290125|T047|ET|H44|ICD10CM|disorders affecting multiple structures of eye|disorders affecting multiple structures of eye +C0015397|T047|AB|H44|ICD10CM|Disorders of globe|Disorders of globe +C0015397|T047|HT|H44|ICD10CM|Disorders of globe|Disorders of globe +C0015397|T047|HT|H44|ICD10|Disorders of globe|Disorders of globe +C0259800|T047|PT|H44.0|ICD10|Purulent endophthalmitis|Purulent endophthalmitis +C0259800|T047|HT|H44.0|ICD10CM|Purulent endophthalmitis|Purulent endophthalmitis +C0259800|T047|AB|H44.0|ICD10CM|Purulent endophthalmitis|Purulent endophthalmitis +C0259800|T047|AB|H44.00|ICD10CM|Unspecified purulent endophthalmitis|Unspecified purulent endophthalmitis +C0259800|T047|HT|H44.00|ICD10CM|Unspecified purulent endophthalmitis|Unspecified purulent endophthalmitis +C2881072|T047|AB|H44.001|ICD10CM|Unspecified purulent endophthalmitis, right eye|Unspecified purulent endophthalmitis, right eye +C2881072|T047|PT|H44.001|ICD10CM|Unspecified purulent endophthalmitis, right eye|Unspecified purulent endophthalmitis, right eye +C2881073|T047|AB|H44.002|ICD10CM|Unspecified purulent endophthalmitis, left eye|Unspecified purulent endophthalmitis, left eye +C2881073|T047|PT|H44.002|ICD10CM|Unspecified purulent endophthalmitis, left eye|Unspecified purulent endophthalmitis, left eye +C2881074|T047|AB|H44.003|ICD10CM|Unspecified purulent endophthalmitis, bilateral|Unspecified purulent endophthalmitis, bilateral +C2881074|T047|PT|H44.003|ICD10CM|Unspecified purulent endophthalmitis, bilateral|Unspecified purulent endophthalmitis, bilateral +C2881075|T047|AB|H44.009|ICD10CM|Unspecified purulent endophthalmitis, unspecified eye|Unspecified purulent endophthalmitis, unspecified eye +C2881075|T047|PT|H44.009|ICD10CM|Unspecified purulent endophthalmitis, unspecified eye|Unspecified purulent endophthalmitis, unspecified eye +C2881076|T047|AB|H44.01|ICD10CM|Panophthalmitis (acute)|Panophthalmitis (acute) +C2881076|T047|HT|H44.01|ICD10CM|Panophthalmitis (acute)|Panophthalmitis (acute) +C2881077|T047|AB|H44.011|ICD10CM|Panophthalmitis (acute), right eye|Panophthalmitis (acute), right eye +C2881077|T047|PT|H44.011|ICD10CM|Panophthalmitis (acute), right eye|Panophthalmitis (acute), right eye +C2881078|T047|AB|H44.012|ICD10CM|Panophthalmitis (acute), left eye|Panophthalmitis (acute), left eye +C2881078|T047|PT|H44.012|ICD10CM|Panophthalmitis (acute), left eye|Panophthalmitis (acute), left eye +C2881079|T047|AB|H44.013|ICD10CM|Panophthalmitis (acute), bilateral|Panophthalmitis (acute), bilateral +C2881079|T047|PT|H44.013|ICD10CM|Panophthalmitis (acute), bilateral|Panophthalmitis (acute), bilateral +C2881080|T047|AB|H44.019|ICD10CM|Panophthalmitis (acute), unspecified eye|Panophthalmitis (acute), unspecified eye +C2881080|T047|PT|H44.019|ICD10CM|Panophthalmitis (acute), unspecified eye|Panophthalmitis (acute), unspecified eye +C2881081|T047|AB|H44.02|ICD10CM|Vitreous abscess (chronic)|Vitreous abscess (chronic) +C2881081|T047|HT|H44.02|ICD10CM|Vitreous abscess (chronic)|Vitreous abscess (chronic) +C2881082|T047|AB|H44.021|ICD10CM|Vitreous abscess (chronic), right eye|Vitreous abscess (chronic), right eye +C2881082|T047|PT|H44.021|ICD10CM|Vitreous abscess (chronic), right eye|Vitreous abscess (chronic), right eye +C2881083|T047|AB|H44.022|ICD10CM|Vitreous abscess (chronic), left eye|Vitreous abscess (chronic), left eye +C2881083|T047|PT|H44.022|ICD10CM|Vitreous abscess (chronic), left eye|Vitreous abscess (chronic), left eye +C2881084|T047|AB|H44.023|ICD10CM|Vitreous abscess (chronic), bilateral|Vitreous abscess (chronic), bilateral +C2881084|T047|PT|H44.023|ICD10CM|Vitreous abscess (chronic), bilateral|Vitreous abscess (chronic), bilateral +C2881085|T047|AB|H44.029|ICD10CM|Vitreous abscess (chronic), unspecified eye|Vitreous abscess (chronic), unspecified eye +C2881085|T047|PT|H44.029|ICD10CM|Vitreous abscess (chronic), unspecified eye|Vitreous abscess (chronic), unspecified eye +C0029610|T047|PT|H44.1|ICD10|Other endophthalmitis|Other endophthalmitis +C0029610|T047|HT|H44.1|ICD10CM|Other endophthalmitis|Other endophthalmitis +C0029610|T047|AB|H44.1|ICD10CM|Other endophthalmitis|Other endophthalmitis +C0030343|T047|HT|H44.11|ICD10CM|Panuveitis|Panuveitis +C0030343|T047|AB|H44.11|ICD10CM|Panuveitis|Panuveitis +C2033097|T047|AB|H44.111|ICD10CM|Panuveitis, right eye|Panuveitis, right eye +C2033097|T047|PT|H44.111|ICD10CM|Panuveitis, right eye|Panuveitis, right eye +C2033096|T047|AB|H44.112|ICD10CM|Panuveitis, left eye|Panuveitis, left eye +C2033096|T047|PT|H44.112|ICD10CM|Panuveitis, left eye|Panuveitis, left eye +C2881086|T047|AB|H44.113|ICD10CM|Panuveitis, bilateral|Panuveitis, bilateral +C2881086|T047|PT|H44.113|ICD10CM|Panuveitis, bilateral|Panuveitis, bilateral +C2881087|T047|AB|H44.119|ICD10CM|Panuveitis, unspecified eye|Panuveitis, unspecified eye +C2881087|T047|PT|H44.119|ICD10CM|Panuveitis, unspecified eye|Panuveitis, unspecified eye +C0014238|T047|AB|H44.12|ICD10CM|Parasitic endophthalmitis, unspecified|Parasitic endophthalmitis, unspecified +C0014238|T047|HT|H44.12|ICD10CM|Parasitic endophthalmitis, unspecified|Parasitic endophthalmitis, unspecified +C2881088|T047|AB|H44.121|ICD10CM|Parasitic endophthalmitis, unspecified, right eye|Parasitic endophthalmitis, unspecified, right eye +C2881088|T047|PT|H44.121|ICD10CM|Parasitic endophthalmitis, unspecified, right eye|Parasitic endophthalmitis, unspecified, right eye +C2881089|T047|AB|H44.122|ICD10CM|Parasitic endophthalmitis, unspecified, left eye|Parasitic endophthalmitis, unspecified, left eye +C2881089|T047|PT|H44.122|ICD10CM|Parasitic endophthalmitis, unspecified, left eye|Parasitic endophthalmitis, unspecified, left eye +C2881090|T047|AB|H44.123|ICD10CM|Parasitic endophthalmitis, unspecified, bilateral|Parasitic endophthalmitis, unspecified, bilateral +C2881090|T047|PT|H44.123|ICD10CM|Parasitic endophthalmitis, unspecified, bilateral|Parasitic endophthalmitis, unspecified, bilateral +C2881091|T047|AB|H44.129|ICD10CM|Parasitic endophthalmitis, unspecified, unspecified eye|Parasitic endophthalmitis, unspecified, unspecified eye +C2881091|T047|PT|H44.129|ICD10CM|Parasitic endophthalmitis, unspecified, unspecified eye|Parasitic endophthalmitis, unspecified, unspecified eye +C0029077|T047|HT|H44.13|ICD10CM|Sympathetic uveitis|Sympathetic uveitis +C0029077|T047|AB|H44.13|ICD10CM|Sympathetic uveitis|Sympathetic uveitis +C2039142|T047|AB|H44.131|ICD10CM|Sympathetic uveitis, right eye|Sympathetic uveitis, right eye +C2039142|T047|PT|H44.131|ICD10CM|Sympathetic uveitis, right eye|Sympathetic uveitis, right eye +C2039141|T047|AB|H44.132|ICD10CM|Sympathetic uveitis, left eye|Sympathetic uveitis, left eye +C2039141|T047|PT|H44.132|ICD10CM|Sympathetic uveitis, left eye|Sympathetic uveitis, left eye +C2881092|T047|AB|H44.133|ICD10CM|Sympathetic uveitis, bilateral|Sympathetic uveitis, bilateral +C2881092|T047|PT|H44.133|ICD10CM|Sympathetic uveitis, bilateral|Sympathetic uveitis, bilateral +C2881093|T047|AB|H44.139|ICD10CM|Sympathetic uveitis, unspecified eye|Sympathetic uveitis, unspecified eye +C2881093|T047|PT|H44.139|ICD10CM|Sympathetic uveitis, unspecified eye|Sympathetic uveitis, unspecified eye +C0029610|T047|PT|H44.19|ICD10CM|Other endophthalmitis|Other endophthalmitis +C0029610|T047|AB|H44.19|ICD10CM|Other endophthalmitis|Other endophthalmitis +C0154778|T047|HT|H44.2|ICD10CM|Degenerative myopia|Degenerative myopia +C0154778|T047|AB|H44.2|ICD10CM|Degenerative myopia|Degenerative myopia +C0154778|T047|PT|H44.2|ICD10|Degenerative myopia|Degenerative myopia +C0154778|T047|ET|H44.2|ICD10CM|Malignant myopia|Malignant myopia +C2881094|T047|AB|H44.20|ICD10CM|Degenerative myopia, unspecified eye|Degenerative myopia, unspecified eye +C2881094|T047|PT|H44.20|ICD10CM|Degenerative myopia, unspecified eye|Degenerative myopia, unspecified eye +C2881095|T047|AB|H44.21|ICD10CM|Degenerative myopia, right eye|Degenerative myopia, right eye +C2881095|T047|PT|H44.21|ICD10CM|Degenerative myopia, right eye|Degenerative myopia, right eye +C2881096|T047|AB|H44.22|ICD10CM|Degenerative myopia, left eye|Degenerative myopia, left eye +C2881096|T047|PT|H44.22|ICD10CM|Degenerative myopia, left eye|Degenerative myopia, left eye +C2881097|T047|AB|H44.23|ICD10CM|Degenerative myopia, bilateral|Degenerative myopia, bilateral +C2881097|T047|PT|H44.23|ICD10CM|Degenerative myopia, bilateral|Degenerative myopia, bilateral +C4509119|T047|HT|H44.2A|ICD10CM|Degenerative myopia with choroidal neovascularization|Degenerative myopia with choroidal neovascularization +C4509119|T047|AB|H44.2A|ICD10CM|Degenerative myopia with choroidal neovascularization|Degenerative myopia with choroidal neovascularization +C4509120|T047|PT|H44.2A1|ICD10CM|Degenerative myopia with choroidal neovascularization, right eye|Degenerative myopia with choroidal neovascularization, right eye +C4509120|T047|AB|H44.2A1|ICD10CM|Degeneratv myopia with choroidal neovascularization, r eye|Degeneratv myopia with choroidal neovascularization, r eye +C4509121|T047|PT|H44.2A2|ICD10CM|Degenerative myopia with choroidal neovascularization, left eye|Degenerative myopia with choroidal neovascularization, left eye +C4509121|T047|AB|H44.2A2|ICD10CM|Degeneratv myopia with choroidal neovascularization, l eye|Degeneratv myopia with choroidal neovascularization, l eye +C4509122|T047|PT|H44.2A3|ICD10CM|Degenerative myopia with choroidal neovascularization, bilateral eye|Degenerative myopia with choroidal neovascularization, bilateral eye +C4509122|T047|AB|H44.2A3|ICD10CM|Degeneratv myopia with choroidal neovascularization, bi eye|Degeneratv myopia with choroidal neovascularization, bi eye +C4509123|T047|AB|H44.2A9|ICD10CM|Degenerative myopia with choroidal neovascularization, unsp|Degenerative myopia with choroidal neovascularization, unsp +C4509123|T047|PT|H44.2A9|ICD10CM|Degenerative myopia with choroidal neovascularization, unspecified eye|Degenerative myopia with choroidal neovascularization, unspecified eye +C4509124|T047|HT|H44.2B|ICD10CM|Degenerative myopia with macular hole|Degenerative myopia with macular hole +C4509124|T047|AB|H44.2B|ICD10CM|Degenerative myopia with macular hole|Degenerative myopia with macular hole +C4509125|T047|AB|H44.2B1|ICD10CM|Degenerative myopia with macular hole, right eye|Degenerative myopia with macular hole, right eye +C4509125|T047|PT|H44.2B1|ICD10CM|Degenerative myopia with macular hole, right eye|Degenerative myopia with macular hole, right eye +C4509126|T047|AB|H44.2B2|ICD10CM|Degenerative myopia with macular hole, left eye|Degenerative myopia with macular hole, left eye +C4509126|T047|PT|H44.2B2|ICD10CM|Degenerative myopia with macular hole, left eye|Degenerative myopia with macular hole, left eye +C4509127|T047|AB|H44.2B3|ICD10CM|Degenerative myopia with macular hole, bilateral eye|Degenerative myopia with macular hole, bilateral eye +C4509127|T047|PT|H44.2B3|ICD10CM|Degenerative myopia with macular hole, bilateral eye|Degenerative myopia with macular hole, bilateral eye +C4509128|T047|AB|H44.2B9|ICD10CM|Degenerative myopia with macular hole, unspecified eye|Degenerative myopia with macular hole, unspecified eye +C4509128|T047|PT|H44.2B9|ICD10CM|Degenerative myopia with macular hole, unspecified eye|Degenerative myopia with macular hole, unspecified eye +C4509129|T047|HT|H44.2C|ICD10CM|Degenerative myopia with retinal detachment|Degenerative myopia with retinal detachment +C4509129|T047|AB|H44.2C|ICD10CM|Degenerative myopia with retinal detachment|Degenerative myopia with retinal detachment +C4509130|T047|AB|H44.2C1|ICD10CM|Degenerative myopia with retinal detachment, right eye|Degenerative myopia with retinal detachment, right eye +C4509130|T047|PT|H44.2C1|ICD10CM|Degenerative myopia with retinal detachment, right eye|Degenerative myopia with retinal detachment, right eye +C4509131|T047|AB|H44.2C2|ICD10CM|Degenerative myopia with retinal detachment, left eye|Degenerative myopia with retinal detachment, left eye +C4509131|T047|PT|H44.2C2|ICD10CM|Degenerative myopia with retinal detachment, left eye|Degenerative myopia with retinal detachment, left eye +C4509132|T047|AB|H44.2C3|ICD10CM|Degenerative myopia with retinal detachment, bilateral eye|Degenerative myopia with retinal detachment, bilateral eye +C4509132|T047|PT|H44.2C3|ICD10CM|Degenerative myopia with retinal detachment, bilateral eye|Degenerative myopia with retinal detachment, bilateral eye +C4509133|T047|AB|H44.2C9|ICD10CM|Degenerative myopia with retinal detachment, unspecified eye|Degenerative myopia with retinal detachment, unspecified eye +C4509133|T047|PT|H44.2C9|ICD10CM|Degenerative myopia with retinal detachment, unspecified eye|Degenerative myopia with retinal detachment, unspecified eye +C4509134|T047|HT|H44.2D|ICD10CM|Degenerative myopia with foveoschisis|Degenerative myopia with foveoschisis +C4509134|T047|AB|H44.2D|ICD10CM|Degenerative myopia with foveoschisis|Degenerative myopia with foveoschisis +C4509135|T047|AB|H44.2D1|ICD10CM|Degenerative myopia with foveoschisis, right eye|Degenerative myopia with foveoschisis, right eye +C4509135|T047|PT|H44.2D1|ICD10CM|Degenerative myopia with foveoschisis, right eye|Degenerative myopia with foveoschisis, right eye +C4509136|T047|AB|H44.2D2|ICD10CM|Degenerative myopia with foveoschisis, left eye|Degenerative myopia with foveoschisis, left eye +C4509136|T047|PT|H44.2D2|ICD10CM|Degenerative myopia with foveoschisis, left eye|Degenerative myopia with foveoschisis, left eye +C4509137|T047|AB|H44.2D3|ICD10CM|Degenerative myopia with foveoschisis, bilateral eye|Degenerative myopia with foveoschisis, bilateral eye +C4509137|T047|PT|H44.2D3|ICD10CM|Degenerative myopia with foveoschisis, bilateral eye|Degenerative myopia with foveoschisis, bilateral eye +C4509138|T047|AB|H44.2D9|ICD10CM|Degenerative myopia with foveoschisis, unspecified eye|Degenerative myopia with foveoschisis, unspecified eye +C4509138|T047|PT|H44.2D9|ICD10CM|Degenerative myopia with foveoschisis, unspecified eye|Degenerative myopia with foveoschisis, unspecified eye +C4509139|T047|HT|H44.2E|ICD10CM|Degenerative myopia with other maculopathy|Degenerative myopia with other maculopathy +C4509139|T047|AB|H44.2E|ICD10CM|Degenerative myopia with other maculopathy|Degenerative myopia with other maculopathy +C4509140|T047|AB|H44.2E1|ICD10CM|Degenerative myopia with other maculopathy, right eye|Degenerative myopia with other maculopathy, right eye +C4509140|T047|PT|H44.2E1|ICD10CM|Degenerative myopia with other maculopathy, right eye|Degenerative myopia with other maculopathy, right eye +C4509141|T047|AB|H44.2E2|ICD10CM|Degenerative myopia with other maculopathy, left eye|Degenerative myopia with other maculopathy, left eye +C4509141|T047|PT|H44.2E2|ICD10CM|Degenerative myopia with other maculopathy, left eye|Degenerative myopia with other maculopathy, left eye +C4509142|T047|AB|H44.2E3|ICD10CM|Degenerative myopia with other maculopathy, bilateral eye|Degenerative myopia with other maculopathy, bilateral eye +C4509142|T047|PT|H44.2E3|ICD10CM|Degenerative myopia with other maculopathy, bilateral eye|Degenerative myopia with other maculopathy, bilateral eye +C4509584|T047|AB|H44.2E9|ICD10CM|Degenerative myopia with other maculopathy, unspecified eye|Degenerative myopia with other maculopathy, unspecified eye +C4509584|T047|PT|H44.2E9|ICD10CM|Degenerative myopia with other maculopathy, unspecified eye|Degenerative myopia with other maculopathy, unspecified eye +C2881098|T047|AB|H44.3|ICD10CM|Other and unspecified degenerative disorders of globe|Other and unspecified degenerative disorders of globe +C2881098|T047|HT|H44.3|ICD10CM|Other and unspecified degenerative disorders of globe|Other and unspecified degenerative disorders of globe +C0154780|T047|PT|H44.3|ICD10|Other degenerative disorders of globe|Other degenerative disorders of globe +C0154777|T047|AB|H44.30|ICD10CM|Unspecified degenerative disorder of globe|Unspecified degenerative disorder of globe +C0154777|T047|PT|H44.30|ICD10CM|Unspecified degenerative disorder of globe|Unspecified degenerative disorder of globe +C0339036|T046|AB|H44.31|ICD10CM|Chalcosis|Chalcosis +C0339036|T046|HT|H44.31|ICD10CM|Chalcosis|Chalcosis +C2881099|T046|AB|H44.311|ICD10CM|Chalcosis, right eye|Chalcosis, right eye +C2881099|T046|PT|H44.311|ICD10CM|Chalcosis, right eye|Chalcosis, right eye +C2881100|T046|AB|H44.312|ICD10CM|Chalcosis, left eye|Chalcosis, left eye +C2881100|T046|PT|H44.312|ICD10CM|Chalcosis, left eye|Chalcosis, left eye +C2881101|T046|AB|H44.313|ICD10CM|Chalcosis, bilateral|Chalcosis, bilateral +C2881101|T046|PT|H44.313|ICD10CM|Chalcosis, bilateral|Chalcosis, bilateral +C0339036|T046|AB|H44.319|ICD10CM|Chalcosis, unspecified eye|Chalcosis, unspecified eye +C0339036|T046|PT|H44.319|ICD10CM|Chalcosis, unspecified eye|Chalcosis, unspecified eye +C0271001|T047|HT|H44.32|ICD10CM|Siderosis of eye|Siderosis of eye +C0271001|T047|AB|H44.32|ICD10CM|Siderosis of eye|Siderosis of eye +C2881102|T047|AB|H44.321|ICD10CM|Siderosis of eye, right eye|Siderosis of eye, right eye +C2881102|T047|PT|H44.321|ICD10CM|Siderosis of eye, right eye|Siderosis of eye, right eye +C2881103|T047|AB|H44.322|ICD10CM|Siderosis of eye, left eye|Siderosis of eye, left eye +C2881103|T047|PT|H44.322|ICD10CM|Siderosis of eye, left eye|Siderosis of eye, left eye +C2881104|T047|AB|H44.323|ICD10CM|Siderosis of eye, bilateral|Siderosis of eye, bilateral +C2881104|T047|PT|H44.323|ICD10CM|Siderosis of eye, bilateral|Siderosis of eye, bilateral +C2881105|T047|AB|H44.329|ICD10CM|Siderosis of eye, unspecified eye|Siderosis of eye, unspecified eye +C2881105|T047|PT|H44.329|ICD10CM|Siderosis of eye, unspecified eye|Siderosis of eye, unspecified eye +C0154780|T047|HT|H44.39|ICD10CM|Other degenerative disorders of globe|Other degenerative disorders of globe +C0154780|T047|AB|H44.39|ICD10CM|Other degenerative disorders of globe|Other degenerative disorders of globe +C2881106|T047|AB|H44.391|ICD10CM|Other degenerative disorders of globe, right eye|Other degenerative disorders of globe, right eye +C2881106|T047|PT|H44.391|ICD10CM|Other degenerative disorders of globe, right eye|Other degenerative disorders of globe, right eye +C2881107|T047|AB|H44.392|ICD10CM|Other degenerative disorders of globe, left eye|Other degenerative disorders of globe, left eye +C2881107|T047|PT|H44.392|ICD10CM|Other degenerative disorders of globe, left eye|Other degenerative disorders of globe, left eye +C2881108|T047|AB|H44.393|ICD10CM|Other degenerative disorders of globe, bilateral|Other degenerative disorders of globe, bilateral +C2881108|T047|PT|H44.393|ICD10CM|Other degenerative disorders of globe, bilateral|Other degenerative disorders of globe, bilateral +C2881109|T047|AB|H44.399|ICD10CM|Other degenerative disorders of globe, unspecified eye|Other degenerative disorders of globe, unspecified eye +C2881109|T047|PT|H44.399|ICD10CM|Other degenerative disorders of globe, unspecified eye|Other degenerative disorders of globe, unspecified eye +C0028841|T047|HT|H44.4|ICD10CM|Hypotony of eye|Hypotony of eye +C0028841|T047|AB|H44.4|ICD10CM|Hypotony of eye|Hypotony of eye +C0028841|T047|PT|H44.4|ICD10|Hypotony of eye|Hypotony of eye +C0028841|T047|AB|H44.40|ICD10CM|Unspecified hypotony of eye|Unspecified hypotony of eye +C0028841|T047|PT|H44.40|ICD10CM|Unspecified hypotony of eye|Unspecified hypotony of eye +C2881110|T047|AB|H44.41|ICD10CM|Flat anterior chamber hypotony of eye|Flat anterior chamber hypotony of eye +C2881110|T047|HT|H44.41|ICD10CM|Flat anterior chamber hypotony of eye|Flat anterior chamber hypotony of eye +C2881111|T047|AB|H44.411|ICD10CM|Flat anterior chamber hypotony of right eye|Flat anterior chamber hypotony of right eye +C2881111|T047|PT|H44.411|ICD10CM|Flat anterior chamber hypotony of right eye|Flat anterior chamber hypotony of right eye +C2881112|T047|AB|H44.412|ICD10CM|Flat anterior chamber hypotony of left eye|Flat anterior chamber hypotony of left eye +C2881112|T047|PT|H44.412|ICD10CM|Flat anterior chamber hypotony of left eye|Flat anterior chamber hypotony of left eye +C2881113|T047|AB|H44.413|ICD10CM|Flat anterior chamber hypotony of eye, bilateral|Flat anterior chamber hypotony of eye, bilateral +C2881113|T047|PT|H44.413|ICD10CM|Flat anterior chamber hypotony of eye, bilateral|Flat anterior chamber hypotony of eye, bilateral +C2881114|T047|AB|H44.419|ICD10CM|Flat anterior chamber hypotony of unspecified eye|Flat anterior chamber hypotony of unspecified eye +C2881114|T047|PT|H44.419|ICD10CM|Flat anterior chamber hypotony of unspecified eye|Flat anterior chamber hypotony of unspecified eye +C1690511|T046|AB|H44.42|ICD10CM|Hypotony of eye due to ocular fistula|Hypotony of eye due to ocular fistula +C1690511|T046|HT|H44.42|ICD10CM|Hypotony of eye due to ocular fistula|Hypotony of eye due to ocular fistula +C2881115|T046|AB|H44.421|ICD10CM|Hypotony of right eye due to ocular fistula|Hypotony of right eye due to ocular fistula +C2881115|T046|PT|H44.421|ICD10CM|Hypotony of right eye due to ocular fistula|Hypotony of right eye due to ocular fistula +C2881116|T046|AB|H44.422|ICD10CM|Hypotony of left eye due to ocular fistula|Hypotony of left eye due to ocular fistula +C2881116|T046|PT|H44.422|ICD10CM|Hypotony of left eye due to ocular fistula|Hypotony of left eye due to ocular fistula +C2881117|T046|AB|H44.423|ICD10CM|Hypotony of eye due to ocular fistula, bilateral|Hypotony of eye due to ocular fistula, bilateral +C2881117|T046|PT|H44.423|ICD10CM|Hypotony of eye due to ocular fistula, bilateral|Hypotony of eye due to ocular fistula, bilateral +C1690511|T046|AB|H44.429|ICD10CM|Hypotony of unspecified eye due to ocular fistula|Hypotony of unspecified eye due to ocular fistula +C1690511|T046|PT|H44.429|ICD10CM|Hypotony of unspecified eye due to ocular fistula|Hypotony of unspecified eye due to ocular fistula +C2881118|T047|AB|H44.43|ICD10CM|Hypotony of eye due to other ocular disorders|Hypotony of eye due to other ocular disorders +C2881118|T047|HT|H44.43|ICD10CM|Hypotony of eye due to other ocular disorders|Hypotony of eye due to other ocular disorders +C2881119|T047|AB|H44.431|ICD10CM|Hypotony of eye due to other ocular disorders, right eye|Hypotony of eye due to other ocular disorders, right eye +C2881119|T047|PT|H44.431|ICD10CM|Hypotony of eye due to other ocular disorders, right eye|Hypotony of eye due to other ocular disorders, right eye +C2881120|T047|AB|H44.432|ICD10CM|Hypotony of eye due to other ocular disorders, left eye|Hypotony of eye due to other ocular disorders, left eye +C2881120|T047|PT|H44.432|ICD10CM|Hypotony of eye due to other ocular disorders, left eye|Hypotony of eye due to other ocular disorders, left eye +C2881121|T047|AB|H44.433|ICD10CM|Hypotony of eye due to other ocular disorders, bilateral|Hypotony of eye due to other ocular disorders, bilateral +C2881121|T047|PT|H44.433|ICD10CM|Hypotony of eye due to other ocular disorders, bilateral|Hypotony of eye due to other ocular disorders, bilateral +C2881122|T047|AB|H44.439|ICD10CM|Hypotony of eye due to other ocular disorders, unsp eye|Hypotony of eye due to other ocular disorders, unsp eye +C2881122|T047|PT|H44.439|ICD10CM|Hypotony of eye due to other ocular disorders, unspecified eye|Hypotony of eye due to other ocular disorders, unspecified eye +C0154782|T047|HT|H44.44|ICD10CM|Primary hypotony of eye|Primary hypotony of eye +C0154782|T047|AB|H44.44|ICD10CM|Primary hypotony of eye|Primary hypotony of eye +C2881123|T047|AB|H44.441|ICD10CM|Primary hypotony of right eye|Primary hypotony of right eye +C2881123|T047|PT|H44.441|ICD10CM|Primary hypotony of right eye|Primary hypotony of right eye +C2881124|T047|AB|H44.442|ICD10CM|Primary hypotony of left eye|Primary hypotony of left eye +C2881124|T047|PT|H44.442|ICD10CM|Primary hypotony of left eye|Primary hypotony of left eye +C2881125|T047|AB|H44.443|ICD10CM|Primary hypotony of eye, bilateral|Primary hypotony of eye, bilateral +C2881125|T047|PT|H44.443|ICD10CM|Primary hypotony of eye, bilateral|Primary hypotony of eye, bilateral +C2881126|T047|AB|H44.449|ICD10CM|Primary hypotony of unspecified eye|Primary hypotony of unspecified eye +C2881126|T047|PT|H44.449|ICD10CM|Primary hypotony of unspecified eye|Primary hypotony of unspecified eye +C0154777|T047|HT|H44.5|ICD10CM|Degenerated conditions of globe|Degenerated conditions of globe +C0154777|T047|AB|H44.5|ICD10CM|Degenerated conditions of globe|Degenerated conditions of globe +C0154777|T047|PT|H44.5|ICD10|Degenerated conditions of globe|Degenerated conditions of globe +C2881127|T047|AB|H44.50|ICD10CM|Unspecified degenerated conditions of globe|Unspecified degenerated conditions of globe +C2881127|T047|PT|H44.50|ICD10CM|Unspecified degenerated conditions of globe|Unspecified degenerated conditions of globe +C0221079|T047|HT|H44.51|ICD10CM|Absolute glaucoma|Absolute glaucoma +C0221079|T047|AB|H44.51|ICD10CM|Absolute glaucoma|Absolute glaucoma +C2042172|T047|AB|H44.511|ICD10CM|Absolute glaucoma, right eye|Absolute glaucoma, right eye +C2042172|T047|PT|H44.511|ICD10CM|Absolute glaucoma, right eye|Absolute glaucoma, right eye +C2042171|T047|AB|H44.512|ICD10CM|Absolute glaucoma, left eye|Absolute glaucoma, left eye +C2042171|T047|PT|H44.512|ICD10CM|Absolute glaucoma, left eye|Absolute glaucoma, left eye +C2042170|T047|AB|H44.513|ICD10CM|Absolute glaucoma, bilateral|Absolute glaucoma, bilateral +C2042170|T047|PT|H44.513|ICD10CM|Absolute glaucoma, bilateral|Absolute glaucoma, bilateral +C2881129|T047|AB|H44.519|ICD10CM|Absolute glaucoma, unspecified eye|Absolute glaucoma, unspecified eye +C2881129|T047|PT|H44.519|ICD10CM|Absolute glaucoma, unspecified eye|Absolute glaucoma, unspecified eye +C0271007|T047|HT|H44.52|ICD10CM|Atrophy of globe|Atrophy of globe +C0271007|T047|AB|H44.52|ICD10CM|Atrophy of globe|Atrophy of globe +C0271007|T047|ET|H44.52|ICD10CM|Phthisis bulbi|Phthisis bulbi +C2231440|T033|AB|H44.521|ICD10CM|Atrophy of globe, right eye|Atrophy of globe, right eye +C2231440|T033|PT|H44.521|ICD10CM|Atrophy of globe, right eye|Atrophy of globe, right eye +C2231441|T033|AB|H44.522|ICD10CM|Atrophy of globe, left eye|Atrophy of globe, left eye +C2231441|T033|PT|H44.522|ICD10CM|Atrophy of globe, left eye|Atrophy of globe, left eye +C2881130|T046|AB|H44.523|ICD10CM|Atrophy of globe, bilateral|Atrophy of globe, bilateral +C2881130|T046|PT|H44.523|ICD10CM|Atrophy of globe, bilateral|Atrophy of globe, bilateral +C0271007|T047|AB|H44.529|ICD10CM|Atrophy of globe, unspecified eye|Atrophy of globe, unspecified eye +C0271007|T047|PT|H44.529|ICD10CM|Atrophy of globe, unspecified eye|Atrophy of globe, unspecified eye +C0152458|T047|HT|H44.53|ICD10CM|Leucocoria|Leucocoria +C0152458|T047|AB|H44.53|ICD10CM|Leucocoria|Leucocoria +C2153491|T047|AB|H44.531|ICD10CM|Leucocoria, right eye|Leucocoria, right eye +C2153491|T047|PT|H44.531|ICD10CM|Leucocoria, right eye|Leucocoria, right eye +C2153492|T047|AB|H44.532|ICD10CM|Leucocoria, left eye|Leucocoria, left eye +C2153492|T047|PT|H44.532|ICD10CM|Leucocoria, left eye|Leucocoria, left eye +C2881131|T047|AB|H44.533|ICD10CM|Leucocoria, bilateral|Leucocoria, bilateral +C2881131|T047|PT|H44.533|ICD10CM|Leucocoria, bilateral|Leucocoria, bilateral +C2881132|T047|AB|H44.539|ICD10CM|Leucocoria, unspecified eye|Leucocoria, unspecified eye +C2881132|T047|PT|H44.539|ICD10CM|Leucocoria, unspecified eye|Leucocoria, unspecified eye +C0271008|T046|PT|H44.6|ICD10|Retained (old) intraocular foreign body, magnetic|Retained (old) intraocular foreign body, magnetic +C0271008|T046|HT|H44.6|ICD10CM|Retained (old) intraocular foreign body, magnetic|Retained (old) intraocular foreign body, magnetic +C0271008|T046|AB|H44.6|ICD10CM|Retained (old) intraocular foreign body, magnetic|Retained (old) intraocular foreign body, magnetic +C2881133|T047|AB|H44.60|ICD10CM|Unsp retained (old) intraocular foreign body, magnetic|Unsp retained (old) intraocular foreign body, magnetic +C2881133|T047|HT|H44.60|ICD10CM|Unspecified retained (old) intraocular foreign body, magnetic|Unspecified retained (old) intraocular foreign body, magnetic +C2881134|T047|AB|H44.601|ICD10CM|Unsp retained (old) intraocular fb, magnetic, right eye|Unsp retained (old) intraocular fb, magnetic, right eye +C2881134|T047|PT|H44.601|ICD10CM|Unspecified retained (old) intraocular foreign body, magnetic, right eye|Unspecified retained (old) intraocular foreign body, magnetic, right eye +C2881135|T047|AB|H44.602|ICD10CM|Unsp retained (old) intraocular fb, magnetic, left eye|Unsp retained (old) intraocular fb, magnetic, left eye +C2881135|T047|PT|H44.602|ICD10CM|Unspecified retained (old) intraocular foreign body, magnetic, left eye|Unspecified retained (old) intraocular foreign body, magnetic, left eye +C2881136|T047|AB|H44.603|ICD10CM|Unsp retained (old) intraocular fb, magnetic, bilateral|Unsp retained (old) intraocular fb, magnetic, bilateral +C2881136|T047|PT|H44.603|ICD10CM|Unspecified retained (old) intraocular foreign body, magnetic, bilateral|Unspecified retained (old) intraocular foreign body, magnetic, bilateral +C2881137|T047|AB|H44.609|ICD10CM|Unsp retained (old) intraocular fb, magnetic, unsp eye|Unsp retained (old) intraocular fb, magnetic, unsp eye +C2881137|T047|PT|H44.609|ICD10CM|Unspecified retained (old) intraocular foreign body, magnetic, unspecified eye|Unspecified retained (old) intraocular foreign body, magnetic, unspecified eye +C2881138|T047|AB|H44.61|ICD10CM|Retained (old) magnetic foreign body in anterior chamber|Retained (old) magnetic foreign body in anterior chamber +C2881138|T047|HT|H44.61|ICD10CM|Retained (old) magnetic foreign body in anterior chamber|Retained (old) magnetic foreign body in anterior chamber +C2881139|T033|AB|H44.611|ICD10CM|Retained (old) magnetic fb in ant chamber, right eye|Retained (old) magnetic fb in ant chamber, right eye +C2881139|T033|PT|H44.611|ICD10CM|Retained (old) magnetic foreign body in anterior chamber, right eye|Retained (old) magnetic foreign body in anterior chamber, right eye +C2881140|T033|AB|H44.612|ICD10CM|Retained (old) magnetic fb in ant chamber, left eye|Retained (old) magnetic fb in ant chamber, left eye +C2881140|T033|PT|H44.612|ICD10CM|Retained (old) magnetic foreign body in anterior chamber, left eye|Retained (old) magnetic foreign body in anterior chamber, left eye +C2881141|T033|AB|H44.613|ICD10CM|Retained (old) magnetic fb in ant chamber, bilateral|Retained (old) magnetic fb in ant chamber, bilateral +C2881141|T033|PT|H44.613|ICD10CM|Retained (old) magnetic foreign body in anterior chamber, bilateral|Retained (old) magnetic foreign body in anterior chamber, bilateral +C2881142|T033|AB|H44.619|ICD10CM|Retained (old) magnetic fb in ant chamber, unsp eye|Retained (old) magnetic fb in ant chamber, unsp eye +C2881142|T033|PT|H44.619|ICD10CM|Retained (old) magnetic foreign body in anterior chamber, unspecified eye|Retained (old) magnetic foreign body in anterior chamber, unspecified eye +C2881143|T033|AB|H44.62|ICD10CM|Retained (old) magnetic foreign body in iris or ciliary body|Retained (old) magnetic foreign body in iris or ciliary body +C2881143|T033|HT|H44.62|ICD10CM|Retained (old) magnetic foreign body in iris or ciliary body|Retained (old) magnetic foreign body in iris or ciliary body +C2881144|T033|AB|H44.621|ICD10CM|Retained (old) magnetic fb in iris or ciliary body, r eye|Retained (old) magnetic fb in iris or ciliary body, r eye +C2881144|T033|PT|H44.621|ICD10CM|Retained (old) magnetic foreign body in iris or ciliary body, right eye|Retained (old) magnetic foreign body in iris or ciliary body, right eye +C2881145|T033|AB|H44.622|ICD10CM|Retained (old) magnetic fb in iris or ciliary body, left eye|Retained (old) magnetic fb in iris or ciliary body, left eye +C2881145|T033|PT|H44.622|ICD10CM|Retained (old) magnetic foreign body in iris or ciliary body, left eye|Retained (old) magnetic foreign body in iris or ciliary body, left eye +C2881146|T033|AB|H44.623|ICD10CM|Retained (old) magnetic fb in iris or ciliary body, bi|Retained (old) magnetic fb in iris or ciliary body, bi +C2881146|T033|PT|H44.623|ICD10CM|Retained (old) magnetic foreign body in iris or ciliary body, bilateral|Retained (old) magnetic foreign body in iris or ciliary body, bilateral +C2881147|T033|AB|H44.629|ICD10CM|Retained (old) magnetic fb in iris or ciliary body, unsp eye|Retained (old) magnetic fb in iris or ciliary body, unsp eye +C2881147|T033|PT|H44.629|ICD10CM|Retained (old) magnetic foreign body in iris or ciliary body, unspecified eye|Retained (old) magnetic foreign body in iris or ciliary body, unspecified eye +C2881148|T033|AB|H44.63|ICD10CM|Retained (old) magnetic foreign body in lens|Retained (old) magnetic foreign body in lens +C2881148|T033|HT|H44.63|ICD10CM|Retained (old) magnetic foreign body in lens|Retained (old) magnetic foreign body in lens +C2881149|T033|AB|H44.631|ICD10CM|Retained (old) magnetic foreign body in lens, right eye|Retained (old) magnetic foreign body in lens, right eye +C2881149|T033|PT|H44.631|ICD10CM|Retained (old) magnetic foreign body in lens, right eye|Retained (old) magnetic foreign body in lens, right eye +C2881150|T033|AB|H44.632|ICD10CM|Retained (old) magnetic foreign body in lens, left eye|Retained (old) magnetic foreign body in lens, left eye +C2881150|T033|PT|H44.632|ICD10CM|Retained (old) magnetic foreign body in lens, left eye|Retained (old) magnetic foreign body in lens, left eye +C2881151|T033|AB|H44.633|ICD10CM|Retained (old) magnetic foreign body in lens, bilateral|Retained (old) magnetic foreign body in lens, bilateral +C2881151|T033|PT|H44.633|ICD10CM|Retained (old) magnetic foreign body in lens, bilateral|Retained (old) magnetic foreign body in lens, bilateral +C2881152|T033|AB|H44.639|ICD10CM|Retained (old) magnetic foreign body in lens, unsp eye|Retained (old) magnetic foreign body in lens, unsp eye +C2881152|T033|PT|H44.639|ICD10CM|Retained (old) magnetic foreign body in lens, unspecified eye|Retained (old) magnetic foreign body in lens, unspecified eye +C2881153|T033|AB|H44.64|ICD10CM|Retained (old) magnetic fb in posterior wall of globe|Retained (old) magnetic fb in posterior wall of globe +C2881153|T033|HT|H44.64|ICD10CM|Retained (old) magnetic foreign body in posterior wall of globe|Retained (old) magnetic foreign body in posterior wall of globe +C2881154|T033|AB|H44.641|ICD10CM|Retained (old) magnetic fb in post wall of globe, right eye|Retained (old) magnetic fb in post wall of globe, right eye +C2881154|T033|PT|H44.641|ICD10CM|Retained (old) magnetic foreign body in posterior wall of globe, right eye|Retained (old) magnetic foreign body in posterior wall of globe, right eye +C2881155|T033|AB|H44.642|ICD10CM|Retained (old) magnetic fb in post wall of globe, left eye|Retained (old) magnetic fb in post wall of globe, left eye +C2881155|T033|PT|H44.642|ICD10CM|Retained (old) magnetic foreign body in posterior wall of globe, left eye|Retained (old) magnetic foreign body in posterior wall of globe, left eye +C2881156|T033|AB|H44.643|ICD10CM|Retained (old) magnetic fb in posterior wall of globe, bi|Retained (old) magnetic fb in posterior wall of globe, bi +C2881156|T033|PT|H44.643|ICD10CM|Retained (old) magnetic foreign body in posterior wall of globe, bilateral|Retained (old) magnetic foreign body in posterior wall of globe, bilateral +C2881157|T033|AB|H44.649|ICD10CM|Retained (old) magnetic fb in post wall of globe, unsp eye|Retained (old) magnetic fb in post wall of globe, unsp eye +C2881157|T033|PT|H44.649|ICD10CM|Retained (old) magnetic foreign body in posterior wall of globe, unspecified eye|Retained (old) magnetic foreign body in posterior wall of globe, unspecified eye +C2881158|T033|AB|H44.65|ICD10CM|Retained (old) magnetic foreign body in vitreous body|Retained (old) magnetic foreign body in vitreous body +C2881158|T033|HT|H44.65|ICD10CM|Retained (old) magnetic foreign body in vitreous body|Retained (old) magnetic foreign body in vitreous body +C2881159|T033|AB|H44.651|ICD10CM|Retained (old) magnetic fb in vitreous body, right eye|Retained (old) magnetic fb in vitreous body, right eye +C2881159|T033|PT|H44.651|ICD10CM|Retained (old) magnetic foreign body in vitreous body, right eye|Retained (old) magnetic foreign body in vitreous body, right eye +C2881160|T033|AB|H44.652|ICD10CM|Retained (old) magnetic fb in vitreous body, left eye|Retained (old) magnetic fb in vitreous body, left eye +C2881160|T033|PT|H44.652|ICD10CM|Retained (old) magnetic foreign body in vitreous body, left eye|Retained (old) magnetic foreign body in vitreous body, left eye +C2881161|T033|AB|H44.653|ICD10CM|Retained (old) magnetic fb in vitreous body, bilateral|Retained (old) magnetic fb in vitreous body, bilateral +C2881161|T033|PT|H44.653|ICD10CM|Retained (old) magnetic foreign body in vitreous body, bilateral|Retained (old) magnetic foreign body in vitreous body, bilateral +C2881162|T033|AB|H44.659|ICD10CM|Retained (old) magnetic fb in vitreous body, unsp eye|Retained (old) magnetic fb in vitreous body, unsp eye +C2881162|T033|PT|H44.659|ICD10CM|Retained (old) magnetic foreign body in vitreous body, unspecified eye|Retained (old) magnetic foreign body in vitreous body, unspecified eye +C2881163|T033|AB|H44.69|ICD10CM|Retained (old) intraoc fb, magnet, in oth or multiple sites|Retained (old) intraoc fb, magnet, in oth or multiple sites +C2881163|T033|HT|H44.69|ICD10CM|Retained (old) intraocular foreign body, magnetic, in other or multiple sites|Retained (old) intraocular foreign body, magnetic, in other or multiple sites +C2881164|T033|AB|H44.691|ICD10CM|Retain (old) intraoc fb, magnet, in oth or mult sites, r eye|Retain (old) intraoc fb, magnet, in oth or mult sites, r eye +C2881164|T033|PT|H44.691|ICD10CM|Retained (old) intraocular foreign body, magnetic, in other or multiple sites, right eye|Retained (old) intraocular foreign body, magnetic, in other or multiple sites, right eye +C2881165|T033|AB|H44.692|ICD10CM|Retain (old) intraoc fb, magnet, in oth or mult sites, l eye|Retain (old) intraoc fb, magnet, in oth or mult sites, l eye +C2881165|T033|PT|H44.692|ICD10CM|Retained (old) intraocular foreign body, magnetic, in other or multiple sites, left eye|Retained (old) intraocular foreign body, magnetic, in other or multiple sites, left eye +C2881166|T033|AB|H44.693|ICD10CM|Retained (old) intraoc fb, magnet, in oth or mult sites, bi|Retained (old) intraoc fb, magnet, in oth or mult sites, bi +C2881166|T033|PT|H44.693|ICD10CM|Retained (old) intraocular foreign body, magnetic, in other or multiple sites, bilateral|Retained (old) intraocular foreign body, magnetic, in other or multiple sites, bilateral +C2881167|T033|AB|H44.699|ICD10CM|Retain intraoc fb, magnet, in oth or mult sites, unsp eye|Retain intraoc fb, magnet, in oth or mult sites, unsp eye +C2881167|T033|PT|H44.699|ICD10CM|Retained (old) intraocular foreign body, magnetic, in other or multiple sites, unspecified eye|Retained (old) intraocular foreign body, magnetic, in other or multiple sites, unspecified eye +C0271015|T046|HT|H44.7|ICD10CM|Retained (old) intraocular foreign body, nonmagnetic|Retained (old) intraocular foreign body, nonmagnetic +C0271015|T046|AB|H44.7|ICD10CM|Retained (old) intraocular foreign body, nonmagnetic|Retained (old) intraocular foreign body, nonmagnetic +C0271015|T046|PT|H44.7|ICD10|Retained (old) intraocular foreign body, nonmagnetic|Retained (old) intraocular foreign body, nonmagnetic +C2881168|T033|AB|H44.70|ICD10CM|Unsp retained (old) intraocular foreign body, nonmagnetic|Unsp retained (old) intraocular foreign body, nonmagnetic +C2881168|T033|HT|H44.70|ICD10CM|Unspecified retained (old) intraocular foreign body, nonmagnetic|Unspecified retained (old) intraocular foreign body, nonmagnetic +C2881169|T033|AB|H44.701|ICD10CM|Unsp retained (old) intraocular fb, nonmagnetic, right eye|Unsp retained (old) intraocular fb, nonmagnetic, right eye +C2881169|T033|PT|H44.701|ICD10CM|Unspecified retained (old) intraocular foreign body, nonmagnetic, right eye|Unspecified retained (old) intraocular foreign body, nonmagnetic, right eye +C2881170|T033|AB|H44.702|ICD10CM|Unsp retained (old) intraocular fb, nonmagnetic, left eye|Unsp retained (old) intraocular fb, nonmagnetic, left eye +C2881170|T033|PT|H44.702|ICD10CM|Unspecified retained (old) intraocular foreign body, nonmagnetic, left eye|Unspecified retained (old) intraocular foreign body, nonmagnetic, left eye +C2881171|T033|AB|H44.703|ICD10CM|Unsp retained (old) intraocular fb, nonmagnetic, bilateral|Unsp retained (old) intraocular fb, nonmagnetic, bilateral +C2881171|T033|PT|H44.703|ICD10CM|Unspecified retained (old) intraocular foreign body, nonmagnetic, bilateral|Unspecified retained (old) intraocular foreign body, nonmagnetic, bilateral +C2976968|T033|ET|H44.709|ICD10CM|Retained (old) intraocular foreign body NOS|Retained (old) intraocular foreign body NOS +C2881172|T033|AB|H44.709|ICD10CM|Unsp retained (old) intraocular fb, nonmagnetic, unsp eye|Unsp retained (old) intraocular fb, nonmagnetic, unsp eye +C2881172|T033|PT|H44.709|ICD10CM|Unspecified retained (old) intraocular foreign body, nonmagnetic, unspecified eye|Unspecified retained (old) intraocular foreign body, nonmagnetic, unspecified eye +C2881173|T033|AB|H44.71|ICD10CM|Retained (nonmagnetic) (old) foreign body in ant chamber|Retained (nonmagnetic) (old) foreign body in ant chamber +C2881173|T033|HT|H44.71|ICD10CM|Retained (nonmagnetic) (old) foreign body in anterior chamber|Retained (nonmagnetic) (old) foreign body in anterior chamber +C2881174|T033|PT|H44.711|ICD10CM|Retained (nonmagnetic) (old) foreign body in anterior chamber, right eye|Retained (nonmagnetic) (old) foreign body in anterior chamber, right eye +C2881174|T033|AB|H44.711|ICD10CM|Retained (old) foreign body in ant chamber, right eye|Retained (old) foreign body in ant chamber, right eye +C2881175|T033|PT|H44.712|ICD10CM|Retained (nonmagnetic) (old) foreign body in anterior chamber, left eye|Retained (nonmagnetic) (old) foreign body in anterior chamber, left eye +C2881175|T033|AB|H44.712|ICD10CM|Retained (old) foreign body in ant chamber, left eye|Retained (old) foreign body in ant chamber, left eye +C2881176|T033|PT|H44.713|ICD10CM|Retained (nonmagnetic) (old) foreign body in anterior chamber, bilateral|Retained (nonmagnetic) (old) foreign body in anterior chamber, bilateral +C2881176|T033|AB|H44.713|ICD10CM|Retained (old) foreign body in ant chamber, bilateral|Retained (old) foreign body in ant chamber, bilateral +C2881177|T033|PT|H44.719|ICD10CM|Retained (nonmagnetic) (old) foreign body in anterior chamber, unspecified eye|Retained (nonmagnetic) (old) foreign body in anterior chamber, unspecified eye +C2881177|T033|AB|H44.719|ICD10CM|Retained (old) foreign body in ant chamber, unsp eye|Retained (old) foreign body in ant chamber, unsp eye +C2881178|T033|HT|H44.72|ICD10CM|Retained (nonmagnetic) (old) foreign body in iris or ciliary body|Retained (nonmagnetic) (old) foreign body in iris or ciliary body +C2881178|T033|AB|H44.72|ICD10CM|Retained (old) foreign body in iris or ciliary body|Retained (old) foreign body in iris or ciliary body +C2881179|T033|PT|H44.721|ICD10CM|Retained (nonmagnetic) (old) foreign body in iris or ciliary body, right eye|Retained (nonmagnetic) (old) foreign body in iris or ciliary body, right eye +C2881179|T033|AB|H44.721|ICD10CM|Retained (old) fb in iris or ciliary body, right eye|Retained (old) fb in iris or ciliary body, right eye +C2881180|T033|PT|H44.722|ICD10CM|Retained (nonmagnetic) (old) foreign body in iris or ciliary body, left eye|Retained (nonmagnetic) (old) foreign body in iris or ciliary body, left eye +C2881180|T033|AB|H44.722|ICD10CM|Retained (old) fb in iris or ciliary body, left eye|Retained (old) fb in iris or ciliary body, left eye +C2881181|T033|PT|H44.723|ICD10CM|Retained (nonmagnetic) (old) foreign body in iris or ciliary body, bilateral|Retained (nonmagnetic) (old) foreign body in iris or ciliary body, bilateral +C2881181|T033|AB|H44.723|ICD10CM|Retained (old) fb in iris or ciliary body, bilateral|Retained (old) fb in iris or ciliary body, bilateral +C2881182|T033|PT|H44.729|ICD10CM|Retained (nonmagnetic) (old) foreign body in iris or ciliary body, unspecified eye|Retained (nonmagnetic) (old) foreign body in iris or ciliary body, unspecified eye +C2881182|T033|AB|H44.729|ICD10CM|Retained (old) fb in iris or ciliary body, unsp eye|Retained (old) fb in iris or ciliary body, unsp eye +C2881183|T033|AB|H44.73|ICD10CM|Retained (nonmagnetic) (old) foreign body in lens|Retained (nonmagnetic) (old) foreign body in lens +C2881183|T033|HT|H44.73|ICD10CM|Retained (nonmagnetic) (old) foreign body in lens|Retained (nonmagnetic) (old) foreign body in lens +C2881184|T033|AB|H44.731|ICD10CM|Retained (nonmagnetic) (old) foreign body in lens, right eye|Retained (nonmagnetic) (old) foreign body in lens, right eye +C2881184|T033|PT|H44.731|ICD10CM|Retained (nonmagnetic) (old) foreign body in lens, right eye|Retained (nonmagnetic) (old) foreign body in lens, right eye +C2881185|T033|AB|H44.732|ICD10CM|Retained (nonmagnetic) (old) foreign body in lens, left eye|Retained (nonmagnetic) (old) foreign body in lens, left eye +C2881185|T033|PT|H44.732|ICD10CM|Retained (nonmagnetic) (old) foreign body in lens, left eye|Retained (nonmagnetic) (old) foreign body in lens, left eye +C2881186|T033|AB|H44.733|ICD10CM|Retained (nonmagnetic) (old) foreign body in lens, bilateral|Retained (nonmagnetic) (old) foreign body in lens, bilateral +C2881186|T033|PT|H44.733|ICD10CM|Retained (nonmagnetic) (old) foreign body in lens, bilateral|Retained (nonmagnetic) (old) foreign body in lens, bilateral +C2881187|T033|AB|H44.739|ICD10CM|Retained (nonmagnetic) (old) foreign body in lens, unsp eye|Retained (nonmagnetic) (old) foreign body in lens, unsp eye +C2881187|T033|PT|H44.739|ICD10CM|Retained (nonmagnetic) (old) foreign body in lens, unspecified eye|Retained (nonmagnetic) (old) foreign body in lens, unspecified eye +C2881188|T033|HT|H44.74|ICD10CM|Retained (nonmagnetic) (old) foreign body in posterior wall of globe|Retained (nonmagnetic) (old) foreign body in posterior wall of globe +C2881188|T033|AB|H44.74|ICD10CM|Retained (old) foreign body in posterior wall of globe|Retained (old) foreign body in posterior wall of globe +C2881189|T033|PT|H44.741|ICD10CM|Retained (nonmagnetic) (old) foreign body in posterior wall of globe, right eye|Retained (nonmagnetic) (old) foreign body in posterior wall of globe, right eye +C2881189|T033|AB|H44.741|ICD10CM|Retained (old) fb in posterior wall of globe, right eye|Retained (old) fb in posterior wall of globe, right eye +C2881190|T033|PT|H44.742|ICD10CM|Retained (nonmagnetic) (old) foreign body in posterior wall of globe, left eye|Retained (nonmagnetic) (old) foreign body in posterior wall of globe, left eye +C2881190|T033|AB|H44.742|ICD10CM|Retained (old) fb in posterior wall of globe, left eye|Retained (old) fb in posterior wall of globe, left eye +C2881191|T033|PT|H44.743|ICD10CM|Retained (nonmagnetic) (old) foreign body in posterior wall of globe, bilateral|Retained (nonmagnetic) (old) foreign body in posterior wall of globe, bilateral +C2881191|T033|AB|H44.743|ICD10CM|Retained (old) fb in posterior wall of globe, bilateral|Retained (old) fb in posterior wall of globe, bilateral +C2881192|T033|PT|H44.749|ICD10CM|Retained (nonmagnetic) (old) foreign body in posterior wall of globe, unspecified eye|Retained (nonmagnetic) (old) foreign body in posterior wall of globe, unspecified eye +C2881192|T033|AB|H44.749|ICD10CM|Retained (old) fb in posterior wall of globe, unsp eye|Retained (old) fb in posterior wall of globe, unsp eye +C2881193|T033|AB|H44.75|ICD10CM|Retained (nonmagnetic) (old) foreign body in vitreous body|Retained (nonmagnetic) (old) foreign body in vitreous body +C2881193|T033|HT|H44.75|ICD10CM|Retained (nonmagnetic) (old) foreign body in vitreous body|Retained (nonmagnetic) (old) foreign body in vitreous body +C2881194|T033|PT|H44.751|ICD10CM|Retained (nonmagnetic) (old) foreign body in vitreous body, right eye|Retained (nonmagnetic) (old) foreign body in vitreous body, right eye +C2881194|T033|AB|H44.751|ICD10CM|Retained (old) foreign body in vitreous body, right eye|Retained (old) foreign body in vitreous body, right eye +C2881195|T033|PT|H44.752|ICD10CM|Retained (nonmagnetic) (old) foreign body in vitreous body, left eye|Retained (nonmagnetic) (old) foreign body in vitreous body, left eye +C2881195|T033|AB|H44.752|ICD10CM|Retained (old) foreign body in vitreous body, left eye|Retained (old) foreign body in vitreous body, left eye +C2881196|T033|PT|H44.753|ICD10CM|Retained (nonmagnetic) (old) foreign body in vitreous body, bilateral|Retained (nonmagnetic) (old) foreign body in vitreous body, bilateral +C2881196|T033|AB|H44.753|ICD10CM|Retained (old) foreign body in vitreous body, bilateral|Retained (old) foreign body in vitreous body, bilateral +C2881197|T033|PT|H44.759|ICD10CM|Retained (nonmagnetic) (old) foreign body in vitreous body, unspecified eye|Retained (nonmagnetic) (old) foreign body in vitreous body, unspecified eye +C2881197|T033|AB|H44.759|ICD10CM|Retained (old) foreign body in vitreous body, unsp eye|Retained (old) foreign body in vitreous body, unsp eye +C2881198|T033|AB|H44.79|ICD10CM|Retained (old) intraoc fb, nonmag, in oth or multiple sites|Retained (old) intraoc fb, nonmag, in oth or multiple sites +C2881198|T033|HT|H44.79|ICD10CM|Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites|Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites +C2881199|T033|AB|H44.791|ICD10CM|Retain (old) intraoc fb, nonmag, in oth or mult sites, r eye|Retain (old) intraoc fb, nonmag, in oth or mult sites, r eye +C2881199|T033|PT|H44.791|ICD10CM|Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, right eye|Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, right eye +C2881200|T033|AB|H44.792|ICD10CM|Retain (old) intraoc fb, nonmag, in oth or mult sites, l eye|Retain (old) intraoc fb, nonmag, in oth or mult sites, l eye +C2881200|T033|PT|H44.792|ICD10CM|Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, left eye|Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, left eye +C2881201|T033|AB|H44.793|ICD10CM|Retained (old) intraoc fb, nonmag, in oth or mult sites, bi|Retained (old) intraoc fb, nonmag, in oth or mult sites, bi +C2881201|T033|PT|H44.793|ICD10CM|Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, bilateral|Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, bilateral +C2881202|T033|AB|H44.799|ICD10CM|Retain intraoc fb, nonmag, in oth or mult sites, unsp eye|Retain intraoc fb, nonmag, in oth or mult sites, unsp eye +C2881202|T033|PT|H44.799|ICD10CM|Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, unspecified eye|Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, unspecified eye +C0154805|T047|PT|H44.8|ICD10|Other disorders of globe|Other disorders of globe +C0154805|T047|HT|H44.8|ICD10CM|Other disorders of globe|Other disorders of globe +C0154805|T047|AB|H44.8|ICD10CM|Other disorders of globe|Other disorders of globe +C0015402|T046|HT|H44.81|ICD10CM|Hemophthalmos|Hemophthalmos +C0015402|T046|AB|H44.81|ICD10CM|Hemophthalmos|Hemophthalmos +C2030609|T033|AB|H44.811|ICD10CM|Hemophthalmos, right eye|Hemophthalmos, right eye +C2030609|T033|PT|H44.811|ICD10CM|Hemophthalmos, right eye|Hemophthalmos, right eye +C2030608|T033|AB|H44.812|ICD10CM|Hemophthalmos, left eye|Hemophthalmos, left eye +C2030608|T033|PT|H44.812|ICD10CM|Hemophthalmos, left eye|Hemophthalmos, left eye +C2881203|T046|AB|H44.813|ICD10CM|Hemophthalmos, bilateral|Hemophthalmos, bilateral +C2881203|T046|PT|H44.813|ICD10CM|Hemophthalmos, bilateral|Hemophthalmos, bilateral +C0015402|T046|AB|H44.819|ICD10CM|Hemophthalmos, unspecified eye|Hemophthalmos, unspecified eye +C0015402|T046|PT|H44.819|ICD10CM|Hemophthalmos, unspecified eye|Hemophthalmos, unspecified eye +C0154806|T047|HT|H44.82|ICD10CM|Luxation of globe|Luxation of globe +C0154806|T047|AB|H44.82|ICD10CM|Luxation of globe|Luxation of globe +C2881204|T047|AB|H44.821|ICD10CM|Luxation of globe, right eye|Luxation of globe, right eye +C2881204|T047|PT|H44.821|ICD10CM|Luxation of globe, right eye|Luxation of globe, right eye +C2881205|T047|AB|H44.822|ICD10CM|Luxation of globe, left eye|Luxation of globe, left eye +C2881205|T047|PT|H44.822|ICD10CM|Luxation of globe, left eye|Luxation of globe, left eye +C2881206|T047|AB|H44.823|ICD10CM|Luxation of globe, bilateral|Luxation of globe, bilateral +C2881206|T047|PT|H44.823|ICD10CM|Luxation of globe, bilateral|Luxation of globe, bilateral +C2881207|T047|AB|H44.829|ICD10CM|Luxation of globe, unspecified eye|Luxation of globe, unspecified eye +C2881207|T047|PT|H44.829|ICD10CM|Luxation of globe, unspecified eye|Luxation of globe, unspecified eye +C0154805|T047|PT|H44.89|ICD10CM|Other disorders of globe|Other disorders of globe +C0154805|T047|AB|H44.89|ICD10CM|Other disorders of globe|Other disorders of globe +C0015397|T047|PT|H44.9|ICD10|Disorder of globe, unspecified|Disorder of globe, unspecified +C0015397|T047|PT|H44.9|ICD10CM|Unspecified disorder of globe|Unspecified disorder of globe +C0015397|T047|AB|H44.9|ICD10CM|Unspecified disorder of globe|Unspecified disorder of globe +C0694489|T047|HT|H45|ICD10|Disorders of vitreous body and globe in diseases classified elsewhere|Disorders of vitreous body and globe in diseases classified elsewhere +C0348560|T047|PT|H45.0|ICD10|Vitreous haemorrhage in diseases classified elsewhere|Vitreous haemorrhage in diseases classified elsewhere +C0348560|T047|PT|H45.0|ICD10AE|Vitreous hemorrhage in diseases classified elsewhere|Vitreous hemorrhage in diseases classified elsewhere +C0348561|T047|PT|H45.1|ICD10|Endophthalmitis in diseases classified elsewhere|Endophthalmitis in diseases classified elsewhere +C0348562|T047|PT|H45.8|ICD10|Other disorders of vitreous body and globe in diseases classified elsewhere|Other disorders of vitreous body and globe in diseases classified elsewhere +C0029134|T047|PT|H46|ICD10|Optic neuritis|Optic neuritis +C0029134|T047|HT|H46|ICD10CM|Optic neuritis|Optic neuritis +C0029134|T047|AB|H46|ICD10CM|Optic neuritis|Optic neuritis +C1533675|T047|HT|H46-H47|ICD10CM|Disorders of optic nerve and visual pathways (H46-H47)|Disorders of optic nerve and visual pathways (H46-H47) +C1533675|T047|HT|H46-H48.9|ICD10|Disorders of optic nerve and visual pathways|Disorders of optic nerve and visual pathways +C0030353|T047|HT|H46.0|ICD10CM|Optic papillitis|Optic papillitis +C0030353|T047|AB|H46.0|ICD10CM|Optic papillitis|Optic papillitis +C2881208|T047|AB|H46.00|ICD10CM|Optic papillitis, unspecified eye|Optic papillitis, unspecified eye +C2881208|T047|PT|H46.00|ICD10CM|Optic papillitis, unspecified eye|Optic papillitis, unspecified eye +C2013315|T047|AB|H46.01|ICD10CM|Optic papillitis, right eye|Optic papillitis, right eye +C2013315|T047|PT|H46.01|ICD10CM|Optic papillitis, right eye|Optic papillitis, right eye +C2013314|T047|PT|H46.02|ICD10CM|Optic papillitis, left eye|Optic papillitis, left eye +C2013314|T047|AB|H46.02|ICD10CM|Optic papillitis, left eye|Optic papillitis, left eye +C2013313|T047|AB|H46.03|ICD10CM|Optic papillitis, bilateral|Optic papillitis, bilateral +C2013313|T047|PT|H46.03|ICD10CM|Optic papillitis, bilateral|Optic papillitis, bilateral +C0085582|T047|HT|H46.1|ICD10CM|Retrobulbar neuritis|Retrobulbar neuritis +C0085582|T047|AB|H46.1|ICD10CM|Retrobulbar neuritis|Retrobulbar neuritis +C0085582|T047|ET|H46.1|ICD10CM|Retrobulbar neuritis NOS|Retrobulbar neuritis NOS +C2881210|T047|AB|H46.10|ICD10CM|Retrobulbar neuritis, unspecified eye|Retrobulbar neuritis, unspecified eye +C2881210|T047|PT|H46.10|ICD10CM|Retrobulbar neuritis, unspecified eye|Retrobulbar neuritis, unspecified eye +C2881211|T047|AB|H46.11|ICD10CM|Retrobulbar neuritis, right eye|Retrobulbar neuritis, right eye +C2881211|T047|PT|H46.11|ICD10CM|Retrobulbar neuritis, right eye|Retrobulbar neuritis, right eye +C2881212|T047|AB|H46.12|ICD10CM|Retrobulbar neuritis, left eye|Retrobulbar neuritis, left eye +C2881212|T047|PT|H46.12|ICD10CM|Retrobulbar neuritis, left eye|Retrobulbar neuritis, left eye +C2881213|T047|AB|H46.13|ICD10CM|Retrobulbar neuritis, bilateral|Retrobulbar neuritis, bilateral +C2881213|T047|PT|H46.13|ICD10CM|Retrobulbar neuritis, bilateral|Retrobulbar neuritis, bilateral +C0155302|T047|PT|H46.2|ICD10CM|Nutritional optic neuropathy|Nutritional optic neuropathy +C0155302|T047|AB|H46.2|ICD10CM|Nutritional optic neuropathy|Nutritional optic neuropathy +C0155303|T047|PT|H46.3|ICD10CM|Toxic optic neuropathy|Toxic optic neuropathy +C0155303|T047|AB|H46.3|ICD10CM|Toxic optic neuropathy|Toxic optic neuropathy +C0029681|T047|AB|H46.8|ICD10CM|Other optic neuritis|Other optic neuritis +C0029681|T047|PT|H46.8|ICD10CM|Other optic neuritis|Other optic neuritis +C0029134|T047|AB|H46.9|ICD10CM|Unspecified optic neuritis|Unspecified optic neuritis +C0029134|T047|PT|H46.9|ICD10CM|Unspecified optic neuritis|Unspecified optic neuritis +C0494538|T047|HT|H47|ICD10|Other disorders of optic [2nd] nerve and visual pathways|Other disorders of optic [2nd] nerve and visual pathways +C0494538|T047|AB|H47|ICD10CM|Other disorders of optic [2nd] nerve and visual pathways|Other disorders of optic [2nd] nerve and visual pathways +C0494538|T047|HT|H47|ICD10CM|Other disorders of optic [2nd] nerve and visual pathways|Other disorders of optic [2nd] nerve and visual pathways +C0494539|T047|HT|H47.0|ICD10CM|Disorders of optic nerve, not elsewhere classified|Disorders of optic nerve, not elsewhere classified +C0494539|T047|AB|H47.0|ICD10CM|Disorders of optic nerve, not elsewhere classified|Disorders of optic nerve, not elsewhere classified +C0494539|T047|PT|H47.0|ICD10|Disorders of optic nerve, not elsewhere classified|Disorders of optic nerve, not elsewhere classified +C0155305|T047|HT|H47.01|ICD10CM|Ischemic optic neuropathy|Ischemic optic neuropathy +C0155305|T047|AB|H47.01|ICD10CM|Ischemic optic neuropathy|Ischemic optic neuropathy +C2881214|T047|AB|H47.011|ICD10CM|Ischemic optic neuropathy, right eye|Ischemic optic neuropathy, right eye +C2881214|T047|PT|H47.011|ICD10CM|Ischemic optic neuropathy, right eye|Ischemic optic neuropathy, right eye +C2881215|T047|AB|H47.012|ICD10CM|Ischemic optic neuropathy, left eye|Ischemic optic neuropathy, left eye +C2881215|T047|PT|H47.012|ICD10CM|Ischemic optic neuropathy, left eye|Ischemic optic neuropathy, left eye +C2881216|T047|AB|H47.013|ICD10CM|Ischemic optic neuropathy, bilateral|Ischemic optic neuropathy, bilateral +C2881216|T047|PT|H47.013|ICD10CM|Ischemic optic neuropathy, bilateral|Ischemic optic neuropathy, bilateral +C2881217|T047|AB|H47.019|ICD10CM|Ischemic optic neuropathy, unspecified eye|Ischemic optic neuropathy, unspecified eye +C2881217|T047|PT|H47.019|ICD10CM|Ischemic optic neuropathy, unspecified eye|Ischemic optic neuropathy, unspecified eye +C0155306|T046|AB|H47.02|ICD10CM|Hemorrhage in optic nerve sheath|Hemorrhage in optic nerve sheath +C0155306|T046|HT|H47.02|ICD10CM|Hemorrhage in optic nerve sheath|Hemorrhage in optic nerve sheath +C2030614|T046|AB|H47.021|ICD10CM|Hemorrhage in optic nerve sheath, right eye|Hemorrhage in optic nerve sheath, right eye +C2030614|T046|PT|H47.021|ICD10CM|Hemorrhage in optic nerve sheath, right eye|Hemorrhage in optic nerve sheath, right eye +C2030613|T046|AB|H47.022|ICD10CM|Hemorrhage in optic nerve sheath, left eye|Hemorrhage in optic nerve sheath, left eye +C2030613|T046|PT|H47.022|ICD10CM|Hemorrhage in optic nerve sheath, left eye|Hemorrhage in optic nerve sheath, left eye +C2881218|T046|AB|H47.023|ICD10CM|Hemorrhage in optic nerve sheath, bilateral|Hemorrhage in optic nerve sheath, bilateral +C2881218|T046|PT|H47.023|ICD10CM|Hemorrhage in optic nerve sheath, bilateral|Hemorrhage in optic nerve sheath, bilateral +C0155306|T046|AB|H47.029|ICD10CM|Hemorrhage in optic nerve sheath, unspecified eye|Hemorrhage in optic nerve sheath, unspecified eye +C0155306|T046|PT|H47.029|ICD10CM|Hemorrhage in optic nerve sheath, unspecified eye|Hemorrhage in optic nerve sheath, unspecified eye +C0338502|T047|AB|H47.03|ICD10CM|Optic nerve hypoplasia|Optic nerve hypoplasia +C0338502|T047|HT|H47.03|ICD10CM|Optic nerve hypoplasia|Optic nerve hypoplasia +C2013312|T019|AB|H47.031|ICD10CM|Optic nerve hypoplasia, right eye|Optic nerve hypoplasia, right eye +C2013312|T019|PT|H47.031|ICD10CM|Optic nerve hypoplasia, right eye|Optic nerve hypoplasia, right eye +C2013311|T019|AB|H47.032|ICD10CM|Optic nerve hypoplasia, left eye|Optic nerve hypoplasia, left eye +C2013311|T019|PT|H47.032|ICD10CM|Optic nerve hypoplasia, left eye|Optic nerve hypoplasia, left eye +C1833797|T047|PT|H47.033|ICD10CM|Optic nerve hypoplasia, bilateral|Optic nerve hypoplasia, bilateral +C1833797|T047|AB|H47.033|ICD10CM|Optic nerve hypoplasia, bilateral|Optic nerve hypoplasia, bilateral +C0338502|T047|AB|H47.039|ICD10CM|Optic nerve hypoplasia, unspecified eye|Optic nerve hypoplasia, unspecified eye +C0338502|T047|PT|H47.039|ICD10CM|Optic nerve hypoplasia, unspecified eye|Optic nerve hypoplasia, unspecified eye +C0271344|T047|ET|H47.09|ICD10CM|Compression of optic nerve|Compression of optic nerve +C2881219|T047|AB|H47.09|ICD10CM|Other disorders of optic nerve, not elsewhere classified|Other disorders of optic nerve, not elsewhere classified +C2881219|T047|HT|H47.09|ICD10CM|Other disorders of optic nerve, not elsewhere classified|Other disorders of optic nerve, not elsewhere classified +C2881220|T047|AB|H47.091|ICD10CM|Oth disorders of optic nerve, NEC, right eye|Oth disorders of optic nerve, NEC, right eye +C2881220|T047|PT|H47.091|ICD10CM|Other disorders of optic nerve, not elsewhere classified, right eye|Other disorders of optic nerve, not elsewhere classified, right eye +C2881221|T047|AB|H47.092|ICD10CM|Oth disorders of optic nerve, NEC, left eye|Oth disorders of optic nerve, NEC, left eye +C2881221|T047|PT|H47.092|ICD10CM|Other disorders of optic nerve, not elsewhere classified, left eye|Other disorders of optic nerve, not elsewhere classified, left eye +C2881222|T047|AB|H47.093|ICD10CM|Oth disorders of optic nerve, NEC, bilateral|Oth disorders of optic nerve, NEC, bilateral +C2881222|T047|PT|H47.093|ICD10CM|Other disorders of optic nerve, not elsewhere classified, bilateral|Other disorders of optic nerve, not elsewhere classified, bilateral +C2881223|T047|AB|H47.099|ICD10CM|Oth disorders of optic nerve, NEC, unsp eye|Oth disorders of optic nerve, NEC, unsp eye +C2881223|T047|PT|H47.099|ICD10CM|Other disorders of optic nerve, not elsewhere classified, unspecified eye|Other disorders of optic nerve, not elsewhere classified, unspecified eye +C0030353|T047|HT|H47.1|ICD10CM|Papilledema|Papilledema +C0030353|T047|AB|H47.1|ICD10CM|Papilledema|Papilledema +C0030353|T047|PT|H47.1|ICD10AE|Papilledema, unspecified|Papilledema, unspecified +C0030353|T047|PT|H47.1|ICD10|Papilloedema, unspecified|Papilloedema, unspecified +C0030353|T047|AB|H47.10|ICD10CM|Unspecified papilledema|Unspecified papilledema +C0030353|T047|PT|H47.10|ICD10CM|Unspecified papilledema|Unspecified papilledema +C0155288|T047|AB|H47.11|ICD10CM|Papilledema associated with increased intracranial pressure|Papilledema associated with increased intracranial pressure +C0155288|T047|PT|H47.11|ICD10CM|Papilledema associated with increased intracranial pressure|Papilledema associated with increased intracranial pressure +C1827466|T047|AB|H47.12|ICD10CM|Papilledema associated with decreased ocular pressure|Papilledema associated with decreased ocular pressure +C1827466|T047|PT|H47.12|ICD10CM|Papilledema associated with decreased ocular pressure|Papilledema associated with decreased ocular pressure +C0155290|T047|PT|H47.13|ICD10CM|Papilledema associated with retinal disorder|Papilledema associated with retinal disorder +C0155290|T047|AB|H47.13|ICD10CM|Papilledema associated with retinal disorder|Papilledema associated with retinal disorder +C0152112|T047|HT|H47.14|ICD10CM|Foster-Kennedy syndrome|Foster-Kennedy syndrome +C0152112|T047|AB|H47.14|ICD10CM|Foster-Kennedy syndrome|Foster-Kennedy syndrome +C2881224|T047|AB|H47.141|ICD10CM|Foster-Kennedy syndrome, right eye|Foster-Kennedy syndrome, right eye +C2881224|T047|PT|H47.141|ICD10CM|Foster-Kennedy syndrome, right eye|Foster-Kennedy syndrome, right eye +C2881225|T047|AB|H47.142|ICD10CM|Foster-Kennedy syndrome, left eye|Foster-Kennedy syndrome, left eye +C2881225|T047|PT|H47.142|ICD10CM|Foster-Kennedy syndrome, left eye|Foster-Kennedy syndrome, left eye +C2881226|T047|AB|H47.143|ICD10CM|Foster-Kennedy syndrome, bilateral|Foster-Kennedy syndrome, bilateral +C2881226|T047|PT|H47.143|ICD10CM|Foster-Kennedy syndrome, bilateral|Foster-Kennedy syndrome, bilateral +C2881227|T047|AB|H47.149|ICD10CM|Foster-Kennedy syndrome, unspecified eye|Foster-Kennedy syndrome, unspecified eye +C2881227|T047|PT|H47.149|ICD10CM|Foster-Kennedy syndrome, unspecified eye|Foster-Kennedy syndrome, unspecified eye +C0029124|T047|PT|H47.2|ICD10|Optic atrophy|Optic atrophy +C0029124|T047|HT|H47.2|ICD10CM|Optic atrophy|Optic atrophy +C0029124|T047|AB|H47.2|ICD10CM|Optic atrophy|Optic atrophy +C0029124|T047|AB|H47.20|ICD10CM|Unspecified optic atrophy|Unspecified optic atrophy +C0029124|T047|PT|H47.20|ICD10CM|Unspecified optic atrophy|Unspecified optic atrophy +C0155291|T047|HT|H47.21|ICD10CM|Primary optic atrophy|Primary optic atrophy +C0155291|T047|AB|H47.21|ICD10CM|Primary optic atrophy|Primary optic atrophy +C2881228|T047|AB|H47.211|ICD10CM|Primary optic atrophy, right eye|Primary optic atrophy, right eye +C2881228|T047|PT|H47.211|ICD10CM|Primary optic atrophy, right eye|Primary optic atrophy, right eye +C2881229|T047|AB|H47.212|ICD10CM|Primary optic atrophy, left eye|Primary optic atrophy, left eye +C2881229|T047|PT|H47.212|ICD10CM|Primary optic atrophy, left eye|Primary optic atrophy, left eye +C2881230|T047|AB|H47.213|ICD10CM|Primary optic atrophy, bilateral|Primary optic atrophy, bilateral +C2881230|T047|PT|H47.213|ICD10CM|Primary optic atrophy, bilateral|Primary optic atrophy, bilateral +C2881231|T047|AB|H47.219|ICD10CM|Primary optic atrophy, unspecified eye|Primary optic atrophy, unspecified eye +C2881231|T047|PT|H47.219|ICD10CM|Primary optic atrophy, unspecified eye|Primary optic atrophy, unspecified eye +C0029125|T047|PT|H47.22|ICD10CM|Hereditary optic atrophy|Hereditary optic atrophy +C0029125|T047|AB|H47.22|ICD10CM|Hereditary optic atrophy|Hereditary optic atrophy +C0917796|T047|ET|H47.22|ICD10CM|Leber's optic atrophy|Leber's optic atrophy +C0271342|T047|HT|H47.23|ICD10CM|Glaucomatous optic atrophy|Glaucomatous optic atrophy +C0271342|T047|AB|H47.23|ICD10CM|Glaucomatous optic atrophy|Glaucomatous optic atrophy +C2881232|T047|AB|H47.231|ICD10CM|Glaucomatous optic atrophy, right eye|Glaucomatous optic atrophy, right eye +C2881232|T047|PT|H47.231|ICD10CM|Glaucomatous optic atrophy, right eye|Glaucomatous optic atrophy, right eye +C2881233|T047|AB|H47.232|ICD10CM|Glaucomatous optic atrophy, left eye|Glaucomatous optic atrophy, left eye +C2881233|T047|PT|H47.232|ICD10CM|Glaucomatous optic atrophy, left eye|Glaucomatous optic atrophy, left eye +C2881234|T047|AB|H47.233|ICD10CM|Glaucomatous optic atrophy, bilateral|Glaucomatous optic atrophy, bilateral +C2881234|T047|PT|H47.233|ICD10CM|Glaucomatous optic atrophy, bilateral|Glaucomatous optic atrophy, bilateral +C2881235|T047|AB|H47.239|ICD10CM|Glaucomatous optic atrophy, unspecified eye|Glaucomatous optic atrophy, unspecified eye +C2881235|T047|PT|H47.239|ICD10CM|Glaucomatous optic atrophy, unspecified eye|Glaucomatous optic atrophy, unspecified eye +C2881236|T047|AB|H47.29|ICD10CM|Other optic atrophy|Other optic atrophy +C2881236|T047|HT|H47.29|ICD10CM|Other optic atrophy|Other optic atrophy +C0344299|T047|ET|H47.29|ICD10CM|Temporal pallor of optic disc|Temporal pallor of optic disc +C2881237|T047|AB|H47.291|ICD10CM|Other optic atrophy, right eye|Other optic atrophy, right eye +C2881237|T047|PT|H47.291|ICD10CM|Other optic atrophy, right eye|Other optic atrophy, right eye +C2881238|T047|AB|H47.292|ICD10CM|Other optic atrophy, left eye|Other optic atrophy, left eye +C2881238|T047|PT|H47.292|ICD10CM|Other optic atrophy, left eye|Other optic atrophy, left eye +C2881239|T047|AB|H47.293|ICD10CM|Other optic atrophy, bilateral|Other optic atrophy, bilateral +C2881239|T047|PT|H47.293|ICD10CM|Other optic atrophy, bilateral|Other optic atrophy, bilateral +C2881240|T047|AB|H47.299|ICD10CM|Other optic atrophy, unspecified eye|Other optic atrophy, unspecified eye +C2881240|T047|PT|H47.299|ICD10CM|Other optic atrophy, unspecified eye|Other optic atrophy, unspecified eye +C0155296|T047|HT|H47.3|ICD10CM|Other disorders of optic disc|Other disorders of optic disc +C0155296|T047|AB|H47.3|ICD10CM|Other disorders of optic disc|Other disorders of optic disc +C0155296|T047|PT|H47.3|ICD10|Other disorders of optic disc|Other disorders of optic disc +C0155299|T047|HT|H47.31|ICD10CM|Coloboma of optic disc|Coloboma of optic disc +C0155299|T047|AB|H47.31|ICD10CM|Coloboma of optic disc|Coloboma of optic disc +C2881241|T047|AB|H47.311|ICD10CM|Coloboma of optic disc, right eye|Coloboma of optic disc, right eye +C2881241|T047|PT|H47.311|ICD10CM|Coloboma of optic disc, right eye|Coloboma of optic disc, right eye +C2881242|T047|AB|H47.312|ICD10CM|Coloboma of optic disc, left eye|Coloboma of optic disc, left eye +C2881242|T047|PT|H47.312|ICD10CM|Coloboma of optic disc, left eye|Coloboma of optic disc, left eye +C2881243|T047|AB|H47.313|ICD10CM|Coloboma of optic disc, bilateral|Coloboma of optic disc, bilateral +C2881243|T047|PT|H47.313|ICD10CM|Coloboma of optic disc, bilateral|Coloboma of optic disc, bilateral +C0155299|T047|AB|H47.319|ICD10CM|Coloboma of optic disc, unspecified eye|Coloboma of optic disc, unspecified eye +C0155299|T047|PT|H47.319|ICD10CM|Coloboma of optic disc, unspecified eye|Coloboma of optic disc, unspecified eye +C0029128|T047|HT|H47.32|ICD10CM|Drusen of optic disc|Drusen of optic disc +C0029128|T047|AB|H47.32|ICD10CM|Drusen of optic disc|Drusen of optic disc +C2013205|T033|AB|H47.321|ICD10CM|Drusen of optic disc, right eye|Drusen of optic disc, right eye +C2013205|T033|PT|H47.321|ICD10CM|Drusen of optic disc, right eye|Drusen of optic disc, right eye +C2013204|T033|AB|H47.322|ICD10CM|Drusen of optic disc, left eye|Drusen of optic disc, left eye +C2013204|T033|PT|H47.322|ICD10CM|Drusen of optic disc, left eye|Drusen of optic disc, left eye +C2881244|T047|AB|H47.323|ICD10CM|Drusen of optic disc, bilateral|Drusen of optic disc, bilateral +C2881244|T047|PT|H47.323|ICD10CM|Drusen of optic disc, bilateral|Drusen of optic disc, bilateral +C2881245|T047|AB|H47.329|ICD10CM|Drusen of optic disc, unspecified eye|Drusen of optic disc, unspecified eye +C2881245|T047|PT|H47.329|ICD10CM|Drusen of optic disc, unspecified eye|Drusen of optic disc, unspecified eye +C2881246|T047|AB|H47.33|ICD10CM|Pseudopapilledema of optic disc|Pseudopapilledema of optic disc +C2881246|T047|HT|H47.33|ICD10CM|Pseudopapilledema of optic disc|Pseudopapilledema of optic disc +C2881247|T047|AB|H47.331|ICD10CM|Pseudopapilledema of optic disc, right eye|Pseudopapilledema of optic disc, right eye +C2881247|T047|PT|H47.331|ICD10CM|Pseudopapilledema of optic disc, right eye|Pseudopapilledema of optic disc, right eye +C2881248|T047|AB|H47.332|ICD10CM|Pseudopapilledema of optic disc, left eye|Pseudopapilledema of optic disc, left eye +C2881248|T047|PT|H47.332|ICD10CM|Pseudopapilledema of optic disc, left eye|Pseudopapilledema of optic disc, left eye +C2881249|T047|AB|H47.333|ICD10CM|Pseudopapilledema of optic disc, bilateral|Pseudopapilledema of optic disc, bilateral +C2881249|T047|PT|H47.333|ICD10CM|Pseudopapilledema of optic disc, bilateral|Pseudopapilledema of optic disc, bilateral +C2881250|T047|AB|H47.339|ICD10CM|Pseudopapilledema of optic disc, unspecified eye|Pseudopapilledema of optic disc, unspecified eye +C2881250|T047|PT|H47.339|ICD10CM|Pseudopapilledema of optic disc, unspecified eye|Pseudopapilledema of optic disc, unspecified eye +C0155296|T047|HT|H47.39|ICD10CM|Other disorders of optic disc|Other disorders of optic disc +C0155296|T047|AB|H47.39|ICD10CM|Other disorders of optic disc|Other disorders of optic disc +C2881251|T047|AB|H47.391|ICD10CM|Other disorders of optic disc, right eye|Other disorders of optic disc, right eye +C2881251|T047|PT|H47.391|ICD10CM|Other disorders of optic disc, right eye|Other disorders of optic disc, right eye +C2881252|T047|AB|H47.392|ICD10CM|Other disorders of optic disc, left eye|Other disorders of optic disc, left eye +C2881252|T047|PT|H47.392|ICD10CM|Other disorders of optic disc, left eye|Other disorders of optic disc, left eye +C2881253|T047|AB|H47.393|ICD10CM|Other disorders of optic disc, bilateral|Other disorders of optic disc, bilateral +C2881253|T047|PT|H47.393|ICD10CM|Other disorders of optic disc, bilateral|Other disorders of optic disc, bilateral +C2881254|T047|AB|H47.399|ICD10CM|Other disorders of optic disc, unspecified eye|Other disorders of optic disc, unspecified eye +C2881254|T047|PT|H47.399|ICD10CM|Other disorders of optic disc, unspecified eye|Other disorders of optic disc, unspecified eye +C0155307|T047|HT|H47.4|ICD10CM|Disorders of optic chiasm|Disorders of optic chiasm +C0155307|T047|AB|H47.4|ICD10CM|Disorders of optic chiasm|Disorders of optic chiasm +C0155307|T047|PT|H47.4|ICD10|Disorders of optic chiasm|Disorders of optic chiasm +C2881255|T047|AB|H47.41|ICD10CM|Disorders of optic chiasm in (due to) inflammatory disorders|Disorders of optic chiasm in (due to) inflammatory disorders +C2881255|T047|PT|H47.41|ICD10CM|Disorders of optic chiasm in (due to) inflammatory disorders|Disorders of optic chiasm in (due to) inflammatory disorders +C2317008|T047|AB|H47.42|ICD10CM|Disorders of optic chiasm in (due to) neoplasm|Disorders of optic chiasm in (due to) neoplasm +C2317008|T047|PT|H47.42|ICD10CM|Disorders of optic chiasm in (due to) neoplasm|Disorders of optic chiasm in (due to) neoplasm +C0155310|T047|AB|H47.43|ICD10CM|Disorders of optic chiasm in (due to) vascular disorders|Disorders of optic chiasm in (due to) vascular disorders +C0155310|T047|PT|H47.43|ICD10CM|Disorders of optic chiasm in (due to) vascular disorders|Disorders of optic chiasm in (due to) vascular disorders +C2881256|T047|AB|H47.49|ICD10CM|Disorders of optic chiasm in (due to) other disorders|Disorders of optic chiasm in (due to) other disorders +C2881256|T047|PT|H47.49|ICD10CM|Disorders of optic chiasm in (due to) other disorders|Disorders of optic chiasm in (due to) other disorders +C2881257|T047|ET|H47.5|ICD10CM|Disorders of optic tracts, geniculate nuclei and optic radiations|Disorders of optic tracts, geniculate nuclei and optic radiations +C0155312|T047|HT|H47.5|ICD10CM|Disorders of other visual pathways|Disorders of other visual pathways +C0155312|T047|AB|H47.5|ICD10CM|Disorders of other visual pathways|Disorders of other visual pathways +C0155312|T047|PT|H47.5|ICD10|Disorders of other visual pathways|Disorders of other visual pathways +C0338520|T047|AB|H47.51|ICD10CM|Disorders of visual pathways in (due to) inflam disorders|Disorders of visual pathways in (due to) inflam disorders +C0338520|T047|HT|H47.51|ICD10CM|Disorders of visual pathways in (due to) inflammatory disorders|Disorders of visual pathways in (due to) inflammatory disorders +C2881258|T047|AB|H47.511|ICD10CM|Disord of visual pathways in inflam disord, right side|Disord of visual pathways in inflam disord, right side +C2881258|T047|PT|H47.511|ICD10CM|Disorders of visual pathways in (due to) inflammatory disorders, right side|Disorders of visual pathways in (due to) inflammatory disorders, right side +C2881259|T047|AB|H47.512|ICD10CM|Disord of visual pathways in inflam disord, left side|Disord of visual pathways in inflam disord, left side +C2881259|T047|PT|H47.512|ICD10CM|Disorders of visual pathways in (due to) inflammatory disorders, left side|Disorders of visual pathways in (due to) inflammatory disorders, left side +C2881260|T047|AB|H47.519|ICD10CM|Disord of visual pathways in inflam disord, unsp side|Disord of visual pathways in inflam disord, unsp side +C2881260|T047|PT|H47.519|ICD10CM|Disorders of visual pathways in (due to) inflammatory disorders, unspecified side|Disorders of visual pathways in (due to) inflammatory disorders, unspecified side +C0339599|T047|AB|H47.52|ICD10CM|Disorders of visual pathways in (due to) neoplasm|Disorders of visual pathways in (due to) neoplasm +C0339599|T047|HT|H47.52|ICD10CM|Disorders of visual pathways in (due to) neoplasm|Disorders of visual pathways in (due to) neoplasm +C2881261|T047|AB|H47.521|ICD10CM|Disord of visual pathways in (due to) neoplasm, right side|Disord of visual pathways in (due to) neoplasm, right side +C2881261|T047|PT|H47.521|ICD10CM|Disorders of visual pathways in (due to) neoplasm, right side|Disorders of visual pathways in (due to) neoplasm, right side +C2881262|T047|AB|H47.522|ICD10CM|Disorders of visual pathways in (due to) neoplasm, left side|Disorders of visual pathways in (due to) neoplasm, left side +C2881262|T047|PT|H47.522|ICD10CM|Disorders of visual pathways in (due to) neoplasm, left side|Disorders of visual pathways in (due to) neoplasm, left side +C2881263|T047|AB|H47.529|ICD10CM|Disorders of visual pathways in (due to) neoplasm, unsp side|Disorders of visual pathways in (due to) neoplasm, unsp side +C2881263|T047|PT|H47.529|ICD10CM|Disorders of visual pathways in (due to) neoplasm, unspecified side|Disorders of visual pathways in (due to) neoplasm, unspecified side +C0339600|T047|AB|H47.53|ICD10CM|Disorders of visual pathways in (due to) vascular disorders|Disorders of visual pathways in (due to) vascular disorders +C0339600|T047|HT|H47.53|ICD10CM|Disorders of visual pathways in (due to) vascular disorders|Disorders of visual pathways in (due to) vascular disorders +C2881264|T047|AB|H47.531|ICD10CM|Disord of visual pathways in vascular disord, right side|Disord of visual pathways in vascular disord, right side +C2881264|T047|PT|H47.531|ICD10CM|Disorders of visual pathways in (due to) vascular disorders, right side|Disorders of visual pathways in (due to) vascular disorders, right side +C2881265|T047|AB|H47.532|ICD10CM|Disord of visual pathways in vascular disord, left side|Disord of visual pathways in vascular disord, left side +C2881265|T047|PT|H47.532|ICD10CM|Disorders of visual pathways in (due to) vascular disorders, left side|Disorders of visual pathways in (due to) vascular disorders, left side +C2881266|T047|AB|H47.539|ICD10CM|Disord of visual pathways in vascular disord, unsp side|Disord of visual pathways in vascular disord, unsp side +C2881266|T047|PT|H47.539|ICD10CM|Disorders of visual pathways in (due to) vascular disorders, unspecified side|Disorders of visual pathways in (due to) vascular disorders, unspecified side +C0234398|T047|HT|H47.6|ICD10CM|Disorders of visual cortex|Disorders of visual cortex +C0234398|T047|AB|H47.6|ICD10CM|Disorders of visual cortex|Disorders of visual cortex +C0234398|T047|PT|H47.6|ICD10|Disorders of visual cortex|Disorders of visual cortex +C0155320|T047|HT|H47.61|ICD10CM|Cortical blindness|Cortical blindness +C0155320|T047|AB|H47.61|ICD10CM|Cortical blindness|Cortical blindness +C2881267|T047|AB|H47.611|ICD10CM|Cortical blindness, right side of brain|Cortical blindness, right side of brain +C2881267|T047|PT|H47.611|ICD10CM|Cortical blindness, right side of brain|Cortical blindness, right side of brain +C2881268|T047|AB|H47.612|ICD10CM|Cortical blindness, left side of brain|Cortical blindness, left side of brain +C2881268|T047|PT|H47.612|ICD10CM|Cortical blindness, left side of brain|Cortical blindness, left side of brain +C2881269|T047|AB|H47.619|ICD10CM|Cortical blindness, unspecified side of brain|Cortical blindness, unspecified side of brain +C2881269|T047|PT|H47.619|ICD10CM|Cortical blindness, unspecified side of brain|Cortical blindness, unspecified side of brain +C2881270|T047|AB|H47.62|ICD10CM|Disorders of visual cortex in (due to) inflam disorders|Disorders of visual cortex in (due to) inflam disorders +C2881270|T047|HT|H47.62|ICD10CM|Disorders of visual cortex in (due to) inflammatory disorders|Disorders of visual cortex in (due to) inflammatory disorders +C2881271|T047|AB|H47.621|ICD10CM|Disord of visual cortex in inflam disord, r side of brain|Disord of visual cortex in inflam disord, r side of brain +C2881271|T047|PT|H47.621|ICD10CM|Disorders of visual cortex in (due to) inflammatory disorders, right side of brain|Disorders of visual cortex in (due to) inflammatory disorders, right side of brain +C2881272|T047|AB|H47.622|ICD10CM|Disord of visual cortex in inflam disord, left side of brain|Disord of visual cortex in inflam disord, left side of brain +C2881272|T047|PT|H47.622|ICD10CM|Disorders of visual cortex in (due to) inflammatory disorders, left side of brain|Disorders of visual cortex in (due to) inflammatory disorders, left side of brain +C2881273|T047|AB|H47.629|ICD10CM|Disord of visual cortex in inflam disord, unsp side of brain|Disord of visual cortex in inflam disord, unsp side of brain +C2881273|T047|PT|H47.629|ICD10CM|Disorders of visual cortex in (due to) inflammatory disorders, unspecified side of brain|Disorders of visual cortex in (due to) inflammatory disorders, unspecified side of brain +C0155317|T047|AB|H47.63|ICD10CM|Disorders of visual cortex in (due to) neoplasm|Disorders of visual cortex in (due to) neoplasm +C0155317|T047|HT|H47.63|ICD10CM|Disorders of visual cortex in (due to) neoplasm|Disorders of visual cortex in (due to) neoplasm +C2881274|T047|AB|H47.631|ICD10CM|Disord of visual cortex in neoplasm, right side of brain|Disord of visual cortex in neoplasm, right side of brain +C2881274|T047|PT|H47.631|ICD10CM|Disorders of visual cortex in (due to) neoplasm, right side of brain|Disorders of visual cortex in (due to) neoplasm, right side of brain +C2881275|T047|AB|H47.632|ICD10CM|Disord of visual cortex in neoplasm, left side of brain|Disord of visual cortex in neoplasm, left side of brain +C2881275|T047|PT|H47.632|ICD10CM|Disorders of visual cortex in (due to) neoplasm, left side of brain|Disorders of visual cortex in (due to) neoplasm, left side of brain +C2881276|T047|AB|H47.639|ICD10CM|Disord of visual cortex in neoplasm, unsp side of brain|Disord of visual cortex in neoplasm, unsp side of brain +C2881276|T047|PT|H47.639|ICD10CM|Disorders of visual cortex in (due to) neoplasm, unspecified side of brain|Disorders of visual cortex in (due to) neoplasm, unspecified side of brain +C0155318|T047|AB|H47.64|ICD10CM|Disorders of visual cortex in (due to) vascular disorders|Disorders of visual cortex in (due to) vascular disorders +C0155318|T047|HT|H47.64|ICD10CM|Disorders of visual cortex in (due to) vascular disorders|Disorders of visual cortex in (due to) vascular disorders +C2881277|T047|AB|H47.641|ICD10CM|Disord of visual cortex in vasc disord, right side of brain|Disord of visual cortex in vasc disord, right side of brain +C2881277|T047|PT|H47.641|ICD10CM|Disorders of visual cortex in (due to) vascular disorders, right side of brain|Disorders of visual cortex in (due to) vascular disorders, right side of brain +C2881278|T047|AB|H47.642|ICD10CM|Disord of visual cortex in vasc disord, left side of brain|Disord of visual cortex in vasc disord, left side of brain +C2881278|T047|PT|H47.642|ICD10CM|Disorders of visual cortex in (due to) vascular disorders, left side of brain|Disorders of visual cortex in (due to) vascular disorders, left side of brain +C2881279|T047|AB|H47.649|ICD10CM|Disord of visual cortex in vasc disord, unsp side of brain|Disord of visual cortex in vasc disord, unsp side of brain +C2881279|T047|PT|H47.649|ICD10CM|Disorders of visual cortex in (due to) vascular disorders, unspecified side of brain|Disorders of visual cortex in (due to) vascular disorders, unspecified side of brain +C0155287|T047|PT|H47.7|ICD10|Disorder of visual pathways, unspecified|Disorder of visual pathways, unspecified +C0155287|T047|AB|H47.9|ICD10CM|Unspecified disorder of visual pathways|Unspecified disorder of visual pathways +C0155287|T047|PT|H47.9|ICD10CM|Unspecified disorder of visual pathways|Unspecified disorder of visual pathways +C0694490|T047|HT|H48|ICD10|Disorders of optic [2nd] nerve and visual pathways in diseases classified elsewhere|Disorders of optic [2nd] nerve and visual pathways in diseases classified elsewhere +C0348563|T047|PT|H48.0|ICD10|Optic atrophy in diseases classified elsewhere|Optic atrophy in diseases classified elsewhere +C0348564|T047|PT|H48.1|ICD10|Retrobulbar neuritis in diseases classified elsewhere|Retrobulbar neuritis in diseases classified elsewhere +C0348565|T047|PT|H48.8|ICD10|Other disorders of optic nerve and visual pathways in diseases classified elsewhere|Other disorders of optic nerve and visual pathways in diseases classified elsewhere +C0152221|T047|HT|H49|ICD10|Paralytic strabismus|Paralytic strabismus +C0152221|T047|HT|H49|ICD10CM|Paralytic strabismus|Paralytic strabismus +C0152221|T047|AB|H49|ICD10CM|Paralytic strabismus|Paralytic strabismus +C0348566|T047|HT|H49-H52|ICD10CM|Disorders of ocular muscles, binocular movement, accommodation and refraction (H49-H52)|Disorders of ocular muscles, binocular movement, accommodation and refraction (H49-H52) +C0348566|T047|HT|H49-H52.9|ICD10|Disorders of ocular muscles, binocular movement, accommodation and refraction|Disorders of ocular muscles, binocular movement, accommodation and refraction +C0028866|T047|PT|H49.0|ICD10|Third [oculomotor] nerve palsy|Third [oculomotor] nerve palsy +C0028866|T047|HT|H49.0|ICD10CM|Third [oculomotor] nerve palsy|Third [oculomotor] nerve palsy +C0028866|T047|AB|H49.0|ICD10CM|Third [oculomotor] nerve palsy|Third [oculomotor] nerve palsy +C2881280|T047|AB|H49.00|ICD10CM|Third [oculomotor] nerve palsy, unspecified eye|Third [oculomotor] nerve palsy, unspecified eye +C2881280|T047|PT|H49.00|ICD10CM|Third [oculomotor] nerve palsy, unspecified eye|Third [oculomotor] nerve palsy, unspecified eye +C2881281|T047|AB|H49.01|ICD10CM|Third [oculomotor] nerve palsy, right eye|Third [oculomotor] nerve palsy, right eye +C2881281|T047|PT|H49.01|ICD10CM|Third [oculomotor] nerve palsy, right eye|Third [oculomotor] nerve palsy, right eye +C2881282|T047|AB|H49.02|ICD10CM|Third [oculomotor] nerve palsy, left eye|Third [oculomotor] nerve palsy, left eye +C2881282|T047|PT|H49.02|ICD10CM|Third [oculomotor] nerve palsy, left eye|Third [oculomotor] nerve palsy, left eye +C2881283|T047|AB|H49.03|ICD10CM|Third [oculomotor] nerve palsy, bilateral|Third [oculomotor] nerve palsy, bilateral +C2881283|T047|PT|H49.03|ICD10CM|Third [oculomotor] nerve palsy, bilateral|Third [oculomotor] nerve palsy, bilateral +C0271375|T047|HT|H49.1|ICD10CM|Fourth [trochlear] nerve palsy|Fourth [trochlear] nerve palsy +C0271375|T047|AB|H49.1|ICD10CM|Fourth [trochlear] nerve palsy|Fourth [trochlear] nerve palsy +C0271375|T047|PT|H49.1|ICD10|Fourth [trochlear] nerve palsy|Fourth [trochlear] nerve palsy +C2881284|T047|AB|H49.10|ICD10CM|Fourth [trochlear] nerve palsy, unspecified eye|Fourth [trochlear] nerve palsy, unspecified eye +C2881284|T047|PT|H49.10|ICD10CM|Fourth [trochlear] nerve palsy, unspecified eye|Fourth [trochlear] nerve palsy, unspecified eye +C2881285|T047|AB|H49.11|ICD10CM|Fourth [trochlear] nerve palsy, right eye|Fourth [trochlear] nerve palsy, right eye +C2881285|T047|PT|H49.11|ICD10CM|Fourth [trochlear] nerve palsy, right eye|Fourth [trochlear] nerve palsy, right eye +C2881286|T047|AB|H49.12|ICD10CM|Fourth [trochlear] nerve palsy, left eye|Fourth [trochlear] nerve palsy, left eye +C2881286|T047|PT|H49.12|ICD10CM|Fourth [trochlear] nerve palsy, left eye|Fourth [trochlear] nerve palsy, left eye +C2881287|T047|AB|H49.13|ICD10CM|Fourth [trochlear] nerve palsy, bilateral|Fourth [trochlear] nerve palsy, bilateral +C2881287|T047|PT|H49.13|ICD10CM|Fourth [trochlear] nerve palsy, bilateral|Fourth [trochlear] nerve palsy, bilateral +C4551519|T047|PT|H49.2|ICD10|Sixth [abducent] nerve palsy|Sixth [abducent] nerve palsy +C4551519|T047|HT|H49.2|ICD10CM|Sixth [abducent] nerve palsy|Sixth [abducent] nerve palsy +C4551519|T047|AB|H49.2|ICD10CM|Sixth [abducent] nerve palsy|Sixth [abducent] nerve palsy +C2881288|T047|AB|H49.20|ICD10CM|Sixth [abducent] nerve palsy, unspecified eye|Sixth [abducent] nerve palsy, unspecified eye +C2881288|T047|PT|H49.20|ICD10CM|Sixth [abducent] nerve palsy, unspecified eye|Sixth [abducent] nerve palsy, unspecified eye +C2881289|T047|AB|H49.21|ICD10CM|Sixth [abducent] nerve palsy, right eye|Sixth [abducent] nerve palsy, right eye +C2881289|T047|PT|H49.21|ICD10CM|Sixth [abducent] nerve palsy, right eye|Sixth [abducent] nerve palsy, right eye +C2881290|T047|AB|H49.22|ICD10CM|Sixth [abducent] nerve palsy, left eye|Sixth [abducent] nerve palsy, left eye +C2881290|T047|PT|H49.22|ICD10CM|Sixth [abducent] nerve palsy, left eye|Sixth [abducent] nerve palsy, left eye +C2881291|T047|AB|H49.23|ICD10CM|Sixth [abducent] nerve palsy, bilateral|Sixth [abducent] nerve palsy, bilateral +C2881291|T047|PT|H49.23|ICD10CM|Sixth [abducent] nerve palsy, bilateral|Sixth [abducent] nerve palsy, bilateral +C0392059|T047|PT|H49.3|ICD10|Total (external) ophthalmoplegia|Total (external) ophthalmoplegia +C0392059|T047|HT|H49.3|ICD10CM|Total (external) ophthalmoplegia|Total (external) ophthalmoplegia +C0392059|T047|AB|H49.3|ICD10CM|Total (external) ophthalmoplegia|Total (external) ophthalmoplegia +C2881292|T047|AB|H49.30|ICD10CM|Total (external) ophthalmoplegia, unspecified eye|Total (external) ophthalmoplegia, unspecified eye +C2881292|T047|PT|H49.30|ICD10CM|Total (external) ophthalmoplegia, unspecified eye|Total (external) ophthalmoplegia, unspecified eye +C2881293|T047|AB|H49.31|ICD10CM|Total (external) ophthalmoplegia, right eye|Total (external) ophthalmoplegia, right eye +C2881293|T047|PT|H49.31|ICD10CM|Total (external) ophthalmoplegia, right eye|Total (external) ophthalmoplegia, right eye +C2881294|T047|AB|H49.32|ICD10CM|Total (external) ophthalmoplegia, left eye|Total (external) ophthalmoplegia, left eye +C2881294|T047|PT|H49.32|ICD10CM|Total (external) ophthalmoplegia, left eye|Total (external) ophthalmoplegia, left eye +C2881295|T047|AB|H49.33|ICD10CM|Total (external) ophthalmoplegia, bilateral|Total (external) ophthalmoplegia, bilateral +C2881295|T047|PT|H49.33|ICD10CM|Total (external) ophthalmoplegia, bilateral|Total (external) ophthalmoplegia, bilateral +C0162674|T047|PT|H49.4|ICD10|Progressive external ophthalmoplegia|Progressive external ophthalmoplegia +C0162674|T047|HT|H49.4|ICD10CM|Progressive external ophthalmoplegia|Progressive external ophthalmoplegia +C0162674|T047|AB|H49.4|ICD10CM|Progressive external ophthalmoplegia|Progressive external ophthalmoplegia +C2881296|T047|AB|H49.40|ICD10CM|Progressive external ophthalmoplegia, unspecified eye|Progressive external ophthalmoplegia, unspecified eye +C2881296|T047|PT|H49.40|ICD10CM|Progressive external ophthalmoplegia, unspecified eye|Progressive external ophthalmoplegia, unspecified eye +C2881297|T047|AB|H49.41|ICD10CM|Progressive external ophthalmoplegia, right eye|Progressive external ophthalmoplegia, right eye +C2881297|T047|PT|H49.41|ICD10CM|Progressive external ophthalmoplegia, right eye|Progressive external ophthalmoplegia, right eye +C2881298|T047|AB|H49.42|ICD10CM|Progressive external ophthalmoplegia, left eye|Progressive external ophthalmoplegia, left eye +C2881298|T047|PT|H49.42|ICD10CM|Progressive external ophthalmoplegia, left eye|Progressive external ophthalmoplegia, left eye +C2881299|T047|AB|H49.43|ICD10CM|Progressive external ophthalmoplegia, bilateral|Progressive external ophthalmoplegia, bilateral +C2881299|T047|PT|H49.43|ICD10CM|Progressive external ophthalmoplegia, bilateral|Progressive external ophthalmoplegia, bilateral +C0348567|T047|HT|H49.8|ICD10CM|Other paralytic strabismus|Other paralytic strabismus +C0348567|T047|AB|H49.8|ICD10CM|Other paralytic strabismus|Other paralytic strabismus +C0348567|T047|PT|H49.8|ICD10|Other paralytic strabismus|Other paralytic strabismus +C0022541|T047|HT|H49.81|ICD10CM|Kearns-Sayre syndrome|Kearns-Sayre syndrome +C0022541|T047|AB|H49.81|ICD10CM|Kearns-Sayre syndrome|Kearns-Sayre syndrome +C2881300|T047|ET|H49.81|ICD10CM|Progressive external ophthalmoplegia with pigmentary retinopathy|Progressive external ophthalmoplegia with pigmentary retinopathy +C2881301|T047|AB|H49.811|ICD10CM|Kearns-Sayre syndrome, right eye|Kearns-Sayre syndrome, right eye +C2881301|T047|PT|H49.811|ICD10CM|Kearns-Sayre syndrome, right eye|Kearns-Sayre syndrome, right eye +C2881302|T047|AB|H49.812|ICD10CM|Kearns-Sayre syndrome, left eye|Kearns-Sayre syndrome, left eye +C2881302|T047|PT|H49.812|ICD10CM|Kearns-Sayre syndrome, left eye|Kearns-Sayre syndrome, left eye +C2881303|T047|AB|H49.813|ICD10CM|Kearns-Sayre syndrome, bilateral|Kearns-Sayre syndrome, bilateral +C2881303|T047|PT|H49.813|ICD10CM|Kearns-Sayre syndrome, bilateral|Kearns-Sayre syndrome, bilateral +C2881304|T047|AB|H49.819|ICD10CM|Kearns-Sayre syndrome, unspecified eye|Kearns-Sayre syndrome, unspecified eye +C2881304|T047|PT|H49.819|ICD10CM|Kearns-Sayre syndrome, unspecified eye|Kearns-Sayre syndrome, unspecified eye +C0162292|T047|ET|H49.88|ICD10CM|External ophthalmoplegia NOS|External ophthalmoplegia NOS +C0348567|T047|HT|H49.88|ICD10CM|Other paralytic strabismus|Other paralytic strabismus +C0348567|T047|AB|H49.88|ICD10CM|Other paralytic strabismus|Other paralytic strabismus +C2881305|T047|AB|H49.881|ICD10CM|Other paralytic strabismus, right eye|Other paralytic strabismus, right eye +C2881305|T047|PT|H49.881|ICD10CM|Other paralytic strabismus, right eye|Other paralytic strabismus, right eye +C2881306|T047|AB|H49.882|ICD10CM|Other paralytic strabismus, left eye|Other paralytic strabismus, left eye +C2881306|T047|PT|H49.882|ICD10CM|Other paralytic strabismus, left eye|Other paralytic strabismus, left eye +C2881307|T047|AB|H49.883|ICD10CM|Other paralytic strabismus, bilateral|Other paralytic strabismus, bilateral +C2881307|T047|PT|H49.883|ICD10CM|Other paralytic strabismus, bilateral|Other paralytic strabismus, bilateral +C2881308|T047|AB|H49.889|ICD10CM|Other paralytic strabismus, unspecified eye|Other paralytic strabismus, unspecified eye +C2881308|T047|PT|H49.889|ICD10CM|Other paralytic strabismus, unspecified eye|Other paralytic strabismus, unspecified eye +C0152221|T047|PT|H49.9|ICD10|Paralytic strabismus, unspecified|Paralytic strabismus, unspecified +C0152221|T047|AB|H49.9|ICD10CM|Unspecified paralytic strabismus|Unspecified paralytic strabismus +C0152221|T047|PT|H49.9|ICD10CM|Unspecified paralytic strabismus|Unspecified paralytic strabismus +C0494544|T047|AB|H50|ICD10CM|Other strabismus|Other strabismus +C0494544|T047|HT|H50|ICD10CM|Other strabismus|Other strabismus +C0494544|T047|HT|H50|ICD10|Other strabismus|Other strabismus +C0014877|T047|PT|H50.0|ICD10|Convergent concomitant strabismus|Convergent concomitant strabismus +C0014877|T047|ET|H50.0|ICD10CM|Convergent concomitant strabismus|Convergent concomitant strabismus +C0014877|T047|HT|H50.0|ICD10CM|Esotropia|Esotropia +C0014877|T047|AB|H50.0|ICD10CM|Esotropia|Esotropia +C0014877|T047|AB|H50.00|ICD10CM|Unspecified esotropia|Unspecified esotropia +C0014877|T047|PT|H50.00|ICD10CM|Unspecified esotropia|Unspecified esotropia +C0152204|T047|HT|H50.01|ICD10CM|Monocular esotropia|Monocular esotropia +C0152204|T047|AB|H50.01|ICD10CM|Monocular esotropia|Monocular esotropia +C2020520|T047|AB|H50.011|ICD10CM|Monocular esotropia, right eye|Monocular esotropia, right eye +C2020520|T047|PT|H50.011|ICD10CM|Monocular esotropia, right eye|Monocular esotropia, right eye +C2020519|T047|AB|H50.012|ICD10CM|Monocular esotropia, left eye|Monocular esotropia, left eye +C2020519|T047|PT|H50.012|ICD10CM|Monocular esotropia, left eye|Monocular esotropia, left eye +C0155322|T047|HT|H50.02|ICD10CM|Monocular esotropia with A pattern|Monocular esotropia with A pattern +C0155322|T047|AB|H50.02|ICD10CM|Monocular esotropia with A pattern|Monocular esotropia with A pattern +C2881309|T047|AB|H50.021|ICD10CM|Monocular esotropia with A pattern, right eye|Monocular esotropia with A pattern, right eye +C2881309|T047|PT|H50.021|ICD10CM|Monocular esotropia with A pattern, right eye|Monocular esotropia with A pattern, right eye +C2881310|T047|AB|H50.022|ICD10CM|Monocular esotropia with A pattern, left eye|Monocular esotropia with A pattern, left eye +C2881310|T047|PT|H50.022|ICD10CM|Monocular esotropia with A pattern, left eye|Monocular esotropia with A pattern, left eye +C0155323|T047|HT|H50.03|ICD10CM|Monocular esotropia with V pattern|Monocular esotropia with V pattern +C0155323|T047|AB|H50.03|ICD10CM|Monocular esotropia with V pattern|Monocular esotropia with V pattern +C2881311|T047|AB|H50.031|ICD10CM|Monocular esotropia with V pattern, right eye|Monocular esotropia with V pattern, right eye +C2881311|T047|PT|H50.031|ICD10CM|Monocular esotropia with V pattern, right eye|Monocular esotropia with V pattern, right eye +C2881312|T047|AB|H50.032|ICD10CM|Monocular esotropia with V pattern, left eye|Monocular esotropia with V pattern, left eye +C2881312|T047|PT|H50.032|ICD10CM|Monocular esotropia with V pattern, left eye|Monocular esotropia with V pattern, left eye +C0155324|T047|HT|H50.04|ICD10CM|Monocular esotropia with other noncomitancies|Monocular esotropia with other noncomitancies +C0155324|T047|AB|H50.04|ICD10CM|Monocular esotropia with other noncomitancies|Monocular esotropia with other noncomitancies +C2881313|T047|AB|H50.041|ICD10CM|Monocular esotropia with other noncomitancies, right eye|Monocular esotropia with other noncomitancies, right eye +C2881313|T047|PT|H50.041|ICD10CM|Monocular esotropia with other noncomitancies, right eye|Monocular esotropia with other noncomitancies, right eye +C2881314|T047|AB|H50.042|ICD10CM|Monocular esotropia with other noncomitancies, left eye|Monocular esotropia with other noncomitancies, left eye +C2881314|T047|PT|H50.042|ICD10CM|Monocular esotropia with other noncomitancies, left eye|Monocular esotropia with other noncomitancies, left eye +C0152205|T047|PT|H50.05|ICD10CM|Alternating esotropia|Alternating esotropia +C0152205|T047|AB|H50.05|ICD10CM|Alternating esotropia|Alternating esotropia +C0155325|T047|PT|H50.06|ICD10CM|Alternating esotropia with A pattern|Alternating esotropia with A pattern +C0155325|T047|AB|H50.06|ICD10CM|Alternating esotropia with A pattern|Alternating esotropia with A pattern +C0155326|T047|PT|H50.07|ICD10CM|Alternating esotropia with V pattern|Alternating esotropia with V pattern +C0155326|T047|AB|H50.07|ICD10CM|Alternating esotropia with V pattern|Alternating esotropia with V pattern +C0155327|T047|PT|H50.08|ICD10CM|Alternating esotropia with other noncomitancies|Alternating esotropia with other noncomitancies +C0155327|T047|AB|H50.08|ICD10CM|Alternating esotropia with other noncomitancies|Alternating esotropia with other noncomitancies +C0015310|T047|PT|H50.1|ICD10|Divergent concomitant strabismus|Divergent concomitant strabismus +C0015310|T047|ET|H50.1|ICD10CM|Divergent concomitant strabismus|Divergent concomitant strabismus +C0015310|T047|HT|H50.1|ICD10CM|Exotropia|Exotropia +C0015310|T047|AB|H50.1|ICD10CM|Exotropia|Exotropia +C0015310|T047|AB|H50.10|ICD10CM|Unspecified exotropia|Unspecified exotropia +C0015310|T047|PT|H50.10|ICD10CM|Unspecified exotropia|Unspecified exotropia +C0152206|T047|HT|H50.11|ICD10CM|Monocular exotropia|Monocular exotropia +C0152206|T047|AB|H50.11|ICD10CM|Monocular exotropia|Monocular exotropia +C2020522|T047|AB|H50.111|ICD10CM|Monocular exotropia, right eye|Monocular exotropia, right eye +C2020522|T047|PT|H50.111|ICD10CM|Monocular exotropia, right eye|Monocular exotropia, right eye +C2020521|T047|AB|H50.112|ICD10CM|Monocular exotropia, left eye|Monocular exotropia, left eye +C2020521|T047|PT|H50.112|ICD10CM|Monocular exotropia, left eye|Monocular exotropia, left eye +C0155328|T047|HT|H50.12|ICD10CM|Monocular exotropia with A pattern|Monocular exotropia with A pattern +C0155328|T047|AB|H50.12|ICD10CM|Monocular exotropia with A pattern|Monocular exotropia with A pattern +C2881315|T047|AB|H50.121|ICD10CM|Monocular exotropia with A pattern, right eye|Monocular exotropia with A pattern, right eye +C2881315|T047|PT|H50.121|ICD10CM|Monocular exotropia with A pattern, right eye|Monocular exotropia with A pattern, right eye +C2881316|T047|AB|H50.122|ICD10CM|Monocular exotropia with A pattern, left eye|Monocular exotropia with A pattern, left eye +C2881316|T047|PT|H50.122|ICD10CM|Monocular exotropia with A pattern, left eye|Monocular exotropia with A pattern, left eye +C0155329|T047|HT|H50.13|ICD10CM|Monocular exotropia with V pattern|Monocular exotropia with V pattern +C0155329|T047|AB|H50.13|ICD10CM|Monocular exotropia with V pattern|Monocular exotropia with V pattern +C2881317|T047|AB|H50.131|ICD10CM|Monocular exotropia with V pattern, right eye|Monocular exotropia with V pattern, right eye +C2881317|T047|PT|H50.131|ICD10CM|Monocular exotropia with V pattern, right eye|Monocular exotropia with V pattern, right eye +C2881318|T047|AB|H50.132|ICD10CM|Monocular exotropia with V pattern, left eye|Monocular exotropia with V pattern, left eye +C2881318|T047|PT|H50.132|ICD10CM|Monocular exotropia with V pattern, left eye|Monocular exotropia with V pattern, left eye +C0155330|T047|HT|H50.14|ICD10CM|Monocular exotropia with other noncomitancies|Monocular exotropia with other noncomitancies +C0155330|T047|AB|H50.14|ICD10CM|Monocular exotropia with other noncomitancies|Monocular exotropia with other noncomitancies +C2881319|T047|AB|H50.141|ICD10CM|Monocular exotropia with other noncomitancies, right eye|Monocular exotropia with other noncomitancies, right eye +C2881319|T047|PT|H50.141|ICD10CM|Monocular exotropia with other noncomitancies, right eye|Monocular exotropia with other noncomitancies, right eye +C2881320|T047|AB|H50.142|ICD10CM|Monocular exotropia with other noncomitancies, left eye|Monocular exotropia with other noncomitancies, left eye +C2881320|T047|PT|H50.142|ICD10CM|Monocular exotropia with other noncomitancies, left eye|Monocular exotropia with other noncomitancies, left eye +C0152207|T047|PT|H50.15|ICD10CM|Alternating exotropia|Alternating exotropia +C0152207|T047|AB|H50.15|ICD10CM|Alternating exotropia|Alternating exotropia +C0155331|T047|PT|H50.16|ICD10CM|Alternating exotropia with A pattern|Alternating exotropia with A pattern +C0155331|T047|AB|H50.16|ICD10CM|Alternating exotropia with A pattern|Alternating exotropia with A pattern +C0155332|T047|PT|H50.17|ICD10CM|Alternating exotropia with V pattern|Alternating exotropia with V pattern +C0155332|T047|AB|H50.17|ICD10CM|Alternating exotropia with V pattern|Alternating exotropia with V pattern +C0155333|T047|PT|H50.18|ICD10CM|Alternating exotropia with other noncomitancies|Alternating exotropia with other noncomitancies +C0155333|T047|AB|H50.18|ICD10CM|Alternating exotropia with other noncomitancies|Alternating exotropia with other noncomitancies +C0020575|T047|ET|H50.2|ICD10CM|Hypertropia|Hypertropia +C0271364|T047|PT|H50.2|ICD10|Vertical strabismus|Vertical strabismus +C0271364|T047|HT|H50.2|ICD10CM|Vertical strabismus|Vertical strabismus +C0271364|T047|AB|H50.2|ICD10CM|Vertical strabismus|Vertical strabismus +C2881321|T047|AB|H50.21|ICD10CM|Vertical strabismus, right eye|Vertical strabismus, right eye +C2881321|T047|PT|H50.21|ICD10CM|Vertical strabismus, right eye|Vertical strabismus, right eye +C2881322|T047|AB|H50.22|ICD10CM|Vertical strabismus, left eye|Vertical strabismus, left eye +C2881322|T047|PT|H50.22|ICD10CM|Vertical strabismus, left eye|Vertical strabismus, left eye +C0152210|T047|HT|H50.3|ICD10CM|Intermittent heterotropia|Intermittent heterotropia +C0152210|T047|AB|H50.3|ICD10CM|Intermittent heterotropia|Intermittent heterotropia +C0152210|T047|PT|H50.3|ICD10|Intermittent heterotropia|Intermittent heterotropia +C0152210|T047|AB|H50.30|ICD10CM|Unspecified intermittent heterotropia|Unspecified intermittent heterotropia +C0152210|T047|PT|H50.30|ICD10CM|Unspecified intermittent heterotropia|Unspecified intermittent heterotropia +C0152211|T047|HT|H50.31|ICD10CM|Intermittent monocular esotropia|Intermittent monocular esotropia +C0152211|T047|AB|H50.31|ICD10CM|Intermittent monocular esotropia|Intermittent monocular esotropia +C2881323|T047|AB|H50.311|ICD10CM|Intermittent monocular esotropia, right eye|Intermittent monocular esotropia, right eye +C2881323|T047|PT|H50.311|ICD10CM|Intermittent monocular esotropia, right eye|Intermittent monocular esotropia, right eye +C2881324|T047|AB|H50.312|ICD10CM|Intermittent monocular esotropia, left eye|Intermittent monocular esotropia, left eye +C2881324|T047|PT|H50.312|ICD10CM|Intermittent monocular esotropia, left eye|Intermittent monocular esotropia, left eye +C0152212|T047|PT|H50.32|ICD10CM|Intermittent alternating esotropia|Intermittent alternating esotropia +C0152212|T047|AB|H50.32|ICD10CM|Intermittent alternating esotropia|Intermittent alternating esotropia +C0152213|T047|HT|H50.33|ICD10CM|Intermittent monocular exotropia|Intermittent monocular exotropia +C0152213|T047|AB|H50.33|ICD10CM|Intermittent monocular exotropia|Intermittent monocular exotropia +C2881325|T047|AB|H50.331|ICD10CM|Intermittent monocular exotropia, right eye|Intermittent monocular exotropia, right eye +C2881325|T047|PT|H50.331|ICD10CM|Intermittent monocular exotropia, right eye|Intermittent monocular exotropia, right eye +C2881326|T047|AB|H50.332|ICD10CM|Intermittent monocular exotropia, left eye|Intermittent monocular exotropia, left eye +C2881326|T047|PT|H50.332|ICD10CM|Intermittent monocular exotropia, left eye|Intermittent monocular exotropia, left eye +C0152214|T047|PT|H50.34|ICD10CM|Intermittent alternating exotropia|Intermittent alternating exotropia +C0152214|T047|AB|H50.34|ICD10CM|Intermittent alternating exotropia|Intermittent alternating exotropia +C0155334|T047|HT|H50.4|ICD10CM|Other and unspecified heterotropia|Other and unspecified heterotropia +C0155334|T047|AB|H50.4|ICD10CM|Other and unspecified heterotropia|Other and unspecified heterotropia +C0155334|T047|PT|H50.4|ICD10|Other and unspecified heterotropia|Other and unspecified heterotropia +C0038379|T047|AB|H50.40|ICD10CM|Unspecified heterotropia|Unspecified heterotropia +C0038379|T047|PT|H50.40|ICD10CM|Unspecified heterotropia|Unspecified heterotropia +C0152209|T047|HT|H50.41|ICD10CM|Cyclotropia|Cyclotropia +C0152209|T047|AB|H50.41|ICD10CM|Cyclotropia|Cyclotropia +C2020518|T047|AB|H50.411|ICD10CM|Cyclotropia, right eye|Cyclotropia, right eye +C2020518|T047|PT|H50.411|ICD10CM|Cyclotropia, right eye|Cyclotropia, right eye +C2020517|T047|AB|H50.412|ICD10CM|Cyclotropia, left eye|Cyclotropia, left eye +C2020517|T047|PT|H50.412|ICD10CM|Cyclotropia, left eye|Cyclotropia, left eye +C0339611|T047|PT|H50.42|ICD10CM|Monofixation syndrome|Monofixation syndrome +C0339611|T047|AB|H50.42|ICD10CM|Monofixation syndrome|Monofixation syndrome +C0155336|T047|PT|H50.43|ICD10CM|Accommodative component in esotropia|Accommodative component in esotropia +C0155336|T047|AB|H50.43|ICD10CM|Accommodative component in esotropia|Accommodative component in esotropia +C4721400|T047|PT|H50.5|ICD10|Heterophoria|Heterophoria +C4721400|T047|HT|H50.5|ICD10CM|Heterophoria|Heterophoria +C4721400|T047|AB|H50.5|ICD10CM|Heterophoria|Heterophoria +C4721400|T047|AB|H50.50|ICD10CM|Unspecified heterophoria|Unspecified heterophoria +C4721400|T047|PT|H50.50|ICD10CM|Unspecified heterophoria|Unspecified heterophoria +C0152216|T047|PT|H50.51|ICD10CM|Esophoria|Esophoria +C0152216|T047|AB|H50.51|ICD10CM|Esophoria|Esophoria +C0152217|T047|PT|H50.52|ICD10CM|Exophoria|Exophoria +C0152217|T047|AB|H50.52|ICD10CM|Exophoria|Exophoria +C0152218|T047|PT|H50.53|ICD10CM|Vertical heterophoria|Vertical heterophoria +C0152218|T047|AB|H50.53|ICD10CM|Vertical heterophoria|Vertical heterophoria +C0152219|T047|PT|H50.54|ICD10CM|Cyclophoria|Cyclophoria +C0152219|T047|AB|H50.54|ICD10CM|Cyclophoria|Cyclophoria +C2020523|T047|PT|H50.55|ICD10CM|Alternating heterophoria|Alternating heterophoria +C2020523|T047|AB|H50.55|ICD10CM|Alternating heterophoria|Alternating heterophoria +C0152223|T047|HT|H50.6|ICD10CM|Mechanical strabismus|Mechanical strabismus +C0152223|T047|AB|H50.6|ICD10CM|Mechanical strabismus|Mechanical strabismus +C0152223|T047|PT|H50.6|ICD10|Mechanical strabismus|Mechanical strabismus +C0152223|T047|PT|H50.60|ICD10CM|Mechanical strabismus, unspecified|Mechanical strabismus, unspecified +C0152223|T047|AB|H50.60|ICD10CM|Mechanical strabismus, unspecified|Mechanical strabismus, unspecified +C0155339|T047|AB|H50.61|ICD10CM|Brown's sheath syndrome|Brown's sheath syndrome +C0155339|T047|HT|H50.61|ICD10CM|Brown's sheath syndrome|Brown's sheath syndrome +C2881327|T047|AB|H50.611|ICD10CM|Brown's sheath syndrome, right eye|Brown's sheath syndrome, right eye +C2881327|T047|PT|H50.611|ICD10CM|Brown's sheath syndrome, right eye|Brown's sheath syndrome, right eye +C2881328|T047|AB|H50.612|ICD10CM|Brown's sheath syndrome, left eye|Brown's sheath syndrome, left eye +C2881328|T047|PT|H50.612|ICD10CM|Brown's sheath syndrome, left eye|Brown's sheath syndrome, left eye +C2881330|T047|AB|H50.69|ICD10CM|Other mechanical strabismus|Other mechanical strabismus +C2881330|T047|PT|H50.69|ICD10CM|Other mechanical strabismus|Other mechanical strabismus +C1410239|T047|ET|H50.69|ICD10CM|Strabismus due to adhesions|Strabismus due to adhesions +C2881329|T037|ET|H50.69|ICD10CM|Traumatic limitation of duction of eye muscle|Traumatic limitation of duction of eye muscle +C0029831|T047|PT|H50.8|ICD10|Other specified strabismus|Other specified strabismus +C0029831|T047|HT|H50.8|ICD10CM|Other specified strabismus|Other specified strabismus +C0029831|T047|AB|H50.8|ICD10CM|Other specified strabismus|Other specified strabismus +C0013261|T047|HT|H50.81|ICD10CM|Duane's syndrome|Duane's syndrome +C0013261|T047|AB|H50.81|ICD10CM|Duane's syndrome|Duane's syndrome +C2881331|T047|AB|H50.811|ICD10CM|Duane's syndrome, right eye|Duane's syndrome, right eye +C2881331|T047|PT|H50.811|ICD10CM|Duane's syndrome, right eye|Duane's syndrome, right eye +C2881332|T047|AB|H50.812|ICD10CM|Duane's syndrome, left eye|Duane's syndrome, left eye +C2881332|T047|PT|H50.812|ICD10CM|Duane's syndrome, left eye|Duane's syndrome, left eye +C0029831|T047|PT|H50.89|ICD10CM|Other specified strabismus|Other specified strabismus +C0029831|T047|AB|H50.89|ICD10CM|Other specified strabismus|Other specified strabismus +C0038379|T047|PT|H50.9|ICD10|Strabismus, unspecified|Strabismus, unspecified +C0038379|T047|AB|H50.9|ICD10CM|Unspecified strabismus|Unspecified strabismus +C0038379|T047|PT|H50.9|ICD10CM|Unspecified strabismus|Unspecified strabismus +C0155343|T047|AB|H51|ICD10CM|Other disorders of binocular movement|Other disorders of binocular movement +C0155343|T047|HT|H51|ICD10CM|Other disorders of binocular movement|Other disorders of binocular movement +C0155343|T047|HT|H51|ICD10|Other disorders of binocular movement|Other disorders of binocular movement +C2881333|T047|AB|H51.0|ICD10CM|Palsy (spasm) of conjugate gaze|Palsy (spasm) of conjugate gaze +C2881333|T047|PT|H51.0|ICD10CM|Palsy (spasm) of conjugate gaze|Palsy (spasm) of conjugate gaze +C0702143|T047|PT|H51.0|ICD10|Palsy of conjugate gaze|Palsy of conjugate gaze +C0494547|T047|PT|H51.1|ICD10|Convergence insufficiency and excess|Convergence insufficiency and excess +C0494547|T047|HT|H51.1|ICD10CM|Convergence insufficiency and excess|Convergence insufficiency and excess +C0494547|T047|AB|H51.1|ICD10CM|Convergence insufficiency and excess|Convergence insufficiency and excess +C0271379|T047|PT|H51.11|ICD10CM|Convergence insufficiency|Convergence insufficiency +C0271379|T047|AB|H51.11|ICD10CM|Convergence insufficiency|Convergence insufficiency +C0271380|T047|PT|H51.12|ICD10CM|Convergence excess|Convergence excess +C0271380|T047|AB|H51.12|ICD10CM|Convergence excess|Convergence excess +C0152134|T047|HT|H51.2|ICD10CM|Internuclear ophthalmoplegia|Internuclear ophthalmoplegia +C0152134|T047|AB|H51.2|ICD10CM|Internuclear ophthalmoplegia|Internuclear ophthalmoplegia +C0152134|T047|PT|H51.2|ICD10|Internuclear ophthalmoplegia|Internuclear ophthalmoplegia +C2881334|T047|AB|H51.20|ICD10CM|Internuclear ophthalmoplegia, unspecified eye|Internuclear ophthalmoplegia, unspecified eye +C2881334|T047|PT|H51.20|ICD10CM|Internuclear ophthalmoplegia, unspecified eye|Internuclear ophthalmoplegia, unspecified eye +C2881335|T047|AB|H51.21|ICD10CM|Internuclear ophthalmoplegia, right eye|Internuclear ophthalmoplegia, right eye +C2881335|T047|PT|H51.21|ICD10CM|Internuclear ophthalmoplegia, right eye|Internuclear ophthalmoplegia, right eye +C2881336|T047|AB|H51.22|ICD10CM|Internuclear ophthalmoplegia, left eye|Internuclear ophthalmoplegia, left eye +C2881336|T047|PT|H51.22|ICD10CM|Internuclear ophthalmoplegia, left eye|Internuclear ophthalmoplegia, left eye +C2881337|T047|AB|H51.23|ICD10CM|Internuclear ophthalmoplegia, bilateral|Internuclear ophthalmoplegia, bilateral +C2881337|T047|PT|H51.23|ICD10CM|Internuclear ophthalmoplegia, bilateral|Internuclear ophthalmoplegia, bilateral +C0348568|T047|PT|H51.8|ICD10|Other specified disorders of binocular movement|Other specified disorders of binocular movement +C0348568|T047|PT|H51.8|ICD10CM|Other specified disorders of binocular movement|Other specified disorders of binocular movement +C0348568|T047|AB|H51.8|ICD10CM|Other specified disorders of binocular movement|Other specified disorders of binocular movement +C0494548|T047|PT|H51.9|ICD10|Disorder of binocular movement, unspecified|Disorder of binocular movement, unspecified +C0494548|T047|AB|H51.9|ICD10CM|Unspecified disorder of binocular movement|Unspecified disorder of binocular movement +C0494548|T047|PT|H51.9|ICD10CM|Unspecified disorder of binocular movement|Unspecified disorder of binocular movement +C0339670|T047|HT|H52|ICD10|Disorders of refraction and accommodation|Disorders of refraction and accommodation +C0339670|T047|HT|H52|ICD10CM|Disorders of refraction and accommodation|Disorders of refraction and accommodation +C0339670|T047|AB|H52|ICD10CM|Disorders of refraction and accommodation|Disorders of refraction and accommodation +C0020490|T047|HT|H52.0|ICD10CM|Hypermetropia|Hypermetropia +C0020490|T047|AB|H52.0|ICD10CM|Hypermetropia|Hypermetropia +C0020490|T047|PT|H52.0|ICD10|Hypermetropia|Hypermetropia +C2881338|T047|AB|H52.00|ICD10CM|Hypermetropia, unspecified eye|Hypermetropia, unspecified eye +C2881338|T047|PT|H52.00|ICD10CM|Hypermetropia, unspecified eye|Hypermetropia, unspecified eye +C2881339|T047|AB|H52.01|ICD10CM|Hypermetropia, right eye|Hypermetropia, right eye +C2881339|T047|PT|H52.01|ICD10CM|Hypermetropia, right eye|Hypermetropia, right eye +C2881340|T047|AB|H52.02|ICD10CM|Hypermetropia, left eye|Hypermetropia, left eye +C2881340|T047|PT|H52.02|ICD10CM|Hypermetropia, left eye|Hypermetropia, left eye +C2881341|T047|AB|H52.03|ICD10CM|Hypermetropia, bilateral|Hypermetropia, bilateral +C2881341|T047|PT|H52.03|ICD10CM|Hypermetropia, bilateral|Hypermetropia, bilateral +C0027092|T047|PT|H52.1|ICD10|Myopia|Myopia +C0027092|T047|HT|H52.1|ICD10CM|Myopia|Myopia +C0027092|T047|AB|H52.1|ICD10CM|Myopia|Myopia +C2881342|T047|AB|H52.10|ICD10CM|Myopia, unspecified eye|Myopia, unspecified eye +C2881342|T047|PT|H52.10|ICD10CM|Myopia, unspecified eye|Myopia, unspecified eye +C3862471|T047|AB|H52.11|ICD10CM|Myopia, right eye|Myopia, right eye +C3862471|T047|PT|H52.11|ICD10CM|Myopia, right eye|Myopia, right eye +C3863041|T047|AB|H52.12|ICD10CM|Myopia, left eye|Myopia, left eye +C3863041|T047|PT|H52.12|ICD10CM|Myopia, left eye|Myopia, left eye +C2881345|T047|AB|H52.13|ICD10CM|Myopia, bilateral|Myopia, bilateral +C2881345|T047|PT|H52.13|ICD10CM|Myopia, bilateral|Myopia, bilateral +C0004106|T047|HT|H52.2|ICD10CM|Astigmatism|Astigmatism +C0004106|T047|AB|H52.2|ICD10CM|Astigmatism|Astigmatism +C0004106|T047|PT|H52.2|ICD10|Astigmatism|Astigmatism +C0004106|T047|AB|H52.20|ICD10CM|Unspecified astigmatism|Unspecified astigmatism +C0004106|T047|HT|H52.20|ICD10CM|Unspecified astigmatism|Unspecified astigmatism +C2881346|T047|AB|H52.201|ICD10CM|Unspecified astigmatism, right eye|Unspecified astigmatism, right eye +C2881346|T047|PT|H52.201|ICD10CM|Unspecified astigmatism, right eye|Unspecified astigmatism, right eye +C2881347|T047|AB|H52.202|ICD10CM|Unspecified astigmatism, left eye|Unspecified astigmatism, left eye +C2881347|T047|PT|H52.202|ICD10CM|Unspecified astigmatism, left eye|Unspecified astigmatism, left eye +C2881348|T047|AB|H52.203|ICD10CM|Unspecified astigmatism, bilateral|Unspecified astigmatism, bilateral +C2881348|T047|PT|H52.203|ICD10CM|Unspecified astigmatism, bilateral|Unspecified astigmatism, bilateral +C2881349|T047|AB|H52.209|ICD10CM|Unspecified astigmatism, unspecified eye|Unspecified astigmatism, unspecified eye +C2881349|T047|PT|H52.209|ICD10CM|Unspecified astigmatism, unspecified eye|Unspecified astigmatism, unspecified eye +C0152194|T047|HT|H52.21|ICD10CM|Irregular astigmatism|Irregular astigmatism +C0152194|T047|AB|H52.21|ICD10CM|Irregular astigmatism|Irregular astigmatism +C2881350|T047|AB|H52.211|ICD10CM|Irregular astigmatism, right eye|Irregular astigmatism, right eye +C2881350|T047|PT|H52.211|ICD10CM|Irregular astigmatism, right eye|Irregular astigmatism, right eye +C2881351|T047|AB|H52.212|ICD10CM|Irregular astigmatism, left eye|Irregular astigmatism, left eye +C2881351|T047|PT|H52.212|ICD10CM|Irregular astigmatism, left eye|Irregular astigmatism, left eye +C2881352|T047|AB|H52.213|ICD10CM|Irregular astigmatism, bilateral|Irregular astigmatism, bilateral +C2881352|T047|PT|H52.213|ICD10CM|Irregular astigmatism, bilateral|Irregular astigmatism, bilateral +C2881353|T047|AB|H52.219|ICD10CM|Irregular astigmatism, unspecified eye|Irregular astigmatism, unspecified eye +C2881353|T047|PT|H52.219|ICD10CM|Irregular astigmatism, unspecified eye|Irregular astigmatism, unspecified eye +C0152193|T047|HT|H52.22|ICD10CM|Regular astigmatism|Regular astigmatism +C0152193|T047|AB|H52.22|ICD10CM|Regular astigmatism|Regular astigmatism +C2881354|T047|AB|H52.221|ICD10CM|Regular astigmatism, right eye|Regular astigmatism, right eye +C2881354|T047|PT|H52.221|ICD10CM|Regular astigmatism, right eye|Regular astigmatism, right eye +C2881355|T047|AB|H52.222|ICD10CM|Regular astigmatism, left eye|Regular astigmatism, left eye +C2881355|T047|PT|H52.222|ICD10CM|Regular astigmatism, left eye|Regular astigmatism, left eye +C2881356|T047|AB|H52.223|ICD10CM|Regular astigmatism, bilateral|Regular astigmatism, bilateral +C2881356|T047|PT|H52.223|ICD10CM|Regular astigmatism, bilateral|Regular astigmatism, bilateral +C2881357|T047|AB|H52.229|ICD10CM|Regular astigmatism, unspecified eye|Regular astigmatism, unspecified eye +C2881357|T047|PT|H52.229|ICD10CM|Regular astigmatism, unspecified eye|Regular astigmatism, unspecified eye +C0154999|T047|HT|H52.3|ICD10CM|Anisometropia and aniseikonia|Anisometropia and aniseikonia +C0154999|T047|AB|H52.3|ICD10CM|Anisometropia and aniseikonia|Anisometropia and aniseikonia +C0154999|T047|PT|H52.3|ICD10|Anisometropia and aniseikonia|Anisometropia and aniseikonia +C0003081|T047|PT|H52.31|ICD10CM|Anisometropia|Anisometropia +C0003081|T047|AB|H52.31|ICD10CM|Anisometropia|Anisometropia +C0003078|T184|PT|H52.32|ICD10CM|Aniseikonia|Aniseikonia +C0003078|T184|AB|H52.32|ICD10CM|Aniseikonia|Aniseikonia +C0033075|T047|PT|H52.4|ICD10|Presbyopia|Presbyopia +C0033075|T047|PT|H52.4|ICD10CM|Presbyopia|Presbyopia +C0033075|T047|AB|H52.4|ICD10CM|Presbyopia|Presbyopia +C0152198|T047|HT|H52.5|ICD10CM|Disorders of accommodation|Disorders of accommodation +C0152198|T047|AB|H52.5|ICD10CM|Disorders of accommodation|Disorders of accommodation +C0152198|T047|PT|H52.5|ICD10|Disorders of accommodation|Disorders of accommodation +C2881358|T047|AB|H52.51|ICD10CM|Internal ophthalmoplegia (complete) (total)|Internal ophthalmoplegia (complete) (total) +C2881358|T047|HT|H52.51|ICD10CM|Internal ophthalmoplegia (complete) (total)|Internal ophthalmoplegia (complete) (total) +C2881359|T047|AB|H52.511|ICD10CM|Internal ophthalmoplegia (complete) (total), right eye|Internal ophthalmoplegia (complete) (total), right eye +C2881359|T047|PT|H52.511|ICD10CM|Internal ophthalmoplegia (complete) (total), right eye|Internal ophthalmoplegia (complete) (total), right eye +C2881360|T047|AB|H52.512|ICD10CM|Internal ophthalmoplegia (complete) (total), left eye|Internal ophthalmoplegia (complete) (total), left eye +C2881360|T047|PT|H52.512|ICD10CM|Internal ophthalmoplegia (complete) (total), left eye|Internal ophthalmoplegia (complete) (total), left eye +C2881361|T047|AB|H52.513|ICD10CM|Internal ophthalmoplegia (complete) (total), bilateral|Internal ophthalmoplegia (complete) (total), bilateral +C2881361|T047|PT|H52.513|ICD10CM|Internal ophthalmoplegia (complete) (total), bilateral|Internal ophthalmoplegia (complete) (total), bilateral +C2881362|T047|AB|H52.519|ICD10CM|Internal ophthalmoplegia (complete) (total), unspecified eye|Internal ophthalmoplegia (complete) (total), unspecified eye +C2881362|T047|PT|H52.519|ICD10CM|Internal ophthalmoplegia (complete) (total), unspecified eye|Internal ophthalmoplegia (complete) (total), unspecified eye +C0235238|T047|HT|H52.52|ICD10CM|Paresis of accommodation|Paresis of accommodation +C0235238|T047|AB|H52.52|ICD10CM|Paresis of accommodation|Paresis of accommodation +C2881363|T047|AB|H52.521|ICD10CM|Paresis of accommodation, right eye|Paresis of accommodation, right eye +C2881363|T047|PT|H52.521|ICD10CM|Paresis of accommodation, right eye|Paresis of accommodation, right eye +C2881364|T047|AB|H52.522|ICD10CM|Paresis of accommodation, left eye|Paresis of accommodation, left eye +C2881364|T047|PT|H52.522|ICD10CM|Paresis of accommodation, left eye|Paresis of accommodation, left eye +C2881365|T047|AB|H52.523|ICD10CM|Paresis of accommodation, bilateral|Paresis of accommodation, bilateral +C2881365|T047|PT|H52.523|ICD10CM|Paresis of accommodation, bilateral|Paresis of accommodation, bilateral +C2881366|T047|AB|H52.529|ICD10CM|Paresis of accommodation, unspecified eye|Paresis of accommodation, unspecified eye +C2881366|T047|PT|H52.529|ICD10CM|Paresis of accommodation, unspecified eye|Paresis of accommodation, unspecified eye +C0152196|T047|HT|H52.53|ICD10CM|Spasm of accommodation|Spasm of accommodation +C0152196|T047|AB|H52.53|ICD10CM|Spasm of accommodation|Spasm of accommodation +C2881367|T047|AB|H52.531|ICD10CM|Spasm of accommodation, right eye|Spasm of accommodation, right eye +C2881367|T047|PT|H52.531|ICD10CM|Spasm of accommodation, right eye|Spasm of accommodation, right eye +C2881368|T047|AB|H52.532|ICD10CM|Spasm of accommodation, left eye|Spasm of accommodation, left eye +C2881368|T047|PT|H52.532|ICD10CM|Spasm of accommodation, left eye|Spasm of accommodation, left eye +C2881369|T047|AB|H52.533|ICD10CM|Spasm of accommodation, bilateral|Spasm of accommodation, bilateral +C2881369|T047|PT|H52.533|ICD10CM|Spasm of accommodation, bilateral|Spasm of accommodation, bilateral +C2881370|T047|AB|H52.539|ICD10CM|Spasm of accommodation, unspecified eye|Spasm of accommodation, unspecified eye +C2881370|T047|PT|H52.539|ICD10CM|Spasm of accommodation, unspecified eye|Spasm of accommodation, unspecified eye +C0348569|T047|PT|H52.6|ICD10|Other disorders of refraction|Other disorders of refraction +C0348569|T047|PT|H52.6|ICD10CM|Other disorders of refraction|Other disorders of refraction +C0348569|T047|AB|H52.6|ICD10CM|Other disorders of refraction|Other disorders of refraction +C0034951|T047|PT|H52.7|ICD10|Disorder of refraction, unspecified|Disorder of refraction, unspecified +C0034951|T047|AB|H52.7|ICD10CM|Unspecified disorder of refraction|Unspecified disorder of refraction +C0034951|T047|PT|H52.7|ICD10CM|Unspecified disorder of refraction|Unspecified disorder of refraction +C0547030|T033|HT|H53|ICD10CM|Visual disturbances|Visual disturbances +C0547030|T033|AB|H53|ICD10CM|Visual disturbances|Visual disturbances +C0547030|T033|HT|H53|ICD10|Visual disturbances|Visual disturbances +C0348570|T047|HT|H53-H54|ICD10CM|Visual disturbances and blindness (H53-H54)|Visual disturbances and blindness (H53-H54) +C0348570|T047|HT|H53-H54.9|ICD10|Visual disturbances and blindness|Visual disturbances and blindness +C0152187|T020|PT|H53.0|ICD10|Amblyopia ex anopsia|Amblyopia ex anopsia +C0152187|T020|HT|H53.0|ICD10CM|Amblyopia ex anopsia|Amblyopia ex anopsia +C0152187|T020|AB|H53.0|ICD10CM|Amblyopia ex anopsia|Amblyopia ex anopsia +C0002418|T047|AB|H53.00|ICD10CM|Unspecified amblyopia|Unspecified amblyopia +C0002418|T047|HT|H53.00|ICD10CM|Unspecified amblyopia|Unspecified amblyopia +C2881371|T047|AB|H53.001|ICD10CM|Unspecified amblyopia, right eye|Unspecified amblyopia, right eye +C2881371|T047|PT|H53.001|ICD10CM|Unspecified amblyopia, right eye|Unspecified amblyopia, right eye +C2881372|T047|AB|H53.002|ICD10CM|Unspecified amblyopia, left eye|Unspecified amblyopia, left eye +C2881372|T047|PT|H53.002|ICD10CM|Unspecified amblyopia, left eye|Unspecified amblyopia, left eye +C2881373|T047|AB|H53.003|ICD10CM|Unspecified amblyopia, bilateral|Unspecified amblyopia, bilateral +C2881373|T047|PT|H53.003|ICD10CM|Unspecified amblyopia, bilateral|Unspecified amblyopia, bilateral +C2881374|T047|AB|H53.009|ICD10CM|Unspecified amblyopia, unspecified eye|Unspecified amblyopia, unspecified eye +C2881374|T047|PT|H53.009|ICD10CM|Unspecified amblyopia, unspecified eye|Unspecified amblyopia, unspecified eye +C0152189|T047|HT|H53.01|ICD10CM|Deprivation amblyopia|Deprivation amblyopia +C0152189|T047|AB|H53.01|ICD10CM|Deprivation amblyopia|Deprivation amblyopia +C2165522|T047|AB|H53.011|ICD10CM|Deprivation amblyopia, right eye|Deprivation amblyopia, right eye +C2165522|T047|PT|H53.011|ICD10CM|Deprivation amblyopia, right eye|Deprivation amblyopia, right eye +C2165521|T047|AB|H53.012|ICD10CM|Deprivation amblyopia, left eye|Deprivation amblyopia, left eye +C2165521|T047|PT|H53.012|ICD10CM|Deprivation amblyopia, left eye|Deprivation amblyopia, left eye +C2881375|T047|AB|H53.013|ICD10CM|Deprivation amblyopia, bilateral|Deprivation amblyopia, bilateral +C2881375|T047|PT|H53.013|ICD10CM|Deprivation amblyopia, bilateral|Deprivation amblyopia, bilateral +C2881376|T047|AB|H53.019|ICD10CM|Deprivation amblyopia, unspecified eye|Deprivation amblyopia, unspecified eye +C2881376|T047|PT|H53.019|ICD10CM|Deprivation amblyopia, unspecified eye|Deprivation amblyopia, unspecified eye +C0152190|T047|HT|H53.02|ICD10CM|Refractive amblyopia|Refractive amblyopia +C0152190|T047|AB|H53.02|ICD10CM|Refractive amblyopia|Refractive amblyopia +C2169889|T047|AB|H53.021|ICD10CM|Refractive amblyopia, right eye|Refractive amblyopia, right eye +C2169889|T047|PT|H53.021|ICD10CM|Refractive amblyopia, right eye|Refractive amblyopia, right eye +C2169888|T047|AB|H53.022|ICD10CM|Refractive amblyopia, left eye|Refractive amblyopia, left eye +C2169888|T047|PT|H53.022|ICD10CM|Refractive amblyopia, left eye|Refractive amblyopia, left eye +C2881377|T047|AB|H53.023|ICD10CM|Refractive amblyopia, bilateral|Refractive amblyopia, bilateral +C2881377|T047|PT|H53.023|ICD10CM|Refractive amblyopia, bilateral|Refractive amblyopia, bilateral +C2881378|T047|AB|H53.029|ICD10CM|Refractive amblyopia, unspecified eye|Refractive amblyopia, unspecified eye +C2881378|T047|PT|H53.029|ICD10CM|Refractive amblyopia, unspecified eye|Refractive amblyopia, unspecified eye +C0750903|T047|HT|H53.03|ICD10CM|Strabismic amblyopia|Strabismic amblyopia +C0750903|T047|AB|H53.03|ICD10CM|Strabismic amblyopia|Strabismic amblyopia +C2020511|T047|AB|H53.031|ICD10CM|Strabismic amblyopia, right eye|Strabismic amblyopia, right eye +C2020511|T047|PT|H53.031|ICD10CM|Strabismic amblyopia, right eye|Strabismic amblyopia, right eye +C2020510|T047|AB|H53.032|ICD10CM|Strabismic amblyopia, left eye|Strabismic amblyopia, left eye +C2020510|T047|PT|H53.032|ICD10CM|Strabismic amblyopia, left eye|Strabismic amblyopia, left eye +C2881379|T047|AB|H53.033|ICD10CM|Strabismic amblyopia, bilateral|Strabismic amblyopia, bilateral +C2881379|T047|PT|H53.033|ICD10CM|Strabismic amblyopia, bilateral|Strabismic amblyopia, bilateral +C2881380|T047|AB|H53.039|ICD10CM|Strabismic amblyopia, unspecified eye|Strabismic amblyopia, unspecified eye +C2881380|T047|PT|H53.039|ICD10CM|Strabismic amblyopia, unspecified eye|Strabismic amblyopia, unspecified eye +C4268415|T047|HT|H53.04|ICD10CM|Amblyopia suspect|Amblyopia suspect +C4268415|T047|AB|H53.04|ICD10CM|Amblyopia suspect|Amblyopia suspect +C4268416|T033|AB|H53.041|ICD10CM|Amblyopia suspect, right eye|Amblyopia suspect, right eye +C4268416|T033|PT|H53.041|ICD10CM|Amblyopia suspect, right eye|Amblyopia suspect, right eye +C4268417|T033|AB|H53.042|ICD10CM|Amblyopia suspect, left eye|Amblyopia suspect, left eye +C4268417|T033|PT|H53.042|ICD10CM|Amblyopia suspect, left eye|Amblyopia suspect, left eye +C4268418|T020|AB|H53.043|ICD10CM|Amblyopia suspect, bilateral|Amblyopia suspect, bilateral +C4268418|T020|PT|H53.043|ICD10CM|Amblyopia suspect, bilateral|Amblyopia suspect, bilateral +C4268419|T020|AB|H53.049|ICD10CM|Amblyopia suspect, unspecified eye|Amblyopia suspect, unspecified eye +C4268419|T020|PT|H53.049|ICD10CM|Amblyopia suspect, unspecified eye|Amblyopia suspect, unspecified eye +C0155001|T184|PT|H53.1|ICD10|Subjective visual disturbances|Subjective visual disturbances +C0155001|T184|HT|H53.1|ICD10CM|Subjective visual disturbances|Subjective visual disturbances +C0155001|T184|AB|H53.1|ICD10CM|Subjective visual disturbances|Subjective visual disturbances +C0155001|T184|AB|H53.10|ICD10CM|Unspecified subjective visual disturbances|Unspecified subjective visual disturbances +C0155001|T184|PT|H53.10|ICD10CM|Unspecified subjective visual disturbances|Unspecified subjective visual disturbances +C0018975|T047|PT|H53.11|ICD10CM|Day blindness|Day blindness +C0018975|T047|AB|H53.11|ICD10CM|Day blindness|Day blindness +C0018975|T047|ET|H53.11|ICD10CM|Hemeralopia|Hemeralopia +C0235068|T184|ET|H53.12|ICD10CM|Scintillating scotoma|Scintillating scotoma +C0155003|T046|HT|H53.12|ICD10CM|Transient visual loss|Transient visual loss +C0155003|T046|AB|H53.12|ICD10CM|Transient visual loss|Transient visual loss +C2145418|T046|AB|H53.121|ICD10CM|Transient visual loss, right eye|Transient visual loss, right eye +C2145418|T046|PT|H53.121|ICD10CM|Transient visual loss, right eye|Transient visual loss, right eye +C2145417|T046|AB|H53.122|ICD10CM|Transient visual loss, left eye|Transient visual loss, left eye +C2145417|T046|PT|H53.122|ICD10CM|Transient visual loss, left eye|Transient visual loss, left eye +C2881381|T033|AB|H53.123|ICD10CM|Transient visual loss, bilateral|Transient visual loss, bilateral +C2881381|T033|PT|H53.123|ICD10CM|Transient visual loss, bilateral|Transient visual loss, bilateral +C2881382|T033|AB|H53.129|ICD10CM|Transient visual loss, unspecified eye|Transient visual loss, unspecified eye +C2881382|T033|PT|H53.129|ICD10CM|Transient visual loss, unspecified eye|Transient visual loss, unspecified eye +C0155002|T184|HT|H53.13|ICD10CM|Sudden visual loss|Sudden visual loss +C0155002|T184|AB|H53.13|ICD10CM|Sudden visual loss|Sudden visual loss +C2881383|T184|AB|H53.131|ICD10CM|Sudden visual loss, right eye|Sudden visual loss, right eye +C2881383|T184|PT|H53.131|ICD10CM|Sudden visual loss, right eye|Sudden visual loss, right eye +C2881384|T184|AB|H53.132|ICD10CM|Sudden visual loss, left eye|Sudden visual loss, left eye +C2881384|T184|PT|H53.132|ICD10CM|Sudden visual loss, left eye|Sudden visual loss, left eye +C2881385|T184|AB|H53.133|ICD10CM|Sudden visual loss, bilateral|Sudden visual loss, bilateral +C2881385|T184|PT|H53.133|ICD10CM|Sudden visual loss, bilateral|Sudden visual loss, bilateral +C0155002|T184|AB|H53.139|ICD10CM|Sudden visual loss, unspecified eye|Sudden visual loss, unspecified eye +C0155002|T184|PT|H53.139|ICD10CM|Sudden visual loss, unspecified eye|Sudden visual loss, unspecified eye +C0004095|T047|ET|H53.14|ICD10CM|Asthenopia|Asthenopia +C0085636|T184|ET|H53.14|ICD10CM|Photophobia|Photophobia +C0042818|T184|HT|H53.14|ICD10CM|Visual discomfort|Visual discomfort +C0042818|T184|AB|H53.14|ICD10CM|Visual discomfort|Visual discomfort +C2881386|T184|AB|H53.141|ICD10CM|Visual discomfort, right eye|Visual discomfort, right eye +C2881386|T184|PT|H53.141|ICD10CM|Visual discomfort, right eye|Visual discomfort, right eye +C2881387|T184|AB|H53.142|ICD10CM|Visual discomfort, left eye|Visual discomfort, left eye +C2881387|T184|PT|H53.142|ICD10CM|Visual discomfort, left eye|Visual discomfort, left eye +C2881388|T184|AB|H53.143|ICD10CM|Visual discomfort, bilateral|Visual discomfort, bilateral +C2881388|T184|PT|H53.143|ICD10CM|Visual discomfort, bilateral|Visual discomfort, bilateral +C0042818|T184|AB|H53.149|ICD10CM|Visual discomfort, unspecified|Visual discomfort, unspecified +C0042818|T184|PT|H53.149|ICD10CM|Visual discomfort, unspecified|Visual discomfort, unspecified +C0271185|T184|ET|H53.15|ICD10CM|Metamorphopsia|Metamorphopsia +C0155004|T184|PT|H53.15|ICD10CM|Visual distortions of shape and size|Visual distortions of shape and size +C0155004|T184|AB|H53.15|ICD10CM|Visual distortions of shape and size|Visual distortions of shape and size +C0155006|T047|PT|H53.16|ICD10CM|Psychophysical visual disturbances|Psychophysical visual disturbances +C0155006|T047|AB|H53.16|ICD10CM|Psychophysical visual disturbances|Psychophysical visual disturbances +C2881389|T184|AB|H53.19|ICD10CM|Other subjective visual disturbances|Other subjective visual disturbances +C2881389|T184|PT|H53.19|ICD10CM|Other subjective visual disturbances|Other subjective visual disturbances +C0271188|T184|ET|H53.19|ICD10CM|Visual halos|Visual halos +C0012569|T033|PT|H53.2|ICD10|Diplopia|Diplopia +C0012569|T033|PT|H53.2|ICD10CM|Diplopia|Diplopia +C0012569|T033|AB|H53.2|ICD10CM|Diplopia|Diplopia +C0012569|T033|ET|H53.2|ICD10CM|Double vision|Double vision +C2881390|T184|AB|H53.3|ICD10CM|Other and unspecified disorders of binocular vision|Other and unspecified disorders of binocular vision +C2881390|T184|HT|H53.3|ICD10CM|Other and unspecified disorders of binocular vision|Other and unspecified disorders of binocular vision +C0155007|T047|PT|H53.3|ICD10|Other disorders of binocular vision|Other disorders of binocular vision +C0005461|T047|AB|H53.30|ICD10CM|Unspecified disorder of binocular vision|Unspecified disorder of binocular vision +C0005461|T047|PT|H53.30|ICD10CM|Unspecified disorder of binocular vision|Unspecified disorder of binocular vision +C0155010|T047|PT|H53.31|ICD10CM|Abnormal retinal correspondence|Abnormal retinal correspondence +C0155010|T047|AB|H53.31|ICD10CM|Abnormal retinal correspondence|Abnormal retinal correspondence +C0155009|T047|PT|H53.32|ICD10CM|Fusion with defective stereopsis|Fusion with defective stereopsis +C0155009|T047|AB|H53.32|ICD10CM|Fusion with defective stereopsis|Fusion with defective stereopsis +C0155008|T047|PT|H53.33|ICD10CM|Simultaneous visual perception without fusion|Simultaneous visual perception without fusion +C0155008|T047|AB|H53.33|ICD10CM|Simultaneous visual perception without fusion|Simultaneous visual perception without fusion +C0221103|T046|PT|H53.34|ICD10CM|Suppression of binocular vision|Suppression of binocular vision +C0221103|T046|AB|H53.34|ICD10CM|Suppression of binocular vision|Suppression of binocular vision +C3887875|T033|PT|H53.4|ICD10|Visual field defects|Visual field defects +C3887875|T033|HT|H53.4|ICD10CM|Visual field defects|Visual field defects +C3887875|T033|AB|H53.4|ICD10CM|Visual field defects|Visual field defects +C3887875|T033|AB|H53.40|ICD10CM|Unspecified visual field defects|Unspecified visual field defects +C3887875|T033|PT|H53.40|ICD10CM|Unspecified visual field defects|Unspecified visual field defects +C0152191|T033|ET|H53.41|ICD10CM|Central scotoma|Central scotoma +C0152191|T033|HT|H53.41|ICD10CM|Scotoma involving central area|Scotoma involving central area +C0152191|T033|AB|H53.41|ICD10CM|Scotoma involving central area|Scotoma involving central area +C2881391|T033|AB|H53.411|ICD10CM|Scotoma involving central area, right eye|Scotoma involving central area, right eye +C2881391|T033|PT|H53.411|ICD10CM|Scotoma involving central area, right eye|Scotoma involving central area, right eye +C2881392|T033|AB|H53.412|ICD10CM|Scotoma involving central area, left eye|Scotoma involving central area, left eye +C2881392|T033|PT|H53.412|ICD10CM|Scotoma involving central area, left eye|Scotoma involving central area, left eye +C2881393|T033|AB|H53.413|ICD10CM|Scotoma involving central area, bilateral|Scotoma involving central area, bilateral +C2881393|T033|PT|H53.413|ICD10CM|Scotoma involving central area, bilateral|Scotoma involving central area, bilateral +C2881394|T033|AB|H53.419|ICD10CM|Scotoma involving central area, unspecified eye|Scotoma involving central area, unspecified eye +C2881394|T033|PT|H53.419|ICD10CM|Scotoma involving central area, unspecified eye|Scotoma involving central area, unspecified eye +C0152192|T033|ET|H53.42|ICD10CM|Enlarged blind spot|Enlarged blind spot +C0152192|T033|HT|H53.42|ICD10CM|Scotoma of blind spot area|Scotoma of blind spot area +C0152192|T033|AB|H53.42|ICD10CM|Scotoma of blind spot area|Scotoma of blind spot area +C2881395|T033|AB|H53.421|ICD10CM|Scotoma of blind spot area, right eye|Scotoma of blind spot area, right eye +C2881395|T033|PT|H53.421|ICD10CM|Scotoma of blind spot area, right eye|Scotoma of blind spot area, right eye +C2881396|T033|AB|H53.422|ICD10CM|Scotoma of blind spot area, left eye|Scotoma of blind spot area, left eye +C2881396|T033|PT|H53.422|ICD10CM|Scotoma of blind spot area, left eye|Scotoma of blind spot area, left eye +C2881397|T033|AB|H53.423|ICD10CM|Scotoma of blind spot area, bilateral|Scotoma of blind spot area, bilateral +C2881397|T033|PT|H53.423|ICD10CM|Scotoma of blind spot area, bilateral|Scotoma of blind spot area, bilateral +C2881398|T033|AB|H53.429|ICD10CM|Scotoma of blind spot area, unspecified eye|Scotoma of blind spot area, unspecified eye +C2881398|T033|PT|H53.429|ICD10CM|Scotoma of blind spot area, unspecified eye|Scotoma of blind spot area, unspecified eye +C0271198|T033|ET|H53.43|ICD10CM|Arcuate scotoma|Arcuate scotoma +C0271200|T033|ET|H53.43|ICD10CM|Bjerrum scotoma|Bjerrum scotoma +C3839935|T033|AB|H53.43|ICD10CM|Sector or arcuate defects|Sector or arcuate defects +C3839935|T033|HT|H53.43|ICD10CM|Sector or arcuate defects|Sector or arcuate defects +C2881399|T047|AB|H53.431|ICD10CM|Sector or arcuate defects, right eye|Sector or arcuate defects, right eye +C2881399|T047|PT|H53.431|ICD10CM|Sector or arcuate defects, right eye|Sector or arcuate defects, right eye +C2881400|T047|AB|H53.432|ICD10CM|Sector or arcuate defects, left eye|Sector or arcuate defects, left eye +C2881400|T047|PT|H53.432|ICD10CM|Sector or arcuate defects, left eye|Sector or arcuate defects, left eye +C2881401|T047|AB|H53.433|ICD10CM|Sector or arcuate defects, bilateral|Sector or arcuate defects, bilateral +C2881401|T047|PT|H53.433|ICD10CM|Sector or arcuate defects, bilateral|Sector or arcuate defects, bilateral +C2881402|T047|AB|H53.439|ICD10CM|Sector or arcuate defects, unspecified eye|Sector or arcuate defects, unspecified eye +C2881402|T047|PT|H53.439|ICD10CM|Sector or arcuate defects, unspecified eye|Sector or arcuate defects, unspecified eye +C0029657|T047|HT|H53.45|ICD10CM|Other localized visual field defect|Other localized visual field defect +C0029657|T047|AB|H53.45|ICD10CM|Other localized visual field defect|Other localized visual field defect +C0271193|T047|ET|H53.45|ICD10CM|Peripheral visual field defect|Peripheral visual field defect +C0438434|T184|ET|H53.45|ICD10CM|Ring scotoma NOS|Ring scotoma NOS +C0036454|T033|ET|H53.45|ICD10CM|Scotoma NOS|Scotoma NOS +C2881403|T047|AB|H53.451|ICD10CM|Other localized visual field defect, right eye|Other localized visual field defect, right eye +C2881403|T047|PT|H53.451|ICD10CM|Other localized visual field defect, right eye|Other localized visual field defect, right eye +C2881404|T047|AB|H53.452|ICD10CM|Other localized visual field defect, left eye|Other localized visual field defect, left eye +C2881404|T047|PT|H53.452|ICD10CM|Other localized visual field defect, left eye|Other localized visual field defect, left eye +C2881405|T047|AB|H53.453|ICD10CM|Other localized visual field defect, bilateral|Other localized visual field defect, bilateral +C2881405|T047|PT|H53.453|ICD10CM|Other localized visual field defect, bilateral|Other localized visual field defect, bilateral +C2881406|T047|AB|H53.459|ICD10CM|Other localized visual field defect, unspecified eye|Other localized visual field defect, unspecified eye +C2881406|T047|PT|H53.459|ICD10CM|Other localized visual field defect, unspecified eye|Other localized visual field defect, unspecified eye +C0271202|T047|HT|H53.46|ICD10CM|Homonymous bilateral field defects|Homonymous bilateral field defects +C0271202|T047|AB|H53.46|ICD10CM|Homonymous bilateral field defects|Homonymous bilateral field defects +C0271202|T047|ET|H53.46|ICD10CM|Homonymous hemianopia|Homonymous hemianopia +C0271202|T047|ET|H53.46|ICD10CM|Homonymous hemianopsia|Homonymous hemianopsia +C0544680|T033|ET|H53.46|ICD10CM|Quadrant anopia|Quadrant anopia +C1388031|T184|ET|H53.46|ICD10CM|Quadrant anopsia|Quadrant anopsia +C2881408|T033|AB|H53.461|ICD10CM|Homonymous bilateral field defects, right side|Homonymous bilateral field defects, right side +C2881408|T033|PT|H53.461|ICD10CM|Homonymous bilateral field defects, right side|Homonymous bilateral field defects, right side +C2881409|T047|AB|H53.462|ICD10CM|Homonymous bilateral field defects, left side|Homonymous bilateral field defects, left side +C2881409|T047|PT|H53.462|ICD10CM|Homonymous bilateral field defects, left side|Homonymous bilateral field defects, left side +C0271202|T047|ET|H53.469|ICD10CM|Homonymous bilateral field defects NOS|Homonymous bilateral field defects NOS +C2881410|T047|AB|H53.469|ICD10CM|Homonymous bilateral field defects, unspecified side|Homonymous bilateral field defects, unspecified side +C2881410|T047|PT|H53.469|ICD10CM|Homonymous bilateral field defects, unspecified side|Homonymous bilateral field defects, unspecified side +C0271207|T033|AB|H53.47|ICD10CM|Heteronymous bilateral field defects|Heteronymous bilateral field defects +C0271207|T033|PT|H53.47|ICD10CM|Heteronymous bilateral field defects|Heteronymous bilateral field defects +C0271207|T033|ET|H53.47|ICD10CM|Heteronymous hemianop(s)ia|Heteronymous hemianop(s)ia +C0235095|T033|AB|H53.48|ICD10CM|Generalized contraction of visual field|Generalized contraction of visual field +C0235095|T033|HT|H53.48|ICD10CM|Generalized contraction of visual field|Generalized contraction of visual field +C2010773|T033|AB|H53.481|ICD10CM|Generalized contraction of visual field, right eye|Generalized contraction of visual field, right eye +C2010773|T033|PT|H53.481|ICD10CM|Generalized contraction of visual field, right eye|Generalized contraction of visual field, right eye +C2010772|T033|AB|H53.482|ICD10CM|Generalized contraction of visual field, left eye|Generalized contraction of visual field, left eye +C2010772|T033|PT|H53.482|ICD10CM|Generalized contraction of visual field, left eye|Generalized contraction of visual field, left eye +C2881411|T047|AB|H53.483|ICD10CM|Generalized contraction of visual field, bilateral|Generalized contraction of visual field, bilateral +C2881411|T047|PT|H53.483|ICD10CM|Generalized contraction of visual field, bilateral|Generalized contraction of visual field, bilateral +C2881412|T047|AB|H53.489|ICD10CM|Generalized contraction of visual field, unspecified eye|Generalized contraction of visual field, unspecified eye +C2881412|T047|PT|H53.489|ICD10CM|Generalized contraction of visual field, unspecified eye|Generalized contraction of visual field, unspecified eye +C0242225|T047|ET|H53.5|ICD10CM|Color blindness|Color blindness +C0242225|T047|PT|H53.5|ICD10AE|Color vision deficiencies|Color vision deficiencies +C0009398|T047|HT|H53.5|ICD10CM|Color vision deficiencies|Color vision deficiencies +C0009398|T047|AB|H53.5|ICD10CM|Color vision deficiencies|Color vision deficiencies +C0009398|T047|PT|H53.5|ICD10|Colour vision deficiencies|Colour vision deficiencies +C0242225|T047|ET|H53.50|ICD10CM|Color blindness NOS|Color blindness NOS +C2881413|T047|AB|H53.50|ICD10CM|Unspecified color vision deficiencies|Unspecified color vision deficiencies +C2881413|T047|PT|H53.50|ICD10CM|Unspecified color vision deficiencies|Unspecified color vision deficiencies +C0152200|T047|PT|H53.51|ICD10CM|Achromatopsia|Achromatopsia +C0152200|T047|AB|H53.51|ICD10CM|Achromatopsia|Achromatopsia +C0155018|T047|PT|H53.52|ICD10CM|Acquired color vision deficiency|Acquired color vision deficiency +C0155018|T047|AB|H53.52|ICD10CM|Acquired color vision deficiency|Acquired color vision deficiency +C3887938|T047|PT|H53.53|ICD10CM|Deuteranomaly|Deuteranomaly +C3887938|T047|AB|H53.53|ICD10CM|Deuteranomaly|Deuteranomaly +C4551635|T047|ET|H53.53|ICD10CM|Deuteranopia|Deuteranopia +C3887980|T047|PT|H53.54|ICD10CM|Protanomaly|Protanomaly +C3887980|T047|AB|H53.54|ICD10CM|Protanomaly|Protanomaly +C4551767|T047|ET|H53.54|ICD10CM|Protanopia|Protanopia +C0155017|T047|AB|H53.55|ICD10CM|Tritanomaly|Tritanomaly +C0155017|T047|PT|H53.55|ICD10CM|Tritanomaly|Tritanomaly +C0155017|T047|ET|H53.55|ICD10CM|Tritanopia|Tritanopia +C0029548|T047|AB|H53.59|ICD10CM|Other color vision deficiencies|Other color vision deficiencies +C0029548|T047|PT|H53.59|ICD10CM|Other color vision deficiencies|Other color vision deficiencies +C0028077|T047|HT|H53.6|ICD10CM|Night blindness|Night blindness +C0028077|T047|AB|H53.6|ICD10CM|Night blindness|Night blindness +C0028077|T047|PT|H53.6|ICD10|Night blindness|Night blindness +C0028077|T047|AB|H53.60|ICD10CM|Unspecified night blindness|Unspecified night blindness +C0028077|T047|PT|H53.60|ICD10CM|Unspecified night blindness|Unspecified night blindness +C0155019|T047|PT|H53.61|ICD10CM|Abnormal dark adaptation curve|Abnormal dark adaptation curve +C0155019|T047|AB|H53.61|ICD10CM|Abnormal dark adaptation curve|Abnormal dark adaptation curve +C0152202|T020|PT|H53.62|ICD10CM|Acquired night blindness|Acquired night blindness +C0152202|T020|AB|H53.62|ICD10CM|Acquired night blindness|Acquired night blindness +C1306122|T047|PT|H53.63|ICD10CM|Congenital night blindness|Congenital night blindness +C1306122|T047|AB|H53.63|ICD10CM|Congenital night blindness|Congenital night blindness +C0029672|T047|AB|H53.69|ICD10CM|Other night blindness|Other night blindness +C0029672|T047|PT|H53.69|ICD10CM|Other night blindness|Other night blindness +C2881414|T184|AB|H53.7|ICD10CM|Vision sensitivity deficiencies|Vision sensitivity deficiencies +C2881414|T184|HT|H53.7|ICD10CM|Vision sensitivity deficiencies|Vision sensitivity deficiencies +C2881415|T184|PT|H53.71|ICD10CM|Glare sensitivity|Glare sensitivity +C2881415|T184|AB|H53.71|ICD10CM|Glare sensitivity|Glare sensitivity +C2881416|T033|PT|H53.72|ICD10CM|Impaired contrast sensitivity|Impaired contrast sensitivity +C2881416|T033|AB|H53.72|ICD10CM|Impaired contrast sensitivity|Impaired contrast sensitivity +C0348571|T033|PT|H53.8|ICD10|Other visual disturbances|Other visual disturbances +C0348571|T033|PT|H53.8|ICD10CM|Other visual disturbances|Other visual disturbances +C0348571|T033|AB|H53.8|ICD10CM|Other visual disturbances|Other visual disturbances +C0547030|T033|PT|H53.9|ICD10CM|Unspecified visual disturbance|Unspecified visual disturbance +C0547030|T033|AB|H53.9|ICD10CM|Unspecified visual disturbance|Unspecified visual disturbance +C0547030|T033|PT|H53.9|ICD10|Visual disturbance, unspecified|Visual disturbance, unspecified +C0155020|T047|HT|H54|ICD10CM|Blindness and low vision|Blindness and low vision +C0155020|T047|AB|H54|ICD10CM|Blindness and low vision|Blindness and low vision +C0155020|T047|HT|H54|ICD10|Blindness and low vision|Blindness and low vision +C1879328|T047|PT|H54.0|ICD10|Blindness, both eyes|Blindness, both eyes +C1879328|T047|AB|H54.0|ICD10CM|Blindness, both eyes|Blindness, both eyes +C1879328|T047|HT|H54.0|ICD10CM|Blindness, both eyes|Blindness, both eyes +C2881417|T047|ET|H54.0|ICD10CM|Visual impairment categories 3, 4, 5 in both eyes.|Visual impairment categories 3, 4, 5 in both eyes. +C4509143|T047|AB|H54.0X|ICD10CM|Blindness, both eyes, different category levels|Blindness, both eyes, different category levels +C4509143|T047|HT|H54.0X|ICD10CM|Blindness, both eyes, different category levels|Blindness, both eyes, different category levels +C4509144|T047|HT|H54.0X3|ICD10CM|Blindness right eye, category 3|Blindness right eye, category 3 +C4509144|T047|AB|H54.0X3|ICD10CM|Blindness right eye, category 3|Blindness right eye, category 3 +C4509145|T047|AB|H54.0X33|ICD10CM|Blindness r eye category 3, blindness left eye category 3|Blindness r eye category 3, blindness left eye category 3 +C4509145|T047|PT|H54.0X33|ICD10CM|Blindness right eye category 3, blindness left eye category 3|Blindness right eye category 3, blindness left eye category 3 +C4509146|T047|AB|H54.0X34|ICD10CM|Blindness r eye category 3, blindness left eye category 4|Blindness r eye category 3, blindness left eye category 4 +C4509146|T047|PT|H54.0X34|ICD10CM|Blindness right eye category 3, blindness left eye category 4|Blindness right eye category 3, blindness left eye category 4 +C4509147|T047|AB|H54.0X35|ICD10CM|Blindness r eye category 3, blindness left eye category 5|Blindness r eye category 3, blindness left eye category 5 +C4509147|T047|PT|H54.0X35|ICD10CM|Blindness right eye category 3, blindness left eye category 5|Blindness right eye category 3, blindness left eye category 5 +C4509148|T047|HT|H54.0X4|ICD10CM|Blindness right eye, category 4|Blindness right eye, category 4 +C4509148|T047|AB|H54.0X4|ICD10CM|Blindness right eye, category 4|Blindness right eye, category 4 +C4509149|T047|AB|H54.0X43|ICD10CM|Blindness r eye category 4, blindness left eye category 3|Blindness r eye category 4, blindness left eye category 3 +C4509149|T047|PT|H54.0X43|ICD10CM|Blindness right eye category 4, blindness left eye category 3|Blindness right eye category 4, blindness left eye category 3 +C4509150|T047|AB|H54.0X44|ICD10CM|Blindness r eye category 4, blindness left eye category 4|Blindness r eye category 4, blindness left eye category 4 +C4509150|T047|PT|H54.0X44|ICD10CM|Blindness right eye category 4, blindness left eye category 4|Blindness right eye category 4, blindness left eye category 4 +C4509151|T033|AB|H54.0X45|ICD10CM|Blindness r eye category 4, blindness left eye category 5|Blindness r eye category 4, blindness left eye category 5 +C4509151|T033|PT|H54.0X45|ICD10CM|Blindness right eye category 4, blindness left eye category 5|Blindness right eye category 4, blindness left eye category 5 +C4509152|T047|HT|H54.0X5|ICD10CM|Blindness right eye, category 5|Blindness right eye, category 5 +C4509152|T047|AB|H54.0X5|ICD10CM|Blindness right eye, category 5|Blindness right eye, category 5 +C4509153|T047|AB|H54.0X53|ICD10CM|Blindness r eye category 5, blindness left eye category 3|Blindness r eye category 5, blindness left eye category 3 +C4509153|T047|PT|H54.0X53|ICD10CM|Blindness right eye category 5, blindness left eye category 3|Blindness right eye category 5, blindness left eye category 3 +C4509154|T033|AB|H54.0X54|ICD10CM|Blindness r eye category 5, blindness left eye category 4|Blindness r eye category 5, blindness left eye category 4 +C4509154|T033|PT|H54.0X54|ICD10CM|Blindness right eye category 5, blindness left eye category 4|Blindness right eye category 5, blindness left eye category 4 +C4509155|T047|AB|H54.0X55|ICD10CM|Blindness r eye category 5, blindness left eye category 5|Blindness r eye category 5, blindness left eye category 5 +C4509155|T047|PT|H54.0X55|ICD10CM|Blindness right eye category 5, blindness left eye category 5|Blindness right eye category 5, blindness left eye category 5 +C0271225|T047|HT|H54.1|ICD10CM|Blindness, one eye, low vision other eye|Blindness, one eye, low vision other eye +C0271225|T047|AB|H54.1|ICD10CM|Blindness, one eye, low vision other eye|Blindness, one eye, low vision other eye +C0271225|T047|PT|H54.1|ICD10|Blindness, one eye, low vision other eye|Blindness, one eye, low vision other eye +C2881418|T047|ET|H54.1|ICD10CM|Visual impairment categories 3, 4, 5 in one eye, with categories 1 or 2 in the other eye.|Visual impairment categories 3, 4, 5 in one eye, with categories 1 or 2 in the other eye. +C2881419|T047|AB|H54.10|ICD10CM|Blindness, one eye, low vision other eye, unspecified eyes|Blindness, one eye, low vision other eye, unspecified eyes +C2881419|T047|PT|H54.10|ICD10CM|Blindness, one eye, low vision other eye, unspecified eyes|Blindness, one eye, low vision other eye, unspecified eyes +C2881420|T047|AB|H54.11|ICD10CM|Blindness, right eye, low vision left eye|Blindness, right eye, low vision left eye +C2881420|T047|HT|H54.11|ICD10CM|Blindness, right eye, low vision left eye|Blindness, right eye, low vision left eye +C4509156|T047|HT|H54.113|ICD10CM|Blindness right eye category 3, low vision left eye|Blindness right eye category 3, low vision left eye +C4509156|T047|AB|H54.113|ICD10CM|Blindness right eye category 3, low vision left eye|Blindness right eye category 3, low vision left eye +C4509157|T047|AB|H54.1131|ICD10CM|Blindness r eye category 3, low vision left eye category 1|Blindness r eye category 3, low vision left eye category 1 +C4509157|T047|PT|H54.1131|ICD10CM|Blindness right eye category 3, low vision left eye category 1|Blindness right eye category 3, low vision left eye category 1 +C4509158|T033|AB|H54.1132|ICD10CM|Blindness r eye category 3, low vision left eye category 2|Blindness r eye category 3, low vision left eye category 2 +C4509158|T033|PT|H54.1132|ICD10CM|Blindness right eye category 3, low vision left eye category 2|Blindness right eye category 3, low vision left eye category 2 +C4509159|T047|HT|H54.114|ICD10CM|Blindness right eye category 4, low vision left eye|Blindness right eye category 4, low vision left eye +C4509159|T047|AB|H54.114|ICD10CM|Blindness right eye category 4, low vision left eye|Blindness right eye category 4, low vision left eye +C4509160|T033|AB|H54.1141|ICD10CM|Blindness r eye category 4, low vision left eye category 1|Blindness r eye category 4, low vision left eye category 1 +C4509160|T033|PT|H54.1141|ICD10CM|Blindness right eye category 4, low vision left eye category 1|Blindness right eye category 4, low vision left eye category 1 +C4509161|T047|AB|H54.1142|ICD10CM|Blindness r eye category 4, low vision left eye category 2|Blindness r eye category 4, low vision left eye category 2 +C4509161|T047|PT|H54.1142|ICD10CM|Blindness right eye category 4, low vision left eye category 2|Blindness right eye category 4, low vision left eye category 2 +C4509162|T047|HT|H54.115|ICD10CM|Blindness right eye category 5, low vision left eye|Blindness right eye category 5, low vision left eye +C4509162|T047|AB|H54.115|ICD10CM|Blindness right eye category 5, low vision left eye|Blindness right eye category 5, low vision left eye +C4509163|T047|AB|H54.1151|ICD10CM|Blindness r eye category 5, low vision left eye category 1|Blindness r eye category 5, low vision left eye category 1 +C4509163|T047|PT|H54.1151|ICD10CM|Blindness right eye category 5, low vision left eye category 1|Blindness right eye category 5, low vision left eye category 1 +C4509164|T047|AB|H54.1152|ICD10CM|Blindness r eye category 5, low vision left eye category 2|Blindness r eye category 5, low vision left eye category 2 +C4509164|T047|PT|H54.1152|ICD10CM|Blindness right eye category 5, low vision left eye category 2|Blindness right eye category 5, low vision left eye category 2 +C2881421|T047|AB|H54.12|ICD10CM|Blindness, left eye, low vision right eye|Blindness, left eye, low vision right eye +C2881421|T047|HT|H54.12|ICD10CM|Blindness, left eye, low vision right eye|Blindness, left eye, low vision right eye +C4509165|T047|HT|H54.121|ICD10CM|Low vision right eye category 1, blindness left eye|Low vision right eye category 1, blindness left eye +C4509165|T047|AB|H54.121|ICD10CM|Low vision right eye category 1, blindness left eye|Low vision right eye category 1, blindness left eye +C4509166|T047|AB|H54.1213|ICD10CM|Low vision r eye category 1, blindness left eye category 3|Low vision r eye category 1, blindness left eye category 3 +C4509166|T047|PT|H54.1213|ICD10CM|Low vision right eye category 1, blindness left eye category 3|Low vision right eye category 1, blindness left eye category 3 +C4509167|T033|AB|H54.1214|ICD10CM|Low vision r eye category 1, blindness left eye category 4|Low vision r eye category 1, blindness left eye category 4 +C4509167|T033|PT|H54.1214|ICD10CM|Low vision right eye category 1, blindness left eye category 4|Low vision right eye category 1, blindness left eye category 4 +C4509168|T047|AB|H54.1215|ICD10CM|Low vision r eye category 1, blindness left eye category 5|Low vision r eye category 1, blindness left eye category 5 +C4509168|T047|PT|H54.1215|ICD10CM|Low vision right eye category 1, blindness left eye category 5|Low vision right eye category 1, blindness left eye category 5 +C4509169|T047|HT|H54.122|ICD10CM|Low vision right eye category 2, blindness left eye|Low vision right eye category 2, blindness left eye +C4509169|T047|AB|H54.122|ICD10CM|Low vision right eye category 2, blindness left eye|Low vision right eye category 2, blindness left eye +C4509170|T033|AB|H54.1223|ICD10CM|Low vision r eye category 2, blindness left eye category 3|Low vision r eye category 2, blindness left eye category 3 +C4509170|T033|PT|H54.1223|ICD10CM|Low vision right eye category 2, blindness left eye category 3|Low vision right eye category 2, blindness left eye category 3 +C4509171|T047|AB|H54.1224|ICD10CM|Low vision r eye category 2, blindness left eye category 4|Low vision r eye category 2, blindness left eye category 4 +C4509171|T047|PT|H54.1224|ICD10CM|Low vision right eye category 2, blindness left eye category 4|Low vision right eye category 2, blindness left eye category 4 +C4509172|T047|AB|H54.1225|ICD10CM|Low vision r eye category 2, blindness left eye category 5|Low vision r eye category 2, blindness left eye category 5 +C4509172|T047|PT|H54.1225|ICD10CM|Low vision right eye category 2, blindness left eye category 5|Low vision right eye category 2, blindness left eye category 5 +C0271234|T047|PT|H54.2|ICD10|Low vision, both eyes|Low vision, both eyes +C0271234|T047|AB|H54.2|ICD10CM|Low vision, both eyes|Low vision, both eyes +C0271234|T047|HT|H54.2|ICD10CM|Low vision, both eyes|Low vision, both eyes +C2881422|T047|ET|H54.2|ICD10CM|Visual impairment categories 1 or 2 in both eyes.|Visual impairment categories 1 or 2 in both eyes. +C4509173|T047|AB|H54.2X|ICD10CM|Low vision, both eyes, different category levels|Low vision, both eyes, different category levels +C4509173|T047|HT|H54.2X|ICD10CM|Low vision, both eyes, different category levels|Low vision, both eyes, different category levels +C4509174|T047|AB|H54.2X1|ICD10CM|Low vision, right eye, category 1|Low vision, right eye, category 1 +C4509174|T047|HT|H54.2X1|ICD10CM|Low vision, right eye, category 1|Low vision, right eye, category 1 +C4509175|T047|AB|H54.2X11|ICD10CM|Low vision r eye category 1, low vision left eye category 1|Low vision r eye category 1, low vision left eye category 1 +C4509175|T047|PT|H54.2X11|ICD10CM|Low vision right eye category 1, low vision left eye category 1|Low vision right eye category 1, low vision left eye category 1 +C4509176|T047|AB|H54.2X12|ICD10CM|Low vision r eye category 1, low vision left eye category 2|Low vision r eye category 1, low vision left eye category 2 +C4509176|T047|PT|H54.2X12|ICD10CM|Low vision right eye category 1, low vision left eye category 2|Low vision right eye category 1, low vision left eye category 2 +C4509177|T047|AB|H54.2X2|ICD10CM|Low vision, right eye, category 2|Low vision, right eye, category 2 +C4509177|T047|HT|H54.2X2|ICD10CM|Low vision, right eye, category 2|Low vision, right eye, category 2 +C4509178|T047|AB|H54.2X21|ICD10CM|Low vision r eye category 2, low vision left eye category 1|Low vision r eye category 2, low vision left eye category 1 +C4509178|T047|PT|H54.2X21|ICD10CM|Low vision right eye category 2, low vision left eye category 1|Low vision right eye category 2, low vision left eye category 1 +C4509179|T047|AB|H54.2X22|ICD10CM|Low vision r eye category 2, low vision left eye category 2|Low vision r eye category 2, low vision left eye category 2 +C4509179|T047|PT|H54.2X22|ICD10CM|Low vision right eye category 2, low vision left eye category 2|Low vision right eye category 2, low vision left eye category 2 +C0155047|T184|PT|H54.3|ICD10|Unqualified visual loss, both eyes|Unqualified visual loss, both eyes +C0155047|T184|PT|H54.3|ICD10CM|Unqualified visual loss, both eyes|Unqualified visual loss, both eyes +C0155047|T184|AB|H54.3|ICD10CM|Unqualified visual loss, both eyes|Unqualified visual loss, both eyes +C2881423|T047|ET|H54.3|ICD10CM|Visual impairment category 9 in both eyes.|Visual impairment category 9 in both eyes. +C0271240|T047|PT|H54.4|ICD10|Blindness, one eye|Blindness, one eye +C0271240|T047|HT|H54.4|ICD10CM|Blindness, one eye|Blindness, one eye +C0271240|T047|AB|H54.4|ICD10CM|Blindness, one eye|Blindness, one eye +C2881424|T047|ET|H54.4|ICD10CM|Visual impairment categories 3, 4, 5 in one eye [normal vision in other eye]|Visual impairment categories 3, 4, 5 in one eye [normal vision in other eye] +C2881425|T047|AB|H54.40|ICD10CM|Blindness, one eye, unspecified eye|Blindness, one eye, unspecified eye +C2881425|T047|PT|H54.40|ICD10CM|Blindness, one eye, unspecified eye|Blindness, one eye, unspecified eye +C2881426|T047|AB|H54.41|ICD10CM|Blindness, right eye, normal vision left eye|Blindness, right eye, normal vision left eye +C2881426|T047|HT|H54.41|ICD10CM|Blindness, right eye, normal vision left eye|Blindness, right eye, normal vision left eye +C4509180|T047|AB|H54.413|ICD10CM|Blindness, right eye, category 3|Blindness, right eye, category 3 +C4509180|T047|HT|H54.413|ICD10CM|Blindness, right eye, category 3|Blindness, right eye, category 3 +C4509181|T047|AB|H54.413A|ICD10CM|Blindness right eye category 3, normal vision left eye|Blindness right eye category 3, normal vision left eye +C4509181|T047|PT|H54.413A|ICD10CM|Blindness right eye category 3, normal vision left eye|Blindness right eye category 3, normal vision left eye +C4509148|T047|AB|H54.414|ICD10CM|Blindness, right eye, category 4|Blindness, right eye, category 4 +C4509148|T047|HT|H54.414|ICD10CM|Blindness, right eye, category 4|Blindness, right eye, category 4 +C4509182|T047|AB|H54.414A|ICD10CM|Blindness right eye category 4, normal vision left eye|Blindness right eye category 4, normal vision left eye +C4509182|T047|PT|H54.414A|ICD10CM|Blindness right eye category 4, normal vision left eye|Blindness right eye category 4, normal vision left eye +C4509183|T047|AB|H54.415|ICD10CM|Blindness, right eye, category 5|Blindness, right eye, category 5 +C4509183|T047|HT|H54.415|ICD10CM|Blindness, right eye, category 5|Blindness, right eye, category 5 +C4509184|T047|PT|H54.415A|ICD10CM|Blindness right eye category 5, normal vision left eye|Blindness right eye category 5, normal vision left eye +C4509184|T047|AB|H54.415A|ICD10CM|Blindness right eye category 5, normal vision left eye|Blindness right eye category 5, normal vision left eye +C2881427|T047|AB|H54.42|ICD10CM|Blindness, left eye, normal vision right eye|Blindness, left eye, normal vision right eye +C2881427|T047|HT|H54.42|ICD10CM|Blindness, left eye, normal vision right eye|Blindness, left eye, normal vision right eye +C4509185|T047|AB|H54.42A|ICD10CM|Blindness, left eye, category 3-5|Blindness, left eye, category 3-5 +C4509185|T047|HT|H54.42A|ICD10CM|Blindness, left eye, category 3-5|Blindness, left eye, category 3-5 +C4509186|T047|PT|H54.42A3|ICD10CM|Blindness left eye category 3, normal vision right eye|Blindness left eye category 3, normal vision right eye +C4509186|T047|AB|H54.42A3|ICD10CM|Blindness left eye category 3, normal vision right eye|Blindness left eye category 3, normal vision right eye +C4509187|T047|AB|H54.42A4|ICD10CM|Blindness left eye category 4, normal vision right eye|Blindness left eye category 4, normal vision right eye +C4509187|T047|PT|H54.42A4|ICD10CM|Blindness left eye category 4, normal vision right eye|Blindness left eye category 4, normal vision right eye +C4509188|T047|PT|H54.42A5|ICD10CM|Blindness left eye category 5, normal vision right eye|Blindness left eye category 5, normal vision right eye +C4509188|T047|AB|H54.42A5|ICD10CM|Blindness left eye category 5, normal vision right eye|Blindness left eye category 5, normal vision right eye +C0520728|T047|PT|H54.5|ICD10|Low vision, one eye|Low vision, one eye +C0520728|T047|HT|H54.5|ICD10CM|Low vision, one eye|Low vision, one eye +C0520728|T047|AB|H54.5|ICD10CM|Low vision, one eye|Low vision, one eye +C2881428|T047|ET|H54.5|ICD10CM|Visual impairment categories 1 or 2 in one eye [normal vision in other eye].|Visual impairment categories 1 or 2 in one eye [normal vision in other eye]. +C2881429|T047|AB|H54.50|ICD10CM|Low vision, one eye, unspecified eye|Low vision, one eye, unspecified eye +C2881429|T047|PT|H54.50|ICD10CM|Low vision, one eye, unspecified eye|Low vision, one eye, unspecified eye +C2881430|T033|AB|H54.51|ICD10CM|Low vision, right eye, normal vision left eye|Low vision, right eye, normal vision left eye +C2881430|T033|HT|H54.51|ICD10CM|Low vision, right eye, normal vision left eye|Low vision, right eye, normal vision left eye +C4509189|T047|AB|H54.511|ICD10CM|Low vision, right eye, category 1-2|Low vision, right eye, category 1-2 +C4509189|T047|HT|H54.511|ICD10CM|Low vision, right eye, category 1-2|Low vision, right eye, category 1-2 +C4509190|T047|AB|H54.511A|ICD10CM|Low vision right eye category 1, normal vision left eye|Low vision right eye category 1, normal vision left eye +C4509190|T047|PT|H54.511A|ICD10CM|Low vision right eye category 1, normal vision left eye|Low vision right eye category 1, normal vision left eye +C4509191|T047|PT|H54.512A|ICD10CM|Low vision right eye category 2, normal vision left eye|Low vision right eye category 2, normal vision left eye +C4509191|T047|AB|H54.512A|ICD10CM|Low vision right eye category 2, normal vision left eye|Low vision right eye category 2, normal vision left eye +C2881431|T033|AB|H54.52|ICD10CM|Low vision, left eye, normal vision right eye|Low vision, left eye, normal vision right eye +C2881431|T033|HT|H54.52|ICD10CM|Low vision, left eye, normal vision right eye|Low vision, left eye, normal vision right eye +C4509192|T047|AB|H54.52A|ICD10CM|Low vision, left eye, category 1-2|Low vision, left eye, category 1-2 +C4509192|T047|HT|H54.52A|ICD10CM|Low vision, left eye, category 1-2|Low vision, left eye, category 1-2 +C4509193|T047|AB|H54.52A1|ICD10CM|Low vision left eye category 1, normal vision right eye|Low vision left eye category 1, normal vision right eye +C4509193|T047|PT|H54.52A1|ICD10CM|Low vision left eye category 1, normal vision right eye|Low vision left eye category 1, normal vision right eye +C4509194|T047|AB|H54.52A2|ICD10CM|Low vision left eye category 2, normal vision right eye|Low vision left eye category 2, normal vision right eye +C4509194|T047|PT|H54.52A2|ICD10CM|Low vision left eye category 2, normal vision right eye|Low vision left eye category 2, normal vision right eye +C0155066|T184|PT|H54.6|ICD10|Unqualified visual loss, one eye|Unqualified visual loss, one eye +C0155066|T184|HT|H54.6|ICD10CM|Unqualified visual loss, one eye|Unqualified visual loss, one eye +C0155066|T184|AB|H54.6|ICD10CM|Unqualified visual loss, one eye|Unqualified visual loss, one eye +C2881432|T047|ET|H54.6|ICD10CM|Visual impairment category 9 in one eye [normal vision in other eye].|Visual impairment category 9 in one eye [normal vision in other eye]. +C0155066|T184|AB|H54.60|ICD10CM|Unqualified visual loss, one eye, unspecified|Unqualified visual loss, one eye, unspecified +C0155066|T184|PT|H54.60|ICD10CM|Unqualified visual loss, one eye, unspecified|Unqualified visual loss, one eye, unspecified +C2881433|T184|AB|H54.61|ICD10CM|Unqualified visual loss, right eye, normal vision left eye|Unqualified visual loss, right eye, normal vision left eye +C2881433|T184|PT|H54.61|ICD10CM|Unqualified visual loss, right eye, normal vision left eye|Unqualified visual loss, right eye, normal vision left eye +C2881434|T184|AB|H54.62|ICD10CM|Unqualified visual loss, left eye, normal vision right eye|Unqualified visual loss, left eye, normal vision right eye +C2881434|T184|PT|H54.62|ICD10CM|Unqualified visual loss, left eye, normal vision right eye|Unqualified visual loss, left eye, normal vision right eye +C3665346|T184|PT|H54.7|ICD10CM|Unspecified visual loss|Unspecified visual loss +C3665346|T184|AB|H54.7|ICD10CM|Unspecified visual loss|Unspecified visual loss +C3665346|T184|PT|H54.7|ICD10|Unspecified visual loss|Unspecified visual loss +C2881435|T047|ET|H54.7|ICD10CM|Visual impairment category 9 NOS|Visual impairment category 9 NOS +C2881436|T047|ET|H54.8|ICD10CM|Blindness NOS according to USA definition|Blindness NOS according to USA definition +C2881437|T047|AB|H54.8|ICD10CM|Legal blindness, as defined in USA|Legal blindness, as defined in USA +C2881437|T047|PT|H54.8|ICD10CM|Legal blindness, as defined in USA|Legal blindness, as defined in USA +C0339666|T033|HT|H55|ICD10CM|Nystagmus and other irregular eye movements|Nystagmus and other irregular eye movements +C0339666|T033|AB|H55|ICD10CM|Nystagmus and other irregular eye movements|Nystagmus and other irregular eye movements +C0339666|T033|PT|H55|ICD10|Nystagmus and other irregular eye movements|Nystagmus and other irregular eye movements +C2976969|T047|HT|H55-H57|ICD10CM|Other disorders of eye and adnexa (H55-H57)|Other disorders of eye and adnexa (H55-H57) +C0348572|T047|HT|H55-H59.9|ICD10|Other disorders of eye and adnexa|Other disorders of eye and adnexa +C0028738|T047|HT|H55.0|ICD10CM|Nystagmus|Nystagmus +C0028738|T047|AB|H55.0|ICD10CM|Nystagmus|Nystagmus +C0028738|T047|AB|H55.00|ICD10CM|Unspecified nystagmus|Unspecified nystagmus +C0028738|T047|PT|H55.00|ICD10CM|Unspecified nystagmus|Unspecified nystagmus +C0700501|T019|PT|H55.01|ICD10CM|Congenital nystagmus|Congenital nystagmus +C0700501|T019|AB|H55.01|ICD10CM|Congenital nystagmus|Congenital nystagmus +C0152225|T047|PT|H55.02|ICD10CM|Latent nystagmus|Latent nystagmus +C0152225|T047|AB|H55.02|ICD10CM|Latent nystagmus|Latent nystagmus +C0271384|T047|PT|H55.03|ICD10CM|Visual deprivation nystagmus|Visual deprivation nystagmus +C0271384|T047|AB|H55.03|ICD10CM|Visual deprivation nystagmus|Visual deprivation nystagmus +C0155380|T047|PT|H55.04|ICD10CM|Dissociated nystagmus|Dissociated nystagmus +C0155380|T047|AB|H55.04|ICD10CM|Dissociated nystagmus|Dissociated nystagmus +C0029620|T047|AB|H55.09|ICD10CM|Other forms of nystagmus|Other forms of nystagmus +C0029620|T047|PT|H55.09|ICD10CM|Other forms of nystagmus|Other forms of nystagmus +C2881438|T033|HT|H55.8|ICD10CM|Other irregular eye movements|Other irregular eye movements +C2881438|T033|AB|H55.8|ICD10CM|Other irregular eye movements|Other irregular eye movements +C0036019|T033|PT|H55.81|ICD10CM|Saccadic eye movements|Saccadic eye movements +C0036019|T033|AB|H55.81|ICD10CM|Saccadic eye movements|Saccadic eye movements +C2881438|T033|AB|H55.89|ICD10CM|Other irregular eye movements|Other irregular eye movements +C2881438|T033|PT|H55.89|ICD10CM|Other irregular eye movements|Other irregular eye movements +C0348572|T047|HT|H57|ICD10|Other disorders of eye and adnexa|Other disorders of eye and adnexa +C0348572|T047|AB|H57|ICD10CM|Other disorders of eye and adnexa|Other disorders of eye and adnexa +C0348572|T047|HT|H57|ICD10CM|Other disorders of eye and adnexa|Other disorders of eye and adnexa +C0917967|T033|PT|H57.0|ICD10|Anomalies of pupillary function|Anomalies of pupillary function +C0917967|T033|HT|H57.0|ICD10CM|Anomalies of pupillary function|Anomalies of pupillary function +C0917967|T033|AB|H57.0|ICD10CM|Anomalies of pupillary function|Anomalies of pupillary function +C2881439|T047|AB|H57.00|ICD10CM|Unspecified anomaly of pupillary function|Unspecified anomaly of pupillary function +C2881439|T047|PT|H57.00|ICD10CM|Unspecified anomaly of pupillary function|Unspecified anomaly of pupillary function +C0155375|T047|PT|H57.01|ICD10CM|Argyll Robertson pupil, atypical|Argyll Robertson pupil, atypical +C0155375|T047|AB|H57.01|ICD10CM|Argyll Robertson pupil, atypical|Argyll Robertson pupil, atypical +C0003079|T033|PT|H57.02|ICD10CM|Anisocoria|Anisocoria +C0003079|T033|AB|H57.02|ICD10CM|Anisocoria|Anisocoria +C0026205|T047|PT|H57.03|ICD10CM|Miosis|Miosis +C0026205|T047|AB|H57.03|ICD10CM|Miosis|Miosis +C0026961|T184|PT|H57.04|ICD10CM|Mydriasis|Mydriasis +C0026961|T184|AB|H57.04|ICD10CM|Mydriasis|Mydriasis +C0040416|T184|HT|H57.05|ICD10CM|Tonic pupil|Tonic pupil +C0040416|T184|AB|H57.05|ICD10CM|Tonic pupil|Tonic pupil +C2881440|T033|AB|H57.051|ICD10CM|Tonic pupil, right eye|Tonic pupil, right eye +C2881440|T033|PT|H57.051|ICD10CM|Tonic pupil, right eye|Tonic pupil, right eye +C2881441|T033|AB|H57.052|ICD10CM|Tonic pupil, left eye|Tonic pupil, left eye +C2881441|T033|PT|H57.052|ICD10CM|Tonic pupil, left eye|Tonic pupil, left eye +C2881442|T033|AB|H57.053|ICD10CM|Tonic pupil, bilateral|Tonic pupil, bilateral +C2881442|T033|PT|H57.053|ICD10CM|Tonic pupil, bilateral|Tonic pupil, bilateral +C2881443|T033|AB|H57.059|ICD10CM|Tonic pupil, unspecified eye|Tonic pupil, unspecified eye +C2881443|T033|PT|H57.059|ICD10CM|Tonic pupil, unspecified eye|Tonic pupil, unspecified eye +C0155376|T047|AB|H57.09|ICD10CM|Other anomalies of pupillary function|Other anomalies of pupillary function +C0155376|T047|PT|H57.09|ICD10CM|Other anomalies of pupillary function|Other anomalies of pupillary function +C0151827|T184|HT|H57.1|ICD10CM|Ocular pain|Ocular pain +C0151827|T184|AB|H57.1|ICD10CM|Ocular pain|Ocular pain +C0151827|T184|PT|H57.1|ICD10|Ocular pain|Ocular pain +C0151827|T184|AB|H57.10|ICD10CM|Ocular pain, unspecified eye|Ocular pain, unspecified eye +C0151827|T184|PT|H57.10|ICD10CM|Ocular pain, unspecified eye|Ocular pain, unspecified eye +C2881444|T184|AB|H57.11|ICD10CM|Ocular pain, right eye|Ocular pain, right eye +C2881444|T184|PT|H57.11|ICD10CM|Ocular pain, right eye|Ocular pain, right eye +C2881445|T184|AB|H57.12|ICD10CM|Ocular pain, left eye|Ocular pain, left eye +C2881445|T184|PT|H57.12|ICD10CM|Ocular pain, left eye|Ocular pain, left eye +C2881446|T184|AB|H57.13|ICD10CM|Ocular pain, bilateral|Ocular pain, bilateral +C2881446|T184|PT|H57.13|ICD10CM|Ocular pain, bilateral|Ocular pain, bilateral +C0155384|T047|AB|H57.8|ICD10CM|Other specified disorders of eye and adnexa|Other specified disorders of eye and adnexa +C0155384|T047|HT|H57.8|ICD10CM|Other specified disorders of eye and adnexa|Other specified disorders of eye and adnexa +C0155384|T047|PT|H57.8|ICD10|Other specified disorders of eye and adnexa|Other specified disorders of eye and adnexa +C0423122|T047|HT|H57.81|ICD10CM|Brow ptosis|Brow ptosis +C0423122|T047|AB|H57.81|ICD10CM|Brow ptosis|Brow ptosis +C4554307|T047|AB|H57.811|ICD10CM|Brow ptosis, right|Brow ptosis, right +C4554307|T047|PT|H57.811|ICD10CM|Brow ptosis, right|Brow ptosis, right +C4554308|T047|AB|H57.812|ICD10CM|Brow ptosis, left|Brow ptosis, left +C4554308|T047|PT|H57.812|ICD10CM|Brow ptosis, left|Brow ptosis, left +C4554309|T047|AB|H57.813|ICD10CM|Brow ptosis, bilateral|Brow ptosis, bilateral +C4554309|T047|PT|H57.813|ICD10CM|Brow ptosis, bilateral|Brow ptosis, bilateral +C4554310|T047|AB|H57.819|ICD10CM|Brow ptosis, unspecified|Brow ptosis, unspecified +C4554310|T047|PT|H57.819|ICD10CM|Brow ptosis, unspecified|Brow ptosis, unspecified +C0155384|T047|PT|H57.89|ICD10CM|Other specified disorders of eye and adnexa|Other specified disorders of eye and adnexa +C0155384|T047|AB|H57.89|ICD10CM|Other specified disorders of eye and adnexa|Other specified disorders of eye and adnexa +C1314803|T047|PT|H57.9|ICD10|Disorder of eye and adnexa, unspecified|Disorder of eye and adnexa, unspecified +C1314803|T047|AB|H57.9|ICD10CM|Unspecified disorder of eye and adnexa|Unspecified disorder of eye and adnexa +C1314803|T047|PT|H57.9|ICD10CM|Unspecified disorder of eye and adnexa|Unspecified disorder of eye and adnexa +C0694491|T047|HT|H58|ICD10|Other disorders of eye and adnexa in diseases classified elsewhere|Other disorders of eye and adnexa in diseases classified elsewhere +C0348573|T047|PT|H58.0|ICD10|Anomalies of pupillary function in diseases classified elsewhere|Anomalies of pupillary function in diseases classified elsewhere +C0348574|T047|PT|H58.1|ICD10|Visual disturbances in diseases classified elsewhere|Visual disturbances in diseases classified elsewhere +C0494550|T047|PT|H58.8|ICD10|Other specified disorders of eye and adnexa in diseases classified elsewhere|Other specified disorders of eye and adnexa in diseases classified elsewhere +C2881447|T046|AB|H59|ICD10CM|Intraop and postproc comp and disord of eye and adnexa, NEC|Intraop and postproc comp and disord of eye and adnexa, NEC +C0494551|T047|HT|H59|ICD10|Postprocedural disorders of eye and adnexa, not elsewhere classified|Postprocedural disorders of eye and adnexa, not elsewhere classified +C2881448|T046|AB|H59.0|ICD10CM|Disorders of the eye following cataract surgery|Disorders of the eye following cataract surgery +C2881448|T046|HT|H59.0|ICD10CM|Disorders of the eye following cataract surgery|Disorders of the eye following cataract surgery +C0348790|T047|PT|H59.0|ICD10|Vitreous syndrome following cataract surgery|Vitreous syndrome following cataract surgery +C2881450|T047|AB|H59.01|ICD10CM|Keratopathy (bullous aphakic) following cataract surgery|Keratopathy (bullous aphakic) following cataract surgery +C2881450|T047|HT|H59.01|ICD10CM|Keratopathy (bullous aphakic) following cataract surgery|Keratopathy (bullous aphakic) following cataract surgery +C2881449|T047|ET|H59.01|ICD10CM|Vitreal corneal syndrome|Vitreal corneal syndrome +C0274394|T047|ET|H59.01|ICD10CM|Vitreous (touch) syndrome|Vitreous (touch) syndrome +C2881451|T047|AB|H59.011|ICD10CM|Keratopathy (bullous aphakic) fol cataract surgery, r eye|Keratopathy (bullous aphakic) fol cataract surgery, r eye +C2881451|T047|PT|H59.011|ICD10CM|Keratopathy (bullous aphakic) following cataract surgery, right eye|Keratopathy (bullous aphakic) following cataract surgery, right eye +C2881452|T047|AB|H59.012|ICD10CM|Keratopathy (bullous aphakic) fol cataract surgery, left eye|Keratopathy (bullous aphakic) fol cataract surgery, left eye +C2881452|T047|PT|H59.012|ICD10CM|Keratopathy (bullous aphakic) following cataract surgery, left eye|Keratopathy (bullous aphakic) following cataract surgery, left eye +C2881453|T047|AB|H59.013|ICD10CM|Keratopathy (bullous aphakic) following cataract surgery, bi|Keratopathy (bullous aphakic) following cataract surgery, bi +C2881453|T047|PT|H59.013|ICD10CM|Keratopathy (bullous aphakic) following cataract surgery, bilateral|Keratopathy (bullous aphakic) following cataract surgery, bilateral +C2881454|T047|AB|H59.019|ICD10CM|Keratopathy (bullous aphakic) fol cataract surgery, unsp eye|Keratopathy (bullous aphakic) fol cataract surgery, unsp eye +C2881454|T047|PT|H59.019|ICD10CM|Keratopathy (bullous aphakic) following cataract surgery, unspecified eye|Keratopathy (bullous aphakic) following cataract surgery, unspecified eye +C2881455|T047|AB|H59.02|ICD10CM|Cataract (lens) fragments in eye following cataract surgery|Cataract (lens) fragments in eye following cataract surgery +C2881455|T047|HT|H59.02|ICD10CM|Cataract (lens) fragments in eye following cataract surgery|Cataract (lens) fragments in eye following cataract surgery +C2881456|T047|PT|H59.021|ICD10CM|Cataract (lens) fragments in eye following cataract surgery, right eye|Cataract (lens) fragments in eye following cataract surgery, right eye +C2881456|T047|AB|H59.021|ICD10CM|Cataract (lens) fragmt in eye fol cataract surgery, r eye|Cataract (lens) fragmt in eye fol cataract surgery, r eye +C2881457|T047|PT|H59.022|ICD10CM|Cataract (lens) fragments in eye following cataract surgery, left eye|Cataract (lens) fragments in eye following cataract surgery, left eye +C2881457|T047|AB|H59.022|ICD10CM|Cataract (lens) fragmt in eye fol cataract surgery, left eye|Cataract (lens) fragmt in eye fol cataract surgery, left eye +C2881458|T047|AB|H59.023|ICD10CM|Cataract (lens) fragments in eye fol cataract surgery, bi|Cataract (lens) fragments in eye fol cataract surgery, bi +C2881458|T047|PT|H59.023|ICD10CM|Cataract (lens) fragments in eye following cataract surgery, bilateral|Cataract (lens) fragments in eye following cataract surgery, bilateral +C2881459|T047|PT|H59.029|ICD10CM|Cataract (lens) fragments in eye following cataract surgery, unspecified eye|Cataract (lens) fragments in eye following cataract surgery, unspecified eye +C2881459|T047|AB|H59.029|ICD10CM|Cataract (lens) fragmt in eye fol cataract surgery, unsp eye|Cataract (lens) fragmt in eye fol cataract surgery, unsp eye +C3469318|T046|HT|H59.03|ICD10CM|Cystoid macular edema following cataract surgery|Cystoid macular edema following cataract surgery +C3469318|T046|AB|H59.03|ICD10CM|Cystoid macular edema following cataract surgery|Cystoid macular edema following cataract surgery +C2881461|T047|AB|H59.031|ICD10CM|Cystoid macular edema following cataract surgery, right eye|Cystoid macular edema following cataract surgery, right eye +C2881461|T047|PT|H59.031|ICD10CM|Cystoid macular edema following cataract surgery, right eye|Cystoid macular edema following cataract surgery, right eye +C2881462|T047|AB|H59.032|ICD10CM|Cystoid macular edema following cataract surgery, left eye|Cystoid macular edema following cataract surgery, left eye +C2881462|T047|PT|H59.032|ICD10CM|Cystoid macular edema following cataract surgery, left eye|Cystoid macular edema following cataract surgery, left eye +C2881463|T047|AB|H59.033|ICD10CM|Cystoid macular edema following cataract surgery, bilateral|Cystoid macular edema following cataract surgery, bilateral +C2881463|T047|PT|H59.033|ICD10CM|Cystoid macular edema following cataract surgery, bilateral|Cystoid macular edema following cataract surgery, bilateral +C2881464|T047|AB|H59.039|ICD10CM|Cystoid macular edema following cataract surgery, unsp eye|Cystoid macular edema following cataract surgery, unsp eye +C2881464|T047|PT|H59.039|ICD10CM|Cystoid macular edema following cataract surgery, unspecified eye|Cystoid macular edema following cataract surgery, unspecified eye +C2881465|T047|AB|H59.09|ICD10CM|Other disorders of the eye following cataract surgery|Other disorders of the eye following cataract surgery +C2881465|T047|HT|H59.09|ICD10CM|Other disorders of the eye following cataract surgery|Other disorders of the eye following cataract surgery +C2881466|T047|AB|H59.091|ICD10CM|Other disorders of the right eye following cataract surgery|Other disorders of the right eye following cataract surgery +C2881466|T047|PT|H59.091|ICD10CM|Other disorders of the right eye following cataract surgery|Other disorders of the right eye following cataract surgery +C2881467|T047|AB|H59.092|ICD10CM|Other disorders of the left eye following cataract surgery|Other disorders of the left eye following cataract surgery +C2881467|T047|PT|H59.092|ICD10CM|Other disorders of the left eye following cataract surgery|Other disorders of the left eye following cataract surgery +C2881468|T047|AB|H59.093|ICD10CM|Oth disorders of the eye following cataract surgery, bi|Oth disorders of the eye following cataract surgery, bi +C2881468|T047|PT|H59.093|ICD10CM|Other disorders of the eye following cataract surgery, bilateral|Other disorders of the eye following cataract surgery, bilateral +C2881469|T047|AB|H59.099|ICD10CM|Other disorders of unsp eye following cataract surgery|Other disorders of unsp eye following cataract surgery +C2881469|T047|PT|H59.099|ICD10CM|Other disorders of unspecified eye following cataract surgery|Other disorders of unspecified eye following cataract surgery +C2881470|T046|AB|H59.1|ICD10CM|Intraop hemor/hemtom of eye and adnexa comp a procedure|Intraop hemor/hemtom of eye and adnexa comp a procedure +C2881470|T046|HT|H59.1|ICD10CM|Intraoperative hemorrhage and hematoma of eye and adnexa complicating a procedure|Intraoperative hemorrhage and hematoma of eye and adnexa complicating a procedure +C2881471|T046|AB|H59.11|ICD10CM|Intraop hemor/hemtom of eye and adnexa comp an opth proc|Intraop hemor/hemtom of eye and adnexa comp an opth proc +C2881471|T046|HT|H59.11|ICD10CM|Intraoperative hemorrhage and hematoma of eye and adnexa complicating an ophthalmic procedure|Intraoperative hemorrhage and hematoma of eye and adnexa complicating an ophthalmic procedure +C2881472|T046|AB|H59.111|ICD10CM|Intraop hemor/hemtom of r eye and adnexa comp an opth proc|Intraop hemor/hemtom of r eye and adnexa comp an opth proc +C2881472|T046|PT|H59.111|ICD10CM|Intraoperative hemorrhage and hematoma of right eye and adnexa complicating an ophthalmic procedure|Intraoperative hemorrhage and hematoma of right eye and adnexa complicating an ophthalmic procedure +C2881473|T046|AB|H59.112|ICD10CM|Intraop hemor/hemtom of l eye and adnexa comp an opth proc|Intraop hemor/hemtom of l eye and adnexa comp an opth proc +C2881473|T046|PT|H59.112|ICD10CM|Intraoperative hemorrhage and hematoma of left eye and adnexa complicating an ophthalmic procedure|Intraoperative hemorrhage and hematoma of left eye and adnexa complicating an ophthalmic procedure +C2881474|T046|AB|H59.113|ICD10CM|Intraop hemor/hemtom of eye and adnexa comp an opth proc, bi|Intraop hemor/hemtom of eye and adnexa comp an opth proc, bi +C2881475|T046|AB|H59.119|ICD10CM|Intraop hemor/hemtom of unsp eye and adnx comp an opth proc|Intraop hemor/hemtom of unsp eye and adnx comp an opth proc +C2881476|T046|AB|H59.12|ICD10CM|Intraop hemor/hemtom of eye and adnexa comp oth procedure|Intraop hemor/hemtom of eye and adnexa comp oth procedure +C2881476|T046|HT|H59.12|ICD10CM|Intraoperative hemorrhage and hematoma of eye and adnexa complicating other procedure|Intraoperative hemorrhage and hematoma of eye and adnexa complicating other procedure +C2881477|T046|AB|H59.121|ICD10CM|Intraop hemor/hemtom of right eye and adnexa comp oth proc|Intraop hemor/hemtom of right eye and adnexa comp oth proc +C2881477|T046|PT|H59.121|ICD10CM|Intraoperative hemorrhage and hematoma of right eye and adnexa complicating other procedure|Intraoperative hemorrhage and hematoma of right eye and adnexa complicating other procedure +C2881478|T046|AB|H59.122|ICD10CM|Intraop hemor/hemtom of left eye and adnexa comp oth proc|Intraop hemor/hemtom of left eye and adnexa comp oth proc +C2881478|T046|PT|H59.122|ICD10CM|Intraoperative hemorrhage and hematoma of left eye and adnexa complicating other procedure|Intraoperative hemorrhage and hematoma of left eye and adnexa complicating other procedure +C2881479|T046|AB|H59.123|ICD10CM|Intraop hemor/hemtom of eye and adnexa comp oth proc, bi|Intraop hemor/hemtom of eye and adnexa comp oth proc, bi +C2881479|T046|PT|H59.123|ICD10CM|Intraoperative hemorrhage and hematoma of eye and adnexa complicating other procedure, bilateral|Intraoperative hemorrhage and hematoma of eye and adnexa complicating other procedure, bilateral +C2881480|T046|AB|H59.129|ICD10CM|Intraop hemor/hemtom of unsp eye and adnexa comp oth proc|Intraop hemor/hemtom of unsp eye and adnexa comp oth proc +C2881480|T046|PT|H59.129|ICD10CM|Intraoperative hemorrhage and hematoma of unspecified eye and adnexa complicating other procedure|Intraoperative hemorrhage and hematoma of unspecified eye and adnexa complicating other procedure +C2881481|T037|AB|H59.2|ICD10CM|Accidental pnctr & lac of eye and adnexa during a procedure|Accidental pnctr & lac of eye and adnexa during a procedure +C2881481|T037|HT|H59.2|ICD10CM|Accidental puncture and laceration of eye and adnexa during a procedure|Accidental puncture and laceration of eye and adnexa during a procedure +C2881482|T037|AB|H59.21|ICD10CM|Acc pnctr & lac of eye and adnexa during an opth procedure|Acc pnctr & lac of eye and adnexa during an opth procedure +C2881482|T037|HT|H59.21|ICD10CM|Accidental puncture and laceration of eye and adnexa during an ophthalmic procedure|Accidental puncture and laceration of eye and adnexa during an ophthalmic procedure +C2881483|T037|AB|H59.211|ICD10CM|Acc pnctr & lac of right eye and adnexa during an opth proc|Acc pnctr & lac of right eye and adnexa during an opth proc +C2881483|T037|PT|H59.211|ICD10CM|Accidental puncture and laceration of right eye and adnexa during an ophthalmic procedure|Accidental puncture and laceration of right eye and adnexa during an ophthalmic procedure +C2881484|T037|AB|H59.212|ICD10CM|Acc pnctr & lac of left eye and adnexa during an opth proc|Acc pnctr & lac of left eye and adnexa during an opth proc +C2881484|T037|PT|H59.212|ICD10CM|Accidental puncture and laceration of left eye and adnexa during an ophthalmic procedure|Accidental puncture and laceration of left eye and adnexa during an ophthalmic procedure +C2881485|T037|AB|H59.213|ICD10CM|Acc pnctr & lac of eye and adnexa during an opth proc, bi|Acc pnctr & lac of eye and adnexa during an opth proc, bi +C2881485|T037|PT|H59.213|ICD10CM|Accidental puncture and laceration of eye and adnexa during an ophthalmic procedure, bilateral|Accidental puncture and laceration of eye and adnexa during an ophthalmic procedure, bilateral +C2881486|T037|AB|H59.219|ICD10CM|Acc pnctr & lac of unsp eye and adnexa during an opth proc|Acc pnctr & lac of unsp eye and adnexa during an opth proc +C2881486|T037|PT|H59.219|ICD10CM|Accidental puncture and laceration of unspecified eye and adnexa during an ophthalmic procedure|Accidental puncture and laceration of unspecified eye and adnexa during an ophthalmic procedure +C2881487|T037|AB|H59.22|ICD10CM|Acc pnctr & lac of eye and adnexa during oth procedure|Acc pnctr & lac of eye and adnexa during oth procedure +C2881487|T037|HT|H59.22|ICD10CM|Accidental puncture and laceration of eye and adnexa during other procedure|Accidental puncture and laceration of eye and adnexa during other procedure +C2881488|T037|AB|H59.221|ICD10CM|Acc pnctr & lac of right eye and adnexa during oth procedure|Acc pnctr & lac of right eye and adnexa during oth procedure +C2881488|T037|PT|H59.221|ICD10CM|Accidental puncture and laceration of right eye and adnexa during other procedure|Accidental puncture and laceration of right eye and adnexa during other procedure +C2881489|T037|AB|H59.222|ICD10CM|Acc pnctr & lac of left eye and adnexa during oth procedure|Acc pnctr & lac of left eye and adnexa during oth procedure +C2881489|T037|PT|H59.222|ICD10CM|Accidental puncture and laceration of left eye and adnexa during other procedure|Accidental puncture and laceration of left eye and adnexa during other procedure +C2881490|T037|AB|H59.223|ICD10CM|Acc pnctr & lac of eye and adnexa during oth procedure, bi|Acc pnctr & lac of eye and adnexa during oth procedure, bi +C2881490|T037|PT|H59.223|ICD10CM|Accidental puncture and laceration of eye and adnexa during other procedure, bilateral|Accidental puncture and laceration of eye and adnexa during other procedure, bilateral +C2881491|T037|AB|H59.229|ICD10CM|Acc pnctr & lac of unsp eye and adnexa during oth procedure|Acc pnctr & lac of unsp eye and adnexa during oth procedure +C2881491|T037|PT|H59.229|ICD10CM|Accidental puncture and laceration of unspecified eye and adnexa during other procedure|Accidental puncture and laceration of unspecified eye and adnexa during other procedure +C4268420|T046|AB|H59.3|ICD10CM|Postp hemor, hematoma, and seroma of eye and adnx fol a proc|Postp hemor, hematoma, and seroma of eye and adnx fol a proc +C4268420|T046|HT|H59.3|ICD10CM|Postprocedural hemorrhage, hematoma, and seroma of eye and adnexa following a procedure|Postprocedural hemorrhage, hematoma, and seroma of eye and adnexa following a procedure +C4268421|T046|AB|H59.31|ICD10CM|Postproc hemor of eye and adnexa following an opth procedure|Postproc hemor of eye and adnexa following an opth procedure +C4268421|T046|HT|H59.31|ICD10CM|Postprocedural hemorrhage of eye and adnexa following an ophthalmic procedure|Postprocedural hemorrhage of eye and adnexa following an ophthalmic procedure +C4268422|T046|AB|H59.311|ICD10CM|Postproc hemor of right eye and adnexa fol an opth procedure|Postproc hemor of right eye and adnexa fol an opth procedure +C4268422|T046|PT|H59.311|ICD10CM|Postprocedural hemorrhage of right eye and adnexa following an ophthalmic procedure|Postprocedural hemorrhage of right eye and adnexa following an ophthalmic procedure +C4268423|T046|AB|H59.312|ICD10CM|Postproc hemor of left eye and adnexa fol an opth procedure|Postproc hemor of left eye and adnexa fol an opth procedure +C4268423|T046|PT|H59.312|ICD10CM|Postprocedural hemorrhage of left eye and adnexa following an ophthalmic procedure|Postprocedural hemorrhage of left eye and adnexa following an ophthalmic procedure +C4268424|T046|AB|H59.313|ICD10CM|Postproc hemor of eye and adnexa fol an opth procedure, bi|Postproc hemor of eye and adnexa fol an opth procedure, bi +C4268424|T046|PT|H59.313|ICD10CM|Postprocedural hemorrhage of eye and adnexa following an ophthalmic procedure, bilateral|Postprocedural hemorrhage of eye and adnexa following an ophthalmic procedure, bilateral +C4268425|T046|AB|H59.319|ICD10CM|Postproc hemor of unsp and adnexa fol an opth procedure|Postproc hemor of unsp and adnexa fol an opth procedure +C4268425|T046|PT|H59.319|ICD10CM|Postprocedural hemorrhage of unspecified eye and adnexa following an ophthalmic procedure|Postprocedural hemorrhage of unspecified eye and adnexa following an ophthalmic procedure +C4268426|T046|AB|H59.32|ICD10CM|Postproc hemor of eye and adnexa following other procedure|Postproc hemor of eye and adnexa following other procedure +C4268426|T046|HT|H59.32|ICD10CM|Postprocedural hemorrhage of eye and adnexa following other procedure|Postprocedural hemorrhage of eye and adnexa following other procedure +C4268427|T046|AB|H59.321|ICD10CM|Postproc hemor of right eye and adnexa fol other procedure|Postproc hemor of right eye and adnexa fol other procedure +C4268427|T046|PT|H59.321|ICD10CM|Postprocedural hemorrhage of right eye and adnexa following other procedure|Postprocedural hemorrhage of right eye and adnexa following other procedure +C4268428|T046|AB|H59.322|ICD10CM|Postproc hemor of left eye and adnexa fol other procedure|Postproc hemor of left eye and adnexa fol other procedure +C4268428|T046|PT|H59.322|ICD10CM|Postprocedural hemorrhage of left eye and adnexa following other procedure|Postprocedural hemorrhage of left eye and adnexa following other procedure +C4268429|T046|AB|H59.323|ICD10CM|Postproc hemor of eye and adnexa fol other procedure, bi|Postproc hemor of eye and adnexa fol other procedure, bi +C4268429|T046|PT|H59.323|ICD10CM|Postprocedural hemorrhage of eye and adnexa following other procedure, bilateral|Postprocedural hemorrhage of eye and adnexa following other procedure, bilateral +C4268430|T046|AB|H59.329|ICD10CM|Postproc hemor of unsp and adnexa following other procedure|Postproc hemor of unsp and adnexa following other procedure +C4268430|T046|PT|H59.329|ICD10CM|Postprocedural hemorrhage of unspecified eye and adnexa following other procedure|Postprocedural hemorrhage of unspecified eye and adnexa following other procedure +C4268431|T046|AB|H59.33|ICD10CM|Postproc hematoma of eye and adnexa fol an opth procedure|Postproc hematoma of eye and adnexa fol an opth procedure +C4268431|T046|HT|H59.33|ICD10CM|Postprocedural hematoma of eye and adnexa following an ophthalmic procedure|Postprocedural hematoma of eye and adnexa following an ophthalmic procedure +C4268432|T046|AB|H59.331|ICD10CM|Postproc hematoma of right eye and adnexa fol an opth proc|Postproc hematoma of right eye and adnexa fol an opth proc +C4268432|T046|PT|H59.331|ICD10CM|Postprocedural hematoma of right eye and adnexa following an ophthalmic procedure|Postprocedural hematoma of right eye and adnexa following an ophthalmic procedure +C4268433|T046|AB|H59.332|ICD10CM|Postproc hematoma of left eye and adnexa fol an opth proc|Postproc hematoma of left eye and adnexa fol an opth proc +C4268433|T046|PT|H59.332|ICD10CM|Postprocedural hematoma of left eye and adnexa following an ophthalmic procedure|Postprocedural hematoma of left eye and adnexa following an ophthalmic procedure +C4268434|T046|AB|H59.333|ICD10CM|Postproc hematoma of eye and adnexa fol an opth proc, bi|Postproc hematoma of eye and adnexa fol an opth proc, bi +C4268434|T046|PT|H59.333|ICD10CM|Postprocedural hematoma of eye and adnexa following an ophthalmic procedure, bilateral|Postprocedural hematoma of eye and adnexa following an ophthalmic procedure, bilateral +C4268435|T046|AB|H59.339|ICD10CM|Postproc hematoma of unsp and adnexa fol an opth procedure|Postproc hematoma of unsp and adnexa fol an opth procedure +C4268435|T046|PT|H59.339|ICD10CM|Postprocedural hematoma of unspecified eye and adnexa following an ophthalmic procedure|Postprocedural hematoma of unspecified eye and adnexa following an ophthalmic procedure +C4268436|T046|AB|H59.34|ICD10CM|Postproc hematoma of eye and adnexa fol other procedure|Postproc hematoma of eye and adnexa fol other procedure +C4268436|T046|HT|H59.34|ICD10CM|Postprocedural hematoma of eye and adnexa following other procedure|Postprocedural hematoma of eye and adnexa following other procedure +C4268437|T046|AB|H59.341|ICD10CM|Postproc hematoma of right eye and adnexa fol other proc|Postproc hematoma of right eye and adnexa fol other proc +C4268437|T046|PT|H59.341|ICD10CM|Postprocedural hematoma of right eye and adnexa following other procedure|Postprocedural hematoma of right eye and adnexa following other procedure +C4268438|T046|AB|H59.342|ICD10CM|Postproc hematoma of left eye and adnexa fol other procedure|Postproc hematoma of left eye and adnexa fol other procedure +C4268438|T046|PT|H59.342|ICD10CM|Postprocedural hematoma of left eye and adnexa following other procedure|Postprocedural hematoma of left eye and adnexa following other procedure +C4268439|T046|AB|H59.343|ICD10CM|Postproc hematoma of eye and adnexa fol other procedure, bi|Postproc hematoma of eye and adnexa fol other procedure, bi +C4268439|T046|PT|H59.343|ICD10CM|Postprocedural hematoma of eye and adnexa following other procedure, bilateral|Postprocedural hematoma of eye and adnexa following other procedure, bilateral +C4268440|T046|AB|H59.349|ICD10CM|Postproc hematoma of unsp and adnexa fol other procedure|Postproc hematoma of unsp and adnexa fol other procedure +C4268440|T046|PT|H59.349|ICD10CM|Postprocedural hematoma of unspecified eye and adnexa following other procedure|Postprocedural hematoma of unspecified eye and adnexa following other procedure +C4268441|T046|AB|H59.35|ICD10CM|Postproc seroma of eye and adnexa fol an opth procedure|Postproc seroma of eye and adnexa fol an opth procedure +C4268441|T046|HT|H59.35|ICD10CM|Postprocedural seroma of eye and adnexa following an ophthalmic procedure|Postprocedural seroma of eye and adnexa following an ophthalmic procedure +C4268442|T046|AB|H59.351|ICD10CM|Postproc seroma of right eye and adnexa fol an opth proc|Postproc seroma of right eye and adnexa fol an opth proc +C4268442|T046|PT|H59.351|ICD10CM|Postprocedural seroma of right eye and adnexa following an ophthalmic procedure|Postprocedural seroma of right eye and adnexa following an ophthalmic procedure +C4268443|T046|AB|H59.352|ICD10CM|Postproc seroma of left eye and adnexa fol an opth procedure|Postproc seroma of left eye and adnexa fol an opth procedure +C4268443|T046|PT|H59.352|ICD10CM|Postprocedural seroma of left eye and adnexa following an ophthalmic procedure|Postprocedural seroma of left eye and adnexa following an ophthalmic procedure +C4268444|T046|AB|H59.353|ICD10CM|Postproc seroma of eye and adnexa fol an opth procedure, bi|Postproc seroma of eye and adnexa fol an opth procedure, bi +C4268444|T046|PT|H59.353|ICD10CM|Postprocedural seroma of eye and adnexa following an ophthalmic procedure, bilateral|Postprocedural seroma of eye and adnexa following an ophthalmic procedure, bilateral +C4268445|T046|AB|H59.359|ICD10CM|Postproc seroma of unsp and adnexa fol an opth procedure|Postproc seroma of unsp and adnexa fol an opth procedure +C4268445|T046|PT|H59.359|ICD10CM|Postprocedural seroma of unspecified eye and adnexa following an ophthalmic procedure|Postprocedural seroma of unspecified eye and adnexa following an ophthalmic procedure +C4268446|T046|AB|H59.36|ICD10CM|Postproc seroma of eye and adnexa following other procedure|Postproc seroma of eye and adnexa following other procedure +C4268446|T046|HT|H59.36|ICD10CM|Postprocedural seroma of eye and adnexa following other procedure|Postprocedural seroma of eye and adnexa following other procedure +C4268447|T046|AB|H59.361|ICD10CM|Postproc seroma of right eye and adnexa fol other procedure|Postproc seroma of right eye and adnexa fol other procedure +C4268447|T046|PT|H59.361|ICD10CM|Postprocedural seroma of right eye and adnexa following other procedure|Postprocedural seroma of right eye and adnexa following other procedure +C4268448|T046|AB|H59.362|ICD10CM|Postproc seroma of left eye and adnexa fol other procedure|Postproc seroma of left eye and adnexa fol other procedure +C4268448|T046|PT|H59.362|ICD10CM|Postprocedural seroma of left eye and adnexa following other procedure|Postprocedural seroma of left eye and adnexa following other procedure +C4268449|T046|AB|H59.363|ICD10CM|Postproc seroma of eye and adnexa fol other procedure, bi|Postproc seroma of eye and adnexa fol other procedure, bi +C4268449|T046|PT|H59.363|ICD10CM|Postprocedural seroma of eye and adnexa following other procedure, bilateral|Postprocedural seroma of eye and adnexa following other procedure, bilateral +C4268450|T046|AB|H59.369|ICD10CM|Postproc seroma of unsp and adnexa following other procedure|Postproc seroma of unsp and adnexa following other procedure +C4268450|T046|PT|H59.369|ICD10CM|Postprocedural seroma of unspecified eye and adnexa following other procedure|Postprocedural seroma of unspecified eye and adnexa following other procedure +C1719449|T046|AB|H59.4|ICD10CM|Inflammation (infection) of postprocedural bleb|Inflammation (infection) of postprocedural bleb +C1719449|T046|HT|H59.4|ICD10CM|Inflammation (infection) of postprocedural bleb|Inflammation (infection) of postprocedural bleb +C1719450|T047|ET|H59.4|ICD10CM|Postprocedural blebitis|Postprocedural blebitis +C1719445|T047|AB|H59.40|ICD10CM|Inflammation (infection) of postprocedural bleb, unspecified|Inflammation (infection) of postprocedural bleb, unspecified +C1719445|T047|PT|H59.40|ICD10CM|Inflammation (infection) of postprocedural bleb, unspecified|Inflammation (infection) of postprocedural bleb, unspecified +C1719446|T047|AB|H59.41|ICD10CM|Inflammation (infection) of postprocedural bleb, stage 1|Inflammation (infection) of postprocedural bleb, stage 1 +C1719446|T047|PT|H59.41|ICD10CM|Inflammation (infection) of postprocedural bleb, stage 1|Inflammation (infection) of postprocedural bleb, stage 1 +C1719447|T047|AB|H59.42|ICD10CM|Inflammation (infection) of postprocedural bleb, stage 2|Inflammation (infection) of postprocedural bleb, stage 2 +C1719447|T047|PT|H59.42|ICD10CM|Inflammation (infection) of postprocedural bleb, stage 2|Inflammation (infection) of postprocedural bleb, stage 2 +C2881503|T047|ET|H59.43|ICD10CM|Bleb endophthalmitis|Bleb endophthalmitis +C1719448|T047|AB|H59.43|ICD10CM|Inflammation (infection) of postprocedural bleb, stage 3|Inflammation (infection) of postprocedural bleb, stage 3 +C1719448|T047|PT|H59.43|ICD10CM|Inflammation (infection) of postprocedural bleb, stage 3|Inflammation (infection) of postprocedural bleb, stage 3 +C2881504|T046|AB|H59.8|ICD10CM|Oth intraop & postproc comp and disord of eye and adnx, NEC|Oth intraop & postproc comp and disord of eye and adnx, NEC +C0348576|T047|PT|H59.8|ICD10|Other postprocedural disorders of eye and adnexa|Other postprocedural disorders of eye and adnexa +C2881505|T047|AB|H59.81|ICD10CM|Chorioretinal scars after surgery for detachment|Chorioretinal scars after surgery for detachment +C2881505|T047|HT|H59.81|ICD10CM|Chorioretinal scars after surgery for detachment|Chorioretinal scars after surgery for detachment +C2881506|T047|AB|H59.811|ICD10CM|Chorioretinal scars after surgery for detachment, right eye|Chorioretinal scars after surgery for detachment, right eye +C2881506|T047|PT|H59.811|ICD10CM|Chorioretinal scars after surgery for detachment, right eye|Chorioretinal scars after surgery for detachment, right eye +C2881507|T047|AB|H59.812|ICD10CM|Chorioretinal scars after surgery for detachment, left eye|Chorioretinal scars after surgery for detachment, left eye +C2881507|T047|PT|H59.812|ICD10CM|Chorioretinal scars after surgery for detachment, left eye|Chorioretinal scars after surgery for detachment, left eye +C2881508|T047|AB|H59.813|ICD10CM|Chorioretinal scars after surgery for detachment, bilateral|Chorioretinal scars after surgery for detachment, bilateral +C2881508|T047|PT|H59.813|ICD10CM|Chorioretinal scars after surgery for detachment, bilateral|Chorioretinal scars after surgery for detachment, bilateral +C2881509|T047|AB|H59.819|ICD10CM|Chorioretinal scars after surgery for detachment, unsp eye|Chorioretinal scars after surgery for detachment, unsp eye +C2881509|T047|PT|H59.819|ICD10CM|Chorioretinal scars after surgery for detachment, unspecified eye|Chorioretinal scars after surgery for detachment, unspecified eye +C2881510|T047|AB|H59.88|ICD10CM|Oth intraoperative complications of eye and adnexa, NEC|Oth intraoperative complications of eye and adnexa, NEC +C2881510|T047|PT|H59.88|ICD10CM|Other intraoperative complications of eye and adnexa, not elsewhere classified|Other intraoperative complications of eye and adnexa, not elsewhere classified +C2881511|T046|AB|H59.89|ICD10CM|Oth postproc comp and disorders of eye and adnexa, NEC|Oth postproc comp and disorders of eye and adnexa, NEC +C2881511|T046|PT|H59.89|ICD10CM|Other postprocedural complications and disorders of eye and adnexa, not elsewhere classified|Other postprocedural complications and disorders of eye and adnexa, not elsewhere classified +C0348577|T047|PT|H59.9|ICD10|Postprocedural disorder of eye and adnexa, unspecified|Postprocedural disorder of eye and adnexa, unspecified +C0029878|T047|HT|H60|ICD10|Otitis externa|Otitis externa +C0029878|T047|HT|H60|ICD10CM|Otitis externa|Otitis externa +C0029878|T047|AB|H60|ICD10CM|Otitis externa|Otitis externa +C0155388|T047|HT|H60-H62|ICD10CM|Diseases of external ear (H60-H62)|Diseases of external ear (H60-H62) +C0155388|T047|HT|H60-H62.9|ICD10|Diseases of external ear|Diseases of external ear +C0178269|T047|HT|H60-H95|ICD10CM|Diseases of the ear and mastoid process (H60-H95)|Diseases of the ear and mastoid process (H60-H95) +C0178269|T047|HT|H60-H95.9|ICD10|Diseases of the ear and mastoid process|Diseases of the ear and mastoid process +C0339752|T047|PT|H60.0|ICD10|Abscess of external ear|Abscess of external ear +C0339752|T047|HT|H60.0|ICD10CM|Abscess of external ear|Abscess of external ear +C0339752|T047|AB|H60.0|ICD10CM|Abscess of external ear|Abscess of external ear +C0521778|T047|ET|H60.0|ICD10CM|Boil of external ear|Boil of external ear +C2881512|T047|ET|H60.0|ICD10CM|Carbuncle of auricle or external auditory canal|Carbuncle of auricle or external auditory canal +C2881513|T047|ET|H60.0|ICD10CM|Furuncle of external ear|Furuncle of external ear +C2881514|T047|AB|H60.00|ICD10CM|Abscess of external ear, unspecified ear|Abscess of external ear, unspecified ear +C2881514|T047|PT|H60.00|ICD10CM|Abscess of external ear, unspecified ear|Abscess of external ear, unspecified ear +C2881515|T047|PT|H60.01|ICD10CM|Abscess of right external ear|Abscess of right external ear +C2881515|T047|AB|H60.01|ICD10CM|Abscess of right external ear|Abscess of right external ear +C2881516|T047|PT|H60.02|ICD10CM|Abscess of left external ear|Abscess of left external ear +C2881516|T047|AB|H60.02|ICD10CM|Abscess of left external ear|Abscess of left external ear +C2881517|T047|AB|H60.03|ICD10CM|Abscess of external ear, bilateral|Abscess of external ear, bilateral +C2881517|T047|PT|H60.03|ICD10CM|Abscess of external ear, bilateral|Abscess of external ear, bilateral +C2881518|T047|ET|H60.1|ICD10CM|Cellulitis of auricle|Cellulitis of auricle +C2242815|T047|ET|H60.1|ICD10CM|Cellulitis of external auditory canal|Cellulitis of external auditory canal +C0339753|T047|HT|H60.1|ICD10CM|Cellulitis of external ear|Cellulitis of external ear +C0339753|T047|AB|H60.1|ICD10CM|Cellulitis of external ear|Cellulitis of external ear +C0339753|T047|PT|H60.1|ICD10|Cellulitis of external ear|Cellulitis of external ear +C2881519|T047|AB|H60.10|ICD10CM|Cellulitis of external ear, unspecified ear|Cellulitis of external ear, unspecified ear +C2881519|T047|PT|H60.10|ICD10CM|Cellulitis of external ear, unspecified ear|Cellulitis of external ear, unspecified ear +C2881520|T047|PT|H60.11|ICD10CM|Cellulitis of right external ear|Cellulitis of right external ear +C2881520|T047|AB|H60.11|ICD10CM|Cellulitis of right external ear|Cellulitis of right external ear +C2881521|T047|PT|H60.12|ICD10CM|Cellulitis of left external ear|Cellulitis of left external ear +C2881521|T047|AB|H60.12|ICD10CM|Cellulitis of left external ear|Cellulitis of left external ear +C2881522|T047|AB|H60.13|ICD10CM|Cellulitis of external ear, bilateral|Cellulitis of external ear, bilateral +C2881522|T047|PT|H60.13|ICD10CM|Cellulitis of external ear, bilateral|Cellulitis of external ear, bilateral +C0155395|T047|PT|H60.2|ICD10|Malignant otitis externa|Malignant otitis externa +C0155395|T047|HT|H60.2|ICD10CM|Malignant otitis externa|Malignant otitis externa +C0155395|T047|AB|H60.2|ICD10CM|Malignant otitis externa|Malignant otitis externa +C0155395|T047|AB|H60.20|ICD10CM|Malignant otitis externa, unspecified ear|Malignant otitis externa, unspecified ear +C0155395|T047|PT|H60.20|ICD10CM|Malignant otitis externa, unspecified ear|Malignant otitis externa, unspecified ear +C2881523|T047|AB|H60.21|ICD10CM|Malignant otitis externa, right ear|Malignant otitis externa, right ear +C2881523|T047|PT|H60.21|ICD10CM|Malignant otitis externa, right ear|Malignant otitis externa, right ear +C2881524|T047|AB|H60.22|ICD10CM|Malignant otitis externa, left ear|Malignant otitis externa, left ear +C2881524|T047|PT|H60.22|ICD10CM|Malignant otitis externa, left ear|Malignant otitis externa, left ear +C2881525|T047|AB|H60.23|ICD10CM|Malignant otitis externa, bilateral|Malignant otitis externa, bilateral +C2881525|T047|PT|H60.23|ICD10CM|Malignant otitis externa, bilateral|Malignant otitis externa, bilateral +C0477434|T047|PT|H60.3|ICD10|Other infective otitis externa|Other infective otitis externa +C0477434|T047|HT|H60.3|ICD10CM|Other infective otitis externa|Other infective otitis externa +C0477434|T047|AB|H60.3|ICD10CM|Other infective otitis externa|Other infective otitis externa +C0271417|T047|HT|H60.31|ICD10CM|Diffuse otitis externa|Diffuse otitis externa +C0271417|T047|AB|H60.31|ICD10CM|Diffuse otitis externa|Diffuse otitis externa +C2881526|T047|AB|H60.311|ICD10CM|Diffuse otitis externa, right ear|Diffuse otitis externa, right ear +C2881526|T047|PT|H60.311|ICD10CM|Diffuse otitis externa, right ear|Diffuse otitis externa, right ear +C2881527|T047|AB|H60.312|ICD10CM|Diffuse otitis externa, left ear|Diffuse otitis externa, left ear +C2881527|T047|PT|H60.312|ICD10CM|Diffuse otitis externa, left ear|Diffuse otitis externa, left ear +C2881528|T047|AB|H60.313|ICD10CM|Diffuse otitis externa, bilateral|Diffuse otitis externa, bilateral +C2881528|T047|PT|H60.313|ICD10CM|Diffuse otitis externa, bilateral|Diffuse otitis externa, bilateral +C0271417|T047|AB|H60.319|ICD10CM|Diffuse otitis externa, unspecified ear|Diffuse otitis externa, unspecified ear +C0271417|T047|PT|H60.319|ICD10CM|Diffuse otitis externa, unspecified ear|Diffuse otitis externa, unspecified ear +C0271418|T046|HT|H60.32|ICD10CM|Hemorrhagic otitis externa|Hemorrhagic otitis externa +C0271418|T046|AB|H60.32|ICD10CM|Hemorrhagic otitis externa|Hemorrhagic otitis externa +C2881529|T046|AB|H60.321|ICD10CM|Hemorrhagic otitis externa, right ear|Hemorrhagic otitis externa, right ear +C2881529|T046|PT|H60.321|ICD10CM|Hemorrhagic otitis externa, right ear|Hemorrhagic otitis externa, right ear +C2881530|T046|AB|H60.322|ICD10CM|Hemorrhagic otitis externa, left ear|Hemorrhagic otitis externa, left ear +C2881530|T046|PT|H60.322|ICD10CM|Hemorrhagic otitis externa, left ear|Hemorrhagic otitis externa, left ear +C2881531|T046|AB|H60.323|ICD10CM|Hemorrhagic otitis externa, bilateral|Hemorrhagic otitis externa, bilateral +C2881531|T046|PT|H60.323|ICD10CM|Hemorrhagic otitis externa, bilateral|Hemorrhagic otitis externa, bilateral +C2881532|T046|AB|H60.329|ICD10CM|Hemorrhagic otitis externa, unspecified ear|Hemorrhagic otitis externa, unspecified ear +C2881532|T046|PT|H60.329|ICD10CM|Hemorrhagic otitis externa, unspecified ear|Hemorrhagic otitis externa, unspecified ear +C0339759|T047|AB|H60.33|ICD10CM|Swimmer's ear|Swimmer's ear +C0339759|T047|HT|H60.33|ICD10CM|Swimmer's ear|Swimmer's ear +C2881533|T047|AB|H60.331|ICD10CM|Swimmer's ear, right ear|Swimmer's ear, right ear +C2881533|T047|PT|H60.331|ICD10CM|Swimmer's ear, right ear|Swimmer's ear, right ear +C2881534|T047|AB|H60.332|ICD10CM|Swimmer's ear, left ear|Swimmer's ear, left ear +C2881534|T047|PT|H60.332|ICD10CM|Swimmer's ear, left ear|Swimmer's ear, left ear +C2881535|T047|AB|H60.333|ICD10CM|Swimmer's ear, bilateral|Swimmer's ear, bilateral +C2881535|T047|PT|H60.333|ICD10CM|Swimmer's ear, bilateral|Swimmer's ear, bilateral +C0339759|T047|AB|H60.339|ICD10CM|Swimmer's ear, unspecified ear|Swimmer's ear, unspecified ear +C0339759|T047|PT|H60.339|ICD10CM|Swimmer's ear, unspecified ear|Swimmer's ear, unspecified ear +C0477434|T047|HT|H60.39|ICD10CM|Other infective otitis externa|Other infective otitis externa +C0477434|T047|AB|H60.39|ICD10CM|Other infective otitis externa|Other infective otitis externa +C2881536|T047|AB|H60.391|ICD10CM|Other infective otitis externa, right ear|Other infective otitis externa, right ear +C2881536|T047|PT|H60.391|ICD10CM|Other infective otitis externa, right ear|Other infective otitis externa, right ear +C2881537|T047|AB|H60.392|ICD10CM|Other infective otitis externa, left ear|Other infective otitis externa, left ear +C2881537|T047|PT|H60.392|ICD10CM|Other infective otitis externa, left ear|Other infective otitis externa, left ear +C2881538|T047|AB|H60.393|ICD10CM|Other infective otitis externa, bilateral|Other infective otitis externa, bilateral +C2881538|T047|PT|H60.393|ICD10CM|Other infective otitis externa, bilateral|Other infective otitis externa, bilateral +C0477434|T047|AB|H60.399|ICD10CM|Other infective otitis externa, unspecified ear|Other infective otitis externa, unspecified ear +C0477434|T047|PT|H60.399|ICD10CM|Other infective otitis externa, unspecified ear|Other infective otitis externa, unspecified ear +C0155398|T047|HT|H60.4|ICD10CM|Cholesteatoma of external ear|Cholesteatoma of external ear +C0155398|T047|AB|H60.4|ICD10CM|Cholesteatoma of external ear|Cholesteatoma of external ear +C0155398|T047|PT|H60.4|ICD10|Cholesteatoma of external ear|Cholesteatoma of external ear +C0334020|T047|ET|H60.4|ICD10CM|Keratosis obturans of external ear (canal)|Keratosis obturans of external ear (canal) +C0155398|T047|AB|H60.40|ICD10CM|Cholesteatoma of external ear, unspecified ear|Cholesteatoma of external ear, unspecified ear +C0155398|T047|PT|H60.40|ICD10CM|Cholesteatoma of external ear, unspecified ear|Cholesteatoma of external ear, unspecified ear +C2881539|T047|PT|H60.41|ICD10CM|Cholesteatoma of right external ear|Cholesteatoma of right external ear +C2881539|T047|AB|H60.41|ICD10CM|Cholesteatoma of right external ear|Cholesteatoma of right external ear +C2881540|T047|PT|H60.42|ICD10CM|Cholesteatoma of left external ear|Cholesteatoma of left external ear +C2881540|T047|AB|H60.42|ICD10CM|Cholesteatoma of left external ear|Cholesteatoma of left external ear +C2881541|T047|AB|H60.43|ICD10CM|Cholesteatoma of external ear, bilateral|Cholesteatoma of external ear, bilateral +C2881541|T047|PT|H60.43|ICD10CM|Cholesteatoma of external ear, bilateral|Cholesteatoma of external ear, bilateral +C0395821|T047|HT|H60.5|ICD10CM|Acute noninfective otitis externa|Acute noninfective otitis externa +C0395821|T047|AB|H60.5|ICD10CM|Acute noninfective otitis externa|Acute noninfective otitis externa +C0395821|T047|PT|H60.5|ICD10|Acute otitis externa, noninfective|Acute otitis externa, noninfective +C0149948|T047|ET|H60.50|ICD10CM|Acute otitis externa NOS|Acute otitis externa NOS +C2881545|T047|AB|H60.50|ICD10CM|Unspecified acute noninfective otitis externa|Unspecified acute noninfective otitis externa +C2881545|T047|HT|H60.50|ICD10CM|Unspecified acute noninfective otitis externa|Unspecified acute noninfective otitis externa +C2881542|T047|AB|H60.501|ICD10CM|Unspecified acute noninfective otitis externa, right ear|Unspecified acute noninfective otitis externa, right ear +C2881542|T047|PT|H60.501|ICD10CM|Unspecified acute noninfective otitis externa, right ear|Unspecified acute noninfective otitis externa, right ear +C2881543|T047|AB|H60.502|ICD10CM|Unspecified acute noninfective otitis externa, left ear|Unspecified acute noninfective otitis externa, left ear +C2881543|T047|PT|H60.502|ICD10CM|Unspecified acute noninfective otitis externa, left ear|Unspecified acute noninfective otitis externa, left ear +C2881544|T047|AB|H60.503|ICD10CM|Unspecified acute noninfective otitis externa, bilateral|Unspecified acute noninfective otitis externa, bilateral +C2881544|T047|PT|H60.503|ICD10CM|Unspecified acute noninfective otitis externa, bilateral|Unspecified acute noninfective otitis externa, bilateral +C2881545|T047|AB|H60.509|ICD10CM|Unsp acute noninfective otitis externa, unspecified ear|Unsp acute noninfective otitis externa, unspecified ear +C2881545|T047|PT|H60.509|ICD10CM|Unspecified acute noninfective otitis externa, unspecified ear|Unspecified acute noninfective otitis externa, unspecified ear +C0271421|T047|HT|H60.51|ICD10CM|Acute actinic otitis externa|Acute actinic otitis externa +C0271421|T047|AB|H60.51|ICD10CM|Acute actinic otitis externa|Acute actinic otitis externa +C2881546|T047|AB|H60.511|ICD10CM|Acute actinic otitis externa, right ear|Acute actinic otitis externa, right ear +C2881546|T047|PT|H60.511|ICD10CM|Acute actinic otitis externa, right ear|Acute actinic otitis externa, right ear +C2881547|T047|AB|H60.512|ICD10CM|Acute actinic otitis externa, left ear|Acute actinic otitis externa, left ear +C2881547|T047|PT|H60.512|ICD10CM|Acute actinic otitis externa, left ear|Acute actinic otitis externa, left ear +C2881548|T047|AB|H60.513|ICD10CM|Acute actinic otitis externa, bilateral|Acute actinic otitis externa, bilateral +C2881548|T047|PT|H60.513|ICD10CM|Acute actinic otitis externa, bilateral|Acute actinic otitis externa, bilateral +C0271421|T047|AB|H60.519|ICD10CM|Acute actinic otitis externa, unspecified ear|Acute actinic otitis externa, unspecified ear +C0271421|T047|PT|H60.519|ICD10CM|Acute actinic otitis externa, unspecified ear|Acute actinic otitis externa, unspecified ear +C0271422|T047|HT|H60.52|ICD10CM|Acute chemical otitis externa|Acute chemical otitis externa +C0271422|T047|AB|H60.52|ICD10CM|Acute chemical otitis externa|Acute chemical otitis externa +C2881549|T047|AB|H60.521|ICD10CM|Acute chemical otitis externa, right ear|Acute chemical otitis externa, right ear +C2881549|T047|PT|H60.521|ICD10CM|Acute chemical otitis externa, right ear|Acute chemical otitis externa, right ear +C2881550|T047|AB|H60.522|ICD10CM|Acute chemical otitis externa, left ear|Acute chemical otitis externa, left ear +C2881550|T047|PT|H60.522|ICD10CM|Acute chemical otitis externa, left ear|Acute chemical otitis externa, left ear +C2881551|T047|AB|H60.523|ICD10CM|Acute chemical otitis externa, bilateral|Acute chemical otitis externa, bilateral +C2881551|T047|PT|H60.523|ICD10CM|Acute chemical otitis externa, bilateral|Acute chemical otitis externa, bilateral +C0271422|T047|AB|H60.529|ICD10CM|Acute chemical otitis externa, unspecified ear|Acute chemical otitis externa, unspecified ear +C0271422|T047|PT|H60.529|ICD10CM|Acute chemical otitis externa, unspecified ear|Acute chemical otitis externa, unspecified ear +C0271423|T047|HT|H60.53|ICD10CM|Acute contact otitis externa|Acute contact otitis externa +C0271423|T047|AB|H60.53|ICD10CM|Acute contact otitis externa|Acute contact otitis externa +C2881552|T047|AB|H60.531|ICD10CM|Acute contact otitis externa, right ear|Acute contact otitis externa, right ear +C2881552|T047|PT|H60.531|ICD10CM|Acute contact otitis externa, right ear|Acute contact otitis externa, right ear +C2881553|T047|AB|H60.532|ICD10CM|Acute contact otitis externa, left ear|Acute contact otitis externa, left ear +C2881553|T047|PT|H60.532|ICD10CM|Acute contact otitis externa, left ear|Acute contact otitis externa, left ear +C2881554|T047|AB|H60.533|ICD10CM|Acute contact otitis externa, bilateral|Acute contact otitis externa, bilateral +C2881554|T047|PT|H60.533|ICD10CM|Acute contact otitis externa, bilateral|Acute contact otitis externa, bilateral +C0271423|T047|AB|H60.539|ICD10CM|Acute contact otitis externa, unspecified ear|Acute contact otitis externa, unspecified ear +C0271423|T047|PT|H60.539|ICD10CM|Acute contact otitis externa, unspecified ear|Acute contact otitis externa, unspecified ear +C0271424|T047|HT|H60.54|ICD10CM|Acute eczematoid otitis externa|Acute eczematoid otitis externa +C0271424|T047|AB|H60.54|ICD10CM|Acute eczematoid otitis externa|Acute eczematoid otitis externa +C2881555|T047|AB|H60.541|ICD10CM|Acute eczematoid otitis externa, right ear|Acute eczematoid otitis externa, right ear +C2881555|T047|PT|H60.541|ICD10CM|Acute eczematoid otitis externa, right ear|Acute eczematoid otitis externa, right ear +C2881556|T047|AB|H60.542|ICD10CM|Acute eczematoid otitis externa, left ear|Acute eczematoid otitis externa, left ear +C2881556|T047|PT|H60.542|ICD10CM|Acute eczematoid otitis externa, left ear|Acute eczematoid otitis externa, left ear +C2881557|T047|AB|H60.543|ICD10CM|Acute eczematoid otitis externa, bilateral|Acute eczematoid otitis externa, bilateral +C2881557|T047|PT|H60.543|ICD10CM|Acute eczematoid otitis externa, bilateral|Acute eczematoid otitis externa, bilateral +C0271424|T047|AB|H60.549|ICD10CM|Acute eczematoid otitis externa, unspecified ear|Acute eczematoid otitis externa, unspecified ear +C0271424|T047|PT|H60.549|ICD10CM|Acute eczematoid otitis externa, unspecified ear|Acute eczematoid otitis externa, unspecified ear +C2242828|T047|HT|H60.55|ICD10CM|Acute reactive otitis externa|Acute reactive otitis externa +C2242828|T047|AB|H60.55|ICD10CM|Acute reactive otitis externa|Acute reactive otitis externa +C2881558|T047|AB|H60.551|ICD10CM|Acute reactive otitis externa, right ear|Acute reactive otitis externa, right ear +C2881558|T047|PT|H60.551|ICD10CM|Acute reactive otitis externa, right ear|Acute reactive otitis externa, right ear +C2881559|T047|AB|H60.552|ICD10CM|Acute reactive otitis externa, left ear|Acute reactive otitis externa, left ear +C2881559|T047|PT|H60.552|ICD10CM|Acute reactive otitis externa, left ear|Acute reactive otitis externa, left ear +C2881560|T047|AB|H60.553|ICD10CM|Acute reactive otitis externa, bilateral|Acute reactive otitis externa, bilateral +C2881560|T047|PT|H60.553|ICD10CM|Acute reactive otitis externa, bilateral|Acute reactive otitis externa, bilateral +C2881561|T047|AB|H60.559|ICD10CM|Acute reactive otitis externa, unspecified ear|Acute reactive otitis externa, unspecified ear +C2881561|T047|PT|H60.559|ICD10CM|Acute reactive otitis externa, unspecified ear|Acute reactive otitis externa, unspecified ear +C2881565|T047|AB|H60.59|ICD10CM|Other noninfective acute otitis externa|Other noninfective acute otitis externa +C2881565|T047|HT|H60.59|ICD10CM|Other noninfective acute otitis externa|Other noninfective acute otitis externa +C2881562|T047|AB|H60.591|ICD10CM|Other noninfective acute otitis externa, right ear|Other noninfective acute otitis externa, right ear +C2881562|T047|PT|H60.591|ICD10CM|Other noninfective acute otitis externa, right ear|Other noninfective acute otitis externa, right ear +C2881563|T047|AB|H60.592|ICD10CM|Other noninfective acute otitis externa, left ear|Other noninfective acute otitis externa, left ear +C2881563|T047|PT|H60.592|ICD10CM|Other noninfective acute otitis externa, left ear|Other noninfective acute otitis externa, left ear +C2881564|T047|AB|H60.593|ICD10CM|Other noninfective acute otitis externa, bilateral|Other noninfective acute otitis externa, bilateral +C2881564|T047|PT|H60.593|ICD10CM|Other noninfective acute otitis externa, bilateral|Other noninfective acute otitis externa, bilateral +C2881565|T047|AB|H60.599|ICD10CM|Other noninfective acute otitis externa, unspecified ear|Other noninfective acute otitis externa, unspecified ear +C2881565|T047|PT|H60.599|ICD10CM|Other noninfective acute otitis externa, unspecified ear|Other noninfective acute otitis externa, unspecified ear +C2881566|T047|AB|H60.6|ICD10CM|Unspecified chronic otitis externa|Unspecified chronic otitis externa +C2881566|T047|HT|H60.6|ICD10CM|Unspecified chronic otitis externa|Unspecified chronic otitis externa +C2881566|T047|AB|H60.60|ICD10CM|Unspecified chronic otitis externa, unspecified ear|Unspecified chronic otitis externa, unspecified ear +C2881566|T047|PT|H60.60|ICD10CM|Unspecified chronic otitis externa, unspecified ear|Unspecified chronic otitis externa, unspecified ear +C2881567|T047|AB|H60.61|ICD10CM|Unspecified chronic otitis externa, right ear|Unspecified chronic otitis externa, right ear +C2881567|T047|PT|H60.61|ICD10CM|Unspecified chronic otitis externa, right ear|Unspecified chronic otitis externa, right ear +C2881568|T047|AB|H60.62|ICD10CM|Unspecified chronic otitis externa, left ear|Unspecified chronic otitis externa, left ear +C2881568|T047|PT|H60.62|ICD10CM|Unspecified chronic otitis externa, left ear|Unspecified chronic otitis externa, left ear +C2881569|T047|AB|H60.63|ICD10CM|Unspecified chronic otitis externa, bilateral|Unspecified chronic otitis externa, bilateral +C2881569|T047|PT|H60.63|ICD10CM|Unspecified chronic otitis externa, bilateral|Unspecified chronic otitis externa, bilateral +C0029695|T047|HT|H60.8|ICD10CM|Other otitis externa|Other otitis externa +C0029695|T047|AB|H60.8|ICD10CM|Other otitis externa|Other otitis externa +C0029695|T047|PT|H60.8|ICD10|Other otitis externa|Other otitis externa +C0029695|T047|HT|H60.8X|ICD10CM|Other otitis externa|Other otitis externa +C0029695|T047|AB|H60.8X|ICD10CM|Other otitis externa|Other otitis externa +C2881570|T047|AB|H60.8X1|ICD10CM|Other otitis externa, right ear|Other otitis externa, right ear +C2881570|T047|PT|H60.8X1|ICD10CM|Other otitis externa, right ear|Other otitis externa, right ear +C2881571|T047|AB|H60.8X2|ICD10CM|Other otitis externa, left ear|Other otitis externa, left ear +C2881571|T047|PT|H60.8X2|ICD10CM|Other otitis externa, left ear|Other otitis externa, left ear +C2881572|T047|AB|H60.8X3|ICD10CM|Other otitis externa, bilateral|Other otitis externa, bilateral +C2881572|T047|PT|H60.8X3|ICD10CM|Other otitis externa, bilateral|Other otitis externa, bilateral +C0029695|T047|AB|H60.8X9|ICD10CM|Other otitis externa, unspecified ear|Other otitis externa, unspecified ear +C0029695|T047|PT|H60.8X9|ICD10CM|Other otitis externa, unspecified ear|Other otitis externa, unspecified ear +C0029878|T047|PT|H60.9|ICD10|Otitis externa, unspecified|Otitis externa, unspecified +C0029878|T047|AB|H60.9|ICD10CM|Unspecified otitis externa|Unspecified otitis externa +C0029878|T047|HT|H60.9|ICD10CM|Unspecified otitis externa|Unspecified otitis externa +C0029878|T047|AB|H60.90|ICD10CM|Unspecified otitis externa, unspecified ear|Unspecified otitis externa, unspecified ear +C0029878|T047|PT|H60.90|ICD10CM|Unspecified otitis externa, unspecified ear|Unspecified otitis externa, unspecified ear +C2015823|T047|AB|H60.91|ICD10CM|Unspecified otitis externa, right ear|Unspecified otitis externa, right ear +C2015823|T047|PT|H60.91|ICD10CM|Unspecified otitis externa, right ear|Unspecified otitis externa, right ear +C2015822|T047|AB|H60.92|ICD10CM|Unspecified otitis externa, left ear|Unspecified otitis externa, left ear +C2015822|T047|PT|H60.92|ICD10CM|Unspecified otitis externa, left ear|Unspecified otitis externa, left ear +C0856680|T047|AB|H60.93|ICD10CM|Unspecified otitis externa, bilateral|Unspecified otitis externa, bilateral +C0856680|T047|PT|H60.93|ICD10CM|Unspecified otitis externa, bilateral|Unspecified otitis externa, bilateral +C0155410|T047|HT|H61|ICD10|Other disorders of external ear|Other disorders of external ear +C0155410|T047|HT|H61|ICD10CM|Other disorders of external ear|Other disorders of external ear +C0155410|T047|AB|H61|ICD10CM|Other disorders of external ear|Other disorders of external ear +C2881573|T047|AB|H61.0|ICD10CM|Chondritis and perichondritis of external ear|Chondritis and perichondritis of external ear +C2881573|T047|HT|H61.0|ICD10CM|Chondritis and perichondritis of external ear|Chondritis and perichondritis of external ear +C0271415|T047|ET|H61.0|ICD10CM|Chondrodermatitis nodularis chronica helicis|Chondrodermatitis nodularis chronica helicis +C0155389|T047|ET|H61.0|ICD10CM|Perichondritis of auricle|Perichondritis of auricle +C0155389|T047|PT|H61.0|ICD10|Perichondritis of external ear|Perichondritis of external ear +C0155389|T047|ET|H61.0|ICD10CM|Perichondritis of pinna|Perichondritis of pinna +C0155389|T047|AB|H61.00|ICD10CM|Unspecified perichondritis of external ear|Unspecified perichondritis of external ear +C0155389|T047|HT|H61.00|ICD10CM|Unspecified perichondritis of external ear|Unspecified perichondritis of external ear +C2881574|T047|AB|H61.001|ICD10CM|Unspecified perichondritis of right external ear|Unspecified perichondritis of right external ear +C2881574|T047|PT|H61.001|ICD10CM|Unspecified perichondritis of right external ear|Unspecified perichondritis of right external ear +C2881575|T047|AB|H61.002|ICD10CM|Unspecified perichondritis of left external ear|Unspecified perichondritis of left external ear +C2881575|T047|PT|H61.002|ICD10CM|Unspecified perichondritis of left external ear|Unspecified perichondritis of left external ear +C2881576|T047|AB|H61.003|ICD10CM|Unspecified perichondritis of external ear, bilateral|Unspecified perichondritis of external ear, bilateral +C2881576|T047|PT|H61.003|ICD10CM|Unspecified perichondritis of external ear, bilateral|Unspecified perichondritis of external ear, bilateral +C0155389|T047|AB|H61.009|ICD10CM|Unspecified perichondritis of external ear, unspecified ear|Unspecified perichondritis of external ear, unspecified ear +C0155389|T047|PT|H61.009|ICD10CM|Unspecified perichondritis of external ear, unspecified ear|Unspecified perichondritis of external ear, unspecified ear +C2881577|T047|AB|H61.01|ICD10CM|Acute perichondritis of external ear|Acute perichondritis of external ear +C2881577|T047|HT|H61.01|ICD10CM|Acute perichondritis of external ear|Acute perichondritis of external ear +C2881578|T047|PT|H61.011|ICD10CM|Acute perichondritis of right external ear|Acute perichondritis of right external ear +C2881578|T047|AB|H61.011|ICD10CM|Acute perichondritis of right external ear|Acute perichondritis of right external ear +C2881579|T047|PT|H61.012|ICD10CM|Acute perichondritis of left external ear|Acute perichondritis of left external ear +C2881579|T047|AB|H61.012|ICD10CM|Acute perichondritis of left external ear|Acute perichondritis of left external ear +C2881580|T047|AB|H61.013|ICD10CM|Acute perichondritis of external ear, bilateral|Acute perichondritis of external ear, bilateral +C2881580|T047|PT|H61.013|ICD10CM|Acute perichondritis of external ear, bilateral|Acute perichondritis of external ear, bilateral +C2881577|T047|AB|H61.019|ICD10CM|Acute perichondritis of external ear, unspecified ear|Acute perichondritis of external ear, unspecified ear +C2881577|T047|PT|H61.019|ICD10CM|Acute perichondritis of external ear, unspecified ear|Acute perichondritis of external ear, unspecified ear +C2881581|T047|AB|H61.02|ICD10CM|Chronic perichondritis of external ear|Chronic perichondritis of external ear +C2881581|T047|HT|H61.02|ICD10CM|Chronic perichondritis of external ear|Chronic perichondritis of external ear +C2881582|T047|AB|H61.021|ICD10CM|Chronic perichondritis of right external ear|Chronic perichondritis of right external ear +C2881582|T047|PT|H61.021|ICD10CM|Chronic perichondritis of right external ear|Chronic perichondritis of right external ear +C2881583|T047|AB|H61.022|ICD10CM|Chronic perichondritis of left external ear|Chronic perichondritis of left external ear +C2881583|T047|PT|H61.022|ICD10CM|Chronic perichondritis of left external ear|Chronic perichondritis of left external ear +C2881584|T047|AB|H61.023|ICD10CM|Chronic perichondritis of external ear, bilateral|Chronic perichondritis of external ear, bilateral +C2881584|T047|PT|H61.023|ICD10CM|Chronic perichondritis of external ear, bilateral|Chronic perichondritis of external ear, bilateral +C2881581|T047|AB|H61.029|ICD10CM|Chronic perichondritis of external ear, unspecified ear|Chronic perichondritis of external ear, unspecified ear +C2881581|T047|PT|H61.029|ICD10CM|Chronic perichondritis of external ear, unspecified ear|Chronic perichondritis of external ear, unspecified ear +C0741305|T046|ET|H61.03|ICD10CM|Chondritis of auricle|Chondritis of auricle +C2881588|T047|HT|H61.03|ICD10CM|Chondritis of external ear|Chondritis of external ear +C2881588|T047|AB|H61.03|ICD10CM|Chondritis of external ear|Chondritis of external ear +C0741305|T046|ET|H61.03|ICD10CM|Chondritis of pinna|Chondritis of pinna +C2881585|T047|PT|H61.031|ICD10CM|Chondritis of right external ear|Chondritis of right external ear +C2881585|T047|AB|H61.031|ICD10CM|Chondritis of right external ear|Chondritis of right external ear +C2881586|T047|PT|H61.032|ICD10CM|Chondritis of left external ear|Chondritis of left external ear +C2881586|T047|AB|H61.032|ICD10CM|Chondritis of left external ear|Chondritis of left external ear +C2881587|T047|AB|H61.033|ICD10CM|Chondritis of external ear, bilateral|Chondritis of external ear, bilateral +C2881587|T047|PT|H61.033|ICD10CM|Chondritis of external ear, bilateral|Chondritis of external ear, bilateral +C2881588|T047|AB|H61.039|ICD10CM|Chondritis of external ear, unspecified ear|Chondritis of external ear, unspecified ear +C2881588|T047|PT|H61.039|ICD10CM|Chondritis of external ear, unspecified ear|Chondritis of external ear, unspecified ear +C0494553|T047|HT|H61.1|ICD10CM|Noninfective disorders of pinna|Noninfective disorders of pinna +C0494553|T047|AB|H61.1|ICD10CM|Noninfective disorders of pinna|Noninfective disorders of pinna +C0494553|T047|PT|H61.1|ICD10|Noninfective disorders of pinna|Noninfective disorders of pinna +C0155402|T047|ET|H61.10|ICD10CM|Disorder of pinna NOS|Disorder of pinna NOS +C0494553|T047|AB|H61.10|ICD10CM|Unspecified noninfective disorders of pinna|Unspecified noninfective disorders of pinna +C0494553|T047|HT|H61.10|ICD10CM|Unspecified noninfective disorders of pinna|Unspecified noninfective disorders of pinna +C2881597|T047|AB|H61.101|ICD10CM|Unspecified noninfective disorders of pinna, right ear|Unspecified noninfective disorders of pinna, right ear +C2881597|T047|PT|H61.101|ICD10CM|Unspecified noninfective disorders of pinna, right ear|Unspecified noninfective disorders of pinna, right ear +C2881598|T047|AB|H61.102|ICD10CM|Unspecified noninfective disorders of pinna, left ear|Unspecified noninfective disorders of pinna, left ear +C2881598|T047|PT|H61.102|ICD10CM|Unspecified noninfective disorders of pinna, left ear|Unspecified noninfective disorders of pinna, left ear +C2881599|T047|AB|H61.103|ICD10CM|Unspecified noninfective disorders of pinna, bilateral|Unspecified noninfective disorders of pinna, bilateral +C2881599|T047|PT|H61.103|ICD10CM|Unspecified noninfective disorders of pinna, bilateral|Unspecified noninfective disorders of pinna, bilateral +C0494553|T047|AB|H61.109|ICD10CM|Unspecified noninfective disorders of pinna, unspecified ear|Unspecified noninfective disorders of pinna, unspecified ear +C0494553|T047|PT|H61.109|ICD10CM|Unspecified noninfective disorders of pinna, unspecified ear|Unspecified noninfective disorders of pinna, unspecified ear +C0271414|T020|ET|H61.11|ICD10CM|Acquired deformity of auricle|Acquired deformity of auricle +C0271414|T020|HT|H61.11|ICD10CM|Acquired deformity of pinna|Acquired deformity of pinna +C0271414|T020|AB|H61.11|ICD10CM|Acquired deformity of pinna|Acquired deformity of pinna +C2881589|T020|AB|H61.111|ICD10CM|Acquired deformity of pinna, right ear|Acquired deformity of pinna, right ear +C2881589|T020|PT|H61.111|ICD10CM|Acquired deformity of pinna, right ear|Acquired deformity of pinna, right ear +C2881590|T020|AB|H61.112|ICD10CM|Acquired deformity of pinna, left ear|Acquired deformity of pinna, left ear +C2881590|T020|PT|H61.112|ICD10CM|Acquired deformity of pinna, left ear|Acquired deformity of pinna, left ear +C2881591|T020|AB|H61.113|ICD10CM|Acquired deformity of pinna, bilateral|Acquired deformity of pinna, bilateral +C2881591|T020|PT|H61.113|ICD10CM|Acquired deformity of pinna, bilateral|Acquired deformity of pinna, bilateral +C2881592|T020|AB|H61.119|ICD10CM|Acquired deformity of pinna, unspecified ear|Acquired deformity of pinna, unspecified ear +C2881592|T020|PT|H61.119|ICD10CM|Acquired deformity of pinna, unspecified ear|Acquired deformity of pinna, unspecified ear +C0271413|T046|ET|H61.12|ICD10CM|Hematoma of auricle|Hematoma of auricle +C0271413|T046|HT|H61.12|ICD10CM|Hematoma of pinna|Hematoma of pinna +C0271413|T046|AB|H61.12|ICD10CM|Hematoma of pinna|Hematoma of pinna +C2881593|T046|AB|H61.121|ICD10CM|Hematoma of pinna, right ear|Hematoma of pinna, right ear +C2881593|T046|PT|H61.121|ICD10CM|Hematoma of pinna, right ear|Hematoma of pinna, right ear +C2881594|T046|AB|H61.122|ICD10CM|Hematoma of pinna, left ear|Hematoma of pinna, left ear +C2881594|T046|PT|H61.122|ICD10CM|Hematoma of pinna, left ear|Hematoma of pinna, left ear +C2881595|T047|AB|H61.123|ICD10CM|Hematoma of pinna, bilateral|Hematoma of pinna, bilateral +C2881595|T047|PT|H61.123|ICD10CM|Hematoma of pinna, bilateral|Hematoma of pinna, bilateral +C0271413|T046|AB|H61.129|ICD10CM|Hematoma of pinna, unspecified ear|Hematoma of pinna, unspecified ear +C0271413|T046|PT|H61.129|ICD10CM|Hematoma of pinna, unspecified ear|Hematoma of pinna, unspecified ear +C0155404|T047|AB|H61.19|ICD10CM|Other noninfective disorders of pinna|Other noninfective disorders of pinna +C0155404|T047|HT|H61.19|ICD10CM|Other noninfective disorders of pinna|Other noninfective disorders of pinna +C2881597|T047|AB|H61.191|ICD10CM|Noninfective disorders of pinna, right ear|Noninfective disorders of pinna, right ear +C2881597|T047|PT|H61.191|ICD10CM|Noninfective disorders of pinna, right ear|Noninfective disorders of pinna, right ear +C2881598|T047|AB|H61.192|ICD10CM|Noninfective disorders of pinna, left ear|Noninfective disorders of pinna, left ear +C2881598|T047|PT|H61.192|ICD10CM|Noninfective disorders of pinna, left ear|Noninfective disorders of pinna, left ear +C2881599|T047|AB|H61.193|ICD10CM|Noninfective disorders of pinna, bilateral|Noninfective disorders of pinna, bilateral +C2881599|T047|PT|H61.193|ICD10CM|Noninfective disorders of pinna, bilateral|Noninfective disorders of pinna, bilateral +C0494553|T047|AB|H61.199|ICD10CM|Noninfective disorders of pinna, unspecified ear|Noninfective disorders of pinna, unspecified ear +C0494553|T047|PT|H61.199|ICD10CM|Noninfective disorders of pinna, unspecified ear|Noninfective disorders of pinna, unspecified ear +C0021092|T033|HT|H61.2|ICD10CM|Impacted cerumen|Impacted cerumen +C0021092|T033|AB|H61.2|ICD10CM|Impacted cerumen|Impacted cerumen +C0021092|T033|PT|H61.2|ICD10|Impacted cerumen|Impacted cerumen +C0423490|T033|ET|H61.2|ICD10CM|Wax in ear|Wax in ear +C2881600|T033|AB|H61.20|ICD10CM|Impacted cerumen, unspecified ear|Impacted cerumen, unspecified ear +C2881600|T033|PT|H61.20|ICD10CM|Impacted cerumen, unspecified ear|Impacted cerumen, unspecified ear +C2881601|T033|AB|H61.21|ICD10CM|Impacted cerumen, right ear|Impacted cerumen, right ear +C2881601|T033|PT|H61.21|ICD10CM|Impacted cerumen, right ear|Impacted cerumen, right ear +C2881602|T033|AB|H61.22|ICD10CM|Impacted cerumen, left ear|Impacted cerumen, left ear +C2881602|T033|PT|H61.22|ICD10CM|Impacted cerumen, left ear|Impacted cerumen, left ear +C2881603|T033|AB|H61.23|ICD10CM|Impacted cerumen, bilateral|Impacted cerumen, bilateral +C2881603|T033|PT|H61.23|ICD10CM|Impacted cerumen, bilateral|Impacted cerumen, bilateral +C0155405|T047|PT|H61.3|ICD10|Acquired stenosis of external ear canal|Acquired stenosis of external ear canal +C0155405|T047|HT|H61.3|ICD10CM|Acquired stenosis of external ear canal|Acquired stenosis of external ear canal +C0155405|T047|AB|H61.3|ICD10CM|Acquired stenosis of external ear canal|Acquired stenosis of external ear canal +C0271426|T047|ET|H61.3|ICD10CM|Collapse of external ear canal|Collapse of external ear canal +C0155405|T047|AB|H61.30|ICD10CM|Acquired stenosis of external ear canal, unspecified|Acquired stenosis of external ear canal, unspecified +C0155405|T047|HT|H61.30|ICD10CM|Acquired stenosis of external ear canal, unspecified|Acquired stenosis of external ear canal, unspecified +C2881604|T020|AB|H61.301|ICD10CM|Acquired stenosis of right external ear canal, unspecified|Acquired stenosis of right external ear canal, unspecified +C2881604|T020|PT|H61.301|ICD10CM|Acquired stenosis of right external ear canal, unspecified|Acquired stenosis of right external ear canal, unspecified +C2881605|T020|AB|H61.302|ICD10CM|Acquired stenosis of left external ear canal, unspecified|Acquired stenosis of left external ear canal, unspecified +C2881605|T020|PT|H61.302|ICD10CM|Acquired stenosis of left external ear canal, unspecified|Acquired stenosis of left external ear canal, unspecified +C2881606|T020|AB|H61.303|ICD10CM|Acquired stenosis of external ear canal, unsp, bilateral|Acquired stenosis of external ear canal, unsp, bilateral +C2881606|T020|PT|H61.303|ICD10CM|Acquired stenosis of external ear canal, unspecified, bilateral|Acquired stenosis of external ear canal, unspecified, bilateral +C2881607|T020|AB|H61.309|ICD10CM|Acquired stenosis of external ear canal, unsp, unsp ear|Acquired stenosis of external ear canal, unsp, unsp ear +C2881607|T020|PT|H61.309|ICD10CM|Acquired stenosis of external ear canal, unspecified, unspecified ear|Acquired stenosis of external ear canal, unspecified, unspecified ear +C0395839|T020|HT|H61.31|ICD10CM|Acquired stenosis of external ear canal secondary to trauma|Acquired stenosis of external ear canal secondary to trauma +C0395839|T020|AB|H61.31|ICD10CM|Acquired stenosis of external ear canal secondary to trauma|Acquired stenosis of external ear canal secondary to trauma +C2881608|T020|AB|H61.311|ICD10CM|Acquired stenosis of r ext ear canal secondary to trauma|Acquired stenosis of r ext ear canal secondary to trauma +C2881608|T020|PT|H61.311|ICD10CM|Acquired stenosis of right external ear canal secondary to trauma|Acquired stenosis of right external ear canal secondary to trauma +C2881609|T020|AB|H61.312|ICD10CM|Acquired stenosis of l ext ear canal secondary to trauma|Acquired stenosis of l ext ear canal secondary to trauma +C2881609|T020|PT|H61.312|ICD10CM|Acquired stenosis of left external ear canal secondary to trauma|Acquired stenosis of left external ear canal secondary to trauma +C2881610|T020|AB|H61.313|ICD10CM|Acquired stenosis of ext ear canal secondary to trauma, bi|Acquired stenosis of ext ear canal secondary to trauma, bi +C2881610|T020|PT|H61.313|ICD10CM|Acquired stenosis of external ear canal secondary to trauma, bilateral|Acquired stenosis of external ear canal secondary to trauma, bilateral +C2881611|T020|AB|H61.319|ICD10CM|Acquired stenosis of ext ear canal sec to trauma, unsp ear|Acquired stenosis of ext ear canal sec to trauma, unsp ear +C2881611|T020|PT|H61.319|ICD10CM|Acquired stenosis of external ear canal secondary to trauma, unspecified ear|Acquired stenosis of external ear canal secondary to trauma, unspecified ear +C2881612|T020|AB|H61.32|ICD10CM|Acquired stenosis of ext ear canal sec to inflam and infct|Acquired stenosis of ext ear canal sec to inflam and infct +C2881612|T020|HT|H61.32|ICD10CM|Acquired stenosis of external ear canal secondary to inflammation and infection|Acquired stenosis of external ear canal secondary to inflammation and infection +C2881613|T020|AB|H61.321|ICD10CM|Acquired stenosis of r ext ear canal sec to inflam and infct|Acquired stenosis of r ext ear canal sec to inflam and infct +C2881613|T020|PT|H61.321|ICD10CM|Acquired stenosis of right external ear canal secondary to inflammation and infection|Acquired stenosis of right external ear canal secondary to inflammation and infection +C2881614|T020|AB|H61.322|ICD10CM|Acquired stenosis of l ext ear canal sec to inflam and infct|Acquired stenosis of l ext ear canal sec to inflam and infct +C2881614|T020|PT|H61.322|ICD10CM|Acquired stenosis of left external ear canal secondary to inflammation and infection|Acquired stenosis of left external ear canal secondary to inflammation and infection +C2881615|T020|AB|H61.323|ICD10CM|Acq stenosis of ext ear canal sec to inflam and infct, bi|Acq stenosis of ext ear canal sec to inflam and infct, bi +C2881615|T020|PT|H61.323|ICD10CM|Acquired stenosis of external ear canal secondary to inflammation and infection, bilateral|Acquired stenosis of external ear canal secondary to inflammation and infection, bilateral +C2881616|T020|AB|H61.329|ICD10CM|Acq stenos of ext ear canal sec to inflam & infct, unsp ear|Acq stenos of ext ear canal sec to inflam & infct, unsp ear +C2881616|T020|PT|H61.329|ICD10CM|Acquired stenosis of external ear canal secondary to inflammation and infection, unspecified ear|Acquired stenosis of external ear canal secondary to inflammation and infection, unspecified ear +C2881617|T020|AB|H61.39|ICD10CM|Other acquired stenosis of external ear canal|Other acquired stenosis of external ear canal +C2881617|T020|HT|H61.39|ICD10CM|Other acquired stenosis of external ear canal|Other acquired stenosis of external ear canal +C2881618|T020|AB|H61.391|ICD10CM|Other acquired stenosis of right external ear canal|Other acquired stenosis of right external ear canal +C2881618|T020|PT|H61.391|ICD10CM|Other acquired stenosis of right external ear canal|Other acquired stenosis of right external ear canal +C2881619|T020|AB|H61.392|ICD10CM|Other acquired stenosis of left external ear canal|Other acquired stenosis of left external ear canal +C2881619|T020|PT|H61.392|ICD10CM|Other acquired stenosis of left external ear canal|Other acquired stenosis of left external ear canal +C2881620|T020|AB|H61.393|ICD10CM|Other acquired stenosis of external ear canal, bilateral|Other acquired stenosis of external ear canal, bilateral +C2881620|T020|PT|H61.393|ICD10CM|Other acquired stenosis of external ear canal, bilateral|Other acquired stenosis of external ear canal, bilateral +C2881621|T020|AB|H61.399|ICD10CM|Other acquired stenosis of external ear canal, unsp ear|Other acquired stenosis of external ear canal, unsp ear +C2881621|T020|PT|H61.399|ICD10CM|Other acquired stenosis of external ear canal, unspecified ear|Other acquired stenosis of external ear canal, unspecified ear +C0477435|T047|HT|H61.8|ICD10CM|Other specified disorders of external ear|Other specified disorders of external ear +C0477435|T047|AB|H61.8|ICD10CM|Other specified disorders of external ear|Other specified disorders of external ear +C0477435|T047|PT|H61.8|ICD10|Other specified disorders of external ear|Other specified disorders of external ear +C2881625|T047|AB|H61.81|ICD10CM|Exostosis of external canal|Exostosis of external canal +C2881625|T047|HT|H61.81|ICD10CM|Exostosis of external canal|Exostosis of external canal +C2881622|T047|AB|H61.811|ICD10CM|Exostosis of right external canal|Exostosis of right external canal +C2881622|T047|PT|H61.811|ICD10CM|Exostosis of right external canal|Exostosis of right external canal +C2881623|T047|AB|H61.812|ICD10CM|Exostosis of left external canal|Exostosis of left external canal +C2881623|T047|PT|H61.812|ICD10CM|Exostosis of left external canal|Exostosis of left external canal +C2881624|T047|AB|H61.813|ICD10CM|Exostosis of external canal, bilateral|Exostosis of external canal, bilateral +C2881624|T047|PT|H61.813|ICD10CM|Exostosis of external canal, bilateral|Exostosis of external canal, bilateral +C2881625|T047|AB|H61.819|ICD10CM|Exostosis of external canal, unspecified ear|Exostosis of external canal, unspecified ear +C2881625|T047|PT|H61.819|ICD10CM|Exostosis of external canal, unspecified ear|Exostosis of external canal, unspecified ear +C0477435|T047|HT|H61.89|ICD10CM|Other specified disorders of external ear|Other specified disorders of external ear +C0477435|T047|AB|H61.89|ICD10CM|Other specified disorders of external ear|Other specified disorders of external ear +C2881626|T047|AB|H61.891|ICD10CM|Other specified disorders of right external ear|Other specified disorders of right external ear +C2881626|T047|PT|H61.891|ICD10CM|Other specified disorders of right external ear|Other specified disorders of right external ear +C2881627|T047|AB|H61.892|ICD10CM|Other specified disorders of left external ear|Other specified disorders of left external ear +C2881627|T047|PT|H61.892|ICD10CM|Other specified disorders of left external ear|Other specified disorders of left external ear +C2881628|T047|AB|H61.893|ICD10CM|Other specified disorders of external ear, bilateral|Other specified disorders of external ear, bilateral +C2881628|T047|PT|H61.893|ICD10CM|Other specified disorders of external ear, bilateral|Other specified disorders of external ear, bilateral +C0477435|T047|AB|H61.899|ICD10CM|Other specified disorders of external ear, unspecified ear|Other specified disorders of external ear, unspecified ear +C0477435|T047|PT|H61.899|ICD10CM|Other specified disorders of external ear, unspecified ear|Other specified disorders of external ear, unspecified ear +C0155388|T047|HT|H61.9|ICD10CM|Disorder of external ear, unspecified|Disorder of external ear, unspecified +C0155388|T047|AB|H61.9|ICD10CM|Disorder of external ear, unspecified|Disorder of external ear, unspecified +C0155388|T047|PT|H61.9|ICD10|Disorder of external ear, unspecified|Disorder of external ear, unspecified +C2881629|T047|AB|H61.90|ICD10CM|Disorder of external ear, unspecified, unspecified ear|Disorder of external ear, unspecified, unspecified ear +C2881629|T047|PT|H61.90|ICD10CM|Disorder of external ear, unspecified, unspecified ear|Disorder of external ear, unspecified, unspecified ear +C2881630|T047|AB|H61.91|ICD10CM|Disorder of right external ear, unspecified|Disorder of right external ear, unspecified +C2881630|T047|PT|H61.91|ICD10CM|Disorder of right external ear, unspecified|Disorder of right external ear, unspecified +C2881631|T047|AB|H61.92|ICD10CM|Disorder of left external ear, unspecified|Disorder of left external ear, unspecified +C2881631|T047|PT|H61.92|ICD10CM|Disorder of left external ear, unspecified|Disorder of left external ear, unspecified +C2881632|T047|AB|H61.93|ICD10CM|Disorder of external ear, unspecified, bilateral|Disorder of external ear, unspecified, bilateral +C2881632|T047|PT|H61.93|ICD10CM|Disorder of external ear, unspecified, bilateral|Disorder of external ear, unspecified, bilateral +C0694492|T047|HT|H62|ICD10|Disorders of external ear in diseases classified elsewhere|Disorders of external ear in diseases classified elsewhere +C0694492|T047|AB|H62|ICD10CM|Disorders of external ear in diseases classified elsewhere|Disorders of external ear in diseases classified elsewhere +C0694492|T047|HT|H62|ICD10CM|Disorders of external ear in diseases classified elsewhere|Disorders of external ear in diseases classified elsewhere +C0477436|T047|PT|H62.0|ICD10|Otitis externa in bacterial diseases classified elsewhere|Otitis externa in bacterial diseases classified elsewhere +C0477437|T047|PT|H62.1|ICD10|Otitis externa in viral diseases classified elsewhere|Otitis externa in viral diseases classified elsewhere +C0477438|T047|PT|H62.2|ICD10|Otitis externa in mycoses|Otitis externa in mycoses +C0477439|T047|PT|H62.3|ICD10|Otitis externa in other infectious and parasitic diseases classified elsewhere|Otitis externa in other infectious and parasitic diseases classified elsewhere +C0477440|T047|PT|H62.4|ICD10|Otitis externa in other diseases classified elsewhere|Otitis externa in other diseases classified elsewhere +C0477440|T047|HT|H62.4|ICD10CM|Otitis externa in other diseases classified elsewhere|Otitis externa in other diseases classified elsewhere +C0477440|T047|AB|H62.4|ICD10CM|Otitis externa in other diseases classified elsewhere|Otitis externa in other diseases classified elsewhere +C0477440|T047|AB|H62.40|ICD10CM|Otitis externa in oth diseases classd elswhr, unsp ear|Otitis externa in oth diseases classd elswhr, unsp ear +C0477440|T047|PT|H62.40|ICD10CM|Otitis externa in other diseases classified elsewhere, unspecified ear|Otitis externa in other diseases classified elsewhere, unspecified ear +C2881633|T047|AB|H62.41|ICD10CM|Otitis externa in oth diseases classd elswhr, right ear|Otitis externa in oth diseases classd elswhr, right ear +C2881633|T047|PT|H62.41|ICD10CM|Otitis externa in other diseases classified elsewhere, right ear|Otitis externa in other diseases classified elsewhere, right ear +C2881634|T047|AB|H62.42|ICD10CM|Otitis externa in oth diseases classd elswhr, left ear|Otitis externa in oth diseases classd elswhr, left ear +C2881634|T047|PT|H62.42|ICD10CM|Otitis externa in other diseases classified elsewhere, left ear|Otitis externa in other diseases classified elsewhere, left ear +C2881635|T047|AB|H62.43|ICD10CM|Otitis externa in oth diseases classd elswhr, bilateral|Otitis externa in oth diseases classd elswhr, bilateral +C2881635|T047|PT|H62.43|ICD10CM|Otitis externa in other diseases classified elsewhere, bilateral|Otitis externa in other diseases classified elsewhere, bilateral +C0477441|T047|AB|H62.8|ICD10CM|Oth disorders of external ear in diseases classd elswhr|Oth disorders of external ear in diseases classd elswhr +C0477441|T047|HT|H62.8|ICD10CM|Other disorders of external ear in diseases classified elsewhere|Other disorders of external ear in diseases classified elsewhere +C0477441|T047|PT|H62.8|ICD10|Other disorders of external ear in diseases classified elsewhere|Other disorders of external ear in diseases classified elsewhere +C0477441|T047|AB|H62.8X|ICD10CM|Oth disorders of external ear in diseases classd elswhr|Oth disorders of external ear in diseases classd elswhr +C0477441|T047|HT|H62.8X|ICD10CM|Other disorders of external ear in diseases classified elsewhere|Other disorders of external ear in diseases classified elsewhere +C2881636|T047|AB|H62.8X1|ICD10CM|Oth disorders of r ext ear in diseases classd elswhr|Oth disorders of r ext ear in diseases classd elswhr +C2881636|T047|PT|H62.8X1|ICD10CM|Other disorders of right external ear in diseases classified elsewhere|Other disorders of right external ear in diseases classified elsewhere +C2881637|T047|AB|H62.8X2|ICD10CM|Oth disorders of left external ear in diseases classd elswhr|Oth disorders of left external ear in diseases classd elswhr +C2881637|T047|PT|H62.8X2|ICD10CM|Other disorders of left external ear in diseases classified elsewhere|Other disorders of left external ear in diseases classified elsewhere +C2881638|T047|AB|H62.8X3|ICD10CM|Oth disorders of ext ear in diseases classd elswhr, bi|Oth disorders of ext ear in diseases classd elswhr, bi +C2881638|T047|PT|H62.8X3|ICD10CM|Other disorders of external ear in diseases classified elsewhere, bilateral|Other disorders of external ear in diseases classified elsewhere, bilateral +C2881639|T047|AB|H62.8X9|ICD10CM|Oth disorders of ext ear in diseases classd elswhr, unsp ear|Oth disorders of ext ear in diseases classd elswhr, unsp ear +C2881639|T047|PT|H62.8X9|ICD10CM|Other disorders of external ear in diseases classified elsewhere, unspecified ear|Other disorders of external ear in diseases classified elsewhere, unspecified ear +C0271446|T047|AB|H65|ICD10CM|Nonsuppurative otitis media|Nonsuppurative otitis media +C0271446|T047|HT|H65|ICD10CM|Nonsuppurative otitis media|Nonsuppurative otitis media +C0271446|T047|HT|H65|ICD10|Nonsuppurative otitis media|Nonsuppurative otitis media +C4290126|T047|ET|H65|ICD10CM|nonsuppurative otitis media with myringitis|nonsuppurative otitis media with myringitis +C0477442|T047|HT|H65-H75|ICD10CM|Diseases of middle ear and mastoid (H65-H75)|Diseases of middle ear and mastoid (H65-H75) +C0477442|T047|HT|H65-H75.9|ICD10|Diseases of middle ear and mastoid|Diseases of middle ear and mastoid +C2881641|T047|ET|H65.0|ICD10CM|Acute and subacute secretory otitis|Acute and subacute secretory otitis +C0155415|T047|HT|H65.0|ICD10CM|Acute serous otitis media|Acute serous otitis media +C0155415|T047|AB|H65.0|ICD10CM|Acute serous otitis media|Acute serous otitis media +C0155415|T047|PT|H65.0|ICD10|Acute serous otitis media|Acute serous otitis media +C0155415|T047|AB|H65.00|ICD10CM|Acute serous otitis media, unspecified ear|Acute serous otitis media, unspecified ear +C0155415|T047|PT|H65.00|ICD10CM|Acute serous otitis media, unspecified ear|Acute serous otitis media, unspecified ear +C2118520|T047|AB|H65.01|ICD10CM|Acute serous otitis media, right ear|Acute serous otitis media, right ear +C2118520|T047|PT|H65.01|ICD10CM|Acute serous otitis media, right ear|Acute serous otitis media, right ear +C2118521|T047|AB|H65.02|ICD10CM|Acute serous otitis media, left ear|Acute serous otitis media, left ear +C2118521|T047|PT|H65.02|ICD10CM|Acute serous otitis media, left ear|Acute serous otitis media, left ear +C2881642|T047|AB|H65.03|ICD10CM|Acute serous otitis media, bilateral|Acute serous otitis media, bilateral +C2881642|T047|PT|H65.03|ICD10CM|Acute serous otitis media, bilateral|Acute serous otitis media, bilateral +C2881643|T047|AB|H65.04|ICD10CM|Acute serous otitis media, recurrent, right ear|Acute serous otitis media, recurrent, right ear +C2881643|T047|PT|H65.04|ICD10CM|Acute serous otitis media, recurrent, right ear|Acute serous otitis media, recurrent, right ear +C2881644|T047|AB|H65.05|ICD10CM|Acute serous otitis media, recurrent, left ear|Acute serous otitis media, recurrent, left ear +C2881644|T047|PT|H65.05|ICD10CM|Acute serous otitis media, recurrent, left ear|Acute serous otitis media, recurrent, left ear +C2881645|T047|AB|H65.06|ICD10CM|Acute serous otitis media, recurrent, bilateral|Acute serous otitis media, recurrent, bilateral +C2881645|T047|PT|H65.06|ICD10CM|Acute serous otitis media, recurrent, bilateral|Acute serous otitis media, recurrent, bilateral +C2881646|T047|AB|H65.07|ICD10CM|Acute serous otitis media, recurrent, unspecified ear|Acute serous otitis media, recurrent, unspecified ear +C2881646|T047|PT|H65.07|ICD10CM|Acute serous otitis media, recurrent, unspecified ear|Acute serous otitis media, recurrent, unspecified ear +C0477443|T047|HT|H65.1|ICD10CM|Other acute nonsuppurative otitis media|Other acute nonsuppurative otitis media +C0477443|T047|AB|H65.1|ICD10CM|Other acute nonsuppurative otitis media|Other acute nonsuppurative otitis media +C0477443|T047|PT|H65.1|ICD10|Other acute nonsuppurative otitis media|Other acute nonsuppurative otitis media +C2881654|T047|HT|H65.11|ICD10CM|Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous)|Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous) +C2881654|T047|AB|H65.11|ICD10CM|Acute and subacute allergic otitis media (mucoid) (serous)|Acute and subacute allergic otitis media (mucoid) (serous) +C2881647|T047|PT|H65.111|ICD10CM|Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), right ear|Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), right ear +C2881647|T047|AB|H65.111|ICD10CM|Acute and subacute allergic otitis media (serous), r ear|Acute and subacute allergic otitis media (serous), r ear +C2881648|T047|PT|H65.112|ICD10CM|Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), left ear|Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), left ear +C2881648|T047|AB|H65.112|ICD10CM|Acute and subacute allergic otitis media (serous), left ear|Acute and subacute allergic otitis media (serous), left ear +C2881649|T047|PT|H65.113|ICD10CM|Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), bilateral|Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), bilateral +C2881649|T047|AB|H65.113|ICD10CM|Acute and subacute allergic otitis media (serous), bi|Acute and subacute allergic otitis media (serous), bi +C2881650|T047|PT|H65.114|ICD10CM|Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, right ear|Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, right ear +C2881650|T047|AB|H65.114|ICD10CM|Acute and subacute allergic otitis media, recur, r ear|Acute and subacute allergic otitis media, recur, r ear +C2881651|T047|PT|H65.115|ICD10CM|Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, left ear|Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, left ear +C2881651|T047|AB|H65.115|ICD10CM|Acute and subacute allergic otitis media, recur, left ear|Acute and subacute allergic otitis media, recur, left ear +C2881652|T047|PT|H65.116|ICD10CM|Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, bilateral|Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, bilateral +C2881652|T047|AB|H65.116|ICD10CM|Acute and subacute allergic otitis media (serous), recur, bi|Acute and subacute allergic otitis media (serous), recur, bi +C2881653|T047|PT|H65.117|ICD10CM|Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, unspecified ear|Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, unspecified ear +C2881653|T047|AB|H65.117|ICD10CM|Acute and subacute allergic otitis media, recur, unsp ear|Acute and subacute allergic otitis media, recur, unsp ear +C2881654|T047|PT|H65.119|ICD10CM|Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), unspecified ear|Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), unspecified ear +C2881654|T047|AB|H65.119|ICD10CM|Acute and subacute allergic otitis media (serous), unsp ear|Acute and subacute allergic otitis media (serous), unsp ear +C2881655|T047|ET|H65.19|ICD10CM|Acute and subacute mucoid otitis media|Acute and subacute mucoid otitis media +C2881656|T047|ET|H65.19|ICD10CM|Acute and subacute nonsuppurative otitis media NOS|Acute and subacute nonsuppurative otitis media NOS +C2881657|T047|ET|H65.19|ICD10CM|Acute and subacute sanguinous otitis media|Acute and subacute sanguinous otitis media +C2881658|T047|ET|H65.19|ICD10CM|Acute and subacute seromucinous otitis media|Acute and subacute seromucinous otitis media +C0477443|T047|HT|H65.19|ICD10CM|Other acute nonsuppurative otitis media|Other acute nonsuppurative otitis media +C0477443|T047|AB|H65.19|ICD10CM|Other acute nonsuppurative otitis media|Other acute nonsuppurative otitis media +C2881659|T047|AB|H65.191|ICD10CM|Other acute nonsuppurative otitis media, right ear|Other acute nonsuppurative otitis media, right ear +C2881659|T047|PT|H65.191|ICD10CM|Other acute nonsuppurative otitis media, right ear|Other acute nonsuppurative otitis media, right ear +C2881660|T047|AB|H65.192|ICD10CM|Other acute nonsuppurative otitis media, left ear|Other acute nonsuppurative otitis media, left ear +C2881660|T047|PT|H65.192|ICD10CM|Other acute nonsuppurative otitis media, left ear|Other acute nonsuppurative otitis media, left ear +C2881661|T047|AB|H65.193|ICD10CM|Other acute nonsuppurative otitis media, bilateral|Other acute nonsuppurative otitis media, bilateral +C2881661|T047|PT|H65.193|ICD10CM|Other acute nonsuppurative otitis media, bilateral|Other acute nonsuppurative otitis media, bilateral +C2881662|T047|AB|H65.194|ICD10CM|Oth acute nonsuppurative otitis media, recurrent, right ear|Oth acute nonsuppurative otitis media, recurrent, right ear +C2881662|T047|PT|H65.194|ICD10CM|Other acute nonsuppurative otitis media, recurrent, right ear|Other acute nonsuppurative otitis media, recurrent, right ear +C2881663|T047|AB|H65.195|ICD10CM|Other acute nonsuppurative otitis media, recurrent, left ear|Other acute nonsuppurative otitis media, recurrent, left ear +C2881663|T047|PT|H65.195|ICD10CM|Other acute nonsuppurative otitis media, recurrent, left ear|Other acute nonsuppurative otitis media, recurrent, left ear +C2881664|T047|AB|H65.196|ICD10CM|Oth acute nonsuppurative otitis media, recurrent, bilateral|Oth acute nonsuppurative otitis media, recurrent, bilateral +C2881664|T047|PT|H65.196|ICD10CM|Other acute nonsuppurative otitis media, recurrent, bilateral|Other acute nonsuppurative otitis media, recurrent, bilateral +C2881665|T047|AB|H65.197|ICD10CM|Other acute nonsuppurative otitis media recurrent, unsp ear|Other acute nonsuppurative otitis media recurrent, unsp ear +C2881665|T047|PT|H65.197|ICD10CM|Other acute nonsuppurative otitis media recurrent, unspecified ear|Other acute nonsuppurative otitis media recurrent, unspecified ear +C0477443|T047|AB|H65.199|ICD10CM|Other acute nonsuppurative otitis media, unspecified ear|Other acute nonsuppurative otitis media, unspecified ear +C0477443|T047|PT|H65.199|ICD10CM|Other acute nonsuppurative otitis media, unspecified ear|Other acute nonsuppurative otitis media, unspecified ear +C0155421|T047|PT|H65.2|ICD10|Chronic serous otitis media|Chronic serous otitis media +C0155421|T047|HT|H65.2|ICD10CM|Chronic serous otitis media|Chronic serous otitis media +C0155421|T047|AB|H65.2|ICD10CM|Chronic serous otitis media|Chronic serous otitis media +C0271438|T047|ET|H65.2|ICD10CM|Chronic tubotympanal catarrh|Chronic tubotympanal catarrh +C0155421|T047|AB|H65.20|ICD10CM|Chronic serous otitis media, unspecified ear|Chronic serous otitis media, unspecified ear +C0155421|T047|PT|H65.20|ICD10CM|Chronic serous otitis media, unspecified ear|Chronic serous otitis media, unspecified ear +C2074926|T047|AB|H65.21|ICD10CM|Chronic serous otitis media, right ear|Chronic serous otitis media, right ear +C2074926|T047|PT|H65.21|ICD10CM|Chronic serous otitis media, right ear|Chronic serous otitis media, right ear +C2074925|T047|AB|H65.22|ICD10CM|Chronic serous otitis media, left ear|Chronic serous otitis media, left ear +C2074925|T047|PT|H65.22|ICD10CM|Chronic serous otitis media, left ear|Chronic serous otitis media, left ear +C2881666|T047|AB|H65.23|ICD10CM|Chronic serous otitis media, bilateral|Chronic serous otitis media, bilateral +C2881666|T047|PT|H65.23|ICD10CM|Chronic serous otitis media, bilateral|Chronic serous otitis media, bilateral +C1404375|T047|ET|H65.3|ICD10CM|Chronic mucinous otitis media|Chronic mucinous otitis media +C1455742|T047|HT|H65.3|ICD10CM|Chronic mucoid otitis media|Chronic mucoid otitis media +C1455742|T047|AB|H65.3|ICD10CM|Chronic mucoid otitis media|Chronic mucoid otitis media +C1455742|T047|PT|H65.3|ICD10|Chronic mucoid otitis media|Chronic mucoid otitis media +C2242816|T047|ET|H65.3|ICD10CM|Chronic secretory otitis media|Chronic secretory otitis media +C2242816|T047|ET|H65.3|ICD10CM|Chronic transudative otitis media|Chronic transudative otitis media +C0029883|T047|ET|H65.3|ICD10CM|Glue ear|Glue ear +C1455742|T047|AB|H65.30|ICD10CM|Chronic mucoid otitis media, unspecified ear|Chronic mucoid otitis media, unspecified ear +C1455742|T047|PT|H65.30|ICD10CM|Chronic mucoid otitis media, unspecified ear|Chronic mucoid otitis media, unspecified ear +C2074750|T047|AB|H65.31|ICD10CM|Chronic mucoid otitis media, right ear|Chronic mucoid otitis media, right ear +C2074750|T047|PT|H65.31|ICD10CM|Chronic mucoid otitis media, right ear|Chronic mucoid otitis media, right ear +C2074749|T047|AB|H65.32|ICD10CM|Chronic mucoid otitis media, left ear|Chronic mucoid otitis media, left ear +C2074749|T047|PT|H65.32|ICD10CM|Chronic mucoid otitis media, left ear|Chronic mucoid otitis media, left ear +C2881667|T047|AB|H65.33|ICD10CM|Chronic mucoid otitis media, bilateral|Chronic mucoid otitis media, bilateral +C2881667|T047|PT|H65.33|ICD10CM|Chronic mucoid otitis media, bilateral|Chronic mucoid otitis media, bilateral +C0477444|T047|PT|H65.4|ICD10|Other chronic nonsuppurative otitis media|Other chronic nonsuppurative otitis media +C0477444|T047|HT|H65.4|ICD10CM|Other chronic nonsuppurative otitis media|Other chronic nonsuppurative otitis media +C0477444|T047|AB|H65.4|ICD10CM|Other chronic nonsuppurative otitis media|Other chronic nonsuppurative otitis media +C0271442|T047|HT|H65.41|ICD10CM|Chronic allergic otitis media|Chronic allergic otitis media +C0271442|T047|AB|H65.41|ICD10CM|Chronic allergic otitis media|Chronic allergic otitis media +C2881668|T047|AB|H65.411|ICD10CM|Chronic allergic otitis media, right ear|Chronic allergic otitis media, right ear +C2881668|T047|PT|H65.411|ICD10CM|Chronic allergic otitis media, right ear|Chronic allergic otitis media, right ear +C2881669|T047|AB|H65.412|ICD10CM|Chronic allergic otitis media, left ear|Chronic allergic otitis media, left ear +C2881669|T047|PT|H65.412|ICD10CM|Chronic allergic otitis media, left ear|Chronic allergic otitis media, left ear +C2881670|T047|AB|H65.413|ICD10CM|Chronic allergic otitis media, bilateral|Chronic allergic otitis media, bilateral +C2881670|T047|PT|H65.413|ICD10CM|Chronic allergic otitis media, bilateral|Chronic allergic otitis media, bilateral +C0271442|T047|AB|H65.419|ICD10CM|Chronic allergic otitis media, unspecified ear|Chronic allergic otitis media, unspecified ear +C0271442|T047|PT|H65.419|ICD10CM|Chronic allergic otitis media, unspecified ear|Chronic allergic otitis media, unspecified ear +C0271443|T047|ET|H65.49|ICD10CM|Chronic exudative otitis media|Chronic exudative otitis media +C0395869|T047|ET|H65.49|ICD10CM|Chronic nonsuppurative otitis media NOS|Chronic nonsuppurative otitis media NOS +C2881671|T047|ET|H65.49|ICD10CM|Chronic otitis media with effusion (nonpurulent)|Chronic otitis media with effusion (nonpurulent) +C0271445|T047|ET|H65.49|ICD10CM|Chronic seromucinous otitis media|Chronic seromucinous otitis media +C0477444|T047|HT|H65.49|ICD10CM|Other chronic nonsuppurative otitis media|Other chronic nonsuppurative otitis media +C0477444|T047|AB|H65.49|ICD10CM|Other chronic nonsuppurative otitis media|Other chronic nonsuppurative otitis media +C2881672|T047|AB|H65.491|ICD10CM|Other chronic nonsuppurative otitis media, right ear|Other chronic nonsuppurative otitis media, right ear +C2881672|T047|PT|H65.491|ICD10CM|Other chronic nonsuppurative otitis media, right ear|Other chronic nonsuppurative otitis media, right ear +C2881673|T047|AB|H65.492|ICD10CM|Other chronic nonsuppurative otitis media, left ear|Other chronic nonsuppurative otitis media, left ear +C2881673|T047|PT|H65.492|ICD10CM|Other chronic nonsuppurative otitis media, left ear|Other chronic nonsuppurative otitis media, left ear +C2881674|T047|AB|H65.493|ICD10CM|Other chronic nonsuppurative otitis media, bilateral|Other chronic nonsuppurative otitis media, bilateral +C2881674|T047|PT|H65.493|ICD10CM|Other chronic nonsuppurative otitis media, bilateral|Other chronic nonsuppurative otitis media, bilateral +C0477444|T047|AB|H65.499|ICD10CM|Other chronic nonsuppurative otitis media, unspecified ear|Other chronic nonsuppurative otitis media, unspecified ear +C0477444|T047|PT|H65.499|ICD10CM|Other chronic nonsuppurative otitis media, unspecified ear|Other chronic nonsuppurative otitis media, unspecified ear +C0271447|T047|ET|H65.9|ICD10CM|Allergic otitis media NOS|Allergic otitis media NOS +C0271448|T047|ET|H65.9|ICD10CM|Catarrhal otitis media NOS|Catarrhal otitis media NOS +C0271449|T047|ET|H65.9|ICD10CM|Exudative otitis media NOS|Exudative otitis media NOS +C0029883|T047|ET|H65.9|ICD10CM|Mucoid otitis media NOS|Mucoid otitis media NOS +C0271446|T047|PT|H65.9|ICD10|Nonsuppurative otitis media, unspecified|Nonsuppurative otitis media, unspecified +C2881675|T047|ET|H65.9|ICD10CM|Otitis media with effusion (nonpurulent) NOS|Otitis media with effusion (nonpurulent) NOS +C0029883|T047|ET|H65.9|ICD10CM|Secretory otitis media NOS|Secretory otitis media NOS +C0271452|T047|ET|H65.9|ICD10CM|Seromucinous otitis media NOS|Seromucinous otitis media NOS +C0271453|T047|ET|H65.9|ICD10CM|Serous otitis media NOS|Serous otitis media NOS +C0029883|T047|ET|H65.9|ICD10CM|Transudative otitis media NOS|Transudative otitis media NOS +C0271446|T047|AB|H65.9|ICD10CM|Unspecified nonsuppurative otitis media|Unspecified nonsuppurative otitis media +C0271446|T047|HT|H65.9|ICD10CM|Unspecified nonsuppurative otitis media|Unspecified nonsuppurative otitis media +C0271446|T047|AB|H65.90|ICD10CM|Unspecified nonsuppurative otitis media, unspecified ear|Unspecified nonsuppurative otitis media, unspecified ear +C0271446|T047|PT|H65.90|ICD10CM|Unspecified nonsuppurative otitis media, unspecified ear|Unspecified nonsuppurative otitis media, unspecified ear +C2015829|T047|AB|H65.91|ICD10CM|Unspecified nonsuppurative otitis media, right ear|Unspecified nonsuppurative otitis media, right ear +C2015829|T047|PT|H65.91|ICD10CM|Unspecified nonsuppurative otitis media, right ear|Unspecified nonsuppurative otitis media, right ear +C2015828|T047|AB|H65.92|ICD10CM|Unspecified nonsuppurative otitis media, left ear|Unspecified nonsuppurative otitis media, left ear +C2015828|T047|PT|H65.92|ICD10CM|Unspecified nonsuppurative otitis media, left ear|Unspecified nonsuppurative otitis media, left ear +C2881676|T047|AB|H65.93|ICD10CM|Unspecified nonsuppurative otitis media, bilateral|Unspecified nonsuppurative otitis media, bilateral +C2881676|T047|PT|H65.93|ICD10CM|Unspecified nonsuppurative otitis media, bilateral|Unspecified nonsuppurative otitis media, bilateral +C0029888|T047|HT|H66|ICD10CM|Suppurative and unspecified otitis media|Suppurative and unspecified otitis media +C0029888|T047|AB|H66|ICD10CM|Suppurative and unspecified otitis media|Suppurative and unspecified otitis media +C0029888|T047|HT|H66|ICD10|Suppurative and unspecified otitis media|Suppurative and unspecified otitis media +C4290127|T047|ET|H66|ICD10CM|suppurative and unspecified otitis media with myringitis|suppurative and unspecified otitis media with myringitis +C0271431|T047|PT|H66.0|ICD10|Acute suppurative otitis media|Acute suppurative otitis media +C0271431|T047|HT|H66.0|ICD10CM|Acute suppurative otitis media|Acute suppurative otitis media +C0271431|T047|AB|H66.0|ICD10CM|Acute suppurative otitis media|Acute suppurative otitis media +C0395861|T047|AB|H66.00|ICD10CM|Acute suppurative otitis media w/o spontaneous rupt ear drum|Acute suppurative otitis media w/o spontaneous rupt ear drum +C0395861|T047|HT|H66.00|ICD10CM|Acute suppurative otitis media without spontaneous rupture of ear drum|Acute suppurative otitis media without spontaneous rupture of ear drum +C2881678|T047|AB|H66.001|ICD10CM|Acute suppr otitis media w/o spon rupt ear drum, right ear|Acute suppr otitis media w/o spon rupt ear drum, right ear +C2881678|T047|PT|H66.001|ICD10CM|Acute suppurative otitis media without spontaneous rupture of ear drum, right ear|Acute suppurative otitis media without spontaneous rupture of ear drum, right ear +C2881679|T047|AB|H66.002|ICD10CM|Acute suppr otitis media w/o spon rupt ear drum, left ear|Acute suppr otitis media w/o spon rupt ear drum, left ear +C2881679|T047|PT|H66.002|ICD10CM|Acute suppurative otitis media without spontaneous rupture of ear drum, left ear|Acute suppurative otitis media without spontaneous rupture of ear drum, left ear +C2881680|T047|AB|H66.003|ICD10CM|Acute suppr otitis media w/o spon rupt ear drum, bilateral|Acute suppr otitis media w/o spon rupt ear drum, bilateral +C2881680|T047|PT|H66.003|ICD10CM|Acute suppurative otitis media without spontaneous rupture of ear drum, bilateral|Acute suppurative otitis media without spontaneous rupture of ear drum, bilateral +C2881681|T047|AB|H66.004|ICD10CM|Ac suppr otitis media w/o spon rupt ear drum, recur, r ear|Ac suppr otitis media w/o spon rupt ear drum, recur, r ear +C2881681|T047|PT|H66.004|ICD10CM|Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, right ear|Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, right ear +C2881682|T047|AB|H66.005|ICD10CM|Ac suppr otitis media w/o spon rupt ear drum, recur, l ear|Ac suppr otitis media w/o spon rupt ear drum, recur, l ear +C2881682|T047|PT|H66.005|ICD10CM|Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, left ear|Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, left ear +C2881683|T047|AB|H66.006|ICD10CM|Acute suppr otitis media w/o spon rupt ear drum, recur, bi|Acute suppr otitis media w/o spon rupt ear drum, recur, bi +C2881683|T047|PT|H66.006|ICD10CM|Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, bilateral|Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, bilateral +C2881684|T047|AB|H66.007|ICD10CM|Ac suppr otitis media w/o spon rupt ear drum,recur, unsp ear|Ac suppr otitis media w/o spon rupt ear drum,recur, unsp ear +C2881684|T047|PT|H66.007|ICD10CM|Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, unspecified ear|Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, unspecified ear +C0395861|T047|AB|H66.009|ICD10CM|Acute suppr otitis media w/o spon rupt ear drum, unsp ear|Acute suppr otitis media w/o spon rupt ear drum, unsp ear +C0395861|T047|PT|H66.009|ICD10CM|Acute suppurative otitis media without spontaneous rupture of ear drum, unspecified ear|Acute suppurative otitis media without spontaneous rupture of ear drum, unspecified ear +C0395862|T047|AB|H66.01|ICD10CM|Acute suppurative otitis media w spontaneous rupt ear drum|Acute suppurative otitis media w spontaneous rupt ear drum +C0395862|T047|HT|H66.01|ICD10CM|Acute suppurative otitis media with spontaneous rupture of ear drum|Acute suppurative otitis media with spontaneous rupture of ear drum +C2881685|T047|AB|H66.011|ICD10CM|Acute suppr otitis media w spon rupt ear drum, right ear|Acute suppr otitis media w spon rupt ear drum, right ear +C2881685|T047|PT|H66.011|ICD10CM|Acute suppurative otitis media with spontaneous rupture of ear drum, right ear|Acute suppurative otitis media with spontaneous rupture of ear drum, right ear +C2881686|T047|AB|H66.012|ICD10CM|Acute suppr otitis media w spon rupt ear drum, left ear|Acute suppr otitis media w spon rupt ear drum, left ear +C2881686|T047|PT|H66.012|ICD10CM|Acute suppurative otitis media with spontaneous rupture of ear drum, left ear|Acute suppurative otitis media with spontaneous rupture of ear drum, left ear +C2881687|T047|AB|H66.013|ICD10CM|Acute suppr otitis media w spon rupt ear drum, bilateral|Acute suppr otitis media w spon rupt ear drum, bilateral +C2881687|T047|PT|H66.013|ICD10CM|Acute suppurative otitis media with spontaneous rupture of ear drum, bilateral|Acute suppurative otitis media with spontaneous rupture of ear drum, bilateral +C2881688|T047|AB|H66.014|ICD10CM|Acute suppr otitis media w spon rupt ear drum, recur, r ear|Acute suppr otitis media w spon rupt ear drum, recur, r ear +C2881688|T047|PT|H66.014|ICD10CM|Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, right ear|Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, right ear +C2881689|T047|AB|H66.015|ICD10CM|Acute suppr otitis media w spon rupt ear drum, recur, l ear|Acute suppr otitis media w spon rupt ear drum, recur, l ear +C2881689|T047|PT|H66.015|ICD10CM|Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, left ear|Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, left ear +C2881690|T047|AB|H66.016|ICD10CM|Acute suppr otitis media w spon rupt ear drum, recurrent, bi|Acute suppr otitis media w spon rupt ear drum, recurrent, bi +C2881690|T047|PT|H66.016|ICD10CM|Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, bilateral|Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, bilateral +C2881691|T047|AB|H66.017|ICD10CM|Ac suppr otitis media w spon rupt ear drum, recur, unsp ear|Ac suppr otitis media w spon rupt ear drum, recur, unsp ear +C2881691|T047|PT|H66.017|ICD10CM|Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, unspecified ear|Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, unspecified ear +C0395862|T047|AB|H66.019|ICD10CM|Acute suppr otitis media w spon rupt ear drum, unsp ear|Acute suppr otitis media w spon rupt ear drum, unsp ear +C0395862|T047|PT|H66.019|ICD10CM|Acute suppurative otitis media with spontaneous rupture of ear drum, unspecified ear|Acute suppurative otitis media with spontaneous rupture of ear drum, unspecified ear +C0865547|T047|ET|H66.1|ICD10CM|Benign chronic suppurative otitis media|Benign chronic suppurative otitis media +C0865547|T047|ET|H66.1|ICD10CM|Chronic tubotympanic disease|Chronic tubotympanic disease +C0155440|T047|PT|H66.1|ICD10|Chronic tubotympanic suppurative otitis media|Chronic tubotympanic suppurative otitis media +C0155440|T047|HT|H66.1|ICD10CM|Chronic tubotympanic suppurative otitis media|Chronic tubotympanic suppurative otitis media +C0155440|T047|AB|H66.1|ICD10CM|Chronic tubotympanic suppurative otitis media|Chronic tubotympanic suppurative otitis media +C0155440|T047|AB|H66.10|ICD10CM|Chronic tubotympanic suppurative otitis media, unspecified|Chronic tubotympanic suppurative otitis media, unspecified +C0155440|T047|PT|H66.10|ICD10CM|Chronic tubotympanic suppurative otitis media, unspecified|Chronic tubotympanic suppurative otitis media, unspecified +C2881692|T047|AB|H66.11|ICD10CM|Chronic tubotympanic suppurative otitis media, right ear|Chronic tubotympanic suppurative otitis media, right ear +C2881692|T047|PT|H66.11|ICD10CM|Chronic tubotympanic suppurative otitis media, right ear|Chronic tubotympanic suppurative otitis media, right ear +C2881693|T047|AB|H66.12|ICD10CM|Chronic tubotympanic suppurative otitis media, left ear|Chronic tubotympanic suppurative otitis media, left ear +C2881693|T047|PT|H66.12|ICD10CM|Chronic tubotympanic suppurative otitis media, left ear|Chronic tubotympanic suppurative otitis media, left ear +C2881694|T047|AB|H66.13|ICD10CM|Chronic tubotympanic suppurative otitis media, bilateral|Chronic tubotympanic suppurative otitis media, bilateral +C2881694|T047|PT|H66.13|ICD10CM|Chronic tubotympanic suppurative otitis media, bilateral|Chronic tubotympanic suppurative otitis media, bilateral +C0565831|T047|ET|H66.2|ICD10CM|Chronic atticoantral disease|Chronic atticoantral disease +C0155441|T047|HT|H66.2|ICD10CM|Chronic atticoantral suppurative otitis media|Chronic atticoantral suppurative otitis media +C0155441|T047|AB|H66.2|ICD10CM|Chronic atticoantral suppurative otitis media|Chronic atticoantral suppurative otitis media +C0155441|T047|PT|H66.2|ICD10|Chronic atticoantral suppurative otitis media|Chronic atticoantral suppurative otitis media +C0155441|T047|AB|H66.20|ICD10CM|Chronic atticoantral suppurative otitis media, unsp ear|Chronic atticoantral suppurative otitis media, unsp ear +C0155441|T047|PT|H66.20|ICD10CM|Chronic atticoantral suppurative otitis media, unspecified ear|Chronic atticoantral suppurative otitis media, unspecified ear +C2881695|T047|AB|H66.21|ICD10CM|Chronic atticoantral suppurative otitis media, right ear|Chronic atticoantral suppurative otitis media, right ear +C2881695|T047|PT|H66.21|ICD10CM|Chronic atticoantral suppurative otitis media, right ear|Chronic atticoantral suppurative otitis media, right ear +C2881696|T047|AB|H66.22|ICD10CM|Chronic atticoantral suppurative otitis media, left ear|Chronic atticoantral suppurative otitis media, left ear +C2881696|T047|PT|H66.22|ICD10CM|Chronic atticoantral suppurative otitis media, left ear|Chronic atticoantral suppurative otitis media, left ear +C2881697|T047|AB|H66.23|ICD10CM|Chronic atticoantral suppurative otitis media, bilateral|Chronic atticoantral suppurative otitis media, bilateral +C2881697|T047|PT|H66.23|ICD10CM|Chronic atticoantral suppurative otitis media, bilateral|Chronic atticoantral suppurative otitis media, bilateral +C0271454|T047|ET|H66.3|ICD10CM|Chronic suppurative otitis media NOS|Chronic suppurative otitis media NOS +C0477445|T047|HT|H66.3|ICD10CM|Other chronic suppurative otitis media|Other chronic suppurative otitis media +C0477445|T047|AB|H66.3|ICD10CM|Other chronic suppurative otitis media|Other chronic suppurative otitis media +C0477445|T047|PT|H66.3|ICD10|Other chronic suppurative otitis media|Other chronic suppurative otitis media +C0477445|T047|HT|H66.3X|ICD10CM|Other chronic suppurative otitis media|Other chronic suppurative otitis media +C0477445|T047|AB|H66.3X|ICD10CM|Other chronic suppurative otitis media|Other chronic suppurative otitis media +C2881698|T047|AB|H66.3X1|ICD10CM|Other chronic suppurative otitis media, right ear|Other chronic suppurative otitis media, right ear +C2881698|T047|PT|H66.3X1|ICD10CM|Other chronic suppurative otitis media, right ear|Other chronic suppurative otitis media, right ear +C2881699|T047|AB|H66.3X2|ICD10CM|Other chronic suppurative otitis media, left ear|Other chronic suppurative otitis media, left ear +C2881699|T047|PT|H66.3X2|ICD10CM|Other chronic suppurative otitis media, left ear|Other chronic suppurative otitis media, left ear +C2881700|T047|AB|H66.3X3|ICD10CM|Other chronic suppurative otitis media, bilateral|Other chronic suppurative otitis media, bilateral +C2881700|T047|PT|H66.3X3|ICD10CM|Other chronic suppurative otitis media, bilateral|Other chronic suppurative otitis media, bilateral +C0477445|T047|AB|H66.3X9|ICD10CM|Other chronic suppurative otitis media, unspecified ear|Other chronic suppurative otitis media, unspecified ear +C0477445|T047|PT|H66.3X9|ICD10CM|Other chronic suppurative otitis media, unspecified ear|Other chronic suppurative otitis media, unspecified ear +C0029888|T047|ET|H66.4|ICD10CM|Purulent otitis media NOS|Purulent otitis media NOS +C0029888|T047|HT|H66.4|ICD10CM|Suppurative otitis media, unspecified|Suppurative otitis media, unspecified +C0029888|T047|AB|H66.4|ICD10CM|Suppurative otitis media, unspecified|Suppurative otitis media, unspecified +C0029888|T047|PT|H66.4|ICD10|Suppurative otitis media, unspecified|Suppurative otitis media, unspecified +C0029888|T047|AB|H66.40|ICD10CM|Suppurative otitis media, unspecified, unspecified ear|Suppurative otitis media, unspecified, unspecified ear +C0029888|T047|PT|H66.40|ICD10CM|Suppurative otitis media, unspecified, unspecified ear|Suppurative otitis media, unspecified, unspecified ear +C2881701|T047|AB|H66.41|ICD10CM|Suppurative otitis media, unspecified, right ear|Suppurative otitis media, unspecified, right ear +C2881701|T047|PT|H66.41|ICD10CM|Suppurative otitis media, unspecified, right ear|Suppurative otitis media, unspecified, right ear +C2881702|T047|AB|H66.42|ICD10CM|Suppurative otitis media, unspecified, left ear|Suppurative otitis media, unspecified, left ear +C2881702|T047|PT|H66.42|ICD10CM|Suppurative otitis media, unspecified, left ear|Suppurative otitis media, unspecified, left ear +C2881703|T047|AB|H66.43|ICD10CM|Suppurative otitis media, unspecified, bilateral|Suppurative otitis media, unspecified, bilateral +C2881703|T047|PT|H66.43|ICD10CM|Suppurative otitis media, unspecified, bilateral|Suppurative otitis media, unspecified, bilateral +C0271429|T047|ET|H66.9|ICD10CM|Acute otitis media NOS|Acute otitis media NOS +C0271441|T047|ET|H66.9|ICD10CM|Chronic otitis media NOS|Chronic otitis media NOS +C0029882|T047|ET|H66.9|ICD10CM|Otitis media NOS|Otitis media NOS +C0029882|T047|HT|H66.9|ICD10CM|Otitis media, unspecified|Otitis media, unspecified +C0029882|T047|AB|H66.9|ICD10CM|Otitis media, unspecified|Otitis media, unspecified +C0029882|T047|PT|H66.9|ICD10|Otitis media, unspecified|Otitis media, unspecified +C0029882|T047|AB|H66.90|ICD10CM|Otitis media, unspecified, unspecified ear|Otitis media, unspecified, unspecified ear +C0029882|T047|PT|H66.90|ICD10CM|Otitis media, unspecified, unspecified ear|Otitis media, unspecified, unspecified ear +C2881704|T047|AB|H66.91|ICD10CM|Otitis media, unspecified, right ear|Otitis media, unspecified, right ear +C2881704|T047|PT|H66.91|ICD10CM|Otitis media, unspecified, right ear|Otitis media, unspecified, right ear +C2881705|T047|AB|H66.92|ICD10CM|Otitis media, unspecified, left ear|Otitis media, unspecified, left ear +C2881705|T047|PT|H66.92|ICD10CM|Otitis media, unspecified, left ear|Otitis media, unspecified, left ear +C2881706|T047|AB|H66.93|ICD10CM|Otitis media, unspecified, bilateral|Otitis media, unspecified, bilateral +C2881706|T047|PT|H66.93|ICD10CM|Otitis media, unspecified, bilateral|Otitis media, unspecified, bilateral +C0694493|T047|HT|H67|ICD10|Otitis media in diseases classified elsewhere|Otitis media in diseases classified elsewhere +C0694493|T047|AB|H67|ICD10CM|Otitis media in diseases classified elsewhere|Otitis media in diseases classified elsewhere +C0694493|T047|HT|H67|ICD10CM|Otitis media in diseases classified elsewhere|Otitis media in diseases classified elsewhere +C0477446|T047|PT|H67.0|ICD10|Otitis media in bacterial diseases classified elsewhere|Otitis media in bacterial diseases classified elsewhere +C2881707|T047|AB|H67.1|ICD10CM|Otitis media in diseases classified elsewhere, right ear|Otitis media in diseases classified elsewhere, right ear +C2881707|T047|PT|H67.1|ICD10CM|Otitis media in diseases classified elsewhere, right ear|Otitis media in diseases classified elsewhere, right ear +C0477447|T047|PT|H67.1|ICD10|Otitis media in viral diseases classified elsewhere|Otitis media in viral diseases classified elsewhere +C2881708|T047|AB|H67.2|ICD10CM|Otitis media in diseases classified elsewhere, left ear|Otitis media in diseases classified elsewhere, left ear +C2881708|T047|PT|H67.2|ICD10CM|Otitis media in diseases classified elsewhere, left ear|Otitis media in diseases classified elsewhere, left ear +C2881709|T047|AB|H67.3|ICD10CM|Otitis media in diseases classified elsewhere, bilateral|Otitis media in diseases classified elsewhere, bilateral +C2881709|T047|PT|H67.3|ICD10CM|Otitis media in diseases classified elsewhere, bilateral|Otitis media in diseases classified elsewhere, bilateral +C0477448|T047|PT|H67.8|ICD10|Otitis media in other diseases classified elsewhere|Otitis media in other diseases classified elsewhere +C0694493|T047|AB|H67.9|ICD10CM|Otitis media in diseases classified elsewhere, unsp ear|Otitis media in diseases classified elsewhere, unsp ear +C0694493|T047|PT|H67.9|ICD10CM|Otitis media in diseases classified elsewhere, unspecified ear|Otitis media in diseases classified elsewhere, unspecified ear +C0494554|T047|AB|H68|ICD10CM|Eustachian salpingitis and obstruction|Eustachian salpingitis and obstruction +C0494554|T047|HT|H68|ICD10CM|Eustachian salpingitis and obstruction|Eustachian salpingitis and obstruction +C0494554|T047|HT|H68|ICD10|Eustachian salpingitis and obstruction|Eustachian salpingitis and obstruction +C0155428|T047|HT|H68.0|ICD10CM|Eustachian salpingitis|Eustachian salpingitis +C0155428|T047|AB|H68.0|ICD10CM|Eustachian salpingitis|Eustachian salpingitis +C0155428|T047|PT|H68.0|ICD10|Eustachian salpingitis|Eustachian salpingitis +C0155428|T047|AB|H68.00|ICD10CM|Unspecified Eustachian salpingitis|Unspecified Eustachian salpingitis +C0155428|T047|HT|H68.00|ICD10CM|Unspecified Eustachian salpingitis|Unspecified Eustachian salpingitis +C2881710|T047|AB|H68.001|ICD10CM|Unspecified Eustachian salpingitis, right ear|Unspecified Eustachian salpingitis, right ear +C2881710|T047|PT|H68.001|ICD10CM|Unspecified Eustachian salpingitis, right ear|Unspecified Eustachian salpingitis, right ear +C2881711|T047|AB|H68.002|ICD10CM|Unspecified Eustachian salpingitis, left ear|Unspecified Eustachian salpingitis, left ear +C2881711|T047|PT|H68.002|ICD10CM|Unspecified Eustachian salpingitis, left ear|Unspecified Eustachian salpingitis, left ear +C2881712|T047|AB|H68.003|ICD10CM|Unspecified Eustachian salpingitis, bilateral|Unspecified Eustachian salpingitis, bilateral +C2881712|T047|PT|H68.003|ICD10CM|Unspecified Eustachian salpingitis, bilateral|Unspecified Eustachian salpingitis, bilateral +C0155428|T047|AB|H68.009|ICD10CM|Unspecified Eustachian salpingitis, unspecified ear|Unspecified Eustachian salpingitis, unspecified ear +C0155428|T047|PT|H68.009|ICD10CM|Unspecified Eustachian salpingitis, unspecified ear|Unspecified Eustachian salpingitis, unspecified ear +C0155429|T047|HT|H68.01|ICD10CM|Acute Eustachian salpingitis|Acute Eustachian salpingitis +C0155429|T047|AB|H68.01|ICD10CM|Acute Eustachian salpingitis|Acute Eustachian salpingitis +C2881713|T047|AB|H68.011|ICD10CM|Acute Eustachian salpingitis, right ear|Acute Eustachian salpingitis, right ear +C2881713|T047|PT|H68.011|ICD10CM|Acute Eustachian salpingitis, right ear|Acute Eustachian salpingitis, right ear +C2881714|T047|AB|H68.012|ICD10CM|Acute Eustachian salpingitis, left ear|Acute Eustachian salpingitis, left ear +C2881714|T047|PT|H68.012|ICD10CM|Acute Eustachian salpingitis, left ear|Acute Eustachian salpingitis, left ear +C2881715|T047|AB|H68.013|ICD10CM|Acute Eustachian salpingitis, bilateral|Acute Eustachian salpingitis, bilateral +C2881715|T047|PT|H68.013|ICD10CM|Acute Eustachian salpingitis, bilateral|Acute Eustachian salpingitis, bilateral +C0155429|T047|AB|H68.019|ICD10CM|Acute Eustachian salpingitis, unspecified ear|Acute Eustachian salpingitis, unspecified ear +C0155429|T047|PT|H68.019|ICD10CM|Acute Eustachian salpingitis, unspecified ear|Acute Eustachian salpingitis, unspecified ear +C0155430|T047|HT|H68.02|ICD10CM|Chronic Eustachian salpingitis|Chronic Eustachian salpingitis +C0155430|T047|AB|H68.02|ICD10CM|Chronic Eustachian salpingitis|Chronic Eustachian salpingitis +C2881716|T047|AB|H68.021|ICD10CM|Chronic Eustachian salpingitis, right ear|Chronic Eustachian salpingitis, right ear +C2881716|T047|PT|H68.021|ICD10CM|Chronic Eustachian salpingitis, right ear|Chronic Eustachian salpingitis, right ear +C2881717|T047|AB|H68.022|ICD10CM|Chronic Eustachian salpingitis, left ear|Chronic Eustachian salpingitis, left ear +C2881717|T047|PT|H68.022|ICD10CM|Chronic Eustachian salpingitis, left ear|Chronic Eustachian salpingitis, left ear +C2881718|T047|AB|H68.023|ICD10CM|Chronic Eustachian salpingitis, bilateral|Chronic Eustachian salpingitis, bilateral +C2881718|T047|PT|H68.023|ICD10CM|Chronic Eustachian salpingitis, bilateral|Chronic Eustachian salpingitis, bilateral +C0155430|T047|AB|H68.029|ICD10CM|Chronic Eustachian salpingitis, unspecified ear|Chronic Eustachian salpingitis, unspecified ear +C0155430|T047|PT|H68.029|ICD10CM|Chronic Eustachian salpingitis, unspecified ear|Chronic Eustachian salpingitis, unspecified ear +C0149508|T033|HT|H68.1|ICD10CM|Obstruction of Eustachian tube|Obstruction of Eustachian tube +C0149508|T033|AB|H68.1|ICD10CM|Obstruction of Eustachian tube|Obstruction of Eustachian tube +C0149508|T033|PT|H68.1|ICD10|Obstruction of Eustachian tube|Obstruction of Eustachian tube +C0271469|T046|ET|H68.1|ICD10CM|Stenosis of Eustachian tube|Stenosis of Eustachian tube +C0271469|T046|ET|H68.1|ICD10CM|Stricture of Eustachian tube|Stricture of Eustachian tube +C0149508|T033|AB|H68.10|ICD10CM|Unspecified obstruction of Eustachian tube|Unspecified obstruction of Eustachian tube +C0149508|T033|HT|H68.10|ICD10CM|Unspecified obstruction of Eustachian tube|Unspecified obstruction of Eustachian tube +C2881719|T033|AB|H68.101|ICD10CM|Unspecified obstruction of Eustachian tube, right ear|Unspecified obstruction of Eustachian tube, right ear +C2881719|T033|PT|H68.101|ICD10CM|Unspecified obstruction of Eustachian tube, right ear|Unspecified obstruction of Eustachian tube, right ear +C2881720|T033|AB|H68.102|ICD10CM|Unspecified obstruction of Eustachian tube, left ear|Unspecified obstruction of Eustachian tube, left ear +C2881720|T033|PT|H68.102|ICD10CM|Unspecified obstruction of Eustachian tube, left ear|Unspecified obstruction of Eustachian tube, left ear +C2881721|T033|AB|H68.103|ICD10CM|Unspecified obstruction of Eustachian tube, bilateral|Unspecified obstruction of Eustachian tube, bilateral +C2881721|T033|PT|H68.103|ICD10CM|Unspecified obstruction of Eustachian tube, bilateral|Unspecified obstruction of Eustachian tube, bilateral +C2881722|T033|AB|H68.109|ICD10CM|Unspecified obstruction of Eustachian tube, unspecified ear|Unspecified obstruction of Eustachian tube, unspecified ear +C2881722|T033|PT|H68.109|ICD10CM|Unspecified obstruction of Eustachian tube, unspecified ear|Unspecified obstruction of Eustachian tube, unspecified ear +C0155431|T047|HT|H68.11|ICD10CM|Osseous obstruction of Eustachian tube|Osseous obstruction of Eustachian tube +C0155431|T047|AB|H68.11|ICD10CM|Osseous obstruction of Eustachian tube|Osseous obstruction of Eustachian tube +C2881723|T047|AB|H68.111|ICD10CM|Osseous obstruction of Eustachian tube, right ear|Osseous obstruction of Eustachian tube, right ear +C2881723|T047|PT|H68.111|ICD10CM|Osseous obstruction of Eustachian tube, right ear|Osseous obstruction of Eustachian tube, right ear +C2881724|T047|AB|H68.112|ICD10CM|Osseous obstruction of Eustachian tube, left ear|Osseous obstruction of Eustachian tube, left ear +C2881724|T047|PT|H68.112|ICD10CM|Osseous obstruction of Eustachian tube, left ear|Osseous obstruction of Eustachian tube, left ear +C2881725|T047|AB|H68.113|ICD10CM|Osseous obstruction of Eustachian tube, bilateral|Osseous obstruction of Eustachian tube, bilateral +C2881725|T047|PT|H68.113|ICD10CM|Osseous obstruction of Eustachian tube, bilateral|Osseous obstruction of Eustachian tube, bilateral +C2881726|T047|AB|H68.119|ICD10CM|Osseous obstruction of Eustachian tube, unspecified ear|Osseous obstruction of Eustachian tube, unspecified ear +C2881726|T047|PT|H68.119|ICD10CM|Osseous obstruction of Eustachian tube, unspecified ear|Osseous obstruction of Eustachian tube, unspecified ear +C0271471|T047|HT|H68.12|ICD10CM|Intrinsic cartilagenous obstruction of Eustachian tube|Intrinsic cartilagenous obstruction of Eustachian tube +C0271471|T047|AB|H68.12|ICD10CM|Intrinsic cartilagenous obstruction of Eustachian tube|Intrinsic cartilagenous obstruction of Eustachian tube +C2881727|T047|AB|H68.121|ICD10CM|Intrinsic cartilagenous obst of eustach tube, right ear|Intrinsic cartilagenous obst of eustach tube, right ear +C2881727|T047|PT|H68.121|ICD10CM|Intrinsic cartilagenous obstruction of Eustachian tube, right ear|Intrinsic cartilagenous obstruction of Eustachian tube, right ear +C2881728|T047|AB|H68.122|ICD10CM|Intrinsic cartilagenous obst of eustach tube, left ear|Intrinsic cartilagenous obst of eustach tube, left ear +C2881728|T047|PT|H68.122|ICD10CM|Intrinsic cartilagenous obstruction of Eustachian tube, left ear|Intrinsic cartilagenous obstruction of Eustachian tube, left ear +C2881729|T047|AB|H68.123|ICD10CM|Intrinsic cartilagenous obst of eustach tube, bilateral|Intrinsic cartilagenous obst of eustach tube, bilateral +C2881729|T047|PT|H68.123|ICD10CM|Intrinsic cartilagenous obstruction of Eustachian tube, bilateral|Intrinsic cartilagenous obstruction of Eustachian tube, bilateral +C0271471|T047|AB|H68.129|ICD10CM|Intrinsic cartilagenous obst of eustach tube, unsp ear|Intrinsic cartilagenous obst of eustach tube, unsp ear +C0271471|T047|PT|H68.129|ICD10CM|Intrinsic cartilagenous obstruction of Eustachian tube, unspecified ear|Intrinsic cartilagenous obstruction of Eustachian tube, unspecified ear +C0271472|T047|ET|H68.13|ICD10CM|Compression of Eustachian tube|Compression of Eustachian tube +C0155433|T047|HT|H68.13|ICD10CM|Extrinsic cartilagenous obstruction of Eustachian tube|Extrinsic cartilagenous obstruction of Eustachian tube +C0155433|T047|AB|H68.13|ICD10CM|Extrinsic cartilagenous obstruction of Eustachian tube|Extrinsic cartilagenous obstruction of Eustachian tube +C2881730|T047|AB|H68.131|ICD10CM|Extrinsic cartilagenous obst of eustach tube, right ear|Extrinsic cartilagenous obst of eustach tube, right ear +C2881730|T047|PT|H68.131|ICD10CM|Extrinsic cartilagenous obstruction of Eustachian tube, right ear|Extrinsic cartilagenous obstruction of Eustachian tube, right ear +C2881731|T047|AB|H68.132|ICD10CM|Extrinsic cartilagenous obst of eustach tube, left ear|Extrinsic cartilagenous obst of eustach tube, left ear +C2881731|T047|PT|H68.132|ICD10CM|Extrinsic cartilagenous obstruction of Eustachian tube, left ear|Extrinsic cartilagenous obstruction of Eustachian tube, left ear +C2881732|T047|AB|H68.133|ICD10CM|Extrinsic cartilagenous obst of eustach tube, bilateral|Extrinsic cartilagenous obst of eustach tube, bilateral +C2881732|T047|PT|H68.133|ICD10CM|Extrinsic cartilagenous obstruction of Eustachian tube, bilateral|Extrinsic cartilagenous obstruction of Eustachian tube, bilateral +C2881733|T047|AB|H68.139|ICD10CM|Extrinsic cartilagenous obst of eustach tube, unsp ear|Extrinsic cartilagenous obst of eustach tube, unsp ear +C2881733|T047|PT|H68.139|ICD10CM|Extrinsic cartilagenous obstruction of Eustachian tube, unspecified ear|Extrinsic cartilagenous obstruction of Eustachian tube, unspecified ear +C2881734|T047|AB|H69|ICD10CM|Other and unspecified disorders of Eustachian tube|Other and unspecified disorders of Eustachian tube +C2881734|T047|HT|H69|ICD10CM|Other and unspecified disorders of Eustachian tube|Other and unspecified disorders of Eustachian tube +C0155435|T047|HT|H69|ICD10|Other disorders of Eustachian tube|Other disorders of Eustachian tube +C0155434|T047|PT|H69.0|ICD10|Patulous Eustachian tube|Patulous Eustachian tube +C0155434|T047|HT|H69.0|ICD10CM|Patulous Eustachian tube|Patulous Eustachian tube +C0155434|T047|AB|H69.0|ICD10CM|Patulous Eustachian tube|Patulous Eustachian tube +C0155434|T047|AB|H69.00|ICD10CM|Patulous Eustachian tube, unspecified ear|Patulous Eustachian tube, unspecified ear +C0155434|T047|PT|H69.00|ICD10CM|Patulous Eustachian tube, unspecified ear|Patulous Eustachian tube, unspecified ear +C2881735|T047|AB|H69.01|ICD10CM|Patulous Eustachian tube, right ear|Patulous Eustachian tube, right ear +C2881735|T047|PT|H69.01|ICD10CM|Patulous Eustachian tube, right ear|Patulous Eustachian tube, right ear +C2881736|T047|AB|H69.02|ICD10CM|Patulous Eustachian tube, left ear|Patulous Eustachian tube, left ear +C2881736|T047|PT|H69.02|ICD10CM|Patulous Eustachian tube, left ear|Patulous Eustachian tube, left ear +C2881737|T047|AB|H69.03|ICD10CM|Patulous Eustachian tube, bilateral|Patulous Eustachian tube, bilateral +C2881737|T047|PT|H69.03|ICD10CM|Patulous Eustachian tube, bilateral|Patulous Eustachian tube, bilateral +C0477449|T047|HT|H69.8|ICD10CM|Other specified disorders of Eustachian tube|Other specified disorders of Eustachian tube +C0477449|T047|AB|H69.8|ICD10CM|Other specified disorders of Eustachian tube|Other specified disorders of Eustachian tube +C0477449|T047|PT|H69.8|ICD10|Other specified disorders of Eustachian tube|Other specified disorders of Eustachian tube +C0477449|T047|AB|H69.80|ICD10CM|Oth disrd of Eustachian tube, unspecified ear|Oth disrd of Eustachian tube, unspecified ear +C0477449|T047|PT|H69.80|ICD10CM|Other specified disorders of Eustachian tube, unspecified ear|Other specified disorders of Eustachian tube, unspecified ear +C2881738|T047|AB|H69.81|ICD10CM|Other specified disorders of Eustachian tube, right ear|Other specified disorders of Eustachian tube, right ear +C2881738|T047|PT|H69.81|ICD10CM|Other specified disorders of Eustachian tube, right ear|Other specified disorders of Eustachian tube, right ear +C2881739|T047|AB|H69.82|ICD10CM|Other specified disorders of Eustachian tube, left ear|Other specified disorders of Eustachian tube, left ear +C2881739|T047|PT|H69.82|ICD10CM|Other specified disorders of Eustachian tube, left ear|Other specified disorders of Eustachian tube, left ear +C2881740|T047|AB|H69.83|ICD10CM|Other specified disorders of Eustachian tube, bilateral|Other specified disorders of Eustachian tube, bilateral +C2881740|T047|PT|H69.83|ICD10CM|Other specified disorders of Eustachian tube, bilateral|Other specified disorders of Eustachian tube, bilateral +C0271468|T047|PT|H69.9|ICD10|Eustachian tube disorder, unspecified|Eustachian tube disorder, unspecified +C0271468|T047|HT|H69.9|ICD10CM|Unspecified Eustachian tube disorder|Unspecified Eustachian tube disorder +C0271468|T047|AB|H69.9|ICD10CM|Unspecified Eustachian tube disorder|Unspecified Eustachian tube disorder +C0271468|T047|AB|H69.90|ICD10CM|Unspecified Eustachian tube disorder, unspecified ear|Unspecified Eustachian tube disorder, unspecified ear +C0271468|T047|PT|H69.90|ICD10CM|Unspecified Eustachian tube disorder, unspecified ear|Unspecified Eustachian tube disorder, unspecified ear +C2881741|T047|AB|H69.91|ICD10CM|Unspecified Eustachian tube disorder, right ear|Unspecified Eustachian tube disorder, right ear +C2881741|T047|PT|H69.91|ICD10CM|Unspecified Eustachian tube disorder, right ear|Unspecified Eustachian tube disorder, right ear +C2881742|T047|AB|H69.92|ICD10CM|Unspecified Eustachian tube disorder, left ear|Unspecified Eustachian tube disorder, left ear +C2881742|T047|PT|H69.92|ICD10CM|Unspecified Eustachian tube disorder, left ear|Unspecified Eustachian tube disorder, left ear +C2881743|T047|AB|H69.93|ICD10CM|Unspecified Eustachian tube disorder, bilateral|Unspecified Eustachian tube disorder, bilateral +C2881743|T047|PT|H69.93|ICD10CM|Unspecified Eustachian tube disorder, bilateral|Unspecified Eustachian tube disorder, bilateral +C0155442|T047|HT|H70|ICD10CM|Mastoiditis and related conditions|Mastoiditis and related conditions +C0155442|T047|AB|H70|ICD10CM|Mastoiditis and related conditions|Mastoiditis and related conditions +C0155442|T047|HT|H70|ICD10|Mastoiditis and related conditions|Mastoiditis and related conditions +C0271475|T047|ET|H70.0|ICD10CM|Abscess of mastoid|Abscess of mastoid +C0701825|T047|HT|H70.0|ICD10CM|Acute mastoiditis|Acute mastoiditis +C0701825|T047|AB|H70.0|ICD10CM|Acute mastoiditis|Acute mastoiditis +C0701825|T047|PT|H70.0|ICD10|Acute mastoiditis|Acute mastoiditis +C0271476|T047|ET|H70.0|ICD10CM|Empyema of mastoid|Empyema of mastoid +C0795702|T047|HT|H70.00|ICD10CM|Acute mastoiditis without complications|Acute mastoiditis without complications +C0795702|T047|AB|H70.00|ICD10CM|Acute mastoiditis without complications|Acute mastoiditis without complications +C2881744|T047|AB|H70.001|ICD10CM|Acute mastoiditis without complications, right ear|Acute mastoiditis without complications, right ear +C2881744|T047|PT|H70.001|ICD10CM|Acute mastoiditis without complications, right ear|Acute mastoiditis without complications, right ear +C2881745|T047|AB|H70.002|ICD10CM|Acute mastoiditis without complications, left ear|Acute mastoiditis without complications, left ear +C2881745|T047|PT|H70.002|ICD10CM|Acute mastoiditis without complications, left ear|Acute mastoiditis without complications, left ear +C2881746|T047|AB|H70.003|ICD10CM|Acute mastoiditis without complications, bilateral|Acute mastoiditis without complications, bilateral +C2881746|T047|PT|H70.003|ICD10CM|Acute mastoiditis without complications, bilateral|Acute mastoiditis without complications, bilateral +C2881747|T047|AB|H70.009|ICD10CM|Acute mastoiditis without complications, unspecified ear|Acute mastoiditis without complications, unspecified ear +C2881747|T047|PT|H70.009|ICD10CM|Acute mastoiditis without complications, unspecified ear|Acute mastoiditis without complications, unspecified ear +C0155445|T047|HT|H70.01|ICD10CM|Subperiosteal abscess of mastoid|Subperiosteal abscess of mastoid +C0155445|T047|AB|H70.01|ICD10CM|Subperiosteal abscess of mastoid|Subperiosteal abscess of mastoid +C2881748|T047|AB|H70.011|ICD10CM|Subperiosteal abscess of mastoid, right ear|Subperiosteal abscess of mastoid, right ear +C2881748|T047|PT|H70.011|ICD10CM|Subperiosteal abscess of mastoid, right ear|Subperiosteal abscess of mastoid, right ear +C2881749|T047|AB|H70.012|ICD10CM|Subperiosteal abscess of mastoid, left ear|Subperiosteal abscess of mastoid, left ear +C2881749|T047|PT|H70.012|ICD10CM|Subperiosteal abscess of mastoid, left ear|Subperiosteal abscess of mastoid, left ear +C2881750|T047|AB|H70.013|ICD10CM|Subperiosteal abscess of mastoid, bilateral|Subperiosteal abscess of mastoid, bilateral +C2881750|T047|PT|H70.013|ICD10CM|Subperiosteal abscess of mastoid, bilateral|Subperiosteal abscess of mastoid, bilateral +C2881751|T047|AB|H70.019|ICD10CM|Subperiosteal abscess of mastoid, unspecified ear|Subperiosteal abscess of mastoid, unspecified ear +C2881751|T047|PT|H70.019|ICD10CM|Subperiosteal abscess of mastoid, unspecified ear|Subperiosteal abscess of mastoid, unspecified ear +C0155446|T047|HT|H70.09|ICD10CM|Acute mastoiditis with other complications|Acute mastoiditis with other complications +C0155446|T047|AB|H70.09|ICD10CM|Acute mastoiditis with other complications|Acute mastoiditis with other complications +C2881752|T047|AB|H70.091|ICD10CM|Acute mastoiditis with other complications, right ear|Acute mastoiditis with other complications, right ear +C2881752|T047|PT|H70.091|ICD10CM|Acute mastoiditis with other complications, right ear|Acute mastoiditis with other complications, right ear +C2881753|T047|AB|H70.092|ICD10CM|Acute mastoiditis with other complications, left ear|Acute mastoiditis with other complications, left ear +C2881753|T047|PT|H70.092|ICD10CM|Acute mastoiditis with other complications, left ear|Acute mastoiditis with other complications, left ear +C2881754|T047|AB|H70.093|ICD10CM|Acute mastoiditis with other complications, bilateral|Acute mastoiditis with other complications, bilateral +C2881754|T047|PT|H70.093|ICD10CM|Acute mastoiditis with other complications, bilateral|Acute mastoiditis with other complications, bilateral +C2881755|T047|AB|H70.099|ICD10CM|Acute mastoiditis with other complications, unspecified ear|Acute mastoiditis with other complications, unspecified ear +C2881755|T047|PT|H70.099|ICD10CM|Acute mastoiditis with other complications, unspecified ear|Acute mastoiditis with other complications, unspecified ear +C0271477|T047|ET|H70.1|ICD10CM|Caries of mastoid|Caries of mastoid +C0155447|T047|PT|H70.1|ICD10|Chronic mastoiditis|Chronic mastoiditis +C0155447|T047|HT|H70.1|ICD10CM|Chronic mastoiditis|Chronic mastoiditis +C0155447|T047|AB|H70.1|ICD10CM|Chronic mastoiditis|Chronic mastoiditis +C0271478|T190|ET|H70.1|ICD10CM|Fistula of mastoid|Fistula of mastoid +C0155447|T047|AB|H70.10|ICD10CM|Chronic mastoiditis, unspecified ear|Chronic mastoiditis, unspecified ear +C0155447|T047|PT|H70.10|ICD10CM|Chronic mastoiditis, unspecified ear|Chronic mastoiditis, unspecified ear +C2881756|T047|AB|H70.11|ICD10CM|Chronic mastoiditis, right ear|Chronic mastoiditis, right ear +C2881756|T047|PT|H70.11|ICD10CM|Chronic mastoiditis, right ear|Chronic mastoiditis, right ear +C2881757|T047|AB|H70.12|ICD10CM|Chronic mastoiditis, left ear|Chronic mastoiditis, left ear +C2881757|T047|PT|H70.12|ICD10CM|Chronic mastoiditis, left ear|Chronic mastoiditis, left ear +C2881758|T047|AB|H70.13|ICD10CM|Chronic mastoiditis, bilateral|Chronic mastoiditis, bilateral +C2881758|T047|PT|H70.13|ICD10CM|Chronic mastoiditis, bilateral|Chronic mastoiditis, bilateral +C0155448|T047|ET|H70.2|ICD10CM|Inflammation of petrous bone|Inflammation of petrous bone +C0155448|T047|HT|H70.2|ICD10CM|Petrositis|Petrositis +C0155448|T047|AB|H70.2|ICD10CM|Petrositis|Petrositis +C0155448|T047|PT|H70.2|ICD10|Petrositis|Petrositis +C0155448|T047|AB|H70.20|ICD10CM|Unspecified petrositis|Unspecified petrositis +C0155448|T047|HT|H70.20|ICD10CM|Unspecified petrositis|Unspecified petrositis +C2881759|T047|AB|H70.201|ICD10CM|Unspecified petrositis, right ear|Unspecified petrositis, right ear +C2881759|T047|PT|H70.201|ICD10CM|Unspecified petrositis, right ear|Unspecified petrositis, right ear +C2881760|T047|AB|H70.202|ICD10CM|Unspecified petrositis, left ear|Unspecified petrositis, left ear +C2881760|T047|PT|H70.202|ICD10CM|Unspecified petrositis, left ear|Unspecified petrositis, left ear +C2881761|T047|AB|H70.203|ICD10CM|Unspecified petrositis, bilateral|Unspecified petrositis, bilateral +C2881761|T047|PT|H70.203|ICD10CM|Unspecified petrositis, bilateral|Unspecified petrositis, bilateral +C0155448|T047|AB|H70.209|ICD10CM|Unspecified petrositis, unspecified ear|Unspecified petrositis, unspecified ear +C0155448|T047|PT|H70.209|ICD10CM|Unspecified petrositis, unspecified ear|Unspecified petrositis, unspecified ear +C0155449|T047|HT|H70.21|ICD10CM|Acute petrositis|Acute petrositis +C0155449|T047|AB|H70.21|ICD10CM|Acute petrositis|Acute petrositis +C2881762|T047|AB|H70.211|ICD10CM|Acute petrositis, right ear|Acute petrositis, right ear +C2881762|T047|PT|H70.211|ICD10CM|Acute petrositis, right ear|Acute petrositis, right ear +C2881763|T047|AB|H70.212|ICD10CM|Acute petrositis, left ear|Acute petrositis, left ear +C2881763|T047|PT|H70.212|ICD10CM|Acute petrositis, left ear|Acute petrositis, left ear +C2881764|T047|AB|H70.213|ICD10CM|Acute petrositis, bilateral|Acute petrositis, bilateral +C2881764|T047|PT|H70.213|ICD10CM|Acute petrositis, bilateral|Acute petrositis, bilateral +C0155449|T047|AB|H70.219|ICD10CM|Acute petrositis, unspecified ear|Acute petrositis, unspecified ear +C0155449|T047|PT|H70.219|ICD10CM|Acute petrositis, unspecified ear|Acute petrositis, unspecified ear +C0155450|T047|HT|H70.22|ICD10CM|Chronic petrositis|Chronic petrositis +C0155450|T047|AB|H70.22|ICD10CM|Chronic petrositis|Chronic petrositis +C2881765|T047|AB|H70.221|ICD10CM|Chronic petrositis, right ear|Chronic petrositis, right ear +C2881765|T047|PT|H70.221|ICD10CM|Chronic petrositis, right ear|Chronic petrositis, right ear +C2881766|T047|AB|H70.222|ICD10CM|Chronic petrositis, left ear|Chronic petrositis, left ear +C2881766|T047|PT|H70.222|ICD10CM|Chronic petrositis, left ear|Chronic petrositis, left ear +C2881767|T047|AB|H70.223|ICD10CM|Chronic petrositis, bilateral|Chronic petrositis, bilateral +C2881767|T047|PT|H70.223|ICD10CM|Chronic petrositis, bilateral|Chronic petrositis, bilateral +C0155450|T047|AB|H70.229|ICD10CM|Chronic petrositis, unspecified ear|Chronic petrositis, unspecified ear +C0155450|T047|PT|H70.229|ICD10CM|Chronic petrositis, unspecified ear|Chronic petrositis, unspecified ear +C0477450|T047|HT|H70.8|ICD10CM|Other mastoiditis and related conditions|Other mastoiditis and related conditions +C0477450|T047|AB|H70.8|ICD10CM|Other mastoiditis and related conditions|Other mastoiditis and related conditions +C0477450|T047|PT|H70.8|ICD10|Other mastoiditis and related conditions|Other mastoiditis and related conditions +C0395905|T020|HT|H70.81|ICD10CM|Postauricular fistula|Postauricular fistula +C0395905|T020|AB|H70.81|ICD10CM|Postauricular fistula|Postauricular fistula +C2103555|T020|AB|H70.811|ICD10CM|Postauricular fistula, right ear|Postauricular fistula, right ear +C2103555|T020|PT|H70.811|ICD10CM|Postauricular fistula, right ear|Postauricular fistula, right ear +C2104095|T020|AB|H70.812|ICD10CM|Postauricular fistula, left ear|Postauricular fistula, left ear +C2104095|T020|PT|H70.812|ICD10CM|Postauricular fistula, left ear|Postauricular fistula, left ear +C2881768|T190|AB|H70.813|ICD10CM|Postauricular fistula, bilateral|Postauricular fistula, bilateral +C2881768|T190|PT|H70.813|ICD10CM|Postauricular fistula, bilateral|Postauricular fistula, bilateral +C0395905|T020|AB|H70.819|ICD10CM|Postauricular fistula, unspecified ear|Postauricular fistula, unspecified ear +C0395905|T020|PT|H70.819|ICD10CM|Postauricular fistula, unspecified ear|Postauricular fistula, unspecified ear +C0477450|T047|HT|H70.89|ICD10CM|Other mastoiditis and related conditions|Other mastoiditis and related conditions +C0477450|T047|AB|H70.89|ICD10CM|Other mastoiditis and related conditions|Other mastoiditis and related conditions +C2881769|T047|AB|H70.891|ICD10CM|Other mastoiditis and related conditions, right ear|Other mastoiditis and related conditions, right ear +C2881769|T047|PT|H70.891|ICD10CM|Other mastoiditis and related conditions, right ear|Other mastoiditis and related conditions, right ear +C2881770|T047|AB|H70.892|ICD10CM|Other mastoiditis and related conditions, left ear|Other mastoiditis and related conditions, left ear +C2881770|T047|PT|H70.892|ICD10CM|Other mastoiditis and related conditions, left ear|Other mastoiditis and related conditions, left ear +C2881771|T047|AB|H70.893|ICD10CM|Other mastoiditis and related conditions, bilateral|Other mastoiditis and related conditions, bilateral +C2881771|T047|PT|H70.893|ICD10CM|Other mastoiditis and related conditions, bilateral|Other mastoiditis and related conditions, bilateral +C0477450|T047|AB|H70.899|ICD10CM|Other mastoiditis and related conditions, unspecified ear|Other mastoiditis and related conditions, unspecified ear +C0477450|T047|PT|H70.899|ICD10CM|Other mastoiditis and related conditions, unspecified ear|Other mastoiditis and related conditions, unspecified ear +C0024904|T047|PT|H70.9|ICD10|Mastoiditis, unspecified|Mastoiditis, unspecified +C0024904|T047|HT|H70.9|ICD10CM|Unspecified mastoiditis|Unspecified mastoiditis +C0024904|T047|AB|H70.9|ICD10CM|Unspecified mastoiditis|Unspecified mastoiditis +C0024904|T047|AB|H70.90|ICD10CM|Unspecified mastoiditis, unspecified ear|Unspecified mastoiditis, unspecified ear +C0024904|T047|PT|H70.90|ICD10CM|Unspecified mastoiditis, unspecified ear|Unspecified mastoiditis, unspecified ear +C2881772|T047|AB|H70.91|ICD10CM|Unspecified mastoiditis, right ear|Unspecified mastoiditis, right ear +C2881772|T047|PT|H70.91|ICD10CM|Unspecified mastoiditis, right ear|Unspecified mastoiditis, right ear +C2881773|T047|AB|H70.92|ICD10CM|Unspecified mastoiditis, left ear|Unspecified mastoiditis, left ear +C2881773|T047|PT|H70.92|ICD10CM|Unspecified mastoiditis, left ear|Unspecified mastoiditis, left ear +C2881774|T047|AB|H70.93|ICD10CM|Unspecified mastoiditis, bilateral|Unspecified mastoiditis, bilateral +C2881774|T047|PT|H70.93|ICD10CM|Unspecified mastoiditis, bilateral|Unspecified mastoiditis, bilateral +C0155490|T047|PT|H71|ICD10|Cholesteatoma of middle ear|Cholesteatoma of middle ear +C0155490|T047|HT|H71|ICD10CM|Cholesteatoma of middle ear|Cholesteatoma of middle ear +C0155490|T047|AB|H71|ICD10CM|Cholesteatoma of middle ear|Cholesteatoma of middle ear +C0155489|T047|HT|H71.0|ICD10CM|Cholesteatoma of attic|Cholesteatoma of attic +C0155489|T047|AB|H71.0|ICD10CM|Cholesteatoma of attic|Cholesteatoma of attic +C0155489|T047|AB|H71.00|ICD10CM|Cholesteatoma of attic, unspecified ear|Cholesteatoma of attic, unspecified ear +C0155489|T047|PT|H71.00|ICD10CM|Cholesteatoma of attic, unspecified ear|Cholesteatoma of attic, unspecified ear +C2881775|T047|AB|H71.01|ICD10CM|Cholesteatoma of attic, right ear|Cholesteatoma of attic, right ear +C2881775|T047|PT|H71.01|ICD10CM|Cholesteatoma of attic, right ear|Cholesteatoma of attic, right ear +C2881776|T047|AB|H71.02|ICD10CM|Cholesteatoma of attic, left ear|Cholesteatoma of attic, left ear +C2881776|T047|PT|H71.02|ICD10CM|Cholesteatoma of attic, left ear|Cholesteatoma of attic, left ear +C2881777|T047|AB|H71.03|ICD10CM|Cholesteatoma of attic, bilateral|Cholesteatoma of attic, bilateral +C2881777|T047|PT|H71.03|ICD10CM|Cholesteatoma of attic, bilateral|Cholesteatoma of attic, bilateral +C2881778|T047|HT|H71.1|ICD10CM|Cholesteatoma of tympanum|Cholesteatoma of tympanum +C2881778|T047|AB|H71.1|ICD10CM|Cholesteatoma of tympanum|Cholesteatoma of tympanum +C2881778|T047|AB|H71.10|ICD10CM|Cholesteatoma of tympanum, unspecified ear|Cholesteatoma of tympanum, unspecified ear +C2881778|T047|PT|H71.10|ICD10CM|Cholesteatoma of tympanum, unspecified ear|Cholesteatoma of tympanum, unspecified ear +C2881779|T047|AB|H71.11|ICD10CM|Cholesteatoma of tympanum, right ear|Cholesteatoma of tympanum, right ear +C2881779|T047|PT|H71.11|ICD10CM|Cholesteatoma of tympanum, right ear|Cholesteatoma of tympanum, right ear +C2881780|T047|AB|H71.12|ICD10CM|Cholesteatoma of tympanum, left ear|Cholesteatoma of tympanum, left ear +C2881780|T047|PT|H71.12|ICD10CM|Cholesteatoma of tympanum, left ear|Cholesteatoma of tympanum, left ear +C2881781|T047|AB|H71.13|ICD10CM|Cholesteatoma of tympanum, bilateral|Cholesteatoma of tympanum, bilateral +C2881781|T047|PT|H71.13|ICD10CM|Cholesteatoma of tympanum, bilateral|Cholesteatoma of tympanum, bilateral +C0395884|T047|HT|H71.2|ICD10CM|Cholesteatoma of mastoid|Cholesteatoma of mastoid +C0395884|T047|AB|H71.2|ICD10CM|Cholesteatoma of mastoid|Cholesteatoma of mastoid +C0395884|T047|AB|H71.20|ICD10CM|Cholesteatoma of mastoid, unspecified ear|Cholesteatoma of mastoid, unspecified ear +C0395884|T047|PT|H71.20|ICD10CM|Cholesteatoma of mastoid, unspecified ear|Cholesteatoma of mastoid, unspecified ear +C2881782|T047|AB|H71.21|ICD10CM|Cholesteatoma of mastoid, right ear|Cholesteatoma of mastoid, right ear +C2881782|T047|PT|H71.21|ICD10CM|Cholesteatoma of mastoid, right ear|Cholesteatoma of mastoid, right ear +C2881783|T047|AB|H71.22|ICD10CM|Cholesteatoma of mastoid, left ear|Cholesteatoma of mastoid, left ear +C2881783|T047|PT|H71.22|ICD10CM|Cholesteatoma of mastoid, left ear|Cholesteatoma of mastoid, left ear +C2881784|T047|AB|H71.23|ICD10CM|Cholesteatoma of mastoid, bilateral|Cholesteatoma of mastoid, bilateral +C2881784|T047|PT|H71.23|ICD10CM|Cholesteatoma of mastoid, bilateral|Cholesteatoma of mastoid, bilateral +C0271467|T047|AB|H71.3|ICD10CM|Diffuse cholesteatosis|Diffuse cholesteatosis +C0271467|T047|HT|H71.3|ICD10CM|Diffuse cholesteatosis|Diffuse cholesteatosis +C2881785|T047|AB|H71.30|ICD10CM|Diffuse cholesteatosis, unspecified ear|Diffuse cholesteatosis, unspecified ear +C2881785|T047|PT|H71.30|ICD10CM|Diffuse cholesteatosis, unspecified ear|Diffuse cholesteatosis, unspecified ear +C2881786|T047|AB|H71.31|ICD10CM|Diffuse cholesteatosis, right ear|Diffuse cholesteatosis, right ear +C2881786|T047|PT|H71.31|ICD10CM|Diffuse cholesteatosis, right ear|Diffuse cholesteatosis, right ear +C2881787|T047|AB|H71.32|ICD10CM|Diffuse cholesteatosis, left ear|Diffuse cholesteatosis, left ear +C2881787|T047|PT|H71.32|ICD10CM|Diffuse cholesteatosis, left ear|Diffuse cholesteatosis, left ear +C2881788|T047|AB|H71.33|ICD10CM|Diffuse cholesteatosis, bilateral|Diffuse cholesteatosis, bilateral +C2881788|T047|PT|H71.33|ICD10CM|Diffuse cholesteatosis, bilateral|Diffuse cholesteatosis, bilateral +C0008373|T047|AB|H71.9|ICD10CM|Unspecified cholesteatoma|Unspecified cholesteatoma +C0008373|T047|HT|H71.9|ICD10CM|Unspecified cholesteatoma|Unspecified cholesteatoma +C0008373|T047|AB|H71.90|ICD10CM|Unspecified cholesteatoma, unspecified ear|Unspecified cholesteatoma, unspecified ear +C0008373|T047|PT|H71.90|ICD10CM|Unspecified cholesteatoma, unspecified ear|Unspecified cholesteatoma, unspecified ear +C2881789|T047|AB|H71.91|ICD10CM|Unspecified cholesteatoma, right ear|Unspecified cholesteatoma, right ear +C2881789|T047|PT|H71.91|ICD10CM|Unspecified cholesteatoma, right ear|Unspecified cholesteatoma, right ear +C2881790|T047|AB|H71.92|ICD10CM|Unspecified cholesteatoma, left ear|Unspecified cholesteatoma, left ear +C2881790|T047|PT|H71.92|ICD10CM|Unspecified cholesteatoma, left ear|Unspecified cholesteatoma, left ear +C2881791|T047|AB|H71.93|ICD10CM|Unspecified cholesteatoma, bilateral|Unspecified cholesteatoma, bilateral +C2881791|T047|PT|H71.93|ICD10CM|Unspecified cholesteatoma, bilateral|Unspecified cholesteatoma, bilateral +C0206504|T037|HT|H72|ICD10CM|Perforation of tympanic membrane|Perforation of tympanic membrane +C0206504|T037|AB|H72|ICD10CM|Perforation of tympanic membrane|Perforation of tympanic membrane +C0206504|T037|HT|H72|ICD10|Perforation of tympanic membrane|Perforation of tympanic membrane +C4290128|T037|ET|H72|ICD10CM|persistent post-traumatic perforation of ear drum|persistent post-traumatic perforation of ear drum +C0271483|T047|ET|H72|ICD10CM|postinflammatory perforation of ear drum|postinflammatory perforation of ear drum +C0155464|T020|PT|H72.0|ICD10|Central perforation of tympanic membrane|Central perforation of tympanic membrane +C0155464|T020|HT|H72.0|ICD10CM|Central perforation of tympanic membrane|Central perforation of tympanic membrane +C0155464|T020|AB|H72.0|ICD10CM|Central perforation of tympanic membrane|Central perforation of tympanic membrane +C2881793|T020|AB|H72.00|ICD10CM|Central perforation of tympanic membrane, unspecified ear|Central perforation of tympanic membrane, unspecified ear +C2881793|T020|PT|H72.00|ICD10CM|Central perforation of tympanic membrane, unspecified ear|Central perforation of tympanic membrane, unspecified ear +C2881794|T020|AB|H72.01|ICD10CM|Central perforation of tympanic membrane, right ear|Central perforation of tympanic membrane, right ear +C2881794|T020|PT|H72.01|ICD10CM|Central perforation of tympanic membrane, right ear|Central perforation of tympanic membrane, right ear +C2881795|T020|AB|H72.02|ICD10CM|Central perforation of tympanic membrane, left ear|Central perforation of tympanic membrane, left ear +C2881795|T020|PT|H72.02|ICD10CM|Central perforation of tympanic membrane, left ear|Central perforation of tympanic membrane, left ear +C2881796|T020|AB|H72.03|ICD10CM|Central perforation of tympanic membrane, bilateral|Central perforation of tympanic membrane, bilateral +C2881796|T020|PT|H72.03|ICD10CM|Central perforation of tympanic membrane, bilateral|Central perforation of tympanic membrane, bilateral +C0155465|T033|HT|H72.1|ICD10CM|Attic perforation of tympanic membrane|Attic perforation of tympanic membrane +C0155465|T033|AB|H72.1|ICD10CM|Attic perforation of tympanic membrane|Attic perforation of tympanic membrane +C0155465|T033|PT|H72.1|ICD10|Attic perforation of tympanic membrane|Attic perforation of tympanic membrane +C0155465|T033|ET|H72.1|ICD10CM|Perforation of pars flaccida|Perforation of pars flaccida +C0155465|T033|AB|H72.10|ICD10CM|Attic perforation of tympanic membrane, unspecified ear|Attic perforation of tympanic membrane, unspecified ear +C0155465|T033|PT|H72.10|ICD10CM|Attic perforation of tympanic membrane, unspecified ear|Attic perforation of tympanic membrane, unspecified ear +C2881797|T033|AB|H72.11|ICD10CM|Attic perforation of tympanic membrane, right ear|Attic perforation of tympanic membrane, right ear +C2881797|T033|PT|H72.11|ICD10CM|Attic perforation of tympanic membrane, right ear|Attic perforation of tympanic membrane, right ear +C2881798|T033|AB|H72.12|ICD10CM|Attic perforation of tympanic membrane, left ear|Attic perforation of tympanic membrane, left ear +C2881798|T033|PT|H72.12|ICD10CM|Attic perforation of tympanic membrane, left ear|Attic perforation of tympanic membrane, left ear +C2881799|T033|AB|H72.13|ICD10CM|Attic perforation of tympanic membrane, bilateral|Attic perforation of tympanic membrane, bilateral +C2881799|T033|PT|H72.13|ICD10CM|Attic perforation of tympanic membrane, bilateral|Attic perforation of tympanic membrane, bilateral +C0155466|T047|HT|H72.2|ICD10CM|Other marginal perforations of tympanic membrane|Other marginal perforations of tympanic membrane +C0155466|T047|AB|H72.2|ICD10CM|Other marginal perforations of tympanic membrane|Other marginal perforations of tympanic membrane +C0155466|T047|PT|H72.2|ICD10|Other marginal perforations of tympanic membrane|Other marginal perforations of tympanic membrane +C0155466|T047|HT|H72.2X|ICD10CM|Other marginal perforations of tympanic membrane|Other marginal perforations of tympanic membrane +C0155466|T047|AB|H72.2X|ICD10CM|Other marginal perforations of tympanic membrane|Other marginal perforations of tympanic membrane +C2881800|T047|AB|H72.2X1|ICD10CM|Other marginal perforations of tympanic membrane, right ear|Other marginal perforations of tympanic membrane, right ear +C2881800|T047|PT|H72.2X1|ICD10CM|Other marginal perforations of tympanic membrane, right ear|Other marginal perforations of tympanic membrane, right ear +C2881801|T047|AB|H72.2X2|ICD10CM|Other marginal perforations of tympanic membrane, left ear|Other marginal perforations of tympanic membrane, left ear +C2881801|T047|PT|H72.2X2|ICD10CM|Other marginal perforations of tympanic membrane, left ear|Other marginal perforations of tympanic membrane, left ear +C2881802|T047|AB|H72.2X3|ICD10CM|Other marginal perforations of tympanic membrane, bilateral|Other marginal perforations of tympanic membrane, bilateral +C2881802|T047|PT|H72.2X3|ICD10CM|Other marginal perforations of tympanic membrane, bilateral|Other marginal perforations of tympanic membrane, bilateral +C0155466|T047|AB|H72.2X9|ICD10CM|Other marginal perforations of tympanic membrane, unsp ear|Other marginal perforations of tympanic membrane, unsp ear +C0155466|T047|PT|H72.2X9|ICD10CM|Other marginal perforations of tympanic membrane, unspecified ear|Other marginal perforations of tympanic membrane, unspecified ear +C0477451|T020|HT|H72.8|ICD10CM|Other perforations of tympanic membrane|Other perforations of tympanic membrane +C0477451|T020|AB|H72.8|ICD10CM|Other perforations of tympanic membrane|Other perforations of tympanic membrane +C0477451|T020|PT|H72.8|ICD10|Other perforations of tympanic membrane|Other perforations of tympanic membrane +C0155467|T047|HT|H72.81|ICD10CM|Multiple perforations of tympanic membrane|Multiple perforations of tympanic membrane +C0155467|T047|AB|H72.81|ICD10CM|Multiple perforations of tympanic membrane|Multiple perforations of tympanic membrane +C2881803|T047|AB|H72.811|ICD10CM|Multiple perforations of tympanic membrane, right ear|Multiple perforations of tympanic membrane, right ear +C2881803|T047|PT|H72.811|ICD10CM|Multiple perforations of tympanic membrane, right ear|Multiple perforations of tympanic membrane, right ear +C2881804|T047|AB|H72.812|ICD10CM|Multiple perforations of tympanic membrane, left ear|Multiple perforations of tympanic membrane, left ear +C2881804|T047|PT|H72.812|ICD10CM|Multiple perforations of tympanic membrane, left ear|Multiple perforations of tympanic membrane, left ear +C2881805|T047|AB|H72.813|ICD10CM|Multiple perforations of tympanic membrane, bilateral|Multiple perforations of tympanic membrane, bilateral +C2881805|T047|PT|H72.813|ICD10CM|Multiple perforations of tympanic membrane, bilateral|Multiple perforations of tympanic membrane, bilateral +C0155467|T047|AB|H72.819|ICD10CM|Multiple perforations of tympanic membrane, unspecified ear|Multiple perforations of tympanic membrane, unspecified ear +C0155467|T047|PT|H72.819|ICD10CM|Multiple perforations of tympanic membrane, unspecified ear|Multiple perforations of tympanic membrane, unspecified ear +C0155468|T047|AB|H72.82|ICD10CM|Total perforations of tympanic membrane|Total perforations of tympanic membrane +C0155468|T047|HT|H72.82|ICD10CM|Total perforations of tympanic membrane|Total perforations of tympanic membrane +C2881806|T033|AB|H72.821|ICD10CM|Total perforations of tympanic membrane, right ear|Total perforations of tympanic membrane, right ear +C2881806|T033|PT|H72.821|ICD10CM|Total perforations of tympanic membrane, right ear|Total perforations of tympanic membrane, right ear +C2881807|T033|AB|H72.822|ICD10CM|Total perforations of tympanic membrane, left ear|Total perforations of tympanic membrane, left ear +C2881807|T033|PT|H72.822|ICD10CM|Total perforations of tympanic membrane, left ear|Total perforations of tympanic membrane, left ear +C2881808|T047|AB|H72.823|ICD10CM|Total perforations of tympanic membrane, bilateral|Total perforations of tympanic membrane, bilateral +C2881808|T047|PT|H72.823|ICD10CM|Total perforations of tympanic membrane, bilateral|Total perforations of tympanic membrane, bilateral +C2881809|T033|AB|H72.829|ICD10CM|Total perforations of tympanic membrane, unspecified ear|Total perforations of tympanic membrane, unspecified ear +C2881809|T033|PT|H72.829|ICD10CM|Total perforations of tympanic membrane, unspecified ear|Total perforations of tympanic membrane, unspecified ear +C0206504|T037|PT|H72.9|ICD10|Perforation of tympanic membrane, unspecified|Perforation of tympanic membrane, unspecified +C0206504|T037|AB|H72.9|ICD10CM|Unspecified perforation of tympanic membrane|Unspecified perforation of tympanic membrane +C0206504|T037|HT|H72.9|ICD10CM|Unspecified perforation of tympanic membrane|Unspecified perforation of tympanic membrane +C0206504|T037|AB|H72.90|ICD10CM|Unsp perforation of tympanic membrane, unspecified ear|Unsp perforation of tympanic membrane, unspecified ear +C0206504|T037|PT|H72.90|ICD10CM|Unspecified perforation of tympanic membrane, unspecified ear|Unspecified perforation of tympanic membrane, unspecified ear +C2881810|T037|AB|H72.91|ICD10CM|Unspecified perforation of tympanic membrane, right ear|Unspecified perforation of tympanic membrane, right ear +C2881810|T037|PT|H72.91|ICD10CM|Unspecified perforation of tympanic membrane, right ear|Unspecified perforation of tympanic membrane, right ear +C2881811|T037|AB|H72.92|ICD10CM|Unspecified perforation of tympanic membrane, left ear|Unspecified perforation of tympanic membrane, left ear +C2881811|T037|PT|H72.92|ICD10CM|Unspecified perforation of tympanic membrane, left ear|Unspecified perforation of tympanic membrane, left ear +C2881812|T037|AB|H72.93|ICD10CM|Unspecified perforation of tympanic membrane, bilateral|Unspecified perforation of tympanic membrane, bilateral +C2881812|T037|PT|H72.93|ICD10CM|Unspecified perforation of tympanic membrane, bilateral|Unspecified perforation of tympanic membrane, bilateral +C0155458|T047|HT|H73|ICD10|Other disorders of tympanic membrane|Other disorders of tympanic membrane +C0155458|T047|HT|H73|ICD10CM|Other disorders of tympanic membrane|Other disorders of tympanic membrane +C0155458|T047|AB|H73|ICD10CM|Other disorders of tympanic membrane|Other disorders of tympanic membrane +C0155460|T047|HT|H73.0|ICD10CM|Acute myringitis|Acute myringitis +C0155460|T047|AB|H73.0|ICD10CM|Acute myringitis|Acute myringitis +C0155460|T047|PT|H73.0|ICD10|Acute myringitis|Acute myringitis +C0155460|T047|ET|H73.00|ICD10CM|Acute tympanitis NOS|Acute tympanitis NOS +C0155460|T047|AB|H73.00|ICD10CM|Unspecified acute myringitis|Unspecified acute myringitis +C0155460|T047|HT|H73.00|ICD10CM|Unspecified acute myringitis|Unspecified acute myringitis +C2881813|T047|AB|H73.001|ICD10CM|Acute myringitis, right ear|Acute myringitis, right ear +C2881813|T047|PT|H73.001|ICD10CM|Acute myringitis, right ear|Acute myringitis, right ear +C2881814|T047|AB|H73.002|ICD10CM|Acute myringitis, left ear|Acute myringitis, left ear +C2881814|T047|PT|H73.002|ICD10CM|Acute myringitis, left ear|Acute myringitis, left ear +C2881815|T047|AB|H73.003|ICD10CM|Acute myringitis, bilateral|Acute myringitis, bilateral +C2881815|T047|PT|H73.003|ICD10CM|Acute myringitis, bilateral|Acute myringitis, bilateral +C0155460|T047|AB|H73.009|ICD10CM|Acute myringitis, unspecified ear|Acute myringitis, unspecified ear +C0155460|T047|PT|H73.009|ICD10CM|Acute myringitis, unspecified ear|Acute myringitis, unspecified ear +C0155461|T047|HT|H73.01|ICD10CM|Bullous myringitis|Bullous myringitis +C0155461|T047|AB|H73.01|ICD10CM|Bullous myringitis|Bullous myringitis +C2881816|T047|AB|H73.011|ICD10CM|Bullous myringitis, right ear|Bullous myringitis, right ear +C2881816|T047|PT|H73.011|ICD10CM|Bullous myringitis, right ear|Bullous myringitis, right ear +C2881817|T047|AB|H73.012|ICD10CM|Bullous myringitis, left ear|Bullous myringitis, left ear +C2881817|T047|PT|H73.012|ICD10CM|Bullous myringitis, left ear|Bullous myringitis, left ear +C2881818|T047|AB|H73.013|ICD10CM|Bullous myringitis, bilateral|Bullous myringitis, bilateral +C2881818|T047|PT|H73.013|ICD10CM|Bullous myringitis, bilateral|Bullous myringitis, bilateral +C2881819|T047|AB|H73.019|ICD10CM|Bullous myringitis, unspecified ear|Bullous myringitis, unspecified ear +C2881819|T047|PT|H73.019|ICD10CM|Bullous myringitis, unspecified ear|Bullous myringitis, unspecified ear +C2881823|T047|AB|H73.09|ICD10CM|Other acute myringitis|Other acute myringitis +C2881823|T047|HT|H73.09|ICD10CM|Other acute myringitis|Other acute myringitis +C2881820|T047|AB|H73.091|ICD10CM|Other acute myringitis, right ear|Other acute myringitis, right ear +C2881820|T047|PT|H73.091|ICD10CM|Other acute myringitis, right ear|Other acute myringitis, right ear +C2881821|T047|AB|H73.092|ICD10CM|Other acute myringitis, left ear|Other acute myringitis, left ear +C2881821|T047|PT|H73.092|ICD10CM|Other acute myringitis, left ear|Other acute myringitis, left ear +C2881822|T047|AB|H73.093|ICD10CM|Other acute myringitis, bilateral|Other acute myringitis, bilateral +C2881822|T047|PT|H73.093|ICD10CM|Other acute myringitis, bilateral|Other acute myringitis, bilateral +C2881823|T047|AB|H73.099|ICD10CM|Other acute myringitis, unspecified ear|Other acute myringitis, unspecified ear +C2881823|T047|PT|H73.099|ICD10CM|Other acute myringitis, unspecified ear|Other acute myringitis, unspecified ear +C0395849|T047|PT|H73.1|ICD10|Chronic myringitis|Chronic myringitis +C0395849|T047|HT|H73.1|ICD10CM|Chronic myringitis|Chronic myringitis +C0395849|T047|AB|H73.1|ICD10CM|Chronic myringitis|Chronic myringitis +C0395849|T047|ET|H73.1|ICD10CM|Chronic tympanitis|Chronic tympanitis +C0395849|T047|AB|H73.10|ICD10CM|Chronic myringitis, unspecified ear|Chronic myringitis, unspecified ear +C0395849|T047|PT|H73.10|ICD10CM|Chronic myringitis, unspecified ear|Chronic myringitis, unspecified ear +C2881824|T047|AB|H73.11|ICD10CM|Chronic myringitis, right ear|Chronic myringitis, right ear +C2881824|T047|PT|H73.11|ICD10CM|Chronic myringitis, right ear|Chronic myringitis, right ear +C2881825|T047|AB|H73.12|ICD10CM|Chronic myringitis, left ear|Chronic myringitis, left ear +C2881825|T047|PT|H73.12|ICD10CM|Chronic myringitis, left ear|Chronic myringitis, left ear +C2881826|T047|AB|H73.13|ICD10CM|Chronic myringitis, bilateral|Chronic myringitis, bilateral +C2881826|T047|PT|H73.13|ICD10CM|Chronic myringitis, bilateral|Chronic myringitis, bilateral +C0027134|T047|AB|H73.2|ICD10CM|Unspecified myringitis|Unspecified myringitis +C0027134|T047|HT|H73.2|ICD10CM|Unspecified myringitis|Unspecified myringitis +C0027134|T047|AB|H73.20|ICD10CM|Unspecified myringitis, unspecified ear|Unspecified myringitis, unspecified ear +C0027134|T047|PT|H73.20|ICD10CM|Unspecified myringitis, unspecified ear|Unspecified myringitis, unspecified ear +C2881827|T047|AB|H73.21|ICD10CM|Unspecified myringitis, right ear|Unspecified myringitis, right ear +C2881827|T047|PT|H73.21|ICD10CM|Unspecified myringitis, right ear|Unspecified myringitis, right ear +C2881828|T047|AB|H73.22|ICD10CM|Unspecified myringitis, left ear|Unspecified myringitis, left ear +C2881828|T047|PT|H73.22|ICD10CM|Unspecified myringitis, left ear|Unspecified myringitis, left ear +C2881829|T047|AB|H73.23|ICD10CM|Unspecified myringitis, bilateral|Unspecified myringitis, bilateral +C2881829|T047|PT|H73.23|ICD10CM|Unspecified myringitis, bilateral|Unspecified myringitis, bilateral +C0155469|T047|HT|H73.8|ICD10CM|Other specified disorders of tympanic membrane|Other specified disorders of tympanic membrane +C0155469|T047|AB|H73.8|ICD10CM|Other specified disorders of tympanic membrane|Other specified disorders of tympanic membrane +C0155469|T047|PT|H73.8|ICD10|Other specified disorders of tympanic membrane|Other specified disorders of tympanic membrane +C0155470|T047|HT|H73.81|ICD10CM|Atrophic flaccid tympanic membrane|Atrophic flaccid tympanic membrane +C0155470|T047|AB|H73.81|ICD10CM|Atrophic flaccid tympanic membrane|Atrophic flaccid tympanic membrane +C2881830|T047|AB|H73.811|ICD10CM|Atrophic flaccid tympanic membrane, right ear|Atrophic flaccid tympanic membrane, right ear +C2881830|T047|PT|H73.811|ICD10CM|Atrophic flaccid tympanic membrane, right ear|Atrophic flaccid tympanic membrane, right ear +C2881831|T047|AB|H73.812|ICD10CM|Atrophic flaccid tympanic membrane, left ear|Atrophic flaccid tympanic membrane, left ear +C2881831|T047|PT|H73.812|ICD10CM|Atrophic flaccid tympanic membrane, left ear|Atrophic flaccid tympanic membrane, left ear +C2881832|T047|AB|H73.813|ICD10CM|Atrophic flaccid tympanic membrane, bilateral|Atrophic flaccid tympanic membrane, bilateral +C2881832|T047|PT|H73.813|ICD10CM|Atrophic flaccid tympanic membrane, bilateral|Atrophic flaccid tympanic membrane, bilateral +C2881833|T047|AB|H73.819|ICD10CM|Atrophic flaccid tympanic membrane, unspecified ear|Atrophic flaccid tympanic membrane, unspecified ear +C2881833|T047|PT|H73.819|ICD10CM|Atrophic flaccid tympanic membrane, unspecified ear|Atrophic flaccid tympanic membrane, unspecified ear +C0155471|T047|HT|H73.82|ICD10CM|Atrophic nonflaccid tympanic membrane|Atrophic nonflaccid tympanic membrane +C0155471|T047|AB|H73.82|ICD10CM|Atrophic nonflaccid tympanic membrane|Atrophic nonflaccid tympanic membrane +C2881834|T047|AB|H73.821|ICD10CM|Atrophic nonflaccid tympanic membrane, right ear|Atrophic nonflaccid tympanic membrane, right ear +C2881834|T047|PT|H73.821|ICD10CM|Atrophic nonflaccid tympanic membrane, right ear|Atrophic nonflaccid tympanic membrane, right ear +C2881835|T047|AB|H73.822|ICD10CM|Atrophic nonflaccid tympanic membrane, left ear|Atrophic nonflaccid tympanic membrane, left ear +C2881835|T047|PT|H73.822|ICD10CM|Atrophic nonflaccid tympanic membrane, left ear|Atrophic nonflaccid tympanic membrane, left ear +C2881836|T047|AB|H73.823|ICD10CM|Atrophic nonflaccid tympanic membrane, bilateral|Atrophic nonflaccid tympanic membrane, bilateral +C2881836|T047|PT|H73.823|ICD10CM|Atrophic nonflaccid tympanic membrane, bilateral|Atrophic nonflaccid tympanic membrane, bilateral +C2881837|T047|AB|H73.829|ICD10CM|Atrophic nonflaccid tympanic membrane, unspecified ear|Atrophic nonflaccid tympanic membrane, unspecified ear +C2881837|T047|PT|H73.829|ICD10CM|Atrophic nonflaccid tympanic membrane, unspecified ear|Atrophic nonflaccid tympanic membrane, unspecified ear +C0155469|T047|HT|H73.89|ICD10CM|Other specified disorders of tympanic membrane|Other specified disorders of tympanic membrane +C0155469|T047|AB|H73.89|ICD10CM|Other specified disorders of tympanic membrane|Other specified disorders of tympanic membrane +C2881838|T047|AB|H73.891|ICD10CM|Other specified disorders of tympanic membrane, right ear|Other specified disorders of tympanic membrane, right ear +C2881838|T047|PT|H73.891|ICD10CM|Other specified disorders of tympanic membrane, right ear|Other specified disorders of tympanic membrane, right ear +C2881839|T047|AB|H73.892|ICD10CM|Other specified disorders of tympanic membrane, left ear|Other specified disorders of tympanic membrane, left ear +C2881839|T047|PT|H73.892|ICD10CM|Other specified disorders of tympanic membrane, left ear|Other specified disorders of tympanic membrane, left ear +C2881840|T047|AB|H73.893|ICD10CM|Other specified disorders of tympanic membrane, bilateral|Other specified disorders of tympanic membrane, bilateral +C2881840|T047|PT|H73.893|ICD10CM|Other specified disorders of tympanic membrane, bilateral|Other specified disorders of tympanic membrane, bilateral +C0155469|T047|AB|H73.899|ICD10CM|Oth disrd of tympanic membrane, unspecified ear|Oth disrd of tympanic membrane, unspecified ear +C0155469|T047|PT|H73.899|ICD10CM|Other specified disorders of tympanic membrane, unspecified ear|Other specified disorders of tympanic membrane, unspecified ear +C0041825|T047|PT|H73.9|ICD10|Disorder of tympanic membrane, unspecified|Disorder of tympanic membrane, unspecified +C0041825|T047|HT|H73.9|ICD10CM|Unspecified disorder of tympanic membrane|Unspecified disorder of tympanic membrane +C0041825|T047|AB|H73.9|ICD10CM|Unspecified disorder of tympanic membrane|Unspecified disorder of tympanic membrane +C0041825|T047|AB|H73.90|ICD10CM|Unspecified disorder of tympanic membrane, unspecified ear|Unspecified disorder of tympanic membrane, unspecified ear +C0041825|T047|PT|H73.90|ICD10CM|Unspecified disorder of tympanic membrane, unspecified ear|Unspecified disorder of tympanic membrane, unspecified ear +C2881841|T047|AB|H73.91|ICD10CM|Unspecified disorder of tympanic membrane, right ear|Unspecified disorder of tympanic membrane, right ear +C2881841|T047|PT|H73.91|ICD10CM|Unspecified disorder of tympanic membrane, right ear|Unspecified disorder of tympanic membrane, right ear +C2881842|T047|AB|H73.92|ICD10CM|Unspecified disorder of tympanic membrane, left ear|Unspecified disorder of tympanic membrane, left ear +C2881842|T047|PT|H73.92|ICD10CM|Unspecified disorder of tympanic membrane, left ear|Unspecified disorder of tympanic membrane, left ear +C2881843|T047|AB|H73.93|ICD10CM|Unspecified disorder of tympanic membrane, bilateral|Unspecified disorder of tympanic membrane, bilateral +C2881843|T047|PT|H73.93|ICD10CM|Unspecified disorder of tympanic membrane, bilateral|Unspecified disorder of tympanic membrane, bilateral +C0155472|T047|HT|H74|ICD10|Other disorders of middle ear and mastoid|Other disorders of middle ear and mastoid +C0155472|T047|AB|H74|ICD10CM|Other disorders of middle ear mastoid|Other disorders of middle ear mastoid +C0155472|T047|HT|H74|ICD10CM|Other disorders of middle ear mastoid|Other disorders of middle ear mastoid +C0395887|T047|HT|H74.0|ICD10CM|Tympanosclerosis|Tympanosclerosis +C0395887|T047|AB|H74.0|ICD10CM|Tympanosclerosis|Tympanosclerosis +C0395887|T047|PT|H74.0|ICD10|Tympanosclerosis|Tympanosclerosis +C2103557|T047|AB|H74.01|ICD10CM|Tympanosclerosis, right ear|Tympanosclerosis, right ear +C2103557|T047|PT|H74.01|ICD10CM|Tympanosclerosis, right ear|Tympanosclerosis, right ear +C2103558|T047|AB|H74.02|ICD10CM|Tympanosclerosis, left ear|Tympanosclerosis, left ear +C2103558|T047|PT|H74.02|ICD10CM|Tympanosclerosis, left ear|Tympanosclerosis, left ear +C2702750|T047|AB|H74.03|ICD10CM|Tympanosclerosis, bilateral|Tympanosclerosis, bilateral +C2702750|T047|PT|H74.03|ICD10CM|Tympanosclerosis, bilateral|Tympanosclerosis, bilateral +C0395887|T047|AB|H74.09|ICD10CM|Tympanosclerosis, unspecified ear|Tympanosclerosis, unspecified ear +C0395887|T047|PT|H74.09|ICD10CM|Tympanosclerosis, unspecified ear|Tympanosclerosis, unspecified ear +C0155478|T047|HT|H74.1|ICD10CM|Adhesive middle ear disease|Adhesive middle ear disease +C0155478|T047|AB|H74.1|ICD10CM|Adhesive middle ear disease|Adhesive middle ear disease +C0155478|T047|PT|H74.1|ICD10|Adhesive middle ear disease|Adhesive middle ear disease +C0155478|T047|ET|H74.1|ICD10CM|Adhesive otitis|Adhesive otitis +C2881845|T047|AB|H74.11|ICD10CM|Adhesive right middle ear disease|Adhesive right middle ear disease +C2881845|T047|PT|H74.11|ICD10CM|Adhesive right middle ear disease|Adhesive right middle ear disease +C2881846|T047|AB|H74.12|ICD10CM|Adhesive left middle ear disease|Adhesive left middle ear disease +C2881846|T047|PT|H74.12|ICD10CM|Adhesive left middle ear disease|Adhesive left middle ear disease +C2881847|T047|AB|H74.13|ICD10CM|Adhesive middle ear disease, bilateral|Adhesive middle ear disease, bilateral +C2881847|T047|PT|H74.13|ICD10CM|Adhesive middle ear disease, bilateral|Adhesive middle ear disease, bilateral +C2881848|T047|AB|H74.19|ICD10CM|Adhesive middle ear disease, unspecified ear|Adhesive middle ear disease, unspecified ear +C2881848|T047|PT|H74.19|ICD10CM|Adhesive middle ear disease, unspecified ear|Adhesive middle ear disease, unspecified ear +C0494555|T190|HT|H74.2|ICD10CM|Discontinuity and dislocation of ear ossicles|Discontinuity and dislocation of ear ossicles +C0494555|T190|AB|H74.2|ICD10CM|Discontinuity and dislocation of ear ossicles|Discontinuity and dislocation of ear ossicles +C0494555|T190|PT|H74.2|ICD10|Discontinuity and dislocation of ear ossicles|Discontinuity and dislocation of ear ossicles +C2881849|T190|AB|H74.20|ICD10CM|Discontinuity and dislocation of ear ossicles, unsp ear|Discontinuity and dislocation of ear ossicles, unsp ear +C2881849|T190|PT|H74.20|ICD10CM|Discontinuity and dislocation of ear ossicles, unspecified ear|Discontinuity and dislocation of ear ossicles, unspecified ear +C2881850|T190|AB|H74.21|ICD10CM|Discontinuity and dislocation of right ear ossicles|Discontinuity and dislocation of right ear ossicles +C2881850|T190|PT|H74.21|ICD10CM|Discontinuity and dislocation of right ear ossicles|Discontinuity and dislocation of right ear ossicles +C2881851|T190|AB|H74.22|ICD10CM|Discontinuity and dislocation of left ear ossicles|Discontinuity and dislocation of left ear ossicles +C2881851|T190|PT|H74.22|ICD10CM|Discontinuity and dislocation of left ear ossicles|Discontinuity and dislocation of left ear ossicles +C2881852|T190|AB|H74.23|ICD10CM|Discontinuity and dislocation of ear ossicles, bilateral|Discontinuity and dislocation of ear ossicles, bilateral +C2881852|T190|PT|H74.23|ICD10CM|Discontinuity and dislocation of ear ossicles, bilateral|Discontinuity and dislocation of ear ossicles, bilateral +C0155484|T020|PT|H74.3|ICD10|Other acquired abnormalities of ear ossicles|Other acquired abnormalities of ear ossicles +C0155484|T020|HT|H74.3|ICD10CM|Other acquired abnormalities of ear ossicles|Other acquired abnormalities of ear ossicles +C0155484|T020|AB|H74.3|ICD10CM|Other acquired abnormalities of ear ossicles|Other acquired abnormalities of ear ossicles +C1387844|T020|AB|H74.31|ICD10CM|Ankylosis of ear ossicles|Ankylosis of ear ossicles +C1387844|T020|HT|H74.31|ICD10CM|Ankylosis of ear ossicles|Ankylosis of ear ossicles +C2881853|T020|AB|H74.311|ICD10CM|Ankylosis of ear ossicles, right ear|Ankylosis of ear ossicles, right ear +C2881853|T020|PT|H74.311|ICD10CM|Ankylosis of ear ossicles, right ear|Ankylosis of ear ossicles, right ear +C2881854|T020|AB|H74.312|ICD10CM|Ankylosis of ear ossicles, left ear|Ankylosis of ear ossicles, left ear +C2881854|T020|PT|H74.312|ICD10CM|Ankylosis of ear ossicles, left ear|Ankylosis of ear ossicles, left ear +C2881855|T020|AB|H74.313|ICD10CM|Ankylosis of ear ossicles, bilateral|Ankylosis of ear ossicles, bilateral +C2881855|T020|PT|H74.313|ICD10CM|Ankylosis of ear ossicles, bilateral|Ankylosis of ear ossicles, bilateral +C2881856|T020|AB|H74.319|ICD10CM|Ankylosis of ear ossicles, unspecified ear|Ankylosis of ear ossicles, unspecified ear +C2881856|T020|PT|H74.319|ICD10CM|Ankylosis of ear ossicles, unspecified ear|Ankylosis of ear ossicles, unspecified ear +C0271462|T047|HT|H74.32|ICD10CM|Partial loss of ear ossicles|Partial loss of ear ossicles +C0271462|T047|AB|H74.32|ICD10CM|Partial loss of ear ossicles|Partial loss of ear ossicles +C2881857|T047|AB|H74.321|ICD10CM|Partial loss of ear ossicles, right ear|Partial loss of ear ossicles, right ear +C2881857|T047|PT|H74.321|ICD10CM|Partial loss of ear ossicles, right ear|Partial loss of ear ossicles, right ear +C2881858|T047|AB|H74.322|ICD10CM|Partial loss of ear ossicles, left ear|Partial loss of ear ossicles, left ear +C2881858|T047|PT|H74.322|ICD10CM|Partial loss of ear ossicles, left ear|Partial loss of ear ossicles, left ear +C2881859|T047|AB|H74.323|ICD10CM|Partial loss of ear ossicles, bilateral|Partial loss of ear ossicles, bilateral +C2881859|T047|PT|H74.323|ICD10CM|Partial loss of ear ossicles, bilateral|Partial loss of ear ossicles, bilateral +C0271462|T047|AB|H74.329|ICD10CM|Partial loss of ear ossicles, unspecified ear|Partial loss of ear ossicles, unspecified ear +C0271462|T047|PT|H74.329|ICD10CM|Partial loss of ear ossicles, unspecified ear|Partial loss of ear ossicles, unspecified ear +C0155484|T020|HT|H74.39|ICD10CM|Other acquired abnormalities of ear ossicles|Other acquired abnormalities of ear ossicles +C0155484|T020|AB|H74.39|ICD10CM|Other acquired abnormalities of ear ossicles|Other acquired abnormalities of ear ossicles +C2881860|T020|AB|H74.391|ICD10CM|Other acquired abnormalities of right ear ossicles|Other acquired abnormalities of right ear ossicles +C2881860|T020|PT|H74.391|ICD10CM|Other acquired abnormalities of right ear ossicles|Other acquired abnormalities of right ear ossicles +C2881861|T020|AB|H74.392|ICD10CM|Other acquired abnormalities of left ear ossicles|Other acquired abnormalities of left ear ossicles +C2881861|T020|PT|H74.392|ICD10CM|Other acquired abnormalities of left ear ossicles|Other acquired abnormalities of left ear ossicles +C2881862|T020|AB|H74.393|ICD10CM|Other acquired abnormalities of ear ossicles, bilateral|Other acquired abnormalities of ear ossicles, bilateral +C2881862|T020|PT|H74.393|ICD10CM|Other acquired abnormalities of ear ossicles, bilateral|Other acquired abnormalities of ear ossicles, bilateral +C2881863|T020|AB|H74.399|ICD10CM|Other acquired abnormalities of ear ossicles, unsp ear|Other acquired abnormalities of ear ossicles, unsp ear +C2881863|T020|PT|H74.399|ICD10CM|Other acquired abnormalities of ear ossicles, unspecified ear|Other acquired abnormalities of ear ossicles, unspecified ear +C0271466|T191|HT|H74.4|ICD10CM|Polyp of middle ear|Polyp of middle ear +C0271466|T191|AB|H74.4|ICD10CM|Polyp of middle ear|Polyp of middle ear +C0271466|T191|PT|H74.4|ICD10|Polyp of middle ear|Polyp of middle ear +C2881864|T191|AB|H74.40|ICD10CM|Polyp of middle ear, unspecified ear|Polyp of middle ear, unspecified ear +C2881864|T191|PT|H74.40|ICD10CM|Polyp of middle ear, unspecified ear|Polyp of middle ear, unspecified ear +C2087678|T033|PT|H74.41|ICD10CM|Polyp of right middle ear|Polyp of right middle ear +C2087678|T033|AB|H74.41|ICD10CM|Polyp of right middle ear|Polyp of right middle ear +C2087679|T033|PT|H74.42|ICD10CM|Polyp of left middle ear|Polyp of left middle ear +C2087679|T033|AB|H74.42|ICD10CM|Polyp of left middle ear|Polyp of left middle ear +C2881865|T191|AB|H74.43|ICD10CM|Polyp of middle ear, bilateral|Polyp of middle ear, bilateral +C2881865|T191|PT|H74.43|ICD10CM|Polyp of middle ear, bilateral|Polyp of middle ear, bilateral +C0477452|T047|HT|H74.8|ICD10CM|Other specified disorders of middle ear and mastoid|Other specified disorders of middle ear and mastoid +C0477452|T047|AB|H74.8|ICD10CM|Other specified disorders of middle ear and mastoid|Other specified disorders of middle ear and mastoid +C0477452|T047|PT|H74.8|ICD10|Other specified disorders of middle ear and mastoid|Other specified disorders of middle ear and mastoid +C0477452|T047|HT|H74.8X|ICD10CM|Other specified disorders of middle ear and mastoid|Other specified disorders of middle ear and mastoid +C0477452|T047|AB|H74.8X|ICD10CM|Other specified disorders of middle ear and mastoid|Other specified disorders of middle ear and mastoid +C2881866|T047|AB|H74.8X1|ICD10CM|Other specified disorders of right middle ear and mastoid|Other specified disorders of right middle ear and mastoid +C2881866|T047|PT|H74.8X1|ICD10CM|Other specified disorders of right middle ear and mastoid|Other specified disorders of right middle ear and mastoid +C2881867|T047|AB|H74.8X2|ICD10CM|Other specified disorders of left middle ear and mastoid|Other specified disorders of left middle ear and mastoid +C2881867|T047|PT|H74.8X2|ICD10CM|Other specified disorders of left middle ear and mastoid|Other specified disorders of left middle ear and mastoid +C2881868|T047|AB|H74.8X3|ICD10CM|Oth disrd of middle ear and mastoid, bilateral|Oth disrd of middle ear and mastoid, bilateral +C2881868|T047|PT|H74.8X3|ICD10CM|Other specified disorders of middle ear and mastoid, bilateral|Other specified disorders of middle ear and mastoid, bilateral +C0477452|T047|AB|H74.8X9|ICD10CM|Oth disrd of middle ear and mastoid, unspecified ear|Oth disrd of middle ear and mastoid, unspecified ear +C0477452|T047|PT|H74.8X9|ICD10CM|Other specified disorders of middle ear and mastoid, unspecified ear|Other specified disorders of middle ear and mastoid, unspecified ear +C0155494|T047|PT|H74.9|ICD10|Disorder of middle ear and mastoid, unspecified|Disorder of middle ear and mastoid, unspecified +C0155494|T047|HT|H74.9|ICD10CM|Unspecified disorder of middle ear and mastoid|Unspecified disorder of middle ear and mastoid +C0155494|T047|AB|H74.9|ICD10CM|Unspecified disorder of middle ear and mastoid|Unspecified disorder of middle ear and mastoid +C0155494|T047|AB|H74.90|ICD10CM|Unsp disorder of middle ear and mastoid, unspecified ear|Unsp disorder of middle ear and mastoid, unspecified ear +C0155494|T047|PT|H74.90|ICD10CM|Unspecified disorder of middle ear and mastoid, unspecified ear|Unspecified disorder of middle ear and mastoid, unspecified ear +C2881869|T047|AB|H74.91|ICD10CM|Unspecified disorder of right middle ear and mastoid|Unspecified disorder of right middle ear and mastoid +C2881869|T047|PT|H74.91|ICD10CM|Unspecified disorder of right middle ear and mastoid|Unspecified disorder of right middle ear and mastoid +C2881870|T047|AB|H74.92|ICD10CM|Unspecified disorder of left middle ear and mastoid|Unspecified disorder of left middle ear and mastoid +C2881870|T047|PT|H74.92|ICD10CM|Unspecified disorder of left middle ear and mastoid|Unspecified disorder of left middle ear and mastoid +C2881871|T047|AB|H74.93|ICD10CM|Unspecified disorder of middle ear and mastoid, bilateral|Unspecified disorder of middle ear and mastoid, bilateral +C2881871|T047|PT|H74.93|ICD10CM|Unspecified disorder of middle ear and mastoid, bilateral|Unspecified disorder of middle ear and mastoid, bilateral +C0694494|T047|AB|H75|ICD10CM|Oth disord of mid ear and mastoid in diseases classd elswhr|Oth disord of mid ear and mastoid in diseases classd elswhr +C0694494|T047|HT|H75|ICD10CM|Other disorders of middle ear and mastoid in diseases classified elsewhere|Other disorders of middle ear and mastoid in diseases classified elsewhere +C0694494|T047|HT|H75|ICD10|Other disorders of middle ear and mastoid in diseases classified elsewhere|Other disorders of middle ear and mastoid in diseases classified elsewhere +C0477453|T047|AB|H75.0|ICD10CM|Mastoiditis in infec/parastc diseases classified elsewhere|Mastoiditis in infec/parastc diseases classified elsewhere +C0477453|T047|HT|H75.0|ICD10CM|Mastoiditis in infectious and parasitic diseases classified elsewhere|Mastoiditis in infectious and parasitic diseases classified elsewhere +C0477453|T047|PT|H75.0|ICD10|Mastoiditis in infectious and parasitic diseases classified elsewhere|Mastoiditis in infectious and parasitic diseases classified elsewhere +C0477453|T047|AB|H75.00|ICD10CM|Mastoiditis in infec/parastc dis classd elswhr, unsp ear|Mastoiditis in infec/parastc dis classd elswhr, unsp ear +C0477453|T047|PT|H75.00|ICD10CM|Mastoiditis in infectious and parasitic diseases classified elsewhere, unspecified ear|Mastoiditis in infectious and parasitic diseases classified elsewhere, unspecified ear +C2881872|T047|AB|H75.01|ICD10CM|Mastoiditis in infec/parastc diseases classd elswhr, r ear|Mastoiditis in infec/parastc diseases classd elswhr, r ear +C2881872|T047|PT|H75.01|ICD10CM|Mastoiditis in infectious and parasitic diseases classified elsewhere, right ear|Mastoiditis in infectious and parasitic diseases classified elsewhere, right ear +C2881873|T047|AB|H75.02|ICD10CM|Mastoiditis in infec/parastc dis classd elswhr, left ear|Mastoiditis in infec/parastc dis classd elswhr, left ear +C2881873|T047|PT|H75.02|ICD10CM|Mastoiditis in infectious and parasitic diseases classified elsewhere, left ear|Mastoiditis in infectious and parasitic diseases classified elsewhere, left ear +C2881874|T047|AB|H75.03|ICD10CM|Mastoiditis in infec/parastc diseases classd elswhr, bi|Mastoiditis in infec/parastc diseases classd elswhr, bi +C2881874|T047|PT|H75.03|ICD10CM|Mastoiditis in infectious and parasitic diseases classified elsewhere, bilateral|Mastoiditis in infectious and parasitic diseases classified elsewhere, bilateral +C0477454|T047|AB|H75.8|ICD10CM|Oth disrd of mid ear and mastoid in diseases classd elswhr|Oth disrd of mid ear and mastoid in diseases classd elswhr +C0477454|T047|HT|H75.8|ICD10CM|Other specified disorders of middle ear and mastoid in diseases classified elsewhere|Other specified disorders of middle ear and mastoid in diseases classified elsewhere +C0477454|T047|PT|H75.8|ICD10|Other specified disorders of middle ear and mastoid in diseases classified elsewhere|Other specified disorders of middle ear and mastoid in diseases classified elsewhere +C0477454|T047|AB|H75.80|ICD10CM|Oth disrd of mid ear and mast in dis classd elswhr, unsp ear|Oth disrd of mid ear and mast in dis classd elswhr, unsp ear +C2881875|T047|AB|H75.81|ICD10CM|Oth disrd of r mid ear and mastoid in diseases classd elswhr|Oth disrd of r mid ear and mastoid in diseases classd elswhr +C2881875|T047|PT|H75.81|ICD10CM|Other specified disorders of right middle ear and mastoid in diseases classified elsewhere|Other specified disorders of right middle ear and mastoid in diseases classified elsewhere +C2881876|T047|AB|H75.82|ICD10CM|Oth disrd of l mid ear and mastoid in diseases classd elswhr|Oth disrd of l mid ear and mastoid in diseases classd elswhr +C2881876|T047|PT|H75.82|ICD10CM|Other specified disorders of left middle ear and mastoid in diseases classified elsewhere|Other specified disorders of left middle ear and mastoid in diseases classified elsewhere +C2881877|T047|AB|H75.83|ICD10CM|Oth disrd of mid ear and mastoid in dis classd elswhr, bi|Oth disrd of mid ear and mastoid in dis classd elswhr, bi +C2881877|T047|PT|H75.83|ICD10CM|Other specified disorders of middle ear and mastoid in diseases classified elsewhere, bilateral|Other specified disorders of middle ear and mastoid in diseases classified elsewhere, bilateral +C0029899|T047|HT|H80|ICD10CM|Otosclerosis|Otosclerosis +C0029899|T047|AB|H80|ICD10CM|Otosclerosis|Otosclerosis +C0029899|T047|HT|H80|ICD10|Otosclerosis|Otosclerosis +C0029899|T047|ET|H80|ICD10CM|Otospongiosis|Otospongiosis +C0494559|T047|HT|H80-H83|ICD10CM|Diseases of inner ear (H80-H83)|Diseases of inner ear (H80-H83) +C0494559|T047|HT|H80-H83.9|ICD10|Diseases of inner ear|Diseases of inner ear +C0155524|T047|PT|H80.0|ICD10|Otosclerosis involving oval window, nonobliterative|Otosclerosis involving oval window, nonobliterative +C0155524|T047|HT|H80.0|ICD10CM|Otosclerosis involving oval window, nonobliterative|Otosclerosis involving oval window, nonobliterative +C0155524|T047|AB|H80.0|ICD10CM|Otosclerosis involving oval window, nonobliterative|Otosclerosis involving oval window, nonobliterative +C0155524|T047|PT|H80.00|ICD10CM|Otosclerosis involving oval window, nonobliterative, unspecified ear|Otosclerosis involving oval window, nonobliterative, unspecified ear +C0155524|T047|AB|H80.00|ICD10CM|Otosclerosis w oval window, nonobliterative, unsp ear|Otosclerosis w oval window, nonobliterative, unsp ear +C2881878|T047|PT|H80.01|ICD10CM|Otosclerosis involving oval window, nonobliterative, right ear|Otosclerosis involving oval window, nonobliterative, right ear +C2881878|T047|AB|H80.01|ICD10CM|Otosclerosis w oval window, nonobliterative, right ear|Otosclerosis w oval window, nonobliterative, right ear +C2881879|T047|PT|H80.02|ICD10CM|Otosclerosis involving oval window, nonobliterative, left ear|Otosclerosis involving oval window, nonobliterative, left ear +C2881879|T047|AB|H80.02|ICD10CM|Otosclerosis w oval window, nonobliterative, left ear|Otosclerosis w oval window, nonobliterative, left ear +C2881880|T047|AB|H80.03|ICD10CM|Otosclerosis involving oval window, nonobliterative, bi|Otosclerosis involving oval window, nonobliterative, bi +C2881880|T047|PT|H80.03|ICD10CM|Otosclerosis involving oval window, nonobliterative, bilateral|Otosclerosis involving oval window, nonobliterative, bilateral +C0155525|T047|HT|H80.1|ICD10CM|Otosclerosis involving oval window, obliterative|Otosclerosis involving oval window, obliterative +C0155525|T047|AB|H80.1|ICD10CM|Otosclerosis involving oval window, obliterative|Otosclerosis involving oval window, obliterative +C0155525|T047|PT|H80.1|ICD10|Otosclerosis involving oval window, obliterative|Otosclerosis involving oval window, obliterative +C0155525|T047|AB|H80.10|ICD10CM|Otosclerosis involving oval window, obliterative, unsp ear|Otosclerosis involving oval window, obliterative, unsp ear +C0155525|T047|PT|H80.10|ICD10CM|Otosclerosis involving oval window, obliterative, unspecified ear|Otosclerosis involving oval window, obliterative, unspecified ear +C2881881|T047|AB|H80.11|ICD10CM|Otosclerosis involving oval window, obliterative, right ear|Otosclerosis involving oval window, obliterative, right ear +C2881881|T047|PT|H80.11|ICD10CM|Otosclerosis involving oval window, obliterative, right ear|Otosclerosis involving oval window, obliterative, right ear +C2881882|T047|AB|H80.12|ICD10CM|Otosclerosis involving oval window, obliterative, left ear|Otosclerosis involving oval window, obliterative, left ear +C2881882|T047|PT|H80.12|ICD10CM|Otosclerosis involving oval window, obliterative, left ear|Otosclerosis involving oval window, obliterative, left ear +C2881883|T047|AB|H80.13|ICD10CM|Otosclerosis involving oval window, obliterative, bilateral|Otosclerosis involving oval window, obliterative, bilateral +C2881883|T047|PT|H80.13|ICD10CM|Otosclerosis involving oval window, obliterative, bilateral|Otosclerosis involving oval window, obliterative, bilateral +C0155526|T020|HT|H80.2|ICD10CM|Cochlear otosclerosis|Cochlear otosclerosis +C0155526|T020|AB|H80.2|ICD10CM|Cochlear otosclerosis|Cochlear otosclerosis +C0155526|T020|PT|H80.2|ICD10|Cochlear otosclerosis|Cochlear otosclerosis +C0271491|T047|ET|H80.2|ICD10CM|Otosclerosis involving otic capsule|Otosclerosis involving otic capsule +C0271492|T047|ET|H80.2|ICD10CM|Otosclerosis involving round window|Otosclerosis involving round window +C0155526|T020|AB|H80.20|ICD10CM|Cochlear otosclerosis, unspecified ear|Cochlear otosclerosis, unspecified ear +C0155526|T020|PT|H80.20|ICD10CM|Cochlear otosclerosis, unspecified ear|Cochlear otosclerosis, unspecified ear +C2881884|T020|AB|H80.21|ICD10CM|Cochlear otosclerosis, right ear|Cochlear otosclerosis, right ear +C2881884|T020|PT|H80.21|ICD10CM|Cochlear otosclerosis, right ear|Cochlear otosclerosis, right ear +C2881885|T020|AB|H80.22|ICD10CM|Cochlear otosclerosis, left ear|Cochlear otosclerosis, left ear +C2881885|T020|PT|H80.22|ICD10CM|Cochlear otosclerosis, left ear|Cochlear otosclerosis, left ear +C2881886|T020|AB|H80.23|ICD10CM|Cochlear otosclerosis, bilateral|Cochlear otosclerosis, bilateral +C2881886|T020|PT|H80.23|ICD10CM|Cochlear otosclerosis, bilateral|Cochlear otosclerosis, bilateral +C0029696|T047|HT|H80.8|ICD10CM|Other otosclerosis|Other otosclerosis +C0029696|T047|AB|H80.8|ICD10CM|Other otosclerosis|Other otosclerosis +C0029696|T047|PT|H80.8|ICD10|Other otosclerosis|Other otosclerosis +C0029696|T047|AB|H80.80|ICD10CM|Other otosclerosis, unspecified ear|Other otosclerosis, unspecified ear +C0029696|T047|PT|H80.80|ICD10CM|Other otosclerosis, unspecified ear|Other otosclerosis, unspecified ear +C2881887|T047|AB|H80.81|ICD10CM|Other otosclerosis, right ear|Other otosclerosis, right ear +C2881887|T047|PT|H80.81|ICD10CM|Other otosclerosis, right ear|Other otosclerosis, right ear +C2881888|T047|AB|H80.82|ICD10CM|Other otosclerosis, left ear|Other otosclerosis, left ear +C2881888|T047|PT|H80.82|ICD10CM|Other otosclerosis, left ear|Other otosclerosis, left ear +C2881889|T047|AB|H80.83|ICD10CM|Other otosclerosis, bilateral|Other otosclerosis, bilateral +C2881889|T047|PT|H80.83|ICD10CM|Other otosclerosis, bilateral|Other otosclerosis, bilateral +C0029899|T047|PT|H80.9|ICD10|Otosclerosis, unspecified|Otosclerosis, unspecified +C0029899|T047|AB|H80.9|ICD10CM|Unspecified otosclerosis|Unspecified otosclerosis +C0029899|T047|HT|H80.9|ICD10CM|Unspecified otosclerosis|Unspecified otosclerosis +C0029899|T047|AB|H80.90|ICD10CM|Unspecified otosclerosis, unspecified ear|Unspecified otosclerosis, unspecified ear +C0029899|T047|PT|H80.90|ICD10CM|Unspecified otosclerosis, unspecified ear|Unspecified otosclerosis, unspecified ear +C2881890|T047|AB|H80.91|ICD10CM|Unspecified otosclerosis, right ear|Unspecified otosclerosis, right ear +C2881890|T047|PT|H80.91|ICD10CM|Unspecified otosclerosis, right ear|Unspecified otosclerosis, right ear +C2881891|T047|AB|H80.92|ICD10CM|Unspecified otosclerosis, left ear|Unspecified otosclerosis, left ear +C2881891|T047|PT|H80.92|ICD10CM|Unspecified otosclerosis, left ear|Unspecified otosclerosis, left ear +C2881892|T047|AB|H80.93|ICD10CM|Unspecified otosclerosis, bilateral|Unspecified otosclerosis, bilateral +C2881892|T047|PT|H80.93|ICD10CM|Unspecified otosclerosis, bilateral|Unspecified otosclerosis, bilateral +C0042594|T047|AB|H81|ICD10CM|Disorders of vestibular function|Disorders of vestibular function +C0042594|T047|HT|H81|ICD10CM|Disorders of vestibular function|Disorders of vestibular function +C0042594|T047|HT|H81|ICD10|Disorders of vestibular function|Disorders of vestibular function +C0206586|T047|ET|H81.0|ICD10CM|Labyrinthine hydrops|Labyrinthine hydrops +C0025281|T047|AB|H81.0|ICD10CM|Meniere's disease|Meniere's disease +C0025281|T047|HT|H81.0|ICD10CM|Ménière's disease|Ménière's disease +C0025281|T047|PT|H81.0|ICD10|Meniere's disease|Meniere's disease +C0025281|T047|ET|H81.0|ICD10CM|Ménière's syndrome or vertigo|Ménière's syndrome or vertigo +C2881893|T047|PT|H81.01|ICD10CM|Ménière's disease, right ear|Ménière's disease, right ear +C2881893|T047|AB|H81.01|ICD10CM|Meniere's disease, right ear|Meniere's disease, right ear +C2881894|T047|PT|H81.02|ICD10CM|Ménière's disease, left ear|Ménière's disease, left ear +C2881894|T047|AB|H81.02|ICD10CM|Meniere's disease, left ear|Meniere's disease, left ear +C2236787|T047|PT|H81.03|ICD10CM|Ménière's disease, bilateral|Ménière's disease, bilateral +C2236787|T047|AB|H81.03|ICD10CM|Meniere's disease, bilateral|Meniere's disease, bilateral +C0025281|T047|PT|H81.09|ICD10CM|Ménière's disease, unspecified ear|Ménière's disease, unspecified ear +C0025281|T047|AB|H81.09|ICD10CM|Meniere's disease, unspecified ear|Meniere's disease, unspecified ear +C0494557|T047|PT|H81.1|ICD10|Benign paroxysmal vertigo|Benign paroxysmal vertigo +C0494557|T047|HT|H81.1|ICD10CM|Benign paroxysmal vertigo|Benign paroxysmal vertigo +C0494557|T047|AB|H81.1|ICD10CM|Benign paroxysmal vertigo|Benign paroxysmal vertigo +C2881895|T047|AB|H81.10|ICD10CM|Benign paroxysmal vertigo, unspecified ear|Benign paroxysmal vertigo, unspecified ear +C2881895|T047|PT|H81.10|ICD10CM|Benign paroxysmal vertigo, unspecified ear|Benign paroxysmal vertigo, unspecified ear +C2881896|T047|AB|H81.11|ICD10CM|Benign paroxysmal vertigo, right ear|Benign paroxysmal vertigo, right ear +C2881896|T047|PT|H81.11|ICD10CM|Benign paroxysmal vertigo, right ear|Benign paroxysmal vertigo, right ear +C2881897|T047|AB|H81.12|ICD10CM|Benign paroxysmal vertigo, left ear|Benign paroxysmal vertigo, left ear +C2881897|T047|PT|H81.12|ICD10CM|Benign paroxysmal vertigo, left ear|Benign paroxysmal vertigo, left ear +C2881898|T047|AB|H81.13|ICD10CM|Benign paroxysmal vertigo, bilateral|Benign paroxysmal vertigo, bilateral +C2881898|T047|PT|H81.13|ICD10CM|Benign paroxysmal vertigo, bilateral|Benign paroxysmal vertigo, bilateral +C0751908|T047|HT|H81.2|ICD10CM|Vestibular neuronitis|Vestibular neuronitis +C0751908|T047|AB|H81.2|ICD10CM|Vestibular neuronitis|Vestibular neuronitis +C0751908|T047|PT|H81.2|ICD10|Vestibular neuronitis|Vestibular neuronitis +C0751908|T047|AB|H81.20|ICD10CM|Vestibular neuronitis, unspecified ear|Vestibular neuronitis, unspecified ear +C0751908|T047|PT|H81.20|ICD10CM|Vestibular neuronitis, unspecified ear|Vestibular neuronitis, unspecified ear +C2189445|T047|AB|H81.21|ICD10CM|Vestibular neuronitis, right ear|Vestibular neuronitis, right ear +C2189445|T047|PT|H81.21|ICD10CM|Vestibular neuronitis, right ear|Vestibular neuronitis, right ear +C2189444|T047|AB|H81.22|ICD10CM|Vestibular neuronitis, left ear|Vestibular neuronitis, left ear +C2189444|T047|PT|H81.22|ICD10CM|Vestibular neuronitis, left ear|Vestibular neuronitis, left ear +C2881899|T047|AB|H81.23|ICD10CM|Vestibular neuronitis, bilateral|Vestibular neuronitis, bilateral +C2881899|T047|PT|H81.23|ICD10CM|Vestibular neuronitis, bilateral|Vestibular neuronitis, bilateral +C0029706|T047|HT|H81.3|ICD10CM|Other peripheral vertigo|Other peripheral vertigo +C0029706|T047|AB|H81.3|ICD10CM|Other peripheral vertigo|Other peripheral vertigo +C0029706|T047|PT|H81.3|ICD10|Other peripheral vertigo|Other peripheral vertigo +C1527320|T047|HT|H81.31|ICD10CM|Aural vertigo|Aural vertigo +C1527320|T047|AB|H81.31|ICD10CM|Aural vertigo|Aural vertigo +C2881900|T047|AB|H81.311|ICD10CM|Aural vertigo, right ear|Aural vertigo, right ear +C2881900|T047|PT|H81.311|ICD10CM|Aural vertigo, right ear|Aural vertigo, right ear +C2881901|T047|AB|H81.312|ICD10CM|Aural vertigo, left ear|Aural vertigo, left ear +C2881901|T047|PT|H81.312|ICD10CM|Aural vertigo, left ear|Aural vertigo, left ear +C2881902|T047|AB|H81.313|ICD10CM|Aural vertigo, bilateral|Aural vertigo, bilateral +C2881902|T047|PT|H81.313|ICD10CM|Aural vertigo, bilateral|Aural vertigo, bilateral +C2881903|T047|AB|H81.319|ICD10CM|Aural vertigo, unspecified ear|Aural vertigo, unspecified ear +C2881903|T047|PT|H81.319|ICD10CM|Aural vertigo, unspecified ear|Aural vertigo, unspecified ear +C0023371|T047|ET|H81.39|ICD10CM|Lermoyez' syndrome|Lermoyez' syndrome +C0029706|T047|HT|H81.39|ICD10CM|Other peripheral vertigo|Other peripheral vertigo +C0029706|T047|AB|H81.39|ICD10CM|Other peripheral vertigo|Other peripheral vertigo +C1527320|T047|ET|H81.39|ICD10CM|Otogenic vertigo|Otogenic vertigo +C0155501|T047|ET|H81.39|ICD10CM|Peripheral vertigo NOS|Peripheral vertigo NOS +C2881904|T047|AB|H81.391|ICD10CM|Other peripheral vertigo, right ear|Other peripheral vertigo, right ear +C2881904|T047|PT|H81.391|ICD10CM|Other peripheral vertigo, right ear|Other peripheral vertigo, right ear +C2881905|T047|AB|H81.392|ICD10CM|Other peripheral vertigo, left ear|Other peripheral vertigo, left ear +C2881905|T047|PT|H81.392|ICD10CM|Other peripheral vertigo, left ear|Other peripheral vertigo, left ear +C2881906|T047|AB|H81.393|ICD10CM|Other peripheral vertigo, bilateral|Other peripheral vertigo, bilateral +C2881906|T047|PT|H81.393|ICD10CM|Other peripheral vertigo, bilateral|Other peripheral vertigo, bilateral +C0029706|T047|AB|H81.399|ICD10CM|Other peripheral vertigo, unspecified ear|Other peripheral vertigo, unspecified ear +C0029706|T047|PT|H81.399|ICD10CM|Other peripheral vertigo, unspecified ear|Other peripheral vertigo, unspecified ear +C0456750|T047|ET|H81.4|ICD10CM|Central positional nystagmus|Central positional nystagmus +C0155503|T047|PT|H81.4|ICD10CM|Vertigo of central origin|Vertigo of central origin +C0155503|T047|AB|H81.4|ICD10CM|Vertigo of central origin|Vertigo of central origin +C0155503|T047|PT|H81.4|ICD10|Vertigo of central origin|Vertigo of central origin +C0477455|T047|PT|H81.8|ICD10|Other disorders of vestibular function|Other disorders of vestibular function +C0477455|T047|HT|H81.8|ICD10CM|Other disorders of vestibular function|Other disorders of vestibular function +C0477455|T047|AB|H81.8|ICD10CM|Other disorders of vestibular function|Other disorders of vestibular function +C0477455|T047|HT|H81.8X|ICD10CM|Other disorders of vestibular function|Other disorders of vestibular function +C0477455|T047|AB|H81.8X|ICD10CM|Other disorders of vestibular function|Other disorders of vestibular function +C2881910|T047|AB|H81.8X1|ICD10CM|Other disorders of vestibular function, right ear|Other disorders of vestibular function, right ear +C2881910|T047|PT|H81.8X1|ICD10CM|Other disorders of vestibular function, right ear|Other disorders of vestibular function, right ear +C2881911|T047|AB|H81.8X2|ICD10CM|Other disorders of vestibular function, left ear|Other disorders of vestibular function, left ear +C2881911|T047|PT|H81.8X2|ICD10CM|Other disorders of vestibular function, left ear|Other disorders of vestibular function, left ear +C2881912|T047|AB|H81.8X3|ICD10CM|Other disorders of vestibular function, bilateral|Other disorders of vestibular function, bilateral +C2881912|T047|PT|H81.8X3|ICD10CM|Other disorders of vestibular function, bilateral|Other disorders of vestibular function, bilateral +C0477455|T047|AB|H81.8X9|ICD10CM|Other disorders of vestibular function, unspecified ear|Other disorders of vestibular function, unspecified ear +C0477455|T047|PT|H81.8X9|ICD10CM|Other disorders of vestibular function, unspecified ear|Other disorders of vestibular function, unspecified ear +C0042594|T047|PT|H81.9|ICD10|Disorder of vestibular function, unspecified|Disorder of vestibular function, unspecified +C0042594|T047|AB|H81.9|ICD10CM|Unspecified disorder of vestibular function|Unspecified disorder of vestibular function +C0042594|T047|HT|H81.9|ICD10CM|Unspecified disorder of vestibular function|Unspecified disorder of vestibular function +C0271487|T047|ET|H81.9|ICD10CM|Vertiginous syndrome NOS|Vertiginous syndrome NOS +C0042594|T047|AB|H81.90|ICD10CM|Unspecified disorder of vestibular function, unspecified ear|Unspecified disorder of vestibular function, unspecified ear +C0042594|T047|PT|H81.90|ICD10CM|Unspecified disorder of vestibular function, unspecified ear|Unspecified disorder of vestibular function, unspecified ear +C2881913|T047|AB|H81.91|ICD10CM|Unspecified disorder of vestibular function, right ear|Unspecified disorder of vestibular function, right ear +C2881913|T047|PT|H81.91|ICD10CM|Unspecified disorder of vestibular function, right ear|Unspecified disorder of vestibular function, right ear +C2881914|T047|AB|H81.92|ICD10CM|Unspecified disorder of vestibular function, left ear|Unspecified disorder of vestibular function, left ear +C2881914|T047|PT|H81.92|ICD10CM|Unspecified disorder of vestibular function, left ear|Unspecified disorder of vestibular function, left ear +C2881915|T047|AB|H81.93|ICD10CM|Unspecified disorder of vestibular function, bilateral|Unspecified disorder of vestibular function, bilateral +C2881915|T047|PT|H81.93|ICD10CM|Unspecified disorder of vestibular function, bilateral|Unspecified disorder of vestibular function, bilateral +C0477457|T047|HT|H82|ICD10CM|Vertiginous syndromes in diseases classified elsewhere|Vertiginous syndromes in diseases classified elsewhere +C0477457|T047|AB|H82|ICD10CM|Vertiginous syndromes in diseases classified elsewhere|Vertiginous syndromes in diseases classified elsewhere +C0477457|T047|PT|H82|ICD10|Vertiginous syndromes in diseases classified elsewhere|Vertiginous syndromes in diseases classified elsewhere +C2881916|T047|AB|H82.1|ICD10CM|Vertiginous syndromes in diseases classd elswhr, right ear|Vertiginous syndromes in diseases classd elswhr, right ear +C2881916|T047|PT|H82.1|ICD10CM|Vertiginous syndromes in diseases classified elsewhere, right ear|Vertiginous syndromes in diseases classified elsewhere, right ear +C2881917|T047|AB|H82.2|ICD10CM|Vertiginous syndromes in diseases classd elswhr, left ear|Vertiginous syndromes in diseases classd elswhr, left ear +C2881917|T047|PT|H82.2|ICD10CM|Vertiginous syndromes in diseases classified elsewhere, left ear|Vertiginous syndromes in diseases classified elsewhere, left ear +C2881918|T047|AB|H82.3|ICD10CM|Vertiginous syndromes in diseases classd elswhr, bilateral|Vertiginous syndromes in diseases classd elswhr, bilateral +C2881918|T047|PT|H82.3|ICD10CM|Vertiginous syndromes in diseases classified elsewhere, bilateral|Vertiginous syndromes in diseases classified elsewhere, bilateral +C0477457|T047|AB|H82.9|ICD10CM|Vertiginous syndromes in diseases classd elswhr, unsp ear|Vertiginous syndromes in diseases classd elswhr, unsp ear +C0477457|T047|PT|H82.9|ICD10CM|Vertiginous syndromes in diseases classified elsewhere, unspecified ear|Vertiginous syndromes in diseases classified elsewhere, unspecified ear +C0494558|T047|AB|H83|ICD10CM|Other diseases of inner ear|Other diseases of inner ear +C0494558|T047|HT|H83|ICD10CM|Other diseases of inner ear|Other diseases of inner ear +C0494558|T047|HT|H83|ICD10|Other diseases of inner ear|Other diseases of inner ear +C0022893|T047|HT|H83.0|ICD10CM|Labyrinthitis|Labyrinthitis +C0022893|T047|AB|H83.0|ICD10CM|Labyrinthitis|Labyrinthitis +C0022893|T047|PT|H83.0|ICD10|Labyrinthitis|Labyrinthitis +C2110945|T047|AB|H83.01|ICD10CM|Labyrinthitis, right ear|Labyrinthitis, right ear +C2110945|T047|PT|H83.01|ICD10CM|Labyrinthitis, right ear|Labyrinthitis, right ear +C2110944|T047|AB|H83.02|ICD10CM|Labyrinthitis, left ear|Labyrinthitis, left ear +C2110944|T047|PT|H83.02|ICD10CM|Labyrinthitis, left ear|Labyrinthitis, left ear +C2881919|T047|AB|H83.03|ICD10CM|Labyrinthitis, bilateral|Labyrinthitis, bilateral +C2881919|T047|PT|H83.03|ICD10CM|Labyrinthitis, bilateral|Labyrinthitis, bilateral +C0022893|T047|AB|H83.09|ICD10CM|Labyrinthitis, unspecified ear|Labyrinthitis, unspecified ear +C0022893|T047|PT|H83.09|ICD10CM|Labyrinthitis, unspecified ear|Labyrinthitis, unspecified ear +C0155509|T190|PT|H83.1|ICD10|Labyrinthine fistula|Labyrinthine fistula +C0155509|T190|HT|H83.1|ICD10CM|Labyrinthine fistula|Labyrinthine fistula +C0155509|T190|AB|H83.1|ICD10CM|Labyrinthine fistula|Labyrinthine fistula +C2881920|T190|AB|H83.11|ICD10CM|Labyrinthine fistula, right ear|Labyrinthine fistula, right ear +C2881920|T190|PT|H83.11|ICD10CM|Labyrinthine fistula, right ear|Labyrinthine fistula, right ear +C2881921|T190|AB|H83.12|ICD10CM|Labyrinthine fistula, left ear|Labyrinthine fistula, left ear +C2881921|T190|PT|H83.12|ICD10CM|Labyrinthine fistula, left ear|Labyrinthine fistula, left ear +C2881922|T190|AB|H83.13|ICD10CM|Labyrinthine fistula, bilateral|Labyrinthine fistula, bilateral +C2881922|T190|PT|H83.13|ICD10CM|Labyrinthine fistula, bilateral|Labyrinthine fistula, bilateral +C0155509|T190|AB|H83.19|ICD10CM|Labyrinthine fistula, unspecified ear|Labyrinthine fistula, unspecified ear +C0155509|T190|PT|H83.19|ICD10CM|Labyrinthine fistula, unspecified ear|Labyrinthine fistula, unspecified ear +C0155514|T047|HT|H83.2|ICD10CM|Labyrinthine dysfunction|Labyrinthine dysfunction +C0155514|T047|AB|H83.2|ICD10CM|Labyrinthine dysfunction|Labyrinthine dysfunction +C0155514|T047|PT|H83.2|ICD10|Labyrinthine dysfunction|Labyrinthine dysfunction +C2881923|T047|ET|H83.2|ICD10CM|Labyrinthine hypersensitivity|Labyrinthine hypersensitivity +C2881924|T047|ET|H83.2|ICD10CM|Labyrinthine hypofunction|Labyrinthine hypofunction +C2881925|T047|ET|H83.2|ICD10CM|Labyrinthine loss of function|Labyrinthine loss of function +C0155514|T047|HT|H83.2X|ICD10CM|Labyrinthine dysfunction|Labyrinthine dysfunction +C0155514|T047|AB|H83.2X|ICD10CM|Labyrinthine dysfunction|Labyrinthine dysfunction +C2881926|T047|AB|H83.2X1|ICD10CM|Labyrinthine dysfunction, right ear|Labyrinthine dysfunction, right ear +C2881926|T047|PT|H83.2X1|ICD10CM|Labyrinthine dysfunction, right ear|Labyrinthine dysfunction, right ear +C2881927|T047|AB|H83.2X2|ICD10CM|Labyrinthine dysfunction, left ear|Labyrinthine dysfunction, left ear +C2881927|T047|PT|H83.2X2|ICD10CM|Labyrinthine dysfunction, left ear|Labyrinthine dysfunction, left ear +C2881928|T047|AB|H83.2X3|ICD10CM|Labyrinthine dysfunction, bilateral|Labyrinthine dysfunction, bilateral +C2881928|T047|PT|H83.2X3|ICD10CM|Labyrinthine dysfunction, bilateral|Labyrinthine dysfunction, bilateral +C0155514|T047|AB|H83.2X9|ICD10CM|Labyrinthine dysfunction, unspecified ear|Labyrinthine dysfunction, unspecified ear +C0155514|T047|PT|H83.2X9|ICD10CM|Labyrinthine dysfunction, unspecified ear|Labyrinthine dysfunction, unspecified ear +C2881929|T047|ET|H83.3|ICD10CM|Acoustic trauma of inner ear|Acoustic trauma of inner ear +C0155531|T037|HT|H83.3|ICD10CM|Noise effects on inner ear|Noise effects on inner ear +C0155531|T037|AB|H83.3|ICD10CM|Noise effects on inner ear|Noise effects on inner ear +C0155531|T037|PT|H83.3|ICD10|Noise effects on inner ear|Noise effects on inner ear +C2881930|T037|ET|H83.3|ICD10CM|Noise-induced hearing loss of inner ear|Noise-induced hearing loss of inner ear +C0155531|T037|HT|H83.3X|ICD10CM|Noise effects on inner ear|Noise effects on inner ear +C0155531|T037|AB|H83.3X|ICD10CM|Noise effects on inner ear|Noise effects on inner ear +C2881931|T037|AB|H83.3X1|ICD10CM|Noise effects on right inner ear|Noise effects on right inner ear +C2881931|T037|PT|H83.3X1|ICD10CM|Noise effects on right inner ear|Noise effects on right inner ear +C2881932|T037|AB|H83.3X2|ICD10CM|Noise effects on left inner ear|Noise effects on left inner ear +C2881932|T037|PT|H83.3X2|ICD10CM|Noise effects on left inner ear|Noise effects on left inner ear +C2881933|T037|AB|H83.3X3|ICD10CM|Noise effects on inner ear, bilateral|Noise effects on inner ear, bilateral +C2881933|T037|PT|H83.3X3|ICD10CM|Noise effects on inner ear, bilateral|Noise effects on inner ear, bilateral +C0155531|T037|AB|H83.3X9|ICD10CM|Noise effects on inner ear, unspecified ear|Noise effects on inner ear, unspecified ear +C0155531|T037|PT|H83.3X9|ICD10CM|Noise effects on inner ear, unspecified ear|Noise effects on inner ear, unspecified ear +C0477456|T047|PT|H83.8|ICD10|Other specified diseases of inner ear|Other specified diseases of inner ear +C0477456|T047|HT|H83.8|ICD10CM|Other specified diseases of inner ear|Other specified diseases of inner ear +C0477456|T047|AB|H83.8|ICD10CM|Other specified diseases of inner ear|Other specified diseases of inner ear +C0477456|T047|HT|H83.8X|ICD10CM|Other specified diseases of inner ear|Other specified diseases of inner ear +C0477456|T047|AB|H83.8X|ICD10CM|Other specified diseases of inner ear|Other specified diseases of inner ear +C2881934|T047|AB|H83.8X1|ICD10CM|Other specified diseases of right inner ear|Other specified diseases of right inner ear +C2881934|T047|PT|H83.8X1|ICD10CM|Other specified diseases of right inner ear|Other specified diseases of right inner ear +C2881935|T047|AB|H83.8X2|ICD10CM|Other specified diseases of left inner ear|Other specified diseases of left inner ear +C2881935|T047|PT|H83.8X2|ICD10CM|Other specified diseases of left inner ear|Other specified diseases of left inner ear +C2881936|T047|AB|H83.8X3|ICD10CM|Other specified diseases of inner ear, bilateral|Other specified diseases of inner ear, bilateral +C2881936|T047|PT|H83.8X3|ICD10CM|Other specified diseases of inner ear, bilateral|Other specified diseases of inner ear, bilateral +C0477456|T047|AB|H83.8X9|ICD10CM|Other specified diseases of inner ear, unspecified ear|Other specified diseases of inner ear, unspecified ear +C0477456|T047|PT|H83.8X9|ICD10CM|Other specified diseases of inner ear, unspecified ear|Other specified diseases of inner ear, unspecified ear +C0494559|T047|PT|H83.9|ICD10|Disease of inner ear, unspecified|Disease of inner ear, unspecified +C0494559|T047|AB|H83.9|ICD10CM|Unspecified disease of inner ear|Unspecified disease of inner ear +C0494559|T047|HT|H83.9|ICD10CM|Unspecified disease of inner ear|Unspecified disease of inner ear +C0494559|T047|AB|H83.90|ICD10CM|Unspecified disease of inner ear, unspecified ear|Unspecified disease of inner ear, unspecified ear +C0494559|T047|PT|H83.90|ICD10CM|Unspecified disease of inner ear, unspecified ear|Unspecified disease of inner ear, unspecified ear +C2881937|T047|AB|H83.91|ICD10CM|Unspecified disease of right inner ear|Unspecified disease of right inner ear +C2881937|T047|PT|H83.91|ICD10CM|Unspecified disease of right inner ear|Unspecified disease of right inner ear +C2881938|T047|AB|H83.92|ICD10CM|Unspecified disease of left inner ear|Unspecified disease of left inner ear +C2881938|T047|PT|H83.92|ICD10CM|Unspecified disease of left inner ear|Unspecified disease of left inner ear +C2881939|T047|AB|H83.93|ICD10CM|Unspecified disease of inner ear, bilateral|Unspecified disease of inner ear, bilateral +C2881939|T047|PT|H83.93|ICD10CM|Unspecified disease of inner ear, bilateral|Unspecified disease of inner ear, bilateral +C0494560|T033|AB|H90|ICD10CM|Conductive and sensorineural hearing loss|Conductive and sensorineural hearing loss +C0494560|T033|HT|H90|ICD10CM|Conductive and sensorineural hearing loss|Conductive and sensorineural hearing loss +C0494560|T033|HT|H90|ICD10|Conductive and sensorineural hearing loss|Conductive and sensorineural hearing loss +C2976971|T047|HT|H90-H94|ICD10CM|Other disorders of ear (H90-H94)|Other disorders of ear (H90-H94) +C0155527|T047|HT|H90-H95.9|ICD10|Other disorders of ear|Other disorders of ear +C0452136|T047|PT|H90.0|ICD10CM|Conductive hearing loss, bilateral|Conductive hearing loss, bilateral +C0452136|T047|AB|H90.0|ICD10CM|Conductive hearing loss, bilateral|Conductive hearing loss, bilateral +C0452136|T047|PT|H90.0|ICD10|Conductive hearing loss, bilateral|Conductive hearing loss, bilateral +C0452137|T047|AB|H90.1|ICD10CM|Conductive hear loss, uni w unrestricted hear cntra side|Conductive hear loss, uni w unrestricted hear cntra side +C0452137|T047|HT|H90.1|ICD10CM|Conductive hearing loss, unilateral with unrestricted hearing on the contralateral side|Conductive hearing loss, unilateral with unrestricted hearing on the contralateral side +C0452137|T047|PT|H90.1|ICD10|Conductive hearing loss, unilateral with unrestricted hearing on the contralateral side|Conductive hearing loss, unilateral with unrestricted hearing on the contralateral side +C2881940|T047|AB|H90.11|ICD10CM|Condctv hear loss, uni, right ear, w unrestr hear cntra side|Condctv hear loss, uni, right ear, w unrestr hear cntra side +C2881940|T047|PT|H90.11|ICD10CM|Conductive hearing loss, unilateral, right ear, with unrestricted hearing on the contralateral side|Conductive hearing loss, unilateral, right ear, with unrestricted hearing on the contralateral side +C2881941|T047|AB|H90.12|ICD10CM|Condctv hear loss, uni, left ear, w unrestr hear cntra side|Condctv hear loss, uni, left ear, w unrestr hear cntra side +C2881941|T047|PT|H90.12|ICD10CM|Conductive hearing loss, unilateral, left ear, with unrestricted hearing on the contralateral side|Conductive hearing loss, unilateral, left ear, with unrestricted hearing on the contralateral side +C0018777|T047|ET|H90.2|ICD10CM|Conductive deafness NOS|Conductive deafness NOS +C0018777|T047|PT|H90.2|ICD10CM|Conductive hearing loss, unspecified|Conductive hearing loss, unspecified +C0018777|T047|AB|H90.2|ICD10CM|Conductive hearing loss, unspecified|Conductive hearing loss, unspecified +C0018777|T047|PT|H90.2|ICD10|Conductive hearing loss, unspecified|Conductive hearing loss, unspecified +C0452138|T047|PT|H90.3|ICD10|Sensorineural hearing loss, bilateral|Sensorineural hearing loss, bilateral +C0452138|T047|PT|H90.3|ICD10CM|Sensorineural hearing loss, bilateral|Sensorineural hearing loss, bilateral +C0452138|T047|AB|H90.3|ICD10CM|Sensorineural hearing loss, bilateral|Sensorineural hearing loss, bilateral +C0452139|T047|AB|H90.4|ICD10CM|Sensorineural hear loss, uni w unrestricted hear cntra side|Sensorineural hear loss, uni w unrestricted hear cntra side +C0452139|T047|HT|H90.4|ICD10CM|Sensorineural hearing loss, unilateral with unrestricted hearing on the contralateral side|Sensorineural hearing loss, unilateral with unrestricted hearing on the contralateral side +C0452139|T047|PT|H90.4|ICD10|Sensorineural hearing loss, unilateral with unrestricted hearing on the contralateral side|Sensorineural hearing loss, unilateral with unrestricted hearing on the contralateral side +C2881942|T047|AB|H90.41|ICD10CM|Snsrnrl hear loss, uni, right ear, w unrestr hear cntra side|Snsrnrl hear loss, uni, right ear, w unrestr hear cntra side +C2881943|T047|AB|H90.42|ICD10CM|Snsrnrl hear loss, uni, left ear, w unrestr hear cntra side|Snsrnrl hear loss, uni, left ear, w unrestr hear cntra side +C0018776|T047|ET|H90.5|ICD10CM|Central hearing loss NOS|Central hearing loss NOS +C0339789|T019|ET|H90.5|ICD10CM|Congenital deafness NOS|Congenital deafness NOS +C0155550|T047|ET|H90.5|ICD10CM|Neural hearing loss NOS|Neural hearing loss NOS +C0018784|T047|ET|H90.5|ICD10CM|Perceptive hearing loss NOS|Perceptive hearing loss NOS +C0018784|T047|ET|H90.5|ICD10CM|Sensorineural deafness NOS|Sensorineural deafness NOS +C0018784|T047|PT|H90.5|ICD10|Sensorineural hearing loss, unspecified|Sensorineural hearing loss, unspecified +C1691779|T047|ET|H90.5|ICD10CM|Sensory hearing loss NOS|Sensory hearing loss NOS +C0018784|T047|AB|H90.5|ICD10CM|Unspecified sensorineural hearing loss|Unspecified sensorineural hearing loss +C0018784|T047|PT|H90.5|ICD10CM|Unspecified sensorineural hearing loss|Unspecified sensorineural hearing loss +C0452153|T047|PT|H90.6|ICD10|Mixed conductive and sensorineural hearing loss, bilateral|Mixed conductive and sensorineural hearing loss, bilateral +C0452153|T047|PT|H90.6|ICD10CM|Mixed conductive and sensorineural hearing loss, bilateral|Mixed conductive and sensorineural hearing loss, bilateral +C0452153|T047|AB|H90.6|ICD10CM|Mixed conductive and sensorineural hearing loss, bilateral|Mixed conductive and sensorineural hearing loss, bilateral +C0452140|T047|AB|H90.7|ICD10CM|Mixed cndct/snrl hear loss, uni w unrestr hear cntra side|Mixed cndct/snrl hear loss, uni w unrestr hear cntra side +C2881944|T047|AB|H90.71|ICD10CM|Mix cndct/snrl hear loss,uni,r ear,w unrestr hear cntra side|Mix cndct/snrl hear loss,uni,r ear,w unrestr hear cntra side +C2881945|T047|AB|H90.72|ICD10CM|Mix cndct/snrl hear loss,uni,l ear,w unrestr hear cntra side|Mix cndct/snrl hear loss,uni,l ear,w unrestr hear cntra side +C0155552|T047|PT|H90.8|ICD10CM|Mixed conductive and sensorineural hearing loss, unspecified|Mixed conductive and sensorineural hearing loss, unspecified +C0155552|T047|AB|H90.8|ICD10CM|Mixed conductive and sensorineural hearing loss, unspecified|Mixed conductive and sensorineural hearing loss, unspecified +C0155552|T047|PT|H90.8|ICD10|Mixed conductive and sensorineural hearing loss, unspecified|Mixed conductive and sensorineural hearing loss, unspecified +C4268451|T033|AB|H90.A|ICD10CM|Cndct/snrl hearing loss with restricted hear cntra side|Cndct/snrl hearing loss with restricted hear cntra side +C4268451|T033|HT|H90.A|ICD10CM|Conductive and sensorineural hearing loss with restricted hearing on the contralateral side|Conductive and sensorineural hearing loss with restricted hearing on the contralateral side +C4268452|T047|AB|H90.A1|ICD10CM|Conductive hear loss, uni, with restricted hear cntra side|Conductive hear loss, uni, with restricted hear cntra side +C4268452|T047|HT|H90.A1|ICD10CM|Conductive hearing loss, unilateral, with restricted hearing on the contralateral side|Conductive hearing loss, unilateral, with restricted hearing on the contralateral side +C4268453|T033|AB|H90.A11|ICD10CM|Condctv hear loss, uni, r ear with rstrcd hear cntra side|Condctv hear loss, uni, r ear with rstrcd hear cntra side +C4268453|T033|PT|H90.A11|ICD10CM|Conductive hearing loss, unilateral, right ear with restricted hearing on the contralateral side|Conductive hearing loss, unilateral, right ear with restricted hearing on the contralateral side +C4268454|T033|AB|H90.A12|ICD10CM|Condctv hear loss, uni, left ear with rstrcd hear cntra side|Condctv hear loss, uni, left ear with rstrcd hear cntra side +C4268454|T033|PT|H90.A12|ICD10CM|Conductive hearing loss, unilateral, left ear with restricted hearing on the contralateral side|Conductive hearing loss, unilateral, left ear with restricted hearing on the contralateral side +C4268455|T047|HT|H90.A2|ICD10CM|Sensorineural hearing loss, unilateral, with restricted hearing on the contralateral side|Sensorineural hearing loss, unilateral, with restricted hearing on the contralateral side +C4268455|T047|AB|H90.A2|ICD10CM|Snsrnrl hear loss, uni, with restricted hear cntra side|Snsrnrl hear loss, uni, with restricted hear cntra side +C4268456|T033|PT|H90.A21|ICD10CM|Sensorineural hearing loss, unilateral, right ear, with restricted hearing on the contralateral side|Sensorineural hearing loss, unilateral, right ear, with restricted hearing on the contralateral side +C4268456|T033|AB|H90.A21|ICD10CM|Snsrnrl hear loss, uni, r ear, with rstrcd hear cntra side|Snsrnrl hear loss, uni, r ear, with rstrcd hear cntra side +C4268457|T033|PT|H90.A22|ICD10CM|Sensorineural hearing loss, unilateral, left ear, with restricted hearing on the contralateral side|Sensorineural hearing loss, unilateral, left ear, with restricted hearing on the contralateral side +C4268457|T033|AB|H90.A22|ICD10CM|Snsrnrl hear loss, uni, l ear, with rstrcd hear cntra side|Snsrnrl hear loss, uni, l ear, with rstrcd hear cntra side +C4268458|T047|AB|H90.A3|ICD10CM|Mixed cndct/snrl hear loss, uni with rstrcd hear cntra side|Mixed cndct/snrl hear loss, uni with rstrcd hear cntra side +C4268459|T033|AB|H90.A31|ICD10CM|Mix cndct/snrl hear loss,uni,r ear w rstrcd hear cntra side|Mix cndct/snrl hear loss,uni,r ear w rstrcd hear cntra side +C4268460|T033|AB|H90.A32|ICD10CM|Mix cndct/snrl hear loss,uni,l ear w rstrcd hear cntra side|Mix cndct/snrl hear loss,uni,l ear w rstrcd hear cntra side +C2881946|T047|AB|H91|ICD10CM|Other and unspecified hearing loss|Other and unspecified hearing loss +C2881946|T047|HT|H91|ICD10CM|Other and unspecified hearing loss|Other and unspecified hearing loss +C0494562|T047|HT|H91|ICD10|Other hearing loss|Other hearing loss +C0494563|T046|PT|H91.0|ICD10|Ototoxic hearing loss|Ototoxic hearing loss +C0494563|T046|HT|H91.0|ICD10CM|Ototoxic hearing loss|Ototoxic hearing loss +C0494563|T046|AB|H91.0|ICD10CM|Ototoxic hearing loss|Ototoxic hearing loss +C2881947|T046|AB|H91.01|ICD10CM|Ototoxic hearing loss, right ear|Ototoxic hearing loss, right ear +C2881947|T046|PT|H91.01|ICD10CM|Ototoxic hearing loss, right ear|Ototoxic hearing loss, right ear +C2881948|T046|AB|H91.02|ICD10CM|Ototoxic hearing loss, left ear|Ototoxic hearing loss, left ear +C2881948|T046|PT|H91.02|ICD10CM|Ototoxic hearing loss, left ear|Ototoxic hearing loss, left ear +C2881949|T046|AB|H91.03|ICD10CM|Ototoxic hearing loss, bilateral|Ototoxic hearing loss, bilateral +C2881949|T046|PT|H91.03|ICD10CM|Ototoxic hearing loss, bilateral|Ototoxic hearing loss, bilateral +C0494563|T046|AB|H91.09|ICD10CM|Ototoxic hearing loss, unspecified ear|Ototoxic hearing loss, unspecified ear +C0494563|T046|PT|H91.09|ICD10CM|Ototoxic hearing loss, unspecified ear|Ototoxic hearing loss, unspecified ear +C0033074|T046|ET|H91.1|ICD10CM|Presbyacusia|Presbyacusia +C0033074|T046|HT|H91.1|ICD10CM|Presbycusis|Presbycusis +C0033074|T046|AB|H91.1|ICD10CM|Presbycusis|Presbycusis +C0033074|T046|PT|H91.1|ICD10|Presbycusis|Presbycusis +C0033074|T046|AB|H91.10|ICD10CM|Presbycusis, unspecified ear|Presbycusis, unspecified ear +C0033074|T046|PT|H91.10|ICD10CM|Presbycusis, unspecified ear|Presbycusis, unspecified ear +C2881950|T046|AB|H91.11|ICD10CM|Presbycusis, right ear|Presbycusis, right ear +C2881950|T046|PT|H91.11|ICD10CM|Presbycusis, right ear|Presbycusis, right ear +C2881951|T046|AB|H91.12|ICD10CM|Presbycusis, left ear|Presbycusis, left ear +C2881951|T046|PT|H91.12|ICD10CM|Presbycusis, left ear|Presbycusis, left ear +C2881952|T046|AB|H91.13|ICD10CM|Presbycusis, bilateral|Presbycusis, bilateral +C2881952|T046|PT|H91.13|ICD10CM|Presbycusis, bilateral|Presbycusis, bilateral +C4316900|T033|ET|H91.2|ICD10CM|Sudden hearing loss NOS|Sudden hearing loss NOS +C4316900|T033|HT|H91.2|ICD10CM|Sudden idiopathic hearing loss|Sudden idiopathic hearing loss +C4316900|T033|AB|H91.2|ICD10CM|Sudden idiopathic hearing loss|Sudden idiopathic hearing loss +C4316900|T033|PT|H91.2|ICD10|Sudden idiopathic hearing loss|Sudden idiopathic hearing loss +C2881953|T033|AB|H91.20|ICD10CM|Sudden idiopathic hearing loss, unspecified ear|Sudden idiopathic hearing loss, unspecified ear +C2881953|T033|PT|H91.20|ICD10CM|Sudden idiopathic hearing loss, unspecified ear|Sudden idiopathic hearing loss, unspecified ear +C2881954|T033|AB|H91.21|ICD10CM|Sudden idiopathic hearing loss, right ear|Sudden idiopathic hearing loss, right ear +C2881954|T033|PT|H91.21|ICD10CM|Sudden idiopathic hearing loss, right ear|Sudden idiopathic hearing loss, right ear +C2881955|T033|AB|H91.22|ICD10CM|Sudden idiopathic hearing loss, left ear|Sudden idiopathic hearing loss, left ear +C2881955|T033|PT|H91.22|ICD10CM|Sudden idiopathic hearing loss, left ear|Sudden idiopathic hearing loss, left ear +C2881956|T033|AB|H91.23|ICD10CM|Sudden idiopathic hearing loss, bilateral|Sudden idiopathic hearing loss, bilateral +C2881956|T033|PT|H91.23|ICD10CM|Sudden idiopathic hearing loss, bilateral|Sudden idiopathic hearing loss, bilateral +C0869282|T047|PT|H91.3|ICD10|Deaf mutism, not elsewhere classified|Deaf mutism, not elsewhere classified +C2881957|T047|AB|H91.3|ICD10CM|Deaf nonspeaking, not elsewhere classified|Deaf nonspeaking, not elsewhere classified +C2881957|T047|PT|H91.3|ICD10CM|Deaf nonspeaking, not elsewhere classified|Deaf nonspeaking, not elsewhere classified +C0477458|T047|PT|H91.8|ICD10|Other specified hearing loss|Other specified hearing loss +C0477458|T047|HT|H91.8|ICD10CM|Other specified hearing loss|Other specified hearing loss +C0477458|T047|AB|H91.8|ICD10CM|Other specified hearing loss|Other specified hearing loss +C0477458|T047|HT|H91.8X|ICD10CM|Other specified hearing loss|Other specified hearing loss +C0477458|T047|AB|H91.8X|ICD10CM|Other specified hearing loss|Other specified hearing loss +C2881958|T047|AB|H91.8X1|ICD10CM|Other specified hearing loss, right ear|Other specified hearing loss, right ear +C2881958|T047|PT|H91.8X1|ICD10CM|Other specified hearing loss, right ear|Other specified hearing loss, right ear +C2881959|T047|AB|H91.8X2|ICD10CM|Other specified hearing loss, left ear|Other specified hearing loss, left ear +C2881959|T047|PT|H91.8X2|ICD10CM|Other specified hearing loss, left ear|Other specified hearing loss, left ear +C2881960|T047|AB|H91.8X3|ICD10CM|Other specified hearing loss, bilateral|Other specified hearing loss, bilateral +C2881960|T047|PT|H91.8X3|ICD10CM|Other specified hearing loss, bilateral|Other specified hearing loss, bilateral +C0477458|T047|AB|H91.8X9|ICD10CM|Other specified hearing loss, unspecified ear|Other specified hearing loss, unspecified ear +C0477458|T047|PT|H91.8X9|ICD10CM|Other specified hearing loss, unspecified ear|Other specified hearing loss, unspecified ear +C0011053|T033|ET|H91.9|ICD10CM|Deafness NOS|Deafness NOS +C1384666|T047|PT|H91.9|ICD10|Hearing loss, unspecified|Hearing loss, unspecified +C0018780|T047|ET|H91.9|ICD10CM|High frequency deafness|High frequency deafness +C0271514|T047|ET|H91.9|ICD10CM|Low frequency deafness|Low frequency deafness +C1384666|T047|HT|H91.9|ICD10CM|Unspecified hearing loss|Unspecified hearing loss +C1384666|T047|AB|H91.9|ICD10CM|Unspecified hearing loss|Unspecified hearing loss +C2881961|T033|AB|H91.90|ICD10CM|Unspecified hearing loss, unspecified ear|Unspecified hearing loss, unspecified ear +C2881961|T033|PT|H91.90|ICD10CM|Unspecified hearing loss, unspecified ear|Unspecified hearing loss, unspecified ear +C2881962|T033|AB|H91.91|ICD10CM|Unspecified hearing loss, right ear|Unspecified hearing loss, right ear +C2881962|T033|PT|H91.91|ICD10CM|Unspecified hearing loss, right ear|Unspecified hearing loss, right ear +C2881963|T033|AB|H91.92|ICD10CM|Unspecified hearing loss, left ear|Unspecified hearing loss, left ear +C2881963|T033|PT|H91.92|ICD10CM|Unspecified hearing loss, left ear|Unspecified hearing loss, left ear +C2881964|T033|AB|H91.93|ICD10CM|Unspecified hearing loss, bilateral|Unspecified hearing loss, bilateral +C2881964|T033|PT|H91.93|ICD10CM|Unspecified hearing loss, bilateral|Unspecified hearing loss, bilateral +C0494565|T184|AB|H92|ICD10CM|Otalgia and effusion of ear|Otalgia and effusion of ear +C0494565|T184|HT|H92|ICD10CM|Otalgia and effusion of ear|Otalgia and effusion of ear +C0494565|T184|HT|H92|ICD10|Otalgia and effusion of ear|Otalgia and effusion of ear +C0013456|T184|HT|H92.0|ICD10CM|Otalgia|Otalgia +C0013456|T184|AB|H92.0|ICD10CM|Otalgia|Otalgia +C0013456|T184|PT|H92.0|ICD10|Otalgia|Otalgia +C2199592|T184|AB|H92.01|ICD10CM|Otalgia, right ear|Otalgia, right ear +C2199592|T184|PT|H92.01|ICD10CM|Otalgia, right ear|Otalgia, right ear +C2199591|T184|AB|H92.02|ICD10CM|Otalgia, left ear|Otalgia, left ear +C2199591|T184|PT|H92.02|ICD10CM|Otalgia, left ear|Otalgia, left ear +C0423625|T184|AB|H92.03|ICD10CM|Otalgia, bilateral|Otalgia, bilateral +C0423625|T184|PT|H92.03|ICD10CM|Otalgia, bilateral|Otalgia, bilateral +C0013456|T184|AB|H92.09|ICD10CM|Otalgia, unspecified ear|Otalgia, unspecified ear +C0013456|T184|PT|H92.09|ICD10CM|Otalgia, unspecified ear|Otalgia, unspecified ear +C0155540|T033|PT|H92.1|ICD10AE|Otorrhea|Otorrhea +C0155540|T033|HT|H92.1|ICD10CM|Otorrhea|Otorrhea +C0155540|T033|AB|H92.1|ICD10CM|Otorrhea|Otorrhea +C0155540|T033|PT|H92.1|ICD10|Otorrhoea|Otorrhoea +C0155540|T033|AB|H92.10|ICD10CM|Otorrhea, unspecified ear|Otorrhea, unspecified ear +C0155540|T033|PT|H92.10|ICD10CM|Otorrhea, unspecified ear|Otorrhea, unspecified ear +C2881968|T033|AB|H92.11|ICD10CM|Otorrhea, right ear|Otorrhea, right ear +C2881968|T033|PT|H92.11|ICD10CM|Otorrhea, right ear|Otorrhea, right ear +C2183784|T184|AB|H92.12|ICD10CM|Otorrhea, left ear|Otorrhea, left ear +C2183784|T184|PT|H92.12|ICD10CM|Otorrhea, left ear|Otorrhea, left ear +C2881970|T033|AB|H92.13|ICD10CM|Otorrhea, bilateral|Otorrhea, bilateral +C2881970|T033|PT|H92.13|ICD10CM|Otorrhea, bilateral|Otorrhea, bilateral +C0271412|T046|PT|H92.2|ICD10|Otorrhagia|Otorrhagia +C0271412|T046|HT|H92.2|ICD10CM|Otorrhagia|Otorrhagia +C0271412|T046|AB|H92.2|ICD10CM|Otorrhagia|Otorrhagia +C0271412|T046|AB|H92.20|ICD10CM|Otorrhagia, unspecified ear|Otorrhagia, unspecified ear +C0271412|T046|PT|H92.20|ICD10CM|Otorrhagia, unspecified ear|Otorrhagia, unspecified ear +C2881971|T046|AB|H92.21|ICD10CM|Otorrhagia, right ear|Otorrhagia, right ear +C2881971|T046|PT|H92.21|ICD10CM|Otorrhagia, right ear|Otorrhagia, right ear +C2881972|T046|AB|H92.22|ICD10CM|Otorrhagia, left ear|Otorrhagia, left ear +C2881972|T046|PT|H92.22|ICD10CM|Otorrhagia, left ear|Otorrhagia, left ear +C2881973|T184|AB|H92.23|ICD10CM|Otorrhagia, bilateral|Otorrhagia, bilateral +C2881973|T184|PT|H92.23|ICD10CM|Otorrhagia, bilateral|Otorrhagia, bilateral +C0494566|T047|HT|H93|ICD10|Other disorders of ear, not elsewhere classified|Other disorders of ear, not elsewhere classified +C0494566|T047|AB|H93|ICD10CM|Other disorders of ear, not elsewhere classified|Other disorders of ear, not elsewhere classified +C0494566|T047|HT|H93|ICD10CM|Other disorders of ear, not elsewhere classified|Other disorders of ear, not elsewhere classified +C0155528|T047|PT|H93.0|ICD10|Degenerative and vascular disorders of ear|Degenerative and vascular disorders of ear +C0155528|T047|HT|H93.0|ICD10CM|Degenerative and vascular disorders of ear|Degenerative and vascular disorders of ear +C0155528|T047|AB|H93.0|ICD10CM|Degenerative and vascular disorders of ear|Degenerative and vascular disorders of ear +C0155530|T046|HT|H93.01|ICD10CM|Transient ischemic deafness|Transient ischemic deafness +C0155530|T046|AB|H93.01|ICD10CM|Transient ischemic deafness|Transient ischemic deafness +C2881974|T046|AB|H93.011|ICD10CM|Transient ischemic deafness, right ear|Transient ischemic deafness, right ear +C2881974|T046|PT|H93.011|ICD10CM|Transient ischemic deafness, right ear|Transient ischemic deafness, right ear +C2881975|T046|AB|H93.012|ICD10CM|Transient ischemic deafness, left ear|Transient ischemic deafness, left ear +C2881975|T046|PT|H93.012|ICD10CM|Transient ischemic deafness, left ear|Transient ischemic deafness, left ear +C2881976|T046|AB|H93.013|ICD10CM|Transient ischemic deafness, bilateral|Transient ischemic deafness, bilateral +C2881976|T046|PT|H93.013|ICD10CM|Transient ischemic deafness, bilateral|Transient ischemic deafness, bilateral +C0155530|T046|AB|H93.019|ICD10CM|Transient ischemic deafness, unspecified ear|Transient ischemic deafness, unspecified ear +C0155530|T046|PT|H93.019|ICD10CM|Transient ischemic deafness, unspecified ear|Transient ischemic deafness, unspecified ear +C0155528|T047|AB|H93.09|ICD10CM|Unspecified degenerative and vascular disorders of ear|Unspecified degenerative and vascular disorders of ear +C0155528|T047|HT|H93.09|ICD10CM|Unspecified degenerative and vascular disorders of ear|Unspecified degenerative and vascular disorders of ear +C2881977|T047|AB|H93.091|ICD10CM|Unspecified degenerative and vascular disorders of right ear|Unspecified degenerative and vascular disorders of right ear +C2881977|T047|PT|H93.091|ICD10CM|Unspecified degenerative and vascular disorders of right ear|Unspecified degenerative and vascular disorders of right ear +C2881978|T047|AB|H93.092|ICD10CM|Unspecified degenerative and vascular disorders of left ear|Unspecified degenerative and vascular disorders of left ear +C2881978|T047|PT|H93.092|ICD10CM|Unspecified degenerative and vascular disorders of left ear|Unspecified degenerative and vascular disorders of left ear +C2881979|T047|AB|H93.093|ICD10CM|Unsp degenerative and vascular disorders of ear, bilateral|Unsp degenerative and vascular disorders of ear, bilateral +C2881979|T047|PT|H93.093|ICD10CM|Unspecified degenerative and vascular disorders of ear, bilateral|Unspecified degenerative and vascular disorders of ear, bilateral +C0155528|T047|AB|H93.099|ICD10CM|Unsp degenerative and vascular disorders of unspecified ear|Unsp degenerative and vascular disorders of unspecified ear +C0155528|T047|PT|H93.099|ICD10CM|Unspecified degenerative and vascular disorders of unspecified ear|Unspecified degenerative and vascular disorders of unspecified ear +C0040264|T047|HT|H93.1|ICD10CM|Tinnitus|Tinnitus +C0040264|T047|AB|H93.1|ICD10CM|Tinnitus|Tinnitus +C0040264|T047|PT|H93.1|ICD10|Tinnitus|Tinnitus +C2116484|T033|AB|H93.11|ICD10CM|Tinnitus, right ear|Tinnitus, right ear +C2116484|T033|PT|H93.11|ICD10CM|Tinnitus, right ear|Tinnitus, right ear +C2116482|T033|AB|H93.12|ICD10CM|Tinnitus, left ear|Tinnitus, left ear +C2116482|T033|PT|H93.12|ICD10CM|Tinnitus, left ear|Tinnitus, left ear +C2881980|T033|AB|H93.13|ICD10CM|Tinnitus, bilateral|Tinnitus, bilateral +C2881980|T033|PT|H93.13|ICD10CM|Tinnitus, bilateral|Tinnitus, bilateral +C0040264|T047|AB|H93.19|ICD10CM|Tinnitus, unspecified ear|Tinnitus, unspecified ear +C0040264|T047|PT|H93.19|ICD10CM|Tinnitus, unspecified ear|Tinnitus, unspecified ear +C0155535|T033|HT|H93.2|ICD10CM|Other abnormal auditory perceptions|Other abnormal auditory perceptions +C0155535|T033|AB|H93.2|ICD10CM|Other abnormal auditory perceptions|Other abnormal auditory perceptions +C0155535|T033|PT|H93.2|ICD10|Other abnormal auditory perceptions|Other abnormal auditory perceptions +C0271510|T047|HT|H93.21|ICD10CM|Auditory recruitment|Auditory recruitment +C0271510|T047|AB|H93.21|ICD10CM|Auditory recruitment|Auditory recruitment +C2881981|T047|AB|H93.211|ICD10CM|Auditory recruitment, right ear|Auditory recruitment, right ear +C2881981|T047|PT|H93.211|ICD10CM|Auditory recruitment, right ear|Auditory recruitment, right ear +C2881982|T047|AB|H93.212|ICD10CM|Auditory recruitment, left ear|Auditory recruitment, left ear +C2881982|T047|PT|H93.212|ICD10CM|Auditory recruitment, left ear|Auditory recruitment, left ear +C2881983|T047|AB|H93.213|ICD10CM|Auditory recruitment, bilateral|Auditory recruitment, bilateral +C2881983|T047|PT|H93.213|ICD10CM|Auditory recruitment, bilateral|Auditory recruitment, bilateral +C2881984|T047|AB|H93.219|ICD10CM|Auditory recruitment, unspecified ear|Auditory recruitment, unspecified ear +C2881984|T047|PT|H93.219|ICD10CM|Auditory recruitment, unspecified ear|Auditory recruitment, unspecified ear +C0152228|T184|HT|H93.22|ICD10CM|Diplacusis|Diplacusis +C0152228|T184|AB|H93.22|ICD10CM|Diplacusis|Diplacusis +C2881985|T184|AB|H93.221|ICD10CM|Diplacusis, right ear|Diplacusis, right ear +C2881985|T184|PT|H93.221|ICD10CM|Diplacusis, right ear|Diplacusis, right ear +C2881986|T184|AB|H93.222|ICD10CM|Diplacusis, left ear|Diplacusis, left ear +C2881986|T184|PT|H93.222|ICD10CM|Diplacusis, left ear|Diplacusis, left ear +C2881987|T184|AB|H93.223|ICD10CM|Diplacusis, bilateral|Diplacusis, bilateral +C2881987|T184|PT|H93.223|ICD10CM|Diplacusis, bilateral|Diplacusis, bilateral +C0152228|T184|AB|H93.229|ICD10CM|Diplacusis, unspecified ear|Diplacusis, unspecified ear +C0152228|T184|PT|H93.229|ICD10CM|Diplacusis, unspecified ear|Diplacusis, unspecified ear +C0034880|T184|HT|H93.23|ICD10CM|Hyperacusis|Hyperacusis +C0034880|T184|AB|H93.23|ICD10CM|Hyperacusis|Hyperacusis +C2881988|T033|AB|H93.231|ICD10CM|Hyperacusis, right ear|Hyperacusis, right ear +C2881988|T033|PT|H93.231|ICD10CM|Hyperacusis, right ear|Hyperacusis, right ear +C2881989|T033|AB|H93.232|ICD10CM|Hyperacusis, left ear|Hyperacusis, left ear +C2881989|T033|PT|H93.232|ICD10CM|Hyperacusis, left ear|Hyperacusis, left ear +C2881990|T033|AB|H93.233|ICD10CM|Hyperacusis, bilateral|Hyperacusis, bilateral +C2881990|T033|PT|H93.233|ICD10CM|Hyperacusis, bilateral|Hyperacusis, bilateral +C2881991|T033|AB|H93.239|ICD10CM|Hyperacusis, unspecified ear|Hyperacusis, unspecified ear +C2881991|T033|PT|H93.239|ICD10CM|Hyperacusis, unspecified ear|Hyperacusis, unspecified ear +C0039491|T047|HT|H93.24|ICD10CM|Temporary auditory threshold shift|Temporary auditory threshold shift +C0039491|T047|AB|H93.24|ICD10CM|Temporary auditory threshold shift|Temporary auditory threshold shift +C2881992|T047|AB|H93.241|ICD10CM|Temporary auditory threshold shift, right ear|Temporary auditory threshold shift, right ear +C2881992|T047|PT|H93.241|ICD10CM|Temporary auditory threshold shift, right ear|Temporary auditory threshold shift, right ear +C2881993|T047|AB|H93.242|ICD10CM|Temporary auditory threshold shift, left ear|Temporary auditory threshold shift, left ear +C2881993|T047|PT|H93.242|ICD10CM|Temporary auditory threshold shift, left ear|Temporary auditory threshold shift, left ear +C2881994|T047|AB|H93.243|ICD10CM|Temporary auditory threshold shift, bilateral|Temporary auditory threshold shift, bilateral +C2881994|T047|PT|H93.243|ICD10CM|Temporary auditory threshold shift, bilateral|Temporary auditory threshold shift, bilateral +C0039491|T047|AB|H93.249|ICD10CM|Temporary auditory threshold shift, unspecified ear|Temporary auditory threshold shift, unspecified ear +C0039491|T047|PT|H93.249|ICD10CM|Temporary auditory threshold shift, unspecified ear|Temporary auditory threshold shift, unspecified ear +C0751257|T047|PT|H93.25|ICD10CM|Central auditory processing disorder|Central auditory processing disorder +C0751257|T047|AB|H93.25|ICD10CM|Central auditory processing disorder|Central auditory processing disorder +C0349393|T048|ET|H93.25|ICD10CM|Congenital auditory imperception|Congenital auditory imperception +C1366485|T048|ET|H93.25|ICD10CM|Word deafness|Word deafness +C0155535|T033|HT|H93.29|ICD10CM|Other abnormal auditory perceptions|Other abnormal auditory perceptions +C0155535|T033|AB|H93.29|ICD10CM|Other abnormal auditory perceptions|Other abnormal auditory perceptions +C2881995|T033|AB|H93.291|ICD10CM|Other abnormal auditory perceptions, right ear|Other abnormal auditory perceptions, right ear +C2881995|T033|PT|H93.291|ICD10CM|Other abnormal auditory perceptions, right ear|Other abnormal auditory perceptions, right ear +C2881996|T033|AB|H93.292|ICD10CM|Other abnormal auditory perceptions, left ear|Other abnormal auditory perceptions, left ear +C2881996|T033|PT|H93.292|ICD10CM|Other abnormal auditory perceptions, left ear|Other abnormal auditory perceptions, left ear +C2881997|T033|AB|H93.293|ICD10CM|Other abnormal auditory perceptions, bilateral|Other abnormal auditory perceptions, bilateral +C2881997|T033|PT|H93.293|ICD10CM|Other abnormal auditory perceptions, bilateral|Other abnormal auditory perceptions, bilateral +C2881998|T033|AB|H93.299|ICD10CM|Other abnormal auditory perceptions, unspecified ear|Other abnormal auditory perceptions, unspecified ear +C2881998|T033|PT|H93.299|ICD10CM|Other abnormal auditory perceptions, unspecified ear|Other abnormal auditory perceptions, unspecified ear +C2881999|T047|ET|H93.3|ICD10CM|Disorder of 8th cranial nerve|Disorder of 8th cranial nerve +C0001163|T047|PT|H93.3|ICD10|Disorders of acoustic nerve|Disorders of acoustic nerve +C0001163|T047|HT|H93.3|ICD10CM|Disorders of acoustic nerve|Disorders of acoustic nerve +C0001163|T047|AB|H93.3|ICD10CM|Disorders of acoustic nerve|Disorders of acoustic nerve +C0001163|T047|HT|H93.3X|ICD10CM|Disorders of acoustic nerve|Disorders of acoustic nerve +C0001163|T047|AB|H93.3X|ICD10CM|Disorders of acoustic nerve|Disorders of acoustic nerve +C2882000|T047|AB|H93.3X1|ICD10CM|Disorders of right acoustic nerve|Disorders of right acoustic nerve +C2882000|T047|PT|H93.3X1|ICD10CM|Disorders of right acoustic nerve|Disorders of right acoustic nerve +C2882001|T047|AB|H93.3X2|ICD10CM|Disorders of left acoustic nerve|Disorders of left acoustic nerve +C2882001|T047|PT|H93.3X2|ICD10CM|Disorders of left acoustic nerve|Disorders of left acoustic nerve +C2882002|T047|AB|H93.3X3|ICD10CM|Disorders of bilateral acoustic nerves|Disorders of bilateral acoustic nerves +C2882002|T047|PT|H93.3X3|ICD10CM|Disorders of bilateral acoustic nerves|Disorders of bilateral acoustic nerves +C2882003|T047|AB|H93.3X9|ICD10CM|Disorders of unspecified acoustic nerve|Disorders of unspecified acoustic nerve +C2882003|T047|PT|H93.3X9|ICD10CM|Disorders of unspecified acoustic nerve|Disorders of unspecified acoustic nerve +C0477459|T047|HT|H93.8|ICD10CM|Other specified disorders of ear|Other specified disorders of ear +C0477459|T047|AB|H93.8|ICD10CM|Other specified disorders of ear|Other specified disorders of ear +C0477459|T047|PT|H93.8|ICD10|Other specified disorders of ear|Other specified disorders of ear +C0477459|T047|HT|H93.8X|ICD10CM|Other specified disorders of ear|Other specified disorders of ear +C0477459|T047|AB|H93.8X|ICD10CM|Other specified disorders of ear|Other specified disorders of ear +C2882004|T047|AB|H93.8X1|ICD10CM|Other specified disorders of right ear|Other specified disorders of right ear +C2882004|T047|PT|H93.8X1|ICD10CM|Other specified disorders of right ear|Other specified disorders of right ear +C2882005|T047|AB|H93.8X2|ICD10CM|Other specified disorders of left ear|Other specified disorders of left ear +C2882005|T047|PT|H93.8X2|ICD10CM|Other specified disorders of left ear|Other specified disorders of left ear +C2882006|T047|AB|H93.8X3|ICD10CM|Other specified disorders of ear, bilateral|Other specified disorders of ear, bilateral +C2882006|T047|PT|H93.8X3|ICD10CM|Other specified disorders of ear, bilateral|Other specified disorders of ear, bilateral +C0477459|T047|AB|H93.8X9|ICD10CM|Other specified disorders of ear, unspecified ear|Other specified disorders of ear, unspecified ear +C0477459|T047|PT|H93.8X9|ICD10CM|Other specified disorders of ear, unspecified ear|Other specified disorders of ear, unspecified ear +C0013447|T047|PT|H93.9|ICD10|Disorder of ear, unspecified|Disorder of ear, unspecified +C0013447|T047|HT|H93.9|ICD10CM|Unspecified disorder of ear|Unspecified disorder of ear +C0013447|T047|AB|H93.9|ICD10CM|Unspecified disorder of ear|Unspecified disorder of ear +C0013447|T047|AB|H93.90|ICD10CM|Unspecified disorder of ear, unspecified ear|Unspecified disorder of ear, unspecified ear +C0013447|T047|PT|H93.90|ICD10CM|Unspecified disorder of ear, unspecified ear|Unspecified disorder of ear, unspecified ear +C2882007|T047|AB|H93.91|ICD10CM|Unspecified disorder of right ear|Unspecified disorder of right ear +C2882007|T047|PT|H93.91|ICD10CM|Unspecified disorder of right ear|Unspecified disorder of right ear +C2882008|T047|AB|H93.92|ICD10CM|Unspecified disorder of left ear|Unspecified disorder of left ear +C2882008|T047|PT|H93.92|ICD10CM|Unspecified disorder of left ear|Unspecified disorder of left ear +C2882009|T047|AB|H93.93|ICD10CM|Unspecified disorder of ear, bilateral|Unspecified disorder of ear, bilateral +C2882009|T047|PT|H93.93|ICD10CM|Unspecified disorder of ear, bilateral|Unspecified disorder of ear, bilateral +C0751559|T047|HT|H93.A|ICD10CM|Pulsatile tinnitus|Pulsatile tinnitus +C0751559|T047|AB|H93.A|ICD10CM|Pulsatile tinnitus|Pulsatile tinnitus +C4268461|T047|AB|H93.A1|ICD10CM|Pulsatile tinnitus, right ear|Pulsatile tinnitus, right ear +C4268461|T047|PT|H93.A1|ICD10CM|Pulsatile tinnitus, right ear|Pulsatile tinnitus, right ear +C4268462|T047|AB|H93.A2|ICD10CM|Pulsatile tinnitus, left ear|Pulsatile tinnitus, left ear +C4268462|T047|PT|H93.A2|ICD10CM|Pulsatile tinnitus, left ear|Pulsatile tinnitus, left ear +C4268463|T047|AB|H93.A3|ICD10CM|Pulsatile tinnitus, bilateral|Pulsatile tinnitus, bilateral +C4268463|T047|PT|H93.A3|ICD10CM|Pulsatile tinnitus, bilateral|Pulsatile tinnitus, bilateral +C4268464|T047|AB|H93.A9|ICD10CM|Pulsatile tinnitus, unspecified ear|Pulsatile tinnitus, unspecified ear +C4268464|T047|PT|H93.A9|ICD10CM|Pulsatile tinnitus, unspecified ear|Pulsatile tinnitus, unspecified ear +C0694495|T047|AB|H94|ICD10CM|Other disorders of ear in diseases classified elsewhere|Other disorders of ear in diseases classified elsewhere +C0694495|T047|HT|H94|ICD10CM|Other disorders of ear in diseases classified elsewhere|Other disorders of ear in diseases classified elsewhere +C0694495|T047|HT|H94|ICD10|Other disorders of ear in diseases classified elsewhere|Other disorders of ear in diseases classified elsewhere +C0477460|T047|AB|H94.0|ICD10CM|Acoustic neuritis in infec/parastc diseases classd elswhr|Acoustic neuritis in infec/parastc diseases classd elswhr +C0477460|T047|HT|H94.0|ICD10CM|Acoustic neuritis in infectious and parasitic diseases classified elsewhere|Acoustic neuritis in infectious and parasitic diseases classified elsewhere +C0477460|T047|PT|H94.0|ICD10|Acoustic neuritis in infectious and parasitic diseases classified elsewhere|Acoustic neuritis in infectious and parasitic diseases classified elsewhere +C2882010|T047|PT|H94.00|ICD10CM|Acoustic neuritis in infectious and parasitic diseases classified elsewhere, unspecified ear|Acoustic neuritis in infectious and parasitic diseases classified elsewhere, unspecified ear +C2882010|T047|AB|H94.00|ICD10CM|Acustc neuritis in infec/parastc dis classd elswhr, unsp ear|Acustc neuritis in infec/parastc dis classd elswhr, unsp ear +C2882011|T047|PT|H94.01|ICD10CM|Acoustic neuritis in infectious and parasitic diseases classified elsewhere, right ear|Acoustic neuritis in infectious and parasitic diseases classified elsewhere, right ear +C2882011|T047|AB|H94.01|ICD10CM|Acustc neuritis in infec/parastc dis classd elswhr, r ear|Acustc neuritis in infec/parastc dis classd elswhr, r ear +C2882012|T047|PT|H94.02|ICD10CM|Acoustic neuritis in infectious and parasitic diseases classified elsewhere, left ear|Acoustic neuritis in infectious and parasitic diseases classified elsewhere, left ear +C2882012|T047|AB|H94.02|ICD10CM|Acustc neuritis in infec/parastc dis classd elswhr, left ear|Acustc neuritis in infec/parastc dis classd elswhr, left ear +C2882013|T047|PT|H94.03|ICD10CM|Acoustic neuritis in infectious and parasitic diseases classified elsewhere, bilateral|Acoustic neuritis in infectious and parasitic diseases classified elsewhere, bilateral +C2882013|T047|AB|H94.03|ICD10CM|Acustc neuritis in infec/parastc diseases classd elswhr, bi|Acustc neuritis in infec/parastc diseases classd elswhr, bi +C0477461|T047|AB|H94.8|ICD10CM|Oth disrd of ear in diseases classified elsewhere|Oth disrd of ear in diseases classified elsewhere +C0477461|T047|HT|H94.8|ICD10CM|Other specified disorders of ear in diseases classified elsewhere|Other specified disorders of ear in diseases classified elsewhere +C0477461|T047|PT|H94.8|ICD10|Other specified disorders of ear in diseases classified elsewhere|Other specified disorders of ear in diseases classified elsewhere +C0477461|T047|AB|H94.80|ICD10CM|Oth disrd of ear in diseases classified elsewhere, unsp ear|Oth disrd of ear in diseases classified elsewhere, unsp ear +C0477461|T047|PT|H94.80|ICD10CM|Other specified disorders of ear in diseases classified elsewhere, unspecified ear|Other specified disorders of ear in diseases classified elsewhere, unspecified ear +C2882014|T047|AB|H94.81|ICD10CM|Oth disrd of right ear in diseases classified elsewhere|Oth disrd of right ear in diseases classified elsewhere +C2882014|T047|PT|H94.81|ICD10CM|Other specified disorders of right ear in diseases classified elsewhere|Other specified disorders of right ear in diseases classified elsewhere +C2882015|T047|AB|H94.82|ICD10CM|Oth disrd of left ear in diseases classified elsewhere|Oth disrd of left ear in diseases classified elsewhere +C2882015|T047|PT|H94.82|ICD10CM|Other specified disorders of left ear in diseases classified elsewhere|Other specified disorders of left ear in diseases classified elsewhere +C2882016|T047|AB|H94.83|ICD10CM|Oth disrd of ear in diseases classified elsewhere, bilateral|Oth disrd of ear in diseases classified elsewhere, bilateral +C2882016|T047|PT|H94.83|ICD10CM|Other specified disorders of ear in diseases classified elsewhere, bilateral|Other specified disorders of ear in diseases classified elsewhere, bilateral +C2882017|T046|AB|H95|ICD10CM|Intraop and postproc comp and disorders of ear/mastd, NEC|Intraop and postproc comp and disorders of ear/mastd, NEC +C0494567|T047|HT|H95|ICD10|Postprocedural disorders of ear and mastoid process, not elsewhere classified|Postprocedural disorders of ear and mastoid process, not elsewhere classified +C0155454|T047|HT|H95.0|ICD10CM|Recurrent cholesteatoma of postmastoidectomy cavity|Recurrent cholesteatoma of postmastoidectomy cavity +C0155454|T047|AB|H95.0|ICD10CM|Recurrent cholesteatoma of postmastoidectomy cavity|Recurrent cholesteatoma of postmastoidectomy cavity +C0155454|T047|PT|H95.0|ICD10|Recurrent cholesteatoma of postmastoidectomy cavity|Recurrent cholesteatoma of postmastoidectomy cavity +C0155454|T047|AB|H95.00|ICD10CM|Recur cholesteatoma of postmastoidectomy cavity, unsp ear|Recur cholesteatoma of postmastoidectomy cavity, unsp ear +C0155454|T047|PT|H95.00|ICD10CM|Recurrent cholesteatoma of postmastoidectomy cavity, unspecified ear|Recurrent cholesteatoma of postmastoidectomy cavity, unspecified ear +C2882018|T047|AB|H95.01|ICD10CM|Recur cholesteatoma of postmastoidectomy cavity, right ear|Recur cholesteatoma of postmastoidectomy cavity, right ear +C2882018|T047|PT|H95.01|ICD10CM|Recurrent cholesteatoma of postmastoidectomy cavity, right ear|Recurrent cholesteatoma of postmastoidectomy cavity, right ear +C2882019|T047|AB|H95.02|ICD10CM|Recur cholesteatoma of postmastoidectomy cavity, left ear|Recur cholesteatoma of postmastoidectomy cavity, left ear +C2882019|T047|PT|H95.02|ICD10CM|Recurrent cholesteatoma of postmastoidectomy cavity, left ear|Recurrent cholesteatoma of postmastoidectomy cavity, left ear +C2882020|T047|AB|H95.03|ICD10CM|Recurrent cholesteatoma of postmastoidectomy cavity, bi ears|Recurrent cholesteatoma of postmastoidectomy cavity, bi ears +C2882020|T047|PT|H95.03|ICD10CM|Recurrent cholesteatoma of postmastoidectomy cavity, bilateral ears|Recurrent cholesteatoma of postmastoidectomy cavity, bilateral ears +C2882021|T046|AB|H95.1|ICD10CM|Oth disorders of ear/mastd following mastoidectomy|Oth disorders of ear/mastd following mastoidectomy +C0477462|T046|PT|H95.1|ICD10|Other disorders following mastoidectomy|Other disorders following mastoidectomy +C2882021|T046|HT|H95.1|ICD10CM|Other disorders of ear and mastoid process following mastoidectomy|Other disorders of ear and mastoid process following mastoidectomy +C0271481|T046|AB|H95.11|ICD10CM|Chronic inflammation of postmastoidectomy cavity|Chronic inflammation of postmastoidectomy cavity +C0271481|T046|HT|H95.11|ICD10CM|Chronic inflammation of postmastoidectomy cavity|Chronic inflammation of postmastoidectomy cavity +C2882022|T046|AB|H95.111|ICD10CM|Chronic inflammation of postmastoidectomy cavity, right ear|Chronic inflammation of postmastoidectomy cavity, right ear +C2882022|T046|PT|H95.111|ICD10CM|Chronic inflammation of postmastoidectomy cavity, right ear|Chronic inflammation of postmastoidectomy cavity, right ear +C2882023|T046|AB|H95.112|ICD10CM|Chronic inflammation of postmastoidectomy cavity, left ear|Chronic inflammation of postmastoidectomy cavity, left ear +C2882023|T046|PT|H95.112|ICD10CM|Chronic inflammation of postmastoidectomy cavity, left ear|Chronic inflammation of postmastoidectomy cavity, left ear +C2882024|T046|AB|H95.113|ICD10CM|Chronic inflam of postmastoidectomy cavity, bilateral ears|Chronic inflam of postmastoidectomy cavity, bilateral ears +C2882024|T046|PT|H95.113|ICD10CM|Chronic inflammation of postmastoidectomy cavity, bilateral ears|Chronic inflammation of postmastoidectomy cavity, bilateral ears +C0271481|T046|AB|H95.119|ICD10CM|Chronic inflammation of postmastoidectomy cavity, unsp ear|Chronic inflammation of postmastoidectomy cavity, unsp ear +C0271481|T046|PT|H95.119|ICD10CM|Chronic inflammation of postmastoidectomy cavity, unspecified ear|Chronic inflammation of postmastoidectomy cavity, unspecified ear +C0155455|T046|AB|H95.12|ICD10CM|Granulation of postmastoidectomy cavity|Granulation of postmastoidectomy cavity +C0155455|T046|HT|H95.12|ICD10CM|Granulation of postmastoidectomy cavity|Granulation of postmastoidectomy cavity +C2882025|T046|AB|H95.121|ICD10CM|Granulation of postmastoidectomy cavity, right ear|Granulation of postmastoidectomy cavity, right ear +C2882025|T046|PT|H95.121|ICD10CM|Granulation of postmastoidectomy cavity, right ear|Granulation of postmastoidectomy cavity, right ear +C2882026|T046|AB|H95.122|ICD10CM|Granulation of postmastoidectomy cavity, left ear|Granulation of postmastoidectomy cavity, left ear +C2882026|T046|PT|H95.122|ICD10CM|Granulation of postmastoidectomy cavity, left ear|Granulation of postmastoidectomy cavity, left ear +C2882027|T046|AB|H95.123|ICD10CM|Granulation of postmastoidectomy cavity, bilateral ears|Granulation of postmastoidectomy cavity, bilateral ears +C2882027|T046|PT|H95.123|ICD10CM|Granulation of postmastoidectomy cavity, bilateral ears|Granulation of postmastoidectomy cavity, bilateral ears +C0155455|T046|AB|H95.129|ICD10CM|Granulation of postmastoidectomy cavity, unspecified ear|Granulation of postmastoidectomy cavity, unspecified ear +C0155455|T046|PT|H95.129|ICD10CM|Granulation of postmastoidectomy cavity, unspecified ear|Granulation of postmastoidectomy cavity, unspecified ear +C0155453|T047|HT|H95.13|ICD10CM|Mucosal cyst of postmastoidectomy cavity|Mucosal cyst of postmastoidectomy cavity +C0155453|T047|AB|H95.13|ICD10CM|Mucosal cyst of postmastoidectomy cavity|Mucosal cyst of postmastoidectomy cavity +C2882028|T047|AB|H95.131|ICD10CM|Mucosal cyst of postmastoidectomy cavity, right ear|Mucosal cyst of postmastoidectomy cavity, right ear +C2882028|T047|PT|H95.131|ICD10CM|Mucosal cyst of postmastoidectomy cavity, right ear|Mucosal cyst of postmastoidectomy cavity, right ear +C2882029|T047|AB|H95.132|ICD10CM|Mucosal cyst of postmastoidectomy cavity, left ear|Mucosal cyst of postmastoidectomy cavity, left ear +C2882029|T047|PT|H95.132|ICD10CM|Mucosal cyst of postmastoidectomy cavity, left ear|Mucosal cyst of postmastoidectomy cavity, left ear +C2882030|T047|AB|H95.133|ICD10CM|Mucosal cyst of postmastoidectomy cavity, bilateral ears|Mucosal cyst of postmastoidectomy cavity, bilateral ears +C2882030|T047|PT|H95.133|ICD10CM|Mucosal cyst of postmastoidectomy cavity, bilateral ears|Mucosal cyst of postmastoidectomy cavity, bilateral ears +C0155453|T047|AB|H95.139|ICD10CM|Mucosal cyst of postmastoidectomy cavity, unspecified ear|Mucosal cyst of postmastoidectomy cavity, unspecified ear +C0155453|T047|PT|H95.139|ICD10CM|Mucosal cyst of postmastoidectomy cavity, unspecified ear|Mucosal cyst of postmastoidectomy cavity, unspecified ear +C0477462|T046|HT|H95.19|ICD10CM|Other disorders following mastoidectomy|Other disorders following mastoidectomy +C0477462|T046|AB|H95.19|ICD10CM|Other disorders following mastoidectomy|Other disorders following mastoidectomy +C2882031|T046|AB|H95.191|ICD10CM|Other disorders following mastoidectomy, right ear|Other disorders following mastoidectomy, right ear +C2882031|T046|PT|H95.191|ICD10CM|Other disorders following mastoidectomy, right ear|Other disorders following mastoidectomy, right ear +C2882032|T046|AB|H95.192|ICD10CM|Other disorders following mastoidectomy, left ear|Other disorders following mastoidectomy, left ear +C2882032|T046|PT|H95.192|ICD10CM|Other disorders following mastoidectomy, left ear|Other disorders following mastoidectomy, left ear +C2882033|T046|AB|H95.193|ICD10CM|Other disorders following mastoidectomy, bilateral ears|Other disorders following mastoidectomy, bilateral ears +C2882033|T046|PT|H95.193|ICD10CM|Other disorders following mastoidectomy, bilateral ears|Other disorders following mastoidectomy, bilateral ears +C0477462|T046|AB|H95.199|ICD10CM|Other disorders following mastoidectomy, unspecified ear|Other disorders following mastoidectomy, unspecified ear +C0477462|T046|PT|H95.199|ICD10CM|Other disorders following mastoidectomy, unspecified ear|Other disorders following mastoidectomy, unspecified ear +C2882034|T046|AB|H95.2|ICD10CM|Intraop hemor/hemtom of ear/mastd complicating a procedure|Intraop hemor/hemtom of ear/mastd complicating a procedure +C2882034|T046|HT|H95.2|ICD10CM|Intraoperative hemorrhage and hematoma of ear and mastoid process complicating a procedure|Intraoperative hemorrhage and hematoma of ear and mastoid process complicating a procedure +C2882035|T046|AB|H95.21|ICD10CM|Intraop hemor/hemtom of ear/mastd comp a proc on ear/mastd|Intraop hemor/hemtom of ear/mastd comp a proc on ear/mastd +C2882036|T046|AB|H95.22|ICD10CM|Intraop hemor/hemtom of ear/mastd complicating oth procedure|Intraop hemor/hemtom of ear/mastd complicating oth procedure +C2882036|T046|PT|H95.22|ICD10CM|Intraoperative hemorrhage and hematoma of ear and mastoid process complicating other procedure|Intraoperative hemorrhage and hematoma of ear and mastoid process complicating other procedure +C2882037|T037|AB|H95.3|ICD10CM|Accidental pnctr & lac of ear/mastd during a procedure|Accidental pnctr & lac of ear/mastd during a procedure +C2882037|T037|HT|H95.3|ICD10CM|Accidental puncture and laceration of ear and mastoid process during a procedure|Accidental puncture and laceration of ear and mastoid process during a procedure +C2882038|T037|AB|H95.31|ICD10CM|Acc pnctr & lac of the ear/mastd dur proc on the ear/mastd|Acc pnctr & lac of the ear/mastd dur proc on the ear/mastd +C2882039|T037|AB|H95.32|ICD10CM|Accidental pnctr & lac of the ear/mastd during oth procedure|Accidental pnctr & lac of the ear/mastd during oth procedure +C2882039|T037|PT|H95.32|ICD10CM|Accidental puncture and laceration of the ear and mastoid process during other procedure|Accidental puncture and laceration of the ear and mastoid process during other procedure +C4268465|T046|HT|H95.4|ICD10CM|Postprocedural hemorrhage of ear and mastoid process following a procedure|Postprocedural hemorrhage of ear and mastoid process following a procedure +C4268465|T046|AB|H95.4|ICD10CM|Postprocedural hemorrhage of ear/mastd following a procedure|Postprocedural hemorrhage of ear/mastd following a procedure +C4268466|T046|AB|H95.41|ICD10CM|Postprocedural hemorrhage of ear/mastd fol proc on ear/mastd|Postprocedural hemorrhage of ear/mastd fol proc on ear/mastd +C4268467|T046|AB|H95.42|ICD10CM|Postproc hemorrhage of ear/mastd following other procedure|Postproc hemorrhage of ear/mastd following other procedure +C4268467|T046|PT|H95.42|ICD10CM|Postprocedural hemorrhage of ear and mastoid process following other procedure|Postprocedural hemorrhage of ear and mastoid process following other procedure +C4268468|T046|AB|H95.5|ICD10CM|Postproc hematoma and seroma of ear/mastd fol a procedure|Postproc hematoma and seroma of ear/mastd fol a procedure +C4268468|T046|HT|H95.5|ICD10CM|Postprocedural hematoma and seroma of ear and mastoid process following a procedure|Postprocedural hematoma and seroma of ear and mastoid process following a procedure +C4268469|T046|AB|H95.51|ICD10CM|Postprocedural hematoma of ear/mastd fol proc on ear/mastd|Postprocedural hematoma of ear/mastd fol proc on ear/mastd +C4268470|T046|AB|H95.52|ICD10CM|Postproc hematoma of ear/mastd following other procedure|Postproc hematoma of ear/mastd following other procedure +C4268470|T046|PT|H95.52|ICD10CM|Postprocedural hematoma of ear and mastoid process following other procedure|Postprocedural hematoma of ear and mastoid process following other procedure +C4268471|T046|AB|H95.53|ICD10CM|Postprocedural seroma of ear/mastd fol proc on ear/mastd|Postprocedural seroma of ear/mastd fol proc on ear/mastd +C4268472|T046|PT|H95.54|ICD10CM|Postprocedural seroma of ear and mastoid process following other procedure|Postprocedural seroma of ear and mastoid process following other procedure +C4268472|T046|AB|H95.54|ICD10CM|Postprocedural seroma of ear/mastd following other procedure|Postprocedural seroma of ear/mastd following other procedure +C2882043|T046|AB|H95.8|ICD10CM|Oth intraop and postproc comp and disord of ear/mastd, NEC|Oth intraop and postproc comp and disord of ear/mastd, NEC +C0477463|T020|PT|H95.8|ICD10|Other postprocedural disorders of ear and mastoid process|Other postprocedural disorders of ear and mastoid process +C2882044|T046|AB|H95.81|ICD10CM|Postprocedural stenosis of external ear canal|Postprocedural stenosis of external ear canal +C2882044|T046|HT|H95.81|ICD10CM|Postprocedural stenosis of external ear canal|Postprocedural stenosis of external ear canal +C2882045|T047|AB|H95.811|ICD10CM|Postprocedural stenosis of right external ear canal|Postprocedural stenosis of right external ear canal +C2882045|T047|PT|H95.811|ICD10CM|Postprocedural stenosis of right external ear canal|Postprocedural stenosis of right external ear canal +C2882046|T047|AB|H95.812|ICD10CM|Postprocedural stenosis of left external ear canal|Postprocedural stenosis of left external ear canal +C2882046|T047|PT|H95.812|ICD10CM|Postprocedural stenosis of left external ear canal|Postprocedural stenosis of left external ear canal +C2882047|T046|AB|H95.813|ICD10CM|Postprocedural stenosis of external ear canal, bilateral|Postprocedural stenosis of external ear canal, bilateral +C2882047|T046|PT|H95.813|ICD10CM|Postprocedural stenosis of external ear canal, bilateral|Postprocedural stenosis of external ear canal, bilateral +C2882048|T046|AB|H95.819|ICD10CM|Postprocedural stenosis of unspecified external ear canal|Postprocedural stenosis of unspecified external ear canal +C2882048|T046|PT|H95.819|ICD10CM|Postprocedural stenosis of unspecified external ear canal|Postprocedural stenosis of unspecified external ear canal +C2882049|T046|AB|H95.88|ICD10CM|Oth intraop comp and disorders of the ear/mastd, NEC|Oth intraop comp and disorders of the ear/mastd, NEC +C2882050|T046|AB|H95.89|ICD10CM|Oth postproc comp and disorders of the ear/mastd, NEC|Oth postproc comp and disorders of the ear/mastd, NEC +C0494568|T047|PT|H95.9|ICD10|Postprocedural disorder of ear and mastoid process, unspecified|Postprocedural disorder of ear and mastoid process, unspecified +C0865560|T047|ET|I00|ICD10CM|arthritis, rheumatic, acute or subacute|arthritis, rheumatic, acute or subacute +C0264743|T047|PT|I00|ICD10CM|Rheumatic fever without heart involvement|Rheumatic fever without heart involvement +C0264743|T047|AB|I00|ICD10CM|Rheumatic fever without heart involvement|Rheumatic fever without heart involvement +C0264743|T047|PT|I00|ICD10|Rheumatic fever without mention of heart involvement|Rheumatic fever without mention of heart involvement +C0035436|T047|HT|I00-I02|ICD10CM|Acute rheumatic fever (I00-I02)|Acute rheumatic fever (I00-I02) +C0035436|T047|HT|I00-I02.9|ICD10|Acute rheumatic fever|Acute rheumatic fever +C0728936|T047|HT|I00-I99|ICD10CM|Diseases of the circulatory system (I00-I99)|Diseases of the circulatory system (I00-I99) +C0728936|T047|HT|I00-I99.9|ICD10|Diseases of the circulatory system|Diseases of the circulatory system +C3536892|T047|HT|I01|ICD10|Rheumatic fever with heart involvement|Rheumatic fever with heart involvement +C3536892|T047|HT|I01|ICD10CM|Rheumatic fever with heart involvement|Rheumatic fever with heart involvement +C3536892|T047|AB|I01|ICD10CM|Rheumatic fever with heart involvement|Rheumatic fever with heart involvement +C0155555|T047|PT|I01.0|ICD10|Acute rheumatic pericarditis|Acute rheumatic pericarditis +C0155555|T047|PT|I01.0|ICD10CM|Acute rheumatic pericarditis|Acute rheumatic pericarditis +C0155555|T047|AB|I01.0|ICD10CM|Acute rheumatic pericarditis|Acute rheumatic pericarditis +C2882051|T047|ET|I01.0|ICD10CM|Any condition in I00 with pericarditis|Any condition in I00 with pericarditis +C0155555|T047|ET|I01.0|ICD10CM|Rheumatic pericarditis (acute)|Rheumatic pericarditis (acute) +C0155556|T047|PT|I01.1|ICD10CM|Acute rheumatic endocarditis|Acute rheumatic endocarditis +C0155556|T047|AB|I01.1|ICD10CM|Acute rheumatic endocarditis|Acute rheumatic endocarditis +C0155556|T047|PT|I01.1|ICD10|Acute rheumatic endocarditis|Acute rheumatic endocarditis +C0264758|T047|ET|I01.1|ICD10CM|Acute rheumatic valvulitis|Acute rheumatic valvulitis +C2882052|T047|ET|I01.1|ICD10CM|Any condition in I00 with endocarditis or valvulitis|Any condition in I00 with endocarditis or valvulitis +C0155557|T047|PT|I01.2|ICD10|Acute rheumatic myocarditis|Acute rheumatic myocarditis +C0155557|T047|PT|I01.2|ICD10CM|Acute rheumatic myocarditis|Acute rheumatic myocarditis +C0155557|T047|AB|I01.2|ICD10CM|Acute rheumatic myocarditis|Acute rheumatic myocarditis +C2882053|T047|ET|I01.2|ICD10CM|Any condition in I00 with myocarditis|Any condition in I00 with myocarditis +C0264749|T047|ET|I01.8|ICD10CM|Acute rheumatic pancarditis|Acute rheumatic pancarditis +C2882054|T047|ET|I01.8|ICD10CM|Any condition in I00 with other or multiple types of heart involvement|Any condition in I00 with other or multiple types of heart involvement +C0155558|T047|PT|I01.8|ICD10CM|Other acute rheumatic heart disease|Other acute rheumatic heart disease +C0155558|T047|AB|I01.8|ICD10CM|Other acute rheumatic heart disease|Other acute rheumatic heart disease +C0155558|T047|PT|I01.8|ICD10|Other acute rheumatic heart disease|Other acute rheumatic heart disease +C0035440|T047|PT|I01.9|ICD10|Acute rheumatic heart disease, unspecified|Acute rheumatic heart disease, unspecified +C0035440|T047|PT|I01.9|ICD10CM|Acute rheumatic heart disease, unspecified|Acute rheumatic heart disease, unspecified +C0035440|T047|AB|I01.9|ICD10CM|Acute rheumatic heart disease, unspecified|Acute rheumatic heart disease, unspecified +C2882055|T047|ET|I01.9|ICD10CM|Any condition in I00 with unspecified type of heart involvement|Any condition in I00 with unspecified type of heart involvement +C0035440|T047|ET|I01.9|ICD10CM|Rheumatic carditis, acute|Rheumatic carditis, acute +C0035440|T047|ET|I01.9|ICD10CM|Rheumatic heart disease, active or acute|Rheumatic heart disease, active or acute +C0152113|T047|HT|I02|ICD10CM|Rheumatic chorea|Rheumatic chorea +C0152113|T047|AB|I02|ICD10CM|Rheumatic chorea|Rheumatic chorea +C0152113|T047|HT|I02|ICD10|Rheumatic chorea|Rheumatic chorea +C0152113|T047|ET|I02|ICD10CM|Sydenham's chorea|Sydenham's chorea +C2882056|T047|ET|I02.0|ICD10CM|Chorea NOS with heart involvement|Chorea NOS with heart involvement +C0155559|T047|PT|I02.0|ICD10CM|Rheumatic chorea with heart involvement|Rheumatic chorea with heart involvement +C0155559|T047|AB|I02.0|ICD10CM|Rheumatic chorea with heart involvement|Rheumatic chorea with heart involvement +C0155559|T047|PT|I02.0|ICD10|Rheumatic chorea with heart involvement|Rheumatic chorea with heart involvement +C2882057|T047|ET|I02.0|ICD10CM|Rheumatic chorea with heart involvement of any type classifiable under I01.-|Rheumatic chorea with heart involvement of any type classifiable under I01.- +C0152113|T047|ET|I02.9|ICD10CM|Rheumatic chorea NOS|Rheumatic chorea NOS +C0489958|T047|PT|I02.9|ICD10|Rheumatic chorea without heart involvement|Rheumatic chorea without heart involvement +C0489958|T047|PT|I02.9|ICD10CM|Rheumatic chorea without heart involvement|Rheumatic chorea without heart involvement +C0489958|T047|AB|I02.9|ICD10CM|Rheumatic chorea without heart involvement|Rheumatic chorea without heart involvement +C4290129|T047|ET|I05|ICD10CM|conditions classifiable to both I05.0 and I05.2-I05.9, whether specified as rheumatic or not|conditions classifiable to both I05.0 and I05.2-I05.9, whether specified as rheumatic or not +C0264765|T047|HT|I05|ICD10|Rheumatic mitral valve diseases|Rheumatic mitral valve diseases +C0264765|T047|AB|I05|ICD10CM|Rheumatic mitral valve diseases|Rheumatic mitral valve diseases +C0264765|T047|HT|I05|ICD10CM|Rheumatic mitral valve diseases|Rheumatic mitral valve diseases +C0175708|T047|HT|I05-I09|ICD10CM|Chronic rheumatic heart diseases (I05-I09)|Chronic rheumatic heart diseases (I05-I09) +C0175708|T047|HT|I05-I09.9|ICD10|Chronic rheumatic heart diseases|Chronic rheumatic heart diseases +C0264766|T047|ET|I05.0|ICD10CM|Mitral (valve) obstruction (rheumatic)|Mitral (valve) obstruction (rheumatic) +C0264766|T047|PT|I05.0|ICD10|Mitral stenosis|Mitral stenosis +C0264766|T047|PT|I05.0|ICD10CM|Rheumatic mitral stenosis|Rheumatic mitral stenosis +C0264766|T047|AB|I05.0|ICD10CM|Rheumatic mitral stenosis|Rheumatic mitral stenosis +C0155563|T047|ET|I05.1|ICD10CM|Rheumatic mitral incompetence|Rheumatic mitral incompetence +C0155563|T047|PT|I05.1|ICD10CM|Rheumatic mitral insufficiency|Rheumatic mitral insufficiency +C0155563|T047|AB|I05.1|ICD10CM|Rheumatic mitral insufficiency|Rheumatic mitral insufficiency +C0155563|T047|PT|I05.1|ICD10|Rheumatic mitral insufficiency|Rheumatic mitral insufficiency +C0155563|T047|ET|I05.1|ICD10CM|Rheumatic mitral regurgitation|Rheumatic mitral regurgitation +C0264767|T047|PT|I05.2|ICD10|Mitral stenosis with insufficiency|Mitral stenosis with insufficiency +C2882059|T047|ET|I05.2|ICD10CM|Rheumatic mitral stenosis with incompetence or regurgitation|Rheumatic mitral stenosis with incompetence or regurgitation +C0264767|T047|PT|I05.2|ICD10CM|Rheumatic mitral stenosis with insufficiency|Rheumatic mitral stenosis with insufficiency +C0264767|T047|AB|I05.2|ICD10CM|Rheumatic mitral stenosis with insufficiency|Rheumatic mitral stenosis with insufficiency +C0348579|T047|PT|I05.8|ICD10|Other mitral valve diseases|Other mitral valve diseases +C2882060|T047|AB|I05.8|ICD10CM|Other rheumatic mitral valve diseases|Other rheumatic mitral valve diseases +C2882060|T047|PT|I05.8|ICD10CM|Other rheumatic mitral valve diseases|Other rheumatic mitral valve diseases +C0264768|T047|ET|I05.8|ICD10CM|Rheumatic mitral (valve) failure|Rheumatic mitral (valve) failure +C0264765|T047|PT|I05.9|ICD10|Mitral valve disease, unspecified|Mitral valve disease, unspecified +C0264765|T047|ET|I05.9|ICD10CM|Rheumatic mitral (valve) disorder (chronic) NOS|Rheumatic mitral (valve) disorder (chronic) NOS +C2882061|T047|AB|I05.9|ICD10CM|Rheumatic mitral valve disease, unspecified|Rheumatic mitral valve disease, unspecified +C2882061|T047|PT|I05.9|ICD10CM|Rheumatic mitral valve disease, unspecified|Rheumatic mitral valve disease, unspecified +C0264769|T047|AB|I06|ICD10CM|Rheumatic aortic valve diseases|Rheumatic aortic valve diseases +C0264769|T047|HT|I06|ICD10CM|Rheumatic aortic valve diseases|Rheumatic aortic valve diseases +C0264769|T047|HT|I06|ICD10|Rheumatic aortic valve diseases|Rheumatic aortic valve diseases +C0155567|T047|ET|I06.0|ICD10CM|Rheumatic aortic (valve) obstruction|Rheumatic aortic (valve) obstruction +C0155567|T047|PT|I06.0|ICD10CM|Rheumatic aortic stenosis|Rheumatic aortic stenosis +C0155567|T047|AB|I06.0|ICD10CM|Rheumatic aortic stenosis|Rheumatic aortic stenosis +C0155567|T047|PT|I06.0|ICD10|Rheumatic aortic stenosis|Rheumatic aortic stenosis +C0155568|T047|ET|I06.1|ICD10CM|Rheumatic aortic incompetence|Rheumatic aortic incompetence +C0155568|T047|PT|I06.1|ICD10CM|Rheumatic aortic insufficiency|Rheumatic aortic insufficiency +C0155568|T047|AB|I06.1|ICD10CM|Rheumatic aortic insufficiency|Rheumatic aortic insufficiency +C0155568|T047|PT|I06.1|ICD10|Rheumatic aortic insufficiency|Rheumatic aortic insufficiency +C0155568|T047|ET|I06.1|ICD10CM|Rheumatic aortic regurgitation|Rheumatic aortic regurgitation +C0865578|T047|ET|I06.2|ICD10CM|Rheumatic aortic stenosis with incompetence or regurgitation|Rheumatic aortic stenosis with incompetence or regurgitation +C0155569|T047|PT|I06.2|ICD10CM|Rheumatic aortic stenosis with insufficiency|Rheumatic aortic stenosis with insufficiency +C0155569|T047|AB|I06.2|ICD10CM|Rheumatic aortic stenosis with insufficiency|Rheumatic aortic stenosis with insufficiency +C0155569|T047|PT|I06.2|ICD10|Rheumatic aortic stenosis with insufficiency|Rheumatic aortic stenosis with insufficiency +C0348580|T047|PT|I06.8|ICD10|Other rheumatic aortic valve diseases|Other rheumatic aortic valve diseases +C0348580|T047|PT|I06.8|ICD10CM|Other rheumatic aortic valve diseases|Other rheumatic aortic valve diseases +C0348580|T047|AB|I06.8|ICD10CM|Other rheumatic aortic valve diseases|Other rheumatic aortic valve diseases +C0264769|T047|ET|I06.9|ICD10CM|Rheumatic aortic (valve) disease NOS|Rheumatic aortic (valve) disease NOS +C0264769|T047|PT|I06.9|ICD10CM|Rheumatic aortic valve disease, unspecified|Rheumatic aortic valve disease, unspecified +C0264769|T047|AB|I06.9|ICD10CM|Rheumatic aortic valve disease, unspecified|Rheumatic aortic valve disease, unspecified +C0264769|T047|PT|I06.9|ICD10|Rheumatic aortic valve disease, unspecified|Rheumatic aortic valve disease, unspecified +C0264776|T047|HT|I07|ICD10|Rheumatic tricuspid valve diseases|Rheumatic tricuspid valve diseases +C0264776|T047|AB|I07|ICD10CM|Rheumatic tricuspid valve diseases|Rheumatic tricuspid valve diseases +C0264776|T047|HT|I07|ICD10CM|Rheumatic tricuspid valve diseases|Rheumatic tricuspid valve diseases +C4290130|T047|ET|I07|ICD10CM|rheumatic tricuspid valve diseases specified as rheumatic or unspecified|rheumatic tricuspid valve diseases specified as rheumatic or unspecified +C0264777|T047|AB|I07.0|ICD10CM|Rheumatic tricuspid stenosis|Rheumatic tricuspid stenosis +C0264777|T047|PT|I07.0|ICD10CM|Rheumatic tricuspid stenosis|Rheumatic tricuspid stenosis +C0264777|T047|ET|I07.0|ICD10CM|Tricuspid (valve) stenosis (rheumatic)|Tricuspid (valve) stenosis (rheumatic) +C0040963|T047|PT|I07.0|ICD10|Tricuspid stenosis|Tricuspid stenosis +C0264778|T047|PT|I07.1|ICD10CM|Rheumatic tricuspid insufficiency|Rheumatic tricuspid insufficiency +C0264778|T047|AB|I07.1|ICD10CM|Rheumatic tricuspid insufficiency|Rheumatic tricuspid insufficiency +C0264778|T047|ET|I07.1|ICD10CM|Tricuspid (valve) insufficiency (rheumatic)|Tricuspid (valve) insufficiency (rheumatic) +C0264778|T047|PT|I07.1|ICD10|Tricuspid insufficiency|Tricuspid insufficiency +C0264779|T047|PT|I07.2|ICD10CM|Rheumatic tricuspid stenosis and insufficiency|Rheumatic tricuspid stenosis and insufficiency +C0264779|T047|AB|I07.2|ICD10CM|Rheumatic tricuspid stenosis and insufficiency|Rheumatic tricuspid stenosis and insufficiency +C0264779|T047|PT|I07.2|ICD10|Tricuspid stenosis with insufficiency|Tricuspid stenosis with insufficiency +C2882063|T047|AB|I07.8|ICD10CM|Other rheumatic tricuspid valve diseases|Other rheumatic tricuspid valve diseases +C2882063|T047|PT|I07.8|ICD10CM|Other rheumatic tricuspid valve diseases|Other rheumatic tricuspid valve diseases +C0348581|T047|PT|I07.8|ICD10|Other tricuspid valve diseases|Other tricuspid valve diseases +C2882064|T047|AB|I07.9|ICD10CM|Rheumatic tricuspid valve disease, unspecified|Rheumatic tricuspid valve disease, unspecified +C2882064|T047|PT|I07.9|ICD10CM|Rheumatic tricuspid valve disease, unspecified|Rheumatic tricuspid valve disease, unspecified +C0264776|T047|ET|I07.9|ICD10CM|Rheumatic tricuspid valve disorder NOS|Rheumatic tricuspid valve disorder NOS +C0264776|T047|PT|I07.9|ICD10|Tricuspid valve disease, unspecified|Tricuspid valve disease, unspecified +C0348584|T047|HT|I08|ICD10|Multiple valve diseases|Multiple valve diseases +C0348584|T047|AB|I08|ICD10CM|Multiple valve diseases|Multiple valve diseases +C0348584|T047|HT|I08|ICD10CM|Multiple valve diseases|Multiple valve diseases +C4290131|T047|ET|I08|ICD10CM|multiple valve diseases specified as rheumatic or unspecified|multiple valve diseases specified as rheumatic or unspecified +C0375259|T047|PT|I08.0|ICD10|Disorders of both mitral and aortic valves|Disorders of both mitral and aortic valves +C2882066|T047|ET|I08.0|ICD10CM|Involvement of both mitral and aortic valves specified as rheumatic or unspecified|Involvement of both mitral and aortic valves specified as rheumatic or unspecified +C2882067|T047|AB|I08.0|ICD10CM|Rheumatic disorders of both mitral and aortic valves|Rheumatic disorders of both mitral and aortic valves +C2882067|T047|PT|I08.0|ICD10CM|Rheumatic disorders of both mitral and aortic valves|Rheumatic disorders of both mitral and aortic valves +C0348872|T047|PT|I08.1|ICD10|Disorders of both mitral and tricuspid valves|Disorders of both mitral and tricuspid valves +C2882068|T047|AB|I08.1|ICD10CM|Rheumatic disorders of both mitral and tricuspid valves|Rheumatic disorders of both mitral and tricuspid valves +C2882068|T047|PT|I08.1|ICD10CM|Rheumatic disorders of both mitral and tricuspid valves|Rheumatic disorders of both mitral and tricuspid valves +C0348871|T047|PT|I08.2|ICD10|Disorders of both aortic and tricuspid valves|Disorders of both aortic and tricuspid valves +C2882069|T047|AB|I08.2|ICD10CM|Rheumatic disorders of both aortic and tricuspid valves|Rheumatic disorders of both aortic and tricuspid valves +C2882069|T047|PT|I08.2|ICD10CM|Rheumatic disorders of both aortic and tricuspid valves|Rheumatic disorders of both aortic and tricuspid valves +C2882070|T047|AB|I08.3|ICD10CM|Comb rheumatic disord of mitral, aortic and tricuspid valves|Comb rheumatic disord of mitral, aortic and tricuspid valves +C0348873|T047|PT|I08.3|ICD10|Combined disorders of mitral, aortic and tricuspid valves|Combined disorders of mitral, aortic and tricuspid valves +C2882070|T047|PT|I08.3|ICD10CM|Combined rheumatic disorders of mitral, aortic and tricuspid valves|Combined rheumatic disorders of mitral, aortic and tricuspid valves +C0348582|T047|PT|I08.8|ICD10|Other multiple valve diseases|Other multiple valve diseases +C2882071|T047|AB|I08.8|ICD10CM|Other rheumatic multiple valve diseases|Other rheumatic multiple valve diseases +C2882071|T047|PT|I08.8|ICD10CM|Other rheumatic multiple valve diseases|Other rheumatic multiple valve diseases +C0348584|T047|PT|I08.9|ICD10|Multiple valve disease, unspecified|Multiple valve disease, unspecified +C2882072|T047|AB|I08.9|ICD10CM|Rheumatic multiple valve disease, unspecified|Rheumatic multiple valve disease, unspecified +C2882072|T047|PT|I08.9|ICD10CM|Rheumatic multiple valve disease, unspecified|Rheumatic multiple valve disease, unspecified +C0029730|T047|HT|I09|ICD10|Other rheumatic heart diseases|Other rheumatic heart diseases +C0029730|T047|HT|I09|ICD10CM|Other rheumatic heart diseases|Other rheumatic heart diseases +C0029730|T047|AB|I09|ICD10CM|Other rheumatic heart diseases|Other rheumatic heart diseases +C0489959|T020|PT|I09.0|ICD10|Rheumatic myocarditis|Rheumatic myocarditis +C0489959|T020|PT|I09.0|ICD10CM|Rheumatic myocarditis|Rheumatic myocarditis +C0489959|T020|AB|I09.0|ICD10CM|Rheumatic myocarditis|Rheumatic myocarditis +C0264764|T047|PT|I09.1|ICD10|Rheumatic diseases of endocardium, valve unspecified|Rheumatic diseases of endocardium, valve unspecified +C0264764|T047|PT|I09.1|ICD10CM|Rheumatic diseases of endocardium, valve unspecified|Rheumatic diseases of endocardium, valve unspecified +C0264764|T047|AB|I09.1|ICD10CM|Rheumatic diseases of endocardium, valve unspecified|Rheumatic diseases of endocardium, valve unspecified +C0264753|T047|ET|I09.1|ICD10CM|Rheumatic endocarditis (chronic)|Rheumatic endocarditis (chronic) +C0264763|T047|ET|I09.1|ICD10CM|Rheumatic valvulitis (chronic)|Rheumatic valvulitis (chronic) +C0340527|T047|ET|I09.2|ICD10CM|Adherent pericardium, rheumatic|Adherent pericardium, rheumatic +C0264755|T047|ET|I09.2|ICD10CM|Chronic rheumatic mediastinopericarditis|Chronic rheumatic mediastinopericarditis +C0264756|T047|ET|I09.2|ICD10CM|Chronic rheumatic myopericarditis|Chronic rheumatic myopericarditis +C0155561|T047|PT|I09.2|ICD10|Chronic rheumatic pericarditis|Chronic rheumatic pericarditis +C0155561|T047|PT|I09.2|ICD10CM|Chronic rheumatic pericarditis|Chronic rheumatic pericarditis +C0155561|T047|AB|I09.2|ICD10CM|Chronic rheumatic pericarditis|Chronic rheumatic pericarditis +C0348583|T047|HT|I09.8|ICD10CM|Other specified rheumatic heart diseases|Other specified rheumatic heart diseases +C0348583|T047|AB|I09.8|ICD10CM|Other specified rheumatic heart diseases|Other specified rheumatic heart diseases +C0348583|T047|PT|I09.8|ICD10|Other specified rheumatic heart diseases|Other specified rheumatic heart diseases +C0155582|T047|AB|I09.81|ICD10CM|Rheumatic heart failure|Rheumatic heart failure +C0155582|T047|PT|I09.81|ICD10CM|Rheumatic heart failure|Rheumatic heart failure +C0348583|T047|PT|I09.89|ICD10CM|Other specified rheumatic heart diseases|Other specified rheumatic heart diseases +C0348583|T047|AB|I09.89|ICD10CM|Other specified rheumatic heart diseases|Other specified rheumatic heart diseases +C0155579|T047|ET|I09.89|ICD10CM|Rheumatic disease of pulmonary valve|Rheumatic disease of pulmonary valve +C0035439|T047|ET|I09.9|ICD10CM|Rheumatic carditis|Rheumatic carditis +C0035439|T047|PT|I09.9|ICD10CM|Rheumatic heart disease, unspecified|Rheumatic heart disease, unspecified +C0035439|T047|AB|I09.9|ICD10CM|Rheumatic heart disease, unspecified|Rheumatic heart disease, unspecified +C0035439|T047|PT|I09.9|ICD10|Rheumatic heart disease, unspecified|Rheumatic heart disease, unspecified +C0085580|T047|PT|I10|ICD10|Essential (primary) hypertension|Essential (primary) hypertension +C0085580|T047|PT|I10|ICD10CM|Essential (primary) hypertension|Essential (primary) hypertension +C0085580|T047|AB|I10|ICD10CM|Essential (primary) hypertension|Essential (primary) hypertension +C0020538|T047|ET|I10|ICD10CM|high blood pressure|high blood pressure +C4290132|T047|ET|I10|ICD10CM|hypertension (arterial) (benign) (essential) (malignant) (primary) (systemic)|hypertension (arterial) (benign) (essential) (malignant) (primary) (systemic) +C0020538|T047|HT|I10-I15.9|ICD10|Hypertensive diseases|Hypertensive diseases +C4268473|T047|HT|I10-I16|ICD10CM|Hypertensive diseases (I10-I16)|Hypertensive diseases (I10-I16) +C4509195|T047|ET|I11|ICD10CM|any condition in I50.-, I51.4-I51.9 due to hypertension|any condition in I50.-, I51.4-I51.9 due to hypertension +C0152105|T047|HT|I11|ICD10|Hypertensive heart disease|Hypertensive heart disease +C0152105|T047|HT|I11|ICD10CM|Hypertensive heart disease|Hypertensive heart disease +C0152105|T047|AB|I11|ICD10CM|Hypertensive heart disease|Hypertensive heart disease +C0264650|T047|PT|I11.0|ICD10|Hypertensive heart disease with (congestive) heart failure|Hypertensive heart disease with (congestive) heart failure +C1400066|T047|PT|I11.0|ICD10CM|Hypertensive heart disease with heart failure|Hypertensive heart disease with heart failure +C1400066|T047|AB|I11.0|ICD10CM|Hypertensive heart disease with heart failure|Hypertensive heart disease with heart failure +C0264652|T047|ET|I11.0|ICD10CM|Hypertensive heart failure|Hypertensive heart failure +C0152105|T047|ET|I11.9|ICD10CM|Hypertensive heart disease NOS|Hypertensive heart disease NOS +C0155591|T047|PT|I11.9|ICD10|Hypertensive heart disease without (congestive) heart failure|Hypertensive heart disease without (congestive) heart failure +C2882075|T047|PT|I11.9|ICD10CM|Hypertensive heart disease without heart failure|Hypertensive heart disease without heart failure +C2882075|T047|AB|I11.9|ICD10CM|Hypertensive heart disease without heart failure|Hypertensive heart disease without heart failure +C4290134|T047|ET|I12|ICD10CM|any condition in N18 and N26 - due to hypertension|any condition in N18 and N26 - due to hypertension +C0027719|T047|ET|I12|ICD10CM|arteriosclerosis of kidney|arteriosclerosis of kidney +C4290135|T047|ET|I12|ICD10CM|arteriosclerotic nephritis (chronic) (interstitial)|arteriosclerotic nephritis (chronic) (interstitial) +C3695318|T047|AB|I12|ICD10CM|Hypertensive chronic kidney disease|Hypertensive chronic kidney disease +C3695318|T047|HT|I12|ICD10CM|Hypertensive chronic kidney disease|Hypertensive chronic kidney disease +C0848548|T047|ET|I12|ICD10CM|hypertensive nephropathy|hypertensive nephropathy +C0848548|T047|HT|I12|ICD10|Hypertensive renal disease|Hypertensive renal disease +C0027719|T047|ET|I12|ICD10CM|nephrosclerosis|nephrosclerosis +C2882078|T047|AB|I12.0|ICD10CM|Hyp chr kidney disease w stage 5 chr kidney disease or ESRD|Hyp chr kidney disease w stage 5 chr kidney disease or ESRD +C2882078|T047|PT|I12.0|ICD10CM|Hypertensive chronic kidney disease with stage 5 chronic kidney disease or end stage renal disease|Hypertensive chronic kidney disease with stage 5 chronic kidney disease or end stage renal disease +C0348860|T047|PT|I12.0|ICD10|Hypertensive renal disease with renal failure|Hypertensive renal disease with renal failure +C3695318|T047|ET|I12.9|ICD10CM|Hypertensive chronic kidney disease NOS|Hypertensive chronic kidney disease NOS +C2882079|T047|AB|I12.9|ICD10CM|Hypertensive chronic kidney disease w stg 1-4/unsp chr kdny|Hypertensive chronic kidney disease w stg 1-4/unsp chr kdny +C0848548|T047|ET|I12.9|ICD10CM|Hypertensive renal disease NOS|Hypertensive renal disease NOS +C0494574|T047|PT|I12.9|ICD10|Hypertensive renal disease without renal failure|Hypertensive renal disease without renal failure +C4290136|T047|ET|I13|ICD10CM|any condition in I11.- with any condition in I12.-|any condition in I11.- with any condition in I12.- +C0155601|T047|ET|I13|ICD10CM|cardiorenal disease|cardiorenal disease +C0264656|T047|ET|I13|ICD10CM|cardiovascular renal disease|cardiovascular renal disease +C1719469|T047|HT|I13|ICD10CM|Hypertensive heart and chronic kidney disease|Hypertensive heart and chronic kidney disease +C1719469|T047|AB|I13|ICD10CM|Hypertensive heart and chronic kidney disease|Hypertensive heart and chronic kidney disease +C0155601|T047|HT|I13|ICD10|Hypertensive heart and renal disease|Hypertensive heart and renal disease +C2882081|T047|AB|I13.0|ICD10CM|Hyp hrt & chr kdny dis w hrt fail and stg 1-4/unsp chr kdny|Hyp hrt & chr kdny dis w hrt fail and stg 1-4/unsp chr kdny +C0494575|T047|PT|I13.0|ICD10|Hypertensive heart and renal disease with (congestive) heart failure|Hypertensive heart and renal disease with (congestive) heart failure +C2882082|T047|AB|I13.1|ICD10CM|Hypertensive heart and chronic kidney disease w/o hrt fail|Hypertensive heart and chronic kidney disease w/o hrt fail +C2882082|T047|HT|I13.1|ICD10CM|Hypertensive heart and chronic kidney disease without heart failure|Hypertensive heart and chronic kidney disease without heart failure +C0348879|T047|PT|I13.1|ICD10|Hypertensive heart and renal disease with renal failure|Hypertensive heart and renal disease with renal failure +C2882084|T047|AB|I13.10|ICD10CM|Hyp hrt & chr kdny dis w/o hrt fail, w stg 1-4/unsp chr kdny|Hyp hrt & chr kdny dis w/o hrt fail, w stg 1-4/unsp chr kdny +C2882083|T047|ET|I13.10|ICD10CM|Hypertensive heart disease and hypertensive chronic kidney disease NOS|Hypertensive heart disease and hypertensive chronic kidney disease NOS +C2882085|T047|AB|I13.11|ICD10CM|Hyp hrt and chr kdny dis w/o hrt fail, w stg 5 chr kdny/ESRD|Hyp hrt and chr kdny dis w/o hrt fail, w stg 5 chr kdny/ESRD +C2882086|T047|AB|I13.2|ICD10CM|Hyp hrt & chr kdny dis w hrt fail and w stg 5 chr kdny/ESRD|Hyp hrt & chr kdny dis w hrt fail and w stg 5 chr kdny/ESRD +C0494576|T047|PT|I13.2|ICD10|Hypertensive heart and renal disease with both (congestive) heart failure and renal failure|Hypertensive heart and renal disease with both (congestive) heart failure and renal failure +C0155601|T047|PT|I13.9|ICD10|Hypertensive heart and renal disease, unspecified|Hypertensive heart and renal disease, unspecified +C0155616|T047|HT|I15|ICD10|Secondary hypertension|Secondary hypertension +C0155616|T047|HT|I15|ICD10CM|Secondary hypertension|Secondary hypertension +C0155616|T047|AB|I15|ICD10CM|Secondary hypertension|Secondary hypertension +C0020545|T047|PT|I15.0|ICD10|Renovascular hypertension|Renovascular hypertension +C0020545|T047|PT|I15.0|ICD10CM|Renovascular hypertension|Renovascular hypertension +C0020545|T047|AB|I15.0|ICD10CM|Renovascular hypertension|Renovascular hypertension +C0348587|T047|PT|I15.1|ICD10|Hypertension secondary to other renal disorders|Hypertension secondary to other renal disorders +C0348587|T047|PT|I15.1|ICD10CM|Hypertension secondary to other renal disorders|Hypertension secondary to other renal disorders +C0348587|T047|AB|I15.1|ICD10CM|Hypertension secondary to other renal disorders|Hypertension secondary to other renal disorders +C0349368|T047|PT|I15.2|ICD10CM|Hypertension secondary to endocrine disorders|Hypertension secondary to endocrine disorders +C0349368|T047|AB|I15.2|ICD10CM|Hypertension secondary to endocrine disorders|Hypertension secondary to endocrine disorders +C0349368|T047|PT|I15.2|ICD10|Hypertension secondary to endocrine disorders|Hypertension secondary to endocrine disorders +C0348586|T047|PT|I15.8|ICD10CM|Other secondary hypertension|Other secondary hypertension +C0348586|T047|AB|I15.8|ICD10CM|Other secondary hypertension|Other secondary hypertension +C0348586|T047|PT|I15.8|ICD10|Other secondary hypertension|Other secondary hypertension +C0155616|T047|PT|I15.9|ICD10|Secondary hypertension, unspecified|Secondary hypertension, unspecified +C0155616|T047|PT|I15.9|ICD10CM|Secondary hypertension, unspecified|Secondary hypertension, unspecified +C0155616|T047|AB|I15.9|ICD10CM|Secondary hypertension, unspecified|Secondary hypertension, unspecified +C0020546|T046|HT|I16|ICD10CM|Hypertensive crisis|Hypertensive crisis +C0020546|T046|AB|I16|ICD10CM|Hypertensive crisis|Hypertensive crisis +C0745138|T047|PT|I16.0|ICD10CM|Hypertensive urgency|Hypertensive urgency +C0745138|T047|AB|I16.0|ICD10CM|Hypertensive urgency|Hypertensive urgency +C0745136|T047|PT|I16.1|ICD10CM|Hypertensive emergency|Hypertensive emergency +C0745136|T047|AB|I16.1|ICD10CM|Hypertensive emergency|Hypertensive emergency +C4268474|T046|AB|I16.9|ICD10CM|Hypertensive crisis, unspecified|Hypertensive crisis, unspecified +C4268474|T046|PT|I16.9|ICD10CM|Hypertensive crisis, unspecified|Hypertensive crisis, unspecified +C0002962|T184|HT|I20|ICD10CM|Angina pectoris|Angina pectoris +C0002962|T184|AB|I20|ICD10CM|Angina pectoris|Angina pectoris +C0002962|T184|HT|I20|ICD10|Angina pectoris|Angina pectoris +C0151744|T047|HT|I20-I25|ICD10CM|Ischemic heart diseases (I20-I25)|Ischemic heart diseases (I20-I25) +C0151744|T047|HT|I20-I25.9|ICD10|Ischaemic heart diseases|Ischaemic heart diseases +C0151744|T047|HT|I20-I25.9|ICD10AE|Ischemic heart diseases|Ischemic heart diseases +C2882087|T047|ET|I20.0|ICD10CM|Accelerated angina|Accelerated angina +C0002965|T047|ET|I20.0|ICD10CM|Crescendo angina|Crescendo angina +C1394765|T184|ET|I20.0|ICD10CM|De novo effort angina|De novo effort angina +C0002965|T047|ET|I20.0|ICD10CM|Intermediate coronary syndrome|Intermediate coronary syndrome +C0086666|T047|ET|I20.0|ICD10CM|Preinfarction syndrome|Preinfarction syndrome +C0002965|T047|PT|I20.0|ICD10CM|Unstable angina|Unstable angina +C0002965|T047|AB|I20.0|ICD10CM|Unstable angina|Unstable angina +C0002965|T047|PT|I20.0|ICD10|Unstable angina|Unstable angina +C2882088|T047|ET|I20.0|ICD10CM|Worsening effort angina|Worsening effort angina +C0235470|T033|PT|I20.1|ICD10|Angina pectoris with documented spasm|Angina pectoris with documented spasm +C0235470|T033|PT|I20.1|ICD10CM|Angina pectoris with documented spasm|Angina pectoris with documented spasm +C0235470|T033|AB|I20.1|ICD10CM|Angina pectoris with documented spasm|Angina pectoris with documented spasm +C1387794|T047|ET|I20.1|ICD10CM|Angiospastic angina|Angiospastic angina +C0002963|T047|ET|I20.1|ICD10CM|Prinzmetal angina|Prinzmetal angina +C0235470|T033|ET|I20.1|ICD10CM|Spasm-induced angina|Spasm-induced angina +C0002963|T047|ET|I20.1|ICD10CM|Variant angina|Variant angina +C0741034|T184|ET|I20.8|ICD10CM|Angina equivalent|Angina equivalent +C0002962|T184|ET|I20.8|ICD10CM|Angina of effort|Angina of effort +C2976973|T047|ET|I20.8|ICD10CM|Coronary slow flow syndrome|Coronary slow flow syndrome +C0348588|T184|PT|I20.8|ICD10|Other forms of angina pectoris|Other forms of angina pectoris +C0348588|T184|PT|I20.8|ICD10CM|Other forms of angina pectoris|Other forms of angina pectoris +C0348588|T184|AB|I20.8|ICD10CM|Other forms of angina pectoris|Other forms of angina pectoris +C0340288|T047|ET|I20.8|ICD10CM|Stable angina|Stable angina +C0002962|T184|ET|I20.8|ICD10CM|Stenocardia|Stenocardia +C0002962|T184|ET|I20.9|ICD10CM|Angina NOS|Angina NOS +C0002962|T184|PT|I20.9|ICD10CM|Angina pectoris, unspecified|Angina pectoris, unspecified +C0002962|T184|AB|I20.9|ICD10CM|Angina pectoris, unspecified|Angina pectoris, unspecified +C0002962|T184|PT|I20.9|ICD10|Angina pectoris, unspecified|Angina pectoris, unspecified +C0002962|T184|ET|I20.9|ICD10CM|Anginal syndrome|Anginal syndrome +C0002962|T184|ET|I20.9|ICD10CM|Cardiac angina|Cardiac angina +C0002962|T184|ET|I20.9|ICD10CM|Ischemic chest pain|Ischemic chest pain +C0155626|T047|HT|I21|ICD10CM|Acute myocardial infarction|Acute myocardial infarction +C0155626|T047|AB|I21|ICD10CM|Acute myocardial infarction|Acute myocardial infarction +C0155626|T047|HT|I21|ICD10|Acute myocardial infarction|Acute myocardial infarction +C0027051|T047|ET|I21|ICD10CM|cardiac infarction|cardiac infarction +C0264686|T047|ET|I21|ICD10CM|coronary (artery) embolism|coronary (artery) embolism +C0151814|T047|ET|I21|ICD10CM|coronary (artery) occlusion|coronary (artery) occlusion +C0264688|T047|ET|I21|ICD10CM|coronary (artery) rupture|coronary (artery) rupture +C0010072|T047|ET|I21|ICD10CM|coronary (artery) thrombosis|coronary (artery) thrombosis +C4290137|T047|ET|I21|ICD10CM|infarction of heart, myocardium, or ventricle|infarction of heart, myocardium, or ventricle +C0494577|T047|PT|I21.0|ICD10|Acute transmural myocardial infarction of anterior wall|Acute transmural myocardial infarction of anterior wall +C2882090|T047|AB|I21.0|ICD10CM|ST elevation (STEMI) myocardial infarction of anterior wall|ST elevation (STEMI) myocardial infarction of anterior wall +C2882090|T047|HT|I21.0|ICD10CM|ST elevation (STEMI) myocardial infarction of anterior wall|ST elevation (STEMI) myocardial infarction of anterior wall +C4509196|T047|ET|I21.0|ICD10CM|Type 1 ST elevation myocardial infarction of anterior wall|Type 1 ST elevation myocardial infarction of anterior wall +C2882091|T047|PT|I21.01|ICD10CM|ST elevation (STEMI) myocardial infarction involving left main coronary artery|ST elevation (STEMI) myocardial infarction involving left main coronary artery +C2882091|T047|AB|I21.01|ICD10CM|STEMI involving left main coronary artery|STEMI involving left main coronary artery +C2882092|T047|ET|I21.02|ICD10CM|ST elevation (STEMI) myocardial infarction involving diagonal coronary artery|ST elevation (STEMI) myocardial infarction involving diagonal coronary artery +C2882093|T047|PT|I21.02|ICD10CM|ST elevation (STEMI) myocardial infarction involving left anterior descending coronary artery|ST elevation (STEMI) myocardial infarction involving left anterior descending coronary artery +C2882093|T047|AB|I21.02|ICD10CM|STEMI involving left anterior descending coronary artery|STEMI involving left anterior descending coronary artery +C0494577|T047|ET|I21.09|ICD10CM|Acute transmural myocardial infarction of anterior wall|Acute transmural myocardial infarction of anterior wall +C2882094|T033|ET|I21.09|ICD10CM|Anteroapical transmural (Q wave) infarction (acute)|Anteroapical transmural (Q wave) infarction (acute) +C2882095|T033|ET|I21.09|ICD10CM|Anterolateral transmural (Q wave) infarction (acute)|Anterolateral transmural (Q wave) infarction (acute) +C2882096|T033|ET|I21.09|ICD10CM|Anteroseptal transmural (Q wave) infarction (acute)|Anteroseptal transmural (Q wave) infarction (acute) +C2882098|T047|PT|I21.09|ICD10CM|ST elevation (STEMI) myocardial infarction involving other coronary artery of anterior wall|ST elevation (STEMI) myocardial infarction involving other coronary artery of anterior wall +C2882098|T047|AB|I21.09|ICD10CM|STEMI involving oth coronary artery of anterior wall|STEMI involving oth coronary artery of anterior wall +C2882097|T047|ET|I21.09|ICD10CM|Transmural (Q wave) infarction (acute) (of) anterior (wall) NOS|Transmural (Q wave) infarction (acute) (of) anterior (wall) NOS +C0494578|T047|PT|I21.1|ICD10|Acute transmural myocardial infarction of inferior wall|Acute transmural myocardial infarction of inferior wall +C2882099|T047|AB|I21.1|ICD10CM|ST elevation (STEMI) myocardial infarction of inferior wall|ST elevation (STEMI) myocardial infarction of inferior wall +C2882099|T047|HT|I21.1|ICD10CM|ST elevation (STEMI) myocardial infarction of inferior wall|ST elevation (STEMI) myocardial infarction of inferior wall +C4509197|T047|ET|I21.1|ICD10CM|Type 1 ST elevation myocardial infarction of inferior wall|Type 1 ST elevation myocardial infarction of inferior wall +C2882100|T047|ET|I21.11|ICD10CM|Inferoposterior transmural (Q wave) infarction (acute)|Inferoposterior transmural (Q wave) infarction (acute) +C2882101|T047|PT|I21.11|ICD10CM|ST elevation (STEMI) myocardial infarction involving right coronary artery|ST elevation (STEMI) myocardial infarction involving right coronary artery +C2882101|T047|AB|I21.11|ICD10CM|STEMI involving right coronary artery|STEMI involving right coronary artery +C0494578|T047|ET|I21.19|ICD10CM|Acute transmural myocardial infarction of inferior wall|Acute transmural myocardial infarction of inferior wall +C2882102|T047|ET|I21.19|ICD10CM|Inferolateral transmural (Q wave) infarction (acute)|Inferolateral transmural (Q wave) infarction (acute) +C2882105|T047|PT|I21.19|ICD10CM|ST elevation (STEMI) myocardial infarction involving other coronary artery of inferior wall|ST elevation (STEMI) myocardial infarction involving other coronary artery of inferior wall +C2882105|T047|AB|I21.19|ICD10CM|STEMI involving oth coronary artery of inferior wall|STEMI involving oth coronary artery of inferior wall +C2882103|T047|ET|I21.19|ICD10CM|Transmural (Q wave) infarction (acute) (of) diaphragmatic wall|Transmural (Q wave) infarction (acute) (of) diaphragmatic wall +C2882104|T047|ET|I21.19|ICD10CM|Transmural (Q wave) infarction (acute) (of) inferior (wall) NOS|Transmural (Q wave) infarction (acute) (of) inferior (wall) NOS +C0494579|T047|PT|I21.2|ICD10|Acute transmural myocardial infarction of other sites|Acute transmural myocardial infarction of other sites +C2882106|T047|AB|I21.2|ICD10CM|ST elevation (STEMI) myocardial infarction of other sites|ST elevation (STEMI) myocardial infarction of other sites +C2882106|T047|HT|I21.2|ICD10CM|ST elevation (STEMI) myocardial infarction of other sites|ST elevation (STEMI) myocardial infarction of other sites +C4509198|T047|ET|I21.2|ICD10CM|Type 1 ST elevation myocardial infarction of other sites|Type 1 ST elevation myocardial infarction of other sites +C2882108|T047|PT|I21.21|ICD10CM|ST elevation (STEMI) myocardial infarction involving left circumflex coronary artery|ST elevation (STEMI) myocardial infarction involving left circumflex coronary artery +C2882107|T047|ET|I21.21|ICD10CM|ST elevation (STEMI) myocardial infarction involving oblique marginal coronary artery|ST elevation (STEMI) myocardial infarction involving oblique marginal coronary artery +C2882108|T047|AB|I21.21|ICD10CM|STEMI involving left circumflex coronary artery|STEMI involving left circumflex coronary artery +C0494579|T047|ET|I21.29|ICD10CM|Acute transmural myocardial infarction of other sites|Acute transmural myocardial infarction of other sites +C2882109|T033|ET|I21.29|ICD10CM|Apical-lateral transmural (Q wave) infarction (acute)|Apical-lateral transmural (Q wave) infarction (acute) +C2882110|T033|ET|I21.29|ICD10CM|Basal-lateral transmural (Q wave) infarction (acute)|Basal-lateral transmural (Q wave) infarction (acute) +C2882111|T033|ET|I21.29|ICD10CM|High lateral transmural (Q wave) infarction (acute)|High lateral transmural (Q wave) infarction (acute) +C2882112|T047|ET|I21.29|ICD10CM|Lateral (wall) NOS transmural (Q wave) infarction (acute)|Lateral (wall) NOS transmural (Q wave) infarction (acute) +C2882113|T047|ET|I21.29|ICD10CM|Posterior (true) transmural (Q wave) infarction (acute)|Posterior (true) transmural (Q wave) infarction (acute) +C2882114|T047|ET|I21.29|ICD10CM|Posterobasal transmural (Q wave) infarction (acute)|Posterobasal transmural (Q wave) infarction (acute) +C2882115|T047|ET|I21.29|ICD10CM|Posterolateral transmural (Q wave) infarction (acute)|Posterolateral transmural (Q wave) infarction (acute) +C2882116|T047|ET|I21.29|ICD10CM|Posteroseptal transmural (Q wave) infarction (acute)|Posteroseptal transmural (Q wave) infarction (acute) +C2882117|T047|ET|I21.29|ICD10CM|Septal transmural (Q wave) infarction (acute) NOS|Septal transmural (Q wave) infarction (acute) NOS +C2882118|T047|PT|I21.29|ICD10CM|ST elevation (STEMI) myocardial infarction involving other sites|ST elevation (STEMI) myocardial infarction involving other sites +C2882118|T047|AB|I21.29|ICD10CM|STEMI involving oth sites|STEMI involving oth sites +C0348591|T047|PT|I21.3|ICD10|Acute transmural myocardial infarction of unspecified site|Acute transmural myocardial infarction of unspecified site +C0348591|T047|ET|I21.3|ICD10CM|Acute transmural myocardial infarction of unspecified site|Acute transmural myocardial infarction of unspecified site +C2882120|T047|AB|I21.3|ICD10CM|ST elevation (STEMI) myocardial infarction of unsp site|ST elevation (STEMI) myocardial infarction of unsp site +C2882120|T047|PT|I21.3|ICD10CM|ST elevation (STEMI) myocardial infarction of unspecified site|ST elevation (STEMI) myocardial infarction of unspecified site +C2882119|T047|ET|I21.3|ICD10CM|Transmural (Q wave) myocardial infarction NOS|Transmural (Q wave) myocardial infarction NOS +C4509199|T047|ET|I21.3|ICD10CM|Type 1 ST elevation myocardial infarction of unspecified site|Type 1 ST elevation myocardial infarction of unspecified site +C0494580|T047|PT|I21.4|ICD10|Acute subendocardial myocardial infarction|Acute subendocardial myocardial infarction +C0494580|T047|ET|I21.4|ICD10CM|Acute subendocardial myocardial infarction|Acute subendocardial myocardial infarction +C0542269|T047|ET|I21.4|ICD10CM|Non-Q wave myocardial infarction NOS|Non-Q wave myocardial infarction NOS +C1561921|T047|AB|I21.4|ICD10CM|Non-ST elevation (NSTEMI) myocardial infarction|Non-ST elevation (NSTEMI) myocardial infarction +C1561921|T047|PT|I21.4|ICD10CM|Non-ST elevation (NSTEMI) myocardial infarction|Non-ST elevation (NSTEMI) myocardial infarction +C1400511|T047|ET|I21.4|ICD10CM|Nontransmural myocardial infarction NOS|Nontransmural myocardial infarction NOS +C4509200|T047|ET|I21.4|ICD10CM|Type 1 non-ST elevation myocardial infarction|Type 1 non-ST elevation myocardial infarction +C0155626|T047|PT|I21.9|ICD10|Acute myocardial infarction, unspecified|Acute myocardial infarction, unspecified +C0155626|T047|PT|I21.9|ICD10CM|Acute myocardial infarction, unspecified|Acute myocardial infarction, unspecified +C0155626|T047|AB|I21.9|ICD10CM|Acute myocardial infarction, unspecified|Acute myocardial infarction, unspecified +C0155626|T047|ET|I21.9|ICD10CM|Myocardial infarction (acute) NOS|Myocardial infarction (acute) NOS +C4509201|T047|HT|I21.A|ICD10CM|Other type of myocardial infarction|Other type of myocardial infarction +C4509201|T047|AB|I21.A|ICD10CM|Other type of myocardial infarction|Other type of myocardial infarction +C4521180|T047|ET|I21.A1|ICD10CM|Myocardial infarction due to demand ischemia|Myocardial infarction due to demand ischemia +C4509203|T047|ET|I21.A1|ICD10CM|Myocardial infarction secondary to ischemic imbalance|Myocardial infarction secondary to ischemic imbalance +C4521180|T047|PT|I21.A1|ICD10CM|Myocardial infarction type 2|Myocardial infarction type 2 +C4521180|T047|AB|I21.A1|ICD10CM|Myocardial infarction type 2|Myocardial infarction type 2 +C4509204|T046|ET|I21.A9|ICD10CM|Myocardial infarction associated with revascularization procedure|Myocardial infarction associated with revascularization procedure +C3898656|T047|ET|I21.A9|ICD10CM|Myocardial infarction type 3|Myocardial infarction type 3 +C3898655|T047|ET|I21.A9|ICD10CM|Myocardial infarction type 4a|Myocardial infarction type 4a +C3898654|T047|ET|I21.A9|ICD10CM|Myocardial infarction type 4b|Myocardial infarction type 4b +C3898653|T047|ET|I21.A9|ICD10CM|Myocardial infarction type 4c|Myocardial infarction type 4c +C3898652|T047|ET|I21.A9|ICD10CM|Myocardial infarction type 5|Myocardial infarction type 5 +C4509201|T047|AB|I21.A9|ICD10CM|Other myocardial infarction type|Other myocardial infarction type +C4509201|T047|PT|I21.A9|ICD10CM|Other myocardial infarction type|Other myocardial infarction type +C0027051|T047|ET|I22|ICD10CM|cardiac infarction|cardiac infarction +C0264686|T047|ET|I22|ICD10CM|coronary (artery) embolism|coronary (artery) embolism +C0151814|T047|ET|I22|ICD10CM|coronary (artery) occlusion|coronary (artery) occlusion +C0264688|T047|ET|I22|ICD10CM|coronary (artery) rupture|coronary (artery) rupture +C0010072|T047|ET|I22|ICD10CM|coronary (artery) thrombosis|coronary (artery) thrombosis +C4290137|T047|ET|I22|ICD10CM|infarction of heart, myocardium, or ventricle|infarction of heart, myocardium, or ventricle +C4290140|T047|ET|I22|ICD10CM|recurrent myocardial infarction|recurrent myocardial infarction +C0348593|T047|ET|I22|ICD10CM|reinfarction of myocardium|reinfarction of myocardium +C4290141|T047|ET|I22|ICD10CM|rupture of heart, myocardium, or ventricle|rupture of heart, myocardium, or ventricle +C0348593|T047|HT|I22|ICD10|Subsequent myocardial infarction|Subsequent myocardial infarction +C2882125|T033|HT|I22|ICD10CM|Subsequent ST elevation (STEMI) and non-ST elevation (NSTEMI) myocardial infarction|Subsequent ST elevation (STEMI) and non-ST elevation (NSTEMI) myocardial infarction +C2882125|T033|AB|I22|ICD10CM|Subsequent STEMI & NSTEMI mocard infrc|Subsequent STEMI & NSTEMI mocard infrc +C4509205|T033|ET|I22|ICD10CM|subsequent type 1 myocardial infarction|subsequent type 1 myocardial infarction +C2882126|T046|ET|I22.0|ICD10CM|Subsequent acute transmural myocardial infarction of anterior wall|Subsequent acute transmural myocardial infarction of anterior wall +C2882127|T046|ET|I22.0|ICD10CM|Subsequent anteroapical transmural (Q wave) infarction (acute)|Subsequent anteroapical transmural (Q wave) infarction (acute) +C2882128|T046|ET|I22.0|ICD10CM|Subsequent anterolateral transmural (Q wave) infarction (acute)|Subsequent anterolateral transmural (Q wave) infarction (acute) +C2882129|T046|ET|I22.0|ICD10CM|Subsequent anteroseptal transmural (Q wave) infarction (acute)|Subsequent anteroseptal transmural (Q wave) infarction (acute) +C0348862|T047|PT|I22.0|ICD10|Subsequent myocardial infarction of anterior wall|Subsequent myocardial infarction of anterior wall +C2882131|T047|PT|I22.0|ICD10CM|Subsequent ST elevation (STEMI) myocardial infarction of anterior wall|Subsequent ST elevation (STEMI) myocardial infarction of anterior wall +C2882131|T047|AB|I22.0|ICD10CM|Subsequent STEMI of anterior wall|Subsequent STEMI of anterior wall +C2882130|T046|ET|I22.0|ICD10CM|Subsequent transmural (Q wave) infarction (acute)(of) anterior (wall) NOS|Subsequent transmural (Q wave) infarction (acute)(of) anterior (wall) NOS +C2882132|T046|ET|I22.1|ICD10CM|Subsequent acute transmural myocardial infarction of inferior wall|Subsequent acute transmural myocardial infarction of inferior wall +C2882133|T046|ET|I22.1|ICD10CM|Subsequent inferolateral transmural (Q wave) infarction (acute)|Subsequent inferolateral transmural (Q wave) infarction (acute) +C2882134|T046|ET|I22.1|ICD10CM|Subsequent inferoposterior transmural (Q wave) infarction (acute)|Subsequent inferoposterior transmural (Q wave) infarction (acute) +C0348863|T047|PT|I22.1|ICD10|Subsequent myocardial infarction of inferior wall|Subsequent myocardial infarction of inferior wall +C3839202|T047|PT|I22.1|ICD10CM|Subsequent ST elevation (STEMI) myocardial infarction of inferior wall|Subsequent ST elevation (STEMI) myocardial infarction of inferior wall +C3839202|T047|AB|I22.1|ICD10CM|Subsequent STEMI of inferior wall|Subsequent STEMI of inferior wall +C2882135|T046|ET|I22.1|ICD10CM|Subsequent transmural (Q wave) infarction (acute)(of) diaphragmatic wall|Subsequent transmural (Q wave) infarction (acute)(of) diaphragmatic wall +C2882136|T046|ET|I22.1|ICD10CM|Subsequent transmural (Q wave) infarction (acute)(of) inferior (wall) NOS|Subsequent transmural (Q wave) infarction (acute)(of) inferior (wall) NOS +C2882138|T046|ET|I22.2|ICD10CM|Subsequent acute subendocardial myocardial infarction|Subsequent acute subendocardial myocardial infarction +C2882139|T046|ET|I22.2|ICD10CM|Subsequent non-Q wave myocardial infarction NOS|Subsequent non-Q wave myocardial infarction NOS +C2882141|T033|AB|I22.2|ICD10CM|Subsequent non-ST elevation (NSTEMI) myocardial infarction|Subsequent non-ST elevation (NSTEMI) myocardial infarction +C2882141|T033|PT|I22.2|ICD10CM|Subsequent non-ST elevation (NSTEMI) myocardial infarction|Subsequent non-ST elevation (NSTEMI) myocardial infarction +C2882140|T046|ET|I22.2|ICD10CM|Subsequent nontransmural myocardial infarction NOS|Subsequent nontransmural myocardial infarction NOS +C2882142|T046|ET|I22.8|ICD10CM|Subsequent acute transmural myocardial infarction of other sites|Subsequent acute transmural myocardial infarction of other sites +C2882143|T046|ET|I22.8|ICD10CM|Subsequent apical-lateral transmural (Q wave) myocardial infarction (acute)|Subsequent apical-lateral transmural (Q wave) myocardial infarction (acute) +C2882144|T046|ET|I22.8|ICD10CM|Subsequent basal-lateral transmural (Q wave) myocardial infarction (acute)|Subsequent basal-lateral transmural (Q wave) myocardial infarction (acute) +C2882145|T046|ET|I22.8|ICD10CM|Subsequent high lateral transmural (Q wave) myocardial infarction (acute)|Subsequent high lateral transmural (Q wave) myocardial infarction (acute) +C0348592|T047|PT|I22.8|ICD10|Subsequent myocardial infarction of other sites|Subsequent myocardial infarction of other sites +C2882146|T046|ET|I22.8|ICD10CM|Subsequent posterior (true) transmural (Q wave) myocardial infarction (acute)|Subsequent posterior (true) transmural (Q wave) myocardial infarction (acute) +C2882147|T046|ET|I22.8|ICD10CM|Subsequent posterobasal transmural (Q wave) myocardial infarction (acute)|Subsequent posterobasal transmural (Q wave) myocardial infarction (acute) +C2882148|T046|ET|I22.8|ICD10CM|Subsequent posterolateral transmural (Q wave) myocardial infarction (acute)|Subsequent posterolateral transmural (Q wave) myocardial infarction (acute) +C2882149|T046|ET|I22.8|ICD10CM|Subsequent posteroseptal transmural (Q wave) myocardial infarction (acute)|Subsequent posteroseptal transmural (Q wave) myocardial infarction (acute) +C2882150|T046|ET|I22.8|ICD10CM|Subsequent septal NOS transmural (Q wave) myocardial infarction (acute)|Subsequent septal NOS transmural (Q wave) myocardial infarction (acute) +C2882152|T033|PT|I22.8|ICD10CM|Subsequent ST elevation (STEMI) myocardial infarction of other sites|Subsequent ST elevation (STEMI) myocardial infarction of other sites +C2882152|T033|AB|I22.8|ICD10CM|Subsequent STEMI of sites|Subsequent STEMI of sites +C2882151|T046|ET|I22.8|ICD10CM|Subsequent transmural (Q wave) myocardial infarction (acute)(of) lateral (wall) NOS|Subsequent transmural (Q wave) myocardial infarction (acute)(of) lateral (wall) NOS +C2882153|T046|ET|I22.9|ICD10CM|Subsequent acute myocardial infarction of unspecified site|Subsequent acute myocardial infarction of unspecified site +C2882154|T046|ET|I22.9|ICD10CM|Subsequent myocardial infarction (acute) NOS|Subsequent myocardial infarction (acute) NOS +C0348593|T047|PT|I22.9|ICD10|Subsequent myocardial infarction of unspecified site|Subsequent myocardial infarction of unspecified site +C2882155|T033|PT|I22.9|ICD10CM|Subsequent ST elevation (STEMI) myocardial infarction of unspecified site|Subsequent ST elevation (STEMI) myocardial infarction of unspecified site +C2882155|T033|AB|I22.9|ICD10CM|Subsequent STEMI of unsp site|Subsequent STEMI of unsp site +C2882156|T033|AB|I23|ICD10CM|Certain crnt comp fol STEMI & NSTEMI mocard infrc <= 28 day|Certain crnt comp fol STEMI & NSTEMI mocard infrc <= 28 day +C0348864|T033|HT|I23|ICD10|Certain current complications following acute myocardial infarction|Certain current complications following acute myocardial infarction +C0348865|T046|PT|I23.0|ICD10|Haemopericardium as current complication following acute myocardial infarction|Haemopericardium as current complication following acute myocardial infarction +C0348865|T046|PT|I23.0|ICD10AE|Hemopericardium as current complication following acute myocardial infarction|Hemopericardium as current complication following acute myocardial infarction +C0348865|T046|PT|I23.0|ICD10CM|Hemopericardium as current complication following acute myocardial infarction|Hemopericardium as current complication following acute myocardial infarction +C0348865|T046|AB|I23.0|ICD10CM|Hemopericardium as current complication following AMI|Hemopericardium as current complication following AMI +C0348866|T047|PT|I23.1|ICD10CM|Atrial septal defect as current complication following acute myocardial infarction|Atrial septal defect as current complication following acute myocardial infarction +C0348866|T047|PT|I23.1|ICD10|Atrial septal defect as current complication following acute myocardial infarction|Atrial septal defect as current complication following acute myocardial infarction +C0348866|T047|AB|I23.1|ICD10CM|Atrial septal defect as current complication following AMI|Atrial septal defect as current complication following AMI +C0340331|T047|AB|I23.2|ICD10CM|Ventricular septal defect as current comp following AMI|Ventricular septal defect as current comp following AMI +C0340331|T047|PT|I23.2|ICD10CM|Ventricular septal defect as current complication following acute myocardial infarction|Ventricular septal defect as current complication following acute myocardial infarction +C0340331|T047|PT|I23.2|ICD10|Ventricular septal defect as current complication following acute myocardial infarction|Ventricular septal defect as current complication following acute myocardial infarction +C0348867|T047|AB|I23.3|ICD10CM|Rupture of card wall w/o hemoperic as current comp fol AMI|Rupture of card wall w/o hemoperic as current comp fol AMI +C0349074|T046|AB|I23.4|ICD10CM|Rupture of chord tendne as current comp following AMI|Rupture of chord tendne as current comp following AMI +C0349074|T046|PT|I23.4|ICD10CM|Rupture of chordae tendineae as current complication following acute myocardial infarction|Rupture of chordae tendineae as current complication following acute myocardial infarction +C0349074|T046|PT|I23.4|ICD10|Rupture of chordae tendineae as current complication following acute myocardial infarction|Rupture of chordae tendineae as current complication following acute myocardial infarction +C3665604|T047|AB|I23.5|ICD10CM|Rupture of papillary muscle as current comp following AMI|Rupture of papillary muscle as current comp following AMI +C3665604|T047|PT|I23.5|ICD10CM|Rupture of papillary muscle as current complication following acute myocardial infarction|Rupture of papillary muscle as current complication following acute myocardial infarction +C3665604|T047|PT|I23.5|ICD10|Rupture of papillary muscle as current complication following acute myocardial infarction|Rupture of papillary muscle as current complication following acute myocardial infarction +C0348876|T047|AB|I23.6|ICD10CM|Thombos of atrium/auric append/ventr as current comp fol AMI|Thombos of atrium/auric append/ventr as current comp fol AMI +C1142492|T046|PT|I23.7|ICD10CM|Postinfarction angina|Postinfarction angina +C1142492|T046|AB|I23.7|ICD10CM|Postinfarction angina|Postinfarction angina +C0348589|T047|AB|I23.8|ICD10CM|Oth current complications following AMI|Oth current complications following AMI +C0348589|T047|PT|I23.8|ICD10CM|Other current complications following acute myocardial infarction|Other current complications following acute myocardial infarction +C0348589|T047|PT|I23.8|ICD10|Other current complications following acute myocardial infarction|Other current complications following acute myocardial infarction +C0348590|T047|HT|I24|ICD10|Other acute ischaemic heart diseases|Other acute ischaemic heart diseases +C0348590|T047|AB|I24|ICD10CM|Other acute ischemic heart diseases|Other acute ischemic heart diseases +C0348590|T047|HT|I24|ICD10CM|Other acute ischemic heart diseases|Other acute ischemic heart diseases +C0348590|T047|HT|I24|ICD10AE|Other acute ischemic heart diseases|Other acute ischemic heart diseases +C2882157|T047|ET|I24.0|ICD10CM|Acute coronary (artery) (vein) embolism not resulting in myocardial infarction|Acute coronary (artery) (vein) embolism not resulting in myocardial infarction +C2882158|T047|ET|I24.0|ICD10CM|Acute coronary (artery) (vein) occlusion not resulting in myocardial infarction|Acute coronary (artery) (vein) occlusion not resulting in myocardial infarction +C2882159|T047|ET|I24.0|ICD10CM|Acute coronary (artery) (vein) thromboembolism not resulting in myocardial infarction|Acute coronary (artery) (vein) thromboembolism not resulting in myocardial infarction +C2882160|T047|PT|I24.0|ICD10CM|Acute coronary thrombosis not resulting in myocardial infarction|Acute coronary thrombosis not resulting in myocardial infarction +C2882160|T047|AB|I24.0|ICD10CM|Acute coronary thrombosis not resulting in myocardial infrc|Acute coronary thrombosis not resulting in myocardial infrc +C0340325|T047|PT|I24.0|ICD10|Coronary thrombosis not resulting in myocardial infarction|Coronary thrombosis not resulting in myocardial infarction +C0152107|T047|PT|I24.1|ICD10|Dressler's syndrome|Dressler's syndrome +C0152107|T047|PT|I24.1|ICD10CM|Dressler's syndrome|Dressler's syndrome +C0152107|T047|AB|I24.1|ICD10CM|Dressler's syndrome|Dressler's syndrome +C0152107|T047|ET|I24.1|ICD10CM|Postmyocardial infarction syndrome|Postmyocardial infarction syndrome +C0348590|T047|PT|I24.8|ICD10|Other forms of acute ischaemic heart disease|Other forms of acute ischaemic heart disease +C0348590|T047|PT|I24.8|ICD10CM|Other forms of acute ischemic heart disease|Other forms of acute ischemic heart disease +C0348590|T047|AB|I24.8|ICD10CM|Other forms of acute ischemic heart disease|Other forms of acute ischemic heart disease +C0348590|T047|PT|I24.8|ICD10AE|Other forms of acute ischemic heart disease|Other forms of acute ischemic heart disease +C1510446|T047|PT|I24.9|ICD10|Acute ischaemic heart disease, unspecified|Acute ischaemic heart disease, unspecified +C1510446|T047|PT|I24.9|ICD10AE|Acute ischemic heart disease, unspecified|Acute ischemic heart disease, unspecified +C1510446|T047|PT|I24.9|ICD10CM|Acute ischemic heart disease, unspecified|Acute ischemic heart disease, unspecified +C1510446|T047|AB|I24.9|ICD10CM|Acute ischemic heart disease, unspecified|Acute ischemic heart disease, unspecified +C0264694|T047|HT|I25|ICD10|Chronic ischaemic heart disease|Chronic ischaemic heart disease +C0264694|T047|HT|I25|ICD10CM|Chronic ischemic heart disease|Chronic ischemic heart disease +C0264694|T047|AB|I25|ICD10CM|Chronic ischemic heart disease|Chronic ischemic heart disease +C0264694|T047|HT|I25|ICD10AE|Chronic ischemic heart disease|Chronic ischemic heart disease +C0004153|T047|PT|I25.0|ICD10|Atherosclerotic cardiovascular disease, so described|Atherosclerotic cardiovascular disease, so described +C0004153|T047|ET|I25.1|ICD10CM|Atherosclerotic cardiovascular disease|Atherosclerotic cardiovascular disease +C0010054|T047|PT|I25.1|ICD10|Atherosclerotic heart disease|Atherosclerotic heart disease +C0837134|T047|AB|I25.1|ICD10CM|Atherosclerotic heart disease of native coronary artery|Atherosclerotic heart disease of native coronary artery +C0837134|T047|HT|I25.1|ICD10CM|Atherosclerotic heart disease of native coronary artery|Atherosclerotic heart disease of native coronary artery +C0264683|T047|ET|I25.1|ICD10CM|Coronary (artery) atheroma|Coronary (artery) atheroma +C0010054|T047|ET|I25.1|ICD10CM|Coronary (artery) atherosclerosis|Coronary (artery) atherosclerosis +C0010068|T047|ET|I25.1|ICD10CM|Coronary (artery) disease|Coronary (artery) disease +C0010054|T047|ET|I25.1|ICD10CM|Coronary (artery) sclerosis|Coronary (artery) sclerosis +C0010054|T047|ET|I25.10|ICD10CM|Atherosclerotic heart disease NOS|Atherosclerotic heart disease NOS +C2882161|T047|PT|I25.10|ICD10CM|Atherosclerotic heart disease of native coronary artery without angina pectoris|Atherosclerotic heart disease of native coronary artery without angina pectoris +C2882161|T047|AB|I25.10|ICD10CM|Athscl heart disease of native coronary artery w/o ang pctrs|Athscl heart disease of native coronary artery w/o ang pctrs +C2882162|T047|HT|I25.11|ICD10CM|Atherosclerotic heart disease of native coronary artery with angina pectoris|Atherosclerotic heart disease of native coronary artery with angina pectoris +C2882162|T047|AB|I25.11|ICD10CM|Athscl heart disease of native coronary artery w ang pctrs|Athscl heart disease of native coronary artery w ang pctrs +C2882163|T047|PT|I25.110|ICD10CM|Atherosclerotic heart disease of native coronary artery with unstable angina pectoris|Atherosclerotic heart disease of native coronary artery with unstable angina pectoris +C2882163|T047|AB|I25.110|ICD10CM|Athscl heart disease of native cor art w unstable ang pctrs|Athscl heart disease of native cor art w unstable ang pctrs +C2882164|T047|PT|I25.111|ICD10CM|Atherosclerotic heart disease of native coronary artery with angina pectoris with documented spasm|Atherosclerotic heart disease of native coronary artery with angina pectoris with documented spasm +C2882164|T047|AB|I25.111|ICD10CM|Athscl heart disease of native cor art w ang pctrs w spasm|Athscl heart disease of native cor art w ang pctrs w spasm +C2882165|T047|PT|I25.118|ICD10CM|Atherosclerotic heart disease of native coronary artery with other forms of angina pectoris|Atherosclerotic heart disease of native coronary artery with other forms of angina pectoris +C2882165|T047|AB|I25.118|ICD10CM|Athscl heart disease of native cor art w oth ang pctrs|Athscl heart disease of native cor art w oth ang pctrs +C2882168|T047|PT|I25.119|ICD10CM|Atherosclerotic heart disease of native coronary artery with unspecified angina pectoris|Atherosclerotic heart disease of native coronary artery with unspecified angina pectoris +C2882166|T047|ET|I25.119|ICD10CM|Atherosclerotic heart disease with angina NOS|Atherosclerotic heart disease with angina NOS +C2882167|T047|ET|I25.119|ICD10CM|Atherosclerotic heart disease with ischemic chest pain|Atherosclerotic heart disease with ischemic chest pain +C2882168|T047|AB|I25.119|ICD10CM|Athscl heart disease of native cor art w unsp ang pctrs|Athscl heart disease of native cor art w unsp ang pctrs +C0155668|T047|ET|I25.2|ICD10CM|Healed myocardial infarction|Healed myocardial infarction +C0155668|T047|PT|I25.2|ICD10CM|Old myocardial infarction|Old myocardial infarction +C0155668|T047|AB|I25.2|ICD10CM|Old myocardial infarction|Old myocardial infarction +C0155668|T047|PT|I25.2|ICD10|Old myocardial infarction|Old myocardial infarction +C0018789|T047|PT|I25.3|ICD10|Aneurysm of heart|Aneurysm of heart +C0018789|T047|PT|I25.3|ICD10CM|Aneurysm of heart|Aneurysm of heart +C0018789|T047|AB|I25.3|ICD10CM|Aneurysm of heart|Aneurysm of heart +C1541919|T047|ET|I25.3|ICD10CM|Mural aneurysm|Mural aneurysm +C0392464|T047|ET|I25.3|ICD10CM|Ventricular aneurysm|Ventricular aneurysm +C0010051|T047|PT|I25.4|ICD10|Coronary artery aneurysm|Coronary artery aneurysm +C0392158|T047|AB|I25.4|ICD10CM|Coronary artery aneurysm and dissection|Coronary artery aneurysm and dissection +C0392158|T047|HT|I25.4|ICD10CM|Coronary artery aneurysm and dissection|Coronary artery aneurysm and dissection +C2882171|T020|ET|I25.41|ICD10CM|Coronary arteriovenous fistula, acquired|Coronary arteriovenous fistula, acquired +C0010051|T047|PT|I25.41|ICD10CM|Coronary artery aneurysm|Coronary artery aneurysm +C0010051|T047|AB|I25.41|ICD10CM|Coronary artery aneurysm|Coronary artery aneurysm +C0340648|T047|PT|I25.42|ICD10CM|Coronary artery dissection|Coronary artery dissection +C0340648|T047|AB|I25.42|ICD10CM|Coronary artery dissection|Coronary artery dissection +C0349782|T047|PT|I25.5|ICD10|Ischaemic cardiomyopathy|Ischaemic cardiomyopathy +C0349782|T047|PT|I25.5|ICD10AE|Ischemic cardiomyopathy|Ischemic cardiomyopathy +C0349782|T047|PT|I25.5|ICD10CM|Ischemic cardiomyopathy|Ischemic cardiomyopathy +C0349782|T047|AB|I25.5|ICD10CM|Ischemic cardiomyopathy|Ischemic cardiomyopathy +C0340291|T047|PT|I25.6|ICD10|Silent myocardial ischaemia|Silent myocardial ischaemia +C0340291|T047|PT|I25.6|ICD10CM|Silent myocardial ischemia|Silent myocardial ischemia +C0340291|T047|AB|I25.6|ICD10CM|Silent myocardial ischemia|Silent myocardial ischemia +C0340291|T047|PT|I25.6|ICD10AE|Silent myocardial ischemia|Silent myocardial ischemia +C2882172|T047|AB|I25.7|ICD10CM|Athscl CABG and cor art of transplanted heart w ang pctrs|Athscl CABG and cor art of transplanted heart w ang pctrs +C2882173|T047|AB|I25.70|ICD10CM|Atherosclerosis of CABG, unsp, w angina pectoris|Atherosclerosis of CABG, unsp, w angina pectoris +C2882173|T047|HT|I25.70|ICD10CM|Atherosclerosis of coronary artery bypass graft(s), unspecified, with angina pectoris|Atherosclerosis of coronary artery bypass graft(s), unspecified, with angina pectoris +C2882174|T047|AB|I25.700|ICD10CM|Atherosclerosis of CABG, unsp, w unstable angina pectoris|Atherosclerosis of CABG, unsp, w unstable angina pectoris +C2882174|T047|PT|I25.700|ICD10CM|Atherosclerosis of coronary artery bypass graft(s), unspecified, with unstable angina pectoris|Atherosclerosis of coronary artery bypass graft(s), unspecified, with unstable angina pectoris +C2882175|T047|AB|I25.701|ICD10CM|Athscl CABG, unsp, w angina pectoris w documented spasm|Athscl CABG, unsp, w angina pectoris w documented spasm +C2882176|T047|AB|I25.708|ICD10CM|Atherosclerosis of CABG, unsp, w oth angina pectoris|Atherosclerosis of CABG, unsp, w oth angina pectoris +C2882176|T047|PT|I25.708|ICD10CM|Atherosclerosis of coronary artery bypass graft(s), unspecified, with other forms of angina pectoris|Atherosclerosis of coronary artery bypass graft(s), unspecified, with other forms of angina pectoris +C2882177|T047|AB|I25.709|ICD10CM|Atherosclerosis of CABG, unsp, w unsp angina pectoris|Atherosclerosis of CABG, unsp, w unsp angina pectoris +C2882177|T047|PT|I25.709|ICD10CM|Atherosclerosis of coronary artery bypass graft(s), unspecified, with unspecified angina pectoris|Atherosclerosis of coronary artery bypass graft(s), unspecified, with unspecified angina pectoris +C2882178|T047|AB|I25.71|ICD10CM|Atherosclerosis of autologous vein CABG w angina pectoris|Atherosclerosis of autologous vein CABG w angina pectoris +C2882178|T047|HT|I25.71|ICD10CM|Atherosclerosis of autologous vein coronary artery bypass graft(s) with angina pectoris|Atherosclerosis of autologous vein coronary artery bypass graft(s) with angina pectoris +C2882179|T047|PT|I25.710|ICD10CM|Atherosclerosis of autologous vein coronary artery bypass graft(s) with unstable angina pectoris|Atherosclerosis of autologous vein coronary artery bypass graft(s) with unstable angina pectoris +C2882179|T047|AB|I25.710|ICD10CM|Athscl autologous vein CABG w unstable angina pectoris|Athscl autologous vein CABG w unstable angina pectoris +C2882180|T047|AB|I25.711|ICD10CM|Athscl autologous vein CABG w ang pctrs w documented spasm|Athscl autologous vein CABG w ang pctrs w documented spasm +C2882181|T047|AB|I25.718|ICD10CM|Athscl autologous vein CABG w oth angina pectoris|Athscl autologous vein CABG w oth angina pectoris +C2882182|T047|PT|I25.719|ICD10CM|Atherosclerosis of autologous vein coronary artery bypass graft(s) with unspecified angina pectoris|Atherosclerosis of autologous vein coronary artery bypass graft(s) with unspecified angina pectoris +C2882182|T047|AB|I25.719|ICD10CM|Athscl autologous vein CABG w unsp angina pectoris|Athscl autologous vein CABG w unsp angina pectoris +C2882183|T047|AB|I25.72|ICD10CM|Atherosclerosis of autologous artery CABG w angina pectoris|Atherosclerosis of autologous artery CABG w angina pectoris +C2882183|T047|HT|I25.72|ICD10CM|Atherosclerosis of autologous artery coronary artery bypass graft(s) with angina pectoris|Atherosclerosis of autologous artery coronary artery bypass graft(s) with angina pectoris +C2976974|T047|ET|I25.72|ICD10CM|Atherosclerosis of internal mammary artery graft with angina pectoris|Atherosclerosis of internal mammary artery graft with angina pectoris +C2882184|T047|PT|I25.720|ICD10CM|Atherosclerosis of autologous artery coronary artery bypass graft(s) with unstable angina pectoris|Atherosclerosis of autologous artery coronary artery bypass graft(s) with unstable angina pectoris +C2882184|T047|AB|I25.720|ICD10CM|Athscl autologous artery CABG w unstable angina pectoris|Athscl autologous artery CABG w unstable angina pectoris +C2882185|T047|AB|I25.721|ICD10CM|Athscl autologous artery CABG w ang pctrs w documented spasm|Athscl autologous artery CABG w ang pctrs w documented spasm +C2882186|T047|AB|I25.728|ICD10CM|Athscl autologous artery CABG w oth angina pectoris|Athscl autologous artery CABG w oth angina pectoris +C2882187|T047|AB|I25.729|ICD10CM|Athscl autologous artery CABG w unsp angina pectoris|Athscl autologous artery CABG w unsp angina pectoris +C2882188|T047|HT|I25.73|ICD10CM|Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with angina pectoris|Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with angina pectoris +C2882188|T047|AB|I25.73|ICD10CM|Athscl nonautologous biological CABG w angina pectoris|Athscl nonautologous biological CABG w angina pectoris +C2882189|T047|AB|I25.730|ICD10CM|Athscl nonautologous biological CABG w unstable ang pctrs|Athscl nonautologous biological CABG w unstable ang pctrs +C2882190|T047|AB|I25.731|ICD10CM|Athscl nonaut biological CABG w ang pctrs w documented spasm|Athscl nonaut biological CABG w ang pctrs w documented spasm +C2882191|T047|AB|I25.738|ICD10CM|Athscl nonautologous biological CABG w oth angina pectoris|Athscl nonautologous biological CABG w oth angina pectoris +C2882192|T047|AB|I25.739|ICD10CM|Athscl nonautologous biological CABG w unsp angina pectoris|Athscl nonautologous biological CABG w unsp angina pectoris +C2882193|T047|HT|I25.75|ICD10CM|Atherosclerosis of native coronary artery of transplanted heart with angina pectoris|Atherosclerosis of native coronary artery of transplanted heart with angina pectoris +C2882193|T047|AB|I25.75|ICD10CM|Athscl native cor art of transplanted heart w ang pctrs|Athscl native cor art of transplanted heart w ang pctrs +C2882194|T047|PT|I25.750|ICD10CM|Atherosclerosis of native coronary artery of transplanted heart with unstable angina|Atherosclerosis of native coronary artery of transplanted heart with unstable angina +C2882194|T047|AB|I25.750|ICD10CM|Athscl native cor art of txplt heart w unstable angina|Athscl native cor art of txplt heart w unstable angina +C2882195|T047|AB|I25.751|ICD10CM|Athscl native cor art of txplt heart w ang pctrs w spasm|Athscl native cor art of txplt heart w ang pctrs w spasm +C2882196|T047|PT|I25.758|ICD10CM|Atherosclerosis of native coronary artery of transplanted heart with other forms of angina pectoris|Atherosclerosis of native coronary artery of transplanted heart with other forms of angina pectoris +C2882196|T047|AB|I25.758|ICD10CM|Athscl native cor art of transplanted heart w oth ang pctrs|Athscl native cor art of transplanted heart w oth ang pctrs +C2882197|T047|PT|I25.759|ICD10CM|Atherosclerosis of native coronary artery of transplanted heart with unspecified angina pectoris|Atherosclerosis of native coronary artery of transplanted heart with unspecified angina pectoris +C2882197|T047|AB|I25.759|ICD10CM|Athscl native cor art of transplanted heart w unsp ang pctrs|Athscl native cor art of transplanted heart w unsp ang pctrs +C2882198|T047|HT|I25.76|ICD10CM|Atherosclerosis of bypass graft of coronary artery of transplanted heart with angina pectoris|Atherosclerosis of bypass graft of coronary artery of transplanted heart with angina pectoris +C2882198|T047|AB|I25.76|ICD10CM|Athscl bypass of cor art of transplanted heart w ang pctrs|Athscl bypass of cor art of transplanted heart w ang pctrs +C2882199|T047|PT|I25.760|ICD10CM|Atherosclerosis of bypass graft of coronary artery of transplanted heart with unstable angina|Atherosclerosis of bypass graft of coronary artery of transplanted heart with unstable angina +C2882199|T047|AB|I25.760|ICD10CM|Athscl bypass of cor art of txplt heart w unstable angina|Athscl bypass of cor art of txplt heart w unstable angina +C2882200|T047|AB|I25.761|ICD10CM|Athscl bypass of cor art of txplt heart w ang pctrs w spasm|Athscl bypass of cor art of txplt heart w ang pctrs w spasm +C2882201|T047|AB|I25.768|ICD10CM|Athscl bypass of cor art of txplt heart w oth ang pctrs|Athscl bypass of cor art of txplt heart w oth ang pctrs +C2882202|T047|AB|I25.769|ICD10CM|Athscl bypass of cor art of txplt heart w unsp ang pctrs|Athscl bypass of cor art of txplt heart w unsp ang pctrs +C2882203|T047|AB|I25.79|ICD10CM|Atherosclerosis of CABG w angina pectoris|Atherosclerosis of CABG w angina pectoris +C2882203|T047|HT|I25.79|ICD10CM|Atherosclerosis of other coronary artery bypass graft(s) with angina pectoris|Atherosclerosis of other coronary artery bypass graft(s) with angina pectoris +C2882204|T047|AB|I25.790|ICD10CM|Atherosclerosis of CABG w unstable angina pectoris|Atherosclerosis of CABG w unstable angina pectoris +C2882204|T047|PT|I25.790|ICD10CM|Atherosclerosis of other coronary artery bypass graft(s) with unstable angina pectoris|Atherosclerosis of other coronary artery bypass graft(s) with unstable angina pectoris +C2882205|T047|AB|I25.791|ICD10CM|Atherosclerosis of CABG w angina pectoris w documented spasm|Atherosclerosis of CABG w angina pectoris w documented spasm +C2882205|T047|PT|I25.791|ICD10CM|Atherosclerosis of other coronary artery bypass graft(s) with angina pectoris with documented spasm|Atherosclerosis of other coronary artery bypass graft(s) with angina pectoris with documented spasm +C2882206|T047|AB|I25.798|ICD10CM|Atherosclerosis of CABG w oth angina pectoris|Atherosclerosis of CABG w oth angina pectoris +C2882206|T047|PT|I25.798|ICD10CM|Atherosclerosis of other coronary artery bypass graft(s) with other forms of angina pectoris|Atherosclerosis of other coronary artery bypass graft(s) with other forms of angina pectoris +C2882207|T047|AB|I25.799|ICD10CM|Atherosclerosis of CABG w unsp angina pectoris|Atherosclerosis of CABG w unsp angina pectoris +C2882207|T047|PT|I25.799|ICD10CM|Atherosclerosis of other coronary artery bypass graft(s) with unspecified angina pectoris|Atherosclerosis of other coronary artery bypass graft(s) with unspecified angina pectoris +C0155669|T047|PT|I25.8|ICD10|Other forms of chronic ischaemic heart disease|Other forms of chronic ischaemic heart disease +C0155669|T047|PT|I25.8|ICD10AE|Other forms of chronic ischemic heart disease|Other forms of chronic ischemic heart disease +C0155669|T047|HT|I25.8|ICD10CM|Other forms of chronic ischemic heart disease|Other forms of chronic ischemic heart disease +C0155669|T047|AB|I25.8|ICD10CM|Other forms of chronic ischemic heart disease|Other forms of chronic ischemic heart disease +C2882208|T047|AB|I25.81|ICD10CM|Atherosclerosis of oth coronary vessels w/o angina pectoris|Atherosclerosis of oth coronary vessels w/o angina pectoris +C2882208|T047|HT|I25.81|ICD10CM|Atherosclerosis of other coronary vessels without angina pectoris|Atherosclerosis of other coronary vessels without angina pectoris +C2882209|T047|AB|I25.810|ICD10CM|Atherosclerosis of CABG w/o angina pectoris|Atherosclerosis of CABG w/o angina pectoris +C0375264|T047|ET|I25.810|ICD10CM|Atherosclerosis of coronary artery bypass graft NOS|Atherosclerosis of coronary artery bypass graft NOS +C2882209|T047|PT|I25.810|ICD10CM|Atherosclerosis of coronary artery bypass graft(s) without angina pectoris|Atherosclerosis of coronary artery bypass graft(s) without angina pectoris +C2882210|T047|ET|I25.811|ICD10CM|Atherosclerosis of native coronary artery of transplanted heart NOS|Atherosclerosis of native coronary artery of transplanted heart NOS +C2882211|T047|PT|I25.811|ICD10CM|Atherosclerosis of native coronary artery of transplanted heart without angina pectoris|Atherosclerosis of native coronary artery of transplanted heart without angina pectoris +C2882211|T047|AB|I25.811|ICD10CM|Athscl native cor art of transplanted heart w/o ang pctrs|Athscl native cor art of transplanted heart w/o ang pctrs +C2882213|T047|PT|I25.812|ICD10CM|Atherosclerosis of bypass graft of coronary artery of transplanted heart without angina pectoris|Atherosclerosis of bypass graft of coronary artery of transplanted heart without angina pectoris +C2882212|T047|ET|I25.812|ICD10CM|Atherosclerosis of bypass graft of transplanted heart NOS|Atherosclerosis of bypass graft of transplanted heart NOS +C2882213|T047|AB|I25.812|ICD10CM|Athscl bypass of cor art of transplanted heart w/o ang pctrs|Athscl bypass of cor art of transplanted heart w/o ang pctrs +C1955779|T047|PT|I25.82|ICD10CM|Chronic total occlusion of coronary artery|Chronic total occlusion of coronary artery +C1955779|T047|AB|I25.82|ICD10CM|Chronic total occlusion of coronary artery|Chronic total occlusion of coronary artery +C1955780|T047|ET|I25.82|ICD10CM|Complete occlusion of coronary artery|Complete occlusion of coronary artery +C1955780|T047|ET|I25.82|ICD10CM|Total occlusion of coronary artery|Total occlusion of coronary artery +C2349509|T047|AB|I25.83|ICD10CM|Coronary atherosclerosis due to lipid rich plaque|Coronary atherosclerosis due to lipid rich plaque +C2349509|T047|PT|I25.83|ICD10CM|Coronary atherosclerosis due to lipid rich plaque|Coronary atherosclerosis due to lipid rich plaque +C3161090|T047|AB|I25.84|ICD10CM|Coronary atherosclerosis due to calcified coronary lesion|Coronary atherosclerosis due to calcified coronary lesion +C3161090|T047|PT|I25.84|ICD10CM|Coronary atherosclerosis due to calcified coronary lesion|Coronary atherosclerosis due to calcified coronary lesion +C3161193|T047|ET|I25.84|ICD10CM|Coronary atherosclerosis due to severely calcified coronary lesion|Coronary atherosclerosis due to severely calcified coronary lesion +C0155669|T047|PT|I25.89|ICD10CM|Other forms of chronic ischemic heart disease|Other forms of chronic ischemic heart disease +C0155669|T047|AB|I25.89|ICD10CM|Other forms of chronic ischemic heart disease|Other forms of chronic ischemic heart disease +C0264694|T047|PT|I25.9|ICD10|Chronic ischaemic heart disease, unspecified|Chronic ischaemic heart disease, unspecified +C0264694|T047|PT|I25.9|ICD10AE|Chronic ischemic heart disease, unspecified|Chronic ischemic heart disease, unspecified +C0264694|T047|PT|I25.9|ICD10CM|Chronic ischemic heart disease, unspecified|Chronic ischemic heart disease, unspecified +C0264694|T047|AB|I25.9|ICD10CM|Chronic ischemic heart disease, unspecified|Chronic ischemic heart disease, unspecified +C0264694|T047|ET|I25.9|ICD10CM|Ischemic heart disease (chronic) NOS|Ischemic heart disease (chronic) NOS +C4290142|T047|ET|I26|ICD10CM|pulmonary (acute) (artery)(vein) infarction|pulmonary (acute) (artery)(vein) infarction +C4290143|T047|ET|I26|ICD10CM|pulmonary (acute) (artery)(vein) thromboembolism|pulmonary (acute) (artery)(vein) thromboembolism +C4290144|T047|ET|I26|ICD10CM|pulmonary (acute) (artery)(vein) thrombosis|pulmonary (acute) (artery)(vein) thrombosis +C0034065|T046|HT|I26|ICD10|Pulmonary embolism|Pulmonary embolism +C0034065|T046|HT|I26|ICD10CM|Pulmonary embolism|Pulmonary embolism +C0034065|T046|AB|I26|ICD10CM|Pulmonary embolism|Pulmonary embolism +C0700195|T047|HT|I26-I28|ICD10CM|Pulmonary heart disease and diseases of pulmonary circulation (I26-I28)|Pulmonary heart disease and diseases of pulmonary circulation (I26-I28) +C0700195|T047|HT|I26-I28.9|ICD10|Pulmonary heart disease and diseases of pulmonary circulation|Pulmonary heart disease and diseases of pulmonary circulation +C1396324|T047|AB|I26.0|ICD10CM|Pulmonary embolism with acute cor pulmonale|Pulmonary embolism with acute cor pulmonale +C1396324|T047|HT|I26.0|ICD10CM|Pulmonary embolism with acute cor pulmonale|Pulmonary embolism with acute cor pulmonale +C0494583|T047|PT|I26.0|ICD10|Pulmonary embolism with mention of acute cor pulmonale|Pulmonary embolism with mention of acute cor pulmonale +C2882217|T047|AB|I26.01|ICD10CM|Septic pulmonary embolism with acute cor pulmonale|Septic pulmonary embolism with acute cor pulmonale +C2882217|T047|PT|I26.01|ICD10CM|Septic pulmonary embolism with acute cor pulmonale|Septic pulmonary embolism with acute cor pulmonale +C3264366|T047|PT|I26.02|ICD10CM|Saddle embolus of pulmonary artery with acute cor pulmonale|Saddle embolus of pulmonary artery with acute cor pulmonale +C3264366|T047|AB|I26.02|ICD10CM|Saddle embolus of pulmonary artery with acute cor pulmonale|Saddle embolus of pulmonary artery with acute cor pulmonale +C0155672|T047|ET|I26.09|ICD10CM|Acute cor pulmonale NOS|Acute cor pulmonale NOS +C2882218|T047|AB|I26.09|ICD10CM|Other pulmonary embolism with acute cor pulmonale|Other pulmonary embolism with acute cor pulmonale +C2882218|T047|PT|I26.09|ICD10CM|Other pulmonary embolism with acute cor pulmonale|Other pulmonary embolism with acute cor pulmonale +C2882219|T047|HT|I26.9|ICD10CM|Pulmonary embolism without acute cor pulmonale|Pulmonary embolism without acute cor pulmonale +C2882219|T047|AB|I26.9|ICD10CM|Pulmonary embolism without acute cor pulmonale|Pulmonary embolism without acute cor pulmonale +C0494584|T047|PT|I26.9|ICD10|Pulmonary embolism without mention of acute cor pulmonale|Pulmonary embolism without mention of acute cor pulmonale +C2882220|T047|PT|I26.90|ICD10CM|Septic pulmonary embolism without acute cor pulmonale|Septic pulmonary embolism without acute cor pulmonale +C2882220|T047|AB|I26.90|ICD10CM|Septic pulmonary embolism without acute cor pulmonale|Septic pulmonary embolism without acute cor pulmonale +C3264367|T047|AB|I26.92|ICD10CM|Saddle embolus of pulmonary artery w/o acute cor pulmonale|Saddle embolus of pulmonary artery w/o acute cor pulmonale +C3264367|T047|PT|I26.92|ICD10CM|Saddle embolus of pulmonary artery without acute cor pulmonale|Saddle embolus of pulmonary artery without acute cor pulmonale +C5140808|T047|AB|I26.93|ICD10CM|Single subsegmental pulmon emblsm w/o acute cor pulmonale|Single subsegmental pulmon emblsm w/o acute cor pulmonale +C5140808|T047|PT|I26.93|ICD10CM|Single subsegmental pulmonary embolism without acute cor pulmonale|Single subsegmental pulmonary embolism without acute cor pulmonale +C5141127|T047|ET|I26.93|ICD10CM|Subsegmental pulmonary embolism NOS|Subsegmental pulmonary embolism NOS +C5140809|T047|AB|I26.94|ICD10CM|Mult subsegmental pulmon emboli without acute cor pulmonale|Mult subsegmental pulmon emboli without acute cor pulmonale +C5140809|T047|PT|I26.94|ICD10CM|Multiple subsegmental pulmonary emboli without acute cor pulmonale|Multiple subsegmental pulmonary emboli without acute cor pulmonale +C2882221|T047|ET|I26.99|ICD10CM|Acute pulmonary embolism NOS|Acute pulmonary embolism NOS +C2882222|T047|AB|I26.99|ICD10CM|Other pulmonary embolism without acute cor pulmonale|Other pulmonary embolism without acute cor pulmonale +C2882222|T047|PT|I26.99|ICD10CM|Other pulmonary embolism without acute cor pulmonale|Other pulmonary embolism without acute cor pulmonale +C0034065|T046|ET|I26.99|ICD10CM|Pulmonary embolism NOS|Pulmonary embolism NOS +C0494585|T047|HT|I27|ICD10|Other pulmonary heart diseases|Other pulmonary heart diseases +C0494585|T047|AB|I27|ICD10CM|Other pulmonary heart diseases|Other pulmonary heart diseases +C0494585|T047|HT|I27|ICD10CM|Other pulmonary heart diseases|Other pulmonary heart diseases +C0340543|T047|ET|I27.0|ICD10CM|Heritable pulmonary arterial hypertension|Heritable pulmonary arterial hypertension +C3203102|T047|ET|I27.0|ICD10CM|Idiopathic pulmonary arterial hypertension|Idiopathic pulmonary arterial hypertension +C4509206|T047|ET|I27.0|ICD10CM|Primary group 1 pulmonary hypertension|Primary group 1 pulmonary hypertension +C4509207|T047|ET|I27.0|ICD10CM|Primary pulmonary arterial hypertension|Primary pulmonary arterial hypertension +C0152171|T047|PT|I27.0|ICD10|Primary pulmonary hypertension|Primary pulmonary hypertension +C0152171|T047|PT|I27.0|ICD10CM|Primary pulmonary hypertension|Primary pulmonary hypertension +C0152171|T047|AB|I27.0|ICD10CM|Primary pulmonary hypertension|Primary pulmonary hypertension +C0152102|T047|PT|I27.1|ICD10CM|Kyphoscoliotic heart disease|Kyphoscoliotic heart disease +C0152102|T047|AB|I27.1|ICD10CM|Kyphoscoliotic heart disease|Kyphoscoliotic heart disease +C0152102|T047|PT|I27.1|ICD10|Kyphoscoliotic heart disease|Kyphoscoliotic heart disease +C2882223|T047|AB|I27.2|ICD10CM|Other secondary pulmonary hypertension|Other secondary pulmonary hypertension +C2882223|T047|HT|I27.2|ICD10CM|Other secondary pulmonary hypertension|Other secondary pulmonary hypertension +C0020542|T046|ET|I27.20|ICD10CM|Pulmonary hypertension NOS|Pulmonary hypertension NOS +C4509208|T047|AB|I27.20|ICD10CM|Pulmonary hypertension, unspecified|Pulmonary hypertension, unspecified +C4509208|T047|PT|I27.20|ICD10CM|Pulmonary hypertension, unspecified|Pulmonary hypertension, unspecified +C4509210|T047|ET|I27.21|ICD10CM|(Associated) (drug-induced) (toxin-induced) (secondary) group 1 pulmonary hypertension|(Associated) (drug-induced) (toxin-induced) (secondary) group 1 pulmonary hypertension +C4509209|T047|ET|I27.21|ICD10CM|(Associated) (drug-induced) (toxin-induced) pulmonary arterial hypertension NOS|(Associated) (drug-induced) (toxin-induced) pulmonary arterial hypertension NOS +C3665995|T047|PT|I27.21|ICD10CM|Secondary pulmonary arterial hypertension|Secondary pulmonary arterial hypertension +C3665995|T047|AB|I27.21|ICD10CM|Secondary pulmonary arterial hypertension|Secondary pulmonary arterial hypertension +C4509211|T047|ET|I27.22|ICD10CM|Group 2 pulmonary hypertension|Group 2 pulmonary hypertension +C3532326|T047|AB|I27.22|ICD10CM|Pulmonary hypertension due to left heart disease|Pulmonary hypertension due to left heart disease +C3532326|T047|PT|I27.22|ICD10CM|Pulmonary hypertension due to left heart disease|Pulmonary hypertension due to left heart disease +C4509213|T047|ET|I27.23|ICD10CM|Group 3 pulmonary hypertension|Group 3 pulmonary hypertension +C4509212|T047|AB|I27.23|ICD10CM|Pulmonary hypertension due to lung diseases and hypoxia|Pulmonary hypertension due to lung diseases and hypoxia +C4509212|T047|PT|I27.23|ICD10CM|Pulmonary hypertension due to lung diseases and hypoxia|Pulmonary hypertension due to lung diseases and hypoxia +C2363973|T047|PT|I27.24|ICD10CM|Chronic thromboembolic pulmonary hypertension|Chronic thromboembolic pulmonary hypertension +C2363973|T047|AB|I27.24|ICD10CM|Chronic thromboembolic pulmonary hypertension|Chronic thromboembolic pulmonary hypertension +C4509214|T047|ET|I27.24|ICD10CM|Group 4 pulmonary hypertension|Group 4 pulmonary hypertension +C4509215|T047|ET|I27.29|ICD10CM|Group 5 pulmonary hypertension|Group 5 pulmonary hypertension +C2882223|T047|AB|I27.29|ICD10CM|Other secondary pulmonary hypertension|Other secondary pulmonary hypertension +C2882223|T047|PT|I27.29|ICD10CM|Other secondary pulmonary hypertension|Other secondary pulmonary hypertension +C4509217|T047|ET|I27.29|ICD10CM|Pulmonary hypertension due to hematologic disorders|Pulmonary hypertension due to hematologic disorders +C4509218|T047|ET|I27.29|ICD10CM|Pulmonary hypertension due to metabolic disorders|Pulmonary hypertension due to metabolic disorders +C4509219|T047|ET|I27.29|ICD10CM|Pulmonary hypertension due to other systemic disorders|Pulmonary hypertension due to other systemic disorders +C4509216|T047|ET|I27.29|ICD10CM|Pulmonary hypertension with unclear multifactorial mechanisms|Pulmonary hypertension with unclear multifactorial mechanisms +C0348595|T047|PT|I27.8|ICD10|Other specified pulmonary heart diseases|Other specified pulmonary heart diseases +C0348595|T047|HT|I27.8|ICD10CM|Other specified pulmonary heart diseases|Other specified pulmonary heart diseases +C0348595|T047|AB|I27.8|ICD10CM|Other specified pulmonary heart diseases|Other specified pulmonary heart diseases +C1535090|T047|AB|I27.81|ICD10CM|Cor pulmonale (chronic)|Cor pulmonale (chronic) +C1535090|T047|PT|I27.81|ICD10CM|Cor pulmonale (chronic)|Cor pulmonale (chronic) +C0034072|T047|ET|I27.81|ICD10CM|Cor pulmonale NOS|Cor pulmonale NOS +C0856722|T046|PT|I27.82|ICD10CM|Chronic pulmonary embolism|Chronic pulmonary embolism +C0856722|T046|AB|I27.82|ICD10CM|Chronic pulmonary embolism|Chronic pulmonary embolism +C4509220|T047|ET|I27.83|ICD10CM|(Irreversible) Eisenmenger's disease|(Irreversible) Eisenmenger's disease +C0013743|T047|ET|I27.83|ICD10CM|Eisenmenger's complex|Eisenmenger's complex +C0013743|T047|AB|I27.83|ICD10CM|Eisenmenger's syndrome|Eisenmenger's syndrome +C0013743|T047|PT|I27.83|ICD10CM|Eisenmenger's syndrome|Eisenmenger's syndrome +C4509221|T047|ET|I27.83|ICD10CM|Pulmonary hypertension with right to left shunt related to congenital heart disease|Pulmonary hypertension with right to left shunt related to congenital heart disease +C0348595|T047|PT|I27.89|ICD10CM|Other specified pulmonary heart diseases|Other specified pulmonary heart diseases +C0348595|T047|AB|I27.89|ICD10CM|Other specified pulmonary heart diseases|Other specified pulmonary heart diseases +C0238074|T047|ET|I27.9|ICD10CM|Chronic cardiopulmonary disease|Chronic cardiopulmonary disease +C0034072|T047|PT|I27.9|ICD10CM|Pulmonary heart disease, unspecified|Pulmonary heart disease, unspecified +C0034072|T047|AB|I27.9|ICD10CM|Pulmonary heart disease, unspecified|Pulmonary heart disease, unspecified +C0034072|T047|PT|I27.9|ICD10|Pulmonary heart disease, unspecified|Pulmonary heart disease, unspecified +C0348596|T047|HT|I28|ICD10|Other diseases of pulmonary vessels|Other diseases of pulmonary vessels +C0348596|T047|HT|I28|ICD10CM|Other diseases of pulmonary vessels|Other diseases of pulmonary vessels +C0348596|T047|AB|I28|ICD10CM|Other diseases of pulmonary vessels|Other diseases of pulmonary vessels +C0155675|T047|PT|I28.0|ICD10|Arteriovenous fistula of pulmonary vessels|Arteriovenous fistula of pulmonary vessels +C0155675|T047|PT|I28.0|ICD10CM|Arteriovenous fistula of pulmonary vessels|Arteriovenous fistula of pulmonary vessels +C0155675|T047|AB|I28.0|ICD10CM|Arteriovenous fistula of pulmonary vessels|Arteriovenous fistula of pulmonary vessels +C0155676|T046|PT|I28.1|ICD10CM|Aneurysm of pulmonary artery|Aneurysm of pulmonary artery +C0155676|T046|AB|I28.1|ICD10CM|Aneurysm of pulmonary artery|Aneurysm of pulmonary artery +C0155676|T046|PT|I28.1|ICD10|Aneurysm of pulmonary artery|Aneurysm of pulmonary artery +C0348596|T047|AB|I28.8|ICD10CM|Other diseases of pulmonary vessels|Other diseases of pulmonary vessels +C0348596|T047|PT|I28.8|ICD10CM|Other diseases of pulmonary vessels|Other diseases of pulmonary vessels +C0494586|T047|PT|I28.8|ICD10|Other specified diseases of pulmonary vessels|Other specified diseases of pulmonary vessels +C0003861|T047|ET|I28.8|ICD10CM|Pulmonary arteritis|Pulmonary arteritis +C0264931|T047|ET|I28.8|ICD10CM|Pulmonary endarteritis|Pulmonary endarteritis +C0264926|T037|ET|I28.8|ICD10CM|Rupture of pulmonary vessels|Rupture of pulmonary vessels +C1405840|T047|ET|I28.8|ICD10CM|Stenosis of pulmonary vessels|Stenosis of pulmonary vessels +C0264927|T047|ET|I28.8|ICD10CM|Stricture of pulmonary vessels|Stricture of pulmonary vessels +C0178272|T047|PT|I28.9|ICD10CM|Disease of pulmonary vessels, unspecified|Disease of pulmonary vessels, unspecified +C0178272|T047|AB|I28.9|ICD10CM|Disease of pulmonary vessels, unspecified|Disease of pulmonary vessels, unspecified +C0178272|T047|PT|I28.9|ICD10|Disease of pulmonary vessels, unspecified|Disease of pulmonary vessels, unspecified +C0265131|T047|ET|I30|ICD10CM|acute mediastinopericarditis|acute mediastinopericarditis +C0265132|T047|ET|I30|ICD10CM|acute myopericarditis|acute myopericarditis +C0265135|T047|ET|I30|ICD10CM|acute pericardial effusion|acute pericardial effusion +C0155679|T047|HT|I30|ICD10|Acute pericarditis|Acute pericarditis +C0155679|T047|HT|I30|ICD10CM|Acute pericarditis|Acute pericarditis +C0155679|T047|AB|I30|ICD10CM|Acute pericarditis|Acute pericarditis +C0265133|T047|ET|I30|ICD10CM|acute pleuropericarditis|acute pleuropericarditis +C0265134|T047|ET|I30|ICD10CM|acute pneumopericarditis|acute pneumopericarditis +C0178273|T047|HT|I30-I52|ICD10CM|Other forms of heart disease (I30-I52)|Other forms of heart disease (I30-I52) +C0178273|T047|HT|I30-I52.9|ICD10|Other forms of heart disease|Other forms of heart disease +C0155681|T047|PT|I30.0|ICD10|Acute nonspecific idiopathic pericarditis|Acute nonspecific idiopathic pericarditis +C0155681|T047|PT|I30.0|ICD10CM|Acute nonspecific idiopathic pericarditis|Acute nonspecific idiopathic pericarditis +C0155681|T047|AB|I30.0|ICD10CM|Acute nonspecific idiopathic pericarditis|Acute nonspecific idiopathic pericarditis +C0265147|T047|PT|I30.1|ICD10|Infective pericarditis|Infective pericarditis +C0265147|T047|PT|I30.1|ICD10CM|Infective pericarditis|Infective pericarditis +C0265147|T047|AB|I30.1|ICD10CM|Infective pericarditis|Infective pericarditis +C1456502|T047|ET|I30.1|ICD10CM|Pneumococcal pericarditis|Pneumococcal pericarditis +C0265123|T047|ET|I30.1|ICD10CM|Pneumopyopericardium|Pneumopyopericardium +C0265149|T047|ET|I30.1|ICD10CM|Purulent pericarditis|Purulent pericarditis +C2882224|T047|ET|I30.1|ICD10CM|Pyopericarditis|Pyopericarditis +C0265124|T047|ET|I30.1|ICD10CM|Pyopericardium|Pyopericardium +C1405928|T047|ET|I30.1|ICD10CM|Pyopneumopericardium|Pyopneumopericardium +C1456503|T047|ET|I30.1|ICD10CM|Staphylococcal pericarditis|Staphylococcal pericarditis +C0340451|T047|ET|I30.1|ICD10CM|Streptococcal pericarditis|Streptococcal pericarditis +C0265149|T047|ET|I30.1|ICD10CM|Suppurative pericarditis|Suppurative pericarditis +C0276139|T047|ET|I30.1|ICD10CM|Viral pericarditis|Viral pericarditis +C0348597|T047|PT|I30.8|ICD10|Other forms of acute pericarditis|Other forms of acute pericarditis +C0348597|T047|PT|I30.8|ICD10CM|Other forms of acute pericarditis|Other forms of acute pericarditis +C0348597|T047|AB|I30.8|ICD10CM|Other forms of acute pericarditis|Other forms of acute pericarditis +C0155679|T047|PT|I30.9|ICD10CM|Acute pericarditis, unspecified|Acute pericarditis, unspecified +C0155679|T047|AB|I30.9|ICD10CM|Acute pericarditis, unspecified|Acute pericarditis, unspecified +C0155679|T047|PT|I30.9|ICD10|Acute pericarditis, unspecified|Acute pericarditis, unspecified +C0340442|T047|HT|I31|ICD10|Other diseases of pericardium|Other diseases of pericardium +C0340442|T047|HT|I31|ICD10CM|Other diseases of pericardium|Other diseases of pericardium +C0340442|T047|AB|I31|ICD10CM|Other diseases of pericardium|Other diseases of pericardium +C1386016|T047|ET|I31.0|ICD10CM|Accretio cordis|Accretio cordis +C0152452|T047|ET|I31.0|ICD10CM|Adherent pericardium|Adherent pericardium +C2882225|T047|ET|I31.0|ICD10CM|Adhesive mediastinopericarditis|Adhesive mediastinopericarditis +C0265146|T047|PT|I31.0|ICD10CM|Chronic adhesive pericarditis|Chronic adhesive pericarditis +C0265146|T047|AB|I31.0|ICD10CM|Chronic adhesive pericarditis|Chronic adhesive pericarditis +C0265146|T047|PT|I31.0|ICD10|Chronic adhesive pericarditis|Chronic adhesive pericarditis +C0265144|T047|PT|I31.1|ICD10|Chronic constrictive pericarditis|Chronic constrictive pericarditis +C0265144|T047|PT|I31.1|ICD10CM|Chronic constrictive pericarditis|Chronic constrictive pericarditis +C0265144|T047|AB|I31.1|ICD10CM|Chronic constrictive pericarditis|Chronic constrictive pericarditis +C0265144|T047|ET|I31.1|ICD10CM|Concretio cordis|Concretio cordis +C0240708|T047|ET|I31.1|ICD10CM|Pericardial calcification|Pericardial calcification +C0494588|T047|PT|I31.2|ICD10|Haemopericardium, not elsewhere classified|Haemopericardium, not elsewhere classified +C0494588|T047|PT|I31.2|ICD10CM|Hemopericardium, not elsewhere classified|Hemopericardium, not elsewhere classified +C0494588|T047|AB|I31.2|ICD10CM|Hemopericardium, not elsewhere classified|Hemopericardium, not elsewhere classified +C0494588|T047|PT|I31.2|ICD10AE|Hemopericardium, not elsewhere classified|Hemopericardium, not elsewhere classified +C0242426|T047|ET|I31.3|ICD10CM|Chylopericardium|Chylopericardium +C0349077|T046|PT|I31.3|ICD10CM|Pericardial effusion (noninflammatory)|Pericardial effusion (noninflammatory) +C0349077|T046|AB|I31.3|ICD10CM|Pericardial effusion (noninflammatory)|Pericardial effusion (noninflammatory) +C0349077|T046|PT|I31.3|ICD10|Pericardial effusion (noninflammatory)|Pericardial effusion (noninflammatory) +C0007177|T047|PT|I31.4|ICD10CM|Cardiac tamponade|Cardiac tamponade +C0007177|T047|AB|I31.4|ICD10CM|Cardiac tamponade|Cardiac tamponade +C1396724|T047|ET|I31.8|ICD10CM|Epicardial plaques|Epicardial plaques +C2882226|T046|ET|I31.8|ICD10CM|Focal pericardial adhesions|Focal pericardial adhesions +C0155694|T047|PT|I31.8|ICD10|Other specified diseases of pericardium|Other specified diseases of pericardium +C0155694|T047|PT|I31.8|ICD10CM|Other specified diseases of pericardium|Other specified diseases of pericardium +C0155694|T047|AB|I31.8|ICD10CM|Other specified diseases of pericardium|Other specified diseases of pericardium +C0265122|T047|PT|I31.9|ICD10CM|Disease of pericardium, unspecified|Disease of pericardium, unspecified +C0265122|T047|AB|I31.9|ICD10CM|Disease of pericardium, unspecified|Disease of pericardium, unspecified +C0265122|T047|PT|I31.9|ICD10|Disease of pericardium, unspecified|Disease of pericardium, unspecified +C0265143|T047|ET|I31.9|ICD10CM|Pericarditis (chronic) NOS|Pericarditis (chronic) NOS +C0694496|T047|PT|I32|ICD10CM|Pericarditis in diseases classified elsewhere|Pericarditis in diseases classified elsewhere +C0694496|T047|AB|I32|ICD10CM|Pericarditis in diseases classified elsewhere|Pericarditis in diseases classified elsewhere +C0694496|T047|HT|I32|ICD10|Pericarditis in diseases classified elsewhere|Pericarditis in diseases classified elsewhere +C0348598|T047|PT|I32.0|ICD10|Pericarditis in bacterial diseases classified elsewhere|Pericarditis in bacterial diseases classified elsewhere +C0348599|T047|PT|I32.1|ICD10|Pericarditis in other infectious and parasitic diseases classified elsewhere|Pericarditis in other infectious and parasitic diseases classified elsewhere +C0348600|T047|PT|I32.8|ICD10|Pericarditis in other diseases classified elsewhere|Pericarditis in other diseases classified elsewhere +C0155683|T047|HT|I33|ICD10|Acute and subacute endocarditis|Acute and subacute endocarditis +C0155683|T047|HT|I33|ICD10CM|Acute and subacute endocarditis|Acute and subacute endocarditis +C0155683|T047|AB|I33|ICD10CM|Acute and subacute endocarditis|Acute and subacute endocarditis +C0494589|T047|PT|I33.0|ICD10|Acute and subacute infective endocarditis|Acute and subacute infective endocarditis +C0494589|T047|PT|I33.0|ICD10CM|Acute and subacute infective endocarditis|Acute and subacute infective endocarditis +C0494589|T047|AB|I33.0|ICD10CM|Acute and subacute infective endocarditis|Acute and subacute infective endocarditis +C0553977|T047|ET|I33.0|ICD10CM|Bacterial endocarditis (acute) (subacute)|Bacterial endocarditis (acute) (subacute) +C2882227|T047|ET|I33.0|ICD10CM|Endocarditis lenta (acute) (subacute)|Endocarditis lenta (acute) (subacute) +C0494589|T047|ET|I33.0|ICD10CM|Infective endocarditis (acute) (subacute) NOS|Infective endocarditis (acute) (subacute) NOS +C2882228|T047|ET|I33.0|ICD10CM|Malignant endocarditis (acute) (subacute)|Malignant endocarditis (acute) (subacute) +C2882229|T047|ET|I33.0|ICD10CM|Purulent endocarditis (acute) (subacute)|Purulent endocarditis (acute) (subacute) +C2882230|T047|ET|I33.0|ICD10CM|Septic endocarditis (acute) (subacute)|Septic endocarditis (acute) (subacute) +C2882231|T047|ET|I33.0|ICD10CM|Ulcerative endocarditis (acute) (subacute)|Ulcerative endocarditis (acute) (subacute) +C2882232|T047|ET|I33.0|ICD10CM|Vegetative endocarditis (acute) (subacute)|Vegetative endocarditis (acute) (subacute) +C0155683|T047|AB|I33.9|ICD10CM|Acute and subacute endocarditis, unspecified|Acute and subacute endocarditis, unspecified +C0155683|T047|PT|I33.9|ICD10CM|Acute and subacute endocarditis, unspecified|Acute and subacute endocarditis, unspecified +C0375268|T047|ET|I33.9|ICD10CM|Acute endocarditis NOS|Acute endocarditis NOS +C0375268|T047|PT|I33.9|ICD10|Acute endocarditis, unspecified|Acute endocarditis, unspecified +C0264872|T047|ET|I33.9|ICD10CM|Acute myoendocarditis NOS|Acute myoendocarditis NOS +C0264874|T047|ET|I33.9|ICD10CM|Acute periendocarditis NOS|Acute periendocarditis NOS +C0264863|T047|ET|I33.9|ICD10CM|Subacute endocarditis NOS|Subacute endocarditis NOS +C0264873|T047|ET|I33.9|ICD10CM|Subacute myoendocarditis NOS|Subacute myoendocarditis NOS +C0264875|T047|ET|I33.9|ICD10CM|Subacute periendocarditis NOS|Subacute periendocarditis NOS +C0494590|T047|HT|I34|ICD10|Nonrheumatic mitral valve disorders|Nonrheumatic mitral valve disorders +C0494590|T047|AB|I34|ICD10CM|Nonrheumatic mitral valve disorders|Nonrheumatic mitral valve disorders +C0494590|T047|HT|I34|ICD10CM|Nonrheumatic mitral valve disorders|Nonrheumatic mitral valve disorders +C0026266|T046|PT|I34.0|ICD10|Mitral (valve) insufficiency|Mitral (valve) insufficiency +C2882233|T047|ET|I34.0|ICD10CM|Nonrheumatic mitral (valve) incompetence NOS|Nonrheumatic mitral (valve) incompetence NOS +C2882235|T047|AB|I34.0|ICD10CM|Nonrheumatic mitral (valve) insufficiency|Nonrheumatic mitral (valve) insufficiency +C2882235|T047|PT|I34.0|ICD10CM|Nonrheumatic mitral (valve) insufficiency|Nonrheumatic mitral (valve) insufficiency +C2882234|T047|ET|I34.0|ICD10CM|Nonrheumatic mitral (valve) regurgitation NOS|Nonrheumatic mitral (valve) regurgitation NOS +C2882236|T047|ET|I34.1|ICD10CM|Floppy nonrheumatic mitral valve syndrome|Floppy nonrheumatic mitral valve syndrome +C0026267|T047|PT|I34.1|ICD10|Mitral (valve) prolapse|Mitral (valve) prolapse +C2882237|T047|AB|I34.1|ICD10CM|Nonrheumatic mitral (valve) prolapse|Nonrheumatic mitral (valve) prolapse +C2882237|T047|PT|I34.1|ICD10CM|Nonrheumatic mitral (valve) prolapse|Nonrheumatic mitral (valve) prolapse +C0349075|T047|PT|I34.2|ICD10|Nonrheumatic mitral (valve) stenosis|Nonrheumatic mitral (valve) stenosis +C0349075|T047|PT|I34.2|ICD10CM|Nonrheumatic mitral (valve) stenosis|Nonrheumatic mitral (valve) stenosis +C0349075|T047|AB|I34.2|ICD10CM|Nonrheumatic mitral (valve) stenosis|Nonrheumatic mitral (valve) stenosis +C0348601|T047|PT|I34.8|ICD10CM|Other nonrheumatic mitral valve disorders|Other nonrheumatic mitral valve disorders +C0348601|T047|AB|I34.8|ICD10CM|Other nonrheumatic mitral valve disorders|Other nonrheumatic mitral valve disorders +C0348601|T047|PT|I34.8|ICD10|Other nonrheumatic mitral valve disorders|Other nonrheumatic mitral valve disorders +C0494590|T047|PT|I34.9|ICD10CM|Nonrheumatic mitral valve disorder, unspecified|Nonrheumatic mitral valve disorder, unspecified +C0494590|T047|AB|I34.9|ICD10CM|Nonrheumatic mitral valve disorder, unspecified|Nonrheumatic mitral valve disorder, unspecified +C0494590|T047|PT|I34.9|ICD10|Nonrheumatic mitral valve disorder, unspecified|Nonrheumatic mitral valve disorder, unspecified +C0003502|T047|HT|I35|ICD10|Nonrheumatic aortic valve disorders|Nonrheumatic aortic valve disorders +C0003502|T047|HT|I35|ICD10CM|Nonrheumatic aortic valve disorders|Nonrheumatic aortic valve disorders +C0003502|T047|AB|I35|ICD10CM|Nonrheumatic aortic valve disorders|Nonrheumatic aortic valve disorders +C0003507|T047|PT|I35.0|ICD10|Aortic (valve) stenosis|Aortic (valve) stenosis +C2882238|T047|AB|I35.0|ICD10CM|Nonrheumatic aortic (valve) stenosis|Nonrheumatic aortic (valve) stenosis +C2882238|T047|PT|I35.0|ICD10CM|Nonrheumatic aortic (valve) stenosis|Nonrheumatic aortic (valve) stenosis +C0003504|T047|PT|I35.1|ICD10|Aortic (valve) insufficiency|Aortic (valve) insufficiency +C2882239|T047|ET|I35.1|ICD10CM|Nonrheumatic aortic (valve) incompetence NOS|Nonrheumatic aortic (valve) incompetence NOS +C2882241|T047|AB|I35.1|ICD10CM|Nonrheumatic aortic (valve) insufficiency|Nonrheumatic aortic (valve) insufficiency +C2882241|T047|PT|I35.1|ICD10CM|Nonrheumatic aortic (valve) insufficiency|Nonrheumatic aortic (valve) insufficiency +C2882240|T047|ET|I35.1|ICD10CM|Nonrheumatic aortic (valve) regurgitation NOS|Nonrheumatic aortic (valve) regurgitation NOS +C0349073|T190|PT|I35.2|ICD10|Aortic (valve) stenosis with insufficiency|Aortic (valve) stenosis with insufficiency +C2882242|T047|AB|I35.2|ICD10CM|Nonrheumatic aortic (valve) stenosis with insufficiency|Nonrheumatic aortic (valve) stenosis with insufficiency +C2882242|T047|PT|I35.2|ICD10CM|Nonrheumatic aortic (valve) stenosis with insufficiency|Nonrheumatic aortic (valve) stenosis with insufficiency +C0348602|T047|PT|I35.8|ICD10|Other aortic valve disorders|Other aortic valve disorders +C2882243|T047|AB|I35.8|ICD10CM|Other nonrheumatic aortic valve disorders|Other nonrheumatic aortic valve disorders +C2882243|T047|PT|I35.8|ICD10CM|Other nonrheumatic aortic valve disorders|Other nonrheumatic aortic valve disorders +C1260873|T047|PT|I35.9|ICD10|Aortic valve disorder, unspecified|Aortic valve disorder, unspecified +C0003502|T047|AB|I35.9|ICD10CM|Nonrheumatic aortic valve disorder, unspecified|Nonrheumatic aortic valve disorder, unspecified +C0003502|T047|PT|I35.9|ICD10CM|Nonrheumatic aortic valve disorder, unspecified|Nonrheumatic aortic valve disorder, unspecified +C0701168|T047|HT|I36|ICD10|Nonrheumatic tricuspid valve disorders|Nonrheumatic tricuspid valve disorders +C0701168|T047|AB|I36|ICD10CM|Nonrheumatic tricuspid valve disorders|Nonrheumatic tricuspid valve disorders +C0701168|T047|HT|I36|ICD10CM|Nonrheumatic tricuspid valve disorders|Nonrheumatic tricuspid valve disorders +C0340383|T047|PT|I36.0|ICD10CM|Nonrheumatic tricuspid (valve) stenosis|Nonrheumatic tricuspid (valve) stenosis +C0340383|T047|AB|I36.0|ICD10CM|Nonrheumatic tricuspid (valve) stenosis|Nonrheumatic tricuspid (valve) stenosis +C0340383|T047|PT|I36.0|ICD10|Nonrheumatic tricuspid (valve) stenosis|Nonrheumatic tricuspid (valve) stenosis +C2882244|T047|ET|I36.1|ICD10CM|Nonrheumatic tricuspid (valve) incompetence|Nonrheumatic tricuspid (valve) incompetence +C0340389|T047|PT|I36.1|ICD10|Nonrheumatic tricuspid (valve) insufficiency|Nonrheumatic tricuspid (valve) insufficiency +C0340389|T047|PT|I36.1|ICD10CM|Nonrheumatic tricuspid (valve) insufficiency|Nonrheumatic tricuspid (valve) insufficiency +C0340389|T047|AB|I36.1|ICD10CM|Nonrheumatic tricuspid (valve) insufficiency|Nonrheumatic tricuspid (valve) insufficiency +C0340389|T047|ET|I36.1|ICD10CM|Nonrheumatic tricuspid (valve) regurgitation|Nonrheumatic tricuspid (valve) regurgitation +C0348869|T047|PT|I36.2|ICD10|Nonrheumatic tricuspid (valve) stenosis with insufficiency|Nonrheumatic tricuspid (valve) stenosis with insufficiency +C0348869|T047|PT|I36.2|ICD10CM|Nonrheumatic tricuspid (valve) stenosis with insufficiency|Nonrheumatic tricuspid (valve) stenosis with insufficiency +C0348869|T047|AB|I36.2|ICD10CM|Nonrheumatic tricuspid (valve) stenosis with insufficiency|Nonrheumatic tricuspid (valve) stenosis with insufficiency +C0348603|T047|PT|I36.8|ICD10CM|Other nonrheumatic tricuspid valve disorders|Other nonrheumatic tricuspid valve disorders +C0348603|T047|AB|I36.8|ICD10CM|Other nonrheumatic tricuspid valve disorders|Other nonrheumatic tricuspid valve disorders +C0348603|T047|PT|I36.8|ICD10|Other nonrheumatic tricuspid valve disorders|Other nonrheumatic tricuspid valve disorders +C0701168|T047|PT|I36.9|ICD10CM|Nonrheumatic tricuspid valve disorder, unspecified|Nonrheumatic tricuspid valve disorder, unspecified +C0701168|T047|AB|I36.9|ICD10CM|Nonrheumatic tricuspid valve disorder, unspecified|Nonrheumatic tricuspid valve disorder, unspecified +C0701168|T047|PT|I36.9|ICD10|Nonrheumatic tricuspid valve disorder, unspecified|Nonrheumatic tricuspid valve disorder, unspecified +C2143184|T047|AB|I37|ICD10CM|Nonrheumatic pulmonary valve disorders|Nonrheumatic pulmonary valve disorders +C2143184|T047|HT|I37|ICD10CM|Nonrheumatic pulmonary valve disorders|Nonrheumatic pulmonary valve disorders +C0034087|T047|HT|I37|ICD10|Pulmonary valve disorders|Pulmonary valve disorders +C0340395|T047|AB|I37.0|ICD10CM|Nonrheumatic pulmonary valve stenosis|Nonrheumatic pulmonary valve stenosis +C0340395|T047|PT|I37.0|ICD10CM|Nonrheumatic pulmonary valve stenosis|Nonrheumatic pulmonary valve stenosis +C0034089|T047|PT|I37.0|ICD10|Pulmonary valve stenosis|Pulmonary valve stenosis +C0034089|T190|PT|I37.0|ICD10|Pulmonary valve stenosis|Pulmonary valve stenosis +C2882247|T047|ET|I37.1|ICD10CM|Nonrheumatic pulmonary valve incompetence|Nonrheumatic pulmonary valve incompetence +C2882249|T047|AB|I37.1|ICD10CM|Nonrheumatic pulmonary valve insufficiency|Nonrheumatic pulmonary valve insufficiency +C2882249|T047|PT|I37.1|ICD10CM|Nonrheumatic pulmonary valve insufficiency|Nonrheumatic pulmonary valve insufficiency +C2882248|T047|ET|I37.1|ICD10CM|Nonrheumatic pulmonary valve regurgitation|Nonrheumatic pulmonary valve regurgitation +C0034088|T046|PT|I37.1|ICD10|Pulmonary valve insufficiency|Pulmonary valve insufficiency +C2882250|T047|AB|I37.2|ICD10CM|Nonrheumatic pulmonary valve stenosis with insufficiency|Nonrheumatic pulmonary valve stenosis with insufficiency +C2882250|T047|PT|I37.2|ICD10CM|Nonrheumatic pulmonary valve stenosis with insufficiency|Nonrheumatic pulmonary valve stenosis with insufficiency +C0349076|T047|PT|I37.2|ICD10|Pulmonary valve stenosis with insufficiency|Pulmonary valve stenosis with insufficiency +C0349076|T190|PT|I37.2|ICD10|Pulmonary valve stenosis with insufficiency|Pulmonary valve stenosis with insufficiency +C2882251|T047|AB|I37.8|ICD10CM|Other nonrheumatic pulmonary valve disorders|Other nonrheumatic pulmonary valve disorders +C2882251|T047|PT|I37.8|ICD10CM|Other nonrheumatic pulmonary valve disorders|Other nonrheumatic pulmonary valve disorders +C0348604|T047|PT|I37.8|ICD10|Other pulmonary valve disorders|Other pulmonary valve disorders +C2143184|T047|AB|I37.9|ICD10CM|Nonrheumatic pulmonary valve disorder, unspecified|Nonrheumatic pulmonary valve disorder, unspecified +C2143184|T047|PT|I37.9|ICD10CM|Nonrheumatic pulmonary valve disorder, unspecified|Nonrheumatic pulmonary valve disorder, unspecified +C0034087|T047|PT|I37.9|ICD10|Pulmonary valve disorder, unspecified|Pulmonary valve disorder, unspecified +C0264864|T047|ET|I38|ICD10CM|endocarditis (chronic) NOS|endocarditis (chronic) NOS +C0264865|T047|PT|I38|ICD10CM|Endocarditis, valve unspecified|Endocarditis, valve unspecified +C0264865|T047|AB|I38|ICD10CM|Endocarditis, valve unspecified|Endocarditis, valve unspecified +C0264865|T047|PT|I38|ICD10|Endocarditis, valve unspecified|Endocarditis, valve unspecified +C0042300|T046|ET|I38|ICD10CM|valvular incompetence NOS|valvular incompetence NOS +C0042300|T046|ET|I38|ICD10CM|valvular insufficiency NOS|valvular insufficiency NOS +C0042300|T046|ET|I38|ICD10CM|valvular regurgitation NOS|valvular regurgitation NOS +C1883524|T047|ET|I38|ICD10CM|valvular stenosis NOS|valvular stenosis NOS +C0264880|T047|ET|I38|ICD10CM|valvulitis (chronic) NOS|valvulitis (chronic) NOS +C0694497|T047|AB|I39|ICD10CM|Endocarditis and heart valve disord in dis classd elswhr|Endocarditis and heart valve disord in dis classd elswhr +C0694497|T047|PT|I39|ICD10CM|Endocarditis and heart valve disorders in diseases classified elsewhere|Endocarditis and heart valve disorders in diseases classified elsewhere +C0694497|T047|HT|I39|ICD10|Endocarditis and heart valve disorders in diseases classified elsewhere|Endocarditis and heart valve disorders in diseases classified elsewhere +C0348605|T047|PT|I39.0|ICD10|Mitral valve disorders in diseases classified elsewhere|Mitral valve disorders in diseases classified elsewhere +C0348606|T047|PT|I39.1|ICD10|Aortic valve disorders in diseases classified elsewhere|Aortic valve disorders in diseases classified elsewhere +C0348607|T047|PT|I39.2|ICD10|Tricuspid valve disorders in diseases classified elsewhere|Tricuspid valve disorders in diseases classified elsewhere +C0348608|T047|PT|I39.3|ICD10|Pulmonary valve disorders in diseases classified elsewhere|Pulmonary valve disorders in diseases classified elsewhere +C0348609|T047|PT|I39.4|ICD10|Multiple valve disorders in diseases classified elsewhere|Multiple valve disorders in diseases classified elsewhere +C0348610|T047|PT|I39.8|ICD10|Endocarditis, valve unspecified, in diseases classified elsewhere|Endocarditis, valve unspecified, in diseases classified elsewhere +C0155686|T047|HT|I40|ICD10|Acute myocarditis|Acute myocarditis +C0155686|T047|HT|I40|ICD10CM|Acute myocarditis|Acute myocarditis +C0155686|T047|AB|I40|ICD10CM|Acute myocarditis|Acute myocarditis +C3463914|T047|ET|I40|ICD10CM|subacute myocarditis|subacute myocarditis +C0729608|T047|PT|I40.0|ICD10CM|Infective myocarditis|Infective myocarditis +C0729608|T047|AB|I40.0|ICD10CM|Infective myocarditis|Infective myocarditis +C0729608|T047|PT|I40.0|ICD10|Infective myocarditis|Infective myocarditis +C0155690|T047|ET|I40.0|ICD10CM|Septic myocarditis|Septic myocarditis +C0155689|T047|ET|I40.1|ICD10CM|Fiedler's myocarditis|Fiedler's myocarditis +C0264856|T047|ET|I40.1|ICD10CM|Giant cell myocarditis|Giant cell myocarditis +C0155689|T047|ET|I40.1|ICD10CM|Idiopathic myocarditis|Idiopathic myocarditis +C0155689|T047|PT|I40.1|ICD10CM|Isolated myocarditis|Isolated myocarditis +C0155689|T047|AB|I40.1|ICD10CM|Isolated myocarditis|Isolated myocarditis +C0155689|T047|PT|I40.1|ICD10|Isolated myocarditis|Isolated myocarditis +C0155692|T047|PT|I40.8|ICD10|Other acute myocarditis|Other acute myocarditis +C0155692|T047|PT|I40.8|ICD10CM|Other acute myocarditis|Other acute myocarditis +C0155692|T047|AB|I40.8|ICD10CM|Other acute myocarditis|Other acute myocarditis +C0155686|T047|PT|I40.9|ICD10CM|Acute myocarditis, unspecified|Acute myocarditis, unspecified +C0155686|T047|AB|I40.9|ICD10CM|Acute myocarditis, unspecified|Acute myocarditis, unspecified +C0155686|T047|PT|I40.9|ICD10|Acute myocarditis, unspecified|Acute myocarditis, unspecified +C0694498|T047|HT|I41|ICD10|Myocarditis in diseases classified elsewhere|Myocarditis in diseases classified elsewhere +C0694498|T047|PT|I41|ICD10CM|Myocarditis in diseases classified elsewhere|Myocarditis in diseases classified elsewhere +C0694498|T047|AB|I41|ICD10CM|Myocarditis in diseases classified elsewhere|Myocarditis in diseases classified elsewhere +C0348611|T047|PT|I41.0|ICD10|Myocarditis in bacterial diseases classified elsewhere|Myocarditis in bacterial diseases classified elsewhere +C0348612|T047|PT|I41.1|ICD10|Myocarditis in viral diseases classified elsewhere|Myocarditis in viral diseases classified elsewhere +C0348613|T047|PT|I41.2|ICD10|Myocarditis in other infectious and parasitic diseases classified elsewhere|Myocarditis in other infectious and parasitic diseases classified elsewhere +C0348614|T047|PT|I41.8|ICD10|Myocarditis in other diseases classified elsewhere|Myocarditis in other diseases classified elsewhere +C0878544|T047|HT|I42|ICD10|Cardiomyopathy|Cardiomyopathy +C0878544|T047|HT|I42|ICD10CM|Cardiomyopathy|Cardiomyopathy +C0878544|T047|AB|I42|ICD10CM|Cardiomyopathy|Cardiomyopathy +C0878544|T047|ET|I42|ICD10CM|myocardiopathy|myocardiopathy +C0007193|T047|ET|I42.0|ICD10CM|Congestive cardiomyopathy|Congestive cardiomyopathy +C0007193|T047|PT|I42.0|ICD10CM|Dilated cardiomyopathy|Dilated cardiomyopathy +C0007193|T047|AB|I42.0|ICD10CM|Dilated cardiomyopathy|Dilated cardiomyopathy +C0007193|T047|PT|I42.0|ICD10|Dilated cardiomyopathy|Dilated cardiomyopathy +C0700053|T019|ET|I42.1|ICD10CM|Hypertrophic subaortic stenosis (idiopathic)|Hypertrophic subaortic stenosis (idiopathic) +C4551472|T047|PT|I42.1|ICD10|Obstructive hypertrophic cardiomyopathy|Obstructive hypertrophic cardiomyopathy +C4551472|T047|PT|I42.1|ICD10CM|Obstructive hypertrophic cardiomyopathy|Obstructive hypertrophic cardiomyopathy +C4551472|T047|AB|I42.1|ICD10CM|Obstructive hypertrophic cardiomyopathy|Obstructive hypertrophic cardiomyopathy +C0340425|T047|ET|I42.2|ICD10CM|Nonobstructive hypertrophic cardiomyopathy|Nonobstructive hypertrophic cardiomyopathy +C0348615|T047|PT|I42.2|ICD10|Other hypertrophic cardiomyopathy|Other hypertrophic cardiomyopathy +C0348615|T047|PT|I42.2|ICD10CM|Other hypertrophic cardiomyopathy|Other hypertrophic cardiomyopathy +C0348615|T047|AB|I42.2|ICD10CM|Other hypertrophic cardiomyopathy|Other hypertrophic cardiomyopathy +C0264834|T047|PT|I42.3|ICD10CM|Endomyocardial (eosinophilic) disease|Endomyocardial (eosinophilic) disease +C0264834|T047|AB|I42.3|ICD10CM|Endomyocardial (eosinophilic) disease|Endomyocardial (eosinophilic) disease +C0264834|T047|PT|I42.3|ICD10|Endomyocardial (eosinophilic) disease|Endomyocardial (eosinophilic) disease +C2882252|T047|ET|I42.3|ICD10CM|Endomyocardial (tropical) fibrosis|Endomyocardial (tropical) fibrosis +C0264834|T047|ET|I42.3|ICD10CM|Löffler's endocarditis|Löffler's endocarditis +C1391997|T019|ET|I42.4|ICD10CM|Congenital cardiomyopathy|Congenital cardiomyopathy +C1391997|T047|ET|I42.4|ICD10CM|Congenital cardiomyopathy|Congenital cardiomyopathy +C0014117|T047|ET|I42.4|ICD10CM|Elastomyofibrosis|Elastomyofibrosis +C0014117|T047|PT|I42.4|ICD10CM|Endocardial fibroelastosis|Endocardial fibroelastosis +C0014117|T047|AB|I42.4|ICD10CM|Endocardial fibroelastosis|Endocardial fibroelastosis +C0014117|T047|PT|I42.4|ICD10|Endocardial fibroelastosis|Endocardial fibroelastosis +C0007196|T047|ET|I42.5|ICD10CM|Constrictive cardiomyopathy NOS|Constrictive cardiomyopathy NOS +C0348616|T047|PT|I42.5|ICD10CM|Other restrictive cardiomyopathy|Other restrictive cardiomyopathy +C0348616|T047|AB|I42.5|ICD10CM|Other restrictive cardiomyopathy|Other restrictive cardiomyopathy +C0348616|T047|PT|I42.5|ICD10|Other restrictive cardiomyopathy|Other restrictive cardiomyopathy +C0007192|T047|PT|I42.6|ICD10|Alcoholic cardiomyopathy|Alcoholic cardiomyopathy +C0007192|T047|PT|I42.6|ICD10CM|Alcoholic cardiomyopathy|Alcoholic cardiomyopathy +C0007192|T047|AB|I42.6|ICD10CM|Alcoholic cardiomyopathy|Alcoholic cardiomyopathy +C2882253|T047|PT|I42.7|ICD10CM|Cardiomyopathy due to drug and external agent|Cardiomyopathy due to drug and external agent +C2882253|T047|AB|I42.7|ICD10CM|Cardiomyopathy due to drug and external agent|Cardiomyopathy due to drug and external agent +C0340437|T047|PT|I42.7|ICD10|Cardiomyopathy due to drugs and other external agents|Cardiomyopathy due to drugs and other external agents +C0348617|T047|PT|I42.8|ICD10|Other cardiomyopathies|Other cardiomyopathies +C0348617|T047|PT|I42.8|ICD10CM|Other cardiomyopathies|Other cardiomyopathies +C0348617|T047|AB|I42.8|ICD10CM|Other cardiomyopathies|Other cardiomyopathies +C2882254|T047|ET|I42.9|ICD10CM|Cardiomyopathy (primary) (secondary) NOS|Cardiomyopathy (primary) (secondary) NOS +C0878544|T047|PT|I42.9|ICD10|Cardiomyopathy, unspecified|Cardiomyopathy, unspecified +C0878544|T047|PT|I42.9|ICD10CM|Cardiomyopathy, unspecified|Cardiomyopathy, unspecified +C0878544|T047|AB|I42.9|ICD10CM|Cardiomyopathy, unspecified|Cardiomyopathy, unspecified +C0694499|T047|HT|I43|ICD10|Cardiomyopathy in diseases classified elsewhere|Cardiomyopathy in diseases classified elsewhere +C0694499|T047|PT|I43|ICD10CM|Cardiomyopathy in diseases classified elsewhere|Cardiomyopathy in diseases classified elsewhere +C0694499|T047|AB|I43|ICD10CM|Cardiomyopathy in diseases classified elsewhere|Cardiomyopathy in diseases classified elsewhere +C0348618|T047|PT|I43.0|ICD10|Cardiomyopathy in infectious and parasitic diseases classified elsewhere|Cardiomyopathy in infectious and parasitic diseases classified elsewhere +C0494593|T047|PT|I43.1|ICD10|Cardiomyopathy in metabolic diseases|Cardiomyopathy in metabolic diseases +C0494594|T047|PT|I43.2|ICD10|Cardiomyopathy in nutritional diseases|Cardiomyopathy in nutritional diseases +C0155699|T047|PT|I43.8|ICD10|Cardiomyopathy in other diseases classified elsewhere|Cardiomyopathy in other diseases classified elsewhere +C0494595|T046|HT|I44|ICD10|Atrioventricular and left bundle-branch block|Atrioventricular and left bundle-branch block +C0494595|T046|AB|I44|ICD10CM|Atrioventricular and left bundle-branch block|Atrioventricular and left bundle-branch block +C0494595|T046|HT|I44|ICD10CM|Atrioventricular and left bundle-branch block|Atrioventricular and left bundle-branch block +C0085614|T047|PT|I44.0|ICD10|Atrioventricular block, first degree|Atrioventricular block, first degree +C0085614|T047|PT|I44.0|ICD10CM|Atrioventricular block, first degree|Atrioventricular block, first degree +C0085614|T047|AB|I44.0|ICD10CM|Atrioventricular block, first degree|Atrioventricular block, first degree +C0264906|T047|PT|I44.1|ICD10CM|Atrioventricular block, second degree|Atrioventricular block, second degree +C0264906|T047|AB|I44.1|ICD10CM|Atrioventricular block, second degree|Atrioventricular block, second degree +C0264906|T047|PT|I44.1|ICD10|Atrioventricular block, second degree|Atrioventricular block, second degree +C1389015|T047|ET|I44.1|ICD10CM|Atrioventricular block, type I and II|Atrioventricular block, type I and II +C2882255|T047|ET|I44.1|ICD10CM|Möbitz block, type I and II|Möbitz block, type I and II +C2882256|T047|ET|I44.1|ICD10CM|Second degree block, type I and II|Second degree block, type I and II +C0264907|T047|ET|I44.1|ICD10CM|Wenckebach's block|Wenckebach's block +C0151517|T047|PT|I44.2|ICD10CM|Atrioventricular block, complete|Atrioventricular block, complete +C0151517|T047|AB|I44.2|ICD10CM|Atrioventricular block, complete|Atrioventricular block, complete +C0151517|T047|PT|I44.2|ICD10|Atrioventricular block, complete|Atrioventricular block, complete +C0151517|T047|ET|I44.2|ICD10CM|Complete heart block NOS|Complete heart block NOS +C0151517|T047|ET|I44.2|ICD10CM|Third degree block|Third degree block +C0004245|T047|ET|I44.3|ICD10CM|Atrioventricular block NOS|Atrioventricular block NOS +C0348621|T046|HT|I44.3|ICD10CM|Other and unspecified atrioventricular block|Other and unspecified atrioventricular block +C0348621|T046|AB|I44.3|ICD10CM|Other and unspecified atrioventricular block|Other and unspecified atrioventricular block +C0348621|T046|PT|I44.3|ICD10|Other and unspecified atrioventricular block|Other and unspecified atrioventricular block +C0004245|T047|AB|I44.30|ICD10CM|Unspecified atrioventricular block|Unspecified atrioventricular block +C0004245|T047|PT|I44.30|ICD10CM|Unspecified atrioventricular block|Unspecified atrioventricular block +C2882257|T046|AB|I44.39|ICD10CM|Other atrioventricular block|Other atrioventricular block +C2882257|T046|PT|I44.39|ICD10CM|Other atrioventricular block|Other atrioventricular block +C0264912|T047|PT|I44.4|ICD10|Left anterior fascicular block|Left anterior fascicular block +C0264912|T047|PT|I44.4|ICD10CM|Left anterior fascicular block|Left anterior fascicular block +C0264912|T047|AB|I44.4|ICD10CM|Left anterior fascicular block|Left anterior fascicular block +C0264913|T047|PT|I44.5|ICD10CM|Left posterior fascicular block|Left posterior fascicular block +C0264913|T047|AB|I44.5|ICD10CM|Left posterior fascicular block|Left posterior fascicular block +C0264913|T047|PT|I44.5|ICD10|Left posterior fascicular block|Left posterior fascicular block +C0348622|T046|PT|I44.6|ICD10|Other and unspecified fascicular block|Other and unspecified fascicular block +C0348622|T046|HT|I44.6|ICD10CM|Other and unspecified fascicular block|Other and unspecified fascicular block +C0348622|T046|AB|I44.6|ICD10CM|Other and unspecified fascicular block|Other and unspecified fascicular block +C0155702|T047|ET|I44.60|ICD10CM|Left bundle-branch hemiblock NOS|Left bundle-branch hemiblock NOS +C2882258|T046|AB|I44.60|ICD10CM|Unspecified fascicular block|Unspecified fascicular block +C2882258|T046|PT|I44.60|ICD10CM|Unspecified fascicular block|Unspecified fascicular block +C2882259|T046|AB|I44.69|ICD10CM|Other fascicular block|Other fascicular block +C2882259|T046|PT|I44.69|ICD10CM|Other fascicular block|Other fascicular block +C0023211|T047|PT|I44.7|ICD10CM|Left bundle-branch block, unspecified|Left bundle-branch block, unspecified +C0023211|T047|AB|I44.7|ICD10CM|Left bundle-branch block, unspecified|Left bundle-branch block, unspecified +C0023211|T047|PT|I44.7|ICD10|Left bundle-branch block, unspecified|Left bundle-branch block, unspecified +C0340494|T047|HT|I45|ICD10|Other conduction disorders|Other conduction disorders +C0340494|T047|AB|I45|ICD10CM|Other conduction disorders|Other conduction disorders +C0340494|T047|HT|I45|ICD10CM|Other conduction disorders|Other conduction disorders +C0085615|T047|PT|I45.0|ICD10|Right fascicular block|Right fascicular block +C0085615|T047|PT|I45.0|ICD10CM|Right fascicular block|Right fascicular block +C0085615|T047|AB|I45.0|ICD10CM|Right fascicular block|Right fascicular block +C0348623|T046|PT|I45.1|ICD10|Other and unspecified right bundle-branch block|Other and unspecified right bundle-branch block +C0348623|T046|HT|I45.1|ICD10CM|Other and unspecified right bundle-branch block|Other and unspecified right bundle-branch block +C0348623|T046|AB|I45.1|ICD10CM|Other and unspecified right bundle-branch block|Other and unspecified right bundle-branch block +C0085615|T047|ET|I45.10|ICD10CM|Right bundle-branch block NOS|Right bundle-branch block NOS +C2882260|T046|AB|I45.10|ICD10CM|Unspecified right bundle-branch block|Unspecified right bundle-branch block +C2882260|T046|PT|I45.10|ICD10CM|Unspecified right bundle-branch block|Unspecified right bundle-branch block +C2882261|T046|AB|I45.19|ICD10CM|Other right bundle-branch block|Other right bundle-branch block +C2882261|T046|PT|I45.19|ICD10CM|Other right bundle-branch block|Other right bundle-branch block +C0264914|T047|PT|I45.2|ICD10CM|Bifascicular block|Bifascicular block +C0264914|T047|AB|I45.2|ICD10CM|Bifascicular block|Bifascicular block +C0264914|T047|PT|I45.2|ICD10|Bifascicular block|Bifascicular block +C0155707|T047|PT|I45.3|ICD10|Trifascicular block|Trifascicular block +C0155707|T047|PT|I45.3|ICD10CM|Trifascicular block|Trifascicular block +C0155707|T047|AB|I45.3|ICD10CM|Trifascicular block|Trifascicular block +C0006384|T047|ET|I45.4|ICD10CM|Bundle-branch block NOS|Bundle-branch block NOS +C0494597|T046|PT|I45.4|ICD10CM|Nonspecific intraventricular block|Nonspecific intraventricular block +C0494597|T046|AB|I45.4|ICD10CM|Nonspecific intraventricular block|Nonspecific intraventricular block +C0494597|T046|PT|I45.4|ICD10|Nonspecific intraventricular block|Nonspecific intraventricular block +C0348624|T046|PT|I45.5|ICD10|Other specified heart block|Other specified heart block +C0348624|T046|PT|I45.5|ICD10CM|Other specified heart block|Other specified heart block +C0348624|T046|AB|I45.5|ICD10CM|Other specified heart block|Other specified heart block +C0037188|T047|ET|I45.5|ICD10CM|Sinoatrial block|Sinoatrial block +C0037188|T047|ET|I45.5|ICD10CM|Sinoauricular block|Sinoauricular block +C0264897|T046|ET|I45.6|ICD10CM|Accelerated atrioventricular conduction|Accelerated atrioventricular conduction +C0264897|T046|ET|I45.6|ICD10CM|Accessory atrioventricular conduction|Accessory atrioventricular conduction +C0392470|T047|ET|I45.6|ICD10CM|Anomalous atrioventricular excitation|Anomalous atrioventricular excitation +C0024054|T047|ET|I45.6|ICD10CM|Lown-Ganong-Levine syndrome|Lown-Ganong-Levine syndrome +C0264897|T046|ET|I45.6|ICD10CM|Pre-excitation atrioventricular conduction|Pre-excitation atrioventricular conduction +C0032915|T047|PT|I45.6|ICD10|Pre-excitation syndrome|Pre-excitation syndrome +C0032915|T047|PT|I45.6|ICD10CM|Pre-excitation syndrome|Pre-excitation syndrome +C0032915|T047|AB|I45.6|ICD10CM|Pre-excitation syndrome|Pre-excitation syndrome +C0043202|T047|ET|I45.6|ICD10CM|Wolff-Parkinson-White syndrome|Wolff-Parkinson-White syndrome +C0155708|T046|HT|I45.8|ICD10CM|Other specified conduction disorders|Other specified conduction disorders +C0155708|T046|AB|I45.8|ICD10CM|Other specified conduction disorders|Other specified conduction disorders +C0155708|T046|PT|I45.8|ICD10|Other specified conduction disorders|Other specified conduction disorders +C0023976|T047|PT|I45.81|ICD10CM|Long QT syndrome|Long QT syndrome +C0023976|T047|AB|I45.81|ICD10CM|Long QT syndrome|Long QT syndrome +C2882262|T046|ET|I45.89|ICD10CM|Atrioventricular [AV] dissociation|Atrioventricular [AV] dissociation +C0004331|T046|ET|I45.89|ICD10CM|Interference dissociation|Interference dissociation +C0004331|T046|ET|I45.89|ICD10CM|Isorhythmic dissociation|Isorhythmic dissociation +C0264895|T047|ET|I45.89|ICD10CM|Nonparoxysmal AV nodal tachycardia|Nonparoxysmal AV nodal tachycardia +C0155708|T046|PT|I45.89|ICD10CM|Other specified conduction disorders|Other specified conduction disorders +C0155708|T046|AB|I45.89|ICD10CM|Other specified conduction disorders|Other specified conduction disorders +C0264886|T047|PT|I45.9|ICD10CM|Conduction disorder, unspecified|Conduction disorder, unspecified +C0264886|T047|AB|I45.9|ICD10CM|Conduction disorder, unspecified|Conduction disorder, unspecified +C0264886|T047|PT|I45.9|ICD10|Conduction disorder, unspecified|Conduction disorder, unspecified +C0018794|T047|ET|I45.9|ICD10CM|Heart block NOS|Heart block NOS +C0001396|T047|ET|I45.9|ICD10CM|Stokes-Adams syndrome|Stokes-Adams syndrome +C0018790|T047|HT|I46|ICD10CM|Cardiac arrest|Cardiac arrest +C0018790|T047|AB|I46|ICD10CM|Cardiac arrest|Cardiac arrest +C0018790|T047|HT|I46|ICD10|Cardiac arrest|Cardiac arrest +C0340514|T047|PT|I46.0|ICD10|Cardiac arrest with successful resuscitation|Cardiac arrest with successful resuscitation +C0348884|T033|PT|I46.1|ICD10|Sudden cardiac death, so described|Sudden cardiac death, so described +C2882263|T046|PT|I46.2|ICD10CM|Cardiac arrest due to underlying cardiac condition|Cardiac arrest due to underlying cardiac condition +C2882263|T046|AB|I46.2|ICD10CM|Cardiac arrest due to underlying cardiac condition|Cardiac arrest due to underlying cardiac condition +C2882264|T046|AB|I46.8|ICD10CM|Cardiac arrest due to other underlying condition|Cardiac arrest due to other underlying condition +C2882264|T046|PT|I46.8|ICD10CM|Cardiac arrest due to other underlying condition|Cardiac arrest due to other underlying condition +C2882265|T046|AB|I46.9|ICD10CM|Cardiac arrest, cause unspecified|Cardiac arrest, cause unspecified +C2882265|T046|PT|I46.9|ICD10CM|Cardiac arrest, cause unspecified|Cardiac arrest, cause unspecified +C0018790|T047|PT|I46.9|ICD10|Cardiac arrest, unspecified|Cardiac arrest, unspecified +C0039236|T047|HT|I47|ICD10|Paroxysmal tachycardia|Paroxysmal tachycardia +C0039236|T047|HT|I47|ICD10CM|Paroxysmal tachycardia|Paroxysmal tachycardia +C0039236|T047|AB|I47|ICD10CM|Paroxysmal tachycardia|Paroxysmal tachycardia +C0349069|T046|PT|I47.0|ICD10CM|Re-entry ventricular arrhythmia|Re-entry ventricular arrhythmia +C0349069|T046|AB|I47.0|ICD10CM|Re-entry ventricular arrhythmia|Re-entry ventricular arrhythmia +C0349069|T046|PT|I47.0|ICD10|Re-entry ventricular arrhythmia|Re-entry ventricular arrhythmia +C0030587|T033|ET|I47.1|ICD10CM|Atrial (paroxysmal) tachycardia|Atrial (paroxysmal) tachycardia +C1406795|T047|ET|I47.1|ICD10CM|Atrioventricular [AV] (paroxysmal) tachycardia|Atrioventricular [AV] (paroxysmal) tachycardia +C3264368|T033|ET|I47.1|ICD10CM|Atrioventricular re-entrant (nodal) tachycardia [AVNRT] [AVRT]|Atrioventricular re-entrant (nodal) tachycardia [AVNRT] [AVRT] +C0546961|T047|ET|I47.1|ICD10CM|Junctional (paroxysmal) tachycardia|Junctional (paroxysmal) tachycardia +C0546960|T047|ET|I47.1|ICD10CM|Nodal (paroxysmal) tachycardia|Nodal (paroxysmal) tachycardia +C0039240|T047|PT|I47.1|ICD10|Supraventricular tachycardia|Supraventricular tachycardia +C0039240|T047|PT|I47.1|ICD10CM|Supraventricular tachycardia|Supraventricular tachycardia +C0039240|T047|AB|I47.1|ICD10CM|Supraventricular tachycardia|Supraventricular tachycardia +C0042514|T047|PT|I47.2|ICD10CM|Ventricular tachycardia|Ventricular tachycardia +C0042514|T047|AB|I47.2|ICD10CM|Ventricular tachycardia|Ventricular tachycardia +C0042514|T047|PT|I47.2|ICD10|Ventricular tachycardia|Ventricular tachycardia +C0039236|T047|ET|I47.9|ICD10CM|Bouveret (-Hoffman) syndrome|Bouveret (-Hoffman) syndrome +C0039236|T047|PT|I47.9|ICD10CM|Paroxysmal tachycardia, unspecified|Paroxysmal tachycardia, unspecified +C0039236|T047|AB|I47.9|ICD10CM|Paroxysmal tachycardia, unspecified|Paroxysmal tachycardia, unspecified +C0039236|T047|PT|I47.9|ICD10|Paroxysmal tachycardia, unspecified|Paroxysmal tachycardia, unspecified +C0155709|T046|PT|I48|ICD10|Atrial fibrillation and flutter|Atrial fibrillation and flutter +C0155709|T046|HT|I48|ICD10CM|Atrial fibrillation and flutter|Atrial fibrillation and flutter +C0155709|T046|AB|I48|ICD10CM|Atrial fibrillation and flutter|Atrial fibrillation and flutter +C0235480|T047|PT|I48.0|ICD10CM|Paroxysmal atrial fibrillation|Paroxysmal atrial fibrillation +C0235480|T047|AB|I48.0|ICD10CM|Paroxysmal atrial fibrillation|Paroxysmal atrial fibrillation +C2585653|T046|AB|I48.1|ICD10CM|Persistent atrial fibrillation|Persistent atrial fibrillation +C2585653|T046|HT|I48.1|ICD10CM|Persistent atrial fibrillation|Persistent atrial fibrillation +C3873617|T046|PT|I48.11|ICD10CM|Longstanding persistent atrial fibrillation|Longstanding persistent atrial fibrillation +C3873617|T046|AB|I48.11|ICD10CM|Longstanding persistent atrial fibrillation|Longstanding persistent atrial fibrillation +C5141128|T046|ET|I48.19|ICD10CM|Chronic persistent atrial fibrillation|Chronic persistent atrial fibrillation +C5140810|T046|AB|I48.19|ICD10CM|Other persistent atrial fibrillation|Other persistent atrial fibrillation +C5140810|T046|PT|I48.19|ICD10CM|Other persistent atrial fibrillation|Other persistent atrial fibrillation +C5140810|T046|ET|I48.19|ICD10CM|Persistent atrial fibrillation, NOS|Persistent atrial fibrillation, NOS +C0694539|T047|AB|I48.2|ICD10CM|Chronic atrial fibrillation|Chronic atrial fibrillation +C0694539|T047|HT|I48.2|ICD10CM|Chronic atrial fibrillation|Chronic atrial fibrillation +C0694539|T047|AB|I48.20|ICD10CM|Chronic atrial fibrillation, unspecified|Chronic atrial fibrillation, unspecified +C0694539|T047|PT|I48.20|ICD10CM|Chronic atrial fibrillation, unspecified|Chronic atrial fibrillation, unspecified +C2586056|T046|AB|I48.21|ICD10CM|Permanent atrial fibrillation|Permanent atrial fibrillation +C2586056|T046|PT|I48.21|ICD10CM|Permanent atrial fibrillation|Permanent atrial fibrillation +C3264369|T046|ET|I48.3|ICD10CM|Type I atrial flutter|Type I atrial flutter +C3264370|T046|PT|I48.3|ICD10CM|Typical atrial flutter|Typical atrial flutter +C3264370|T046|AB|I48.3|ICD10CM|Typical atrial flutter|Typical atrial flutter +C3264372|T033|AB|I48.4|ICD10CM|Atypical atrial flutter|Atypical atrial flutter +C3264372|T033|PT|I48.4|ICD10CM|Atypical atrial flutter|Atypical atrial flutter +C3264372|T033|ET|I48.4|ICD10CM|Type II atrial flutter|Type II atrial flutter +C3264373|T046|AB|I48.9|ICD10CM|Unspecified atrial fibrillation and atrial flutter|Unspecified atrial fibrillation and atrial flutter +C3264373|T046|HT|I48.9|ICD10CM|Unspecified atrial fibrillation and atrial flutter|Unspecified atrial fibrillation and atrial flutter +C3264374|T046|AB|I48.91|ICD10CM|Unspecified atrial fibrillation|Unspecified atrial fibrillation +C3264374|T046|PT|I48.91|ICD10CM|Unspecified atrial fibrillation|Unspecified atrial fibrillation +C3264375|T046|AB|I48.92|ICD10CM|Unspecified atrial flutter|Unspecified atrial flutter +C3264375|T046|PT|I48.92|ICD10CM|Unspecified atrial flutter|Unspecified atrial flutter +C0494598|T046|AB|I49|ICD10CM|Other cardiac arrhythmias|Other cardiac arrhythmias +C0494598|T046|HT|I49|ICD10CM|Other cardiac arrhythmias|Other cardiac arrhythmias +C0494598|T046|HT|I49|ICD10|Other cardiac arrhythmias|Other cardiac arrhythmias +C0155710|T046|HT|I49.0|ICD10CM|Ventricular fibrillation and flutter|Ventricular fibrillation and flutter +C0155710|T046|AB|I49.0|ICD10CM|Ventricular fibrillation and flutter|Ventricular fibrillation and flutter +C0155710|T046|PT|I49.0|ICD10|Ventricular fibrillation and flutter|Ventricular fibrillation and flutter +C0042510|T047|PT|I49.01|ICD10CM|Ventricular fibrillation|Ventricular fibrillation +C0042510|T047|AB|I49.01|ICD10CM|Ventricular fibrillation|Ventricular fibrillation +C0152173|T047|PT|I49.02|ICD10CM|Ventricular flutter|Ventricular flutter +C0152173|T047|AB|I49.02|ICD10CM|Ventricular flutter|Ventricular flutter +C0033036|T047|ET|I49.1|ICD10CM|Atrial premature beats|Atrial premature beats +C0033036|T047|PT|I49.1|ICD10CM|Atrial premature depolarization|Atrial premature depolarization +C0033036|T047|AB|I49.1|ICD10CM|Atrial premature depolarization|Atrial premature depolarization +C0033036|T047|PT|I49.1|ICD10|Atrial premature depolarization|Atrial premature depolarization +C0428981|T046|PT|I49.2|ICD10CM|Junctional premature depolarization|Junctional premature depolarization +C0428981|T046|AB|I49.2|ICD10CM|Junctional premature depolarization|Junctional premature depolarization +C0428981|T046|PT|I49.2|ICD10|Junctional premature depolarization|Junctional premature depolarization +C0151636|T047|PT|I49.3|ICD10CM|Ventricular premature depolarization|Ventricular premature depolarization +C0151636|T047|AB|I49.3|ICD10CM|Ventricular premature depolarization|Ventricular premature depolarization +C0151636|T047|PT|I49.3|ICD10|Ventricular premature depolarization|Ventricular premature depolarization +C0348625|T046|PT|I49.4|ICD10|Other and unspecified premature depolarization|Other and unspecified premature depolarization +C0348625|T046|HT|I49.4|ICD10CM|Other and unspecified premature depolarization|Other and unspecified premature depolarization +C0348625|T046|AB|I49.4|ICD10CM|Other and unspecified premature depolarization|Other and unspecified premature depolarization +C0340464|T047|ET|I49.40|ICD10CM|Premature beats NOS|Premature beats NOS +C2882266|T046|AB|I49.40|ICD10CM|Unspecified premature depolarization|Unspecified premature depolarization +C2882266|T046|PT|I49.40|ICD10CM|Unspecified premature depolarization|Unspecified premature depolarization +C0340464|T047|ET|I49.49|ICD10CM|Ectopic beats|Ectopic beats +C0340464|T047|ET|I49.49|ICD10CM|Extrasystoles|Extrasystoles +C0340464|T047|ET|I49.49|ICD10CM|Extrasystolic arrhythmias|Extrasystolic arrhythmias +C2882267|T046|AB|I49.49|ICD10CM|Other premature depolarization|Other premature depolarization +C2882267|T046|PT|I49.49|ICD10CM|Other premature depolarization|Other premature depolarization +C2114320|T184|ET|I49.49|ICD10CM|Premature contractions|Premature contractions +C0037052|T047|PT|I49.5|ICD10|Sick sinus syndrome|Sick sinus syndrome +C0037052|T047|PT|I49.5|ICD10CM|Sick sinus syndrome|Sick sinus syndrome +C0037052|T047|AB|I49.5|ICD10CM|Sick sinus syndrome|Sick sinus syndrome +C0221047|T047|ET|I49.5|ICD10CM|Tachycardia-bradycardia syndrome|Tachycardia-bradycardia syndrome +C1142166|T047|ET|I49.8|ICD10CM|Brugada syndrome|Brugada syndrome +C0428908|T047|ET|I49.8|ICD10CM|Coronary sinus rhythm disorder|Coronary sinus rhythm disorder +C1399226|T047|ET|I49.8|ICD10CM|Ectopic rhythm disorder|Ectopic rhythm disorder +C0264893|T047|ET|I49.8|ICD10CM|Nodal rhythm disorder|Nodal rhythm disorder +C0348626|T047|PT|I49.8|ICD10CM|Other specified cardiac arrhythmias|Other specified cardiac arrhythmias +C0348626|T047|AB|I49.8|ICD10CM|Other specified cardiac arrhythmias|Other specified cardiac arrhythmias +C0348626|T047|PT|I49.8|ICD10|Other specified cardiac arrhythmias|Other specified cardiac arrhythmias +C0003811|T047|ET|I49.9|ICD10CM|Arrhythmia (cardiac) NOS|Arrhythmia (cardiac) NOS +C0003811|T047|PT|I49.9|ICD10CM|Cardiac arrhythmia, unspecified|Cardiac arrhythmia, unspecified +C0003811|T047|AB|I49.9|ICD10CM|Cardiac arrhythmia, unspecified|Cardiac arrhythmia, unspecified +C0003811|T047|PT|I49.9|ICD10|Cardiac arrhythmia, unspecified|Cardiac arrhythmia, unspecified +C0018801|T047|HT|I50|ICD10|Heart failure|Heart failure +C0018801|T047|HT|I50|ICD10CM|Heart failure|Heart failure +C0018801|T047|AB|I50|ICD10CM|Heart failure|Heart failure +C0018802|T047|PT|I50.0|ICD10|Congestive heart failure|Congestive heart failure +C1956414|T047|ET|I50.1|ICD10CM|Cardiac asthma|Cardiac asthma +C2882268|T047|ET|I50.1|ICD10CM|Edema of lung with heart disease NOS|Edema of lung with heart disease NOS +C2882269|T047|ET|I50.1|ICD10CM|Edema of lung with heart failure|Edema of lung with heart failure +C0023212|T047|ET|I50.1|ICD10CM|Left heart failure|Left heart failure +C0023212|T047|PT|I50.1|ICD10|Left ventricular failure|Left ventricular failure +C4509222|T047|AB|I50.1|ICD10CM|Left ventricular failure, unspecified|Left ventricular failure, unspecified +C4509222|T047|PT|I50.1|ICD10CM|Left ventricular failure, unspecified|Left ventricular failure, unspecified +C2882268|T047|ET|I50.1|ICD10CM|Pulmonary edema with heart disease NOS|Pulmonary edema with heart disease NOS +C2882269|T047|ET|I50.1|ICD10CM|Pulmonary edema with heart failure|Pulmonary edema with heart failure +C4509223|T047|ET|I50.2|ICD10CM|Heart failure with reduced ejection fraction [HFrEF]|Heart failure with reduced ejection fraction [HFrEF] +C2039715|T047|AB|I50.2|ICD10CM|Systolic (congestive) heart failure|Systolic (congestive) heart failure +C2039715|T047|HT|I50.2|ICD10CM|Systolic (congestive) heart failure|Systolic (congestive) heart failure +C4509224|T047|ET|I50.2|ICD10CM|Systolic left ventricular heart failure|Systolic left ventricular heart failure +C1135191|T047|AB|I50.20|ICD10CM|Unspecified systolic (congestive) heart failure|Unspecified systolic (congestive) heart failure +C1135191|T047|PT|I50.20|ICD10CM|Unspecified systolic (congestive) heart failure|Unspecified systolic (congestive) heart failure +C4083073|T047|AB|I50.21|ICD10CM|Acute systolic (congestive) heart failure|Acute systolic (congestive) heart failure +C4083073|T047|PT|I50.21|ICD10CM|Acute systolic (congestive) heart failure|Acute systolic (congestive) heart failure +C1135194|T047|AB|I50.22|ICD10CM|Chronic systolic (congestive) heart failure|Chronic systolic (congestive) heart failure +C1135194|T047|PT|I50.22|ICD10CM|Chronic systolic (congestive) heart failure|Chronic systolic (congestive) heart failure +C2733492|T047|AB|I50.23|ICD10CM|Acute on chronic systolic (congestive) heart failure|Acute on chronic systolic (congestive) heart failure +C2733492|T047|PT|I50.23|ICD10CM|Acute on chronic systolic (congestive) heart failure|Acute on chronic systolic (congestive) heart failure +C2183328|T047|AB|I50.3|ICD10CM|Diastolic (congestive) heart failure|Diastolic (congestive) heart failure +C2183328|T047|HT|I50.3|ICD10CM|Diastolic (congestive) heart failure|Diastolic (congestive) heart failure +C4509225|T047|ET|I50.3|ICD10CM|Diastolic left ventricular heart failure|Diastolic left ventricular heart failure +C2960127|T047|ET|I50.3|ICD10CM|Heart failure with normal ejection fraction|Heart failure with normal ejection fraction +C4509226|T047|ET|I50.3|ICD10CM|Heart failure with preserved ejection fraction [HFpEF]|Heart failure with preserved ejection fraction [HFpEF] +C1135196|T047|AB|I50.30|ICD10CM|Unspecified diastolic (congestive) heart failure|Unspecified diastolic (congestive) heart failure +C1135196|T047|PT|I50.30|ICD10CM|Unspecified diastolic (congestive) heart failure|Unspecified diastolic (congestive) heart failure +C2215111|T047|AB|I50.31|ICD10CM|Acute diastolic (congestive) heart failure|Acute diastolic (congestive) heart failure +C2215111|T047|PT|I50.31|ICD10CM|Acute diastolic (congestive) heart failure|Acute diastolic (congestive) heart failure +C2711480|T047|AB|I50.32|ICD10CM|Chronic diastolic (congestive) heart failure|Chronic diastolic (congestive) heart failure +C2711480|T047|PT|I50.32|ICD10CM|Chronic diastolic (congestive) heart failure|Chronic diastolic (congestive) heart failure +C2732749|T047|AB|I50.33|ICD10CM|Acute on chronic diastolic (congestive) heart failure|Acute on chronic diastolic (congestive) heart failure +C2732749|T047|PT|I50.33|ICD10CM|Acute on chronic diastolic (congestive) heart failure|Acute on chronic diastolic (congestive) heart failure +C2882272|T047|HT|I50.4|ICD10CM|Combined systolic (congestive) and diastolic (congestive) heart failure|Combined systolic (congestive) and diastolic (congestive) heart failure +C2882272|T047|AB|I50.4|ICD10CM|Combined systolic and diastolic (congestive) hrt fail|Combined systolic and diastolic (congestive) hrt fail +C4509227|T047|ET|I50.4|ICD10CM|Combined systolic and diastolic left ventricular heart failure|Combined systolic and diastolic left ventricular heart failure +C4509228|T047|ET|I50.4|ICD10CM|Heart failure with reduced ejection fraction and diastolic dysfunction|Heart failure with reduced ejection fraction and diastolic dysfunction +C2882273|T047|AB|I50.40|ICD10CM|Unsp combined systolic and diastolic (congestive) hrt fail|Unsp combined systolic and diastolic (congestive) hrt fail +C2882273|T047|PT|I50.40|ICD10CM|Unspecified combined systolic (congestive) and diastolic (congestive) heart failure|Unspecified combined systolic (congestive) and diastolic (congestive) heart failure +C2882274|T047|PT|I50.41|ICD10CM|Acute combined systolic (congestive) and diastolic (congestive) heart failure|Acute combined systolic (congestive) and diastolic (congestive) heart failure +C2882274|T047|AB|I50.41|ICD10CM|Acute combined systolic and diastolic (congestive) hrt fail|Acute combined systolic and diastolic (congestive) hrt fail +C2882275|T047|PT|I50.42|ICD10CM|Chronic combined systolic (congestive) and diastolic (congestive) heart failure|Chronic combined systolic (congestive) and diastolic (congestive) heart failure +C2882275|T047|AB|I50.42|ICD10CM|Chronic combined systolic and diastolic hrt fail|Chronic combined systolic and diastolic hrt fail +C2882276|T047|PT|I50.43|ICD10CM|Acute on chronic combined systolic (congestive) and diastolic (congestive) heart failure|Acute on chronic combined systolic (congestive) and diastolic (congestive) heart failure +C2882276|T047|AB|I50.43|ICD10CM|Acute on chronic combined systolic and diastolic hrt fail|Acute on chronic combined systolic and diastolic hrt fail +C4509229|T047|HT|I50.8|ICD10CM|Other heart failure|Other heart failure +C4509229|T047|AB|I50.8|ICD10CM|Other heart failure|Other heart failure +C0235527|T047|HT|I50.81|ICD10CM|Right heart failure|Right heart failure +C0235527|T047|AB|I50.81|ICD10CM|Right heart failure|Right heart failure +C0235527|T047|ET|I50.81|ICD10CM|Right ventricular failure|Right ventricular failure +C4509231|T047|ET|I50.810|ICD10CM|Right heart failure without mention of left heart failure|Right heart failure without mention of left heart failure +C4509230|T047|AB|I50.810|ICD10CM|Right heart failure, unspecified|Right heart failure, unspecified +C4509230|T047|PT|I50.810|ICD10CM|Right heart failure, unspecified|Right heart failure, unspecified +C2939447|T047|ET|I50.810|ICD10CM|Right ventricular failure NOS|Right ventricular failure NOS +C4509233|T047|ET|I50.811|ICD10CM|Acute (isolated) right ventricular failure|Acute (isolated) right ventricular failure +C4509232|T047|ET|I50.811|ICD10CM|Acute isolated right heart failure|Acute isolated right heart failure +C0264715|T047|PT|I50.811|ICD10CM|Acute right heart failure|Acute right heart failure +C0264715|T047|AB|I50.811|ICD10CM|Acute right heart failure|Acute right heart failure +C4509236|T047|ET|I50.812|ICD10CM|Chronic (isolated) right ventricular failure|Chronic (isolated) right ventricular failure +C4509235|T047|ET|I50.812|ICD10CM|Chronic isolated right heart failure|Chronic isolated right heart failure +C4509234|T047|AB|I50.812|ICD10CM|Chronic right heart failure|Chronic right heart failure +C4509234|T047|PT|I50.812|ICD10CM|Chronic right heart failure|Chronic right heart failure +C4509240|T047|ET|I50.813|ICD10CM|Acute decompensation of chronic (isolated) right ventricular failure|Acute decompensation of chronic (isolated) right ventricular failure +C4509241|T047|ET|I50.813|ICD10CM|Acute exacerbation of chronic (isolated) right ventricular failure|Acute exacerbation of chronic (isolated) right ventricular failure +C4509239|T047|ET|I50.813|ICD10CM|Acute on chronic (isolated) right ventricular failure|Acute on chronic (isolated) right ventricular failure +C4509238|T047|ET|I50.813|ICD10CM|Acute on chronic isolated right heart failure|Acute on chronic isolated right heart failure +C4509237|T047|PT|I50.813|ICD10CM|Acute on chronic right heart failure|Acute on chronic right heart failure +C4509237|T047|AB|I50.813|ICD10CM|Acute on chronic right heart failure|Acute on chronic right heart failure +C4509242|T047|AB|I50.814|ICD10CM|Right heart failure due to left heart failure|Right heart failure due to left heart failure +C4509242|T047|PT|I50.814|ICD10CM|Right heart failure due to left heart failure|Right heart failure due to left heart failure +C4509243|T047|ET|I50.814|ICD10CM|Right ventricular failure secondary to left ventricular failure|Right ventricular failure secondary to left ventricular failure +C0685095|T047|AB|I50.82|ICD10CM|Biventricular heart failure|Biventricular heart failure +C0685095|T047|PT|I50.82|ICD10CM|Biventricular heart failure|Biventricular heart failure +C0221045|T047|AB|I50.83|ICD10CM|High output heart failure|High output heart failure +C0221045|T047|PT|I50.83|ICD10CM|High output heart failure|High output heart failure +C1868938|T047|AB|I50.84|ICD10CM|End stage heart failure|End stage heart failure +C1868938|T047|PT|I50.84|ICD10CM|End stage heart failure|End stage heart failure +C4509245|T047|ET|I50.84|ICD10CM|Stage D heart failure|Stage D heart failure +C4509229|T047|AB|I50.89|ICD10CM|Other heart failure|Other heart failure +C4509229|T047|PT|I50.89|ICD10CM|Other heart failure|Other heart failure +C2882277|T047|ET|I50.9|ICD10CM|Cardiac, heart or myocardial failure NOS|Cardiac, heart or myocardial failure NOS +C0018802|T047|ET|I50.9|ICD10CM|Congestive heart disease|Congestive heart disease +C0018802|T047|ET|I50.9|ICD10CM|Congestive heart failure NOS|Congestive heart failure NOS +C0018801|T047|PT|I50.9|ICD10CM|Heart failure, unspecified|Heart failure, unspecified +C0018801|T047|AB|I50.9|ICD10CM|Heart failure, unspecified|Heart failure, unspecified +C0018801|T047|PT|I50.9|ICD10|Heart failure, unspecified|Heart failure, unspecified +C0155711|T046|HT|I51|ICD10|Complications and ill-defined descriptions of heart disease|Complications and ill-defined descriptions of heart disease +C0155711|T046|AB|I51|ICD10CM|Complications and ill-defined descriptions of heart disease|Complications and ill-defined descriptions of heart disease +C0155711|T046|HT|I51|ICD10CM|Complications and ill-defined descriptions of heart disease|Complications and ill-defined descriptions of heart disease +C2882279|T020|ET|I51.0|ICD10CM|Acquired septal atrial defect (old)|Acquired septal atrial defect (old) +C2882280|T020|ET|I51.0|ICD10CM|Acquired septal auricular defect (old)|Acquired septal auricular defect (old) +C2882281|T020|ET|I51.0|ICD10CM|Acquired septal ventricular defect (old)|Acquired septal ventricular defect (old) +C0155715|T020|PT|I51.0|ICD10CM|Cardiac septal defect, acquired|Cardiac septal defect, acquired +C0155715|T020|AB|I51.0|ICD10CM|Cardiac septal defect, acquired|Cardiac septal defect, acquired +C0155715|T020|PT|I51.0|ICD10|Cardiac septal defect, acquired|Cardiac septal defect, acquired +C0494599|T046|PT|I51.1|ICD10CM|Rupture of chordae tendineae, not elsewhere classified|Rupture of chordae tendineae, not elsewhere classified +C0494599|T046|AB|I51.1|ICD10CM|Rupture of chordae tendineae, not elsewhere classified|Rupture of chordae tendineae, not elsewhere classified +C0494599|T046|PT|I51.1|ICD10|Rupture of chordae tendineae, not elsewhere classified|Rupture of chordae tendineae, not elsewhere classified +C0494600|T020|PT|I51.2|ICD10|Rupture of papillary muscle, not elsewhere classified|Rupture of papillary muscle, not elsewhere classified +C0494600|T020|PT|I51.2|ICD10CM|Rupture of papillary muscle, not elsewhere classified|Rupture of papillary muscle, not elsewhere classified +C0494600|T020|AB|I51.2|ICD10CM|Rupture of papillary muscle, not elsewhere classified|Rupture of papillary muscle, not elsewhere classified +C2882282|T033|ET|I51.3|ICD10CM|Apical thrombosis (old)|Apical thrombosis (old) +C2882283|T046|ET|I51.3|ICD10CM|Atrial thrombosis (old)|Atrial thrombosis (old) +C2882284|T046|ET|I51.3|ICD10CM|Auricular thrombosis (old)|Auricular thrombosis (old) +C0494601|T046|PT|I51.3|ICD10CM|Intracardiac thrombosis, not elsewhere classified|Intracardiac thrombosis, not elsewhere classified +C0494601|T046|AB|I51.3|ICD10CM|Intracardiac thrombosis, not elsewhere classified|Intracardiac thrombosis, not elsewhere classified +C0494601|T046|PT|I51.3|ICD10|Intracardiac thrombosis, not elsewhere classified|Intracardiac thrombosis, not elsewhere classified +C2882285|T046|ET|I51.3|ICD10CM|Mural thrombosis (old)|Mural thrombosis (old) +C2882286|T046|ET|I51.3|ICD10CM|Ventricular thrombosis (old)|Ventricular thrombosis (old) +C0264852|T047|ET|I51.4|ICD10CM|Chronic (interstitial) myocarditis|Chronic (interstitial) myocarditis +C0151654|T046|ET|I51.4|ICD10CM|Myocardial fibrosis|Myocardial fibrosis +C0027059|T047|ET|I51.4|ICD10CM|Myocarditis NOS|Myocarditis NOS +C0027059|T047|PT|I51.4|ICD10CM|Myocarditis, unspecified|Myocarditis, unspecified +C0027059|T047|AB|I51.4|ICD10CM|Myocarditis, unspecified|Myocarditis, unspecified +C0027059|T047|PT|I51.4|ICD10|Myocarditis, unspecified|Myocarditis, unspecified +C0865687|T046|ET|I51.5|ICD10CM|Fatty degeneration of heart or myocardium|Fatty degeneration of heart or myocardium +C0027046|T046|PT|I51.5|ICD10|Myocardial degeneration|Myocardial degeneration +C0027046|T046|PT|I51.5|ICD10CM|Myocardial degeneration|Myocardial degeneration +C0027046|T046|AB|I51.5|ICD10CM|Myocardial degeneration|Myocardial degeneration +C0878544|T047|ET|I51.5|ICD10CM|Myocardial disease|Myocardial disease +C1395047|T047|ET|I51.5|ICD10CM|Senile degeneration of heart or myocardium|Senile degeneration of heart or myocardium +C0007222|T047|PT|I51.6|ICD10|Cardiovascular disease, unspecified|Cardiovascular disease, unspecified +C0264732|T047|ET|I51.7|ICD10CM|Cardiac dilatation|Cardiac dilatation +C1383860|T046|ET|I51.7|ICD10CM|Cardiac hypertrophy|Cardiac hypertrophy +C0018800|T033|PT|I51.7|ICD10CM|Cardiomegaly|Cardiomegaly +C0018800|T033|AB|I51.7|ICD10CM|Cardiomegaly|Cardiomegaly +C0018800|T033|PT|I51.7|ICD10|Cardiomegaly|Cardiomegaly +C0264733|T047|ET|I51.7|ICD10CM|Ventricular dilatation|Ventricular dilatation +C0155717|T047|PT|I51.8|ICD10|Other ill-defined heart diseases|Other ill-defined heart diseases +C0155717|T047|HT|I51.8|ICD10CM|Other ill-defined heart diseases|Other ill-defined heart diseases +C0155717|T047|AB|I51.8|ICD10CM|Other ill-defined heart diseases|Other ill-defined heart diseases +C1719471|T047|ET|I51.81|ICD10CM|Reversible left ventricular dysfunction following sudden emotional stress|Reversible left ventricular dysfunction following sudden emotional stress +C1719472|T047|ET|I51.81|ICD10CM|Stress induced cardiomyopathy|Stress induced cardiomyopathy +C1739395|T047|ET|I51.81|ICD10CM|Takotsubo cardiomyopathy|Takotsubo cardiomyopathy +C1739395|T047|PT|I51.81|ICD10CM|Takotsubo syndrome|Takotsubo syndrome +C1739395|T047|AB|I51.81|ICD10CM|Takotsubo syndrome|Takotsubo syndrome +C1719473|T047|ET|I51.81|ICD10CM|Transient left ventricular apical ballooning syndrome|Transient left ventricular apical ballooning syndrome +C2882287|T046|ET|I51.89|ICD10CM|Carditis (acute)(chronic)|Carditis (acute)(chronic) +C0155717|T047|PT|I51.89|ICD10CM|Other ill-defined heart diseases|Other ill-defined heart diseases +C0155717|T047|AB|I51.89|ICD10CM|Other ill-defined heart diseases|Other ill-defined heart diseases +C2882288|T047|ET|I51.89|ICD10CM|Pancarditis (acute)(chronic)|Pancarditis (acute)(chronic) +C0018799|T047|PT|I51.9|ICD10|Heart disease, unspecified|Heart disease, unspecified +C0018799|T047|PT|I51.9|ICD10CM|Heart disease, unspecified|Heart disease, unspecified +C0018799|T047|AB|I51.9|ICD10CM|Heart disease, unspecified|Heart disease, unspecified +C0694500|T047|HT|I52|ICD10|Other heart disorders in diseases classified elsewhere|Other heart disorders in diseases classified elsewhere +C0694500|T047|AB|I52|ICD10CM|Other heart disorders in diseases classified elsewhere|Other heart disorders in diseases classified elsewhere +C0694500|T047|PT|I52|ICD10CM|Other heart disorders in diseases classified elsewhere|Other heart disorders in diseases classified elsewhere +C0348627|T047|PT|I52.0|ICD10|Other heart disorders in bacterial diseases classified elsewhere|Other heart disorders in bacterial diseases classified elsewhere +C0348628|T047|PT|I52.1|ICD10|Other heart disorders in other infectious and parasitic diseases classified elsewhere|Other heart disorders in other infectious and parasitic diseases classified elsewhere +C0348629|T047|PT|I52.8|ICD10|Other heart disorders in other diseases classified elsewhere|Other heart disorders in other diseases classified elsewhere +C1410400|T047|AB|I60|ICD10CM|Nontraumatic subarachnoid hemorrhage|Nontraumatic subarachnoid hemorrhage +C1410400|T047|HT|I60|ICD10CM|Nontraumatic subarachnoid hemorrhage|Nontraumatic subarachnoid hemorrhage +C0038525|T047|HT|I60|ICD10|Subarachnoid haemorrhage|Subarachnoid haemorrhage +C0038525|T047|HT|I60|ICD10AE|Subarachnoid hemorrhage|Subarachnoid hemorrhage +C0007820|T047|HT|I60-I69|ICD10CM|Cerebrovascular diseases (I60-I69)|Cerebrovascular diseases (I60-I69) +C0007820|T047|HT|I60-I69.9|ICD10|Cerebrovascular diseases|Cerebrovascular diseases +C2882289|T047|HT|I60.0|ICD10CM|Nontraumatic subarachnoid hemorrhage from carotid siphon and bifurcation|Nontraumatic subarachnoid hemorrhage from carotid siphon and bifurcation +C2882289|T047|AB|I60.0|ICD10CM|Ntrm subarach hemorrhage from carotid siphon and bifurcation|Ntrm subarach hemorrhage from carotid siphon and bifurcation +C0475529|T046|PT|I60.0|ICD10|Subarachnoid haemorrhage from carotid siphon and bifurcation|Subarachnoid haemorrhage from carotid siphon and bifurcation +C0475529|T046|PT|I60.0|ICD10AE|Subarachnoid hemorrhage from carotid siphon and bifurcation|Subarachnoid hemorrhage from carotid siphon and bifurcation +C2882290|T047|PT|I60.00|ICD10CM|Nontraumatic subarachnoid hemorrhage from unspecified carotid siphon and bifurcation|Nontraumatic subarachnoid hemorrhage from unspecified carotid siphon and bifurcation +C2882290|T047|AB|I60.00|ICD10CM|Ntrm subarach hemorrhage from unsp carotid siphon and bifurc|Ntrm subarach hemorrhage from unsp carotid siphon and bifurc +C2882291|T047|PT|I60.01|ICD10CM|Nontraumatic subarachnoid hemorrhage from right carotid siphon and bifurcation|Nontraumatic subarachnoid hemorrhage from right carotid siphon and bifurcation +C2882291|T047|AB|I60.01|ICD10CM|Ntrm subarach hemor from right carotid siphon and bifurc|Ntrm subarach hemor from right carotid siphon and bifurc +C2882292|T047|PT|I60.02|ICD10CM|Nontraumatic subarachnoid hemorrhage from left carotid siphon and bifurcation|Nontraumatic subarachnoid hemorrhage from left carotid siphon and bifurcation +C2882292|T047|AB|I60.02|ICD10CM|Ntrm subarach hemorrhage from left carotid siphon and bifurc|Ntrm subarach hemorrhage from left carotid siphon and bifurc +C2882293|T047|HT|I60.1|ICD10CM|Nontraumatic subarachnoid hemorrhage from middle cerebral artery|Nontraumatic subarachnoid hemorrhage from middle cerebral artery +C2882293|T047|AB|I60.1|ICD10CM|Ntrm subarachnoid hemorrhage from middle cerebral artery|Ntrm subarachnoid hemorrhage from middle cerebral artery +C0349439|T046|PT|I60.1|ICD10|Subarachnoid haemorrhage from middle cerebral artery|Subarachnoid haemorrhage from middle cerebral artery +C0349439|T046|PT|I60.1|ICD10AE|Subarachnoid hemorrhage from middle cerebral artery|Subarachnoid hemorrhage from middle cerebral artery +C2882294|T047|PT|I60.10|ICD10CM|Nontraumatic subarachnoid hemorrhage from unspecified middle cerebral artery|Nontraumatic subarachnoid hemorrhage from unspecified middle cerebral artery +C2882294|T047|AB|I60.10|ICD10CM|Ntrm subarach hemorrhage from unsp middle cerebral artery|Ntrm subarach hemorrhage from unsp middle cerebral artery +C2882295|T047|PT|I60.11|ICD10CM|Nontraumatic subarachnoid hemorrhage from right middle cerebral artery|Nontraumatic subarachnoid hemorrhage from right middle cerebral artery +C2882295|T047|AB|I60.11|ICD10CM|Ntrm subarach hemorrhage from right middle cerebral artery|Ntrm subarach hemorrhage from right middle cerebral artery +C2882296|T047|PT|I60.12|ICD10CM|Nontraumatic subarachnoid hemorrhage from left middle cerebral artery|Nontraumatic subarachnoid hemorrhage from left middle cerebral artery +C2882296|T047|AB|I60.12|ICD10CM|Ntrm subarach hemorrhage from left middle cerebral artery|Ntrm subarach hemorrhage from left middle cerebral artery +C2882297|T046|PT|I60.2|ICD10CM|Nontraumatic subarachnoid hemorrhage from anterior communicating artery|Nontraumatic subarachnoid hemorrhage from anterior communicating artery +C2882297|T046|AB|I60.2|ICD10CM|Ntrm subarach hemorrhage from anterior communicating artery|Ntrm subarach hemorrhage from anterior communicating artery +C0349441|T046|PT|I60.2|ICD10|Subarachnoid haemorrhage from anterior communicating artery|Subarachnoid haemorrhage from anterior communicating artery +C0349441|T046|PT|I60.2|ICD10AE|Subarachnoid hemorrhage from anterior communicating artery|Subarachnoid hemorrhage from anterior communicating artery +C2882301|T047|HT|I60.3|ICD10CM|Nontraumatic subarachnoid hemorrhage from posterior communicating artery|Nontraumatic subarachnoid hemorrhage from posterior communicating artery +C2882301|T047|AB|I60.3|ICD10CM|Ntrm subarach hemorrhage from posterior communicating artery|Ntrm subarach hemorrhage from posterior communicating artery +C0349442|T046|PT|I60.3|ICD10|Subarachnoid haemorrhage from posterior communicating artery|Subarachnoid haemorrhage from posterior communicating artery +C0349442|T046|PT|I60.3|ICD10AE|Subarachnoid hemorrhage from posterior communicating artery|Subarachnoid hemorrhage from posterior communicating artery +C2882302|T047|PT|I60.30|ICD10CM|Nontraumatic subarachnoid hemorrhage from unspecified posterior communicating artery|Nontraumatic subarachnoid hemorrhage from unspecified posterior communicating artery +C2882302|T047|AB|I60.30|ICD10CM|Ntrm subarach hemor from unsp posterior communicating artery|Ntrm subarach hemor from unsp posterior communicating artery +C2882303|T047|PT|I60.31|ICD10CM|Nontraumatic subarachnoid hemorrhage from right posterior communicating artery|Nontraumatic subarachnoid hemorrhage from right posterior communicating artery +C2882303|T047|AB|I60.31|ICD10CM|Ntrm subarach hemor from right post communicating artery|Ntrm subarach hemor from right post communicating artery +C2882304|T047|PT|I60.32|ICD10CM|Nontraumatic subarachnoid hemorrhage from left posterior communicating artery|Nontraumatic subarachnoid hemorrhage from left posterior communicating artery +C2882304|T047|AB|I60.32|ICD10CM|Ntrm subarach hemor from left posterior communicating artery|Ntrm subarach hemor from left posterior communicating artery +C2882305|T047|AB|I60.4|ICD10CM|Nontraumatic subarachnoid hemorrhage from basilar artery|Nontraumatic subarachnoid hemorrhage from basilar artery +C2882305|T047|PT|I60.4|ICD10CM|Nontraumatic subarachnoid hemorrhage from basilar artery|Nontraumatic subarachnoid hemorrhage from basilar artery +C0349443|T046|PT|I60.4|ICD10|Subarachnoid haemorrhage from basilar artery|Subarachnoid haemorrhage from basilar artery +C0349443|T046|PT|I60.4|ICD10AE|Subarachnoid hemorrhage from basilar artery|Subarachnoid hemorrhage from basilar artery +C2882306|T047|AB|I60.5|ICD10CM|Nontraumatic subarachnoid hemorrhage from vertebral artery|Nontraumatic subarachnoid hemorrhage from vertebral artery +C2882306|T047|HT|I60.5|ICD10CM|Nontraumatic subarachnoid hemorrhage from vertebral artery|Nontraumatic subarachnoid hemorrhage from vertebral artery +C0348784|T046|PT|I60.5|ICD10|Subarachnoid haemorrhage from vertebral artery|Subarachnoid haemorrhage from vertebral artery +C0348784|T046|PT|I60.5|ICD10AE|Subarachnoid hemorrhage from vertebral artery|Subarachnoid hemorrhage from vertebral artery +C2882307|T047|AB|I60.50|ICD10CM|Nontraumatic subarachnoid hemorrhage from unsp verteb art|Nontraumatic subarachnoid hemorrhage from unsp verteb art +C2882307|T047|PT|I60.50|ICD10CM|Nontraumatic subarachnoid hemorrhage from unspecified vertebral artery|Nontraumatic subarachnoid hemorrhage from unspecified vertebral artery +C2882308|T047|AB|I60.51|ICD10CM|Nontraumatic subarachnoid hemorrhage from r verteb art|Nontraumatic subarachnoid hemorrhage from r verteb art +C2882308|T047|PT|I60.51|ICD10CM|Nontraumatic subarachnoid hemorrhage from right vertebral artery|Nontraumatic subarachnoid hemorrhage from right vertebral artery +C2882309|T047|AB|I60.52|ICD10CM|Nontraumatic subarachnoid hemorrhage from l verteb art|Nontraumatic subarachnoid hemorrhage from l verteb art +C2882309|T047|PT|I60.52|ICD10CM|Nontraumatic subarachnoid hemorrhage from left vertebral artery|Nontraumatic subarachnoid hemorrhage from left vertebral artery +C2882310|T047|AB|I60.6|ICD10CM|Nontraumatic subarachnoid hemorrhage from oth intracran art|Nontraumatic subarachnoid hemorrhage from oth intracran art +C2882310|T047|PT|I60.6|ICD10CM|Nontraumatic subarachnoid hemorrhage from other intracranial arteries|Nontraumatic subarachnoid hemorrhage from other intracranial arteries +C0348632|T046|PT|I60.6|ICD10|Subarachnoid haemorrhage from other intracranial arteries|Subarachnoid haemorrhage from other intracranial arteries +C0348632|T046|PT|I60.6|ICD10AE|Subarachnoid hemorrhage from other intracranial arteries|Subarachnoid hemorrhage from other intracranial arteries +C2882315|T047|AB|I60.7|ICD10CM|Nontraumatic subarachnoid hemorrhage from unsp intracran art|Nontraumatic subarachnoid hemorrhage from unsp intracran art +C2882315|T047|PT|I60.7|ICD10CM|Nontraumatic subarachnoid hemorrhage from unspecified intracranial artery|Nontraumatic subarachnoid hemorrhage from unspecified intracranial artery +C2882311|T037|ET|I60.7|ICD10CM|Ruptured (congenital) berry aneurysm|Ruptured (congenital) berry aneurysm +C2882312|T037|ET|I60.7|ICD10CM|Ruptured (congenital) cerebral aneurysm|Ruptured (congenital) cerebral aneurysm +C0348645|T046|PT|I60.7|ICD10|Subarachnoid haemorrhage from intracranial artery, unspecified|Subarachnoid haemorrhage from intracranial artery, unspecified +C2882313|T046|ET|I60.7|ICD10CM|Subarachnoid hemorrhage (nontraumatic) from cerebral artery NOS|Subarachnoid hemorrhage (nontraumatic) from cerebral artery NOS +C2882314|T046|ET|I60.7|ICD10CM|Subarachnoid hemorrhage (nontraumatic) from communicating artery NOS|Subarachnoid hemorrhage (nontraumatic) from communicating artery NOS +C0348645|T046|PT|I60.7|ICD10AE|Subarachnoid hemorrhage from intracranial artery, unspecified|Subarachnoid hemorrhage from intracranial artery, unspecified +C0265076|T046|ET|I60.8|ICD10CM|Meningeal hemorrhage|Meningeal hemorrhage +C2882316|T047|AB|I60.8|ICD10CM|Other nontraumatic subarachnoid hemorrhage|Other nontraumatic subarachnoid hemorrhage +C2882316|T047|PT|I60.8|ICD10CM|Other nontraumatic subarachnoid hemorrhage|Other nontraumatic subarachnoid hemorrhage +C0348633|T046|PT|I60.8|ICD10|Other subarachnoid haemorrhage|Other subarachnoid haemorrhage +C0348633|T046|PT|I60.8|ICD10AE|Other subarachnoid hemorrhage|Other subarachnoid hemorrhage +C0241799|T046|ET|I60.8|ICD10CM|Rupture of cerebral arteriovenous malformation|Rupture of cerebral arteriovenous malformation +C1410400|T047|AB|I60.9|ICD10CM|Nontraumatic subarachnoid hemorrhage, unspecified|Nontraumatic subarachnoid hemorrhage, unspecified +C1410400|T047|PT|I60.9|ICD10CM|Nontraumatic subarachnoid hemorrhage, unspecified|Nontraumatic subarachnoid hemorrhage, unspecified +C0038525|T047|PT|I60.9|ICD10|Subarachnoid haemorrhage, unspecified|Subarachnoid haemorrhage, unspecified +C0038525|T047|PT|I60.9|ICD10AE|Subarachnoid hemorrhage, unspecified|Subarachnoid hemorrhage, unspecified +C2937358|T046|HT|I61|ICD10|Intracerebral haemorrhage|Intracerebral haemorrhage +C2937358|T046|HT|I61|ICD10AE|Intracerebral hemorrhage|Intracerebral hemorrhage +C3662030|T046|HT|I61|ICD10CM|Nontraumatic intracerebral hemorrhage|Nontraumatic intracerebral hemorrhage +C3662030|T046|AB|I61|ICD10CM|Nontraumatic intracerebral hemorrhage|Nontraumatic intracerebral hemorrhage +C2882317|T046|ET|I61.0|ICD10CM|Deep intracerebral hemorrhage (nontraumatic)|Deep intracerebral hemorrhage (nontraumatic) +C0494602|T046|PT|I61.0|ICD10|Intracerebral haemorrhage in hemisphere, subcortical|Intracerebral haemorrhage in hemisphere, subcortical +C0494602|T046|PT|I61.0|ICD10AE|Intracerebral hemorrhage in hemisphere, subcortical|Intracerebral hemorrhage in hemisphere, subcortical +C1390194|T046|AB|I61.0|ICD10CM|Nontraumatic intcrbl hemorrhage in hemisphere, subcortical|Nontraumatic intcrbl hemorrhage in hemisphere, subcortical +C1390194|T046|PT|I61.0|ICD10CM|Nontraumatic intracerebral hemorrhage in hemisphere, subcortical|Nontraumatic intracerebral hemorrhage in hemisphere, subcortical +C2882318|T047|ET|I61.1|ICD10CM|Cerebral lobe hemorrhage (nontraumatic)|Cerebral lobe hemorrhage (nontraumatic) +C0494603|T046|PT|I61.1|ICD10|Intracerebral haemorrhage in hemisphere, cortical|Intracerebral haemorrhage in hemisphere, cortical +C0494603|T046|PT|I61.1|ICD10AE|Intracerebral hemorrhage in hemisphere, cortical|Intracerebral hemorrhage in hemisphere, cortical +C1390193|T046|AB|I61.1|ICD10CM|Nontraumatic intcrbl hemorrhage in hemisphere, cortical|Nontraumatic intcrbl hemorrhage in hemisphere, cortical +C1390193|T046|PT|I61.1|ICD10CM|Nontraumatic intracerebral hemorrhage in hemisphere, cortical|Nontraumatic intracerebral hemorrhage in hemisphere, cortical +C2882319|T046|ET|I61.1|ICD10CM|Superficial intracerebral hemorrhage (nontraumatic)|Superficial intracerebral hemorrhage (nontraumatic) +C0348646|T046|PT|I61.2|ICD10|Intracerebral haemorrhage in hemisphere, unspecified|Intracerebral haemorrhage in hemisphere, unspecified +C0348646|T046|PT|I61.2|ICD10AE|Intracerebral hemorrhage in hemisphere, unspecified|Intracerebral hemorrhage in hemisphere, unspecified +C2882320|T046|AB|I61.2|ICD10CM|Nontraumatic intracerebral hemorrhage in hemisphere, unsp|Nontraumatic intracerebral hemorrhage in hemisphere, unsp +C2882320|T046|PT|I61.2|ICD10CM|Nontraumatic intracerebral hemorrhage in hemisphere, unspecified|Nontraumatic intracerebral hemorrhage in hemisphere, unspecified +C0494604|T046|PT|I61.3|ICD10|Intracerebral haemorrhage in brain stem|Intracerebral haemorrhage in brain stem +C0494604|T046|PT|I61.3|ICD10AE|Intracerebral hemorrhage in brain stem|Intracerebral hemorrhage in brain stem +C1401193|T046|AB|I61.3|ICD10CM|Nontraumatic intracerebral hemorrhage in brain stem|Nontraumatic intracerebral hemorrhage in brain stem +C1401193|T046|PT|I61.3|ICD10CM|Nontraumatic intracerebral hemorrhage in brain stem|Nontraumatic intracerebral hemorrhage in brain stem +C0494605|T046|PT|I61.4|ICD10|Intracerebral haemorrhage in cerebellum|Intracerebral haemorrhage in cerebellum +C0494605|T046|PT|I61.4|ICD10AE|Intracerebral hemorrhage in cerebellum|Intracerebral hemorrhage in cerebellum +C1401192|T046|AB|I61.4|ICD10CM|Nontraumatic intracerebral hemorrhage in cerebellum|Nontraumatic intracerebral hemorrhage in cerebellum +C1401192|T046|PT|I61.4|ICD10CM|Nontraumatic intracerebral hemorrhage in cerebellum|Nontraumatic intracerebral hemorrhage in cerebellum +C0475526|T046|PT|I61.5|ICD10|Intracerebral haemorrhage, intraventricular|Intracerebral haemorrhage, intraventricular +C0475526|T046|PT|I61.5|ICD10AE|Intracerebral hemorrhage, intraventricular|Intracerebral hemorrhage, intraventricular +C2882321|T046|AB|I61.5|ICD10CM|Nontraumatic intracerebral hemorrhage, intraventricular|Nontraumatic intracerebral hemorrhage, intraventricular +C2882321|T046|PT|I61.5|ICD10CM|Nontraumatic intracerebral hemorrhage, intraventricular|Nontraumatic intracerebral hemorrhage, intraventricular +C0475527|T046|PT|I61.6|ICD10|Intracerebral haemorrhage, multiple localized|Intracerebral haemorrhage, multiple localized +C0475527|T046|PT|I61.6|ICD10AE|Intracerebral hemorrhage, multiple localized|Intracerebral hemorrhage, multiple localized +C2882322|T046|AB|I61.6|ICD10CM|Nontraumatic intracerebral hemorrhage, multiple localized|Nontraumatic intracerebral hemorrhage, multiple localized +C2882322|T046|PT|I61.6|ICD10CM|Nontraumatic intracerebral hemorrhage, multiple localized|Nontraumatic intracerebral hemorrhage, multiple localized +C0348634|T046|PT|I61.8|ICD10|Other intracerebral haemorrhage|Other intracerebral haemorrhage +C0348634|T046|PT|I61.8|ICD10AE|Other intracerebral hemorrhage|Other intracerebral hemorrhage +C2882323|T046|AB|I61.8|ICD10CM|Other nontraumatic intracerebral hemorrhage|Other nontraumatic intracerebral hemorrhage +C2882323|T046|PT|I61.8|ICD10CM|Other nontraumatic intracerebral hemorrhage|Other nontraumatic intracerebral hemorrhage +C2937358|T046|PT|I61.9|ICD10|Intracerebral haemorrhage, unspecified|Intracerebral haemorrhage, unspecified +C2937358|T046|PT|I61.9|ICD10AE|Intracerebral hemorrhage, unspecified|Intracerebral hemorrhage, unspecified +C3662030|T046|AB|I61.9|ICD10CM|Nontraumatic intracerebral hemorrhage, unspecified|Nontraumatic intracerebral hemorrhage, unspecified +C3662030|T046|PT|I61.9|ICD10CM|Nontraumatic intracerebral hemorrhage, unspecified|Nontraumatic intracerebral hemorrhage, unspecified +C2882325|T046|AB|I62|ICD10CM|Other and unspecified nontraumatic intracranial hemorrhage|Other and unspecified nontraumatic intracranial hemorrhage +C2882325|T046|HT|I62|ICD10CM|Other and unspecified nontraumatic intracranial hemorrhage|Other and unspecified nontraumatic intracranial hemorrhage +C0494606|T046|HT|I62|ICD10|Other nontraumatic intracranial haemorrhage|Other nontraumatic intracranial haemorrhage +C0494606|T046|HT|I62|ICD10AE|Other nontraumatic intracranial hemorrhage|Other nontraumatic intracranial hemorrhage +C0265080|T047|AB|I62.0|ICD10CM|Nontraumatic subdural hemorrhage|Nontraumatic subdural hemorrhage +C0265080|T047|HT|I62.0|ICD10CM|Nontraumatic subdural hemorrhage|Nontraumatic subdural hemorrhage +C0494607|T046|PT|I62.0|ICD10|Subdural haemorrhage (acute) (nontraumatic)|Subdural haemorrhage (acute) (nontraumatic) +C0494607|T046|PT|I62.0|ICD10AE|Subdural hemorrhage (acute) (nontraumatic)|Subdural hemorrhage (acute) (nontraumatic) +C0265080|T047|AB|I62.00|ICD10CM|Nontraumatic subdural hemorrhage, unspecified|Nontraumatic subdural hemorrhage, unspecified +C0265080|T047|PT|I62.00|ICD10CM|Nontraumatic subdural hemorrhage, unspecified|Nontraumatic subdural hemorrhage, unspecified +C0494607|T046|AB|I62.01|ICD10CM|Nontraumatic acute subdural hemorrhage|Nontraumatic acute subdural hemorrhage +C0494607|T046|PT|I62.01|ICD10CM|Nontraumatic acute subdural hemorrhage|Nontraumatic acute subdural hemorrhage +C2882326|T047|AB|I62.02|ICD10CM|Nontraumatic subacute subdural hemorrhage|Nontraumatic subacute subdural hemorrhage +C2882326|T047|PT|I62.02|ICD10CM|Nontraumatic subacute subdural hemorrhage|Nontraumatic subacute subdural hemorrhage +C2882327|T047|AB|I62.03|ICD10CM|Nontraumatic chronic subdural hemorrhage|Nontraumatic chronic subdural hemorrhage +C2882327|T047|PT|I62.03|ICD10CM|Nontraumatic chronic subdural hemorrhage|Nontraumatic chronic subdural hemorrhage +C1318552|T047|ET|I62.1|ICD10CM|Nontraumatic epidural hemorrhage|Nontraumatic epidural hemorrhage +C1318552|T047|PT|I62.1|ICD10|Nontraumatic extradural haemorrhage|Nontraumatic extradural haemorrhage +C1318552|T047|PT|I62.1|ICD10AE|Nontraumatic extradural hemorrhage|Nontraumatic extradural hemorrhage +C1318552|T047|PT|I62.1|ICD10CM|Nontraumatic extradural hemorrhage|Nontraumatic extradural hemorrhage +C1318552|T047|AB|I62.1|ICD10CM|Nontraumatic extradural hemorrhage|Nontraumatic extradural hemorrhage +C0494608|T046|PT|I62.9|ICD10|Intracranial haemorrhage (nontraumatic), unspecified|Intracranial haemorrhage (nontraumatic), unspecified +C0494608|T046|PT|I62.9|ICD10AE|Intracranial hemorrhage (nontraumatic), unspecified|Intracranial hemorrhage (nontraumatic), unspecified +C0494608|T046|AB|I62.9|ICD10CM|Nontraumatic intracranial hemorrhage, unspecified|Nontraumatic intracranial hemorrhage, unspecified +C0494608|T046|PT|I62.9|ICD10CM|Nontraumatic intracranial hemorrhage, unspecified|Nontraumatic intracranial hemorrhage, unspecified +C0007785|T047|HT|I63|ICD10|Cerebral infarction|Cerebral infarction +C0007785|T047|HT|I63|ICD10CM|Cerebral infarction|Cerebral infarction +C0007785|T047|AB|I63|ICD10CM|Cerebral infarction|Cerebral infarction +C4290145|T047|ET|I63|ICD10CM|occlusion and stenosis of cerebral and precerebral arteries, resulting in cerebral infarction|occlusion and stenosis of cerebral and precerebral arteries, resulting in cerebral infarction +C0494609|T047|AB|I63.0|ICD10CM|Cerebral infarction due to thrombosis of precerb arteries|Cerebral infarction due to thrombosis of precerb arteries +C0494609|T047|HT|I63.0|ICD10CM|Cerebral infarction due to thrombosis of precerebral arteries|Cerebral infarction due to thrombosis of precerebral arteries +C0494609|T047|PT|I63.0|ICD10|Cerebral infarction due to thrombosis of precerebral arteries|Cerebral infarction due to thrombosis of precerebral arteries +C2882329|T047|AB|I63.00|ICD10CM|Cerebral infarction due to thombos unsp precerebral artery|Cerebral infarction due to thombos unsp precerebral artery +C2882329|T047|PT|I63.00|ICD10CM|Cerebral infarction due to thrombosis of unspecified precerebral artery|Cerebral infarction due to thrombosis of unspecified precerebral artery +C2882330|T047|AB|I63.01|ICD10CM|Cerebral infarction due to thrombosis of vertebral artery|Cerebral infarction due to thrombosis of vertebral artery +C2882330|T047|HT|I63.01|ICD10CM|Cerebral infarction due to thrombosis of vertebral artery|Cerebral infarction due to thrombosis of vertebral artery +C2882331|T047|AB|I63.011|ICD10CM|Cerebral infarction due to thrombosis of r verteb art|Cerebral infarction due to thrombosis of r verteb art +C2882331|T047|PT|I63.011|ICD10CM|Cerebral infarction due to thrombosis of right vertebral artery|Cerebral infarction due to thrombosis of right vertebral artery +C2882332|T047|AB|I63.012|ICD10CM|Cerebral infarction due to thrombosis of l verteb art|Cerebral infarction due to thrombosis of l verteb art +C2882332|T047|PT|I63.012|ICD10CM|Cerebral infarction due to thrombosis of left vertebral artery|Cerebral infarction due to thrombosis of left vertebral artery +C4268475|T047|PT|I63.013|ICD10CM|Cerebral infarction due to thrombosis of bilateral vertebral arteries|Cerebral infarction due to thrombosis of bilateral vertebral arteries +C4268475|T047|AB|I63.013|ICD10CM|Cerebral infrc due to thrombosis of bilateral verteb art|Cerebral infrc due to thrombosis of bilateral verteb art +C2882333|T047|AB|I63.019|ICD10CM|Cerebral infarction due to thombos unsp vertebral artery|Cerebral infarction due to thombos unsp vertebral artery +C2882333|T047|PT|I63.019|ICD10CM|Cerebral infarction due to thrombosis of unspecified vertebral artery|Cerebral infarction due to thrombosis of unspecified vertebral artery +C2882334|T047|AB|I63.02|ICD10CM|Cerebral infarction due to thrombosis of basilar artery|Cerebral infarction due to thrombosis of basilar artery +C2882334|T047|PT|I63.02|ICD10CM|Cerebral infarction due to thrombosis of basilar artery|Cerebral infarction due to thrombosis of basilar artery +C2882335|T047|AB|I63.03|ICD10CM|Cerebral infarction due to thrombosis of carotid artery|Cerebral infarction due to thrombosis of carotid artery +C2882335|T047|HT|I63.03|ICD10CM|Cerebral infarction due to thrombosis of carotid artery|Cerebral infarction due to thrombosis of carotid artery +C2882336|T047|PT|I63.031|ICD10CM|Cerebral infarction due to thrombosis of right carotid artery|Cerebral infarction due to thrombosis of right carotid artery +C2882336|T047|AB|I63.031|ICD10CM|Cerebral infrc due to thrombosis of right carotid artery|Cerebral infrc due to thrombosis of right carotid artery +C2882337|T047|AB|I63.032|ICD10CM|Cerebral infarction due to thrombosis of left carotid artery|Cerebral infarction due to thrombosis of left carotid artery +C2882337|T047|PT|I63.032|ICD10CM|Cerebral infarction due to thrombosis of left carotid artery|Cerebral infarction due to thrombosis of left carotid artery +C4268476|T047|PT|I63.033|ICD10CM|Cerebral infarction due to thrombosis of bilateral carotid arteries|Cerebral infarction due to thrombosis of bilateral carotid arteries +C4268476|T047|AB|I63.033|ICD10CM|Cerebral infrc due to thombos of bilateral carotid arteries|Cerebral infrc due to thombos of bilateral carotid arteries +C2882338|T047|AB|I63.039|ICD10CM|Cerebral infarction due to thrombosis of unsp carotid artery|Cerebral infarction due to thrombosis of unsp carotid artery +C2882338|T047|PT|I63.039|ICD10CM|Cerebral infarction due to thrombosis of unspecified carotid artery|Cerebral infarction due to thrombosis of unspecified carotid artery +C2882339|T047|PT|I63.09|ICD10CM|Cerebral infarction due to thrombosis of other precerebral artery|Cerebral infarction due to thrombosis of other precerebral artery +C2882339|T047|AB|I63.09|ICD10CM|Cerebral infarction due to thrombosis of precerebral artery|Cerebral infarction due to thrombosis of precerebral artery +C0451673|T047|PT|I63.1|ICD10|Cerebral infarction due to embolism of precerebral arteries|Cerebral infarction due to embolism of precerebral arteries +C0451673|T047|HT|I63.1|ICD10CM|Cerebral infarction due to embolism of precerebral arteries|Cerebral infarction due to embolism of precerebral arteries +C0451673|T047|AB|I63.1|ICD10CM|Cerebral infarction due to embolism of precerebral arteries|Cerebral infarction due to embolism of precerebral arteries +C2882340|T047|AB|I63.10|ICD10CM|Cerebral infarction due to embolism of unsp precerb artery|Cerebral infarction due to embolism of unsp precerb artery +C2882340|T047|PT|I63.10|ICD10CM|Cerebral infarction due to embolism of unspecified precerebral artery|Cerebral infarction due to embolism of unspecified precerebral artery +C2882341|T047|AB|I63.11|ICD10CM|Cerebral infarction due to embolism of vertebral artery|Cerebral infarction due to embolism of vertebral artery +C2882341|T047|HT|I63.11|ICD10CM|Cerebral infarction due to embolism of vertebral artery|Cerebral infarction due to embolism of vertebral artery +C2882342|T047|AB|I63.111|ICD10CM|Cerebral infarction due to embolism of r verteb art|Cerebral infarction due to embolism of r verteb art +C2882342|T047|PT|I63.111|ICD10CM|Cerebral infarction due to embolism of right vertebral artery|Cerebral infarction due to embolism of right vertebral artery +C2882343|T047|AB|I63.112|ICD10CM|Cerebral infarction due to embolism of left vertebral artery|Cerebral infarction due to embolism of left vertebral artery +C2882343|T047|PT|I63.112|ICD10CM|Cerebral infarction due to embolism of left vertebral artery|Cerebral infarction due to embolism of left vertebral artery +C4268477|T047|AB|I63.113|ICD10CM|Cerebral infarction due to embolism of bilateral verteb art|Cerebral infarction due to embolism of bilateral verteb art +C4268477|T047|PT|I63.113|ICD10CM|Cerebral infarction due to embolism of bilateral vertebral arteries|Cerebral infarction due to embolism of bilateral vertebral arteries +C2882344|T047|AB|I63.119|ICD10CM|Cerebral infarction due to embolism of unsp vertebral artery|Cerebral infarction due to embolism of unsp vertebral artery +C2882344|T047|PT|I63.119|ICD10CM|Cerebral infarction due to embolism of unspecified vertebral artery|Cerebral infarction due to embolism of unspecified vertebral artery +C2882345|T047|AB|I63.12|ICD10CM|Cerebral infarction due to embolism of basilar artery|Cerebral infarction due to embolism of basilar artery +C2882345|T047|PT|I63.12|ICD10CM|Cerebral infarction due to embolism of basilar artery|Cerebral infarction due to embolism of basilar artery +C2882346|T047|AB|I63.13|ICD10CM|Cerebral infarction due to embolism of carotid artery|Cerebral infarction due to embolism of carotid artery +C2882346|T047|HT|I63.13|ICD10CM|Cerebral infarction due to embolism of carotid artery|Cerebral infarction due to embolism of carotid artery +C2882347|T047|AB|I63.131|ICD10CM|Cerebral infarction due to embolism of right carotid artery|Cerebral infarction due to embolism of right carotid artery +C2882347|T047|PT|I63.131|ICD10CM|Cerebral infarction due to embolism of right carotid artery|Cerebral infarction due to embolism of right carotid artery +C2882348|T047|AB|I63.132|ICD10CM|Cerebral infarction due to embolism of left carotid artery|Cerebral infarction due to embolism of left carotid artery +C2882348|T047|PT|I63.132|ICD10CM|Cerebral infarction due to embolism of left carotid artery|Cerebral infarction due to embolism of left carotid artery +C4268478|T047|PT|I63.133|ICD10CM|Cerebral infarction due to embolism of bilateral carotid arteries|Cerebral infarction due to embolism of bilateral carotid arteries +C4268478|T047|AB|I63.133|ICD10CM|Cerebral infrc due to embolism of bilateral carotid arteries|Cerebral infrc due to embolism of bilateral carotid arteries +C2882349|T047|AB|I63.139|ICD10CM|Cerebral infarction due to embolism of unsp carotid artery|Cerebral infarction due to embolism of unsp carotid artery +C2882349|T047|PT|I63.139|ICD10CM|Cerebral infarction due to embolism of unspecified carotid artery|Cerebral infarction due to embolism of unspecified carotid artery +C2882350|T047|PT|I63.19|ICD10CM|Cerebral infarction due to embolism of other precerebral artery|Cerebral infarction due to embolism of other precerebral artery +C2882350|T047|AB|I63.19|ICD10CM|Cerebral infarction due to embolism of precerebral artery|Cerebral infarction due to embolism of precerebral artery +C0348647|T046|HT|I63.2|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of precerebral arteries|Cerebral infarction due to unspecified occlusion or stenosis of precerebral arteries +C0348647|T046|PT|I63.2|ICD10|Cerebral infarction due to unspecified occlusion or stenosis of precerebral arteries|Cerebral infarction due to unspecified occlusion or stenosis of precerebral arteries +C0348647|T046|AB|I63.2|ICD10CM|Cerebral infrc due to unsp occls or stenosis of precerb art|Cerebral infrc due to unsp occls or stenosis of precerb art +C2882351|T046|AB|I63.20|ICD10CM|Cereb infrc due to unsp occls or stenos of unsp precerb art|Cereb infrc due to unsp occls or stenos of unsp precerb art +C2882351|T046|PT|I63.20|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of unspecified precerebral arteries|Cerebral infarction due to unspecified occlusion or stenosis of unspecified precerebral arteries +C2882352|T046|HT|I63.21|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of vertebral arteries|Cerebral infarction due to unspecified occlusion or stenosis of vertebral arteries +C2882352|T046|AB|I63.21|ICD10CM|Cerebral infrc due to unsp occls or stenosis of verteb art|Cerebral infrc due to unsp occls or stenosis of verteb art +C2882353|T046|PT|I63.211|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of right vertebral artery|Cerebral infarction due to unspecified occlusion or stenosis of right vertebral artery +C2882353|T046|AB|I63.211|ICD10CM|Cerebral infrc due to unsp occls or stenosis of r verteb art|Cerebral infrc due to unsp occls or stenosis of r verteb art +C2882354|T046|PT|I63.212|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of left vertebral artery|Cerebral infarction due to unspecified occlusion or stenosis of left vertebral artery +C2882354|T046|AB|I63.212|ICD10CM|Cerebral infrc due to unsp occls or stenosis of l verteb art|Cerebral infrc due to unsp occls or stenosis of l verteb art +C4268479|T046|AB|I63.213|ICD10CM|Cereb infrc due to unsp occls or stenosis of bi verteb art|Cereb infrc due to unsp occls or stenosis of bi verteb art +C4268479|T046|PT|I63.213|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of bilateral vertebral arteries|Cerebral infarction due to unspecified occlusion or stenosis of bilateral vertebral arteries +C2882355|T046|AB|I63.219|ICD10CM|Cereb infrc due to unsp occls or stenosis of unsp verteb art|Cereb infrc due to unsp occls or stenosis of unsp verteb art +C2882355|T046|PT|I63.219|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of unspecified vertebral artery|Cerebral infarction due to unspecified occlusion or stenosis of unspecified vertebral artery +C2882356|T046|AB|I63.22|ICD10CM|Cereb infrc due to unsp occls or stenosis of basilar artery|Cereb infrc due to unsp occls or stenosis of basilar artery +C2882356|T046|PT|I63.22|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of basilar artery|Cerebral infarction due to unspecified occlusion or stenosis of basilar artery +C2882357|T046|HT|I63.23|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of carotid arteries|Cerebral infarction due to unspecified occlusion or stenosis of carotid arteries +C2882357|T046|AB|I63.23|ICD10CM|Cerebral infrc due to unsp occls or stenosis of carotid art|Cerebral infrc due to unsp occls or stenosis of carotid art +C2882358|T046|AB|I63.231|ICD10CM|Cereb infrc due to unsp occls or stenos of right carotid art|Cereb infrc due to unsp occls or stenos of right carotid art +C2882358|T046|PT|I63.231|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of right carotid arteries|Cerebral infarction due to unspecified occlusion or stenosis of right carotid arteries +C2882359|T046|AB|I63.232|ICD10CM|Cereb infrc due to unsp occls or stenos of left carotid art|Cereb infrc due to unsp occls or stenos of left carotid art +C2882359|T046|PT|I63.232|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of left carotid arteries|Cerebral infarction due to unspecified occlusion or stenosis of left carotid arteries +C4268480|T046|AB|I63.233|ICD10CM|Cereb infrc due to unsp occls or stenosis of bi carotid art|Cereb infrc due to unsp occls or stenosis of bi carotid art +C4268480|T046|PT|I63.233|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of bilateral carotid arteries|Cerebral infarction due to unspecified occlusion or stenosis of bilateral carotid arteries +C2882360|T046|AB|I63.239|ICD10CM|Cereb infrc due to unsp occls or stenos of unsp crtd artery|Cereb infrc due to unsp occls or stenos of unsp crtd artery +C2882360|T046|PT|I63.239|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of unspecified carotid artery|Cerebral infarction due to unspecified occlusion or stenosis of unspecified carotid artery +C0348647|T046|PT|I63.29|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of other precerebral arteries|Cerebral infarction due to unspecified occlusion or stenosis of other precerebral arteries +C0348647|T046|AB|I63.29|ICD10CM|Cerebral infrc due to unsp occls or stenosis of precerb art|Cerebral infrc due to unsp occls or stenosis of precerb art +C0451674|T046|HT|I63.3|ICD10CM|Cerebral infarction due to thrombosis of cerebral arteries|Cerebral infarction due to thrombosis of cerebral arteries +C0451674|T046|AB|I63.3|ICD10CM|Cerebral infarction due to thrombosis of cerebral arteries|Cerebral infarction due to thrombosis of cerebral arteries +C0451674|T046|PT|I63.3|ICD10|Cerebral infarction due to thrombosis of cerebral arteries|Cerebral infarction due to thrombosis of cerebral arteries +C2882362|T047|AB|I63.30|ICD10CM|Cerebral infarction due to thombos unsp cerebral artery|Cerebral infarction due to thombos unsp cerebral artery +C2882362|T047|PT|I63.30|ICD10CM|Cerebral infarction due to thrombosis of unspecified cerebral artery|Cerebral infarction due to thrombosis of unspecified cerebral artery +C2882363|T047|HT|I63.31|ICD10CM|Cerebral infarction due to thrombosis of middle cerebral artery|Cerebral infarction due to thrombosis of middle cerebral artery +C2882363|T047|AB|I63.31|ICD10CM|Cerebral infrc due to thrombosis of middle cerebral artery|Cerebral infrc due to thrombosis of middle cerebral artery +C2882364|T047|AB|I63.311|ICD10CM|Cereb infrc due to thombos of right middle cerebral artery|Cereb infrc due to thombos of right middle cerebral artery +C2882364|T047|PT|I63.311|ICD10CM|Cerebral infarction due to thrombosis of right middle cerebral artery|Cerebral infarction due to thrombosis of right middle cerebral artery +C2882365|T047|PT|I63.312|ICD10CM|Cerebral infarction due to thrombosis of left middle cerebral artery|Cerebral infarction due to thrombosis of left middle cerebral artery +C2882365|T047|AB|I63.312|ICD10CM|Cerebral infrc due to thombos of left middle cerebral artery|Cerebral infrc due to thombos of left middle cerebral artery +C4268481|T047|PT|I63.313|ICD10CM|Cerebral infarction due to thrombosis of bilateral middle cerebral arteries|Cerebral infarction due to thrombosis of bilateral middle cerebral arteries +C4268481|T047|AB|I63.313|ICD10CM|Cerebral infrc due to thombos of bi middle cerebral arteries|Cerebral infrc due to thombos of bi middle cerebral arteries +C2882366|T047|PT|I63.319|ICD10CM|Cerebral infarction due to thrombosis of unspecified middle cerebral artery|Cerebral infarction due to thrombosis of unspecified middle cerebral artery +C2882366|T047|AB|I63.319|ICD10CM|Cerebral infrc due to thombos unsp middle cerebral artery|Cerebral infrc due to thombos unsp middle cerebral artery +C2882367|T047|HT|I63.32|ICD10CM|Cerebral infarction due to thrombosis of anterior cerebral artery|Cerebral infarction due to thrombosis of anterior cerebral artery +C2882367|T047|AB|I63.32|ICD10CM|Cerebral infrc due to thrombosis of anterior cerebral artery|Cerebral infrc due to thrombosis of anterior cerebral artery +C2882368|T047|PT|I63.321|ICD10CM|Cerebral infarction due to thrombosis of right anterior cerebral artery|Cerebral infarction due to thrombosis of right anterior cerebral artery +C2882368|T047|AB|I63.321|ICD10CM|Cerebral infrc due to thombos of right ant cerebral artery|Cerebral infrc due to thombos of right ant cerebral artery +C2882369|T047|PT|I63.322|ICD10CM|Cerebral infarction due to thrombosis of left anterior cerebral artery|Cerebral infarction due to thrombosis of left anterior cerebral artery +C2882369|T047|AB|I63.322|ICD10CM|Cerebral infrc due to thombos of left ant cerebral artery|Cerebral infrc due to thombos of left ant cerebral artery +C4268482|T047|PT|I63.323|ICD10CM|Cerebral infarction due to thrombosis of bilateral anterior cerebral arteries|Cerebral infarction due to thrombosis of bilateral anterior cerebral arteries +C4268482|T047|AB|I63.323|ICD10CM|Cerebral infrc due to thombos of bi ant cerebral arteries|Cerebral infrc due to thombos of bi ant cerebral arteries +C2882370|T047|PT|I63.329|ICD10CM|Cerebral infarction due to thrombosis of unspecified anterior cerebral artery|Cerebral infarction due to thrombosis of unspecified anterior cerebral artery +C2882370|T047|AB|I63.329|ICD10CM|Cerebral infrc due to thombos unsp anterior cerebral artery|Cerebral infrc due to thombos unsp anterior cerebral artery +C2882371|T047|HT|I63.33|ICD10CM|Cerebral infarction due to thrombosis of posterior cerebral artery|Cerebral infarction due to thrombosis of posterior cerebral artery +C2882371|T047|AB|I63.33|ICD10CM|Cerebral infrc due to thombos of posterior cerebral artery|Cerebral infrc due to thombos of posterior cerebral artery +C2882372|T047|PT|I63.331|ICD10CM|Cerebral infarction due to thrombosis of right posterior cerebral artery|Cerebral infarction due to thrombosis of right posterior cerebral artery +C2882372|T047|AB|I63.331|ICD10CM|Cerebral infrc due to thombos of right post cerebral artery|Cerebral infrc due to thombos of right post cerebral artery +C2882373|T047|PT|I63.332|ICD10CM|Cerebral infarction due to thrombosis of left posterior cerebral artery|Cerebral infarction due to thrombosis of left posterior cerebral artery +C2882373|T047|AB|I63.332|ICD10CM|Cerebral infrc due to thombos of left post cerebral artery|Cerebral infrc due to thombos of left post cerebral artery +C4268483|T047|PT|I63.333|ICD10CM|Cerebral infarction due to thrombosis of bilateral posterior cerebral arteries|Cerebral infarction due to thrombosis of bilateral posterior cerebral arteries +C4268483|T047|AB|I63.333|ICD10CM|Cerebral infrc due to thombos of bi post cerebral arteries|Cerebral infrc due to thombos of bi post cerebral arteries +C2882374|T047|PT|I63.339|ICD10CM|Cerebral infarction due to thrombosis of unspecified posterior cerebral artery|Cerebral infarction due to thrombosis of unspecified posterior cerebral artery +C2882374|T047|AB|I63.339|ICD10CM|Cerebral infrc due to thombos unsp posterior cerebral artery|Cerebral infrc due to thombos unsp posterior cerebral artery +C2882375|T047|AB|I63.34|ICD10CM|Cerebral infarction due to thrombosis of cerebellar artery|Cerebral infarction due to thrombosis of cerebellar artery +C2882375|T047|HT|I63.34|ICD10CM|Cerebral infarction due to thrombosis of cerebellar artery|Cerebral infarction due to thrombosis of cerebellar artery +C2882376|T047|PT|I63.341|ICD10CM|Cerebral infarction due to thrombosis of right cerebellar artery|Cerebral infarction due to thrombosis of right cerebellar artery +C2882376|T047|AB|I63.341|ICD10CM|Cerebral infrc due to thrombosis of right cereblr artery|Cerebral infrc due to thrombosis of right cereblr artery +C2882377|T047|PT|I63.342|ICD10CM|Cerebral infarction due to thrombosis of left cerebellar artery|Cerebral infarction due to thrombosis of left cerebellar artery +C2882377|T047|AB|I63.342|ICD10CM|Cerebral infarction due to thrombosis of left cereblr artery|Cerebral infarction due to thrombosis of left cereblr artery +C4268484|T047|PT|I63.343|ICD10CM|Cerebral infarction due to thrombosis of bilateral cerebellar arteries|Cerebral infarction due to thrombosis of bilateral cerebellar arteries +C4268484|T047|AB|I63.343|ICD10CM|Cerebral infrc due to thombos of bilateral cereblr arteries|Cerebral infrc due to thombos of bilateral cereblr arteries +C2882378|T047|AB|I63.349|ICD10CM|Cerebral infarction due to thombos unsp cerebellar artery|Cerebral infarction due to thombos unsp cerebellar artery +C2882378|T047|PT|I63.349|ICD10CM|Cerebral infarction due to thrombosis of unspecified cerebellar artery|Cerebral infarction due to thrombosis of unspecified cerebellar artery +C2882379|T047|AB|I63.39|ICD10CM|Cerebral infarction due to thrombosis of oth cerebral artery|Cerebral infarction due to thrombosis of oth cerebral artery +C2882379|T047|PT|I63.39|ICD10CM|Cerebral infarction due to thrombosis of other cerebral artery|Cerebral infarction due to thrombosis of other cerebral artery +C0451675|T047|PT|I63.4|ICD10|Cerebral infarction due to embolism of cerebral arteries|Cerebral infarction due to embolism of cerebral arteries +C0451675|T047|HT|I63.4|ICD10CM|Cerebral infarction due to embolism of cerebral arteries|Cerebral infarction due to embolism of cerebral arteries +C0451675|T047|AB|I63.4|ICD10CM|Cerebral infarction due to embolism of cerebral arteries|Cerebral infarction due to embolism of cerebral arteries +C2882380|T047|AB|I63.40|ICD10CM|Cerebral infarction due to embolism of unsp cerebral artery|Cerebral infarction due to embolism of unsp cerebral artery +C2882380|T047|PT|I63.40|ICD10CM|Cerebral infarction due to embolism of unspecified cerebral artery|Cerebral infarction due to embolism of unspecified cerebral artery +C2882381|T047|HT|I63.41|ICD10CM|Cerebral infarction due to embolism of middle cerebral artery|Cerebral infarction due to embolism of middle cerebral artery +C2882381|T047|AB|I63.41|ICD10CM|Cerebral infrc due to embolism of middle cerebral artery|Cerebral infrc due to embolism of middle cerebral artery +C2882382|T047|AB|I63.411|ICD10CM|Cereb infrc due to embolism of right middle cerebral artery|Cereb infrc due to embolism of right middle cerebral artery +C2882382|T047|PT|I63.411|ICD10CM|Cerebral infarction due to embolism of right middle cerebral artery|Cerebral infarction due to embolism of right middle cerebral artery +C2882383|T047|AB|I63.412|ICD10CM|Cereb infrc due to embolism of left middle cerebral artery|Cereb infrc due to embolism of left middle cerebral artery +C2882383|T047|PT|I63.412|ICD10CM|Cerebral infarction due to embolism of left middle cerebral artery|Cerebral infarction due to embolism of left middle cerebral artery +C4268485|T047|PT|I63.413|ICD10CM|Cerebral infarction due to embolism of bilateral middle cerebral arteries|Cerebral infarction due to embolism of bilateral middle cerebral arteries +C4268485|T047|AB|I63.413|ICD10CM|Cerebral infrc due to embolism of bi middle cerebral art|Cerebral infrc due to embolism of bi middle cerebral art +C2882384|T047|AB|I63.419|ICD10CM|Cereb infrc due to embolism of unsp middle cerebral artery|Cereb infrc due to embolism of unsp middle cerebral artery +C2882384|T047|PT|I63.419|ICD10CM|Cerebral infarction due to embolism of unspecified middle cerebral artery|Cerebral infarction due to embolism of unspecified middle cerebral artery +C2882385|T047|HT|I63.42|ICD10CM|Cerebral infarction due to embolism of anterior cerebral artery|Cerebral infarction due to embolism of anterior cerebral artery +C2882385|T047|AB|I63.42|ICD10CM|Cerebral infrc due to embolism of anterior cerebral artery|Cerebral infrc due to embolism of anterior cerebral artery +C2882386|T047|PT|I63.421|ICD10CM|Cerebral infarction due to embolism of right anterior cerebral artery|Cerebral infarction due to embolism of right anterior cerebral artery +C2882386|T047|AB|I63.421|ICD10CM|Cerebral infrc due to embolism of right ant cerebral artery|Cerebral infrc due to embolism of right ant cerebral artery +C2882387|T047|PT|I63.422|ICD10CM|Cerebral infarction due to embolism of left anterior cerebral artery|Cerebral infarction due to embolism of left anterior cerebral artery +C2882387|T047|AB|I63.422|ICD10CM|Cerebral infrc due to embolism of left ant cerebral artery|Cerebral infrc due to embolism of left ant cerebral artery +C4268486|T047|PT|I63.423|ICD10CM|Cerebral infarction due to embolism of bilateral anterior cerebral arteries|Cerebral infarction due to embolism of bilateral anterior cerebral arteries +C4268486|T047|AB|I63.423|ICD10CM|Cerebral infrc due to embolism of bi ant cerebral arteries|Cerebral infrc due to embolism of bi ant cerebral arteries +C2882388|T047|PT|I63.429|ICD10CM|Cerebral infarction due to embolism of unspecified anterior cerebral artery|Cerebral infarction due to embolism of unspecified anterior cerebral artery +C2882388|T047|AB|I63.429|ICD10CM|Cerebral infrc due to embolism of unsp ant cerebral artery|Cerebral infrc due to embolism of unsp ant cerebral artery +C2882389|T047|HT|I63.43|ICD10CM|Cerebral infarction due to embolism of posterior cerebral artery|Cerebral infarction due to embolism of posterior cerebral artery +C2882389|T047|AB|I63.43|ICD10CM|Cerebral infrc due to embolism of posterior cerebral artery|Cerebral infrc due to embolism of posterior cerebral artery +C2882390|T047|PT|I63.431|ICD10CM|Cerebral infarction due to embolism of right posterior cerebral artery|Cerebral infarction due to embolism of right posterior cerebral artery +C2882390|T047|AB|I63.431|ICD10CM|Cerebral infrc due to embolism of right post cerebral artery|Cerebral infrc due to embolism of right post cerebral artery +C2882391|T047|PT|I63.432|ICD10CM|Cerebral infarction due to embolism of left posterior cerebral artery|Cerebral infarction due to embolism of left posterior cerebral artery +C2882391|T047|AB|I63.432|ICD10CM|Cerebral infrc due to embolism of left post cerebral artery|Cerebral infrc due to embolism of left post cerebral artery +C4268487|T047|PT|I63.433|ICD10CM|Cerebral infarction due to embolism of bilateral posterior cerebral arteries|Cerebral infarction due to embolism of bilateral posterior cerebral arteries +C4268487|T047|AB|I63.433|ICD10CM|Cerebral infrc due to embolism of bi post cerebral arteries|Cerebral infrc due to embolism of bi post cerebral arteries +C2882392|T047|PT|I63.439|ICD10CM|Cerebral infarction due to embolism of unspecified posterior cerebral artery|Cerebral infarction due to embolism of unspecified posterior cerebral artery +C2882392|T047|AB|I63.439|ICD10CM|Cerebral infrc due to embolism of unsp post cerebral artery|Cerebral infrc due to embolism of unsp post cerebral artery +C2882393|T047|AB|I63.44|ICD10CM|Cerebral infarction due to embolism of cerebellar artery|Cerebral infarction due to embolism of cerebellar artery +C2882393|T047|HT|I63.44|ICD10CM|Cerebral infarction due to embolism of cerebellar artery|Cerebral infarction due to embolism of cerebellar artery +C2882394|T047|PT|I63.441|ICD10CM|Cerebral infarction due to embolism of right cerebellar artery|Cerebral infarction due to embolism of right cerebellar artery +C2882394|T047|AB|I63.441|ICD10CM|Cerebral infarction due to embolism of right cereblr artery|Cerebral infarction due to embolism of right cereblr artery +C2882395|T047|PT|I63.442|ICD10CM|Cerebral infarction due to embolism of left cerebellar artery|Cerebral infarction due to embolism of left cerebellar artery +C2882395|T047|AB|I63.442|ICD10CM|Cerebral infarction due to embolism of left cereblr artery|Cerebral infarction due to embolism of left cereblr artery +C4268488|T047|PT|I63.443|ICD10CM|Cerebral infarction due to embolism of bilateral cerebellar arteries|Cerebral infarction due to embolism of bilateral cerebellar arteries +C4268488|T047|AB|I63.443|ICD10CM|Cerebral infrc due to embolism of bilateral cereblr arteries|Cerebral infrc due to embolism of bilateral cereblr arteries +C2882396|T047|AB|I63.449|ICD10CM|Cerebral infarction due to embolism of unsp cereblr artery|Cerebral infarction due to embolism of unsp cereblr artery +C2882396|T047|PT|I63.449|ICD10CM|Cerebral infarction due to embolism of unspecified cerebellar artery|Cerebral infarction due to embolism of unspecified cerebellar artery +C2882397|T047|AB|I63.49|ICD10CM|Cerebral infarction due to embolism of other cerebral artery|Cerebral infarction due to embolism of other cerebral artery +C2882397|T047|PT|I63.49|ICD10CM|Cerebral infarction due to embolism of other cerebral artery|Cerebral infarction due to embolism of other cerebral artery +C0348635|T046|HT|I63.5|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of cerebral arteries|Cerebral infarction due to unspecified occlusion or stenosis of cerebral arteries +C0348635|T046|PT|I63.5|ICD10|Cerebral infarction due to unspecified occlusion or stenosis of cerebral arteries|Cerebral infarction due to unspecified occlusion or stenosis of cerebral arteries +C0348635|T046|AB|I63.5|ICD10CM|Cerebral infrc due to unsp occls or stenosis of cerebral art|Cerebral infrc due to unsp occls or stenosis of cerebral art +C2882398|T047|AB|I63.50|ICD10CM|Cereb infrc due to unsp occls or stenos of unsp cereb artery|Cereb infrc due to unsp occls or stenos of unsp cereb artery +C2882398|T047|PT|I63.50|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of unspecified cerebral artery|Cerebral infarction due to unspecified occlusion or stenosis of unspecified cerebral artery +C2882399|T047|AB|I63.51|ICD10CM|Cereb infrc due to unsp occls or stenos of middle cereb art|Cereb infrc due to unsp occls or stenos of middle cereb art +C2882399|T047|HT|I63.51|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of middle cerebral artery|Cerebral infarction due to unspecified occlusion or stenosis of middle cerebral artery +C2882400|T047|AB|I63.511|ICD10CM|Cereb infrc d/t unsp occls or stenos of right mid cereb art|Cereb infrc d/t unsp occls or stenos of right mid cereb art +C2882400|T047|PT|I63.511|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of right middle cerebral artery|Cerebral infarction due to unspecified occlusion or stenosis of right middle cerebral artery +C2882401|T047|AB|I63.512|ICD10CM|Cereb infrc d/t unsp occls or stenos of left mid cereb art|Cereb infrc d/t unsp occls or stenos of left mid cereb art +C2882401|T047|PT|I63.512|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of left middle cerebral artery|Cerebral infarction due to unspecified occlusion or stenosis of left middle cerebral artery +C4268489|T047|AB|I63.513|ICD10CM|Cereb infrc d/t unsp occls or stenos of bi middle cereb art|Cereb infrc d/t unsp occls or stenos of bi middle cereb art +C4268489|T047|PT|I63.513|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of bilateral middle cerebral arteries|Cerebral infarction due to unspecified occlusion or stenosis of bilateral middle cerebral arteries +C2882402|T047|AB|I63.519|ICD10CM|Cereb infrc d/t unsp occls or stenos of unsp mid cereb art|Cereb infrc d/t unsp occls or stenos of unsp mid cereb art +C2882402|T047|PT|I63.519|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of unspecified middle cerebral artery|Cerebral infarction due to unspecified occlusion or stenosis of unspecified middle cerebral artery +C2882403|T046|AB|I63.52|ICD10CM|Cereb infrc due to unsp occls or stenos of ant cereb artery|Cereb infrc due to unsp occls or stenos of ant cereb artery +C2882403|T046|HT|I63.52|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of anterior cerebral artery|Cerebral infarction due to unspecified occlusion or stenosis of anterior cerebral artery +C2882404|T046|AB|I63.521|ICD10CM|Cereb infrc d/t unsp occls or stenos of right ant cereb art|Cereb infrc d/t unsp occls or stenos of right ant cereb art +C2882404|T046|PT|I63.521|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of right anterior cerebral artery|Cerebral infarction due to unspecified occlusion or stenosis of right anterior cerebral artery +C2882405|T046|AB|I63.522|ICD10CM|Cereb infrc d/t unsp occls or stenos of left ant cereb art|Cereb infrc d/t unsp occls or stenos of left ant cereb art +C2882405|T046|PT|I63.522|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of left anterior cerebral artery|Cerebral infarction due to unspecified occlusion or stenosis of left anterior cerebral artery +C4268490|T046|AB|I63.523|ICD10CM|Cereb infrc due to unsp occls or stenos of bi ant cereb art|Cereb infrc due to unsp occls or stenos of bi ant cereb art +C4268490|T046|PT|I63.523|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of bilateral anterior cerebral arteries|Cerebral infarction due to unspecified occlusion or stenosis of bilateral anterior cerebral arteries +C2882406|T046|AB|I63.529|ICD10CM|Cereb infrc d/t unsp occls or stenos of unsp ant cereb art|Cereb infrc d/t unsp occls or stenos of unsp ant cereb art +C2882406|T046|PT|I63.529|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of unspecified anterior cerebral artery|Cerebral infarction due to unspecified occlusion or stenosis of unspecified anterior cerebral artery +C2882407|T046|AB|I63.53|ICD10CM|Cereb infrc due to unsp occls or stenos of post cereb artery|Cereb infrc due to unsp occls or stenos of post cereb artery +C2882407|T046|HT|I63.53|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of posterior cerebral artery|Cerebral infarction due to unspecified occlusion or stenosis of posterior cerebral artery +C2882408|T047|AB|I63.531|ICD10CM|Cereb infrc d/t unsp occls or stenos of right post cereb art|Cereb infrc d/t unsp occls or stenos of right post cereb art +C2882408|T047|PT|I63.531|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of right posterior cerebral artery|Cerebral infarction due to unspecified occlusion or stenosis of right posterior cerebral artery +C2882409|T047|AB|I63.532|ICD10CM|Cereb infrc d/t unsp occls or stenos of left post cereb art|Cereb infrc d/t unsp occls or stenos of left post cereb art +C2882409|T047|PT|I63.532|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of left posterior cerebral artery|Cerebral infarction due to unspecified occlusion or stenosis of left posterior cerebral artery +C4268491|T046|AB|I63.533|ICD10CM|Cereb infrc due to unsp occls or stenos of bi post cereb art|Cereb infrc due to unsp occls or stenos of bi post cereb art +C2882410|T047|AB|I63.539|ICD10CM|Cereb infrc d/t unsp occls or stenos of unsp post cereb art|Cereb infrc d/t unsp occls or stenos of unsp post cereb art +C2882411|T047|AB|I63.54|ICD10CM|Cereb infrc due to unsp occls or stenosis of cereblr artery|Cereb infrc due to unsp occls or stenosis of cereblr artery +C2882411|T047|HT|I63.54|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of cerebellar artery|Cerebral infarction due to unspecified occlusion or stenosis of cerebellar artery +C2882412|T047|AB|I63.541|ICD10CM|Cereb infrc due to unsp occls or stenos of right cereblr art|Cereb infrc due to unsp occls or stenos of right cereblr art +C2882412|T047|PT|I63.541|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of right cerebellar artery|Cerebral infarction due to unspecified occlusion or stenosis of right cerebellar artery +C2882413|T047|AB|I63.542|ICD10CM|Cereb infrc due to unsp occls or stenos of left cereblr art|Cereb infrc due to unsp occls or stenos of left cereblr art +C2882413|T047|PT|I63.542|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of left cerebellar artery|Cerebral infarction due to unspecified occlusion or stenosis of left cerebellar artery +C4268492|T047|AB|I63.543|ICD10CM|Cereb infrc due to unsp occls or stenosis of bi cereblr art|Cereb infrc due to unsp occls or stenosis of bi cereblr art +C4268492|T047|PT|I63.543|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of bilateral cerebellar arteries|Cerebral infarction due to unspecified occlusion or stenosis of bilateral cerebellar arteries +C2882414|T047|AB|I63.549|ICD10CM|Cereb infrc due to unsp occls or stenos of unsp cereblr art|Cereb infrc due to unsp occls or stenos of unsp cereblr art +C2882414|T047|PT|I63.549|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of unspecified cerebellar artery|Cerebral infarction due to unspecified occlusion or stenosis of unspecified cerebellar artery +C2882415|T047|AB|I63.59|ICD10CM|Cereb infrc due to unsp occls or stenosis of cerebral artery|Cereb infrc due to unsp occls or stenosis of cerebral artery +C2882415|T047|PT|I63.59|ICD10CM|Cerebral infarction due to unspecified occlusion or stenosis of other cerebral artery|Cerebral infarction due to unspecified occlusion or stenosis of other cerebral artery +C0451676|T047|PT|I63.6|ICD10CM|Cerebral infarction due to cerebral venous thrombosis, nonpyogenic|Cerebral infarction due to cerebral venous thrombosis, nonpyogenic +C0451676|T047|PT|I63.6|ICD10|Cerebral infarction due to cerebral venous thrombosis, nonpyogenic|Cerebral infarction due to cerebral venous thrombosis, nonpyogenic +C0451676|T047|AB|I63.6|ICD10CM|Cerebral infrc due to cerebral venous thombos, nonpyogenic|Cerebral infrc due to cerebral venous thombos, nonpyogenic +C0348636|T047|AB|I63.8|ICD10CM|Other cerebral infarction|Other cerebral infarction +C0348636|T047|HT|I63.8|ICD10CM|Other cerebral infarction|Other cerebral infarction +C0348636|T047|PT|I63.8|ICD10|Other cerebral infarction|Other cerebral infarction +C0333559|T047|ET|I63.81|ICD10CM|Lacunar infarction|Lacunar infarction +C4552693|T047|AB|I63.81|ICD10CM|Other cereb infrc due to occls or stenosis of small artery|Other cereb infrc due to occls or stenosis of small artery +C4552693|T047|PT|I63.81|ICD10CM|Other cerebral infarction due to occlusion or stenosis of small artery|Other cerebral infarction due to occlusion or stenosis of small artery +C0348636|T047|PT|I63.89|ICD10CM|Other cerebral infarction|Other cerebral infarction +C0348636|T047|AB|I63.89|ICD10CM|Other cerebral infarction|Other cerebral infarction +C0007785|T047|PT|I63.9|ICD10CM|Cerebral infarction, unspecified|Cerebral infarction, unspecified +C0007785|T047|AB|I63.9|ICD10CM|Cerebral infarction, unspecified|Cerebral infarction, unspecified +C0007785|T047|PT|I63.9|ICD10|Cerebral infarction, unspecified|Cerebral infarction, unspecified +C0038454|T047|ET|I63.9|ICD10CM|Stroke NOS|Stroke NOS +C0038454|T047|PT|I64|ICD10|Stroke, not specified as haemorrhage or infarction|Stroke, not specified as haemorrhage or infarction +C0038454|T047|PT|I64|ICD10AE|Stroke, not specified as hemorrhage or infarction|Stroke, not specified as hemorrhage or infarction +C0265092|T047|ET|I65|ICD10CM|embolism of precerebral artery|embolism of precerebral artery +C0265089|T047|ET|I65|ICD10CM|narrowing of precerebral artery|narrowing of precerebral artery +C4290146|T047|ET|I65|ICD10CM|obstruction (complete) (partial) of precerebral artery|obstruction (complete) (partial) of precerebral artery +C0494611|T020|AB|I65|ICD10CM|Occls and stenosis of precerb art, not rslt in cereb infrc|Occls and stenosis of precerb art, not rslt in cereb infrc +C0494611|T020|HT|I65|ICD10CM|Occlusion and stenosis of precerebral arteries, not resulting in cerebral infarction|Occlusion and stenosis of precerebral arteries, not resulting in cerebral infarction +C0494611|T020|HT|I65|ICD10|Occlusion and stenosis of precerebral arteries, not resulting in cerebral infarction|Occlusion and stenosis of precerebral arteries, not resulting in cerebral infarction +C0265091|T047|ET|I65|ICD10CM|thrombosis of precerebral artery|thrombosis of precerebral artery +C0155724|T046|HT|I65.0|ICD10CM|Occlusion and stenosis of vertebral artery|Occlusion and stenosis of vertebral artery +C0155724|T046|AB|I65.0|ICD10CM|Occlusion and stenosis of vertebral artery|Occlusion and stenosis of vertebral artery +C0155724|T046|PT|I65.0|ICD10|Occlusion and stenosis of vertebral artery|Occlusion and stenosis of vertebral artery +C2882417|T047|AB|I65.01|ICD10CM|Occlusion and stenosis of right vertebral artery|Occlusion and stenosis of right vertebral artery +C2882417|T047|PT|I65.01|ICD10CM|Occlusion and stenosis of right vertebral artery|Occlusion and stenosis of right vertebral artery +C2882418|T047|AB|I65.02|ICD10CM|Occlusion and stenosis of left vertebral artery|Occlusion and stenosis of left vertebral artery +C2882418|T047|PT|I65.02|ICD10CM|Occlusion and stenosis of left vertebral artery|Occlusion and stenosis of left vertebral artery +C2882419|T047|AB|I65.03|ICD10CM|Occlusion and stenosis of bilateral vertebral arteries|Occlusion and stenosis of bilateral vertebral arteries +C2882419|T047|PT|I65.03|ICD10CM|Occlusion and stenosis of bilateral vertebral arteries|Occlusion and stenosis of bilateral vertebral arteries +C2882420|T047|AB|I65.09|ICD10CM|Occlusion and stenosis of unspecified vertebral artery|Occlusion and stenosis of unspecified vertebral artery +C2882420|T047|PT|I65.09|ICD10CM|Occlusion and stenosis of unspecified vertebral artery|Occlusion and stenosis of unspecified vertebral artery +C0265098|T190|PT|I65.1|ICD10|Occlusion and stenosis of basilar artery|Occlusion and stenosis of basilar artery +C0265098|T190|PT|I65.1|ICD10CM|Occlusion and stenosis of basilar artery|Occlusion and stenosis of basilar artery +C0265098|T190|AB|I65.1|ICD10CM|Occlusion and stenosis of basilar artery|Occlusion and stenosis of basilar artery +C0600126|T046|PT|I65.2|ICD10|Occlusion and stenosis of carotid artery|Occlusion and stenosis of carotid artery +C0600126|T046|HT|I65.2|ICD10CM|Occlusion and stenosis of carotid artery|Occlusion and stenosis of carotid artery +C0600126|T046|AB|I65.2|ICD10CM|Occlusion and stenosis of carotid artery|Occlusion and stenosis of carotid artery +C2882421|T047|AB|I65.21|ICD10CM|Occlusion and stenosis of right carotid artery|Occlusion and stenosis of right carotid artery +C2882421|T047|PT|I65.21|ICD10CM|Occlusion and stenosis of right carotid artery|Occlusion and stenosis of right carotid artery +C2882422|T047|AB|I65.22|ICD10CM|Occlusion and stenosis of left carotid artery|Occlusion and stenosis of left carotid artery +C2882422|T047|PT|I65.22|ICD10CM|Occlusion and stenosis of left carotid artery|Occlusion and stenosis of left carotid artery +C2882423|T047|AB|I65.23|ICD10CM|Occlusion and stenosis of bilateral carotid arteries|Occlusion and stenosis of bilateral carotid arteries +C2882423|T047|PT|I65.23|ICD10CM|Occlusion and stenosis of bilateral carotid arteries|Occlusion and stenosis of bilateral carotid arteries +C2882424|T047|AB|I65.29|ICD10CM|Occlusion and stenosis of unspecified carotid artery|Occlusion and stenosis of unspecified carotid artery +C2882424|T047|PT|I65.29|ICD10CM|Occlusion and stenosis of unspecified carotid artery|Occlusion and stenosis of unspecified carotid artery +C0155725|T047|PT|I65.3|ICD10|Occlusion and stenosis of multiple and bilateral precerebral arteries|Occlusion and stenosis of multiple and bilateral precerebral arteries +C0348637|T046|AB|I65.8|ICD10CM|Occlusion and stenosis of other precerebral arteries|Occlusion and stenosis of other precerebral arteries +C0348637|T046|PT|I65.8|ICD10CM|Occlusion and stenosis of other precerebral arteries|Occlusion and stenosis of other precerebral arteries +C0348637|T046|PT|I65.8|ICD10|Occlusion and stenosis of other precerebral artery|Occlusion and stenosis of other precerebral artery +C0155727|T047|ET|I65.9|ICD10CM|Occlusion and stenosis of precerebral artery NOS|Occlusion and stenosis of precerebral artery NOS +C0155727|T047|PT|I65.9|ICD10CM|Occlusion and stenosis of unspecified precerebral artery|Occlusion and stenosis of unspecified precerebral artery +C0155727|T047|AB|I65.9|ICD10CM|Occlusion and stenosis of unspecified precerebral artery|Occlusion and stenosis of unspecified precerebral artery +C0155727|T047|PT|I65.9|ICD10|Occlusion and stenosis of unspecified precerebral artery|Occlusion and stenosis of unspecified precerebral artery +C0007780|T047|ET|I66|ICD10CM|embolism of cerebral artery|embolism of cerebral artery +C1410909|T033|ET|I66|ICD10CM|narrowing of cerebral artery|narrowing of cerebral artery +C4290147|T047|ET|I66|ICD10CM|obstruction (complete) (partial) of cerebral artery|obstruction (complete) (partial) of cerebral artery +C0348832|T047|AB|I66|ICD10CM|Occls and stenosis of cereb art, not rslt in cerebral infrc|Occls and stenosis of cereb art, not rslt in cerebral infrc +C0348832|T047|HT|I66|ICD10CM|Occlusion and stenosis of cerebral arteries, not resulting in cerebral infarction|Occlusion and stenosis of cerebral arteries, not resulting in cerebral infarction +C0348832|T047|HT|I66|ICD10|Occlusion and stenosis of cerebral arteries, not resulting in cerebral infarction|Occlusion and stenosis of cerebral arteries, not resulting in cerebral infarction +C0795687|T047|ET|I66|ICD10CM|thrombosis of cerebral artery|thrombosis of cerebral artery +C0348833|T047|PT|I66.0|ICD10|Occlusion and stenosis of middle cerebral artery|Occlusion and stenosis of middle cerebral artery +C0348833|T047|HT|I66.0|ICD10CM|Occlusion and stenosis of middle cerebral artery|Occlusion and stenosis of middle cerebral artery +C0348833|T047|AB|I66.0|ICD10CM|Occlusion and stenosis of middle cerebral artery|Occlusion and stenosis of middle cerebral artery +C2882426|T047|AB|I66.01|ICD10CM|Occlusion and stenosis of right middle cerebral artery|Occlusion and stenosis of right middle cerebral artery +C2882426|T047|PT|I66.01|ICD10CM|Occlusion and stenosis of right middle cerebral artery|Occlusion and stenosis of right middle cerebral artery +C2882427|T047|AB|I66.02|ICD10CM|Occlusion and stenosis of left middle cerebral artery|Occlusion and stenosis of left middle cerebral artery +C2882427|T047|PT|I66.02|ICD10CM|Occlusion and stenosis of left middle cerebral artery|Occlusion and stenosis of left middle cerebral artery +C2882428|T047|AB|I66.03|ICD10CM|Occlusion and stenosis of bilateral middle cerebral arteries|Occlusion and stenosis of bilateral middle cerebral arteries +C2882428|T047|PT|I66.03|ICD10CM|Occlusion and stenosis of bilateral middle cerebral arteries|Occlusion and stenosis of bilateral middle cerebral arteries +C2882429|T047|AB|I66.09|ICD10CM|Occlusion and stenosis of unspecified middle cerebral artery|Occlusion and stenosis of unspecified middle cerebral artery +C2882429|T047|PT|I66.09|ICD10CM|Occlusion and stenosis of unspecified middle cerebral artery|Occlusion and stenosis of unspecified middle cerebral artery +C0348834|T047|HT|I66.1|ICD10CM|Occlusion and stenosis of anterior cerebral artery|Occlusion and stenosis of anterior cerebral artery +C0348834|T047|AB|I66.1|ICD10CM|Occlusion and stenosis of anterior cerebral artery|Occlusion and stenosis of anterior cerebral artery +C0348834|T047|PT|I66.1|ICD10|Occlusion and stenosis of anterior cerebral artery|Occlusion and stenosis of anterior cerebral artery +C2882430|T047|AB|I66.11|ICD10CM|Occlusion and stenosis of right anterior cerebral artery|Occlusion and stenosis of right anterior cerebral artery +C2882430|T047|PT|I66.11|ICD10CM|Occlusion and stenosis of right anterior cerebral artery|Occlusion and stenosis of right anterior cerebral artery +C2882431|T047|AB|I66.12|ICD10CM|Occlusion and stenosis of left anterior cerebral artery|Occlusion and stenosis of left anterior cerebral artery +C2882431|T047|PT|I66.12|ICD10CM|Occlusion and stenosis of left anterior cerebral artery|Occlusion and stenosis of left anterior cerebral artery +C2882432|T047|AB|I66.13|ICD10CM|Occlusion and stenosis of bi anterior cerebral arteries|Occlusion and stenosis of bi anterior cerebral arteries +C2882432|T047|PT|I66.13|ICD10CM|Occlusion and stenosis of bilateral anterior cerebral arteries|Occlusion and stenosis of bilateral anterior cerebral arteries +C2882433|T047|AB|I66.19|ICD10CM|Occlusion and stenosis of unsp anterior cerebral artery|Occlusion and stenosis of unsp anterior cerebral artery +C2882433|T047|PT|I66.19|ICD10CM|Occlusion and stenosis of unspecified anterior cerebral artery|Occlusion and stenosis of unspecified anterior cerebral artery +C0348835|T047|PT|I66.2|ICD10|Occlusion and stenosis of posterior cerebral artery|Occlusion and stenosis of posterior cerebral artery +C0348835|T047|HT|I66.2|ICD10CM|Occlusion and stenosis of posterior cerebral artery|Occlusion and stenosis of posterior cerebral artery +C0348835|T047|AB|I66.2|ICD10CM|Occlusion and stenosis of posterior cerebral artery|Occlusion and stenosis of posterior cerebral artery +C2882434|T047|AB|I66.21|ICD10CM|Occlusion and stenosis of right posterior cerebral artery|Occlusion and stenosis of right posterior cerebral artery +C2882434|T047|PT|I66.21|ICD10CM|Occlusion and stenosis of right posterior cerebral artery|Occlusion and stenosis of right posterior cerebral artery +C2882435|T047|AB|I66.22|ICD10CM|Occlusion and stenosis of left posterior cerebral artery|Occlusion and stenosis of left posterior cerebral artery +C2882435|T047|PT|I66.22|ICD10CM|Occlusion and stenosis of left posterior cerebral artery|Occlusion and stenosis of left posterior cerebral artery +C2882436|T047|AB|I66.23|ICD10CM|Occlusion and stenosis of bi posterior cerebral arteries|Occlusion and stenosis of bi posterior cerebral arteries +C2882436|T047|PT|I66.23|ICD10CM|Occlusion and stenosis of bilateral posterior cerebral arteries|Occlusion and stenosis of bilateral posterior cerebral arteries +C2882437|T047|AB|I66.29|ICD10CM|Occlusion and stenosis of unsp posterior cerebral artery|Occlusion and stenosis of unsp posterior cerebral artery +C2882437|T047|PT|I66.29|ICD10CM|Occlusion and stenosis of unspecified posterior cerebral artery|Occlusion and stenosis of unspecified posterior cerebral artery +C0348836|T047|PT|I66.3|ICD10CM|Occlusion and stenosis of cerebellar arteries|Occlusion and stenosis of cerebellar arteries +C0348836|T047|AB|I66.3|ICD10CM|Occlusion and stenosis of cerebellar arteries|Occlusion and stenosis of cerebellar arteries +C0348836|T047|PT|I66.3|ICD10|Occlusion and stenosis of cerebellar arteries|Occlusion and stenosis of cerebellar arteries +C0348837|T020|PT|I66.4|ICD10|Occlusion and stenosis of multiple and bilateral cerebral arteries|Occlusion and stenosis of multiple and bilateral cerebral arteries +C0348638|T020|AB|I66.8|ICD10CM|Occlusion and stenosis of other cerebral arteries|Occlusion and stenosis of other cerebral arteries +C0348638|T020|PT|I66.8|ICD10CM|Occlusion and stenosis of other cerebral arteries|Occlusion and stenosis of other cerebral arteries +C0348638|T020|PT|I66.8|ICD10|Occlusion and stenosis of other cerebral artery|Occlusion and stenosis of other cerebral artery +C2882438|T047|ET|I66.8|ICD10CM|Occlusion and stenosis of perforating arteries|Occlusion and stenosis of perforating arteries +C0494612|T020|PT|I66.9|ICD10CM|Occlusion and stenosis of unspecified cerebral artery|Occlusion and stenosis of unspecified cerebral artery +C0494612|T020|AB|I66.9|ICD10CM|Occlusion and stenosis of unspecified cerebral artery|Occlusion and stenosis of unspecified cerebral artery +C0494612|T020|PT|I66.9|ICD10|Occlusion and stenosis of unspecified cerebral artery|Occlusion and stenosis of unspecified cerebral artery +C0393949|T047|HT|I67|ICD10|Other cerebrovascular diseases|Other cerebrovascular diseases +C0393949|T047|AB|I67|ICD10CM|Other cerebrovascular diseases|Other cerebrovascular diseases +C0393949|T047|HT|I67|ICD10CM|Other cerebrovascular diseases|Other cerebrovascular diseases +C0348838|T020|PT|I67.0|ICD10CM|Dissection of cerebral arteries, nonruptured|Dissection of cerebral arteries, nonruptured +C0348838|T020|AB|I67.0|ICD10CM|Dissection of cerebral arteries, nonruptured|Dissection of cerebral arteries, nonruptured +C0348838|T020|PT|I67.0|ICD10|Dissection of cerebral arteries, nonruptured|Dissection of cerebral arteries, nonruptured +C0917996|T047|ET|I67.1|ICD10CM|Cerebral aneurysm NOS|Cerebral aneurysm NOS +C0155730|T190|PT|I67.1|ICD10|Cerebral aneurysm, nonruptured|Cerebral aneurysm, nonruptured +C0155730|T190|PT|I67.1|ICD10CM|Cerebral aneurysm, nonruptured|Cerebral aneurysm, nonruptured +C0155730|T190|AB|I67.1|ICD10CM|Cerebral aneurysm, nonruptured|Cerebral aneurysm, nonruptured +C2882439|T020|ET|I67.1|ICD10CM|Cerebral arteriovenous fistula, acquired|Cerebral arteriovenous fistula, acquired +C2882440|T047|ET|I67.1|ICD10CM|Internal carotid artery aneurysm, intracranial portion|Internal carotid artery aneurysm, intracranial portion +C0264967|T047|ET|I67.1|ICD10CM|Internal carotid artery aneurysm, NOS|Internal carotid artery aneurysm, NOS +C2882441|T047|ET|I67.2|ICD10CM|Atheroma of cerebral and precerebral arteries|Atheroma of cerebral and precerebral arteries +C0007775|T047|PT|I67.2|ICD10CM|Cerebral atherosclerosis|Cerebral atherosclerosis +C0007775|T047|AB|I67.2|ICD10CM|Cerebral atherosclerosis|Cerebral atherosclerosis +C0007775|T047|PT|I67.2|ICD10|Cerebral atherosclerosis|Cerebral atherosclerosis +C0270786|T047|ET|I67.3|ICD10CM|Binswanger's disease|Binswanger's disease +C0494613|T046|PT|I67.3|ICD10CM|Progressive vascular leukoencephalopathy|Progressive vascular leukoencephalopathy +C0494613|T046|AB|I67.3|ICD10CM|Progressive vascular leukoencephalopathy|Progressive vascular leukoencephalopathy +C0494613|T046|PT|I67.3|ICD10|Progressive vascular leukoencephalopathy|Progressive vascular leukoencephalopathy +C0151620|T047|PT|I67.4|ICD10|Hypertensive encephalopathy|Hypertensive encephalopathy +C0151620|T047|PT|I67.4|ICD10CM|Hypertensive encephalopathy|Hypertensive encephalopathy +C0151620|T047|AB|I67.4|ICD10CM|Hypertensive encephalopathy|Hypertensive encephalopathy +C0026654|T047|PT|I67.5|ICD10|Moyamoya disease|Moyamoya disease +C0026654|T047|PT|I67.5|ICD10CM|Moyamoya disease|Moyamoya disease +C0026654|T047|AB|I67.5|ICD10CM|Moyamoya disease|Moyamoya disease +C2882442|T046|ET|I67.6|ICD10CM|Nonpyogenic thrombosis of cerebral vein|Nonpyogenic thrombosis of cerebral vein +C0155731|T047|ET|I67.6|ICD10CM|Nonpyogenic thrombosis of intracranial venous sinus|Nonpyogenic thrombosis of intracranial venous sinus +C0155731|T047|PT|I67.6|ICD10CM|Nonpyogenic thrombosis of intracranial venous system|Nonpyogenic thrombosis of intracranial venous system +C0155731|T047|AB|I67.6|ICD10CM|Nonpyogenic thrombosis of intracranial venous system|Nonpyogenic thrombosis of intracranial venous system +C0155731|T047|PT|I67.6|ICD10|Nonpyogenic thrombosis of intracranial venous system|Nonpyogenic thrombosis of intracranial venous system +C0494615|T047|PT|I67.7|ICD10|Cerebral arteritis, not elsewhere classified|Cerebral arteritis, not elsewhere classified +C0494615|T047|PT|I67.7|ICD10CM|Cerebral arteritis, not elsewhere classified|Cerebral arteritis, not elsewhere classified +C0494615|T047|AB|I67.7|ICD10CM|Cerebral arteritis, not elsewhere classified|Cerebral arteritis, not elsewhere classified +C0338589|T047|ET|I67.7|ICD10CM|Granulomatous angiitis of the nervous system|Granulomatous angiitis of the nervous system +C0348639|T047|HT|I67.8|ICD10CM|Other specified cerebrovascular diseases|Other specified cerebrovascular diseases +C0348639|T047|AB|I67.8|ICD10CM|Other specified cerebrovascular diseases|Other specified cerebrovascular diseases +C0348639|T047|PT|I67.8|ICD10|Other specified cerebrovascular diseases|Other specified cerebrovascular diseases +C0265115|T047|PT|I67.81|ICD10CM|Acute cerebrovascular insufficiency|Acute cerebrovascular insufficiency +C0265115|T047|AB|I67.81|ICD10CM|Acute cerebrovascular insufficiency|Acute cerebrovascular insufficiency +C3264376|T047|ET|I67.81|ICD10CM|Acute cerebrovascular insufficiency unspecified as to location or reversibility|Acute cerebrovascular insufficiency unspecified as to location or reversibility +C0917798|T046|PT|I67.82|ICD10CM|Cerebral ischemia|Cerebral ischemia +C0917798|T046|AB|I67.82|ICD10CM|Cerebral ischemia|Cerebral ischemia +C0265116|T047|ET|I67.82|ICD10CM|Chronic cerebral ischemia|Chronic cerebral ischemia +C3160858|T047|PT|I67.83|ICD10CM|Posterior reversible encephalopathy syndrome|Posterior reversible encephalopathy syndrome +C3160858|T047|AB|I67.83|ICD10CM|Posterior reversible encephalopathy syndrome|Posterior reversible encephalopathy syndrome +C3160858|T047|ET|I67.83|ICD10CM|PRES|PRES +C3264377|T047|HT|I67.84|ICD10CM|Cerebral vasospasm and vasoconstriction|Cerebral vasospasm and vasoconstriction +C3264377|T047|AB|I67.84|ICD10CM|Cerebral vasospasm and vasoconstriction|Cerebral vasospasm and vasoconstriction +C1142239|T047|ET|I67.841|ICD10CM|Call-Fleming syndrome|Call-Fleming syndrome +C3264378|T047|PT|I67.841|ICD10CM|Reversible cerebrovascular vasoconstriction syndrome|Reversible cerebrovascular vasoconstriction syndrome +C3264378|T047|AB|I67.841|ICD10CM|Reversible cerebrovascular vasoconstriction syndrome|Reversible cerebrovascular vasoconstriction syndrome +C3264379|T047|AB|I67.848|ICD10CM|Other cerebrovascular vasospasm and vasoconstriction|Other cerebrovascular vasospasm and vasoconstriction +C3264379|T047|PT|I67.848|ICD10CM|Other cerebrovascular vasospasm and vasoconstriction|Other cerebrovascular vasospasm and vasoconstriction +C4702816|T047|AB|I67.85|ICD10CM|Hereditary cerebrovascular diseases|Hereditary cerebrovascular diseases +C4702816|T047|HT|I67.85|ICD10CM|Hereditary cerebrovascular diseases|Hereditary cerebrovascular diseases +C0751587|T047|ET|I67.850|ICD10CM|CADASIL|CADASIL +C0751587|T047|AB|I67.850|ICD10CM|Cereb autosom dom artopath w subcort infarcts & leukoenceph|Cereb autosom dom artopath w subcort infarcts & leukoenceph +C0751587|T047|PT|I67.850|ICD10CM|Cerebral autosomal dominant arteriopathy with subcortical infarcts and leukoencephalopathy|Cerebral autosomal dominant arteriopathy with subcortical infarcts and leukoencephalopathy +C4552694|T047|AB|I67.858|ICD10CM|Other hereditary cerebrovascular disease|Other hereditary cerebrovascular disease +C4552694|T047|PT|I67.858|ICD10CM|Other hereditary cerebrovascular disease|Other hereditary cerebrovascular disease +C0393949|T047|AB|I67.89|ICD10CM|Other cerebrovascular disease|Other cerebrovascular disease +C0393949|T047|PT|I67.89|ICD10CM|Other cerebrovascular disease|Other cerebrovascular disease +C0007820|T047|PT|I67.9|ICD10|Cerebrovascular disease, unspecified|Cerebrovascular disease, unspecified +C0007820|T047|PT|I67.9|ICD10CM|Cerebrovascular disease, unspecified|Cerebrovascular disease, unspecified +C0007820|T047|AB|I67.9|ICD10CM|Cerebrovascular disease, unspecified|Cerebrovascular disease, unspecified +C0694501|T047|HT|I68|ICD10|Cerebrovascular disorders in diseases classified elsewhere|Cerebrovascular disorders in diseases classified elsewhere +C0694501|T047|HT|I68|ICD10CM|Cerebrovascular disorders in diseases classified elsewhere|Cerebrovascular disorders in diseases classified elsewhere +C0694501|T047|AB|I68|ICD10CM|Cerebrovascular disorders in diseases classified elsewhere|Cerebrovascular disorders in diseases classified elsewhere +C0085220|T047|PT|I68.0|ICD10|Cerebral amyloid angiopathy|Cerebral amyloid angiopathy +C0085220|T047|PT|I68.0|ICD10CM|Cerebral amyloid angiopathy|Cerebral amyloid angiopathy +C0085220|T047|AB|I68.0|ICD10CM|Cerebral amyloid angiopathy|Cerebral amyloid angiopathy +C0494616|T047|PT|I68.1|ICD10|Cerebral arteritis in infectious and parasitic diseases classified elsewhere|Cerebral arteritis in infectious and parasitic diseases classified elsewhere +C0348641|T047|PT|I68.2|ICD10CM|Cerebral arteritis in other diseases classified elsewhere|Cerebral arteritis in other diseases classified elsewhere +C0348641|T047|AB|I68.2|ICD10CM|Cerebral arteritis in other diseases classified elsewhere|Cerebral arteritis in other diseases classified elsewhere +C0348641|T047|PT|I68.2|ICD10|Cerebral arteritis in other diseases classified elsewhere|Cerebral arteritis in other diseases classified elsewhere +C0348642|T047|AB|I68.8|ICD10CM|Oth cerebrovascular disorders in diseases classd elswhr|Oth cerebrovascular disorders in diseases classd elswhr +C0348642|T047|PT|I68.8|ICD10CM|Other cerebrovascular disorders in diseases classified elsewhere|Other cerebrovascular disorders in diseases classified elsewhere +C0348642|T047|PT|I68.8|ICD10|Other cerebrovascular disorders in diseases classified elsewhere|Other cerebrovascular disorders in diseases classified elsewhere +C0155732|T046|HT|I69|ICD10|Sequelae of cerebrovascular disease|Sequelae of cerebrovascular disease +C0155732|T046|HT|I69|ICD10CM|Sequelae of cerebrovascular disease|Sequelae of cerebrovascular disease +C0155732|T046|AB|I69|ICD10CM|Sequelae of cerebrovascular disease|Sequelae of cerebrovascular disease +C1390293|T047|AB|I69.0|ICD10CM|Sequelae of nontraumatic subarachnoid hemorrhage|Sequelae of nontraumatic subarachnoid hemorrhage +C1390293|T047|HT|I69.0|ICD10CM|Sequelae of nontraumatic subarachnoid hemorrhage|Sequelae of nontraumatic subarachnoid hemorrhage +C0475530|T046|PT|I69.0|ICD10|Sequelae of subarachnoid haemorrhage|Sequelae of subarachnoid haemorrhage +C0475530|T046|PT|I69.0|ICD10AE|Sequelae of subarachnoid hemorrhage|Sequelae of subarachnoid hemorrhage +C2882443|T047|AB|I69.00|ICD10CM|Unspecified sequelae of nontraumatic subarachnoid hemorrhage|Unspecified sequelae of nontraumatic subarachnoid hemorrhage +C2882443|T047|PT|I69.00|ICD10CM|Unspecified sequelae of nontraumatic subarachnoid hemorrhage|Unspecified sequelae of nontraumatic subarachnoid hemorrhage +C2882444|T047|HT|I69.01|ICD10CM|Cognitive deficits following nontraumatic subarachnoid hemorrhage|Cognitive deficits following nontraumatic subarachnoid hemorrhage +C2882444|T047|AB|I69.01|ICD10CM|Cognitive deficits following ntrm subarachnoid hemorrhage|Cognitive deficits following ntrm subarachnoid hemorrhage +C4268493|T048|PT|I69.010|ICD10CM|Attention and concentration deficit following nontraumatic subarachnoid hemorrhage|Attention and concentration deficit following nontraumatic subarachnoid hemorrhage +C4268493|T048|AB|I69.010|ICD10CM|Attn and concentration deficit following ntrm subarach hemor|Attn and concentration deficit following ntrm subarach hemor +C4268494|T048|PT|I69.011|ICD10CM|Memory deficit following nontraumatic subarachnoid hemorrhage|Memory deficit following nontraumatic subarachnoid hemorrhage +C4268494|T048|AB|I69.011|ICD10CM|Memory deficit following ntrm subarachnoid hemorrhage|Memory deficit following ntrm subarachnoid hemorrhage +C4268495|T047|AB|I69.012|ICD10CM|Vis def/sptl nglct following ntrm subarachnoid hemorrhage|Vis def/sptl nglct following ntrm subarachnoid hemorrhage +C4268495|T047|PT|I69.012|ICD10CM|Visuospatial deficit and spatial neglect following nontraumatic subarachnoid hemorrhage|Visuospatial deficit and spatial neglect following nontraumatic subarachnoid hemorrhage +C4268496|T048|PT|I69.013|ICD10CM|Psychomotor deficit following nontraumatic subarachnoid hemorrhage|Psychomotor deficit following nontraumatic subarachnoid hemorrhage +C4268496|T048|AB|I69.013|ICD10CM|Psychomotor deficit following ntrm subarachnoid hemorrhage|Psychomotor deficit following ntrm subarachnoid hemorrhage +C4268497|T048|AB|I69.014|ICD10CM|Fntl lb and exec fcn def following ntrm subarach hemorrhage|Fntl lb and exec fcn def following ntrm subarach hemorrhage +C4268497|T048|PT|I69.014|ICD10CM|Frontal lobe and executive function deficit following nontraumatic subarachnoid hemorrhage|Frontal lobe and executive function deficit following nontraumatic subarachnoid hemorrhage +C4268498|T048|AB|I69.015|ICD10CM|Cognitive social or emo def following ntrm subarach hemor|Cognitive social or emo def following ntrm subarach hemor +C4268498|T048|PT|I69.015|ICD10CM|Cognitive social or emotional deficit following nontraumatic subarachnoid hemorrhage|Cognitive social or emotional deficit following nontraumatic subarachnoid hemorrhage +C4268499|T048|AB|I69.018|ICD10CM|Other symp and signs w cogn fnctns fol ntrm subarach hemor|Other symp and signs w cogn fnctns fol ntrm subarach hemor +C4268500|T048|AB|I69.019|ICD10CM|Unsp symp and signs w cogn fnctns fol ntrm subarach hemor|Unsp symp and signs w cogn fnctns fol ntrm subarach hemor +C2882445|T047|HT|I69.02|ICD10CM|Speech and language deficits following nontraumatic subarachnoid hemorrhage|Speech and language deficits following nontraumatic subarachnoid hemorrhage +C2882445|T047|AB|I69.02|ICD10CM|Speech/lang deficits following ntrm subarachnoid hemorrhage|Speech/lang deficits following ntrm subarachnoid hemorrhage +C2882446|T047|AB|I69.020|ICD10CM|Aphasia following nontraumatic subarachnoid hemorrhage|Aphasia following nontraumatic subarachnoid hemorrhage +C2882446|T047|PT|I69.020|ICD10CM|Aphasia following nontraumatic subarachnoid hemorrhage|Aphasia following nontraumatic subarachnoid hemorrhage +C2882447|T047|AB|I69.021|ICD10CM|Dysphasia following nontraumatic subarachnoid hemorrhage|Dysphasia following nontraumatic subarachnoid hemorrhage +C2882447|T047|PT|I69.021|ICD10CM|Dysphasia following nontraumatic subarachnoid hemorrhage|Dysphasia following nontraumatic subarachnoid hemorrhage +C2882448|T047|AB|I69.022|ICD10CM|Dysarthria following nontraumatic subarachnoid hemorrhage|Dysarthria following nontraumatic subarachnoid hemorrhage +C2882448|T047|PT|I69.022|ICD10CM|Dysarthria following nontraumatic subarachnoid hemorrhage|Dysarthria following nontraumatic subarachnoid hemorrhage +C2882449|T047|PT|I69.023|ICD10CM|Fluency disorder following nontraumatic subarachnoid hemorrhage|Fluency disorder following nontraumatic subarachnoid hemorrhage +C2882449|T047|AB|I69.023|ICD10CM|Fluency disorder following ntrm subarachnoid hemorrhage|Fluency disorder following ntrm subarachnoid hemorrhage +C2882654|T047|ET|I69.023|ICD10CM|Stuttering following nontraumatic subarachnoid hemorrhage|Stuttering following nontraumatic subarachnoid hemorrhage +C2882450|T047|AB|I69.028|ICD10CM|Oth speech/lang deficits following ntrm subarach hemorrhage|Oth speech/lang deficits following ntrm subarach hemorrhage +C2882450|T047|PT|I69.028|ICD10CM|Other speech and language deficits following nontraumatic subarachnoid hemorrhage|Other speech and language deficits following nontraumatic subarachnoid hemorrhage +C2882451|T047|HT|I69.03|ICD10CM|Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage|Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage +C2882451|T047|AB|I69.03|ICD10CM|Monoplg upr lmb following ntrm subarachnoid hemorrhage|Monoplg upr lmb following ntrm subarachnoid hemorrhage +C2882452|T047|AB|I69.031|ICD10CM|Monoplg upr lmb fol ntrm subarach hemor aff right dom side|Monoplg upr lmb fol ntrm subarach hemor aff right dom side +C2882453|T047|PT|I69.032|ICD10CM|Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting left dominant side|Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting left dominant side +C2882453|T047|AB|I69.032|ICD10CM|Monoplg upr lmb fol ntrm subarach hemor aff left dom side|Monoplg upr lmb fol ntrm subarach hemor aff left dom side +C2882454|T047|AB|I69.033|ICD10CM|Monoplg upr lmb fol ntrm subarach hemor aff r nondom side|Monoplg upr lmb fol ntrm subarach hemor aff r nondom side +C2882455|T047|AB|I69.034|ICD10CM|Monoplg upr lmb fol ntrm subarach hemor aff left nondom side|Monoplg upr lmb fol ntrm subarach hemor aff left nondom side +C2882456|T047|PT|I69.039|ICD10CM|Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting unspecified side|Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting unspecified side +C2882456|T047|AB|I69.039|ICD10CM|Monoplg upr lmb following ntrm subarach hemor aff unsp side|Monoplg upr lmb following ntrm subarach hemor aff unsp side +C2882457|T047|HT|I69.04|ICD10CM|Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage|Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage +C2882457|T047|AB|I69.04|ICD10CM|Monoplg low lmb following ntrm subarachnoid hemorrhage|Monoplg low lmb following ntrm subarachnoid hemorrhage +C2882458|T047|AB|I69.041|ICD10CM|Monoplg low lmb fol ntrm subarach hemor aff right dom side|Monoplg low lmb fol ntrm subarach hemor aff right dom side +C2882459|T047|PT|I69.042|ICD10CM|Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting left dominant side|Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting left dominant side +C2882459|T047|AB|I69.042|ICD10CM|Monoplg low lmb fol ntrm subarach hemor aff left dom side|Monoplg low lmb fol ntrm subarach hemor aff left dom side +C2882460|T047|AB|I69.043|ICD10CM|Monoplg low lmb fol ntrm subarach hemor aff r nondom side|Monoplg low lmb fol ntrm subarach hemor aff r nondom side +C2882461|T047|AB|I69.044|ICD10CM|Monoplg low lmb fol ntrm subarach hemor aff left nondom side|Monoplg low lmb fol ntrm subarach hemor aff left nondom side +C2882462|T047|PT|I69.049|ICD10CM|Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting unspecified side|Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting unspecified side +C2882462|T047|AB|I69.049|ICD10CM|Monoplg low lmb following ntrm subarach hemor aff unsp side|Monoplg low lmb following ntrm subarach hemor aff unsp side +C2882463|T047|HT|I69.05|ICD10CM|Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage|Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage +C2882463|T047|AB|I69.05|ICD10CM|Hemiplga following nontraumatic subarachnoid hemorrhage|Hemiplga following nontraumatic subarachnoid hemorrhage +C2882464|T047|AB|I69.051|ICD10CM|Hemiplga fol ntrm subarach hemor aff right dominant side|Hemiplga fol ntrm subarach hemor aff right dominant side +C2882465|T047|AB|I69.052|ICD10CM|Hemiplga fol ntrm subarach hemor aff left dominant side|Hemiplga fol ntrm subarach hemor aff left dominant side +C2882466|T047|AB|I69.053|ICD10CM|Hemiplga following ntrm subarach hemor aff right nondom side|Hemiplga following ntrm subarach hemor aff right nondom side +C2882467|T047|AB|I69.054|ICD10CM|Hemiplga following ntrm subarach hemor aff left nondom side|Hemiplga following ntrm subarach hemor aff left nondom side +C2882468|T047|PT|I69.059|ICD10CM|Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting unspecified side|Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting unspecified side +C2882468|T047|AB|I69.059|ICD10CM|Hemiplga following ntrm subarach hemor affecting unsp side|Hemiplga following ntrm subarach hemor affecting unsp side +C2882469|T047|AB|I69.06|ICD10CM|Oth paralytic syndrome following ntrm subarach hemorrhage|Oth paralytic syndrome following ntrm subarach hemorrhage +C2882469|T047|HT|I69.06|ICD10CM|Other paralytic syndrome following nontraumatic subarachnoid hemorrhage|Other paralytic syndrome following nontraumatic subarachnoid hemorrhage +C2882470|T047|AB|I69.061|ICD10CM|Oth parlyt synd fol ntrm subarach hemor aff right dom side|Oth parlyt synd fol ntrm subarach hemor aff right dom side +C2882471|T047|AB|I69.062|ICD10CM|Oth parlyt synd fol ntrm subarach hemor aff left dom side|Oth parlyt synd fol ntrm subarach hemor aff left dom side +C2882471|T047|PT|I69.062|ICD10CM|Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting left dominant side|Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting left dominant side +C2882472|T047|AB|I69.063|ICD10CM|Oth parlyt synd fol ntrm subarach hemor aff r nondom side|Oth parlyt synd fol ntrm subarach hemor aff r nondom side +C2882473|T047|AB|I69.064|ICD10CM|Oth parlyt synd fol ntrm subarach hemor aff left nondom side|Oth parlyt synd fol ntrm subarach hemor aff left nondom side +C2882474|T047|AB|I69.065|ICD10CM|Oth paralytic syndrome following ntrm subarach hemor, bi|Oth paralytic syndrome following ntrm subarach hemor, bi +C2882474|T047|PT|I69.065|ICD10CM|Other paralytic syndrome following nontraumatic subarachnoid hemorrhage, bilateral|Other paralytic syndrome following nontraumatic subarachnoid hemorrhage, bilateral +C2882475|T047|AB|I69.069|ICD10CM|Oth paralytic syndrome fol ntrm subarach hemor aff unsp side|Oth paralytic syndrome fol ntrm subarach hemor aff unsp side +C2882475|T047|PT|I69.069|ICD10CM|Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting unspecified side|Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting unspecified side +C2882476|T047|AB|I69.09|ICD10CM|Other sequelae of nontraumatic subarachnoid hemorrhage|Other sequelae of nontraumatic subarachnoid hemorrhage +C2882476|T047|HT|I69.09|ICD10CM|Other sequelae of nontraumatic subarachnoid hemorrhage|Other sequelae of nontraumatic subarachnoid hemorrhage +C2882477|T047|AB|I69.090|ICD10CM|Apraxia following nontraumatic subarachnoid hemorrhage|Apraxia following nontraumatic subarachnoid hemorrhage +C2882477|T047|PT|I69.090|ICD10CM|Apraxia following nontraumatic subarachnoid hemorrhage|Apraxia following nontraumatic subarachnoid hemorrhage +C2882478|T047|AB|I69.091|ICD10CM|Dysphagia following nontraumatic subarachnoid hemorrhage|Dysphagia following nontraumatic subarachnoid hemorrhage +C2882478|T047|PT|I69.091|ICD10CM|Dysphagia following nontraumatic subarachnoid hemorrhage|Dysphagia following nontraumatic subarachnoid hemorrhage +C2976975|T033|ET|I69.092|ICD10CM|Facial droop following nontraumatic subarachnoid hemorrhage|Facial droop following nontraumatic subarachnoid hemorrhage +C2882479|T047|PT|I69.092|ICD10CM|Facial weakness following nontraumatic subarachnoid hemorrhage|Facial weakness following nontraumatic subarachnoid hemorrhage +C2882479|T047|AB|I69.092|ICD10CM|Facial weakness following ntrm subarachnoid hemorrhage|Facial weakness following ntrm subarachnoid hemorrhage +C2882480|T047|AB|I69.093|ICD10CM|Ataxia following nontraumatic subarachnoid hemorrhage|Ataxia following nontraumatic subarachnoid hemorrhage +C2882480|T047|PT|I69.093|ICD10CM|Ataxia following nontraumatic subarachnoid hemorrhage|Ataxia following nontraumatic subarachnoid hemorrhage +C2882481|T033|ET|I69.098|ICD10CM|Alterations of sensation following nontraumatic subarachnoid hemorrhage|Alterations of sensation following nontraumatic subarachnoid hemorrhage +C2882482|T046|ET|I69.098|ICD10CM|Disturbance of vision following nontraumatic subarachnoid hemorrhage|Disturbance of vision following nontraumatic subarachnoid hemorrhage +C2882483|T047|AB|I69.098|ICD10CM|Oth sequelae following nontraumatic subarachnoid hemorrhage|Oth sequelae following nontraumatic subarachnoid hemorrhage +C2882483|T047|PT|I69.098|ICD10CM|Other sequelae following nontraumatic subarachnoid hemorrhage|Other sequelae following nontraumatic subarachnoid hemorrhage +C0475528|T046|PT|I69.1|ICD10|Sequelae of intracerebral haemorrhage|Sequelae of intracerebral haemorrhage +C0475528|T046|PT|I69.1|ICD10AE|Sequelae of intracerebral hemorrhage|Sequelae of intracerebral hemorrhage +C1390195|T046|AB|I69.1|ICD10CM|Sequelae of nontraumatic intracerebral hemorrhage|Sequelae of nontraumatic intracerebral hemorrhage +C1390195|T046|HT|I69.1|ICD10CM|Sequelae of nontraumatic intracerebral hemorrhage|Sequelae of nontraumatic intracerebral hemorrhage +C2882484|T047|AB|I69.10|ICD10CM|Unsp sequelae of nontraumatic intracerebral hemorrhage|Unsp sequelae of nontraumatic intracerebral hemorrhage +C2882484|T047|PT|I69.10|ICD10CM|Unspecified sequelae of nontraumatic intracerebral hemorrhage|Unspecified sequelae of nontraumatic intracerebral hemorrhage +C2882485|T047|AB|I69.11|ICD10CM|Cognitive deficits following nontraumatic intcrbl hemorrhage|Cognitive deficits following nontraumatic intcrbl hemorrhage +C2882485|T047|HT|I69.11|ICD10CM|Cognitive deficits following nontraumatic intracerebral hemorrhage|Cognitive deficits following nontraumatic intracerebral hemorrhage +C4268501|T048|PT|I69.110|ICD10CM|Attention and concentration deficit following nontraumatic intracerebral hemorrhage|Attention and concentration deficit following nontraumatic intracerebral hemorrhage +C4268501|T048|AB|I69.110|ICD10CM|Attn and concentration deficit following ntrm intcrbl hemor|Attn and concentration deficit following ntrm intcrbl hemor +C4268502|T048|AB|I69.111|ICD10CM|Memory deficit following nontraumatic intcrbl hemorrhage|Memory deficit following nontraumatic intcrbl hemorrhage +C4268502|T048|PT|I69.111|ICD10CM|Memory deficit following nontraumatic intracerebral hemorrhage|Memory deficit following nontraumatic intracerebral hemorrhage +C4268503|T047|AB|I69.112|ICD10CM|Vis def/sptl nglct following nontraumatic intcrbl hemorrhage|Vis def/sptl nglct following nontraumatic intcrbl hemorrhage +C4268503|T047|PT|I69.112|ICD10CM|Visuospatial deficit and spatial neglect following nontraumatic intracerebral hemorrhage|Visuospatial deficit and spatial neglect following nontraumatic intracerebral hemorrhage +C4268504|T048|PT|I69.113|ICD10CM|Psychomotor deficit following nontraumatic intracerebral hemorrhage|Psychomotor deficit following nontraumatic intracerebral hemorrhage +C4268504|T048|AB|I69.113|ICD10CM|Psychomotor deficit following ntrm intcrbl hemorrhage|Psychomotor deficit following ntrm intcrbl hemorrhage +C4268505|T048|AB|I69.114|ICD10CM|Fntl lb and exec fcn def following ntrm intcrbl hemorrhage|Fntl lb and exec fcn def following ntrm intcrbl hemorrhage +C4268505|T048|PT|I69.114|ICD10CM|Frontal lobe and executive function deficit following nontraumatic intracerebral hemorrhage|Frontal lobe and executive function deficit following nontraumatic intracerebral hemorrhage +C4268506|T048|AB|I69.115|ICD10CM|Cognitive social or emo def following ntrm intcrbl hemor|Cognitive social or emo def following ntrm intcrbl hemor +C4268506|T048|PT|I69.115|ICD10CM|Cognitive social or emotional deficit following nontraumatic intracerebral hemorrhage|Cognitive social or emotional deficit following nontraumatic intracerebral hemorrhage +C4268507|T048|AB|I69.118|ICD10CM|Other symp and signs w cogn fnctns fol ntrm intcrbl hemor|Other symp and signs w cogn fnctns fol ntrm intcrbl hemor +C4268508|T048|AB|I69.119|ICD10CM|Unsp symptoms and signs w cogn fnctns fol ntrm intcrbl hemor|Unsp symptoms and signs w cogn fnctns fol ntrm intcrbl hemor +C2882486|T047|HT|I69.12|ICD10CM|Speech and language deficits following nontraumatic intracerebral hemorrhage|Speech and language deficits following nontraumatic intracerebral hemorrhage +C2882486|T047|AB|I69.12|ICD10CM|Speech/lang deficits following ntrm intcrbl hemorrhage|Speech/lang deficits following ntrm intcrbl hemorrhage +C2882487|T047|AB|I69.120|ICD10CM|Aphasia following nontraumatic intracerebral hemorrhage|Aphasia following nontraumatic intracerebral hemorrhage +C2882487|T047|PT|I69.120|ICD10CM|Aphasia following nontraumatic intracerebral hemorrhage|Aphasia following nontraumatic intracerebral hemorrhage +C2882488|T047|AB|I69.121|ICD10CM|Dysphasia following nontraumatic intracerebral hemorrhage|Dysphasia following nontraumatic intracerebral hemorrhage +C2882488|T047|PT|I69.121|ICD10CM|Dysphasia following nontraumatic intracerebral hemorrhage|Dysphasia following nontraumatic intracerebral hemorrhage +C2882489|T047|AB|I69.122|ICD10CM|Dysarthria following nontraumatic intracerebral hemorrhage|Dysarthria following nontraumatic intracerebral hemorrhage +C2882489|T047|PT|I69.122|ICD10CM|Dysarthria following nontraumatic intracerebral hemorrhage|Dysarthria following nontraumatic intracerebral hemorrhage +C2882490|T047|AB|I69.123|ICD10CM|Fluency disorder following nontraumatic intcrbl hemorrhage|Fluency disorder following nontraumatic intcrbl hemorrhage +C2882490|T047|PT|I69.123|ICD10CM|Fluency disorder following nontraumatic intracerebral hemorrhage|Fluency disorder following nontraumatic intracerebral hemorrhage +C4268509|T047|ET|I69.123|ICD10CM|Stuttering following nontraumatic intracerebral hemorrhage|Stuttering following nontraumatic intracerebral hemorrhage +C2882491|T047|AB|I69.128|ICD10CM|Oth speech/lang deficits following ntrm intcrbl hemorrhage|Oth speech/lang deficits following ntrm intcrbl hemorrhage +C2882491|T047|PT|I69.128|ICD10CM|Other speech and language deficits following nontraumatic intracerebral hemorrhage|Other speech and language deficits following nontraumatic intracerebral hemorrhage +C2882492|T047|HT|I69.13|ICD10CM|Monoplegia of upper limb following nontraumatic intracerebral hemorrhage|Monoplegia of upper limb following nontraumatic intracerebral hemorrhage +C2882492|T047|AB|I69.13|ICD10CM|Monoplg upr lmb following nontraumatic intcrbl hemorrhage|Monoplg upr lmb following nontraumatic intcrbl hemorrhage +C2882493|T047|AB|I69.131|ICD10CM|Monoplg upr lmb fol ntrm intcrbl hemor aff right dom side|Monoplg upr lmb fol ntrm intcrbl hemor aff right dom side +C2882494|T047|AB|I69.132|ICD10CM|Monoplg upr lmb fol ntrm intcrbl hemor aff left dom side|Monoplg upr lmb fol ntrm intcrbl hemor aff left dom side +C2882495|T047|AB|I69.133|ICD10CM|Monoplg upr lmb fol ntrm intcrbl hemor aff right nondom side|Monoplg upr lmb fol ntrm intcrbl hemor aff right nondom side +C2882496|T047|AB|I69.134|ICD10CM|Monoplg upr lmb fol ntrm intcrbl hemor aff left nondom side|Monoplg upr lmb fol ntrm intcrbl hemor aff left nondom side +C2882497|T047|PT|I69.139|ICD10CM|Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting unspecified side|Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting unspecified side +C2882497|T047|AB|I69.139|ICD10CM|Monoplg upr lmb following ntrm intcrbl hemor aff unsp side|Monoplg upr lmb following ntrm intcrbl hemor aff unsp side +C2882498|T047|HT|I69.14|ICD10CM|Monoplegia of lower limb following nontraumatic intracerebral hemorrhage|Monoplegia of lower limb following nontraumatic intracerebral hemorrhage +C2882498|T047|AB|I69.14|ICD10CM|Monoplg low lmb following nontraumatic intcrbl hemorrhage|Monoplg low lmb following nontraumatic intcrbl hemorrhage +C2882499|T047|AB|I69.141|ICD10CM|Monoplg low lmb fol ntrm intcrbl hemor aff right dom side|Monoplg low lmb fol ntrm intcrbl hemor aff right dom side +C2882500|T047|AB|I69.142|ICD10CM|Monoplg low lmb fol ntrm intcrbl hemor aff left dom side|Monoplg low lmb fol ntrm intcrbl hemor aff left dom side +C2882501|T047|AB|I69.143|ICD10CM|Monoplg low lmb fol ntrm intcrbl hemor aff right nondom side|Monoplg low lmb fol ntrm intcrbl hemor aff right nondom side +C2882502|T047|AB|I69.144|ICD10CM|Monoplg low lmb fol ntrm intcrbl hemor aff left nondom side|Monoplg low lmb fol ntrm intcrbl hemor aff left nondom side +C2882503|T047|PT|I69.149|ICD10CM|Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting unspecified side|Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting unspecified side +C2882503|T047|AB|I69.149|ICD10CM|Monoplg low lmb following ntrm intcrbl hemor aff unsp side|Monoplg low lmb following ntrm intcrbl hemor aff unsp side +C2882504|T047|HT|I69.15|ICD10CM|Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage|Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage +C2882504|T047|AB|I69.15|ICD10CM|Hemiplga following nontraumatic intracerebral hemorrhage|Hemiplga following nontraumatic intracerebral hemorrhage +C2882505|T047|AB|I69.151|ICD10CM|Hemiplga fol ntrm intcrbl hemor aff right dominant side|Hemiplga fol ntrm intcrbl hemor aff right dominant side +C2882506|T047|AB|I69.152|ICD10CM|Hemiplga following ntrm intcrbl hemor aff left dominant side|Hemiplga following ntrm intcrbl hemor aff left dominant side +C2882507|T047|AB|I69.153|ICD10CM|Hemiplga following ntrm intcrbl hemor aff right nondom side|Hemiplga following ntrm intcrbl hemor aff right nondom side +C2882508|T047|AB|I69.154|ICD10CM|Hemiplga following ntrm intcrbl hemor aff left nondom side|Hemiplga following ntrm intcrbl hemor aff left nondom side +C2882509|T047|AB|I69.159|ICD10CM|Hemiplga following ntrm intcrbl hemor affecting unsp side|Hemiplga following ntrm intcrbl hemor affecting unsp side +C2882510|T047|AB|I69.16|ICD10CM|Oth paralytic syndrome following ntrm intcrbl hemorrhage|Oth paralytic syndrome following ntrm intcrbl hemorrhage +C2882510|T047|HT|I69.16|ICD10CM|Other paralytic syndrome following nontraumatic intracerebral hemorrhage|Other paralytic syndrome following nontraumatic intracerebral hemorrhage +C2882511|T047|AB|I69.161|ICD10CM|Oth parlyt synd fol ntrm intcrbl hemor aff right dom side|Oth parlyt synd fol ntrm intcrbl hemor aff right dom side +C2882512|T047|AB|I69.162|ICD10CM|Oth parlyt syndrome fol ntrm intcrbl hemor aff left dom side|Oth parlyt syndrome fol ntrm intcrbl hemor aff left dom side +C2882513|T047|AB|I69.163|ICD10CM|Oth parlyt synd fol ntrm intcrbl hemor aff right nondom side|Oth parlyt synd fol ntrm intcrbl hemor aff right nondom side +C2882514|T047|AB|I69.164|ICD10CM|Oth parlyt synd fol ntrm intcrbl hemor aff left nondom side|Oth parlyt synd fol ntrm intcrbl hemor aff left nondom side +C2882515|T047|AB|I69.165|ICD10CM|Oth paralytic syndrome following ntrm intcrbl hemor, bi|Oth paralytic syndrome following ntrm intcrbl hemor, bi +C2882515|T047|PT|I69.165|ICD10CM|Other paralytic syndrome following nontraumatic intracerebral hemorrhage, bilateral|Other paralytic syndrome following nontraumatic intracerebral hemorrhage, bilateral +C2882516|T047|AB|I69.169|ICD10CM|Oth paralytic syndrome fol ntrm intcrbl hemor aff unsp side|Oth paralytic syndrome fol ntrm intcrbl hemor aff unsp side +C2882516|T047|PT|I69.169|ICD10CM|Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting unspecified side|Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting unspecified side +C2882517|T047|HT|I69.19|ICD10CM|Other sequelae of nontraumatic intracerebral hemorrhage|Other sequelae of nontraumatic intracerebral hemorrhage +C2882517|T047|AB|I69.19|ICD10CM|Other sequelae of nontraumatic intracerebral hemorrhage|Other sequelae of nontraumatic intracerebral hemorrhage +C2882518|T047|AB|I69.190|ICD10CM|Apraxia following nontraumatic intracerebral hemorrhage|Apraxia following nontraumatic intracerebral hemorrhage +C2882518|T047|PT|I69.190|ICD10CM|Apraxia following nontraumatic intracerebral hemorrhage|Apraxia following nontraumatic intracerebral hemorrhage +C2882519|T047|AB|I69.191|ICD10CM|Dysphagia following nontraumatic intracerebral hemorrhage|Dysphagia following nontraumatic intracerebral hemorrhage +C2882519|T047|PT|I69.191|ICD10CM|Dysphagia following nontraumatic intracerebral hemorrhage|Dysphagia following nontraumatic intracerebral hemorrhage +C2882520|T046|ET|I69.192|ICD10CM|Facial droop following nontraumatic intracerebral hemorrhage|Facial droop following nontraumatic intracerebral hemorrhage +C2882521|T047|AB|I69.192|ICD10CM|Facial weakness following nontraumatic intcrbl hemorrhage|Facial weakness following nontraumatic intcrbl hemorrhage +C2882521|T047|PT|I69.192|ICD10CM|Facial weakness following nontraumatic intracerebral hemorrhage|Facial weakness following nontraumatic intracerebral hemorrhage +C2882522|T047|AB|I69.193|ICD10CM|Ataxia following nontraumatic intracerebral hemorrhage|Ataxia following nontraumatic intracerebral hemorrhage +C2882522|T047|PT|I69.193|ICD10CM|Ataxia following nontraumatic intracerebral hemorrhage|Ataxia following nontraumatic intracerebral hemorrhage +C2882523|T033|ET|I69.198|ICD10CM|Alteration of sensations following nontraumatic intracerebral hemorrhage|Alteration of sensations following nontraumatic intracerebral hemorrhage +C2882524|T046|ET|I69.198|ICD10CM|Disturbance of vision following nontraumatic intracerebral hemorrhage|Disturbance of vision following nontraumatic intracerebral hemorrhage +C2882517|T047|AB|I69.198|ICD10CM|Other sequelae of nontraumatic intracerebral hemorrhage|Other sequelae of nontraumatic intracerebral hemorrhage +C2882517|T047|PT|I69.198|ICD10CM|Other sequelae of nontraumatic intracerebral hemorrhage|Other sequelae of nontraumatic intracerebral hemorrhage +C0348783|T046|PT|I69.2|ICD10|Sequelae of other nontraumatic intracranial haemorrhage|Sequelae of other nontraumatic intracranial haemorrhage +C0348783|T046|PT|I69.2|ICD10AE|Sequelae of other nontraumatic intracranial hemorrhage|Sequelae of other nontraumatic intracranial hemorrhage +C0348783|T046|HT|I69.2|ICD10CM|Sequelae of other nontraumatic intracranial hemorrhage|Sequelae of other nontraumatic intracranial hemorrhage +C0348783|T046|AB|I69.2|ICD10CM|Sequelae of other nontraumatic intracranial hemorrhage|Sequelae of other nontraumatic intracranial hemorrhage +C2882525|T047|AB|I69.20|ICD10CM|Unsp sequelae of other nontraumatic intracranial hemorrhage|Unsp sequelae of other nontraumatic intracranial hemorrhage +C2882525|T047|PT|I69.20|ICD10CM|Unspecified sequelae of other nontraumatic intracranial hemorrhage|Unspecified sequelae of other nontraumatic intracranial hemorrhage +C2882526|T047|AB|I69.21|ICD10CM|Cognitive deficits following oth ntrm intcrn hemorrhage|Cognitive deficits following oth ntrm intcrn hemorrhage +C2882526|T047|HT|I69.21|ICD10CM|Cognitive deficits following other nontraumatic intracranial hemorrhage|Cognitive deficits following other nontraumatic intracranial hemorrhage +C4268510|T048|PT|I69.210|ICD10CM|Attention and concentration deficit following other nontraumatic intracranial hemorrhage|Attention and concentration deficit following other nontraumatic intracranial hemorrhage +C4268510|T048|AB|I69.210|ICD10CM|Attn and concentration deficit fol other ntrm intcrn hemor|Attn and concentration deficit fol other ntrm intcrn hemor +C4268511|T048|PT|I69.211|ICD10CM|Memory deficit following other nontraumatic intracranial hemorrhage|Memory deficit following other nontraumatic intracranial hemorrhage +C4268511|T048|AB|I69.211|ICD10CM|Memory deficit following other ntrm intcrn hemorrhage|Memory deficit following other ntrm intcrn hemorrhage +C4268512|T047|AB|I69.212|ICD10CM|Vis def/sptl nglct following other ntrm intcrn hemorrhage|Vis def/sptl nglct following other ntrm intcrn hemorrhage +C4268512|T047|PT|I69.212|ICD10CM|Visuospatial deficit and spatial neglect following other nontraumatic intracranial hemorrhage|Visuospatial deficit and spatial neglect following other nontraumatic intracranial hemorrhage +C4268513|T048|PT|I69.213|ICD10CM|Psychomotor deficit following other nontraumatic intracranial hemorrhage|Psychomotor deficit following other nontraumatic intracranial hemorrhage +C4268513|T048|AB|I69.213|ICD10CM|Psychomotor deficit following other ntrm intcrn hemorrhage|Psychomotor deficit following other ntrm intcrn hemorrhage +C4268514|T048|AB|I69.214|ICD10CM|Fntl lb and exec fcn def following other ntrm intcrn hemor|Fntl lb and exec fcn def following other ntrm intcrn hemor +C4268514|T048|PT|I69.214|ICD10CM|Frontal lobe and executive function deficit following other nontraumatic intracranial hemorrhage|Frontal lobe and executive function deficit following other nontraumatic intracranial hemorrhage +C4268515|T048|AB|I69.215|ICD10CM|Cognitive social or emo def fol other ntrm intcrn hemor|Cognitive social or emo def fol other ntrm intcrn hemor +C4268515|T048|PT|I69.215|ICD10CM|Cognitive social or emotional deficit following other nontraumatic intracranial hemorrhage|Cognitive social or emotional deficit following other nontraumatic intracranial hemorrhage +C4268516|T048|AB|I69.218|ICD10CM|Oth symp and signs w cogn fnctns fol other ntrm intcrn hemor|Oth symp and signs w cogn fnctns fol other ntrm intcrn hemor +C4268517|T048|AB|I69.219|ICD10CM|Unsp symp and signs w cogn fnctns fol oth ntrm intcrn hemor|Unsp symp and signs w cogn fnctns fol oth ntrm intcrn hemor +C2882527|T047|HT|I69.22|ICD10CM|Speech and language deficits following other nontraumatic intracranial hemorrhage|Speech and language deficits following other nontraumatic intracranial hemorrhage +C2882527|T047|AB|I69.22|ICD10CM|Speech/lang deficits following oth ntrm intcrn hemorrhage|Speech/lang deficits following oth ntrm intcrn hemorrhage +C2882528|T047|AB|I69.220|ICD10CM|Aphasia following other nontraumatic intracranial hemorrhage|Aphasia following other nontraumatic intracranial hemorrhage +C2882528|T047|PT|I69.220|ICD10CM|Aphasia following other nontraumatic intracranial hemorrhage|Aphasia following other nontraumatic intracranial hemorrhage +C2882529|T047|AB|I69.221|ICD10CM|Dysphasia following oth nontraumatic intracranial hemorrhage|Dysphasia following oth nontraumatic intracranial hemorrhage +C2882529|T047|PT|I69.221|ICD10CM|Dysphasia following other nontraumatic intracranial hemorrhage|Dysphasia following other nontraumatic intracranial hemorrhage +C2882530|T047|AB|I69.222|ICD10CM|Dysarthria following oth nontraumatic intcrn hemorrhage|Dysarthria following oth nontraumatic intcrn hemorrhage +C2882530|T047|PT|I69.222|ICD10CM|Dysarthria following other nontraumatic intracranial hemorrhage|Dysarthria following other nontraumatic intracranial hemorrhage +C2882531|T047|AB|I69.223|ICD10CM|Fluency disorder following oth ntrm intcrn hemorrhage|Fluency disorder following oth ntrm intcrn hemorrhage +C2882531|T047|PT|I69.223|ICD10CM|Fluency disorder following other nontraumatic intracranial hemorrhage|Fluency disorder following other nontraumatic intracranial hemorrhage +C4268518|T047|ET|I69.223|ICD10CM|Stuttering following other nontraumatic intracranial hemorrhage|Stuttering following other nontraumatic intracranial hemorrhage +C2882532|T047|AB|I69.228|ICD10CM|Oth speech/lang deficits following oth ntrm intcrn hemor|Oth speech/lang deficits following oth ntrm intcrn hemor +C2882532|T047|PT|I69.228|ICD10CM|Other speech and language deficits following other nontraumatic intracranial hemorrhage|Other speech and language deficits following other nontraumatic intracranial hemorrhage +C2882533|T047|HT|I69.23|ICD10CM|Monoplegia of upper limb following other nontraumatic intracranial hemorrhage|Monoplegia of upper limb following other nontraumatic intracranial hemorrhage +C2882533|T047|AB|I69.23|ICD10CM|Monoplg upr lmb following oth nontraumatic intcrn hemorrhage|Monoplg upr lmb following oth nontraumatic intcrn hemorrhage +C2882534|T047|AB|I69.231|ICD10CM|Monoplg upr lmb fol oth ntrm intcrn hemor aff right dom side|Monoplg upr lmb fol oth ntrm intcrn hemor aff right dom side +C2882535|T047|AB|I69.232|ICD10CM|Monoplg upr lmb fol oth ntrm intcrn hemor aff left dom side|Monoplg upr lmb fol oth ntrm intcrn hemor aff left dom side +C2882536|T047|AB|I69.233|ICD10CM|Monoplg upr lmb fol oth ntrm intcrn hemor aff r nondom side|Monoplg upr lmb fol oth ntrm intcrn hemor aff r nondom side +C2882537|T047|AB|I69.234|ICD10CM|Monoplg upr lmb fol oth ntrm intcrn hemor aff l nondom side|Monoplg upr lmb fol oth ntrm intcrn hemor aff l nondom side +C2882538|T047|AB|I69.239|ICD10CM|Monoplg upr lmb fol oth ntrm intcrn hemor aff unsp side|Monoplg upr lmb fol oth ntrm intcrn hemor aff unsp side +C2882539|T047|HT|I69.24|ICD10CM|Monoplegia of lower limb following other nontraumatic intracranial hemorrhage|Monoplegia of lower limb following other nontraumatic intracranial hemorrhage +C2882539|T047|AB|I69.24|ICD10CM|Monoplg low lmb following oth nontraumatic intcrn hemorrhage|Monoplg low lmb following oth nontraumatic intcrn hemorrhage +C2882540|T047|AB|I69.241|ICD10CM|Monoplg low lmb fol oth ntrm intcrn hemor aff right dom side|Monoplg low lmb fol oth ntrm intcrn hemor aff right dom side +C2882541|T047|AB|I69.242|ICD10CM|Monoplg low lmb fol oth ntrm intcrn hemor aff left dom side|Monoplg low lmb fol oth ntrm intcrn hemor aff left dom side +C2882542|T047|AB|I69.243|ICD10CM|Monoplg low lmb fol oth ntrm intcrn hemor aff r nondom side|Monoplg low lmb fol oth ntrm intcrn hemor aff r nondom side +C2882543|T047|AB|I69.244|ICD10CM|Monoplg low lmb fol oth ntrm intcrn hemor aff l nondom side|Monoplg low lmb fol oth ntrm intcrn hemor aff l nondom side +C2882544|T047|AB|I69.249|ICD10CM|Monoplg low lmb fol oth ntrm intcrn hemor aff unsp side|Monoplg low lmb fol oth ntrm intcrn hemor aff unsp side +C2882545|T047|HT|I69.25|ICD10CM|Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage|Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage +C2882545|T047|AB|I69.25|ICD10CM|Hemiplga following oth nontraumatic intracranial hemorrhage|Hemiplga following oth nontraumatic intracranial hemorrhage +C2882546|T047|AB|I69.251|ICD10CM|Hemiplga fol oth ntrm intcrn hemor aff right dominant side|Hemiplga fol oth ntrm intcrn hemor aff right dominant side +C2882547|T047|AB|I69.252|ICD10CM|Hemiplga fol oth ntrm intcrn hemor aff left dominant side|Hemiplga fol oth ntrm intcrn hemor aff left dominant side +C2882548|T047|AB|I69.253|ICD10CM|Hemiplga fol oth ntrm intcrn hemor aff right nondom side|Hemiplga fol oth ntrm intcrn hemor aff right nondom side +C2882549|T047|AB|I69.254|ICD10CM|Hemiplga fol oth ntrm intcrn hemor aff left nondom side|Hemiplga fol oth ntrm intcrn hemor aff left nondom side +C2882550|T047|AB|I69.259|ICD10CM|Hemiplga following oth ntrm intcrn hemor affecting unsp side|Hemiplga following oth ntrm intcrn hemor affecting unsp side +C2882551|T047|AB|I69.26|ICD10CM|Oth paralytic syndrome following oth ntrm intcrn hemorrhage|Oth paralytic syndrome following oth ntrm intcrn hemorrhage +C2882551|T047|HT|I69.26|ICD10CM|Other paralytic syndrome following other nontraumatic intracranial hemorrhage|Other paralytic syndrome following other nontraumatic intracranial hemorrhage +C2882552|T047|AB|I69.261|ICD10CM|Oth parlyt synd fol oth ntrm intcrn hemor aff right dom side|Oth parlyt synd fol oth ntrm intcrn hemor aff right dom side +C2882553|T047|AB|I69.262|ICD10CM|Oth parlyt synd fol oth ntrm intcrn hemor aff left dom side|Oth parlyt synd fol oth ntrm intcrn hemor aff left dom side +C2882554|T047|AB|I69.263|ICD10CM|Oth parlyt synd fol oth ntrm intcrn hemor aff r nondom side|Oth parlyt synd fol oth ntrm intcrn hemor aff r nondom side +C2882555|T047|AB|I69.264|ICD10CM|Oth parlyt synd fol oth ntrm intcrn hemor aff l nondom side|Oth parlyt synd fol oth ntrm intcrn hemor aff l nondom side +C2882556|T047|AB|I69.265|ICD10CM|Oth paralytic syndrome following oth ntrm intcrn hemor, bi|Oth paralytic syndrome following oth ntrm intcrn hemor, bi +C2882556|T047|PT|I69.265|ICD10CM|Other paralytic syndrome following other nontraumatic intracranial hemorrhage, bilateral|Other paralytic syndrome following other nontraumatic intracranial hemorrhage, bilateral +C2882557|T047|AB|I69.269|ICD10CM|Oth parlyt syndrome fol oth ntrm intcrn hemor aff unsp side|Oth parlyt syndrome fol oth ntrm intcrn hemor aff unsp side +C2882558|T047|HT|I69.29|ICD10CM|Other sequelae of other nontraumatic intracranial hemorrhage|Other sequelae of other nontraumatic intracranial hemorrhage +C2882558|T047|AB|I69.29|ICD10CM|Other sequelae of other nontraumatic intracranial hemorrhage|Other sequelae of other nontraumatic intracranial hemorrhage +C2882559|T047|AB|I69.290|ICD10CM|Apraxia following other nontraumatic intracranial hemorrhage|Apraxia following other nontraumatic intracranial hemorrhage +C2882559|T047|PT|I69.290|ICD10CM|Apraxia following other nontraumatic intracranial hemorrhage|Apraxia following other nontraumatic intracranial hemorrhage +C2882560|T047|AB|I69.291|ICD10CM|Dysphagia following oth nontraumatic intracranial hemorrhage|Dysphagia following oth nontraumatic intracranial hemorrhage +C2882560|T047|PT|I69.291|ICD10CM|Dysphagia following other nontraumatic intracranial hemorrhage|Dysphagia following other nontraumatic intracranial hemorrhage +C2882561|T046|ET|I69.292|ICD10CM|Facial droop following other nontraumatic intracranial hemorrhage|Facial droop following other nontraumatic intracranial hemorrhage +C2882562|T047|AB|I69.292|ICD10CM|Facial weakness following oth nontraumatic intcrn hemorrhage|Facial weakness following oth nontraumatic intcrn hemorrhage +C2882562|T047|PT|I69.292|ICD10CM|Facial weakness following other nontraumatic intracranial hemorrhage|Facial weakness following other nontraumatic intracranial hemorrhage +C2882563|T047|AB|I69.293|ICD10CM|Ataxia following other nontraumatic intracranial hemorrhage|Ataxia following other nontraumatic intracranial hemorrhage +C2882563|T047|PT|I69.293|ICD10CM|Ataxia following other nontraumatic intracranial hemorrhage|Ataxia following other nontraumatic intracranial hemorrhage +C2882564|T033|ET|I69.298|ICD10CM|Alteration of sensation following other nontraumatic intracranial hemorrhage|Alteration of sensation following other nontraumatic intracranial hemorrhage +C2882565|T046|ET|I69.298|ICD10CM|Disturbance of vision following other nontraumatic intracranial hemorrhage|Disturbance of vision following other nontraumatic intracranial hemorrhage +C2882558|T047|AB|I69.298|ICD10CM|Other sequelae of other nontraumatic intracranial hemorrhage|Other sequelae of other nontraumatic intracranial hemorrhage +C2882558|T047|PT|I69.298|ICD10CM|Other sequelae of other nontraumatic intracranial hemorrhage|Other sequelae of other nontraumatic intracranial hemorrhage +C0451677|T046|HT|I69.3|ICD10CM|Sequelae of cerebral infarction|Sequelae of cerebral infarction +C0451677|T046|AB|I69.3|ICD10CM|Sequelae of cerebral infarction|Sequelae of cerebral infarction +C0451677|T046|PT|I69.3|ICD10|Sequelae of cerebral infarction|Sequelae of cerebral infarction +C0847346|T047|ET|I69.3|ICD10CM|Sequelae of stroke NOS|Sequelae of stroke NOS +C2882566|T047|AB|I69.30|ICD10CM|Unspecified sequelae of cerebral infarction|Unspecified sequelae of cerebral infarction +C2882566|T047|PT|I69.30|ICD10CM|Unspecified sequelae of cerebral infarction|Unspecified sequelae of cerebral infarction +C2882567|T047|AB|I69.31|ICD10CM|Cognitive deficits following cerebral infarction|Cognitive deficits following cerebral infarction +C2882567|T047|HT|I69.31|ICD10CM|Cognitive deficits following cerebral infarction|Cognitive deficits following cerebral infarction +C4268519|T048|PT|I69.310|ICD10CM|Attention and concentration deficit following cerebral infarction|Attention and concentration deficit following cerebral infarction +C4268519|T048|AB|I69.310|ICD10CM|Attention and concentration deficit following cerebral infrc|Attention and concentration deficit following cerebral infrc +C4268520|T048|AB|I69.311|ICD10CM|Memory deficit following cerebral infarction|Memory deficit following cerebral infarction +C4268520|T048|PT|I69.311|ICD10CM|Memory deficit following cerebral infarction|Memory deficit following cerebral infarction +C4268521|T047|AB|I69.312|ICD10CM|Vis def/sptl nglct following cerebral infarction|Vis def/sptl nglct following cerebral infarction +C4268521|T047|PT|I69.312|ICD10CM|Visuospatial deficit and spatial neglect following cerebral infarction|Visuospatial deficit and spatial neglect following cerebral infarction +C4268522|T048|AB|I69.313|ICD10CM|Psychomotor deficit following cerebral infarction|Psychomotor deficit following cerebral infarction +C4268522|T048|PT|I69.313|ICD10CM|Psychomotor deficit following cerebral infarction|Psychomotor deficit following cerebral infarction +C4268523|T048|AB|I69.314|ICD10CM|Frontal lobe and exec fcn def following cerebral infarction|Frontal lobe and exec fcn def following cerebral infarction +C4268523|T048|PT|I69.314|ICD10CM|Frontal lobe and executive function deficit following cerebral infarction|Frontal lobe and executive function deficit following cerebral infarction +C4268524|T048|AB|I69.315|ICD10CM|Cognitive social or emo def following cerebral infarction|Cognitive social or emo def following cerebral infarction +C4268524|T048|PT|I69.315|ICD10CM|Cognitive social or emotional deficit following cerebral infarction|Cognitive social or emotional deficit following cerebral infarction +C4268525|T048|PT|I69.318|ICD10CM|Other symptoms and signs involving cognitive functions following cerebral infarction|Other symptoms and signs involving cognitive functions following cerebral infarction +C4268525|T048|AB|I69.318|ICD10CM|Other symptoms and signs w cogn fnctns fol cerebral infrc|Other symptoms and signs w cogn fnctns fol cerebral infrc +C4268526|T048|AB|I69.319|ICD10CM|Unsp symptoms and signs w cogn fnctns fol cerebral infrc|Unsp symptoms and signs w cogn fnctns fol cerebral infrc +C4268526|T048|PT|I69.319|ICD10CM|Unspecified symptoms and signs involving cognitive functions following cerebral infarction|Unspecified symptoms and signs involving cognitive functions following cerebral infarction +C2882568|T047|AB|I69.32|ICD10CM|Speech and language deficits following cerebral infarction|Speech and language deficits following cerebral infarction +C2882568|T047|HT|I69.32|ICD10CM|Speech and language deficits following cerebral infarction|Speech and language deficits following cerebral infarction +C2882569|T047|AB|I69.320|ICD10CM|Aphasia following cerebral infarction|Aphasia following cerebral infarction +C2882569|T047|PT|I69.320|ICD10CM|Aphasia following cerebral infarction|Aphasia following cerebral infarction +C2882570|T047|AB|I69.321|ICD10CM|Dysphasia following cerebral infarction|Dysphasia following cerebral infarction +C2882570|T047|PT|I69.321|ICD10CM|Dysphasia following cerebral infarction|Dysphasia following cerebral infarction +C2882571|T047|AB|I69.322|ICD10CM|Dysarthria following cerebral infarction|Dysarthria following cerebral infarction +C2882571|T047|PT|I69.322|ICD10CM|Dysarthria following cerebral infarction|Dysarthria following cerebral infarction +C2882572|T047|AB|I69.323|ICD10CM|Fluency disorder following cerebral infarction|Fluency disorder following cerebral infarction +C2882572|T047|PT|I69.323|ICD10CM|Fluency disorder following cerebral infarction|Fluency disorder following cerebral infarction +C4268527|T047|ET|I69.323|ICD10CM|Stuttering following cerebral infarction|Stuttering following cerebral infarction +C2882573|T047|AB|I69.328|ICD10CM|Oth speech/lang deficits following cerebral infarction|Oth speech/lang deficits following cerebral infarction +C2882573|T047|PT|I69.328|ICD10CM|Other speech and language deficits following cerebral infarction|Other speech and language deficits following cerebral infarction +C2882574|T047|AB|I69.33|ICD10CM|Monoplegia of upper limb following cerebral infarction|Monoplegia of upper limb following cerebral infarction +C2882574|T047|HT|I69.33|ICD10CM|Monoplegia of upper limb following cerebral infarction|Monoplegia of upper limb following cerebral infarction +C2882575|T047|PT|I69.331|ICD10CM|Monoplegia of upper limb following cerebral infarction affecting right dominant side|Monoplegia of upper limb following cerebral infarction affecting right dominant side +C2882575|T047|AB|I69.331|ICD10CM|Monoplg upr lmb fol cerebral infrc aff right dominant side|Monoplg upr lmb fol cerebral infrc aff right dominant side +C2882576|T047|PT|I69.332|ICD10CM|Monoplegia of upper limb following cerebral infarction affecting left dominant side|Monoplegia of upper limb following cerebral infarction affecting left dominant side +C2882576|T047|AB|I69.332|ICD10CM|Monoplg upr lmb fol cerebral infrc aff left dominant side|Monoplg upr lmb fol cerebral infrc aff left dominant side +C2882577|T047|PT|I69.333|ICD10CM|Monoplegia of upper limb following cerebral infarction affecting right non-dominant side|Monoplegia of upper limb following cerebral infarction affecting right non-dominant side +C2882577|T047|AB|I69.333|ICD10CM|Monoplg upr lmb fol cerebral infrc aff right nondom side|Monoplg upr lmb fol cerebral infrc aff right nondom side +C2882578|T047|PT|I69.334|ICD10CM|Monoplegia of upper limb following cerebral infarction affecting left non-dominant side|Monoplegia of upper limb following cerebral infarction affecting left non-dominant side +C2882578|T047|AB|I69.334|ICD10CM|Monoplg upr lmb fol cerebral infrc aff left nondom side|Monoplg upr lmb fol cerebral infrc aff left nondom side +C2882579|T047|PT|I69.339|ICD10CM|Monoplegia of upper limb following cerebral infarction affecting unspecified side|Monoplegia of upper limb following cerebral infarction affecting unspecified side +C2882579|T047|AB|I69.339|ICD10CM|Monoplg upr lmb following cerebral infrc affecting unsp side|Monoplg upr lmb following cerebral infrc affecting unsp side +C2882580|T047|AB|I69.34|ICD10CM|Monoplegia of lower limb following cerebral infarction|Monoplegia of lower limb following cerebral infarction +C2882580|T047|HT|I69.34|ICD10CM|Monoplegia of lower limb following cerebral infarction|Monoplegia of lower limb following cerebral infarction +C2882581|T047|PT|I69.341|ICD10CM|Monoplegia of lower limb following cerebral infarction affecting right dominant side|Monoplegia of lower limb following cerebral infarction affecting right dominant side +C2882581|T047|AB|I69.341|ICD10CM|Monoplg low lmb fol cerebral infrc aff right dominant side|Monoplg low lmb fol cerebral infrc aff right dominant side +C2882582|T047|PT|I69.342|ICD10CM|Monoplegia of lower limb following cerebral infarction affecting left dominant side|Monoplegia of lower limb following cerebral infarction affecting left dominant side +C2882582|T047|AB|I69.342|ICD10CM|Monoplg low lmb fol cerebral infrc aff left dominant side|Monoplg low lmb fol cerebral infrc aff left dominant side +C2882583|T047|PT|I69.343|ICD10CM|Monoplegia of lower limb following cerebral infarction affecting right non-dominant side|Monoplegia of lower limb following cerebral infarction affecting right non-dominant side +C2882583|T047|AB|I69.343|ICD10CM|Monoplg low lmb fol cerebral infrc aff right nondom side|Monoplg low lmb fol cerebral infrc aff right nondom side +C2882584|T047|PT|I69.344|ICD10CM|Monoplegia of lower limb following cerebral infarction affecting left non-dominant side|Monoplegia of lower limb following cerebral infarction affecting left non-dominant side +C2882584|T047|AB|I69.344|ICD10CM|Monoplg low lmb fol cerebral infrc aff left nondom side|Monoplg low lmb fol cerebral infrc aff left nondom side +C2882585|T047|PT|I69.349|ICD10CM|Monoplegia of lower limb following cerebral infarction affecting unspecified side|Monoplegia of lower limb following cerebral infarction affecting unspecified side +C2882585|T047|AB|I69.349|ICD10CM|Monoplg low lmb following cerebral infrc affecting unsp side|Monoplg low lmb following cerebral infrc affecting unsp side +C2882586|T047|AB|I69.35|ICD10CM|Hemiplegia and hemiparesis following cerebral infarction|Hemiplegia and hemiparesis following cerebral infarction +C2882586|T047|HT|I69.35|ICD10CM|Hemiplegia and hemiparesis following cerebral infarction|Hemiplegia and hemiparesis following cerebral infarction +C2882587|T047|PT|I69.351|ICD10CM|Hemiplegia and hemiparesis following cerebral infarction affecting right dominant side|Hemiplegia and hemiparesis following cerebral infarction affecting right dominant side +C2882587|T047|AB|I69.351|ICD10CM|Hemiplga following cerebral infrc aff right dominant side|Hemiplga following cerebral infrc aff right dominant side +C2882588|T047|PT|I69.352|ICD10CM|Hemiplegia and hemiparesis following cerebral infarction affecting left dominant side|Hemiplegia and hemiparesis following cerebral infarction affecting left dominant side +C2882588|T047|AB|I69.352|ICD10CM|Hemiplga following cerebral infrc aff left dominant side|Hemiplga following cerebral infrc aff left dominant side +C2882589|T047|PT|I69.353|ICD10CM|Hemiplegia and hemiparesis following cerebral infarction affecting right non-dominant side|Hemiplegia and hemiparesis following cerebral infarction affecting right non-dominant side +C2882589|T047|AB|I69.353|ICD10CM|Hemiplga following cerebral infrc aff right nondom side|Hemiplga following cerebral infrc aff right nondom side +C2882590|T047|PT|I69.354|ICD10CM|Hemiplegia and hemiparesis following cerebral infarction affecting left non-dominant side|Hemiplegia and hemiparesis following cerebral infarction affecting left non-dominant side +C2882590|T047|AB|I69.354|ICD10CM|Hemiplga following cerebral infrc affecting left nondom side|Hemiplga following cerebral infrc affecting left nondom side +C2882591|T047|PT|I69.359|ICD10CM|Hemiplegia and hemiparesis following cerebral infarction affecting unspecified side|Hemiplegia and hemiparesis following cerebral infarction affecting unspecified side +C2882591|T047|AB|I69.359|ICD10CM|Hemiplga following cerebral infarction affecting unsp side|Hemiplga following cerebral infarction affecting unsp side +C2882592|T047|AB|I69.36|ICD10CM|Other paralytic syndrome following cerebral infarction|Other paralytic syndrome following cerebral infarction +C2882592|T047|HT|I69.36|ICD10CM|Other paralytic syndrome following cerebral infarction|Other paralytic syndrome following cerebral infarction +C2882593|T047|AB|I69.361|ICD10CM|Oth parlyt syndrome fol cereb infrc aff right dominant side|Oth parlyt syndrome fol cereb infrc aff right dominant side +C2882593|T047|PT|I69.361|ICD10CM|Other paralytic syndrome following cerebral infarction affecting right dominant side|Other paralytic syndrome following cerebral infarction affecting right dominant side +C2882594|T047|AB|I69.362|ICD10CM|Oth parlyt syndrome fol cereb infrc aff left dominant side|Oth parlyt syndrome fol cereb infrc aff left dominant side +C2882594|T047|PT|I69.362|ICD10CM|Other paralytic syndrome following cerebral infarction affecting left dominant side|Other paralytic syndrome following cerebral infarction affecting left dominant side +C2882595|T047|AB|I69.363|ICD10CM|Oth parlyt syndrome fol cerebral infrc aff right nondom side|Oth parlyt syndrome fol cerebral infrc aff right nondom side +C2882595|T047|PT|I69.363|ICD10CM|Other paralytic syndrome following cerebral infarction affecting right non-dominant side|Other paralytic syndrome following cerebral infarction affecting right non-dominant side +C2882596|T047|AB|I69.364|ICD10CM|Oth parlyt syndrome fol cerebral infrc aff left nondom side|Oth parlyt syndrome fol cerebral infrc aff left nondom side +C2882596|T047|PT|I69.364|ICD10CM|Other paralytic syndrome following cerebral infarction affecting left non-dominant side|Other paralytic syndrome following cerebral infarction affecting left non-dominant side +C2882597|T047|AB|I69.365|ICD10CM|Oth paralytic syndrome following cerebral infrc, bilateral|Oth paralytic syndrome following cerebral infrc, bilateral +C2882597|T047|PT|I69.365|ICD10CM|Other paralytic syndrome following cerebral infarction, bilateral|Other paralytic syndrome following cerebral infarction, bilateral +C2882598|T047|AB|I69.369|ICD10CM|Oth paralytic syndrome fol cerebral infrc aff unsp side|Oth paralytic syndrome fol cerebral infrc aff unsp side +C2882598|T047|PT|I69.369|ICD10CM|Other paralytic syndrome following cerebral infarction affecting unspecified side|Other paralytic syndrome following cerebral infarction affecting unspecified side +C2882599|T047|HT|I69.39|ICD10CM|Other sequelae of cerebral infarction|Other sequelae of cerebral infarction +C2882599|T047|AB|I69.39|ICD10CM|Other sequelae of cerebral infarction|Other sequelae of cerebral infarction +C2882600|T047|AB|I69.390|ICD10CM|Apraxia following cerebral infarction|Apraxia following cerebral infarction +C2882600|T047|PT|I69.390|ICD10CM|Apraxia following cerebral infarction|Apraxia following cerebral infarction +C2882601|T047|AB|I69.391|ICD10CM|Dysphagia following cerebral infarction|Dysphagia following cerebral infarction +C2882601|T047|PT|I69.391|ICD10CM|Dysphagia following cerebral infarction|Dysphagia following cerebral infarction +C2882602|T184|ET|I69.392|ICD10CM|Facial droop following cerebral infarction|Facial droop following cerebral infarction +C2882603|T047|AB|I69.392|ICD10CM|Facial weakness following cerebral infarction|Facial weakness following cerebral infarction +C2882603|T047|PT|I69.392|ICD10CM|Facial weakness following cerebral infarction|Facial weakness following cerebral infarction +C2882604|T047|AB|I69.393|ICD10CM|Ataxia following cerebral infarction|Ataxia following cerebral infarction +C2882604|T047|PT|I69.393|ICD10CM|Ataxia following cerebral infarction|Ataxia following cerebral infarction +C2882605|T033|ET|I69.398|ICD10CM|Alteration of sensation following cerebral infarction|Alteration of sensation following cerebral infarction +C2882606|T046|ET|I69.398|ICD10CM|Disturbance of vision following cerebral infarction|Disturbance of vision following cerebral infarction +C2882599|T047|AB|I69.398|ICD10CM|Other sequelae of cerebral infarction|Other sequelae of cerebral infarction +C2882599|T047|PT|I69.398|ICD10CM|Other sequelae of cerebral infarction|Other sequelae of cerebral infarction +C0348643|T047|PT|I69.4|ICD10|Sequelae of stroke, not specified as haemorrhage or infarction|Sequelae of stroke, not specified as haemorrhage or infarction +C0348643|T047|PT|I69.4|ICD10AE|Sequelae of stroke, not specified as hemorrhage or infarction|Sequelae of stroke, not specified as hemorrhage or infarction +C0348644|T046|PT|I69.8|ICD10|Sequelae of other and unspecified cerebrovascular diseases|Sequelae of other and unspecified cerebrovascular diseases +C2882607|T046|AB|I69.8|ICD10CM|Sequelae of other cerebrovascular diseases|Sequelae of other cerebrovascular diseases +C2882607|T046|HT|I69.8|ICD10CM|Sequelae of other cerebrovascular diseases|Sequelae of other cerebrovascular diseases +C0348644|T046|AB|I69.80|ICD10CM|Unspecified sequelae of other cerebrovascular disease|Unspecified sequelae of other cerebrovascular disease +C0348644|T046|PT|I69.80|ICD10CM|Unspecified sequelae of other cerebrovascular disease|Unspecified sequelae of other cerebrovascular disease +C2882608|T047|AB|I69.81|ICD10CM|Cognitive deficits following other cerebrovascular disease|Cognitive deficits following other cerebrovascular disease +C2882608|T047|HT|I69.81|ICD10CM|Cognitive deficits following other cerebrovascular disease|Cognitive deficits following other cerebrovascular disease +C4268528|T048|PT|I69.810|ICD10CM|Attention and concentration deficit following other cerebrovascular disease|Attention and concentration deficit following other cerebrovascular disease +C4268528|T048|AB|I69.810|ICD10CM|Attn and concentration deficit fol other cerebvasc disease|Attn and concentration deficit fol other cerebvasc disease +C4268529|T048|AB|I69.811|ICD10CM|Memory deficit following other cerebrovascular disease|Memory deficit following other cerebrovascular disease +C4268529|T048|PT|I69.811|ICD10CM|Memory deficit following other cerebrovascular disease|Memory deficit following other cerebrovascular disease +C4268530|T047|AB|I69.812|ICD10CM|Vis def/sptl nglct following other cerebrovascular disease|Vis def/sptl nglct following other cerebrovascular disease +C4268530|T047|PT|I69.812|ICD10CM|Visuospatial deficit and spatial neglect following other cerebrovascular disease|Visuospatial deficit and spatial neglect following other cerebrovascular disease +C4268531|T048|AB|I69.813|ICD10CM|Psychomotor deficit following other cerebrovascular disease|Psychomotor deficit following other cerebrovascular disease +C4268531|T048|PT|I69.813|ICD10CM|Psychomotor deficit following other cerebrovascular disease|Psychomotor deficit following other cerebrovascular disease +C4268532|T048|AB|I69.814|ICD10CM|Fntl lb and exec fcn def following other cerebvasc disease|Fntl lb and exec fcn def following other cerebvasc disease +C4268532|T048|PT|I69.814|ICD10CM|Frontal lobe and executive function deficit following other cerebrovascular disease|Frontal lobe and executive function deficit following other cerebrovascular disease +C4268533|T048|AB|I69.815|ICD10CM|Cognitive social or emo def fol other cerebvasc disease|Cognitive social or emo def fol other cerebvasc disease +C4268533|T048|PT|I69.815|ICD10CM|Cognitive social or emotional deficit following other cerebrovascular disease|Cognitive social or emotional deficit following other cerebrovascular disease +C4268534|T048|AB|I69.818|ICD10CM|Other symp and signs w cogn fnctns fol other cerebvasc dis|Other symp and signs w cogn fnctns fol other cerebvasc dis +C4268534|T048|PT|I69.818|ICD10CM|Other symptoms and signs involving cognitive functions following other cerebrovascular disease|Other symptoms and signs involving cognitive functions following other cerebrovascular disease +C4268535|T048|AB|I69.819|ICD10CM|Unsp symp and signs w cogn fnctns fol other cerebvasc dis|Unsp symp and signs w cogn fnctns fol other cerebvasc dis +C4268535|T048|PT|I69.819|ICD10CM|Unspecified symptoms and signs involving cognitive functions following other cerebrovascular disease|Unspecified symptoms and signs involving cognitive functions following other cerebrovascular disease +C2882609|T047|HT|I69.82|ICD10CM|Speech and language deficits following other cerebrovascular disease|Speech and language deficits following other cerebrovascular disease +C2882609|T047|AB|I69.82|ICD10CM|Speech/lang deficits following oth cerebrovascular disease|Speech/lang deficits following oth cerebrovascular disease +C2882610|T046|AB|I69.820|ICD10CM|Aphasia following other cerebrovascular disease|Aphasia following other cerebrovascular disease +C2882610|T046|PT|I69.820|ICD10CM|Aphasia following other cerebrovascular disease|Aphasia following other cerebrovascular disease +C2882611|T046|AB|I69.821|ICD10CM|Dysphasia following other cerebrovascular disease|Dysphasia following other cerebrovascular disease +C2882611|T046|PT|I69.821|ICD10CM|Dysphasia following other cerebrovascular disease|Dysphasia following other cerebrovascular disease +C2882612|T046|AB|I69.822|ICD10CM|Dysarthria following other cerebrovascular disease|Dysarthria following other cerebrovascular disease +C2882612|T046|PT|I69.822|ICD10CM|Dysarthria following other cerebrovascular disease|Dysarthria following other cerebrovascular disease +C2882613|T046|AB|I69.823|ICD10CM|Fluency disorder following other cerebrovascular disease|Fluency disorder following other cerebrovascular disease +C2882613|T046|PT|I69.823|ICD10CM|Fluency disorder following other cerebrovascular disease|Fluency disorder following other cerebrovascular disease +C4268536|T047|ET|I69.823|ICD10CM|Stuttering following other cerebrovascular disease|Stuttering following other cerebrovascular disease +C2882614|T046|AB|I69.828|ICD10CM|Oth speech/lang deficits following oth cerebvasc disease|Oth speech/lang deficits following oth cerebvasc disease +C2882614|T046|PT|I69.828|ICD10CM|Other speech and language deficits following other cerebrovascular disease|Other speech and language deficits following other cerebrovascular disease +C2882615|T047|HT|I69.83|ICD10CM|Monoplegia of upper limb following other cerebrovascular disease|Monoplegia of upper limb following other cerebrovascular disease +C2882615|T047|AB|I69.83|ICD10CM|Monoplg upr lmb following oth cerebrovascular disease|Monoplg upr lmb following oth cerebrovascular disease +C2882616|T047|PT|I69.831|ICD10CM|Monoplegia of upper limb following other cerebrovascular disease affecting right dominant side|Monoplegia of upper limb following other cerebrovascular disease affecting right dominant side +C2882616|T047|AB|I69.831|ICD10CM|Monoplg upr lmb fol oth cerebvasc disease aff right dom side|Monoplg upr lmb fol oth cerebvasc disease aff right dom side +C2882617|T047|PT|I69.832|ICD10CM|Monoplegia of upper limb following other cerebrovascular disease affecting left dominant side|Monoplegia of upper limb following other cerebrovascular disease affecting left dominant side +C2882617|T047|AB|I69.832|ICD10CM|Monoplg upr lmb fol oth cerebvasc disease aff left dom side|Monoplg upr lmb fol oth cerebvasc disease aff left dom side +C2882618|T047|PT|I69.833|ICD10CM|Monoplegia of upper limb following other cerebrovascular disease affecting right non-dominant side|Monoplegia of upper limb following other cerebrovascular disease affecting right non-dominant side +C2882618|T047|AB|I69.833|ICD10CM|Monoplg upr lmb fol oth cerebvasc dis aff right nondom side|Monoplg upr lmb fol oth cerebvasc dis aff right nondom side +C2882619|T047|PT|I69.834|ICD10CM|Monoplegia of upper limb following other cerebrovascular disease affecting left non-dominant side|Monoplegia of upper limb following other cerebrovascular disease affecting left non-dominant side +C2882619|T047|AB|I69.834|ICD10CM|Monoplg upr lmb fol oth cerebvasc dis aff left nondom side|Monoplg upr lmb fol oth cerebvasc dis aff left nondom side +C2882620|T047|PT|I69.839|ICD10CM|Monoplegia of upper limb following other cerebrovascular disease affecting unspecified side|Monoplegia of upper limb following other cerebrovascular disease affecting unspecified side +C2882620|T047|AB|I69.839|ICD10CM|Monoplg upr lmb fol oth cerebvasc disease aff unsp side|Monoplg upr lmb fol oth cerebvasc disease aff unsp side +C2882621|T047|HT|I69.84|ICD10CM|Monoplegia of lower limb following other cerebrovascular disease|Monoplegia of lower limb following other cerebrovascular disease +C2882621|T047|AB|I69.84|ICD10CM|Monoplg low lmb following oth cerebrovascular disease|Monoplg low lmb following oth cerebrovascular disease +C2882622|T047|PT|I69.841|ICD10CM|Monoplegia of lower limb following other cerebrovascular disease affecting right dominant side|Monoplegia of lower limb following other cerebrovascular disease affecting right dominant side +C2882622|T047|AB|I69.841|ICD10CM|Monoplg low lmb fol oth cerebvasc disease aff right dom side|Monoplg low lmb fol oth cerebvasc disease aff right dom side +C2882623|T047|PT|I69.842|ICD10CM|Monoplegia of lower limb following other cerebrovascular disease affecting left dominant side|Monoplegia of lower limb following other cerebrovascular disease affecting left dominant side +C2882623|T047|AB|I69.842|ICD10CM|Monoplg low lmb fol oth cerebvasc disease aff left dom side|Monoplg low lmb fol oth cerebvasc disease aff left dom side +C2882624|T047|PT|I69.843|ICD10CM|Monoplegia of lower limb following other cerebrovascular disease affecting right non-dominant side|Monoplegia of lower limb following other cerebrovascular disease affecting right non-dominant side +C2882624|T047|AB|I69.843|ICD10CM|Monoplg low lmb fol oth cerebvasc dis aff right nondom side|Monoplg low lmb fol oth cerebvasc dis aff right nondom side +C2882625|T047|PT|I69.844|ICD10CM|Monoplegia of lower limb following other cerebrovascular disease affecting left non-dominant side|Monoplegia of lower limb following other cerebrovascular disease affecting left non-dominant side +C2882625|T047|AB|I69.844|ICD10CM|Monoplg low lmb fol oth cerebvasc dis aff left nondom side|Monoplg low lmb fol oth cerebvasc dis aff left nondom side +C2882626|T047|PT|I69.849|ICD10CM|Monoplegia of lower limb following other cerebrovascular disease affecting unspecified side|Monoplegia of lower limb following other cerebrovascular disease affecting unspecified side +C2882626|T047|AB|I69.849|ICD10CM|Monoplg low lmb fol oth cerebvasc disease aff unsp side|Monoplg low lmb fol oth cerebvasc disease aff unsp side +C2882627|T047|HT|I69.85|ICD10CM|Hemiplegia and hemiparesis following other cerebrovascular disease|Hemiplegia and hemiparesis following other cerebrovascular disease +C2882627|T047|AB|I69.85|ICD10CM|Hemiplga following oth cerebrovascular disease|Hemiplga following oth cerebrovascular disease +C2882628|T047|PT|I69.851|ICD10CM|Hemiplegia and hemiparesis following other cerebrovascular disease affecting right dominant side|Hemiplegia and hemiparesis following other cerebrovascular disease affecting right dominant side +C2882628|T047|AB|I69.851|ICD10CM|Hemiplga fol oth cerebvasc disease aff right dominant side|Hemiplga fol oth cerebvasc disease aff right dominant side +C2882629|T047|PT|I69.852|ICD10CM|Hemiplegia and hemiparesis following other cerebrovascular disease affecting left dominant side|Hemiplegia and hemiparesis following other cerebrovascular disease affecting left dominant side +C2882629|T047|AB|I69.852|ICD10CM|Hemiplga fol oth cerebvasc disease aff left dominant side|Hemiplga fol oth cerebvasc disease aff left dominant side +C2882630|T047|PT|I69.853|ICD10CM|Hemiplegia and hemiparesis following other cerebrovascular disease affecting right non-dominant side|Hemiplegia and hemiparesis following other cerebrovascular disease affecting right non-dominant side +C2882630|T047|AB|I69.853|ICD10CM|Hemiplga fol oth cerebvasc disease aff right nondom side|Hemiplga fol oth cerebvasc disease aff right nondom side +C2882631|T047|PT|I69.854|ICD10CM|Hemiplegia and hemiparesis following other cerebrovascular disease affecting left non-dominant side|Hemiplegia and hemiparesis following other cerebrovascular disease affecting left non-dominant side +C2882631|T047|AB|I69.854|ICD10CM|Hemiplga fol oth cerebvasc disease aff left nondom side|Hemiplga fol oth cerebvasc disease aff left nondom side +C2882632|T047|PT|I69.859|ICD10CM|Hemiplegia and hemiparesis following other cerebrovascular disease affecting unspecified side|Hemiplegia and hemiparesis following other cerebrovascular disease affecting unspecified side +C2882632|T047|AB|I69.859|ICD10CM|Hemiplga following oth cerebvasc disease affecting unsp side|Hemiplga following oth cerebvasc disease affecting unsp side +C2882633|T047|AB|I69.86|ICD10CM|Oth paralytic syndrome following oth cerebrovascular disease|Oth paralytic syndrome following oth cerebrovascular disease +C2882633|T047|HT|I69.86|ICD10CM|Other paralytic syndrome following other cerebrovascular disease|Other paralytic syndrome following other cerebrovascular disease +C2882634|T047|AB|I69.861|ICD10CM|Oth parlyt synd fol oth cerebvasc disease aff right dom side|Oth parlyt synd fol oth cerebvasc disease aff right dom side +C2882634|T047|PT|I69.861|ICD10CM|Other paralytic syndrome following other cerebrovascular disease affecting right dominant side|Other paralytic syndrome following other cerebrovascular disease affecting right dominant side +C2882635|T047|AB|I69.862|ICD10CM|Oth parlyt synd fol oth cerebvasc disease aff left dom side|Oth parlyt synd fol oth cerebvasc disease aff left dom side +C2882635|T047|PT|I69.862|ICD10CM|Other paralytic syndrome following other cerebrovascular disease affecting left dominant side|Other paralytic syndrome following other cerebrovascular disease affecting left dominant side +C2882636|T047|AB|I69.863|ICD10CM|Oth parlyt synd fol oth cerebvasc dis aff right nondom side|Oth parlyt synd fol oth cerebvasc dis aff right nondom side +C2882636|T047|PT|I69.863|ICD10CM|Other paralytic syndrome following other cerebrovascular disease affecting right non-dominant side|Other paralytic syndrome following other cerebrovascular disease affecting right non-dominant side +C2882637|T047|AB|I69.864|ICD10CM|Oth parlyt synd fol oth cerebvasc dis aff left nondom side|Oth parlyt synd fol oth cerebvasc dis aff left nondom side +C2882637|T047|PT|I69.864|ICD10CM|Other paralytic syndrome following other cerebrovascular disease affecting left non-dominant side|Other paralytic syndrome following other cerebrovascular disease affecting left non-dominant side +C2882638|T047|AB|I69.865|ICD10CM|Oth paralytic syndrome following oth cerebvasc disease, bi|Oth paralytic syndrome following oth cerebvasc disease, bi +C2882638|T047|PT|I69.865|ICD10CM|Other paralytic syndrome following other cerebrovascular disease, bilateral|Other paralytic syndrome following other cerebrovascular disease, bilateral +C2882639|T047|AB|I69.869|ICD10CM|Oth parlyt syndrome fol oth cerebvasc disease aff unsp side|Oth parlyt syndrome fol oth cerebvasc disease aff unsp side +C2882639|T047|PT|I69.869|ICD10CM|Other paralytic syndrome following other cerebrovascular disease affecting unspecified side|Other paralytic syndrome following other cerebrovascular disease affecting unspecified side +C2882640|T046|HT|I69.89|ICD10CM|Other sequelae of other cerebrovascular disease|Other sequelae of other cerebrovascular disease +C2882640|T046|AB|I69.89|ICD10CM|Other sequelae of other cerebrovascular disease|Other sequelae of other cerebrovascular disease +C2882641|T046|AB|I69.890|ICD10CM|Apraxia following other cerebrovascular disease|Apraxia following other cerebrovascular disease +C2882641|T046|PT|I69.890|ICD10CM|Apraxia following other cerebrovascular disease|Apraxia following other cerebrovascular disease +C2882642|T046|AB|I69.891|ICD10CM|Dysphagia following other cerebrovascular disease|Dysphagia following other cerebrovascular disease +C2882642|T046|PT|I69.891|ICD10CM|Dysphagia following other cerebrovascular disease|Dysphagia following other cerebrovascular disease +C2882643|T046|ET|I69.892|ICD10CM|Facial droop following other cerebrovascular disease|Facial droop following other cerebrovascular disease +C2882644|T046|AB|I69.892|ICD10CM|Facial weakness following other cerebrovascular disease|Facial weakness following other cerebrovascular disease +C2882644|T046|PT|I69.892|ICD10CM|Facial weakness following other cerebrovascular disease|Facial weakness following other cerebrovascular disease +C2882645|T046|AB|I69.893|ICD10CM|Ataxia following other cerebrovascular disease|Ataxia following other cerebrovascular disease +C2882645|T046|PT|I69.893|ICD10CM|Ataxia following other cerebrovascular disease|Ataxia following other cerebrovascular disease +C2882646|T033|ET|I69.898|ICD10CM|Alteration of sensation following other cerebrovascular disease|Alteration of sensation following other cerebrovascular disease +C2882647|T046|ET|I69.898|ICD10CM|Disturbance of vision following other cerebrovascular disease|Disturbance of vision following other cerebrovascular disease +C2882640|T046|AB|I69.898|ICD10CM|Other sequelae of other cerebrovascular disease|Other sequelae of other cerebrovascular disease +C2882640|T046|PT|I69.898|ICD10CM|Other sequelae of other cerebrovascular disease|Other sequelae of other cerebrovascular disease +C2882648|T046|AB|I69.9|ICD10CM|Sequelae of unspecified cerebrovascular diseases|Sequelae of unspecified cerebrovascular diseases +C2882648|T046|HT|I69.9|ICD10CM|Sequelae of unspecified cerebrovascular diseases|Sequelae of unspecified cerebrovascular diseases +C2882648|T046|AB|I69.90|ICD10CM|Unspecified sequelae of unspecified cerebrovascular disease|Unspecified sequelae of unspecified cerebrovascular disease +C2882648|T046|PT|I69.90|ICD10CM|Unspecified sequelae of unspecified cerebrovascular disease|Unspecified sequelae of unspecified cerebrovascular disease +C2882649|T046|AB|I69.91|ICD10CM|Cognitive deficits following unsp cerebrovascular disease|Cognitive deficits following unsp cerebrovascular disease +C2882649|T046|HT|I69.91|ICD10CM|Cognitive deficits following unspecified cerebrovascular disease|Cognitive deficits following unspecified cerebrovascular disease +C4268537|T046|PT|I69.910|ICD10CM|Attention and concentration deficit following unspecified cerebrovascular disease|Attention and concentration deficit following unspecified cerebrovascular disease +C4268537|T046|AB|I69.910|ICD10CM|Attn and concentration deficit fol unsp cerebvasc disease|Attn and concentration deficit fol unsp cerebvasc disease +C4268538|T046|AB|I69.911|ICD10CM|Memory deficit following unspecified cerebrovascular disease|Memory deficit following unspecified cerebrovascular disease +C4268538|T046|PT|I69.911|ICD10CM|Memory deficit following unspecified cerebrovascular disease|Memory deficit following unspecified cerebrovascular disease +C4268539|T046|AB|I69.912|ICD10CM|Vis def/sptl nglct following unspecified cerebvasc disease|Vis def/sptl nglct following unspecified cerebvasc disease +C4268539|T046|PT|I69.912|ICD10CM|Visuospatial deficit and spatial neglect following unspecified cerebrovascular disease|Visuospatial deficit and spatial neglect following unspecified cerebrovascular disease +C4268540|T046|PT|I69.913|ICD10CM|Psychomotor deficit following unspecified cerebrovascular disease|Psychomotor deficit following unspecified cerebrovascular disease +C4268540|T046|AB|I69.913|ICD10CM|Psychomotor deficit following unspecified cerebvasc disease|Psychomotor deficit following unspecified cerebvasc disease +C4268541|T046|AB|I69.914|ICD10CM|Fntl lb and exec fcn def following unsp cerebvasc disease|Fntl lb and exec fcn def following unsp cerebvasc disease +C4268541|T046|PT|I69.914|ICD10CM|Frontal lobe and executive function deficit following unspecified cerebrovascular disease|Frontal lobe and executive function deficit following unspecified cerebrovascular disease +C4268542|T046|AB|I69.915|ICD10CM|Cognitive social or emo def following unsp cerebvasc disease|Cognitive social or emo def following unsp cerebvasc disease +C4268542|T046|PT|I69.915|ICD10CM|Cognitive social or emotional deficit following unspecified cerebrovascular disease|Cognitive social or emotional deficit following unspecified cerebrovascular disease +C4268543|T046|AB|I69.918|ICD10CM|Other symp and signs w cogn fnctns fol unsp cerebvasc dis|Other symp and signs w cogn fnctns fol unsp cerebvasc dis +C4268543|T046|PT|I69.918|ICD10CM|Other symptoms and signs involving cognitive functions following unspecified cerebrovascular disease|Other symptoms and signs involving cognitive functions following unspecified cerebrovascular disease +C4268544|T046|AB|I69.919|ICD10CM|Unsp symp and signs w cogn fnctns fol unsp cerebvasc disease|Unsp symp and signs w cogn fnctns fol unsp cerebvasc disease +C2882650|T046|HT|I69.92|ICD10CM|Speech and language deficits following unspecified cerebrovascular disease|Speech and language deficits following unspecified cerebrovascular disease +C2882650|T046|AB|I69.92|ICD10CM|Speech/lang deficits following unsp cerebrovascular disease|Speech/lang deficits following unsp cerebrovascular disease +C2882651|T046|AB|I69.920|ICD10CM|Aphasia following unspecified cerebrovascular disease|Aphasia following unspecified cerebrovascular disease +C2882651|T046|PT|I69.920|ICD10CM|Aphasia following unspecified cerebrovascular disease|Aphasia following unspecified cerebrovascular disease +C2882652|T046|AB|I69.921|ICD10CM|Dysphasia following unspecified cerebrovascular disease|Dysphasia following unspecified cerebrovascular disease +C2882652|T046|PT|I69.921|ICD10CM|Dysphasia following unspecified cerebrovascular disease|Dysphasia following unspecified cerebrovascular disease +C2882653|T046|AB|I69.922|ICD10CM|Dysarthria following unspecified cerebrovascular disease|Dysarthria following unspecified cerebrovascular disease +C2882653|T046|PT|I69.922|ICD10CM|Dysarthria following unspecified cerebrovascular disease|Dysarthria following unspecified cerebrovascular disease +C2882655|T046|AB|I69.923|ICD10CM|Fluency disorder following unsp cerebrovascular disease|Fluency disorder following unsp cerebrovascular disease +C2882655|T046|PT|I69.923|ICD10CM|Fluency disorder following unspecified cerebrovascular disease|Fluency disorder following unspecified cerebrovascular disease +C4268545|T047|ET|I69.923|ICD10CM|Stuttering following unspecified cerebrovascular disease|Stuttering following unspecified cerebrovascular disease +C2882656|T046|AB|I69.928|ICD10CM|Oth speech/lang deficits following unsp cerebvasc disease|Oth speech/lang deficits following unsp cerebvasc disease +C2882656|T046|PT|I69.928|ICD10CM|Other speech and language deficits following unspecified cerebrovascular disease|Other speech and language deficits following unspecified cerebrovascular disease +C2882657|T046|HT|I69.93|ICD10CM|Monoplegia of upper limb following unspecified cerebrovascular disease|Monoplegia of upper limb following unspecified cerebrovascular disease +C2882657|T046|AB|I69.93|ICD10CM|Monoplg upr lmb following unsp cerebrovascular disease|Monoplg upr lmb following unsp cerebrovascular disease +C2882658|T046|PT|I69.931|ICD10CM|Monoplegia of upper limb following unspecified cerebrovascular disease affecting right dominant side|Monoplegia of upper limb following unspecified cerebrovascular disease affecting right dominant side +C2882658|T046|AB|I69.931|ICD10CM|Monoplg upr lmb fol unsp cerebvasc dis aff right dom side|Monoplg upr lmb fol unsp cerebvasc dis aff right dom side +C2882659|T046|PT|I69.932|ICD10CM|Monoplegia of upper limb following unspecified cerebrovascular disease affecting left dominant side|Monoplegia of upper limb following unspecified cerebrovascular disease affecting left dominant side +C2882659|T046|AB|I69.932|ICD10CM|Monoplg upr lmb fol unsp cerebvasc disease aff left dom side|Monoplg upr lmb fol unsp cerebvasc disease aff left dom side +C2882660|T046|AB|I69.933|ICD10CM|Monoplg upr lmb fol unsp cerebvasc dis aff right nondom side|Monoplg upr lmb fol unsp cerebvasc dis aff right nondom side +C2882661|T046|AB|I69.934|ICD10CM|Monoplg upr lmb fol unsp cerebvasc dis aff left nondom side|Monoplg upr lmb fol unsp cerebvasc dis aff left nondom side +C2882662|T046|PT|I69.939|ICD10CM|Monoplegia of upper limb following unspecified cerebrovascular disease affecting unspecified side|Monoplegia of upper limb following unspecified cerebrovascular disease affecting unspecified side +C2882662|T046|AB|I69.939|ICD10CM|Monoplg upr lmb fol unsp cerebvasc disease aff unsp side|Monoplg upr lmb fol unsp cerebvasc disease aff unsp side +C2882663|T047|HT|I69.94|ICD10CM|Monoplegia of lower limb following unspecified cerebrovascular disease|Monoplegia of lower limb following unspecified cerebrovascular disease +C2882663|T047|AB|I69.94|ICD10CM|Monoplg low lmb following unsp cerebrovascular disease|Monoplg low lmb following unsp cerebrovascular disease +C2882664|T047|PT|I69.941|ICD10CM|Monoplegia of lower limb following unspecified cerebrovascular disease affecting right dominant side|Monoplegia of lower limb following unspecified cerebrovascular disease affecting right dominant side +C2882664|T047|AB|I69.941|ICD10CM|Monoplg low lmb fol unsp cerebvasc dis aff right dom side|Monoplg low lmb fol unsp cerebvasc dis aff right dom side +C2882665|T047|PT|I69.942|ICD10CM|Monoplegia of lower limb following unspecified cerebrovascular disease affecting left dominant side|Monoplegia of lower limb following unspecified cerebrovascular disease affecting left dominant side +C2882665|T047|AB|I69.942|ICD10CM|Monoplg low lmb fol unsp cerebvasc disease aff left dom side|Monoplg low lmb fol unsp cerebvasc disease aff left dom side +C2882666|T047|AB|I69.943|ICD10CM|Monoplg low lmb fol unsp cerebvasc dis aff right nondom side|Monoplg low lmb fol unsp cerebvasc dis aff right nondom side +C2882667|T047|AB|I69.944|ICD10CM|Monoplg low lmb fol unsp cerebvasc dis aff left nondom side|Monoplg low lmb fol unsp cerebvasc dis aff left nondom side +C2882668|T047|PT|I69.949|ICD10CM|Monoplegia of lower limb following unspecified cerebrovascular disease affecting unspecified side|Monoplegia of lower limb following unspecified cerebrovascular disease affecting unspecified side +C2882668|T047|AB|I69.949|ICD10CM|Monoplg low lmb fol unsp cerebvasc disease aff unsp side|Monoplg low lmb fol unsp cerebvasc disease aff unsp side +C2882669|T047|HT|I69.95|ICD10CM|Hemiplegia and hemiparesis following unspecified cerebrovascular disease|Hemiplegia and hemiparesis following unspecified cerebrovascular disease +C2882669|T047|AB|I69.95|ICD10CM|Hemiplga following unsp cerebrovascular disease|Hemiplga following unsp cerebrovascular disease +C2882670|T047|AB|I69.951|ICD10CM|Hemiplga fol unsp cerebvasc disease aff right dominant side|Hemiplga fol unsp cerebvasc disease aff right dominant side +C2882671|T047|AB|I69.952|ICD10CM|Hemiplga fol unsp cerebvasc disease aff left dominant side|Hemiplga fol unsp cerebvasc disease aff left dominant side +C2882672|T047|AB|I69.953|ICD10CM|Hemiplga fol unsp cerebvasc disease aff right nondom side|Hemiplga fol unsp cerebvasc disease aff right nondom side +C2882673|T047|AB|I69.954|ICD10CM|Hemiplga fol unsp cerebvasc disease aff left nondom side|Hemiplga fol unsp cerebvasc disease aff left nondom side +C2882674|T047|PT|I69.959|ICD10CM|Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting unspecified side|Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting unspecified side +C2882674|T047|AB|I69.959|ICD10CM|Hemiplga following unsp cerebvasc disease aff unsp side|Hemiplga following unsp cerebvasc disease aff unsp side +C2882675|T046|AB|I69.96|ICD10CM|Oth paralytic syndrome following unsp cerebvasc disease|Oth paralytic syndrome following unsp cerebvasc disease +C2882675|T046|HT|I69.96|ICD10CM|Other paralytic syndrome following unspecified cerebrovascular disease|Other paralytic syndrome following unspecified cerebrovascular disease +C2882676|T046|AB|I69.961|ICD10CM|Oth parlyt synd fol unsp cerebvasc dis aff right dom side|Oth parlyt synd fol unsp cerebvasc dis aff right dom side +C2882676|T046|PT|I69.961|ICD10CM|Other paralytic syndrome following unspecified cerebrovascular disease affecting right dominant side|Other paralytic syndrome following unspecified cerebrovascular disease affecting right dominant side +C2882677|T046|AB|I69.962|ICD10CM|Oth parlyt synd fol unsp cerebvasc disease aff left dom side|Oth parlyt synd fol unsp cerebvasc disease aff left dom side +C2882677|T046|PT|I69.962|ICD10CM|Other paralytic syndrome following unspecified cerebrovascular disease affecting left dominant side|Other paralytic syndrome following unspecified cerebrovascular disease affecting left dominant side +C2882678|T046|AB|I69.963|ICD10CM|Oth parlyt synd fol unsp cerebvasc dis aff right nondom side|Oth parlyt synd fol unsp cerebvasc dis aff right nondom side +C2882679|T046|AB|I69.964|ICD10CM|Oth parlyt synd fol unsp cerebvasc dis aff left nondom side|Oth parlyt synd fol unsp cerebvasc dis aff left nondom side +C2882680|T046|AB|I69.965|ICD10CM|Oth paralytic syndrome following unsp cerebvasc disease, bi|Oth paralytic syndrome following unsp cerebvasc disease, bi +C2882680|T046|PT|I69.965|ICD10CM|Other paralytic syndrome following unspecified cerebrovascular disease, bilateral|Other paralytic syndrome following unspecified cerebrovascular disease, bilateral +C2882681|T046|AB|I69.969|ICD10CM|Oth parlyt syndrome fol unsp cerebvasc disease aff unsp side|Oth parlyt syndrome fol unsp cerebvasc disease aff unsp side +C2882681|T046|PT|I69.969|ICD10CM|Other paralytic syndrome following unspecified cerebrovascular disease affecting unspecified side|Other paralytic syndrome following unspecified cerebrovascular disease affecting unspecified side +C0348644|T046|AB|I69.99|ICD10CM|Other sequelae of unspecified cerebrovascular disease|Other sequelae of unspecified cerebrovascular disease +C0348644|T046|HT|I69.99|ICD10CM|Other sequelae of unspecified cerebrovascular disease|Other sequelae of unspecified cerebrovascular disease +C2882682|T047|AB|I69.990|ICD10CM|Apraxia following unspecified cerebrovascular disease|Apraxia following unspecified cerebrovascular disease +C2882682|T047|PT|I69.990|ICD10CM|Apraxia following unspecified cerebrovascular disease|Apraxia following unspecified cerebrovascular disease +C2882683|T047|AB|I69.991|ICD10CM|Dysphagia following unspecified cerebrovascular disease|Dysphagia following unspecified cerebrovascular disease +C2882683|T047|PT|I69.991|ICD10CM|Dysphagia following unspecified cerebrovascular disease|Dysphagia following unspecified cerebrovascular disease +C2882684|T046|ET|I69.992|ICD10CM|Facial droop following unspecified cerebrovascular disease|Facial droop following unspecified cerebrovascular disease +C2882685|T047|AB|I69.992|ICD10CM|Facial weakness following unsp cerebrovascular disease|Facial weakness following unsp cerebrovascular disease +C2882685|T047|PT|I69.992|ICD10CM|Facial weakness following unspecified cerebrovascular disease|Facial weakness following unspecified cerebrovascular disease +C2882686|T047|AB|I69.993|ICD10CM|Ataxia following unspecified cerebrovascular disease|Ataxia following unspecified cerebrovascular disease +C2882686|T047|PT|I69.993|ICD10CM|Ataxia following unspecified cerebrovascular disease|Ataxia following unspecified cerebrovascular disease +C2882687|T033|ET|I69.998|ICD10CM|Alteration in sensation following unspecified cerebrovascular disease|Alteration in sensation following unspecified cerebrovascular disease +C2882688|T046|ET|I69.998|ICD10CM|Disturbance of vision following unspecified cerebrovascular disease|Disturbance of vision following unspecified cerebrovascular disease +C2882689|T047|AB|I69.998|ICD10CM|Other sequelae following unspecified cerebrovascular disease|Other sequelae following unspecified cerebrovascular disease +C2882689|T047|PT|I69.998|ICD10CM|Other sequelae following unspecified cerebrovascular disease|Other sequelae following unspecified cerebrovascular disease +C0264954|T047|ET|I70|ICD10CM|arterial degeneration|arterial degeneration +C0878486|T047|ET|I70|ICD10CM|arteriolosclerosis|arteriolosclerosis +C0003850|T047|ET|I70|ICD10CM|arteriosclerosis|arteriosclerosis +C0003850|T047|ET|I70|ICD10CM|arteriosclerotic vascular disease|arteriosclerotic vascular disease +C0264954|T047|ET|I70|ICD10CM|arteriovascular degeneration|arteriovascular degeneration +C0264956|T046|ET|I70|ICD10CM|atheroma|atheroma +C0004153|T047|HT|I70|ICD10|Atherosclerosis|Atherosclerosis +C0004153|T047|HT|I70|ICD10CM|Atherosclerosis|Atherosclerosis +C0004153|T047|AB|I70|ICD10CM|Atherosclerosis|Atherosclerosis +C4290148|T047|ET|I70|ICD10CM|endarteritis deformans or obliterans|endarteritis deformans or obliterans +C0264990|T047|ET|I70|ICD10CM|senile arteritis|senile arteritis +C0264991|T047|ET|I70|ICD10CM|senile endarteritis|senile endarteritis +C1281300|T047|ET|I70|ICD10CM|vascular degeneration|vascular degeneration +C0178274|T047|HT|I70-I79|ICD10CM|Diseases of arteries, arterioles and capillaries (I70-I79)|Diseases of arteries, arterioles and capillaries (I70-I79) +C0178274|T047|HT|I70-I79.9|ICD10|Diseases of arteries, arterioles and capillaries|Diseases of arteries, arterioles and capillaries +C0155733|T047|PT|I70.0|ICD10|Atherosclerosis of aorta|Atherosclerosis of aorta +C0155733|T047|PT|I70.0|ICD10CM|Atherosclerosis of aorta|Atherosclerosis of aorta +C0155733|T047|AB|I70.0|ICD10CM|Atherosclerosis of aorta|Atherosclerosis of aorta +C0155734|T047|PT|I70.1|ICD10CM|Atherosclerosis of renal artery|Atherosclerosis of renal artery +C0155734|T047|AB|I70.1|ICD10CM|Atherosclerosis of renal artery|Atherosclerosis of renal artery +C0155734|T047|PT|I70.1|ICD10|Atherosclerosis of renal artery|Atherosclerosis of renal artery +C2882691|T047|ET|I70.1|ICD10CM|Goldblatt's kidney|Goldblatt's kidney +C3495604|T047|PT|I70.2|ICD10|Atherosclerosis of arteries of extremities|Atherosclerosis of arteries of extremities +C3495604|T047|HT|I70.2|ICD10CM|Atherosclerosis of native arteries of the extremities|Atherosclerosis of native arteries of the extremities +C3495604|T047|AB|I70.2|ICD10CM|Atherosclerosis of native arteries of the extremities|Atherosclerosis of native arteries of the extremities +C0887866|T047|ET|I70.2|ICD10CM|Mönckeberg's (medial) sclerosis|Mönckeberg's (medial) sclerosis +C0375294|T047|AB|I70.20|ICD10CM|Unsp atherosclerosis of native arteries of extremities|Unsp atherosclerosis of native arteries of extremities +C0375294|T047|HT|I70.20|ICD10CM|Unspecified atherosclerosis of native arteries of extremities|Unspecified atherosclerosis of native arteries of extremities +C2882692|T047|AB|I70.201|ICD10CM|Unsp athscl native arteries of extremities, right leg|Unsp athscl native arteries of extremities, right leg +C2882692|T047|PT|I70.201|ICD10CM|Unspecified atherosclerosis of native arteries of extremities, right leg|Unspecified atherosclerosis of native arteries of extremities, right leg +C2882693|T047|AB|I70.202|ICD10CM|Unsp athscl native arteries of extremities, left leg|Unsp athscl native arteries of extremities, left leg +C2882693|T047|PT|I70.202|ICD10CM|Unspecified atherosclerosis of native arteries of extremities, left leg|Unspecified atherosclerosis of native arteries of extremities, left leg +C2882694|T047|AB|I70.203|ICD10CM|Unsp athscl native arteries of extremities, bilateral legs|Unsp athscl native arteries of extremities, bilateral legs +C2882694|T047|PT|I70.203|ICD10CM|Unspecified atherosclerosis of native arteries of extremities, bilateral legs|Unspecified atherosclerosis of native arteries of extremities, bilateral legs +C2882695|T047|AB|I70.208|ICD10CM|Unsp athscl native arteries of extremities, oth extremity|Unsp athscl native arteries of extremities, oth extremity +C2882695|T047|PT|I70.208|ICD10CM|Unspecified atherosclerosis of native arteries of extremities, other extremity|Unspecified atherosclerosis of native arteries of extremities, other extremity +C2882696|T047|AB|I70.209|ICD10CM|Unsp athscl native arteries of extremities, unsp extremity|Unsp athscl native arteries of extremities, unsp extremity +C2882696|T047|PT|I70.209|ICD10CM|Unspecified atherosclerosis of native arteries of extremities, unspecified extremity|Unspecified atherosclerosis of native arteries of extremities, unspecified extremity +C0375295|T047|HT|I70.21|ICD10CM|Atherosclerosis of native arteries of extremities with intermittent claudication|Atherosclerosis of native arteries of extremities with intermittent claudication +C0375295|T047|AB|I70.21|ICD10CM|Athscl native arteries of extremities w intermittent claud|Athscl native arteries of extremities w intermittent claud +C2882697|T047|PT|I70.211|ICD10CM|Atherosclerosis of native arteries of extremities with intermittent claudication, right leg|Atherosclerosis of native arteries of extremities with intermittent claudication, right leg +C2882697|T047|AB|I70.211|ICD10CM|Athscl native arteries of extrm w intrmt claud, right leg|Athscl native arteries of extrm w intrmt claud, right leg +C2882698|T047|PT|I70.212|ICD10CM|Atherosclerosis of native arteries of extremities with intermittent claudication, left leg|Atherosclerosis of native arteries of extremities with intermittent claudication, left leg +C2882698|T047|AB|I70.212|ICD10CM|Athscl native arteries of extrm w intrmt claud, left leg|Athscl native arteries of extrm w intrmt claud, left leg +C2882699|T047|PT|I70.213|ICD10CM|Atherosclerosis of native arteries of extremities with intermittent claudication, bilateral legs|Atherosclerosis of native arteries of extremities with intermittent claudication, bilateral legs +C2882699|T047|AB|I70.213|ICD10CM|Athscl native arteries of extrm w intrmt claud, bi legs|Athscl native arteries of extrm w intrmt claud, bi legs +C2882700|T047|PT|I70.218|ICD10CM|Atherosclerosis of native arteries of extremities with intermittent claudication, other extremity|Atherosclerosis of native arteries of extremities with intermittent claudication, other extremity +C2882700|T047|AB|I70.218|ICD10CM|Athscl native arteries of extrm w intrmt claud, oth extrm|Athscl native arteries of extrm w intrmt claud, oth extrm +C2882701|T047|AB|I70.219|ICD10CM|Athscl native arteries of extrm w intrmt claud, unsp extrm|Athscl native arteries of extrm w intrmt claud, unsp extrm +C4290149|T047|ET|I70.22|ICD10CM|any condition classifiable to I70.21-|any condition classifiable to I70.21- +C2882703|T047|HT|I70.22|ICD10CM|Atherosclerosis of native arteries of extremities with rest pain|Atherosclerosis of native arteries of extremities with rest pain +C2882703|T047|AB|I70.22|ICD10CM|Athscl native arteries of extremities w rest pain|Athscl native arteries of extremities w rest pain +C2882704|T047|PT|I70.221|ICD10CM|Atherosclerosis of native arteries of extremities with rest pain, right leg|Atherosclerosis of native arteries of extremities with rest pain, right leg +C2882704|T047|AB|I70.221|ICD10CM|Athscl native arteries of extremities w rest pain, right leg|Athscl native arteries of extremities w rest pain, right leg +C2882705|T047|PT|I70.222|ICD10CM|Atherosclerosis of native arteries of extremities with rest pain, left leg|Atherosclerosis of native arteries of extremities with rest pain, left leg +C2882705|T047|AB|I70.222|ICD10CM|Athscl native arteries of extremities w rest pain, left leg|Athscl native arteries of extremities w rest pain, left leg +C2882706|T047|PT|I70.223|ICD10CM|Atherosclerosis of native arteries of extremities with rest pain, bilateral legs|Atherosclerosis of native arteries of extremities with rest pain, bilateral legs +C2882706|T047|AB|I70.223|ICD10CM|Athscl native arteries of extrm w rest pain, bilateral legs|Athscl native arteries of extrm w rest pain, bilateral legs +C2882707|T047|PT|I70.228|ICD10CM|Atherosclerosis of native arteries of extremities with rest pain, other extremity|Atherosclerosis of native arteries of extremities with rest pain, other extremity +C2882707|T047|AB|I70.228|ICD10CM|Athscl native arteries of extrm w rest pain, oth extremity|Athscl native arteries of extrm w rest pain, oth extremity +C2882708|T047|PT|I70.229|ICD10CM|Atherosclerosis of native arteries of extremities with rest pain, unspecified extremity|Atherosclerosis of native arteries of extremities with rest pain, unspecified extremity +C2882708|T047|AB|I70.229|ICD10CM|Athscl native arteries of extrm w rest pain, unsp extremity|Athscl native arteries of extrm w rest pain, unsp extremity +C4290150|T047|ET|I70.23|ICD10CM|any condition classifiable to I70.211 and I70.221|any condition classifiable to I70.211 and I70.221 +C2882710|T047|AB|I70.23|ICD10CM|Atherosclerosis of native arteries of right leg w ulceration|Atherosclerosis of native arteries of right leg w ulceration +C2882710|T047|HT|I70.23|ICD10CM|Atherosclerosis of native arteries of right leg with ulceration|Atherosclerosis of native arteries of right leg with ulceration +C2882711|T047|PT|I70.231|ICD10CM|Atherosclerosis of native arteries of right leg with ulceration of thigh|Atherosclerosis of native arteries of right leg with ulceration of thigh +C2882711|T047|AB|I70.231|ICD10CM|Athscl native arteries of right leg w ulceration of thigh|Athscl native arteries of right leg w ulceration of thigh +C2882712|T047|PT|I70.232|ICD10CM|Atherosclerosis of native arteries of right leg with ulceration of calf|Atherosclerosis of native arteries of right leg with ulceration of calf +C2882712|T047|AB|I70.232|ICD10CM|Athscl native arteries of right leg w ulceration of calf|Athscl native arteries of right leg w ulceration of calf +C2882713|T047|PT|I70.233|ICD10CM|Atherosclerosis of native arteries of right leg with ulceration of ankle|Atherosclerosis of native arteries of right leg with ulceration of ankle +C2882713|T047|AB|I70.233|ICD10CM|Athscl native arteries of right leg w ulceration of ankle|Athscl native arteries of right leg w ulceration of ankle +C2882715|T047|PT|I70.234|ICD10CM|Atherosclerosis of native arteries of right leg with ulceration of heel and midfoot|Atherosclerosis of native arteries of right leg with ulceration of heel and midfoot +C2882714|T047|ET|I70.234|ICD10CM|Atherosclerosis of native arteries of right leg with ulceration of plantar surface of midfoot|Atherosclerosis of native arteries of right leg with ulceration of plantar surface of midfoot +C2882715|T047|AB|I70.234|ICD10CM|Athscl native art of right leg w ulcer of heel and midfoot|Athscl native art of right leg w ulcer of heel and midfoot +C2882716|T047|ET|I70.235|ICD10CM|Atherosclerosis of native arteries of right leg extremities with ulceration of toe|Atherosclerosis of native arteries of right leg extremities with ulceration of toe +C2882717|T047|PT|I70.235|ICD10CM|Atherosclerosis of native arteries of right leg with ulceration of other part of foot|Atherosclerosis of native arteries of right leg with ulceration of other part of foot +C2882717|T047|AB|I70.235|ICD10CM|Athscl native arteries of right leg w ulcer oth prt foot|Athscl native arteries of right leg w ulcer oth prt foot +C5140811|T047|PT|I70.238|ICD10CM|Atherosclerosis of native arteries of right leg with ulceration of other part of lower leg|Atherosclerosis of native arteries of right leg with ulceration of other part of lower leg +C5140811|T047|AB|I70.238|ICD10CM|Athscl native art of right leg with ulcer oth prt low leg|Athscl native art of right leg with ulcer oth prt low leg +C2882719|T047|PT|I70.239|ICD10CM|Atherosclerosis of native arteries of right leg with ulceration of unspecified site|Atherosclerosis of native arteries of right leg with ulceration of unspecified site +C2882719|T047|AB|I70.239|ICD10CM|Athscl native arteries of right leg w ulcer of unsp site|Athscl native arteries of right leg w ulcer of unsp site +C4290151|T047|ET|I70.24|ICD10CM|any condition classifiable to I70.212 and I70.222|any condition classifiable to I70.212 and I70.222 +C2882721|T047|AB|I70.24|ICD10CM|Atherosclerosis of native arteries of left leg w ulceration|Atherosclerosis of native arteries of left leg w ulceration +C2882721|T047|HT|I70.24|ICD10CM|Atherosclerosis of native arteries of left leg with ulceration|Atherosclerosis of native arteries of left leg with ulceration +C2882722|T047|PT|I70.241|ICD10CM|Atherosclerosis of native arteries of left leg with ulceration of thigh|Atherosclerosis of native arteries of left leg with ulceration of thigh +C2882722|T047|AB|I70.241|ICD10CM|Athscl native arteries of left leg w ulceration of thigh|Athscl native arteries of left leg w ulceration of thigh +C2882723|T047|PT|I70.242|ICD10CM|Atherosclerosis of native arteries of left leg with ulceration of calf|Atherosclerosis of native arteries of left leg with ulceration of calf +C2882723|T047|AB|I70.242|ICD10CM|Athscl native arteries of left leg w ulceration of calf|Athscl native arteries of left leg w ulceration of calf +C2882724|T047|PT|I70.243|ICD10CM|Atherosclerosis of native arteries of left leg with ulceration of ankle|Atherosclerosis of native arteries of left leg with ulceration of ankle +C2882724|T047|AB|I70.243|ICD10CM|Athscl native arteries of left leg w ulceration of ankle|Athscl native arteries of left leg w ulceration of ankle +C2882726|T047|PT|I70.244|ICD10CM|Atherosclerosis of native arteries of left leg with ulceration of heel and midfoot|Atherosclerosis of native arteries of left leg with ulceration of heel and midfoot +C2882725|T047|ET|I70.244|ICD10CM|Atherosclerosis of native arteries of left leg with ulceration of plantar surface of midfoot|Atherosclerosis of native arteries of left leg with ulceration of plantar surface of midfoot +C2882726|T047|AB|I70.244|ICD10CM|Athscl native art of left leg w ulcer of heel and midfoot|Athscl native art of left leg w ulcer of heel and midfoot +C2882727|T047|ET|I70.245|ICD10CM|Atherosclerosis of native arteries of left leg extremities with ulceration of toe|Atherosclerosis of native arteries of left leg extremities with ulceration of toe +C2882728|T047|PT|I70.245|ICD10CM|Atherosclerosis of native arteries of left leg with ulceration of other part of foot|Atherosclerosis of native arteries of left leg with ulceration of other part of foot +C2882728|T047|AB|I70.245|ICD10CM|Athscl native arteries of left leg w ulceration oth prt foot|Athscl native arteries of left leg w ulceration oth prt foot +C5140812|T047|PT|I70.248|ICD10CM|Atherosclerosis of native arteries of left leg with ulceration of other part of lower leg|Atherosclerosis of native arteries of left leg with ulceration of other part of lower leg +C5140812|T047|AB|I70.248|ICD10CM|Athscl native art of left leg with ulcer oth prt low leg|Athscl native art of left leg with ulcer oth prt low leg +C2882730|T047|PT|I70.249|ICD10CM|Atherosclerosis of native arteries of left leg with ulceration of unspecified site|Atherosclerosis of native arteries of left leg with ulceration of unspecified site +C2882730|T047|AB|I70.249|ICD10CM|Athscl native arteries of left leg w ulceration of unsp site|Athscl native arteries of left leg w ulceration of unsp site +C4290152|T047|ET|I70.25|ICD10CM|any condition classifiable to I70.218 and I70.228|any condition classifiable to I70.218 and I70.228 +C2882732|T047|PT|I70.25|ICD10CM|Atherosclerosis of native arteries of other extremities with ulceration|Atherosclerosis of native arteries of other extremities with ulceration +C2882732|T047|AB|I70.25|ICD10CM|Athscl native arteries of extremities w ulceration|Athscl native arteries of extremities w ulceration +C4290153|T047|ET|I70.26|ICD10CM|any condition classifiable to I70.21-, I70.22-, I70.23-, I70.24-, and I70.25-|any condition classifiable to I70.21-, I70.22-, I70.23-, I70.24-, and I70.25- +C0375298|T047|AB|I70.26|ICD10CM|Atherosclerosis of native arteries of extremities w gangrene|Atherosclerosis of native arteries of extremities w gangrene +C0375298|T047|HT|I70.26|ICD10CM|Atherosclerosis of native arteries of extremities with gangrene|Atherosclerosis of native arteries of extremities with gangrene +C2882734|T047|PT|I70.261|ICD10CM|Atherosclerosis of native arteries of extremities with gangrene, right leg|Atherosclerosis of native arteries of extremities with gangrene, right leg +C2882734|T047|AB|I70.261|ICD10CM|Athscl native arteries of extremities w gangrene, right leg|Athscl native arteries of extremities w gangrene, right leg +C2882735|T047|PT|I70.262|ICD10CM|Atherosclerosis of native arteries of extremities with gangrene, left leg|Atherosclerosis of native arteries of extremities with gangrene, left leg +C2882735|T047|AB|I70.262|ICD10CM|Athscl native arteries of extremities w gangrene, left leg|Athscl native arteries of extremities w gangrene, left leg +C2882736|T047|PT|I70.263|ICD10CM|Atherosclerosis of native arteries of extremities with gangrene, bilateral legs|Atherosclerosis of native arteries of extremities with gangrene, bilateral legs +C2882736|T047|AB|I70.263|ICD10CM|Athscl native arteries of extrm w gangrene, bilateral legs|Athscl native arteries of extrm w gangrene, bilateral legs +C2882737|T047|PT|I70.268|ICD10CM|Atherosclerosis of native arteries of extremities with gangrene, other extremity|Atherosclerosis of native arteries of extremities with gangrene, other extremity +C2882737|T047|AB|I70.268|ICD10CM|Athscl native arteries of extrm w gangrene, oth extremity|Athscl native arteries of extrm w gangrene, oth extremity +C2882738|T047|PT|I70.269|ICD10CM|Atherosclerosis of native arteries of extremities with gangrene, unspecified extremity|Atherosclerosis of native arteries of extremities with gangrene, unspecified extremity +C2882738|T047|AB|I70.269|ICD10CM|Athscl native arteries of extrm w gangrene, unsp extremity|Athscl native arteries of extrm w gangrene, unsp extremity +C0375299|T047|AB|I70.29|ICD10CM|Other atherosclerosis of native arteries of extremities|Other atherosclerosis of native arteries of extremities +C0375299|T047|HT|I70.29|ICD10CM|Other atherosclerosis of native arteries of extremities|Other atherosclerosis of native arteries of extremities +C2882739|T047|AB|I70.291|ICD10CM|Oth athscl native arteries of extremities, right leg|Oth athscl native arteries of extremities, right leg +C2882739|T047|PT|I70.291|ICD10CM|Other atherosclerosis of native arteries of extremities, right leg|Other atherosclerosis of native arteries of extremities, right leg +C2882740|T047|AB|I70.292|ICD10CM|Oth athscl native arteries of extremities, left leg|Oth athscl native arteries of extremities, left leg +C2882740|T047|PT|I70.292|ICD10CM|Other atherosclerosis of native arteries of extremities, left leg|Other atherosclerosis of native arteries of extremities, left leg +C2882741|T047|AB|I70.293|ICD10CM|Oth athscl native arteries of extremities, bilateral legs|Oth athscl native arteries of extremities, bilateral legs +C2882741|T047|PT|I70.293|ICD10CM|Other atherosclerosis of native arteries of extremities, bilateral legs|Other atherosclerosis of native arteries of extremities, bilateral legs +C2882742|T047|AB|I70.298|ICD10CM|Oth athscl native arteries of extremities, oth extremity|Oth athscl native arteries of extremities, oth extremity +C2882742|T047|PT|I70.298|ICD10CM|Other atherosclerosis of native arteries of extremities, other extremity|Other atherosclerosis of native arteries of extremities, other extremity +C2882743|T047|AB|I70.299|ICD10CM|Oth athscl native arteries of extremities, unsp extremity|Oth athscl native arteries of extremities, unsp extremity +C2882743|T047|PT|I70.299|ICD10CM|Other atherosclerosis of native arteries of extremities, unspecified extremity|Other atherosclerosis of native arteries of extremities, unspecified extremity +C2882744|T047|HT|I70.3|ICD10CM|Atherosclerosis of unspecified type of bypass graft(s) of the extremities|Atherosclerosis of unspecified type of bypass graft(s) of the extremities +C2882744|T047|AB|I70.3|ICD10CM|Athscl unsp type bypass graft(s) of the extremities|Athscl unsp type bypass graft(s) of the extremities +C2882745|T047|AB|I70.30|ICD10CM|Unsp athscl unsp type bypass graft(s) of the extremities|Unsp athscl unsp type bypass graft(s) of the extremities +C2882745|T047|HT|I70.30|ICD10CM|Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities|Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities +C2882746|T047|AB|I70.301|ICD10CM|Unsp athscl unsp type bypass of the extremities, right leg|Unsp athscl unsp type bypass of the extremities, right leg +C2882746|T047|PT|I70.301|ICD10CM|Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, right leg|Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, right leg +C2882747|T047|AB|I70.302|ICD10CM|Unsp athscl unsp type bypass of the extremities, left leg|Unsp athscl unsp type bypass of the extremities, left leg +C2882747|T047|PT|I70.302|ICD10CM|Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, left leg|Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, left leg +C2882748|T047|AB|I70.303|ICD10CM|Unsp athscl unsp type bypass of the extrm, bilateral legs|Unsp athscl unsp type bypass of the extrm, bilateral legs +C2882749|T047|AB|I70.308|ICD10CM|Unsp athscl unsp type bypass of the extrm, oth extremity|Unsp athscl unsp type bypass of the extrm, oth extremity +C2882750|T047|AB|I70.309|ICD10CM|Unsp athscl unsp type bypass of the extrm, unsp extremity|Unsp athscl unsp type bypass of the extrm, unsp extremity +C2882751|T047|AB|I70.31|ICD10CM|Athscl unsp type bypass of the extremities w intrmt claud|Athscl unsp type bypass of the extremities w intrmt claud +C2882752|T047|AB|I70.311|ICD10CM|Athscl unsp type bypass of extrm w intrmt claud, right leg|Athscl unsp type bypass of extrm w intrmt claud, right leg +C2882753|T047|AB|I70.312|ICD10CM|Athscl unsp type bypass of extrm w intrmt claud, left leg|Athscl unsp type bypass of extrm w intrmt claud, left leg +C2882754|T047|AB|I70.313|ICD10CM|Athscl unsp type bypass of the extrm w intrmt claud, bi legs|Athscl unsp type bypass of the extrm w intrmt claud, bi legs +C2882755|T047|AB|I70.318|ICD10CM|Athscl unsp type bypass of extrm w intrmt claud, oth extrm|Athscl unsp type bypass of extrm w intrmt claud, oth extrm +C2882756|T047|AB|I70.319|ICD10CM|Athscl unsp type bypass of extrm w intrmt claud, unsp extrm|Athscl unsp type bypass of extrm w intrmt claud, unsp extrm +C4290154|T047|ET|I70.32|ICD10CM|any condition classifiable to I70.31-|any condition classifiable to I70.31- +C2882758|T047|HT|I70.32|ICD10CM|Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain|Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain +C2882758|T047|AB|I70.32|ICD10CM|Athscl unsp type bypass of the extremities w rest pain|Athscl unsp type bypass of the extremities w rest pain +C2882759|T047|PT|I70.321|ICD10CM|Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, right leg|Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, right leg +C2882759|T047|AB|I70.321|ICD10CM|Athscl unsp type bypass of the extrm w rest pain, right leg|Athscl unsp type bypass of the extrm w rest pain, right leg +C2882760|T047|PT|I70.322|ICD10CM|Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, left leg|Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, left leg +C2882760|T047|AB|I70.322|ICD10CM|Athscl unsp type bypass of the extrm w rest pain, left leg|Athscl unsp type bypass of the extrm w rest pain, left leg +C2882761|T047|AB|I70.323|ICD10CM|Athscl unsp type bypass of the extrm w rest pain, bi legs|Athscl unsp type bypass of the extrm w rest pain, bi legs +C2882762|T047|AB|I70.328|ICD10CM|Athscl unsp type bypass of the extrm w rest pain, oth extrm|Athscl unsp type bypass of the extrm w rest pain, oth extrm +C2882763|T047|AB|I70.329|ICD10CM|Athscl unsp type bypass of the extrm w rest pain, unsp extrm|Athscl unsp type bypass of the extrm w rest pain, unsp extrm +C4290155|T047|ET|I70.33|ICD10CM|any condition classifiable to I70.311 and I70.321|any condition classifiable to I70.311 and I70.321 +C2882765|T047|HT|I70.33|ICD10CM|Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration|Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration +C2882765|T047|AB|I70.33|ICD10CM|Athscl unsp type bypass of the right leg w ulceration|Athscl unsp type bypass of the right leg w ulceration +C2882766|T047|PT|I70.331|ICD10CM|Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of thigh|Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of thigh +C2882766|T047|AB|I70.331|ICD10CM|Athscl unsp type bypass of the right leg w ulcer of thigh|Athscl unsp type bypass of the right leg w ulcer of thigh +C2882767|T047|PT|I70.332|ICD10CM|Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of calf|Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of calf +C2882767|T047|AB|I70.332|ICD10CM|Athscl unsp type bypass of the right leg w ulcer of calf|Athscl unsp type bypass of the right leg w ulcer of calf +C2882768|T047|PT|I70.333|ICD10CM|Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of ankle|Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of ankle +C2882768|T047|AB|I70.333|ICD10CM|Athscl unsp type bypass of the right leg w ulcer of ankle|Athscl unsp type bypass of the right leg w ulcer of ankle +C2882770|T047|AB|I70.334|ICD10CM|Athscl unsp type bypass of r leg w ulcer of heel and midft|Athscl unsp type bypass of r leg w ulcer of heel and midft +C2882771|T047|ET|I70.335|ICD10CM|Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of toe|Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of toe +C2882772|T047|AB|I70.335|ICD10CM|Athscl unsp type bypass of right leg w ulcer oth prt foot|Athscl unsp type bypass of right leg w ulcer oth prt foot +C2882773|T047|AB|I70.338|ICD10CM|Athscl unsp type bypass of right leg w ulcer oth prt low leg|Athscl unsp type bypass of right leg w ulcer oth prt low leg +C2882774|T047|AB|I70.339|ICD10CM|Athscl unsp type bypass of right leg w ulcer of unsp site|Athscl unsp type bypass of right leg w ulcer of unsp site +C4290156|T047|ET|I70.34|ICD10CM|any condition classifiable to I70.312 and I70.322|any condition classifiable to I70.312 and I70.322 +C2882776|T047|HT|I70.34|ICD10CM|Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration|Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration +C2882776|T047|AB|I70.34|ICD10CM|Athscl unsp type bypass of the left leg w ulceration|Athscl unsp type bypass of the left leg w ulceration +C2882777|T047|PT|I70.341|ICD10CM|Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of thigh|Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of thigh +C2882777|T047|AB|I70.341|ICD10CM|Athscl unsp type bypass of the left leg w ulcer of thigh|Athscl unsp type bypass of the left leg w ulcer of thigh +C2882778|T047|PT|I70.342|ICD10CM|Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of calf|Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of calf +C2882778|T047|AB|I70.342|ICD10CM|Athscl unsp type bypass of the left leg w ulceration of calf|Athscl unsp type bypass of the left leg w ulceration of calf +C2882779|T047|PT|I70.343|ICD10CM|Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of ankle|Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of ankle +C2882779|T047|AB|I70.343|ICD10CM|Athscl unsp type bypass of the left leg w ulcer of ankle|Athscl unsp type bypass of the left leg w ulcer of ankle +C2882781|T047|AB|I70.344|ICD10CM|Athscl unsp type bypass of left leg w ulc of heel and midft|Athscl unsp type bypass of left leg w ulc of heel and midft +C2882782|T047|ET|I70.345|ICD10CM|Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of toe|Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of toe +C2882783|T047|AB|I70.345|ICD10CM|Athscl unsp type bypass of the left leg w ulcer oth prt foot|Athscl unsp type bypass of the left leg w ulcer oth prt foot +C2882784|T047|AB|I70.348|ICD10CM|Athscl unsp type bypass of left leg w ulcer oth prt low leg|Athscl unsp type bypass of left leg w ulcer oth prt low leg +C2882785|T047|AB|I70.349|ICD10CM|Athscl unsp type bypass of the left leg w ulcer of unsp site|Athscl unsp type bypass of the left leg w ulcer of unsp site +C4290157|T047|ET|I70.35|ICD10CM|any condition classifiable to I70.318 and I70.328|any condition classifiable to I70.318 and I70.328 +C2882787|T047|PT|I70.35|ICD10CM|Atherosclerosis of unspecified type of bypass graft(s) of other extremity with ulceration|Atherosclerosis of unspecified type of bypass graft(s) of other extremity with ulceration +C2882787|T047|AB|I70.35|ICD10CM|Athscl unsp type bypass graft(s) of extremity w ulceration|Athscl unsp type bypass graft(s) of extremity w ulceration +C4290158|T047|ET|I70.36|ICD10CM|any condition classifiable to I70.31-, I70.32-, I70.33-, I70.34-, I70.35|any condition classifiable to I70.31-, I70.32-, I70.33-, I70.34-, I70.35 +C2882789|T047|HT|I70.36|ICD10CM|Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene|Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene +C2882789|T047|AB|I70.36|ICD10CM|Athscl unsp type bypass of the extremities w gangrene|Athscl unsp type bypass of the extremities w gangrene +C2882790|T047|PT|I70.361|ICD10CM|Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, right leg|Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, right leg +C2882790|T047|AB|I70.361|ICD10CM|Athscl unsp type bypass of the extrm w gangrene, right leg|Athscl unsp type bypass of the extrm w gangrene, right leg +C2882791|T047|PT|I70.362|ICD10CM|Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, left leg|Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, left leg +C2882791|T047|AB|I70.362|ICD10CM|Athscl unsp type bypass of the extrm w gangrene, left leg|Athscl unsp type bypass of the extrm w gangrene, left leg +C2882792|T047|AB|I70.363|ICD10CM|Athscl unsp type bypass of the extrm w gangrene, bi legs|Athscl unsp type bypass of the extrm w gangrene, bi legs +C2882793|T047|AB|I70.368|ICD10CM|Athscl unsp type bypass of the extrm w gangrene, oth extrm|Athscl unsp type bypass of the extrm w gangrene, oth extrm +C2882794|T047|AB|I70.369|ICD10CM|Athscl unsp type bypass of the extrm w gangrene, unsp extrm|Athscl unsp type bypass of the extrm w gangrene, unsp extrm +C2882795|T047|AB|I70.39|ICD10CM|Oth athscl unsp type bypass graft(s) of the extremities|Oth athscl unsp type bypass graft(s) of the extremities +C2882795|T047|HT|I70.39|ICD10CM|Other atherosclerosis of unspecified type of bypass graft(s) of the extremities|Other atherosclerosis of unspecified type of bypass graft(s) of the extremities +C2882796|T047|AB|I70.391|ICD10CM|Oth athscl unsp type bypass of the extremities, right leg|Oth athscl unsp type bypass of the extremities, right leg +C2882796|T047|PT|I70.391|ICD10CM|Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, right leg|Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, right leg +C2882797|T047|AB|I70.392|ICD10CM|Oth athscl unsp type bypass of the extremities, left leg|Oth athscl unsp type bypass of the extremities, left leg +C2882797|T047|PT|I70.392|ICD10CM|Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, left leg|Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, left leg +C2882798|T047|AB|I70.393|ICD10CM|Oth athscl unsp type bypass of the extrm, bilateral legs|Oth athscl unsp type bypass of the extrm, bilateral legs +C2882798|T047|PT|I70.393|ICD10CM|Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, bilateral legs|Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, bilateral legs +C2882799|T047|AB|I70.398|ICD10CM|Oth athscl unsp type bypass of the extrm, oth extremity|Oth athscl unsp type bypass of the extrm, oth extremity +C2882799|T047|PT|I70.398|ICD10CM|Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, other extremity|Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, other extremity +C2882800|T047|AB|I70.399|ICD10CM|Oth athscl unsp type bypass of the extrm, unsp extremity|Oth athscl unsp type bypass of the extrm, unsp extremity +C0375302|T047|HT|I70.4|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the extremities|Atherosclerosis of autologous vein bypass graft(s) of the extremities +C0375302|T047|AB|I70.4|ICD10CM|Athscl autologous vein bypass graft(s) of the extremities|Athscl autologous vein bypass graft(s) of the extremities +C2882801|T047|AB|I70.40|ICD10CM|Unsp athscl autologous vein bypass of the extremities|Unsp athscl autologous vein bypass of the extremities +C2882801|T047|HT|I70.40|ICD10CM|Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities|Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities +C2882802|T047|AB|I70.401|ICD10CM|Unsp athscl autologous vein bypass of the extrm, right leg|Unsp athscl autologous vein bypass of the extrm, right leg +C2882802|T047|PT|I70.401|ICD10CM|Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, right leg|Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, right leg +C2882803|T047|AB|I70.402|ICD10CM|Unsp athscl autologous vein bypass of the extrm, left leg|Unsp athscl autologous vein bypass of the extrm, left leg +C2882803|T047|PT|I70.402|ICD10CM|Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, left leg|Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, left leg +C2882804|T047|AB|I70.403|ICD10CM|Unsp athscl autol vein bypass of the extrm, bilateral legs|Unsp athscl autol vein bypass of the extrm, bilateral legs +C2882804|T047|PT|I70.403|ICD10CM|Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, bilateral legs|Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, bilateral legs +C2882805|T047|AB|I70.408|ICD10CM|Unsp athscl autol vein bypass of the extrm, oth extremity|Unsp athscl autol vein bypass of the extrm, oth extremity +C2882805|T047|PT|I70.408|ICD10CM|Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, other extremity|Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, other extremity +C2882806|T047|AB|I70.409|ICD10CM|Unsp athscl autol vein bypass of the extrm, unsp extremity|Unsp athscl autol vein bypass of the extrm, unsp extremity +C2882807|T047|HT|I70.41|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication|Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication +C2882807|T047|AB|I70.41|ICD10CM|Athscl autologous vein bypass of the extrm w intrmt claud|Athscl autologous vein bypass of the extrm w intrmt claud +C2882808|T047|AB|I70.411|ICD10CM|Athscl autol vein bypass of extrm w intrmt claud, right leg|Athscl autol vein bypass of extrm w intrmt claud, right leg +C2882809|T047|AB|I70.412|ICD10CM|Athscl autol vein bypass of extrm w intrmt claud, left leg|Athscl autol vein bypass of extrm w intrmt claud, left leg +C2882810|T047|AB|I70.413|ICD10CM|Athscl autol vein bypass of extrm w intrmt claud, bi legs|Athscl autol vein bypass of extrm w intrmt claud, bi legs +C2882811|T047|AB|I70.418|ICD10CM|Athscl autol vein bypass of extrm w intrmt claud, oth extrm|Athscl autol vein bypass of extrm w intrmt claud, oth extrm +C2882812|T047|AB|I70.419|ICD10CM|Athscl autol vein bypass of extrm w intrmt claud, unsp extrm|Athscl autol vein bypass of extrm w intrmt claud, unsp extrm +C4290159|T047|ET|I70.42|ICD10CM|any condition classifiable to I70.41-|any condition classifiable to I70.41- +C2882814|T047|HT|I70.42|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain|Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain +C2882814|T047|AB|I70.42|ICD10CM|Athscl autologous vein bypass of the extremities w rest pain|Athscl autologous vein bypass of the extremities w rest pain +C2882815|T047|PT|I70.421|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, right leg|Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, right leg +C2882815|T047|AB|I70.421|ICD10CM|Athscl autol vein bypass of the extrm w rest pain, right leg|Athscl autol vein bypass of the extrm w rest pain, right leg +C2882816|T047|PT|I70.422|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, left leg|Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, left leg +C2882816|T047|AB|I70.422|ICD10CM|Athscl autol vein bypass of the extrm w rest pain, left leg|Athscl autol vein bypass of the extrm w rest pain, left leg +C2882817|T047|PT|I70.423|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, bilateral legs|Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, bilateral legs +C2882817|T047|AB|I70.423|ICD10CM|Athscl autol vein bypass of the extrm w rest pain, bi legs|Athscl autol vein bypass of the extrm w rest pain, bi legs +C2882818|T047|AB|I70.428|ICD10CM|Athscl autol vein bypass of the extrm w rest pain, oth extrm|Athscl autol vein bypass of the extrm w rest pain, oth extrm +C2882819|T047|AB|I70.429|ICD10CM|Athscl autol vein bypass of extrm w rest pain, unsp extrm|Athscl autol vein bypass of extrm w rest pain, unsp extrm +C4290160|T047|ET|I70.43|ICD10CM|any condition classifiable to I70.411 and I70.421|any condition classifiable to I70.411 and I70.421 +C2882821|T047|HT|I70.43|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration|Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration +C2882821|T047|AB|I70.43|ICD10CM|Athscl autologous vein bypass of the right leg w ulceration|Athscl autologous vein bypass of the right leg w ulceration +C2882822|T047|PT|I70.431|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of thigh|Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of thigh +C2882822|T047|AB|I70.431|ICD10CM|Athscl autol vein bypass of the right leg w ulcer of thigh|Athscl autol vein bypass of the right leg w ulcer of thigh +C2882823|T047|PT|I70.432|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of calf|Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of calf +C2882823|T047|AB|I70.432|ICD10CM|Athscl autol vein bypass of the right leg w ulcer of calf|Athscl autol vein bypass of the right leg w ulcer of calf +C2882824|T047|PT|I70.433|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of ankle|Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of ankle +C2882824|T047|AB|I70.433|ICD10CM|Athscl autol vein bypass of the right leg w ulcer of ankle|Athscl autol vein bypass of the right leg w ulcer of ankle +C2882826|T047|AB|I70.434|ICD10CM|Athscl autol vein bypass of r leg w ulcer of heel and midft|Athscl autol vein bypass of r leg w ulcer of heel and midft +C2882827|T047|ET|I70.435|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of right leg with ulceration of toe|Atherosclerosis of autologous vein bypass graft(s) of right leg with ulceration of toe +C2882828|T047|AB|I70.435|ICD10CM|Athscl autol vein bypass of right leg w ulcer oth prt foot|Athscl autol vein bypass of right leg w ulcer oth prt foot +C2882829|T047|AB|I70.438|ICD10CM|Athscl autol vein bypass of r leg w ulcer oth prt low leg|Athscl autol vein bypass of r leg w ulcer oth prt low leg +C2882830|T047|AB|I70.439|ICD10CM|Athscl autol vein bypass of right leg w ulcer of unsp site|Athscl autol vein bypass of right leg w ulcer of unsp site +C4290161|T047|ET|I70.44|ICD10CM|any condition classifiable to I70.412 and I70.422|any condition classifiable to I70.412 and I70.422 +C2882832|T047|HT|I70.44|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration|Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration +C2882832|T047|AB|I70.44|ICD10CM|Athscl autologous vein bypass of the left leg w ulceration|Athscl autologous vein bypass of the left leg w ulceration +C2882833|T047|PT|I70.441|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of thigh|Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of thigh +C2882833|T047|AB|I70.441|ICD10CM|Athscl autol vein bypass of the left leg w ulcer of thigh|Athscl autol vein bypass of the left leg w ulcer of thigh +C2882834|T047|PT|I70.442|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of calf|Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of calf +C2882834|T047|AB|I70.442|ICD10CM|Athscl autol vein bypass of the left leg w ulcer of calf|Athscl autol vein bypass of the left leg w ulcer of calf +C2882835|T047|PT|I70.443|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of ankle|Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of ankle +C2882835|T047|AB|I70.443|ICD10CM|Athscl autol vein bypass of the left leg w ulcer of ankle|Athscl autol vein bypass of the left leg w ulcer of ankle +C2882837|T047|AB|I70.444|ICD10CM|Athscl autol vein bypass of left leg w ulc of heel and midft|Athscl autol vein bypass of left leg w ulc of heel and midft +C2882838|T047|ET|I70.445|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of left leg with ulceration of toe|Atherosclerosis of autologous vein bypass graft(s) of left leg with ulceration of toe +C2882839|T047|AB|I70.445|ICD10CM|Athscl autol vein bypass of left leg w ulcer oth prt foot|Athscl autol vein bypass of left leg w ulcer oth prt foot +C2882840|T047|AB|I70.448|ICD10CM|Athscl autol vein bypass of left leg w ulcer oth prt low leg|Athscl autol vein bypass of left leg w ulcer oth prt low leg +C2882841|T047|AB|I70.449|ICD10CM|Athscl autol vein bypass of left leg w ulcer of unsp site|Athscl autol vein bypass of left leg w ulcer of unsp site +C4290162|T047|ET|I70.45|ICD10CM|any condition classifiable to I70.418, I70.428, and I70.438|any condition classifiable to I70.418, I70.428, and I70.438 +C2882843|T047|PT|I70.45|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of other extremity with ulceration|Atherosclerosis of autologous vein bypass graft(s) of other extremity with ulceration +C2882843|T047|AB|I70.45|ICD10CM|Athscl autologous vein bypass of extremity w ulceration|Athscl autologous vein bypass of extremity w ulceration +C4290163|T047|ET|I70.46|ICD10CM|any condition classifiable to I70.41-, I70.42-, and I70.43-, I70.44-, I70.45|any condition classifiable to I70.41-, I70.42-, and I70.43-, I70.44-, I70.45 +C2882845|T047|HT|I70.46|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene|Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene +C2882845|T047|AB|I70.46|ICD10CM|Athscl autologous vein bypass of the extremities w gangrene|Athscl autologous vein bypass of the extremities w gangrene +C2882846|T047|PT|I70.461|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, right leg|Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, right leg +C2882846|T047|AB|I70.461|ICD10CM|Athscl autol vein bypass of the extrm w gangrene, right leg|Athscl autol vein bypass of the extrm w gangrene, right leg +C2882847|T047|PT|I70.462|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, left leg|Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, left leg +C2882847|T047|AB|I70.462|ICD10CM|Athscl autol vein bypass of the extrm w gangrene, left leg|Athscl autol vein bypass of the extrm w gangrene, left leg +C2882848|T047|PT|I70.463|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, bilateral legs|Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, bilateral legs +C2882848|T047|AB|I70.463|ICD10CM|Athscl autol vein bypass of the extrm w gangrene, bi legs|Athscl autol vein bypass of the extrm w gangrene, bi legs +C2882849|T047|PT|I70.468|ICD10CM|Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, other extremity|Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, other extremity +C2882849|T047|AB|I70.468|ICD10CM|Athscl autol vein bypass of the extrm w gangrene, oth extrm|Athscl autol vein bypass of the extrm w gangrene, oth extrm +C2882850|T047|AB|I70.469|ICD10CM|Athscl autol vein bypass of the extrm w gangrene, unsp extrm|Athscl autol vein bypass of the extrm w gangrene, unsp extrm +C2882851|T047|AB|I70.49|ICD10CM|Oth athscl autologous vein bypass of the extremities|Oth athscl autologous vein bypass of the extremities +C2882851|T047|HT|I70.49|ICD10CM|Other atherosclerosis of autologous vein bypass graft(s) of the extremities|Other atherosclerosis of autologous vein bypass graft(s) of the extremities +C2882852|T047|AB|I70.491|ICD10CM|Oth athscl autologous vein bypass of the extrm, right leg|Oth athscl autologous vein bypass of the extrm, right leg +C2882852|T047|PT|I70.491|ICD10CM|Other atherosclerosis of autologous vein bypass graft(s) of the extremities, right leg|Other atherosclerosis of autologous vein bypass graft(s) of the extremities, right leg +C2882853|T047|AB|I70.492|ICD10CM|Oth athscl autologous vein bypass of the extrm, left leg|Oth athscl autologous vein bypass of the extrm, left leg +C2882853|T047|PT|I70.492|ICD10CM|Other atherosclerosis of autologous vein bypass graft(s) of the extremities, left leg|Other atherosclerosis of autologous vein bypass graft(s) of the extremities, left leg +C2882854|T047|AB|I70.493|ICD10CM|Oth athscl autol vein bypass of the extrm, bilateral legs|Oth athscl autol vein bypass of the extrm, bilateral legs +C2882854|T047|PT|I70.493|ICD10CM|Other atherosclerosis of autologous vein bypass graft(s) of the extremities, bilateral legs|Other atherosclerosis of autologous vein bypass graft(s) of the extremities, bilateral legs +C2882855|T047|AB|I70.498|ICD10CM|Oth athscl autol vein bypass of the extrm, oth extremity|Oth athscl autol vein bypass of the extrm, oth extremity +C2882855|T047|PT|I70.498|ICD10CM|Other atherosclerosis of autologous vein bypass graft(s) of the extremities, other extremity|Other atherosclerosis of autologous vein bypass graft(s) of the extremities, other extremity +C2882856|T047|AB|I70.499|ICD10CM|Oth athscl autol vein bypass of the extrm, unsp extremity|Oth athscl autol vein bypass of the extrm, unsp extremity +C2882856|T047|PT|I70.499|ICD10CM|Other atherosclerosis of autologous vein bypass graft(s) of the extremities, unspecified extremity|Other atherosclerosis of autologous vein bypass graft(s) of the extremities, unspecified extremity +C2882857|T047|HT|I70.5|ICD10CM|Atherosclerosis of nonautologous biological bypass graft(s) of the extremities|Atherosclerosis of nonautologous biological bypass graft(s) of the extremities +C2882857|T047|AB|I70.5|ICD10CM|Athscl nonautologous bio bypass graft(s) of the extremities|Athscl nonautologous bio bypass graft(s) of the extremities +C2882858|T047|AB|I70.50|ICD10CM|Unsp athscl nonautologous bio bypass of the extremities|Unsp athscl nonautologous bio bypass of the extremities +C2882858|T047|HT|I70.50|ICD10CM|Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities|Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities +C2882859|T047|AB|I70.501|ICD10CM|Unsp athscl nonaut bio bypass of the extremities, right leg|Unsp athscl nonaut bio bypass of the extremities, right leg +C2882860|T047|AB|I70.502|ICD10CM|Unsp athscl nonaut bio bypass of the extremities, left leg|Unsp athscl nonaut bio bypass of the extremities, left leg +C2882860|T047|PT|I70.502|ICD10CM|Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, left leg|Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, left leg +C2882861|T047|AB|I70.503|ICD10CM|Unsp athscl nonaut bio bypass of the extrm, bilateral legs|Unsp athscl nonaut bio bypass of the extrm, bilateral legs +C2882862|T047|AB|I70.508|ICD10CM|Unsp athscl nonaut bio bypass of the extrm, oth extremity|Unsp athscl nonaut bio bypass of the extrm, oth extremity +C2882863|T047|AB|I70.509|ICD10CM|Unsp athscl nonaut bio bypass of the extrm, unsp extremity|Unsp athscl nonaut bio bypass of the extrm, unsp extremity +C2882864|T047|AB|I70.51|ICD10CM|Athscl nonaut bio bypass of the extremities intrmt claud|Athscl nonaut bio bypass of the extremities intrmt claud +C2882865|T047|AB|I70.511|ICD10CM|Athscl nonaut bio bypass of extrm w intrmt claud, right leg|Athscl nonaut bio bypass of extrm w intrmt claud, right leg +C2882866|T047|AB|I70.512|ICD10CM|Athscl nonaut bio bypass of extrm w intrmt claud, left leg|Athscl nonaut bio bypass of extrm w intrmt claud, left leg +C2882867|T047|AB|I70.513|ICD10CM|Athscl nonaut bio bypass of extrm w intrmt claud, bi legs|Athscl nonaut bio bypass of extrm w intrmt claud, bi legs +C2882868|T047|AB|I70.518|ICD10CM|Athscl nonaut bio bypass of extrm w intrmt claud, oth extrm|Athscl nonaut bio bypass of extrm w intrmt claud, oth extrm +C2882869|T047|AB|I70.519|ICD10CM|Athscl nonaut bio bypass of extrm w intrmt claud, unsp extrm|Athscl nonaut bio bypass of extrm w intrmt claud, unsp extrm +C4290164|T047|ET|I70.52|ICD10CM|any condition classifiable to I70.51-|any condition classifiable to I70.51- +C2882871|T047|HT|I70.52|ICD10CM|Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain|Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain +C2882871|T047|AB|I70.52|ICD10CM|Athscl nonaut bio bypass of the extremities w rest pain|Athscl nonaut bio bypass of the extremities w rest pain +C2882872|T047|AB|I70.521|ICD10CM|Athscl nonaut bio bypass of the extrm w rest pain, right leg|Athscl nonaut bio bypass of the extrm w rest pain, right leg +C2882873|T047|AB|I70.522|ICD10CM|Athscl nonaut bio bypass of the extrm w rest pain, left leg|Athscl nonaut bio bypass of the extrm w rest pain, left leg +C2882874|T047|AB|I70.523|ICD10CM|Athscl nonaut bio bypass of the extrm w rest pain, bi legs|Athscl nonaut bio bypass of the extrm w rest pain, bi legs +C2882875|T047|AB|I70.528|ICD10CM|Athscl nonaut bio bypass of the extrm w rest pain, oth extrm|Athscl nonaut bio bypass of the extrm w rest pain, oth extrm +C2882876|T047|AB|I70.529|ICD10CM|Athscl nonaut bio bypass of extrm w rest pain, unsp extrm|Athscl nonaut bio bypass of extrm w rest pain, unsp extrm +C4290165|T047|ET|I70.53|ICD10CM|any condition classifiable to I70.511 and I70.521|any condition classifiable to I70.511 and I70.521 +C2882878|T047|HT|I70.53|ICD10CM|Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration|Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration +C2882878|T047|AB|I70.53|ICD10CM|Athscl nonaut bio bypass of the right leg w ulceration|Athscl nonaut bio bypass of the right leg w ulceration +C2882879|T047|AB|I70.531|ICD10CM|Athscl nonaut bio bypass of the right leg w ulcer of thigh|Athscl nonaut bio bypass of the right leg w ulcer of thigh +C2882880|T047|PT|I70.532|ICD10CM|Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of calf|Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of calf +C2882880|T047|AB|I70.532|ICD10CM|Athscl nonaut bio bypass of the right leg w ulcer of calf|Athscl nonaut bio bypass of the right leg w ulcer of calf +C2882881|T047|AB|I70.533|ICD10CM|Athscl nonaut bio bypass of the right leg w ulcer of ankle|Athscl nonaut bio bypass of the right leg w ulcer of ankle +C2882883|T047|AB|I70.534|ICD10CM|Athscl nonaut bio bypass of r leg w ulcer of heel and midft|Athscl nonaut bio bypass of r leg w ulcer of heel and midft +C2882884|T047|ET|I70.535|ICD10CM|Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of toe|Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of toe +C2882885|T047|AB|I70.535|ICD10CM|Athscl nonaut bio bypass of right leg w ulcer oth prt foot|Athscl nonaut bio bypass of right leg w ulcer oth prt foot +C2882886|T047|AB|I70.538|ICD10CM|Athscl nonaut bio bypass of r leg w ulcer oth prt low leg|Athscl nonaut bio bypass of r leg w ulcer oth prt low leg +C2882887|T047|AB|I70.539|ICD10CM|Athscl nonaut bio bypass of right leg w ulcer of unsp site|Athscl nonaut bio bypass of right leg w ulcer of unsp site +C4290166|T047|ET|I70.54|ICD10CM|any condition classifiable to I70.512 and I70.522|any condition classifiable to I70.512 and I70.522 +C2882889|T047|HT|I70.54|ICD10CM|Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration|Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration +C2882889|T047|AB|I70.54|ICD10CM|Athscl nonautologous bio bypass of the left leg w ulceration|Athscl nonautologous bio bypass of the left leg w ulceration +C2882890|T047|PT|I70.541|ICD10CM|Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of thigh|Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of thigh +C2882890|T047|AB|I70.541|ICD10CM|Athscl nonaut bio bypass of the left leg w ulcer of thigh|Athscl nonaut bio bypass of the left leg w ulcer of thigh +C2882891|T047|PT|I70.542|ICD10CM|Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of calf|Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of calf +C2882891|T047|AB|I70.542|ICD10CM|Athscl nonaut bio bypass of the left leg w ulcer of calf|Athscl nonaut bio bypass of the left leg w ulcer of calf +C2882892|T047|PT|I70.543|ICD10CM|Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of ankle|Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of ankle +C2882892|T047|AB|I70.543|ICD10CM|Athscl nonaut bio bypass of the left leg w ulcer of ankle|Athscl nonaut bio bypass of the left leg w ulcer of ankle +C2882894|T047|AB|I70.544|ICD10CM|Athscl nonaut bio bypass of left leg w ulc of heel and midft|Athscl nonaut bio bypass of left leg w ulc of heel and midft +C2882895|T047|ET|I70.545|ICD10CM|Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of toe|Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of toe +C2882896|T047|AB|I70.545|ICD10CM|Athscl nonaut bio bypass of left leg w ulcer oth prt foot|Athscl nonaut bio bypass of left leg w ulcer oth prt foot +C2882897|T047|AB|I70.548|ICD10CM|Athscl nonaut bio bypass of left leg w ulcer oth prt low leg|Athscl nonaut bio bypass of left leg w ulcer oth prt low leg +C2882898|T047|AB|I70.549|ICD10CM|Athscl nonaut bio bypass of left leg w ulcer of unsp site|Athscl nonaut bio bypass of left leg w ulcer of unsp site +C4290167|T047|ET|I70.55|ICD10CM|any condition classifiable to I70.518, I70.528, and I70.538|any condition classifiable to I70.518, I70.528, and I70.538 +C2882900|T047|PT|I70.55|ICD10CM|Atherosclerosis of nonautologous biological bypass graft(s) of other extremity with ulceration|Atherosclerosis of nonautologous biological bypass graft(s) of other extremity with ulceration +C2882900|T047|AB|I70.55|ICD10CM|Athscl nonautologous bio bypass of extremity w ulceration|Athscl nonautologous bio bypass of extremity w ulceration +C4290168|T047|ET|I70.56|ICD10CM|any condition classifiable to I70.51-, I70.52-, and I70.53-, I70.54-, I70.55|any condition classifiable to I70.51-, I70.52-, and I70.53-, I70.54-, I70.55 +C2882902|T047|HT|I70.56|ICD10CM|Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene|Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene +C2882902|T047|AB|I70.56|ICD10CM|Athscl nonaut bio bypass of the extremities w gangrene|Athscl nonaut bio bypass of the extremities w gangrene +C2882903|T047|AB|I70.561|ICD10CM|Athscl nonaut bio bypass of the extrm w gangrene, right leg|Athscl nonaut bio bypass of the extrm w gangrene, right leg +C2882904|T047|AB|I70.562|ICD10CM|Athscl nonaut bio bypass of the extrm w gangrene, left leg|Athscl nonaut bio bypass of the extrm w gangrene, left leg +C2882905|T047|AB|I70.563|ICD10CM|Athscl nonaut bio bypass of the extrm w gangrene, bi legs|Athscl nonaut bio bypass of the extrm w gangrene, bi legs +C2882906|T047|AB|I70.568|ICD10CM|Athscl nonaut bio bypass of the extrm w gangrene, oth extrm|Athscl nonaut bio bypass of the extrm w gangrene, oth extrm +C2882907|T047|AB|I70.569|ICD10CM|Athscl nonaut bio bypass of the extrm w gangrene, unsp extrm|Athscl nonaut bio bypass of the extrm w gangrene, unsp extrm +C2882908|T047|AB|I70.59|ICD10CM|Oth athscl nonautologous bio bypass of the extremities|Oth athscl nonautologous bio bypass of the extremities +C2882908|T047|HT|I70.59|ICD10CM|Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities|Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities +C2882909|T047|AB|I70.591|ICD10CM|Oth athscl nonaut bio bypass of the extremities, right leg|Oth athscl nonaut bio bypass of the extremities, right leg +C2882909|T047|PT|I70.591|ICD10CM|Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, right leg|Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, right leg +C2882910|T047|AB|I70.592|ICD10CM|Oth athscl nonaut bio bypass of the extremities, left leg|Oth athscl nonaut bio bypass of the extremities, left leg +C2882910|T047|PT|I70.592|ICD10CM|Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, left leg|Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, left leg +C2882911|T047|AB|I70.593|ICD10CM|Oth athscl nonaut bio bypass of the extrm, bilateral legs|Oth athscl nonaut bio bypass of the extrm, bilateral legs +C2882911|T047|PT|I70.593|ICD10CM|Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, bilateral legs|Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, bilateral legs +C2882912|T047|AB|I70.598|ICD10CM|Oth athscl nonaut bio bypass of the extrm, oth extremity|Oth athscl nonaut bio bypass of the extrm, oth extremity +C2882913|T047|AB|I70.599|ICD10CM|Oth athscl nonaut bio bypass of the extrm, unsp extremity|Oth athscl nonaut bio bypass of the extrm, unsp extremity +C2882914|T047|HT|I70.6|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the extremities|Atherosclerosis of nonbiological bypass graft(s) of the extremities +C2882914|T047|AB|I70.6|ICD10CM|Athscl nonbiological bypass graft(s) of the extremities|Athscl nonbiological bypass graft(s) of the extremities +C2882915|T047|AB|I70.60|ICD10CM|Unsp athscl nonbiological bypass graft(s) of the extremities|Unsp athscl nonbiological bypass graft(s) of the extremities +C2882915|T047|HT|I70.60|ICD10CM|Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities|Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities +C2882916|T047|AB|I70.601|ICD10CM|Unsp athscl nonbiol bypass of the extremities, right leg|Unsp athscl nonbiol bypass of the extremities, right leg +C2882916|T047|PT|I70.601|ICD10CM|Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, right leg|Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, right leg +C2882917|T047|AB|I70.602|ICD10CM|Unsp athscl nonbiol bypass of the extremities, left leg|Unsp athscl nonbiol bypass of the extremities, left leg +C2882917|T047|PT|I70.602|ICD10CM|Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, left leg|Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, left leg +C2882918|T047|AB|I70.603|ICD10CM|Unsp athscl nonbiol bypass of the extrm, bilateral legs|Unsp athscl nonbiol bypass of the extrm, bilateral legs +C2882918|T047|PT|I70.603|ICD10CM|Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, bilateral legs|Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, bilateral legs +C2882919|T047|AB|I70.608|ICD10CM|Unsp athscl nonbiol bypass of the extremities, oth extremity|Unsp athscl nonbiol bypass of the extremities, oth extremity +C2882919|T047|PT|I70.608|ICD10CM|Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, other extremity|Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, other extremity +C2882920|T047|AB|I70.609|ICD10CM|Unsp athscl nonbiol bypass of the extrm, unsp extremity|Unsp athscl nonbiol bypass of the extrm, unsp extremity +C2882921|T047|HT|I70.61|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication|Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication +C2882921|T047|AB|I70.61|ICD10CM|Athscl nonbiol bypass of the extremities w intrmt claud|Athscl nonbiol bypass of the extremities w intrmt claud +C2882922|T047|AB|I70.611|ICD10CM|Athscl nonbiol bypass of the extrm w intrmt claud, right leg|Athscl nonbiol bypass of the extrm w intrmt claud, right leg +C2882923|T047|AB|I70.612|ICD10CM|Athscl nonbiol bypass of the extrm w intrmt claud, left leg|Athscl nonbiol bypass of the extrm w intrmt claud, left leg +C2882924|T047|AB|I70.613|ICD10CM|Athscl nonbiol bypass of the extrm w intrmt claud, bi legs|Athscl nonbiol bypass of the extrm w intrmt claud, bi legs +C2882925|T047|AB|I70.618|ICD10CM|Athscl nonbiol bypass of the extrm w intrmt claud, oth extrm|Athscl nonbiol bypass of the extrm w intrmt claud, oth extrm +C2882926|T047|AB|I70.619|ICD10CM|Athscl nonbiol bypass of extrm w intrmt claud, unsp extrm|Athscl nonbiol bypass of extrm w intrmt claud, unsp extrm +C4290169|T047|ET|I70.62|ICD10CM|any condition classifiable to I70.61-|any condition classifiable to I70.61- +C2882928|T047|HT|I70.62|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain|Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain +C2882928|T047|AB|I70.62|ICD10CM|Athscl nonbiological bypass of the extremities w rest pain|Athscl nonbiological bypass of the extremities w rest pain +C2882929|T047|PT|I70.621|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, right leg|Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, right leg +C2882929|T047|AB|I70.621|ICD10CM|Athscl nonbiol bypass of the extrm w rest pain, right leg|Athscl nonbiol bypass of the extrm w rest pain, right leg +C2882930|T047|PT|I70.622|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, left leg|Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, left leg +C2882930|T047|AB|I70.622|ICD10CM|Athscl nonbiol bypass of the extrm w rest pain, left leg|Athscl nonbiol bypass of the extrm w rest pain, left leg +C2882931|T047|PT|I70.623|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, bilateral legs|Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, bilateral legs +C2882931|T047|AB|I70.623|ICD10CM|Athscl nonbiol bypass of the extrm w rest pain, bi legs|Athscl nonbiol bypass of the extrm w rest pain, bi legs +C2882932|T047|PT|I70.628|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, other extremity|Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, other extremity +C2882932|T047|AB|I70.628|ICD10CM|Athscl nonbiol bypass of the extrm w rest pain, oth extrm|Athscl nonbiol bypass of the extrm w rest pain, oth extrm +C2882933|T047|AB|I70.629|ICD10CM|Athscl nonbiol bypass of the extrm w rest pain, unsp extrm|Athscl nonbiol bypass of the extrm w rest pain, unsp extrm +C4290170|T047|ET|I70.63|ICD10CM|any condition classifiable to I70.611 and I70.621|any condition classifiable to I70.611 and I70.621 +C2882935|T047|HT|I70.63|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration|Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration +C2882935|T047|AB|I70.63|ICD10CM|Athscl nonbiological bypass of the right leg w ulceration|Athscl nonbiological bypass of the right leg w ulceration +C2882936|T047|PT|I70.631|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of thigh|Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of thigh +C2882936|T047|AB|I70.631|ICD10CM|Athscl nonbiol bypass of the right leg w ulceration of thigh|Athscl nonbiol bypass of the right leg w ulceration of thigh +C2882937|T047|PT|I70.632|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of calf|Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of calf +C2882937|T047|AB|I70.632|ICD10CM|Athscl nonbiol bypass of the right leg w ulceration of calf|Athscl nonbiol bypass of the right leg w ulceration of calf +C2882938|T047|PT|I70.633|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of ankle|Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of ankle +C2882938|T047|AB|I70.633|ICD10CM|Athscl nonbiol bypass of the right leg w ulceration of ankle|Athscl nonbiol bypass of the right leg w ulceration of ankle +C2882940|T047|AB|I70.634|ICD10CM|Athscl nonbiol bypass of right leg w ulcer of heel and midft|Athscl nonbiol bypass of right leg w ulcer of heel and midft +C2882941|T047|ET|I70.635|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of toe|Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of toe +C2882942|T047|AB|I70.635|ICD10CM|Athscl nonbiol bypass of the right leg w ulcer oth prt foot|Athscl nonbiol bypass of the right leg w ulcer oth prt foot +C2882943|T047|AB|I70.638|ICD10CM|Athscl nonbiol bypass of right leg w ulcer oth prt low leg|Athscl nonbiol bypass of right leg w ulcer oth prt low leg +C2882944|T047|AB|I70.639|ICD10CM|Athscl nonbiol bypass of the right leg w ulcer of unsp site|Athscl nonbiol bypass of the right leg w ulcer of unsp site +C4290171|T047|ET|I70.64|ICD10CM|any condition classifiable to I70.612 and I70.622|any condition classifiable to I70.612 and I70.622 +C2882946|T047|HT|I70.64|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration|Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration +C2882946|T047|AB|I70.64|ICD10CM|Athscl nonbiological bypass of the left leg w ulceration|Athscl nonbiological bypass of the left leg w ulceration +C2882947|T047|PT|I70.641|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of thigh|Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of thigh +C2882947|T047|AB|I70.641|ICD10CM|Athscl nonbiol bypass of the left leg w ulceration of thigh|Athscl nonbiol bypass of the left leg w ulceration of thigh +C2882948|T047|PT|I70.642|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of calf|Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of calf +C2882948|T047|AB|I70.642|ICD10CM|Athscl nonbiol bypass of the left leg w ulceration of calf|Athscl nonbiol bypass of the left leg w ulceration of calf +C2882949|T047|PT|I70.643|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of ankle|Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of ankle +C2882949|T047|AB|I70.643|ICD10CM|Athscl nonbiol bypass of the left leg w ulceration of ankle|Athscl nonbiol bypass of the left leg w ulceration of ankle +C2882951|T047|PT|I70.644|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of heel and midfoot|Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of heel and midfoot +C2882951|T047|AB|I70.644|ICD10CM|Athscl nonbiol bypass of left leg w ulcer of heel and midft|Athscl nonbiol bypass of left leg w ulcer of heel and midft +C2882952|T047|ET|I70.645|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of toe|Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of toe +C2882953|T047|AB|I70.645|ICD10CM|Athscl nonbiol bypass of the left leg w ulcer oth prt foot|Athscl nonbiol bypass of the left leg w ulcer oth prt foot +C2882954|T047|AB|I70.648|ICD10CM|Athscl nonbiol bypass of left leg w ulcer oth prt low leg|Athscl nonbiol bypass of left leg w ulcer oth prt low leg +C2882955|T047|PT|I70.649|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of unspecified site|Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of unspecified site +C2882955|T047|AB|I70.649|ICD10CM|Athscl nonbiol bypass of the left leg w ulcer of unsp site|Athscl nonbiol bypass of the left leg w ulcer of unsp site +C4290172|T047|ET|I70.65|ICD10CM|any condition classifiable to I70.618 and I70.628|any condition classifiable to I70.618 and I70.628 +C2882957|T047|PT|I70.65|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of other extremity with ulceration|Atherosclerosis of nonbiological bypass graft(s) of other extremity with ulceration +C2882957|T047|AB|I70.65|ICD10CM|Athscl nonbiological bypass of extremity w ulceration|Athscl nonbiological bypass of extremity w ulceration +C4290173|T047|ET|I70.66|ICD10CM|any condition classifiable to I70.61-, I70.62-, I70.63-, I70.64-, I70.65|any condition classifiable to I70.61-, I70.62-, I70.63-, I70.64-, I70.65 +C2882959|T047|HT|I70.66|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene|Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene +C2882959|T047|AB|I70.66|ICD10CM|Athscl nonbiological bypass of the extremities w gangrene|Athscl nonbiological bypass of the extremities w gangrene +C2882960|T047|PT|I70.661|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, right leg|Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, right leg +C2882960|T047|AB|I70.661|ICD10CM|Athscl nonbiol bypass of the extrm w gangrene, right leg|Athscl nonbiol bypass of the extrm w gangrene, right leg +C2882961|T047|PT|I70.662|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, left leg|Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, left leg +C2882961|T047|AB|I70.662|ICD10CM|Athscl nonbiol bypass of the extrm w gangrene, left leg|Athscl nonbiol bypass of the extrm w gangrene, left leg +C2882962|T047|PT|I70.663|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, bilateral legs|Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, bilateral legs +C2882962|T047|AB|I70.663|ICD10CM|Athscl nonbiol bypass of the extrm w gangrene, bi legs|Athscl nonbiol bypass of the extrm w gangrene, bi legs +C2882963|T047|PT|I70.668|ICD10CM|Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, other extremity|Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, other extremity +C2882963|T047|AB|I70.668|ICD10CM|Athscl nonbiol bypass of the extrm w gangrene, oth extremity|Athscl nonbiol bypass of the extrm w gangrene, oth extremity +C2882964|T047|AB|I70.669|ICD10CM|Athscl nonbiol bypass of the extrm w gangrene, unsp extrm|Athscl nonbiol bypass of the extrm w gangrene, unsp extrm +C2882965|T047|AB|I70.69|ICD10CM|Oth athscl nonbiological bypass graft(s) of the extremities|Oth athscl nonbiological bypass graft(s) of the extremities +C2882965|T047|HT|I70.69|ICD10CM|Other atherosclerosis of nonbiological bypass graft(s) of the extremities|Other atherosclerosis of nonbiological bypass graft(s) of the extremities +C2882966|T047|AB|I70.691|ICD10CM|Oth athscl nonbiol bypass of the extremities, right leg|Oth athscl nonbiol bypass of the extremities, right leg +C2882966|T047|PT|I70.691|ICD10CM|Other atherosclerosis of nonbiological bypass graft(s) of the extremities, right leg|Other atherosclerosis of nonbiological bypass graft(s) of the extremities, right leg +C2882967|T047|AB|I70.692|ICD10CM|Oth athscl nonbiological bypass of the extremities, left leg|Oth athscl nonbiological bypass of the extremities, left leg +C2882967|T047|PT|I70.692|ICD10CM|Other atherosclerosis of nonbiological bypass graft(s) of the extremities, left leg|Other atherosclerosis of nonbiological bypass graft(s) of the extremities, left leg +C2882968|T047|AB|I70.693|ICD10CM|Oth athscl nonbiol bypass of the extremities, bilateral legs|Oth athscl nonbiol bypass of the extremities, bilateral legs +C2882968|T047|PT|I70.693|ICD10CM|Other atherosclerosis of nonbiological bypass graft(s) of the extremities, bilateral legs|Other atherosclerosis of nonbiological bypass graft(s) of the extremities, bilateral legs +C2882969|T047|AB|I70.698|ICD10CM|Oth athscl nonbiol bypass of the extremities, oth extremity|Oth athscl nonbiol bypass of the extremities, oth extremity +C2882969|T047|PT|I70.698|ICD10CM|Other atherosclerosis of nonbiological bypass graft(s) of the extremities, other extremity|Other atherosclerosis of nonbiological bypass graft(s) of the extremities, other extremity +C2882970|T047|AB|I70.699|ICD10CM|Oth athscl nonbiol bypass of the extremities, unsp extremity|Oth athscl nonbiol bypass of the extremities, unsp extremity +C2882970|T047|PT|I70.699|ICD10CM|Other atherosclerosis of nonbiological bypass graft(s) of the extremities, unspecified extremity|Other atherosclerosis of nonbiological bypass graft(s) of the extremities, unspecified extremity +C2882971|T047|HT|I70.7|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the extremities|Atherosclerosis of other type of bypass graft(s) of the extremities +C2882971|T047|AB|I70.7|ICD10CM|Athscl type of bypass graft(s) of the extremities|Athscl type of bypass graft(s) of the extremities +C2882744|T047|AB|I70.70|ICD10CM|Unsp athscl type of bypass graft(s) of the extremities|Unsp athscl type of bypass graft(s) of the extremities +C2882744|T047|HT|I70.70|ICD10CM|Unspecified atherosclerosis of other type of bypass graft(s) of the extremities|Unspecified atherosclerosis of other type of bypass graft(s) of the extremities +C2882973|T047|AB|I70.701|ICD10CM|Unsp athscl type of bypass of the extremities, right leg|Unsp athscl type of bypass of the extremities, right leg +C2882973|T047|PT|I70.701|ICD10CM|Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, right leg|Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, right leg +C2882974|T047|AB|I70.702|ICD10CM|Unsp athscl type of bypass of the extremities, left leg|Unsp athscl type of bypass of the extremities, left leg +C2882974|T047|PT|I70.702|ICD10CM|Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, left leg|Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, left leg +C2882975|T047|AB|I70.703|ICD10CM|Unsp athscl type of bypass of the extrm, bilateral legs|Unsp athscl type of bypass of the extrm, bilateral legs +C2882975|T047|PT|I70.703|ICD10CM|Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, bilateral legs|Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, bilateral legs +C2882976|T047|AB|I70.708|ICD10CM|Unsp athscl type of bypass of the extremities, oth extremity|Unsp athscl type of bypass of the extremities, oth extremity +C2882976|T047|PT|I70.708|ICD10CM|Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, other extremity|Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, other extremity +C2882977|T047|AB|I70.709|ICD10CM|Unsp athscl type of bypass of the extrm, unsp extremity|Unsp athscl type of bypass of the extrm, unsp extremity +C2882978|T047|HT|I70.71|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication|Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication +C2882978|T047|AB|I70.71|ICD10CM|Athscl type of bypass of the extremities w intrmt claud|Athscl type of bypass of the extremities w intrmt claud +C2882979|T047|AB|I70.711|ICD10CM|Athscl type of bypass of the extrm w intrmt claud, right leg|Athscl type of bypass of the extrm w intrmt claud, right leg +C2882980|T047|AB|I70.712|ICD10CM|Athscl type of bypass of the extrm w intrmt claud, left leg|Athscl type of bypass of the extrm w intrmt claud, left leg +C2882981|T047|AB|I70.713|ICD10CM|Athscl type of bypass of the extrm w intrmt claud, bi legs|Athscl type of bypass of the extrm w intrmt claud, bi legs +C2882982|T047|AB|I70.718|ICD10CM|Athscl type of bypass of the extrm w intrmt claud, oth extrm|Athscl type of bypass of the extrm w intrmt claud, oth extrm +C2882983|T047|AB|I70.719|ICD10CM|Athscl type of bypass of extrm w intrmt claud, unsp extrm|Athscl type of bypass of extrm w intrmt claud, unsp extrm +C4290174|T047|ET|I70.72|ICD10CM|any condition classifiable to I70.71-|any condition classifiable to I70.71- +C2882985|T047|HT|I70.72|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain|Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain +C2882985|T047|AB|I70.72|ICD10CM|Athscl type of bypass of the extremities w rest pain|Athscl type of bypass of the extremities w rest pain +C2882986|T047|PT|I70.721|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, right leg|Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, right leg +C2882986|T047|AB|I70.721|ICD10CM|Athscl type of bypass of the extrm w rest pain, right leg|Athscl type of bypass of the extrm w rest pain, right leg +C2882987|T047|PT|I70.722|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, left leg|Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, left leg +C2882987|T047|AB|I70.722|ICD10CM|Athscl type of bypass of the extrm w rest pain, left leg|Athscl type of bypass of the extrm w rest pain, left leg +C2882988|T047|PT|I70.723|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, bilateral legs|Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, bilateral legs +C2882988|T047|AB|I70.723|ICD10CM|Athscl type of bypass of the extrm w rest pain, bi legs|Athscl type of bypass of the extrm w rest pain, bi legs +C2882989|T047|PT|I70.728|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, other extremity|Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, other extremity +C2882989|T047|AB|I70.728|ICD10CM|Athscl type of bypass of the extrm w rest pain, oth extrm|Athscl type of bypass of the extrm w rest pain, oth extrm +C2882990|T047|AB|I70.729|ICD10CM|Athscl type of bypass of the extrm w rest pain, unsp extrm|Athscl type of bypass of the extrm w rest pain, unsp extrm +C4290175|T047|ET|I70.73|ICD10CM|any condition classifiable to I70.711 and I70.721|any condition classifiable to I70.711 and I70.721 +C2882992|T047|HT|I70.73|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration|Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration +C2882992|T047|AB|I70.73|ICD10CM|Athscl type of bypass graft(s) of the right leg w ulceration|Athscl type of bypass graft(s) of the right leg w ulceration +C2882993|T047|PT|I70.731|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of thigh|Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of thigh +C2882993|T047|AB|I70.731|ICD10CM|Athscl type of bypass of the right leg w ulceration of thigh|Athscl type of bypass of the right leg w ulceration of thigh +C2882994|T047|PT|I70.732|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of calf|Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of calf +C2882994|T047|AB|I70.732|ICD10CM|Athscl type of bypass of the right leg w ulceration of calf|Athscl type of bypass of the right leg w ulceration of calf +C2882995|T047|PT|I70.733|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of ankle|Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of ankle +C2882995|T047|AB|I70.733|ICD10CM|Athscl type of bypass of the right leg w ulceration of ankle|Athscl type of bypass of the right leg w ulceration of ankle +C2882997|T047|AB|I70.734|ICD10CM|Athscl type of bypass of right leg w ulcer of heel and midft|Athscl type of bypass of right leg w ulcer of heel and midft +C2882998|T047|ET|I70.735|ICD10CM|Atherosclerosis of other type of bypass graft(s) of right leg with ulceration of toe|Atherosclerosis of other type of bypass graft(s) of right leg with ulceration of toe +C2882999|T047|AB|I70.735|ICD10CM|Athscl type of bypass of the right leg w ulcer oth prt foot|Athscl type of bypass of the right leg w ulcer oth prt foot +C2883000|T047|AB|I70.738|ICD10CM|Athscl type of bypass of right leg w ulcer oth prt low leg|Athscl type of bypass of right leg w ulcer oth prt low leg +C2883001|T047|AB|I70.739|ICD10CM|Athscl type of bypass of the right leg w ulcer of unsp site|Athscl type of bypass of the right leg w ulcer of unsp site +C4290176|T047|ET|I70.74|ICD10CM|any condition classifiable to I70.712 and I70.722|any condition classifiable to I70.712 and I70.722 +C2883003|T047|HT|I70.74|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration|Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration +C2883003|T047|AB|I70.74|ICD10CM|Athscl type of bypass graft(s) of the left leg w ulceration|Athscl type of bypass graft(s) of the left leg w ulceration +C2883004|T047|PT|I70.741|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of thigh|Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of thigh +C2883004|T047|AB|I70.741|ICD10CM|Athscl type of bypass of the left leg w ulceration of thigh|Athscl type of bypass of the left leg w ulceration of thigh +C2883005|T047|PT|I70.742|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of calf|Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of calf +C2883005|T047|AB|I70.742|ICD10CM|Athscl type of bypass of the left leg w ulceration of calf|Athscl type of bypass of the left leg w ulceration of calf +C2883006|T047|PT|I70.743|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of ankle|Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of ankle +C2883006|T047|AB|I70.743|ICD10CM|Athscl type of bypass of the left leg w ulceration of ankle|Athscl type of bypass of the left leg w ulceration of ankle +C2883008|T047|PT|I70.744|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of heel and midfoot|Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of heel and midfoot +C2883008|T047|AB|I70.744|ICD10CM|Athscl type of bypass of left leg w ulcer of heel and midft|Athscl type of bypass of left leg w ulcer of heel and midft +C2883009|T047|ET|I70.745|ICD10CM|Atherosclerosis of other type of bypass graft(s) of left leg with ulceration of toe|Atherosclerosis of other type of bypass graft(s) of left leg with ulceration of toe +C2883010|T047|AB|I70.745|ICD10CM|Athscl type of bypass of the left leg w ulcer oth prt foot|Athscl type of bypass of the left leg w ulcer oth prt foot +C2883011|T047|AB|I70.748|ICD10CM|Athscl type of bypass of left leg w ulcer oth prt low leg|Athscl type of bypass of left leg w ulcer oth prt low leg +C2883012|T047|PT|I70.749|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of unspecified site|Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of unspecified site +C2883012|T047|AB|I70.749|ICD10CM|Athscl type of bypass of the left leg w ulcer of unsp site|Athscl type of bypass of the left leg w ulcer of unsp site +C4290177|T047|ET|I70.75|ICD10CM|any condition classifiable to I70.718 and I70.728|any condition classifiable to I70.718 and I70.728 +C2883014|T047|PT|I70.75|ICD10CM|Atherosclerosis of other type of bypass graft(s) of other extremity with ulceration|Atherosclerosis of other type of bypass graft(s) of other extremity with ulceration +C2883014|T047|AB|I70.75|ICD10CM|Athscl type of bypass graft(s) of extremity w ulceration|Athscl type of bypass graft(s) of extremity w ulceration +C4290178|T047|ET|I70.76|ICD10CM|any condition classifiable to I70.71-, I70.72-, I70.73-, I70.74-, I70.75|any condition classifiable to I70.71-, I70.72-, I70.73-, I70.74-, I70.75 +C2883016|T047|HT|I70.76|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene|Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene +C2883016|T047|AB|I70.76|ICD10CM|Athscl type of bypass graft(s) of the extremities w gangrene|Athscl type of bypass graft(s) of the extremities w gangrene +C2883017|T047|PT|I70.761|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, right leg|Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, right leg +C2883017|T047|AB|I70.761|ICD10CM|Athscl type of bypass of the extrm w gangrene, right leg|Athscl type of bypass of the extrm w gangrene, right leg +C2883018|T047|PT|I70.762|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, left leg|Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, left leg +C2883018|T047|AB|I70.762|ICD10CM|Athscl type of bypass of the extrm w gangrene, left leg|Athscl type of bypass of the extrm w gangrene, left leg +C2883019|T047|PT|I70.763|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, bilateral legs|Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, bilateral legs +C2883019|T047|AB|I70.763|ICD10CM|Athscl type of bypass of the extrm w gangrene, bi legs|Athscl type of bypass of the extrm w gangrene, bi legs +C2883020|T047|PT|I70.768|ICD10CM|Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, other extremity|Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, other extremity +C2883020|T047|AB|I70.768|ICD10CM|Athscl type of bypass of the extrm w gangrene, oth extremity|Athscl type of bypass of the extrm w gangrene, oth extremity +C2883021|T047|AB|I70.769|ICD10CM|Athscl type of bypass of the extrm w gangrene, unsp extrm|Athscl type of bypass of the extrm w gangrene, unsp extrm +C2883022|T047|AB|I70.79|ICD10CM|Oth athscl type of bypass graft(s) of the extremities|Oth athscl type of bypass graft(s) of the extremities +C2883022|T047|HT|I70.79|ICD10CM|Other atherosclerosis of other type of bypass graft(s) of the extremities|Other atherosclerosis of other type of bypass graft(s) of the extremities +C2883023|T047|AB|I70.791|ICD10CM|Oth athscl type of bypass of the extremities, right leg|Oth athscl type of bypass of the extremities, right leg +C2883023|T047|PT|I70.791|ICD10CM|Other atherosclerosis of other type of bypass graft(s) of the extremities, right leg|Other atherosclerosis of other type of bypass graft(s) of the extremities, right leg +C2883024|T047|AB|I70.792|ICD10CM|Oth athscl type of bypass of the extremities, left leg|Oth athscl type of bypass of the extremities, left leg +C2883024|T047|PT|I70.792|ICD10CM|Other atherosclerosis of other type of bypass graft(s) of the extremities, left leg|Other atherosclerosis of other type of bypass graft(s) of the extremities, left leg +C2883025|T047|AB|I70.793|ICD10CM|Oth athscl type of bypass of the extremities, bilateral legs|Oth athscl type of bypass of the extremities, bilateral legs +C2883025|T047|PT|I70.793|ICD10CM|Other atherosclerosis of other type of bypass graft(s) of the extremities, bilateral legs|Other atherosclerosis of other type of bypass graft(s) of the extremities, bilateral legs +C2883026|T047|AB|I70.798|ICD10CM|Oth athscl type of bypass of the extremities, oth extremity|Oth athscl type of bypass of the extremities, oth extremity +C2883026|T047|PT|I70.798|ICD10CM|Other atherosclerosis of other type of bypass graft(s) of the extremities, other extremity|Other atherosclerosis of other type of bypass graft(s) of the extremities, other extremity +C2883027|T047|AB|I70.799|ICD10CM|Oth athscl type of bypass of the extremities, unsp extremity|Oth athscl type of bypass of the extremities, unsp extremity +C2883027|T047|PT|I70.799|ICD10CM|Other atherosclerosis of other type of bypass graft(s) of the extremities, unspecified extremity|Other atherosclerosis of other type of bypass graft(s) of the extremities, unspecified extremity +C0348648|T047|PT|I70.8|ICD10CM|Atherosclerosis of other arteries|Atherosclerosis of other arteries +C0348648|T047|AB|I70.8|ICD10CM|Atherosclerosis of other arteries|Atherosclerosis of other arteries +C0348648|T047|PT|I70.8|ICD10|Atherosclerosis of other arteries|Atherosclerosis of other arteries +C0017327|T047|PT|I70.9|ICD10|Generalized and unspecified atherosclerosis|Generalized and unspecified atherosclerosis +C2883028|T047|AB|I70.9|ICD10CM|Other and unspecified atherosclerosis|Other and unspecified atherosclerosis +C2883028|T047|HT|I70.9|ICD10CM|Other and unspecified atherosclerosis|Other and unspecified atherosclerosis +C2883029|T047|AB|I70.90|ICD10CM|Unspecified atherosclerosis|Unspecified atherosclerosis +C2883029|T047|PT|I70.90|ICD10CM|Unspecified atherosclerosis|Unspecified atherosclerosis +C0017327|T047|PT|I70.91|ICD10CM|Generalized atherosclerosis|Generalized atherosclerosis +C0017327|T047|AB|I70.91|ICD10CM|Generalized atherosclerosis|Generalized atherosclerosis +C1955783|T047|AB|I70.92|ICD10CM|Chronic total occlusion of artery of the extremities|Chronic total occlusion of artery of the extremities +C1955783|T047|PT|I70.92|ICD10CM|Chronic total occlusion of artery of the extremities|Chronic total occlusion of artery of the extremities +C1955784|T033|ET|I70.92|ICD10CM|Complete occlusion of artery of the extremities|Complete occlusion of artery of the extremities +C1955785|T047|ET|I70.92|ICD10CM|Total occlusion of artery of the extremities|Total occlusion of artery of the extremities +C1812607|T047|AB|I71|ICD10CM|Aortic aneurysm and dissection|Aortic aneurysm and dissection +C1812607|T047|HT|I71|ICD10CM|Aortic aneurysm and dissection|Aortic aneurysm and dissection +C1812607|T047|HT|I71|ICD10|Aortic aneurysm and dissection|Aortic aneurysm and dissection +C0340643|T047|HT|I71.0|ICD10CM|Dissection of aorta|Dissection of aorta +C0340643|T047|AB|I71.0|ICD10CM|Dissection of aorta|Dissection of aorta +C0340643|T047|PT|I71.0|ICD10|Dissection of aorta [any part]|Dissection of aorta [any part] +C0340643|T047|AB|I71.00|ICD10CM|Dissection of unspecified site of aorta|Dissection of unspecified site of aorta +C0340643|T047|PT|I71.00|ICD10CM|Dissection of unspecified site of aorta|Dissection of unspecified site of aorta +C0340644|T047|PT|I71.01|ICD10CM|Dissection of thoracic aorta|Dissection of thoracic aorta +C0340644|T047|AB|I71.01|ICD10CM|Dissection of thoracic aorta|Dissection of thoracic aorta +C0837143|T047|PT|I71.02|ICD10CM|Dissection of abdominal aorta|Dissection of abdominal aorta +C0837143|T047|AB|I71.02|ICD10CM|Dissection of abdominal aorta|Dissection of abdominal aorta +C0837144|T047|PT|I71.03|ICD10CM|Dissection of thoracoabdominal aorta|Dissection of thoracoabdominal aorta +C0837144|T047|AB|I71.03|ICD10CM|Dissection of thoracoabdominal aorta|Dissection of thoracoabdominal aorta +C0265010|T047|PT|I71.1|ICD10|Thoracic aortic aneurysm, ruptured|Thoracic aortic aneurysm, ruptured +C0265010|T047|PT|I71.1|ICD10CM|Thoracic aortic aneurysm, ruptured|Thoracic aortic aneurysm, ruptured +C0265010|T047|AB|I71.1|ICD10CM|Thoracic aortic aneurysm, ruptured|Thoracic aortic aneurysm, ruptured +C3251816|T020|PT|I71.2|ICD10|Thoracic aortic aneurysm, without mention of rupture|Thoracic aortic aneurysm, without mention of rupture +C3251816|T020|AB|I71.2|ICD10CM|Thoracic aortic aneurysm, without rupture|Thoracic aortic aneurysm, without rupture +C3251816|T020|PT|I71.2|ICD10CM|Thoracic aortic aneurysm, without rupture|Thoracic aortic aneurysm, without rupture +C0265012|T047|PT|I71.3|ICD10CM|Abdominal aortic aneurysm, ruptured|Abdominal aortic aneurysm, ruptured +C0265012|T047|AB|I71.3|ICD10CM|Abdominal aortic aneurysm, ruptured|Abdominal aortic aneurysm, ruptured +C0265012|T047|PT|I71.3|ICD10|Abdominal aortic aneurysm, ruptured|Abdominal aortic aneurysm, ruptured +C0265011|T020|PT|I71.4|ICD10|Abdominal aortic aneurysm, without mention of rupture|Abdominal aortic aneurysm, without mention of rupture +C0265011|T020|AB|I71.4|ICD10CM|Abdominal aortic aneurysm, without rupture|Abdominal aortic aneurysm, without rupture +C0265011|T020|PT|I71.4|ICD10CM|Abdominal aortic aneurysm, without rupture|Abdominal aortic aneurysm, without rupture +C1305122|T047|PT|I71.5|ICD10|Thoracoabdominal aortic aneurysm, ruptured|Thoracoabdominal aortic aneurysm, ruptured +C1305122|T047|PT|I71.5|ICD10CM|Thoracoabdominal aortic aneurysm, ruptured|Thoracoabdominal aortic aneurysm, ruptured +C1305122|T047|AB|I71.5|ICD10CM|Thoracoabdominal aortic aneurysm, ruptured|Thoracoabdominal aortic aneurysm, ruptured +C0375306|T020|PT|I71.6|ICD10|Thoracoabdominal aortic aneurysm, without mention of rupture|Thoracoabdominal aortic aneurysm, without mention of rupture +C2883030|T047|AB|I71.6|ICD10CM|Thoracoabdominal aortic aneurysm, without rupture|Thoracoabdominal aortic aneurysm, without rupture +C2883030|T047|PT|I71.6|ICD10CM|Thoracoabdominal aortic aneurysm, without rupture|Thoracoabdominal aortic aneurysm, without rupture +C0741160|T047|PT|I71.8|ICD10CM|Aortic aneurysm of unspecified site, ruptured|Aortic aneurysm of unspecified site, ruptured +C0741160|T047|AB|I71.8|ICD10CM|Aortic aneurysm of unspecified site, ruptured|Aortic aneurysm of unspecified site, ruptured +C0741160|T047|PT|I71.8|ICD10|Aortic aneurysm of unspecified site, ruptured|Aortic aneurysm of unspecified site, ruptured +C0265006|T037|ET|I71.8|ICD10CM|Rupture of aorta NOS|Rupture of aorta NOS +C0003486|T047|ET|I71.9|ICD10CM|Aneurysm of aorta|Aneurysm of aorta +C0340629|T047|PT|I71.9|ICD10|Aortic aneurysm of unspecified site, without mention of rupture|Aortic aneurysm of unspecified site, without mention of rupture +C2883031|T047|AB|I71.9|ICD10CM|Aortic aneurysm of unspecified site, without rupture|Aortic aneurysm of unspecified site, without rupture +C2883031|T047|PT|I71.9|ICD10CM|Aortic aneurysm of unspecified site, without rupture|Aortic aneurysm of unspecified site, without rupture +C0265004|T047|ET|I71.9|ICD10CM|Dilatation of aorta|Dilatation of aorta +C0265005|T047|ET|I71.9|ICD10CM|Hyaline necrosis of aorta|Hyaline necrosis of aorta +C4290179|T190|ET|I72|ICD10CM|aneurysm (cirsoid) (false) (ruptured)|aneurysm (cirsoid) (false) (ruptured) +C0155740|T190|HT|I72|ICD10CM|Other aneurysm|Other aneurysm +C0155740|T190|AB|I72|ICD10CM|Other aneurysm|Other aneurysm +C0155740|T190|HT|I72|ICD10|Other aneurysm|Other aneurysm +C0340639|T047|PT|I72.0|ICD10|Aneurysm of carotid artery|Aneurysm of carotid artery +C0340639|T047|PT|I72.0|ICD10CM|Aneurysm of carotid artery|Aneurysm of carotid artery +C0340639|T047|AB|I72.0|ICD10CM|Aneurysm of carotid artery|Aneurysm of carotid artery +C0264965|T047|ET|I72.0|ICD10CM|Aneurysm of common carotid artery|Aneurysm of common carotid artery +C0264966|T047|ET|I72.0|ICD10CM|Aneurysm of external carotid artery|Aneurysm of external carotid artery +C0865708|T190|ET|I72.0|ICD10CM|Aneurysm of internal carotid artery, extracranial portion|Aneurysm of internal carotid artery, extracranial portion +C0155741|T190|PT|I72.1|ICD10|Aneurysm of artery of upper extremity|Aneurysm of artery of upper extremity +C0155741|T190|PT|I72.1|ICD10CM|Aneurysm of artery of upper extremity|Aneurysm of artery of upper extremity +C0155741|T190|AB|I72.1|ICD10CM|Aneurysm of artery of upper extremity|Aneurysm of artery of upper extremity +C0155742|T190|PT|I72.2|ICD10CM|Aneurysm of renal artery|Aneurysm of renal artery +C0155742|T190|AB|I72.2|ICD10CM|Aneurysm of renal artery|Aneurysm of renal artery +C0155742|T190|PT|I72.2|ICD10|Aneurysm of renal artery|Aneurysm of renal artery +C0162870|T190|PT|I72.3|ICD10|Aneurysm of iliac artery|Aneurysm of iliac artery +C0162870|T190|PT|I72.3|ICD10CM|Aneurysm of iliac artery|Aneurysm of iliac artery +C0162870|T190|AB|I72.3|ICD10CM|Aneurysm of iliac artery|Aneurysm of iliac artery +C0155744|T190|PT|I72.4|ICD10|Aneurysm of artery of lower extremity|Aneurysm of artery of lower extremity +C0155744|T190|PT|I72.4|ICD10CM|Aneurysm of artery of lower extremity|Aneurysm of artery of lower extremity +C0155744|T190|AB|I72.4|ICD10CM|Aneurysm of artery of lower extremity|Aneurysm of artery of lower extremity +C4268547|T047|ET|I72.5|ICD10CM|Aneurysm of basilar artery (trunk)|Aneurysm of basilar artery (trunk) +C4268546|T047|PT|I72.5|ICD10CM|Aneurysm of other precerebral arteries|Aneurysm of other precerebral arteries +C4268546|T047|AB|I72.5|ICD10CM|Aneurysm of other precerebral arteries|Aneurysm of other precerebral arteries +C0574027|T047|AB|I72.6|ICD10CM|Aneurysm of vertebral artery|Aneurysm of vertebral artery +C0574027|T047|PT|I72.6|ICD10CM|Aneurysm of vertebral artery|Aneurysm of vertebral artery +C0002945|T190|PT|I72.8|ICD10|Aneurysm of other specified arteries|Aneurysm of other specified arteries +C0002945|T190|PT|I72.8|ICD10CM|Aneurysm of other specified arteries|Aneurysm of other specified arteries +C0002945|T190|AB|I72.8|ICD10CM|Aneurysm of other specified arteries|Aneurysm of other specified arteries +C0002940|T046|PT|I72.9|ICD10CM|Aneurysm of unspecified site|Aneurysm of unspecified site +C0002940|T046|AB|I72.9|ICD10CM|Aneurysm of unspecified site|Aneurysm of unspecified site +C0002940|T046|PT|I72.9|ICD10|Aneurysm of unspecified site|Aneurysm of unspecified site +C0553983|T047|HT|I73|ICD10|Other peripheral vascular diseases|Other peripheral vascular diseases +C0553983|T047|AB|I73|ICD10CM|Other peripheral vascular diseases|Other peripheral vascular diseases +C0553983|T047|HT|I73|ICD10CM|Other peripheral vascular diseases|Other peripheral vascular diseases +C0034734|T047|ET|I73.0|ICD10CM|Raynaud's disease|Raynaud's disease +C1282916|T047|ET|I73.0|ICD10CM|Raynaud's phenomenon (secondary)|Raynaud's phenomenon (secondary) +C0034735|T047|HT|I73.0|ICD10CM|Raynaud's syndrome|Raynaud's syndrome +C0034735|T047|AB|I73.0|ICD10CM|Raynaud's syndrome|Raynaud's syndrome +C0034735|T047|PT|I73.0|ICD10|Raynaud's syndrome|Raynaud's syndrome +C2883034|T047|PT|I73.00|ICD10CM|Raynaud's syndrome without gangrene|Raynaud's syndrome without gangrene +C2883034|T047|AB|I73.00|ICD10CM|Raynaud's syndrome without gangrene|Raynaud's syndrome without gangrene +C2883035|T047|PT|I73.01|ICD10CM|Raynaud's syndrome with gangrene|Raynaud's syndrome with gangrene +C2883035|T047|AB|I73.01|ICD10CM|Raynaud's syndrome with gangrene|Raynaud's syndrome with gangrene +C0040021|T047|AB|I73.1|ICD10CM|Thromboangiitis obliterans [Buerger's disease]|Thromboangiitis obliterans [Buerger's disease] +C0040021|T047|PT|I73.1|ICD10CM|Thromboangiitis obliterans [Buerger's disease]|Thromboangiitis obliterans [Buerger's disease] +C0040021|T047|PT|I73.1|ICD10|Thromboangiitis obliterans [Buerger]|Thromboangiitis obliterans [Buerger] +C0029822|T047|PT|I73.8|ICD10|Other specified peripheral vascular diseases|Other specified peripheral vascular diseases +C0029822|T047|HT|I73.8|ICD10CM|Other specified peripheral vascular diseases|Other specified peripheral vascular diseases +C0029822|T047|AB|I73.8|ICD10CM|Other specified peripheral vascular diseases|Other specified peripheral vascular diseases +C0014804|T047|PT|I73.81|ICD10CM|Erythromelalgia|Erythromelalgia +C0014804|T047|AB|I73.81|ICD10CM|Erythromelalgia|Erythromelalgia +C0221347|T047|ET|I73.89|ICD10CM|Acrocyanosis|Acrocyanosis +C0264946|T047|ET|I73.89|ICD10CM|Erythrocyanosis|Erythrocyanosis +C0029822|T047|PT|I73.89|ICD10CM|Other specified peripheral vascular diseases|Other specified peripheral vascular diseases +C0029822|T047|AB|I73.89|ICD10CM|Other specified peripheral vascular diseases|Other specified peripheral vascular diseases +C1409541|T047|ET|I73.89|ICD10CM|Simple acroparesthesia [Schultze's type]|Simple acroparesthesia [Schultze's type] +C2883036|T047|ET|I73.89|ICD10CM|Vasomotor acroparesthesia [Nothnagel's type]|Vasomotor acroparesthesia [Nothnagel's type] +C0021775|T047|ET|I73.9|ICD10CM|Intermittent claudication|Intermittent claudication +C0085096|T047|ET|I73.9|ICD10CM|Peripheral angiopathy NOS|Peripheral angiopathy NOS +C0085096|T047|PT|I73.9|ICD10CM|Peripheral vascular disease, unspecified|Peripheral vascular disease, unspecified +C0085096|T047|AB|I73.9|ICD10CM|Peripheral vascular disease, unspecified|Peripheral vascular disease, unspecified +C0085096|T047|PT|I73.9|ICD10|Peripheral vascular disease, unspecified|Peripheral vascular disease, unspecified +C0085617|T046|ET|I73.9|ICD10CM|Spasm of artery|Spasm of artery +C0155749|T046|HT|I74|ICD10CM|Arterial embolism and thrombosis|Arterial embolism and thrombosis +C0155749|T046|AB|I74|ICD10CM|Arterial embolism and thrombosis|Arterial embolism and thrombosis +C0155749|T046|HT|I74|ICD10|Arterial embolism and thrombosis|Arterial embolism and thrombosis +C0264978|T046|ET|I74|ICD10CM|embolic infarction|embolic infarction +C4290180|T046|ET|I74|ICD10CM|embolic occlusion|embolic occlusion +C0264983|T047|ET|I74|ICD10CM|thrombotic infarction|thrombotic infarction +C4290181|T046|ET|I74|ICD10CM|thrombotic occlusion|thrombotic occlusion +C0013923|T046|PT|I74.0|ICD10|Embolism and thrombosis of abdominal aorta|Embolism and thrombosis of abdominal aorta +C0013923|T046|HT|I74.0|ICD10CM|Embolism and thrombosis of abdominal aorta|Embolism and thrombosis of abdominal aorta +C0013923|T046|AB|I74.0|ICD10CM|Embolism and thrombosis of abdominal aorta|Embolism and thrombosis of abdominal aorta +C0023370|T047|PT|I74.01|ICD10CM|Saddle embolus of abdominal aorta|Saddle embolus of abdominal aorta +C0023370|T047|AB|I74.01|ICD10CM|Saddle embolus of abdominal aorta|Saddle embolus of abdominal aorta +C0023370|T047|ET|I74.09|ICD10CM|Aortic bifurcation syndrome|Aortic bifurcation syndrome +C0023370|T047|ET|I74.09|ICD10CM|Aortoiliac obstruction|Aortoiliac obstruction +C0023370|T047|ET|I74.09|ICD10CM|Leriche's syndrome|Leriche's syndrome +C3161092|T047|AB|I74.09|ICD10CM|Other arterial embolism and thrombosis of abdominal aorta|Other arterial embolism and thrombosis of abdominal aorta +C3161092|T047|PT|I74.09|ICD10CM|Other arterial embolism and thrombosis of abdominal aorta|Other arterial embolism and thrombosis of abdominal aorta +C0494619|T046|AB|I74.1|ICD10CM|Embolism and thrombosis of other and unsp parts of aorta|Embolism and thrombosis of other and unsp parts of aorta +C0494619|T046|HT|I74.1|ICD10CM|Embolism and thrombosis of other and unspecified parts of aorta|Embolism and thrombosis of other and unspecified parts of aorta +C0494619|T046|PT|I74.1|ICD10|Embolism and thrombosis of other and unspecified parts of aorta|Embolism and thrombosis of other and unspecified parts of aorta +C2883039|T046|AB|I74.10|ICD10CM|Embolism and thrombosis of unspecified parts of aorta|Embolism and thrombosis of unspecified parts of aorta +C2883039|T046|PT|I74.10|ICD10CM|Embolism and thrombosis of unspecified parts of aorta|Embolism and thrombosis of unspecified parts of aorta +C0155750|T046|PT|I74.11|ICD10CM|Embolism and thrombosis of thoracic aorta|Embolism and thrombosis of thoracic aorta +C0155750|T046|AB|I74.11|ICD10CM|Embolism and thrombosis of thoracic aorta|Embolism and thrombosis of thoracic aorta +C2883040|T046|AB|I74.19|ICD10CM|Embolism and thrombosis of other parts of aorta|Embolism and thrombosis of other parts of aorta +C2883040|T046|PT|I74.19|ICD10CM|Embolism and thrombosis of other parts of aorta|Embolism and thrombosis of other parts of aorta +C0494620|T046|AB|I74.2|ICD10CM|Embolism and thrombosis of arteries of the upper extremities|Embolism and thrombosis of arteries of the upper extremities +C0494620|T046|PT|I74.2|ICD10CM|Embolism and thrombosis of arteries of the upper extremities|Embolism and thrombosis of arteries of the upper extremities +C0494620|T046|PT|I74.2|ICD10|Embolism and thrombosis of arteries of upper extremities|Embolism and thrombosis of arteries of upper extremities +C0340589|T046|PT|I74.3|ICD10|Embolism and thrombosis of arteries of lower extremities|Embolism and thrombosis of arteries of lower extremities +C0340589|T046|AB|I74.3|ICD10CM|Embolism and thrombosis of arteries of the lower extremities|Embolism and thrombosis of arteries of the lower extremities +C0340589|T046|PT|I74.3|ICD10CM|Embolism and thrombosis of arteries of the lower extremities|Embolism and thrombosis of arteries of the lower extremities +C0340579|T046|AB|I74.4|ICD10CM|Embolism and thrombosis of arteries of extremities, unsp|Embolism and thrombosis of arteries of extremities, unsp +C0340579|T046|PT|I74.4|ICD10CM|Embolism and thrombosis of arteries of extremities, unspecified|Embolism and thrombosis of arteries of extremities, unspecified +C0340579|T046|PT|I74.4|ICD10|Embolism and thrombosis of arteries of extremities, unspecified|Embolism and thrombosis of arteries of extremities, unspecified +C0564750|T046|ET|I74.4|ICD10CM|Peripheral arterial embolism NOS|Peripheral arterial embolism NOS +C0155755|T046|PT|I74.5|ICD10CM|Embolism and thrombosis of iliac artery|Embolism and thrombosis of iliac artery +C0155755|T046|AB|I74.5|ICD10CM|Embolism and thrombosis of iliac artery|Embolism and thrombosis of iliac artery +C0155755|T046|PT|I74.5|ICD10|Embolism and thrombosis of iliac artery|Embolism and thrombosis of iliac artery +C0348650|T047|PT|I74.8|ICD10|Embolism and thrombosis of other arteries|Embolism and thrombosis of other arteries +C0348650|T047|PT|I74.8|ICD10CM|Embolism and thrombosis of other arteries|Embolism and thrombosis of other arteries +C0348650|T047|AB|I74.8|ICD10CM|Embolism and thrombosis of other arteries|Embolism and thrombosis of other arteries +C0013924|T046|PT|I74.9|ICD10|Embolism and thrombosis of unspecified artery|Embolism and thrombosis of unspecified artery +C0013924|T046|PT|I74.9|ICD10CM|Embolism and thrombosis of unspecified artery|Embolism and thrombosis of unspecified artery +C0013924|T046|AB|I74.9|ICD10CM|Embolism and thrombosis of unspecified artery|Embolism and thrombosis of unspecified artery +C0149649|T047|HT|I75|ICD10CM|Atheroembolism|Atheroembolism +C0149649|T047|AB|I75|ICD10CM|Atheroembolism|Atheroembolism +C4290182|T047|ET|I75|ICD10CM|atherothrombotic microembolism|atherothrombotic microembolism +C0149649|T047|ET|I75|ICD10CM|cholesterol embolism|cholesterol embolism +C1135211|T047|AB|I75.0|ICD10CM|Atheroembolism of extremities|Atheroembolism of extremities +C1135211|T047|HT|I75.0|ICD10CM|Atheroembolism of extremities|Atheroembolism of extremities +C1135212|T047|HT|I75.01|ICD10CM|Atheroembolism of upper extremity|Atheroembolism of upper extremity +C1135212|T047|AB|I75.01|ICD10CM|Atheroembolism of upper extremity|Atheroembolism of upper extremity +C2883042|T047|AB|I75.011|ICD10CM|Atheroembolism of right upper extremity|Atheroembolism of right upper extremity +C2883042|T047|PT|I75.011|ICD10CM|Atheroembolism of right upper extremity|Atheroembolism of right upper extremity +C2883043|T047|AB|I75.012|ICD10CM|Atheroembolism of left upper extremity|Atheroembolism of left upper extremity +C2883043|T047|PT|I75.012|ICD10CM|Atheroembolism of left upper extremity|Atheroembolism of left upper extremity +C2883044|T047|AB|I75.013|ICD10CM|Atheroembolism of bilateral upper extremities|Atheroembolism of bilateral upper extremities +C2883044|T047|PT|I75.013|ICD10CM|Atheroembolism of bilateral upper extremities|Atheroembolism of bilateral upper extremities +C2883045|T047|AB|I75.019|ICD10CM|Atheroembolism of unspecified upper extremity|Atheroembolism of unspecified upper extremity +C2883045|T047|PT|I75.019|ICD10CM|Atheroembolism of unspecified upper extremity|Atheroembolism of unspecified upper extremity +C1135213|T047|HT|I75.02|ICD10CM|Atheroembolism of lower extremity|Atheroembolism of lower extremity +C1135213|T047|AB|I75.02|ICD10CM|Atheroembolism of lower extremity|Atheroembolism of lower extremity +C2883046|T047|AB|I75.021|ICD10CM|Atheroembolism of right lower extremity|Atheroembolism of right lower extremity +C2883046|T047|PT|I75.021|ICD10CM|Atheroembolism of right lower extremity|Atheroembolism of right lower extremity +C2883047|T047|AB|I75.022|ICD10CM|Atheroembolism of left lower extremity|Atheroembolism of left lower extremity +C2883047|T047|PT|I75.022|ICD10CM|Atheroembolism of left lower extremity|Atheroembolism of left lower extremity +C2883048|T047|AB|I75.023|ICD10CM|Atheroembolism of bilateral lower extremities|Atheroembolism of bilateral lower extremities +C2883048|T047|PT|I75.023|ICD10CM|Atheroembolism of bilateral lower extremities|Atheroembolism of bilateral lower extremities +C2883049|T047|AB|I75.029|ICD10CM|Atheroembolism of unspecified lower extremity|Atheroembolism of unspecified lower extremity +C2883049|T047|PT|I75.029|ICD10CM|Atheroembolism of unspecified lower extremity|Atheroembolism of unspecified lower extremity +C1135216|T047|AB|I75.8|ICD10CM|Atheroembolism of other sites|Atheroembolism of other sites +C1135216|T047|HT|I75.8|ICD10CM|Atheroembolism of other sites|Atheroembolism of other sites +C0268792|T047|AB|I75.81|ICD10CM|Atheroembolism of kidney|Atheroembolism of kidney +C0268792|T047|PT|I75.81|ICD10CM|Atheroembolism of kidney|Atheroembolism of kidney +C1135216|T047|AB|I75.89|ICD10CM|Atheroembolism of other site|Atheroembolism of other site +C1135216|T047|PT|I75.89|ICD10CM|Atheroembolism of other site|Atheroembolism of other site +C1955786|T046|PT|I76|ICD10CM|Septic arterial embolism|Septic arterial embolism +C1955786|T046|AB|I76|ICD10CM|Septic arterial embolism|Septic arterial embolism +C0155759|T047|HT|I77|ICD10CM|Other disorders of arteries and arterioles|Other disorders of arteries and arterioles +C0155759|T047|AB|I77|ICD10CM|Other disorders of arteries and arterioles|Other disorders of arteries and arterioles +C0155759|T047|HT|I77|ICD10|Other disorders of arteries and arterioles|Other disorders of arteries and arterioles +C0334533|T191|ET|I77.0|ICD10CM|Aneurysmal varix|Aneurysmal varix +C1541850|T020|ET|I77.0|ICD10CM|Arteriovenous aneurysm, acquired|Arteriovenous aneurysm, acquired +C1541850|T020|PT|I77.0|ICD10CM|Arteriovenous fistula, acquired|Arteriovenous fistula, acquired +C1541850|T020|AB|I77.0|ICD10CM|Arteriovenous fistula, acquired|Arteriovenous fistula, acquired +C1541850|T020|PT|I77.0|ICD10|Arteriovenous fistula, acquired|Arteriovenous fistula, acquired +C1388472|T190|ET|I77.1|ICD10CM|Narrowing of artery|Narrowing of artery +C0038449|T046|PT|I77.1|ICD10|Stricture of artery|Stricture of artery +C0038449|T046|PT|I77.1|ICD10CM|Stricture of artery|Stricture of artery +C0038449|T046|AB|I77.1|ICD10CM|Stricture of artery|Stricture of artery +C0264999|T047|ET|I77.2|ICD10CM|Erosion of artery|Erosion of artery +C0264998|T190|ET|I77.2|ICD10CM|Fistula of artery|Fistula of artery +C0155760|T047|PT|I77.2|ICD10CM|Rupture of artery|Rupture of artery +C0155760|T047|AB|I77.2|ICD10CM|Rupture of artery|Rupture of artery +C0155760|T047|PT|I77.2|ICD10|Rupture of artery|Rupture of artery +C0265000|T047|ET|I77.2|ICD10CM|Ulcer of artery|Ulcer of artery +C0016052|T047|PT|I77.3|ICD10CM|Arterial fibromuscular dysplasia|Arterial fibromuscular dysplasia +C0016052|T047|AB|I77.3|ICD10CM|Arterial fibromuscular dysplasia|Arterial fibromuscular dysplasia +C0016052|T047|PT|I77.3|ICD10|Arterial fibromuscular dysplasia|Arterial fibromuscular dysplasia +C1998294|T047|ET|I77.3|ICD10CM|Fibromuscular hyperplasia (of) carotid artery|Fibromuscular hyperplasia (of) carotid artery +C0155761|T047|ET|I77.3|ICD10CM|Fibromuscular hyperplasia (of) renal artery|Fibromuscular hyperplasia (of) renal artery +C1861783|T047|PT|I77.4|ICD10AE|Celiac artery compression syndrome|Celiac artery compression syndrome +C1861783|T047|PT|I77.4|ICD10CM|Celiac artery compression syndrome|Celiac artery compression syndrome +C1861783|T047|AB|I77.4|ICD10CM|Celiac artery compression syndrome|Celiac artery compression syndrome +C1861783|T047|PT|I77.4|ICD10|Coeliac artery compression syndrome|Coeliac artery compression syndrome +C0155762|T047|PT|I77.5|ICD10CM|Necrosis of artery|Necrosis of artery +C0155762|T047|AB|I77.5|ICD10CM|Necrosis of artery|Necrosis of artery +C0155762|T047|PT|I77.5|ICD10|Necrosis of artery|Necrosis of artery +C0003509|T047|ET|I77.6|ICD10CM|Aortitis NOS|Aortitis NOS +C0003860|T046|PT|I77.6|ICD10CM|Arteritis, unspecified|Arteritis, unspecified +C0003860|T046|AB|I77.6|ICD10CM|Arteritis, unspecified|Arteritis, unspecified +C0003860|T046|PT|I77.6|ICD10|Arteritis, unspecified|Arteritis, unspecified +C0014100|T047|ET|I77.6|ICD10CM|Endarteritis NOS|Endarteritis NOS +C1135209|T047|AB|I77.7|ICD10CM|Other arterial dissection|Other arterial dissection +C1135209|T047|HT|I77.7|ICD10CM|Other arterial dissection|Other arterial dissection +C4268548|T047|AB|I77.70|ICD10CM|Dissection of unspecified artery|Dissection of unspecified artery +C4268548|T047|PT|I77.70|ICD10CM|Dissection of unspecified artery|Dissection of unspecified artery +C0338585|T047|PT|I77.71|ICD10CM|Dissection of carotid artery|Dissection of carotid artery +C0338585|T047|AB|I77.71|ICD10CM|Dissection of carotid artery|Dissection of carotid artery +C0340649|T047|PT|I77.72|ICD10CM|Dissection of iliac artery|Dissection of iliac artery +C0340649|T047|AB|I77.72|ICD10CM|Dissection of iliac artery|Dissection of iliac artery +C0919563|T047|PT|I77.73|ICD10CM|Dissection of renal artery|Dissection of renal artery +C0919563|T047|AB|I77.73|ICD10CM|Dissection of renal artery|Dissection of renal artery +C0338586|T047|PT|I77.74|ICD10CM|Dissection of vertebral artery|Dissection of vertebral artery +C0338586|T047|AB|I77.74|ICD10CM|Dissection of vertebral artery|Dissection of vertebral artery +C4270822|T047|ET|I77.75|ICD10CM|Dissection of basilar artery (trunk)|Dissection of basilar artery (trunk) +C4268549|T047|AB|I77.75|ICD10CM|Dissection of other precerebral arteries|Dissection of other precerebral arteries +C4268549|T047|PT|I77.75|ICD10CM|Dissection of other precerebral arteries|Dissection of other precerebral arteries +C4076498|T047|PT|I77.76|ICD10CM|Dissection of artery of upper extremity|Dissection of artery of upper extremity +C4076498|T047|AB|I77.76|ICD10CM|Dissection of artery of upper extremity|Dissection of artery of upper extremity +C4268550|T047|AB|I77.77|ICD10CM|Dissection of artery of lower extremity|Dissection of artery of lower extremity +C4268550|T047|PT|I77.77|ICD10CM|Dissection of artery of lower extremity|Dissection of artery of lower extremity +C1135210|T047|AB|I77.79|ICD10CM|Dissection of other specified artery|Dissection of other specified artery +C1135210|T047|PT|I77.79|ICD10CM|Dissection of other specified artery|Dissection of other specified artery +C0155763|T047|PT|I77.8|ICD10|Other specified disorders of arteries and arterioles|Other specified disorders of arteries and arterioles +C0155763|T047|HT|I77.8|ICD10CM|Other specified disorders of arteries and arterioles|Other specified disorders of arteries and arterioles +C0155763|T047|AB|I77.8|ICD10CM|Other specified disorders of arteries and arterioles|Other specified disorders of arteries and arterioles +C0265004|T047|HT|I77.81|ICD10CM|Aortic ectasia|Aortic ectasia +C0265004|T047|AB|I77.81|ICD10CM|Aortic ectasia|Aortic ectasia +C2921067|T047|ET|I77.81|ICD10CM|Ectasis aorta|Ectasis aorta +C2921069|T047|AB|I77.810|ICD10CM|Thoracic aortic ectasia|Thoracic aortic ectasia +C2921069|T047|PT|I77.810|ICD10CM|Thoracic aortic ectasia|Thoracic aortic ectasia +C2921070|T047|PT|I77.811|ICD10CM|Abdominal aortic ectasia|Abdominal aortic ectasia +C2921070|T047|AB|I77.811|ICD10CM|Abdominal aortic ectasia|Abdominal aortic ectasia +C2921071|T047|AB|I77.812|ICD10CM|Thoracoabdominal aortic ectasia|Thoracoabdominal aortic ectasia +C2921071|T047|PT|I77.812|ICD10CM|Thoracoabdominal aortic ectasia|Thoracoabdominal aortic ectasia +C2921068|T047|AB|I77.819|ICD10CM|Aortic ectasia, unspecified site|Aortic ectasia, unspecified site +C2921068|T047|PT|I77.819|ICD10CM|Aortic ectasia, unspecified site|Aortic ectasia, unspecified site +C0155763|T047|PT|I77.89|ICD10CM|Other specified disorders of arteries and arterioles|Other specified disorders of arteries and arterioles +C0155763|T047|AB|I77.89|ICD10CM|Other specified disorders of arteries and arterioles|Other specified disorders of arteries and arterioles +C0155764|T047|PT|I77.9|ICD10CM|Disorder of arteries and arterioles, unspecified|Disorder of arteries and arterioles, unspecified +C0155764|T047|AB|I77.9|ICD10CM|Disorder of arteries and arterioles, unspecified|Disorder of arteries and arterioles, unspecified +C0155764|T047|PT|I77.9|ICD10|Disorder of arteries and arterioles, unspecified|Disorder of arteries and arterioles, unspecified +C0155765|T047|HT|I78|ICD10|Diseases of capillaries|Diseases of capillaries +C0155765|T047|AB|I78|ICD10CM|Diseases of capillaries|Diseases of capillaries +C0155765|T047|HT|I78|ICD10CM|Diseases of capillaries|Diseases of capillaries +C0039445|T047|PT|I78.0|ICD10|Hereditary haemorrhagic telangiectasia|Hereditary haemorrhagic telangiectasia +C0039445|T047|PT|I78.0|ICD10AE|Hereditary hemorrhagic telangiectasia|Hereditary hemorrhagic telangiectasia +C0039445|T047|PT|I78.0|ICD10CM|Hereditary hemorrhagic telangiectasia|Hereditary hemorrhagic telangiectasia +C0039445|T047|AB|I78.0|ICD10CM|Hereditary hemorrhagic telangiectasia|Hereditary hemorrhagic telangiectasia +C0039445|T047|ET|I78.0|ICD10CM|Rendu-Osler-Weber disease|Rendu-Osler-Weber disease +C0085666|T047|ET|I78.1|ICD10CM|Araneus nevus|Araneus nevus +C0265027|T047|PT|I78.1|ICD10|Naevus, non-neoplastic|Naevus, non-neoplastic +C0265027|T047|PT|I78.1|ICD10AE|Nevus, non-neoplastic|Nevus, non-neoplastic +C0265027|T047|PT|I78.1|ICD10CM|Nevus, non-neoplastic|Nevus, non-neoplastic +C0265027|T047|AB|I78.1|ICD10CM|Nevus, non-neoplastic|Nevus, non-neoplastic +C0343113|T047|ET|I78.1|ICD10CM|Senile nevus|Senile nevus +C0085666|T047|ET|I78.1|ICD10CM|Spider nevus|Spider nevus +C0085666|T047|ET|I78.1|ICD10CM|Stellar nevus|Stellar nevus +C0348651|T047|PT|I78.8|ICD10CM|Other diseases of capillaries|Other diseases of capillaries +C0348651|T047|AB|I78.8|ICD10CM|Other diseases of capillaries|Other diseases of capillaries +C0348651|T047|PT|I78.8|ICD10|Other diseases of capillaries|Other diseases of capillaries +C0155765|T047|PT|I78.9|ICD10|Disease of capillaries, unspecified|Disease of capillaries, unspecified +C0155765|T047|PT|I78.9|ICD10CM|Disease of capillaries, unspecified|Disease of capillaries, unspecified +C0155765|T047|AB|I78.9|ICD10CM|Disease of capillaries, unspecified|Disease of capillaries, unspecified +C0694502|T047|AB|I79|ICD10CM|Disord of art, arterioles and capilare in dis classd elswhr|Disord of art, arterioles and capilare in dis classd elswhr +C0694502|T047|HT|I79|ICD10CM|Disorders of arteries, arterioles and capillaries in diseases classified elsewhere|Disorders of arteries, arterioles and capillaries in diseases classified elsewhere +C0694502|T047|HT|I79|ICD10|Disorders of arteries, arterioles and capillaries in diseases classified elsewhere|Disorders of arteries, arterioles and capillaries in diseases classified elsewhere +C0348652|T190|PT|I79.0|ICD10|Aneurysm of aorta in diseases classified elsewhere|Aneurysm of aorta in diseases classified elsewhere +C0348652|T190|PT|I79.0|ICD10CM|Aneurysm of aorta in diseases classified elsewhere|Aneurysm of aorta in diseases classified elsewhere +C0348652|T190|AB|I79.0|ICD10CM|Aneurysm of aorta in diseases classified elsewhere|Aneurysm of aorta in diseases classified elsewhere +C0348653|T047|PT|I79.1|ICD10CM|Aortitis in diseases classified elsewhere|Aortitis in diseases classified elsewhere +C0348653|T047|AB|I79.1|ICD10CM|Aortitis in diseases classified elsewhere|Aortitis in diseases classified elsewhere +C0348653|T047|PT|I79.1|ICD10|Aortitis in diseases classified elsewhere|Aortitis in diseases classified elsewhere +C0031115|T047|PT|I79.2|ICD10|Peripheral angiopathy in diseases classified elsewhere|Peripheral angiopathy in diseases classified elsewhere +C0348654|T047|AB|I79.8|ICD10CM|Oth disord of art,arterioles & capilare in dis classd elswhr|Oth disord of art,arterioles & capilare in dis classd elswhr +C0348654|T047|PT|I79.8|ICD10CM|Other disorders of arteries, arterioles and capillaries in diseases classified elsewhere|Other disorders of arteries, arterioles and capillaries in diseases classified elsewhere +C0348654|T047|PT|I79.8|ICD10|Other disorders of arteries, arterioles and capillaries in diseases classified elsewhere|Other disorders of arteries, arterioles and capillaries in diseases classified elsewhere +C0014234|T047|ET|I80|ICD10CM|endophlebitis|endophlebitis +C0031542|T046|ET|I80|ICD10CM|inflammation, vein|inflammation, vein +C0031129|T047|ET|I80|ICD10CM|periphlebitis|periphlebitis +C1367972|T047|HT|I80|ICD10|Phlebitis and thrombophlebitis|Phlebitis and thrombophlebitis +C1367972|T047|AB|I80|ICD10CM|Phlebitis and thrombophlebitis|Phlebitis and thrombophlebitis +C1367972|T047|HT|I80|ICD10CM|Phlebitis and thrombophlebitis|Phlebitis and thrombophlebitis +C0265051|T047|ET|I80|ICD10CM|suppurative phlebitis|suppurative phlebitis +C0869055|T047|HT|I80-I89|ICD10CM|Diseases of veins, lymphatic vessels and lymph nodes, not elsewhere classified (I80-I89)|Diseases of veins, lymphatic vessels and lymph nodes, not elsewhere classified (I80-I89) +C0869055|T047|HT|I80-I89.9|ICD10|Diseases of veins, lymphatic vessels and lymph nodes, not elsewhere classified|Diseases of veins, lymphatic vessels and lymph nodes, not elsewhere classified +C0265057|T047|AB|I80.0|ICD10CM|Phlebitis and thombophlb of superficial vessels of low extrm|Phlebitis and thombophlb of superficial vessels of low extrm +C0265058|T047|ET|I80.0|ICD10CM|Phlebitis and thrombophlebitis of femoropopliteal vein|Phlebitis and thrombophlebitis of femoropopliteal vein +C0265057|T047|HT|I80.0|ICD10CM|Phlebitis and thrombophlebitis of superficial vessels of lower extremities|Phlebitis and thrombophlebitis of superficial vessels of lower extremities +C0265057|T047|PT|I80.0|ICD10|Phlebitis and thrombophlebitis of superficial vessels of lower extremities|Phlebitis and thrombophlebitis of superficial vessels of lower extremities +C2883050|T047|AB|I80.00|ICD10CM|Phlbts and thombophlb of superfic vessels of unsp low extrm|Phlbts and thombophlb of superfic vessels of unsp low extrm +C2883050|T047|PT|I80.00|ICD10CM|Phlebitis and thrombophlebitis of superficial vessels of unspecified lower extremity|Phlebitis and thrombophlebitis of superficial vessels of unspecified lower extremity +C2883051|T047|AB|I80.01|ICD10CM|Phlebitis and thombophlb of superfic vessels of r low extrem|Phlebitis and thombophlb of superfic vessels of r low extrem +C2883051|T047|PT|I80.01|ICD10CM|Phlebitis and thrombophlebitis of superficial vessels of right lower extremity|Phlebitis and thrombophlebitis of superficial vessels of right lower extremity +C2883052|T047|AB|I80.02|ICD10CM|Phlebitis and thombophlb of superfic vessels of l low extrem|Phlebitis and thombophlb of superfic vessels of l low extrem +C2883052|T047|PT|I80.02|ICD10CM|Phlebitis and thrombophlebitis of superficial vessels of left lower extremity|Phlebitis and thrombophlebitis of superficial vessels of left lower extremity +C2883053|T047|AB|I80.03|ICD10CM|Phlbts and thombophlb of superfic vessels of low extrm, bi|Phlbts and thombophlb of superfic vessels of low extrm, bi +C2883053|T047|PT|I80.03|ICD10CM|Phlebitis and thrombophlebitis of superficial vessels of lower extremities, bilateral|Phlebitis and thrombophlebitis of superficial vessels of lower extremities, bilateral +C5141129|T047|ET|I80.1|ICD10CM|Phlebitis and thrombophlebitis of common femoral vein|Phlebitis and thrombophlebitis of common femoral vein +C0265066|T047|ET|I80.1|ICD10CM|Phlebitis and thrombophlebitis of deep femoral vein|Phlebitis and thrombophlebitis of deep femoral vein +C0265066|T047|HT|I80.1|ICD10CM|Phlebitis and thrombophlebitis of femoral vein|Phlebitis and thrombophlebitis of femoral vein +C0265066|T047|AB|I80.1|ICD10CM|Phlebitis and thrombophlebitis of femoral vein|Phlebitis and thrombophlebitis of femoral vein +C0265066|T047|PT|I80.1|ICD10|Phlebitis and thrombophlebitis of femoral vein|Phlebitis and thrombophlebitis of femoral vein +C2883054|T047|AB|I80.10|ICD10CM|Phlebitis and thrombophlebitis of unspecified femoral vein|Phlebitis and thrombophlebitis of unspecified femoral vein +C2883054|T047|PT|I80.10|ICD10CM|Phlebitis and thrombophlebitis of unspecified femoral vein|Phlebitis and thrombophlebitis of unspecified femoral vein +C2883055|T047|AB|I80.11|ICD10CM|Phlebitis and thrombophlebitis of right femoral vein|Phlebitis and thrombophlebitis of right femoral vein +C2883055|T047|PT|I80.11|ICD10CM|Phlebitis and thrombophlebitis of right femoral vein|Phlebitis and thrombophlebitis of right femoral vein +C2883056|T047|AB|I80.12|ICD10CM|Phlebitis and thrombophlebitis of left femoral vein|Phlebitis and thrombophlebitis of left femoral vein +C2883056|T047|PT|I80.12|ICD10CM|Phlebitis and thrombophlebitis of left femoral vein|Phlebitis and thrombophlebitis of left femoral vein +C2883057|T047|AB|I80.13|ICD10CM|Phlebitis and thrombophlebitis of femoral vein, bilateral|Phlebitis and thrombophlebitis of femoral vein, bilateral +C2883057|T047|PT|I80.13|ICD10CM|Phlebitis and thrombophlebitis of femoral vein, bilateral|Phlebitis and thrombophlebitis of femoral vein, bilateral +C2883058|T047|AB|I80.2|ICD10CM|Phlbts and thombophlb of and unsp deep vessels of low extrm|Phlbts and thombophlb of and unsp deep vessels of low extrm +C2883058|T047|HT|I80.2|ICD10CM|Phlebitis and thrombophlebitis of other and unspecified deep vessels of lower extremities|Phlebitis and thrombophlebitis of other and unspecified deep vessels of lower extremities +C0155770|T047|PT|I80.2|ICD10|Phlebitis and thrombophlebitis of other deep vessels of lower extremities|Phlebitis and thrombophlebitis of other deep vessels of lower extremities +C2883059|T047|AB|I80.20|ICD10CM|Phlebitis and thombophlb of unsp deep vessels of low extrm|Phlebitis and thombophlb of unsp deep vessels of low extrm +C2883059|T047|HT|I80.20|ICD10CM|Phlebitis and thrombophlebitis of unspecified deep vessels of lower extremities|Phlebitis and thrombophlebitis of unspecified deep vessels of lower extremities +C2883060|T047|AB|I80.201|ICD10CM|Phlbts and thombophlb of unsp deep vessels of r low extrem|Phlbts and thombophlb of unsp deep vessels of r low extrem +C2883060|T047|PT|I80.201|ICD10CM|Phlebitis and thrombophlebitis of unspecified deep vessels of right lower extremity|Phlebitis and thrombophlebitis of unspecified deep vessels of right lower extremity +C2883061|T047|AB|I80.202|ICD10CM|Phlbts and thombophlb of unsp deep vessels of l low extrem|Phlbts and thombophlb of unsp deep vessels of l low extrem +C2883061|T047|PT|I80.202|ICD10CM|Phlebitis and thrombophlebitis of unspecified deep vessels of left lower extremity|Phlebitis and thrombophlebitis of unspecified deep vessels of left lower extremity +C2883062|T047|AB|I80.203|ICD10CM|Phlbts and thombophlb of unsp deep vessels of low extrm, bi|Phlbts and thombophlb of unsp deep vessels of low extrm, bi +C2883062|T047|PT|I80.203|ICD10CM|Phlebitis and thrombophlebitis of unspecified deep vessels of lower extremities, bilateral|Phlebitis and thrombophlebitis of unspecified deep vessels of lower extremities, bilateral +C2883063|T047|AB|I80.209|ICD10CM|Phlbts and thombophlb of unsp deep vessels of unsp low extrm|Phlbts and thombophlb of unsp deep vessels of unsp low extrm +C2883063|T047|PT|I80.209|ICD10CM|Phlebitis and thrombophlebitis of unspecified deep vessels of unspecified lower extremity|Phlebitis and thrombophlebitis of unspecified deep vessels of unspecified lower extremity +C5141130|T047|ET|I80.21|ICD10CM|Phlebitis and thrombophlebitis of common iliac vein|Phlebitis and thrombophlebitis of common iliac vein +C5141131|T047|ET|I80.21|ICD10CM|Phlebitis and thrombophlebitis of external iliac vein|Phlebitis and thrombophlebitis of external iliac vein +C0155772|T047|HT|I80.21|ICD10CM|Phlebitis and thrombophlebitis of iliac vein|Phlebitis and thrombophlebitis of iliac vein +C0155772|T047|AB|I80.21|ICD10CM|Phlebitis and thrombophlebitis of iliac vein|Phlebitis and thrombophlebitis of iliac vein +C5141132|T047|ET|I80.21|ICD10CM|Phlebitis and thrombophlebitis of internal iliac vein|Phlebitis and thrombophlebitis of internal iliac vein +C2883064|T047|AB|I80.211|ICD10CM|Phlebitis and thrombophlebitis of right iliac vein|Phlebitis and thrombophlebitis of right iliac vein +C2883064|T047|PT|I80.211|ICD10CM|Phlebitis and thrombophlebitis of right iliac vein|Phlebitis and thrombophlebitis of right iliac vein +C2883065|T047|AB|I80.212|ICD10CM|Phlebitis and thrombophlebitis of left iliac vein|Phlebitis and thrombophlebitis of left iliac vein +C2883065|T047|PT|I80.212|ICD10CM|Phlebitis and thrombophlebitis of left iliac vein|Phlebitis and thrombophlebitis of left iliac vein +C2883066|T047|AB|I80.213|ICD10CM|Phlebitis and thrombophlebitis of iliac vein, bilateral|Phlebitis and thrombophlebitis of iliac vein, bilateral +C2883066|T047|PT|I80.213|ICD10CM|Phlebitis and thrombophlebitis of iliac vein, bilateral|Phlebitis and thrombophlebitis of iliac vein, bilateral +C2883067|T047|AB|I80.219|ICD10CM|Phlebitis and thrombophlebitis of unspecified iliac vein|Phlebitis and thrombophlebitis of unspecified iliac vein +C2883067|T047|PT|I80.219|ICD10CM|Phlebitis and thrombophlebitis of unspecified iliac vein|Phlebitis and thrombophlebitis of unspecified iliac vein +C0265068|T047|AB|I80.22|ICD10CM|Phlebitis and thrombophlebitis of popliteal vein|Phlebitis and thrombophlebitis of popliteal vein +C0265068|T047|HT|I80.22|ICD10CM|Phlebitis and thrombophlebitis of popliteal vein|Phlebitis and thrombophlebitis of popliteal vein +C2883068|T047|AB|I80.221|ICD10CM|Phlebitis and thrombophlebitis of right popliteal vein|Phlebitis and thrombophlebitis of right popliteal vein +C2883068|T047|PT|I80.221|ICD10CM|Phlebitis and thrombophlebitis of right popliteal vein|Phlebitis and thrombophlebitis of right popliteal vein +C2883069|T047|AB|I80.222|ICD10CM|Phlebitis and thrombophlebitis of left popliteal vein|Phlebitis and thrombophlebitis of left popliteal vein +C2883069|T047|PT|I80.222|ICD10CM|Phlebitis and thrombophlebitis of left popliteal vein|Phlebitis and thrombophlebitis of left popliteal vein +C2883070|T047|AB|I80.223|ICD10CM|Phlebitis and thrombophlebitis of popliteal vein, bilateral|Phlebitis and thrombophlebitis of popliteal vein, bilateral +C2883070|T047|PT|I80.223|ICD10CM|Phlebitis and thrombophlebitis of popliteal vein, bilateral|Phlebitis and thrombophlebitis of popliteal vein, bilateral +C2883071|T047|AB|I80.229|ICD10CM|Phlebitis and thrombophlebitis of unspecified popliteal vein|Phlebitis and thrombophlebitis of unspecified popliteal vein +C2883071|T047|PT|I80.229|ICD10CM|Phlebitis and thrombophlebitis of unspecified popliteal vein|Phlebitis and thrombophlebitis of unspecified popliteal vein +C5141133|T047|ET|I80.23|ICD10CM|Phlebitis and thrombophlebitis of anterior tibial vein|Phlebitis and thrombophlebitis of anterior tibial vein +C5141134|T047|ET|I80.23|ICD10CM|Phlebitis and thrombophlebitis of posterior tibial vein|Phlebitis and thrombophlebitis of posterior tibial vein +C0265067|T047|AB|I80.23|ICD10CM|Phlebitis and thrombophlebitis of tibial vein|Phlebitis and thrombophlebitis of tibial vein +C0265067|T047|HT|I80.23|ICD10CM|Phlebitis and thrombophlebitis of tibial vein|Phlebitis and thrombophlebitis of tibial vein +C2883072|T047|AB|I80.231|ICD10CM|Phlebitis and thrombophlebitis of right tibial vein|Phlebitis and thrombophlebitis of right tibial vein +C2883072|T047|PT|I80.231|ICD10CM|Phlebitis and thrombophlebitis of right tibial vein|Phlebitis and thrombophlebitis of right tibial vein +C2883073|T047|AB|I80.232|ICD10CM|Phlebitis and thrombophlebitis of left tibial vein|Phlebitis and thrombophlebitis of left tibial vein +C2883073|T047|PT|I80.232|ICD10CM|Phlebitis and thrombophlebitis of left tibial vein|Phlebitis and thrombophlebitis of left tibial vein +C2883074|T047|AB|I80.233|ICD10CM|Phlebitis and thrombophlebitis of tibial vein, bilateral|Phlebitis and thrombophlebitis of tibial vein, bilateral +C2883074|T047|PT|I80.233|ICD10CM|Phlebitis and thrombophlebitis of tibial vein, bilateral|Phlebitis and thrombophlebitis of tibial vein, bilateral +C2883075|T047|AB|I80.239|ICD10CM|Phlebitis and thrombophlebitis of unspecified tibial vein|Phlebitis and thrombophlebitis of unspecified tibial vein +C2883075|T047|PT|I80.239|ICD10CM|Phlebitis and thrombophlebitis of unspecified tibial vein|Phlebitis and thrombophlebitis of unspecified tibial vein +C5140813|T047|AB|I80.24|ICD10CM|Phlebitis and thrombophlebitis of peroneal vein|Phlebitis and thrombophlebitis of peroneal vein +C5140813|T047|HT|I80.24|ICD10CM|Phlebitis and thrombophlebitis of peroneal vein|Phlebitis and thrombophlebitis of peroneal vein +C5140814|T047|AB|I80.241|ICD10CM|Phlebitis and thrombophlebitis of right peroneal vein|Phlebitis and thrombophlebitis of right peroneal vein +C5140814|T047|PT|I80.241|ICD10CM|Phlebitis and thrombophlebitis of right peroneal vein|Phlebitis and thrombophlebitis of right peroneal vein +C5140815|T047|AB|I80.242|ICD10CM|Phlebitis and thrombophlebitis of left peroneal vein|Phlebitis and thrombophlebitis of left peroneal vein +C5140815|T047|PT|I80.242|ICD10CM|Phlebitis and thrombophlebitis of left peroneal vein|Phlebitis and thrombophlebitis of left peroneal vein +C5140816|T047|AB|I80.243|ICD10CM|Phlebitis and thrombophlebitis of peroneal vein, bilateral|Phlebitis and thrombophlebitis of peroneal vein, bilateral +C5140816|T047|PT|I80.243|ICD10CM|Phlebitis and thrombophlebitis of peroneal vein, bilateral|Phlebitis and thrombophlebitis of peroneal vein, bilateral +C5140813|T047|AB|I80.249|ICD10CM|Phlebitis and thrombophlebitis of unspecified peroneal vein|Phlebitis and thrombophlebitis of unspecified peroneal vein +C5140813|T047|PT|I80.249|ICD10CM|Phlebitis and thrombophlebitis of unspecified peroneal vein|Phlebitis and thrombophlebitis of unspecified peroneal vein +C5140817|T047|AB|I80.25|ICD10CM|Phlebitis and thrombophlebitis of calf muscular vein|Phlebitis and thrombophlebitis of calf muscular vein +C5140817|T047|HT|I80.25|ICD10CM|Phlebitis and thrombophlebitis of calf muscular vein|Phlebitis and thrombophlebitis of calf muscular vein +C5140817|T047|ET|I80.25|ICD10CM|Phlebitis and thrombophlebitis of calf muscular vein, NOS|Phlebitis and thrombophlebitis of calf muscular vein, NOS +C5141135|T047|ET|I80.25|ICD10CM|Phlebitis and thrombophlebitis of gastrocnemial vein|Phlebitis and thrombophlebitis of gastrocnemial vein +C5141136|T047|ET|I80.25|ICD10CM|Phlebitis and thrombophlebitis of soleal vein|Phlebitis and thrombophlebitis of soleal vein +C5140818|T047|AB|I80.251|ICD10CM|Phlebitis and thrombophlebitis of right calf muscular vein|Phlebitis and thrombophlebitis of right calf muscular vein +C5140818|T047|PT|I80.251|ICD10CM|Phlebitis and thrombophlebitis of right calf muscular vein|Phlebitis and thrombophlebitis of right calf muscular vein +C5140819|T047|AB|I80.252|ICD10CM|Phlebitis and thrombophlebitis of left calf muscular vein|Phlebitis and thrombophlebitis of left calf muscular vein +C5140819|T047|PT|I80.252|ICD10CM|Phlebitis and thrombophlebitis of left calf muscular vein|Phlebitis and thrombophlebitis of left calf muscular vein +C5140820|T047|AB|I80.253|ICD10CM|Phlebitis and thombophlb of calf muscular vein, bilateral|Phlebitis and thombophlb of calf muscular vein, bilateral +C5140820|T047|PT|I80.253|ICD10CM|Phlebitis and thrombophlebitis of calf muscular vein, bilateral|Phlebitis and thrombophlebitis of calf muscular vein, bilateral +C5140817|T047|AB|I80.259|ICD10CM|Phlebitis and thombophlb of unspecified calf muscular vein|Phlebitis and thombophlb of unspecified calf muscular vein +C5140817|T047|PT|I80.259|ICD10CM|Phlebitis and thrombophlebitis of unspecified calf muscular vein|Phlebitis and thrombophlebitis of unspecified calf muscular vein +C0155770|T047|AB|I80.29|ICD10CM|Phlebitis and thrombophlebitis of deep vessels of low extrm|Phlebitis and thrombophlebitis of deep vessels of low extrm +C0155770|T047|HT|I80.29|ICD10CM|Phlebitis and thrombophlebitis of other deep vessels of lower extremities|Phlebitis and thrombophlebitis of other deep vessels of lower extremities +C2883076|T047|AB|I80.291|ICD10CM|Phlebitis and thombophlb of deep vessels of r low extrem|Phlebitis and thombophlb of deep vessels of r low extrem +C2883076|T047|PT|I80.291|ICD10CM|Phlebitis and thrombophlebitis of other deep vessels of right lower extremity|Phlebitis and thrombophlebitis of other deep vessels of right lower extremity +C2883077|T047|AB|I80.292|ICD10CM|Phlebitis and thombophlb of deep vessels of l low extrem|Phlebitis and thombophlb of deep vessels of l low extrem +C2883077|T047|PT|I80.292|ICD10CM|Phlebitis and thrombophlebitis of other deep vessels of left lower extremity|Phlebitis and thrombophlebitis of other deep vessels of left lower extremity +C2883078|T047|AB|I80.293|ICD10CM|Phlebitis and thombophlb of deep vessels of low extrm, bi|Phlebitis and thombophlb of deep vessels of low extrm, bi +C2883078|T047|PT|I80.293|ICD10CM|Phlebitis and thrombophlebitis of other deep vessels of lower extremity, bilateral|Phlebitis and thrombophlebitis of other deep vessels of lower extremity, bilateral +C2883079|T047|AB|I80.299|ICD10CM|Phlebitis and thombophlb of deep vessels of unsp low extrm|Phlebitis and thombophlb of deep vessels of unsp low extrm +C2883079|T047|PT|I80.299|ICD10CM|Phlebitis and thrombophlebitis of other deep vessels of unspecified lower extremity|Phlebitis and thrombophlebitis of other deep vessels of unspecified lower extremity +C0340712|T047|AB|I80.3|ICD10CM|Phlebitis and thrombophlebitis of lower extremities, unsp|Phlebitis and thrombophlebitis of lower extremities, unsp +C0340712|T047|PT|I80.3|ICD10CM|Phlebitis and thrombophlebitis of lower extremities, unspecified|Phlebitis and thrombophlebitis of lower extremities, unspecified +C0340712|T047|PT|I80.3|ICD10|Phlebitis and thrombophlebitis of lower extremities, unspecified|Phlebitis and thrombophlebitis of lower extremities, unspecified +C0340692|T047|PT|I80.8|ICD10|Phlebitis and thrombophlebitis of other sites|Phlebitis and thrombophlebitis of other sites +C0340692|T047|PT|I80.8|ICD10CM|Phlebitis and thrombophlebitis of other sites|Phlebitis and thrombophlebitis of other sites +C0340692|T047|AB|I80.8|ICD10CM|Phlebitis and thrombophlebitis of other sites|Phlebitis and thrombophlebitis of other sites +C1367972|T047|PT|I80.9|ICD10|Phlebitis and thrombophlebitis of unspecified site|Phlebitis and thrombophlebitis of unspecified site +C1367972|T047|PT|I80.9|ICD10CM|Phlebitis and thrombophlebitis of unspecified site|Phlebitis and thrombophlebitis of unspecified site +C1367972|T047|AB|I80.9|ICD10CM|Phlebitis and thrombophlebitis of unspecified site|Phlebitis and thrombophlebitis of unspecified site +C0265029|T047|ET|I81|ICD10CM|Portal (vein) obstruction|Portal (vein) obstruction +C0155773|T047|PT|I81|ICD10CM|Portal vein thrombosis|Portal vein thrombosis +C0155773|T047|AB|I81|ICD10CM|Portal vein thrombosis|Portal vein thrombosis +C0155773|T047|PT|I81|ICD10|Portal vein thrombosis|Portal vein thrombosis +C0155774|T047|HT|I82|ICD10|Other venous embolism and thrombosis|Other venous embolism and thrombosis +C0155774|T047|HT|I82|ICD10CM|Other venous embolism and thrombosis|Other venous embolism and thrombosis +C0155774|T047|AB|I82|ICD10CM|Other venous embolism and thrombosis|Other venous embolism and thrombosis +C0856761|T047|PT|I82.0|ICD10|Budd-Chiari syndrome|Budd-Chiari syndrome +C0856761|T047|PT|I82.0|ICD10CM|Budd-Chiari syndrome|Budd-Chiari syndrome +C0856761|T047|AB|I82.0|ICD10CM|Budd-Chiari syndrome|Budd-Chiari syndrome +C0019154|T047|ET|I82.0|ICD10CM|Hepatic vein thrombosis|Hepatic vein thrombosis +C0152250|T047|PT|I82.1|ICD10CM|Thrombophlebitis migrans|Thrombophlebitis migrans +C0152250|T047|AB|I82.1|ICD10CM|Thrombophlebitis migrans|Thrombophlebitis migrans +C0152250|T047|PT|I82.1|ICD10|Thrombophlebitis migrans|Thrombophlebitis migrans +C0155775|T046|PT|I82.2|ICD10|Embolism and thrombosis of vena cava|Embolism and thrombosis of vena cava +C2883080|T047|AB|I82.2|ICD10CM|Embolism and thrombosis of vena cava and oth thoracic veins|Embolism and thrombosis of vena cava and oth thoracic veins +C2883080|T047|HT|I82.2|ICD10CM|Embolism and thrombosis of vena cava and other thoracic veins|Embolism and thrombosis of vena cava and other thoracic veins +C2883081|T046|AB|I82.21|ICD10CM|Embolism and thrombosis of superior vena cava|Embolism and thrombosis of superior vena cava +C2883081|T046|HT|I82.21|ICD10CM|Embolism and thrombosis of superior vena cava|Embolism and thrombosis of superior vena cava +C2883082|T047|AB|I82.210|ICD10CM|Acute embolism and thrombosis of superior vena cava|Acute embolism and thrombosis of superior vena cava +C2883082|T047|PT|I82.210|ICD10CM|Acute embolism and thrombosis of superior vena cava|Acute embolism and thrombosis of superior vena cava +C2883081|T046|ET|I82.210|ICD10CM|Embolism and thrombosis of superior vena cava NOS|Embolism and thrombosis of superior vena cava NOS +C2883083|T047|AB|I82.211|ICD10CM|Chronic embolism and thrombosis of superior vena cava|Chronic embolism and thrombosis of superior vena cava +C2883083|T047|PT|I82.211|ICD10CM|Chronic embolism and thrombosis of superior vena cava|Chronic embolism and thrombosis of superior vena cava +C2712843|T046|AB|I82.22|ICD10CM|Embolism and thrombosis of inferior vena cava|Embolism and thrombosis of inferior vena cava +C2712843|T046|HT|I82.22|ICD10CM|Embolism and thrombosis of inferior vena cava|Embolism and thrombosis of inferior vena cava +C2883084|T046|AB|I82.220|ICD10CM|Acute embolism and thrombosis of inferior vena cava|Acute embolism and thrombosis of inferior vena cava +C2883084|T046|PT|I82.220|ICD10CM|Acute embolism and thrombosis of inferior vena cava|Acute embolism and thrombosis of inferior vena cava +C2712843|T046|ET|I82.220|ICD10CM|Embolism and thrombosis of inferior vena cava NOS|Embolism and thrombosis of inferior vena cava NOS +C2883085|T046|AB|I82.221|ICD10CM|Chronic embolism and thrombosis of inferior vena cava|Chronic embolism and thrombosis of inferior vena cava +C2883085|T046|PT|I82.221|ICD10CM|Chronic embolism and thrombosis of inferior vena cava|Chronic embolism and thrombosis of inferior vena cava +C2883086|T046|ET|I82.29|ICD10CM|Embolism and thrombosis of brachiocephalic (innominate) vein|Embolism and thrombosis of brachiocephalic (innominate) vein +C2883087|T047|AB|I82.29|ICD10CM|Embolism and thrombosis of other thoracic veins|Embolism and thrombosis of other thoracic veins +C2883087|T047|HT|I82.29|ICD10CM|Embolism and thrombosis of other thoracic veins|Embolism and thrombosis of other thoracic veins +C2883088|T047|AB|I82.290|ICD10CM|Acute embolism and thrombosis of other thoracic veins|Acute embolism and thrombosis of other thoracic veins +C2883088|T047|PT|I82.290|ICD10CM|Acute embolism and thrombosis of other thoracic veins|Acute embolism and thrombosis of other thoracic veins +C2883089|T047|AB|I82.291|ICD10CM|Chronic embolism and thrombosis of other thoracic veins|Chronic embolism and thrombosis of other thoracic veins +C2883089|T047|PT|I82.291|ICD10CM|Chronic embolism and thrombosis of other thoracic veins|Chronic embolism and thrombosis of other thoracic veins +C0155776|T046|PT|I82.3|ICD10|Embolism and thrombosis of renal vein|Embolism and thrombosis of renal vein +C0155776|T046|PT|I82.3|ICD10CM|Embolism and thrombosis of renal vein|Embolism and thrombosis of renal vein +C0155776|T046|AB|I82.3|ICD10CM|Embolism and thrombosis of renal vein|Embolism and thrombosis of renal vein +C2883090|T047|AB|I82.4|ICD10CM|Acute embolism and thrombosis of deep veins of low extrm|Acute embolism and thrombosis of deep veins of low extrm +C2883090|T047|HT|I82.4|ICD10CM|Acute embolism and thrombosis of deep veins of lower extremity|Acute embolism and thrombosis of deep veins of lower extremity +C2883091|T046|AB|I82.40|ICD10CM|Acute embolism and thombos unsp deep veins of low extrm|Acute embolism and thombos unsp deep veins of low extrm +C2883091|T046|HT|I82.40|ICD10CM|Acute embolism and thrombosis of unspecified deep veins of lower extremity|Acute embolism and thrombosis of unspecified deep veins of lower extremity +C0149871|T047|ET|I82.40|ICD10CM|Deep vein thrombosis NOS|Deep vein thrombosis NOS +C0149871|T047|ET|I82.40|ICD10CM|DVT NOS|DVT NOS +C2976976|T046|AB|I82.401|ICD10CM|Acute embolism and thombos unsp deep veins of r low extrem|Acute embolism and thombos unsp deep veins of r low extrem +C2976976|T046|PT|I82.401|ICD10CM|Acute embolism and thrombosis of unspecified deep veins of right lower extremity|Acute embolism and thrombosis of unspecified deep veins of right lower extremity +C2976977|T046|AB|I82.402|ICD10CM|Acute embolism and thombos unsp deep veins of l low extrem|Acute embolism and thombos unsp deep veins of l low extrem +C2976977|T046|PT|I82.402|ICD10CM|Acute embolism and thrombosis of unspecified deep veins of left lower extremity|Acute embolism and thrombosis of unspecified deep veins of left lower extremity +C2976978|T046|AB|I82.403|ICD10CM|Acute embolism and thombos unsp deep veins of low extrm, bi|Acute embolism and thombos unsp deep veins of low extrm, bi +C2976978|T046|PT|I82.403|ICD10CM|Acute embolism and thrombosis of unspecified deep veins of lower extremity, bilateral|Acute embolism and thrombosis of unspecified deep veins of lower extremity, bilateral +C2976979|T046|AB|I82.409|ICD10CM|Acute embolism and thombos unsp deep vn unsp lower extremity|Acute embolism and thombos unsp deep vn unsp lower extremity +C2976979|T046|PT|I82.409|ICD10CM|Acute embolism and thrombosis of unspecified deep veins of unspecified lower extremity|Acute embolism and thrombosis of unspecified deep veins of unspecified lower extremity +C5141137|T047|ET|I82.41|ICD10CM|Acute embolism and thrombosis of common femoral vein|Acute embolism and thrombosis of common femoral vein +C5141138|T047|ET|I82.41|ICD10CM|Acute embolism and thrombosis of deep femoral vein|Acute embolism and thrombosis of deep femoral vein +C2883092|T047|AB|I82.41|ICD10CM|Acute embolism and thrombosis of femoral vein|Acute embolism and thrombosis of femoral vein +C2883092|T047|HT|I82.41|ICD10CM|Acute embolism and thrombosis of femoral vein|Acute embolism and thrombosis of femoral vein +C2883093|T047|AB|I82.411|ICD10CM|Acute embolism and thrombosis of right femoral vein|Acute embolism and thrombosis of right femoral vein +C2883093|T047|PT|I82.411|ICD10CM|Acute embolism and thrombosis of right femoral vein|Acute embolism and thrombosis of right femoral vein +C2883094|T047|AB|I82.412|ICD10CM|Acute embolism and thrombosis of left femoral vein|Acute embolism and thrombosis of left femoral vein +C2883094|T047|PT|I82.412|ICD10CM|Acute embolism and thrombosis of left femoral vein|Acute embolism and thrombosis of left femoral vein +C2883095|T047|AB|I82.413|ICD10CM|Acute embolism and thrombosis of femoral vein, bilateral|Acute embolism and thrombosis of femoral vein, bilateral +C2883095|T047|PT|I82.413|ICD10CM|Acute embolism and thrombosis of femoral vein, bilateral|Acute embolism and thrombosis of femoral vein, bilateral +C2883096|T047|AB|I82.419|ICD10CM|Acute embolism and thrombosis of unspecified femoral vein|Acute embolism and thrombosis of unspecified femoral vein +C2883096|T047|PT|I82.419|ICD10CM|Acute embolism and thrombosis of unspecified femoral vein|Acute embolism and thrombosis of unspecified femoral vein +C5141139|T047|ET|I82.42|ICD10CM|Acute embolism and thrombosis of common iliac vein|Acute embolism and thrombosis of common iliac vein +C5141140|T047|ET|I82.42|ICD10CM|Acute embolism and thrombosis of external iliac vein|Acute embolism and thrombosis of external iliac vein +C2883097|T047|AB|I82.42|ICD10CM|Acute embolism and thrombosis of iliac vein|Acute embolism and thrombosis of iliac vein +C2883097|T047|HT|I82.42|ICD10CM|Acute embolism and thrombosis of iliac vein|Acute embolism and thrombosis of iliac vein +C5141141|T047|ET|I82.42|ICD10CM|Acute embolism and thrombosis of internal iliac vein|Acute embolism and thrombosis of internal iliac vein +C2883098|T047|AB|I82.421|ICD10CM|Acute embolism and thrombosis of right iliac vein|Acute embolism and thrombosis of right iliac vein +C2883098|T047|PT|I82.421|ICD10CM|Acute embolism and thrombosis of right iliac vein|Acute embolism and thrombosis of right iliac vein +C2883099|T047|AB|I82.422|ICD10CM|Acute embolism and thrombosis of left iliac vein|Acute embolism and thrombosis of left iliac vein +C2883099|T047|PT|I82.422|ICD10CM|Acute embolism and thrombosis of left iliac vein|Acute embolism and thrombosis of left iliac vein +C2883100|T047|AB|I82.423|ICD10CM|Acute embolism and thrombosis of iliac vein, bilateral|Acute embolism and thrombosis of iliac vein, bilateral +C2883100|T047|PT|I82.423|ICD10CM|Acute embolism and thrombosis of iliac vein, bilateral|Acute embolism and thrombosis of iliac vein, bilateral +C2883101|T047|AB|I82.429|ICD10CM|Acute embolism and thrombosis of unspecified iliac vein|Acute embolism and thrombosis of unspecified iliac vein +C2883101|T047|PT|I82.429|ICD10CM|Acute embolism and thrombosis of unspecified iliac vein|Acute embolism and thrombosis of unspecified iliac vein +C2883102|T047|AB|I82.43|ICD10CM|Acute embolism and thrombosis of popliteal vein|Acute embolism and thrombosis of popliteal vein +C2883102|T047|HT|I82.43|ICD10CM|Acute embolism and thrombosis of popliteal vein|Acute embolism and thrombosis of popliteal vein +C2883103|T047|AB|I82.431|ICD10CM|Acute embolism and thrombosis of right popliteal vein|Acute embolism and thrombosis of right popliteal vein +C2883103|T047|PT|I82.431|ICD10CM|Acute embolism and thrombosis of right popliteal vein|Acute embolism and thrombosis of right popliteal vein +C2883104|T047|AB|I82.432|ICD10CM|Acute embolism and thrombosis of left popliteal vein|Acute embolism and thrombosis of left popliteal vein +C2883104|T047|PT|I82.432|ICD10CM|Acute embolism and thrombosis of left popliteal vein|Acute embolism and thrombosis of left popliteal vein +C2883105|T047|AB|I82.433|ICD10CM|Acute embolism and thrombosis of popliteal vein, bilateral|Acute embolism and thrombosis of popliteal vein, bilateral +C2883105|T047|PT|I82.433|ICD10CM|Acute embolism and thrombosis of popliteal vein, bilateral|Acute embolism and thrombosis of popliteal vein, bilateral +C2883106|T047|AB|I82.439|ICD10CM|Acute embolism and thrombosis of unspecified popliteal vein|Acute embolism and thrombosis of unspecified popliteal vein +C2883106|T047|PT|I82.439|ICD10CM|Acute embolism and thrombosis of unspecified popliteal vein|Acute embolism and thrombosis of unspecified popliteal vein +C5141142|T047|ET|I82.44|ICD10CM|Acute embolism and thrombosis of anterior tibial vein|Acute embolism and thrombosis of anterior tibial vein +C5141143|T047|ET|I82.44|ICD10CM|Acute embolism and thrombosis of posterior tibial vein|Acute embolism and thrombosis of posterior tibial vein +C2883107|T047|AB|I82.44|ICD10CM|Acute embolism and thrombosis of tibial vein|Acute embolism and thrombosis of tibial vein +C2883107|T047|HT|I82.44|ICD10CM|Acute embolism and thrombosis of tibial vein|Acute embolism and thrombosis of tibial vein +C2883108|T047|AB|I82.441|ICD10CM|Acute embolism and thrombosis of right tibial vein|Acute embolism and thrombosis of right tibial vein +C2883108|T047|PT|I82.441|ICD10CM|Acute embolism and thrombosis of right tibial vein|Acute embolism and thrombosis of right tibial vein +C2883109|T047|AB|I82.442|ICD10CM|Acute embolism and thrombosis of left tibial vein|Acute embolism and thrombosis of left tibial vein +C2883109|T047|PT|I82.442|ICD10CM|Acute embolism and thrombosis of left tibial vein|Acute embolism and thrombosis of left tibial vein +C2883110|T047|AB|I82.443|ICD10CM|Acute embolism and thrombosis of tibial vein, bilateral|Acute embolism and thrombosis of tibial vein, bilateral +C2883110|T047|PT|I82.443|ICD10CM|Acute embolism and thrombosis of tibial vein, bilateral|Acute embolism and thrombosis of tibial vein, bilateral +C2883111|T047|AB|I82.449|ICD10CM|Acute embolism and thrombosis of unspecified tibial vein|Acute embolism and thrombosis of unspecified tibial vein +C2883111|T047|PT|I82.449|ICD10CM|Acute embolism and thrombosis of unspecified tibial vein|Acute embolism and thrombosis of unspecified tibial vein +C5140821|T047|AB|I82.45|ICD10CM|Acute embolism and thrombosis of peroneal vein|Acute embolism and thrombosis of peroneal vein +C5140821|T047|HT|I82.45|ICD10CM|Acute embolism and thrombosis of peroneal vein|Acute embolism and thrombosis of peroneal vein +C5140822|T047|AB|I82.451|ICD10CM|Acute embolism and thrombosis of right peroneal vein|Acute embolism and thrombosis of right peroneal vein +C5140822|T047|PT|I82.451|ICD10CM|Acute embolism and thrombosis of right peroneal vein|Acute embolism and thrombosis of right peroneal vein +C5140823|T047|AB|I82.452|ICD10CM|Acute embolism and thrombosis of left peroneal vein|Acute embolism and thrombosis of left peroneal vein +C5140823|T047|PT|I82.452|ICD10CM|Acute embolism and thrombosis of left peroneal vein|Acute embolism and thrombosis of left peroneal vein +C5140824|T047|AB|I82.453|ICD10CM|Acute embolism and thrombosis of peroneal vein, bilateral|Acute embolism and thrombosis of peroneal vein, bilateral +C5140824|T047|PT|I82.453|ICD10CM|Acute embolism and thrombosis of peroneal vein, bilateral|Acute embolism and thrombosis of peroneal vein, bilateral +C5140821|T047|AB|I82.459|ICD10CM|Acute embolism and thrombosis of unspecified peroneal vein|Acute embolism and thrombosis of unspecified peroneal vein +C5140821|T047|PT|I82.459|ICD10CM|Acute embolism and thrombosis of unspecified peroneal vein|Acute embolism and thrombosis of unspecified peroneal vein +C5140825|T047|AB|I82.46|ICD10CM|Acute embolism and thrombosis of calf muscular vein|Acute embolism and thrombosis of calf muscular vein +C5140825|T047|HT|I82.46|ICD10CM|Acute embolism and thrombosis of calf muscular vein|Acute embolism and thrombosis of calf muscular vein +C5140825|T047|ET|I82.46|ICD10CM|Acute embolism and thrombosis of calf muscular vein, NOS|Acute embolism and thrombosis of calf muscular vein, NOS +C5141144|T047|ET|I82.46|ICD10CM|Acute embolism and thrombosis of gastrocnemial vein|Acute embolism and thrombosis of gastrocnemial vein +C5141145|T047|ET|I82.46|ICD10CM|Acute embolism and thrombosis of soleal vein|Acute embolism and thrombosis of soleal vein +C5140826|T047|AB|I82.461|ICD10CM|Acute embolism and thrombosis of right calf muscular vein|Acute embolism and thrombosis of right calf muscular vein +C5140826|T047|PT|I82.461|ICD10CM|Acute embolism and thrombosis of right calf muscular vein|Acute embolism and thrombosis of right calf muscular vein +C5140827|T047|AB|I82.462|ICD10CM|Acute embolism and thrombosis of left calf muscular vein|Acute embolism and thrombosis of left calf muscular vein +C5140827|T047|PT|I82.462|ICD10CM|Acute embolism and thrombosis of left calf muscular vein|Acute embolism and thrombosis of left calf muscular vein +C5140828|T047|AB|I82.463|ICD10CM|Acute embolism and thombos of calf muscular vein, bilateral|Acute embolism and thombos of calf muscular vein, bilateral +C5140828|T047|PT|I82.463|ICD10CM|Acute embolism and thrombosis of calf muscular vein, bilateral|Acute embolism and thrombosis of calf muscular vein, bilateral +C5140825|T047|AB|I82.469|ICD10CM|Acute embolism and thombos unsp calf muscular vein|Acute embolism and thombos unsp calf muscular vein +C5140825|T047|PT|I82.469|ICD10CM|Acute embolism and thrombosis of unspecified calf muscular vein|Acute embolism and thrombosis of unspecified calf muscular vein +C2883112|T046|AB|I82.49|ICD10CM|Acute embolism and thrombosis of deep vein of low extrm|Acute embolism and thrombosis of deep vein of low extrm +C2883112|T046|HT|I82.49|ICD10CM|Acute embolism and thrombosis of other specified deep vein of lower extremity|Acute embolism and thrombosis of other specified deep vein of lower extremity +C2883113|T046|AB|I82.491|ICD10CM|Acute embolism and thrombosis of deep vein of r low extrem|Acute embolism and thrombosis of deep vein of r low extrem +C2883113|T046|PT|I82.491|ICD10CM|Acute embolism and thrombosis of other specified deep vein of right lower extremity|Acute embolism and thrombosis of other specified deep vein of right lower extremity +C2883114|T046|AB|I82.492|ICD10CM|Acute embolism and thrombosis of deep vein of l low extrem|Acute embolism and thrombosis of deep vein of l low extrem +C2883114|T046|PT|I82.492|ICD10CM|Acute embolism and thrombosis of other specified deep vein of left lower extremity|Acute embolism and thrombosis of other specified deep vein of left lower extremity +C2883115|T046|AB|I82.493|ICD10CM|Acute embolism and thombos of deep vein of low extrm, bi|Acute embolism and thombos of deep vein of low extrm, bi +C2883115|T046|PT|I82.493|ICD10CM|Acute embolism and thrombosis of other specified deep vein of lower extremity, bilateral|Acute embolism and thrombosis of other specified deep vein of lower extremity, bilateral +C2883116|T046|AB|I82.499|ICD10CM|Acute embolism and thrombosis of deep vein of unsp low extrm|Acute embolism and thrombosis of deep vein of unsp low extrm +C2883116|T046|PT|I82.499|ICD10CM|Acute embolism and thrombosis of other specified deep vein of unspecified lower extremity|Acute embolism and thrombosis of other specified deep vein of unspecified lower extremity +C2976989|T046|AB|I82.4Y|ICD10CM|Acute emblsm and thombos unsp deep veins of prox low extrm|Acute emblsm and thombos unsp deep veins of prox low extrm +C2976987|T046|ET|I82.4Y|ICD10CM|Acute embolism and thrombosis of deep vein of thigh NOS|Acute embolism and thrombosis of deep vein of thigh NOS +C2976988|T046|ET|I82.4Y|ICD10CM|Acute embolism and thrombosis of deep vein of upper leg NOS|Acute embolism and thrombosis of deep vein of upper leg NOS +C2976989|T046|HT|I82.4Y|ICD10CM|Acute embolism and thrombosis of unspecified deep veins of proximal lower extremity|Acute embolism and thrombosis of unspecified deep veins of proximal lower extremity +C2976990|T046|AB|I82.4Y1|ICD10CM|Ac emblsm and thombos unsp deep veins of r prox low extrm|Ac emblsm and thombos unsp deep veins of r prox low extrm +C2976990|T046|PT|I82.4Y1|ICD10CM|Acute embolism and thrombosis of unspecified deep veins of right proximal lower extremity|Acute embolism and thrombosis of unspecified deep veins of right proximal lower extremity +C2976991|T046|AB|I82.4Y2|ICD10CM|Ac emblsm and thombos unsp deep veins of left prox low extrm|Ac emblsm and thombos unsp deep veins of left prox low extrm +C2976991|T046|PT|I82.4Y2|ICD10CM|Acute embolism and thrombosis of unspecified deep veins of left proximal lower extremity|Acute embolism and thrombosis of unspecified deep veins of left proximal lower extremity +C2976992|T046|AB|I82.4Y3|ICD10CM|Ac emblsm and thombos unsp deep veins of prox low extrm, bi|Ac emblsm and thombos unsp deep veins of prox low extrm, bi +C2976992|T046|PT|I82.4Y3|ICD10CM|Acute embolism and thrombosis of unspecified deep veins of proximal lower extremity, bilateral|Acute embolism and thrombosis of unspecified deep veins of proximal lower extremity, bilateral +C2976993|T046|AB|I82.4Y9|ICD10CM|Acute emblsm and thombos unsp deep vn unsp prox low extrm|Acute emblsm and thombos unsp deep vn unsp prox low extrm +C2976993|T046|PT|I82.4Y9|ICD10CM|Acute embolism and thrombosis of unspecified deep veins of unspecified proximal lower extremity|Acute embolism and thrombosis of unspecified deep veins of unspecified proximal lower extremity +C2976996|T046|AB|I82.4Z|ICD10CM|Acute emblsm and thombos unsp deep veins of distal low extrm|Acute emblsm and thombos unsp deep veins of distal low extrm +C2976994|T046|ET|I82.4Z|ICD10CM|Acute embolism and thrombosis of deep vein of calf NOS|Acute embolism and thrombosis of deep vein of calf NOS +C2976995|T046|ET|I82.4Z|ICD10CM|Acute embolism and thrombosis of deep vein of lower leg NOS|Acute embolism and thrombosis of deep vein of lower leg NOS +C2976996|T046|HT|I82.4Z|ICD10CM|Acute embolism and thrombosis of unspecified deep veins of distal lower extremity|Acute embolism and thrombosis of unspecified deep veins of distal lower extremity +C2976997|T046|AB|I82.4Z1|ICD10CM|Ac emblsm and thombos unsp deep veins of r dist low extrm|Ac emblsm and thombos unsp deep veins of r dist low extrm +C2976997|T046|PT|I82.4Z1|ICD10CM|Acute embolism and thrombosis of unspecified deep veins of right distal lower extremity|Acute embolism and thrombosis of unspecified deep veins of right distal lower extremity +C2976998|T046|AB|I82.4Z2|ICD10CM|Ac emblsm and thombos unsp deep veins of left dist low extrm|Ac emblsm and thombos unsp deep veins of left dist low extrm +C2976998|T046|PT|I82.4Z2|ICD10CM|Acute embolism and thrombosis of unspecified deep veins of left distal lower extremity|Acute embolism and thrombosis of unspecified deep veins of left distal lower extremity +C2976999|T046|AB|I82.4Z3|ICD10CM|Ac emblsm and thombos unsp deep veins of dist low extrm, bi|Ac emblsm and thombos unsp deep veins of dist low extrm, bi +C2976999|T046|PT|I82.4Z3|ICD10CM|Acute embolism and thrombosis of unspecified deep veins of distal lower extremity, bilateral|Acute embolism and thrombosis of unspecified deep veins of distal lower extremity, bilateral +C2977000|T046|AB|I82.4Z9|ICD10CM|Acute emblsm and thombos unsp deep vn unsp distal low extrm|Acute emblsm and thombos unsp deep vn unsp distal low extrm +C2977000|T046|PT|I82.4Z9|ICD10CM|Acute embolism and thrombosis of unspecified deep veins of unspecified distal lower extremity|Acute embolism and thrombosis of unspecified deep veins of unspecified distal lower extremity +C2883117|T047|AB|I82.5|ICD10CM|Chronic embolism and thrombosis of deep veins of low extrm|Chronic embolism and thrombosis of deep veins of low extrm +C2883117|T047|HT|I82.5|ICD10CM|Chronic embolism and thrombosis of deep veins of lower extremity|Chronic embolism and thrombosis of deep veins of lower extremity +C2883118|T047|AB|I82.50|ICD10CM|Chronic embolism and thombos unsp deep veins of low extrm|Chronic embolism and thombos unsp deep veins of low extrm +C2883118|T047|HT|I82.50|ICD10CM|Chronic embolism and thrombosis of unspecified deep veins of lower extremity|Chronic embolism and thrombosis of unspecified deep veins of lower extremity +C2977001|T047|AB|I82.501|ICD10CM|Chronic embolism and thombos unsp deep veins of r low extrem|Chronic embolism and thombos unsp deep veins of r low extrem +C2977001|T047|PT|I82.501|ICD10CM|Chronic embolism and thrombosis of unspecified deep veins of right lower extremity|Chronic embolism and thrombosis of unspecified deep veins of right lower extremity +C2977002|T047|AB|I82.502|ICD10CM|Chronic embolism and thombos unsp deep veins of l low extrem|Chronic embolism and thombos unsp deep veins of l low extrem +C2977002|T047|PT|I82.502|ICD10CM|Chronic embolism and thrombosis of unspecified deep veins of left lower extremity|Chronic embolism and thrombosis of unspecified deep veins of left lower extremity +C2977003|T047|AB|I82.503|ICD10CM|Chronic emblsm and thombos unsp deep veins of low extrm, bi|Chronic emblsm and thombos unsp deep veins of low extrm, bi +C2977003|T047|PT|I82.503|ICD10CM|Chronic embolism and thrombosis of unspecified deep veins of lower extremity, bilateral|Chronic embolism and thrombosis of unspecified deep veins of lower extremity, bilateral +C2977004|T047|AB|I82.509|ICD10CM|Chronic embolism and thombos unsp deep vn unsp low extrm|Chronic embolism and thombos unsp deep vn unsp low extrm +C2977004|T047|PT|I82.509|ICD10CM|Chronic embolism and thrombosis of unspecified deep veins of unspecified lower extremity|Chronic embolism and thrombosis of unspecified deep veins of unspecified lower extremity +C5141146|T047|ET|I82.51|ICD10CM|Chronic embolism and thrombosis of common femoral vein|Chronic embolism and thrombosis of common femoral vein +C5141147|T047|ET|I82.51|ICD10CM|Chronic embolism and thrombosis of deep femoral vein|Chronic embolism and thrombosis of deep femoral vein +C2883119|T047|AB|I82.51|ICD10CM|Chronic embolism and thrombosis of femoral vein|Chronic embolism and thrombosis of femoral vein +C2883119|T047|HT|I82.51|ICD10CM|Chronic embolism and thrombosis of femoral vein|Chronic embolism and thrombosis of femoral vein +C2883120|T047|AB|I82.511|ICD10CM|Chronic embolism and thrombosis of right femoral vein|Chronic embolism and thrombosis of right femoral vein +C2883120|T047|PT|I82.511|ICD10CM|Chronic embolism and thrombosis of right femoral vein|Chronic embolism and thrombosis of right femoral vein +C2883121|T047|AB|I82.512|ICD10CM|Chronic embolism and thrombosis of left femoral vein|Chronic embolism and thrombosis of left femoral vein +C2883121|T047|PT|I82.512|ICD10CM|Chronic embolism and thrombosis of left femoral vein|Chronic embolism and thrombosis of left femoral vein +C2883122|T047|AB|I82.513|ICD10CM|Chronic embolism and thrombosis of femoral vein, bilateral|Chronic embolism and thrombosis of femoral vein, bilateral +C2883122|T047|PT|I82.513|ICD10CM|Chronic embolism and thrombosis of femoral vein, bilateral|Chronic embolism and thrombosis of femoral vein, bilateral +C2883123|T047|AB|I82.519|ICD10CM|Chronic embolism and thrombosis of unspecified femoral vein|Chronic embolism and thrombosis of unspecified femoral vein +C2883123|T047|PT|I82.519|ICD10CM|Chronic embolism and thrombosis of unspecified femoral vein|Chronic embolism and thrombosis of unspecified femoral vein +C5141148|T047|ET|I82.52|ICD10CM|Chronic embolism and thrombosis of common iliac vein|Chronic embolism and thrombosis of common iliac vein +C5141149|T047|ET|I82.52|ICD10CM|Chronic embolism and thrombosis of external iliac vein|Chronic embolism and thrombosis of external iliac vein +C2883124|T047|AB|I82.52|ICD10CM|Chronic embolism and thrombosis of iliac vein|Chronic embolism and thrombosis of iliac vein +C2883124|T047|HT|I82.52|ICD10CM|Chronic embolism and thrombosis of iliac vein|Chronic embolism and thrombosis of iliac vein +C5141150|T047|ET|I82.52|ICD10CM|Chronic embolism and thrombosis of internal iliac vein|Chronic embolism and thrombosis of internal iliac vein +C2883125|T047|AB|I82.521|ICD10CM|Chronic embolism and thrombosis of right iliac vein|Chronic embolism and thrombosis of right iliac vein +C2883125|T047|PT|I82.521|ICD10CM|Chronic embolism and thrombosis of right iliac vein|Chronic embolism and thrombosis of right iliac vein +C2883126|T047|AB|I82.522|ICD10CM|Chronic embolism and thrombosis of left iliac vein|Chronic embolism and thrombosis of left iliac vein +C2883126|T047|PT|I82.522|ICD10CM|Chronic embolism and thrombosis of left iliac vein|Chronic embolism and thrombosis of left iliac vein +C2883127|T047|AB|I82.523|ICD10CM|Chronic embolism and thrombosis of iliac vein, bilateral|Chronic embolism and thrombosis of iliac vein, bilateral +C2883127|T047|PT|I82.523|ICD10CM|Chronic embolism and thrombosis of iliac vein, bilateral|Chronic embolism and thrombosis of iliac vein, bilateral +C2883128|T047|AB|I82.529|ICD10CM|Chronic embolism and thrombosis of unspecified iliac vein|Chronic embolism and thrombosis of unspecified iliac vein +C2883128|T047|PT|I82.529|ICD10CM|Chronic embolism and thrombosis of unspecified iliac vein|Chronic embolism and thrombosis of unspecified iliac vein +C2883129|T047|AB|I82.53|ICD10CM|Chronic embolism and thrombosis of popliteal vein|Chronic embolism and thrombosis of popliteal vein +C2883129|T047|HT|I82.53|ICD10CM|Chronic embolism and thrombosis of popliteal vein|Chronic embolism and thrombosis of popliteal vein +C2883130|T047|AB|I82.531|ICD10CM|Chronic embolism and thrombosis of right popliteal vein|Chronic embolism and thrombosis of right popliteal vein +C2883130|T047|PT|I82.531|ICD10CM|Chronic embolism and thrombosis of right popliteal vein|Chronic embolism and thrombosis of right popliteal vein +C2883131|T047|AB|I82.532|ICD10CM|Chronic embolism and thrombosis of left popliteal vein|Chronic embolism and thrombosis of left popliteal vein +C2883131|T047|PT|I82.532|ICD10CM|Chronic embolism and thrombosis of left popliteal vein|Chronic embolism and thrombosis of left popliteal vein +C2883132|T047|AB|I82.533|ICD10CM|Chronic embolism and thrombosis of popliteal vein, bilateral|Chronic embolism and thrombosis of popliteal vein, bilateral +C2883132|T047|PT|I82.533|ICD10CM|Chronic embolism and thrombosis of popliteal vein, bilateral|Chronic embolism and thrombosis of popliteal vein, bilateral +C2883133|T047|AB|I82.539|ICD10CM|Chronic embolism and thrombosis of unsp popliteal vein|Chronic embolism and thrombosis of unsp popliteal vein +C2883133|T047|PT|I82.539|ICD10CM|Chronic embolism and thrombosis of unspecified popliteal vein|Chronic embolism and thrombosis of unspecified popliteal vein +C5141151|T047|ET|I82.54|ICD10CM|Chronic embolism and thrombosis of anterior tibial vein|Chronic embolism and thrombosis of anterior tibial vein +C5141152|T047|ET|I82.54|ICD10CM|Chronic embolism and thrombosis of posterior tibial vein|Chronic embolism and thrombosis of posterior tibial vein +C2883134|T047|AB|I82.54|ICD10CM|Chronic embolism and thrombosis of tibial vein|Chronic embolism and thrombosis of tibial vein +C2883134|T047|HT|I82.54|ICD10CM|Chronic embolism and thrombosis of tibial vein|Chronic embolism and thrombosis of tibial vein +C2883135|T047|AB|I82.541|ICD10CM|Chronic embolism and thrombosis of right tibial vein|Chronic embolism and thrombosis of right tibial vein +C2883135|T047|PT|I82.541|ICD10CM|Chronic embolism and thrombosis of right tibial vein|Chronic embolism and thrombosis of right tibial vein +C2883136|T047|AB|I82.542|ICD10CM|Chronic embolism and thrombosis of left tibial vein|Chronic embolism and thrombosis of left tibial vein +C2883136|T047|PT|I82.542|ICD10CM|Chronic embolism and thrombosis of left tibial vein|Chronic embolism and thrombosis of left tibial vein +C2883137|T047|AB|I82.543|ICD10CM|Chronic embolism and thrombosis of tibial vein, bilateral|Chronic embolism and thrombosis of tibial vein, bilateral +C2883137|T047|PT|I82.543|ICD10CM|Chronic embolism and thrombosis of tibial vein, bilateral|Chronic embolism and thrombosis of tibial vein, bilateral +C2883138|T047|AB|I82.549|ICD10CM|Chronic embolism and thrombosis of unspecified tibial vein|Chronic embolism and thrombosis of unspecified tibial vein +C2883138|T047|PT|I82.549|ICD10CM|Chronic embolism and thrombosis of unspecified tibial vein|Chronic embolism and thrombosis of unspecified tibial vein +C5140829|T047|AB|I82.55|ICD10CM|Chronic embolism and thrombosis of peroneal vein|Chronic embolism and thrombosis of peroneal vein +C5140829|T047|HT|I82.55|ICD10CM|Chronic embolism and thrombosis of peroneal vein|Chronic embolism and thrombosis of peroneal vein +C5140830|T047|AB|I82.551|ICD10CM|Chronic embolism and thrombosis of right peroneal vein|Chronic embolism and thrombosis of right peroneal vein +C5140830|T047|PT|I82.551|ICD10CM|Chronic embolism and thrombosis of right peroneal vein|Chronic embolism and thrombosis of right peroneal vein +C5140831|T047|AB|I82.552|ICD10CM|Chronic embolism and thrombosis of left peroneal vein|Chronic embolism and thrombosis of left peroneal vein +C5140831|T047|PT|I82.552|ICD10CM|Chronic embolism and thrombosis of left peroneal vein|Chronic embolism and thrombosis of left peroneal vein +C5140832|T047|AB|I82.553|ICD10CM|Chronic embolism and thrombosis of peroneal vein, bilateral|Chronic embolism and thrombosis of peroneal vein, bilateral +C5140832|T047|PT|I82.553|ICD10CM|Chronic embolism and thrombosis of peroneal vein, bilateral|Chronic embolism and thrombosis of peroneal vein, bilateral +C5140829|T047|AB|I82.559|ICD10CM|Chronic embolism and thrombosis of unspecified peroneal vein|Chronic embolism and thrombosis of unspecified peroneal vein +C5140829|T047|PT|I82.559|ICD10CM|Chronic embolism and thrombosis of unspecified peroneal vein|Chronic embolism and thrombosis of unspecified peroneal vein +C5140833|T047|AB|I82.56|ICD10CM|Chronic embolism and thrombosis of calf muscular vein|Chronic embolism and thrombosis of calf muscular vein +C5140833|T047|HT|I82.56|ICD10CM|Chronic embolism and thrombosis of calf muscular vein|Chronic embolism and thrombosis of calf muscular vein +C5140833|T047|ET|I82.56|ICD10CM|Chronic embolism and thrombosis of calf muscular vein NOS|Chronic embolism and thrombosis of calf muscular vein NOS +C5141153|T047|ET|I82.56|ICD10CM|Chronic embolism and thrombosis of gastrocnemial vein|Chronic embolism and thrombosis of gastrocnemial vein +C5141154|T047|ET|I82.56|ICD10CM|Chronic embolism and thrombosis of soleal vein|Chronic embolism and thrombosis of soleal vein +C5140834|T047|AB|I82.561|ICD10CM|Chronic embolism and thrombosis of right calf muscular vein|Chronic embolism and thrombosis of right calf muscular vein +C5140834|T047|PT|I82.561|ICD10CM|Chronic embolism and thrombosis of right calf muscular vein|Chronic embolism and thrombosis of right calf muscular vein +C5140835|T047|AB|I82.562|ICD10CM|Chronic embolism and thrombosis of left calf muscular vein|Chronic embolism and thrombosis of left calf muscular vein +C5140835|T047|PT|I82.562|ICD10CM|Chronic embolism and thrombosis of left calf muscular vein|Chronic embolism and thrombosis of left calf muscular vein +C5140836|T047|AB|I82.563|ICD10CM|Chronic embolism and thombos of calf muscular vein, bi|Chronic embolism and thombos of calf muscular vein, bi +C5140836|T047|PT|I82.563|ICD10CM|Chronic embolism and thrombosis of calf muscular vein, bilateral|Chronic embolism and thrombosis of calf muscular vein, bilateral +C5140833|T047|AB|I82.569|ICD10CM|Chronic embolism and thombos unsp calf muscular vein|Chronic embolism and thombos unsp calf muscular vein +C5140833|T047|PT|I82.569|ICD10CM|Chronic embolism and thrombosis of unspecified calf muscular vein|Chronic embolism and thrombosis of unspecified calf muscular vein +C2883139|T047|AB|I82.59|ICD10CM|Chronic embolism and thrombosis of deep vein of low extrm|Chronic embolism and thrombosis of deep vein of low extrm +C2883139|T047|HT|I82.59|ICD10CM|Chronic embolism and thrombosis of other specified deep vein of lower extremity|Chronic embolism and thrombosis of other specified deep vein of lower extremity +C2883140|T047|AB|I82.591|ICD10CM|Chronic embolism and thrombosis of deep vein of r low extrem|Chronic embolism and thrombosis of deep vein of r low extrem +C2883140|T047|PT|I82.591|ICD10CM|Chronic embolism and thrombosis of other specified deep vein of right lower extremity|Chronic embolism and thrombosis of other specified deep vein of right lower extremity +C2883141|T047|AB|I82.592|ICD10CM|Chronic embolism and thrombosis of deep vein of l low extrem|Chronic embolism and thrombosis of deep vein of l low extrem +C2883141|T047|PT|I82.592|ICD10CM|Chronic embolism and thrombosis of other specified deep vein of left lower extremity|Chronic embolism and thrombosis of other specified deep vein of left lower extremity +C2883142|T047|AB|I82.593|ICD10CM|Chronic embolism and thombos of deep vein of low extrm, bi|Chronic embolism and thombos of deep vein of low extrm, bi +C2883142|T047|PT|I82.593|ICD10CM|Chronic embolism and thrombosis of other specified deep vein of lower extremity, bilateral|Chronic embolism and thrombosis of other specified deep vein of lower extremity, bilateral +C2883143|T047|AB|I82.599|ICD10CM|Chronic embolism and thombos of deep vein of unsp low extrm|Chronic embolism and thombos of deep vein of unsp low extrm +C2883143|T047|PT|I82.599|ICD10CM|Chronic embolism and thrombosis of other specified deep vein of unspecified lower extremity|Chronic embolism and thrombosis of other specified deep vein of unspecified lower extremity +C2977007|T047|AB|I82.5Y|ICD10CM|Chronic emblsm and thombos unsp deep veins of prox low extrm|Chronic emblsm and thombos unsp deep veins of prox low extrm +C2977005|T047|ET|I82.5Y|ICD10CM|Chronic embolism and thrombosis of deep veins of thigh NOS|Chronic embolism and thrombosis of deep veins of thigh NOS +C2977006|T047|ET|I82.5Y|ICD10CM|Chronic embolism and thrombosis of deep veins of upper leg NOS|Chronic embolism and thrombosis of deep veins of upper leg NOS +C2977007|T047|HT|I82.5Y|ICD10CM|Chronic embolism and thrombosis of unspecified deep veins of proximal lower extremity|Chronic embolism and thrombosis of unspecified deep veins of proximal lower extremity +C2977008|T047|AB|I82.5Y1|ICD10CM|Chr emblsm and thombos unsp deep veins of r prox low extrm|Chr emblsm and thombos unsp deep veins of r prox low extrm +C2977008|T047|PT|I82.5Y1|ICD10CM|Chronic embolism and thrombosis of unspecified deep veins of right proximal lower extremity|Chronic embolism and thrombosis of unspecified deep veins of right proximal lower extremity +C2977009|T047|AB|I82.5Y2|ICD10CM|Chr emblsm and thombos unsp deep vn of left prox low extrm|Chr emblsm and thombos unsp deep vn of left prox low extrm +C2977009|T047|PT|I82.5Y2|ICD10CM|Chronic embolism and thrombosis of unspecified deep veins of left proximal lower extremity|Chronic embolism and thrombosis of unspecified deep veins of left proximal lower extremity +C2977010|T047|AB|I82.5Y3|ICD10CM|Chr emblsm and thombos unsp deep veins of prox low extrm, bi|Chr emblsm and thombos unsp deep veins of prox low extrm, bi +C2977010|T047|PT|I82.5Y3|ICD10CM|Chronic embolism and thrombosis of unspecified deep veins of proximal lower extremity, bilateral|Chronic embolism and thrombosis of unspecified deep veins of proximal lower extremity, bilateral +C2977011|T047|AB|I82.5Y9|ICD10CM|Chronic emblsm and thombos unsp deep vn unsp prox low extrm|Chronic emblsm and thombos unsp deep vn unsp prox low extrm +C2977011|T047|PT|I82.5Y9|ICD10CM|Chronic embolism and thrombosis of unspecified deep veins of unspecified proximal lower extremity|Chronic embolism and thrombosis of unspecified deep veins of unspecified proximal lower extremity +C2977014|T047|AB|I82.5Z|ICD10CM|Chr emblsm and thombos unsp deep veins of distal low extrm|Chr emblsm and thombos unsp deep veins of distal low extrm +C2977012|T047|ET|I82.5Z|ICD10CM|Chronic embolism and thrombosis of deep veins of calf NOS|Chronic embolism and thrombosis of deep veins of calf NOS +C2977013|T047|ET|I82.5Z|ICD10CM|Chronic embolism and thrombosis of deep veins of lower leg NOS|Chronic embolism and thrombosis of deep veins of lower leg NOS +C2977014|T047|HT|I82.5Z|ICD10CM|Chronic embolism and thrombosis of unspecified deep veins of distal lower extremity|Chronic embolism and thrombosis of unspecified deep veins of distal lower extremity +C2977015|T047|AB|I82.5Z1|ICD10CM|Chr emblsm and thombos unsp deep veins of r dist low extrm|Chr emblsm and thombos unsp deep veins of r dist low extrm +C2977015|T047|PT|I82.5Z1|ICD10CM|Chronic embolism and thrombosis of unspecified deep veins of right distal lower extremity|Chronic embolism and thrombosis of unspecified deep veins of right distal lower extremity +C2977016|T047|AB|I82.5Z2|ICD10CM|Chr emblsm and thombos unsp deep vn of left dist low extrm|Chr emblsm and thombos unsp deep vn of left dist low extrm +C2977016|T047|PT|I82.5Z2|ICD10CM|Chronic embolism and thrombosis of unspecified deep veins of left distal lower extremity|Chronic embolism and thrombosis of unspecified deep veins of left distal lower extremity +C2977017|T047|AB|I82.5Z3|ICD10CM|Chr emblsm and thombos unsp deep veins of dist low extrm, bi|Chr emblsm and thombos unsp deep veins of dist low extrm, bi +C2977017|T047|PT|I82.5Z3|ICD10CM|Chronic embolism and thrombosis of unspecified deep veins of distal lower extremity, bilateral|Chronic embolism and thrombosis of unspecified deep veins of distal lower extremity, bilateral +C2977018|T047|AB|I82.5Z9|ICD10CM|Chr emblsm and thombos unsp deep vn unsp distal low extrm|Chr emblsm and thombos unsp deep vn unsp distal low extrm +C2977018|T047|PT|I82.5Z9|ICD10CM|Chronic embolism and thrombosis of unspecified deep veins of unspecified distal lower extremity|Chronic embolism and thrombosis of unspecified deep veins of unspecified distal lower extremity +C2883144|T047|AB|I82.6|ICD10CM|Acute embolism and thrombosis of veins of upper extremity|Acute embolism and thrombosis of veins of upper extremity +C2883144|T047|HT|I82.6|ICD10CM|Acute embolism and thrombosis of veins of upper extremity|Acute embolism and thrombosis of veins of upper extremity +C2883145|T047|AB|I82.60|ICD10CM|Acute embolism and thombos unsp veins of upper extremity|Acute embolism and thombos unsp veins of upper extremity +C2883145|T047|HT|I82.60|ICD10CM|Acute embolism and thrombosis of unspecified veins of upper extremity|Acute embolism and thrombosis of unspecified veins of upper extremity +C2883146|T047|AB|I82.601|ICD10CM|Acute embolism and thombos unsp veins of r up extrem|Acute embolism and thombos unsp veins of r up extrem +C2883146|T047|PT|I82.601|ICD10CM|Acute embolism and thrombosis of unspecified veins of right upper extremity|Acute embolism and thrombosis of unspecified veins of right upper extremity +C2883147|T047|AB|I82.602|ICD10CM|Acute embolism and thombos unsp veins of l up extrem|Acute embolism and thombos unsp veins of l up extrem +C2883147|T047|PT|I82.602|ICD10CM|Acute embolism and thrombosis of unspecified veins of left upper extremity|Acute embolism and thrombosis of unspecified veins of left upper extremity +C2883148|T047|AB|I82.603|ICD10CM|Acute embolism and thombos unsp veins of up extrem, bi|Acute embolism and thombos unsp veins of up extrem, bi +C2883148|T047|PT|I82.603|ICD10CM|Acute embolism and thrombosis of unspecified veins of upper extremity, bilateral|Acute embolism and thrombosis of unspecified veins of upper extremity, bilateral +C2883149|T047|AB|I82.609|ICD10CM|Acute embolism and thombos unsp vn unsp upper extremity|Acute embolism and thombos unsp vn unsp upper extremity +C2883149|T047|PT|I82.609|ICD10CM|Acute embolism and thrombosis of unspecified veins of unspecified upper extremity|Acute embolism and thrombosis of unspecified veins of unspecified upper extremity +C2883150|T047|ET|I82.61|ICD10CM|Acute embolism and thrombosis of antecubital vein|Acute embolism and thrombosis of antecubital vein +C2883151|T047|ET|I82.61|ICD10CM|Acute embolism and thrombosis of basilic vein|Acute embolism and thrombosis of basilic vein +C2883152|T047|ET|I82.61|ICD10CM|Acute embolism and thrombosis of cephalic vein|Acute embolism and thrombosis of cephalic vein +C2883153|T047|AB|I82.61|ICD10CM|Acute embolism and thrombosis of superfic veins of up extrem|Acute embolism and thrombosis of superfic veins of up extrem +C2883153|T047|HT|I82.61|ICD10CM|Acute embolism and thrombosis of superficial veins of upper extremity|Acute embolism and thrombosis of superficial veins of upper extremity +C2883154|T047|AB|I82.611|ICD10CM|Acute embolism and thombos of superfic veins of r up extrem|Acute embolism and thombos of superfic veins of r up extrem +C2883154|T047|PT|I82.611|ICD10CM|Acute embolism and thrombosis of superficial veins of right upper extremity|Acute embolism and thrombosis of superficial veins of right upper extremity +C2883155|T047|AB|I82.612|ICD10CM|Acute embolism and thombos of superfic veins of l up extrem|Acute embolism and thombos of superfic veins of l up extrem +C2883155|T047|PT|I82.612|ICD10CM|Acute embolism and thrombosis of superficial veins of left upper extremity|Acute embolism and thrombosis of superficial veins of left upper extremity +C2883156|T047|AB|I82.613|ICD10CM|Acute emblsm and thombos of superfic veins of up extrem, bi|Acute emblsm and thombos of superfic veins of up extrem, bi +C2883156|T047|PT|I82.613|ICD10CM|Acute embolism and thrombosis of superficial veins of upper extremity, bilateral|Acute embolism and thrombosis of superficial veins of upper extremity, bilateral +C2883157|T047|AB|I82.619|ICD10CM|Acute embolism and thrombosis of superfic vn unsp up extrem|Acute embolism and thrombosis of superfic vn unsp up extrem +C2883157|T047|PT|I82.619|ICD10CM|Acute embolism and thrombosis of superficial veins of unspecified upper extremity|Acute embolism and thrombosis of superficial veins of unspecified upper extremity +C2883158|T047|ET|I82.62|ICD10CM|Acute embolism and thrombosis of brachial vein|Acute embolism and thrombosis of brachial vein +C2883161|T047|AB|I82.62|ICD10CM|Acute embolism and thrombosis of deep veins of up extrem|Acute embolism and thrombosis of deep veins of up extrem +C2883161|T047|HT|I82.62|ICD10CM|Acute embolism and thrombosis of deep veins of upper extremity|Acute embolism and thrombosis of deep veins of upper extremity +C2883159|T047|ET|I82.62|ICD10CM|Acute embolism and thrombosis of radial vein|Acute embolism and thrombosis of radial vein +C2883160|T047|ET|I82.62|ICD10CM|Acute embolism and thrombosis of ulnar vein|Acute embolism and thrombosis of ulnar vein +C2883162|T047|AB|I82.621|ICD10CM|Acute embolism and thrombosis of deep veins of r up extrem|Acute embolism and thrombosis of deep veins of r up extrem +C2883162|T047|PT|I82.621|ICD10CM|Acute embolism and thrombosis of deep veins of right upper extremity|Acute embolism and thrombosis of deep veins of right upper extremity +C2883163|T047|AB|I82.622|ICD10CM|Acute embolism and thrombosis of deep veins of l up extrem|Acute embolism and thrombosis of deep veins of l up extrem +C2883163|T047|PT|I82.622|ICD10CM|Acute embolism and thrombosis of deep veins of left upper extremity|Acute embolism and thrombosis of deep veins of left upper extremity +C2883164|T047|AB|I82.623|ICD10CM|Acute embolism and thombos of deep veins of up extrem, bi|Acute embolism and thombos of deep veins of up extrem, bi +C2883164|T047|PT|I82.623|ICD10CM|Acute embolism and thrombosis of deep veins of upper extremity, bilateral|Acute embolism and thrombosis of deep veins of upper extremity, bilateral +C2883165|T047|PT|I82.629|ICD10CM|Acute embolism and thrombosis of deep veins of unspecified upper extremity|Acute embolism and thrombosis of deep veins of unspecified upper extremity +C2883165|T047|AB|I82.629|ICD10CM|Acute embolism and thrombosis of deep vn unsp up extrem|Acute embolism and thrombosis of deep vn unsp up extrem +C2883166|T047|AB|I82.7|ICD10CM|Chronic embolism and thrombosis of veins of upper extremity|Chronic embolism and thrombosis of veins of upper extremity +C2883166|T047|HT|I82.7|ICD10CM|Chronic embolism and thrombosis of veins of upper extremity|Chronic embolism and thrombosis of veins of upper extremity +C2883167|T047|AB|I82.70|ICD10CM|Chronic embolism and thombos unsp veins of upper extremity|Chronic embolism and thombos unsp veins of upper extremity +C2883167|T047|HT|I82.70|ICD10CM|Chronic embolism and thrombosis of unspecified veins of upper extremity|Chronic embolism and thrombosis of unspecified veins of upper extremity +C2883168|T047|AB|I82.701|ICD10CM|Chronic embolism and thombos unsp veins of r up extrem|Chronic embolism and thombos unsp veins of r up extrem +C2883168|T047|PT|I82.701|ICD10CM|Chronic embolism and thrombosis of unspecified veins of right upper extremity|Chronic embolism and thrombosis of unspecified veins of right upper extremity +C2883169|T047|AB|I82.702|ICD10CM|Chronic embolism and thombos unsp veins of l up extrem|Chronic embolism and thombos unsp veins of l up extrem +C2883169|T047|PT|I82.702|ICD10CM|Chronic embolism and thrombosis of unspecified veins of left upper extremity|Chronic embolism and thrombosis of unspecified veins of left upper extremity +C2883170|T047|AB|I82.703|ICD10CM|Chronic embolism and thombos unsp veins of up extrem, bi|Chronic embolism and thombos unsp veins of up extrem, bi +C2883170|T047|PT|I82.703|ICD10CM|Chronic embolism and thrombosis of unspecified veins of upper extremity, bilateral|Chronic embolism and thrombosis of unspecified veins of upper extremity, bilateral +C2883171|T047|AB|I82.709|ICD10CM|Chronic embolism and thombos unsp vn unsp upper extremity|Chronic embolism and thombos unsp vn unsp upper extremity +C2883171|T047|PT|I82.709|ICD10CM|Chronic embolism and thrombosis of unspecified veins of unspecified upper extremity|Chronic embolism and thrombosis of unspecified veins of unspecified upper extremity +C2883175|T047|AB|I82.71|ICD10CM|Chronic embolism and thombos of superfic veins of up extrem|Chronic embolism and thombos of superfic veins of up extrem +C2883172|T046|ET|I82.71|ICD10CM|Chronic embolism and thrombosis of antecubital vein|Chronic embolism and thrombosis of antecubital vein +C2883173|T046|ET|I82.71|ICD10CM|Chronic embolism and thrombosis of basilic vein|Chronic embolism and thrombosis of basilic vein +C2883174|T046|ET|I82.71|ICD10CM|Chronic embolism and thrombosis of cephalic vein|Chronic embolism and thrombosis of cephalic vein +C2883175|T047|HT|I82.71|ICD10CM|Chronic embolism and thrombosis of superficial veins of upper extremity|Chronic embolism and thrombosis of superficial veins of upper extremity +C2883176|T047|AB|I82.711|ICD10CM|Chronic emblsm and thombos of superfic veins of r up extrem|Chronic emblsm and thombos of superfic veins of r up extrem +C2883176|T047|PT|I82.711|ICD10CM|Chronic embolism and thrombosis of superficial veins of right upper extremity|Chronic embolism and thrombosis of superficial veins of right upper extremity +C2883177|T047|AB|I82.712|ICD10CM|Chronic emblsm and thombos of superfic veins of l up extrem|Chronic emblsm and thombos of superfic veins of l up extrem +C2883177|T047|PT|I82.712|ICD10CM|Chronic embolism and thrombosis of superficial veins of left upper extremity|Chronic embolism and thrombosis of superficial veins of left upper extremity +C2883178|T047|AB|I82.713|ICD10CM|Chr emblsm and thombos of superfic veins of up extrem, bi|Chr emblsm and thombos of superfic veins of up extrem, bi +C2883178|T047|PT|I82.713|ICD10CM|Chronic embolism and thrombosis of superficial veins of upper extremity, bilateral|Chronic embolism and thrombosis of superficial veins of upper extremity, bilateral +C2883179|T047|AB|I82.719|ICD10CM|Chronic embolism and thombos of superfic vn unsp up extrem|Chronic embolism and thombos of superfic vn unsp up extrem +C2883179|T047|PT|I82.719|ICD10CM|Chronic embolism and thrombosis of superficial veins of unspecified upper extremity|Chronic embolism and thrombosis of superficial veins of unspecified upper extremity +C2883180|T046|ET|I82.72|ICD10CM|Chronic embolism and thrombosis of brachial vein|Chronic embolism and thrombosis of brachial vein +C2887120|T047|AB|I82.72|ICD10CM|Chronic embolism and thrombosis of deep veins of up extrem|Chronic embolism and thrombosis of deep veins of up extrem +C2887120|T047|HT|I82.72|ICD10CM|Chronic embolism and thrombosis of deep veins of upper extremity|Chronic embolism and thrombosis of deep veins of upper extremity +C2883181|T046|ET|I82.72|ICD10CM|Chronic embolism and thrombosis of radial vein|Chronic embolism and thrombosis of radial vein +C2883182|T046|ET|I82.72|ICD10CM|Chronic embolism and thrombosis of ulnar vein|Chronic embolism and thrombosis of ulnar vein +C2887121|T047|AB|I82.721|ICD10CM|Chronic embolism and thrombosis of deep veins of r up extrem|Chronic embolism and thrombosis of deep veins of r up extrem +C2887121|T047|PT|I82.721|ICD10CM|Chronic embolism and thrombosis of deep veins of right upper extremity|Chronic embolism and thrombosis of deep veins of right upper extremity +C2887122|T047|AB|I82.722|ICD10CM|Chronic embolism and thrombosis of deep veins of l up extrem|Chronic embolism and thrombosis of deep veins of l up extrem +C2887122|T047|PT|I82.722|ICD10CM|Chronic embolism and thrombosis of deep veins of left upper extremity|Chronic embolism and thrombosis of deep veins of left upper extremity +C2887123|T047|AB|I82.723|ICD10CM|Chronic embolism and thombos of deep veins of up extrem, bi|Chronic embolism and thombos of deep veins of up extrem, bi +C2887123|T047|PT|I82.723|ICD10CM|Chronic embolism and thrombosis of deep veins of upper extremity, bilateral|Chronic embolism and thrombosis of deep veins of upper extremity, bilateral +C2887124|T047|PT|I82.729|ICD10CM|Chronic embolism and thrombosis of deep veins of unspecified upper extremity|Chronic embolism and thrombosis of deep veins of unspecified upper extremity +C2887124|T047|AB|I82.729|ICD10CM|Chronic embolism and thrombosis of deep vn unsp up extrem|Chronic embolism and thrombosis of deep vn unsp up extrem +C0155777|T046|HT|I82.8|ICD10CM|Embolism and thrombosis of other specified veins|Embolism and thrombosis of other specified veins +C0155777|T046|AB|I82.8|ICD10CM|Embolism and thrombosis of other specified veins|Embolism and thrombosis of other specified veins +C0155777|T046|PT|I82.8|ICD10|Embolism and thrombosis of other specified veins|Embolism and thrombosis of other specified veins +C2887125|T046|ET|I82.81|ICD10CM|Embolism and thrombosis of saphenous vein (greater) (lesser)|Embolism and thrombosis of saphenous vein (greater) (lesser) +C2887126|T046|AB|I82.81|ICD10CM|Embolism and thrombosis of superficial veins of low extrm|Embolism and thrombosis of superficial veins of low extrm +C2887126|T046|HT|I82.81|ICD10CM|Embolism and thrombosis of superficial veins of lower extremities|Embolism and thrombosis of superficial veins of lower extremities +C2887127|T046|AB|I82.811|ICD10CM|Embolism and thrombosis of superficial veins of r low extrem|Embolism and thrombosis of superficial veins of r low extrem +C2887127|T046|PT|I82.811|ICD10CM|Embolism and thrombosis of superficial veins of right lower extremity|Embolism and thrombosis of superficial veins of right lower extremity +C2887128|T046|AB|I82.812|ICD10CM|Embolism and thrombosis of superficial veins of l low extrem|Embolism and thrombosis of superficial veins of l low extrem +C2887128|T046|PT|I82.812|ICD10CM|Embolism and thrombosis of superficial veins of left lower extremity|Embolism and thrombosis of superficial veins of left lower extremity +C2887129|T046|AB|I82.813|ICD10CM|Embolism and thombos of superfic veins of low extrm, bi|Embolism and thombos of superfic veins of low extrm, bi +C2887129|T046|PT|I82.813|ICD10CM|Embolism and thrombosis of superficial veins of lower extremities, bilateral|Embolism and thrombosis of superficial veins of lower extremities, bilateral +C2887130|T046|PT|I82.819|ICD10CM|Embolism and thrombosis of superficial veins of unspecified lower extremity|Embolism and thrombosis of superficial veins of unspecified lower extremity +C2887130|T046|AB|I82.819|ICD10CM|Embolism and thrombosis of superficial vn unsp low extrm|Embolism and thrombosis of superficial vn unsp low extrm +C0155777|T046|HT|I82.89|ICD10CM|Embolism and thrombosis of other specified veins|Embolism and thrombosis of other specified veins +C0155777|T046|AB|I82.89|ICD10CM|Embolism and thrombosis of other specified veins|Embolism and thrombosis of other specified veins +C2887131|T046|AB|I82.890|ICD10CM|Acute embolism and thrombosis of other specified veins|Acute embolism and thrombosis of other specified veins +C2887131|T046|PT|I82.890|ICD10CM|Acute embolism and thrombosis of other specified veins|Acute embolism and thrombosis of other specified veins +C2887132|T046|AB|I82.891|ICD10CM|Chronic embolism and thrombosis of other specified veins|Chronic embolism and thrombosis of other specified veins +C2887132|T046|PT|I82.891|ICD10CM|Chronic embolism and thrombosis of other specified veins|Chronic embolism and thrombosis of other specified veins +C0494623|T046|HT|I82.9|ICD10CM|Embolism and thrombosis of unspecified vein|Embolism and thrombosis of unspecified vein +C0494623|T046|AB|I82.9|ICD10CM|Embolism and thrombosis of unspecified vein|Embolism and thrombosis of unspecified vein +C0494623|T046|PT|I82.9|ICD10|Embolism and thrombosis of unspecified vein|Embolism and thrombosis of unspecified vein +C2887133|T047|AB|I82.90|ICD10CM|Acute embolism and thrombosis of unspecified vein|Acute embolism and thrombosis of unspecified vein +C2887133|T047|PT|I82.90|ICD10CM|Acute embolism and thrombosis of unspecified vein|Acute embolism and thrombosis of unspecified vein +C0340726|T020|ET|I82.90|ICD10CM|Embolism of vein NOS|Embolism of vein NOS +C0042487|T046|ET|I82.90|ICD10CM|Thrombosis (vein) NOS|Thrombosis (vein) NOS +C2887134|T047|AB|I82.91|ICD10CM|Chronic embolism and thrombosis of unspecified vein|Chronic embolism and thrombosis of unspecified vein +C2887134|T047|PT|I82.91|ICD10CM|Chronic embolism and thrombosis of unspecified vein|Chronic embolism and thrombosis of unspecified vein +C2887135|T047|AB|I82.A|ICD10CM|Embolism and thrombosis of axillary vein|Embolism and thrombosis of axillary vein +C2887135|T047|HT|I82.A|ICD10CM|Embolism and thrombosis of axillary vein|Embolism and thrombosis of axillary vein +C2887136|T047|AB|I82.A1|ICD10CM|Acute embolism and thrombosis of axillary vein|Acute embolism and thrombosis of axillary vein +C2887136|T047|HT|I82.A1|ICD10CM|Acute embolism and thrombosis of axillary vein|Acute embolism and thrombosis of axillary vein +C2887137|T047|AB|I82.A11|ICD10CM|Acute embolism and thrombosis of right axillary vein|Acute embolism and thrombosis of right axillary vein +C2887137|T047|PT|I82.A11|ICD10CM|Acute embolism and thrombosis of right axillary vein|Acute embolism and thrombosis of right axillary vein +C2887138|T047|AB|I82.A12|ICD10CM|Acute embolism and thrombosis of left axillary vein|Acute embolism and thrombosis of left axillary vein +C2887138|T047|PT|I82.A12|ICD10CM|Acute embolism and thrombosis of left axillary vein|Acute embolism and thrombosis of left axillary vein +C2887139|T047|AB|I82.A13|ICD10CM|Acute embolism and thrombosis of axillary vein, bilateral|Acute embolism and thrombosis of axillary vein, bilateral +C2887139|T047|PT|I82.A13|ICD10CM|Acute embolism and thrombosis of axillary vein, bilateral|Acute embolism and thrombosis of axillary vein, bilateral +C2887140|T047|AB|I82.A19|ICD10CM|Acute embolism and thrombosis of unspecified axillary vein|Acute embolism and thrombosis of unspecified axillary vein +C2887140|T047|PT|I82.A19|ICD10CM|Acute embolism and thrombosis of unspecified axillary vein|Acute embolism and thrombosis of unspecified axillary vein +C2887141|T047|AB|I82.A2|ICD10CM|Chronic embolism and thrombosis of axillary vein|Chronic embolism and thrombosis of axillary vein +C2887141|T047|HT|I82.A2|ICD10CM|Chronic embolism and thrombosis of axillary vein|Chronic embolism and thrombosis of axillary vein +C2887142|T047|AB|I82.A21|ICD10CM|Chronic embolism and thrombosis of right axillary vein|Chronic embolism and thrombosis of right axillary vein +C2887142|T047|PT|I82.A21|ICD10CM|Chronic embolism and thrombosis of right axillary vein|Chronic embolism and thrombosis of right axillary vein +C2887143|T047|AB|I82.A22|ICD10CM|Chronic embolism and thrombosis of left axillary vein|Chronic embolism and thrombosis of left axillary vein +C2887143|T047|PT|I82.A22|ICD10CM|Chronic embolism and thrombosis of left axillary vein|Chronic embolism and thrombosis of left axillary vein +C2887144|T047|AB|I82.A23|ICD10CM|Chronic embolism and thrombosis of axillary vein, bilateral|Chronic embolism and thrombosis of axillary vein, bilateral +C2887144|T047|PT|I82.A23|ICD10CM|Chronic embolism and thrombosis of axillary vein, bilateral|Chronic embolism and thrombosis of axillary vein, bilateral +C2887145|T047|AB|I82.A29|ICD10CM|Chronic embolism and thrombosis of unspecified axillary vein|Chronic embolism and thrombosis of unspecified axillary vein +C2887145|T047|PT|I82.A29|ICD10CM|Chronic embolism and thrombosis of unspecified axillary vein|Chronic embolism and thrombosis of unspecified axillary vein +C2887146|T047|AB|I82.B|ICD10CM|Embolism and thrombosis of subclavian vein|Embolism and thrombosis of subclavian vein +C2887146|T047|HT|I82.B|ICD10CM|Embolism and thrombosis of subclavian vein|Embolism and thrombosis of subclavian vein +C2887147|T047|AB|I82.B1|ICD10CM|Acute embolism and thrombosis of subclavian vein|Acute embolism and thrombosis of subclavian vein +C2887147|T047|HT|I82.B1|ICD10CM|Acute embolism and thrombosis of subclavian vein|Acute embolism and thrombosis of subclavian vein +C2887148|T047|AB|I82.B11|ICD10CM|Acute embolism and thrombosis of right subclavian vein|Acute embolism and thrombosis of right subclavian vein +C2887148|T047|PT|I82.B11|ICD10CM|Acute embolism and thrombosis of right subclavian vein|Acute embolism and thrombosis of right subclavian vein +C2887149|T047|AB|I82.B12|ICD10CM|Acute embolism and thrombosis of left subclavian vein|Acute embolism and thrombosis of left subclavian vein +C2887149|T047|PT|I82.B12|ICD10CM|Acute embolism and thrombosis of left subclavian vein|Acute embolism and thrombosis of left subclavian vein +C2887150|T047|AB|I82.B13|ICD10CM|Acute embolism and thrombosis of subclavian vein, bilateral|Acute embolism and thrombosis of subclavian vein, bilateral +C2887150|T047|PT|I82.B13|ICD10CM|Acute embolism and thrombosis of subclavian vein, bilateral|Acute embolism and thrombosis of subclavian vein, bilateral +C2887151|T047|AB|I82.B19|ICD10CM|Acute embolism and thrombosis of unspecified subclavian vein|Acute embolism and thrombosis of unspecified subclavian vein +C2887151|T047|PT|I82.B19|ICD10CM|Acute embolism and thrombosis of unspecified subclavian vein|Acute embolism and thrombosis of unspecified subclavian vein +C2887152|T047|AB|I82.B2|ICD10CM|Chronic embolism and thrombosis of subclavian vein|Chronic embolism and thrombosis of subclavian vein +C2887152|T047|HT|I82.B2|ICD10CM|Chronic embolism and thrombosis of subclavian vein|Chronic embolism and thrombosis of subclavian vein +C2887153|T047|AB|I82.B21|ICD10CM|Chronic embolism and thrombosis of right subclavian vein|Chronic embolism and thrombosis of right subclavian vein +C2887153|T047|PT|I82.B21|ICD10CM|Chronic embolism and thrombosis of right subclavian vein|Chronic embolism and thrombosis of right subclavian vein +C2887154|T047|AB|I82.B22|ICD10CM|Chronic embolism and thrombosis of left subclavian vein|Chronic embolism and thrombosis of left subclavian vein +C2887154|T047|PT|I82.B22|ICD10CM|Chronic embolism and thrombosis of left subclavian vein|Chronic embolism and thrombosis of left subclavian vein +C2887155|T047|AB|I82.B23|ICD10CM|Chronic embolism and thrombosis of subclav vein, bilateral|Chronic embolism and thrombosis of subclav vein, bilateral +C2887155|T047|PT|I82.B23|ICD10CM|Chronic embolism and thrombosis of subclavian vein, bilateral|Chronic embolism and thrombosis of subclavian vein, bilateral +C2887156|T047|AB|I82.B29|ICD10CM|Chronic embolism and thrombosis of unsp subclavian vein|Chronic embolism and thrombosis of unsp subclavian vein +C2887156|T047|PT|I82.B29|ICD10CM|Chronic embolism and thrombosis of unspecified subclavian vein|Chronic embolism and thrombosis of unspecified subclavian vein +C2887157|T047|AB|I82.C|ICD10CM|Embolism and thrombosis of internal jugular vein|Embolism and thrombosis of internal jugular vein +C2887157|T047|HT|I82.C|ICD10CM|Embolism and thrombosis of internal jugular vein|Embolism and thrombosis of internal jugular vein +C2887158|T047|AB|I82.C1|ICD10CM|Acute embolism and thrombosis of internal jugular vein|Acute embolism and thrombosis of internal jugular vein +C2887158|T047|HT|I82.C1|ICD10CM|Acute embolism and thrombosis of internal jugular vein|Acute embolism and thrombosis of internal jugular vein +C2887159|T047|AB|I82.C11|ICD10CM|Acute embolism and thrombosis of right internal jugular vein|Acute embolism and thrombosis of right internal jugular vein +C2887159|T047|PT|I82.C11|ICD10CM|Acute embolism and thrombosis of right internal jugular vein|Acute embolism and thrombosis of right internal jugular vein +C2887160|T047|AB|I82.C12|ICD10CM|Acute embolism and thrombosis of left internal jugular vein|Acute embolism and thrombosis of left internal jugular vein +C2887160|T047|PT|I82.C12|ICD10CM|Acute embolism and thrombosis of left internal jugular vein|Acute embolism and thrombosis of left internal jugular vein +C2887161|T047|AB|I82.C13|ICD10CM|Acute embolism and thrombosis of int jugular vein, bilateral|Acute embolism and thrombosis of int jugular vein, bilateral +C2887161|T047|PT|I82.C13|ICD10CM|Acute embolism and thrombosis of internal jugular vein, bilateral|Acute embolism and thrombosis of internal jugular vein, bilateral +C2887162|T047|AB|I82.C19|ICD10CM|Acute embolism and thrombosis of unsp internal jugular vein|Acute embolism and thrombosis of unsp internal jugular vein +C2887162|T047|PT|I82.C19|ICD10CM|Acute embolism and thrombosis of unspecified internal jugular vein|Acute embolism and thrombosis of unspecified internal jugular vein +C2887163|T047|AB|I82.C2|ICD10CM|Chronic embolism and thrombosis of internal jugular vein|Chronic embolism and thrombosis of internal jugular vein +C2887163|T047|HT|I82.C2|ICD10CM|Chronic embolism and thrombosis of internal jugular vein|Chronic embolism and thrombosis of internal jugular vein +C2887164|T047|AB|I82.C21|ICD10CM|Chronic embolism and thrombosis of r int jugular vein|Chronic embolism and thrombosis of r int jugular vein +C2887164|T047|PT|I82.C21|ICD10CM|Chronic embolism and thrombosis of right internal jugular vein|Chronic embolism and thrombosis of right internal jugular vein +C2887165|T047|AB|I82.C22|ICD10CM|Chronic embolism and thrombosis of l int jugular vein|Chronic embolism and thrombosis of l int jugular vein +C2887165|T047|PT|I82.C22|ICD10CM|Chronic embolism and thrombosis of left internal jugular vein|Chronic embolism and thrombosis of left internal jugular vein +C2887166|T047|AB|I82.C23|ICD10CM|Chronic embolism and thombos of int jugular vein, bilateral|Chronic embolism and thombos of int jugular vein, bilateral +C2887166|T047|PT|I82.C23|ICD10CM|Chronic embolism and thrombosis of internal jugular vein, bilateral|Chronic embolism and thrombosis of internal jugular vein, bilateral +C2887167|T047|AB|I82.C29|ICD10CM|Chronic embolism and thombos unsp internal jugular vein|Chronic embolism and thombos unsp internal jugular vein +C2887167|T047|PT|I82.C29|ICD10CM|Chronic embolism and thrombosis of unspecified internal jugular vein|Chronic embolism and thrombosis of unspecified internal jugular vein +C0155778|T047|HT|I83|ICD10CM|Varicose veins of lower extremities|Varicose veins of lower extremities +C0155778|T047|AB|I83|ICD10CM|Varicose veins of lower extremities|Varicose veins of lower extremities +C0155778|T047|HT|I83|ICD10|Varicose veins of lower extremities|Varicose veins of lower extremities +C0553570|T047|PT|I83.0|ICD10|Varicose veins of lower extremities with ulcer|Varicose veins of lower extremities with ulcer +C0553570|T047|HT|I83.0|ICD10CM|Varicose veins of lower extremities with ulcer|Varicose veins of lower extremities with ulcer +C0553570|T047|AB|I83.0|ICD10CM|Varicose veins of lower extremities with ulcer|Varicose veins of lower extremities with ulcer +C2887168|T047|AB|I83.00|ICD10CM|Varicose veins of unspecified lower extremity with ulcer|Varicose veins of unspecified lower extremity with ulcer +C2887168|T047|HT|I83.00|ICD10CM|Varicose veins of unspecified lower extremity with ulcer|Varicose veins of unspecified lower extremity with ulcer +C2887169|T047|AB|I83.001|ICD10CM|Varicose veins of unsp lower extremity with ulcer of thigh|Varicose veins of unsp lower extremity with ulcer of thigh +C2887169|T047|PT|I83.001|ICD10CM|Varicose veins of unspecified lower extremity with ulcer of thigh|Varicose veins of unspecified lower extremity with ulcer of thigh +C2887170|T047|AB|I83.002|ICD10CM|Varicose veins of unsp lower extremity with ulcer of calf|Varicose veins of unsp lower extremity with ulcer of calf +C2887170|T047|PT|I83.002|ICD10CM|Varicose veins of unspecified lower extremity with ulcer of calf|Varicose veins of unspecified lower extremity with ulcer of calf +C2887171|T047|AB|I83.003|ICD10CM|Varicose veins of unsp lower extremity with ulcer of ankle|Varicose veins of unsp lower extremity with ulcer of ankle +C2887171|T047|PT|I83.003|ICD10CM|Varicose veins of unspecified lower extremity with ulcer of ankle|Varicose veins of unspecified lower extremity with ulcer of ankle +C2887173|T047|AB|I83.004|ICD10CM|Varicos vn unsp lower extremity w ulcer of heel and midfoot|Varicos vn unsp lower extremity w ulcer of heel and midfoot +C2887173|T047|PT|I83.004|ICD10CM|Varicose veins of unspecified lower extremity with ulcer of heel and midfoot|Varicose veins of unspecified lower extremity with ulcer of heel and midfoot +C2887172|T046|ET|I83.004|ICD10CM|Varicose veins of unspecified lower extremity with ulcer of plantar surface of midfoot|Varicose veins of unspecified lower extremity with ulcer of plantar surface of midfoot +C2887175|T047|AB|I83.005|ICD10CM|Varicos vn unsp lower extremity w ulcer oth part of foot|Varicos vn unsp lower extremity w ulcer oth part of foot +C2887174|T046|ET|I83.005|ICD10CM|Varicose veins of unspecified lower extremity with ulcer of toe|Varicose veins of unspecified lower extremity with ulcer of toe +C2887175|T047|PT|I83.005|ICD10CM|Varicose veins of unspecified lower extremity with ulcer other part of foot|Varicose veins of unspecified lower extremity with ulcer other part of foot +C2887176|T047|AB|I83.008|ICD10CM|Varicos vn unsp low extrm w ulcer oth part of lower leg|Varicos vn unsp low extrm w ulcer oth part of lower leg +C2887176|T047|PT|I83.008|ICD10CM|Varicose veins of unspecified lower extremity with ulcer other part of lower leg|Varicose veins of unspecified lower extremity with ulcer other part of lower leg +C2887177|T047|AB|I83.009|ICD10CM|Varicose veins of unsp lower extremity w ulcer of unsp site|Varicose veins of unsp lower extremity w ulcer of unsp site +C2887177|T047|PT|I83.009|ICD10CM|Varicose veins of unspecified lower extremity with ulcer of unspecified site|Varicose veins of unspecified lower extremity with ulcer of unspecified site +C2887178|T047|HT|I83.01|ICD10CM|Varicose veins of right lower extremity with ulcer|Varicose veins of right lower extremity with ulcer +C2887178|T047|AB|I83.01|ICD10CM|Varicose veins of right lower extremity with ulcer|Varicose veins of right lower extremity with ulcer +C2887179|T047|PT|I83.011|ICD10CM|Varicose veins of right lower extremity with ulcer of thigh|Varicose veins of right lower extremity with ulcer of thigh +C2887179|T047|AB|I83.011|ICD10CM|Varicose veins of right lower extremity with ulcer of thigh|Varicose veins of right lower extremity with ulcer of thigh +C2887180|T047|PT|I83.012|ICD10CM|Varicose veins of right lower extremity with ulcer of calf|Varicose veins of right lower extremity with ulcer of calf +C2887180|T047|AB|I83.012|ICD10CM|Varicose veins of right lower extremity with ulcer of calf|Varicose veins of right lower extremity with ulcer of calf +C2887181|T047|PT|I83.013|ICD10CM|Varicose veins of right lower extremity with ulcer of ankle|Varicose veins of right lower extremity with ulcer of ankle +C2887181|T047|AB|I83.013|ICD10CM|Varicose veins of right lower extremity with ulcer of ankle|Varicose veins of right lower extremity with ulcer of ankle +C2887183|T047|AB|I83.014|ICD10CM|Varicose veins of r low extrem w ulcer of heel and midfoot|Varicose veins of r low extrem w ulcer of heel and midfoot +C2887183|T047|PT|I83.014|ICD10CM|Varicose veins of right lower extremity with ulcer of heel and midfoot|Varicose veins of right lower extremity with ulcer of heel and midfoot +C2887182|T046|ET|I83.014|ICD10CM|Varicose veins of right lower extremity with ulcer of plantar surface of midfoot|Varicose veins of right lower extremity with ulcer of plantar surface of midfoot +C2887185|T047|AB|I83.015|ICD10CM|Varicose veins of r low extrem w ulcer oth part of foot|Varicose veins of r low extrem w ulcer oth part of foot +C2887184|T046|ET|I83.015|ICD10CM|Varicose veins of right lower extremity with ulcer of toe|Varicose veins of right lower extremity with ulcer of toe +C2887185|T047|PT|I83.015|ICD10CM|Varicose veins of right lower extremity with ulcer other part of foot|Varicose veins of right lower extremity with ulcer other part of foot +C2887186|T047|AB|I83.018|ICD10CM|Varicose veins of r low extrem w ulcer oth part of lower leg|Varicose veins of r low extrem w ulcer oth part of lower leg +C2887186|T047|PT|I83.018|ICD10CM|Varicose veins of right lower extremity with ulcer other part of lower leg|Varicose veins of right lower extremity with ulcer other part of lower leg +C2887187|T047|AB|I83.019|ICD10CM|Varicose veins of right lower extremity w ulcer of unsp site|Varicose veins of right lower extremity w ulcer of unsp site +C2887187|T047|PT|I83.019|ICD10CM|Varicose veins of right lower extremity with ulcer of unspecified site|Varicose veins of right lower extremity with ulcer of unspecified site +C2887188|T047|HT|I83.02|ICD10CM|Varicose veins of left lower extremity with ulcer|Varicose veins of left lower extremity with ulcer +C2887188|T047|AB|I83.02|ICD10CM|Varicose veins of left lower extremity with ulcer|Varicose veins of left lower extremity with ulcer +C2887189|T047|PT|I83.021|ICD10CM|Varicose veins of left lower extremity with ulcer of thigh|Varicose veins of left lower extremity with ulcer of thigh +C2887189|T047|AB|I83.021|ICD10CM|Varicose veins of left lower extremity with ulcer of thigh|Varicose veins of left lower extremity with ulcer of thigh +C2887190|T047|PT|I83.022|ICD10CM|Varicose veins of left lower extremity with ulcer of calf|Varicose veins of left lower extremity with ulcer of calf +C2887190|T047|AB|I83.022|ICD10CM|Varicose veins of left lower extremity with ulcer of calf|Varicose veins of left lower extremity with ulcer of calf +C2887191|T047|PT|I83.023|ICD10CM|Varicose veins of left lower extremity with ulcer of ankle|Varicose veins of left lower extremity with ulcer of ankle +C2887191|T047|AB|I83.023|ICD10CM|Varicose veins of left lower extremity with ulcer of ankle|Varicose veins of left lower extremity with ulcer of ankle +C2887193|T047|AB|I83.024|ICD10CM|Varicose veins of l low extrem w ulcer of heel and midfoot|Varicose veins of l low extrem w ulcer of heel and midfoot +C2887193|T047|PT|I83.024|ICD10CM|Varicose veins of left lower extremity with ulcer of heel and midfoot|Varicose veins of left lower extremity with ulcer of heel and midfoot +C2887192|T046|ET|I83.024|ICD10CM|Varicose veins of left lower extremity with ulcer of plantar surface of midfoot|Varicose veins of left lower extremity with ulcer of plantar surface of midfoot +C2887195|T047|AB|I83.025|ICD10CM|Varicose veins of l low extrem w ulcer oth part of foot|Varicose veins of l low extrem w ulcer oth part of foot +C2887194|T046|ET|I83.025|ICD10CM|Varicose veins of left lower extremity with ulcer of toe|Varicose veins of left lower extremity with ulcer of toe +C2887195|T047|PT|I83.025|ICD10CM|Varicose veins of left lower extremity with ulcer other part of foot|Varicose veins of left lower extremity with ulcer other part of foot +C2887196|T047|AB|I83.028|ICD10CM|Varicose veins of l low extrem w ulcer oth part of lower leg|Varicose veins of l low extrem w ulcer oth part of lower leg +C2887196|T047|PT|I83.028|ICD10CM|Varicose veins of left lower extremity with ulcer other part of lower leg|Varicose veins of left lower extremity with ulcer other part of lower leg +C2887197|T047|AB|I83.029|ICD10CM|Varicose veins of left lower extremity w ulcer of unsp site|Varicose veins of left lower extremity w ulcer of unsp site +C2887197|T047|PT|I83.029|ICD10CM|Varicose veins of left lower extremity with ulcer of unspecified site|Varicose veins of left lower extremity with ulcer of unspecified site +C0042347|T047|PT|I83.1|ICD10|Varicose veins of lower extremities with inflammation|Varicose veins of lower extremities with inflammation +C0042347|T047|HT|I83.1|ICD10CM|Varicose veins of lower extremities with inflammation|Varicose veins of lower extremities with inflammation +C0042347|T047|AB|I83.1|ICD10CM|Varicose veins of lower extremities with inflammation|Varicose veins of lower extremities with inflammation +C2887198|T047|AB|I83.10|ICD10CM|Varicose veins of unsp lower extremity with inflammation|Varicose veins of unsp lower extremity with inflammation +C2887198|T047|PT|I83.10|ICD10CM|Varicose veins of unspecified lower extremity with inflammation|Varicose veins of unspecified lower extremity with inflammation +C2887199|T047|AB|I83.11|ICD10CM|Varicose veins of right lower extremity with inflammation|Varicose veins of right lower extremity with inflammation +C2887199|T047|PT|I83.11|ICD10CM|Varicose veins of right lower extremity with inflammation|Varicose veins of right lower extremity with inflammation +C2887200|T047|AB|I83.12|ICD10CM|Varicose veins of left lower extremity with inflammation|Varicose veins of left lower extremity with inflammation +C2887200|T047|PT|I83.12|ICD10CM|Varicose veins of left lower extremity with inflammation|Varicose veins of left lower extremity with inflammation +C0155779|T047|AB|I83.2|ICD10CM|Varicose veins of lower extremities w ulc and inflammation|Varicose veins of lower extremities w ulc and inflammation +C0155779|T047|HT|I83.2|ICD10CM|Varicose veins of lower extremities with both ulcer and inflammation|Varicose veins of lower extremities with both ulcer and inflammation +C0155779|T047|PT|I83.2|ICD10|Varicose veins of lower extremities with both ulcer and inflammation|Varicose veins of lower extremities with both ulcer and inflammation +C2887201|T047|AB|I83.20|ICD10CM|Varicos vn unsp lower extremity w ulc and inflammation|Varicos vn unsp lower extremity w ulc and inflammation +C2887201|T047|HT|I83.20|ICD10CM|Varicose veins of unspecified lower extremity with both ulcer and inflammation|Varicose veins of unspecified lower extremity with both ulcer and inflammation +C2887202|T047|AB|I83.201|ICD10CM|Varicos vn unsp low extrm w ulc of thigh and inflammation|Varicos vn unsp low extrm w ulc of thigh and inflammation +C2887202|T047|PT|I83.201|ICD10CM|Varicose veins of unspecified lower extremity with both ulcer of thigh and inflammation|Varicose veins of unspecified lower extremity with both ulcer of thigh and inflammation +C2887203|T047|AB|I83.202|ICD10CM|Varicos vn unsp low extrm w ulc of calf and inflammation|Varicos vn unsp low extrm w ulc of calf and inflammation +C2887203|T047|PT|I83.202|ICD10CM|Varicose veins of unspecified lower extremity with both ulcer of calf and inflammation|Varicose veins of unspecified lower extremity with both ulcer of calf and inflammation +C2887204|T047|AB|I83.203|ICD10CM|Varicos vn unsp low extrm w ulc of ankle and inflammation|Varicos vn unsp low extrm w ulc of ankle and inflammation +C2887204|T047|PT|I83.203|ICD10CM|Varicose veins of unspecified lower extremity with both ulcer of ankle and inflammation|Varicose veins of unspecified lower extremity with both ulcer of ankle and inflammation +C2887206|T047|AB|I83.204|ICD10CM|Varicos vn unsp low extrm w ulc of heel and midft and inflam|Varicos vn unsp low extrm w ulc of heel and midft and inflam +C2887206|T047|PT|I83.204|ICD10CM|Varicose veins of unspecified lower extremity with both ulcer of heel and midfoot and inflammation|Varicose veins of unspecified lower extremity with both ulcer of heel and midfoot and inflammation +C2887208|T047|AB|I83.205|ICD10CM|Varicos vn unsp low extrm w ulc oth part of foot and inflam|Varicos vn unsp low extrm w ulc oth part of foot and inflam +C2887207|T047|ET|I83.205|ICD10CM|Varicose veins of unspecified lower extremity with both ulcer of toe and inflammation|Varicose veins of unspecified lower extremity with both ulcer of toe and inflammation +C2887208|T047|PT|I83.205|ICD10CM|Varicose veins of unspecified lower extremity with both ulcer other part of foot and inflammation|Varicose veins of unspecified lower extremity with both ulcer other part of foot and inflammation +C2887209|T047|AB|I83.208|ICD10CM|Varicos vn unsp low extrm w ulc oth prt low extrm and inflam|Varicos vn unsp low extrm w ulc oth prt low extrm and inflam +C2887210|T047|AB|I83.209|ICD10CM|Varicos vn unsp low extrm w ulc of unsp site and inflam|Varicos vn unsp low extrm w ulc of unsp site and inflam +C2887210|T047|PT|I83.209|ICD10CM|Varicose veins of unspecified lower extremity with both ulcer of unspecified site and inflammation|Varicose veins of unspecified lower extremity with both ulcer of unspecified site and inflammation +C2887211|T047|AB|I83.21|ICD10CM|Varicose veins of r low extrem w ulc and inflammation|Varicose veins of r low extrem w ulc and inflammation +C2887211|T047|HT|I83.21|ICD10CM|Varicose veins of right lower extremity with both ulcer and inflammation|Varicose veins of right lower extremity with both ulcer and inflammation +C2887212|T047|AB|I83.211|ICD10CM|Varicos vn of r low extrem w ulc of thigh and inflammation|Varicos vn of r low extrem w ulc of thigh and inflammation +C2887212|T047|PT|I83.211|ICD10CM|Varicose veins of right lower extremity with both ulcer of thigh and inflammation|Varicose veins of right lower extremity with both ulcer of thigh and inflammation +C2887213|T047|AB|I83.212|ICD10CM|Varicos vn of r low extrem w ulc of calf and inflammation|Varicos vn of r low extrem w ulc of calf and inflammation +C2887213|T047|PT|I83.212|ICD10CM|Varicose veins of right lower extremity with both ulcer of calf and inflammation|Varicose veins of right lower extremity with both ulcer of calf and inflammation +C2887214|T047|AB|I83.213|ICD10CM|Varicos vn of r low extrem w ulc of ankle and inflammation|Varicos vn of r low extrem w ulc of ankle and inflammation +C2887214|T047|PT|I83.213|ICD10CM|Varicose veins of right lower extremity with both ulcer of ankle and inflammation|Varicose veins of right lower extremity with both ulcer of ankle and inflammation +C2887216|T047|AB|I83.214|ICD10CM|Varicos vn of r low extrem w ulc of heel & midft and inflam|Varicos vn of r low extrem w ulc of heel & midft and inflam +C2887216|T047|PT|I83.214|ICD10CM|Varicose veins of right lower extremity with both ulcer of heel and midfoot and inflammation|Varicose veins of right lower extremity with both ulcer of heel and midfoot and inflammation +C2887218|T047|AB|I83.215|ICD10CM|Varicos vn of r low extrem w ulc oth part of foot and inflam|Varicos vn of r low extrem w ulc oth part of foot and inflam +C2887217|T047|ET|I83.215|ICD10CM|Varicose veins of right lower extremity with both ulcer of toe and inflammation|Varicose veins of right lower extremity with both ulcer of toe and inflammation +C2887218|T047|PT|I83.215|ICD10CM|Varicose veins of right lower extremity with both ulcer other part of foot and inflammation|Varicose veins of right lower extremity with both ulcer other part of foot and inflammation +C2887219|T047|AB|I83.218|ICD10CM|Varicos vn of r low extrem w ulc oth prt low extrm & inflam|Varicos vn of r low extrem w ulc oth prt low extrm & inflam +C2887220|T047|AB|I83.219|ICD10CM|Varicos vn of r low extrem w ulc of unsp site and inflam|Varicos vn of r low extrem w ulc of unsp site and inflam +C2887220|T047|PT|I83.219|ICD10CM|Varicose veins of right lower extremity with both ulcer of unspecified site and inflammation|Varicose veins of right lower extremity with both ulcer of unspecified site and inflammation +C2887221|T047|AB|I83.22|ICD10CM|Varicose veins of l low extrem w ulc and inflammation|Varicose veins of l low extrem w ulc and inflammation +C2887221|T047|HT|I83.22|ICD10CM|Varicose veins of left lower extremity with both ulcer and inflammation|Varicose veins of left lower extremity with both ulcer and inflammation +C2887222|T047|AB|I83.221|ICD10CM|Varicos vn of l low extrem w ulc of thigh and inflammation|Varicos vn of l low extrem w ulc of thigh and inflammation +C2887222|T047|PT|I83.221|ICD10CM|Varicose veins of left lower extremity with both ulcer of thigh and inflammation|Varicose veins of left lower extremity with both ulcer of thigh and inflammation +C2887223|T047|AB|I83.222|ICD10CM|Varicos vn of l low extrem w ulc of calf and inflammation|Varicos vn of l low extrem w ulc of calf and inflammation +C2887223|T047|PT|I83.222|ICD10CM|Varicose veins of left lower extremity with both ulcer of calf and inflammation|Varicose veins of left lower extremity with both ulcer of calf and inflammation +C2887224|T047|AB|I83.223|ICD10CM|Varicos vn of l low extrem w ulc of ankle and inflammation|Varicos vn of l low extrem w ulc of ankle and inflammation +C2887224|T047|PT|I83.223|ICD10CM|Varicose veins of left lower extremity with both ulcer of ankle and inflammation|Varicose veins of left lower extremity with both ulcer of ankle and inflammation +C2887226|T047|AB|I83.224|ICD10CM|Varicos vn of l low extrem w ulc of heel & midft and inflam|Varicos vn of l low extrem w ulc of heel & midft and inflam +C2887226|T047|PT|I83.224|ICD10CM|Varicose veins of left lower extremity with both ulcer of heel and midfoot and inflammation|Varicose veins of left lower extremity with both ulcer of heel and midfoot and inflammation +C2887228|T047|AB|I83.225|ICD10CM|Varicos vn of l low extrem w ulc oth part of foot and inflam|Varicos vn of l low extrem w ulc oth part of foot and inflam +C2887227|T046|ET|I83.225|ICD10CM|Varicose veins of left lower extremity with both ulcer of toe and inflammation|Varicose veins of left lower extremity with both ulcer of toe and inflammation +C2887228|T047|PT|I83.225|ICD10CM|Varicose veins of left lower extremity with both ulcer other part of foot and inflammation|Varicose veins of left lower extremity with both ulcer other part of foot and inflammation +C2887229|T047|AB|I83.228|ICD10CM|Varicos vn of l low extrem w ulc oth prt low extrm & inflam|Varicos vn of l low extrem w ulc oth prt low extrm & inflam +C2887230|T047|AB|I83.229|ICD10CM|Varicos vn of l low extrem w ulc of unsp site and inflam|Varicos vn of l low extrem w ulc of unsp site and inflam +C2887230|T047|PT|I83.229|ICD10CM|Varicose veins of left lower extremity with both ulcer of unspecified site and inflammation|Varicose veins of left lower extremity with both ulcer of unspecified site and inflammation +C1135217|T047|HT|I83.8|ICD10CM|Varicose veins of lower extremities with other complications|Varicose veins of lower extremities with other complications +C1135217|T047|AB|I83.8|ICD10CM|Varicose veins of lower extremities with other complications|Varicose veins of lower extremities with other complications +C1135348|T047|AB|I83.81|ICD10CM|Varicose veins of lower extremities with pain|Varicose veins of lower extremities with pain +C1135348|T047|HT|I83.81|ICD10CM|Varicose veins of lower extremities with pain|Varicose veins of lower extremities with pain +C2887231|T047|AB|I83.811|ICD10CM|Varicose veins of right lower extremity with pain|Varicose veins of right lower extremity with pain +C2887231|T047|PT|I83.811|ICD10CM|Varicose veins of right lower extremity with pain|Varicose veins of right lower extremity with pain +C2887232|T047|AB|I83.812|ICD10CM|Varicose veins of left lower extremity with pain|Varicose veins of left lower extremity with pain +C2887232|T047|PT|I83.812|ICD10CM|Varicose veins of left lower extremity with pain|Varicose veins of left lower extremity with pain +C2887233|T047|AB|I83.813|ICD10CM|Varicose veins of bilateral lower extremities with pain|Varicose veins of bilateral lower extremities with pain +C2887233|T047|PT|I83.813|ICD10CM|Varicose veins of bilateral lower extremities with pain|Varicose veins of bilateral lower extremities with pain +C2887234|T047|AB|I83.819|ICD10CM|Varicose veins of unspecified lower extremity with pain|Varicose veins of unspecified lower extremity with pain +C2887234|T047|PT|I83.819|ICD10CM|Varicose veins of unspecified lower extremity with pain|Varicose veins of unspecified lower extremity with pain +C1135347|T047|ET|I83.89|ICD10CM|Varicose veins of lower extremities with edema|Varicose veins of lower extremities with edema +C1135217|T047|HT|I83.89|ICD10CM|Varicose veins of lower extremities with other complications|Varicose veins of lower extremities with other complications +C1135217|T047|AB|I83.89|ICD10CM|Varicose veins of lower extremities with other complications|Varicose veins of lower extremities with other complications +C1135349|T047|ET|I83.89|ICD10CM|Varicose veins of lower extremities with swelling|Varicose veins of lower extremities with swelling +C2887235|T047|AB|I83.891|ICD10CM|Varicose veins of r low extrem with other complications|Varicose veins of r low extrem with other complications +C2887235|T047|PT|I83.891|ICD10CM|Varicose veins of right lower extremity with other complications|Varicose veins of right lower extremity with other complications +C2887236|T047|AB|I83.892|ICD10CM|Varicose veins of l low extrem with other complications|Varicose veins of l low extrem with other complications +C2887236|T047|PT|I83.892|ICD10CM|Varicose veins of left lower extremity with other complications|Varicose veins of left lower extremity with other complications +C2887237|T047|AB|I83.893|ICD10CM|Varicose veins of bi low extrem w oth complications|Varicose veins of bi low extrem w oth complications +C2887237|T047|PT|I83.893|ICD10CM|Varicose veins of bilateral lower extremities with other complications|Varicose veins of bilateral lower extremities with other complications +C2887238|T047|AB|I83.899|ICD10CM|Varicos vn unsp lower extremity with other complications|Varicos vn unsp lower extremity with other complications +C2887238|T047|PT|I83.899|ICD10CM|Varicose veins of unspecified lower extremity with other complications|Varicose veins of unspecified lower extremity with other complications +C1135335|T047|AB|I83.9|ICD10CM|Asymptomatic varicose veins of lower extremities|Asymptomatic varicose veins of lower extremities +C1135335|T047|HT|I83.9|ICD10CM|Asymptomatic varicose veins of lower extremities|Asymptomatic varicose veins of lower extremities +C0155778|T047|ET|I83.9|ICD10CM|Phlebectasia of lower extremities|Phlebectasia of lower extremities +C0155778|T047|ET|I83.9|ICD10CM|Varicose veins of lower extremities|Varicose veins of lower extremities +C1281489|T047|PT|I83.9|ICD10|Varicose veins of lower extremities without ulcer or inflammation|Varicose veins of lower extremities without ulcer or inflammation +C0155778|T047|ET|I83.9|ICD10CM|Varix of lower extremities|Varix of lower extremities +C2887240|T047|AB|I83.90|ICD10CM|Asymptomatic varicose veins of unspecified lower extremity|Asymptomatic varicose veins of unspecified lower extremity +C2887240|T047|PT|I83.90|ICD10CM|Asymptomatic varicose veins of unspecified lower extremity|Asymptomatic varicose veins of unspecified lower extremity +C0042345|T047|ET|I83.90|ICD10CM|Varicose veins NOS|Varicose veins NOS +C2887241|T047|AB|I83.91|ICD10CM|Asymptomatic varicose veins of right lower extremity|Asymptomatic varicose veins of right lower extremity +C2887241|T047|PT|I83.91|ICD10CM|Asymptomatic varicose veins of right lower extremity|Asymptomatic varicose veins of right lower extremity +C2887242|T047|AB|I83.92|ICD10CM|Asymptomatic varicose veins of left lower extremity|Asymptomatic varicose veins of left lower extremity +C2887242|T047|PT|I83.92|ICD10CM|Asymptomatic varicose veins of left lower extremity|Asymptomatic varicose veins of left lower extremity +C2887243|T047|AB|I83.93|ICD10CM|Asymptomatic varicose veins of bilateral lower extremities|Asymptomatic varicose veins of bilateral lower extremities +C2887243|T047|PT|I83.93|ICD10CM|Asymptomatic varicose veins of bilateral lower extremities|Asymptomatic varicose veins of bilateral lower extremities +C0019112|T047|HT|I84|ICD10|Haemorrhoids|Haemorrhoids +C0019112|T047|HT|I84|ICD10AE|Hemorrhoids|Hemorrhoids +C0155781|T047|PT|I84.0|ICD10|Internal thrombosed haemorrhoids|Internal thrombosed haemorrhoids +C0155781|T047|PT|I84.0|ICD10AE|Internal thrombosed hemorrhoids|Internal thrombosed hemorrhoids +C0155782|T047|PT|I84.1|ICD10|Internal haemorrhoids with other complications|Internal haemorrhoids with other complications +C0155782|T047|PT|I84.1|ICD10AE|Internal hemorrhoids with other complications|Internal hemorrhoids with other complications +C0265035|T047|PT|I84.2|ICD10|Internal haemorrhoids without complication|Internal haemorrhoids without complication +C0265035|T047|PT|I84.2|ICD10AE|Internal hemorrhoids without complication|Internal hemorrhoids without complication +C0155784|T020|PT|I84.3|ICD10|External thrombosed haemorrhoids|External thrombosed haemorrhoids +C0155784|T020|PT|I84.3|ICD10AE|External thrombosed hemorrhoids|External thrombosed hemorrhoids +C0155785|T047|PT|I84.4|ICD10|External haemorrhoids with other complications|External haemorrhoids with other complications +C0155785|T047|PT|I84.4|ICD10AE|External hemorrhoids with other complications|External hemorrhoids with other complications +C0265041|T047|PT|I84.5|ICD10|External haemorrhoids without complication|External haemorrhoids without complication +C0265041|T047|PT|I84.5|ICD10AE|External hemorrhoids without complication|External hemorrhoids without complication +C0155788|T190|PT|I84.6|ICD10|Residual haemorrhoidal skin tags|Residual haemorrhoidal skin tags +C0155788|T190|PT|I84.6|ICD10AE|Residual hemorrhoidal skin tags|Residual hemorrhoidal skin tags +C0235326|T047|PT|I84.7|ICD10|Unspecified thrombosed haemorrhoids|Unspecified thrombosed haemorrhoids +C0235326|T047|PT|I84.7|ICD10AE|Unspecified thrombosed hemorrhoids|Unspecified thrombosed hemorrhoids +C0155787|T046|PT|I84.8|ICD10|Unspecified haemorrhoids with other complications|Unspecified haemorrhoids with other complications +C0155787|T046|PT|I84.8|ICD10AE|Unspecified hemorrhoids with other complications|Unspecified hemorrhoids with other complications +C0041844|T020|PT|I84.9|ICD10|Unspecified haemorrhoids without complication|Unspecified haemorrhoids without complication +C0041844|T020|PT|I84.9|ICD10AE|Unspecified hemorrhoids without complication|Unspecified hemorrhoids without complication +C0014867|T047|HT|I85|ICD10AE|Esophageal varices|Esophageal varices +C0014867|T047|HT|I85|ICD10CM|Esophageal varices|Esophageal varices +C0014867|T047|AB|I85|ICD10CM|Esophageal varices|Esophageal varices +C0014867|T047|HT|I85|ICD10|Oesophageal varices|Oesophageal varices +C0014867|T047|HT|I85.0|ICD10CM|Esophageal varices|Esophageal varices +C0014867|T047|AB|I85.0|ICD10CM|Esophageal varices|Esophageal varices +C0155789|T047|PT|I85.0|ICD10AE|Esophageal varices with bleeding|Esophageal varices with bleeding +C2887257|T047|ET|I85.0|ICD10CM|Idiopathic esophageal varices|Idiopathic esophageal varices +C0155789|T047|PT|I85.0|ICD10|Oesophageal varices with bleeding|Oesophageal varices with bleeding +C2887258|T047|ET|I85.0|ICD10CM|Primary esophageal varices|Primary esophageal varices +C0014867|T047|ET|I85.00|ICD10CM|Esophageal varices NOS|Esophageal varices NOS +C0267092|T047|PT|I85.00|ICD10CM|Esophageal varices without bleeding|Esophageal varices without bleeding +C0267092|T047|AB|I85.00|ICD10CM|Esophageal varices without bleeding|Esophageal varices without bleeding +C0155789|T047|PT|I85.01|ICD10CM|Esophageal varices with bleeding|Esophageal varices with bleeding +C0155789|T047|AB|I85.01|ICD10CM|Esophageal varices with bleeding|Esophageal varices with bleeding +C2887259|T046|ET|I85.1|ICD10CM|Esophageal varices secondary to alcoholic liver disease|Esophageal varices secondary to alcoholic liver disease +C2887260|T046|ET|I85.1|ICD10CM|Esophageal varices secondary to cirrhosis of liver|Esophageal varices secondary to cirrhosis of liver +C2887261|T047|ET|I85.1|ICD10CM|Esophageal varices secondary to schistosomiasis|Esophageal varices secondary to schistosomiasis +C2887262|T046|ET|I85.1|ICD10CM|Esophageal varices secondary to toxic liver disease|Esophageal varices secondary to toxic liver disease +C2887263|T020|AB|I85.1|ICD10CM|Secondary esophageal varices|Secondary esophageal varices +C2887263|T020|HT|I85.1|ICD10CM|Secondary esophageal varices|Secondary esophageal varices +C2887264|T047|AB|I85.10|ICD10CM|Secondary esophageal varices without bleeding|Secondary esophageal varices without bleeding +C2887264|T047|PT|I85.10|ICD10CM|Secondary esophageal varices without bleeding|Secondary esophageal varices without bleeding +C2887265|T020|AB|I85.11|ICD10CM|Secondary esophageal varices with bleeding|Secondary esophageal varices with bleeding +C2887265|T020|PT|I85.11|ICD10CM|Secondary esophageal varices with bleeding|Secondary esophageal varices with bleeding +C0267092|T047|PT|I85.9|ICD10AE|Esophageal varices without bleeding|Esophageal varices without bleeding +C0267092|T047|PT|I85.9|ICD10|Oesophageal varices without bleeding|Oesophageal varices without bleeding +C0155797|T047|HT|I86|ICD10|Varicose veins of other sites|Varicose veins of other sites +C0155797|T047|HT|I86|ICD10CM|Varicose veins of other sites|Varicose veins of other sites +C0155797|T047|AB|I86|ICD10CM|Varicose veins of other sites|Varicose veins of other sites +C0155794|T020|PT|I86.0|ICD10CM|Sublingual varices|Sublingual varices +C0155794|T020|AB|I86.0|ICD10CM|Sublingual varices|Sublingual varices +C0155794|T020|PT|I86.0|ICD10|Sublingual varices|Sublingual varices +C0042341|T047|PT|I86.1|ICD10|Scrotal varices|Scrotal varices +C0042341|T047|PT|I86.1|ICD10CM|Scrotal varices|Scrotal varices +C0042341|T047|AB|I86.1|ICD10CM|Scrotal varices|Scrotal varices +C0042341|T047|ET|I86.1|ICD10CM|Varicocele|Varicocele +C0155795|T047|PT|I86.2|ICD10CM|Pelvic varices|Pelvic varices +C0155795|T047|AB|I86.2|ICD10CM|Pelvic varices|Pelvic varices +C0155795|T047|PT|I86.2|ICD10|Pelvic varices|Pelvic varices +C0155796|T047|PT|I86.3|ICD10|Vulval varices|Vulval varices +C0155796|T047|PT|I86.3|ICD10CM|Vulval varices|Vulval varices +C0155796|T047|AB|I86.3|ICD10CM|Vulval varices|Vulval varices +C0017145|T047|PT|I86.4|ICD10|Gastric varices|Gastric varices +C0017145|T047|PT|I86.4|ICD10CM|Gastric varices|Gastric varices +C0017145|T047|AB|I86.4|ICD10CM|Gastric varices|Gastric varices +C1407930|T020|ET|I86.8|ICD10CM|Varicose ulcer of nasal septum|Varicose ulcer of nasal septum +C0348657|T020|PT|I86.8|ICD10|Varicose veins of other specified sites|Varicose veins of other specified sites +C0348657|T020|PT|I86.8|ICD10CM|Varicose veins of other specified sites|Varicose veins of other specified sites +C0348657|T020|AB|I86.8|ICD10CM|Varicose veins of other specified sites|Varicose veins of other specified sites +C0494626|T047|AB|I87|ICD10CM|Other disorders of veins|Other disorders of veins +C0494626|T047|HT|I87|ICD10CM|Other disorders of veins|Other disorders of veins +C0494626|T047|HT|I87|ICD10|Other disorders of veins|Other disorders of veins +C1135350|T047|ET|I87.0|ICD10CM|Chronic venous hypertension due to deep vein thrombosis|Chronic venous hypertension due to deep vein thrombosis +C0032807|T047|PT|I87.0|ICD10|Postphlebitic syndrome|Postphlebitic syndrome +C0032807|T047|ET|I87.0|ICD10CM|Postphlebitic syndrome|Postphlebitic syndrome +C0277919|T047|AB|I87.0|ICD10CM|Postthrombotic syndrome|Postthrombotic syndrome +C0277919|T047|HT|I87.0|ICD10CM|Postthrombotic syndrome|Postthrombotic syndrome +C2887266|T047|ET|I87.00|ICD10CM|Asymptomatic Postthrombotic syndrome|Asymptomatic Postthrombotic syndrome +C2887267|T047|AB|I87.00|ICD10CM|Postthrombotic syndrome without complications|Postthrombotic syndrome without complications +C2887267|T047|HT|I87.00|ICD10CM|Postthrombotic syndrome without complications|Postthrombotic syndrome without complications +C2887268|T047|AB|I87.001|ICD10CM|Postthrombotic syndrome w/o complications of r low extrem|Postthrombotic syndrome w/o complications of r low extrem +C2887268|T047|PT|I87.001|ICD10CM|Postthrombotic syndrome without complications of right lower extremity|Postthrombotic syndrome without complications of right lower extremity +C2887269|T047|AB|I87.002|ICD10CM|Postthrombotic syndrome w/o complications of l low extrem|Postthrombotic syndrome w/o complications of l low extrem +C2887269|T047|PT|I87.002|ICD10CM|Postthrombotic syndrome without complications of left lower extremity|Postthrombotic syndrome without complications of left lower extremity +C2887270|T047|AB|I87.003|ICD10CM|Postthrom syndrome w/o complications of bilateral low extrm|Postthrom syndrome w/o complications of bilateral low extrm +C2887270|T047|PT|I87.003|ICD10CM|Postthrombotic syndrome without complications of bilateral lower extremity|Postthrombotic syndrome without complications of bilateral lower extremity +C0277919|T047|ET|I87.009|ICD10CM|Postthrombotic syndrome NOS|Postthrombotic syndrome NOS +C2887271|T047|AB|I87.009|ICD10CM|Postthrombotic syndrome w/o complications of unsp extremity|Postthrombotic syndrome w/o complications of unsp extremity +C2887271|T047|PT|I87.009|ICD10CM|Postthrombotic syndrome without complications of unspecified extremity|Postthrombotic syndrome without complications of unspecified extremity +C2887272|T047|AB|I87.01|ICD10CM|Postthrombotic syndrome with ulcer|Postthrombotic syndrome with ulcer +C2887272|T047|HT|I87.01|ICD10CM|Postthrombotic syndrome with ulcer|Postthrombotic syndrome with ulcer +C2887273|T047|AB|I87.011|ICD10CM|Postthrombotic syndrome with ulcer of right lower extremity|Postthrombotic syndrome with ulcer of right lower extremity +C2887273|T047|PT|I87.011|ICD10CM|Postthrombotic syndrome with ulcer of right lower extremity|Postthrombotic syndrome with ulcer of right lower extremity +C2887274|T047|AB|I87.012|ICD10CM|Postthrombotic syndrome with ulcer of left lower extremity|Postthrombotic syndrome with ulcer of left lower extremity +C2887274|T047|PT|I87.012|ICD10CM|Postthrombotic syndrome with ulcer of left lower extremity|Postthrombotic syndrome with ulcer of left lower extremity +C2887275|T047|AB|I87.013|ICD10CM|Postthrombotic syndrome w ulcer of bilateral lower extremity|Postthrombotic syndrome w ulcer of bilateral lower extremity +C2887275|T047|PT|I87.013|ICD10CM|Postthrombotic syndrome with ulcer of bilateral lower extremity|Postthrombotic syndrome with ulcer of bilateral lower extremity +C2887276|T047|AB|I87.019|ICD10CM|Postthrombotic syndrome with ulcer of unsp lower extremity|Postthrombotic syndrome with ulcer of unsp lower extremity +C2887276|T047|PT|I87.019|ICD10CM|Postthrombotic syndrome with ulcer of unspecified lower extremity|Postthrombotic syndrome with ulcer of unspecified lower extremity +C2887277|T047|AB|I87.02|ICD10CM|Postthrombotic syndrome with inflammation|Postthrombotic syndrome with inflammation +C2887277|T047|HT|I87.02|ICD10CM|Postthrombotic syndrome with inflammation|Postthrombotic syndrome with inflammation +C2887278|T047|AB|I87.021|ICD10CM|Postthrombotic syndrome w inflammation of r low extrem|Postthrombotic syndrome w inflammation of r low extrem +C2887278|T047|PT|I87.021|ICD10CM|Postthrombotic syndrome with inflammation of right lower extremity|Postthrombotic syndrome with inflammation of right lower extremity +C2887279|T047|AB|I87.022|ICD10CM|Postthrombotic syndrome w inflammation of l low extrem|Postthrombotic syndrome w inflammation of l low extrem +C2887279|T047|PT|I87.022|ICD10CM|Postthrombotic syndrome with inflammation of left lower extremity|Postthrombotic syndrome with inflammation of left lower extremity +C2887280|T047|AB|I87.023|ICD10CM|Postthrom syndrome w inflammation of bilateral low extrm|Postthrom syndrome w inflammation of bilateral low extrm +C2887280|T047|PT|I87.023|ICD10CM|Postthrombotic syndrome with inflammation of bilateral lower extremity|Postthrombotic syndrome with inflammation of bilateral lower extremity +C2887281|T047|AB|I87.029|ICD10CM|Postthrombotic syndrome w inflammation of unsp low extrm|Postthrombotic syndrome w inflammation of unsp low extrm +C2887281|T047|PT|I87.029|ICD10CM|Postthrombotic syndrome with inflammation of unspecified lower extremity|Postthrombotic syndrome with inflammation of unspecified lower extremity +C2887282|T047|AB|I87.03|ICD10CM|Postthrombotic syndrome with ulcer and inflammation|Postthrombotic syndrome with ulcer and inflammation +C2887282|T047|HT|I87.03|ICD10CM|Postthrombotic syndrome with ulcer and inflammation|Postthrombotic syndrome with ulcer and inflammation +C2887283|T047|AB|I87.031|ICD10CM|Postthrom syndrome w ulcer and inflammation of r low extrem|Postthrom syndrome w ulcer and inflammation of r low extrem +C2887283|T047|PT|I87.031|ICD10CM|Postthrombotic syndrome with ulcer and inflammation of right lower extremity|Postthrombotic syndrome with ulcer and inflammation of right lower extremity +C2887284|T047|AB|I87.032|ICD10CM|Postthrom syndrome w ulcer and inflammation of l low extrem|Postthrom syndrome w ulcer and inflammation of l low extrem +C2887284|T047|PT|I87.032|ICD10CM|Postthrombotic syndrome with ulcer and inflammation of left lower extremity|Postthrombotic syndrome with ulcer and inflammation of left lower extremity +C2887285|T047|AB|I87.033|ICD10CM|Postthrom syndrome w ulcer and inflam of bilateral low extrm|Postthrom syndrome w ulcer and inflam of bilateral low extrm +C2887285|T047|PT|I87.033|ICD10CM|Postthrombotic syndrome with ulcer and inflammation of bilateral lower extremity|Postthrombotic syndrome with ulcer and inflammation of bilateral lower extremity +C2887286|T047|AB|I87.039|ICD10CM|Postthrom syndrome w ulcer and inflam of unsp low extrm|Postthrom syndrome w ulcer and inflam of unsp low extrm +C2887286|T047|PT|I87.039|ICD10CM|Postthrombotic syndrome with ulcer and inflammation of unspecified lower extremity|Postthrombotic syndrome with ulcer and inflammation of unspecified lower extremity +C2887287|T047|AB|I87.09|ICD10CM|Postthrombotic syndrome with other complications|Postthrombotic syndrome with other complications +C2887287|T047|HT|I87.09|ICD10CM|Postthrombotic syndrome with other complications|Postthrombotic syndrome with other complications +C2887288|T047|AB|I87.091|ICD10CM|Postthrombotic syndrome w oth complications of r low extrem|Postthrombotic syndrome w oth complications of r low extrem +C2887288|T047|PT|I87.091|ICD10CM|Postthrombotic syndrome with other complications of right lower extremity|Postthrombotic syndrome with other complications of right lower extremity +C2887289|T047|AB|I87.092|ICD10CM|Postthrombotic syndrome w oth complications of l low extrem|Postthrombotic syndrome w oth complications of l low extrem +C2887289|T047|PT|I87.092|ICD10CM|Postthrombotic syndrome with other complications of left lower extremity|Postthrombotic syndrome with other complications of left lower extremity +C2887290|T047|AB|I87.093|ICD10CM|Postthrom syndrome w oth comp of bilateral low extrm|Postthrom syndrome w oth comp of bilateral low extrm +C2887290|T047|PT|I87.093|ICD10CM|Postthrombotic syndrome with other complications of bilateral lower extremity|Postthrombotic syndrome with other complications of bilateral lower extremity +C2887291|T047|AB|I87.099|ICD10CM|Postthrom syndrome w oth complications of unsp low extrm|Postthrom syndrome w oth complications of unsp low extrm +C2887291|T047|PT|I87.099|ICD10CM|Postthrombotic syndrome with other complications of unspecified lower extremity|Postthrombotic syndrome with other complications of unspecified lower extremity +C0155802|T020|PT|I87.1|ICD10CM|Compression of vein|Compression of vein +C0155802|T020|AB|I87.1|ICD10CM|Compression of vein|Compression of vein +C0155802|T020|PT|I87.1|ICD10|Compression of vein|Compression of vein +C0265071|T047|ET|I87.1|ICD10CM|Stricture of vein|Stricture of vein +C2887292|T047|ET|I87.1|ICD10CM|Vena cava syndrome (inferior) (superior)|Vena cava syndrome (inferior) (superior) +C0011620|T047|ET|I87.2|ICD10CM|Stasis dermatitis|Stasis dermatitis +C1306557|T047|PT|I87.2|ICD10|Venous insufficiency (chronic) (peripheral)|Venous insufficiency (chronic) (peripheral) +C1306557|T047|PT|I87.2|ICD10CM|Venous insufficiency (chronic) (peripheral)|Venous insufficiency (chronic) (peripheral) +C1306557|T047|AB|I87.2|ICD10CM|Venous insufficiency (chronic) (peripheral)|Venous insufficiency (chronic) (peripheral) +C1135223|T047|AB|I87.3|ICD10CM|Chronic venous hypertension (idiopathic)|Chronic venous hypertension (idiopathic) +C1135223|T047|HT|I87.3|ICD10CM|Chronic venous hypertension (idiopathic)|Chronic venous hypertension (idiopathic) +C1135352|T047|ET|I87.3|ICD10CM|Stasis edema|Stasis edema +C2887293|T047|ET|I87.30|ICD10CM|Asymptomatic chronic venous hypertension (idiopathic)|Asymptomatic chronic venous hypertension (idiopathic) +C2887294|T047|AB|I87.30|ICD10CM|Chronic venous hypertension (idiopathic) w/o complications|Chronic venous hypertension (idiopathic) w/o complications +C2887294|T047|HT|I87.30|ICD10CM|Chronic venous hypertension (idiopathic) without complications|Chronic venous hypertension (idiopathic) without complications +C2887295|T047|PT|I87.301|ICD10CM|Chronic venous hypertension (idiopathic) without complications of right lower extremity|Chronic venous hypertension (idiopathic) without complications of right lower extremity +C2887295|T047|AB|I87.301|ICD10CM|Chronic venous hypertension w/o comp of r low extrem|Chronic venous hypertension w/o comp of r low extrem +C2887296|T047|PT|I87.302|ICD10CM|Chronic venous hypertension (idiopathic) without complications of left lower extremity|Chronic venous hypertension (idiopathic) without complications of left lower extremity +C2887296|T047|AB|I87.302|ICD10CM|Chronic venous hypertension w/o comp of l low extrem|Chronic venous hypertension w/o comp of l low extrem +C2887297|T047|PT|I87.303|ICD10CM|Chronic venous hypertension (idiopathic) without complications of bilateral lower extremity|Chronic venous hypertension (idiopathic) without complications of bilateral lower extremity +C2887297|T047|AB|I87.303|ICD10CM|Chronic venous hypertension w/o comp of bilateral low extrm|Chronic venous hypertension w/o comp of bilateral low extrm +C2887298|T047|PT|I87.309|ICD10CM|Chronic venous hypertension (idiopathic) without complications of unspecified lower extremity|Chronic venous hypertension (idiopathic) without complications of unspecified lower extremity +C1135354|T047|ET|I87.309|ICD10CM|Chronic venous hypertension NOS|Chronic venous hypertension NOS +C2887298|T047|AB|I87.309|ICD10CM|Chronic venous hypertension w/o comp of unsp low extrm|Chronic venous hypertension w/o comp of unsp low extrm +C2887299|T047|AB|I87.31|ICD10CM|Chronic venous hypertension (idiopathic) with ulcer|Chronic venous hypertension (idiopathic) with ulcer +C2887299|T047|HT|I87.31|ICD10CM|Chronic venous hypertension (idiopathic) with ulcer|Chronic venous hypertension (idiopathic) with ulcer +C2887300|T047|PT|I87.311|ICD10CM|Chronic venous hypertension (idiopathic) with ulcer of right lower extremity|Chronic venous hypertension (idiopathic) with ulcer of right lower extremity +C2887300|T047|AB|I87.311|ICD10CM|Chronic venous hypertension w ulcer of r low extrem|Chronic venous hypertension w ulcer of r low extrem +C2887301|T047|PT|I87.312|ICD10CM|Chronic venous hypertension (idiopathic) with ulcer of left lower extremity|Chronic venous hypertension (idiopathic) with ulcer of left lower extremity +C2887301|T047|AB|I87.312|ICD10CM|Chronic venous hypertension w ulcer of l low extrem|Chronic venous hypertension w ulcer of l low extrem +C2887302|T047|PT|I87.313|ICD10CM|Chronic venous hypertension (idiopathic) with ulcer of bilateral lower extremity|Chronic venous hypertension (idiopathic) with ulcer of bilateral lower extremity +C2887302|T047|AB|I87.313|ICD10CM|Chronic venous hypertension w ulcer of bilateral low extrm|Chronic venous hypertension w ulcer of bilateral low extrm +C2887303|T047|PT|I87.319|ICD10CM|Chronic venous hypertension (idiopathic) with ulcer of unspecified lower extremity|Chronic venous hypertension (idiopathic) with ulcer of unspecified lower extremity +C2887303|T047|AB|I87.319|ICD10CM|Chronic venous hypertension w ulcer of unsp low extrm|Chronic venous hypertension w ulcer of unsp low extrm +C2887304|T047|AB|I87.32|ICD10CM|Chronic venous hypertension (idiopathic) with inflammation|Chronic venous hypertension (idiopathic) with inflammation +C2887304|T047|HT|I87.32|ICD10CM|Chronic venous hypertension (idiopathic) with inflammation|Chronic venous hypertension (idiopathic) with inflammation +C2887305|T047|PT|I87.321|ICD10CM|Chronic venous hypertension (idiopathic) with inflammation of right lower extremity|Chronic venous hypertension (idiopathic) with inflammation of right lower extremity +C2887305|T047|AB|I87.321|ICD10CM|Chronic venous hypertension w inflammation of r low extrem|Chronic venous hypertension w inflammation of r low extrem +C2887306|T047|PT|I87.322|ICD10CM|Chronic venous hypertension (idiopathic) with inflammation of left lower extremity|Chronic venous hypertension (idiopathic) with inflammation of left lower extremity +C2887306|T047|AB|I87.322|ICD10CM|Chronic venous hypertension w inflammation of l low extrem|Chronic venous hypertension w inflammation of l low extrem +C2887307|T047|AB|I87.323|ICD10CM|Chronic venous htn w inflammation of bilateral low extrm|Chronic venous htn w inflammation of bilateral low extrm +C2887307|T047|PT|I87.323|ICD10CM|Chronic venous hypertension (idiopathic) with inflammation of bilateral lower extremity|Chronic venous hypertension (idiopathic) with inflammation of bilateral lower extremity +C2887308|T047|PT|I87.329|ICD10CM|Chronic venous hypertension (idiopathic) with inflammation of unspecified lower extremity|Chronic venous hypertension (idiopathic) with inflammation of unspecified lower extremity +C2887308|T047|AB|I87.329|ICD10CM|Chronic venous hypertension w inflammation of unsp low extrm|Chronic venous hypertension w inflammation of unsp low extrm +C2887309|T047|HT|I87.33|ICD10CM|Chronic venous hypertension (idiopathic) with ulcer and inflammation|Chronic venous hypertension (idiopathic) with ulcer and inflammation +C2887309|T047|AB|I87.33|ICD10CM|Chronic venous hypertension w ulcer and inflammation|Chronic venous hypertension w ulcer and inflammation +C2887310|T047|AB|I87.331|ICD10CM|Chronic venous htn w ulcer and inflammation of r low extrem|Chronic venous htn w ulcer and inflammation of r low extrem +C2887310|T047|PT|I87.331|ICD10CM|Chronic venous hypertension (idiopathic) with ulcer and inflammation of right lower extremity|Chronic venous hypertension (idiopathic) with ulcer and inflammation of right lower extremity +C2887311|T047|AB|I87.332|ICD10CM|Chronic venous htn w ulcer and inflammation of l low extrem|Chronic venous htn w ulcer and inflammation of l low extrem +C2887311|T047|PT|I87.332|ICD10CM|Chronic venous hypertension (idiopathic) with ulcer and inflammation of left lower extremity|Chronic venous hypertension (idiopathic) with ulcer and inflammation of left lower extremity +C2887312|T047|AB|I87.333|ICD10CM|Chronic venous htn w ulcer and inflam of bilateral low extrm|Chronic venous htn w ulcer and inflam of bilateral low extrm +C2887312|T047|PT|I87.333|ICD10CM|Chronic venous hypertension (idiopathic) with ulcer and inflammation of bilateral lower extremity|Chronic venous hypertension (idiopathic) with ulcer and inflammation of bilateral lower extremity +C2887313|T047|AB|I87.339|ICD10CM|Chronic venous htn w ulcer and inflam of unsp low extrm|Chronic venous htn w ulcer and inflam of unsp low extrm +C2887313|T047|PT|I87.339|ICD10CM|Chronic venous hypertension (idiopathic) with ulcer and inflammation of unspecified lower extremity|Chronic venous hypertension (idiopathic) with ulcer and inflammation of unspecified lower extremity +C2887314|T047|AB|I87.39|ICD10CM|Chronic venous hypertension (idiopathic) w oth complications|Chronic venous hypertension (idiopathic) w oth complications +C2887314|T047|HT|I87.39|ICD10CM|Chronic venous hypertension (idiopathic) with other complications|Chronic venous hypertension (idiopathic) with other complications +C2887315|T047|PT|I87.391|ICD10CM|Chronic venous hypertension (idiopathic) with other complications of right lower extremity|Chronic venous hypertension (idiopathic) with other complications of right lower extremity +C2887315|T047|AB|I87.391|ICD10CM|Chronic venous hypertension w oth comp of r low extrem|Chronic venous hypertension w oth comp of r low extrem +C2887316|T047|PT|I87.392|ICD10CM|Chronic venous hypertension (idiopathic) with other complications of left lower extremity|Chronic venous hypertension (idiopathic) with other complications of left lower extremity +C2887316|T047|AB|I87.392|ICD10CM|Chronic venous hypertension w oth comp of l low extrem|Chronic venous hypertension w oth comp of l low extrem +C2887317|T047|AB|I87.393|ICD10CM|Chronic venous htn w oth comp of bilateral low extrm|Chronic venous htn w oth comp of bilateral low extrm +C2887317|T047|PT|I87.393|ICD10CM|Chronic venous hypertension (idiopathic) with other complications of bilateral lower extremity|Chronic venous hypertension (idiopathic) with other complications of bilateral lower extremity +C2887318|T047|PT|I87.399|ICD10CM|Chronic venous hypertension (idiopathic) with other complications of unspecified lower extremity|Chronic venous hypertension (idiopathic) with other complications of unspecified lower extremity +C2887318|T047|AB|I87.399|ICD10CM|Chronic venous hypertension w oth comp of unsp low extrm|Chronic venous hypertension w oth comp of unsp low extrm +C0348658|T047|PT|I87.8|ICD10|Other specified disorders of veins|Other specified disorders of veins +C0348658|T047|PT|I87.8|ICD10CM|Other specified disorders of veins|Other specified disorders of veins +C0348658|T047|AB|I87.8|ICD10CM|Other specified disorders of veins|Other specified disorders of veins +C0333494|T047|ET|I87.8|ICD10CM|Phlebosclerosis|Phlebosclerosis +C0333494|T047|ET|I87.8|ICD10CM|Venofibrosis|Venofibrosis +C0235522|T047|PT|I87.9|ICD10CM|Disorder of vein, unspecified|Disorder of vein, unspecified +C0235522|T047|AB|I87.9|ICD10CM|Disorder of vein, unspecified|Disorder of vein, unspecified +C0235522|T047|PT|I87.9|ICD10|Disorder of vein, unspecified|Disorder of vein, unspecified +C0494627|T047|AB|I88|ICD10CM|Nonspecific lymphadenitis|Nonspecific lymphadenitis +C0494627|T047|HT|I88|ICD10CM|Nonspecific lymphadenitis|Nonspecific lymphadenitis +C0494627|T047|HT|I88|ICD10|Nonspecific lymphadenitis|Nonspecific lymphadenitis +C2887319|T047|ET|I88.0|ICD10CM|Mesenteric lymphadenitis (acute)(chronic)|Mesenteric lymphadenitis (acute)(chronic) +C0025469|T047|PT|I88.0|ICD10|Nonspecific mesenteric lymphadenitis|Nonspecific mesenteric lymphadenitis +C0025469|T047|PT|I88.0|ICD10CM|Nonspecific mesenteric lymphadenitis|Nonspecific mesenteric lymphadenitis +C0025469|T047|AB|I88.0|ICD10CM|Nonspecific mesenteric lymphadenitis|Nonspecific mesenteric lymphadenitis +C0024205|T047|ET|I88.1|ICD10CM|Adenitis|Adenitis +C0494628|T047|PT|I88.1|ICD10|Chronic lymphadenitis, except mesenteric|Chronic lymphadenitis, except mesenteric +C0494628|T047|PT|I88.1|ICD10CM|Chronic lymphadenitis, except mesenteric|Chronic lymphadenitis, except mesenteric +C0494628|T047|AB|I88.1|ICD10CM|Chronic lymphadenitis, except mesenteric|Chronic lymphadenitis, except mesenteric +C0024205|T047|ET|I88.1|ICD10CM|Lymphadenitis|Lymphadenitis +C0348659|T047|PT|I88.8|ICD10|Other nonspecific lymphadenitis|Other nonspecific lymphadenitis +C0348659|T047|PT|I88.8|ICD10CM|Other nonspecific lymphadenitis|Other nonspecific lymphadenitis +C0348659|T047|AB|I88.8|ICD10CM|Other nonspecific lymphadenitis|Other nonspecific lymphadenitis +C0024205|T047|ET|I88.9|ICD10CM|Lymphadenitis NOS|Lymphadenitis NOS +C0494627|T047|PT|I88.9|ICD10CM|Nonspecific lymphadenitis, unspecified|Nonspecific lymphadenitis, unspecified +C0494627|T047|AB|I88.9|ICD10CM|Nonspecific lymphadenitis, unspecified|Nonspecific lymphadenitis, unspecified +C0494627|T047|PT|I88.9|ICD10|Nonspecific lymphadenitis, unspecified|Nonspecific lymphadenitis, unspecified +C0494629|T047|AB|I89|ICD10CM|Oth noninfective disorders of lymphatic vessels and nodes|Oth noninfective disorders of lymphatic vessels and nodes +C0494629|T047|HT|I89|ICD10CM|Other noninfective disorders of lymphatic vessels and lymph nodes|Other noninfective disorders of lymphatic vessels and lymph nodes +C0494629|T047|HT|I89|ICD10|Other noninfective disorders of lymphatic vessels and lymph nodes|Other noninfective disorders of lymphatic vessels and lymph nodes +C0265194|T047|ET|I89.0|ICD10CM|Elephantiasis (nonfilarial) NOS|Elephantiasis (nonfilarial) NOS +C0024214|T047|ET|I89.0|ICD10CM|Lymphangiectasis|Lymphangiectasis +C0494630|T047|PT|I89.0|ICD10AE|Lymphedema, not elsewhere classified|Lymphedema, not elsewhere classified +C0494630|T047|PT|I89.0|ICD10CM|Lymphedema, not elsewhere classified|Lymphedema, not elsewhere classified +C0494630|T047|AB|I89.0|ICD10CM|Lymphedema, not elsewhere classified|Lymphedema, not elsewhere classified +C0494630|T047|PT|I89.0|ICD10|Lymphoedema, not elsewhere classified|Lymphoedema, not elsewhere classified +C0265185|T047|ET|I89.0|ICD10CM|Obliteration, lymphatic vessel|Obliteration, lymphatic vessel +C0238261|T047|ET|I89.0|ICD10CM|Praecox lymphedema|Praecox lymphedema +C0265191|T047|ET|I89.0|ICD10CM|Secondary lymphedema|Secondary lymphedema +C0265187|T047|ET|I89.1|ICD10CM|Chronic lymphangitis|Chronic lymphangitis +C0024225|T047|PT|I89.1|ICD10CM|Lymphangitis|Lymphangitis +C0024225|T047|AB|I89.1|ICD10CM|Lymphangitis|Lymphangitis +C0024225|T047|PT|I89.1|ICD10|Lymphangitis|Lymphangitis +C0024225|T047|ET|I89.1|ICD10CM|Lymphangitis NOS|Lymphangitis NOS +C0265186|T047|ET|I89.1|ICD10CM|Subacute lymphangitis|Subacute lymphangitis +C0265188|T047|ET|I89.8|ICD10CM|Chylocele (nonfilarial)|Chylocele (nonfilarial) +C0008732|T047|ET|I89.8|ICD10CM|Chylous ascites|Chylous ascites +C0302146|T047|ET|I89.8|ICD10CM|Chylous cyst|Chylous cyst +C1403031|T047|ET|I89.8|ICD10CM|Lipomelanotic reticulosis|Lipomelanotic reticulosis +C0865749|T020|ET|I89.8|ICD10CM|Lymph node or vessel fistula|Lymph node or vessel fistula +C0865750|T047|ET|I89.8|ICD10CM|Lymph node or vessel infarction|Lymph node or vessel infarction +C0865751|T047|ET|I89.8|ICD10CM|Lymph node or vessel rupture|Lymph node or vessel rupture +C0348660|T047|AB|I89.8|ICD10CM|Oth noninfective disorders of lymphatic vessels and nodes|Oth noninfective disorders of lymphatic vessels and nodes +C0348660|T047|PT|I89.8|ICD10CM|Other specified noninfective disorders of lymphatic vessels and lymph nodes|Other specified noninfective disorders of lymphatic vessels and lymph nodes +C0348660|T047|PT|I89.8|ICD10|Other specified noninfective disorders of lymphatic vessels and lymph nodes|Other specified noninfective disorders of lymphatic vessels and lymph nodes +C0920348|T047|ET|I89.9|ICD10CM|Disease of lymphatic vessels NOS|Disease of lymphatic vessels NOS +C0494631|T047|PT|I89.9|ICD10CM|Noninfective disorder of lymphatic vessels and lymph nodes, unspecified|Noninfective disorder of lymphatic vessels and lymph nodes, unspecified +C0494631|T047|PT|I89.9|ICD10|Noninfective disorder of lymphatic vessels and lymph nodes, unspecified|Noninfective disorder of lymphatic vessels and lymph nodes, unspecified +C0494631|T047|AB|I89.9|ICD10CM|Noninfective disorder of lymphatic vessels and nodes, unsp|Noninfective disorder of lymphatic vessels and nodes, unsp +C0020649|T033|HT|I95|ICD10|Hypotension|Hypotension +C0020649|T033|HT|I95|ICD10CM|Hypotension|Hypotension +C0020649|T033|AB|I95|ICD10CM|Hypotension|Hypotension +C0348668|T047|HT|I95-I99|ICD10CM|Other and unspecified disorders of the circulatory system (I95-I99)|Other and unspecified disorders of the circulatory system (I95-I99) +C0348668|T047|HT|I95-I99.9|ICD10|Other and unspecified disorders of the circulatory system|Other and unspecified disorders of the circulatory system +C0348888|T046|PT|I95.0|ICD10|Idiopathic hypotension|Idiopathic hypotension +C0348888|T046|PT|I95.0|ICD10CM|Idiopathic hypotension|Idiopathic hypotension +C0348888|T046|AB|I95.0|ICD10CM|Idiopathic hypotension|Idiopathic hypotension +C0020651|T047|ET|I95.1|ICD10CM|Hypotension, postural|Hypotension, postural +C0020651|T047|PT|I95.1|ICD10CM|Orthostatic hypotension|Orthostatic hypotension +C0020651|T047|AB|I95.1|ICD10CM|Orthostatic hypotension|Orthostatic hypotension +C0020651|T047|PT|I95.1|ICD10|Orthostatic hypotension|Orthostatic hypotension +C0340858|T046|PT|I95.2|ICD10|Hypotension due to drugs|Hypotension due to drugs +C0340858|T046|PT|I95.2|ICD10CM|Hypotension due to drugs|Hypotension due to drugs +C0340858|T046|AB|I95.2|ICD10CM|Hypotension due to drugs|Hypotension due to drugs +C2887320|T046|ET|I95.2|ICD10CM|Orthostatic hypotension due to drugs|Orthostatic hypotension due to drugs +C1260413|T046|AB|I95.3|ICD10CM|Hypotension of hemodialysis|Hypotension of hemodialysis +C1260413|T046|PT|I95.3|ICD10CM|Hypotension of hemodialysis|Hypotension of hemodialysis +C1260413|T046|ET|I95.3|ICD10CM|Intra-dialytic hypotension|Intra-dialytic hypotension +C0348663|T046|PT|I95.8|ICD10|Other hypotension|Other hypotension +C0348663|T046|HT|I95.8|ICD10CM|Other hypotension|Other hypotension +C0348663|T046|AB|I95.8|ICD10CM|Other hypotension|Other hypotension +C2887321|T046|AB|I95.81|ICD10CM|Postprocedural hypotension|Postprocedural hypotension +C2887321|T046|PT|I95.81|ICD10CM|Postprocedural hypotension|Postprocedural hypotension +C0155800|T047|ET|I95.89|ICD10CM|Chronic hypotension|Chronic hypotension +C0348663|T046|PT|I95.89|ICD10CM|Other hypotension|Other hypotension +C0348663|T046|AB|I95.89|ICD10CM|Other hypotension|Other hypotension +C0020649|T033|PT|I95.9|ICD10|Hypotension, unspecified|Hypotension, unspecified +C0020649|T033|PT|I95.9|ICD10CM|Hypotension, unspecified|Hypotension, unspecified +C0020649|T033|AB|I95.9|ICD10CM|Hypotension, unspecified|Hypotension, unspecified +C0495663|T047|PT|I96|ICD10CM|Gangrene, not elsewhere classified|Gangrene, not elsewhere classified +C0495663|T047|AB|I96|ICD10CM|Gangrene, not elsewhere classified|Gangrene, not elsewhere classified +C0854456|T046|ET|I96|ICD10CM|Gangrenous cellulitis|Gangrenous cellulitis +C2887322|T047|AB|I97|ICD10CM|Intraop and postproc comp and disorders of circ sys, NEC|Intraop and postproc comp and disorders of circ sys, NEC +C0494632|T047|HT|I97|ICD10|Postprocedural disorders of circulatory system, not elsewhere classified|Postprocedural disorders of circulatory system, not elsewhere classified +C0032805|T047|PT|I97.0|ICD10|Postcardiotomy syndrome|Postcardiotomy syndrome +C0032805|T047|PT|I97.0|ICD10CM|Postcardiotomy syndrome|Postcardiotomy syndrome +C0032805|T047|AB|I97.0|ICD10CM|Postcardiotomy syndrome|Postcardiotomy syndrome +C0348664|T046|PT|I97.1|ICD10|Other functional disturbances following cardiac surgery|Other functional disturbances following cardiac surgery +C2887323|T047|AB|I97.1|ICD10CM|Other postprocedural cardiac functional disturbances|Other postprocedural cardiac functional disturbances +C2887323|T047|HT|I97.1|ICD10CM|Other postprocedural cardiac functional disturbances|Other postprocedural cardiac functional disturbances +C2887324|T047|AB|I97.11|ICD10CM|Postprocedural cardiac insufficiency|Postprocedural cardiac insufficiency +C2887324|T047|HT|I97.11|ICD10CM|Postprocedural cardiac insufficiency|Postprocedural cardiac insufficiency +C2887325|T047|AB|I97.110|ICD10CM|Postproc cardiac insufficiency following cardiac surgery|Postproc cardiac insufficiency following cardiac surgery +C2887325|T047|PT|I97.110|ICD10CM|Postprocedural cardiac insufficiency following cardiac surgery|Postprocedural cardiac insufficiency following cardiac surgery +C2887326|T047|AB|I97.111|ICD10CM|Postprocedural cardiac insufficiency following other surgery|Postprocedural cardiac insufficiency following other surgery +C2887326|T047|PT|I97.111|ICD10CM|Postprocedural cardiac insufficiency following other surgery|Postprocedural cardiac insufficiency following other surgery +C2887327|T046|HT|I97.12|ICD10CM|Postprocedural cardiac arrest|Postprocedural cardiac arrest +C2887327|T046|AB|I97.12|ICD10CM|Postprocedural cardiac arrest|Postprocedural cardiac arrest +C2887328|T047|AB|I97.120|ICD10CM|Postprocedural cardiac arrest following cardiac surgery|Postprocedural cardiac arrest following cardiac surgery +C2887328|T047|PT|I97.120|ICD10CM|Postprocedural cardiac arrest following cardiac surgery|Postprocedural cardiac arrest following cardiac surgery +C2887329|T047|AB|I97.121|ICD10CM|Postprocedural cardiac arrest following other surgery|Postprocedural cardiac arrest following other surgery +C2887329|T047|PT|I97.121|ICD10CM|Postprocedural cardiac arrest following other surgery|Postprocedural cardiac arrest following other surgery +C2887330|T047|AB|I97.13|ICD10CM|Postprocedural heart failure|Postprocedural heart failure +C2887330|T047|HT|I97.13|ICD10CM|Postprocedural heart failure|Postprocedural heart failure +C2887331|T047|AB|I97.130|ICD10CM|Postprocedural heart failure following cardiac surgery|Postprocedural heart failure following cardiac surgery +C2887331|T047|PT|I97.130|ICD10CM|Postprocedural heart failure following cardiac surgery|Postprocedural heart failure following cardiac surgery +C2887332|T047|AB|I97.131|ICD10CM|Postprocedural heart failure following other surgery|Postprocedural heart failure following other surgery +C2887332|T047|PT|I97.131|ICD10CM|Postprocedural heart failure following other surgery|Postprocedural heart failure following other surgery +C2887323|T047|HT|I97.19|ICD10CM|Other postprocedural cardiac functional disturbances|Other postprocedural cardiac functional disturbances +C2887323|T047|AB|I97.19|ICD10CM|Other postprocedural cardiac functional disturbances|Other postprocedural cardiac functional disturbances +C2887333|T047|AB|I97.190|ICD10CM|Oth postproc cardiac functn disturb fol cardiac surgery|Oth postproc cardiac functn disturb fol cardiac surgery +C2887333|T047|PT|I97.190|ICD10CM|Other postprocedural cardiac functional disturbances following cardiac surgery|Other postprocedural cardiac functional disturbances following cardiac surgery +C2887334|T047|AB|I97.191|ICD10CM|Oth postproc cardiac functn disturb following oth surgery|Oth postproc cardiac functn disturb following oth surgery +C2887334|T047|PT|I97.191|ICD10CM|Other postprocedural cardiac functional disturbances following other surgery|Other postprocedural cardiac functional disturbances following other surgery +C0472692|T047|ET|I97.2|ICD10CM|Elephantiasis due to mastectomy|Elephantiasis due to mastectomy +C0265185|T047|ET|I97.2|ICD10CM|Obliteration of lymphatic vessels|Obliteration of lymphatic vessels +C0472692|T047|PT|I97.2|ICD10CM|Postmastectomy lymphedema syndrome|Postmastectomy lymphedema syndrome +C0472692|T047|AB|I97.2|ICD10CM|Postmastectomy lymphedema syndrome|Postmastectomy lymphedema syndrome +C0472692|T047|PT|I97.2|ICD10AE|Postmastectomy lymphedema syndrome|Postmastectomy lymphedema syndrome +C0472692|T047|PT|I97.2|ICD10|Postmastectomy lymphoedema syndrome|Postmastectomy lymphoedema syndrome +C2887335|T046|AB|I97.3|ICD10CM|Postprocedural hypertension|Postprocedural hypertension +C2887335|T046|PT|I97.3|ICD10CM|Postprocedural hypertension|Postprocedural hypertension +C2887336|T047|AB|I97.4|ICD10CM|Intraop hemor/hemtom of a circ sys org comp a procedure|Intraop hemor/hemtom of a circ sys org comp a procedure +C2887337|T047|AB|I97.41|ICD10CM|Intraop hemor/hemtom of a circ sys org comp a circ sys proc|Intraop hemor/hemtom of a circ sys org comp a circ sys proc +C2887338|T047|AB|I97.410|ICD10CM|Intraoperative hemor/hemtom of a circ sys org comp card cath|Intraoperative hemor/hemtom of a circ sys org comp card cath +C2887339|T047|AB|I97.411|ICD10CM|Intraop hemor/hemtom of a circ sys org comp card bypass|Intraop hemor/hemtom of a circ sys org comp card bypass +C2887340|T047|AB|I97.418|ICD10CM|Intraop hemor/hemtom of circ sys org comp oth circ sys proc|Intraop hemor/hemtom of circ sys org comp oth circ sys proc +C2887341|T047|AB|I97.42|ICD10CM|Intraop hemor/hemtom of a circ sys org comp oth procedure|Intraop hemor/hemtom of a circ sys org comp oth procedure +C2887342|T037|AB|I97.5|ICD10CM|Accidental pnctr & lac of a circ sys org dur proc|Accidental pnctr & lac of a circ sys org dur proc +C2887342|T037|HT|I97.5|ICD10CM|Accidental puncture and laceration of a circulatory system organ or structure during a procedure|Accidental puncture and laceration of a circulatory system organ or structure during a procedure +C2887343|T037|AB|I97.51|ICD10CM|Acc pnctr & lac of a circ sys org during a circ sys proc|Acc pnctr & lac of a circ sys org during a circ sys proc +C2887344|T037|AB|I97.52|ICD10CM|Acc pnctr & lac of a circ sys org during oth procedure|Acc pnctr & lac of a circ sys org during oth procedure +C2887344|T037|PT|I97.52|ICD10CM|Accidental puncture and laceration of a circulatory system organ or structure during other procedure|Accidental puncture and laceration of a circulatory system organ or structure during other procedure +C4268551|T046|AB|I97.6|ICD10CM|Postp hemor, hematoma and seroma of circ sys org fol a proc|Postp hemor, hematoma and seroma of circ sys org fol a proc +C4268552|T046|AB|I97.61|ICD10CM|Postproc hemor of a circ sys org fol a circ sys procedure|Postproc hemor of a circ sys org fol a circ sys procedure +C4268553|T046|AB|I97.610|ICD10CM|Postproc hemor of a circ sys org following a cardiac cath|Postproc hemor of a circ sys org following a cardiac cath +C4268554|T046|AB|I97.611|ICD10CM|Postproc hemor of a circ sys org following cardiac bypass|Postproc hemor of a circ sys org following cardiac bypass +C4268554|T046|PT|I97.611|ICD10CM|Postprocedural hemorrhage of a circulatory system organ or structure following cardiac bypass|Postprocedural hemorrhage of a circulatory system organ or structure following cardiac bypass +C4268555|T046|AB|I97.618|ICD10CM|Postproc hemor of a circ sys org fol other circ sys proc|Postproc hemor of a circ sys org fol other circ sys proc +C4268556|T046|AB|I97.62|ICD10CM|Postp hemor, hematoma & seroma of circ sys org fol oth proc|Postp hemor, hematoma & seroma of circ sys org fol oth proc +C4268557|T046|AB|I97.620|ICD10CM|Postproc hemor of a circ sys org following other procedure|Postproc hemor of a circ sys org following other procedure +C4268557|T046|PT|I97.620|ICD10CM|Postprocedural hemorrhage of a circulatory system organ or structure following other procedure|Postprocedural hemorrhage of a circulatory system organ or structure following other procedure +C4268558|T046|AB|I97.621|ICD10CM|Postproc hematoma of a circ sys org fol other procedure|Postproc hematoma of a circ sys org fol other procedure +C4268558|T046|PT|I97.621|ICD10CM|Postprocedural hematoma of a circulatory system organ or structure following other procedure|Postprocedural hematoma of a circulatory system organ or structure following other procedure +C4268559|T046|AB|I97.622|ICD10CM|Postproc seroma of a circ sys org following other procedure|Postproc seroma of a circ sys org following other procedure +C4268559|T046|PT|I97.622|ICD10CM|Postprocedural seroma of a circulatory system organ or structure following other procedure|Postprocedural seroma of a circulatory system organ or structure following other procedure +C4268560|T046|AB|I97.63|ICD10CM|Postproc hematoma of a circ sys org fol a circ sys procedure|Postproc hematoma of a circ sys org fol a circ sys procedure +C4268561|T046|AB|I97.630|ICD10CM|Postproc hematoma of a circ sys org following a cardiac cath|Postproc hematoma of a circ sys org following a cardiac cath +C4268562|T046|AB|I97.631|ICD10CM|Postproc hematoma of a circ sys org following cardiac bypass|Postproc hematoma of a circ sys org following cardiac bypass +C4268562|T046|PT|I97.631|ICD10CM|Postprocedural hematoma of a circulatory system organ or structure following cardiac bypass|Postprocedural hematoma of a circulatory system organ or structure following cardiac bypass +C4268563|T046|AB|I97.638|ICD10CM|Postproc hematoma of a circ sys org fol other circ sys proc|Postproc hematoma of a circ sys org fol other circ sys proc +C4268564|T046|AB|I97.64|ICD10CM|Postproc seroma of a circ sys org fol a circ sys procedure|Postproc seroma of a circ sys org fol a circ sys procedure +C4268565|T046|AB|I97.640|ICD10CM|Postproc seroma of a circ sys org following a cardiac cath|Postproc seroma of a circ sys org following a cardiac cath +C4268565|T046|PT|I97.640|ICD10CM|Postprocedural seroma of a circulatory system organ or structure following a cardiac catheterization|Postprocedural seroma of a circulatory system organ or structure following a cardiac catheterization +C4268566|T046|AB|I97.641|ICD10CM|Postproc seroma of a circ sys org following cardiac bypass|Postproc seroma of a circ sys org following cardiac bypass +C4268566|T046|PT|I97.641|ICD10CM|Postprocedural seroma of a circulatory system organ or structure following cardiac bypass|Postprocedural seroma of a circulatory system organ or structure following cardiac bypass +C4268567|T046|AB|I97.648|ICD10CM|Postproc seroma of a circ sys org fol other circ sys proc|Postproc seroma of a circ sys org fol other circ sys proc +C2887351|T046|HT|I97.7|ICD10CM|Intraoperative cardiac functional disturbances|Intraoperative cardiac functional disturbances +C2887351|T046|AB|I97.7|ICD10CM|Intraoperative cardiac functional disturbances|Intraoperative cardiac functional disturbances +C2887352|T046|HT|I97.71|ICD10CM|Intraoperative cardiac arrest|Intraoperative cardiac arrest +C2887352|T046|AB|I97.71|ICD10CM|Intraoperative cardiac arrest|Intraoperative cardiac arrest +C2887353|T047|AB|I97.710|ICD10CM|Intraoperative cardiac arrest during cardiac surgery|Intraoperative cardiac arrest during cardiac surgery +C2887353|T047|PT|I97.710|ICD10CM|Intraoperative cardiac arrest during cardiac surgery|Intraoperative cardiac arrest during cardiac surgery +C2887354|T047|AB|I97.711|ICD10CM|Intraoperative cardiac arrest during other surgery|Intraoperative cardiac arrest during other surgery +C2887354|T047|PT|I97.711|ICD10CM|Intraoperative cardiac arrest during other surgery|Intraoperative cardiac arrest during other surgery +C2887355|T047|AB|I97.79|ICD10CM|Other intraoperative cardiac functional disturbances|Other intraoperative cardiac functional disturbances +C2887355|T047|HT|I97.79|ICD10CM|Other intraoperative cardiac functional disturbances|Other intraoperative cardiac functional disturbances +C2887356|T047|AB|I97.790|ICD10CM|Oth intraop cardiac functn disturb during cardiac surgery|Oth intraop cardiac functn disturb during cardiac surgery +C2887356|T047|PT|I97.790|ICD10CM|Other intraoperative cardiac functional disturbances during cardiac surgery|Other intraoperative cardiac functional disturbances during cardiac surgery +C2887357|T047|AB|I97.791|ICD10CM|Oth intraop cardiac functional disturb during oth surgery|Oth intraop cardiac functional disturb during oth surgery +C2887357|T047|PT|I97.791|ICD10CM|Other intraoperative cardiac functional disturbances during other surgery|Other intraoperative cardiac functional disturbances during other surgery +C2887358|T047|AB|I97.8|ICD10CM|Oth intraop and postproc comp and disord of circ sys, NEC|Oth intraop and postproc comp and disord of circ sys, NEC +C0869056|T047|PT|I97.8|ICD10|Other postprocedural disorders of circulatory system, not elsewhere classified|Other postprocedural disorders of circulatory system, not elsewhere classified +C2887359|T047|AB|I97.81|ICD10CM|Intraoperative cerebrovascular infarction|Intraoperative cerebrovascular infarction +C2887359|T047|HT|I97.81|ICD10CM|Intraoperative cerebrovascular infarction|Intraoperative cerebrovascular infarction +C2887360|T047|PT|I97.810|ICD10CM|Intraoperative cerebrovascular infarction during cardiac surgery|Intraoperative cerebrovascular infarction during cardiac surgery +C2887360|T047|AB|I97.810|ICD10CM|Intraoperative cerebvasc infarction during cardiac surgery|Intraoperative cerebvasc infarction during cardiac surgery +C2887361|T047|AB|I97.811|ICD10CM|Intraoperative cerebrovascular infarction during oth surgery|Intraoperative cerebrovascular infarction during oth surgery +C2887361|T047|PT|I97.811|ICD10CM|Intraoperative cerebrovascular infarction during other surgery|Intraoperative cerebrovascular infarction during other surgery +C2887362|T047|AB|I97.82|ICD10CM|Postprocedural cerebrovascular infarction|Postprocedural cerebrovascular infarction +C2887362|T047|HT|I97.82|ICD10CM|Postprocedural cerebrovascular infarction|Postprocedural cerebrovascular infarction +C4268568|T046|AB|I97.820|ICD10CM|Postproc cerebvasc infarction following cardiac surgery|Postproc cerebvasc infarction following cardiac surgery +C4268568|T046|PT|I97.820|ICD10CM|Postprocedural cerebrovascular infarction following cardiac surgery|Postprocedural cerebrovascular infarction following cardiac surgery +C4268569|T046|PT|I97.821|ICD10CM|Postprocedural cerebrovascular infarction following other surgery|Postprocedural cerebrovascular infarction following other surgery +C4268569|T046|AB|I97.821|ICD10CM|Postprocedural cerebvasc infarction following other surgery|Postprocedural cerebvasc infarction following other surgery +C2887365|T047|AB|I97.88|ICD10CM|Oth intraoperative complications of the circ sys, NEC|Oth intraoperative complications of the circ sys, NEC +C2887365|T047|PT|I97.88|ICD10CM|Other intraoperative complications of the circulatory system, not elsewhere classified|Other intraoperative complications of the circulatory system, not elsewhere classified +C2887366|T047|AB|I97.89|ICD10CM|Oth postproc comp and disorders of the circ sys, NEC|Oth postproc comp and disorders of the circ sys, NEC +C2887366|T047|PT|I97.89|ICD10CM|Other postprocedural complications and disorders of the circulatory system, not elsewhere classified|Other postprocedural complications and disorders of the circulatory system, not elsewhere classified +C0494633|T047|PT|I97.9|ICD10|Postprocedural disorder of circulatory system, unspecified|Postprocedural disorder of circulatory system, unspecified +C0694503|T047|HT|I98|ICD10|Other disorders of circulatory system in diseases classified elsewhere|Other disorders of circulatory system in diseases classified elsewhere +C0039130|T047|PT|I98.0|ICD10|Cardiovascular syphilis|Cardiovascular syphilis +C0494634|T047|PT|I98.1|ICD10|Cardiovascular disorders in other infectious and parasitic diseases classified elsewhere|Cardiovascular disorders in other infectious and parasitic diseases classified elsewhere +C0155791|T047|PT|I98.2|ICD10AE|Esophageal varices in diseases classified elsewhere|Esophageal varices in diseases classified elsewhere +C0155791|T047|PT|I98.2|ICD10|Oesophageal varices in diseases classified elsewhere|Oesophageal varices in diseases classified elsewhere +C0348667|T047|PT|I98.8|ICD10|Other specified disorders of circulatory system in diseases classified elsewhere|Other specified disorders of circulatory system in diseases classified elsewhere +C0348668|T047|PT|I99|ICD10|Other and unspecified disorders of circulatory system|Other and unspecified disorders of circulatory system +C0348668|T047|HT|I99|ICD10CM|Other and unspecified disorders of circulatory system|Other and unspecified disorders of circulatory system +C0348668|T047|AB|I99|ICD10CM|Other and unspecified disorders of circulatory system|Other and unspecified disorders of circulatory system +C0348668|T047|AB|I99.8|ICD10CM|Other disorder of circulatory system|Other disorder of circulatory system +C0348668|T047|PT|I99.8|ICD10CM|Other disorder of circulatory system|Other disorder of circulatory system +C0728936|T047|AB|I99.9|ICD10CM|Unspecified disorder of circulatory system|Unspecified disorder of circulatory system +C0728936|T047|PT|I99.9|ICD10CM|Unspecified disorder of circulatory system|Unspecified disorder of circulatory system +C0009443|T047|PT|J00|ICD10|Acute nasopharyngitis [common cold]|Acute nasopharyngitis [common cold] +C0009443|T047|PT|J00|ICD10CM|Acute nasopharyngitis [common cold]|Acute nasopharyngitis [common cold] +C0009443|T047|AB|J00|ICD10CM|Acute nasopharyngitis [common cold]|Acute nasopharyngitis [common cold] +C0009443|T047|ET|J00|ICD10CM|Acute rhinitis|Acute rhinitis +C0009443|T047|ET|J00|ICD10CM|Coryza (acute)|Coryza (acute) +C0009443|T047|ET|J00|ICD10CM|Infective nasopharyngitis NOS|Infective nasopharyngitis NOS +C0009443|T047|ET|J00|ICD10CM|Infective rhinitis|Infective rhinitis +C0009443|T047|ET|J00|ICD10CM|Nasal catarrh, acute|Nasal catarrh, acute +C0027441|T047|ET|J00|ICD10CM|Nasopharyngitis NOS|Nasopharyngitis NOS +C0264222|T047|HT|J00-J06|ICD10CM|Acute upper respiratory infections (J00-J06)|Acute upper respiratory infections (J00-J06) +C0264222|T047|HT|J00-J06.9|ICD10|Acute upper respiratory infections|Acute upper respiratory infections +C0035204|T047|HT|J00-J99|ICD10CM|Diseases of the respiratory system (J00-J99)|Diseases of the respiratory system (J00-J99) +C0035204|T047|HT|J00-J99.9|ICD10|Diseases of the respiratory system|Diseases of the respiratory system +C0264228|T047|ET|J01|ICD10CM|acute abscess of sinus|acute abscess of sinus +C0264229|T047|ET|J01|ICD10CM|acute empyema of sinus|acute empyema of sinus +C0149512|T047|ET|J01|ICD10CM|acute infection of sinus|acute infection of sinus +C0149512|T047|ET|J01|ICD10CM|acute inflammation of sinus|acute inflammation of sinus +C0149512|T047|HT|J01|ICD10CM|Acute sinusitis|Acute sinusitis +C0149512|T047|AB|J01|ICD10CM|Acute sinusitis|Acute sinusitis +C0149512|T047|HT|J01|ICD10|Acute sinusitis|Acute sinusitis +C4290183|T047|ET|J01|ICD10CM|acute suppuration of sinus|acute suppuration of sinus +C0155804|T047|ET|J01.0|ICD10CM|Acute antritis|Acute antritis +C0155804|T047|HT|J01.0|ICD10CM|Acute maxillary sinusitis|Acute maxillary sinusitis +C0155804|T047|AB|J01.0|ICD10CM|Acute maxillary sinusitis|Acute maxillary sinusitis +C0155804|T047|PT|J01.0|ICD10|Acute maxillary sinusitis|Acute maxillary sinusitis +C0155804|T047|AB|J01.00|ICD10CM|Acute maxillary sinusitis, unspecified|Acute maxillary sinusitis, unspecified +C0155804|T047|PT|J01.00|ICD10CM|Acute maxillary sinusitis, unspecified|Acute maxillary sinusitis, unspecified +C2887368|T047|PT|J01.01|ICD10CM|Acute recurrent maxillary sinusitis|Acute recurrent maxillary sinusitis +C2887368|T047|AB|J01.01|ICD10CM|Acute recurrent maxillary sinusitis|Acute recurrent maxillary sinusitis +C0155805|T047|HT|J01.1|ICD10CM|Acute frontal sinusitis|Acute frontal sinusitis +C0155805|T047|AB|J01.1|ICD10CM|Acute frontal sinusitis|Acute frontal sinusitis +C0155805|T047|PT|J01.1|ICD10|Acute frontal sinusitis|Acute frontal sinusitis +C0155805|T047|AB|J01.10|ICD10CM|Acute frontal sinusitis, unspecified|Acute frontal sinusitis, unspecified +C0155805|T047|PT|J01.10|ICD10CM|Acute frontal sinusitis, unspecified|Acute frontal sinusitis, unspecified +C2887369|T047|PT|J01.11|ICD10CM|Acute recurrent frontal sinusitis|Acute recurrent frontal sinusitis +C2887369|T047|AB|J01.11|ICD10CM|Acute recurrent frontal sinusitis|Acute recurrent frontal sinusitis +C0155806|T047|HT|J01.2|ICD10CM|Acute ethmoidal sinusitis|Acute ethmoidal sinusitis +C0155806|T047|AB|J01.2|ICD10CM|Acute ethmoidal sinusitis|Acute ethmoidal sinusitis +C0155806|T047|PT|J01.2|ICD10|Acute ethmoidal sinusitis|Acute ethmoidal sinusitis +C0155806|T047|AB|J01.20|ICD10CM|Acute ethmoidal sinusitis, unspecified|Acute ethmoidal sinusitis, unspecified +C0155806|T047|PT|J01.20|ICD10CM|Acute ethmoidal sinusitis, unspecified|Acute ethmoidal sinusitis, unspecified +C2887370|T047|PT|J01.21|ICD10CM|Acute recurrent ethmoidal sinusitis|Acute recurrent ethmoidal sinusitis +C2887370|T047|AB|J01.21|ICD10CM|Acute recurrent ethmoidal sinusitis|Acute recurrent ethmoidal sinusitis +C0155807|T047|HT|J01.3|ICD10CM|Acute sphenoidal sinusitis|Acute sphenoidal sinusitis +C0155807|T047|AB|J01.3|ICD10CM|Acute sphenoidal sinusitis|Acute sphenoidal sinusitis +C0155807|T047|PT|J01.3|ICD10|Acute sphenoidal sinusitis|Acute sphenoidal sinusitis +C0155807|T047|AB|J01.30|ICD10CM|Acute sphenoidal sinusitis, unspecified|Acute sphenoidal sinusitis, unspecified +C0155807|T047|PT|J01.30|ICD10CM|Acute sphenoidal sinusitis, unspecified|Acute sphenoidal sinusitis, unspecified +C2887371|T047|PT|J01.31|ICD10CM|Acute recurrent sphenoidal sinusitis|Acute recurrent sphenoidal sinusitis +C2887371|T047|AB|J01.31|ICD10CM|Acute recurrent sphenoidal sinusitis|Acute recurrent sphenoidal sinusitis +C0264227|T047|PT|J01.4|ICD10|Acute pansinusitis|Acute pansinusitis +C0264227|T047|HT|J01.4|ICD10CM|Acute pansinusitis|Acute pansinusitis +C0264227|T047|AB|J01.4|ICD10CM|Acute pansinusitis|Acute pansinusitis +C0264227|T047|AB|J01.40|ICD10CM|Acute pansinusitis, unspecified|Acute pansinusitis, unspecified +C0264227|T047|PT|J01.40|ICD10CM|Acute pansinusitis, unspecified|Acute pansinusitis, unspecified +C2887372|T047|PT|J01.41|ICD10CM|Acute recurrent pansinusitis|Acute recurrent pansinusitis +C2887372|T047|AB|J01.41|ICD10CM|Acute recurrent pansinusitis|Acute recurrent pansinusitis +C0155808|T047|PT|J01.8|ICD10|Other acute sinusitis|Other acute sinusitis +C0155808|T047|HT|J01.8|ICD10CM|Other acute sinusitis|Other acute sinusitis +C0155808|T047|AB|J01.8|ICD10CM|Other acute sinusitis|Other acute sinusitis +C1386176|T047|ET|J01.80|ICD10CM|Acute sinusitis involving more than one sinus but not pansinusitis|Acute sinusitis involving more than one sinus but not pansinusitis +C0155808|T047|PT|J01.80|ICD10CM|Other acute sinusitis|Other acute sinusitis +C0155808|T047|AB|J01.80|ICD10CM|Other acute sinusitis|Other acute sinusitis +C2887373|T047|ET|J01.81|ICD10CM|Acute recurrent sinusitis involving more than one sinus but not pansinusitis|Acute recurrent sinusitis involving more than one sinus but not pansinusitis +C2887374|T047|AB|J01.81|ICD10CM|Other acute recurrent sinusitis|Other acute recurrent sinusitis +C2887374|T047|PT|J01.81|ICD10CM|Other acute recurrent sinusitis|Other acute recurrent sinusitis +C0149512|T047|HT|J01.9|ICD10CM|Acute sinusitis, unspecified|Acute sinusitis, unspecified +C0149512|T047|AB|J01.9|ICD10CM|Acute sinusitis, unspecified|Acute sinusitis, unspecified +C0149512|T047|PT|J01.9|ICD10|Acute sinusitis, unspecified|Acute sinusitis, unspecified +C0149512|T047|PT|J01.90|ICD10CM|Acute sinusitis, unspecified|Acute sinusitis, unspecified +C0149512|T047|AB|J01.90|ICD10CM|Acute sinusitis, unspecified|Acute sinusitis, unspecified +C0395983|T047|AB|J01.91|ICD10CM|Acute recurrent sinusitis, unspecified|Acute recurrent sinusitis, unspecified +C0395983|T047|PT|J01.91|ICD10CM|Acute recurrent sinusitis, unspecified|Acute recurrent sinusitis, unspecified +C0001344|T047|HT|J02|ICD10CM|Acute pharyngitis|Acute pharyngitis +C0001344|T047|AB|J02|ICD10CM|Acute pharyngitis|Acute pharyngitis +C0001344|T047|HT|J02|ICD10|Acute pharyngitis|Acute pharyngitis +C2242814|T184|ET|J02|ICD10CM|acute sore throat|acute sore throat +C0036689|T047|ET|J02.0|ICD10CM|Septic pharyngitis|Septic pharyngitis +C0036689|T047|PT|J02.0|ICD10CM|Streptococcal pharyngitis|Streptococcal pharyngitis +C0036689|T047|AB|J02.0|ICD10CM|Streptococcal pharyngitis|Streptococcal pharyngitis +C0036689|T047|PT|J02.0|ICD10|Streptococcal pharyngitis|Streptococcal pharyngitis +C0036689|T047|ET|J02.0|ICD10CM|Streptococcal sore throat|Streptococcal sore throat +C0348671|T047|PT|J02.8|ICD10|Acute pharyngitis due to other specified organisms|Acute pharyngitis due to other specified organisms +C0348671|T047|PT|J02.8|ICD10CM|Acute pharyngitis due to other specified organisms|Acute pharyngitis due to other specified organisms +C0348671|T047|AB|J02.8|ICD10CM|Acute pharyngitis due to other specified organisms|Acute pharyngitis due to other specified organisms +C0001344|T047|PT|J02.9|ICD10|Acute pharyngitis, unspecified|Acute pharyngitis, unspecified +C0001344|T047|PT|J02.9|ICD10CM|Acute pharyngitis, unspecified|Acute pharyngitis, unspecified +C0001344|T047|AB|J02.9|ICD10CM|Acute pharyngitis, unspecified|Acute pharyngitis, unspecified +C0395994|T047|ET|J02.9|ICD10CM|Gangrenous pharyngitis (acute)|Gangrenous pharyngitis (acute) +C0865756|T047|ET|J02.9|ICD10CM|Infective pharyngitis (acute) NOS|Infective pharyngitis (acute) NOS +C0001344|T047|ET|J02.9|ICD10CM|Pharyngitis (acute) NOS|Pharyngitis (acute) NOS +C2242814|T184|ET|J02.9|ICD10CM|Sore throat (acute) NOS|Sore throat (acute) NOS +C0865757|T047|ET|J02.9|ICD10CM|Suppurative pharyngitis (acute)|Suppurative pharyngitis (acute) +C0395996|T047|ET|J02.9|ICD10CM|Ulcerative pharyngitis (acute)|Ulcerative pharyngitis (acute) +C0001361|T047|HT|J03|ICD10CM|Acute tonsillitis|Acute tonsillitis +C0001361|T047|AB|J03|ICD10CM|Acute tonsillitis|Acute tonsillitis +C0001361|T047|HT|J03|ICD10|Acute tonsillitis|Acute tonsillitis +C0275804|T047|PT|J03.0|ICD10|Streptococcal tonsillitis|Streptococcal tonsillitis +C0275804|T047|HT|J03.0|ICD10CM|Streptococcal tonsillitis|Streptococcal tonsillitis +C0275804|T047|AB|J03.0|ICD10CM|Streptococcal tonsillitis|Streptococcal tonsillitis +C2205934|T047|AB|J03.00|ICD10CM|Acute streptococcal tonsillitis, unspecified|Acute streptococcal tonsillitis, unspecified +C2205934|T047|PT|J03.00|ICD10CM|Acute streptococcal tonsillitis, unspecified|Acute streptococcal tonsillitis, unspecified +C2887375|T047|PT|J03.01|ICD10CM|Acute recurrent streptococcal tonsillitis|Acute recurrent streptococcal tonsillitis +C2887375|T047|AB|J03.01|ICD10CM|Acute recurrent streptococcal tonsillitis|Acute recurrent streptococcal tonsillitis +C0348672|T047|HT|J03.8|ICD10CM|Acute tonsillitis due to other specified organisms|Acute tonsillitis due to other specified organisms +C0348672|T047|AB|J03.8|ICD10CM|Acute tonsillitis due to other specified organisms|Acute tonsillitis due to other specified organisms +C0348672|T047|PT|J03.8|ICD10|Acute tonsillitis due to other specified organisms|Acute tonsillitis due to other specified organisms +C0348672|T047|PT|J03.80|ICD10CM|Acute tonsillitis due to other specified organisms|Acute tonsillitis due to other specified organisms +C0348672|T047|AB|J03.80|ICD10CM|Acute tonsillitis due to other specified organisms|Acute tonsillitis due to other specified organisms +C2887376|T047|AB|J03.81|ICD10CM|Acute recurrent tonsillitis due to other specified organisms|Acute recurrent tonsillitis due to other specified organisms +C2887376|T047|PT|J03.81|ICD10CM|Acute recurrent tonsillitis due to other specified organisms|Acute recurrent tonsillitis due to other specified organisms +C0001361|T047|PT|J03.9|ICD10|Acute tonsillitis, unspecified|Acute tonsillitis, unspecified +C0001361|T047|HT|J03.9|ICD10CM|Acute tonsillitis, unspecified|Acute tonsillitis, unspecified +C0001361|T047|AB|J03.9|ICD10CM|Acute tonsillitis, unspecified|Acute tonsillitis, unspecified +C0396018|T047|ET|J03.9|ICD10CM|Follicular tonsillitis (acute)|Follicular tonsillitis (acute) +C0339866|T047|ET|J03.9|ICD10CM|Gangrenous tonsillitis (acute)|Gangrenous tonsillitis (acute) +C2004537|T047|ET|J03.9|ICD10CM|Infective tonsillitis (acute)|Infective tonsillitis (acute) +C0001361|T047|ET|J03.9|ICD10CM|Tonsillitis (acute) NOS|Tonsillitis (acute) NOS +C0396019|T047|ET|J03.9|ICD10CM|Ulcerative tonsillitis (acute)|Ulcerative tonsillitis (acute) +C0001361|T047|PT|J03.90|ICD10CM|Acute tonsillitis, unspecified|Acute tonsillitis, unspecified +C0001361|T047|AB|J03.90|ICD10CM|Acute tonsillitis, unspecified|Acute tonsillitis, unspecified +C0339868|T047|AB|J03.91|ICD10CM|Acute recurrent tonsillitis, unspecified|Acute recurrent tonsillitis, unspecified +C0339868|T047|PT|J03.91|ICD10CM|Acute recurrent tonsillitis, unspecified|Acute recurrent tonsillitis, unspecified +C0155811|T047|HT|J04|ICD10CM|Acute laryngitis and tracheitis|Acute laryngitis and tracheitis +C0155811|T047|AB|J04|ICD10CM|Acute laryngitis and tracheitis|Acute laryngitis and tracheitis +C0155811|T047|HT|J04|ICD10|Acute laryngitis and tracheitis|Acute laryngitis and tracheitis +C0001327|T047|PT|J04.0|ICD10|Acute laryngitis|Acute laryngitis +C0001327|T047|PT|J04.0|ICD10CM|Acute laryngitis|Acute laryngitis +C0001327|T047|AB|J04.0|ICD10CM|Acute laryngitis|Acute laryngitis +C0472517|T047|ET|J04.0|ICD10CM|Edematous laryngitis (acute)|Edematous laryngitis (acute) +C0001327|T047|ET|J04.0|ICD10CM|Laryngitis (acute) NOS|Laryngitis (acute) NOS +C0339875|T047|ET|J04.0|ICD10CM|Subglottic laryngitis (acute)|Subglottic laryngitis (acute) +C0396038|T047|ET|J04.0|ICD10CM|Suppurative laryngitis (acute)|Suppurative laryngitis (acute) +C0396037|T047|ET|J04.0|ICD10CM|Ulcerative laryngitis (acute)|Ulcerative laryngitis (acute) +C0149513|T047|PT|J04.1|ICD10|Acute tracheitis|Acute tracheitis +C0149513|T047|HT|J04.1|ICD10CM|Acute tracheitis|Acute tracheitis +C0149513|T047|AB|J04.1|ICD10CM|Acute tracheitis|Acute tracheitis +C0865762|T047|ET|J04.1|ICD10CM|Acute viral tracheitis|Acute viral tracheitis +C0865761|T047|ET|J04.1|ICD10CM|Catarrhal tracheitis (acute)|Catarrhal tracheitis (acute) +C0149513|T047|ET|J04.1|ICD10CM|Tracheitis (acute) NOS|Tracheitis (acute) NOS +C0339877|T047|PT|J04.10|ICD10CM|Acute tracheitis without obstruction|Acute tracheitis without obstruction +C0339877|T047|AB|J04.10|ICD10CM|Acute tracheitis without obstruction|Acute tracheitis without obstruction +C0155810|T047|PT|J04.11|ICD10CM|Acute tracheitis with obstruction|Acute tracheitis with obstruction +C0155810|T047|AB|J04.11|ICD10CM|Acute tracheitis with obstruction|Acute tracheitis with obstruction +C0155811|T047|PT|J04.2|ICD10CM|Acute laryngotracheitis|Acute laryngotracheitis +C0155811|T047|AB|J04.2|ICD10CM|Acute laryngotracheitis|Acute laryngotracheitis +C0155811|T047|PT|J04.2|ICD10|Acute laryngotracheitis|Acute laryngotracheitis +C0023076|T047|ET|J04.2|ICD10CM|Laryngotracheitis NOS|Laryngotracheitis NOS +C0155811|T047|ET|J04.2|ICD10CM|Tracheitis (acute) with laryngitis (acute)|Tracheitis (acute) with laryngitis (acute) +C0749165|T047|AB|J04.3|ICD10CM|Supraglottitis, unspecified|Supraglottitis, unspecified +C0749165|T047|HT|J04.3|ICD10CM|Supraglottitis, unspecified|Supraglottitis, unspecified +C2887377|T047|AB|J04.30|ICD10CM|Supraglottitis, unspecified, without obstruction|Supraglottitis, unspecified, without obstruction +C2887377|T047|PT|J04.30|ICD10CM|Supraglottitis, unspecified, without obstruction|Supraglottitis, unspecified, without obstruction +C0949126|T047|AB|J04.31|ICD10CM|Supraglottitis, unspecified, with obstruction|Supraglottitis, unspecified, with obstruction +C0949126|T047|PT|J04.31|ICD10CM|Supraglottitis, unspecified, with obstruction|Supraglottitis, unspecified, with obstruction +C0494635|T047|AB|J05|ICD10CM|Acute obstructive laryngitis [croup] and epiglottitis|Acute obstructive laryngitis [croup] and epiglottitis +C0494635|T047|HT|J05|ICD10CM|Acute obstructive laryngitis [croup] and epiglottitis|Acute obstructive laryngitis [croup] and epiglottitis +C0494635|T047|HT|J05|ICD10|Acute obstructive laryngitis [croup] and epiglottitis|Acute obstructive laryngitis [croup] and epiglottitis +C0010380|T047|PT|J05.0|ICD10|Acute obstructive laryngitis [croup]|Acute obstructive laryngitis [croup] +C0010380|T047|PT|J05.0|ICD10CM|Acute obstructive laryngitis [croup]|Acute obstructive laryngitis [croup] +C0010380|T047|AB|J05.0|ICD10CM|Acute obstructive laryngitis [croup]|Acute obstructive laryngitis [croup] +C2887378|T047|ET|J05.0|ICD10CM|Obstructive laryngitis (acute) NOS|Obstructive laryngitis (acute) NOS +C0854207|T047|ET|J05.0|ICD10CM|Obstructive laryngotracheitis NOS|Obstructive laryngotracheitis NOS +C0155814|T047|HT|J05.1|ICD10CM|Acute epiglottitis|Acute epiglottitis +C0155814|T047|AB|J05.1|ICD10CM|Acute epiglottitis|Acute epiglottitis +C0155814|T047|PT|J05.1|ICD10|Acute epiglottitis|Acute epiglottitis +C0396041|T047|PT|J05.10|ICD10CM|Acute epiglottitis without obstruction|Acute epiglottitis without obstruction +C0396041|T047|AB|J05.10|ICD10CM|Acute epiglottitis without obstruction|Acute epiglottitis without obstruction +C0014541|T047|ET|J05.10|ICD10CM|Epiglottitis NOS|Epiglottitis NOS +C0155815|T047|PT|J05.11|ICD10CM|Acute epiglottitis with obstruction|Acute epiglottitis with obstruction +C0155815|T047|AB|J05.11|ICD10CM|Acute epiglottitis with obstruction|Acute epiglottitis with obstruction +C0264223|T047|AB|J06|ICD10CM|Acute upper resp infections of multiple and unsp sites|Acute upper resp infections of multiple and unsp sites +C0264223|T047|HT|J06|ICD10CM|Acute upper respiratory infections of multiple and unspecified sites|Acute upper respiratory infections of multiple and unspecified sites +C0264223|T047|HT|J06|ICD10|Acute upper respiratory infections of multiple and unspecified sites|Acute upper respiratory infections of multiple and unspecified sites +C0155817|T047|PT|J06.0|ICD10|Acute laryngopharyngitis|Acute laryngopharyngitis +C0155817|T047|PT|J06.0|ICD10CM|Acute laryngopharyngitis|Acute laryngopharyngitis +C0155817|T047|AB|J06.0|ICD10CM|Acute laryngopharyngitis|Acute laryngopharyngitis +C0155818|T047|PT|J06.8|ICD10|Other acute upper respiratory infections of multiple sites|Other acute upper respiratory infections of multiple sites +C0264222|T047|PT|J06.9|ICD10|Acute upper respiratory infection, unspecified|Acute upper respiratory infection, unspecified +C0264222|T047|PT|J06.9|ICD10CM|Acute upper respiratory infection, unspecified|Acute upper respiratory infection, unspecified +C0264222|T047|AB|J06.9|ICD10CM|Acute upper respiratory infection, unspecified|Acute upper respiratory infection, unspecified +C2887379|T047|ET|J06.9|ICD10CM|Upper respiratory disease, acute|Upper respiratory disease, acute +C0041912|T047|ET|J06.9|ICD10CM|Upper respiratory infection NOS|Upper respiratory infection NOS +C2712970|T047|AB|J09|ICD10CM|Influenza due to certain identified influenza viruses|Influenza due to certain identified influenza viruses +C2712970|T047|HT|J09|ICD10CM|Influenza due to certain identified influenza viruses|Influenza due to certain identified influenza viruses +C0155870|T047|HT|J09-J18|ICD10CM|Influenza and pneumonia (J09-J18)|Influenza and pneumonia (J09-J18) +C0016627|T047|ET|J09.X|ICD10CM|Avian influenza|Avian influenza +C0016627|T047|ET|J09.X|ICD10CM|Bird influenza|Bird influenza +C2076596|T047|ET|J09.X|ICD10CM|Influenza A/H5N1|Influenza A/H5N1 +C3264383|T047|AB|J09.X|ICD10CM|Influenza due to identified novel influenza A virus|Influenza due to identified novel influenza A virus +C3264383|T047|HT|J09.X|ICD10CM|Influenza due to identified novel influenza A virus|Influenza due to identified novel influenza A virus +C3264381|T047|ET|J09.X|ICD10CM|Influenza of other animal origin, not bird or swine|Influenza of other animal origin, not bird or swine +C3264382|T047|ET|J09.X|ICD10CM|Swine influenza virus (viruses that normally cause infections in pigs)|Swine influenza virus (viruses that normally cause infections in pigs) +C3161093|T047|AB|J09.X1|ICD10CM|Influenza due to ident novel influenza A virus w pneumonia|Influenza due to ident novel influenza A virus w pneumonia +C3161093|T047|PT|J09.X1|ICD10CM|Influenza due to identified novel influenza A virus with pneumonia|Influenza due to identified novel influenza A virus with pneumonia +C3161094|T047|AB|J09.X2|ICD10CM|Flu due to ident novel influenza A virus w oth resp manifest|Flu due to ident novel influenza A virus w oth resp manifest +C3264383|T047|ET|J09.X2|ICD10CM|Influenza due to identified novel influenza A virus NOS|Influenza due to identified novel influenza A virus NOS +C3264384|T047|ET|J09.X2|ICD10CM|Influenza due to identified novel influenza A virus with laryngitis|Influenza due to identified novel influenza A virus with laryngitis +C3161094|T047|PT|J09.X2|ICD10CM|Influenza due to identified novel influenza A virus with other respiratory manifestations|Influenza due to identified novel influenza A virus with other respiratory manifestations +C3264385|T047|ET|J09.X2|ICD10CM|Influenza due to identified novel influenza A virus with pharyngitis|Influenza due to identified novel influenza A virus with pharyngitis +C3264386|T047|ET|J09.X2|ICD10CM|Influenza due to identified novel influenza A virus with upper respiratory symptoms|Influenza due to identified novel influenza A virus with upper respiratory symptoms +C3264388|T047|AB|J09.X3|ICD10CM|Influenza due to ident novel influenza A virus w GI manifest|Influenza due to ident novel influenza A virus w GI manifest +C3264387|T047|ET|J09.X3|ICD10CM|Influenza due to identified novel influenza A virus gastroenteritis|Influenza due to identified novel influenza A virus gastroenteritis +C3264388|T047|PT|J09.X3|ICD10CM|Influenza due to identified novel influenza A virus with gastrointestinal manifestations|Influenza due to identified novel influenza A virus with gastrointestinal manifestations +C3161095|T047|AB|J09.X9|ICD10CM|Flu due to ident novel influenza A virus w oth manifest|Flu due to ident novel influenza A virus w oth manifest +C3264389|T047|ET|J09.X9|ICD10CM|Influenza due to identified novel influenza A virus with encephalopathy|Influenza due to identified novel influenza A virus with encephalopathy +C3264390|T047|ET|J09.X9|ICD10CM|Influenza due to identified novel influenza A virus with myocarditis|Influenza due to identified novel influenza A virus with myocarditis +C3161095|T047|PT|J09.X9|ICD10CM|Influenza due to identified novel influenza A virus with other manifestations|Influenza due to identified novel influenza A virus with other manifestations +C3264391|T047|ET|J09.X9|ICD10CM|Influenza due to identified novel influenza A virus with otitis media|Influenza due to identified novel influenza A virus with otitis media +C0494638|T047|HT|J10|ICD10|Influenza due to identified influenza virus|Influenza due to identified influenza virus +C0276355|T047|HT|J10|ICD10CM|Influenza due to other identified influenza virus|Influenza due to other identified influenza virus +C0276355|T047|AB|J10|ICD10CM|Influenza due to other identified influenza virus|Influenza due to other identified influenza virus +C0155870|T047|HT|J10-J18.9|ICD10|Influenza and pneumonia|Influenza and pneumonia +C2977039|T047|AB|J10.0|ICD10CM|Influenza due to oth identified influenza virus w pneumonia|Influenza due to oth identified influenza virus w pneumonia +C2977039|T047|HT|J10.0|ICD10CM|Influenza due to other identified influenza virus with pneumonia|Influenza due to other identified influenza virus with pneumonia +C0348814|T047|PT|J10.0|ICD10|Influenza with pneumonia, influenza virus identified|Influenza with pneumonia, influenza virus identified +C2977040|T047|AB|J10.00|ICD10CM|Flu due to oth ident flu virus w unsp type of pneumonia|Flu due to oth ident flu virus w unsp type of pneumonia +C2977040|T047|PT|J10.00|ICD10CM|Influenza due to other identified influenza virus with unspecified type of pneumonia|Influenza due to other identified influenza virus with unspecified type of pneumonia +C2977041|T047|AB|J10.01|ICD10CM|Flu due to oth ident flu virus w same oth ident flu virus pn|Flu due to oth ident flu virus w same oth ident flu virus pn +C2977042|T047|AB|J10.08|ICD10CM|Influenza due to oth ident influenza virus w oth pneumonia|Influenza due to oth ident influenza virus w oth pneumonia +C2977042|T047|PT|J10.08|ICD10CM|Influenza due to other identified influenza virus with other specified pneumonia|Influenza due to other identified influenza virus with other specified pneumonia +C2887405|T047|AB|J10.1|ICD10CM|Flu due to oth ident influenza virus w oth resp manifest|Flu due to oth ident influenza virus w oth resp manifest +C0276355|T047|ET|J10.1|ICD10CM|Influenza due to other identified influenza virus NOS|Influenza due to other identified influenza virus NOS +C2977043|T047|ET|J10.1|ICD10CM|Influenza due to other identified influenza virus with laryngitis|Influenza due to other identified influenza virus with laryngitis +C2887405|T047|PT|J10.1|ICD10CM|Influenza due to other identified influenza virus with other respiratory manifestations|Influenza due to other identified influenza virus with other respiratory manifestations +C2977044|T047|ET|J10.1|ICD10CM|Influenza due to other identified influenza virus with pharyngitis|Influenza due to other identified influenza virus with pharyngitis +C2977045|T047|ET|J10.1|ICD10CM|Influenza due to other identified influenza virus with upper respiratory symptoms|Influenza due to other identified influenza virus with upper respiratory symptoms +C0348673|T047|PT|J10.1|ICD10|Influenza with other respiratory manifestations, influenza virus identified|Influenza with other respiratory manifestations, influenza virus identified +C3648718|T047|AB|J10.2|ICD10CM|Influenza due to oth ident influenza virus w GI manifest|Influenza due to oth ident influenza virus w GI manifest +C2977046|T047|ET|J10.2|ICD10CM|Influenza due to other identified influenza virus gastroenteritis|Influenza due to other identified influenza virus gastroenteritis +C3648718|T047|PT|J10.2|ICD10CM|Influenza due to other identified influenza virus with gastrointestinal manifestations|Influenza due to other identified influenza virus with gastrointestinal manifestations +C2977048|T047|AB|J10.8|ICD10CM|Influenza due to oth ident influenza virus w oth manifest|Influenza due to oth ident influenza virus w oth manifest +C2977048|T047|HT|J10.8|ICD10CM|Influenza due to other identified influenza virus with other manifestations|Influenza due to other identified influenza virus with other manifestations +C0348674|T047|PT|J10.8|ICD10|Influenza with other manifestations, influenza virus identified|Influenza with other manifestations, influenza virus identified +C2887407|T047|AB|J10.81|ICD10CM|Influenza due to oth ident influenza virus w encephalopathy|Influenza due to oth ident influenza virus w encephalopathy +C2887407|T047|PT|J10.81|ICD10CM|Influenza due to other identified influenza virus with encephalopathy|Influenza due to other identified influenza virus with encephalopathy +C2977049|T047|AB|J10.82|ICD10CM|Influenza due to oth ident influenza virus w myocarditis|Influenza due to oth ident influenza virus w myocarditis +C2977049|T047|PT|J10.82|ICD10CM|Influenza due to other identified influenza virus with myocarditis|Influenza due to other identified influenza virus with myocarditis +C2977050|T047|AB|J10.83|ICD10CM|Influenza due to oth ident influenza virus w otitis media|Influenza due to oth ident influenza virus w otitis media +C2977050|T047|PT|J10.83|ICD10CM|Influenza due to other identified influenza virus with otitis media|Influenza due to other identified influenza virus with otitis media +C2977048|T047|AB|J10.89|ICD10CM|Influenza due to oth ident influenza virus w oth manifest|Influenza due to oth ident influenza virus w oth manifest +C2977048|T047|PT|J10.89|ICD10CM|Influenza due to other identified influenza virus with other manifestations|Influenza due to other identified influenza virus with other manifestations +C2977051|T047|AB|J11|ICD10CM|Influenza due to unidentified influenza virus|Influenza due to unidentified influenza virus +C2977051|T047|HT|J11|ICD10CM|Influenza due to unidentified influenza virus|Influenza due to unidentified influenza virus +C0494639|T047|HT|J11|ICD10|Influenza, virus not identified|Influenza, virus not identified +C2977052|T047|AB|J11.0|ICD10CM|Influenza due to unidentified influenza virus with pneumonia|Influenza due to unidentified influenza virus with pneumonia +C2977052|T047|HT|J11.0|ICD10CM|Influenza due to unidentified influenza virus with pneumonia|Influenza due to unidentified influenza virus with pneumonia +C0494640|T047|PT|J11.0|ICD10|Influenza with pneumonia, virus not identified|Influenza with pneumonia, virus not identified +C2977053|T047|AB|J11.00|ICD10CM|Flu due to unidentified flu virus w unsp type of pneumonia|Flu due to unidentified flu virus w unsp type of pneumonia +C2977053|T047|PT|J11.00|ICD10CM|Influenza due to unidentified influenza virus with unspecified type of pneumonia|Influenza due to unidentified influenza virus with unspecified type of pneumonia +C0155870|T047|ET|J11.00|ICD10CM|Influenza with pneumonia NOS|Influenza with pneumonia NOS +C2977054|T047|AB|J11.08|ICD10CM|Flu due to unidentified flu virus w specified pneumonia|Flu due to unidentified flu virus w specified pneumonia +C2977054|T047|PT|J11.08|ICD10CM|Influenza due to unidentified influenza virus with specified pneumonia|Influenza due to unidentified influenza virus with specified pneumonia +C2977056|T047|AB|J11.1|ICD10CM|Flu due to unidentified influenza virus w oth resp manifest|Flu due to unidentified influenza virus w oth resp manifest +C2977056|T047|PT|J11.1|ICD10CM|Influenza due to unidentified influenza virus with other respiratory manifestations|Influenza due to unidentified influenza virus with other respiratory manifestations +C0021400|T047|ET|J11.1|ICD10CM|Influenza NOS|Influenza NOS +C0348675|T047|PT|J11.1|ICD10|Influenza with other respiratory manifestations, virus not identified|Influenza with other respiratory manifestations, virus not identified +C2977055|T047|ET|J11.1|ICD10CM|Influenza with upper respiratory symptoms NOS|Influenza with upper respiratory symptoms NOS +C0276347|T047|ET|J11.1|ICD10CM|Influenzal laryngitis NOS|Influenzal laryngitis NOS +C0276346|T047|ET|J11.1|ICD10CM|Influenzal pharyngitis NOS|Influenzal pharyngitis NOS +C2977057|T047|AB|J11.2|ICD10CM|Influenza due to unidentified influenza virus w GI manifest|Influenza due to unidentified influenza virus w GI manifest +C2977057|T047|PT|J11.2|ICD10CM|Influenza due to unidentified influenza virus with gastrointestinal manifestations|Influenza due to unidentified influenza virus with gastrointestinal manifestations +C1398047|T047|ET|J11.2|ICD10CM|Influenza gastroenteritis NOS|Influenza gastroenteritis NOS +C2977058|T047|AB|J11.8|ICD10CM|Influenza due to unidentified influenza virus w oth manifest|Influenza due to unidentified influenza virus w oth manifest +C2977058|T047|HT|J11.8|ICD10CM|Influenza due to unidentified influenza virus with other manifestations|Influenza due to unidentified influenza virus with other manifestations +C0348676|T047|PT|J11.8|ICD10|Influenza with other manifestations, virus not identified|Influenza with other manifestations, virus not identified +C2977060|T047|AB|J11.81|ICD10CM|Flu due to unidentified influenza virus w encephalopathy|Flu due to unidentified influenza virus w encephalopathy +C2977060|T047|PT|J11.81|ICD10CM|Influenza due to unidentified influenza virus with encephalopathy|Influenza due to unidentified influenza virus with encephalopathy +C2977059|T047|ET|J11.81|ICD10CM|Influenzal encephalopathy NOS|Influenzal encephalopathy NOS +C2977061|T047|AB|J11.82|ICD10CM|Influenza due to unidentified influenza virus w myocarditis|Influenza due to unidentified influenza virus w myocarditis +C2977061|T047|PT|J11.82|ICD10CM|Influenza due to unidentified influenza virus with myocarditis|Influenza due to unidentified influenza virus with myocarditis +C0276350|T047|ET|J11.82|ICD10CM|Influenzal myocarditis NOS|Influenzal myocarditis NOS +C2977063|T047|AB|J11.83|ICD10CM|Influenza due to unidentified influenza virus w otitis media|Influenza due to unidentified influenza virus w otitis media +C2977063|T047|PT|J11.83|ICD10CM|Influenza due to unidentified influenza virus with otitis media|Influenza due to unidentified influenza virus with otitis media +C2977062|T047|ET|J11.83|ICD10CM|Influenzal otitis media NOS|Influenzal otitis media NOS +C2977058|T047|AB|J11.89|ICD10CM|Influenza due to unidentified influenza virus w oth manifest|Influenza due to unidentified influenza virus w oth manifest +C2977058|T047|PT|J11.89|ICD10CM|Influenza due to unidentified influenza virus with other manifestations|Influenza due to unidentified influenza virus with other manifestations +C4290184|T047|ET|J12|ICD10CM|bronchopneumonia due to viruses other than influenza viruses|bronchopneumonia due to viruses other than influenza viruses +C0869210|T047|HT|J12|ICD10|Viral pneumonia, not elsewhere classified|Viral pneumonia, not elsewhere classified +C0869210|T047|AB|J12|ICD10CM|Viral pneumonia, not elsewhere classified|Viral pneumonia, not elsewhere classified +C0869210|T047|HT|J12|ICD10CM|Viral pneumonia, not elsewhere classified|Viral pneumonia, not elsewhere classified +C0276156|T047|PT|J12.0|ICD10CM|Adenoviral pneumonia|Adenoviral pneumonia +C0276156|T047|AB|J12.0|ICD10CM|Adenoviral pneumonia|Adenoviral pneumonia +C0276156|T047|PT|J12.0|ICD10|Adenoviral pneumonia|Adenoviral pneumonia +C0152413|T047|PT|J12.1|ICD10|Respiratory syncytial virus pneumonia|Respiratory syncytial virus pneumonia +C0152413|T047|PT|J12.1|ICD10CM|Respiratory syncytial virus pneumonia|Respiratory syncytial virus pneumonia +C0152413|T047|AB|J12.1|ICD10CM|Respiratory syncytial virus pneumonia|Respiratory syncytial virus pneumonia +C0152413|T047|ET|J12.1|ICD10CM|RSV pneumonia|RSV pneumonia +C0276333|T047|PT|J12.2|ICD10|Parainfluenza virus pneumonia|Parainfluenza virus pneumonia +C0276333|T047|PT|J12.2|ICD10CM|Parainfluenza virus pneumonia|Parainfluenza virus pneumonia +C0276333|T047|AB|J12.2|ICD10CM|Parainfluenza virus pneumonia|Parainfluenza virus pneumonia +C2887411|T047|PT|J12.3|ICD10CM|Human metapneumovirus pneumonia|Human metapneumovirus pneumonia +C2887411|T047|AB|J12.3|ICD10CM|Human metapneumovirus pneumonia|Human metapneumovirus pneumonia +C0348677|T047|HT|J12.8|ICD10CM|Other viral pneumonia|Other viral pneumonia +C0348677|T047|AB|J12.8|ICD10CM|Other viral pneumonia|Other viral pneumonia +C0348677|T047|PT|J12.8|ICD10|Other viral pneumonia|Other viral pneumonia +C1260415|T047|AB|J12.81|ICD10CM|Pneumonia due to SARS-associated coronavirus|Pneumonia due to SARS-associated coronavirus +C1260415|T047|PT|J12.81|ICD10CM|Pneumonia due to SARS-associated coronavirus|Pneumonia due to SARS-associated coronavirus +C1175175|T047|ET|J12.81|ICD10CM|Severe acute respiratory syndrome NOS|Severe acute respiratory syndrome NOS +C0348677|T047|PT|J12.89|ICD10CM|Other viral pneumonia|Other viral pneumonia +C0348677|T047|AB|J12.89|ICD10CM|Other viral pneumonia|Other viral pneumonia +C0032310|T047|PT|J12.9|ICD10CM|Viral pneumonia, unspecified|Viral pneumonia, unspecified +C0032310|T047|AB|J12.9|ICD10CM|Viral pneumonia, unspecified|Viral pneumonia, unspecified +C0032310|T047|PT|J12.9|ICD10|Viral pneumonia, unspecified|Viral pneumonia, unspecified +C2887412|T047|ET|J13|ICD10CM|Bronchopneumonia due to S. pneumoniae|Bronchopneumonia due to S. pneumoniae +C0155862|T047|PT|J13|ICD10|Pneumonia due to Streptococcus pneumoniae|Pneumonia due to Streptococcus pneumoniae +C0155862|T047|PT|J13|ICD10CM|Pneumonia due to Streptococcus pneumoniae|Pneumonia due to Streptococcus pneumoniae +C0155862|T047|AB|J13|ICD10CM|Pneumonia due to Streptococcus pneumoniae|Pneumonia due to Streptococcus pneumoniae +C2887413|T047|ET|J14|ICD10CM|Bronchopneumonia due to H. influenzae|Bronchopneumonia due to H. influenzae +C0276026|T047|PT|J14|ICD10|Pneumonia due to Haemophilus influenzae|Pneumonia due to Haemophilus influenzae +C0276026|T047|PT|J14|ICD10CM|Pneumonia due to Hemophilus influenzae|Pneumonia due to Hemophilus influenzae +C0276026|T047|AB|J14|ICD10CM|Pneumonia due to Hemophilus influenzae|Pneumonia due to Hemophilus influenzae +C0276026|T047|PT|J14|ICD10AE|Pneumonia due to Hemophilus influenzae|Pneumonia due to Hemophilus influenzae +C0494643|T047|AB|J15|ICD10CM|Bacterial pneumonia, not elsewhere classified|Bacterial pneumonia, not elsewhere classified +C0494643|T047|HT|J15|ICD10CM|Bacterial pneumonia, not elsewhere classified|Bacterial pneumonia, not elsewhere classified +C0494643|T047|HT|J15|ICD10|Bacterial pneumonia, not elsewhere classified|Bacterial pneumonia, not elsewhere classified +C4290185|T047|ET|J15|ICD10CM|bronchopneumonia due to bacteria other than S. pneumoniae and H. influenzae|bronchopneumonia due to bacteria other than S. pneumoniae and H. influenzae +C0519030|T047|PT|J15.0|ICD10CM|Pneumonia due to Klebsiella pneumoniae|Pneumonia due to Klebsiella pneumoniae +C0519030|T047|AB|J15.0|ICD10CM|Pneumonia due to Klebsiella pneumoniae|Pneumonia due to Klebsiella pneumoniae +C0519030|T047|PT|J15.0|ICD10|Pneumonia due to Klebsiella pneumoniae|Pneumonia due to Klebsiella pneumoniae +C0155860|T047|PT|J15.1|ICD10|Pneumonia due to Pseudomonas|Pneumonia due to Pseudomonas +C0155860|T047|PT|J15.1|ICD10CM|Pneumonia due to Pseudomonas|Pneumonia due to Pseudomonas +C0155860|T047|AB|J15.1|ICD10CM|Pneumonia due to Pseudomonas|Pneumonia due to Pseudomonas +C0032308|T047|HT|J15.2|ICD10CM|Pneumonia due to staphylococcus|Pneumonia due to staphylococcus +C0032308|T047|AB|J15.2|ICD10CM|Pneumonia due to staphylococcus|Pneumonia due to staphylococcus +C0032308|T047|PT|J15.2|ICD10|Pneumonia due to staphylococcus|Pneumonia due to staphylococcus +C0032308|T047|AB|J15.20|ICD10CM|Pneumonia due to staphylococcus, unspecified|Pneumonia due to staphylococcus, unspecified +C0032308|T047|PT|J15.20|ICD10CM|Pneumonia due to staphylococcus, unspecified|Pneumonia due to staphylococcus, unspecified +C2349530|T047|HT|J15.21|ICD10CM|Pneumonia due to staphylococcus aureus|Pneumonia due to staphylococcus aureus +C2349530|T047|AB|J15.21|ICD10CM|Pneumonia due to staphylococcus aureus|Pneumonia due to staphylococcus aureus +C2349529|T047|ET|J15.211|ICD10CM|MSSA pneumonia|MSSA pneumonia +C2349529|T047|AB|J15.211|ICD10CM|Pneumonia due to methicillin suscep staph|Pneumonia due to methicillin suscep staph +C2349529|T047|PT|J15.211|ICD10CM|Pneumonia due to Methicillin susceptible Staphylococcus aureus|Pneumonia due to Methicillin susceptible Staphylococcus aureus +C2349530|T047|ET|J15.211|ICD10CM|Pneumonia due to Staphylococcus aureus NOS|Pneumonia due to Staphylococcus aureus NOS +C1142536|T047|AB|J15.212|ICD10CM|Pneumonia due to Methicillin resistant Staphylococcus aureus|Pneumonia due to Methicillin resistant Staphylococcus aureus +C1142536|T047|PT|J15.212|ICD10CM|Pneumonia due to Methicillin resistant Staphylococcus aureus|Pneumonia due to Methicillin resistant Staphylococcus aureus +C2887415|T047|AB|J15.29|ICD10CM|Pneumonia due to other staphylococcus|Pneumonia due to other staphylococcus +C2887415|T047|PT|J15.29|ICD10CM|Pneumonia due to other staphylococcus|Pneumonia due to other staphylococcus +C0348801|T047|PT|J15.3|ICD10CM|Pneumonia due to streptococcus, group B|Pneumonia due to streptococcus, group B +C0348801|T047|AB|J15.3|ICD10CM|Pneumonia due to streptococcus, group B|Pneumonia due to streptococcus, group B +C0348801|T047|PT|J15.3|ICD10|Pneumonia due to streptococcus, group B|Pneumonia due to streptococcus, group B +C0375326|T047|PT|J15.4|ICD10CM|Pneumonia due to other streptococci|Pneumonia due to other streptococci +C0375326|T047|AB|J15.4|ICD10CM|Pneumonia due to other streptococci|Pneumonia due to other streptococci +C0375326|T047|PT|J15.4|ICD10|Pneumonia due to other streptococci|Pneumonia due to other streptococci +C0276089|T047|PT|J15.5|ICD10CM|Pneumonia due to Escherichia coli|Pneumonia due to Escherichia coli +C0276089|T047|AB|J15.5|ICD10CM|Pneumonia due to Escherichia coli|Pneumonia due to Escherichia coli +C0276089|T047|PT|J15.5|ICD10|Pneumonia due to Escherichia coli|Pneumonia due to Escherichia coli +C0348678|T047|PT|J15.6|ICD10|Pneumonia due to other aerobic Gram-negative bacteria|Pneumonia due to other aerobic Gram-negative bacteria +C0348678|T047|ET|J15.6|ICD10CM|Pneumonia due to other aerobic Gram-negative bacteria|Pneumonia due to other aerobic Gram-negative bacteria +C0854248|T047|AB|J15.6|ICD10CM|Pneumonia due to other Gram-negative bacteria|Pneumonia due to other Gram-negative bacteria +C0854248|T047|PT|J15.6|ICD10CM|Pneumonia due to other Gram-negative bacteria|Pneumonia due to other Gram-negative bacteria +C0865782|T047|ET|J15.6|ICD10CM|Pneumonia due to Serratia marcescens|Pneumonia due to Serratia marcescens +C0032302|T047|PT|J15.7|ICD10CM|Pneumonia due to Mycoplasma pneumoniae|Pneumonia due to Mycoplasma pneumoniae +C0032302|T047|AB|J15.7|ICD10CM|Pneumonia due to Mycoplasma pneumoniae|Pneumonia due to Mycoplasma pneumoniae +C0032302|T047|PT|J15.7|ICD10|Pneumonia due to Mycoplasma pneumoniae|Pneumonia due to Mycoplasma pneumoniae +C0155858|T047|PT|J15.8|ICD10|Other bacterial pneumonia|Other bacterial pneumonia +C0032286|T047|AB|J15.8|ICD10CM|Pneumonia due to other specified bacteria|Pneumonia due to other specified bacteria +C0032286|T047|PT|J15.8|ICD10CM|Pneumonia due to other specified bacteria|Pneumonia due to other specified bacteria +C0004626|T047|PT|J15.9|ICD10|Bacterial pneumonia, unspecified|Bacterial pneumonia, unspecified +C2887416|T047|ET|J15.9|ICD10CM|Pneumonia due to gram-positive bacteria|Pneumonia due to gram-positive bacteria +C0004626|T047|AB|J15.9|ICD10CM|Unspecified bacterial pneumonia|Unspecified bacterial pneumonia +C0004626|T047|PT|J15.9|ICD10CM|Unspecified bacterial pneumonia|Unspecified bacterial pneumonia +C0494644|T047|AB|J16|ICD10CM|Pneumonia due to oth infectious organisms, NEC|Pneumonia due to oth infectious organisms, NEC +C0494644|T047|HT|J16|ICD10CM|Pneumonia due to other infectious organisms, not elsewhere classified|Pneumonia due to other infectious organisms, not elsewhere classified +C0494644|T047|HT|J16|ICD10|Pneumonia due to other infectious organisms, not elsewhere classified|Pneumonia due to other infectious organisms, not elsewhere classified +C0339959|T047|PT|J16.0|ICD10|Chlamydial pneumonia|Chlamydial pneumonia +C0339959|T047|PT|J16.0|ICD10CM|Chlamydial pneumonia|Chlamydial pneumonia +C0339959|T047|AB|J16.0|ICD10CM|Chlamydial pneumonia|Chlamydial pneumonia +C0348679|T047|PT|J16.8|ICD10CM|Pneumonia due to other specified infectious organisms|Pneumonia due to other specified infectious organisms +C0348679|T047|AB|J16.8|ICD10CM|Pneumonia due to other specified infectious organisms|Pneumonia due to other specified infectious organisms +C0348679|T047|PT|J16.8|ICD10|Pneumonia due to other specified infectious organisms|Pneumonia due to other specified infectious organisms +C0694504|T047|AB|J17|ICD10CM|Pneumonia in diseases classified elsewhere|Pneumonia in diseases classified elsewhere +C0694504|T047|PT|J17|ICD10CM|Pneumonia in diseases classified elsewhere|Pneumonia in diseases classified elsewhere +C0694504|T047|HT|J17|ICD10|Pneumonia in diseases classified elsewhere|Pneumonia in diseases classified elsewhere +C0348680|T047|PT|J17.0|ICD10|Pneumonia in bacterial diseases classified elsewhere|Pneumonia in bacterial diseases classified elsewhere +C0348681|T047|PT|J17.1|ICD10|Pneumonia in viral diseases classified elsewhere|Pneumonia in viral diseases classified elsewhere +C0339961|T047|PT|J17.2|ICD10|Pneumonia in mycoses|Pneumonia in mycoses +C0339969|T047|PT|J17.3|ICD10|Pneumonia in parasitic diseases|Pneumonia in parasitic diseases +C0348684|T047|PT|J17.8|ICD10|Pneumonia in other diseases classified elsewhere|Pneumonia in other diseases classified elsewhere +C0339951|T047|HT|J18|ICD10|Pneumonia, organism unspecified|Pneumonia, organism unspecified +C0339951|T047|HT|J18|ICD10CM|Pneumonia, unspecified organism|Pneumonia, unspecified organism +C0339951|T047|AB|J18|ICD10CM|Pneumonia, unspecified organism|Pneumonia, unspecified organism +C0006285|T047|PT|J18.0|ICD10|Bronchopneumonia, unspecified|Bronchopneumonia, unspecified +C0006285|T047|AB|J18.0|ICD10CM|Bronchopneumonia, unspecified organism|Bronchopneumonia, unspecified organism +C0006285|T047|PT|J18.0|ICD10CM|Bronchopneumonia, unspecified organism|Bronchopneumonia, unspecified organism +C0032300|T047|PT|J18.1|ICD10|Lobar pneumonia, unspecified|Lobar pneumonia, unspecified +C0339966|T047|AB|J18.1|ICD10CM|Lobar pneumonia, unspecified organism|Lobar pneumonia, unspecified organism +C0339966|T047|PT|J18.1|ICD10CM|Lobar pneumonia, unspecified organism|Lobar pneumonia, unspecified organism +C0264521|T047|ET|J18.2|ICD10CM|Hypostatic bronchopneumonia|Hypostatic bronchopneumonia +C0264522|T047|PT|J18.2|ICD10|Hypostatic pneumonia, unspecified|Hypostatic pneumonia, unspecified +C2887417|T047|AB|J18.2|ICD10CM|Hypostatic pneumonia, unspecified organism|Hypostatic pneumonia, unspecified organism +C2887417|T047|PT|J18.2|ICD10CM|Hypostatic pneumonia, unspecified organism|Hypostatic pneumonia, unspecified organism +C0264522|T047|ET|J18.2|ICD10CM|Passive pneumonia|Passive pneumonia +C0348685|T047|PT|J18.8|ICD10|Other pneumonia, organism unspecified|Other pneumonia, organism unspecified +C0348685|T047|AB|J18.8|ICD10CM|Other pneumonia, unspecified organism|Other pneumonia, unspecified organism +C0348685|T047|PT|J18.8|ICD10CM|Other pneumonia, unspecified organism|Other pneumonia, unspecified organism +C0032285|T047|PT|J18.9|ICD10|Pneumonia, unspecified|Pneumonia, unspecified +C0339951|T047|AB|J18.9|ICD10CM|Pneumonia, unspecified organism|Pneumonia, unspecified organism +C0339951|T047|PT|J18.9|ICD10CM|Pneumonia, unspecified organism|Pneumonia, unspecified organism +C4290186|T047|ET|J20|ICD10CM|acute and subacute bronchitis (with) bronchospasm|acute and subacute bronchitis (with) bronchospasm +C4290187|T047|ET|J20|ICD10CM|acute and subacute bronchitis (with) tracheitis|acute and subacute bronchitis (with) tracheitis +C4290188|T047|ET|J20|ICD10CM|acute and subacute bronchitis (with) tracheobronchitis, acute|acute and subacute bronchitis (with) tracheobronchitis, acute +C4290189|T047|ET|J20|ICD10CM|acute and subacute fibrinous bronchitis|acute and subacute fibrinous bronchitis +C4290190|T047|ET|J20|ICD10CM|acute and subacute membranous bronchitis|acute and subacute membranous bronchitis +C4290191|T047|ET|J20|ICD10CM|acute and subacute purulent bronchitis|acute and subacute purulent bronchitis +C4290192|T047|ET|J20|ICD10CM|acute and subacute septic bronchitis|acute and subacute septic bronchitis +C0149514|T047|HT|J20|ICD10|Acute bronchitis|Acute bronchitis +C0149514|T047|HT|J20|ICD10CM|Acute bronchitis|Acute bronchitis +C0149514|T047|AB|J20|ICD10CM|Acute bronchitis|Acute bronchitis +C0348686|T047|HT|J20-J22|ICD10CM|Other acute lower respiratory infections (J20-J22)|Other acute lower respiratory infections (J20-J22) +C0348686|T047|HT|J20-J22.9|ICD10|Other acute lower respiratory infections|Other acute lower respiratory infections +C0339934|T047|PT|J20.0|ICD10|Acute bronchitis due to Mycoplasma pneumoniae|Acute bronchitis due to Mycoplasma pneumoniae +C0339934|T047|PT|J20.0|ICD10CM|Acute bronchitis due to Mycoplasma pneumoniae|Acute bronchitis due to Mycoplasma pneumoniae +C0339934|T047|AB|J20.0|ICD10CM|Acute bronchitis due to Mycoplasma pneumoniae|Acute bronchitis due to Mycoplasma pneumoniae +C0494647|T047|PT|J20.1|ICD10|Acute bronchitis due to Haemophilus influenzae|Acute bronchitis due to Haemophilus influenzae +C0494647|T047|PT|J20.1|ICD10AE|Acute bronchitis due to Hemophilus influenzae|Acute bronchitis due to Hemophilus influenzae +C0494647|T047|PT|J20.1|ICD10CM|Acute bronchitis due to Hemophilus influenzae|Acute bronchitis due to Hemophilus influenzae +C0494647|T047|AB|J20.1|ICD10CM|Acute bronchitis due to Hemophilus influenzae|Acute bronchitis due to Hemophilus influenzae +C0494648|T047|PT|J20.2|ICD10CM|Acute bronchitis due to streptococcus|Acute bronchitis due to streptococcus +C0494648|T047|AB|J20.2|ICD10CM|Acute bronchitis due to streptococcus|Acute bronchitis due to streptococcus +C0494648|T047|PT|J20.2|ICD10|Acute bronchitis due to streptococcus|Acute bronchitis due to streptococcus +C0555994|T047|PT|J20.3|ICD10CM|Acute bronchitis due to coxsackievirus|Acute bronchitis due to coxsackievirus +C0555994|T047|AB|J20.3|ICD10CM|Acute bronchitis due to coxsackievirus|Acute bronchitis due to coxsackievirus +C0555994|T047|PT|J20.3|ICD10|Acute bronchitis due to coxsackievirus|Acute bronchitis due to coxsackievirus +C0348795|T047|PT|J20.4|ICD10|Acute bronchitis due to parainfluenza virus|Acute bronchitis due to parainfluenza virus +C0348795|T047|PT|J20.4|ICD10CM|Acute bronchitis due to parainfluenza virus|Acute bronchitis due to parainfluenza virus +C0348795|T047|AB|J20.4|ICD10CM|Acute bronchitis due to parainfluenza virus|Acute bronchitis due to parainfluenza virus +C0348796|T047|PT|J20.5|ICD10CM|Acute bronchitis due to respiratory syncytial virus|Acute bronchitis due to respiratory syncytial virus +C0348796|T047|AB|J20.5|ICD10CM|Acute bronchitis due to respiratory syncytial virus|Acute bronchitis due to respiratory syncytial virus +C0348796|T047|PT|J20.5|ICD10|Acute bronchitis due to respiratory syncytial virus|Acute bronchitis due to respiratory syncytial virus +C0348796|T047|ET|J20.5|ICD10CM|Acute bronchitis due to RSV|Acute bronchitis due to RSV +C0348797|T047|PT|J20.6|ICD10CM|Acute bronchitis due to rhinovirus|Acute bronchitis due to rhinovirus +C0348797|T047|AB|J20.6|ICD10CM|Acute bronchitis due to rhinovirus|Acute bronchitis due to rhinovirus +C0348797|T047|PT|J20.6|ICD10|Acute bronchitis due to rhinovirus|Acute bronchitis due to rhinovirus +C0348798|T047|PT|J20.7|ICD10|Acute bronchitis due to echovirus|Acute bronchitis due to echovirus +C0348798|T047|PT|J20.7|ICD10CM|Acute bronchitis due to echovirus|Acute bronchitis due to echovirus +C0348798|T047|AB|J20.7|ICD10CM|Acute bronchitis due to echovirus|Acute bronchitis due to echovirus +C0348687|T047|PT|J20.8|ICD10CM|Acute bronchitis due to other specified organisms|Acute bronchitis due to other specified organisms +C0348687|T047|AB|J20.8|ICD10CM|Acute bronchitis due to other specified organisms|Acute bronchitis due to other specified organisms +C0348687|T047|PT|J20.8|ICD10|Acute bronchitis due to other specified organisms|Acute bronchitis due to other specified organisms +C0149514|T047|PT|J20.9|ICD10|Acute bronchitis, unspecified|Acute bronchitis, unspecified +C0149514|T047|PT|J20.9|ICD10CM|Acute bronchitis, unspecified|Acute bronchitis, unspecified +C0149514|T047|AB|J20.9|ICD10CM|Acute bronchitis, unspecified|Acute bronchitis, unspecified +C0001311|T047|HT|J21|ICD10CM|Acute bronchiolitis|Acute bronchiolitis +C0001311|T047|AB|J21|ICD10CM|Acute bronchiolitis|Acute bronchiolitis +C0001311|T047|HT|J21|ICD10|Acute bronchiolitis|Acute bronchiolitis +C0264367|T047|ET|J21|ICD10CM|acute bronchiolitis with bronchospasm|acute bronchiolitis with bronchospasm +C0348799|T047|PT|J21.0|ICD10|Acute bronchiolitis due to respiratory syncytial virus|Acute bronchiolitis due to respiratory syncytial virus +C0348799|T047|PT|J21.0|ICD10CM|Acute bronchiolitis due to respiratory syncytial virus|Acute bronchiolitis due to respiratory syncytial virus +C0348799|T047|AB|J21.0|ICD10CM|Acute bronchiolitis due to respiratory syncytial virus|Acute bronchiolitis due to respiratory syncytial virus +C0348799|T047|ET|J21.0|ICD10CM|Acute bronchiolitis due to RSV|Acute bronchiolitis due to RSV +C2919660|T047|AB|J21.1|ICD10CM|Acute bronchiolitis due to human metapneumovirus|Acute bronchiolitis due to human metapneumovirus +C2919660|T047|PT|J21.1|ICD10CM|Acute bronchiolitis due to human metapneumovirus|Acute bronchiolitis due to human metapneumovirus +C0348800|T047|PT|J21.8|ICD10CM|Acute bronchiolitis due to other specified organisms|Acute bronchiolitis due to other specified organisms +C0348800|T047|AB|J21.8|ICD10CM|Acute bronchiolitis due to other specified organisms|Acute bronchiolitis due to other specified organisms +C0348800|T047|PT|J21.8|ICD10|Acute bronchiolitis due to other specified organisms|Acute bronchiolitis due to other specified organisms +C0001311|T047|PT|J21.9|ICD10|Acute bronchiolitis, unspecified|Acute bronchiolitis, unspecified +C0001311|T047|PT|J21.9|ICD10CM|Acute bronchiolitis, unspecified|Acute bronchiolitis, unspecified +C0001311|T047|AB|J21.9|ICD10CM|Acute bronchiolitis, unspecified|Acute bronchiolitis, unspecified +C0001311|T047|ET|J21.9|ICD10CM|Bronchiolitis (acute)|Bronchiolitis (acute) +C0238990|T047|ET|J22|ICD10CM|Acute (lower) respiratory (tract) infection NOS|Acute (lower) respiratory (tract) infection NOS +C0238990|T047|PT|J22|ICD10CM|Unspecified acute lower respiratory infection|Unspecified acute lower respiratory infection +C0238990|T047|AB|J22|ICD10CM|Unspecified acute lower respiratory infection|Unspecified acute lower respiratory infection +C0238990|T047|PT|J22|ICD10|Unspecified acute lower respiratory infection|Unspecified acute lower respiratory infection +C0018621|T047|ET|J30|ICD10CM|spasmodic rhinorrhea|spasmodic rhinorrhea +C0494650|T047|HT|J30|ICD10|Vasomotor and allergic rhinitis|Vasomotor and allergic rhinitis +C0494650|T047|AB|J30|ICD10CM|Vasomotor and allergic rhinitis|Vasomotor and allergic rhinitis +C0494650|T047|HT|J30|ICD10CM|Vasomotor and allergic rhinitis|Vasomotor and allergic rhinitis +C0155839|T047|HT|J30-J39|ICD10CM|Other diseases of upper respiratory tract (J30-J39)|Other diseases of upper respiratory tract (J30-J39) +C0155839|T047|HT|J30-J39.9|ICD10|Other diseases of upper respiratory tract|Other diseases of upper respiratory tract +C0035460|T047|PT|J30.0|ICD10|Vasomotor rhinitis|Vasomotor rhinitis +C0035460|T047|PT|J30.0|ICD10CM|Vasomotor rhinitis|Vasomotor rhinitis +C0035460|T047|AB|J30.0|ICD10CM|Vasomotor rhinitis|Vasomotor rhinitis +C0018621|T047|PT|J30.1|ICD10|Allergic rhinitis due to pollen|Allergic rhinitis due to pollen +C0018621|T047|PT|J30.1|ICD10CM|Allergic rhinitis due to pollen|Allergic rhinitis due to pollen +C0018621|T047|AB|J30.1|ICD10CM|Allergic rhinitis due to pollen|Allergic rhinitis due to pollen +C2887426|T047|ET|J30.1|ICD10CM|Allergy NOS due to pollen|Allergy NOS due to pollen +C0018621|T047|ET|J30.1|ICD10CM|Hay fever|Hay fever +C0018621|T047|ET|J30.1|ICD10CM|Pollinosis|Pollinosis +C0348688|T047|PT|J30.2|ICD10|Other seasonal allergic rhinitis|Other seasonal allergic rhinitis +C0348688|T047|PT|J30.2|ICD10CM|Other seasonal allergic rhinitis|Other seasonal allergic rhinitis +C0348688|T047|AB|J30.2|ICD10CM|Other seasonal allergic rhinitis|Other seasonal allergic rhinitis +C0348689|T047|PT|J30.3|ICD10|Other allergic rhinitis|Other allergic rhinitis +C2607914|T047|PT|J30.4|ICD10|Allergic rhinitis, unspecified|Allergic rhinitis, unspecified +C0878694|T047|PT|J30.5|ICD10CM|Allergic rhinitis due to food|Allergic rhinitis due to food +C0878694|T047|AB|J30.5|ICD10CM|Allergic rhinitis due to food|Allergic rhinitis due to food +C0348689|T047|HT|J30.8|ICD10CM|Other allergic rhinitis|Other allergic rhinitis +C0348689|T047|AB|J30.8|ICD10CM|Other allergic rhinitis|Other allergic rhinitis +C1456066|T047|AB|J30.81|ICD10CM|Allergic rhinitis due to animal (cat) (dog) hair and dander|Allergic rhinitis due to animal (cat) (dog) hair and dander +C1456066|T047|PT|J30.81|ICD10CM|Allergic rhinitis due to animal (cat) (dog) hair and dander|Allergic rhinitis due to animal (cat) (dog) hair and dander +C0348689|T047|PT|J30.89|ICD10CM|Other allergic rhinitis|Other allergic rhinitis +C0348689|T047|AB|J30.89|ICD10CM|Other allergic rhinitis|Other allergic rhinitis +C0035457|T047|ET|J30.89|ICD10CM|Perennial allergic rhinitis|Perennial allergic rhinitis +C2607914|T047|PT|J30.9|ICD10CM|Allergic rhinitis, unspecified|Allergic rhinitis, unspecified +C2607914|T047|AB|J30.9|ICD10CM|Allergic rhinitis, unspecified|Allergic rhinitis, unspecified +C0494651|T047|AB|J31|ICD10CM|Chronic rhinitis, nasopharyngitis and pharyngitis|Chronic rhinitis, nasopharyngitis and pharyngitis +C0494651|T047|HT|J31|ICD10CM|Chronic rhinitis, nasopharyngitis and pharyngitis|Chronic rhinitis, nasopharyngitis and pharyngitis +C0494651|T047|HT|J31|ICD10|Chronic rhinitis, nasopharyngitis and pharyngitis|Chronic rhinitis, nasopharyngitis and pharyngitis +C0030105|T047|ET|J31.0|ICD10CM|Atrophic rhinitis (chronic)|Atrophic rhinitis (chronic) +C0008711|T047|PT|J31.0|ICD10CM|Chronic rhinitis|Chronic rhinitis +C0008711|T047|AB|J31.0|ICD10CM|Chronic rhinitis|Chronic rhinitis +C0008711|T047|PT|J31.0|ICD10|Chronic rhinitis|Chronic rhinitis +C2887427|T047|ET|J31.0|ICD10CM|Granulomatous rhinitis (chronic)|Granulomatous rhinitis (chronic) +C0339799|T047|ET|J31.0|ICD10CM|Hypertrophic rhinitis (chronic)|Hypertrophic rhinitis (chronic) +C2887428|T047|ET|J31.0|ICD10CM|Obstructive rhinitis (chronic)|Obstructive rhinitis (chronic) +C0030105|T047|ET|J31.0|ICD10CM|Ozena|Ozena +C2887429|T047|ET|J31.0|ICD10CM|Purulent rhinitis (chronic)|Purulent rhinitis (chronic) +C0008711|T047|ET|J31.0|ICD10CM|Rhinitis (chronic) NOS|Rhinitis (chronic) NOS +C0339801|T047|ET|J31.0|ICD10CM|Ulcerative rhinitis (chronic)|Ulcerative rhinitis (chronic) +C0155826|T047|PT|J31.1|ICD10CM|Chronic nasopharyngitis|Chronic nasopharyngitis +C0155826|T047|AB|J31.1|ICD10CM|Chronic nasopharyngitis|Chronic nasopharyngitis +C0155826|T047|PT|J31.1|ICD10|Chronic nasopharyngitis|Chronic nasopharyngitis +C2887430|T047|ET|J31.2|ICD10CM|Atrophic pharyngitis (chronic)|Atrophic pharyngitis (chronic) +C0155825|T047|PT|J31.2|ICD10|Chronic pharyngitis|Chronic pharyngitis +C0155825|T047|AB|J31.2|ICD10CM|Chronic pharyngitis|Chronic pharyngitis +C0155825|T047|PT|J31.2|ICD10CM|Chronic pharyngitis|Chronic pharyngitis +C0155825|T047|ET|J31.2|ICD10CM|Chronic sore throat|Chronic sore throat +C1455703|T047|ET|J31.2|ICD10CM|Granular pharyngitis (chronic)|Granular pharyngitis (chronic) +C2887431|T047|ET|J31.2|ICD10CM|Hypertrophic pharyngitis (chronic)|Hypertrophic pharyngitis (chronic) +C0149516|T047|HT|J32|ICD10CM|Chronic sinusitis|Chronic sinusitis +C0149516|T047|AB|J32|ICD10CM|Chronic sinusitis|Chronic sinusitis +C0149516|T047|HT|J32|ICD10|Chronic sinusitis|Chronic sinusitis +C4290193|T047|ET|J32|ICD10CM|sinus abscess|sinus abscess +C1396402|T047|ET|J32|ICD10CM|sinus empyema|sinus empyema +C0037199|T047|ET|J32|ICD10CM|sinus infection|sinus infection +C1408233|T047|ET|J32|ICD10CM|sinus suppuration|sinus suppuration +C0008698|T047|ET|J32.0|ICD10CM|Antritis (chronic)|Antritis (chronic) +C0008698|T047|PT|J32.0|ICD10CM|Chronic maxillary sinusitis|Chronic maxillary sinusitis +C0008698|T047|AB|J32.0|ICD10CM|Chronic maxillary sinusitis|Chronic maxillary sinusitis +C0008698|T047|PT|J32.0|ICD10|Chronic maxillary sinusitis|Chronic maxillary sinusitis +C0024959|T047|ET|J32.0|ICD10CM|Maxillary sinusitis NOS|Maxillary sinusitis NOS +C0008683|T047|PT|J32.1|ICD10CM|Chronic frontal sinusitis|Chronic frontal sinusitis +C0008683|T047|AB|J32.1|ICD10CM|Chronic frontal sinusitis|Chronic frontal sinusitis +C0008683|T047|PT|J32.1|ICD10|Chronic frontal sinusitis|Chronic frontal sinusitis +C0016735|T047|ET|J32.1|ICD10CM|Frontal sinusitis NOS|Frontal sinusitis NOS +C0008681|T047|PT|J32.2|ICD10CM|Chronic ethmoidal sinusitis|Chronic ethmoidal sinusitis +C0008681|T047|AB|J32.2|ICD10CM|Chronic ethmoidal sinusitis|Chronic ethmoidal sinusitis +C0008681|T047|PT|J32.2|ICD10|Chronic ethmoidal sinusitis|Chronic ethmoidal sinusitis +C0015029|T047|ET|J32.2|ICD10CM|Ethmoidal sinusitis NOS|Ethmoidal sinusitis NOS +C0008712|T047|PT|J32.3|ICD10CM|Chronic sphenoidal sinusitis|Chronic sphenoidal sinusitis +C0008712|T047|AB|J32.3|ICD10CM|Chronic sphenoidal sinusitis|Chronic sphenoidal sinusitis +C0008712|T047|PT|J32.3|ICD10|Chronic sphenoidal sinusitis|Chronic sphenoidal sinusitis +C0037886|T047|ET|J32.3|ICD10CM|Sphenoidal sinusitis NOS|Sphenoidal sinusitis NOS +C0155827|T047|PT|J32.4|ICD10CM|Chronic pansinusitis|Chronic pansinusitis +C0155827|T047|AB|J32.4|ICD10CM|Chronic pansinusitis|Chronic pansinusitis +C0155827|T047|PT|J32.4|ICD10|Chronic pansinusitis|Chronic pansinusitis +C0558362|T047|ET|J32.4|ICD10CM|Pansinusitis NOS|Pansinusitis NOS +C0395986|T047|PT|J32.8|ICD10CM|Other chronic sinusitis|Other chronic sinusitis +C0395986|T047|AB|J32.8|ICD10CM|Other chronic sinusitis|Other chronic sinusitis +C0395986|T047|PT|J32.8|ICD10|Other chronic sinusitis|Other chronic sinusitis +C2887433|T047|ET|J32.8|ICD10CM|Sinusitis (chronic) involving more than one sinus but not pansinusitis|Sinusitis (chronic) involving more than one sinus but not pansinusitis +C0149516|T047|PT|J32.9|ICD10CM|Chronic sinusitis, unspecified|Chronic sinusitis, unspecified +C0149516|T047|AB|J32.9|ICD10CM|Chronic sinusitis, unspecified|Chronic sinusitis, unspecified +C0149516|T047|PT|J32.9|ICD10|Chronic sinusitis, unspecified|Chronic sinusitis, unspecified +C0149516|T047|ET|J32.9|ICD10CM|Sinusitis (chronic) NOS|Sinusitis (chronic) NOS +C0027430|T047|HT|J33|ICD10|Nasal polyp|Nasal polyp +C0027430|T047|HT|J33|ICD10CM|Nasal polyp|Nasal polyp +C0027430|T047|AB|J33|ICD10CM|Nasal polyp|Nasal polyp +C0008298|T191|ET|J33.0|ICD10CM|Choanal polyp|Choanal polyp +C0008298|T191|ET|J33.0|ICD10CM|Nasopharyngeal polyp|Nasopharyngeal polyp +C0027430|T047|PT|J33.0|ICD10CM|Polyp of nasal cavity|Polyp of nasal cavity +C0027430|T047|AB|J33.0|ICD10CM|Polyp of nasal cavity|Polyp of nasal cavity +C0027430|T047|PT|J33.0|ICD10|Polyp of nasal cavity|Polyp of nasal cavity +C0155822|T047|PT|J33.1|ICD10|Polypoid sinus degeneration|Polypoid sinus degeneration +C0155822|T047|PT|J33.1|ICD10CM|Polypoid sinus degeneration|Polypoid sinus degeneration +C0155822|T047|AB|J33.1|ICD10CM|Polypoid sinus degeneration|Polypoid sinus degeneration +C0155822|T047|ET|J33.1|ICD10CM|Woakes' syndrome or ethmoiditis|Woakes' syndrome or ethmoiditis +C0264231|T191|ET|J33.8|ICD10CM|Accessory polyp of sinus|Accessory polyp of sinus +C0264248|T191|ET|J33.8|ICD10CM|Ethmoidal polyp of sinus|Ethmoidal polyp of sinus +C0264239|T191|ET|J33.8|ICD10CM|Maxillary polyp of sinus|Maxillary polyp of sinus +C0155823|T047|PT|J33.8|ICD10CM|Other polyp of sinus|Other polyp of sinus +C0155823|T047|AB|J33.8|ICD10CM|Other polyp of sinus|Other polyp of sinus +C0155823|T047|PT|J33.8|ICD10|Other polyp of sinus|Other polyp of sinus +C0264255|T191|ET|J33.8|ICD10CM|Sphenoidal polyp of sinus|Sphenoidal polyp of sinus +C0027430|T047|PT|J33.9|ICD10|Nasal polyp, unspecified|Nasal polyp, unspecified +C0027430|T047|PT|J33.9|ICD10CM|Nasal polyp, unspecified|Nasal polyp, unspecified +C0027430|T047|AB|J33.9|ICD10CM|Nasal polyp, unspecified|Nasal polyp, unspecified +C2887434|T047|AB|J34|ICD10CM|Other and unspecified disorders of nose and nasal sinuses|Other and unspecified disorders of nose and nasal sinuses +C2887434|T047|HT|J34|ICD10CM|Other and unspecified disorders of nose and nasal sinuses|Other and unspecified disorders of nose and nasal sinuses +C0494652|T047|HT|J34|ICD10|Other disorders of nose and nasal sinuses|Other disorders of nose and nasal sinuses +C0494653|T047|PT|J34.0|ICD10|Abscess, furuncle and carbuncle of nose|Abscess, furuncle and carbuncle of nose +C0494653|T047|PT|J34.0|ICD10CM|Abscess, furuncle and carbuncle of nose|Abscess, furuncle and carbuncle of nose +C0494653|T047|AB|J34.0|ICD10CM|Abscess, furuncle and carbuncle of nose|Abscess, furuncle and carbuncle of nose +C0240546|T046|ET|J34.0|ICD10CM|Cellulitis of nose|Cellulitis of nose +C0264265|T047|ET|J34.0|ICD10CM|Necrosis of nose|Necrosis of nose +C0264267|T047|ET|J34.0|ICD10CM|Ulceration of nose|Ulceration of nose +C0494654|T020|PT|J34.1|ICD10CM|Cyst and mucocele of nose and nasal sinus|Cyst and mucocele of nose and nasal sinus +C0494654|T020|AB|J34.1|ICD10CM|Cyst and mucocele of nose and nasal sinus|Cyst and mucocele of nose and nasal sinus +C0494654|T020|PT|J34.1|ICD10|Cyst and mucocele of nose and nasal sinus|Cyst and mucocele of nose and nasal sinus +C2887435|T020|ET|J34.2|ICD10CM|Deflection or deviation of septum (nasal) (acquired)|Deflection or deviation of septum (nasal) (acquired) +C0549397|T033|PT|J34.2|ICD10CM|Deviated nasal septum|Deviated nasal septum +C0549397|T033|AB|J34.2|ICD10CM|Deviated nasal septum|Deviated nasal septum +C0549397|T033|PT|J34.2|ICD10|Deviated nasal septum|Deviated nasal septum +C0155840|T047|PT|J34.3|ICD10|Hypertrophy of nasal turbinates|Hypertrophy of nasal turbinates +C0155840|T047|PT|J34.3|ICD10CM|Hypertrophy of nasal turbinates|Hypertrophy of nasal turbinates +C0155840|T047|AB|J34.3|ICD10CM|Hypertrophy of nasal turbinates|Hypertrophy of nasal turbinates +C0348690|T047|PT|J34.8|ICD10|Other specified disorders of nose and nasal sinuses|Other specified disorders of nose and nasal sinuses +C0348690|T047|HT|J34.8|ICD10CM|Other specified disorders of nose and nasal sinuses|Other specified disorders of nose and nasal sinuses +C0348690|T047|AB|J34.8|ICD10CM|Other specified disorders of nose and nasal sinuses|Other specified disorders of nose and nasal sinuses +C0235963|T047|AB|J34.81|ICD10CM|Nasal mucositis (ulcerative)|Nasal mucositis (ulcerative) +C0235963|T047|PT|J34.81|ICD10CM|Nasal mucositis (ulcerative)|Nasal mucositis (ulcerative) +C0348690|T047|PT|J34.89|ICD10CM|Other specified disorders of nose and nasal sinuses|Other specified disorders of nose and nasal sinuses +C0348690|T047|AB|J34.89|ICD10CM|Other specified disorders of nose and nasal sinuses|Other specified disorders of nose and nasal sinuses +C0235761|T190|ET|J34.89|ICD10CM|Perforation of nasal septum NOS|Perforation of nasal septum NOS +C0264261|T047|ET|J34.89|ICD10CM|Rhinolith|Rhinolith +C2887436|T047|AB|J34.9|ICD10CM|Unspecified disorder of nose and nasal sinuses|Unspecified disorder of nose and nasal sinuses +C2887436|T047|PT|J34.9|ICD10CM|Unspecified disorder of nose and nasal sinuses|Unspecified disorder of nose and nasal sinuses +C0155828|T047|HT|J35|ICD10|Chronic diseases of tonsils and adenoids|Chronic diseases of tonsils and adenoids +C0155828|T047|AB|J35|ICD10CM|Chronic diseases of tonsils and adenoids|Chronic diseases of tonsils and adenoids +C0155828|T047|HT|J35|ICD10CM|Chronic diseases of tonsils and adenoids|Chronic diseases of tonsils and adenoids +C0149517|T047|PT|J35.0|ICD10|Chronic tonsillitis|Chronic tonsillitis +C0490040|T047|HT|J35.0|ICD10CM|Chronic tonsillitis and adenoiditis|Chronic tonsillitis and adenoiditis +C0490040|T047|AB|J35.0|ICD10CM|Chronic tonsillitis and adenoiditis|Chronic tonsillitis and adenoiditis +C0149517|T047|PT|J35.01|ICD10CM|Chronic tonsillitis|Chronic tonsillitis +C0149517|T047|AB|J35.01|ICD10CM|Chronic tonsillitis|Chronic tonsillitis +C0396023|T047|PT|J35.02|ICD10CM|Chronic adenoiditis|Chronic adenoiditis +C0396023|T047|AB|J35.02|ICD10CM|Chronic adenoiditis|Chronic adenoiditis +C0490040|T047|PT|J35.03|ICD10CM|Chronic tonsillitis and adenoiditis|Chronic tonsillitis and adenoiditis +C0490040|T047|AB|J35.03|ICD10CM|Chronic tonsillitis and adenoiditis|Chronic tonsillitis and adenoiditis +C0272386|T047|ET|J35.1|ICD10CM|Enlargement of tonsils|Enlargement of tonsils +C0272386|T047|PT|J35.1|ICD10CM|Hypertrophy of tonsils|Hypertrophy of tonsils +C0272386|T047|AB|J35.1|ICD10CM|Hypertrophy of tonsils|Hypertrophy of tonsils +C0272386|T047|PT|J35.1|ICD10|Hypertrophy of tonsils|Hypertrophy of tonsils +C0149825|T047|ET|J35.2|ICD10CM|Enlargement of adenoids|Enlargement of adenoids +C0149825|T047|PT|J35.2|ICD10CM|Hypertrophy of adenoids|Hypertrophy of adenoids +C0149825|T047|AB|J35.2|ICD10CM|Hypertrophy of adenoids|Hypertrophy of adenoids +C0149825|T047|PT|J35.2|ICD10|Hypertrophy of adenoids|Hypertrophy of adenoids +C0155829|T047|PT|J35.3|ICD10|Hypertrophy of tonsils with hypertrophy of adenoids|Hypertrophy of tonsils with hypertrophy of adenoids +C0155829|T047|PT|J35.3|ICD10CM|Hypertrophy of tonsils with hypertrophy of adenoids|Hypertrophy of tonsils with hypertrophy of adenoids +C0155829|T047|AB|J35.3|ICD10CM|Hypertrophy of tonsils with hypertrophy of adenoids|Hypertrophy of tonsils with hypertrophy of adenoids +C0155833|T047|ET|J35.8|ICD10CM|Adenoid vegetations|Adenoid vegetations +C0272388|T047|ET|J35.8|ICD10CM|Amygdalolith|Amygdalolith +C0272388|T047|ET|J35.8|ICD10CM|Calculus, tonsil|Calculus, tonsil +C0865773|T033|ET|J35.8|ICD10CM|Cicatrix of tonsil (and adenoid)|Cicatrix of tonsil (and adenoid) +C0155834|T047|PT|J35.8|ICD10CM|Other chronic diseases of tonsils and adenoids|Other chronic diseases of tonsils and adenoids +C0155834|T047|AB|J35.8|ICD10CM|Other chronic diseases of tonsils and adenoids|Other chronic diseases of tonsils and adenoids +C0155834|T047|PT|J35.8|ICD10|Other chronic diseases of tonsils and adenoids|Other chronic diseases of tonsils and adenoids +C0272391|T047|ET|J35.8|ICD10CM|Tonsillar tag|Tonsillar tag +C0272392|T020|ET|J35.8|ICD10CM|Ulcer of tonsil|Ulcer of tonsil +C0155828|T047|PT|J35.9|ICD10|Chronic disease of tonsils and adenoids, unspecified|Chronic disease of tonsils and adenoids, unspecified +C0155828|T047|PT|J35.9|ICD10CM|Chronic disease of tonsils and adenoids, unspecified|Chronic disease of tonsils and adenoids, unspecified +C0155828|T047|AB|J35.9|ICD10CM|Chronic disease of tonsils and adenoids, unspecified|Chronic disease of tonsils and adenoids, unspecified +C0155828|T047|ET|J35.9|ICD10CM|Disease (chronic) of tonsils and adenoids NOS|Disease (chronic) of tonsils and adenoids NOS +C0238469|T047|ET|J36|ICD10CM|abscess of tonsil|abscess of tonsil +C0031157|T047|PT|J36|ICD10CM|Peritonsillar abscess|Peritonsillar abscess +C0031157|T047|AB|J36|ICD10CM|Peritonsillar abscess|Peritonsillar abscess +C0031157|T047|PT|J36|ICD10|Peritonsillar abscess|Peritonsillar abscess +C0553656|T047|ET|J36|ICD10CM|peritonsillar cellulitis|peritonsillar cellulitis +C0031157|T047|ET|J36|ICD10CM|quinsy|quinsy +C0155835|T047|HT|J37|ICD10CM|Chronic laryngitis and laryngotracheitis|Chronic laryngitis and laryngotracheitis +C0155835|T047|AB|J37|ICD10CM|Chronic laryngitis and laryngotracheitis|Chronic laryngitis and laryngotracheitis +C0155835|T047|HT|J37|ICD10|Chronic laryngitis and laryngotracheitis|Chronic laryngitis and laryngotracheitis +C0264298|T047|ET|J37.0|ICD10CM|Catarrhal laryngitis|Catarrhal laryngitis +C0155836|T047|PT|J37.0|ICD10|Chronic laryngitis|Chronic laryngitis +C0155836|T047|PT|J37.0|ICD10CM|Chronic laryngitis|Chronic laryngitis +C0155836|T047|AB|J37.0|ICD10CM|Chronic laryngitis|Chronic laryngitis +C0264299|T047|ET|J37.0|ICD10CM|Hypertrophic laryngitis|Hypertrophic laryngitis +C0264300|T047|ET|J37.0|ICD10CM|Sicca laryngitis|Sicca laryngitis +C0155837|T047|PT|J37.1|ICD10CM|Chronic laryngotracheitis|Chronic laryngotracheitis +C0155837|T047|AB|J37.1|ICD10CM|Chronic laryngotracheitis|Chronic laryngotracheitis +C0155837|T047|PT|J37.1|ICD10|Chronic laryngotracheitis|Chronic laryngotracheitis +C0155837|T047|ET|J37.1|ICD10CM|Laryngitis, chronic, with tracheitis (chronic)|Laryngitis, chronic, with tracheitis (chronic) +C0155837|T047|ET|J37.1|ICD10CM|Tracheitis, chronic, with laryngitis|Tracheitis, chronic, with laryngitis +C0494656|T047|HT|J38|ICD10|Diseases of vocal cords and larynx, not elsewhere classified|Diseases of vocal cords and larynx, not elsewhere classified +C0494656|T047|AB|J38|ICD10CM|Diseases of vocal cords and larynx, not elsewhere classified|Diseases of vocal cords and larynx, not elsewhere classified +C0494656|T047|HT|J38|ICD10CM|Diseases of vocal cords and larynx, not elsewhere classified|Diseases of vocal cords and larynx, not elsewhere classified +C0086523|T047|ET|J38.0|ICD10CM|Laryngoplegia|Laryngoplegia +C3263721|T047|ET|J38.0|ICD10CM|Paralysis of glottis|Paralysis of glottis +C0494657|T047|HT|J38.0|ICD10CM|Paralysis of vocal cords and larynx|Paralysis of vocal cords and larynx +C0494657|T047|AB|J38.0|ICD10CM|Paralysis of vocal cords and larynx|Paralysis of vocal cords and larynx +C0494657|T047|PT|J38.0|ICD10|Paralysis of vocal cords and larynx|Paralysis of vocal cords and larynx +C0494657|T047|PT|J38.00|ICD10CM|Paralysis of vocal cords and larynx, unspecified|Paralysis of vocal cords and larynx, unspecified +C0494657|T047|AB|J38.00|ICD10CM|Paralysis of vocal cords and larynx, unspecified|Paralysis of vocal cords and larynx, unspecified +C2887437|T047|AB|J38.01|ICD10CM|Paralysis of vocal cords and larynx, unilateral|Paralysis of vocal cords and larynx, unilateral +C2887437|T047|PT|J38.01|ICD10CM|Paralysis of vocal cords and larynx, unilateral|Paralysis of vocal cords and larynx, unilateral +C2887438|T047|AB|J38.02|ICD10CM|Paralysis of vocal cords and larynx, bilateral|Paralysis of vocal cords and larynx, bilateral +C2887438|T047|PT|J38.02|ICD10CM|Paralysis of vocal cords and larynx, bilateral|Paralysis of vocal cords and larynx, bilateral +C0155851|T047|PT|J38.1|ICD10CM|Polyp of vocal cord and larynx|Polyp of vocal cord and larynx +C0155851|T047|AB|J38.1|ICD10CM|Polyp of vocal cord and larynx|Polyp of vocal cord and larynx +C0155851|T047|PT|J38.1|ICD10|Polyp of vocal cord and larynx|Polyp of vocal cord and larynx +C2887439|T047|ET|J38.2|ICD10CM|Chorditis (fibrinous)(nodosa)(tuberosa)|Chorditis (fibrinous)(nodosa)(tuberosa) +C0396053|T033|PT|J38.2|ICD10|Nodules of vocal cords|Nodules of vocal cords +C0396053|T033|PT|J38.2|ICD10CM|Nodules of vocal cords|Nodules of vocal cords +C0396053|T033|AB|J38.2|ICD10CM|Nodules of vocal cords|Nodules of vocal cords +C0396053|T033|ET|J38.2|ICD10CM|Singer's nodes|Singer's nodes +C2887440|T033|ET|J38.2|ICD10CM|Teacher's nodes|Teacher's nodes +C0264310|T047|ET|J38.3|ICD10CM|Abscess of vocal cords|Abscess of vocal cords +C0264311|T047|ET|J38.3|ICD10CM|Cellulitis of vocal cords|Cellulitis of vocal cords +C0264312|T047|ET|J38.3|ICD10CM|Granuloma of vocal cords|Granuloma of vocal cords +C0264313|T191|ET|J38.3|ICD10CM|Leukokeratosis of vocal cords|Leukokeratosis of vocal cords +C0264313|T191|ET|J38.3|ICD10CM|Leukoplakia of vocal cords|Leukoplakia of vocal cords +C0155852|T047|PT|J38.3|ICD10|Other diseases of vocal cords|Other diseases of vocal cords +C0155852|T047|PT|J38.3|ICD10CM|Other diseases of vocal cords|Other diseases of vocal cords +C0155852|T047|AB|J38.3|ICD10CM|Other diseases of vocal cords|Other diseases of vocal cords +C0264315|T047|ET|J38.4|ICD10CM|Edema (of) glottis|Edema (of) glottis +C0023052|T046|PT|J38.4|ICD10AE|Edema of larynx|Edema of larynx +C0023052|T046|PT|J38.4|ICD10CM|Edema of larynx|Edema of larynx +C0023052|T046|AB|J38.4|ICD10CM|Edema of larynx|Edema of larynx +C0023052|T046|PT|J38.4|ICD10|Oedema of larynx|Oedema of larynx +C0235552|T046|ET|J38.4|ICD10CM|Subglottic edema|Subglottic edema +C0264316|T046|ET|J38.4|ICD10CM|Supraglottic edema|Supraglottic edema +C0023066|T047|PT|J38.5|ICD10|Laryngeal spasm|Laryngeal spasm +C0023066|T047|PT|J38.5|ICD10CM|Laryngeal spasm|Laryngeal spasm +C0023066|T047|AB|J38.5|ICD10CM|Laryngeal spasm|Laryngeal spasm +C4551676|T033|ET|J38.5|ICD10CM|Laryngismus (stridulus)|Laryngismus (stridulus) +C0023075|T047|PT|J38.6|ICD10CM|Stenosis of larynx|Stenosis of larynx +C0023075|T047|AB|J38.6|ICD10CM|Stenosis of larynx|Stenosis of larynx +C0023075|T047|PT|J38.6|ICD10|Stenosis of larynx|Stenosis of larynx +C0264301|T047|ET|J38.7|ICD10CM|Abscess of larynx|Abscess of larynx +C0264304|T047|ET|J38.7|ICD10CM|Cellulitis of larynx|Cellulitis of larynx +C0023051|T047|ET|J38.7|ICD10CM|Disease of larynx NOS|Disease of larynx NOS +C0264302|T047|ET|J38.7|ICD10CM|Necrosis of larynx|Necrosis of larynx +C0079950|T047|PT|J38.7|ICD10CM|Other diseases of larynx|Other diseases of larynx +C0079950|T047|AB|J38.7|ICD10CM|Other diseases of larynx|Other diseases of larynx +C0079950|T047|PT|J38.7|ICD10|Other diseases of larynx|Other diseases of larynx +C0264307|T047|ET|J38.7|ICD10CM|Pachyderma of larynx|Pachyderma of larynx +C0023059|T047|ET|J38.7|ICD10CM|Perichondritis of larynx|Perichondritis of larynx +C0264308|T047|ET|J38.7|ICD10CM|Ulcer of larynx|Ulcer of larynx +C0155839|T047|HT|J39|ICD10|Other diseases of upper respiratory tract|Other diseases of upper respiratory tract +C0155839|T047|HT|J39|ICD10CM|Other diseases of upper respiratory tract|Other diseases of upper respiratory tract +C0155839|T047|AB|J39|ICD10CM|Other diseases of upper respiratory tract|Other diseases of upper respiratory tract +C0155842|T047|ET|J39.0|ICD10CM|Peripharyngeal abscess|Peripharyngeal abscess +C0494658|T047|PT|J39.0|ICD10CM|Retropharyngeal and parapharyngeal abscess|Retropharyngeal and parapharyngeal abscess +C0494658|T047|AB|J39.0|ICD10CM|Retropharyngeal and parapharyngeal abscess|Retropharyngeal and parapharyngeal abscess +C0494658|T047|PT|J39.0|ICD10|Retropharyngeal and parapharyngeal abscess|Retropharyngeal and parapharyngeal abscess +C0264290|T047|ET|J39.1|ICD10CM|Cellulitis of pharynx|Cellulitis of pharynx +C0264278|T047|ET|J39.1|ICD10CM|Nasopharyngeal abscess|Nasopharyngeal abscess +C0348691|T020|PT|J39.1|ICD10CM|Other abscess of pharynx|Other abscess of pharynx +C0348691|T020|AB|J39.1|ICD10CM|Other abscess of pharynx|Other abscess of pharynx +C0348691|T020|PT|J39.1|ICD10|Other abscess of pharynx|Other abscess of pharynx +C0264291|T047|ET|J39.2|ICD10CM|Cyst of pharynx|Cyst of pharynx +C0236024|T046|ET|J39.2|ICD10CM|Edema of pharynx|Edema of pharynx +C0079951|T047|PT|J39.2|ICD10|Other diseases of pharynx|Other diseases of pharynx +C0079951|T047|PT|J39.2|ICD10CM|Other diseases of pharynx|Other diseases of pharynx +C0079951|T047|AB|J39.2|ICD10CM|Other diseases of pharynx|Other diseases of pharynx +C0375321|T047|AB|J39.3|ICD10CM|Upper respiratory tract hypersensitivity reaction, site unsp|Upper respiratory tract hypersensitivity reaction, site unsp +C0375321|T047|PT|J39.3|ICD10CM|Upper respiratory tract hypersensitivity reaction, site unspecified|Upper respiratory tract hypersensitivity reaction, site unspecified +C0375321|T047|PT|J39.3|ICD10|Upper respiratory tract hypersensitivity reaction, site unspecified|Upper respiratory tract hypersensitivity reaction, site unspecified +C0339899|T047|PT|J39.8|ICD10|Other specified diseases of upper respiratory tract|Other specified diseases of upper respiratory tract +C0339899|T047|PT|J39.8|ICD10CM|Other specified diseases of upper respiratory tract|Other specified diseases of upper respiratory tract +C0339899|T047|AB|J39.8|ICD10CM|Other specified diseases of upper respiratory tract|Other specified diseases of upper respiratory tract +C0264221|T037|PT|J39.9|ICD10CM|Disease of upper respiratory tract, unspecified|Disease of upper respiratory tract, unspecified +C0264221|T037|AB|J39.9|ICD10CM|Disease of upper respiratory tract, unspecified|Disease of upper respiratory tract, unspecified +C0264221|T037|PT|J39.9|ICD10|Disease of upper respiratory tract, unspecified|Disease of upper respiratory tract, unspecified +C0006277|T047|ET|J40|ICD10CM|Bronchitis NOS|Bronchitis NOS +C0040586|T047|ET|J40|ICD10CM|Bronchitis with tracheitis NOS|Bronchitis with tracheitis NOS +C0006277|T047|PT|J40|ICD10CM|Bronchitis, not specified as acute or chronic|Bronchitis, not specified as acute or chronic +C0006277|T047|AB|J40|ICD10CM|Bronchitis, not specified as acute or chronic|Bronchitis, not specified as acute or chronic +C0006277|T047|PT|J40|ICD10|Bronchitis, not specified as acute or chronic|Bronchitis, not specified as acute or chronic +C0155872|T047|ET|J40|ICD10CM|Catarrhal bronchitis|Catarrhal bronchitis +C0040586|T047|ET|J40|ICD10CM|Tracheobronchitis NOS|Tracheobronchitis NOS +C0348692|T047|HT|J40-J47|ICD10CM|Chronic lower respiratory diseases (J40-J47)|Chronic lower respiratory diseases (J40-J47) +C0348692|T047|HT|J40-J47.9|ICD10|Chronic lower respiratory diseases|Chronic lower respiratory diseases +C0392000|T047|HT|J41|ICD10|Simple and mucopurulent chronic bronchitis|Simple and mucopurulent chronic bronchitis +C0392000|T047|AB|J41|ICD10CM|Simple and mucopurulent chronic bronchitis|Simple and mucopurulent chronic bronchitis +C0392000|T047|HT|J41|ICD10CM|Simple and mucopurulent chronic bronchitis|Simple and mucopurulent chronic bronchitis +C0155872|T047|PT|J41.0|ICD10|Simple chronic bronchitis|Simple chronic bronchitis +C0155872|T047|PT|J41.0|ICD10CM|Simple chronic bronchitis|Simple chronic bronchitis +C0155872|T047|AB|J41.0|ICD10CM|Simple chronic bronchitis|Simple chronic bronchitis +C0155873|T047|PT|J41.1|ICD10CM|Mucopurulent chronic bronchitis|Mucopurulent chronic bronchitis +C0155873|T047|AB|J41.1|ICD10CM|Mucopurulent chronic bronchitis|Mucopurulent chronic bronchitis +C0155873|T047|PT|J41.1|ICD10|Mucopurulent chronic bronchitis|Mucopurulent chronic bronchitis +C0348807|T047|PT|J41.8|ICD10|Mixed simple and mucopurulent chronic bronchitis|Mixed simple and mucopurulent chronic bronchitis +C0348807|T047|PT|J41.8|ICD10CM|Mixed simple and mucopurulent chronic bronchitis|Mixed simple and mucopurulent chronic bronchitis +C0348807|T047|AB|J41.8|ICD10CM|Mixed simple and mucopurulent chronic bronchitis|Mixed simple and mucopurulent chronic bronchitis +C0008677|T047|ET|J42|ICD10CM|Chronic bronchitis NOS|Chronic bronchitis NOS +C0264322|T047|ET|J42|ICD10CM|Chronic tracheitis|Chronic tracheitis +C0264323|T047|ET|J42|ICD10CM|Chronic tracheobronchitis|Chronic tracheobronchitis +C0008677|T047|PT|J42|ICD10CM|Unspecified chronic bronchitis|Unspecified chronic bronchitis +C0008677|T047|AB|J42|ICD10CM|Unspecified chronic bronchitis|Unspecified chronic bronchitis +C0008677|T047|PT|J42|ICD10|Unspecified chronic bronchitis|Unspecified chronic bronchitis +C0034067|T047|HT|J43|ICD10|Emphysema|Emphysema +C0034067|T047|HT|J43|ICD10CM|Emphysema|Emphysema +C0034067|T047|AB|J43|ICD10CM|Emphysema|Emphysema +C0264395|T047|PT|J43.0|ICD10|MacLeod's syndrome|MacLeod's syndrome +C0264395|T047|ET|J43.0|ICD10CM|Swyer-James syndrome|Swyer-James syndrome +C0264395|T047|ET|J43.0|ICD10CM|Unilateral emphysema|Unilateral emphysema +C0264395|T047|ET|J43.0|ICD10CM|Unilateral hyperlucent lung|Unilateral hyperlucent lung +C2887441|T047|ET|J43.0|ICD10CM|Unilateral pulmonary artery functional hypoplasia|Unilateral pulmonary artery functional hypoplasia +C2887442|T047|AB|J43.0|ICD10CM|Unilateral pulmonary emphysema [MacLeod's syndrome]|Unilateral pulmonary emphysema [MacLeod's syndrome] +C2887442|T047|PT|J43.0|ICD10CM|Unilateral pulmonary emphysema [MacLeod's syndrome]|Unilateral pulmonary emphysema [MacLeod's syndrome] +C1407118|T047|ET|J43.0|ICD10CM|Unilateral transparency of lung|Unilateral transparency of lung +C0264393|T047|ET|J43.1|ICD10CM|Panacinar emphysema|Panacinar emphysema +C0264393|T047|PT|J43.1|ICD10CM|Panlobular emphysema|Panlobular emphysema +C0264393|T047|AB|J43.1|ICD10CM|Panlobular emphysema|Panlobular emphysema +C0264393|T047|PT|J43.1|ICD10|Panlobular emphysema|Panlobular emphysema +C0221227|T047|PT|J43.2|ICD10|Centrilobular emphysema|Centrilobular emphysema +C0221227|T047|PT|J43.2|ICD10CM|Centrilobular emphysema|Centrilobular emphysema +C0221227|T047|AB|J43.2|ICD10CM|Centrilobular emphysema|Centrilobular emphysema +C0029607|T047|PT|J43.8|ICD10|Other emphysema|Other emphysema +C0029607|T047|PT|J43.8|ICD10CM|Other emphysema|Other emphysema +C0029607|T047|AB|J43.8|ICD10CM|Other emphysema|Other emphysema +C2887443|T033|ET|J43.9|ICD10CM|Bullous emphysema (lung)(pulmonary)|Bullous emphysema (lung)(pulmonary) +C0034067|T047|ET|J43.9|ICD10CM|Emphysema (lung)(pulmonary) NOS|Emphysema (lung)(pulmonary) NOS +C0034067|T047|PT|J43.9|ICD10CM|Emphysema, unspecified|Emphysema, unspecified +C0034067|T047|AB|J43.9|ICD10CM|Emphysema, unspecified|Emphysema, unspecified +C0034067|T047|PT|J43.9|ICD10|Emphysema, unspecified|Emphysema, unspecified +C0152242|T033|ET|J43.9|ICD10CM|Emphysematous bleb|Emphysematous bleb +C2887444|T047|ET|J43.9|ICD10CM|Vesicular emphysema (lung)(pulmonary)|Vesicular emphysema (lung)(pulmonary) +C0865800|T047|ET|J44|ICD10CM|asthma with chronic obstructive pulmonary disease|asthma with chronic obstructive pulmonary disease +C1390714|T047|ET|J44|ICD10CM|chronic asthmatic (obstructive) bronchitis|chronic asthmatic (obstructive) bronchitis +C0865790|T047|ET|J44|ICD10CM|chronic bronchitis with airways obstruction|chronic bronchitis with airways obstruction +C0155874|T047|ET|J44|ICD10CM|chronic bronchitis with emphysema|chronic bronchitis with emphysema +C0155874|T047|ET|J44|ICD10CM|chronic emphysematous bronchitis|chronic emphysematous bronchitis +C0155883|T047|ET|J44|ICD10CM|chronic obstructive asthma|chronic obstructive asthma +C0155874|T047|ET|J44|ICD10CM|chronic obstructive bronchitis|chronic obstructive bronchitis +C4290194|T047|ET|J44|ICD10CM|chronic obstructive tracheobronchitis|chronic obstructive tracheobronchitis +C0494659|T047|HT|J44|ICD10|Other chronic obstructive pulmonary disease|Other chronic obstructive pulmonary disease +C0494659|T047|AB|J44|ICD10CM|Other chronic obstructive pulmonary disease|Other chronic obstructive pulmonary disease +C0494659|T047|HT|J44|ICD10CM|Other chronic obstructive pulmonary disease|Other chronic obstructive pulmonary disease +C0348818|T047|AB|J44.0|ICD10CM|Chr obstructive pulmon disease with (acute) lower resp infct|Chr obstructive pulmon disease with (acute) lower resp infct +C0348818|T047|PT|J44.0|ICD10CM|Chronic obstructive pulmonary disease with (acute) lower respiratory infection|Chronic obstructive pulmonary disease with (acute) lower respiratory infection +C0348818|T047|PT|J44.0|ICD10|Chronic obstructive pulmonary disease with acute lower respiratory infection|Chronic obstructive pulmonary disease with acute lower respiratory infection +C0340044|T047|AB|J44.1|ICD10CM|Chronic obstructive pulmonary disease w (acute) exacerbation|Chronic obstructive pulmonary disease w (acute) exacerbation +C0340044|T047|PT|J44.1|ICD10CM|Chronic obstructive pulmonary disease with (acute) exacerbation|Chronic obstructive pulmonary disease with (acute) exacerbation +C0348817|T047|PT|J44.1|ICD10|Chronic obstructive pulmonary disease with acute exacerbation, unspecified|Chronic obstructive pulmonary disease with acute exacerbation, unspecified +C2887446|T047|ET|J44.1|ICD10CM|Decompensated COPD|Decompensated COPD +C2887447|T047|ET|J44.1|ICD10CM|Decompensated COPD with (acute) exacerbation|Decompensated COPD with (acute) exacerbation +C0348693|T047|PT|J44.8|ICD10|Other specified chronic obstructive pulmonary disease|Other specified chronic obstructive pulmonary disease +C0024117|T047|ET|J44.9|ICD10CM|Chronic obstructive airway disease NOS|Chronic obstructive airway disease NOS +C0024117|T047|ET|J44.9|ICD10CM|Chronic obstructive lung disease NOS|Chronic obstructive lung disease NOS +C0024117|T047|PT|J44.9|ICD10CM|Chronic obstructive pulmonary disease, unspecified|Chronic obstructive pulmonary disease, unspecified +C0024117|T047|AB|J44.9|ICD10CM|Chronic obstructive pulmonary disease, unspecified|Chronic obstructive pulmonary disease, unspecified +C0024117|T047|PT|J44.9|ICD10|Chronic obstructive pulmonary disease, unspecified|Chronic obstructive pulmonary disease, unspecified +C0494660|T047|ET|J45|ICD10CM|allergic (predominantly) asthma|allergic (predominantly) asthma +C1260881|T047|ET|J45|ICD10CM|allergic bronchitis NOS|allergic bronchitis NOS +C1387164|T047|ET|J45|ICD10CM|allergic rhinitis with asthma|allergic rhinitis with asthma +C0004096|T047|HT|J45|ICD10CM|Asthma|Asthma +C0004096|T047|AB|J45|ICD10CM|Asthma|Asthma +C0004096|T047|HT|J45|ICD10|Asthma|Asthma +C0155877|T047|ET|J45|ICD10CM|atopic asthma|atopic asthma +C0155877|T047|ET|J45|ICD10CM|extrinsic allergic asthma|extrinsic allergic asthma +C0264411|T047|ET|J45|ICD10CM|hay fever with asthma|hay fever with asthma +C1388869|T047|ET|J45|ICD10CM|idiosyncratic asthma|idiosyncratic asthma +C0155880|T047|ET|J45|ICD10CM|intrinsic nonallergic asthma|intrinsic nonallergic asthma +C0155880|T047|ET|J45|ICD10CM|nonallergic asthma|nonallergic asthma +C0494660|T047|PT|J45.0|ICD10|Predominantly allergic asthma|Predominantly allergic asthma +C0155880|T047|PT|J45.1|ICD10|Nonallergic asthma|Nonallergic asthma +C1960045|T047|HT|J45.2|ICD10CM|Mild intermittent asthma|Mild intermittent asthma +C1960045|T047|AB|J45.2|ICD10CM|Mild intermittent asthma|Mild intermittent asthma +C1960045|T047|ET|J45.20|ICD10CM|Mild intermittent asthma NOS|Mild intermittent asthma NOS +C2887449|T047|AB|J45.20|ICD10CM|Mild intermittent asthma, uncomplicated|Mild intermittent asthma, uncomplicated +C2887449|T047|PT|J45.20|ICD10CM|Mild intermittent asthma, uncomplicated|Mild intermittent asthma, uncomplicated +C2887450|T047|AB|J45.21|ICD10CM|Mild intermittent asthma with (acute) exacerbation|Mild intermittent asthma with (acute) exacerbation +C2887450|T047|PT|J45.21|ICD10CM|Mild intermittent asthma with (acute) exacerbation|Mild intermittent asthma with (acute) exacerbation +C2887451|T047|PT|J45.22|ICD10CM|Mild intermittent asthma with status asthmaticus|Mild intermittent asthma with status asthmaticus +C2887451|T047|AB|J45.22|ICD10CM|Mild intermittent asthma with status asthmaticus|Mild intermittent asthma with status asthmaticus +C1960046|T047|HT|J45.3|ICD10CM|Mild persistent asthma|Mild persistent asthma +C1960046|T047|AB|J45.3|ICD10CM|Mild persistent asthma|Mild persistent asthma +C1960046|T047|ET|J45.30|ICD10CM|Mild persistent asthma NOS|Mild persistent asthma NOS +C2887452|T047|AB|J45.30|ICD10CM|Mild persistent asthma, uncomplicated|Mild persistent asthma, uncomplicated +C2887452|T047|PT|J45.30|ICD10CM|Mild persistent asthma, uncomplicated|Mild persistent asthma, uncomplicated +C2887453|T047|AB|J45.31|ICD10CM|Mild persistent asthma with (acute) exacerbation|Mild persistent asthma with (acute) exacerbation +C2887453|T047|PT|J45.31|ICD10CM|Mild persistent asthma with (acute) exacerbation|Mild persistent asthma with (acute) exacerbation +C2887454|T047|PT|J45.32|ICD10CM|Mild persistent asthma with status asthmaticus|Mild persistent asthma with status asthmaticus +C2887454|T047|AB|J45.32|ICD10CM|Mild persistent asthma with status asthmaticus|Mild persistent asthma with status asthmaticus +C1960047|T047|HT|J45.4|ICD10CM|Moderate persistent asthma|Moderate persistent asthma +C1960047|T047|AB|J45.4|ICD10CM|Moderate persistent asthma|Moderate persistent asthma +C1960047|T047|ET|J45.40|ICD10CM|Moderate persistent asthma NOS|Moderate persistent asthma NOS +C2887456|T047|AB|J45.40|ICD10CM|Moderate persistent asthma, uncomplicated|Moderate persistent asthma, uncomplicated +C2887456|T047|PT|J45.40|ICD10CM|Moderate persistent asthma, uncomplicated|Moderate persistent asthma, uncomplicated +C2887457|T033|AB|J45.41|ICD10CM|Moderate persistent asthma with (acute) exacerbation|Moderate persistent asthma with (acute) exacerbation +C2887457|T033|PT|J45.41|ICD10CM|Moderate persistent asthma with (acute) exacerbation|Moderate persistent asthma with (acute) exacerbation +C2887458|T047|AB|J45.42|ICD10CM|Moderate persistent asthma with status asthmaticus|Moderate persistent asthma with status asthmaticus +C2887458|T047|PT|J45.42|ICD10CM|Moderate persistent asthma with status asthmaticus|Moderate persistent asthma with status asthmaticus +C1960048|T047|HT|J45.5|ICD10CM|Severe persistent asthma|Severe persistent asthma +C1960048|T047|AB|J45.5|ICD10CM|Severe persistent asthma|Severe persistent asthma +C1960048|T047|ET|J45.50|ICD10CM|Severe persistent asthma NOS|Severe persistent asthma NOS +C2887460|T047|AB|J45.50|ICD10CM|Severe persistent asthma, uncomplicated|Severe persistent asthma, uncomplicated +C2887460|T047|PT|J45.50|ICD10CM|Severe persistent asthma, uncomplicated|Severe persistent asthma, uncomplicated +C2887461|T047|AB|J45.51|ICD10CM|Severe persistent asthma with (acute) exacerbation|Severe persistent asthma with (acute) exacerbation +C2887461|T047|PT|J45.51|ICD10CM|Severe persistent asthma with (acute) exacerbation|Severe persistent asthma with (acute) exacerbation +C2887462|T047|AB|J45.52|ICD10CM|Severe persistent asthma with status asthmaticus|Severe persistent asthma with status asthmaticus +C2887462|T047|PT|J45.52|ICD10CM|Severe persistent asthma with status asthmaticus|Severe persistent asthma with status asthmaticus +C0348819|T047|PT|J45.8|ICD10|Mixed asthma|Mixed asthma +C0004096|T047|PT|J45.9|ICD10|Asthma, unspecified|Asthma, unspecified +C0810292|T047|AB|J45.9|ICD10CM|Other and unspecified asthma|Other and unspecified asthma +C0810292|T047|HT|J45.9|ICD10CM|Other and unspecified asthma|Other and unspecified asthma +C1319018|T047|ET|J45.90|ICD10CM|Asthmatic bronchitis NOS|Asthmatic bronchitis NOS +C0264408|T047|ET|J45.90|ICD10CM|Childhood asthma NOS|Childhood asthma NOS +C0264413|T047|ET|J45.90|ICD10CM|Late onset asthma|Late onset asthma +C0004096|T047|AB|J45.90|ICD10CM|Unspecified asthma|Unspecified asthma +C0004096|T047|HT|J45.90|ICD10CM|Unspecified asthma|Unspecified asthma +C2887463|T047|AB|J45.901|ICD10CM|Unspecified asthma with (acute) exacerbation|Unspecified asthma with (acute) exacerbation +C2887463|T047|PT|J45.901|ICD10CM|Unspecified asthma with (acute) exacerbation|Unspecified asthma with (acute) exacerbation +C2887464|T047|AB|J45.902|ICD10CM|Unspecified asthma with status asthmaticus|Unspecified asthma with status asthmaticus +C2887464|T047|PT|J45.902|ICD10CM|Unspecified asthma with status asthmaticus|Unspecified asthma with status asthmaticus +C0004096|T047|ET|J45.909|ICD10CM|Asthma NOS|Asthma NOS +C2887465|T047|AB|J45.909|ICD10CM|Unspecified asthma, uncomplicated|Unspecified asthma, uncomplicated +C2887465|T047|PT|J45.909|ICD10CM|Unspecified asthma, uncomplicated|Unspecified asthma, uncomplicated +C2887466|T047|HT|J45.99|ICD10CM|Other asthma|Other asthma +C2887466|T047|AB|J45.99|ICD10CM|Other asthma|Other asthma +C0015263|T047|PT|J45.990|ICD10CM|Exercise induced bronchospasm|Exercise induced bronchospasm +C0015263|T047|AB|J45.990|ICD10CM|Exercise induced bronchospasm|Exercise induced bronchospasm +C0694548|T047|PT|J45.991|ICD10CM|Cough variant asthma|Cough variant asthma +C0694548|T047|AB|J45.991|ICD10CM|Cough variant asthma|Cough variant asthma +C2887466|T047|AB|J45.998|ICD10CM|Other asthma|Other asthma +C2887466|T047|PT|J45.998|ICD10CM|Other asthma|Other asthma +C0038218|T047|PT|J46|ICD10|Status asthmaticus|Status asthmaticus +C0006267|T047|PT|J47|ICD10|Bronchiectasis|Bronchiectasis +C0006267|T047|HT|J47|ICD10CM|Bronchiectasis|Bronchiectasis +C0006267|T047|AB|J47|ICD10CM|Bronchiectasis|Bronchiectasis +C0264372|T047|ET|J47|ICD10CM|bronchiolectasis|bronchiolectasis +C2887467|T033|ET|J47.0|ICD10CM|Bronchiectasis with acute bronchitis|Bronchiectasis with acute bronchitis +C2887468|T047|PT|J47.0|ICD10CM|Bronchiectasis with acute lower respiratory infection|Bronchiectasis with acute lower respiratory infection +C2887468|T047|AB|J47.0|ICD10CM|Bronchiectasis with acute lower respiratory infection|Bronchiectasis with acute lower respiratory infection +C0878696|T047|AB|J47.1|ICD10CM|Bronchiectasis with (acute) exacerbation|Bronchiectasis with (acute) exacerbation +C0878696|T047|PT|J47.1|ICD10CM|Bronchiectasis with (acute) exacerbation|Bronchiectasis with (acute) exacerbation +C0006267|T047|ET|J47.9|ICD10CM|Bronchiectasis NOS|Bronchiectasis NOS +C2887469|T047|AB|J47.9|ICD10CM|Bronchiectasis, uncomplicated|Bronchiectasis, uncomplicated +C2887469|T047|PT|J47.9|ICD10CM|Bronchiectasis, uncomplicated|Bronchiectasis, uncomplicated +C0003164|T047|ET|J60|ICD10CM|Anthracosilicosis|Anthracosilicosis +C0003165|T047|ET|J60|ICD10CM|Anthracosis|Anthracosis +C0003165|T047|ET|J60|ICD10CM|Black lung disease|Black lung disease +C0003165|T047|ET|J60|ICD10CM|Coalworker's lung|Coalworker's lung +C0003165|T047|PT|J60|ICD10CM|Coalworker's pneumoconiosis|Coalworker's pneumoconiosis +C0003165|T047|AB|J60|ICD10CM|Coalworker's pneumoconiosis|Coalworker's pneumoconiosis +C0003165|T047|PT|J60|ICD10|Coalworker's pneumoconiosis|Coalworker's pneumoconiosis +C0340139|T047|HT|J60-J70|ICD10CM|Lung diseases due to external agents (J60-J70)|Lung diseases due to external agents (J60-J70) +C0340139|T047|HT|J60-J70.9|ICD10|Lung diseases due to external agents|Lung diseases due to external agents +C0003949|T047|ET|J61|ICD10CM|Asbestosis|Asbestosis +C0494662|T047|PT|J61|ICD10AE|Pneumoconiosis due to asbestos and other mineral fibers|Pneumoconiosis due to asbestos and other mineral fibers +C0494662|T047|PT|J61|ICD10CM|Pneumoconiosis due to asbestos and other mineral fibers|Pneumoconiosis due to asbestos and other mineral fibers +C0494662|T047|AB|J61|ICD10CM|Pneumoconiosis due to asbestos and other mineral fibers|Pneumoconiosis due to asbestos and other mineral fibers +C0494662|T047|PT|J61|ICD10|Pneumoconiosis due to asbestos and other mineral fibres|Pneumoconiosis due to asbestos and other mineral fibres +C0037116|T047|HT|J62|ICD10|Pneumoconiosis due to dust containing silica|Pneumoconiosis due to dust containing silica +C0037116|T047|AB|J62|ICD10CM|Pneumoconiosis due to dust containing silica|Pneumoconiosis due to dust containing silica +C0037116|T047|HT|J62|ICD10CM|Pneumoconiosis due to dust containing silica|Pneumoconiosis due to dust containing silica +C0264427|T047|ET|J62|ICD10CM|silicotic fibrosis (massive) of lung|silicotic fibrosis (massive) of lung +C0238377|T047|PT|J62.0|ICD10CM|Pneumoconiosis due to talc dust|Pneumoconiosis due to talc dust +C0238377|T047|AB|J62.0|ICD10CM|Pneumoconiosis due to talc dust|Pneumoconiosis due to talc dust +C0238377|T047|PT|J62.0|ICD10|Pneumoconiosis due to talc dust|Pneumoconiosis due to talc dust +C0348694|T047|PT|J62.8|ICD10|Pneumoconiosis due to other dust containing silica|Pneumoconiosis due to other dust containing silica +C0348694|T047|PT|J62.8|ICD10CM|Pneumoconiosis due to other dust containing silica|Pneumoconiosis due to other dust containing silica +C0348694|T047|AB|J62.8|ICD10CM|Pneumoconiosis due to other dust containing silica|Pneumoconiosis due to other dust containing silica +C0037116|T047|ET|J62.8|ICD10CM|Silicosis NOS|Silicosis NOS +C0032274|T047|AB|J63|ICD10CM|Pneumoconiosis due to other inorganic dusts|Pneumoconiosis due to other inorganic dusts +C0032274|T047|HT|J63|ICD10CM|Pneumoconiosis due to other inorganic dusts|Pneumoconiosis due to other inorganic dusts +C0032274|T047|HT|J63|ICD10|Pneumoconiosis due to other inorganic dusts|Pneumoconiosis due to other inorganic dusts +C0311227|T047|PT|J63.0|ICD10|Aluminosis (of lung)|Aluminosis (of lung) +C0311227|T047|PT|J63.0|ICD10CM|Aluminosis (of lung)|Aluminosis (of lung) +C0311227|T047|AB|J63.0|ICD10CM|Aluminosis (of lung)|Aluminosis (of lung) +C0264437|T047|PT|J63.1|ICD10CM|Bauxite fibrosis (of lung)|Bauxite fibrosis (of lung) +C0264437|T047|AB|J63.1|ICD10CM|Bauxite fibrosis (of lung)|Bauxite fibrosis (of lung) +C0264437|T047|PT|J63.1|ICD10|Bauxite fibrosis (of lung)|Bauxite fibrosis (of lung) +C0005138|T037|PT|J63.2|ICD10|Berylliosis|Berylliosis +C0005138|T037|PT|J63.2|ICD10CM|Berylliosis|Berylliosis +C0005138|T037|AB|J63.2|ICD10CM|Berylliosis|Berylliosis +C0264439|T047|PT|J63.3|ICD10|Graphite fibrosis (of lung)|Graphite fibrosis (of lung) +C0264439|T047|PT|J63.3|ICD10CM|Graphite fibrosis (of lung)|Graphite fibrosis (of lung) +C0264439|T047|AB|J63.3|ICD10CM|Graphite fibrosis (of lung)|Graphite fibrosis (of lung) +C0037061|T047|PT|J63.4|ICD10CM|Siderosis|Siderosis +C0037061|T047|AB|J63.4|ICD10CM|Siderosis|Siderosis +C0037061|T047|PT|J63.4|ICD10|Siderosis|Siderosis +C0264444|T047|PT|J63.5|ICD10|Stannosis|Stannosis +C0264444|T047|PT|J63.5|ICD10CM|Stannosis|Stannosis +C0264444|T047|AB|J63.5|ICD10CM|Stannosis|Stannosis +C0348695|T047|PT|J63.6|ICD10CM|Pneumoconiosis due to other specified inorganic dusts|Pneumoconiosis due to other specified inorganic dusts +C0348695|T047|AB|J63.6|ICD10CM|Pneumoconiosis due to other specified inorganic dusts|Pneumoconiosis due to other specified inorganic dusts +C0348695|T047|PT|J63.8|ICD10|Pneumoconiosis due to other specified inorganic dusts|Pneumoconiosis due to other specified inorganic dusts +C0032273|T047|PT|J64|ICD10|Unspecified pneumoconiosis|Unspecified pneumoconiosis +C0032273|T047|PT|J64|ICD10CM|Unspecified pneumoconiosis|Unspecified pneumoconiosis +C0032273|T047|AB|J64|ICD10CM|Unspecified pneumoconiosis|Unspecified pneumoconiosis +C2887470|T047|ET|J65|ICD10CM|Any condition in J60-J64 with tuberculosis, any type in A15|Any condition in J60-J64 with tuberculosis, any type in A15 +C0348825|T047|PT|J65|ICD10CM|Pneumoconiosis associated with tuberculosis|Pneumoconiosis associated with tuberculosis +C0348825|T047|AB|J65|ICD10CM|Pneumoconiosis associated with tuberculosis|Pneumoconiosis associated with tuberculosis +C0348825|T047|PT|J65|ICD10|Pneumoconiosis associated with tuberculosis|Pneumoconiosis associated with tuberculosis +C0037118|T047|ET|J65|ICD10CM|Silicotuberculosis|Silicotuberculosis +C0494665|T047|HT|J66|ICD10|Airway disease due to specific organic dust|Airway disease due to specific organic dust +C0494665|T047|AB|J66|ICD10CM|Airway disease due to specific organic dust|Airway disease due to specific organic dust +C0494665|T047|HT|J66|ICD10CM|Airway disease due to specific organic dust|Airway disease due to specific organic dust +C2887471|T047|ET|J66.0|ICD10CM|Airway disease due to cotton dust|Airway disease due to cotton dust +C0006542|T047|PT|J66.0|ICD10CM|Byssinosis|Byssinosis +C0006542|T047|AB|J66.0|ICD10CM|Byssinosis|Byssinosis +C0006542|T047|PT|J66.0|ICD10|Byssinosis|Byssinosis +C2242894|T047|PT|J66.1|ICD10|Flax-dresser's disease|Flax-dresser's disease +C2242894|T047|PT|J66.1|ICD10CM|Flax-dressers' disease|Flax-dressers' disease +C2242894|T047|AB|J66.1|ICD10CM|Flax-dressers' disease|Flax-dressers' disease +C0006866|T047|PT|J66.2|ICD10CM|Cannabinosis|Cannabinosis +C0006866|T047|AB|J66.2|ICD10CM|Cannabinosis|Cannabinosis +C0006866|T047|PT|J66.2|ICD10|Cannabinosis|Cannabinosis +C0348696|T047|PT|J66.8|ICD10|Airway disease due to other specific organic dusts|Airway disease due to other specific organic dusts +C0348696|T047|PT|J66.8|ICD10CM|Airway disease due to other specific organic dusts|Airway disease due to other specific organic dusts +C0348696|T047|AB|J66.8|ICD10CM|Airway disease due to other specific organic dusts|Airway disease due to other specific organic dusts +C0494666|T047|AB|J67|ICD10CM|Hypersensitivity pneumonitis due to organic dust|Hypersensitivity pneumonitis due to organic dust +C0494666|T047|HT|J67|ICD10CM|Hypersensitivity pneumonitis due to organic dust|Hypersensitivity pneumonitis due to organic dust +C0494666|T047|HT|J67|ICD10|Hypersensitivity pneumonitis due to organic dust|Hypersensitivity pneumonitis due to organic dust +C0015634|T047|PT|J67.0|ICD10CM|Farmer's lung|Farmer's lung +C0015634|T047|AB|J67.0|ICD10CM|Farmer's lung|Farmer's lung +C0015634|T047|PT|J67.0|ICD10|Farmer's lung|Farmer's lung +C1399741|T047|ET|J67.0|ICD10CM|Harvester's lung|Harvester's lung +C2887473|T047|ET|J67.0|ICD10CM|Haymaker's lung|Haymaker's lung +C0015634|T047|ET|J67.0|ICD10CM|Moldy hay disease|Moldy hay disease +C0004681|T047|ET|J67.1|ICD10CM|Bagasse disease|Bagasse disease +C2887474|T047|ET|J67.1|ICD10CM|Bagasse pneumonitis|Bagasse pneumonitis +C0004681|T047|PT|J67.1|ICD10CM|Bagassosis|Bagassosis +C0004681|T047|AB|J67.1|ICD10CM|Bagassosis|Bagassosis +C0004681|T047|PT|J67.1|ICD10|Bagassosis|Bagassosis +C0005592|T047|PT|J67.2|ICD10|Bird fancier's lung|Bird fancier's lung +C0005592|T047|PT|J67.2|ICD10CM|Bird fancier's lung|Bird fancier's lung +C0005592|T047|AB|J67.2|ICD10CM|Bird fancier's lung|Bird fancier's lung +C0085931|T047|ET|J67.2|ICD10CM|Budgerigar fancier's disease or lung|Budgerigar fancier's disease or lung +C0031903|T047|ET|J67.2|ICD10CM|Pigeon fancier's disease or lung|Pigeon fancier's disease or lung +C0152108|T047|ET|J67.3|ICD10CM|Corkhandler's disease or lung|Corkhandler's disease or lung +C0152108|T047|ET|J67.3|ICD10CM|Corkworker's disease or lung|Corkworker's disease or lung +C0152108|T047|PT|J67.3|ICD10CM|Suberosis|Suberosis +C0152108|T047|AB|J67.3|ICD10CM|Suberosis|Suberosis +C0152108|T047|PT|J67.3|ICD10|Suberosis|Suberosis +C0155888|T047|ET|J67.4|ICD10CM|Alveolitis due to Aspergillus clavatus|Alveolitis due to Aspergillus clavatus +C0155888|T047|PT|J67.4|ICD10CM|Maltworker's lung|Maltworker's lung +C0155888|T047|AB|J67.4|ICD10CM|Maltworker's lung|Maltworker's lung +C0155888|T047|PT|J67.4|ICD10|Maltworker's lung|Maltworker's lung +C0155889|T047|PT|J67.5|ICD10|Mushroom-worker's lung|Mushroom-worker's lung +C0155889|T047|PT|J67.5|ICD10CM|Mushroom-worker's lung|Mushroom-worker's lung +C0155889|T047|AB|J67.5|ICD10CM|Mushroom-worker's lung|Mushroom-worker's lung +C0155890|T047|ET|J67.6|ICD10CM|Alveolitis due to Cryptostroma corticale|Alveolitis due to Cryptostroma corticale +C0155890|T047|ET|J67.6|ICD10CM|Cryptostromosis|Cryptostromosis +C0155890|T047|PT|J67.6|ICD10CM|Maple-bark-stripper's lung|Maple-bark-stripper's lung +C0155890|T047|AB|J67.6|ICD10CM|Maple-bark-stripper's lung|Maple-bark-stripper's lung +C0155890|T047|PT|J67.6|ICD10|Maple-bark-stripper's lung|Maple-bark-stripper's lung +C0155891|T047|PT|J67.7|ICD10CM|Air conditioner and humidifier lung|Air conditioner and humidifier lung +C0155891|T047|AB|J67.7|ICD10CM|Air conditioner and humidifier lung|Air conditioner and humidifier lung +C0155891|T047|PT|J67.7|ICD10|Air-conditioner and humidifier lung|Air-conditioner and humidifier lung +C0007969|T047|ET|J67.8|ICD10CM|Cheese-washer's lung|Cheese-washer's lung +C0264468|T047|ET|J67.8|ICD10CM|Coffee-worker's lung|Coffee-worker's lung +C0264469|T047|ET|J67.8|ICD10CM|Fish-meal worker's lung|Fish-meal worker's lung +C0264476|T047|ET|J67.8|ICD10CM|Furrier's lung|Furrier's lung +C0348697|T047|PT|J67.8|ICD10|Hypersensitivity pneumonitis due to other organic dusts|Hypersensitivity pneumonitis due to other organic dusts +C0348697|T047|PT|J67.8|ICD10CM|Hypersensitivity pneumonitis due to other organic dusts|Hypersensitivity pneumonitis due to other organic dusts +C0348697|T047|AB|J67.8|ICD10CM|Hypersensitivity pneumonitis due to other organic dusts|Hypersensitivity pneumonitis due to other organic dusts +C0264478|T047|ET|J67.8|ICD10CM|Sequoiosis|Sequoiosis +C0002390|T047|ET|J67.9|ICD10CM|Allergic alveolitis (extrinsic) NOS|Allergic alveolitis (extrinsic) NOS +C0494666|T047|PT|J67.9|ICD10|Hypersensitivity pneumonitis due to unspecified organic dust|Hypersensitivity pneumonitis due to unspecified organic dust +C0494666|T047|PT|J67.9|ICD10CM|Hypersensitivity pneumonitis due to unspecified organic dust|Hypersensitivity pneumonitis due to unspecified organic dust +C0494666|T047|AB|J67.9|ICD10CM|Hypersensitivity pneumonitis due to unspecified organic dust|Hypersensitivity pneumonitis due to unspecified organic dust +C0002390|T047|ET|J67.9|ICD10CM|Hypersensitivity pneumonitis NOS|Hypersensitivity pneumonitis NOS +C0494669|T047|AB|J68|ICD10CM|Resp cond d/t inhalation of chemicals, gas, fumes and vapors|Resp cond d/t inhalation of chemicals, gas, fumes and vapors +C0494669|T047|HT|J68|ICD10CM|Respiratory conditions due to inhalation of chemicals, gases, fumes and vapors|Respiratory conditions due to inhalation of chemicals, gases, fumes and vapors +C0494669|T047|HT|J68|ICD10AE|Respiratory conditions due to inhalation of chemicals, gases, fumes and vapors|Respiratory conditions due to inhalation of chemicals, gases, fumes and vapors +C0494669|T047|HT|J68|ICD10|Respiratory conditions due to inhalation of chemicals, gases, fumes and vapours|Respiratory conditions due to inhalation of chemicals, gases, fumes and vapours +C0494670|T047|AB|J68.0|ICD10CM|Bronchitis & pneumonitis d/t chemicals, gas, fumes & vapors|Bronchitis & pneumonitis d/t chemicals, gas, fumes & vapors +C0494670|T047|PT|J68.0|ICD10CM|Bronchitis and pneumonitis due to chemicals, gases, fumes and vapors|Bronchitis and pneumonitis due to chemicals, gases, fumes and vapors +C0494670|T047|PT|J68.0|ICD10AE|Bronchitis and pneumonitis due to chemicals, gases, fumes and vapors|Bronchitis and pneumonitis due to chemicals, gases, fumes and vapors +C0494670|T047|PT|J68.0|ICD10|Bronchitis and pneumonitis due to chemicals, gases, fumes and vapours|Bronchitis and pneumonitis due to chemicals, gases, fumes and vapours +C0264455|T047|ET|J68.0|ICD10CM|Chemical bronchitis (acute)|Chemical bronchitis (acute) +C0155895|T047|PT|J68.1|ICD10AE|Acute pulmonary edema due to chemicals, gases, fumes and vapors|Acute pulmonary edema due to chemicals, gases, fumes and vapors +C0155895|T047|PT|J68.1|ICD10|Acute pulmonary oedema due to chemicals, gases, fumes and vapours|Acute pulmonary oedema due to chemicals, gases, fumes and vapours +C2887476|T047|ET|J68.1|ICD10CM|Chemical pulmonary edema (acute) (chronic)|Chemical pulmonary edema (acute) (chronic) +C2887477|T047|AB|J68.1|ICD10CM|Pulmonary edema due to chemicals, gases, fumes and vapors|Pulmonary edema due to chemicals, gases, fumes and vapors +C2887477|T047|PT|J68.1|ICD10CM|Pulmonary edema due to chemicals, gases, fumes and vapors|Pulmonary edema due to chemicals, gases, fumes and vapors +C1144817|T047|AB|J68.2|ICD10CM|Upper resp inflam d/t chemicals, gas, fumes and vapors, NEC|Upper resp inflam d/t chemicals, gas, fumes and vapors, NEC +C1144817|T047|PT|J68.2|ICD10CM|Upper respiratory inflammation due to chemicals, gases, fumes and vapors, not elsewhere classified|Upper respiratory inflammation due to chemicals, gases, fumes and vapors, not elsewhere classified +C0869057|T047|PT|J68.2|ICD10AE|Upper respiratory inflammation due to chemicals, gases, fumes and vapors, not elsewhere classified|Upper respiratory inflammation due to chemicals, gases, fumes and vapors, not elsewhere classified +C0869057|T047|PT|J68.2|ICD10|Upper respiratory inflammation due to chemicals, gases, fumes and vapours, not elsewhere classified|Upper respiratory inflammation due to chemicals, gases, fumes and vapours, not elsewhere classified +C0348699|T047|AB|J68.3|ICD10CM|Oth ac & subac resp cond d/t chemicals, gas, fumes & vapors|Oth ac & subac resp cond d/t chemicals, gas, fumes & vapors +C0348699|T047|PT|J68.3|ICD10CM|Other acute and subacute respiratory conditions due to chemicals, gases, fumes and vapors|Other acute and subacute respiratory conditions due to chemicals, gases, fumes and vapors +C0348699|T047|PT|J68.3|ICD10AE|Other acute and subacute respiratory conditions due to chemicals, gases, fumes and vapors|Other acute and subacute respiratory conditions due to chemicals, gases, fumes and vapors +C0348699|T047|PT|J68.3|ICD10|Other acute and subacute respiratory conditions due to chemicals, gases, fumes and vapours|Other acute and subacute respiratory conditions due to chemicals, gases, fumes and vapours +C1299633|T047|ET|J68.3|ICD10CM|Reactive airways dysfunction syndrome|Reactive airways dysfunction syndrome +C0494672|T046|AB|J68.4|ICD10CM|Chronic resp cond due to chemicals, gases, fumes and vapors|Chronic resp cond due to chemicals, gases, fumes and vapors +C0494672|T046|PT|J68.4|ICD10CM|Chronic respiratory conditions due to chemicals, gases, fumes and vapors|Chronic respiratory conditions due to chemicals, gases, fumes and vapors +C0494672|T046|PT|J68.4|ICD10AE|Chronic respiratory conditions due to chemicals, gases, fumes and vapors|Chronic respiratory conditions due to chemicals, gases, fumes and vapors +C0494672|T046|PT|J68.4|ICD10|Chronic respiratory conditions due to chemicals, gases, fumes and vapours|Chronic respiratory conditions due to chemicals, gases, fumes and vapours +C2887478|T046|ET|J68.4|ICD10CM|Emphysema (diffuse) (chronic) due to inhalation of chemicals, gases, fumes and vapors|Emphysema (diffuse) (chronic) due to inhalation of chemicals, gases, fumes and vapors +C2887480|T046|ET|J68.4|ICD10CM|Pulmonary fibrosis (chronic) due to inhalation of chemicals, gases, fumes and vapors|Pulmonary fibrosis (chronic) due to inhalation of chemicals, gases, fumes and vapors +C0348700|T046|AB|J68.8|ICD10CM|Oth resp cond due to chemicals, gases, fumes and vapors|Oth resp cond due to chemicals, gases, fumes and vapors +C0348700|T046|PT|J68.8|ICD10CM|Other respiratory conditions due to chemicals, gases, fumes and vapors|Other respiratory conditions due to chemicals, gases, fumes and vapors +C0348700|T046|PT|J68.8|ICD10AE|Other respiratory conditions due to chemicals, gases, fumes and vapors|Other respiratory conditions due to chemicals, gases, fumes and vapors +C0348700|T046|PT|J68.8|ICD10|Other respiratory conditions due to chemicals, gases, fumes and vapours|Other respiratory conditions due to chemicals, gases, fumes and vapours +C0494673|T047|AB|J68.9|ICD10CM|Unsp resp cond due to chemicals, gases, fumes and vapors|Unsp resp cond due to chemicals, gases, fumes and vapors +C0494673|T047|PT|J68.9|ICD10CM|Unspecified respiratory condition due to chemicals, gases, fumes and vapors|Unspecified respiratory condition due to chemicals, gases, fumes and vapors +C0494673|T047|PT|J68.9|ICD10AE|Unspecified respiratory condition due to chemicals, gases, fumes and vapors|Unspecified respiratory condition due to chemicals, gases, fumes and vapors +C0494673|T047|PT|J68.9|ICD10|Unspecified respiratory condition due to chemicals, gases, fumes and vapours|Unspecified respiratory condition due to chemicals, gases, fumes and vapours +C0155899|T047|HT|J69|ICD10|Pneumonitis due to solids and liquids|Pneumonitis due to solids and liquids +C0155899|T047|HT|J69|ICD10CM|Pneumonitis due to solids and liquids|Pneumonitis due to solids and liquids +C0155899|T047|AB|J69|ICD10CM|Pneumonitis due to solids and liquids|Pneumonitis due to solids and liquids +C0264387|T047|ET|J69.0|ICD10CM|Aspiration pneumonia (due to) food (regurgitated)|Aspiration pneumonia (due to) food (regurgitated) +C0264388|T047|ET|J69.0|ICD10CM|Aspiration pneumonia (due to) gastric secretions|Aspiration pneumonia (due to) gastric secretions +C1405205|T047|ET|J69.0|ICD10CM|Aspiration pneumonia (due to) milk|Aspiration pneumonia (due to) milk +C0264390|T047|ET|J69.0|ICD10CM|Aspiration pneumonia (due to) vomit|Aspiration pneumonia (due to) vomit +C0032290|T047|ET|J69.0|ICD10CM|Aspiration pneumonia NOS|Aspiration pneumonia NOS +C0260334|T047|PT|J69.0|ICD10|Pneumonitis due to food and vomit|Pneumonitis due to food and vomit +C2887481|T047|AB|J69.0|ICD10CM|Pneumonitis due to inhalation of food and vomit|Pneumonitis due to inhalation of food and vomit +C2887481|T047|PT|J69.0|ICD10CM|Pneumonitis due to inhalation of food and vomit|Pneumonitis due to inhalation of food and vomit +C0032298|T047|ET|J69.1|ICD10CM|Exogenous lipoid pneumonia|Exogenous lipoid pneumonia +C0032298|T047|ET|J69.1|ICD10CM|Lipid pneumonia NOS|Lipid pneumonia NOS +C0494675|T047|AB|J69.1|ICD10CM|Pneumonitis due to inhalation of oils and essences|Pneumonitis due to inhalation of oils and essences +C0494675|T047|PT|J69.1|ICD10CM|Pneumonitis due to inhalation of oils and essences|Pneumonitis due to inhalation of oils and essences +C0494675|T047|PT|J69.1|ICD10|Pneumonitis due to oils and essences|Pneumonitis due to oils and essences +C2887482|T047|ET|J69.8|ICD10CM|Pneumonitis due to aspiration of blood|Pneumonitis due to aspiration of blood +C2887483|T037|ET|J69.8|ICD10CM|Pneumonitis due to aspiration of detergent|Pneumonitis due to aspiration of detergent +C0348701|T047|AB|J69.8|ICD10CM|Pneumonitis due to inhalation of other solids and liquids|Pneumonitis due to inhalation of other solids and liquids +C0348701|T047|PT|J69.8|ICD10CM|Pneumonitis due to inhalation of other solids and liquids|Pneumonitis due to inhalation of other solids and liquids +C0155900|T047|PT|J69.8|ICD10|Pneumonitis due to other solids and liquids|Pneumonitis due to other solids and liquids +C0494676|T047|AB|J70|ICD10CM|Respiratory conditions due to other external agents|Respiratory conditions due to other external agents +C0494676|T047|HT|J70|ICD10CM|Respiratory conditions due to other external agents|Respiratory conditions due to other external agents +C0494676|T047|HT|J70|ICD10|Respiratory conditions due to other external agents|Respiratory conditions due to other external agents +C0155902|T046|PT|J70.0|ICD10|Acute pulmonary manifestations due to radiation|Acute pulmonary manifestations due to radiation +C0155902|T046|PT|J70.0|ICD10CM|Acute pulmonary manifestations due to radiation|Acute pulmonary manifestations due to radiation +C0155902|T046|AB|J70.0|ICD10CM|Acute pulmonary manifestations due to radiation|Acute pulmonary manifestations due to radiation +C0206063|T037|ET|J70.0|ICD10CM|Radiation pneumonitis|Radiation pneumonitis +C0155903|T046|PT|J70.1|ICD10CM|Chronic and other pulmonary manifestations due to radiation|Chronic and other pulmonary manifestations due to radiation +C0155903|T046|AB|J70.1|ICD10CM|Chronic and other pulmonary manifestations due to radiation|Chronic and other pulmonary manifestations due to radiation +C0155903|T046|PT|J70.1|ICD10|Chronic and other pulmonary manifestations due to radiation|Chronic and other pulmonary manifestations due to radiation +C0340126|T047|ET|J70.1|ICD10CM|Fibrosis of lung following radiation|Fibrosis of lung following radiation +C0348823|T046|PT|J70.2|ICD10|Acute drug-induced interstitial lung disorders|Acute drug-induced interstitial lung disorders +C0348823|T046|PT|J70.2|ICD10CM|Acute drug-induced interstitial lung disorders|Acute drug-induced interstitial lung disorders +C0348823|T046|AB|J70.2|ICD10CM|Acute drug-induced interstitial lung disorders|Acute drug-induced interstitial lung disorders +C0348824|T046|PT|J70.3|ICD10CM|Chronic drug-induced interstitial lung disorders|Chronic drug-induced interstitial lung disorders +C0348824|T046|AB|J70.3|ICD10CM|Chronic drug-induced interstitial lung disorders|Chronic drug-induced interstitial lung disorders +C0348824|T046|PT|J70.3|ICD10|Chronic drug-induced interstitial lung disorders|Chronic drug-induced interstitial lung disorders +C0348822|T046|PT|J70.4|ICD10|Drug-induced interstitial lung disorders, unspecified|Drug-induced interstitial lung disorders, unspecified +C0348822|T046|PT|J70.4|ICD10CM|Drug-induced interstitial lung disorders, unspecified|Drug-induced interstitial lung disorders, unspecified +C0348822|T046|AB|J70.4|ICD10CM|Drug-induced interstitial lung disorders, unspecified|Drug-induced interstitial lung disorders, unspecified +C3161096|T047|AB|J70.5|ICD10CM|Respiratory conditions due to smoke inhalation|Respiratory conditions due to smoke inhalation +C3161096|T047|PT|J70.5|ICD10CM|Respiratory conditions due to smoke inhalation|Respiratory conditions due to smoke inhalation +C0037367|T037|ET|J70.5|ICD10CM|Smoke inhalation NOS|Smoke inhalation NOS +C0155904|T047|AB|J70.8|ICD10CM|Respiratory conditions due to oth external agents|Respiratory conditions due to oth external agents +C0155904|T047|PT|J70.8|ICD10CM|Respiratory conditions due to other specified external agents|Respiratory conditions due to other specified external agents +C0155904|T047|PT|J70.8|ICD10|Respiratory conditions due to other specified external agents|Respiratory conditions due to other specified external agents +C0155905|T047|PT|J70.9|ICD10|Respiratory conditions due to unspecified external agent|Respiratory conditions due to unspecified external agent +C0155905|T047|PT|J70.9|ICD10CM|Respiratory conditions due to unspecified external agent|Respiratory conditions due to unspecified external agent +C0155905|T047|AB|J70.9|ICD10CM|Respiratory conditions due to unspecified external agent|Respiratory conditions due to unspecified external agent +C0035222|T047|PT|J80|ICD10CM|Acute respiratory distress syndrome|Acute respiratory distress syndrome +C0035222|T047|AB|J80|ICD10CM|Acute respiratory distress syndrome|Acute respiratory distress syndrome +C2887484|T047|ET|J80|ICD10CM|Acute respiratory distress syndrome in adult or child|Acute respiratory distress syndrome in adult or child +C0035222|T047|ET|J80|ICD10CM|Adult hyaline membrane disease|Adult hyaline membrane disease +C0035222|T047|PT|J80|ICD10|Adult respiratory distress syndrome|Adult respiratory distress syndrome +C0348702|T047|HT|J80-J84|ICD10CM|Other respiratory diseases principally affecting the interstitium (J80-J84)|Other respiratory diseases principally affecting the interstitium (J80-J84) +C0348702|T047|HT|J80-J84.9|ICD10|Other respiratory diseases principally affecting the interstitium|Other respiratory diseases principally affecting the interstitium +C0034063|T046|PT|J81|ICD10AE|Pulmonary edema|Pulmonary edema +C0034063|T046|HT|J81|ICD10CM|Pulmonary edema|Pulmonary edema +C0034063|T046|AB|J81|ICD10CM|Pulmonary edema|Pulmonary edema +C0034063|T046|PT|J81|ICD10|Pulmonary oedema|Pulmonary oedema +C0155919|T047|ET|J81.0|ICD10CM|Acute edema of lung|Acute edema of lung +C0155919|T047|PT|J81.0|ICD10CM|Acute pulmonary edema|Acute pulmonary edema +C0155919|T047|AB|J81.0|ICD10CM|Acute pulmonary edema|Acute pulmonary edema +C0264518|T047|PT|J81.1|ICD10CM|Chronic pulmonary edema|Chronic pulmonary edema +C0264518|T047|AB|J81.1|ICD10CM|Chronic pulmonary edema|Chronic pulmonary edema +C2887485|T047|ET|J81.1|ICD10CM|Pulmonary congestion (chronic) (passive)|Pulmonary congestion (chronic) (passive) +C0034063|T046|ET|J81.1|ICD10CM|Pulmonary edema NOS|Pulmonary edema NOS +C0002106|T047|ET|J82|ICD10CM|Allergic pneumonia|Allergic pneumonia +C0340076|T047|ET|J82|ICD10CM|Eosinophilic asthma|Eosinophilic asthma +C1527407|T047|ET|J82|ICD10CM|Eosinophilic pneumonia|Eosinophilic pneumonia +C0242459|T047|ET|J82|ICD10CM|Löffler's pneumonia|Löffler's pneumonia +C0494678|T047|PT|J82|ICD10|Pulmonary eosinophilia, not elsewhere classified|Pulmonary eosinophilia, not elsewhere classified +C0494678|T047|PT|J82|ICD10CM|Pulmonary eosinophilia, not elsewhere classified|Pulmonary eosinophilia, not elsewhere classified +C0494678|T047|AB|J82|ICD10CM|Pulmonary eosinophilia, not elsewhere classified|Pulmonary eosinophilia, not elsewhere classified +C0014458|T047|ET|J82|ICD10CM|Tropical (pulmonary) eosinophilia NOS|Tropical (pulmonary) eosinophilia NOS +C0494679|T047|AB|J84|ICD10CM|Other interstitial pulmonary diseases|Other interstitial pulmonary diseases +C0494679|T047|HT|J84|ICD10CM|Other interstitial pulmonary diseases|Other interstitial pulmonary diseases +C0494679|T047|HT|J84|ICD10|Other interstitial pulmonary diseases|Other interstitial pulmonary diseases +C2887486|T047|AB|J84.0|ICD10CM|Alveolar and parieto-alveolar conditions|Alveolar and parieto-alveolar conditions +C2887486|T047|HT|J84.0|ICD10CM|Alveolar and parieto-alveolar conditions|Alveolar and parieto-alveolar conditions +C0340096|T047|PT|J84.0|ICD10|Alveolar and parietoalveolar conditions|Alveolar and parietoalveolar conditions +C0034050|T047|AB|J84.01|ICD10CM|Alveolar proteinosis|Alveolar proteinosis +C0034050|T047|PT|J84.01|ICD10CM|Alveolar proteinosis|Alveolar proteinosis +C0155912|T047|PT|J84.02|ICD10CM|Pulmonary alveolar microlithiasis|Pulmonary alveolar microlithiasis +C0155912|T047|AB|J84.02|ICD10CM|Pulmonary alveolar microlithiasis|Pulmonary alveolar microlithiasis +C0020807|T047|ET|J84.03|ICD10CM|Essential brown induration of lung|Essential brown induration of lung +C0020807|T047|PT|J84.03|ICD10CM|Idiopathic pulmonary hemosiderosis|Idiopathic pulmonary hemosiderosis +C0020807|T047|AB|J84.03|ICD10CM|Idiopathic pulmonary hemosiderosis|Idiopathic pulmonary hemosiderosis +C3264392|T047|AB|J84.09|ICD10CM|Other alveolar and parieto-alveolar conditions|Other alveolar and parieto-alveolar conditions +C3264392|T047|PT|J84.09|ICD10CM|Other alveolar and parieto-alveolar conditions|Other alveolar and parieto-alveolar conditions +C0348703|T047|PT|J84.1|ICD10|Other interstitial pulmonary diseases with fibrosis|Other interstitial pulmonary diseases with fibrosis +C0348703|T047|HT|J84.1|ICD10CM|Other interstitial pulmonary diseases with fibrosis|Other interstitial pulmonary diseases with fibrosis +C0348703|T047|AB|J84.1|ICD10CM|Other interstitial pulmonary diseases with fibrosis|Other interstitial pulmonary diseases with fibrosis +C3264393|T047|ET|J84.10|ICD10CM|Capillary fibrosis of lung|Capillary fibrosis of lung +C3264394|T047|ET|J84.10|ICD10CM|Cirrhosis of lung (chronic) NOS|Cirrhosis of lung (chronic) NOS +C3264395|T047|ET|J84.10|ICD10CM|Fibrosis of lung (atrophic) (chronic) (confluent) (massive) (perialveolar) (peribronchial) NOS|Fibrosis of lung (atrophic) (chronic) (confluent) (massive) (perialveolar) (peribronchial) NOS +C0264533|T047|ET|J84.10|ICD10CM|Induration of lung (chronic) NOS|Induration of lung (chronic) NOS +C0175999|T047|ET|J84.10|ICD10CM|Postinflammatory pulmonary fibrosis|Postinflammatory pulmonary fibrosis +C3264396|T047|AB|J84.10|ICD10CM|Pulmonary fibrosis, unspecified|Pulmonary fibrosis, unspecified +C3264396|T047|PT|J84.10|ICD10CM|Pulmonary fibrosis, unspecified|Pulmonary fibrosis, unspecified +C0085786|T047|HT|J84.11|ICD10CM|Idiopathic interstitial pneumonia|Idiopathic interstitial pneumonia +C0085786|T047|AB|J84.11|ICD10CM|Idiopathic interstitial pneumonia|Idiopathic interstitial pneumonia +C3161100|T046|AB|J84.111|ICD10CM|Idiopathic interstitial pneumonia, not otherwise specified|Idiopathic interstitial pneumonia, not otherwise specified +C3161100|T046|PT|J84.111|ICD10CM|Idiopathic interstitial pneumonia, not otherwise specified|Idiopathic interstitial pneumonia, not otherwise specified +C1800706|T047|ET|J84.112|ICD10CM|Cryptogenic fibrosing alveolitis|Cryptogenic fibrosing alveolitis +C0085786|T047|ET|J84.112|ICD10CM|Idiopathic fibrosing alveolitis|Idiopathic fibrosing alveolitis +C1800706|T047|PT|J84.112|ICD10CM|Idiopathic pulmonary fibrosis|Idiopathic pulmonary fibrosis +C1800706|T047|AB|J84.112|ICD10CM|Idiopathic pulmonary fibrosis|Idiopathic pulmonary fibrosis +C3161102|T047|AB|J84.113|ICD10CM|Idiopathic non-specific interstitial pneumonitis|Idiopathic non-specific interstitial pneumonitis +C3161102|T047|PT|J84.113|ICD10CM|Idiopathic non-specific interstitial pneumonitis|Idiopathic non-specific interstitial pneumonitis +C1279945|T047|PT|J84.114|ICD10CM|Acute interstitial pneumonitis|Acute interstitial pneumonitis +C1279945|T047|AB|J84.114|ICD10CM|Acute interstitial pneumonitis|Acute interstitial pneumonitis +C0085786|T047|ET|J84.114|ICD10CM|Hamman-Rich syndrome|Hamman-Rich syndrome +C0238378|T047|AB|J84.115|ICD10CM|Respiratory bronchiolitis interstitial lung disease|Respiratory bronchiolitis interstitial lung disease +C0238378|T047|PT|J84.115|ICD10CM|Respiratory bronchiolitis interstitial lung disease|Respiratory bronchiolitis interstitial lung disease +C0242770|T047|PT|J84.116|ICD10CM|Cryptogenic organizing pneumonia|Cryptogenic organizing pneumonia +C0242770|T047|AB|J84.116|ICD10CM|Cryptogenic organizing pneumonia|Cryptogenic organizing pneumonia +C0238378|T047|AB|J84.117|ICD10CM|Desquamative interstitial pneumonia|Desquamative interstitial pneumonia +C0238378|T047|PT|J84.117|ICD10CM|Desquamative interstitial pneumonia|Desquamative interstitial pneumonia +C3264397|T047|ET|J84.17|ICD10CM|Interstitial pneumonia (nonspecific) (usual) due to collagen vascular disease|Interstitial pneumonia (nonspecific) (usual) due to collagen vascular disease +C3264398|T047|ET|J84.17|ICD10CM|Interstitial pneumonia (nonspecific) (usual) in diseases classified elsewhere|Interstitial pneumonia (nonspecific) (usual) in diseases classified elsewhere +C3264399|T047|ET|J84.17|ICD10CM|Organizing pneumonia due to collagen vascular disease|Organizing pneumonia due to collagen vascular disease +C3264400|T047|ET|J84.17|ICD10CM|Organizing pneumonia in diseases classified elsewhere|Organizing pneumonia in diseases classified elsewhere +C3264401|T047|AB|J84.17|ICD10CM|Oth interstit pulmon dis w fibrosis in dis classd elswhr|Oth interstit pulmon dis w fibrosis in dis classd elswhr +C3264401|T047|PT|J84.17|ICD10CM|Other interstitial pulmonary diseases with fibrosis in diseases classified elsewhere|Other interstitial pulmonary diseases with fibrosis in diseases classified elsewhere +C0264511|T047|PT|J84.2|ICD10CM|Lymphoid interstitial pneumonia|Lymphoid interstitial pneumonia +C0264511|T047|AB|J84.2|ICD10CM|Lymphoid interstitial pneumonia|Lymphoid interstitial pneumonia +C0264511|T047|ET|J84.2|ICD10CM|Lymphoid interstitial pneumonitis|Lymphoid interstitial pneumonitis +C0348704|T047|HT|J84.8|ICD10CM|Other specified interstitial pulmonary diseases|Other specified interstitial pulmonary diseases +C0348704|T047|AB|J84.8|ICD10CM|Other specified interstitial pulmonary diseases|Other specified interstitial pulmonary diseases +C0348704|T047|PT|J84.8|ICD10|Other specified interstitial pulmonary diseases|Other specified interstitial pulmonary diseases +C0751674|T191|AB|J84.81|ICD10CM|Lymphangioleiomyomatosis|Lymphangioleiomyomatosis +C0751674|T191|PT|J84.81|ICD10CM|Lymphangioleiomyomatosis|Lymphangioleiomyomatosis +C0751674|T191|ET|J84.81|ICD10CM|Lymphangiomyomatosis|Lymphangiomyomatosis +C3161104|T047|ET|J84.82|ICD10CM|Adult PLCH|Adult PLCH +C3161104|T047|PT|J84.82|ICD10CM|Adult pulmonary Langerhans cell histiocytosis|Adult pulmonary Langerhans cell histiocytosis +C3161104|T047|AB|J84.82|ICD10CM|Adult pulmonary Langerhans cell histiocytosis|Adult pulmonary Langerhans cell histiocytosis +C3161107|T047|AB|J84.83|ICD10CM|Surfactant mutations of the lung|Surfactant mutations of the lung +C3161107|T047|PT|J84.83|ICD10CM|Surfactant mutations of the lung|Surfactant mutations of the lung +C3161109|T047|HT|J84.84|ICD10CM|Other interstitial lung diseases of childhood|Other interstitial lung diseases of childhood +C3161109|T047|AB|J84.84|ICD10CM|Other interstitial lung diseases of childhood|Other interstitial lung diseases of childhood +C3161105|T047|PT|J84.841|ICD10CM|Neuroendocrine cell hyperplasia of infancy|Neuroendocrine cell hyperplasia of infancy +C3161105|T047|AB|J84.841|ICD10CM|Neuroendocrine cell hyperplasia of infancy|Neuroendocrine cell hyperplasia of infancy +C3161106|T047|AB|J84.842|ICD10CM|Pulmonary interstitial glycogenosis|Pulmonary interstitial glycogenosis +C3161106|T047|PT|J84.842|ICD10CM|Pulmonary interstitial glycogenosis|Pulmonary interstitial glycogenosis +C3161108|T047|AB|J84.843|ICD10CM|Alveolar capillary dysplasia with vein misalignment|Alveolar capillary dysplasia with vein misalignment +C3161108|T047|PT|J84.843|ICD10CM|Alveolar capillary dysplasia with vein misalignment|Alveolar capillary dysplasia with vein misalignment +C3161109|T047|AB|J84.848|ICD10CM|Other interstitial lung diseases of childhood|Other interstitial lung diseases of childhood +C3161109|T047|PT|J84.848|ICD10CM|Other interstitial lung diseases of childhood|Other interstitial lung diseases of childhood +C0264510|T047|ET|J84.89|ICD10CM|Endogenous lipoid pneumonia|Endogenous lipoid pneumonia +C0206061|T047|ET|J84.89|ICD10CM|Interstitial pneumonitis|Interstitial pneumonitis +C3264402|T047|ET|J84.89|ICD10CM|Non-specific interstitial pneumonitis NOS|Non-specific interstitial pneumonitis NOS +C0264383|T047|ET|J84.89|ICD10CM|Organizing pneumonia NOS|Organizing pneumonia NOS +C0348704|T047|AB|J84.89|ICD10CM|Other specified interstitial pulmonary diseases|Other specified interstitial pulmonary diseases +C0348704|T047|PT|J84.89|ICD10CM|Other specified interstitial pulmonary diseases|Other specified interstitial pulmonary diseases +C0206061|T047|ET|J84.9|ICD10CM|Interstitial pneumonia NOS|Interstitial pneumonia NOS +C0206062|T047|PT|J84.9|ICD10CM|Interstitial pulmonary disease, unspecified|Interstitial pulmonary disease, unspecified +C0206062|T047|AB|J84.9|ICD10CM|Interstitial pulmonary disease, unspecified|Interstitial pulmonary disease, unspecified +C0206062|T047|PT|J84.9|ICD10|Interstitial pulmonary disease, unspecified|Interstitial pulmonary disease, unspecified +C0155908|T047|HT|J85|ICD10|Abscess of lung and mediastinum|Abscess of lung and mediastinum +C0155908|T047|HT|J85|ICD10CM|Abscess of lung and mediastinum|Abscess of lung and mediastinum +C0155908|T047|AB|J85|ICD10CM|Abscess of lung and mediastinum|Abscess of lung and mediastinum +C0348705|T047|HT|J85-J86|ICD10CM|Suppurative and necrotic conditions of the lower respiratory tract (J85-J86)|Suppurative and necrotic conditions of the lower respiratory tract (J85-J86) +C0348705|T047|HT|J85-J86.9|ICD10|Suppurative and necrotic conditions of lower respiratory tract|Suppurative and necrotic conditions of lower respiratory tract +C0494682|T047|PT|J85.0|ICD10|Gangrene and necrosis of lung|Gangrene and necrosis of lung +C0494682|T047|PT|J85.0|ICD10CM|Gangrene and necrosis of lung|Gangrene and necrosis of lung +C0494682|T047|AB|J85.0|ICD10CM|Gangrene and necrosis of lung|Gangrene and necrosis of lung +C0348806|T047|PT|J85.1|ICD10CM|Abscess of lung with pneumonia|Abscess of lung with pneumonia +C0348806|T047|AB|J85.1|ICD10CM|Abscess of lung with pneumonia|Abscess of lung with pneumonia +C0348806|T047|PT|J85.1|ICD10|Abscess of lung with pneumonia|Abscess of lung with pneumonia +C0024110|T047|ET|J85.2|ICD10CM|Abscess of lung NOS|Abscess of lung NOS +C0494683|T047|PT|J85.2|ICD10|Abscess of lung without pneumonia|Abscess of lung without pneumonia +C0494683|T047|PT|J85.2|ICD10CM|Abscess of lung without pneumonia|Abscess of lung without pneumonia +C0494683|T047|AB|J85.2|ICD10CM|Abscess of lung without pneumonia|Abscess of lung without pneumonia +C0155909|T047|PT|J85.3|ICD10|Abscess of mediastinum|Abscess of mediastinum +C0155909|T047|PT|J85.3|ICD10CM|Abscess of mediastinum|Abscess of mediastinum +C0155909|T047|AB|J85.3|ICD10CM|Abscess of mediastinum|Abscess of mediastinum +C0014013|T047|HT|J86|ICD10CM|Pyothorax|Pyothorax +C0014013|T047|AB|J86|ICD10CM|Pyothorax|Pyothorax +C0014013|T047|HT|J86|ICD10|Pyothorax|Pyothorax +C2887487|T047|ET|J86.0|ICD10CM|Any condition classifiable to J86.9 with fistula|Any condition classifiable to J86.9 with fistula +C0340236|T047|ET|J86.0|ICD10CM|Bronchocutaneous fistula|Bronchocutaneous fistula +C0238132|T047|ET|J86.0|ICD10CM|Bronchopleural fistula|Bronchopleural fistula +C0865817|T020|ET|J86.0|ICD10CM|Hepatopleural fistula|Hepatopleural fistula +C0865818|T020|ET|J86.0|ICD10CM|Mediastinal fistula|Mediastinal fistula +C1405128|T047|ET|J86.0|ICD10CM|Pleural fistula|Pleural fistula +C0740253|T047|PT|J86.0|ICD10|Pyothorax with fistula|Pyothorax with fistula +C0740253|T047|PT|J86.0|ICD10CM|Pyothorax with fistula|Pyothorax with fistula +C0740253|T047|AB|J86.0|ICD10CM|Pyothorax with fistula|Pyothorax with fistula +C1406923|T020|ET|J86.0|ICD10CM|Thoracic fistula|Thoracic fistula +C0865821|T047|ET|J86.9|ICD10CM|Abscess of pleura|Abscess of pleura +C0014013|T047|ET|J86.9|ICD10CM|Abscess of thorax|Abscess of thorax +C2887488|T047|ET|J86.9|ICD10CM|Empyema (chest) (lung) (pleura)|Empyema (chest) (lung) (pleura) +C0264566|T047|ET|J86.9|ICD10CM|Fibrinopurulent pleurisy|Fibrinopurulent pleurisy +C0014013|T047|ET|J86.9|ICD10CM|Purulent pleurisy|Purulent pleurisy +C0238404|T047|ET|J86.9|ICD10CM|Pyopneumothorax|Pyopneumothorax +C0730032|T047|PT|J86.9|ICD10|Pyothorax without fistula|Pyothorax without fistula +C0730032|T047|AB|J86.9|ICD10CM|Pyothorax without fistula|Pyothorax without fistula +C0730032|T047|PT|J86.9|ICD10CM|Pyothorax without fistula|Pyothorax without fistula +C0264564|T047|ET|J86.9|ICD10CM|Septic pleurisy|Septic pleurisy +C0264565|T047|ET|J86.9|ICD10CM|Seropurulent pleurisy|Seropurulent pleurisy +C0014013|T047|ET|J86.9|ICD10CM|Suppurative pleurisy|Suppurative pleurisy +C0264553|T047|ET|J90|ICD10CM|Encysted pleurisy|Encysted pleurisy +C0032227|T047|ET|J90|ICD10CM|Pleural effusion NOS|Pleural effusion NOS +C0494685|T047|PT|J90|ICD10|Pleural effusion, not elsewhere classified|Pleural effusion, not elsewhere classified +C0494685|T047|PT|J90|ICD10CM|Pleural effusion, not elsewhere classified|Pleural effusion, not elsewhere classified +C0494685|T047|AB|J90|ICD10CM|Pleural effusion, not elsewhere classified|Pleural effusion, not elsewhere classified +C2887489|T047|ET|J90|ICD10CM|Pleurisy with effusion (exudative) (serous)|Pleurisy with effusion (exudative) (serous) +C0348706|T047|HT|J90-J94|ICD10CM|Other diseases of the pleura (J90-J94)|Other diseases of the pleura (J90-J94) +C0348706|T047|HT|J90-J94.9|ICD10|Other diseases of pleura|Other diseases of pleura +C0348707|T047|PT|J91|ICD10|Pleural effusion in conditions classified elsewhere|Pleural effusion in conditions classified elsewhere +C0348707|T047|HT|J91|ICD10CM|Pleural effusion in conditions classified elsewhere|Pleural effusion in conditions classified elsewhere +C0348707|T047|AB|J91|ICD10CM|Pleural effusion in conditions classified elsewhere|Pleural effusion in conditions classified elsewhere +C0080032|T047|PT|J91.0|ICD10CM|Malignant pleural effusion|Malignant pleural effusion +C0080032|T047|AB|J91.0|ICD10CM|Malignant pleural effusion|Malignant pleural effusion +C2887490|T047|AB|J91.8|ICD10CM|Pleural effusion in other conditions classified elsewhere|Pleural effusion in other conditions classified elsewhere +C2887490|T047|PT|J91.8|ICD10CM|Pleural effusion in other conditions classified elsewhere|Pleural effusion in other conditions classified elsewhere +C0340030|T047|HT|J92|ICD10CM|Pleural plaque|Pleural plaque +C0340030|T047|AB|J92|ICD10CM|Pleural plaque|Pleural plaque +C0340030|T047|HT|J92|ICD10|Pleural plaque|Pleural plaque +C0264545|T047|ET|J92|ICD10CM|pleural thickening|pleural thickening +C0340025|T047|PT|J92.0|ICD10CM|Pleural plaque with presence of asbestos|Pleural plaque with presence of asbestos +C0340025|T047|AB|J92.0|ICD10CM|Pleural plaque with presence of asbestos|Pleural plaque with presence of asbestos +C0340025|T047|PT|J92.0|ICD10|Pleural plaque with presence of asbestos|Pleural plaque with presence of asbestos +C0340030|T047|ET|J92.9|ICD10CM|Pleural plaque NOS|Pleural plaque NOS +C0494687|T047|PT|J92.9|ICD10CM|Pleural plaque without asbestos|Pleural plaque without asbestos +C0494687|T047|AB|J92.9|ICD10CM|Pleural plaque without asbestos|Pleural plaque without asbestos +C0494687|T047|PT|J92.9|ICD10|Pleural plaque without asbestos|Pleural plaque without asbestos +C0032326|T047|HT|J93|ICD10|Pneumothorax|Pneumothorax +C3161433|T047|AB|J93|ICD10CM|Pneumothorax and air leak|Pneumothorax and air leak +C3161433|T047|HT|J93|ICD10CM|Pneumothorax and air leak|Pneumothorax and air leak +C0155907|T047|PT|J93.0|ICD10|Spontaneous tension pneumothorax|Spontaneous tension pneumothorax +C0155907|T047|PT|J93.0|ICD10CM|Spontaneous tension pneumothorax|Spontaneous tension pneumothorax +C0155907|T047|AB|J93.0|ICD10CM|Spontaneous tension pneumothorax|Spontaneous tension pneumothorax +C0029850|T047|PT|J93.1|ICD10|Other spontaneous pneumothorax|Other spontaneous pneumothorax +C0029850|T047|HT|J93.1|ICD10CM|Other spontaneous pneumothorax|Other spontaneous pneumothorax +C0029850|T047|AB|J93.1|ICD10CM|Other spontaneous pneumothorax|Other spontaneous pneumothorax +C1868193|T047|PT|J93.11|ICD10CM|Primary spontaneous pneumothorax|Primary spontaneous pneumothorax +C1868193|T047|AB|J93.11|ICD10CM|Primary spontaneous pneumothorax|Primary spontaneous pneumothorax +C3161098|T047|PT|J93.12|ICD10CM|Secondary spontaneous pneumothorax|Secondary spontaneous pneumothorax +C3161098|T047|AB|J93.12|ICD10CM|Secondary spontaneous pneumothorax|Secondary spontaneous pneumothorax +C0348708|T047|PT|J93.8|ICD10|Other pneumothorax|Other pneumothorax +C3161434|T047|AB|J93.8|ICD10CM|Other pneumothorax and air leak|Other pneumothorax and air leak +C3161434|T047|HT|J93.8|ICD10CM|Other pneumothorax and air leak|Other pneumothorax and air leak +C0264557|T047|PT|J93.81|ICD10CM|Chronic pneumothorax|Chronic pneumothorax +C0264557|T047|AB|J93.81|ICD10CM|Chronic pneumothorax|Chronic pneumothorax +C3161099|T033|AB|J93.82|ICD10CM|Other air leak|Other air leak +C3161099|T033|PT|J93.82|ICD10CM|Other air leak|Other air leak +C3161208|T047|ET|J93.82|ICD10CM|Persistent air leak|Persistent air leak +C0264556|T047|ET|J93.83|ICD10CM|Acute pneumothorax|Acute pneumothorax +C0348708|T047|PT|J93.83|ICD10CM|Other pneumothorax|Other pneumothorax +C0348708|T047|AB|J93.83|ICD10CM|Other pneumothorax|Other pneumothorax +C0149781|T047|ET|J93.83|ICD10CM|Spontaneous pneumothorax NOS|Spontaneous pneumothorax NOS +C0032326|T047|ET|J93.9|ICD10CM|Pneumothorax NOS|Pneumothorax NOS +C0032326|T047|PT|J93.9|ICD10CM|Pneumothorax, unspecified|Pneumothorax, unspecified +C0032326|T047|AB|J93.9|ICD10CM|Pneumothorax, unspecified|Pneumothorax, unspecified +C0032326|T047|PT|J93.9|ICD10|Pneumothorax, unspecified|Pneumothorax, unspecified +C0494688|T047|AB|J94|ICD10CM|Other pleural conditions|Other pleural conditions +C0494688|T047|HT|J94|ICD10CM|Other pleural conditions|Other pleural conditions +C0494688|T047|HT|J94|ICD10|Other pleural conditions|Other pleural conditions +C0340018|T047|ET|J94.0|ICD10CM|Chyliform effusion|Chyliform effusion +C0013691|T047|PT|J94.0|ICD10CM|Chylous effusion|Chylous effusion +C0013691|T047|AB|J94.0|ICD10CM|Chylous effusion|Chylous effusion +C0013691|T047|PT|J94.0|ICD10|Chylous effusion|Chylous effusion +C2724209|T047|PT|J94.1|ICD10|Fibrothorax|Fibrothorax +C2724209|T047|PT|J94.1|ICD10CM|Fibrothorax|Fibrothorax +C2724209|T047|AB|J94.1|ICD10CM|Fibrothorax|Fibrothorax +C0019123|T046|PT|J94.2|ICD10|Haemothorax|Haemothorax +C0019077|T047|ET|J94.2|ICD10CM|Hemopneumothorax|Hemopneumothorax +C0019123|T046|PT|J94.2|ICD10CM|Hemothorax|Hemothorax +C0019123|T046|AB|J94.2|ICD10CM|Hemothorax|Hemothorax +C0019123|T046|PT|J94.2|ICD10AE|Hemothorax|Hemothorax +C0020303|T033|ET|J94.8|ICD10CM|Hydropneumothorax|Hydropneumothorax +C0020312|T047|ET|J94.8|ICD10CM|Hydrothorax|Hydrothorax +C0348709|T047|PT|J94.8|ICD10CM|Other specified pleural conditions|Other specified pleural conditions +C0348709|T047|AB|J94.8|ICD10CM|Other specified pleural conditions|Other specified pleural conditions +C0348709|T047|PT|J94.8|ICD10|Other specified pleural conditions|Other specified pleural conditions +C0348710|T047|PT|J94.9|ICD10|Pleural condition, unspecified|Pleural condition, unspecified +C0348710|T047|PT|J94.9|ICD10CM|Pleural condition, unspecified|Pleural condition, unspecified +C0348710|T047|AB|J94.9|ICD10CM|Pleural condition, unspecified|Pleural condition, unspecified +C2887491|T046|AB|J95|ICD10CM|Intraop and postproc comp and disorders of resp sys, NEC|Intraop and postproc comp and disorders of resp sys, NEC +C0494689|T047|HT|J95|ICD10|Postprocedural respiratory disorders, not elsewhere classified|Postprocedural respiratory disorders, not elsewhere classified +C0029582|T047|HT|J95-J99.9|ICD10|Other diseases of the respiratory system|Other diseases of the respiratory system +C0155921|T046|AB|J95.0|ICD10CM|Tracheostomy complications|Tracheostomy complications +C0155921|T046|HT|J95.0|ICD10CM|Tracheostomy complications|Tracheostomy complications +C0392110|T033|PT|J95.0|ICD10|Tracheostomy malfunction|Tracheostomy malfunction +C0155921|T046|AB|J95.00|ICD10CM|Unspecified tracheostomy complication|Unspecified tracheostomy complication +C0155921|T046|PT|J95.00|ICD10CM|Unspecified tracheostomy complication|Unspecified tracheostomy complication +C2887492|T046|AB|J95.01|ICD10CM|Hemorrhage from tracheostomy stoma|Hemorrhage from tracheostomy stoma +C2887492|T046|PT|J95.01|ICD10CM|Hemorrhage from tracheostomy stoma|Hemorrhage from tracheostomy stoma +C2711621|T047|PT|J95.02|ICD10CM|Infection of tracheostomy stoma|Infection of tracheostomy stoma +C2711621|T047|AB|J95.02|ICD10CM|Infection of tracheostomy stoma|Infection of tracheostomy stoma +C2887495|T046|PT|J95.03|ICD10CM|Malfunction of tracheostomy stoma|Malfunction of tracheostomy stoma +C2887495|T046|AB|J95.03|ICD10CM|Malfunction of tracheostomy stoma|Malfunction of tracheostomy stoma +C2887493|T037|ET|J95.03|ICD10CM|Mechanical complication of tracheostomy stoma|Mechanical complication of tracheostomy stoma +C2887494|T037|ET|J95.03|ICD10CM|Obstruction of tracheostomy airway|Obstruction of tracheostomy airway +C0340229|T046|ET|J95.03|ICD10CM|Tracheal stenosis due to tracheostomy|Tracheal stenosis due to tracheostomy +C0264332|T046|AB|J95.04|ICD10CM|Tracheo-esophageal fistula following tracheostomy|Tracheo-esophageal fistula following tracheostomy +C0264332|T046|PT|J95.04|ICD10CM|Tracheo-esophageal fistula following tracheostomy|Tracheo-esophageal fistula following tracheostomy +C0695238|T046|PT|J95.09|ICD10CM|Other tracheostomy complication|Other tracheostomy complication +C0695238|T046|AB|J95.09|ICD10CM|Other tracheostomy complication|Other tracheostomy complication +C0348829|T047|PT|J95.1|ICD10|Acute pulmonary insufficiency following thoracic surgery|Acute pulmonary insufficiency following thoracic surgery +C0348829|T047|PT|J95.1|ICD10CM|Acute pulmonary insufficiency following thoracic surgery|Acute pulmonary insufficiency following thoracic surgery +C0348829|T047|AB|J95.1|ICD10CM|Acute pulmonary insufficiency following thoracic surgery|Acute pulmonary insufficiency following thoracic surgery +C0348830|T047|PT|J95.2|ICD10CM|Acute pulmonary insufficiency following nonthoracic surgery|Acute pulmonary insufficiency following nonthoracic surgery +C0348830|T047|AB|J95.2|ICD10CM|Acute pulmonary insufficiency following nonthoracic surgery|Acute pulmonary insufficiency following nonthoracic surgery +C0348830|T047|PT|J95.2|ICD10|Acute pulmonary insufficiency following nonthoracic surgery|Acute pulmonary insufficiency following nonthoracic surgery +C0348831|T047|PT|J95.3|ICD10|Chronic pulmonary insufficiency following surgery|Chronic pulmonary insufficiency following surgery +C0348831|T047|PT|J95.3|ICD10CM|Chronic pulmonary insufficiency following surgery|Chronic pulmonary insufficiency following surgery +C0348831|T047|AB|J95.3|ICD10CM|Chronic pulmonary insufficiency following surgery|Chronic pulmonary insufficiency following surgery +C2887496|T047|AB|J95.4|ICD10CM|Chemical pneumonitis due to anesthesia|Chemical pneumonitis due to anesthesia +C2887496|T047|PT|J95.4|ICD10CM|Chemical pneumonitis due to anesthesia|Chemical pneumonitis due to anesthesia +C0085740|T047|PT|J95.4|ICD10|Mendelson's syndrome|Mendelson's syndrome +C0085740|T047|ET|J95.4|ICD10CM|Mendelson's syndrome|Mendelson's syndrome +C3161132|T047|ET|J95.4|ICD10CM|Postprocedural aspiration pneumonia|Postprocedural aspiration pneumonia +C0348793|T046|PT|J95.5|ICD10CM|Postprocedural subglottic stenosis|Postprocedural subglottic stenosis +C0348793|T046|AB|J95.5|ICD10CM|Postprocedural subglottic stenosis|Postprocedural subglottic stenosis +C0348793|T046|PT|J95.5|ICD10|Postprocedural subglottic stenosis|Postprocedural subglottic stenosis +C2887497|T047|AB|J95.6|ICD10CM|Intraop hemor/hemtom of a resp sys org comp a procedure|Intraop hemor/hemtom of a resp sys org comp a procedure +C2887498|T047|AB|J95.61|ICD10CM|Intraop hemor/hemtom of a resp sys org comp resp sys proc|Intraop hemor/hemtom of a resp sys org comp resp sys proc +C2887499|T047|AB|J95.62|ICD10CM|Intraop hemor/hemtom of a resp sys org comp oth procedure|Intraop hemor/hemtom of a resp sys org comp oth procedure +C2887500|T037|AB|J95.7|ICD10CM|Accidental pnctr & lac of a respiratory system org dur proc|Accidental pnctr & lac of a respiratory system org dur proc +C2887500|T037|HT|J95.7|ICD10CM|Accidental puncture and laceration of a respiratory system organ or structure during a procedure|Accidental puncture and laceration of a respiratory system organ or structure during a procedure +C2887501|T037|AB|J95.71|ICD10CM|Accidental pnctr & lac of a resp sys org dur resp sys proc|Accidental pnctr & lac of a resp sys org dur resp sys proc +C2887502|T037|AB|J95.72|ICD10CM|Acc pnctr & lac of a resp sys org during oth procedure|Acc pnctr & lac of a resp sys org during oth procedure +C2887502|T037|PT|J95.72|ICD10CM|Accidental puncture and laceration of a respiratory system organ or structure during other procedure|Accidental puncture and laceration of a respiratory system organ or structure during other procedure +C2887503|T047|AB|J95.8|ICD10CM|Oth intraop and postproc comp and disorders of resp sys, NEC|Oth intraop and postproc comp and disorders of resp sys, NEC +C0348711|T047|PT|J95.8|ICD10|Other postprocedural respiratory disorders|Other postprocedural respiratory disorders +C3264403|T047|AB|J95.81|ICD10CM|Postprocedural pneumothorax and air leak|Postprocedural pneumothorax and air leak +C3264403|T047|HT|J95.81|ICD10CM|Postprocedural pneumothorax and air leak|Postprocedural pneumothorax and air leak +C3264404|T046|AB|J95.811|ICD10CM|Postprocedural pneumothorax|Postprocedural pneumothorax +C3264404|T046|PT|J95.811|ICD10CM|Postprocedural pneumothorax|Postprocedural pneumothorax +C3264405|T047|AB|J95.812|ICD10CM|Postprocedural air leak|Postprocedural air leak +C3264405|T047|PT|J95.812|ICD10CM|Postprocedural air leak|Postprocedural air leak +C0587247|T046|HT|J95.82|ICD10CM|Postprocedural respiratory failure|Postprocedural respiratory failure +C0587247|T046|AB|J95.82|ICD10CM|Postprocedural respiratory failure|Postprocedural respiratory failure +C3264406|T046|AB|J95.821|ICD10CM|Acute postprocedural respiratory failure|Acute postprocedural respiratory failure +C3264406|T046|PT|J95.821|ICD10CM|Acute postprocedural respiratory failure|Acute postprocedural respiratory failure +C0587247|T046|ET|J95.821|ICD10CM|Postprocedural respiratory failure NOS|Postprocedural respiratory failure NOS +C3264407|T046|AB|J95.822|ICD10CM|Acute and chronic postprocedural respiratory failure|Acute and chronic postprocedural respiratory failure +C3264407|T046|PT|J95.822|ICD10CM|Acute and chronic postprocedural respiratory failure|Acute and chronic postprocedural respiratory failure +C4268570|T046|AB|J95.83|ICD10CM|Postproc hemorrhage of a resp sys org following a procedure|Postproc hemorrhage of a resp sys org following a procedure +C4268570|T046|HT|J95.83|ICD10CM|Postprocedural hemorrhage of a respiratory system organ or structure following a procedure|Postprocedural hemorrhage of a respiratory system organ or structure following a procedure +C4268571|T046|AB|J95.830|ICD10CM|Postproc hemor of a resp sys org fol a resp sys procedure|Postproc hemor of a resp sys org fol a resp sys procedure +C4268572|T046|AB|J95.831|ICD10CM|Postproc hemor of a resp sys org following other procedure|Postproc hemor of a resp sys org following other procedure +C4268572|T046|PT|J95.831|ICD10CM|Postprocedural hemorrhage of a respiratory system organ or structure following other procedure|Postprocedural hemorrhage of a respiratory system organ or structure following other procedure +C0948343|T047|AB|J95.84|ICD10CM|Transfusion-related acute lung injury (TRALI)|Transfusion-related acute lung injury (TRALI) +C0948343|T047|PT|J95.84|ICD10CM|Transfusion-related acute lung injury (TRALI)|Transfusion-related acute lung injury (TRALI) +C2887508|T047|AB|J95.85|ICD10CM|Complication of respirator [ventilator]|Complication of respirator [ventilator] +C2887508|T047|HT|J95.85|ICD10CM|Complication of respirator [ventilator]|Complication of respirator [ventilator] +C2228900|T046|PT|J95.850|ICD10CM|Mechanical complication of respirator|Mechanical complication of respirator +C2228900|T046|AB|J95.850|ICD10CM|Mechanical complication of respirator|Mechanical complication of respirator +C1701940|T047|PT|J95.851|ICD10CM|Ventilator associated pneumonia|Ventilator associated pneumonia +C1701940|T047|AB|J95.851|ICD10CM|Ventilator associated pneumonia|Ventilator associated pneumonia +C1701940|T047|ET|J95.851|ICD10CM|Ventilator associated pneumonitis|Ventilator associated pneumonitis +C2887509|T047|AB|J95.859|ICD10CM|Other complication of respirator [ventilator]|Other complication of respirator [ventilator] +C2887509|T047|PT|J95.859|ICD10CM|Other complication of respirator [ventilator]|Other complication of respirator [ventilator] +C4268573|T046|AB|J95.86|ICD10CM|Postproc hematoma and seroma of a resp sys org fol a proc|Postproc hematoma and seroma of a resp sys org fol a proc +C4268573|T046|HT|J95.86|ICD10CM|Postprocedural hematoma and seroma of a respiratory system organ or structure following a procedure|Postprocedural hematoma and seroma of a respiratory system organ or structure following a procedure +C4268574|T046|AB|J95.860|ICD10CM|Postproc hematoma of a resp sys org fol a resp sys procedure|Postproc hematoma of a resp sys org fol a resp sys procedure +C4268575|T046|AB|J95.861|ICD10CM|Postproc hematoma of a resp sys org fol other procedure|Postproc hematoma of a resp sys org fol other procedure +C4268575|T046|PT|J95.861|ICD10CM|Postprocedural hematoma of a respiratory system organ or structure following other procedure|Postprocedural hematoma of a respiratory system organ or structure following other procedure +C4268576|T046|AB|J95.862|ICD10CM|Postproc seroma of a resp sys org fol a resp sys procedure|Postproc seroma of a resp sys org fol a resp sys procedure +C4268577|T046|AB|J95.863|ICD10CM|Postproc seroma of a resp sys org following other procedure|Postproc seroma of a resp sys org following other procedure +C4268577|T046|PT|J95.863|ICD10CM|Postprocedural seroma of a respiratory system organ or structure following other procedure|Postprocedural seroma of a respiratory system organ or structure following other procedure +C2887510|T047|AB|J95.88|ICD10CM|Oth intraoperative complications of respiratory system, NEC|Oth intraoperative complications of respiratory system, NEC +C2887510|T047|PT|J95.88|ICD10CM|Other intraoperative complications of respiratory system, not elsewhere classified|Other intraoperative complications of respiratory system, not elsewhere classified +C2887511|T047|AB|J95.89|ICD10CM|Oth postproc complications and disorders of resp sys, NEC|Oth postproc complications and disorders of resp sys, NEC +C2887511|T047|PT|J95.89|ICD10CM|Other postprocedural complications and disorders of respiratory system, not elsewhere classified|Other postprocedural complications and disorders of respiratory system, not elsewhere classified +C0348828|T047|PT|J95.9|ICD10|Postprocedural respiratory disorder, unspecified|Postprocedural respiratory disorder, unspecified +C0494691|T047|AB|J96|ICD10CM|Respiratory failure, not elsewhere classified|Respiratory failure, not elsewhere classified +C0494691|T047|HT|J96|ICD10CM|Respiratory failure, not elsewhere classified|Respiratory failure, not elsewhere classified +C0494691|T047|HT|J96|ICD10|Respiratory failure, not elsewhere classified|Respiratory failure, not elsewhere classified +C0029582|T047|HT|J96-J99|ICD10CM|Other diseases of the respiratory system (J96-J99)|Other diseases of the respiratory system (J96-J99) +C0264490|T047|PT|J96.0|ICD10|Acute respiratory failure|Acute respiratory failure +C0264490|T047|HT|J96.0|ICD10CM|Acute respiratory failure|Acute respiratory failure +C0264490|T047|AB|J96.0|ICD10CM|Acute respiratory failure|Acute respiratory failure +C2977064|T047|AB|J96.00|ICD10CM|Acute respiratory failure, unsp w hypoxia or hypercapnia|Acute respiratory failure, unsp w hypoxia or hypercapnia +C2977064|T047|PT|J96.00|ICD10CM|Acute respiratory failure, unspecified whether with hypoxia or hypercapnia|Acute respiratory failure, unspecified whether with hypoxia or hypercapnia +C2977065|T047|PT|J96.01|ICD10CM|Acute respiratory failure with hypoxia|Acute respiratory failure with hypoxia +C2977065|T047|AB|J96.01|ICD10CM|Acute respiratory failure with hypoxia|Acute respiratory failure with hypoxia +C2977066|T047|PT|J96.02|ICD10CM|Acute respiratory failure with hypercapnia|Acute respiratory failure with hypercapnia +C2977066|T047|AB|J96.02|ICD10CM|Acute respiratory failure with hypercapnia|Acute respiratory failure with hypercapnia +C0264492|T047|HT|J96.1|ICD10CM|Chronic respiratory failure|Chronic respiratory failure +C0264492|T047|AB|J96.1|ICD10CM|Chronic respiratory failure|Chronic respiratory failure +C0264492|T047|PT|J96.1|ICD10|Chronic respiratory failure|Chronic respiratory failure +C2977067|T047|AB|J96.10|ICD10CM|Chronic respiratory failure, unsp w hypoxia or hypercapnia|Chronic respiratory failure, unsp w hypoxia or hypercapnia +C2977067|T047|PT|J96.10|ICD10CM|Chronic respiratory failure, unspecified whether with hypoxia or hypercapnia|Chronic respiratory failure, unspecified whether with hypoxia or hypercapnia +C2977068|T047|PT|J96.11|ICD10CM|Chronic respiratory failure with hypoxia|Chronic respiratory failure with hypoxia +C2977068|T047|AB|J96.11|ICD10CM|Chronic respiratory failure with hypoxia|Chronic respiratory failure with hypoxia +C2977069|T047|PT|J96.12|ICD10CM|Chronic respiratory failure with hypercapnia|Chronic respiratory failure with hypercapnia +C2977069|T047|AB|J96.12|ICD10CM|Chronic respiratory failure with hypercapnia|Chronic respiratory failure with hypercapnia +C0264491|T047|HT|J96.2|ICD10CM|Acute and chronic respiratory failure|Acute and chronic respiratory failure +C0264491|T047|AB|J96.2|ICD10CM|Acute and chronic respiratory failure|Acute and chronic respiratory failure +C0264491|T047|ET|J96.2|ICD10CM|Acute on chronic respiratory failure|Acute on chronic respiratory failure +C2977070|T047|AB|J96.20|ICD10CM|Acute and chr resp failure, unsp w hypoxia or hypercapnia|Acute and chr resp failure, unsp w hypoxia or hypercapnia +C2977070|T047|PT|J96.20|ICD10CM|Acute and chronic respiratory failure, unspecified whether with hypoxia or hypercapnia|Acute and chronic respiratory failure, unspecified whether with hypoxia or hypercapnia +C2977071|T047|PT|J96.21|ICD10CM|Acute and chronic respiratory failure with hypoxia|Acute and chronic respiratory failure with hypoxia +C2977071|T047|AB|J96.21|ICD10CM|Acute and chronic respiratory failure with hypoxia|Acute and chronic respiratory failure with hypoxia +C2977072|T047|PT|J96.22|ICD10CM|Acute and chronic respiratory failure with hypercapnia|Acute and chronic respiratory failure with hypercapnia +C2977072|T047|AB|J96.22|ICD10CM|Acute and chronic respiratory failure with hypercapnia|Acute and chronic respiratory failure with hypercapnia +C1145670|T047|PT|J96.9|ICD10|Respiratory failure, unspecified|Respiratory failure, unspecified +C1145670|T047|HT|J96.9|ICD10CM|Respiratory failure, unspecified|Respiratory failure, unspecified +C1145670|T047|AB|J96.9|ICD10CM|Respiratory failure, unspecified|Respiratory failure, unspecified +C2977073|T047|AB|J96.90|ICD10CM|Respiratory failure, unsp, unsp w hypoxia or hypercapnia|Respiratory failure, unsp, unsp w hypoxia or hypercapnia +C2977073|T047|PT|J96.90|ICD10CM|Respiratory failure, unspecified, unspecified whether with hypoxia or hypercapnia|Respiratory failure, unspecified, unspecified whether with hypoxia or hypercapnia +C2977074|T047|AB|J96.91|ICD10CM|Respiratory failure, unspecified with hypoxia|Respiratory failure, unspecified with hypoxia +C2977074|T047|PT|J96.91|ICD10CM|Respiratory failure, unspecified with hypoxia|Respiratory failure, unspecified with hypoxia +C2977075|T047|AB|J96.92|ICD10CM|Respiratory failure, unspecified with hypercapnia|Respiratory failure, unspecified with hypercapnia +C2977075|T047|PT|J96.92|ICD10CM|Respiratory failure, unspecified with hypercapnia|Respiratory failure, unspecified with hypercapnia +C0029582|T047|AB|J98|ICD10CM|Other respiratory disorders|Other respiratory disorders +C0029582|T047|HT|J98|ICD10CM|Other respiratory disorders|Other respiratory disorders +C0029582|T047|HT|J98|ICD10|Other respiratory disorders|Other respiratory disorders +C0494694|T047|PT|J98.0|ICD10|Diseases of bronchus, not elsewhere classified|Diseases of bronchus, not elsewhere classified +C0494694|T047|HT|J98.0|ICD10CM|Diseases of bronchus, not elsewhere classified|Diseases of bronchus, not elsewhere classified +C0494694|T047|AB|J98.0|ICD10CM|Diseases of bronchus, not elsewhere classified|Diseases of bronchus, not elsewhere classified +C0741804|T047|PT|J98.01|ICD10CM|Acute bronchospasm|Acute bronchospasm +C0741804|T047|AB|J98.01|ICD10CM|Acute bronchospasm|Acute bronchospasm +C0221367|T047|ET|J98.09|ICD10CM|Broncholithiasis|Broncholithiasis +C0264350|T047|ET|J98.09|ICD10CM|Calcification of bronchus|Calcification of bronchus +C2887512|T047|AB|J98.09|ICD10CM|Other diseases of bronchus, not elsewhere classified|Other diseases of bronchus, not elsewhere classified +C2887512|T047|PT|J98.09|ICD10CM|Other diseases of bronchus, not elsewhere classified|Other diseases of bronchus, not elsewhere classified +C0151536|T190|ET|J98.09|ICD10CM|Stenosis of bronchus|Stenosis of bronchus +C1392821|T047|ET|J98.09|ICD10CM|Tracheobronchial collapse|Tracheobronchial collapse +C1395942|T047|ET|J98.09|ICD10CM|Tracheobronchial dyskinesia|Tracheobronchial dyskinesia +C0264352|T047|ET|J98.09|ICD10CM|Ulcer of bronchus|Ulcer of bronchus +C0004144|T046|PT|J98.1|ICD10|Pulmonary collapse|Pulmonary collapse +C0004144|T046|HT|J98.1|ICD10CM|Pulmonary collapse|Pulmonary collapse +C0004144|T046|AB|J98.1|ICD10CM|Pulmonary collapse|Pulmonary collapse +C0004144|T046|PT|J98.11|ICD10CM|Atelectasis|Atelectasis +C0004144|T046|AB|J98.11|ICD10CM|Atelectasis|Atelectasis +C2887513|T047|AB|J98.19|ICD10CM|Other pulmonary collapse|Other pulmonary collapse +C2887513|T047|PT|J98.19|ICD10CM|Other pulmonary collapse|Other pulmonary collapse +C1370824|T047|PT|J98.2|ICD10CM|Interstitial emphysema|Interstitial emphysema +C1370824|T047|AB|J98.2|ICD10CM|Interstitial emphysema|Interstitial emphysema +C1370824|T047|PT|J98.2|ICD10|Interstitial emphysema|Interstitial emphysema +C0025062|T047|ET|J98.2|ICD10CM|Mediastinal emphysema|Mediastinal emphysema +C0155918|T047|PT|J98.3|ICD10CM|Compensatory emphysema|Compensatory emphysema +C0155918|T047|AB|J98.3|ICD10CM|Compensatory emphysema|Compensatory emphysema +C0155918|T047|PT|J98.3|ICD10|Compensatory emphysema|Compensatory emphysema +C0264523|T047|ET|J98.4|ICD10CM|Calcification of lung|Calcification of lung +C0238255|T047|ET|J98.4|ICD10CM|Cystic lung disease (acquired)|Cystic lung disease (acquired) +C0024115|T047|ET|J98.4|ICD10CM|Lung disease NOS|Lung disease NOS +C0348712|T047|PT|J98.4|ICD10|Other disorders of lung|Other disorders of lung +C0348712|T047|PT|J98.4|ICD10CM|Other disorders of lung|Other disorders of lung +C0348712|T047|AB|J98.4|ICD10CM|Other disorders of lung|Other disorders of lung +C0264525|T047|ET|J98.4|ICD10CM|Pulmolithiasis|Pulmolithiasis +C0868845|T047|PT|J98.5|ICD10|Diseases of mediastinum, not elsewhere classified|Diseases of mediastinum, not elsewhere classified +C0868845|T047|AB|J98.5|ICD10CM|Diseases of mediastinum, not elsewhere classified|Diseases of mediastinum, not elsewhere classified +C0868845|T047|HT|J98.5|ICD10CM|Diseases of mediastinum, not elsewhere classified|Diseases of mediastinum, not elsewhere classified +C0025064|T047|PT|J98.51|ICD10CM|Mediastinitis|Mediastinitis +C0025064|T047|AB|J98.51|ICD10CM|Mediastinitis|Mediastinitis +C0264573|T047|ET|J98.59|ICD10CM|Fibrosis of mediastinum|Fibrosis of mediastinum +C0264575|T047|ET|J98.59|ICD10CM|Hernia of mediastinum|Hernia of mediastinum +C0869275|T047|AB|J98.59|ICD10CM|Other diseases of mediastinum, not elsewhere classified|Other diseases of mediastinum, not elsewhere classified +C0869275|T047|PT|J98.59|ICD10CM|Other diseases of mediastinum, not elsewhere classified|Other diseases of mediastinum, not elsewhere classified +C0264574|T047|ET|J98.59|ICD10CM|Retraction of mediastinum|Retraction of mediastinum +C0011985|T047|ET|J98.6|ICD10CM|Diaphragmatitis|Diaphragmatitis +C0152097|T047|PT|J98.6|ICD10|Disorders of diaphragm|Disorders of diaphragm +C0152097|T047|PT|J98.6|ICD10CM|Disorders of diaphragm|Disorders of diaphragm +C0152097|T047|AB|J98.6|ICD10CM|Disorders of diaphragm|Disorders of diaphragm +C4551685|T033|ET|J98.6|ICD10CM|Paralysis of diaphragm|Paralysis of diaphragm +C0264582|T047|ET|J98.6|ICD10CM|Relaxation of diaphragm|Relaxation of diaphragm +C0348713|T047|PT|J98.8|ICD10CM|Other specified respiratory disorders|Other specified respiratory disorders +C0348713|T047|AB|J98.8|ICD10CM|Other specified respiratory disorders|Other specified respiratory disorders +C0348713|T047|PT|J98.8|ICD10|Other specified respiratory disorders|Other specified respiratory disorders +C0264220|T047|ET|J98.9|ICD10CM|Respiratory disease (chronic) NOS|Respiratory disease (chronic) NOS +C0035204|T047|PT|J98.9|ICD10|Respiratory disorder, unspecified|Respiratory disorder, unspecified +C0035204|T047|PT|J98.9|ICD10CM|Respiratory disorder, unspecified|Respiratory disorder, unspecified +C0035204|T047|AB|J98.9|ICD10CM|Respiratory disorder, unspecified|Respiratory disorder, unspecified +C0694505|T047|AB|J99|ICD10CM|Respiratory disorders in diseases classified elsewhere|Respiratory disorders in diseases classified elsewhere +C0694505|T047|PT|J99|ICD10CM|Respiratory disorders in diseases classified elsewhere|Respiratory disorders in diseases classified elsewhere +C0694505|T047|HT|J99|ICD10|Respiratory disorders in diseases classified elsewhere|Respiratory disorders in diseases classified elsewhere +C0994344|T047|PT|J99.0|ICD10|Rheumatoid lung disease|Rheumatoid lung disease +C0494697|T047|PT|J99.1|ICD10|Respiratory disorders in other diffuse connective tissue disorders|Respiratory disorders in other diffuse connective tissue disorders +C0348715|T047|PT|J99.8|ICD10|Respiratory disorders in other diseases classified elsewhere|Respiratory disorders in other diseases classified elsewhere +C0155922|T047|HT|K00|ICD10|Disorders of tooth development and eruption|Disorders of tooth development and eruption +C0155922|T047|HT|K00|ICD10CM|Disorders of tooth development and eruption|Disorders of tooth development and eruption +C0155922|T047|AB|K00|ICD10CM|Disorders of tooth development and eruption|Disorders of tooth development and eruption +C0266988|T047|HT|K00-K14|ICD10CM|Diseases of oral cavity and salivary glands (K00-K14)|Diseases of oral cavity and salivary glands (K00-K14) +C0348717|T047|HT|K00-K14.9|ICD10|Diseases of oral cavity, salivary glands and jaws|Diseases of oral cavity, salivary glands and jaws +C0012242|T047|HT|K00-K93.9|ICD10|Diseases of the digestive system|Diseases of the digestive system +C0399352|T019|PT|K00.0|ICD10|Anodontia|Anodontia +C0399352|T019|PT|K00.0|ICD10CM|Anodontia|Anodontia +C0399352|T019|AB|K00.0|ICD10CM|Anodontia|Anodontia +C0020608|T019|ET|K00.0|ICD10CM|Hypodontia|Hypodontia +C0020608|T019|ET|K00.0|ICD10CM|Oligodontia|Oligodontia +C0162475|T019|ET|K00.1|ICD10CM|Distomolar|Distomolar +C0162475|T019|ET|K00.1|ICD10CM|Fourth molar|Fourth molar +C0266030|T047|ET|K00.1|ICD10CM|Mesiodens|Mesiodens +C0553566|T019|ET|K00.1|ICD10CM|Paramolar|Paramolar +C0040457|T033|PT|K00.1|ICD10|Supernumerary teeth|Supernumerary teeth +C0040457|T033|PT|K00.1|ICD10CM|Supernumerary teeth|Supernumerary teeth +C0040457|T033|AB|K00.1|ICD10CM|Supernumerary teeth|Supernumerary teeth +C0040457|T033|ET|K00.1|ICD10CM|Supplementary teeth|Supplementary teeth +C0000770|T190|PT|K00.2|ICD10|Abnormalities of size and form of teeth|Abnormalities of size and form of teeth +C0000770|T190|PT|K00.2|ICD10CM|Abnormalities of size and form of teeth|Abnormalities of size and form of teeth +C0000770|T190|AB|K00.2|ICD10CM|Abnormalities of size and form of teeth|Abnormalities of size and form of teeth +C0266031|T019|ET|K00.2|ICD10CM|Concrescence of teeth|Concrescence of teeth +C0266034|T190|ET|K00.2|ICD10CM|Dens evaginatus|Dens evaginatus +C0011320|T019|ET|K00.2|ICD10CM|Dens in dente|Dens in dente +C0011320|T019|ET|K00.2|ICD10CM|Dens invaginatus|Dens invaginatus +C0266035|T019|ET|K00.2|ICD10CM|Enamel pearls|Enamel pearls +C0016873|T019|ET|K00.2|ICD10CM|Fusion of teeth|Fusion of teeth +C0266033|T019|ET|K00.2|ICD10CM|Gemination of teeth|Gemination of teeth +C0266036|T019|ET|K00.2|ICD10CM|Macrodontia|Macrodontia +C0240340|T019|ET|K00.2|ICD10CM|Microdontia|Microdontia +C2887514|T190|ET|K00.2|ICD10CM|Peg-shaped [conical] teeth|Peg-shaped [conical] teeth +C0266038|T019|ET|K00.2|ICD10CM|Supernumerary roots|Supernumerary roots +C0266039|T047|ET|K00.2|ICD10CM|Taurodontism|Taurodontism +C0266029|T019|ET|K00.2|ICD10CM|Tuberculum paramolare|Tuberculum paramolare +C0026618|T047|ET|K00.3|ICD10CM|Dental fluorosis|Dental fluorosis +C0026618|T047|PT|K00.3|ICD10CM|Mottled teeth|Mottled teeth +C0026618|T047|AB|K00.3|ICD10CM|Mottled teeth|Mottled teeth +C0026618|T047|PT|K00.3|ICD10|Mottled teeth|Mottled teeth +C1318523|T019|ET|K00.3|ICD10CM|Mottling of enamel|Mottling of enamel +C0266042|T047|ET|K00.3|ICD10CM|Nonfluoride enamel opacities|Nonfluoride enamel opacities +C0865859|T047|ET|K00.4|ICD10CM|Aplasia and hypoplasia of cementum|Aplasia and hypoplasia of cementum +C0266048|T047|ET|K00.4|ICD10CM|Dilaceration of tooth|Dilaceration of tooth +C3495540|T047|PT|K00.4|ICD10|Disturbances in tooth formation|Disturbances in tooth formation +C3495540|T047|PT|K00.4|ICD10CM|Disturbances in tooth formation|Disturbances in tooth formation +C3495540|T047|AB|K00.4|ICD10CM|Disturbances in tooth formation|Disturbances in tooth formation +C2887515|T047|ET|K00.4|ICD10CM|Enamel hypoplasia (neonatal) (postnatal) (prenatal)|Enamel hypoplasia (neonatal) (postnatal) (prenatal) +C0206554|T019|ET|K00.4|ICD10CM|Regional odontodysplasia|Regional odontodysplasia +C0266027|T047|ET|K00.4|ICD10CM|Turner's tooth|Turner's tooth +C0002452|T019|ET|K00.5|ICD10CM|Amelogenesis imperfecta|Amelogenesis imperfecta +C0011430|T047|ET|K00.5|ICD10CM|Dentinal dysplasia|Dentinal dysplasia +C0011436|T019|ET|K00.5|ICD10CM|Dentinogenesis imperfecta|Dentinogenesis imperfecta +C0868847|T019|AB|K00.5|ICD10CM|Hereditary disturbances in tooth structure, NEC|Hereditary disturbances in tooth structure, NEC +C0868847|T019|PT|K00.5|ICD10CM|Hereditary disturbances in tooth structure, not elsewhere classified|Hereditary disturbances in tooth structure, not elsewhere classified +C0868847|T019|PT|K00.5|ICD10|Hereditary disturbances in tooth structure, not elsewhere classified|Hereditary disturbances in tooth structure, not elsewhere classified +C0028878|T019|ET|K00.5|ICD10CM|Odontogenesis imperfecta|Odontogenesis imperfecta +C2981132|T019|ET|K00.5|ICD10CM|Shell teeth|Shell teeth +C0266054|T033|ET|K00.6|ICD10CM|Dentia praecox|Dentia praecox +C0012767|T047|PT|K00.6|ICD10CM|Disturbances in tooth eruption|Disturbances in tooth eruption +C0012767|T047|AB|K00.6|ICD10CM|Disturbances in tooth eruption|Disturbances in tooth eruption +C0012767|T047|PT|K00.6|ICD10|Disturbances in tooth eruption|Disturbances in tooth eruption +C0027443|T033|ET|K00.6|ICD10CM|Natal tooth|Natal tooth +C0027443|T033|ET|K00.6|ICD10CM|Neonatal tooth|Neonatal tooth +C0266054|T033|ET|K00.6|ICD10CM|Premature eruption of tooth|Premature eruption of tooth +C2887516|T046|ET|K00.6|ICD10CM|Premature shedding of primary [deciduous] tooth|Premature shedding of primary [deciduous] tooth +C1719487|T033|ET|K00.6|ICD10CM|Prenatal teeth|Prenatal teeth +C2887517|T047|ET|K00.6|ICD10CM|Retained [persistent] primary tooth|Retained [persistent] primary tooth +C0039437|T033|PT|K00.7|ICD10CM|Teething syndrome|Teething syndrome +C0039437|T033|AB|K00.7|ICD10CM|Teething syndrome|Teething syndrome +C0039437|T033|PT|K00.7|ICD10|Teething syndrome|Teething syndrome +C0266055|T047|ET|K00.8|ICD10CM|Color changes during tooth formation|Color changes during tooth formation +C0399419|T046|ET|K00.8|ICD10CM|Intrinsic staining of teeth NOS|Intrinsic staining of teeth NOS +C0348718|T019|PT|K00.8|ICD10CM|Other disorders of tooth development|Other disorders of tooth development +C0348718|T019|AB|K00.8|ICD10CM|Other disorders of tooth development|Other disorders of tooth development +C0348718|T019|PT|K00.8|ICD10|Other disorders of tooth development|Other disorders of tooth development +C0494698|T047|ET|K00.9|ICD10CM|Disorder of odontogenesis NOS|Disorder of odontogenesis NOS +C0494698|T047|PT|K00.9|ICD10CM|Disorder of tooth development, unspecified|Disorder of tooth development, unspecified +C0494698|T047|AB|K00.9|ICD10CM|Disorder of tooth development, unspecified|Disorder of tooth development, unspecified +C0494698|T047|PT|K00.9|ICD10|Disorder of tooth development, unspecified|Disorder of tooth development, unspecified +C0399547|T190|HT|K01|ICD10|Embedded and impacted teeth|Embedded and impacted teeth +C0399547|T190|AB|K01|ICD10CM|Embedded and impacted teeth|Embedded and impacted teeth +C0399547|T190|HT|K01|ICD10CM|Embedded and impacted teeth|Embedded and impacted teeth +C0392483|T019|PT|K01.0|ICD10CM|Embedded teeth|Embedded teeth +C0392483|T019|AB|K01.0|ICD10CM|Embedded teeth|Embedded teeth +C0392483|T019|PT|K01.0|ICD10|Embedded teeth|Embedded teeth +C0040456|T047|PT|K01.1|ICD10|Impacted teeth|Impacted teeth +C0040456|T047|PT|K01.1|ICD10CM|Impacted teeth|Impacted teeth +C0040456|T047|AB|K01.1|ICD10CM|Impacted teeth|Impacted teeth +C0266846|T047|ET|K02|ICD10CM|caries of dentine|caries of dentine +C0011334|T047|HT|K02|ICD10CM|Dental caries|Dental caries +C0011334|T047|AB|K02|ICD10CM|Dental caries|Dental caries +C0011334|T047|HT|K02|ICD10|Dental caries|Dental caries +C0011334|T047|ET|K02|ICD10CM|dental cavities|dental cavities +C3714731|T047|ET|K02|ICD10CM|early childhood caries|early childhood caries +C3839961|T047|ET|K02|ICD10CM|pre-eruptive caries|pre-eruptive caries +C4290196|T047|ET|K02|ICD10CM|recurrent caries (dentino enamel junction) (enamel) (to the pulp)|recurrent caries (dentino enamel junction) (enamel) (to the pulp) +C0011334|T047|ET|K02|ICD10CM|tooth decay|tooth decay +C0266853|T047|PT|K02.0|ICD10|Caries limited to enamel|Caries limited to enamel +C0266846|T047|PT|K02.1|ICD10|Caries of dentine|Caries of dentine +C0162644|T047|PT|K02.2|ICD10|Caries of cementum|Caries of cementum +C2887519|T047|ET|K02.3|ICD10CM|Arrested coronal and root caries|Arrested coronal and root caries +C0266848|T047|PT|K02.3|ICD10|Arrested dental caries|Arrested dental caries +C0266848|T047|PT|K02.3|ICD10CM|Arrested dental caries|Arrested dental caries +C0266848|T047|AB|K02.3|ICD10CM|Arrested dental caries|Arrested dental caries +C0341004|T047|PT|K02.4|ICD10|Odontoclasia|Odontoclasia +C2887520|T047|ET|K02.5|ICD10CM|Dental caries on chewing surface of tooth|Dental caries on chewing surface of tooth +C2887521|T047|AB|K02.5|ICD10CM|Dental caries on pit and fissure surface|Dental caries on pit and fissure surface +C2887521|T047|HT|K02.5|ICD10CM|Dental caries on pit and fissure surface|Dental caries on pit and fissure surface +C2887523|T047|PT|K02.51|ICD10CM|Dental caries on pit and fissure surface limited to enamel|Dental caries on pit and fissure surface limited to enamel +C2887523|T047|AB|K02.51|ICD10CM|Dental caries on pit and fissure surface limited to enamel|Dental caries on pit and fissure surface limited to enamel +C2887522|T047|ET|K02.51|ICD10CM|White spot lesions [initial caries] on pit and fissure surface of tooth|White spot lesions [initial caries] on pit and fissure surface of tooth +C2887524|T047|PT|K02.52|ICD10CM|Dental caries on pit and fissure surface penetrating into dentin|Dental caries on pit and fissure surface penetrating into dentin +C2887524|T047|AB|K02.52|ICD10CM|Dental caries on pit and fissure surfc penetrat into dentin|Dental caries on pit and fissure surfc penetrat into dentin +C1290624|T047|ET|K02.52|ICD10CM|Primary dental caries, cervical origin|Primary dental caries, cervical origin +C2887525|T047|AB|K02.53|ICD10CM|Dental caries on pit and fissure surface penetrat into pulp|Dental caries on pit and fissure surface penetrat into pulp +C2887525|T047|PT|K02.53|ICD10CM|Dental caries on pit and fissure surface penetrating into pulp|Dental caries on pit and fissure surface penetrating into pulp +C1456145|T047|AB|K02.6|ICD10CM|Dental caries on smooth surface|Dental caries on smooth surface +C1456145|T047|HT|K02.6|ICD10CM|Dental caries on smooth surface|Dental caries on smooth surface +C2887527|T047|PT|K02.61|ICD10CM|Dental caries on smooth surface limited to enamel|Dental caries on smooth surface limited to enamel +C2887527|T047|AB|K02.61|ICD10CM|Dental caries on smooth surface limited to enamel|Dental caries on smooth surface limited to enamel +C2887526|T047|ET|K02.61|ICD10CM|White spot lesions [initial caries] on smooth surface of tooth|White spot lesions [initial caries] on smooth surface of tooth +C2887528|T047|PT|K02.62|ICD10CM|Dental caries on smooth surface penetrating into dentin|Dental caries on smooth surface penetrating into dentin +C2887528|T047|AB|K02.62|ICD10CM|Dental caries on smooth surface penetrating into dentin|Dental caries on smooth surface penetrating into dentin +C2887529|T047|PT|K02.63|ICD10CM|Dental caries on smooth surface penetrating into pulp|Dental caries on smooth surface penetrating into pulp +C2887529|T047|AB|K02.63|ICD10CM|Dental caries on smooth surface penetrating into pulp|Dental caries on smooth surface penetrating into pulp +C2887530|T047|AB|K02.7|ICD10CM|Dental root caries|Dental root caries +C2887530|T047|PT|K02.7|ICD10CM|Dental root caries|Dental root caries +C0348719|T047|PT|K02.8|ICD10|Other dental caries|Other dental caries +C0011334|T047|PT|K02.9|ICD10|Dental caries, unspecified|Dental caries, unspecified +C0011334|T047|PT|K02.9|ICD10CM|Dental caries, unspecified|Dental caries, unspecified +C0011334|T047|AB|K02.9|ICD10CM|Dental caries, unspecified|Dental caries, unspecified +C0399347|T047|HT|K03|ICD10|Other diseases of hard tissues of teeth|Other diseases of hard tissues of teeth +C0399347|T047|AB|K03|ICD10CM|Other diseases of hard tissues of teeth|Other diseases of hard tissues of teeth +C0399347|T047|HT|K03|ICD10CM|Other diseases of hard tissues of teeth|Other diseases of hard tissues of teeth +C0266859|T047|ET|K03.0|ICD10CM|Approximal wear of teeth|Approximal wear of teeth +C0155927|T047|PT|K03.0|ICD10|Excessive attrition of teeth|Excessive attrition of teeth +C0155927|T047|PT|K03.0|ICD10CM|Excessive attrition of teeth|Excessive attrition of teeth +C0155927|T047|AB|K03.0|ICD10CM|Excessive attrition of teeth|Excessive attrition of teeth +C0266860|T047|ET|K03.0|ICD10CM|Occlusal wear of teeth|Occlusal wear of teeth +C0040428|T046|PT|K03.1|ICD10CM|Abrasion of teeth|Abrasion of teeth +C0040428|T046|AB|K03.1|ICD10CM|Abrasion of teeth|Abrasion of teeth +C0040428|T046|PT|K03.1|ICD10|Abrasion of teeth|Abrasion of teeth +C0266867|T047|ET|K03.1|ICD10CM|Dentifrice abrasion of teeth|Dentifrice abrasion of teeth +C0266868|T033|ET|K03.1|ICD10CM|Habitual abrasion of teeth|Habitual abrasion of teeth +C0266869|T047|ET|K03.1|ICD10CM|Occupational abrasion of teeth|Occupational abrasion of teeth +C0266870|T037|ET|K03.1|ICD10CM|Ritual abrasion of teeth|Ritual abrasion of teeth +C0266871|T047|ET|K03.1|ICD10CM|Traditional abrasion of teeth|Traditional abrasion of teeth +C2887531|T046|ET|K03.1|ICD10CM|Wedge defect NOS|Wedge defect NOS +C0040436|T047|PT|K03.2|ICD10|Erosion of teeth|Erosion of teeth +C0040436|T047|PT|K03.2|ICD10CM|Erosion of teeth|Erosion of teeth +C0040436|T047|AB|K03.2|ICD10CM|Erosion of teeth|Erosion of teeth +C2887532|T046|ET|K03.2|ICD10CM|Erosion of teeth due to diet|Erosion of teeth due to diet +C2887533|T046|ET|K03.2|ICD10CM|Erosion of teeth due to drugs and medicaments|Erosion of teeth due to drugs and medicaments +C0399401|T046|ET|K03.2|ICD10CM|Erosion of teeth due to persistent vomiting|Erosion of teeth due to persistent vomiting +C0040436|T047|ET|K03.2|ICD10CM|Erosion of teeth NOS|Erosion of teeth NOS +C0266875|T047|ET|K03.2|ICD10CM|Idiopathic erosion of teeth|Idiopathic erosion of teeth +C0266876|T047|ET|K03.2|ICD10CM|Occupational erosion of teeth|Occupational erosion of teeth +C0266880|T047|ET|K03.3|ICD10CM|Internal granuloma of pulp|Internal granuloma of pulp +C0040451|T047|PT|K03.3|ICD10CM|Pathological resorption of teeth|Pathological resorption of teeth +C0040451|T047|AB|K03.3|ICD10CM|Pathological resorption of teeth|Pathological resorption of teeth +C0040451|T047|PT|K03.3|ICD10|Pathological resorption of teeth|Pathological resorption of teeth +C0266878|T047|ET|K03.3|ICD10CM|Resorption of teeth (external)|Resorption of teeth (external) +C0020441|T047|ET|K03.4|ICD10CM|Cementation hyperplasia|Cementation hyperplasia +C0020441|T047|PT|K03.4|ICD10CM|Hypercementosis|Hypercementosis +C0020441|T047|AB|K03.4|ICD10CM|Hypercementosis|Hypercementosis +C0020441|T047|PT|K03.4|ICD10|Hypercementosis|Hypercementosis +C0155930|T047|PT|K03.5|ICD10|Ankylosis of teeth|Ankylosis of teeth +C0155930|T047|PT|K03.5|ICD10CM|Ankylosis of teeth|Ankylosis of teeth +C0155930|T047|AB|K03.5|ICD10CM|Ankylosis of teeth|Ankylosis of teeth +C2887534|T047|ET|K03.6|ICD10CM|Betel deposits [accretions] on teeth|Betel deposits [accretions] on teeth +C2887535|T033|ET|K03.6|ICD10CM|Black deposits [accretions] on teeth|Black deposits [accretions] on teeth +C0011346|T047|PT|K03.6|ICD10|Deposits [accretions] on teeth|Deposits [accretions] on teeth +C0011346|T047|PT|K03.6|ICD10CM|Deposits [accretions] on teeth|Deposits [accretions] on teeth +C0011346|T047|AB|K03.6|ICD10CM|Deposits [accretions] on teeth|Deposits [accretions] on teeth +C0399412|T033|ET|K03.6|ICD10CM|Extrinsic staining of teeth NOS|Extrinsic staining of teeth NOS +C2887536|T046|ET|K03.6|ICD10CM|Green deposits [accretions] on teeth|Green deposits [accretions] on teeth +C2887537|T046|ET|K03.6|ICD10CM|Materia alba deposits [accretions] on teeth|Materia alba deposits [accretions] on teeth +C2887538|T046|ET|K03.6|ICD10CM|Orange deposits [accretions] on teeth|Orange deposits [accretions] on teeth +C0040434|T033|ET|K03.6|ICD10CM|Staining of teeth NOS|Staining of teeth NOS +C0266893|T047|ET|K03.6|ICD10CM|Subgingival dental calculus|Subgingival dental calculus +C0266894|T047|ET|K03.6|ICD10CM|Supragingival dental calculus|Supragingival dental calculus +C2887539|T033|ET|K03.6|ICD10CM|Tobacco deposits [accretions] on teeth|Tobacco deposits [accretions] on teeth +C0494703|T047|PT|K03.7|ICD10AE|Posteruptive color changes of dental hard tissues|Posteruptive color changes of dental hard tissues +C0494703|T047|PT|K03.7|ICD10CM|Posteruptive color changes of dental hard tissues|Posteruptive color changes of dental hard tissues +C0494703|T047|AB|K03.7|ICD10CM|Posteruptive color changes of dental hard tissues|Posteruptive color changes of dental hard tissues +C0494703|T047|PT|K03.7|ICD10|Posteruptive colour changes of dental hard tissues|Posteruptive colour changes of dental hard tissues +C0029770|T047|HT|K03.8|ICD10CM|Other specified diseases of hard tissues of teeth|Other specified diseases of hard tissues of teeth +C0029770|T047|AB|K03.8|ICD10CM|Other specified diseases of hard tissues of teeth|Other specified diseases of hard tissues of teeth +C0029770|T047|PT|K03.8|ICD10|Other specified diseases of hard tissues of teeth|Other specified diseases of hard tissues of teeth +C0010261|T033|PT|K03.81|ICD10CM|Cracked tooth|Cracked tooth +C0010261|T033|AB|K03.81|ICD10CM|Cracked tooth|Cracked tooth +C0029770|T047|PT|K03.89|ICD10CM|Other specified diseases of hard tissues of teeth|Other specified diseases of hard tissues of teeth +C0029770|T047|AB|K03.89|ICD10CM|Other specified diseases of hard tissues of teeth|Other specified diseases of hard tissues of teeth +C0155926|T047|PT|K03.9|ICD10CM|Disease of hard tissues of teeth, unspecified|Disease of hard tissues of teeth, unspecified +C0155926|T047|AB|K03.9|ICD10CM|Disease of hard tissues of teeth, unspecified|Disease of hard tissues of teeth, unspecified +C0155926|T047|PT|K03.9|ICD10|Disease of hard tissues of teeth, unspecified|Disease of hard tissues of teeth, unspecified +C0155933|T047|HT|K04|ICD10|Diseases of pulp and periapical tissues|Diseases of pulp and periapical tissues +C0155933|T047|HT|K04|ICD10CM|Diseases of pulp and periapical tissues|Diseases of pulp and periapical tissues +C0155933|T047|AB|K04|ICD10CM|Diseases of pulp and periapical tissues|Diseases of pulp and periapical tissues +C0266896|T047|ET|K04.0|ICD10CM|Acute pulpitis|Acute pulpitis +C2887540|T047|ET|K04.0|ICD10CM|Chronic (hyperplastic) (ulcerative) pulpitis|Chronic (hyperplastic) (ulcerative) pulpitis +C0034103|T047|AB|K04.0|ICD10CM|Pulpitis|Pulpitis +C0034103|T047|HT|K04.0|ICD10CM|Pulpitis|Pulpitis +C0034103|T047|PT|K04.0|ICD10|Pulpitis|Pulpitis +C0399405|T047|PT|K04.01|ICD10CM|Reversible pulpitis|Reversible pulpitis +C0399405|T047|AB|K04.01|ICD10CM|Reversible pulpitis|Reversible pulpitis +C0399406|T047|PT|K04.02|ICD10CM|Irreversible pulpitis|Irreversible pulpitis +C0399406|T047|AB|K04.02|ICD10CM|Irreversible pulpitis|Irreversible pulpitis +C0011407|T047|PT|K04.1|ICD10CM|Necrosis of pulp|Necrosis of pulp +C0011407|T047|AB|K04.1|ICD10CM|Necrosis of pulp|Necrosis of pulp +C0011407|T047|PT|K04.1|ICD10|Necrosis of pulp|Necrosis of pulp +C0011407|T047|ET|K04.1|ICD10CM|Pulpal gangrene|Pulpal gangrene +C1527284|T047|ET|K04.2|ICD10CM|Denticles|Denticles +C0034100|T047|PT|K04.2|ICD10|Pulp degeneration|Pulp degeneration +C0034100|T047|PT|K04.2|ICD10CM|Pulp degeneration|Pulp degeneration +C0034100|T047|AB|K04.2|ICD10CM|Pulp degeneration|Pulp degeneration +C0011401|T047|ET|K04.2|ICD10CM|Pulpal calcifications|Pulpal calcifications +C1406815|T033|ET|K04.2|ICD10CM|Pulpal stones|Pulpal stones +C0399408|T047|PT|K04.3|ICD10CM|Abnormal hard tissue formation in pulp|Abnormal hard tissue formation in pulp +C0399408|T047|AB|K04.3|ICD10CM|Abnormal hard tissue formation in pulp|Abnormal hard tissue formation in pulp +C0399408|T047|PT|K04.3|ICD10|Abnormal hard tissue formation in pulp|Abnormal hard tissue formation in pulp +C0865868|T046|ET|K04.3|ICD10CM|Secondary or irregular dentine|Secondary or irregular dentine +C0155934|T047|ET|K04.4|ICD10CM|Acute apical periodontitis NOS|Acute apical periodontitis NOS +C0155934|T047|PT|K04.4|ICD10CM|Acute apical periodontitis of pulpal origin|Acute apical periodontitis of pulpal origin +C0155934|T047|AB|K04.4|ICD10CM|Acute apical periodontitis of pulpal origin|Acute apical periodontitis of pulpal origin +C0155934|T047|PT|K04.4|ICD10|Acute apical periodontitis of pulpal origin|Acute apical periodontitis of pulpal origin +C0865869|T047|ET|K04.5|ICD10CM|Apical or periapical granuloma|Apical or periapical granuloma +C0031030|T047|ET|K04.5|ICD10CM|Apical periodontitis NOS|Apical periodontitis NOS +C0392492|T047|PT|K04.5|ICD10|Chronic apical periodontitis|Chronic apical periodontitis +C0392492|T047|PT|K04.5|ICD10CM|Chronic apical periodontitis|Chronic apical periodontitis +C0392492|T047|AB|K04.5|ICD10CM|Chronic apical periodontitis|Chronic apical periodontitis +C2887541|T047|ET|K04.6|ICD10CM|Dental abscess with sinus|Dental abscess with sinus +C2887542|T047|ET|K04.6|ICD10CM|Dentoalveolar abscess with sinus|Dentoalveolar abscess with sinus +C0266909|T047|PT|K04.6|ICD10CM|Periapical abscess with sinus|Periapical abscess with sinus +C0266909|T047|AB|K04.6|ICD10CM|Periapical abscess with sinus|Periapical abscess with sinus +C0266909|T047|PT|K04.6|ICD10|Periapical abscess with sinus|Periapical abscess with sinus +C2887543|T047|ET|K04.7|ICD10CM|Dental abscess without sinus|Dental abscess without sinus +C2887544|T047|ET|K04.7|ICD10CM|Dentoalveolar abscess without sinus|Dentoalveolar abscess without sinus +C0399424|T047|PT|K04.7|ICD10CM|Periapical abscess without sinus|Periapical abscess without sinus +C0399424|T047|AB|K04.7|ICD10CM|Periapical abscess without sinus|Periapical abscess without sinus +C0399424|T047|PT|K04.7|ICD10|Periapical abscess without sinus|Periapical abscess without sinus +C0034543|T047|ET|K04.8|ICD10CM|Apical (periodontal) cyst|Apical (periodontal) cyst +C0034543|T047|ET|K04.8|ICD10CM|Periapical cyst|Periapical cyst +C0034543|T047|PT|K04.8|ICD10CM|Radicular cyst|Radicular cyst +C0034543|T047|AB|K04.8|ICD10CM|Radicular cyst|Radicular cyst +C0034543|T047|PT|K04.8|ICD10|Radicular cyst|Radicular cyst +C0034543|T047|ET|K04.8|ICD10CM|Residual radicular cyst|Residual radicular cyst +C0155935|T047|AB|K04.9|ICD10CM|Other and unsp diseases of pulp and periapical tissues|Other and unsp diseases of pulp and periapical tissues +C0155935|T047|HT|K04.9|ICD10CM|Other and unspecified diseases of pulp and periapical tissues|Other and unspecified diseases of pulp and periapical tissues +C0155935|T047|PT|K04.9|ICD10|Other and unspecified diseases of pulp and periapical tissues|Other and unspecified diseases of pulp and periapical tissues +C2887545|T047|AB|K04.90|ICD10CM|Unspecified diseases of pulp and periapical tissues|Unspecified diseases of pulp and periapical tissues +C2887545|T047|PT|K04.90|ICD10CM|Unspecified diseases of pulp and periapical tissues|Unspecified diseases of pulp and periapical tissues +C2887546|T047|AB|K04.99|ICD10CM|Other diseases of pulp and periapical tissues|Other diseases of pulp and periapical tissues +C2887546|T047|PT|K04.99|ICD10CM|Other diseases of pulp and periapical tissues|Other diseases of pulp and periapical tissues +C0494704|T047|AB|K05|ICD10CM|Gingivitis and periodontal diseases|Gingivitis and periodontal diseases +C0494704|T047|HT|K05|ICD10CM|Gingivitis and periodontal diseases|Gingivitis and periodontal diseases +C0494704|T047|HT|K05|ICD10|Gingivitis and periodontal diseases|Gingivitis and periodontal diseases +C0155937|T047|PT|K05.0|ICD10|Acute gingivitis|Acute gingivitis +C0155937|T047|HT|K05.0|ICD10CM|Acute gingivitis|Acute gingivitis +C0155937|T047|AB|K05.0|ICD10CM|Acute gingivitis|Acute gingivitis +C0155937|T047|ET|K05.00|ICD10CM|Acute gingivitis NOS|Acute gingivitis NOS +C1719490|T047|AB|K05.00|ICD10CM|Acute gingivitis, plaque induced|Acute gingivitis, plaque induced +C1719490|T047|PT|K05.00|ICD10CM|Acute gingivitis, plaque induced|Acute gingivitis, plaque induced +C4268578|T047|ET|K05.00|ICD10CM|Plaque induced gingival disease|Plaque induced gingival disease +C1719491|T047|AB|K05.01|ICD10CM|Acute gingivitis, non-plaque induced|Acute gingivitis, non-plaque induced +C1719491|T047|PT|K05.01|ICD10CM|Acute gingivitis, non-plaque induced|Acute gingivitis, non-plaque induced +C0008684|T047|PT|K05.1|ICD10|Chronic gingivitis|Chronic gingivitis +C0008684|T047|HT|K05.1|ICD10CM|Chronic gingivitis|Chronic gingivitis +C0008684|T047|AB|K05.1|ICD10CM|Chronic gingivitis|Chronic gingivitis +C0017577|T047|ET|K05.1|ICD10CM|Desquamative gingivitis (chronic)|Desquamative gingivitis (chronic) +C0008684|T047|ET|K05.1|ICD10CM|Gingivitis (chronic) NOS|Gingivitis (chronic) NOS +C0266913|T047|ET|K05.1|ICD10CM|Hyperplastic gingivitis (chronic)|Hyperplastic gingivitis (chronic) +C4268579|T047|ET|K05.1|ICD10CM|Pregnancy associated gingivitis|Pregnancy associated gingivitis +C0865870|T047|ET|K05.1|ICD10CM|Simple marginal gingivitis (chronic)|Simple marginal gingivitis (chronic) +C0865871|T047|ET|K05.1|ICD10CM|Ulcerative gingivitis (chronic)|Ulcerative gingivitis (chronic) +C0008684|T047|ET|K05.10|ICD10CM|Chronic gingivitis NOS|Chronic gingivitis NOS +C1719717|T047|AB|K05.10|ICD10CM|Chronic gingivitis, plaque induced|Chronic gingivitis, plaque induced +C1719717|T047|PT|K05.10|ICD10CM|Chronic gingivitis, plaque induced|Chronic gingivitis, plaque induced +C0017574|T047|ET|K05.10|ICD10CM|Gingivitis NOS|Gingivitis NOS +C1719492|T047|AB|K05.11|ICD10CM|Chronic gingivitis, non-plaque induced|Chronic gingivitis, non-plaque induced +C1719492|T047|PT|K05.11|ICD10CM|Chronic gingivitis, non-plaque induced|Chronic gingivitis, non-plaque induced +C0341006|T047|ET|K05.2|ICD10CM|Acute pericoronitis|Acute pericoronitis +C0001342|T047|PT|K05.2|ICD10|Acute periodontitis|Acute periodontitis +C0031106|T047|HT|K05.2|ICD10CM|Aggressive periodontitis|Aggressive periodontitis +C0031106|T047|AB|K05.2|ICD10CM|Aggressive periodontitis|Aggressive periodontitis +C1719493|T047|AB|K05.20|ICD10CM|Aggressive periodontitis, unspecified|Aggressive periodontitis, unspecified +C1719493|T047|PT|K05.20|ICD10CM|Aggressive periodontitis, unspecified|Aggressive periodontitis, unspecified +C1719494|T047|AB|K05.21|ICD10CM|Aggressive periodontitis, localized|Aggressive periodontitis, localized +C1719494|T047|HT|K05.21|ICD10CM|Aggressive periodontitis, localized|Aggressive periodontitis, localized +C0031085|T047|ET|K05.21|ICD10CM|Periodontal abscess|Periodontal abscess +C4268580|T047|AB|K05.211|ICD10CM|Aggressive periodontitis, localized, slight|Aggressive periodontitis, localized, slight +C4268580|T047|PT|K05.211|ICD10CM|Aggressive periodontitis, localized, slight|Aggressive periodontitis, localized, slight +C4268581|T047|AB|K05.212|ICD10CM|Aggressive periodontitis, localized, moderate|Aggressive periodontitis, localized, moderate +C4268581|T047|PT|K05.212|ICD10CM|Aggressive periodontitis, localized, moderate|Aggressive periodontitis, localized, moderate +C4268582|T047|AB|K05.213|ICD10CM|Aggressive periodontitis, localized, severe|Aggressive periodontitis, localized, severe +C4268582|T047|PT|K05.213|ICD10CM|Aggressive periodontitis, localized, severe|Aggressive periodontitis, localized, severe +C4268583|T047|AB|K05.219|ICD10CM|Aggressive periodontitis, localized, unspecified severity|Aggressive periodontitis, localized, unspecified severity +C4268583|T047|PT|K05.219|ICD10CM|Aggressive periodontitis, localized, unspecified severity|Aggressive periodontitis, localized, unspecified severity +C1719495|T047|AB|K05.22|ICD10CM|Aggressive periodontitis, generalized|Aggressive periodontitis, generalized +C1719495|T047|HT|K05.22|ICD10CM|Aggressive periodontitis, generalized|Aggressive periodontitis, generalized +C4270809|T047|AB|K05.221|ICD10CM|Aggressive periodontitis, generalized, slight|Aggressive periodontitis, generalized, slight +C4270809|T047|PT|K05.221|ICD10CM|Aggressive periodontitis, generalized, slight|Aggressive periodontitis, generalized, slight +C4268584|T047|AB|K05.222|ICD10CM|Aggressive periodontitis, generalized, moderate|Aggressive periodontitis, generalized, moderate +C4268584|T047|PT|K05.222|ICD10CM|Aggressive periodontitis, generalized, moderate|Aggressive periodontitis, generalized, moderate +C4268585|T047|AB|K05.223|ICD10CM|Aggressive periodontitis, generalized, severe|Aggressive periodontitis, generalized, severe +C4268585|T047|PT|K05.223|ICD10CM|Aggressive periodontitis, generalized, severe|Aggressive periodontitis, generalized, severe +C4268586|T047|AB|K05.229|ICD10CM|Aggressive periodontitis, generalized, unspecified severity|Aggressive periodontitis, generalized, unspecified severity +C4268586|T047|PT|K05.229|ICD10CM|Aggressive periodontitis, generalized, unspecified severity|Aggressive periodontitis, generalized, unspecified severity +C0266924|T047|ET|K05.3|ICD10CM|Chronic pericoronitis|Chronic pericoronitis +C0266929|T047|HT|K05.3|ICD10CM|Chronic periodontitis|Chronic periodontitis +C0266929|T047|AB|K05.3|ICD10CM|Chronic periodontitis|Chronic periodontitis +C0266929|T047|PT|K05.3|ICD10|Chronic periodontitis|Chronic periodontitis +C0543769|T047|ET|K05.3|ICD10CM|Complex periodontitis|Complex periodontitis +C0031099|T047|ET|K05.3|ICD10CM|Periodontitis NOS|Periodontitis NOS +C0034219|T047|ET|K05.3|ICD10CM|Simplex periodontitis|Simplex periodontitis +C0266929|T047|AB|K05.30|ICD10CM|Chronic periodontitis, unspecified|Chronic periodontitis, unspecified +C0266929|T047|PT|K05.30|ICD10CM|Chronic periodontitis, unspecified|Chronic periodontitis, unspecified +C1719497|T047|AB|K05.31|ICD10CM|Chronic periodontitis, localized|Chronic periodontitis, localized +C1719497|T047|HT|K05.31|ICD10CM|Chronic periodontitis, localized|Chronic periodontitis, localized +C4268587|T047|AB|K05.311|ICD10CM|Chronic periodontitis, localized, slight|Chronic periodontitis, localized, slight +C4268587|T047|PT|K05.311|ICD10CM|Chronic periodontitis, localized, slight|Chronic periodontitis, localized, slight +C4268588|T047|AB|K05.312|ICD10CM|Chronic periodontitis, localized, moderate|Chronic periodontitis, localized, moderate +C4268588|T047|PT|K05.312|ICD10CM|Chronic periodontitis, localized, moderate|Chronic periodontitis, localized, moderate +C4268589|T047|AB|K05.313|ICD10CM|Chronic periodontitis, localized, severe|Chronic periodontitis, localized, severe +C4268589|T047|PT|K05.313|ICD10CM|Chronic periodontitis, localized, severe|Chronic periodontitis, localized, severe +C4268590|T047|AB|K05.319|ICD10CM|Chronic periodontitis, localized, unspecified severity|Chronic periodontitis, localized, unspecified severity +C4268590|T047|PT|K05.319|ICD10CM|Chronic periodontitis, localized, unspecified severity|Chronic periodontitis, localized, unspecified severity +C1719498|T047|AB|K05.32|ICD10CM|Chronic periodontitis, generalized|Chronic periodontitis, generalized +C1719498|T047|HT|K05.32|ICD10CM|Chronic periodontitis, generalized|Chronic periodontitis, generalized +C4268591|T047|AB|K05.321|ICD10CM|Chronic periodontitis, generalized, slight|Chronic periodontitis, generalized, slight +C4268591|T047|PT|K05.321|ICD10CM|Chronic periodontitis, generalized, slight|Chronic periodontitis, generalized, slight +C4268592|T047|AB|K05.322|ICD10CM|Chronic periodontitis, generalized, moderate|Chronic periodontitis, generalized, moderate +C4268592|T047|PT|K05.322|ICD10CM|Chronic periodontitis, generalized, moderate|Chronic periodontitis, generalized, moderate +C4268593|T047|AB|K05.323|ICD10CM|Chronic periodontitis, generalized, severe|Chronic periodontitis, generalized, severe +C4268593|T047|PT|K05.323|ICD10CM|Chronic periodontitis, generalized, severe|Chronic periodontitis, generalized, severe +C4268594|T047|AB|K05.329|ICD10CM|Chronic periodontitis, generalized, unspecified severity|Chronic periodontitis, generalized, unspecified severity +C4268594|T047|PT|K05.329|ICD10CM|Chronic periodontitis, generalized, unspecified severity|Chronic periodontitis, generalized, unspecified severity +C2887547|T047|ET|K05.4|ICD10CM|Juvenile periodontosis|Juvenile periodontosis +C0600298|T047|PT|K05.4|ICD10CM|Periodontosis|Periodontosis +C0600298|T047|AB|K05.4|ICD10CM|Periodontosis|Periodontosis +C0600298|T047|PT|K05.4|ICD10|Periodontosis|Periodontosis +C4268595|T047|ET|K05.5|ICD10CM|Combined periodontic-endodontic lesion|Combined periodontic-endodontic lesion +C4268596|T047|ET|K05.5|ICD10CM|Narrow gingival width (of periodontal soft tissue)|Narrow gingival width (of periodontal soft tissue) +C0348720|T047|PT|K05.5|ICD10|Other periodontal diseases|Other periodontal diseases +C0348720|T047|PT|K05.5|ICD10CM|Other periodontal diseases|Other periodontal diseases +C0348720|T047|AB|K05.5|ICD10CM|Other periodontal diseases|Other periodontal diseases +C0031090|T047|PT|K05.6|ICD10CM|Periodontal disease, unspecified|Periodontal disease, unspecified +C0031090|T047|AB|K05.6|ICD10CM|Periodontal disease, unspecified|Periodontal disease, unspecified +C0031090|T047|PT|K05.6|ICD10|Periodontal disease, unspecified|Periodontal disease, unspecified +C0494706|T047|HT|K06|ICD10|Other disorders of gingiva and edentulous alveolar ridge|Other disorders of gingiva and edentulous alveolar ridge +C0494706|T047|AB|K06|ICD10CM|Other disorders of gingiva and edentulous alveolar ridge|Other disorders of gingiva and edentulous alveolar ridge +C0494706|T047|HT|K06|ICD10CM|Other disorders of gingiva and edentulous alveolar ridge|Other disorders of gingiva and edentulous alveolar ridge +C0017572|T047|PT|K06.0|ICD10|Gingival recession|Gingival recession +C0017572|T047|AB|K06.0|ICD10CM|Gingival recession|Gingival recession +C0017572|T047|HT|K06.0|ICD10CM|Gingival recession|Gingival recession +C4509246|T047|ET|K06.0|ICD10CM|Gingival recession (postinfective) (postprocedural)|Gingival recession (postinfective) (postprocedural) +C0266916|T047|HT|K06.01|ICD10CM|Gingival recession, localized|Gingival recession, localized +C0266916|T047|AB|K06.01|ICD10CM|Gingival recession, localized|Gingival recession, localized +C0266916|T047|ET|K06.010|ICD10CM|Localized gingival recession, NOS|Localized gingival recession, NOS +C4509247|T047|AB|K06.010|ICD10CM|Localized gingival recession, unspecified|Localized gingival recession, unspecified +C4509247|T047|PT|K06.010|ICD10CM|Localized gingival recession, unspecified|Localized gingival recession, unspecified +C4509248|T047|AB|K06.011|ICD10CM|Localized gingival recession, minimal|Localized gingival recession, minimal +C4509248|T047|PT|K06.011|ICD10CM|Localized gingival recession, minimal|Localized gingival recession, minimal +C4509249|T047|AB|K06.012|ICD10CM|Localized gingival recession, moderate|Localized gingival recession, moderate +C4509249|T047|PT|K06.012|ICD10CM|Localized gingival recession, moderate|Localized gingival recession, moderate +C4509585|T047|AB|K06.013|ICD10CM|Localized gingival recession, severe|Localized gingival recession, severe +C4509585|T047|PT|K06.013|ICD10CM|Localized gingival recession, severe|Localized gingival recession, severe +C0266915|T047|HT|K06.02|ICD10CM|Gingival recession, generalized|Gingival recession, generalized +C0266915|T047|AB|K06.02|ICD10CM|Gingival recession, generalized|Gingival recession, generalized +C0266915|T047|ET|K06.020|ICD10CM|Generalized gingival recession, NOS|Generalized gingival recession, NOS +C4509250|T047|AB|K06.020|ICD10CM|Generalized gingival recession, unspecified|Generalized gingival recession, unspecified +C4509250|T047|PT|K06.020|ICD10CM|Generalized gingival recession, unspecified|Generalized gingival recession, unspecified +C4509251|T047|AB|K06.021|ICD10CM|Generalized gingival recession, minimal|Generalized gingival recession, minimal +C4509251|T047|PT|K06.021|ICD10CM|Generalized gingival recession, minimal|Generalized gingival recession, minimal +C4509252|T047|AB|K06.022|ICD10CM|Generalized gingival recession, moderate|Generalized gingival recession, moderate +C4509252|T047|PT|K06.022|ICD10CM|Generalized gingival recession, moderate|Generalized gingival recession, moderate +C4509253|T047|AB|K06.023|ICD10CM|Generalized gingival recession, severe|Generalized gingival recession, severe +C4509253|T047|PT|K06.023|ICD10CM|Generalized gingival recession, severe|Generalized gingival recession, severe +C0376480|T033|PT|K06.1|ICD10CM|Gingival enlargement|Gingival enlargement +C0376480|T033|AB|K06.1|ICD10CM|Gingival enlargement|Gingival enlargement +C0376480|T033|PT|K06.1|ICD10|Gingival enlargement|Gingival enlargement +C0016049|T190|ET|K06.1|ICD10CM|Gingival fibromatosis|Gingival fibromatosis +C0452154|T037|AB|K06.2|ICD10CM|Gingival & edentulous alveolar ridge lesions assoc w trauma|Gingival & edentulous alveolar ridge lesions assoc w trauma +C0452154|T037|PT|K06.2|ICD10CM|Gingival and edentulous alveolar ridge lesions associated with trauma|Gingival and edentulous alveolar ridge lesions associated with trauma +C0452154|T037|PT|K06.2|ICD10|Gingival and edentulous alveolar ridge lesions associated with trauma|Gingival and edentulous alveolar ridge lesions associated with trauma +C2887549|T047|ET|K06.2|ICD10CM|Irritative hyperplasia of edentulous ridge [denture hyperplasia]|Irritative hyperplasia of edentulous ridge [denture hyperplasia] +C1290721|T047|AB|K06.3|ICD10CM|Horizontal alveolar bone loss|Horizontal alveolar bone loss +C1290721|T047|PT|K06.3|ICD10CM|Horizontal alveolar bone loss|Horizontal alveolar bone loss +C0399441|T191|ET|K06.8|ICD10CM|Fibrous epulis|Fibrous epulis +C0399453|T190|ET|K06.8|ICD10CM|Flabby alveolar ridge|Flabby alveolar ridge +C0014647|T047|ET|K06.8|ICD10CM|Giant cell epulis|Giant cell epulis +C0348721|T047|AB|K06.8|ICD10CM|Oth disrd of gingiva and edentulous alveolar ridge|Oth disrd of gingiva and edentulous alveolar ridge +C0348721|T047|PT|K06.8|ICD10CM|Other specified disorders of gingiva and edentulous alveolar ridge|Other specified disorders of gingiva and edentulous alveolar ridge +C0348721|T047|PT|K06.8|ICD10|Other specified disorders of gingiva and edentulous alveolar ridge|Other specified disorders of gingiva and edentulous alveolar ridge +C1398977|T047|ET|K06.8|ICD10CM|Peripheral giant cell granuloma of gingiva|Peripheral giant cell granuloma of gingiva +C0399442|T047|ET|K06.8|ICD10CM|Pyogenic granuloma of gingiva|Pyogenic granuloma of gingiva +C1290722|T047|ET|K06.8|ICD10CM|Vertical ridge deficiency|Vertical ridge deficiency +C0349369|T047|AB|K06.9|ICD10CM|Disorder of gingiva and edentulous alveolar ridge, unsp|Disorder of gingiva and edentulous alveolar ridge, unsp +C0349369|T047|PT|K06.9|ICD10CM|Disorder of gingiva and edentulous alveolar ridge, unspecified|Disorder of gingiva and edentulous alveolar ridge, unspecified +C0349369|T047|PT|K06.9|ICD10|Disorder of gingiva and edentulous alveolar ridge, unspecified|Disorder of gingiva and edentulous alveolar ridge, unspecified +C0155938|T019|HT|K07|ICD10|Dentofacial anomalies [including malocclusion]|Dentofacial anomalies [including malocclusion] +C0024508|T019|PT|K07.0|ICD10|Major anomalies of jaw size|Major anomalies of jaw size +C0003110|T190|PT|K07.1|ICD10|Anomalies of jaw-cranial base relationship|Anomalies of jaw-cranial base relationship +C0155939|T190|PT|K07.2|ICD10|Anomalies of dental arch relationship|Anomalies of dental arch relationship +C0155940|T190|PT|K07.3|ICD10|Anomalies of tooth position|Anomalies of tooth position +C0024636|T190|PT|K07.4|ICD10|Malocclusion, unspecified|Malocclusion, unspecified +C0266932|T190|PT|K07.5|ICD10|Dentofacial functional abnormalities|Dentofacial functional abnormalities +C0039494|T047|PT|K07.6|ICD10|Temporomandibular joint disorders|Temporomandibular joint disorders +C0477464|T190|PT|K07.8|ICD10|Other dentofacial anomalies|Other dentofacial anomalies +C0155947|T190|PT|K07.9|ICD10|Dentofacial anomaly, unspecified|Dentofacial anomaly, unspecified +C0494707|T047|AB|K08|ICD10CM|Other disorders of teeth and supporting structures|Other disorders of teeth and supporting structures +C0494707|T047|HT|K08|ICD10CM|Other disorders of teeth and supporting structures|Other disorders of teeth and supporting structures +C0494707|T047|HT|K08|ICD10|Other disorders of teeth and supporting structures|Other disorders of teeth and supporting structures +C0155949|T047|PT|K08.0|ICD10|Exfoliation of teeth due to systemic causes|Exfoliation of teeth due to systemic causes +C0155949|T047|PT|K08.0|ICD10CM|Exfoliation of teeth due to systemic causes|Exfoliation of teeth due to systemic causes +C0155949|T047|AB|K08.0|ICD10CM|Exfoliation of teeth due to systemic causes|Exfoliation of teeth due to systemic causes +C2887550|T020|ET|K08.1|ICD10CM|Acquired loss of teeth, complete|Acquired loss of teeth, complete +C2887551|T047|AB|K08.1|ICD10CM|Complete loss of teeth|Complete loss of teeth +C2887551|T047|HT|K08.1|ICD10CM|Complete loss of teeth|Complete loss of teeth +C1314006|T020|PT|K08.1|ICD10|Loss of teeth due to accident, extraction or local periodontal disease|Loss of teeth due to accident, extraction or local periodontal disease +C2887552|T047|AB|K08.10|ICD10CM|Complete loss of teeth, unspecified cause|Complete loss of teeth, unspecified cause +C2887552|T047|HT|K08.10|ICD10CM|Complete loss of teeth, unspecified cause|Complete loss of teeth, unspecified cause +C2887553|T047|AB|K08.101|ICD10CM|Complete loss of teeth, unspecified cause, class I|Complete loss of teeth, unspecified cause, class I +C2887553|T047|PT|K08.101|ICD10CM|Complete loss of teeth, unspecified cause, class I|Complete loss of teeth, unspecified cause, class I +C2887554|T047|AB|K08.102|ICD10CM|Complete loss of teeth, unspecified cause, class II|Complete loss of teeth, unspecified cause, class II +C2887554|T047|PT|K08.102|ICD10CM|Complete loss of teeth, unspecified cause, class II|Complete loss of teeth, unspecified cause, class II +C2887555|T047|AB|K08.103|ICD10CM|Complete loss of teeth, unspecified cause, class III|Complete loss of teeth, unspecified cause, class III +C2887555|T047|PT|K08.103|ICD10CM|Complete loss of teeth, unspecified cause, class III|Complete loss of teeth, unspecified cause, class III +C2887556|T047|AB|K08.104|ICD10CM|Complete loss of teeth, unspecified cause, class IV|Complete loss of teeth, unspecified cause, class IV +C2887556|T047|PT|K08.104|ICD10CM|Complete loss of teeth, unspecified cause, class IV|Complete loss of teeth, unspecified cause, class IV +C2887557|T047|AB|K08.109|ICD10CM|Complete loss of teeth, unspecified cause, unspecified class|Complete loss of teeth, unspecified cause, unspecified class +C2887557|T047|PT|K08.109|ICD10CM|Complete loss of teeth, unspecified cause, unspecified class|Complete loss of teeth, unspecified cause, unspecified class +C0949179|T047|ET|K08.109|ICD10CM|Edentulism NOS|Edentulism NOS +C2887558|T047|AB|K08.11|ICD10CM|Complete loss of teeth due to trauma|Complete loss of teeth due to trauma +C2887558|T047|HT|K08.11|ICD10CM|Complete loss of teeth due to trauma|Complete loss of teeth due to trauma +C2887559|T047|AB|K08.111|ICD10CM|Complete loss of teeth due to trauma, class I|Complete loss of teeth due to trauma, class I +C2887559|T047|PT|K08.111|ICD10CM|Complete loss of teeth due to trauma, class I|Complete loss of teeth due to trauma, class I +C2887560|T047|AB|K08.112|ICD10CM|Complete loss of teeth due to trauma, class II|Complete loss of teeth due to trauma, class II +C2887560|T047|PT|K08.112|ICD10CM|Complete loss of teeth due to trauma, class II|Complete loss of teeth due to trauma, class II +C2887561|T047|AB|K08.113|ICD10CM|Complete loss of teeth due to trauma, class III|Complete loss of teeth due to trauma, class III +C2887561|T047|PT|K08.113|ICD10CM|Complete loss of teeth due to trauma, class III|Complete loss of teeth due to trauma, class III +C2887562|T047|AB|K08.114|ICD10CM|Complete loss of teeth due to trauma, class IV|Complete loss of teeth due to trauma, class IV +C2887562|T047|PT|K08.114|ICD10CM|Complete loss of teeth due to trauma, class IV|Complete loss of teeth due to trauma, class IV +C2887563|T047|AB|K08.119|ICD10CM|Complete loss of teeth due to trauma, unspecified class|Complete loss of teeth due to trauma, unspecified class +C2887563|T047|PT|K08.119|ICD10CM|Complete loss of teeth due to trauma, unspecified class|Complete loss of teeth due to trauma, unspecified class +C2887564|T047|AB|K08.12|ICD10CM|Complete loss of teeth due to periodontal diseases|Complete loss of teeth due to periodontal diseases +C2887564|T047|HT|K08.12|ICD10CM|Complete loss of teeth due to periodontal diseases|Complete loss of teeth due to periodontal diseases +C2887565|T047|AB|K08.121|ICD10CM|Complete loss of teeth due to periodontal diseases, class I|Complete loss of teeth due to periodontal diseases, class I +C2887565|T047|PT|K08.121|ICD10CM|Complete loss of teeth due to periodontal diseases, class I|Complete loss of teeth due to periodontal diseases, class I +C2887566|T047|AB|K08.122|ICD10CM|Complete loss of teeth due to periodontal diseases, class II|Complete loss of teeth due to periodontal diseases, class II +C2887566|T047|PT|K08.122|ICD10CM|Complete loss of teeth due to periodontal diseases, class II|Complete loss of teeth due to periodontal diseases, class II +C2887567|T047|AB|K08.123|ICD10CM|Complete loss of teeth due to periodontal dis, class III|Complete loss of teeth due to periodontal dis, class III +C2887567|T047|PT|K08.123|ICD10CM|Complete loss of teeth due to periodontal diseases, class III|Complete loss of teeth due to periodontal diseases, class III +C2887568|T047|AB|K08.124|ICD10CM|Complete loss of teeth due to periodontal diseases, class IV|Complete loss of teeth due to periodontal diseases, class IV +C2887568|T047|PT|K08.124|ICD10CM|Complete loss of teeth due to periodontal diseases, class IV|Complete loss of teeth due to periodontal diseases, class IV +C2887569|T047|AB|K08.129|ICD10CM|Complete loss of teeth due to periodontal dis, unsp class|Complete loss of teeth due to periodontal dis, unsp class +C2887569|T047|PT|K08.129|ICD10CM|Complete loss of teeth due to periodontal diseases, unspecified class|Complete loss of teeth due to periodontal diseases, unspecified class +C2887570|T047|AB|K08.13|ICD10CM|Complete loss of teeth due to caries|Complete loss of teeth due to caries +C2887570|T047|HT|K08.13|ICD10CM|Complete loss of teeth due to caries|Complete loss of teeth due to caries +C2887571|T047|AB|K08.131|ICD10CM|Complete loss of teeth due to caries, class I|Complete loss of teeth due to caries, class I +C2887571|T047|PT|K08.131|ICD10CM|Complete loss of teeth due to caries, class I|Complete loss of teeth due to caries, class I +C2887572|T047|AB|K08.132|ICD10CM|Complete loss of teeth due to caries, class II|Complete loss of teeth due to caries, class II +C2887572|T047|PT|K08.132|ICD10CM|Complete loss of teeth due to caries, class II|Complete loss of teeth due to caries, class II +C2887573|T047|AB|K08.133|ICD10CM|Complete loss of teeth due to caries, class III|Complete loss of teeth due to caries, class III +C2887573|T047|PT|K08.133|ICD10CM|Complete loss of teeth due to caries, class III|Complete loss of teeth due to caries, class III +C2887574|T047|AB|K08.134|ICD10CM|Complete loss of teeth due to caries, class IV|Complete loss of teeth due to caries, class IV +C2887574|T047|PT|K08.134|ICD10CM|Complete loss of teeth due to caries, class IV|Complete loss of teeth due to caries, class IV +C2887575|T047|AB|K08.139|ICD10CM|Complete loss of teeth due to caries, unspecified class|Complete loss of teeth due to caries, unspecified class +C2887575|T047|PT|K08.139|ICD10CM|Complete loss of teeth due to caries, unspecified class|Complete loss of teeth due to caries, unspecified class +C2887576|T047|AB|K08.19|ICD10CM|Complete loss of teeth due to other specified cause|Complete loss of teeth due to other specified cause +C2887576|T047|HT|K08.19|ICD10CM|Complete loss of teeth due to other specified cause|Complete loss of teeth due to other specified cause +C2887577|T047|AB|K08.191|ICD10CM|Complete loss of teeth due to other specified cause, class I|Complete loss of teeth due to other specified cause, class I +C2887577|T047|PT|K08.191|ICD10CM|Complete loss of teeth due to other specified cause, class I|Complete loss of teeth due to other specified cause, class I +C2887578|T047|AB|K08.192|ICD10CM|Complete loss of teeth due to oth cause, class II|Complete loss of teeth due to oth cause, class II +C2887578|T047|PT|K08.192|ICD10CM|Complete loss of teeth due to other specified cause, class II|Complete loss of teeth due to other specified cause, class II +C2887579|T047|AB|K08.193|ICD10CM|Complete loss of teeth due to oth cause, class III|Complete loss of teeth due to oth cause, class III +C2887579|T047|PT|K08.193|ICD10CM|Complete loss of teeth due to other specified cause, class III|Complete loss of teeth due to other specified cause, class III +C2887580|T047|AB|K08.194|ICD10CM|Complete loss of teeth due to oth cause, class IV|Complete loss of teeth due to oth cause, class IV +C2887580|T047|PT|K08.194|ICD10CM|Complete loss of teeth due to other specified cause, class IV|Complete loss of teeth due to other specified cause, class IV +C2887581|T047|AB|K08.199|ICD10CM|Complete loss of teeth due to oth cause, unspecified class|Complete loss of teeth due to oth cause, unspecified class +C2887581|T047|PT|K08.199|ICD10CM|Complete loss of teeth due to other specified cause, unspecified class|Complete loss of teeth due to other specified cause, unspecified class +C0155951|T047|HT|K08.2|ICD10CM|Atrophy of edentulous alveolar ridge|Atrophy of edentulous alveolar ridge +C0155951|T047|AB|K08.2|ICD10CM|Atrophy of edentulous alveolar ridge|Atrophy of edentulous alveolar ridge +C0155951|T047|PT|K08.2|ICD10|Atrophy of edentulous alveolar ridge|Atrophy of edentulous alveolar ridge +C0746385|T047|ET|K08.20|ICD10CM|Atrophy of the mandible NOS|Atrophy of the mandible NOS +C1456220|T046|ET|K08.20|ICD10CM|Atrophy of the maxilla NOS|Atrophy of the maxilla NOS +C1456219|T047|AB|K08.20|ICD10CM|Unspecified atrophy of edentulous alveolar ridge|Unspecified atrophy of edentulous alveolar ridge +C1456219|T047|PT|K08.20|ICD10CM|Unspecified atrophy of edentulous alveolar ridge|Unspecified atrophy of edentulous alveolar ridge +C2887582|T047|ET|K08.21|ICD10CM|Minimal atrophy of the edentulous mandible|Minimal atrophy of the edentulous mandible +C1456221|T047|AB|K08.21|ICD10CM|Minimal atrophy of the mandible|Minimal atrophy of the mandible +C1456221|T047|PT|K08.21|ICD10CM|Minimal atrophy of the mandible|Minimal atrophy of the mandible +C2887583|T047|ET|K08.22|ICD10CM|Moderate atrophy of the edentulous mandible|Moderate atrophy of the edentulous mandible +C1456222|T047|AB|K08.22|ICD10CM|Moderate atrophy of the mandible|Moderate atrophy of the mandible +C1456222|T047|PT|K08.22|ICD10CM|Moderate atrophy of the mandible|Moderate atrophy of the mandible +C2887584|T047|ET|K08.23|ICD10CM|Severe atrophy of the edentulous mandible|Severe atrophy of the edentulous mandible +C1456223|T047|AB|K08.23|ICD10CM|Severe atrophy of the mandible|Severe atrophy of the mandible +C1456223|T047|PT|K08.23|ICD10CM|Severe atrophy of the mandible|Severe atrophy of the mandible +C1456224|T047|AB|K08.24|ICD10CM|Minimal atrophy of maxilla|Minimal atrophy of maxilla +C1456224|T047|PT|K08.24|ICD10CM|Minimal atrophy of maxilla|Minimal atrophy of maxilla +C2887585|T047|ET|K08.24|ICD10CM|Minimal atrophy of the edentulous maxilla|Minimal atrophy of the edentulous maxilla +C2887586|T047|ET|K08.25|ICD10CM|Moderate atrophy of the edentulous maxilla|Moderate atrophy of the edentulous maxilla +C1456225|T047|AB|K08.25|ICD10CM|Moderate atrophy of the maxilla|Moderate atrophy of the maxilla +C1456225|T047|PT|K08.25|ICD10CM|Moderate atrophy of the maxilla|Moderate atrophy of the maxilla +C2887587|T047|ET|K08.26|ICD10CM|Severe atrophy of the edentulous maxilla|Severe atrophy of the edentulous maxilla +C1456226|T047|AB|K08.26|ICD10CM|Severe atrophy of the maxilla|Severe atrophy of the maxilla +C1456226|T047|PT|K08.26|ICD10CM|Severe atrophy of the maxilla|Severe atrophy of the maxilla +C0155952|T047|PT|K08.3|ICD10|Retained dental root|Retained dental root +C0155952|T047|PT|K08.3|ICD10CM|Retained dental root|Retained dental root +C0155952|T047|AB|K08.3|ICD10CM|Retained dental root|Retained dental root +C2887588|T020|ET|K08.4|ICD10CM|Acquired loss of teeth, partial|Acquired loss of teeth, partial +C2887589|T047|AB|K08.4|ICD10CM|Partial loss of teeth|Partial loss of teeth +C2887589|T047|HT|K08.4|ICD10CM|Partial loss of teeth|Partial loss of teeth +C2887590|T047|AB|K08.40|ICD10CM|Partial loss of teeth, unspecified cause|Partial loss of teeth, unspecified cause +C2887590|T047|HT|K08.40|ICD10CM|Partial loss of teeth, unspecified cause|Partial loss of teeth, unspecified cause +C2887591|T047|AB|K08.401|ICD10CM|Partial loss of teeth, unspecified cause, class I|Partial loss of teeth, unspecified cause, class I +C2887591|T047|PT|K08.401|ICD10CM|Partial loss of teeth, unspecified cause, class I|Partial loss of teeth, unspecified cause, class I +C2887592|T047|AB|K08.402|ICD10CM|Partial loss of teeth, unspecified cause, class II|Partial loss of teeth, unspecified cause, class II +C2887592|T047|PT|K08.402|ICD10CM|Partial loss of teeth, unspecified cause, class II|Partial loss of teeth, unspecified cause, class II +C2887593|T047|AB|K08.403|ICD10CM|Partial loss of teeth, unspecified cause, class III|Partial loss of teeth, unspecified cause, class III +C2887593|T047|PT|K08.403|ICD10CM|Partial loss of teeth, unspecified cause, class III|Partial loss of teeth, unspecified cause, class III +C2887594|T047|AB|K08.404|ICD10CM|Partial loss of teeth, unspecified cause, class IV|Partial loss of teeth, unspecified cause, class IV +C2887594|T047|PT|K08.404|ICD10CM|Partial loss of teeth, unspecified cause, class IV|Partial loss of teeth, unspecified cause, class IV +C2887595|T047|AB|K08.409|ICD10CM|Partial loss of teeth, unspecified cause, unspecified class|Partial loss of teeth, unspecified cause, unspecified class +C2887595|T047|PT|K08.409|ICD10CM|Partial loss of teeth, unspecified cause, unspecified class|Partial loss of teeth, unspecified cause, unspecified class +C0949180|T047|ET|K08.409|ICD10CM|Tooth extraction status NOS|Tooth extraction status NOS +C2887596|T047|AB|K08.41|ICD10CM|Partial loss of teeth due to trauma|Partial loss of teeth due to trauma +C2887596|T047|HT|K08.41|ICD10CM|Partial loss of teeth due to trauma|Partial loss of teeth due to trauma +C2887597|T047|AB|K08.411|ICD10CM|Partial loss of teeth due to trauma, class I|Partial loss of teeth due to trauma, class I +C2887597|T047|PT|K08.411|ICD10CM|Partial loss of teeth due to trauma, class I|Partial loss of teeth due to trauma, class I +C2887598|T047|AB|K08.412|ICD10CM|Partial loss of teeth due to trauma, class II|Partial loss of teeth due to trauma, class II +C2887598|T047|PT|K08.412|ICD10CM|Partial loss of teeth due to trauma, class II|Partial loss of teeth due to trauma, class II +C2887599|T047|AB|K08.413|ICD10CM|Partial loss of teeth due to trauma, class III|Partial loss of teeth due to trauma, class III +C2887599|T047|PT|K08.413|ICD10CM|Partial loss of teeth due to trauma, class III|Partial loss of teeth due to trauma, class III +C2887600|T047|AB|K08.414|ICD10CM|Partial loss of teeth due to trauma, class IV|Partial loss of teeth due to trauma, class IV +C2887600|T047|PT|K08.414|ICD10CM|Partial loss of teeth due to trauma, class IV|Partial loss of teeth due to trauma, class IV +C2887601|T047|AB|K08.419|ICD10CM|Partial loss of teeth due to trauma, unspecified class|Partial loss of teeth due to trauma, unspecified class +C2887601|T047|PT|K08.419|ICD10CM|Partial loss of teeth due to trauma, unspecified class|Partial loss of teeth due to trauma, unspecified class +C2887602|T047|AB|K08.42|ICD10CM|Partial loss of teeth due to periodontal diseases|Partial loss of teeth due to periodontal diseases +C2887602|T047|HT|K08.42|ICD10CM|Partial loss of teeth due to periodontal diseases|Partial loss of teeth due to periodontal diseases +C2887603|T047|AB|K08.421|ICD10CM|Partial loss of teeth due to periodontal diseases, class I|Partial loss of teeth due to periodontal diseases, class I +C2887603|T047|PT|K08.421|ICD10CM|Partial loss of teeth due to periodontal diseases, class I|Partial loss of teeth due to periodontal diseases, class I +C2887604|T047|AB|K08.422|ICD10CM|Partial loss of teeth due to periodontal diseases, class II|Partial loss of teeth due to periodontal diseases, class II +C2887604|T047|PT|K08.422|ICD10CM|Partial loss of teeth due to periodontal diseases, class II|Partial loss of teeth due to periodontal diseases, class II +C2887605|T047|AB|K08.423|ICD10CM|Partial loss of teeth due to periodontal diseases, class III|Partial loss of teeth due to periodontal diseases, class III +C2887605|T047|PT|K08.423|ICD10CM|Partial loss of teeth due to periodontal diseases, class III|Partial loss of teeth due to periodontal diseases, class III +C2887606|T047|AB|K08.424|ICD10CM|Partial loss of teeth due to periodontal diseases, class IV|Partial loss of teeth due to periodontal diseases, class IV +C2887606|T047|PT|K08.424|ICD10CM|Partial loss of teeth due to periodontal diseases, class IV|Partial loss of teeth due to periodontal diseases, class IV +C2887607|T047|AB|K08.429|ICD10CM|Partial loss of teeth due to periodontal dis, unsp class|Partial loss of teeth due to periodontal dis, unsp class +C2887607|T047|PT|K08.429|ICD10CM|Partial loss of teeth due to periodontal diseases, unspecified class|Partial loss of teeth due to periodontal diseases, unspecified class +C2887608|T047|AB|K08.43|ICD10CM|Partial loss of teeth due to caries|Partial loss of teeth due to caries +C2887608|T047|HT|K08.43|ICD10CM|Partial loss of teeth due to caries|Partial loss of teeth due to caries +C2887609|T047|AB|K08.431|ICD10CM|Partial loss of teeth due to caries, class I|Partial loss of teeth due to caries, class I +C2887609|T047|PT|K08.431|ICD10CM|Partial loss of teeth due to caries, class I|Partial loss of teeth due to caries, class I +C2887610|T047|AB|K08.432|ICD10CM|Partial loss of teeth due to caries, class II|Partial loss of teeth due to caries, class II +C2887610|T047|PT|K08.432|ICD10CM|Partial loss of teeth due to caries, class II|Partial loss of teeth due to caries, class II +C2887611|T047|AB|K08.433|ICD10CM|Partial loss of teeth due to caries, class III|Partial loss of teeth due to caries, class III +C2887611|T047|PT|K08.433|ICD10CM|Partial loss of teeth due to caries, class III|Partial loss of teeth due to caries, class III +C2887612|T047|AB|K08.434|ICD10CM|Partial loss of teeth due to caries, class IV|Partial loss of teeth due to caries, class IV +C2887612|T047|PT|K08.434|ICD10CM|Partial loss of teeth due to caries, class IV|Partial loss of teeth due to caries, class IV +C2887613|T047|AB|K08.439|ICD10CM|Partial loss of teeth due to caries, unspecified class|Partial loss of teeth due to caries, unspecified class +C2887613|T047|PT|K08.439|ICD10CM|Partial loss of teeth due to caries, unspecified class|Partial loss of teeth due to caries, unspecified class +C2887614|T047|AB|K08.49|ICD10CM|Partial loss of teeth due to other specified cause|Partial loss of teeth due to other specified cause +C2887614|T047|HT|K08.49|ICD10CM|Partial loss of teeth due to other specified cause|Partial loss of teeth due to other specified cause +C2887615|T047|AB|K08.491|ICD10CM|Partial loss of teeth due to other specified cause, class I|Partial loss of teeth due to other specified cause, class I +C2887615|T047|PT|K08.491|ICD10CM|Partial loss of teeth due to other specified cause, class I|Partial loss of teeth due to other specified cause, class I +C2887616|T047|AB|K08.492|ICD10CM|Partial loss of teeth due to other specified cause, class II|Partial loss of teeth due to other specified cause, class II +C2887616|T047|PT|K08.492|ICD10CM|Partial loss of teeth due to other specified cause, class II|Partial loss of teeth due to other specified cause, class II +C2887617|T047|AB|K08.493|ICD10CM|Partial loss of teeth due to oth cause, class III|Partial loss of teeth due to oth cause, class III +C2887617|T047|PT|K08.493|ICD10CM|Partial loss of teeth due to other specified cause, class III|Partial loss of teeth due to other specified cause, class III +C2887618|T047|AB|K08.494|ICD10CM|Partial loss of teeth due to other specified cause, class IV|Partial loss of teeth due to other specified cause, class IV +C2887618|T047|PT|K08.494|ICD10CM|Partial loss of teeth due to other specified cause, class IV|Partial loss of teeth due to other specified cause, class IV +C2887619|T047|AB|K08.499|ICD10CM|Partial loss of teeth due to oth cause, unspecified class|Partial loss of teeth due to oth cause, unspecified class +C2887619|T047|PT|K08.499|ICD10CM|Partial loss of teeth due to other specified cause, unspecified class|Partial loss of teeth due to other specified cause, unspecified class +C1719520|T033|ET|K08.5|ICD10CM|Defective bridge, crown, filling|Defective bridge, crown, filling +C1290739|T033|ET|K08.5|ICD10CM|Defective dental restoration|Defective dental restoration +C1719519|T033|AB|K08.5|ICD10CM|Unsatisfactory restoration of tooth|Unsatisfactory restoration of tooth +C1719519|T033|HT|K08.5|ICD10CM|Unsatisfactory restoration of tooth|Unsatisfactory restoration of tooth +C1290739|T033|ET|K08.50|ICD10CM|Defective dental restoration NOS|Defective dental restoration NOS +C1719507|T033|AB|K08.50|ICD10CM|Unsatisfactory restoration of tooth, unspecified|Unsatisfactory restoration of tooth, unspecified +C1719507|T033|PT|K08.50|ICD10CM|Unsatisfactory restoration of tooth, unspecified|Unsatisfactory restoration of tooth, unspecified +C1290744|T047|ET|K08.51|ICD10CM|Dental restoration failure of marginal integrity|Dental restoration failure of marginal integrity +C1290744|T047|ET|K08.51|ICD10CM|Open margin on tooth restoration|Open margin on tooth restoration +C1290744|T047|AB|K08.51|ICD10CM|Open restoration margins of tooth|Open restoration margins of tooth +C1290744|T047|PT|K08.51|ICD10CM|Open restoration margins of tooth|Open restoration margins of tooth +C1290747|T047|ET|K08.51|ICD10CM|Poor gingival margin to tooth restoration|Poor gingival margin to tooth restoration +C1290740|T033|ET|K08.52|ICD10CM|Overhanging of tooth restoration|Overhanging of tooth restoration +C2188200|T047|AB|K08.52|ICD10CM|Unrepairable overhanging of dental restorative materials|Unrepairable overhanging of dental restorative materials +C2188200|T047|PT|K08.52|ICD10CM|Unrepairable overhanging of dental restorative materials|Unrepairable overhanging of dental restorative materials +C0457647|T033|HT|K08.53|ICD10CM|Fractured dental restorative material|Fractured dental restorative material +C0457647|T033|AB|K08.53|ICD10CM|Fractured dental restorative material|Fractured dental restorative material +C1719512|T047|AB|K08.530|ICD10CM|Fractured dental restorative material w/o loss of material|Fractured dental restorative material w/o loss of material +C1719512|T047|PT|K08.530|ICD10CM|Fractured dental restorative material without loss of material|Fractured dental restorative material without loss of material +C1719513|T046|PT|K08.531|ICD10CM|Fractured dental restorative material with loss of material|Fractured dental restorative material with loss of material +C1719513|T046|AB|K08.531|ICD10CM|Fractured dental restorative material with loss of material|Fractured dental restorative material with loss of material +C0457647|T033|AB|K08.539|ICD10CM|Fractured dental restorative material, unspecified|Fractured dental restorative material, unspecified +C0457647|T033|PT|K08.539|ICD10CM|Fractured dental restorative material, unspecified|Fractured dental restorative material, unspecified +C1719514|T047|AB|K08.54|ICD10CM|Contour of exist restor of tooth biolog incompat w oral hlth|Contour of exist restor of tooth biolog incompat w oral hlth +C1719514|T047|PT|K08.54|ICD10CM|Contour of existing restoration of tooth biologically incompatible with oral health|Contour of existing restoration of tooth biologically incompatible with oral health +C1290745|T033|ET|K08.54|ICD10CM|Dental restoration failure of periodontal anatomical integrity|Dental restoration failure of periodontal anatomical integrity +C1719515|T033|ET|K08.54|ICD10CM|Unacceptable contours of existing restoration of tooth|Unacceptable contours of existing restoration of tooth +C1719516|T033|ET|K08.54|ICD10CM|Unacceptable morphology of existing restoration of tooth|Unacceptable morphology of existing restoration of tooth +C1719719|T046|PT|K08.55|ICD10CM|Allergy to existing dental restorative material|Allergy to existing dental restorative material +C1719719|T046|AB|K08.55|ICD10CM|Allergy to existing dental restorative material|Allergy to existing dental restorative material +C1290741|T033|ET|K08.56|ICD10CM|Dental restoration aesthetically inadequate or displeasing|Dental restoration aesthetically inadequate or displeasing +C2887621|T047|AB|K08.56|ICD10CM|Poor aesthetic of existing restoration of tooth|Poor aesthetic of existing restoration of tooth +C2887621|T047|PT|K08.56|ICD10CM|Poor aesthetic of existing restoration of tooth|Poor aesthetic of existing restoration of tooth +C2887622|T033|ET|K08.59|ICD10CM|Other defective dental restoration|Other defective dental restoration +C2887623|T047|AB|K08.59|ICD10CM|Other unsatisfactory restoration of tooth|Other unsatisfactory restoration of tooth +C2887623|T047|PT|K08.59|ICD10CM|Other unsatisfactory restoration of tooth|Other unsatisfactory restoration of tooth +C0029790|T047|PT|K08.8|ICD10|Other specified disorders of teeth and supporting structures|Other specified disorders of teeth and supporting structures +C0029790|T047|AB|K08.8|ICD10CM|Other specified disorders of teeth and supporting structures|Other specified disorders of teeth and supporting structures +C0029790|T047|HT|K08.8|ICD10CM|Other specified disorders of teeth and supporting structures|Other specified disorders of teeth and supporting structures +C0582883|T037|PT|K08.81|ICD10CM|Primary occlusal trauma|Primary occlusal trauma +C0582883|T037|AB|K08.81|ICD10CM|Primary occlusal trauma|Primary occlusal trauma +C0582884|T037|PT|K08.82|ICD10CM|Secondary occlusal trauma|Secondary occlusal trauma +C0582884|T037|AB|K08.82|ICD10CM|Secondary occlusal trauma|Secondary occlusal trauma +C0266957|T047|ET|K08.89|ICD10CM|Enlargement of alveolar ridge NOS|Enlargement of alveolar ridge NOS +C1291051|T033|ET|K08.89|ICD10CM|Insufficient anatomic crown height|Insufficient anatomic crown height +C4268597|T047|ET|K08.89|ICD10CM|Insufficient clinical crown length|Insufficient clinical crown length +C0266958|T047|ET|K08.89|ICD10CM|Irregular alveolar process|Irregular alveolar process +C0029790|T047|AB|K08.89|ICD10CM|Other specified disorders of teeth and supporting structures|Other specified disorders of teeth and supporting structures +C0029790|T047|PT|K08.89|ICD10CM|Other specified disorders of teeth and supporting structures|Other specified disorders of teeth and supporting structures +C0040460|T184|ET|K08.89|ICD10CM|Toothache NOS|Toothache NOS +C1704330|T047|PT|K08.9|ICD10|Disorder of teeth and supporting structures, unspecified|Disorder of teeth and supporting structures, unspecified +C1704330|T047|PT|K08.9|ICD10CM|Disorder of teeth and supporting structures, unspecified|Disorder of teeth and supporting structures, unspecified +C1704330|T047|AB|K08.9|ICD10CM|Disorder of teeth and supporting structures, unspecified|Disorder of teeth and supporting structures, unspecified +C0494708|T020|HT|K09|ICD10|Cysts of oral region, not elsewhere classified|Cysts of oral region, not elsewhere classified +C0494708|T020|AB|K09|ICD10CM|Cysts of oral region, not elsewhere classified|Cysts of oral region, not elsewhere classified +C0494708|T020|HT|K09|ICD10CM|Cysts of oral region, not elsewhere classified|Cysts of oral region, not elsewhere classified +C4290197|T033|ET|K09|ICD10CM|lesions showing histological features both of aneurysmal cyst and of another fibro-osseous lesion|lesions showing histological features both of aneurysmal cyst and of another fibro-osseous lesion +C0011428|T047|ET|K09.0|ICD10CM|Dentigerous cyst|Dentigerous cyst +C2939144|T047|PT|K09.0|ICD10|Developmental odontogenic cysts|Developmental odontogenic cysts +C2939144|T047|PT|K09.0|ICD10CM|Developmental odontogenic cysts|Developmental odontogenic cysts +C2939144|T047|AB|K09.0|ICD10CM|Developmental odontogenic cysts|Developmental odontogenic cysts +C0016428|T047|ET|K09.0|ICD10CM|Eruption cyst|Eruption cyst +C0016427|T020|ET|K09.0|ICD10CM|Follicular cyst|Follicular cyst +C0311242|T020|ET|K09.0|ICD10CM|Gingival cyst|Gingival cyst +C0341037|T019|ET|K09.0|ICD10CM|Lateral periodontal cyst|Lateral periodontal cyst +C0266101|T019|ET|K09.0|ICD10CM|Primordial cyst|Primordial cyst +C0266103|T047|ET|K09.1|ICD10CM|Cyst (of) incisive canal|Cyst (of) incisive canal +C0266104|T047|ET|K09.1|ICD10CM|Cyst (of) palatine of papilla|Cyst (of) palatine of papilla +C0028309|T047|PT|K09.1|ICD10CM|Developmental (nonodontogenic) cysts of oral region|Developmental (nonodontogenic) cysts of oral region +C0028309|T047|AB|K09.1|ICD10CM|Developmental (nonodontogenic) cysts of oral region|Developmental (nonodontogenic) cysts of oral region +C0028309|T047|PT|K09.1|ICD10|Developmental (nonodontogenic) cysts of oral region|Developmental (nonodontogenic) cysts of oral region +C0266102|T047|ET|K09.1|ICD10CM|Globulomaxillary cyst|Globulomaxillary cyst +C0266104|T047|ET|K09.1|ICD10CM|Median palatal cyst|Median palatal cyst +C0266105|T019|ET|K09.1|ICD10CM|Nasoalveolar cyst|Nasoalveolar cyst +C0266105|T019|ET|K09.1|ICD10CM|Nasolabial cyst|Nasolabial cyst +C0266103|T047|ET|K09.1|ICD10CM|Nasopalatine duct cyst|Nasopalatine duct cyst +C0029569|T047|PT|K09.2|ICD10|Other cysts of jaw|Other cysts of jaw +C0011649|T191|ET|K09.8|ICD10CM|Dermoid cyst|Dermoid cyst +C0014511|T190|ET|K09.8|ICD10CM|Epidermoid cyst|Epidermoid cyst +C2004597|T019|ET|K09.8|ICD10CM|Epstein's pearl|Epstein's pearl +C1265790|T190|ET|K09.8|ICD10CM|Lymphoepithelial cyst|Lymphoepithelial cyst +C0869058|T020|PT|K09.8|ICD10CM|Other cysts of oral region, not elsewhere classified|Other cysts of oral region, not elsewhere classified +C0869058|T020|AB|K09.8|ICD10CM|Other cysts of oral region, not elsewhere classified|Other cysts of oral region, not elsewhere classified +C0869058|T020|PT|K09.8|ICD10|Other cysts of oral region, not elsewhere classified|Other cysts of oral region, not elsewhere classified +C0494710|T020|PT|K09.9|ICD10CM|Cyst of oral region, unspecified|Cyst of oral region, unspecified +C0494710|T020|AB|K09.9|ICD10CM|Cyst of oral region, unspecified|Cyst of oral region, unspecified +C0494710|T020|PT|K09.9|ICD10|Cyst of oral region, unspecified|Cyst of oral region, unspecified +C0494711|T047|HT|K10|ICD10|Other diseases of jaws|Other diseases of jaws +C0235801|T019|PT|K10.0|ICD10|Developmental disorders of jaws|Developmental disorders of jaws +C0162375|T047|PT|K10.1|ICD10|Giant cell granuloma, central|Giant cell granuloma, central +C0155954|T047|PT|K10.2|ICD10|Inflammatory conditions of jaws|Inflammatory conditions of jaws +C0013240|T047|PT|K10.3|ICD10|Alveolitis of jaws|Alveolitis of jaws +C0029772|T047|PT|K10.8|ICD10|Other specified diseases of jaws|Other specified diseases of jaws +C0022362|T047|PT|K10.9|ICD10|Disease of jaws, unspecified|Disease of jaws, unspecified +C0036093|T047|HT|K11|ICD10|Diseases of salivary glands|Diseases of salivary glands +C0036093|T047|AB|K11|ICD10CM|Diseases of salivary glands|Diseases of salivary glands +C0036093|T047|HT|K11|ICD10CM|Diseases of salivary glands|Diseases of salivary glands +C0155956|T020|PT|K11.0|ICD10CM|Atrophy of salivary gland|Atrophy of salivary gland +C0155956|T020|AB|K11.0|ICD10CM|Atrophy of salivary gland|Atrophy of salivary gland +C0155956|T020|PT|K11.0|ICD10|Atrophy of salivary gland|Atrophy of salivary gland +C0020569|T046|PT|K11.1|ICD10|Hypertrophy of salivary gland|Hypertrophy of salivary gland +C0020569|T046|PT|K11.1|ICD10CM|Hypertrophy of salivary gland|Hypertrophy of salivary gland +C0020569|T046|AB|K11.1|ICD10CM|Hypertrophy of salivary gland|Hypertrophy of salivary gland +C0030583|T047|ET|K11.2|ICD10CM|Parotitis|Parotitis +C0037023|T047|HT|K11.2|ICD10CM|Sialoadenitis|Sialoadenitis +C0037023|T047|AB|K11.2|ICD10CM|Sialoadenitis|Sialoadenitis +C0037023|T047|PT|K11.2|ICD10|Sialoadenitis|Sialoadenitis +C0037023|T047|AB|K11.20|ICD10CM|Sialoadenitis, unspecified|Sialoadenitis, unspecified +C0037023|T047|PT|K11.20|ICD10CM|Sialoadenitis, unspecified|Sialoadenitis, unspecified +C0399578|T047|PT|K11.21|ICD10CM|Acute sialoadenitis|Acute sialoadenitis +C0399578|T047|AB|K11.21|ICD10CM|Acute sialoadenitis|Acute sialoadenitis +C2887626|T047|PT|K11.22|ICD10CM|Acute recurrent sialoadenitis|Acute recurrent sialoadenitis +C2887626|T047|AB|K11.22|ICD10CM|Acute recurrent sialoadenitis|Acute recurrent sialoadenitis +C2887627|T047|AB|K11.23|ICD10CM|Chronic sialoadenitis|Chronic sialoadenitis +C2887627|T047|PT|K11.23|ICD10CM|Chronic sialoadenitis|Chronic sialoadenitis +C0155957|T047|PT|K11.3|ICD10|Abscess of salivary gland|Abscess of salivary gland +C0155957|T047|PT|K11.3|ICD10CM|Abscess of salivary gland|Abscess of salivary gland +C0155957|T047|AB|K11.3|ICD10CM|Abscess of salivary gland|Abscess of salivary gland +C0036094|T190|PT|K11.4|ICD10CM|Fistula of salivary gland|Fistula of salivary gland +C0036094|T190|AB|K11.4|ICD10CM|Fistula of salivary gland|Fistula of salivary gland +C0036094|T190|PT|K11.4|ICD10|Fistula of salivary gland|Fistula of salivary gland +C0036091|T047|ET|K11.5|ICD10CM|Calculus of salivary gland or duct|Calculus of salivary gland or duct +C0036091|T047|PT|K11.5|ICD10CM|Sialolithiasis|Sialolithiasis +C0036091|T047|AB|K11.5|ICD10CM|Sialolithiasis|Sialolithiasis +C0036091|T047|PT|K11.5|ICD10|Sialolithiasis|Sialolithiasis +C0036091|T047|ET|K11.5|ICD10CM|Stone of salivary gland or duct|Stone of salivary gland or duct +C0026686|T047|PT|K11.6|ICD10CM|Mucocele of salivary gland|Mucocele of salivary gland +C0026686|T047|AB|K11.6|ICD10CM|Mucocele of salivary gland|Mucocele of salivary gland +C0026686|T047|PT|K11.6|ICD10|Mucocele of salivary gland|Mucocele of salivary gland +C1313887|T190|ET|K11.6|ICD10CM|Mucous extravasation cyst of salivary gland|Mucous extravasation cyst of salivary gland +C0026686|T047|ET|K11.6|ICD10CM|Mucous retention cyst of salivary gland|Mucous retention cyst of salivary gland +C2242813|T047|ET|K11.6|ICD10CM|Ranula|Ranula +C0012765|T046|PT|K11.7|ICD10CM|Disturbances of salivary secretion|Disturbances of salivary secretion +C0012765|T046|AB|K11.7|ICD10CM|Disturbances of salivary secretion|Disturbances of salivary secretion +C0012765|T046|PT|K11.7|ICD10|Disturbances of salivary secretion|Disturbances of salivary secretion +C0260224|T047|ET|K11.7|ICD10CM|Hypoptyalism|Hypoptyalism +C0037036|T047|ET|K11.7|ICD10CM|Ptyalism|Ptyalism +C0043352|T033|ET|K11.7|ICD10CM|Xerostomia|Xerostomia +C0266995|T047|ET|K11.8|ICD10CM|Benign lymphoepithelial lesion of salivary gland|Benign lymphoepithelial lesion of salivary gland +C0026103|T047|ET|K11.8|ICD10CM|Mikulicz' disease|Mikulicz' disease +C0037033|T047|ET|K11.8|ICD10CM|Necrotizing sialometaplasia|Necrotizing sialometaplasia +C0348723|T047|PT|K11.8|ICD10CM|Other diseases of salivary glands|Other diseases of salivary glands +C0348723|T047|AB|K11.8|ICD10CM|Other diseases of salivary glands|Other diseases of salivary glands +C0348723|T047|PT|K11.8|ICD10|Other diseases of salivary glands|Other diseases of salivary glands +C0266996|T184|ET|K11.8|ICD10CM|Sialectasia|Sialectasia +C0266997|T047|ET|K11.8|ICD10CM|Stenosis of salivary duct|Stenosis of salivary duct +C0266997|T047|ET|K11.8|ICD10CM|Stricture of salivary duct|Stricture of salivary duct +C0036093|T047|PT|K11.9|ICD10CM|Disease of salivary gland, unspecified|Disease of salivary gland, unspecified +C0036093|T047|AB|K11.9|ICD10CM|Disease of salivary gland, unspecified|Disease of salivary gland, unspecified +C0036093|T047|PT|K11.9|ICD10|Disease of salivary gland, unspecified|Disease of salivary gland, unspecified +C0036093|T047|ET|K11.9|ICD10CM|Sialoadenopathy NOS|Sialoadenopathy NOS +C0494713|T047|AB|K12|ICD10CM|Stomatitis and related lesions|Stomatitis and related lesions +C0494713|T047|HT|K12|ICD10CM|Stomatitis and related lesions|Stomatitis and related lesions +C0494713|T047|HT|K12|ICD10|Stomatitis and related lesions|Stomatitis and related lesions +C2887628|T047|ET|K12.0|ICD10CM|Aphthous stomatitis (major) (minor)|Aphthous stomatitis (major) (minor) +C1290775|T037|ET|K12.0|ICD10CM|Bednar's aphthae|Bednar's aphthae +C0086789|T047|ET|K12.0|ICD10CM|Periadenitis mucosa necrotica recurrens|Periadenitis mucosa necrotica recurrens +C2937365|T047|ET|K12.0|ICD10CM|Recurrent aphthous ulcer|Recurrent aphthous ulcer +C2937365|T047|PT|K12.0|ICD10CM|Recurrent oral aphthae|Recurrent oral aphthae +C2937365|T047|AB|K12.0|ICD10CM|Recurrent oral aphthae|Recurrent oral aphthae +C2937365|T047|PT|K12.0|ICD10|Recurrent oral aphthae|Recurrent oral aphthae +C0585635|T047|ET|K12.0|ICD10CM|Stomatitis herpetiformis|Stomatitis herpetiformis +C0038364|T047|ET|K12.1|ICD10CM|Denture stomatitis|Denture stomatitis +C0348724|T047|PT|K12.1|ICD10CM|Other forms of stomatitis|Other forms of stomatitis +C0348724|T047|AB|K12.1|ICD10CM|Other forms of stomatitis|Other forms of stomatitis +C0348724|T047|PT|K12.1|ICD10|Other forms of stomatitis|Other forms of stomatitis +C0038362|T047|ET|K12.1|ICD10CM|Stomatitis NOS|Stomatitis NOS +C0038367|T047|ET|K12.1|ICD10CM|Ulcerative stomatitis|Ulcerative stomatitis +C0266999|T047|ET|K12.1|ICD10CM|Vesicular stomatitis|Vesicular stomatitis +C0494715|T046|PT|K12.2|ICD10CM|Cellulitis and abscess of mouth|Cellulitis and abscess of mouth +C0494715|T046|AB|K12.2|ICD10CM|Cellulitis and abscess of mouth|Cellulitis and abscess of mouth +C0494715|T046|PT|K12.2|ICD10|Cellulitis and abscess of mouth|Cellulitis and abscess of mouth +C3247204|T047|ET|K12.2|ICD10CM|Cellulitis of mouth (floor)|Cellulitis of mouth (floor) +C0749101|T047|ET|K12.2|ICD10CM|Submandibular abscess|Submandibular abscess +C2887629|T047|ET|K12.3|ICD10CM|Mucositis (oral) (oropharyneal)|Mucositis (oral) (oropharyneal) +C3647482|T047|AB|K12.3|ICD10CM|Oral mucositis (ulcerative)|Oral mucositis (ulcerative) +C3647482|T047|HT|K12.3|ICD10CM|Oral mucositis (ulcerative)|Oral mucositis (ulcerative) +C3647482|T047|AB|K12.30|ICD10CM|Oral mucositis (ulcerative), unspecified|Oral mucositis (ulcerative), unspecified +C3647482|T047|PT|K12.30|ICD10CM|Oral mucositis (ulcerative), unspecified|Oral mucositis (ulcerative), unspecified +C2887631|T047|AB|K12.31|ICD10CM|Oral mucositis (ulcerative) due to antineoplastic therapy|Oral mucositis (ulcerative) due to antineoplastic therapy +C2887631|T047|PT|K12.31|ICD10CM|Oral mucositis (ulcerative) due to antineoplastic therapy|Oral mucositis (ulcerative) due to antineoplastic therapy +C2887632|T047|AB|K12.32|ICD10CM|Oral mucositis (ulcerative) due to other drugs|Oral mucositis (ulcerative) due to other drugs +C2887632|T047|PT|K12.32|ICD10CM|Oral mucositis (ulcerative) due to other drugs|Oral mucositis (ulcerative) due to other drugs +C3647480|T047|AB|K12.33|ICD10CM|Oral mucositis (ulcerative) due to radiation|Oral mucositis (ulcerative) due to radiation +C3647480|T047|PT|K12.33|ICD10CM|Oral mucositis (ulcerative) due to radiation|Oral mucositis (ulcerative) due to radiation +C2887635|T047|AB|K12.39|ICD10CM|Other oral mucositis (ulcerative)|Other oral mucositis (ulcerative) +C2887635|T047|PT|K12.39|ICD10CM|Other oral mucositis (ulcerative)|Other oral mucositis (ulcerative) +C2887634|T047|ET|K12.39|ICD10CM|Viral oral mucositis (ulcerative)|Viral oral mucositis (ulcerative) +C4290198|T047|ET|K13|ICD10CM|epithelial disturbances of tongue|epithelial disturbances of tongue +C0494716|T047|AB|K13|ICD10CM|Other diseases of lip and oral mucosa|Other diseases of lip and oral mucosa +C0494716|T047|HT|K13|ICD10CM|Other diseases of lip and oral mucosa|Other diseases of lip and oral mucosa +C0494716|T047|HT|K13|ICD10|Other diseases of lip and oral mucosa|Other diseases of lip and oral mucosa +C0240189|T047|ET|K13.0|ICD10CM|Abscess of lips|Abscess of lips +C0221237|T047|ET|K13.0|ICD10CM|Angular cheilitis|Angular cheilitis +C0267022|T047|ET|K13.0|ICD10CM|Cellulitis of lips|Cellulitis of lips +C0007971|T047|ET|K13.0|ICD10CM|Cheilitis NOS|Cheilitis NOS +C0267028|T184|ET|K13.0|ICD10CM|Cheilodynia|Cheilodynia +C0221264|T047|ET|K13.0|ICD10CM|Cheilosis|Cheilosis +C0023760|T047|PT|K13.0|ICD10CM|Diseases of lips|Diseases of lips +C0023760|T047|AB|K13.0|ICD10CM|Diseases of lips|Diseases of lips +C0023760|T047|PT|K13.0|ICD10|Diseases of lips|Diseases of lips +C0341058|T047|ET|K13.0|ICD10CM|Exfoliative cheilitis|Exfoliative cheilitis +C0267023|T190|ET|K13.0|ICD10CM|Fistula of lips|Fistula of lips +C0267034|T047|ET|K13.0|ICD10CM|Glandular cheilitis|Glandular cheilitis +C0267024|T190|ET|K13.0|ICD10CM|Hypertrophy of lips|Hypertrophy of lips +C2887637|T047|ET|K13.0|ICD10CM|Perlèche NEC|Perlèche NEC +C0494717|T047|PT|K13.1|ICD10|Cheek and lip biting|Cheek and lip biting +C0494717|T047|PT|K13.1|ICD10CM|Cheek and lip biting|Cheek and lip biting +C0494717|T047|AB|K13.1|ICD10CM|Cheek and lip biting|Cheek and lip biting +C1112530|T047|AB|K13.2|ICD10CM|Leukoplakia and oth disturb of oral epithelium, inc tongue|Leukoplakia and oth disturb of oral epithelium, inc tongue +C1112530|T047|HT|K13.2|ICD10CM|Leukoplakia and other disturbances of oral epithelium, including tongue|Leukoplakia and other disturbances of oral epithelium, including tongue +C1112530|T047|PT|K13.2|ICD10|Leukoplakia and other disturbances of oral epithelium, including tongue|Leukoplakia and other disturbances of oral epithelium, including tongue +C0023532|T191|ET|K13.21|ICD10CM|Leukokeratosis of oral mucosa|Leukokeratosis of oral mucosa +C2887638|T047|ET|K13.21|ICD10CM|Leukoplakia of gingiva, lips, tongue|Leukoplakia of gingiva, lips, tongue +C1112530|T047|PT|K13.21|ICD10CM|Leukoplakia of oral mucosa, including tongue|Leukoplakia of oral mucosa, including tongue +C1112530|T047|AB|K13.21|ICD10CM|Leukoplakia of oral mucosa, including tongue|Leukoplakia of oral mucosa, including tongue +C1719529|T033|ET|K13.22|ICD10CM|Minimal keratinization of alveolar ridge mucosa|Minimal keratinization of alveolar ridge mucosa +C1456227|T047|PT|K13.22|ICD10CM|Minimal keratinized residual ridge mucosa|Minimal keratinized residual ridge mucosa +C1456227|T047|AB|K13.22|ICD10CM|Minimal keratinized residual ridge mucosa|Minimal keratinized residual ridge mucosa +C1719530|T033|ET|K13.23|ICD10CM|Excessive keratinization of alveolar ridge mucosa|Excessive keratinization of alveolar ridge mucosa +C1456228|T047|PT|K13.23|ICD10CM|Excessive keratinized residual ridge mucosa|Excessive keratinized residual ridge mucosa +C1456228|T047|AB|K13.23|ICD10CM|Excessive keratinized residual ridge mucosa|Excessive keratinized residual ridge mucosa +C0023526|T047|PT|K13.24|ICD10CM|Leukokeratosis nicotina palati|Leukokeratosis nicotina palati +C0023526|T047|AB|K13.24|ICD10CM|Leukokeratosis nicotina palati|Leukokeratosis nicotina palati +C1406371|T047|ET|K13.24|ICD10CM|Smoker's palate|Smoker's palate +C1456229|T047|ET|K13.29|ICD10CM|Erythroplakia of mouth or tongue|Erythroplakia of mouth or tongue +C1456230|T046|ET|K13.29|ICD10CM|Focal epithelial hyperplasia of mouth or tongue|Focal epithelial hyperplasia of mouth or tongue +C1456231|T046|ET|K13.29|ICD10CM|Leukoedema of mouth or tongue|Leukoedema of mouth or tongue +C0155961|T047|AB|K13.29|ICD10CM|Other disturbances of oral epithelium, including tongue|Other disturbances of oral epithelium, including tongue +C0155961|T047|PT|K13.29|ICD10CM|Other disturbances of oral epithelium, including tongue|Other disturbances of oral epithelium, including tongue +C0399457|T047|ET|K13.29|ICD10CM|Other oral epithelium disturbances|Other oral epithelium disturbances +C0206186|T191|PT|K13.3|ICD10CM|Hairy leukoplakia|Hairy leukoplakia +C0206186|T191|AB|K13.3|ICD10CM|Hairy leukoplakia|Hairy leukoplakia +C0206186|T191|PT|K13.3|ICD10|Hairy leukoplakia|Hairy leukoplakia +C0014461|T046|ET|K13.4|ICD10CM|Eosinophilic granuloma|Eosinophilic granuloma +C0494719|T047|PT|K13.4|ICD10|Granuloma and granuloma-like lesions of oral mucosa|Granuloma and granuloma-like lesions of oral mucosa +C0494719|T047|PT|K13.4|ICD10CM|Granuloma and granuloma-like lesions of oral mucosa|Granuloma and granuloma-like lesions of oral mucosa +C0494719|T047|AB|K13.4|ICD10CM|Granuloma and granuloma-like lesions of oral mucosa|Granuloma and granuloma-like lesions of oral mucosa +C0085653|T191|ET|K13.4|ICD10CM|Granuloma pyogenicum|Granuloma pyogenicum +C1410950|T047|ET|K13.4|ICD10CM|Verrucous xanthoma|Verrucous xanthoma +C0029172|T047|PT|K13.5|ICD10CM|Oral submucous fibrosis|Oral submucous fibrosis +C0029172|T047|AB|K13.5|ICD10CM|Oral submucous fibrosis|Oral submucous fibrosis +C0029172|T047|PT|K13.5|ICD10|Oral submucous fibrosis|Oral submucous fibrosis +C2887639|T047|ET|K13.5|ICD10CM|Submucous fibrosis of tongue|Submucous fibrosis of tongue +C0267018|T046|PT|K13.6|ICD10|Irritative hyperplasia of oral mucosa|Irritative hyperplasia of oral mucosa +C0267018|T046|PT|K13.6|ICD10CM|Irritative hyperplasia of oral mucosa|Irritative hyperplasia of oral mucosa +C0267018|T046|AB|K13.6|ICD10CM|Irritative hyperplasia of oral mucosa|Irritative hyperplasia of oral mucosa +C0348725|T047|HT|K13.7|ICD10CM|Other and unspecified lesions of oral mucosa|Other and unspecified lesions of oral mucosa +C0348725|T047|AB|K13.7|ICD10CM|Other and unspecified lesions of oral mucosa|Other and unspecified lesions of oral mucosa +C0348725|T047|PT|K13.7|ICD10|Other and unspecified lesions of oral mucosa|Other and unspecified lesions of oral mucosa +C2887640|T047|AB|K13.70|ICD10CM|Unspecified lesions of oral mucosa|Unspecified lesions of oral mucosa +C2887640|T047|PT|K13.70|ICD10CM|Unspecified lesions of oral mucosa|Unspecified lesions of oral mucosa +C0546384|T047|ET|K13.79|ICD10CM|Focal oral mucinosis|Focal oral mucinosis +C2887641|T047|AB|K13.79|ICD10CM|Other lesions of oral mucosa|Other lesions of oral mucosa +C2887641|T047|PT|K13.79|ICD10CM|Other lesions of oral mucosa|Other lesions of oral mucosa +C0040409|T047|AB|K14|ICD10CM|Diseases of tongue|Diseases of tongue +C0040409|T047|HT|K14|ICD10CM|Diseases of tongue|Diseases of tongue +C0040409|T047|HT|K14|ICD10|Diseases of tongue|Diseases of tongue +C0267038|T047|ET|K14.0|ICD10CM|Abscess of tongue|Abscess of tongue +C0017675|T047|PT|K14.0|ICD10|Glossitis|Glossitis +C0017675|T047|PT|K14.0|ICD10CM|Glossitis|Glossitis +C0017675|T047|AB|K14.0|ICD10CM|Glossitis|Glossitis +C0267039|T037|ET|K14.0|ICD10CM|Ulceration (traumatic) of tongue|Ulceration (traumatic) of tongue +C0017677|T047|ET|K14.1|ICD10CM|Benign migratory glossitis|Benign migratory glossitis +C0017677|T047|PT|K14.1|ICD10CM|Geographic tongue|Geographic tongue +C0017677|T047|AB|K14.1|ICD10CM|Geographic tongue|Geographic tongue +C0017677|T047|PT|K14.1|ICD10|Geographic tongue|Geographic tongue +C0017677|T047|ET|K14.1|ICD10CM|Glossitis areata exfoliativa|Glossitis areata exfoliativa +C0155963|T019|PT|K14.2|ICD10|Median rhomboid glossitis|Median rhomboid glossitis +C0155963|T019|PT|K14.2|ICD10CM|Median rhomboid glossitis|Median rhomboid glossitis +C0155963|T019|AB|K14.2|ICD10CM|Median rhomboid glossitis|Median rhomboid glossitis +C0235347|T047|ET|K14.3|ICD10CM|Black hairy tongue|Black hairy tongue +C0009144|T033|ET|K14.3|ICD10CM|Coated tongue|Coated tongue +C0267042|T046|ET|K14.3|ICD10CM|Hypertrophy of foliate papillae|Hypertrophy of foliate papillae +C0392494|T047|PT|K14.3|ICD10|Hypertrophy of tongue papillae|Hypertrophy of tongue papillae +C0392494|T047|PT|K14.3|ICD10CM|Hypertrophy of tongue papillae|Hypertrophy of tongue papillae +C0392494|T047|AB|K14.3|ICD10CM|Hypertrophy of tongue papillae|Hypertrophy of tongue papillae +C0235347|T047|ET|K14.3|ICD10CM|Lingua villosa nigra|Lingua villosa nigra +C0155964|T047|ET|K14.4|ICD10CM|Atrophic glossitis|Atrophic glossitis +C0155964|T047|PT|K14.4|ICD10CM|Atrophy of tongue papillae|Atrophy of tongue papillae +C0155964|T047|AB|K14.4|ICD10CM|Atrophy of tongue papillae|Atrophy of tongue papillae +C0155964|T047|PT|K14.4|ICD10|Atrophy of tongue papillae|Atrophy of tongue papillae +C0040412|T047|ET|K14.5|ICD10CM|Fissured tongue|Fissured tongue +C0040412|T047|ET|K14.5|ICD10CM|Furrowed tongue|Furrowed tongue +C0040412|T047|PT|K14.5|ICD10CM|Plicated tongue|Plicated tongue +C0040412|T047|AB|K14.5|ICD10CM|Plicated tongue|Plicated tongue +C0040412|T047|PT|K14.5|ICD10|Plicated tongue|Plicated tongue +C0040412|T047|ET|K14.5|ICD10CM|Scrotal tongue|Scrotal tongue +C0017672|T184|PT|K14.6|ICD10CM|Glossodynia|Glossodynia +C0017672|T184|AB|K14.6|ICD10CM|Glossodynia|Glossodynia +C0017672|T184|PT|K14.6|ICD10|Glossodynia|Glossodynia +C0241426|T047|ET|K14.6|ICD10CM|Glossopyrosis|Glossopyrosis +C0017672|T184|ET|K14.6|ICD10CM|Painful tongue|Painful tongue +C0241423|T047|ET|K14.8|ICD10CM|Atrophy of tongue|Atrophy of tongue +C0267045|T047|ET|K14.8|ICD10CM|Crenated tongue|Crenated tongue +C0024421|T047|ET|K14.8|ICD10CM|Enlargement of tongue|Enlargement of tongue +C0267047|T047|ET|K14.8|ICD10CM|Glossocele|Glossocele +C0267048|T047|ET|K14.8|ICD10CM|Glossoptosis|Glossoptosis +C0024421|T047|ET|K14.8|ICD10CM|Hypertrophy of tongue|Hypertrophy of tongue +C0348726|T047|PT|K14.8|ICD10|Other diseases of tongue|Other diseases of tongue +C0348726|T047|PT|K14.8|ICD10CM|Other diseases of tongue|Other diseases of tongue +C0348726|T047|AB|K14.8|ICD10CM|Other diseases of tongue|Other diseases of tongue +C0040409|T047|PT|K14.9|ICD10CM|Disease of tongue, unspecified|Disease of tongue, unspecified +C0040409|T047|AB|K14.9|ICD10CM|Disease of tongue, unspecified|Disease of tongue, unspecified +C0040409|T047|PT|K14.9|ICD10|Disease of tongue, unspecified|Disease of tongue, unspecified +C1398819|T047|ET|K14.9|ICD10CM|Glossopathy NOS|Glossopathy NOS +C0014868|T047|HT|K20|ICD10CM|Esophagitis|Esophagitis +C0014868|T047|AB|K20|ICD10CM|Esophagitis|Esophagitis +C0014868|T047|PT|K20|ICD10AE|Esophagitis|Esophagitis +C0014868|T047|PT|K20|ICD10|Oesophagitis|Oesophagitis +C0178281|T047|HT|K20-K31|ICD10CM|Diseases of esophagus, stomach and duodenum (K20-K31)|Diseases of esophagus, stomach and duodenum (K20-K31) +C0178281|T047|HT|K20-K31.9|ICD10AE|Diseases of esophagus, stomach and duodenum|Diseases of esophagus, stomach and duodenum +C0178281|T047|HT|K20-K31.9|ICD10|Diseases of oesophagus, stomach and duodenum|Diseases of oesophagus, stomach and duodenum +C0341106|T047|PT|K20.0|ICD10CM|Eosinophilic esophagitis|Eosinophilic esophagitis +C0341106|T047|AB|K20.0|ICD10CM|Eosinophilic esophagitis|Eosinophilic esophagitis +C0267056|T047|ET|K20.8|ICD10CM|Abscess of esophagus|Abscess of esophagus +C0375352|T047|PT|K20.8|ICD10CM|Other esophagitis|Other esophagitis +C0375352|T047|AB|K20.8|ICD10CM|Other esophagitis|Other esophagitis +C0014868|T047|ET|K20.9|ICD10CM|Esophagitis NOS|Esophagitis NOS +C0014868|T047|PT|K20.9|ICD10CM|Esophagitis, unspecified|Esophagitis, unspecified +C0014868|T047|AB|K20.9|ICD10CM|Esophagitis, unspecified|Esophagitis, unspecified +C0017168|T047|HT|K21|ICD10CM|Gastro-esophageal reflux disease|Gastro-esophageal reflux disease +C0017168|T047|AB|K21|ICD10CM|Gastro-esophageal reflux disease|Gastro-esophageal reflux disease +C0017168|T047|HT|K21|ICD10AE|Gastro-esophageal reflux disease|Gastro-esophageal reflux disease +C0017168|T047|HT|K21|ICD10|Gastro-oesophageal reflux disease|Gastro-oesophageal reflux disease +C0677659|T047|PT|K21.0|ICD10AE|Gastro-esophageal reflux disease with esophagitis|Gastro-esophageal reflux disease with esophagitis +C0677659|T047|PT|K21.0|ICD10CM|Gastro-esophageal reflux disease with esophagitis|Gastro-esophageal reflux disease with esophagitis +C0677659|T047|AB|K21.0|ICD10CM|Gastro-esophageal reflux disease with esophagitis|Gastro-esophageal reflux disease with esophagitis +C0677659|T047|PT|K21.0|ICD10|Gastro-oesophageal reflux disease with oesophagitis|Gastro-oesophageal reflux disease with oesophagitis +C0677659|T047|ET|K21.0|ICD10CM|Reflux esophagitis|Reflux esophagitis +C0017168|T047|ET|K21.9|ICD10CM|Esophageal reflux NOS|Esophageal reflux NOS +C0341102|T047|PT|K21.9|ICD10AE|Gastro-esophageal reflux disease without esophagitis|Gastro-esophageal reflux disease without esophagitis +C0341102|T047|PT|K21.9|ICD10CM|Gastro-esophageal reflux disease without esophagitis|Gastro-esophageal reflux disease without esophagitis +C0341102|T047|AB|K21.9|ICD10CM|Gastro-esophageal reflux disease without esophagitis|Gastro-esophageal reflux disease without esophagitis +C0341102|T047|PT|K21.9|ICD10|Gastro-oesophageal reflux disease without oesophagitis|Gastro-oesophageal reflux disease without oesophagitis +C0341101|T047|AB|K22|ICD10CM|Other diseases of esophagus|Other diseases of esophagus +C0341101|T047|HT|K22|ICD10CM|Other diseases of esophagus|Other diseases of esophagus +C0341101|T047|HT|K22|ICD10AE|Other diseases of esophagus|Other diseases of esophagus +C0341101|T047|HT|K22|ICD10|Other diseases of oesophagus|Other diseases of oesophagus +C1321756|T047|ET|K22.0|ICD10CM|Achalasia NOS|Achalasia NOS +C0014848|T047|PT|K22.0|ICD10|Achalasia of cardia|Achalasia of cardia +C0014848|T047|PT|K22.0|ICD10CM|Achalasia of cardia|Achalasia of cardia +C0014848|T047|AB|K22.0|ICD10CM|Achalasia of cardia|Achalasia of cardia +C0014848|T047|ET|K22.0|ICD10CM|Cardiospasm|Cardiospasm +C2741633|T047|ET|K22.1|ICD10CM|Barrett's ulcer|Barrett's ulcer +C0341117|T047|ET|K22.1|ICD10CM|Erosion of esophagus|Erosion of esophagus +C0267074|T047|ET|K22.1|ICD10CM|Fungal ulcer of esophagus|Fungal ulcer of esophagus +C0267075|T047|ET|K22.1|ICD10CM|Peptic ulcer of esophagus|Peptic ulcer of esophagus +C0151970|T047|PT|K22.1|ICD10AE|Ulcer of esophagus|Ulcer of esophagus +C0151970|T047|HT|K22.1|ICD10CM|Ulcer of esophagus|Ulcer of esophagus +C0151970|T047|AB|K22.1|ICD10CM|Ulcer of esophagus|Ulcer of esophagus +C0267103|T037|ET|K22.1|ICD10CM|Ulcer of esophagus due to ingestion of chemicals|Ulcer of esophagus due to ingestion of chemicals +C2887642|T037|ET|K22.1|ICD10CM|Ulcer of esophagus due to ingestion of drugs and medicaments|Ulcer of esophagus due to ingestion of drugs and medicaments +C0151970|T047|PT|K22.1|ICD10|Ulcer of oesophagus|Ulcer of oesophagus +C2586050|T047|ET|K22.1|ICD10CM|Ulcerative esophagitis|Ulcerative esophagitis +C0151970|T047|ET|K22.10|ICD10CM|Ulcer of esophagus NOS|Ulcer of esophagus NOS +C1260417|T047|AB|K22.10|ICD10CM|Ulcer of esophagus without bleeding|Ulcer of esophagus without bleeding +C1260417|T047|PT|K22.10|ICD10CM|Ulcer of esophagus without bleeding|Ulcer of esophagus without bleeding +C0236127|T047|AB|K22.11|ICD10CM|Ulcer of esophagus with bleeding|Ulcer of esophagus with bleeding +C0236127|T047|PT|K22.11|ICD10CM|Ulcer of esophagus with bleeding|Ulcer of esophagus with bleeding +C0267077|T020|ET|K22.2|ICD10CM|Compression of esophagus|Compression of esophagus +C1393788|T020|ET|K22.2|ICD10CM|Constriction of esophagus|Constriction of esophagus +C0239296|T047|PT|K22.2|ICD10CM|Esophageal obstruction|Esophageal obstruction +C0239296|T047|AB|K22.2|ICD10CM|Esophageal obstruction|Esophageal obstruction +C0239296|T047|PT|K22.2|ICD10AE|Esophageal obstruction|Esophageal obstruction +C0239296|T047|PT|K22.2|ICD10|Oesophageal obstruction|Oesophageal obstruction +C0014866|T047|ET|K22.2|ICD10CM|Stenosis of esophagus|Stenosis of esophagus +C4551650|T047|ET|K22.2|ICD10CM|Stricture of esophagus|Stricture of esophagus +C0014860|T046|PT|K22.3|ICD10CM|Perforation of esophagus|Perforation of esophagus +C0014860|T046|AB|K22.3|ICD10CM|Perforation of esophagus|Perforation of esophagus +C0014860|T046|PT|K22.3|ICD10AE|Perforation of esophagus|Perforation of esophagus +C0014860|T046|PT|K22.3|ICD10|Perforation of oesophagus|Perforation of oesophagus +C0281839|T046|ET|K22.3|ICD10CM|Rupture of esophagus|Rupture of esophagus +C1442915|T047|ET|K22.4|ICD10CM|Corkscrew esophagus|Corkscrew esophagus +C0014863|T047|ET|K22.4|ICD10CM|Diffuse esophageal spasm|Diffuse esophageal spasm +C0014858|T047|PT|K22.4|ICD10CM|Dyskinesia of esophagus|Dyskinesia of esophagus +C0014858|T047|AB|K22.4|ICD10CM|Dyskinesia of esophagus|Dyskinesia of esophagus +C0014858|T047|PT|K22.4|ICD10AE|Dyskinesia of esophagus|Dyskinesia of esophagus +C0014858|T047|PT|K22.4|ICD10|Dyskinesia of oesophagus|Dyskinesia of oesophagus +C0014863|T047|ET|K22.4|ICD10CM|Spasm of esophagus|Spasm of esophagus +C0155966|T020|PT|K22.5|ICD10AE|Diverticulum of esophagus, acquired|Diverticulum of esophagus, acquired +C0155966|T020|PT|K22.5|ICD10CM|Diverticulum of esophagus, acquired|Diverticulum of esophagus, acquired +C0155966|T020|AB|K22.5|ICD10CM|Diverticulum of esophagus, acquired|Diverticulum of esophagus, acquired +C0155966|T020|PT|K22.5|ICD10|Diverticulum of oesophagus, acquired|Diverticulum of oesophagus, acquired +C0267088|T020|ET|K22.5|ICD10CM|Esophageal pouch, acquired|Esophageal pouch, acquired +C0024633|T047|PT|K22.6|ICD10AE|Gastro-esophageal laceration-hemorrhage syndrome|Gastro-esophageal laceration-hemorrhage syndrome +C0024633|T047|PT|K22.6|ICD10CM|Gastro-esophageal laceration-hemorrhage syndrome|Gastro-esophageal laceration-hemorrhage syndrome +C0024633|T047|AB|K22.6|ICD10CM|Gastro-esophageal laceration-hemorrhage syndrome|Gastro-esophageal laceration-hemorrhage syndrome +C0024633|T047|PT|K22.6|ICD10|Gastro-oesophageal laceration-haemorrhage syndrome|Gastro-oesophageal laceration-haemorrhage syndrome +C0024633|T047|ET|K22.6|ICD10CM|Mallory-Weiss syndrome|Mallory-Weiss syndrome +C0004763|T047|ET|K22.7|ICD10CM|Barrett's disease|Barrett's disease +C0004763|T047|HT|K22.7|ICD10CM|Barrett's esophagus|Barrett's esophagus +C0004763|T047|AB|K22.7|ICD10CM|Barrett's esophagus|Barrett's esophagus +C0004763|T047|ET|K22.7|ICD10CM|Barrett's syndrome|Barrett's syndrome +C0004763|T047|ET|K22.70|ICD10CM|Barrett's esophagus NOS|Barrett's esophagus NOS +C2887643|T047|PT|K22.70|ICD10CM|Barrett's esophagus without dysplasia|Barrett's esophagus without dysplasia +C2887643|T047|AB|K22.70|ICD10CM|Barrett's esophagus without dysplasia|Barrett's esophagus without dysplasia +C1333324|T047|HT|K22.71|ICD10CM|Barrett's esophagus with dysplasia|Barrett's esophagus with dysplasia +C1333324|T047|AB|K22.71|ICD10CM|Barrett's esophagus with dysplasia|Barrett's esophagus with dysplasia +C1334414|T047|PT|K22.710|ICD10CM|Barrett's esophagus with low grade dysplasia|Barrett's esophagus with low grade dysplasia +C1334414|T047|AB|K22.710|ICD10CM|Barrett's esophagus with low grade dysplasia|Barrett's esophagus with low grade dysplasia +C1334003|T047|PT|K22.711|ICD10CM|Barrett's esophagus with high grade dysplasia|Barrett's esophagus with high grade dysplasia +C1334003|T047|AB|K22.711|ICD10CM|Barrett's esophagus with high grade dysplasia|Barrett's esophagus with high grade dysplasia +C2887644|T047|AB|K22.719|ICD10CM|Barrett's esophagus with dysplasia, unspecified|Barrett's esophagus with dysplasia, unspecified +C2887644|T047|PT|K22.719|ICD10CM|Barrett's esophagus with dysplasia, unspecified|Barrett's esophagus with dysplasia, unspecified +C0239293|T046|ET|K22.8|ICD10CM|Hemorrhage of esophagus NOS|Hemorrhage of esophagus NOS +C0348727|T047|PT|K22.8|ICD10AE|Other specified diseases of esophagus|Other specified diseases of esophagus +C0348727|T047|PT|K22.8|ICD10CM|Other specified diseases of esophagus|Other specified diseases of esophagus +C0348727|T047|AB|K22.8|ICD10CM|Other specified diseases of esophagus|Other specified diseases of esophagus +C0348727|T047|PT|K22.8|ICD10|Other specified diseases of oesophagus|Other specified diseases of oesophagus +C0014852|T047|PT|K22.9|ICD10AE|Disease of esophagus, unspecified|Disease of esophagus, unspecified +C0014852|T047|PT|K22.9|ICD10CM|Disease of esophagus, unspecified|Disease of esophagus, unspecified +C0014852|T047|AB|K22.9|ICD10CM|Disease of esophagus, unspecified|Disease of esophagus, unspecified +C0014852|T047|PT|K22.9|ICD10|Disease of oesophagus, unspecified|Disease of oesophagus, unspecified +C0694506|T047|AB|K23|ICD10CM|Disorders of esophagus in diseases classified elsewhere|Disorders of esophagus in diseases classified elsewhere +C0694506|T047|PT|K23|ICD10CM|Disorders of esophagus in diseases classified elsewhere|Disorders of esophagus in diseases classified elsewhere +C0694506|T047|HT|K23|ICD10AE|Disorders of esophagus in diseases classified elsewhere|Disorders of esophagus in diseases classified elsewhere +C0694506|T047|HT|K23|ICD10|Disorders of oesophagus in diseases classified elsewhere|Disorders of oesophagus in diseases classified elsewhere +C0392028|T047|PT|K23.0|ICD10AE|Tuberculous esophagitis|Tuberculous esophagitis +C0392028|T047|PT|K23.0|ICD10|Tuberculous oesophagitis|Tuberculous oesophagitis +C0348892|T047|PT|K23.1|ICD10AE|Megaesophagus in Chagas' disease|Megaesophagus in Chagas' disease +C0348892|T047|PT|K23.1|ICD10|Megaoesophagus in Chagas' disease|Megaoesophagus in Chagas' disease +C0348728|T047|PT|K23.8|ICD10AE|Disorders of esophagus in other diseases classified elsewhere|Disorders of esophagus in other diseases classified elsewhere +C0348728|T047|PT|K23.8|ICD10|Disorders of oesophagus in other diseases classified elsewhere|Disorders of oesophagus in other diseases classified elsewhere +C0267112|T047|ET|K25|ICD10CM|erosion (acute) of stomach|erosion (acute) of stomach +C0038358|T047|HT|K25|ICD10|Gastric ulcer|Gastric ulcer +C0038358|T047|HT|K25|ICD10CM|Gastric ulcer|Gastric ulcer +C0038358|T047|AB|K25|ICD10CM|Gastric ulcer|Gastric ulcer +C4290199|T047|ET|K25|ICD10CM|pylorus ulcer (peptic)|pylorus ulcer (peptic) +C1275742|T047|ET|K25|ICD10CM|stomach ulcer (peptic)|stomach ulcer (peptic) +C0155967|T047|PT|K25.0|ICD10CM|Acute gastric ulcer with hemorrhage|Acute gastric ulcer with hemorrhage +C0155967|T047|AB|K25.0|ICD10CM|Acute gastric ulcer with hemorrhage|Acute gastric ulcer with hemorrhage +C0155967|T047|PT|K25.0|ICD10|Gastric ulcer, acute with haemorrhage|Gastric ulcer, acute with haemorrhage +C0155967|T047|PT|K25.0|ICD10AE|Gastric ulcer, acute with hemorrhage|Gastric ulcer, acute with hemorrhage +C0155970|T047|PT|K25.1|ICD10CM|Acute gastric ulcer with perforation|Acute gastric ulcer with perforation +C0155970|T047|AB|K25.1|ICD10CM|Acute gastric ulcer with perforation|Acute gastric ulcer with perforation +C0155970|T047|PT|K25.1|ICD10|Gastric ulcer, acute with perforation|Gastric ulcer, acute with perforation +C0155973|T047|AB|K25.2|ICD10CM|Acute gastric ulcer with both hemorrhage and perforation|Acute gastric ulcer with both hemorrhage and perforation +C0155973|T047|PT|K25.2|ICD10CM|Acute gastric ulcer with both hemorrhage and perforation|Acute gastric ulcer with both hemorrhage and perforation +C0155973|T047|PT|K25.2|ICD10|Gastric ulcer, acute with both haemorrhage and perforation|Gastric ulcer, acute with both haemorrhage and perforation +C0155973|T047|PT|K25.2|ICD10AE|Gastric ulcer, acute with both hemorrhage and perforation|Gastric ulcer, acute with both hemorrhage and perforation +C0267124|T047|AB|K25.3|ICD10CM|Acute gastric ulcer without hemorrhage or perforation|Acute gastric ulcer without hemorrhage or perforation +C0267124|T047|PT|K25.3|ICD10CM|Acute gastric ulcer without hemorrhage or perforation|Acute gastric ulcer without hemorrhage or perforation +C0267124|T047|PT|K25.3|ICD10|Gastric ulcer, acute without haemorrhage or perforation|Gastric ulcer, acute without haemorrhage or perforation +C0267124|T047|PT|K25.3|ICD10AE|Gastric ulcer, acute without hemorrhage or perforation|Gastric ulcer, acute without hemorrhage or perforation +C0155979|T047|PT|K25.4|ICD10CM|Chronic or unspecified gastric ulcer with hemorrhage|Chronic or unspecified gastric ulcer with hemorrhage +C0155979|T047|AB|K25.4|ICD10CM|Chronic or unspecified gastric ulcer with hemorrhage|Chronic or unspecified gastric ulcer with hemorrhage +C0155979|T047|PT|K25.4|ICD10|Gastric ulcer, chronic or unspecified with haemorrhage|Gastric ulcer, chronic or unspecified with haemorrhage +C0155979|T047|PT|K25.4|ICD10AE|Gastric ulcer, chronic or unspecified with hemorrhage|Gastric ulcer, chronic or unspecified with hemorrhage +C0155982|T047|AB|K25.5|ICD10CM|Chronic or unspecified gastric ulcer with perforation|Chronic or unspecified gastric ulcer with perforation +C0155982|T047|PT|K25.5|ICD10CM|Chronic or unspecified gastric ulcer with perforation|Chronic or unspecified gastric ulcer with perforation +C0155982|T047|PT|K25.5|ICD10|Gastric ulcer, chronic or unspecified with perforation|Gastric ulcer, chronic or unspecified with perforation +C0494723|T047|AB|K25.6|ICD10CM|Chronic or unsp gastric ulcer w both hemorrhage and perf|Chronic or unsp gastric ulcer w both hemorrhage and perf +C0494723|T047|PT|K25.6|ICD10CM|Chronic or unspecified gastric ulcer with both hemorrhage and perforation|Chronic or unspecified gastric ulcer with both hemorrhage and perforation +C0494723|T047|PT|K25.6|ICD10|Gastric ulcer, chronic or unspecified with both haemorrhage and perforation|Gastric ulcer, chronic or unspecified with both haemorrhage and perforation +C0494723|T047|PT|K25.6|ICD10AE|Gastric ulcer, chronic or unspecified with both hemorrhage and perforation|Gastric ulcer, chronic or unspecified with both hemorrhage and perforation +C0267136|T047|AB|K25.7|ICD10CM|Chronic gastric ulcer without hemorrhage or perforation|Chronic gastric ulcer without hemorrhage or perforation +C0267136|T047|PT|K25.7|ICD10CM|Chronic gastric ulcer without hemorrhage or perforation|Chronic gastric ulcer without hemorrhage or perforation +C0267136|T047|PT|K25.7|ICD10|Gastric ulcer, chronic without haemorrhage or perforation|Gastric ulcer, chronic without haemorrhage or perforation +C0267136|T047|PT|K25.7|ICD10AE|Gastric ulcer, chronic without hemorrhage or perforation|Gastric ulcer, chronic without hemorrhage or perforation +C0494724|T047|AB|K25.9|ICD10CM|Gastric ulcer, unsp as acute or chronic, w/o hemor or perf|Gastric ulcer, unsp as acute or chronic, w/o hemor or perf +C0494724|T047|PT|K25.9|ICD10|Gastric ulcer, unspecified as acute or chronic, without haemorrhage or perforation|Gastric ulcer, unspecified as acute or chronic, without haemorrhage or perforation +C0494724|T047|PT|K25.9|ICD10CM|Gastric ulcer, unspecified as acute or chronic, without hemorrhage or perforation|Gastric ulcer, unspecified as acute or chronic, without hemorrhage or perforation +C0494724|T047|PT|K25.9|ICD10AE|Gastric ulcer, unspecified as acute or chronic, without hemorrhage or perforation|Gastric ulcer, unspecified as acute or chronic, without hemorrhage or perforation +C0013295|T047|HT|K26|ICD10CM|Duodenal ulcer|Duodenal ulcer +C0013295|T047|AB|K26|ICD10CM|Duodenal ulcer|Duodenal ulcer +C0013295|T047|HT|K26|ICD10|Duodenal ulcer|Duodenal ulcer +C0013295|T047|ET|K26|ICD10CM|duodenum ulcer (peptic)|duodenum ulcer (peptic) +C0267251|T047|ET|K26|ICD10CM|erosion (acute) of duodenum|erosion (acute) of duodenum +C4290200|T047|ET|K26|ICD10CM|postpyloric ulcer (peptic)|postpyloric ulcer (peptic) +C0155992|T047|PT|K26.0|ICD10CM|Acute duodenal ulcer with hemorrhage|Acute duodenal ulcer with hemorrhage +C0155992|T047|AB|K26.0|ICD10CM|Acute duodenal ulcer with hemorrhage|Acute duodenal ulcer with hemorrhage +C0155992|T047|PT|K26.0|ICD10|Duodenal ulcer, acute with haemorrhage|Duodenal ulcer, acute with haemorrhage +C0155992|T047|PT|K26.0|ICD10AE|Duodenal ulcer, acute with hemorrhage|Duodenal ulcer, acute with hemorrhage +C0155995|T047|PT|K26.1|ICD10CM|Acute duodenal ulcer with perforation|Acute duodenal ulcer with perforation +C0155995|T047|AB|K26.1|ICD10CM|Acute duodenal ulcer with perforation|Acute duodenal ulcer with perforation +C0155995|T047|PT|K26.1|ICD10|Duodenal ulcer, acute with perforation|Duodenal ulcer, acute with perforation +C0155998|T047|AB|K26.2|ICD10CM|Acute duodenal ulcer with both hemorrhage and perforation|Acute duodenal ulcer with both hemorrhage and perforation +C0155998|T047|PT|K26.2|ICD10CM|Acute duodenal ulcer with both hemorrhage and perforation|Acute duodenal ulcer with both hemorrhage and perforation +C0155998|T047|PT|K26.2|ICD10|Duodenal ulcer, acute with both haemorrhage and perforation|Duodenal ulcer, acute with both haemorrhage and perforation +C0155998|T047|PT|K26.2|ICD10AE|Duodenal ulcer, acute with both hemorrhage and perforation|Duodenal ulcer, acute with both hemorrhage and perforation +C0267264|T047|AB|K26.3|ICD10CM|Acute duodenal ulcer without hemorrhage or perforation|Acute duodenal ulcer without hemorrhage or perforation +C0267264|T047|PT|K26.3|ICD10CM|Acute duodenal ulcer without hemorrhage or perforation|Acute duodenal ulcer without hemorrhage or perforation +C0267264|T047|PT|K26.3|ICD10|Duodenal ulcer, acute without haemorrhage or perforation|Duodenal ulcer, acute without haemorrhage or perforation +C0267264|T047|PT|K26.3|ICD10AE|Duodenal ulcer, acute without hemorrhage or perforation|Duodenal ulcer, acute without hemorrhage or perforation +C0156004|T047|AB|K26.4|ICD10CM|Chronic or unspecified duodenal ulcer with hemorrhage|Chronic or unspecified duodenal ulcer with hemorrhage +C0156004|T047|PT|K26.4|ICD10CM|Chronic or unspecified duodenal ulcer with hemorrhage|Chronic or unspecified duodenal ulcer with hemorrhage +C0156004|T047|PT|K26.4|ICD10|Duodenal ulcer, chronic or unspecified with haemorrhage|Duodenal ulcer, chronic or unspecified with haemorrhage +C0156004|T047|PT|K26.4|ICD10AE|Duodenal ulcer, chronic or unspecified with hemorrhage|Duodenal ulcer, chronic or unspecified with hemorrhage +C0391983|T047|AB|K26.5|ICD10CM|Chronic or unspecified duodenal ulcer with perforation|Chronic or unspecified duodenal ulcer with perforation +C0391983|T047|PT|K26.5|ICD10CM|Chronic or unspecified duodenal ulcer with perforation|Chronic or unspecified duodenal ulcer with perforation +C0391983|T047|PT|K26.5|ICD10|Duodenal ulcer, chronic or unspecified with perforation|Duodenal ulcer, chronic or unspecified with perforation +C0494726|T047|AB|K26.6|ICD10CM|Chronic or unsp duodenal ulcer w both hemorrhage and perf|Chronic or unsp duodenal ulcer w both hemorrhage and perf +C0494726|T047|PT|K26.6|ICD10CM|Chronic or unspecified duodenal ulcer with both hemorrhage and perforation|Chronic or unspecified duodenal ulcer with both hemorrhage and perforation +C0494726|T047|PT|K26.6|ICD10|Duodenal ulcer, chronic or unspecified with both haemorrhage and perforation|Duodenal ulcer, chronic or unspecified with both haemorrhage and perforation +C0494726|T047|PT|K26.6|ICD10AE|Duodenal ulcer, chronic or unspecified with both hemorrhage and perforation|Duodenal ulcer, chronic or unspecified with both hemorrhage and perforation +C0267282|T047|AB|K26.7|ICD10CM|Chronic duodenal ulcer without hemorrhage or perforation|Chronic duodenal ulcer without hemorrhage or perforation +C0267282|T047|PT|K26.7|ICD10CM|Chronic duodenal ulcer without hemorrhage or perforation|Chronic duodenal ulcer without hemorrhage or perforation +C0267282|T047|PT|K26.7|ICD10|Duodenal ulcer, chronic without haemorrhage or perforation|Duodenal ulcer, chronic without haemorrhage or perforation +C0267282|T047|PT|K26.7|ICD10AE|Duodenal ulcer, chronic without hemorrhage or perforation|Duodenal ulcer, chronic without hemorrhage or perforation +C0494727|T047|AB|K26.9|ICD10CM|Duodenal ulcer, unsp as acute or chronic, w/o hemor or perf|Duodenal ulcer, unsp as acute or chronic, w/o hemor or perf +C0494727|T047|PT|K26.9|ICD10|Duodenal ulcer, unspecified as acute or chronic, without haemorrhage or perforation|Duodenal ulcer, unspecified as acute or chronic, without haemorrhage or perforation +C0494727|T047|PT|K26.9|ICD10CM|Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation|Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation +C0494727|T047|PT|K26.9|ICD10AE|Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation|Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation +C0030920|T047|ET|K27|ICD10CM|gastroduodenal ulcer NOS|gastroduodenal ulcer NOS +C0030920|T047|ET|K27|ICD10CM|peptic ulcer NOS|peptic ulcer NOS +C0030920|T047|HT|K27|ICD10CM|Peptic ulcer, site unspecified|Peptic ulcer, site unspecified +C0030920|T047|AB|K27|ICD10CM|Peptic ulcer, site unspecified|Peptic ulcer, site unspecified +C0030920|T047|HT|K27|ICD10|Peptic ulcer, site unspecified|Peptic ulcer, site unspecified +C0267288|T047|AB|K27.0|ICD10CM|Acute peptic ulcer, site unspecified, with hemorrhage|Acute peptic ulcer, site unspecified, with hemorrhage +C0267288|T047|PT|K27.0|ICD10CM|Acute peptic ulcer, site unspecified, with hemorrhage|Acute peptic ulcer, site unspecified, with hemorrhage +C0267288|T047|PT|K27.0|ICD10|Peptic ulcer, acute with haemorrhage|Peptic ulcer, acute with haemorrhage +C0267288|T047|PT|K27.0|ICD10AE|Peptic ulcer, acute with hemorrhage|Peptic ulcer, acute with hemorrhage +C0267291|T047|AB|K27.1|ICD10CM|Acute peptic ulcer, site unspecified, with perforation|Acute peptic ulcer, site unspecified, with perforation +C0267291|T047|PT|K27.1|ICD10CM|Acute peptic ulcer, site unspecified, with perforation|Acute peptic ulcer, site unspecified, with perforation +C0267291|T047|PT|K27.1|ICD10|Peptic ulcer, acute with perforation|Peptic ulcer, acute with perforation +C2887647|T047|AB|K27.2|ICD10CM|Acute peptic ulcer, site unsp, w both hemorrhage and perf|Acute peptic ulcer, site unsp, w both hemorrhage and perf +C2887647|T047|PT|K27.2|ICD10CM|Acute peptic ulcer, site unspecified, with both hemorrhage and perforation|Acute peptic ulcer, site unspecified, with both hemorrhage and perforation +C0267294|T047|PT|K27.2|ICD10|Peptic ulcer, acute with both haemorrhage and perforation|Peptic ulcer, acute with both haemorrhage and perforation +C0267294|T047|PT|K27.2|ICD10AE|Peptic ulcer, acute with both hemorrhage and perforation|Peptic ulcer, acute with both hemorrhage and perforation +C2887648|T047|AB|K27.3|ICD10CM|Acute peptic ulcer, site unsp, w/o hemorrhage or perforation|Acute peptic ulcer, site unsp, w/o hemorrhage or perforation +C2887648|T047|PT|K27.3|ICD10CM|Acute peptic ulcer, site unspecified, without hemorrhage or perforation|Acute peptic ulcer, site unspecified, without hemorrhage or perforation +C0392499|T047|PT|K27.3|ICD10|Peptic ulcer, acute without haemorrhage or perforation|Peptic ulcer, acute without haemorrhage or perforation +C0392499|T047|PT|K27.3|ICD10AE|Peptic ulcer, acute without hemorrhage or perforation|Peptic ulcer, acute without hemorrhage or perforation +C0494730|T047|AB|K27.4|ICD10CM|Chronic or unsp peptic ulcer, site unsp, with hemorrhage|Chronic or unsp peptic ulcer, site unsp, with hemorrhage +C0494730|T047|PT|K27.4|ICD10CM|Chronic or unspecified peptic ulcer, site unspecified, with hemorrhage|Chronic or unspecified peptic ulcer, site unspecified, with hemorrhage +C0494730|T047|PT|K27.4|ICD10|Peptic ulcer, chronic or unspecified with haemorrhage|Peptic ulcer, chronic or unspecified with haemorrhage +C0494730|T047|PT|K27.4|ICD10AE|Peptic ulcer, chronic or unspecified with hemorrhage|Peptic ulcer, chronic or unspecified with hemorrhage +C0494731|T047|AB|K27.5|ICD10CM|Chronic or unsp peptic ulcer, site unsp, with perforation|Chronic or unsp peptic ulcer, site unsp, with perforation +C0494731|T047|PT|K27.5|ICD10CM|Chronic or unspecified peptic ulcer, site unspecified, with perforation|Chronic or unspecified peptic ulcer, site unspecified, with perforation +C0494731|T047|PT|K27.5|ICD10|Peptic ulcer, chronic or unspecified with perforation|Peptic ulcer, chronic or unspecified with perforation +C2887649|T047|AB|K27.6|ICD10CM|Chr or unsp peptic ulcer, site unsp, w both hemor and perf|Chr or unsp peptic ulcer, site unsp, w both hemor and perf +C2887649|T047|PT|K27.6|ICD10CM|Chronic or unspecified peptic ulcer, site unspecified, with both hemorrhage and perforation|Chronic or unspecified peptic ulcer, site unspecified, with both hemorrhage and perforation +C0494732|T047|PT|K27.6|ICD10|Peptic ulcer, chronic or unspecified with both haemorrhage and perforation|Peptic ulcer, chronic or unspecified with both haemorrhage and perforation +C0494732|T047|PT|K27.6|ICD10AE|Peptic ulcer, chronic or unspecified with both hemorrhage and perforation|Peptic ulcer, chronic or unspecified with both hemorrhage and perforation +C2887650|T047|AB|K27.7|ICD10CM|Chronic peptic ulcer, site unsp, w/o hemorrhage or perf|Chronic peptic ulcer, site unsp, w/o hemorrhage or perf +C2887650|T047|PT|K27.7|ICD10CM|Chronic peptic ulcer, site unspecified, without hemorrhage or perforation|Chronic peptic ulcer, site unspecified, without hemorrhage or perforation +C0392500|T020|PT|K27.7|ICD10|Peptic ulcer, chronic without haemorrhage or perforation|Peptic ulcer, chronic without haemorrhage or perforation +C0392500|T020|PT|K27.7|ICD10AE|Peptic ulcer, chronic without hemorrhage or perforation|Peptic ulcer, chronic without hemorrhage or perforation +C2887651|T047|AB|K27.9|ICD10CM|Peptic ulc, site unsp, unsp as ac or chr, w/o hemor or perf|Peptic ulc, site unsp, unsp as ac or chr, w/o hemor or perf +C2887651|T047|PT|K27.9|ICD10CM|Peptic ulcer, site unspecified, unspecified as acute or chronic, without hemorrhage or perforation|Peptic ulcer, site unspecified, unspecified as acute or chronic, without hemorrhage or perforation +C0494733|T047|PT|K27.9|ICD10|Peptic ulcer, unspecified as acute or chronic, without haemorrhage or perforation|Peptic ulcer, unspecified as acute or chronic, without haemorrhage or perforation +C0494733|T047|PT|K27.9|ICD10AE|Peptic ulcer, unspecified as acute or chronic, without hemorrhage or perforation|Peptic ulcer, unspecified as acute or chronic, without hemorrhage or perforation +C4290201|T020|ET|K28|ICD10CM|anastomotic ulcer (peptic) or erosion|anastomotic ulcer (peptic) or erosion +C4290202|T047|ET|K28|ICD10CM|gastrocolic ulcer (peptic) or erosion|gastrocolic ulcer (peptic) or erosion +C4290203|T047|ET|K28|ICD10CM|gastrointestinal ulcer (peptic) or erosion|gastrointestinal ulcer (peptic) or erosion +C1384631|T020|HT|K28|ICD10|Gastrojejunal ulcer|Gastrojejunal ulcer +C1384631|T020|HT|K28|ICD10CM|Gastrojejunal ulcer|Gastrojejunal ulcer +C1384631|T020|AB|K28|ICD10CM|Gastrojejunal ulcer|Gastrojejunal ulcer +C4290204|T047|ET|K28|ICD10CM|gastrojejunal ulcer (peptic) or erosion|gastrojejunal ulcer (peptic) or erosion +C4290205|T047|ET|K28|ICD10CM|jejunal ulcer (peptic) or erosion|jejunal ulcer (peptic) or erosion +C4290206|T020|ET|K28|ICD10CM|marginal ulcer (peptic) or erosion|marginal ulcer (peptic) or erosion +C4290207|T047|ET|K28|ICD10CM|stomal ulcer (peptic) or erosion|stomal ulcer (peptic) or erosion +C0156042|T047|PT|K28.0|ICD10CM|Acute gastrojejunal ulcer with hemorrhage|Acute gastrojejunal ulcer with hemorrhage +C0156042|T047|AB|K28.0|ICD10CM|Acute gastrojejunal ulcer with hemorrhage|Acute gastrojejunal ulcer with hemorrhage +C0156042|T047|PT|K28.0|ICD10|Gastrojejunal ulcer, acute with haemorrhage|Gastrojejunal ulcer, acute with haemorrhage +C0156042|T047|PT|K28.0|ICD10AE|Gastrojejunal ulcer, acute with hemorrhage|Gastrojejunal ulcer, acute with hemorrhage +C0156045|T047|PT|K28.1|ICD10CM|Acute gastrojejunal ulcer with perforation|Acute gastrojejunal ulcer with perforation +C0156045|T047|AB|K28.1|ICD10CM|Acute gastrojejunal ulcer with perforation|Acute gastrojejunal ulcer with perforation +C0156045|T047|PT|K28.1|ICD10|Gastrojejunal ulcer, acute with perforation|Gastrojejunal ulcer, acute with perforation +C0156048|T047|AB|K28.2|ICD10CM|Acute gastrojejunal ulcer w both hemorrhage and perforation|Acute gastrojejunal ulcer w both hemorrhage and perforation +C0156048|T047|PT|K28.2|ICD10CM|Acute gastrojejunal ulcer with both hemorrhage and perforation|Acute gastrojejunal ulcer with both hemorrhage and perforation +C0156048|T047|PT|K28.2|ICD10|Gastrojejunal ulcer, acute with both haemorrhage and perforation|Gastrojejunal ulcer, acute with both haemorrhage and perforation +C0156048|T047|PT|K28.2|ICD10AE|Gastrojejunal ulcer, acute with both hemorrhage and perforation|Gastrojejunal ulcer, acute with both hemorrhage and perforation +C0392501|T020|AB|K28.3|ICD10CM|Acute gastrojejunal ulcer without hemorrhage or perforation|Acute gastrojejunal ulcer without hemorrhage or perforation +C0392501|T020|PT|K28.3|ICD10CM|Acute gastrojejunal ulcer without hemorrhage or perforation|Acute gastrojejunal ulcer without hemorrhage or perforation +C0392501|T020|PT|K28.3|ICD10|Gastrojejunal ulcer, acute without haemorrhage or perforation|Gastrojejunal ulcer, acute without haemorrhage or perforation +C0392501|T020|PT|K28.3|ICD10AE|Gastrojejunal ulcer, acute without hemorrhage or perforation|Gastrojejunal ulcer, acute without hemorrhage or perforation +C0156054|T047|PT|K28.4|ICD10CM|Chronic or unspecified gastrojejunal ulcer with hemorrhage|Chronic or unspecified gastrojejunal ulcer with hemorrhage +C0156054|T047|AB|K28.4|ICD10CM|Chronic or unspecified gastrojejunal ulcer with hemorrhage|Chronic or unspecified gastrojejunal ulcer with hemorrhage +C0156054|T047|PT|K28.4|ICD10|Gastrojejunal ulcer, chronic or unspecified with haemorrhage|Gastrojejunal ulcer, chronic or unspecified with haemorrhage +C0156054|T047|PT|K28.4|ICD10AE|Gastrojejunal ulcer, chronic or unspecified with hemorrhage|Gastrojejunal ulcer, chronic or unspecified with hemorrhage +C0156057|T047|AB|K28.5|ICD10CM|Chronic or unspecified gastrojejunal ulcer with perforation|Chronic or unspecified gastrojejunal ulcer with perforation +C0156057|T047|PT|K28.5|ICD10CM|Chronic or unspecified gastrojejunal ulcer with perforation|Chronic or unspecified gastrojejunal ulcer with perforation +C0156057|T047|PT|K28.5|ICD10|Gastrojejunal ulcer, chronic or unspecified with perforation|Gastrojejunal ulcer, chronic or unspecified with perforation +C0494735|T047|AB|K28.6|ICD10CM|Chronic or unsp gastrojejunal ulcer w both hemor and perf|Chronic or unsp gastrojejunal ulcer w both hemor and perf +C0494735|T047|PT|K28.6|ICD10CM|Chronic or unspecified gastrojejunal ulcer with both hemorrhage and perforation|Chronic or unspecified gastrojejunal ulcer with both hemorrhage and perforation +C0494735|T047|PT|K28.6|ICD10|Gastrojejunal ulcer, chronic or unspecified with both haemorrhage and perforation|Gastrojejunal ulcer, chronic or unspecified with both haemorrhage and perforation +C0494735|T047|PT|K28.6|ICD10AE|Gastrojejunal ulcer, chronic or unspecified with both hemorrhage and perforation|Gastrojejunal ulcer, chronic or unspecified with both hemorrhage and perforation +C0392502|T020|AB|K28.7|ICD10CM|Chronic gastrojejunal ulcer w/o hemorrhage or perforation|Chronic gastrojejunal ulcer w/o hemorrhage or perforation +C0392502|T020|PT|K28.7|ICD10CM|Chronic gastrojejunal ulcer without hemorrhage or perforation|Chronic gastrojejunal ulcer without hemorrhage or perforation +C0392502|T020|PT|K28.7|ICD10|Gastrojejunal ulcer, chronic without haemorrhage or perforation|Gastrojejunal ulcer, chronic without haemorrhage or perforation +C0392502|T020|PT|K28.7|ICD10AE|Gastrojejunal ulcer, chronic without hemorrhage or perforation|Gastrojejunal ulcer, chronic without hemorrhage or perforation +C0494736|T047|AB|K28.9|ICD10CM|Gastrojejunal ulcer, unsp as acute or chr, w/o hemor or perf|Gastrojejunal ulcer, unsp as acute or chr, w/o hemor or perf +C0494736|T047|PT|K28.9|ICD10|Gastrojejunal ulcer, unspecified as acute or chronic, without haemorrhage or perforation|Gastrojejunal ulcer, unspecified as acute or chronic, without haemorrhage or perforation +C0494736|T047|PT|K28.9|ICD10CM|Gastrojejunal ulcer, unspecified as acute or chronic, without hemorrhage or perforation|Gastrojejunal ulcer, unspecified as acute or chronic, without hemorrhage or perforation +C0494736|T047|PT|K28.9|ICD10AE|Gastrojejunal ulcer, unspecified as acute or chronic, without hemorrhage or perforation|Gastrojejunal ulcer, unspecified as acute or chronic, without hemorrhage or perforation +C0267166|T047|HT|K29|ICD10CM|Gastritis and duodenitis|Gastritis and duodenitis +C0267166|T047|AB|K29|ICD10CM|Gastritis and duodenitis|Gastritis and duodenitis +C0267166|T047|HT|K29|ICD10|Gastritis and duodenitis|Gastritis and duodenitis +C0149518|T047|HT|K29.0|ICD10CM|Acute gastritis|Acute gastritis +C0149518|T047|AB|K29.0|ICD10CM|Acute gastritis|Acute gastritis +C2243087|T047|PT|K29.0|ICD10|Acute haemorrhagic gastritis|Acute haemorrhagic gastritis +C2243087|T047|PT|K29.0|ICD10AE|Acute hemorrhagic gastritis|Acute hemorrhagic gastritis +C2887659|T047|AB|K29.00|ICD10CM|Acute gastritis without bleeding|Acute gastritis without bleeding +C2887659|T047|PT|K29.00|ICD10CM|Acute gastritis without bleeding|Acute gastritis without bleeding +C2887660|T047|AB|K29.01|ICD10CM|Acute gastritis with bleeding|Acute gastritis with bleeding +C2887660|T047|PT|K29.01|ICD10CM|Acute gastritis with bleeding|Acute gastritis with bleeding +C0348729|T047|PT|K29.1|ICD10|Other acute gastritis|Other acute gastritis +C0156076|T047|PT|K29.2|ICD10|Alcoholic gastritis|Alcoholic gastritis +C0156076|T047|HT|K29.2|ICD10CM|Alcoholic gastritis|Alcoholic gastritis +C0156076|T047|AB|K29.2|ICD10CM|Alcoholic gastritis|Alcoholic gastritis +C2887661|T047|AB|K29.20|ICD10CM|Alcoholic gastritis without bleeding|Alcoholic gastritis without bleeding +C2887661|T047|PT|K29.20|ICD10CM|Alcoholic gastritis without bleeding|Alcoholic gastritis without bleeding +C2887662|T047|AB|K29.21|ICD10CM|Alcoholic gastritis with bleeding|Alcoholic gastritis with bleeding +C2887662|T047|PT|K29.21|ICD10CM|Alcoholic gastritis with bleeding|Alcoholic gastritis with bleeding +C0348893|T047|PT|K29.3|ICD10|Chronic superficial gastritis|Chronic superficial gastritis +C0348893|T047|HT|K29.3|ICD10CM|Chronic superficial gastritis|Chronic superficial gastritis +C0348893|T047|AB|K29.3|ICD10CM|Chronic superficial gastritis|Chronic superficial gastritis +C2887663|T047|AB|K29.30|ICD10CM|Chronic superficial gastritis without bleeding|Chronic superficial gastritis without bleeding +C2887663|T047|PT|K29.30|ICD10CM|Chronic superficial gastritis without bleeding|Chronic superficial gastritis without bleeding +C2887664|T047|AB|K29.31|ICD10CM|Chronic superficial gastritis with bleeding|Chronic superficial gastritis with bleeding +C2887664|T047|PT|K29.31|ICD10CM|Chronic superficial gastritis with bleeding|Chronic superficial gastritis with bleeding +C0017154|T047|PT|K29.4|ICD10|Chronic atrophic gastritis|Chronic atrophic gastritis +C0017154|T047|HT|K29.4|ICD10CM|Chronic atrophic gastritis|Chronic atrophic gastritis +C0017154|T047|AB|K29.4|ICD10CM|Chronic atrophic gastritis|Chronic atrophic gastritis +C0017154|T047|ET|K29.4|ICD10CM|Gastric atrophy|Gastric atrophy +C2887665|T047|AB|K29.40|ICD10CM|Chronic atrophic gastritis without bleeding|Chronic atrophic gastritis without bleeding +C2887665|T047|PT|K29.40|ICD10CM|Chronic atrophic gastritis without bleeding|Chronic atrophic gastritis without bleeding +C2887666|T047|AB|K29.41|ICD10CM|Chronic atrophic gastritis with bleeding|Chronic atrophic gastritis with bleeding +C2887666|T047|PT|K29.41|ICD10CM|Chronic atrophic gastritis with bleeding|Chronic atrophic gastritis with bleeding +C0267146|T047|ET|K29.5|ICD10CM|Chronic antral gastritis|Chronic antral gastritis +C2887667|T047|ET|K29.5|ICD10CM|Chronic fundal gastritis|Chronic fundal gastritis +C0085695|T047|PT|K29.5|ICD10|Chronic gastritis, unspecified|Chronic gastritis, unspecified +C0085695|T047|AB|K29.5|ICD10CM|Unspecified chronic gastritis|Unspecified chronic gastritis +C0085695|T047|HT|K29.5|ICD10CM|Unspecified chronic gastritis|Unspecified chronic gastritis +C2887668|T047|AB|K29.50|ICD10CM|Unspecified chronic gastritis without bleeding|Unspecified chronic gastritis without bleeding +C2887668|T047|PT|K29.50|ICD10CM|Unspecified chronic gastritis without bleeding|Unspecified chronic gastritis without bleeding +C2887669|T047|AB|K29.51|ICD10CM|Unspecified chronic gastritis with bleeding|Unspecified chronic gastritis with bleeding +C2887669|T047|PT|K29.51|ICD10CM|Unspecified chronic gastritis with bleeding|Unspecified chronic gastritis with bleeding +C0017155|T047|ET|K29.6|ICD10CM|Giant hypertrophic gastritis|Giant hypertrophic gastritis +C1112577|T047|ET|K29.6|ICD10CM|Granulomatous gastritis|Granulomatous gastritis +C0017155|T047|ET|K29.6|ICD10CM|Ménétrier's disease|Ménétrier's disease +C0348730|T047|PT|K29.6|ICD10|Other gastritis|Other gastritis +C0348730|T047|HT|K29.6|ICD10CM|Other gastritis|Other gastritis +C0348730|T047|AB|K29.6|ICD10CM|Other gastritis|Other gastritis +C2887670|T047|AB|K29.60|ICD10CM|Other gastritis without bleeding|Other gastritis without bleeding +C2887670|T047|PT|K29.60|ICD10CM|Other gastritis without bleeding|Other gastritis without bleeding +C2887671|T047|AB|K29.61|ICD10CM|Other gastritis with bleeding|Other gastritis with bleeding +C2887671|T047|PT|K29.61|ICD10CM|Other gastritis with bleeding|Other gastritis with bleeding +C0017152|T047|HT|K29.7|ICD10CM|Gastritis, unspecified|Gastritis, unspecified +C0017152|T047|AB|K29.7|ICD10CM|Gastritis, unspecified|Gastritis, unspecified +C0017152|T047|PT|K29.7|ICD10|Gastritis, unspecified|Gastritis, unspecified +C2887672|T047|AB|K29.70|ICD10CM|Gastritis, unspecified, without bleeding|Gastritis, unspecified, without bleeding +C2887672|T047|PT|K29.70|ICD10CM|Gastritis, unspecified, without bleeding|Gastritis, unspecified, without bleeding +C2887673|T047|AB|K29.71|ICD10CM|Gastritis, unspecified, with bleeding|Gastritis, unspecified, with bleeding +C2887673|T047|PT|K29.71|ICD10CM|Gastritis, unspecified, with bleeding|Gastritis, unspecified, with bleeding +C0013298|T047|PT|K29.8|ICD10|Duodenitis|Duodenitis +C0013298|T047|HT|K29.8|ICD10CM|Duodenitis|Duodenitis +C0013298|T047|AB|K29.8|ICD10CM|Duodenitis|Duodenitis +C2887674|T047|PT|K29.80|ICD10CM|Duodenitis without bleeding|Duodenitis without bleeding +C2887674|T047|AB|K29.80|ICD10CM|Duodenitis without bleeding|Duodenitis without bleeding +C0341245|T047|PT|K29.81|ICD10CM|Duodenitis with bleeding|Duodenitis with bleeding +C0341245|T047|AB|K29.81|ICD10CM|Duodenitis with bleeding|Duodenitis with bleeding +C0267166|T047|HT|K29.9|ICD10CM|Gastroduodenitis, unspecified|Gastroduodenitis, unspecified +C0267166|T047|AB|K29.9|ICD10CM|Gastroduodenitis, unspecified|Gastroduodenitis, unspecified +C0267166|T047|PT|K29.9|ICD10|Gastroduodenitis, unspecified|Gastroduodenitis, unspecified +C2887676|T047|AB|K29.90|ICD10CM|Gastroduodenitis, unspecified, without bleeding|Gastroduodenitis, unspecified, without bleeding +C2887676|T047|PT|K29.90|ICD10CM|Gastroduodenitis, unspecified, without bleeding|Gastroduodenitis, unspecified, without bleeding +C2887677|T047|AB|K29.91|ICD10CM|Gastroduodenitis, unspecified, with bleeding|Gastroduodenitis, unspecified, with bleeding +C2887677|T047|PT|K29.91|ICD10CM|Gastroduodenitis, unspecified, with bleeding|Gastroduodenitis, unspecified, with bleeding +C0013395|T184|PT|K30|ICD10|Dyspepsia|Dyspepsia +C0267167|T033|PT|K30|ICD10CM|Functional dyspepsia|Functional dyspepsia +C0267167|T033|AB|K30|ICD10CM|Functional dyspepsia|Functional dyspepsia +C0013395|T184|ET|K30|ICD10CM|Indigestion|Indigestion +C0156084|T047|ET|K31|ICD10CM|functional disorders of stomach|functional disorders of stomach +C0156086|T047|HT|K31|ICD10CM|Other diseases of stomach and duodenum|Other diseases of stomach and duodenum +C0156086|T047|AB|K31|ICD10CM|Other diseases of stomach and duodenum|Other diseases of stomach and duodenum +C0156086|T047|HT|K31|ICD10|Other diseases of stomach and duodenum|Other diseases of stomach and duodenum +C0149823|T033|PT|K31.0|ICD10|Acute dilatation of stomach|Acute dilatation of stomach +C0149823|T033|PT|K31.0|ICD10CM|Acute dilatation of stomach|Acute dilatation of stomach +C0149823|T033|AB|K31.0|ICD10CM|Acute dilatation of stomach|Acute dilatation of stomach +C0149823|T033|ET|K31.0|ICD10CM|Acute distention of stomach|Acute distention of stomach +C2937286|T047|PT|K31.1|ICD10|Adult hypertrophic pyloric stenosis|Adult hypertrophic pyloric stenosis +C2937286|T047|PT|K31.1|ICD10CM|Adult hypertrophic pyloric stenosis|Adult hypertrophic pyloric stenosis +C2937286|T047|AB|K31.1|ICD10CM|Adult hypertrophic pyloric stenosis|Adult hypertrophic pyloric stenosis +C0034194|T046|ET|K31.1|ICD10CM|Pyloric stenosis NOS|Pyloric stenosis NOS +C0267183|T047|PT|K31.2|ICD10CM|Hourglass stricture and stenosis of stomach|Hourglass stricture and stenosis of stomach +C0267183|T047|AB|K31.2|ICD10CM|Hourglass stricture and stenosis of stomach|Hourglass stricture and stenosis of stomach +C0267183|T047|PT|K31.2|ICD10|Hourglass stricture and stenosis of stomach|Hourglass stricture and stenosis of stomach +C0494739|T047|PT|K31.3|ICD10|Pylorospasm, not elsewhere classified|Pylorospasm, not elsewhere classified +C0494739|T047|PT|K31.3|ICD10CM|Pylorospasm, not elsewhere classified|Pylorospasm, not elsewhere classified +C0494739|T047|AB|K31.3|ICD10CM|Pylorospasm, not elsewhere classified|Pylorospasm, not elsewhere classified +C0038355|T190|PT|K31.4|ICD10|Gastric diverticulum|Gastric diverticulum +C0038355|T190|PT|K31.4|ICD10CM|Gastric diverticulum|Gastric diverticulum +C0038355|T190|AB|K31.4|ICD10CM|Gastric diverticulum|Gastric diverticulum +C1393783|T047|ET|K31.5|ICD10CM|Constriction of duodenum|Constriction of duodenum +C0156087|T047|ET|K31.5|ICD10CM|Duodenal ileus (chronic)|Duodenal ileus (chronic) +C0013292|T047|PT|K31.5|ICD10|Obstruction of duodenum|Obstruction of duodenum +C0013292|T047|PT|K31.5|ICD10CM|Obstruction of duodenum|Obstruction of duodenum +C0013292|T047|AB|K31.5|ICD10CM|Obstruction of duodenum|Obstruction of duodenum +C0238093|T190|ET|K31.5|ICD10CM|Stenosis of duodenum|Stenosis of duodenum +C0267353|T190|ET|K31.5|ICD10CM|Stricture of duodenum|Stricture of duodenum +C0267354|T047|ET|K31.5|ICD10CM|Volvulus of duodenum|Volvulus of duodenum +C0267180|T190|PT|K31.6|ICD10CM|Fistula of stomach and duodenum|Fistula of stomach and duodenum +C0267180|T190|AB|K31.6|ICD10CM|Fistula of stomach and duodenum|Fistula of stomach and duodenum +C0267180|T190|PT|K31.6|ICD10|Fistula of stomach and duodenum|Fistula of stomach and duodenum +C0267179|T047|ET|K31.6|ICD10CM|Gastrocolic fistula|Gastrocolic fistula +C0267181|T047|ET|K31.6|ICD10CM|Gastrojejunocolic fistula|Gastrojejunocolic fistula +C0837225|T047|PT|K31.7|ICD10CM|Polyp of stomach and duodenum|Polyp of stomach and duodenum +C0837225|T047|AB|K31.7|ICD10CM|Polyp of stomach and duodenum|Polyp of stomach and duodenum +C0837225|T047|PT|K31.7|ICD10|Polyp of stomach and duodenum|Polyp of stomach and duodenum +C0348731|T047|HT|K31.8|ICD10CM|Other specified diseases of stomach and duodenum|Other specified diseases of stomach and duodenum +C0348731|T047|AB|K31.8|ICD10CM|Other specified diseases of stomach and duodenum|Other specified diseases of stomach and duodenum +C0348731|T047|PT|K31.8|ICD10|Other specified diseases of stomach and duodenum|Other specified diseases of stomach and duodenum +C2118133|T047|AB|K31.81|ICD10CM|Angiodysplasia of stomach and duodenum|Angiodysplasia of stomach and duodenum +C2118133|T047|HT|K31.81|ICD10CM|Angiodysplasia of stomach and duodenum|Angiodysplasia of stomach and duodenum +C2887678|T047|AB|K31.811|ICD10CM|Angiodysplasia of stomach and duodenum with bleeding|Angiodysplasia of stomach and duodenum with bleeding +C2887678|T047|PT|K31.811|ICD10CM|Angiodysplasia of stomach and duodenum with bleeding|Angiodysplasia of stomach and duodenum with bleeding +C2118133|T047|ET|K31.819|ICD10CM|Angiodysplasia of stomach and duodenum NOS|Angiodysplasia of stomach and duodenum NOS +C2887679|T047|AB|K31.819|ICD10CM|Angiodysplasia of stomach and duodenum without bleeding|Angiodysplasia of stomach and duodenum without bleeding +C2887679|T047|PT|K31.819|ICD10CM|Angiodysplasia of stomach and duodenum without bleeding|Angiodysplasia of stomach and duodenum without bleeding +C1135229|T047|AB|K31.82|ICD10CM|Dieulafoy lesion (hemorrhagic) of stomach and duodenum|Dieulafoy lesion (hemorrhagic) of stomach and duodenum +C1135229|T047|PT|K31.82|ICD10CM|Dieulafoy lesion (hemorrhagic) of stomach and duodenum|Dieulafoy lesion (hemorrhagic) of stomach and duodenum +C0001075|T046|PT|K31.83|ICD10CM|Achlorhydria|Achlorhydria +C0001075|T046|AB|K31.83|ICD10CM|Achlorhydria|Achlorhydria +C0152020|T047|ET|K31.84|ICD10CM|Gastroparalysis|Gastroparalysis +C0152020|T047|PT|K31.84|ICD10CM|Gastroparesis|Gastroparesis +C0152020|T047|AB|K31.84|ICD10CM|Gastroparesis|Gastroparesis +C0156086|T047|AB|K31.89|ICD10CM|Other diseases of stomach and duodenum|Other diseases of stomach and duodenum +C0156086|T047|PT|K31.89|ICD10CM|Other diseases of stomach and duodenum|Other diseases of stomach and duodenum +C0494741|T047|PT|K31.9|ICD10|Disease of stomach and duodenum, unspecified|Disease of stomach and duodenum, unspecified +C0494741|T047|PT|K31.9|ICD10CM|Disease of stomach and duodenum, unspecified|Disease of stomach and duodenum, unspecified +C0494741|T047|AB|K31.9|ICD10CM|Disease of stomach and duodenum, unspecified|Disease of stomach and duodenum, unspecified +C0085693|T047|HT|K35|ICD10CM|Acute appendicitis|Acute appendicitis +C0085693|T047|AB|K35|ICD10CM|Acute appendicitis|Acute appendicitis +C0085693|T047|HT|K35|ICD10|Acute appendicitis|Acute appendicitis +C0267613|T047|HT|K35-K38|ICD10CM|Diseases of appendix (K35-K38)|Diseases of appendix (K35-K38) +C0267613|T047|HT|K35-K38.9|ICD10|Diseases of appendix|Diseases of appendix +C0156092|T047|PT|K35.0|ICD10|Acute appendicitis with generalized peritonitis|Acute appendicitis with generalized peritonitis +C0156093|T047|PT|K35.1|ICD10|Acute appendicitis with peritoneal abscess|Acute appendicitis with peritoneal abscess +C0156092|T047|AB|K35.2|ICD10CM|Acute appendicitis with generalized peritonitis|Acute appendicitis with generalized peritonitis +C0156092|T047|HT|K35.2|ICD10CM|Acute appendicitis with generalized peritonitis|Acute appendicitis with generalized peritonitis +C0156092|T047|ET|K35.20|ICD10CM|(Acute) appendicitis with generalized peritonitis NOS|(Acute) appendicitis with generalized peritonitis NOS +C4702811|T047|AB|K35.20|ICD10CM|Acute appendicitis with gen peritonitis, without abscess|Acute appendicitis with gen peritonitis, without abscess +C4702811|T047|PT|K35.20|ICD10CM|Acute appendicitis with generalized peritonitis, without abscess|Acute appendicitis with generalized peritonitis, without abscess +C4702810|T047|AB|K35.21|ICD10CM|Acute appendicitis with gen peritonitis, with abscess|Acute appendicitis with gen peritonitis, with abscess +C4702810|T047|PT|K35.21|ICD10CM|Acute appendicitis with generalized peritonitis, with abscess|Acute appendicitis with generalized peritonitis, with abscess +C2887682|T047|AB|K35.3|ICD10CM|Acute appendicitis with localized peritonitis|Acute appendicitis with localized peritonitis +C2887682|T047|HT|K35.3|ICD10CM|Acute appendicitis with localized peritonitis|Acute appendicitis with localized peritonitis +C4702809|T047|AB|K35.30|ICD10CM|Acute appendicitis with loc peritonitis, w/o perf or gangr|Acute appendicitis with loc peritonitis, w/o perf or gangr +C2887682|T047|ET|K35.30|ICD10CM|Acute appendicitis with localized peritonitis NOS|Acute appendicitis with localized peritonitis NOS +C4702809|T047|PT|K35.30|ICD10CM|Acute appendicitis with localized peritonitis, without perforation or gangrene|Acute appendicitis with localized peritonitis, without perforation or gangrene +C4702805|T047|AB|K35.31|ICD10CM|Acute appendicitis with loc peritonitis and gangr, w/o perf|Acute appendicitis with loc peritonitis and gangr, w/o perf +C4702805|T047|PT|K35.31|ICD10CM|Acute appendicitis with localized peritonitis and gangrene, without perforation|Acute appendicitis with localized peritonitis and gangrene, without perforation +C0741202|T047|ET|K35.32|ICD10CM|(Acute) appendicitis with perforation NOS|(Acute) appendicitis with perforation NOS +C4702808|T047|AB|K35.32|ICD10CM|Acute appendicitis with perf and loc peritonitis, w/o abscs|Acute appendicitis with perf and loc peritonitis, w/o abscs +C4702808|T047|PT|K35.32|ICD10CM|Acute appendicitis with perforation and localized peritonitis, without abscess|Acute appendicitis with perforation and localized peritonitis, without abscess +C0267628|T047|ET|K35.32|ICD10CM|Perforated appendix NOS|Perforated appendix NOS +C4718785|T047|ET|K35.32|ICD10CM|Ruptured appendix (with localized peritonitis) NOS|Ruptured appendix (with localized peritonitis) NOS +C0156093|T047|ET|K35.33|ICD10CM|(Acute) appendicitis with (peritoneal) abscess NOS|(Acute) appendicitis with (peritoneal) abscess NOS +C4702807|T047|AB|K35.33|ICD10CM|Acute appendicitis with perf and loc peritonitis, with abscs|Acute appendicitis with perf and loc peritonitis, with abscs +C4702807|T047|PT|K35.33|ICD10CM|Acute appendicitis with perforation and localized peritonitis, with abscess|Acute appendicitis with perforation and localized peritonitis, with abscess +C4718786|T047|ET|K35.33|ICD10CM|Ruptured appendix with localized peritonitis and abscess|Ruptured appendix with localized peritonitis and abscess +C2887683|T047|AB|K35.8|ICD10CM|Other and unspecified acute appendicitis|Other and unspecified acute appendicitis +C2887683|T047|HT|K35.8|ICD10CM|Other and unspecified acute appendicitis|Other and unspecified acute appendicitis +C0085693|T047|ET|K35.80|ICD10CM|Acute appendicitis NOS|Acute appendicitis NOS +C2887684|T047|ET|K35.80|ICD10CM|Acute appendicitis without (localized) (generalized) peritonitis|Acute appendicitis without (localized) (generalized) peritonitis +C0085693|T047|AB|K35.80|ICD10CM|Unspecified acute appendicitis|Unspecified acute appendicitis +C0085693|T047|PT|K35.80|ICD10CM|Unspecified acute appendicitis|Unspecified acute appendicitis +C2887685|T047|AB|K35.89|ICD10CM|Other acute appendicitis|Other acute appendicitis +C2887685|T047|HT|K35.89|ICD10CM|Other acute appendicitis|Other acute appendicitis +C4703280|T047|AB|K35.890|ICD10CM|Other acute appendicitis without perforation or gangrene|Other acute appendicitis without perforation or gangrene +C4703280|T047|PT|K35.890|ICD10CM|Other acute appendicitis without perforation or gangrene|Other acute appendicitis without perforation or gangrene +C4718787|T047|ET|K35.891|ICD10CM|(Acute) appendicitis with gangrene NOS|(Acute) appendicitis with gangrene NOS +C4552695|T047|AB|K35.891|ICD10CM|Other acute appendicitis without perforation, with gangrene|Other acute appendicitis without perforation, with gangrene +C4552695|T047|PT|K35.891|ICD10CM|Other acute appendicitis without perforation, with gangrene|Other acute appendicitis without perforation, with gangrene +C0085693|T047|PT|K35.9|ICD10|Acute appendicitis, unspecified|Acute appendicitis, unspecified +C0267614|T047|ET|K36|ICD10CM|Chronic appendicitis|Chronic appendicitis +C0156095|T047|PT|K36|ICD10|Other appendicitis|Other appendicitis +C0156095|T047|PT|K36|ICD10CM|Other appendicitis|Other appendicitis +C0156095|T047|AB|K36|ICD10CM|Other appendicitis|Other appendicitis +C0267615|T047|ET|K36|ICD10CM|Recurrent appendicitis|Recurrent appendicitis +C0003615|T047|PT|K37|ICD10|Unspecified appendicitis|Unspecified appendicitis +C0003615|T047|PT|K37|ICD10CM|Unspecified appendicitis|Unspecified appendicitis +C0003615|T047|AB|K37|ICD10CM|Unspecified appendicitis|Unspecified appendicitis +C0156098|T047|HT|K38|ICD10CM|Other diseases of appendix|Other diseases of appendix +C0156098|T047|AB|K38|ICD10CM|Other diseases of appendix|Other diseases of appendix +C0156098|T047|HT|K38|ICD10|Other diseases of appendix|Other diseases of appendix +C0156097|T046|PT|K38.0|ICD10|Hyperplasia of appendix|Hyperplasia of appendix +C0156097|T046|PT|K38.0|ICD10CM|Hyperplasia of appendix|Hyperplasia of appendix +C0156097|T046|AB|K38.0|ICD10CM|Hyperplasia of appendix|Hyperplasia of appendix +C0267634|T047|PT|K38.1|ICD10CM|Appendicular concretions|Appendicular concretions +C0267634|T047|AB|K38.1|ICD10CM|Appendicular concretions|Appendicular concretions +C0267634|T047|PT|K38.1|ICD10|Appendicular concretions|Appendicular concretions +C0267637|T047|ET|K38.1|ICD10CM|Fecalith of appendix|Fecalith of appendix +C0267637|T047|ET|K38.1|ICD10CM|Stercolith of appendix|Stercolith of appendix +C0267636|T033|PT|K38.2|ICD10CM|Diverticulum of appendix|Diverticulum of appendix +C0267636|T033|AB|K38.2|ICD10CM|Diverticulum of appendix|Diverticulum of appendix +C0267636|T033|PT|K38.2|ICD10|Diverticulum of appendix|Diverticulum of appendix +C0267635|T190|PT|K38.3|ICD10|Fistula of appendix|Fistula of appendix +C0267635|T190|PT|K38.3|ICD10CM|Fistula of appendix|Fistula of appendix +C0267635|T190|AB|K38.3|ICD10CM|Fistula of appendix|Fistula of appendix +C0267639|T047|ET|K38.8|ICD10CM|Intussusception of appendix|Intussusception of appendix +C0477465|T047|PT|K38.8|ICD10CM|Other specified diseases of appendix|Other specified diseases of appendix +C0477465|T047|AB|K38.8|ICD10CM|Other specified diseases of appendix|Other specified diseases of appendix +C0477465|T047|PT|K38.8|ICD10|Other specified diseases of appendix|Other specified diseases of appendix +C0267613|T047|PT|K38.9|ICD10|Disease of appendix, unspecified|Disease of appendix, unspecified +C0267613|T047|PT|K38.9|ICD10CM|Disease of appendix, unspecified|Disease of appendix, unspecified +C0267613|T047|AB|K38.9|ICD10CM|Disease of appendix, unspecified|Disease of appendix, unspecified +C0401063|T047|ET|K40|ICD10CM|bubonocele|bubonocele +C0019295|T047|ET|K40|ICD10CM|direct inguinal hernia|direct inguinal hernia +C0860251|T047|ET|K40|ICD10CM|double inguinal hernia|double inguinal hernia +C0019296|T047|ET|K40|ICD10CM|indirect inguinal hernia|indirect inguinal hernia +C0019294|T190|HT|K40|ICD10CM|Inguinal hernia|Inguinal hernia +C0019294|T190|AB|K40|ICD10CM|Inguinal hernia|Inguinal hernia +C0019294|T190|HT|K40|ICD10|Inguinal hernia|Inguinal hernia +C0019294|T190|ET|K40|ICD10CM|inguinal hernia NOS|inguinal hernia NOS +C0019296|T047|ET|K40|ICD10CM|oblique inguinal hernia|oblique inguinal hernia +C0019319|T047|ET|K40|ICD10CM|scrotal hernia|scrotal hernia +C4290208|T020|ET|K40-K46|ICD10CM|acquired hernia|acquired hernia +C4290209|T019|ET|K40-K46|ICD10CM|congenital [except diaphragmatic or hiatus] hernia|congenital [except diaphragmatic or hiatus] hernia +C0019270|T190|HT|K40-K46|ICD10CM|Hernia (K40-K46)|Hernia (K40-K46) +C0281961|T020|ET|K40-K46|ICD10CM|recurrent hernia|recurrent hernia +C0019270|T190|HT|K40-K46.9|ICD10|Hernia|Hernia +C0401080|T020|AB|K40.0|ICD10CM|Bilateral inguinal hernia, with obstruction, w/o gangrene|Bilateral inguinal hernia, with obstruction, w/o gangrene +C0401080|T020|HT|K40.0|ICD10CM|Bilateral inguinal hernia, with obstruction, without gangrene|Bilateral inguinal hernia, with obstruction, without gangrene +C0401080|T020|PT|K40.0|ICD10|Bilateral inguinal hernia, with obstruction, without gangrene|Bilateral inguinal hernia, with obstruction, without gangrene +C2887688|T020|ET|K40.0|ICD10CM|Incarcerated inguinal hernia (bilateral) without gangrene|Incarcerated inguinal hernia (bilateral) without gangrene +C2887689|T190|ET|K40.0|ICD10CM|Inguinal hernia (bilateral) causing obstruction without gangrene|Inguinal hernia (bilateral) causing obstruction without gangrene +C2887690|T190|ET|K40.0|ICD10CM|Irreducible inguinal hernia (bilateral) without gangrene|Irreducible inguinal hernia (bilateral) without gangrene +C2887691|T190|ET|K40.0|ICD10CM|Strangulated inguinal hernia (bilateral) without gangrene|Strangulated inguinal hernia (bilateral) without gangrene +C0837226|T020|AB|K40.00|ICD10CM|Bi inguinal hernia, w obst, w/o gangrene, not spcf as recur|Bi inguinal hernia, w obst, w/o gangrene, not spcf as recur +C0401080|T020|ET|K40.00|ICD10CM|Bilateral inguinal hernia, with obstruction, without gangrene NOS|Bilateral inguinal hernia, with obstruction, without gangrene NOS +C0837226|T020|PT|K40.00|ICD10CM|Bilateral inguinal hernia, with obstruction, without gangrene, not specified as recurrent|Bilateral inguinal hernia, with obstruction, without gangrene, not specified as recurrent +C0554121|T020|AB|K40.01|ICD10CM|Bilateral inguinal hernia, w obst, w/o gangrene, recurrent|Bilateral inguinal hernia, w obst, w/o gangrene, recurrent +C0554121|T020|PT|K40.01|ICD10CM|Bilateral inguinal hernia, with obstruction, without gangrene, recurrent|Bilateral inguinal hernia, with obstruction, without gangrene, recurrent +C0156102|T047|PT|K40.1|ICD10|Bilateral inguinal hernia, with gangrene|Bilateral inguinal hernia, with gangrene +C0156102|T190|PT|K40.1|ICD10|Bilateral inguinal hernia, with gangrene|Bilateral inguinal hernia, with gangrene +C0156102|T047|HT|K40.1|ICD10CM|Bilateral inguinal hernia, with gangrene|Bilateral inguinal hernia, with gangrene +C0156102|T190|HT|K40.1|ICD10CM|Bilateral inguinal hernia, with gangrene|Bilateral inguinal hernia, with gangrene +C0156102|T047|AB|K40.1|ICD10CM|Bilateral inguinal hernia, with gangrene|Bilateral inguinal hernia, with gangrene +C0156102|T190|AB|K40.1|ICD10CM|Bilateral inguinal hernia, with gangrene|Bilateral inguinal hernia, with gangrene +C0375354|T020|AB|K40.10|ICD10CM|Bi inguinal hernia, w gangrene, not specified as recurrent|Bi inguinal hernia, w gangrene, not specified as recurrent +C0156102|T047|ET|K40.10|ICD10CM|Bilateral inguinal hernia, with gangrene NOS|Bilateral inguinal hernia, with gangrene NOS +C0156102|T190|ET|K40.10|ICD10CM|Bilateral inguinal hernia, with gangrene NOS|Bilateral inguinal hernia, with gangrene NOS +C0375354|T020|PT|K40.10|ICD10CM|Bilateral inguinal hernia, with gangrene, not specified as recurrent|Bilateral inguinal hernia, with gangrene, not specified as recurrent +C0156103|T047|PT|K40.11|ICD10CM|Bilateral inguinal hernia, with gangrene, recurrent|Bilateral inguinal hernia, with gangrene, recurrent +C0156103|T047|AB|K40.11|ICD10CM|Bilateral inguinal hernia, with gangrene, recurrent|Bilateral inguinal hernia, with gangrene, recurrent +C0494743|T020|PT|K40.2|ICD10|Bilateral inguinal hernia, without obstruction or gangrene|Bilateral inguinal hernia, without obstruction or gangrene +C0494743|T020|HT|K40.2|ICD10CM|Bilateral inguinal hernia, without obstruction or gangrene|Bilateral inguinal hernia, without obstruction or gangrene +C0494743|T020|AB|K40.2|ICD10CM|Bilateral inguinal hernia, without obstruction or gangrene|Bilateral inguinal hernia, without obstruction or gangrene +C0837228|T020|AB|K40.20|ICD10CM|Bi inguinal hernia, w/o obst or gangrene, not spcf as recur|Bi inguinal hernia, w/o obst or gangrene, not spcf as recur +C0267672|T047|ET|K40.20|ICD10CM|Bilateral inguinal hernia NOS|Bilateral inguinal hernia NOS +C0837228|T020|PT|K40.20|ICD10CM|Bilateral inguinal hernia, without obstruction or gangrene, not specified as recurrent|Bilateral inguinal hernia, without obstruction or gangrene, not specified as recurrent +C0837229|T020|AB|K40.21|ICD10CM|Bilateral inguinal hernia, w/o obst or gangrene, recurrent|Bilateral inguinal hernia, w/o obst or gangrene, recurrent +C0837229|T020|PT|K40.21|ICD10CM|Bilateral inguinal hernia, without obstruction or gangrene, recurrent|Bilateral inguinal hernia, without obstruction or gangrene, recurrent +C2887692|T020|ET|K40.3|ICD10CM|Incarcerated inguinal hernia (unilateral) without gangrene|Incarcerated inguinal hernia (unilateral) without gangrene +C2887693|T190|ET|K40.3|ICD10CM|Inguinal hernia (unilateral) causing obstruction without gangrene|Inguinal hernia (unilateral) causing obstruction without gangrene +C2887694|T190|ET|K40.3|ICD10CM|Irreducible inguinal hernia (unilateral) without gangrene|Irreducible inguinal hernia (unilateral) without gangrene +C2887695|T190|ET|K40.3|ICD10CM|Strangulated inguinal hernia (unilateral) without gangrene|Strangulated inguinal hernia (unilateral) without gangrene +C2887696|T190|AB|K40.3|ICD10CM|Unilateral inguinal hernia, with obstruction, w/o gangrene|Unilateral inguinal hernia, with obstruction, w/o gangrene +C2887696|T190|HT|K40.3|ICD10CM|Unilateral inguinal hernia, with obstruction, without gangrene|Unilateral inguinal hernia, with obstruction, without gangrene +C0554123|T020|PT|K40.3|ICD10|Unilateral or unspecified inguinal hernia, with obstruction, without gangrene|Unilateral or unspecified inguinal hernia, with obstruction, without gangrene +C0156104|T020|ET|K40.30|ICD10CM|Inguinal hernia, with obstruction NOS|Inguinal hernia, with obstruction NOS +C3648702|T047|AB|K40.30|ICD10CM|Unil inguinal hernia, w obst, w/o gangr, not spcf as recur|Unil inguinal hernia, w obst, w/o gangr, not spcf as recur +C2887696|T190|ET|K40.30|ICD10CM|Unilateral inguinal hernia, with obstruction, without gangrene NOS|Unilateral inguinal hernia, with obstruction, without gangrene NOS +C3648702|T047|PT|K40.30|ICD10CM|Unilateral inguinal hernia, with obstruction, without gangrene, not specified as recurrent|Unilateral inguinal hernia, with obstruction, without gangrene, not specified as recurrent +C3648701|T047|AB|K40.31|ICD10CM|Unilateral inguinal hernia, w obst, w/o gangrene, recurrent|Unilateral inguinal hernia, w obst, w/o gangrene, recurrent +C3648701|T047|PT|K40.31|ICD10CM|Unilateral inguinal hernia, with obstruction, without gangrene, recurrent|Unilateral inguinal hernia, with obstruction, without gangrene, recurrent +C0267674|T047|AB|K40.4|ICD10CM|Unilateral inguinal hernia, with gangrene|Unilateral inguinal hernia, with gangrene +C0267674|T047|HT|K40.4|ICD10CM|Unilateral inguinal hernia, with gangrene|Unilateral inguinal hernia, with gangrene +C0156100|T020|PT|K40.4|ICD10|Unilateral or unspecified inguinal hernia, with gangrene|Unilateral or unspecified inguinal hernia, with gangrene +C0156099|T047|ET|K40.40|ICD10CM|Inguinal hernia with gangrene NOS|Inguinal hernia with gangrene NOS +C2887699|T047|AB|K40.40|ICD10CM|Unil inguinal hernia, w gangrene, not specified as recurrent|Unil inguinal hernia, w gangrene, not specified as recurrent +C0267674|T047|ET|K40.40|ICD10CM|Unilateral inguinal hernia with gangrene NOS|Unilateral inguinal hernia with gangrene NOS +C2887699|T047|PT|K40.40|ICD10CM|Unilateral inguinal hernia, with gangrene, not specified as recurrent|Unilateral inguinal hernia, with gangrene, not specified as recurrent +C0267675|T047|PT|K40.41|ICD10CM|Unilateral inguinal hernia, with gangrene, recurrent|Unilateral inguinal hernia, with gangrene, recurrent +C0267675|T047|AB|K40.41|ICD10CM|Unilateral inguinal hernia, with gangrene, recurrent|Unilateral inguinal hernia, with gangrene, recurrent +C2887700|T190|AB|K40.9|ICD10CM|Unilateral inguinal hernia, without obstruction or gangrene|Unilateral inguinal hernia, without obstruction or gangrene +C2887700|T190|HT|K40.9|ICD10CM|Unilateral inguinal hernia, without obstruction or gangrene|Unilateral inguinal hernia, without obstruction or gangrene +C0494745|T020|PT|K40.9|ICD10|Unilateral or unspecified inguinal hernia, without obstruction or gangrene|Unilateral or unspecified inguinal hernia, without obstruction or gangrene +C0019294|T190|ET|K40.90|ICD10CM|Inguinal hernia NOS|Inguinal hernia NOS +C3648704|T047|AB|K40.90|ICD10CM|Unil inguinal hernia, w/o obst or gangr, not spcf as recur|Unil inguinal hernia, w/o obst or gangr, not spcf as recur +C0401067|T020|ET|K40.90|ICD10CM|Unilateral inguinal hernia NOS|Unilateral inguinal hernia NOS +C3648704|T047|PT|K40.90|ICD10CM|Unilateral inguinal hernia, without obstruction or gangrene, not specified as recurrent|Unilateral inguinal hernia, without obstruction or gangrene, not specified as recurrent +C3648703|T047|AB|K40.91|ICD10CM|Unilateral inguinal hernia, w/o obst or gangrene, recurrent|Unilateral inguinal hernia, w/o obst or gangrene, recurrent +C3648703|T047|PT|K40.91|ICD10CM|Unilateral inguinal hernia, without obstruction or gangrene, recurrent|Unilateral inguinal hernia, without obstruction or gangrene, recurrent +C0019288|T020|HT|K41|ICD10CM|Femoral hernia|Femoral hernia +C0019288|T020|AB|K41|ICD10CM|Femoral hernia|Femoral hernia +C0019288|T020|HT|K41|ICD10|Femoral hernia|Femoral hernia +C0156131|T020|PT|K41.0|ICD10|Bilateral femoral hernia, with obstruction, without gangrene|Bilateral femoral hernia, with obstruction, without gangrene +C0156131|T020|HT|K41.0|ICD10CM|Bilateral femoral hernia, with obstruction, without gangrene|Bilateral femoral hernia, with obstruction, without gangrene +C0156131|T020|AB|K41.0|ICD10CM|Bilateral femoral hernia, with obstruction, without gangrene|Bilateral femoral hernia, with obstruction, without gangrene +C2887703|T020|ET|K41.0|ICD10CM|Femoral hernia (bilateral) causing obstruction, without gangrene|Femoral hernia (bilateral) causing obstruction, without gangrene +C2887704|T020|ET|K41.0|ICD10CM|Incarcerated femoral hernia (bilateral), without gangrene|Incarcerated femoral hernia (bilateral), without gangrene +C2887705|T020|ET|K41.0|ICD10CM|Irreducible femoral hernia (bilateral), without gangrene|Irreducible femoral hernia (bilateral), without gangrene +C2887706|T190|ET|K41.0|ICD10CM|Strangulated femoral hernia (bilateral), without gangrene|Strangulated femoral hernia (bilateral), without gangrene +C3649116|T020|AB|K41.00|ICD10CM|Bi femoral hernia, w obst, w/o gangrene, not spcf as recur|Bi femoral hernia, w obst, w/o gangrene, not spcf as recur +C0156131|T020|ET|K41.00|ICD10CM|Bilateral femoral hernia, with obstruction, without gangrene NOS|Bilateral femoral hernia, with obstruction, without gangrene NOS +C3649116|T020|PT|K41.00|ICD10CM|Bilateral femoral hernia, with obstruction, without gangrene, not specified as recurrent|Bilateral femoral hernia, with obstruction, without gangrene, not specified as recurrent +C0156132|T020|AB|K41.01|ICD10CM|Bilateral femoral hernia, w obst, w/o gangrene, recurrent|Bilateral femoral hernia, w obst, w/o gangrene, recurrent +C0156132|T020|PT|K41.01|ICD10CM|Bilateral femoral hernia, with obstruction, without gangrene, recurrent|Bilateral femoral hernia, with obstruction, without gangrene, recurrent +C0156117|T020|HT|K41.1|ICD10CM|Bilateral femoral hernia, with gangrene|Bilateral femoral hernia, with gangrene +C0156117|T020|AB|K41.1|ICD10CM|Bilateral femoral hernia, with gangrene|Bilateral femoral hernia, with gangrene +C0156117|T020|PT|K41.1|ICD10|Bilateral femoral hernia, with gangrene|Bilateral femoral hernia, with gangrene +C2887709|T020|AB|K41.10|ICD10CM|Bi femoral hernia, w gangrene, not specified as recurrent|Bi femoral hernia, w gangrene, not specified as recurrent +C0156117|T020|ET|K41.10|ICD10CM|Bilateral femoral hernia, with gangrene NOS|Bilateral femoral hernia, with gangrene NOS +C2887709|T020|PT|K41.10|ICD10CM|Bilateral femoral hernia, with gangrene, not specified as recurrent|Bilateral femoral hernia, with gangrene, not specified as recurrent +C0156118|T047|AB|K41.11|ICD10CM|Bilateral femoral hernia, with gangrene, recurrent|Bilateral femoral hernia, with gangrene, recurrent +C0156118|T047|PT|K41.11|ICD10CM|Bilateral femoral hernia, with gangrene, recurrent|Bilateral femoral hernia, with gangrene, recurrent +C0401094|T020|PT|K41.2|ICD10|Bilateral femoral hernia, without obstruction or gangrene|Bilateral femoral hernia, without obstruction or gangrene +C0401094|T020|HT|K41.2|ICD10CM|Bilateral femoral hernia, without obstruction or gangrene|Bilateral femoral hernia, without obstruction or gangrene +C0401094|T020|AB|K41.2|ICD10CM|Bilateral femoral hernia, without obstruction or gangrene|Bilateral femoral hernia, without obstruction or gangrene +C3649114|T020|AB|K41.20|ICD10CM|Bi femoral hernia, w/o obst or gangrene, not spcf as recur|Bi femoral hernia, w/o obst or gangrene, not spcf as recur +C0401094|T020|ET|K41.20|ICD10CM|Bilateral femoral hernia NOS|Bilateral femoral hernia NOS +C3649114|T020|PT|K41.20|ICD10CM|Bilateral femoral hernia, without obstruction or gangrene, not specified as recurrent|Bilateral femoral hernia, without obstruction or gangrene, not specified as recurrent +C0401093|T020|AB|K41.21|ICD10CM|Bilateral femoral hernia, w/o obst or gangrene, recurrent|Bilateral femoral hernia, w/o obst or gangrene, recurrent +C0401093|T020|PT|K41.21|ICD10CM|Bilateral femoral hernia, without obstruction or gangrene, recurrent|Bilateral femoral hernia, without obstruction or gangrene, recurrent +C2887711|T020|ET|K41.3|ICD10CM|Femoral hernia (unilateral) causing obstruction, without gangrene|Femoral hernia (unilateral) causing obstruction, without gangrene +C2887712|T020|ET|K41.3|ICD10CM|Incarcerated femoral hernia (unilateral), without gangrene|Incarcerated femoral hernia (unilateral), without gangrene +C2887713|T020|ET|K41.3|ICD10CM|Irreducible femoral hernia (unilateral), without gangrene|Irreducible femoral hernia (unilateral), without gangrene +C2887714|T190|ET|K41.3|ICD10CM|Strangulated femoral hernia (unilateral), without gangrene|Strangulated femoral hernia (unilateral), without gangrene +C2887715|T190|AB|K41.3|ICD10CM|Unilateral femoral hernia, with obstruction, w/o gangrene|Unilateral femoral hernia, with obstruction, w/o gangrene +C2887715|T190|HT|K41.3|ICD10CM|Unilateral femoral hernia, with obstruction, without gangrene|Unilateral femoral hernia, with obstruction, without gangrene +C0401103|T020|PT|K41.3|ICD10|Unilateral or unspecified femoral hernia, with obstruction, without gangrene|Unilateral or unspecified femoral hernia, with obstruction, without gangrene +C0156128|T020|ET|K41.30|ICD10CM|Femoral hernia, with obstruction NOS|Femoral hernia, with obstruction NOS +C3649112|T020|AB|K41.30|ICD10CM|Unil femoral hernia, w obst, w/o gangrene, not spcf as recur|Unil femoral hernia, w obst, w/o gangrene, not spcf as recur +C2887716|T190|ET|K41.30|ICD10CM|Unilateral femoral hernia, with obstruction NOS|Unilateral femoral hernia, with obstruction NOS +C3649112|T020|PT|K41.30|ICD10CM|Unilateral femoral hernia, with obstruction, without gangrene, not specified as recurrent|Unilateral femoral hernia, with obstruction, without gangrene, not specified as recurrent +C3649111|T020|AB|K41.31|ICD10CM|Unilateral femoral hernia, w obst, w/o gangrene, recurrent|Unilateral femoral hernia, w obst, w/o gangrene, recurrent +C3649111|T020|PT|K41.31|ICD10CM|Unilateral femoral hernia, with obstruction, without gangrene, recurrent|Unilateral femoral hernia, with obstruction, without gangrene, recurrent +C0267692|T047|AB|K41.4|ICD10CM|Unilateral femoral hernia, with gangrene|Unilateral femoral hernia, with gangrene +C0267692|T047|HT|K41.4|ICD10CM|Unilateral femoral hernia, with gangrene|Unilateral femoral hernia, with gangrene +C0156115|T020|PT|K41.4|ICD10|Unilateral or unspecified femoral hernia, with gangrene|Unilateral or unspecified femoral hernia, with gangrene +C0156114|T047|ET|K41.40|ICD10CM|Femoral hernia, with gangrene NOS|Femoral hernia, with gangrene NOS +C2887719|T047|AB|K41.40|ICD10CM|Unil femoral hernia, w gangrene, not specified as recurrent|Unil femoral hernia, w gangrene, not specified as recurrent +C0267692|T047|ET|K41.40|ICD10CM|Unilateral femoral hernia, with gangrene NOS|Unilateral femoral hernia, with gangrene NOS +C2887719|T047|PT|K41.40|ICD10CM|Unilateral femoral hernia, with gangrene, not specified as recurrent|Unilateral femoral hernia, with gangrene, not specified as recurrent +C0267693|T047|AB|K41.41|ICD10CM|Unilateral femoral hernia, with gangrene, recurrent|Unilateral femoral hernia, with gangrene, recurrent +C0267693|T047|PT|K41.41|ICD10CM|Unilateral femoral hernia, with gangrene, recurrent|Unilateral femoral hernia, with gangrene, recurrent +C0401096|T020|AB|K41.9|ICD10CM|Unilateral femoral hernia, without obstruction or gangrene|Unilateral femoral hernia, without obstruction or gangrene +C0401096|T020|HT|K41.9|ICD10CM|Unilateral femoral hernia, without obstruction or gangrene|Unilateral femoral hernia, without obstruction or gangrene +C0494748|T020|PT|K41.9|ICD10|Unilateral or unspecified femoral hernia, without obstruction or gangrene|Unilateral or unspecified femoral hernia, without obstruction or gangrene +C0019288|T020|ET|K41.90|ICD10CM|Femoral hernia NOS|Femoral hernia NOS +C3649110|T020|AB|K41.90|ICD10CM|Unil femoral hernia, w/o obst or gangrene, not spcf as recur|Unil femoral hernia, w/o obst or gangrene, not spcf as recur +C0860199|T020|ET|K41.90|ICD10CM|Unilateral femoral hernia NOS|Unilateral femoral hernia NOS +C3649110|T020|PT|K41.90|ICD10CM|Unilateral femoral hernia, without obstruction or gangrene, not specified as recurrent|Unilateral femoral hernia, without obstruction or gangrene, not specified as recurrent +C0267689|T020|AB|K41.91|ICD10CM|Unilateral femoral hernia, w/o obst or gangrene, recurrent|Unilateral femoral hernia, w/o obst or gangrene, recurrent +C0267689|T020|PT|K41.91|ICD10CM|Unilateral femoral hernia, without obstruction or gangrene, recurrent|Unilateral femoral hernia, without obstruction or gangrene, recurrent +C0019311|T047|ET|K42|ICD10CM|paraumbilical hernia|paraumbilical hernia +C0019322|T047|HT|K42|ICD10CM|Umbilical hernia|Umbilical hernia +C0019322|T047|AB|K42|ICD10CM|Umbilical hernia|Umbilical hernia +C0019322|T047|HT|K42|ICD10|Umbilical hernia|Umbilical hernia +C2887721|T020|ET|K42.0|ICD10CM|Incarcerated umbilical hernia, without gangrene|Incarcerated umbilical hernia, without gangrene +C2887722|T190|ET|K42.0|ICD10CM|Irreducible umbilical hernia, without gangrene|Irreducible umbilical hernia, without gangrene +C2887723|T190|ET|K42.0|ICD10CM|Strangulated umbilical hernia, without gangrene|Strangulated umbilical hernia, without gangrene +C2887724|T190|ET|K42.0|ICD10CM|Umbilical hernia causing obstruction, without gangrene|Umbilical hernia causing obstruction, without gangrene +C0267708|T020|PT|K42.0|ICD10|Umbilical hernia with obstruction, without gangrene|Umbilical hernia with obstruction, without gangrene +C0267708|T020|PT|K42.0|ICD10CM|Umbilical hernia with obstruction, without gangrene|Umbilical hernia with obstruction, without gangrene +C0267708|T020|AB|K42.0|ICD10CM|Umbilical hernia with obstruction, without gangrene|Umbilical hernia with obstruction, without gangrene +C0156119|T047|ET|K42.1|ICD10CM|Gangrenous umbilical hernia|Gangrenous umbilical hernia +C0156119|T047|PT|K42.1|ICD10CM|Umbilical hernia with gangrene|Umbilical hernia with gangrene +C0156119|T047|AB|K42.1|ICD10CM|Umbilical hernia with gangrene|Umbilical hernia with gangrene +C0156119|T047|PT|K42.1|ICD10|Umbilical hernia with gangrene|Umbilical hernia with gangrene +C0019322|T047|ET|K42.9|ICD10CM|Umbilical hernia NOS|Umbilical hernia NOS +C0267704|T020|PT|K42.9|ICD10|Umbilical hernia without obstruction or gangrene|Umbilical hernia without obstruction or gangrene +C0267704|T020|PT|K42.9|ICD10CM|Umbilical hernia without obstruction or gangrene|Umbilical hernia without obstruction or gangrene +C0267704|T020|AB|K42.9|ICD10CM|Umbilical hernia without obstruction or gangrene|Umbilical hernia without obstruction or gangrene +C0019326|T190|HT|K43|ICD10|Ventral hernia|Ventral hernia +C0019326|T190|HT|K43|ICD10CM|Ventral hernia|Ventral hernia +C0019326|T190|AB|K43|ICD10CM|Ventral hernia|Ventral hernia +C3264409|T020|ET|K43.0|ICD10CM|Incarcerated incisional hernia, without gangrene|Incarcerated incisional hernia, without gangrene +C3264410|T020|ET|K43.0|ICD10CM|Incisional hernia causing obstruction, without gangrene|Incisional hernia causing obstruction, without gangrene +C0810303|T020|AB|K43.0|ICD10CM|Incisional hernia with obstruction, without gangrene|Incisional hernia with obstruction, without gangrene +C0810303|T020|PT|K43.0|ICD10CM|Incisional hernia with obstruction, without gangrene|Incisional hernia with obstruction, without gangrene +C3264411|T020|ET|K43.0|ICD10CM|Irreducible incisional hernia, without gangrene|Irreducible incisional hernia, without gangrene +C3264412|T190|ET|K43.0|ICD10CM|Strangulated incisional hernia, without gangrene|Strangulated incisional hernia, without gangrene +C0267712|T190|PT|K43.0|ICD10|Ventral hernia with obstruction, without gangrene|Ventral hernia with obstruction, without gangrene +C0156122|T047|ET|K43.1|ICD10CM|Gangrenous incisional hernia|Gangrenous incisional hernia +C0156122|T047|AB|K43.1|ICD10CM|Incisional hernia with gangrene|Incisional hernia with gangrene +C0156122|T047|PT|K43.1|ICD10CM|Incisional hernia with gangrene|Incisional hernia with gangrene +C0156120|T047|PT|K43.1|ICD10|Ventral hernia with gangrene|Ventral hernia with gangrene +C0267716|T046|ET|K43.2|ICD10CM|Incisional hernia NOS|Incisional hernia NOS +C3264413|T020|PT|K43.2|ICD10CM|Incisional hernia without obstruction or gangrene|Incisional hernia without obstruction or gangrene +C3264413|T020|AB|K43.2|ICD10CM|Incisional hernia without obstruction or gangrene|Incisional hernia without obstruction or gangrene +C3264414|T020|ET|K43.3|ICD10CM|Incarcerated parastomal hernia, without gangrene|Incarcerated parastomal hernia, without gangrene +C3264415|T190|ET|K43.3|ICD10CM|Irreducible parastomal hernia, without gangrene|Irreducible parastomal hernia, without gangrene +C3264416|T020|ET|K43.3|ICD10CM|Parastomal hernia causing obstruction, without gangrene|Parastomal hernia causing obstruction, without gangrene +C3264418|T020|AB|K43.3|ICD10CM|Parastomal hernia with obstruction, without gangrene|Parastomal hernia with obstruction, without gangrene +C3264418|T020|PT|K43.3|ICD10CM|Parastomal hernia with obstruction, without gangrene|Parastomal hernia with obstruction, without gangrene +C3264417|T190|ET|K43.3|ICD10CM|Strangulated parastomal hernia, without gangrene|Strangulated parastomal hernia, without gangrene +C3264419|T020|ET|K43.4|ICD10CM|Gangrenous parastomal hernia|Gangrenous parastomal hernia +C3264420|T047|AB|K43.4|ICD10CM|Parastomal hernia with gangrene|Parastomal hernia with gangrene +C3264420|T047|PT|K43.4|ICD10CM|Parastomal hernia with gangrene|Parastomal hernia with gangrene +C0341539|T020|ET|K43.5|ICD10CM|Parastomal hernia NOS|Parastomal hernia NOS +C3264421|T190|AB|K43.5|ICD10CM|Parastomal hernia without obstruction or gangrene|Parastomal hernia without obstruction or gangrene +C3264421|T190|PT|K43.5|ICD10CM|Parastomal hernia without obstruction or gangrene|Parastomal hernia without obstruction or gangrene +C3264422|T020|ET|K43.6|ICD10CM|Epigastric hernia causing obstruction, without gangrene|Epigastric hernia causing obstruction, without gangrene +C3264423|T020|ET|K43.6|ICD10CM|Hypogastric hernia causing obstruction, without gangrene|Hypogastric hernia causing obstruction, without gangrene +C3264424|T020|ET|K43.6|ICD10CM|Incarcerated epigastric hernia without gangrene|Incarcerated epigastric hernia without gangrene +C3264425|T020|ET|K43.6|ICD10CM|Incarcerated hypogastric hernia without gangrene|Incarcerated hypogastric hernia without gangrene +C3264426|T020|ET|K43.6|ICD10CM|Incarcerated midline hernia without gangrene|Incarcerated midline hernia without gangrene +C3264427|T020|ET|K43.6|ICD10CM|Incarcerated spigelian hernia without gangrene|Incarcerated spigelian hernia without gangrene +C3264428|T020|ET|K43.6|ICD10CM|Incarcerated subxiphoid hernia without gangrene|Incarcerated subxiphoid hernia without gangrene +C3264429|T190|ET|K43.6|ICD10CM|Irreducible epigastric hernia without gangrene|Irreducible epigastric hernia without gangrene +C3264430|T020|ET|K43.6|ICD10CM|Irreducible hypogastric hernia without gangrene|Irreducible hypogastric hernia without gangrene +C3264431|T190|ET|K43.6|ICD10CM|Irreducible midline hernia without gangrene|Irreducible midline hernia without gangrene +C3264432|T190|ET|K43.6|ICD10CM|Irreducible spigelian hernia without gangrene|Irreducible spigelian hernia without gangrene +C3264433|T190|ET|K43.6|ICD10CM|Irreducible subxiphoid hernia without gangrene|Irreducible subxiphoid hernia without gangrene +C3264434|T190|ET|K43.6|ICD10CM|Midline hernia causing obstruction, without gangrene|Midline hernia causing obstruction, without gangrene +C3264442|T190|AB|K43.6|ICD10CM|Other and unsp ventral hernia with obstruction, w/o gangrene|Other and unsp ventral hernia with obstruction, w/o gangrene +C3264442|T190|PT|K43.6|ICD10CM|Other and unspecified ventral hernia with obstruction, without gangrene|Other and unspecified ventral hernia with obstruction, without gangrene +C3264435|T190|ET|K43.6|ICD10CM|Spigelian hernia causing obstruction, without gangrene|Spigelian hernia causing obstruction, without gangrene +C3264436|T190|ET|K43.6|ICD10CM|Strangulated epigastric hernia without gangrene|Strangulated epigastric hernia without gangrene +C3264437|T190|ET|K43.6|ICD10CM|Strangulated hypogastric hernia without gangrene|Strangulated hypogastric hernia without gangrene +C3264438|T190|ET|K43.6|ICD10CM|Strangulated midline hernia without gangrene|Strangulated midline hernia without gangrene +C3264439|T190|ET|K43.6|ICD10CM|Strangulated spigelian hernia without gangrene|Strangulated spigelian hernia without gangrene +C3264440|T190|ET|K43.6|ICD10CM|Strangulated subxiphoid hernia without gangrene|Strangulated subxiphoid hernia without gangrene +C3264441|T190|ET|K43.6|ICD10CM|Subxiphoid hernia causing obstruction, without gangrene|Subxiphoid hernia causing obstruction, without gangrene +C3264443|T047|ET|K43.7|ICD10CM|Any condition listed under K43.6 specified as gangrenous|Any condition listed under K43.6 specified as gangrenous +C3264444|T047|AB|K43.7|ICD10CM|Other and unspecified ventral hernia with gangrene|Other and unspecified ventral hernia with gangrene +C3264444|T047|PT|K43.7|ICD10CM|Other and unspecified ventral hernia with gangrene|Other and unspecified ventral hernia with gangrene +C0019287|T190|ET|K43.9|ICD10CM|Epigastric hernia|Epigastric hernia +C0019326|T190|ET|K43.9|ICD10CM|Ventral hernia NOS|Ventral hernia NOS +C0267710|T020|PT|K43.9|ICD10|Ventral hernia without obstruction or gangrene|Ventral hernia without obstruction or gangrene +C0267710|T020|AB|K43.9|ICD10CM|Ventral hernia without obstruction or gangrene|Ventral hernia without obstruction or gangrene +C0267710|T020|PT|K43.9|ICD10CM|Ventral hernia without obstruction or gangrene|Ventral hernia without obstruction or gangrene +C0019284|T047|HT|K44|ICD10CM|Diaphragmatic hernia|Diaphragmatic hernia +C0019284|T047|AB|K44|ICD10CM|Diaphragmatic hernia|Diaphragmatic hernia +C0019284|T047|HT|K44|ICD10|Diaphragmatic hernia|Diaphragmatic hernia +C0376710|T047|ET|K44|ICD10CM|hiatus hernia (esophageal) (sliding)|hiatus hernia (esophageal) (sliding) +C0267725|T047|ET|K44|ICD10CM|paraesophageal hernia|paraesophageal hernia +C2887734|T190|ET|K44.0|ICD10CM|Diaphragmatic hernia causing obstruction|Diaphragmatic hernia causing obstruction +C0267731|T190|PT|K44.0|ICD10CM|Diaphragmatic hernia with obstruction, without gangrene|Diaphragmatic hernia with obstruction, without gangrene +C0267731|T190|AB|K44.0|ICD10CM|Diaphragmatic hernia with obstruction, without gangrene|Diaphragmatic hernia with obstruction, without gangrene +C0267731|T190|PT|K44.0|ICD10|Diaphragmatic hernia with obstruction, without gangrene|Diaphragmatic hernia with obstruction, without gangrene +C2887735|T020|ET|K44.0|ICD10CM|Incarcerated diaphragmatic hernia|Incarcerated diaphragmatic hernia +C0341546|T190|ET|K44.0|ICD10CM|Irreducible diaphragmatic hernia|Irreducible diaphragmatic hernia +C2887736|T190|ET|K44.0|ICD10CM|Strangulated diaphragmatic hernia|Strangulated diaphragmatic hernia +C0156124|T047|PT|K44.1|ICD10|Diaphragmatic hernia with gangrene|Diaphragmatic hernia with gangrene +C0156124|T047|PT|K44.1|ICD10CM|Diaphragmatic hernia with gangrene|Diaphragmatic hernia with gangrene +C0156124|T047|AB|K44.1|ICD10CM|Diaphragmatic hernia with gangrene|Diaphragmatic hernia with gangrene +C0156124|T047|ET|K44.1|ICD10CM|Gangrenous diaphragmatic hernia|Gangrenous diaphragmatic hernia +C0019284|T047|ET|K44.9|ICD10CM|Diaphragmatic hernia NOS|Diaphragmatic hernia NOS +C0494752|T047|PT|K44.9|ICD10CM|Diaphragmatic hernia without obstruction or gangrene|Diaphragmatic hernia without obstruction or gangrene +C0494752|T047|AB|K44.9|ICD10CM|Diaphragmatic hernia without obstruction or gangrene|Diaphragmatic hernia without obstruction or gangrene +C0494752|T047|PT|K44.9|ICD10|Diaphragmatic hernia without obstruction or gangrene|Diaphragmatic hernia without obstruction or gangrene +C4290210|T020|ET|K45|ICD10CM|abdominal hernia, specified site NEC|abdominal hernia, specified site NEC +C0401119|T047|ET|K45|ICD10CM|lumbar hernia|lumbar hernia +C0019310|T047|ET|K45|ICD10CM|obturator hernia|obturator hernia +C0494753|T020|HT|K45|ICD10|Other abdominal hernia|Other abdominal hernia +C0494753|T020|AB|K45|ICD10CM|Other abdominal hernia|Other abdominal hernia +C0494753|T020|HT|K45|ICD10CM|Other abdominal hernia|Other abdominal hernia +C0267742|T047|ET|K45|ICD10CM|pudendal hernia|pudendal hernia +C0019317|T047|ET|K45|ICD10CM|retroperitoneal hernia|retroperitoneal hernia +C0019304|T047|ET|K45|ICD10CM|sciatic hernia|sciatic hernia +C0348733|T020|AB|K45.0|ICD10CM|Oth abdominal hernia with obstruction, without gangrene|Oth abdominal hernia with obstruction, without gangrene +C2887738|T190|ET|K45.0|ICD10CM|Other specified abdominal hernia causing obstruction|Other specified abdominal hernia causing obstruction +C0348733|T020|PT|K45.0|ICD10CM|Other specified abdominal hernia with obstruction, without gangrene|Other specified abdominal hernia with obstruction, without gangrene +C0348733|T020|PT|K45.0|ICD10|Other specified abdominal hernia with obstruction, without gangrene|Other specified abdominal hernia with obstruction, without gangrene +C2887739|T190|ET|K45.0|ICD10CM|Other specified incarcerated abdominal hernia|Other specified incarcerated abdominal hernia +C2887740|T190|ET|K45.0|ICD10CM|Other specified irreducible abdominal hernia|Other specified irreducible abdominal hernia +C2887741|T190|ET|K45.0|ICD10CM|Other specified strangulated abdominal hernia|Other specified strangulated abdominal hernia +C2887742|T047|ET|K45.1|ICD10CM|Any condition listed under K45 specified as gangrenous|Any condition listed under K45 specified as gangrenous +C0348734|T020|PT|K45.1|ICD10|Other specified abdominal hernia with gangrene|Other specified abdominal hernia with gangrene +C0348734|T020|PT|K45.1|ICD10CM|Other specified abdominal hernia with gangrene|Other specified abdominal hernia with gangrene +C0348734|T020|AB|K45.1|ICD10CM|Other specified abdominal hernia with gangrene|Other specified abdominal hernia with gangrene +C0348735|T020|AB|K45.8|ICD10CM|Oth abdominal hernia without obstruction or gangrene|Oth abdominal hernia without obstruction or gangrene +C0348735|T020|PT|K45.8|ICD10CM|Other specified abdominal hernia without obstruction or gangrene|Other specified abdominal hernia without obstruction or gangrene +C0348735|T020|PT|K45.8|ICD10|Other specified abdominal hernia without obstruction or gangrene|Other specified abdominal hernia without obstruction or gangrene +C0205792|T190|ET|K46|ICD10CM|enterocele|enterocele +C0267748|T190|ET|K46|ICD10CM|epiplocele|epiplocele +C0019270|T190|ET|K46|ICD10CM|hernia NOS|hernia NOS +C0019303|T020|ET|K46|ICD10CM|interstitial hernia|interstitial hernia +C0267665|T047|ET|K46|ICD10CM|intestinal hernia|intestinal hernia +C0178282|T190|ET|K46|ICD10CM|intra-abdominal hernia|intra-abdominal hernia +C0178282|T190|AB|K46|ICD10CM|Unspecified abdominal hernia|Unspecified abdominal hernia +C0178282|T190|HT|K46|ICD10CM|Unspecified abdominal hernia|Unspecified abdominal hernia +C0178282|T190|HT|K46|ICD10|Unspecified abdominal hernia|Unspecified abdominal hernia +C0267712|T190|AB|K46.0|ICD10CM|Unsp abdominal hernia with obstruction, without gangrene|Unsp abdominal hernia with obstruction, without gangrene +C2887743|T190|ET|K46.0|ICD10CM|Unspecified abdominal hernia causing obstruction|Unspecified abdominal hernia causing obstruction +C0267712|T190|PT|K46.0|ICD10CM|Unspecified abdominal hernia with obstruction, without gangrene|Unspecified abdominal hernia with obstruction, without gangrene +C0267712|T190|PT|K46.0|ICD10|Unspecified abdominal hernia with obstruction, without gangrene|Unspecified abdominal hernia with obstruction, without gangrene +C2887744|T190|ET|K46.0|ICD10CM|Unspecified incarcerated abdominal hernia|Unspecified incarcerated abdominal hernia +C2887745|T190|ET|K46.0|ICD10CM|Unspecified irreducible abdominal hernia|Unspecified irreducible abdominal hernia +C2887746|T190|ET|K46.0|ICD10CM|Unspecified strangulated abdominal hernia|Unspecified strangulated abdominal hernia +C2887747|T047|ET|K46.1|ICD10CM|Any condition listed under K46 specified as gangrenous|Any condition listed under K46 specified as gangrenous +C0494755|T047|PT|K46.1|ICD10CM|Unspecified abdominal hernia with gangrene|Unspecified abdominal hernia with gangrene +C0494755|T047|AB|K46.1|ICD10CM|Unspecified abdominal hernia with gangrene|Unspecified abdominal hernia with gangrene +C0494755|T047|PT|K46.1|ICD10|Unspecified abdominal hernia with gangrene|Unspecified abdominal hernia with gangrene +C0178282|T190|ET|K46.9|ICD10CM|Abdominal hernia NOS|Abdominal hernia NOS +C0267710|T020|PT|K46.9|ICD10CM|Unspecified abdominal hernia without obstruction or gangrene|Unspecified abdominal hernia without obstruction or gangrene +C0267710|T020|AB|K46.9|ICD10CM|Unspecified abdominal hernia without obstruction or gangrene|Unspecified abdominal hernia without obstruction or gangrene +C0267710|T020|PT|K46.9|ICD10|Unspecified abdominal hernia without obstruction or gangrene|Unspecified abdominal hernia without obstruction or gangrene +C0010346|T047|HT|K50|ICD10|Crohn's disease [regional enteritis]|Crohn's disease [regional enteritis] +C0010346|T047|AB|K50|ICD10CM|Crohn's disease [regional enteritis]|Crohn's disease [regional enteritis] +C0010346|T047|HT|K50|ICD10CM|Crohn's disease [regional enteritis]|Crohn's disease [regional enteritis] +C0010346|T047|ET|K50|ICD10CM|granulomatous enteritis|granulomatous enteritis +C0178283|T047|HT|K50-K52|ICD10CM|Noninfective enteritis and colitis (K50-K52)|Noninfective enteritis and colitis (K50-K52) +C4290211|T047|ET|K50-K52|ICD10CM|noninfective inflammatory bowel disease|noninfective inflammatory bowel disease +C0178283|T047|HT|K50-K52.9|ICD10|Noninfective enteritis and colitis|Noninfective enteritis and colitis +C2887749|T047|ET|K50.0|ICD10CM|Crohn's disease [regional enteritis] of duodenum|Crohn's disease [regional enteritis] of duodenum +C2887750|T047|ET|K50.0|ICD10CM|Crohn's disease [regional enteritis] of ileum|Crohn's disease [regional enteritis] of ileum +C2887751|T047|ET|K50.0|ICD10CM|Crohn's disease [regional enteritis] of jejunum|Crohn's disease [regional enteritis] of jejunum +C0156146|T047|PT|K50.0|ICD10|Crohn's disease of small intestine|Crohn's disease of small intestine +C0156146|T047|HT|K50.0|ICD10CM|Crohn's disease of small intestine|Crohn's disease of small intestine +C0156146|T047|AB|K50.0|ICD10CM|Crohn's disease of small intestine|Crohn's disease of small intestine +C0267380|T047|ET|K50.0|ICD10CM|Regional ileitis|Regional ileitis +C0678201|T047|ET|K50.0|ICD10CM|Terminal ileitis|Terminal ileitis +C2887752|T047|PT|K50.00|ICD10CM|Crohn's disease of small intestine without complications|Crohn's disease of small intestine without complications +C2887752|T047|AB|K50.00|ICD10CM|Crohn's disease of small intestine without complications|Crohn's disease of small intestine without complications +C2887753|T047|AB|K50.01|ICD10CM|Crohn's disease of small intestine with complications|Crohn's disease of small intestine with complications +C2887753|T047|HT|K50.01|ICD10CM|Crohn's disease of small intestine with complications|Crohn's disease of small intestine with complications +C2887754|T047|PT|K50.011|ICD10CM|Crohn's disease of small intestine with rectal bleeding|Crohn's disease of small intestine with rectal bleeding +C2887754|T047|AB|K50.011|ICD10CM|Crohn's disease of small intestine with rectal bleeding|Crohn's disease of small intestine with rectal bleeding +C2887755|T047|AB|K50.012|ICD10CM|Crohn's disease of small intestine w intestinal obstruction|Crohn's disease of small intestine w intestinal obstruction +C2887755|T047|PT|K50.012|ICD10CM|Crohn's disease of small intestine with intestinal obstruction|Crohn's disease of small intestine with intestinal obstruction +C2887756|T047|PT|K50.013|ICD10CM|Crohn's disease of small intestine with fistula|Crohn's disease of small intestine with fistula +C2887756|T047|AB|K50.013|ICD10CM|Crohn's disease of small intestine with fistula|Crohn's disease of small intestine with fistula +C2887757|T047|PT|K50.014|ICD10CM|Crohn's disease of small intestine with abscess|Crohn's disease of small intestine with abscess +C2887757|T047|AB|K50.014|ICD10CM|Crohn's disease of small intestine with abscess|Crohn's disease of small intestine with abscess +C2887758|T047|AB|K50.018|ICD10CM|Crohn's disease of small intestine with other complication|Crohn's disease of small intestine with other complication +C2887758|T047|PT|K50.018|ICD10CM|Crohn's disease of small intestine with other complication|Crohn's disease of small intestine with other complication +C2887759|T047|AB|K50.019|ICD10CM|Crohn's disease of small intestine with unsp complications|Crohn's disease of small intestine with unsp complications +C2887759|T047|PT|K50.019|ICD10CM|Crohn's disease of small intestine with unspecified complications|Crohn's disease of small intestine with unspecified complications +C0156147|T047|ET|K50.1|ICD10CM|Crohn's disease [regional enteritis] of colon|Crohn's disease [regional enteritis] of colon +C2887760|T047|ET|K50.1|ICD10CM|Crohn's disease [regional enteritis] of large bowel|Crohn's disease [regional enteritis] of large bowel +C2887761|T047|ET|K50.1|ICD10CM|Crohn's disease [regional enteritis] of rectum|Crohn's disease [regional enteritis] of rectum +C0156147|T047|HT|K50.1|ICD10CM|Crohn's disease of large intestine|Crohn's disease of large intestine +C0156147|T047|AB|K50.1|ICD10CM|Crohn's disease of large intestine|Crohn's disease of large intestine +C0156147|T047|PT|K50.1|ICD10|Crohn's disease of large intestine|Crohn's disease of large intestine +C0156147|T047|ET|K50.1|ICD10CM|Granulomatous colitis|Granulomatous colitis +C0156147|T047|ET|K50.1|ICD10CM|Regional colitis|Regional colitis +C2887762|T047|PT|K50.10|ICD10CM|Crohn's disease of large intestine without complications|Crohn's disease of large intestine without complications +C2887762|T047|AB|K50.10|ICD10CM|Crohn's disease of large intestine without complications|Crohn's disease of large intestine without complications +C2887763|T047|HT|K50.11|ICD10CM|Crohn's disease of large intestine with complications|Crohn's disease of large intestine with complications +C2887763|T047|AB|K50.11|ICD10CM|Crohn's disease of large intestine with complications|Crohn's disease of large intestine with complications +C2887764|T047|PT|K50.111|ICD10CM|Crohn's disease of large intestine with rectal bleeding|Crohn's disease of large intestine with rectal bleeding +C2887764|T047|AB|K50.111|ICD10CM|Crohn's disease of large intestine with rectal bleeding|Crohn's disease of large intestine with rectal bleeding +C2887765|T047|AB|K50.112|ICD10CM|Crohn's disease of large intestine w intestinal obstruction|Crohn's disease of large intestine w intestinal obstruction +C2887765|T047|PT|K50.112|ICD10CM|Crohn's disease of large intestine with intestinal obstruction|Crohn's disease of large intestine with intestinal obstruction +C2887766|T047|PT|K50.113|ICD10CM|Crohn's disease of large intestine with fistula|Crohn's disease of large intestine with fistula +C2887766|T047|AB|K50.113|ICD10CM|Crohn's disease of large intestine with fistula|Crohn's disease of large intestine with fistula +C2887767|T047|PT|K50.114|ICD10CM|Crohn's disease of large intestine with abscess|Crohn's disease of large intestine with abscess +C2887767|T047|AB|K50.114|ICD10CM|Crohn's disease of large intestine with abscess|Crohn's disease of large intestine with abscess +C2887768|T047|AB|K50.118|ICD10CM|Crohn's disease of large intestine with other complication|Crohn's disease of large intestine with other complication +C2887768|T047|PT|K50.118|ICD10CM|Crohn's disease of large intestine with other complication|Crohn's disease of large intestine with other complication +C2887769|T047|AB|K50.119|ICD10CM|Crohn's disease of large intestine with unsp complications|Crohn's disease of large intestine with unsp complications +C2887769|T047|PT|K50.119|ICD10CM|Crohn's disease of large intestine with unspecified complications|Crohn's disease of large intestine with unspecified complications +C2887770|T047|AB|K50.8|ICD10CM|Crohn's disease of both small and large intestine|Crohn's disease of both small and large intestine +C2887770|T047|HT|K50.8|ICD10CM|Crohn's disease of both small and large intestine|Crohn's disease of both small and large intestine +C0348736|T047|PT|K50.8|ICD10|Other Crohn's disease|Other Crohn's disease +C2887771|T047|PT|K50.80|ICD10CM|Crohn's disease of both small and large intestine without complications|Crohn's disease of both small and large intestine without complications +C2887771|T047|AB|K50.80|ICD10CM|Crohn's disease of both small and lg int w/o complications|Crohn's disease of both small and lg int w/o complications +C2887772|T047|HT|K50.81|ICD10CM|Crohn's disease of both small and large intestine with complications|Crohn's disease of both small and large intestine with complications +C2887772|T047|AB|K50.81|ICD10CM|Crohn's disease of both small and lg int w complications|Crohn's disease of both small and lg int w complications +C2887773|T047|PT|K50.811|ICD10CM|Crohn's disease of both small and large intestine with rectal bleeding|Crohn's disease of both small and large intestine with rectal bleeding +C2887773|T047|AB|K50.811|ICD10CM|Crohn's disease of both small and lg int w rectal bleeding|Crohn's disease of both small and lg int w rectal bleeding +C2887774|T047|PT|K50.812|ICD10CM|Crohn's disease of both small and large intestine with intestinal obstruction|Crohn's disease of both small and large intestine with intestinal obstruction +C2887774|T047|AB|K50.812|ICD10CM|Crohn's disease of both small and lg int w intestinal obst|Crohn's disease of both small and lg int w intestinal obst +C2887775|T047|AB|K50.813|ICD10CM|Crohn's disease of both small and large intestine w fistula|Crohn's disease of both small and large intestine w fistula +C2887775|T047|PT|K50.813|ICD10CM|Crohn's disease of both small and large intestine with fistula|Crohn's disease of both small and large intestine with fistula +C2887776|T047|AB|K50.814|ICD10CM|Crohn's disease of both small and large intestine w abscess|Crohn's disease of both small and large intestine w abscess +C2887776|T047|PT|K50.814|ICD10CM|Crohn's disease of both small and large intestine with abscess|Crohn's disease of both small and large intestine with abscess +C2887777|T047|PT|K50.818|ICD10CM|Crohn's disease of both small and large intestine with other complication|Crohn's disease of both small and large intestine with other complication +C2887777|T047|AB|K50.818|ICD10CM|Crohn's disease of both small and lg int w oth complication|Crohn's disease of both small and lg int w oth complication +C2887778|T047|PT|K50.819|ICD10CM|Crohn's disease of both small and large intestine with unspecified complications|Crohn's disease of both small and large intestine with unspecified complications +C2887778|T047|AB|K50.819|ICD10CM|Crohn's disease of both small and lg int w unsp comp|Crohn's disease of both small and lg int w unsp comp +C0010346|T047|PT|K50.9|ICD10|Crohn's disease, unspecified|Crohn's disease, unspecified +C0010346|T047|HT|K50.9|ICD10CM|Crohn's disease, unspecified|Crohn's disease, unspecified +C0010346|T047|AB|K50.9|ICD10CM|Crohn's disease, unspecified|Crohn's disease, unspecified +C0010346|T047|ET|K50.90|ICD10CM|Crohn's disease NOS|Crohn's disease NOS +C2887779|T047|AB|K50.90|ICD10CM|Crohn's disease, unspecified, without complications|Crohn's disease, unspecified, without complications +C2887779|T047|PT|K50.90|ICD10CM|Crohn's disease, unspecified, without complications|Crohn's disease, unspecified, without complications +C0678202|T047|ET|K50.90|ICD10CM|Regional enteritis NOS|Regional enteritis NOS +C2887780|T047|AB|K50.91|ICD10CM|Crohn's disease, unspecified, with complications|Crohn's disease, unspecified, with complications +C2887780|T047|HT|K50.91|ICD10CM|Crohn's disease, unspecified, with complications|Crohn's disease, unspecified, with complications +C2887781|T047|AB|K50.911|ICD10CM|Crohn's disease, unspecified, with rectal bleeding|Crohn's disease, unspecified, with rectal bleeding +C2887781|T047|PT|K50.911|ICD10CM|Crohn's disease, unspecified, with rectal bleeding|Crohn's disease, unspecified, with rectal bleeding +C2887782|T047|AB|K50.912|ICD10CM|Crohn's disease, unspecified, with intestinal obstruction|Crohn's disease, unspecified, with intestinal obstruction +C2887782|T047|PT|K50.912|ICD10CM|Crohn's disease, unspecified, with intestinal obstruction|Crohn's disease, unspecified, with intestinal obstruction +C2887783|T047|AB|K50.913|ICD10CM|Crohn's disease, unspecified, with fistula|Crohn's disease, unspecified, with fistula +C2887783|T047|PT|K50.913|ICD10CM|Crohn's disease, unspecified, with fistula|Crohn's disease, unspecified, with fistula +C2887784|T047|AB|K50.914|ICD10CM|Crohn's disease, unspecified, with abscess|Crohn's disease, unspecified, with abscess +C2887784|T047|PT|K50.914|ICD10CM|Crohn's disease, unspecified, with abscess|Crohn's disease, unspecified, with abscess +C2887785|T047|AB|K50.918|ICD10CM|Crohn's disease, unspecified, with other complication|Crohn's disease, unspecified, with other complication +C2887785|T047|PT|K50.918|ICD10CM|Crohn's disease, unspecified, with other complication|Crohn's disease, unspecified, with other complication +C2887786|T047|AB|K50.919|ICD10CM|Crohn's disease, unspecified, with unspecified complications|Crohn's disease, unspecified, with unspecified complications +C2887786|T047|PT|K50.919|ICD10CM|Crohn's disease, unspecified, with unspecified complications|Crohn's disease, unspecified, with unspecified complications +C0009324|T047|HT|K51|ICD10CM|Ulcerative colitis|Ulcerative colitis +C0009324|T047|AB|K51|ICD10CM|Ulcerative colitis|Ulcerative colitis +C0009324|T047|HT|K51|ICD10|Ulcerative colitis|Ulcerative colitis +C1963919|T047|ET|K51.0|ICD10CM|Backwash ileitis|Backwash ileitis +C0267388|T047|PT|K51.0|ICD10|Ulcerative (chronic) enterocolitis|Ulcerative (chronic) enterocolitis +C2711681|T047|AB|K51.0|ICD10CM|Ulcerative (chronic) pancolitis|Ulcerative (chronic) pancolitis +C2711681|T047|HT|K51.0|ICD10CM|Ulcerative (chronic) pancolitis|Ulcerative (chronic) pancolitis +C2711681|T047|ET|K51.00|ICD10CM|Ulcerative (chronic) pancolitis NOS|Ulcerative (chronic) pancolitis NOS +C2887788|T047|AB|K51.00|ICD10CM|Ulcerative (chronic) pancolitis without complications|Ulcerative (chronic) pancolitis without complications +C2887788|T047|PT|K51.00|ICD10CM|Ulcerative (chronic) pancolitis without complications|Ulcerative (chronic) pancolitis without complications +C2887789|T047|AB|K51.01|ICD10CM|Ulcerative (chronic) pancolitis with complications|Ulcerative (chronic) pancolitis with complications +C2887789|T047|HT|K51.01|ICD10CM|Ulcerative (chronic) pancolitis with complications|Ulcerative (chronic) pancolitis with complications +C2887790|T047|AB|K51.011|ICD10CM|Ulcerative (chronic) pancolitis with rectal bleeding|Ulcerative (chronic) pancolitis with rectal bleeding +C2887790|T047|PT|K51.011|ICD10CM|Ulcerative (chronic) pancolitis with rectal bleeding|Ulcerative (chronic) pancolitis with rectal bleeding +C2887791|T047|AB|K51.012|ICD10CM|Ulcerative (chronic) pancolitis with intestinal obstruction|Ulcerative (chronic) pancolitis with intestinal obstruction +C2887791|T047|PT|K51.012|ICD10CM|Ulcerative (chronic) pancolitis with intestinal obstruction|Ulcerative (chronic) pancolitis with intestinal obstruction +C2887792|T047|AB|K51.013|ICD10CM|Ulcerative (chronic) pancolitis with fistula|Ulcerative (chronic) pancolitis with fistula +C2887792|T047|PT|K51.013|ICD10CM|Ulcerative (chronic) pancolitis with fistula|Ulcerative (chronic) pancolitis with fistula +C2887793|T047|AB|K51.014|ICD10CM|Ulcerative (chronic) pancolitis with abscess|Ulcerative (chronic) pancolitis with abscess +C2887793|T047|PT|K51.014|ICD10CM|Ulcerative (chronic) pancolitis with abscess|Ulcerative (chronic) pancolitis with abscess +C2887794|T047|AB|K51.018|ICD10CM|Ulcerative (chronic) pancolitis with other complication|Ulcerative (chronic) pancolitis with other complication +C2887794|T047|PT|K51.018|ICD10CM|Ulcerative (chronic) pancolitis with other complication|Ulcerative (chronic) pancolitis with other complication +C2887795|T047|AB|K51.019|ICD10CM|Ulcerative (chronic) pancolitis with unsp complications|Ulcerative (chronic) pancolitis with unsp complications +C2887795|T047|PT|K51.019|ICD10CM|Ulcerative (chronic) pancolitis with unspecified complications|Ulcerative (chronic) pancolitis with unspecified complications +C0267389|T047|PT|K51.1|ICD10|Ulcerative (chronic) ileocolitis|Ulcerative (chronic) ileocolitis +C2937222|T047|PT|K51.2|ICD10|Ulcerative (chronic) proctitis|Ulcerative (chronic) proctitis +C2937222|T047|HT|K51.2|ICD10CM|Ulcerative (chronic) proctitis|Ulcerative (chronic) proctitis +C2937222|T047|AB|K51.2|ICD10CM|Ulcerative (chronic) proctitis|Ulcerative (chronic) proctitis +C2937222|T047|ET|K51.20|ICD10CM|Ulcerative (chronic) proctitis NOS|Ulcerative (chronic) proctitis NOS +C2887796|T047|AB|K51.20|ICD10CM|Ulcerative (chronic) proctitis without complications|Ulcerative (chronic) proctitis without complications +C2887796|T047|PT|K51.20|ICD10CM|Ulcerative (chronic) proctitis without complications|Ulcerative (chronic) proctitis without complications +C2887797|T047|AB|K51.21|ICD10CM|Ulcerative (chronic) proctitis with complications|Ulcerative (chronic) proctitis with complications +C2887797|T047|HT|K51.21|ICD10CM|Ulcerative (chronic) proctitis with complications|Ulcerative (chronic) proctitis with complications +C2887798|T047|AB|K51.211|ICD10CM|Ulcerative (chronic) proctitis with rectal bleeding|Ulcerative (chronic) proctitis with rectal bleeding +C2887798|T047|PT|K51.211|ICD10CM|Ulcerative (chronic) proctitis with rectal bleeding|Ulcerative (chronic) proctitis with rectal bleeding +C2887799|T047|AB|K51.212|ICD10CM|Ulcerative (chronic) proctitis with intestinal obstruction|Ulcerative (chronic) proctitis with intestinal obstruction +C2887799|T047|PT|K51.212|ICD10CM|Ulcerative (chronic) proctitis with intestinal obstruction|Ulcerative (chronic) proctitis with intestinal obstruction +C2887800|T047|AB|K51.213|ICD10CM|Ulcerative (chronic) proctitis with fistula|Ulcerative (chronic) proctitis with fistula +C2887800|T047|PT|K51.213|ICD10CM|Ulcerative (chronic) proctitis with fistula|Ulcerative (chronic) proctitis with fistula +C2887801|T047|AB|K51.214|ICD10CM|Ulcerative (chronic) proctitis with abscess|Ulcerative (chronic) proctitis with abscess +C2887801|T047|PT|K51.214|ICD10CM|Ulcerative (chronic) proctitis with abscess|Ulcerative (chronic) proctitis with abscess +C2887802|T047|AB|K51.218|ICD10CM|Ulcerative (chronic) proctitis with other complication|Ulcerative (chronic) proctitis with other complication +C2887802|T047|PT|K51.218|ICD10CM|Ulcerative (chronic) proctitis with other complication|Ulcerative (chronic) proctitis with other complication +C2887803|T047|AB|K51.219|ICD10CM|Ulcerative (chronic) proctitis with unsp complications|Ulcerative (chronic) proctitis with unsp complications +C2887803|T047|PT|K51.219|ICD10CM|Ulcerative (chronic) proctitis with unspecified complications|Ulcerative (chronic) proctitis with unspecified complications +C0267390|T047|PT|K51.3|ICD10|Ulcerative (chronic) rectosigmoiditis|Ulcerative (chronic) rectosigmoiditis +C0267390|T047|HT|K51.3|ICD10CM|Ulcerative (chronic) rectosigmoiditis|Ulcerative (chronic) rectosigmoiditis +C0267390|T047|AB|K51.3|ICD10CM|Ulcerative (chronic) rectosigmoiditis|Ulcerative (chronic) rectosigmoiditis +C0267390|T047|ET|K51.30|ICD10CM|Ulcerative (chronic) rectosigmoiditis NOS|Ulcerative (chronic) rectosigmoiditis NOS +C2887804|T047|AB|K51.30|ICD10CM|Ulcerative (chronic) rectosigmoiditis without complications|Ulcerative (chronic) rectosigmoiditis without complications +C2887804|T047|PT|K51.30|ICD10CM|Ulcerative (chronic) rectosigmoiditis without complications|Ulcerative (chronic) rectosigmoiditis without complications +C2887805|T047|AB|K51.31|ICD10CM|Ulcerative (chronic) rectosigmoiditis with complications|Ulcerative (chronic) rectosigmoiditis with complications +C2887805|T047|HT|K51.31|ICD10CM|Ulcerative (chronic) rectosigmoiditis with complications|Ulcerative (chronic) rectosigmoiditis with complications +C2887806|T047|AB|K51.311|ICD10CM|Ulcerative (chronic) rectosigmoiditis with rectal bleeding|Ulcerative (chronic) rectosigmoiditis with rectal bleeding +C2887806|T047|PT|K51.311|ICD10CM|Ulcerative (chronic) rectosigmoiditis with rectal bleeding|Ulcerative (chronic) rectosigmoiditis with rectal bleeding +C2887807|T047|AB|K51.312|ICD10CM|Ulcerative (chronic) rectosigmoiditis w intestinal obst|Ulcerative (chronic) rectosigmoiditis w intestinal obst +C2887807|T047|PT|K51.312|ICD10CM|Ulcerative (chronic) rectosigmoiditis with intestinal obstruction|Ulcerative (chronic) rectosigmoiditis with intestinal obstruction +C2887808|T047|AB|K51.313|ICD10CM|Ulcerative (chronic) rectosigmoiditis with fistula|Ulcerative (chronic) rectosigmoiditis with fistula +C2887808|T047|PT|K51.313|ICD10CM|Ulcerative (chronic) rectosigmoiditis with fistula|Ulcerative (chronic) rectosigmoiditis with fistula +C2887809|T047|AB|K51.314|ICD10CM|Ulcerative (chronic) rectosigmoiditis with abscess|Ulcerative (chronic) rectosigmoiditis with abscess +C2887809|T047|PT|K51.314|ICD10CM|Ulcerative (chronic) rectosigmoiditis with abscess|Ulcerative (chronic) rectosigmoiditis with abscess +C2887810|T047|AB|K51.318|ICD10CM|Ulcerative (chronic) rectosigmoiditis with oth complication|Ulcerative (chronic) rectosigmoiditis with oth complication +C2887810|T047|PT|K51.318|ICD10CM|Ulcerative (chronic) rectosigmoiditis with other complication|Ulcerative (chronic) rectosigmoiditis with other complication +C2887811|T047|AB|K51.319|ICD10CM|Ulcerative (chronic) rectosigmoiditis w unsp complications|Ulcerative (chronic) rectosigmoiditis w unsp complications +C2887811|T047|PT|K51.319|ICD10CM|Ulcerative (chronic) rectosigmoiditis with unspecified complications|Ulcerative (chronic) rectosigmoiditis with unspecified complications +C0267392|T047|HT|K51.4|ICD10CM|Inflammatory polyps of colon|Inflammatory polyps of colon +C0267392|T047|AB|K51.4|ICD10CM|Inflammatory polyps of colon|Inflammatory polyps of colon +C0267392|T047|PT|K51.4|ICD10|Pseudopolyposis of colon|Pseudopolyposis of colon +C0267392|T047|ET|K51.40|ICD10CM|Inflammatory polyps of colon NOS|Inflammatory polyps of colon NOS +C2887812|T047|PT|K51.40|ICD10CM|Inflammatory polyps of colon without complications|Inflammatory polyps of colon without complications +C2887812|T047|AB|K51.40|ICD10CM|Inflammatory polyps of colon without complications|Inflammatory polyps of colon without complications +C2887813|T047|HT|K51.41|ICD10CM|Inflammatory polyps of colon with complications|Inflammatory polyps of colon with complications +C2887813|T047|AB|K51.41|ICD10CM|Inflammatory polyps of colon with complications|Inflammatory polyps of colon with complications +C2887814|T047|PT|K51.411|ICD10CM|Inflammatory polyps of colon with rectal bleeding|Inflammatory polyps of colon with rectal bleeding +C2887814|T047|AB|K51.411|ICD10CM|Inflammatory polyps of colon with rectal bleeding|Inflammatory polyps of colon with rectal bleeding +C2887815|T047|PT|K51.412|ICD10CM|Inflammatory polyps of colon with intestinal obstruction|Inflammatory polyps of colon with intestinal obstruction +C2887815|T047|AB|K51.412|ICD10CM|Inflammatory polyps of colon with intestinal obstruction|Inflammatory polyps of colon with intestinal obstruction +C2887816|T047|PT|K51.413|ICD10CM|Inflammatory polyps of colon with fistula|Inflammatory polyps of colon with fistula +C2887816|T047|AB|K51.413|ICD10CM|Inflammatory polyps of colon with fistula|Inflammatory polyps of colon with fistula +C2887817|T047|PT|K51.414|ICD10CM|Inflammatory polyps of colon with abscess|Inflammatory polyps of colon with abscess +C2887817|T047|AB|K51.414|ICD10CM|Inflammatory polyps of colon with abscess|Inflammatory polyps of colon with abscess +C2887818|T047|AB|K51.418|ICD10CM|Inflammatory polyps of colon with other complication|Inflammatory polyps of colon with other complication +C2887818|T047|PT|K51.418|ICD10CM|Inflammatory polyps of colon with other complication|Inflammatory polyps of colon with other complication +C2887819|T047|AB|K51.419|ICD10CM|Inflammatory polyps of colon with unspecified complications|Inflammatory polyps of colon with unspecified complications +C2887819|T047|PT|K51.419|ICD10CM|Inflammatory polyps of colon with unspecified complications|Inflammatory polyps of colon with unspecified complications +C2887820|T047|ET|K51.5|ICD10CM|Left hemicolitis|Left hemicolitis +C2887821|T047|AB|K51.5|ICD10CM|Left sided colitis|Left sided colitis +C2887821|T047|HT|K51.5|ICD10CM|Left sided colitis|Left sided colitis +C0494759|T047|PT|K51.5|ICD10|Mucosal proctocolitis|Mucosal proctocolitis +C2887821|T047|ET|K51.50|ICD10CM|Left sided colitis NOS|Left sided colitis NOS +C2887822|T047|AB|K51.50|ICD10CM|Left sided colitis without complications|Left sided colitis without complications +C2887822|T047|PT|K51.50|ICD10CM|Left sided colitis without complications|Left sided colitis without complications +C2887823|T047|AB|K51.51|ICD10CM|Left sided colitis with complications|Left sided colitis with complications +C2887823|T047|HT|K51.51|ICD10CM|Left sided colitis with complications|Left sided colitis with complications +C2887824|T047|AB|K51.511|ICD10CM|Left sided colitis with rectal bleeding|Left sided colitis with rectal bleeding +C2887824|T047|PT|K51.511|ICD10CM|Left sided colitis with rectal bleeding|Left sided colitis with rectal bleeding +C2887825|T047|AB|K51.512|ICD10CM|Left sided colitis with intestinal obstruction|Left sided colitis with intestinal obstruction +C2887825|T047|PT|K51.512|ICD10CM|Left sided colitis with intestinal obstruction|Left sided colitis with intestinal obstruction +C2887826|T047|AB|K51.513|ICD10CM|Left sided colitis with fistula|Left sided colitis with fistula +C2887826|T047|PT|K51.513|ICD10CM|Left sided colitis with fistula|Left sided colitis with fistula +C2887827|T047|AB|K51.514|ICD10CM|Left sided colitis with abscess|Left sided colitis with abscess +C2887827|T047|PT|K51.514|ICD10CM|Left sided colitis with abscess|Left sided colitis with abscess +C2887828|T047|AB|K51.518|ICD10CM|Left sided colitis with other complication|Left sided colitis with other complication +C2887828|T047|PT|K51.518|ICD10CM|Left sided colitis with other complication|Left sided colitis with other complication +C2887829|T047|AB|K51.519|ICD10CM|Left sided colitis with unspecified complications|Left sided colitis with unspecified complications +C2887829|T047|PT|K51.519|ICD10CM|Left sided colitis with unspecified complications|Left sided colitis with unspecified complications +C0348737|T047|PT|K51.8|ICD10|Other ulcerative colitis|Other ulcerative colitis +C0348737|T047|HT|K51.8|ICD10CM|Other ulcerative colitis|Other ulcerative colitis +C0348737|T047|AB|K51.8|ICD10CM|Other ulcerative colitis|Other ulcerative colitis +C2887830|T047|PT|K51.80|ICD10CM|Other ulcerative colitis without complications|Other ulcerative colitis without complications +C2887830|T047|AB|K51.80|ICD10CM|Other ulcerative colitis without complications|Other ulcerative colitis without complications +C2887831|T047|AB|K51.81|ICD10CM|Other ulcerative colitis with complications|Other ulcerative colitis with complications +C2887831|T047|HT|K51.81|ICD10CM|Other ulcerative colitis with complications|Other ulcerative colitis with complications +C2887832|T047|AB|K51.811|ICD10CM|Other ulcerative colitis with rectal bleeding|Other ulcerative colitis with rectal bleeding +C2887832|T047|PT|K51.811|ICD10CM|Other ulcerative colitis with rectal bleeding|Other ulcerative colitis with rectal bleeding +C2887833|T047|AB|K51.812|ICD10CM|Other ulcerative colitis with intestinal obstruction|Other ulcerative colitis with intestinal obstruction +C2887833|T047|PT|K51.812|ICD10CM|Other ulcerative colitis with intestinal obstruction|Other ulcerative colitis with intestinal obstruction +C2887834|T047|AB|K51.813|ICD10CM|Other ulcerative colitis with fistula|Other ulcerative colitis with fistula +C2887834|T047|PT|K51.813|ICD10CM|Other ulcerative colitis with fistula|Other ulcerative colitis with fistula +C2887835|T047|AB|K51.814|ICD10CM|Other ulcerative colitis with abscess|Other ulcerative colitis with abscess +C2887835|T047|PT|K51.814|ICD10CM|Other ulcerative colitis with abscess|Other ulcerative colitis with abscess +C2887836|T047|AB|K51.818|ICD10CM|Other ulcerative colitis with other complication|Other ulcerative colitis with other complication +C2887836|T047|PT|K51.818|ICD10CM|Other ulcerative colitis with other complication|Other ulcerative colitis with other complication +C2887837|T047|AB|K51.819|ICD10CM|Other ulcerative colitis with unspecified complications|Other ulcerative colitis with unspecified complications +C2887837|T047|PT|K51.819|ICD10CM|Other ulcerative colitis with unspecified complications|Other ulcerative colitis with unspecified complications +C0009324|T047|HT|K51.9|ICD10CM|Ulcerative colitis, unspecified|Ulcerative colitis, unspecified +C0009324|T047|AB|K51.9|ICD10CM|Ulcerative colitis, unspecified|Ulcerative colitis, unspecified +C0009324|T047|PT|K51.9|ICD10|Ulcerative colitis, unspecified|Ulcerative colitis, unspecified +C2887838|T047|AB|K51.90|ICD10CM|Ulcerative colitis, unspecified, without complications|Ulcerative colitis, unspecified, without complications +C2887838|T047|PT|K51.90|ICD10CM|Ulcerative colitis, unspecified, without complications|Ulcerative colitis, unspecified, without complications +C2887839|T047|AB|K51.91|ICD10CM|Ulcerative colitis, unspecified, with complications|Ulcerative colitis, unspecified, with complications +C2887839|T047|HT|K51.91|ICD10CM|Ulcerative colitis, unspecified, with complications|Ulcerative colitis, unspecified, with complications +C2887840|T047|AB|K51.911|ICD10CM|Ulcerative colitis, unspecified with rectal bleeding|Ulcerative colitis, unspecified with rectal bleeding +C2887840|T047|PT|K51.911|ICD10CM|Ulcerative colitis, unspecified with rectal bleeding|Ulcerative colitis, unspecified with rectal bleeding +C2887841|T047|AB|K51.912|ICD10CM|Ulcerative colitis, unspecified with intestinal obstruction|Ulcerative colitis, unspecified with intestinal obstruction +C2887841|T047|PT|K51.912|ICD10CM|Ulcerative colitis, unspecified with intestinal obstruction|Ulcerative colitis, unspecified with intestinal obstruction +C2887842|T047|AB|K51.913|ICD10CM|Ulcerative colitis, unspecified with fistula|Ulcerative colitis, unspecified with fistula +C2887842|T047|PT|K51.913|ICD10CM|Ulcerative colitis, unspecified with fistula|Ulcerative colitis, unspecified with fistula +C2887843|T047|AB|K51.914|ICD10CM|Ulcerative colitis, unspecified with abscess|Ulcerative colitis, unspecified with abscess +C2887843|T047|PT|K51.914|ICD10CM|Ulcerative colitis, unspecified with abscess|Ulcerative colitis, unspecified with abscess +C2887844|T047|AB|K51.918|ICD10CM|Ulcerative colitis, unspecified with other complication|Ulcerative colitis, unspecified with other complication +C2887844|T047|PT|K51.918|ICD10CM|Ulcerative colitis, unspecified with other complication|Ulcerative colitis, unspecified with other complication +C2887845|T047|AB|K51.919|ICD10CM|Ulcerative colitis, unsp with unspecified complications|Ulcerative colitis, unsp with unspecified complications +C2887845|T047|PT|K51.919|ICD10CM|Ulcerative colitis, unspecified with unspecified complications|Ulcerative colitis, unspecified with unspecified complications +C0029512|T047|AB|K52|ICD10CM|Other and unsp noninfective gastroenteritis and colitis|Other and unsp noninfective gastroenteritis and colitis +C0029512|T047|HT|K52|ICD10CM|Other and unspecified noninfective gastroenteritis and colitis|Other and unspecified noninfective gastroenteritis and colitis +C0546822|T047|HT|K52|ICD10|Other noninfective gastroenteritis and colitis|Other noninfective gastroenteritis and colitis +C0156153|T047|PT|K52.0|ICD10|Gastroenteritis and colitis due to radiation|Gastroenteritis and colitis due to radiation +C0156153|T047|PT|K52.0|ICD10CM|Gastroenteritis and colitis due to radiation|Gastroenteritis and colitis due to radiation +C0156153|T047|AB|K52.0|ICD10CM|Gastroenteritis and colitis due to radiation|Gastroenteritis and colitis due to radiation +C3264445|T046|ET|K52.1|ICD10CM|Drug-induced gastroenteritis and colitis|Drug-induced gastroenteritis and colitis +C0156154|T047|PT|K52.1|ICD10CM|Toxic gastroenteritis and colitis|Toxic gastroenteritis and colitis +C0156154|T047|AB|K52.1|ICD10CM|Toxic gastroenteritis and colitis|Toxic gastroenteritis and colitis +C0156154|T047|PT|K52.1|ICD10|Toxic gastroenteritis and colitis|Toxic gastroenteritis and colitis +C0494761|T047|AB|K52.2|ICD10CM|Allergic and dietetic gastroenteritis and colitis|Allergic and dietetic gastroenteritis and colitis +C0494761|T047|HT|K52.2|ICD10CM|Allergic and dietetic gastroenteritis and colitis|Allergic and dietetic gastroenteritis and colitis +C0494761|T047|PT|K52.2|ICD10|Allergic and dietetic gastroenteritis and colitis|Allergic and dietetic gastroenteritis and colitis +C2887847|T047|ET|K52.2|ICD10CM|Food hypersensitivity gastroenteritis or colitis|Food hypersensitivity gastroenteritis or colitis +C4268599|T047|AB|K52.21|ICD10CM|Food protein-induced enterocolitis syndrome|Food protein-induced enterocolitis syndrome +C4268599|T047|PT|K52.21|ICD10CM|Food protein-induced enterocolitis syndrome|Food protein-induced enterocolitis syndrome +C4268599|T047|ET|K52.21|ICD10CM|FPIES|FPIES +C4268600|T047|PT|K52.22|ICD10CM|Food protein-induced enteropathy|Food protein-induced enteropathy +C4268600|T047|AB|K52.22|ICD10CM|Food protein-induced enteropathy|Food protein-induced enteropathy +C2887847|T047|ET|K52.29|ICD10CM|Food hypersensitivity gastroenteritis or colitis|Food hypersensitivity gastroenteritis or colitis +C4268602|T047|ET|K52.29|ICD10CM|Immediate gastrointestinal hypersensitivity|Immediate gastrointestinal hypersensitivity +C4268601|T047|AB|K52.29|ICD10CM|Other allergic and dietetic gastroenteritis and colitis|Other allergic and dietetic gastroenteritis and colitis +C4268601|T047|PT|K52.29|ICD10CM|Other allergic and dietetic gastroenteritis and colitis|Other allergic and dietetic gastroenteritis and colitis +C4268603|T047|ET|K52.3|ICD10CM|Colonic inflammatory bowel disease unclassified (IBDU)|Colonic inflammatory bowel disease unclassified (IBDU) +C0341332|T047|PT|K52.3|ICD10CM|Indeterminate colitis|Indeterminate colitis +C0341332|T047|AB|K52.3|ICD10CM|Indeterminate colitis|Indeterminate colitis +C0348738|T047|PT|K52.8|ICD10|Other specified noninfective gastroenteritis and colitis|Other specified noninfective gastroenteritis and colitis +C0348738|T047|HT|K52.8|ICD10CM|Other specified noninfective gastroenteritis and colitis|Other specified noninfective gastroenteritis and colitis +C0348738|T047|AB|K52.8|ICD10CM|Other specified noninfective gastroenteritis and colitis|Other specified noninfective gastroenteritis and colitis +C2062326|T047|ET|K52.81|ICD10CM|Eosinophilic enteritis|Eosinophilic enteritis +C2887848|T047|AB|K52.81|ICD10CM|Eosinophilic gastritis or gastroenteritis|Eosinophilic gastritis or gastroenteritis +C2887848|T047|PT|K52.81|ICD10CM|Eosinophilic gastritis or gastroenteritis|Eosinophilic gastritis or gastroenteritis +C4268604|T047|ET|K52.82|ICD10CM|Allergic proctocolitis|Allergic proctocolitis +C0267448|T047|PT|K52.82|ICD10CM|Eosinophilic colitis|Eosinophilic colitis +C0267448|T047|AB|K52.82|ICD10CM|Eosinophilic colitis|Eosinophilic colitis +C4268606|T047|ET|K52.82|ICD10CM|Food protein-induced proctocolitis|Food protein-induced proctocolitis +C4268605|T047|ET|K52.82|ICD10CM|Food-induced eosinophilic proctocolitis|Food-induced eosinophilic proctocolitis +C4268607|T047|ET|K52.82|ICD10CM|Milk protein-induced proctocolitis|Milk protein-induced proctocolitis +C0400821|T047|HT|K52.83|ICD10CM|Microscopic colitis|Microscopic colitis +C0400821|T047|AB|K52.83|ICD10CM|Microscopic colitis|Microscopic colitis +C0238067|T047|PT|K52.831|ICD10CM|Collagenous colitis|Collagenous colitis +C0238067|T047|AB|K52.831|ICD10CM|Collagenous colitis|Collagenous colitis +C0400822|T047|PT|K52.832|ICD10CM|Lymphocytic colitis|Lymphocytic colitis +C0400822|T047|AB|K52.832|ICD10CM|Lymphocytic colitis|Lymphocytic colitis +C4268608|T047|AB|K52.838|ICD10CM|Other microscopic colitis|Other microscopic colitis +C4268608|T047|PT|K52.838|ICD10CM|Other microscopic colitis|Other microscopic colitis +C4268609|T047|AB|K52.839|ICD10CM|Microscopic colitis, unspecified|Microscopic colitis, unspecified +C4268609|T047|PT|K52.839|ICD10CM|Microscopic colitis, unspecified|Microscopic colitis, unspecified +C0348738|T047|PT|K52.89|ICD10CM|Other specified noninfective gastroenteritis and colitis|Other specified noninfective gastroenteritis and colitis +C0348738|T047|AB|K52.89|ICD10CM|Other specified noninfective gastroenteritis and colitis|Other specified noninfective gastroenteritis and colitis +C0009319|T047|ET|K52.9|ICD10CM|Colitis NOS|Colitis NOS +C0014335|T047|ET|K52.9|ICD10CM|Enteritis NOS|Enteritis NOS +C0017160|T047|ET|K52.9|ICD10CM|Gastroenteritis NOS|Gastroenteritis NOS +C0020877|T047|ET|K52.9|ICD10CM|Ileitis NOS|Ileitis NOS +C0341276|T047|ET|K52.9|ICD10CM|Jejunitis NOS|Jejunitis NOS +C0494762|T047|PT|K52.9|ICD10|Noninfective gastroenteritis and colitis, unspecified|Noninfective gastroenteritis and colitis, unspecified +C0494762|T047|PT|K52.9|ICD10CM|Noninfective gastroenteritis and colitis, unspecified|Noninfective gastroenteritis and colitis, unspecified +C0494762|T047|AB|K52.9|ICD10CM|Noninfective gastroenteritis and colitis, unspecified|Noninfective gastroenteritis and colitis, unspecified +C0037074|T047|ET|K52.9|ICD10CM|Sigmoiditis NOS|Sigmoiditis NOS +C0400883|T047|HT|K55|ICD10|Vascular disorders of intestine|Vascular disorders of intestine +C0400883|T047|AB|K55|ICD10CM|Vascular disorders of intestine|Vascular disorders of intestine +C0400883|T047|HT|K55|ICD10CM|Vascular disorders of intestine|Vascular disorders of intestine +C0156182|T047|HT|K55-K63.9|ICD10|Other diseases of intestines|Other diseases of intestines +C3264446|T047|HT|K55-K64|ICD10CM|Other diseases of intestines (K55-K64)|Other diseases of intestines (K55-K64) +C0494763|T047|PT|K55.0|ICD10|Acute vascular disorders of intestine|Acute vascular disorders of intestine +C0494763|T047|AB|K55.0|ICD10CM|Acute vascular disorders of intestine|Acute vascular disorders of intestine +C0494763|T047|HT|K55.0|ICD10CM|Acute vascular disorders of intestine|Acute vascular disorders of intestine +C0866004|T047|ET|K55.0|ICD10CM|Infarction of appendices epiploicae|Infarction of appendices epiploicae +C2887851|T046|ET|K55.0|ICD10CM|Mesenteric (artery) (vein) embolism|Mesenteric (artery) (vein) embolism +C2887852|T046|ET|K55.0|ICD10CM|Mesenteric (artery) (vein) infarction|Mesenteric (artery) (vein) infarction +C2887853|T046|ET|K55.0|ICD10CM|Mesenteric (artery) (vein) thrombosis|Mesenteric (artery) (vein) thrombosis +C4268610|T047|AB|K55.01|ICD10CM|Acute (reversible) ischemia of small intestine|Acute (reversible) ischemia of small intestine +C4268610|T047|HT|K55.01|ICD10CM|Acute (reversible) ischemia of small intestine|Acute (reversible) ischemia of small intestine +C4268611|T047|PT|K55.011|ICD10CM|Focal (segmental) acute (reversible) ischemia of small intestine|Focal (segmental) acute (reversible) ischemia of small intestine +C4268611|T047|AB|K55.011|ICD10CM|Focal (segmental) acute ischemia of small intestine|Focal (segmental) acute ischemia of small intestine +C4268612|T047|AB|K55.012|ICD10CM|Diffuse acute (reversible) ischemia of small intestine|Diffuse acute (reversible) ischemia of small intestine +C4268612|T047|PT|K55.012|ICD10CM|Diffuse acute (reversible) ischemia of small intestine|Diffuse acute (reversible) ischemia of small intestine +C4268613|T047|PT|K55.019|ICD10CM|Acute (reversible) ischemia of small intestine, extent unspecified|Acute (reversible) ischemia of small intestine, extent unspecified +C4268613|T047|AB|K55.019|ICD10CM|Acute ischemia of small intestine, extent unspecified|Acute ischemia of small intestine, extent unspecified +C4268614|T047|HT|K55.02|ICD10CM|Acute infarction of small intestine|Acute infarction of small intestine +C4268614|T047|AB|K55.02|ICD10CM|Acute infarction of small intestine|Acute infarction of small intestine +C0235327|T047|ET|K55.02|ICD10CM|Gangrene of small intestine|Gangrene of small intestine +C4268615|T047|ET|K55.02|ICD10CM|Necrosis of small intestine|Necrosis of small intestine +C4268616|T047|AB|K55.021|ICD10CM|Focal (segmental) acute infarction of small intestine|Focal (segmental) acute infarction of small intestine +C4268616|T047|PT|K55.021|ICD10CM|Focal (segmental) acute infarction of small intestine|Focal (segmental) acute infarction of small intestine +C4268617|T047|AB|K55.022|ICD10CM|Diffuse acute infarction of small intestine|Diffuse acute infarction of small intestine +C4268617|T047|PT|K55.022|ICD10CM|Diffuse acute infarction of small intestine|Diffuse acute infarction of small intestine +C4268618|T047|AB|K55.029|ICD10CM|Acute infarction of small intestine, extent unspecified|Acute infarction of small intestine, extent unspecified +C4268618|T047|PT|K55.029|ICD10CM|Acute infarction of small intestine, extent unspecified|Acute infarction of small intestine, extent unspecified +C4268619|T047|AB|K55.03|ICD10CM|Acute (reversible) ischemia of large intestine|Acute (reversible) ischemia of large intestine +C4268619|T047|HT|K55.03|ICD10CM|Acute (reversible) ischemia of large intestine|Acute (reversible) ischemia of large intestine +C1392796|T047|ET|K55.03|ICD10CM|Acute fulminant ischemic colitis|Acute fulminant ischemic colitis +C2036596|T047|ET|K55.03|ICD10CM|Subacute ischemic colitis|Subacute ischemic colitis +C4268620|T047|PT|K55.031|ICD10CM|Focal (segmental) acute (reversible) ischemia of large intestine|Focal (segmental) acute (reversible) ischemia of large intestine +C4268620|T047|AB|K55.031|ICD10CM|Focal (segmental) acute ischemia of large intestine|Focal (segmental) acute ischemia of large intestine +C4270810|T047|AB|K55.032|ICD10CM|Diffuse acute (reversible) ischemia of large intestine|Diffuse acute (reversible) ischemia of large intestine +C4270810|T047|PT|K55.032|ICD10CM|Diffuse acute (reversible) ischemia of large intestine|Diffuse acute (reversible) ischemia of large intestine +C4268621|T047|PT|K55.039|ICD10CM|Acute (reversible) ischemia of large intestine, extent unspecified|Acute (reversible) ischemia of large intestine, extent unspecified +C4268621|T047|AB|K55.039|ICD10CM|Acute ischemia of large intestine, extent unspecified|Acute ischemia of large intestine, extent unspecified +C4268622|T047|AB|K55.04|ICD10CM|Acute infarction of large intestine|Acute infarction of large intestine +C4268622|T047|HT|K55.04|ICD10CM|Acute infarction of large intestine|Acute infarction of large intestine +C4268623|T047|ET|K55.04|ICD10CM|Gangrene of large intestine|Gangrene of large intestine +C4268624|T047|ET|K55.04|ICD10CM|Necrosis of large intestine|Necrosis of large intestine +C4268625|T047|AB|K55.041|ICD10CM|Focal (segmental) acute infarction of large intestine|Focal (segmental) acute infarction of large intestine +C4268625|T047|PT|K55.041|ICD10CM|Focal (segmental) acute infarction of large intestine|Focal (segmental) acute infarction of large intestine +C4268626|T047|AB|K55.042|ICD10CM|Diffuse acute infarction of large intestine|Diffuse acute infarction of large intestine +C4268626|T047|PT|K55.042|ICD10CM|Diffuse acute infarction of large intestine|Diffuse acute infarction of large intestine +C4268627|T047|AB|K55.049|ICD10CM|Acute infarction of large intestine, extent unspecified|Acute infarction of large intestine, extent unspecified +C4268627|T047|PT|K55.049|ICD10CM|Acute infarction of large intestine, extent unspecified|Acute infarction of large intestine, extent unspecified +C4268628|T047|AB|K55.05|ICD10CM|Acute (reversible) ischemia of intestine, part unspecified|Acute (reversible) ischemia of intestine, part unspecified +C4268628|T047|HT|K55.05|ICD10CM|Acute (reversible) ischemia of intestine, part unspecified|Acute (reversible) ischemia of intestine, part unspecified +C4268629|T047|PT|K55.051|ICD10CM|Focal (segmental) acute (reversible) ischemia of intestine, part unspecified|Focal (segmental) acute (reversible) ischemia of intestine, part unspecified +C4268629|T047|AB|K55.051|ICD10CM|Focal acute ischemia of intestine, part unspecified|Focal acute ischemia of intestine, part unspecified +C4268630|T047|PT|K55.052|ICD10CM|Diffuse acute (reversible) ischemia of intestine, part unspecified|Diffuse acute (reversible) ischemia of intestine, part unspecified +C4268630|T047|AB|K55.052|ICD10CM|Diffuse acute ischemia of intestine, part unspecified|Diffuse acute ischemia of intestine, part unspecified +C4268631|T047|PT|K55.059|ICD10CM|Acute (reversible) ischemia of intestine, part and extent unspecified|Acute (reversible) ischemia of intestine, part and extent unspecified +C4268631|T047|AB|K55.059|ICD10CM|Acute ischemia of intestine, part and extent unspecified|Acute ischemia of intestine, part and extent unspecified +C4268632|T047|AB|K55.06|ICD10CM|Acute infarction of intestine, part unspecified|Acute infarction of intestine, part unspecified +C4268632|T047|HT|K55.06|ICD10CM|Acute infarction of intestine, part unspecified|Acute infarction of intestine, part unspecified +C0267405|T047|ET|K55.06|ICD10CM|Acute intestinal infarction|Acute intestinal infarction +C0151659|T047|ET|K55.06|ICD10CM|Gangrene of intestine|Gangrene of intestine +C2243080|T047|ET|K55.06|ICD10CM|Necrosis of intestine|Necrosis of intestine +C4268633|T047|PT|K55.061|ICD10CM|Focal (segmental) acute infarction of intestine, part unspecified|Focal (segmental) acute infarction of intestine, part unspecified +C4268633|T047|AB|K55.061|ICD10CM|Focal acute infarction of intestine, part unspecified|Focal acute infarction of intestine, part unspecified +C4268634|T047|AB|K55.062|ICD10CM|Diffuse acute infarction of intestine, part unspecified|Diffuse acute infarction of intestine, part unspecified +C4268634|T047|PT|K55.062|ICD10CM|Diffuse acute infarction of intestine, part unspecified|Diffuse acute infarction of intestine, part unspecified +C4268635|T047|AB|K55.069|ICD10CM|Acute infarction of intestine, part and extent unspecified|Acute infarction of intestine, part and extent unspecified +C4268635|T047|PT|K55.069|ICD10CM|Acute infarction of intestine, part and extent unspecified|Acute infarction of intestine, part and extent unspecified +C0267413|T047|ET|K55.1|ICD10CM|Chronic ischemic colitis|Chronic ischemic colitis +C0267415|T047|ET|K55.1|ICD10CM|Chronic ischemic enteritis|Chronic ischemic enteritis +C0267416|T047|ET|K55.1|ICD10CM|Chronic ischemic enterocolitis|Chronic ischemic enterocolitis +C0494764|T047|PT|K55.1|ICD10CM|Chronic vascular disorders of intestine|Chronic vascular disorders of intestine +C0494764|T047|AB|K55.1|ICD10CM|Chronic vascular disorders of intestine|Chronic vascular disorders of intestine +C0494764|T047|PT|K55.1|ICD10|Chronic vascular disorders of intestine|Chronic vascular disorders of intestine +C0267417|T047|ET|K55.1|ICD10CM|Ischemic stricture of intestine|Ischemic stricture of intestine +C1328405|T047|ET|K55.1|ICD10CM|Mesenteric atherosclerosis|Mesenteric atherosclerosis +C1412000|T047|ET|K55.1|ICD10CM|Mesenteric vascular insufficiency|Mesenteric vascular insufficiency +C0267370|T047|HT|K55.2|ICD10CM|Angiodysplasia of colon|Angiodysplasia of colon +C0267370|T047|AB|K55.2|ICD10CM|Angiodysplasia of colon|Angiodysplasia of colon +C0267370|T047|PT|K55.2|ICD10|Angiodysplasia of colon|Angiodysplasia of colon +C2887854|T047|AB|K55.20|ICD10CM|Angiodysplasia of colon without hemorrhage|Angiodysplasia of colon without hemorrhage +C2887854|T047|PT|K55.20|ICD10CM|Angiodysplasia of colon without hemorrhage|Angiodysplasia of colon without hemorrhage +C0837235|T047|PT|K55.21|ICD10CM|Angiodysplasia of colon with hemorrhage|Angiodysplasia of colon with hemorrhage +C0837235|T047|AB|K55.21|ICD10CM|Angiodysplasia of colon with hemorrhage|Angiodysplasia of colon with hemorrhage +C0520459|T047|HT|K55.3|ICD10CM|Necrotizing enterocolitis|Necrotizing enterocolitis +C0520459|T047|AB|K55.3|ICD10CM|Necrotizing enterocolitis|Necrotizing enterocolitis +C0520459|T047|ET|K55.30|ICD10CM|Necrotizing enterocolitis, NOS|Necrotizing enterocolitis, NOS +C4270811|T047|AB|K55.30|ICD10CM|Necrotizing enterocolitis, unspecified|Necrotizing enterocolitis, unspecified +C4270811|T047|PT|K55.30|ICD10CM|Necrotizing enterocolitis, unspecified|Necrotizing enterocolitis, unspecified +C2712742|T047|ET|K55.31|ICD10CM|Necrotizing enterocolitis without pneumatosis, without perforation|Necrotizing enterocolitis without pneumatosis, without perforation +C4268636|T047|AB|K55.31|ICD10CM|Stage 1 necrotizing enterocolitis|Stage 1 necrotizing enterocolitis +C4268636|T047|PT|K55.31|ICD10CM|Stage 1 necrotizing enterocolitis|Stage 1 necrotizing enterocolitis +C2349665|T047|ET|K55.32|ICD10CM|Necrotizing enterocolitis with pneumatosis, without perforation|Necrotizing enterocolitis with pneumatosis, without perforation +C4268637|T047|AB|K55.32|ICD10CM|Stage 2 necrotizing enterocolitis|Stage 2 necrotizing enterocolitis +C4268637|T047|PT|K55.32|ICD10CM|Stage 2 necrotizing enterocolitis|Stage 2 necrotizing enterocolitis +C2349667|T047|ET|K55.33|ICD10CM|Necrotizing enterocolitis with perforation|Necrotizing enterocolitis with perforation +C2349668|T047|ET|K55.33|ICD10CM|Necrotizing enterocolitis with pneumatosis and perforation|Necrotizing enterocolitis with pneumatosis and perforation +C4268638|T047|AB|K55.33|ICD10CM|Stage 3 necrotizing enterocolitis|Stage 3 necrotizing enterocolitis +C4268638|T047|PT|K55.33|ICD10CM|Stage 3 necrotizing enterocolitis|Stage 3 necrotizing enterocolitis +C0348740|T047|PT|K55.8|ICD10CM|Other vascular disorders of intestine|Other vascular disorders of intestine +C0348740|T047|AB|K55.8|ICD10CM|Other vascular disorders of intestine|Other vascular disorders of intestine +C0348740|T047|PT|K55.8|ICD10|Other vascular disorders of intestine|Other vascular disorders of intestine +C0162529|T047|ET|K55.9|ICD10CM|Ischemic colitis|Ischemic colitis +C0267395|T047|ET|K55.9|ICD10CM|Ischemic enteritis|Ischemic enteritis +C0267396|T047|ET|K55.9|ICD10CM|Ischemic enterocolitis|Ischemic enterocolitis +C0400883|T047|PT|K55.9|ICD10|Vascular disorder of intestine, unspecified|Vascular disorder of intestine, unspecified +C0400883|T047|PT|K55.9|ICD10CM|Vascular disorder of intestine, unspecified|Vascular disorder of intestine, unspecified +C0400883|T047|AB|K55.9|ICD10CM|Vascular disorder of intestine, unspecified|Vascular disorder of intestine, unspecified +C0494766|T047|AB|K56|ICD10CM|Paralytic ileus and intestinal obstruction without hernia|Paralytic ileus and intestinal obstruction without hernia +C0494766|T047|HT|K56|ICD10CM|Paralytic ileus and intestinal obstruction without hernia|Paralytic ileus and intestinal obstruction without hernia +C0494766|T047|HT|K56|ICD10|Paralytic ileus and intestinal obstruction without hernia|Paralytic ileus and intestinal obstruction without hernia +C0030446|T047|ET|K56.0|ICD10CM|Paralysis of bowel|Paralysis of bowel +C0267474|T047|ET|K56.0|ICD10CM|Paralysis of colon|Paralysis of colon +C0030446|T047|ET|K56.0|ICD10CM|Paralysis of intestine|Paralysis of intestine +C0030446|T047|PT|K56.0|ICD10CM|Paralytic ileus|Paralytic ileus +C0030446|T047|AB|K56.0|ICD10CM|Paralytic ileus|Paralytic ileus +C0030446|T047|PT|K56.0|ICD10|Paralytic ileus|Paralytic ileus +C0021933|T047|PT|K56.1|ICD10|Intussusception|Intussusception +C0021933|T047|PT|K56.1|ICD10CM|Intussusception|Intussusception +C0021933|T047|AB|K56.1|ICD10CM|Intussusception|Intussusception +C2887855|T046|ET|K56.1|ICD10CM|Intussusception or invagination of bowel|Intussusception or invagination of bowel +C2887856|T046|ET|K56.1|ICD10CM|Intussusception or invagination of colon|Intussusception or invagination of colon +C2887857|T046|ET|K56.1|ICD10CM|Intussusception or invagination of intestine|Intussusception or invagination of intestine +C2887858|T046|ET|K56.1|ICD10CM|Intussusception or invagination of rectum|Intussusception or invagination of rectum +C2887859|T047|ET|K56.2|ICD10CM|Strangulation of colon or intestine|Strangulation of colon or intestine +C2887860|T047|ET|K56.2|ICD10CM|Torsion of colon or intestine|Torsion of colon or intestine +C2887861|T047|ET|K56.2|ICD10CM|Twist of colon or intestine|Twist of colon or intestine +C0042961|T047|PT|K56.2|ICD10|Volvulus|Volvulus +C0042961|T047|PT|K56.2|ICD10CM|Volvulus|Volvulus +C0042961|T047|AB|K56.2|ICD10CM|Volvulus|Volvulus +C0156156|T047|PT|K56.3|ICD10CM|Gallstone ileus|Gallstone ileus +C0156156|T047|AB|K56.3|ICD10CM|Gallstone ileus|Gallstone ileus +C0156156|T047|PT|K56.3|ICD10|Gallstone ileus|Gallstone ileus +C0156156|T047|ET|K56.3|ICD10CM|Obstruction of intestine by gallstone|Obstruction of intestine by gallstone +C0029640|T047|HT|K56.4|ICD10CM|Other impaction of intestine|Other impaction of intestine +C0029640|T047|AB|K56.4|ICD10CM|Other impaction of intestine|Other impaction of intestine +C0029640|T047|PT|K56.4|ICD10|Other impaction of intestine|Other impaction of intestine +C0015734|T033|PT|K56.41|ICD10CM|Fecal impaction|Fecal impaction +C0015734|T033|AB|K56.41|ICD10CM|Fecal impaction|Fecal impaction +C0029640|T047|PT|K56.49|ICD10CM|Other impaction of intestine|Other impaction of intestine +C0029640|T047|AB|K56.49|ICD10CM|Other impaction of intestine|Other impaction of intestine +C2887862|T020|ET|K56.5|ICD10CM|Abdominal hernia due to adhesions with obstruction|Abdominal hernia due to adhesions with obstruction +C0267478|T047|PT|K56.5|ICD10|Intestinal adhesions [bands] with obstruction|Intestinal adhesions [bands] with obstruction +C4509254|T047|HT|K56.5|ICD10CM|Intestinal adhesions [bands] with obstruction (postinfection)|Intestinal adhesions [bands] with obstruction (postinfection) +C4509254|T047|AB|K56.5|ICD10CM|Intestinal adhesions with obstruction (postinfection)|Intestinal adhesions with obstruction (postinfection) +C4509255|T047|ET|K56.5|ICD10CM|Peritoneal adhesions [bands] with intestinal obstruction (postinfection)|Peritoneal adhesions [bands] with intestinal obstruction (postinfection) +C4509256|T047|PT|K56.50|ICD10CM|Intestinal adhesions [bands], unspecified as to partial versus complete obstruction|Intestinal adhesions [bands], unspecified as to partial versus complete obstruction +C0267478|T047|ET|K56.50|ICD10CM|Intestinal adhesions with obstruction NOS|Intestinal adhesions with obstruction NOS +C4509256|T047|AB|K56.50|ICD10CM|Intestnl adhesions, unsp as to partial versus complete obst|Intestnl adhesions, unsp as to partial versus complete obst +C4509257|T047|AB|K56.51|ICD10CM|Intestinal adhesions [bands], with partial obstruction|Intestinal adhesions [bands], with partial obstruction +C4509257|T047|PT|K56.51|ICD10CM|Intestinal adhesions [bands], with partial obstruction|Intestinal adhesions [bands], with partial obstruction +C4509258|T047|ET|K56.51|ICD10CM|Intestinal adhesions with incomplete obstruction|Intestinal adhesions with incomplete obstruction +C4509586|T047|AB|K56.52|ICD10CM|Intestinal adhesions [bands] with complete obstruction|Intestinal adhesions [bands] with complete obstruction +C4509586|T047|PT|K56.52|ICD10CM|Intestinal adhesions [bands] with complete obstruction|Intestinal adhesions [bands] with complete obstruction +C0348741|T047|PT|K56.6|ICD10|Other and unspecified intestinal obstruction|Other and unspecified intestinal obstruction +C0348741|T047|HT|K56.6|ICD10CM|Other and unspecified intestinal obstruction|Other and unspecified intestinal obstruction +C0348741|T047|AB|K56.6|ICD10CM|Other and unspecified intestinal obstruction|Other and unspecified intestinal obstruction +C0021843|T047|AB|K56.60|ICD10CM|Unspecified intestinal obstruction|Unspecified intestinal obstruction +C0021843|T047|HT|K56.60|ICD10CM|Unspecified intestinal obstruction|Unspecified intestinal obstruction +C4509260|T047|ET|K56.600|ICD10CM|Incomplete intestinal obstruction, NOS|Incomplete intestinal obstruction, NOS +C4509259|T047|AB|K56.600|ICD10CM|Partial intestinal obstruction, unspecified as to cause|Partial intestinal obstruction, unspecified as to cause +C4509259|T047|PT|K56.600|ICD10CM|Partial intestinal obstruction, unspecified as to cause|Partial intestinal obstruction, unspecified as to cause +C4509261|T047|AB|K56.601|ICD10CM|Complete intestinal obstruction, unspecified as to cause|Complete intestinal obstruction, unspecified as to cause +C4509261|T047|PT|K56.601|ICD10CM|Complete intestinal obstruction, unspecified as to cause|Complete intestinal obstruction, unspecified as to cause +C0021843|T047|ET|K56.609|ICD10CM|Intestinal obstruction NOS|Intestinal obstruction NOS +C4509262|T047|AB|K56.609|ICD10CM|Unsp intestnl obst, unsp as to partial versus complete obst|Unsp intestnl obst, unsp as to partial versus complete obst +C4509262|T047|PT|K56.609|ICD10CM|Unspecified intestinal obstruction, unspecified as to partial versus complete obstruction|Unspecified intestinal obstruction, unspecified as to partial versus complete obstruction +C0267465|T047|ET|K56.69|ICD10CM|Enterostenosis NOS|Enterostenosis NOS +C1400398|T020|ET|K56.69|ICD10CM|Obstructive ileus NOS|Obstructive ileus NOS +C0021843|T047|ET|K56.69|ICD10CM|Occlusion of colon or intestine NOS|Occlusion of colon or intestine NOS +C0348741|T047|AB|K56.69|ICD10CM|Other intestinal obstruction|Other intestinal obstruction +C0348741|T047|HT|K56.69|ICD10CM|Other intestinal obstruction|Other intestinal obstruction +C0267465|T047|ET|K56.69|ICD10CM|Stenosis of colon or intestine NOS|Stenosis of colon or intestine NOS +C0267465|T047|ET|K56.69|ICD10CM|Stricture of colon or intestine NOS|Stricture of colon or intestine NOS +C4509264|T047|ET|K56.690|ICD10CM|Other incomplete intestinal obstruction|Other incomplete intestinal obstruction +C4509263|T047|AB|K56.690|ICD10CM|Other partial intestinal obstruction|Other partial intestinal obstruction +C4509263|T047|PT|K56.690|ICD10CM|Other partial intestinal obstruction|Other partial intestinal obstruction +C4509265|T047|AB|K56.691|ICD10CM|Other complete intestinal obstruction|Other complete intestinal obstruction +C4509265|T047|PT|K56.691|ICD10CM|Other complete intestinal obstruction|Other complete intestinal obstruction +C4509266|T047|PT|K56.699|ICD10CM|Other intestinal obstruction unspecified as to partial versus complete obstruction|Other intestinal obstruction unspecified as to partial versus complete obstruction +C4509267|T047|ET|K56.699|ICD10CM|Other intestinal obstruction, NEC|Other intestinal obstruction, NEC +C4509266|T047|AB|K56.699|ICD10CM|Other intestnl obst unsp as to partial versus complete obst|Other intestnl obst unsp as to partial versus complete obst +C0348744|T047|PT|K56.7|ICD10CM|Ileus, unspecified|Ileus, unspecified +C0348744|T047|AB|K56.7|ICD10CM|Ileus, unspecified|Ileus, unspecified +C0348744|T047|PT|K56.7|ICD10|Ileus, unspecified|Ileus, unspecified +C4317009|T047|HT|K57|ICD10|Diverticular disease of intestine|Diverticular disease of intestine +C4317009|T047|AB|K57|ICD10CM|Diverticular disease of intestine|Diverticular disease of intestine +C4317009|T047|HT|K57|ICD10CM|Diverticular disease of intestine|Diverticular disease of intestine +C0494768|T047|PT|K57.0|ICD10|Diverticular disease of small intestine with perforation and abscess|Diverticular disease of small intestine with perforation and abscess +C2887865|T047|AB|K57.0|ICD10CM|Diverticulitis of small intestine w perforation and abscess|Diverticulitis of small intestine w perforation and abscess +C2887865|T047|HT|K57.0|ICD10CM|Diverticulitis of small intestine with perforation and abscess|Diverticulitis of small intestine with perforation and abscess +C1395663|T047|ET|K57.0|ICD10CM|Diverticulitis of small intestine with peritonitis|Diverticulitis of small intestine with peritonitis +C2887866|T047|PT|K57.00|ICD10CM|Diverticulitis of small intestine with perforation and abscess without bleeding|Diverticulitis of small intestine with perforation and abscess without bleeding +C2887866|T047|AB|K57.00|ICD10CM|Dvtrcli of sm int w perforation and abscess w/o bleeding|Dvtrcli of sm int w perforation and abscess w/o bleeding +C2887867|T047|PT|K57.01|ICD10CM|Diverticulitis of small intestine with perforation and abscess with bleeding|Diverticulitis of small intestine with perforation and abscess with bleeding +C2887867|T047|AB|K57.01|ICD10CM|Dvtrcli of sm int w perforation and abscess w bleeding|Dvtrcli of sm int w perforation and abscess w bleeding +C0494769|T047|AB|K57.1|ICD10CM|Diverticular disease of sm int w/o perforation or abscess|Diverticular disease of sm int w/o perforation or abscess +C0494769|T047|HT|K57.1|ICD10CM|Diverticular disease of small intestine without perforation or abscess|Diverticular disease of small intestine without perforation or abscess +C0494769|T047|PT|K57.1|ICD10|Diverticular disease of small intestine without perforation or abscess|Diverticular disease of small intestine without perforation or abscess +C0267498|T047|ET|K57.10|ICD10CM|Diverticular disease of small intestine NOS|Diverticular disease of small intestine NOS +C2887868|T047|PT|K57.10|ICD10CM|Diverticulosis of small intestine without perforation or abscess without bleeding|Diverticulosis of small intestine without perforation or abscess without bleeding +C2887868|T047|AB|K57.10|ICD10CM|Dvrtclos of sm int w/o perforation or abscess w/o bleeding|Dvrtclos of sm int w/o perforation or abscess w/o bleeding +C2887869|T047|PT|K57.11|ICD10CM|Diverticulosis of small intestine without perforation or abscess with bleeding|Diverticulosis of small intestine without perforation or abscess with bleeding +C2887869|T047|AB|K57.11|ICD10CM|Dvrtclos of sm int w/o perforation or abscess w bleeding|Dvrtclos of sm int w/o perforation or abscess w bleeding +C2887870|T047|PT|K57.12|ICD10CM|Diverticulitis of small intestine without perforation or abscess without bleeding|Diverticulitis of small intestine without perforation or abscess without bleeding +C2887870|T047|AB|K57.12|ICD10CM|Dvtrcli of sm int w/o perforation or abscess w/o bleeding|Dvtrcli of sm int w/o perforation or abscess w/o bleeding +C2887871|T047|PT|K57.13|ICD10CM|Diverticulitis of small intestine without perforation or abscess with bleeding|Diverticulitis of small intestine without perforation or abscess with bleeding +C2887871|T047|AB|K57.13|ICD10CM|Dvtrcli of sm int w/o perforation or abscess w bleeding|Dvtrcli of sm int w/o perforation or abscess w bleeding +C0494770|T047|PT|K57.2|ICD10|Diverticular disease of large intestine with perforation and abscess|Diverticular disease of large intestine with perforation and abscess +C2887872|T047|ET|K57.2|ICD10CM|Diverticulitis of colon with peritonitis|Diverticulitis of colon with peritonitis +C2887873|T047|AB|K57.2|ICD10CM|Diverticulitis of large intestine w perforation and abscess|Diverticulitis of large intestine w perforation and abscess +C2887873|T047|HT|K57.2|ICD10CM|Diverticulitis of large intestine with perforation and abscess|Diverticulitis of large intestine with perforation and abscess +C2887874|T047|PT|K57.20|ICD10CM|Diverticulitis of large intestine with perforation and abscess without bleeding|Diverticulitis of large intestine with perforation and abscess without bleeding +C2887874|T047|AB|K57.20|ICD10CM|Dvtrcli of lg int w perforation and abscess w/o bleeding|Dvtrcli of lg int w perforation and abscess w/o bleeding +C2887875|T047|PT|K57.21|ICD10CM|Diverticulitis of large intestine with perforation and abscess with bleeding|Diverticulitis of large intestine with perforation and abscess with bleeding +C2887875|T047|AB|K57.21|ICD10CM|Dvtrcli of lg int w perforation and abscess w bleeding|Dvtrcli of lg int w perforation and abscess w bleeding +C0494771|T047|PT|K57.3|ICD10|Diverticular disease of large intestine without perforation or abscess|Diverticular disease of large intestine without perforation or abscess +C0494771|T047|HT|K57.3|ICD10CM|Diverticular disease of large intestine without perforation or abscess|Diverticular disease of large intestine without perforation or abscess +C0494771|T047|AB|K57.3|ICD10CM|Diverticular disease of lg int w/o perforation or abscess|Diverticular disease of lg int w/o perforation or abscess +C0012819|T047|ET|K57.30|ICD10CM|Diverticular disease of colon NOS|Diverticular disease of colon NOS +C2887876|T047|PT|K57.30|ICD10CM|Diverticulosis of large intestine without perforation or abscess without bleeding|Diverticulosis of large intestine without perforation or abscess without bleeding +C2887876|T047|AB|K57.30|ICD10CM|Dvrtclos of lg int w/o perforation or abscess w/o bleeding|Dvrtclos of lg int w/o perforation or abscess w/o bleeding +C2887877|T047|PT|K57.31|ICD10CM|Diverticulosis of large intestine without perforation or abscess with bleeding|Diverticulosis of large intestine without perforation or abscess with bleeding +C2887877|T047|AB|K57.31|ICD10CM|Dvrtclos of lg int w/o perforation or abscess w bleeding|Dvrtclos of lg int w/o perforation or abscess w bleeding +C2887878|T047|PT|K57.32|ICD10CM|Diverticulitis of large intestine without perforation or abscess without bleeding|Diverticulitis of large intestine without perforation or abscess without bleeding +C2887878|T047|AB|K57.32|ICD10CM|Dvtrcli of lg int w/o perforation or abscess w/o bleeding|Dvtrcli of lg int w/o perforation or abscess w/o bleeding +C2887879|T047|PT|K57.33|ICD10CM|Diverticulitis of large intestine without perforation or abscess with bleeding|Diverticulitis of large intestine without perforation or abscess with bleeding +C2887879|T047|AB|K57.33|ICD10CM|Dvtrcli of lg int w/o perforation or abscess w bleeding|Dvtrcli of lg int w/o perforation or abscess w bleeding +C0348895|T047|PT|K57.4|ICD10|Diverticular disease of both small and large intestine with perforation and abscess|Diverticular disease of both small and large intestine with perforation and abscess +C3648499|T047|HT|K57.4|ICD10CM|Diverticulitis of both small and large intestine with perforation and abscess|Diverticulitis of both small and large intestine with perforation and abscess +C2887880|T047|ET|K57.4|ICD10CM|Diverticulitis of both small and large intestine with peritonitis|Diverticulitis of both small and large intestine with peritonitis +C3648499|T047|AB|K57.4|ICD10CM|Dvtrcli of both small and lg int w perforation and abscess|Dvtrcli of both small and lg int w perforation and abscess +C2887882|T047|PT|K57.40|ICD10CM|Diverticulitis of both small and large intestine with perforation and abscess without bleeding|Diverticulitis of both small and large intestine with perforation and abscess without bleeding +C2887882|T047|AB|K57.40|ICD10CM|Dvtrcli of both small and lg int w perf and abscs w/o bleed|Dvtrcli of both small and lg int w perf and abscs w/o bleed +C2887883|T047|PT|K57.41|ICD10CM|Diverticulitis of both small and large intestine with perforation and abscess with bleeding|Diverticulitis of both small and large intestine with perforation and abscess with bleeding +C2887883|T047|AB|K57.41|ICD10CM|Dvtrcli of both small and lg int w perf and abscess w bleed|Dvtrcli of both small and lg int w perf and abscess w bleed +C0348894|T047|AB|K57.5|ICD10CM|Diverticular dis of both small and lg int w/o perf or abscs|Diverticular dis of both small and lg int w/o perf or abscs +C0348894|T047|HT|K57.5|ICD10CM|Diverticular disease of both small and large intestine without perforation or abscess|Diverticular disease of both small and large intestine without perforation or abscess +C0348894|T047|PT|K57.5|ICD10|Diverticular disease of both small and large intestine without perforation or abscess|Diverticular disease of both small and large intestine without perforation or abscess +C2887884|T047|ET|K57.50|ICD10CM|Diverticular disease of both small and large intestine NOS|Diverticular disease of both small and large intestine NOS +C2887885|T047|PT|K57.50|ICD10CM|Diverticulosis of both small and large intestine without perforation or abscess without bleeding|Diverticulosis of both small and large intestine without perforation or abscess without bleeding +C2887885|T047|AB|K57.50|ICD10CM|Dvrtclos of both sm and lg int w/o perf or abscs w/o bleed|Dvrtclos of both sm and lg int w/o perf or abscs w/o bleed +C2887886|T047|PT|K57.51|ICD10CM|Diverticulosis of both small and large intestine without perforation or abscess with bleeding|Diverticulosis of both small and large intestine without perforation or abscess with bleeding +C2887886|T047|AB|K57.51|ICD10CM|Dvrtclos of both small and lg int w/o perf or abscs w bleed|Dvrtclos of both small and lg int w/o perf or abscs w bleed +C2887887|T047|PT|K57.52|ICD10CM|Diverticulitis of both small and large intestine without perforation or abscess without bleeding|Diverticulitis of both small and large intestine without perforation or abscess without bleeding +C2887887|T047|AB|K57.52|ICD10CM|Dvtrcli of both small and lg int w/o perf or abscs w/o bleed|Dvtrcli of both small and lg int w/o perf or abscs w/o bleed +C2887888|T047|PT|K57.53|ICD10CM|Diverticulitis of both small and large intestine without perforation or abscess with bleeding|Diverticulitis of both small and large intestine without perforation or abscess with bleeding +C2887888|T047|AB|K57.53|ICD10CM|Dvtrcli of both small and lg int w/o perf or abscess w bleed|Dvtrcli of both small and lg int w/o perf or abscess w bleed +C0494772|T047|PT|K57.8|ICD10|Diverticular disease of intestine, part unspecified, with perforation and abscess|Diverticular disease of intestine, part unspecified, with perforation and abscess +C2887889|T047|ET|K57.8|ICD10CM|Diverticulitis of intestine NOS with peritonitis|Diverticulitis of intestine NOS with peritonitis +C2887890|T047|HT|K57.8|ICD10CM|Diverticulitis of intestine, part unspecified, with perforation and abscess|Diverticulitis of intestine, part unspecified, with perforation and abscess +C2887890|T047|AB|K57.8|ICD10CM|Dvtrcli of intestine, part unsp, w perforation and abscess|Dvtrcli of intestine, part unsp, w perforation and abscess +C2887891|T047|PT|K57.80|ICD10CM|Diverticulitis of intestine, part unspecified, with perforation and abscess without bleeding|Diverticulitis of intestine, part unspecified, with perforation and abscess without bleeding +C2887891|T047|AB|K57.80|ICD10CM|Dvtrcli of intest, part unsp, w perf and abscess w/o bleed|Dvtrcli of intest, part unsp, w perf and abscess w/o bleed +C2887892|T047|PT|K57.81|ICD10CM|Diverticulitis of intestine, part unspecified, with perforation and abscess with bleeding|Diverticulitis of intestine, part unspecified, with perforation and abscess with bleeding +C2887892|T047|AB|K57.81|ICD10CM|Dvtrcli of intest, part unsp, w perf and abscess w bleeding|Dvtrcli of intest, part unsp, w perf and abscess w bleeding +C0494773|T047|AB|K57.9|ICD10CM|Diverticular disease of intest, part unsp, w/o perf or abscs|Diverticular disease of intest, part unsp, w/o perf or abscs +C0494773|T047|HT|K57.9|ICD10CM|Diverticular disease of intestine, part unspecified, without perforation or abscess|Diverticular disease of intestine, part unspecified, without perforation or abscess +C0494773|T047|PT|K57.9|ICD10|Diverticular disease of intestine, part unspecified, without perforation or abscess|Diverticular disease of intestine, part unspecified, without perforation or abscess +C4317009|T047|ET|K57.90|ICD10CM|Diverticular disease of intestine NOS|Diverticular disease of intestine NOS +C2887893|T047|PT|K57.90|ICD10CM|Diverticulosis of intestine, part unspecified, without perforation or abscess without bleeding|Diverticulosis of intestine, part unspecified, without perforation or abscess without bleeding +C2887893|T047|AB|K57.90|ICD10CM|Dvrtclos of intest, part unsp, w/o perf or abscess w/o bleed|Dvrtclos of intest, part unsp, w/o perf or abscess w/o bleed +C2887894|T047|PT|K57.91|ICD10CM|Diverticulosis of intestine, part unspecified, without perforation or abscess with bleeding|Diverticulosis of intestine, part unspecified, without perforation or abscess with bleeding +C2887894|T047|AB|K57.91|ICD10CM|Dvrtclos of intest, part unsp, w/o perf or abscess w bleed|Dvrtclos of intest, part unsp, w/o perf or abscess w bleed +C2887895|T047|PT|K57.92|ICD10CM|Diverticulitis of intestine, part unspecified, without perforation or abscess without bleeding|Diverticulitis of intestine, part unspecified, without perforation or abscess without bleeding +C2887895|T047|AB|K57.92|ICD10CM|Dvtrcli of intest, part unsp, w/o perf or abscess w/o bleed|Dvtrcli of intest, part unsp, w/o perf or abscess w/o bleed +C2887896|T047|PT|K57.93|ICD10CM|Diverticulitis of intestine, part unspecified, without perforation or abscess with bleeding|Diverticulitis of intestine, part unspecified, without perforation or abscess with bleeding +C2887896|T047|AB|K57.93|ICD10CM|Dvtrcli of intest, part unsp, w/o perf or abscess w bleeding|Dvtrcli of intest, part unsp, w/o perf or abscess w bleeding +C0022104|T047|HT|K58|ICD10|Irritable bowel syndrome|Irritable bowel syndrome +C0022104|T047|HT|K58|ICD10CM|Irritable bowel syndrome|Irritable bowel syndrome +C0022104|T047|AB|K58|ICD10CM|Irritable bowel syndrome|Irritable bowel syndrome +C0022104|T047|ET|K58|ICD10CM|irritable colon|irritable colon +C0022104|T047|ET|K58|ICD10CM|spastic colon|spastic colon +C0348898|T047|PT|K58.0|ICD10AE|Irritable bowel syndrome with diarrhea|Irritable bowel syndrome with diarrhea +C0348898|T047|PT|K58.0|ICD10CM|Irritable bowel syndrome with diarrhea|Irritable bowel syndrome with diarrhea +C0348898|T047|AB|K58.0|ICD10CM|Irritable bowel syndrome with diarrhea|Irritable bowel syndrome with diarrhea +C0348898|T047|PT|K58.0|ICD10|Irritable bowel syndrome with diarrhoea|Irritable bowel syndrome with diarrhoea +C4268639|T047|AB|K58.1|ICD10CM|Irritable bowel syndrome with constipation|Irritable bowel syndrome with constipation +C4268639|T047|PT|K58.1|ICD10CM|Irritable bowel syndrome with constipation|Irritable bowel syndrome with constipation +C4268640|T047|AB|K58.2|ICD10CM|Mixed irritable bowel syndrome|Mixed irritable bowel syndrome +C4268640|T047|PT|K58.2|ICD10CM|Mixed irritable bowel syndrome|Mixed irritable bowel syndrome +C4268641|T047|AB|K58.8|ICD10CM|Other irritable bowel syndrome|Other irritable bowel syndrome +C4268641|T047|PT|K58.8|ICD10CM|Other irritable bowel syndrome|Other irritable bowel syndrome +C0022104|T047|ET|K58.9|ICD10CM|Irritable bowel syndrome NOS|Irritable bowel syndrome NOS +C0494774|T047|PT|K58.9|ICD10AE|Irritable bowel syndrome without diarrhea|Irritable bowel syndrome without diarrhea +C0494774|T047|PT|K58.9|ICD10CM|Irritable bowel syndrome without diarrhea|Irritable bowel syndrome without diarrhea +C0494774|T047|AB|K58.9|ICD10CM|Irritable bowel syndrome without diarrhea|Irritable bowel syndrome without diarrhea +C0494774|T047|PT|K58.9|ICD10|Irritable bowel syndrome without diarrhoea|Irritable bowel syndrome without diarrhoea +C0341089|T047|HT|K59|ICD10|Other functional intestinal disorders|Other functional intestinal disorders +C0341089|T047|AB|K59|ICD10CM|Other functional intestinal disorders|Other functional intestinal disorders +C0341089|T047|HT|K59|ICD10CM|Other functional intestinal disorders|Other functional intestinal disorders +C0009806|T184|PT|K59.0|ICD10|Constipation|Constipation +C0009806|T184|HT|K59.0|ICD10CM|Constipation|Constipation +C0009806|T184|AB|K59.0|ICD10CM|Constipation|Constipation +C0009806|T184|AB|K59.00|ICD10CM|Constipation, unspecified|Constipation, unspecified +C0009806|T184|PT|K59.00|ICD10CM|Constipation, unspecified|Constipation, unspecified +C0729262|T033|PT|K59.01|ICD10CM|Slow transit constipation|Slow transit constipation +C0729262|T033|AB|K59.01|ICD10CM|Slow transit constipation|Slow transit constipation +C0949134|T047|AB|K59.02|ICD10CM|Outlet dysfunction constipation|Outlet dysfunction constipation +C0949134|T047|PT|K59.02|ICD10CM|Outlet dysfunction constipation|Outlet dysfunction constipation +C0267511|T047|AB|K59.03|ICD10CM|Drug induced constipation|Drug induced constipation +C0267511|T047|PT|K59.03|ICD10CM|Drug induced constipation|Drug induced constipation +C0267509|T047|AB|K59.04|ICD10CM|Chronic idiopathic constipation|Chronic idiopathic constipation +C0267509|T047|PT|K59.04|ICD10CM|Chronic idiopathic constipation|Chronic idiopathic constipation +C0401146|T047|ET|K59.04|ICD10CM|Functional constipation|Functional constipation +C0401149|T184|ET|K59.09|ICD10CM|Chronic constipation|Chronic constipation +C0949135|T047|AB|K59.09|ICD10CM|Other constipation|Other constipation +C0949135|T047|PT|K59.09|ICD10CM|Other constipation|Other constipation +C0156173|T047|PT|K59.1|ICD10CM|Functional diarrhea|Functional diarrhea +C0156173|T047|AB|K59.1|ICD10CM|Functional diarrhea|Functional diarrhea +C0156173|T047|PT|K59.1|ICD10AE|Functional diarrhea|Functional diarrhea +C0156173|T047|PT|K59.1|ICD10|Functional diarrhoea|Functional diarrhoea +C0869059|T046|PT|K59.2|ICD10|Neurogenic bowel, not elsewhere classified|Neurogenic bowel, not elsewhere classified +C0869059|T046|PT|K59.2|ICD10CM|Neurogenic bowel, not elsewhere classified|Neurogenic bowel, not elsewhere classified +C0869059|T046|AB|K59.2|ICD10CM|Neurogenic bowel, not elsewhere classified|Neurogenic bowel, not elsewhere classified +C0025160|T046|ET|K59.3|ICD10CM|Dilatation of colon|Dilatation of colon +C0494775|T047|AB|K59.3|ICD10CM|Megacolon, not elsewhere classified|Megacolon, not elsewhere classified +C0494775|T047|HT|K59.3|ICD10CM|Megacolon, not elsewhere classified|Megacolon, not elsewhere classified +C0494775|T047|PT|K59.3|ICD10|Megacolon, not elsewhere classified|Megacolon, not elsewhere classified +C0025162|T047|PT|K59.31|ICD10CM|Toxic megacolon|Toxic megacolon +C0025162|T047|AB|K59.31|ICD10CM|Toxic megacolon|Toxic megacolon +C0025160|T046|ET|K59.39|ICD10CM|Megacolon NOS|Megacolon NOS +C4268642|T047|AB|K59.39|ICD10CM|Other megacolon|Other megacolon +C4268642|T047|PT|K59.39|ICD10CM|Other megacolon|Other megacolon +C0152167|T047|PT|K59.4|ICD10|Anal spasm|Anal spasm +C0152167|T047|PT|K59.4|ICD10CM|Anal spasm|Anal spasm +C0152167|T047|AB|K59.4|ICD10CM|Anal spasm|Anal spasm +C0423738|T047|ET|K59.4|ICD10CM|Proctalgia fugax|Proctalgia fugax +C0267516|T046|ET|K59.8|ICD10CM|Atony of colon|Atony of colon +C0494776|T047|PT|K59.8|ICD10|Other specified functional intestinal disorders|Other specified functional intestinal disorders +C0494776|T047|PT|K59.8|ICD10CM|Other specified functional intestinal disorders|Other specified functional intestinal disorders +C0494776|T047|AB|K59.8|ICD10CM|Other specified functional intestinal disorders|Other specified functional intestinal disorders +C2887897|T047|ET|K59.8|ICD10CM|Pseudo-obstruction (acute) (chronic) of intestine|Pseudo-obstruction (acute) (chronic) of intestine +C0016807|T047|PT|K59.9|ICD10|Functional intestinal disorder, unspecified|Functional intestinal disorder, unspecified +C0016807|T047|PT|K59.9|ICD10CM|Functional intestinal disorder, unspecified|Functional intestinal disorder, unspecified +C0016807|T047|AB|K59.9|ICD10CM|Functional intestinal disorder, unspecified|Functional intestinal disorder, unspecified +C0494777|T190|HT|K60|ICD10|Fissure and fistula of anal and rectal regions|Fissure and fistula of anal and rectal regions +C0494777|T190|AB|K60|ICD10CM|Fissure and fistula of anal and rectal regions|Fissure and fistula of anal and rectal regions +C0494777|T190|HT|K60|ICD10CM|Fissure and fistula of anal and rectal regions|Fissure and fistula of anal and rectal regions +C0349070|T020|PT|K60.0|ICD10CM|Acute anal fissure|Acute anal fissure +C0349070|T020|AB|K60.0|ICD10CM|Acute anal fissure|Acute anal fissure +C0349070|T020|PT|K60.0|ICD10|Acute anal fissure|Acute anal fissure +C0349071|T020|PT|K60.1|ICD10|Chronic anal fissure|Chronic anal fissure +C0349071|T020|PT|K60.1|ICD10CM|Chronic anal fissure|Chronic anal fissure +C0349071|T020|AB|K60.1|ICD10CM|Chronic anal fissure|Chronic anal fissure +C0016167|T047|PT|K60.2|ICD10CM|Anal fissure, unspecified|Anal fissure, unspecified +C0016167|T047|AB|K60.2|ICD10CM|Anal fissure, unspecified|Anal fissure, unspecified +C0016167|T047|PT|K60.2|ICD10|Anal fissure, unspecified|Anal fissure, unspecified +C0205929|T020|PT|K60.3|ICD10|Anal fistula|Anal fistula +C0205929|T020|PT|K60.3|ICD10CM|Anal fistula|Anal fistula +C0205929|T020|AB|K60.3|ICD10CM|Anal fistula|Anal fistula +C0267563|T047|ET|K60.4|ICD10CM|Fistula of rectum to skin|Fistula of rectum to skin +C0034884|T190|PT|K60.4|ICD10|Rectal fistula|Rectal fistula +C0034884|T190|PT|K60.4|ICD10CM|Rectal fistula|Rectal fistula +C0034884|T190|AB|K60.4|ICD10CM|Rectal fistula|Rectal fistula +C0149889|T046|PT|K60.5|ICD10CM|Anorectal fistula|Anorectal fistula +C0149889|T046|AB|K60.5|ICD10CM|Anorectal fistula|Anorectal fistula +C0149889|T046|PT|K60.5|ICD10|Anorectal fistula|Anorectal fistula +C0267567|T047|HT|K61|ICD10|Abscess of anal and rectal regions|Abscess of anal and rectal regions +C0267567|T047|HT|K61|ICD10CM|Abscess of anal and rectal regions|Abscess of anal and rectal regions +C0267567|T047|AB|K61|ICD10CM|Abscess of anal and rectal regions|Abscess of anal and rectal regions +C0267567|T047|ET|K61|ICD10CM|abscess of anal and rectal regions|abscess of anal and rectal regions +C4290212|T047|ET|K61|ICD10CM|cellulitis of anal and rectal regions|cellulitis of anal and rectal regions +C0281778|T047|PT|K61.0|ICD10CM|Anal abscess|Anal abscess +C0281778|T047|AB|K61.0|ICD10CM|Anal abscess|Anal abscess +C0281778|T047|PT|K61.0|ICD10|Anal abscess|Anal abscess +C0031019|T047|ET|K61.0|ICD10CM|Perianal abscess|Perianal abscess +C0267566|T046|ET|K61.1|ICD10CM|Perirectal abscess|Perirectal abscess +C0149770|T046|PT|K61.1|ICD10CM|Rectal abscess|Rectal abscess +C0149770|T046|AB|K61.1|ICD10CM|Rectal abscess|Rectal abscess +C0149770|T046|PT|K61.1|ICD10|Rectal abscess|Rectal abscess +C0267567|T047|PT|K61.2|ICD10|Anorectal abscess|Anorectal abscess +C0267567|T047|PT|K61.2|ICD10CM|Anorectal abscess|Anorectal abscess +C0267567|T047|AB|K61.2|ICD10CM|Anorectal abscess|Anorectal abscess +C0149816|T047|PT|K61.3|ICD10|Ischiorectal abscess|Ischiorectal abscess +C0149816|T047|AB|K61.3|ICD10CM|Ischiorectal abscess|Ischiorectal abscess +C0149816|T047|HT|K61.3|ICD10CM|Ischiorectal abscess|Ischiorectal abscess +C4703281|T047|AB|K61.31|ICD10CM|Horseshoe abscess|Horseshoe abscess +C4703281|T047|PT|K61.31|ICD10CM|Horseshoe abscess|Horseshoe abscess +C1385474|T047|ET|K61.39|ICD10CM|Abscess of ischiorectal fossa|Abscess of ischiorectal fossa +C0149816|T047|ET|K61.39|ICD10CM|Ischiorectal abscess, NOS|Ischiorectal abscess, NOS +C4552696|T047|AB|K61.39|ICD10CM|Other ischiorectal abscess|Other ischiorectal abscess +C4552696|T047|PT|K61.39|ICD10CM|Other ischiorectal abscess|Other ischiorectal abscess +C0341384|T047|ET|K61.4|ICD10CM|Intersphincteric abscess|Intersphincteric abscess +C0341383|T047|PT|K61.4|ICD10CM|Intrasphincteric abscess|Intrasphincteric abscess +C0341383|T047|AB|K61.4|ICD10CM|Intrasphincteric abscess|Intrasphincteric abscess +C0341383|T047|PT|K61.4|ICD10|Intrasphincteric abscess|Intrasphincteric abscess +C0341385|T047|PT|K61.5|ICD10CM|Supralevator abscess|Supralevator abscess +C0341385|T047|AB|K61.5|ICD10CM|Supralevator abscess|Supralevator abscess +C4544984|T047|ET|K62|ICD10CM|anal canal|anal canal +C0341326|T047|AB|K62|ICD10CM|Other diseases of anus and rectum|Other diseases of anus and rectum +C0341326|T047|HT|K62|ICD10CM|Other diseases of anus and rectum|Other diseases of anus and rectum +C0341326|T047|HT|K62|ICD10|Other diseases of anus and rectum|Other diseases of anus and rectum +C0267573|T191|PT|K62.0|ICD10|Anal polyp|Anal polyp +C0267573|T191|PT|K62.0|ICD10CM|Anal polyp|Anal polyp +C0267573|T191|AB|K62.0|ICD10CM|Anal polyp|Anal polyp +C0034887|T191|PT|K62.1|ICD10|Rectal polyp|Rectal polyp +C0034887|T191|PT|K62.1|ICD10CM|Rectal polyp|Rectal polyp +C0034887|T191|AB|K62.1|ICD10CM|Rectal polyp|Rectal polyp +C0242473|T020|PT|K62.2|ICD10|Anal prolapse|Anal prolapse +C0242473|T020|PT|K62.2|ICD10CM|Anal prolapse|Anal prolapse +C0242473|T020|AB|K62.2|ICD10CM|Anal prolapse|Anal prolapse +C0242473|T020|ET|K62.2|ICD10CM|Prolapse of anal canal|Prolapse of anal canal +C0034888|T047|ET|K62.3|ICD10CM|Prolapse of rectal mucosa|Prolapse of rectal mucosa +C0034888|T047|PT|K62.3|ICD10CM|Rectal prolapse|Rectal prolapse +C0034888|T047|AB|K62.3|ICD10CM|Rectal prolapse|Rectal prolapse +C0034888|T047|PT|K62.3|ICD10|Rectal prolapse|Rectal prolapse +C0156183|T190|PT|K62.4|ICD10|Stenosis of anus and rectum|Stenosis of anus and rectum +C0156183|T190|PT|K62.4|ICD10CM|Stenosis of anus and rectum|Stenosis of anus and rectum +C0156183|T190|AB|K62.4|ICD10CM|Stenosis of anus and rectum|Stenosis of anus and rectum +C2887899|T047|ET|K62.4|ICD10CM|Stricture of anus (sphincter)|Stricture of anus (sphincter) +C0019081|T046|PT|K62.5|ICD10|Haemorrhage of anus and rectum|Haemorrhage of anus and rectum +C0019081|T046|PT|K62.5|ICD10CM|Hemorrhage of anus and rectum|Hemorrhage of anus and rectum +C0019081|T046|AB|K62.5|ICD10CM|Hemorrhage of anus and rectum|Hemorrhage of anus and rectum +C0019081|T046|PT|K62.5|ICD10AE|Hemorrhage of anus and rectum|Hemorrhage of anus and rectum +C2887900|T047|ET|K62.6|ICD10CM|Solitary ulcer of anus and rectum|Solitary ulcer of anus and rectum +C2887901|T047|ET|K62.6|ICD10CM|Stercoral ulcer of anus and rectum|Stercoral ulcer of anus and rectum +C0400832|T047|PT|K62.6|ICD10CM|Ulcer of anus and rectum|Ulcer of anus and rectum +C0400832|T047|AB|K62.6|ICD10CM|Ulcer of anus and rectum|Ulcer of anus and rectum +C0400832|T047|PT|K62.6|ICD10|Ulcer of anus and rectum|Ulcer of anus and rectum +C0400827|T046|PT|K62.7|ICD10|Radiation proctitis|Radiation proctitis +C0400827|T046|PT|K62.7|ICD10CM|Radiation proctitis|Radiation proctitis +C0400827|T046|AB|K62.7|ICD10CM|Radiation proctitis|Radiation proctitis +C0348742|T047|HT|K62.8|ICD10CM|Other specified diseases of anus and rectum|Other specified diseases of anus and rectum +C0348742|T047|AB|K62.8|ICD10CM|Other specified diseases of anus and rectum|Other specified diseases of anus and rectum +C0348742|T047|PT|K62.8|ICD10|Other specified diseases of anus and rectum|Other specified diseases of anus and rectum +C2887902|T047|AB|K62.81|ICD10CM|Anal sphincter tear (healed) (nontraumatic) (old)|Anal sphincter tear (healed) (nontraumatic) (old) +C2887902|T047|PT|K62.81|ICD10CM|Anal sphincter tear (healed) (nontraumatic) (old)|Anal sphincter tear (healed) (nontraumatic) (old) +C0016167|T047|ET|K62.81|ICD10CM|Tear of anus, nontraumatic|Tear of anus, nontraumatic +C2349568|T191|ET|K62.82|ICD10CM|Anal intraepithelial neoplasia I and II (AIN I and II) (histologically confirmed)|Anal intraepithelial neoplasia I and II (AIN I and II) (histologically confirmed) +C0347129|T191|PT|K62.82|ICD10CM|Dysplasia of anus|Dysplasia of anus +C0347129|T191|AB|K62.82|ICD10CM|Dysplasia of anus|Dysplasia of anus +C0347129|T191|ET|K62.82|ICD10CM|Dysplasia of anus NOS|Dysplasia of anus NOS +C2349569|T033|ET|K62.82|ICD10CM|Mild and moderate dysplasia of anus (histologically confirmed)|Mild and moderate dysplasia of anus (histologically confirmed) +C0348742|T047|PT|K62.89|ICD10CM|Other specified diseases of anus and rectum|Other specified diseases of anus and rectum +C0348742|T047|AB|K62.89|ICD10CM|Other specified diseases of anus and rectum|Other specified diseases of anus and rectum +C0033246|T047|ET|K62.89|ICD10CM|Proctitis NOS|Proctitis NOS +C0494780|T047|PT|K62.9|ICD10|Disease of anus and rectum, unspecified|Disease of anus and rectum, unspecified +C0494780|T047|PT|K62.9|ICD10CM|Disease of anus and rectum, unspecified|Disease of anus and rectum, unspecified +C0494780|T047|AB|K62.9|ICD10CM|Disease of anus and rectum, unspecified|Disease of anus and rectum, unspecified +C0156182|T047|HT|K63|ICD10|Other diseases of intestine|Other diseases of intestine +C0156182|T047|AB|K63|ICD10CM|Other diseases of intestine|Other diseases of intestine +C0156182|T047|HT|K63|ICD10CM|Other diseases of intestine|Other diseases of intestine +C0156185|T047|PT|K63.0|ICD10CM|Abscess of intestine|Abscess of intestine +C0156185|T047|AB|K63.0|ICD10CM|Abscess of intestine|Abscess of intestine +C0156185|T047|PT|K63.0|ICD10|Abscess of intestine|Abscess of intestine +C2887903|T047|ET|K63.1|ICD10CM|Perforation (nontraumatic) of rectum|Perforation (nontraumatic) of rectum +C0392063|T046|PT|K63.1|ICD10CM|Perforation of intestine (nontraumatic)|Perforation of intestine (nontraumatic) +C0392063|T046|AB|K63.1|ICD10CM|Perforation of intestine (nontraumatic)|Perforation of intestine (nontraumatic) +C0392063|T046|PT|K63.1|ICD10|Perforation of intestine (nontraumatic)|Perforation of intestine (nontraumatic) +C0021833|T190|PT|K63.2|ICD10|Fistula of intestine|Fistula of intestine +C0021833|T190|PT|K63.2|ICD10CM|Fistula of intestine|Fistula of intestine +C0021833|T190|AB|K63.2|ICD10CM|Fistula of intestine|Fistula of intestine +C0341282|T047|ET|K63.3|ICD10CM|Primary ulcer of small intestine|Primary ulcer of small intestine +C0151971|T047|PT|K63.3|ICD10|Ulcer of intestine|Ulcer of intestine +C0151971|T047|PT|K63.3|ICD10CM|Ulcer of intestine|Ulcer of intestine +C0151971|T047|AB|K63.3|ICD10CM|Ulcer of intestine|Ulcer of intestine +C0267493|T047|PT|K63.4|ICD10CM|Enteroptosis|Enteroptosis +C0267493|T047|AB|K63.4|ICD10CM|Enteroptosis|Enteroptosis +C0267493|T047|PT|K63.4|ICD10|Enteroptosis|Enteroptosis +C0009376|T190|PT|K63.5|ICD10|Polyp of colon|Polyp of colon +C0009376|T190|PT|K63.5|ICD10CM|Polyp of colon|Polyp of colon +C0009376|T190|AB|K63.5|ICD10CM|Polyp of colon|Polyp of colon +C0348743|T047|PT|K63.8|ICD10|Other specified diseases of intestine|Other specified diseases of intestine +C0348743|T047|HT|K63.8|ICD10CM|Other specified diseases of intestine|Other specified diseases of intestine +C0348743|T047|AB|K63.8|ICD10CM|Other specified diseases of intestine|Other specified diseases of intestine +C2183395|T047|PT|K63.81|ICD10CM|Dieulafoy lesion of intestine|Dieulafoy lesion of intestine +C2183395|T047|AB|K63.81|ICD10CM|Dieulafoy lesion of intestine|Dieulafoy lesion of intestine +C0348743|T047|PT|K63.89|ICD10CM|Other specified diseases of intestine|Other specified diseases of intestine +C0348743|T047|AB|K63.89|ICD10CM|Other specified diseases of intestine|Other specified diseases of intestine +C0021831|T047|PT|K63.9|ICD10|Disease of intestine, unspecified|Disease of intestine, unspecified +C0021831|T047|PT|K63.9|ICD10CM|Disease of intestine, unspecified|Disease of intestine, unspecified +C0021831|T047|AB|K63.9|ICD10CM|Disease of intestine, unspecified|Disease of intestine, unspecified +C3264447|T047|AB|K64|ICD10CM|Hemorrhoids and perianal venous thrombosis|Hemorrhoids and perianal venous thrombosis +C3264447|T047|HT|K64|ICD10CM|Hemorrhoids and perianal venous thrombosis|Hemorrhoids and perianal venous thrombosis +C0019112|T047|ET|K64|ICD10CM|piles|piles +C0860131|T020|PT|K64.0|ICD10CM|First degree hemorrhoids|First degree hemorrhoids +C0860131|T020|AB|K64.0|ICD10CM|First degree hemorrhoids|First degree hemorrhoids +C0860131|T020|ET|K64.0|ICD10CM|Grade/stage I hemorrhoids|Grade/stage I hemorrhoids +C3264448|T047|ET|K64.0|ICD10CM|Hemorrhoids (bleeding) without prolapse outside of anal canal|Hemorrhoids (bleeding) without prolapse outside of anal canal +C0857535|T033|ET|K64.1|ICD10CM|Grade/stage II hemorrhoids|Grade/stage II hemorrhoids +C3264449|T047|ET|K64.1|ICD10CM|Hemorrhoids (bleeding) that prolapse with straining, but retract spontaneously|Hemorrhoids (bleeding) that prolapse with straining, but retract spontaneously +C0857535|T033|PT|K64.1|ICD10CM|Second degree hemorrhoids|Second degree hemorrhoids +C0857535|T033|AB|K64.1|ICD10CM|Second degree hemorrhoids|Second degree hemorrhoids +C0860132|T033|ET|K64.2|ICD10CM|Grade/stage III hemorrhoids|Grade/stage III hemorrhoids +C0860132|T033|AB|K64.2|ICD10CM|Third degree hemorrhoids|Third degree hemorrhoids +C0860132|T033|PT|K64.2|ICD10CM|Third degree hemorrhoids|Third degree hemorrhoids +C3264452|T020|AB|K64.3|ICD10CM|Fourth degree hemorrhoids|Fourth degree hemorrhoids +C3264452|T020|PT|K64.3|ICD10CM|Fourth degree hemorrhoids|Fourth degree hemorrhoids +C3264452|T020|ET|K64.3|ICD10CM|Grade/stage IV hemorrhoids|Grade/stage IV hemorrhoids +C3264451|T047|ET|K64.3|ICD10CM|Hemorrhoids (bleeding) with prolapsed tissue that cannot be manually replaced|Hemorrhoids (bleeding) with prolapsed tissue that cannot be manually replaced +C0265040|T047|ET|K64.4|ICD10CM|External hemorrhoids, NOS|External hemorrhoids, NOS +C0155788|T190|PT|K64.4|ICD10CM|Residual hemorrhoidal skin tags|Residual hemorrhoidal skin tags +C0155788|T190|AB|K64.4|ICD10CM|Residual hemorrhoidal skin tags|Residual hemorrhoidal skin tags +C3264453|T190|ET|K64.4|ICD10CM|Skin tags of anus|Skin tags of anus +C0155784|T020|ET|K64.5|ICD10CM|External hemorrhoids with thrombosis|External hemorrhoids with thrombosis +C0155784|T020|ET|K64.5|ICD10CM|Perianal hematoma|Perianal hematoma +C3264454|T020|AB|K64.5|ICD10CM|Perianal venous thrombosis|Perianal venous thrombosis +C3264454|T020|PT|K64.5|ICD10CM|Perianal venous thrombosis|Perianal venous thrombosis +C0235326|T047|ET|K64.5|ICD10CM|Thrombosed hemorrhoids NOS|Thrombosed hemorrhoids NOS +C3264455|T033|ET|K64.8|ICD10CM|Internal hemorrhoids, without mention of degree|Internal hemorrhoids, without mention of degree +C3264457|T020|AB|K64.8|ICD10CM|Other hemorrhoids|Other hemorrhoids +C3264457|T020|PT|K64.8|ICD10CM|Other hemorrhoids|Other hemorrhoids +C3264456|T020|ET|K64.8|ICD10CM|Prolapsed hemorrhoids, degree not specified|Prolapsed hemorrhoids, degree not specified +C0265031|T046|ET|K64.9|ICD10CM|Hemorrhoids (bleeding) NOS|Hemorrhoids (bleeding) NOS +C3264458|T020|ET|K64.9|ICD10CM|Hemorrhoids (bleeding) without mention of degree|Hemorrhoids (bleeding) without mention of degree +C3264459|T047|AB|K64.9|ICD10CM|Unspecified hemorrhoids|Unspecified hemorrhoids +C3264459|T047|PT|K64.9|ICD10CM|Unspecified hemorrhoids|Unspecified hemorrhoids +C0031154|T046|HT|K65|ICD10CM|Peritonitis|Peritonitis +C0031154|T046|AB|K65|ICD10CM|Peritonitis|Peritonitis +C0031154|T046|HT|K65|ICD10|Peritonitis|Peritonitis +C0031142|T047|HT|K65-K67.9|ICD10|Diseases of peritoneum|Diseases of peritoneum +C2887904|T047|HT|K65-K68|ICD10CM|Diseases of peritoneum and retroperitoneum (K65-K68)|Diseases of peritoneum and retroperitoneum (K65-K68) +C0267750|T047|PT|K65.0|ICD10|Acute peritonitis|Acute peritonitis +C0267751|T047|AB|K65.0|ICD10CM|Generalized (acute) peritonitis|Generalized (acute) peritonitis +C0267751|T047|PT|K65.0|ICD10CM|Generalized (acute) peritonitis|Generalized (acute) peritonitis +C2887905|T047|ET|K65.0|ICD10CM|Pelvic peritonitis (acute), male|Pelvic peritonitis (acute), male +C2887906|T047|ET|K65.0|ICD10CM|Subphrenic peritonitis (acute)|Subphrenic peritonitis (acute) +C0267752|T047|ET|K65.0|ICD10CM|Suppurative peritonitis (acute)|Suppurative peritonitis (acute) +C0267759|T047|ET|K65.1|ICD10CM|Abdominopelvic abscess|Abdominopelvic abscess +C0238316|T047|ET|K65.1|ICD10CM|Abscess (of) omentum|Abscess (of) omentum +C0267756|T047|ET|K65.1|ICD10CM|Abscess (of) peritoneum|Abscess (of) peritoneum +C0267760|T047|ET|K65.1|ICD10CM|Mesenteric abscess|Mesenteric abscess +C0267756|T047|PT|K65.1|ICD10CM|Peritoneal abscess|Peritoneal abscess +C0267756|T047|AB|K65.1|ICD10CM|Peritoneal abscess|Peritoneal abscess +C0267761|T047|ET|K65.1|ICD10CM|Retrocecal abscess|Retrocecal abscess +C0038565|T047|ET|K65.1|ICD10CM|Subdiaphragmatic abscess|Subdiaphragmatic abscess +C0267762|T047|ET|K65.1|ICD10CM|Subhepatic abscess|Subhepatic abscess +C0038565|T047|ET|K65.1|ICD10CM|Subphrenic abscess|Subphrenic abscess +C0275551|T047|PT|K65.2|ICD10CM|Spontaneous bacterial peritonitis|Spontaneous bacterial peritonitis +C0275551|T047|AB|K65.2|ICD10CM|Spontaneous bacterial peritonitis|Spontaneous bacterial peritonitis +C0267768|T047|PT|K65.3|ICD10CM|Choleperitonitis|Choleperitonitis +C0267768|T047|AB|K65.3|ICD10CM|Choleperitonitis|Choleperitonitis +C0267768|T047|ET|K65.3|ICD10CM|Peritonitis due to bile|Peritonitis due to bile +C1561636|T047|ET|K65.4|ICD10CM|(Idiopathic) sclerosing mesenteric fibrosis|(Idiopathic) sclerosing mesenteric fibrosis +C0267765|T047|ET|K65.4|ICD10CM|Fat necrosis of peritoneum|Fat necrosis of peritoneum +C0025470|T047|ET|K65.4|ICD10CM|Mesenteric lipodystrophy|Mesenteric lipodystrophy +C0025470|T047|ET|K65.4|ICD10CM|Mesenteric panniculitis|Mesenteric panniculitis +C0267770|T047|ET|K65.4|ICD10CM|Retractile mesenteritis|Retractile mesenteritis +C0267770|T047|PT|K65.4|ICD10CM|Sclerosing mesenteritis|Sclerosing mesenteritis +C0267770|T047|AB|K65.4|ICD10CM|Sclerosing mesenteritis|Sclerosing mesenteritis +C0267764|T047|ET|K65.8|ICD10CM|Chronic proliferative peritonitis|Chronic proliferative peritonitis +C0348746|T047|PT|K65.8|ICD10|Other peritonitis|Other peritonitis +C0348746|T047|PT|K65.8|ICD10CM|Other peritonitis|Other peritonitis +C0348746|T047|AB|K65.8|ICD10CM|Other peritonitis|Other peritonitis +C0341507|T047|ET|K65.8|ICD10CM|Peritonitis due to urine|Peritonitis due to urine +C0275550|T047|ET|K65.9|ICD10CM|Bacterial peritonitis NOS|Bacterial peritonitis NOS +C0031154|T046|PT|K65.9|ICD10|Peritonitis, unspecified|Peritonitis, unspecified +C0031154|T046|PT|K65.9|ICD10CM|Peritonitis, unspecified|Peritonitis, unspecified +C0031154|T046|AB|K65.9|ICD10CM|Peritonitis, unspecified|Peritonitis, unspecified +C0156180|T047|HT|K66|ICD10CM|Other disorders of peritoneum|Other disorders of peritoneum +C0156180|T047|AB|K66|ICD10CM|Other disorders of peritoneum|Other disorders of peritoneum +C0156180|T047|HT|K66|ICD10|Other disorders of peritoneum|Other disorders of peritoneum +C0267777|T047|ET|K66.0|ICD10CM|Adhesions (of) abdominal (wall)|Adhesions (of) abdominal (wall) +C0264585|T047|ET|K66.0|ICD10CM|Adhesions (of) diaphragm|Adhesions (of) diaphragm +C0267778|T020|ET|K66.0|ICD10CM|Adhesions (of) intestine|Adhesions (of) intestine +C0267779|T033|ET|K66.0|ICD10CM|Adhesions (of) male pelvis|Adhesions (of) male pelvis +C0267781|T033|ET|K66.0|ICD10CM|Adhesions (of) omentum|Adhesions (of) omentum +C0341523|T033|ET|K66.0|ICD10CM|Adhesions (of) stomach|Adhesions (of) stomach +C0866038|T190|ET|K66.0|ICD10CM|Adhesive bands|Adhesive bands +C0267780|T033|ET|K66.0|ICD10CM|Mesenteric adhesions|Mesenteric adhesions +C0156181|T020|PT|K66.0|ICD10|Peritoneal adhesions|Peritoneal adhesions +C2887907|T047|AB|K66.0|ICD10CM|Peritoneal adhesions (postprocedural) (postinfection)|Peritoneal adhesions (postprocedural) (postinfection) +C2887907|T047|PT|K66.0|ICD10CM|Peritoneal adhesions (postprocedural) (postinfection)|Peritoneal adhesions (postprocedural) (postinfection) +C0019065|T046|PT|K66.1|ICD10|Haemoperitoneum|Haemoperitoneum +C0019065|T046|PT|K66.1|ICD10CM|Hemoperitoneum|Hemoperitoneum +C0019065|T046|AB|K66.1|ICD10CM|Hemoperitoneum|Hemoperitoneum +C0019065|T046|PT|K66.1|ICD10AE|Hemoperitoneum|Hemoperitoneum +C0029786|T047|PT|K66.8|ICD10CM|Other specified disorders of peritoneum|Other specified disorders of peritoneum +C0029786|T047|AB|K66.8|ICD10CM|Other specified disorders of peritoneum|Other specified disorders of peritoneum +C0029786|T047|PT|K66.8|ICD10|Other specified disorders of peritoneum|Other specified disorders of peritoneum +C0031142|T047|PT|K66.9|ICD10|Disorder of peritoneum, unspecified|Disorder of peritoneum, unspecified +C0031142|T047|PT|K66.9|ICD10CM|Disorder of peritoneum, unspecified|Disorder of peritoneum, unspecified +C0031142|T047|AB|K66.9|ICD10CM|Disorder of peritoneum, unspecified|Disorder of peritoneum, unspecified +C0694507|T047|AB|K67|ICD10CM|Disorders of peritoneum in infectious diseases classd elswhr|Disorders of peritoneum in infectious diseases classd elswhr +C0694507|T047|PT|K67|ICD10CM|Disorders of peritoneum in infectious diseases classified elsewhere|Disorders of peritoneum in infectious diseases classified elsewhere +C0694507|T047|HT|K67|ICD10|Disorders of peritoneum in infectious diseases classified elsewhere|Disorders of peritoneum in infectious diseases classified elsewhere +C0451715|T047|PT|K67.0|ICD10|Chlamydial peritonitis|Chlamydial peritonitis +C0018077|T047|PT|K67.1|ICD10|Gonococcal peritonitis|Gonococcal peritonitis +C0153178|T047|PT|K67.2|ICD10|Syphilitic peritonitis|Syphilitic peritonitis +C0041325|T047|PT|K67.3|ICD10|Tuberculous peritonitis|Tuberculous peritonitis +C0348747|T047|PT|K67.8|ICD10|Other disorders of peritoneum in infectious diseases classified elsewhere|Other disorders of peritoneum in infectious diseases classified elsewhere +C1263661|T047|AB|K68|ICD10CM|Disorders of retroperitoneum|Disorders of retroperitoneum +C1263661|T047|HT|K68|ICD10CM|Disorders of retroperitoneum|Disorders of retroperitoneum +C0237962|T047|HT|K68.1|ICD10CM|Retroperitoneal abscess|Retroperitoneal abscess +C0237962|T047|AB|K68.1|ICD10CM|Retroperitoneal abscess|Retroperitoneal abscess +C2887908|T047|PT|K68.11|ICD10CM|Postprocedural retroperitoneal abscess|Postprocedural retroperitoneal abscess +C2887908|T047|AB|K68.11|ICD10CM|Postprocedural retroperitoneal abscess|Postprocedural retroperitoneal abscess +C0085222|T047|PT|K68.12|ICD10CM|Psoas muscle abscess|Psoas muscle abscess +C0085222|T047|AB|K68.12|ICD10CM|Psoas muscle abscess|Psoas muscle abscess +C1561633|T046|AB|K68.19|ICD10CM|Other retroperitoneal abscess|Other retroperitoneal abscess +C1561633|T046|PT|K68.19|ICD10CM|Other retroperitoneal abscess|Other retroperitoneal abscess +C2887909|T047|AB|K68.9|ICD10CM|Other disorders of retroperitoneum|Other disorders of retroperitoneum +C2887909|T047|PT|K68.9|ICD10CM|Other disorders of retroperitoneum|Other disorders of retroperitoneum +C0023896|T047|HT|K70|ICD10CM|Alcoholic liver disease|Alcoholic liver disease +C0023896|T047|AB|K70|ICD10CM|Alcoholic liver disease|Alcoholic liver disease +C0023896|T047|HT|K70|ICD10|Alcoholic liver disease|Alcoholic liver disease +C0023895|T047|HT|K70-K77|ICD10CM|Diseases of liver (K70-K77)|Diseases of liver (K70-K77) +C0023895|T047|HT|K70-K77.9|ICD10|Diseases of liver|Diseases of liver +C0015696|T047|PT|K70.0|ICD10|Alcoholic fatty liver|Alcoholic fatty liver +C0015696|T047|PT|K70.0|ICD10CM|Alcoholic fatty liver|Alcoholic fatty liver +C0015696|T047|AB|K70.0|ICD10CM|Alcoholic fatty liver|Alcoholic fatty liver +C0019187|T047|HT|K70.1|ICD10CM|Alcoholic hepatitis|Alcoholic hepatitis +C0019187|T047|AB|K70.1|ICD10CM|Alcoholic hepatitis|Alcoholic hepatitis +C0019187|T047|PT|K70.1|ICD10|Alcoholic hepatitis|Alcoholic hepatitis +C2887910|T047|PT|K70.10|ICD10CM|Alcoholic hepatitis without ascites|Alcoholic hepatitis without ascites +C2887910|T047|AB|K70.10|ICD10CM|Alcoholic hepatitis without ascites|Alcoholic hepatitis without ascites +C2887911|T047|PT|K70.11|ICD10CM|Alcoholic hepatitis with ascites|Alcoholic hepatitis with ascites +C2887911|T047|AB|K70.11|ICD10CM|Alcoholic hepatitis with ascites|Alcoholic hepatitis with ascites +C0400925|T047|PT|K70.2|ICD10CM|Alcoholic fibrosis and sclerosis of liver|Alcoholic fibrosis and sclerosis of liver +C0400925|T047|AB|K70.2|ICD10CM|Alcoholic fibrosis and sclerosis of liver|Alcoholic fibrosis and sclerosis of liver +C0400925|T047|PT|K70.2|ICD10|Alcoholic fibrosis and sclerosis of liver|Alcoholic fibrosis and sclerosis of liver +C0023891|T047|ET|K70.3|ICD10CM|Alcoholic cirrhosis NOS|Alcoholic cirrhosis NOS +C0023891|T047|HT|K70.3|ICD10CM|Alcoholic cirrhosis of liver|Alcoholic cirrhosis of liver +C0023891|T047|AB|K70.3|ICD10CM|Alcoholic cirrhosis of liver|Alcoholic cirrhosis of liver +C0023891|T047|PT|K70.3|ICD10|Alcoholic cirrhosis of liver|Alcoholic cirrhosis of liver +C2887912|T047|AB|K70.30|ICD10CM|Alcoholic cirrhosis of liver without ascites|Alcoholic cirrhosis of liver without ascites +C2887912|T047|PT|K70.30|ICD10CM|Alcoholic cirrhosis of liver without ascites|Alcoholic cirrhosis of liver without ascites +C2887913|T047|AB|K70.31|ICD10CM|Alcoholic cirrhosis of liver with ascites|Alcoholic cirrhosis of liver with ascites +C2887913|T047|PT|K70.31|ICD10CM|Alcoholic cirrhosis of liver with ascites|Alcoholic cirrhosis of liver with ascites +C2887914|T046|ET|K70.4|ICD10CM|Acute alcoholic hepatic failure|Acute alcoholic hepatic failure +C0400926|T047|PT|K70.4|ICD10|Alcoholic hepatic failure|Alcoholic hepatic failure +C0400926|T047|HT|K70.4|ICD10CM|Alcoholic hepatic failure|Alcoholic hepatic failure +C0400926|T047|AB|K70.4|ICD10CM|Alcoholic hepatic failure|Alcoholic hepatic failure +C0400926|T047|ET|K70.4|ICD10CM|Alcoholic hepatic failure NOS|Alcoholic hepatic failure NOS +C2887915|T047|ET|K70.4|ICD10CM|Chronic alcoholic hepatic failure|Chronic alcoholic hepatic failure +C2887916|T047|ET|K70.4|ICD10CM|Subacute alcoholic hepatic failure|Subacute alcoholic hepatic failure +C2887917|T047|PT|K70.40|ICD10CM|Alcoholic hepatic failure without coma|Alcoholic hepatic failure without coma +C2887917|T047|AB|K70.40|ICD10CM|Alcoholic hepatic failure without coma|Alcoholic hepatic failure without coma +C2887918|T047|AB|K70.41|ICD10CM|Alcoholic hepatic failure with coma|Alcoholic hepatic failure with coma +C2887918|T047|PT|K70.41|ICD10CM|Alcoholic hepatic failure with coma|Alcoholic hepatic failure with coma +C0023896|T047|PT|K70.9|ICD10CM|Alcoholic liver disease, unspecified|Alcoholic liver disease, unspecified +C0023896|T047|AB|K70.9|ICD10CM|Alcoholic liver disease, unspecified|Alcoholic liver disease, unspecified +C0023896|T047|PT|K70.9|ICD10|Alcoholic liver disease, unspecified|Alcoholic liver disease, unspecified +C4290213|T047|ET|K71|ICD10CM|drug-induced idiosyncratic (unpredictable) liver disease|drug-induced idiosyncratic (unpredictable) liver disease +C4290214|T047|ET|K71|ICD10CM|drug-induced toxic (predictable) liver disease|drug-induced toxic (predictable) liver disease +C0348754|T047|HT|K71|ICD10|Toxic liver disease|Toxic liver disease +C0348754|T047|HT|K71|ICD10CM|Toxic liver disease|Toxic liver disease +C0348754|T047|AB|K71|ICD10CM|Toxic liver disease|Toxic liver disease +C1397961|T047|ET|K71.0|ICD10CM|'Pure' cholestasis|'Pure' cholestasis +C1397960|T047|ET|K71.0|ICD10CM|Cholestasis with hepatocyte injury|Cholestasis with hepatocyte injury +C0451707|T047|PT|K71.0|ICD10CM|Toxic liver disease with cholestasis|Toxic liver disease with cholestasis +C0451707|T047|AB|K71.0|ICD10CM|Toxic liver disease with cholestasis|Toxic liver disease with cholestasis +C0451707|T047|PT|K71.0|ICD10|Toxic liver disease with cholestasis|Toxic liver disease with cholestasis +C2887921|T046|ET|K71.1|ICD10CM|Hepatic failure (acute) (chronic) due to drugs|Hepatic failure (acute) (chronic) due to drugs +C0451708|T047|PT|K71.1|ICD10|Toxic liver disease with hepatic necrosis|Toxic liver disease with hepatic necrosis +C0451708|T047|HT|K71.1|ICD10CM|Toxic liver disease with hepatic necrosis|Toxic liver disease with hepatic necrosis +C0451708|T047|AB|K71.1|ICD10CM|Toxic liver disease with hepatic necrosis|Toxic liver disease with hepatic necrosis +C2887922|T047|AB|K71.10|ICD10CM|Toxic liver disease with hepatic necrosis, without coma|Toxic liver disease with hepatic necrosis, without coma +C2887922|T047|PT|K71.10|ICD10CM|Toxic liver disease with hepatic necrosis, without coma|Toxic liver disease with hepatic necrosis, without coma +C2887923|T047|AB|K71.11|ICD10CM|Toxic liver disease with hepatic necrosis, with coma|Toxic liver disease with hepatic necrosis, with coma +C2887923|T047|PT|K71.11|ICD10CM|Toxic liver disease with hepatic necrosis, with coma|Toxic liver disease with hepatic necrosis, with coma +C0451709|T047|PT|K71.2|ICD10CM|Toxic liver disease with acute hepatitis|Toxic liver disease with acute hepatitis +C0451709|T047|AB|K71.2|ICD10CM|Toxic liver disease with acute hepatitis|Toxic liver disease with acute hepatitis +C0451709|T047|PT|K71.2|ICD10|Toxic liver disease with acute hepatitis|Toxic liver disease with acute hepatitis +C0451710|T047|PT|K71.3|ICD10|Toxic liver disease with chronic persistent hepatitis|Toxic liver disease with chronic persistent hepatitis +C0451710|T047|PT|K71.3|ICD10CM|Toxic liver disease with chronic persistent hepatitis|Toxic liver disease with chronic persistent hepatitis +C0451710|T047|AB|K71.3|ICD10CM|Toxic liver disease with chronic persistent hepatitis|Toxic liver disease with chronic persistent hepatitis +C0451711|T047|PT|K71.4|ICD10CM|Toxic liver disease with chronic lobular hepatitis|Toxic liver disease with chronic lobular hepatitis +C0451711|T047|AB|K71.4|ICD10CM|Toxic liver disease with chronic lobular hepatitis|Toxic liver disease with chronic lobular hepatitis +C0451711|T047|PT|K71.4|ICD10|Toxic liver disease with chronic lobular hepatitis|Toxic liver disease with chronic lobular hepatitis +C0451712|T047|PT|K71.5|ICD10|Toxic liver disease with chronic active hepatitis|Toxic liver disease with chronic active hepatitis +C0451712|T047|HT|K71.5|ICD10CM|Toxic liver disease with chronic active hepatitis|Toxic liver disease with chronic active hepatitis +C0451712|T047|AB|K71.5|ICD10CM|Toxic liver disease with chronic active hepatitis|Toxic liver disease with chronic active hepatitis +C1407035|T047|ET|K71.5|ICD10CM|Toxic liver disease with lupoid hepatitis|Toxic liver disease with lupoid hepatitis +C2887924|T047|AB|K71.50|ICD10CM|Toxic liver disease w chronic active hepatitis w/o ascites|Toxic liver disease w chronic active hepatitis w/o ascites +C2887924|T047|PT|K71.50|ICD10CM|Toxic liver disease with chronic active hepatitis without ascites|Toxic liver disease with chronic active hepatitis without ascites +C2887925|T047|AB|K71.51|ICD10CM|Toxic liver disease w chronic active hepatitis with ascites|Toxic liver disease w chronic active hepatitis with ascites +C2887925|T047|PT|K71.51|ICD10CM|Toxic liver disease with chronic active hepatitis with ascites|Toxic liver disease with chronic active hepatitis with ascites +C0494782|T047|PT|K71.6|ICD10|Toxic liver disease with hepatitis, not elsewhere classified|Toxic liver disease with hepatitis, not elsewhere classified +C0494782|T047|PT|K71.6|ICD10CM|Toxic liver disease with hepatitis, not elsewhere classified|Toxic liver disease with hepatitis, not elsewhere classified +C0494782|T047|AB|K71.6|ICD10CM|Toxic liver disease with hepatitis, not elsewhere classified|Toxic liver disease with hepatitis, not elsewhere classified +C0451713|T047|PT|K71.7|ICD10|Toxic liver disease with fibrosis and cirrhosis of liver|Toxic liver disease with fibrosis and cirrhosis of liver +C0451713|T047|PT|K71.7|ICD10CM|Toxic liver disease with fibrosis and cirrhosis of liver|Toxic liver disease with fibrosis and cirrhosis of liver +C0451713|T047|AB|K71.7|ICD10CM|Toxic liver disease with fibrosis and cirrhosis of liver|Toxic liver disease with fibrosis and cirrhosis of liver +C2887926|T047|ET|K71.8|ICD10CM|Toxic liver disease with focal nodular hyperplasia|Toxic liver disease with focal nodular hyperplasia +C2887927|T037|ET|K71.8|ICD10CM|Toxic liver disease with hepatic granulomas|Toxic liver disease with hepatic granulomas +C0348748|T047|PT|K71.8|ICD10CM|Toxic liver disease with other disorders of liver|Toxic liver disease with other disorders of liver +C0348748|T047|AB|K71.8|ICD10CM|Toxic liver disease with other disorders of liver|Toxic liver disease with other disorders of liver +C0348748|T047|PT|K71.8|ICD10|Toxic liver disease with other disorders of liver|Toxic liver disease with other disorders of liver +C1409283|T047|ET|K71.8|ICD10CM|Toxic liver disease with peliosis hepatis|Toxic liver disease with peliosis hepatis +C1385051|T047|ET|K71.8|ICD10CM|Toxic liver disease with veno-occlusive disease of liver|Toxic liver disease with veno-occlusive disease of liver +C0348754|T047|PT|K71.9|ICD10|Toxic liver disease, unspecified|Toxic liver disease, unspecified +C0348754|T047|PT|K71.9|ICD10CM|Toxic liver disease, unspecified|Toxic liver disease, unspecified +C0348754|T047|AB|K71.9|ICD10CM|Toxic liver disease, unspecified|Toxic liver disease, unspecified +C4290215|T047|ET|K72|ICD10CM|fulminant hepatitis NEC, with hepatic failure|fulminant hepatitis NEC, with hepatic failure +C0019151|T047|ET|K72|ICD10CM|hepatic encephalopathy NOS|hepatic encephalopathy NOS +C0494783|T047|HT|K72|ICD10|Hepatic failure, not elsewhere classified|Hepatic failure, not elsewhere classified +C0494783|T047|AB|K72|ICD10CM|Hepatic failure, not elsewhere classified|Hepatic failure, not elsewhere classified +C0494783|T047|HT|K72|ICD10CM|Hepatic failure, not elsewhere classified|Hepatic failure, not elsewhere classified +C1402876|T047|ET|K72|ICD10CM|liver (cell) necrosis with hepatic failure|liver (cell) necrosis with hepatic failure +C4290216|T047|ET|K72|ICD10CM|malignant hepatitis NEC, with hepatic failure|malignant hepatitis NEC, with hepatic failure +C4290217|T047|ET|K72|ICD10CM|yellow liver atrophy or dystrophy|yellow liver atrophy or dystrophy +C0494784|T047|HT|K72.0|ICD10CM|Acute and subacute hepatic failure|Acute and subacute hepatic failure +C0494784|T047|AB|K72.0|ICD10CM|Acute and subacute hepatic failure|Acute and subacute hepatic failure +C0494784|T047|PT|K72.0|ICD10|Acute and subacute hepatic failure|Acute and subacute hepatic failure +C4268643|T047|ET|K72.0|ICD10CM|Acute non-viral hepatitis NOS|Acute non-viral hepatitis NOS +C2887932|T047|AB|K72.00|ICD10CM|Acute and subacute hepatic failure without coma|Acute and subacute hepatic failure without coma +C2887932|T047|PT|K72.00|ICD10CM|Acute and subacute hepatic failure without coma|Acute and subacute hepatic failure without coma +C2887933|T047|AB|K72.01|ICD10CM|Acute and subacute hepatic failure with coma|Acute and subacute hepatic failure with coma +C2887933|T047|PT|K72.01|ICD10CM|Acute and subacute hepatic failure with coma|Acute and subacute hepatic failure with coma +C2936476|T047|PT|K72.1|ICD10|Chronic hepatic failure|Chronic hepatic failure +C2936476|T047|HT|K72.1|ICD10CM|Chronic hepatic failure|Chronic hepatic failure +C2936476|T047|AB|K72.1|ICD10CM|Chronic hepatic failure|Chronic hepatic failure +C2887934|T047|PT|K72.10|ICD10CM|Chronic hepatic failure without coma|Chronic hepatic failure without coma +C2887934|T047|AB|K72.10|ICD10CM|Chronic hepatic failure without coma|Chronic hepatic failure without coma +C2887935|T047|AB|K72.11|ICD10CM|Chronic hepatic failure with coma|Chronic hepatic failure with coma +C2887935|T047|PT|K72.11|ICD10CM|Chronic hepatic failure with coma|Chronic hepatic failure with coma +C0085605|T047|PT|K72.9|ICD10|Hepatic failure, unspecified|Hepatic failure, unspecified +C0085605|T047|HT|K72.9|ICD10CM|Hepatic failure, unspecified|Hepatic failure, unspecified +C0085605|T047|AB|K72.9|ICD10CM|Hepatic failure, unspecified|Hepatic failure, unspecified +C2887936|T047|AB|K72.90|ICD10CM|Hepatic failure, unspecified without coma|Hepatic failure, unspecified without coma +C2887936|T047|PT|K72.90|ICD10CM|Hepatic failure, unspecified without coma|Hepatic failure, unspecified without coma +C0019147|T047|ET|K72.91|ICD10CM|Hepatic coma NOS|Hepatic coma NOS +C2887937|T047|AB|K72.91|ICD10CM|Hepatic failure, unspecified with coma|Hepatic failure, unspecified with coma +C2887937|T047|PT|K72.91|ICD10CM|Hepatic failure, unspecified with coma|Hepatic failure, unspecified with coma +C0494786|T047|HT|K73|ICD10|Chronic hepatitis, not elsewhere classified|Chronic hepatitis, not elsewhere classified +C0494786|T047|AB|K73|ICD10CM|Chronic hepatitis, not elsewhere classified|Chronic hepatitis, not elsewhere classified +C0494786|T047|HT|K73|ICD10CM|Chronic hepatitis, not elsewhere classified|Chronic hepatitis, not elsewhere classified +C0494787|T047|PT|K73.0|ICD10CM|Chronic persistent hepatitis, not elsewhere classified|Chronic persistent hepatitis, not elsewhere classified +C0494787|T047|AB|K73.0|ICD10CM|Chronic persistent hepatitis, not elsewhere classified|Chronic persistent hepatitis, not elsewhere classified +C0494787|T047|PT|K73.0|ICD10|Chronic persistent hepatitis, not elsewhere classified|Chronic persistent hepatitis, not elsewhere classified +C0494788|T047|PT|K73.1|ICD10|Chronic lobular hepatitis, not elsewhere classified|Chronic lobular hepatitis, not elsewhere classified +C0494788|T047|PT|K73.1|ICD10CM|Chronic lobular hepatitis, not elsewhere classified|Chronic lobular hepatitis, not elsewhere classified +C0494788|T047|AB|K73.1|ICD10CM|Chronic lobular hepatitis, not elsewhere classified|Chronic lobular hepatitis, not elsewhere classified +C0494789|T047|PT|K73.2|ICD10CM|Chronic active hepatitis, not elsewhere classified|Chronic active hepatitis, not elsewhere classified +C0494789|T047|AB|K73.2|ICD10CM|Chronic active hepatitis, not elsewhere classified|Chronic active hepatitis, not elsewhere classified +C0494789|T047|PT|K73.2|ICD10|Chronic active hepatitis, not elsewhere classified|Chronic active hepatitis, not elsewhere classified +C0494790|T047|PT|K73.8|ICD10|Other chronic hepatitis, not elsewhere classified|Other chronic hepatitis, not elsewhere classified +C0494790|T047|PT|K73.8|ICD10CM|Other chronic hepatitis, not elsewhere classified|Other chronic hepatitis, not elsewhere classified +C0494790|T047|AB|K73.8|ICD10CM|Other chronic hepatitis, not elsewhere classified|Other chronic hepatitis, not elsewhere classified +C0019189|T047|PT|K73.9|ICD10|Chronic hepatitis, unspecified|Chronic hepatitis, unspecified +C0019189|T047|PT|K73.9|ICD10CM|Chronic hepatitis, unspecified|Chronic hepatitis, unspecified +C0019189|T047|AB|K73.9|ICD10CM|Chronic hepatitis, unspecified|Chronic hepatitis, unspecified +C0494791|T047|AB|K74|ICD10CM|Fibrosis and cirrhosis of liver|Fibrosis and cirrhosis of liver +C0494791|T047|HT|K74|ICD10CM|Fibrosis and cirrhosis of liver|Fibrosis and cirrhosis of liver +C0494791|T047|HT|K74|ICD10|Fibrosis and cirrhosis of liver|Fibrosis and cirrhosis of liver +C0239946|T047|PT|K74.0|ICD10CM|Hepatic fibrosis|Hepatic fibrosis +C0239946|T047|AB|K74.0|ICD10CM|Hepatic fibrosis|Hepatic fibrosis +C0239946|T047|PT|K74.0|ICD10|Hepatic fibrosis|Hepatic fibrosis +C0341446|T047|PT|K74.1|ICD10|Hepatic sclerosis|Hepatic sclerosis +C0341446|T047|PT|K74.1|ICD10CM|Hepatic sclerosis|Hepatic sclerosis +C0341446|T047|AB|K74.1|ICD10CM|Hepatic sclerosis|Hepatic sclerosis +C0400961|T047|PT|K74.2|ICD10|Hepatic fibrosis with hepatic sclerosis|Hepatic fibrosis with hepatic sclerosis +C0400961|T047|PT|K74.2|ICD10CM|Hepatic fibrosis with hepatic sclerosis|Hepatic fibrosis with hepatic sclerosis +C0400961|T047|AB|K74.2|ICD10CM|Hepatic fibrosis with hepatic sclerosis|Hepatic fibrosis with hepatic sclerosis +C0008312|T047|ET|K74.3|ICD10CM|Chronic nonsuppurative destructive cholangitis|Chronic nonsuppurative destructive cholangitis +C0008312|T047|ET|K74.3|ICD10CM|Primary biliary cholangitis|Primary biliary cholangitis +C0008312|T047|PT|K74.3|ICD10CM|Primary biliary cirrhosis|Primary biliary cirrhosis +C0008312|T047|AB|K74.3|ICD10CM|Primary biliary cirrhosis|Primary biliary cirrhosis +C0008312|T047|PT|K74.3|ICD10|Primary biliary cirrhosis|Primary biliary cirrhosis +C0238065|T047|PT|K74.4|ICD10|Secondary biliary cirrhosis|Secondary biliary cirrhosis +C0238065|T047|PT|K74.4|ICD10CM|Secondary biliary cirrhosis|Secondary biliary cirrhosis +C0238065|T047|AB|K74.4|ICD10CM|Secondary biliary cirrhosis|Secondary biliary cirrhosis +C0023892|T047|PT|K74.5|ICD10|Biliary cirrhosis, unspecified|Biliary cirrhosis, unspecified +C0023892|T047|PT|K74.5|ICD10CM|Biliary cirrhosis, unspecified|Biliary cirrhosis, unspecified +C0023892|T047|AB|K74.5|ICD10CM|Biliary cirrhosis, unspecified|Biliary cirrhosis, unspecified +C0348749|T047|HT|K74.6|ICD10CM|Other and unspecified cirrhosis of liver|Other and unspecified cirrhosis of liver +C0348749|T047|AB|K74.6|ICD10CM|Other and unspecified cirrhosis of liver|Other and unspecified cirrhosis of liver +C0348749|T047|PT|K74.6|ICD10|Other and unspecified cirrhosis of liver|Other and unspecified cirrhosis of liver +C0023890|T047|ET|K74.60|ICD10CM|Cirrhosis (of liver) NOS|Cirrhosis (of liver) NOS +C2887939|T047|AB|K74.60|ICD10CM|Unspecified cirrhosis of liver|Unspecified cirrhosis of liver +C2887939|T047|PT|K74.60|ICD10CM|Unspecified cirrhosis of liver|Unspecified cirrhosis of liver +C0267809|T047|ET|K74.69|ICD10CM|Cryptogenic cirrhosis (of liver)|Cryptogenic cirrhosis (of liver) +C2004456|T047|ET|K74.69|ICD10CM|Macronodular cirrhosis (of liver)|Macronodular cirrhosis (of liver) +C2887940|T047|ET|K74.69|ICD10CM|Micronodular cirrhosis (of liver)|Micronodular cirrhosis (of liver) +C2887941|T047|ET|K74.69|ICD10CM|Mixed type cirrhosis (of liver)|Mixed type cirrhosis (of liver) +C2887942|T047|AB|K74.69|ICD10CM|Other cirrhosis of liver|Other cirrhosis of liver +C2887942|T047|PT|K74.69|ICD10CM|Other cirrhosis of liver|Other cirrhosis of liver +C1622502|T047|ET|K74.69|ICD10CM|Portal cirrhosis (of liver)|Portal cirrhosis (of liver) +C2004456|T047|ET|K74.69|ICD10CM|Postnecrotic cirrhosis (of liver)|Postnecrotic cirrhosis (of liver) +C0494794|T047|HT|K75|ICD10|Other inflammatory liver diseases|Other inflammatory liver diseases +C0494794|T047|AB|K75|ICD10CM|Other inflammatory liver diseases|Other inflammatory liver diseases +C0494794|T047|HT|K75|ICD10CM|Other inflammatory liver diseases|Other inflammatory liver diseases +C0023885|T047|PT|K75.0|ICD10CM|Abscess of liver|Abscess of liver +C0023885|T047|AB|K75.0|ICD10CM|Abscess of liver|Abscess of liver +C0023885|T047|PT|K75.0|ICD10|Abscess of liver|Abscess of liver +C2887943|T047|ET|K75.0|ICD10CM|Cholangitic hepatic abscess|Cholangitic hepatic abscess +C2887944|T047|ET|K75.0|ICD10CM|Hematogenic hepatic abscess|Hematogenic hepatic abscess +C0023885|T047|ET|K75.0|ICD10CM|Hepatic abscess NOS|Hepatic abscess NOS +C2887945|T047|ET|K75.0|ICD10CM|Lymphogenic hepatic abscess|Lymphogenic hepatic abscess +C2887946|T047|ET|K75.0|ICD10CM|Pylephlebitic hepatic abscess|Pylephlebitic hepatic abscess +C0034192|T047|PT|K75.1|ICD10|Phlebitis of portal vein|Phlebitis of portal vein +C0034192|T047|PT|K75.1|ICD10CM|Phlebitis of portal vein|Phlebitis of portal vein +C0034192|T047|AB|K75.1|ICD10CM|Phlebitis of portal vein|Phlebitis of portal vein +C0034192|T047|ET|K75.1|ICD10CM|Pylephlebitis|Pylephlebitis +C0400887|T047|PT|K75.2|ICD10|Nonspecific reactive hepatitis|Nonspecific reactive hepatitis +C0400887|T047|PT|K75.2|ICD10CM|Nonspecific reactive hepatitis|Nonspecific reactive hepatitis +C0400887|T047|AB|K75.2|ICD10CM|Nonspecific reactive hepatitis|Nonspecific reactive hepatitis +C0869060|T047|PT|K75.3|ICD10|Granulomatous hepatitis, not elsewhere classified|Granulomatous hepatitis, not elsewhere classified +C0869060|T047|PT|K75.3|ICD10CM|Granulomatous hepatitis, not elsewhere classified|Granulomatous hepatitis, not elsewhere classified +C0869060|T047|AB|K75.3|ICD10CM|Granulomatous hepatitis, not elsewhere classified|Granulomatous hepatitis, not elsewhere classified +C4721555|T047|PT|K75.4|ICD10CM|Autoimmune hepatitis|Autoimmune hepatitis +C4721555|T047|AB|K75.4|ICD10CM|Autoimmune hepatitis|Autoimmune hepatitis +C4721555|T047|PT|K75.4|ICD10|Autoimmune hepatitis|Autoimmune hepatitis +C3264460|T047|ET|K75.4|ICD10CM|Lupoid hepatitis NEC|Lupoid hepatitis NEC +C0348750|T047|HT|K75.8|ICD10CM|Other specified inflammatory liver diseases|Other specified inflammatory liver diseases +C0348750|T047|AB|K75.8|ICD10CM|Other specified inflammatory liver diseases|Other specified inflammatory liver diseases +C0348750|T047|PT|K75.8|ICD10|Other specified inflammatory liver diseases|Other specified inflammatory liver diseases +C3241937|T047|AB|K75.81|ICD10CM|Nonalcoholic steatohepatitis (NASH)|Nonalcoholic steatohepatitis (NASH) +C3241937|T047|PT|K75.81|ICD10CM|Nonalcoholic steatohepatitis (NASH)|Nonalcoholic steatohepatitis (NASH) +C0348750|T047|PT|K75.89|ICD10CM|Other specified inflammatory liver diseases|Other specified inflammatory liver diseases +C0348750|T047|AB|K75.89|ICD10CM|Other specified inflammatory liver diseases|Other specified inflammatory liver diseases +C0019158|T047|ET|K75.9|ICD10CM|Hepatitis NOS|Hepatitis NOS +C0019158|T047|PT|K75.9|ICD10CM|Inflammatory liver disease, unspecified|Inflammatory liver disease, unspecified +C0019158|T047|AB|K75.9|ICD10CM|Inflammatory liver disease, unspecified|Inflammatory liver disease, unspecified +C0019158|T047|PT|K75.9|ICD10|Inflammatory liver disease, unspecified|Inflammatory liver disease, unspecified +C0156194|T047|HT|K76|ICD10|Other diseases of liver|Other diseases of liver +C0156194|T047|AB|K76|ICD10CM|Other diseases of liver|Other diseases of liver +C0156194|T047|HT|K76|ICD10CM|Other diseases of liver|Other diseases of liver +C0494797|T047|PT|K76.0|ICD10CM|Fatty (change of) liver, not elsewhere classified|Fatty (change of) liver, not elsewhere classified +C0494797|T047|AB|K76.0|ICD10CM|Fatty (change of) liver, not elsewhere classified|Fatty (change of) liver, not elsewhere classified +C0494797|T047|PT|K76.0|ICD10|Fatty (change of) liver, not elsewhere classified|Fatty (change of) liver, not elsewhere classified +C0400966|T047|ET|K76.0|ICD10CM|Nonalcoholic fatty liver disease (NAFLD)|Nonalcoholic fatty liver disease (NAFLD) +C0085699|T047|ET|K76.1|ICD10CM|Cardiac cirrhosis|Cardiac cirrhosis +C0010054|T047|ET|K76.1|ICD10CM|Cardiac sclerosis|Cardiac sclerosis +C0156195|T047|PT|K76.1|ICD10CM|Chronic passive congestion of liver|Chronic passive congestion of liver +C0156195|T047|AB|K76.1|ICD10CM|Chronic passive congestion of liver|Chronic passive congestion of liver +C0156195|T047|PT|K76.1|ICD10|Chronic passive congestion of liver|Chronic passive congestion of liver +C0475536|T047|PT|K76.2|ICD10|Central haemorrhagic necrosis of liver|Central haemorrhagic necrosis of liver +C0475536|T047|PT|K76.2|ICD10AE|Central hemorrhagic necrosis of liver|Central hemorrhagic necrosis of liver +C0475536|T047|PT|K76.2|ICD10CM|Central hemorrhagic necrosis of liver|Central hemorrhagic necrosis of liver +C0475536|T047|AB|K76.2|ICD10CM|Central hemorrhagic necrosis of liver|Central hemorrhagic necrosis of liver +C0151731|T047|PT|K76.3|ICD10|Infarction of liver|Infarction of liver +C0151731|T047|PT|K76.3|ICD10CM|Infarction of liver|Infarction of liver +C0151731|T047|AB|K76.3|ICD10CM|Infarction of liver|Infarction of liver +C2887947|T191|ET|K76.4|ICD10CM|Hepatic angiomatosis|Hepatic angiomatosis +C0030781|T047|PT|K76.4|ICD10CM|Peliosis hepatis|Peliosis hepatis +C0030781|T047|AB|K76.4|ICD10CM|Peliosis hepatis|Peliosis hepatis +C0030781|T047|PT|K76.4|ICD10|Peliosis hepatis|Peliosis hepatis +C0019156|T047|PT|K76.5|ICD10|Hepatic veno-occlusive disease|Hepatic veno-occlusive disease +C0019156|T047|PT|K76.5|ICD10CM|Hepatic veno-occlusive disease|Hepatic veno-occlusive disease +C0019156|T047|AB|K76.5|ICD10CM|Hepatic veno-occlusive disease|Hepatic veno-occlusive disease +C0020541|T047|PT|K76.6|ICD10CM|Portal hypertension|Portal hypertension +C0020541|T047|AB|K76.6|ICD10CM|Portal hypertension|Portal hypertension +C0020541|T047|PT|K76.6|ICD10|Portal hypertension|Portal hypertension +C0019212|T047|PT|K76.7|ICD10|Hepatorenal syndrome|Hepatorenal syndrome +C0019212|T047|PT|K76.7|ICD10CM|Hepatorenal syndrome|Hepatorenal syndrome +C0019212|T047|AB|K76.7|ICD10CM|Hepatorenal syndrome|Hepatorenal syndrome +C0348751|T047|PT|K76.8|ICD10|Other specified diseases of liver|Other specified diseases of liver +C0348751|T047|HT|K76.8|ICD10CM|Other specified diseases of liver|Other specified diseases of liver +C0348751|T047|AB|K76.8|ICD10CM|Other specified diseases of liver|Other specified diseases of liver +C0600452|T047|PT|K76.81|ICD10CM|Hepatopulmonary syndrome|Hepatopulmonary syndrome +C0600452|T047|AB|K76.81|ICD10CM|Hepatopulmonary syndrome|Hepatopulmonary syndrome +C2887948|T047|ET|K76.89|ICD10CM|Cyst (simple) of liver|Cyst (simple) of liver +C0700636|T047|ET|K76.89|ICD10CM|Focal nodular hyperplasia of liver|Focal nodular hyperplasia of liver +C0267825|T047|ET|K76.89|ICD10CM|Hepatoptosis|Hepatoptosis +C0348751|T047|AB|K76.89|ICD10CM|Other specified diseases of liver|Other specified diseases of liver +C0348751|T047|PT|K76.89|ICD10CM|Other specified diseases of liver|Other specified diseases of liver +C0023895|T047|PT|K76.9|ICD10|Liver disease, unspecified|Liver disease, unspecified +C0023895|T047|PT|K76.9|ICD10CM|Liver disease, unspecified|Liver disease, unspecified +C0023895|T047|AB|K76.9|ICD10CM|Liver disease, unspecified|Liver disease, unspecified +C0694508|T047|HT|K77|ICD10|Liver disorders in diseases classified elsewhere|Liver disorders in diseases classified elsewhere +C0694508|T047|PT|K77|ICD10CM|Liver disorders in diseases classified elsewhere|Liver disorders in diseases classified elsewhere +C0694508|T047|AB|K77|ICD10CM|Liver disorders in diseases classified elsewhere|Liver disorders in diseases classified elsewhere +C0348752|T047|PT|K77.0|ICD10|Liver disorders in infectious and parasitic diseases classified elsewhere|Liver disorders in infectious and parasitic diseases classified elsewhere +C0348753|T047|PT|K77.8|ICD10|Liver disorders in other diseases classified elsewhere|Liver disorders in other diseases classified elsewhere +C0008350|T047|HT|K80|ICD10|Cholelithiasis|Cholelithiasis +C0008350|T047|HT|K80|ICD10CM|Cholelithiasis|Cholelithiasis +C0008350|T047|AB|K80|ICD10CM|Cholelithiasis|Cholelithiasis +C0348756|T047|HT|K80-K87|ICD10CM|Disorders of gallbladder, biliary tract and pancreas (K80-K87)|Disorders of gallbladder, biliary tract and pancreas (K80-K87) +C0348756|T047|HT|K80-K87.9|ICD10|Disorders of gallbladder, biliary tract and pancreas|Disorders of gallbladder, biliary tract and pancreas +C2887949|T047|ET|K80.0|ICD10CM|Any condition listed in K80.2 with acute cholecystitis|Any condition listed in K80.2 with acute cholecystitis +C0156199|T047|PT|K80.0|ICD10|Calculus of gallbladder with acute cholecystitis|Calculus of gallbladder with acute cholecystitis +C0156199|T047|HT|K80.0|ICD10CM|Calculus of gallbladder with acute cholecystitis|Calculus of gallbladder with acute cholecystitis +C0156199|T047|AB|K80.0|ICD10CM|Calculus of gallbladder with acute cholecystitis|Calculus of gallbladder with acute cholecystitis +C2887950|T047|AB|K80.00|ICD10CM|Calculus of gallbladder w acute cholecyst w/o obstruction|Calculus of gallbladder w acute cholecyst w/o obstruction +C2887950|T047|PT|K80.00|ICD10CM|Calculus of gallbladder with acute cholecystitis without obstruction|Calculus of gallbladder with acute cholecystitis without obstruction +C0156201|T047|AB|K80.01|ICD10CM|Calculus of gallbladder w acute cholecystitis w obstruction|Calculus of gallbladder w acute cholecystitis w obstruction +C0156201|T047|PT|K80.01|ICD10CM|Calculus of gallbladder with acute cholecystitis with obstruction|Calculus of gallbladder with acute cholecystitis with obstruction +C0156202|T047|HT|K80.1|ICD10CM|Calculus of gallbladder with other cholecystitis|Calculus of gallbladder with other cholecystitis +C0156202|T047|AB|K80.1|ICD10CM|Calculus of gallbladder with other cholecystitis|Calculus of gallbladder with other cholecystitis +C0156202|T047|PT|K80.1|ICD10|Calculus of gallbladder with other cholecystitis|Calculus of gallbladder with other cholecystitis +C2887951|T047|AB|K80.10|ICD10CM|Calculus of gallbladder w chronic cholecyst w/o obstruction|Calculus of gallbladder w chronic cholecyst w/o obstruction +C2887951|T047|PT|K80.10|ICD10CM|Calculus of gallbladder with chronic cholecystitis without obstruction|Calculus of gallbladder with chronic cholecystitis without obstruction +C0267853|T047|ET|K80.10|ICD10CM|Cholelithiasis with cholecystitis NOS|Cholelithiasis with cholecystitis NOS +C2887952|T047|AB|K80.11|ICD10CM|Calculus of gallbladder w chronic cholecyst w obstruction|Calculus of gallbladder w chronic cholecyst w obstruction +C2887952|T047|PT|K80.11|ICD10CM|Calculus of gallbladder with chronic cholecystitis with obstruction|Calculus of gallbladder with chronic cholecystitis with obstruction +C2887953|T047|PT|K80.12|ICD10CM|Calculus of gallbladder with acute and chronic cholecystitis without obstruction|Calculus of gallbladder with acute and chronic cholecystitis without obstruction +C2887953|T047|AB|K80.12|ICD10CM|Calculus of GB w acute and chronic cholecyst w/o obstruction|Calculus of GB w acute and chronic cholecyst w/o obstruction +C2887954|T047|PT|K80.13|ICD10CM|Calculus of gallbladder with acute and chronic cholecystitis with obstruction|Calculus of gallbladder with acute and chronic cholecystitis with obstruction +C2887954|T047|AB|K80.13|ICD10CM|Calculus of GB w acute and chronic cholecyst w obstruction|Calculus of GB w acute and chronic cholecyst w obstruction +C2887955|T047|AB|K80.18|ICD10CM|Calculus of gallbladder w oth cholecystitis w/o obstruction|Calculus of gallbladder w oth cholecystitis w/o obstruction +C2887955|T047|PT|K80.18|ICD10CM|Calculus of gallbladder with other cholecystitis without obstruction|Calculus of gallbladder with other cholecystitis without obstruction +C0156204|T047|AB|K80.19|ICD10CM|Calculus of gallbladder w oth cholecystitis with obstruction|Calculus of gallbladder w oth cholecystitis with obstruction +C0156204|T047|PT|K80.19|ICD10CM|Calculus of gallbladder with other cholecystitis with obstruction|Calculus of gallbladder with other cholecystitis with obstruction +C0006741|T047|HT|K80.2|ICD10CM|Calculus of gallbladder without cholecystitis|Calculus of gallbladder without cholecystitis +C0006741|T047|AB|K80.2|ICD10CM|Calculus of gallbladder without cholecystitis|Calculus of gallbladder without cholecystitis +C0006741|T047|PT|K80.2|ICD10|Calculus of gallbladder without cholecystitis|Calculus of gallbladder without cholecystitis +C2887956|T047|ET|K80.2|ICD10CM|Cholecystolithiasis without cholecystitis|Cholecystolithiasis without cholecystitis +C0810313|T047|ET|K80.2|ICD10CM|Cholelithiasis (without cholecystitis)|Cholelithiasis (without cholecystitis) +C0866062|T047|ET|K80.2|ICD10CM|Colic (recurrent) of gallbladder (without cholecystitis)|Colic (recurrent) of gallbladder (without cholecystitis) +C2887957|T047|ET|K80.2|ICD10CM|Gallstone (impacted) of cystic duct (without cholecystitis)|Gallstone (impacted) of cystic duct (without cholecystitis) +C2887958|T047|ET|K80.2|ICD10CM|Gallstone (impacted) of gallbladder (without cholecystitis)|Gallstone (impacted) of gallbladder (without cholecystitis) +C2887959|T047|AB|K80.20|ICD10CM|Calculus of gallbladder w/o cholecystitis w/o obstruction|Calculus of gallbladder w/o cholecystitis w/o obstruction +C2887959|T047|PT|K80.20|ICD10CM|Calculus of gallbladder without cholecystitis without obstruction|Calculus of gallbladder without cholecystitis without obstruction +C0156205|T047|AB|K80.21|ICD10CM|Calculus of gallbladder w/o cholecystitis with obstruction|Calculus of gallbladder w/o cholecystitis with obstruction +C0156205|T047|PT|K80.21|ICD10CM|Calculus of gallbladder without cholecystitis with obstruction|Calculus of gallbladder without cholecystitis with obstruction +C2887960|T047|ET|K80.3|ICD10CM|Any condition listed in K80.5 with cholangitis|Any condition listed in K80.5 with cholangitis +C0452155|T047|PT|K80.3|ICD10|Calculus of bile duct with cholangitis|Calculus of bile duct with cholangitis +C0452155|T047|HT|K80.3|ICD10CM|Calculus of bile duct with cholangitis|Calculus of bile duct with cholangitis +C0452155|T047|AB|K80.3|ICD10CM|Calculus of bile duct with cholangitis|Calculus of bile duct with cholangitis +C2887961|T047|AB|K80.30|ICD10CM|Calculus of bile duct w cholangitis, unsp, w/o obstruction|Calculus of bile duct w cholangitis, unsp, w/o obstruction +C2887961|T047|PT|K80.30|ICD10CM|Calculus of bile duct with cholangitis, unspecified, without obstruction|Calculus of bile duct with cholangitis, unspecified, without obstruction +C2887962|T047|AB|K80.31|ICD10CM|Calculus of bile duct w cholangitis, unsp, with obstruction|Calculus of bile duct w cholangitis, unsp, with obstruction +C2887962|T047|PT|K80.31|ICD10CM|Calculus of bile duct with cholangitis, unspecified, with obstruction|Calculus of bile duct with cholangitis, unspecified, with obstruction +C2887963|T047|AB|K80.32|ICD10CM|Calculus of bile duct with acute cholangitis w/o obstruction|Calculus of bile duct with acute cholangitis w/o obstruction +C2887963|T047|PT|K80.32|ICD10CM|Calculus of bile duct with acute cholangitis without obstruction|Calculus of bile duct with acute cholangitis without obstruction +C2887964|T047|AB|K80.33|ICD10CM|Calculus of bile duct w acute cholangitis with obstruction|Calculus of bile duct w acute cholangitis with obstruction +C2887964|T047|PT|K80.33|ICD10CM|Calculus of bile duct with acute cholangitis with obstruction|Calculus of bile duct with acute cholangitis with obstruction +C2887965|T047|AB|K80.34|ICD10CM|Calculus of bile duct w chronic cholangitis w/o obstruction|Calculus of bile duct w chronic cholangitis w/o obstruction +C2887965|T047|PT|K80.34|ICD10CM|Calculus of bile duct with chronic cholangitis without obstruction|Calculus of bile duct with chronic cholangitis without obstruction +C2887966|T047|AB|K80.35|ICD10CM|Calculus of bile duct w chronic cholangitis with obstruction|Calculus of bile duct w chronic cholangitis with obstruction +C2887966|T047|PT|K80.35|ICD10CM|Calculus of bile duct with chronic cholangitis with obstruction|Calculus of bile duct with chronic cholangitis with obstruction +C2887967|T047|AB|K80.36|ICD10CM|Calculus of bile duct w acute and chr cholangitis w/o obst|Calculus of bile duct w acute and chr cholangitis w/o obst +C2887967|T047|PT|K80.36|ICD10CM|Calculus of bile duct with acute and chronic cholangitis without obstruction|Calculus of bile duct with acute and chronic cholangitis without obstruction +C2887968|T047|AB|K80.37|ICD10CM|Calculus of bile duct w acute and chronic cholangitis w obst|Calculus of bile duct w acute and chronic cholangitis w obst +C2887968|T047|PT|K80.37|ICD10CM|Calculus of bile duct with acute and chronic cholangitis with obstruction|Calculus of bile duct with acute and chronic cholangitis with obstruction +C2887969|T047|ET|K80.4|ICD10CM|Any condition listed in K80.5 with cholecystitis (with cholangitis)|Any condition listed in K80.5 with cholecystitis (with cholangitis) +C1621825|T047|PT|K80.4|ICD10|Calculus of bile duct with cholecystitis|Calculus of bile duct with cholecystitis +C1621825|T047|HT|K80.4|ICD10CM|Calculus of bile duct with cholecystitis|Calculus of bile duct with cholecystitis +C1621825|T047|AB|K80.4|ICD10CM|Calculus of bile duct with cholecystitis|Calculus of bile duct with cholecystitis +C2887970|T047|AB|K80.40|ICD10CM|Calculus of bile duct w cholecystitis, unsp, w/o obstruction|Calculus of bile duct w cholecystitis, unsp, w/o obstruction +C2887970|T047|PT|K80.40|ICD10CM|Calculus of bile duct with cholecystitis, unspecified, without obstruction|Calculus of bile duct with cholecystitis, unspecified, without obstruction +C2887971|T047|AB|K80.41|ICD10CM|Calculus of bile duct w cholecystitis, unsp, w obstruction|Calculus of bile duct w cholecystitis, unsp, w obstruction +C2887971|T047|PT|K80.41|ICD10CM|Calculus of bile duct with cholecystitis, unspecified, with obstruction|Calculus of bile duct with cholecystitis, unspecified, with obstruction +C0267888|T047|AB|K80.42|ICD10CM|Calculus of bile duct w acute cholecystitis w/o obstruction|Calculus of bile duct w acute cholecystitis w/o obstruction +C0267888|T047|PT|K80.42|ICD10CM|Calculus of bile duct with acute cholecystitis without obstruction|Calculus of bile duct with acute cholecystitis without obstruction +C0156208|T047|AB|K80.43|ICD10CM|Calculus of bile duct w acute cholecystitis with obstruction|Calculus of bile duct w acute cholecystitis with obstruction +C0156208|T047|PT|K80.43|ICD10CM|Calculus of bile duct with acute cholecystitis with obstruction|Calculus of bile duct with acute cholecystitis with obstruction +C0267883|T047|AB|K80.44|ICD10CM|Calculus of bile duct w chronic cholecyst w/o obstruction|Calculus of bile duct w chronic cholecyst w/o obstruction +C0267883|T047|PT|K80.44|ICD10CM|Calculus of bile duct with chronic cholecystitis without obstruction|Calculus of bile duct with chronic cholecystitis without obstruction +C0267884|T047|AB|K80.45|ICD10CM|Calculus of bile duct w chronic cholecystitis w obstruction|Calculus of bile duct w chronic cholecystitis w obstruction +C0267884|T047|PT|K80.45|ICD10CM|Calculus of bile duct with chronic cholecystitis with obstruction|Calculus of bile duct with chronic cholecystitis with obstruction +C2887972|T047|AB|K80.46|ICD10CM|Calculus of bile duct w acute and chronic cholecyst w/o obst|Calculus of bile duct w acute and chronic cholecyst w/o obst +C2887972|T047|PT|K80.46|ICD10CM|Calculus of bile duct with acute and chronic cholecystitis without obstruction|Calculus of bile duct with acute and chronic cholecystitis without obstruction +C2887973|T047|AB|K80.47|ICD10CM|Calculus of bile duct w acute and chronic cholecyst w obst|Calculus of bile duct w acute and chronic cholecyst w obst +C2887973|T047|PT|K80.47|ICD10CM|Calculus of bile duct with acute and chronic cholecystitis with obstruction|Calculus of bile duct with acute and chronic cholecystitis with obstruction +C0494800|T047|HT|K80.5|ICD10CM|Calculus of bile duct without cholangitis or cholecystitis|Calculus of bile duct without cholangitis or cholecystitis +C0494800|T047|AB|K80.5|ICD10CM|Calculus of bile duct without cholangitis or cholecystitis|Calculus of bile duct without cholangitis or cholecystitis +C0494800|T047|PT|K80.5|ICD10|Calculus of bile duct without cholangitis or cholecystitis|Calculus of bile duct without cholangitis or cholecystitis +C2887974|T047|ET|K80.5|ICD10CM|Choledocholithiasis (without cholangitis or cholecystitis)|Choledocholithiasis (without cholangitis or cholecystitis) +C2887975|T047|ET|K80.5|ICD10CM|Gallstone (impacted) of bile duct NOS (without cholangitis or cholecystitis)|Gallstone (impacted) of bile duct NOS (without cholangitis or cholecystitis) +C2887976|T047|ET|K80.5|ICD10CM|Gallstone (impacted) of common duct (without cholangitis or cholecystitis)|Gallstone (impacted) of common duct (without cholangitis or cholecystitis) +C2887977|T047|ET|K80.5|ICD10CM|Gallstone (impacted) of hepatic duct (without cholangitis or cholecystitis)|Gallstone (impacted) of hepatic duct (without cholangitis or cholecystitis) +C2887978|T047|ET|K80.5|ICD10CM|Hepatic cholelithiasis (without cholangitis or cholecystitis)|Hepatic cholelithiasis (without cholangitis or cholecystitis) +C2887979|T047|ET|K80.5|ICD10CM|Hepatic colic (recurrent) (without cholangitis or cholecystitis)|Hepatic colic (recurrent) (without cholangitis or cholecystitis) +C2887980|T047|AB|K80.50|ICD10CM|Calculus of bile duct w/o cholangitis or cholecyst w/o obst|Calculus of bile duct w/o cholangitis or cholecyst w/o obst +C2887980|T047|PT|K80.50|ICD10CM|Calculus of bile duct without cholangitis or cholecystitis without obstruction|Calculus of bile duct without cholangitis or cholecystitis without obstruction +C0837274|T047|AB|K80.51|ICD10CM|Calculus of bile duct w/o cholangitis or cholecyst w obst|Calculus of bile duct w/o cholangitis or cholecyst w obst +C0837274|T047|PT|K80.51|ICD10CM|Calculus of bile duct without cholangitis or cholecystitis with obstruction|Calculus of bile duct without cholangitis or cholecystitis with obstruction +C2887981|T047|HT|K80.6|ICD10CM|Calculus of gallbladder and bile duct with cholecystitis|Calculus of gallbladder and bile duct with cholecystitis +C2887981|T047|AB|K80.6|ICD10CM|Calculus of gallbladder and bile duct with cholecystitis|Calculus of gallbladder and bile duct with cholecystitis +C2887982|T047|PT|K80.60|ICD10CM|Calculus of gallbladder and bile duct with cholecystitis, unspecified, without obstruction|Calculus of gallbladder and bile duct with cholecystitis, unspecified, without obstruction +C2887982|T047|AB|K80.60|ICD10CM|Calculus of GB and bile duct w cholecyst, unsp, w/o obst|Calculus of GB and bile duct w cholecyst, unsp, w/o obst +C2887983|T047|PT|K80.61|ICD10CM|Calculus of gallbladder and bile duct with cholecystitis, unspecified, with obstruction|Calculus of gallbladder and bile duct with cholecystitis, unspecified, with obstruction +C2887983|T047|AB|K80.61|ICD10CM|Calculus of GB and bile duct w cholecyst, unsp, w obst|Calculus of GB and bile duct w cholecyst, unsp, w obst +C2887984|T047|PT|K80.62|ICD10CM|Calculus of gallbladder and bile duct with acute cholecystitis without obstruction|Calculus of gallbladder and bile duct with acute cholecystitis without obstruction +C2887984|T047|AB|K80.62|ICD10CM|Calculus of GB and bile duct w acute cholecyst w/o obst|Calculus of GB and bile duct w acute cholecyst w/o obst +C0375367|T047|PT|K80.63|ICD10CM|Calculus of gallbladder and bile duct with acute cholecystitis with obstruction|Calculus of gallbladder and bile duct with acute cholecystitis with obstruction +C0375367|T047|AB|K80.63|ICD10CM|Calculus of GB and bile duct w acute cholecyst w obstruction|Calculus of GB and bile duct w acute cholecyst w obstruction +C2887985|T047|PT|K80.64|ICD10CM|Calculus of gallbladder and bile duct with chronic cholecystitis without obstruction|Calculus of gallbladder and bile duct with chronic cholecystitis without obstruction +C2887985|T047|AB|K80.64|ICD10CM|Calculus of GB and bile duct w chronic cholecyst w/o obst|Calculus of GB and bile duct w chronic cholecyst w/o obst +C2887986|T047|PT|K80.65|ICD10CM|Calculus of gallbladder and bile duct with chronic cholecystitis with obstruction|Calculus of gallbladder and bile duct with chronic cholecystitis with obstruction +C2887986|T047|AB|K80.65|ICD10CM|Calculus of GB and bile duct w chronic cholecyst w obst|Calculus of GB and bile duct w chronic cholecyst w obst +C2887987|T047|PT|K80.66|ICD10CM|Calculus of gallbladder and bile duct with acute and chronic cholecystitis without obstruction|Calculus of gallbladder and bile duct with acute and chronic cholecystitis without obstruction +C2887987|T047|AB|K80.66|ICD10CM|Calculus of GB and bile duct w ac and chr cholecyst w/o obst|Calculus of GB and bile duct w ac and chr cholecyst w/o obst +C0375373|T047|PT|K80.67|ICD10CM|Calculus of gallbladder and bile duct with acute and chronic cholecystitis with obstruction|Calculus of gallbladder and bile duct with acute and chronic cholecystitis with obstruction +C0375373|T047|AB|K80.67|ICD10CM|Calculus of GB and bile duct w ac and chr cholecyst w obst|Calculus of GB and bile duct w ac and chr cholecyst w obst +C0375374|T047|AB|K80.7|ICD10CM|Calculus of gallbladder and bile duct without cholecystitis|Calculus of gallbladder and bile duct without cholecystitis +C0375374|T047|HT|K80.7|ICD10CM|Calculus of gallbladder and bile duct without cholecystitis|Calculus of gallbladder and bile duct without cholecystitis +C2887988|T047|PT|K80.70|ICD10CM|Calculus of gallbladder and bile duct without cholecystitis without obstruction|Calculus of gallbladder and bile duct without cholecystitis without obstruction +C2887988|T047|AB|K80.70|ICD10CM|Calculus of GB and bile duct w/o cholecyst w/o obstruction|Calculus of GB and bile duct w/o cholecyst w/o obstruction +C0375376|T047|PT|K80.71|ICD10CM|Calculus of gallbladder and bile duct without cholecystitis with obstruction|Calculus of gallbladder and bile duct without cholecystitis with obstruction +C0375376|T047|AB|K80.71|ICD10CM|Calculus of GB and bile duct w/o cholecyst w obstruction|Calculus of GB and bile duct w/o cholecyst w obstruction +C0348757|T047|HT|K80.8|ICD10CM|Other cholelithiasis|Other cholelithiasis +C0348757|T047|AB|K80.8|ICD10CM|Other cholelithiasis|Other cholelithiasis +C0348757|T047|PT|K80.8|ICD10|Other cholelithiasis|Other cholelithiasis +C2887989|T047|AB|K80.80|ICD10CM|Other cholelithiasis without obstruction|Other cholelithiasis without obstruction +C2887989|T047|PT|K80.80|ICD10CM|Other cholelithiasis without obstruction|Other cholelithiasis without obstruction +C0837276|T047|AB|K80.81|ICD10CM|Other cholelithiasis with obstruction|Other cholelithiasis with obstruction +C0837276|T047|PT|K80.81|ICD10CM|Other cholelithiasis with obstruction|Other cholelithiasis with obstruction +C0008325|T047|HT|K81|ICD10|Cholecystitis|Cholecystitis +C0008325|T047|HT|K81|ICD10CM|Cholecystitis|Cholecystitis +C0008325|T047|AB|K81|ICD10CM|Cholecystitis|Cholecystitis +C1306121|T047|ET|K81.0|ICD10CM|Abscess of gallbladder|Abscess of gallbladder +C0149520|T047|PT|K81.0|ICD10CM|Acute cholecystitis|Acute cholecystitis +C0149520|T047|AB|K81.0|ICD10CM|Acute cholecystitis|Acute cholecystitis +C0149520|T047|PT|K81.0|ICD10|Acute cholecystitis|Acute cholecystitis +C0267847|T047|ET|K81.0|ICD10CM|Angiocholecystitis|Angiocholecystitis +C0267846|T047|ET|K81.0|ICD10CM|Emphysematous (acute) cholecystitis|Emphysematous (acute) cholecystitis +C0014012|T047|ET|K81.0|ICD10CM|Empyema of gallbladder|Empyema of gallbladder +C0267850|T047|ET|K81.0|ICD10CM|Gangrene of gallbladder|Gangrene of gallbladder +C0262494|T047|ET|K81.0|ICD10CM|Gangrenous cholecystitis|Gangrenous cholecystitis +C1392482|T047|ET|K81.0|ICD10CM|Suppurative cholecystitis|Suppurative cholecystitis +C0085694|T047|PT|K81.1|ICD10|Chronic cholecystitis|Chronic cholecystitis +C0085694|T047|PT|K81.1|ICD10CM|Chronic cholecystitis|Chronic cholecystitis +C0085694|T047|AB|K81.1|ICD10CM|Chronic cholecystitis|Chronic cholecystitis +C2887990|T047|AB|K81.2|ICD10CM|Acute cholecystitis with chronic cholecystitis|Acute cholecystitis with chronic cholecystitis +C2887990|T047|PT|K81.2|ICD10CM|Acute cholecystitis with chronic cholecystitis|Acute cholecystitis with chronic cholecystitis +C0029539|T047|PT|K81.8|ICD10|Other cholecystitis|Other cholecystitis +C0008325|T047|PT|K81.9|ICD10|Cholecystitis, unspecified|Cholecystitis, unspecified +C0008325|T047|PT|K81.9|ICD10CM|Cholecystitis, unspecified|Cholecystitis, unspecified +C0008325|T047|AB|K81.9|ICD10CM|Cholecystitis, unspecified|Cholecystitis, unspecified +C0156213|T047|HT|K82|ICD10|Other diseases of gallbladder|Other diseases of gallbladder +C0156213|T047|AB|K82|ICD10CM|Other diseases of gallbladder|Other diseases of gallbladder +C0156213|T047|HT|K82|ICD10CM|Other diseases of gallbladder|Other diseases of gallbladder +C0156214|T047|PT|K82.0|ICD10CM|Obstruction of gallbladder|Obstruction of gallbladder +C0156214|T047|AB|K82.0|ICD10CM|Obstruction of gallbladder|Obstruction of gallbladder +C0156214|T047|PT|K82.0|ICD10|Obstruction of gallbladder|Obstruction of gallbladder +C2887991|T047|ET|K82.0|ICD10CM|Occlusion of cystic duct or gallbladder without cholelithiasis|Occlusion of cystic duct or gallbladder without cholelithiasis +C2887992|T047|ET|K82.0|ICD10CM|Stenosis of cystic duct or gallbladder without cholelithiasis|Stenosis of cystic duct or gallbladder without cholelithiasis +C2887993|T047|ET|K82.0|ICD10CM|Stricture of cystic duct or gallbladder without cholelithiasis|Stricture of cystic duct or gallbladder without cholelithiasis +C0152445|T047|PT|K82.1|ICD10|Hydrops of gallbladder|Hydrops of gallbladder +C0152445|T047|PT|K82.1|ICD10CM|Hydrops of gallbladder|Hydrops of gallbladder +C0152445|T047|AB|K82.1|ICD10CM|Hydrops of gallbladder|Hydrops of gallbladder +C0267896|T047|ET|K82.1|ICD10CM|Mucocele of gallbladder|Mucocele of gallbladder +C0156215|T037|PT|K82.2|ICD10CM|Perforation of gallbladder|Perforation of gallbladder +C0156215|T037|AB|K82.2|ICD10CM|Perforation of gallbladder|Perforation of gallbladder +C0156215|T037|PT|K82.2|ICD10|Perforation of gallbladder|Perforation of gallbladder +C0866082|T037|ET|K82.2|ICD10CM|Rupture of cystic duct or gallbladder|Rupture of cystic duct or gallbladder +C1392483|T190|ET|K82.3|ICD10CM|Cholecystocolic fistula|Cholecystocolic fistula +C0267898|T047|ET|K82.3|ICD10CM|Cholecystoduodenal fistula|Cholecystoduodenal fistula +C0156216|T190|PT|K82.3|ICD10|Fistula of gallbladder|Fistula of gallbladder +C0156216|T190|PT|K82.3|ICD10CM|Fistula of gallbladder|Fistula of gallbladder +C0156216|T190|AB|K82.3|ICD10CM|Fistula of gallbladder|Fistula of gallbladder +C0152456|T047|PT|K82.4|ICD10CM|Cholesterolosis of gallbladder|Cholesterolosis of gallbladder +C0152456|T047|AB|K82.4|ICD10CM|Cholesterolosis of gallbladder|Cholesterolosis of gallbladder +C0152456|T047|PT|K82.4|ICD10|Cholesterolosis of gallbladder|Cholesterolosis of gallbladder +C0152456|T047|ET|K82.4|ICD10CM|Strawberry gallbladder|Strawberry gallbladder +C2887994|T020|ET|K82.8|ICD10CM|Adhesions of cystic duct or gallbladder|Adhesions of cystic duct or gallbladder +C2887995|T046|ET|K82.8|ICD10CM|Atrophy of cystic duct or gallbladder|Atrophy of cystic duct or gallbladder +C2887996|T047|ET|K82.8|ICD10CM|Cyst of cystic duct or gallbladder|Cyst of cystic duct or gallbladder +C2887997|T047|ET|K82.8|ICD10CM|Dyskinesia of cystic duct or gallbladder|Dyskinesia of cystic duct or gallbladder +C2887998|T047|ET|K82.8|ICD10CM|Hypertrophy of cystic duct or gallbladder|Hypertrophy of cystic duct or gallbladder +C2887999|T047|ET|K82.8|ICD10CM|Nonfunctioning of cystic duct or gallbladder|Nonfunctioning of cystic duct or gallbladder +C0348758|T047|PT|K82.8|ICD10CM|Other specified diseases of gallbladder|Other specified diseases of gallbladder +C0348758|T047|AB|K82.8|ICD10CM|Other specified diseases of gallbladder|Other specified diseases of gallbladder +C0348758|T047|PT|K82.8|ICD10|Other specified diseases of gallbladder|Other specified diseases of gallbladder +C2888000|T047|ET|K82.8|ICD10CM|Ulcer of cystic duct or gallbladder|Ulcer of cystic duct or gallbladder +C0016977|T047|PT|K82.9|ICD10|Disease of gallbladder, unspecified|Disease of gallbladder, unspecified +C0016977|T047|PT|K82.9|ICD10CM|Disease of gallbladder, unspecified|Disease of gallbladder, unspecified +C0016977|T047|AB|K82.9|ICD10CM|Disease of gallbladder, unspecified|Disease of gallbladder, unspecified +C4703331|T047|HT|K82.A|ICD10CM|Disorders of gallbladder in diseases classified elsewhere|Disorders of gallbladder in diseases classified elsewhere +C4703331|T047|AB|K82.A|ICD10CM|Disorders of gallbladder in diseases classified elsewhere|Disorders of gallbladder in diseases classified elsewhere +C4552697|T047|AB|K82.A1|ICD10CM|Gangrene of gallbladder in cholecystitis|Gangrene of gallbladder in cholecystitis +C4552697|T047|PT|K82.A1|ICD10CM|Gangrene of gallbladder in cholecystitis|Gangrene of gallbladder in cholecystitis +C4703282|T047|AB|K82.A2|ICD10CM|Perforation of gallbladder in cholecystitis|Perforation of gallbladder in cholecystitis +C4703282|T047|PT|K82.A2|ICD10CM|Perforation of gallbladder in cholecystitis|Perforation of gallbladder in cholecystitis +C0156217|T047|HT|K83|ICD10|Other diseases of biliary tract|Other diseases of biliary tract +C0156217|T047|AB|K83|ICD10CM|Other diseases of biliary tract|Other diseases of biliary tract +C0156217|T047|HT|K83|ICD10CM|Other diseases of biliary tract|Other diseases of biliary tract +C0008311|T047|PT|K83.0|ICD10|Cholangitis|Cholangitis +C0008311|T047|AB|K83.0|ICD10CM|Cholangitis|Cholangitis +C0008311|T047|HT|K83.0|ICD10CM|Cholangitis|Cholangitis +C0566602|T047|PT|K83.01|ICD10CM|Primary sclerosing cholangitis|Primary sclerosing cholangitis +C0566602|T047|AB|K83.01|ICD10CM|Primary sclerosing cholangitis|Primary sclerosing cholangitis +C0311273|T047|ET|K83.09|ICD10CM|Ascending cholangitis|Ascending cholangitis +C0008311|T047|ET|K83.09|ICD10CM|Cholangitis NOS|Cholangitis NOS +C0400975|T047|AB|K83.09|ICD10CM|Other cholangitis|Other cholangitis +C0400975|T047|PT|K83.09|ICD10CM|Other cholangitis|Other cholangitis +C0267919|T047|ET|K83.09|ICD10CM|Primary cholangitis|Primary cholangitis +C0267922|T047|ET|K83.09|ICD10CM|Recurrent cholangitis|Recurrent cholangitis +C0008313|T047|ET|K83.09|ICD10CM|Sclerosing cholangitis|Sclerosing cholangitis +C0149858|T047|ET|K83.09|ICD10CM|Secondary cholangitis|Secondary cholangitis +C0267923|T047|ET|K83.09|ICD10CM|Stenosing cholangitis|Stenosing cholangitis +C0267924|T047|ET|K83.09|ICD10CM|Suppurative cholangitis|Suppurative cholangitis +C0008370|T047|PT|K83.1|ICD10CM|Obstruction of bile duct|Obstruction of bile duct +C0008370|T047|AB|K83.1|ICD10CM|Obstruction of bile duct|Obstruction of bile duct +C0008370|T047|PT|K83.1|ICD10|Obstruction of bile duct|Obstruction of bile duct +C2888001|T047|ET|K83.1|ICD10CM|Occlusion of bile duct without cholelithiasis|Occlusion of bile duct without cholelithiasis +C2888002|T047|ET|K83.1|ICD10CM|Stenosis of bile duct without cholelithiasis|Stenosis of bile duct without cholelithiasis +C2888003|T047|ET|K83.1|ICD10CM|Stricture of bile duct without cholelithiasis|Stricture of bile duct without cholelithiasis +C0156218|T047|PT|K83.2|ICD10|Perforation of bile duct|Perforation of bile duct +C0156218|T047|PT|K83.2|ICD10CM|Perforation of bile duct|Perforation of bile duct +C0156218|T047|AB|K83.2|ICD10CM|Perforation of bile duct|Perforation of bile duct +C0267927|T037|ET|K83.2|ICD10CM|Rupture of bile duct|Rupture of bile duct +C0267928|T190|ET|K83.3|ICD10CM|Choledochoduodenal fistula|Choledochoduodenal fistula +C0005417|T046|PT|K83.3|ICD10CM|Fistula of bile duct|Fistula of bile duct +C0005417|T046|AB|K83.3|ICD10CM|Fistula of bile duct|Fistula of bile duct +C0005417|T046|PT|K83.3|ICD10|Fistula of bile duct|Fistula of bile duct +C0152168|T046|PT|K83.4|ICD10|Spasm of sphincter of Oddi|Spasm of sphincter of Oddi +C0152168|T046|PT|K83.4|ICD10CM|Spasm of sphincter of Oddi|Spasm of sphincter of Oddi +C0152168|T046|AB|K83.4|ICD10CM|Spasm of sphincter of Oddi|Spasm of sphincter of Oddi +C0400990|T020|PT|K83.5|ICD10CM|Biliary cyst|Biliary cyst +C0400990|T020|AB|K83.5|ICD10CM|Biliary cyst|Biliary cyst +C0400990|T020|PT|K83.5|ICD10|Biliary cyst|Biliary cyst +C2888004|T033|ET|K83.8|ICD10CM|Adhesions of biliary tract|Adhesions of biliary tract +C2888005|T046|ET|K83.8|ICD10CM|Atrophy of biliary tract|Atrophy of biliary tract +C0400995|T047|ET|K83.8|ICD10CM|Hypertrophy of biliary tract|Hypertrophy of biliary tract +C0348759|T047|PT|K83.8|ICD10CM|Other specified diseases of biliary tract|Other specified diseases of biliary tract +C0348759|T047|AB|K83.8|ICD10CM|Other specified diseases of biliary tract|Other specified diseases of biliary tract +C0348759|T047|PT|K83.8|ICD10|Other specified diseases of biliary tract|Other specified diseases of biliary tract +C2888006|T047|ET|K83.8|ICD10CM|Ulcer of biliary tract|Ulcer of biliary tract +C0005424|T047|PT|K83.9|ICD10|Disease of biliary tract, unspecified|Disease of biliary tract, unspecified +C0005424|T047|PT|K83.9|ICD10CM|Disease of biliary tract, unspecified|Disease of biliary tract, unspecified +C0005424|T047|AB|K83.9|ICD10CM|Disease of biliary tract, unspecified|Disease of biliary tract, unspecified +C0267937|T047|ET|K85|ICD10CM|acute (recurrent) pancreatitis|acute (recurrent) pancreatitis +C0001339|T047|HT|K85|ICD10CM|Acute pancreatitis|Acute pancreatitis +C0001339|T047|AB|K85|ICD10CM|Acute pancreatitis|Acute pancreatitis +C0001339|T047|PT|K85|ICD10|Acute pancreatitis|Acute pancreatitis +C0267938|T047|ET|K85|ICD10CM|subacute pancreatitis|subacute pancreatitis +C0341461|T047|AB|K85.0|ICD10CM|Idiopathic acute pancreatitis|Idiopathic acute pancreatitis +C0341461|T047|HT|K85.0|ICD10CM|Idiopathic acute pancreatitis|Idiopathic acute pancreatitis +C4268644|T047|AB|K85.00|ICD10CM|Idiopathic acute pancreatitis without necrosis or infection|Idiopathic acute pancreatitis without necrosis or infection +C4268644|T047|PT|K85.00|ICD10CM|Idiopathic acute pancreatitis without necrosis or infection|Idiopathic acute pancreatitis without necrosis or infection +C4268645|T047|AB|K85.01|ICD10CM|Idiopathic acute pancreatitis with uninfected necrosis|Idiopathic acute pancreatitis with uninfected necrosis +C4268645|T047|PT|K85.01|ICD10CM|Idiopathic acute pancreatitis with uninfected necrosis|Idiopathic acute pancreatitis with uninfected necrosis +C4270812|T047|AB|K85.02|ICD10CM|Idiopathic acute pancreatitis with infected necrosis|Idiopathic acute pancreatitis with infected necrosis +C4270812|T047|PT|K85.02|ICD10CM|Idiopathic acute pancreatitis with infected necrosis|Idiopathic acute pancreatitis with infected necrosis +C0747194|T047|AB|K85.1|ICD10CM|Biliary acute pancreatitis|Biliary acute pancreatitis +C0747194|T047|HT|K85.1|ICD10CM|Biliary acute pancreatitis|Biliary acute pancreatitis +C0521614|T047|ET|K85.1|ICD10CM|Gallstone pancreatitis|Gallstone pancreatitis +C4268646|T047|AB|K85.10|ICD10CM|Biliary acute pancreatitis without necrosis or infection|Biliary acute pancreatitis without necrosis or infection +C4268646|T047|PT|K85.10|ICD10CM|Biliary acute pancreatitis without necrosis or infection|Biliary acute pancreatitis without necrosis or infection +C4268647|T047|AB|K85.11|ICD10CM|Biliary acute pancreatitis with uninfected necrosis|Biliary acute pancreatitis with uninfected necrosis +C4268647|T047|PT|K85.11|ICD10CM|Biliary acute pancreatitis with uninfected necrosis|Biliary acute pancreatitis with uninfected necrosis +C4268648|T047|AB|K85.12|ICD10CM|Biliary acute pancreatitis with infected necrosis|Biliary acute pancreatitis with infected necrosis +C4268648|T047|PT|K85.12|ICD10CM|Biliary acute pancreatitis with infected necrosis|Biliary acute pancreatitis with infected necrosis +C0341460|T047|AB|K85.2|ICD10CM|Alcohol induced acute pancreatitis|Alcohol induced acute pancreatitis +C0341460|T047|HT|K85.2|ICD10CM|Alcohol induced acute pancreatitis|Alcohol induced acute pancreatitis +C4268649|T047|AB|K85.20|ICD10CM|Alcohol induced acute pancreatitis without necrosis or infct|Alcohol induced acute pancreatitis without necrosis or infct +C4268649|T047|PT|K85.20|ICD10CM|Alcohol induced acute pancreatitis without necrosis or infection|Alcohol induced acute pancreatitis without necrosis or infection +C4268650|T047|AB|K85.21|ICD10CM|Alcohol induced acute pancreatitis with uninfected necrosis|Alcohol induced acute pancreatitis with uninfected necrosis +C4268650|T047|PT|K85.21|ICD10CM|Alcohol induced acute pancreatitis with uninfected necrosis|Alcohol induced acute pancreatitis with uninfected necrosis +C4268651|T047|AB|K85.22|ICD10CM|Alcohol induced acute pancreatitis with infected necrosis|Alcohol induced acute pancreatitis with infected necrosis +C4268651|T047|PT|K85.22|ICD10CM|Alcohol induced acute pancreatitis with infected necrosis|Alcohol induced acute pancreatitis with infected necrosis +C0341462|T046|AB|K85.3|ICD10CM|Drug induced acute pancreatitis|Drug induced acute pancreatitis +C0341462|T046|HT|K85.3|ICD10CM|Drug induced acute pancreatitis|Drug induced acute pancreatitis +C4268652|T047|AB|K85.30|ICD10CM|Drug induced acute pancreatitis without necrosis or infct|Drug induced acute pancreatitis without necrosis or infct +C4268652|T047|PT|K85.30|ICD10CM|Drug induced acute pancreatitis without necrosis or infection|Drug induced acute pancreatitis without necrosis or infection +C4268653|T047|AB|K85.31|ICD10CM|Drug induced acute pancreatitis with uninfected necrosis|Drug induced acute pancreatitis with uninfected necrosis +C4268653|T047|PT|K85.31|ICD10CM|Drug induced acute pancreatitis with uninfected necrosis|Drug induced acute pancreatitis with uninfected necrosis +C4268654|T047|AB|K85.32|ICD10CM|Drug induced acute pancreatitis with infected necrosis|Drug induced acute pancreatitis with infected necrosis +C4268654|T047|PT|K85.32|ICD10CM|Drug induced acute pancreatitis with infected necrosis|Drug induced acute pancreatitis with infected necrosis +C2888008|T047|AB|K85.8|ICD10CM|Other acute pancreatitis|Other acute pancreatitis +C2888008|T047|HT|K85.8|ICD10CM|Other acute pancreatitis|Other acute pancreatitis +C4268655|T047|AB|K85.80|ICD10CM|Other acute pancreatitis without necrosis or infection|Other acute pancreatitis without necrosis or infection +C4268655|T047|PT|K85.80|ICD10CM|Other acute pancreatitis without necrosis or infection|Other acute pancreatitis without necrosis or infection +C4268656|T047|AB|K85.81|ICD10CM|Other acute pancreatitis with uninfected necrosis|Other acute pancreatitis with uninfected necrosis +C4268656|T047|PT|K85.81|ICD10CM|Other acute pancreatitis with uninfected necrosis|Other acute pancreatitis with uninfected necrosis +C4268657|T047|AB|K85.82|ICD10CM|Other acute pancreatitis with infected necrosis|Other acute pancreatitis with infected necrosis +C4268657|T047|PT|K85.82|ICD10CM|Other acute pancreatitis with infected necrosis|Other acute pancreatitis with infected necrosis +C0001339|T047|AB|K85.9|ICD10CM|Acute pancreatitis, unspecified|Acute pancreatitis, unspecified +C0001339|T047|HT|K85.9|ICD10CM|Acute pancreatitis, unspecified|Acute pancreatitis, unspecified +C0030305|T047|ET|K85.9|ICD10CM|Pancreatitis NOS|Pancreatitis NOS +C4268658|T047|AB|K85.90|ICD10CM|Acute pancreatitis without necrosis or infection, unsp|Acute pancreatitis without necrosis or infection, unsp +C4268658|T047|PT|K85.90|ICD10CM|Acute pancreatitis without necrosis or infection, unspecified|Acute pancreatitis without necrosis or infection, unspecified +C4268659|T047|AB|K85.91|ICD10CM|Acute pancreatitis with uninfected necrosis, unspecified|Acute pancreatitis with uninfected necrosis, unspecified +C4268659|T047|PT|K85.91|ICD10CM|Acute pancreatitis with uninfected necrosis, unspecified|Acute pancreatitis with uninfected necrosis, unspecified +C4268660|T047|AB|K85.92|ICD10CM|Acute pancreatitis with infected necrosis, unspecified|Acute pancreatitis with infected necrosis, unspecified +C4268660|T047|PT|K85.92|ICD10CM|Acute pancreatitis with infected necrosis, unspecified|Acute pancreatitis with infected necrosis, unspecified +C0341455|T047|HT|K86|ICD10|Other diseases of pancreas|Other diseases of pancreas +C0341455|T047|AB|K86|ICD10CM|Other diseases of pancreas|Other diseases of pancreas +C0341455|T047|HT|K86|ICD10CM|Other diseases of pancreas|Other diseases of pancreas +C0341470|T047|PT|K86.0|ICD10CM|Alcohol-induced chronic pancreatitis|Alcohol-induced chronic pancreatitis +C0341470|T047|AB|K86.0|ICD10CM|Alcohol-induced chronic pancreatitis|Alcohol-induced chronic pancreatitis +C0341470|T047|PT|K86.0|ICD10|Alcohol-induced chronic pancreatitis|Alcohol-induced chronic pancreatitis +C0149521|T047|ET|K86.1|ICD10CM|Chronic pancreatitis NOS|Chronic pancreatitis NOS +C0866094|T047|ET|K86.1|ICD10CM|Infectious chronic pancreatitis|Infectious chronic pancreatitis +C0348760|T047|PT|K86.1|ICD10CM|Other chronic pancreatitis|Other chronic pancreatitis +C0348760|T047|AB|K86.1|ICD10CM|Other chronic pancreatitis|Other chronic pancreatitis +C0348760|T047|PT|K86.1|ICD10|Other chronic pancreatitis|Other chronic pancreatitis +C2074913|T047|ET|K86.1|ICD10CM|Recurrent chronic pancreatitis|Recurrent chronic pancreatitis +C0149521|T047|ET|K86.1|ICD10CM|Relapsing chronic pancreatitis|Relapsing chronic pancreatitis +C0030283|T047|PT|K86.2|ICD10|Cyst of pancreas|Cyst of pancreas +C0030283|T047|PT|K86.2|ICD10CM|Cyst of pancreas|Cyst of pancreas +C0030283|T047|AB|K86.2|ICD10CM|Cyst of pancreas|Cyst of pancreas +C0030299|T047|PT|K86.3|ICD10CM|Pseudocyst of pancreas|Pseudocyst of pancreas +C0030299|T047|AB|K86.3|ICD10CM|Pseudocyst of pancreas|Pseudocyst of pancreas +C0030299|T047|PT|K86.3|ICD10|Pseudocyst of pancreas|Pseudocyst of pancreas +C0029771|T047|PT|K86.8|ICD10|Other specified diseases of pancreas|Other specified diseases of pancreas +C0029771|T047|AB|K86.8|ICD10CM|Other specified diseases of pancreas|Other specified diseases of pancreas +C0029771|T047|HT|K86.8|ICD10CM|Other specified diseases of pancreas|Other specified diseases of pancreas +C0267963|T047|PT|K86.81|ICD10CM|Exocrine pancreatic insufficiency|Exocrine pancreatic insufficiency +C0267963|T047|AB|K86.81|ICD10CM|Exocrine pancreatic insufficiency|Exocrine pancreatic insufficiency +C4268661|T047|ET|K86.89|ICD10CM|Aseptic pancreatic necrosis, unrelated to acute pancreatitis|Aseptic pancreatic necrosis, unrelated to acute pancreatitis +C0152014|T047|ET|K86.89|ICD10CM|Atrophy of pancreas|Atrophy of pancreas +C0267951|T047|ET|K86.89|ICD10CM|Calculus of pancreas|Calculus of pancreas +C0267952|T047|ET|K86.89|ICD10CM|Cirrhosis of pancreas|Cirrhosis of pancreas +C0267952|T047|ET|K86.89|ICD10CM|Fibrosis of pancreas|Fibrosis of pancreas +C0029771|T047|AB|K86.89|ICD10CM|Other specified diseases of pancreas|Other specified diseases of pancreas +C0029771|T047|PT|K86.89|ICD10CM|Other specified diseases of pancreas|Other specified diseases of pancreas +C4268662|T047|ET|K86.89|ICD10CM|Pancreatic fat necrosis, unrelated to acute pancreatitis|Pancreatic fat necrosis, unrelated to acute pancreatitis +C0267959|T047|ET|K86.89|ICD10CM|Pancreatic infantilism|Pancreatic infantilism +C4268663|T047|ET|K86.89|ICD10CM|Pancreatic necrosis NOS, unrelated to acute pancreatitis|Pancreatic necrosis NOS, unrelated to acute pancreatitis +C0030286|T047|PT|K86.9|ICD10|Disease of pancreas, unspecified|Disease of pancreas, unspecified +C0030286|T047|PT|K86.9|ICD10CM|Disease of pancreas, unspecified|Disease of pancreas, unspecified +C0030286|T047|AB|K86.9|ICD10CM|Disease of pancreas, unspecified|Disease of pancreas, unspecified +C0694509|T047|AB|K87|ICD10CM|Disord of GB, biliary trac and pancreas in dis classd elswhr|Disord of GB, biliary trac and pancreas in dis classd elswhr +C0694509|T047|PT|K87|ICD10CM|Disorders of gallbladder, biliary tract and pancreas in diseases classified elsewhere|Disorders of gallbladder, biliary tract and pancreas in diseases classified elsewhere +C0694509|T047|HT|K87|ICD10|Disorders of gallbladder, biliary tract and pancreas in diseases classified elsewhere|Disorders of gallbladder, biliary tract and pancreas in diseases classified elsewhere +C0348761|T047|PT|K87.0|ICD10|Disorders of gallbladder and biliary tract in diseases classified elsewhere|Disorders of gallbladder and biliary tract in diseases classified elsewhere +C0348762|T047|PT|K87.1|ICD10|Disorders of pancreas in diseases classified elsewhere|Disorders of pancreas in diseases classified elsewhere +C0024523|T047|HT|K90|ICD10|Intestinal malabsorption|Intestinal malabsorption +C0024523|T047|HT|K90|ICD10CM|Intestinal malabsorption|Intestinal malabsorption +C0024523|T047|AB|K90|ICD10CM|Intestinal malabsorption|Intestinal malabsorption +C0178285|T047|HT|K90-K93.9|ICD10|Other diseases of the digestive system|Other diseases of the digestive system +C3264461|T047|HT|K90-K95|ICD10CM|Other diseases of the digestive system (K90-K95)|Other diseases of the digestive system (K90-K95) +C0007570|T047|PT|K90.0|ICD10CM|Celiac disease|Celiac disease +C0007570|T047|AB|K90.0|ICD10CM|Celiac disease|Celiac disease +C0007570|T047|PT|K90.0|ICD10AE|Celiac disease|Celiac disease +C4268664|T047|ET|K90.0|ICD10CM|Celiac disease with steatorrhea|Celiac disease with steatorrhea +C4509268|T047|ET|K90.0|ICD10CM|Celiac gluten-sensitive enteropathy|Celiac gluten-sensitive enteropathy +C0007570|T047|PT|K90.0|ICD10|Coeliac disease|Coeliac disease +C0007570|T047|ET|K90.0|ICD10CM|Nontropical sprue|Nontropical sprue +C0205707|T047|ET|K90.1|ICD10CM|Sprue NOS|Sprue NOS +C0038054|T047|PT|K90.1|ICD10CM|Tropical sprue|Tropical sprue +C0038054|T047|AB|K90.1|ICD10CM|Tropical sprue|Tropical sprue +C0038054|T047|PT|K90.1|ICD10|Tropical sprue|Tropical sprue +C0038054|T047|ET|K90.1|ICD10CM|Tropical steatorrhea|Tropical steatorrhea +C0005750|T047|ET|K90.2|ICD10CM|Blind loop syndrome NOS|Blind loop syndrome NOS +C0494805|T047|PT|K90.2|ICD10CM|Blind loop syndrome, not elsewhere classified|Blind loop syndrome, not elsewhere classified +C0494805|T047|AB|K90.2|ICD10CM|Blind loop syndrome, not elsewhere classified|Blind loop syndrome, not elsewhere classified +C0494805|T047|PT|K90.2|ICD10|Blind loop syndrome, not elsewhere classified|Blind loop syndrome, not elsewhere classified +C0152166|T047|PT|K90.3|ICD10AE|Pancreatic steatorrhea|Pancreatic steatorrhea +C0152166|T047|PT|K90.3|ICD10CM|Pancreatic steatorrhea|Pancreatic steatorrhea +C0152166|T047|AB|K90.3|ICD10CM|Pancreatic steatorrhea|Pancreatic steatorrhea +C0152166|T047|PT|K90.3|ICD10|Pancreatic steatorrhoea|Pancreatic steatorrhoea +C0494806|T047|PT|K90.4|ICD10|Malabsorption due to intolerance, not elsewhere classified|Malabsorption due to intolerance, not elsewhere classified +C4268665|T047|AB|K90.4|ICD10CM|Other malabsorption due to intolerance|Other malabsorption due to intolerance +C4268665|T047|HT|K90.4|ICD10CM|Other malabsorption due to intolerance|Other malabsorption due to intolerance +C0850024|T047|ET|K90.41|ICD10CM|Gluten sensitivity NOS|Gluten sensitivity NOS +C4268666|T047|ET|K90.41|ICD10CM|Non-celiac gluten sensitive enteropathy|Non-celiac gluten sensitive enteropathy +C2711053|T046|PT|K90.41|ICD10CM|Non-celiac gluten sensitivity|Non-celiac gluten sensitivity +C2711053|T046|AB|K90.41|ICD10CM|Non-celiac gluten sensitivity|Non-celiac gluten sensitivity +C0341293|T046|ET|K90.49|ICD10CM|Malabsorption due to intolerance to carbohydrate|Malabsorption due to intolerance to carbohydrate +C0554102|T047|ET|K90.49|ICD10CM|Malabsorption due to intolerance to fat|Malabsorption due to intolerance to fat +C0341295|T046|ET|K90.49|ICD10CM|Malabsorption due to intolerance to protein|Malabsorption due to intolerance to protein +C4268667|T046|ET|K90.49|ICD10CM|Malabsorption due to intolerance to starch|Malabsorption due to intolerance to starch +C0494806|T047|PT|K90.49|ICD10CM|Malabsorption due to intolerance, not elsewhere classified|Malabsorption due to intolerance, not elsewhere classified +C0494806|T047|AB|K90.49|ICD10CM|Malabsorption due to intolerance, not elsewhere classified|Malabsorption due to intolerance, not elsewhere classified +C0341288|T047|PT|K90.8|ICD10|Other intestinal malabsorption|Other intestinal malabsorption +C0341288|T047|HT|K90.8|ICD10CM|Other intestinal malabsorption|Other intestinal malabsorption +C0341288|T047|AB|K90.8|ICD10CM|Other intestinal malabsorption|Other intestinal malabsorption +C0023788|T047|PT|K90.81|ICD10CM|Whipple's disease|Whipple's disease +C0023788|T047|AB|K90.81|ICD10CM|Whipple's disease|Whipple's disease +C0341288|T047|PT|K90.89|ICD10CM|Other intestinal malabsorption|Other intestinal malabsorption +C0341288|T047|AB|K90.89|ICD10CM|Other intestinal malabsorption|Other intestinal malabsorption +C0024523|T047|PT|K90.9|ICD10CM|Intestinal malabsorption, unspecified|Intestinal malabsorption, unspecified +C0024523|T047|AB|K90.9|ICD10CM|Intestinal malabsorption, unspecified|Intestinal malabsorption, unspecified +C0024523|T047|PT|K90.9|ICD10|Intestinal malabsorption, unspecified|Intestinal malabsorption, unspecified +C2888010|T047|AB|K91|ICD10CM|Intraop and postproc comp and disorders of dgstv sys, NEC|Intraop and postproc comp and disorders of dgstv sys, NEC +C0494807|T047|HT|K91|ICD10|Postprocedural disorders of digestive system, not elsewhere classified|Postprocedural disorders of digestive system, not elsewhere classified +C0156171|T184|PT|K91.0|ICD10|Vomiting following gastrointestinal surgery|Vomiting following gastrointestinal surgery +C0156171|T184|PT|K91.0|ICD10CM|Vomiting following gastrointestinal surgery|Vomiting following gastrointestinal surgery +C0156171|T184|AB|K91.0|ICD10CM|Vomiting following gastrointestinal surgery|Vomiting following gastrointestinal surgery +C0013288|T047|ET|K91.1|ICD10CM|Dumping syndrome|Dumping syndrome +C0032763|T047|ET|K91.1|ICD10CM|Postgastrectomy syndrome|Postgastrectomy syndrome +C0032763|T047|PT|K91.1|ICD10CM|Postgastric surgery syndromes|Postgastric surgery syndromes +C0032763|T047|AB|K91.1|ICD10CM|Postgastric surgery syndromes|Postgastric surgery syndromes +C0032763|T047|PT|K91.1|ICD10|Postgastric surgery syndromes|Postgastric surgery syndromes +C0311268|T047|ET|K91.1|ICD10CM|Postvagotomy syndrome|Postvagotomy syndrome +C1406683|T047|ET|K91.2|ICD10CM|Postsurgical blind loop syndrome|Postsurgical blind loop syndrome +C0494808|T046|PT|K91.2|ICD10CM|Postsurgical malabsorption, not elsewhere classified|Postsurgical malabsorption, not elsewhere classified +C0494808|T046|AB|K91.2|ICD10CM|Postsurgical malabsorption, not elsewhere classified|Postsurgical malabsorption, not elsewhere classified +C0494808|T046|PT|K91.2|ICD10|Postsurgical malabsorption, not elsewhere classified|Postsurgical malabsorption, not elsewhere classified +C0494809|T046|PT|K91.3|ICD10|Postoperative intestinal obstruction|Postoperative intestinal obstruction +C0494809|T046|AB|K91.3|ICD10CM|Postprocedural intestinal obstruction|Postprocedural intestinal obstruction +C0494809|T046|HT|K91.3|ICD10CM|Postprocedural intestinal obstruction|Postprocedural intestinal obstruction +C4509269|T046|AB|K91.30|ICD10CM|Postproc intestinal obst, unsp as to partial versus complete|Postproc intestinal obst, unsp as to partial versus complete +C0494809|T046|ET|K91.30|ICD10CM|Postprocedural intestinal obstruction NOS|Postprocedural intestinal obstruction NOS +C4509269|T046|PT|K91.30|ICD10CM|Postprocedural intestinal obstruction, unspecified as to partial versus complete|Postprocedural intestinal obstruction, unspecified as to partial versus complete +C4509271|T046|ET|K91.31|ICD10CM|Postprocedural incomplete intestinal obstruction|Postprocedural incomplete intestinal obstruction +C4509270|T046|AB|K91.31|ICD10CM|Postprocedural partial intestinal obstruction|Postprocedural partial intestinal obstruction +C4509270|T046|PT|K91.31|ICD10CM|Postprocedural partial intestinal obstruction|Postprocedural partial intestinal obstruction +C4509272|T046|AB|K91.32|ICD10CM|Postprocedural complete intestinal obstruction|Postprocedural complete intestinal obstruction +C4509272|T046|PT|K91.32|ICD10CM|Postprocedural complete intestinal obstruction|Postprocedural complete intestinal obstruction +C0156186|T046|PT|K91.4|ICD10|Colostomy and enterostomy malfunction|Colostomy and enterostomy malfunction +C0152099|T047|PT|K91.5|ICD10|Postcholecystectomy syndrome|Postcholecystectomy syndrome +C0152099|T047|PT|K91.5|ICD10CM|Postcholecystectomy syndrome|Postcholecystectomy syndrome +C0152099|T047|AB|K91.5|ICD10CM|Postcholecystectomy syndrome|Postcholecystectomy syndrome +C2888011|T047|AB|K91.6|ICD10CM|Intraop hemor/hemtom of a dgstv sys org comp a procedure|Intraop hemor/hemtom of a dgstv sys org comp a procedure +C2888012|T046|AB|K91.61|ICD10CM|Intraop hemor/hemtom of dgstv sys org comp a dgstv sys proc|Intraop hemor/hemtom of dgstv sys org comp a dgstv sys proc +C2888013|T047|AB|K91.62|ICD10CM|Intraop hemor/hemtom of a dgstv sys org comp oth procedure|Intraop hemor/hemtom of a dgstv sys org comp oth procedure +C2888014|T037|AB|K91.7|ICD10CM|Accidental pnctr & lac of a digestive system org dur proc|Accidental pnctr & lac of a digestive system org dur proc +C2888014|T037|HT|K91.7|ICD10CM|Accidental puncture and laceration of a digestive system organ or structure during a procedure|Accidental puncture and laceration of a digestive system organ or structure during a procedure +C2888015|T037|AB|K91.71|ICD10CM|Accidental pnctr & lac of a dgstv sys org dur dgstv sys proc|Accidental pnctr & lac of a dgstv sys org dur dgstv sys proc +C2888016|T037|AB|K91.72|ICD10CM|Acc pnctr & lac of a dgstv sys org during oth procedure|Acc pnctr & lac of a dgstv sys org during oth procedure +C2888016|T037|PT|K91.72|ICD10CM|Accidental puncture and laceration of a digestive system organ or structure during other procedure|Accidental puncture and laceration of a digestive system organ or structure during other procedure +C2888017|T047|AB|K91.8|ICD10CM|Oth intraop and postproc comp and disorders of dgstv sys|Oth intraop and postproc comp and disorders of dgstv sys +C2888017|T047|HT|K91.8|ICD10CM|Other intraoperative and postprocedural complications and disorders of digestive system|Other intraoperative and postprocedural complications and disorders of digestive system +C0869061|T047|PT|K91.8|ICD10|Other postprocedural disorders of digestive system, not elsewhere classified|Other postprocedural disorders of digestive system, not elsewhere classified +C2888018|T047|AB|K91.81|ICD10CM|Other intraoperative complications of digestive system|Other intraoperative complications of digestive system +C2888018|T047|PT|K91.81|ICD10CM|Other intraoperative complications of digestive system|Other intraoperative complications of digestive system +C0274386|T046|PT|K91.82|ICD10CM|Postprocedural hepatic failure|Postprocedural hepatic failure +C0274386|T046|AB|K91.82|ICD10CM|Postprocedural hepatic failure|Postprocedural hepatic failure +C0274387|T047|PT|K91.83|ICD10CM|Postprocedural hepatorenal syndrome|Postprocedural hepatorenal syndrome +C0274387|T047|AB|K91.83|ICD10CM|Postprocedural hepatorenal syndrome|Postprocedural hepatorenal syndrome +C4268668|T046|AB|K91.84|ICD10CM|Postproc hemorrhage of a dgstv sys org following a procedure|Postproc hemorrhage of a dgstv sys org following a procedure +C4268668|T046|HT|K91.84|ICD10CM|Postprocedural hemorrhage of a digestive system organ or structure following a procedure|Postprocedural hemorrhage of a digestive system organ or structure following a procedure +C4268669|T046|AB|K91.840|ICD10CM|Postproc hemor of a dgstv sys org fol a dgstv sys procedure|Postproc hemor of a dgstv sys org fol a dgstv sys procedure +C4268670|T046|AB|K91.841|ICD10CM|Postproc hemor of a dgstv sys org following other procedure|Postproc hemor of a dgstv sys org following other procedure +C4268670|T046|PT|K91.841|ICD10CM|Postprocedural hemorrhage of a digestive system organ or structure following other procedure|Postprocedural hemorrhage of a digestive system organ or structure following other procedure +C2712967|T046|AB|K91.85|ICD10CM|Complications of intestinal pouch|Complications of intestinal pouch +C2712967|T046|HT|K91.85|ICD10CM|Complications of intestinal pouch|Complications of intestinal pouch +C2712972|T047|ET|K91.850|ICD10CM|Inflammation of internal ileoanal pouch|Inflammation of internal ileoanal pouch +C0376620|T047|PT|K91.850|ICD10CM|Pouchitis|Pouchitis +C0376620|T047|AB|K91.850|ICD10CM|Pouchitis|Pouchitis +C2712860|T046|AB|K91.858|ICD10CM|Other complications of intestinal pouch|Other complications of intestinal pouch +C2712860|T046|PT|K91.858|ICD10CM|Other complications of intestinal pouch|Other complications of intestinal pouch +C3161133|T046|AB|K91.86|ICD10CM|Retained cholelithiasis following cholecystectomy|Retained cholelithiasis following cholecystectomy +C3161133|T046|PT|K91.86|ICD10CM|Retained cholelithiasis following cholecystectomy|Retained cholelithiasis following cholecystectomy +C4268671|T046|AB|K91.87|ICD10CM|Postproc hematoma and seroma of a dgstv sys org fol a proc|Postproc hematoma and seroma of a dgstv sys org fol a proc +C4268671|T046|HT|K91.87|ICD10CM|Postprocedural hematoma and seroma of a digestive system organ or structure following a procedure|Postprocedural hematoma and seroma of a digestive system organ or structure following a procedure +C4268672|T046|AB|K91.870|ICD10CM|Postproc hematoma of a dgstv sys org fol a dgstv sys proc|Postproc hematoma of a dgstv sys org fol a dgstv sys proc +C4268673|T046|AB|K91.871|ICD10CM|Postproc hematoma of a dgstv sys org fol other procedure|Postproc hematoma of a dgstv sys org fol other procedure +C4268673|T046|PT|K91.871|ICD10CM|Postprocedural hematoma of a digestive system organ or structure following other procedure|Postprocedural hematoma of a digestive system organ or structure following other procedure +C4268674|T046|AB|K91.872|ICD10CM|Postproc seroma of a dgstv sys org fol a dgstv sys procedure|Postproc seroma of a dgstv sys org fol a dgstv sys procedure +C4268675|T046|AB|K91.873|ICD10CM|Postproc seroma of a dgstv sys org following other procedure|Postproc seroma of a dgstv sys org following other procedure +C4268675|T046|PT|K91.873|ICD10CM|Postprocedural seroma of a digestive system organ or structure following other procedure|Postprocedural seroma of a digestive system organ or structure following other procedure +C2888022|T047|AB|K91.89|ICD10CM|Oth postprocedural complications and disorders of dgstv sys|Oth postprocedural complications and disorders of dgstv sys +C2888022|T047|PT|K91.89|ICD10CM|Other postprocedural complications and disorders of digestive system|Other postprocedural complications and disorders of digestive system +C0494810|T047|PT|K91.9|ICD10|Postprocedural disorder of digestive system, unspecified|Postprocedural disorder of digestive system, unspecified +C0178285|T047|AB|K92|ICD10CM|Other diseases of digestive system|Other diseases of digestive system +C0178285|T047|HT|K92|ICD10CM|Other diseases of digestive system|Other diseases of digestive system +C0178285|T047|HT|K92|ICD10|Other diseases of digestive system|Other diseases of digestive system +C0018926|T184|PT|K92.0|ICD10|Haematemesis|Haematemesis +C0018926|T184|PT|K92.0|ICD10AE|Hematemesis|Hematemesis +C0018926|T184|PT|K92.0|ICD10CM|Hematemesis|Hematemesis +C0018926|T184|AB|K92.0|ICD10CM|Hematemesis|Hematemesis +C0025222|T046|PT|K92.1|ICD10|Melaena|Melaena +C0025222|T046|PT|K92.1|ICD10CM|Melena|Melena +C0025222|T046|AB|K92.1|ICD10CM|Melena|Melena +C0025222|T046|PT|K92.1|ICD10AE|Melena|Melena +C0235325|T046|ET|K92.2|ICD10CM|Gastric hemorrhage NOS|Gastric hemorrhage NOS +C0017181|T046|PT|K92.2|ICD10|Gastrointestinal haemorrhage, unspecified|Gastrointestinal haemorrhage, unspecified +C0017181|T046|PT|K92.2|ICD10AE|Gastrointestinal hemorrhage, unspecified|Gastrointestinal hemorrhage, unspecified +C0017181|T046|PT|K92.2|ICD10CM|Gastrointestinal hemorrhage, unspecified|Gastrointestinal hemorrhage, unspecified +C0017181|T046|AB|K92.2|ICD10CM|Gastrointestinal hemorrhage, unspecified|Gastrointestinal hemorrhage, unspecified +C0267373|T046|ET|K92.2|ICD10CM|Intestinal hemorrhage NOS|Intestinal hemorrhage NOS +C0348764|T047|PT|K92.8|ICD10|Other specified diseases of digestive system|Other specified diseases of digestive system +C0348764|T047|HT|K92.8|ICD10CM|Other specified diseases of the digestive system|Other specified diseases of the digestive system +C0348764|T047|AB|K92.8|ICD10CM|Other specified diseases of the digestive system|Other specified diseases of the digestive system +C3874327|T047|AB|K92.81|ICD10CM|Gastrointestinal mucositis (ulcerative)|Gastrointestinal mucositis (ulcerative) +C3874327|T047|PT|K92.81|ICD10CM|Gastrointestinal mucositis (ulcerative)|Gastrointestinal mucositis (ulcerative) +C0348764|T047|AB|K92.89|ICD10CM|Other specified diseases of the digestive system|Other specified diseases of the digestive system +C0348764|T047|PT|K92.89|ICD10CM|Other specified diseases of the digestive system|Other specified diseases of the digestive system +C0012242|T047|PT|K92.9|ICD10|Disease of digestive system, unspecified|Disease of digestive system, unspecified +C0012242|T047|PT|K92.9|ICD10CM|Disease of digestive system, unspecified|Disease of digestive system, unspecified +C0012242|T047|AB|K92.9|ICD10CM|Disease of digestive system, unspecified|Disease of digestive system, unspecified +C0694510|T047|HT|K93|ICD10|Disorders of other digestive organs in diseases classified elsewhere|Disorders of other digestive organs in diseases classified elsewhere +C0494812|T047|PT|K93.0|ICD10|Tuberculous disorders of intestines, peritoneum and mesenteric glands|Tuberculous disorders of intestines, peritoneum and mesenteric glands +C0451702|T047|PT|K93.1|ICD10|Megacolon in Chagas' disease|Megacolon in Chagas' disease +C0348766|T047|PT|K93.8|ICD10|Disorders of other specified digestive organs in diseases classified elsewhere|Disorders of other specified digestive organs in diseases classified elsewhere +C2888023|T047|AB|K94|ICD10CM|Complications of artificial openings of the digestive system|Complications of artificial openings of the digestive system +C2888023|T047|HT|K94|ICD10CM|Complications of artificial openings of the digestive system|Complications of artificial openings of the digestive system +C1392862|T046|AB|K94.0|ICD10CM|Colostomy complications|Colostomy complications +C1392862|T046|HT|K94.0|ICD10CM|Colostomy complications|Colostomy complications +C2888024|T046|AB|K94.00|ICD10CM|Colostomy complication, unspecified|Colostomy complication, unspecified +C2888024|T046|PT|K94.00|ICD10CM|Colostomy complication, unspecified|Colostomy complication, unspecified +C2888025|T046|PT|K94.01|ICD10CM|Colostomy hemorrhage|Colostomy hemorrhage +C2888025|T046|AB|K94.01|ICD10CM|Colostomy hemorrhage|Colostomy hemorrhage +C0854424|T046|PT|K94.02|ICD10CM|Colostomy infection|Colostomy infection +C0854424|T046|AB|K94.02|ICD10CM|Colostomy infection|Colostomy infection +C0267528|T046|PT|K94.03|ICD10CM|Colostomy malfunction|Colostomy malfunction +C0267528|T046|AB|K94.03|ICD10CM|Colostomy malfunction|Colostomy malfunction +C2106483|T046|ET|K94.03|ICD10CM|Mechanical complication of colostomy|Mechanical complication of colostomy +C2888026|T046|AB|K94.09|ICD10CM|Other complications of colostomy|Other complications of colostomy +C2888026|T046|PT|K94.09|ICD10CM|Other complications of colostomy|Other complications of colostomy +C1392956|T046|AB|K94.1|ICD10CM|Enterostomy complications|Enterostomy complications +C1392956|T046|HT|K94.1|ICD10CM|Enterostomy complications|Enterostomy complications +C2888027|T046|AB|K94.10|ICD10CM|Enterostomy complication, unspecified|Enterostomy complication, unspecified +C2888027|T046|PT|K94.10|ICD10CM|Enterostomy complication, unspecified|Enterostomy complication, unspecified +C2888028|T046|PT|K94.11|ICD10CM|Enterostomy hemorrhage|Enterostomy hemorrhage +C2888028|T046|AB|K94.11|ICD10CM|Enterostomy hemorrhage|Enterostomy hemorrhage +C1443975|T047|PT|K94.12|ICD10CM|Enterostomy infection|Enterostomy infection +C1443975|T047|AB|K94.12|ICD10CM|Enterostomy infection|Enterostomy infection +C0267527|T047|PT|K94.13|ICD10CM|Enterostomy malfunction|Enterostomy malfunction +C0267527|T047|AB|K94.13|ICD10CM|Enterostomy malfunction|Enterostomy malfunction +C2118344|T046|ET|K94.13|ICD10CM|Mechanical complication of enterostomy|Mechanical complication of enterostomy +C2888029|T046|AB|K94.19|ICD10CM|Other complications of enterostomy|Other complications of enterostomy +C2888029|T046|PT|K94.19|ICD10CM|Other complications of enterostomy|Other complications of enterostomy +C0587245|T046|AB|K94.2|ICD10CM|Gastrostomy complications|Gastrostomy complications +C0587245|T046|HT|K94.2|ICD10CM|Gastrostomy complications|Gastrostomy complications +C0587245|T046|AB|K94.20|ICD10CM|Gastrostomy complication, unspecified|Gastrostomy complication, unspecified +C0587245|T046|PT|K94.20|ICD10CM|Gastrostomy complication, unspecified|Gastrostomy complication, unspecified +C2888030|T046|PT|K94.21|ICD10CM|Gastrostomy hemorrhage|Gastrostomy hemorrhage +C2888030|T046|AB|K94.21|ICD10CM|Gastrostomy hemorrhage|Gastrostomy hemorrhage +C0695239|T047|AB|K94.22|ICD10CM|Gastrostomy infection|Gastrostomy infection +C0695239|T047|PT|K94.22|ICD10CM|Gastrostomy infection|Gastrostomy infection +C1397893|T047|AB|K94.23|ICD10CM|Gastrostomy malfunction|Gastrostomy malfunction +C1397893|T047|PT|K94.23|ICD10CM|Gastrostomy malfunction|Gastrostomy malfunction +C0695240|T046|ET|K94.23|ICD10CM|Mechanical complication of gastrostomy|Mechanical complication of gastrostomy +C0695241|T046|AB|K94.29|ICD10CM|Other complications of gastrostomy|Other complications of gastrostomy +C0695241|T046|PT|K94.29|ICD10CM|Other complications of gastrostomy|Other complications of gastrostomy +C2888031|T046|AB|K94.3|ICD10CM|Esophagostomy complications|Esophagostomy complications +C2888031|T046|HT|K94.3|ICD10CM|Esophagostomy complications|Esophagostomy complications +C2888031|T046|AB|K94.30|ICD10CM|Esophagostomy complications, unspecified|Esophagostomy complications, unspecified +C2888031|T046|PT|K94.30|ICD10CM|Esophagostomy complications, unspecified|Esophagostomy complications, unspecified +C2888032|T046|PT|K94.31|ICD10CM|Esophagostomy hemorrhage|Esophagostomy hemorrhage +C2888032|T046|AB|K94.31|ICD10CM|Esophagostomy hemorrhage|Esophagostomy hemorrhage +C1456233|T046|PT|K94.32|ICD10CM|Esophagostomy infection|Esophagostomy infection +C1456233|T046|AB|K94.32|ICD10CM|Esophagostomy infection|Esophagostomy infection +C1456235|T046|PT|K94.33|ICD10CM|Esophagostomy malfunction|Esophagostomy malfunction +C1456235|T046|AB|K94.33|ICD10CM|Esophagostomy malfunction|Esophagostomy malfunction +C1456234|T046|ET|K94.33|ICD10CM|Mechanical complication of esophagostomy|Mechanical complication of esophagostomy +C2888033|T047|AB|K94.39|ICD10CM|Other complications of esophagostomy|Other complications of esophagostomy +C2888033|T047|PT|K94.39|ICD10CM|Other complications of esophagostomy|Other complications of esophagostomy +C3161254|T046|AB|K95|ICD10CM|Complications of bariatric procedures|Complications of bariatric procedures +C3161254|T046|HT|K95|ICD10CM|Complications of bariatric procedures|Complications of bariatric procedures +C3161255|T046|AB|K95.0|ICD10CM|Complications of gastric band procedure|Complications of gastric band procedure +C3161255|T046|HT|K95.0|ICD10CM|Complications of gastric band procedure|Complications of gastric band procedure +C3161113|T046|PT|K95.01|ICD10CM|Infection due to gastric band procedure|Infection due to gastric band procedure +C3161113|T046|AB|K95.01|ICD10CM|Infection due to gastric band procedure|Infection due to gastric band procedure +C3161114|T046|AB|K95.09|ICD10CM|Other complications of gastric band procedure|Other complications of gastric band procedure +C3161114|T046|PT|K95.09|ICD10CM|Other complications of gastric band procedure|Other complications of gastric band procedure +C3161256|T046|AB|K95.8|ICD10CM|Complications of other bariatric procedure|Complications of other bariatric procedure +C3161256|T046|HT|K95.8|ICD10CM|Complications of other bariatric procedure|Complications of other bariatric procedure +C3161115|T046|AB|K95.81|ICD10CM|Infection due to other bariatric procedure|Infection due to other bariatric procedure +C3161115|T046|PT|K95.81|ICD10CM|Infection due to other bariatric procedure|Infection due to other bariatric procedure +C3161116|T046|AB|K95.89|ICD10CM|Other complications of other bariatric procedure|Other complications of other bariatric procedure +C3161116|T046|PT|K95.89|ICD10CM|Other complications of other bariatric procedure|Other complications of other bariatric procedure +C0038165|T047|ET|L00|ICD10CM|Ritter's disease|Ritter's disease +C0038165|T047|PT|L00|ICD10CM|Staphylococcal scalded skin syndrome|Staphylococcal scalded skin syndrome +C0038165|T047|AB|L00|ICD10CM|Staphylococcal scalded skin syndrome|Staphylococcal scalded skin syndrome +C0038165|T047|PT|L00|ICD10|Staphylococcal scalded skin syndrome|Staphylococcal scalded skin syndrome +C0037278|T047|HT|L00-L08|ICD10CM|Infections of the skin and subcutaneous tissue (L00-L08)|Infections of the skin and subcutaneous tissue (L00-L08) +C0037278|T047|HT|L00-L08.9|ICD10|Infections of the skin and subcutaneous tissue|Infections of the skin and subcutaneous tissue +C0178298|T047|HT|L00-L99|ICD10CM|Diseases of the skin and subcutaneous tissue (L00-L99)|Diseases of the skin and subcutaneous tissue (L00-L99) +C0178298|T047|HT|L00-L99.9|ICD10|Diseases of the skin and subcutaneous tissue|Diseases of the skin and subcutaneous tissue +C0021099|T047|HT|L01|ICD10|Impetigo|Impetigo +C0021099|T047|HT|L01|ICD10CM|Impetigo|Impetigo +C0021099|T047|AB|L01|ICD10CM|Impetigo|Impetigo +C0021099|T047|HT|L01.0|ICD10CM|Impetigo|Impetigo +C0021099|T047|AB|L01.0|ICD10CM|Impetigo|Impetigo +C0021099|T047|PT|L01.0|ICD10|Impetigo [any organism] [any site]|Impetigo [any organism] [any site] +C0376186|T047|ET|L01.0|ICD10CM|Impetigo contagiosa|Impetigo contagiosa +C0302865|T047|ET|L01.0|ICD10CM|Impetigo vulgaris|Impetigo vulgaris +C0021099|T047|ET|L01.00|ICD10CM|Impetigo NOS|Impetigo NOS +C0021099|T047|AB|L01.00|ICD10CM|Impetigo, unspecified|Impetigo, unspecified +C0021099|T047|PT|L01.00|ICD10CM|Impetigo, unspecified|Impetigo, unspecified +C0406096|T047|PT|L01.01|ICD10CM|Non-bullous impetigo|Non-bullous impetigo +C0406096|T047|AB|L01.01|ICD10CM|Non-bullous impetigo|Non-bullous impetigo +C0275668|T047|PT|L01.02|ICD10CM|Bockhart's impetigo|Bockhart's impetigo +C0275668|T047|AB|L01.02|ICD10CM|Bockhart's impetigo|Bockhart's impetigo +C1509150|T047|ET|L01.02|ICD10CM|Impetigo follicularis|Impetigo follicularis +C0263006|T047|ET|L01.02|ICD10CM|Perifolliculitis NOS|Perifolliculitis NOS +C0275668|T047|ET|L01.02|ICD10CM|Superficial pustular perifolliculitis|Superficial pustular perifolliculitis +C0021100|T047|PT|L01.03|ICD10CM|Bullous impetigo|Bullous impetigo +C0021100|T047|AB|L01.03|ICD10CM|Bullous impetigo|Bullous impetigo +C0678184|T047|ET|L01.03|ICD10CM|Impetigo neonatorum|Impetigo neonatorum +C0678185|T047|ET|L01.03|ICD10CM|Pemphigus neonatorum|Pemphigus neonatorum +C2888034|T047|AB|L01.09|ICD10CM|Other impetigo|Other impetigo +C2888034|T047|PT|L01.09|ICD10CM|Other impetigo|Other impetigo +C3887635|T047|ET|L01.09|ICD10CM|Ulcerative impetigo|Ulcerative impetigo +C0348767|T047|PT|L01.1|ICD10|Impetiginization of other dermatoses|Impetiginization of other dermatoses +C0348767|T047|PT|L01.1|ICD10CM|Impetiginization of other dermatoses|Impetiginization of other dermatoses +C0348767|T047|AB|L01.1|ICD10CM|Impetiginization of other dermatoses|Impetiginization of other dermatoses +C0494813|T020|AB|L02|ICD10CM|Cutaneous abscess, furuncle and carbuncle|Cutaneous abscess, furuncle and carbuncle +C0494813|T020|HT|L02|ICD10CM|Cutaneous abscess, furuncle and carbuncle|Cutaneous abscess, furuncle and carbuncle +C0494813|T020|HT|L02|ICD10|Cutaneous abscess, furuncle and carbuncle|Cutaneous abscess, furuncle and carbuncle +C0494814|T020|PT|L02.0|ICD10|Cutaneous abscess, furuncle and carbuncle of face|Cutaneous abscess, furuncle and carbuncle of face +C0494814|T020|HT|L02.0|ICD10CM|Cutaneous abscess, furuncle and carbuncle of face|Cutaneous abscess, furuncle and carbuncle of face +C0494814|T020|AB|L02.0|ICD10CM|Cutaneous abscess, furuncle and carbuncle of face|Cutaneous abscess, furuncle and carbuncle of face +C2888035|T046|AB|L02.01|ICD10CM|Cutaneous abscess of face|Cutaneous abscess of face +C2888035|T046|PT|L02.01|ICD10CM|Cutaneous abscess of face|Cutaneous abscess of face +C0263056|T047|ET|L02.02|ICD10CM|Boil of face|Boil of face +C2888036|T047|ET|L02.02|ICD10CM|Folliculitis of face|Folliculitis of face +C0263056|T047|PT|L02.02|ICD10CM|Furuncle of face|Furuncle of face +C0263056|T047|AB|L02.02|ICD10CM|Furuncle of face|Furuncle of face +C0263018|T047|PT|L02.03|ICD10CM|Carbuncle of face|Carbuncle of face +C0263018|T047|AB|L02.03|ICD10CM|Carbuncle of face|Carbuncle of face +C0494815|T020|HT|L02.1|ICD10CM|Cutaneous abscess, furuncle and carbuncle of neck|Cutaneous abscess, furuncle and carbuncle of neck +C0494815|T020|AB|L02.1|ICD10CM|Cutaneous abscess, furuncle and carbuncle of neck|Cutaneous abscess, furuncle and carbuncle of neck +C0494815|T020|PT|L02.1|ICD10|Cutaneous abscess, furuncle and carbuncle of neck|Cutaneous abscess, furuncle and carbuncle of neck +C2888037|T046|AB|L02.11|ICD10CM|Cutaneous abscess of neck|Cutaneous abscess of neck +C2888037|T046|PT|L02.11|ICD10CM|Cutaneous abscess of neck|Cutaneous abscess of neck +C0263060|T047|ET|L02.12|ICD10CM|Boil of neck|Boil of neck +C2888038|T047|ET|L02.12|ICD10CM|Folliculitis of neck|Folliculitis of neck +C0263060|T047|PT|L02.12|ICD10CM|Furuncle of neck|Furuncle of neck +C0263060|T047|AB|L02.12|ICD10CM|Furuncle of neck|Furuncle of neck +C0263023|T047|PT|L02.13|ICD10CM|Carbuncle of neck|Carbuncle of neck +C0263023|T047|AB|L02.13|ICD10CM|Carbuncle of neck|Carbuncle of neck +C0494816|T020|PT|L02.2|ICD10|Cutaneous abscess, furuncle and carbuncle of trunk|Cutaneous abscess, furuncle and carbuncle of trunk +C0494816|T020|HT|L02.2|ICD10CM|Cutaneous abscess, furuncle and carbuncle of trunk|Cutaneous abscess, furuncle and carbuncle of trunk +C0494816|T020|AB|L02.2|ICD10CM|Cutaneous abscess, furuncle and carbuncle of trunk|Cutaneous abscess, furuncle and carbuncle of trunk +C2888045|T046|AB|L02.21|ICD10CM|Cutaneous abscess of trunk|Cutaneous abscess of trunk +C2888045|T046|HT|L02.21|ICD10CM|Cutaneous abscess of trunk|Cutaneous abscess of trunk +C2888039|T046|AB|L02.211|ICD10CM|Cutaneous abscess of abdominal wall|Cutaneous abscess of abdominal wall +C2888039|T046|PT|L02.211|ICD10CM|Cutaneous abscess of abdominal wall|Cutaneous abscess of abdominal wall +C2888040|T046|AB|L02.212|ICD10CM|Cutaneous abscess of back [any part, except buttock]|Cutaneous abscess of back [any part, except buttock] +C2888040|T046|PT|L02.212|ICD10CM|Cutaneous abscess of back [any part, except buttock]|Cutaneous abscess of back [any part, except buttock] +C2888041|T046|AB|L02.213|ICD10CM|Cutaneous abscess of chest wall|Cutaneous abscess of chest wall +C2888041|T046|PT|L02.213|ICD10CM|Cutaneous abscess of chest wall|Cutaneous abscess of chest wall +C2888042|T046|AB|L02.214|ICD10CM|Cutaneous abscess of groin|Cutaneous abscess of groin +C2888042|T046|PT|L02.214|ICD10CM|Cutaneous abscess of groin|Cutaneous abscess of groin +C2888043|T046|AB|L02.215|ICD10CM|Cutaneous abscess of perineum|Cutaneous abscess of perineum +C2888043|T046|PT|L02.215|ICD10CM|Cutaneous abscess of perineum|Cutaneous abscess of perineum +C2888044|T046|AB|L02.216|ICD10CM|Cutaneous abscess of umbilicus|Cutaneous abscess of umbilicus +C2888044|T046|PT|L02.216|ICD10CM|Cutaneous abscess of umbilicus|Cutaneous abscess of umbilicus +C2888045|T046|AB|L02.219|ICD10CM|Cutaneous abscess of trunk, unspecified|Cutaneous abscess of trunk, unspecified +C2888045|T046|PT|L02.219|ICD10CM|Cutaneous abscess of trunk, unspecified|Cutaneous abscess of trunk, unspecified +C0263061|T047|ET|L02.22|ICD10CM|Boil of trunk|Boil of trunk +C0749705|T047|ET|L02.22|ICD10CM|Folliculitis of trunk|Folliculitis of trunk +C0263061|T047|HT|L02.22|ICD10CM|Furuncle of trunk|Furuncle of trunk +C0263061|T047|AB|L02.22|ICD10CM|Furuncle of trunk|Furuncle of trunk +C0263062|T047|PT|L02.221|ICD10CM|Furuncle of abdominal wall|Furuncle of abdominal wall +C0263062|T047|AB|L02.221|ICD10CM|Furuncle of abdominal wall|Furuncle of abdominal wall +C2888046|T047|AB|L02.222|ICD10CM|Furuncle of back [any part, except buttock]|Furuncle of back [any part, except buttock] +C2888046|T047|PT|L02.222|ICD10CM|Furuncle of back [any part, except buttock]|Furuncle of back [any part, except buttock] +C0263066|T047|PT|L02.223|ICD10CM|Furuncle of chest wall|Furuncle of chest wall +C0263066|T047|AB|L02.223|ICD10CM|Furuncle of chest wall|Furuncle of chest wall +C0263068|T047|PT|L02.224|ICD10CM|Furuncle of groin|Furuncle of groin +C0263068|T047|AB|L02.224|ICD10CM|Furuncle of groin|Furuncle of groin +C0263070|T047|PT|L02.225|ICD10CM|Furuncle of perineum|Furuncle of perineum +C0263070|T047|AB|L02.225|ICD10CM|Furuncle of perineum|Furuncle of perineum +C0263071|T047|PT|L02.226|ICD10CM|Furuncle of umbilicus|Furuncle of umbilicus +C0263071|T047|AB|L02.226|ICD10CM|Furuncle of umbilicus|Furuncle of umbilicus +C0263061|T047|AB|L02.229|ICD10CM|Furuncle of trunk, unspecified|Furuncle of trunk, unspecified +C0263061|T047|PT|L02.229|ICD10CM|Furuncle of trunk, unspecified|Furuncle of trunk, unspecified +C0263024|T047|HT|L02.23|ICD10CM|Carbuncle of trunk|Carbuncle of trunk +C0263024|T047|AB|L02.23|ICD10CM|Carbuncle of trunk|Carbuncle of trunk +C0263025|T047|PT|L02.231|ICD10CM|Carbuncle of abdominal wall|Carbuncle of abdominal wall +C0263025|T047|AB|L02.231|ICD10CM|Carbuncle of abdominal wall|Carbuncle of abdominal wall +C2888047|T047|AB|L02.232|ICD10CM|Carbuncle of back [any part, except buttock]|Carbuncle of back [any part, except buttock] +C2888047|T047|PT|L02.232|ICD10CM|Carbuncle of back [any part, except buttock]|Carbuncle of back [any part, except buttock] +C0263028|T047|PT|L02.233|ICD10CM|Carbuncle of chest wall|Carbuncle of chest wall +C0263028|T047|AB|L02.233|ICD10CM|Carbuncle of chest wall|Carbuncle of chest wall +C0263053|T047|PT|L02.234|ICD10CM|Carbuncle of groin|Carbuncle of groin +C0263053|T047|AB|L02.234|ICD10CM|Carbuncle of groin|Carbuncle of groin +C0263031|T047|PT|L02.235|ICD10CM|Carbuncle of perineum|Carbuncle of perineum +C0263031|T047|AB|L02.235|ICD10CM|Carbuncle of perineum|Carbuncle of perineum +C0263032|T047|PT|L02.236|ICD10CM|Carbuncle of umbilicus|Carbuncle of umbilicus +C0263032|T047|AB|L02.236|ICD10CM|Carbuncle of umbilicus|Carbuncle of umbilicus +C0263024|T047|AB|L02.239|ICD10CM|Carbuncle of trunk, unspecified|Carbuncle of trunk, unspecified +C0263024|T047|PT|L02.239|ICD10CM|Carbuncle of trunk, unspecified|Carbuncle of trunk, unspecified +C0494817|T020|HT|L02.3|ICD10CM|Cutaneous abscess, furuncle and carbuncle of buttock|Cutaneous abscess, furuncle and carbuncle of buttock +C0494817|T020|AB|L02.3|ICD10CM|Cutaneous abscess, furuncle and carbuncle of buttock|Cutaneous abscess, furuncle and carbuncle of buttock +C0494817|T020|PT|L02.3|ICD10|Cutaneous abscess, furuncle and carbuncle of buttock|Cutaneous abscess, furuncle and carbuncle of buttock +C2888049|T046|AB|L02.31|ICD10CM|Cutaneous abscess of buttock|Cutaneous abscess of buttock +C2888049|T046|PT|L02.31|ICD10CM|Cutaneous abscess of buttock|Cutaneous abscess of buttock +C2888048|T047|ET|L02.31|ICD10CM|Cutaneous abscess of gluteal region|Cutaneous abscess of gluteal region +C0263080|T047|ET|L02.32|ICD10CM|Boil of buttock|Boil of buttock +C2888050|T047|ET|L02.32|ICD10CM|Folliculitis of buttock|Folliculitis of buttock +C0263080|T047|PT|L02.32|ICD10CM|Furuncle of buttock|Furuncle of buttock +C0263080|T047|AB|L02.32|ICD10CM|Furuncle of buttock|Furuncle of buttock +C0263080|T047|ET|L02.32|ICD10CM|Furuncle of gluteal region|Furuncle of gluteal region +C0263041|T047|PT|L02.33|ICD10CM|Carbuncle of buttock|Carbuncle of buttock +C0263041|T047|AB|L02.33|ICD10CM|Carbuncle of buttock|Carbuncle of buttock +C0263041|T047|ET|L02.33|ICD10CM|Carbuncle of gluteal region|Carbuncle of gluteal region +C0494818|T020|PT|L02.4|ICD10|Cutaneous abscess, furuncle and carbuncle of limb|Cutaneous abscess, furuncle and carbuncle of limb +C0494818|T020|HT|L02.4|ICD10CM|Cutaneous abscess, furuncle and carbuncle of limb|Cutaneous abscess, furuncle and carbuncle of limb +C0494818|T020|AB|L02.4|ICD10CM|Cutaneous abscess, furuncle and carbuncle of limb|Cutaneous abscess, furuncle and carbuncle of limb +C2888057|T046|AB|L02.41|ICD10CM|Cutaneous abscess of limb|Cutaneous abscess of limb +C2888057|T046|HT|L02.41|ICD10CM|Cutaneous abscess of limb|Cutaneous abscess of limb +C2888051|T046|AB|L02.411|ICD10CM|Cutaneous abscess of right axilla|Cutaneous abscess of right axilla +C2888051|T046|PT|L02.411|ICD10CM|Cutaneous abscess of right axilla|Cutaneous abscess of right axilla +C2888052|T046|AB|L02.412|ICD10CM|Cutaneous abscess of left axilla|Cutaneous abscess of left axilla +C2888052|T046|PT|L02.412|ICD10CM|Cutaneous abscess of left axilla|Cutaneous abscess of left axilla +C2888053|T046|AB|L02.413|ICD10CM|Cutaneous abscess of right upper limb|Cutaneous abscess of right upper limb +C2888053|T046|PT|L02.413|ICD10CM|Cutaneous abscess of right upper limb|Cutaneous abscess of right upper limb +C2888054|T046|AB|L02.414|ICD10CM|Cutaneous abscess of left upper limb|Cutaneous abscess of left upper limb +C2888054|T046|PT|L02.414|ICD10CM|Cutaneous abscess of left upper limb|Cutaneous abscess of left upper limb +C2888055|T046|AB|L02.415|ICD10CM|Cutaneous abscess of right lower limb|Cutaneous abscess of right lower limb +C2888055|T046|PT|L02.415|ICD10CM|Cutaneous abscess of right lower limb|Cutaneous abscess of right lower limb +C2888056|T046|AB|L02.416|ICD10CM|Cutaneous abscess of left lower limb|Cutaneous abscess of left lower limb +C2888056|T046|PT|L02.416|ICD10CM|Cutaneous abscess of left lower limb|Cutaneous abscess of left lower limb +C2888057|T046|AB|L02.419|ICD10CM|Cutaneous abscess of limb, unspecified|Cutaneous abscess of limb, unspecified +C2888057|T046|PT|L02.419|ICD10CM|Cutaneous abscess of limb, unspecified|Cutaneous abscess of limb, unspecified +C2888058|T047|ET|L02.42|ICD10CM|Boil of limb|Boil of limb +C2888059|T047|ET|L02.42|ICD10CM|Folliculitis of limb|Folliculitis of limb +C2888064|T047|AB|L02.42|ICD10CM|Furuncle of limb|Furuncle of limb +C2888064|T047|HT|L02.42|ICD10CM|Furuncle of limb|Furuncle of limb +C2009250|T047|PT|L02.421|ICD10CM|Furuncle of right axilla|Furuncle of right axilla +C2009250|T047|AB|L02.421|ICD10CM|Furuncle of right axilla|Furuncle of right axilla +C2009248|T047|PT|L02.422|ICD10CM|Furuncle of left axilla|Furuncle of left axilla +C2009248|T047|AB|L02.422|ICD10CM|Furuncle of left axilla|Furuncle of left axilla +C2888060|T047|PT|L02.423|ICD10CM|Furuncle of right upper limb|Furuncle of right upper limb +C2888060|T047|AB|L02.423|ICD10CM|Furuncle of right upper limb|Furuncle of right upper limb +C2888061|T047|PT|L02.424|ICD10CM|Furuncle of left upper limb|Furuncle of left upper limb +C2888061|T047|AB|L02.424|ICD10CM|Furuncle of left upper limb|Furuncle of left upper limb +C2888062|T047|PT|L02.425|ICD10CM|Furuncle of right lower limb|Furuncle of right lower limb +C2888062|T047|AB|L02.425|ICD10CM|Furuncle of right lower limb|Furuncle of right lower limb +C2888063|T047|PT|L02.426|ICD10CM|Furuncle of left lower limb|Furuncle of left lower limb +C2888063|T047|AB|L02.426|ICD10CM|Furuncle of left lower limb|Furuncle of left lower limb +C2888064|T047|AB|L02.429|ICD10CM|Furuncle of limb, unspecified|Furuncle of limb, unspecified +C2888064|T047|PT|L02.429|ICD10CM|Furuncle of limb, unspecified|Furuncle of limb, unspecified +C2888070|T047|AB|L02.43|ICD10CM|Carbuncle of limb|Carbuncle of limb +C2888070|T047|HT|L02.43|ICD10CM|Carbuncle of limb|Carbuncle of limb +C2006367|T047|AB|L02.431|ICD10CM|Carbuncle of right axilla|Carbuncle of right axilla +C2006367|T047|PT|L02.431|ICD10CM|Carbuncle of right axilla|Carbuncle of right axilla +C2006362|T047|AB|L02.432|ICD10CM|Carbuncle of left axilla|Carbuncle of left axilla +C2006362|T047|PT|L02.432|ICD10CM|Carbuncle of left axilla|Carbuncle of left axilla +C2888066|T047|AB|L02.433|ICD10CM|Carbuncle of right upper limb|Carbuncle of right upper limb +C2888066|T047|PT|L02.433|ICD10CM|Carbuncle of right upper limb|Carbuncle of right upper limb +C2888067|T047|AB|L02.434|ICD10CM|Carbuncle of left upper limb|Carbuncle of left upper limb +C2888067|T047|PT|L02.434|ICD10CM|Carbuncle of left upper limb|Carbuncle of left upper limb +C2888068|T047|AB|L02.435|ICD10CM|Carbuncle of right lower limb|Carbuncle of right lower limb +C2888068|T047|PT|L02.435|ICD10CM|Carbuncle of right lower limb|Carbuncle of right lower limb +C2888069|T047|AB|L02.436|ICD10CM|Carbuncle of left lower limb|Carbuncle of left lower limb +C2888069|T047|PT|L02.436|ICD10CM|Carbuncle of left lower limb|Carbuncle of left lower limb +C2888070|T047|AB|L02.439|ICD10CM|Carbuncle of limb, unspecified|Carbuncle of limb, unspecified +C2888070|T047|PT|L02.439|ICD10CM|Carbuncle of limb, unspecified|Carbuncle of limb, unspecified +C2888071|T046|AB|L02.5|ICD10CM|Cutaneous abscess, furuncle and carbuncle of hand|Cutaneous abscess, furuncle and carbuncle of hand +C2888071|T046|HT|L02.5|ICD10CM|Cutaneous abscess, furuncle and carbuncle of hand|Cutaneous abscess, furuncle and carbuncle of hand +C2888074|T046|AB|L02.51|ICD10CM|Cutaneous abscess of hand|Cutaneous abscess of hand +C2888074|T046|HT|L02.51|ICD10CM|Cutaneous abscess of hand|Cutaneous abscess of hand +C2888072|T046|AB|L02.511|ICD10CM|Cutaneous abscess of right hand|Cutaneous abscess of right hand +C2888072|T046|PT|L02.511|ICD10CM|Cutaneous abscess of right hand|Cutaneous abscess of right hand +C2888073|T046|AB|L02.512|ICD10CM|Cutaneous abscess of left hand|Cutaneous abscess of left hand +C2888073|T046|PT|L02.512|ICD10CM|Cutaneous abscess of left hand|Cutaneous abscess of left hand +C2888074|T046|AB|L02.519|ICD10CM|Cutaneous abscess of unspecified hand|Cutaneous abscess of unspecified hand +C2888074|T046|PT|L02.519|ICD10CM|Cutaneous abscess of unspecified hand|Cutaneous abscess of unspecified hand +C0263076|T047|ET|L02.52|ICD10CM|Boil of hand|Boil of hand +C2888075|T047|ET|L02.52|ICD10CM|Folliculitis of hand|Folliculitis of hand +C0263076|T047|AB|L02.52|ICD10CM|Furuncle hand|Furuncle hand +C0263076|T047|HT|L02.52|ICD10CM|Furuncle hand|Furuncle hand +C2009726|T047|AB|L02.521|ICD10CM|Furuncle right hand|Furuncle right hand +C2009726|T047|PT|L02.521|ICD10CM|Furuncle right hand|Furuncle right hand +C2009521|T047|AB|L02.522|ICD10CM|Furuncle left hand|Furuncle left hand +C2009521|T047|PT|L02.522|ICD10CM|Furuncle left hand|Furuncle left hand +C0263076|T047|AB|L02.529|ICD10CM|Furuncle unspecified hand|Furuncle unspecified hand +C0263076|T047|PT|L02.529|ICD10CM|Furuncle unspecified hand|Furuncle unspecified hand +C0263037|T047|HT|L02.53|ICD10CM|Carbuncle of hand|Carbuncle of hand +C0263037|T047|AB|L02.53|ICD10CM|Carbuncle of hand|Carbuncle of hand +C2006830|T047|AB|L02.531|ICD10CM|Carbuncle of right hand|Carbuncle of right hand +C2006830|T047|PT|L02.531|ICD10CM|Carbuncle of right hand|Carbuncle of right hand +C2006627|T047|AB|L02.532|ICD10CM|Carbuncle of left hand|Carbuncle of left hand +C2006627|T047|PT|L02.532|ICD10CM|Carbuncle of left hand|Carbuncle of left hand +C0263037|T047|AB|L02.539|ICD10CM|Carbuncle of unspecified hand|Carbuncle of unspecified hand +C0263037|T047|PT|L02.539|ICD10CM|Carbuncle of unspecified hand|Carbuncle of unspecified hand +C2888076|T046|AB|L02.6|ICD10CM|Cutaneous abscess, furuncle and carbuncle of foot|Cutaneous abscess, furuncle and carbuncle of foot +C2888076|T046|HT|L02.6|ICD10CM|Cutaneous abscess, furuncle and carbuncle of foot|Cutaneous abscess, furuncle and carbuncle of foot +C2888079|T046|AB|L02.61|ICD10CM|Cutaneous abscess of foot|Cutaneous abscess of foot +C2888079|T046|HT|L02.61|ICD10CM|Cutaneous abscess of foot|Cutaneous abscess of foot +C2888077|T046|AB|L02.611|ICD10CM|Cutaneous abscess of right foot|Cutaneous abscess of right foot +C2888077|T046|PT|L02.611|ICD10CM|Cutaneous abscess of right foot|Cutaneous abscess of right foot +C2888078|T046|AB|L02.612|ICD10CM|Cutaneous abscess of left foot|Cutaneous abscess of left foot +C2888078|T046|PT|L02.612|ICD10CM|Cutaneous abscess of left foot|Cutaneous abscess of left foot +C2888079|T046|AB|L02.619|ICD10CM|Cutaneous abscess of unspecified foot|Cutaneous abscess of unspecified foot +C2888079|T046|PT|L02.619|ICD10CM|Cutaneous abscess of unspecified foot|Cutaneous abscess of unspecified foot +C0263087|T047|ET|L02.62|ICD10CM|Boil of foot|Boil of foot +C2888080|T047|ET|L02.62|ICD10CM|Folliculitis of foot|Folliculitis of foot +C0263087|T047|HT|L02.62|ICD10CM|Furuncle of foot|Furuncle of foot +C0263087|T047|AB|L02.62|ICD10CM|Furuncle of foot|Furuncle of foot +C2009272|T047|AB|L02.621|ICD10CM|Furuncle of right foot|Furuncle of right foot +C2009272|T047|PT|L02.621|ICD10CM|Furuncle of right foot|Furuncle of right foot +C2009262|T047|AB|L02.622|ICD10CM|Furuncle of left foot|Furuncle of left foot +C2009262|T047|PT|L02.622|ICD10CM|Furuncle of left foot|Furuncle of left foot +C0263087|T047|AB|L02.629|ICD10CM|Furuncle of unspecified foot|Furuncle of unspecified foot +C0263087|T047|PT|L02.629|ICD10CM|Furuncle of unspecified foot|Furuncle of unspecified foot +C0263048|T047|HT|L02.63|ICD10CM|Carbuncle of foot|Carbuncle of foot +C0263048|T047|AB|L02.63|ICD10CM|Carbuncle of foot|Carbuncle of foot +C2006390|T047|AB|L02.631|ICD10CM|Carbuncle of right foot|Carbuncle of right foot +C2006390|T047|PT|L02.631|ICD10CM|Carbuncle of right foot|Carbuncle of right foot +C2006381|T047|AB|L02.632|ICD10CM|Carbuncle of left foot|Carbuncle of left foot +C2006381|T047|PT|L02.632|ICD10CM|Carbuncle of left foot|Carbuncle of left foot +C0263048|T047|AB|L02.639|ICD10CM|Carbuncle of unspecified foot|Carbuncle of unspecified foot +C0263048|T047|PT|L02.639|ICD10CM|Carbuncle of unspecified foot|Carbuncle of unspecified foot +C0494819|T020|HT|L02.8|ICD10CM|Cutaneous abscess, furuncle and carbuncle of other sites|Cutaneous abscess, furuncle and carbuncle of other sites +C0494819|T020|AB|L02.8|ICD10CM|Cutaneous abscess, furuncle and carbuncle of other sites|Cutaneous abscess, furuncle and carbuncle of other sites +C0494819|T020|PT|L02.8|ICD10|Cutaneous abscess, furuncle and carbuncle of other sites|Cutaneous abscess, furuncle and carbuncle of other sites +C2888081|T046|HT|L02.81|ICD10CM|Cutaneous abscess of other sites|Cutaneous abscess of other sites +C2888081|T046|AB|L02.81|ICD10CM|Cutaneous abscess of other sites|Cutaneous abscess of other sites +C2888082|T046|AB|L02.811|ICD10CM|Cutaneous abscess of head [any part, except face]|Cutaneous abscess of head [any part, except face] +C2888082|T046|PT|L02.811|ICD10CM|Cutaneous abscess of head [any part, except face]|Cutaneous abscess of head [any part, except face] +C2888081|T046|AB|L02.818|ICD10CM|Cutaneous abscess of other sites|Cutaneous abscess of other sites +C2888081|T046|PT|L02.818|ICD10CM|Cutaneous abscess of other sites|Cutaneous abscess of other sites +C2888085|T047|ET|L02.82|ICD10CM|Boil of other sites|Boil of other sites +C2888084|T047|ET|L02.82|ICD10CM|Folliculitis of other sites|Folliculitis of other sites +C2888085|T047|HT|L02.82|ICD10CM|Furuncle of other sites|Furuncle of other sites +C2888085|T047|AB|L02.82|ICD10CM|Furuncle of other sites|Furuncle of other sites +C2888086|T047|AB|L02.821|ICD10CM|Furuncle of head [any part, except face]|Furuncle of head [any part, except face] +C2888086|T047|PT|L02.821|ICD10CM|Furuncle of head [any part, except face]|Furuncle of head [any part, except face] +C2888085|T047|AB|L02.828|ICD10CM|Furuncle of other sites|Furuncle of other sites +C2888085|T047|PT|L02.828|ICD10CM|Furuncle of other sites|Furuncle of other sites +C2888087|T047|HT|L02.83|ICD10CM|Carbuncle of other sites|Carbuncle of other sites +C2888087|T047|AB|L02.83|ICD10CM|Carbuncle of other sites|Carbuncle of other sites +C2888088|T047|AB|L02.831|ICD10CM|Carbuncle of head [any part, except face]|Carbuncle of head [any part, except face] +C2888088|T047|PT|L02.831|ICD10CM|Carbuncle of head [any part, except face]|Carbuncle of head [any part, except face] +C2888087|T047|AB|L02.838|ICD10CM|Carbuncle of other sites|Carbuncle of other sites +C2888087|T047|PT|L02.838|ICD10CM|Carbuncle of other sites|Carbuncle of other sites +C0494813|T020|PT|L02.9|ICD10|Cutaneous abscess, furuncle and carbuncle, unspecified|Cutaneous abscess, furuncle and carbuncle, unspecified +C0494813|T020|HT|L02.9|ICD10CM|Cutaneous abscess, furuncle and carbuncle, unspecified|Cutaneous abscess, furuncle and carbuncle, unspecified +C0494813|T020|AB|L02.9|ICD10CM|Cutaneous abscess, furuncle and carbuncle, unspecified|Cutaneous abscess, furuncle and carbuncle, unspecified +C2888089|T046|AB|L02.91|ICD10CM|Cutaneous abscess, unspecified|Cutaneous abscess, unspecified +C2888089|T046|PT|L02.91|ICD10CM|Cutaneous abscess, unspecified|Cutaneous abscess, unspecified +C0242301|T047|ET|L02.92|ICD10CM|Boil NOS|Boil NOS +C0242301|T047|AB|L02.92|ICD10CM|Furuncle, unspecified|Furuncle, unspecified +C0242301|T047|PT|L02.92|ICD10CM|Furuncle, unspecified|Furuncle, unspecified +C0016867|T047|ET|L02.92|ICD10CM|Furunculosis NOS|Furunculosis NOS +C2888090|T047|AB|L02.93|ICD10CM|Carbuncle, unspecified|Carbuncle, unspecified +C2888090|T047|PT|L02.93|ICD10CM|Carbuncle, unspecified|Carbuncle, unspecified +C0007642|T046|HT|L03|ICD10|Cellulitis|Cellulitis +C2888134|T047|AB|L03|ICD10CM|Cellulitis and acute lymphangitis|Cellulitis and acute lymphangitis +C2888134|T047|HT|L03|ICD10CM|Cellulitis and acute lymphangitis|Cellulitis and acute lymphangitis +C2888092|T047|AB|L03.0|ICD10CM|Cellulitis and acute lymphangitis of finger and toe|Cellulitis and acute lymphangitis of finger and toe +C2888092|T047|HT|L03.0|ICD10CM|Cellulitis and acute lymphangitis of finger and toe|Cellulitis and acute lymphangitis of finger and toe +C0494820|T046|PT|L03.0|ICD10|Cellulitis of finger and toe|Cellulitis of finger and toe +C0343026|T047|ET|L03.0|ICD10CM|Infection of nail|Infection of nail +C0701821|T047|ET|L03.0|ICD10CM|Onychia|Onychia +C0030578|T047|ET|L03.0|ICD10CM|Paronychia|Paronychia +C0030578|T047|ET|L03.0|ICD10CM|Perionychia|Perionychia +C0263132|T047|HT|L03.01|ICD10CM|Cellulitis of finger|Cellulitis of finger +C0263132|T047|AB|L03.01|ICD10CM|Cellulitis of finger|Cellulitis of finger +C0152448|T046|ET|L03.01|ICD10CM|Felon|Felon +C0152448|T046|ET|L03.01|ICD10CM|Whitlow|Whitlow +C2888093|T047|AB|L03.011|ICD10CM|Cellulitis of right finger|Cellulitis of right finger +C2888093|T047|PT|L03.011|ICD10CM|Cellulitis of right finger|Cellulitis of right finger +C2888094|T047|AB|L03.012|ICD10CM|Cellulitis of left finger|Cellulitis of left finger +C2888094|T047|PT|L03.012|ICD10CM|Cellulitis of left finger|Cellulitis of left finger +C2888095|T047|AB|L03.019|ICD10CM|Cellulitis of unspecified finger|Cellulitis of unspecified finger +C2888095|T047|PT|L03.019|ICD10CM|Cellulitis of unspecified finger|Cellulitis of unspecified finger +C2888097|T047|HT|L03.02|ICD10CM|Acute lymphangitis of finger|Acute lymphangitis of finger +C2888097|T047|AB|L03.02|ICD10CM|Acute lymphangitis of finger|Acute lymphangitis of finger +C2888096|T047|ET|L03.02|ICD10CM|Hangnail with lymphangitis of finger|Hangnail with lymphangitis of finger +C2888098|T047|AB|L03.021|ICD10CM|Acute lymphangitis of right finger|Acute lymphangitis of right finger +C2888098|T047|PT|L03.021|ICD10CM|Acute lymphangitis of right finger|Acute lymphangitis of right finger +C2888099|T047|AB|L03.022|ICD10CM|Acute lymphangitis of left finger|Acute lymphangitis of left finger +C2888099|T047|PT|L03.022|ICD10CM|Acute lymphangitis of left finger|Acute lymphangitis of left finger +C2888100|T047|AB|L03.029|ICD10CM|Acute lymphangitis of unspecified finger|Acute lymphangitis of unspecified finger +C2888100|T047|PT|L03.029|ICD10CM|Acute lymphangitis of unspecified finger|Acute lymphangitis of unspecified finger +C0263134|T047|HT|L03.03|ICD10CM|Cellulitis of toe|Cellulitis of toe +C0263134|T047|AB|L03.03|ICD10CM|Cellulitis of toe|Cellulitis of toe +C2888101|T047|AB|L03.031|ICD10CM|Cellulitis of right toe|Cellulitis of right toe +C2888101|T047|PT|L03.031|ICD10CM|Cellulitis of right toe|Cellulitis of right toe +C2888102|T047|AB|L03.032|ICD10CM|Cellulitis of left toe|Cellulitis of left toe +C2888102|T047|PT|L03.032|ICD10CM|Cellulitis of left toe|Cellulitis of left toe +C2888103|T047|AB|L03.039|ICD10CM|Cellulitis of unspecified toe|Cellulitis of unspecified toe +C2888103|T047|PT|L03.039|ICD10CM|Cellulitis of unspecified toe|Cellulitis of unspecified toe +C1290040|T047|HT|L03.04|ICD10CM|Acute lymphangitis of toe|Acute lymphangitis of toe +C1290040|T047|AB|L03.04|ICD10CM|Acute lymphangitis of toe|Acute lymphangitis of toe +C2888104|T037|ET|L03.04|ICD10CM|Hangnail with lymphangitis of toe|Hangnail with lymphangitis of toe +C2888105|T047|AB|L03.041|ICD10CM|Acute lymphangitis of right toe|Acute lymphangitis of right toe +C2888105|T047|PT|L03.041|ICD10CM|Acute lymphangitis of right toe|Acute lymphangitis of right toe +C2888106|T047|AB|L03.042|ICD10CM|Acute lymphangitis of left toe|Acute lymphangitis of left toe +C2888106|T047|PT|L03.042|ICD10CM|Acute lymphangitis of left toe|Acute lymphangitis of left toe +C2888107|T047|AB|L03.049|ICD10CM|Acute lymphangitis of unspecified toe|Acute lymphangitis of unspecified toe +C2888107|T047|PT|L03.049|ICD10CM|Acute lymphangitis of unspecified toe|Acute lymphangitis of unspecified toe +C2888108|T047|AB|L03.1|ICD10CM|Cellulitis and acute lymphangitis of other parts of limb|Cellulitis and acute lymphangitis of other parts of limb +C2888108|T047|HT|L03.1|ICD10CM|Cellulitis and acute lymphangitis of other parts of limb|Cellulitis and acute lymphangitis of other parts of limb +C0494821|T047|PT|L03.1|ICD10|Cellulitis of other parts of limb|Cellulitis of other parts of limb +C0494821|T047|HT|L03.11|ICD10CM|Cellulitis of other parts of limb|Cellulitis of other parts of limb +C0494821|T047|AB|L03.11|ICD10CM|Cellulitis of other parts of limb|Cellulitis of other parts of limb +C2025952|T047|PT|L03.111|ICD10CM|Cellulitis of right axilla|Cellulitis of right axilla +C2025952|T047|AB|L03.111|ICD10CM|Cellulitis of right axilla|Cellulitis of right axilla +C2025931|T047|PT|L03.112|ICD10CM|Cellulitis of left axilla|Cellulitis of left axilla +C2025931|T047|AB|L03.112|ICD10CM|Cellulitis of left axilla|Cellulitis of left axilla +C2888109|T047|PT|L03.113|ICD10CM|Cellulitis of right upper limb|Cellulitis of right upper limb +C2888109|T047|AB|L03.113|ICD10CM|Cellulitis of right upper limb|Cellulitis of right upper limb +C2888110|T047|PT|L03.114|ICD10CM|Cellulitis of left upper limb|Cellulitis of left upper limb +C2888110|T047|AB|L03.114|ICD10CM|Cellulitis of left upper limb|Cellulitis of left upper limb +C2888111|T047|PT|L03.115|ICD10CM|Cellulitis of right lower limb|Cellulitis of right lower limb +C2888111|T047|AB|L03.115|ICD10CM|Cellulitis of right lower limb|Cellulitis of right lower limb +C2888112|T047|PT|L03.116|ICD10CM|Cellulitis of left lower limb|Cellulitis of left lower limb +C2888112|T047|AB|L03.116|ICD10CM|Cellulitis of left lower limb|Cellulitis of left lower limb +C2888113|T047|AB|L03.119|ICD10CM|Cellulitis of unspecified part of limb|Cellulitis of unspecified part of limb +C2888113|T047|PT|L03.119|ICD10CM|Cellulitis of unspecified part of limb|Cellulitis of unspecified part of limb +C2888114|T047|AB|L03.12|ICD10CM|Acute lymphangitis of other parts of limb|Acute lymphangitis of other parts of limb +C2888114|T047|HT|L03.12|ICD10CM|Acute lymphangitis of other parts of limb|Acute lymphangitis of other parts of limb +C2888115|T047|PT|L03.121|ICD10CM|Acute lymphangitis of right axilla|Acute lymphangitis of right axilla +C2888115|T047|AB|L03.121|ICD10CM|Acute lymphangitis of right axilla|Acute lymphangitis of right axilla +C2888116|T047|PT|L03.122|ICD10CM|Acute lymphangitis of left axilla|Acute lymphangitis of left axilla +C2888116|T047|AB|L03.122|ICD10CM|Acute lymphangitis of left axilla|Acute lymphangitis of left axilla +C2888117|T047|PT|L03.123|ICD10CM|Acute lymphangitis of right upper limb|Acute lymphangitis of right upper limb +C2888117|T047|AB|L03.123|ICD10CM|Acute lymphangitis of right upper limb|Acute lymphangitis of right upper limb +C2888118|T047|PT|L03.124|ICD10CM|Acute lymphangitis of left upper limb|Acute lymphangitis of left upper limb +C2888118|T047|AB|L03.124|ICD10CM|Acute lymphangitis of left upper limb|Acute lymphangitis of left upper limb +C2888119|T047|AB|L03.125|ICD10CM|Acute lymphangitis of right lower limb|Acute lymphangitis of right lower limb +C2888119|T047|PT|L03.125|ICD10CM|Acute lymphangitis of right lower limb|Acute lymphangitis of right lower limb +C2888120|T047|AB|L03.126|ICD10CM|Acute lymphangitis of left lower limb|Acute lymphangitis of left lower limb +C2888120|T047|PT|L03.126|ICD10CM|Acute lymphangitis of left lower limb|Acute lymphangitis of left lower limb +C2888121|T047|AB|L03.129|ICD10CM|Acute lymphangitis of unspecified part of limb|Acute lymphangitis of unspecified part of limb +C2888121|T047|PT|L03.129|ICD10CM|Acute lymphangitis of unspecified part of limb|Acute lymphangitis of unspecified part of limb +C2888122|T047|AB|L03.2|ICD10CM|Cellulitis and acute lymphangitis of face and neck|Cellulitis and acute lymphangitis of face and neck +C2888122|T047|HT|L03.2|ICD10CM|Cellulitis and acute lymphangitis of face and neck|Cellulitis and acute lymphangitis of face and neck +C0263136|T047|PT|L03.2|ICD10|Cellulitis of face|Cellulitis of face +C2888123|T047|AB|L03.21|ICD10CM|Cellulitis and acute lymphangitis of face|Cellulitis and acute lymphangitis of face +C2888123|T047|HT|L03.21|ICD10CM|Cellulitis and acute lymphangitis of face|Cellulitis and acute lymphangitis of face +C0263136|T047|PT|L03.211|ICD10CM|Cellulitis of face|Cellulitis of face +C0263136|T047|AB|L03.211|ICD10CM|Cellulitis of face|Cellulitis of face +C0263175|T047|PT|L03.212|ICD10CM|Acute lymphangitis of face|Acute lymphangitis of face +C0263175|T047|AB|L03.212|ICD10CM|Acute lymphangitis of face|Acute lymphangitis of face +C0149754|T047|PT|L03.213|ICD10CM|Periorbital cellulitis|Periorbital cellulitis +C0149754|T047|AB|L03.213|ICD10CM|Periorbital cellulitis|Periorbital cellulitis +C1282208|T047|ET|L03.213|ICD10CM|Preseptal cellulitis|Preseptal cellulitis +C2888124|T047|AB|L03.22|ICD10CM|Cellulitis and acute lymphangitis of neck|Cellulitis and acute lymphangitis of neck +C2888124|T047|HT|L03.22|ICD10CM|Cellulitis and acute lymphangitis of neck|Cellulitis and acute lymphangitis of neck +C0263143|T047|PT|L03.221|ICD10CM|Cellulitis of neck|Cellulitis of neck +C0263143|T047|AB|L03.221|ICD10CM|Cellulitis of neck|Cellulitis of neck +C0263182|T047|PT|L03.222|ICD10CM|Acute lymphangitis of neck|Acute lymphangitis of neck +C0263182|T047|AB|L03.222|ICD10CM|Acute lymphangitis of neck|Acute lymphangitis of neck +C2888125|T047|AB|L03.3|ICD10CM|Cellulitis and acute lymphangitis of trunk|Cellulitis and acute lymphangitis of trunk +C2888125|T047|HT|L03.3|ICD10CM|Cellulitis and acute lymphangitis of trunk|Cellulitis and acute lymphangitis of trunk +C0263144|T047|PT|L03.3|ICD10|Cellulitis of trunk|Cellulitis of trunk +C0263144|T047|HT|L03.31|ICD10CM|Cellulitis of trunk|Cellulitis of trunk +C0263144|T047|AB|L03.31|ICD10CM|Cellulitis of trunk|Cellulitis of trunk +C0263145|T047|PT|L03.311|ICD10CM|Cellulitis of abdominal wall|Cellulitis of abdominal wall +C0263145|T047|AB|L03.311|ICD10CM|Cellulitis of abdominal wall|Cellulitis of abdominal wall +C2888126|T047|AB|L03.312|ICD10CM|Cellulitis of back [any part except buttock]|Cellulitis of back [any part except buttock] +C2888126|T047|PT|L03.312|ICD10CM|Cellulitis of back [any part except buttock]|Cellulitis of back [any part except buttock] +C0263147|T047|PT|L03.313|ICD10CM|Cellulitis of chest wall|Cellulitis of chest wall +C0263147|T047|AB|L03.313|ICD10CM|Cellulitis of chest wall|Cellulitis of chest wall +C0263149|T047|PT|L03.314|ICD10CM|Cellulitis of groin|Cellulitis of groin +C0263149|T047|AB|L03.314|ICD10CM|Cellulitis of groin|Cellulitis of groin +C0263151|T047|PT|L03.315|ICD10CM|Cellulitis of perineum|Cellulitis of perineum +C0263151|T047|AB|L03.315|ICD10CM|Cellulitis of perineum|Cellulitis of perineum +C0263152|T047|PT|L03.316|ICD10CM|Cellulitis of umbilicus|Cellulitis of umbilicus +C0263152|T047|AB|L03.316|ICD10CM|Cellulitis of umbilicus|Cellulitis of umbilicus +C0263158|T047|PT|L03.317|ICD10CM|Cellulitis of buttock|Cellulitis of buttock +C0263158|T047|AB|L03.317|ICD10CM|Cellulitis of buttock|Cellulitis of buttock +C0263144|T047|AB|L03.319|ICD10CM|Cellulitis of trunk, unspecified|Cellulitis of trunk, unspecified +C0263144|T047|PT|L03.319|ICD10CM|Cellulitis of trunk, unspecified|Cellulitis of trunk, unspecified +C0263183|T047|HT|L03.32|ICD10CM|Acute lymphangitis of trunk|Acute lymphangitis of trunk +C0263183|T047|AB|L03.32|ICD10CM|Acute lymphangitis of trunk|Acute lymphangitis of trunk +C0263184|T047|PT|L03.321|ICD10CM|Acute lymphangitis of abdominal wall|Acute lymphangitis of abdominal wall +C0263184|T047|AB|L03.321|ICD10CM|Acute lymphangitis of abdominal wall|Acute lymphangitis of abdominal wall +C2888128|T047|AB|L03.322|ICD10CM|Acute lymphangitis of back [any part except buttock]|Acute lymphangitis of back [any part except buttock] +C2888128|T047|PT|L03.322|ICD10CM|Acute lymphangitis of back [any part except buttock]|Acute lymphangitis of back [any part except buttock] +C0263186|T047|PT|L03.323|ICD10CM|Acute lymphangitis of chest wall|Acute lymphangitis of chest wall +C0263186|T047|AB|L03.323|ICD10CM|Acute lymphangitis of chest wall|Acute lymphangitis of chest wall +C0263188|T047|PT|L03.324|ICD10CM|Acute lymphangitis of groin|Acute lymphangitis of groin +C0263188|T047|AB|L03.324|ICD10CM|Acute lymphangitis of groin|Acute lymphangitis of groin +C0263190|T047|PT|L03.325|ICD10CM|Acute lymphangitis of perineum|Acute lymphangitis of perineum +C0263190|T047|AB|L03.325|ICD10CM|Acute lymphangitis of perineum|Acute lymphangitis of perineum +C0263191|T047|PT|L03.326|ICD10CM|Acute lymphangitis of umbilicus|Acute lymphangitis of umbilicus +C0263191|T047|AB|L03.326|ICD10CM|Acute lymphangitis of umbilicus|Acute lymphangitis of umbilicus +C0263198|T047|PT|L03.327|ICD10CM|Acute lymphangitis of buttock|Acute lymphangitis of buttock +C0263198|T047|AB|L03.327|ICD10CM|Acute lymphangitis of buttock|Acute lymphangitis of buttock +C0263183|T047|AB|L03.329|ICD10CM|Acute lymphangitis of trunk, unspecified|Acute lymphangitis of trunk, unspecified +C0263183|T047|PT|L03.329|ICD10CM|Acute lymphangitis of trunk, unspecified|Acute lymphangitis of trunk, unspecified +C2888130|T047|AB|L03.8|ICD10CM|Cellulitis and acute lymphangitis of other sites|Cellulitis and acute lymphangitis of other sites +C2888130|T047|HT|L03.8|ICD10CM|Cellulitis and acute lymphangitis of other sites|Cellulitis and acute lymphangitis of other sites +C0494822|T047|PT|L03.8|ICD10|Cellulitis of other sites|Cellulitis of other sites +C0494822|T047|HT|L03.81|ICD10CM|Cellulitis of other sites|Cellulitis of other sites +C0494822|T047|AB|L03.81|ICD10CM|Cellulitis of other sites|Cellulitis of other sites +C2888131|T047|AB|L03.811|ICD10CM|Cellulitis of head [any part, except face]|Cellulitis of head [any part, except face] +C2888131|T047|PT|L03.811|ICD10CM|Cellulitis of head [any part, except face]|Cellulitis of head [any part, except face] +C0263167|T047|ET|L03.811|ICD10CM|Cellulitis of scalp|Cellulitis of scalp +C0494822|T047|PT|L03.818|ICD10CM|Cellulitis of other sites|Cellulitis of other sites +C0494822|T047|AB|L03.818|ICD10CM|Cellulitis of other sites|Cellulitis of other sites +C2888132|T047|HT|L03.89|ICD10CM|Acute lymphangitis of other sites|Acute lymphangitis of other sites +C2888132|T047|AB|L03.89|ICD10CM|Acute lymphangitis of other sites|Acute lymphangitis of other sites +C2888133|T047|AB|L03.891|ICD10CM|Acute lymphangitis of head [any part, except face]|Acute lymphangitis of head [any part, except face] +C2888133|T047|PT|L03.891|ICD10CM|Acute lymphangitis of head [any part, except face]|Acute lymphangitis of head [any part, except face] +C2888132|T047|AB|L03.898|ICD10CM|Acute lymphangitis of other sites|Acute lymphangitis of other sites +C2888132|T047|PT|L03.898|ICD10CM|Acute lymphangitis of other sites|Acute lymphangitis of other sites +C2888134|T047|AB|L03.9|ICD10CM|Cellulitis and acute lymphangitis, unspecified|Cellulitis and acute lymphangitis, unspecified +C2888134|T047|HT|L03.9|ICD10CM|Cellulitis and acute lymphangitis, unspecified|Cellulitis and acute lymphangitis, unspecified +C0007642|T046|PT|L03.9|ICD10|Cellulitis, unspecified|Cellulitis, unspecified +C0007642|T046|PT|L03.90|ICD10CM|Cellulitis, unspecified|Cellulitis, unspecified +C0007642|T046|AB|L03.90|ICD10CM|Cellulitis, unspecified|Cellulitis, unspecified +C0263174|T047|AB|L03.91|ICD10CM|Acute lymphangitis, unspecified|Acute lymphangitis, unspecified +C0263174|T047|PT|L03.91|ICD10CM|Acute lymphangitis, unspecified|Acute lymphangitis, unspecified +C4290218|T047|ET|L04|ICD10CM|abscess (acute) of lymph nodes, except mesenteric|abscess (acute) of lymph nodes, except mesenteric +C0157705|T047|HT|L04|ICD10CM|Acute lymphadenitis|Acute lymphadenitis +C0157705|T047|AB|L04|ICD10CM|Acute lymphadenitis|Acute lymphadenitis +C0157705|T047|HT|L04|ICD10|Acute lymphadenitis|Acute lymphadenitis +C0272395|T047|ET|L04|ICD10CM|acute lymphadenitis, except mesenteric|acute lymphadenitis, except mesenteric +C0452156|T047|PT|L04.0|ICD10|Acute lymphadenitis of face, head and neck|Acute lymphadenitis of face, head and neck +C0452156|T047|PT|L04.0|ICD10CM|Acute lymphadenitis of face, head and neck|Acute lymphadenitis of face, head and neck +C0452156|T047|AB|L04.0|ICD10CM|Acute lymphadenitis of face, head and neck|Acute lymphadenitis of face, head and neck +C0451685|T047|PT|L04.1|ICD10CM|Acute lymphadenitis of trunk|Acute lymphadenitis of trunk +C0451685|T047|AB|L04.1|ICD10CM|Acute lymphadenitis of trunk|Acute lymphadenitis of trunk +C0451685|T047|PT|L04.1|ICD10|Acute lymphadenitis of trunk|Acute lymphadenitis of trunk +C2215090|T047|ET|L04.2|ICD10CM|Acute lymphadenitis of axilla|Acute lymphadenitis of axilla +C1386155|T047|ET|L04.2|ICD10CM|Acute lymphadenitis of shoulder|Acute lymphadenitis of shoulder +C0451686|T047|PT|L04.2|ICD10|Acute lymphadenitis of upper limb|Acute lymphadenitis of upper limb +C0451686|T047|PT|L04.2|ICD10CM|Acute lymphadenitis of upper limb|Acute lymphadenitis of upper limb +C0451686|T047|AB|L04.2|ICD10CM|Acute lymphadenitis of upper limb|Acute lymphadenitis of upper limb +C1403331|T047|ET|L04.3|ICD10CM|Acute lymphadenitis of hip|Acute lymphadenitis of hip +C0451687|T047|PT|L04.3|ICD10CM|Acute lymphadenitis of lower limb|Acute lymphadenitis of lower limb +C0451687|T047|AB|L04.3|ICD10CM|Acute lymphadenitis of lower limb|Acute lymphadenitis of lower limb +C0451687|T047|PT|L04.3|ICD10|Acute lymphadenitis of lower limb|Acute lymphadenitis of lower limb +C0477467|T047|PT|L04.8|ICD10|Acute lymphadenitis of other sites|Acute lymphadenitis of other sites +C0477467|T047|PT|L04.8|ICD10CM|Acute lymphadenitis of other sites|Acute lymphadenitis of other sites +C0477467|T047|AB|L04.8|ICD10CM|Acute lymphadenitis of other sites|Acute lymphadenitis of other sites +C0157705|T047|PT|L04.9|ICD10|Acute lymphadenitis, unspecified|Acute lymphadenitis, unspecified +C0157705|T047|PT|L04.9|ICD10CM|Acute lymphadenitis, unspecified|Acute lymphadenitis, unspecified +C0157705|T047|AB|L04.9|ICD10CM|Acute lymphadenitis, unspecified|Acute lymphadenitis, unspecified +C0031925|T047|HT|L05|ICD10|Pilonidal cyst|Pilonidal cyst +C0031925|T047|AB|L05|ICD10CM|Pilonidal cyst and sinus|Pilonidal cyst and sinus +C0031925|T047|HT|L05|ICD10CM|Pilonidal cyst and sinus|Pilonidal cyst and sinus +C2888136|T047|HT|L05.0|ICD10CM|Pilonidal cyst and sinus with abscess|Pilonidal cyst and sinus with abscess +C2888136|T047|AB|L05.0|ICD10CM|Pilonidal cyst and sinus with abscess|Pilonidal cyst and sinus with abscess +C3537055|T046|PT|L05.0|ICD10|Pilonidal cyst with abscess|Pilonidal cyst with abscess +C3537055|T046|ET|L05.01|ICD10CM|Pilonidal abscess|Pilonidal abscess +C3537055|T046|PT|L05.01|ICD10CM|Pilonidal cyst with abscess|Pilonidal cyst with abscess +C3537055|T046|AB|L05.01|ICD10CM|Pilonidal cyst with abscess|Pilonidal cyst with abscess +C2888138|T047|ET|L05.01|ICD10CM|Pilonidal dimple with abscess|Pilonidal dimple with abscess +C2888139|T047|ET|L05.01|ICD10CM|Postanal dimple with abscess|Postanal dimple with abscess +C2888140|T047|ET|L05.02|ICD10CM|Coccygeal fistula with abscess|Coccygeal fistula with abscess +C1409780|T047|ET|L05.02|ICD10CM|Coccygeal sinus with abscess|Coccygeal sinus with abscess +C1397442|T047|ET|L05.02|ICD10CM|Pilonidal fistula with abscess|Pilonidal fistula with abscess +C0342988|T047|PT|L05.02|ICD10CM|Pilonidal sinus with abscess|Pilonidal sinus with abscess +C0342988|T047|AB|L05.02|ICD10CM|Pilonidal sinus with abscess|Pilonidal sinus with abscess +C2888141|T047|HT|L05.9|ICD10CM|Pilonidal cyst and sinus without abscess|Pilonidal cyst and sinus without abscess +C2888141|T047|AB|L05.9|ICD10CM|Pilonidal cyst and sinus without abscess|Pilonidal cyst and sinus without abscess +C0520556|T190|PT|L05.9|ICD10|Pilonidal cyst without abscess|Pilonidal cyst without abscess +C0031925|T047|ET|L05.91|ICD10CM|Pilonidal cyst NOS|Pilonidal cyst NOS +C0520556|T190|PT|L05.91|ICD10CM|Pilonidal cyst without abscess|Pilonidal cyst without abscess +C0520556|T190|AB|L05.91|ICD10CM|Pilonidal cyst without abscess|Pilonidal cyst without abscess +C0426848|T033|ET|L05.91|ICD10CM|Pilonidal dimple|Pilonidal dimple +C2888142|T047|ET|L05.91|ICD10CM|Postanal dimple|Postanal dimple +C4551651|T047|ET|L05.92|ICD10CM|Coccygeal fistula|Coccygeal fistula +C2888143|T047|ET|L05.92|ICD10CM|Coccygeal sinus without abscess|Coccygeal sinus without abscess +C4551651|T047|ET|L05.92|ICD10CM|Pilonidal fistula|Pilonidal fistula +C0341387|T047|PT|L05.92|ICD10CM|Pilonidal sinus without abscess|Pilonidal sinus without abscess +C0341387|T047|AB|L05.92|ICD10CM|Pilonidal sinus without abscess|Pilonidal sinus without abscess +C0157707|T047|HT|L08|ICD10CM|Other local infections of skin and subcutaneous tissue|Other local infections of skin and subcutaneous tissue +C0157707|T047|AB|L08|ICD10CM|Other local infections of skin and subcutaneous tissue|Other local infections of skin and subcutaneous tissue +C0157707|T047|HT|L08|ICD10|Other local infections of skin and subcutaneous tissue|Other local infections of skin and subcutaneous tissue +C3264462|T047|ET|L08.0|ICD10CM|Dermatitis gangrenosa|Dermatitis gangrenosa +C0034212|T047|ET|L08.0|ICD10CM|Purulent dermatitis|Purulent dermatitis +C0034212|T047|PT|L08.0|ICD10CM|Pyoderma|Pyoderma +C0034212|T047|AB|L08.0|ICD10CM|Pyoderma|Pyoderma +C0034212|T047|PT|L08.0|ICD10|Pyoderma|Pyoderma +C0034212|T047|ET|L08.0|ICD10CM|Septic dermatitis|Septic dermatitis +C0034212|T047|ET|L08.0|ICD10CM|Suppurative dermatitis|Suppurative dermatitis +C0014752|T047|PT|L08.1|ICD10|Erythrasma|Erythrasma +C0014752|T047|PT|L08.1|ICD10CM|Erythrasma|Erythrasma +C0014752|T047|AB|L08.1|ICD10CM|Erythrasma|Erythrasma +C0029813|T046|AB|L08.8|ICD10CM|Oth local infections of the skin and subcutaneous tissue|Oth local infections of the skin and subcutaneous tissue +C0029813|T046|PT|L08.8|ICD10|Other specified local infections of skin and subcutaneous tissue|Other specified local infections of skin and subcutaneous tissue +C0029813|T046|HT|L08.8|ICD10CM|Other specified local infections of the skin and subcutaneous tissue|Other specified local infections of the skin and subcutaneous tissue +C0702100|T047|PT|L08.81|ICD10CM|Pyoderma vegetans|Pyoderma vegetans +C0702100|T047|AB|L08.81|ICD10CM|Pyoderma vegetans|Pyoderma vegetans +C1408519|T047|AB|L08.82|ICD10CM|Omphalitis not of newborn|Omphalitis not of newborn +C1408519|T047|PT|L08.82|ICD10CM|Omphalitis not of newborn|Omphalitis not of newborn +C0029813|T046|AB|L08.89|ICD10CM|Oth local infections of the skin and subcutaneous tissue|Oth local infections of the skin and subcutaneous tissue +C0029813|T046|PT|L08.89|ICD10CM|Other specified local infections of the skin and subcutaneous tissue|Other specified local infections of the skin and subcutaneous tissue +C0406047|T047|PT|L08.9|ICD10|Local infection of skin and subcutaneous tissue, unspecified|Local infection of skin and subcutaneous tissue, unspecified +C0406047|T047|AB|L08.9|ICD10CM|Local infection of the skin and subcutaneous tissue, unsp|Local infection of the skin and subcutaneous tissue, unsp +C0406047|T047|PT|L08.9|ICD10CM|Local infection of the skin and subcutaneous tissue, unspecified|Local infection of the skin and subcutaneous tissue, unspecified +C0030807|T047|HT|L10|ICD10|Pemphigus|Pemphigus +C0030807|T047|HT|L10|ICD10CM|Pemphigus|Pemphigus +C0030807|T047|AB|L10|ICD10CM|Pemphigus|Pemphigus +C0085932|T047|HT|L10-L14|ICD10CM|Bullous disorders (L10-L14)|Bullous disorders (L10-L14) +C0085932|T047|HT|L10-L14.9|ICD10|Bullous disorders|Bullous disorders +C0030809|T047|PT|L10.0|ICD10|Pemphigus vulgaris|Pemphigus vulgaris +C0030809|T047|PT|L10.0|ICD10CM|Pemphigus vulgaris|Pemphigus vulgaris +C0030809|T047|AB|L10.0|ICD10CM|Pemphigus vulgaris|Pemphigus vulgaris +C0263316|T047|PT|L10.1|ICD10|Pemphigus vegetans|Pemphigus vegetans +C0263316|T047|PT|L10.1|ICD10CM|Pemphigus vegetans|Pemphigus vegetans +C0263316|T047|AB|L10.1|ICD10CM|Pemphigus vegetans|Pemphigus vegetans +C0263313|T047|PT|L10.2|ICD10CM|Pemphigus foliaceous|Pemphigus foliaceous +C0263313|T047|AB|L10.2|ICD10CM|Pemphigus foliaceous|Pemphigus foliaceous +C0263313|T047|PT|L10.2|ICD10|Pemphigus foliaceus|Pemphigus foliaceus +C0263314|T047|PT|L10.3|ICD10|Brazilian pemphigus [fogo selvagem]|Brazilian pemphigus [fogo selvagem] +C0263314|T047|PT|L10.3|ICD10CM|Brazilian pemphigus [fogo selvagem]|Brazilian pemphigus [fogo selvagem] +C0263314|T047|AB|L10.3|ICD10CM|Brazilian pemphigus [fogo selvagem]|Brazilian pemphigus [fogo selvagem] +C0263312|T047|PT|L10.4|ICD10CM|Pemphigus erythematosus|Pemphigus erythematosus +C0263312|T047|AB|L10.4|ICD10CM|Pemphigus erythematosus|Pemphigus erythematosus +C0263312|T047|PT|L10.4|ICD10|Pemphigus erythematosus|Pemphigus erythematosus +C0263312|T047|ET|L10.4|ICD10CM|Senear-Usher syndrome|Senear-Usher syndrome +C0451938|T046|PT|L10.5|ICD10|Drug-induced pemphigus|Drug-induced pemphigus +C0451938|T046|PT|L10.5|ICD10CM|Drug-induced pemphigus|Drug-induced pemphigus +C0451938|T046|AB|L10.5|ICD10CM|Drug-induced pemphigus|Drug-induced pemphigus +C0477468|T047|HT|L10.8|ICD10CM|Other pemphigus|Other pemphigus +C0477468|T047|AB|L10.8|ICD10CM|Other pemphigus|Other pemphigus +C0477468|T047|PT|L10.8|ICD10|Other pemphigus|Other pemphigus +C1112570|T191|PT|L10.81|ICD10CM|Paraneoplastic pemphigus|Paraneoplastic pemphigus +C1112570|T191|AB|L10.81|ICD10CM|Paraneoplastic pemphigus|Paraneoplastic pemphigus +C0477468|T047|PT|L10.89|ICD10CM|Other pemphigus|Other pemphigus +C0477468|T047|AB|L10.89|ICD10CM|Other pemphigus|Other pemphigus +C0030807|T047|PT|L10.9|ICD10CM|Pemphigus, unspecified|Pemphigus, unspecified +C0030807|T047|AB|L10.9|ICD10CM|Pemphigus, unspecified|Pemphigus, unspecified +C0030807|T047|PT|L10.9|ICD10|Pemphigus, unspecified|Pemphigus, unspecified +C0494825|T047|AB|L11|ICD10CM|Other acantholytic disorders|Other acantholytic disorders +C0494825|T047|HT|L11|ICD10CM|Other acantholytic disorders|Other acantholytic disorders +C0494825|T047|HT|L11|ICD10|Other acantholytic disorders|Other acantholytic disorders +C0343063|T020|PT|L11.0|ICD10|Acquired keratosis follicularis|Acquired keratosis follicularis +C0343063|T020|PT|L11.0|ICD10CM|Acquired keratosis follicularis|Acquired keratosis follicularis +C0343063|T020|AB|L11.0|ICD10CM|Acquired keratosis follicularis|Acquired keratosis follicularis +C0263325|T047|PT|L11.1|ICD10CM|Transient acantholytic dermatosis [Grover]|Transient acantholytic dermatosis [Grover] +C0263325|T047|AB|L11.1|ICD10CM|Transient acantholytic dermatosis [Grover]|Transient acantholytic dermatosis [Grover] +C0263325|T047|PT|L11.1|ICD10|Transient acantholytic dermatosis [Grover]|Transient acantholytic dermatosis [Grover] +C0477469|T047|PT|L11.8|ICD10|Other specified acantholytic disorders|Other specified acantholytic disorders +C0477469|T047|PT|L11.8|ICD10CM|Other specified acantholytic disorders|Other specified acantholytic disorders +C0477469|T047|AB|L11.8|ICD10CM|Other specified acantholytic disorders|Other specified acantholytic disorders +C0477473|T047|PT|L11.9|ICD10CM|Acantholytic disorder, unspecified|Acantholytic disorder, unspecified +C0477473|T047|AB|L11.9|ICD10CM|Acantholytic disorder, unspecified|Acantholytic disorder, unspecified +C0477473|T047|PT|L11.9|ICD10|Acantholytic disorder, unspecified|Acantholytic disorder, unspecified +C0030805|T047|HT|L12|ICD10|Pemphigoid|Pemphigoid +C0030805|T047|HT|L12|ICD10CM|Pemphigoid|Pemphigoid +C0030805|T047|AB|L12|ICD10CM|Pemphigoid|Pemphigoid +C0030805|T047|PT|L12.0|ICD10CM|Bullous pemphigoid|Bullous pemphigoid +C0030805|T047|AB|L12.0|ICD10CM|Bullous pemphigoid|Bullous pemphigoid +C0030805|T047|PT|L12.0|ICD10|Bullous pemphigoid|Bullous pemphigoid +C0030804|T047|ET|L12.1|ICD10CM|Benign mucous membrane pemphigoid|Benign mucous membrane pemphigoid +C0030804|T047|PT|L12.1|ICD10CM|Cicatricial pemphigoid|Cicatricial pemphigoid +C0030804|T047|AB|L12.1|ICD10CM|Cicatricial pemphigoid|Cicatricial pemphigoid +C0030804|T047|PT|L12.1|ICD10|Cicatricial pemphigoid|Cicatricial pemphigoid +C0494827|T047|PT|L12.2|ICD10|Chronic bullous disease of childhood|Chronic bullous disease of childhood +C0494827|T047|PT|L12.2|ICD10CM|Chronic bullous disease of childhood|Chronic bullous disease of childhood +C0494827|T047|AB|L12.2|ICD10CM|Chronic bullous disease of childhood|Chronic bullous disease of childhood +C0152092|T047|ET|L12.2|ICD10CM|Juvenile dermatitis herpetiformis|Juvenile dermatitis herpetiformis +C0079293|T047|HT|L12.3|ICD10CM|Acquired epidermolysis bullosa|Acquired epidermolysis bullosa +C0079293|T047|AB|L12.3|ICD10CM|Acquired epidermolysis bullosa|Acquired epidermolysis bullosa +C0079293|T047|PT|L12.3|ICD10|Acquired epidermolysis bullosa|Acquired epidermolysis bullosa +C0079293|T047|AB|L12.30|ICD10CM|Acquired epidermolysis bullosa, unspecified|Acquired epidermolysis bullosa, unspecified +C0079293|T047|PT|L12.30|ICD10CM|Acquired epidermolysis bullosa, unspecified|Acquired epidermolysis bullosa, unspecified +C2888144|T047|PT|L12.31|ICD10CM|Epidermolysis bullosa due to drug|Epidermolysis bullosa due to drug +C2888144|T047|AB|L12.31|ICD10CM|Epidermolysis bullosa due to drug|Epidermolysis bullosa due to drug +C2888145|T047|AB|L12.35|ICD10CM|Other acquired epidermolysis bullosa|Other acquired epidermolysis bullosa +C2888145|T047|PT|L12.35|ICD10CM|Other acquired epidermolysis bullosa|Other acquired epidermolysis bullosa +C0477470|T047|PT|L12.8|ICD10CM|Other pemphigoid|Other pemphigoid +C0477470|T047|AB|L12.8|ICD10CM|Other pemphigoid|Other pemphigoid +C0477470|T047|PT|L12.8|ICD10|Other pemphigoid|Other pemphigoid +C0030805|T047|PT|L12.9|ICD10|Pemphigoid, unspecified|Pemphigoid, unspecified +C0030805|T047|PT|L12.9|ICD10CM|Pemphigoid, unspecified|Pemphigoid, unspecified +C0030805|T047|AB|L12.9|ICD10CM|Pemphigoid, unspecified|Pemphigoid, unspecified +C0494828|T047|HT|L13|ICD10|Other bullous disorders|Other bullous disorders +C0494828|T047|AB|L13|ICD10CM|Other bullous disorders|Other bullous disorders +C0494828|T047|HT|L13|ICD10CM|Other bullous disorders|Other bullous disorders +C0011608|T047|PT|L13.0|ICD10CM|Dermatitis herpetiformis|Dermatitis herpetiformis +C0011608|T047|AB|L13.0|ICD10CM|Dermatitis herpetiformis|Dermatitis herpetiformis +C0011608|T047|PT|L13.0|ICD10|Dermatitis herpetiformis|Dermatitis herpetiformis +C0011608|T047|ET|L13.0|ICD10CM|Duhring's disease|Duhring's disease +C0263310|T047|ET|L13.0|ICD10CM|Hydroa herpetiformis|Hydroa herpetiformis +C0600336|T047|ET|L13.1|ICD10CM|Sneddon-Wilkinson disease|Sneddon-Wilkinson disease +C0600336|T047|PT|L13.1|ICD10CM|Subcorneal pustular dermatitis|Subcorneal pustular dermatitis +C0600336|T047|AB|L13.1|ICD10CM|Subcorneal pustular dermatitis|Subcorneal pustular dermatitis +C0600336|T047|PT|L13.1|ICD10|Subcorneal pustular dermatitis|Subcorneal pustular dermatitis +C0477471|T047|PT|L13.8|ICD10|Other specified bullous disorders|Other specified bullous disorders +C0477471|T047|PT|L13.8|ICD10CM|Other specified bullous disorders|Other specified bullous disorders +C0477471|T047|AB|L13.8|ICD10CM|Other specified bullous disorders|Other specified bullous disorders +C0085932|T047|PT|L13.9|ICD10CM|Bullous disorder, unspecified|Bullous disorder, unspecified +C0085932|T047|AB|L13.9|ICD10CM|Bullous disorder, unspecified|Bullous disorder, unspecified +C0085932|T047|PT|L13.9|ICD10|Bullous disorder, unspecified|Bullous disorder, unspecified +C0477472|T047|PT|L14|ICD10CM|Bullous disorders in diseases classified elsewhere|Bullous disorders in diseases classified elsewhere +C0477472|T047|AB|L14|ICD10CM|Bullous disorders in diseases classified elsewhere|Bullous disorders in diseases classified elsewhere +C0477472|T047|PT|L14|ICD10|Bullous disorders in diseases classified elsewhere|Bullous disorders in diseases classified elsewhere +C0011615|T047|HT|L20|ICD10|Atopic dermatitis|Atopic dermatitis +C0011615|T047|HT|L20|ICD10CM|Atopic dermatitis|Atopic dermatitis +C0011615|T047|AB|L20|ICD10CM|Atopic dermatitis|Atopic dermatitis +C0477474|T047|HT|L20-L30|ICD10CM|Dermatitis and eczema (L20-L30)|Dermatitis and eczema (L20-L30) +C0477474|T047|HT|L20-L30.9|ICD10|Dermatitis and eczema|Dermatitis and eczema +C2242769|T047|PT|L20.0|ICD10|Besnier's prurigo|Besnier's prurigo +C2242769|T047|PT|L20.0|ICD10CM|Besnier's prurigo|Besnier's prurigo +C2242769|T047|AB|L20.0|ICD10CM|Besnier's prurigo|Besnier's prurigo +C0494831|T047|HT|L20.8|ICD10CM|Other atopic dermatitis|Other atopic dermatitis +C0494831|T047|AB|L20.8|ICD10CM|Other atopic dermatitis|Other atopic dermatitis +C0494831|T047|PT|L20.8|ICD10|Other atopic dermatitis|Other atopic dermatitis +C0011615|T047|PT|L20.81|ICD10CM|Atopic neurodermatitis|Atopic neurodermatitis +C0011615|T047|AB|L20.81|ICD10CM|Atopic neurodermatitis|Atopic neurodermatitis +C0406296|T047|ET|L20.81|ICD10CM|Diffuse neurodermatitis|Diffuse neurodermatitis +C0263224|T047|PT|L20.82|ICD10CM|Flexural eczema|Flexural eczema +C0263224|T047|AB|L20.82|ICD10CM|Flexural eczema|Flexural eczema +C2888146|T047|AB|L20.83|ICD10CM|Infantile (acute) (chronic) eczema|Infantile (acute) (chronic) eczema +C2888146|T047|PT|L20.83|ICD10CM|Infantile (acute) (chronic) eczema|Infantile (acute) (chronic) eczema +C0263227|T047|AB|L20.84|ICD10CM|Intrinsic (allergic) eczema|Intrinsic (allergic) eczema +C0263227|T047|PT|L20.84|ICD10CM|Intrinsic (allergic) eczema|Intrinsic (allergic) eczema +C0494831|T047|PT|L20.89|ICD10CM|Other atopic dermatitis|Other atopic dermatitis +C0494831|T047|AB|L20.89|ICD10CM|Other atopic dermatitis|Other atopic dermatitis +C0011615|T047|PT|L20.9|ICD10CM|Atopic dermatitis, unspecified|Atopic dermatitis, unspecified +C0011615|T047|AB|L20.9|ICD10CM|Atopic dermatitis, unspecified|Atopic dermatitis, unspecified +C0011615|T047|PT|L20.9|ICD10|Atopic dermatitis, unspecified|Atopic dermatitis, unspecified +C0036508|T047|HT|L21|ICD10AE|Seborrheic dermatitis|Seborrheic dermatitis +C0036508|T047|HT|L21|ICD10CM|Seborrheic dermatitis|Seborrheic dermatitis +C0036508|T047|AB|L21|ICD10CM|Seborrheic dermatitis|Seborrheic dermatitis +C0036508|T047|HT|L21|ICD10|Seborrhoeic dermatitis|Seborrhoeic dermatitis +C0263233|T047|ET|L21.0|ICD10CM|Cradle cap|Cradle cap +C0221244|T047|PT|L21.0|ICD10CM|Seborrhea capitis|Seborrhea capitis +C0221244|T047|AB|L21.0|ICD10CM|Seborrhea capitis|Seborrhea capitis +C0221244|T047|PT|L21.0|ICD10AE|Seborrhea capitis|Seborrhea capitis +C0221244|T047|PT|L21.0|ICD10|Seborrhoea capitis|Seborrhoea capitis +C0343047|T047|PT|L21.1|ICD10AE|Seborrheic infantile dermatitis|Seborrheic infantile dermatitis +C0343047|T047|PT|L21.1|ICD10CM|Seborrheic infantile dermatitis|Seborrheic infantile dermatitis +C0343047|T047|AB|L21.1|ICD10CM|Seborrheic infantile dermatitis|Seborrheic infantile dermatitis +C0343047|T047|PT|L21.1|ICD10|Seborrhoeic infantile dermatitis|Seborrhoeic infantile dermatitis +C0348768|T047|PT|L21.8|ICD10CM|Other seborrheic dermatitis|Other seborrheic dermatitis +C0348768|T047|AB|L21.8|ICD10CM|Other seborrheic dermatitis|Other seborrheic dermatitis +C0348768|T047|PT|L21.8|ICD10AE|Other seborrheic dermatitis|Other seborrheic dermatitis +C0348768|T047|PT|L21.8|ICD10|Other seborrhoeic dermatitis|Other seborrhoeic dermatitis +C0036508|T047|ET|L21.9|ICD10CM|Seborrhea NOS|Seborrhea NOS +C0036508|T047|PT|L21.9|ICD10CM|Seborrheic dermatitis, unspecified|Seborrheic dermatitis, unspecified +C0036508|T047|AB|L21.9|ICD10CM|Seborrheic dermatitis, unspecified|Seborrheic dermatitis, unspecified +C0036508|T047|PT|L21.9|ICD10AE|Seborrheic dermatitis, unspecified|Seborrheic dermatitis, unspecified +C0036508|T047|PT|L21.9|ICD10|Seborrhoeic dermatitis, unspecified|Seborrhoeic dermatitis, unspecified +C0011974|T047|PT|L22|ICD10|Diaper [napkin] dermatitis|Diaper [napkin] dermatitis +C0011974|T047|PT|L22|ICD10CM|Diaper dermatitis|Diaper dermatitis +C0011974|T047|AB|L22|ICD10CM|Diaper dermatitis|Diaper dermatitis +C0011974|T047|ET|L22|ICD10CM|Diaper erythema|Diaper erythema +C0011974|T047|ET|L22|ICD10CM|Diaper rash|Diaper rash +C2888147|T047|ET|L22|ICD10CM|Psoriasiform diaper rash|Psoriasiform diaper rash +C0162820|T047|HT|L23|ICD10|Allergic contact dermatitis|Allergic contact dermatitis +C0162820|T047|HT|L23|ICD10CM|Allergic contact dermatitis|Allergic contact dermatitis +C0162820|T047|AB|L23|ICD10CM|Allergic contact dermatitis|Allergic contact dermatitis +C2888148|T037|ET|L23.0|ICD10CM|Allergic contact dermatitis due to chromium|Allergic contact dermatitis due to chromium +C0263304|T047|PT|L23.0|ICD10CM|Allergic contact dermatitis due to metals|Allergic contact dermatitis due to metals +C0263304|T047|AB|L23.0|ICD10CM|Allergic contact dermatitis due to metals|Allergic contact dermatitis due to metals +C0263304|T047|PT|L23.0|ICD10|Allergic contact dermatitis due to metals|Allergic contact dermatitis due to metals +C2888149|T037|ET|L23.0|ICD10CM|Allergic contact dermatitis due to nickel|Allergic contact dermatitis due to nickel +C0451924|T047|PT|L23.1|ICD10|Allergic contact dermatitis due to adhesives|Allergic contact dermatitis due to adhesives +C0451924|T047|PT|L23.1|ICD10CM|Allergic contact dermatitis due to adhesives|Allergic contact dermatitis due to adhesives +C0451924|T047|AB|L23.1|ICD10CM|Allergic contact dermatitis due to adhesives|Allergic contact dermatitis due to adhesives +C0451925|T047|PT|L23.2|ICD10CM|Allergic contact dermatitis due to cosmetics|Allergic contact dermatitis due to cosmetics +C0451925|T047|AB|L23.2|ICD10CM|Allergic contact dermatitis due to cosmetics|Allergic contact dermatitis due to cosmetics +C0451925|T047|PT|L23.2|ICD10|Allergic contact dermatitis due to cosmetics|Allergic contact dermatitis due to cosmetics +C0451926|T047|AB|L23.3|ICD10CM|Allergic contact dermatitis due to drugs in contact w skin|Allergic contact dermatitis due to drugs in contact w skin +C0451926|T047|PT|L23.3|ICD10CM|Allergic contact dermatitis due to drugs in contact with skin|Allergic contact dermatitis due to drugs in contact with skin +C0451926|T047|PT|L23.3|ICD10|Allergic contact dermatitis due to drugs in contact with skin|Allergic contact dermatitis due to drugs in contact with skin +C0451927|T047|PT|L23.4|ICD10|Allergic contact dermatitis due to dyes|Allergic contact dermatitis due to dyes +C0451927|T047|PT|L23.4|ICD10CM|Allergic contact dermatitis due to dyes|Allergic contact dermatitis due to dyes +C0451927|T047|AB|L23.4|ICD10CM|Allergic contact dermatitis due to dyes|Allergic contact dermatitis due to dyes +C2888150|T037|ET|L23.5|ICD10CM|Allergic contact dermatitis due to cement|Allergic contact dermatitis due to cement +C2888151|T037|ET|L23.5|ICD10CM|Allergic contact dermatitis due to insecticide|Allergic contact dermatitis due to insecticide +C0477475|T037|PT|L23.5|ICD10CM|Allergic contact dermatitis due to other chemical products|Allergic contact dermatitis due to other chemical products +C0477475|T037|AB|L23.5|ICD10CM|Allergic contact dermatitis due to other chemical products|Allergic contact dermatitis due to other chemical products +C0477475|T037|PT|L23.5|ICD10|Allergic contact dermatitis due to other chemical products|Allergic contact dermatitis due to other chemical products +C2888152|T047|ET|L23.5|ICD10CM|Allergic contact dermatitis due to plastic|Allergic contact dermatitis due to plastic +C2888153|T037|ET|L23.5|ICD10CM|Allergic contact dermatitis due to rubber|Allergic contact dermatitis due to rubber +C0451928|T037|AB|L23.6|ICD10CM|Allergic contact dermatitis due to food in contact w skin|Allergic contact dermatitis due to food in contact w skin +C0451928|T037|PT|L23.6|ICD10|Allergic contact dermatitis due to food in contact with skin|Allergic contact dermatitis due to food in contact with skin +C0451928|T037|PT|L23.6|ICD10CM|Allergic contact dermatitis due to food in contact with the skin|Allergic contact dermatitis due to food in contact with the skin +C0451929|T037|PT|L23.7|ICD10CM|Allergic contact dermatitis due to plants, except food|Allergic contact dermatitis due to plants, except food +C0451929|T037|AB|L23.7|ICD10CM|Allergic contact dermatitis due to plants, except food|Allergic contact dermatitis due to plants, except food +C0451929|T037|PT|L23.7|ICD10|Allergic contact dermatitis due to plants, except food|Allergic contact dermatitis due to plants, except food +C0477476|T037|PT|L23.8|ICD10|Allergic contact dermatitis due to other agents|Allergic contact dermatitis due to other agents +C0477476|T037|HT|L23.8|ICD10CM|Allergic contact dermatitis due to other agents|Allergic contact dermatitis due to other agents +C0477476|T037|AB|L23.8|ICD10CM|Allergic contact dermatitis due to other agents|Allergic contact dermatitis due to other agents +C2888155|T047|AB|L23.81|ICD10CM|Allergic contact dermatitis due to animal (cat) (dog) dander|Allergic contact dermatitis due to animal (cat) (dog) dander +C2888155|T047|PT|L23.81|ICD10CM|Allergic contact dermatitis due to animal (cat) (dog) dander|Allergic contact dermatitis due to animal (cat) (dog) dander +C2888154|T047|ET|L23.81|ICD10CM|Allergic contact dermatitis due to animal (cat) (dog) hair|Allergic contact dermatitis due to animal (cat) (dog) hair +C0477476|T037|PT|L23.89|ICD10CM|Allergic contact dermatitis due to other agents|Allergic contact dermatitis due to other agents +C0477476|T037|AB|L23.89|ICD10CM|Allergic contact dermatitis due to other agents|Allergic contact dermatitis due to other agents +C0162820|T047|PT|L23.9|ICD10|Allergic contact dermatitis, unspecified cause|Allergic contact dermatitis, unspecified cause +C0162820|T047|PT|L23.9|ICD10CM|Allergic contact dermatitis, unspecified cause|Allergic contact dermatitis, unspecified cause +C0162820|T047|AB|L23.9|ICD10CM|Allergic contact dermatitis, unspecified cause|Allergic contact dermatitis, unspecified cause +C1393798|T047|ET|L23.9|ICD10CM|Allergic contact eczema NOS|Allergic contact eczema NOS +C0162823|T047|HT|L24|ICD10CM|Irritant contact dermatitis|Irritant contact dermatitis +C0162823|T047|AB|L24|ICD10CM|Irritant contact dermatitis|Irritant contact dermatitis +C0162823|T047|HT|L24|ICD10|Irritant contact dermatitis|Irritant contact dermatitis +C3495383|T046|PT|L24.0|ICD10|Irritant contact dermatitis due to detergents|Irritant contact dermatitis due to detergents +C3495383|T046|PT|L24.0|ICD10CM|Irritant contact dermatitis due to detergents|Irritant contact dermatitis due to detergents +C3495383|T046|AB|L24.0|ICD10CM|Irritant contact dermatitis due to detergents|Irritant contact dermatitis due to detergents +C0494835|T037|PT|L24.1|ICD10CM|Irritant contact dermatitis due to oils and greases|Irritant contact dermatitis due to oils and greases +C0494835|T037|AB|L24.1|ICD10CM|Irritant contact dermatitis due to oils and greases|Irritant contact dermatitis due to oils and greases +C0494835|T037|PT|L24.1|ICD10|Irritant contact dermatitis due to oils and greases|Irritant contact dermatitis due to oils and greases +C2888156|T037|ET|L24.2|ICD10CM|Irritant contact dermatitis due to chlorocompound|Irritant contact dermatitis due to chlorocompound +C2888157|T037|ET|L24.2|ICD10CM|Irritant contact dermatitis due to cyclohexane|Irritant contact dermatitis due to cyclohexane +C2888158|T037|ET|L24.2|ICD10CM|Irritant contact dermatitis due to ester|Irritant contact dermatitis due to ester +C2888159|T037|ET|L24.2|ICD10CM|Irritant contact dermatitis due to glycol|Irritant contact dermatitis due to glycol +C2888160|T037|ET|L24.2|ICD10CM|Irritant contact dermatitis due to hydrocarbon|Irritant contact dermatitis due to hydrocarbon +C2888161|T037|ET|L24.2|ICD10CM|Irritant contact dermatitis due to ketone|Irritant contact dermatitis due to ketone +C0263244|T047|PT|L24.2|ICD10CM|Irritant contact dermatitis due to solvents|Irritant contact dermatitis due to solvents +C0263244|T047|AB|L24.2|ICD10CM|Irritant contact dermatitis due to solvents|Irritant contact dermatitis due to solvents +C0263244|T047|PT|L24.2|ICD10|Irritant contact dermatitis due to solvents|Irritant contact dermatitis due to solvents +C0451930|T047|PT|L24.3|ICD10CM|Irritant contact dermatitis due to cosmetics|Irritant contact dermatitis due to cosmetics +C0451930|T047|AB|L24.3|ICD10CM|Irritant contact dermatitis due to cosmetics|Irritant contact dermatitis due to cosmetics +C0451930|T047|PT|L24.3|ICD10|Irritant contact dermatitis due to cosmetics|Irritant contact dermatitis due to cosmetics +C0451931|T047|AB|L24.4|ICD10CM|Irritant contact dermatitis due to drugs in contact w skin|Irritant contact dermatitis due to drugs in contact w skin +C0451931|T047|PT|L24.4|ICD10CM|Irritant contact dermatitis due to drugs in contact with skin|Irritant contact dermatitis due to drugs in contact with skin +C0451931|T047|PT|L24.4|ICD10|Irritant contact dermatitis due to drugs in contact with skin|Irritant contact dermatitis due to drugs in contact with skin +C1304092|T047|ET|L24.5|ICD10CM|Irritant contact dermatitis due to cement|Irritant contact dermatitis due to cement +C2888162|T037|ET|L24.5|ICD10CM|Irritant contact dermatitis due to insecticide|Irritant contact dermatitis due to insecticide +C0477477|T037|PT|L24.5|ICD10|Irritant contact dermatitis due to other chemical products|Irritant contact dermatitis due to other chemical products +C0477477|T037|PT|L24.5|ICD10CM|Irritant contact dermatitis due to other chemical products|Irritant contact dermatitis due to other chemical products +C0477477|T037|AB|L24.5|ICD10CM|Irritant contact dermatitis due to other chemical products|Irritant contact dermatitis due to other chemical products +C2888163|T037|ET|L24.5|ICD10CM|Irritant contact dermatitis due to plastic|Irritant contact dermatitis due to plastic +C2888164|T037|ET|L24.5|ICD10CM|Irritant contact dermatitis due to rubber|Irritant contact dermatitis due to rubber +C0451932|T047|PT|L24.6|ICD10CM|Irritant contact dermatitis due to food in contact with skin|Irritant contact dermatitis due to food in contact with skin +C0451932|T047|AB|L24.6|ICD10CM|Irritant contact dermatitis due to food in contact with skin|Irritant contact dermatitis due to food in contact with skin +C0451932|T047|PT|L24.6|ICD10|Irritant contact dermatitis due to food in contact with skin|Irritant contact dermatitis due to food in contact with skin +C0451933|T037|PT|L24.7|ICD10|Irritant contact dermatitis due to plants, except food|Irritant contact dermatitis due to plants, except food +C0451933|T037|PT|L24.7|ICD10CM|Irritant contact dermatitis due to plants, except food|Irritant contact dermatitis due to plants, except food +C0451933|T037|AB|L24.7|ICD10CM|Irritant contact dermatitis due to plants, except food|Irritant contact dermatitis due to plants, except food +C0477478|T037|HT|L24.8|ICD10CM|Irritant contact dermatitis due to other agents|Irritant contact dermatitis due to other agents +C0477478|T037|AB|L24.8|ICD10CM|Irritant contact dermatitis due to other agents|Irritant contact dermatitis due to other agents +C0477478|T037|PT|L24.8|ICD10|Irritant contact dermatitis due to other agents|Irritant contact dermatitis due to other agents +C2888165|T037|ET|L24.81|ICD10CM|Irritant contact dermatitis due to chromium|Irritant contact dermatitis due to chromium +C2888167|T047|AB|L24.81|ICD10CM|Irritant contact dermatitis due to metals|Irritant contact dermatitis due to metals +C2888167|T047|PT|L24.81|ICD10CM|Irritant contact dermatitis due to metals|Irritant contact dermatitis due to metals +C2888166|T037|ET|L24.81|ICD10CM|Irritant contact dermatitis due to nickel|Irritant contact dermatitis due to nickel +C2888168|T037|ET|L24.89|ICD10CM|Irritant contact dermatitis due to dyes|Irritant contact dermatitis due to dyes +C0477478|T037|PT|L24.89|ICD10CM|Irritant contact dermatitis due to other agents|Irritant contact dermatitis due to other agents +C0477478|T037|AB|L24.89|ICD10CM|Irritant contact dermatitis due to other agents|Irritant contact dermatitis due to other agents +C0162823|T047|PT|L24.9|ICD10|Irritant contact dermatitis, unspecified cause|Irritant contact dermatitis, unspecified cause +C0162823|T047|PT|L24.9|ICD10CM|Irritant contact dermatitis, unspecified cause|Irritant contact dermatitis, unspecified cause +C0162823|T047|AB|L24.9|ICD10CM|Irritant contact dermatitis, unspecified cause|Irritant contact dermatitis, unspecified cause +C1393799|T047|ET|L24.9|ICD10CM|Irritant contact eczema NOS|Irritant contact eczema NOS +C0011616|T047|AB|L25|ICD10CM|Unspecified contact dermatitis|Unspecified contact dermatitis +C0011616|T047|HT|L25|ICD10CM|Unspecified contact dermatitis|Unspecified contact dermatitis +C0011616|T047|HT|L25|ICD10|Unspecified contact dermatitis|Unspecified contact dermatitis +C0263296|T047|PT|L25.0|ICD10|Unspecified contact dermatitis due to cosmetics|Unspecified contact dermatitis due to cosmetics +C0263296|T047|PT|L25.0|ICD10CM|Unspecified contact dermatitis due to cosmetics|Unspecified contact dermatitis due to cosmetics +C0263296|T047|AB|L25.0|ICD10CM|Unspecified contact dermatitis due to cosmetics|Unspecified contact dermatitis due to cosmetics +C0263251|T047|AB|L25.1|ICD10CM|Unsp contact dermatitis due to drugs in contact with skin|Unsp contact dermatitis due to drugs in contact with skin +C0263251|T047|PT|L25.1|ICD10CM|Unspecified contact dermatitis due to drugs in contact with skin|Unspecified contact dermatitis due to drugs in contact with skin +C0263251|T047|PT|L25.1|ICD10|Unspecified contact dermatitis due to drugs in contact with skin|Unspecified contact dermatitis due to drugs in contact with skin +C0263298|T047|PT|L25.2|ICD10|Unspecified contact dermatitis due to dyes|Unspecified contact dermatitis due to dyes +C0263298|T047|PT|L25.2|ICD10CM|Unspecified contact dermatitis due to dyes|Unspecified contact dermatitis due to dyes +C0263298|T047|AB|L25.2|ICD10CM|Unspecified contact dermatitis due to dyes|Unspecified contact dermatitis due to dyes +C0263263|T047|AB|L25.3|ICD10CM|Unsp contact dermatitis due to other chemical products|Unsp contact dermatitis due to other chemical products +C2888169|T037|ET|L25.3|ICD10CM|Unspecified contact dermatitis due to cement|Unspecified contact dermatitis due to cement +C2888170|T037|ET|L25.3|ICD10CM|Unspecified contact dermatitis due to insecticide|Unspecified contact dermatitis due to insecticide +C0263263|T047|PT|L25.3|ICD10CM|Unspecified contact dermatitis due to other chemical products|Unspecified contact dermatitis due to other chemical products +C0263263|T047|PT|L25.3|ICD10|Unspecified contact dermatitis due to other chemical products|Unspecified contact dermatitis due to other chemical products +C0263273|T047|AB|L25.4|ICD10CM|Unsp contact dermatitis due to food in contact with skin|Unsp contact dermatitis due to food in contact with skin +C0263273|T047|PT|L25.4|ICD10CM|Unspecified contact dermatitis due to food in contact with skin|Unspecified contact dermatitis due to food in contact with skin +C0263273|T047|PT|L25.4|ICD10|Unspecified contact dermatitis due to food in contact with skin|Unspecified contact dermatitis due to food in contact with skin +C0263280|T047|PT|L25.5|ICD10|Unspecified contact dermatitis due to plants, except food|Unspecified contact dermatitis due to plants, except food +C0263280|T047|PT|L25.5|ICD10CM|Unspecified contact dermatitis due to plants, except food|Unspecified contact dermatitis due to plants, except food +C0263280|T047|AB|L25.5|ICD10CM|Unspecified contact dermatitis due to plants, except food|Unspecified contact dermatitis due to plants, except food +C0477480|T037|PT|L25.8|ICD10CM|Unspecified contact dermatitis due to other agents|Unspecified contact dermatitis due to other agents +C0477480|T037|AB|L25.8|ICD10CM|Unspecified contact dermatitis due to other agents|Unspecified contact dermatitis due to other agents +C0477480|T037|PT|L25.8|ICD10|Unspecified contact dermatitis due to other agents|Unspecified contact dermatitis due to other agents +C2888171|T047|ET|L25.9|ICD10CM|Contact dermatitis (occupational) NOS|Contact dermatitis (occupational) NOS +C2888172|T037|ET|L25.9|ICD10CM|Contact eczema (occupational) NOS|Contact eczema (occupational) NOS +C0011616|T047|PT|L25.9|ICD10|Unspecified contact dermatitis, unspecified cause|Unspecified contact dermatitis, unspecified cause +C0011616|T047|PT|L25.9|ICD10CM|Unspecified contact dermatitis, unspecified cause|Unspecified contact dermatitis, unspecified cause +C0011616|T047|AB|L25.9|ICD10CM|Unspecified contact dermatitis, unspecified cause|Unspecified contact dermatitis, unspecified cause +C0011606|T047|PT|L26|ICD10CM|Exfoliative dermatitis|Exfoliative dermatitis +C0011606|T047|AB|L26|ICD10CM|Exfoliative dermatitis|Exfoliative dermatitis +C0011606|T047|PT|L26|ICD10|Exfoliative dermatitis|Exfoliative dermatitis +C0011606|T047|ET|L26|ICD10CM|Hebra's pityriasis|Hebra's pityriasis +C0157718|T047|HT|L27|ICD10CM|Dermatitis due to substances taken internally|Dermatitis due to substances taken internally +C0157718|T047|AB|L27|ICD10CM|Dermatitis due to substances taken internally|Dermatitis due to substances taken internally +C0157718|T047|HT|L27|ICD10|Dermatitis due to substances taken internally|Dermatitis due to substances taken internally +C2888173|T046|AB|L27.0|ICD10CM|Gen skin eruption due to drugs and meds taken internally|Gen skin eruption due to drugs and meds taken internally +C0451939|T047|PT|L27.0|ICD10|Generalized skin eruption due to drugs and medicaments|Generalized skin eruption due to drugs and medicaments +C2888173|T046|PT|L27.0|ICD10CM|Generalized skin eruption due to drugs and medicaments taken internally|Generalized skin eruption due to drugs and medicaments taken internally +C2888174|T047|AB|L27.1|ICD10CM|Loc skin eruption due to drugs and meds taken internally|Loc skin eruption due to drugs and meds taken internally +C0451940|T047|PT|L27.1|ICD10|Localized skin eruption due to drugs and medicaments|Localized skin eruption due to drugs and medicaments +C2888174|T047|PT|L27.1|ICD10CM|Localized skin eruption due to drugs and medicaments taken internally|Localized skin eruption due to drugs and medicaments taken internally +C0494843|T047|PT|L27.2|ICD10|Dermatitis due to ingested food|Dermatitis due to ingested food +C0494843|T047|PT|L27.2|ICD10CM|Dermatitis due to ingested food|Dermatitis due to ingested food +C0494843|T047|AB|L27.2|ICD10CM|Dermatitis due to ingested food|Dermatitis due to ingested food +C0477481|T037|PT|L27.8|ICD10|Dermatitis due to other substances taken internally|Dermatitis due to other substances taken internally +C0477481|T037|PT|L27.8|ICD10CM|Dermatitis due to other substances taken internally|Dermatitis due to other substances taken internally +C0477481|T037|AB|L27.8|ICD10CM|Dermatitis due to other substances taken internally|Dermatitis due to other substances taken internally +C0157718|T047|PT|L27.9|ICD10|Dermatitis due to unspecified substance taken internally|Dermatitis due to unspecified substance taken internally +C0157718|T047|PT|L27.9|ICD10CM|Dermatitis due to unspecified substance taken internally|Dermatitis due to unspecified substance taken internally +C0157718|T047|AB|L27.9|ICD10CM|Dermatitis due to unspecified substance taken internally|Dermatitis due to unspecified substance taken internally +C0494844|T047|HT|L28|ICD10|Lichen simplex chronicus and prurigo|Lichen simplex chronicus and prurigo +C0494844|T047|AB|L28|ICD10CM|Lichen simplex chronicus and prurigo|Lichen simplex chronicus and prurigo +C0494844|T047|HT|L28|ICD10CM|Lichen simplex chronicus and prurigo|Lichen simplex chronicus and prurigo +C0149922|T047|ET|L28.0|ICD10CM|Circumscribed neurodermatitis|Circumscribed neurodermatitis +C0023643|T047|ET|L28.0|ICD10CM|Lichen NOS|Lichen NOS +C0149922|T047|PT|L28.0|ICD10CM|Lichen simplex chronicus|Lichen simplex chronicus +C0149922|T047|AB|L28.0|ICD10CM|Lichen simplex chronicus|Lichen simplex chronicus +C0149922|T047|PT|L28.0|ICD10|Lichen simplex chronicus|Lichen simplex chronicus +C0263353|T047|PT|L28.1|ICD10|Prurigo nodularis|Prurigo nodularis +C0263353|T047|PT|L28.1|ICD10CM|Prurigo nodularis|Prurigo nodularis +C0263353|T047|AB|L28.1|ICD10CM|Prurigo nodularis|Prurigo nodularis +C0477482|T184|PT|L28.2|ICD10CM|Other prurigo|Other prurigo +C0477482|T184|AB|L28.2|ICD10CM|Other prurigo|Other prurigo +C0477482|T184|PT|L28.2|ICD10|Other prurigo|Other prurigo +C2980107|T047|ET|L28.2|ICD10CM|Prurigo Hebra|Prurigo Hebra +C2980106|T047|ET|L28.2|ICD10CM|Prurigo mitis|Prurigo mitis +C0033771|T047|ET|L28.2|ICD10CM|Prurigo NOS|Prurigo NOS +C1408050|T184|ET|L28.2|ICD10CM|Urticaria papulosa|Urticaria papulosa +C0033774|T033|HT|L29|ICD10CM|Pruritus|Pruritus +C0033774|T033|AB|L29|ICD10CM|Pruritus|Pruritus +C0033774|T033|HT|L29|ICD10|Pruritus|Pruritus +C0033775|T184|PT|L29.0|ICD10|Pruritus ani|Pruritus ani +C0033775|T184|PT|L29.0|ICD10CM|Pruritus ani|Pruritus ani +C0033775|T184|AB|L29.0|ICD10CM|Pruritus ani|Pruritus ani +C0451941|T184|PT|L29.1|ICD10|Pruritus scroti|Pruritus scroti +C0451941|T184|PT|L29.1|ICD10CM|Pruritus scroti|Pruritus scroti +C0451941|T184|AB|L29.1|ICD10CM|Pruritus scroti|Pruritus scroti +C0033778|T184|PT|L29.2|ICD10|Pruritus vulvae|Pruritus vulvae +C0033778|T184|PT|L29.2|ICD10CM|Pruritus vulvae|Pruritus vulvae +C0033778|T184|AB|L29.2|ICD10CM|Pruritus vulvae|Pruritus vulvae +C0003107|T047|PT|L29.3|ICD10CM|Anogenital pruritus, unspecified|Anogenital pruritus, unspecified +C0003107|T047|AB|L29.3|ICD10CM|Anogenital pruritus, unspecified|Anogenital pruritus, unspecified +C0003107|T047|PT|L29.3|ICD10|Anogenital pruritus, unspecified|Anogenital pruritus, unspecified +C0477483|T184|PT|L29.8|ICD10CM|Other pruritus|Other pruritus +C0477483|T184|AB|L29.8|ICD10CM|Other pruritus|Other pruritus +C0477483|T184|PT|L29.8|ICD10|Other pruritus|Other pruritus +C0033774|T033|ET|L29.9|ICD10CM|Itch NOS|Itch NOS +C0033774|T033|PT|L29.9|ICD10CM|Pruritus, unspecified|Pruritus, unspecified +C0033774|T033|AB|L29.9|ICD10CM|Pruritus, unspecified|Pruritus, unspecified +C0033774|T033|PT|L29.9|ICD10|Pruritus, unspecified|Pruritus, unspecified +C2888175|T047|AB|L30|ICD10CM|Other and unspecified dermatitis|Other and unspecified dermatitis +C2888175|T047|HT|L30|ICD10CM|Other and unspecified dermatitis|Other and unspecified dermatitis +C0494846|T047|HT|L30|ICD10|Other dermatitis|Other dermatitis +C0085656|T047|PT|L30.0|ICD10|Nummular dermatitis|Nummular dermatitis +C0085656|T047|PT|L30.0|ICD10CM|Nummular dermatitis|Nummular dermatitis +C0085656|T047|AB|L30.0|ICD10CM|Nummular dermatitis|Nummular dermatitis +C0494847|T047|PT|L30.1|ICD10|Dyshidrosis [pompholyx]|Dyshidrosis [pompholyx] +C0494847|T047|PT|L30.1|ICD10CM|Dyshidrosis [pompholyx]|Dyshidrosis [pompholyx] +C0494847|T047|AB|L30.1|ICD10CM|Dyshidrosis [pompholyx]|Dyshidrosis [pompholyx] +C2888176|T033|ET|L30.2|ICD10CM|Candidid [levurid]|Candidid [levurid] +C0263236|T047|PT|L30.2|ICD10|Cutaneous autosensitization|Cutaneous autosensitization +C0263236|T047|AB|L30.2|ICD10CM|Cutaneous autosensitization|Cutaneous autosensitization +C0263236|T047|PT|L30.2|ICD10CM|Cutaneous autosensitization|Cutaneous autosensitization +C0343041|T047|ET|L30.2|ICD10CM|Dermatophytid|Dermatophytid +C1396188|T047|ET|L30.2|ICD10CM|Eczematid|Eczematid +C0085658|T047|ET|L30.3|ICD10CM|Infectious eczematoid dermatitis|Infectious eczematoid dermatitis +C1260874|T047|PT|L30.3|ICD10|Infective dermatitis|Infective dermatitis +C1260874|T047|PT|L30.3|ICD10CM|Infective dermatitis|Infective dermatitis +C1260874|T047|AB|L30.3|ICD10CM|Infective dermatitis|Infective dermatitis +C0021807|T047|PT|L30.4|ICD10CM|Erythema intertrigo|Erythema intertrigo +C0021807|T047|AB|L30.4|ICD10CM|Erythema intertrigo|Erythema intertrigo +C0021807|T047|PT|L30.4|ICD10|Erythema intertrigo|Erythema intertrigo +C0085657|T047|PT|L30.5|ICD10|Pityriasis alba|Pityriasis alba +C0085657|T047|PT|L30.5|ICD10CM|Pityriasis alba|Pityriasis alba +C0085657|T047|AB|L30.5|ICD10CM|Pityriasis alba|Pityriasis alba +C0477484|T047|PT|L30.8|ICD10CM|Other specified dermatitis|Other specified dermatitis +C0477484|T047|AB|L30.8|ICD10CM|Other specified dermatitis|Other specified dermatitis +C0477484|T047|PT|L30.8|ICD10|Other specified dermatitis|Other specified dermatitis +C0011603|T047|PT|L30.9|ICD10CM|Dermatitis, unspecified|Dermatitis, unspecified +C0011603|T047|AB|L30.9|ICD10CM|Dermatitis, unspecified|Dermatitis, unspecified +C0011603|T047|PT|L30.9|ICD10|Dermatitis, unspecified|Dermatitis, unspecified +C0013595|T047|ET|L30.9|ICD10CM|Eczema NOS|Eczema NOS +C0033860|T047|HT|L40|ICD10|Psoriasis|Psoriasis +C0033860|T047|HT|L40|ICD10CM|Psoriasis|Psoriasis +C0033860|T047|AB|L40|ICD10CM|Psoriasis|Psoriasis +C0162818|T047|HT|L40-L45|ICD10CM|Papulosquamous disorders (L40-L45)|Papulosquamous disorders (L40-L45) +C0162818|T047|HT|L40-L45.9|ICD10|Papulosquamous disorders|Papulosquamous disorders +C0406317|T047|ET|L40.0|ICD10CM|Nummular psoriasis|Nummular psoriasis +C0406317|T047|ET|L40.0|ICD10CM|Plaque psoriasis|Plaque psoriasis +C0263361|T047|PT|L40.0|ICD10|Psoriasis vulgaris|Psoriasis vulgaris +C0263361|T047|PT|L40.0|ICD10CM|Psoriasis vulgaris|Psoriasis vulgaris +C0263361|T047|AB|L40.0|ICD10CM|Psoriasis vulgaris|Psoriasis vulgaris +C0343055|T047|PT|L40.1|ICD10CM|Generalized pustular psoriasis|Generalized pustular psoriasis +C0343055|T047|AB|L40.1|ICD10CM|Generalized pustular psoriasis|Generalized pustular psoriasis +C0343055|T047|PT|L40.1|ICD10|Generalized pustular psoriasis|Generalized pustular psoriasis +C1314968|T047|ET|L40.1|ICD10CM|Impetigo herpetiformis|Impetigo herpetiformis +C2888177|T047|ET|L40.1|ICD10CM|Von Zumbusch's disease|Von Zumbusch's disease +C0392439|T047|PT|L40.2|ICD10|Acrodermatitis continua|Acrodermatitis continua +C0392439|T047|PT|L40.2|ICD10CM|Acrodermatitis continua|Acrodermatitis continua +C0392439|T047|AB|L40.2|ICD10CM|Acrodermatitis continua|Acrodermatitis continua +C0030246|T047|PT|L40.3|ICD10|Pustulosis palmaris et plantaris|Pustulosis palmaris et plantaris +C0030246|T047|PT|L40.3|ICD10CM|Pustulosis palmaris et plantaris|Pustulosis palmaris et plantaris +C0030246|T047|AB|L40.3|ICD10CM|Pustulosis palmaris et plantaris|Pustulosis palmaris et plantaris +C0343052|T047|PT|L40.4|ICD10|Guttate psoriasis|Guttate psoriasis +C0343052|T047|PT|L40.4|ICD10CM|Guttate psoriasis|Guttate psoriasis +C0343052|T047|AB|L40.4|ICD10CM|Guttate psoriasis|Guttate psoriasis +C0003872|T047|PT|L40.5|ICD10|Arthropathic psoriasis|Arthropathic psoriasis +C0003872|T047|HT|L40.5|ICD10CM|Arthropathic psoriasis|Arthropathic psoriasis +C0003872|T047|AB|L40.5|ICD10CM|Arthropathic psoriasis|Arthropathic psoriasis +C0003872|T047|AB|L40.50|ICD10CM|Arthropathic psoriasis, unspecified|Arthropathic psoriasis, unspecified +C0003872|T047|PT|L40.50|ICD10CM|Arthropathic psoriasis, unspecified|Arthropathic psoriasis, unspecified +C0409682|T047|PT|L40.51|ICD10CM|Distal interphalangeal psoriatic arthropathy|Distal interphalangeal psoriatic arthropathy +C0409682|T047|AB|L40.51|ICD10CM|Distal interphalangeal psoriatic arthropathy|Distal interphalangeal psoriatic arthropathy +C2888178|T047|PT|L40.52|ICD10CM|Psoriatic arthritis mutilans|Psoriatic arthritis mutilans +C2888178|T047|AB|L40.52|ICD10CM|Psoriatic arthritis mutilans|Psoriatic arthritis mutilans +C0343176|T047|PT|L40.53|ICD10CM|Psoriatic spondylitis|Psoriatic spondylitis +C0343176|T047|AB|L40.53|ICD10CM|Psoriatic spondylitis|Psoriatic spondylitis +C2888179|T047|PT|L40.54|ICD10CM|Psoriatic juvenile arthropathy|Psoriatic juvenile arthropathy +C2888179|T047|AB|L40.54|ICD10CM|Psoriatic juvenile arthropathy|Psoriatic juvenile arthropathy +C0477543|T047|AB|L40.59|ICD10CM|Other psoriatic arthropathy|Other psoriatic arthropathy +C0477543|T047|PT|L40.59|ICD10CM|Other psoriatic arthropathy|Other psoriatic arthropathy +C0343053|T047|ET|L40.8|ICD10CM|Flexural psoriasis|Flexural psoriasis +C0477485|T047|PT|L40.8|ICD10CM|Other psoriasis|Other psoriasis +C0477485|T047|AB|L40.8|ICD10CM|Other psoriasis|Other psoriasis +C0477485|T047|PT|L40.8|ICD10|Other psoriasis|Other psoriasis +C0033860|T047|PT|L40.9|ICD10CM|Psoriasis, unspecified|Psoriasis, unspecified +C0033860|T047|AB|L40.9|ICD10CM|Psoriasis, unspecified|Psoriasis, unspecified +C0033860|T047|PT|L40.9|ICD10|Psoriasis, unspecified|Psoriasis, unspecified +C0030491|T047|HT|L41|ICD10|Parapsoriasis|Parapsoriasis +C0030491|T047|HT|L41|ICD10CM|Parapsoriasis|Parapsoriasis +C0030491|T047|AB|L41|ICD10CM|Parapsoriasis|Parapsoriasis +C0162852|T047|ET|L41.0|ICD10CM|Mucha-Habermann disease|Mucha-Habermann disease +C0162852|T047|PT|L41.0|ICD10CM|Pityriasis lichenoides et varioliformis acuta|Pityriasis lichenoides et varioliformis acuta +C0162852|T047|AB|L41.0|ICD10CM|Pityriasis lichenoides et varioliformis acuta|Pityriasis lichenoides et varioliformis acuta +C0162852|T047|PT|L41.0|ICD10|Pityriasis lichenoides et varioliformis acuta|Pityriasis lichenoides et varioliformis acuta +C0162851|T047|PT|L41.1|ICD10|Pityriasis lichenoides chronica|Pityriasis lichenoides chronica +C0162851|T047|PT|L41.1|ICD10CM|Pityriasis lichenoides chronica|Pityriasis lichenoides chronica +C0162851|T047|AB|L41.1|ICD10CM|Pityriasis lichenoides chronica|Pityriasis lichenoides chronica +C0206182|T191|PT|L41.2|ICD10|Lymphomatoid papulosis|Lymphomatoid papulosis +C0263370|T047|PT|L41.3|ICD10|Small plaque parapsoriasis|Small plaque parapsoriasis +C0263370|T047|PT|L41.3|ICD10CM|Small plaque parapsoriasis|Small plaque parapsoriasis +C0263370|T047|AB|L41.3|ICD10CM|Small plaque parapsoriasis|Small plaque parapsoriasis +C0162442|T047|PT|L41.4|ICD10CM|Large plaque parapsoriasis|Large plaque parapsoriasis +C0162442|T047|AB|L41.4|ICD10CM|Large plaque parapsoriasis|Large plaque parapsoriasis +C0162442|T047|PT|L41.4|ICD10|Large plaque parapsoriasis|Large plaque parapsoriasis +C0263369|T047|PT|L41.5|ICD10|Retiform parapsoriasis|Retiform parapsoriasis +C0263369|T047|PT|L41.5|ICD10CM|Retiform parapsoriasis|Retiform parapsoriasis +C0263369|T047|AB|L41.5|ICD10CM|Retiform parapsoriasis|Retiform parapsoriasis +C0477486|T047|PT|L41.8|ICD10|Other parapsoriasis|Other parapsoriasis +C0477486|T047|PT|L41.8|ICD10CM|Other parapsoriasis|Other parapsoriasis +C0477486|T047|AB|L41.8|ICD10CM|Other parapsoriasis|Other parapsoriasis +C0030491|T047|PT|L41.9|ICD10|Parapsoriasis, unspecified|Parapsoriasis, unspecified +C0030491|T047|PT|L41.9|ICD10CM|Parapsoriasis, unspecified|Parapsoriasis, unspecified +C0030491|T047|AB|L41.9|ICD10CM|Parapsoriasis, unspecified|Parapsoriasis, unspecified +C0032026|T047|PT|L42|ICD10CM|Pityriasis rosea|Pityriasis rosea +C0032026|T047|AB|L42|ICD10CM|Pityriasis rosea|Pityriasis rosea +C0032026|T047|PT|L42|ICD10|Pityriasis rosea|Pityriasis rosea +C0023646|T047|HT|L43|ICD10|Lichen planus|Lichen planus +C0023646|T047|HT|L43|ICD10CM|Lichen planus|Lichen planus +C0023646|T047|AB|L43|ICD10CM|Lichen planus|Lichen planus +C0023649|T047|PT|L43.0|ICD10CM|Hypertrophic lichen planus|Hypertrophic lichen planus +C0023649|T047|AB|L43.0|ICD10CM|Hypertrophic lichen planus|Hypertrophic lichen planus +C0023649|T047|PT|L43.0|ICD10|Hypertrophic lichen planus|Hypertrophic lichen planus +C0023648|T047|PT|L43.1|ICD10|Bullous lichen planus|Bullous lichen planus +C0023648|T047|PT|L43.1|ICD10CM|Bullous lichen planus|Bullous lichen planus +C0023648|T047|AB|L43.1|ICD10CM|Bullous lichen planus|Bullous lichen planus +C0023656|T047|PT|L43.2|ICD10CM|Lichenoid drug reaction|Lichenoid drug reaction +C0023656|T047|AB|L43.2|ICD10CM|Lichenoid drug reaction|Lichenoid drug reaction +C0023656|T047|PT|L43.2|ICD10|Lichenoid drug reaction|Lichenoid drug reaction +C2888180|T047|ET|L43.3|ICD10CM|Lichen planus tropicus|Lichen planus tropicus +C0451935|T047|PT|L43.3|ICD10|Subacute (active) lichen planus|Subacute (active) lichen planus +C0451935|T047|PT|L43.3|ICD10CM|Subacute (active) lichen planus|Subacute (active) lichen planus +C0451935|T047|AB|L43.3|ICD10CM|Subacute (active) lichen planus|Subacute (active) lichen planus +C0477487|T047|PT|L43.8|ICD10CM|Other lichen planus|Other lichen planus +C0477487|T047|AB|L43.8|ICD10CM|Other lichen planus|Other lichen planus +C0477487|T047|PT|L43.8|ICD10|Other lichen planus|Other lichen planus +C0023646|T047|PT|L43.9|ICD10CM|Lichen planus, unspecified|Lichen planus, unspecified +C0023646|T047|AB|L43.9|ICD10CM|Lichen planus, unspecified|Lichen planus, unspecified +C0023646|T047|PT|L43.9|ICD10|Lichen planus, unspecified|Lichen planus, unspecified +C0494849|T047|HT|L44|ICD10|Other papulosquamous disorders|Other papulosquamous disorders +C0494849|T047|AB|L44|ICD10CM|Other papulosquamous disorders|Other papulosquamous disorders +C0494849|T047|HT|L44|ICD10CM|Other papulosquamous disorders|Other papulosquamous disorders +C0032027|T047|PT|L44.0|ICD10|Pityriasis rubra pilaris|Pityriasis rubra pilaris +C0032027|T047|PT|L44.0|ICD10CM|Pityriasis rubra pilaris|Pityriasis rubra pilaris +C0032027|T047|AB|L44.0|ICD10CM|Pityriasis rubra pilaris|Pityriasis rubra pilaris +C0162849|T047|PT|L44.1|ICD10CM|Lichen nitidus|Lichen nitidus +C0162849|T047|AB|L44.1|ICD10CM|Lichen nitidus|Lichen nitidus +C0162849|T047|PT|L44.1|ICD10|Lichen nitidus|Lichen nitidus +C0263374|T047|PT|L44.2|ICD10|Lichen striatus|Lichen striatus +C0263374|T047|PT|L44.2|ICD10CM|Lichen striatus|Lichen striatus +C0263374|T047|AB|L44.2|ICD10CM|Lichen striatus|Lichen striatus +C0263375|T047|PT|L44.3|ICD10CM|Lichen ruber moniliformis|Lichen ruber moniliformis +C0263375|T047|AB|L44.3|ICD10CM|Lichen ruber moniliformis|Lichen ruber moniliformis +C0263375|T047|PT|L44.3|ICD10|Lichen ruber moniliformis|Lichen ruber moniliformis +C0263372|T047|PT|L44.4|ICD10|Infantile papular acrodermatitis [Giannotti-Crosti]|Infantile papular acrodermatitis [Giannotti-Crosti] +C2888181|T047|AB|L44.4|ICD10CM|Infantile papular acrodermatitis [Gianotti-Crosti]|Infantile papular acrodermatitis [Gianotti-Crosti] +C2888181|T047|PT|L44.4|ICD10CM|Infantile papular acrodermatitis [Gianotti-Crosti]|Infantile papular acrodermatitis [Gianotti-Crosti] +C0477488|T047|PT|L44.8|ICD10|Other specified papulosquamous disorders|Other specified papulosquamous disorders +C0477488|T047|PT|L44.8|ICD10CM|Other specified papulosquamous disorders|Other specified papulosquamous disorders +C0477488|T047|AB|L44.8|ICD10CM|Other specified papulosquamous disorders|Other specified papulosquamous disorders +C0162818|T047|PT|L44.9|ICD10|Papulosquamous disorder, unspecified|Papulosquamous disorder, unspecified +C0162818|T047|PT|L44.9|ICD10CM|Papulosquamous disorder, unspecified|Papulosquamous disorder, unspecified +C0162818|T047|AB|L44.9|ICD10CM|Papulosquamous disorder, unspecified|Papulosquamous disorder, unspecified +C0477489|T047|PT|L45|ICD10CM|Papulosquamous disorders in diseases classified elsewhere|Papulosquamous disorders in diseases classified elsewhere +C0477489|T047|AB|L45|ICD10CM|Papulosquamous disorders in diseases classified elsewhere|Papulosquamous disorders in diseases classified elsewhere +C0477489|T047|PT|L45|ICD10|Papulosquamous disorders in diseases classified elsewhere|Papulosquamous disorders in diseases classified elsewhere +C2349629|T047|HT|L49|ICD10CM|Exfoliation due to erythematous conditions according to extent of body surface involved|Exfoliation due to erythematous conditions according to extent of body surface involved +C2349629|T047|AB|L49|ICD10CM|Exfoliatn due to erythemat cond accord extent body involv|Exfoliatn due to erythemat cond accord extent body involv +C0477490|T184|HT|L49-L54|ICD10CM|Urticaria and erythema (L49-L54)|Urticaria and erythema (L49-L54) +C2349618|T047|PT|L49.0|ICD10CM|Exfoliation due to erythematous condition involving less than 10 percent of body surface|Exfoliation due to erythematous condition involving less than 10 percent of body surface +C2349619|T047|ET|L49.0|ICD10CM|Exfoliation due to erythematous condition NOS|Exfoliation due to erythematous condition NOS +C2349618|T047|AB|L49.0|ICD10CM|Exfoliatn due to erythemat cond w < 10 pct of body surface|Exfoliatn due to erythemat cond w < 10 pct of body surface +C2349620|T047|PT|L49.1|ICD10CM|Exfoliation due to erythematous condition involving 10-19 percent of body surface|Exfoliation due to erythematous condition involving 10-19 percent of body surface +C2349620|T047|AB|L49.1|ICD10CM|Exfoliatn due to erythemat cond w 10-19 pct of body surface|Exfoliatn due to erythemat cond w 10-19 pct of body surface +C2349621|T047|PT|L49.2|ICD10CM|Exfoliation due to erythematous condition involving 20-29 percent of body surface|Exfoliation due to erythematous condition involving 20-29 percent of body surface +C2349621|T047|AB|L49.2|ICD10CM|Exfoliatn due to erythemat cond w 20-29 pct of body surface|Exfoliatn due to erythemat cond w 20-29 pct of body surface +C2349622|T047|PT|L49.3|ICD10CM|Exfoliation due to erythematous condition involving 30-39 percent of body surface|Exfoliation due to erythematous condition involving 30-39 percent of body surface +C2349622|T047|AB|L49.3|ICD10CM|Exfoliatn due to erythemat cond w 30-39 pct of body surface|Exfoliatn due to erythemat cond w 30-39 pct of body surface +C2349623|T047|PT|L49.4|ICD10CM|Exfoliation due to erythematous condition involving 40-49 percent of body surface|Exfoliation due to erythematous condition involving 40-49 percent of body surface +C2349623|T047|AB|L49.4|ICD10CM|Exfoliatn due to erythemat cond w 40-49 pct of body surface|Exfoliatn due to erythemat cond w 40-49 pct of body surface +C2349624|T047|PT|L49.5|ICD10CM|Exfoliation due to erythematous condition involving 50-59 percent of body surface|Exfoliation due to erythematous condition involving 50-59 percent of body surface +C2349624|T047|AB|L49.5|ICD10CM|Exfoliatn due to erythemat cond w 50-59 pct of body surface|Exfoliatn due to erythemat cond w 50-59 pct of body surface +C2349625|T047|PT|L49.6|ICD10CM|Exfoliation due to erythematous condition involving 60-69 percent of body surface|Exfoliation due to erythematous condition involving 60-69 percent of body surface +C2349625|T047|AB|L49.6|ICD10CM|Exfoliatn due to erythemat cond w 60-69 pct of body surface|Exfoliatn due to erythemat cond w 60-69 pct of body surface +C2349626|T047|PT|L49.7|ICD10CM|Exfoliation due to erythematous condition involving 70-79 percent of body surface|Exfoliation due to erythematous condition involving 70-79 percent of body surface +C2349626|T047|AB|L49.7|ICD10CM|Exfoliatn due to erythemat cond w 70-79 pct of body surface|Exfoliatn due to erythemat cond w 70-79 pct of body surface +C2349627|T047|PT|L49.8|ICD10CM|Exfoliation due to erythematous condition involving 80-89 percent of body surface|Exfoliation due to erythematous condition involving 80-89 percent of body surface +C2349627|T047|AB|L49.8|ICD10CM|Exfoliatn due to erythemat cond w 80-89 pct of body surface|Exfoliatn due to erythemat cond w 80-89 pct of body surface +C2349628|T047|PT|L49.9|ICD10CM|Exfoliation due to erythematous condition involving 90 or more percent of body surface|Exfoliation due to erythematous condition involving 90 or more percent of body surface +C2349628|T047|AB|L49.9|ICD10CM|Exfoliatn d/t erythemat cond w 90 or more pct of body surfc|Exfoliatn d/t erythemat cond w 90 or more pct of body surfc +C0042109|T047|HT|L50|ICD10CM|Urticaria|Urticaria +C0042109|T047|AB|L50|ICD10CM|Urticaria|Urticaria +C0042109|T047|HT|L50|ICD10|Urticaria|Urticaria +C0477490|T184|HT|L50-L54.9|ICD10|Urticaria and erythema|Urticaria and erythema +C0149526|T047|PT|L50.0|ICD10|Allergic urticaria|Allergic urticaria +C0149526|T047|PT|L50.0|ICD10CM|Allergic urticaria|Allergic urticaria +C0149526|T047|AB|L50.0|ICD10CM|Allergic urticaria|Allergic urticaria +C0157741|T047|PT|L50.1|ICD10CM|Idiopathic urticaria|Idiopathic urticaria +C0157741|T047|AB|L50.1|ICD10CM|Idiopathic urticaria|Idiopathic urticaria +C0157741|T047|PT|L50.1|ICD10|Idiopathic urticaria|Idiopathic urticaria +C0157742|T037|PT|L50.2|ICD10|Urticaria due to cold and heat|Urticaria due to cold and heat +C0157742|T037|PT|L50.2|ICD10CM|Urticaria due to cold and heat|Urticaria due to cold and heat +C0157742|T037|AB|L50.2|ICD10CM|Urticaria due to cold and heat|Urticaria due to cold and heat +C0343065|T047|PT|L50.3|ICD10CM|Dermatographic urticaria|Dermatographic urticaria +C0343065|T047|AB|L50.3|ICD10CM|Dermatographic urticaria|Dermatographic urticaria +C0343065|T047|PT|L50.3|ICD10|Dermatographic urticaria|Dermatographic urticaria +C0157743|T047|PT|L50.4|ICD10|Vibratory urticaria|Vibratory urticaria +C0157743|T047|PT|L50.4|ICD10CM|Vibratory urticaria|Vibratory urticaria +C0157743|T047|AB|L50.4|ICD10CM|Vibratory urticaria|Vibratory urticaria +C0152230|T047|PT|L50.5|ICD10CM|Cholinergic urticaria|Cholinergic urticaria +C0152230|T047|AB|L50.5|ICD10CM|Cholinergic urticaria|Cholinergic urticaria +C0152230|T047|PT|L50.5|ICD10|Cholinergic urticaria|Cholinergic urticaria +C0263333|T047|PT|L50.6|ICD10|Contact urticaria|Contact urticaria +C0263333|T047|PT|L50.6|ICD10CM|Contact urticaria|Contact urticaria +C0263333|T047|AB|L50.6|ICD10CM|Contact urticaria|Contact urticaria +C0263338|T047|ET|L50.8|ICD10CM|Chronic urticaria|Chronic urticaria +C0477491|T184|PT|L50.8|ICD10CM|Other urticaria|Other urticaria +C0477491|T184|AB|L50.8|ICD10CM|Other urticaria|Other urticaria +C0477491|T184|PT|L50.8|ICD10|Other urticaria|Other urticaria +C0263338|T047|ET|L50.8|ICD10CM|Recurrent periodic urticaria|Recurrent periodic urticaria +C0042109|T047|PT|L50.9|ICD10CM|Urticaria, unspecified|Urticaria, unspecified +C0042109|T047|AB|L50.9|ICD10CM|Urticaria, unspecified|Urticaria, unspecified +C0042109|T047|PT|L50.9|ICD10|Urticaria, unspecified|Urticaria, unspecified +C0014742|T047|HT|L51|ICD10|Erythema multiforme|Erythema multiforme +C0014742|T047|HT|L51|ICD10CM|Erythema multiforme|Erythema multiforme +C0014742|T047|AB|L51|ICD10CM|Erythema multiforme|Erythema multiforme +C0406541|T047|PT|L51.0|ICD10|Nonbullous erythema multiforme|Nonbullous erythema multiforme +C0406541|T047|PT|L51.0|ICD10CM|Nonbullous erythema multiforme|Nonbullous erythema multiforme +C0406541|T047|AB|L51.0|ICD10CM|Nonbullous erythema multiforme|Nonbullous erythema multiforme +C0038325|T047|PT|L51.1|ICD10|Bullous erythema multiforme|Bullous erythema multiforme +C0038325|T047|PT|L51.1|ICD10CM|Stevens-Johnson syndrome|Stevens-Johnson syndrome +C0038325|T047|AB|L51.1|ICD10CM|Stevens-Johnson syndrome|Stevens-Johnson syndrome +C0014518|T047|PT|L51.2|ICD10CM|Toxic epidermal necrolysis [Lyell]|Toxic epidermal necrolysis [Lyell] +C0014518|T047|AB|L51.2|ICD10CM|Toxic epidermal necrolysis [Lyell]|Toxic epidermal necrolysis [Lyell] +C0014518|T047|PT|L51.2|ICD10|Toxic epidermal necrolysis [Lyell]|Toxic epidermal necrolysis [Lyell] +C2349616|T047|ET|L51.3|ICD10CM|SJS-TEN overlap syndrome|SJS-TEN overlap syndrome +C2349616|T047|AB|L51.3|ICD10CM|Stevens-Johnson synd-tox epdrml necrolysis overlap syndrome|Stevens-Johnson synd-tox epdrml necrolysis overlap syndrome +C2349616|T047|PT|L51.3|ICD10CM|Stevens-Johnson syndrome-toxic epidermal necrolysis overlap syndrome|Stevens-Johnson syndrome-toxic epidermal necrolysis overlap syndrome +C0477492|T047|PT|L51.8|ICD10CM|Other erythema multiforme|Other erythema multiforme +C0477492|T047|AB|L51.8|ICD10CM|Other erythema multiforme|Other erythema multiforme +C0477492|T047|PT|L51.8|ICD10|Other erythema multiforme|Other erythema multiforme +C0263322|T047|ET|L51.9|ICD10CM|Erythema iris|Erythema iris +C3241919|T047|ET|L51.9|ICD10CM|Erythema multiforme major NOS|Erythema multiforme major NOS +C0857751|T047|ET|L51.9|ICD10CM|Erythema multiforme minor NOS|Erythema multiforme minor NOS +C0014742|T047|PT|L51.9|ICD10CM|Erythema multiforme, unspecified|Erythema multiforme, unspecified +C0014742|T047|AB|L51.9|ICD10CM|Erythema multiforme, unspecified|Erythema multiforme, unspecified +C0014742|T047|PT|L51.9|ICD10|Erythema multiforme, unspecified|Erythema multiforme, unspecified +C0263323|T047|ET|L51.9|ICD10CM|Herpes iris|Herpes iris +C0014743|T047|PT|L52|ICD10|Erythema nodosum|Erythema nodosum +C0014743|T047|PT|L52|ICD10CM|Erythema nodosum|Erythema nodosum +C0014743|T047|AB|L52|ICD10CM|Erythema nodosum|Erythema nodosum +C0406536|T047|HT|L53|ICD10|Other erythematous conditions|Other erythematous conditions +C0406536|T047|AB|L53|ICD10CM|Other erythematous conditions|Other erythematous conditions +C0406536|T047|HT|L53|ICD10CM|Other erythematous conditions|Other erythematous conditions +C0152251|T047|PT|L53.0|ICD10CM|Toxic erythema|Toxic erythema +C0152251|T047|AB|L53.0|ICD10CM|Toxic erythema|Toxic erythema +C0152251|T047|PT|L53.0|ICD10|Toxic erythema|Toxic erythema +C0263358|T047|PT|L53.1|ICD10|Erythema annulare centrifugum|Erythema annulare centrifugum +C0263358|T047|PT|L53.1|ICD10CM|Erythema annulare centrifugum|Erythema annulare centrifugum +C0263358|T047|AB|L53.1|ICD10CM|Erythema annulare centrifugum|Erythema annulare centrifugum +C0085659|T047|PT|L53.2|ICD10|Erythema marginatum|Erythema marginatum +C0085659|T047|PT|L53.2|ICD10CM|Erythema marginatum|Erythema marginatum +C0085659|T047|AB|L53.2|ICD10CM|Erythema marginatum|Erythema marginatum +C0477493|T047|PT|L53.3|ICD10CM|Other chronic figurate erythema|Other chronic figurate erythema +C0477493|T047|AB|L53.3|ICD10CM|Other chronic figurate erythema|Other chronic figurate erythema +C0477493|T047|PT|L53.3|ICD10|Other chronic figurate erythema|Other chronic figurate erythema +C0029794|T047|PT|L53.8|ICD10CM|Other specified erythematous conditions|Other specified erythematous conditions +C0029794|T047|AB|L53.8|ICD10CM|Other specified erythematous conditions|Other specified erythematous conditions +C0029794|T047|PT|L53.8|ICD10|Other specified erythematous conditions|Other specified erythematous conditions +C0041834|T047|ET|L53.9|ICD10CM|Erythema NOS|Erythema NOS +C0041834|T047|PT|L53.9|ICD10CM|Erythematous condition, unspecified|Erythematous condition, unspecified +C0041834|T047|AB|L53.9|ICD10CM|Erythematous condition, unspecified|Erythematous condition, unspecified +C0041834|T047|PT|L53.9|ICD10|Erythematous condition, unspecified|Erythematous condition, unspecified +C0011606|T047|ET|L53.9|ICD10CM|Erythroderma NOS|Erythroderma NOS +C0694511|T047|HT|L54|ICD10|Erythema in diseases classified elsewhere|Erythema in diseases classified elsewhere +C0694511|T047|AB|L54|ICD10CM|Erythema in diseases classified elsewhere|Erythema in diseases classified elsewhere +C0694511|T047|PT|L54|ICD10CM|Erythema in diseases classified elsewhere|Erythema in diseases classified elsewhere +C0451910|T047|PT|L54.0|ICD10|Erythema marginatum in acute rheumatic fever|Erythema marginatum in acute rheumatic fever +C0477494|T047|PT|L54.8|ICD10|Erythema in other diseases classified elsewhere|Erythema in other diseases classified elsewhere +C0038814|T037|HT|L55|ICD10CM|Sunburn|Sunburn +C0038814|T037|AB|L55|ICD10CM|Sunburn|Sunburn +C0038814|T037|HT|L55|ICD10|Sunburn|Sunburn +C0477501|T037|HT|L55-L59|ICD10CM|Radiation-related disorders of the skin and subcutaneous tissue (L55-L59)|Radiation-related disorders of the skin and subcutaneous tissue (L55-L59) +C0477501|T037|HT|L55-L59.9|ICD10|Radiation-related disorders of the skin and subcutaneous tissue|Radiation-related disorders of the skin and subcutaneous tissue +C0451989|T037|PT|L55.0|ICD10|Sunburn of first degree|Sunburn of first degree +C0451989|T037|PT|L55.0|ICD10CM|Sunburn of first degree|Sunburn of first degree +C0451989|T037|AB|L55.0|ICD10CM|Sunburn of first degree|Sunburn of first degree +C0451998|T037|PT|L55.1|ICD10CM|Sunburn of second degree|Sunburn of second degree +C0451998|T037|AB|L55.1|ICD10CM|Sunburn of second degree|Sunburn of second degree +C0451998|T037|PT|L55.1|ICD10|Sunburn of second degree|Sunburn of second degree +C0452001|T037|PT|L55.2|ICD10|Sunburn of third degree|Sunburn of third degree +C0452001|T037|PT|L55.2|ICD10CM|Sunburn of third degree|Sunburn of third degree +C0452001|T037|AB|L55.2|ICD10CM|Sunburn of third degree|Sunburn of third degree +C0477496|T037|PT|L55.8|ICD10|Other sunburn|Other sunburn +C0038814|T037|PT|L55.9|ICD10|Sunburn, unspecified|Sunburn, unspecified +C0038814|T037|PT|L55.9|ICD10CM|Sunburn, unspecified|Sunburn, unspecified +C0038814|T037|AB|L55.9|ICD10CM|Sunburn, unspecified|Sunburn, unspecified +C0451911|T037|AB|L56|ICD10CM|Other acute skin changes due to ultraviolet radiation|Other acute skin changes due to ultraviolet radiation +C0451911|T037|HT|L56|ICD10CM|Other acute skin changes due to ultraviolet radiation|Other acute skin changes due to ultraviolet radiation +C0451911|T037|HT|L56|ICD10|Other acute skin changes due to ultraviolet radiation|Other acute skin changes due to ultraviolet radiation +C0406695|T037|PT|L56.0|ICD10|Drug phototoxic response|Drug phototoxic response +C0406695|T037|PT|L56.0|ICD10CM|Drug phototoxic response|Drug phototoxic response +C0406695|T037|AB|L56.0|ICD10CM|Drug phototoxic response|Drug phototoxic response +C0406696|T047|PT|L56.1|ICD10CM|Drug photoallergic response|Drug photoallergic response +C0406696|T047|AB|L56.1|ICD10CM|Drug photoallergic response|Drug photoallergic response +C0406696|T047|PT|L56.1|ICD10|Drug photoallergic response|Drug photoallergic response +C0452157|T047|PT|L56.2|ICD10|Photocontact dermatitis [berloque dermatitis]|Photocontact dermatitis [berloque dermatitis] +C0452157|T047|PT|L56.2|ICD10CM|Photocontact dermatitis [berloque dermatitis]|Photocontact dermatitis [berloque dermatitis] +C0452157|T047|AB|L56.2|ICD10CM|Photocontact dermatitis [berloque dermatitis]|Photocontact dermatitis [berloque dermatitis] +C0263610|T047|PT|L56.3|ICD10|Solar urticaria|Solar urticaria +C0263610|T047|PT|L56.3|ICD10CM|Solar urticaria|Solar urticaria +C0263610|T047|AB|L56.3|ICD10CM|Solar urticaria|Solar urticaria +C0031736|T047|PT|L56.4|ICD10CM|Polymorphous light eruption|Polymorphous light eruption +C0031736|T047|AB|L56.4|ICD10CM|Polymorphous light eruption|Polymorphous light eruption +C0031736|T047|PT|L56.4|ICD10|Polymorphous light eruption|Polymorphous light eruption +C0265970|T047|AB|L56.5|ICD10CM|Disseminated superficial actinic porokeratosis (DSAP)|Disseminated superficial actinic porokeratosis (DSAP) +C0265970|T047|PT|L56.5|ICD10CM|Disseminated superficial actinic porokeratosis (DSAP)|Disseminated superficial actinic porokeratosis (DSAP) +C0477497|T037|AB|L56.8|ICD10CM|Oth acute skin changes due to ultraviolet radiation|Oth acute skin changes due to ultraviolet radiation +C0477497|T037|PT|L56.8|ICD10CM|Other specified acute skin changes due to ultraviolet radiation|Other specified acute skin changes due to ultraviolet radiation +C0477497|T037|PT|L56.8|ICD10|Other specified acute skin changes due to ultraviolet radiation|Other specified acute skin changes due to ultraviolet radiation +C0477500|T037|PT|L56.9|ICD10|Acute skin change due to ultraviolet radiation, unspecified|Acute skin change due to ultraviolet radiation, unspecified +C0477500|T037|PT|L56.9|ICD10CM|Acute skin change due to ultraviolet radiation, unspecified|Acute skin change due to ultraviolet radiation, unspecified +C0477500|T037|AB|L56.9|ICD10CM|Acute skin change due to ultraviolet radiation, unspecified|Acute skin change due to ultraviolet radiation, unspecified +C0451912|T037|HT|L57|ICD10CM|Skin changes due to chronic exposure to nonionizing radiation|Skin changes due to chronic exposure to nonionizing radiation +C0451912|T037|HT|L57|ICD10|Skin changes due to chronic exposure to nonionizing radiation|Skin changes due to chronic exposure to nonionizing radiation +C0451912|T037|AB|L57|ICD10CM|Skin changes due to chronic expsr to nonionizing radiation|Skin changes due to chronic expsr to nonionizing radiation +C0022602|T191|PT|L57.0|ICD10|Actinic keratosis|Actinic keratosis +C0022602|T191|PT|L57.0|ICD10CM|Actinic keratosis|Actinic keratosis +C0022602|T191|AB|L57.0|ICD10CM|Actinic keratosis|Actinic keratosis +C0022602|T191|ET|L57.0|ICD10CM|Keratosis NOS|Keratosis NOS +C0022602|T191|ET|L57.0|ICD10CM|Senile keratosis|Senile keratosis +C0022602|T191|ET|L57.0|ICD10CM|Solar keratosis|Solar keratosis +C0282309|T047|PT|L57.1|ICD10|Actinic reticuloid|Actinic reticuloid +C0282309|T047|PT|L57.1|ICD10CM|Actinic reticuloid|Actinic reticuloid +C0282309|T047|AB|L57.1|ICD10CM|Actinic reticuloid|Actinic reticuloid +C0263416|T047|PT|L57.2|ICD10CM|Cutis rhomboidalis nuchae|Cutis rhomboidalis nuchae +C0263416|T047|AB|L57.2|ICD10CM|Cutis rhomboidalis nuchae|Cutis rhomboidalis nuchae +C0263416|T047|PT|L57.2|ICD10|Cutis rhomboidalis nuchae|Cutis rhomboidalis nuchae +C0263574|T047|PT|L57.3|ICD10|Poikiloderma of Civatte|Poikiloderma of Civatte +C0263574|T047|PT|L57.3|ICD10CM|Poikiloderma of Civatte|Poikiloderma of Civatte +C0263574|T047|AB|L57.3|ICD10CM|Poikiloderma of Civatte|Poikiloderma of Civatte +C0263413|T047|PT|L57.4|ICD10CM|Cutis laxa senilis|Cutis laxa senilis +C0263413|T047|AB|L57.4|ICD10CM|Cutis laxa senilis|Cutis laxa senilis +C0263413|T047|PT|L57.4|ICD10|Cutis laxa senilis|Cutis laxa senilis +C0263414|T047|ET|L57.4|ICD10CM|Elastosis senilis|Elastosis senilis +C0263608|T037|PT|L57.5|ICD10CM|Actinic granuloma|Actinic granuloma +C0263608|T037|AB|L57.5|ICD10CM|Actinic granuloma|Actinic granuloma +C0263608|T037|PT|L57.5|ICD10|Actinic granuloma|Actinic granuloma +C0263415|T037|ET|L57.8|ICD10CM|Farmer's skin|Farmer's skin +C0477498|T037|AB|L57.8|ICD10CM|Oth skin changes due to chr expsr to nonionizing radiation|Oth skin changes due to chr expsr to nonionizing radiation +C0477498|T037|PT|L57.8|ICD10CM|Other skin changes due to chronic exposure to nonionizing radiation|Other skin changes due to chronic exposure to nonionizing radiation +C0477498|T037|PT|L57.8|ICD10|Other skin changes due to chronic exposure to nonionizing radiation|Other skin changes due to chronic exposure to nonionizing radiation +C0263415|T037|ET|L57.8|ICD10CM|Sailor's skin|Sailor's skin +C1442835|T047|ET|L57.8|ICD10CM|Solar dermatitis|Solar dermatitis +C0451912|T037|AB|L57.9|ICD10CM|Skin changes due to chr expsr to nonionizing radiation, unsp|Skin changes due to chr expsr to nonionizing radiation, unsp +C0451912|T037|PT|L57.9|ICD10CM|Skin changes due to chronic exposure to nonionizing radiation, unspecified|Skin changes due to chronic exposure to nonionizing radiation, unspecified +C0451912|T037|PT|L57.9|ICD10|Skin changes due to chronic exposure to nonionizing radiation, unspecified|Skin changes due to chronic exposure to nonionizing radiation, unspecified +C0034561|T037|HT|L58|ICD10|Radiodermatitis|Radiodermatitis +C0034561|T037|HT|L58|ICD10CM|Radiodermatitis|Radiodermatitis +C0034561|T037|AB|L58|ICD10CM|Radiodermatitis|Radiodermatitis +C0263606|T047|PT|L58.0|ICD10|Acute radiodermatitis|Acute radiodermatitis +C0263606|T047|PT|L58.0|ICD10CM|Acute radiodermatitis|Acute radiodermatitis +C0263606|T047|AB|L58.0|ICD10CM|Acute radiodermatitis|Acute radiodermatitis +C0263607|T047|PT|L58.1|ICD10CM|Chronic radiodermatitis|Chronic radiodermatitis +C0263607|T047|AB|L58.1|ICD10CM|Chronic radiodermatitis|Chronic radiodermatitis +C0263607|T047|PT|L58.1|ICD10|Chronic radiodermatitis|Chronic radiodermatitis +C0034561|T037|PT|L58.9|ICD10|Radiodermatitis, unspecified|Radiodermatitis, unspecified +C0034561|T037|PT|L58.9|ICD10CM|Radiodermatitis, unspecified|Radiodermatitis, unspecified +C0034561|T037|AB|L58.9|ICD10CM|Radiodermatitis, unspecified|Radiodermatitis, unspecified +C0494852|T037|AB|L59|ICD10CM|Oth disorders of skin, subcu related to radiation|Oth disorders of skin, subcu related to radiation +C0494852|T037|HT|L59|ICD10CM|Other disorders of skin and subcutaneous tissue related to radiation|Other disorders of skin and subcutaneous tissue related to radiation +C0494852|T037|HT|L59|ICD10|Other disorders of skin and subcutaneous tissue related to radiation|Other disorders of skin and subcutaneous tissue related to radiation +C0494853|T047|PT|L59.0|ICD10|Erythema ab igne [dermatitis ab igne]|Erythema ab igne [dermatitis ab igne] +C0494853|T047|PT|L59.0|ICD10CM|Erythema ab igne [dermatitis ab igne]|Erythema ab igne [dermatitis ab igne] +C0494853|T047|AB|L59.0|ICD10CM|Erythema ab igne [dermatitis ab igne]|Erythema ab igne [dermatitis ab igne] +C0477499|T037|AB|L59.8|ICD10CM|Oth disrd of the skin, subcu related to radiation|Oth disrd of the skin, subcu related to radiation +C0477499|T037|PT|L59.8|ICD10|Other specified disorders of skin and subcutaneous tissue related to radiation|Other specified disorders of skin and subcutaneous tissue related to radiation +C0477499|T037|PT|L59.8|ICD10CM|Other specified disorders of the skin and subcutaneous tissue related to radiation|Other specified disorders of the skin and subcutaneous tissue related to radiation +C0477501|T037|PT|L59.9|ICD10|Disorder of skin and subcutaneous tissue related to radiation, unspecified|Disorder of skin and subcutaneous tissue related to radiation, unspecified +C0477501|T037|PT|L59.9|ICD10CM|Disorder of the skin and subcutaneous tissue related to radiation, unspecified|Disorder of the skin and subcutaneous tissue related to radiation, unspecified +C0477501|T037|AB|L59.9|ICD10CM|Disorder of the skin, subcu related to radiation, unsp|Disorder of the skin, subcu related to radiation, unsp +C0027339|T047|AB|L60|ICD10CM|Nail disorders|Nail disorders +C0027339|T047|HT|L60|ICD10CM|Nail disorders|Nail disorders +C0027339|T047|HT|L60|ICD10|Nail disorders|Nail disorders +C0037272|T047|HT|L60-L75|ICD10CM|Disorders of skin appendages (L60-L75)|Disorders of skin appendages (L60-L75) +C0037272|T047|HT|L60-L75.9|ICD10|Disorders of skin appendages|Disorders of skin appendages +C0027343|T033|PT|L60.0|ICD10|Ingrowing nail|Ingrowing nail +C0027343|T033|PT|L60.0|ICD10CM|Ingrowing nail|Ingrowing nail +C0027343|T033|AB|L60.0|ICD10CM|Ingrowing nail|Ingrowing nail +C0085661|T047|PT|L60.1|ICD10CM|Onycholysis|Onycholysis +C0085661|T047|AB|L60.1|ICD10CM|Onycholysis|Onycholysis +C0085661|T047|PT|L60.1|ICD10|Onycholysis|Onycholysis +C0263537|T047|PT|L60.2|ICD10|Onychogryphosis|Onychogryphosis +C0263537|T047|PT|L60.2|ICD10CM|Onychogryphosis|Onychogryphosis +C0263537|T047|AB|L60.2|ICD10CM|Onychogryphosis|Onychogryphosis +C0221260|T047|PT|L60.3|ICD10CM|Nail dystrophy|Nail dystrophy +C0221260|T047|AB|L60.3|ICD10CM|Nail dystrophy|Nail dystrophy +C0221260|T047|PT|L60.3|ICD10|Nail dystrophy|Nail dystrophy +C0263534|T184|PT|L60.4|ICD10|Beau's lines|Beau's lines +C0263534|T184|PT|L60.4|ICD10CM|Beau's lines|Beau's lines +C0263534|T184|AB|L60.4|ICD10CM|Beau's lines|Beau's lines +C0221348|T047|PT|L60.5|ICD10CM|Yellow nail syndrome|Yellow nail syndrome +C0221348|T047|AB|L60.5|ICD10CM|Yellow nail syndrome|Yellow nail syndrome +C0221348|T047|PT|L60.5|ICD10|Yellow nail syndrome|Yellow nail syndrome +C0477502|T047|PT|L60.8|ICD10CM|Other nail disorders|Other nail disorders +C0477502|T047|AB|L60.8|ICD10CM|Other nail disorders|Other nail disorders +C0477502|T047|PT|L60.8|ICD10|Other nail disorders|Other nail disorders +C0027339|T047|PT|L60.9|ICD10|Nail disorder, unspecified|Nail disorder, unspecified +C0027339|T047|PT|L60.9|ICD10CM|Nail disorder, unspecified|Nail disorder, unspecified +C0027339|T047|AB|L60.9|ICD10CM|Nail disorder, unspecified|Nail disorder, unspecified +C0694512|T047|HT|L62|ICD10|Nail disorders in diseases classified elsewhere|Nail disorders in diseases classified elsewhere +C0694512|T047|PT|L62|ICD10CM|Nail disorders in diseases classified elsewhere|Nail disorders in diseases classified elsewhere +C0694512|T047|AB|L62|ICD10CM|Nail disorders in diseases classified elsewhere|Nail disorders in diseases classified elsewhere +C0029411|T047|PT|L62.0|ICD10|Clubbed nail pachydermoperiostosis|Clubbed nail pachydermoperiostosis +C0477503|T047|PT|L62.8|ICD10|Nail disorders in other diseases classified elsewhere|Nail disorders in other diseases classified elsewhere +C0002171|T047|HT|L63|ICD10|Alopecia areata|Alopecia areata +C0002171|T047|HT|L63|ICD10CM|Alopecia areata|Alopecia areata +C0002171|T047|AB|L63|ICD10CM|Alopecia areata|Alopecia areata +C0263504|T047|PT|L63.0|ICD10|Alopecia (capitis) totalis|Alopecia (capitis) totalis +C0263504|T047|PT|L63.0|ICD10CM|Alopecia (capitis) totalis|Alopecia (capitis) totalis +C0263504|T047|AB|L63.0|ICD10CM|Alopecia (capitis) totalis|Alopecia (capitis) totalis +C0263505|T047|PT|L63.1|ICD10CM|Alopecia universalis|Alopecia universalis +C0263505|T047|AB|L63.1|ICD10CM|Alopecia universalis|Alopecia universalis +C0263505|T047|PT|L63.1|ICD10|Alopecia universalis|Alopecia universalis +C0263478|T047|PT|L63.2|ICD10|Ophiasis|Ophiasis +C0263478|T047|PT|L63.2|ICD10CM|Ophiasis|Ophiasis +C0263478|T047|AB|L63.2|ICD10CM|Ophiasis|Ophiasis +C0477504|T047|PT|L63.8|ICD10|Other alopecia areata|Other alopecia areata +C0477504|T047|PT|L63.8|ICD10CM|Other alopecia areata|Other alopecia areata +C0477504|T047|AB|L63.8|ICD10CM|Other alopecia areata|Other alopecia areata +C0002171|T047|PT|L63.9|ICD10CM|Alopecia areata, unspecified|Alopecia areata, unspecified +C0002171|T047|AB|L63.9|ICD10CM|Alopecia areata, unspecified|Alopecia areata, unspecified +C0002171|T047|PT|L63.9|ICD10|Alopecia areata, unspecified|Alopecia areata, unspecified +C0162311|T047|HT|L64|ICD10|Androgenic alopecia|Androgenic alopecia +C0162311|T047|HT|L64|ICD10CM|Androgenic alopecia|Androgenic alopecia +C0162311|T047|AB|L64|ICD10CM|Androgenic alopecia|Androgenic alopecia +C4083212|T047|ET|L64|ICD10CM|male-pattern baldness|male-pattern baldness +C0452142|T046|PT|L64.0|ICD10CM|Drug-induced androgenic alopecia|Drug-induced androgenic alopecia +C0452142|T046|AB|L64.0|ICD10CM|Drug-induced androgenic alopecia|Drug-induced androgenic alopecia +C0452142|T046|PT|L64.0|ICD10|Drug-induced androgenic alopecia|Drug-induced androgenic alopecia +C0477505|T047|PT|L64.8|ICD10|Other androgenic alopecia|Other androgenic alopecia +C0477505|T047|PT|L64.8|ICD10CM|Other androgenic alopecia|Other androgenic alopecia +C0477505|T047|AB|L64.8|ICD10CM|Other androgenic alopecia|Other androgenic alopecia +C0162311|T047|PT|L64.9|ICD10CM|Androgenic alopecia, unspecified|Androgenic alopecia, unspecified +C0162311|T047|AB|L64.9|ICD10CM|Androgenic alopecia, unspecified|Androgenic alopecia, unspecified +C0162311|T047|PT|L64.9|ICD10|Androgenic alopecia, unspecified|Androgenic alopecia, unspecified +C0494856|T047|AB|L65|ICD10CM|Other nonscarring hair loss|Other nonscarring hair loss +C0494856|T047|HT|L65|ICD10CM|Other nonscarring hair loss|Other nonscarring hair loss +C0494856|T047|HT|L65|ICD10|Other nonscarring hair loss|Other nonscarring hair loss +C0263518|T047|PT|L65.0|ICD10|Telogen effluvium|Telogen effluvium +C0263518|T047|PT|L65.0|ICD10CM|Telogen effluvium|Telogen effluvium +C0263518|T047|AB|L65.0|ICD10CM|Telogen effluvium|Telogen effluvium +C0263519|T047|PT|L65.1|ICD10CM|Anagen effluvium|Anagen effluvium +C0263519|T047|AB|L65.1|ICD10CM|Anagen effluvium|Anagen effluvium +C0263519|T047|PT|L65.1|ICD10|Anagen effluvium|Anagen effluvium +C0002173|T047|PT|L65.2|ICD10|Alopecia mucinosa|Alopecia mucinosa +C0002173|T047|PT|L65.2|ICD10CM|Alopecia mucinosa|Alopecia mucinosa +C0002173|T047|AB|L65.2|ICD10CM|Alopecia mucinosa|Alopecia mucinosa +C0477506|T047|PT|L65.8|ICD10|Other specified nonscarring hair loss|Other specified nonscarring hair loss +C0477506|T047|PT|L65.8|ICD10CM|Other specified nonscarring hair loss|Other specified nonscarring hair loss +C0477506|T047|AB|L65.8|ICD10CM|Other specified nonscarring hair loss|Other specified nonscarring hair loss +C0002170|T047|ET|L65.9|ICD10CM|Alopecia NOS|Alopecia NOS +C0494857|T046|PT|L65.9|ICD10|Nonscarring hair loss, unspecified|Nonscarring hair loss, unspecified +C0494857|T046|PT|L65.9|ICD10CM|Nonscarring hair loss, unspecified|Nonscarring hair loss, unspecified +C0494857|T046|AB|L65.9|ICD10CM|Nonscarring hair loss, unspecified|Nonscarring hair loss, unspecified +C2936846|T047|HT|L66|ICD10|Cicatricial alopecia [scarring hair loss]|Cicatricial alopecia [scarring hair loss] +C2936846|T047|HT|L66|ICD10CM|Cicatricial alopecia [scarring hair loss]|Cicatricial alopecia [scarring hair loss] +C2936846|T047|AB|L66|ICD10CM|Cicatricial alopecia [scarring hair loss]|Cicatricial alopecia [scarring hair loss] +C0086873|T047|PT|L66.0|ICD10CM|Pseudopelade|Pseudopelade +C0086873|T047|AB|L66.0|ICD10CM|Pseudopelade|Pseudopelade +C0086873|T047|PT|L66.0|ICD10|Pseudopelade|Pseudopelade +C0023645|T047|ET|L66.1|ICD10CM|Follicular lichen planus|Follicular lichen planus +C0023645|T047|PT|L66.1|ICD10CM|Lichen planopilaris|Lichen planopilaris +C0023645|T047|AB|L66.1|ICD10CM|Lichen planopilaris|Lichen planopilaris +C0023645|T047|PT|L66.1|ICD10|Lichen planopilaris|Lichen planopilaris +C2608043|T047|PT|L66.2|ICD10|Folliculitis decalvans|Folliculitis decalvans +C2608043|T047|PT|L66.2|ICD10CM|Folliculitis decalvans|Folliculitis decalvans +C2608043|T047|AB|L66.2|ICD10CM|Folliculitis decalvans|Folliculitis decalvans +C0263506|T047|PT|L66.3|ICD10CM|Perifolliculitis capitis abscedens|Perifolliculitis capitis abscedens +C0263506|T047|AB|L66.3|ICD10CM|Perifolliculitis capitis abscedens|Perifolliculitis capitis abscedens +C0263506|T047|PT|L66.3|ICD10|Perifolliculitis capitis abscedens|Perifolliculitis capitis abscedens +C0263429|T047|PT|L66.4|ICD10|Folliculitis ulerythematosa reticulata|Folliculitis ulerythematosa reticulata +C0263429|T047|PT|L66.4|ICD10CM|Folliculitis ulerythematosa reticulata|Folliculitis ulerythematosa reticulata +C0263429|T047|AB|L66.4|ICD10CM|Folliculitis ulerythematosa reticulata|Folliculitis ulerythematosa reticulata +C0477507|T047|PT|L66.8|ICD10CM|Other cicatricial alopecia|Other cicatricial alopecia +C0477507|T047|AB|L66.8|ICD10CM|Other cicatricial alopecia|Other cicatricial alopecia +C0477507|T047|PT|L66.8|ICD10|Other cicatricial alopecia|Other cicatricial alopecia +C2936846|T047|PT|L66.9|ICD10|Cicatricial alopecia, unspecified|Cicatricial alopecia, unspecified +C2936846|T047|PT|L66.9|ICD10CM|Cicatricial alopecia, unspecified|Cicatricial alopecia, unspecified +C2936846|T047|AB|L66.9|ICD10CM|Cicatricial alopecia, unspecified|Cicatricial alopecia, unspecified +C0494861|T033|HT|L67|ICD10AE|Hair color and hair shaft abnormalities|Hair color and hair shaft abnormalities +C0494861|T033|AB|L67|ICD10CM|Hair color and hair shaft abnormalities|Hair color and hair shaft abnormalities +C0494861|T033|HT|L67|ICD10CM|Hair color and hair shaft abnormalities|Hair color and hair shaft abnormalities +C0494861|T033|HT|L67|ICD10|Hair colour and hair shaft abnormalities|Hair colour and hair shaft abnormalities +C0263485|T047|PT|L67.0|ICD10CM|Trichorrhexis nodosa|Trichorrhexis nodosa +C0263485|T047|AB|L67.0|ICD10CM|Trichorrhexis nodosa|Trichorrhexis nodosa +C0263485|T047|PT|L67.0|ICD10|Trichorrhexis nodosa|Trichorrhexis nodosa +C0344312|T033|ET|L67.1|ICD10CM|Canities|Canities +C0263498|T033|ET|L67.1|ICD10CM|Greyness, hair (premature)|Greyness, hair (premature) +C0263500|T047|ET|L67.1|ICD10CM|Heterochromia of hair|Heterochromia of hair +C0263501|T047|ET|L67.1|ICD10CM|Poliosis circumscripta, acquired|Poliosis circumscripta, acquired +C0221262|T047|ET|L67.1|ICD10CM|Poliosis NOS|Poliosis NOS +C0157734|T033|PT|L67.1|ICD10AE|Variations in hair color|Variations in hair color +C0157734|T033|PT|L67.1|ICD10CM|Variations in hair color|Variations in hair color +C0157734|T033|AB|L67.1|ICD10CM|Variations in hair color|Variations in hair color +C0157734|T033|PT|L67.1|ICD10|Variations in hair colour|Variations in hair colour +C0263490|T047|ET|L67.8|ICD10CM|Fragilitas crinium|Fragilitas crinium +C0477508|T047|PT|L67.8|ICD10CM|Other hair color and hair shaft abnormalities|Other hair color and hair shaft abnormalities +C0477508|T047|AB|L67.8|ICD10CM|Other hair color and hair shaft abnormalities|Other hair color and hair shaft abnormalities +C0477508|T047|PT|L67.8|ICD10AE|Other hair color and hair shaft abnormalities|Other hair color and hair shaft abnormalities +C0477508|T047|PT|L67.8|ICD10|Other hair colour and hair shaft abnormalities|Other hair colour and hair shaft abnormalities +C0494861|T033|PT|L67.9|ICD10AE|Hair color and hair shaft abnormality, unspecified|Hair color and hair shaft abnormality, unspecified +C0494861|T033|PT|L67.9|ICD10CM|Hair color and hair shaft abnormality, unspecified|Hair color and hair shaft abnormality, unspecified +C0494861|T033|AB|L67.9|ICD10CM|Hair color and hair shaft abnormality, unspecified|Hair color and hair shaft abnormality, unspecified +C0494861|T033|PT|L67.9|ICD10|Hair colour and hair shaft abnormality, unspecified|Hair colour and hair shaft abnormality, unspecified +C0020555|T047|ET|L68|ICD10CM|excess hair|excess hair +C0020555|T047|HT|L68|ICD10CM|Hypertrichosis|Hypertrichosis +C0020555|T047|AB|L68|ICD10CM|Hypertrichosis|Hypertrichosis +C0020555|T047|HT|L68|ICD10|Hypertrichosis|Hypertrichosis +C0019572|T033|PT|L68.0|ICD10|Hirsutism|Hirsutism +C0019572|T033|PT|L68.0|ICD10CM|Hirsutism|Hirsutism +C0019572|T033|AB|L68.0|ICD10CM|Hirsutism|Hirsutism +C0343072|T047|PT|L68.1|ICD10|Acquired hypertrichosis lanuginosa|Acquired hypertrichosis lanuginosa +C0343072|T047|PT|L68.1|ICD10CM|Acquired hypertrichosis lanuginosa|Acquired hypertrichosis lanuginosa +C0343072|T047|AB|L68.1|ICD10CM|Acquired hypertrichosis lanuginosa|Acquired hypertrichosis lanuginosa +C0494862|T047|PT|L68.2|ICD10|Localized hypertrichosis|Localized hypertrichosis +C0494862|T047|PT|L68.2|ICD10CM|Localized hypertrichosis|Localized hypertrichosis +C0494862|T047|AB|L68.2|ICD10CM|Localized hypertrichosis|Localized hypertrichosis +C0020555|T047|PT|L68.3|ICD10CM|Polytrichia|Polytrichia +C0020555|T047|AB|L68.3|ICD10CM|Polytrichia|Polytrichia +C0020555|T047|PT|L68.3|ICD10|Polytrichia|Polytrichia +C0477509|T047|PT|L68.8|ICD10|Other hypertrichosis|Other hypertrichosis +C0477509|T047|PT|L68.8|ICD10CM|Other hypertrichosis|Other hypertrichosis +C0477509|T047|AB|L68.8|ICD10CM|Other hypertrichosis|Other hypertrichosis +C0020555|T047|PT|L68.9|ICD10|Hypertrichosis, unspecified|Hypertrichosis, unspecified +C0020555|T047|PT|L68.9|ICD10CM|Hypertrichosis, unspecified|Hypertrichosis, unspecified +C0020555|T047|AB|L68.9|ICD10CM|Hypertrichosis, unspecified|Hypertrichosis, unspecified +C0702166|T047|HT|L70|ICD10|Acne|Acne +C0702166|T047|HT|L70|ICD10CM|Acne|Acne +C0702166|T047|AB|L70|ICD10CM|Acne|Acne +C0001144|T047|PT|L70.0|ICD10CM|Acne vulgaris|Acne vulgaris +C0001144|T047|AB|L70.0|ICD10CM|Acne vulgaris|Acne vulgaris +C0001144|T047|PT|L70.0|ICD10|Acne vulgaris|Acne vulgaris +C0263442|T047|PT|L70.1|ICD10|Acne conglobata|Acne conglobata +C0263442|T047|PT|L70.1|ICD10CM|Acne conglobata|Acne conglobata +C0263442|T047|AB|L70.1|ICD10CM|Acne conglobata|Acne conglobata +C0311216|T047|ET|L70.2|ICD10CM|Acne necrotica miliaris|Acne necrotica miliaris +C0152249|T047|PT|L70.2|ICD10|Acne varioliformis|Acne varioliformis +C0152249|T047|PT|L70.2|ICD10CM|Acne varioliformis|Acne varioliformis +C0152249|T047|AB|L70.2|ICD10CM|Acne varioliformis|Acne varioliformis +C0494863|T047|PT|L70.3|ICD10CM|Acne tropica|Acne tropica +C0494863|T047|AB|L70.3|ICD10CM|Acne tropica|Acne tropica +C0494863|T047|PT|L70.3|ICD10|Acne tropica|Acne tropica +C0263437|T047|PT|L70.4|ICD10CM|Infantile acne|Infantile acne +C0263437|T047|AB|L70.4|ICD10CM|Infantile acne|Infantile acne +C0263437|T047|PT|L70.4|ICD10|Infantile acne|Infantile acne +C0343078|T047|AB|L70.5|ICD10CM|Acne excoriee|Acne excoriee +C0343078|T047|PT|L70.5|ICD10CM|Acné excoriée|Acné excoriée +C0343078|T047|ET|L70.5|ICD10CM|Acné excoriée des jeunes filles|Acné excoriée des jeunes filles +C0343078|T047|PT|L70.5|ICD10|Acne excoriee des jeunes filles|Acne excoriee des jeunes filles +C2888182|T047|ET|L70.5|ICD10CM|Picker's acne|Picker's acne +C0029485|T047|PT|L70.8|ICD10|Other acne|Other acne +C0029485|T047|PT|L70.8|ICD10CM|Other acne|Other acne +C0029485|T047|AB|L70.8|ICD10CM|Other acne|Other acne +C0702166|T047|PT|L70.9|ICD10|Acne, unspecified|Acne, unspecified +C0702166|T047|PT|L70.9|ICD10CM|Acne, unspecified|Acne, unspecified +C0702166|T047|AB|L70.9|ICD10CM|Acne, unspecified|Acne, unspecified +C0035854|T047|HT|L71|ICD10CM|Rosacea|Rosacea +C0035854|T047|AB|L71|ICD10CM|Rosacea|Rosacea +C0035854|T047|HT|L71|ICD10|Rosacea|Rosacea +C0263449|T047|PT|L71.0|ICD10|Perioral dermatitis|Perioral dermatitis +C0263449|T047|PT|L71.0|ICD10CM|Perioral dermatitis|Perioral dermatitis +C0263449|T047|AB|L71.0|ICD10CM|Perioral dermatitis|Perioral dermatitis +C0035466|T047|PT|L71.1|ICD10|Rhinophyma|Rhinophyma +C0035466|T047|PT|L71.1|ICD10CM|Rhinophyma|Rhinophyma +C0035466|T047|AB|L71.1|ICD10CM|Rhinophyma|Rhinophyma +C0477510|T047|PT|L71.8|ICD10CM|Other rosacea|Other rosacea +C0477510|T047|AB|L71.8|ICD10CM|Other rosacea|Other rosacea +C0477510|T047|PT|L71.8|ICD10|Other rosacea|Other rosacea +C0035854|T047|PT|L71.9|ICD10CM|Rosacea, unspecified|Rosacea, unspecified +C0035854|T047|AB|L71.9|ICD10CM|Rosacea, unspecified|Rosacea, unspecified +C0035854|T047|PT|L71.9|ICD10|Rosacea, unspecified|Rosacea, unspecified +C0477515|T020|HT|L72|ICD10|Follicular cysts of skin and subcutaneous tissue|Follicular cysts of skin and subcutaneous tissue +C0477515|T020|HT|L72|ICD10CM|Follicular cysts of skin and subcutaneous tissue|Follicular cysts of skin and subcutaneous tissue +C0477515|T020|AB|L72|ICD10CM|Follicular cysts of skin and subcutaneous tissue|Follicular cysts of skin and subcutaneous tissue +C0014511|T190|PT|L72.0|ICD10|Epidermal cyst|Epidermal cyst +C0014511|T190|PT|L72.0|ICD10CM|Epidermal cyst|Epidermal cyst +C0014511|T190|AB|L72.0|ICD10CM|Epidermal cyst|Epidermal cyst +C3264463|T020|AB|L72.1|ICD10CM|Pilar and trichodermal cyst|Pilar and trichodermal cyst +C3264463|T020|HT|L72.1|ICD10CM|Pilar and trichodermal cyst|Pilar and trichodermal cyst +C2266788|T047|PT|L72.1|ICD10|Trichilemmal cyst|Trichilemmal cyst +C0086809|T190|AB|L72.11|ICD10CM|Pilar cyst|Pilar cyst +C0086809|T190|PT|L72.11|ICD10CM|Pilar cyst|Pilar cyst +C0345992|T191|ET|L72.12|ICD10CM|Trichilemmal (proliferating) cyst|Trichilemmal (proliferating) cyst +C1394443|T020|AB|L72.12|ICD10CM|Trichodermal cyst|Trichodermal cyst +C1394443|T020|PT|L72.12|ICD10CM|Trichodermal cyst|Trichodermal cyst +C0259771|T191|PT|L72.2|ICD10CM|Steatocystoma multiplex|Steatocystoma multiplex +C0259771|T191|AB|L72.2|ICD10CM|Steatocystoma multiplex|Steatocystoma multiplex +C0259771|T191|PT|L72.2|ICD10|Steatocystoma multiplex|Steatocystoma multiplex +C0014511|T190|PT|L72.3|ICD10CM|Sebaceous cyst|Sebaceous cyst +C0014511|T190|AB|L72.3|ICD10CM|Sebaceous cyst|Sebaceous cyst +C0477511|T020|PT|L72.8|ICD10|Other follicular cysts of skin and subcutaneous tissue|Other follicular cysts of skin and subcutaneous tissue +C0477511|T020|AB|L72.8|ICD10CM|Other follicular cysts of the skin and subcutaneous tissue|Other follicular cysts of the skin and subcutaneous tissue +C0477511|T020|PT|L72.8|ICD10CM|Other follicular cysts of the skin and subcutaneous tissue|Other follicular cysts of the skin and subcutaneous tissue +C0477515|T020|PT|L72.9|ICD10|Follicular cyst of skin and subcutaneous tissue, unspecified|Follicular cyst of skin and subcutaneous tissue, unspecified +C0477515|T020|AB|L72.9|ICD10CM|Follicular cyst of the skin and subcutaneous tissue, unsp|Follicular cyst of the skin and subcutaneous tissue, unsp +C0477515|T020|PT|L72.9|ICD10CM|Follicular cyst of the skin and subcutaneous tissue, unspecified|Follicular cyst of the skin and subcutaneous tissue, unspecified +C0494864|T047|HT|L73|ICD10|Other follicular disorders|Other follicular disorders +C0494864|T047|AB|L73|ICD10CM|Other follicular disorders|Other follicular disorders +C0494864|T047|HT|L73|ICD10CM|Other follicular disorders|Other follicular disorders +C0001145|T047|PT|L73.0|ICD10CM|Acne keloid|Acne keloid +C0001145|T047|AB|L73.0|ICD10CM|Acne keloid|Acne keloid +C0001145|T047|PT|L73.0|ICD10|Acne keloid|Acne keloid +C0549150|T047|PT|L73.1|ICD10CM|Pseudofolliculitis barbae|Pseudofolliculitis barbae +C0549150|T047|AB|L73.1|ICD10CM|Pseudofolliculitis barbae|Pseudofolliculitis barbae +C0549150|T047|PT|L73.1|ICD10|Pseudofolliculitis barbae|Pseudofolliculitis barbae +C0162836|T047|PT|L73.2|ICD10|Hidradenitis suppurativa|Hidradenitis suppurativa +C0162836|T047|PT|L73.2|ICD10CM|Hidradenitis suppurativa|Hidradenitis suppurativa +C0162836|T047|AB|L73.2|ICD10CM|Hidradenitis suppurativa|Hidradenitis suppurativa +C0477512|T047|PT|L73.8|ICD10CM|Other specified follicular disorders|Other specified follicular disorders +C0477512|T047|AB|L73.8|ICD10CM|Other specified follicular disorders|Other specified follicular disorders +C0477512|T047|PT|L73.8|ICD10|Other specified follicular disorders|Other specified follicular disorders +C2349994|T047|ET|L73.8|ICD10CM|Sycosis barbae|Sycosis barbae +C0494865|T047|PT|L73.9|ICD10|Follicular disorder, unspecified|Follicular disorder, unspecified +C0494865|T047|PT|L73.9|ICD10CM|Follicular disorder, unspecified|Follicular disorder, unspecified +C0494865|T047|AB|L73.9|ICD10CM|Follicular disorder, unspecified|Follicular disorder, unspecified +C0038986|T047|HT|L74|ICD10|Eccrine sweat disorders|Eccrine sweat disorders +C0038986|T047|AB|L74|ICD10CM|Eccrine sweat disorders|Eccrine sweat disorders +C0038986|T047|HT|L74|ICD10CM|Eccrine sweat disorders|Eccrine sweat disorders +C0162423|T047|PT|L74.0|ICD10CM|Miliaria rubra|Miliaria rubra +C0162423|T047|AB|L74.0|ICD10CM|Miliaria rubra|Miliaria rubra +C0162423|T047|PT|L74.0|ICD10|Miliaria rubra|Miliaria rubra +C3241961|T047|PT|L74.1|ICD10|Miliaria crystallina|Miliaria crystallina +C3241961|T047|PT|L74.1|ICD10CM|Miliaria crystallina|Miliaria crystallina +C3241961|T047|AB|L74.1|ICD10CM|Miliaria crystallina|Miliaria crystallina +C0263468|T047|PT|L74.2|ICD10|Miliaria profunda|Miliaria profunda +C0263468|T047|PT|L74.2|ICD10CM|Miliaria profunda|Miliaria profunda +C0263468|T047|AB|L74.2|ICD10CM|Miliaria profunda|Miliaria profunda +C0162423|T047|ET|L74.2|ICD10CM|Miliaria tropicalis|Miliaria tropicalis +C0026113|T047|PT|L74.3|ICD10CM|Miliaria, unspecified|Miliaria, unspecified +C0026113|T047|AB|L74.3|ICD10CM|Miliaria, unspecified|Miliaria, unspecified +C0026113|T047|PT|L74.3|ICD10|Miliaria, unspecified|Miliaria, unspecified +C0003028|T047|PT|L74.4|ICD10|Anhidrosis|Anhidrosis +C0003028|T047|PT|L74.4|ICD10CM|Anhidrosis|Anhidrosis +C0003028|T047|AB|L74.4|ICD10CM|Anhidrosis|Anhidrosis +C0020620|T047|ET|L74.4|ICD10CM|Hypohidrosis|Hypohidrosis +C0476475|T033|AB|L74.5|ICD10CM|Focal hyperhidrosis|Focal hyperhidrosis +C0476475|T033|HT|L74.5|ICD10CM|Focal hyperhidrosis|Focal hyperhidrosis +C1456132|T047|HT|L74.51|ICD10CM|Primary focal hyperhidrosis|Primary focal hyperhidrosis +C1456132|T047|AB|L74.51|ICD10CM|Primary focal hyperhidrosis|Primary focal hyperhidrosis +C2888183|T047|AB|L74.510|ICD10CM|Primary focal hyperhidrosis, axilla|Primary focal hyperhidrosis, axilla +C2888183|T047|PT|L74.510|ICD10CM|Primary focal hyperhidrosis, axilla|Primary focal hyperhidrosis, axilla +C2888184|T047|AB|L74.511|ICD10CM|Primary focal hyperhidrosis, face|Primary focal hyperhidrosis, face +C2888184|T047|PT|L74.511|ICD10CM|Primary focal hyperhidrosis, face|Primary focal hyperhidrosis, face +C2888185|T047|AB|L74.512|ICD10CM|Primary focal hyperhidrosis, palms|Primary focal hyperhidrosis, palms +C2888185|T047|PT|L74.512|ICD10CM|Primary focal hyperhidrosis, palms|Primary focal hyperhidrosis, palms +C2888186|T047|AB|L74.513|ICD10CM|Primary focal hyperhidrosis, soles|Primary focal hyperhidrosis, soles +C2888186|T047|PT|L74.513|ICD10CM|Primary focal hyperhidrosis, soles|Primary focal hyperhidrosis, soles +C1456132|T047|AB|L74.519|ICD10CM|Primary focal hyperhidrosis, unspecified|Primary focal hyperhidrosis, unspecified +C1456132|T047|PT|L74.519|ICD10CM|Primary focal hyperhidrosis, unspecified|Primary focal hyperhidrosis, unspecified +C0162473|T047|ET|L74.52|ICD10CM|Frey's syndrome|Frey's syndrome +C1456136|T047|PT|L74.52|ICD10CM|Secondary focal hyperhidrosis|Secondary focal hyperhidrosis +C1456136|T047|AB|L74.52|ICD10CM|Secondary focal hyperhidrosis|Secondary focal hyperhidrosis +C0477513|T047|PT|L74.8|ICD10CM|Other eccrine sweat disorders|Other eccrine sweat disorders +C0477513|T047|AB|L74.8|ICD10CM|Other eccrine sweat disorders|Other eccrine sweat disorders +C0477513|T047|PT|L74.8|ICD10|Other eccrine sweat disorders|Other eccrine sweat disorders +C0038986|T047|PT|L74.9|ICD10CM|Eccrine sweat disorder, unspecified|Eccrine sweat disorder, unspecified +C0038986|T047|AB|L74.9|ICD10CM|Eccrine sweat disorder, unspecified|Eccrine sweat disorder, unspecified +C0038986|T047|PT|L74.9|ICD10|Eccrine sweat disorder, unspecified|Eccrine sweat disorder, unspecified +C0038986|T047|ET|L74.9|ICD10CM|Sweat gland disorder NOS|Sweat gland disorder NOS +C0477516|T047|HT|L75|ICD10|Apocrine sweat disorders|Apocrine sweat disorders +C0477516|T047|AB|L75|ICD10CM|Apocrine sweat disorders|Apocrine sweat disorders +C0477516|T047|HT|L75|ICD10CM|Apocrine sweat disorders|Apocrine sweat disorders +C0263472|T047|PT|L75.0|ICD10CM|Bromhidrosis|Bromhidrosis +C0263472|T047|AB|L75.0|ICD10CM|Bromhidrosis|Bromhidrosis +C0263472|T047|PT|L75.0|ICD10|Bromhidrosis|Bromhidrosis +C0263473|T033|PT|L75.1|ICD10|Chromhidrosis|Chromhidrosis +C0263473|T033|PT|L75.1|ICD10CM|Chromhidrosis|Chromhidrosis +C0263473|T033|AB|L75.1|ICD10CM|Chromhidrosis|Chromhidrosis +C0016632|T047|PT|L75.2|ICD10CM|Apocrine miliaria|Apocrine miliaria +C0016632|T047|AB|L75.2|ICD10CM|Apocrine miliaria|Apocrine miliaria +C0016632|T047|PT|L75.2|ICD10|Apocrine miliaria|Apocrine miliaria +C0016632|T047|ET|L75.2|ICD10CM|Fox-Fordyce disease|Fox-Fordyce disease +C0477514|T047|PT|L75.8|ICD10CM|Other apocrine sweat disorders|Other apocrine sweat disorders +C0477514|T047|AB|L75.8|ICD10CM|Other apocrine sweat disorders|Other apocrine sweat disorders +C0477514|T047|PT|L75.8|ICD10|Other apocrine sweat disorders|Other apocrine sweat disorders +C0477516|T047|PT|L75.9|ICD10|Apocrine sweat disorder, unspecified|Apocrine sweat disorder, unspecified +C0477516|T047|PT|L75.9|ICD10CM|Apocrine sweat disorder, unspecified|Apocrine sweat disorder, unspecified +C0477516|T047|AB|L75.9|ICD10CM|Apocrine sweat disorder, unspecified|Apocrine sweat disorder, unspecified +C2888187|T046|AB|L76|ICD10CM|Intraop and postprocedural complications of skin, subcu|Intraop and postprocedural complications of skin, subcu +C2888187|T046|HT|L76|ICD10CM|Intraoperative and postprocedural complications of skin and subcutaneous tissue|Intraoperative and postprocedural complications of skin and subcutaneous tissue +C2888187|T046|HT|L76-L76|ICD10CM|Intraoperative and postprocedural complications of skin and subcutaneous tissue (L76)|Intraoperative and postprocedural complications of skin and subcutaneous tissue (L76) +C2888188|T046|AB|L76.0|ICD10CM|Intraop hemor/hemtom of skin, subcu complicating a procedure|Intraop hemor/hemtom of skin, subcu complicating a procedure +C2888188|T046|HT|L76.0|ICD10CM|Intraoperative hemorrhage and hematoma of skin and subcutaneous tissue complicating a procedure|Intraoperative hemorrhage and hematoma of skin and subcutaneous tissue complicating a procedure +C2888189|T046|AB|L76.01|ICD10CM|Intraop hemor/hemtom of skin, subcu comp a dermatologic proc|Intraop hemor/hemtom of skin, subcu comp a dermatologic proc +C2888190|T046|AB|L76.02|ICD10CM|Intraop hemor/hemtom of skin, subcu comp oth procedure|Intraop hemor/hemtom of skin, subcu comp oth procedure +C2888190|T046|PT|L76.02|ICD10CM|Intraoperative hemorrhage and hematoma of skin and subcutaneous tissue complicating other procedure|Intraoperative hemorrhage and hematoma of skin and subcutaneous tissue complicating other procedure +C2888191|T037|AB|L76.1|ICD10CM|Accidental pnctr & lac of skin, subcu during a procedure|Accidental pnctr & lac of skin, subcu during a procedure +C2888191|T037|HT|L76.1|ICD10CM|Accidental puncture and laceration of skin and subcutaneous tissue during a procedure|Accidental puncture and laceration of skin and subcutaneous tissue during a procedure +C2888192|T037|AB|L76.11|ICD10CM|Acc pnctr & lac of skin, subcu during a dermatologic proc|Acc pnctr & lac of skin, subcu during a dermatologic proc +C2888192|T037|PT|L76.11|ICD10CM|Accidental puncture and laceration of skin and subcutaneous tissue during a dermatologic procedure|Accidental puncture and laceration of skin and subcutaneous tissue during a dermatologic procedure +C2888193|T037|AB|L76.12|ICD10CM|Accidental pnctr & lac of skin, subcu during oth procedure|Accidental pnctr & lac of skin, subcu during oth procedure +C2888193|T037|PT|L76.12|ICD10CM|Accidental puncture and laceration of skin and subcutaneous tissue during other procedure|Accidental puncture and laceration of skin and subcutaneous tissue during other procedure +C3646689|T046|AB|L76.2|ICD10CM|Postproc hemorrhage of skin, subcu following a procedure|Postproc hemorrhage of skin, subcu following a procedure +C3646689|T046|HT|L76.2|ICD10CM|Postprocedural hemorrhage of skin and subcutaneous tissue following a procedure|Postprocedural hemorrhage of skin and subcutaneous tissue following a procedure +C4268676|T046|AB|L76.21|ICD10CM|Postproc hemor of skin, subcu fol a dermatologic procedure|Postproc hemor of skin, subcu fol a dermatologic procedure +C4268676|T046|PT|L76.21|ICD10CM|Postprocedural hemorrhage of skin and subcutaneous tissue following a dermatologic procedure|Postprocedural hemorrhage of skin and subcutaneous tissue following a dermatologic procedure +C4268677|T046|AB|L76.22|ICD10CM|Postproc hemorrhage of skin, subcu following other procedure|Postproc hemorrhage of skin, subcu following other procedure +C4268677|T046|PT|L76.22|ICD10CM|Postprocedural hemorrhage of skin and subcutaneous tissue following other procedure|Postprocedural hemorrhage of skin and subcutaneous tissue following other procedure +C4268678|T046|AB|L76.3|ICD10CM|Postproc hematoma and seroma of skin, subcu fol a procedure|Postproc hematoma and seroma of skin, subcu fol a procedure +C4268678|T046|HT|L76.3|ICD10CM|Postprocedural hematoma and seroma of skin and subcutaneous tissue following a procedure|Postprocedural hematoma and seroma of skin and subcutaneous tissue following a procedure +C4268679|T046|AB|L76.31|ICD10CM|Postproc hematoma of skin, subcu fol a dermatologic proc|Postproc hematoma of skin, subcu fol a dermatologic proc +C4268679|T046|PT|L76.31|ICD10CM|Postprocedural hematoma of skin and subcutaneous tissue following a dermatologic procedure|Postprocedural hematoma of skin and subcutaneous tissue following a dermatologic procedure +C4268680|T046|AB|L76.32|ICD10CM|Postproc hematoma of skin, subcu following other procedure|Postproc hematoma of skin, subcu following other procedure +C4268680|T046|PT|L76.32|ICD10CM|Postprocedural hematoma of skin and subcutaneous tissue following other procedure|Postprocedural hematoma of skin and subcutaneous tissue following other procedure +C4268681|T046|AB|L76.33|ICD10CM|Postproc seroma of skin, subcu fol a dermatologic procedure|Postproc seroma of skin, subcu fol a dermatologic procedure +C4268681|T046|PT|L76.33|ICD10CM|Postprocedural seroma of skin and subcutaneous tissue following a dermatologic procedure|Postprocedural seroma of skin and subcutaneous tissue following a dermatologic procedure +C4268682|T046|AB|L76.34|ICD10CM|Postproc seroma of skin, subcu following other procedure|Postproc seroma of skin, subcu following other procedure +C4268682|T046|PT|L76.34|ICD10CM|Postprocedural seroma of skin and subcutaneous tissue following other procedure|Postprocedural seroma of skin and subcutaneous tissue following other procedure +C2888197|T046|AB|L76.8|ICD10CM|Oth intraop and postprocedural complications of skin, subcu|Oth intraop and postprocedural complications of skin, subcu +C2888197|T046|HT|L76.8|ICD10CM|Other intraoperative and postprocedural complications of skin and subcutaneous tissue|Other intraoperative and postprocedural complications of skin and subcutaneous tissue +C2888198|T046|AB|L76.81|ICD10CM|Oth intraoperative complications of skin, subcu|Oth intraoperative complications of skin, subcu +C2888198|T046|PT|L76.81|ICD10CM|Other intraoperative complications of skin and subcutaneous tissue|Other intraoperative complications of skin and subcutaneous tissue +C2888199|T046|AB|L76.82|ICD10CM|Oth postprocedural complications of skin, subcu|Oth postprocedural complications of skin, subcu +C2888199|T046|PT|L76.82|ICD10CM|Other postprocedural complications of skin and subcutaneous tissue|Other postprocedural complications of skin and subcutaneous tissue +C0042900|T047|PT|L80|ICD10CM|Vitiligo|Vitiligo +C0042900|T047|AB|L80|ICD10CM|Vitiligo|Vitiligo +C0042900|T047|PT|L80|ICD10|Vitiligo|Vitiligo +C0178301|T047|HT|L80-L99|ICD10CM|Other disorders of the skin and subcutaneous tissue (L80-L99)|Other disorders of the skin and subcutaneous tissue (L80-L99) +C0178301|T047|HT|L80-L99.9|ICD10|Other disorders of the skin and subcutaneous tissue|Other disorders of the skin and subcutaneous tissue +C0494869|T046|HT|L81|ICD10|Other disorders of pigmentation|Other disorders of pigmentation +C0494869|T046|AB|L81|ICD10CM|Other disorders of pigmentation|Other disorders of pigmentation +C0494869|T046|HT|L81|ICD10CM|Other disorders of pigmentation|Other disorders of pigmentation +C0333616|T046|PT|L81.0|ICD10CM|Postinflammatory hyperpigmentation|Postinflammatory hyperpigmentation +C0333616|T046|AB|L81.0|ICD10CM|Postinflammatory hyperpigmentation|Postinflammatory hyperpigmentation +C0333616|T046|PT|L81.0|ICD10|Postinflammatory hyperpigmentation|Postinflammatory hyperpigmentation +C0025218|T047|PT|L81.1|ICD10|Chloasma|Chloasma +C0025218|T047|PT|L81.1|ICD10CM|Chloasma|Chloasma +C0025218|T047|AB|L81.1|ICD10CM|Chloasma|Chloasma +C0016689|T033|PT|L81.2|ICD10CM|Freckles|Freckles +C0016689|T033|AB|L81.2|ICD10CM|Freckles|Freckles +C0016689|T033|PT|L81.2|ICD10|Freckles|Freckles +C0221263|T033|PT|L81.3|ICD10|Cafe au lait spots|Cafe au lait spots +C0221263|T033|PT|L81.3|ICD10CM|Café au lait spots|Café au lait spots +C0221263|T033|AB|L81.3|ICD10CM|Cafe au lait spots|Cafe au lait spots +C0023321|T047|ET|L81.4|ICD10CM|Lentigo|Lentigo +C0494870|T046|PT|L81.4|ICD10CM|Other melanin hyperpigmentation|Other melanin hyperpigmentation +C0494870|T046|AB|L81.4|ICD10CM|Other melanin hyperpigmentation|Other melanin hyperpigmentation +C0494870|T046|PT|L81.4|ICD10|Other melanin hyperpigmentation|Other melanin hyperpigmentation +C0494871|T046|PT|L81.5|ICD10|Leukoderma, not elsewhere classified|Leukoderma, not elsewhere classified +C0494871|T046|PT|L81.5|ICD10CM|Leukoderma, not elsewhere classified|Leukoderma, not elsewhere classified +C0494871|T046|AB|L81.5|ICD10CM|Leukoderma, not elsewhere classified|Leukoderma, not elsewhere classified +C0477517|T046|PT|L81.6|ICD10CM|Other disorders of diminished melanin formation|Other disorders of diminished melanin formation +C0477517|T046|AB|L81.6|ICD10CM|Other disorders of diminished melanin formation|Other disorders of diminished melanin formation +C0477517|T046|PT|L81.6|ICD10|Other disorders of diminished melanin formation|Other disorders of diminished melanin formation +C0263637|T191|ET|L81.7|ICD10CM|Angioma serpiginosum|Angioma serpiginosum +C1405867|T047|PT|L81.7|ICD10|Pigmented purpuric dermatosis|Pigmented purpuric dermatosis +C1405867|T047|PT|L81.7|ICD10CM|Pigmented purpuric dermatosis|Pigmented purpuric dermatosis +C1405867|T047|AB|L81.7|ICD10CM|Pigmented purpuric dermatosis|Pigmented purpuric dermatosis +C1400373|T047|ET|L81.8|ICD10CM|Iron pigmentation|Iron pigmentation +C0477518|T047|PT|L81.8|ICD10|Other specified disorders of pigmentation|Other specified disorders of pigmentation +C0477518|T047|PT|L81.8|ICD10CM|Other specified disorders of pigmentation|Other specified disorders of pigmentation +C0477518|T047|AB|L81.8|ICD10CM|Other specified disorders of pigmentation|Other specified disorders of pigmentation +C1405022|T047|ET|L81.8|ICD10CM|Tattoo pigmentation|Tattoo pigmentation +C0549567|T047|PT|L81.9|ICD10|Disorder of pigmentation, unspecified|Disorder of pigmentation, unspecified +C0549567|T047|PT|L81.9|ICD10CM|Disorder of pigmentation, unspecified|Disorder of pigmentation, unspecified +C0549567|T047|AB|L81.9|ICD10CM|Disorder of pigmentation, unspecified|Disorder of pigmentation, unspecified +C0022603|T191|ET|L82|ICD10CM|basal cell papilloma|basal cell papilloma +C0011645|T047|ET|L82|ICD10CM|dermatosis papulosa nigra|dermatosis papulosa nigra +C4290219|T047|ET|L82|ICD10CM|Leser-Trélat disease|Leser-Trélat disease +C0022603|T191|HT|L82|ICD10CM|Seborrheic keratosis|Seborrheic keratosis +C0022603|T191|AB|L82|ICD10CM|Seborrheic keratosis|Seborrheic keratosis +C0022603|T191|PT|L82|ICD10AE|Seborrheic keratosis|Seborrheic keratosis +C0022603|T191|PT|L82|ICD10|Seborrhoeic keratosis|Seborrhoeic keratosis +C0376117|T191|PT|L82.0|ICD10CM|Inflamed seborrheic keratosis|Inflamed seborrheic keratosis +C0376117|T191|AB|L82.0|ICD10CM|Inflamed seborrheic keratosis|Inflamed seborrheic keratosis +C0375488|T047|AB|L82.1|ICD10CM|Other seborrheic keratosis|Other seborrheic keratosis +C0375488|T047|PT|L82.1|ICD10CM|Other seborrheic keratosis|Other seborrheic keratosis +C0022603|T191|ET|L82.1|ICD10CM|Seborrheic keratosis NOS|Seborrheic keratosis NOS +C0000889|T047|PT|L83|ICD10CM|Acanthosis nigricans|Acanthosis nigricans +C0000889|T047|AB|L83|ICD10CM|Acanthosis nigricans|Acanthosis nigricans +C0000889|T047|PT|L83|ICD10|Acanthosis nigricans|Acanthosis nigricans +C0263385|T047|ET|L83|ICD10CM|Confluent and reticulated papillomatosis|Confluent and reticulated papillomatosis +C0376154|T020|ET|L84|ICD10CM|Callus|Callus +C0263631|T020|ET|L84|ICD10CM|Clavus|Clavus +C0157726|T020|PT|L84|ICD10|Corns and callosities|Corns and callosities +C0157726|T020|PT|L84|ICD10CM|Corns and callosities|Corns and callosities +C0157726|T020|AB|L84|ICD10CM|Corns and callosities|Corns and callosities +C0494873|T046|AB|L85|ICD10CM|Other epidermal thickening|Other epidermal thickening +C0494873|T046|HT|L85|ICD10CM|Other epidermal thickening|Other epidermal thickening +C0494873|T046|HT|L85|ICD10|Other epidermal thickening|Other epidermal thickening +C0263386|T033|PT|L85.0|ICD10CM|Acquired ichthyosis|Acquired ichthyosis +C0263386|T033|AB|L85.0|ICD10CM|Acquired ichthyosis|Acquired ichthyosis +C0263386|T033|PT|L85.0|ICD10|Acquired ichthyosis|Acquired ichthyosis +C1275587|T020|PT|L85.1|ICD10|Acquired keratosis [keratoderma] palmaris et plantaris|Acquired keratosis [keratoderma] palmaris et plantaris +C1275587|T020|PT|L85.1|ICD10CM|Acquired keratosis [keratoderma] palmaris et plantaris|Acquired keratosis [keratoderma] palmaris et plantaris +C1275587|T020|AB|L85.1|ICD10CM|Acquired keratosis [keratoderma] palmaris et plantaris|Acquired keratosis [keratoderma] palmaris et plantaris +C0022596|T047|PT|L85.2|ICD10CM|Keratosis punctata (palmaris et plantaris)|Keratosis punctata (palmaris et plantaris) +C0022596|T047|AB|L85.2|ICD10CM|Keratosis punctata (palmaris et plantaris)|Keratosis punctata (palmaris et plantaris) +C0022596|T047|PT|L85.2|ICD10|Keratosis punctata (palmaris et plantaris)|Keratosis punctata (palmaris et plantaris) +C0549201|T047|ET|L85.3|ICD10CM|Dry skin dermatitis|Dry skin dermatitis +C0263465|T047|PT|L85.3|ICD10|Xerosis cutis|Xerosis cutis +C0263465|T047|PT|L85.3|ICD10CM|Xerosis cutis|Xerosis cutis +C0263465|T047|AB|L85.3|ICD10CM|Xerosis cutis|Xerosis cutis +C0085664|T020|ET|L85.8|ICD10CM|Cutaneous horn|Cutaneous horn +C0477519|T046|PT|L85.8|ICD10|Other specified epidermal thickening|Other specified epidermal thickening +C0477519|T046|PT|L85.8|ICD10CM|Other specified epidermal thickening|Other specified epidermal thickening +C0477519|T046|AB|L85.8|ICD10CM|Other specified epidermal thickening|Other specified epidermal thickening +C0494876|T046|PT|L85.9|ICD10|Epidermal thickening, unspecified|Epidermal thickening, unspecified +C0494876|T046|PT|L85.9|ICD10CM|Epidermal thickening, unspecified|Epidermal thickening, unspecified +C0494876|T046|AB|L85.9|ICD10CM|Epidermal thickening, unspecified|Epidermal thickening, unspecified +C0477520|T047|PT|L86|ICD10|Keratoderma in diseases classified elsewhere|Keratoderma in diseases classified elsewhere +C0477520|T047|PT|L86|ICD10CM|Keratoderma in diseases classified elsewhere|Keratoderma in diseases classified elsewhere +C0477520|T047|AB|L86|ICD10CM|Keratoderma in diseases classified elsewhere|Keratoderma in diseases classified elsewhere +C0451937|T047|HT|L87|ICD10CM|Transepidermal elimination disorders|Transepidermal elimination disorders +C0451937|T047|AB|L87|ICD10CM|Transepidermal elimination disorders|Transepidermal elimination disorders +C0451937|T047|HT|L87|ICD10|Transepidermal elimination disorders|Transepidermal elimination disorders +C2888201|T047|ET|L87.0|ICD10CM|Hyperkeratosis follicularis penetrans|Hyperkeratosis follicularis penetrans +C0263382|T047|AB|L87.0|ICD10CM|Keratos follicularis et parafollicularis in cutem penetrans|Keratos follicularis et parafollicularis in cutem penetrans +C0263382|T047|PT|L87.0|ICD10CM|Keratosis follicularis et parafollicularis in cutem penetrans|Keratosis follicularis et parafollicularis in cutem penetrans +C0263382|T047|PT|L87.0|ICD10|Keratosis follicularis et parafollicularis in cutem penetrans [Kyrle]|Keratosis follicularis et parafollicularis in cutem penetrans [Kyrle] +C0263382|T047|ET|L87.0|ICD10CM|Kyrle disease|Kyrle disease +C0263419|T047|PT|L87.1|ICD10CM|Reactive perforating collagenosis|Reactive perforating collagenosis +C0263419|T047|AB|L87.1|ICD10CM|Reactive perforating collagenosis|Reactive perforating collagenosis +C0263419|T047|PT|L87.1|ICD10|Reactive perforating collagenosis|Reactive perforating collagenosis +C0221271|T047|PT|L87.2|ICD10|Elastosis perforans serpiginosa|Elastosis perforans serpiginosa +C0221271|T047|PT|L87.2|ICD10CM|Elastosis perforans serpiginosa|Elastosis perforans serpiginosa +C0221271|T047|AB|L87.2|ICD10CM|Elastosis perforans serpiginosa|Elastosis perforans serpiginosa +C0477521|T047|PT|L87.8|ICD10|Other transepidermal elimination disorders|Other transepidermal elimination disorders +C0477521|T047|PT|L87.8|ICD10CM|Other transepidermal elimination disorders|Other transepidermal elimination disorders +C0477521|T047|AB|L87.8|ICD10CM|Other transepidermal elimination disorders|Other transepidermal elimination disorders +C0451937|T047|PT|L87.9|ICD10CM|Transepidermal elimination disorder, unspecified|Transepidermal elimination disorder, unspecified +C0451937|T047|AB|L87.9|ICD10CM|Transepidermal elimination disorder, unspecified|Transepidermal elimination disorder, unspecified +C0451937|T047|PT|L87.9|ICD10|Transepidermal elimination disorder, unspecified|Transepidermal elimination disorder, unspecified +C1397124|T047|ET|L88|ICD10CM|Phagedenic pyoderma|Phagedenic pyoderma +C0085652|T047|PT|L88|ICD10CM|Pyoderma gangrenosum|Pyoderma gangrenosum +C0085652|T047|AB|L88|ICD10CM|Pyoderma gangrenosum|Pyoderma gangrenosum +C0085652|T047|PT|L88|ICD10|Pyoderma gangrenosum|Pyoderma gangrenosum +C0011127|T047|ET|L89|ICD10CM|bed sore|bed sore +C0011127|T047|ET|L89|ICD10CM|decubitus ulcer|decubitus ulcer +C0011127|T047|PT|L89|ICD10|Decubitus ulcer|Decubitus ulcer +C0263559|T047|ET|L89|ICD10CM|plaster ulcer|plaster ulcer +C1395831|T047|ET|L89|ICD10CM|pressure area|pressure area +C0011127|T047|ET|L89|ICD10CM|pressure sore|pressure sore +C0011127|T047|HT|L89|ICD10CM|Pressure ulcer|Pressure ulcer +C0011127|T047|AB|L89|ICD10CM|Pressure ulcer|Pressure ulcer +C0558156|T047|HT|L89.0|ICD10CM|Pressure ulcer of elbow|Pressure ulcer of elbow +C0558156|T047|AB|L89.0|ICD10CM|Pressure ulcer of elbow|Pressure ulcer of elbow +C2888203|T047|AB|L89.00|ICD10CM|Pressure ulcer of unspecified elbow|Pressure ulcer of unspecified elbow +C2888203|T047|HT|L89.00|ICD10CM|Pressure ulcer of unspecified elbow|Pressure ulcer of unspecified elbow +C2888204|T047|AB|L89.000|ICD10CM|Pressure ulcer of unspecified elbow, unstageable|Pressure ulcer of unspecified elbow, unstageable +C2888204|T047|PT|L89.000|ICD10CM|Pressure ulcer of unspecified elbow, unstageable|Pressure ulcer of unspecified elbow, unstageable +C2888205|T047|ET|L89.001|ICD10CM|Healing pressure ulcer of unspecified elbow, stage 1|Healing pressure ulcer of unspecified elbow, stage 1 +C2888206|T047|ET|L89.001|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, unspecified elbow|Pressure pre-ulcer skin changes limited to persistent focal edema, unspecified elbow +C2888207|T047|AB|L89.001|ICD10CM|Pressure ulcer of unspecified elbow, stage 1|Pressure ulcer of unspecified elbow, stage 1 +C2888207|T047|PT|L89.001|ICD10CM|Pressure ulcer of unspecified elbow, stage 1|Pressure ulcer of unspecified elbow, stage 1 +C2888208|T047|ET|L89.002|ICD10CM|Healing pressure ulcer of unspecified elbow, stage 2|Healing pressure ulcer of unspecified elbow, stage 2 +C2888210|T047|AB|L89.002|ICD10CM|Pressure ulcer of unspecified elbow, stage 2|Pressure ulcer of unspecified elbow, stage 2 +C2888210|T047|PT|L89.002|ICD10CM|Pressure ulcer of unspecified elbow, stage 2|Pressure ulcer of unspecified elbow, stage 2 +C2888211|T047|ET|L89.003|ICD10CM|Healing pressure ulcer of unspecified elbow, stage 3|Healing pressure ulcer of unspecified elbow, stage 3 +C2888213|T047|AB|L89.003|ICD10CM|Pressure ulcer of unspecified elbow, stage 3|Pressure ulcer of unspecified elbow, stage 3 +C2888213|T047|PT|L89.003|ICD10CM|Pressure ulcer of unspecified elbow, stage 3|Pressure ulcer of unspecified elbow, stage 3 +C2888214|T047|ET|L89.004|ICD10CM|Healing pressure ulcer of unspecified elbow, stage 4|Healing pressure ulcer of unspecified elbow, stage 4 +C2888216|T047|AB|L89.004|ICD10CM|Pressure ulcer of unspecified elbow, stage 4|Pressure ulcer of unspecified elbow, stage 4 +C2888216|T047|PT|L89.004|ICD10CM|Pressure ulcer of unspecified elbow, stage 4|Pressure ulcer of unspecified elbow, stage 4 +C5140837|T047|AB|L89.006|ICD10CM|Pressure-induced deep tissue damage of unspecified elbow|Pressure-induced deep tissue damage of unspecified elbow +C5140837|T047|PT|L89.006|ICD10CM|Pressure-induced deep tissue damage of unspecified elbow|Pressure-induced deep tissue damage of unspecified elbow +C2888217|T047|ET|L89.009|ICD10CM|Healing pressure ulcer of elbow NOS|Healing pressure ulcer of elbow NOS +C2888234|T047|ET|L89.009|ICD10CM|Healing pressure ulcer of unspecified elbow, unspecified stage|Healing pressure ulcer of unspecified elbow, unspecified stage +C2888218|T047|AB|L89.009|ICD10CM|Pressure ulcer of unspecified elbow, unspecified stage|Pressure ulcer of unspecified elbow, unspecified stage +C2888218|T047|PT|L89.009|ICD10CM|Pressure ulcer of unspecified elbow, unspecified stage|Pressure ulcer of unspecified elbow, unspecified stage +C2074663|T047|AB|L89.01|ICD10CM|Pressure ulcer of right elbow|Pressure ulcer of right elbow +C2074663|T047|HT|L89.01|ICD10CM|Pressure ulcer of right elbow|Pressure ulcer of right elbow +C2888220|T047|AB|L89.010|ICD10CM|Pressure ulcer of right elbow, unstageable|Pressure ulcer of right elbow, unstageable +C2888220|T047|PT|L89.010|ICD10CM|Pressure ulcer of right elbow, unstageable|Pressure ulcer of right elbow, unstageable +C2888221|T047|ET|L89.011|ICD10CM|Healing pressure ulcer of right elbow, stage 1|Healing pressure ulcer of right elbow, stage 1 +C2888222|T047|ET|L89.011|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, right elbow|Pressure pre-ulcer skin changes limited to persistent focal edema, right elbow +C2888223|T047|AB|L89.011|ICD10CM|Pressure ulcer of right elbow, stage 1|Pressure ulcer of right elbow, stage 1 +C2888223|T047|PT|L89.011|ICD10CM|Pressure ulcer of right elbow, stage 1|Pressure ulcer of right elbow, stage 1 +C2888224|T047|ET|L89.012|ICD10CM|Healing pressure ulcer of right elbow, stage 2|Healing pressure ulcer of right elbow, stage 2 +C2888226|T047|AB|L89.012|ICD10CM|Pressure ulcer of right elbow, stage 2|Pressure ulcer of right elbow, stage 2 +C2888226|T047|PT|L89.012|ICD10CM|Pressure ulcer of right elbow, stage 2|Pressure ulcer of right elbow, stage 2 +C2888227|T047|ET|L89.013|ICD10CM|Healing pressure ulcer of right elbow, stage 3|Healing pressure ulcer of right elbow, stage 3 +C2888229|T047|AB|L89.013|ICD10CM|Pressure ulcer of right elbow, stage 3|Pressure ulcer of right elbow, stage 3 +C2888229|T047|PT|L89.013|ICD10CM|Pressure ulcer of right elbow, stage 3|Pressure ulcer of right elbow, stage 3 +C2888230|T047|ET|L89.014|ICD10CM|Healing pressure ulcer of right elbow, stage 4|Healing pressure ulcer of right elbow, stage 4 +C2888232|T047|AB|L89.014|ICD10CM|Pressure ulcer of right elbow, stage 4|Pressure ulcer of right elbow, stage 4 +C2888232|T047|PT|L89.014|ICD10CM|Pressure ulcer of right elbow, stage 4|Pressure ulcer of right elbow, stage 4 +C5140838|T047|AB|L89.016|ICD10CM|Pressure-induced deep tissue damage of right elbow|Pressure-induced deep tissue damage of right elbow +C5140838|T047|PT|L89.016|ICD10CM|Pressure-induced deep tissue damage of right elbow|Pressure-induced deep tissue damage of right elbow +C2888233|T047|ET|L89.019|ICD10CM|Healing pressure right of elbow NOS|Healing pressure right of elbow NOS +C4509273|T047|ET|L89.019|ICD10CM|Healing pressure ulcer of right elbow, unspecified stage|Healing pressure ulcer of right elbow, unspecified stage +C2888235|T047|AB|L89.019|ICD10CM|Pressure ulcer of right elbow, unspecified stage|Pressure ulcer of right elbow, unspecified stage +C2888235|T047|PT|L89.019|ICD10CM|Pressure ulcer of right elbow, unspecified stage|Pressure ulcer of right elbow, unspecified stage +C2074658|T047|AB|L89.02|ICD10CM|Pressure ulcer of left elbow|Pressure ulcer of left elbow +C2074658|T047|HT|L89.02|ICD10CM|Pressure ulcer of left elbow|Pressure ulcer of left elbow +C2888237|T047|AB|L89.020|ICD10CM|Pressure ulcer of left elbow, unstageable|Pressure ulcer of left elbow, unstageable +C2888237|T047|PT|L89.020|ICD10CM|Pressure ulcer of left elbow, unstageable|Pressure ulcer of left elbow, unstageable +C2888238|T047|ET|L89.021|ICD10CM|Healing pressure ulcer of left elbow, stage 1|Healing pressure ulcer of left elbow, stage 1 +C2888239|T047|ET|L89.021|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, left elbow|Pressure pre-ulcer skin changes limited to persistent focal edema, left elbow +C2888240|T047|AB|L89.021|ICD10CM|Pressure ulcer of left elbow, stage 1|Pressure ulcer of left elbow, stage 1 +C2888240|T047|PT|L89.021|ICD10CM|Pressure ulcer of left elbow, stage 1|Pressure ulcer of left elbow, stage 1 +C2888241|T047|ET|L89.022|ICD10CM|Healing pressure ulcer of left elbow, stage 2|Healing pressure ulcer of left elbow, stage 2 +C2888243|T047|AB|L89.022|ICD10CM|Pressure ulcer of left elbow, stage 2|Pressure ulcer of left elbow, stage 2 +C2888243|T047|PT|L89.022|ICD10CM|Pressure ulcer of left elbow, stage 2|Pressure ulcer of left elbow, stage 2 +C2888244|T047|ET|L89.023|ICD10CM|Healing pressure ulcer of left elbow, stage 3|Healing pressure ulcer of left elbow, stage 3 +C2888246|T047|AB|L89.023|ICD10CM|Pressure ulcer of left elbow, stage 3|Pressure ulcer of left elbow, stage 3 +C2888246|T047|PT|L89.023|ICD10CM|Pressure ulcer of left elbow, stage 3|Pressure ulcer of left elbow, stage 3 +C2888247|T047|ET|L89.024|ICD10CM|Healing pressure ulcer of left elbow, stage 4|Healing pressure ulcer of left elbow, stage 4 +C2888249|T047|AB|L89.024|ICD10CM|Pressure ulcer of left elbow, stage 4|Pressure ulcer of left elbow, stage 4 +C2888249|T047|PT|L89.024|ICD10CM|Pressure ulcer of left elbow, stage 4|Pressure ulcer of left elbow, stage 4 +C5140839|T047|AB|L89.026|ICD10CM|Pressure-induced deep tissue damage of left elbow|Pressure-induced deep tissue damage of left elbow +C5140839|T047|PT|L89.026|ICD10CM|Pressure-induced deep tissue damage of left elbow|Pressure-induced deep tissue damage of left elbow +C4509274|T047|ET|L89.029|ICD10CM|Healing pressure ulcer of left elbow, unspecified stage|Healing pressure ulcer of left elbow, unspecified stage +C2888250|T047|ET|L89.029|ICD10CM|Healing pressure ulcer of left of elbow NOS|Healing pressure ulcer of left of elbow NOS +C2888251|T047|AB|L89.029|ICD10CM|Pressure ulcer of left elbow, unspecified stage|Pressure ulcer of left elbow, unspecified stage +C2888251|T047|PT|L89.029|ICD10CM|Pressure ulcer of left elbow, unspecified stage|Pressure ulcer of left elbow, unspecified stage +C0558155|T047|HT|L89.1|ICD10CM|Pressure ulcer of back|Pressure ulcer of back +C0558155|T047|AB|L89.1|ICD10CM|Pressure ulcer of back|Pressure ulcer of back +C2888253|T047|AB|L89.10|ICD10CM|Pressure ulcer of unspecified part of back|Pressure ulcer of unspecified part of back +C2888253|T047|HT|L89.10|ICD10CM|Pressure ulcer of unspecified part of back|Pressure ulcer of unspecified part of back +C2888254|T047|AB|L89.100|ICD10CM|Pressure ulcer of unspecified part of back, unstageable|Pressure ulcer of unspecified part of back, unstageable +C2888254|T047|PT|L89.100|ICD10CM|Pressure ulcer of unspecified part of back, unstageable|Pressure ulcer of unspecified part of back, unstageable +C2888255|T047|ET|L89.101|ICD10CM|Healing pressure ulcer of unspecified part of back, stage 1|Healing pressure ulcer of unspecified part of back, stage 1 +C2888256|T047|ET|L89.101|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, unspecified part of back|Pressure pre-ulcer skin changes limited to persistent focal edema, unspecified part of back +C2888257|T047|AB|L89.101|ICD10CM|Pressure ulcer of unspecified part of back, stage 1|Pressure ulcer of unspecified part of back, stage 1 +C2888257|T047|PT|L89.101|ICD10CM|Pressure ulcer of unspecified part of back, stage 1|Pressure ulcer of unspecified part of back, stage 1 +C2888258|T047|ET|L89.102|ICD10CM|Healing pressure ulcer of unspecified part of back, stage 2|Healing pressure ulcer of unspecified part of back, stage 2 +C2888260|T047|AB|L89.102|ICD10CM|Pressure ulcer of unspecified part of back, stage 2|Pressure ulcer of unspecified part of back, stage 2 +C2888260|T047|PT|L89.102|ICD10CM|Pressure ulcer of unspecified part of back, stage 2|Pressure ulcer of unspecified part of back, stage 2 +C2888261|T047|ET|L89.103|ICD10CM|Healing pressure ulcer of unspecified part of back, stage 3|Healing pressure ulcer of unspecified part of back, stage 3 +C2888263|T047|AB|L89.103|ICD10CM|Pressure ulcer of unspecified part of back, stage 3|Pressure ulcer of unspecified part of back, stage 3 +C2888263|T047|PT|L89.103|ICD10CM|Pressure ulcer of unspecified part of back, stage 3|Pressure ulcer of unspecified part of back, stage 3 +C2888264|T047|ET|L89.104|ICD10CM|Healing pressure ulcer of unspecified part of back, stage 4|Healing pressure ulcer of unspecified part of back, stage 4 +C2888266|T047|AB|L89.104|ICD10CM|Pressure ulcer of unspecified part of back, stage 4|Pressure ulcer of unspecified part of back, stage 4 +C2888266|T047|PT|L89.104|ICD10CM|Pressure ulcer of unspecified part of back, stage 4|Pressure ulcer of unspecified part of back, stage 4 +C5140840|T047|AB|L89.106|ICD10CM|Pressr-induc deep tissue damage of unspecified part of back|Pressr-induc deep tissue damage of unspecified part of back +C5140840|T047|PT|L89.106|ICD10CM|Pressure-induced deep tissue damage of unspecified part of back|Pressure-induced deep tissue damage of unspecified part of back +C2888267|T047|ET|L89.109|ICD10CM|Healing pressure ulcer of unspecified part of back NOS|Healing pressure ulcer of unspecified part of back NOS +C2888268|T047|ET|L89.109|ICD10CM|Healing pressure ulcer of unspecified part of back, unspecified stage|Healing pressure ulcer of unspecified part of back, unspecified stage +C2888269|T047|AB|L89.109|ICD10CM|Pressure ulcer of unsp part of back, unspecified stage|Pressure ulcer of unsp part of back, unspecified stage +C2888269|T047|PT|L89.109|ICD10CM|Pressure ulcer of unspecified part of back, unspecified stage|Pressure ulcer of unspecified part of back, unspecified stage +C2888270|T047|ET|L89.11|ICD10CM|Pressure ulcer of right shoulder blade|Pressure ulcer of right shoulder blade +C2888271|T047|AB|L89.11|ICD10CM|Pressure ulcer of right upper back|Pressure ulcer of right upper back +C2888271|T047|HT|L89.11|ICD10CM|Pressure ulcer of right upper back|Pressure ulcer of right upper back +C2888272|T047|AB|L89.110|ICD10CM|Pressure ulcer of right upper back, unstageable|Pressure ulcer of right upper back, unstageable +C2888272|T047|PT|L89.110|ICD10CM|Pressure ulcer of right upper back, unstageable|Pressure ulcer of right upper back, unstageable +C2888273|T047|ET|L89.111|ICD10CM|Healing pressure ulcer of right upper back, stage 1|Healing pressure ulcer of right upper back, stage 1 +C2888274|T047|ET|L89.111|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, right upper back|Pressure pre-ulcer skin changes limited to persistent focal edema, right upper back +C2888275|T047|AB|L89.111|ICD10CM|Pressure ulcer of right upper back, stage 1|Pressure ulcer of right upper back, stage 1 +C2888275|T047|PT|L89.111|ICD10CM|Pressure ulcer of right upper back, stage 1|Pressure ulcer of right upper back, stage 1 +C2888276|T047|ET|L89.112|ICD10CM|Healing pressure ulcer of right upper back, stage 2|Healing pressure ulcer of right upper back, stage 2 +C2888278|T047|AB|L89.112|ICD10CM|Pressure ulcer of right upper back, stage 2|Pressure ulcer of right upper back, stage 2 +C2888278|T047|PT|L89.112|ICD10CM|Pressure ulcer of right upper back, stage 2|Pressure ulcer of right upper back, stage 2 +C2888279|T047|ET|L89.113|ICD10CM|Healing pressure ulcer of right upper back, stage 3|Healing pressure ulcer of right upper back, stage 3 +C2888281|T047|AB|L89.113|ICD10CM|Pressure ulcer of right upper back, stage 3|Pressure ulcer of right upper back, stage 3 +C2888281|T047|PT|L89.113|ICD10CM|Pressure ulcer of right upper back, stage 3|Pressure ulcer of right upper back, stage 3 +C2888282|T047|ET|L89.114|ICD10CM|Healing pressure ulcer of right upper back, stage 4|Healing pressure ulcer of right upper back, stage 4 +C2888284|T047|AB|L89.114|ICD10CM|Pressure ulcer of right upper back, stage 4|Pressure ulcer of right upper back, stage 4 +C2888284|T047|PT|L89.114|ICD10CM|Pressure ulcer of right upper back, stage 4|Pressure ulcer of right upper back, stage 4 +C5140841|T047|AB|L89.116|ICD10CM|Pressure-induced deep tissue damage of right upper back|Pressure-induced deep tissue damage of right upper back +C5140841|T047|PT|L89.116|ICD10CM|Pressure-induced deep tissue damage of right upper back|Pressure-induced deep tissue damage of right upper back +C2888285|T047|ET|L89.119|ICD10CM|Healing pressure ulcer of right upper back NOS|Healing pressure ulcer of right upper back NOS +C2888286|T047|ET|L89.119|ICD10CM|Healing pressure ulcer of right upper back, unspecified stage|Healing pressure ulcer of right upper back, unspecified stage +C2888287|T047|AB|L89.119|ICD10CM|Pressure ulcer of right upper back, unspecified stage|Pressure ulcer of right upper back, unspecified stage +C2888287|T047|PT|L89.119|ICD10CM|Pressure ulcer of right upper back, unspecified stage|Pressure ulcer of right upper back, unspecified stage +C2888288|T047|ET|L89.12|ICD10CM|Pressure ulcer of left shoulder blade|Pressure ulcer of left shoulder blade +C2888289|T047|AB|L89.12|ICD10CM|Pressure ulcer of left upper back|Pressure ulcer of left upper back +C2888289|T047|HT|L89.12|ICD10CM|Pressure ulcer of left upper back|Pressure ulcer of left upper back +C2888290|T047|AB|L89.120|ICD10CM|Pressure ulcer of left upper back, unstageable|Pressure ulcer of left upper back, unstageable +C2888290|T047|PT|L89.120|ICD10CM|Pressure ulcer of left upper back, unstageable|Pressure ulcer of left upper back, unstageable +C2888291|T047|ET|L89.121|ICD10CM|Healing pressure ulcer of left upper back, stage 1|Healing pressure ulcer of left upper back, stage 1 +C2888292|T047|ET|L89.121|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, left upper back|Pressure pre-ulcer skin changes limited to persistent focal edema, left upper back +C2888293|T047|AB|L89.121|ICD10CM|Pressure ulcer of left upper back, stage 1|Pressure ulcer of left upper back, stage 1 +C2888293|T047|PT|L89.121|ICD10CM|Pressure ulcer of left upper back, stage 1|Pressure ulcer of left upper back, stage 1 +C2888294|T047|ET|L89.122|ICD10CM|Healing pressure ulcer of left upper back, stage 2|Healing pressure ulcer of left upper back, stage 2 +C2888296|T047|AB|L89.122|ICD10CM|Pressure ulcer of left upper back, stage 2|Pressure ulcer of left upper back, stage 2 +C2888296|T047|PT|L89.122|ICD10CM|Pressure ulcer of left upper back, stage 2|Pressure ulcer of left upper back, stage 2 +C2888297|T047|ET|L89.123|ICD10CM|Healing pressure ulcer of left upper back, stage 3|Healing pressure ulcer of left upper back, stage 3 +C2888299|T047|AB|L89.123|ICD10CM|Pressure ulcer of left upper back, stage 3|Pressure ulcer of left upper back, stage 3 +C2888299|T047|PT|L89.123|ICD10CM|Pressure ulcer of left upper back, stage 3|Pressure ulcer of left upper back, stage 3 +C2888300|T047|ET|L89.124|ICD10CM|Healing pressure ulcer of left upper back, stage 4|Healing pressure ulcer of left upper back, stage 4 +C2888302|T047|AB|L89.124|ICD10CM|Pressure ulcer of left upper back, stage 4|Pressure ulcer of left upper back, stage 4 +C2888302|T047|PT|L89.124|ICD10CM|Pressure ulcer of left upper back, stage 4|Pressure ulcer of left upper back, stage 4 +C5140842|T047|AB|L89.126|ICD10CM|Pressure-induced deep tissue damage of left upper back|Pressure-induced deep tissue damage of left upper back +C5140842|T047|PT|L89.126|ICD10CM|Pressure-induced deep tissue damage of left upper back|Pressure-induced deep tissue damage of left upper back +C2888303|T047|ET|L89.129|ICD10CM|Healing pressure ulcer of left upper back NOS|Healing pressure ulcer of left upper back NOS +C2888304|T047|ET|L89.129|ICD10CM|Healing pressure ulcer of left upper back, unspecified stage|Healing pressure ulcer of left upper back, unspecified stage +C2888305|T047|AB|L89.129|ICD10CM|Pressure ulcer of left upper back, unspecified stage|Pressure ulcer of left upper back, unspecified stage +C2888305|T047|PT|L89.129|ICD10CM|Pressure ulcer of left upper back, unspecified stage|Pressure ulcer of left upper back, unspecified stage +C2888306|T047|AB|L89.13|ICD10CM|Pressure ulcer of right lower back|Pressure ulcer of right lower back +C2888306|T047|HT|L89.13|ICD10CM|Pressure ulcer of right lower back|Pressure ulcer of right lower back +C2888307|T047|AB|L89.130|ICD10CM|Pressure ulcer of right lower back, unstageable|Pressure ulcer of right lower back, unstageable +C2888307|T047|PT|L89.130|ICD10CM|Pressure ulcer of right lower back, unstageable|Pressure ulcer of right lower back, unstageable +C2888308|T047|ET|L89.131|ICD10CM|Healing pressure ulcer of right lower back, stage 1|Healing pressure ulcer of right lower back, stage 1 +C2888309|T047|ET|L89.131|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, right lower back|Pressure pre-ulcer skin changes limited to persistent focal edema, right lower back +C2888310|T047|AB|L89.131|ICD10CM|Pressure ulcer of right lower back, stage 1|Pressure ulcer of right lower back, stage 1 +C2888310|T047|PT|L89.131|ICD10CM|Pressure ulcer of right lower back, stage 1|Pressure ulcer of right lower back, stage 1 +C2888311|T047|ET|L89.132|ICD10CM|Healing pressure ulcer of right lower back, stage 2|Healing pressure ulcer of right lower back, stage 2 +C2888313|T047|AB|L89.132|ICD10CM|Pressure ulcer of right lower back, stage 2|Pressure ulcer of right lower back, stage 2 +C2888313|T047|PT|L89.132|ICD10CM|Pressure ulcer of right lower back, stage 2|Pressure ulcer of right lower back, stage 2 +C2888314|T047|ET|L89.133|ICD10CM|Healing pressure ulcer of right lower back, stage 3|Healing pressure ulcer of right lower back, stage 3 +C2888316|T047|AB|L89.133|ICD10CM|Pressure ulcer of right lower back, stage 3|Pressure ulcer of right lower back, stage 3 +C2888316|T047|PT|L89.133|ICD10CM|Pressure ulcer of right lower back, stage 3|Pressure ulcer of right lower back, stage 3 +C2888317|T047|ET|L89.134|ICD10CM|Healing pressure ulcer of right lower back, stage 4|Healing pressure ulcer of right lower back, stage 4 +C2888319|T047|AB|L89.134|ICD10CM|Pressure ulcer of right lower back, stage 4|Pressure ulcer of right lower back, stage 4 +C2888319|T047|PT|L89.134|ICD10CM|Pressure ulcer of right lower back, stage 4|Pressure ulcer of right lower back, stage 4 +C5140843|T047|AB|L89.136|ICD10CM|Pressure-induced deep tissue damage of right lower back|Pressure-induced deep tissue damage of right lower back +C5140843|T047|PT|L89.136|ICD10CM|Pressure-induced deep tissue damage of right lower back|Pressure-induced deep tissue damage of right lower back +C2888320|T047|ET|L89.139|ICD10CM|Healing pressure ulcer of right lower back NOS|Healing pressure ulcer of right lower back NOS +C2888321|T047|ET|L89.139|ICD10CM|Healing pressure ulcer of right lower back, unspecified stage|Healing pressure ulcer of right lower back, unspecified stage +C2888322|T047|AB|L89.139|ICD10CM|Pressure ulcer of right lower back, unspecified stage|Pressure ulcer of right lower back, unspecified stage +C2888322|T047|PT|L89.139|ICD10CM|Pressure ulcer of right lower back, unspecified stage|Pressure ulcer of right lower back, unspecified stage +C2888323|T047|AB|L89.14|ICD10CM|Pressure ulcer of left lower back|Pressure ulcer of left lower back +C2888323|T047|HT|L89.14|ICD10CM|Pressure ulcer of left lower back|Pressure ulcer of left lower back +C2888324|T047|AB|L89.140|ICD10CM|Pressure ulcer of left lower back, unstageable|Pressure ulcer of left lower back, unstageable +C2888324|T047|PT|L89.140|ICD10CM|Pressure ulcer of left lower back, unstageable|Pressure ulcer of left lower back, unstageable +C2888325|T047|ET|L89.141|ICD10CM|Healing pressure ulcer of left lower back, stage 1|Healing pressure ulcer of left lower back, stage 1 +C2888326|T047|ET|L89.141|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, left lower back|Pressure pre-ulcer skin changes limited to persistent focal edema, left lower back +C2888327|T047|AB|L89.141|ICD10CM|Pressure ulcer of left lower back, stage 1|Pressure ulcer of left lower back, stage 1 +C2888327|T047|PT|L89.141|ICD10CM|Pressure ulcer of left lower back, stage 1|Pressure ulcer of left lower back, stage 1 +C2888328|T047|ET|L89.142|ICD10CM|Healing pressure ulcer of left lower back, stage 2|Healing pressure ulcer of left lower back, stage 2 +C2888330|T047|AB|L89.142|ICD10CM|Pressure ulcer of left lower back, stage 2|Pressure ulcer of left lower back, stage 2 +C2888330|T047|PT|L89.142|ICD10CM|Pressure ulcer of left lower back, stage 2|Pressure ulcer of left lower back, stage 2 +C2888331|T047|ET|L89.143|ICD10CM|Healing pressure ulcer of left lower back, stage 3|Healing pressure ulcer of left lower back, stage 3 +C2888333|T047|AB|L89.143|ICD10CM|Pressure ulcer of left lower back, stage 3|Pressure ulcer of left lower back, stage 3 +C2888333|T047|PT|L89.143|ICD10CM|Pressure ulcer of left lower back, stage 3|Pressure ulcer of left lower back, stage 3 +C2888334|T047|ET|L89.144|ICD10CM|Healing pressure ulcer of left lower back, stage 4|Healing pressure ulcer of left lower back, stage 4 +C2888336|T047|AB|L89.144|ICD10CM|Pressure ulcer of left lower back, stage 4|Pressure ulcer of left lower back, stage 4 +C2888336|T047|PT|L89.144|ICD10CM|Pressure ulcer of left lower back, stage 4|Pressure ulcer of left lower back, stage 4 +C5140844|T047|AB|L89.146|ICD10CM|Pressure-induced deep tissue damage of left lower back|Pressure-induced deep tissue damage of left lower back +C5140844|T047|PT|L89.146|ICD10CM|Pressure-induced deep tissue damage of left lower back|Pressure-induced deep tissue damage of left lower back +C2888337|T047|ET|L89.149|ICD10CM|Healing pressure ulcer of left lower back NOS|Healing pressure ulcer of left lower back NOS +C2888338|T047|ET|L89.149|ICD10CM|Healing pressure ulcer of left lower back, unspecified stage|Healing pressure ulcer of left lower back, unspecified stage +C2888339|T047|AB|L89.149|ICD10CM|Pressure ulcer of left lower back, unspecified stage|Pressure ulcer of left lower back, unspecified stage +C2888339|T047|PT|L89.149|ICD10CM|Pressure ulcer of left lower back, unspecified stage|Pressure ulcer of left lower back, unspecified stage +C2728301|T047|ET|L89.15|ICD10CM|Pressure ulcer of coccyx|Pressure ulcer of coccyx +C0558159|T046|HT|L89.15|ICD10CM|Pressure ulcer of sacral region|Pressure ulcer of sacral region +C0558159|T046|AB|L89.15|ICD10CM|Pressure ulcer of sacral region|Pressure ulcer of sacral region +C2888341|T047|ET|L89.15|ICD10CM|Pressure ulcer of tailbone|Pressure ulcer of tailbone +C2888343|T047|AB|L89.150|ICD10CM|Pressure ulcer of sacral region, unstageable|Pressure ulcer of sacral region, unstageable +C2888343|T047|PT|L89.150|ICD10CM|Pressure ulcer of sacral region, unstageable|Pressure ulcer of sacral region, unstageable +C2888344|T047|ET|L89.151|ICD10CM|Healing pressure ulcer of sacral region, stage 1|Healing pressure ulcer of sacral region, stage 1 +C2888345|T047|ET|L89.151|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, sacral region|Pressure pre-ulcer skin changes limited to persistent focal edema, sacral region +C2888346|T047|AB|L89.151|ICD10CM|Pressure ulcer of sacral region, stage 1|Pressure ulcer of sacral region, stage 1 +C2888346|T047|PT|L89.151|ICD10CM|Pressure ulcer of sacral region, stage 1|Pressure ulcer of sacral region, stage 1 +C2888347|T047|ET|L89.152|ICD10CM|Healing pressure ulcer of sacral region, stage 2|Healing pressure ulcer of sacral region, stage 2 +C2888349|T047|AB|L89.152|ICD10CM|Pressure ulcer of sacral region, stage 2|Pressure ulcer of sacral region, stage 2 +C2888349|T047|PT|L89.152|ICD10CM|Pressure ulcer of sacral region, stage 2|Pressure ulcer of sacral region, stage 2 +C2888350|T047|ET|L89.153|ICD10CM|Healing pressure ulcer of sacral region, stage 3|Healing pressure ulcer of sacral region, stage 3 +C2888352|T047|AB|L89.153|ICD10CM|Pressure ulcer of sacral region, stage 3|Pressure ulcer of sacral region, stage 3 +C2888352|T047|PT|L89.153|ICD10CM|Pressure ulcer of sacral region, stage 3|Pressure ulcer of sacral region, stage 3 +C2888353|T047|ET|L89.154|ICD10CM|Healing pressure ulcer of sacral region, stage 4|Healing pressure ulcer of sacral region, stage 4 +C2888355|T047|AB|L89.154|ICD10CM|Pressure ulcer of sacral region, stage 4|Pressure ulcer of sacral region, stage 4 +C2888355|T047|PT|L89.154|ICD10CM|Pressure ulcer of sacral region, stage 4|Pressure ulcer of sacral region, stage 4 +C5140845|T047|AB|L89.156|ICD10CM|Pressure-induced deep tissue damage of sacral region|Pressure-induced deep tissue damage of sacral region +C5140845|T047|PT|L89.156|ICD10CM|Pressure-induced deep tissue damage of sacral region|Pressure-induced deep tissue damage of sacral region +C2888356|T047|ET|L89.159|ICD10CM|Healing pressure ulcer of sacral region NOS|Healing pressure ulcer of sacral region NOS +C2888357|T047|ET|L89.159|ICD10CM|Healing pressure ulcer of sacral region, unspecified stage|Healing pressure ulcer of sacral region, unspecified stage +C2888358|T047|AB|L89.159|ICD10CM|Pressure ulcer of sacral region, unspecified stage|Pressure ulcer of sacral region, unspecified stage +C2888358|T047|PT|L89.159|ICD10CM|Pressure ulcer of sacral region, unspecified stage|Pressure ulcer of sacral region, unspecified stage +C0577712|T046|HT|L89.2|ICD10CM|Pressure ulcer of hip|Pressure ulcer of hip +C0577712|T046|AB|L89.2|ICD10CM|Pressure ulcer of hip|Pressure ulcer of hip +C2888359|T047|AB|L89.20|ICD10CM|Pressure ulcer of unspecified hip|Pressure ulcer of unspecified hip +C2888359|T047|HT|L89.20|ICD10CM|Pressure ulcer of unspecified hip|Pressure ulcer of unspecified hip +C2888360|T047|AB|L89.200|ICD10CM|Pressure ulcer of unspecified hip, unstageable|Pressure ulcer of unspecified hip, unstageable +C2888360|T047|PT|L89.200|ICD10CM|Pressure ulcer of unspecified hip, unstageable|Pressure ulcer of unspecified hip, unstageable +C2888361|T047|ET|L89.201|ICD10CM|Healing pressure ulcer of unspecified hip back, stage 1|Healing pressure ulcer of unspecified hip back, stage 1 +C2888362|T047|ET|L89.201|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, unspecified hip|Pressure pre-ulcer skin changes limited to persistent focal edema, unspecified hip +C2888363|T047|AB|L89.201|ICD10CM|Pressure ulcer of unspecified hip, stage 1|Pressure ulcer of unspecified hip, stage 1 +C2888363|T047|PT|L89.201|ICD10CM|Pressure ulcer of unspecified hip, stage 1|Pressure ulcer of unspecified hip, stage 1 +C2888364|T047|ET|L89.202|ICD10CM|Healing pressure ulcer of unspecified hip, stage 2|Healing pressure ulcer of unspecified hip, stage 2 +C2888366|T047|AB|L89.202|ICD10CM|Pressure ulcer of unspecified hip, stage 2|Pressure ulcer of unspecified hip, stage 2 +C2888366|T047|PT|L89.202|ICD10CM|Pressure ulcer of unspecified hip, stage 2|Pressure ulcer of unspecified hip, stage 2 +C2888367|T047|ET|L89.203|ICD10CM|Healing pressure ulcer of unspecified hip, stage 3|Healing pressure ulcer of unspecified hip, stage 3 +C2888369|T047|AB|L89.203|ICD10CM|Pressure ulcer of unspecified hip, stage 3|Pressure ulcer of unspecified hip, stage 3 +C2888369|T047|PT|L89.203|ICD10CM|Pressure ulcer of unspecified hip, stage 3|Pressure ulcer of unspecified hip, stage 3 +C2888370|T047|ET|L89.204|ICD10CM|Healing pressure ulcer of unspecified hip, stage 4|Healing pressure ulcer of unspecified hip, stage 4 +C2888372|T047|AB|L89.204|ICD10CM|Pressure ulcer of unspecified hip, stage 4|Pressure ulcer of unspecified hip, stage 4 +C2888372|T047|PT|L89.204|ICD10CM|Pressure ulcer of unspecified hip, stage 4|Pressure ulcer of unspecified hip, stage 4 +C5140846|T047|AB|L89.206|ICD10CM|Pressure-induced deep tissue damage of unspecified hip|Pressure-induced deep tissue damage of unspecified hip +C5140846|T047|PT|L89.206|ICD10CM|Pressure-induced deep tissue damage of unspecified hip|Pressure-induced deep tissue damage of unspecified hip +C2888373|T047|ET|L89.209|ICD10CM|Healing pressure ulcer of unspecified hip NOS|Healing pressure ulcer of unspecified hip NOS +C2888374|T047|ET|L89.209|ICD10CM|Healing pressure ulcer of unspecified hip, unspecified stage|Healing pressure ulcer of unspecified hip, unspecified stage +C2888375|T047|AB|L89.209|ICD10CM|Pressure ulcer of unspecified hip, unspecified stage|Pressure ulcer of unspecified hip, unspecified stage +C2888375|T047|PT|L89.209|ICD10CM|Pressure ulcer of unspecified hip, unspecified stage|Pressure ulcer of unspecified hip, unspecified stage +C2074665|T047|AB|L89.21|ICD10CM|Pressure ulcer of right hip|Pressure ulcer of right hip +C2074665|T047|HT|L89.21|ICD10CM|Pressure ulcer of right hip|Pressure ulcer of right hip +C2888377|T047|AB|L89.210|ICD10CM|Pressure ulcer of right hip, unstageable|Pressure ulcer of right hip, unstageable +C2888377|T047|PT|L89.210|ICD10CM|Pressure ulcer of right hip, unstageable|Pressure ulcer of right hip, unstageable +C2888378|T047|ET|L89.211|ICD10CM|Healing pressure ulcer of right hip back, stage 1|Healing pressure ulcer of right hip back, stage 1 +C2888379|T047|ET|L89.211|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, right hip|Pressure pre-ulcer skin changes limited to persistent focal edema, right hip +C2888380|T047|AB|L89.211|ICD10CM|Pressure ulcer of right hip, stage 1|Pressure ulcer of right hip, stage 1 +C2888380|T047|PT|L89.211|ICD10CM|Pressure ulcer of right hip, stage 1|Pressure ulcer of right hip, stage 1 +C2888381|T047|ET|L89.212|ICD10CM|Healing pressure ulcer of right hip, stage 2|Healing pressure ulcer of right hip, stage 2 +C2888383|T047|AB|L89.212|ICD10CM|Pressure ulcer of right hip, stage 2|Pressure ulcer of right hip, stage 2 +C2888383|T047|PT|L89.212|ICD10CM|Pressure ulcer of right hip, stage 2|Pressure ulcer of right hip, stage 2 +C2888384|T047|ET|L89.213|ICD10CM|Healing pressure ulcer of right hip, stage 3|Healing pressure ulcer of right hip, stage 3 +C2888386|T047|AB|L89.213|ICD10CM|Pressure ulcer of right hip, stage 3|Pressure ulcer of right hip, stage 3 +C2888386|T047|PT|L89.213|ICD10CM|Pressure ulcer of right hip, stage 3|Pressure ulcer of right hip, stage 3 +C2888387|T047|ET|L89.214|ICD10CM|Healing pressure ulcer of right hip, stage 4|Healing pressure ulcer of right hip, stage 4 +C2888389|T047|AB|L89.214|ICD10CM|Pressure ulcer of right hip, stage 4|Pressure ulcer of right hip, stage 4 +C2888389|T047|PT|L89.214|ICD10CM|Pressure ulcer of right hip, stage 4|Pressure ulcer of right hip, stage 4 +C5140847|T047|AB|L89.216|ICD10CM|Pressure-induced deep tissue damage of right hip|Pressure-induced deep tissue damage of right hip +C5140847|T047|PT|L89.216|ICD10CM|Pressure-induced deep tissue damage of right hip|Pressure-induced deep tissue damage of right hip +C2888390|T047|ET|L89.219|ICD10CM|Healing pressure ulcer of right hip NOS|Healing pressure ulcer of right hip NOS +C2888391|T047|ET|L89.219|ICD10CM|Healing pressure ulcer of right hip, unspecified stage|Healing pressure ulcer of right hip, unspecified stage +C2888392|T047|AB|L89.219|ICD10CM|Pressure ulcer of right hip, unspecified stage|Pressure ulcer of right hip, unspecified stage +C2888392|T047|PT|L89.219|ICD10CM|Pressure ulcer of right hip, unspecified stage|Pressure ulcer of right hip, unspecified stage +C2074660|T047|AB|L89.22|ICD10CM|Pressure ulcer of left hip|Pressure ulcer of left hip +C2074660|T047|HT|L89.22|ICD10CM|Pressure ulcer of left hip|Pressure ulcer of left hip +C2888394|T047|AB|L89.220|ICD10CM|Pressure ulcer of left hip, unstageable|Pressure ulcer of left hip, unstageable +C2888394|T047|PT|L89.220|ICD10CM|Pressure ulcer of left hip, unstageable|Pressure ulcer of left hip, unstageable +C2888395|T047|ET|L89.221|ICD10CM|Healing pressure ulcer of left hip back, stage 1|Healing pressure ulcer of left hip back, stage 1 +C2888396|T047|ET|L89.221|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, left hip|Pressure pre-ulcer skin changes limited to persistent focal edema, left hip +C2888397|T047|AB|L89.221|ICD10CM|Pressure ulcer of left hip, stage 1|Pressure ulcer of left hip, stage 1 +C2888397|T047|PT|L89.221|ICD10CM|Pressure ulcer of left hip, stage 1|Pressure ulcer of left hip, stage 1 +C2888398|T047|ET|L89.222|ICD10CM|Healing pressure ulcer of left hip, stage 2|Healing pressure ulcer of left hip, stage 2 +C2888400|T047|AB|L89.222|ICD10CM|Pressure ulcer of left hip, stage 2|Pressure ulcer of left hip, stage 2 +C2888400|T047|PT|L89.222|ICD10CM|Pressure ulcer of left hip, stage 2|Pressure ulcer of left hip, stage 2 +C2888401|T047|ET|L89.223|ICD10CM|Healing pressure ulcer of left hip, stage 3|Healing pressure ulcer of left hip, stage 3 +C2888403|T047|AB|L89.223|ICD10CM|Pressure ulcer of left hip, stage 3|Pressure ulcer of left hip, stage 3 +C2888403|T047|PT|L89.223|ICD10CM|Pressure ulcer of left hip, stage 3|Pressure ulcer of left hip, stage 3 +C2888404|T047|ET|L89.224|ICD10CM|Healing pressure ulcer of left hip, stage 4|Healing pressure ulcer of left hip, stage 4 +C2888406|T047|AB|L89.224|ICD10CM|Pressure ulcer of left hip, stage 4|Pressure ulcer of left hip, stage 4 +C2888406|T047|PT|L89.224|ICD10CM|Pressure ulcer of left hip, stage 4|Pressure ulcer of left hip, stage 4 +C2888405|T047|ET|L89.224|ICD10CM|Pressure ulcer with necrosis of soft tissues through to underlying muscle, tendon, or bone, left hip|Pressure ulcer with necrosis of soft tissues through to underlying muscle, tendon, or bone, left hip +C5140848|T047|AB|L89.226|ICD10CM|Pressure-induced deep tissue damage of left hip|Pressure-induced deep tissue damage of left hip +C5140848|T047|PT|L89.226|ICD10CM|Pressure-induced deep tissue damage of left hip|Pressure-induced deep tissue damage of left hip +C2888407|T047|ET|L89.229|ICD10CM|Healing pressure ulcer of left hip NOS|Healing pressure ulcer of left hip NOS +C2888408|T047|ET|L89.229|ICD10CM|Healing pressure ulcer of left hip, unspecified stage|Healing pressure ulcer of left hip, unspecified stage +C2888409|T047|AB|L89.229|ICD10CM|Pressure ulcer of left hip, unspecified stage|Pressure ulcer of left hip, unspecified stage +C2888409|T047|PT|L89.229|ICD10CM|Pressure ulcer of left hip, unspecified stage|Pressure ulcer of left hip, unspecified stage +C0558160|T047|HT|L89.3|ICD10CM|Pressure ulcer of buttock|Pressure ulcer of buttock +C0558160|T047|AB|L89.3|ICD10CM|Pressure ulcer of buttock|Pressure ulcer of buttock +C2888410|T047|AB|L89.30|ICD10CM|Pressure ulcer of unspecified buttock|Pressure ulcer of unspecified buttock +C2888410|T047|HT|L89.30|ICD10CM|Pressure ulcer of unspecified buttock|Pressure ulcer of unspecified buttock +C2888411|T047|AB|L89.300|ICD10CM|Pressure ulcer of unspecified buttock, unstageable|Pressure ulcer of unspecified buttock, unstageable +C2888411|T047|PT|L89.300|ICD10CM|Pressure ulcer of unspecified buttock, unstageable|Pressure ulcer of unspecified buttock, unstageable +C2888412|T047|ET|L89.301|ICD10CM|Healing pressure ulcer of unspecified buttock, stage 1|Healing pressure ulcer of unspecified buttock, stage 1 +C2888413|T047|ET|L89.301|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, unspecified buttock|Pressure pre-ulcer skin changes limited to persistent focal edema, unspecified buttock +C2888414|T047|AB|L89.301|ICD10CM|Pressure ulcer of unspecified buttock, stage 1|Pressure ulcer of unspecified buttock, stage 1 +C2888414|T047|PT|L89.301|ICD10CM|Pressure ulcer of unspecified buttock, stage 1|Pressure ulcer of unspecified buttock, stage 1 +C2888415|T047|ET|L89.302|ICD10CM|Healing pressure ulcer of unspecified buttock, stage 2|Healing pressure ulcer of unspecified buttock, stage 2 +C2888417|T047|AB|L89.302|ICD10CM|Pressure ulcer of unspecified buttock, stage 2|Pressure ulcer of unspecified buttock, stage 2 +C2888417|T047|PT|L89.302|ICD10CM|Pressure ulcer of unspecified buttock, stage 2|Pressure ulcer of unspecified buttock, stage 2 +C2888418|T047|ET|L89.303|ICD10CM|Healing pressure ulcer of unspecified buttock, stage 3|Healing pressure ulcer of unspecified buttock, stage 3 +C2888420|T047|AB|L89.303|ICD10CM|Pressure ulcer of unspecified buttock, stage 3|Pressure ulcer of unspecified buttock, stage 3 +C2888420|T047|PT|L89.303|ICD10CM|Pressure ulcer of unspecified buttock, stage 3|Pressure ulcer of unspecified buttock, stage 3 +C2888421|T047|ET|L89.304|ICD10CM|Healing pressure ulcer of unspecified buttock, stage 4|Healing pressure ulcer of unspecified buttock, stage 4 +C2888423|T047|AB|L89.304|ICD10CM|Pressure ulcer of unspecified buttock, stage 4|Pressure ulcer of unspecified buttock, stage 4 +C2888423|T047|PT|L89.304|ICD10CM|Pressure ulcer of unspecified buttock, stage 4|Pressure ulcer of unspecified buttock, stage 4 +C5140849|T047|AB|L89.306|ICD10CM|Pressure-induced deep tissue damage of unspecified buttock|Pressure-induced deep tissue damage of unspecified buttock +C5140849|T047|PT|L89.306|ICD10CM|Pressure-induced deep tissue damage of unspecified buttock|Pressure-induced deep tissue damage of unspecified buttock +C2888424|T047|ET|L89.309|ICD10CM|Healing pressure ulcer of unspecified buttock NOS|Healing pressure ulcer of unspecified buttock NOS +C2888425|T047|ET|L89.309|ICD10CM|Healing pressure ulcer of unspecified buttock, unspecified stage|Healing pressure ulcer of unspecified buttock, unspecified stage +C2888426|T047|AB|L89.309|ICD10CM|Pressure ulcer of unspecified buttock, unspecified stage|Pressure ulcer of unspecified buttock, unspecified stage +C2888426|T047|PT|L89.309|ICD10CM|Pressure ulcer of unspecified buttock, unspecified stage|Pressure ulcer of unspecified buttock, unspecified stage +C2074662|T047|AB|L89.31|ICD10CM|Pressure ulcer of right buttock|Pressure ulcer of right buttock +C2074662|T047|HT|L89.31|ICD10CM|Pressure ulcer of right buttock|Pressure ulcer of right buttock +C2888428|T047|AB|L89.310|ICD10CM|Pressure ulcer of right buttock, unstageable|Pressure ulcer of right buttock, unstageable +C2888428|T047|PT|L89.310|ICD10CM|Pressure ulcer of right buttock, unstageable|Pressure ulcer of right buttock, unstageable +C2888429|T047|ET|L89.311|ICD10CM|Healing pressure ulcer of right buttock, stage 1|Healing pressure ulcer of right buttock, stage 1 +C2888430|T047|ET|L89.311|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, right buttock|Pressure pre-ulcer skin changes limited to persistent focal edema, right buttock +C2888431|T047|AB|L89.311|ICD10CM|Pressure ulcer of right buttock, stage 1|Pressure ulcer of right buttock, stage 1 +C2888431|T047|PT|L89.311|ICD10CM|Pressure ulcer of right buttock, stage 1|Pressure ulcer of right buttock, stage 1 +C2888432|T047|ET|L89.312|ICD10CM|Healing pressure ulcer of right buttock, stage 2|Healing pressure ulcer of right buttock, stage 2 +C2888434|T047|AB|L89.312|ICD10CM|Pressure ulcer of right buttock, stage 2|Pressure ulcer of right buttock, stage 2 +C2888434|T047|PT|L89.312|ICD10CM|Pressure ulcer of right buttock, stage 2|Pressure ulcer of right buttock, stage 2 +C2888435|T047|ET|L89.313|ICD10CM|Healing pressure ulcer of right buttock, stage 3|Healing pressure ulcer of right buttock, stage 3 +C2888437|T047|AB|L89.313|ICD10CM|Pressure ulcer of right buttock, stage 3|Pressure ulcer of right buttock, stage 3 +C2888437|T047|PT|L89.313|ICD10CM|Pressure ulcer of right buttock, stage 3|Pressure ulcer of right buttock, stage 3 +C2888438|T047|ET|L89.314|ICD10CM|Healing pressure ulcer of right buttock, stage 4|Healing pressure ulcer of right buttock, stage 4 +C2888440|T047|AB|L89.314|ICD10CM|Pressure ulcer of right buttock, stage 4|Pressure ulcer of right buttock, stage 4 +C2888440|T047|PT|L89.314|ICD10CM|Pressure ulcer of right buttock, stage 4|Pressure ulcer of right buttock, stage 4 +C5140850|T047|AB|L89.316|ICD10CM|Pressure-induced deep tissue damage of right buttock|Pressure-induced deep tissue damage of right buttock +C5140850|T047|PT|L89.316|ICD10CM|Pressure-induced deep tissue damage of right buttock|Pressure-induced deep tissue damage of right buttock +C2888441|T047|ET|L89.319|ICD10CM|Healing pressure ulcer of right buttock NOS|Healing pressure ulcer of right buttock NOS +C2888442|T047|ET|L89.319|ICD10CM|Healing pressure ulcer of right buttock, unspecified stage|Healing pressure ulcer of right buttock, unspecified stage +C2888443|T047|AB|L89.319|ICD10CM|Pressure ulcer of right buttock, unspecified stage|Pressure ulcer of right buttock, unspecified stage +C2888443|T047|PT|L89.319|ICD10CM|Pressure ulcer of right buttock, unspecified stage|Pressure ulcer of right buttock, unspecified stage +C2074657|T047|AB|L89.32|ICD10CM|Pressure ulcer of left buttock|Pressure ulcer of left buttock +C2074657|T047|HT|L89.32|ICD10CM|Pressure ulcer of left buttock|Pressure ulcer of left buttock +C2888445|T047|AB|L89.320|ICD10CM|Pressure ulcer of left buttock, unstageable|Pressure ulcer of left buttock, unstageable +C2888445|T047|PT|L89.320|ICD10CM|Pressure ulcer of left buttock, unstageable|Pressure ulcer of left buttock, unstageable +C2888446|T047|ET|L89.321|ICD10CM|Healing pressure ulcer of left buttock, stage 1|Healing pressure ulcer of left buttock, stage 1 +C2888447|T047|ET|L89.321|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, left buttock|Pressure pre-ulcer skin changes limited to persistent focal edema, left buttock +C2888448|T047|AB|L89.321|ICD10CM|Pressure ulcer of left buttock, stage 1|Pressure ulcer of left buttock, stage 1 +C2888448|T047|PT|L89.321|ICD10CM|Pressure ulcer of left buttock, stage 1|Pressure ulcer of left buttock, stage 1 +C2888449|T047|ET|L89.322|ICD10CM|Healing pressure ulcer of left buttock, stage 2|Healing pressure ulcer of left buttock, stage 2 +C2888451|T047|AB|L89.322|ICD10CM|Pressure ulcer of left buttock, stage 2|Pressure ulcer of left buttock, stage 2 +C2888451|T047|PT|L89.322|ICD10CM|Pressure ulcer of left buttock, stage 2|Pressure ulcer of left buttock, stage 2 +C2888452|T047|ET|L89.323|ICD10CM|Healing pressure ulcer of left buttock, stage 3|Healing pressure ulcer of left buttock, stage 3 +C2888454|T047|AB|L89.323|ICD10CM|Pressure ulcer of left buttock, stage 3|Pressure ulcer of left buttock, stage 3 +C2888454|T047|PT|L89.323|ICD10CM|Pressure ulcer of left buttock, stage 3|Pressure ulcer of left buttock, stage 3 +C2888455|T047|ET|L89.324|ICD10CM|Healing pressure ulcer of left buttock, stage 4|Healing pressure ulcer of left buttock, stage 4 +C2888457|T047|AB|L89.324|ICD10CM|Pressure ulcer of left buttock, stage 4|Pressure ulcer of left buttock, stage 4 +C2888457|T047|PT|L89.324|ICD10CM|Pressure ulcer of left buttock, stage 4|Pressure ulcer of left buttock, stage 4 +C5140851|T047|AB|L89.326|ICD10CM|Pressure-induced deep tissue damage of left buttock|Pressure-induced deep tissue damage of left buttock +C5140851|T047|PT|L89.326|ICD10CM|Pressure-induced deep tissue damage of left buttock|Pressure-induced deep tissue damage of left buttock +C2888458|T047|ET|L89.329|ICD10CM|Healing pressure ulcer of left buttock NOS|Healing pressure ulcer of left buttock NOS +C2888459|T047|ET|L89.329|ICD10CM|Healing pressure ulcer of left buttock, unspecified stage|Healing pressure ulcer of left buttock, unspecified stage +C2888460|T047|AB|L89.329|ICD10CM|Pressure ulcer of left buttock, unspecified stage|Pressure ulcer of left buttock, unspecified stage +C2888460|T047|PT|L89.329|ICD10CM|Pressure ulcer of left buttock, unspecified stage|Pressure ulcer of left buttock, unspecified stage +C2888461|T047|AB|L89.4|ICD10CM|Pressure ulcer of contiguous site of back, buttock and hip|Pressure ulcer of contiguous site of back, buttock and hip +C2888461|T047|HT|L89.4|ICD10CM|Pressure ulcer of contiguous site of back, buttock and hip|Pressure ulcer of contiguous site of back, buttock and hip +C2888462|T047|ET|L89.40|ICD10CM|Healing pressure ulcer of contiguous site of back, buttock and hip NOS|Healing pressure ulcer of contiguous site of back, buttock and hip NOS +C2888463|T047|ET|L89.40|ICD10CM|Healing pressure ulcer of contiguous site of back, buttock and hip, unspecified stage|Healing pressure ulcer of contiguous site of back, buttock and hip, unspecified stage +C2888464|T047|AB|L89.40|ICD10CM|Pressr ulc of contig site of back, buttock and hip, unsp stg|Pressr ulc of contig site of back, buttock and hip, unsp stg +C2888464|T047|PT|L89.40|ICD10CM|Pressure ulcer of contiguous site of back, buttock and hip, unspecified stage|Pressure ulcer of contiguous site of back, buttock and hip, unspecified stage +C2888465|T047|ET|L89.41|ICD10CM|Healing pressure ulcer of contiguous site of back, buttock and hip, stage 1|Healing pressure ulcer of contiguous site of back, buttock and hip, stage 1 +C2888467|T047|AB|L89.41|ICD10CM|Pressr ulcer of contig site of back, buttock and hip, stg 1|Pressr ulcer of contig site of back, buttock and hip, stg 1 +C2888467|T047|PT|L89.41|ICD10CM|Pressure ulcer of contiguous site of back, buttock and hip, stage 1|Pressure ulcer of contiguous site of back, buttock and hip, stage 1 +C2888468|T047|ET|L89.42|ICD10CM|Healing pressure ulcer of contiguous site of back, buttock and hip, stage 2|Healing pressure ulcer of contiguous site of back, buttock and hip, stage 2 +C2888470|T047|AB|L89.42|ICD10CM|Pressr ulcer of contig site of back, buttock and hip, stg 2|Pressr ulcer of contig site of back, buttock and hip, stg 2 +C2888470|T047|PT|L89.42|ICD10CM|Pressure ulcer of contiguous site of back, buttock and hip, stage 2|Pressure ulcer of contiguous site of back, buttock and hip, stage 2 +C2888471|T047|ET|L89.43|ICD10CM|Healing pressure ulcer of contiguous site of back, buttock and hip, stage 3|Healing pressure ulcer of contiguous site of back, buttock and hip, stage 3 +C2888473|T047|AB|L89.43|ICD10CM|Pressr ulcer of contig site of back, buttock and hip, stg 3|Pressr ulcer of contig site of back, buttock and hip, stg 3 +C2888473|T047|PT|L89.43|ICD10CM|Pressure ulcer of contiguous site of back, buttock and hip, stage 3|Pressure ulcer of contiguous site of back, buttock and hip, stage 3 +C2888474|T047|ET|L89.44|ICD10CM|Healing pressure ulcer of contiguous site of back, buttock and hip, stage 4|Healing pressure ulcer of contiguous site of back, buttock and hip, stage 4 +C2888476|T047|AB|L89.44|ICD10CM|Pressr ulcer of contig site of back, buttock and hip, stg 4|Pressr ulcer of contig site of back, buttock and hip, stg 4 +C2888476|T047|PT|L89.44|ICD10CM|Pressure ulcer of contiguous site of back, buttock and hip, stage 4|Pressure ulcer of contiguous site of back, buttock and hip, stage 4 +C2888477|T047|AB|L89.45|ICD10CM|Pressr ulc of contig site of back,buttock & hip, unstageable|Pressr ulc of contig site of back,buttock & hip, unstageable +C2888477|T047|PT|L89.45|ICD10CM|Pressure ulcer of contiguous site of back, buttock and hip, unstageable|Pressure ulcer of contiguous site of back, buttock and hip, unstageable +C5140852|T047|AB|L89.46|ICD10CM|Pressr-induc dp tiss damag of contig site of back, butt & hp|Pressr-induc dp tiss damag of contig site of back, butt & hp +C5140852|T047|PT|L89.46|ICD10CM|Pressure-induced deep tissue damage of contiguous site of back, buttock and hip|Pressure-induced deep tissue damage of contiguous site of back, buttock and hip +C0577713|T047|HT|L89.5|ICD10CM|Pressure ulcer of ankle|Pressure ulcer of ankle +C0577713|T047|AB|L89.5|ICD10CM|Pressure ulcer of ankle|Pressure ulcer of ankle +C2888478|T047|AB|L89.50|ICD10CM|Pressure ulcer of unspecified ankle|Pressure ulcer of unspecified ankle +C2888478|T047|HT|L89.50|ICD10CM|Pressure ulcer of unspecified ankle|Pressure ulcer of unspecified ankle +C2888479|T047|AB|L89.500|ICD10CM|Pressure ulcer of unspecified ankle, unstageable|Pressure ulcer of unspecified ankle, unstageable +C2888479|T047|PT|L89.500|ICD10CM|Pressure ulcer of unspecified ankle, unstageable|Pressure ulcer of unspecified ankle, unstageable +C2888480|T047|ET|L89.501|ICD10CM|Healing pressure ulcer of unspecified ankle, stage 1|Healing pressure ulcer of unspecified ankle, stage 1 +C2888481|T047|ET|L89.501|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, unspecified ankle|Pressure pre-ulcer skin changes limited to persistent focal edema, unspecified ankle +C2888482|T047|AB|L89.501|ICD10CM|Pressure ulcer of unspecified ankle, stage 1|Pressure ulcer of unspecified ankle, stage 1 +C2888482|T047|PT|L89.501|ICD10CM|Pressure ulcer of unspecified ankle, stage 1|Pressure ulcer of unspecified ankle, stage 1 +C2888483|T047|ET|L89.502|ICD10CM|Healing pressure ulcer of unspecified ankle, stage 2|Healing pressure ulcer of unspecified ankle, stage 2 +C2888485|T047|AB|L89.502|ICD10CM|Pressure ulcer of unspecified ankle, stage 2|Pressure ulcer of unspecified ankle, stage 2 +C2888485|T047|PT|L89.502|ICD10CM|Pressure ulcer of unspecified ankle, stage 2|Pressure ulcer of unspecified ankle, stage 2 +C2888486|T047|ET|L89.503|ICD10CM|Healing pressure ulcer of unspecified ankle, stage 3|Healing pressure ulcer of unspecified ankle, stage 3 +C2888488|T047|AB|L89.503|ICD10CM|Pressure ulcer of unspecified ankle, stage 3|Pressure ulcer of unspecified ankle, stage 3 +C2888488|T047|PT|L89.503|ICD10CM|Pressure ulcer of unspecified ankle, stage 3|Pressure ulcer of unspecified ankle, stage 3 +C2888489|T047|ET|L89.504|ICD10CM|Healing pressure ulcer of unspecified ankle, stage 4|Healing pressure ulcer of unspecified ankle, stage 4 +C2888491|T047|AB|L89.504|ICD10CM|Pressure ulcer of unspecified ankle, stage 4|Pressure ulcer of unspecified ankle, stage 4 +C2888491|T047|PT|L89.504|ICD10CM|Pressure ulcer of unspecified ankle, stage 4|Pressure ulcer of unspecified ankle, stage 4 +C5140853|T047|AB|L89.506|ICD10CM|Pressure-induced deep tissue damage of unspecified ankle|Pressure-induced deep tissue damage of unspecified ankle +C5140853|T047|PT|L89.506|ICD10CM|Pressure-induced deep tissue damage of unspecified ankle|Pressure-induced deep tissue damage of unspecified ankle +C2888492|T047|ET|L89.509|ICD10CM|Healing pressure ulcer of unspecified ankle NOS|Healing pressure ulcer of unspecified ankle NOS +C2888493|T047|ET|L89.509|ICD10CM|Healing pressure ulcer of unspecified ankle, unspecified stage|Healing pressure ulcer of unspecified ankle, unspecified stage +C2888494|T047|AB|L89.509|ICD10CM|Pressure ulcer of unspecified ankle, unspecified stage|Pressure ulcer of unspecified ankle, unspecified stage +C2888494|T047|PT|L89.509|ICD10CM|Pressure ulcer of unspecified ankle, unspecified stage|Pressure ulcer of unspecified ankle, unspecified stage +C2074661|T047|AB|L89.51|ICD10CM|Pressure ulcer of right ankle|Pressure ulcer of right ankle +C2074661|T047|HT|L89.51|ICD10CM|Pressure ulcer of right ankle|Pressure ulcer of right ankle +C2888496|T047|AB|L89.510|ICD10CM|Pressure ulcer of right ankle, unstageable|Pressure ulcer of right ankle, unstageable +C2888496|T047|PT|L89.510|ICD10CM|Pressure ulcer of right ankle, unstageable|Pressure ulcer of right ankle, unstageable +C2888497|T047|ET|L89.511|ICD10CM|Healing pressure ulcer of right ankle, stage 1|Healing pressure ulcer of right ankle, stage 1 +C2888498|T047|ET|L89.511|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, right ankle|Pressure pre-ulcer skin changes limited to persistent focal edema, right ankle +C2888499|T047|AB|L89.511|ICD10CM|Pressure ulcer of right ankle, stage 1|Pressure ulcer of right ankle, stage 1 +C2888499|T047|PT|L89.511|ICD10CM|Pressure ulcer of right ankle, stage 1|Pressure ulcer of right ankle, stage 1 +C2888500|T047|ET|L89.512|ICD10CM|Healing pressure ulcer of right ankle, stage 2|Healing pressure ulcer of right ankle, stage 2 +C2888502|T047|AB|L89.512|ICD10CM|Pressure ulcer of right ankle, stage 2|Pressure ulcer of right ankle, stage 2 +C2888502|T047|PT|L89.512|ICD10CM|Pressure ulcer of right ankle, stage 2|Pressure ulcer of right ankle, stage 2 +C2888503|T047|ET|L89.513|ICD10CM|Healing pressure ulcer of right ankle, stage 3|Healing pressure ulcer of right ankle, stage 3 +C2888505|T047|AB|L89.513|ICD10CM|Pressure ulcer of right ankle, stage 3|Pressure ulcer of right ankle, stage 3 +C2888505|T047|PT|L89.513|ICD10CM|Pressure ulcer of right ankle, stage 3|Pressure ulcer of right ankle, stage 3 +C2888506|T047|ET|L89.514|ICD10CM|Healing pressure ulcer of right ankle, stage 4|Healing pressure ulcer of right ankle, stage 4 +C2888508|T047|AB|L89.514|ICD10CM|Pressure ulcer of right ankle, stage 4|Pressure ulcer of right ankle, stage 4 +C2888508|T047|PT|L89.514|ICD10CM|Pressure ulcer of right ankle, stage 4|Pressure ulcer of right ankle, stage 4 +C5140854|T047|AB|L89.516|ICD10CM|Pressure-induced deep tissue damage of right ankle|Pressure-induced deep tissue damage of right ankle +C5140854|T047|PT|L89.516|ICD10CM|Pressure-induced deep tissue damage of right ankle|Pressure-induced deep tissue damage of right ankle +C2888509|T047|ET|L89.519|ICD10CM|Healing pressure ulcer of right ankle NOS|Healing pressure ulcer of right ankle NOS +C2888510|T047|ET|L89.519|ICD10CM|Healing pressure ulcer of right ankle, unspecified stage|Healing pressure ulcer of right ankle, unspecified stage +C2888511|T047|AB|L89.519|ICD10CM|Pressure ulcer of right ankle, unspecified stage|Pressure ulcer of right ankle, unspecified stage +C2888511|T047|PT|L89.519|ICD10CM|Pressure ulcer of right ankle, unspecified stage|Pressure ulcer of right ankle, unspecified stage +C2074656|T047|AB|L89.52|ICD10CM|Pressure ulcer of left ankle|Pressure ulcer of left ankle +C2074656|T047|HT|L89.52|ICD10CM|Pressure ulcer of left ankle|Pressure ulcer of left ankle +C2888513|T047|AB|L89.520|ICD10CM|Pressure ulcer of left ankle, unstageable|Pressure ulcer of left ankle, unstageable +C2888513|T047|PT|L89.520|ICD10CM|Pressure ulcer of left ankle, unstageable|Pressure ulcer of left ankle, unstageable +C2888514|T047|ET|L89.521|ICD10CM|Healing pressure ulcer of left ankle, stage 1|Healing pressure ulcer of left ankle, stage 1 +C4268683|T047|ET|L89.521|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, left ankle|Pressure pre-ulcer skin changes limited to persistent focal edema, left ankle +C2888516|T047|AB|L89.521|ICD10CM|Pressure ulcer of left ankle, stage 1|Pressure ulcer of left ankle, stage 1 +C2888516|T047|PT|L89.521|ICD10CM|Pressure ulcer of left ankle, stage 1|Pressure ulcer of left ankle, stage 1 +C2888517|T047|ET|L89.522|ICD10CM|Healing pressure ulcer of left ankle, stage 2|Healing pressure ulcer of left ankle, stage 2 +C2888519|T047|AB|L89.522|ICD10CM|Pressure ulcer of left ankle, stage 2|Pressure ulcer of left ankle, stage 2 +C2888519|T047|PT|L89.522|ICD10CM|Pressure ulcer of left ankle, stage 2|Pressure ulcer of left ankle, stage 2 +C2888520|T047|ET|L89.523|ICD10CM|Healing pressure ulcer of left ankle, stage 3|Healing pressure ulcer of left ankle, stage 3 +C2888522|T047|AB|L89.523|ICD10CM|Pressure ulcer of left ankle, stage 3|Pressure ulcer of left ankle, stage 3 +C2888522|T047|PT|L89.523|ICD10CM|Pressure ulcer of left ankle, stage 3|Pressure ulcer of left ankle, stage 3 +C2888523|T047|ET|L89.524|ICD10CM|Healing pressure ulcer of left ankle, stage 4|Healing pressure ulcer of left ankle, stage 4 +C2888525|T047|AB|L89.524|ICD10CM|Pressure ulcer of left ankle, stage 4|Pressure ulcer of left ankle, stage 4 +C2888525|T047|PT|L89.524|ICD10CM|Pressure ulcer of left ankle, stage 4|Pressure ulcer of left ankle, stage 4 +C5140855|T047|AB|L89.526|ICD10CM|Pressure-induced deep tissue damage of left ankle|Pressure-induced deep tissue damage of left ankle +C5140855|T047|PT|L89.526|ICD10CM|Pressure-induced deep tissue damage of left ankle|Pressure-induced deep tissue damage of left ankle +C2888526|T047|ET|L89.529|ICD10CM|Healing pressure ulcer of left ankle NOS|Healing pressure ulcer of left ankle NOS +C2888527|T047|ET|L89.529|ICD10CM|Healing pressure ulcer of left ankle, unspecified stage|Healing pressure ulcer of left ankle, unspecified stage +C2888528|T047|AB|L89.529|ICD10CM|Pressure ulcer of left ankle, unspecified stage|Pressure ulcer of left ankle, unspecified stage +C2888528|T047|PT|L89.529|ICD10CM|Pressure ulcer of left ankle, unspecified stage|Pressure ulcer of left ankle, unspecified stage +C0558158|T047|HT|L89.6|ICD10CM|Pressure ulcer of heel|Pressure ulcer of heel +C0558158|T047|AB|L89.6|ICD10CM|Pressure ulcer of heel|Pressure ulcer of heel +C2888529|T047|AB|L89.60|ICD10CM|Pressure ulcer of unspecified heel|Pressure ulcer of unspecified heel +C2888529|T047|HT|L89.60|ICD10CM|Pressure ulcer of unspecified heel|Pressure ulcer of unspecified heel +C2888530|T047|AB|L89.600|ICD10CM|Pressure ulcer of unspecified heel, unstageable|Pressure ulcer of unspecified heel, unstageable +C2888530|T047|PT|L89.600|ICD10CM|Pressure ulcer of unspecified heel, unstageable|Pressure ulcer of unspecified heel, unstageable +C2888531|T047|ET|L89.601|ICD10CM|Healing pressure ulcer of unspecified heel, stage 1|Healing pressure ulcer of unspecified heel, stage 1 +C2888532|T047|ET|L89.601|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, unspecified heel|Pressure pre-ulcer skin changes limited to persistent focal edema, unspecified heel +C2888533|T047|AB|L89.601|ICD10CM|Pressure ulcer of unspecified heel, stage 1|Pressure ulcer of unspecified heel, stage 1 +C2888533|T047|PT|L89.601|ICD10CM|Pressure ulcer of unspecified heel, stage 1|Pressure ulcer of unspecified heel, stage 1 +C2888534|T047|ET|L89.602|ICD10CM|Healing pressure ulcer of unspecified heel, stage 2|Healing pressure ulcer of unspecified heel, stage 2 +C2888536|T047|AB|L89.602|ICD10CM|Pressure ulcer of unspecified heel, stage 2|Pressure ulcer of unspecified heel, stage 2 +C2888536|T047|PT|L89.602|ICD10CM|Pressure ulcer of unspecified heel, stage 2|Pressure ulcer of unspecified heel, stage 2 +C2888537|T047|ET|L89.603|ICD10CM|Healing pressure ulcer of unspecified heel, stage 3|Healing pressure ulcer of unspecified heel, stage 3 +C2888539|T047|AB|L89.603|ICD10CM|Pressure ulcer of unspecified heel, stage 3|Pressure ulcer of unspecified heel, stage 3 +C2888539|T047|PT|L89.603|ICD10CM|Pressure ulcer of unspecified heel, stage 3|Pressure ulcer of unspecified heel, stage 3 +C2888540|T047|ET|L89.604|ICD10CM|Healing pressure ulcer of unspecified heel, stage 4|Healing pressure ulcer of unspecified heel, stage 4 +C2888542|T047|AB|L89.604|ICD10CM|Pressure ulcer of unspecified heel, stage 4|Pressure ulcer of unspecified heel, stage 4 +C2888542|T047|PT|L89.604|ICD10CM|Pressure ulcer of unspecified heel, stage 4|Pressure ulcer of unspecified heel, stage 4 +C5140856|T047|AB|L89.606|ICD10CM|Pressure-induced deep tissue damage of unspecified heel|Pressure-induced deep tissue damage of unspecified heel +C5140856|T047|PT|L89.606|ICD10CM|Pressure-induced deep tissue damage of unspecified heel|Pressure-induced deep tissue damage of unspecified heel +C2888543|T047|ET|L89.609|ICD10CM|Healing pressure ulcer of unspecified heel NOS|Healing pressure ulcer of unspecified heel NOS +C2888544|T047|ET|L89.609|ICD10CM|Healing pressure ulcer of unspecified heel, unspecified stage|Healing pressure ulcer of unspecified heel, unspecified stage +C2888545|T047|AB|L89.609|ICD10CM|Pressure ulcer of unspecified heel, unspecified stage|Pressure ulcer of unspecified heel, unspecified stage +C2888545|T047|PT|L89.609|ICD10CM|Pressure ulcer of unspecified heel, unspecified stage|Pressure ulcer of unspecified heel, unspecified stage +C2074664|T047|AB|L89.61|ICD10CM|Pressure ulcer of right heel|Pressure ulcer of right heel +C2074664|T047|HT|L89.61|ICD10CM|Pressure ulcer of right heel|Pressure ulcer of right heel +C2888547|T047|AB|L89.610|ICD10CM|Pressure ulcer of right heel, unstageable|Pressure ulcer of right heel, unstageable +C2888547|T047|PT|L89.610|ICD10CM|Pressure ulcer of right heel, unstageable|Pressure ulcer of right heel, unstageable +C2888548|T047|ET|L89.611|ICD10CM|Healing pressure ulcer of right heel, stage 1|Healing pressure ulcer of right heel, stage 1 +C2888549|T047|ET|L89.611|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, right heel|Pressure pre-ulcer skin changes limited to persistent focal edema, right heel +C2888550|T047|AB|L89.611|ICD10CM|Pressure ulcer of right heel, stage 1|Pressure ulcer of right heel, stage 1 +C2888550|T047|PT|L89.611|ICD10CM|Pressure ulcer of right heel, stage 1|Pressure ulcer of right heel, stage 1 +C2888551|T047|ET|L89.612|ICD10CM|Healing pressure ulcer of right heel, stage 2|Healing pressure ulcer of right heel, stage 2 +C2888553|T047|AB|L89.612|ICD10CM|Pressure ulcer of right heel, stage 2|Pressure ulcer of right heel, stage 2 +C2888553|T047|PT|L89.612|ICD10CM|Pressure ulcer of right heel, stage 2|Pressure ulcer of right heel, stage 2 +C2888554|T047|ET|L89.613|ICD10CM|Healing pressure ulcer of right heel, stage 3|Healing pressure ulcer of right heel, stage 3 +C2888556|T047|AB|L89.613|ICD10CM|Pressure ulcer of right heel, stage 3|Pressure ulcer of right heel, stage 3 +C2888556|T047|PT|L89.613|ICD10CM|Pressure ulcer of right heel, stage 3|Pressure ulcer of right heel, stage 3 +C2888557|T047|ET|L89.614|ICD10CM|Healing pressure ulcer of right heel, stage 4|Healing pressure ulcer of right heel, stage 4 +C2888559|T047|AB|L89.614|ICD10CM|Pressure ulcer of right heel, stage 4|Pressure ulcer of right heel, stage 4 +C2888559|T047|PT|L89.614|ICD10CM|Pressure ulcer of right heel, stage 4|Pressure ulcer of right heel, stage 4 +C5140857|T047|AB|L89.616|ICD10CM|Pressure-induced deep tissue damage of right heel|Pressure-induced deep tissue damage of right heel +C5140857|T047|PT|L89.616|ICD10CM|Pressure-induced deep tissue damage of right heel|Pressure-induced deep tissue damage of right heel +C2888560|T047|ET|L89.619|ICD10CM|Healing pressure ulcer of right heel NOS|Healing pressure ulcer of right heel NOS +C2888561|T047|ET|L89.619|ICD10CM|Healing pressure ulcer of right heel, unspecified stage|Healing pressure ulcer of right heel, unspecified stage +C2888562|T047|AB|L89.619|ICD10CM|Pressure ulcer of right heel, unspecified stage|Pressure ulcer of right heel, unspecified stage +C2888562|T047|PT|L89.619|ICD10CM|Pressure ulcer of right heel, unspecified stage|Pressure ulcer of right heel, unspecified stage +C2074659|T047|AB|L89.62|ICD10CM|Pressure ulcer of left heel|Pressure ulcer of left heel +C2074659|T047|HT|L89.62|ICD10CM|Pressure ulcer of left heel|Pressure ulcer of left heel +C2888564|T047|AB|L89.620|ICD10CM|Pressure ulcer of left heel, unstageable|Pressure ulcer of left heel, unstageable +C2888564|T047|PT|L89.620|ICD10CM|Pressure ulcer of left heel, unstageable|Pressure ulcer of left heel, unstageable +C2888565|T047|ET|L89.621|ICD10CM|Healing pressure ulcer of left heel, stage 1|Healing pressure ulcer of left heel, stage 1 +C2888566|T047|ET|L89.621|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, left heel|Pressure pre-ulcer skin changes limited to persistent focal edema, left heel +C3509886|T047|AB|L89.621|ICD10CM|Pressure ulcer of left heel, stage 1|Pressure ulcer of left heel, stage 1 +C3509886|T047|PT|L89.621|ICD10CM|Pressure ulcer of left heel, stage 1|Pressure ulcer of left heel, stage 1 +C2888568|T047|ET|L89.622|ICD10CM|Healing pressure ulcer of left heel, stage 2|Healing pressure ulcer of left heel, stage 2 +C2888570|T047|AB|L89.622|ICD10CM|Pressure ulcer of left heel, stage 2|Pressure ulcer of left heel, stage 2 +C2888570|T047|PT|L89.622|ICD10CM|Pressure ulcer of left heel, stage 2|Pressure ulcer of left heel, stage 2 +C2888571|T047|ET|L89.623|ICD10CM|Healing pressure ulcer of left heel, stage 3|Healing pressure ulcer of left heel, stage 3 +C2888573|T047|AB|L89.623|ICD10CM|Pressure ulcer of left heel, stage 3|Pressure ulcer of left heel, stage 3 +C2888573|T047|PT|L89.623|ICD10CM|Pressure ulcer of left heel, stage 3|Pressure ulcer of left heel, stage 3 +C2888574|T047|ET|L89.624|ICD10CM|Healing pressure ulcer of left heel, stage 4|Healing pressure ulcer of left heel, stage 4 +C2888576|T047|AB|L89.624|ICD10CM|Pressure ulcer of left heel, stage 4|Pressure ulcer of left heel, stage 4 +C2888576|T047|PT|L89.624|ICD10CM|Pressure ulcer of left heel, stage 4|Pressure ulcer of left heel, stage 4 +C5140858|T047|AB|L89.626|ICD10CM|Pressure-induced deep tissue damage of left heel|Pressure-induced deep tissue damage of left heel +C5140858|T047|PT|L89.626|ICD10CM|Pressure-induced deep tissue damage of left heel|Pressure-induced deep tissue damage of left heel +C2888577|T047|ET|L89.629|ICD10CM|Healing pressure ulcer of left heel NOS|Healing pressure ulcer of left heel NOS +C2888578|T047|ET|L89.629|ICD10CM|Healing pressure ulcer of left heel, unspecified stage|Healing pressure ulcer of left heel, unspecified stage +C2888579|T047|AB|L89.629|ICD10CM|Pressure ulcer of left heel, unspecified stage|Pressure ulcer of left heel, unspecified stage +C2888579|T047|PT|L89.629|ICD10CM|Pressure ulcer of left heel, unspecified stage|Pressure ulcer of left heel, unspecified stage +C1456142|T047|AB|L89.8|ICD10CM|Pressure ulcer of other site|Pressure ulcer of other site +C1456142|T047|HT|L89.8|ICD10CM|Pressure ulcer of other site|Pressure ulcer of other site +C2888581|T047|ET|L89.81|ICD10CM|Pressure ulcer of face|Pressure ulcer of face +C0558154|T047|HT|L89.81|ICD10CM|Pressure ulcer of head|Pressure ulcer of head +C0558154|T047|AB|L89.81|ICD10CM|Pressure ulcer of head|Pressure ulcer of head +C2888583|T047|AB|L89.810|ICD10CM|Pressure ulcer of head, unstageable|Pressure ulcer of head, unstageable +C2888583|T047|PT|L89.810|ICD10CM|Pressure ulcer of head, unstageable|Pressure ulcer of head, unstageable +C2888584|T047|ET|L89.811|ICD10CM|Healing pressure ulcer of head, stage 1|Healing pressure ulcer of head, stage 1 +C2888585|T047|ET|L89.811|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, head|Pressure pre-ulcer skin changes limited to persistent focal edema, head +C2888586|T047|AB|L89.811|ICD10CM|Pressure ulcer of head, stage 1|Pressure ulcer of head, stage 1 +C2888586|T047|PT|L89.811|ICD10CM|Pressure ulcer of head, stage 1|Pressure ulcer of head, stage 1 +C2888587|T047|ET|L89.812|ICD10CM|Healing pressure ulcer of head, stage 2|Healing pressure ulcer of head, stage 2 +C2888589|T047|AB|L89.812|ICD10CM|Pressure ulcer of head, stage 2|Pressure ulcer of head, stage 2 +C2888589|T047|PT|L89.812|ICD10CM|Pressure ulcer of head, stage 2|Pressure ulcer of head, stage 2 +C2888590|T047|ET|L89.813|ICD10CM|Healing pressure ulcer of head, stage 3|Healing pressure ulcer of head, stage 3 +C2888592|T047|AB|L89.813|ICD10CM|Pressure ulcer of head, stage 3|Pressure ulcer of head, stage 3 +C2888592|T047|PT|L89.813|ICD10CM|Pressure ulcer of head, stage 3|Pressure ulcer of head, stage 3 +C2888593|T047|ET|L89.814|ICD10CM|Healing pressure ulcer of head, stage 4|Healing pressure ulcer of head, stage 4 +C2888595|T047|AB|L89.814|ICD10CM|Pressure ulcer of head, stage 4|Pressure ulcer of head, stage 4 +C2888595|T047|PT|L89.814|ICD10CM|Pressure ulcer of head, stage 4|Pressure ulcer of head, stage 4 +C2888594|T047|ET|L89.814|ICD10CM|Pressure ulcer with necrosis of soft tissues through to underlying muscle, tendon, or bone, head|Pressure ulcer with necrosis of soft tissues through to underlying muscle, tendon, or bone, head +C5140859|T047|AB|L89.816|ICD10CM|Pressure-induced deep tissue damage of head|Pressure-induced deep tissue damage of head +C5140859|T047|PT|L89.816|ICD10CM|Pressure-induced deep tissue damage of head|Pressure-induced deep tissue damage of head +C2888596|T047|ET|L89.819|ICD10CM|Healing pressure ulcer of head NOS|Healing pressure ulcer of head NOS +C2888597|T047|ET|L89.819|ICD10CM|Healing pressure ulcer of head, unspecified stage|Healing pressure ulcer of head, unspecified stage +C2888598|T047|AB|L89.819|ICD10CM|Pressure ulcer of head, unspecified stage|Pressure ulcer of head, unspecified stage +C2888598|T047|PT|L89.819|ICD10CM|Pressure ulcer of head, unspecified stage|Pressure ulcer of head, unspecified stage +C1456142|T047|HT|L89.89|ICD10CM|Pressure ulcer of other site|Pressure ulcer of other site +C1456142|T047|AB|L89.89|ICD10CM|Pressure ulcer of other site|Pressure ulcer of other site +C2888599|T047|AB|L89.890|ICD10CM|Pressure ulcer of other site, unstageable|Pressure ulcer of other site, unstageable +C2888599|T047|PT|L89.890|ICD10CM|Pressure ulcer of other site, unstageable|Pressure ulcer of other site, unstageable +C2888600|T047|ET|L89.891|ICD10CM|Healing pressure ulcer of other site, stage 1|Healing pressure ulcer of other site, stage 1 +C2888601|T047|ET|L89.891|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, other site|Pressure pre-ulcer skin changes limited to persistent focal edema, other site +C2888602|T047|AB|L89.891|ICD10CM|Pressure ulcer of other site, stage 1|Pressure ulcer of other site, stage 1 +C2888602|T047|PT|L89.891|ICD10CM|Pressure ulcer of other site, stage 1|Pressure ulcer of other site, stage 1 +C2888603|T047|ET|L89.892|ICD10CM|Healing pressure ulcer of other site, stage 2|Healing pressure ulcer of other site, stage 2 +C2888605|T047|AB|L89.892|ICD10CM|Pressure ulcer of other site, stage 2|Pressure ulcer of other site, stage 2 +C2888605|T047|PT|L89.892|ICD10CM|Pressure ulcer of other site, stage 2|Pressure ulcer of other site, stage 2 +C2888606|T047|ET|L89.893|ICD10CM|Healing pressure ulcer of other site, stage 3|Healing pressure ulcer of other site, stage 3 +C2888608|T047|AB|L89.893|ICD10CM|Pressure ulcer of other site, stage 3|Pressure ulcer of other site, stage 3 +C2888608|T047|PT|L89.893|ICD10CM|Pressure ulcer of other site, stage 3|Pressure ulcer of other site, stage 3 +C2888609|T047|ET|L89.894|ICD10CM|Healing pressure ulcer of other site, stage 4|Healing pressure ulcer of other site, stage 4 +C2888611|T047|AB|L89.894|ICD10CM|Pressure ulcer of other site, stage 4|Pressure ulcer of other site, stage 4 +C2888611|T047|PT|L89.894|ICD10CM|Pressure ulcer of other site, stage 4|Pressure ulcer of other site, stage 4 +C5140860|T047|AB|L89.896|ICD10CM|Pressure-induced deep tissue damage of other site|Pressure-induced deep tissue damage of other site +C5140860|T047|PT|L89.896|ICD10CM|Pressure-induced deep tissue damage of other site|Pressure-induced deep tissue damage of other site +C2888612|T047|ET|L89.899|ICD10CM|Healing pressure ulcer of other site NOS|Healing pressure ulcer of other site NOS +C2888613|T047|ET|L89.899|ICD10CM|Healing pressure ulcer of other site, unspecified stage|Healing pressure ulcer of other site, unspecified stage +C2888614|T047|AB|L89.899|ICD10CM|Pressure ulcer of other site, unspecified stage|Pressure ulcer of other site, unspecified stage +C2888614|T047|PT|L89.899|ICD10CM|Pressure ulcer of other site, unspecified stage|Pressure ulcer of other site, unspecified stage +C0011127|T047|AB|L89.9|ICD10CM|Pressure ulcer of unspecified site|Pressure ulcer of unspecified site +C0011127|T047|HT|L89.9|ICD10CM|Pressure ulcer of unspecified site|Pressure ulcer of unspecified site +C2888616|T047|ET|L89.90|ICD10CM|Healing pressure ulcer of unspecified site NOS|Healing pressure ulcer of unspecified site NOS +C2888617|T047|ET|L89.90|ICD10CM|Healing pressure ulcer of unspecified site, unspecified stage|Healing pressure ulcer of unspecified site, unspecified stage +C2888618|T047|AB|L89.90|ICD10CM|Pressure ulcer of unspecified site, unspecified stage|Pressure ulcer of unspecified site, unspecified stage +C2888618|T047|PT|L89.90|ICD10CM|Pressure ulcer of unspecified site, unspecified stage|Pressure ulcer of unspecified site, unspecified stage +C2888619|T047|ET|L89.91|ICD10CM|Healing pressure ulcer of unspecified site, stage 1|Healing pressure ulcer of unspecified site, stage 1 +C2888620|T047|ET|L89.91|ICD10CM|Pressure pre-ulcer skin changes limited to persistent focal edema, unspecified site|Pressure pre-ulcer skin changes limited to persistent focal edema, unspecified site +C2888621|T047|AB|L89.91|ICD10CM|Pressure ulcer of unspecified site, stage 1|Pressure ulcer of unspecified site, stage 1 +C2888621|T047|PT|L89.91|ICD10CM|Pressure ulcer of unspecified site, stage 1|Pressure ulcer of unspecified site, stage 1 +C2888622|T047|ET|L89.92|ICD10CM|Healing pressure ulcer of unspecified site, stage 2|Healing pressure ulcer of unspecified site, stage 2 +C2888624|T047|AB|L89.92|ICD10CM|Pressure ulcer of unspecified site, stage 2|Pressure ulcer of unspecified site, stage 2 +C2888624|T047|PT|L89.92|ICD10CM|Pressure ulcer of unspecified site, stage 2|Pressure ulcer of unspecified site, stage 2 +C2888625|T047|ET|L89.93|ICD10CM|Healing pressure ulcer of unspecified site, stage 3|Healing pressure ulcer of unspecified site, stage 3 +C2888627|T047|AB|L89.93|ICD10CM|Pressure ulcer of unspecified site, stage 3|Pressure ulcer of unspecified site, stage 3 +C2888627|T047|PT|L89.93|ICD10CM|Pressure ulcer of unspecified site, stage 3|Pressure ulcer of unspecified site, stage 3 +C2888628|T047|ET|L89.94|ICD10CM|Healing pressure ulcer of unspecified site, stage 4|Healing pressure ulcer of unspecified site, stage 4 +C2888630|T047|AB|L89.94|ICD10CM|Pressure ulcer of unspecified site, stage 4|Pressure ulcer of unspecified site, stage 4 +C2888630|T047|PT|L89.94|ICD10CM|Pressure ulcer of unspecified site, stage 4|Pressure ulcer of unspecified site, stage 4 +C2888631|T047|AB|L89.95|ICD10CM|Pressure ulcer of unspecified site, unstageable|Pressure ulcer of unspecified site, unstageable +C2888631|T047|PT|L89.95|ICD10CM|Pressure ulcer of unspecified site, unstageable|Pressure ulcer of unspecified site, unstageable +C5140861|T047|AB|L89.96|ICD10CM|Pressure-induced deep tissue damage of unspecified site|Pressure-induced deep tissue damage of unspecified site +C5140861|T047|PT|L89.96|ICD10CM|Pressure-induced deep tissue damage of unspecified site|Pressure-induced deep tissue damage of unspecified site +C0151514|T047|HT|L90|ICD10|Atrophic disorders of skin|Atrophic disorders of skin +C0151514|T047|AB|L90|ICD10CM|Atrophic disorders of skin|Atrophic disorders of skin +C0151514|T047|HT|L90|ICD10CM|Atrophic disorders of skin|Atrophic disorders of skin +C0023652|T047|PT|L90.0|ICD10CM|Lichen sclerosus et atrophicus|Lichen sclerosus et atrophicus +C0023652|T047|AB|L90.0|ICD10CM|Lichen sclerosus et atrophicus|Lichen sclerosus et atrophicus +C0023652|T047|PT|L90.0|ICD10|Lichen sclerosus et atrophicus|Lichen sclerosus et atrophicus +C0406552|T047|PT|L90.1|ICD10|Anetoderma of Schweninger-Buzzi|Anetoderma of Schweninger-Buzzi +C0406552|T047|PT|L90.1|ICD10CM|Anetoderma of Schweninger-Buzzi|Anetoderma of Schweninger-Buzzi +C0406552|T047|AB|L90.1|ICD10CM|Anetoderma of Schweninger-Buzzi|Anetoderma of Schweninger-Buzzi +C0406551|T047|PT|L90.2|ICD10CM|Anetoderma of Jadassohn-Pellizzari|Anetoderma of Jadassohn-Pellizzari +C0406551|T047|AB|L90.2|ICD10CM|Anetoderma of Jadassohn-Pellizzari|Anetoderma of Jadassohn-Pellizzari +C0406551|T047|PT|L90.2|ICD10|Anetoderma of Jadassohn-Pellizzari|Anetoderma of Jadassohn-Pellizzari +C0263411|T047|PT|L90.3|ICD10|Atrophoderma of Pasini and Pierini|Atrophoderma of Pasini and Pierini +C0263411|T047|PT|L90.3|ICD10CM|Atrophoderma of Pasini and Pierini|Atrophoderma of Pasini and Pierini +C0263411|T047|AB|L90.3|ICD10CM|Atrophoderma of Pasini and Pierini|Atrophoderma of Pasini and Pierini +C0263421|T047|PT|L90.4|ICD10CM|Acrodermatitis chronica atrophicans|Acrodermatitis chronica atrophicans +C0263421|T047|AB|L90.4|ICD10CM|Acrodermatitis chronica atrophicans|Acrodermatitis chronica atrophicans +C0263421|T047|PT|L90.4|ICD10|Acrodermatitis chronica atrophicans|Acrodermatitis chronica atrophicans +C2888632|T033|ET|L90.5|ICD10CM|Adherent scar (skin)|Adherent scar (skin) +C2004491|T046|ET|L90.5|ICD10CM|Cicatrix|Cicatrix +C1399769|T020|ET|L90.5|ICD10CM|Disfigurement of skin due to scar|Disfigurement of skin due to scar +C0263008|T046|ET|L90.5|ICD10CM|Fibrosis of skin NOS|Fibrosis of skin NOS +C0036278|T020|PT|L90.5|ICD10|Scar conditions and fibrosis of skin|Scar conditions and fibrosis of skin +C0036278|T020|PT|L90.5|ICD10CM|Scar conditions and fibrosis of skin|Scar conditions and fibrosis of skin +C0036278|T020|AB|L90.5|ICD10CM|Scar conditions and fibrosis of skin|Scar conditions and fibrosis of skin +C2004491|T046|ET|L90.5|ICD10CM|Scar NOS|Scar NOS +C0152459|T020|PT|L90.6|ICD10CM|Striae atrophicae|Striae atrophicae +C0152459|T020|AB|L90.6|ICD10CM|Striae atrophicae|Striae atrophicae +C0152459|T020|PT|L90.6|ICD10|Striae atrophicae|Striae atrophicae +C0477522|T047|PT|L90.8|ICD10|Other atrophic disorders of skin|Other atrophic disorders of skin +C0477522|T047|PT|L90.8|ICD10CM|Other atrophic disorders of skin|Other atrophic disorders of skin +C0477522|T047|AB|L90.8|ICD10CM|Other atrophic disorders of skin|Other atrophic disorders of skin +C0151514|T047|PT|L90.9|ICD10|Atrophic disorder of skin, unspecified|Atrophic disorder of skin, unspecified +C0151514|T047|PT|L90.9|ICD10CM|Atrophic disorder of skin, unspecified|Atrophic disorder of skin, unspecified +C0151514|T047|AB|L90.9|ICD10CM|Atrophic disorder of skin, unspecified|Atrophic disorder of skin, unspecified +C0263630|T047|HT|L91|ICD10|Hypertrophic disorders of skin|Hypertrophic disorders of skin +C0263630|T047|AB|L91|ICD10CM|Hypertrophic disorders of skin|Hypertrophic disorders of skin +C0263630|T047|HT|L91|ICD10CM|Hypertrophic disorders of skin|Hypertrophic disorders of skin +C0162810|T020|PT|L91.0|ICD10CM|Hypertrophic scar|Hypertrophic scar +C0162810|T020|AB|L91.0|ICD10CM|Hypertrophic scar|Hypertrophic scar +C0022548|T020|ET|L91.0|ICD10CM|Keloid|Keloid +C0022548|T020|ET|L91.0|ICD10CM|Keloid scar|Keloid scar +C0022548|T020|PT|L91.0|ICD10|Keloid scar|Keloid scar +C0477523|T047|PT|L91.8|ICD10|Other hypertrophic disorders of skin|Other hypertrophic disorders of skin +C0477523|T047|AB|L91.8|ICD10CM|Other hypertrophic disorders of the skin|Other hypertrophic disorders of the skin +C0477523|T047|PT|L91.8|ICD10CM|Other hypertrophic disorders of the skin|Other hypertrophic disorders of the skin +C0263630|T047|PT|L91.9|ICD10|Hypertrophic disorder of skin, unspecified|Hypertrophic disorder of skin, unspecified +C0263630|T047|AB|L91.9|ICD10CM|Hypertrophic disorder of the skin, unspecified|Hypertrophic disorder of the skin, unspecified +C0263630|T047|PT|L91.9|ICD10CM|Hypertrophic disorder of the skin, unspecified|Hypertrophic disorder of the skin, unspecified +C0406388|T047|HT|L92|ICD10|Granulomatous disorders of skin and subcutaneous tissue|Granulomatous disorders of skin and subcutaneous tissue +C0406388|T047|AB|L92|ICD10CM|Granulomatous disorders of skin and subcutaneous tissue|Granulomatous disorders of skin and subcutaneous tissue +C0406388|T047|HT|L92|ICD10CM|Granulomatous disorders of skin and subcutaneous tissue|Granulomatous disorders of skin and subcutaneous tissue +C0085074|T047|PT|L92.0|ICD10CM|Granuloma annulare|Granuloma annulare +C0085074|T047|AB|L92.0|ICD10CM|Granuloma annulare|Granuloma annulare +C0085074|T047|PT|L92.0|ICD10|Granuloma annulare|Granuloma annulare +C1304165|T047|ET|L92.0|ICD10CM|Perforating granuloma annulare|Perforating granuloma annulare +C0494882|T047|PT|L92.1|ICD10|Necrobiosis lipoidica, not elsewhere classified|Necrobiosis lipoidica, not elsewhere classified +C0494882|T047|PT|L92.1|ICD10CM|Necrobiosis lipoidica, not elsewhere classified|Necrobiosis lipoidica, not elsewhere classified +C0494882|T047|AB|L92.1|ICD10CM|Necrobiosis lipoidica, not elsewhere classified|Necrobiosis lipoidica, not elsewhere classified +C0239495|T047|PT|L92.2|ICD10CM|Granuloma faciale [eosinophilic granuloma of skin]|Granuloma faciale [eosinophilic granuloma of skin] +C0239495|T047|AB|L92.2|ICD10CM|Granuloma faciale [eosinophilic granuloma of skin]|Granuloma faciale [eosinophilic granuloma of skin] +C0239495|T047|PT|L92.2|ICD10|Granuloma faciale [eosinophilic granuloma of skin]|Granuloma faciale [eosinophilic granuloma of skin] +C0157746|T047|PT|L92.3|ICD10|Foreign body granuloma of skin and subcutaneous tissue|Foreign body granuloma of skin and subcutaneous tissue +C0157746|T047|AB|L92.3|ICD10CM|Foreign body granuloma of the skin and subcutaneous tissue|Foreign body granuloma of the skin and subcutaneous tissue +C0157746|T047|PT|L92.3|ICD10CM|Foreign body granuloma of the skin and subcutaneous tissue|Foreign body granuloma of the skin and subcutaneous tissue +C0477524|T047|AB|L92.8|ICD10CM|Oth granulomatous disorders of the skin, subcu|Oth granulomatous disorders of the skin, subcu +C0477524|T047|PT|L92.8|ICD10|Other granulomatous disorders of skin and subcutaneous tissue|Other granulomatous disorders of skin and subcutaneous tissue +C0477524|T047|PT|L92.8|ICD10CM|Other granulomatous disorders of the skin and subcutaneous tissue|Other granulomatous disorders of the skin and subcutaneous tissue +C0406388|T047|PT|L92.9|ICD10|Granulomatous disorder of skin and subcutaneous tissue, unspecified|Granulomatous disorder of skin and subcutaneous tissue, unspecified +C0406388|T047|PT|L92.9|ICD10CM|Granulomatous disorder of the skin and subcutaneous tissue, unspecified|Granulomatous disorder of the skin and subcutaneous tissue, unspecified +C0406388|T047|AB|L92.9|ICD10CM|Granulomatous disorder of the skin, subcu, unsp|Granulomatous disorder of the skin, subcu, unsp +C0409974|T047|HT|L93|ICD10CM|Lupus erythematosus|Lupus erythematosus +C0409974|T047|AB|L93|ICD10CM|Lupus erythematosus|Lupus erythematosus +C0409974|T047|HT|L93|ICD10|Lupus erythematosus|Lupus erythematosus +C0024138|T047|PT|L93.0|ICD10CM|Discoid lupus erythematosus|Discoid lupus erythematosus +C0024138|T047|AB|L93.0|ICD10CM|Discoid lupus erythematosus|Discoid lupus erythematosus +C0024138|T047|PT|L93.0|ICD10|Discoid lupus erythematosus|Discoid lupus erythematosus +C0409974|T047|ET|L93.0|ICD10CM|Lupus erythematosus NOS|Lupus erythematosus NOS +C0024140|T047|PT|L93.1|ICD10|Subacute cutaneous lupus erythematosus|Subacute cutaneous lupus erythematosus +C0024140|T047|PT|L93.1|ICD10CM|Subacute cutaneous lupus erythematosus|Subacute cutaneous lupus erythematosus +C0024140|T047|AB|L93.1|ICD10CM|Subacute cutaneous lupus erythematosus|Subacute cutaneous lupus erythematosus +C0030327|T047|ET|L93.2|ICD10CM|Lupus erythematosus profundus|Lupus erythematosus profundus +C0030327|T047|ET|L93.2|ICD10CM|Lupus panniculitis|Lupus panniculitis +C0477525|T047|PT|L93.2|ICD10|Other local lupus erythematosus|Other local lupus erythematosus +C0477525|T047|PT|L93.2|ICD10CM|Other local lupus erythematosus|Other local lupus erythematosus +C0477525|T047|AB|L93.2|ICD10CM|Other local lupus erythematosus|Other local lupus erythematosus +C0494885|T047|AB|L94|ICD10CM|Other localized connective tissue disorders|Other localized connective tissue disorders +C0494885|T047|HT|L94|ICD10CM|Other localized connective tissue disorders|Other localized connective tissue disorders +C0494885|T047|HT|L94|ICD10|Other localized connective tissue disorders|Other localized connective tissue disorders +C0036420|T047|ET|L94.0|ICD10CM|Circumscribed scleroderma|Circumscribed scleroderma +C0036420|T047|PT|L94.0|ICD10CM|Localized scleroderma [morphea]|Localized scleroderma [morphea] +C0036420|T047|AB|L94.0|ICD10CM|Localized scleroderma [morphea]|Localized scleroderma [morphea] +C0036420|T047|PT|L94.0|ICD10|Localized scleroderma [morphea]|Localized scleroderma [morphea] +C0392441|T047|ET|L94.1|ICD10CM|En coup de sabre lesion|En coup de sabre lesion +C0263409|T047|PT|L94.1|ICD10|Linear scleroderma|Linear scleroderma +C0263409|T047|PT|L94.1|ICD10CM|Linear scleroderma|Linear scleroderma +C0263409|T047|AB|L94.1|ICD10CM|Linear scleroderma|Linear scleroderma +C0006664|T047|PT|L94.2|ICD10CM|Calcinosis cutis|Calcinosis cutis +C0006664|T047|AB|L94.2|ICD10CM|Calcinosis cutis|Calcinosis cutis +C0006664|T047|PT|L94.2|ICD10|Calcinosis cutis|Calcinosis cutis +C0150988|T047|PT|L94.3|ICD10|Sclerodactyly|Sclerodactyly +C0150988|T047|PT|L94.3|ICD10CM|Sclerodactyly|Sclerodactyly +C0150988|T047|AB|L94.3|ICD10CM|Sclerodactyly|Sclerodactyly +C0423781|T033|PT|L94.4|ICD10CM|Gottron's papules|Gottron's papules +C0423781|T033|AB|L94.4|ICD10CM|Gottron's papules|Gottron's papules +C0423781|T033|PT|L94.4|ICD10|Gottron's papules|Gottron's papules +C0263369|T047|PT|L94.5|ICD10CM|Poikiloderma vasculare atrophicans|Poikiloderma vasculare atrophicans +C0263369|T047|AB|L94.5|ICD10CM|Poikiloderma vasculare atrophicans|Poikiloderma vasculare atrophicans +C0263369|T047|PT|L94.5|ICD10|Poikiloderma vasculare atrophicans|Poikiloderma vasculare atrophicans +C0001860|T047|PT|L94.6|ICD10|Ainhum|Ainhum +C0001860|T047|PT|L94.6|ICD10CM|Ainhum|Ainhum +C0001860|T047|AB|L94.6|ICD10CM|Ainhum|Ainhum +C0477526|T047|PT|L94.8|ICD10|Other specified localized connective tissue disorders|Other specified localized connective tissue disorders +C0477526|T047|PT|L94.8|ICD10CM|Other specified localized connective tissue disorders|Other specified localized connective tissue disorders +C0477526|T047|AB|L94.8|ICD10CM|Other specified localized connective tissue disorders|Other specified localized connective tissue disorders +C0477531|T047|PT|L94.9|ICD10CM|Localized connective tissue disorder, unspecified|Localized connective tissue disorder, unspecified +C0477531|T047|AB|L94.9|ICD10CM|Localized connective tissue disorder, unspecified|Localized connective tissue disorder, unspecified +C0477531|T047|PT|L94.9|ICD10|Localized connective tissue disorder, unspecified|Localized connective tissue disorder, unspecified +C0494887|T047|HT|L95|ICD10|Vasculitis limited to skin, not elsewhere classified|Vasculitis limited to skin, not elsewhere classified +C0494887|T047|AB|L95|ICD10CM|Vasculitis limited to skin, not elsewhere classified|Vasculitis limited to skin, not elsewhere classified +C0494887|T047|HT|L95|ICD10CM|Vasculitis limited to skin, not elsewhere classified|Vasculitis limited to skin, not elsewhere classified +C2888634|T047|ET|L95.0|ICD10CM|Atrophie blanche (en plaque)|Atrophie blanche (en plaque) +C0343081|T047|PT|L95.0|ICD10CM|Livedoid vasculitis|Livedoid vasculitis +C0343081|T047|AB|L95.0|ICD10CM|Livedoid vasculitis|Livedoid vasculitis +C0343081|T047|PT|L95.0|ICD10|Livedoid vasculitis|Livedoid vasculitis +C0263398|T047|PT|L95.1|ICD10|Erythema elevatum diutinum|Erythema elevatum diutinum +C0263398|T047|PT|L95.1|ICD10CM|Erythema elevatum diutinum|Erythema elevatum diutinum +C0263398|T047|AB|L95.1|ICD10CM|Erythema elevatum diutinum|Erythema elevatum diutinum +C0477527|T047|PT|L95.8|ICD10|Other vasculitis limited to skin|Other vasculitis limited to skin +C0477527|T047|AB|L95.8|ICD10CM|Other vasculitis limited to the skin|Other vasculitis limited to the skin +C0477527|T047|PT|L95.8|ICD10CM|Other vasculitis limited to the skin|Other vasculitis limited to the skin +C0262988|T047|PT|L95.9|ICD10|Vasculitis limited to skin, unspecified|Vasculitis limited to skin, unspecified +C0262988|T047|AB|L95.9|ICD10CM|Vasculitis limited to the skin, unspecified|Vasculitis limited to the skin, unspecified +C0262988|T047|PT|L95.9|ICD10CM|Vasculitis limited to the skin, unspecified|Vasculitis limited to the skin, unspecified +C4290220|T047|ET|L97|ICD10CM|chronic ulcer of skin of lower limb NOS|chronic ulcer of skin of lower limb NOS +C0748826|T047|ET|L97|ICD10CM|non-healing ulcer of skin|non-healing ulcer of skin +C4290221|T047|ET|L97|ICD10CM|non-infected sinus of skin|non-infected sinus of skin +C2888636|T047|AB|L97|ICD10CM|Non-pressure chronic ulcer of lower limb, NEC|Non-pressure chronic ulcer of lower limb, NEC +C2888636|T047|HT|L97|ICD10CM|Non-pressure chronic ulcer of lower limb, not elsewhere classified|Non-pressure chronic ulcer of lower limb, not elsewhere classified +C0702134|T047|ET|L97|ICD10CM|trophic ulcer NOS|trophic ulcer NOS +C0263556|T047|ET|L97|ICD10CM|tropical ulcer NOS|tropical ulcer NOS +C0494888|T047|PT|L97|ICD10|Ulcer of lower limb, not elsewhere classified|Ulcer of lower limb, not elsewhere classified +C1399785|T047|ET|L97|ICD10CM|ulcer of skin of lower limb NOS|ulcer of skin of lower limb NOS +C2074953|T047|AB|L97.1|ICD10CM|Non-pressure chronic ulcer of thigh|Non-pressure chronic ulcer of thigh +C2074953|T047|HT|L97.1|ICD10CM|Non-pressure chronic ulcer of thigh|Non-pressure chronic ulcer of thigh +C2888638|T047|AB|L97.10|ICD10CM|Non-pressure chronic ulcer of unspecified thigh|Non-pressure chronic ulcer of unspecified thigh +C2888638|T047|HT|L97.10|ICD10CM|Non-pressure chronic ulcer of unspecified thigh|Non-pressure chronic ulcer of unspecified thigh +C2888639|T047|PT|L97.101|ICD10CM|Non-pressure chronic ulcer of unspecified thigh limited to breakdown of skin|Non-pressure chronic ulcer of unspecified thigh limited to breakdown of skin +C2888639|T047|AB|L97.101|ICD10CM|Non-prs chronic ulcer of unsp thigh limited to brkdwn skin|Non-prs chronic ulcer of unsp thigh limited to brkdwn skin +C2888640|T047|AB|L97.102|ICD10CM|Non-pressure chronic ulcer of unsp thigh w fat layer exposed|Non-pressure chronic ulcer of unsp thigh w fat layer exposed +C2888640|T047|PT|L97.102|ICD10CM|Non-pressure chronic ulcer of unspecified thigh with fat layer exposed|Non-pressure chronic ulcer of unspecified thigh with fat layer exposed +C2888641|T047|PT|L97.103|ICD10CM|Non-pressure chronic ulcer of unspecified thigh with necrosis of muscle|Non-pressure chronic ulcer of unspecified thigh with necrosis of muscle +C2888641|T047|AB|L97.103|ICD10CM|Non-prs chronic ulcer of unsp thigh w necrosis of muscle|Non-prs chronic ulcer of unsp thigh w necrosis of muscle +C2888642|T047|AB|L97.104|ICD10CM|Non-pressure chronic ulcer of unsp thigh w necrosis of bone|Non-pressure chronic ulcer of unsp thigh w necrosis of bone +C2888642|T047|PT|L97.104|ICD10CM|Non-pressure chronic ulcer of unspecified thigh with necrosis of bone|Non-pressure chronic ulcer of unspecified thigh with necrosis of bone +C4509275|T047|PT|L97.105|ICD10CM|Non-pressure chronic ulcer of unspecified thigh with muscle involvement without evidence of necrosis|Non-pressure chronic ulcer of unspecified thigh with muscle involvement without evidence of necrosis +C4509275|T047|AB|L97.105|ICD10CM|Non-prs chr ulc of unsp thigh with msl invl w/o evd of necr|Non-prs chr ulc of unsp thigh with msl invl w/o evd of necr +C4509276|T047|PT|L97.106|ICD10CM|Non-pressure chronic ulcer of unspecified thigh with bone involvement without evidence of necrosis|Non-pressure chronic ulcer of unspecified thigh with bone involvement without evidence of necrosis +C4509276|T047|AB|L97.106|ICD10CM|Non-prs chr ulc of unsp thigh with bone invl w/o evd of necr|Non-prs chr ulc of unsp thigh with bone invl w/o evd of necr +C4509277|T047|PT|L97.108|ICD10CM|Non-pressure chronic ulcer of unspecified thigh with other specified severity|Non-pressure chronic ulcer of unspecified thigh with other specified severity +C4509277|T047|AB|L97.108|ICD10CM|Non-prs chronic ulcer of unspecified thigh with oth severity|Non-prs chronic ulcer of unspecified thigh with oth severity +C2888643|T047|AB|L97.109|ICD10CM|Non-pressure chronic ulcer of unsp thigh with unsp severity|Non-pressure chronic ulcer of unsp thigh with unsp severity +C2888643|T047|PT|L97.109|ICD10CM|Non-pressure chronic ulcer of unspecified thigh with unspecified severity|Non-pressure chronic ulcer of unspecified thigh with unspecified severity +C2074949|T047|AB|L97.11|ICD10CM|Non-pressure chronic ulcer of right thigh|Non-pressure chronic ulcer of right thigh +C2074949|T047|HT|L97.11|ICD10CM|Non-pressure chronic ulcer of right thigh|Non-pressure chronic ulcer of right thigh +C2888645|T047|PT|L97.111|ICD10CM|Non-pressure chronic ulcer of right thigh limited to breakdown of skin|Non-pressure chronic ulcer of right thigh limited to breakdown of skin +C2888645|T047|AB|L97.111|ICD10CM|Non-prs chronic ulcer of right thigh limited to brkdwn skin|Non-prs chronic ulcer of right thigh limited to brkdwn skin +C2888646|T047|PT|L97.112|ICD10CM|Non-pressure chronic ulcer of right thigh with fat layer exposed|Non-pressure chronic ulcer of right thigh with fat layer exposed +C2888646|T047|AB|L97.112|ICD10CM|Non-prs chronic ulcer of right thigh w fat layer exposed|Non-prs chronic ulcer of right thigh w fat layer exposed +C2888647|T047|PT|L97.113|ICD10CM|Non-pressure chronic ulcer of right thigh with necrosis of muscle|Non-pressure chronic ulcer of right thigh with necrosis of muscle +C2888647|T047|AB|L97.113|ICD10CM|Non-prs chronic ulcer of right thigh w necrosis of muscle|Non-prs chronic ulcer of right thigh w necrosis of muscle +C2888648|T047|AB|L97.114|ICD10CM|Non-pressure chronic ulcer of right thigh w necrosis of bone|Non-pressure chronic ulcer of right thigh w necrosis of bone +C2888648|T047|PT|L97.114|ICD10CM|Non-pressure chronic ulcer of right thigh with necrosis of bone|Non-pressure chronic ulcer of right thigh with necrosis of bone +C4509278|T047|PT|L97.115|ICD10CM|Non-pressure chronic ulcer of right thigh with muscle involvement without evidence of necrosis|Non-pressure chronic ulcer of right thigh with muscle involvement without evidence of necrosis +C4509278|T047|AB|L97.115|ICD10CM|Non-prs chr ulcer of r thigh with msl invl w/o evd of necr|Non-prs chr ulcer of r thigh with msl invl w/o evd of necr +C4509279|T047|PT|L97.116|ICD10CM|Non-pressure chronic ulcer of right thigh with bone involvement without evidence of necrosis|Non-pressure chronic ulcer of right thigh with bone involvement without evidence of necrosis +C4509279|T047|AB|L97.116|ICD10CM|Non-prs chr ulcer of r thigh with bone invl w/o evd of necr|Non-prs chr ulcer of r thigh with bone invl w/o evd of necr +C4509280|T047|AB|L97.118|ICD10CM|Non-pressure chronic ulcer of right thigh with oth severity|Non-pressure chronic ulcer of right thigh with oth severity +C4509280|T047|PT|L97.118|ICD10CM|Non-pressure chronic ulcer of right thigh with other specified severity|Non-pressure chronic ulcer of right thigh with other specified severity +C2888649|T047|AB|L97.119|ICD10CM|Non-pressure chronic ulcer of right thigh with unsp severity|Non-pressure chronic ulcer of right thigh with unsp severity +C2888649|T047|PT|L97.119|ICD10CM|Non-pressure chronic ulcer of right thigh with unspecified severity|Non-pressure chronic ulcer of right thigh with unspecified severity +C2074943|T047|AB|L97.12|ICD10CM|Non-pressure chronic ulcer of left thigh|Non-pressure chronic ulcer of left thigh +C2074943|T047|HT|L97.12|ICD10CM|Non-pressure chronic ulcer of left thigh|Non-pressure chronic ulcer of left thigh +C2888651|T047|PT|L97.121|ICD10CM|Non-pressure chronic ulcer of left thigh limited to breakdown of skin|Non-pressure chronic ulcer of left thigh limited to breakdown of skin +C2888651|T047|AB|L97.121|ICD10CM|Non-prs chronic ulcer of left thigh limited to brkdwn skin|Non-prs chronic ulcer of left thigh limited to brkdwn skin +C2888652|T047|AB|L97.122|ICD10CM|Non-pressure chronic ulcer of left thigh w fat layer exposed|Non-pressure chronic ulcer of left thigh w fat layer exposed +C2888652|T047|PT|L97.122|ICD10CM|Non-pressure chronic ulcer of left thigh with fat layer exposed|Non-pressure chronic ulcer of left thigh with fat layer exposed +C2888653|T047|PT|L97.123|ICD10CM|Non-pressure chronic ulcer of left thigh with necrosis of muscle|Non-pressure chronic ulcer of left thigh with necrosis of muscle +C2888653|T047|AB|L97.123|ICD10CM|Non-prs chronic ulcer of left thigh w necrosis of muscle|Non-prs chronic ulcer of left thigh w necrosis of muscle +C2888654|T047|AB|L97.124|ICD10CM|Non-pressure chronic ulcer of left thigh w necrosis of bone|Non-pressure chronic ulcer of left thigh w necrosis of bone +C2888654|T047|PT|L97.124|ICD10CM|Non-pressure chronic ulcer of left thigh with necrosis of bone|Non-pressure chronic ulcer of left thigh with necrosis of bone +C4509281|T047|PT|L97.125|ICD10CM|Non-pressure chronic ulcer of left thigh with muscle involvement without evidence of necrosis|Non-pressure chronic ulcer of left thigh with muscle involvement without evidence of necrosis +C4509281|T047|AB|L97.125|ICD10CM|Non-prs chr ulc of left thigh with msl invl w/o evd of necr|Non-prs chr ulc of left thigh with msl invl w/o evd of necr +C4509282|T047|PT|L97.126|ICD10CM|Non-pressure chronic ulcer of left thigh with bone involvement without evidence of necrosis|Non-pressure chronic ulcer of left thigh with bone involvement without evidence of necrosis +C4509282|T047|AB|L97.126|ICD10CM|Non-prs chr ulc of left thigh with bone invl w/o evd of necr|Non-prs chr ulc of left thigh with bone invl w/o evd of necr +C4509283|T047|AB|L97.128|ICD10CM|Non-pressure chronic ulcer of left thigh with oth severity|Non-pressure chronic ulcer of left thigh with oth severity +C4509283|T047|PT|L97.128|ICD10CM|Non-pressure chronic ulcer of left thigh with other specified severity|Non-pressure chronic ulcer of left thigh with other specified severity +C2888655|T047|AB|L97.129|ICD10CM|Non-pressure chronic ulcer of left thigh with unsp severity|Non-pressure chronic ulcer of left thigh with unsp severity +C2888655|T047|PT|L97.129|ICD10CM|Non-pressure chronic ulcer of left thigh with unspecified severity|Non-pressure chronic ulcer of left thigh with unspecified severity +C2074932|T047|AB|L97.2|ICD10CM|Non-pressure chronic ulcer of calf|Non-pressure chronic ulcer of calf +C2074932|T047|HT|L97.2|ICD10CM|Non-pressure chronic ulcer of calf|Non-pressure chronic ulcer of calf +C2888657|T047|AB|L97.20|ICD10CM|Non-pressure chronic ulcer of unspecified calf|Non-pressure chronic ulcer of unspecified calf +C2888657|T047|HT|L97.20|ICD10CM|Non-pressure chronic ulcer of unspecified calf|Non-pressure chronic ulcer of unspecified calf +C2888658|T047|PT|L97.201|ICD10CM|Non-pressure chronic ulcer of unspecified calf limited to breakdown of skin|Non-pressure chronic ulcer of unspecified calf limited to breakdown of skin +C2888658|T047|AB|L97.201|ICD10CM|Non-prs chronic ulcer of unsp calf limited to brkdwn skin|Non-prs chronic ulcer of unsp calf limited to brkdwn skin +C2888659|T047|AB|L97.202|ICD10CM|Non-pressure chronic ulcer of unsp calf w fat layer exposed|Non-pressure chronic ulcer of unsp calf w fat layer exposed +C2888659|T047|PT|L97.202|ICD10CM|Non-pressure chronic ulcer of unspecified calf with fat layer exposed|Non-pressure chronic ulcer of unspecified calf with fat layer exposed +C2888660|T047|AB|L97.203|ICD10CM|Non-pressure chronic ulcer of unsp calf w necrosis of muscle|Non-pressure chronic ulcer of unsp calf w necrosis of muscle +C2888660|T047|PT|L97.203|ICD10CM|Non-pressure chronic ulcer of unspecified calf with necrosis of muscle|Non-pressure chronic ulcer of unspecified calf with necrosis of muscle +C2888661|T047|AB|L97.204|ICD10CM|Non-pressure chronic ulcer of unsp calf w necrosis of bone|Non-pressure chronic ulcer of unsp calf w necrosis of bone +C2888661|T047|PT|L97.204|ICD10CM|Non-pressure chronic ulcer of unspecified calf with necrosis of bone|Non-pressure chronic ulcer of unspecified calf with necrosis of bone +C4509284|T047|PT|L97.205|ICD10CM|Non-pressure chronic ulcer of unspecified calf with muscle involvement without evidence of necrosis|Non-pressure chronic ulcer of unspecified calf with muscle involvement without evidence of necrosis +C4509284|T047|AB|L97.205|ICD10CM|Non-prs chr ulcer of unsp calf with msl invl w/o evd of necr|Non-prs chr ulcer of unsp calf with msl invl w/o evd of necr +C4509285|T047|PT|L97.206|ICD10CM|Non-pressure chronic ulcer of unspecified calf with bone involvement without evidence of necrosis|Non-pressure chronic ulcer of unspecified calf with bone involvement without evidence of necrosis +C4509285|T047|AB|L97.206|ICD10CM|Non-prs chr ulc of unsp calf with bone invl w/o evd of necr|Non-prs chr ulc of unsp calf with bone invl w/o evd of necr +C4509286|T047|PT|L97.208|ICD10CM|Non-pressure chronic ulcer of unspecified calf with other specified severity|Non-pressure chronic ulcer of unspecified calf with other specified severity +C4509286|T047|AB|L97.208|ICD10CM|Non-prs chronic ulcer of unspecified calf with oth severity|Non-prs chronic ulcer of unspecified calf with oth severity +C2888662|T047|AB|L97.209|ICD10CM|Non-pressure chronic ulcer of unsp calf with unsp severity|Non-pressure chronic ulcer of unsp calf with unsp severity +C2888662|T047|PT|L97.209|ICD10CM|Non-pressure chronic ulcer of unspecified calf with unspecified severity|Non-pressure chronic ulcer of unspecified calf with unspecified severity +C2074944|T047|AB|L97.21|ICD10CM|Non-pressure chronic ulcer of right calf|Non-pressure chronic ulcer of right calf +C2074944|T047|HT|L97.21|ICD10CM|Non-pressure chronic ulcer of right calf|Non-pressure chronic ulcer of right calf +C2888664|T047|PT|L97.211|ICD10CM|Non-pressure chronic ulcer of right calf limited to breakdown of skin|Non-pressure chronic ulcer of right calf limited to breakdown of skin +C2888664|T047|AB|L97.211|ICD10CM|Non-prs chronic ulcer of right calf limited to brkdwn skin|Non-prs chronic ulcer of right calf limited to brkdwn skin +C2888665|T047|AB|L97.212|ICD10CM|Non-pressure chronic ulcer of right calf w fat layer exposed|Non-pressure chronic ulcer of right calf w fat layer exposed +C2888665|T047|PT|L97.212|ICD10CM|Non-pressure chronic ulcer of right calf with fat layer exposed|Non-pressure chronic ulcer of right calf with fat layer exposed +C2888666|T047|PT|L97.213|ICD10CM|Non-pressure chronic ulcer of right calf with necrosis of muscle|Non-pressure chronic ulcer of right calf with necrosis of muscle +C2888666|T047|AB|L97.213|ICD10CM|Non-prs chronic ulcer of right calf w necrosis of muscle|Non-prs chronic ulcer of right calf w necrosis of muscle +C2888667|T047|AB|L97.214|ICD10CM|Non-pressure chronic ulcer of right calf w necrosis of bone|Non-pressure chronic ulcer of right calf w necrosis of bone +C2888667|T047|PT|L97.214|ICD10CM|Non-pressure chronic ulcer of right calf with necrosis of bone|Non-pressure chronic ulcer of right calf with necrosis of bone +C4509287|T047|PT|L97.215|ICD10CM|Non-pressure chronic ulcer of right calf with muscle involvement without evidence of necrosis|Non-pressure chronic ulcer of right calf with muscle involvement without evidence of necrosis +C4509287|T047|AB|L97.215|ICD10CM|Non-prs chr ulcer of r calf with msl invl w/o evd of necr|Non-prs chr ulcer of r calf with msl invl w/o evd of necr +C4509288|T047|PT|L97.216|ICD10CM|Non-pressure chronic ulcer of right calf with bone involvement without evidence of necrosis|Non-pressure chronic ulcer of right calf with bone involvement without evidence of necrosis +C4509288|T047|AB|L97.216|ICD10CM|Non-prs chr ulcer of r calf with bone invl w/o evd of necr|Non-prs chr ulcer of r calf with bone invl w/o evd of necr +C4509289|T047|AB|L97.218|ICD10CM|Non-pressure chronic ulcer of right calf with oth severity|Non-pressure chronic ulcer of right calf with oth severity +C4509289|T047|PT|L97.218|ICD10CM|Non-pressure chronic ulcer of right calf with other specified severity|Non-pressure chronic ulcer of right calf with other specified severity +C2888668|T047|AB|L97.219|ICD10CM|Non-pressure chronic ulcer of right calf with unsp severity|Non-pressure chronic ulcer of right calf with unsp severity +C2888668|T047|PT|L97.219|ICD10CM|Non-pressure chronic ulcer of right calf with unspecified severity|Non-pressure chronic ulcer of right calf with unspecified severity +C2074938|T047|AB|L97.22|ICD10CM|Non-pressure chronic ulcer of left calf|Non-pressure chronic ulcer of left calf +C2074938|T047|HT|L97.22|ICD10CM|Non-pressure chronic ulcer of left calf|Non-pressure chronic ulcer of left calf +C2888670|T047|PT|L97.221|ICD10CM|Non-pressure chronic ulcer of left calf limited to breakdown of skin|Non-pressure chronic ulcer of left calf limited to breakdown of skin +C2888670|T047|AB|L97.221|ICD10CM|Non-prs chronic ulcer of left calf limited to brkdwn skin|Non-prs chronic ulcer of left calf limited to brkdwn skin +C2888671|T047|AB|L97.222|ICD10CM|Non-pressure chronic ulcer of left calf w fat layer exposed|Non-pressure chronic ulcer of left calf w fat layer exposed +C2888671|T047|PT|L97.222|ICD10CM|Non-pressure chronic ulcer of left calf with fat layer exposed|Non-pressure chronic ulcer of left calf with fat layer exposed +C2888672|T047|AB|L97.223|ICD10CM|Non-pressure chronic ulcer of left calf w necrosis of muscle|Non-pressure chronic ulcer of left calf w necrosis of muscle +C2888672|T047|PT|L97.223|ICD10CM|Non-pressure chronic ulcer of left calf with necrosis of muscle|Non-pressure chronic ulcer of left calf with necrosis of muscle +C2888673|T047|AB|L97.224|ICD10CM|Non-pressure chronic ulcer of left calf w necrosis of bone|Non-pressure chronic ulcer of left calf w necrosis of bone +C2888673|T047|PT|L97.224|ICD10CM|Non-pressure chronic ulcer of left calf with necrosis of bone|Non-pressure chronic ulcer of left calf with necrosis of bone +C4509290|T047|PT|L97.225|ICD10CM|Non-pressure chronic ulcer of left calf with muscle involvement without evidence of necrosis|Non-pressure chronic ulcer of left calf with muscle involvement without evidence of necrosis +C4509290|T047|AB|L97.225|ICD10CM|Non-prs chr ulcer of left calf with msl invl w/o evd of necr|Non-prs chr ulcer of left calf with msl invl w/o evd of necr +C4509291|T047|PT|L97.226|ICD10CM|Non-pressure chronic ulcer of left calf with bone involvement without evidence of necrosis|Non-pressure chronic ulcer of left calf with bone involvement without evidence of necrosis +C4509291|T047|AB|L97.226|ICD10CM|Non-prs chr ulc of left calf with bone invl w/o evd of necr|Non-prs chr ulc of left calf with bone invl w/o evd of necr +C4509292|T047|AB|L97.228|ICD10CM|Non-pressure chronic ulcer of left calf with oth severity|Non-pressure chronic ulcer of left calf with oth severity +C4509292|T047|PT|L97.228|ICD10CM|Non-pressure chronic ulcer of left calf with other specified severity|Non-pressure chronic ulcer of left calf with other specified severity +C2888674|T047|AB|L97.229|ICD10CM|Non-pressure chronic ulcer of left calf with unsp severity|Non-pressure chronic ulcer of left calf with unsp severity +C2888674|T047|PT|L97.229|ICD10CM|Non-pressure chronic ulcer of left calf with unspecified severity|Non-pressure chronic ulcer of left calf with unspecified severity +C2074931|T047|AB|L97.3|ICD10CM|Non-pressure chronic ulcer of ankle|Non-pressure chronic ulcer of ankle +C2074931|T047|HT|L97.3|ICD10CM|Non-pressure chronic ulcer of ankle|Non-pressure chronic ulcer of ankle +C2888676|T047|AB|L97.30|ICD10CM|Non-pressure chronic ulcer of unspecified ankle|Non-pressure chronic ulcer of unspecified ankle +C2888676|T047|HT|L97.30|ICD10CM|Non-pressure chronic ulcer of unspecified ankle|Non-pressure chronic ulcer of unspecified ankle +C2888677|T047|PT|L97.301|ICD10CM|Non-pressure chronic ulcer of unspecified ankle limited to breakdown of skin|Non-pressure chronic ulcer of unspecified ankle limited to breakdown of skin +C2888677|T047|AB|L97.301|ICD10CM|Non-prs chronic ulcer of unsp ankle limited to brkdwn skin|Non-prs chronic ulcer of unsp ankle limited to brkdwn skin +C2888678|T047|AB|L97.302|ICD10CM|Non-pressure chronic ulcer of unsp ankle w fat layer exposed|Non-pressure chronic ulcer of unsp ankle w fat layer exposed +C2888678|T047|PT|L97.302|ICD10CM|Non-pressure chronic ulcer of unspecified ankle with fat layer exposed|Non-pressure chronic ulcer of unspecified ankle with fat layer exposed +C2888679|T047|PT|L97.303|ICD10CM|Non-pressure chronic ulcer of unspecified ankle with necrosis of muscle|Non-pressure chronic ulcer of unspecified ankle with necrosis of muscle +C2888679|T047|AB|L97.303|ICD10CM|Non-prs chronic ulcer of unsp ankle w necrosis of muscle|Non-prs chronic ulcer of unsp ankle w necrosis of muscle +C2888680|T047|AB|L97.304|ICD10CM|Non-pressure chronic ulcer of unsp ankle w necrosis of bone|Non-pressure chronic ulcer of unsp ankle w necrosis of bone +C2888680|T047|PT|L97.304|ICD10CM|Non-pressure chronic ulcer of unspecified ankle with necrosis of bone|Non-pressure chronic ulcer of unspecified ankle with necrosis of bone +C4509293|T047|PT|L97.305|ICD10CM|Non-pressure chronic ulcer of unspecified ankle with muscle involvement without evidence of necrosis|Non-pressure chronic ulcer of unspecified ankle with muscle involvement without evidence of necrosis +C4509293|T047|AB|L97.305|ICD10CM|Non-prs chr ulcer of unsp ankl with msl invl w/o evd of necr|Non-prs chr ulcer of unsp ankl with msl invl w/o evd of necr +C4509294|T047|PT|L97.306|ICD10CM|Non-pressure chronic ulcer of unspecified ankle with bone involvement without evidence of necrosis|Non-pressure chronic ulcer of unspecified ankle with bone involvement without evidence of necrosis +C4509294|T047|AB|L97.306|ICD10CM|Non-prs chr ulc of unsp ankl with bone invl w/o evd of necr|Non-prs chr ulc of unsp ankl with bone invl w/o evd of necr +C4509295|T047|PT|L97.308|ICD10CM|Non-pressure chronic ulcer of unspecified ankle with other specified severity|Non-pressure chronic ulcer of unspecified ankle with other specified severity +C4509295|T047|AB|L97.308|ICD10CM|Non-prs chronic ulcer of unspecified ankle with oth severity|Non-prs chronic ulcer of unspecified ankle with oth severity +C2888681|T047|AB|L97.309|ICD10CM|Non-pressure chronic ulcer of unsp ankle with unsp severity|Non-pressure chronic ulcer of unsp ankle with unsp severity +C2888681|T047|PT|L97.309|ICD10CM|Non-pressure chronic ulcer of unspecified ankle with unspecified severity|Non-pressure chronic ulcer of unspecified ankle with unspecified severity +C2888682|T047|AB|L97.31|ICD10CM|Non-pressure chronic ulcer of right ankle|Non-pressure chronic ulcer of right ankle +C2888682|T047|HT|L97.31|ICD10CM|Non-pressure chronic ulcer of right ankle|Non-pressure chronic ulcer of right ankle +C2888683|T047|PT|L97.311|ICD10CM|Non-pressure chronic ulcer of right ankle limited to breakdown of skin|Non-pressure chronic ulcer of right ankle limited to breakdown of skin +C2888683|T047|AB|L97.311|ICD10CM|Non-prs chronic ulcer of right ankle limited to brkdwn skin|Non-prs chronic ulcer of right ankle limited to brkdwn skin +C2888684|T047|PT|L97.312|ICD10CM|Non-pressure chronic ulcer of right ankle with fat layer exposed|Non-pressure chronic ulcer of right ankle with fat layer exposed +C2888684|T047|AB|L97.312|ICD10CM|Non-prs chronic ulcer of right ankle w fat layer exposed|Non-prs chronic ulcer of right ankle w fat layer exposed +C2888685|T047|PT|L97.313|ICD10CM|Non-pressure chronic ulcer of right ankle with necrosis of muscle|Non-pressure chronic ulcer of right ankle with necrosis of muscle +C2888685|T047|AB|L97.313|ICD10CM|Non-prs chronic ulcer of right ankle w necrosis of muscle|Non-prs chronic ulcer of right ankle w necrosis of muscle +C2888686|T047|AB|L97.314|ICD10CM|Non-pressure chronic ulcer of right ankle w necrosis of bone|Non-pressure chronic ulcer of right ankle w necrosis of bone +C2888686|T047|PT|L97.314|ICD10CM|Non-pressure chronic ulcer of right ankle with necrosis of bone|Non-pressure chronic ulcer of right ankle with necrosis of bone +C4509296|T047|PT|L97.315|ICD10CM|Non-pressure chronic ulcer of right ankle with muscle involvement without evidence of necrosis|Non-pressure chronic ulcer of right ankle with muscle involvement without evidence of necrosis +C4509296|T047|AB|L97.315|ICD10CM|Non-prs chr ulcer of r ankle with msl invl w/o evd of necr|Non-prs chr ulcer of r ankle with msl invl w/o evd of necr +C4509297|T047|PT|L97.316|ICD10CM|Non-pressure chronic ulcer of right ankle with bone involvement without evidence of necrosis|Non-pressure chronic ulcer of right ankle with bone involvement without evidence of necrosis +C4509297|T047|AB|L97.316|ICD10CM|Non-prs chr ulcer of r ankle with bone invl w/o evd of necr|Non-prs chr ulcer of r ankle with bone invl w/o evd of necr +C4509298|T047|AB|L97.318|ICD10CM|Non-pressure chronic ulcer of right ankle with oth severity|Non-pressure chronic ulcer of right ankle with oth severity +C4509298|T047|PT|L97.318|ICD10CM|Non-pressure chronic ulcer of right ankle with other specified severity|Non-pressure chronic ulcer of right ankle with other specified severity +C2888687|T047|AB|L97.319|ICD10CM|Non-pressure chronic ulcer of right ankle with unsp severity|Non-pressure chronic ulcer of right ankle with unsp severity +C2888687|T047|PT|L97.319|ICD10CM|Non-pressure chronic ulcer of right ankle with unspecified severity|Non-pressure chronic ulcer of right ankle with unspecified severity +C2888688|T047|AB|L97.32|ICD10CM|Non-pressure chronic ulcer of left ankle|Non-pressure chronic ulcer of left ankle +C2888688|T047|HT|L97.32|ICD10CM|Non-pressure chronic ulcer of left ankle|Non-pressure chronic ulcer of left ankle +C2888689|T047|PT|L97.321|ICD10CM|Non-pressure chronic ulcer of left ankle limited to breakdown of skin|Non-pressure chronic ulcer of left ankle limited to breakdown of skin +C2888689|T047|AB|L97.321|ICD10CM|Non-prs chronic ulcer of left ankle limited to brkdwn skin|Non-prs chronic ulcer of left ankle limited to brkdwn skin +C2888690|T047|AB|L97.322|ICD10CM|Non-pressure chronic ulcer of left ankle w fat layer exposed|Non-pressure chronic ulcer of left ankle w fat layer exposed +C2888690|T047|PT|L97.322|ICD10CM|Non-pressure chronic ulcer of left ankle with fat layer exposed|Non-pressure chronic ulcer of left ankle with fat layer exposed +C2888691|T047|PT|L97.323|ICD10CM|Non-pressure chronic ulcer of left ankle with necrosis of muscle|Non-pressure chronic ulcer of left ankle with necrosis of muscle +C2888691|T047|AB|L97.323|ICD10CM|Non-prs chronic ulcer of left ankle w necrosis of muscle|Non-prs chronic ulcer of left ankle w necrosis of muscle +C2888692|T047|AB|L97.324|ICD10CM|Non-pressure chronic ulcer of left ankle w necrosis of bone|Non-pressure chronic ulcer of left ankle w necrosis of bone +C2888692|T047|PT|L97.324|ICD10CM|Non-pressure chronic ulcer of left ankle with necrosis of bone|Non-pressure chronic ulcer of left ankle with necrosis of bone +C4509299|T047|PT|L97.325|ICD10CM|Non-pressure chronic ulcer of left ankle with muscle involvement without evidence of necrosis|Non-pressure chronic ulcer of left ankle with muscle involvement without evidence of necrosis +C4509299|T047|AB|L97.325|ICD10CM|Non-prs chr ulcer of l ankle with msl invl w/o evd of necr|Non-prs chr ulcer of l ankle with msl invl w/o evd of necr +C4509300|T047|PT|L97.326|ICD10CM|Non-pressure chronic ulcer of left ankle with bone involvement without evidence of necrosis|Non-pressure chronic ulcer of left ankle with bone involvement without evidence of necrosis +C4509300|T047|AB|L97.326|ICD10CM|Non-prs chr ulcer of l ankle with bone invl w/o evd of necr|Non-prs chr ulcer of l ankle with bone invl w/o evd of necr +C4509301|T047|AB|L97.328|ICD10CM|Non-pressure chronic ulcer of left ankle with oth severity|Non-pressure chronic ulcer of left ankle with oth severity +C4509301|T047|PT|L97.328|ICD10CM|Non-pressure chronic ulcer of left ankle with other specified severity|Non-pressure chronic ulcer of left ankle with other specified severity +C2888693|T047|AB|L97.329|ICD10CM|Non-pressure chronic ulcer of left ankle with unsp severity|Non-pressure chronic ulcer of left ankle with unsp severity +C2888693|T047|PT|L97.329|ICD10CM|Non-pressure chronic ulcer of left ankle with unspecified severity|Non-pressure chronic ulcer of left ankle with unspecified severity +C2888695|T047|AB|L97.4|ICD10CM|Non-pressure chronic ulcer of heel and midfoot|Non-pressure chronic ulcer of heel and midfoot +C2888695|T047|HT|L97.4|ICD10CM|Non-pressure chronic ulcer of heel and midfoot|Non-pressure chronic ulcer of heel and midfoot +C2888694|T047|ET|L97.4|ICD10CM|Non-pressure chronic ulcer of plantar surface of midfoot|Non-pressure chronic ulcer of plantar surface of midfoot +C2888696|T047|AB|L97.40|ICD10CM|Non-pressure chronic ulcer of unspecified heel and midfoot|Non-pressure chronic ulcer of unspecified heel and midfoot +C2888696|T047|HT|L97.40|ICD10CM|Non-pressure chronic ulcer of unspecified heel and midfoot|Non-pressure chronic ulcer of unspecified heel and midfoot +C2888697|T047|PT|L97.401|ICD10CM|Non-pressure chronic ulcer of unspecified heel and midfoot limited to breakdown of skin|Non-pressure chronic ulcer of unspecified heel and midfoot limited to breakdown of skin +C2888697|T047|AB|L97.401|ICD10CM|Non-prs chr ulcer of unsp heel and midft lmt to brkdwn skin|Non-prs chr ulcer of unsp heel and midft lmt to brkdwn skin +C2888698|T047|PT|L97.402|ICD10CM|Non-pressure chronic ulcer of unspecified heel and midfoot with fat layer exposed|Non-pressure chronic ulcer of unspecified heel and midfoot with fat layer exposed +C2888698|T047|AB|L97.402|ICD10CM|Non-prs chr ulcer of unsp heel and midfoot w fat layer expos|Non-prs chr ulcer of unsp heel and midfoot w fat layer expos +C2888699|T047|PT|L97.403|ICD10CM|Non-pressure chronic ulcer of unspecified heel and midfoot with necrosis of muscle|Non-pressure chronic ulcer of unspecified heel and midfoot with necrosis of muscle +C2888699|T047|AB|L97.403|ICD10CM|Non-prs chr ulcer of unsp heel and midfoot w necros muscle|Non-prs chr ulcer of unsp heel and midfoot w necros muscle +C2888700|T047|PT|L97.404|ICD10CM|Non-pressure chronic ulcer of unspecified heel and midfoot with necrosis of bone|Non-pressure chronic ulcer of unspecified heel and midfoot with necrosis of bone +C2888700|T047|AB|L97.404|ICD10CM|Non-prs chronic ulcer of unsp heel and midfoot w necros bone|Non-prs chronic ulcer of unsp heel and midfoot w necros bone +C4509302|T047|AB|L97.405|ICD10CM|Non-prs chr ulc unsp heel/midft w msl invl w/o evd of necr|Non-prs chr ulc unsp heel/midft w msl invl w/o evd of necr +C4509303|T047|AB|L97.406|ICD10CM|Non-prs chr ulc unsp heel/midft w bne invl w/o evd of necr|Non-prs chr ulc unsp heel/midft w bne invl w/o evd of necr +C4509304|T047|PT|L97.408|ICD10CM|Non-pressure chronic ulcer of unspecified heel and midfoot with other specified severity|Non-pressure chronic ulcer of unspecified heel and midfoot with other specified severity +C4509304|T047|AB|L97.408|ICD10CM|Non-prs chronic ulcer of unsp heel/midft with oth severity|Non-prs chronic ulcer of unsp heel/midft with oth severity +C2888701|T047|PT|L97.409|ICD10CM|Non-pressure chronic ulcer of unspecified heel and midfoot with unspecified severity|Non-pressure chronic ulcer of unspecified heel and midfoot with unspecified severity +C2888701|T047|AB|L97.409|ICD10CM|Non-prs chronic ulcer of unsp heel and midfoot w unsp severt|Non-prs chronic ulcer of unsp heel and midfoot w unsp severt +C2888702|T047|AB|L97.41|ICD10CM|Non-pressure chronic ulcer of right heel and midfoot|Non-pressure chronic ulcer of right heel and midfoot +C2888702|T047|HT|L97.41|ICD10CM|Non-pressure chronic ulcer of right heel and midfoot|Non-pressure chronic ulcer of right heel and midfoot +C2888703|T047|PT|L97.411|ICD10CM|Non-pressure chronic ulcer of right heel and midfoot limited to breakdown of skin|Non-pressure chronic ulcer of right heel and midfoot limited to breakdown of skin +C2888703|T047|AB|L97.411|ICD10CM|Non-prs chr ulcer of right heel and midft lmt to brkdwn skin|Non-prs chr ulcer of right heel and midft lmt to brkdwn skin +C2888704|T047|PT|L97.412|ICD10CM|Non-pressure chronic ulcer of right heel and midfoot with fat layer exposed|Non-pressure chronic ulcer of right heel and midfoot with fat layer exposed +C2888704|T047|AB|L97.412|ICD10CM|Non-prs chr ulcer of right heel and midft w fat layer expos|Non-prs chr ulcer of right heel and midft w fat layer expos +C2888705|T047|PT|L97.413|ICD10CM|Non-pressure chronic ulcer of right heel and midfoot with necrosis of muscle|Non-pressure chronic ulcer of right heel and midfoot with necrosis of muscle +C2888705|T047|AB|L97.413|ICD10CM|Non-prs chr ulcer of right heel and midfoot w necros muscle|Non-prs chr ulcer of right heel and midfoot w necros muscle +C2888706|T047|PT|L97.414|ICD10CM|Non-pressure chronic ulcer of right heel and midfoot with necrosis of bone|Non-pressure chronic ulcer of right heel and midfoot with necrosis of bone +C2888706|T047|AB|L97.414|ICD10CM|Non-prs chr ulcer of right heel and midfoot w necros bone|Non-prs chr ulcer of right heel and midfoot w necros bone +C4509305|T047|AB|L97.415|ICD10CM|Non-prs chr ulc of r heel/midft w msl invl w/o evd of necr|Non-prs chr ulc of r heel/midft w msl invl w/o evd of necr +C4509306|T047|AB|L97.416|ICD10CM|Non-prs chr ulc of r heel/midft w bne invl w/o evd of necr|Non-prs chr ulc of r heel/midft w bne invl w/o evd of necr +C4509307|T047|PT|L97.418|ICD10CM|Non-pressure chronic ulcer of right heel and midfoot with other specified severity|Non-pressure chronic ulcer of right heel and midfoot with other specified severity +C4509307|T047|AB|L97.418|ICD10CM|Non-prs chronic ulcer of right heel/midft with oth severity|Non-prs chronic ulcer of right heel/midft with oth severity +C2888707|T047|PT|L97.419|ICD10CM|Non-pressure chronic ulcer of right heel and midfoot with unspecified severity|Non-pressure chronic ulcer of right heel and midfoot with unspecified severity +C2888707|T047|AB|L97.419|ICD10CM|Non-prs chr ulcer of right heel and midfoot w unsp severt|Non-prs chr ulcer of right heel and midfoot w unsp severt +C2888708|T047|AB|L97.42|ICD10CM|Non-pressure chronic ulcer of left heel and midfoot|Non-pressure chronic ulcer of left heel and midfoot +C2888708|T047|HT|L97.42|ICD10CM|Non-pressure chronic ulcer of left heel and midfoot|Non-pressure chronic ulcer of left heel and midfoot +C2888709|T047|PT|L97.421|ICD10CM|Non-pressure chronic ulcer of left heel and midfoot limited to breakdown of skin|Non-pressure chronic ulcer of left heel and midfoot limited to breakdown of skin +C2888709|T047|AB|L97.421|ICD10CM|Non-prs chr ulcer of left heel and midft lmt to brkdwn skin|Non-prs chr ulcer of left heel and midft lmt to brkdwn skin +C2888710|T047|PT|L97.422|ICD10CM|Non-pressure chronic ulcer of left heel and midfoot with fat layer exposed|Non-pressure chronic ulcer of left heel and midfoot with fat layer exposed +C2888710|T047|AB|L97.422|ICD10CM|Non-prs chr ulcer of left heel and midfoot w fat layer expos|Non-prs chr ulcer of left heel and midfoot w fat layer expos +C2888711|T047|PT|L97.423|ICD10CM|Non-pressure chronic ulcer of left heel and midfoot with necrosis of muscle|Non-pressure chronic ulcer of left heel and midfoot with necrosis of muscle +C2888711|T047|AB|L97.423|ICD10CM|Non-prs chr ulcer of left heel and midfoot w necros muscle|Non-prs chr ulcer of left heel and midfoot w necros muscle +C2888712|T047|PT|L97.424|ICD10CM|Non-pressure chronic ulcer of left heel and midfoot with necrosis of bone|Non-pressure chronic ulcer of left heel and midfoot with necrosis of bone +C2888712|T047|AB|L97.424|ICD10CM|Non-prs chronic ulcer of left heel and midfoot w necros bone|Non-prs chronic ulcer of left heel and midfoot w necros bone +C4509308|T047|AB|L97.425|ICD10CM|Non-prs chr ulc of l heel/midft w msl invl w/o evd of necr|Non-prs chr ulc of l heel/midft w msl invl w/o evd of necr +C4509309|T047|AB|L97.426|ICD10CM|Non-prs chr ulc of l heel/midft w bne invl w/o evd of necr|Non-prs chr ulc of l heel/midft w bne invl w/o evd of necr +C4509310|T047|PT|L97.428|ICD10CM|Non-pressure chronic ulcer of left heel and midfoot with other specified severity|Non-pressure chronic ulcer of left heel and midfoot with other specified severity +C4509310|T047|AB|L97.428|ICD10CM|Non-prs chronic ulcer of left heel/midft with oth severity|Non-prs chronic ulcer of left heel/midft with oth severity +C2888713|T047|PT|L97.429|ICD10CM|Non-pressure chronic ulcer of left heel and midfoot with unspecified severity|Non-pressure chronic ulcer of left heel and midfoot with unspecified severity +C2888713|T047|AB|L97.429|ICD10CM|Non-prs chronic ulcer of left heel and midfoot w unsp severt|Non-prs chronic ulcer of left heel and midfoot w unsp severt +C2888715|T047|AB|L97.5|ICD10CM|Non-pressure chronic ulcer of other part of foot|Non-pressure chronic ulcer of other part of foot +C2888715|T047|HT|L97.5|ICD10CM|Non-pressure chronic ulcer of other part of foot|Non-pressure chronic ulcer of other part of foot +C2888714|T047|ET|L97.5|ICD10CM|Non-pressure chronic ulcer of toe|Non-pressure chronic ulcer of toe +C2888716|T047|AB|L97.50|ICD10CM|Non-pressure chronic ulcer of other part of unspecified foot|Non-pressure chronic ulcer of other part of unspecified foot +C2888716|T047|HT|L97.50|ICD10CM|Non-pressure chronic ulcer of other part of unspecified foot|Non-pressure chronic ulcer of other part of unspecified foot +C2888717|T047|PT|L97.501|ICD10CM|Non-pressure chronic ulcer of other part of unspecified foot limited to breakdown of skin|Non-pressure chronic ulcer of other part of unspecified foot limited to breakdown of skin +C2888717|T047|AB|L97.501|ICD10CM|Non-prs chr ulcer oth prt unsp foot limited to brkdwn skin|Non-prs chr ulcer oth prt unsp foot limited to brkdwn skin +C2888718|T047|PT|L97.502|ICD10CM|Non-pressure chronic ulcer of other part of unspecified foot with fat layer exposed|Non-pressure chronic ulcer of other part of unspecified foot with fat layer exposed +C2888718|T047|AB|L97.502|ICD10CM|Non-prs chronic ulcer oth prt unsp foot w fat layer exposed|Non-prs chronic ulcer oth prt unsp foot w fat layer exposed +C2888719|T047|PT|L97.503|ICD10CM|Non-pressure chronic ulcer of other part of unspecified foot with necrosis of muscle|Non-pressure chronic ulcer of other part of unspecified foot with necrosis of muscle +C2888719|T047|AB|L97.503|ICD10CM|Non-prs chronic ulcer oth prt unsp foot w necrosis of muscle|Non-prs chronic ulcer oth prt unsp foot w necrosis of muscle +C2888720|T047|PT|L97.504|ICD10CM|Non-pressure chronic ulcer of other part of unspecified foot with necrosis of bone|Non-pressure chronic ulcer of other part of unspecified foot with necrosis of bone +C2888720|T047|AB|L97.504|ICD10CM|Non-prs chronic ulcer oth prt unsp foot w necrosis of bone|Non-prs chronic ulcer oth prt unsp foot w necrosis of bone +C4509311|T047|AB|L97.505|ICD10CM|Non-prs chr ulc oth prt unsp ft w msl invl w/o evd of necr|Non-prs chr ulc oth prt unsp ft w msl invl w/o evd of necr +C4509312|T047|AB|L97.506|ICD10CM|Non-prs chr ulc oth prt unsp ft w bne invl w/o evd of necr|Non-prs chr ulc oth prt unsp ft w bne invl w/o evd of necr +C4509313|T047|PT|L97.508|ICD10CM|Non-pressure chronic ulcer of other part of unspecified foot with other specified severity|Non-pressure chronic ulcer of other part of unspecified foot with other specified severity +C4509313|T047|AB|L97.508|ICD10CM|Non-prs chronic ulcer oth prt unsp foot with oth severity|Non-prs chronic ulcer oth prt unsp foot with oth severity +C2888721|T047|PT|L97.509|ICD10CM|Non-pressure chronic ulcer of other part of unspecified foot with unspecified severity|Non-pressure chronic ulcer of other part of unspecified foot with unspecified severity +C2888721|T047|AB|L97.509|ICD10CM|Non-pressure chronic ulcer oth prt unsp foot w unsp severity|Non-pressure chronic ulcer oth prt unsp foot w unsp severity +C2888722|T047|AB|L97.51|ICD10CM|Non-pressure chronic ulcer of other part of right foot|Non-pressure chronic ulcer of other part of right foot +C2888722|T047|HT|L97.51|ICD10CM|Non-pressure chronic ulcer of other part of right foot|Non-pressure chronic ulcer of other part of right foot +C2888723|T047|PT|L97.511|ICD10CM|Non-pressure chronic ulcer of other part of right foot limited to breakdown of skin|Non-pressure chronic ulcer of other part of right foot limited to breakdown of skin +C2888723|T047|AB|L97.511|ICD10CM|Non-prs chronic ulcer oth prt r foot limited to brkdwn skin|Non-prs chronic ulcer oth prt r foot limited to brkdwn skin +C2888724|T047|PT|L97.512|ICD10CM|Non-pressure chronic ulcer of other part of right foot with fat layer exposed|Non-pressure chronic ulcer of other part of right foot with fat layer exposed +C2888724|T047|AB|L97.512|ICD10CM|Non-prs chronic ulcer oth prt right foot w fat layer exposed|Non-prs chronic ulcer oth prt right foot w fat layer exposed +C2888725|T047|PT|L97.513|ICD10CM|Non-pressure chronic ulcer of other part of right foot with necrosis of muscle|Non-pressure chronic ulcer of other part of right foot with necrosis of muscle +C2888725|T047|AB|L97.513|ICD10CM|Non-prs chronic ulcer oth prt right foot w necros muscle|Non-prs chronic ulcer oth prt right foot w necros muscle +C2888726|T047|PT|L97.514|ICD10CM|Non-pressure chronic ulcer of other part of right foot with necrosis of bone|Non-pressure chronic ulcer of other part of right foot with necrosis of bone +C2888726|T047|AB|L97.514|ICD10CM|Non-prs chronic ulcer oth prt right foot w necrosis of bone|Non-prs chronic ulcer oth prt right foot w necrosis of bone +C4509314|T047|AB|L97.515|ICD10CM|Non-prs chr ulc oth prt r foot with msl invl w/o evd of necr|Non-prs chr ulc oth prt r foot with msl invl w/o evd of necr +C4509315|T047|AB|L97.516|ICD10CM|Non-prs chr ulc oth prt r foot with bne invl w/o evd of necr|Non-prs chr ulc oth prt r foot with bne invl w/o evd of necr +C4509316|T047|PT|L97.518|ICD10CM|Non-pressure chronic ulcer of other part of right foot with other specified severity|Non-pressure chronic ulcer of other part of right foot with other specified severity +C4509316|T047|AB|L97.518|ICD10CM|Non-prs chronic ulcer oth prt right foot with oth severity|Non-prs chronic ulcer oth prt right foot with oth severity +C2888727|T047|PT|L97.519|ICD10CM|Non-pressure chronic ulcer of other part of right foot with unspecified severity|Non-pressure chronic ulcer of other part of right foot with unspecified severity +C2888727|T047|AB|L97.519|ICD10CM|Non-prs chronic ulcer oth prt right foot w unsp severity|Non-prs chronic ulcer oth prt right foot w unsp severity +C2888728|T047|AB|L97.52|ICD10CM|Non-pressure chronic ulcer of other part of left foot|Non-pressure chronic ulcer of other part of left foot +C2888728|T047|HT|L97.52|ICD10CM|Non-pressure chronic ulcer of other part of left foot|Non-pressure chronic ulcer of other part of left foot +C2888729|T047|PT|L97.521|ICD10CM|Non-pressure chronic ulcer of other part of left foot limited to breakdown of skin|Non-pressure chronic ulcer of other part of left foot limited to breakdown of skin +C2888729|T047|AB|L97.521|ICD10CM|Non-prs chronic ulcer oth prt l foot limited to brkdwn skin|Non-prs chronic ulcer oth prt l foot limited to brkdwn skin +C2888730|T047|PT|L97.522|ICD10CM|Non-pressure chronic ulcer of other part of left foot with fat layer exposed|Non-pressure chronic ulcer of other part of left foot with fat layer exposed +C2888730|T047|AB|L97.522|ICD10CM|Non-prs chronic ulcer oth prt left foot w fat layer exposed|Non-prs chronic ulcer oth prt left foot w fat layer exposed +C2888731|T047|PT|L97.523|ICD10CM|Non-pressure chronic ulcer of other part of left foot with necrosis of muscle|Non-pressure chronic ulcer of other part of left foot with necrosis of muscle +C2888731|T047|AB|L97.523|ICD10CM|Non-prs chronic ulcer oth prt left foot w necrosis of muscle|Non-prs chronic ulcer oth prt left foot w necrosis of muscle +C2888732|T047|PT|L97.524|ICD10CM|Non-pressure chronic ulcer of other part of left foot with necrosis of bone|Non-pressure chronic ulcer of other part of left foot with necrosis of bone +C2888732|T047|AB|L97.524|ICD10CM|Non-prs chronic ulcer oth prt left foot w necrosis of bone|Non-prs chronic ulcer oth prt left foot w necrosis of bone +C4509317|T047|AB|L97.525|ICD10CM|Non-prs chr ulc oth prt l foot with msl invl w/o evd of necr|Non-prs chr ulc oth prt l foot with msl invl w/o evd of necr +C4509318|T047|AB|L97.526|ICD10CM|Non-prs chr ulc oth prt l foot with bne invl w/o evd of necr|Non-prs chr ulc oth prt l foot with bne invl w/o evd of necr +C4509319|T047|PT|L97.528|ICD10CM|Non-pressure chronic ulcer of other part of left foot with other specified severity|Non-pressure chronic ulcer of other part of left foot with other specified severity +C4509319|T047|AB|L97.528|ICD10CM|Non-prs chronic ulcer oth prt left foot with oth severity|Non-prs chronic ulcer oth prt left foot with oth severity +C2888733|T047|PT|L97.529|ICD10CM|Non-pressure chronic ulcer of other part of left foot with unspecified severity|Non-pressure chronic ulcer of other part of left foot with unspecified severity +C2888733|T047|AB|L97.529|ICD10CM|Non-pressure chronic ulcer oth prt left foot w unsp severity|Non-pressure chronic ulcer oth prt left foot w unsp severity +C2888734|T047|AB|L97.8|ICD10CM|Non-pressure chronic ulcer of other part of lower leg|Non-pressure chronic ulcer of other part of lower leg +C2888734|T047|HT|L97.8|ICD10CM|Non-pressure chronic ulcer of other part of lower leg|Non-pressure chronic ulcer of other part of lower leg +C2888735|T047|AB|L97.80|ICD10CM|Non-pressure chronic ulcer of other part of unsp lower leg|Non-pressure chronic ulcer of other part of unsp lower leg +C2888735|T047|HT|L97.80|ICD10CM|Non-pressure chronic ulcer of other part of unspecified lower leg|Non-pressure chronic ulcer of other part of unspecified lower leg +C2888736|T047|PT|L97.801|ICD10CM|Non-pressure chronic ulcer of other part of unspecified lower leg limited to breakdown of skin|Non-pressure chronic ulcer of other part of unspecified lower leg limited to breakdown of skin +C2888736|T047|AB|L97.801|ICD10CM|Non-prs chr ulcer oth prt unsp low leg lmt to brkdwn skin|Non-prs chr ulcer oth prt unsp low leg lmt to brkdwn skin +C2888737|T047|PT|L97.802|ICD10CM|Non-pressure chronic ulcer of other part of unspecified lower leg with fat layer exposed|Non-pressure chronic ulcer of other part of unspecified lower leg with fat layer exposed +C2888737|T047|AB|L97.802|ICD10CM|Non-prs chr ulcer oth prt unsp low leg w fat layer exposed|Non-prs chr ulcer oth prt unsp low leg w fat layer exposed +C2888738|T047|PT|L97.803|ICD10CM|Non-pressure chronic ulcer of other part of unspecified lower leg with necrosis of muscle|Non-pressure chronic ulcer of other part of unspecified lower leg with necrosis of muscle +C2888738|T047|AB|L97.803|ICD10CM|Non-prs chronic ulcer oth prt unsp lower leg w necros muscle|Non-prs chronic ulcer oth prt unsp lower leg w necros muscle +C2888739|T047|PT|L97.804|ICD10CM|Non-pressure chronic ulcer of other part of unspecified lower leg with necrosis of bone|Non-pressure chronic ulcer of other part of unspecified lower leg with necrosis of bone +C2888739|T047|AB|L97.804|ICD10CM|Non-prs chronic ulcer oth prt unsp lower leg w necros bone|Non-prs chronic ulcer oth prt unsp lower leg w necros bone +C4509320|T047|AB|L97.805|ICD10CM|Non-prs chr ulc oth prt unsp lw leg w msl invl w/o evd necr|Non-prs chr ulc oth prt unsp lw leg w msl invl w/o evd necr +C4509321|T047|AB|L97.806|ICD10CM|Non-prs chr ulc oth prt unsp lw leg w bne invl w/o evd necr|Non-prs chr ulc oth prt unsp lw leg w bne invl w/o evd necr +C4509322|T047|PT|L97.808|ICD10CM|Non-pressure chronic ulcer of other part of unspecified lower leg with other specified severity|Non-pressure chronic ulcer of other part of unspecified lower leg with other specified severity +C4509322|T047|AB|L97.808|ICD10CM|Non-prs chronic ulcer oth prt unsp low leg with oth severity|Non-prs chronic ulcer oth prt unsp low leg with oth severity +C2888740|T047|PT|L97.809|ICD10CM|Non-pressure chronic ulcer of other part of unspecified lower leg with unspecified severity|Non-pressure chronic ulcer of other part of unspecified lower leg with unspecified severity +C2888740|T047|AB|L97.809|ICD10CM|Non-prs chronic ulcer oth prt unsp lower leg w unsp severity|Non-prs chronic ulcer oth prt unsp lower leg w unsp severity +C2888741|T047|AB|L97.81|ICD10CM|Non-pressure chronic ulcer of other part of right lower leg|Non-pressure chronic ulcer of other part of right lower leg +C2888741|T047|HT|L97.81|ICD10CM|Non-pressure chronic ulcer of other part of right lower leg|Non-pressure chronic ulcer of other part of right lower leg +C2888742|T047|PT|L97.811|ICD10CM|Non-pressure chronic ulcer of other part of right lower leg limited to breakdown of skin|Non-pressure chronic ulcer of other part of right lower leg limited to breakdown of skin +C2888742|T047|AB|L97.811|ICD10CM|Non-prs chr ulcer oth prt r low leg limited to brkdwn skin|Non-prs chr ulcer oth prt r low leg limited to brkdwn skin +C2888743|T047|PT|L97.812|ICD10CM|Non-pressure chronic ulcer of other part of right lower leg with fat layer exposed|Non-pressure chronic ulcer of other part of right lower leg with fat layer exposed +C2888743|T047|AB|L97.812|ICD10CM|Non-prs chronic ulcer oth prt r low leg w fat layer exposed|Non-prs chronic ulcer oth prt r low leg w fat layer exposed +C2888744|T047|PT|L97.813|ICD10CM|Non-pressure chronic ulcer of other part of right lower leg with necrosis of muscle|Non-pressure chronic ulcer of other part of right lower leg with necrosis of muscle +C2888744|T047|AB|L97.813|ICD10CM|Non-prs chronic ulcer oth prt r low leg w necrosis of muscle|Non-prs chronic ulcer oth prt r low leg w necrosis of muscle +C2888745|T047|PT|L97.814|ICD10CM|Non-pressure chronic ulcer of other part of right lower leg with necrosis of bone|Non-pressure chronic ulcer of other part of right lower leg with necrosis of bone +C2888745|T047|AB|L97.814|ICD10CM|Non-prs chronic ulcer oth prt r low leg w necrosis of bone|Non-prs chronic ulcer oth prt r low leg w necrosis of bone +C4509323|T047|AB|L97.815|ICD10CM|Non-prs chr ulc oth prt r low leg w msl invl w/o evd of necr|Non-prs chr ulc oth prt r low leg w msl invl w/o evd of necr +C4509324|T047|AB|L97.816|ICD10CM|Non-prs chr ulc oth prt r low leg w bne invl w/o evd of necr|Non-prs chr ulc oth prt r low leg w bne invl w/o evd of necr +C4509325|T047|PT|L97.818|ICD10CM|Non-pressure chronic ulcer of other part of right lower leg with other specified severity|Non-pressure chronic ulcer of other part of right lower leg with other specified severity +C4509325|T047|AB|L97.818|ICD10CM|Non-prs chronic ulcer oth prt r low leg with oth severity|Non-prs chronic ulcer oth prt r low leg with oth severity +C2888746|T047|PT|L97.819|ICD10CM|Non-pressure chronic ulcer of other part of right lower leg with unspecified severity|Non-pressure chronic ulcer of other part of right lower leg with unspecified severity +C2888746|T047|AB|L97.819|ICD10CM|Non-pressure chronic ulcer oth prt r low leg w unsp severity|Non-pressure chronic ulcer oth prt r low leg w unsp severity +C2888747|T047|AB|L97.82|ICD10CM|Non-pressure chronic ulcer of other part of left lower leg|Non-pressure chronic ulcer of other part of left lower leg +C2888747|T047|HT|L97.82|ICD10CM|Non-pressure chronic ulcer of other part of left lower leg|Non-pressure chronic ulcer of other part of left lower leg +C2888748|T047|PT|L97.821|ICD10CM|Non-pressure chronic ulcer of other part of left lower leg limited to breakdown of skin|Non-pressure chronic ulcer of other part of left lower leg limited to breakdown of skin +C2888748|T047|AB|L97.821|ICD10CM|Non-prs chr ulcer oth prt l low leg limited to brkdwn skin|Non-prs chr ulcer oth prt l low leg limited to brkdwn skin +C2888749|T047|PT|L97.822|ICD10CM|Non-pressure chronic ulcer of other part of left lower leg with fat layer exposed|Non-pressure chronic ulcer of other part of left lower leg with fat layer exposed +C2888749|T047|AB|L97.822|ICD10CM|Non-prs chronic ulcer oth prt l low leg w fat layer exposed|Non-prs chronic ulcer oth prt l low leg w fat layer exposed +C2888750|T047|PT|L97.823|ICD10CM|Non-pressure chronic ulcer of other part of left lower leg with necrosis of muscle|Non-pressure chronic ulcer of other part of left lower leg with necrosis of muscle +C2888750|T047|AB|L97.823|ICD10CM|Non-prs chronic ulcer oth prt l low leg w necrosis of muscle|Non-prs chronic ulcer oth prt l low leg w necrosis of muscle +C2888751|T047|PT|L97.824|ICD10CM|Non-pressure chronic ulcer of other part of left lower leg with necrosis of bone|Non-pressure chronic ulcer of other part of left lower leg with necrosis of bone +C2888751|T047|AB|L97.824|ICD10CM|Non-prs chronic ulcer oth prt l low leg w necrosis of bone|Non-prs chronic ulcer oth prt l low leg w necrosis of bone +C4509326|T047|AB|L97.825|ICD10CM|Non-prs chr ulc oth prt l low leg w msl invl w/o evd of necr|Non-prs chr ulc oth prt l low leg w msl invl w/o evd of necr +C4509327|T047|AB|L97.826|ICD10CM|Non-prs chr ulc oth prt l low leg w bne invl w/o evd of necr|Non-prs chr ulc oth prt l low leg w bne invl w/o evd of necr +C4509328|T047|PT|L97.828|ICD10CM|Non-pressure chronic ulcer of other part of left lower leg with other specified severity|Non-pressure chronic ulcer of other part of left lower leg with other specified severity +C4509328|T047|AB|L97.828|ICD10CM|Non-prs chronic ulcer oth prt l low leg with oth severity|Non-prs chronic ulcer oth prt l low leg with oth severity +C2888752|T047|PT|L97.829|ICD10CM|Non-pressure chronic ulcer of other part of left lower leg with unspecified severity|Non-pressure chronic ulcer of other part of left lower leg with unspecified severity +C2888752|T047|AB|L97.829|ICD10CM|Non-pressure chronic ulcer oth prt l low leg w unsp severity|Non-pressure chronic ulcer oth prt l low leg w unsp severity +C2888753|T047|AB|L97.9|ICD10CM|Non-pressure chronic ulcer of unspecified part of lower leg|Non-pressure chronic ulcer of unspecified part of lower leg +C2888753|T047|HT|L97.9|ICD10CM|Non-pressure chronic ulcer of unspecified part of lower leg|Non-pressure chronic ulcer of unspecified part of lower leg +C2888754|T047|AB|L97.90|ICD10CM|Non-pressure chronic ulcer of unsp part of unsp lower leg|Non-pressure chronic ulcer of unsp part of unsp lower leg +C2888754|T047|HT|L97.90|ICD10CM|Non-pressure chronic ulcer of unspecified part of unspecified lower leg|Non-pressure chronic ulcer of unspecified part of unspecified lower leg +C2888755|T047|PT|L97.901|ICD10CM|Non-pressure chronic ulcer of unspecified part of unspecified lower leg limited to breakdown of skin|Non-pressure chronic ulcer of unspecified part of unspecified lower leg limited to breakdown of skin +C2888755|T047|AB|L97.901|ICD10CM|Non-prs chr ulc unsp prt of unsp low leg lmt to brkdwn skin|Non-prs chr ulc unsp prt of unsp low leg lmt to brkdwn skin +C2888756|T047|PT|L97.902|ICD10CM|Non-pressure chronic ulcer of unspecified part of unspecified lower leg with fat layer exposed|Non-pressure chronic ulcer of unspecified part of unspecified lower leg with fat layer exposed +C2888756|T047|AB|L97.902|ICD10CM|Non-prs chr ulc unsp prt of unsp low leg w fat layer exposed|Non-prs chr ulc unsp prt of unsp low leg w fat layer exposed +C2888757|T047|PT|L97.903|ICD10CM|Non-pressure chronic ulcer of unspecified part of unspecified lower leg with necrosis of muscle|Non-pressure chronic ulcer of unspecified part of unspecified lower leg with necrosis of muscle +C2888757|T047|AB|L97.903|ICD10CM|Non-prs chronic ulc unsp prt of unsp low leg w necros muscle|Non-prs chronic ulc unsp prt of unsp low leg w necros muscle +C2888758|T047|PT|L97.904|ICD10CM|Non-pressure chronic ulcer of unspecified part of unspecified lower leg with necrosis of bone|Non-pressure chronic ulcer of unspecified part of unspecified lower leg with necrosis of bone +C2888758|T047|AB|L97.904|ICD10CM|Non-prs chronic ulc unsp prt of unsp lower leg w necros bone|Non-prs chronic ulc unsp prt of unsp lower leg w necros bone +C4509329|T047|AB|L97.905|ICD10CM|Non-prs chr ulc unsp prt unsp lw leg w msl invl w/o evd necr|Non-prs chr ulc unsp prt unsp lw leg w msl invl w/o evd necr +C4509330|T047|AB|L97.906|ICD10CM|Non-prs chr ulc unsp prt unsp lw leg w bne invl w/o evd necr|Non-prs chr ulc unsp prt unsp lw leg w bne invl w/o evd necr +C4509331|T047|AB|L97.908|ICD10CM|Non-prs chronic ulc unsp prt of unsp low leg with oth severt|Non-prs chronic ulc unsp prt of unsp low leg with oth severt +C2888759|T047|PT|L97.909|ICD10CM|Non-pressure chronic ulcer of unspecified part of unspecified lower leg with unspecified severity|Non-pressure chronic ulcer of unspecified part of unspecified lower leg with unspecified severity +C2888759|T047|AB|L97.909|ICD10CM|Non-prs chronic ulc unsp prt of unsp low leg w unsp severity|Non-prs chronic ulc unsp prt of unsp low leg w unsp severity +C2888760|T047|AB|L97.91|ICD10CM|Non-pressure chronic ulcer of unsp part of right lower leg|Non-pressure chronic ulcer of unsp part of right lower leg +C2888760|T047|HT|L97.91|ICD10CM|Non-pressure chronic ulcer of unspecified part of right lower leg|Non-pressure chronic ulcer of unspecified part of right lower leg +C2888761|T047|PT|L97.911|ICD10CM|Non-pressure chronic ulcer of unspecified part of right lower leg limited to breakdown of skin|Non-pressure chronic ulcer of unspecified part of right lower leg limited to breakdown of skin +C2888761|T047|AB|L97.911|ICD10CM|Non-prs chr ulc unsp prt of r low leg limited to brkdwn skin|Non-prs chr ulc unsp prt of r low leg limited to brkdwn skin +C2888762|T047|PT|L97.912|ICD10CM|Non-pressure chronic ulcer of unspecified part of right lower leg with fat layer exposed|Non-pressure chronic ulcer of unspecified part of right lower leg with fat layer exposed +C2888762|T047|AB|L97.912|ICD10CM|Non-prs chr ulc unsp prt of r low leg w fat layer exposed|Non-prs chr ulc unsp prt of r low leg w fat layer exposed +C2888763|T047|PT|L97.913|ICD10CM|Non-pressure chronic ulcer of unspecified part of right lower leg with necrosis of muscle|Non-pressure chronic ulcer of unspecified part of right lower leg with necrosis of muscle +C2888763|T047|AB|L97.913|ICD10CM|Non-prs chronic ulc unsp prt of r low leg w necros muscle|Non-prs chronic ulc unsp prt of r low leg w necros muscle +C2888764|T047|PT|L97.914|ICD10CM|Non-pressure chronic ulcer of unspecified part of right lower leg with necrosis of bone|Non-pressure chronic ulcer of unspecified part of right lower leg with necrosis of bone +C2888764|T047|AB|L97.914|ICD10CM|Non-prs chronic ulc unsp prt of r low leg w necrosis of bone|Non-prs chronic ulc unsp prt of r low leg w necrosis of bone +C4509332|T047|AB|L97.915|ICD10CM|Non-prs chr ulc unsp prt r lw leg w msl invl w/o evd of necr|Non-prs chr ulc unsp prt r lw leg w msl invl w/o evd of necr +C4509333|T047|AB|L97.916|ICD10CM|Non-prs chr ulc unsp prt r lw leg w bne invl w/o evd of necr|Non-prs chr ulc unsp prt r lw leg w bne invl w/o evd of necr +C4509334|T047|PT|L97.918|ICD10CM|Non-pressure chronic ulcer of unspecified part of right lower leg with other specified severity|Non-pressure chronic ulcer of unspecified part of right lower leg with other specified severity +C4509334|T047|AB|L97.918|ICD10CM|Non-prs chronic ulc unsp prt of r low leg with oth severity|Non-prs chronic ulc unsp prt of r low leg with oth severity +C2888765|T047|PT|L97.919|ICD10CM|Non-pressure chronic ulcer of unspecified part of right lower leg with unspecified severity|Non-pressure chronic ulcer of unspecified part of right lower leg with unspecified severity +C2888765|T047|AB|L97.919|ICD10CM|Non-prs chronic ulc unsp prt of r low leg w unsp severity|Non-prs chronic ulc unsp prt of r low leg w unsp severity +C2888766|T047|AB|L97.92|ICD10CM|Non-pressure chronic ulcer of unsp part of left lower leg|Non-pressure chronic ulcer of unsp part of left lower leg +C2888766|T047|HT|L97.92|ICD10CM|Non-pressure chronic ulcer of unspecified part of left lower leg|Non-pressure chronic ulcer of unspecified part of left lower leg +C2888767|T047|PT|L97.921|ICD10CM|Non-pressure chronic ulcer of unspecified part of left lower leg limited to breakdown of skin|Non-pressure chronic ulcer of unspecified part of left lower leg limited to breakdown of skin +C2888767|T047|AB|L97.921|ICD10CM|Non-prs chr ulc unsp prt of l low leg limited to brkdwn skin|Non-prs chr ulc unsp prt of l low leg limited to brkdwn skin +C2888768|T047|PT|L97.922|ICD10CM|Non-pressure chronic ulcer of unspecified part of left lower leg with fat layer exposed|Non-pressure chronic ulcer of unspecified part of left lower leg with fat layer exposed +C2888768|T047|AB|L97.922|ICD10CM|Non-prs chr ulc unsp prt of l low leg w fat layer exposed|Non-prs chr ulc unsp prt of l low leg w fat layer exposed +C2888769|T047|PT|L97.923|ICD10CM|Non-pressure chronic ulcer of unspecified part of left lower leg with necrosis of muscle|Non-pressure chronic ulcer of unspecified part of left lower leg with necrosis of muscle +C2888769|T047|AB|L97.923|ICD10CM|Non-prs chronic ulc unsp prt of l low leg w necros muscle|Non-prs chronic ulc unsp prt of l low leg w necros muscle +C2888770|T047|PT|L97.924|ICD10CM|Non-pressure chronic ulcer of unspecified part of left lower leg with necrosis of bone|Non-pressure chronic ulcer of unspecified part of left lower leg with necrosis of bone +C2888770|T047|AB|L97.924|ICD10CM|Non-prs chronic ulc unsp prt of l low leg w necrosis of bone|Non-prs chronic ulc unsp prt of l low leg w necrosis of bone +C4509335|T047|AB|L97.925|ICD10CM|Non-prs chr ulc unsp prt l lw leg w msl invl w/o evd of necr|Non-prs chr ulc unsp prt l lw leg w msl invl w/o evd of necr +C4509336|T047|AB|L97.926|ICD10CM|Non-prs chr ulc unsp prt l lw leg w bne invl w/o evd of necr|Non-prs chr ulc unsp prt l lw leg w bne invl w/o evd of necr +C4509337|T047|PT|L97.928|ICD10CM|Non-pressure chronic ulcer of unspecified part of left lower leg with other specified severity|Non-pressure chronic ulcer of unspecified part of left lower leg with other specified severity +C4509337|T047|AB|L97.928|ICD10CM|Non-prs chronic ulc unsp prt of l low leg with oth severity|Non-prs chronic ulc unsp prt of l low leg with oth severity +C2888771|T047|PT|L97.929|ICD10CM|Non-pressure chronic ulcer of unspecified part of left lower leg with unspecified severity|Non-pressure chronic ulcer of unspecified part of left lower leg with unspecified severity +C2888771|T047|AB|L97.929|ICD10CM|Non-prs chronic ulc unsp prt of l low leg w unsp severity|Non-prs chronic ulc unsp prt of l low leg w unsp severity +C0494889|T047|AB|L98|ICD10CM|Oth disorders of skin, subcu, not elsewhere classified|Oth disorders of skin, subcu, not elsewhere classified +C0494889|T047|HT|L98|ICD10CM|Other disorders of skin and subcutaneous tissue, not elsewhere classified|Other disorders of skin and subcutaneous tissue, not elsewhere classified +C0494889|T047|HT|L98|ICD10|Other disorders of skin and subcutaneous tissue, not elsewhere classified|Other disorders of skin and subcutaneous tissue, not elsewhere classified +C0263218|T191|PT|L98.0|ICD10CM|Pyogenic granuloma|Pyogenic granuloma +C0263218|T191|AB|L98.0|ICD10CM|Pyogenic granuloma|Pyogenic granuloma +C0263218|T191|PT|L98.0|ICD10|Pyogenic granuloma|Pyogenic granuloma +C1274184|T047|PT|L98.1|ICD10|Factitial dermatitis|Factitial dermatitis +C1274184|T047|PT|L98.1|ICD10CM|Factitial dermatitis|Factitial dermatitis +C1274184|T047|AB|L98.1|ICD10CM|Factitial dermatitis|Factitial dermatitis +C1274184|T047|ET|L98.1|ICD10CM|Neurotic excoriation|Neurotic excoriation +C0085077|T047|PT|L98.2|ICD10|Febrile neutrophilic dermatosis [Sweet]|Febrile neutrophilic dermatosis [Sweet] +C0085077|T047|PT|L98.2|ICD10CM|Febrile neutrophilic dermatosis [Sweet]|Febrile neutrophilic dermatosis [Sweet] +C0085077|T047|AB|L98.2|ICD10CM|Febrile neutrophilic dermatosis [Sweet]|Febrile neutrophilic dermatosis [Sweet] +C0343101|T047|PT|L98.3|ICD10|Eosinophilic cellulitis [Wells]|Eosinophilic cellulitis [Wells] +C0343101|T047|PT|L98.3|ICD10CM|Eosinophilic cellulitis [Wells]|Eosinophilic cellulitis [Wells] +C0343101|T047|AB|L98.3|ICD10CM|Eosinophilic cellulitis [Wells]|Eosinophilic cellulitis [Wells] +C0157738|T047|ET|L98.4|ICD10CM|Chronic ulcer of skin NOS|Chronic ulcer of skin NOS +C0494891|T047|PT|L98.4|ICD10|Chronic ulcer of skin, not elsewhere classified|Chronic ulcer of skin, not elsewhere classified +C2888772|T047|AB|L98.4|ICD10CM|Non-pressure chronic ulcer of skin, not elsewhere classified|Non-pressure chronic ulcer of skin, not elsewhere classified +C2888772|T047|HT|L98.4|ICD10CM|Non-pressure chronic ulcer of skin, not elsewhere classified|Non-pressure chronic ulcer of skin, not elsewhere classified +C0263556|T047|ET|L98.4|ICD10CM|Tropical ulcer NOS|Tropical ulcer NOS +C0037299|T047|ET|L98.4|ICD10CM|Ulcer of skin NOS|Ulcer of skin NOS +C2888773|T047|AB|L98.41|ICD10CM|Non-pressure chronic ulcer of buttock|Non-pressure chronic ulcer of buttock +C2888773|T047|HT|L98.41|ICD10CM|Non-pressure chronic ulcer of buttock|Non-pressure chronic ulcer of buttock +C2888774|T047|PT|L98.411|ICD10CM|Non-pressure chronic ulcer of buttock limited to breakdown of skin|Non-pressure chronic ulcer of buttock limited to breakdown of skin +C2888774|T047|AB|L98.411|ICD10CM|Non-pressure chronic ulcer of buttock limited to brkdwn skin|Non-pressure chronic ulcer of buttock limited to brkdwn skin +C2888775|T047|AB|L98.412|ICD10CM|Non-pressure chronic ulcer of buttock with fat layer exposed|Non-pressure chronic ulcer of buttock with fat layer exposed +C2888775|T047|PT|L98.412|ICD10CM|Non-pressure chronic ulcer of buttock with fat layer exposed|Non-pressure chronic ulcer of buttock with fat layer exposed +C2888776|T047|AB|L98.413|ICD10CM|Non-pressure chronic ulcer of buttock w necrosis of muscle|Non-pressure chronic ulcer of buttock w necrosis of muscle +C2888776|T047|PT|L98.413|ICD10CM|Non-pressure chronic ulcer of buttock with necrosis of muscle|Non-pressure chronic ulcer of buttock with necrosis of muscle +C2888777|T047|AB|L98.414|ICD10CM|Non-pressure chronic ulcer of buttock with necrosis of bone|Non-pressure chronic ulcer of buttock with necrosis of bone +C2888777|T047|PT|L98.414|ICD10CM|Non-pressure chronic ulcer of buttock with necrosis of bone|Non-pressure chronic ulcer of buttock with necrosis of bone +C4509338|T047|PT|L98.415|ICD10CM|Non-pressure chronic ulcer of buttock with muscle involvement without evidence of necrosis|Non-pressure chronic ulcer of buttock with muscle involvement without evidence of necrosis +C4509338|T047|AB|L98.415|ICD10CM|Non-prs chr ulcer of buttock with msl invl w/o evd of necr|Non-prs chr ulcer of buttock with msl invl w/o evd of necr +C4509339|T047|PT|L98.416|ICD10CM|Non-pressure chronic ulcer of buttock with bone involvement without evidence of necrosis|Non-pressure chronic ulcer of buttock with bone involvement without evidence of necrosis +C4509339|T047|AB|L98.416|ICD10CM|Non-prs chr ulcer of buttock with bone invl w/o evd of necr|Non-prs chr ulcer of buttock with bone invl w/o evd of necr +C4509340|T047|AB|L98.418|ICD10CM|Non-pressure chronic ulcer of buttock with oth severity|Non-pressure chronic ulcer of buttock with oth severity +C4509340|T047|PT|L98.418|ICD10CM|Non-pressure chronic ulcer of buttock with other specified severity|Non-pressure chronic ulcer of buttock with other specified severity +C2888778|T047|AB|L98.419|ICD10CM|Non-pressure chronic ulcer of buttock with unsp severity|Non-pressure chronic ulcer of buttock with unsp severity +C2888778|T047|PT|L98.419|ICD10CM|Non-pressure chronic ulcer of buttock with unspecified severity|Non-pressure chronic ulcer of buttock with unspecified severity +C2888779|T047|AB|L98.42|ICD10CM|Non-pressure chronic ulcer of back|Non-pressure chronic ulcer of back +C2888779|T047|HT|L98.42|ICD10CM|Non-pressure chronic ulcer of back|Non-pressure chronic ulcer of back +C2888780|T047|PT|L98.421|ICD10CM|Non-pressure chronic ulcer of back limited to breakdown of skin|Non-pressure chronic ulcer of back limited to breakdown of skin +C2888780|T047|AB|L98.421|ICD10CM|Non-pressure chronic ulcer of back limited to brkdwn skin|Non-pressure chronic ulcer of back limited to brkdwn skin +C2888781|T047|AB|L98.422|ICD10CM|Non-pressure chronic ulcer of back with fat layer exposed|Non-pressure chronic ulcer of back with fat layer exposed +C2888781|T047|PT|L98.422|ICD10CM|Non-pressure chronic ulcer of back with fat layer exposed|Non-pressure chronic ulcer of back with fat layer exposed +C2888782|T047|AB|L98.423|ICD10CM|Non-pressure chronic ulcer of back with necrosis of muscle|Non-pressure chronic ulcer of back with necrosis of muscle +C2888782|T047|PT|L98.423|ICD10CM|Non-pressure chronic ulcer of back with necrosis of muscle|Non-pressure chronic ulcer of back with necrosis of muscle +C2888783|T047|AB|L98.424|ICD10CM|Non-pressure chronic ulcer of back with necrosis of bone|Non-pressure chronic ulcer of back with necrosis of bone +C2888783|T047|PT|L98.424|ICD10CM|Non-pressure chronic ulcer of back with necrosis of bone|Non-pressure chronic ulcer of back with necrosis of bone +C4509341|T047|PT|L98.425|ICD10CM|Non-pressure chronic ulcer of back with muscle involvement without evidence of necrosis|Non-pressure chronic ulcer of back with muscle involvement without evidence of necrosis +C4509341|T047|AB|L98.425|ICD10CM|Non-prs chr ulcer of back with muscle invl w/o evd of necr|Non-prs chr ulcer of back with muscle invl w/o evd of necr +C4509342|T047|PT|L98.426|ICD10CM|Non-pressure chronic ulcer of back with bone involvement without evidence of necrosis|Non-pressure chronic ulcer of back with bone involvement without evidence of necrosis +C4509342|T047|AB|L98.426|ICD10CM|Non-prs chr ulcer of back with bone invl without evd of necr|Non-prs chr ulcer of back with bone invl without evd of necr +C4509343|T047|AB|L98.428|ICD10CM|Non-pressure chronic ulcer of back with oth severity|Non-pressure chronic ulcer of back with oth severity +C4509343|T047|PT|L98.428|ICD10CM|Non-pressure chronic ulcer of back with other specified severity|Non-pressure chronic ulcer of back with other specified severity +C2888784|T047|AB|L98.429|ICD10CM|Non-pressure chronic ulcer of back with unspecified severity|Non-pressure chronic ulcer of back with unspecified severity +C2888784|T047|PT|L98.429|ICD10CM|Non-pressure chronic ulcer of back with unspecified severity|Non-pressure chronic ulcer of back with unspecified severity +C2888785|T047|ET|L98.49|ICD10CM|Non-pressure chronic ulcer of skin NOS|Non-pressure chronic ulcer of skin NOS +C2888786|T047|AB|L98.49|ICD10CM|Non-pressure chronic ulcer of skin of other sites|Non-pressure chronic ulcer of skin of other sites +C2888786|T047|HT|L98.49|ICD10CM|Non-pressure chronic ulcer of skin of other sites|Non-pressure chronic ulcer of skin of other sites +C2888787|T047|PT|L98.491|ICD10CM|Non-pressure chronic ulcer of skin of other sites limited to breakdown of skin|Non-pressure chronic ulcer of skin of other sites limited to breakdown of skin +C2888787|T047|AB|L98.491|ICD10CM|Non-prs chronic ulcer skin/ sites limited to brkdwn skin|Non-prs chronic ulcer skin/ sites limited to brkdwn skin +C2888788|T047|PT|L98.492|ICD10CM|Non-pressure chronic ulcer of skin of other sites with fat layer exposed|Non-pressure chronic ulcer of skin of other sites with fat layer exposed +C2888788|T047|AB|L98.492|ICD10CM|Non-prs chronic ulcer of skin of sites w fat layer exposed|Non-prs chronic ulcer of skin of sites w fat layer exposed +C2888789|T047|PT|L98.493|ICD10CM|Non-pressure chronic ulcer of skin of other sites with necrosis of muscle|Non-pressure chronic ulcer of skin of other sites with necrosis of muscle +C2888789|T047|AB|L98.493|ICD10CM|Non-prs chronic ulcer of skin of sites w necrosis of muscle|Non-prs chronic ulcer of skin of sites w necrosis of muscle +C2888790|T047|PT|L98.494|ICD10CM|Non-pressure chronic ulcer of skin of other sites with necrosis of bone|Non-pressure chronic ulcer of skin of other sites with necrosis of bone +C2888790|T047|AB|L98.494|ICD10CM|Non-prs chronic ulcer of skin of sites w necrosis of bone|Non-prs chronic ulcer of skin of sites w necrosis of bone +C4509344|T047|AB|L98.495|ICD10CM|Non-prs chr ulc skin/ oth site with msl invl w/o evd of necr|Non-prs chr ulc skin/ oth site with msl invl w/o evd of necr +C4509345|T047|PT|L98.496|ICD10CM|Non-pressure chronic ulcer of skin of other sites with bone involvement without evidence of necrosis|Non-pressure chronic ulcer of skin of other sites with bone involvement without evidence of necrosis +C4509345|T047|AB|L98.496|ICD10CM|Non-prs chr ulc skin/ oth site with bne invl w/o evd of necr|Non-prs chr ulc skin/ oth site with bne invl w/o evd of necr +C4509346|T047|PT|L98.498|ICD10CM|Non-pressure chronic ulcer of skin of other sites with other specified severity|Non-pressure chronic ulcer of skin of other sites with other specified severity +C4509346|T047|AB|L98.498|ICD10CM|Non-prs chronic ulcer skin/ other sites with oth severity|Non-prs chronic ulcer skin/ other sites with oth severity +C2888791|T047|PT|L98.499|ICD10CM|Non-pressure chronic ulcer of skin of other sites with unspecified severity|Non-pressure chronic ulcer of skin of other sites with unspecified severity +C2888791|T047|AB|L98.499|ICD10CM|Non-pressure chronic ulcer of skin of sites w unsp severity|Non-pressure chronic ulcer of skin of sites w unsp severity +C2888792|T046|ET|L98.5|ICD10CM|Focal mucinosis|Focal mucinosis +C0263390|T047|ET|L98.5|ICD10CM|Lichen myxedematosus|Lichen myxedematosus +C0406655|T047|PT|L98.5|ICD10|Mucinosis of skin|Mucinosis of skin +C0406655|T047|AB|L98.5|ICD10CM|Mucinosis of the skin|Mucinosis of the skin +C0406655|T047|PT|L98.5|ICD10CM|Mucinosis of the skin|Mucinosis of the skin +C0406656|T047|ET|L98.5|ICD10CM|Reticular erythematous mucinosis|Reticular erythematous mucinosis +C0477528|T047|AB|L98.6|ICD10CM|Oth infiltrative disorders of the skin, subcu|Oth infiltrative disorders of the skin, subcu +C0477528|T047|PT|L98.6|ICD10|Other infiltrative disorders of skin and subcutaneous tissue|Other infiltrative disorders of skin and subcutaneous tissue +C0477528|T047|PT|L98.6|ICD10CM|Other infiltrative disorders of the skin and subcutaneous tissue|Other infiltrative disorders of the skin and subcutaneous tissue +C4268684|T047|AB|L98.7|ICD10CM|Excessive and redundant skin and subcutaneous tissue|Excessive and redundant skin and subcutaneous tissue +C4268684|T047|PT|L98.7|ICD10CM|Excessive and redundant skin and subcutaneous tissue|Excessive and redundant skin and subcutaneous tissue +C4268685|T046|ET|L98.7|ICD10CM|Loose or sagging skin following bariatric surgery weight loss|Loose or sagging skin following bariatric surgery weight loss +C4268686|T046|ET|L98.7|ICD10CM|Loose or sagging skin following dietary weight loss|Loose or sagging skin following dietary weight loss +C4268687|T033|ET|L98.7|ICD10CM|Loose or sagging skin, NOS|Loose or sagging skin, NOS +C0477529|T047|AB|L98.8|ICD10CM|Oth disrd of the skin and subcutaneous tissue|Oth disrd of the skin and subcutaneous tissue +C0477529|T047|PT|L98.8|ICD10|Other specified disorders of skin and subcutaneous tissue|Other specified disorders of skin and subcutaneous tissue +C0477529|T047|PT|L98.8|ICD10CM|Other specified disorders of the skin and subcutaneous tissue|Other specified disorders of the skin and subcutaneous tissue +C0178298|T047|PT|L98.9|ICD10|Disorder of skin and subcutaneous tissue, unspecified|Disorder of skin and subcutaneous tissue, unspecified +C0178298|T047|AB|L98.9|ICD10CM|Disorder of the skin and subcutaneous tissue, unspecified|Disorder of the skin and subcutaneous tissue, unspecified +C0178298|T047|PT|L98.9|ICD10CM|Disorder of the skin and subcutaneous tissue, unspecified|Disorder of the skin and subcutaneous tissue, unspecified +C0477530|T047|AB|L99|ICD10CM|Oth disorders of skin, subcu in diseases classd elswhr|Oth disorders of skin, subcu in diseases classd elswhr +C0477530|T047|PT|L99|ICD10CM|Other disorders of skin and subcutaneous tissue in diseases classified elsewhere|Other disorders of skin and subcutaneous tissue in diseases classified elsewhere +C0477530|T047|HT|L99|ICD10|Other disorders of skin and subcutaneous tissue in diseases classified elsewhere|Other disorders of skin and subcutaneous tissue in diseases classified elsewhere +C0268397|T047|PT|L99.0|ICD10|Amyloidosis of skin|Amyloidosis of skin +C0494892|T047|PT|L99.8|ICD10|Other specified disorders of skin and subcutaneous tissue in diseases classified elsewhere|Other specified disorders of skin and subcutaneous tissue in diseases classified elsewhere +C0003869|T047|HT|M00|ICD10|Pyogenic arthritis|Pyogenic arthritis +C0003869|T047|HT|M00|ICD10CM|Pyogenic arthritis|Pyogenic arthritis +C0003869|T047|AB|M00|ICD10CM|Pyogenic arthritis|Pyogenic arthritis +C0157749|T047|HT|M00-M02|ICD10CM|Infectious arthropathies (M00-M02)|Infectious arthropathies (M00-M02) +C0157749|T047|HT|M00-M03.9|ICD10|Infectious arthropathies|Infectious arthropathies +C4268688|T047|HT|M00-M25|ICD10CM|Arthropathies (M00-M25)|Arthropathies (M00-M25) +C4290222|T047|ET|M00-M25|ICD10CM|Disorders affecting predominantly peripheral (limb) joints|Disorders affecting predominantly peripheral (limb) joints +C0022408|T047|HT|M00-M25.9|ICD10|Arthropathies|Arthropathies +C0263660|T047|HT|M00-M99|ICD10CM|Diseases of the musculoskeletal system and connective tissue (M00-M99)|Diseases of the musculoskeletal system and connective tissue (M00-M99) +C0263660|T047|HT|M00-M99.9|ICD10|Diseases of the musculoskeletal system and connective tissue|Diseases of the musculoskeletal system and connective tissue +C0451833|T047|PT|M00.0|ICD10|Staphylococcal arthritis and polyarthritis|Staphylococcal arthritis and polyarthritis +C0451833|T047|HT|M00.0|ICD10CM|Staphylococcal arthritis and polyarthritis|Staphylococcal arthritis and polyarthritis +C0451833|T047|AB|M00.0|ICD10CM|Staphylococcal arthritis and polyarthritis|Staphylococcal arthritis and polyarthritis +C2888793|T047|AB|M00.00|ICD10CM|Staphylococcal arthritis, unspecified joint|Staphylococcal arthritis, unspecified joint +C2888793|T047|PT|M00.00|ICD10CM|Staphylococcal arthritis, unspecified joint|Staphylococcal arthritis, unspecified joint +C2888794|T047|AB|M00.01|ICD10CM|Staphylococcal arthritis, shoulder|Staphylococcal arthritis, shoulder +C2888794|T047|HT|M00.01|ICD10CM|Staphylococcal arthritis, shoulder|Staphylococcal arthritis, shoulder +C2888795|T047|AB|M00.011|ICD10CM|Staphylococcal arthritis, right shoulder|Staphylococcal arthritis, right shoulder +C2888795|T047|PT|M00.011|ICD10CM|Staphylococcal arthritis, right shoulder|Staphylococcal arthritis, right shoulder +C2888796|T047|AB|M00.012|ICD10CM|Staphylococcal arthritis, left shoulder|Staphylococcal arthritis, left shoulder +C2888796|T047|PT|M00.012|ICD10CM|Staphylococcal arthritis, left shoulder|Staphylococcal arthritis, left shoulder +C2888797|T047|AB|M00.019|ICD10CM|Staphylococcal arthritis, unspecified shoulder|Staphylococcal arthritis, unspecified shoulder +C2888797|T047|PT|M00.019|ICD10CM|Staphylococcal arthritis, unspecified shoulder|Staphylococcal arthritis, unspecified shoulder +C2888798|T047|AB|M00.02|ICD10CM|Staphylococcal arthritis, elbow|Staphylococcal arthritis, elbow +C2888798|T047|HT|M00.02|ICD10CM|Staphylococcal arthritis, elbow|Staphylococcal arthritis, elbow +C2888799|T047|AB|M00.021|ICD10CM|Staphylococcal arthritis, right elbow|Staphylococcal arthritis, right elbow +C2888799|T047|PT|M00.021|ICD10CM|Staphylococcal arthritis, right elbow|Staphylococcal arthritis, right elbow +C2888800|T047|AB|M00.022|ICD10CM|Staphylococcal arthritis, left elbow|Staphylococcal arthritis, left elbow +C2888800|T047|PT|M00.022|ICD10CM|Staphylococcal arthritis, left elbow|Staphylococcal arthritis, left elbow +C2888801|T047|AB|M00.029|ICD10CM|Staphylococcal arthritis, unspecified elbow|Staphylococcal arthritis, unspecified elbow +C2888801|T047|PT|M00.029|ICD10CM|Staphylococcal arthritis, unspecified elbow|Staphylococcal arthritis, unspecified elbow +C2888802|T047|ET|M00.03|ICD10CM|Staphylococcal arthritis of carpal bones|Staphylococcal arthritis of carpal bones +C2888803|T047|AB|M00.03|ICD10CM|Staphylococcal arthritis, wrist|Staphylococcal arthritis, wrist +C2888803|T047|HT|M00.03|ICD10CM|Staphylococcal arthritis, wrist|Staphylococcal arthritis, wrist +C2888804|T047|AB|M00.031|ICD10CM|Staphylococcal arthritis, right wrist|Staphylococcal arthritis, right wrist +C2888804|T047|PT|M00.031|ICD10CM|Staphylococcal arthritis, right wrist|Staphylococcal arthritis, right wrist +C2888805|T047|AB|M00.032|ICD10CM|Staphylococcal arthritis, left wrist|Staphylococcal arthritis, left wrist +C2888805|T047|PT|M00.032|ICD10CM|Staphylococcal arthritis, left wrist|Staphylococcal arthritis, left wrist +C2888806|T047|AB|M00.039|ICD10CM|Staphylococcal arthritis, unspecified wrist|Staphylococcal arthritis, unspecified wrist +C2888806|T047|PT|M00.039|ICD10CM|Staphylococcal arthritis, unspecified wrist|Staphylococcal arthritis, unspecified wrist +C2888807|T047|ET|M00.04|ICD10CM|Staphylococcal arthritis of metacarpus and phalanges|Staphylococcal arthritis of metacarpus and phalanges +C2888808|T047|AB|M00.04|ICD10CM|Staphylococcal arthritis, hand|Staphylococcal arthritis, hand +C2888808|T047|HT|M00.04|ICD10CM|Staphylococcal arthritis, hand|Staphylococcal arthritis, hand +C2888809|T047|AB|M00.041|ICD10CM|Staphylococcal arthritis, right hand|Staphylococcal arthritis, right hand +C2888809|T047|PT|M00.041|ICD10CM|Staphylococcal arthritis, right hand|Staphylococcal arthritis, right hand +C2888810|T047|AB|M00.042|ICD10CM|Staphylococcal arthritis, left hand|Staphylococcal arthritis, left hand +C2888810|T047|PT|M00.042|ICD10CM|Staphylococcal arthritis, left hand|Staphylococcal arthritis, left hand +C2888811|T047|AB|M00.049|ICD10CM|Staphylococcal arthritis, unspecified hand|Staphylococcal arthritis, unspecified hand +C2888811|T047|PT|M00.049|ICD10CM|Staphylococcal arthritis, unspecified hand|Staphylococcal arthritis, unspecified hand +C2888812|T047|AB|M00.05|ICD10CM|Staphylococcal arthritis, hip|Staphylococcal arthritis, hip +C2888812|T047|HT|M00.05|ICD10CM|Staphylococcal arthritis, hip|Staphylococcal arthritis, hip +C2888813|T047|AB|M00.051|ICD10CM|Staphylococcal arthritis, right hip|Staphylococcal arthritis, right hip +C2888813|T047|PT|M00.051|ICD10CM|Staphylococcal arthritis, right hip|Staphylococcal arthritis, right hip +C2888814|T047|AB|M00.052|ICD10CM|Staphylococcal arthritis, left hip|Staphylococcal arthritis, left hip +C2888814|T047|PT|M00.052|ICD10CM|Staphylococcal arthritis, left hip|Staphylococcal arthritis, left hip +C2888815|T047|AB|M00.059|ICD10CM|Staphylococcal arthritis, unspecified hip|Staphylococcal arthritis, unspecified hip +C2888815|T047|PT|M00.059|ICD10CM|Staphylococcal arthritis, unspecified hip|Staphylococcal arthritis, unspecified hip +C2888816|T047|AB|M00.06|ICD10CM|Staphylococcal arthritis, knee|Staphylococcal arthritis, knee +C2888816|T047|HT|M00.06|ICD10CM|Staphylococcal arthritis, knee|Staphylococcal arthritis, knee +C2888817|T047|AB|M00.061|ICD10CM|Staphylococcal arthritis, right knee|Staphylococcal arthritis, right knee +C2888817|T047|PT|M00.061|ICD10CM|Staphylococcal arthritis, right knee|Staphylococcal arthritis, right knee +C2888818|T047|AB|M00.062|ICD10CM|Staphylococcal arthritis, left knee|Staphylococcal arthritis, left knee +C2888818|T047|PT|M00.062|ICD10CM|Staphylococcal arthritis, left knee|Staphylococcal arthritis, left knee +C2888819|T047|AB|M00.069|ICD10CM|Staphylococcal arthritis, unspecified knee|Staphylococcal arthritis, unspecified knee +C2888819|T047|PT|M00.069|ICD10CM|Staphylococcal arthritis, unspecified knee|Staphylococcal arthritis, unspecified knee +C2888821|T047|AB|M00.07|ICD10CM|Staphylococcal arthritis, ankle and foot|Staphylococcal arthritis, ankle and foot +C2888821|T047|HT|M00.07|ICD10CM|Staphylococcal arthritis, ankle and foot|Staphylococcal arthritis, ankle and foot +C2888820|T047|ET|M00.07|ICD10CM|Staphylococcal arthritis, tarsus, metatarsus and phalanges|Staphylococcal arthritis, tarsus, metatarsus and phalanges +C2888822|T047|AB|M00.071|ICD10CM|Staphylococcal arthritis, right ankle and foot|Staphylococcal arthritis, right ankle and foot +C2888822|T047|PT|M00.071|ICD10CM|Staphylococcal arthritis, right ankle and foot|Staphylococcal arthritis, right ankle and foot +C2888823|T047|AB|M00.072|ICD10CM|Staphylococcal arthritis, left ankle and foot|Staphylococcal arthritis, left ankle and foot +C2888823|T047|PT|M00.072|ICD10CM|Staphylococcal arthritis, left ankle and foot|Staphylococcal arthritis, left ankle and foot +C2888824|T047|AB|M00.079|ICD10CM|Staphylococcal arthritis, unspecified ankle and foot|Staphylococcal arthritis, unspecified ankle and foot +C2888824|T047|PT|M00.079|ICD10CM|Staphylococcal arthritis, unspecified ankle and foot|Staphylococcal arthritis, unspecified ankle and foot +C2888825|T047|AB|M00.08|ICD10CM|Staphylococcal arthritis, vertebrae|Staphylococcal arthritis, vertebrae +C2888825|T047|PT|M00.08|ICD10CM|Staphylococcal arthritis, vertebrae|Staphylococcal arthritis, vertebrae +C2888826|T047|AB|M00.09|ICD10CM|Staphylococcal polyarthritis|Staphylococcal polyarthritis +C2888826|T047|PT|M00.09|ICD10CM|Staphylococcal polyarthritis|Staphylococcal polyarthritis +C1260913|T047|PT|M00.1|ICD10|Pneumococcal arthritis and polyarthritis|Pneumococcal arthritis and polyarthritis +C1260913|T047|HT|M00.1|ICD10CM|Pneumococcal arthritis and polyarthritis|Pneumococcal arthritis and polyarthritis +C1260913|T047|AB|M00.1|ICD10CM|Pneumococcal arthritis and polyarthritis|Pneumococcal arthritis and polyarthritis +C2888827|T047|AB|M00.10|ICD10CM|Pneumococcal arthritis, unspecified joint|Pneumococcal arthritis, unspecified joint +C2888827|T047|PT|M00.10|ICD10CM|Pneumococcal arthritis, unspecified joint|Pneumococcal arthritis, unspecified joint +C2888828|T047|AB|M00.11|ICD10CM|Pneumococcal arthritis, shoulder|Pneumococcal arthritis, shoulder +C2888828|T047|HT|M00.11|ICD10CM|Pneumococcal arthritis, shoulder|Pneumococcal arthritis, shoulder +C2888829|T047|AB|M00.111|ICD10CM|Pneumococcal arthritis, right shoulder|Pneumococcal arthritis, right shoulder +C2888829|T047|PT|M00.111|ICD10CM|Pneumococcal arthritis, right shoulder|Pneumococcal arthritis, right shoulder +C2888830|T047|AB|M00.112|ICD10CM|Pneumococcal arthritis, left shoulder|Pneumococcal arthritis, left shoulder +C2888830|T047|PT|M00.112|ICD10CM|Pneumococcal arthritis, left shoulder|Pneumococcal arthritis, left shoulder +C2888831|T047|AB|M00.119|ICD10CM|Pneumococcal arthritis, unspecified shoulder|Pneumococcal arthritis, unspecified shoulder +C2888831|T047|PT|M00.119|ICD10CM|Pneumococcal arthritis, unspecified shoulder|Pneumococcal arthritis, unspecified shoulder +C2888832|T047|AB|M00.12|ICD10CM|Pneumococcal arthritis, elbow|Pneumococcal arthritis, elbow +C2888832|T047|HT|M00.12|ICD10CM|Pneumococcal arthritis, elbow|Pneumococcal arthritis, elbow +C2888833|T047|AB|M00.121|ICD10CM|Pneumococcal arthritis, right elbow|Pneumococcal arthritis, right elbow +C2888833|T047|PT|M00.121|ICD10CM|Pneumococcal arthritis, right elbow|Pneumococcal arthritis, right elbow +C2888834|T047|AB|M00.122|ICD10CM|Pneumococcal arthritis, left elbow|Pneumococcal arthritis, left elbow +C2888834|T047|PT|M00.122|ICD10CM|Pneumococcal arthritis, left elbow|Pneumococcal arthritis, left elbow +C2888835|T047|AB|M00.129|ICD10CM|Pneumococcal arthritis, unspecified elbow|Pneumococcal arthritis, unspecified elbow +C2888835|T047|PT|M00.129|ICD10CM|Pneumococcal arthritis, unspecified elbow|Pneumococcal arthritis, unspecified elbow +C2888836|T047|ET|M00.13|ICD10CM|Pneumococcal arthritis of carpal bones|Pneumococcal arthritis of carpal bones +C2888837|T047|AB|M00.13|ICD10CM|Pneumococcal arthritis, wrist|Pneumococcal arthritis, wrist +C2888837|T047|HT|M00.13|ICD10CM|Pneumococcal arthritis, wrist|Pneumococcal arthritis, wrist +C2888838|T047|AB|M00.131|ICD10CM|Pneumococcal arthritis, right wrist|Pneumococcal arthritis, right wrist +C2888838|T047|PT|M00.131|ICD10CM|Pneumococcal arthritis, right wrist|Pneumococcal arthritis, right wrist +C2888839|T047|AB|M00.132|ICD10CM|Pneumococcal arthritis, left wrist|Pneumococcal arthritis, left wrist +C2888839|T047|PT|M00.132|ICD10CM|Pneumococcal arthritis, left wrist|Pneumococcal arthritis, left wrist +C2888840|T047|AB|M00.139|ICD10CM|Pneumococcal arthritis, unspecified wrist|Pneumococcal arthritis, unspecified wrist +C2888840|T047|PT|M00.139|ICD10CM|Pneumococcal arthritis, unspecified wrist|Pneumococcal arthritis, unspecified wrist +C2888841|T047|ET|M00.14|ICD10CM|Pneumococcal arthritis of metacarpus and phalanges|Pneumococcal arthritis of metacarpus and phalanges +C2888844|T047|AB|M00.14|ICD10CM|Pneumococcal arthritis, hand|Pneumococcal arthritis, hand +C2888844|T047|HT|M00.14|ICD10CM|Pneumococcal arthritis, hand|Pneumococcal arthritis, hand +C2888842|T047|AB|M00.141|ICD10CM|Pneumococcal arthritis, right hand|Pneumococcal arthritis, right hand +C2888842|T047|PT|M00.141|ICD10CM|Pneumococcal arthritis, right hand|Pneumococcal arthritis, right hand +C2888843|T047|AB|M00.142|ICD10CM|Pneumococcal arthritis, left hand|Pneumococcal arthritis, left hand +C2888843|T047|PT|M00.142|ICD10CM|Pneumococcal arthritis, left hand|Pneumococcal arthritis, left hand +C2888844|T047|AB|M00.149|ICD10CM|Pneumococcal arthritis, unspecified hand|Pneumococcal arthritis, unspecified hand +C2888844|T047|PT|M00.149|ICD10CM|Pneumococcal arthritis, unspecified hand|Pneumococcal arthritis, unspecified hand +C2888847|T047|AB|M00.15|ICD10CM|Pneumococcal arthritis, hip|Pneumococcal arthritis, hip +C2888847|T047|HT|M00.15|ICD10CM|Pneumococcal arthritis, hip|Pneumococcal arthritis, hip +C2888845|T047|AB|M00.151|ICD10CM|Pneumococcal arthritis, right hip|Pneumococcal arthritis, right hip +C2888845|T047|PT|M00.151|ICD10CM|Pneumococcal arthritis, right hip|Pneumococcal arthritis, right hip +C2888846|T047|AB|M00.152|ICD10CM|Pneumococcal arthritis, left hip|Pneumococcal arthritis, left hip +C2888846|T047|PT|M00.152|ICD10CM|Pneumococcal arthritis, left hip|Pneumococcal arthritis, left hip +C2888847|T047|AB|M00.159|ICD10CM|Pneumococcal arthritis, unspecified hip|Pneumococcal arthritis, unspecified hip +C2888847|T047|PT|M00.159|ICD10CM|Pneumococcal arthritis, unspecified hip|Pneumococcal arthritis, unspecified hip +C2888848|T047|AB|M00.16|ICD10CM|Pneumococcal arthritis, knee|Pneumococcal arthritis, knee +C2888848|T047|HT|M00.16|ICD10CM|Pneumococcal arthritis, knee|Pneumococcal arthritis, knee +C2888849|T047|AB|M00.161|ICD10CM|Pneumococcal arthritis, right knee|Pneumococcal arthritis, right knee +C2888849|T047|PT|M00.161|ICD10CM|Pneumococcal arthritis, right knee|Pneumococcal arthritis, right knee +C2888850|T047|AB|M00.162|ICD10CM|Pneumococcal arthritis, left knee|Pneumococcal arthritis, left knee +C2888850|T047|PT|M00.162|ICD10CM|Pneumococcal arthritis, left knee|Pneumococcal arthritis, left knee +C2888851|T047|AB|M00.169|ICD10CM|Pneumococcal arthritis, unspecified knee|Pneumococcal arthritis, unspecified knee +C2888851|T047|PT|M00.169|ICD10CM|Pneumococcal arthritis, unspecified knee|Pneumococcal arthritis, unspecified knee +C2888853|T047|AB|M00.17|ICD10CM|Pneumococcal arthritis, ankle and foot|Pneumococcal arthritis, ankle and foot +C2888853|T047|HT|M00.17|ICD10CM|Pneumococcal arthritis, ankle and foot|Pneumococcal arthritis, ankle and foot +C2888852|T047|ET|M00.17|ICD10CM|Pneumococcal arthritis, tarsus, metatarsus and phalanges|Pneumococcal arthritis, tarsus, metatarsus and phalanges +C2888854|T047|AB|M00.171|ICD10CM|Pneumococcal arthritis, right ankle and foot|Pneumococcal arthritis, right ankle and foot +C2888854|T047|PT|M00.171|ICD10CM|Pneumococcal arthritis, right ankle and foot|Pneumococcal arthritis, right ankle and foot +C2888855|T047|AB|M00.172|ICD10CM|Pneumococcal arthritis, left ankle and foot|Pneumococcal arthritis, left ankle and foot +C2888855|T047|PT|M00.172|ICD10CM|Pneumococcal arthritis, left ankle and foot|Pneumococcal arthritis, left ankle and foot +C2888856|T047|AB|M00.179|ICD10CM|Pneumococcal arthritis, unspecified ankle and foot|Pneumococcal arthritis, unspecified ankle and foot +C2888856|T047|PT|M00.179|ICD10CM|Pneumococcal arthritis, unspecified ankle and foot|Pneumococcal arthritis, unspecified ankle and foot +C2888857|T047|AB|M00.18|ICD10CM|Pneumococcal arthritis, vertebrae|Pneumococcal arthritis, vertebrae +C2888857|T047|PT|M00.18|ICD10CM|Pneumococcal arthritis, vertebrae|Pneumococcal arthritis, vertebrae +C2888858|T047|AB|M00.19|ICD10CM|Pneumococcal polyarthritis|Pneumococcal polyarthritis +C2888858|T047|PT|M00.19|ICD10CM|Pneumococcal polyarthritis|Pneumococcal polyarthritis +C0477534|T047|HT|M00.2|ICD10CM|Other streptococcal arthritis and polyarthritis|Other streptococcal arthritis and polyarthritis +C0477534|T047|AB|M00.2|ICD10CM|Other streptococcal arthritis and polyarthritis|Other streptococcal arthritis and polyarthritis +C0477534|T047|PT|M00.2|ICD10|Other streptococcal arthritis and polyarthritis|Other streptococcal arthritis and polyarthritis +C2888859|T047|AB|M00.20|ICD10CM|Other streptococcal arthritis, unspecified joint|Other streptococcal arthritis, unspecified joint +C2888859|T047|PT|M00.20|ICD10CM|Other streptococcal arthritis, unspecified joint|Other streptococcal arthritis, unspecified joint +C2888860|T047|AB|M00.21|ICD10CM|Other streptococcal arthritis, shoulder|Other streptococcal arthritis, shoulder +C2888860|T047|HT|M00.21|ICD10CM|Other streptococcal arthritis, shoulder|Other streptococcal arthritis, shoulder +C2888861|T047|AB|M00.211|ICD10CM|Other streptococcal arthritis, right shoulder|Other streptococcal arthritis, right shoulder +C2888861|T047|PT|M00.211|ICD10CM|Other streptococcal arthritis, right shoulder|Other streptococcal arthritis, right shoulder +C2888862|T047|AB|M00.212|ICD10CM|Other streptococcal arthritis, left shoulder|Other streptococcal arthritis, left shoulder +C2888862|T047|PT|M00.212|ICD10CM|Other streptococcal arthritis, left shoulder|Other streptococcal arthritis, left shoulder +C2888863|T047|AB|M00.219|ICD10CM|Other streptococcal arthritis, unspecified shoulder|Other streptococcal arthritis, unspecified shoulder +C2888863|T047|PT|M00.219|ICD10CM|Other streptococcal arthritis, unspecified shoulder|Other streptococcal arthritis, unspecified shoulder +C2888864|T047|AB|M00.22|ICD10CM|Other streptococcal arthritis, elbow|Other streptococcal arthritis, elbow +C2888864|T047|HT|M00.22|ICD10CM|Other streptococcal arthritis, elbow|Other streptococcal arthritis, elbow +C2888865|T047|AB|M00.221|ICD10CM|Other streptococcal arthritis, right elbow|Other streptococcal arthritis, right elbow +C2888865|T047|PT|M00.221|ICD10CM|Other streptococcal arthritis, right elbow|Other streptococcal arthritis, right elbow +C2888866|T047|AB|M00.222|ICD10CM|Other streptococcal arthritis, left elbow|Other streptococcal arthritis, left elbow +C2888866|T047|PT|M00.222|ICD10CM|Other streptococcal arthritis, left elbow|Other streptococcal arthritis, left elbow +C2888867|T047|AB|M00.229|ICD10CM|Other streptococcal arthritis, unspecified elbow|Other streptococcal arthritis, unspecified elbow +C2888867|T047|PT|M00.229|ICD10CM|Other streptococcal arthritis, unspecified elbow|Other streptococcal arthritis, unspecified elbow +C2888868|T047|ET|M00.23|ICD10CM|Other streptococcal arthritis of carpal bones|Other streptococcal arthritis of carpal bones +C2888869|T047|AB|M00.23|ICD10CM|Other streptococcal arthritis, wrist|Other streptococcal arthritis, wrist +C2888869|T047|HT|M00.23|ICD10CM|Other streptococcal arthritis, wrist|Other streptococcal arthritis, wrist +C2888870|T047|AB|M00.231|ICD10CM|Other streptococcal arthritis, right wrist|Other streptococcal arthritis, right wrist +C2888870|T047|PT|M00.231|ICD10CM|Other streptococcal arthritis, right wrist|Other streptococcal arthritis, right wrist +C2888871|T047|AB|M00.232|ICD10CM|Other streptococcal arthritis, left wrist|Other streptococcal arthritis, left wrist +C2888871|T047|PT|M00.232|ICD10CM|Other streptococcal arthritis, left wrist|Other streptococcal arthritis, left wrist +C2888872|T047|AB|M00.239|ICD10CM|Other streptococcal arthritis, unspecified wrist|Other streptococcal arthritis, unspecified wrist +C2888872|T047|PT|M00.239|ICD10CM|Other streptococcal arthritis, unspecified wrist|Other streptococcal arthritis, unspecified wrist +C2888873|T047|ET|M00.24|ICD10CM|Other streptococcal arthritis metacarpus and phalanges|Other streptococcal arthritis metacarpus and phalanges +C2888874|T047|AB|M00.24|ICD10CM|Other streptococcal arthritis, hand|Other streptococcal arthritis, hand +C2888874|T047|HT|M00.24|ICD10CM|Other streptococcal arthritis, hand|Other streptococcal arthritis, hand +C2888875|T047|AB|M00.241|ICD10CM|Other streptococcal arthritis, right hand|Other streptococcal arthritis, right hand +C2888875|T047|PT|M00.241|ICD10CM|Other streptococcal arthritis, right hand|Other streptococcal arthritis, right hand +C2888876|T047|AB|M00.242|ICD10CM|Other streptococcal arthritis, left hand|Other streptococcal arthritis, left hand +C2888876|T047|PT|M00.242|ICD10CM|Other streptococcal arthritis, left hand|Other streptococcal arthritis, left hand +C2888877|T047|AB|M00.249|ICD10CM|Other streptococcal arthritis, unspecified hand|Other streptococcal arthritis, unspecified hand +C2888877|T047|PT|M00.249|ICD10CM|Other streptococcal arthritis, unspecified hand|Other streptococcal arthritis, unspecified hand +C2888878|T047|AB|M00.25|ICD10CM|Other streptococcal arthritis, hip|Other streptococcal arthritis, hip +C2888878|T047|HT|M00.25|ICD10CM|Other streptococcal arthritis, hip|Other streptococcal arthritis, hip +C2888879|T047|AB|M00.251|ICD10CM|Other streptococcal arthritis, right hip|Other streptococcal arthritis, right hip +C2888879|T047|PT|M00.251|ICD10CM|Other streptococcal arthritis, right hip|Other streptococcal arthritis, right hip +C2888880|T047|AB|M00.252|ICD10CM|Other streptococcal arthritis, left hip|Other streptococcal arthritis, left hip +C2888880|T047|PT|M00.252|ICD10CM|Other streptococcal arthritis, left hip|Other streptococcal arthritis, left hip +C2888881|T047|AB|M00.259|ICD10CM|Other streptococcal arthritis, unspecified hip|Other streptococcal arthritis, unspecified hip +C2888881|T047|PT|M00.259|ICD10CM|Other streptococcal arthritis, unspecified hip|Other streptococcal arthritis, unspecified hip +C2888882|T047|AB|M00.26|ICD10CM|Other streptococcal arthritis, knee|Other streptococcal arthritis, knee +C2888882|T047|HT|M00.26|ICD10CM|Other streptococcal arthritis, knee|Other streptococcal arthritis, knee +C2888883|T047|AB|M00.261|ICD10CM|Other streptococcal arthritis, right knee|Other streptococcal arthritis, right knee +C2888883|T047|PT|M00.261|ICD10CM|Other streptococcal arthritis, right knee|Other streptococcal arthritis, right knee +C2888884|T047|AB|M00.262|ICD10CM|Other streptococcal arthritis, left knee|Other streptococcal arthritis, left knee +C2888884|T047|PT|M00.262|ICD10CM|Other streptococcal arthritis, left knee|Other streptococcal arthritis, left knee +C2888885|T047|AB|M00.269|ICD10CM|Other streptococcal arthritis, unspecified knee|Other streptococcal arthritis, unspecified knee +C2888885|T047|PT|M00.269|ICD10CM|Other streptococcal arthritis, unspecified knee|Other streptococcal arthritis, unspecified knee +C2888887|T047|AB|M00.27|ICD10CM|Other streptococcal arthritis, ankle and foot|Other streptococcal arthritis, ankle and foot +C2888887|T047|HT|M00.27|ICD10CM|Other streptococcal arthritis, ankle and foot|Other streptococcal arthritis, ankle and foot +C2888886|T047|ET|M00.27|ICD10CM|Other streptococcal arthritis, tarsus, metatarsus and phalanges|Other streptococcal arthritis, tarsus, metatarsus and phalanges +C2888888|T047|AB|M00.271|ICD10CM|Other streptococcal arthritis, right ankle and foot|Other streptococcal arthritis, right ankle and foot +C2888888|T047|PT|M00.271|ICD10CM|Other streptococcal arthritis, right ankle and foot|Other streptococcal arthritis, right ankle and foot +C2888889|T047|AB|M00.272|ICD10CM|Other streptococcal arthritis, left ankle and foot|Other streptococcal arthritis, left ankle and foot +C2888889|T047|PT|M00.272|ICD10CM|Other streptococcal arthritis, left ankle and foot|Other streptococcal arthritis, left ankle and foot +C2888890|T047|AB|M00.279|ICD10CM|Other streptococcal arthritis, unspecified ankle and foot|Other streptococcal arthritis, unspecified ankle and foot +C2888890|T047|PT|M00.279|ICD10CM|Other streptococcal arthritis, unspecified ankle and foot|Other streptococcal arthritis, unspecified ankle and foot +C2888891|T047|AB|M00.28|ICD10CM|Other streptococcal arthritis, vertebrae|Other streptococcal arthritis, vertebrae +C2888891|T047|PT|M00.28|ICD10CM|Other streptococcal arthritis, vertebrae|Other streptococcal arthritis, vertebrae +C2888892|T047|AB|M00.29|ICD10CM|Other streptococcal polyarthritis|Other streptococcal polyarthritis +C2888892|T047|PT|M00.29|ICD10CM|Other streptococcal polyarthritis|Other streptococcal polyarthritis +C2888893|T047|AB|M00.8|ICD10CM|Arthritis and polyarthritis due to other bacteria|Arthritis and polyarthritis due to other bacteria +C2888893|T047|HT|M00.8|ICD10CM|Arthritis and polyarthritis due to other bacteria|Arthritis and polyarthritis due to other bacteria +C0477535|T047|PT|M00.8|ICD10|Arthritis and polyarthritis due to other specified bacterial agents|Arthritis and polyarthritis due to other specified bacterial agents +C2888894|T047|AB|M00.80|ICD10CM|Arthritis due to other bacteria, unspecified joint|Arthritis due to other bacteria, unspecified joint +C2888894|T047|PT|M00.80|ICD10CM|Arthritis due to other bacteria, unspecified joint|Arthritis due to other bacteria, unspecified joint +C2888897|T047|AB|M00.81|ICD10CM|Arthritis due to other bacteria, shoulder|Arthritis due to other bacteria, shoulder +C2888897|T047|HT|M00.81|ICD10CM|Arthritis due to other bacteria, shoulder|Arthritis due to other bacteria, shoulder +C2888895|T047|AB|M00.811|ICD10CM|Arthritis due to other bacteria, right shoulder|Arthritis due to other bacteria, right shoulder +C2888895|T047|PT|M00.811|ICD10CM|Arthritis due to other bacteria, right shoulder|Arthritis due to other bacteria, right shoulder +C2888896|T047|AB|M00.812|ICD10CM|Arthritis due to other bacteria, left shoulder|Arthritis due to other bacteria, left shoulder +C2888896|T047|PT|M00.812|ICD10CM|Arthritis due to other bacteria, left shoulder|Arthritis due to other bacteria, left shoulder +C2888897|T047|AB|M00.819|ICD10CM|Arthritis due to other bacteria, unspecified shoulder|Arthritis due to other bacteria, unspecified shoulder +C2888897|T047|PT|M00.819|ICD10CM|Arthritis due to other bacteria, unspecified shoulder|Arthritis due to other bacteria, unspecified shoulder +C2888898|T047|AB|M00.82|ICD10CM|Arthritis due to other bacteria, elbow|Arthritis due to other bacteria, elbow +C2888898|T047|HT|M00.82|ICD10CM|Arthritis due to other bacteria, elbow|Arthritis due to other bacteria, elbow +C2888899|T047|AB|M00.821|ICD10CM|Arthritis due to other bacteria, right elbow|Arthritis due to other bacteria, right elbow +C2888899|T047|PT|M00.821|ICD10CM|Arthritis due to other bacteria, right elbow|Arthritis due to other bacteria, right elbow +C2888900|T047|AB|M00.822|ICD10CM|Arthritis due to other bacteria, left elbow|Arthritis due to other bacteria, left elbow +C2888900|T047|PT|M00.822|ICD10CM|Arthritis due to other bacteria, left elbow|Arthritis due to other bacteria, left elbow +C2888901|T047|AB|M00.829|ICD10CM|Arthritis due to other bacteria, unspecified elbow|Arthritis due to other bacteria, unspecified elbow +C2888901|T047|PT|M00.829|ICD10CM|Arthritis due to other bacteria, unspecified elbow|Arthritis due to other bacteria, unspecified elbow +C2888902|T047|ET|M00.83|ICD10CM|Arthritis due to other bacteria, carpal bones|Arthritis due to other bacteria, carpal bones +C2888903|T047|AB|M00.83|ICD10CM|Arthritis due to other bacteria, wrist|Arthritis due to other bacteria, wrist +C2888903|T047|HT|M00.83|ICD10CM|Arthritis due to other bacteria, wrist|Arthritis due to other bacteria, wrist +C2888904|T047|AB|M00.831|ICD10CM|Arthritis due to other bacteria, right wrist|Arthritis due to other bacteria, right wrist +C2888904|T047|PT|M00.831|ICD10CM|Arthritis due to other bacteria, right wrist|Arthritis due to other bacteria, right wrist +C2888905|T047|AB|M00.832|ICD10CM|Arthritis due to other bacteria, left wrist|Arthritis due to other bacteria, left wrist +C2888905|T047|PT|M00.832|ICD10CM|Arthritis due to other bacteria, left wrist|Arthritis due to other bacteria, left wrist +C2888906|T047|AB|M00.839|ICD10CM|Arthritis due to other bacteria, unspecified wrist|Arthritis due to other bacteria, unspecified wrist +C2888906|T047|PT|M00.839|ICD10CM|Arthritis due to other bacteria, unspecified wrist|Arthritis due to other bacteria, unspecified wrist +C2888908|T047|AB|M00.84|ICD10CM|Arthritis due to other bacteria, hand|Arthritis due to other bacteria, hand +C2888908|T047|HT|M00.84|ICD10CM|Arthritis due to other bacteria, hand|Arthritis due to other bacteria, hand +C2888907|T047|ET|M00.84|ICD10CM|Arthritis due to other bacteria, metacarpus and phalanges|Arthritis due to other bacteria, metacarpus and phalanges +C2888909|T047|AB|M00.841|ICD10CM|Arthritis due to other bacteria, right hand|Arthritis due to other bacteria, right hand +C2888909|T047|PT|M00.841|ICD10CM|Arthritis due to other bacteria, right hand|Arthritis due to other bacteria, right hand +C2888910|T047|AB|M00.842|ICD10CM|Arthritis due to other bacteria, left hand|Arthritis due to other bacteria, left hand +C2888910|T047|PT|M00.842|ICD10CM|Arthritis due to other bacteria, left hand|Arthritis due to other bacteria, left hand +C2888911|T047|AB|M00.849|ICD10CM|Arthritis due to other bacteria, unspecified hand|Arthritis due to other bacteria, unspecified hand +C2888911|T047|PT|M00.849|ICD10CM|Arthritis due to other bacteria, unspecified hand|Arthritis due to other bacteria, unspecified hand +C2888912|T047|AB|M00.85|ICD10CM|Arthritis due to other bacteria, hip|Arthritis due to other bacteria, hip +C2888912|T047|HT|M00.85|ICD10CM|Arthritis due to other bacteria, hip|Arthritis due to other bacteria, hip +C2888913|T047|AB|M00.851|ICD10CM|Arthritis due to other bacteria, right hip|Arthritis due to other bacteria, right hip +C2888913|T047|PT|M00.851|ICD10CM|Arthritis due to other bacteria, right hip|Arthritis due to other bacteria, right hip +C2888914|T047|AB|M00.852|ICD10CM|Arthritis due to other bacteria, left hip|Arthritis due to other bacteria, left hip +C2888914|T047|PT|M00.852|ICD10CM|Arthritis due to other bacteria, left hip|Arthritis due to other bacteria, left hip +C2888915|T047|AB|M00.859|ICD10CM|Arthritis due to other bacteria, unspecified hip|Arthritis due to other bacteria, unspecified hip +C2888915|T047|PT|M00.859|ICD10CM|Arthritis due to other bacteria, unspecified hip|Arthritis due to other bacteria, unspecified hip +C2888916|T047|AB|M00.86|ICD10CM|Arthritis due to other bacteria, knee|Arthritis due to other bacteria, knee +C2888916|T047|HT|M00.86|ICD10CM|Arthritis due to other bacteria, knee|Arthritis due to other bacteria, knee +C2888917|T047|AB|M00.861|ICD10CM|Arthritis due to other bacteria, right knee|Arthritis due to other bacteria, right knee +C2888917|T047|PT|M00.861|ICD10CM|Arthritis due to other bacteria, right knee|Arthritis due to other bacteria, right knee +C2888918|T047|AB|M00.862|ICD10CM|Arthritis due to other bacteria, left knee|Arthritis due to other bacteria, left knee +C2888918|T047|PT|M00.862|ICD10CM|Arthritis due to other bacteria, left knee|Arthritis due to other bacteria, left knee +C2888919|T047|AB|M00.869|ICD10CM|Arthritis due to other bacteria, unspecified knee|Arthritis due to other bacteria, unspecified knee +C2888919|T047|PT|M00.869|ICD10CM|Arthritis due to other bacteria, unspecified knee|Arthritis due to other bacteria, unspecified knee +C2888921|T047|AB|M00.87|ICD10CM|Arthritis due to other bacteria, ankle and foot|Arthritis due to other bacteria, ankle and foot +C2888921|T047|HT|M00.87|ICD10CM|Arthritis due to other bacteria, ankle and foot|Arthritis due to other bacteria, ankle and foot +C2888920|T047|ET|M00.87|ICD10CM|Arthritis due to other bacteria, tarsus, metatarsus, and phalanges|Arthritis due to other bacteria, tarsus, metatarsus, and phalanges +C2888922|T047|AB|M00.871|ICD10CM|Arthritis due to other bacteria, right ankle and foot|Arthritis due to other bacteria, right ankle and foot +C2888922|T047|PT|M00.871|ICD10CM|Arthritis due to other bacteria, right ankle and foot|Arthritis due to other bacteria, right ankle and foot +C2888923|T047|AB|M00.872|ICD10CM|Arthritis due to other bacteria, left ankle and foot|Arthritis due to other bacteria, left ankle and foot +C2888923|T047|PT|M00.872|ICD10CM|Arthritis due to other bacteria, left ankle and foot|Arthritis due to other bacteria, left ankle and foot +C2888924|T047|AB|M00.879|ICD10CM|Arthritis due to other bacteria, unspecified ankle and foot|Arthritis due to other bacteria, unspecified ankle and foot +C2888924|T047|PT|M00.879|ICD10CM|Arthritis due to other bacteria, unspecified ankle and foot|Arthritis due to other bacteria, unspecified ankle and foot +C2888925|T047|AB|M00.88|ICD10CM|Arthritis due to other bacteria, vertebrae|Arthritis due to other bacteria, vertebrae +C2888925|T047|PT|M00.88|ICD10CM|Arthritis due to other bacteria, vertebrae|Arthritis due to other bacteria, vertebrae +C2888926|T047|AB|M00.89|ICD10CM|Polyarthritis due to other bacteria|Polyarthritis due to other bacteria +C2888926|T047|PT|M00.89|ICD10CM|Polyarthritis due to other bacteria|Polyarthritis due to other bacteria +C0003869|T047|ET|M00.9|ICD10CM|Infective arthritis NOS|Infective arthritis NOS +C0003869|T047|PT|M00.9|ICD10CM|Pyogenic arthritis, unspecified|Pyogenic arthritis, unspecified +C0003869|T047|AB|M00.9|ICD10CM|Pyogenic arthritis, unspecified|Pyogenic arthritis, unspecified +C0003869|T047|PT|M00.9|ICD10|Pyogenic arthritis, unspecified|Pyogenic arthritis, unspecified +C0694513|T047|AB|M01|ICD10CM|Direct infect of joint in infec/parastc dis classd elswhr|Direct infect of joint in infec/parastc dis classd elswhr +C0694513|T047|HT|M01|ICD10CM|Direct infections of joint in infectious and parasitic diseases classified elsewhere|Direct infections of joint in infectious and parasitic diseases classified elsewhere +C0694513|T047|HT|M01|ICD10|Direct infections of joint in infectious and parasitic diseases classified elsewhere|Direct infections of joint in infectious and parasitic diseases classified elsewhere +C1457881|T047|PT|M01.0|ICD10|Meningococcal arthritis|Meningococcal arthritis +C0022415|T047|PT|M01.1|ICD10|Tuberculous arthritis|Tuberculous arthritis +C0242381|T047|PT|M01.2|ICD10|Arthritis in Lyme disease|Arthritis in Lyme disease +C0494893|T047|PT|M01.3|ICD10|Arthritis in other bacterial diseases classified elsewhere|Arthritis in other bacterial diseases classified elsewhere +C0276308|T047|PT|M01.4|ICD10|Rubella arthritis|Rubella arthritis +C0494894|T047|PT|M01.5|ICD10|Arthritis in other viral diseases classified elsewhere|Arthritis in other viral diseases classified elsewhere +C0869528|T047|PT|M01.6|ICD10|Arthritis in mycoses|Arthritis in mycoses +C0477536|T047|PT|M01.8|ICD10|Arthritis in other infectious and parasitic diseases classified elsewhere|Arthritis in other infectious and parasitic diseases classified elsewhere +C0694513|T047|AB|M01.X|ICD10CM|Direct infct of joint in infec/parastc dis classd elswhr|Direct infct of joint in infec/parastc dis classd elswhr +C0694513|T047|HT|M01.X|ICD10CM|Direct infection of joint in infectious and parasitic diseases classified elsewhere|Direct infection of joint in infectious and parasitic diseases classified elsewhere +C2888927|T047|AB|M01.X0|ICD10CM|Dir infct of unsp joint in infec/parastc dis classd elswhr|Dir infct of unsp joint in infec/parastc dis classd elswhr +C2888927|T047|PT|M01.X0|ICD10CM|Direct infection of unspecified joint in infectious and parasitic diseases classified elsewhere|Direct infection of unspecified joint in infectious and parasitic diseases classified elsewhere +C2888928|T047|AB|M01.X1|ICD10CM|Direct infct of shldr jt in infec/parastc dis classd elswhr|Direct infct of shldr jt in infec/parastc dis classd elswhr +C2888928|T047|HT|M01.X1|ICD10CM|Direct infection of shoulder joint in infectious and parasitic diseases classified elsewhere|Direct infection of shoulder joint in infectious and parasitic diseases classified elsewhere +C2888929|T047|AB|M01.X11|ICD10CM|Direct infct of r shldr in infec/parastc dis classd elswhr|Direct infct of r shldr in infec/parastc dis classd elswhr +C2888929|T047|PT|M01.X11|ICD10CM|Direct infection of right shoulder in infectious and parasitic diseases classified elsewhere|Direct infection of right shoulder in infectious and parasitic diseases classified elsewhere +C2888930|T047|AB|M01.X12|ICD10CM|Direct infct of l shldr in infec/parastc dis classd elswhr|Direct infct of l shldr in infec/parastc dis classd elswhr +C2888930|T047|PT|M01.X12|ICD10CM|Direct infection of left shoulder in infectious and parasitic diseases classified elsewhere|Direct infection of left shoulder in infectious and parasitic diseases classified elsewhere +C2888931|T047|AB|M01.X19|ICD10CM|Dir infct of unsp shldr in infec/parastc dis classd elswhr|Dir infct of unsp shldr in infec/parastc dis classd elswhr +C2888931|T047|PT|M01.X19|ICD10CM|Direct infection of unspecified shoulder in infectious and parasitic diseases classified elsewhere|Direct infection of unspecified shoulder in infectious and parasitic diseases classified elsewhere +C2888932|T047|AB|M01.X2|ICD10CM|Direct infct of elbow in infec/parastc dis classd elswhr|Direct infct of elbow in infec/parastc dis classd elswhr +C2888932|T047|HT|M01.X2|ICD10CM|Direct infection of elbow in infectious and parasitic diseases classified elsewhere|Direct infection of elbow in infectious and parasitic diseases classified elsewhere +C2888933|T047|AB|M01.X21|ICD10CM|Direct infct of r elbow in infec/parastc dis classd elswhr|Direct infct of r elbow in infec/parastc dis classd elswhr +C2888933|T047|PT|M01.X21|ICD10CM|Direct infection of right elbow in infectious and parasitic diseases classified elsewhere|Direct infection of right elbow in infectious and parasitic diseases classified elsewhere +C2888934|T047|AB|M01.X22|ICD10CM|Direct infct of l elbow in infec/parastc dis classd elswhr|Direct infct of l elbow in infec/parastc dis classd elswhr +C2888934|T047|PT|M01.X22|ICD10CM|Direct infection of left elbow in infectious and parasitic diseases classified elsewhere|Direct infection of left elbow in infectious and parasitic diseases classified elsewhere +C2888935|T047|AB|M01.X29|ICD10CM|Dir infct of unsp elbow in infec/parastc dis classd elswhr|Dir infct of unsp elbow in infec/parastc dis classd elswhr +C2888935|T047|PT|M01.X29|ICD10CM|Direct infection of unspecified elbow in infectious and parasitic diseases classified elsewhere|Direct infection of unspecified elbow in infectious and parasitic diseases classified elsewhere +C2888937|T047|AB|M01.X3|ICD10CM|Direct infct of wrist in infec/parastc dis classd elswhr|Direct infct of wrist in infec/parastc dis classd elswhr +C2888936|T047|ET|M01.X3|ICD10CM|Direct infection of carpal bones in infectious and parasitic diseases classified elsewhere|Direct infection of carpal bones in infectious and parasitic diseases classified elsewhere +C2888937|T047|HT|M01.X3|ICD10CM|Direct infection of wrist in infectious and parasitic diseases classified elsewhere|Direct infection of wrist in infectious and parasitic diseases classified elsewhere +C2888938|T047|AB|M01.X31|ICD10CM|Direct infct of r wrist in infec/parastc dis classd elswhr|Direct infct of r wrist in infec/parastc dis classd elswhr +C2888938|T047|PT|M01.X31|ICD10CM|Direct infection of right wrist in infectious and parasitic diseases classified elsewhere|Direct infection of right wrist in infectious and parasitic diseases classified elsewhere +C2888939|T047|AB|M01.X32|ICD10CM|Direct infct of l wrist in infec/parastc dis classd elswhr|Direct infct of l wrist in infec/parastc dis classd elswhr +C2888939|T047|PT|M01.X32|ICD10CM|Direct infection of left wrist in infectious and parasitic diseases classified elsewhere|Direct infection of left wrist in infectious and parasitic diseases classified elsewhere +C2888940|T047|AB|M01.X39|ICD10CM|Dir infct of unsp wrist in infec/parastc dis classd elswhr|Dir infct of unsp wrist in infec/parastc dis classd elswhr +C2888940|T047|PT|M01.X39|ICD10CM|Direct infection of unspecified wrist in infectious and parasitic diseases classified elsewhere|Direct infection of unspecified wrist in infectious and parasitic diseases classified elsewhere +C2888942|T047|AB|M01.X4|ICD10CM|Direct infct of hand in infec/parastc diseases classd elswhr|Direct infct of hand in infec/parastc diseases classd elswhr +C2888942|T047|HT|M01.X4|ICD10CM|Direct infection of hand in infectious and parasitic diseases classified elsewhere|Direct infection of hand in infectious and parasitic diseases classified elsewhere +C2888943|T047|AB|M01.X41|ICD10CM|Direct infct of r hand in infec/parastc dis classd elswhr|Direct infct of r hand in infec/parastc dis classd elswhr +C2888943|T047|PT|M01.X41|ICD10CM|Direct infection of right hand in infectious and parasitic diseases classified elsewhere|Direct infection of right hand in infectious and parasitic diseases classified elsewhere +C2888944|T047|AB|M01.X42|ICD10CM|Direct infct of l hand in infec/parastc dis classd elswhr|Direct infct of l hand in infec/parastc dis classd elswhr +C2888944|T047|PT|M01.X42|ICD10CM|Direct infection of left hand in infectious and parasitic diseases classified elsewhere|Direct infection of left hand in infectious and parasitic diseases classified elsewhere +C2888945|T047|AB|M01.X49|ICD10CM|Direct infct of unsp hand in infec/parastc dis classd elswhr|Direct infct of unsp hand in infec/parastc dis classd elswhr +C2888945|T047|PT|M01.X49|ICD10CM|Direct infection of unspecified hand in infectious and parasitic diseases classified elsewhere|Direct infection of unspecified hand in infectious and parasitic diseases classified elsewhere +C2888946|T047|AB|M01.X5|ICD10CM|Direct infct of hip in infec/parastc diseases classd elswhr|Direct infct of hip in infec/parastc diseases classd elswhr +C2888946|T047|HT|M01.X5|ICD10CM|Direct infection of hip in infectious and parasitic diseases classified elsewhere|Direct infection of hip in infectious and parasitic diseases classified elsewhere +C2888947|T047|AB|M01.X51|ICD10CM|Direct infct of r hip in infec/parastc dis classd elswhr|Direct infct of r hip in infec/parastc dis classd elswhr +C2888947|T047|PT|M01.X51|ICD10CM|Direct infection of right hip in infectious and parasitic diseases classified elsewhere|Direct infection of right hip in infectious and parasitic diseases classified elsewhere +C2888948|T047|AB|M01.X52|ICD10CM|Direct infct of left hip in infec/parastc dis classd elswhr|Direct infct of left hip in infec/parastc dis classd elswhr +C2888948|T047|PT|M01.X52|ICD10CM|Direct infection of left hip in infectious and parasitic diseases classified elsewhere|Direct infection of left hip in infectious and parasitic diseases classified elsewhere +C2888949|T047|AB|M01.X59|ICD10CM|Direct infct of unsp hip in infec/parastc dis classd elswhr|Direct infct of unsp hip in infec/parastc dis classd elswhr +C2888949|T047|PT|M01.X59|ICD10CM|Direct infection of unspecified hip in infectious and parasitic diseases classified elsewhere|Direct infection of unspecified hip in infectious and parasitic diseases classified elsewhere +C2888950|T047|AB|M01.X6|ICD10CM|Direct infct of knee in infec/parastc diseases classd elswhr|Direct infct of knee in infec/parastc diseases classd elswhr +C2888950|T047|HT|M01.X6|ICD10CM|Direct infection of knee in infectious and parasitic diseases classified elsewhere|Direct infection of knee in infectious and parasitic diseases classified elsewhere +C2888951|T047|AB|M01.X61|ICD10CM|Direct infct of r knee in infec/parastc dis classd elswhr|Direct infct of r knee in infec/parastc dis classd elswhr +C2888951|T047|PT|M01.X61|ICD10CM|Direct infection of right knee in infectious and parasitic diseases classified elsewhere|Direct infection of right knee in infectious and parasitic diseases classified elsewhere +C2888952|T047|AB|M01.X62|ICD10CM|Direct infct of l knee in infec/parastc dis classd elswhr|Direct infct of l knee in infec/parastc dis classd elswhr +C2888952|T047|PT|M01.X62|ICD10CM|Direct infection of left knee in infectious and parasitic diseases classified elsewhere|Direct infection of left knee in infectious and parasitic diseases classified elsewhere +C2888953|T047|AB|M01.X69|ICD10CM|Direct infct of unsp knee in infec/parastc dis classd elswhr|Direct infct of unsp knee in infec/parastc dis classd elswhr +C2888953|T047|PT|M01.X69|ICD10CM|Direct infection of unspecified knee in infectious and parasitic diseases classified elsewhere|Direct infection of unspecified knee in infectious and parasitic diseases classified elsewhere +C2888955|T047|AB|M01.X7|ICD10CM|Direct infct of ank/ft in infec/parastc dis classd elswhr|Direct infct of ank/ft in infec/parastc dis classd elswhr +C2888955|T047|HT|M01.X7|ICD10CM|Direct infection of ankle and foot in infectious and parasitic diseases classified elsewhere|Direct infection of ankle and foot in infectious and parasitic diseases classified elsewhere +C2888956|T047|AB|M01.X71|ICD10CM|Dir infct of right ank/ft in infec/parastc dis classd elswhr|Dir infct of right ank/ft in infec/parastc dis classd elswhr +C2888956|T047|PT|M01.X71|ICD10CM|Direct infection of right ankle and foot in infectious and parasitic diseases classified elsewhere|Direct infection of right ankle and foot in infectious and parasitic diseases classified elsewhere +C2888957|T047|AB|M01.X72|ICD10CM|Dir infct of left ank/ft in infec/parastc dis classd elswhr|Dir infct of left ank/ft in infec/parastc dis classd elswhr +C2888957|T047|PT|M01.X72|ICD10CM|Direct infection of left ankle and foot in infectious and parasitic diseases classified elsewhere|Direct infection of left ankle and foot in infectious and parasitic diseases classified elsewhere +C2888958|T047|AB|M01.X79|ICD10CM|Dir infct of unsp ank/ft in infec/parastc dis classd elswhr|Dir infct of unsp ank/ft in infec/parastc dis classd elswhr +C2888959|T047|AB|M01.X8|ICD10CM|Direct infct of verteb in infec/parastc dis classd elswhr|Direct infct of verteb in infec/parastc dis classd elswhr +C2888959|T047|PT|M01.X8|ICD10CM|Direct infection of vertebrae in infectious and parasitic diseases classified elsewhere|Direct infection of vertebrae in infectious and parasitic diseases classified elsewhere +C2888960|T047|AB|M01.X9|ICD10CM|Dir infct of mult joints in infec/parastc dis classd elswhr|Dir infct of mult joints in infec/parastc dis classd elswhr +C2888960|T047|PT|M01.X9|ICD10CM|Direct infection of multiple joints in infectious and parasitic diseases classified elsewhere|Direct infection of multiple joints in infectious and parasitic diseases classified elsewhere +C2888961|T047|AB|M02|ICD10CM|Postinfective and reactive arthropathies|Postinfective and reactive arthropathies +C2888961|T047|HT|M02|ICD10CM|Postinfective and reactive arthropathies|Postinfective and reactive arthropathies +C0409580|T047|HT|M02|ICD10|Reactive arthropathies|Reactive arthropathies +C0869529|T047|PT|M02.0|ICD10|Arthropathy following intestinal bypass|Arthropathy following intestinal bypass +C0869529|T047|HT|M02.0|ICD10CM|Arthropathy following intestinal bypass|Arthropathy following intestinal bypass +C0869529|T047|AB|M02.0|ICD10CM|Arthropathy following intestinal bypass|Arthropathy following intestinal bypass +C0837417|T047|AB|M02.00|ICD10CM|Arthropathy following intestinal bypass, unspecified site|Arthropathy following intestinal bypass, unspecified site +C0837417|T047|PT|M02.00|ICD10CM|Arthropathy following intestinal bypass, unspecified site|Arthropathy following intestinal bypass, unspecified site +C2888962|T047|AB|M02.01|ICD10CM|Arthropathy following intestinal bypass, shoulder|Arthropathy following intestinal bypass, shoulder +C2888962|T047|HT|M02.01|ICD10CM|Arthropathy following intestinal bypass, shoulder|Arthropathy following intestinal bypass, shoulder +C2888963|T047|AB|M02.011|ICD10CM|Arthropathy following intestinal bypass, right shoulder|Arthropathy following intestinal bypass, right shoulder +C2888963|T047|PT|M02.011|ICD10CM|Arthropathy following intestinal bypass, right shoulder|Arthropathy following intestinal bypass, right shoulder +C2888964|T047|AB|M02.012|ICD10CM|Arthropathy following intestinal bypass, left shoulder|Arthropathy following intestinal bypass, left shoulder +C2888964|T047|PT|M02.012|ICD10CM|Arthropathy following intestinal bypass, left shoulder|Arthropathy following intestinal bypass, left shoulder +C2888965|T047|AB|M02.019|ICD10CM|Arthropathy following intestinal bypass, unsp shoulder|Arthropathy following intestinal bypass, unsp shoulder +C2888965|T047|PT|M02.019|ICD10CM|Arthropathy following intestinal bypass, unspecified shoulder|Arthropathy following intestinal bypass, unspecified shoulder +C2888966|T047|AB|M02.02|ICD10CM|Arthropathy following intestinal bypass, elbow|Arthropathy following intestinal bypass, elbow +C2888966|T047|HT|M02.02|ICD10CM|Arthropathy following intestinal bypass, elbow|Arthropathy following intestinal bypass, elbow +C2888967|T047|AB|M02.021|ICD10CM|Arthropathy following intestinal bypass, right elbow|Arthropathy following intestinal bypass, right elbow +C2888967|T047|PT|M02.021|ICD10CM|Arthropathy following intestinal bypass, right elbow|Arthropathy following intestinal bypass, right elbow +C2888968|T047|AB|M02.022|ICD10CM|Arthropathy following intestinal bypass, left elbow|Arthropathy following intestinal bypass, left elbow +C2888968|T047|PT|M02.022|ICD10CM|Arthropathy following intestinal bypass, left elbow|Arthropathy following intestinal bypass, left elbow +C2888969|T047|AB|M02.029|ICD10CM|Arthropathy following intestinal bypass, unspecified elbow|Arthropathy following intestinal bypass, unspecified elbow +C2888969|T047|PT|M02.029|ICD10CM|Arthropathy following intestinal bypass, unspecified elbow|Arthropathy following intestinal bypass, unspecified elbow +C2888970|T047|ET|M02.03|ICD10CM|Arthropathy following intestinal bypass, carpal bones|Arthropathy following intestinal bypass, carpal bones +C2888971|T047|AB|M02.03|ICD10CM|Arthropathy following intestinal bypass, wrist|Arthropathy following intestinal bypass, wrist +C2888971|T047|HT|M02.03|ICD10CM|Arthropathy following intestinal bypass, wrist|Arthropathy following intestinal bypass, wrist +C2888972|T047|AB|M02.031|ICD10CM|Arthropathy following intestinal bypass, right wrist|Arthropathy following intestinal bypass, right wrist +C2888972|T047|PT|M02.031|ICD10CM|Arthropathy following intestinal bypass, right wrist|Arthropathy following intestinal bypass, right wrist +C2888973|T047|AB|M02.032|ICD10CM|Arthropathy following intestinal bypass, left wrist|Arthropathy following intestinal bypass, left wrist +C2888973|T047|PT|M02.032|ICD10CM|Arthropathy following intestinal bypass, left wrist|Arthropathy following intestinal bypass, left wrist +C2888974|T047|AB|M02.039|ICD10CM|Arthropathy following intestinal bypass, unspecified wrist|Arthropathy following intestinal bypass, unspecified wrist +C2888974|T047|PT|M02.039|ICD10CM|Arthropathy following intestinal bypass, unspecified wrist|Arthropathy following intestinal bypass, unspecified wrist +C0837412|T047|HT|M02.04|ICD10CM|Arthropathy following intestinal bypass, hand|Arthropathy following intestinal bypass, hand +C0837412|T047|AB|M02.04|ICD10CM|Arthropathy following intestinal bypass, hand|Arthropathy following intestinal bypass, hand +C2888975|T047|ET|M02.04|ICD10CM|Arthropathy following intestinal bypass, metacarpals and phalanges|Arthropathy following intestinal bypass, metacarpals and phalanges +C2888976|T047|AB|M02.041|ICD10CM|Arthropathy following intestinal bypass, right hand|Arthropathy following intestinal bypass, right hand +C2888976|T047|PT|M02.041|ICD10CM|Arthropathy following intestinal bypass, right hand|Arthropathy following intestinal bypass, right hand +C2888977|T047|AB|M02.042|ICD10CM|Arthropathy following intestinal bypass, left hand|Arthropathy following intestinal bypass, left hand +C2888977|T047|PT|M02.042|ICD10CM|Arthropathy following intestinal bypass, left hand|Arthropathy following intestinal bypass, left hand +C2888978|T047|AB|M02.049|ICD10CM|Arthropathy following intestinal bypass, unspecified hand|Arthropathy following intestinal bypass, unspecified hand +C2888978|T047|PT|M02.049|ICD10CM|Arthropathy following intestinal bypass, unspecified hand|Arthropathy following intestinal bypass, unspecified hand +C2888979|T047|AB|M02.05|ICD10CM|Arthropathy following intestinal bypass, hip|Arthropathy following intestinal bypass, hip +C2888979|T047|HT|M02.05|ICD10CM|Arthropathy following intestinal bypass, hip|Arthropathy following intestinal bypass, hip +C2888980|T047|AB|M02.051|ICD10CM|Arthropathy following intestinal bypass, right hip|Arthropathy following intestinal bypass, right hip +C2888980|T047|PT|M02.051|ICD10CM|Arthropathy following intestinal bypass, right hip|Arthropathy following intestinal bypass, right hip +C2888981|T047|AB|M02.052|ICD10CM|Arthropathy following intestinal bypass, left hip|Arthropathy following intestinal bypass, left hip +C2888981|T047|PT|M02.052|ICD10CM|Arthropathy following intestinal bypass, left hip|Arthropathy following intestinal bypass, left hip +C2888982|T047|AB|M02.059|ICD10CM|Arthropathy following intestinal bypass, unspecified hip|Arthropathy following intestinal bypass, unspecified hip +C2888982|T047|PT|M02.059|ICD10CM|Arthropathy following intestinal bypass, unspecified hip|Arthropathy following intestinal bypass, unspecified hip +C2888983|T047|AB|M02.06|ICD10CM|Arthropathy following intestinal bypass, knee|Arthropathy following intestinal bypass, knee +C2888983|T047|HT|M02.06|ICD10CM|Arthropathy following intestinal bypass, knee|Arthropathy following intestinal bypass, knee +C2888984|T047|AB|M02.061|ICD10CM|Arthropathy following intestinal bypass, right knee|Arthropathy following intestinal bypass, right knee +C2888984|T047|PT|M02.061|ICD10CM|Arthropathy following intestinal bypass, right knee|Arthropathy following intestinal bypass, right knee +C2888985|T047|AB|M02.062|ICD10CM|Arthropathy following intestinal bypass, left knee|Arthropathy following intestinal bypass, left knee +C2888985|T047|PT|M02.062|ICD10CM|Arthropathy following intestinal bypass, left knee|Arthropathy following intestinal bypass, left knee +C2888986|T047|AB|M02.069|ICD10CM|Arthropathy following intestinal bypass, unspecified knee|Arthropathy following intestinal bypass, unspecified knee +C2888986|T047|PT|M02.069|ICD10CM|Arthropathy following intestinal bypass, unspecified knee|Arthropathy following intestinal bypass, unspecified knee +C0837415|T047|HT|M02.07|ICD10CM|Arthropathy following intestinal bypass, ankle and foot|Arthropathy following intestinal bypass, ankle and foot +C0837415|T047|AB|M02.07|ICD10CM|Arthropathy following intestinal bypass, ankle and foot|Arthropathy following intestinal bypass, ankle and foot +C2888987|T047|ET|M02.07|ICD10CM|Arthropathy following intestinal bypass, tarsus, metatarsus and phalanges|Arthropathy following intestinal bypass, tarsus, metatarsus and phalanges +C2888988|T047|AB|M02.071|ICD10CM|Arthropathy following intestinal bypass, right ank/ft|Arthropathy following intestinal bypass, right ank/ft +C2888988|T047|PT|M02.071|ICD10CM|Arthropathy following intestinal bypass, right ankle and foot|Arthropathy following intestinal bypass, right ankle and foot +C2888989|T047|AB|M02.072|ICD10CM|Arthropathy following intestinal bypass, left ankle and foot|Arthropathy following intestinal bypass, left ankle and foot +C2888989|T047|PT|M02.072|ICD10CM|Arthropathy following intestinal bypass, left ankle and foot|Arthropathy following intestinal bypass, left ankle and foot +C2888990|T047|AB|M02.079|ICD10CM|Arthropathy following intestinal bypass, unsp ankle and foot|Arthropathy following intestinal bypass, unsp ankle and foot +C2888990|T047|PT|M02.079|ICD10CM|Arthropathy following intestinal bypass, unspecified ankle and foot|Arthropathy following intestinal bypass, unspecified ankle and foot +C2888991|T047|AB|M02.08|ICD10CM|Arthropathy following intestinal bypass, vertebrae|Arthropathy following intestinal bypass, vertebrae +C2888991|T047|PT|M02.08|ICD10CM|Arthropathy following intestinal bypass, vertebrae|Arthropathy following intestinal bypass, vertebrae +C0837408|T047|PT|M02.09|ICD10CM|Arthropathy following intestinal bypass, multiple sites|Arthropathy following intestinal bypass, multiple sites +C0837408|T047|AB|M02.09|ICD10CM|Arthropathy following intestinal bypass, multiple sites|Arthropathy following intestinal bypass, multiple sites +C0152085|T046|PT|M02.1|ICD10|Postdysenteric arthropathy|Postdysenteric arthropathy +C0152085|T046|HT|M02.1|ICD10CM|Postdysenteric arthropathy|Postdysenteric arthropathy +C0152085|T046|AB|M02.1|ICD10CM|Postdysenteric arthropathy|Postdysenteric arthropathy +C0152085|T046|AB|M02.10|ICD10CM|Postdysenteric arthropathy, unspecified site|Postdysenteric arthropathy, unspecified site +C0152085|T046|PT|M02.10|ICD10CM|Postdysenteric arthropathy, unspecified site|Postdysenteric arthropathy, unspecified site +C2888992|T046|AB|M02.11|ICD10CM|Postdysenteric arthropathy, shoulder|Postdysenteric arthropathy, shoulder +C2888992|T046|HT|M02.11|ICD10CM|Postdysenteric arthropathy, shoulder|Postdysenteric arthropathy, shoulder +C2888993|T047|AB|M02.111|ICD10CM|Postdysenteric arthropathy, right shoulder|Postdysenteric arthropathy, right shoulder +C2888993|T047|PT|M02.111|ICD10CM|Postdysenteric arthropathy, right shoulder|Postdysenteric arthropathy, right shoulder +C2888994|T047|AB|M02.112|ICD10CM|Postdysenteric arthropathy, left shoulder|Postdysenteric arthropathy, left shoulder +C2888994|T047|PT|M02.112|ICD10CM|Postdysenteric arthropathy, left shoulder|Postdysenteric arthropathy, left shoulder +C2888995|T047|AB|M02.119|ICD10CM|Postdysenteric arthropathy, unspecified shoulder|Postdysenteric arthropathy, unspecified shoulder +C2888995|T047|PT|M02.119|ICD10CM|Postdysenteric arthropathy, unspecified shoulder|Postdysenteric arthropathy, unspecified shoulder +C2888996|T046|AB|M02.12|ICD10CM|Postdysenteric arthropathy, elbow|Postdysenteric arthropathy, elbow +C2888996|T046|HT|M02.12|ICD10CM|Postdysenteric arthropathy, elbow|Postdysenteric arthropathy, elbow +C2888997|T047|AB|M02.121|ICD10CM|Postdysenteric arthropathy, right elbow|Postdysenteric arthropathy, right elbow +C2888997|T047|PT|M02.121|ICD10CM|Postdysenteric arthropathy, right elbow|Postdysenteric arthropathy, right elbow +C2888998|T047|AB|M02.122|ICD10CM|Postdysenteric arthropathy, left elbow|Postdysenteric arthropathy, left elbow +C2888998|T047|PT|M02.122|ICD10CM|Postdysenteric arthropathy, left elbow|Postdysenteric arthropathy, left elbow +C2888999|T047|AB|M02.129|ICD10CM|Postdysenteric arthropathy, unspecified elbow|Postdysenteric arthropathy, unspecified elbow +C2888999|T047|PT|M02.129|ICD10CM|Postdysenteric arthropathy, unspecified elbow|Postdysenteric arthropathy, unspecified elbow +C2889000|T047|ET|M02.13|ICD10CM|Postdysenteric arthropathy, carpal bones|Postdysenteric arthropathy, carpal bones +C2889001|T046|AB|M02.13|ICD10CM|Postdysenteric arthropathy, wrist|Postdysenteric arthropathy, wrist +C2889001|T046|HT|M02.13|ICD10CM|Postdysenteric arthropathy, wrist|Postdysenteric arthropathy, wrist +C2889002|T047|AB|M02.131|ICD10CM|Postdysenteric arthropathy, right wrist|Postdysenteric arthropathy, right wrist +C2889002|T047|PT|M02.131|ICD10CM|Postdysenteric arthropathy, right wrist|Postdysenteric arthropathy, right wrist +C2889003|T047|AB|M02.132|ICD10CM|Postdysenteric arthropathy, left wrist|Postdysenteric arthropathy, left wrist +C2889003|T047|PT|M02.132|ICD10CM|Postdysenteric arthropathy, left wrist|Postdysenteric arthropathy, left wrist +C2889004|T047|AB|M02.139|ICD10CM|Postdysenteric arthropathy, unspecified wrist|Postdysenteric arthropathy, unspecified wrist +C2889004|T047|PT|M02.139|ICD10CM|Postdysenteric arthropathy, unspecified wrist|Postdysenteric arthropathy, unspecified wrist +C0837422|T046|HT|M02.14|ICD10CM|Postdysenteric arthropathy, hand|Postdysenteric arthropathy, hand +C0837422|T046|AB|M02.14|ICD10CM|Postdysenteric arthropathy, hand|Postdysenteric arthropathy, hand +C2889005|T047|ET|M02.14|ICD10CM|Postdysenteric arthropathy, metacarpus and phalanges|Postdysenteric arthropathy, metacarpus and phalanges +C2889006|T047|AB|M02.141|ICD10CM|Postdysenteric arthropathy, right hand|Postdysenteric arthropathy, right hand +C2889006|T047|PT|M02.141|ICD10CM|Postdysenteric arthropathy, right hand|Postdysenteric arthropathy, right hand +C2889007|T047|AB|M02.142|ICD10CM|Postdysenteric arthropathy, left hand|Postdysenteric arthropathy, left hand +C2889007|T047|PT|M02.142|ICD10CM|Postdysenteric arthropathy, left hand|Postdysenteric arthropathy, left hand +C2889008|T047|AB|M02.149|ICD10CM|Postdysenteric arthropathy, unspecified hand|Postdysenteric arthropathy, unspecified hand +C2889008|T047|PT|M02.149|ICD10CM|Postdysenteric arthropathy, unspecified hand|Postdysenteric arthropathy, unspecified hand +C2889009|T046|AB|M02.15|ICD10CM|Postdysenteric arthropathy, hip|Postdysenteric arthropathy, hip +C2889009|T046|HT|M02.15|ICD10CM|Postdysenteric arthropathy, hip|Postdysenteric arthropathy, hip +C2889010|T047|AB|M02.151|ICD10CM|Postdysenteric arthropathy, right hip|Postdysenteric arthropathy, right hip +C2889010|T047|PT|M02.151|ICD10CM|Postdysenteric arthropathy, right hip|Postdysenteric arthropathy, right hip +C2889011|T047|AB|M02.152|ICD10CM|Postdysenteric arthropathy, left hip|Postdysenteric arthropathy, left hip +C2889011|T047|PT|M02.152|ICD10CM|Postdysenteric arthropathy, left hip|Postdysenteric arthropathy, left hip +C2889012|T047|AB|M02.159|ICD10CM|Postdysenteric arthropathy, unspecified hip|Postdysenteric arthropathy, unspecified hip +C2889012|T047|PT|M02.159|ICD10CM|Postdysenteric arthropathy, unspecified hip|Postdysenteric arthropathy, unspecified hip +C2889015|T046|AB|M02.16|ICD10CM|Postdysenteric arthropathy, knee|Postdysenteric arthropathy, knee +C2889015|T046|HT|M02.16|ICD10CM|Postdysenteric arthropathy, knee|Postdysenteric arthropathy, knee +C2889013|T047|AB|M02.161|ICD10CM|Postdysenteric arthropathy, right knee|Postdysenteric arthropathy, right knee +C2889013|T047|PT|M02.161|ICD10CM|Postdysenteric arthropathy, right knee|Postdysenteric arthropathy, right knee +C2889014|T047|AB|M02.162|ICD10CM|Postdysenteric arthropathy, left knee|Postdysenteric arthropathy, left knee +C2889014|T047|PT|M02.162|ICD10CM|Postdysenteric arthropathy, left knee|Postdysenteric arthropathy, left knee +C2889015|T046|AB|M02.169|ICD10CM|Postdysenteric arthropathy, unspecified knee|Postdysenteric arthropathy, unspecified knee +C2889015|T046|PT|M02.169|ICD10CM|Postdysenteric arthropathy, unspecified knee|Postdysenteric arthropathy, unspecified knee +C0837425|T046|HT|M02.17|ICD10CM|Postdysenteric arthropathy, ankle and foot|Postdysenteric arthropathy, ankle and foot +C0837425|T046|AB|M02.17|ICD10CM|Postdysenteric arthropathy, ankle and foot|Postdysenteric arthropathy, ankle and foot +C2889016|T047|ET|M02.17|ICD10CM|Postdysenteric arthropathy, tarsus, metatarsus and phalanges|Postdysenteric arthropathy, tarsus, metatarsus and phalanges +C2889017|T047|AB|M02.171|ICD10CM|Postdysenteric arthropathy, right ankle and foot|Postdysenteric arthropathy, right ankle and foot +C2889017|T047|PT|M02.171|ICD10CM|Postdysenteric arthropathy, right ankle and foot|Postdysenteric arthropathy, right ankle and foot +C2889018|T047|AB|M02.172|ICD10CM|Postdysenteric arthropathy, left ankle and foot|Postdysenteric arthropathy, left ankle and foot +C2889018|T047|PT|M02.172|ICD10CM|Postdysenteric arthropathy, left ankle and foot|Postdysenteric arthropathy, left ankle and foot +C2889019|T047|AB|M02.179|ICD10CM|Postdysenteric arthropathy, unspecified ankle and foot|Postdysenteric arthropathy, unspecified ankle and foot +C2889019|T047|PT|M02.179|ICD10CM|Postdysenteric arthropathy, unspecified ankle and foot|Postdysenteric arthropathy, unspecified ankle and foot +C2889020|T046|AB|M02.18|ICD10CM|Postdysenteric arthropathy, vertebrae|Postdysenteric arthropathy, vertebrae +C2889020|T046|PT|M02.18|ICD10CM|Postdysenteric arthropathy, vertebrae|Postdysenteric arthropathy, vertebrae +C0837418|T046|PT|M02.19|ICD10CM|Postdysenteric arthropathy, multiple sites|Postdysenteric arthropathy, multiple sites +C0837418|T046|AB|M02.19|ICD10CM|Postdysenteric arthropathy, multiple sites|Postdysenteric arthropathy, multiple sites +C0473733|T047|PT|M02.2|ICD10|Postimmunization arthropathy|Postimmunization arthropathy +C0473733|T047|HT|M02.2|ICD10CM|Postimmunization arthropathy|Postimmunization arthropathy +C0473733|T047|AB|M02.2|ICD10CM|Postimmunization arthropathy|Postimmunization arthropathy +C0837436|T046|AB|M02.20|ICD10CM|Postimmunization arthropathy, unspecified site|Postimmunization arthropathy, unspecified site +C0837436|T046|PT|M02.20|ICD10CM|Postimmunization arthropathy, unspecified site|Postimmunization arthropathy, unspecified site +C2889021|T047|AB|M02.21|ICD10CM|Postimmunization arthropathy, shoulder|Postimmunization arthropathy, shoulder +C2889021|T047|HT|M02.21|ICD10CM|Postimmunization arthropathy, shoulder|Postimmunization arthropathy, shoulder +C2889022|T047|AB|M02.211|ICD10CM|Postimmunization arthropathy, right shoulder|Postimmunization arthropathy, right shoulder +C2889022|T047|PT|M02.211|ICD10CM|Postimmunization arthropathy, right shoulder|Postimmunization arthropathy, right shoulder +C2889023|T047|AB|M02.212|ICD10CM|Postimmunization arthropathy, left shoulder|Postimmunization arthropathy, left shoulder +C2889023|T047|PT|M02.212|ICD10CM|Postimmunization arthropathy, left shoulder|Postimmunization arthropathy, left shoulder +C2889024|T047|AB|M02.219|ICD10CM|Postimmunization arthropathy, unspecified shoulder|Postimmunization arthropathy, unspecified shoulder +C2889024|T047|PT|M02.219|ICD10CM|Postimmunization arthropathy, unspecified shoulder|Postimmunization arthropathy, unspecified shoulder +C2889027|T047|AB|M02.22|ICD10CM|Postimmunization arthropathy, elbow|Postimmunization arthropathy, elbow +C2889027|T047|HT|M02.22|ICD10CM|Postimmunization arthropathy, elbow|Postimmunization arthropathy, elbow +C2889025|T047|AB|M02.221|ICD10CM|Postimmunization arthropathy, right elbow|Postimmunization arthropathy, right elbow +C2889025|T047|PT|M02.221|ICD10CM|Postimmunization arthropathy, right elbow|Postimmunization arthropathy, right elbow +C2889026|T047|AB|M02.222|ICD10CM|Postimmunization arthropathy, left elbow|Postimmunization arthropathy, left elbow +C2889026|T047|PT|M02.222|ICD10CM|Postimmunization arthropathy, left elbow|Postimmunization arthropathy, left elbow +C2889027|T047|AB|M02.229|ICD10CM|Postimmunization arthropathy, unspecified elbow|Postimmunization arthropathy, unspecified elbow +C2889027|T047|PT|M02.229|ICD10CM|Postimmunization arthropathy, unspecified elbow|Postimmunization arthropathy, unspecified elbow +C2889028|T046|ET|M02.23|ICD10CM|Postimmunization arthropathy, carpal bones|Postimmunization arthropathy, carpal bones +C2889029|T047|AB|M02.23|ICD10CM|Postimmunization arthropathy, wrist|Postimmunization arthropathy, wrist +C2889029|T047|HT|M02.23|ICD10CM|Postimmunization arthropathy, wrist|Postimmunization arthropathy, wrist +C2889030|T047|AB|M02.231|ICD10CM|Postimmunization arthropathy, right wrist|Postimmunization arthropathy, right wrist +C2889030|T047|PT|M02.231|ICD10CM|Postimmunization arthropathy, right wrist|Postimmunization arthropathy, right wrist +C2889031|T047|AB|M02.232|ICD10CM|Postimmunization arthropathy, left wrist|Postimmunization arthropathy, left wrist +C2889031|T047|PT|M02.232|ICD10CM|Postimmunization arthropathy, left wrist|Postimmunization arthropathy, left wrist +C2889032|T047|AB|M02.239|ICD10CM|Postimmunization arthropathy, unspecified wrist|Postimmunization arthropathy, unspecified wrist +C2889032|T047|PT|M02.239|ICD10CM|Postimmunization arthropathy, unspecified wrist|Postimmunization arthropathy, unspecified wrist +C0837431|T047|HT|M02.24|ICD10CM|Postimmunization arthropathy, hand|Postimmunization arthropathy, hand +C0837431|T047|AB|M02.24|ICD10CM|Postimmunization arthropathy, hand|Postimmunization arthropathy, hand +C2889033|T046|ET|M02.24|ICD10CM|Postimmunization arthropathy, metacarpus and phalanges|Postimmunization arthropathy, metacarpus and phalanges +C2889034|T047|AB|M02.241|ICD10CM|Postimmunization arthropathy, right hand|Postimmunization arthropathy, right hand +C2889034|T047|PT|M02.241|ICD10CM|Postimmunization arthropathy, right hand|Postimmunization arthropathy, right hand +C2889035|T047|AB|M02.242|ICD10CM|Postimmunization arthropathy, left hand|Postimmunization arthropathy, left hand +C2889035|T047|PT|M02.242|ICD10CM|Postimmunization arthropathy, left hand|Postimmunization arthropathy, left hand +C0837431|T047|AB|M02.249|ICD10CM|Postimmunization arthropathy, unspecified hand|Postimmunization arthropathy, unspecified hand +C0837431|T047|PT|M02.249|ICD10CM|Postimmunization arthropathy, unspecified hand|Postimmunization arthropathy, unspecified hand +C2889036|T047|AB|M02.25|ICD10CM|Postimmunization arthropathy, hip|Postimmunization arthropathy, hip +C2889036|T047|HT|M02.25|ICD10CM|Postimmunization arthropathy, hip|Postimmunization arthropathy, hip +C2889037|T047|AB|M02.251|ICD10CM|Postimmunization arthropathy, right hip|Postimmunization arthropathy, right hip +C2889037|T047|PT|M02.251|ICD10CM|Postimmunization arthropathy, right hip|Postimmunization arthropathy, right hip +C2889038|T047|AB|M02.252|ICD10CM|Postimmunization arthropathy, left hip|Postimmunization arthropathy, left hip +C2889038|T047|PT|M02.252|ICD10CM|Postimmunization arthropathy, left hip|Postimmunization arthropathy, left hip +C2889039|T047|AB|M02.259|ICD10CM|Postimmunization arthropathy, unspecified hip|Postimmunization arthropathy, unspecified hip +C2889039|T047|PT|M02.259|ICD10CM|Postimmunization arthropathy, unspecified hip|Postimmunization arthropathy, unspecified hip +C2889040|T047|AB|M02.26|ICD10CM|Postimmunization arthropathy, knee|Postimmunization arthropathy, knee +C2889040|T047|HT|M02.26|ICD10CM|Postimmunization arthropathy, knee|Postimmunization arthropathy, knee +C2889041|T047|AB|M02.261|ICD10CM|Postimmunization arthropathy, right knee|Postimmunization arthropathy, right knee +C2889041|T047|PT|M02.261|ICD10CM|Postimmunization arthropathy, right knee|Postimmunization arthropathy, right knee +C2889042|T047|AB|M02.262|ICD10CM|Postimmunization arthropathy, left knee|Postimmunization arthropathy, left knee +C2889042|T047|PT|M02.262|ICD10CM|Postimmunization arthropathy, left knee|Postimmunization arthropathy, left knee +C2889043|T047|AB|M02.269|ICD10CM|Postimmunization arthropathy, unspecified knee|Postimmunization arthropathy, unspecified knee +C2889043|T047|PT|M02.269|ICD10CM|Postimmunization arthropathy, unspecified knee|Postimmunization arthropathy, unspecified knee +C0837434|T046|HT|M02.27|ICD10CM|Postimmunization arthropathy, ankle and foot|Postimmunization arthropathy, ankle and foot +C0837434|T046|AB|M02.27|ICD10CM|Postimmunization arthropathy, ankle and foot|Postimmunization arthropathy, ankle and foot +C2889044|T046|ET|M02.27|ICD10CM|Postimmunization arthropathy, tarsus, metatarsus and phalanges|Postimmunization arthropathy, tarsus, metatarsus and phalanges +C2889045|T047|AB|M02.271|ICD10CM|Postimmunization arthropathy, right ankle and foot|Postimmunization arthropathy, right ankle and foot +C2889045|T047|PT|M02.271|ICD10CM|Postimmunization arthropathy, right ankle and foot|Postimmunization arthropathy, right ankle and foot +C2889046|T047|AB|M02.272|ICD10CM|Postimmunization arthropathy, left ankle and foot|Postimmunization arthropathy, left ankle and foot +C2889046|T047|PT|M02.272|ICD10CM|Postimmunization arthropathy, left ankle and foot|Postimmunization arthropathy, left ankle and foot +C2889047|T047|AB|M02.279|ICD10CM|Postimmunization arthropathy, unspecified ankle and foot|Postimmunization arthropathy, unspecified ankle and foot +C2889047|T047|PT|M02.279|ICD10CM|Postimmunization arthropathy, unspecified ankle and foot|Postimmunization arthropathy, unspecified ankle and foot +C2889048|T047|AB|M02.28|ICD10CM|Postimmunization arthropathy, vertebrae|Postimmunization arthropathy, vertebrae +C2889048|T047|PT|M02.28|ICD10CM|Postimmunization arthropathy, vertebrae|Postimmunization arthropathy, vertebrae +C0837427|T046|PT|M02.29|ICD10CM|Postimmunization arthropathy, multiple sites|Postimmunization arthropathy, multiple sites +C0837427|T046|AB|M02.29|ICD10CM|Postimmunization arthropathy, multiple sites|Postimmunization arthropathy, multiple sites +C0085435|T047|ET|M02.3|ICD10CM|Reactive arthritis|Reactive arthritis +C0035012|T047|HT|M02.3|ICD10CM|Reiter's disease|Reiter's disease +C0035012|T047|AB|M02.3|ICD10CM|Reiter's disease|Reiter's disease +C0035012|T047|PT|M02.3|ICD10|Reiter's disease|Reiter's disease +C0035012|T047|AB|M02.30|ICD10CM|Reiter's disease, unspecified site|Reiter's disease, unspecified site +C0035012|T047|PT|M02.30|ICD10CM|Reiter's disease, unspecified site|Reiter's disease, unspecified site +C2889049|T047|AB|M02.31|ICD10CM|Reiter's disease, shoulder|Reiter's disease, shoulder +C2889049|T047|HT|M02.31|ICD10CM|Reiter's disease, shoulder|Reiter's disease, shoulder +C2889050|T047|AB|M02.311|ICD10CM|Reiter's disease, right shoulder|Reiter's disease, right shoulder +C2889050|T047|PT|M02.311|ICD10CM|Reiter's disease, right shoulder|Reiter's disease, right shoulder +C2889051|T047|AB|M02.312|ICD10CM|Reiter's disease, left shoulder|Reiter's disease, left shoulder +C2889051|T047|PT|M02.312|ICD10CM|Reiter's disease, left shoulder|Reiter's disease, left shoulder +C2889049|T047|AB|M02.319|ICD10CM|Reiter's disease, unspecified shoulder|Reiter's disease, unspecified shoulder +C2889049|T047|PT|M02.319|ICD10CM|Reiter's disease, unspecified shoulder|Reiter's disease, unspecified shoulder +C2889052|T047|AB|M02.32|ICD10CM|Reiter's disease, elbow|Reiter's disease, elbow +C2889052|T047|HT|M02.32|ICD10CM|Reiter's disease, elbow|Reiter's disease, elbow +C2889053|T047|AB|M02.321|ICD10CM|Reiter's disease, right elbow|Reiter's disease, right elbow +C2889053|T047|PT|M02.321|ICD10CM|Reiter's disease, right elbow|Reiter's disease, right elbow +C2889054|T047|AB|M02.322|ICD10CM|Reiter's disease, left elbow|Reiter's disease, left elbow +C2889054|T047|PT|M02.322|ICD10CM|Reiter's disease, left elbow|Reiter's disease, left elbow +C2889055|T047|AB|M02.329|ICD10CM|Reiter's disease, unspecified elbow|Reiter's disease, unspecified elbow +C2889055|T047|PT|M02.329|ICD10CM|Reiter's disease, unspecified elbow|Reiter's disease, unspecified elbow +C2889056|T047|ET|M02.33|ICD10CM|Reiter's disease, carpal bones|Reiter's disease, carpal bones +C2889057|T047|AB|M02.33|ICD10CM|Reiter's disease, wrist|Reiter's disease, wrist +C2889057|T047|HT|M02.33|ICD10CM|Reiter's disease, wrist|Reiter's disease, wrist +C2889058|T047|AB|M02.331|ICD10CM|Reiter's disease, right wrist|Reiter's disease, right wrist +C2889058|T047|PT|M02.331|ICD10CM|Reiter's disease, right wrist|Reiter's disease, right wrist +C2889059|T047|AB|M02.332|ICD10CM|Reiter's disease, left wrist|Reiter's disease, left wrist +C2889059|T047|PT|M02.332|ICD10CM|Reiter's disease, left wrist|Reiter's disease, left wrist +C2889060|T047|AB|M02.339|ICD10CM|Reiter's disease, unspecified wrist|Reiter's disease, unspecified wrist +C2889060|T047|PT|M02.339|ICD10CM|Reiter's disease, unspecified wrist|Reiter's disease, unspecified wrist +C0837441|T047|HT|M02.34|ICD10CM|Reiter's disease, hand|Reiter's disease, hand +C0837441|T047|AB|M02.34|ICD10CM|Reiter's disease, hand|Reiter's disease, hand +C2889061|T047|ET|M02.34|ICD10CM|Reiter's disease, metacarpus and phalanges|Reiter's disease, metacarpus and phalanges +C2889062|T047|AB|M02.341|ICD10CM|Reiter's disease, right hand|Reiter's disease, right hand +C2889062|T047|PT|M02.341|ICD10CM|Reiter's disease, right hand|Reiter's disease, right hand +C2889063|T047|AB|M02.342|ICD10CM|Reiter's disease, left hand|Reiter's disease, left hand +C2889063|T047|PT|M02.342|ICD10CM|Reiter's disease, left hand|Reiter's disease, left hand +C2889064|T047|AB|M02.349|ICD10CM|Reiter's disease, unspecified hand|Reiter's disease, unspecified hand +C2889064|T047|PT|M02.349|ICD10CM|Reiter's disease, unspecified hand|Reiter's disease, unspecified hand +C2889065|T047|AB|M02.35|ICD10CM|Reiter's disease, hip|Reiter's disease, hip +C2889065|T047|HT|M02.35|ICD10CM|Reiter's disease, hip|Reiter's disease, hip +C2889066|T047|AB|M02.351|ICD10CM|Reiter's disease, right hip|Reiter's disease, right hip +C2889066|T047|PT|M02.351|ICD10CM|Reiter's disease, right hip|Reiter's disease, right hip +C2889067|T047|AB|M02.352|ICD10CM|Reiter's disease, left hip|Reiter's disease, left hip +C2889067|T047|PT|M02.352|ICD10CM|Reiter's disease, left hip|Reiter's disease, left hip +C2889068|T047|AB|M02.359|ICD10CM|Reiter's disease, unspecified hip|Reiter's disease, unspecified hip +C2889068|T047|PT|M02.359|ICD10CM|Reiter's disease, unspecified hip|Reiter's disease, unspecified hip +C2889069|T047|AB|M02.36|ICD10CM|Reiter's disease, knee|Reiter's disease, knee +C2889069|T047|HT|M02.36|ICD10CM|Reiter's disease, knee|Reiter's disease, knee +C2889070|T047|AB|M02.361|ICD10CM|Reiter's disease, right knee|Reiter's disease, right knee +C2889070|T047|PT|M02.361|ICD10CM|Reiter's disease, right knee|Reiter's disease, right knee +C2889071|T047|AB|M02.362|ICD10CM|Reiter's disease, left knee|Reiter's disease, left knee +C2889071|T047|PT|M02.362|ICD10CM|Reiter's disease, left knee|Reiter's disease, left knee +C2889072|T047|AB|M02.369|ICD10CM|Reiter's disease, unspecified knee|Reiter's disease, unspecified knee +C2889072|T047|PT|M02.369|ICD10CM|Reiter's disease, unspecified knee|Reiter's disease, unspecified knee +C0837444|T047|HT|M02.37|ICD10CM|Reiter's disease, ankle and foot|Reiter's disease, ankle and foot +C0837444|T047|AB|M02.37|ICD10CM|Reiter's disease, ankle and foot|Reiter's disease, ankle and foot +C2889073|T047|ET|M02.37|ICD10CM|Reiter's disease, tarsus, metatarsus and phalanges|Reiter's disease, tarsus, metatarsus and phalanges +C2889074|T047|AB|M02.371|ICD10CM|Reiter's disease, right ankle and foot|Reiter's disease, right ankle and foot +C2889074|T047|PT|M02.371|ICD10CM|Reiter's disease, right ankle and foot|Reiter's disease, right ankle and foot +C2889075|T047|AB|M02.372|ICD10CM|Reiter's disease, left ankle and foot|Reiter's disease, left ankle and foot +C2889075|T047|PT|M02.372|ICD10CM|Reiter's disease, left ankle and foot|Reiter's disease, left ankle and foot +C2889076|T047|AB|M02.379|ICD10CM|Reiter's disease, unspecified ankle and foot|Reiter's disease, unspecified ankle and foot +C2889076|T047|PT|M02.379|ICD10CM|Reiter's disease, unspecified ankle and foot|Reiter's disease, unspecified ankle and foot +C2889077|T047|AB|M02.38|ICD10CM|Reiter's disease, vertebrae|Reiter's disease, vertebrae +C2889077|T047|PT|M02.38|ICD10CM|Reiter's disease, vertebrae|Reiter's disease, vertebrae +C0837437|T047|PT|M02.39|ICD10CM|Reiter's disease, multiple sites|Reiter's disease, multiple sites +C0837437|T047|AB|M02.39|ICD10CM|Reiter's disease, multiple sites|Reiter's disease, multiple sites +C0477537|T047|HT|M02.8|ICD10CM|Other reactive arthropathies|Other reactive arthropathies +C0477537|T047|AB|M02.8|ICD10CM|Other reactive arthropathies|Other reactive arthropathies +C0477537|T047|PT|M02.8|ICD10|Other reactive arthropathies|Other reactive arthropathies +C0837456|T047|AB|M02.80|ICD10CM|Other reactive arthropathies, unspecified site|Other reactive arthropathies, unspecified site +C0837456|T047|PT|M02.80|ICD10CM|Other reactive arthropathies, unspecified site|Other reactive arthropathies, unspecified site +C2889078|T047|AB|M02.81|ICD10CM|Other reactive arthropathies, shoulder|Other reactive arthropathies, shoulder +C2889078|T047|HT|M02.81|ICD10CM|Other reactive arthropathies, shoulder|Other reactive arthropathies, shoulder +C2889079|T047|AB|M02.811|ICD10CM|Other reactive arthropathies, right shoulder|Other reactive arthropathies, right shoulder +C2889079|T047|PT|M02.811|ICD10CM|Other reactive arthropathies, right shoulder|Other reactive arthropathies, right shoulder +C2889080|T047|AB|M02.812|ICD10CM|Other reactive arthropathies, left shoulder|Other reactive arthropathies, left shoulder +C2889080|T047|PT|M02.812|ICD10CM|Other reactive arthropathies, left shoulder|Other reactive arthropathies, left shoulder +C2889078|T047|AB|M02.819|ICD10CM|Other reactive arthropathies, unspecified shoulder|Other reactive arthropathies, unspecified shoulder +C2889078|T047|PT|M02.819|ICD10CM|Other reactive arthropathies, unspecified shoulder|Other reactive arthropathies, unspecified shoulder +C2889081|T047|AB|M02.82|ICD10CM|Other reactive arthropathies, elbow|Other reactive arthropathies, elbow +C2889081|T047|HT|M02.82|ICD10CM|Other reactive arthropathies, elbow|Other reactive arthropathies, elbow +C2889082|T047|AB|M02.821|ICD10CM|Other reactive arthropathies, right elbow|Other reactive arthropathies, right elbow +C2889082|T047|PT|M02.821|ICD10CM|Other reactive arthropathies, right elbow|Other reactive arthropathies, right elbow +C2889083|T047|AB|M02.822|ICD10CM|Other reactive arthropathies, left elbow|Other reactive arthropathies, left elbow +C2889083|T047|PT|M02.822|ICD10CM|Other reactive arthropathies, left elbow|Other reactive arthropathies, left elbow +C2889084|T047|AB|M02.829|ICD10CM|Other reactive arthropathies, unspecified elbow|Other reactive arthropathies, unspecified elbow +C2889084|T047|PT|M02.829|ICD10CM|Other reactive arthropathies, unspecified elbow|Other reactive arthropathies, unspecified elbow +C2889085|T047|ET|M02.83|ICD10CM|Other reactive arthropathies, carpal bones|Other reactive arthropathies, carpal bones +C2889086|T047|AB|M02.83|ICD10CM|Other reactive arthropathies, wrist|Other reactive arthropathies, wrist +C2889086|T047|HT|M02.83|ICD10CM|Other reactive arthropathies, wrist|Other reactive arthropathies, wrist +C2889087|T047|AB|M02.831|ICD10CM|Other reactive arthropathies, right wrist|Other reactive arthropathies, right wrist +C2889087|T047|PT|M02.831|ICD10CM|Other reactive arthropathies, right wrist|Other reactive arthropathies, right wrist +C2889088|T047|AB|M02.832|ICD10CM|Other reactive arthropathies, left wrist|Other reactive arthropathies, left wrist +C2889088|T047|PT|M02.832|ICD10CM|Other reactive arthropathies, left wrist|Other reactive arthropathies, left wrist +C2889089|T047|AB|M02.839|ICD10CM|Other reactive arthropathies, unspecified wrist|Other reactive arthropathies, unspecified wrist +C2889089|T047|PT|M02.839|ICD10CM|Other reactive arthropathies, unspecified wrist|Other reactive arthropathies, unspecified wrist +C0837451|T047|HT|M02.84|ICD10CM|Other reactive arthropathies, hand|Other reactive arthropathies, hand +C0837451|T047|AB|M02.84|ICD10CM|Other reactive arthropathies, hand|Other reactive arthropathies, hand +C2889090|T047|ET|M02.84|ICD10CM|Other reactive arthropathies, metacarpus and phalanges|Other reactive arthropathies, metacarpus and phalanges +C2889091|T047|AB|M02.841|ICD10CM|Other reactive arthropathies, right hand|Other reactive arthropathies, right hand +C2889091|T047|PT|M02.841|ICD10CM|Other reactive arthropathies, right hand|Other reactive arthropathies, right hand +C2889092|T047|AB|M02.842|ICD10CM|Other reactive arthropathies, left hand|Other reactive arthropathies, left hand +C2889092|T047|PT|M02.842|ICD10CM|Other reactive arthropathies, left hand|Other reactive arthropathies, left hand +C2889093|T047|AB|M02.849|ICD10CM|Other reactive arthropathies, unspecified hand|Other reactive arthropathies, unspecified hand +C2889093|T047|PT|M02.849|ICD10CM|Other reactive arthropathies, unspecified hand|Other reactive arthropathies, unspecified hand +C2889096|T047|AB|M02.85|ICD10CM|Other reactive arthropathies, hip|Other reactive arthropathies, hip +C2889096|T047|HT|M02.85|ICD10CM|Other reactive arthropathies, hip|Other reactive arthropathies, hip +C2889094|T047|AB|M02.851|ICD10CM|Other reactive arthropathies, right hip|Other reactive arthropathies, right hip +C2889094|T047|PT|M02.851|ICD10CM|Other reactive arthropathies, right hip|Other reactive arthropathies, right hip +C2889095|T047|AB|M02.852|ICD10CM|Other reactive arthropathies, left hip|Other reactive arthropathies, left hip +C2889095|T047|PT|M02.852|ICD10CM|Other reactive arthropathies, left hip|Other reactive arthropathies, left hip +C2889096|T047|AB|M02.859|ICD10CM|Other reactive arthropathies, unspecified hip|Other reactive arthropathies, unspecified hip +C2889096|T047|PT|M02.859|ICD10CM|Other reactive arthropathies, unspecified hip|Other reactive arthropathies, unspecified hip +C2889099|T047|AB|M02.86|ICD10CM|Other reactive arthropathies, knee|Other reactive arthropathies, knee +C2889099|T047|HT|M02.86|ICD10CM|Other reactive arthropathies, knee|Other reactive arthropathies, knee +C2889097|T047|AB|M02.861|ICD10CM|Other reactive arthropathies, right knee|Other reactive arthropathies, right knee +C2889097|T047|PT|M02.861|ICD10CM|Other reactive arthropathies, right knee|Other reactive arthropathies, right knee +C2889098|T047|AB|M02.862|ICD10CM|Other reactive arthropathies, left knee|Other reactive arthropathies, left knee +C2889098|T047|PT|M02.862|ICD10CM|Other reactive arthropathies, left knee|Other reactive arthropathies, left knee +C2889099|T047|AB|M02.869|ICD10CM|Other reactive arthropathies, unspecified knee|Other reactive arthropathies, unspecified knee +C2889099|T047|PT|M02.869|ICD10CM|Other reactive arthropathies, unspecified knee|Other reactive arthropathies, unspecified knee +C0837454|T047|HT|M02.87|ICD10CM|Other reactive arthropathies, ankle and foot|Other reactive arthropathies, ankle and foot +C0837454|T047|AB|M02.87|ICD10CM|Other reactive arthropathies, ankle and foot|Other reactive arthropathies, ankle and foot +C2889100|T047|ET|M02.87|ICD10CM|Other reactive arthropathies, tarsus, metatarsus and phalanges|Other reactive arthropathies, tarsus, metatarsus and phalanges +C2889101|T047|AB|M02.871|ICD10CM|Other reactive arthropathies, right ankle and foot|Other reactive arthropathies, right ankle and foot +C2889101|T047|PT|M02.871|ICD10CM|Other reactive arthropathies, right ankle and foot|Other reactive arthropathies, right ankle and foot +C2889102|T047|AB|M02.872|ICD10CM|Other reactive arthropathies, left ankle and foot|Other reactive arthropathies, left ankle and foot +C2889102|T047|PT|M02.872|ICD10CM|Other reactive arthropathies, left ankle and foot|Other reactive arthropathies, left ankle and foot +C2889103|T047|AB|M02.879|ICD10CM|Other reactive arthropathies, unspecified ankle and foot|Other reactive arthropathies, unspecified ankle and foot +C2889103|T047|PT|M02.879|ICD10CM|Other reactive arthropathies, unspecified ankle and foot|Other reactive arthropathies, unspecified ankle and foot +C2889104|T047|AB|M02.88|ICD10CM|Other reactive arthropathies, vertebrae|Other reactive arthropathies, vertebrae +C2889104|T047|PT|M02.88|ICD10CM|Other reactive arthropathies, vertebrae|Other reactive arthropathies, vertebrae +C0837447|T047|PT|M02.89|ICD10CM|Other reactive arthropathies, multiple sites|Other reactive arthropathies, multiple sites +C0837447|T047|AB|M02.89|ICD10CM|Other reactive arthropathies, multiple sites|Other reactive arthropathies, multiple sites +C0409580|T047|PT|M02.9|ICD10|Reactive arthropathy, unspecified|Reactive arthropathy, unspecified +C0409580|T047|PT|M02.9|ICD10CM|Reactive arthropathy, unspecified|Reactive arthropathy, unspecified +C0409580|T047|AB|M02.9|ICD10CM|Reactive arthropathy, unspecified|Reactive arthropathy, unspecified +C0694514|T047|HT|M03|ICD10|Postinfective and reactive arthropathies in diseases classified elsewhere|Postinfective and reactive arthropathies in diseases classified elsewhere +C0343491|T047|PT|M03.0|ICD10|Postmeningococcal arthritis|Postmeningococcal arthritis +C0451835|T047|PT|M03.1|ICD10|Postinfective arthropathy in syphilis|Postinfective arthropathy in syphilis +C0477538|T047|PT|M03.2|ICD10|Other postinfectious arthropathies in diseases classified elsewhere|Other postinfectious arthropathies in diseases classified elsewhere +C0477539|T047|PT|M03.6|ICD10|Reactive arthropathy in other diseases classified elsewhere|Reactive arthropathy in other diseases classified elsewhere +C3890737|T047|AB|M04|ICD10CM|Autoinflammatory syndromes|Autoinflammatory syndromes +C3890737|T047|HT|M04|ICD10CM|Autoinflammatory syndromes|Autoinflammatory syndromes +C4268689|T047|HT|M04-M04|ICD10CM|Autoinflammatory syndromes (M04)|Autoinflammatory syndromes (M04) +C0031069|T047|ET|M04.1|ICD10CM|Familial Mediterranean fever|Familial Mediterranean fever +C4268690|T047|ET|M04.1|ICD10CM|Hyperimmunoglobin D syndrome|Hyperimmunoglobin D syndrome +C0342731|T047|ET|M04.1|ICD10CM|Mevalonate kinase deficiency|Mevalonate kinase deficiency +C3889979|T047|AB|M04.1|ICD10CM|Periodic fever syndromes|Periodic fever syndromes +C3889979|T047|PT|M04.1|ICD10CM|Periodic fever syndromes|Periodic fever syndromes +C4268691|T047|ET|M04.1|ICD10CM|Tumor necrosis factor receptor associated periodic syndrome [TRAPS]|Tumor necrosis factor receptor associated periodic syndrome [TRAPS] +C0409818|T047|ET|M04.2|ICD10CM|Chronic infantile neurological, cutaneous and articular syndrome [CINCA]|Chronic infantile neurological, cutaneous and articular syndrome [CINCA] +C2316212|T047|AB|M04.2|ICD10CM|Cryopyrin-associated periodic syndromes|Cryopyrin-associated periodic syndromes +C2316212|T047|PT|M04.2|ICD10CM|Cryopyrin-associated periodic syndromes|Cryopyrin-associated periodic syndromes +C0343068|T047|ET|M04.2|ICD10CM|Familial cold autoinflammatory syndrome|Familial cold autoinflammatory syndrome +C0343068|T047|ET|M04.2|ICD10CM|Familial cold urticaria|Familial cold urticaria +C0268390|T047|ET|M04.2|ICD10CM|Muckle-Wells syndrome|Muckle-Wells syndrome +C4268692|T047|ET|M04.2|ICD10CM|Neonatal onset multisystemic inflammatory disorder [NOMID]|Neonatal onset multisystemic inflammatory disorder [NOMID] +C5201146|T047|ET|M04.8|ICD10CM|Blau syndrome|Blau syndrome +C2748507|T047|ET|M04.8|ICD10CM|Deficiency of interleukin 1 receptor antagonist [DIRA]|Deficiency of interleukin 1 receptor antagonist [DIRA] +C1864997|T047|ET|M04.8|ICD10CM|Majeed syndrome|Majeed syndrome +C4268693|T047|AB|M04.8|ICD10CM|Other autoinflammatory syndromes|Other autoinflammatory syndromes +C4268693|T047|PT|M04.8|ICD10CM|Other autoinflammatory syndromes|Other autoinflammatory syndromes +C4268694|T047|ET|M04.8|ICD10CM|Periodic fever, aphthous stomatitis, pharyngitis, and adenopathy syndrome [PFAPA]|Periodic fever, aphthous stomatitis, pharyngitis, and adenopathy syndrome [PFAPA] +C1858361|T047|ET|M04.8|ICD10CM|Pyogenic arthritis, pyoderma gangrenosum, and acne syndrome [PAPA]|Pyogenic arthritis, pyoderma gangrenosum, and acne syndrome [PAPA] +C4268696|T047|AB|M04.9|ICD10CM|Autoinflammatory syndrome, unspecified|Autoinflammatory syndrome, unspecified +C4268696|T047|PT|M04.9|ICD10CM|Autoinflammatory syndrome, unspecified|Autoinflammatory syndrome, unspecified +C2889385|T047|HT|M05|ICD10CM|Rheumatoid arthritis with rheumatoid factor|Rheumatoid arthritis with rheumatoid factor +C2889385|T047|AB|M05|ICD10CM|Rheumatoid arthritis with rheumatoid factor|Rheumatoid arthritis with rheumatoid factor +C0409651|T047|HT|M05|ICD10|Seropositive rheumatoid arthritis|Seropositive rheumatoid arthritis +C0162323|T047|HT|M05-M14|ICD10CM|Inflammatory polyarthropathies (M05-M14)|Inflammatory polyarthropathies (M05-M14) +C0162323|T047|HT|M05-M14.9|ICD10|Inflammatory polyarthropathies|Inflammatory polyarthropathies +C0015773|T047|PT|M05.0|ICD10|Felty's syndrome|Felty's syndrome +C0015773|T047|HT|M05.0|ICD10CM|Felty's syndrome|Felty's syndrome +C0015773|T047|AB|M05.0|ICD10CM|Felty's syndrome|Felty's syndrome +C0015773|T047|ET|M05.0|ICD10CM|Rheumatoid arthritis with splenoadenomegaly and leukopenia|Rheumatoid arthritis with splenoadenomegaly and leukopenia +C0015773|T047|AB|M05.00|ICD10CM|Felty's syndrome, unspecified site|Felty's syndrome, unspecified site +C0015773|T047|PT|M05.00|ICD10CM|Felty's syndrome, unspecified site|Felty's syndrome, unspecified site +C3469325|T047|AB|M05.01|ICD10CM|Felty's syndrome, shoulder|Felty's syndrome, shoulder +C3469325|T047|HT|M05.01|ICD10CM|Felty's syndrome, shoulder|Felty's syndrome, shoulder +C2889108|T047|AB|M05.011|ICD10CM|Felty's syndrome, right shoulder|Felty's syndrome, right shoulder +C2889108|T047|PT|M05.011|ICD10CM|Felty's syndrome, right shoulder|Felty's syndrome, right shoulder +C2889109|T047|AB|M05.012|ICD10CM|Felty's syndrome, left shoulder|Felty's syndrome, left shoulder +C2889109|T047|PT|M05.012|ICD10CM|Felty's syndrome, left shoulder|Felty's syndrome, left shoulder +C2889110|T047|AB|M05.019|ICD10CM|Felty's syndrome, unspecified shoulder|Felty's syndrome, unspecified shoulder +C2889110|T047|PT|M05.019|ICD10CM|Felty's syndrome, unspecified shoulder|Felty's syndrome, unspecified shoulder +C3469320|T047|AB|M05.02|ICD10CM|Felty's syndrome, elbow|Felty's syndrome, elbow +C3469320|T047|HT|M05.02|ICD10CM|Felty's syndrome, elbow|Felty's syndrome, elbow +C2889112|T047|AB|M05.021|ICD10CM|Felty's syndrome, right elbow|Felty's syndrome, right elbow +C2889112|T047|PT|M05.021|ICD10CM|Felty's syndrome, right elbow|Felty's syndrome, right elbow +C2889113|T047|AB|M05.022|ICD10CM|Felty's syndrome, left elbow|Felty's syndrome, left elbow +C2889113|T047|PT|M05.022|ICD10CM|Felty's syndrome, left elbow|Felty's syndrome, left elbow +C3469320|T047|AB|M05.029|ICD10CM|Felty's syndrome, unspecified elbow|Felty's syndrome, unspecified elbow +C3469320|T047|PT|M05.029|ICD10CM|Felty's syndrome, unspecified elbow|Felty's syndrome, unspecified elbow +C2889114|T047|ET|M05.03|ICD10CM|Felty's syndrome, carpal bones|Felty's syndrome, carpal bones +C3469326|T047|AB|M05.03|ICD10CM|Felty's syndrome, wrist|Felty's syndrome, wrist +C3469326|T047|HT|M05.03|ICD10CM|Felty's syndrome, wrist|Felty's syndrome, wrist +C2889116|T047|AB|M05.031|ICD10CM|Felty's syndrome, right wrist|Felty's syndrome, right wrist +C2889116|T047|PT|M05.031|ICD10CM|Felty's syndrome, right wrist|Felty's syndrome, right wrist +C2889117|T047|AB|M05.032|ICD10CM|Felty's syndrome, left wrist|Felty's syndrome, left wrist +C2889117|T047|PT|M05.032|ICD10CM|Felty's syndrome, left wrist|Felty's syndrome, left wrist +C2889118|T047|AB|M05.039|ICD10CM|Felty's syndrome, unspecified wrist|Felty's syndrome, unspecified wrist +C2889118|T047|PT|M05.039|ICD10CM|Felty's syndrome, unspecified wrist|Felty's syndrome, unspecified wrist +C0837511|T047|HT|M05.04|ICD10CM|Felty's syndrome, hand|Felty's syndrome, hand +C0837511|T047|AB|M05.04|ICD10CM|Felty's syndrome, hand|Felty's syndrome, hand +C2889119|T047|ET|M05.04|ICD10CM|Felty's syndrome, metacarpus and phalanges|Felty's syndrome, metacarpus and phalanges +C2889120|T047|AB|M05.041|ICD10CM|Felty's syndrome, right hand|Felty's syndrome, right hand +C2889120|T047|PT|M05.041|ICD10CM|Felty's syndrome, right hand|Felty's syndrome, right hand +C2889121|T047|AB|M05.042|ICD10CM|Felty's syndrome, left hand|Felty's syndrome, left hand +C2889121|T047|PT|M05.042|ICD10CM|Felty's syndrome, left hand|Felty's syndrome, left hand +C0837511|T047|AB|M05.049|ICD10CM|Felty's syndrome, unspecified hand|Felty's syndrome, unspecified hand +C0837511|T047|PT|M05.049|ICD10CM|Felty's syndrome, unspecified hand|Felty's syndrome, unspecified hand +C3469322|T047|AB|M05.05|ICD10CM|Felty's syndrome, hip|Felty's syndrome, hip +C3469322|T047|HT|M05.05|ICD10CM|Felty's syndrome, hip|Felty's syndrome, hip +C2889122|T047|AB|M05.051|ICD10CM|Felty's syndrome, right hip|Felty's syndrome, right hip +C2889122|T047|PT|M05.051|ICD10CM|Felty's syndrome, right hip|Felty's syndrome, right hip +C2889123|T047|AB|M05.052|ICD10CM|Felty's syndrome, left hip|Felty's syndrome, left hip +C2889123|T047|PT|M05.052|ICD10CM|Felty's syndrome, left hip|Felty's syndrome, left hip +C3469322|T047|AB|M05.059|ICD10CM|Felty's syndrome, unspecified hip|Felty's syndrome, unspecified hip +C3469322|T047|PT|M05.059|ICD10CM|Felty's syndrome, unspecified hip|Felty's syndrome, unspecified hip +C3469323|T047|AB|M05.06|ICD10CM|Felty's syndrome, knee|Felty's syndrome, knee +C3469323|T047|HT|M05.06|ICD10CM|Felty's syndrome, knee|Felty's syndrome, knee +C2889126|T047|AB|M05.061|ICD10CM|Felty's syndrome, right knee|Felty's syndrome, right knee +C2889126|T047|PT|M05.061|ICD10CM|Felty's syndrome, right knee|Felty's syndrome, right knee +C2889127|T047|AB|M05.062|ICD10CM|Felty's syndrome, left knee|Felty's syndrome, left knee +C2889127|T047|PT|M05.062|ICD10CM|Felty's syndrome, left knee|Felty's syndrome, left knee +C3469323|T047|AB|M05.069|ICD10CM|Felty's syndrome, unspecified knee|Felty's syndrome, unspecified knee +C3469323|T047|PT|M05.069|ICD10CM|Felty's syndrome, unspecified knee|Felty's syndrome, unspecified knee +C0837514|T047|HT|M05.07|ICD10CM|Felty's syndrome, ankle and foot|Felty's syndrome, ankle and foot +C0837514|T047|AB|M05.07|ICD10CM|Felty's syndrome, ankle and foot|Felty's syndrome, ankle and foot +C2889128|T047|ET|M05.07|ICD10CM|Felty's syndrome, tarsus, metatarsus and phalanges|Felty's syndrome, tarsus, metatarsus and phalanges +C2889129|T047|AB|M05.071|ICD10CM|Felty's syndrome, right ankle and foot|Felty's syndrome, right ankle and foot +C2889129|T047|PT|M05.071|ICD10CM|Felty's syndrome, right ankle and foot|Felty's syndrome, right ankle and foot +C2889130|T047|AB|M05.072|ICD10CM|Felty's syndrome, left ankle and foot|Felty's syndrome, left ankle and foot +C2889130|T047|PT|M05.072|ICD10CM|Felty's syndrome, left ankle and foot|Felty's syndrome, left ankle and foot +C2889131|T047|AB|M05.079|ICD10CM|Felty's syndrome, unspecified ankle and foot|Felty's syndrome, unspecified ankle and foot +C2889131|T047|PT|M05.079|ICD10CM|Felty's syndrome, unspecified ankle and foot|Felty's syndrome, unspecified ankle and foot +C0837507|T047|PT|M05.09|ICD10CM|Felty's syndrome, multiple sites|Felty's syndrome, multiple sites +C0837507|T047|AB|M05.09|ICD10CM|Felty's syndrome, multiple sites|Felty's syndrome, multiple sites +C0994344|T047|PT|M05.1|ICD10|Rheumatoid lung disease|Rheumatoid lung disease +C2889132|T047|HT|M05.1|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis|Rheumatoid lung disease with rheumatoid arthritis +C2889132|T047|AB|M05.1|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis|Rheumatoid lung disease with rheumatoid arthritis +C2889133|T047|AB|M05.10|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of unsp site|Rheumatoid lung disease w rheumatoid arthritis of unsp site +C2889133|T047|PT|M05.10|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of unspecified site|Rheumatoid lung disease with rheumatoid arthritis of unspecified site +C2889134|T047|AB|M05.11|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of shoulder|Rheumatoid lung disease w rheumatoid arthritis of shoulder +C2889134|T047|HT|M05.11|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of shoulder|Rheumatoid lung disease with rheumatoid arthritis of shoulder +C2889135|T047|AB|M05.111|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of r shoulder|Rheumatoid lung disease w rheumatoid arthritis of r shoulder +C2889135|T047|PT|M05.111|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of right shoulder|Rheumatoid lung disease with rheumatoid arthritis of right shoulder +C2889136|T047|AB|M05.112|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of l shoulder|Rheumatoid lung disease w rheumatoid arthritis of l shoulder +C2889136|T047|PT|M05.112|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of left shoulder|Rheumatoid lung disease with rheumatoid arthritis of left shoulder +C2889137|T047|AB|M05.119|ICD10CM|Rheu lung disease w rheumatoid arthritis of unsp shoulder|Rheu lung disease w rheumatoid arthritis of unsp shoulder +C2889137|T047|PT|M05.119|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of unspecified shoulder|Rheumatoid lung disease with rheumatoid arthritis of unspecified shoulder +C2889138|T047|HT|M05.12|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of elbow|Rheumatoid lung disease with rheumatoid arthritis of elbow +C2889138|T047|AB|M05.12|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of elbow|Rheumatoid lung disease with rheumatoid arthritis of elbow +C2889139|T047|AB|M05.121|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of r elbow|Rheumatoid lung disease w rheumatoid arthritis of r elbow +C2889139|T047|PT|M05.121|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of right elbow|Rheumatoid lung disease with rheumatoid arthritis of right elbow +C2889140|T047|AB|M05.122|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of left elbow|Rheumatoid lung disease w rheumatoid arthritis of left elbow +C2889140|T047|PT|M05.122|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of left elbow|Rheumatoid lung disease with rheumatoid arthritis of left elbow +C2889141|T047|AB|M05.129|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of unsp elbow|Rheumatoid lung disease w rheumatoid arthritis of unsp elbow +C2889141|T047|PT|M05.129|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of unspecified elbow|Rheumatoid lung disease with rheumatoid arthritis of unspecified elbow +C2889143|T047|HT|M05.13|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of wrist|Rheumatoid lung disease with rheumatoid arthritis of wrist +C2889143|T047|AB|M05.13|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of wrist|Rheumatoid lung disease with rheumatoid arthritis of wrist +C2889142|T047|ET|M05.13|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis, carpal bones|Rheumatoid lung disease with rheumatoid arthritis, carpal bones +C2889144|T047|AB|M05.131|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of r wrist|Rheumatoid lung disease w rheumatoid arthritis of r wrist +C2889144|T047|PT|M05.131|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of right wrist|Rheumatoid lung disease with rheumatoid arthritis of right wrist +C2889145|T047|AB|M05.132|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of left wrist|Rheumatoid lung disease w rheumatoid arthritis of left wrist +C2889145|T047|PT|M05.132|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of left wrist|Rheumatoid lung disease with rheumatoid arthritis of left wrist +C2889146|T047|AB|M05.139|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of unsp wrist|Rheumatoid lung disease w rheumatoid arthritis of unsp wrist +C2889146|T047|PT|M05.139|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of unspecified wrist|Rheumatoid lung disease with rheumatoid arthritis of unspecified wrist +C2889148|T047|HT|M05.14|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of hand|Rheumatoid lung disease with rheumatoid arthritis of hand +C2889148|T047|AB|M05.14|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of hand|Rheumatoid lung disease with rheumatoid arthritis of hand +C2889147|T047|ET|M05.14|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis, metacarpus and phalanges|Rheumatoid lung disease with rheumatoid arthritis, metacarpus and phalanges +C2889149|T047|AB|M05.141|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of right hand|Rheumatoid lung disease w rheumatoid arthritis of right hand +C2889149|T047|PT|M05.141|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of right hand|Rheumatoid lung disease with rheumatoid arthritis of right hand +C2889150|T047|AB|M05.142|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of left hand|Rheumatoid lung disease w rheumatoid arthritis of left hand +C2889150|T047|PT|M05.142|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of left hand|Rheumatoid lung disease with rheumatoid arthritis of left hand +C2889151|T047|AB|M05.149|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of unsp hand|Rheumatoid lung disease w rheumatoid arthritis of unsp hand +C2889151|T047|PT|M05.149|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of unspecified hand|Rheumatoid lung disease with rheumatoid arthritis of unspecified hand +C2889152|T047|HT|M05.15|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of hip|Rheumatoid lung disease with rheumatoid arthritis of hip +C2889152|T047|AB|M05.15|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of hip|Rheumatoid lung disease with rheumatoid arthritis of hip +C2889153|T047|AB|M05.151|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of right hip|Rheumatoid lung disease w rheumatoid arthritis of right hip +C2889153|T047|PT|M05.151|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of right hip|Rheumatoid lung disease with rheumatoid arthritis of right hip +C2889154|T047|AB|M05.152|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of left hip|Rheumatoid lung disease w rheumatoid arthritis of left hip +C2889154|T047|PT|M05.152|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of left hip|Rheumatoid lung disease with rheumatoid arthritis of left hip +C2889152|T047|AB|M05.159|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of unsp hip|Rheumatoid lung disease w rheumatoid arthritis of unsp hip +C2889152|T047|PT|M05.159|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of unspecified hip|Rheumatoid lung disease with rheumatoid arthritis of unspecified hip +C2889155|T047|HT|M05.16|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of knee|Rheumatoid lung disease with rheumatoid arthritis of knee +C2889155|T047|AB|M05.16|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of knee|Rheumatoid lung disease with rheumatoid arthritis of knee +C2889156|T047|AB|M05.161|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of right knee|Rheumatoid lung disease w rheumatoid arthritis of right knee +C2889156|T047|PT|M05.161|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of right knee|Rheumatoid lung disease with rheumatoid arthritis of right knee +C2889157|T047|AB|M05.162|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of left knee|Rheumatoid lung disease w rheumatoid arthritis of left knee +C2889157|T047|PT|M05.162|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of left knee|Rheumatoid lung disease with rheumatoid arthritis of left knee +C2889158|T047|AB|M05.169|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of unsp knee|Rheumatoid lung disease w rheumatoid arthritis of unsp knee +C2889158|T047|PT|M05.169|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of unspecified knee|Rheumatoid lung disease with rheumatoid arthritis of unspecified knee +C2889160|T047|AB|M05.17|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis of ank/ft|Rheumatoid lung disease w rheumatoid arthritis of ank/ft +C2889160|T047|HT|M05.17|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of ankle and foot|Rheumatoid lung disease with rheumatoid arthritis of ankle and foot +C2889159|T047|ET|M05.17|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis, tarsus, metatarsus and phalanges|Rheumatoid lung disease with rheumatoid arthritis, tarsus, metatarsus and phalanges +C2889161|T047|AB|M05.171|ICD10CM|Rheu lung disease w rheumatoid arthritis of right ank/ft|Rheu lung disease w rheumatoid arthritis of right ank/ft +C2889161|T047|PT|M05.171|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of right ankle and foot|Rheumatoid lung disease with rheumatoid arthritis of right ankle and foot +C2889162|T047|AB|M05.172|ICD10CM|Rheu lung disease w rheumatoid arthritis of left ank/ft|Rheu lung disease w rheumatoid arthritis of left ank/ft +C2889162|T047|PT|M05.172|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of left ankle and foot|Rheumatoid lung disease with rheumatoid arthritis of left ankle and foot +C2889163|T047|AB|M05.179|ICD10CM|Rheu lung disease w rheumatoid arthritis of unsp ank/ft|Rheu lung disease w rheumatoid arthritis of unsp ank/ft +C2889163|T047|PT|M05.179|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of unspecified ankle and foot|Rheumatoid lung disease with rheumatoid arthritis of unspecified ankle and foot +C2889164|T047|AB|M05.19|ICD10CM|Rheumatoid lung disease w rheumatoid arthritis mult site|Rheumatoid lung disease w rheumatoid arthritis mult site +C2889164|T047|PT|M05.19|ICD10CM|Rheumatoid lung disease with rheumatoid arthritis of multiple sites|Rheumatoid lung disease with rheumatoid arthritis of multiple sites +C0240903|T047|PT|M05.2|ICD10|Rheumatoid vasculitis|Rheumatoid vasculitis +C2889165|T047|HT|M05.2|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis|Rheumatoid vasculitis with rheumatoid arthritis +C2889165|T047|AB|M05.2|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis|Rheumatoid vasculitis with rheumatoid arthritis +C2889165|T047|AB|M05.20|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of unsp site|Rheumatoid vasculitis with rheumatoid arthritis of unsp site +C2889165|T047|PT|M05.20|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of unspecified site|Rheumatoid vasculitis with rheumatoid arthritis of unspecified site +C2889168|T047|HT|M05.21|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of shoulder|Rheumatoid vasculitis with rheumatoid arthritis of shoulder +C2889168|T047|AB|M05.21|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of shoulder|Rheumatoid vasculitis with rheumatoid arthritis of shoulder +C2889166|T047|AB|M05.211|ICD10CM|Rheumatoid vasculitis w rheumatoid arthritis of r shoulder|Rheumatoid vasculitis w rheumatoid arthritis of r shoulder +C2889166|T047|PT|M05.211|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of right shoulder|Rheumatoid vasculitis with rheumatoid arthritis of right shoulder +C2889167|T047|AB|M05.212|ICD10CM|Rheumatoid vasculitis w rheumatoid arthritis of l shoulder|Rheumatoid vasculitis w rheumatoid arthritis of l shoulder +C2889167|T047|PT|M05.212|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of left shoulder|Rheumatoid vasculitis with rheumatoid arthritis of left shoulder +C2889168|T047|AB|M05.219|ICD10CM|Rheu vasculitis w rheumatoid arthritis of unsp shoulder|Rheu vasculitis w rheumatoid arthritis of unsp shoulder +C2889168|T047|PT|M05.219|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of unspecified shoulder|Rheumatoid vasculitis with rheumatoid arthritis of unspecified shoulder +C2889169|T047|HT|M05.22|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of elbow|Rheumatoid vasculitis with rheumatoid arthritis of elbow +C2889169|T047|AB|M05.22|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of elbow|Rheumatoid vasculitis with rheumatoid arthritis of elbow +C2889170|T047|AB|M05.221|ICD10CM|Rheumatoid vasculitis w rheumatoid arthritis of right elbow|Rheumatoid vasculitis w rheumatoid arthritis of right elbow +C2889170|T047|PT|M05.221|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of right elbow|Rheumatoid vasculitis with rheumatoid arthritis of right elbow +C2889171|T047|AB|M05.222|ICD10CM|Rheumatoid vasculitis w rheumatoid arthritis of left elbow|Rheumatoid vasculitis w rheumatoid arthritis of left elbow +C2889171|T047|PT|M05.222|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of left elbow|Rheumatoid vasculitis with rheumatoid arthritis of left elbow +C2889172|T047|AB|M05.229|ICD10CM|Rheumatoid vasculitis w rheumatoid arthritis of unsp elbow|Rheumatoid vasculitis w rheumatoid arthritis of unsp elbow +C2889172|T047|PT|M05.229|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of unspecified elbow|Rheumatoid vasculitis with rheumatoid arthritis of unspecified elbow +C2889174|T047|HT|M05.23|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of wrist|Rheumatoid vasculitis with rheumatoid arthritis of wrist +C2889174|T047|AB|M05.23|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of wrist|Rheumatoid vasculitis with rheumatoid arthritis of wrist +C2889173|T047|ET|M05.23|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis, carpal bones|Rheumatoid vasculitis with rheumatoid arthritis, carpal bones +C2889175|T047|AB|M05.231|ICD10CM|Rheumatoid vasculitis w rheumatoid arthritis of right wrist|Rheumatoid vasculitis w rheumatoid arthritis of right wrist +C2889175|T047|PT|M05.231|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of right wrist|Rheumatoid vasculitis with rheumatoid arthritis of right wrist +C2889176|T047|AB|M05.232|ICD10CM|Rheumatoid vasculitis w rheumatoid arthritis of left wrist|Rheumatoid vasculitis w rheumatoid arthritis of left wrist +C2889176|T047|PT|M05.232|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of left wrist|Rheumatoid vasculitis with rheumatoid arthritis of left wrist +C2889177|T047|AB|M05.239|ICD10CM|Rheumatoid vasculitis w rheumatoid arthritis of unsp wrist|Rheumatoid vasculitis w rheumatoid arthritis of unsp wrist +C2889177|T047|PT|M05.239|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of unspecified wrist|Rheumatoid vasculitis with rheumatoid arthritis of unspecified wrist +C2889179|T047|HT|M05.24|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of hand|Rheumatoid vasculitis with rheumatoid arthritis of hand +C2889179|T047|AB|M05.24|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of hand|Rheumatoid vasculitis with rheumatoid arthritis of hand +C2889178|T047|ET|M05.24|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis, metacarpus and phalanges|Rheumatoid vasculitis with rheumatoid arthritis, metacarpus and phalanges +C2889180|T047|AB|M05.241|ICD10CM|Rheumatoid vasculitis w rheumatoid arthritis of right hand|Rheumatoid vasculitis w rheumatoid arthritis of right hand +C2889180|T047|PT|M05.241|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of right hand|Rheumatoid vasculitis with rheumatoid arthritis of right hand +C2889181|T047|AB|M05.242|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of left hand|Rheumatoid vasculitis with rheumatoid arthritis of left hand +C2889181|T047|PT|M05.242|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of left hand|Rheumatoid vasculitis with rheumatoid arthritis of left hand +C2889179|T047|AB|M05.249|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of unsp hand|Rheumatoid vasculitis with rheumatoid arthritis of unsp hand +C2889179|T047|PT|M05.249|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of unspecified hand|Rheumatoid vasculitis with rheumatoid arthritis of unspecified hand +C2889182|T047|HT|M05.25|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of hip|Rheumatoid vasculitis with rheumatoid arthritis of hip +C2889182|T047|AB|M05.25|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of hip|Rheumatoid vasculitis with rheumatoid arthritis of hip +C2889183|T047|AB|M05.251|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of right hip|Rheumatoid vasculitis with rheumatoid arthritis of right hip +C2889183|T047|PT|M05.251|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of right hip|Rheumatoid vasculitis with rheumatoid arthritis of right hip +C2889184|T047|AB|M05.252|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of left hip|Rheumatoid vasculitis with rheumatoid arthritis of left hip +C2889184|T047|PT|M05.252|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of left hip|Rheumatoid vasculitis with rheumatoid arthritis of left hip +C2889185|T047|AB|M05.259|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of unsp hip|Rheumatoid vasculitis with rheumatoid arthritis of unsp hip +C2889185|T047|PT|M05.259|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of unspecified hip|Rheumatoid vasculitis with rheumatoid arthritis of unspecified hip +C2889186|T047|HT|M05.26|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of knee|Rheumatoid vasculitis with rheumatoid arthritis of knee +C2889186|T047|AB|M05.26|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of knee|Rheumatoid vasculitis with rheumatoid arthritis of knee +C2889187|T047|AB|M05.261|ICD10CM|Rheumatoid vasculitis w rheumatoid arthritis of right knee|Rheumatoid vasculitis w rheumatoid arthritis of right knee +C2889187|T047|PT|M05.261|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of right knee|Rheumatoid vasculitis with rheumatoid arthritis of right knee +C2889188|T047|AB|M05.262|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of left knee|Rheumatoid vasculitis with rheumatoid arthritis of left knee +C2889188|T047|PT|M05.262|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of left knee|Rheumatoid vasculitis with rheumatoid arthritis of left knee +C2889189|T047|AB|M05.269|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of unsp knee|Rheumatoid vasculitis with rheumatoid arthritis of unsp knee +C2889189|T047|PT|M05.269|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of unspecified knee|Rheumatoid vasculitis with rheumatoid arthritis of unspecified knee +C2889191|T047|AB|M05.27|ICD10CM|Rheumatoid vasculitis w rheumatoid arthritis of ank/ft|Rheumatoid vasculitis w rheumatoid arthritis of ank/ft +C2889191|T047|HT|M05.27|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of ankle and foot|Rheumatoid vasculitis with rheumatoid arthritis of ankle and foot +C2889190|T047|ET|M05.27|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis, tarsus, metatarsus and phalanges|Rheumatoid vasculitis with rheumatoid arthritis, tarsus, metatarsus and phalanges +C2889192|T047|AB|M05.271|ICD10CM|Rheumatoid vasculitis w rheumatoid arthritis of right ank/ft|Rheumatoid vasculitis w rheumatoid arthritis of right ank/ft +C2889192|T047|PT|M05.271|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of right ankle and foot|Rheumatoid vasculitis with rheumatoid arthritis of right ankle and foot +C2889193|T047|AB|M05.272|ICD10CM|Rheumatoid vasculitis w rheumatoid arthritis of left ank/ft|Rheumatoid vasculitis w rheumatoid arthritis of left ank/ft +C2889193|T047|PT|M05.272|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of left ankle and foot|Rheumatoid vasculitis with rheumatoid arthritis of left ankle and foot +C2889194|T047|AB|M05.279|ICD10CM|Rheumatoid vasculitis w rheumatoid arthritis of unsp ank/ft|Rheumatoid vasculitis w rheumatoid arthritis of unsp ank/ft +C2889194|T047|PT|M05.279|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of unspecified ankle and foot|Rheumatoid vasculitis with rheumatoid arthritis of unspecified ankle and foot +C2889195|T047|AB|M05.29|ICD10CM|Rheumatoid vasculitis w rheumatoid arthritis mult site|Rheumatoid vasculitis w rheumatoid arthritis mult site +C2889195|T047|PT|M05.29|ICD10CM|Rheumatoid vasculitis with rheumatoid arthritis of multiple sites|Rheumatoid vasculitis with rheumatoid arthritis of multiple sites +C0494896|T047|PT|M05.3|ICD10|Rheumatoid arthritis with involvement of other organs and systems|Rheumatoid arthritis with involvement of other organs and systems +C0392469|T047|ET|M05.3|ICD10CM|Rheumatoid carditis|Rheumatoid carditis +C2889196|T047|ET|M05.3|ICD10CM|Rheumatoid endocarditis|Rheumatoid endocarditis +C2889197|T047|HT|M05.3|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis|Rheumatoid heart disease with rheumatoid arthritis +C2889197|T047|AB|M05.3|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis|Rheumatoid heart disease with rheumatoid arthritis +C0489959|T020|ET|M05.3|ICD10CM|Rheumatoid myocarditis|Rheumatoid myocarditis +C0264747|T047|ET|M05.3|ICD10CM|Rheumatoid pericarditis|Rheumatoid pericarditis +C2889198|T047|AB|M05.30|ICD10CM|Rheumatoid heart disease w rheumatoid arthritis of unsp site|Rheumatoid heart disease w rheumatoid arthritis of unsp site +C2889198|T047|PT|M05.30|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of unspecified site|Rheumatoid heart disease with rheumatoid arthritis of unspecified site +C2889199|T047|AB|M05.31|ICD10CM|Rheumatoid heart disease w rheumatoid arthritis of shoulder|Rheumatoid heart disease w rheumatoid arthritis of shoulder +C2889199|T047|HT|M05.31|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of shoulder|Rheumatoid heart disease with rheumatoid arthritis of shoulder +C2889200|T047|AB|M05.311|ICD10CM|Rheu heart disease w rheumatoid arthritis of r shoulder|Rheu heart disease w rheumatoid arthritis of r shoulder +C2889200|T047|PT|M05.311|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of right shoulder|Rheumatoid heart disease with rheumatoid arthritis of right shoulder +C2889201|T047|AB|M05.312|ICD10CM|Rheu heart disease w rheumatoid arthritis of l shoulder|Rheu heart disease w rheumatoid arthritis of l shoulder +C2889201|T047|PT|M05.312|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of left shoulder|Rheumatoid heart disease with rheumatoid arthritis of left shoulder +C2889202|T047|AB|M05.319|ICD10CM|Rheu heart disease w rheumatoid arthritis of unsp shoulder|Rheu heart disease w rheumatoid arthritis of unsp shoulder +C2889202|T047|PT|M05.319|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of unspecified shoulder|Rheumatoid heart disease with rheumatoid arthritis of unspecified shoulder +C2889203|T047|HT|M05.32|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of elbow|Rheumatoid heart disease with rheumatoid arthritis of elbow +C2889203|T047|AB|M05.32|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of elbow|Rheumatoid heart disease with rheumatoid arthritis of elbow +C2889204|T047|AB|M05.321|ICD10CM|Rheumatoid heart disease w rheumatoid arthritis of r elbow|Rheumatoid heart disease w rheumatoid arthritis of r elbow +C2889204|T047|PT|M05.321|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of right elbow|Rheumatoid heart disease with rheumatoid arthritis of right elbow +C2889205|T047|AB|M05.322|ICD10CM|Rheumatoid heart disease w rheumatoid arthritis of l elbow|Rheumatoid heart disease w rheumatoid arthritis of l elbow +C2889205|T047|PT|M05.322|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of left elbow|Rheumatoid heart disease with rheumatoid arthritis of left elbow +C2889206|T047|AB|M05.329|ICD10CM|Rheu heart disease w rheumatoid arthritis of unsp elbow|Rheu heart disease w rheumatoid arthritis of unsp elbow +C2889206|T047|PT|M05.329|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of unspecified elbow|Rheumatoid heart disease with rheumatoid arthritis of unspecified elbow +C2889208|T047|HT|M05.33|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of wrist|Rheumatoid heart disease with rheumatoid arthritis of wrist +C2889208|T047|AB|M05.33|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of wrist|Rheumatoid heart disease with rheumatoid arthritis of wrist +C2889207|T047|ET|M05.33|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis, carpal bones|Rheumatoid heart disease with rheumatoid arthritis, carpal bones +C2889209|T047|AB|M05.331|ICD10CM|Rheumatoid heart disease w rheumatoid arthritis of r wrist|Rheumatoid heart disease w rheumatoid arthritis of r wrist +C2889209|T047|PT|M05.331|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of right wrist|Rheumatoid heart disease with rheumatoid arthritis of right wrist +C2889210|T047|AB|M05.332|ICD10CM|Rheumatoid heart disease w rheumatoid arthritis of l wrist|Rheumatoid heart disease w rheumatoid arthritis of l wrist +C2889210|T047|PT|M05.332|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of left wrist|Rheumatoid heart disease with rheumatoid arthritis of left wrist +C2889211|T047|AB|M05.339|ICD10CM|Rheu heart disease w rheumatoid arthritis of unsp wrist|Rheu heart disease w rheumatoid arthritis of unsp wrist +C2889211|T047|PT|M05.339|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of unspecified wrist|Rheumatoid heart disease with rheumatoid arthritis of unspecified wrist +C2889213|T047|HT|M05.34|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of hand|Rheumatoid heart disease with rheumatoid arthritis of hand +C2889213|T047|AB|M05.34|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of hand|Rheumatoid heart disease with rheumatoid arthritis of hand +C2889212|T047|ET|M05.34|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis, metacarpus and phalanges|Rheumatoid heart disease with rheumatoid arthritis, metacarpus and phalanges +C2889214|T047|AB|M05.341|ICD10CM|Rheu heart disease w rheumatoid arthritis of right hand|Rheu heart disease w rheumatoid arthritis of right hand +C2889214|T047|PT|M05.341|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of right hand|Rheumatoid heart disease with rheumatoid arthritis of right hand +C2889215|T047|AB|M05.342|ICD10CM|Rheumatoid heart disease w rheumatoid arthritis of left hand|Rheumatoid heart disease w rheumatoid arthritis of left hand +C2889215|T047|PT|M05.342|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of left hand|Rheumatoid heart disease with rheumatoid arthritis of left hand +C2889216|T047|AB|M05.349|ICD10CM|Rheumatoid heart disease w rheumatoid arthritis of unsp hand|Rheumatoid heart disease w rheumatoid arthritis of unsp hand +C2889216|T047|PT|M05.349|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of unspecified hand|Rheumatoid heart disease with rheumatoid arthritis of unspecified hand +C2889217|T047|HT|M05.35|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of hip|Rheumatoid heart disease with rheumatoid arthritis of hip +C2889217|T047|AB|M05.35|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of hip|Rheumatoid heart disease with rheumatoid arthritis of hip +C2889218|T047|AB|M05.351|ICD10CM|Rheumatoid heart disease w rheumatoid arthritis of right hip|Rheumatoid heart disease w rheumatoid arthritis of right hip +C2889218|T047|PT|M05.351|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of right hip|Rheumatoid heart disease with rheumatoid arthritis of right hip +C2889219|T047|AB|M05.352|ICD10CM|Rheumatoid heart disease w rheumatoid arthritis of left hip|Rheumatoid heart disease w rheumatoid arthritis of left hip +C2889219|T047|PT|M05.352|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of left hip|Rheumatoid heart disease with rheumatoid arthritis of left hip +C2889217|T047|AB|M05.359|ICD10CM|Rheumatoid heart disease w rheumatoid arthritis of unsp hip|Rheumatoid heart disease w rheumatoid arthritis of unsp hip +C2889217|T047|PT|M05.359|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of unspecified hip|Rheumatoid heart disease with rheumatoid arthritis of unspecified hip +C2889220|T047|HT|M05.36|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of knee|Rheumatoid heart disease with rheumatoid arthritis of knee +C2889220|T047|AB|M05.36|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of knee|Rheumatoid heart disease with rheumatoid arthritis of knee +C2889221|T047|AB|M05.361|ICD10CM|Rheu heart disease w rheumatoid arthritis of right knee|Rheu heart disease w rheumatoid arthritis of right knee +C2889221|T047|PT|M05.361|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of right knee|Rheumatoid heart disease with rheumatoid arthritis of right knee +C2889222|T047|AB|M05.362|ICD10CM|Rheumatoid heart disease w rheumatoid arthritis of left knee|Rheumatoid heart disease w rheumatoid arthritis of left knee +C2889222|T047|PT|M05.362|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of left knee|Rheumatoid heart disease with rheumatoid arthritis of left knee +C2889223|T047|AB|M05.369|ICD10CM|Rheumatoid heart disease w rheumatoid arthritis of unsp knee|Rheumatoid heart disease w rheumatoid arthritis of unsp knee +C2889223|T047|PT|M05.369|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of unspecified knee|Rheumatoid heart disease with rheumatoid arthritis of unspecified knee +C2889225|T047|AB|M05.37|ICD10CM|Rheumatoid heart disease w rheumatoid arthritis of ank/ft|Rheumatoid heart disease w rheumatoid arthritis of ank/ft +C2889225|T047|HT|M05.37|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of ankle and foot|Rheumatoid heart disease with rheumatoid arthritis of ankle and foot +C2889224|T047|ET|M05.37|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis, tarsus, metatarsus and phalanges|Rheumatoid heart disease with rheumatoid arthritis, tarsus, metatarsus and phalanges +C2889226|T047|AB|M05.371|ICD10CM|Rheu heart disease w rheumatoid arthritis of right ank/ft|Rheu heart disease w rheumatoid arthritis of right ank/ft +C2889226|T047|PT|M05.371|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of right ankle and foot|Rheumatoid heart disease with rheumatoid arthritis of right ankle and foot +C2889227|T047|AB|M05.372|ICD10CM|Rheu heart disease w rheumatoid arthritis of left ank/ft|Rheu heart disease w rheumatoid arthritis of left ank/ft +C2889227|T047|PT|M05.372|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of left ankle and foot|Rheumatoid heart disease with rheumatoid arthritis of left ankle and foot +C2889228|T047|AB|M05.379|ICD10CM|Rheu heart disease w rheumatoid arthritis of unsp ank/ft|Rheu heart disease w rheumatoid arthritis of unsp ank/ft +C2889228|T047|PT|M05.379|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of unspecified ankle and foot|Rheumatoid heart disease with rheumatoid arthritis of unspecified ankle and foot +C2889229|T047|AB|M05.39|ICD10CM|Rheumatoid heart disease w rheumatoid arthritis mult site|Rheumatoid heart disease w rheumatoid arthritis mult site +C2889229|T047|PT|M05.39|ICD10CM|Rheumatoid heart disease with rheumatoid arthritis of multiple sites|Rheumatoid heart disease with rheumatoid arthritis of multiple sites +C2889230|T047|AB|M05.4|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis|Rheumatoid myopathy with rheumatoid arthritis +C2889230|T047|HT|M05.4|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis|Rheumatoid myopathy with rheumatoid arthritis +C2889231|T047|AB|M05.40|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of unsp site|Rheumatoid myopathy with rheumatoid arthritis of unsp site +C2889231|T047|PT|M05.40|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of unspecified site|Rheumatoid myopathy with rheumatoid arthritis of unspecified site +C2889232|T047|AB|M05.41|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of shoulder|Rheumatoid myopathy with rheumatoid arthritis of shoulder +C2889232|T047|HT|M05.41|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of shoulder|Rheumatoid myopathy with rheumatoid arthritis of shoulder +C2889233|T047|AB|M05.411|ICD10CM|Rheumatoid myopathy w rheumatoid arthritis of right shoulder|Rheumatoid myopathy w rheumatoid arthritis of right shoulder +C2889233|T047|PT|M05.411|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of right shoulder|Rheumatoid myopathy with rheumatoid arthritis of right shoulder +C2889234|T047|AB|M05.412|ICD10CM|Rheumatoid myopathy w rheumatoid arthritis of left shoulder|Rheumatoid myopathy w rheumatoid arthritis of left shoulder +C2889234|T047|PT|M05.412|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of left shoulder|Rheumatoid myopathy with rheumatoid arthritis of left shoulder +C2889235|T047|AB|M05.419|ICD10CM|Rheumatoid myopathy w rheumatoid arthritis of unsp shoulder|Rheumatoid myopathy w rheumatoid arthritis of unsp shoulder +C2889235|T047|PT|M05.419|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of unspecified shoulder|Rheumatoid myopathy with rheumatoid arthritis of unspecified shoulder +C2889236|T047|AB|M05.42|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of elbow|Rheumatoid myopathy with rheumatoid arthritis of elbow +C2889236|T047|HT|M05.42|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of elbow|Rheumatoid myopathy with rheumatoid arthritis of elbow +C2889237|T047|AB|M05.421|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of right elbow|Rheumatoid myopathy with rheumatoid arthritis of right elbow +C2889237|T047|PT|M05.421|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of right elbow|Rheumatoid myopathy with rheumatoid arthritis of right elbow +C2889238|T047|AB|M05.422|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of left elbow|Rheumatoid myopathy with rheumatoid arthritis of left elbow +C2889238|T047|PT|M05.422|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of left elbow|Rheumatoid myopathy with rheumatoid arthritis of left elbow +C2889239|T047|AB|M05.429|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of unsp elbow|Rheumatoid myopathy with rheumatoid arthritis of unsp elbow +C2889239|T047|PT|M05.429|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of unspecified elbow|Rheumatoid myopathy with rheumatoid arthritis of unspecified elbow +C2889241|T047|AB|M05.43|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of wrist|Rheumatoid myopathy with rheumatoid arthritis of wrist +C2889241|T047|HT|M05.43|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of wrist|Rheumatoid myopathy with rheumatoid arthritis of wrist +C2889240|T047|ET|M05.43|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis, carpal bones|Rheumatoid myopathy with rheumatoid arthritis, carpal bones +C2889242|T047|AB|M05.431|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of right wrist|Rheumatoid myopathy with rheumatoid arthritis of right wrist +C2889242|T047|PT|M05.431|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of right wrist|Rheumatoid myopathy with rheumatoid arthritis of right wrist +C2889243|T047|AB|M05.432|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of left wrist|Rheumatoid myopathy with rheumatoid arthritis of left wrist +C2889243|T047|PT|M05.432|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of left wrist|Rheumatoid myopathy with rheumatoid arthritis of left wrist +C2889244|T047|AB|M05.439|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of unsp wrist|Rheumatoid myopathy with rheumatoid arthritis of unsp wrist +C2889244|T047|PT|M05.439|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of unspecified wrist|Rheumatoid myopathy with rheumatoid arthritis of unspecified wrist +C2889246|T047|AB|M05.44|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of hand|Rheumatoid myopathy with rheumatoid arthritis of hand +C2889246|T047|HT|M05.44|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of hand|Rheumatoid myopathy with rheumatoid arthritis of hand +C2889245|T047|ET|M05.44|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis, metacarpus and phalanges|Rheumatoid myopathy with rheumatoid arthritis, metacarpus and phalanges +C2889247|T047|AB|M05.441|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of right hand|Rheumatoid myopathy with rheumatoid arthritis of right hand +C2889247|T047|PT|M05.441|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of right hand|Rheumatoid myopathy with rheumatoid arthritis of right hand +C2889248|T047|AB|M05.442|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of left hand|Rheumatoid myopathy with rheumatoid arthritis of left hand +C2889248|T047|PT|M05.442|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of left hand|Rheumatoid myopathy with rheumatoid arthritis of left hand +C2889246|T047|AB|M05.449|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of unsp hand|Rheumatoid myopathy with rheumatoid arthritis of unsp hand +C2889246|T047|PT|M05.449|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of unspecified hand|Rheumatoid myopathy with rheumatoid arthritis of unspecified hand +C2889249|T047|AB|M05.45|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of hip|Rheumatoid myopathy with rheumatoid arthritis of hip +C2889249|T047|HT|M05.45|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of hip|Rheumatoid myopathy with rheumatoid arthritis of hip +C2889250|T047|AB|M05.451|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of right hip|Rheumatoid myopathy with rheumatoid arthritis of right hip +C2889250|T047|PT|M05.451|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of right hip|Rheumatoid myopathy with rheumatoid arthritis of right hip +C2889251|T047|AB|M05.452|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of left hip|Rheumatoid myopathy with rheumatoid arthritis of left hip +C2889251|T047|PT|M05.452|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of left hip|Rheumatoid myopathy with rheumatoid arthritis of left hip +C2889252|T047|AB|M05.459|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of unsp hip|Rheumatoid myopathy with rheumatoid arthritis of unsp hip +C2889252|T047|PT|M05.459|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of unspecified hip|Rheumatoid myopathy with rheumatoid arthritis of unspecified hip +C2889253|T047|AB|M05.46|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of knee|Rheumatoid myopathy with rheumatoid arthritis of knee +C2889253|T047|HT|M05.46|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of knee|Rheumatoid myopathy with rheumatoid arthritis of knee +C2889254|T047|AB|M05.461|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of right knee|Rheumatoid myopathy with rheumatoid arthritis of right knee +C2889254|T047|PT|M05.461|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of right knee|Rheumatoid myopathy with rheumatoid arthritis of right knee +C2889255|T047|AB|M05.462|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of left knee|Rheumatoid myopathy with rheumatoid arthritis of left knee +C2889255|T047|PT|M05.462|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of left knee|Rheumatoid myopathy with rheumatoid arthritis of left knee +C2889256|T047|AB|M05.469|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of unsp knee|Rheumatoid myopathy with rheumatoid arthritis of unsp knee +C2889256|T047|PT|M05.469|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of unspecified knee|Rheumatoid myopathy with rheumatoid arthritis of unspecified knee +C2889258|T047|AB|M05.47|ICD10CM|Rheumatoid myopathy w rheumatoid arthritis of ankle and foot|Rheumatoid myopathy w rheumatoid arthritis of ankle and foot +C2889258|T047|HT|M05.47|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of ankle and foot|Rheumatoid myopathy with rheumatoid arthritis of ankle and foot +C2889257|T047|ET|M05.47|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis, tarsus, metatarsus and phalanges|Rheumatoid myopathy with rheumatoid arthritis, tarsus, metatarsus and phalanges +C2889259|T047|AB|M05.471|ICD10CM|Rheumatoid myopathy w rheumatoid arthritis of right ank/ft|Rheumatoid myopathy w rheumatoid arthritis of right ank/ft +C2889259|T047|PT|M05.471|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of right ankle and foot|Rheumatoid myopathy with rheumatoid arthritis of right ankle and foot +C2889260|T047|AB|M05.472|ICD10CM|Rheumatoid myopathy w rheumatoid arthritis of left ank/ft|Rheumatoid myopathy w rheumatoid arthritis of left ank/ft +C2889260|T047|PT|M05.472|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of left ankle and foot|Rheumatoid myopathy with rheumatoid arthritis of left ankle and foot +C2889261|T047|AB|M05.479|ICD10CM|Rheumatoid myopathy w rheumatoid arthritis of unsp ank/ft|Rheumatoid myopathy w rheumatoid arthritis of unsp ank/ft +C2889261|T047|PT|M05.479|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of unspecified ankle and foot|Rheumatoid myopathy with rheumatoid arthritis of unspecified ankle and foot +C2889262|T047|AB|M05.49|ICD10CM|Rheumatoid myopathy w rheumatoid arthritis of multiple sites|Rheumatoid myopathy w rheumatoid arthritis of multiple sites +C2889262|T047|PT|M05.49|ICD10CM|Rheumatoid myopathy with rheumatoid arthritis of multiple sites|Rheumatoid myopathy with rheumatoid arthritis of multiple sites +C2889263|T047|AB|M05.5|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis|Rheumatoid polyneuropathy with rheumatoid arthritis +C2889263|T047|HT|M05.5|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis|Rheumatoid polyneuropathy with rheumatoid arthritis +C2889264|T047|AB|M05.50|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of unsp site|Rheumatoid polyneurop w rheumatoid arthritis of unsp site +C2889264|T047|PT|M05.50|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified site|Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified site +C2889265|T047|AB|M05.51|ICD10CM|Rheumatoid polyneuropathy w rheumatoid arthritis of shoulder|Rheumatoid polyneuropathy w rheumatoid arthritis of shoulder +C2889265|T047|HT|M05.51|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of shoulder|Rheumatoid polyneuropathy with rheumatoid arthritis of shoulder +C2889266|T047|AB|M05.511|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of r shoulder|Rheumatoid polyneurop w rheumatoid arthritis of r shoulder +C2889266|T047|PT|M05.511|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of right shoulder|Rheumatoid polyneuropathy with rheumatoid arthritis of right shoulder +C2889267|T047|AB|M05.512|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of l shoulder|Rheumatoid polyneurop w rheumatoid arthritis of l shoulder +C2889267|T047|PT|M05.512|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of left shoulder|Rheumatoid polyneuropathy with rheumatoid arthritis of left shoulder +C2889268|T047|AB|M05.519|ICD10CM|Rheu polyneurop w rheumatoid arthritis of unsp shoulder|Rheu polyneurop w rheumatoid arthritis of unsp shoulder +C2889268|T047|PT|M05.519|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified shoulder|Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified shoulder +C2889271|T047|AB|M05.52|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of elbow|Rheumatoid polyneuropathy with rheumatoid arthritis of elbow +C2889271|T047|HT|M05.52|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of elbow|Rheumatoid polyneuropathy with rheumatoid arthritis of elbow +C2889269|T047|AB|M05.521|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of right elbow|Rheumatoid polyneurop w rheumatoid arthritis of right elbow +C2889269|T047|PT|M05.521|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of right elbow|Rheumatoid polyneuropathy with rheumatoid arthritis of right elbow +C2889270|T047|AB|M05.522|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of left elbow|Rheumatoid polyneurop w rheumatoid arthritis of left elbow +C2889270|T047|PT|M05.522|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of left elbow|Rheumatoid polyneuropathy with rheumatoid arthritis of left elbow +C2889271|T047|AB|M05.529|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of unsp elbow|Rheumatoid polyneurop w rheumatoid arthritis of unsp elbow +C2889271|T047|PT|M05.529|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified elbow|Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified elbow +C2889273|T047|AB|M05.53|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of wrist|Rheumatoid polyneuropathy with rheumatoid arthritis of wrist +C2889273|T047|HT|M05.53|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of wrist|Rheumatoid polyneuropathy with rheumatoid arthritis of wrist +C2889272|T047|ET|M05.53|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis, carpal bones|Rheumatoid polyneuropathy with rheumatoid arthritis, carpal bones +C2889274|T047|AB|M05.531|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of right wrist|Rheumatoid polyneurop w rheumatoid arthritis of right wrist +C2889274|T047|PT|M05.531|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of right wrist|Rheumatoid polyneuropathy with rheumatoid arthritis of right wrist +C2889275|T047|AB|M05.532|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of left wrist|Rheumatoid polyneurop w rheumatoid arthritis of left wrist +C2889275|T047|PT|M05.532|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of left wrist|Rheumatoid polyneuropathy with rheumatoid arthritis of left wrist +C2889276|T047|AB|M05.539|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of unsp wrist|Rheumatoid polyneurop w rheumatoid arthritis of unsp wrist +C2889276|T047|PT|M05.539|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified wrist|Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified wrist +C2889278|T047|AB|M05.54|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of hand|Rheumatoid polyneuropathy with rheumatoid arthritis of hand +C2889278|T047|HT|M05.54|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of hand|Rheumatoid polyneuropathy with rheumatoid arthritis of hand +C2889277|T047|ET|M05.54|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis, metacarpus and phalanges|Rheumatoid polyneuropathy with rheumatoid arthritis, metacarpus and phalanges +C2889279|T047|AB|M05.541|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of right hand|Rheumatoid polyneurop w rheumatoid arthritis of right hand +C2889279|T047|PT|M05.541|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of right hand|Rheumatoid polyneuropathy with rheumatoid arthritis of right hand +C2889280|T047|AB|M05.542|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of left hand|Rheumatoid polyneurop w rheumatoid arthritis of left hand +C2889280|T047|PT|M05.542|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of left hand|Rheumatoid polyneuropathy with rheumatoid arthritis of left hand +C2889281|T047|AB|M05.549|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of unsp hand|Rheumatoid polyneurop w rheumatoid arthritis of unsp hand +C2889281|T047|PT|M05.549|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified hand|Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified hand +C2889282|T047|AB|M05.55|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of hip|Rheumatoid polyneuropathy with rheumatoid arthritis of hip +C2889282|T047|HT|M05.55|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of hip|Rheumatoid polyneuropathy with rheumatoid arthritis of hip +C2889283|T047|AB|M05.551|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of right hip|Rheumatoid polyneurop w rheumatoid arthritis of right hip +C2889283|T047|PT|M05.551|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of right hip|Rheumatoid polyneuropathy with rheumatoid arthritis of right hip +C2889284|T047|AB|M05.552|ICD10CM|Rheumatoid polyneuropathy w rheumatoid arthritis of left hip|Rheumatoid polyneuropathy w rheumatoid arthritis of left hip +C2889284|T047|PT|M05.552|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of left hip|Rheumatoid polyneuropathy with rheumatoid arthritis of left hip +C2889285|T047|AB|M05.559|ICD10CM|Rheumatoid polyneuropathy w rheumatoid arthritis of unsp hip|Rheumatoid polyneuropathy w rheumatoid arthritis of unsp hip +C2889285|T047|PT|M05.559|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified hip|Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified hip +C2889286|T047|AB|M05.56|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of knee|Rheumatoid polyneuropathy with rheumatoid arthritis of knee +C2889286|T047|HT|M05.56|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of knee|Rheumatoid polyneuropathy with rheumatoid arthritis of knee +C2889287|T047|AB|M05.561|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of right knee|Rheumatoid polyneurop w rheumatoid arthritis of right knee +C2889287|T047|PT|M05.561|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of right knee|Rheumatoid polyneuropathy with rheumatoid arthritis of right knee +C2889288|T047|AB|M05.562|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of left knee|Rheumatoid polyneurop w rheumatoid arthritis of left knee +C2889288|T047|PT|M05.562|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of left knee|Rheumatoid polyneuropathy with rheumatoid arthritis of left knee +C2889289|T047|AB|M05.569|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of unsp knee|Rheumatoid polyneurop w rheumatoid arthritis of unsp knee +C2889289|T047|PT|M05.569|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified knee|Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified knee +C2889291|T047|AB|M05.57|ICD10CM|Rheumatoid polyneuropathy w rheumatoid arthritis of ank/ft|Rheumatoid polyneuropathy w rheumatoid arthritis of ank/ft +C2889291|T047|HT|M05.57|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of ankle and foot|Rheumatoid polyneuropathy with rheumatoid arthritis of ankle and foot +C2889290|T047|ET|M05.57|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis, tarsus, metatarsus and phalanges|Rheumatoid polyneuropathy with rheumatoid arthritis, tarsus, metatarsus and phalanges +C2889292|T047|AB|M05.571|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of right ank/ft|Rheumatoid polyneurop w rheumatoid arthritis of right ank/ft +C2889292|T047|PT|M05.571|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of right ankle and foot|Rheumatoid polyneuropathy with rheumatoid arthritis of right ankle and foot +C2889293|T047|AB|M05.572|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of left ank/ft|Rheumatoid polyneurop w rheumatoid arthritis of left ank/ft +C2889293|T047|PT|M05.572|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of left ankle and foot|Rheumatoid polyneuropathy with rheumatoid arthritis of left ankle and foot +C2889294|T047|AB|M05.579|ICD10CM|Rheumatoid polyneurop w rheumatoid arthritis of unsp ank/ft|Rheumatoid polyneurop w rheumatoid arthritis of unsp ank/ft +C2889294|T047|PT|M05.579|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified ankle and foot|Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified ankle and foot +C2889295|T047|AB|M05.59|ICD10CM|Rheumatoid polyneuropathy w rheumatoid arthritis mult site|Rheumatoid polyneuropathy w rheumatoid arthritis mult site +C2889295|T047|PT|M05.59|ICD10CM|Rheumatoid polyneuropathy with rheumatoid arthritis of multiple sites|Rheumatoid polyneuropathy with rheumatoid arthritis of multiple sites +C0494896|T047|AB|M05.6|ICD10CM|Rheumatoid arthritis w involvement of oth organs and systems|Rheumatoid arthritis w involvement of oth organs and systems +C0494896|T047|HT|M05.6|ICD10CM|Rheumatoid arthritis with involvement of other organs and systems|Rheumatoid arthritis with involvement of other organs and systems +C0837546|T047|AB|M05.60|ICD10CM|Rheu arthritis of unsp site w involv of organs and systems|Rheu arthritis of unsp site w involv of organs and systems +C0837546|T047|PT|M05.60|ICD10CM|Rheumatoid arthritis of unspecified site with involvement of other organs and systems|Rheumatoid arthritis of unspecified site with involvement of other organs and systems +C2889296|T047|AB|M05.61|ICD10CM|Rheu arthritis of shoulder w involv of organs and systems|Rheu arthritis of shoulder w involv of organs and systems +C2889296|T047|HT|M05.61|ICD10CM|Rheumatoid arthritis of shoulder with involvement of other organs and systems|Rheumatoid arthritis of shoulder with involvement of other organs and systems +C2889297|T047|AB|M05.611|ICD10CM|Rheu arthritis of r shoulder w involv of organs and systems|Rheu arthritis of r shoulder w involv of organs and systems +C2889297|T047|PT|M05.611|ICD10CM|Rheumatoid arthritis of right shoulder with involvement of other organs and systems|Rheumatoid arthritis of right shoulder with involvement of other organs and systems +C2889298|T047|AB|M05.612|ICD10CM|Rheu arthritis of l shoulder w involv of organs and systems|Rheu arthritis of l shoulder w involv of organs and systems +C2889298|T047|PT|M05.612|ICD10CM|Rheumatoid arthritis of left shoulder with involvement of other organs and systems|Rheumatoid arthritis of left shoulder with involvement of other organs and systems +C2889299|T047|AB|M05.619|ICD10CM|Rheu arthrit of unsp shoulder w involv of organs and systems|Rheu arthrit of unsp shoulder w involv of organs and systems +C2889299|T047|PT|M05.619|ICD10CM|Rheumatoid arthritis of unspecified shoulder with involvement of other organs and systems|Rheumatoid arthritis of unspecified shoulder with involvement of other organs and systems +C2889300|T047|AB|M05.62|ICD10CM|Rheumatoid arthritis of elbow w involv of organs and systems|Rheumatoid arthritis of elbow w involv of organs and systems +C2889300|T047|HT|M05.62|ICD10CM|Rheumatoid arthritis of elbow with involvement of other organs and systems|Rheumatoid arthritis of elbow with involvement of other organs and systems +C2889301|T047|AB|M05.621|ICD10CM|Rheu arthritis of r elbow w involv of organs and systems|Rheu arthritis of r elbow w involv of organs and systems +C2889301|T047|PT|M05.621|ICD10CM|Rheumatoid arthritis of right elbow with involvement of other organs and systems|Rheumatoid arthritis of right elbow with involvement of other organs and systems +C2889302|T047|AB|M05.622|ICD10CM|Rheu arthritis of l elbow w involv of organs and systems|Rheu arthritis of l elbow w involv of organs and systems +C2889302|T047|PT|M05.622|ICD10CM|Rheumatoid arthritis of left elbow with involvement of other organs and systems|Rheumatoid arthritis of left elbow with involvement of other organs and systems +C2889303|T047|AB|M05.629|ICD10CM|Rheu arthritis of unsp elbow w involv of organs and systems|Rheu arthritis of unsp elbow w involv of organs and systems +C2889303|T047|PT|M05.629|ICD10CM|Rheumatoid arthritis of unspecified elbow with involvement of other organs and systems|Rheumatoid arthritis of unspecified elbow with involvement of other organs and systems +C2889304|T047|ET|M05.63|ICD10CM|Rheumatoid arthritis of carpal bones with involvement of other organs and systems|Rheumatoid arthritis of carpal bones with involvement of other organs and systems +C2889305|T047|AB|M05.63|ICD10CM|Rheumatoid arthritis of wrist w involv of organs and systems|Rheumatoid arthritis of wrist w involv of organs and systems +C2889305|T047|HT|M05.63|ICD10CM|Rheumatoid arthritis of wrist with involvement of other organs and systems|Rheumatoid arthritis of wrist with involvement of other organs and systems +C2889306|T047|AB|M05.631|ICD10CM|Rheu arthritis of r wrist w involv of organs and systems|Rheu arthritis of r wrist w involv of organs and systems +C2889306|T047|PT|M05.631|ICD10CM|Rheumatoid arthritis of right wrist with involvement of other organs and systems|Rheumatoid arthritis of right wrist with involvement of other organs and systems +C2889307|T047|AB|M05.632|ICD10CM|Rheu arthritis of l wrist w involv of organs and systems|Rheu arthritis of l wrist w involv of organs and systems +C2889307|T047|PT|M05.632|ICD10CM|Rheumatoid arthritis of left wrist with involvement of other organs and systems|Rheumatoid arthritis of left wrist with involvement of other organs and systems +C2889308|T047|AB|M05.639|ICD10CM|Rheu arthritis of unsp wrist w involv of organs and systems|Rheu arthritis of unsp wrist w involv of organs and systems +C2889308|T047|PT|M05.639|ICD10CM|Rheumatoid arthritis of unspecified wrist with involvement of other organs and systems|Rheumatoid arthritis of unspecified wrist with involvement of other organs and systems +C0837541|T047|AB|M05.64|ICD10CM|Rheumatoid arthritis of hand w involv of organs and systems|Rheumatoid arthritis of hand w involv of organs and systems +C0837541|T047|HT|M05.64|ICD10CM|Rheumatoid arthritis of hand with involvement of other organs and systems|Rheumatoid arthritis of hand with involvement of other organs and systems +C2889309|T047|ET|M05.64|ICD10CM|Rheumatoid arthritis of metacarpus and phalanges with involvement of other organs and systems|Rheumatoid arthritis of metacarpus and phalanges with involvement of other organs and systems +C2889310|T047|AB|M05.641|ICD10CM|Rheu arthritis of right hand w involv of organs and systems|Rheu arthritis of right hand w involv of organs and systems +C2889310|T047|PT|M05.641|ICD10CM|Rheumatoid arthritis of right hand with involvement of other organs and systems|Rheumatoid arthritis of right hand with involvement of other organs and systems +C2889311|T047|AB|M05.642|ICD10CM|Rheu arthritis of left hand w involv of organs and systems|Rheu arthritis of left hand w involv of organs and systems +C2889311|T047|PT|M05.642|ICD10CM|Rheumatoid arthritis of left hand with involvement of other organs and systems|Rheumatoid arthritis of left hand with involvement of other organs and systems +C2889312|T047|AB|M05.649|ICD10CM|Rheu arthritis of unsp hand w involv of organs and systems|Rheu arthritis of unsp hand w involv of organs and systems +C2889312|T047|PT|M05.649|ICD10CM|Rheumatoid arthritis of unspecified hand with involvement of other organs and systems|Rheumatoid arthritis of unspecified hand with involvement of other organs and systems +C2889313|T047|AB|M05.65|ICD10CM|Rheumatoid arthritis of hip w involv of organs and systems|Rheumatoid arthritis of hip w involv of organs and systems +C2889313|T047|HT|M05.65|ICD10CM|Rheumatoid arthritis of hip with involvement of other organs and systems|Rheumatoid arthritis of hip with involvement of other organs and systems +C2889314|T047|AB|M05.651|ICD10CM|Rheu arthritis of right hip w involv of organs and systems|Rheu arthritis of right hip w involv of organs and systems +C2889314|T047|PT|M05.651|ICD10CM|Rheumatoid arthritis of right hip with involvement of other organs and systems|Rheumatoid arthritis of right hip with involvement of other organs and systems +C2889315|T047|AB|M05.652|ICD10CM|Rheu arthritis of left hip w involv of organs and systems|Rheu arthritis of left hip w involv of organs and systems +C2889315|T047|PT|M05.652|ICD10CM|Rheumatoid arthritis of left hip with involvement of other organs and systems|Rheumatoid arthritis of left hip with involvement of other organs and systems +C2889316|T047|AB|M05.659|ICD10CM|Rheu arthritis of unsp hip w involv of organs and systems|Rheu arthritis of unsp hip w involv of organs and systems +C2889316|T047|PT|M05.659|ICD10CM|Rheumatoid arthritis of unspecified hip with involvement of other organs and systems|Rheumatoid arthritis of unspecified hip with involvement of other organs and systems +C2889317|T047|AB|M05.66|ICD10CM|Rheumatoid arthritis of knee w involv of organs and systems|Rheumatoid arthritis of knee w involv of organs and systems +C2889317|T047|HT|M05.66|ICD10CM|Rheumatoid arthritis of knee with involvement of other organs and systems|Rheumatoid arthritis of knee with involvement of other organs and systems +C2889318|T047|AB|M05.661|ICD10CM|Rheu arthritis of right knee w involv of organs and systems|Rheu arthritis of right knee w involv of organs and systems +C2889318|T047|PT|M05.661|ICD10CM|Rheumatoid arthritis of right knee with involvement of other organs and systems|Rheumatoid arthritis of right knee with involvement of other organs and systems +C2889319|T047|AB|M05.662|ICD10CM|Rheu arthritis of left knee w involv of organs and systems|Rheu arthritis of left knee w involv of organs and systems +C2889319|T047|PT|M05.662|ICD10CM|Rheumatoid arthritis of left knee with involvement of other organs and systems|Rheumatoid arthritis of left knee with involvement of other organs and systems +C2889320|T047|AB|M05.669|ICD10CM|Rheu arthritis of unsp knee w involv of organs and systems|Rheu arthritis of unsp knee w involv of organs and systems +C2889320|T047|PT|M05.669|ICD10CM|Rheumatoid arthritis of unspecified knee with involvement of other organs and systems|Rheumatoid arthritis of unspecified knee with involvement of other organs and systems +C0837544|T047|AB|M05.67|ICD10CM|Rheu arthritis of ank/ft w involv of organs and systems|Rheu arthritis of ank/ft w involv of organs and systems +C0837544|T047|HT|M05.67|ICD10CM|Rheumatoid arthritis of ankle and foot with involvement of other organs and systems|Rheumatoid arthritis of ankle and foot with involvement of other organs and systems +C2889322|T047|AB|M05.671|ICD10CM|Rheu arthrit of right ank/ft w involv of organs and systems|Rheu arthrit of right ank/ft w involv of organs and systems +C2889322|T047|PT|M05.671|ICD10CM|Rheumatoid arthritis of right ankle and foot with involvement of other organs and systems|Rheumatoid arthritis of right ankle and foot with involvement of other organs and systems +C2889323|T047|AB|M05.672|ICD10CM|Rheu arthritis of left ank/ft w involv of organs and systems|Rheu arthritis of left ank/ft w involv of organs and systems +C2889323|T047|PT|M05.672|ICD10CM|Rheumatoid arthritis of left ankle and foot with involvement of other organs and systems|Rheumatoid arthritis of left ankle and foot with involvement of other organs and systems +C2889324|T047|AB|M05.679|ICD10CM|Rheu arthritis of unsp ank/ft w involv of organs and systems|Rheu arthritis of unsp ank/ft w involv of organs and systems +C2889324|T047|PT|M05.679|ICD10CM|Rheumatoid arthritis of unspecified ankle and foot with involvement of other organs and systems|Rheumatoid arthritis of unspecified ankle and foot with involvement of other organs and systems +C0837537|T047|AB|M05.69|ICD10CM|Rheu arthritis mult site w involv of organs and systems|Rheu arthritis mult site w involv of organs and systems +C0837537|T047|PT|M05.69|ICD10CM|Rheumatoid arthritis of multiple sites with involvement of other organs and systems|Rheumatoid arthritis of multiple sites with involvement of other organs and systems +C2889325|T047|AB|M05.7|ICD10CM|Rheumatoid arthritis w rheumatoid factor w/o org/sys involv|Rheumatoid arthritis w rheumatoid factor w/o org/sys involv +C2889325|T047|HT|M05.7|ICD10CM|Rheumatoid arthritis with rheumatoid factor without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor without organ or systems involvement +C2889326|T047|AB|M05.70|ICD10CM|Rheu arthritis w rheu factor of unsp site w/o org/sys involv|Rheu arthritis w rheu factor of unsp site w/o org/sys involv +C2889326|T047|PT|M05.70|ICD10CM|Rheumatoid arthritis with rheumatoid factor of unspecified site without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of unspecified site without organ or systems involvement +C2889327|T047|AB|M05.71|ICD10CM|Rheu arthritis w rheu factor of shoulder w/o org/sys involv|Rheu arthritis w rheu factor of shoulder w/o org/sys involv +C2889327|T047|HT|M05.71|ICD10CM|Rheumatoid arthritis with rheumatoid factor of shoulder without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of shoulder without organ or systems involvement +C2889328|T047|AB|M05.711|ICD10CM|Rheu arthrit w rheu factor of r shoulder w/o org/sys involv|Rheu arthrit w rheu factor of r shoulder w/o org/sys involv +C2889328|T047|PT|M05.711|ICD10CM|Rheumatoid arthritis with rheumatoid factor of right shoulder without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of right shoulder without organ or systems involvement +C2889329|T047|AB|M05.712|ICD10CM|Rheu arthrit w rheu factor of l shoulder w/o org/sys involv|Rheu arthrit w rheu factor of l shoulder w/o org/sys involv +C2889329|T047|PT|M05.712|ICD10CM|Rheumatoid arthritis with rheumatoid factor of left shoulder without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of left shoulder without organ or systems involvement +C2889330|T047|AB|M05.719|ICD10CM|Rheu arthrit w rheu factor of unsp shldr w/o org/sys involv|Rheu arthrit w rheu factor of unsp shldr w/o org/sys involv +C2889331|T047|AB|M05.72|ICD10CM|Rheu arthritis w rheu factor of elbow w/o org/sys involv|Rheu arthritis w rheu factor of elbow w/o org/sys involv +C2889331|T047|HT|M05.72|ICD10CM|Rheumatoid arthritis with rheumatoid factor of elbow without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of elbow without organ or systems involvement +C2889332|T047|AB|M05.721|ICD10CM|Rheu arthritis w rheu factor of r elbow w/o org/sys involv|Rheu arthritis w rheu factor of r elbow w/o org/sys involv +C2889332|T047|PT|M05.721|ICD10CM|Rheumatoid arthritis with rheumatoid factor of right elbow without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of right elbow without organ or systems involvement +C2889333|T047|AB|M05.722|ICD10CM|Rheu arthritis w rheu factor of l elbow w/o org/sys involv|Rheu arthritis w rheu factor of l elbow w/o org/sys involv +C2889333|T047|PT|M05.722|ICD10CM|Rheumatoid arthritis with rheumatoid factor of left elbow without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of left elbow without organ or systems involvement +C2889334|T047|AB|M05.729|ICD10CM|Rheu arthrit w rheu factor of unsp elbow w/o org/sys involv|Rheu arthrit w rheu factor of unsp elbow w/o org/sys involv +C2889335|T047|AB|M05.73|ICD10CM|Rheu arthritis w rheu factor of wrist w/o org/sys involv|Rheu arthritis w rheu factor of wrist w/o org/sys involv +C2889335|T047|HT|M05.73|ICD10CM|Rheumatoid arthritis with rheumatoid factor of wrist without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of wrist without organ or systems involvement +C2889336|T047|AB|M05.731|ICD10CM|Rheu arthritis w rheu factor of r wrist w/o org/sys involv|Rheu arthritis w rheu factor of r wrist w/o org/sys involv +C2889336|T047|PT|M05.731|ICD10CM|Rheumatoid arthritis with rheumatoid factor of right wrist without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of right wrist without organ or systems involvement +C2889337|T047|AB|M05.732|ICD10CM|Rheu arthritis w rheu factor of l wrist w/o org/sys involv|Rheu arthritis w rheu factor of l wrist w/o org/sys involv +C2889337|T047|PT|M05.732|ICD10CM|Rheumatoid arthritis with rheumatoid factor of left wrist without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of left wrist without organ or systems involvement +C2889338|T047|AB|M05.739|ICD10CM|Rheu arthrit w rheu factor of unsp wrist w/o org/sys involv|Rheu arthrit w rheu factor of unsp wrist w/o org/sys involv +C2889339|T047|AB|M05.74|ICD10CM|Rheu arthritis w rheu factor of hand w/o org/sys involv|Rheu arthritis w rheu factor of hand w/o org/sys involv +C2889339|T047|HT|M05.74|ICD10CM|Rheumatoid arthritis with rheumatoid factor of hand without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of hand without organ or systems involvement +C2889340|T047|AB|M05.741|ICD10CM|Rheu arthritis w rheu factor of r hand w/o org/sys involv|Rheu arthritis w rheu factor of r hand w/o org/sys involv +C2889340|T047|PT|M05.741|ICD10CM|Rheumatoid arthritis with rheumatoid factor of right hand without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of right hand without organ or systems involvement +C2889341|T047|AB|M05.742|ICD10CM|Rheu arthritis w rheu factor of left hand w/o org/sys involv|Rheu arthritis w rheu factor of left hand w/o org/sys involv +C2889341|T047|PT|M05.742|ICD10CM|Rheumatoid arthritis with rheumatoid factor of left hand without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of left hand without organ or systems involvement +C2889342|T047|AB|M05.749|ICD10CM|Rheu arthritis w rheu factor of unsp hand w/o org/sys involv|Rheu arthritis w rheu factor of unsp hand w/o org/sys involv +C2889342|T047|PT|M05.749|ICD10CM|Rheumatoid arthritis with rheumatoid factor of unspecified hand without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of unspecified hand without organ or systems involvement +C2889343|T047|AB|M05.75|ICD10CM|Rheu arthritis w rheumatoid factor of hip w/o org/sys involv|Rheu arthritis w rheumatoid factor of hip w/o org/sys involv +C2889343|T047|HT|M05.75|ICD10CM|Rheumatoid arthritis with rheumatoid factor of hip without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of hip without organ or systems involvement +C2889344|T047|AB|M05.751|ICD10CM|Rheu arthritis w rheu factor of right hip w/o org/sys involv|Rheu arthritis w rheu factor of right hip w/o org/sys involv +C2889344|T047|PT|M05.751|ICD10CM|Rheumatoid arthritis with rheumatoid factor of right hip without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of right hip without organ or systems involvement +C2889345|T047|AB|M05.752|ICD10CM|Rheu arthritis w rheu factor of left hip w/o org/sys involv|Rheu arthritis w rheu factor of left hip w/o org/sys involv +C2889345|T047|PT|M05.752|ICD10CM|Rheumatoid arthritis with rheumatoid factor of left hip without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of left hip without organ or systems involvement +C2889346|T047|AB|M05.759|ICD10CM|Rheu arthritis w rheu factor of unsp hip w/o org/sys involv|Rheu arthritis w rheu factor of unsp hip w/o org/sys involv +C2889346|T047|PT|M05.759|ICD10CM|Rheumatoid arthritis with rheumatoid factor of unspecified hip without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of unspecified hip without organ or systems involvement +C2889347|T047|AB|M05.76|ICD10CM|Rheu arthritis w rheu factor of knee w/o org/sys involv|Rheu arthritis w rheu factor of knee w/o org/sys involv +C2889347|T047|HT|M05.76|ICD10CM|Rheumatoid arthritis with rheumatoid factor of knee without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of knee without organ or systems involvement +C2889348|T047|AB|M05.761|ICD10CM|Rheu arthritis w rheu factor of r knee w/o org/sys involv|Rheu arthritis w rheu factor of r knee w/o org/sys involv +C2889348|T047|PT|M05.761|ICD10CM|Rheumatoid arthritis with rheumatoid factor of right knee without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of right knee without organ or systems involvement +C2889349|T047|AB|M05.762|ICD10CM|Rheu arthritis w rheu factor of left knee w/o org/sys involv|Rheu arthritis w rheu factor of left knee w/o org/sys involv +C2889349|T047|PT|M05.762|ICD10CM|Rheumatoid arthritis with rheumatoid factor of left knee without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of left knee without organ or systems involvement +C2889350|T047|AB|M05.769|ICD10CM|Rheu arthritis w rheu factor of unsp knee w/o org/sys involv|Rheu arthritis w rheu factor of unsp knee w/o org/sys involv +C2889350|T047|PT|M05.769|ICD10CM|Rheumatoid arthritis with rheumatoid factor of unspecified knee without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of unspecified knee without organ or systems involvement +C2889351|T047|AB|M05.77|ICD10CM|Rheu arthritis w rheu factor of ank/ft w/o org/sys involv|Rheu arthritis w rheu factor of ank/ft w/o org/sys involv +C2889351|T047|HT|M05.77|ICD10CM|Rheumatoid arthritis with rheumatoid factor of ankle and foot without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of ankle and foot without organ or systems involvement +C2889352|T047|AB|M05.771|ICD10CM|Rheu arthrit w rheu fctr of right ank/ft w/o org/sys involv|Rheu arthrit w rheu fctr of right ank/ft w/o org/sys involv +C2889353|T047|AB|M05.772|ICD10CM|Rheu arthrit w rheu factor of left ank/ft w/o org/sys involv|Rheu arthrit w rheu factor of left ank/ft w/o org/sys involv +C2889354|T047|AB|M05.779|ICD10CM|Rheu arthrit w rheu factor of unsp ank/ft w/o org/sys involv|Rheu arthrit w rheu factor of unsp ank/ft w/o org/sys involv +C2889355|T047|AB|M05.79|ICD10CM|Rheu arthritis w rheu factor mult site w/o org/sys involv|Rheu arthritis w rheu factor mult site w/o org/sys involv +C2889355|T047|PT|M05.79|ICD10CM|Rheumatoid arthritis with rheumatoid factor of multiple sites without organ or systems involvement|Rheumatoid arthritis with rheumatoid factor of multiple sites without organ or systems involvement +C2889356|T047|AB|M05.8|ICD10CM|Other rheumatoid arthritis with rheumatoid factor|Other rheumatoid arthritis with rheumatoid factor +C2889356|T047|HT|M05.8|ICD10CM|Other rheumatoid arthritis with rheumatoid factor|Other rheumatoid arthritis with rheumatoid factor +C0477541|T047|PT|M05.8|ICD10|Other seropositive rheumatoid arthritis|Other seropositive rheumatoid arthritis +C2889356|T047|AB|M05.80|ICD10CM|Oth rheumatoid arthritis with rheumatoid factor of unsp site|Oth rheumatoid arthritis with rheumatoid factor of unsp site +C2889356|T047|PT|M05.80|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of unspecified site|Other rheumatoid arthritis with rheumatoid factor of unspecified site +C2889357|T047|AB|M05.81|ICD10CM|Oth rheumatoid arthritis with rheumatoid factor of shoulder|Oth rheumatoid arthritis with rheumatoid factor of shoulder +C2889357|T047|HT|M05.81|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of shoulder|Other rheumatoid arthritis with rheumatoid factor of shoulder +C2889358|T047|AB|M05.811|ICD10CM|Oth rheumatoid arthritis w rheumatoid factor of r shoulder|Oth rheumatoid arthritis w rheumatoid factor of r shoulder +C2889358|T047|PT|M05.811|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of right shoulder|Other rheumatoid arthritis with rheumatoid factor of right shoulder +C2889359|T047|AB|M05.812|ICD10CM|Oth rheumatoid arthritis w rheumatoid factor of l shoulder|Oth rheumatoid arthritis w rheumatoid factor of l shoulder +C2889359|T047|PT|M05.812|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of left shoulder|Other rheumatoid arthritis with rheumatoid factor of left shoulder +C2889360|T047|AB|M05.819|ICD10CM|Oth rheu arthritis w rheumatoid factor of unsp shoulder|Oth rheu arthritis w rheumatoid factor of unsp shoulder +C2889360|T047|PT|M05.819|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of unspecified shoulder|Other rheumatoid arthritis with rheumatoid factor of unspecified shoulder +C2889361|T047|AB|M05.82|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of elbow|Other rheumatoid arthritis with rheumatoid factor of elbow +C2889361|T047|HT|M05.82|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of elbow|Other rheumatoid arthritis with rheumatoid factor of elbow +C2889362|T047|AB|M05.821|ICD10CM|Oth rheumatoid arthritis w rheumatoid factor of right elbow|Oth rheumatoid arthritis w rheumatoid factor of right elbow +C2889362|T047|PT|M05.821|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of right elbow|Other rheumatoid arthritis with rheumatoid factor of right elbow +C2889363|T047|AB|M05.822|ICD10CM|Oth rheumatoid arthritis w rheumatoid factor of left elbow|Oth rheumatoid arthritis w rheumatoid factor of left elbow +C2889363|T047|PT|M05.822|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of left elbow|Other rheumatoid arthritis with rheumatoid factor of left elbow +C2889364|T047|AB|M05.829|ICD10CM|Oth rheumatoid arthritis w rheumatoid factor of unsp elbow|Oth rheumatoid arthritis w rheumatoid factor of unsp elbow +C2889364|T047|PT|M05.829|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of unspecified elbow|Other rheumatoid arthritis with rheumatoid factor of unspecified elbow +C2889365|T047|AB|M05.83|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of wrist|Other rheumatoid arthritis with rheumatoid factor of wrist +C2889365|T047|HT|M05.83|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of wrist|Other rheumatoid arthritis with rheumatoid factor of wrist +C2889366|T047|AB|M05.831|ICD10CM|Oth rheumatoid arthritis w rheumatoid factor of right wrist|Oth rheumatoid arthritis w rheumatoid factor of right wrist +C2889366|T047|PT|M05.831|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of right wrist|Other rheumatoid arthritis with rheumatoid factor of right wrist +C2889367|T047|AB|M05.832|ICD10CM|Oth rheumatoid arthritis w rheumatoid factor of left wrist|Oth rheumatoid arthritis w rheumatoid factor of left wrist +C2889367|T047|PT|M05.832|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of left wrist|Other rheumatoid arthritis with rheumatoid factor of left wrist +C2889368|T047|AB|M05.839|ICD10CM|Oth rheumatoid arthritis w rheumatoid factor of unsp wrist|Oth rheumatoid arthritis w rheumatoid factor of unsp wrist +C2889368|T047|PT|M05.839|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of unspecified wrist|Other rheumatoid arthritis with rheumatoid factor of unspecified wrist +C2889371|T047|AB|M05.84|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of hand|Other rheumatoid arthritis with rheumatoid factor of hand +C2889371|T047|HT|M05.84|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of hand|Other rheumatoid arthritis with rheumatoid factor of hand +C2889369|T047|AB|M05.841|ICD10CM|Oth rheumatoid arthritis w rheumatoid factor of right hand|Oth rheumatoid arthritis w rheumatoid factor of right hand +C2889369|T047|PT|M05.841|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of right hand|Other rheumatoid arthritis with rheumatoid factor of right hand +C2889370|T047|AB|M05.842|ICD10CM|Oth rheumatoid arthritis with rheumatoid factor of left hand|Oth rheumatoid arthritis with rheumatoid factor of left hand +C2889370|T047|PT|M05.842|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of left hand|Other rheumatoid arthritis with rheumatoid factor of left hand +C2889371|T047|AB|M05.849|ICD10CM|Oth rheumatoid arthritis with rheumatoid factor of unsp hand|Oth rheumatoid arthritis with rheumatoid factor of unsp hand +C2889371|T047|PT|M05.849|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of unspecified hand|Other rheumatoid arthritis with rheumatoid factor of unspecified hand +C2889372|T047|AB|M05.85|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of hip|Other rheumatoid arthritis with rheumatoid factor of hip +C2889372|T047|HT|M05.85|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of hip|Other rheumatoid arthritis with rheumatoid factor of hip +C2889373|T047|AB|M05.851|ICD10CM|Oth rheumatoid arthritis with rheumatoid factor of right hip|Oth rheumatoid arthritis with rheumatoid factor of right hip +C2889373|T047|PT|M05.851|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of right hip|Other rheumatoid arthritis with rheumatoid factor of right hip +C2889374|T047|AB|M05.852|ICD10CM|Oth rheumatoid arthritis with rheumatoid factor of left hip|Oth rheumatoid arthritis with rheumatoid factor of left hip +C2889374|T047|PT|M05.852|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of left hip|Other rheumatoid arthritis with rheumatoid factor of left hip +C2889375|T047|AB|M05.859|ICD10CM|Oth rheumatoid arthritis with rheumatoid factor of unsp hip|Oth rheumatoid arthritis with rheumatoid factor of unsp hip +C2889375|T047|PT|M05.859|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of unspecified hip|Other rheumatoid arthritis with rheumatoid factor of unspecified hip +C2889376|T047|AB|M05.86|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of knee|Other rheumatoid arthritis with rheumatoid factor of knee +C2889376|T047|HT|M05.86|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of knee|Other rheumatoid arthritis with rheumatoid factor of knee +C2889377|T047|AB|M05.861|ICD10CM|Oth rheumatoid arthritis w rheumatoid factor of right knee|Oth rheumatoid arthritis w rheumatoid factor of right knee +C2889377|T047|PT|M05.861|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of right knee|Other rheumatoid arthritis with rheumatoid factor of right knee +C2889378|T047|AB|M05.862|ICD10CM|Oth rheumatoid arthritis with rheumatoid factor of left knee|Oth rheumatoid arthritis with rheumatoid factor of left knee +C2889378|T047|PT|M05.862|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of left knee|Other rheumatoid arthritis with rheumatoid factor of left knee +C2889379|T047|AB|M05.869|ICD10CM|Oth rheumatoid arthritis with rheumatoid factor of unsp knee|Oth rheumatoid arthritis with rheumatoid factor of unsp knee +C2889379|T047|PT|M05.869|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of unspecified knee|Other rheumatoid arthritis with rheumatoid factor of unspecified knee +C2889380|T047|AB|M05.87|ICD10CM|Oth rheumatoid arthritis w rheumatoid factor of ank/ft|Oth rheumatoid arthritis w rheumatoid factor of ank/ft +C2889380|T047|HT|M05.87|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of ankle and foot|Other rheumatoid arthritis with rheumatoid factor of ankle and foot +C2889381|T047|AB|M05.871|ICD10CM|Oth rheumatoid arthritis w rheumatoid factor of right ank/ft|Oth rheumatoid arthritis w rheumatoid factor of right ank/ft +C2889381|T047|PT|M05.871|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of right ankle and foot|Other rheumatoid arthritis with rheumatoid factor of right ankle and foot +C2889382|T047|AB|M05.872|ICD10CM|Oth rheumatoid arthritis w rheumatoid factor of left ank/ft|Oth rheumatoid arthritis w rheumatoid factor of left ank/ft +C2889382|T047|PT|M05.872|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of left ankle and foot|Other rheumatoid arthritis with rheumatoid factor of left ankle and foot +C2889383|T047|AB|M05.879|ICD10CM|Oth rheumatoid arthritis w rheumatoid factor of unsp ank/ft|Oth rheumatoid arthritis w rheumatoid factor of unsp ank/ft +C2889383|T047|PT|M05.879|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of unspecified ankle and foot|Other rheumatoid arthritis with rheumatoid factor of unspecified ankle and foot +C2889384|T047|AB|M05.89|ICD10CM|Oth rheumatoid arthritis w rheumatoid factor mult site|Oth rheumatoid arthritis w rheumatoid factor mult site +C2889384|T047|PT|M05.89|ICD10CM|Other rheumatoid arthritis with rheumatoid factor of multiple sites|Other rheumatoid arthritis with rheumatoid factor of multiple sites +C2889385|T047|AB|M05.9|ICD10CM|Rheumatoid arthritis with rheumatoid factor, unspecified|Rheumatoid arthritis with rheumatoid factor, unspecified +C2889385|T047|PT|M05.9|ICD10CM|Rheumatoid arthritis with rheumatoid factor, unspecified|Rheumatoid arthritis with rheumatoid factor, unspecified +C0409651|T047|PT|M05.9|ICD10|Seropositive rheumatoid arthritis, unspecified|Seropositive rheumatoid arthritis, unspecified +C0494897|T047|HT|M06|ICD10|Other rheumatoid arthritis|Other rheumatoid arthritis +C0494897|T047|AB|M06|ICD10CM|Other rheumatoid arthritis|Other rheumatoid arthritis +C0494897|T047|HT|M06|ICD10CM|Other rheumatoid arthritis|Other rheumatoid arthritis +C2889386|T047|AB|M06.0|ICD10CM|Rheumatoid arthritis without rheumatoid factor|Rheumatoid arthritis without rheumatoid factor +C2889386|T047|HT|M06.0|ICD10CM|Rheumatoid arthritis without rheumatoid factor|Rheumatoid arthritis without rheumatoid factor +C0409652|T047|PT|M06.0|ICD10|Seronegative rheumatoid arthritis|Seronegative rheumatoid arthritis +C2889387|T047|AB|M06.00|ICD10CM|Rheumatoid arthritis without rheumatoid factor, unsp site|Rheumatoid arthritis without rheumatoid factor, unsp site +C2889387|T047|PT|M06.00|ICD10CM|Rheumatoid arthritis without rheumatoid factor, unspecified site|Rheumatoid arthritis without rheumatoid factor, unspecified site +C2889390|T047|AB|M06.01|ICD10CM|Rheumatoid arthritis without rheumatoid factor, shoulder|Rheumatoid arthritis without rheumatoid factor, shoulder +C2889390|T047|HT|M06.01|ICD10CM|Rheumatoid arthritis without rheumatoid factor, shoulder|Rheumatoid arthritis without rheumatoid factor, shoulder +C2889388|T047|AB|M06.011|ICD10CM|Rheumatoid arthritis w/o rheumatoid factor, right shoulder|Rheumatoid arthritis w/o rheumatoid factor, right shoulder +C2889388|T047|PT|M06.011|ICD10CM|Rheumatoid arthritis without rheumatoid factor, right shoulder|Rheumatoid arthritis without rheumatoid factor, right shoulder +C2889389|T047|AB|M06.012|ICD10CM|Rheumatoid arthritis w/o rheumatoid factor, left shoulder|Rheumatoid arthritis w/o rheumatoid factor, left shoulder +C2889389|T047|PT|M06.012|ICD10CM|Rheumatoid arthritis without rheumatoid factor, left shoulder|Rheumatoid arthritis without rheumatoid factor, left shoulder +C2889390|T047|AB|M06.019|ICD10CM|Rheumatoid arthritis w/o rheumatoid factor, unsp shoulder|Rheumatoid arthritis w/o rheumatoid factor, unsp shoulder +C2889390|T047|PT|M06.019|ICD10CM|Rheumatoid arthritis without rheumatoid factor, unspecified shoulder|Rheumatoid arthritis without rheumatoid factor, unspecified shoulder +C2889391|T047|AB|M06.02|ICD10CM|Rheumatoid arthritis without rheumatoid factor, elbow|Rheumatoid arthritis without rheumatoid factor, elbow +C2889391|T047|HT|M06.02|ICD10CM|Rheumatoid arthritis without rheumatoid factor, elbow|Rheumatoid arthritis without rheumatoid factor, elbow +C2889392|T047|AB|M06.021|ICD10CM|Rheumatoid arthritis without rheumatoid factor, right elbow|Rheumatoid arthritis without rheumatoid factor, right elbow +C2889392|T047|PT|M06.021|ICD10CM|Rheumatoid arthritis without rheumatoid factor, right elbow|Rheumatoid arthritis without rheumatoid factor, right elbow +C2889393|T047|AB|M06.022|ICD10CM|Rheumatoid arthritis without rheumatoid factor, left elbow|Rheumatoid arthritis without rheumatoid factor, left elbow +C2889393|T047|PT|M06.022|ICD10CM|Rheumatoid arthritis without rheumatoid factor, left elbow|Rheumatoid arthritis without rheumatoid factor, left elbow +C2889391|T047|AB|M06.029|ICD10CM|Rheumatoid arthritis without rheumatoid factor, unsp elbow|Rheumatoid arthritis without rheumatoid factor, unsp elbow +C2889391|T047|PT|M06.029|ICD10CM|Rheumatoid arthritis without rheumatoid factor, unspecified elbow|Rheumatoid arthritis without rheumatoid factor, unspecified elbow +C2889396|T047|AB|M06.03|ICD10CM|Rheumatoid arthritis without rheumatoid factor, wrist|Rheumatoid arthritis without rheumatoid factor, wrist +C2889396|T047|HT|M06.03|ICD10CM|Rheumatoid arthritis without rheumatoid factor, wrist|Rheumatoid arthritis without rheumatoid factor, wrist +C2889394|T047|AB|M06.031|ICD10CM|Rheumatoid arthritis without rheumatoid factor, right wrist|Rheumatoid arthritis without rheumatoid factor, right wrist +C2889394|T047|PT|M06.031|ICD10CM|Rheumatoid arthritis without rheumatoid factor, right wrist|Rheumatoid arthritis without rheumatoid factor, right wrist +C2889395|T047|AB|M06.032|ICD10CM|Rheumatoid arthritis without rheumatoid factor, left wrist|Rheumatoid arthritis without rheumatoid factor, left wrist +C2889395|T047|PT|M06.032|ICD10CM|Rheumatoid arthritis without rheumatoid factor, left wrist|Rheumatoid arthritis without rheumatoid factor, left wrist +C2889396|T047|AB|M06.039|ICD10CM|Rheumatoid arthritis without rheumatoid factor, unsp wrist|Rheumatoid arthritis without rheumatoid factor, unsp wrist +C2889396|T047|PT|M06.039|ICD10CM|Rheumatoid arthritis without rheumatoid factor, unspecified wrist|Rheumatoid arthritis without rheumatoid factor, unspecified wrist +C2889397|T047|AB|M06.04|ICD10CM|Rheumatoid arthritis without rheumatoid factor, hand|Rheumatoid arthritis without rheumatoid factor, hand +C2889397|T047|HT|M06.04|ICD10CM|Rheumatoid arthritis without rheumatoid factor, hand|Rheumatoid arthritis without rheumatoid factor, hand +C2889398|T047|AB|M06.041|ICD10CM|Rheumatoid arthritis without rheumatoid factor, right hand|Rheumatoid arthritis without rheumatoid factor, right hand +C2889398|T047|PT|M06.041|ICD10CM|Rheumatoid arthritis without rheumatoid factor, right hand|Rheumatoid arthritis without rheumatoid factor, right hand +C2889399|T047|AB|M06.042|ICD10CM|Rheumatoid arthritis without rheumatoid factor, left hand|Rheumatoid arthritis without rheumatoid factor, left hand +C2889399|T047|PT|M06.042|ICD10CM|Rheumatoid arthritis without rheumatoid factor, left hand|Rheumatoid arthritis without rheumatoid factor, left hand +C2889400|T047|AB|M06.049|ICD10CM|Rheumatoid arthritis without rheumatoid factor, unsp hand|Rheumatoid arthritis without rheumatoid factor, unsp hand +C2889400|T047|PT|M06.049|ICD10CM|Rheumatoid arthritis without rheumatoid factor, unspecified hand|Rheumatoid arthritis without rheumatoid factor, unspecified hand +C2889401|T047|AB|M06.05|ICD10CM|Rheumatoid arthritis without rheumatoid factor, hip|Rheumatoid arthritis without rheumatoid factor, hip +C2889401|T047|HT|M06.05|ICD10CM|Rheumatoid arthritis without rheumatoid factor, hip|Rheumatoid arthritis without rheumatoid factor, hip +C2889402|T047|AB|M06.051|ICD10CM|Rheumatoid arthritis without rheumatoid factor, right hip|Rheumatoid arthritis without rheumatoid factor, right hip +C2889402|T047|PT|M06.051|ICD10CM|Rheumatoid arthritis without rheumatoid factor, right hip|Rheumatoid arthritis without rheumatoid factor, right hip +C2889403|T047|AB|M06.052|ICD10CM|Rheumatoid arthritis without rheumatoid factor, left hip|Rheumatoid arthritis without rheumatoid factor, left hip +C2889403|T047|PT|M06.052|ICD10CM|Rheumatoid arthritis without rheumatoid factor, left hip|Rheumatoid arthritis without rheumatoid factor, left hip +C2889404|T047|AB|M06.059|ICD10CM|Rheumatoid arthritis without rheumatoid factor, unsp hip|Rheumatoid arthritis without rheumatoid factor, unsp hip +C2889404|T047|PT|M06.059|ICD10CM|Rheumatoid arthritis without rheumatoid factor, unspecified hip|Rheumatoid arthritis without rheumatoid factor, unspecified hip +C2889407|T047|AB|M06.06|ICD10CM|Rheumatoid arthritis without rheumatoid factor, knee|Rheumatoid arthritis without rheumatoid factor, knee +C2889407|T047|HT|M06.06|ICD10CM|Rheumatoid arthritis without rheumatoid factor, knee|Rheumatoid arthritis without rheumatoid factor, knee +C2889405|T047|AB|M06.061|ICD10CM|Rheumatoid arthritis without rheumatoid factor, right knee|Rheumatoid arthritis without rheumatoid factor, right knee +C2889405|T047|PT|M06.061|ICD10CM|Rheumatoid arthritis without rheumatoid factor, right knee|Rheumatoid arthritis without rheumatoid factor, right knee +C2889406|T047|AB|M06.062|ICD10CM|Rheumatoid arthritis without rheumatoid factor, left knee|Rheumatoid arthritis without rheumatoid factor, left knee +C2889406|T047|PT|M06.062|ICD10CM|Rheumatoid arthritis without rheumatoid factor, left knee|Rheumatoid arthritis without rheumatoid factor, left knee +C2889407|T047|AB|M06.069|ICD10CM|Rheumatoid arthritis without rheumatoid factor, unsp knee|Rheumatoid arthritis without rheumatoid factor, unsp knee +C2889407|T047|PT|M06.069|ICD10CM|Rheumatoid arthritis without rheumatoid factor, unspecified knee|Rheumatoid arthritis without rheumatoid factor, unspecified knee +C2889408|T047|AB|M06.07|ICD10CM|Rheumatoid arthritis w/o rheumatoid factor, ankle and foot|Rheumatoid arthritis w/o rheumatoid factor, ankle and foot +C2889408|T047|HT|M06.07|ICD10CM|Rheumatoid arthritis without rheumatoid factor, ankle and foot|Rheumatoid arthritis without rheumatoid factor, ankle and foot +C2889409|T047|AB|M06.071|ICD10CM|Rheumatoid arthritis w/o rheumatoid factor, right ank/ft|Rheumatoid arthritis w/o rheumatoid factor, right ank/ft +C2889409|T047|PT|M06.071|ICD10CM|Rheumatoid arthritis without rheumatoid factor, right ankle and foot|Rheumatoid arthritis without rheumatoid factor, right ankle and foot +C2889410|T047|AB|M06.072|ICD10CM|Rheumatoid arthritis w/o rheumatoid factor, left ank/ft|Rheumatoid arthritis w/o rheumatoid factor, left ank/ft +C2889410|T047|PT|M06.072|ICD10CM|Rheumatoid arthritis without rheumatoid factor, left ankle and foot|Rheumatoid arthritis without rheumatoid factor, left ankle and foot +C2889411|T047|AB|M06.079|ICD10CM|Rheumatoid arthritis w/o rheumatoid factor, unsp ank/ft|Rheumatoid arthritis w/o rheumatoid factor, unsp ank/ft +C2889411|T047|PT|M06.079|ICD10CM|Rheumatoid arthritis without rheumatoid factor, unspecified ankle and foot|Rheumatoid arthritis without rheumatoid factor, unspecified ankle and foot +C2889412|T047|AB|M06.08|ICD10CM|Rheumatoid arthritis without rheumatoid factor, vertebrae|Rheumatoid arthritis without rheumatoid factor, vertebrae +C2889412|T047|PT|M06.08|ICD10CM|Rheumatoid arthritis without rheumatoid factor, vertebrae|Rheumatoid arthritis without rheumatoid factor, vertebrae +C2889413|T047|AB|M06.09|ICD10CM|Rheumatoid arthritis w/o rheumatoid factor, multiple sites|Rheumatoid arthritis w/o rheumatoid factor, multiple sites +C2889413|T047|PT|M06.09|ICD10CM|Rheumatoid arthritis without rheumatoid factor, multiple sites|Rheumatoid arthritis without rheumatoid factor, multiple sites +C0085253|T047|PT|M06.1|ICD10|Adult-onset Still's disease|Adult-onset Still's disease +C0085253|T047|PT|M06.1|ICD10CM|Adult-onset Still's disease|Adult-onset Still's disease +C0085253|T047|AB|M06.1|ICD10CM|Adult-onset Still's disease|Adult-onset Still's disease +C0451843|T047|PT|M06.2|ICD10|Rheumatoid bursitis|Rheumatoid bursitis +C0451843|T047|HT|M06.2|ICD10CM|Rheumatoid bursitis|Rheumatoid bursitis +C0451843|T047|AB|M06.2|ICD10CM|Rheumatoid bursitis|Rheumatoid bursitis +C0451843|T047|AB|M06.20|ICD10CM|Rheumatoid bursitis, unspecified site|Rheumatoid bursitis, unspecified site +C0451843|T047|PT|M06.20|ICD10CM|Rheumatoid bursitis, unspecified site|Rheumatoid bursitis, unspecified site +C2889416|T047|AB|M06.21|ICD10CM|Rheumatoid bursitis, shoulder|Rheumatoid bursitis, shoulder +C2889416|T047|HT|M06.21|ICD10CM|Rheumatoid bursitis, shoulder|Rheumatoid bursitis, shoulder +C2889414|T047|AB|M06.211|ICD10CM|Rheumatoid bursitis, right shoulder|Rheumatoid bursitis, right shoulder +C2889414|T047|PT|M06.211|ICD10CM|Rheumatoid bursitis, right shoulder|Rheumatoid bursitis, right shoulder +C2889415|T047|AB|M06.212|ICD10CM|Rheumatoid bursitis, left shoulder|Rheumatoid bursitis, left shoulder +C2889415|T047|PT|M06.212|ICD10CM|Rheumatoid bursitis, left shoulder|Rheumatoid bursitis, left shoulder +C2889416|T047|AB|M06.219|ICD10CM|Rheumatoid bursitis, unspecified shoulder|Rheumatoid bursitis, unspecified shoulder +C2889416|T047|PT|M06.219|ICD10CM|Rheumatoid bursitis, unspecified shoulder|Rheumatoid bursitis, unspecified shoulder +C2889417|T047|AB|M06.22|ICD10CM|Rheumatoid bursitis, elbow|Rheumatoid bursitis, elbow +C2889417|T047|HT|M06.22|ICD10CM|Rheumatoid bursitis, elbow|Rheumatoid bursitis, elbow +C2889418|T047|AB|M06.221|ICD10CM|Rheumatoid bursitis, right elbow|Rheumatoid bursitis, right elbow +C2889418|T047|PT|M06.221|ICD10CM|Rheumatoid bursitis, right elbow|Rheumatoid bursitis, right elbow +C2889419|T047|AB|M06.222|ICD10CM|Rheumatoid bursitis, left elbow|Rheumatoid bursitis, left elbow +C2889419|T047|PT|M06.222|ICD10CM|Rheumatoid bursitis, left elbow|Rheumatoid bursitis, left elbow +C2889420|T047|AB|M06.229|ICD10CM|Rheumatoid bursitis, unspecified elbow|Rheumatoid bursitis, unspecified elbow +C2889420|T047|PT|M06.229|ICD10CM|Rheumatoid bursitis, unspecified elbow|Rheumatoid bursitis, unspecified elbow +C2889423|T047|AB|M06.23|ICD10CM|Rheumatoid bursitis, wrist|Rheumatoid bursitis, wrist +C2889423|T047|HT|M06.23|ICD10CM|Rheumatoid bursitis, wrist|Rheumatoid bursitis, wrist +C2889421|T047|AB|M06.231|ICD10CM|Rheumatoid bursitis, right wrist|Rheumatoid bursitis, right wrist +C2889421|T047|PT|M06.231|ICD10CM|Rheumatoid bursitis, right wrist|Rheumatoid bursitis, right wrist +C2889422|T047|AB|M06.232|ICD10CM|Rheumatoid bursitis, left wrist|Rheumatoid bursitis, left wrist +C2889422|T047|PT|M06.232|ICD10CM|Rheumatoid bursitis, left wrist|Rheumatoid bursitis, left wrist +C2889423|T047|AB|M06.239|ICD10CM|Rheumatoid bursitis, unspecified wrist|Rheumatoid bursitis, unspecified wrist +C2889423|T047|PT|M06.239|ICD10CM|Rheumatoid bursitis, unspecified wrist|Rheumatoid bursitis, unspecified wrist +C0837591|T047|HT|M06.24|ICD10CM|Rheumatoid bursitis, hand|Rheumatoid bursitis, hand +C0837591|T047|AB|M06.24|ICD10CM|Rheumatoid bursitis, hand|Rheumatoid bursitis, hand +C2889424|T047|AB|M06.241|ICD10CM|Rheumatoid bursitis, right hand|Rheumatoid bursitis, right hand +C2889424|T047|PT|M06.241|ICD10CM|Rheumatoid bursitis, right hand|Rheumatoid bursitis, right hand +C2889425|T047|AB|M06.242|ICD10CM|Rheumatoid bursitis, left hand|Rheumatoid bursitis, left hand +C2889425|T047|PT|M06.242|ICD10CM|Rheumatoid bursitis, left hand|Rheumatoid bursitis, left hand +C2889426|T047|AB|M06.249|ICD10CM|Rheumatoid bursitis, unspecified hand|Rheumatoid bursitis, unspecified hand +C2889426|T047|PT|M06.249|ICD10CM|Rheumatoid bursitis, unspecified hand|Rheumatoid bursitis, unspecified hand +C2889427|T047|AB|M06.25|ICD10CM|Rheumatoid bursitis, hip|Rheumatoid bursitis, hip +C2889427|T047|HT|M06.25|ICD10CM|Rheumatoid bursitis, hip|Rheumatoid bursitis, hip +C2889428|T047|AB|M06.251|ICD10CM|Rheumatoid bursitis, right hip|Rheumatoid bursitis, right hip +C2889428|T047|PT|M06.251|ICD10CM|Rheumatoid bursitis, right hip|Rheumatoid bursitis, right hip +C2889429|T047|AB|M06.252|ICD10CM|Rheumatoid bursitis, left hip|Rheumatoid bursitis, left hip +C2889429|T047|PT|M06.252|ICD10CM|Rheumatoid bursitis, left hip|Rheumatoid bursitis, left hip +C2889430|T047|AB|M06.259|ICD10CM|Rheumatoid bursitis, unspecified hip|Rheumatoid bursitis, unspecified hip +C2889430|T047|PT|M06.259|ICD10CM|Rheumatoid bursitis, unspecified hip|Rheumatoid bursitis, unspecified hip +C2889431|T047|AB|M06.26|ICD10CM|Rheumatoid bursitis, knee|Rheumatoid bursitis, knee +C2889431|T047|HT|M06.26|ICD10CM|Rheumatoid bursitis, knee|Rheumatoid bursitis, knee +C2889432|T047|AB|M06.261|ICD10CM|Rheumatoid bursitis, right knee|Rheumatoid bursitis, right knee +C2889432|T047|PT|M06.261|ICD10CM|Rheumatoid bursitis, right knee|Rheumatoid bursitis, right knee +C2889433|T047|AB|M06.262|ICD10CM|Rheumatoid bursitis, left knee|Rheumatoid bursitis, left knee +C2889433|T047|PT|M06.262|ICD10CM|Rheumatoid bursitis, left knee|Rheumatoid bursitis, left knee +C2889434|T047|AB|M06.269|ICD10CM|Rheumatoid bursitis, unspecified knee|Rheumatoid bursitis, unspecified knee +C2889434|T047|PT|M06.269|ICD10CM|Rheumatoid bursitis, unspecified knee|Rheumatoid bursitis, unspecified knee +C0837594|T047|HT|M06.27|ICD10CM|Rheumatoid bursitis, ankle and foot|Rheumatoid bursitis, ankle and foot +C0837594|T047|AB|M06.27|ICD10CM|Rheumatoid bursitis, ankle and foot|Rheumatoid bursitis, ankle and foot +C2889435|T047|AB|M06.271|ICD10CM|Rheumatoid bursitis, right ankle and foot|Rheumatoid bursitis, right ankle and foot +C2889435|T047|PT|M06.271|ICD10CM|Rheumatoid bursitis, right ankle and foot|Rheumatoid bursitis, right ankle and foot +C2889436|T047|AB|M06.272|ICD10CM|Rheumatoid bursitis, left ankle and foot|Rheumatoid bursitis, left ankle and foot +C2889436|T047|PT|M06.272|ICD10CM|Rheumatoid bursitis, left ankle and foot|Rheumatoid bursitis, left ankle and foot +C2889437|T047|AB|M06.279|ICD10CM|Rheumatoid bursitis, unspecified ankle and foot|Rheumatoid bursitis, unspecified ankle and foot +C2889437|T047|PT|M06.279|ICD10CM|Rheumatoid bursitis, unspecified ankle and foot|Rheumatoid bursitis, unspecified ankle and foot +C2889438|T047|AB|M06.28|ICD10CM|Rheumatoid bursitis, vertebrae|Rheumatoid bursitis, vertebrae +C2889438|T047|PT|M06.28|ICD10CM|Rheumatoid bursitis, vertebrae|Rheumatoid bursitis, vertebrae +C0837587|T047|PT|M06.29|ICD10CM|Rheumatoid bursitis, multiple sites|Rheumatoid bursitis, multiple sites +C0837587|T047|AB|M06.29|ICD10CM|Rheumatoid bursitis, multiple sites|Rheumatoid bursitis, multiple sites +C0035450|T020|HT|M06.3|ICD10CM|Rheumatoid nodule|Rheumatoid nodule +C0035450|T020|AB|M06.3|ICD10CM|Rheumatoid nodule|Rheumatoid nodule +C0035450|T020|PT|M06.3|ICD10|Rheumatoid nodule|Rheumatoid nodule +C0837606|T046|AB|M06.30|ICD10CM|Rheumatoid nodule, unspecified site|Rheumatoid nodule, unspecified site +C0837606|T046|PT|M06.30|ICD10CM|Rheumatoid nodule, unspecified site|Rheumatoid nodule, unspecified site +C2889439|T046|AB|M06.31|ICD10CM|Rheumatoid nodule, shoulder|Rheumatoid nodule, shoulder +C2889439|T046|HT|M06.31|ICD10CM|Rheumatoid nodule, shoulder|Rheumatoid nodule, shoulder +C2889440|T046|AB|M06.311|ICD10CM|Rheumatoid nodule, right shoulder|Rheumatoid nodule, right shoulder +C2889440|T046|PT|M06.311|ICD10CM|Rheumatoid nodule, right shoulder|Rheumatoid nodule, right shoulder +C2889441|T046|AB|M06.312|ICD10CM|Rheumatoid nodule, left shoulder|Rheumatoid nodule, left shoulder +C2889441|T046|PT|M06.312|ICD10CM|Rheumatoid nodule, left shoulder|Rheumatoid nodule, left shoulder +C2889442|T046|AB|M06.319|ICD10CM|Rheumatoid nodule, unspecified shoulder|Rheumatoid nodule, unspecified shoulder +C2889442|T046|PT|M06.319|ICD10CM|Rheumatoid nodule, unspecified shoulder|Rheumatoid nodule, unspecified shoulder +C2889443|T047|AB|M06.32|ICD10CM|Rheumatoid nodule, elbow|Rheumatoid nodule, elbow +C2889443|T047|HT|M06.32|ICD10CM|Rheumatoid nodule, elbow|Rheumatoid nodule, elbow +C2889444|T046|AB|M06.321|ICD10CM|Rheumatoid nodule, right elbow|Rheumatoid nodule, right elbow +C2889444|T046|PT|M06.321|ICD10CM|Rheumatoid nodule, right elbow|Rheumatoid nodule, right elbow +C2889445|T046|AB|M06.322|ICD10CM|Rheumatoid nodule, left elbow|Rheumatoid nodule, left elbow +C2889445|T046|PT|M06.322|ICD10CM|Rheumatoid nodule, left elbow|Rheumatoid nodule, left elbow +C2889446|T046|AB|M06.329|ICD10CM|Rheumatoid nodule, unspecified elbow|Rheumatoid nodule, unspecified elbow +C2889446|T046|PT|M06.329|ICD10CM|Rheumatoid nodule, unspecified elbow|Rheumatoid nodule, unspecified elbow +C2889447|T046|AB|M06.33|ICD10CM|Rheumatoid nodule, wrist|Rheumatoid nodule, wrist +C2889447|T046|HT|M06.33|ICD10CM|Rheumatoid nodule, wrist|Rheumatoid nodule, wrist +C2889448|T046|AB|M06.331|ICD10CM|Rheumatoid nodule, right wrist|Rheumatoid nodule, right wrist +C2889448|T046|PT|M06.331|ICD10CM|Rheumatoid nodule, right wrist|Rheumatoid nodule, right wrist +C2889449|T046|AB|M06.332|ICD10CM|Rheumatoid nodule, left wrist|Rheumatoid nodule, left wrist +C2889449|T046|PT|M06.332|ICD10CM|Rheumatoid nodule, left wrist|Rheumatoid nodule, left wrist +C2889450|T046|AB|M06.339|ICD10CM|Rheumatoid nodule, unspecified wrist|Rheumatoid nodule, unspecified wrist +C2889450|T046|PT|M06.339|ICD10CM|Rheumatoid nodule, unspecified wrist|Rheumatoid nodule, unspecified wrist +C0837601|T046|HT|M06.34|ICD10CM|Rheumatoid nodule, hand|Rheumatoid nodule, hand +C0837601|T046|AB|M06.34|ICD10CM|Rheumatoid nodule, hand|Rheumatoid nodule, hand +C2889451|T046|AB|M06.341|ICD10CM|Rheumatoid nodule, right hand|Rheumatoid nodule, right hand +C2889451|T046|PT|M06.341|ICD10CM|Rheumatoid nodule, right hand|Rheumatoid nodule, right hand +C2889452|T046|AB|M06.342|ICD10CM|Rheumatoid nodule, left hand|Rheumatoid nodule, left hand +C2889452|T046|PT|M06.342|ICD10CM|Rheumatoid nodule, left hand|Rheumatoid nodule, left hand +C2889453|T046|AB|M06.349|ICD10CM|Rheumatoid nodule, unspecified hand|Rheumatoid nodule, unspecified hand +C2889453|T046|PT|M06.349|ICD10CM|Rheumatoid nodule, unspecified hand|Rheumatoid nodule, unspecified hand +C2889454|T046|AB|M06.35|ICD10CM|Rheumatoid nodule, hip|Rheumatoid nodule, hip +C2889454|T046|HT|M06.35|ICD10CM|Rheumatoid nodule, hip|Rheumatoid nodule, hip +C2889455|T046|AB|M06.351|ICD10CM|Rheumatoid nodule, right hip|Rheumatoid nodule, right hip +C2889455|T046|PT|M06.351|ICD10CM|Rheumatoid nodule, right hip|Rheumatoid nodule, right hip +C2889456|T046|AB|M06.352|ICD10CM|Rheumatoid nodule, left hip|Rheumatoid nodule, left hip +C2889456|T046|PT|M06.352|ICD10CM|Rheumatoid nodule, left hip|Rheumatoid nodule, left hip +C2889457|T046|AB|M06.359|ICD10CM|Rheumatoid nodule, unspecified hip|Rheumatoid nodule, unspecified hip +C2889457|T046|PT|M06.359|ICD10CM|Rheumatoid nodule, unspecified hip|Rheumatoid nodule, unspecified hip +C2889458|T046|AB|M06.36|ICD10CM|Rheumatoid nodule, knee|Rheumatoid nodule, knee +C2889458|T046|HT|M06.36|ICD10CM|Rheumatoid nodule, knee|Rheumatoid nodule, knee +C2889459|T046|AB|M06.361|ICD10CM|Rheumatoid nodule, right knee|Rheumatoid nodule, right knee +C2889459|T046|PT|M06.361|ICD10CM|Rheumatoid nodule, right knee|Rheumatoid nodule, right knee +C2889460|T046|AB|M06.362|ICD10CM|Rheumatoid nodule, left knee|Rheumatoid nodule, left knee +C2889460|T046|PT|M06.362|ICD10CM|Rheumatoid nodule, left knee|Rheumatoid nodule, left knee +C2889461|T046|AB|M06.369|ICD10CM|Rheumatoid nodule, unspecified knee|Rheumatoid nodule, unspecified knee +C2889461|T046|PT|M06.369|ICD10CM|Rheumatoid nodule, unspecified knee|Rheumatoid nodule, unspecified knee +C0837604|T046|HT|M06.37|ICD10CM|Rheumatoid nodule, ankle and foot|Rheumatoid nodule, ankle and foot +C0837604|T046|AB|M06.37|ICD10CM|Rheumatoid nodule, ankle and foot|Rheumatoid nodule, ankle and foot +C2889462|T046|AB|M06.371|ICD10CM|Rheumatoid nodule, right ankle and foot|Rheumatoid nodule, right ankle and foot +C2889462|T046|PT|M06.371|ICD10CM|Rheumatoid nodule, right ankle and foot|Rheumatoid nodule, right ankle and foot +C2889463|T046|AB|M06.372|ICD10CM|Rheumatoid nodule, left ankle and foot|Rheumatoid nodule, left ankle and foot +C2889463|T046|PT|M06.372|ICD10CM|Rheumatoid nodule, left ankle and foot|Rheumatoid nodule, left ankle and foot +C2889464|T046|AB|M06.379|ICD10CM|Rheumatoid nodule, unspecified ankle and foot|Rheumatoid nodule, unspecified ankle and foot +C2889464|T046|PT|M06.379|ICD10CM|Rheumatoid nodule, unspecified ankle and foot|Rheumatoid nodule, unspecified ankle and foot +C2889465|T046|AB|M06.38|ICD10CM|Rheumatoid nodule, vertebrae|Rheumatoid nodule, vertebrae +C2889465|T046|PT|M06.38|ICD10CM|Rheumatoid nodule, vertebrae|Rheumatoid nodule, vertebrae +C0837597|T047|PT|M06.39|ICD10CM|Rheumatoid nodule, multiple sites|Rheumatoid nodule, multiple sites +C0837597|T047|AB|M06.39|ICD10CM|Rheumatoid nodule, multiple sites|Rheumatoid nodule, multiple sites +C0162323|T047|PT|M06.4|ICD10|Inflammatory polyarthropathy|Inflammatory polyarthropathy +C0162323|T047|PT|M06.4|ICD10CM|Inflammatory polyarthropathy|Inflammatory polyarthropathy +C0162323|T047|AB|M06.4|ICD10CM|Inflammatory polyarthropathy|Inflammatory polyarthropathy +C0477542|T047|HT|M06.8|ICD10CM|Other specified rheumatoid arthritis|Other specified rheumatoid arthritis +C0477542|T047|AB|M06.8|ICD10CM|Other specified rheumatoid arthritis|Other specified rheumatoid arthritis +C0477542|T047|PT|M06.8|ICD10|Other specified rheumatoid arthritis|Other specified rheumatoid arthritis +C0477542|T047|AB|M06.80|ICD10CM|Other specified rheumatoid arthritis, unspecified site|Other specified rheumatoid arthritis, unspecified site +C0477542|T047|PT|M06.80|ICD10CM|Other specified rheumatoid arthritis, unspecified site|Other specified rheumatoid arthritis, unspecified site +C2889466|T047|AB|M06.81|ICD10CM|Other specified rheumatoid arthritis, shoulder|Other specified rheumatoid arthritis, shoulder +C2889466|T047|HT|M06.81|ICD10CM|Other specified rheumatoid arthritis, shoulder|Other specified rheumatoid arthritis, shoulder +C2889467|T047|AB|M06.811|ICD10CM|Other specified rheumatoid arthritis, right shoulder|Other specified rheumatoid arthritis, right shoulder +C2889467|T047|PT|M06.811|ICD10CM|Other specified rheumatoid arthritis, right shoulder|Other specified rheumatoid arthritis, right shoulder +C2889468|T047|AB|M06.812|ICD10CM|Other specified rheumatoid arthritis, left shoulder|Other specified rheumatoid arthritis, left shoulder +C2889468|T047|PT|M06.812|ICD10CM|Other specified rheumatoid arthritis, left shoulder|Other specified rheumatoid arthritis, left shoulder +C2889469|T047|AB|M06.819|ICD10CM|Other specified rheumatoid arthritis, unspecified shoulder|Other specified rheumatoid arthritis, unspecified shoulder +C2889469|T047|PT|M06.819|ICD10CM|Other specified rheumatoid arthritis, unspecified shoulder|Other specified rheumatoid arthritis, unspecified shoulder +C2889470|T047|AB|M06.82|ICD10CM|Other specified rheumatoid arthritis, elbow|Other specified rheumatoid arthritis, elbow +C2889470|T047|HT|M06.82|ICD10CM|Other specified rheumatoid arthritis, elbow|Other specified rheumatoid arthritis, elbow +C2889471|T047|AB|M06.821|ICD10CM|Other specified rheumatoid arthritis, right elbow|Other specified rheumatoid arthritis, right elbow +C2889471|T047|PT|M06.821|ICD10CM|Other specified rheumatoid arthritis, right elbow|Other specified rheumatoid arthritis, right elbow +C2889472|T047|AB|M06.822|ICD10CM|Other specified rheumatoid arthritis, left elbow|Other specified rheumatoid arthritis, left elbow +C2889472|T047|PT|M06.822|ICD10CM|Other specified rheumatoid arthritis, left elbow|Other specified rheumatoid arthritis, left elbow +C2889473|T047|AB|M06.829|ICD10CM|Other specified rheumatoid arthritis, unspecified elbow|Other specified rheumatoid arthritis, unspecified elbow +C2889473|T047|PT|M06.829|ICD10CM|Other specified rheumatoid arthritis, unspecified elbow|Other specified rheumatoid arthritis, unspecified elbow +C2889474|T047|AB|M06.83|ICD10CM|Other specified rheumatoid arthritis, wrist|Other specified rheumatoid arthritis, wrist +C2889474|T047|HT|M06.83|ICD10CM|Other specified rheumatoid arthritis, wrist|Other specified rheumatoid arthritis, wrist +C2889475|T047|AB|M06.831|ICD10CM|Other specified rheumatoid arthritis, right wrist|Other specified rheumatoid arthritis, right wrist +C2889475|T047|PT|M06.831|ICD10CM|Other specified rheumatoid arthritis, right wrist|Other specified rheumatoid arthritis, right wrist +C2889476|T047|AB|M06.832|ICD10CM|Other specified rheumatoid arthritis, left wrist|Other specified rheumatoid arthritis, left wrist +C2889476|T047|PT|M06.832|ICD10CM|Other specified rheumatoid arthritis, left wrist|Other specified rheumatoid arthritis, left wrist +C2889477|T047|AB|M06.839|ICD10CM|Other specified rheumatoid arthritis, unspecified wrist|Other specified rheumatoid arthritis, unspecified wrist +C2889477|T047|PT|M06.839|ICD10CM|Other specified rheumatoid arthritis, unspecified wrist|Other specified rheumatoid arthritis, unspecified wrist +C0837621|T047|HT|M06.84|ICD10CM|Other specified rheumatoid arthritis, hand|Other specified rheumatoid arthritis, hand +C0837621|T047|AB|M06.84|ICD10CM|Other specified rheumatoid arthritis, hand|Other specified rheumatoid arthritis, hand +C2889478|T047|AB|M06.841|ICD10CM|Other specified rheumatoid arthritis, right hand|Other specified rheumatoid arthritis, right hand +C2889478|T047|PT|M06.841|ICD10CM|Other specified rheumatoid arthritis, right hand|Other specified rheumatoid arthritis, right hand +C2889479|T047|AB|M06.842|ICD10CM|Other specified rheumatoid arthritis, left hand|Other specified rheumatoid arthritis, left hand +C2889479|T047|PT|M06.842|ICD10CM|Other specified rheumatoid arthritis, left hand|Other specified rheumatoid arthritis, left hand +C2889480|T047|AB|M06.849|ICD10CM|Other specified rheumatoid arthritis, unspecified hand|Other specified rheumatoid arthritis, unspecified hand +C2889480|T047|PT|M06.849|ICD10CM|Other specified rheumatoid arthritis, unspecified hand|Other specified rheumatoid arthritis, unspecified hand +C2889481|T047|AB|M06.85|ICD10CM|Other specified rheumatoid arthritis, hip|Other specified rheumatoid arthritis, hip +C2889481|T047|HT|M06.85|ICD10CM|Other specified rheumatoid arthritis, hip|Other specified rheumatoid arthritis, hip +C2889482|T047|AB|M06.851|ICD10CM|Other specified rheumatoid arthritis, right hip|Other specified rheumatoid arthritis, right hip +C2889482|T047|PT|M06.851|ICD10CM|Other specified rheumatoid arthritis, right hip|Other specified rheumatoid arthritis, right hip +C2889483|T047|AB|M06.852|ICD10CM|Other specified rheumatoid arthritis, left hip|Other specified rheumatoid arthritis, left hip +C2889483|T047|PT|M06.852|ICD10CM|Other specified rheumatoid arthritis, left hip|Other specified rheumatoid arthritis, left hip +C2889484|T047|AB|M06.859|ICD10CM|Other specified rheumatoid arthritis, unspecified hip|Other specified rheumatoid arthritis, unspecified hip +C2889484|T047|PT|M06.859|ICD10CM|Other specified rheumatoid arthritis, unspecified hip|Other specified rheumatoid arthritis, unspecified hip +C2889485|T047|AB|M06.86|ICD10CM|Other specified rheumatoid arthritis, knee|Other specified rheumatoid arthritis, knee +C2889485|T047|HT|M06.86|ICD10CM|Other specified rheumatoid arthritis, knee|Other specified rheumatoid arthritis, knee +C2889486|T047|AB|M06.861|ICD10CM|Other specified rheumatoid arthritis, right knee|Other specified rheumatoid arthritis, right knee +C2889486|T047|PT|M06.861|ICD10CM|Other specified rheumatoid arthritis, right knee|Other specified rheumatoid arthritis, right knee +C2889487|T047|AB|M06.862|ICD10CM|Other specified rheumatoid arthritis, left knee|Other specified rheumatoid arthritis, left knee +C2889487|T047|PT|M06.862|ICD10CM|Other specified rheumatoid arthritis, left knee|Other specified rheumatoid arthritis, left knee +C2889488|T047|AB|M06.869|ICD10CM|Other specified rheumatoid arthritis, unspecified knee|Other specified rheumatoid arthritis, unspecified knee +C2889488|T047|PT|M06.869|ICD10CM|Other specified rheumatoid arthritis, unspecified knee|Other specified rheumatoid arthritis, unspecified knee +C0837624|T047|HT|M06.87|ICD10CM|Other specified rheumatoid arthritis, ankle and foot|Other specified rheumatoid arthritis, ankle and foot +C0837624|T047|AB|M06.87|ICD10CM|Other specified rheumatoid arthritis, ankle and foot|Other specified rheumatoid arthritis, ankle and foot +C2889489|T047|AB|M06.871|ICD10CM|Other specified rheumatoid arthritis, right ankle and foot|Other specified rheumatoid arthritis, right ankle and foot +C2889489|T047|PT|M06.871|ICD10CM|Other specified rheumatoid arthritis, right ankle and foot|Other specified rheumatoid arthritis, right ankle and foot +C2889490|T047|AB|M06.872|ICD10CM|Other specified rheumatoid arthritis, left ankle and foot|Other specified rheumatoid arthritis, left ankle and foot +C2889490|T047|PT|M06.872|ICD10CM|Other specified rheumatoid arthritis, left ankle and foot|Other specified rheumatoid arthritis, left ankle and foot +C2889491|T047|AB|M06.879|ICD10CM|Oth rheumatoid arthritis, unspecified ankle and foot|Oth rheumatoid arthritis, unspecified ankle and foot +C2889491|T047|PT|M06.879|ICD10CM|Other specified rheumatoid arthritis, unspecified ankle and foot|Other specified rheumatoid arthritis, unspecified ankle and foot +C2889492|T047|AB|M06.88|ICD10CM|Other specified rheumatoid arthritis, vertebrae|Other specified rheumatoid arthritis, vertebrae +C2889492|T047|PT|M06.88|ICD10CM|Other specified rheumatoid arthritis, vertebrae|Other specified rheumatoid arthritis, vertebrae +C0837617|T047|PT|M06.89|ICD10CM|Other specified rheumatoid arthritis, multiple sites|Other specified rheumatoid arthritis, multiple sites +C0837617|T047|AB|M06.89|ICD10CM|Other specified rheumatoid arthritis, multiple sites|Other specified rheumatoid arthritis, multiple sites +C0003873|T047|PT|M06.9|ICD10CM|Rheumatoid arthritis, unspecified|Rheumatoid arthritis, unspecified +C0003873|T047|AB|M06.9|ICD10CM|Rheumatoid arthritis, unspecified|Rheumatoid arthritis, unspecified +C0003873|T047|PT|M06.9|ICD10|Rheumatoid arthritis, unspecified|Rheumatoid arthritis, unspecified +C2889493|T047|HT|M07|ICD10CM|Enteropathic arthropathies|Enteropathic arthropathies +C2889493|T047|AB|M07|ICD10CM|Enteropathic arthropathies|Enteropathic arthropathies +C0694515|T047|HT|M07|ICD10|Psoriatic and enteropathic arthropathies|Psoriatic and enteropathic arthropathies +C0409682|T047|PT|M07.0|ICD10|Distal interphalangeal psoriatic arthropathy|Distal interphalangeal psoriatic arthropathy +C0702102|T047|PT|M07.1|ICD10|Arthritis mutilans|Arthritis mutilans +C0343176|T047|PT|M07.2|ICD10|Psoriatic spondylitis|Psoriatic spondylitis +C0477543|T047|PT|M07.3|ICD10|Other psoriatic arthropathies|Other psoriatic arthropathies +C0409695|T047|PT|M07.4|ICD10|Arthropathy in Crohn's disease [regional enteritis]|Arthropathy in Crohn's disease [regional enteritis] +C0409696|T047|PT|M07.5|ICD10|Arthropathy in ulcerative colitis|Arthropathy in ulcerative colitis +C2889493|T047|AB|M07.6|ICD10CM|Enteropathic arthropathies|Enteropathic arthropathies +C2889493|T047|HT|M07.6|ICD10CM|Enteropathic arthropathies|Enteropathic arthropathies +C0477544|T047|PT|M07.6|ICD10|Other enteropathic arthropathies|Other enteropathic arthropathies +C2889494|T047|AB|M07.60|ICD10CM|Enteropathic arthropathies, unspecified site|Enteropathic arthropathies, unspecified site +C2889494|T047|PT|M07.60|ICD10CM|Enteropathic arthropathies, unspecified site|Enteropathic arthropathies, unspecified site +C2889495|T047|AB|M07.61|ICD10CM|Enteropathic arthropathies, shoulder|Enteropathic arthropathies, shoulder +C2889495|T047|HT|M07.61|ICD10CM|Enteropathic arthropathies, shoulder|Enteropathic arthropathies, shoulder +C2889496|T047|AB|M07.611|ICD10CM|Enteropathic arthropathies, right shoulder|Enteropathic arthropathies, right shoulder +C2889496|T047|PT|M07.611|ICD10CM|Enteropathic arthropathies, right shoulder|Enteropathic arthropathies, right shoulder +C2889497|T047|AB|M07.612|ICD10CM|Enteropathic arthropathies, left shoulder|Enteropathic arthropathies, left shoulder +C2889497|T047|PT|M07.612|ICD10CM|Enteropathic arthropathies, left shoulder|Enteropathic arthropathies, left shoulder +C2889498|T047|AB|M07.619|ICD10CM|Enteropathic arthropathies, unspecified shoulder|Enteropathic arthropathies, unspecified shoulder +C2889498|T047|PT|M07.619|ICD10CM|Enteropathic arthropathies, unspecified shoulder|Enteropathic arthropathies, unspecified shoulder +C2889499|T046|AB|M07.62|ICD10CM|Enteropathic arthropathies, elbow|Enteropathic arthropathies, elbow +C2889499|T046|HT|M07.62|ICD10CM|Enteropathic arthropathies, elbow|Enteropathic arthropathies, elbow +C2889500|T047|AB|M07.621|ICD10CM|Enteropathic arthropathies, right elbow|Enteropathic arthropathies, right elbow +C2889500|T047|PT|M07.621|ICD10CM|Enteropathic arthropathies, right elbow|Enteropathic arthropathies, right elbow +C2889501|T047|AB|M07.622|ICD10CM|Enteropathic arthropathies, left elbow|Enteropathic arthropathies, left elbow +C2889501|T047|PT|M07.622|ICD10CM|Enteropathic arthropathies, left elbow|Enteropathic arthropathies, left elbow +C2889502|T047|AB|M07.629|ICD10CM|Enteropathic arthropathies, unspecified elbow|Enteropathic arthropathies, unspecified elbow +C2889502|T047|PT|M07.629|ICD10CM|Enteropathic arthropathies, unspecified elbow|Enteropathic arthropathies, unspecified elbow +C2889503|T046|AB|M07.63|ICD10CM|Enteropathic arthropathies, wrist|Enteropathic arthropathies, wrist +C2889503|T046|HT|M07.63|ICD10CM|Enteropathic arthropathies, wrist|Enteropathic arthropathies, wrist +C2889504|T047|AB|M07.631|ICD10CM|Enteropathic arthropathies, right wrist|Enteropathic arthropathies, right wrist +C2889504|T047|PT|M07.631|ICD10CM|Enteropathic arthropathies, right wrist|Enteropathic arthropathies, right wrist +C2889505|T047|AB|M07.632|ICD10CM|Enteropathic arthropathies, left wrist|Enteropathic arthropathies, left wrist +C2889505|T047|PT|M07.632|ICD10CM|Enteropathic arthropathies, left wrist|Enteropathic arthropathies, left wrist +C2889503|T046|AB|M07.639|ICD10CM|Enteropathic arthropathies, unspecified wrist|Enteropathic arthropathies, unspecified wrist +C2889503|T046|PT|M07.639|ICD10CM|Enteropathic arthropathies, unspecified wrist|Enteropathic arthropathies, unspecified wrist +C2889506|T046|AB|M07.64|ICD10CM|Enteropathic arthropathies, hand|Enteropathic arthropathies, hand +C2889506|T046|HT|M07.64|ICD10CM|Enteropathic arthropathies, hand|Enteropathic arthropathies, hand +C2889507|T047|AB|M07.641|ICD10CM|Enteropathic arthropathies, right hand|Enteropathic arthropathies, right hand +C2889507|T047|PT|M07.641|ICD10CM|Enteropathic arthropathies, right hand|Enteropathic arthropathies, right hand +C2889508|T047|AB|M07.642|ICD10CM|Enteropathic arthropathies, left hand|Enteropathic arthropathies, left hand +C2889508|T047|PT|M07.642|ICD10CM|Enteropathic arthropathies, left hand|Enteropathic arthropathies, left hand +C2889509|T047|AB|M07.649|ICD10CM|Enteropathic arthropathies, unspecified hand|Enteropathic arthropathies, unspecified hand +C2889509|T047|PT|M07.649|ICD10CM|Enteropathic arthropathies, unspecified hand|Enteropathic arthropathies, unspecified hand +C2889510|T047|AB|M07.65|ICD10CM|Enteropathic arthropathies, hip|Enteropathic arthropathies, hip +C2889510|T047|HT|M07.65|ICD10CM|Enteropathic arthropathies, hip|Enteropathic arthropathies, hip +C2889511|T047|AB|M07.651|ICD10CM|Enteropathic arthropathies, right hip|Enteropathic arthropathies, right hip +C2889511|T047|PT|M07.651|ICD10CM|Enteropathic arthropathies, right hip|Enteropathic arthropathies, right hip +C2889512|T047|AB|M07.652|ICD10CM|Enteropathic arthropathies, left hip|Enteropathic arthropathies, left hip +C2889512|T047|PT|M07.652|ICD10CM|Enteropathic arthropathies, left hip|Enteropathic arthropathies, left hip +C2889513|T047|AB|M07.659|ICD10CM|Enteropathic arthropathies, unspecified hip|Enteropathic arthropathies, unspecified hip +C2889513|T047|PT|M07.659|ICD10CM|Enteropathic arthropathies, unspecified hip|Enteropathic arthropathies, unspecified hip +C2889514|T047|AB|M07.66|ICD10CM|Enteropathic arthropathies, knee|Enteropathic arthropathies, knee +C2889514|T047|HT|M07.66|ICD10CM|Enteropathic arthropathies, knee|Enteropathic arthropathies, knee +C2889515|T047|AB|M07.661|ICD10CM|Enteropathic arthropathies, right knee|Enteropathic arthropathies, right knee +C2889515|T047|PT|M07.661|ICD10CM|Enteropathic arthropathies, right knee|Enteropathic arthropathies, right knee +C2889516|T047|AB|M07.662|ICD10CM|Enteropathic arthropathies, left knee|Enteropathic arthropathies, left knee +C2889516|T047|PT|M07.662|ICD10CM|Enteropathic arthropathies, left knee|Enteropathic arthropathies, left knee +C2889517|T047|AB|M07.669|ICD10CM|Enteropathic arthropathies, unspecified knee|Enteropathic arthropathies, unspecified knee +C2889517|T047|PT|M07.669|ICD10CM|Enteropathic arthropathies, unspecified knee|Enteropathic arthropathies, unspecified knee +C2889518|T047|AB|M07.67|ICD10CM|Enteropathic arthropathies, ankle and foot|Enteropathic arthropathies, ankle and foot +C2889518|T047|HT|M07.67|ICD10CM|Enteropathic arthropathies, ankle and foot|Enteropathic arthropathies, ankle and foot +C2889519|T047|AB|M07.671|ICD10CM|Enteropathic arthropathies, right ankle and foot|Enteropathic arthropathies, right ankle and foot +C2889519|T047|PT|M07.671|ICD10CM|Enteropathic arthropathies, right ankle and foot|Enteropathic arthropathies, right ankle and foot +C2889520|T047|AB|M07.672|ICD10CM|Enteropathic arthropathies, left ankle and foot|Enteropathic arthropathies, left ankle and foot +C2889520|T047|PT|M07.672|ICD10CM|Enteropathic arthropathies, left ankle and foot|Enteropathic arthropathies, left ankle and foot +C2889521|T047|AB|M07.679|ICD10CM|Enteropathic arthropathies, unspecified ankle and foot|Enteropathic arthropathies, unspecified ankle and foot +C2889521|T047|PT|M07.679|ICD10CM|Enteropathic arthropathies, unspecified ankle and foot|Enteropathic arthropathies, unspecified ankle and foot +C2889522|T047|AB|M07.68|ICD10CM|Enteropathic arthropathies, vertebrae|Enteropathic arthropathies, vertebrae +C2889522|T047|PT|M07.68|ICD10CM|Enteropathic arthropathies, vertebrae|Enteropathic arthropathies, vertebrae +C2889523|T047|AB|M07.69|ICD10CM|Enteropathic arthropathies, multiple sites|Enteropathic arthropathies, multiple sites +C2889523|T047|PT|M07.69|ICD10CM|Enteropathic arthropathies, multiple sites|Enteropathic arthropathies, multiple sites +C3495559|T047|HT|M08|ICD10CM|Juvenile arthritis|Juvenile arthritis +C3495559|T047|AB|M08|ICD10CM|Juvenile arthritis|Juvenile arthritis +C3495559|T047|HT|M08|ICD10|Juvenile arthritis|Juvenile arthritis +C3714757|T047|PT|M08.0|ICD10|Juvenile rheumatoid arthritis|Juvenile rheumatoid arthritis +C2889524|T047|ET|M08.0|ICD10CM|Juvenile rheumatoid arthritis with or without rheumatoid factor|Juvenile rheumatoid arthritis with or without rheumatoid factor +C3714757|T047|AB|M08.0|ICD10CM|Unspecified juvenile rheumatoid arthritis|Unspecified juvenile rheumatoid arthritis +C3714757|T047|HT|M08.0|ICD10CM|Unspecified juvenile rheumatoid arthritis|Unspecified juvenile rheumatoid arthritis +C2889525|T047|AB|M08.00|ICD10CM|Unsp juvenile rheumatoid arthritis of unspecified site|Unsp juvenile rheumatoid arthritis of unspecified site +C2889525|T047|PT|M08.00|ICD10CM|Unspecified juvenile rheumatoid arthritis of unspecified site|Unspecified juvenile rheumatoid arthritis of unspecified site +C2889528|T047|AB|M08.01|ICD10CM|Unspecified juvenile rheumatoid arthritis, shoulder|Unspecified juvenile rheumatoid arthritis, shoulder +C2889528|T047|HT|M08.01|ICD10CM|Unspecified juvenile rheumatoid arthritis, shoulder|Unspecified juvenile rheumatoid arthritis, shoulder +C2889526|T047|AB|M08.011|ICD10CM|Unspecified juvenile rheumatoid arthritis, right shoulder|Unspecified juvenile rheumatoid arthritis, right shoulder +C2889526|T047|PT|M08.011|ICD10CM|Unspecified juvenile rheumatoid arthritis, right shoulder|Unspecified juvenile rheumatoid arthritis, right shoulder +C2889527|T047|AB|M08.012|ICD10CM|Unspecified juvenile rheumatoid arthritis, left shoulder|Unspecified juvenile rheumatoid arthritis, left shoulder +C2889527|T047|PT|M08.012|ICD10CM|Unspecified juvenile rheumatoid arthritis, left shoulder|Unspecified juvenile rheumatoid arthritis, left shoulder +C2889528|T047|AB|M08.019|ICD10CM|Unsp juvenile rheumatoid arthritis, unspecified shoulder|Unsp juvenile rheumatoid arthritis, unspecified shoulder +C2889528|T047|PT|M08.019|ICD10CM|Unspecified juvenile rheumatoid arthritis, unspecified shoulder|Unspecified juvenile rheumatoid arthritis, unspecified shoulder +C2889531|T047|AB|M08.02|ICD10CM|Unspecified juvenile rheumatoid arthritis of elbow|Unspecified juvenile rheumatoid arthritis of elbow +C2889531|T047|HT|M08.02|ICD10CM|Unspecified juvenile rheumatoid arthritis of elbow|Unspecified juvenile rheumatoid arthritis of elbow +C2889529|T047|AB|M08.021|ICD10CM|Unspecified juvenile rheumatoid arthritis, right elbow|Unspecified juvenile rheumatoid arthritis, right elbow +C2889529|T047|PT|M08.021|ICD10CM|Unspecified juvenile rheumatoid arthritis, right elbow|Unspecified juvenile rheumatoid arthritis, right elbow +C2889530|T047|AB|M08.022|ICD10CM|Unspecified juvenile rheumatoid arthritis, left elbow|Unspecified juvenile rheumatoid arthritis, left elbow +C2889530|T047|PT|M08.022|ICD10CM|Unspecified juvenile rheumatoid arthritis, left elbow|Unspecified juvenile rheumatoid arthritis, left elbow +C2889531|T047|AB|M08.029|ICD10CM|Unspecified juvenile rheumatoid arthritis, unspecified elbow|Unspecified juvenile rheumatoid arthritis, unspecified elbow +C2889531|T047|PT|M08.029|ICD10CM|Unspecified juvenile rheumatoid arthritis, unspecified elbow|Unspecified juvenile rheumatoid arthritis, unspecified elbow +C2889534|T047|AB|M08.03|ICD10CM|Unspecified juvenile rheumatoid arthritis, wrist|Unspecified juvenile rheumatoid arthritis, wrist +C2889534|T047|HT|M08.03|ICD10CM|Unspecified juvenile rheumatoid arthritis, wrist|Unspecified juvenile rheumatoid arthritis, wrist +C2889532|T047|AB|M08.031|ICD10CM|Unspecified juvenile rheumatoid arthritis, right wrist|Unspecified juvenile rheumatoid arthritis, right wrist +C2889532|T047|PT|M08.031|ICD10CM|Unspecified juvenile rheumatoid arthritis, right wrist|Unspecified juvenile rheumatoid arthritis, right wrist +C2889533|T047|AB|M08.032|ICD10CM|Unspecified juvenile rheumatoid arthritis, left wrist|Unspecified juvenile rheumatoid arthritis, left wrist +C2889533|T047|PT|M08.032|ICD10CM|Unspecified juvenile rheumatoid arthritis, left wrist|Unspecified juvenile rheumatoid arthritis, left wrist +C2889534|T047|AB|M08.039|ICD10CM|Unspecified juvenile rheumatoid arthritis, unspecified wrist|Unspecified juvenile rheumatoid arthritis, unspecified wrist +C2889534|T047|PT|M08.039|ICD10CM|Unspecified juvenile rheumatoid arthritis, unspecified wrist|Unspecified juvenile rheumatoid arthritis, unspecified wrist +C2889537|T047|AB|M08.04|ICD10CM|Unspecified juvenile rheumatoid arthritis, hand|Unspecified juvenile rheumatoid arthritis, hand +C2889537|T047|HT|M08.04|ICD10CM|Unspecified juvenile rheumatoid arthritis, hand|Unspecified juvenile rheumatoid arthritis, hand +C2889535|T047|AB|M08.041|ICD10CM|Unspecified juvenile rheumatoid arthritis, right hand|Unspecified juvenile rheumatoid arthritis, right hand +C2889535|T047|PT|M08.041|ICD10CM|Unspecified juvenile rheumatoid arthritis, right hand|Unspecified juvenile rheumatoid arthritis, right hand +C2889536|T047|AB|M08.042|ICD10CM|Unspecified juvenile rheumatoid arthritis, left hand|Unspecified juvenile rheumatoid arthritis, left hand +C2889536|T047|PT|M08.042|ICD10CM|Unspecified juvenile rheumatoid arthritis, left hand|Unspecified juvenile rheumatoid arthritis, left hand +C2889537|T047|AB|M08.049|ICD10CM|Unspecified juvenile rheumatoid arthritis, unspecified hand|Unspecified juvenile rheumatoid arthritis, unspecified hand +C2889537|T047|PT|M08.049|ICD10CM|Unspecified juvenile rheumatoid arthritis, unspecified hand|Unspecified juvenile rheumatoid arthritis, unspecified hand +C2889538|T047|AB|M08.05|ICD10CM|Unspecified juvenile rheumatoid arthritis, hip|Unspecified juvenile rheumatoid arthritis, hip +C2889538|T047|HT|M08.05|ICD10CM|Unspecified juvenile rheumatoid arthritis, hip|Unspecified juvenile rheumatoid arthritis, hip +C2889539|T047|AB|M08.051|ICD10CM|Unspecified juvenile rheumatoid arthritis, right hip|Unspecified juvenile rheumatoid arthritis, right hip +C2889539|T047|PT|M08.051|ICD10CM|Unspecified juvenile rheumatoid arthritis, right hip|Unspecified juvenile rheumatoid arthritis, right hip +C2889540|T047|AB|M08.052|ICD10CM|Unspecified juvenile rheumatoid arthritis, left hip|Unspecified juvenile rheumatoid arthritis, left hip +C2889540|T047|PT|M08.052|ICD10CM|Unspecified juvenile rheumatoid arthritis, left hip|Unspecified juvenile rheumatoid arthritis, left hip +C2889541|T047|AB|M08.059|ICD10CM|Unspecified juvenile rheumatoid arthritis, unspecified hip|Unspecified juvenile rheumatoid arthritis, unspecified hip +C2889541|T047|PT|M08.059|ICD10CM|Unspecified juvenile rheumatoid arthritis, unspecified hip|Unspecified juvenile rheumatoid arthritis, unspecified hip +C2889544|T047|AB|M08.06|ICD10CM|Unspecified juvenile rheumatoid arthritis, knee|Unspecified juvenile rheumatoid arthritis, knee +C2889544|T047|HT|M08.06|ICD10CM|Unspecified juvenile rheumatoid arthritis, knee|Unspecified juvenile rheumatoid arthritis, knee +C2889542|T047|AB|M08.061|ICD10CM|Unspecified juvenile rheumatoid arthritis, right knee|Unspecified juvenile rheumatoid arthritis, right knee +C2889542|T047|PT|M08.061|ICD10CM|Unspecified juvenile rheumatoid arthritis, right knee|Unspecified juvenile rheumatoid arthritis, right knee +C2889543|T047|AB|M08.062|ICD10CM|Unspecified juvenile rheumatoid arthritis, left knee|Unspecified juvenile rheumatoid arthritis, left knee +C2889543|T047|PT|M08.062|ICD10CM|Unspecified juvenile rheumatoid arthritis, left knee|Unspecified juvenile rheumatoid arthritis, left knee +C2889544|T047|AB|M08.069|ICD10CM|Unspecified juvenile rheumatoid arthritis, unspecified knee|Unspecified juvenile rheumatoid arthritis, unspecified knee +C2889544|T047|PT|M08.069|ICD10CM|Unspecified juvenile rheumatoid arthritis, unspecified knee|Unspecified juvenile rheumatoid arthritis, unspecified knee +C2889545|T047|AB|M08.07|ICD10CM|Unspecified juvenile rheumatoid arthritis, ankle and foot|Unspecified juvenile rheumatoid arthritis, ankle and foot +C2889545|T047|HT|M08.07|ICD10CM|Unspecified juvenile rheumatoid arthritis, ankle and foot|Unspecified juvenile rheumatoid arthritis, ankle and foot +C2889546|T047|AB|M08.071|ICD10CM|Unsp juvenile rheumatoid arthritis, right ankle and foot|Unsp juvenile rheumatoid arthritis, right ankle and foot +C2889546|T047|PT|M08.071|ICD10CM|Unspecified juvenile rheumatoid arthritis, right ankle and foot|Unspecified juvenile rheumatoid arthritis, right ankle and foot +C2889547|T047|AB|M08.072|ICD10CM|Unsp juvenile rheumatoid arthritis, left ankle and foot|Unsp juvenile rheumatoid arthritis, left ankle and foot +C2889547|T047|PT|M08.072|ICD10CM|Unspecified juvenile rheumatoid arthritis, left ankle and foot|Unspecified juvenile rheumatoid arthritis, left ankle and foot +C2889548|T047|AB|M08.079|ICD10CM|Unsp juvenile rheumatoid arthritis, unsp ankle and foot|Unsp juvenile rheumatoid arthritis, unsp ankle and foot +C2889548|T047|PT|M08.079|ICD10CM|Unspecified juvenile rheumatoid arthritis, unspecified ankle and foot|Unspecified juvenile rheumatoid arthritis, unspecified ankle and foot +C2889549|T047|AB|M08.08|ICD10CM|Unspecified juvenile rheumatoid arthritis, vertebrae|Unspecified juvenile rheumatoid arthritis, vertebrae +C2889549|T047|PT|M08.08|ICD10CM|Unspecified juvenile rheumatoid arthritis, vertebrae|Unspecified juvenile rheumatoid arthritis, vertebrae +C2889550|T047|AB|M08.09|ICD10CM|Unspecified juvenile rheumatoid arthritis, multiple sites|Unspecified juvenile rheumatoid arthritis, multiple sites +C2889550|T047|PT|M08.09|ICD10CM|Unspecified juvenile rheumatoid arthritis, multiple sites|Unspecified juvenile rheumatoid arthritis, multiple sites +C0409675|T047|PT|M08.1|ICD10CM|Juvenile ankylosing spondylitis|Juvenile ankylosing spondylitis +C0409675|T047|AB|M08.1|ICD10CM|Juvenile ankylosing spondylitis|Juvenile ankylosing spondylitis +C0409675|T047|PT|M08.1|ICD10|Juvenile ankylosing spondylitis|Juvenile ankylosing spondylitis +C1384600|T047|PT|M08.2|ICD10|Juvenile arthritis with systemic onset|Juvenile arthritis with systemic onset +C1384600|T047|AB|M08.2|ICD10CM|Juvenile rheumatoid arthritis with systemic onset|Juvenile rheumatoid arthritis with systemic onset +C1384600|T047|HT|M08.2|ICD10CM|Juvenile rheumatoid arthritis with systemic onset|Juvenile rheumatoid arthritis with systemic onset +C0087031|T047|ET|M08.2|ICD10CM|Still's disease NOS|Still's disease NOS +C1384600|T047|AB|M08.20|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, unsp site|Juvenile rheumatoid arthritis with systemic onset, unsp site +C1384600|T047|PT|M08.20|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, unspecified site|Juvenile rheumatoid arthritis with systemic onset, unspecified site +C2889553|T047|AB|M08.21|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, shoulder|Juvenile rheumatoid arthritis with systemic onset, shoulder +C2889553|T047|HT|M08.21|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, shoulder|Juvenile rheumatoid arthritis with systemic onset, shoulder +C2889551|T047|AB|M08.211|ICD10CM|Juvenile rheumatoid arthritis w systemic onset, r shoulder|Juvenile rheumatoid arthritis w systemic onset, r shoulder +C2889551|T047|PT|M08.211|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, right shoulder|Juvenile rheumatoid arthritis with systemic onset, right shoulder +C2889552|T047|AB|M08.212|ICD10CM|Juvenile rheumatoid arthritis w systemic onset, l shoulder|Juvenile rheumatoid arthritis w systemic onset, l shoulder +C2889552|T047|PT|M08.212|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, left shoulder|Juvenile rheumatoid arthritis with systemic onset, left shoulder +C2889553|T047|AB|M08.219|ICD10CM|Juvenile rheu arthritis w systemic onset, unsp shoulder|Juvenile rheu arthritis w systemic onset, unsp shoulder +C2889553|T047|PT|M08.219|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, unspecified shoulder|Juvenile rheumatoid arthritis with systemic onset, unspecified shoulder +C2889554|T047|AB|M08.22|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, elbow|Juvenile rheumatoid arthritis with systemic onset, elbow +C2889554|T047|HT|M08.22|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, elbow|Juvenile rheumatoid arthritis with systemic onset, elbow +C2889555|T047|AB|M08.221|ICD10CM|Juvenile rheumatoid arthritis w systemic onset, right elbow|Juvenile rheumatoid arthritis w systemic onset, right elbow +C2889555|T047|PT|M08.221|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, right elbow|Juvenile rheumatoid arthritis with systemic onset, right elbow +C2889556|T047|AB|M08.222|ICD10CM|Juvenile rheumatoid arthritis w systemic onset, left elbow|Juvenile rheumatoid arthritis w systemic onset, left elbow +C2889556|T047|PT|M08.222|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, left elbow|Juvenile rheumatoid arthritis with systemic onset, left elbow +C2889554|T047|AB|M08.229|ICD10CM|Juvenile rheumatoid arthritis w systemic onset, unsp elbow|Juvenile rheumatoid arthritis w systemic onset, unsp elbow +C2889554|T047|PT|M08.229|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, unspecified elbow|Juvenile rheumatoid arthritis with systemic onset, unspecified elbow +C2889559|T047|AB|M08.23|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, wrist|Juvenile rheumatoid arthritis with systemic onset, wrist +C2889559|T047|HT|M08.23|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, wrist|Juvenile rheumatoid arthritis with systemic onset, wrist +C2889557|T047|AB|M08.231|ICD10CM|Juvenile rheumatoid arthritis w systemic onset, right wrist|Juvenile rheumatoid arthritis w systemic onset, right wrist +C2889557|T047|PT|M08.231|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, right wrist|Juvenile rheumatoid arthritis with systemic onset, right wrist +C2889558|T047|AB|M08.232|ICD10CM|Juvenile rheumatoid arthritis w systemic onset, left wrist|Juvenile rheumatoid arthritis w systemic onset, left wrist +C2889558|T047|PT|M08.232|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, left wrist|Juvenile rheumatoid arthritis with systemic onset, left wrist +C2889559|T047|AB|M08.239|ICD10CM|Juvenile rheumatoid arthritis w systemic onset, unsp wrist|Juvenile rheumatoid arthritis w systemic onset, unsp wrist +C2889559|T047|PT|M08.239|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, unspecified wrist|Juvenile rheumatoid arthritis with systemic onset, unspecified wrist +C2889560|T047|AB|M08.24|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, hand|Juvenile rheumatoid arthritis with systemic onset, hand +C2889560|T047|HT|M08.24|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, hand|Juvenile rheumatoid arthritis with systemic onset, hand +C2889561|T047|AB|M08.241|ICD10CM|Juvenile rheumatoid arthritis w systemic onset, right hand|Juvenile rheumatoid arthritis w systemic onset, right hand +C2889561|T047|PT|M08.241|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, right hand|Juvenile rheumatoid arthritis with systemic onset, right hand +C2889562|T047|AB|M08.242|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, left hand|Juvenile rheumatoid arthritis with systemic onset, left hand +C2889562|T047|PT|M08.242|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, left hand|Juvenile rheumatoid arthritis with systemic onset, left hand +C2889560|T047|AB|M08.249|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, unsp hand|Juvenile rheumatoid arthritis with systemic onset, unsp hand +C2889560|T047|PT|M08.249|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, unspecified hand|Juvenile rheumatoid arthritis with systemic onset, unspecified hand +C2889563|T047|AB|M08.25|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, hip|Juvenile rheumatoid arthritis with systemic onset, hip +C2889563|T047|HT|M08.25|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, hip|Juvenile rheumatoid arthritis with systemic onset, hip +C2889564|T047|AB|M08.251|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, right hip|Juvenile rheumatoid arthritis with systemic onset, right hip +C2889564|T047|PT|M08.251|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, right hip|Juvenile rheumatoid arthritis with systemic onset, right hip +C2889565|T047|AB|M08.252|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, left hip|Juvenile rheumatoid arthritis with systemic onset, left hip +C2889565|T047|PT|M08.252|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, left hip|Juvenile rheumatoid arthritis with systemic onset, left hip +C2889563|T047|AB|M08.259|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, unsp hip|Juvenile rheumatoid arthritis with systemic onset, unsp hip +C2889563|T047|PT|M08.259|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, unspecified hip|Juvenile rheumatoid arthritis with systemic onset, unspecified hip +C2889566|T047|AB|M08.26|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, knee|Juvenile rheumatoid arthritis with systemic onset, knee +C2889566|T047|HT|M08.26|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, knee|Juvenile rheumatoid arthritis with systemic onset, knee +C2889567|T047|AB|M08.261|ICD10CM|Juvenile rheumatoid arthritis w systemic onset, right knee|Juvenile rheumatoid arthritis w systemic onset, right knee +C2889567|T047|PT|M08.261|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, right knee|Juvenile rheumatoid arthritis with systemic onset, right knee +C2889568|T047|AB|M08.262|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, left knee|Juvenile rheumatoid arthritis with systemic onset, left knee +C2889568|T047|PT|M08.262|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, left knee|Juvenile rheumatoid arthritis with systemic onset, left knee +C2889566|T047|AB|M08.269|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, unsp knee|Juvenile rheumatoid arthritis with systemic onset, unsp knee +C2889566|T047|PT|M08.269|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, unspecified knee|Juvenile rheumatoid arthritis with systemic onset, unspecified knee +C2889569|T047|AB|M08.27|ICD10CM|Juvenile rheumatoid arthritis w systemic onset, ank/ft|Juvenile rheumatoid arthritis w systemic onset, ank/ft +C2889569|T047|HT|M08.27|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, ankle and foot|Juvenile rheumatoid arthritis with systemic onset, ankle and foot +C2889570|T047|AB|M08.271|ICD10CM|Juvenile rheumatoid arthritis w systemic onset, right ank/ft|Juvenile rheumatoid arthritis w systemic onset, right ank/ft +C2889570|T047|PT|M08.271|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, right ankle and foot|Juvenile rheumatoid arthritis with systemic onset, right ankle and foot +C2889571|T047|AB|M08.272|ICD10CM|Juvenile rheumatoid arthritis w systemic onset, left ank/ft|Juvenile rheumatoid arthritis w systemic onset, left ank/ft +C2889571|T047|PT|M08.272|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, left ankle and foot|Juvenile rheumatoid arthritis with systemic onset, left ankle and foot +C2889569|T047|AB|M08.279|ICD10CM|Juvenile rheumatoid arthritis w systemic onset, unsp ank/ft|Juvenile rheumatoid arthritis w systemic onset, unsp ank/ft +C2889569|T047|PT|M08.279|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, unspecified ankle and foot|Juvenile rheumatoid arthritis with systemic onset, unspecified ankle and foot +C2889572|T047|AB|M08.28|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, vertebrae|Juvenile rheumatoid arthritis with systemic onset, vertebrae +C2889572|T047|PT|M08.28|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, vertebrae|Juvenile rheumatoid arthritis with systemic onset, vertebrae +C2889573|T047|AB|M08.29|ICD10CM|Juvenile rheu arthritis w systemic onset, multiple sites|Juvenile rheu arthritis w systemic onset, multiple sites +C2889573|T047|PT|M08.29|ICD10CM|Juvenile rheumatoid arthritis with systemic onset, multiple sites|Juvenile rheumatoid arthritis with systemic onset, multiple sites +C3890205|T047|PT|M08.3|ICD10|Juvenile polyarthritis (seronegative)|Juvenile polyarthritis (seronegative) +C2889574|T047|AB|M08.3|ICD10CM|Juvenile rheumatoid polyarthritis (seronegative)|Juvenile rheumatoid polyarthritis (seronegative) +C2889574|T047|PT|M08.3|ICD10CM|Juvenile rheumatoid polyarthritis (seronegative)|Juvenile rheumatoid polyarthritis (seronegative) +C0157917|T047|PT|M08.4|ICD10|Pauciarticular juvenile arthritis|Pauciarticular juvenile arthritis +C0157917|T047|HT|M08.4|ICD10CM|Pauciarticular juvenile rheumatoid arthritis|Pauciarticular juvenile rheumatoid arthritis +C0157917|T047|AB|M08.4|ICD10CM|Pauciarticular juvenile rheumatoid arthritis|Pauciarticular juvenile rheumatoid arthritis +C0157917|T047|AB|M08.40|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, unsp site|Pauciarticular juvenile rheumatoid arthritis, unsp site +C0157917|T047|PT|M08.40|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, unspecified site|Pauciarticular juvenile rheumatoid arthritis, unspecified site +C2889577|T047|AB|M08.41|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, shoulder|Pauciarticular juvenile rheumatoid arthritis, shoulder +C2889577|T047|HT|M08.41|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, shoulder|Pauciarticular juvenile rheumatoid arthritis, shoulder +C2889575|T047|AB|M08.411|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, right shoulder|Pauciarticular juvenile rheumatoid arthritis, right shoulder +C2889575|T047|PT|M08.411|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, right shoulder|Pauciarticular juvenile rheumatoid arthritis, right shoulder +C2889576|T047|AB|M08.412|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, left shoulder|Pauciarticular juvenile rheumatoid arthritis, left shoulder +C2889576|T047|PT|M08.412|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, left shoulder|Pauciarticular juvenile rheumatoid arthritis, left shoulder +C2889577|T047|AB|M08.419|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, unsp shoulder|Pauciarticular juvenile rheumatoid arthritis, unsp shoulder +C2889577|T047|PT|M08.419|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, unspecified shoulder|Pauciarticular juvenile rheumatoid arthritis, unspecified shoulder +C2889580|T047|AB|M08.42|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, elbow|Pauciarticular juvenile rheumatoid arthritis, elbow +C2889580|T047|HT|M08.42|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, elbow|Pauciarticular juvenile rheumatoid arthritis, elbow +C2889578|T047|AB|M08.421|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, right elbow|Pauciarticular juvenile rheumatoid arthritis, right elbow +C2889578|T047|PT|M08.421|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, right elbow|Pauciarticular juvenile rheumatoid arthritis, right elbow +C2889579|T047|AB|M08.422|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, left elbow|Pauciarticular juvenile rheumatoid arthritis, left elbow +C2889579|T047|PT|M08.422|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, left elbow|Pauciarticular juvenile rheumatoid arthritis, left elbow +C2889580|T047|AB|M08.429|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, unsp elbow|Pauciarticular juvenile rheumatoid arthritis, unsp elbow +C2889580|T047|PT|M08.429|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, unspecified elbow|Pauciarticular juvenile rheumatoid arthritis, unspecified elbow +C2889583|T047|AB|M08.43|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, wrist|Pauciarticular juvenile rheumatoid arthritis, wrist +C2889583|T047|HT|M08.43|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, wrist|Pauciarticular juvenile rheumatoid arthritis, wrist +C2889581|T047|AB|M08.431|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, right wrist|Pauciarticular juvenile rheumatoid arthritis, right wrist +C2889581|T047|PT|M08.431|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, right wrist|Pauciarticular juvenile rheumatoid arthritis, right wrist +C2889582|T047|AB|M08.432|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, left wrist|Pauciarticular juvenile rheumatoid arthritis, left wrist +C2889582|T047|PT|M08.432|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, left wrist|Pauciarticular juvenile rheumatoid arthritis, left wrist +C2889583|T047|AB|M08.439|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, unsp wrist|Pauciarticular juvenile rheumatoid arthritis, unsp wrist +C2889583|T047|PT|M08.439|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, unspecified wrist|Pauciarticular juvenile rheumatoid arthritis, unspecified wrist +C2889584|T047|AB|M08.44|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, hand|Pauciarticular juvenile rheumatoid arthritis, hand +C2889584|T047|HT|M08.44|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, hand|Pauciarticular juvenile rheumatoid arthritis, hand +C2889585|T047|AB|M08.441|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, right hand|Pauciarticular juvenile rheumatoid arthritis, right hand +C2889585|T047|PT|M08.441|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, right hand|Pauciarticular juvenile rheumatoid arthritis, right hand +C2889586|T047|AB|M08.442|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, left hand|Pauciarticular juvenile rheumatoid arthritis, left hand +C2889586|T047|PT|M08.442|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, left hand|Pauciarticular juvenile rheumatoid arthritis, left hand +C2889587|T047|AB|M08.449|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, unsp hand|Pauciarticular juvenile rheumatoid arthritis, unsp hand +C2889587|T047|PT|M08.449|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, unspecified hand|Pauciarticular juvenile rheumatoid arthritis, unspecified hand +C2889590|T047|AB|M08.45|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, hip|Pauciarticular juvenile rheumatoid arthritis, hip +C2889590|T047|HT|M08.45|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, hip|Pauciarticular juvenile rheumatoid arthritis, hip +C2889588|T047|AB|M08.451|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, right hip|Pauciarticular juvenile rheumatoid arthritis, right hip +C2889588|T047|PT|M08.451|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, right hip|Pauciarticular juvenile rheumatoid arthritis, right hip +C2889589|T047|AB|M08.452|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, left hip|Pauciarticular juvenile rheumatoid arthritis, left hip +C2889589|T047|PT|M08.452|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, left hip|Pauciarticular juvenile rheumatoid arthritis, left hip +C2889590|T047|AB|M08.459|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, unsp hip|Pauciarticular juvenile rheumatoid arthritis, unsp hip +C2889590|T047|PT|M08.459|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, unspecified hip|Pauciarticular juvenile rheumatoid arthritis, unspecified hip +C2889591|T047|AB|M08.46|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, knee|Pauciarticular juvenile rheumatoid arthritis, knee +C2889591|T047|HT|M08.46|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, knee|Pauciarticular juvenile rheumatoid arthritis, knee +C2889592|T047|AB|M08.461|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, right knee|Pauciarticular juvenile rheumatoid arthritis, right knee +C2889592|T047|PT|M08.461|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, right knee|Pauciarticular juvenile rheumatoid arthritis, right knee +C2889593|T047|AB|M08.462|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, left knee|Pauciarticular juvenile rheumatoid arthritis, left knee +C2889593|T047|PT|M08.462|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, left knee|Pauciarticular juvenile rheumatoid arthritis, left knee +C2889594|T047|AB|M08.469|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, unsp knee|Pauciarticular juvenile rheumatoid arthritis, unsp knee +C2889594|T047|PT|M08.469|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, unspecified knee|Pauciarticular juvenile rheumatoid arthritis, unspecified knee +C2889597|T047|AB|M08.47|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, ankle and foot|Pauciarticular juvenile rheumatoid arthritis, ankle and foot +C2889597|T047|HT|M08.47|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, ankle and foot|Pauciarticular juvenile rheumatoid arthritis, ankle and foot +C2889595|T047|AB|M08.471|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, right ank/ft|Pauciarticular juvenile rheumatoid arthritis, right ank/ft +C2889595|T047|PT|M08.471|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, right ankle and foot|Pauciarticular juvenile rheumatoid arthritis, right ankle and foot +C2889596|T047|AB|M08.472|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, left ank/ft|Pauciarticular juvenile rheumatoid arthritis, left ank/ft +C2889596|T047|PT|M08.472|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, left ankle and foot|Pauciarticular juvenile rheumatoid arthritis, left ankle and foot +C2889597|T047|AB|M08.479|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, unsp ank/ft|Pauciarticular juvenile rheumatoid arthritis, unsp ank/ft +C2889597|T047|PT|M08.479|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, unspecified ankle and foot|Pauciarticular juvenile rheumatoid arthritis, unspecified ankle and foot +C2889598|T047|AB|M08.48|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, vertebrae|Pauciarticular juvenile rheumatoid arthritis, vertebrae +C2889598|T047|PT|M08.48|ICD10CM|Pauciarticular juvenile rheumatoid arthritis, vertebrae|Pauciarticular juvenile rheumatoid arthritis, vertebrae +C0477545|T047|PT|M08.8|ICD10|Other juvenile arthritis|Other juvenile arthritis +C0477545|T047|HT|M08.8|ICD10CM|Other juvenile arthritis|Other juvenile arthritis +C0477545|T047|AB|M08.8|ICD10CM|Other juvenile arthritis|Other juvenile arthritis +C0837740|T047|AB|M08.80|ICD10CM|Other juvenile arthritis, unspecified site|Other juvenile arthritis, unspecified site +C0837740|T047|PT|M08.80|ICD10CM|Other juvenile arthritis, unspecified site|Other juvenile arthritis, unspecified site +C2889599|T047|AB|M08.81|ICD10CM|Other juvenile arthritis, shoulder|Other juvenile arthritis, shoulder +C2889599|T047|HT|M08.81|ICD10CM|Other juvenile arthritis, shoulder|Other juvenile arthritis, shoulder +C2889600|T047|AB|M08.811|ICD10CM|Other juvenile arthritis, right shoulder|Other juvenile arthritis, right shoulder +C2889600|T047|PT|M08.811|ICD10CM|Other juvenile arthritis, right shoulder|Other juvenile arthritis, right shoulder +C2889601|T047|AB|M08.812|ICD10CM|Other juvenile arthritis, left shoulder|Other juvenile arthritis, left shoulder +C2889601|T047|PT|M08.812|ICD10CM|Other juvenile arthritis, left shoulder|Other juvenile arthritis, left shoulder +C2889602|T047|AB|M08.819|ICD10CM|Other juvenile arthritis, unspecified shoulder|Other juvenile arthritis, unspecified shoulder +C2889602|T047|PT|M08.819|ICD10CM|Other juvenile arthritis, unspecified shoulder|Other juvenile arthritis, unspecified shoulder +C2889603|T047|AB|M08.82|ICD10CM|Other juvenile arthritis, elbow|Other juvenile arthritis, elbow +C2889603|T047|HT|M08.82|ICD10CM|Other juvenile arthritis, elbow|Other juvenile arthritis, elbow +C2889604|T047|AB|M08.821|ICD10CM|Other juvenile arthritis, right elbow|Other juvenile arthritis, right elbow +C2889604|T047|PT|M08.821|ICD10CM|Other juvenile arthritis, right elbow|Other juvenile arthritis, right elbow +C2889605|T047|AB|M08.822|ICD10CM|Other juvenile arthritis, left elbow|Other juvenile arthritis, left elbow +C2889605|T047|PT|M08.822|ICD10CM|Other juvenile arthritis, left elbow|Other juvenile arthritis, left elbow +C2889606|T047|AB|M08.829|ICD10CM|Other juvenile arthritis, unspecified elbow|Other juvenile arthritis, unspecified elbow +C2889606|T047|PT|M08.829|ICD10CM|Other juvenile arthritis, unspecified elbow|Other juvenile arthritis, unspecified elbow +C2889607|T047|AB|M08.83|ICD10CM|Other juvenile arthritis, wrist|Other juvenile arthritis, wrist +C2889607|T047|HT|M08.83|ICD10CM|Other juvenile arthritis, wrist|Other juvenile arthritis, wrist +C2889608|T047|AB|M08.831|ICD10CM|Other juvenile arthritis, right wrist|Other juvenile arthritis, right wrist +C2889608|T047|PT|M08.831|ICD10CM|Other juvenile arthritis, right wrist|Other juvenile arthritis, right wrist +C2889609|T047|AB|M08.832|ICD10CM|Other juvenile arthritis, left wrist|Other juvenile arthritis, left wrist +C2889609|T047|PT|M08.832|ICD10CM|Other juvenile arthritis, left wrist|Other juvenile arthritis, left wrist +C2889610|T047|AB|M08.839|ICD10CM|Other juvenile arthritis, unspecified wrist|Other juvenile arthritis, unspecified wrist +C2889610|T047|PT|M08.839|ICD10CM|Other juvenile arthritis, unspecified wrist|Other juvenile arthritis, unspecified wrist +C0837735|T047|HT|M08.84|ICD10CM|Other juvenile arthritis, hand|Other juvenile arthritis, hand +C0837735|T047|AB|M08.84|ICD10CM|Other juvenile arthritis, hand|Other juvenile arthritis, hand +C2889611|T047|AB|M08.841|ICD10CM|Other juvenile arthritis, right hand|Other juvenile arthritis, right hand +C2889611|T047|PT|M08.841|ICD10CM|Other juvenile arthritis, right hand|Other juvenile arthritis, right hand +C2889612|T047|AB|M08.842|ICD10CM|Other juvenile arthritis, left hand|Other juvenile arthritis, left hand +C2889612|T047|PT|M08.842|ICD10CM|Other juvenile arthritis, left hand|Other juvenile arthritis, left hand +C2889613|T047|AB|M08.849|ICD10CM|Other juvenile arthritis, unspecified hand|Other juvenile arthritis, unspecified hand +C2889613|T047|PT|M08.849|ICD10CM|Other juvenile arthritis, unspecified hand|Other juvenile arthritis, unspecified hand +C2889614|T047|AB|M08.85|ICD10CM|Other juvenile arthritis, hip|Other juvenile arthritis, hip +C2889614|T047|HT|M08.85|ICD10CM|Other juvenile arthritis, hip|Other juvenile arthritis, hip +C2889615|T047|AB|M08.851|ICD10CM|Other juvenile arthritis, right hip|Other juvenile arthritis, right hip +C2889615|T047|PT|M08.851|ICD10CM|Other juvenile arthritis, right hip|Other juvenile arthritis, right hip +C2889616|T047|AB|M08.852|ICD10CM|Other juvenile arthritis, left hip|Other juvenile arthritis, left hip +C2889616|T047|PT|M08.852|ICD10CM|Other juvenile arthritis, left hip|Other juvenile arthritis, left hip +C2889617|T047|AB|M08.859|ICD10CM|Other juvenile arthritis, unspecified hip|Other juvenile arthritis, unspecified hip +C2889617|T047|PT|M08.859|ICD10CM|Other juvenile arthritis, unspecified hip|Other juvenile arthritis, unspecified hip +C2889618|T047|AB|M08.86|ICD10CM|Other juvenile arthritis, knee|Other juvenile arthritis, knee +C2889618|T047|HT|M08.86|ICD10CM|Other juvenile arthritis, knee|Other juvenile arthritis, knee +C2889619|T047|AB|M08.861|ICD10CM|Other juvenile arthritis, right knee|Other juvenile arthritis, right knee +C2889619|T047|PT|M08.861|ICD10CM|Other juvenile arthritis, right knee|Other juvenile arthritis, right knee +C2889620|T047|AB|M08.862|ICD10CM|Other juvenile arthritis, left knee|Other juvenile arthritis, left knee +C2889620|T047|PT|M08.862|ICD10CM|Other juvenile arthritis, left knee|Other juvenile arthritis, left knee +C2889621|T047|AB|M08.869|ICD10CM|Other juvenile arthritis, unspecified knee|Other juvenile arthritis, unspecified knee +C2889621|T047|PT|M08.869|ICD10CM|Other juvenile arthritis, unspecified knee|Other juvenile arthritis, unspecified knee +C0837738|T047|HT|M08.87|ICD10CM|Other juvenile arthritis, ankle and foot|Other juvenile arthritis, ankle and foot +C0837738|T047|AB|M08.87|ICD10CM|Other juvenile arthritis, ankle and foot|Other juvenile arthritis, ankle and foot +C2889622|T047|AB|M08.871|ICD10CM|Other juvenile arthritis, right ankle and foot|Other juvenile arthritis, right ankle and foot +C2889622|T047|PT|M08.871|ICD10CM|Other juvenile arthritis, right ankle and foot|Other juvenile arthritis, right ankle and foot +C2889623|T047|AB|M08.872|ICD10CM|Other juvenile arthritis, left ankle and foot|Other juvenile arthritis, left ankle and foot +C2889623|T047|PT|M08.872|ICD10CM|Other juvenile arthritis, left ankle and foot|Other juvenile arthritis, left ankle and foot +C2889624|T047|AB|M08.879|ICD10CM|Other juvenile arthritis, unspecified ankle and foot|Other juvenile arthritis, unspecified ankle and foot +C2889624|T047|PT|M08.879|ICD10CM|Other juvenile arthritis, unspecified ankle and foot|Other juvenile arthritis, unspecified ankle and foot +C3696797|T047|AB|M08.88|ICD10CM|Other juvenile arthritis, other specified site|Other juvenile arthritis, other specified site +C3696797|T047|PT|M08.88|ICD10CM|Other juvenile arthritis, other specified site|Other juvenile arthritis, other specified site +C2889625|T047|ET|M08.88|ICD10CM|Other juvenile arthritis, vertebrae|Other juvenile arthritis, vertebrae +C0837731|T047|PT|M08.89|ICD10CM|Other juvenile arthritis, multiple sites|Other juvenile arthritis, multiple sites +C0837731|T047|AB|M08.89|ICD10CM|Other juvenile arthritis, multiple sites|Other juvenile arthritis, multiple sites +C3495559|T047|PT|M08.9|ICD10|Juvenile arthritis, unspecified|Juvenile arthritis, unspecified +C3495559|T047|HT|M08.9|ICD10CM|Juvenile arthritis, unspecified|Juvenile arthritis, unspecified +C3495559|T047|AB|M08.9|ICD10CM|Juvenile arthritis, unspecified|Juvenile arthritis, unspecified +C0837750|T047|AB|M08.90|ICD10CM|Juvenile arthritis, unspecified, unspecified site|Juvenile arthritis, unspecified, unspecified site +C0837750|T047|PT|M08.90|ICD10CM|Juvenile arthritis, unspecified, unspecified site|Juvenile arthritis, unspecified, unspecified site +C2889626|T047|AB|M08.91|ICD10CM|Juvenile arthritis, unspecified, shoulder|Juvenile arthritis, unspecified, shoulder +C2889626|T047|HT|M08.91|ICD10CM|Juvenile arthritis, unspecified, shoulder|Juvenile arthritis, unspecified, shoulder +C2889627|T047|AB|M08.911|ICD10CM|Juvenile arthritis, unspecified, right shoulder|Juvenile arthritis, unspecified, right shoulder +C2889627|T047|PT|M08.911|ICD10CM|Juvenile arthritis, unspecified, right shoulder|Juvenile arthritis, unspecified, right shoulder +C2889628|T047|AB|M08.912|ICD10CM|Juvenile arthritis, unspecified, left shoulder|Juvenile arthritis, unspecified, left shoulder +C2889628|T047|PT|M08.912|ICD10CM|Juvenile arthritis, unspecified, left shoulder|Juvenile arthritis, unspecified, left shoulder +C2889629|T047|AB|M08.919|ICD10CM|Juvenile arthritis, unspecified, unspecified shoulder|Juvenile arthritis, unspecified, unspecified shoulder +C2889629|T047|PT|M08.919|ICD10CM|Juvenile arthritis, unspecified, unspecified shoulder|Juvenile arthritis, unspecified, unspecified shoulder +C2889630|T047|AB|M08.92|ICD10CM|Juvenile arthritis, unspecified, elbow|Juvenile arthritis, unspecified, elbow +C2889630|T047|HT|M08.92|ICD10CM|Juvenile arthritis, unspecified, elbow|Juvenile arthritis, unspecified, elbow +C2889631|T047|AB|M08.921|ICD10CM|Juvenile arthritis, unspecified, right elbow|Juvenile arthritis, unspecified, right elbow +C2889631|T047|PT|M08.921|ICD10CM|Juvenile arthritis, unspecified, right elbow|Juvenile arthritis, unspecified, right elbow +C2889632|T047|AB|M08.922|ICD10CM|Juvenile arthritis, unspecified, left elbow|Juvenile arthritis, unspecified, left elbow +C2889632|T047|PT|M08.922|ICD10CM|Juvenile arthritis, unspecified, left elbow|Juvenile arthritis, unspecified, left elbow +C2889633|T047|AB|M08.929|ICD10CM|Juvenile arthritis, unspecified, unspecified elbow|Juvenile arthritis, unspecified, unspecified elbow +C2889633|T047|PT|M08.929|ICD10CM|Juvenile arthritis, unspecified, unspecified elbow|Juvenile arthritis, unspecified, unspecified elbow +C2889634|T047|AB|M08.93|ICD10CM|Juvenile arthritis, unspecified, wrist|Juvenile arthritis, unspecified, wrist +C2889634|T047|HT|M08.93|ICD10CM|Juvenile arthritis, unspecified, wrist|Juvenile arthritis, unspecified, wrist +C2889635|T047|AB|M08.931|ICD10CM|Juvenile arthritis, unspecified, right wrist|Juvenile arthritis, unspecified, right wrist +C2889635|T047|PT|M08.931|ICD10CM|Juvenile arthritis, unspecified, right wrist|Juvenile arthritis, unspecified, right wrist +C2889636|T047|AB|M08.932|ICD10CM|Juvenile arthritis, unspecified, left wrist|Juvenile arthritis, unspecified, left wrist +C2889636|T047|PT|M08.932|ICD10CM|Juvenile arthritis, unspecified, left wrist|Juvenile arthritis, unspecified, left wrist +C2889637|T047|AB|M08.939|ICD10CM|Juvenile arthritis, unspecified, unspecified wrist|Juvenile arthritis, unspecified, unspecified wrist +C2889637|T047|PT|M08.939|ICD10CM|Juvenile arthritis, unspecified, unspecified wrist|Juvenile arthritis, unspecified, unspecified wrist +C0837745|T047|HT|M08.94|ICD10CM|Juvenile arthritis, unspecified, hand|Juvenile arthritis, unspecified, hand +C0837745|T047|AB|M08.94|ICD10CM|Juvenile arthritis, unspecified, hand|Juvenile arthritis, unspecified, hand +C2889638|T047|AB|M08.941|ICD10CM|Juvenile arthritis, unspecified, right hand|Juvenile arthritis, unspecified, right hand +C2889638|T047|PT|M08.941|ICD10CM|Juvenile arthritis, unspecified, right hand|Juvenile arthritis, unspecified, right hand +C2889639|T047|AB|M08.942|ICD10CM|Juvenile arthritis, unspecified, left hand|Juvenile arthritis, unspecified, left hand +C2889639|T047|PT|M08.942|ICD10CM|Juvenile arthritis, unspecified, left hand|Juvenile arthritis, unspecified, left hand +C2889640|T047|AB|M08.949|ICD10CM|Juvenile arthritis, unspecified, unspecified hand|Juvenile arthritis, unspecified, unspecified hand +C2889640|T047|PT|M08.949|ICD10CM|Juvenile arthritis, unspecified, unspecified hand|Juvenile arthritis, unspecified, unspecified hand +C2889641|T047|AB|M08.95|ICD10CM|Juvenile arthritis, unspecified, hip|Juvenile arthritis, unspecified, hip +C2889641|T047|HT|M08.95|ICD10CM|Juvenile arthritis, unspecified, hip|Juvenile arthritis, unspecified, hip +C2889642|T047|AB|M08.951|ICD10CM|Juvenile arthritis, unspecified, right hip|Juvenile arthritis, unspecified, right hip +C2889642|T047|PT|M08.951|ICD10CM|Juvenile arthritis, unspecified, right hip|Juvenile arthritis, unspecified, right hip +C2889643|T047|AB|M08.952|ICD10CM|Juvenile arthritis, unspecified, left hip|Juvenile arthritis, unspecified, left hip +C2889643|T047|PT|M08.952|ICD10CM|Juvenile arthritis, unspecified, left hip|Juvenile arthritis, unspecified, left hip +C2889644|T047|AB|M08.959|ICD10CM|Juvenile arthritis, unspecified, unspecified hip|Juvenile arthritis, unspecified, unspecified hip +C2889644|T047|PT|M08.959|ICD10CM|Juvenile arthritis, unspecified, unspecified hip|Juvenile arthritis, unspecified, unspecified hip +C2889645|T047|AB|M08.96|ICD10CM|Juvenile arthritis, unspecified, knee|Juvenile arthritis, unspecified, knee +C2889645|T047|HT|M08.96|ICD10CM|Juvenile arthritis, unspecified, knee|Juvenile arthritis, unspecified, knee +C2889646|T047|AB|M08.961|ICD10CM|Juvenile arthritis, unspecified, right knee|Juvenile arthritis, unspecified, right knee +C2889646|T047|PT|M08.961|ICD10CM|Juvenile arthritis, unspecified, right knee|Juvenile arthritis, unspecified, right knee +C2889647|T047|AB|M08.962|ICD10CM|Juvenile arthritis, unspecified, left knee|Juvenile arthritis, unspecified, left knee +C2889647|T047|PT|M08.962|ICD10CM|Juvenile arthritis, unspecified, left knee|Juvenile arthritis, unspecified, left knee +C2889648|T047|AB|M08.969|ICD10CM|Juvenile arthritis, unspecified, unspecified knee|Juvenile arthritis, unspecified, unspecified knee +C2889648|T047|PT|M08.969|ICD10CM|Juvenile arthritis, unspecified, unspecified knee|Juvenile arthritis, unspecified, unspecified knee +C0837748|T047|HT|M08.97|ICD10CM|Juvenile arthritis, unspecified, ankle and foot|Juvenile arthritis, unspecified, ankle and foot +C0837748|T047|AB|M08.97|ICD10CM|Juvenile arthritis, unspecified, ankle and foot|Juvenile arthritis, unspecified, ankle and foot +C2889649|T047|AB|M08.971|ICD10CM|Juvenile arthritis, unspecified, right ankle and foot|Juvenile arthritis, unspecified, right ankle and foot +C2889649|T047|PT|M08.971|ICD10CM|Juvenile arthritis, unspecified, right ankle and foot|Juvenile arthritis, unspecified, right ankle and foot +C2889650|T047|AB|M08.972|ICD10CM|Juvenile arthritis, unspecified, left ankle and foot|Juvenile arthritis, unspecified, left ankle and foot +C2889650|T047|PT|M08.972|ICD10CM|Juvenile arthritis, unspecified, left ankle and foot|Juvenile arthritis, unspecified, left ankle and foot +C2889651|T047|AB|M08.979|ICD10CM|Juvenile arthritis, unspecified, unspecified ankle and foot|Juvenile arthritis, unspecified, unspecified ankle and foot +C2889651|T047|PT|M08.979|ICD10CM|Juvenile arthritis, unspecified, unspecified ankle and foot|Juvenile arthritis, unspecified, unspecified ankle and foot +C2889652|T047|AB|M08.98|ICD10CM|Juvenile arthritis, unspecified, vertebrae|Juvenile arthritis, unspecified, vertebrae +C2889652|T047|PT|M08.98|ICD10CM|Juvenile arthritis, unspecified, vertebrae|Juvenile arthritis, unspecified, vertebrae +C0837741|T047|PT|M08.99|ICD10CM|Juvenile arthritis, unspecified, multiple sites|Juvenile arthritis, unspecified, multiple sites +C0837741|T047|AB|M08.99|ICD10CM|Juvenile arthritis, unspecified, multiple sites|Juvenile arthritis, unspecified, multiple sites +C0694516|T047|HT|M09|ICD10|Juvenile arthritis in diseases classified elsewhere|Juvenile arthritis in diseases classified elsewhere +C0409673|T047|PT|M09.0|ICD10|Juvenile arthritis in psoriasis|Juvenile arthritis in psoriasis +C0451836|T047|PT|M09.1|ICD10|Juvenile arthritis in Crohn's disease [regional enteritis]|Juvenile arthritis in Crohn's disease [regional enteritis] +C0451837|T047|PT|M09.2|ICD10|Juvenile arthritis in ulcerative colitis|Juvenile arthritis in ulcerative colitis +C0477546|T047|PT|M09.8|ICD10|Juvenile arthritis in other diseases classified elsewhere|Juvenile arthritis in other diseases classified elsewhere +C0149896|T047|ET|M10|ICD10CM|Acute gout|Acute gout +C0018099|T047|HT|M10|ICD10CM|Gout|Gout +C0018099|T047|AB|M10|ICD10CM|Gout|Gout +C0018099|T047|HT|M10|ICD10|Gout|Gout +C2712871|T047|ET|M10|ICD10CM|Gout attack|Gout attack +C1619733|T047|ET|M10|ICD10CM|Gout flare|Gout flare +C0221168|T047|ET|M10|ICD10CM|Podagra|Podagra +C0409913|T047|ET|M10.0|ICD10CM|Gouty bursitis|Gouty bursitis +C0149896|T047|PT|M10.0|ICD10|Idiopathic gout|Idiopathic gout +C0149896|T047|HT|M10.0|ICD10CM|Idiopathic gout|Idiopathic gout +C0149896|T047|AB|M10.0|ICD10CM|Idiopathic gout|Idiopathic gout +C0149896|T047|ET|M10.0|ICD10CM|Primary gout|Primary gout +C0837800|T047|AB|M10.00|ICD10CM|Idiopathic gout, unspecified site|Idiopathic gout, unspecified site +C0837800|T047|PT|M10.00|ICD10CM|Idiopathic gout, unspecified site|Idiopathic gout, unspecified site +C2889653|T047|AB|M10.01|ICD10CM|Idiopathic gout, shoulder|Idiopathic gout, shoulder +C2889653|T047|HT|M10.01|ICD10CM|Idiopathic gout, shoulder|Idiopathic gout, shoulder +C2889654|T047|AB|M10.011|ICD10CM|Idiopathic gout, right shoulder|Idiopathic gout, right shoulder +C2889654|T047|PT|M10.011|ICD10CM|Idiopathic gout, right shoulder|Idiopathic gout, right shoulder +C2889655|T047|AB|M10.012|ICD10CM|Idiopathic gout, left shoulder|Idiopathic gout, left shoulder +C2889655|T047|PT|M10.012|ICD10CM|Idiopathic gout, left shoulder|Idiopathic gout, left shoulder +C2889656|T047|AB|M10.019|ICD10CM|Idiopathic gout, unspecified shoulder|Idiopathic gout, unspecified shoulder +C2889656|T047|PT|M10.019|ICD10CM|Idiopathic gout, unspecified shoulder|Idiopathic gout, unspecified shoulder +C2889657|T047|AB|M10.02|ICD10CM|Idiopathic gout, elbow|Idiopathic gout, elbow +C2889657|T047|HT|M10.02|ICD10CM|Idiopathic gout, elbow|Idiopathic gout, elbow +C2889658|T047|AB|M10.021|ICD10CM|Idiopathic gout, right elbow|Idiopathic gout, right elbow +C2889658|T047|PT|M10.021|ICD10CM|Idiopathic gout, right elbow|Idiopathic gout, right elbow +C2889659|T047|AB|M10.022|ICD10CM|Idiopathic gout, left elbow|Idiopathic gout, left elbow +C2889659|T047|PT|M10.022|ICD10CM|Idiopathic gout, left elbow|Idiopathic gout, left elbow +C2889660|T047|AB|M10.029|ICD10CM|Idiopathic gout, unspecified elbow|Idiopathic gout, unspecified elbow +C2889660|T047|PT|M10.029|ICD10CM|Idiopathic gout, unspecified elbow|Idiopathic gout, unspecified elbow +C2889663|T047|AB|M10.03|ICD10CM|Idiopathic gout, wrist|Idiopathic gout, wrist +C2889663|T047|HT|M10.03|ICD10CM|Idiopathic gout, wrist|Idiopathic gout, wrist +C2889661|T047|AB|M10.031|ICD10CM|Idiopathic gout, right wrist|Idiopathic gout, right wrist +C2889661|T047|PT|M10.031|ICD10CM|Idiopathic gout, right wrist|Idiopathic gout, right wrist +C2889662|T047|AB|M10.032|ICD10CM|Idiopathic gout, left wrist|Idiopathic gout, left wrist +C2889662|T047|PT|M10.032|ICD10CM|Idiopathic gout, left wrist|Idiopathic gout, left wrist +C2889663|T047|AB|M10.039|ICD10CM|Idiopathic gout, unspecified wrist|Idiopathic gout, unspecified wrist +C2889663|T047|PT|M10.039|ICD10CM|Idiopathic gout, unspecified wrist|Idiopathic gout, unspecified wrist +C0837795|T047|HT|M10.04|ICD10CM|Idiopathic gout, hand|Idiopathic gout, hand +C0837795|T047|AB|M10.04|ICD10CM|Idiopathic gout, hand|Idiopathic gout, hand +C2889664|T047|AB|M10.041|ICD10CM|Idiopathic gout, right hand|Idiopathic gout, right hand +C2889664|T047|PT|M10.041|ICD10CM|Idiopathic gout, right hand|Idiopathic gout, right hand +C2889665|T047|AB|M10.042|ICD10CM|Idiopathic gout, left hand|Idiopathic gout, left hand +C2889665|T047|PT|M10.042|ICD10CM|Idiopathic gout, left hand|Idiopathic gout, left hand +C2889666|T047|AB|M10.049|ICD10CM|Idiopathic gout, unspecified hand|Idiopathic gout, unspecified hand +C2889666|T047|PT|M10.049|ICD10CM|Idiopathic gout, unspecified hand|Idiopathic gout, unspecified hand +C2889667|T047|AB|M10.05|ICD10CM|Idiopathic gout, hip|Idiopathic gout, hip +C2889667|T047|HT|M10.05|ICD10CM|Idiopathic gout, hip|Idiopathic gout, hip +C2889668|T047|AB|M10.051|ICD10CM|Idiopathic gout, right hip|Idiopathic gout, right hip +C2889668|T047|PT|M10.051|ICD10CM|Idiopathic gout, right hip|Idiopathic gout, right hip +C2889669|T047|AB|M10.052|ICD10CM|Idiopathic gout, left hip|Idiopathic gout, left hip +C2889669|T047|PT|M10.052|ICD10CM|Idiopathic gout, left hip|Idiopathic gout, left hip +C2889670|T047|AB|M10.059|ICD10CM|Idiopathic gout, unspecified hip|Idiopathic gout, unspecified hip +C2889670|T047|PT|M10.059|ICD10CM|Idiopathic gout, unspecified hip|Idiopathic gout, unspecified hip +C2889671|T047|AB|M10.06|ICD10CM|Idiopathic gout, knee|Idiopathic gout, knee +C2889671|T047|HT|M10.06|ICD10CM|Idiopathic gout, knee|Idiopathic gout, knee +C2889672|T047|AB|M10.061|ICD10CM|Idiopathic gout, right knee|Idiopathic gout, right knee +C2889672|T047|PT|M10.061|ICD10CM|Idiopathic gout, right knee|Idiopathic gout, right knee +C2889673|T047|AB|M10.062|ICD10CM|Idiopathic gout, left knee|Idiopathic gout, left knee +C2889673|T047|PT|M10.062|ICD10CM|Idiopathic gout, left knee|Idiopathic gout, left knee +C2889674|T047|AB|M10.069|ICD10CM|Idiopathic gout, unspecified knee|Idiopathic gout, unspecified knee +C2889674|T047|PT|M10.069|ICD10CM|Idiopathic gout, unspecified knee|Idiopathic gout, unspecified knee +C0837798|T047|HT|M10.07|ICD10CM|Idiopathic gout, ankle and foot|Idiopathic gout, ankle and foot +C0837798|T047|AB|M10.07|ICD10CM|Idiopathic gout, ankle and foot|Idiopathic gout, ankle and foot +C2889675|T047|AB|M10.071|ICD10CM|Idiopathic gout, right ankle and foot|Idiopathic gout, right ankle and foot +C2889675|T047|PT|M10.071|ICD10CM|Idiopathic gout, right ankle and foot|Idiopathic gout, right ankle and foot +C2889676|T047|AB|M10.072|ICD10CM|Idiopathic gout, left ankle and foot|Idiopathic gout, left ankle and foot +C2889676|T047|PT|M10.072|ICD10CM|Idiopathic gout, left ankle and foot|Idiopathic gout, left ankle and foot +C2889677|T047|AB|M10.079|ICD10CM|Idiopathic gout, unspecified ankle and foot|Idiopathic gout, unspecified ankle and foot +C2889677|T047|PT|M10.079|ICD10CM|Idiopathic gout, unspecified ankle and foot|Idiopathic gout, unspecified ankle and foot +C2889678|T047|AB|M10.08|ICD10CM|Idiopathic gout, vertebrae|Idiopathic gout, vertebrae +C2889678|T047|PT|M10.08|ICD10CM|Idiopathic gout, vertebrae|Idiopathic gout, vertebrae +C0837791|T047|PT|M10.09|ICD10CM|Idiopathic gout, multiple sites|Idiopathic gout, multiple sites +C0837791|T047|AB|M10.09|ICD10CM|Idiopathic gout, multiple sites|Idiopathic gout, multiple sites +C0409911|T047|HT|M10.1|ICD10CM|Lead-induced gout|Lead-induced gout +C0409911|T047|AB|M10.1|ICD10CM|Lead-induced gout|Lead-induced gout +C0409911|T047|PT|M10.1|ICD10|Lead-induced gout|Lead-induced gout +C0837810|T047|AB|M10.10|ICD10CM|Lead-induced gout, unspecified site|Lead-induced gout, unspecified site +C0837810|T047|PT|M10.10|ICD10CM|Lead-induced gout, unspecified site|Lead-induced gout, unspecified site +C3468737|T047|AB|M10.11|ICD10CM|Lead-induced gout, shoulder|Lead-induced gout, shoulder +C3468737|T047|HT|M10.11|ICD10CM|Lead-induced gout, shoulder|Lead-induced gout, shoulder +C2889680|T047|AB|M10.111|ICD10CM|Lead-induced gout, right shoulder|Lead-induced gout, right shoulder +C2889680|T047|PT|M10.111|ICD10CM|Lead-induced gout, right shoulder|Lead-induced gout, right shoulder +C2889681|T047|AB|M10.112|ICD10CM|Lead-induced gout, left shoulder|Lead-induced gout, left shoulder +C2889681|T047|PT|M10.112|ICD10CM|Lead-induced gout, left shoulder|Lead-induced gout, left shoulder +C2889682|T047|AB|M10.119|ICD10CM|Lead-induced gout, unspecified shoulder|Lead-induced gout, unspecified shoulder +C2889682|T047|PT|M10.119|ICD10CM|Lead-induced gout, unspecified shoulder|Lead-induced gout, unspecified shoulder +C3468732|T047|AB|M10.12|ICD10CM|Lead-induced gout, elbow|Lead-induced gout, elbow +C3468732|T047|HT|M10.12|ICD10CM|Lead-induced gout, elbow|Lead-induced gout, elbow +C2893422|T047|AB|M10.121|ICD10CM|Lead-induced gout, right elbow|Lead-induced gout, right elbow +C2893422|T047|PT|M10.121|ICD10CM|Lead-induced gout, right elbow|Lead-induced gout, right elbow +C2893423|T047|AB|M10.122|ICD10CM|Lead-induced gout, left elbow|Lead-induced gout, left elbow +C2893423|T047|PT|M10.122|ICD10CM|Lead-induced gout, left elbow|Lead-induced gout, left elbow +C2893424|T047|AB|M10.129|ICD10CM|Lead-induced gout, unspecified elbow|Lead-induced gout, unspecified elbow +C2893424|T047|PT|M10.129|ICD10CM|Lead-induced gout, unspecified elbow|Lead-induced gout, unspecified elbow +C3468739|T047|AB|M10.13|ICD10CM|Lead-induced gout, wrist|Lead-induced gout, wrist +C3468739|T047|HT|M10.13|ICD10CM|Lead-induced gout, wrist|Lead-induced gout, wrist +C2893426|T047|AB|M10.131|ICD10CM|Lead-induced gout, right wrist|Lead-induced gout, right wrist +C2893426|T047|PT|M10.131|ICD10CM|Lead-induced gout, right wrist|Lead-induced gout, right wrist +C2893427|T047|AB|M10.132|ICD10CM|Lead-induced gout, left wrist|Lead-induced gout, left wrist +C2893427|T047|PT|M10.132|ICD10CM|Lead-induced gout, left wrist|Lead-induced gout, left wrist +C2893428|T047|AB|M10.139|ICD10CM|Lead-induced gout, unspecified wrist|Lead-induced gout, unspecified wrist +C2893428|T047|PT|M10.139|ICD10CM|Lead-induced gout, unspecified wrist|Lead-induced gout, unspecified wrist +C0837805|T047|HT|M10.14|ICD10CM|Lead-induced gout, hand|Lead-induced gout, hand +C0837805|T047|AB|M10.14|ICD10CM|Lead-induced gout, hand|Lead-induced gout, hand +C2893429|T047|AB|M10.141|ICD10CM|Lead-induced gout, right hand|Lead-induced gout, right hand +C2893429|T047|PT|M10.141|ICD10CM|Lead-induced gout, right hand|Lead-induced gout, right hand +C2893430|T047|AB|M10.142|ICD10CM|Lead-induced gout, left hand|Lead-induced gout, left hand +C2893430|T047|PT|M10.142|ICD10CM|Lead-induced gout, left hand|Lead-induced gout, left hand +C2893431|T047|AB|M10.149|ICD10CM|Lead-induced gout, unspecified hand|Lead-induced gout, unspecified hand +C2893431|T047|PT|M10.149|ICD10CM|Lead-induced gout, unspecified hand|Lead-induced gout, unspecified hand +C3468734|T047|AB|M10.15|ICD10CM|Lead-induced gout, hip|Lead-induced gout, hip +C3468734|T047|HT|M10.15|ICD10CM|Lead-induced gout, hip|Lead-induced gout, hip +C2893433|T047|AB|M10.151|ICD10CM|Lead-induced gout, right hip|Lead-induced gout, right hip +C2893433|T047|PT|M10.151|ICD10CM|Lead-induced gout, right hip|Lead-induced gout, right hip +C2893434|T047|AB|M10.152|ICD10CM|Lead-induced gout, left hip|Lead-induced gout, left hip +C2893434|T047|PT|M10.152|ICD10CM|Lead-induced gout, left hip|Lead-induced gout, left hip +C2893435|T047|AB|M10.159|ICD10CM|Lead-induced gout, unspecified hip|Lead-induced gout, unspecified hip +C2893435|T047|PT|M10.159|ICD10CM|Lead-induced gout, unspecified hip|Lead-induced gout, unspecified hip +C3468735|T047|AB|M10.16|ICD10CM|Lead-induced gout, knee|Lead-induced gout, knee +C3468735|T047|HT|M10.16|ICD10CM|Lead-induced gout, knee|Lead-induced gout, knee +C2893437|T047|AB|M10.161|ICD10CM|Lead-induced gout, right knee|Lead-induced gout, right knee +C2893437|T047|PT|M10.161|ICD10CM|Lead-induced gout, right knee|Lead-induced gout, right knee +C2893438|T047|AB|M10.162|ICD10CM|Lead-induced gout, left knee|Lead-induced gout, left knee +C2893438|T047|PT|M10.162|ICD10CM|Lead-induced gout, left knee|Lead-induced gout, left knee +C2893439|T047|AB|M10.169|ICD10CM|Lead-induced gout, unspecified knee|Lead-induced gout, unspecified knee +C2893439|T047|PT|M10.169|ICD10CM|Lead-induced gout, unspecified knee|Lead-induced gout, unspecified knee +C0837808|T047|HT|M10.17|ICD10CM|Lead-induced gout, ankle and foot|Lead-induced gout, ankle and foot +C0837808|T047|AB|M10.17|ICD10CM|Lead-induced gout, ankle and foot|Lead-induced gout, ankle and foot +C2893440|T047|AB|M10.171|ICD10CM|Lead-induced gout, right ankle and foot|Lead-induced gout, right ankle and foot +C2893440|T047|PT|M10.171|ICD10CM|Lead-induced gout, right ankle and foot|Lead-induced gout, right ankle and foot +C2893441|T047|AB|M10.172|ICD10CM|Lead-induced gout, left ankle and foot|Lead-induced gout, left ankle and foot +C2893441|T047|PT|M10.172|ICD10CM|Lead-induced gout, left ankle and foot|Lead-induced gout, left ankle and foot +C2893442|T047|AB|M10.179|ICD10CM|Lead-induced gout, unspecified ankle and foot|Lead-induced gout, unspecified ankle and foot +C2893442|T047|PT|M10.179|ICD10CM|Lead-induced gout, unspecified ankle and foot|Lead-induced gout, unspecified ankle and foot +C3468738|T047|AB|M10.18|ICD10CM|Lead-induced gout, vertebrae|Lead-induced gout, vertebrae +C3468738|T047|PT|M10.18|ICD10CM|Lead-induced gout, vertebrae|Lead-induced gout, vertebrae +C0837801|T047|PT|M10.19|ICD10CM|Lead-induced gout, multiple sites|Lead-induced gout, multiple sites +C0837801|T047|AB|M10.19|ICD10CM|Lead-induced gout, multiple sites|Lead-induced gout, multiple sites +C0409910|T047|PT|M10.2|ICD10|Drug-induced gout|Drug-induced gout +C0409910|T047|HT|M10.2|ICD10CM|Drug-induced gout|Drug-induced gout +C0409910|T047|AB|M10.2|ICD10CM|Drug-induced gout|Drug-induced gout +C0409910|T047|AB|M10.20|ICD10CM|Drug-induced gout, unspecified site|Drug-induced gout, unspecified site +C0409910|T047|PT|M10.20|ICD10CM|Drug-induced gout, unspecified site|Drug-induced gout, unspecified site +C2893444|T047|AB|M10.21|ICD10CM|Drug-induced gout, shoulder|Drug-induced gout, shoulder +C2893444|T047|HT|M10.21|ICD10CM|Drug-induced gout, shoulder|Drug-induced gout, shoulder +C2893445|T047|AB|M10.211|ICD10CM|Drug-induced gout, right shoulder|Drug-induced gout, right shoulder +C2893445|T047|PT|M10.211|ICD10CM|Drug-induced gout, right shoulder|Drug-induced gout, right shoulder +C2893446|T047|AB|M10.212|ICD10CM|Drug-induced gout, left shoulder|Drug-induced gout, left shoulder +C2893446|T047|PT|M10.212|ICD10CM|Drug-induced gout, left shoulder|Drug-induced gout, left shoulder +C2893447|T047|AB|M10.219|ICD10CM|Drug-induced gout, unspecified shoulder|Drug-induced gout, unspecified shoulder +C2893447|T047|PT|M10.219|ICD10CM|Drug-induced gout, unspecified shoulder|Drug-induced gout, unspecified shoulder +C2893448|T047|AB|M10.22|ICD10CM|Drug-induced gout, elbow|Drug-induced gout, elbow +C2893448|T047|HT|M10.22|ICD10CM|Drug-induced gout, elbow|Drug-induced gout, elbow +C2893449|T047|AB|M10.221|ICD10CM|Drug-induced gout, right elbow|Drug-induced gout, right elbow +C2893449|T047|PT|M10.221|ICD10CM|Drug-induced gout, right elbow|Drug-induced gout, right elbow +C2893450|T047|AB|M10.222|ICD10CM|Drug-induced gout, left elbow|Drug-induced gout, left elbow +C2893450|T047|PT|M10.222|ICD10CM|Drug-induced gout, left elbow|Drug-induced gout, left elbow +C2893448|T047|AB|M10.229|ICD10CM|Drug-induced gout, unspecified elbow|Drug-induced gout, unspecified elbow +C2893448|T047|PT|M10.229|ICD10CM|Drug-induced gout, unspecified elbow|Drug-induced gout, unspecified elbow +C2893451|T047|AB|M10.23|ICD10CM|Drug-induced gout, wrist|Drug-induced gout, wrist +C2893451|T047|HT|M10.23|ICD10CM|Drug-induced gout, wrist|Drug-induced gout, wrist +C2893452|T047|AB|M10.231|ICD10CM|Drug-induced gout, right wrist|Drug-induced gout, right wrist +C2893452|T047|PT|M10.231|ICD10CM|Drug-induced gout, right wrist|Drug-induced gout, right wrist +C2893453|T047|AB|M10.232|ICD10CM|Drug-induced gout, left wrist|Drug-induced gout, left wrist +C2893453|T047|PT|M10.232|ICD10CM|Drug-induced gout, left wrist|Drug-induced gout, left wrist +C2893454|T047|AB|M10.239|ICD10CM|Drug-induced gout, unspecified wrist|Drug-induced gout, unspecified wrist +C2893454|T047|PT|M10.239|ICD10CM|Drug-induced gout, unspecified wrist|Drug-induced gout, unspecified wrist +C0837815|T047|HT|M10.24|ICD10CM|Drug-induced gout, hand|Drug-induced gout, hand +C0837815|T047|AB|M10.24|ICD10CM|Drug-induced gout, hand|Drug-induced gout, hand +C2893455|T047|AB|M10.241|ICD10CM|Drug-induced gout, right hand|Drug-induced gout, right hand +C2893455|T047|PT|M10.241|ICD10CM|Drug-induced gout, right hand|Drug-induced gout, right hand +C2893456|T047|AB|M10.242|ICD10CM|Drug-induced gout, left hand|Drug-induced gout, left hand +C2893456|T047|PT|M10.242|ICD10CM|Drug-induced gout, left hand|Drug-induced gout, left hand +C2893457|T047|AB|M10.249|ICD10CM|Drug-induced gout, unspecified hand|Drug-induced gout, unspecified hand +C2893457|T047|PT|M10.249|ICD10CM|Drug-induced gout, unspecified hand|Drug-induced gout, unspecified hand +C2893458|T047|AB|M10.25|ICD10CM|Drug-induced gout, hip|Drug-induced gout, hip +C2893458|T047|HT|M10.25|ICD10CM|Drug-induced gout, hip|Drug-induced gout, hip +C2893459|T047|AB|M10.251|ICD10CM|Drug-induced gout, right hip|Drug-induced gout, right hip +C2893459|T047|PT|M10.251|ICD10CM|Drug-induced gout, right hip|Drug-induced gout, right hip +C2893460|T047|AB|M10.252|ICD10CM|Drug-induced gout, left hip|Drug-induced gout, left hip +C2893460|T047|PT|M10.252|ICD10CM|Drug-induced gout, left hip|Drug-induced gout, left hip +C2893461|T047|AB|M10.259|ICD10CM|Drug-induced gout, unspecified hip|Drug-induced gout, unspecified hip +C2893461|T047|PT|M10.259|ICD10CM|Drug-induced gout, unspecified hip|Drug-induced gout, unspecified hip +C2893464|T047|AB|M10.26|ICD10CM|Drug-induced gout, knee|Drug-induced gout, knee +C2893464|T047|HT|M10.26|ICD10CM|Drug-induced gout, knee|Drug-induced gout, knee +C2893462|T047|AB|M10.261|ICD10CM|Drug-induced gout, right knee|Drug-induced gout, right knee +C2893462|T047|PT|M10.261|ICD10CM|Drug-induced gout, right knee|Drug-induced gout, right knee +C2893463|T047|AB|M10.262|ICD10CM|Drug-induced gout, left knee|Drug-induced gout, left knee +C2893463|T047|PT|M10.262|ICD10CM|Drug-induced gout, left knee|Drug-induced gout, left knee +C2893464|T047|AB|M10.269|ICD10CM|Drug-induced gout, unspecified knee|Drug-induced gout, unspecified knee +C2893464|T047|PT|M10.269|ICD10CM|Drug-induced gout, unspecified knee|Drug-induced gout, unspecified knee +C0837818|T047|HT|M10.27|ICD10CM|Drug-induced gout, ankle and foot|Drug-induced gout, ankle and foot +C0837818|T047|AB|M10.27|ICD10CM|Drug-induced gout, ankle and foot|Drug-induced gout, ankle and foot +C2893465|T047|AB|M10.271|ICD10CM|Drug-induced gout, right ankle and foot|Drug-induced gout, right ankle and foot +C2893465|T047|PT|M10.271|ICD10CM|Drug-induced gout, right ankle and foot|Drug-induced gout, right ankle and foot +C2893466|T047|AB|M10.272|ICD10CM|Drug-induced gout, left ankle and foot|Drug-induced gout, left ankle and foot +C2893466|T047|PT|M10.272|ICD10CM|Drug-induced gout, left ankle and foot|Drug-induced gout, left ankle and foot +C2893467|T047|AB|M10.279|ICD10CM|Drug-induced gout, unspecified ankle and foot|Drug-induced gout, unspecified ankle and foot +C2893467|T047|PT|M10.279|ICD10CM|Drug-induced gout, unspecified ankle and foot|Drug-induced gout, unspecified ankle and foot +C2893468|T047|AB|M10.28|ICD10CM|Drug-induced gout, vertebrae|Drug-induced gout, vertebrae +C2893468|T047|PT|M10.28|ICD10CM|Drug-induced gout, vertebrae|Drug-induced gout, vertebrae +C0837811|T047|PT|M10.29|ICD10CM|Drug-induced gout, multiple sites|Drug-induced gout, multiple sites +C0837811|T047|AB|M10.29|ICD10CM|Drug-induced gout, multiple sites|Drug-induced gout, multiple sites +C0409909|T047|PT|M10.3|ICD10|Gout due to impairment of renal function|Gout due to impairment of renal function +C2893469|T047|AB|M10.3|ICD10CM|Gout due to renal impairment|Gout due to renal impairment +C2893469|T047|HT|M10.3|ICD10CM|Gout due to renal impairment|Gout due to renal impairment +C2893470|T047|AB|M10.30|ICD10CM|Gout due to renal impairment, unspecified site|Gout due to renal impairment, unspecified site +C2893470|T047|PT|M10.30|ICD10CM|Gout due to renal impairment, unspecified site|Gout due to renal impairment, unspecified site +C2893471|T047|AB|M10.31|ICD10CM|Gout due to renal impairment, shoulder|Gout due to renal impairment, shoulder +C2893471|T047|HT|M10.31|ICD10CM|Gout due to renal impairment, shoulder|Gout due to renal impairment, shoulder +C2893472|T047|AB|M10.311|ICD10CM|Gout due to renal impairment, right shoulder|Gout due to renal impairment, right shoulder +C2893472|T047|PT|M10.311|ICD10CM|Gout due to renal impairment, right shoulder|Gout due to renal impairment, right shoulder +C2893473|T047|AB|M10.312|ICD10CM|Gout due to renal impairment, left shoulder|Gout due to renal impairment, left shoulder +C2893473|T047|PT|M10.312|ICD10CM|Gout due to renal impairment, left shoulder|Gout due to renal impairment, left shoulder +C2893471|T047|AB|M10.319|ICD10CM|Gout due to renal impairment, unspecified shoulder|Gout due to renal impairment, unspecified shoulder +C2893471|T047|PT|M10.319|ICD10CM|Gout due to renal impairment, unspecified shoulder|Gout due to renal impairment, unspecified shoulder +C2893474|T047|AB|M10.32|ICD10CM|Gout due to renal impairment, elbow|Gout due to renal impairment, elbow +C2893474|T047|HT|M10.32|ICD10CM|Gout due to renal impairment, elbow|Gout due to renal impairment, elbow +C2893475|T047|AB|M10.321|ICD10CM|Gout due to renal impairment, right elbow|Gout due to renal impairment, right elbow +C2893475|T047|PT|M10.321|ICD10CM|Gout due to renal impairment, right elbow|Gout due to renal impairment, right elbow +C2893476|T047|AB|M10.322|ICD10CM|Gout due to renal impairment, left elbow|Gout due to renal impairment, left elbow +C2893476|T047|PT|M10.322|ICD10CM|Gout due to renal impairment, left elbow|Gout due to renal impairment, left elbow +C2893477|T047|AB|M10.329|ICD10CM|Gout due to renal impairment, unspecified elbow|Gout due to renal impairment, unspecified elbow +C2893477|T047|PT|M10.329|ICD10CM|Gout due to renal impairment, unspecified elbow|Gout due to renal impairment, unspecified elbow +C2893478|T047|AB|M10.33|ICD10CM|Gout due to renal impairment, wrist|Gout due to renal impairment, wrist +C2893478|T047|HT|M10.33|ICD10CM|Gout due to renal impairment, wrist|Gout due to renal impairment, wrist +C2893479|T047|AB|M10.331|ICD10CM|Gout due to renal impairment, right wrist|Gout due to renal impairment, right wrist +C2893479|T047|PT|M10.331|ICD10CM|Gout due to renal impairment, right wrist|Gout due to renal impairment, right wrist +C2893480|T047|AB|M10.332|ICD10CM|Gout due to renal impairment, left wrist|Gout due to renal impairment, left wrist +C2893480|T047|PT|M10.332|ICD10CM|Gout due to renal impairment, left wrist|Gout due to renal impairment, left wrist +C2893481|T047|AB|M10.339|ICD10CM|Gout due to renal impairment, unspecified wrist|Gout due to renal impairment, unspecified wrist +C2893481|T047|PT|M10.339|ICD10CM|Gout due to renal impairment, unspecified wrist|Gout due to renal impairment, unspecified wrist +C2893482|T047|AB|M10.34|ICD10CM|Gout due to renal impairment, hand|Gout due to renal impairment, hand +C2893482|T047|HT|M10.34|ICD10CM|Gout due to renal impairment, hand|Gout due to renal impairment, hand +C2893483|T047|AB|M10.341|ICD10CM|Gout due to renal impairment, right hand|Gout due to renal impairment, right hand +C2893483|T047|PT|M10.341|ICD10CM|Gout due to renal impairment, right hand|Gout due to renal impairment, right hand +C2893484|T047|AB|M10.342|ICD10CM|Gout due to renal impairment, left hand|Gout due to renal impairment, left hand +C2893484|T047|PT|M10.342|ICD10CM|Gout due to renal impairment, left hand|Gout due to renal impairment, left hand +C2893485|T047|AB|M10.349|ICD10CM|Gout due to renal impairment, unspecified hand|Gout due to renal impairment, unspecified hand +C2893485|T047|PT|M10.349|ICD10CM|Gout due to renal impairment, unspecified hand|Gout due to renal impairment, unspecified hand +C2893486|T047|AB|M10.35|ICD10CM|Gout due to renal impairment, hip|Gout due to renal impairment, hip +C2893486|T047|HT|M10.35|ICD10CM|Gout due to renal impairment, hip|Gout due to renal impairment, hip +C2893487|T047|AB|M10.351|ICD10CM|Gout due to renal impairment, right hip|Gout due to renal impairment, right hip +C2893487|T047|PT|M10.351|ICD10CM|Gout due to renal impairment, right hip|Gout due to renal impairment, right hip +C2893488|T047|AB|M10.352|ICD10CM|Gout due to renal impairment, left hip|Gout due to renal impairment, left hip +C2893488|T047|PT|M10.352|ICD10CM|Gout due to renal impairment, left hip|Gout due to renal impairment, left hip +C2893489|T047|AB|M10.359|ICD10CM|Gout due to renal impairment, unspecified hip|Gout due to renal impairment, unspecified hip +C2893489|T047|PT|M10.359|ICD10CM|Gout due to renal impairment, unspecified hip|Gout due to renal impairment, unspecified hip +C2893490|T047|AB|M10.36|ICD10CM|Gout due to renal impairment, knee|Gout due to renal impairment, knee +C2893490|T047|HT|M10.36|ICD10CM|Gout due to renal impairment, knee|Gout due to renal impairment, knee +C2893491|T047|AB|M10.361|ICD10CM|Gout due to renal impairment, right knee|Gout due to renal impairment, right knee +C2893491|T047|PT|M10.361|ICD10CM|Gout due to renal impairment, right knee|Gout due to renal impairment, right knee +C2893492|T047|AB|M10.362|ICD10CM|Gout due to renal impairment, left knee|Gout due to renal impairment, left knee +C2893492|T047|PT|M10.362|ICD10CM|Gout due to renal impairment, left knee|Gout due to renal impairment, left knee +C2893493|T047|AB|M10.369|ICD10CM|Gout due to renal impairment, unspecified knee|Gout due to renal impairment, unspecified knee +C2893493|T047|PT|M10.369|ICD10CM|Gout due to renal impairment, unspecified knee|Gout due to renal impairment, unspecified knee +C2893494|T047|AB|M10.37|ICD10CM|Gout due to renal impairment, ankle and foot|Gout due to renal impairment, ankle and foot +C2893494|T047|HT|M10.37|ICD10CM|Gout due to renal impairment, ankle and foot|Gout due to renal impairment, ankle and foot +C2893495|T047|AB|M10.371|ICD10CM|Gout due to renal impairment, right ankle and foot|Gout due to renal impairment, right ankle and foot +C2893495|T047|PT|M10.371|ICD10CM|Gout due to renal impairment, right ankle and foot|Gout due to renal impairment, right ankle and foot +C2893496|T047|AB|M10.372|ICD10CM|Gout due to renal impairment, left ankle and foot|Gout due to renal impairment, left ankle and foot +C2893496|T047|PT|M10.372|ICD10CM|Gout due to renal impairment, left ankle and foot|Gout due to renal impairment, left ankle and foot +C2893497|T047|AB|M10.379|ICD10CM|Gout due to renal impairment, unspecified ankle and foot|Gout due to renal impairment, unspecified ankle and foot +C2893497|T047|PT|M10.379|ICD10CM|Gout due to renal impairment, unspecified ankle and foot|Gout due to renal impairment, unspecified ankle and foot +C2893498|T047|AB|M10.38|ICD10CM|Gout due to renal impairment, vertebrae|Gout due to renal impairment, vertebrae +C2893498|T047|PT|M10.38|ICD10CM|Gout due to renal impairment, vertebrae|Gout due to renal impairment, vertebrae +C2893499|T047|AB|M10.39|ICD10CM|Gout due to renal impairment, multiple sites|Gout due to renal impairment, multiple sites +C2893499|T047|PT|M10.39|ICD10CM|Gout due to renal impairment, multiple sites|Gout due to renal impairment, multiple sites +C0477547|T047|PT|M10.4|ICD10|Other secondary gout|Other secondary gout +C0477547|T047|HT|M10.4|ICD10CM|Other secondary gout|Other secondary gout +C0477547|T047|AB|M10.4|ICD10CM|Other secondary gout|Other secondary gout +C0477547|T047|AB|M10.40|ICD10CM|Other secondary gout, unspecified site|Other secondary gout, unspecified site +C0477547|T047|PT|M10.40|ICD10CM|Other secondary gout, unspecified site|Other secondary gout, unspecified site +C2893500|T047|AB|M10.41|ICD10CM|Other secondary gout, shoulder|Other secondary gout, shoulder +C2893500|T047|HT|M10.41|ICD10CM|Other secondary gout, shoulder|Other secondary gout, shoulder +C2893501|T047|AB|M10.411|ICD10CM|Other secondary gout, right shoulder|Other secondary gout, right shoulder +C2893501|T047|PT|M10.411|ICD10CM|Other secondary gout, right shoulder|Other secondary gout, right shoulder +C2893502|T047|AB|M10.412|ICD10CM|Other secondary gout, left shoulder|Other secondary gout, left shoulder +C2893502|T047|PT|M10.412|ICD10CM|Other secondary gout, left shoulder|Other secondary gout, left shoulder +C2893503|T047|AB|M10.419|ICD10CM|Other secondary gout, unspecified shoulder|Other secondary gout, unspecified shoulder +C2893503|T047|PT|M10.419|ICD10CM|Other secondary gout, unspecified shoulder|Other secondary gout, unspecified shoulder +C2893504|T047|AB|M10.42|ICD10CM|Other secondary gout, elbow|Other secondary gout, elbow +C2893504|T047|HT|M10.42|ICD10CM|Other secondary gout, elbow|Other secondary gout, elbow +C2893505|T047|AB|M10.421|ICD10CM|Other secondary gout, right elbow|Other secondary gout, right elbow +C2893505|T047|PT|M10.421|ICD10CM|Other secondary gout, right elbow|Other secondary gout, right elbow +C2893506|T047|AB|M10.422|ICD10CM|Other secondary gout, left elbow|Other secondary gout, left elbow +C2893506|T047|PT|M10.422|ICD10CM|Other secondary gout, left elbow|Other secondary gout, left elbow +C2893507|T047|AB|M10.429|ICD10CM|Other secondary gout, unspecified elbow|Other secondary gout, unspecified elbow +C2893507|T047|PT|M10.429|ICD10CM|Other secondary gout, unspecified elbow|Other secondary gout, unspecified elbow +C2893508|T047|AB|M10.43|ICD10CM|Other secondary gout, wrist|Other secondary gout, wrist +C2893508|T047|HT|M10.43|ICD10CM|Other secondary gout, wrist|Other secondary gout, wrist +C2893509|T047|AB|M10.431|ICD10CM|Other secondary gout, right wrist|Other secondary gout, right wrist +C2893509|T047|PT|M10.431|ICD10CM|Other secondary gout, right wrist|Other secondary gout, right wrist +C2893510|T047|AB|M10.432|ICD10CM|Other secondary gout, left wrist|Other secondary gout, left wrist +C2893510|T047|PT|M10.432|ICD10CM|Other secondary gout, left wrist|Other secondary gout, left wrist +C2893511|T047|AB|M10.439|ICD10CM|Other secondary gout, unspecified wrist|Other secondary gout, unspecified wrist +C2893511|T047|PT|M10.439|ICD10CM|Other secondary gout, unspecified wrist|Other secondary gout, unspecified wrist +C0837835|T047|HT|M10.44|ICD10CM|Other secondary gout, hand|Other secondary gout, hand +C0837835|T047|AB|M10.44|ICD10CM|Other secondary gout, hand|Other secondary gout, hand +C2893512|T047|AB|M10.441|ICD10CM|Other secondary gout, right hand|Other secondary gout, right hand +C2893512|T047|PT|M10.441|ICD10CM|Other secondary gout, right hand|Other secondary gout, right hand +C2893513|T047|AB|M10.442|ICD10CM|Other secondary gout, left hand|Other secondary gout, left hand +C2893513|T047|PT|M10.442|ICD10CM|Other secondary gout, left hand|Other secondary gout, left hand +C2893514|T047|AB|M10.449|ICD10CM|Other secondary gout, unspecified hand|Other secondary gout, unspecified hand +C2893514|T047|PT|M10.449|ICD10CM|Other secondary gout, unspecified hand|Other secondary gout, unspecified hand +C2893515|T047|AB|M10.45|ICD10CM|Other secondary gout, hip|Other secondary gout, hip +C2893515|T047|HT|M10.45|ICD10CM|Other secondary gout, hip|Other secondary gout, hip +C2893516|T047|AB|M10.451|ICD10CM|Other secondary gout, right hip|Other secondary gout, right hip +C2893516|T047|PT|M10.451|ICD10CM|Other secondary gout, right hip|Other secondary gout, right hip +C2893517|T047|AB|M10.452|ICD10CM|Other secondary gout, left hip|Other secondary gout, left hip +C2893517|T047|PT|M10.452|ICD10CM|Other secondary gout, left hip|Other secondary gout, left hip +C2893518|T047|AB|M10.459|ICD10CM|Other secondary gout, unspecified hip|Other secondary gout, unspecified hip +C2893518|T047|PT|M10.459|ICD10CM|Other secondary gout, unspecified hip|Other secondary gout, unspecified hip +C2893519|T047|AB|M10.46|ICD10CM|Other secondary gout, knee|Other secondary gout, knee +C2893519|T047|HT|M10.46|ICD10CM|Other secondary gout, knee|Other secondary gout, knee +C2893520|T047|AB|M10.461|ICD10CM|Other secondary gout, right knee|Other secondary gout, right knee +C2893520|T047|PT|M10.461|ICD10CM|Other secondary gout, right knee|Other secondary gout, right knee +C2893521|T047|AB|M10.462|ICD10CM|Other secondary gout, left knee|Other secondary gout, left knee +C2893521|T047|PT|M10.462|ICD10CM|Other secondary gout, left knee|Other secondary gout, left knee +C2893522|T047|AB|M10.469|ICD10CM|Other secondary gout, unspecified knee|Other secondary gout, unspecified knee +C2893522|T047|PT|M10.469|ICD10CM|Other secondary gout, unspecified knee|Other secondary gout, unspecified knee +C0837838|T047|HT|M10.47|ICD10CM|Other secondary gout, ankle and foot|Other secondary gout, ankle and foot +C0837838|T047|AB|M10.47|ICD10CM|Other secondary gout, ankle and foot|Other secondary gout, ankle and foot +C2893523|T047|AB|M10.471|ICD10CM|Other secondary gout, right ankle and foot|Other secondary gout, right ankle and foot +C2893523|T047|PT|M10.471|ICD10CM|Other secondary gout, right ankle and foot|Other secondary gout, right ankle and foot +C2893524|T047|AB|M10.472|ICD10CM|Other secondary gout, left ankle and foot|Other secondary gout, left ankle and foot +C2893524|T047|PT|M10.472|ICD10CM|Other secondary gout, left ankle and foot|Other secondary gout, left ankle and foot +C2893525|T047|AB|M10.479|ICD10CM|Other secondary gout, unspecified ankle and foot|Other secondary gout, unspecified ankle and foot +C2893525|T047|PT|M10.479|ICD10CM|Other secondary gout, unspecified ankle and foot|Other secondary gout, unspecified ankle and foot +C2893526|T047|AB|M10.48|ICD10CM|Other secondary gout, vertebrae|Other secondary gout, vertebrae +C2893526|T047|PT|M10.48|ICD10CM|Other secondary gout, vertebrae|Other secondary gout, vertebrae +C0837831|T047|PT|M10.49|ICD10CM|Other secondary gout, multiple sites|Other secondary gout, multiple sites +C0837831|T047|AB|M10.49|ICD10CM|Other secondary gout, multiple sites|Other secondary gout, multiple sites +C0018099|T047|ET|M10.9|ICD10CM|Gout NOS|Gout NOS +C0018099|T047|PT|M10.9|ICD10CM|Gout, unspecified|Gout, unspecified +C0018099|T047|AB|M10.9|ICD10CM|Gout, unspecified|Gout, unspecified +C0018099|T047|PT|M10.9|ICD10|Gout, unspecified|Gout, unspecified +C0409848|T047|AB|M11|ICD10CM|Other crystal arthropathies|Other crystal arthropathies +C0409848|T047|HT|M11|ICD10CM|Other crystal arthropathies|Other crystal arthropathies +C0409848|T047|HT|M11|ICD10|Other crystal arthropathies|Other crystal arthropathies +C0409859|T047|PT|M11.0|ICD10|Hydroxyapatite deposition disease|Hydroxyapatite deposition disease +C0409859|T047|HT|M11.0|ICD10CM|Hydroxyapatite deposition disease|Hydroxyapatite deposition disease +C0409859|T047|AB|M11.0|ICD10CM|Hydroxyapatite deposition disease|Hydroxyapatite deposition disease +C0409859|T047|AB|M11.00|ICD10CM|Hydroxyapatite deposition disease, unspecified site|Hydroxyapatite deposition disease, unspecified site +C0409859|T047|PT|M11.00|ICD10CM|Hydroxyapatite deposition disease, unspecified site|Hydroxyapatite deposition disease, unspecified site +C2893527|T047|AB|M11.01|ICD10CM|Hydroxyapatite deposition disease, shoulder|Hydroxyapatite deposition disease, shoulder +C2893527|T047|HT|M11.01|ICD10CM|Hydroxyapatite deposition disease, shoulder|Hydroxyapatite deposition disease, shoulder +C2893528|T047|AB|M11.011|ICD10CM|Hydroxyapatite deposition disease, right shoulder|Hydroxyapatite deposition disease, right shoulder +C2893528|T047|PT|M11.011|ICD10CM|Hydroxyapatite deposition disease, right shoulder|Hydroxyapatite deposition disease, right shoulder +C2893529|T047|AB|M11.012|ICD10CM|Hydroxyapatite deposition disease, left shoulder|Hydroxyapatite deposition disease, left shoulder +C2893529|T047|PT|M11.012|ICD10CM|Hydroxyapatite deposition disease, left shoulder|Hydroxyapatite deposition disease, left shoulder +C2893530|T047|AB|M11.019|ICD10CM|Hydroxyapatite deposition disease, unspecified shoulder|Hydroxyapatite deposition disease, unspecified shoulder +C2893530|T047|PT|M11.019|ICD10CM|Hydroxyapatite deposition disease, unspecified shoulder|Hydroxyapatite deposition disease, unspecified shoulder +C2893531|T047|AB|M11.02|ICD10CM|Hydroxyapatite deposition disease, elbow|Hydroxyapatite deposition disease, elbow +C2893531|T047|HT|M11.02|ICD10CM|Hydroxyapatite deposition disease, elbow|Hydroxyapatite deposition disease, elbow +C2893532|T047|AB|M11.021|ICD10CM|Hydroxyapatite deposition disease, right elbow|Hydroxyapatite deposition disease, right elbow +C2893532|T047|PT|M11.021|ICD10CM|Hydroxyapatite deposition disease, right elbow|Hydroxyapatite deposition disease, right elbow +C2893533|T047|AB|M11.022|ICD10CM|Hydroxyapatite deposition disease, left elbow|Hydroxyapatite deposition disease, left elbow +C2893533|T047|PT|M11.022|ICD10CM|Hydroxyapatite deposition disease, left elbow|Hydroxyapatite deposition disease, left elbow +C2893534|T047|AB|M11.029|ICD10CM|Hydroxyapatite deposition disease, unspecified elbow|Hydroxyapatite deposition disease, unspecified elbow +C2893534|T047|PT|M11.029|ICD10CM|Hydroxyapatite deposition disease, unspecified elbow|Hydroxyapatite deposition disease, unspecified elbow +C2893535|T047|AB|M11.03|ICD10CM|Hydroxyapatite deposition disease, wrist|Hydroxyapatite deposition disease, wrist +C2893535|T047|HT|M11.03|ICD10CM|Hydroxyapatite deposition disease, wrist|Hydroxyapatite deposition disease, wrist +C2893536|T047|AB|M11.031|ICD10CM|Hydroxyapatite deposition disease, right wrist|Hydroxyapatite deposition disease, right wrist +C2893536|T047|PT|M11.031|ICD10CM|Hydroxyapatite deposition disease, right wrist|Hydroxyapatite deposition disease, right wrist +C2893537|T047|AB|M11.032|ICD10CM|Hydroxyapatite deposition disease, left wrist|Hydroxyapatite deposition disease, left wrist +C2893537|T047|PT|M11.032|ICD10CM|Hydroxyapatite deposition disease, left wrist|Hydroxyapatite deposition disease, left wrist +C2893538|T047|AB|M11.039|ICD10CM|Hydroxyapatite deposition disease, unspecified wrist|Hydroxyapatite deposition disease, unspecified wrist +C2893538|T047|PT|M11.039|ICD10CM|Hydroxyapatite deposition disease, unspecified wrist|Hydroxyapatite deposition disease, unspecified wrist +C0837855|T047|HT|M11.04|ICD10CM|Hydroxyapatite deposition disease, hand|Hydroxyapatite deposition disease, hand +C0837855|T047|AB|M11.04|ICD10CM|Hydroxyapatite deposition disease, hand|Hydroxyapatite deposition disease, hand +C2893539|T047|AB|M11.041|ICD10CM|Hydroxyapatite deposition disease, right hand|Hydroxyapatite deposition disease, right hand +C2893539|T047|PT|M11.041|ICD10CM|Hydroxyapatite deposition disease, right hand|Hydroxyapatite deposition disease, right hand +C2893540|T047|AB|M11.042|ICD10CM|Hydroxyapatite deposition disease, left hand|Hydroxyapatite deposition disease, left hand +C2893540|T047|PT|M11.042|ICD10CM|Hydroxyapatite deposition disease, left hand|Hydroxyapatite deposition disease, left hand +C2893541|T047|AB|M11.049|ICD10CM|Hydroxyapatite deposition disease, unspecified hand|Hydroxyapatite deposition disease, unspecified hand +C2893541|T047|PT|M11.049|ICD10CM|Hydroxyapatite deposition disease, unspecified hand|Hydroxyapatite deposition disease, unspecified hand +C2893544|T047|AB|M11.05|ICD10CM|Hydroxyapatite deposition disease, hip|Hydroxyapatite deposition disease, hip +C2893544|T047|HT|M11.05|ICD10CM|Hydroxyapatite deposition disease, hip|Hydroxyapatite deposition disease, hip +C2893542|T047|AB|M11.051|ICD10CM|Hydroxyapatite deposition disease, right hip|Hydroxyapatite deposition disease, right hip +C2893542|T047|PT|M11.051|ICD10CM|Hydroxyapatite deposition disease, right hip|Hydroxyapatite deposition disease, right hip +C2893543|T047|AB|M11.052|ICD10CM|Hydroxyapatite deposition disease, left hip|Hydroxyapatite deposition disease, left hip +C2893543|T047|PT|M11.052|ICD10CM|Hydroxyapatite deposition disease, left hip|Hydroxyapatite deposition disease, left hip +C2893544|T047|AB|M11.059|ICD10CM|Hydroxyapatite deposition disease, unspecified hip|Hydroxyapatite deposition disease, unspecified hip +C2893544|T047|PT|M11.059|ICD10CM|Hydroxyapatite deposition disease, unspecified hip|Hydroxyapatite deposition disease, unspecified hip +C2893545|T047|AB|M11.06|ICD10CM|Hydroxyapatite deposition disease, knee|Hydroxyapatite deposition disease, knee +C2893545|T047|HT|M11.06|ICD10CM|Hydroxyapatite deposition disease, knee|Hydroxyapatite deposition disease, knee +C2893546|T047|AB|M11.061|ICD10CM|Hydroxyapatite deposition disease, right knee|Hydroxyapatite deposition disease, right knee +C2893546|T047|PT|M11.061|ICD10CM|Hydroxyapatite deposition disease, right knee|Hydroxyapatite deposition disease, right knee +C2893547|T047|AB|M11.062|ICD10CM|Hydroxyapatite deposition disease, left knee|Hydroxyapatite deposition disease, left knee +C2893547|T047|PT|M11.062|ICD10CM|Hydroxyapatite deposition disease, left knee|Hydroxyapatite deposition disease, left knee +C2893548|T047|AB|M11.069|ICD10CM|Hydroxyapatite deposition disease, unspecified knee|Hydroxyapatite deposition disease, unspecified knee +C2893548|T047|PT|M11.069|ICD10CM|Hydroxyapatite deposition disease, unspecified knee|Hydroxyapatite deposition disease, unspecified knee +C0837858|T047|HT|M11.07|ICD10CM|Hydroxyapatite deposition disease, ankle and foot|Hydroxyapatite deposition disease, ankle and foot +C0837858|T047|AB|M11.07|ICD10CM|Hydroxyapatite deposition disease, ankle and foot|Hydroxyapatite deposition disease, ankle and foot +C2893549|T047|AB|M11.071|ICD10CM|Hydroxyapatite deposition disease, right ankle and foot|Hydroxyapatite deposition disease, right ankle and foot +C2893549|T047|PT|M11.071|ICD10CM|Hydroxyapatite deposition disease, right ankle and foot|Hydroxyapatite deposition disease, right ankle and foot +C2893550|T047|AB|M11.072|ICD10CM|Hydroxyapatite deposition disease, left ankle and foot|Hydroxyapatite deposition disease, left ankle and foot +C2893550|T047|PT|M11.072|ICD10CM|Hydroxyapatite deposition disease, left ankle and foot|Hydroxyapatite deposition disease, left ankle and foot +C2893551|T047|AB|M11.079|ICD10CM|Hydroxyapatite deposition disease, unsp ankle and foot|Hydroxyapatite deposition disease, unsp ankle and foot +C2893551|T047|PT|M11.079|ICD10CM|Hydroxyapatite deposition disease, unspecified ankle and foot|Hydroxyapatite deposition disease, unspecified ankle and foot +C2893552|T047|AB|M11.08|ICD10CM|Hydroxyapatite deposition disease, vertebrae|Hydroxyapatite deposition disease, vertebrae +C2893552|T047|PT|M11.08|ICD10CM|Hydroxyapatite deposition disease, vertebrae|Hydroxyapatite deposition disease, vertebrae +C0837851|T047|PT|M11.09|ICD10CM|Hydroxyapatite deposition disease, multiple sites|Hydroxyapatite deposition disease, multiple sites +C0837851|T047|AB|M11.09|ICD10CM|Hydroxyapatite deposition disease, multiple sites|Hydroxyapatite deposition disease, multiple sites +C0409896|T047|PT|M11.1|ICD10|Familial chondrocalcinosis|Familial chondrocalcinosis +C0409896|T047|HT|M11.1|ICD10CM|Familial chondrocalcinosis|Familial chondrocalcinosis +C0409896|T047|AB|M11.1|ICD10CM|Familial chondrocalcinosis|Familial chondrocalcinosis +C0409896|T047|AB|M11.10|ICD10CM|Familial chondrocalcinosis, unspecified site|Familial chondrocalcinosis, unspecified site +C0409896|T047|PT|M11.10|ICD10CM|Familial chondrocalcinosis, unspecified site|Familial chondrocalcinosis, unspecified site +C2893553|T047|AB|M11.11|ICD10CM|Familial chondrocalcinosis, shoulder|Familial chondrocalcinosis, shoulder +C2893553|T047|HT|M11.11|ICD10CM|Familial chondrocalcinosis, shoulder|Familial chondrocalcinosis, shoulder +C2893554|T047|AB|M11.111|ICD10CM|Familial chondrocalcinosis, right shoulder|Familial chondrocalcinosis, right shoulder +C2893554|T047|PT|M11.111|ICD10CM|Familial chondrocalcinosis, right shoulder|Familial chondrocalcinosis, right shoulder +C2893555|T047|AB|M11.112|ICD10CM|Familial chondrocalcinosis, left shoulder|Familial chondrocalcinosis, left shoulder +C2893555|T047|PT|M11.112|ICD10CM|Familial chondrocalcinosis, left shoulder|Familial chondrocalcinosis, left shoulder +C2893556|T047|AB|M11.119|ICD10CM|Familial chondrocalcinosis, unspecified shoulder|Familial chondrocalcinosis, unspecified shoulder +C2893556|T047|PT|M11.119|ICD10CM|Familial chondrocalcinosis, unspecified shoulder|Familial chondrocalcinosis, unspecified shoulder +C2893557|T047|AB|M11.12|ICD10CM|Familial chondrocalcinosis, elbow|Familial chondrocalcinosis, elbow +C2893557|T047|HT|M11.12|ICD10CM|Familial chondrocalcinosis, elbow|Familial chondrocalcinosis, elbow +C2893558|T047|AB|M11.121|ICD10CM|Familial chondrocalcinosis, right elbow|Familial chondrocalcinosis, right elbow +C2893558|T047|PT|M11.121|ICD10CM|Familial chondrocalcinosis, right elbow|Familial chondrocalcinosis, right elbow +C2893559|T047|AB|M11.122|ICD10CM|Familial chondrocalcinosis, left elbow|Familial chondrocalcinosis, left elbow +C2893559|T047|PT|M11.122|ICD10CM|Familial chondrocalcinosis, left elbow|Familial chondrocalcinosis, left elbow +C2893560|T047|AB|M11.129|ICD10CM|Familial chondrocalcinosis, unspecified elbow|Familial chondrocalcinosis, unspecified elbow +C2893560|T047|PT|M11.129|ICD10CM|Familial chondrocalcinosis, unspecified elbow|Familial chondrocalcinosis, unspecified elbow +C2893561|T047|AB|M11.13|ICD10CM|Familial chondrocalcinosis, wrist|Familial chondrocalcinosis, wrist +C2893561|T047|HT|M11.13|ICD10CM|Familial chondrocalcinosis, wrist|Familial chondrocalcinosis, wrist +C2893562|T047|AB|M11.131|ICD10CM|Familial chondrocalcinosis, right wrist|Familial chondrocalcinosis, right wrist +C2893562|T047|PT|M11.131|ICD10CM|Familial chondrocalcinosis, right wrist|Familial chondrocalcinosis, right wrist +C2893563|T047|AB|M11.132|ICD10CM|Familial chondrocalcinosis, left wrist|Familial chondrocalcinosis, left wrist +C2893563|T047|PT|M11.132|ICD10CM|Familial chondrocalcinosis, left wrist|Familial chondrocalcinosis, left wrist +C2893561|T047|AB|M11.139|ICD10CM|Familial chondrocalcinosis, unspecified wrist|Familial chondrocalcinosis, unspecified wrist +C2893561|T047|PT|M11.139|ICD10CM|Familial chondrocalcinosis, unspecified wrist|Familial chondrocalcinosis, unspecified wrist +C0837865|T047|HT|M11.14|ICD10CM|Familial chondrocalcinosis, hand|Familial chondrocalcinosis, hand +C0837865|T047|AB|M11.14|ICD10CM|Familial chondrocalcinosis, hand|Familial chondrocalcinosis, hand +C2893564|T047|AB|M11.141|ICD10CM|Familial chondrocalcinosis, right hand|Familial chondrocalcinosis, right hand +C2893564|T047|PT|M11.141|ICD10CM|Familial chondrocalcinosis, right hand|Familial chondrocalcinosis, right hand +C2893565|T047|AB|M11.142|ICD10CM|Familial chondrocalcinosis, left hand|Familial chondrocalcinosis, left hand +C2893565|T047|PT|M11.142|ICD10CM|Familial chondrocalcinosis, left hand|Familial chondrocalcinosis, left hand +C0837865|T047|AB|M11.149|ICD10CM|Familial chondrocalcinosis, unspecified hand|Familial chondrocalcinosis, unspecified hand +C0837865|T047|PT|M11.149|ICD10CM|Familial chondrocalcinosis, unspecified hand|Familial chondrocalcinosis, unspecified hand +C2893566|T047|AB|M11.15|ICD10CM|Familial chondrocalcinosis, hip|Familial chondrocalcinosis, hip +C2893566|T047|HT|M11.15|ICD10CM|Familial chondrocalcinosis, hip|Familial chondrocalcinosis, hip +C2893567|T047|AB|M11.151|ICD10CM|Familial chondrocalcinosis, right hip|Familial chondrocalcinosis, right hip +C2893567|T047|PT|M11.151|ICD10CM|Familial chondrocalcinosis, right hip|Familial chondrocalcinosis, right hip +C2893568|T047|AB|M11.152|ICD10CM|Familial chondrocalcinosis, left hip|Familial chondrocalcinosis, left hip +C2893568|T047|PT|M11.152|ICD10CM|Familial chondrocalcinosis, left hip|Familial chondrocalcinosis, left hip +C2893569|T047|AB|M11.159|ICD10CM|Familial chondrocalcinosis, unspecified hip|Familial chondrocalcinosis, unspecified hip +C2893569|T047|PT|M11.159|ICD10CM|Familial chondrocalcinosis, unspecified hip|Familial chondrocalcinosis, unspecified hip +C2893570|T047|AB|M11.16|ICD10CM|Familial chondrocalcinosis, knee|Familial chondrocalcinosis, knee +C2893570|T047|HT|M11.16|ICD10CM|Familial chondrocalcinosis, knee|Familial chondrocalcinosis, knee +C2893571|T047|AB|M11.161|ICD10CM|Familial chondrocalcinosis, right knee|Familial chondrocalcinosis, right knee +C2893571|T047|PT|M11.161|ICD10CM|Familial chondrocalcinosis, right knee|Familial chondrocalcinosis, right knee +C2893572|T047|AB|M11.162|ICD10CM|Familial chondrocalcinosis, left knee|Familial chondrocalcinosis, left knee +C2893572|T047|PT|M11.162|ICD10CM|Familial chondrocalcinosis, left knee|Familial chondrocalcinosis, left knee +C2893573|T047|AB|M11.169|ICD10CM|Familial chondrocalcinosis, unspecified knee|Familial chondrocalcinosis, unspecified knee +C2893573|T047|PT|M11.169|ICD10CM|Familial chondrocalcinosis, unspecified knee|Familial chondrocalcinosis, unspecified knee +C0837868|T047|HT|M11.17|ICD10CM|Familial chondrocalcinosis, ankle and foot|Familial chondrocalcinosis, ankle and foot +C0837868|T047|AB|M11.17|ICD10CM|Familial chondrocalcinosis, ankle and foot|Familial chondrocalcinosis, ankle and foot +C2893574|T047|AB|M11.171|ICD10CM|Familial chondrocalcinosis, right ankle and foot|Familial chondrocalcinosis, right ankle and foot +C2893574|T047|PT|M11.171|ICD10CM|Familial chondrocalcinosis, right ankle and foot|Familial chondrocalcinosis, right ankle and foot +C2893575|T047|AB|M11.172|ICD10CM|Familial chondrocalcinosis, left ankle and foot|Familial chondrocalcinosis, left ankle and foot +C2893575|T047|PT|M11.172|ICD10CM|Familial chondrocalcinosis, left ankle and foot|Familial chondrocalcinosis, left ankle and foot +C2893576|T047|AB|M11.179|ICD10CM|Familial chondrocalcinosis, unspecified ankle and foot|Familial chondrocalcinosis, unspecified ankle and foot +C2893576|T047|PT|M11.179|ICD10CM|Familial chondrocalcinosis, unspecified ankle and foot|Familial chondrocalcinosis, unspecified ankle and foot +C2893577|T047|AB|M11.18|ICD10CM|Familial chondrocalcinosis, vertebrae|Familial chondrocalcinosis, vertebrae +C2893577|T047|PT|M11.18|ICD10CM|Familial chondrocalcinosis, vertebrae|Familial chondrocalcinosis, vertebrae +C0837861|T047|PT|M11.19|ICD10CM|Familial chondrocalcinosis, multiple sites|Familial chondrocalcinosis, multiple sites +C0837861|T047|AB|M11.19|ICD10CM|Familial chondrocalcinosis, multiple sites|Familial chondrocalcinosis, multiple sites +C0553730|T047|ET|M11.2|ICD10CM|Chondrocalcinosis NOS|Chondrocalcinosis NOS +C0477548|T047|HT|M11.2|ICD10CM|Other chondrocalcinosis|Other chondrocalcinosis +C0477548|T047|AB|M11.2|ICD10CM|Other chondrocalcinosis|Other chondrocalcinosis +C0477548|T047|PT|M11.2|ICD10|Other chondrocalcinosis|Other chondrocalcinosis +C0837880|T047|AB|M11.20|ICD10CM|Other chondrocalcinosis, unspecified site|Other chondrocalcinosis, unspecified site +C0837880|T047|PT|M11.20|ICD10CM|Other chondrocalcinosis, unspecified site|Other chondrocalcinosis, unspecified site +C2893578|T047|AB|M11.21|ICD10CM|Other chondrocalcinosis, shoulder|Other chondrocalcinosis, shoulder +C2893578|T047|HT|M11.21|ICD10CM|Other chondrocalcinosis, shoulder|Other chondrocalcinosis, shoulder +C2893579|T047|AB|M11.211|ICD10CM|Other chondrocalcinosis, right shoulder|Other chondrocalcinosis, right shoulder +C2893579|T047|PT|M11.211|ICD10CM|Other chondrocalcinosis, right shoulder|Other chondrocalcinosis, right shoulder +C2893580|T047|AB|M11.212|ICD10CM|Other chondrocalcinosis, left shoulder|Other chondrocalcinosis, left shoulder +C2893580|T047|PT|M11.212|ICD10CM|Other chondrocalcinosis, left shoulder|Other chondrocalcinosis, left shoulder +C2893581|T047|AB|M11.219|ICD10CM|Other chondrocalcinosis, unspecified shoulder|Other chondrocalcinosis, unspecified shoulder +C2893581|T047|PT|M11.219|ICD10CM|Other chondrocalcinosis, unspecified shoulder|Other chondrocalcinosis, unspecified shoulder +C2893582|T047|AB|M11.22|ICD10CM|Other chondrocalcinosis, elbow|Other chondrocalcinosis, elbow +C2893582|T047|HT|M11.22|ICD10CM|Other chondrocalcinosis, elbow|Other chondrocalcinosis, elbow +C2893583|T047|AB|M11.221|ICD10CM|Other chondrocalcinosis, right elbow|Other chondrocalcinosis, right elbow +C2893583|T047|PT|M11.221|ICD10CM|Other chondrocalcinosis, right elbow|Other chondrocalcinosis, right elbow +C2893584|T047|AB|M11.222|ICD10CM|Other chondrocalcinosis, left elbow|Other chondrocalcinosis, left elbow +C2893584|T047|PT|M11.222|ICD10CM|Other chondrocalcinosis, left elbow|Other chondrocalcinosis, left elbow +C2893585|T047|AB|M11.229|ICD10CM|Other chondrocalcinosis, unspecified elbow|Other chondrocalcinosis, unspecified elbow +C2893585|T047|PT|M11.229|ICD10CM|Other chondrocalcinosis, unspecified elbow|Other chondrocalcinosis, unspecified elbow +C2893586|T047|AB|M11.23|ICD10CM|Other chondrocalcinosis, wrist|Other chondrocalcinosis, wrist +C2893586|T047|HT|M11.23|ICD10CM|Other chondrocalcinosis, wrist|Other chondrocalcinosis, wrist +C2893587|T047|AB|M11.231|ICD10CM|Other chondrocalcinosis, right wrist|Other chondrocalcinosis, right wrist +C2893587|T047|PT|M11.231|ICD10CM|Other chondrocalcinosis, right wrist|Other chondrocalcinosis, right wrist +C2893588|T047|AB|M11.232|ICD10CM|Other chondrocalcinosis, left wrist|Other chondrocalcinosis, left wrist +C2893588|T047|PT|M11.232|ICD10CM|Other chondrocalcinosis, left wrist|Other chondrocalcinosis, left wrist +C2893586|T047|AB|M11.239|ICD10CM|Other chondrocalcinosis, unspecified wrist|Other chondrocalcinosis, unspecified wrist +C2893586|T047|PT|M11.239|ICD10CM|Other chondrocalcinosis, unspecified wrist|Other chondrocalcinosis, unspecified wrist +C0837875|T047|HT|M11.24|ICD10CM|Other chondrocalcinosis, hand|Other chondrocalcinosis, hand +C0837875|T047|AB|M11.24|ICD10CM|Other chondrocalcinosis, hand|Other chondrocalcinosis, hand +C2893589|T047|AB|M11.241|ICD10CM|Other chondrocalcinosis, right hand|Other chondrocalcinosis, right hand +C2893589|T047|PT|M11.241|ICD10CM|Other chondrocalcinosis, right hand|Other chondrocalcinosis, right hand +C2893590|T047|AB|M11.242|ICD10CM|Other chondrocalcinosis, left hand|Other chondrocalcinosis, left hand +C2893590|T047|PT|M11.242|ICD10CM|Other chondrocalcinosis, left hand|Other chondrocalcinosis, left hand +C2893591|T047|AB|M11.249|ICD10CM|Other chondrocalcinosis, unspecified hand|Other chondrocalcinosis, unspecified hand +C2893591|T047|PT|M11.249|ICD10CM|Other chondrocalcinosis, unspecified hand|Other chondrocalcinosis, unspecified hand +C2893592|T047|AB|M11.25|ICD10CM|Other chondrocalcinosis, hip|Other chondrocalcinosis, hip +C2893592|T047|HT|M11.25|ICD10CM|Other chondrocalcinosis, hip|Other chondrocalcinosis, hip +C2893593|T047|AB|M11.251|ICD10CM|Other chondrocalcinosis, right hip|Other chondrocalcinosis, right hip +C2893593|T047|PT|M11.251|ICD10CM|Other chondrocalcinosis, right hip|Other chondrocalcinosis, right hip +C2893594|T047|AB|M11.252|ICD10CM|Other chondrocalcinosis, left hip|Other chondrocalcinosis, left hip +C2893594|T047|PT|M11.252|ICD10CM|Other chondrocalcinosis, left hip|Other chondrocalcinosis, left hip +C2893595|T047|AB|M11.259|ICD10CM|Other chondrocalcinosis, unspecified hip|Other chondrocalcinosis, unspecified hip +C2893595|T047|PT|M11.259|ICD10CM|Other chondrocalcinosis, unspecified hip|Other chondrocalcinosis, unspecified hip +C2893598|T047|AB|M11.26|ICD10CM|Other chondrocalcinosis, knee|Other chondrocalcinosis, knee +C2893598|T047|HT|M11.26|ICD10CM|Other chondrocalcinosis, knee|Other chondrocalcinosis, knee +C2893596|T047|AB|M11.261|ICD10CM|Other chondrocalcinosis, right knee|Other chondrocalcinosis, right knee +C2893596|T047|PT|M11.261|ICD10CM|Other chondrocalcinosis, right knee|Other chondrocalcinosis, right knee +C2893597|T047|AB|M11.262|ICD10CM|Other chondrocalcinosis, left knee|Other chondrocalcinosis, left knee +C2893597|T047|PT|M11.262|ICD10CM|Other chondrocalcinosis, left knee|Other chondrocalcinosis, left knee +C2893598|T047|AB|M11.269|ICD10CM|Other chondrocalcinosis, unspecified knee|Other chondrocalcinosis, unspecified knee +C2893598|T047|PT|M11.269|ICD10CM|Other chondrocalcinosis, unspecified knee|Other chondrocalcinosis, unspecified knee +C0837878|T047|HT|M11.27|ICD10CM|Other chondrocalcinosis, ankle and foot|Other chondrocalcinosis, ankle and foot +C0837878|T047|AB|M11.27|ICD10CM|Other chondrocalcinosis, ankle and foot|Other chondrocalcinosis, ankle and foot +C2893599|T047|AB|M11.271|ICD10CM|Other chondrocalcinosis, right ankle and foot|Other chondrocalcinosis, right ankle and foot +C2893599|T047|PT|M11.271|ICD10CM|Other chondrocalcinosis, right ankle and foot|Other chondrocalcinosis, right ankle and foot +C2893600|T047|AB|M11.272|ICD10CM|Other chondrocalcinosis, left ankle and foot|Other chondrocalcinosis, left ankle and foot +C2893600|T047|PT|M11.272|ICD10CM|Other chondrocalcinosis, left ankle and foot|Other chondrocalcinosis, left ankle and foot +C0837878|T047|AB|M11.279|ICD10CM|Other chondrocalcinosis, unspecified ankle and foot|Other chondrocalcinosis, unspecified ankle and foot +C0837878|T047|PT|M11.279|ICD10CM|Other chondrocalcinosis, unspecified ankle and foot|Other chondrocalcinosis, unspecified ankle and foot +C2893601|T047|AB|M11.28|ICD10CM|Other chondrocalcinosis, vertebrae|Other chondrocalcinosis, vertebrae +C2893601|T047|PT|M11.28|ICD10CM|Other chondrocalcinosis, vertebrae|Other chondrocalcinosis, vertebrae +C0837871|T047|PT|M11.29|ICD10CM|Other chondrocalcinosis, multiple sites|Other chondrocalcinosis, multiple sites +C0837871|T047|AB|M11.29|ICD10CM|Other chondrocalcinosis, multiple sites|Other chondrocalcinosis, multiple sites +C0157884|T047|PT|M11.8|ICD10|Other specified crystal arthropathies|Other specified crystal arthropathies +C0157884|T047|HT|M11.8|ICD10CM|Other specified crystal arthropathies|Other specified crystal arthropathies +C0157884|T047|AB|M11.8|ICD10CM|Other specified crystal arthropathies|Other specified crystal arthropathies +C0157884|T047|AB|M11.80|ICD10CM|Other specified crystal arthropathies, unspecified site|Other specified crystal arthropathies, unspecified site +C0157884|T047|PT|M11.80|ICD10CM|Other specified crystal arthropathies, unspecified site|Other specified crystal arthropathies, unspecified site +C2893602|T047|AB|M11.81|ICD10CM|Other specified crystal arthropathies, shoulder|Other specified crystal arthropathies, shoulder +C2893602|T047|HT|M11.81|ICD10CM|Other specified crystal arthropathies, shoulder|Other specified crystal arthropathies, shoulder +C2893603|T047|AB|M11.811|ICD10CM|Other specified crystal arthropathies, right shoulder|Other specified crystal arthropathies, right shoulder +C2893603|T047|PT|M11.811|ICD10CM|Other specified crystal arthropathies, right shoulder|Other specified crystal arthropathies, right shoulder +C2893604|T047|AB|M11.812|ICD10CM|Other specified crystal arthropathies, left shoulder|Other specified crystal arthropathies, left shoulder +C2893604|T047|PT|M11.812|ICD10CM|Other specified crystal arthropathies, left shoulder|Other specified crystal arthropathies, left shoulder +C2893605|T047|AB|M11.819|ICD10CM|Other specified crystal arthropathies, unspecified shoulder|Other specified crystal arthropathies, unspecified shoulder +C2893605|T047|PT|M11.819|ICD10CM|Other specified crystal arthropathies, unspecified shoulder|Other specified crystal arthropathies, unspecified shoulder +C2893606|T047|AB|M11.82|ICD10CM|Other specified crystal arthropathies, elbow|Other specified crystal arthropathies, elbow +C2893606|T047|HT|M11.82|ICD10CM|Other specified crystal arthropathies, elbow|Other specified crystal arthropathies, elbow +C2893607|T047|AB|M11.821|ICD10CM|Other specified crystal arthropathies, right elbow|Other specified crystal arthropathies, right elbow +C2893607|T047|PT|M11.821|ICD10CM|Other specified crystal arthropathies, right elbow|Other specified crystal arthropathies, right elbow +C2893608|T047|AB|M11.822|ICD10CM|Other specified crystal arthropathies, left elbow|Other specified crystal arthropathies, left elbow +C2893608|T047|PT|M11.822|ICD10CM|Other specified crystal arthropathies, left elbow|Other specified crystal arthropathies, left elbow +C2893609|T047|AB|M11.829|ICD10CM|Other specified crystal arthropathies, unspecified elbow|Other specified crystal arthropathies, unspecified elbow +C2893609|T047|PT|M11.829|ICD10CM|Other specified crystal arthropathies, unspecified elbow|Other specified crystal arthropathies, unspecified elbow +C2893610|T047|AB|M11.83|ICD10CM|Other specified crystal arthropathies, wrist|Other specified crystal arthropathies, wrist +C2893610|T047|HT|M11.83|ICD10CM|Other specified crystal arthropathies, wrist|Other specified crystal arthropathies, wrist +C2893611|T047|AB|M11.831|ICD10CM|Other specified crystal arthropathies, right wrist|Other specified crystal arthropathies, right wrist +C2893611|T047|PT|M11.831|ICD10CM|Other specified crystal arthropathies, right wrist|Other specified crystal arthropathies, right wrist +C2893612|T047|AB|M11.832|ICD10CM|Other specified crystal arthropathies, left wrist|Other specified crystal arthropathies, left wrist +C2893612|T047|PT|M11.832|ICD10CM|Other specified crystal arthropathies, left wrist|Other specified crystal arthropathies, left wrist +C2893613|T047|AB|M11.839|ICD10CM|Other specified crystal arthropathies, unspecified wrist|Other specified crystal arthropathies, unspecified wrist +C2893613|T047|PT|M11.839|ICD10CM|Other specified crystal arthropathies, unspecified wrist|Other specified crystal arthropathies, unspecified wrist +C0837885|T047|HT|M11.84|ICD10CM|Other specified crystal arthropathies, hand|Other specified crystal arthropathies, hand +C0837885|T047|AB|M11.84|ICD10CM|Other specified crystal arthropathies, hand|Other specified crystal arthropathies, hand +C2893614|T047|AB|M11.841|ICD10CM|Other specified crystal arthropathies, right hand|Other specified crystal arthropathies, right hand +C2893614|T047|PT|M11.841|ICD10CM|Other specified crystal arthropathies, right hand|Other specified crystal arthropathies, right hand +C2893615|T047|AB|M11.842|ICD10CM|Other specified crystal arthropathies, left hand|Other specified crystal arthropathies, left hand +C2893615|T047|PT|M11.842|ICD10CM|Other specified crystal arthropathies, left hand|Other specified crystal arthropathies, left hand +C0837885|T047|AB|M11.849|ICD10CM|Other specified crystal arthropathies, unspecified hand|Other specified crystal arthropathies, unspecified hand +C0837885|T047|PT|M11.849|ICD10CM|Other specified crystal arthropathies, unspecified hand|Other specified crystal arthropathies, unspecified hand +C2893616|T047|AB|M11.85|ICD10CM|Other specified crystal arthropathies, hip|Other specified crystal arthropathies, hip +C2893616|T047|HT|M11.85|ICD10CM|Other specified crystal arthropathies, hip|Other specified crystal arthropathies, hip +C2893617|T047|AB|M11.851|ICD10CM|Other specified crystal arthropathies, right hip|Other specified crystal arthropathies, right hip +C2893617|T047|PT|M11.851|ICD10CM|Other specified crystal arthropathies, right hip|Other specified crystal arthropathies, right hip +C2893618|T047|AB|M11.852|ICD10CM|Other specified crystal arthropathies, left hip|Other specified crystal arthropathies, left hip +C2893618|T047|PT|M11.852|ICD10CM|Other specified crystal arthropathies, left hip|Other specified crystal arthropathies, left hip +C2893619|T047|AB|M11.859|ICD10CM|Other specified crystal arthropathies, unspecified hip|Other specified crystal arthropathies, unspecified hip +C2893619|T047|PT|M11.859|ICD10CM|Other specified crystal arthropathies, unspecified hip|Other specified crystal arthropathies, unspecified hip +C2893620|T047|AB|M11.86|ICD10CM|Other specified crystal arthropathies, knee|Other specified crystal arthropathies, knee +C2893620|T047|HT|M11.86|ICD10CM|Other specified crystal arthropathies, knee|Other specified crystal arthropathies, knee +C2893621|T047|AB|M11.861|ICD10CM|Other specified crystal arthropathies, right knee|Other specified crystal arthropathies, right knee +C2893621|T047|PT|M11.861|ICD10CM|Other specified crystal arthropathies, right knee|Other specified crystal arthropathies, right knee +C2893622|T047|AB|M11.862|ICD10CM|Other specified crystal arthropathies, left knee|Other specified crystal arthropathies, left knee +C2893622|T047|PT|M11.862|ICD10CM|Other specified crystal arthropathies, left knee|Other specified crystal arthropathies, left knee +C2893623|T047|AB|M11.869|ICD10CM|Other specified crystal arthropathies, unspecified knee|Other specified crystal arthropathies, unspecified knee +C2893623|T047|PT|M11.869|ICD10CM|Other specified crystal arthropathies, unspecified knee|Other specified crystal arthropathies, unspecified knee +C0837888|T047|HT|M11.87|ICD10CM|Other specified crystal arthropathies, ankle and foot|Other specified crystal arthropathies, ankle and foot +C0837888|T047|AB|M11.87|ICD10CM|Other specified crystal arthropathies, ankle and foot|Other specified crystal arthropathies, ankle and foot +C2893624|T047|AB|M11.871|ICD10CM|Other specified crystal arthropathies, right ankle and foot|Other specified crystal arthropathies, right ankle and foot +C2893624|T047|PT|M11.871|ICD10CM|Other specified crystal arthropathies, right ankle and foot|Other specified crystal arthropathies, right ankle and foot +C2893625|T047|AB|M11.872|ICD10CM|Other specified crystal arthropathies, left ankle and foot|Other specified crystal arthropathies, left ankle and foot +C2893625|T047|PT|M11.872|ICD10CM|Other specified crystal arthropathies, left ankle and foot|Other specified crystal arthropathies, left ankle and foot +C2893626|T047|AB|M11.879|ICD10CM|Oth crystal arthropathies, unspecified ankle and foot|Oth crystal arthropathies, unspecified ankle and foot +C2893626|T047|PT|M11.879|ICD10CM|Other specified crystal arthropathies, unspecified ankle and foot|Other specified crystal arthropathies, unspecified ankle and foot +C2893627|T047|AB|M11.88|ICD10CM|Other specified crystal arthropathies, vertebrae|Other specified crystal arthropathies, vertebrae +C2893627|T047|PT|M11.88|ICD10CM|Other specified crystal arthropathies, vertebrae|Other specified crystal arthropathies, vertebrae +C0837881|T047|PT|M11.89|ICD10CM|Other specified crystal arthropathies, multiple sites|Other specified crystal arthropathies, multiple sites +C0837881|T047|AB|M11.89|ICD10CM|Other specified crystal arthropathies, multiple sites|Other specified crystal arthropathies, multiple sites +C0152087|T047|PT|M11.9|ICD10CM|Crystal arthropathy, unspecified|Crystal arthropathy, unspecified +C0152087|T047|AB|M11.9|ICD10CM|Crystal arthropathy, unspecified|Crystal arthropathy, unspecified +C0152087|T047|PT|M11.9|ICD10|Crystal arthropathy, unspecified|Crystal arthropathy, unspecified +C1442831|T047|AB|M12|ICD10CM|Other and unspecified arthropathy|Other and unspecified arthropathy +C1442831|T047|HT|M12|ICD10CM|Other and unspecified arthropathy|Other and unspecified arthropathy +C0029746|T047|HT|M12|ICD10|Other specific arthropathies|Other specific arthropathies +C0152084|T047|PT|M12.0|ICD10|Chronic postrheumatic arthropathy [Jaccoud]|Chronic postrheumatic arthropathy [Jaccoud] +C0152084|T047|HT|M12.0|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud]|Chronic postrheumatic arthropathy [Jaccoud] +C0152084|T047|AB|M12.0|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud]|Chronic postrheumatic arthropathy [Jaccoud] +C0152084|T047|PT|M12.00|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], unspecified site|Chronic postrheumatic arthropathy [Jaccoud], unspecified site +C0152084|T047|AB|M12.00|ICD10CM|Chronic postrheumatic arthropathy, unspecified site|Chronic postrheumatic arthropathy, unspecified site +C2893628|T047|AB|M12.01|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], shoulder|Chronic postrheumatic arthropathy [Jaccoud], shoulder +C2893628|T047|HT|M12.01|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], shoulder|Chronic postrheumatic arthropathy [Jaccoud], shoulder +C2893629|T047|AB|M12.011|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], right shoulder|Chronic postrheumatic arthropathy [Jaccoud], right shoulder +C2893629|T047|PT|M12.011|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], right shoulder|Chronic postrheumatic arthropathy [Jaccoud], right shoulder +C2893630|T047|AB|M12.012|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], left shoulder|Chronic postrheumatic arthropathy [Jaccoud], left shoulder +C2893630|T047|PT|M12.012|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], left shoulder|Chronic postrheumatic arthropathy [Jaccoud], left shoulder +C2893631|T047|PT|M12.019|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], unspecified shoulder|Chronic postrheumatic arthropathy [Jaccoud], unspecified shoulder +C2893631|T047|AB|M12.019|ICD10CM|Chronic postrheumatic arthropathy, unspecified shoulder|Chronic postrheumatic arthropathy, unspecified shoulder +C2893632|T047|AB|M12.02|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], elbow|Chronic postrheumatic arthropathy [Jaccoud], elbow +C2893632|T047|HT|M12.02|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], elbow|Chronic postrheumatic arthropathy [Jaccoud], elbow +C2893633|T047|AB|M12.021|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], right elbow|Chronic postrheumatic arthropathy [Jaccoud], right elbow +C2893633|T047|PT|M12.021|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], right elbow|Chronic postrheumatic arthropathy [Jaccoud], right elbow +C2893634|T047|AB|M12.022|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], left elbow|Chronic postrheumatic arthropathy [Jaccoud], left elbow +C2893634|T047|PT|M12.022|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], left elbow|Chronic postrheumatic arthropathy [Jaccoud], left elbow +C2893635|T047|PT|M12.029|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], unspecified elbow|Chronic postrheumatic arthropathy [Jaccoud], unspecified elbow +C2893635|T047|AB|M12.029|ICD10CM|Chronic postrheumatic arthropathy, unspecified elbow|Chronic postrheumatic arthropathy, unspecified elbow +C2893636|T047|AB|M12.03|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], wrist|Chronic postrheumatic arthropathy [Jaccoud], wrist +C2893636|T047|HT|M12.03|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], wrist|Chronic postrheumatic arthropathy [Jaccoud], wrist +C2893637|T047|AB|M12.031|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], right wrist|Chronic postrheumatic arthropathy [Jaccoud], right wrist +C2893637|T047|PT|M12.031|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], right wrist|Chronic postrheumatic arthropathy [Jaccoud], right wrist +C2893638|T047|AB|M12.032|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], left wrist|Chronic postrheumatic arthropathy [Jaccoud], left wrist +C2893638|T047|PT|M12.032|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], left wrist|Chronic postrheumatic arthropathy [Jaccoud], left wrist +C2893639|T047|PT|M12.039|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], unspecified wrist|Chronic postrheumatic arthropathy [Jaccoud], unspecified wrist +C2893639|T047|AB|M12.039|ICD10CM|Chronic postrheumatic arthropathy, unspecified wrist|Chronic postrheumatic arthropathy, unspecified wrist +C0837902|T047|HT|M12.04|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], hand|Chronic postrheumatic arthropathy [Jaccoud], hand +C0837902|T047|AB|M12.04|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], hand|Chronic postrheumatic arthropathy [Jaccoud], hand +C2893640|T047|AB|M12.041|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], right hand|Chronic postrheumatic arthropathy [Jaccoud], right hand +C2893640|T047|PT|M12.041|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], right hand|Chronic postrheumatic arthropathy [Jaccoud], right hand +C2893641|T047|AB|M12.042|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], left hand|Chronic postrheumatic arthropathy [Jaccoud], left hand +C2893641|T047|PT|M12.042|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], left hand|Chronic postrheumatic arthropathy [Jaccoud], left hand +C2893642|T047|PT|M12.049|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], unspecified hand|Chronic postrheumatic arthropathy [Jaccoud], unspecified hand +C2893642|T047|AB|M12.049|ICD10CM|Chronic postrheumatic arthropathy, unspecified hand|Chronic postrheumatic arthropathy, unspecified hand +C2893643|T047|AB|M12.05|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], hip|Chronic postrheumatic arthropathy [Jaccoud], hip +C2893643|T047|HT|M12.05|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], hip|Chronic postrheumatic arthropathy [Jaccoud], hip +C2893644|T047|AB|M12.051|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], right hip|Chronic postrheumatic arthropathy [Jaccoud], right hip +C2893644|T047|PT|M12.051|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], right hip|Chronic postrheumatic arthropathy [Jaccoud], right hip +C2893645|T047|AB|M12.052|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], left hip|Chronic postrheumatic arthropathy [Jaccoud], left hip +C2893645|T047|PT|M12.052|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], left hip|Chronic postrheumatic arthropathy [Jaccoud], left hip +C2893646|T047|AB|M12.059|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], unspecified hip|Chronic postrheumatic arthropathy [Jaccoud], unspecified hip +C2893646|T047|PT|M12.059|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], unspecified hip|Chronic postrheumatic arthropathy [Jaccoud], unspecified hip +C2893647|T047|AB|M12.06|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], knee|Chronic postrheumatic arthropathy [Jaccoud], knee +C2893647|T047|HT|M12.06|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], knee|Chronic postrheumatic arthropathy [Jaccoud], knee +C2893648|T047|AB|M12.061|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], right knee|Chronic postrheumatic arthropathy [Jaccoud], right knee +C2893648|T047|PT|M12.061|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], right knee|Chronic postrheumatic arthropathy [Jaccoud], right knee +C2893649|T047|AB|M12.062|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], left knee|Chronic postrheumatic arthropathy [Jaccoud], left knee +C2893649|T047|PT|M12.062|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], left knee|Chronic postrheumatic arthropathy [Jaccoud], left knee +C2893650|T047|PT|M12.069|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], unspecified knee|Chronic postrheumatic arthropathy [Jaccoud], unspecified knee +C2893650|T047|AB|M12.069|ICD10CM|Chronic postrheumatic arthropathy, unspecified knee|Chronic postrheumatic arthropathy, unspecified knee +C0837905|T047|HT|M12.07|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], ankle and foot|Chronic postrheumatic arthropathy [Jaccoud], ankle and foot +C0837905|T047|AB|M12.07|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], ankle and foot|Chronic postrheumatic arthropathy [Jaccoud], ankle and foot +C2893651|T047|PT|M12.071|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], right ankle and foot|Chronic postrheumatic arthropathy [Jaccoud], right ankle and foot +C2893651|T047|AB|M12.071|ICD10CM|Chronic postrheumatic arthropathy, right ankle and foot|Chronic postrheumatic arthropathy, right ankle and foot +C2893652|T047|PT|M12.072|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], left ankle and foot|Chronic postrheumatic arthropathy [Jaccoud], left ankle and foot +C2893652|T047|AB|M12.072|ICD10CM|Chronic postrheumatic arthropathy, left ankle and foot|Chronic postrheumatic arthropathy, left ankle and foot +C2893653|T047|PT|M12.079|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], unspecified ankle and foot|Chronic postrheumatic arthropathy [Jaccoud], unspecified ankle and foot +C2893653|T047|AB|M12.079|ICD10CM|Chronic postrheumatic arthropathy, unsp ankle and foot|Chronic postrheumatic arthropathy, unsp ankle and foot +C3696796|T047|PT|M12.08|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], other specified site|Chronic postrheumatic arthropathy [Jaccoud], other specified site +C2893654|T047|ET|M12.08|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], vertebrae|Chronic postrheumatic arthropathy [Jaccoud], vertebrae +C3696796|T047|AB|M12.08|ICD10CM|Chronic postrheumatic arthropathy, other specified site|Chronic postrheumatic arthropathy, other specified site +C0837898|T047|PT|M12.09|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], multiple sites|Chronic postrheumatic arthropathy [Jaccoud], multiple sites +C0837898|T047|AB|M12.09|ICD10CM|Chronic postrheumatic arthropathy [Jaccoud], multiple sites|Chronic postrheumatic arthropathy [Jaccoud], multiple sites +C2745963|T047|PT|M12.1|ICD10|Kaschin-Beck disease|Kaschin-Beck disease +C2745963|T047|HT|M12.1|ICD10CM|Kaschin-Beck disease|Kaschin-Beck disease +C2745963|T047|AB|M12.1|ICD10CM|Kaschin-Beck disease|Kaschin-Beck disease +C2893655|T047|ET|M12.1|ICD10CM|Osteochondroarthrosis deformans endemica|Osteochondroarthrosis deformans endemica +C2745963|T047|AB|M12.10|ICD10CM|Kaschin-Beck disease, unspecified site|Kaschin-Beck disease, unspecified site +C2745963|T047|PT|M12.10|ICD10CM|Kaschin-Beck disease, unspecified site|Kaschin-Beck disease, unspecified site +C0157969|T047|AB|M12.11|ICD10CM|Kaschin-Beck disease, shoulder|Kaschin-Beck disease, shoulder +C0157969|T047|HT|M12.11|ICD10CM|Kaschin-Beck disease, shoulder|Kaschin-Beck disease, shoulder +C2893656|T047|AB|M12.111|ICD10CM|Kaschin-Beck disease, right shoulder|Kaschin-Beck disease, right shoulder +C2893656|T047|PT|M12.111|ICD10CM|Kaschin-Beck disease, right shoulder|Kaschin-Beck disease, right shoulder +C2893657|T047|AB|M12.112|ICD10CM|Kaschin-Beck disease, left shoulder|Kaschin-Beck disease, left shoulder +C2893657|T047|PT|M12.112|ICD10CM|Kaschin-Beck disease, left shoulder|Kaschin-Beck disease, left shoulder +C2893658|T047|AB|M12.119|ICD10CM|Kaschin-Beck disease, unspecified shoulder|Kaschin-Beck disease, unspecified shoulder +C2893658|T047|PT|M12.119|ICD10CM|Kaschin-Beck disease, unspecified shoulder|Kaschin-Beck disease, unspecified shoulder +C2105240|T047|AB|M12.12|ICD10CM|Kaschin-Beck disease, elbow|Kaschin-Beck disease, elbow +C2105240|T047|HT|M12.12|ICD10CM|Kaschin-Beck disease, elbow|Kaschin-Beck disease, elbow +C2893659|T047|AB|M12.121|ICD10CM|Kaschin-Beck disease, right elbow|Kaschin-Beck disease, right elbow +C2893659|T047|PT|M12.121|ICD10CM|Kaschin-Beck disease, right elbow|Kaschin-Beck disease, right elbow +C2893660|T047|AB|M12.122|ICD10CM|Kaschin-Beck disease, left elbow|Kaschin-Beck disease, left elbow +C2893660|T047|PT|M12.122|ICD10CM|Kaschin-Beck disease, left elbow|Kaschin-Beck disease, left elbow +C2893661|T047|AB|M12.129|ICD10CM|Kaschin-Beck disease, unspecified elbow|Kaschin-Beck disease, unspecified elbow +C2893661|T047|PT|M12.129|ICD10CM|Kaschin-Beck disease, unspecified elbow|Kaschin-Beck disease, unspecified elbow +C2105241|T047|AB|M12.13|ICD10CM|Kaschin-Beck disease, wrist|Kaschin-Beck disease, wrist +C2105241|T047|HT|M12.13|ICD10CM|Kaschin-Beck disease, wrist|Kaschin-Beck disease, wrist +C2893662|T047|AB|M12.131|ICD10CM|Kaschin-Beck disease, right wrist|Kaschin-Beck disease, right wrist +C2893662|T047|PT|M12.131|ICD10CM|Kaschin-Beck disease, right wrist|Kaschin-Beck disease, right wrist +C2893663|T047|AB|M12.132|ICD10CM|Kaschin-Beck disease, left wrist|Kaschin-Beck disease, left wrist +C2893663|T047|PT|M12.132|ICD10CM|Kaschin-Beck disease, left wrist|Kaschin-Beck disease, left wrist +C2893664|T047|AB|M12.139|ICD10CM|Kaschin-Beck disease, unspecified wrist|Kaschin-Beck disease, unspecified wrist +C2893664|T047|PT|M12.139|ICD10CM|Kaschin-Beck disease, unspecified wrist|Kaschin-Beck disease, unspecified wrist +C0157972|T047|HT|M12.14|ICD10CM|Kaschin-Beck disease, hand|Kaschin-Beck disease, hand +C0157972|T047|AB|M12.14|ICD10CM|Kaschin-Beck disease, hand|Kaschin-Beck disease, hand +C2893665|T047|AB|M12.141|ICD10CM|Kaschin-Beck disease, right hand|Kaschin-Beck disease, right hand +C2893665|T047|PT|M12.141|ICD10CM|Kaschin-Beck disease, right hand|Kaschin-Beck disease, right hand +C2893666|T047|AB|M12.142|ICD10CM|Kaschin-Beck disease, left hand|Kaschin-Beck disease, left hand +C2893666|T047|PT|M12.142|ICD10CM|Kaschin-Beck disease, left hand|Kaschin-Beck disease, left hand +C0157972|T047|AB|M12.149|ICD10CM|Kaschin-Beck disease, unspecified hand|Kaschin-Beck disease, unspecified hand +C0157972|T047|PT|M12.149|ICD10CM|Kaschin-Beck disease, unspecified hand|Kaschin-Beck disease, unspecified hand +C2105242|T047|AB|M12.15|ICD10CM|Kaschin-Beck disease, hip|Kaschin-Beck disease, hip +C2105242|T047|HT|M12.15|ICD10CM|Kaschin-Beck disease, hip|Kaschin-Beck disease, hip +C2893667|T047|AB|M12.151|ICD10CM|Kaschin-Beck disease, right hip|Kaschin-Beck disease, right hip +C2893667|T047|PT|M12.151|ICD10CM|Kaschin-Beck disease, right hip|Kaschin-Beck disease, right hip +C2893668|T047|AB|M12.152|ICD10CM|Kaschin-Beck disease, left hip|Kaschin-Beck disease, left hip +C2893668|T047|PT|M12.152|ICD10CM|Kaschin-Beck disease, left hip|Kaschin-Beck disease, left hip +C2893669|T047|AB|M12.159|ICD10CM|Kaschin-Beck disease, unspecified hip|Kaschin-Beck disease, unspecified hip +C2893669|T047|PT|M12.159|ICD10CM|Kaschin-Beck disease, unspecified hip|Kaschin-Beck disease, unspecified hip +C2105243|T047|AB|M12.16|ICD10CM|Kaschin-Beck disease, knee|Kaschin-Beck disease, knee +C2105243|T047|HT|M12.16|ICD10CM|Kaschin-Beck disease, knee|Kaschin-Beck disease, knee +C2893670|T047|AB|M12.161|ICD10CM|Kaschin-Beck disease, right knee|Kaschin-Beck disease, right knee +C2893670|T047|PT|M12.161|ICD10CM|Kaschin-Beck disease, right knee|Kaschin-Beck disease, right knee +C2893671|T047|AB|M12.162|ICD10CM|Kaschin-Beck disease, left knee|Kaschin-Beck disease, left knee +C2893671|T047|PT|M12.162|ICD10CM|Kaschin-Beck disease, left knee|Kaschin-Beck disease, left knee +C2893672|T047|AB|M12.169|ICD10CM|Kaschin-Beck disease, unspecified knee|Kaschin-Beck disease, unspecified knee +C2893672|T047|PT|M12.169|ICD10CM|Kaschin-Beck disease, unspecified knee|Kaschin-Beck disease, unspecified knee +C0409969|T047|HT|M12.17|ICD10CM|Kaschin-Beck disease, ankle and foot|Kaschin-Beck disease, ankle and foot +C0409969|T047|AB|M12.17|ICD10CM|Kaschin-Beck disease, ankle and foot|Kaschin-Beck disease, ankle and foot +C2893673|T047|AB|M12.171|ICD10CM|Kaschin-Beck disease, right ankle and foot|Kaschin-Beck disease, right ankle and foot +C2893673|T047|PT|M12.171|ICD10CM|Kaschin-Beck disease, right ankle and foot|Kaschin-Beck disease, right ankle and foot +C2893674|T047|AB|M12.172|ICD10CM|Kaschin-Beck disease, left ankle and foot|Kaschin-Beck disease, left ankle and foot +C2893674|T047|PT|M12.172|ICD10CM|Kaschin-Beck disease, left ankle and foot|Kaschin-Beck disease, left ankle and foot +C2893675|T047|AB|M12.179|ICD10CM|Kaschin-Beck disease, unspecified ankle and foot|Kaschin-Beck disease, unspecified ankle and foot +C2893675|T047|PT|M12.179|ICD10CM|Kaschin-Beck disease, unspecified ankle and foot|Kaschin-Beck disease, unspecified ankle and foot +C2893676|T047|AB|M12.18|ICD10CM|Kaschin-Beck disease, vertebrae|Kaschin-Beck disease, vertebrae +C2893676|T047|PT|M12.18|ICD10CM|Kaschin-Beck disease, vertebrae|Kaschin-Beck disease, vertebrae +C0157977|T047|PT|M12.19|ICD10CM|Kaschin-Beck disease, multiple sites|Kaschin-Beck disease, multiple sites +C0157977|T047|AB|M12.19|ICD10CM|Kaschin-Beck disease, multiple sites|Kaschin-Beck disease, multiple sites +C0039106|T191|HT|M12.2|ICD10CM|Villonodular synovitis (pigmented)|Villonodular synovitis (pigmented) +C0039106|T191|AB|M12.2|ICD10CM|Villonodular synovitis (pigmented)|Villonodular synovitis (pigmented) +C0039106|T191|PT|M12.2|ICD10|Villonodular synovitis (pigmented)|Villonodular synovitis (pigmented) +C0158168|T047|AB|M12.20|ICD10CM|Villonodular synovitis (pigmented), unspecified site|Villonodular synovitis (pigmented), unspecified site +C0158168|T047|PT|M12.20|ICD10CM|Villonodular synovitis (pigmented), unspecified site|Villonodular synovitis (pigmented), unspecified site +C0409789|T191|AB|M12.21|ICD10CM|Villonodular synovitis (pigmented), shoulder|Villonodular synovitis (pigmented), shoulder +C0409789|T191|HT|M12.21|ICD10CM|Villonodular synovitis (pigmented), shoulder|Villonodular synovitis (pigmented), shoulder +C2893677|T191|AB|M12.211|ICD10CM|Villonodular synovitis (pigmented), right shoulder|Villonodular synovitis (pigmented), right shoulder +C2893677|T191|PT|M12.211|ICD10CM|Villonodular synovitis (pigmented), right shoulder|Villonodular synovitis (pigmented), right shoulder +C2893678|T191|AB|M12.212|ICD10CM|Villonodular synovitis (pigmented), left shoulder|Villonodular synovitis (pigmented), left shoulder +C2893678|T191|PT|M12.212|ICD10CM|Villonodular synovitis (pigmented), left shoulder|Villonodular synovitis (pigmented), left shoulder +C2893679|T191|AB|M12.219|ICD10CM|Villonodular synovitis (pigmented), unspecified shoulder|Villonodular synovitis (pigmented), unspecified shoulder +C2893679|T191|PT|M12.219|ICD10CM|Villonodular synovitis (pigmented), unspecified shoulder|Villonodular synovitis (pigmented), unspecified shoulder +C2081399|T191|AB|M12.22|ICD10CM|Villonodular synovitis (pigmented), elbow|Villonodular synovitis (pigmented), elbow +C2081399|T191|HT|M12.22|ICD10CM|Villonodular synovitis (pigmented), elbow|Villonodular synovitis (pigmented), elbow +C2893680|T191|AB|M12.221|ICD10CM|Villonodular synovitis (pigmented), right elbow|Villonodular synovitis (pigmented), right elbow +C2893680|T191|PT|M12.221|ICD10CM|Villonodular synovitis (pigmented), right elbow|Villonodular synovitis (pigmented), right elbow +C2893681|T191|AB|M12.222|ICD10CM|Villonodular synovitis (pigmented), left elbow|Villonodular synovitis (pigmented), left elbow +C2893681|T191|PT|M12.222|ICD10CM|Villonodular synovitis (pigmented), left elbow|Villonodular synovitis (pigmented), left elbow +C2893682|T191|AB|M12.229|ICD10CM|Villonodular synovitis (pigmented), unspecified elbow|Villonodular synovitis (pigmented), unspecified elbow +C2893682|T191|PT|M12.229|ICD10CM|Villonodular synovitis (pigmented), unspecified elbow|Villonodular synovitis (pigmented), unspecified elbow +C0409785|T191|AB|M12.23|ICD10CM|Villonodular synovitis (pigmented), wrist|Villonodular synovitis (pigmented), wrist +C0409785|T191|HT|M12.23|ICD10CM|Villonodular synovitis (pigmented), wrist|Villonodular synovitis (pigmented), wrist +C2893683|T191|AB|M12.231|ICD10CM|Villonodular synovitis (pigmented), right wrist|Villonodular synovitis (pigmented), right wrist +C2893683|T191|PT|M12.231|ICD10CM|Villonodular synovitis (pigmented), right wrist|Villonodular synovitis (pigmented), right wrist +C2893684|T191|AB|M12.232|ICD10CM|Villonodular synovitis (pigmented), left wrist|Villonodular synovitis (pigmented), left wrist +C2893684|T191|PT|M12.232|ICD10CM|Villonodular synovitis (pigmented), left wrist|Villonodular synovitis (pigmented), left wrist +C2893685|T191|AB|M12.239|ICD10CM|Villonodular synovitis (pigmented), unspecified wrist|Villonodular synovitis (pigmented), unspecified wrist +C2893685|T191|PT|M12.239|ICD10CM|Villonodular synovitis (pigmented), unspecified wrist|Villonodular synovitis (pigmented), unspecified wrist +C0409780|T191|HT|M12.24|ICD10CM|Villonodular synovitis (pigmented), hand|Villonodular synovitis (pigmented), hand +C0409780|T191|AB|M12.24|ICD10CM|Villonodular synovitis (pigmented), hand|Villonodular synovitis (pigmented), hand +C2893686|T191|AB|M12.241|ICD10CM|Villonodular synovitis (pigmented), right hand|Villonodular synovitis (pigmented), right hand +C2893686|T191|PT|M12.241|ICD10CM|Villonodular synovitis (pigmented), right hand|Villonodular synovitis (pigmented), right hand +C2893687|T191|AB|M12.242|ICD10CM|Villonodular synovitis (pigmented), left hand|Villonodular synovitis (pigmented), left hand +C2893687|T191|PT|M12.242|ICD10CM|Villonodular synovitis (pigmented), left hand|Villonodular synovitis (pigmented), left hand +C2893688|T191|AB|M12.249|ICD10CM|Villonodular synovitis (pigmented), unspecified hand|Villonodular synovitis (pigmented), unspecified hand +C2893688|T191|PT|M12.249|ICD10CM|Villonodular synovitis (pigmented), unspecified hand|Villonodular synovitis (pigmented), unspecified hand +C4083069|T047|AB|M12.25|ICD10CM|Villonodular synovitis (pigmented), hip|Villonodular synovitis (pigmented), hip +C4083069|T047|HT|M12.25|ICD10CM|Villonodular synovitis (pigmented), hip|Villonodular synovitis (pigmented), hip +C2893689|T191|AB|M12.251|ICD10CM|Villonodular synovitis (pigmented), right hip|Villonodular synovitis (pigmented), right hip +C2893689|T191|PT|M12.251|ICD10CM|Villonodular synovitis (pigmented), right hip|Villonodular synovitis (pigmented), right hip +C2893690|T191|AB|M12.252|ICD10CM|Villonodular synovitis (pigmented), left hip|Villonodular synovitis (pigmented), left hip +C2893690|T191|PT|M12.252|ICD10CM|Villonodular synovitis (pigmented), left hip|Villonodular synovitis (pigmented), left hip +C2893691|T191|AB|M12.259|ICD10CM|Villonodular synovitis (pigmented), unspecified hip|Villonodular synovitis (pigmented), unspecified hip +C2893691|T191|PT|M12.259|ICD10CM|Villonodular synovitis (pigmented), unspecified hip|Villonodular synovitis (pigmented), unspecified hip +C0409777|T191|AB|M12.26|ICD10CM|Villonodular synovitis (pigmented), knee|Villonodular synovitis (pigmented), knee +C0409777|T191|HT|M12.26|ICD10CM|Villonodular synovitis (pigmented), knee|Villonodular synovitis (pigmented), knee +C2893692|T191|AB|M12.261|ICD10CM|Villonodular synovitis (pigmented), right knee|Villonodular synovitis (pigmented), right knee +C2893692|T191|PT|M12.261|ICD10CM|Villonodular synovitis (pigmented), right knee|Villonodular synovitis (pigmented), right knee +C2893693|T191|AB|M12.262|ICD10CM|Villonodular synovitis (pigmented), left knee|Villonodular synovitis (pigmented), left knee +C2893693|T191|PT|M12.262|ICD10CM|Villonodular synovitis (pigmented), left knee|Villonodular synovitis (pigmented), left knee +C2893694|T191|AB|M12.269|ICD10CM|Villonodular synovitis (pigmented), unspecified knee|Villonodular synovitis (pigmented), unspecified knee +C2893694|T191|PT|M12.269|ICD10CM|Villonodular synovitis (pigmented), unspecified knee|Villonodular synovitis (pigmented), unspecified knee +C0409766|T191|HT|M12.27|ICD10CM|Villonodular synovitis (pigmented), ankle and foot|Villonodular synovitis (pigmented), ankle and foot +C0409766|T191|AB|M12.27|ICD10CM|Villonodular synovitis (pigmented), ankle and foot|Villonodular synovitis (pigmented), ankle and foot +C2893695|T191|AB|M12.271|ICD10CM|Villonodular synovitis (pigmented), right ankle and foot|Villonodular synovitis (pigmented), right ankle and foot +C2893695|T191|PT|M12.271|ICD10CM|Villonodular synovitis (pigmented), right ankle and foot|Villonodular synovitis (pigmented), right ankle and foot +C2893696|T191|AB|M12.272|ICD10CM|Villonodular synovitis (pigmented), left ankle and foot|Villonodular synovitis (pigmented), left ankle and foot +C2893696|T191|PT|M12.272|ICD10CM|Villonodular synovitis (pigmented), left ankle and foot|Villonodular synovitis (pigmented), left ankle and foot +C2893697|T191|AB|M12.279|ICD10CM|Villonodular synovitis (pigmented), unsp ankle and foot|Villonodular synovitis (pigmented), unsp ankle and foot +C2893697|T191|PT|M12.279|ICD10CM|Villonodular synovitis (pigmented), unspecified ankle and foot|Villonodular synovitis (pigmented), unspecified ankle and foot +C3696795|T047|AB|M12.28|ICD10CM|Villonodular synovitis (pigmented), other specified site|Villonodular synovitis (pigmented), other specified site +C3696795|T047|PT|M12.28|ICD10CM|Villonodular synovitis (pigmented), other specified site|Villonodular synovitis (pigmented), other specified site +C2893698|T191|ET|M12.28|ICD10CM|Villonodular synovitis (pigmented), vertebrae|Villonodular synovitis (pigmented), vertebrae +C0837909|T191|PT|M12.29|ICD10CM|Villonodular synovitis (pigmented), multiple sites|Villonodular synovitis (pigmented), multiple sites +C0837909|T191|AB|M12.29|ICD10CM|Villonodular synovitis (pigmented), multiple sites|Villonodular synovitis (pigmented), multiple sites +C0085574|T047|HT|M12.3|ICD10CM|Palindromic rheumatism|Palindromic rheumatism +C0085574|T047|AB|M12.3|ICD10CM|Palindromic rheumatism|Palindromic rheumatism +C0085574|T047|PT|M12.3|ICD10|Palindromic rheumatism|Palindromic rheumatism +C0085574|T047|AB|M12.30|ICD10CM|Palindromic rheumatism, unspecified site|Palindromic rheumatism, unspecified site +C0085574|T047|PT|M12.30|ICD10CM|Palindromic rheumatism, unspecified site|Palindromic rheumatism, unspecified site +C2893699|T046|AB|M12.31|ICD10CM|Palindromic rheumatism, shoulder|Palindromic rheumatism, shoulder +C2893699|T046|HT|M12.31|ICD10CM|Palindromic rheumatism, shoulder|Palindromic rheumatism, shoulder +C2893700|T046|AB|M12.311|ICD10CM|Palindromic rheumatism, right shoulder|Palindromic rheumatism, right shoulder +C2893700|T046|PT|M12.311|ICD10CM|Palindromic rheumatism, right shoulder|Palindromic rheumatism, right shoulder +C2893701|T046|AB|M12.312|ICD10CM|Palindromic rheumatism, left shoulder|Palindromic rheumatism, left shoulder +C2893701|T046|PT|M12.312|ICD10CM|Palindromic rheumatism, left shoulder|Palindromic rheumatism, left shoulder +C2893702|T046|AB|M12.319|ICD10CM|Palindromic rheumatism, unspecified shoulder|Palindromic rheumatism, unspecified shoulder +C2893702|T046|PT|M12.319|ICD10CM|Palindromic rheumatism, unspecified shoulder|Palindromic rheumatism, unspecified shoulder +C2077835|T046|AB|M12.32|ICD10CM|Palindromic rheumatism, elbow|Palindromic rheumatism, elbow +C2077835|T046|HT|M12.32|ICD10CM|Palindromic rheumatism, elbow|Palindromic rheumatism, elbow +C2893704|T046|AB|M12.321|ICD10CM|Palindromic rheumatism, right elbow|Palindromic rheumatism, right elbow +C2893704|T046|PT|M12.321|ICD10CM|Palindromic rheumatism, right elbow|Palindromic rheumatism, right elbow +C2893705|T046|AB|M12.322|ICD10CM|Palindromic rheumatism, left elbow|Palindromic rheumatism, left elbow +C2893705|T046|PT|M12.322|ICD10CM|Palindromic rheumatism, left elbow|Palindromic rheumatism, left elbow +C2893706|T046|AB|M12.329|ICD10CM|Palindromic rheumatism, unspecified elbow|Palindromic rheumatism, unspecified elbow +C2893706|T046|PT|M12.329|ICD10CM|Palindromic rheumatism, unspecified elbow|Palindromic rheumatism, unspecified elbow +C2893707|T046|AB|M12.33|ICD10CM|Palindromic rheumatism, wrist|Palindromic rheumatism, wrist +C2893707|T046|HT|M12.33|ICD10CM|Palindromic rheumatism, wrist|Palindromic rheumatism, wrist +C2893708|T046|AB|M12.331|ICD10CM|Palindromic rheumatism, right wrist|Palindromic rheumatism, right wrist +C2893708|T046|PT|M12.331|ICD10CM|Palindromic rheumatism, right wrist|Palindromic rheumatism, right wrist +C2893709|T046|AB|M12.332|ICD10CM|Palindromic rheumatism, left wrist|Palindromic rheumatism, left wrist +C2893709|T046|PT|M12.332|ICD10CM|Palindromic rheumatism, left wrist|Palindromic rheumatism, left wrist +C2893710|T046|AB|M12.339|ICD10CM|Palindromic rheumatism, unspecified wrist|Palindromic rheumatism, unspecified wrist +C2893710|T046|PT|M12.339|ICD10CM|Palindromic rheumatism, unspecified wrist|Palindromic rheumatism, unspecified wrist +C0158181|T047|HT|M12.34|ICD10CM|Palindromic rheumatism, hand|Palindromic rheumatism, hand +C0158181|T047|AB|M12.34|ICD10CM|Palindromic rheumatism, hand|Palindromic rheumatism, hand +C2893711|T047|AB|M12.341|ICD10CM|Palindromic rheumatism, right hand|Palindromic rheumatism, right hand +C2893711|T047|PT|M12.341|ICD10CM|Palindromic rheumatism, right hand|Palindromic rheumatism, right hand +C2893712|T047|AB|M12.342|ICD10CM|Palindromic rheumatism, left hand|Palindromic rheumatism, left hand +C2893712|T047|PT|M12.342|ICD10CM|Palindromic rheumatism, left hand|Palindromic rheumatism, left hand +C2893713|T047|AB|M12.349|ICD10CM|Palindromic rheumatism, unspecified hand|Palindromic rheumatism, unspecified hand +C2893713|T047|PT|M12.349|ICD10CM|Palindromic rheumatism, unspecified hand|Palindromic rheumatism, unspecified hand +C2363134|T046|AB|M12.35|ICD10CM|Palindromic rheumatism, hip|Palindromic rheumatism, hip +C2363134|T046|HT|M12.35|ICD10CM|Palindromic rheumatism, hip|Palindromic rheumatism, hip +C2893715|T046|AB|M12.351|ICD10CM|Palindromic rheumatism, right hip|Palindromic rheumatism, right hip +C2893715|T046|PT|M12.351|ICD10CM|Palindromic rheumatism, right hip|Palindromic rheumatism, right hip +C2893716|T046|AB|M12.352|ICD10CM|Palindromic rheumatism, left hip|Palindromic rheumatism, left hip +C2893716|T046|PT|M12.352|ICD10CM|Palindromic rheumatism, left hip|Palindromic rheumatism, left hip +C2893717|T046|AB|M12.359|ICD10CM|Palindromic rheumatism, unspecified hip|Palindromic rheumatism, unspecified hip +C2893717|T046|PT|M12.359|ICD10CM|Palindromic rheumatism, unspecified hip|Palindromic rheumatism, unspecified hip +C2077837|T046|AB|M12.36|ICD10CM|Palindromic rheumatism, knee|Palindromic rheumatism, knee +C2077837|T046|HT|M12.36|ICD10CM|Palindromic rheumatism, knee|Palindromic rheumatism, knee +C2893719|T046|AB|M12.361|ICD10CM|Palindromic rheumatism, right knee|Palindromic rheumatism, right knee +C2893719|T046|PT|M12.361|ICD10CM|Palindromic rheumatism, right knee|Palindromic rheumatism, right knee +C2893720|T046|AB|M12.362|ICD10CM|Palindromic rheumatism, left knee|Palindromic rheumatism, left knee +C2893720|T046|PT|M12.362|ICD10CM|Palindromic rheumatism, left knee|Palindromic rheumatism, left knee +C2893721|T046|AB|M12.369|ICD10CM|Palindromic rheumatism, unspecified knee|Palindromic rheumatism, unspecified knee +C2893721|T046|PT|M12.369|ICD10CM|Palindromic rheumatism, unspecified knee|Palindromic rheumatism, unspecified knee +C0409659|T047|HT|M12.37|ICD10CM|Palindromic rheumatism, ankle and foot|Palindromic rheumatism, ankle and foot +C0409659|T047|AB|M12.37|ICD10CM|Palindromic rheumatism, ankle and foot|Palindromic rheumatism, ankle and foot +C2893722|T047|AB|M12.371|ICD10CM|Palindromic rheumatism, right ankle and foot|Palindromic rheumatism, right ankle and foot +C2893722|T047|PT|M12.371|ICD10CM|Palindromic rheumatism, right ankle and foot|Palindromic rheumatism, right ankle and foot +C2893723|T047|AB|M12.372|ICD10CM|Palindromic rheumatism, left ankle and foot|Palindromic rheumatism, left ankle and foot +C2893723|T047|PT|M12.372|ICD10CM|Palindromic rheumatism, left ankle and foot|Palindromic rheumatism, left ankle and foot +C2893724|T047|AB|M12.379|ICD10CM|Palindromic rheumatism, unspecified ankle and foot|Palindromic rheumatism, unspecified ankle and foot +C2893724|T047|PT|M12.379|ICD10CM|Palindromic rheumatism, unspecified ankle and foot|Palindromic rheumatism, unspecified ankle and foot +C0409658|T047|AB|M12.38|ICD10CM|Palindromic rheumatism, other specified site|Palindromic rheumatism, other specified site +C0409658|T047|PT|M12.38|ICD10CM|Palindromic rheumatism, other specified site|Palindromic rheumatism, other specified site +C2893725|T046|ET|M12.38|ICD10CM|Palindromic rheumatism, vertebrae|Palindromic rheumatism, vertebrae +C0158186|T047|PT|M12.39|ICD10CM|Palindromic rheumatism, multiple sites|Palindromic rheumatism, multiple sites +C0158186|T047|AB|M12.39|ICD10CM|Palindromic rheumatism, multiple sites|Palindromic rheumatism, multiple sites +C0149910|T047|HT|M12.4|ICD10CM|Intermittent hydrarthrosis|Intermittent hydrarthrosis +C0149910|T047|AB|M12.4|ICD10CM|Intermittent hydrarthrosis|Intermittent hydrarthrosis +C0149910|T047|PT|M12.4|ICD10|Intermittent hydrarthrosis|Intermittent hydrarthrosis +C0837929|T046|AB|M12.40|ICD10CM|Intermittent hydrarthrosis, unspecified site|Intermittent hydrarthrosis, unspecified site +C0837929|T046|PT|M12.40|ICD10CM|Intermittent hydrarthrosis, unspecified site|Intermittent hydrarthrosis, unspecified site +C0837921|T047|AB|M12.41|ICD10CM|Intermittent hydrarthrosis, shoulder|Intermittent hydrarthrosis, shoulder +C0837921|T047|HT|M12.41|ICD10CM|Intermittent hydrarthrosis, shoulder|Intermittent hydrarthrosis, shoulder +C2893726|T046|AB|M12.411|ICD10CM|Intermittent hydrarthrosis, right shoulder|Intermittent hydrarthrosis, right shoulder +C2893726|T046|PT|M12.411|ICD10CM|Intermittent hydrarthrosis, right shoulder|Intermittent hydrarthrosis, right shoulder +C2893727|T046|AB|M12.412|ICD10CM|Intermittent hydrarthrosis, left shoulder|Intermittent hydrarthrosis, left shoulder +C2893727|T046|PT|M12.412|ICD10CM|Intermittent hydrarthrosis, left shoulder|Intermittent hydrarthrosis, left shoulder +C2893728|T046|AB|M12.419|ICD10CM|Intermittent hydrarthrosis, unspecified shoulder|Intermittent hydrarthrosis, unspecified shoulder +C2893728|T046|PT|M12.419|ICD10CM|Intermittent hydrarthrosis, unspecified shoulder|Intermittent hydrarthrosis, unspecified shoulder +C2077835|T046|AB|M12.42|ICD10CM|Intermittent hydrarthrosis, elbow|Intermittent hydrarthrosis, elbow +C2077835|T046|HT|M12.42|ICD10CM|Intermittent hydrarthrosis, elbow|Intermittent hydrarthrosis, elbow +C2893729|T046|AB|M12.421|ICD10CM|Intermittent hydrarthrosis, right elbow|Intermittent hydrarthrosis, right elbow +C2893729|T046|PT|M12.421|ICD10CM|Intermittent hydrarthrosis, right elbow|Intermittent hydrarthrosis, right elbow +C2893730|T046|AB|M12.422|ICD10CM|Intermittent hydrarthrosis, left elbow|Intermittent hydrarthrosis, left elbow +C2893730|T046|PT|M12.422|ICD10CM|Intermittent hydrarthrosis, left elbow|Intermittent hydrarthrosis, left elbow +C2893731|T046|AB|M12.429|ICD10CM|Intermittent hydrarthrosis, unspecified elbow|Intermittent hydrarthrosis, unspecified elbow +C2893731|T046|PT|M12.429|ICD10CM|Intermittent hydrarthrosis, unspecified elbow|Intermittent hydrarthrosis, unspecified elbow +C0409662|T047|AB|M12.43|ICD10CM|Intermittent hydrarthrosis, wrist|Intermittent hydrarthrosis, wrist +C0409662|T047|HT|M12.43|ICD10CM|Intermittent hydrarthrosis, wrist|Intermittent hydrarthrosis, wrist +C2893732|T047|AB|M12.431|ICD10CM|Intermittent hydrarthrosis, right wrist|Intermittent hydrarthrosis, right wrist +C2893732|T047|PT|M12.431|ICD10CM|Intermittent hydrarthrosis, right wrist|Intermittent hydrarthrosis, right wrist +C2893733|T047|AB|M12.432|ICD10CM|Intermittent hydrarthrosis, left wrist|Intermittent hydrarthrosis, left wrist +C2893733|T047|PT|M12.432|ICD10CM|Intermittent hydrarthrosis, left wrist|Intermittent hydrarthrosis, left wrist +C2893734|T047|AB|M12.439|ICD10CM|Intermittent hydrarthrosis, unspecified wrist|Intermittent hydrarthrosis, unspecified wrist +C2893734|T047|PT|M12.439|ICD10CM|Intermittent hydrarthrosis, unspecified wrist|Intermittent hydrarthrosis, unspecified wrist +C0837924|T046|HT|M12.44|ICD10CM|Intermittent hydrarthrosis, hand|Intermittent hydrarthrosis, hand +C0837924|T046|AB|M12.44|ICD10CM|Intermittent hydrarthrosis, hand|Intermittent hydrarthrosis, hand +C2893735|T046|AB|M12.441|ICD10CM|Intermittent hydrarthrosis, right hand|Intermittent hydrarthrosis, right hand +C2893735|T046|PT|M12.441|ICD10CM|Intermittent hydrarthrosis, right hand|Intermittent hydrarthrosis, right hand +C2893736|T046|AB|M12.442|ICD10CM|Intermittent hydrarthrosis, left hand|Intermittent hydrarthrosis, left hand +C2893736|T046|PT|M12.442|ICD10CM|Intermittent hydrarthrosis, left hand|Intermittent hydrarthrosis, left hand +C2893737|T046|AB|M12.449|ICD10CM|Intermittent hydrarthrosis, unspecified hand|Intermittent hydrarthrosis, unspecified hand +C2893737|T046|PT|M12.449|ICD10CM|Intermittent hydrarthrosis, unspecified hand|Intermittent hydrarthrosis, unspecified hand +C2363134|T046|AB|M12.45|ICD10CM|Intermittent hydrarthrosis, hip|Intermittent hydrarthrosis, hip +C2363134|T046|HT|M12.45|ICD10CM|Intermittent hydrarthrosis, hip|Intermittent hydrarthrosis, hip +C2893738|T046|AB|M12.451|ICD10CM|Intermittent hydrarthrosis, right hip|Intermittent hydrarthrosis, right hip +C2893738|T046|PT|M12.451|ICD10CM|Intermittent hydrarthrosis, right hip|Intermittent hydrarthrosis, right hip +C2893739|T046|AB|M12.452|ICD10CM|Intermittent hydrarthrosis, left hip|Intermittent hydrarthrosis, left hip +C2893739|T046|PT|M12.452|ICD10CM|Intermittent hydrarthrosis, left hip|Intermittent hydrarthrosis, left hip +C2893740|T046|AB|M12.459|ICD10CM|Intermittent hydrarthrosis, unspecified hip|Intermittent hydrarthrosis, unspecified hip +C2893740|T046|PT|M12.459|ICD10CM|Intermittent hydrarthrosis, unspecified hip|Intermittent hydrarthrosis, unspecified hip +C2077837|T046|AB|M12.46|ICD10CM|Intermittent hydrarthrosis, knee|Intermittent hydrarthrosis, knee +C2077837|T046|HT|M12.46|ICD10CM|Intermittent hydrarthrosis, knee|Intermittent hydrarthrosis, knee +C2893741|T046|AB|M12.461|ICD10CM|Intermittent hydrarthrosis, right knee|Intermittent hydrarthrosis, right knee +C2893741|T046|PT|M12.461|ICD10CM|Intermittent hydrarthrosis, right knee|Intermittent hydrarthrosis, right knee +C2893742|T046|AB|M12.462|ICD10CM|Intermittent hydrarthrosis, left knee|Intermittent hydrarthrosis, left knee +C2893742|T046|PT|M12.462|ICD10CM|Intermittent hydrarthrosis, left knee|Intermittent hydrarthrosis, left knee +C2893743|T046|AB|M12.469|ICD10CM|Intermittent hydrarthrosis, unspecified knee|Intermittent hydrarthrosis, unspecified knee +C2893743|T046|PT|M12.469|ICD10CM|Intermittent hydrarthrosis, unspecified knee|Intermittent hydrarthrosis, unspecified knee +C0837927|T046|HT|M12.47|ICD10CM|Intermittent hydrarthrosis, ankle and foot|Intermittent hydrarthrosis, ankle and foot +C0837927|T046|AB|M12.47|ICD10CM|Intermittent hydrarthrosis, ankle and foot|Intermittent hydrarthrosis, ankle and foot +C2893744|T046|AB|M12.471|ICD10CM|Intermittent hydrarthrosis, right ankle and foot|Intermittent hydrarthrosis, right ankle and foot +C2893744|T046|PT|M12.471|ICD10CM|Intermittent hydrarthrosis, right ankle and foot|Intermittent hydrarthrosis, right ankle and foot +C2893745|T046|AB|M12.472|ICD10CM|Intermittent hydrarthrosis, left ankle and foot|Intermittent hydrarthrosis, left ankle and foot +C2893745|T046|PT|M12.472|ICD10CM|Intermittent hydrarthrosis, left ankle and foot|Intermittent hydrarthrosis, left ankle and foot +C2893746|T046|AB|M12.479|ICD10CM|Intermittent hydrarthrosis, unspecified ankle and foot|Intermittent hydrarthrosis, unspecified ankle and foot +C2893746|T046|PT|M12.479|ICD10CM|Intermittent hydrarthrosis, unspecified ankle and foot|Intermittent hydrarthrosis, unspecified ankle and foot +C0837928|T046|PT|M12.48|ICD10CM|Intermittent hydrarthrosis, other site|Intermittent hydrarthrosis, other site +C0837928|T046|AB|M12.48|ICD10CM|Intermittent hydrarthrosis, other site|Intermittent hydrarthrosis, other site +C0837920|T046|PT|M12.49|ICD10CM|Intermittent hydrarthrosis, multiple sites|Intermittent hydrarthrosis, multiple sites +C0837920|T046|AB|M12.49|ICD10CM|Intermittent hydrarthrosis, multiple sites|Intermittent hydrarthrosis, multiple sites +C0152086|T037|PT|M12.5|ICD10|Traumatic arthropathy|Traumatic arthropathy +C0152086|T037|HT|M12.5|ICD10CM|Traumatic arthropathy|Traumatic arthropathy +C0152086|T037|AB|M12.5|ICD10CM|Traumatic arthropathy|Traumatic arthropathy +C0152086|T037|AB|M12.50|ICD10CM|Traumatic arthropathy, unspecified site|Traumatic arthropathy, unspecified site +C0152086|T037|PT|M12.50|ICD10CM|Traumatic arthropathy, unspecified site|Traumatic arthropathy, unspecified site +C0409751|T037|AB|M12.51|ICD10CM|Traumatic arthropathy, shoulder|Traumatic arthropathy, shoulder +C0409751|T037|HT|M12.51|ICD10CM|Traumatic arthropathy, shoulder|Traumatic arthropathy, shoulder +C2893747|T037|AB|M12.511|ICD10CM|Traumatic arthropathy, right shoulder|Traumatic arthropathy, right shoulder +C2893747|T037|PT|M12.511|ICD10CM|Traumatic arthropathy, right shoulder|Traumatic arthropathy, right shoulder +C2893748|T037|AB|M12.512|ICD10CM|Traumatic arthropathy, left shoulder|Traumatic arthropathy, left shoulder +C2893748|T037|PT|M12.512|ICD10CM|Traumatic arthropathy, left shoulder|Traumatic arthropathy, left shoulder +C0409751|T037|AB|M12.519|ICD10CM|Traumatic arthropathy, unspecified shoulder|Traumatic arthropathy, unspecified shoulder +C0409751|T037|PT|M12.519|ICD10CM|Traumatic arthropathy, unspecified shoulder|Traumatic arthropathy, unspecified shoulder +C0409748|T037|AB|M12.52|ICD10CM|Traumatic arthropathy, elbow|Traumatic arthropathy, elbow +C0409748|T037|HT|M12.52|ICD10CM|Traumatic arthropathy, elbow|Traumatic arthropathy, elbow +C2893749|T037|AB|M12.521|ICD10CM|Traumatic arthropathy, right elbow|Traumatic arthropathy, right elbow +C2893749|T037|PT|M12.521|ICD10CM|Traumatic arthropathy, right elbow|Traumatic arthropathy, right elbow +C2893750|T047|AB|M12.522|ICD10CM|Traumatic arthropathy, left elbow|Traumatic arthropathy, left elbow +C2893750|T047|PT|M12.522|ICD10CM|Traumatic arthropathy, left elbow|Traumatic arthropathy, left elbow +C0409748|T037|AB|M12.529|ICD10CM|Traumatic arthropathy, unspecified elbow|Traumatic arthropathy, unspecified elbow +C0409748|T037|PT|M12.529|ICD10CM|Traumatic arthropathy, unspecified elbow|Traumatic arthropathy, unspecified elbow +C0409746|T037|AB|M12.53|ICD10CM|Traumatic arthropathy, wrist|Traumatic arthropathy, wrist +C0409746|T037|HT|M12.53|ICD10CM|Traumatic arthropathy, wrist|Traumatic arthropathy, wrist +C2893751|T037|AB|M12.531|ICD10CM|Traumatic arthropathy, right wrist|Traumatic arthropathy, right wrist +C2893751|T037|PT|M12.531|ICD10CM|Traumatic arthropathy, right wrist|Traumatic arthropathy, right wrist +C2893752|T047|AB|M12.532|ICD10CM|Traumatic arthropathy, left wrist|Traumatic arthropathy, left wrist +C2893752|T047|PT|M12.532|ICD10CM|Traumatic arthropathy, left wrist|Traumatic arthropathy, left wrist +C0409746|T037|AB|M12.539|ICD10CM|Traumatic arthropathy, unspecified wrist|Traumatic arthropathy, unspecified wrist +C0409746|T037|PT|M12.539|ICD10CM|Traumatic arthropathy, unspecified wrist|Traumatic arthropathy, unspecified wrist +C0409757|T037|HT|M12.54|ICD10CM|Traumatic arthropathy, hand|Traumatic arthropathy, hand +C0409757|T037|AB|M12.54|ICD10CM|Traumatic arthropathy, hand|Traumatic arthropathy, hand +C2893753|T037|AB|M12.541|ICD10CM|Traumatic arthropathy, right hand|Traumatic arthropathy, right hand +C2893753|T037|PT|M12.541|ICD10CM|Traumatic arthropathy, right hand|Traumatic arthropathy, right hand +C2893754|T037|AB|M12.542|ICD10CM|Traumatic arthropathy, left hand|Traumatic arthropathy, left hand +C2893754|T037|PT|M12.542|ICD10CM|Traumatic arthropathy, left hand|Traumatic arthropathy, left hand +C0409757|T037|AB|M12.549|ICD10CM|Traumatic arthropathy, unspecified hand|Traumatic arthropathy, unspecified hand +C0409757|T037|PT|M12.549|ICD10CM|Traumatic arthropathy, unspecified hand|Traumatic arthropathy, unspecified hand +C0409742|T037|AB|M12.55|ICD10CM|Traumatic arthropathy, hip|Traumatic arthropathy, hip +C0409742|T037|HT|M12.55|ICD10CM|Traumatic arthropathy, hip|Traumatic arthropathy, hip +C2893755|T037|AB|M12.551|ICD10CM|Traumatic arthropathy, right hip|Traumatic arthropathy, right hip +C2893755|T037|PT|M12.551|ICD10CM|Traumatic arthropathy, right hip|Traumatic arthropathy, right hip +C2893756|T037|AB|M12.552|ICD10CM|Traumatic arthropathy, left hip|Traumatic arthropathy, left hip +C2893756|T037|PT|M12.552|ICD10CM|Traumatic arthropathy, left hip|Traumatic arthropathy, left hip +C0409742|T037|AB|M12.559|ICD10CM|Traumatic arthropathy, unspecified hip|Traumatic arthropathy, unspecified hip +C0409742|T037|PT|M12.559|ICD10CM|Traumatic arthropathy, unspecified hip|Traumatic arthropathy, unspecified hip +C0409740|T037|AB|M12.56|ICD10CM|Traumatic arthropathy, knee|Traumatic arthropathy, knee +C0409740|T037|HT|M12.56|ICD10CM|Traumatic arthropathy, knee|Traumatic arthropathy, knee +C2893757|T037|AB|M12.561|ICD10CM|Traumatic arthropathy, right knee|Traumatic arthropathy, right knee +C2893757|T037|PT|M12.561|ICD10CM|Traumatic arthropathy, right knee|Traumatic arthropathy, right knee +C2893758|T037|AB|M12.562|ICD10CM|Traumatic arthropathy, left knee|Traumatic arthropathy, left knee +C2893758|T037|PT|M12.562|ICD10CM|Traumatic arthropathy, left knee|Traumatic arthropathy, left knee +C0409740|T037|AB|M12.569|ICD10CM|Traumatic arthropathy, unspecified knee|Traumatic arthropathy, unspecified knee +C0409740|T037|PT|M12.569|ICD10CM|Traumatic arthropathy, unspecified knee|Traumatic arthropathy, unspecified knee +C0409754|T037|HT|M12.57|ICD10CM|Traumatic arthropathy, ankle and foot|Traumatic arthropathy, ankle and foot +C0409754|T037|AB|M12.57|ICD10CM|Traumatic arthropathy, ankle and foot|Traumatic arthropathy, ankle and foot +C2893759|T037|AB|M12.571|ICD10CM|Traumatic arthropathy, right ankle and foot|Traumatic arthropathy, right ankle and foot +C2893759|T037|PT|M12.571|ICD10CM|Traumatic arthropathy, right ankle and foot|Traumatic arthropathy, right ankle and foot +C2893760|T037|AB|M12.572|ICD10CM|Traumatic arthropathy, left ankle and foot|Traumatic arthropathy, left ankle and foot +C2893760|T037|PT|M12.572|ICD10CM|Traumatic arthropathy, left ankle and foot|Traumatic arthropathy, left ankle and foot +C2893761|T037|AB|M12.579|ICD10CM|Traumatic arthropathy, unspecified ankle and foot|Traumatic arthropathy, unspecified ankle and foot +C2893761|T037|PT|M12.579|ICD10CM|Traumatic arthropathy, unspecified ankle and foot|Traumatic arthropathy, unspecified ankle and foot +C0409753|T037|AB|M12.58|ICD10CM|Traumatic arthropathy, other specified site|Traumatic arthropathy, other specified site +C0409753|T037|PT|M12.58|ICD10CM|Traumatic arthropathy, other specified site|Traumatic arthropathy, other specified site +C2893762|T037|ET|M12.58|ICD10CM|Traumatic arthropathy, vertebrae|Traumatic arthropathy, vertebrae +C0409752|T037|PT|M12.59|ICD10CM|Traumatic arthropathy, multiple sites|Traumatic arthropathy, multiple sites +C0409752|T037|AB|M12.59|ICD10CM|Traumatic arthropathy, multiple sites|Traumatic arthropathy, multiple sites +C0869062|T047|PT|M12.8|ICD10|Other specific arthropathies, not elsewhere classified|Other specific arthropathies, not elsewhere classified +C0869062|T047|HT|M12.8|ICD10CM|Other specific arthropathies, not elsewhere classified|Other specific arthropathies, not elsewhere classified +C0869062|T047|AB|M12.8|ICD10CM|Other specific arthropathies, not elsewhere classified|Other specific arthropathies, not elsewhere classified +C0152083|T047|ET|M12.8|ICD10CM|Transient arthropathy|Transient arthropathy +C0869062|T047|AB|M12.80|ICD10CM|Oth specific arthropathies, NEC, unsp site|Oth specific arthropathies, NEC, unsp site +C0869062|T047|PT|M12.80|ICD10CM|Other specific arthropathies, not elsewhere classified, unspecified site|Other specific arthropathies, not elsewhere classified, unspecified site +C2893763|T047|AB|M12.81|ICD10CM|Oth specific arthropathies, NEC, shoulder|Oth specific arthropathies, NEC, shoulder +C2893763|T047|HT|M12.81|ICD10CM|Other specific arthropathies, not elsewhere classified, shoulder|Other specific arthropathies, not elsewhere classified, shoulder +C2893764|T047|AB|M12.811|ICD10CM|Oth specific arthropathies, NEC, right shoulder|Oth specific arthropathies, NEC, right shoulder +C2893764|T047|PT|M12.811|ICD10CM|Other specific arthropathies, not elsewhere classified, right shoulder|Other specific arthropathies, not elsewhere classified, right shoulder +C2893765|T047|AB|M12.812|ICD10CM|Oth specific arthropathies, NEC, left shoulder|Oth specific arthropathies, NEC, left shoulder +C2893765|T047|PT|M12.812|ICD10CM|Other specific arthropathies, not elsewhere classified, left shoulder|Other specific arthropathies, not elsewhere classified, left shoulder +C2893766|T047|AB|M12.819|ICD10CM|Oth specific arthropathies, NEC, unsp shoulder|Oth specific arthropathies, NEC, unsp shoulder +C2893766|T047|PT|M12.819|ICD10CM|Other specific arthropathies, not elsewhere classified, unspecified shoulder|Other specific arthropathies, not elsewhere classified, unspecified shoulder +C2893767|T047|AB|M12.82|ICD10CM|Oth specific arthropathies, not elsewhere classified, elbow|Oth specific arthropathies, not elsewhere classified, elbow +C2893767|T047|HT|M12.82|ICD10CM|Other specific arthropathies, not elsewhere classified, elbow|Other specific arthropathies, not elsewhere classified, elbow +C2893768|T047|AB|M12.821|ICD10CM|Oth specific arthropathies, NEC, right elbow|Oth specific arthropathies, NEC, right elbow +C2893768|T047|PT|M12.821|ICD10CM|Other specific arthropathies, not elsewhere classified, right elbow|Other specific arthropathies, not elsewhere classified, right elbow +C2893769|T047|AB|M12.822|ICD10CM|Oth specific arthropathies, NEC, left elbow|Oth specific arthropathies, NEC, left elbow +C2893769|T047|PT|M12.822|ICD10CM|Other specific arthropathies, not elsewhere classified, left elbow|Other specific arthropathies, not elsewhere classified, left elbow +C2893770|T047|AB|M12.829|ICD10CM|Oth specific arthropathies, NEC, unsp elbow|Oth specific arthropathies, NEC, unsp elbow +C2893770|T047|PT|M12.829|ICD10CM|Other specific arthropathies, not elsewhere classified, unspecified elbow|Other specific arthropathies, not elsewhere classified, unspecified elbow +C2893771|T047|AB|M12.83|ICD10CM|Oth specific arthropathies, not elsewhere classified, wrist|Oth specific arthropathies, not elsewhere classified, wrist +C2893771|T047|HT|M12.83|ICD10CM|Other specific arthropathies, not elsewhere classified, wrist|Other specific arthropathies, not elsewhere classified, wrist +C2893772|T047|AB|M12.831|ICD10CM|Oth specific arthropathies, NEC, right wrist|Oth specific arthropathies, NEC, right wrist +C2893772|T047|PT|M12.831|ICD10CM|Other specific arthropathies, not elsewhere classified, right wrist|Other specific arthropathies, not elsewhere classified, right wrist +C2893773|T047|AB|M12.832|ICD10CM|Oth specific arthropathies, NEC, left wrist|Oth specific arthropathies, NEC, left wrist +C2893773|T047|PT|M12.832|ICD10CM|Other specific arthropathies, not elsewhere classified, left wrist|Other specific arthropathies, not elsewhere classified, left wrist +C2893774|T047|AB|M12.839|ICD10CM|Oth specific arthropathies, NEC, unsp wrist|Oth specific arthropathies, NEC, unsp wrist +C2893774|T047|PT|M12.839|ICD10CM|Other specific arthropathies, not elsewhere classified, unspecified wrist|Other specific arthropathies, not elsewhere classified, unspecified wrist +C0837935|T047|HT|M12.84|ICD10CM|Other specific arthropathies, not elsewhere classified, hand|Other specific arthropathies, not elsewhere classified, hand +C0837935|T047|AB|M12.84|ICD10CM|Other specific arthropathies, not elsewhere classified, hand|Other specific arthropathies, not elsewhere classified, hand +C2893775|T047|AB|M12.841|ICD10CM|Oth specific arthropathies, NEC, right hand|Oth specific arthropathies, NEC, right hand +C2893775|T047|PT|M12.841|ICD10CM|Other specific arthropathies, not elsewhere classified, right hand|Other specific arthropathies, not elsewhere classified, right hand +C2893776|T047|AB|M12.842|ICD10CM|Oth specific arthropathies, NEC, left hand|Oth specific arthropathies, NEC, left hand +C2893776|T047|PT|M12.842|ICD10CM|Other specific arthropathies, not elsewhere classified, left hand|Other specific arthropathies, not elsewhere classified, left hand +C2893777|T047|AB|M12.849|ICD10CM|Oth specific arthropathies, NEC, unsp hand|Oth specific arthropathies, NEC, unsp hand +C2893777|T047|PT|M12.849|ICD10CM|Other specific arthropathies, not elsewhere classified, unspecified hand|Other specific arthropathies, not elsewhere classified, unspecified hand +C2893778|T047|AB|M12.85|ICD10CM|Other specific arthropathies, not elsewhere classified, hip|Other specific arthropathies, not elsewhere classified, hip +C2893778|T047|HT|M12.85|ICD10CM|Other specific arthropathies, not elsewhere classified, hip|Other specific arthropathies, not elsewhere classified, hip +C2893779|T047|AB|M12.851|ICD10CM|Oth specific arthropathies, NEC, right hip|Oth specific arthropathies, NEC, right hip +C2893779|T047|PT|M12.851|ICD10CM|Other specific arthropathies, not elsewhere classified, right hip|Other specific arthropathies, not elsewhere classified, right hip +C2893780|T047|AB|M12.852|ICD10CM|Oth specific arthropathies, NEC, left hip|Oth specific arthropathies, NEC, left hip +C2893780|T047|PT|M12.852|ICD10CM|Other specific arthropathies, not elsewhere classified, left hip|Other specific arthropathies, not elsewhere classified, left hip +C2893781|T047|AB|M12.859|ICD10CM|Oth specific arthropathies, NEC, unsp hip|Oth specific arthropathies, NEC, unsp hip +C2893781|T047|PT|M12.859|ICD10CM|Other specific arthropathies, not elsewhere classified, unspecified hip|Other specific arthropathies, not elsewhere classified, unspecified hip +C2893782|T047|AB|M12.86|ICD10CM|Other specific arthropathies, not elsewhere classified, knee|Other specific arthropathies, not elsewhere classified, knee +C2893782|T047|HT|M12.86|ICD10CM|Other specific arthropathies, not elsewhere classified, knee|Other specific arthropathies, not elsewhere classified, knee +C2893783|T047|AB|M12.861|ICD10CM|Oth specific arthropathies, NEC, right knee|Oth specific arthropathies, NEC, right knee +C2893783|T047|PT|M12.861|ICD10CM|Other specific arthropathies, not elsewhere classified, right knee|Other specific arthropathies, not elsewhere classified, right knee +C2893784|T047|AB|M12.862|ICD10CM|Oth specific arthropathies, NEC, left knee|Oth specific arthropathies, NEC, left knee +C2893784|T047|PT|M12.862|ICD10CM|Other specific arthropathies, not elsewhere classified, left knee|Other specific arthropathies, not elsewhere classified, left knee +C2893785|T047|AB|M12.869|ICD10CM|Oth specific arthropathies, NEC, unsp knee|Oth specific arthropathies, NEC, unsp knee +C2893785|T047|PT|M12.869|ICD10CM|Other specific arthropathies, not elsewhere classified, unspecified knee|Other specific arthropathies, not elsewhere classified, unspecified knee +C0837938|T047|AB|M12.87|ICD10CM|Oth specific arthropathies, NEC, ankle and foot|Oth specific arthropathies, NEC, ankle and foot +C0837938|T047|HT|M12.87|ICD10CM|Other specific arthropathies, not elsewhere classified, ankle and foot|Other specific arthropathies, not elsewhere classified, ankle and foot +C2893786|T047|AB|M12.871|ICD10CM|Oth specific arthropathies, NEC, right ankle and foot|Oth specific arthropathies, NEC, right ankle and foot +C2893786|T047|PT|M12.871|ICD10CM|Other specific arthropathies, not elsewhere classified, right ankle and foot|Other specific arthropathies, not elsewhere classified, right ankle and foot +C2893787|T047|AB|M12.872|ICD10CM|Oth specific arthropathies, NEC, left ankle and foot|Oth specific arthropathies, NEC, left ankle and foot +C2893787|T047|PT|M12.872|ICD10CM|Other specific arthropathies, not elsewhere classified, left ankle and foot|Other specific arthropathies, not elsewhere classified, left ankle and foot +C2893788|T047|AB|M12.879|ICD10CM|Oth specific arthropathies, NEC, unsp ankle and foot|Oth specific arthropathies, NEC, unsp ankle and foot +C2893788|T047|PT|M12.879|ICD10CM|Other specific arthropathies, not elsewhere classified, unspecified ankle and foot|Other specific arthropathies, not elsewhere classified, unspecified ankle and foot +C3696794|T047|AB|M12.88|ICD10CM|Oth specific arthropathies, NEC, oth site|Oth specific arthropathies, NEC, oth site +C3696794|T047|PT|M12.88|ICD10CM|Other specific arthropathies, not elsewhere classified, other specified site|Other specific arthropathies, not elsewhere classified, other specified site +C2893789|T047|ET|M12.88|ICD10CM|Other specific arthropathies, not elsewhere classified, vertebrae|Other specific arthropathies, not elsewhere classified, vertebrae +C0837931|T047|AB|M12.89|ICD10CM|Oth specific arthropathies, NEC, multiple sites|Oth specific arthropathies, NEC, multiple sites +C0837931|T047|PT|M12.89|ICD10CM|Other specific arthropathies, not elsewhere classified, multiple sites|Other specific arthropathies, not elsewhere classified, multiple sites +C0022408|T047|PT|M12.9|ICD10CM|Arthropathy, unspecified|Arthropathy, unspecified +C0022408|T047|AB|M12.9|ICD10CM|Arthropathy, unspecified|Arthropathy, unspecified +C0494904|T047|HT|M13|ICD10|Other arthritis|Other arthritis +C0494904|T047|HT|M13|ICD10CM|Other arthritis|Other arthritis +C0494904|T047|AB|M13|ICD10CM|Other arthritis|Other arthritis +C0162323|T047|PT|M13.0|ICD10CM|Polyarthritis, unspecified|Polyarthritis, unspecified +C0162323|T047|AB|M13.0|ICD10CM|Polyarthritis, unspecified|Polyarthritis, unspecified +C0162323|T047|PT|M13.0|ICD10|Polyarthritis, unspecified|Polyarthritis, unspecified +C0494905|T047|HT|M13.1|ICD10CM|Monoarthritis, not elsewhere classified|Monoarthritis, not elsewhere classified +C0494905|T047|AB|M13.1|ICD10CM|Monoarthritis, not elsewhere classified|Monoarthritis, not elsewhere classified +C0494905|T047|PT|M13.1|ICD10|Monoarthritis, not elsewhere classified|Monoarthritis, not elsewhere classified +C0837949|T047|AB|M13.10|ICD10CM|Monoarthritis, not elsewhere classified, unspecified site|Monoarthritis, not elsewhere classified, unspecified site +C0837949|T047|PT|M13.10|ICD10CM|Monoarthritis, not elsewhere classified, unspecified site|Monoarthritis, not elsewhere classified, unspecified site +C2893790|T047|AB|M13.11|ICD10CM|Monoarthritis, not elsewhere classified, shoulder|Monoarthritis, not elsewhere classified, shoulder +C2893790|T047|HT|M13.11|ICD10CM|Monoarthritis, not elsewhere classified, shoulder|Monoarthritis, not elsewhere classified, shoulder +C2893791|T047|AB|M13.111|ICD10CM|Monoarthritis, not elsewhere classified, right shoulder|Monoarthritis, not elsewhere classified, right shoulder +C2893791|T047|PT|M13.111|ICD10CM|Monoarthritis, not elsewhere classified, right shoulder|Monoarthritis, not elsewhere classified, right shoulder +C2893792|T047|AB|M13.112|ICD10CM|Monoarthritis, not elsewhere classified, left shoulder|Monoarthritis, not elsewhere classified, left shoulder +C2893792|T047|PT|M13.112|ICD10CM|Monoarthritis, not elsewhere classified, left shoulder|Monoarthritis, not elsewhere classified, left shoulder +C2893793|T047|AB|M13.119|ICD10CM|Monoarthritis, not elsewhere classified, unsp shoulder|Monoarthritis, not elsewhere classified, unsp shoulder +C2893793|T047|PT|M13.119|ICD10CM|Monoarthritis, not elsewhere classified, unspecified shoulder|Monoarthritis, not elsewhere classified, unspecified shoulder +C2893794|T047|AB|M13.12|ICD10CM|Monoarthritis, not elsewhere classified, elbow|Monoarthritis, not elsewhere classified, elbow +C2893794|T047|HT|M13.12|ICD10CM|Monoarthritis, not elsewhere classified, elbow|Monoarthritis, not elsewhere classified, elbow +C2893795|T047|AB|M13.121|ICD10CM|Monoarthritis, not elsewhere classified, right elbow|Monoarthritis, not elsewhere classified, right elbow +C2893795|T047|PT|M13.121|ICD10CM|Monoarthritis, not elsewhere classified, right elbow|Monoarthritis, not elsewhere classified, right elbow +C2893796|T047|AB|M13.122|ICD10CM|Monoarthritis, not elsewhere classified, left elbow|Monoarthritis, not elsewhere classified, left elbow +C2893796|T047|PT|M13.122|ICD10CM|Monoarthritis, not elsewhere classified, left elbow|Monoarthritis, not elsewhere classified, left elbow +C2893797|T047|AB|M13.129|ICD10CM|Monoarthritis, not elsewhere classified, unspecified elbow|Monoarthritis, not elsewhere classified, unspecified elbow +C2893797|T047|PT|M13.129|ICD10CM|Monoarthritis, not elsewhere classified, unspecified elbow|Monoarthritis, not elsewhere classified, unspecified elbow +C2893798|T047|AB|M13.13|ICD10CM|Monoarthritis, not elsewhere classified, wrist|Monoarthritis, not elsewhere classified, wrist +C2893798|T047|HT|M13.13|ICD10CM|Monoarthritis, not elsewhere classified, wrist|Monoarthritis, not elsewhere classified, wrist +C2893799|T047|AB|M13.131|ICD10CM|Monoarthritis, not elsewhere classified, right wrist|Monoarthritis, not elsewhere classified, right wrist +C2893799|T047|PT|M13.131|ICD10CM|Monoarthritis, not elsewhere classified, right wrist|Monoarthritis, not elsewhere classified, right wrist +C2893800|T047|AB|M13.132|ICD10CM|Monoarthritis, not elsewhere classified, left wrist|Monoarthritis, not elsewhere classified, left wrist +C2893800|T047|PT|M13.132|ICD10CM|Monoarthritis, not elsewhere classified, left wrist|Monoarthritis, not elsewhere classified, left wrist +C2893801|T047|AB|M13.139|ICD10CM|Monoarthritis, not elsewhere classified, unspecified wrist|Monoarthritis, not elsewhere classified, unspecified wrist +C2893801|T047|PT|M13.139|ICD10CM|Monoarthritis, not elsewhere classified, unspecified wrist|Monoarthritis, not elsewhere classified, unspecified wrist +C0837944|T047|HT|M13.14|ICD10CM|Monoarthritis, not elsewhere classified, hand|Monoarthritis, not elsewhere classified, hand +C0837944|T047|AB|M13.14|ICD10CM|Monoarthritis, not elsewhere classified, hand|Monoarthritis, not elsewhere classified, hand +C2893802|T047|AB|M13.141|ICD10CM|Monoarthritis, not elsewhere classified, right hand|Monoarthritis, not elsewhere classified, right hand +C2893802|T047|PT|M13.141|ICD10CM|Monoarthritis, not elsewhere classified, right hand|Monoarthritis, not elsewhere classified, right hand +C2893803|T047|AB|M13.142|ICD10CM|Monoarthritis, not elsewhere classified, left hand|Monoarthritis, not elsewhere classified, left hand +C2893803|T047|PT|M13.142|ICD10CM|Monoarthritis, not elsewhere classified, left hand|Monoarthritis, not elsewhere classified, left hand +C2893804|T047|AB|M13.149|ICD10CM|Monoarthritis, not elsewhere classified, unspecified hand|Monoarthritis, not elsewhere classified, unspecified hand +C2893804|T047|PT|M13.149|ICD10CM|Monoarthritis, not elsewhere classified, unspecified hand|Monoarthritis, not elsewhere classified, unspecified hand +C2893805|T047|AB|M13.15|ICD10CM|Monoarthritis, not elsewhere classified, hip|Monoarthritis, not elsewhere classified, hip +C2893805|T047|HT|M13.15|ICD10CM|Monoarthritis, not elsewhere classified, hip|Monoarthritis, not elsewhere classified, hip +C2893806|T047|AB|M13.151|ICD10CM|Monoarthritis, not elsewhere classified, right hip|Monoarthritis, not elsewhere classified, right hip +C2893806|T047|PT|M13.151|ICD10CM|Monoarthritis, not elsewhere classified, right hip|Monoarthritis, not elsewhere classified, right hip +C2893807|T047|AB|M13.152|ICD10CM|Monoarthritis, not elsewhere classified, left hip|Monoarthritis, not elsewhere classified, left hip +C2893807|T047|PT|M13.152|ICD10CM|Monoarthritis, not elsewhere classified, left hip|Monoarthritis, not elsewhere classified, left hip +C2893808|T047|AB|M13.159|ICD10CM|Monoarthritis, not elsewhere classified, unspecified hip|Monoarthritis, not elsewhere classified, unspecified hip +C2893808|T047|PT|M13.159|ICD10CM|Monoarthritis, not elsewhere classified, unspecified hip|Monoarthritis, not elsewhere classified, unspecified hip +C2893809|T047|AB|M13.16|ICD10CM|Monoarthritis, not elsewhere classified, knee|Monoarthritis, not elsewhere classified, knee +C2893809|T047|HT|M13.16|ICD10CM|Monoarthritis, not elsewhere classified, knee|Monoarthritis, not elsewhere classified, knee +C2893810|T047|AB|M13.161|ICD10CM|Monoarthritis, not elsewhere classified, right knee|Monoarthritis, not elsewhere classified, right knee +C2893810|T047|PT|M13.161|ICD10CM|Monoarthritis, not elsewhere classified, right knee|Monoarthritis, not elsewhere classified, right knee +C2893811|T047|AB|M13.162|ICD10CM|Monoarthritis, not elsewhere classified, left knee|Monoarthritis, not elsewhere classified, left knee +C2893811|T047|PT|M13.162|ICD10CM|Monoarthritis, not elsewhere classified, left knee|Monoarthritis, not elsewhere classified, left knee +C2893812|T047|AB|M13.169|ICD10CM|Monoarthritis, not elsewhere classified, unspecified knee|Monoarthritis, not elsewhere classified, unspecified knee +C2893812|T047|PT|M13.169|ICD10CM|Monoarthritis, not elsewhere classified, unspecified knee|Monoarthritis, not elsewhere classified, unspecified knee +C0837947|T047|HT|M13.17|ICD10CM|Monoarthritis, not elsewhere classified, ankle and foot|Monoarthritis, not elsewhere classified, ankle and foot +C0837947|T047|AB|M13.17|ICD10CM|Monoarthritis, not elsewhere classified, ankle and foot|Monoarthritis, not elsewhere classified, ankle and foot +C2893813|T047|AB|M13.171|ICD10CM|Monoarthritis, NEC, right ankle and foot|Monoarthritis, NEC, right ankle and foot +C2893813|T047|PT|M13.171|ICD10CM|Monoarthritis, not elsewhere classified, right ankle and foot|Monoarthritis, not elsewhere classified, right ankle and foot +C2893814|T047|AB|M13.172|ICD10CM|Monoarthritis, not elsewhere classified, left ankle and foot|Monoarthritis, not elsewhere classified, left ankle and foot +C2893814|T047|PT|M13.172|ICD10CM|Monoarthritis, not elsewhere classified, left ankle and foot|Monoarthritis, not elsewhere classified, left ankle and foot +C2893815|T047|AB|M13.179|ICD10CM|Monoarthritis, not elsewhere classified, unsp ankle and foot|Monoarthritis, not elsewhere classified, unsp ankle and foot +C2893815|T047|PT|M13.179|ICD10CM|Monoarthritis, not elsewhere classified, unspecified ankle and foot|Monoarthritis, not elsewhere classified, unspecified ankle and foot +C0157987|T047|ET|M13.8|ICD10CM|Allergic arthritis|Allergic arthritis +C0477550|T047|HT|M13.8|ICD10CM|Other specified arthritis|Other specified arthritis +C0477550|T047|AB|M13.8|ICD10CM|Other specified arthritis|Other specified arthritis +C0477550|T047|PT|M13.8|ICD10|Other specified arthritis|Other specified arthritis +C0477550|T047|AB|M13.80|ICD10CM|Other specified arthritis, unspecified site|Other specified arthritis, unspecified site +C0477550|T047|PT|M13.80|ICD10CM|Other specified arthritis, unspecified site|Other specified arthritis, unspecified site +C2893816|T047|AB|M13.81|ICD10CM|Other specified arthritis, shoulder|Other specified arthritis, shoulder +C2893816|T047|HT|M13.81|ICD10CM|Other specified arthritis, shoulder|Other specified arthritis, shoulder +C2893817|T047|AB|M13.811|ICD10CM|Other specified arthritis, right shoulder|Other specified arthritis, right shoulder +C2893817|T047|PT|M13.811|ICD10CM|Other specified arthritis, right shoulder|Other specified arthritis, right shoulder +C2893818|T047|AB|M13.812|ICD10CM|Other specified arthritis, left shoulder|Other specified arthritis, left shoulder +C2893818|T047|PT|M13.812|ICD10CM|Other specified arthritis, left shoulder|Other specified arthritis, left shoulder +C2893819|T047|AB|M13.819|ICD10CM|Other specified arthritis, unspecified shoulder|Other specified arthritis, unspecified shoulder +C2893819|T047|PT|M13.819|ICD10CM|Other specified arthritis, unspecified shoulder|Other specified arthritis, unspecified shoulder +C2893820|T047|AB|M13.82|ICD10CM|Other specified arthritis, elbow|Other specified arthritis, elbow +C2893820|T047|HT|M13.82|ICD10CM|Other specified arthritis, elbow|Other specified arthritis, elbow +C2893821|T047|AB|M13.821|ICD10CM|Other specified arthritis, right elbow|Other specified arthritis, right elbow +C2893821|T047|PT|M13.821|ICD10CM|Other specified arthritis, right elbow|Other specified arthritis, right elbow +C2893822|T047|AB|M13.822|ICD10CM|Other specified arthritis, left elbow|Other specified arthritis, left elbow +C2893822|T047|PT|M13.822|ICD10CM|Other specified arthritis, left elbow|Other specified arthritis, left elbow +C2893823|T047|AB|M13.829|ICD10CM|Other specified arthritis, unspecified elbow|Other specified arthritis, unspecified elbow +C2893823|T047|PT|M13.829|ICD10CM|Other specified arthritis, unspecified elbow|Other specified arthritis, unspecified elbow +C2893826|T047|AB|M13.83|ICD10CM|Other specified arthritis, wrist|Other specified arthritis, wrist +C2893826|T047|HT|M13.83|ICD10CM|Other specified arthritis, wrist|Other specified arthritis, wrist +C2893824|T047|AB|M13.831|ICD10CM|Other specified arthritis, right wrist|Other specified arthritis, right wrist +C2893824|T047|PT|M13.831|ICD10CM|Other specified arthritis, right wrist|Other specified arthritis, right wrist +C2893825|T047|AB|M13.832|ICD10CM|Other specified arthritis, left wrist|Other specified arthritis, left wrist +C2893825|T047|PT|M13.832|ICD10CM|Other specified arthritis, left wrist|Other specified arthritis, left wrist +C2893826|T047|AB|M13.839|ICD10CM|Other specified arthritis, unspecified wrist|Other specified arthritis, unspecified wrist +C2893826|T047|PT|M13.839|ICD10CM|Other specified arthritis, unspecified wrist|Other specified arthritis, unspecified wrist +C0837954|T047|HT|M13.84|ICD10CM|Other specified arthritis, hand|Other specified arthritis, hand +C0837954|T047|AB|M13.84|ICD10CM|Other specified arthritis, hand|Other specified arthritis, hand +C2893827|T047|AB|M13.841|ICD10CM|Other specified arthritis, right hand|Other specified arthritis, right hand +C2893827|T047|PT|M13.841|ICD10CM|Other specified arthritis, right hand|Other specified arthritis, right hand +C2893828|T047|AB|M13.842|ICD10CM|Other specified arthritis, left hand|Other specified arthritis, left hand +C2893828|T047|PT|M13.842|ICD10CM|Other specified arthritis, left hand|Other specified arthritis, left hand +C2893829|T047|AB|M13.849|ICD10CM|Other specified arthritis, unspecified hand|Other specified arthritis, unspecified hand +C2893829|T047|PT|M13.849|ICD10CM|Other specified arthritis, unspecified hand|Other specified arthritis, unspecified hand +C2893830|T047|AB|M13.85|ICD10CM|Other specified arthritis, hip|Other specified arthritis, hip +C2893830|T047|HT|M13.85|ICD10CM|Other specified arthritis, hip|Other specified arthritis, hip +C2893831|T047|AB|M13.851|ICD10CM|Other specified arthritis, right hip|Other specified arthritis, right hip +C2893831|T047|PT|M13.851|ICD10CM|Other specified arthritis, right hip|Other specified arthritis, right hip +C2893832|T047|AB|M13.852|ICD10CM|Other specified arthritis, left hip|Other specified arthritis, left hip +C2893832|T047|PT|M13.852|ICD10CM|Other specified arthritis, left hip|Other specified arthritis, left hip +C2893833|T047|AB|M13.859|ICD10CM|Other specified arthritis, unspecified hip|Other specified arthritis, unspecified hip +C2893833|T047|PT|M13.859|ICD10CM|Other specified arthritis, unspecified hip|Other specified arthritis, unspecified hip +C2893836|T047|AB|M13.86|ICD10CM|Other specified arthritis, knee|Other specified arthritis, knee +C2893836|T047|HT|M13.86|ICD10CM|Other specified arthritis, knee|Other specified arthritis, knee +C2893834|T047|AB|M13.861|ICD10CM|Other specified arthritis, right knee|Other specified arthritis, right knee +C2893834|T047|PT|M13.861|ICD10CM|Other specified arthritis, right knee|Other specified arthritis, right knee +C2893835|T047|AB|M13.862|ICD10CM|Other specified arthritis, left knee|Other specified arthritis, left knee +C2893835|T047|PT|M13.862|ICD10CM|Other specified arthritis, left knee|Other specified arthritis, left knee +C2893836|T047|AB|M13.869|ICD10CM|Other specified arthritis, unspecified knee|Other specified arthritis, unspecified knee +C2893836|T047|PT|M13.869|ICD10CM|Other specified arthritis, unspecified knee|Other specified arthritis, unspecified knee +C0837957|T047|HT|M13.87|ICD10CM|Other specified arthritis, ankle and foot|Other specified arthritis, ankle and foot +C0837957|T047|AB|M13.87|ICD10CM|Other specified arthritis, ankle and foot|Other specified arthritis, ankle and foot +C2893837|T047|AB|M13.871|ICD10CM|Other specified arthritis, right ankle and foot|Other specified arthritis, right ankle and foot +C2893837|T047|PT|M13.871|ICD10CM|Other specified arthritis, right ankle and foot|Other specified arthritis, right ankle and foot +C2893838|T047|AB|M13.872|ICD10CM|Other specified arthritis, left ankle and foot|Other specified arthritis, left ankle and foot +C2893838|T047|PT|M13.872|ICD10CM|Other specified arthritis, left ankle and foot|Other specified arthritis, left ankle and foot +C2893839|T047|AB|M13.879|ICD10CM|Other specified arthritis, unspecified ankle and foot|Other specified arthritis, unspecified ankle and foot +C2893839|T047|PT|M13.879|ICD10CM|Other specified arthritis, unspecified ankle and foot|Other specified arthritis, unspecified ankle and foot +C0837958|T047|PT|M13.88|ICD10CM|Other specified arthritis, other site|Other specified arthritis, other site +C0837958|T047|AB|M13.88|ICD10CM|Other specified arthritis, other site|Other specified arthritis, other site +C0837950|T047|PT|M13.89|ICD10CM|Other specified arthritis, multiple sites|Other specified arthritis, multiple sites +C0837950|T047|AB|M13.89|ICD10CM|Other specified arthritis, multiple sites|Other specified arthritis, multiple sites +C0003864|T047|PT|M13.9|ICD10|Arthritis, unspecified|Arthritis, unspecified +C0694517|T047|AB|M14|ICD10CM|Arthropathies in other diseases classified elsewhere|Arthropathies in other diseases classified elsewhere +C0694517|T047|HT|M14|ICD10CM|Arthropathies in other diseases classified elsewhere|Arthropathies in other diseases classified elsewhere +C0694517|T047|HT|M14|ICD10|Arthropathies in other diseases classified elsewhere|Arthropathies in other diseases classified elsewhere +C0477551|T047|PT|M14.0|ICD10|Gouty arthropathy due to enzyme defects and other inherited disorders|Gouty arthropathy due to enzyme defects and other inherited disorders +C0494908|T047|PT|M14.1|ICD10|Crystal arthropathy in other metabolic disorders|Crystal arthropathy in other metabolic disorders +C0494909|T047|PT|M14.2|ICD10|Diabetic arthropathy|Diabetic arthropathy +C0311284|T047|PT|M14.3|ICD10|Lipoid dermatoarthritis|Lipoid dermatoarthritis +C0342622|T047|PT|M14.4|ICD10|Arthropathy in amyloidosis|Arthropathy in amyloidosis +C0477553|T047|PT|M14.5|ICD10|Arthropathies in other endocrine, nutritional and metabolic disorders|Arthropathies in other endocrine, nutritional and metabolic disorders +C0003892|T047|AB|M14.6|ICD10CM|Charcot's joint|Charcot's joint +C0003892|T047|HT|M14.6|ICD10CM|Charcôt's joint|Charcôt's joint +C0003892|T047|ET|M14.6|ICD10CM|Neuropathic arthropathy|Neuropathic arthropathy +C0003892|T047|PT|M14.6|ICD10|Neuropathic arthropathy|Neuropathic arthropathy +C2893841|T047|PT|M14.60|ICD10CM|Charcôt's joint, unspecified site|Charcôt's joint, unspecified site +C2893841|T047|AB|M14.60|ICD10CM|Charcot's joint, unspecified site|Charcot's joint, unspecified site +C2893842|T047|AB|M14.61|ICD10CM|Charcot's joint, shoulder|Charcot's joint, shoulder +C2893842|T047|HT|M14.61|ICD10CM|Charcôt's joint, shoulder|Charcôt's joint, shoulder +C2893843|T047|AB|M14.611|ICD10CM|Charcot's joint, right shoulder|Charcot's joint, right shoulder +C2893843|T047|PT|M14.611|ICD10CM|Charcôt's joint, right shoulder|Charcôt's joint, right shoulder +C2893844|T047|AB|M14.612|ICD10CM|Charcot's joint, left shoulder|Charcot's joint, left shoulder +C2893844|T047|PT|M14.612|ICD10CM|Charcôt's joint, left shoulder|Charcôt's joint, left shoulder +C2893845|T047|PT|M14.619|ICD10CM|Charcôt's joint, unspecified shoulder|Charcôt's joint, unspecified shoulder +C2893845|T047|AB|M14.619|ICD10CM|Charcot's joint, unspecified shoulder|Charcot's joint, unspecified shoulder +C2893846|T047|AB|M14.62|ICD10CM|Charcot's joint, elbow|Charcot's joint, elbow +C2893846|T047|HT|M14.62|ICD10CM|Charcôt's joint, elbow|Charcôt's joint, elbow +C2893847|T047|AB|M14.621|ICD10CM|Charcot's joint, right elbow|Charcot's joint, right elbow +C2893847|T047|PT|M14.621|ICD10CM|Charcôt's joint, right elbow|Charcôt's joint, right elbow +C2893848|T047|AB|M14.622|ICD10CM|Charcot's joint, left elbow|Charcot's joint, left elbow +C2893848|T047|PT|M14.622|ICD10CM|Charcôt's joint, left elbow|Charcôt's joint, left elbow +C2893849|T047|PT|M14.629|ICD10CM|Charcôt's joint, unspecified elbow|Charcôt's joint, unspecified elbow +C2893849|T047|AB|M14.629|ICD10CM|Charcot's joint, unspecified elbow|Charcot's joint, unspecified elbow +C2893852|T047|AB|M14.63|ICD10CM|Charcot's joint, wrist|Charcot's joint, wrist +C2893852|T047|HT|M14.63|ICD10CM|Charcôt's joint, wrist|Charcôt's joint, wrist +C2893850|T047|AB|M14.631|ICD10CM|Charcot's joint, right wrist|Charcot's joint, right wrist +C2893850|T047|PT|M14.631|ICD10CM|Charcôt's joint, right wrist|Charcôt's joint, right wrist +C2893851|T047|AB|M14.632|ICD10CM|Charcot's joint, left wrist|Charcot's joint, left wrist +C2893851|T047|PT|M14.632|ICD10CM|Charcôt's joint, left wrist|Charcôt's joint, left wrist +C2893852|T047|PT|M14.639|ICD10CM|Charcôt's joint, unspecified wrist|Charcôt's joint, unspecified wrist +C2893852|T047|AB|M14.639|ICD10CM|Charcot's joint, unspecified wrist|Charcot's joint, unspecified wrist +C2893853|T047|AB|M14.64|ICD10CM|Charcot's joint, hand|Charcot's joint, hand +C2893853|T047|HT|M14.64|ICD10CM|Charcôt's joint, hand|Charcôt's joint, hand +C2893854|T047|AB|M14.641|ICD10CM|Charcot's joint, right hand|Charcot's joint, right hand +C2893854|T047|PT|M14.641|ICD10CM|Charcôt's joint, right hand|Charcôt's joint, right hand +C2893855|T047|AB|M14.642|ICD10CM|Charcot's joint, left hand|Charcot's joint, left hand +C2893855|T047|PT|M14.642|ICD10CM|Charcôt's joint, left hand|Charcôt's joint, left hand +C2893856|T047|PT|M14.649|ICD10CM|Charcôt's joint, unspecified hand|Charcôt's joint, unspecified hand +C2893856|T047|AB|M14.649|ICD10CM|Charcot's joint, unspecified hand|Charcot's joint, unspecified hand +C2893859|T047|HT|M14.65|ICD10CM|Charcôt's joint, hip|Charcôt's joint, hip +C2893859|T047|AB|M14.65|ICD10CM|Charcot's joint, hip|Charcot's joint, hip +C2893857|T047|PT|M14.651|ICD10CM|Charcôt's joint, right hip|Charcôt's joint, right hip +C2893857|T047|AB|M14.651|ICD10CM|Charcot's joint, right hip|Charcot's joint, right hip +C2893858|T047|PT|M14.652|ICD10CM|Charcôt's joint, left hip|Charcôt's joint, left hip +C2893858|T047|AB|M14.652|ICD10CM|Charcot's joint, left hip|Charcot's joint, left hip +C2893859|T047|PT|M14.659|ICD10CM|Charcôt's joint, unspecified hip|Charcôt's joint, unspecified hip +C2893859|T047|AB|M14.659|ICD10CM|Charcot's joint, unspecified hip|Charcot's joint, unspecified hip +C2893860|T047|HT|M14.66|ICD10CM|Charcôt's joint, knee|Charcôt's joint, knee +C2893860|T047|AB|M14.66|ICD10CM|Charcot's joint, knee|Charcot's joint, knee +C2070985|T033|AB|M14.661|ICD10CM|Charcot's joint, right knee|Charcot's joint, right knee +C2070985|T033|PT|M14.661|ICD10CM|Charcôt's joint, right knee|Charcôt's joint, right knee +C2070986|T033|AB|M14.662|ICD10CM|Charcot's joint, left knee|Charcot's joint, left knee +C2070986|T033|PT|M14.662|ICD10CM|Charcôt's joint, left knee|Charcôt's joint, left knee +C2893860|T047|PT|M14.669|ICD10CM|Charcôt's joint, unspecified knee|Charcôt's joint, unspecified knee +C2893860|T047|AB|M14.669|ICD10CM|Charcot's joint, unspecified knee|Charcot's joint, unspecified knee +C2893861|T047|HT|M14.67|ICD10CM|Charcôt's joint, ankle and foot|Charcôt's joint, ankle and foot +C2893861|T047|AB|M14.67|ICD10CM|Charcot's joint, ankle and foot|Charcot's joint, ankle and foot +C2893862|T047|PT|M14.671|ICD10CM|Charcôt's joint, right ankle and foot|Charcôt's joint, right ankle and foot +C2893862|T047|AB|M14.671|ICD10CM|Charcot's joint, right ankle and foot|Charcot's joint, right ankle and foot +C2893863|T047|PT|M14.672|ICD10CM|Charcôt's joint, left ankle and foot|Charcôt's joint, left ankle and foot +C2893863|T047|AB|M14.672|ICD10CM|Charcot's joint, left ankle and foot|Charcot's joint, left ankle and foot +C2893864|T047|PT|M14.679|ICD10CM|Charcôt's joint, unspecified ankle and foot|Charcôt's joint, unspecified ankle and foot +C2893864|T047|AB|M14.679|ICD10CM|Charcot's joint, unspecified ankle and foot|Charcot's joint, unspecified ankle and foot +C2893865|T047|AB|M14.68|ICD10CM|Charcot's joint, vertebrae|Charcot's joint, vertebrae +C2893865|T047|PT|M14.68|ICD10CM|Charcôt's joint, vertebrae|Charcôt's joint, vertebrae +C2893866|T047|AB|M14.69|ICD10CM|Charcot's joint, multiple sites|Charcot's joint, multiple sites +C2893866|T047|PT|M14.69|ICD10CM|Charcôt's joint, multiple sites|Charcôt's joint, multiple sites +C0477554|T047|AB|M14.8|ICD10CM|Arthropathies in oth diseases classified elsewhere|Arthropathies in oth diseases classified elsewhere +C0477554|T047|HT|M14.8|ICD10CM|Arthropathies in other specified diseases classified elsewhere|Arthropathies in other specified diseases classified elsewhere +C0477554|T047|PT|M14.8|ICD10|Arthropathies in other specified diseases classified elsewhere|Arthropathies in other specified diseases classified elsewhere +C2893867|T047|AB|M14.80|ICD10CM|Arthropathies in oth diseases classd elswhr, unsp site|Arthropathies in oth diseases classd elswhr, unsp site +C2893867|T047|PT|M14.80|ICD10CM|Arthropathies in other specified diseases classified elsewhere, unspecified site|Arthropathies in other specified diseases classified elsewhere, unspecified site +C2893868|T047|AB|M14.81|ICD10CM|Arthropathies in oth diseases classified elsewhere, shoulder|Arthropathies in oth diseases classified elsewhere, shoulder +C2893868|T047|HT|M14.81|ICD10CM|Arthropathies in other specified diseases classified elsewhere, shoulder|Arthropathies in other specified diseases classified elsewhere, shoulder +C2893869|T047|AB|M14.811|ICD10CM|Arthropathies in oth diseases classd elswhr, right shoulder|Arthropathies in oth diseases classd elswhr, right shoulder +C2893869|T047|PT|M14.811|ICD10CM|Arthropathies in other specified diseases classified elsewhere, right shoulder|Arthropathies in other specified diseases classified elsewhere, right shoulder +C2893870|T047|AB|M14.812|ICD10CM|Arthropathies in oth diseases classd elswhr, left shoulder|Arthropathies in oth diseases classd elswhr, left shoulder +C2893870|T047|PT|M14.812|ICD10CM|Arthropathies in other specified diseases classified elsewhere, left shoulder|Arthropathies in other specified diseases classified elsewhere, left shoulder +C2893871|T047|AB|M14.819|ICD10CM|Arthropathies in oth diseases classd elswhr, unsp shoulder|Arthropathies in oth diseases classd elswhr, unsp shoulder +C2893871|T047|PT|M14.819|ICD10CM|Arthropathies in other specified diseases classified elsewhere, unspecified shoulder|Arthropathies in other specified diseases classified elsewhere, unspecified shoulder +C2893872|T047|AB|M14.82|ICD10CM|Arthropathies in oth diseases classified elsewhere, elbow|Arthropathies in oth diseases classified elsewhere, elbow +C2893872|T047|HT|M14.82|ICD10CM|Arthropathies in other specified diseases classified elsewhere, elbow|Arthropathies in other specified diseases classified elsewhere, elbow +C2893873|T047|AB|M14.821|ICD10CM|Arthropathies in oth diseases classd elswhr, right elbow|Arthropathies in oth diseases classd elswhr, right elbow +C2893873|T047|PT|M14.821|ICD10CM|Arthropathies in other specified diseases classified elsewhere, right elbow|Arthropathies in other specified diseases classified elsewhere, right elbow +C2893874|T047|AB|M14.822|ICD10CM|Arthropathies in oth diseases classd elswhr, left elbow|Arthropathies in oth diseases classd elswhr, left elbow +C2893874|T047|PT|M14.822|ICD10CM|Arthropathies in other specified diseases classified elsewhere, left elbow|Arthropathies in other specified diseases classified elsewhere, left elbow +C2893875|T047|AB|M14.829|ICD10CM|Arthropathies in oth diseases classd elswhr, unsp elbow|Arthropathies in oth diseases classd elswhr, unsp elbow +C2893875|T047|PT|M14.829|ICD10CM|Arthropathies in other specified diseases classified elsewhere, unspecified elbow|Arthropathies in other specified diseases classified elsewhere, unspecified elbow +C2893876|T047|AB|M14.83|ICD10CM|Arthropathies in oth diseases classified elsewhere, wrist|Arthropathies in oth diseases classified elsewhere, wrist +C2893876|T047|HT|M14.83|ICD10CM|Arthropathies in other specified diseases classified elsewhere, wrist|Arthropathies in other specified diseases classified elsewhere, wrist +C2893877|T047|AB|M14.831|ICD10CM|Arthropathies in oth diseases classd elswhr, right wrist|Arthropathies in oth diseases classd elswhr, right wrist +C2893877|T047|PT|M14.831|ICD10CM|Arthropathies in other specified diseases classified elsewhere, right wrist|Arthropathies in other specified diseases classified elsewhere, right wrist +C2893878|T047|AB|M14.832|ICD10CM|Arthropathies in oth diseases classd elswhr, left wrist|Arthropathies in oth diseases classd elswhr, left wrist +C2893878|T047|PT|M14.832|ICD10CM|Arthropathies in other specified diseases classified elsewhere, left wrist|Arthropathies in other specified diseases classified elsewhere, left wrist +C2893879|T047|AB|M14.839|ICD10CM|Arthropathies in oth diseases classd elswhr, unsp wrist|Arthropathies in oth diseases classd elswhr, unsp wrist +C2893879|T047|PT|M14.839|ICD10CM|Arthropathies in other specified diseases classified elsewhere, unspecified wrist|Arthropathies in other specified diseases classified elsewhere, unspecified wrist +C2893880|T047|AB|M14.84|ICD10CM|Arthropathies in oth diseases classified elsewhere, hand|Arthropathies in oth diseases classified elsewhere, hand +C2893880|T047|HT|M14.84|ICD10CM|Arthropathies in other specified diseases classified elsewhere, hand|Arthropathies in other specified diseases classified elsewhere, hand +C2893881|T047|AB|M14.841|ICD10CM|Arthropathies in oth diseases classd elswhr, right hand|Arthropathies in oth diseases classd elswhr, right hand +C2893881|T047|PT|M14.841|ICD10CM|Arthropathies in other specified diseases classified elsewhere, right hand|Arthropathies in other specified diseases classified elsewhere, right hand +C2893882|T047|AB|M14.842|ICD10CM|Arthropathies in oth diseases classd elswhr, left hand|Arthropathies in oth diseases classd elswhr, left hand +C2893882|T047|PT|M14.842|ICD10CM|Arthropathies in other specified diseases classified elsewhere, left hand|Arthropathies in other specified diseases classified elsewhere, left hand +C2893883|T047|AB|M14.849|ICD10CM|Arthropathies in oth diseases classd elswhr, unsp hand|Arthropathies in oth diseases classd elswhr, unsp hand +C2893883|T047|PT|M14.849|ICD10CM|Arthropathies in other specified diseases classified elsewhere, unspecified hand|Arthropathies in other specified diseases classified elsewhere, unspecified hand +C2893884|T047|AB|M14.85|ICD10CM|Arthropathies in oth diseases classified elsewhere, hip|Arthropathies in oth diseases classified elsewhere, hip +C2893884|T047|HT|M14.85|ICD10CM|Arthropathies in other specified diseases classified elsewhere, hip|Arthropathies in other specified diseases classified elsewhere, hip +C2893885|T047|AB|M14.851|ICD10CM|Arthropathies in oth diseases classd elswhr, right hip|Arthropathies in oth diseases classd elswhr, right hip +C2893885|T047|PT|M14.851|ICD10CM|Arthropathies in other specified diseases classified elsewhere, right hip|Arthropathies in other specified diseases classified elsewhere, right hip +C2893886|T047|AB|M14.852|ICD10CM|Arthropathies in oth diseases classified elsewhere, left hip|Arthropathies in oth diseases classified elsewhere, left hip +C2893886|T047|PT|M14.852|ICD10CM|Arthropathies in other specified diseases classified elsewhere, left hip|Arthropathies in other specified diseases classified elsewhere, left hip +C2893887|T047|AB|M14.859|ICD10CM|Arthropathies in oth diseases classified elsewhere, unsp hip|Arthropathies in oth diseases classified elsewhere, unsp hip +C2893887|T047|PT|M14.859|ICD10CM|Arthropathies in other specified diseases classified elsewhere, unspecified hip|Arthropathies in other specified diseases classified elsewhere, unspecified hip +C2893888|T047|AB|M14.86|ICD10CM|Arthropathies in oth diseases classified elsewhere, knee|Arthropathies in oth diseases classified elsewhere, knee +C2893888|T047|HT|M14.86|ICD10CM|Arthropathies in other specified diseases classified elsewhere, knee|Arthropathies in other specified diseases classified elsewhere, knee +C2893889|T047|AB|M14.861|ICD10CM|Arthropathies in oth diseases classd elswhr, right knee|Arthropathies in oth diseases classd elswhr, right knee +C2893889|T047|PT|M14.861|ICD10CM|Arthropathies in other specified diseases classified elsewhere, right knee|Arthropathies in other specified diseases classified elsewhere, right knee +C2893890|T047|AB|M14.862|ICD10CM|Arthropathies in oth diseases classd elswhr, left knee|Arthropathies in oth diseases classd elswhr, left knee +C2893890|T047|PT|M14.862|ICD10CM|Arthropathies in other specified diseases classified elsewhere, left knee|Arthropathies in other specified diseases classified elsewhere, left knee +C2893891|T047|AB|M14.869|ICD10CM|Arthropathies in oth diseases classd elswhr, unsp knee|Arthropathies in oth diseases classd elswhr, unsp knee +C2893891|T047|PT|M14.869|ICD10CM|Arthropathies in other specified diseases classified elsewhere, unspecified knee|Arthropathies in other specified diseases classified elsewhere, unspecified knee +C2893892|T047|AB|M14.87|ICD10CM|Arthropathies in oth diseases classd elswhr, ankle and foot|Arthropathies in oth diseases classd elswhr, ankle and foot +C2893892|T047|HT|M14.87|ICD10CM|Arthropathies in other specified diseases classified elsewhere, ankle and foot|Arthropathies in other specified diseases classified elsewhere, ankle and foot +C2893893|T047|AB|M14.871|ICD10CM|Arthropathies in oth diseases classd elswhr, right ank/ft|Arthropathies in oth diseases classd elswhr, right ank/ft +C2893893|T047|PT|M14.871|ICD10CM|Arthropathies in other specified diseases classified elsewhere, right ankle and foot|Arthropathies in other specified diseases classified elsewhere, right ankle and foot +C2893894|T047|AB|M14.872|ICD10CM|Arthropathies in oth diseases classd elswhr, left ank/ft|Arthropathies in oth diseases classd elswhr, left ank/ft +C2893894|T047|PT|M14.872|ICD10CM|Arthropathies in other specified diseases classified elsewhere, left ankle and foot|Arthropathies in other specified diseases classified elsewhere, left ankle and foot +C2893895|T047|AB|M14.879|ICD10CM|Arthropathies in oth diseases classd elswhr, unsp ank/ft|Arthropathies in oth diseases classd elswhr, unsp ank/ft +C2893895|T047|PT|M14.879|ICD10CM|Arthropathies in other specified diseases classified elsewhere, unspecified ankle and foot|Arthropathies in other specified diseases classified elsewhere, unspecified ankle and foot +C2893896|T047|AB|M14.88|ICD10CM|Arthropathies in oth diseases classd elswhr, vertebrae|Arthropathies in oth diseases classd elswhr, vertebrae +C2893896|T047|PT|M14.88|ICD10CM|Arthropathies in other specified diseases classified elsewhere, vertebrae|Arthropathies in other specified diseases classified elsewhere, vertebrae +C2893897|T047|AB|M14.89|ICD10CM|Arthropathies in oth diseases classd elswhr, multiple sites|Arthropathies in oth diseases classd elswhr, multiple sites +C2893897|T047|PT|M14.89|ICD10CM|Arthropathies in other specified diseases classified elsewhere, multiple sites|Arthropathies in other specified diseases classified elsewhere, multiple sites +C3495373|T047|ET|M15|ICD10CM|arthritis of multiple sites|arthritis of multiple sites +C0702154|T047|HT|M15|ICD10|Polyarthrosis|Polyarthrosis +C2893907|T047|AB|M15|ICD10CM|Polyosteoarthritis|Polyosteoarthritis +C2893907|T047|HT|M15|ICD10CM|Polyosteoarthritis|Polyosteoarthritis +C0029408|T047|HT|M15-M19|ICD10CM|Osteoarthritis (M15-M19)|Osteoarthritis (M15-M19) +C0022408|T047|HT|M15-M19.9|ICD10|Arthrosis|Arthrosis +C2893900|T047|AB|M15.0|ICD10CM|Primary generalized (osteo)arthritis|Primary generalized (osteo)arthritis +C2893900|T047|PT|M15.0|ICD10CM|Primary generalized (osteo)arthritis|Primary generalized (osteo)arthritis +C1384584|T047|PT|M15.0|ICD10|Primary generalized (osteo)arthrosis|Primary generalized (osteo)arthrosis +C0452158|T047|PT|M15.1|ICD10|Heberden's nodes (with arthropathy)|Heberden's nodes (with arthropathy) +C0452158|T047|PT|M15.1|ICD10CM|Heberden's nodes (with arthropathy)|Heberden's nodes (with arthropathy) +C0452158|T047|AB|M15.1|ICD10CM|Heberden's nodes (with arthropathy)|Heberden's nodes (with arthropathy) +C2893901|T047|ET|M15.1|ICD10CM|Interphalangeal distal osteoarthritis|Interphalangeal distal osteoarthritis +C0452149|T047|PT|M15.2|ICD10CM|Bouchard's nodes (with arthropathy)|Bouchard's nodes (with arthropathy) +C0452149|T047|AB|M15.2|ICD10CM|Bouchard's nodes (with arthropathy)|Bouchard's nodes (with arthropathy) +C0452149|T047|PT|M15.2|ICD10|Bouchard's nodes (with arthropathy)|Bouchard's nodes (with arthropathy) +C2893902|T047|ET|M15.2|ICD10CM|Juxtaphalangeal distal osteoarthritis|Juxtaphalangeal distal osteoarthritis +C2893903|T047|ET|M15.3|ICD10CM|Post-traumatic polyosteoarthritis|Post-traumatic polyosteoarthritis +C2893904|T047|AB|M15.3|ICD10CM|Secondary multiple arthritis|Secondary multiple arthritis +C2893904|T047|PT|M15.3|ICD10CM|Secondary multiple arthritis|Secondary multiple arthritis +C0451839|T047|PT|M15.3|ICD10|Secondary multiple arthrosis|Secondary multiple arthrosis +C2893905|T047|AB|M15.4|ICD10CM|Erosive (osteo)arthritis|Erosive (osteo)arthritis +C2893905|T047|PT|M15.4|ICD10CM|Erosive (osteo)arthritis|Erosive (osteo)arthritis +C0451840|T047|PT|M15.4|ICD10|Erosive (osteo)arthrosis|Erosive (osteo)arthrosis +C0477555|T047|PT|M15.8|ICD10|Other polyarthrosis|Other polyarthrosis +C2893906|T047|AB|M15.8|ICD10CM|Other polyosteoarthritis|Other polyosteoarthritis +C2893906|T047|PT|M15.8|ICD10CM|Other polyosteoarthritis|Other polyosteoarthritis +C1384584|T047|ET|M15.9|ICD10CM|Generalized osteoarthritis NOS|Generalized osteoarthritis NOS +C0702154|T047|PT|M15.9|ICD10|Polyarthrosis, unspecified|Polyarthrosis, unspecified +C2893907|T047|AB|M15.9|ICD10CM|Polyosteoarthritis, unspecified|Polyosteoarthritis, unspecified +C2893907|T047|PT|M15.9|ICD10CM|Polyosteoarthritis, unspecified|Polyosteoarthritis, unspecified +C0029410|T047|HT|M16|ICD10|Coxarthrosis [arthrosis of hip]|Coxarthrosis [arthrosis of hip] +C0029410|T047|HT|M16|ICD10CM|Osteoarthritis of hip|Osteoarthritis of hip +C0029410|T047|AB|M16|ICD10CM|Osteoarthritis of hip|Osteoarthritis of hip +C2893908|T047|AB|M16.0|ICD10CM|Bilateral primary osteoarthritis of hip|Bilateral primary osteoarthritis of hip +C2893908|T047|PT|M16.0|ICD10CM|Bilateral primary osteoarthritis of hip|Bilateral primary osteoarthritis of hip +C0451904|T047|PT|M16.0|ICD10|Primary coxarthrosis, bilateral|Primary coxarthrosis, bilateral +C0477556|T047|PT|M16.1|ICD10|Other primary coxarthrosis|Other primary coxarthrosis +C2893909|T047|ET|M16.1|ICD10CM|Primary osteoarthritis of hip NOS|Primary osteoarthritis of hip NOS +C2893910|T047|AB|M16.1|ICD10CM|Unilateral primary osteoarthritis of hip|Unilateral primary osteoarthritis of hip +C2893910|T047|HT|M16.1|ICD10CM|Unilateral primary osteoarthritis of hip|Unilateral primary osteoarthritis of hip +C2893911|T047|AB|M16.10|ICD10CM|Unilateral primary osteoarthritis, unspecified hip|Unilateral primary osteoarthritis, unspecified hip +C2893911|T047|PT|M16.10|ICD10CM|Unilateral primary osteoarthritis, unspecified hip|Unilateral primary osteoarthritis, unspecified hip +C2893912|T047|AB|M16.11|ICD10CM|Unilateral primary osteoarthritis, right hip|Unilateral primary osteoarthritis, right hip +C2893912|T047|PT|M16.11|ICD10CM|Unilateral primary osteoarthritis, right hip|Unilateral primary osteoarthritis, right hip +C2893913|T047|AB|M16.12|ICD10CM|Unilateral primary osteoarthritis, left hip|Unilateral primary osteoarthritis, left hip +C2893913|T047|PT|M16.12|ICD10CM|Unilateral primary osteoarthritis, left hip|Unilateral primary osteoarthritis, left hip +C2893914|T047|AB|M16.2|ICD10CM|Bilateral osteoarthritis resulting from hip dysplasia|Bilateral osteoarthritis resulting from hip dysplasia +C2893914|T047|PT|M16.2|ICD10CM|Bilateral osteoarthritis resulting from hip dysplasia|Bilateral osteoarthritis resulting from hip dysplasia +C0451905|T047|PT|M16.2|ICD10|Coxarthrosis resulting from dysplasia, bilateral|Coxarthrosis resulting from dysplasia, bilateral +C2893915|T047|ET|M16.3|ICD10CM|Dysplastic osteoarthritis of hip NOS|Dysplastic osteoarthritis of hip NOS +C0477557|T047|PT|M16.3|ICD10|Other dysplastic coxarthrosis|Other dysplastic coxarthrosis +C2893916|T047|AB|M16.3|ICD10CM|Unilateral osteoarthritis resulting from hip dysplasia|Unilateral osteoarthritis resulting from hip dysplasia +C2893916|T047|HT|M16.3|ICD10CM|Unilateral osteoarthritis resulting from hip dysplasia|Unilateral osteoarthritis resulting from hip dysplasia +C2893917|T047|AB|M16.30|ICD10CM|Unilateral osteoarth resulting from hip dysplasia, unsp hip|Unilateral osteoarth resulting from hip dysplasia, unsp hip +C2893917|T047|PT|M16.30|ICD10CM|Unilateral osteoarthritis resulting from hip dysplasia, unspecified hip|Unilateral osteoarthritis resulting from hip dysplasia, unspecified hip +C2893918|T047|AB|M16.31|ICD10CM|Unilateral osteoarth resulting from hip dysplasia, right hip|Unilateral osteoarth resulting from hip dysplasia, right hip +C2893918|T047|PT|M16.31|ICD10CM|Unilateral osteoarthritis resulting from hip dysplasia, right hip|Unilateral osteoarthritis resulting from hip dysplasia, right hip +C2893919|T047|AB|M16.32|ICD10CM|Unilateral osteoarth resulting from hip dysplasia, left hip|Unilateral osteoarth resulting from hip dysplasia, left hip +C2893919|T047|PT|M16.32|ICD10CM|Unilateral osteoarthritis resulting from hip dysplasia, left hip|Unilateral osteoarthritis resulting from hip dysplasia, left hip +C2893920|T047|AB|M16.4|ICD10CM|Bilateral post-traumatic osteoarthritis of hip|Bilateral post-traumatic osteoarthritis of hip +C2893920|T047|PT|M16.4|ICD10CM|Bilateral post-traumatic osteoarthritis of hip|Bilateral post-traumatic osteoarthritis of hip +C0451907|T047|PT|M16.4|ICD10|Post-traumatic coxarthrosis, bilateral|Post-traumatic coxarthrosis, bilateral +C0477558|T047|PT|M16.5|ICD10|Other post-traumatic coxarthrosis|Other post-traumatic coxarthrosis +C2893921|T047|ET|M16.5|ICD10CM|Post-traumatic osteoarthritis of hip NOS|Post-traumatic osteoarthritis of hip NOS +C2893922|T047|AB|M16.5|ICD10CM|Unilateral post-traumatic osteoarthritis of hip|Unilateral post-traumatic osteoarthritis of hip +C2893922|T047|HT|M16.5|ICD10CM|Unilateral post-traumatic osteoarthritis of hip|Unilateral post-traumatic osteoarthritis of hip +C2893923|T047|AB|M16.50|ICD10CM|Unilateral post-traumatic osteoarthritis, unspecified hip|Unilateral post-traumatic osteoarthritis, unspecified hip +C2893923|T047|PT|M16.50|ICD10CM|Unilateral post-traumatic osteoarthritis, unspecified hip|Unilateral post-traumatic osteoarthritis, unspecified hip +C2893924|T047|AB|M16.51|ICD10CM|Unilateral post-traumatic osteoarthritis, right hip|Unilateral post-traumatic osteoarthritis, right hip +C2893924|T047|PT|M16.51|ICD10CM|Unilateral post-traumatic osteoarthritis, right hip|Unilateral post-traumatic osteoarthritis, right hip +C2893925|T047|AB|M16.52|ICD10CM|Unilateral post-traumatic osteoarthritis, left hip|Unilateral post-traumatic osteoarthritis, left hip +C2893925|T047|PT|M16.52|ICD10CM|Unilateral post-traumatic osteoarthritis, left hip|Unilateral post-traumatic osteoarthritis, left hip +C2893926|T047|AB|M16.6|ICD10CM|Other bilateral secondary osteoarthritis of hip|Other bilateral secondary osteoarthritis of hip +C2893926|T047|PT|M16.6|ICD10CM|Other bilateral secondary osteoarthritis of hip|Other bilateral secondary osteoarthritis of hip +C0477559|T047|PT|M16.6|ICD10|Other secondary coxarthrosis, bilateral|Other secondary coxarthrosis, bilateral +C0477569|T047|PT|M16.7|ICD10|Other secondary coxarthrosis|Other secondary coxarthrosis +C2893928|T047|AB|M16.7|ICD10CM|Other unilateral secondary osteoarthritis of hip|Other unilateral secondary osteoarthritis of hip +C2893928|T047|PT|M16.7|ICD10CM|Other unilateral secondary osteoarthritis of hip|Other unilateral secondary osteoarthritis of hip +C2893927|T047|ET|M16.7|ICD10CM|Secondary osteoarthritis of hip NOS|Secondary osteoarthritis of hip NOS +C0029410|T047|PT|M16.9|ICD10|Coxarthrosis, unspecified|Coxarthrosis, unspecified +C0029410|T047|AB|M16.9|ICD10CM|Osteoarthritis of hip, unspecified|Osteoarthritis of hip, unspecified +C0029410|T047|PT|M16.9|ICD10CM|Osteoarthritis of hip, unspecified|Osteoarthritis of hip, unspecified +C0240111|T047|HT|M17|ICD10|Gonarthrosis [arthrosis of knee]|Gonarthrosis [arthrosis of knee] +C0409959|T047|HT|M17|ICD10CM|Osteoarthritis of knee|Osteoarthritis of knee +C0409959|T047|AB|M17|ICD10CM|Osteoarthritis of knee|Osteoarthritis of knee +C2893930|T047|AB|M17.0|ICD10CM|Bilateral primary osteoarthritis of knee|Bilateral primary osteoarthritis of knee +C2893930|T047|PT|M17.0|ICD10CM|Bilateral primary osteoarthritis of knee|Bilateral primary osteoarthritis of knee +C0451906|T047|PT|M17.0|ICD10|Primary gonarthrosis, bilateral|Primary gonarthrosis, bilateral +C0477560|T047|PT|M17.1|ICD10|Other primary gonarthrosis|Other primary gonarthrosis +C2893931|T047|ET|M17.1|ICD10CM|Primary osteoarthritis of knee NOS|Primary osteoarthritis of knee NOS +C2893932|T047|AB|M17.1|ICD10CM|Unilateral primary osteoarthritis of knee|Unilateral primary osteoarthritis of knee +C2893932|T047|HT|M17.1|ICD10CM|Unilateral primary osteoarthritis of knee|Unilateral primary osteoarthritis of knee +C2893933|T047|AB|M17.10|ICD10CM|Unilateral primary osteoarthritis, unspecified knee|Unilateral primary osteoarthritis, unspecified knee +C2893933|T047|PT|M17.10|ICD10CM|Unilateral primary osteoarthritis, unspecified knee|Unilateral primary osteoarthritis, unspecified knee +C2893934|T047|AB|M17.11|ICD10CM|Unilateral primary osteoarthritis, right knee|Unilateral primary osteoarthritis, right knee +C2893934|T047|PT|M17.11|ICD10CM|Unilateral primary osteoarthritis, right knee|Unilateral primary osteoarthritis, right knee +C2893935|T047|AB|M17.12|ICD10CM|Unilateral primary osteoarthritis, left knee|Unilateral primary osteoarthritis, left knee +C2893935|T047|PT|M17.12|ICD10CM|Unilateral primary osteoarthritis, left knee|Unilateral primary osteoarthritis, left knee +C2893936|T047|AB|M17.2|ICD10CM|Bilateral post-traumatic osteoarthritis of knee|Bilateral post-traumatic osteoarthritis of knee +C2893936|T047|PT|M17.2|ICD10CM|Bilateral post-traumatic osteoarthritis of knee|Bilateral post-traumatic osteoarthritis of knee +C0451903|T047|PT|M17.2|ICD10|Post-traumatic gonarthrosis, bilateral|Post-traumatic gonarthrosis, bilateral +C0477561|T047|PT|M17.3|ICD10|Other post-traumatic gonarthrosis|Other post-traumatic gonarthrosis +C2893937|T047|ET|M17.3|ICD10CM|Post-traumatic osteoarthritis of knee NOS|Post-traumatic osteoarthritis of knee NOS +C2893938|T047|AB|M17.3|ICD10CM|Unilateral post-traumatic osteoarthritis of knee|Unilateral post-traumatic osteoarthritis of knee +C2893938|T047|HT|M17.3|ICD10CM|Unilateral post-traumatic osteoarthritis of knee|Unilateral post-traumatic osteoarthritis of knee +C2893939|T047|AB|M17.30|ICD10CM|Unilateral post-traumatic osteoarthritis, unspecified knee|Unilateral post-traumatic osteoarthritis, unspecified knee +C2893939|T047|PT|M17.30|ICD10CM|Unilateral post-traumatic osteoarthritis, unspecified knee|Unilateral post-traumatic osteoarthritis, unspecified knee +C2893940|T047|AB|M17.31|ICD10CM|Unilateral post-traumatic osteoarthritis, right knee|Unilateral post-traumatic osteoarthritis, right knee +C2893940|T047|PT|M17.31|ICD10CM|Unilateral post-traumatic osteoarthritis, right knee|Unilateral post-traumatic osteoarthritis, right knee +C2893941|T047|AB|M17.32|ICD10CM|Unilateral post-traumatic osteoarthritis, left knee|Unilateral post-traumatic osteoarthritis, left knee +C2893941|T047|PT|M17.32|ICD10CM|Unilateral post-traumatic osteoarthritis, left knee|Unilateral post-traumatic osteoarthritis, left knee +C2893942|T047|AB|M17.4|ICD10CM|Other bilateral secondary osteoarthritis of knee|Other bilateral secondary osteoarthritis of knee +C2893942|T047|PT|M17.4|ICD10CM|Other bilateral secondary osteoarthritis of knee|Other bilateral secondary osteoarthritis of knee +C0477562|T047|PT|M17.4|ICD10|Other secondary gonarthrosis, bilateral|Other secondary gonarthrosis, bilateral +C0477563|T047|PT|M17.5|ICD10|Other secondary gonarthrosis|Other secondary gonarthrosis +C2893944|T047|AB|M17.5|ICD10CM|Other unilateral secondary osteoarthritis of knee|Other unilateral secondary osteoarthritis of knee +C2893944|T047|PT|M17.5|ICD10CM|Other unilateral secondary osteoarthritis of knee|Other unilateral secondary osteoarthritis of knee +C2893943|T047|ET|M17.5|ICD10CM|Secondary osteoarthritis of knee NOS|Secondary osteoarthritis of knee NOS +C0240111|T047|PT|M17.9|ICD10|Gonarthrosis, unspecified|Gonarthrosis, unspecified +C0409959|T047|AB|M17.9|ICD10CM|Osteoarthritis of knee, unspecified|Osteoarthritis of knee, unspecified +C0409959|T047|PT|M17.9|ICD10CM|Osteoarthritis of knee, unspecified|Osteoarthritis of knee, unspecified +C0494917|T047|HT|M18|ICD10|Arthrosis of first carpometacarpal joint|Arthrosis of first carpometacarpal joint +C0409956|T047|HT|M18|ICD10CM|Osteoarthritis of first carpometacarpal joint|Osteoarthritis of first carpometacarpal joint +C0409956|T047|AB|M18|ICD10CM|Osteoarthritis of first carpometacarpal joint|Osteoarthritis of first carpometacarpal joint +C2893945|T047|AB|M18.0|ICD10CM|Bilateral primary osteoarth of first carpometacarp joints|Bilateral primary osteoarth of first carpometacarp joints +C2893945|T047|PT|M18.0|ICD10CM|Bilateral primary osteoarthritis of first carpometacarpal joints|Bilateral primary osteoarthritis of first carpometacarpal joints +C0451908|T047|PT|M18.0|ICD10|Primary arthrosis of first carpometacarpal joints, bilateral|Primary arthrosis of first carpometacarpal joints, bilateral +C0477564|T047|PT|M18.1|ICD10|Other primary arthrosis of first carpometacarpal joint|Other primary arthrosis of first carpometacarpal joint +C2893946|T047|ET|M18.1|ICD10CM|Primary osteoarthritis of first carpometacarpal joint NOS|Primary osteoarthritis of first carpometacarpal joint NOS +C2893947|T047|AB|M18.1|ICD10CM|Unilateral primary osteoarth of first carpometacarp joint|Unilateral primary osteoarth of first carpometacarp joint +C2893947|T047|HT|M18.1|ICD10CM|Unilateral primary osteoarthritis of first carpometacarpal joint|Unilateral primary osteoarthritis of first carpometacarpal joint +C2893948|T047|AB|M18.10|ICD10CM|Unil prim osteoarth of first carpometacarp joint, unsp hand|Unil prim osteoarth of first carpometacarp joint, unsp hand +C2893948|T047|PT|M18.10|ICD10CM|Unilateral primary osteoarthritis of first carpometacarpal joint, unspecified hand|Unilateral primary osteoarthritis of first carpometacarpal joint, unspecified hand +C2893949|T047|AB|M18.11|ICD10CM|Unil primary osteoarth of first carpometacarp joint, r hand|Unil primary osteoarth of first carpometacarp joint, r hand +C2893949|T047|PT|M18.11|ICD10CM|Unilateral primary osteoarthritis of first carpometacarpal joint, right hand|Unilateral primary osteoarthritis of first carpometacarpal joint, right hand +C2893950|T047|AB|M18.12|ICD10CM|Unil primary osteoarth of first carpometacarp joint, l hand|Unil primary osteoarth of first carpometacarp joint, l hand +C2893950|T047|PT|M18.12|ICD10CM|Unilateral primary osteoarthritis of first carpometacarpal joint, left hand|Unilateral primary osteoarthritis of first carpometacarpal joint, left hand +C2893951|T047|AB|M18.2|ICD10CM|Bi post-trauma osteoarth of first carpometacarp joints|Bi post-trauma osteoarth of first carpometacarp joints +C2893951|T047|PT|M18.2|ICD10CM|Bilateral post-traumatic osteoarthritis of first carpometacarpal joints|Bilateral post-traumatic osteoarthritis of first carpometacarpal joints +C0451909|T047|PT|M18.2|ICD10|Post-traumatic arthrosis of first carpometacarpal joints, bilateral|Post-traumatic arthrosis of first carpometacarpal joints, bilateral +C0477565|T047|PT|M18.3|ICD10|Other post-traumatic arthrosis of first carpometacarpal joint|Other post-traumatic arthrosis of first carpometacarpal joint +C2893952|T046|ET|M18.3|ICD10CM|Post-traumatic osteoarthritis of first carpometacarpal joint NOS|Post-traumatic osteoarthritis of first carpometacarpal joint NOS +C2893953|T047|AB|M18.3|ICD10CM|Unil post-trauma osteoarth of first carpometacarp joint|Unil post-trauma osteoarth of first carpometacarp joint +C2893953|T047|HT|M18.3|ICD10CM|Unilateral post-traumatic osteoarthritis of first carpometacarpal joint|Unilateral post-traumatic osteoarthritis of first carpometacarpal joint +C2893954|T047|AB|M18.30|ICD10CM|Unil post-trauma osteoarth of 1st carpometacarp jt,unsp hand|Unil post-trauma osteoarth of 1st carpometacarp jt,unsp hand +C2893954|T047|PT|M18.30|ICD10CM|Unilateral post-traumatic osteoarthritis of first carpometacarpal joint, unspecified hand|Unilateral post-traumatic osteoarthritis of first carpometacarpal joint, unspecified hand +C2893955|T047|AB|M18.31|ICD10CM|Unil post-trauma osteoarth of 1st carpometacarp jt, r hand|Unil post-trauma osteoarth of 1st carpometacarp jt, r hand +C2893955|T047|PT|M18.31|ICD10CM|Unilateral post-traumatic osteoarthritis of first carpometacarpal joint, right hand|Unilateral post-traumatic osteoarthritis of first carpometacarpal joint, right hand +C2893956|T047|AB|M18.32|ICD10CM|Unil post-trauma osteoarth of 1st carpometacarp jt, l hand|Unil post-trauma osteoarth of 1st carpometacarp jt, l hand +C2893956|T047|PT|M18.32|ICD10CM|Unilateral post-traumatic osteoarthritis of first carpometacarpal joint, left hand|Unilateral post-traumatic osteoarthritis of first carpometacarpal joint, left hand +C2893957|T047|AB|M18.4|ICD10CM|Oth bi secondary osteoarth of first carpometacarp joints|Oth bi secondary osteoarth of first carpometacarp joints +C2893957|T047|PT|M18.4|ICD10CM|Other bilateral secondary osteoarthritis of first carpometacarpal joints|Other bilateral secondary osteoarthritis of first carpometacarpal joints +C0477566|T047|PT|M18.4|ICD10|Other secondary arthrosis of first carpometacarpal joints, bilateral|Other secondary arthrosis of first carpometacarpal joints, bilateral +C2893959|T047|AB|M18.5|ICD10CM|Oth unil secondary osteoarth of first carpometacarp joint|Oth unil secondary osteoarth of first carpometacarp joint +C0477567|T047|PT|M18.5|ICD10|Other secondary arthrosis of first carpometacarpal joint|Other secondary arthrosis of first carpometacarpal joint +C2893959|T047|HT|M18.5|ICD10CM|Other unilateral secondary osteoarthritis of first carpometacarpal joint|Other unilateral secondary osteoarthritis of first carpometacarpal joint +C2893958|T047|ET|M18.5|ICD10CM|Secondary osteoarthritis of first carpometacarpal joint NOS|Secondary osteoarthritis of first carpometacarpal joint NOS +C2893960|T047|AB|M18.50|ICD10CM|Oth unil sec osteoarth of 1st carpometacarp joint, unsp hand|Oth unil sec osteoarth of 1st carpometacarp joint, unsp hand +C2893960|T047|PT|M18.50|ICD10CM|Other unilateral secondary osteoarthritis of first carpometacarpal joint, unspecified hand|Other unilateral secondary osteoarthritis of first carpometacarpal joint, unspecified hand +C2893961|T047|AB|M18.51|ICD10CM|Oth unil sec osteoarth of first carpometacarp joint, r hand|Oth unil sec osteoarth of first carpometacarp joint, r hand +C2893961|T047|PT|M18.51|ICD10CM|Other unilateral secondary osteoarthritis of first carpometacarpal joint, right hand|Other unilateral secondary osteoarthritis of first carpometacarpal joint, right hand +C2893962|T047|AB|M18.52|ICD10CM|Oth unil sec osteoarth of first carpometacarp joint, l hand|Oth unil sec osteoarth of first carpometacarp joint, l hand +C2893962|T047|PT|M18.52|ICD10CM|Other unilateral secondary osteoarthritis of first carpometacarpal joint, left hand|Other unilateral secondary osteoarthritis of first carpometacarpal joint, left hand +C0494917|T047|PT|M18.9|ICD10|Arthrosis of first carpometacarpal joint, unspecified|Arthrosis of first carpometacarpal joint, unspecified +C0409956|T047|AB|M18.9|ICD10CM|Osteoarthritis of first carpometacarpal joint, unspecified|Osteoarthritis of first carpometacarpal joint, unspecified +C0409956|T047|PT|M18.9|ICD10CM|Osteoarthritis of first carpometacarpal joint, unspecified|Osteoarthritis of first carpometacarpal joint, unspecified +C2893964|T047|AB|M19|ICD10CM|Other and unspecified osteoarthritis|Other and unspecified osteoarthritis +C2893964|T047|HT|M19|ICD10CM|Other and unspecified osteoarthritis|Other and unspecified osteoarthritis +C0494918|T047|HT|M19|ICD10|Other arthrosis|Other arthrosis +C0494919|T047|PT|M19.0|ICD10|Primary arthrosis of other joints|Primary arthrosis of other joints +C2893965|T047|AB|M19.0|ICD10CM|Primary osteoarthritis of other joints|Primary osteoarthritis of other joints +C2893965|T047|HT|M19.0|ICD10CM|Primary osteoarthritis of other joints|Primary osteoarthritis of other joints +C2893968|T047|AB|M19.01|ICD10CM|Primary osteoarthritis, shoulder|Primary osteoarthritis, shoulder +C2893968|T047|HT|M19.01|ICD10CM|Primary osteoarthritis, shoulder|Primary osteoarthritis, shoulder +C2893966|T047|AB|M19.011|ICD10CM|Primary osteoarthritis, right shoulder|Primary osteoarthritis, right shoulder +C2893966|T047|PT|M19.011|ICD10CM|Primary osteoarthritis, right shoulder|Primary osteoarthritis, right shoulder +C2893967|T047|AB|M19.012|ICD10CM|Primary osteoarthritis, left shoulder|Primary osteoarthritis, left shoulder +C2893967|T047|PT|M19.012|ICD10CM|Primary osteoarthritis, left shoulder|Primary osteoarthritis, left shoulder +C2893968|T047|AB|M19.019|ICD10CM|Primary osteoarthritis, unspecified shoulder|Primary osteoarthritis, unspecified shoulder +C2893968|T047|PT|M19.019|ICD10CM|Primary osteoarthritis, unspecified shoulder|Primary osteoarthritis, unspecified shoulder +C2893971|T047|AB|M19.02|ICD10CM|Primary osteoarthritis, elbow|Primary osteoarthritis, elbow +C2893971|T047|HT|M19.02|ICD10CM|Primary osteoarthritis, elbow|Primary osteoarthritis, elbow +C2893969|T047|AB|M19.021|ICD10CM|Primary osteoarthritis, right elbow|Primary osteoarthritis, right elbow +C2893969|T047|PT|M19.021|ICD10CM|Primary osteoarthritis, right elbow|Primary osteoarthritis, right elbow +C2893970|T047|AB|M19.022|ICD10CM|Primary osteoarthritis, left elbow|Primary osteoarthritis, left elbow +C2893970|T047|PT|M19.022|ICD10CM|Primary osteoarthritis, left elbow|Primary osteoarthritis, left elbow +C2893971|T047|AB|M19.029|ICD10CM|Primary osteoarthritis, unspecified elbow|Primary osteoarthritis, unspecified elbow +C2893971|T047|PT|M19.029|ICD10CM|Primary osteoarthritis, unspecified elbow|Primary osteoarthritis, unspecified elbow +C2893972|T047|AB|M19.03|ICD10CM|Primary osteoarthritis, wrist|Primary osteoarthritis, wrist +C2893972|T047|HT|M19.03|ICD10CM|Primary osteoarthritis, wrist|Primary osteoarthritis, wrist +C2893973|T047|AB|M19.031|ICD10CM|Primary osteoarthritis, right wrist|Primary osteoarthritis, right wrist +C2893973|T047|PT|M19.031|ICD10CM|Primary osteoarthritis, right wrist|Primary osteoarthritis, right wrist +C2893974|T047|AB|M19.032|ICD10CM|Primary osteoarthritis, left wrist|Primary osteoarthritis, left wrist +C2893974|T047|PT|M19.032|ICD10CM|Primary osteoarthritis, left wrist|Primary osteoarthritis, left wrist +C2893975|T047|AB|M19.039|ICD10CM|Primary osteoarthritis, unspecified wrist|Primary osteoarthritis, unspecified wrist +C2893975|T047|PT|M19.039|ICD10CM|Primary osteoarthritis, unspecified wrist|Primary osteoarthritis, unspecified wrist +C2893978|T047|AB|M19.04|ICD10CM|Primary osteoarthritis, hand|Primary osteoarthritis, hand +C2893978|T047|HT|M19.04|ICD10CM|Primary osteoarthritis, hand|Primary osteoarthritis, hand +C2893976|T047|AB|M19.041|ICD10CM|Primary osteoarthritis, right hand|Primary osteoarthritis, right hand +C2893976|T047|PT|M19.041|ICD10CM|Primary osteoarthritis, right hand|Primary osteoarthritis, right hand +C2893977|T047|AB|M19.042|ICD10CM|Primary osteoarthritis, left hand|Primary osteoarthritis, left hand +C2893977|T047|PT|M19.042|ICD10CM|Primary osteoarthritis, left hand|Primary osteoarthritis, left hand +C2893978|T047|AB|M19.049|ICD10CM|Primary osteoarthritis, unspecified hand|Primary osteoarthritis, unspecified hand +C2893978|T047|PT|M19.049|ICD10CM|Primary osteoarthritis, unspecified hand|Primary osteoarthritis, unspecified hand +C2893979|T047|AB|M19.07|ICD10CM|Primary osteoarthritis ankle and foot|Primary osteoarthritis ankle and foot +C2893979|T047|HT|M19.07|ICD10CM|Primary osteoarthritis ankle and foot|Primary osteoarthritis ankle and foot +C2893980|T047|AB|M19.071|ICD10CM|Primary osteoarthritis, right ankle and foot|Primary osteoarthritis, right ankle and foot +C2893980|T047|PT|M19.071|ICD10CM|Primary osteoarthritis, right ankle and foot|Primary osteoarthritis, right ankle and foot +C2893981|T047|AB|M19.072|ICD10CM|Primary osteoarthritis, left ankle and foot|Primary osteoarthritis, left ankle and foot +C2893981|T047|PT|M19.072|ICD10CM|Primary osteoarthritis, left ankle and foot|Primary osteoarthritis, left ankle and foot +C2893982|T047|AB|M19.079|ICD10CM|Primary osteoarthritis, unspecified ankle and foot|Primary osteoarthritis, unspecified ankle and foot +C2893982|T047|PT|M19.079|ICD10CM|Primary osteoarthritis, unspecified ankle and foot|Primary osteoarthritis, unspecified ankle and foot +C0477570|T047|PT|M19.1|ICD10|Post-traumatic arthrosis of other joints|Post-traumatic arthrosis of other joints +C2893983|T047|AB|M19.1|ICD10CM|Post-traumatic osteoarthritis of other joints|Post-traumatic osteoarthritis of other joints +C2893983|T047|HT|M19.1|ICD10CM|Post-traumatic osteoarthritis of other joints|Post-traumatic osteoarthritis of other joints +C2893984|T047|AB|M19.11|ICD10CM|Post-traumatic osteoarthritis, shoulder|Post-traumatic osteoarthritis, shoulder +C2893984|T047|HT|M19.11|ICD10CM|Post-traumatic osteoarthritis, shoulder|Post-traumatic osteoarthritis, shoulder +C2893985|T046|AB|M19.111|ICD10CM|Post-traumatic osteoarthritis, right shoulder|Post-traumatic osteoarthritis, right shoulder +C2893985|T046|PT|M19.111|ICD10CM|Post-traumatic osteoarthritis, right shoulder|Post-traumatic osteoarthritis, right shoulder +C2893986|T046|AB|M19.112|ICD10CM|Post-traumatic osteoarthritis, left shoulder|Post-traumatic osteoarthritis, left shoulder +C2893986|T046|PT|M19.112|ICD10CM|Post-traumatic osteoarthritis, left shoulder|Post-traumatic osteoarthritis, left shoulder +C2893987|T047|AB|M19.119|ICD10CM|Post-traumatic osteoarthritis, unspecified shoulder|Post-traumatic osteoarthritis, unspecified shoulder +C2893987|T047|PT|M19.119|ICD10CM|Post-traumatic osteoarthritis, unspecified shoulder|Post-traumatic osteoarthritis, unspecified shoulder +C2893988|T047|AB|M19.12|ICD10CM|Post-traumatic osteoarthritis, elbow|Post-traumatic osteoarthritis, elbow +C2893988|T047|HT|M19.12|ICD10CM|Post-traumatic osteoarthritis, elbow|Post-traumatic osteoarthritis, elbow +C2893989|T046|AB|M19.121|ICD10CM|Post-traumatic osteoarthritis, right elbow|Post-traumatic osteoarthritis, right elbow +C2893989|T046|PT|M19.121|ICD10CM|Post-traumatic osteoarthritis, right elbow|Post-traumatic osteoarthritis, right elbow +C2893990|T046|AB|M19.122|ICD10CM|Post-traumatic osteoarthritis, left elbow|Post-traumatic osteoarthritis, left elbow +C2893990|T046|PT|M19.122|ICD10CM|Post-traumatic osteoarthritis, left elbow|Post-traumatic osteoarthritis, left elbow +C2893991|T047|AB|M19.129|ICD10CM|Post-traumatic osteoarthritis, unspecified elbow|Post-traumatic osteoarthritis, unspecified elbow +C2893991|T047|PT|M19.129|ICD10CM|Post-traumatic osteoarthritis, unspecified elbow|Post-traumatic osteoarthritis, unspecified elbow +C2893992|T047|AB|M19.13|ICD10CM|Post-traumatic osteoarthritis, wrist|Post-traumatic osteoarthritis, wrist +C2893992|T047|HT|M19.13|ICD10CM|Post-traumatic osteoarthritis, wrist|Post-traumatic osteoarthritis, wrist +C2893993|T046|AB|M19.131|ICD10CM|Post-traumatic osteoarthritis, right wrist|Post-traumatic osteoarthritis, right wrist +C2893993|T046|PT|M19.131|ICD10CM|Post-traumatic osteoarthritis, right wrist|Post-traumatic osteoarthritis, right wrist +C2893994|T046|AB|M19.132|ICD10CM|Post-traumatic osteoarthritis, left wrist|Post-traumatic osteoarthritis, left wrist +C2893994|T046|PT|M19.132|ICD10CM|Post-traumatic osteoarthritis, left wrist|Post-traumatic osteoarthritis, left wrist +C2893995|T047|AB|M19.139|ICD10CM|Post-traumatic osteoarthritis, unspecified wrist|Post-traumatic osteoarthritis, unspecified wrist +C2893995|T047|PT|M19.139|ICD10CM|Post-traumatic osteoarthritis, unspecified wrist|Post-traumatic osteoarthritis, unspecified wrist +C2893996|T047|AB|M19.14|ICD10CM|Post-traumatic osteoarthritis, hand|Post-traumatic osteoarthritis, hand +C2893996|T047|HT|M19.14|ICD10CM|Post-traumatic osteoarthritis, hand|Post-traumatic osteoarthritis, hand +C2893997|T046|AB|M19.141|ICD10CM|Post-traumatic osteoarthritis, right hand|Post-traumatic osteoarthritis, right hand +C2893997|T046|PT|M19.141|ICD10CM|Post-traumatic osteoarthritis, right hand|Post-traumatic osteoarthritis, right hand +C2893998|T046|AB|M19.142|ICD10CM|Post-traumatic osteoarthritis, left hand|Post-traumatic osteoarthritis, left hand +C2893998|T046|PT|M19.142|ICD10CM|Post-traumatic osteoarthritis, left hand|Post-traumatic osteoarthritis, left hand +C2893999|T047|AB|M19.149|ICD10CM|Post-traumatic osteoarthritis, unspecified hand|Post-traumatic osteoarthritis, unspecified hand +C2893999|T047|PT|M19.149|ICD10CM|Post-traumatic osteoarthritis, unspecified hand|Post-traumatic osteoarthritis, unspecified hand +C2894000|T047|AB|M19.17|ICD10CM|Post-traumatic osteoarthritis, ankle and foot|Post-traumatic osteoarthritis, ankle and foot +C2894000|T047|HT|M19.17|ICD10CM|Post-traumatic osteoarthritis, ankle and foot|Post-traumatic osteoarthritis, ankle and foot +C2894001|T047|AB|M19.171|ICD10CM|Post-traumatic osteoarthritis, right ankle and foot|Post-traumatic osteoarthritis, right ankle and foot +C2894001|T047|PT|M19.171|ICD10CM|Post-traumatic osteoarthritis, right ankle and foot|Post-traumatic osteoarthritis, right ankle and foot +C2894002|T047|AB|M19.172|ICD10CM|Post-traumatic osteoarthritis, left ankle and foot|Post-traumatic osteoarthritis, left ankle and foot +C2894002|T047|PT|M19.172|ICD10CM|Post-traumatic osteoarthritis, left ankle and foot|Post-traumatic osteoarthritis, left ankle and foot +C2894003|T047|AB|M19.179|ICD10CM|Post-traumatic osteoarthritis, unspecified ankle and foot|Post-traumatic osteoarthritis, unspecified ankle and foot +C2894003|T047|PT|M19.179|ICD10CM|Post-traumatic osteoarthritis, unspecified ankle and foot|Post-traumatic osteoarthritis, unspecified ankle and foot +C0494920|T047|PT|M19.2|ICD10|Other secondary arthrosis|Other secondary arthrosis +C2894004|T047|AB|M19.2|ICD10CM|Secondary osteoarthritis of other joints|Secondary osteoarthritis of other joints +C2894004|T047|HT|M19.2|ICD10CM|Secondary osteoarthritis of other joints|Secondary osteoarthritis of other joints +C2894005|T047|AB|M19.21|ICD10CM|Secondary osteoarthritis, shoulder|Secondary osteoarthritis, shoulder +C2894005|T047|HT|M19.21|ICD10CM|Secondary osteoarthritis, shoulder|Secondary osteoarthritis, shoulder +C2894006|T047|AB|M19.211|ICD10CM|Secondary osteoarthritis, right shoulder|Secondary osteoarthritis, right shoulder +C2894006|T047|PT|M19.211|ICD10CM|Secondary osteoarthritis, right shoulder|Secondary osteoarthritis, right shoulder +C2894007|T047|AB|M19.212|ICD10CM|Secondary osteoarthritis, left shoulder|Secondary osteoarthritis, left shoulder +C2894007|T047|PT|M19.212|ICD10CM|Secondary osteoarthritis, left shoulder|Secondary osteoarthritis, left shoulder +C2894008|T047|AB|M19.219|ICD10CM|Secondary osteoarthritis, unspecified shoulder|Secondary osteoarthritis, unspecified shoulder +C2894008|T047|PT|M19.219|ICD10CM|Secondary osteoarthritis, unspecified shoulder|Secondary osteoarthritis, unspecified shoulder +C2894009|T047|AB|M19.22|ICD10CM|Secondary osteoarthritis, elbow|Secondary osteoarthritis, elbow +C2894009|T047|HT|M19.22|ICD10CM|Secondary osteoarthritis, elbow|Secondary osteoarthritis, elbow +C2894010|T047|AB|M19.221|ICD10CM|Secondary osteoarthritis, right elbow|Secondary osteoarthritis, right elbow +C2894010|T047|PT|M19.221|ICD10CM|Secondary osteoarthritis, right elbow|Secondary osteoarthritis, right elbow +C2894011|T047|AB|M19.222|ICD10CM|Secondary osteoarthritis, left elbow|Secondary osteoarthritis, left elbow +C2894011|T047|PT|M19.222|ICD10CM|Secondary osteoarthritis, left elbow|Secondary osteoarthritis, left elbow +C2894012|T047|AB|M19.229|ICD10CM|Secondary osteoarthritis, unspecified elbow|Secondary osteoarthritis, unspecified elbow +C2894012|T047|PT|M19.229|ICD10CM|Secondary osteoarthritis, unspecified elbow|Secondary osteoarthritis, unspecified elbow +C2894013|T047|AB|M19.23|ICD10CM|Secondary osteoarthritis, wrist|Secondary osteoarthritis, wrist +C2894013|T047|HT|M19.23|ICD10CM|Secondary osteoarthritis, wrist|Secondary osteoarthritis, wrist +C2894014|T047|AB|M19.231|ICD10CM|Secondary osteoarthritis, right wrist|Secondary osteoarthritis, right wrist +C2894014|T047|PT|M19.231|ICD10CM|Secondary osteoarthritis, right wrist|Secondary osteoarthritis, right wrist +C2894015|T047|AB|M19.232|ICD10CM|Secondary osteoarthritis, left wrist|Secondary osteoarthritis, left wrist +C2894015|T047|PT|M19.232|ICD10CM|Secondary osteoarthritis, left wrist|Secondary osteoarthritis, left wrist +C2894016|T047|AB|M19.239|ICD10CM|Secondary osteoarthritis, unspecified wrist|Secondary osteoarthritis, unspecified wrist +C2894016|T047|PT|M19.239|ICD10CM|Secondary osteoarthritis, unspecified wrist|Secondary osteoarthritis, unspecified wrist +C2894017|T047|AB|M19.24|ICD10CM|Secondary osteoarthritis, hand|Secondary osteoarthritis, hand +C2894017|T047|HT|M19.24|ICD10CM|Secondary osteoarthritis, hand|Secondary osteoarthritis, hand +C2894018|T047|AB|M19.241|ICD10CM|Secondary osteoarthritis, right hand|Secondary osteoarthritis, right hand +C2894018|T047|PT|M19.241|ICD10CM|Secondary osteoarthritis, right hand|Secondary osteoarthritis, right hand +C2894019|T047|AB|M19.242|ICD10CM|Secondary osteoarthritis, left hand|Secondary osteoarthritis, left hand +C2894019|T047|PT|M19.242|ICD10CM|Secondary osteoarthritis, left hand|Secondary osteoarthritis, left hand +C2894020|T047|AB|M19.249|ICD10CM|Secondary osteoarthritis, unspecified hand|Secondary osteoarthritis, unspecified hand +C2894020|T047|PT|M19.249|ICD10CM|Secondary osteoarthritis, unspecified hand|Secondary osteoarthritis, unspecified hand +C2894021|T047|AB|M19.27|ICD10CM|Secondary osteoarthritis, ankle and foot|Secondary osteoarthritis, ankle and foot +C2894021|T047|HT|M19.27|ICD10CM|Secondary osteoarthritis, ankle and foot|Secondary osteoarthritis, ankle and foot +C2894022|T047|AB|M19.271|ICD10CM|Secondary osteoarthritis, right ankle and foot|Secondary osteoarthritis, right ankle and foot +C2894022|T047|PT|M19.271|ICD10CM|Secondary osteoarthritis, right ankle and foot|Secondary osteoarthritis, right ankle and foot +C2894023|T047|AB|M19.272|ICD10CM|Secondary osteoarthritis, left ankle and foot|Secondary osteoarthritis, left ankle and foot +C2894023|T047|PT|M19.272|ICD10CM|Secondary osteoarthritis, left ankle and foot|Secondary osteoarthritis, left ankle and foot +C2894024|T047|AB|M19.279|ICD10CM|Secondary osteoarthritis, unspecified ankle and foot|Secondary osteoarthritis, unspecified ankle and foot +C2894024|T047|PT|M19.279|ICD10CM|Secondary osteoarthritis, unspecified ankle and foot|Secondary osteoarthritis, unspecified ankle and foot +C0477568|T047|PT|M19.8|ICD10|Other specified arthrosis|Other specified arthrosis +C0022408|T047|PT|M19.9|ICD10|Arthrosis, unspecified|Arthrosis, unspecified +C0029408|T047|AB|M19.9|ICD10CM|Osteoarthritis, unspecified site|Osteoarthritis, unspecified site +C0029408|T047|HT|M19.9|ICD10CM|Osteoarthritis, unspecified site|Osteoarthritis, unspecified site +C0003864|T047|ET|M19.90|ICD10CM|Arthritis NOS|Arthritis NOS +C0022408|T047|ET|M19.90|ICD10CM|Arthrosis NOS|Arthrosis NOS +C0029408|T047|ET|M19.90|ICD10CM|Osteoarthritis NOS|Osteoarthritis NOS +C2894025|T047|AB|M19.90|ICD10CM|Unspecified osteoarthritis, unspecified site|Unspecified osteoarthritis, unspecified site +C2894025|T047|PT|M19.90|ICD10CM|Unspecified osteoarthritis, unspecified site|Unspecified osteoarthritis, unspecified site +C1384584|T047|ET|M19.91|ICD10CM|Primary osteoarthritis NOS|Primary osteoarthritis NOS +C2894026|T047|AB|M19.91|ICD10CM|Primary osteoarthritis, unspecified site|Primary osteoarthritis, unspecified site +C2894026|T047|PT|M19.91|ICD10CM|Primary osteoarthritis, unspecified site|Primary osteoarthritis, unspecified site +C2894027|T047|ET|M19.92|ICD10CM|Post-traumatic osteoarthritis NOS|Post-traumatic osteoarthritis NOS +C2894028|T047|AB|M19.92|ICD10CM|Post-traumatic osteoarthritis, unspecified site|Post-traumatic osteoarthritis, unspecified site +C2894028|T047|PT|M19.92|ICD10CM|Post-traumatic osteoarthritis, unspecified site|Post-traumatic osteoarthritis, unspecified site +C2732281|T047|ET|M19.93|ICD10CM|Secondary osteoarthritis NOS|Secondary osteoarthritis NOS +C2894029|T047|AB|M19.93|ICD10CM|Secondary osteoarthritis, unspecified site|Secondary osteoarthritis, unspecified site +C2894029|T047|PT|M19.93|ICD10CM|Secondary osteoarthritis, unspecified site|Secondary osteoarthritis, unspecified site +C0268108|T047|AB|M1A|ICD10CM|Chronic gout|Chronic gout +C0268108|T047|HT|M1A|ICD10CM|Chronic gout|Chronic gout +C2894272|T047|ET|M1A.0|ICD10CM|Chronic gouty bursitis|Chronic gouty bursitis +C2894273|T047|AB|M1A.0|ICD10CM|Idiopathic chronic gout|Idiopathic chronic gout +C2894273|T047|HT|M1A.0|ICD10CM|Idiopathic chronic gout|Idiopathic chronic gout +C3495354|T047|ET|M1A.0|ICD10CM|Primary chronic gout|Primary chronic gout +C2894274|T047|AB|M1A.00|ICD10CM|Idiopathic chronic gout, unspecified site|Idiopathic chronic gout, unspecified site +C2894274|T047|HT|M1A.00|ICD10CM|Idiopathic chronic gout, unspecified site|Idiopathic chronic gout, unspecified site +C2894030|T047|AB|M1A.00X0|ICD10CM|Idiopathic chronic gout, unspecified site, without tophus|Idiopathic chronic gout, unspecified site, without tophus +C2894030|T047|PT|M1A.00X0|ICD10CM|Idiopathic chronic gout, unspecified site, without tophus (tophi)|Idiopathic chronic gout, unspecified site, without tophus (tophi) +C2894031|T047|AB|M1A.00X1|ICD10CM|Idiopathic chronic gout, unspecified site, with tophus|Idiopathic chronic gout, unspecified site, with tophus +C2894031|T047|PT|M1A.00X1|ICD10CM|Idiopathic chronic gout, unspecified site, with tophus (tophi)|Idiopathic chronic gout, unspecified site, with tophus (tophi) +C2894275|T047|AB|M1A.01|ICD10CM|Idiopathic chronic gout, shoulder|Idiopathic chronic gout, shoulder +C2894275|T047|HT|M1A.01|ICD10CM|Idiopathic chronic gout, shoulder|Idiopathic chronic gout, shoulder +C2894276|T047|AB|M1A.011|ICD10CM|Idiopathic chronic gout, right shoulder|Idiopathic chronic gout, right shoulder +C2894276|T047|HT|M1A.011|ICD10CM|Idiopathic chronic gout, right shoulder|Idiopathic chronic gout, right shoulder +C2894032|T047|AB|M1A.0110|ICD10CM|Idiopathic chronic gout, right shoulder, without tophus|Idiopathic chronic gout, right shoulder, without tophus +C2894032|T047|PT|M1A.0110|ICD10CM|Idiopathic chronic gout, right shoulder, without tophus (tophi)|Idiopathic chronic gout, right shoulder, without tophus (tophi) +C2894033|T047|AB|M1A.0111|ICD10CM|Idiopathic chronic gout, right shoulder, with tophus (tophi)|Idiopathic chronic gout, right shoulder, with tophus (tophi) +C2894033|T047|PT|M1A.0111|ICD10CM|Idiopathic chronic gout, right shoulder, with tophus (tophi)|Idiopathic chronic gout, right shoulder, with tophus (tophi) +C2894277|T047|AB|M1A.012|ICD10CM|Idiopathic chronic gout, left shoulder|Idiopathic chronic gout, left shoulder +C2894277|T047|HT|M1A.012|ICD10CM|Idiopathic chronic gout, left shoulder|Idiopathic chronic gout, left shoulder +C2894034|T047|AB|M1A.0120|ICD10CM|Idiopathic chronic gout, left shoulder, without tophus|Idiopathic chronic gout, left shoulder, without tophus +C2894034|T047|PT|M1A.0120|ICD10CM|Idiopathic chronic gout, left shoulder, without tophus (tophi)|Idiopathic chronic gout, left shoulder, without tophus (tophi) +C2894035|T047|PT|M1A.0121|ICD10CM|Idiopathic chronic gout, left shoulder, with tophus (tophi)|Idiopathic chronic gout, left shoulder, with tophus (tophi) +C2894035|T047|AB|M1A.0121|ICD10CM|Idiopathic chronic gout, left shoulder, with tophus (tophi)|Idiopathic chronic gout, left shoulder, with tophus (tophi) +C2894278|T047|AB|M1A.019|ICD10CM|Idiopathic chronic gout, unspecified shoulder|Idiopathic chronic gout, unspecified shoulder +C2894278|T047|HT|M1A.019|ICD10CM|Idiopathic chronic gout, unspecified shoulder|Idiopathic chronic gout, unspecified shoulder +C2894036|T047|AB|M1A.0190|ICD10CM|Idiopathic chronic gout, unsp shoulder, without tophus|Idiopathic chronic gout, unsp shoulder, without tophus +C2894036|T047|PT|M1A.0190|ICD10CM|Idiopathic chronic gout, unspecified shoulder, without tophus (tophi)|Idiopathic chronic gout, unspecified shoulder, without tophus (tophi) +C2894037|T047|AB|M1A.0191|ICD10CM|Idiopathic chronic gout, unspecified shoulder, with tophus|Idiopathic chronic gout, unspecified shoulder, with tophus +C2894037|T047|PT|M1A.0191|ICD10CM|Idiopathic chronic gout, unspecified shoulder, with tophus (tophi)|Idiopathic chronic gout, unspecified shoulder, with tophus (tophi) +C2894279|T047|AB|M1A.02|ICD10CM|Idiopathic chronic gout, elbow|Idiopathic chronic gout, elbow +C2894279|T047|HT|M1A.02|ICD10CM|Idiopathic chronic gout, elbow|Idiopathic chronic gout, elbow +C2894280|T047|AB|M1A.021|ICD10CM|Idiopathic chronic gout, right elbow|Idiopathic chronic gout, right elbow +C2894280|T047|HT|M1A.021|ICD10CM|Idiopathic chronic gout, right elbow|Idiopathic chronic gout, right elbow +C2894038|T047|AB|M1A.0210|ICD10CM|Idiopathic chronic gout, right elbow, without tophus (tophi)|Idiopathic chronic gout, right elbow, without tophus (tophi) +C2894038|T047|PT|M1A.0210|ICD10CM|Idiopathic chronic gout, right elbow, without tophus (tophi)|Idiopathic chronic gout, right elbow, without tophus (tophi) +C2894039|T047|PT|M1A.0211|ICD10CM|Idiopathic chronic gout, right elbow, with tophus (tophi)|Idiopathic chronic gout, right elbow, with tophus (tophi) +C2894039|T047|AB|M1A.0211|ICD10CM|Idiopathic chronic gout, right elbow, with tophus (tophi)|Idiopathic chronic gout, right elbow, with tophus (tophi) +C2894281|T047|AB|M1A.022|ICD10CM|Idiopathic chronic gout, left elbow|Idiopathic chronic gout, left elbow +C2894281|T047|HT|M1A.022|ICD10CM|Idiopathic chronic gout, left elbow|Idiopathic chronic gout, left elbow +C2894040|T047|PT|M1A.0220|ICD10CM|Idiopathic chronic gout, left elbow, without tophus (tophi)|Idiopathic chronic gout, left elbow, without tophus (tophi) +C2894040|T047|AB|M1A.0220|ICD10CM|Idiopathic chronic gout, left elbow, without tophus (tophi)|Idiopathic chronic gout, left elbow, without tophus (tophi) +C2894041|T047|PT|M1A.0221|ICD10CM|Idiopathic chronic gout, left elbow, with tophus (tophi)|Idiopathic chronic gout, left elbow, with tophus (tophi) +C2894041|T047|AB|M1A.0221|ICD10CM|Idiopathic chronic gout, left elbow, with tophus (tophi)|Idiopathic chronic gout, left elbow, with tophus (tophi) +C2894282|T047|AB|M1A.029|ICD10CM|Idiopathic chronic gout, unspecified elbow|Idiopathic chronic gout, unspecified elbow +C2894282|T047|HT|M1A.029|ICD10CM|Idiopathic chronic gout, unspecified elbow|Idiopathic chronic gout, unspecified elbow +C2894042|T047|AB|M1A.0290|ICD10CM|Idiopathic chronic gout, unspecified elbow, without tophus|Idiopathic chronic gout, unspecified elbow, without tophus +C2894042|T047|PT|M1A.0290|ICD10CM|Idiopathic chronic gout, unspecified elbow, without tophus (tophi)|Idiopathic chronic gout, unspecified elbow, without tophus (tophi) +C2894043|T047|AB|M1A.0291|ICD10CM|Idiopathic chronic gout, unspecified elbow, with tophus|Idiopathic chronic gout, unspecified elbow, with tophus +C2894043|T047|PT|M1A.0291|ICD10CM|Idiopathic chronic gout, unspecified elbow, with tophus (tophi)|Idiopathic chronic gout, unspecified elbow, with tophus (tophi) +C2894283|T047|AB|M1A.03|ICD10CM|Idiopathic chronic gout, wrist|Idiopathic chronic gout, wrist +C2894283|T047|HT|M1A.03|ICD10CM|Idiopathic chronic gout, wrist|Idiopathic chronic gout, wrist +C2894284|T047|AB|M1A.031|ICD10CM|Idiopathic chronic gout, right wrist|Idiopathic chronic gout, right wrist +C2894284|T047|HT|M1A.031|ICD10CM|Idiopathic chronic gout, right wrist|Idiopathic chronic gout, right wrist +C2894044|T047|AB|M1A.0310|ICD10CM|Idiopathic chronic gout, right wrist, without tophus (tophi)|Idiopathic chronic gout, right wrist, without tophus (tophi) +C2894044|T047|PT|M1A.0310|ICD10CM|Idiopathic chronic gout, right wrist, without tophus (tophi)|Idiopathic chronic gout, right wrist, without tophus (tophi) +C2894045|T047|PT|M1A.0311|ICD10CM|Idiopathic chronic gout, right wrist, with tophus (tophi)|Idiopathic chronic gout, right wrist, with tophus (tophi) +C2894045|T047|AB|M1A.0311|ICD10CM|Idiopathic chronic gout, right wrist, with tophus (tophi)|Idiopathic chronic gout, right wrist, with tophus (tophi) +C2894285|T047|AB|M1A.032|ICD10CM|Idiopathic chronic gout, left wrist|Idiopathic chronic gout, left wrist +C2894285|T047|HT|M1A.032|ICD10CM|Idiopathic chronic gout, left wrist|Idiopathic chronic gout, left wrist +C2894046|T047|PT|M1A.0320|ICD10CM|Idiopathic chronic gout, left wrist, without tophus (tophi)|Idiopathic chronic gout, left wrist, without tophus (tophi) +C2894046|T047|AB|M1A.0320|ICD10CM|Idiopathic chronic gout, left wrist, without tophus (tophi)|Idiopathic chronic gout, left wrist, without tophus (tophi) +C2894047|T047|PT|M1A.0321|ICD10CM|Idiopathic chronic gout, left wrist, with tophus (tophi)|Idiopathic chronic gout, left wrist, with tophus (tophi) +C2894047|T047|AB|M1A.0321|ICD10CM|Idiopathic chronic gout, left wrist, with tophus (tophi)|Idiopathic chronic gout, left wrist, with tophus (tophi) +C2894286|T047|AB|M1A.039|ICD10CM|Idiopathic chronic gout, unspecified wrist|Idiopathic chronic gout, unspecified wrist +C2894286|T047|HT|M1A.039|ICD10CM|Idiopathic chronic gout, unspecified wrist|Idiopathic chronic gout, unspecified wrist +C2894048|T047|AB|M1A.0390|ICD10CM|Idiopathic chronic gout, unspecified wrist, without tophus|Idiopathic chronic gout, unspecified wrist, without tophus +C2894048|T047|PT|M1A.0390|ICD10CM|Idiopathic chronic gout, unspecified wrist, without tophus (tophi)|Idiopathic chronic gout, unspecified wrist, without tophus (tophi) +C2894049|T047|AB|M1A.0391|ICD10CM|Idiopathic chronic gout, unspecified wrist, with tophus|Idiopathic chronic gout, unspecified wrist, with tophus +C2894049|T047|PT|M1A.0391|ICD10CM|Idiopathic chronic gout, unspecified wrist, with tophus (tophi)|Idiopathic chronic gout, unspecified wrist, with tophus (tophi) +C2894287|T047|AB|M1A.04|ICD10CM|Idiopathic chronic gout, hand|Idiopathic chronic gout, hand +C2894287|T047|HT|M1A.04|ICD10CM|Idiopathic chronic gout, hand|Idiopathic chronic gout, hand +C2894288|T047|AB|M1A.041|ICD10CM|Idiopathic chronic gout, right hand|Idiopathic chronic gout, right hand +C2894288|T047|HT|M1A.041|ICD10CM|Idiopathic chronic gout, right hand|Idiopathic chronic gout, right hand +C2894050|T047|PT|M1A.0410|ICD10CM|Idiopathic chronic gout, right hand, without tophus (tophi)|Idiopathic chronic gout, right hand, without tophus (tophi) +C2894050|T047|AB|M1A.0410|ICD10CM|Idiopathic chronic gout, right hand, without tophus (tophi)|Idiopathic chronic gout, right hand, without tophus (tophi) +C2894051|T047|PT|M1A.0411|ICD10CM|Idiopathic chronic gout, right hand, with tophus (tophi)|Idiopathic chronic gout, right hand, with tophus (tophi) +C2894051|T047|AB|M1A.0411|ICD10CM|Idiopathic chronic gout, right hand, with tophus (tophi)|Idiopathic chronic gout, right hand, with tophus (tophi) +C2894289|T047|AB|M1A.042|ICD10CM|Idiopathic chronic gout, left hand|Idiopathic chronic gout, left hand +C2894289|T047|HT|M1A.042|ICD10CM|Idiopathic chronic gout, left hand|Idiopathic chronic gout, left hand +C2894052|T047|AB|M1A.0420|ICD10CM|Idiopathic chronic gout, left hand, without tophus (tophi)|Idiopathic chronic gout, left hand, without tophus (tophi) +C2894052|T047|PT|M1A.0420|ICD10CM|Idiopathic chronic gout, left hand, without tophus (tophi)|Idiopathic chronic gout, left hand, without tophus (tophi) +C2894053|T047|PT|M1A.0421|ICD10CM|Idiopathic chronic gout, left hand, with tophus (tophi)|Idiopathic chronic gout, left hand, with tophus (tophi) +C2894053|T047|AB|M1A.0421|ICD10CM|Idiopathic chronic gout, left hand, with tophus (tophi)|Idiopathic chronic gout, left hand, with tophus (tophi) +C2894290|T047|AB|M1A.049|ICD10CM|Idiopathic chronic gout, unspecified hand|Idiopathic chronic gout, unspecified hand +C2894290|T047|HT|M1A.049|ICD10CM|Idiopathic chronic gout, unspecified hand|Idiopathic chronic gout, unspecified hand +C2894054|T047|AB|M1A.0490|ICD10CM|Idiopathic chronic gout, unspecified hand, without tophus|Idiopathic chronic gout, unspecified hand, without tophus +C2894054|T047|PT|M1A.0490|ICD10CM|Idiopathic chronic gout, unspecified hand, without tophus (tophi)|Idiopathic chronic gout, unspecified hand, without tophus (tophi) +C2894055|T047|AB|M1A.0491|ICD10CM|Idiopathic chronic gout, unspecified hand, with tophus|Idiopathic chronic gout, unspecified hand, with tophus +C2894055|T047|PT|M1A.0491|ICD10CM|Idiopathic chronic gout, unspecified hand, with tophus (tophi)|Idiopathic chronic gout, unspecified hand, with tophus (tophi) +C2894291|T047|AB|M1A.05|ICD10CM|Idiopathic chronic gout, hip|Idiopathic chronic gout, hip +C2894291|T047|HT|M1A.05|ICD10CM|Idiopathic chronic gout, hip|Idiopathic chronic gout, hip +C2894292|T047|AB|M1A.051|ICD10CM|Idiopathic chronic gout, right hip|Idiopathic chronic gout, right hip +C2894292|T047|HT|M1A.051|ICD10CM|Idiopathic chronic gout, right hip|Idiopathic chronic gout, right hip +C2894056|T047|AB|M1A.0510|ICD10CM|Idiopathic chronic gout, right hip, without tophus (tophi)|Idiopathic chronic gout, right hip, without tophus (tophi) +C2894056|T047|PT|M1A.0510|ICD10CM|Idiopathic chronic gout, right hip, without tophus (tophi)|Idiopathic chronic gout, right hip, without tophus (tophi) +C2894057|T047|PT|M1A.0511|ICD10CM|Idiopathic chronic gout, right hip, with tophus (tophi)|Idiopathic chronic gout, right hip, with tophus (tophi) +C2894057|T047|AB|M1A.0511|ICD10CM|Idiopathic chronic gout, right hip, with tophus (tophi)|Idiopathic chronic gout, right hip, with tophus (tophi) +C2894293|T047|AB|M1A.052|ICD10CM|Idiopathic chronic gout, left hip|Idiopathic chronic gout, left hip +C2894293|T047|HT|M1A.052|ICD10CM|Idiopathic chronic gout, left hip|Idiopathic chronic gout, left hip +C2894058|T047|PT|M1A.0520|ICD10CM|Idiopathic chronic gout, left hip, without tophus (tophi)|Idiopathic chronic gout, left hip, without tophus (tophi) +C2894058|T047|AB|M1A.0520|ICD10CM|Idiopathic chronic gout, left hip, without tophus (tophi)|Idiopathic chronic gout, left hip, without tophus (tophi) +C2894059|T047|PT|M1A.0521|ICD10CM|Idiopathic chronic gout, left hip, with tophus (tophi)|Idiopathic chronic gout, left hip, with tophus (tophi) +C2894059|T047|AB|M1A.0521|ICD10CM|Idiopathic chronic gout, left hip, with tophus (tophi)|Idiopathic chronic gout, left hip, with tophus (tophi) +C2894294|T047|AB|M1A.059|ICD10CM|Idiopathic chronic gout, unspecified hip|Idiopathic chronic gout, unspecified hip +C2894294|T047|HT|M1A.059|ICD10CM|Idiopathic chronic gout, unspecified hip|Idiopathic chronic gout, unspecified hip +C2894060|T047|AB|M1A.0590|ICD10CM|Idiopathic chronic gout, unspecified hip, without tophus|Idiopathic chronic gout, unspecified hip, without tophus +C2894060|T047|PT|M1A.0590|ICD10CM|Idiopathic chronic gout, unspecified hip, without tophus (tophi)|Idiopathic chronic gout, unspecified hip, without tophus (tophi) +C2894061|T047|AB|M1A.0591|ICD10CM|Idiopathic chronic gout, unspecified hip, with tophus|Idiopathic chronic gout, unspecified hip, with tophus +C2894061|T047|PT|M1A.0591|ICD10CM|Idiopathic chronic gout, unspecified hip, with tophus (tophi)|Idiopathic chronic gout, unspecified hip, with tophus (tophi) +C2894295|T047|AB|M1A.06|ICD10CM|Idiopathic chronic gout, knee|Idiopathic chronic gout, knee +C2894295|T047|HT|M1A.06|ICD10CM|Idiopathic chronic gout, knee|Idiopathic chronic gout, knee +C2894296|T047|AB|M1A.061|ICD10CM|Idiopathic chronic gout, right knee|Idiopathic chronic gout, right knee +C2894296|T047|HT|M1A.061|ICD10CM|Idiopathic chronic gout, right knee|Idiopathic chronic gout, right knee +C2894062|T047|PT|M1A.0610|ICD10CM|Idiopathic chronic gout, right knee, without tophus (tophi)|Idiopathic chronic gout, right knee, without tophus (tophi) +C2894062|T047|AB|M1A.0610|ICD10CM|Idiopathic chronic gout, right knee, without tophus (tophi)|Idiopathic chronic gout, right knee, without tophus (tophi) +C2894063|T047|PT|M1A.0611|ICD10CM|Idiopathic chronic gout, right knee, with tophus (tophi)|Idiopathic chronic gout, right knee, with tophus (tophi) +C2894063|T047|AB|M1A.0611|ICD10CM|Idiopathic chronic gout, right knee, with tophus (tophi)|Idiopathic chronic gout, right knee, with tophus (tophi) +C2894297|T047|AB|M1A.062|ICD10CM|Idiopathic chronic gout, left knee|Idiopathic chronic gout, left knee +C2894297|T047|HT|M1A.062|ICD10CM|Idiopathic chronic gout, left knee|Idiopathic chronic gout, left knee +C2894064|T047|AB|M1A.0620|ICD10CM|Idiopathic chronic gout, left knee, without tophus (tophi)|Idiopathic chronic gout, left knee, without tophus (tophi) +C2894064|T047|PT|M1A.0620|ICD10CM|Idiopathic chronic gout, left knee, without tophus (tophi)|Idiopathic chronic gout, left knee, without tophus (tophi) +C2894065|T047|PT|M1A.0621|ICD10CM|Idiopathic chronic gout, left knee, with tophus (tophi)|Idiopathic chronic gout, left knee, with tophus (tophi) +C2894065|T047|AB|M1A.0621|ICD10CM|Idiopathic chronic gout, left knee, with tophus (tophi)|Idiopathic chronic gout, left knee, with tophus (tophi) +C2894298|T047|AB|M1A.069|ICD10CM|Idiopathic chronic gout, unspecified knee|Idiopathic chronic gout, unspecified knee +C2894298|T047|HT|M1A.069|ICD10CM|Idiopathic chronic gout, unspecified knee|Idiopathic chronic gout, unspecified knee +C2894066|T047|AB|M1A.0690|ICD10CM|Idiopathic chronic gout, unspecified knee, without tophus|Idiopathic chronic gout, unspecified knee, without tophus +C2894066|T047|PT|M1A.0690|ICD10CM|Idiopathic chronic gout, unspecified knee, without tophus (tophi)|Idiopathic chronic gout, unspecified knee, without tophus (tophi) +C2894067|T047|AB|M1A.0691|ICD10CM|Idiopathic chronic gout, unspecified knee, with tophus|Idiopathic chronic gout, unspecified knee, with tophus +C2894067|T047|PT|M1A.0691|ICD10CM|Idiopathic chronic gout, unspecified knee, with tophus (tophi)|Idiopathic chronic gout, unspecified knee, with tophus (tophi) +C2894299|T047|AB|M1A.07|ICD10CM|Idiopathic chronic gout, ankle and foot|Idiopathic chronic gout, ankle and foot +C2894299|T047|HT|M1A.07|ICD10CM|Idiopathic chronic gout, ankle and foot|Idiopathic chronic gout, ankle and foot +C2894300|T047|AB|M1A.071|ICD10CM|Idiopathic chronic gout, right ankle and foot|Idiopathic chronic gout, right ankle and foot +C2894300|T047|HT|M1A.071|ICD10CM|Idiopathic chronic gout, right ankle and foot|Idiopathic chronic gout, right ankle and foot +C2894068|T047|AB|M1A.0710|ICD10CM|Idiopathic chronic gout, right ankle and foot, w/o tophus|Idiopathic chronic gout, right ankle and foot, w/o tophus +C2894068|T047|PT|M1A.0710|ICD10CM|Idiopathic chronic gout, right ankle and foot, without tophus (tophi)|Idiopathic chronic gout, right ankle and foot, without tophus (tophi) +C2894069|T047|AB|M1A.0711|ICD10CM|Idiopathic chronic gout, right ankle and foot, with tophus|Idiopathic chronic gout, right ankle and foot, with tophus +C2894069|T047|PT|M1A.0711|ICD10CM|Idiopathic chronic gout, right ankle and foot, with tophus (tophi)|Idiopathic chronic gout, right ankle and foot, with tophus (tophi) +C2894301|T047|AB|M1A.072|ICD10CM|Idiopathic chronic gout, left ankle and foot|Idiopathic chronic gout, left ankle and foot +C2894301|T047|HT|M1A.072|ICD10CM|Idiopathic chronic gout, left ankle and foot|Idiopathic chronic gout, left ankle and foot +C2894070|T047|AB|M1A.0720|ICD10CM|Idiopathic chronic gout, left ankle and foot, without tophus|Idiopathic chronic gout, left ankle and foot, without tophus +C2894070|T047|PT|M1A.0720|ICD10CM|Idiopathic chronic gout, left ankle and foot, without tophus (tophi)|Idiopathic chronic gout, left ankle and foot, without tophus (tophi) +C2894071|T047|AB|M1A.0721|ICD10CM|Idiopathic chronic gout, left ankle and foot, with tophus|Idiopathic chronic gout, left ankle and foot, with tophus +C2894071|T047|PT|M1A.0721|ICD10CM|Idiopathic chronic gout, left ankle and foot, with tophus (tophi)|Idiopathic chronic gout, left ankle and foot, with tophus (tophi) +C2894302|T047|AB|M1A.079|ICD10CM|Idiopathic chronic gout, unspecified ankle and foot|Idiopathic chronic gout, unspecified ankle and foot +C2894302|T047|HT|M1A.079|ICD10CM|Idiopathic chronic gout, unspecified ankle and foot|Idiopathic chronic gout, unspecified ankle and foot +C2894072|T047|AB|M1A.0790|ICD10CM|Idiopathic chronic gout, unsp ankle and foot, without tophus|Idiopathic chronic gout, unsp ankle and foot, without tophus +C2894072|T047|PT|M1A.0790|ICD10CM|Idiopathic chronic gout, unspecified ankle and foot, without tophus (tophi)|Idiopathic chronic gout, unspecified ankle and foot, without tophus (tophi) +C2894073|T047|AB|M1A.0791|ICD10CM|Idiopathic chronic gout, unsp ankle and foot, with tophus|Idiopathic chronic gout, unsp ankle and foot, with tophus +C2894073|T047|PT|M1A.0791|ICD10CM|Idiopathic chronic gout, unspecified ankle and foot, with tophus (tophi)|Idiopathic chronic gout, unspecified ankle and foot, with tophus (tophi) +C2894303|T047|AB|M1A.08|ICD10CM|Idiopathic chronic gout, vertebrae|Idiopathic chronic gout, vertebrae +C2894303|T047|HT|M1A.08|ICD10CM|Idiopathic chronic gout, vertebrae|Idiopathic chronic gout, vertebrae +C2894074|T047|AB|M1A.08X0|ICD10CM|Idiopathic chronic gout, vertebrae, without tophus (tophi)|Idiopathic chronic gout, vertebrae, without tophus (tophi) +C2894074|T047|PT|M1A.08X0|ICD10CM|Idiopathic chronic gout, vertebrae, without tophus (tophi)|Idiopathic chronic gout, vertebrae, without tophus (tophi) +C2894075|T047|PT|M1A.08X1|ICD10CM|Idiopathic chronic gout, vertebrae, with tophus (tophi)|Idiopathic chronic gout, vertebrae, with tophus (tophi) +C2894075|T047|AB|M1A.08X1|ICD10CM|Idiopathic chronic gout, vertebrae, with tophus (tophi)|Idiopathic chronic gout, vertebrae, with tophus (tophi) +C2894304|T047|AB|M1A.09|ICD10CM|Idiopathic chronic gout, multiple sites|Idiopathic chronic gout, multiple sites +C2894304|T047|HT|M1A.09|ICD10CM|Idiopathic chronic gout, multiple sites|Idiopathic chronic gout, multiple sites +C2894076|T047|AB|M1A.09X0|ICD10CM|Idiopathic chronic gout, multiple sites, without tophus|Idiopathic chronic gout, multiple sites, without tophus +C2894076|T047|PT|M1A.09X0|ICD10CM|Idiopathic chronic gout, multiple sites, without tophus (tophi)|Idiopathic chronic gout, multiple sites, without tophus (tophi) +C2894077|T047|AB|M1A.09X1|ICD10CM|Idiopathic chronic gout, multiple sites, with tophus (tophi)|Idiopathic chronic gout, multiple sites, with tophus (tophi) +C2894077|T047|PT|M1A.09X1|ICD10CM|Idiopathic chronic gout, multiple sites, with tophus (tophi)|Idiopathic chronic gout, multiple sites, with tophus (tophi) +C3468710|T047|AB|M1A.1|ICD10CM|Lead-induced chronic gout|Lead-induced chronic gout +C3468710|T047|HT|M1A.1|ICD10CM|Lead-induced chronic gout|Lead-induced chronic gout +C2894306|T047|AB|M1A.10|ICD10CM|Lead-induced chronic gout, unspecified site|Lead-induced chronic gout, unspecified site +C2894306|T047|HT|M1A.10|ICD10CM|Lead-induced chronic gout, unspecified site|Lead-induced chronic gout, unspecified site +C2894078|T046|AB|M1A.10X0|ICD10CM|Lead-induced chronic gout, unspecified site, without tophus|Lead-induced chronic gout, unspecified site, without tophus +C2894078|T046|PT|M1A.10X0|ICD10CM|Lead-induced chronic gout, unspecified site, without tophus (tophi)|Lead-induced chronic gout, unspecified site, without tophus (tophi) +C2894079|T046|AB|M1A.10X1|ICD10CM|Lead-induced chronic gout, unspecified site, with tophus|Lead-induced chronic gout, unspecified site, with tophus +C2894079|T046|PT|M1A.10X1|ICD10CM|Lead-induced chronic gout, unspecified site, with tophus (tophi)|Lead-induced chronic gout, unspecified site, with tophus (tophi) +C3468717|T047|AB|M1A.11|ICD10CM|Lead-induced chronic gout, shoulder|Lead-induced chronic gout, shoulder +C3468717|T047|HT|M1A.11|ICD10CM|Lead-induced chronic gout, shoulder|Lead-induced chronic gout, shoulder +C2894308|T047|AB|M1A.111|ICD10CM|Lead-induced chronic gout, right shoulder|Lead-induced chronic gout, right shoulder +C2894308|T047|HT|M1A.111|ICD10CM|Lead-induced chronic gout, right shoulder|Lead-induced chronic gout, right shoulder +C2894080|T046|AB|M1A.1110|ICD10CM|Lead-induced chronic gout, right shoulder, without tophus|Lead-induced chronic gout, right shoulder, without tophus +C2894080|T046|PT|M1A.1110|ICD10CM|Lead-induced chronic gout, right shoulder, without tophus (tophi)|Lead-induced chronic gout, right shoulder, without tophus (tophi) +C2894081|T047|AB|M1A.1111|ICD10CM|Lead-induced chronic gout, right shoulder, with tophus|Lead-induced chronic gout, right shoulder, with tophus +C2894081|T047|PT|M1A.1111|ICD10CM|Lead-induced chronic gout, right shoulder, with tophus (tophi)|Lead-induced chronic gout, right shoulder, with tophus (tophi) +C2894309|T047|AB|M1A.112|ICD10CM|Lead-induced chronic gout, left shoulder|Lead-induced chronic gout, left shoulder +C2894309|T047|HT|M1A.112|ICD10CM|Lead-induced chronic gout, left shoulder|Lead-induced chronic gout, left shoulder +C2894082|T046|AB|M1A.1120|ICD10CM|Lead-induced chronic gout, left shoulder, without tophus|Lead-induced chronic gout, left shoulder, without tophus +C2894082|T046|PT|M1A.1120|ICD10CM|Lead-induced chronic gout, left shoulder, without tophus (tophi)|Lead-induced chronic gout, left shoulder, without tophus (tophi) +C2894083|T046|AB|M1A.1121|ICD10CM|Lead-induced chronic gout, left shoulder, with tophus|Lead-induced chronic gout, left shoulder, with tophus +C2894083|T046|PT|M1A.1121|ICD10CM|Lead-induced chronic gout, left shoulder, with tophus (tophi)|Lead-induced chronic gout, left shoulder, with tophus (tophi) +C2894310|T047|AB|M1A.119|ICD10CM|Lead-induced chronic gout, unspecified shoulder|Lead-induced chronic gout, unspecified shoulder +C2894310|T047|HT|M1A.119|ICD10CM|Lead-induced chronic gout, unspecified shoulder|Lead-induced chronic gout, unspecified shoulder +C2894084|T046|AB|M1A.1190|ICD10CM|Lead-induced chronic gout, unsp shoulder, without tophus|Lead-induced chronic gout, unsp shoulder, without tophus +C2894084|T046|PT|M1A.1190|ICD10CM|Lead-induced chronic gout, unspecified shoulder, without tophus (tophi)|Lead-induced chronic gout, unspecified shoulder, without tophus (tophi) +C2894085|T047|AB|M1A.1191|ICD10CM|Lead-induced chronic gout, unspecified shoulder, with tophus|Lead-induced chronic gout, unspecified shoulder, with tophus +C2894085|T047|PT|M1A.1191|ICD10CM|Lead-induced chronic gout, unspecified shoulder, with tophus (tophi)|Lead-induced chronic gout, unspecified shoulder, with tophus (tophi) +C3468712|T047|AB|M1A.12|ICD10CM|Lead-induced chronic gout, elbow|Lead-induced chronic gout, elbow +C3468712|T047|HT|M1A.12|ICD10CM|Lead-induced chronic gout, elbow|Lead-induced chronic gout, elbow +C2894312|T047|AB|M1A.121|ICD10CM|Lead-induced chronic gout, right elbow|Lead-induced chronic gout, right elbow +C2894312|T047|HT|M1A.121|ICD10CM|Lead-induced chronic gout, right elbow|Lead-induced chronic gout, right elbow +C2894086|T047|AB|M1A.1210|ICD10CM|Lead-induced chronic gout, right elbow, without tophus|Lead-induced chronic gout, right elbow, without tophus +C2894086|T047|PT|M1A.1210|ICD10CM|Lead-induced chronic gout, right elbow, without tophus (tophi)|Lead-induced chronic gout, right elbow, without tophus (tophi) +C2894087|T046|PT|M1A.1211|ICD10CM|Lead-induced chronic gout, right elbow, with tophus (tophi)|Lead-induced chronic gout, right elbow, with tophus (tophi) +C2894087|T046|AB|M1A.1211|ICD10CM|Lead-induced chronic gout, right elbow, with tophus (tophi)|Lead-induced chronic gout, right elbow, with tophus (tophi) +C2894313|T047|AB|M1A.122|ICD10CM|Lead-induced chronic gout, left elbow|Lead-induced chronic gout, left elbow +C2894313|T047|HT|M1A.122|ICD10CM|Lead-induced chronic gout, left elbow|Lead-induced chronic gout, left elbow +C2894088|T046|AB|M1A.1220|ICD10CM|Lead-induced chronic gout, left elbow, without tophus|Lead-induced chronic gout, left elbow, without tophus +C2894088|T046|PT|M1A.1220|ICD10CM|Lead-induced chronic gout, left elbow, without tophus (tophi)|Lead-induced chronic gout, left elbow, without tophus (tophi) +C2894089|T046|PT|M1A.1221|ICD10CM|Lead-induced chronic gout, left elbow, with tophus (tophi)|Lead-induced chronic gout, left elbow, with tophus (tophi) +C2894089|T046|AB|M1A.1221|ICD10CM|Lead-induced chronic gout, left elbow, with tophus (tophi)|Lead-induced chronic gout, left elbow, with tophus (tophi) +C2894314|T047|AB|M1A.129|ICD10CM|Lead-induced chronic gout, unspecified elbow|Lead-induced chronic gout, unspecified elbow +C2894314|T047|HT|M1A.129|ICD10CM|Lead-induced chronic gout, unspecified elbow|Lead-induced chronic gout, unspecified elbow +C2894090|T046|AB|M1A.1290|ICD10CM|Lead-induced chronic gout, unspecified elbow, without tophus|Lead-induced chronic gout, unspecified elbow, without tophus +C2894090|T046|PT|M1A.1290|ICD10CM|Lead-induced chronic gout, unspecified elbow, without tophus (tophi)|Lead-induced chronic gout, unspecified elbow, without tophus (tophi) +C2894091|T046|AB|M1A.1291|ICD10CM|Lead-induced chronic gout, unspecified elbow, with tophus|Lead-induced chronic gout, unspecified elbow, with tophus +C2894091|T046|PT|M1A.1291|ICD10CM|Lead-induced chronic gout, unspecified elbow, with tophus (tophi)|Lead-induced chronic gout, unspecified elbow, with tophus (tophi) +C3468719|T047|AB|M1A.13|ICD10CM|Lead-induced chronic gout, wrist|Lead-induced chronic gout, wrist +C3468719|T047|HT|M1A.13|ICD10CM|Lead-induced chronic gout, wrist|Lead-induced chronic gout, wrist +C2894315|T047|AB|M1A.131|ICD10CM|Lead-induced chronic gout, right wrist|Lead-induced chronic gout, right wrist +C2894315|T047|HT|M1A.131|ICD10CM|Lead-induced chronic gout, right wrist|Lead-induced chronic gout, right wrist +C2894092|T047|AB|M1A.1310|ICD10CM|Lead-induced chronic gout, right wrist, without tophus|Lead-induced chronic gout, right wrist, without tophus +C2894092|T047|PT|M1A.1310|ICD10CM|Lead-induced chronic gout, right wrist, without tophus (tophi)|Lead-induced chronic gout, right wrist, without tophus (tophi) +C2894093|T046|PT|M1A.1311|ICD10CM|Lead-induced chronic gout, right wrist, with tophus (tophi)|Lead-induced chronic gout, right wrist, with tophus (tophi) +C2894093|T046|AB|M1A.1311|ICD10CM|Lead-induced chronic gout, right wrist, with tophus (tophi)|Lead-induced chronic gout, right wrist, with tophus (tophi) +C2894316|T047|AB|M1A.132|ICD10CM|Lead-induced chronic gout, left wrist|Lead-induced chronic gout, left wrist +C2894316|T047|HT|M1A.132|ICD10CM|Lead-induced chronic gout, left wrist|Lead-induced chronic gout, left wrist +C2894094|T046|AB|M1A.1320|ICD10CM|Lead-induced chronic gout, left wrist, without tophus|Lead-induced chronic gout, left wrist, without tophus +C2894094|T046|PT|M1A.1320|ICD10CM|Lead-induced chronic gout, left wrist, without tophus (tophi)|Lead-induced chronic gout, left wrist, without tophus (tophi) +C2894095|T046|PT|M1A.1321|ICD10CM|Lead-induced chronic gout, left wrist, with tophus (tophi)|Lead-induced chronic gout, left wrist, with tophus (tophi) +C2894095|T046|AB|M1A.1321|ICD10CM|Lead-induced chronic gout, left wrist, with tophus (tophi)|Lead-induced chronic gout, left wrist, with tophus (tophi) +C3468719|T047|AB|M1A.139|ICD10CM|Lead-induced chronic gout, unspecified wrist|Lead-induced chronic gout, unspecified wrist +C3468719|T047|HT|M1A.139|ICD10CM|Lead-induced chronic gout, unspecified wrist|Lead-induced chronic gout, unspecified wrist +C2894096|T046|AB|M1A.1390|ICD10CM|Lead-induced chronic gout, unspecified wrist, without tophus|Lead-induced chronic gout, unspecified wrist, without tophus +C2894096|T046|PT|M1A.1390|ICD10CM|Lead-induced chronic gout, unspecified wrist, without tophus (tophi)|Lead-induced chronic gout, unspecified wrist, without tophus (tophi) +C2894097|T046|AB|M1A.1391|ICD10CM|Lead-induced chronic gout, unspecified wrist, with tophus|Lead-induced chronic gout, unspecified wrist, with tophus +C2894097|T046|PT|M1A.1391|ICD10CM|Lead-induced chronic gout, unspecified wrist, with tophus (tophi)|Lead-induced chronic gout, unspecified wrist, with tophus (tophi) +C3468713|T047|AB|M1A.14|ICD10CM|Lead-induced chronic gout, hand|Lead-induced chronic gout, hand +C3468713|T047|HT|M1A.14|ICD10CM|Lead-induced chronic gout, hand|Lead-induced chronic gout, hand +C2894319|T047|AB|M1A.141|ICD10CM|Lead-induced chronic gout, right hand|Lead-induced chronic gout, right hand +C2894319|T047|HT|M1A.141|ICD10CM|Lead-induced chronic gout, right hand|Lead-induced chronic gout, right hand +C2894098|T047|AB|M1A.1410|ICD10CM|Lead-induced chronic gout, right hand, without tophus|Lead-induced chronic gout, right hand, without tophus +C2894098|T047|PT|M1A.1410|ICD10CM|Lead-induced chronic gout, right hand, without tophus (tophi)|Lead-induced chronic gout, right hand, without tophus (tophi) +C2894099|T046|PT|M1A.1411|ICD10CM|Lead-induced chronic gout, right hand, with tophus (tophi)|Lead-induced chronic gout, right hand, with tophus (tophi) +C2894099|T046|AB|M1A.1411|ICD10CM|Lead-induced chronic gout, right hand, with tophus (tophi)|Lead-induced chronic gout, right hand, with tophus (tophi) +C2894320|T047|AB|M1A.142|ICD10CM|Lead-induced chronic gout, left hand|Lead-induced chronic gout, left hand +C2894320|T047|HT|M1A.142|ICD10CM|Lead-induced chronic gout, left hand|Lead-induced chronic gout, left hand +C2894100|T047|AB|M1A.1420|ICD10CM|Lead-induced chronic gout, left hand, without tophus (tophi)|Lead-induced chronic gout, left hand, without tophus (tophi) +C2894100|T047|PT|M1A.1420|ICD10CM|Lead-induced chronic gout, left hand, without tophus (tophi)|Lead-induced chronic gout, left hand, without tophus (tophi) +C2894101|T046|PT|M1A.1421|ICD10CM|Lead-induced chronic gout, left hand, with tophus (tophi)|Lead-induced chronic gout, left hand, with tophus (tophi) +C2894101|T046|AB|M1A.1421|ICD10CM|Lead-induced chronic gout, left hand, with tophus (tophi)|Lead-induced chronic gout, left hand, with tophus (tophi) +C2894321|T047|AB|M1A.149|ICD10CM|Lead-induced chronic gout, unspecified hand|Lead-induced chronic gout, unspecified hand +C2894321|T047|HT|M1A.149|ICD10CM|Lead-induced chronic gout, unspecified hand|Lead-induced chronic gout, unspecified hand +C2894102|T046|AB|M1A.1490|ICD10CM|Lead-induced chronic gout, unspecified hand, without tophus|Lead-induced chronic gout, unspecified hand, without tophus +C2894102|T046|PT|M1A.1490|ICD10CM|Lead-induced chronic gout, unspecified hand, without tophus (tophi)|Lead-induced chronic gout, unspecified hand, without tophus (tophi) +C2894103|T046|AB|M1A.1491|ICD10CM|Lead-induced chronic gout, unspecified hand, with tophus|Lead-induced chronic gout, unspecified hand, with tophus +C2894103|T046|PT|M1A.1491|ICD10CM|Lead-induced chronic gout, unspecified hand, with tophus (tophi)|Lead-induced chronic gout, unspecified hand, with tophus (tophi) +C3468714|T047|AB|M1A.15|ICD10CM|Lead-induced chronic gout, hip|Lead-induced chronic gout, hip +C3468714|T047|HT|M1A.15|ICD10CM|Lead-induced chronic gout, hip|Lead-induced chronic gout, hip +C2894322|T047|AB|M1A.151|ICD10CM|Lead-induced chronic gout, right hip|Lead-induced chronic gout, right hip +C2894322|T047|HT|M1A.151|ICD10CM|Lead-induced chronic gout, right hip|Lead-induced chronic gout, right hip +C2894104|T046|AB|M1A.1510|ICD10CM|Lead-induced chronic gout, right hip, without tophus (tophi)|Lead-induced chronic gout, right hip, without tophus (tophi) +C2894104|T046|PT|M1A.1510|ICD10CM|Lead-induced chronic gout, right hip, without tophus (tophi)|Lead-induced chronic gout, right hip, without tophus (tophi) +C2894105|T047|PT|M1A.1511|ICD10CM|Lead-induced chronic gout, right hip, with tophus (tophi)|Lead-induced chronic gout, right hip, with tophus (tophi) +C2894105|T047|AB|M1A.1511|ICD10CM|Lead-induced chronic gout, right hip, with tophus (tophi)|Lead-induced chronic gout, right hip, with tophus (tophi) +C2894323|T047|AB|M1A.152|ICD10CM|Lead-induced chronic gout, left hip|Lead-induced chronic gout, left hip +C2894323|T047|HT|M1A.152|ICD10CM|Lead-induced chronic gout, left hip|Lead-induced chronic gout, left hip +C2894106|T047|PT|M1A.1520|ICD10CM|Lead-induced chronic gout, left hip, without tophus (tophi)|Lead-induced chronic gout, left hip, without tophus (tophi) +C2894106|T047|AB|M1A.1520|ICD10CM|Lead-induced chronic gout, left hip, without tophus (tophi)|Lead-induced chronic gout, left hip, without tophus (tophi) +C2894107|T047|PT|M1A.1521|ICD10CM|Lead-induced chronic gout, left hip, with tophus (tophi)|Lead-induced chronic gout, left hip, with tophus (tophi) +C2894107|T047|AB|M1A.1521|ICD10CM|Lead-induced chronic gout, left hip, with tophus (tophi)|Lead-induced chronic gout, left hip, with tophus (tophi) +C3468714|T047|AB|M1A.159|ICD10CM|Lead-induced chronic gout, unspecified hip|Lead-induced chronic gout, unspecified hip +C3468714|T047|HT|M1A.159|ICD10CM|Lead-induced chronic gout, unspecified hip|Lead-induced chronic gout, unspecified hip +C2894108|T047|AB|M1A.1590|ICD10CM|Lead-induced chronic gout, unspecified hip, without tophus|Lead-induced chronic gout, unspecified hip, without tophus +C2894108|T047|PT|M1A.1590|ICD10CM|Lead-induced chronic gout, unspecified hip, without tophus (tophi)|Lead-induced chronic gout, unspecified hip, without tophus (tophi) +C2894109|T047|AB|M1A.1591|ICD10CM|Lead-induced chronic gout, unspecified hip, with tophus|Lead-induced chronic gout, unspecified hip, with tophus +C2894109|T047|PT|M1A.1591|ICD10CM|Lead-induced chronic gout, unspecified hip, with tophus (tophi)|Lead-induced chronic gout, unspecified hip, with tophus (tophi) +C3468715|T047|AB|M1A.16|ICD10CM|Lead-induced chronic gout, knee|Lead-induced chronic gout, knee +C3468715|T047|HT|M1A.16|ICD10CM|Lead-induced chronic gout, knee|Lead-induced chronic gout, knee +C2894325|T047|AB|M1A.161|ICD10CM|Lead-induced chronic gout, right knee|Lead-induced chronic gout, right knee +C2894325|T047|HT|M1A.161|ICD10CM|Lead-induced chronic gout, right knee|Lead-induced chronic gout, right knee +C2894110|T047|AB|M1A.1610|ICD10CM|Lead-induced chronic gout, right knee, without tophus|Lead-induced chronic gout, right knee, without tophus +C2894110|T047|PT|M1A.1610|ICD10CM|Lead-induced chronic gout, right knee, without tophus (tophi)|Lead-induced chronic gout, right knee, without tophus (tophi) +C2894111|T047|PT|M1A.1611|ICD10CM|Lead-induced chronic gout, right knee, with tophus (tophi)|Lead-induced chronic gout, right knee, with tophus (tophi) +C2894111|T047|AB|M1A.1611|ICD10CM|Lead-induced chronic gout, right knee, with tophus (tophi)|Lead-induced chronic gout, right knee, with tophus (tophi) +C2894326|T047|AB|M1A.162|ICD10CM|Lead-induced chronic gout, left knee|Lead-induced chronic gout, left knee +C2894326|T047|HT|M1A.162|ICD10CM|Lead-induced chronic gout, left knee|Lead-induced chronic gout, left knee +C2894112|T047|AB|M1A.1620|ICD10CM|Lead-induced chronic gout, left knee, without tophus (tophi)|Lead-induced chronic gout, left knee, without tophus (tophi) +C2894112|T047|PT|M1A.1620|ICD10CM|Lead-induced chronic gout, left knee, without tophus (tophi)|Lead-induced chronic gout, left knee, without tophus (tophi) +C2894113|T047|PT|M1A.1621|ICD10CM|Lead-induced chronic gout, left knee, with tophus (tophi)|Lead-induced chronic gout, left knee, with tophus (tophi) +C2894113|T047|AB|M1A.1621|ICD10CM|Lead-induced chronic gout, left knee, with tophus (tophi)|Lead-induced chronic gout, left knee, with tophus (tophi) +C3468715|T047|AB|M1A.169|ICD10CM|Lead-induced chronic gout, unspecified knee|Lead-induced chronic gout, unspecified knee +C3468715|T047|HT|M1A.169|ICD10CM|Lead-induced chronic gout, unspecified knee|Lead-induced chronic gout, unspecified knee +C2894114|T047|AB|M1A.1690|ICD10CM|Lead-induced chronic gout, unspecified knee, without tophus|Lead-induced chronic gout, unspecified knee, without tophus +C2894114|T047|PT|M1A.1690|ICD10CM|Lead-induced chronic gout, unspecified knee, without tophus (tophi)|Lead-induced chronic gout, unspecified knee, without tophus (tophi) +C2894115|T047|AB|M1A.1691|ICD10CM|Lead-induced chronic gout, unspecified knee, with tophus|Lead-induced chronic gout, unspecified knee, with tophus +C2894115|T047|PT|M1A.1691|ICD10CM|Lead-induced chronic gout, unspecified knee, with tophus (tophi)|Lead-induced chronic gout, unspecified knee, with tophus (tophi) +C3468711|T047|AB|M1A.17|ICD10CM|Lead-induced chronic gout, ankle and foot|Lead-induced chronic gout, ankle and foot +C3468711|T047|HT|M1A.17|ICD10CM|Lead-induced chronic gout, ankle and foot|Lead-induced chronic gout, ankle and foot +C2894329|T047|AB|M1A.171|ICD10CM|Lead-induced chronic gout, right ankle and foot|Lead-induced chronic gout, right ankle and foot +C2894329|T047|HT|M1A.171|ICD10CM|Lead-induced chronic gout, right ankle and foot|Lead-induced chronic gout, right ankle and foot +C2894116|T047|AB|M1A.1710|ICD10CM|Lead-induced chronic gout, right ankle and foot, w/o tophus|Lead-induced chronic gout, right ankle and foot, w/o tophus +C2894116|T047|PT|M1A.1710|ICD10CM|Lead-induced chronic gout, right ankle and foot, without tophus (tophi)|Lead-induced chronic gout, right ankle and foot, without tophus (tophi) +C2894117|T047|AB|M1A.1711|ICD10CM|Lead-induced chronic gout, right ankle and foot, with tophus|Lead-induced chronic gout, right ankle and foot, with tophus +C2894117|T047|PT|M1A.1711|ICD10CM|Lead-induced chronic gout, right ankle and foot, with tophus (tophi)|Lead-induced chronic gout, right ankle and foot, with tophus (tophi) +C2894330|T047|AB|M1A.172|ICD10CM|Lead-induced chronic gout, left ankle and foot|Lead-induced chronic gout, left ankle and foot +C2894330|T047|HT|M1A.172|ICD10CM|Lead-induced chronic gout, left ankle and foot|Lead-induced chronic gout, left ankle and foot +C2894118|T047|AB|M1A.1720|ICD10CM|Lead-induced chronic gout, left ankle and foot, w/o tophus|Lead-induced chronic gout, left ankle and foot, w/o tophus +C2894118|T047|PT|M1A.1720|ICD10CM|Lead-induced chronic gout, left ankle and foot, without tophus (tophi)|Lead-induced chronic gout, left ankle and foot, without tophus (tophi) +C2894119|T047|AB|M1A.1721|ICD10CM|Lead-induced chronic gout, left ankle and foot, with tophus|Lead-induced chronic gout, left ankle and foot, with tophus +C2894119|T047|PT|M1A.1721|ICD10CM|Lead-induced chronic gout, left ankle and foot, with tophus (tophi)|Lead-induced chronic gout, left ankle and foot, with tophus (tophi) +C2894331|T047|AB|M1A.179|ICD10CM|Lead-induced chronic gout, unspecified ankle and foot|Lead-induced chronic gout, unspecified ankle and foot +C2894331|T047|HT|M1A.179|ICD10CM|Lead-induced chronic gout, unspecified ankle and foot|Lead-induced chronic gout, unspecified ankle and foot +C2894120|T047|AB|M1A.1790|ICD10CM|Lead-induced chronic gout, unsp ankle and foot, w/o tophus|Lead-induced chronic gout, unsp ankle and foot, w/o tophus +C2894120|T047|PT|M1A.1790|ICD10CM|Lead-induced chronic gout, unspecified ankle and foot, without tophus (tophi)|Lead-induced chronic gout, unspecified ankle and foot, without tophus (tophi) +C2894121|T047|AB|M1A.1791|ICD10CM|Lead-induced chronic gout, unsp ankle and foot, with tophus|Lead-induced chronic gout, unsp ankle and foot, with tophus +C2894121|T047|PT|M1A.1791|ICD10CM|Lead-induced chronic gout, unspecified ankle and foot, with tophus (tophi)|Lead-induced chronic gout, unspecified ankle and foot, with tophus (tophi) +C3468718|T047|AB|M1A.18|ICD10CM|Lead-induced chronic gout, vertebrae|Lead-induced chronic gout, vertebrae +C3468718|T047|HT|M1A.18|ICD10CM|Lead-induced chronic gout, vertebrae|Lead-induced chronic gout, vertebrae +C2894122|T047|AB|M1A.18X0|ICD10CM|Lead-induced chronic gout, vertebrae, without tophus (tophi)|Lead-induced chronic gout, vertebrae, without tophus (tophi) +C2894122|T047|PT|M1A.18X0|ICD10CM|Lead-induced chronic gout, vertebrae, without tophus (tophi)|Lead-induced chronic gout, vertebrae, without tophus (tophi) +C2894123|T047|PT|M1A.18X1|ICD10CM|Lead-induced chronic gout, vertebrae, with tophus (tophi)|Lead-induced chronic gout, vertebrae, with tophus (tophi) +C2894123|T047|AB|M1A.18X1|ICD10CM|Lead-induced chronic gout, vertebrae, with tophus (tophi)|Lead-induced chronic gout, vertebrae, with tophus (tophi) +C3468716|T047|AB|M1A.19|ICD10CM|Lead-induced chronic gout, multiple sites|Lead-induced chronic gout, multiple sites +C3468716|T047|HT|M1A.19|ICD10CM|Lead-induced chronic gout, multiple sites|Lead-induced chronic gout, multiple sites +C2894124|T047|AB|M1A.19X0|ICD10CM|Lead-induced chronic gout, multiple sites, without tophus|Lead-induced chronic gout, multiple sites, without tophus +C2894124|T047|PT|M1A.19X0|ICD10CM|Lead-induced chronic gout, multiple sites, without tophus (tophi)|Lead-induced chronic gout, multiple sites, without tophus (tophi) +C2894125|T047|AB|M1A.19X1|ICD10CM|Lead-induced chronic gout, multiple sites, with tophus|Lead-induced chronic gout, multiple sites, with tophus +C2894125|T047|PT|M1A.19X1|ICD10CM|Lead-induced chronic gout, multiple sites, with tophus (tophi)|Lead-induced chronic gout, multiple sites, with tophus (tophi) +C3468690|T047|AB|M1A.2|ICD10CM|Drug-induced chronic gout|Drug-induced chronic gout +C3468690|T047|HT|M1A.2|ICD10CM|Drug-induced chronic gout|Drug-induced chronic gout +C2894335|T047|AB|M1A.20|ICD10CM|Drug-induced chronic gout, unspecified site|Drug-induced chronic gout, unspecified site +C2894335|T047|HT|M1A.20|ICD10CM|Drug-induced chronic gout, unspecified site|Drug-induced chronic gout, unspecified site +C2894126|T047|AB|M1A.20X0|ICD10CM|Drug-induced chronic gout, unspecified site, without tophus|Drug-induced chronic gout, unspecified site, without tophus +C2894126|T047|PT|M1A.20X0|ICD10CM|Drug-induced chronic gout, unspecified site, without tophus (tophi)|Drug-induced chronic gout, unspecified site, without tophus (tophi) +C2894127|T047|AB|M1A.20X1|ICD10CM|Drug-induced chronic gout, unspecified site, with tophus|Drug-induced chronic gout, unspecified site, with tophus +C2894127|T047|PT|M1A.20X1|ICD10CM|Drug-induced chronic gout, unspecified site, with tophus (tophi)|Drug-induced chronic gout, unspecified site, with tophus (tophi) +C3468697|T047|AB|M1A.21|ICD10CM|Drug-induced chronic gout, shoulder|Drug-induced chronic gout, shoulder +C3468697|T047|HT|M1A.21|ICD10CM|Drug-induced chronic gout, shoulder|Drug-induced chronic gout, shoulder +C2894337|T047|AB|M1A.211|ICD10CM|Drug-induced chronic gout, right shoulder|Drug-induced chronic gout, right shoulder +C2894337|T047|HT|M1A.211|ICD10CM|Drug-induced chronic gout, right shoulder|Drug-induced chronic gout, right shoulder +C2894128|T047|AB|M1A.2110|ICD10CM|Drug-induced chronic gout, right shoulder, without tophus|Drug-induced chronic gout, right shoulder, without tophus +C2894128|T047|PT|M1A.2110|ICD10CM|Drug-induced chronic gout, right shoulder, without tophus (tophi)|Drug-induced chronic gout, right shoulder, without tophus (tophi) +C2894129|T047|AB|M1A.2111|ICD10CM|Drug-induced chronic gout, right shoulder, with tophus|Drug-induced chronic gout, right shoulder, with tophus +C2894129|T047|PT|M1A.2111|ICD10CM|Drug-induced chronic gout, right shoulder, with tophus (tophi)|Drug-induced chronic gout, right shoulder, with tophus (tophi) +C2894338|T047|AB|M1A.212|ICD10CM|Drug-induced chronic gout, left shoulder|Drug-induced chronic gout, left shoulder +C2894338|T047|HT|M1A.212|ICD10CM|Drug-induced chronic gout, left shoulder|Drug-induced chronic gout, left shoulder +C2894130|T047|AB|M1A.2120|ICD10CM|Drug-induced chronic gout, left shoulder, without tophus|Drug-induced chronic gout, left shoulder, without tophus +C2894130|T047|PT|M1A.2120|ICD10CM|Drug-induced chronic gout, left shoulder, without tophus (tophi)|Drug-induced chronic gout, left shoulder, without tophus (tophi) +C2894131|T047|AB|M1A.2121|ICD10CM|Drug-induced chronic gout, left shoulder, with tophus|Drug-induced chronic gout, left shoulder, with tophus +C2894131|T047|PT|M1A.2121|ICD10CM|Drug-induced chronic gout, left shoulder, with tophus (tophi)|Drug-induced chronic gout, left shoulder, with tophus (tophi) +C2894339|T047|AB|M1A.219|ICD10CM|Drug-induced chronic gout, unspecified shoulder|Drug-induced chronic gout, unspecified shoulder +C2894339|T047|HT|M1A.219|ICD10CM|Drug-induced chronic gout, unspecified shoulder|Drug-induced chronic gout, unspecified shoulder +C2894132|T047|AB|M1A.2190|ICD10CM|Drug-induced chronic gout, unsp shoulder, without tophus|Drug-induced chronic gout, unsp shoulder, without tophus +C2894132|T047|PT|M1A.2190|ICD10CM|Drug-induced chronic gout, unspecified shoulder, without tophus (tophi)|Drug-induced chronic gout, unspecified shoulder, without tophus (tophi) +C2894133|T047|AB|M1A.2191|ICD10CM|Drug-induced chronic gout, unspecified shoulder, with tophus|Drug-induced chronic gout, unspecified shoulder, with tophus +C2894133|T047|PT|M1A.2191|ICD10CM|Drug-induced chronic gout, unspecified shoulder, with tophus (tophi)|Drug-induced chronic gout, unspecified shoulder, with tophus (tophi) +C3468692|T047|AB|M1A.22|ICD10CM|Drug-induced chronic gout, elbow|Drug-induced chronic gout, elbow +C3468692|T047|HT|M1A.22|ICD10CM|Drug-induced chronic gout, elbow|Drug-induced chronic gout, elbow +C2894341|T047|AB|M1A.221|ICD10CM|Drug-induced chronic gout, right elbow|Drug-induced chronic gout, right elbow +C2894341|T047|HT|M1A.221|ICD10CM|Drug-induced chronic gout, right elbow|Drug-induced chronic gout, right elbow +C2894134|T047|AB|M1A.2210|ICD10CM|Drug-induced chronic gout, right elbow, without tophus|Drug-induced chronic gout, right elbow, without tophus +C2894134|T047|PT|M1A.2210|ICD10CM|Drug-induced chronic gout, right elbow, without tophus (tophi)|Drug-induced chronic gout, right elbow, without tophus (tophi) +C2894135|T047|PT|M1A.2211|ICD10CM|Drug-induced chronic gout, right elbow, with tophus (tophi)|Drug-induced chronic gout, right elbow, with tophus (tophi) +C2894135|T047|AB|M1A.2211|ICD10CM|Drug-induced chronic gout, right elbow, with tophus (tophi)|Drug-induced chronic gout, right elbow, with tophus (tophi) +C2894342|T047|AB|M1A.222|ICD10CM|Drug-induced chronic gout, left elbow|Drug-induced chronic gout, left elbow +C2894342|T047|HT|M1A.222|ICD10CM|Drug-induced chronic gout, left elbow|Drug-induced chronic gout, left elbow +C2894136|T047|AB|M1A.2220|ICD10CM|Drug-induced chronic gout, left elbow, without tophus|Drug-induced chronic gout, left elbow, without tophus +C2894136|T047|PT|M1A.2220|ICD10CM|Drug-induced chronic gout, left elbow, without tophus (tophi)|Drug-induced chronic gout, left elbow, without tophus (tophi) +C2894137|T047|PT|M1A.2221|ICD10CM|Drug-induced chronic gout, left elbow, with tophus (tophi)|Drug-induced chronic gout, left elbow, with tophus (tophi) +C2894137|T047|AB|M1A.2221|ICD10CM|Drug-induced chronic gout, left elbow, with tophus (tophi)|Drug-induced chronic gout, left elbow, with tophus (tophi) +C2894343|T047|AB|M1A.229|ICD10CM|Drug-induced chronic gout, unspecified elbow|Drug-induced chronic gout, unspecified elbow +C2894343|T047|HT|M1A.229|ICD10CM|Drug-induced chronic gout, unspecified elbow|Drug-induced chronic gout, unspecified elbow +C2894138|T047|AB|M1A.2290|ICD10CM|Drug-induced chronic gout, unspecified elbow, without tophus|Drug-induced chronic gout, unspecified elbow, without tophus +C2894138|T047|PT|M1A.2290|ICD10CM|Drug-induced chronic gout, unspecified elbow, without tophus (tophi)|Drug-induced chronic gout, unspecified elbow, without tophus (tophi) +C2894139|T047|AB|M1A.2291|ICD10CM|Drug-induced chronic gout, unspecified elbow, with tophus|Drug-induced chronic gout, unspecified elbow, with tophus +C2894139|T047|PT|M1A.2291|ICD10CM|Drug-induced chronic gout, unspecified elbow, with tophus (tophi)|Drug-induced chronic gout, unspecified elbow, with tophus (tophi) +C3468699|T047|AB|M1A.23|ICD10CM|Drug-induced chronic gout, wrist|Drug-induced chronic gout, wrist +C3468699|T047|HT|M1A.23|ICD10CM|Drug-induced chronic gout, wrist|Drug-induced chronic gout, wrist +C2894345|T047|AB|M1A.231|ICD10CM|Drug-induced chronic gout, right wrist|Drug-induced chronic gout, right wrist +C2894345|T047|HT|M1A.231|ICD10CM|Drug-induced chronic gout, right wrist|Drug-induced chronic gout, right wrist +C2894140|T047|AB|M1A.2310|ICD10CM|Drug-induced chronic gout, right wrist, without tophus|Drug-induced chronic gout, right wrist, without tophus +C2894140|T047|PT|M1A.2310|ICD10CM|Drug-induced chronic gout, right wrist, without tophus (tophi)|Drug-induced chronic gout, right wrist, without tophus (tophi) +C2894141|T047|PT|M1A.2311|ICD10CM|Drug-induced chronic gout, right wrist, with tophus (tophi)|Drug-induced chronic gout, right wrist, with tophus (tophi) +C2894141|T047|AB|M1A.2311|ICD10CM|Drug-induced chronic gout, right wrist, with tophus (tophi)|Drug-induced chronic gout, right wrist, with tophus (tophi) +C2894346|T047|AB|M1A.232|ICD10CM|Drug-induced chronic gout, left wrist|Drug-induced chronic gout, left wrist +C2894346|T047|HT|M1A.232|ICD10CM|Drug-induced chronic gout, left wrist|Drug-induced chronic gout, left wrist +C2894142|T047|AB|M1A.2320|ICD10CM|Drug-induced chronic gout, left wrist, without tophus|Drug-induced chronic gout, left wrist, without tophus +C2894142|T047|PT|M1A.2320|ICD10CM|Drug-induced chronic gout, left wrist, without tophus (tophi)|Drug-induced chronic gout, left wrist, without tophus (tophi) +C2894143|T047|PT|M1A.2321|ICD10CM|Drug-induced chronic gout, left wrist, with tophus (tophi)|Drug-induced chronic gout, left wrist, with tophus (tophi) +C2894143|T047|AB|M1A.2321|ICD10CM|Drug-induced chronic gout, left wrist, with tophus (tophi)|Drug-induced chronic gout, left wrist, with tophus (tophi) +C2894347|T047|AB|M1A.239|ICD10CM|Drug-induced chronic gout, unspecified wrist|Drug-induced chronic gout, unspecified wrist +C2894347|T047|HT|M1A.239|ICD10CM|Drug-induced chronic gout, unspecified wrist|Drug-induced chronic gout, unspecified wrist +C2894144|T047|AB|M1A.2390|ICD10CM|Drug-induced chronic gout, unspecified wrist, without tophus|Drug-induced chronic gout, unspecified wrist, without tophus +C2894144|T047|PT|M1A.2390|ICD10CM|Drug-induced chronic gout, unspecified wrist, without tophus (tophi)|Drug-induced chronic gout, unspecified wrist, without tophus (tophi) +C2894145|T047|AB|M1A.2391|ICD10CM|Drug-induced chronic gout, unspecified wrist, with tophus|Drug-induced chronic gout, unspecified wrist, with tophus +C2894145|T047|PT|M1A.2391|ICD10CM|Drug-induced chronic gout, unspecified wrist, with tophus (tophi)|Drug-induced chronic gout, unspecified wrist, with tophus (tophi) +C3468693|T047|AB|M1A.24|ICD10CM|Drug-induced chronic gout, hand|Drug-induced chronic gout, hand +C3468693|T047|HT|M1A.24|ICD10CM|Drug-induced chronic gout, hand|Drug-induced chronic gout, hand +C2894349|T047|AB|M1A.241|ICD10CM|Drug-induced chronic gout, right hand|Drug-induced chronic gout, right hand +C2894349|T047|HT|M1A.241|ICD10CM|Drug-induced chronic gout, right hand|Drug-induced chronic gout, right hand +C2894146|T047|AB|M1A.2410|ICD10CM|Drug-induced chronic gout, right hand, without tophus|Drug-induced chronic gout, right hand, without tophus +C2894146|T047|PT|M1A.2410|ICD10CM|Drug-induced chronic gout, right hand, without tophus (tophi)|Drug-induced chronic gout, right hand, without tophus (tophi) +C2894147|T047|PT|M1A.2411|ICD10CM|Drug-induced chronic gout, right hand, with tophus (tophi)|Drug-induced chronic gout, right hand, with tophus (tophi) +C2894147|T047|AB|M1A.2411|ICD10CM|Drug-induced chronic gout, right hand, with tophus (tophi)|Drug-induced chronic gout, right hand, with tophus (tophi) +C2894350|T047|AB|M1A.242|ICD10CM|Drug-induced chronic gout, left hand|Drug-induced chronic gout, left hand +C2894350|T047|HT|M1A.242|ICD10CM|Drug-induced chronic gout, left hand|Drug-induced chronic gout, left hand +C2894148|T047|AB|M1A.2420|ICD10CM|Drug-induced chronic gout, left hand, without tophus (tophi)|Drug-induced chronic gout, left hand, without tophus (tophi) +C2894148|T047|PT|M1A.2420|ICD10CM|Drug-induced chronic gout, left hand, without tophus (tophi)|Drug-induced chronic gout, left hand, without tophus (tophi) +C2894149|T047|PT|M1A.2421|ICD10CM|Drug-induced chronic gout, left hand, with tophus (tophi)|Drug-induced chronic gout, left hand, with tophus (tophi) +C2894149|T047|AB|M1A.2421|ICD10CM|Drug-induced chronic gout, left hand, with tophus (tophi)|Drug-induced chronic gout, left hand, with tophus (tophi) +C2894351|T047|AB|M1A.249|ICD10CM|Drug-induced chronic gout, unspecified hand|Drug-induced chronic gout, unspecified hand +C2894351|T047|HT|M1A.249|ICD10CM|Drug-induced chronic gout, unspecified hand|Drug-induced chronic gout, unspecified hand +C2894150|T047|AB|M1A.2490|ICD10CM|Drug-induced chronic gout, unspecified hand, without tophus|Drug-induced chronic gout, unspecified hand, without tophus +C2894150|T047|PT|M1A.2490|ICD10CM|Drug-induced chronic gout, unspecified hand, without tophus (tophi)|Drug-induced chronic gout, unspecified hand, without tophus (tophi) +C2894151|T047|AB|M1A.2491|ICD10CM|Drug-induced chronic gout, unspecified hand, with tophus|Drug-induced chronic gout, unspecified hand, with tophus +C2894151|T047|PT|M1A.2491|ICD10CM|Drug-induced chronic gout, unspecified hand, with tophus (tophi)|Drug-induced chronic gout, unspecified hand, with tophus (tophi) +C3468694|T047|AB|M1A.25|ICD10CM|Drug-induced chronic gout, hip|Drug-induced chronic gout, hip +C3468694|T047|HT|M1A.25|ICD10CM|Drug-induced chronic gout, hip|Drug-induced chronic gout, hip +C2894353|T047|AB|M1A.251|ICD10CM|Drug-induced chronic gout, right hip|Drug-induced chronic gout, right hip +C2894353|T047|HT|M1A.251|ICD10CM|Drug-induced chronic gout, right hip|Drug-induced chronic gout, right hip +C2894152|T047|AB|M1A.2510|ICD10CM|Drug-induced chronic gout, right hip, without tophus (tophi)|Drug-induced chronic gout, right hip, without tophus (tophi) +C2894152|T047|PT|M1A.2510|ICD10CM|Drug-induced chronic gout, right hip, without tophus (tophi)|Drug-induced chronic gout, right hip, without tophus (tophi) +C2894153|T047|PT|M1A.2511|ICD10CM|Drug-induced chronic gout, right hip, with tophus (tophi)|Drug-induced chronic gout, right hip, with tophus (tophi) +C2894153|T047|AB|M1A.2511|ICD10CM|Drug-induced chronic gout, right hip, with tophus (tophi)|Drug-induced chronic gout, right hip, with tophus (tophi) +C2894354|T047|AB|M1A.252|ICD10CM|Drug-induced chronic gout, left hip|Drug-induced chronic gout, left hip +C2894354|T047|HT|M1A.252|ICD10CM|Drug-induced chronic gout, left hip|Drug-induced chronic gout, left hip +C2894154|T047|PT|M1A.2520|ICD10CM|Drug-induced chronic gout, left hip, without tophus (tophi)|Drug-induced chronic gout, left hip, without tophus (tophi) +C2894154|T047|AB|M1A.2520|ICD10CM|Drug-induced chronic gout, left hip, without tophus (tophi)|Drug-induced chronic gout, left hip, without tophus (tophi) +C2894155|T047|PT|M1A.2521|ICD10CM|Drug-induced chronic gout, left hip, with tophus (tophi)|Drug-induced chronic gout, left hip, with tophus (tophi) +C2894155|T047|AB|M1A.2521|ICD10CM|Drug-induced chronic gout, left hip, with tophus (tophi)|Drug-induced chronic gout, left hip, with tophus (tophi) +C2894355|T047|AB|M1A.259|ICD10CM|Drug-induced chronic gout, unspecified hip|Drug-induced chronic gout, unspecified hip +C2894355|T047|HT|M1A.259|ICD10CM|Drug-induced chronic gout, unspecified hip|Drug-induced chronic gout, unspecified hip +C2894156|T047|AB|M1A.2590|ICD10CM|Drug-induced chronic gout, unspecified hip, without tophus|Drug-induced chronic gout, unspecified hip, without tophus +C2894156|T047|PT|M1A.2590|ICD10CM|Drug-induced chronic gout, unspecified hip, without tophus (tophi)|Drug-induced chronic gout, unspecified hip, without tophus (tophi) +C2894157|T047|AB|M1A.2591|ICD10CM|Drug-induced chronic gout, unspecified hip, with tophus|Drug-induced chronic gout, unspecified hip, with tophus +C2894157|T047|PT|M1A.2591|ICD10CM|Drug-induced chronic gout, unspecified hip, with tophus (tophi)|Drug-induced chronic gout, unspecified hip, with tophus (tophi) +C3468695|T047|AB|M1A.26|ICD10CM|Drug-induced chronic gout, knee|Drug-induced chronic gout, knee +C3468695|T047|HT|M1A.26|ICD10CM|Drug-induced chronic gout, knee|Drug-induced chronic gout, knee +C2894357|T047|AB|M1A.261|ICD10CM|Drug-induced chronic gout, right knee|Drug-induced chronic gout, right knee +C2894357|T047|HT|M1A.261|ICD10CM|Drug-induced chronic gout, right knee|Drug-induced chronic gout, right knee +C2894158|T047|AB|M1A.2610|ICD10CM|Drug-induced chronic gout, right knee, without tophus|Drug-induced chronic gout, right knee, without tophus +C2894158|T047|PT|M1A.2610|ICD10CM|Drug-induced chronic gout, right knee, without tophus (tophi)|Drug-induced chronic gout, right knee, without tophus (tophi) +C2894159|T047|PT|M1A.2611|ICD10CM|Drug-induced chronic gout, right knee, with tophus (tophi)|Drug-induced chronic gout, right knee, with tophus (tophi) +C2894159|T047|AB|M1A.2611|ICD10CM|Drug-induced chronic gout, right knee, with tophus (tophi)|Drug-induced chronic gout, right knee, with tophus (tophi) +C2894358|T047|AB|M1A.262|ICD10CM|Drug-induced chronic gout, left knee|Drug-induced chronic gout, left knee +C2894358|T047|HT|M1A.262|ICD10CM|Drug-induced chronic gout, left knee|Drug-induced chronic gout, left knee +C2894160|T047|AB|M1A.2620|ICD10CM|Drug-induced chronic gout, left knee, without tophus (tophi)|Drug-induced chronic gout, left knee, without tophus (tophi) +C2894160|T047|PT|M1A.2620|ICD10CM|Drug-induced chronic gout, left knee, without tophus (tophi)|Drug-induced chronic gout, left knee, without tophus (tophi) +C2894161|T047|PT|M1A.2621|ICD10CM|Drug-induced chronic gout, left knee, with tophus (tophi)|Drug-induced chronic gout, left knee, with tophus (tophi) +C2894161|T047|AB|M1A.2621|ICD10CM|Drug-induced chronic gout, left knee, with tophus (tophi)|Drug-induced chronic gout, left knee, with tophus (tophi) +C2894359|T047|AB|M1A.269|ICD10CM|Drug-induced chronic gout, unspecified knee|Drug-induced chronic gout, unspecified knee +C2894359|T047|HT|M1A.269|ICD10CM|Drug-induced chronic gout, unspecified knee|Drug-induced chronic gout, unspecified knee +C2894162|T047|AB|M1A.2690|ICD10CM|Drug-induced chronic gout, unspecified knee, without tophus|Drug-induced chronic gout, unspecified knee, without tophus +C2894162|T047|PT|M1A.2690|ICD10CM|Drug-induced chronic gout, unspecified knee, without tophus (tophi)|Drug-induced chronic gout, unspecified knee, without tophus (tophi) +C2894163|T047|AB|M1A.2691|ICD10CM|Drug-induced chronic gout, unspecified knee, with tophus|Drug-induced chronic gout, unspecified knee, with tophus +C2894163|T047|PT|M1A.2691|ICD10CM|Drug-induced chronic gout, unspecified knee, with tophus (tophi)|Drug-induced chronic gout, unspecified knee, with tophus (tophi) +C3468691|T047|AB|M1A.27|ICD10CM|Drug-induced chronic gout, ankle and foot|Drug-induced chronic gout, ankle and foot +C3468691|T047|HT|M1A.27|ICD10CM|Drug-induced chronic gout, ankle and foot|Drug-induced chronic gout, ankle and foot +C2894361|T047|AB|M1A.271|ICD10CM|Drug-induced chronic gout, right ankle and foot|Drug-induced chronic gout, right ankle and foot +C2894361|T047|HT|M1A.271|ICD10CM|Drug-induced chronic gout, right ankle and foot|Drug-induced chronic gout, right ankle and foot +C2894164|T047|AB|M1A.2710|ICD10CM|Drug-induced chronic gout, right ankle and foot, w/o tophus|Drug-induced chronic gout, right ankle and foot, w/o tophus +C2894164|T047|PT|M1A.2710|ICD10CM|Drug-induced chronic gout, right ankle and foot, without tophus (tophi)|Drug-induced chronic gout, right ankle and foot, without tophus (tophi) +C2894165|T047|AB|M1A.2711|ICD10CM|Drug-induced chronic gout, right ankle and foot, with tophus|Drug-induced chronic gout, right ankle and foot, with tophus +C2894165|T047|PT|M1A.2711|ICD10CM|Drug-induced chronic gout, right ankle and foot, with tophus (tophi)|Drug-induced chronic gout, right ankle and foot, with tophus (tophi) +C2894362|T047|AB|M1A.272|ICD10CM|Drug-induced chronic gout, left ankle and foot|Drug-induced chronic gout, left ankle and foot +C2894362|T047|HT|M1A.272|ICD10CM|Drug-induced chronic gout, left ankle and foot|Drug-induced chronic gout, left ankle and foot +C2894166|T047|AB|M1A.2720|ICD10CM|Drug-induced chronic gout, left ankle and foot, w/o tophus|Drug-induced chronic gout, left ankle and foot, w/o tophus +C2894166|T047|PT|M1A.2720|ICD10CM|Drug-induced chronic gout, left ankle and foot, without tophus (tophi)|Drug-induced chronic gout, left ankle and foot, without tophus (tophi) +C2894167|T047|AB|M1A.2721|ICD10CM|Drug-induced chronic gout, left ankle and foot, with tophus|Drug-induced chronic gout, left ankle and foot, with tophus +C2894167|T047|PT|M1A.2721|ICD10CM|Drug-induced chronic gout, left ankle and foot, with tophus (tophi)|Drug-induced chronic gout, left ankle and foot, with tophus (tophi) +C2894363|T047|AB|M1A.279|ICD10CM|Drug-induced chronic gout, unspecified ankle and foot|Drug-induced chronic gout, unspecified ankle and foot +C2894363|T047|HT|M1A.279|ICD10CM|Drug-induced chronic gout, unspecified ankle and foot|Drug-induced chronic gout, unspecified ankle and foot +C2894168|T047|AB|M1A.2790|ICD10CM|Drug-induced chronic gout, unsp ankle and foot, w/o tophus|Drug-induced chronic gout, unsp ankle and foot, w/o tophus +C2894168|T047|PT|M1A.2790|ICD10CM|Drug-induced chronic gout, unspecified ankle and foot, without tophus (tophi)|Drug-induced chronic gout, unspecified ankle and foot, without tophus (tophi) +C2894169|T047|AB|M1A.2791|ICD10CM|Drug-induced chronic gout, unsp ankle and foot, with tophus|Drug-induced chronic gout, unsp ankle and foot, with tophus +C2894169|T047|PT|M1A.2791|ICD10CM|Drug-induced chronic gout, unspecified ankle and foot, with tophus (tophi)|Drug-induced chronic gout, unspecified ankle and foot, with tophus (tophi) +C3468698|T047|AB|M1A.28|ICD10CM|Drug-induced chronic gout, vertebrae|Drug-induced chronic gout, vertebrae +C3468698|T047|HT|M1A.28|ICD10CM|Drug-induced chronic gout, vertebrae|Drug-induced chronic gout, vertebrae +C2894170|T047|AB|M1A.28X0|ICD10CM|Drug-induced chronic gout, vertebrae, without tophus (tophi)|Drug-induced chronic gout, vertebrae, without tophus (tophi) +C2894170|T047|PT|M1A.28X0|ICD10CM|Drug-induced chronic gout, vertebrae, without tophus (tophi)|Drug-induced chronic gout, vertebrae, without tophus (tophi) +C2894171|T047|PT|M1A.28X1|ICD10CM|Drug-induced chronic gout, vertebrae, with tophus (tophi)|Drug-induced chronic gout, vertebrae, with tophus (tophi) +C2894171|T047|AB|M1A.28X1|ICD10CM|Drug-induced chronic gout, vertebrae, with tophus (tophi)|Drug-induced chronic gout, vertebrae, with tophus (tophi) +C3468696|T047|AB|M1A.29|ICD10CM|Drug-induced chronic gout, multiple sites|Drug-induced chronic gout, multiple sites +C3468696|T047|HT|M1A.29|ICD10CM|Drug-induced chronic gout, multiple sites|Drug-induced chronic gout, multiple sites +C2894172|T047|AB|M1A.29X0|ICD10CM|Drug-induced chronic gout, multiple sites, without tophus|Drug-induced chronic gout, multiple sites, without tophus +C2894172|T047|PT|M1A.29X0|ICD10CM|Drug-induced chronic gout, multiple sites, without tophus (tophi)|Drug-induced chronic gout, multiple sites, without tophus (tophi) +C2894173|T047|AB|M1A.29X1|ICD10CM|Drug-induced chronic gout, multiple sites, with tophus|Drug-induced chronic gout, multiple sites, with tophus +C2894173|T047|PT|M1A.29X1|ICD10CM|Drug-induced chronic gout, multiple sites, with tophus (tophi)|Drug-induced chronic gout, multiple sites, with tophus (tophi) +C3468700|T047|HT|M1A.3|ICD10CM|Chronic gout due to renal impairment|Chronic gout due to renal impairment +C3468700|T047|AB|M1A.3|ICD10CM|Chronic gout due to renal impairment|Chronic gout due to renal impairment +C2894367|T047|AB|M1A.30|ICD10CM|Chronic gout due to renal impairment, unspecified site|Chronic gout due to renal impairment, unspecified site +C2894367|T047|HT|M1A.30|ICD10CM|Chronic gout due to renal impairment, unspecified site|Chronic gout due to renal impairment, unspecified site +C2894174|T047|AB|M1A.30X0|ICD10CM|Chronic gout due to renal impairment, unsp site, w/o tophus|Chronic gout due to renal impairment, unsp site, w/o tophus +C2894174|T047|PT|M1A.30X0|ICD10CM|Chronic gout due to renal impairment, unspecified site, without tophus (tophi)|Chronic gout due to renal impairment, unspecified site, without tophus (tophi) +C2894175|T047|AB|M1A.30X1|ICD10CM|Chronic gout due to renal impairment, unsp site, with tophus|Chronic gout due to renal impairment, unsp site, with tophus +C2894175|T047|PT|M1A.30X1|ICD10CM|Chronic gout due to renal impairment, unspecified site, with tophus (tophi)|Chronic gout due to renal impairment, unspecified site, with tophus (tophi) +C3468707|T047|AB|M1A.31|ICD10CM|Chronic gout due to renal impairment, shoulder|Chronic gout due to renal impairment, shoulder +C3468707|T047|HT|M1A.31|ICD10CM|Chronic gout due to renal impairment, shoulder|Chronic gout due to renal impairment, shoulder +C2894369|T047|AB|M1A.311|ICD10CM|Chronic gout due to renal impairment, right shoulder|Chronic gout due to renal impairment, right shoulder +C2894369|T047|HT|M1A.311|ICD10CM|Chronic gout due to renal impairment, right shoulder|Chronic gout due to renal impairment, right shoulder +C2894176|T047|AB|M1A.3110|ICD10CM|Chronic gout due to renal impairment, r shoulder, w/o toph|Chronic gout due to renal impairment, r shoulder, w/o toph +C2894176|T047|PT|M1A.3110|ICD10CM|Chronic gout due to renal impairment, right shoulder, without tophus (tophi)|Chronic gout due to renal impairment, right shoulder, without tophus (tophi) +C2894177|T047|AB|M1A.3111|ICD10CM|Chronic gout due to renal impairment, right shoulder, w toph|Chronic gout due to renal impairment, right shoulder, w toph +C2894177|T047|PT|M1A.3111|ICD10CM|Chronic gout due to renal impairment, right shoulder, with tophus (tophi)|Chronic gout due to renal impairment, right shoulder, with tophus (tophi) +C2894370|T047|AB|M1A.312|ICD10CM|Chronic gout due to renal impairment, left shoulder|Chronic gout due to renal impairment, left shoulder +C2894370|T047|HT|M1A.312|ICD10CM|Chronic gout due to renal impairment, left shoulder|Chronic gout due to renal impairment, left shoulder +C2894178|T047|AB|M1A.3120|ICD10CM|Chronic gout due to renal impairment, l shoulder, w/o toph|Chronic gout due to renal impairment, l shoulder, w/o toph +C2894178|T047|PT|M1A.3120|ICD10CM|Chronic gout due to renal impairment, left shoulder, without tophus (tophi)|Chronic gout due to renal impairment, left shoulder, without tophus (tophi) +C2894179|T047|AB|M1A.3121|ICD10CM|Chronic gout due to renal impairment, left shoulder, w toph|Chronic gout due to renal impairment, left shoulder, w toph +C2894179|T047|PT|M1A.3121|ICD10CM|Chronic gout due to renal impairment, left shoulder, with tophus (tophi)|Chronic gout due to renal impairment, left shoulder, with tophus (tophi) +C2894371|T047|AB|M1A.319|ICD10CM|Chronic gout due to renal impairment, unspecified shoulder|Chronic gout due to renal impairment, unspecified shoulder +C2894371|T047|HT|M1A.319|ICD10CM|Chronic gout due to renal impairment, unspecified shoulder|Chronic gout due to renal impairment, unspecified shoulder +C2894180|T047|AB|M1A.3190|ICD10CM|Chronic gout due to renal impairment, unsp shldr, w/o toph|Chronic gout due to renal impairment, unsp shldr, w/o toph +C2894180|T047|PT|M1A.3190|ICD10CM|Chronic gout due to renal impairment, unspecified shoulder, without tophus (tophi)|Chronic gout due to renal impairment, unspecified shoulder, without tophus (tophi) +C2894181|T047|AB|M1A.3191|ICD10CM|Chronic gout due to renal impairment, unsp shoulder, w toph|Chronic gout due to renal impairment, unsp shoulder, w toph +C2894181|T047|PT|M1A.3191|ICD10CM|Chronic gout due to renal impairment, unspecified shoulder, with tophus (tophi)|Chronic gout due to renal impairment, unspecified shoulder, with tophus (tophi) +C3468702|T047|AB|M1A.32|ICD10CM|Chronic gout due to renal impairment, elbow|Chronic gout due to renal impairment, elbow +C3468702|T047|HT|M1A.32|ICD10CM|Chronic gout due to renal impairment, elbow|Chronic gout due to renal impairment, elbow +C2894373|T047|AB|M1A.321|ICD10CM|Chronic gout due to renal impairment, right elbow|Chronic gout due to renal impairment, right elbow +C2894373|T047|HT|M1A.321|ICD10CM|Chronic gout due to renal impairment, right elbow|Chronic gout due to renal impairment, right elbow +C2894182|T047|AB|M1A.3210|ICD10CM|Chronic gout due to renal impairment, right elbow, w/o toph|Chronic gout due to renal impairment, right elbow, w/o toph +C2894182|T047|PT|M1A.3210|ICD10CM|Chronic gout due to renal impairment, right elbow, without tophus (tophi)|Chronic gout due to renal impairment, right elbow, without tophus (tophi) +C2894183|T047|AB|M1A.3211|ICD10CM|Chronic gout due to renal impairment, right elbow, w tophus|Chronic gout due to renal impairment, right elbow, w tophus +C2894183|T047|PT|M1A.3211|ICD10CM|Chronic gout due to renal impairment, right elbow, with tophus (tophi)|Chronic gout due to renal impairment, right elbow, with tophus (tophi) +C2894374|T047|AB|M1A.322|ICD10CM|Chronic gout due to renal impairment, left elbow|Chronic gout due to renal impairment, left elbow +C2894374|T047|HT|M1A.322|ICD10CM|Chronic gout due to renal impairment, left elbow|Chronic gout due to renal impairment, left elbow +C2894184|T047|AB|M1A.3220|ICD10CM|Chronic gout due to renal impairment, left elbow, w/o tophus|Chronic gout due to renal impairment, left elbow, w/o tophus +C2894184|T047|PT|M1A.3220|ICD10CM|Chronic gout due to renal impairment, left elbow, without tophus (tophi)|Chronic gout due to renal impairment, left elbow, without tophus (tophi) +C2894185|T047|AB|M1A.3221|ICD10CM|Chronic gout due to renal impairment, left elbow, w tophus|Chronic gout due to renal impairment, left elbow, w tophus +C2894185|T047|PT|M1A.3221|ICD10CM|Chronic gout due to renal impairment, left elbow, with tophus (tophi)|Chronic gout due to renal impairment, left elbow, with tophus (tophi) +C2894375|T047|AB|M1A.329|ICD10CM|Chronic gout due to renal impairment, unspecified elbow|Chronic gout due to renal impairment, unspecified elbow +C2894375|T047|HT|M1A.329|ICD10CM|Chronic gout due to renal impairment, unspecified elbow|Chronic gout due to renal impairment, unspecified elbow +C2894186|T047|AB|M1A.3290|ICD10CM|Chronic gout due to renal impairment, unsp elbow, w/o tophus|Chronic gout due to renal impairment, unsp elbow, w/o tophus +C2894186|T047|PT|M1A.3290|ICD10CM|Chronic gout due to renal impairment, unspecified elbow, without tophus (tophi)|Chronic gout due to renal impairment, unspecified elbow, without tophus (tophi) +C2894187|T047|AB|M1A.3291|ICD10CM|Chronic gout due to renal impairment, unsp elbow, w tophus|Chronic gout due to renal impairment, unsp elbow, w tophus +C2894187|T047|PT|M1A.3291|ICD10CM|Chronic gout due to renal impairment, unspecified elbow, with tophus (tophi)|Chronic gout due to renal impairment, unspecified elbow, with tophus (tophi) +C3468709|T047|AB|M1A.33|ICD10CM|Chronic gout due to renal impairment, wrist|Chronic gout due to renal impairment, wrist +C3468709|T047|HT|M1A.33|ICD10CM|Chronic gout due to renal impairment, wrist|Chronic gout due to renal impairment, wrist +C2894377|T047|AB|M1A.331|ICD10CM|Chronic gout due to renal impairment, right wrist|Chronic gout due to renal impairment, right wrist +C2894377|T047|HT|M1A.331|ICD10CM|Chronic gout due to renal impairment, right wrist|Chronic gout due to renal impairment, right wrist +C2894188|T047|AB|M1A.3310|ICD10CM|Chronic gout due to renal impairment, right wrist, w/o toph|Chronic gout due to renal impairment, right wrist, w/o toph +C2894188|T047|PT|M1A.3310|ICD10CM|Chronic gout due to renal impairment, right wrist, without tophus (tophi)|Chronic gout due to renal impairment, right wrist, without tophus (tophi) +C2894189|T047|AB|M1A.3311|ICD10CM|Chronic gout due to renal impairment, right wrist, w tophus|Chronic gout due to renal impairment, right wrist, w tophus +C2894189|T047|PT|M1A.3311|ICD10CM|Chronic gout due to renal impairment, right wrist, with tophus (tophi)|Chronic gout due to renal impairment, right wrist, with tophus (tophi) +C2894378|T047|AB|M1A.332|ICD10CM|Chronic gout due to renal impairment, left wrist|Chronic gout due to renal impairment, left wrist +C2894378|T047|HT|M1A.332|ICD10CM|Chronic gout due to renal impairment, left wrist|Chronic gout due to renal impairment, left wrist +C2894190|T047|AB|M1A.3320|ICD10CM|Chronic gout due to renal impairment, left wrist, w/o tophus|Chronic gout due to renal impairment, left wrist, w/o tophus +C2894190|T047|PT|M1A.3320|ICD10CM|Chronic gout due to renal impairment, left wrist, without tophus (tophi)|Chronic gout due to renal impairment, left wrist, without tophus (tophi) +C2894191|T047|AB|M1A.3321|ICD10CM|Chronic gout due to renal impairment, left wrist, w tophus|Chronic gout due to renal impairment, left wrist, w tophus +C2894191|T047|PT|M1A.3321|ICD10CM|Chronic gout due to renal impairment, left wrist, with tophus (tophi)|Chronic gout due to renal impairment, left wrist, with tophus (tophi) +C2894379|T047|AB|M1A.339|ICD10CM|Chronic gout due to renal impairment, unspecified wrist|Chronic gout due to renal impairment, unspecified wrist +C2894379|T047|HT|M1A.339|ICD10CM|Chronic gout due to renal impairment, unspecified wrist|Chronic gout due to renal impairment, unspecified wrist +C2894192|T047|AB|M1A.3390|ICD10CM|Chronic gout due to renal impairment, unsp wrist, w/o tophus|Chronic gout due to renal impairment, unsp wrist, w/o tophus +C2894192|T047|PT|M1A.3390|ICD10CM|Chronic gout due to renal impairment, unspecified wrist, without tophus (tophi)|Chronic gout due to renal impairment, unspecified wrist, without tophus (tophi) +C2894193|T047|AB|M1A.3391|ICD10CM|Chronic gout due to renal impairment, unsp wrist, w tophus|Chronic gout due to renal impairment, unsp wrist, w tophus +C2894193|T047|PT|M1A.3391|ICD10CM|Chronic gout due to renal impairment, unspecified wrist, with tophus (tophi)|Chronic gout due to renal impairment, unspecified wrist, with tophus (tophi) +C2894380|T047|AB|M1A.34|ICD10CM|Chronic gout due to renal impairment, hand|Chronic gout due to renal impairment, hand +C2894380|T047|HT|M1A.34|ICD10CM|Chronic gout due to renal impairment, hand|Chronic gout due to renal impairment, hand +C2894381|T047|AB|M1A.341|ICD10CM|Chronic gout due to renal impairment, right hand|Chronic gout due to renal impairment, right hand +C2894381|T047|HT|M1A.341|ICD10CM|Chronic gout due to renal impairment, right hand|Chronic gout due to renal impairment, right hand +C2894194|T047|AB|M1A.3410|ICD10CM|Chronic gout due to renal impairment, right hand, w/o tophus|Chronic gout due to renal impairment, right hand, w/o tophus +C2894194|T047|PT|M1A.3410|ICD10CM|Chronic gout due to renal impairment, right hand, without tophus (tophi)|Chronic gout due to renal impairment, right hand, without tophus (tophi) +C2894195|T047|AB|M1A.3411|ICD10CM|Chronic gout due to renal impairment, right hand, w tophus|Chronic gout due to renal impairment, right hand, w tophus +C2894195|T047|PT|M1A.3411|ICD10CM|Chronic gout due to renal impairment, right hand, with tophus (tophi)|Chronic gout due to renal impairment, right hand, with tophus (tophi) +C2894382|T047|AB|M1A.342|ICD10CM|Chronic gout due to renal impairment, left hand|Chronic gout due to renal impairment, left hand +C2894382|T047|HT|M1A.342|ICD10CM|Chronic gout due to renal impairment, left hand|Chronic gout due to renal impairment, left hand +C2894196|T047|AB|M1A.3420|ICD10CM|Chronic gout due to renal impairment, left hand, w/o tophus|Chronic gout due to renal impairment, left hand, w/o tophus +C2894196|T047|PT|M1A.3420|ICD10CM|Chronic gout due to renal impairment, left hand, without tophus (tophi)|Chronic gout due to renal impairment, left hand, without tophus (tophi) +C2894197|T047|AB|M1A.3421|ICD10CM|Chronic gout due to renal impairment, left hand, with tophus|Chronic gout due to renal impairment, left hand, with tophus +C2894197|T047|PT|M1A.3421|ICD10CM|Chronic gout due to renal impairment, left hand, with tophus (tophi)|Chronic gout due to renal impairment, left hand, with tophus (tophi) +C2894383|T047|AB|M1A.349|ICD10CM|Chronic gout due to renal impairment, unspecified hand|Chronic gout due to renal impairment, unspecified hand +C2894383|T047|HT|M1A.349|ICD10CM|Chronic gout due to renal impairment, unspecified hand|Chronic gout due to renal impairment, unspecified hand +C2894198|T047|AB|M1A.3490|ICD10CM|Chronic gout due to renal impairment, unsp hand, w/o tophus|Chronic gout due to renal impairment, unsp hand, w/o tophus +C2894198|T047|PT|M1A.3490|ICD10CM|Chronic gout due to renal impairment, unspecified hand, without tophus (tophi)|Chronic gout due to renal impairment, unspecified hand, without tophus (tophi) +C2894199|T047|AB|M1A.3491|ICD10CM|Chronic gout due to renal impairment, unsp hand, with tophus|Chronic gout due to renal impairment, unsp hand, with tophus +C2894199|T047|PT|M1A.3491|ICD10CM|Chronic gout due to renal impairment, unspecified hand, with tophus (tophi)|Chronic gout due to renal impairment, unspecified hand, with tophus (tophi) +C2894384|T047|AB|M1A.35|ICD10CM|Chronic gout due to renal impairment, hip|Chronic gout due to renal impairment, hip +C2894384|T047|HT|M1A.35|ICD10CM|Chronic gout due to renal impairment, hip|Chronic gout due to renal impairment, hip +C2894385|T047|AB|M1A.351|ICD10CM|Chronic gout due to renal impairment, right hip|Chronic gout due to renal impairment, right hip +C2894385|T047|HT|M1A.351|ICD10CM|Chronic gout due to renal impairment, right hip|Chronic gout due to renal impairment, right hip +C2894200|T047|AB|M1A.3510|ICD10CM|Chronic gout due to renal impairment, right hip, w/o tophus|Chronic gout due to renal impairment, right hip, w/o tophus +C2894200|T047|PT|M1A.3510|ICD10CM|Chronic gout due to renal impairment, right hip, without tophus (tophi)|Chronic gout due to renal impairment, right hip, without tophus (tophi) +C2894201|T047|AB|M1A.3511|ICD10CM|Chronic gout due to renal impairment, right hip, with tophus|Chronic gout due to renal impairment, right hip, with tophus +C2894201|T047|PT|M1A.3511|ICD10CM|Chronic gout due to renal impairment, right hip, with tophus (tophi)|Chronic gout due to renal impairment, right hip, with tophus (tophi) +C2894386|T047|AB|M1A.352|ICD10CM|Chronic gout due to renal impairment, left hip|Chronic gout due to renal impairment, left hip +C2894386|T047|HT|M1A.352|ICD10CM|Chronic gout due to renal impairment, left hip|Chronic gout due to renal impairment, left hip +C2894202|T047|AB|M1A.3520|ICD10CM|Chronic gout due to renal impairment, left hip, w/o tophus|Chronic gout due to renal impairment, left hip, w/o tophus +C2894202|T047|PT|M1A.3520|ICD10CM|Chronic gout due to renal impairment, left hip, without tophus (tophi)|Chronic gout due to renal impairment, left hip, without tophus (tophi) +C2894203|T047|AB|M1A.3521|ICD10CM|Chronic gout due to renal impairment, left hip, with tophus|Chronic gout due to renal impairment, left hip, with tophus +C2894203|T047|PT|M1A.3521|ICD10CM|Chronic gout due to renal impairment, left hip, with tophus (tophi)|Chronic gout due to renal impairment, left hip, with tophus (tophi) +C2894387|T047|AB|M1A.359|ICD10CM|Chronic gout due to renal impairment, unspecified hip|Chronic gout due to renal impairment, unspecified hip +C2894387|T047|HT|M1A.359|ICD10CM|Chronic gout due to renal impairment, unspecified hip|Chronic gout due to renal impairment, unspecified hip +C2894204|T047|AB|M1A.3590|ICD10CM|Chronic gout due to renal impairment, unsp hip, w/o tophus|Chronic gout due to renal impairment, unsp hip, w/o tophus +C2894204|T047|PT|M1A.3590|ICD10CM|Chronic gout due to renal impairment, unspecified hip, without tophus (tophi)|Chronic gout due to renal impairment, unspecified hip, without tophus (tophi) +C2894205|T047|AB|M1A.3591|ICD10CM|Chronic gout due to renal impairment, unsp hip, with tophus|Chronic gout due to renal impairment, unsp hip, with tophus +C2894205|T047|PT|M1A.3591|ICD10CM|Chronic gout due to renal impairment, unspecified hip, with tophus (tophi)|Chronic gout due to renal impairment, unspecified hip, with tophus (tophi) +C2894388|T047|AB|M1A.36|ICD10CM|Chronic gout due to renal impairment, knee|Chronic gout due to renal impairment, knee +C2894388|T047|HT|M1A.36|ICD10CM|Chronic gout due to renal impairment, knee|Chronic gout due to renal impairment, knee +C2894389|T047|AB|M1A.361|ICD10CM|Chronic gout due to renal impairment, right knee|Chronic gout due to renal impairment, right knee +C2894389|T047|HT|M1A.361|ICD10CM|Chronic gout due to renal impairment, right knee|Chronic gout due to renal impairment, right knee +C2894206|T047|AB|M1A.3610|ICD10CM|Chronic gout due to renal impairment, right knee, w/o tophus|Chronic gout due to renal impairment, right knee, w/o tophus +C2894206|T047|PT|M1A.3610|ICD10CM|Chronic gout due to renal impairment, right knee, without tophus (tophi)|Chronic gout due to renal impairment, right knee, without tophus (tophi) +C2894207|T047|AB|M1A.3611|ICD10CM|Chronic gout due to renal impairment, right knee, w tophus|Chronic gout due to renal impairment, right knee, w tophus +C2894207|T047|PT|M1A.3611|ICD10CM|Chronic gout due to renal impairment, right knee, with tophus (tophi)|Chronic gout due to renal impairment, right knee, with tophus (tophi) +C2894390|T047|AB|M1A.362|ICD10CM|Chronic gout due to renal impairment, left knee|Chronic gout due to renal impairment, left knee +C2894390|T047|HT|M1A.362|ICD10CM|Chronic gout due to renal impairment, left knee|Chronic gout due to renal impairment, left knee +C2894208|T047|AB|M1A.3620|ICD10CM|Chronic gout due to renal impairment, left knee, w/o tophus|Chronic gout due to renal impairment, left knee, w/o tophus +C2894208|T047|PT|M1A.3620|ICD10CM|Chronic gout due to renal impairment, left knee, without tophus (tophi)|Chronic gout due to renal impairment, left knee, without tophus (tophi) +C2894209|T047|AB|M1A.3621|ICD10CM|Chronic gout due to renal impairment, left knee, with tophus|Chronic gout due to renal impairment, left knee, with tophus +C2894209|T047|PT|M1A.3621|ICD10CM|Chronic gout due to renal impairment, left knee, with tophus (tophi)|Chronic gout due to renal impairment, left knee, with tophus (tophi) +C2894391|T047|AB|M1A.369|ICD10CM|Chronic gout due to renal impairment, unspecified knee|Chronic gout due to renal impairment, unspecified knee +C2894391|T047|HT|M1A.369|ICD10CM|Chronic gout due to renal impairment, unspecified knee|Chronic gout due to renal impairment, unspecified knee +C2894210|T047|AB|M1A.3690|ICD10CM|Chronic gout due to renal impairment, unsp knee, w/o tophus|Chronic gout due to renal impairment, unsp knee, w/o tophus +C2894210|T047|PT|M1A.3690|ICD10CM|Chronic gout due to renal impairment, unspecified knee, without tophus (tophi)|Chronic gout due to renal impairment, unspecified knee, without tophus (tophi) +C2894211|T047|AB|M1A.3691|ICD10CM|Chronic gout due to renal impairment, unsp knee, with tophus|Chronic gout due to renal impairment, unsp knee, with tophus +C2894211|T047|PT|M1A.3691|ICD10CM|Chronic gout due to renal impairment, unspecified knee, with tophus (tophi)|Chronic gout due to renal impairment, unspecified knee, with tophus (tophi) +C2894392|T047|AB|M1A.37|ICD10CM|Chronic gout due to renal impairment, ankle and foot|Chronic gout due to renal impairment, ankle and foot +C2894392|T047|HT|M1A.37|ICD10CM|Chronic gout due to renal impairment, ankle and foot|Chronic gout due to renal impairment, ankle and foot +C2894393|T047|AB|M1A.371|ICD10CM|Chronic gout due to renal impairment, right ankle and foot|Chronic gout due to renal impairment, right ankle and foot +C2894393|T047|HT|M1A.371|ICD10CM|Chronic gout due to renal impairment, right ankle and foot|Chronic gout due to renal impairment, right ankle and foot +C2894212|T047|AB|M1A.3710|ICD10CM|Chronic gout due to renal impairment, right ank/ft, w/o toph|Chronic gout due to renal impairment, right ank/ft, w/o toph +C2894212|T047|PT|M1A.3710|ICD10CM|Chronic gout due to renal impairment, right ankle and foot, without tophus (tophi)|Chronic gout due to renal impairment, right ankle and foot, without tophus (tophi) +C2894213|T047|AB|M1A.3711|ICD10CM|Chronic gout due to renal impairment, right ank/ft, w toph|Chronic gout due to renal impairment, right ank/ft, w toph +C2894213|T047|PT|M1A.3711|ICD10CM|Chronic gout due to renal impairment, right ankle and foot, with tophus (tophi)|Chronic gout due to renal impairment, right ankle and foot, with tophus (tophi) +C2894394|T047|AB|M1A.372|ICD10CM|Chronic gout due to renal impairment, left ankle and foot|Chronic gout due to renal impairment, left ankle and foot +C2894394|T047|HT|M1A.372|ICD10CM|Chronic gout due to renal impairment, left ankle and foot|Chronic gout due to renal impairment, left ankle and foot +C2894214|T047|AB|M1A.3720|ICD10CM|Chronic gout due to renal impairment, left ank/ft, w/o toph|Chronic gout due to renal impairment, left ank/ft, w/o toph +C2894214|T047|PT|M1A.3720|ICD10CM|Chronic gout due to renal impairment, left ankle and foot, without tophus (tophi)|Chronic gout due to renal impairment, left ankle and foot, without tophus (tophi) +C2894215|T047|AB|M1A.3721|ICD10CM|Chronic gout due to renal impairment, left ank/ft, w toph|Chronic gout due to renal impairment, left ank/ft, w toph +C2894215|T047|PT|M1A.3721|ICD10CM|Chronic gout due to renal impairment, left ankle and foot, with tophus (tophi)|Chronic gout due to renal impairment, left ankle and foot, with tophus (tophi) +C2894395|T047|AB|M1A.379|ICD10CM|Chronic gout due to renal impairment, unsp ankle and foot|Chronic gout due to renal impairment, unsp ankle and foot +C2894395|T047|HT|M1A.379|ICD10CM|Chronic gout due to renal impairment, unspecified ankle and foot|Chronic gout due to renal impairment, unspecified ankle and foot +C2894216|T047|AB|M1A.3790|ICD10CM|Chronic gout due to renal impairment, unsp ank/ft, w/o toph|Chronic gout due to renal impairment, unsp ank/ft, w/o toph +C2894216|T047|PT|M1A.3790|ICD10CM|Chronic gout due to renal impairment, unspecified ankle and foot, without tophus (tophi)|Chronic gout due to renal impairment, unspecified ankle and foot, without tophus (tophi) +C2894217|T047|AB|M1A.3791|ICD10CM|Chronic gout due to renal impairment, unsp ank/ft, w toph|Chronic gout due to renal impairment, unsp ank/ft, w toph +C2894217|T047|PT|M1A.3791|ICD10CM|Chronic gout due to renal impairment, unspecified ankle and foot, with tophus (tophi)|Chronic gout due to renal impairment, unspecified ankle and foot, with tophus (tophi) +C2894396|T047|AB|M1A.38|ICD10CM|Chronic gout due to renal impairment, vertebrae|Chronic gout due to renal impairment, vertebrae +C2894396|T047|HT|M1A.38|ICD10CM|Chronic gout due to renal impairment, vertebrae|Chronic gout due to renal impairment, vertebrae +C2894218|T047|AB|M1A.38X0|ICD10CM|Chronic gout due to renal impairment, vertebrae, w/o tophus|Chronic gout due to renal impairment, vertebrae, w/o tophus +C2894218|T047|PT|M1A.38X0|ICD10CM|Chronic gout due to renal impairment, vertebrae, without tophus (tophi)|Chronic gout due to renal impairment, vertebrae, without tophus (tophi) +C2894219|T047|AB|M1A.38X1|ICD10CM|Chronic gout due to renal impairment, vertebrae, with tophus|Chronic gout due to renal impairment, vertebrae, with tophus +C2894219|T047|PT|M1A.38X1|ICD10CM|Chronic gout due to renal impairment, vertebrae, with tophus (tophi)|Chronic gout due to renal impairment, vertebrae, with tophus (tophi) +C2894397|T047|AB|M1A.39|ICD10CM|Chronic gout due to renal impairment, multiple sites|Chronic gout due to renal impairment, multiple sites +C2894397|T047|HT|M1A.39|ICD10CM|Chronic gout due to renal impairment, multiple sites|Chronic gout due to renal impairment, multiple sites +C2894220|T047|AB|M1A.39X0|ICD10CM|Chronic gout due to renal impairment, mult sites, w/o toph|Chronic gout due to renal impairment, mult sites, w/o toph +C2894220|T047|PT|M1A.39X0|ICD10CM|Chronic gout due to renal impairment, multiple sites, without tophus (tophi)|Chronic gout due to renal impairment, multiple sites, without tophus (tophi) +C2894221|T047|AB|M1A.39X1|ICD10CM|Chronic gout due to renal impairment, multiple sites, w toph|Chronic gout due to renal impairment, multiple sites, w toph +C2894221|T047|PT|M1A.39X1|ICD10CM|Chronic gout due to renal impairment, multiple sites, with tophus (tophi)|Chronic gout due to renal impairment, multiple sites, with tophus (tophi) +C2894398|T047|AB|M1A.4|ICD10CM|Other secondary chronic gout|Other secondary chronic gout +C2894398|T047|HT|M1A.4|ICD10CM|Other secondary chronic gout|Other secondary chronic gout +C2894399|T047|AB|M1A.40|ICD10CM|Other secondary chronic gout, unspecified site|Other secondary chronic gout, unspecified site +C2894399|T047|HT|M1A.40|ICD10CM|Other secondary chronic gout, unspecified site|Other secondary chronic gout, unspecified site +C2894222|T047|AB|M1A.40X0|ICD10CM|Other secondary chronic gout, unsp site, without tophus|Other secondary chronic gout, unsp site, without tophus +C2894222|T047|PT|M1A.40X0|ICD10CM|Other secondary chronic gout, unspecified site, without tophus (tophi)|Other secondary chronic gout, unspecified site, without tophus (tophi) +C2894223|T047|AB|M1A.40X1|ICD10CM|Other secondary chronic gout, unspecified site, with tophus|Other secondary chronic gout, unspecified site, with tophus +C2894223|T047|PT|M1A.40X1|ICD10CM|Other secondary chronic gout, unspecified site, with tophus (tophi)|Other secondary chronic gout, unspecified site, with tophus (tophi) +C2894400|T047|AB|M1A.41|ICD10CM|Other secondary chronic gout, shoulder|Other secondary chronic gout, shoulder +C2894400|T047|HT|M1A.41|ICD10CM|Other secondary chronic gout, shoulder|Other secondary chronic gout, shoulder +C2894401|T047|AB|M1A.411|ICD10CM|Other secondary chronic gout, right shoulder|Other secondary chronic gout, right shoulder +C2894401|T047|HT|M1A.411|ICD10CM|Other secondary chronic gout, right shoulder|Other secondary chronic gout, right shoulder +C2894224|T047|AB|M1A.4110|ICD10CM|Other secondary chronic gout, right shoulder, without tophus|Other secondary chronic gout, right shoulder, without tophus +C2894224|T047|PT|M1A.4110|ICD10CM|Other secondary chronic gout, right shoulder, without tophus (tophi)|Other secondary chronic gout, right shoulder, without tophus (tophi) +C2894225|T047|AB|M1A.4111|ICD10CM|Other secondary chronic gout, right shoulder, with tophus|Other secondary chronic gout, right shoulder, with tophus +C2894225|T047|PT|M1A.4111|ICD10CM|Other secondary chronic gout, right shoulder, with tophus (tophi)|Other secondary chronic gout, right shoulder, with tophus (tophi) +C2894402|T047|AB|M1A.412|ICD10CM|Other secondary chronic gout, left shoulder|Other secondary chronic gout, left shoulder +C2894402|T047|HT|M1A.412|ICD10CM|Other secondary chronic gout, left shoulder|Other secondary chronic gout, left shoulder +C2894226|T047|AB|M1A.4120|ICD10CM|Other secondary chronic gout, left shoulder, without tophus|Other secondary chronic gout, left shoulder, without tophus +C2894226|T047|PT|M1A.4120|ICD10CM|Other secondary chronic gout, left shoulder, without tophus (tophi)|Other secondary chronic gout, left shoulder, without tophus (tophi) +C2894227|T047|AB|M1A.4121|ICD10CM|Other secondary chronic gout, left shoulder, with tophus|Other secondary chronic gout, left shoulder, with tophus +C2894227|T047|PT|M1A.4121|ICD10CM|Other secondary chronic gout, left shoulder, with tophus (tophi)|Other secondary chronic gout, left shoulder, with tophus (tophi) +C2894403|T047|AB|M1A.419|ICD10CM|Other secondary chronic gout, unspecified shoulder|Other secondary chronic gout, unspecified shoulder +C2894403|T047|HT|M1A.419|ICD10CM|Other secondary chronic gout, unspecified shoulder|Other secondary chronic gout, unspecified shoulder +C2894228|T047|AB|M1A.4190|ICD10CM|Other secondary chronic gout, unsp shoulder, without tophus|Other secondary chronic gout, unsp shoulder, without tophus +C2894228|T047|PT|M1A.4190|ICD10CM|Other secondary chronic gout, unspecified shoulder, without tophus (tophi)|Other secondary chronic gout, unspecified shoulder, without tophus (tophi) +C2894229|T047|AB|M1A.4191|ICD10CM|Other secondary chronic gout, unsp shoulder, with tophus|Other secondary chronic gout, unsp shoulder, with tophus +C2894229|T047|PT|M1A.4191|ICD10CM|Other secondary chronic gout, unspecified shoulder, with tophus (tophi)|Other secondary chronic gout, unspecified shoulder, with tophus (tophi) +C2894404|T047|AB|M1A.42|ICD10CM|Other secondary chronic gout, elbow|Other secondary chronic gout, elbow +C2894404|T047|HT|M1A.42|ICD10CM|Other secondary chronic gout, elbow|Other secondary chronic gout, elbow +C2894405|T047|AB|M1A.421|ICD10CM|Other secondary chronic gout, right elbow|Other secondary chronic gout, right elbow +C2894405|T047|HT|M1A.421|ICD10CM|Other secondary chronic gout, right elbow|Other secondary chronic gout, right elbow +C2894230|T047|AB|M1A.4210|ICD10CM|Other secondary chronic gout, right elbow, without tophus|Other secondary chronic gout, right elbow, without tophus +C2894230|T047|PT|M1A.4210|ICD10CM|Other secondary chronic gout, right elbow, without tophus (tophi)|Other secondary chronic gout, right elbow, without tophus (tophi) +C2894231|T047|AB|M1A.4211|ICD10CM|Other secondary chronic gout, right elbow, with tophus|Other secondary chronic gout, right elbow, with tophus +C2894231|T047|PT|M1A.4211|ICD10CM|Other secondary chronic gout, right elbow, with tophus (tophi)|Other secondary chronic gout, right elbow, with tophus (tophi) +C2894406|T047|AB|M1A.422|ICD10CM|Other secondary chronic gout, left elbow|Other secondary chronic gout, left elbow +C2894406|T047|HT|M1A.422|ICD10CM|Other secondary chronic gout, left elbow|Other secondary chronic gout, left elbow +C2894232|T047|AB|M1A.4220|ICD10CM|Other secondary chronic gout, left elbow, without tophus|Other secondary chronic gout, left elbow, without tophus +C2894232|T047|PT|M1A.4220|ICD10CM|Other secondary chronic gout, left elbow, without tophus (tophi)|Other secondary chronic gout, left elbow, without tophus (tophi) +C2894233|T047|AB|M1A.4221|ICD10CM|Other secondary chronic gout, left elbow, with tophus|Other secondary chronic gout, left elbow, with tophus +C2894233|T047|PT|M1A.4221|ICD10CM|Other secondary chronic gout, left elbow, with tophus (tophi)|Other secondary chronic gout, left elbow, with tophus (tophi) +C2894407|T047|AB|M1A.429|ICD10CM|Other secondary chronic gout, unspecified elbow|Other secondary chronic gout, unspecified elbow +C2894407|T047|HT|M1A.429|ICD10CM|Other secondary chronic gout, unspecified elbow|Other secondary chronic gout, unspecified elbow +C2894234|T047|AB|M1A.4290|ICD10CM|Other secondary chronic gout, unsp elbow, without tophus|Other secondary chronic gout, unsp elbow, without tophus +C2894234|T047|PT|M1A.4290|ICD10CM|Other secondary chronic gout, unspecified elbow, without tophus (tophi)|Other secondary chronic gout, unspecified elbow, without tophus (tophi) +C2894235|T047|AB|M1A.4291|ICD10CM|Other secondary chronic gout, unspecified elbow, with tophus|Other secondary chronic gout, unspecified elbow, with tophus +C2894235|T047|PT|M1A.4291|ICD10CM|Other secondary chronic gout, unspecified elbow, with tophus (tophi)|Other secondary chronic gout, unspecified elbow, with tophus (tophi) +C2894408|T047|AB|M1A.43|ICD10CM|Other secondary chronic gout, wrist|Other secondary chronic gout, wrist +C2894408|T047|HT|M1A.43|ICD10CM|Other secondary chronic gout, wrist|Other secondary chronic gout, wrist +C2894409|T047|AB|M1A.431|ICD10CM|Other secondary chronic gout, right wrist|Other secondary chronic gout, right wrist +C2894409|T047|HT|M1A.431|ICD10CM|Other secondary chronic gout, right wrist|Other secondary chronic gout, right wrist +C2894236|T047|AB|M1A.4310|ICD10CM|Other secondary chronic gout, right wrist, without tophus|Other secondary chronic gout, right wrist, without tophus +C2894236|T047|PT|M1A.4310|ICD10CM|Other secondary chronic gout, right wrist, without tophus (tophi)|Other secondary chronic gout, right wrist, without tophus (tophi) +C2894237|T047|AB|M1A.4311|ICD10CM|Other secondary chronic gout, right wrist, with tophus|Other secondary chronic gout, right wrist, with tophus +C2894237|T047|PT|M1A.4311|ICD10CM|Other secondary chronic gout, right wrist, with tophus (tophi)|Other secondary chronic gout, right wrist, with tophus (tophi) +C2894410|T047|AB|M1A.432|ICD10CM|Other secondary chronic gout, left wrist|Other secondary chronic gout, left wrist +C2894410|T047|HT|M1A.432|ICD10CM|Other secondary chronic gout, left wrist|Other secondary chronic gout, left wrist +C2894238|T047|AB|M1A.4320|ICD10CM|Other secondary chronic gout, left wrist, without tophus|Other secondary chronic gout, left wrist, without tophus +C2894238|T047|PT|M1A.4320|ICD10CM|Other secondary chronic gout, left wrist, without tophus (tophi)|Other secondary chronic gout, left wrist, without tophus (tophi) +C2894239|T047|AB|M1A.4321|ICD10CM|Other secondary chronic gout, left wrist, with tophus|Other secondary chronic gout, left wrist, with tophus +C2894239|T047|PT|M1A.4321|ICD10CM|Other secondary chronic gout, left wrist, with tophus (tophi)|Other secondary chronic gout, left wrist, with tophus (tophi) +C2894411|T047|AB|M1A.439|ICD10CM|Other secondary chronic gout, unspecified wrist|Other secondary chronic gout, unspecified wrist +C2894411|T047|HT|M1A.439|ICD10CM|Other secondary chronic gout, unspecified wrist|Other secondary chronic gout, unspecified wrist +C2894240|T047|AB|M1A.4390|ICD10CM|Other secondary chronic gout, unsp wrist, without tophus|Other secondary chronic gout, unsp wrist, without tophus +C2894240|T047|PT|M1A.4390|ICD10CM|Other secondary chronic gout, unspecified wrist, without tophus (tophi)|Other secondary chronic gout, unspecified wrist, without tophus (tophi) +C2894241|T047|AB|M1A.4391|ICD10CM|Other secondary chronic gout, unspecified wrist, with tophus|Other secondary chronic gout, unspecified wrist, with tophus +C2894241|T047|PT|M1A.4391|ICD10CM|Other secondary chronic gout, unspecified wrist, with tophus (tophi)|Other secondary chronic gout, unspecified wrist, with tophus (tophi) +C2894412|T047|AB|M1A.44|ICD10CM|Other secondary chronic gout, hand|Other secondary chronic gout, hand +C2894412|T047|HT|M1A.44|ICD10CM|Other secondary chronic gout, hand|Other secondary chronic gout, hand +C2894413|T047|AB|M1A.441|ICD10CM|Other secondary chronic gout, right hand|Other secondary chronic gout, right hand +C2894413|T047|HT|M1A.441|ICD10CM|Other secondary chronic gout, right hand|Other secondary chronic gout, right hand +C2894242|T047|AB|M1A.4410|ICD10CM|Other secondary chronic gout, right hand, without tophus|Other secondary chronic gout, right hand, without tophus +C2894242|T047|PT|M1A.4410|ICD10CM|Other secondary chronic gout, right hand, without tophus (tophi)|Other secondary chronic gout, right hand, without tophus (tophi) +C2894243|T047|AB|M1A.4411|ICD10CM|Other secondary chronic gout, right hand, with tophus|Other secondary chronic gout, right hand, with tophus +C2894243|T047|PT|M1A.4411|ICD10CM|Other secondary chronic gout, right hand, with tophus (tophi)|Other secondary chronic gout, right hand, with tophus (tophi) +C2894414|T047|AB|M1A.442|ICD10CM|Other secondary chronic gout, left hand|Other secondary chronic gout, left hand +C2894414|T047|HT|M1A.442|ICD10CM|Other secondary chronic gout, left hand|Other secondary chronic gout, left hand +C2894244|T047|AB|M1A.4420|ICD10CM|Other secondary chronic gout, left hand, without tophus|Other secondary chronic gout, left hand, without tophus +C2894244|T047|PT|M1A.4420|ICD10CM|Other secondary chronic gout, left hand, without tophus (tophi)|Other secondary chronic gout, left hand, without tophus (tophi) +C2894245|T047|AB|M1A.4421|ICD10CM|Other secondary chronic gout, left hand, with tophus (tophi)|Other secondary chronic gout, left hand, with tophus (tophi) +C2894245|T047|PT|M1A.4421|ICD10CM|Other secondary chronic gout, left hand, with tophus (tophi)|Other secondary chronic gout, left hand, with tophus (tophi) +C2894415|T047|AB|M1A.449|ICD10CM|Other secondary chronic gout, unspecified hand|Other secondary chronic gout, unspecified hand +C2894415|T047|HT|M1A.449|ICD10CM|Other secondary chronic gout, unspecified hand|Other secondary chronic gout, unspecified hand +C2894246|T047|AB|M1A.4490|ICD10CM|Other secondary chronic gout, unsp hand, without tophus|Other secondary chronic gout, unsp hand, without tophus +C2894246|T047|PT|M1A.4490|ICD10CM|Other secondary chronic gout, unspecified hand, without tophus (tophi)|Other secondary chronic gout, unspecified hand, without tophus (tophi) +C2894247|T047|AB|M1A.4491|ICD10CM|Other secondary chronic gout, unspecified hand, with tophus|Other secondary chronic gout, unspecified hand, with tophus +C2894247|T047|PT|M1A.4491|ICD10CM|Other secondary chronic gout, unspecified hand, with tophus (tophi)|Other secondary chronic gout, unspecified hand, with tophus (tophi) +C2894416|T047|AB|M1A.45|ICD10CM|Other secondary chronic gout, hip|Other secondary chronic gout, hip +C2894416|T047|HT|M1A.45|ICD10CM|Other secondary chronic gout, hip|Other secondary chronic gout, hip +C2894417|T047|AB|M1A.451|ICD10CM|Other secondary chronic gout, right hip|Other secondary chronic gout, right hip +C2894417|T047|HT|M1A.451|ICD10CM|Other secondary chronic gout, right hip|Other secondary chronic gout, right hip +C2894248|T047|AB|M1A.4510|ICD10CM|Other secondary chronic gout, right hip, without tophus|Other secondary chronic gout, right hip, without tophus +C2894248|T047|PT|M1A.4510|ICD10CM|Other secondary chronic gout, right hip, without tophus (tophi)|Other secondary chronic gout, right hip, without tophus (tophi) +C2894249|T047|AB|M1A.4511|ICD10CM|Other secondary chronic gout, right hip, with tophus (tophi)|Other secondary chronic gout, right hip, with tophus (tophi) +C2894249|T047|PT|M1A.4511|ICD10CM|Other secondary chronic gout, right hip, with tophus (tophi)|Other secondary chronic gout, right hip, with tophus (tophi) +C2894418|T047|AB|M1A.452|ICD10CM|Other secondary chronic gout, left hip|Other secondary chronic gout, left hip +C2894418|T047|HT|M1A.452|ICD10CM|Other secondary chronic gout, left hip|Other secondary chronic gout, left hip +C2894250|T047|AB|M1A.4520|ICD10CM|Other secondary chronic gout, left hip, without tophus|Other secondary chronic gout, left hip, without tophus +C2894250|T047|PT|M1A.4520|ICD10CM|Other secondary chronic gout, left hip, without tophus (tophi)|Other secondary chronic gout, left hip, without tophus (tophi) +C2894251|T047|AB|M1A.4521|ICD10CM|Other secondary chronic gout, left hip, with tophus (tophi)|Other secondary chronic gout, left hip, with tophus (tophi) +C2894251|T047|PT|M1A.4521|ICD10CM|Other secondary chronic gout, left hip, with tophus (tophi)|Other secondary chronic gout, left hip, with tophus (tophi) +C2894419|T047|AB|M1A.459|ICD10CM|Other secondary chronic gout, unspecified hip|Other secondary chronic gout, unspecified hip +C2894419|T047|HT|M1A.459|ICD10CM|Other secondary chronic gout, unspecified hip|Other secondary chronic gout, unspecified hip +C2894252|T047|AB|M1A.4590|ICD10CM|Other secondary chronic gout, unsp hip, without tophus|Other secondary chronic gout, unsp hip, without tophus +C2894252|T047|PT|M1A.4590|ICD10CM|Other secondary chronic gout, unspecified hip, without tophus (tophi)|Other secondary chronic gout, unspecified hip, without tophus (tophi) +C2894253|T047|AB|M1A.4591|ICD10CM|Other secondary chronic gout, unspecified hip, with tophus|Other secondary chronic gout, unspecified hip, with tophus +C2894253|T047|PT|M1A.4591|ICD10CM|Other secondary chronic gout, unspecified hip, with tophus (tophi)|Other secondary chronic gout, unspecified hip, with tophus (tophi) +C2894420|T047|AB|M1A.46|ICD10CM|Other secondary chronic gout, knee|Other secondary chronic gout, knee +C2894420|T047|HT|M1A.46|ICD10CM|Other secondary chronic gout, knee|Other secondary chronic gout, knee +C2894421|T047|AB|M1A.461|ICD10CM|Other secondary chronic gout, right knee|Other secondary chronic gout, right knee +C2894421|T047|HT|M1A.461|ICD10CM|Other secondary chronic gout, right knee|Other secondary chronic gout, right knee +C2894254|T047|AB|M1A.4610|ICD10CM|Other secondary chronic gout, right knee, without tophus|Other secondary chronic gout, right knee, without tophus +C2894254|T047|PT|M1A.4610|ICD10CM|Other secondary chronic gout, right knee, without tophus (tophi)|Other secondary chronic gout, right knee, without tophus (tophi) +C2894255|T047|AB|M1A.4611|ICD10CM|Other secondary chronic gout, right knee, with tophus|Other secondary chronic gout, right knee, with tophus +C2894255|T047|PT|M1A.4611|ICD10CM|Other secondary chronic gout, right knee, with tophus (tophi)|Other secondary chronic gout, right knee, with tophus (tophi) +C2894422|T047|AB|M1A.462|ICD10CM|Other secondary chronic gout, left knee|Other secondary chronic gout, left knee +C2894422|T047|HT|M1A.462|ICD10CM|Other secondary chronic gout, left knee|Other secondary chronic gout, left knee +C2894256|T047|AB|M1A.4620|ICD10CM|Other secondary chronic gout, left knee, without tophus|Other secondary chronic gout, left knee, without tophus +C2894256|T047|PT|M1A.4620|ICD10CM|Other secondary chronic gout, left knee, without tophus (tophi)|Other secondary chronic gout, left knee, without tophus (tophi) +C2894257|T047|AB|M1A.4621|ICD10CM|Other secondary chronic gout, left knee, with tophus (tophi)|Other secondary chronic gout, left knee, with tophus (tophi) +C2894257|T047|PT|M1A.4621|ICD10CM|Other secondary chronic gout, left knee, with tophus (tophi)|Other secondary chronic gout, left knee, with tophus (tophi) +C2894423|T047|AB|M1A.469|ICD10CM|Other secondary chronic gout, unspecified knee|Other secondary chronic gout, unspecified knee +C2894423|T047|HT|M1A.469|ICD10CM|Other secondary chronic gout, unspecified knee|Other secondary chronic gout, unspecified knee +C2894258|T047|AB|M1A.4690|ICD10CM|Other secondary chronic gout, unsp knee, without tophus|Other secondary chronic gout, unsp knee, without tophus +C2894258|T047|PT|M1A.4690|ICD10CM|Other secondary chronic gout, unspecified knee, without tophus (tophi)|Other secondary chronic gout, unspecified knee, without tophus (tophi) +C2894259|T047|AB|M1A.4691|ICD10CM|Other secondary chronic gout, unspecified knee, with tophus|Other secondary chronic gout, unspecified knee, with tophus +C2894259|T047|PT|M1A.4691|ICD10CM|Other secondary chronic gout, unspecified knee, with tophus (tophi)|Other secondary chronic gout, unspecified knee, with tophus (tophi) +C2894424|T047|AB|M1A.47|ICD10CM|Other secondary chronic gout, ankle and foot|Other secondary chronic gout, ankle and foot +C2894424|T047|HT|M1A.47|ICD10CM|Other secondary chronic gout, ankle and foot|Other secondary chronic gout, ankle and foot +C2894425|T047|AB|M1A.471|ICD10CM|Other secondary chronic gout, right ankle and foot|Other secondary chronic gout, right ankle and foot +C2894425|T047|HT|M1A.471|ICD10CM|Other secondary chronic gout, right ankle and foot|Other secondary chronic gout, right ankle and foot +C2894260|T047|AB|M1A.4710|ICD10CM|Oth secondary chronic gout, right ankle and foot, w/o tophus|Oth secondary chronic gout, right ankle and foot, w/o tophus +C2894260|T047|PT|M1A.4710|ICD10CM|Other secondary chronic gout, right ankle and foot, without tophus (tophi)|Other secondary chronic gout, right ankle and foot, without tophus (tophi) +C2894261|T047|AB|M1A.4711|ICD10CM|Oth secondary chronic gout, right ankle and foot, w tophus|Oth secondary chronic gout, right ankle and foot, w tophus +C2894261|T047|PT|M1A.4711|ICD10CM|Other secondary chronic gout, right ankle and foot, with tophus (tophi)|Other secondary chronic gout, right ankle and foot, with tophus (tophi) +C2894426|T047|AB|M1A.472|ICD10CM|Other secondary chronic gout, left ankle and foot|Other secondary chronic gout, left ankle and foot +C2894426|T047|HT|M1A.472|ICD10CM|Other secondary chronic gout, left ankle and foot|Other secondary chronic gout, left ankle and foot +C2894262|T047|AB|M1A.4720|ICD10CM|Oth secondary chronic gout, left ankle and foot, w/o tophus|Oth secondary chronic gout, left ankle and foot, w/o tophus +C2894262|T047|PT|M1A.4720|ICD10CM|Other secondary chronic gout, left ankle and foot, without tophus (tophi)|Other secondary chronic gout, left ankle and foot, without tophus (tophi) +C2894263|T047|AB|M1A.4721|ICD10CM|Oth secondary chronic gout, left ankle and foot, with tophus|Oth secondary chronic gout, left ankle and foot, with tophus +C2894263|T047|PT|M1A.4721|ICD10CM|Other secondary chronic gout, left ankle and foot, with tophus (tophi)|Other secondary chronic gout, left ankle and foot, with tophus (tophi) +C2894427|T047|AB|M1A.479|ICD10CM|Other secondary chronic gout, unspecified ankle and foot|Other secondary chronic gout, unspecified ankle and foot +C2894427|T047|HT|M1A.479|ICD10CM|Other secondary chronic gout, unspecified ankle and foot|Other secondary chronic gout, unspecified ankle and foot +C2894264|T047|AB|M1A.4790|ICD10CM|Oth secondary chronic gout, unsp ankle and foot, w/o tophus|Oth secondary chronic gout, unsp ankle and foot, w/o tophus +C2894264|T047|PT|M1A.4790|ICD10CM|Other secondary chronic gout, unspecified ankle and foot, without tophus (tophi)|Other secondary chronic gout, unspecified ankle and foot, without tophus (tophi) +C2894265|T047|AB|M1A.4791|ICD10CM|Oth secondary chronic gout, unsp ankle and foot, with tophus|Oth secondary chronic gout, unsp ankle and foot, with tophus +C2894265|T047|PT|M1A.4791|ICD10CM|Other secondary chronic gout, unspecified ankle and foot, with tophus (tophi)|Other secondary chronic gout, unspecified ankle and foot, with tophus (tophi) +C2894428|T047|AB|M1A.48|ICD10CM|Other secondary chronic gout, vertebrae|Other secondary chronic gout, vertebrae +C2894428|T047|HT|M1A.48|ICD10CM|Other secondary chronic gout, vertebrae|Other secondary chronic gout, vertebrae +C2894266|T047|AB|M1A.48X0|ICD10CM|Other secondary chronic gout, vertebrae, without tophus|Other secondary chronic gout, vertebrae, without tophus +C2894266|T047|PT|M1A.48X0|ICD10CM|Other secondary chronic gout, vertebrae, without tophus (tophi)|Other secondary chronic gout, vertebrae, without tophus (tophi) +C2894267|T047|AB|M1A.48X1|ICD10CM|Other secondary chronic gout, vertebrae, with tophus (tophi)|Other secondary chronic gout, vertebrae, with tophus (tophi) +C2894267|T047|PT|M1A.48X1|ICD10CM|Other secondary chronic gout, vertebrae, with tophus (tophi)|Other secondary chronic gout, vertebrae, with tophus (tophi) +C2894429|T047|AB|M1A.49|ICD10CM|Other secondary chronic gout, multiple sites|Other secondary chronic gout, multiple sites +C2894429|T047|HT|M1A.49|ICD10CM|Other secondary chronic gout, multiple sites|Other secondary chronic gout, multiple sites +C2894268|T047|AB|M1A.49X0|ICD10CM|Other secondary chronic gout, multiple sites, without tophus|Other secondary chronic gout, multiple sites, without tophus +C2894268|T047|PT|M1A.49X0|ICD10CM|Other secondary chronic gout, multiple sites, without tophus (tophi)|Other secondary chronic gout, multiple sites, without tophus (tophi) +C2894269|T047|AB|M1A.49X1|ICD10CM|Other secondary chronic gout, multiple sites, with tophus|Other secondary chronic gout, multiple sites, with tophus +C2894269|T047|PT|M1A.49X1|ICD10CM|Other secondary chronic gout, multiple sites, with tophus (tophi)|Other secondary chronic gout, multiple sites, with tophus (tophi) +C2894430|T047|AB|M1A.9|ICD10CM|Chronic gout, unspecified|Chronic gout, unspecified +C2894430|T047|HT|M1A.9|ICD10CM|Chronic gout, unspecified|Chronic gout, unspecified +C2894270|T047|AB|M1A.9XX0|ICD10CM|Chronic gout, unspecified, without tophus (tophi)|Chronic gout, unspecified, without tophus (tophi) +C2894270|T047|PT|M1A.9XX0|ICD10CM|Chronic gout, unspecified, without tophus (tophi)|Chronic gout, unspecified, without tophus (tophi) +C2894271|T047|AB|M1A.9XX1|ICD10CM|Chronic gout, unspecified, with tophus (tophi)|Chronic gout, unspecified, with tophus (tophi) +C2894271|T047|PT|M1A.9XX1|ICD10CM|Chronic gout, unspecified, with tophus (tophi)|Chronic gout, unspecified, with tophus (tophi) +C0494922|T020|AB|M20|ICD10CM|Acquired deformities of fingers and toes|Acquired deformities of fingers and toes +C0494922|T020|HT|M20|ICD10CM|Acquired deformities of fingers and toes|Acquired deformities of fingers and toes +C0494922|T020|HT|M20|ICD10|Acquired deformities of fingers and toes|Acquired deformities of fingers and toes +C1442831|T047|HT|M20-M25|ICD10CM|Other joint disorders (M20-M25)|Other joint disorders (M20-M25) +C1442831|T047|HT|M20-M25.9|ICD10|Other joint disorders|Other joint disorders +C0410740|T020|PT|M20.0|ICD10|Deformity of finger(s)|Deformity of finger(s) +C0410740|T020|HT|M20.0|ICD10CM|Deformity of finger(s)|Deformity of finger(s) +C0410740|T020|AB|M20.0|ICD10CM|Deformity of finger(s)|Deformity of finger(s) +C0410740|T020|AB|M20.00|ICD10CM|Unspecified deformity of finger(s)|Unspecified deformity of finger(s) +C0410740|T020|HT|M20.00|ICD10CM|Unspecified deformity of finger(s)|Unspecified deformity of finger(s) +C2894431|T020|AB|M20.001|ICD10CM|Unspecified deformity of right finger(s)|Unspecified deformity of right finger(s) +C2894431|T020|PT|M20.001|ICD10CM|Unspecified deformity of right finger(s)|Unspecified deformity of right finger(s) +C2894432|T020|AB|M20.002|ICD10CM|Unspecified deformity of left finger(s)|Unspecified deformity of left finger(s) +C2894432|T020|PT|M20.002|ICD10CM|Unspecified deformity of left finger(s)|Unspecified deformity of left finger(s) +C0410740|T020|AB|M20.009|ICD10CM|Unspecified deformity of unspecified finger(s)|Unspecified deformity of unspecified finger(s) +C0410740|T020|PT|M20.009|ICD10CM|Unspecified deformity of unspecified finger(s)|Unspecified deformity of unspecified finger(s) +C0158473|T020|HT|M20.01|ICD10CM|Mallet finger|Mallet finger +C0158473|T020|AB|M20.01|ICD10CM|Mallet finger|Mallet finger +C2894433|T020|AB|M20.011|ICD10CM|Mallet finger of right finger(s)|Mallet finger of right finger(s) +C2894433|T020|PT|M20.011|ICD10CM|Mallet finger of right finger(s)|Mallet finger of right finger(s) +C2894434|T020|AB|M20.012|ICD10CM|Mallet finger of left finger(s)|Mallet finger of left finger(s) +C2894434|T020|PT|M20.012|ICD10CM|Mallet finger of left finger(s)|Mallet finger of left finger(s) +C2894435|T047|AB|M20.019|ICD10CM|Mallet finger of unspecified finger(s)|Mallet finger of unspecified finger(s) +C2894435|T047|PT|M20.019|ICD10CM|Mallet finger of unspecified finger(s)|Mallet finger of unspecified finger(s) +C0158476|T020|HT|M20.02|ICD10CM|Boutonnière deformity|Boutonnière deformity +C0158476|T020|AB|M20.02|ICD10CM|Boutonniere deformity|Boutonniere deformity +C2894436|T020|PT|M20.021|ICD10CM|Boutonnière deformity of right finger(s)|Boutonnière deformity of right finger(s) +C2894436|T020|AB|M20.021|ICD10CM|Boutonniere deformity of right finger(s)|Boutonniere deformity of right finger(s) +C2894437|T020|PT|M20.022|ICD10CM|Boutonnière deformity of left finger(s)|Boutonnière deformity of left finger(s) +C2894437|T020|AB|M20.022|ICD10CM|Boutonniere deformity of left finger(s)|Boutonniere deformity of left finger(s) +C2894438|T020|PT|M20.029|ICD10CM|Boutonnière deformity of unspecified finger(s)|Boutonnière deformity of unspecified finger(s) +C2894438|T020|AB|M20.029|ICD10CM|Boutonniere deformity of unspecified finger(s)|Boutonniere deformity of unspecified finger(s) +C0158477|T020|HT|M20.03|ICD10CM|Swan-neck deformity|Swan-neck deformity +C0158477|T020|AB|M20.03|ICD10CM|Swan-neck deformity|Swan-neck deformity +C2894439|T020|AB|M20.031|ICD10CM|Swan-neck deformity of right finger(s)|Swan-neck deformity of right finger(s) +C2894439|T020|PT|M20.031|ICD10CM|Swan-neck deformity of right finger(s)|Swan-neck deformity of right finger(s) +C2894440|T020|AB|M20.032|ICD10CM|Swan-neck deformity of left finger(s)|Swan-neck deformity of left finger(s) +C2894440|T020|PT|M20.032|ICD10CM|Swan-neck deformity of left finger(s)|Swan-neck deformity of left finger(s) +C0158477|T020|AB|M20.039|ICD10CM|Swan-neck deformity of unspecified finger(s)|Swan-neck deformity of unspecified finger(s) +C0158477|T020|PT|M20.039|ICD10CM|Swan-neck deformity of unspecified finger(s)|Swan-neck deformity of unspecified finger(s) +C2894443|T020|AB|M20.09|ICD10CM|Other deformity of finger(s)|Other deformity of finger(s) +C2894443|T020|HT|M20.09|ICD10CM|Other deformity of finger(s)|Other deformity of finger(s) +C2894441|T020|AB|M20.091|ICD10CM|Other deformity of right finger(s)|Other deformity of right finger(s) +C2894441|T020|PT|M20.091|ICD10CM|Other deformity of right finger(s)|Other deformity of right finger(s) +C2894442|T020|AB|M20.092|ICD10CM|Other deformity of left finger(s)|Other deformity of left finger(s) +C2894442|T020|PT|M20.092|ICD10CM|Other deformity of left finger(s)|Other deformity of left finger(s) +C2894443|T020|AB|M20.099|ICD10CM|Other deformity of finger(s), unspecified finger(s)|Other deformity of finger(s), unspecified finger(s) +C2894443|T020|PT|M20.099|ICD10CM|Other deformity of finger(s), unspecified finger(s)|Other deformity of finger(s), unspecified finger(s) +C0158458|T020|HT|M20.1|ICD10CM|Hallux valgus (acquired)|Hallux valgus (acquired) +C0158458|T020|AB|M20.1|ICD10CM|Hallux valgus (acquired)|Hallux valgus (acquired) +C0158458|T020|PT|M20.1|ICD10|Hallux valgus (acquired)|Hallux valgus (acquired) +C0158458|T020|AB|M20.10|ICD10CM|Hallux valgus (acquired), unspecified foot|Hallux valgus (acquired), unspecified foot +C0158458|T020|PT|M20.10|ICD10CM|Hallux valgus (acquired), unspecified foot|Hallux valgus (acquired), unspecified foot +C2894444|T020|AB|M20.11|ICD10CM|Hallux valgus (acquired), right foot|Hallux valgus (acquired), right foot +C2894444|T020|PT|M20.11|ICD10CM|Hallux valgus (acquired), right foot|Hallux valgus (acquired), right foot +C2103760|T020|AB|M20.12|ICD10CM|Hallux valgus (acquired), left foot|Hallux valgus (acquired), left foot +C2103760|T020|PT|M20.12|ICD10CM|Hallux valgus (acquired), left foot|Hallux valgus (acquired), left foot +C0264134|T047|PT|M20.2|ICD10|Hallux rigidus|Hallux rigidus +C0264134|T047|HT|M20.2|ICD10CM|Hallux rigidus|Hallux rigidus +C0264134|T047|AB|M20.2|ICD10CM|Hallux rigidus|Hallux rigidus +C2894446|T020|AB|M20.20|ICD10CM|Hallux rigidus, unspecified foot|Hallux rigidus, unspecified foot +C2894446|T020|PT|M20.20|ICD10CM|Hallux rigidus, unspecified foot|Hallux rigidus, unspecified foot +C2028365|T020|AB|M20.21|ICD10CM|Hallux rigidus, right foot|Hallux rigidus, right foot +C2028365|T020|PT|M20.21|ICD10CM|Hallux rigidus, right foot|Hallux rigidus, right foot +C2028364|T020|AB|M20.22|ICD10CM|Hallux rigidus, left foot|Hallux rigidus, left foot +C2028364|T020|PT|M20.22|ICD10CM|Hallux rigidus, left foot|Hallux rigidus, left foot +C0866710|T020|HT|M20.3|ICD10CM|Hallux varus (acquired)|Hallux varus (acquired) +C0866710|T020|AB|M20.3|ICD10CM|Hallux varus (acquired)|Hallux varus (acquired) +C0477571|T020|PT|M20.3|ICD10|Other deformity of hallux (acquired)|Other deformity of hallux (acquired) +C2894447|T020|AB|M20.30|ICD10CM|Hallux varus (acquired), unspecified foot|Hallux varus (acquired), unspecified foot +C2894447|T020|PT|M20.30|ICD10CM|Hallux varus (acquired), unspecified foot|Hallux varus (acquired), unspecified foot +C2894448|T020|AB|M20.31|ICD10CM|Hallux varus (acquired), right foot|Hallux varus (acquired), right foot +C2894448|T020|PT|M20.31|ICD10CM|Hallux varus (acquired), right foot|Hallux varus (acquired), right foot +C2894449|T020|AB|M20.32|ICD10CM|Hallux varus (acquired), left foot|Hallux varus (acquired), left foot +C2894449|T020|PT|M20.32|ICD10CM|Hallux varus (acquired), left foot|Hallux varus (acquired), left foot +C0477572|T020|PT|M20.4|ICD10|Other hammer toe(s) (acquired)|Other hammer toe(s) (acquired) +C0477572|T020|HT|M20.4|ICD10CM|Other hammer toe(s) (acquired)|Other hammer toe(s) (acquired) +C0477572|T020|AB|M20.4|ICD10CM|Other hammer toe(s) (acquired)|Other hammer toe(s) (acquired) +C0477572|T020|AB|M20.40|ICD10CM|Other hammer toe(s) (acquired), unspecified foot|Other hammer toe(s) (acquired), unspecified foot +C0477572|T020|PT|M20.40|ICD10CM|Other hammer toe(s) (acquired), unspecified foot|Other hammer toe(s) (acquired), unspecified foot +C2894450|T020|AB|M20.41|ICD10CM|Other hammer toe(s) (acquired), right foot|Other hammer toe(s) (acquired), right foot +C2894450|T020|PT|M20.41|ICD10CM|Other hammer toe(s) (acquired), right foot|Other hammer toe(s) (acquired), right foot +C2894451|T020|AB|M20.42|ICD10CM|Other hammer toe(s) (acquired), left foot|Other hammer toe(s) (acquired), left foot +C2894451|T020|PT|M20.42|ICD10CM|Other hammer toe(s) (acquired), left foot|Other hammer toe(s) (acquired), left foot +C0477573|T020|HT|M20.5|ICD10CM|Other deformities of toe(s) (acquired)|Other deformities of toe(s) (acquired) +C0477573|T020|AB|M20.5|ICD10CM|Other deformities of toe(s) (acquired)|Other deformities of toe(s) (acquired) +C0477573|T020|PT|M20.5|ICD10|Other deformities of toe(s) (acquired)|Other deformities of toe(s) (acquired) +C0477573|T020|HT|M20.5X|ICD10CM|Other deformities of toe(s) (acquired)|Other deformities of toe(s) (acquired) +C0477573|T020|AB|M20.5X|ICD10CM|Other deformities of toe(s) (acquired)|Other deformities of toe(s) (acquired) +C2894452|T020|AB|M20.5X1|ICD10CM|Other deformities of toe(s) (acquired), right foot|Other deformities of toe(s) (acquired), right foot +C2894452|T020|PT|M20.5X1|ICD10CM|Other deformities of toe(s) (acquired), right foot|Other deformities of toe(s) (acquired), right foot +C2894453|T020|AB|M20.5X2|ICD10CM|Other deformities of toe(s) (acquired), left foot|Other deformities of toe(s) (acquired), left foot +C2894453|T020|PT|M20.5X2|ICD10CM|Other deformities of toe(s) (acquired), left foot|Other deformities of toe(s) (acquired), left foot +C0477573|T020|AB|M20.5X9|ICD10CM|Other deformities of toe(s) (acquired), unspecified foot|Other deformities of toe(s) (acquired), unspecified foot +C0477573|T020|PT|M20.5X9|ICD10CM|Other deformities of toe(s) (acquired), unspecified foot|Other deformities of toe(s) (acquired), unspecified foot +C0158457|T020|AB|M20.6|ICD10CM|Acquired deformities of toe(s), unspecified|Acquired deformities of toe(s), unspecified +C0158457|T020|HT|M20.6|ICD10CM|Acquired deformities of toe(s), unspecified|Acquired deformities of toe(s), unspecified +C0158457|T020|PT|M20.6|ICD10|Acquired deformity of toe(s), unspecified|Acquired deformity of toe(s), unspecified +C2894454|T020|AB|M20.60|ICD10CM|Acquired deformities of toe(s), unsp, unspecified foot|Acquired deformities of toe(s), unsp, unspecified foot +C2894454|T020|PT|M20.60|ICD10CM|Acquired deformities of toe(s), unspecified, unspecified foot|Acquired deformities of toe(s), unspecified, unspecified foot +C2894455|T020|AB|M20.61|ICD10CM|Acquired deformities of toe(s), unspecified, right foot|Acquired deformities of toe(s), unspecified, right foot +C2894455|T020|PT|M20.61|ICD10CM|Acquired deformities of toe(s), unspecified, right foot|Acquired deformities of toe(s), unspecified, right foot +C2894456|T020|AB|M20.62|ICD10CM|Acquired deformities of toe(s), unspecified, left foot|Acquired deformities of toe(s), unspecified, left foot +C2894456|T020|PT|M20.62|ICD10CM|Acquired deformities of toe(s), unspecified, left foot|Acquired deformities of toe(s), unspecified, left foot +C0158463|T020|HT|M21|ICD10|Other acquired deformities of limbs|Other acquired deformities of limbs +C0158463|T020|HT|M21|ICD10CM|Other acquired deformities of limbs|Other acquired deformities of limbs +C0158463|T020|AB|M21|ICD10CM|Other acquired deformities of limbs|Other acquired deformities of limbs +C0494925|T020|PT|M21.0|ICD10|Valgus deformity, not elsewhere classified|Valgus deformity, not elsewhere classified +C0494925|T020|HT|M21.0|ICD10CM|Valgus deformity, not elsewhere classified|Valgus deformity, not elsewhere classified +C0494925|T020|AB|M21.0|ICD10CM|Valgus deformity, not elsewhere classified|Valgus deformity, not elsewhere classified +C0838007|T020|AB|M21.00|ICD10CM|Valgus deformity, not elsewhere classified, unspecified site|Valgus deformity, not elsewhere classified, unspecified site +C0838007|T020|PT|M21.00|ICD10CM|Valgus deformity, not elsewhere classified, unspecified site|Valgus deformity, not elsewhere classified, unspecified site +C0158465|T020|ET|M21.02|ICD10CM|Cubitus valgus|Cubitus valgus +C2894459|T190|AB|M21.02|ICD10CM|Valgus deformity, not elsewhere classified, elbow|Valgus deformity, not elsewhere classified, elbow +C2894459|T190|HT|M21.02|ICD10CM|Valgus deformity, not elsewhere classified, elbow|Valgus deformity, not elsewhere classified, elbow +C2894457|T190|AB|M21.021|ICD10CM|Valgus deformity, not elsewhere classified, right elbow|Valgus deformity, not elsewhere classified, right elbow +C2894457|T190|PT|M21.021|ICD10CM|Valgus deformity, not elsewhere classified, right elbow|Valgus deformity, not elsewhere classified, right elbow +C2894458|T190|AB|M21.022|ICD10CM|Valgus deformity, not elsewhere classified, left elbow|Valgus deformity, not elsewhere classified, left elbow +C2894458|T190|PT|M21.022|ICD10CM|Valgus deformity, not elsewhere classified, left elbow|Valgus deformity, not elsewhere classified, left elbow +C2894459|T190|AB|M21.029|ICD10CM|Valgus deformity, not elsewhere classified, unsp elbow|Valgus deformity, not elsewhere classified, unsp elbow +C2894459|T190|PT|M21.029|ICD10CM|Valgus deformity, not elsewhere classified, unspecified elbow|Valgus deformity, not elsewhere classified, unspecified elbow +C3264466|T020|AB|M21.05|ICD10CM|Valgus deformity, not elsewhere classified, hip|Valgus deformity, not elsewhere classified, hip +C3264466|T020|HT|M21.05|ICD10CM|Valgus deformity, not elsewhere classified, hip|Valgus deformity, not elsewhere classified, hip +C3264467|T020|AB|M21.051|ICD10CM|Valgus deformity, not elsewhere classified, right hip|Valgus deformity, not elsewhere classified, right hip +C3264467|T020|PT|M21.051|ICD10CM|Valgus deformity, not elsewhere classified, right hip|Valgus deformity, not elsewhere classified, right hip +C3264468|T020|AB|M21.052|ICD10CM|Valgus deformity, not elsewhere classified, left hip|Valgus deformity, not elsewhere classified, left hip +C3264468|T020|PT|M21.052|ICD10CM|Valgus deformity, not elsewhere classified, left hip|Valgus deformity, not elsewhere classified, left hip +C3264469|T020|AB|M21.059|ICD10CM|Valgus deformity, not elsewhere classified, unspecified hip|Valgus deformity, not elsewhere classified, unspecified hip +C3264469|T020|PT|M21.059|ICD10CM|Valgus deformity, not elsewhere classified, unspecified hip|Valgus deformity, not elsewhere classified, unspecified hip +C0576093|T190|ET|M21.06|ICD10CM|Genu valgum|Genu valgum +C0576093|T190|ET|M21.06|ICD10CM|Knock knee|Knock knee +C2894462|T190|AB|M21.06|ICD10CM|Valgus deformity, not elsewhere classified, knee|Valgus deformity, not elsewhere classified, knee +C2894462|T190|HT|M21.06|ICD10CM|Valgus deformity, not elsewhere classified, knee|Valgus deformity, not elsewhere classified, knee +C2894460|T190|AB|M21.061|ICD10CM|Valgus deformity, not elsewhere classified, right knee|Valgus deformity, not elsewhere classified, right knee +C2894460|T190|PT|M21.061|ICD10CM|Valgus deformity, not elsewhere classified, right knee|Valgus deformity, not elsewhere classified, right knee +C2894461|T190|AB|M21.062|ICD10CM|Valgus deformity, not elsewhere classified, left knee|Valgus deformity, not elsewhere classified, left knee +C2894461|T190|PT|M21.062|ICD10CM|Valgus deformity, not elsewhere classified, left knee|Valgus deformity, not elsewhere classified, left knee +C2894462|T190|AB|M21.069|ICD10CM|Valgus deformity, not elsewhere classified, unspecified knee|Valgus deformity, not elsewhere classified, unspecified knee +C2894462|T190|PT|M21.069|ICD10CM|Valgus deformity, not elsewhere classified, unspecified knee|Valgus deformity, not elsewhere classified, unspecified knee +C2894465|T190|AB|M21.07|ICD10CM|Valgus deformity, not elsewhere classified, ankle|Valgus deformity, not elsewhere classified, ankle +C2894465|T190|HT|M21.07|ICD10CM|Valgus deformity, not elsewhere classified, ankle|Valgus deformity, not elsewhere classified, ankle +C2894463|T190|AB|M21.071|ICD10CM|Valgus deformity, not elsewhere classified, right ankle|Valgus deformity, not elsewhere classified, right ankle +C2894463|T190|PT|M21.071|ICD10CM|Valgus deformity, not elsewhere classified, right ankle|Valgus deformity, not elsewhere classified, right ankle +C2894464|T190|AB|M21.072|ICD10CM|Valgus deformity, not elsewhere classified, left ankle|Valgus deformity, not elsewhere classified, left ankle +C2894464|T190|PT|M21.072|ICD10CM|Valgus deformity, not elsewhere classified, left ankle|Valgus deformity, not elsewhere classified, left ankle +C2894465|T190|AB|M21.079|ICD10CM|Valgus deformity, not elsewhere classified, unsp ankle|Valgus deformity, not elsewhere classified, unsp ankle +C2894465|T190|PT|M21.079|ICD10CM|Valgus deformity, not elsewhere classified, unspecified ankle|Valgus deformity, not elsewhere classified, unspecified ankle +C0494926|T020|HT|M21.1|ICD10CM|Varus deformity, not elsewhere classified|Varus deformity, not elsewhere classified +C0494926|T020|AB|M21.1|ICD10CM|Varus deformity, not elsewhere classified|Varus deformity, not elsewhere classified +C0494926|T020|PT|M21.1|ICD10|Varus deformity, not elsewhere classified|Varus deformity, not elsewhere classified +C0838015|T020|AB|M21.10|ICD10CM|Varus deformity, not elsewhere classified, unspecified site|Varus deformity, not elsewhere classified, unspecified site +C0838015|T020|PT|M21.10|ICD10CM|Varus deformity, not elsewhere classified, unspecified site|Varus deformity, not elsewhere classified, unspecified site +C2894466|T190|ET|M21.12|ICD10CM|Cubitus varus, elbow|Cubitus varus, elbow +C2894469|T190|AB|M21.12|ICD10CM|Varus deformity, not elsewhere classified, elbow|Varus deformity, not elsewhere classified, elbow +C2894469|T190|HT|M21.12|ICD10CM|Varus deformity, not elsewhere classified, elbow|Varus deformity, not elsewhere classified, elbow +C2894467|T190|AB|M21.121|ICD10CM|Varus deformity, not elsewhere classified, right elbow|Varus deformity, not elsewhere classified, right elbow +C2894467|T190|PT|M21.121|ICD10CM|Varus deformity, not elsewhere classified, right elbow|Varus deformity, not elsewhere classified, right elbow +C2894468|T190|AB|M21.122|ICD10CM|Varus deformity, not elsewhere classified, left elbow|Varus deformity, not elsewhere classified, left elbow +C2894468|T190|PT|M21.122|ICD10CM|Varus deformity, not elsewhere classified, left elbow|Varus deformity, not elsewhere classified, left elbow +C2894469|T190|AB|M21.129|ICD10CM|Varus deformity, not elsewhere classified, unspecified elbow|Varus deformity, not elsewhere classified, unspecified elbow +C2894469|T190|PT|M21.129|ICD10CM|Varus deformity, not elsewhere classified, unspecified elbow|Varus deformity, not elsewhere classified, unspecified elbow +C3264470|T020|AB|M21.15|ICD10CM|Varus deformity, not elsewhere classified, hip|Varus deformity, not elsewhere classified, hip +C3264470|T020|HT|M21.15|ICD10CM|Varus deformity, not elsewhere classified, hip|Varus deformity, not elsewhere classified, hip +C3264471|T020|AB|M21.151|ICD10CM|Varus deformity, not elsewhere classified, right hip|Varus deformity, not elsewhere classified, right hip +C3264471|T020|PT|M21.151|ICD10CM|Varus deformity, not elsewhere classified, right hip|Varus deformity, not elsewhere classified, right hip +C3264472|T020|AB|M21.152|ICD10CM|Varus deformity, not elsewhere classified, left hip|Varus deformity, not elsewhere classified, left hip +C3264472|T020|PT|M21.152|ICD10CM|Varus deformity, not elsewhere classified, left hip|Varus deformity, not elsewhere classified, left hip +C3264473|T020|AB|M21.159|ICD10CM|Varus deformity, not elsewhere classified, unspecified|Varus deformity, not elsewhere classified, unspecified +C3264473|T020|PT|M21.159|ICD10CM|Varus deformity, not elsewhere classified, unspecified|Varus deformity, not elsewhere classified, unspecified +C0544755|T033|ET|M21.16|ICD10CM|Bow leg|Bow leg +C0544755|T033|ET|M21.16|ICD10CM|Genu varum|Genu varum +C2894472|T190|AB|M21.16|ICD10CM|Varus deformity, not elsewhere classified, knee|Varus deformity, not elsewhere classified, knee +C2894472|T190|HT|M21.16|ICD10CM|Varus deformity, not elsewhere classified, knee|Varus deformity, not elsewhere classified, knee +C2894470|T190|AB|M21.161|ICD10CM|Varus deformity, not elsewhere classified, right knee|Varus deformity, not elsewhere classified, right knee +C2894470|T190|PT|M21.161|ICD10CM|Varus deformity, not elsewhere classified, right knee|Varus deformity, not elsewhere classified, right knee +C2894471|T190|AB|M21.162|ICD10CM|Varus deformity, not elsewhere classified, left knee|Varus deformity, not elsewhere classified, left knee +C2894471|T190|PT|M21.162|ICD10CM|Varus deformity, not elsewhere classified, left knee|Varus deformity, not elsewhere classified, left knee +C2894472|T190|AB|M21.169|ICD10CM|Varus deformity, not elsewhere classified, unspecified knee|Varus deformity, not elsewhere classified, unspecified knee +C2894472|T190|PT|M21.169|ICD10CM|Varus deformity, not elsewhere classified, unspecified knee|Varus deformity, not elsewhere classified, unspecified knee +C2894475|T190|AB|M21.17|ICD10CM|Varus deformity, not elsewhere classified, ankle|Varus deformity, not elsewhere classified, ankle +C2894475|T190|HT|M21.17|ICD10CM|Varus deformity, not elsewhere classified, ankle|Varus deformity, not elsewhere classified, ankle +C2894473|T190|AB|M21.171|ICD10CM|Varus deformity, not elsewhere classified, right ankle|Varus deformity, not elsewhere classified, right ankle +C2894473|T190|PT|M21.171|ICD10CM|Varus deformity, not elsewhere classified, right ankle|Varus deformity, not elsewhere classified, right ankle +C2894474|T190|AB|M21.172|ICD10CM|Varus deformity, not elsewhere classified, left ankle|Varus deformity, not elsewhere classified, left ankle +C2894474|T190|PT|M21.172|ICD10CM|Varus deformity, not elsewhere classified, left ankle|Varus deformity, not elsewhere classified, left ankle +C2894475|T190|AB|M21.179|ICD10CM|Varus deformity, not elsewhere classified, unspecified ankle|Varus deformity, not elsewhere classified, unspecified ankle +C2894475|T190|PT|M21.179|ICD10CM|Varus deformity, not elsewhere classified, unspecified ankle|Varus deformity, not elsewhere classified, unspecified ankle +C0333068|T190|PT|M21.2|ICD10|Flexion deformity|Flexion deformity +C0333068|T190|HT|M21.2|ICD10CM|Flexion deformity|Flexion deformity +C0333068|T190|AB|M21.2|ICD10CM|Flexion deformity|Flexion deformity +C0333068|T190|AB|M21.20|ICD10CM|Flexion deformity, unspecified site|Flexion deformity, unspecified site +C0333068|T190|PT|M21.20|ICD10CM|Flexion deformity, unspecified site|Flexion deformity, unspecified site +C2894478|T190|AB|M21.21|ICD10CM|Flexion deformity, shoulder|Flexion deformity, shoulder +C2894478|T190|HT|M21.21|ICD10CM|Flexion deformity, shoulder|Flexion deformity, shoulder +C2894476|T190|AB|M21.211|ICD10CM|Flexion deformity, right shoulder|Flexion deformity, right shoulder +C2894476|T190|PT|M21.211|ICD10CM|Flexion deformity, right shoulder|Flexion deformity, right shoulder +C2894477|T190|AB|M21.212|ICD10CM|Flexion deformity, left shoulder|Flexion deformity, left shoulder +C2894477|T190|PT|M21.212|ICD10CM|Flexion deformity, left shoulder|Flexion deformity, left shoulder +C2894478|T190|AB|M21.219|ICD10CM|Flexion deformity, unspecified shoulder|Flexion deformity, unspecified shoulder +C2894478|T190|PT|M21.219|ICD10CM|Flexion deformity, unspecified shoulder|Flexion deformity, unspecified shoulder +C0409338|T020|AB|M21.22|ICD10CM|Flexion deformity, elbow|Flexion deformity, elbow +C0409338|T020|HT|M21.22|ICD10CM|Flexion deformity, elbow|Flexion deformity, elbow +C2894479|T020|AB|M21.221|ICD10CM|Flexion deformity, right elbow|Flexion deformity, right elbow +C2894479|T020|PT|M21.221|ICD10CM|Flexion deformity, right elbow|Flexion deformity, right elbow +C2894480|T020|AB|M21.222|ICD10CM|Flexion deformity, left elbow|Flexion deformity, left elbow +C2894480|T020|PT|M21.222|ICD10CM|Flexion deformity, left elbow|Flexion deformity, left elbow +C2894481|T020|AB|M21.229|ICD10CM|Flexion deformity, unspecified elbow|Flexion deformity, unspecified elbow +C2894481|T020|PT|M21.229|ICD10CM|Flexion deformity, unspecified elbow|Flexion deformity, unspecified elbow +C0409345|T020|AB|M21.23|ICD10CM|Flexion deformity, wrist|Flexion deformity, wrist +C0409345|T020|HT|M21.23|ICD10CM|Flexion deformity, wrist|Flexion deformity, wrist +C2894482|T020|AB|M21.231|ICD10CM|Flexion deformity, right wrist|Flexion deformity, right wrist +C2894482|T020|PT|M21.231|ICD10CM|Flexion deformity, right wrist|Flexion deformity, right wrist +C2894483|T020|AB|M21.232|ICD10CM|Flexion deformity, left wrist|Flexion deformity, left wrist +C2894483|T020|PT|M21.232|ICD10CM|Flexion deformity, left wrist|Flexion deformity, left wrist +C2894484|T020|AB|M21.239|ICD10CM|Flexion deformity, unspecified wrist|Flexion deformity, unspecified wrist +C2894484|T020|PT|M21.239|ICD10CM|Flexion deformity, unspecified wrist|Flexion deformity, unspecified wrist +C2894487|T190|AB|M21.24|ICD10CM|Flexion deformity, finger joints|Flexion deformity, finger joints +C2894487|T190|HT|M21.24|ICD10CM|Flexion deformity, finger joints|Flexion deformity, finger joints +C2894485|T190|AB|M21.241|ICD10CM|Flexion deformity, right finger joints|Flexion deformity, right finger joints +C2894485|T190|PT|M21.241|ICD10CM|Flexion deformity, right finger joints|Flexion deformity, right finger joints +C2894486|T190|AB|M21.242|ICD10CM|Flexion deformity, left finger joints|Flexion deformity, left finger joints +C2894486|T190|PT|M21.242|ICD10CM|Flexion deformity, left finger joints|Flexion deformity, left finger joints +C2894487|T190|AB|M21.249|ICD10CM|Flexion deformity, unspecified finger joints|Flexion deformity, unspecified finger joints +C2894487|T190|PT|M21.249|ICD10CM|Flexion deformity, unspecified finger joints|Flexion deformity, unspecified finger joints +C1853572|T190|AB|M21.25|ICD10CM|Flexion deformity, hip|Flexion deformity, hip +C1853572|T190|HT|M21.25|ICD10CM|Flexion deformity, hip|Flexion deformity, hip +C2894488|T020|AB|M21.251|ICD10CM|Flexion deformity, right hip|Flexion deformity, right hip +C2894488|T020|PT|M21.251|ICD10CM|Flexion deformity, right hip|Flexion deformity, right hip +C2894489|T020|AB|M21.252|ICD10CM|Flexion deformity, left hip|Flexion deformity, left hip +C2894489|T020|PT|M21.252|ICD10CM|Flexion deformity, left hip|Flexion deformity, left hip +C2894490|T020|AB|M21.259|ICD10CM|Flexion deformity, unspecified hip|Flexion deformity, unspecified hip +C2894490|T020|PT|M21.259|ICD10CM|Flexion deformity, unspecified hip|Flexion deformity, unspecified hip +C3887616|T020|AB|M21.26|ICD10CM|Flexion deformity, knee|Flexion deformity, knee +C3887616|T020|HT|M21.26|ICD10CM|Flexion deformity, knee|Flexion deformity, knee +C2894491|T020|AB|M21.261|ICD10CM|Flexion deformity, right knee|Flexion deformity, right knee +C2894491|T020|PT|M21.261|ICD10CM|Flexion deformity, right knee|Flexion deformity, right knee +C2894492|T020|AB|M21.262|ICD10CM|Flexion deformity, left knee|Flexion deformity, left knee +C2894492|T020|PT|M21.262|ICD10CM|Flexion deformity, left knee|Flexion deformity, left knee +C2894493|T020|AB|M21.269|ICD10CM|Flexion deformity, unspecified knee|Flexion deformity, unspecified knee +C2894493|T020|PT|M21.269|ICD10CM|Flexion deformity, unspecified knee|Flexion deformity, unspecified knee +C2894496|T190|AB|M21.27|ICD10CM|Flexion deformity, ankle and toes|Flexion deformity, ankle and toes +C2894496|T190|HT|M21.27|ICD10CM|Flexion deformity, ankle and toes|Flexion deformity, ankle and toes +C2894494|T190|AB|M21.271|ICD10CM|Flexion deformity, right ankle and toes|Flexion deformity, right ankle and toes +C2894494|T190|PT|M21.271|ICD10CM|Flexion deformity, right ankle and toes|Flexion deformity, right ankle and toes +C2894495|T190|AB|M21.272|ICD10CM|Flexion deformity, left ankle and toes|Flexion deformity, left ankle and toes +C2894495|T190|PT|M21.272|ICD10CM|Flexion deformity, left ankle and toes|Flexion deformity, left ankle and toes +C2894496|T190|AB|M21.279|ICD10CM|Flexion deformity, unspecified ankle and toes|Flexion deformity, unspecified ankle and toes +C2894496|T190|PT|M21.279|ICD10CM|Flexion deformity, unspecified ankle and toes|Flexion deformity, unspecified ankle and toes +C0494927|T020|HT|M21.3|ICD10CM|Wrist or foot drop (acquired)|Wrist or foot drop (acquired) +C0494927|T020|AB|M21.3|ICD10CM|Wrist or foot drop (acquired)|Wrist or foot drop (acquired) +C0494927|T020|PT|M21.3|ICD10|Wrist or foot drop (acquired)|Wrist or foot drop (acquired) +C0231666|T033|HT|M21.33|ICD10CM|Wrist drop (acquired)|Wrist drop (acquired) +C0231666|T033|AB|M21.33|ICD10CM|Wrist drop (acquired)|Wrist drop (acquired) +C2894497|T020|AB|M21.331|ICD10CM|Wrist drop, right wrist|Wrist drop, right wrist +C2894497|T020|PT|M21.331|ICD10CM|Wrist drop, right wrist|Wrist drop, right wrist +C2894498|T020|AB|M21.332|ICD10CM|Wrist drop, left wrist|Wrist drop, left wrist +C2894498|T020|PT|M21.332|ICD10CM|Wrist drop, left wrist|Wrist drop, left wrist +C0231666|T033|AB|M21.339|ICD10CM|Wrist drop, unspecified wrist|Wrist drop, unspecified wrist +C0231666|T033|PT|M21.339|ICD10CM|Wrist drop, unspecified wrist|Wrist drop, unspecified wrist +C2894499|T020|AB|M21.37|ICD10CM|Foot drop (acquired)|Foot drop (acquired) +C2894499|T020|HT|M21.37|ICD10CM|Foot drop (acquired)|Foot drop (acquired) +C2894500|T020|AB|M21.371|ICD10CM|Foot drop, right foot|Foot drop, right foot +C2894500|T020|PT|M21.371|ICD10CM|Foot drop, right foot|Foot drop, right foot +C2894501|T020|AB|M21.372|ICD10CM|Foot drop, left foot|Foot drop, left foot +C2894501|T020|PT|M21.372|ICD10CM|Foot drop, left foot|Foot drop, left foot +C2894502|T020|AB|M21.379|ICD10CM|Foot drop, unspecified foot|Foot drop, unspecified foot +C2894502|T020|PT|M21.379|ICD10CM|Foot drop, unspecified foot|Foot drop, unspecified foot +C0264133|T020|HT|M21.4|ICD10CM|Flat foot [pes planus] (acquired)|Flat foot [pes planus] (acquired) +C0264133|T020|AB|M21.4|ICD10CM|Flat foot [pes planus] (acquired)|Flat foot [pes planus] (acquired) +C0264133|T020|PT|M21.4|ICD10|Flat foot [pes planus] (acquired)|Flat foot [pes planus] (acquired) +C2894503|T020|AB|M21.40|ICD10CM|Flat foot [pes planus] (acquired), unspecified foot|Flat foot [pes planus] (acquired), unspecified foot +C2894503|T020|PT|M21.40|ICD10CM|Flat foot [pes planus] (acquired), unspecified foot|Flat foot [pes planus] (acquired), unspecified foot +C2894504|T020|AB|M21.41|ICD10CM|Flat foot [pes planus] (acquired), right foot|Flat foot [pes planus] (acquired), right foot +C2894504|T020|PT|M21.41|ICD10CM|Flat foot [pes planus] (acquired), right foot|Flat foot [pes planus] (acquired), right foot +C2894505|T020|AB|M21.42|ICD10CM|Flat foot [pes planus] (acquired), left foot|Flat foot [pes planus] (acquired), left foot +C2894505|T020|PT|M21.42|ICD10CM|Flat foot [pes planus] (acquired), left foot|Flat foot [pes planus] (acquired), left foot +C0494929|T020|PT|M21.5|ICD10|Acquired clawhand, clubhand, clawfoot and clubfoot|Acquired clawhand, clubhand, clawfoot and clubfoot +C0494929|T020|HT|M21.5|ICD10CM|Acquired clawhand, clubhand, clawfoot and clubfoot|Acquired clawhand, clubhand, clawfoot and clubfoot +C0494929|T020|AB|M21.5|ICD10CM|Acquired clawhand, clubhand, clawfoot and clubfoot|Acquired clawhand, clubhand, clawfoot and clubfoot +C2894506|T020|AB|M21.51|ICD10CM|Acquired clawhand|Acquired clawhand +C2894506|T020|HT|M21.51|ICD10CM|Acquired clawhand|Acquired clawhand +C2894507|T020|AB|M21.511|ICD10CM|Acquired clawhand, right hand|Acquired clawhand, right hand +C2894507|T020|PT|M21.511|ICD10CM|Acquired clawhand, right hand|Acquired clawhand, right hand +C2894508|T020|AB|M21.512|ICD10CM|Acquired clawhand, left hand|Acquired clawhand, left hand +C2894508|T020|PT|M21.512|ICD10CM|Acquired clawhand, left hand|Acquired clawhand, left hand +C2894509|T020|AB|M21.519|ICD10CM|Acquired clawhand, unspecified hand|Acquired clawhand, unspecified hand +C2894509|T020|PT|M21.519|ICD10CM|Acquired clawhand, unspecified hand|Acquired clawhand, unspecified hand +C0158471|T020|HT|M21.52|ICD10CM|Acquired clubhand|Acquired clubhand +C0158471|T020|AB|M21.52|ICD10CM|Acquired clubhand|Acquired clubhand +C2894510|T020|AB|M21.521|ICD10CM|Acquired clubhand, right hand|Acquired clubhand, right hand +C2894510|T020|PT|M21.521|ICD10CM|Acquired clubhand, right hand|Acquired clubhand, right hand +C2894511|T020|AB|M21.522|ICD10CM|Acquired clubhand, left hand|Acquired clubhand, left hand +C2894511|T020|PT|M21.522|ICD10CM|Acquired clubhand, left hand|Acquired clubhand, left hand +C2894512|T020|AB|M21.529|ICD10CM|Acquired clubhand, unspecified hand|Acquired clubhand, unspecified hand +C2894512|T020|PT|M21.529|ICD10CM|Acquired clubhand, unspecified hand|Acquired clubhand, unspecified hand +C0158461|T020|AB|M21.53|ICD10CM|Acquired clawfoot|Acquired clawfoot +C0158461|T020|HT|M21.53|ICD10CM|Acquired clawfoot|Acquired clawfoot +C2894513|T020|AB|M21.531|ICD10CM|Acquired clawfoot, right foot|Acquired clawfoot, right foot +C2894513|T020|PT|M21.531|ICD10CM|Acquired clawfoot, right foot|Acquired clawfoot, right foot +C2894514|T020|AB|M21.532|ICD10CM|Acquired clawfoot, left foot|Acquired clawfoot, left foot +C2894514|T020|PT|M21.532|ICD10CM|Acquired clawfoot, left foot|Acquired clawfoot, left foot +C2894515|T020|AB|M21.539|ICD10CM|Acquired clawfoot, unspecified foot|Acquired clawfoot, unspecified foot +C2894515|T020|PT|M21.539|ICD10CM|Acquired clawfoot, unspecified foot|Acquired clawfoot, unspecified foot +C0158489|T020|HT|M21.54|ICD10CM|Acquired clubfoot|Acquired clubfoot +C0158489|T020|AB|M21.54|ICD10CM|Acquired clubfoot|Acquired clubfoot +C2894516|T020|AB|M21.541|ICD10CM|Acquired clubfoot, right foot|Acquired clubfoot, right foot +C2894516|T020|PT|M21.541|ICD10CM|Acquired clubfoot, right foot|Acquired clubfoot, right foot +C2894517|T020|AB|M21.542|ICD10CM|Acquired clubfoot, left foot|Acquired clubfoot, left foot +C2894517|T020|PT|M21.542|ICD10CM|Acquired clubfoot, left foot|Acquired clubfoot, left foot +C2894518|T020|AB|M21.549|ICD10CM|Acquired clubfoot, unspecified foot|Acquired clubfoot, unspecified foot +C2894518|T020|PT|M21.549|ICD10CM|Acquired clubfoot, unspecified foot|Acquired clubfoot, unspecified foot +C0158488|T020|PT|M21.6|ICD10|Other acquired deformities of ankle and foot|Other acquired deformities of ankle and foot +C2894519|T020|AB|M21.6|ICD10CM|Other acquired deformities of foot|Other acquired deformities of foot +C2894519|T020|HT|M21.6|ICD10CM|Other acquired deformities of foot|Other acquired deformities of foot +C0006386|T020|HT|M21.61|ICD10CM|Bunion|Bunion +C0006386|T020|AB|M21.61|ICD10CM|Bunion|Bunion +C2103714|T020|AB|M21.611|ICD10CM|Bunion of right foot|Bunion of right foot +C2103714|T020|PT|M21.611|ICD10CM|Bunion of right foot|Bunion of right foot +C2103715|T020|AB|M21.612|ICD10CM|Bunion of left foot|Bunion of left foot +C2103715|T020|PT|M21.612|ICD10CM|Bunion of left foot|Bunion of left foot +C4268697|T020|AB|M21.619|ICD10CM|Bunion of unspecified foot|Bunion of unspecified foot +C4268697|T020|PT|M21.619|ICD10CM|Bunion of unspecified foot|Bunion of unspecified foot +C0263957|T020|HT|M21.62|ICD10CM|Bunionette|Bunionette +C0263957|T020|AB|M21.62|ICD10CM|Bunionette|Bunionette +C2088523|T020|AB|M21.621|ICD10CM|Bunionette of right foot|Bunionette of right foot +C2088523|T020|PT|M21.621|ICD10CM|Bunionette of right foot|Bunionette of right foot +C2088524|T020|AB|M21.622|ICD10CM|Bunionette of left foot|Bunionette of left foot +C2088524|T020|PT|M21.622|ICD10CM|Bunionette of left foot|Bunionette of left foot +C4268698|T047|AB|M21.629|ICD10CM|Bunionette of unspecified foot|Bunionette of unspecified foot +C4268698|T047|PT|M21.629|ICD10CM|Bunionette of unspecified foot|Bunionette of unspecified foot +C2894519|T020|HT|M21.6X|ICD10CM|Other acquired deformities of foot|Other acquired deformities of foot +C2894519|T020|AB|M21.6X|ICD10CM|Other acquired deformities of foot|Other acquired deformities of foot +C2894520|T020|AB|M21.6X1|ICD10CM|Other acquired deformities of right foot|Other acquired deformities of right foot +C2894520|T020|PT|M21.6X1|ICD10CM|Other acquired deformities of right foot|Other acquired deformities of right foot +C2894521|T020|AB|M21.6X2|ICD10CM|Other acquired deformities of left foot|Other acquired deformities of left foot +C2894521|T020|PT|M21.6X2|ICD10CM|Other acquired deformities of left foot|Other acquired deformities of left foot +C2894522|T020|AB|M21.6X9|ICD10CM|Other acquired deformities of unspecified foot|Other acquired deformities of unspecified foot +C2894522|T020|PT|M21.6X9|ICD10CM|Other acquired deformities of unspecified foot|Other acquired deformities of unspecified foot +C0494930|T190|HT|M21.7|ICD10CM|Unequal limb length (acquired)|Unequal limb length (acquired) +C0494930|T190|AB|M21.7|ICD10CM|Unequal limb length (acquired)|Unequal limb length (acquired) +C0494930|T190|PT|M21.7|ICD10|Unequal limb length (acquired)|Unequal limb length (acquired) +C0838042|T020|AB|M21.70|ICD10CM|Unequal limb length (acquired), unspecified site|Unequal limb length (acquired), unspecified site +C0838042|T020|PT|M21.70|ICD10CM|Unequal limb length (acquired), unspecified site|Unequal limb length (acquired), unspecified site +C2894525|T020|AB|M21.72|ICD10CM|Unequal limb length (acquired), humerus|Unequal limb length (acquired), humerus +C2894525|T020|HT|M21.72|ICD10CM|Unequal limb length (acquired), humerus|Unequal limb length (acquired), humerus +C2894523|T020|AB|M21.721|ICD10CM|Unequal limb length (acquired), right humerus|Unequal limb length (acquired), right humerus +C2894523|T020|PT|M21.721|ICD10CM|Unequal limb length (acquired), right humerus|Unequal limb length (acquired), right humerus +C2894524|T020|AB|M21.722|ICD10CM|Unequal limb length (acquired), left humerus|Unequal limb length (acquired), left humerus +C2894524|T020|PT|M21.722|ICD10CM|Unequal limb length (acquired), left humerus|Unequal limb length (acquired), left humerus +C2894525|T020|AB|M21.729|ICD10CM|Unequal limb length (acquired), unspecified humerus|Unequal limb length (acquired), unspecified humerus +C2894525|T020|PT|M21.729|ICD10CM|Unequal limb length (acquired), unspecified humerus|Unequal limb length (acquired), unspecified humerus +C2894530|T020|AB|M21.73|ICD10CM|Unequal limb length (acquired), ulna and radius|Unequal limb length (acquired), ulna and radius +C2894530|T020|HT|M21.73|ICD10CM|Unequal limb length (acquired), ulna and radius|Unequal limb length (acquired), ulna and radius +C2894526|T020|AB|M21.731|ICD10CM|Unequal limb length (acquired), right ulna|Unequal limb length (acquired), right ulna +C2894526|T020|PT|M21.731|ICD10CM|Unequal limb length (acquired), right ulna|Unequal limb length (acquired), right ulna +C2894527|T020|AB|M21.732|ICD10CM|Unequal limb length (acquired), left ulna|Unequal limb length (acquired), left ulna +C2894527|T020|PT|M21.732|ICD10CM|Unequal limb length (acquired), left ulna|Unequal limb length (acquired), left ulna +C2894528|T020|AB|M21.733|ICD10CM|Unequal limb length (acquired), right radius|Unequal limb length (acquired), right radius +C2894528|T020|PT|M21.733|ICD10CM|Unequal limb length (acquired), right radius|Unequal limb length (acquired), right radius +C2894529|T020|AB|M21.734|ICD10CM|Unequal limb length (acquired), left radius|Unequal limb length (acquired), left radius +C2894529|T020|PT|M21.734|ICD10CM|Unequal limb length (acquired), left radius|Unequal limb length (acquired), left radius +C2894530|T020|AB|M21.739|ICD10CM|Unequal limb length (acquired), unspecified ulna and radius|Unequal limb length (acquired), unspecified ulna and radius +C2894530|T020|PT|M21.739|ICD10CM|Unequal limb length (acquired), unspecified ulna and radius|Unequal limb length (acquired), unspecified ulna and radius +C2894533|T020|AB|M21.75|ICD10CM|Unequal limb length (acquired), femur|Unequal limb length (acquired), femur +C2894533|T020|HT|M21.75|ICD10CM|Unequal limb length (acquired), femur|Unequal limb length (acquired), femur +C2894531|T020|PT|M21.751|ICD10CM|Unequal limb length (acquired), right femur|Unequal limb length (acquired), right femur +C2894531|T020|AB|M21.751|ICD10CM|Unequal limb length (acquired), right femur|Unequal limb length (acquired), right femur +C2894532|T020|AB|M21.752|ICD10CM|Unequal limb length (acquired), left femur|Unequal limb length (acquired), left femur +C2894532|T020|PT|M21.752|ICD10CM|Unequal limb length (acquired), left femur|Unequal limb length (acquired), left femur +C2894533|T020|AB|M21.759|ICD10CM|Unequal limb length (acquired), unspecified femur|Unequal limb length (acquired), unspecified femur +C2894533|T020|PT|M21.759|ICD10CM|Unequal limb length (acquired), unspecified femur|Unequal limb length (acquired), unspecified femur +C2894538|T020|AB|M21.76|ICD10CM|Unequal limb length (acquired), tibia and fibula|Unequal limb length (acquired), tibia and fibula +C2894538|T020|HT|M21.76|ICD10CM|Unequal limb length (acquired), tibia and fibula|Unequal limb length (acquired), tibia and fibula +C2894534|T020|AB|M21.761|ICD10CM|Unequal limb length (acquired), right tibia|Unequal limb length (acquired), right tibia +C2894534|T020|PT|M21.761|ICD10CM|Unequal limb length (acquired), right tibia|Unequal limb length (acquired), right tibia +C2894535|T020|AB|M21.762|ICD10CM|Unequal limb length (acquired), left tibia|Unequal limb length (acquired), left tibia +C2894535|T020|PT|M21.762|ICD10CM|Unequal limb length (acquired), left tibia|Unequal limb length (acquired), left tibia +C2894536|T020|AB|M21.763|ICD10CM|Unequal limb length (acquired), right fibula|Unequal limb length (acquired), right fibula +C2894536|T020|PT|M21.763|ICD10CM|Unequal limb length (acquired), right fibula|Unequal limb length (acquired), right fibula +C2894537|T020|AB|M21.764|ICD10CM|Unequal limb length (acquired), left fibula|Unequal limb length (acquired), left fibula +C2894537|T020|PT|M21.764|ICD10CM|Unequal limb length (acquired), left fibula|Unequal limb length (acquired), left fibula +C2894538|T020|AB|M21.769|ICD10CM|Unequal limb length (acquired), unspecified tibia and fibula|Unequal limb length (acquired), unspecified tibia and fibula +C2894538|T020|PT|M21.769|ICD10CM|Unequal limb length (acquired), unspecified tibia and fibula|Unequal limb length (acquired), unspecified tibia and fibula +C0477574|T020|HT|M21.8|ICD10CM|Other specified acquired deformities of limbs|Other specified acquired deformities of limbs +C0477574|T020|AB|M21.8|ICD10CM|Other specified acquired deformities of limbs|Other specified acquired deformities of limbs +C0477574|T020|PT|M21.8|ICD10|Other specified acquired deformities of limbs|Other specified acquired deformities of limbs +C2894539|T020|AB|M21.80|ICD10CM|Other specified acquired deformities of unspecified limb|Other specified acquired deformities of unspecified limb +C2894539|T020|PT|M21.80|ICD10CM|Other specified acquired deformities of unspecified limb|Other specified acquired deformities of unspecified limb +C2894540|T020|AB|M21.82|ICD10CM|Other specified acquired deformities of upper arm|Other specified acquired deformities of upper arm +C2894540|T020|HT|M21.82|ICD10CM|Other specified acquired deformities of upper arm|Other specified acquired deformities of upper arm +C2894541|T020|AB|M21.821|ICD10CM|Other specified acquired deformities of right upper arm|Other specified acquired deformities of right upper arm +C2894541|T020|PT|M21.821|ICD10CM|Other specified acquired deformities of right upper arm|Other specified acquired deformities of right upper arm +C2894542|T020|AB|M21.822|ICD10CM|Other specified acquired deformities of left upper arm|Other specified acquired deformities of left upper arm +C2894542|T020|PT|M21.822|ICD10CM|Other specified acquired deformities of left upper arm|Other specified acquired deformities of left upper arm +C2894543|T020|AB|M21.829|ICD10CM|Oth acquired deformities of unspecified upper arm|Oth acquired deformities of unspecified upper arm +C2894543|T020|PT|M21.829|ICD10CM|Other specified acquired deformities of unspecified upper arm|Other specified acquired deformities of unspecified upper arm +C2894544|T020|AB|M21.83|ICD10CM|Other specified acquired deformities of forearm|Other specified acquired deformities of forearm +C2894544|T020|HT|M21.83|ICD10CM|Other specified acquired deformities of forearm|Other specified acquired deformities of forearm +C2894545|T020|AB|M21.831|ICD10CM|Other specified acquired deformities of right forearm|Other specified acquired deformities of right forearm +C2894545|T020|PT|M21.831|ICD10CM|Other specified acquired deformities of right forearm|Other specified acquired deformities of right forearm +C2894546|T020|AB|M21.832|ICD10CM|Other specified acquired deformities of left forearm|Other specified acquired deformities of left forearm +C2894546|T020|PT|M21.832|ICD10CM|Other specified acquired deformities of left forearm|Other specified acquired deformities of left forearm +C2894547|T020|AB|M21.839|ICD10CM|Other specified acquired deformities of unspecified forearm|Other specified acquired deformities of unspecified forearm +C2894547|T020|PT|M21.839|ICD10CM|Other specified acquired deformities of unspecified forearm|Other specified acquired deformities of unspecified forearm +C2894548|T020|AB|M21.85|ICD10CM|Other specified acquired deformities of thigh|Other specified acquired deformities of thigh +C2894548|T020|HT|M21.85|ICD10CM|Other specified acquired deformities of thigh|Other specified acquired deformities of thigh +C2894549|T020|AB|M21.851|ICD10CM|Other specified acquired deformities of right thigh|Other specified acquired deformities of right thigh +C2894549|T020|PT|M21.851|ICD10CM|Other specified acquired deformities of right thigh|Other specified acquired deformities of right thigh +C2894550|T020|AB|M21.852|ICD10CM|Other specified acquired deformities of left thigh|Other specified acquired deformities of left thigh +C2894550|T020|PT|M21.852|ICD10CM|Other specified acquired deformities of left thigh|Other specified acquired deformities of left thigh +C2894551|T020|AB|M21.859|ICD10CM|Other specified acquired deformities of unspecified thigh|Other specified acquired deformities of unspecified thigh +C2894551|T020|PT|M21.859|ICD10CM|Other specified acquired deformities of unspecified thigh|Other specified acquired deformities of unspecified thigh +C2894552|T020|AB|M21.86|ICD10CM|Other specified acquired deformities of lower leg|Other specified acquired deformities of lower leg +C2894552|T020|HT|M21.86|ICD10CM|Other specified acquired deformities of lower leg|Other specified acquired deformities of lower leg +C2894553|T020|AB|M21.861|ICD10CM|Other specified acquired deformities of right lower leg|Other specified acquired deformities of right lower leg +C2894553|T020|PT|M21.861|ICD10CM|Other specified acquired deformities of right lower leg|Other specified acquired deformities of right lower leg +C2894554|T020|AB|M21.862|ICD10CM|Other specified acquired deformities of left lower leg|Other specified acquired deformities of left lower leg +C2894554|T020|PT|M21.862|ICD10CM|Other specified acquired deformities of left lower leg|Other specified acquired deformities of left lower leg +C2894555|T020|AB|M21.869|ICD10CM|Oth acquired deformities of unspecified lower leg|Oth acquired deformities of unspecified lower leg +C2894555|T020|PT|M21.869|ICD10CM|Other specified acquired deformities of unspecified lower leg|Other specified acquired deformities of unspecified lower leg +C0264155|T020|PT|M21.9|ICD10|Acquired deformity of limb, unspecified|Acquired deformity of limb, unspecified +C0838057|T020|AB|M21.9|ICD10CM|Unspecified acquired deformity of limb and hand|Unspecified acquired deformity of limb and hand +C0838057|T020|HT|M21.9|ICD10CM|Unspecified acquired deformity of limb and hand|Unspecified acquired deformity of limb and hand +C2894556|T020|AB|M21.90|ICD10CM|Unspecified acquired deformity of unspecified limb|Unspecified acquired deformity of unspecified limb +C2894556|T020|PT|M21.90|ICD10CM|Unspecified acquired deformity of unspecified limb|Unspecified acquired deformity of unspecified limb +C2894557|T020|AB|M21.92|ICD10CM|Unspecified acquired deformity of upper arm|Unspecified acquired deformity of upper arm +C2894557|T020|HT|M21.92|ICD10CM|Unspecified acquired deformity of upper arm|Unspecified acquired deformity of upper arm +C2894558|T020|AB|M21.921|ICD10CM|Unspecified acquired deformity of right upper arm|Unspecified acquired deformity of right upper arm +C2894558|T020|PT|M21.921|ICD10CM|Unspecified acquired deformity of right upper arm|Unspecified acquired deformity of right upper arm +C2894559|T020|AB|M21.922|ICD10CM|Unspecified acquired deformity of left upper arm|Unspecified acquired deformity of left upper arm +C2894559|T020|PT|M21.922|ICD10CM|Unspecified acquired deformity of left upper arm|Unspecified acquired deformity of left upper arm +C2894560|T020|AB|M21.929|ICD10CM|Unspecified acquired deformity of unspecified upper arm|Unspecified acquired deformity of unspecified upper arm +C2894560|T020|PT|M21.929|ICD10CM|Unspecified acquired deformity of unspecified upper arm|Unspecified acquired deformity of unspecified upper arm +C0264139|T020|AB|M21.93|ICD10CM|Unspecified acquired deformity of forearm|Unspecified acquired deformity of forearm +C0264139|T020|HT|M21.93|ICD10CM|Unspecified acquired deformity of forearm|Unspecified acquired deformity of forearm +C2894561|T020|AB|M21.931|ICD10CM|Unspecified acquired deformity of right forearm|Unspecified acquired deformity of right forearm +C2894561|T020|PT|M21.931|ICD10CM|Unspecified acquired deformity of right forearm|Unspecified acquired deformity of right forearm +C2894562|T020|AB|M21.932|ICD10CM|Unspecified acquired deformity of left forearm|Unspecified acquired deformity of left forearm +C2894562|T020|PT|M21.932|ICD10CM|Unspecified acquired deformity of left forearm|Unspecified acquired deformity of left forearm +C2894563|T020|AB|M21.939|ICD10CM|Unspecified acquired deformity of unspecified forearm|Unspecified acquired deformity of unspecified forearm +C2894563|T020|PT|M21.939|ICD10CM|Unspecified acquired deformity of unspecified forearm|Unspecified acquired deformity of unspecified forearm +C2894564|T020|AB|M21.94|ICD10CM|Unspecified acquired deformity of hand|Unspecified acquired deformity of hand +C2894564|T020|HT|M21.94|ICD10CM|Unspecified acquired deformity of hand|Unspecified acquired deformity of hand +C2894565|T020|AB|M21.941|ICD10CM|Unspecified acquired deformity of hand, right hand|Unspecified acquired deformity of hand, right hand +C2894565|T020|PT|M21.941|ICD10CM|Unspecified acquired deformity of hand, right hand|Unspecified acquired deformity of hand, right hand +C2894566|T020|AB|M21.942|ICD10CM|Unspecified acquired deformity of hand, left hand|Unspecified acquired deformity of hand, left hand +C2894566|T020|PT|M21.942|ICD10CM|Unspecified acquired deformity of hand, left hand|Unspecified acquired deformity of hand, left hand +C2894567|T020|AB|M21.949|ICD10CM|Unspecified acquired deformity of hand, unspecified hand|Unspecified acquired deformity of hand, unspecified hand +C2894567|T020|PT|M21.949|ICD10CM|Unspecified acquired deformity of hand, unspecified hand|Unspecified acquired deformity of hand, unspecified hand +C2894568|T020|AB|M21.95|ICD10CM|Unspecified acquired deformity of thigh|Unspecified acquired deformity of thigh +C2894568|T020|HT|M21.95|ICD10CM|Unspecified acquired deformity of thigh|Unspecified acquired deformity of thigh +C2894569|T020|AB|M21.951|ICD10CM|Unspecified acquired deformity of right thigh|Unspecified acquired deformity of right thigh +C2894569|T020|PT|M21.951|ICD10CM|Unspecified acquired deformity of right thigh|Unspecified acquired deformity of right thigh +C2894570|T020|AB|M21.952|ICD10CM|Unspecified acquired deformity of left thigh|Unspecified acquired deformity of left thigh +C2894570|T020|PT|M21.952|ICD10CM|Unspecified acquired deformity of left thigh|Unspecified acquired deformity of left thigh +C2894571|T020|AB|M21.959|ICD10CM|Unspecified acquired deformity of unspecified thigh|Unspecified acquired deformity of unspecified thigh +C2894571|T020|PT|M21.959|ICD10CM|Unspecified acquired deformity of unspecified thigh|Unspecified acquired deformity of unspecified thigh +C2894572|T020|AB|M21.96|ICD10CM|Unspecified acquired deformity of lower leg|Unspecified acquired deformity of lower leg +C2894572|T020|HT|M21.96|ICD10CM|Unspecified acquired deformity of lower leg|Unspecified acquired deformity of lower leg +C2894573|T020|AB|M21.961|ICD10CM|Unspecified acquired deformity of right lower leg|Unspecified acquired deformity of right lower leg +C2894573|T020|PT|M21.961|ICD10CM|Unspecified acquired deformity of right lower leg|Unspecified acquired deformity of right lower leg +C2894574|T020|AB|M21.962|ICD10CM|Unspecified acquired deformity of left lower leg|Unspecified acquired deformity of left lower leg +C2894574|T020|PT|M21.962|ICD10CM|Unspecified acquired deformity of left lower leg|Unspecified acquired deformity of left lower leg +C2894575|T020|AB|M21.969|ICD10CM|Unspecified acquired deformity of unspecified lower leg|Unspecified acquired deformity of unspecified lower leg +C2894575|T020|PT|M21.969|ICD10CM|Unspecified acquired deformity of unspecified lower leg|Unspecified acquired deformity of unspecified lower leg +C0477582|T047|HT|M22|ICD10CM|Disorder of patella|Disorder of patella +C0477582|T047|AB|M22|ICD10CM|Disorder of patella|Disorder of patella +C0477582|T047|HT|M22|ICD10|Disorders of patella|Disorders of patella +C0409412|T037|PT|M22.0|ICD10|Recurrent dislocation of patella|Recurrent dislocation of patella +C0409412|T037|HT|M22.0|ICD10CM|Recurrent dislocation of patella|Recurrent dislocation of patella +C0409412|T037|AB|M22.0|ICD10CM|Recurrent dislocation of patella|Recurrent dislocation of patella +C0409412|T037|AB|M22.00|ICD10CM|Recurrent dislocation of patella, unspecified knee|Recurrent dislocation of patella, unspecified knee +C0409412|T037|PT|M22.00|ICD10CM|Recurrent dislocation of patella, unspecified knee|Recurrent dislocation of patella, unspecified knee +C2894576|T047|AB|M22.01|ICD10CM|Recurrent dislocation of patella, right knee|Recurrent dislocation of patella, right knee +C2894576|T047|PT|M22.01|ICD10CM|Recurrent dislocation of patella, right knee|Recurrent dislocation of patella, right knee +C2894577|T047|AB|M22.02|ICD10CM|Recurrent dislocation of patella, left knee|Recurrent dislocation of patella, left knee +C2894577|T047|PT|M22.02|ICD10CM|Recurrent dislocation of patella, left knee|Recurrent dislocation of patella, left knee +C2894578|T037|ET|M22.1|ICD10CM|Incomplete dislocation of patella|Incomplete dislocation of patella +C0409377|T037|HT|M22.1|ICD10CM|Recurrent subluxation of patella|Recurrent subluxation of patella +C0409377|T037|AB|M22.1|ICD10CM|Recurrent subluxation of patella|Recurrent subluxation of patella +C0409377|T037|PT|M22.1|ICD10|Recurrent subluxation of patella|Recurrent subluxation of patella +C2894579|T047|AB|M22.10|ICD10CM|Recurrent subluxation of patella, unspecified knee|Recurrent subluxation of patella, unspecified knee +C2894579|T047|PT|M22.10|ICD10CM|Recurrent subluxation of patella, unspecified knee|Recurrent subluxation of patella, unspecified knee +C2894580|T047|AB|M22.11|ICD10CM|Recurrent subluxation of patella, right knee|Recurrent subluxation of patella, right knee +C2894580|T047|PT|M22.11|ICD10CM|Recurrent subluxation of patella, right knee|Recurrent subluxation of patella, right knee +C2894581|T047|AB|M22.12|ICD10CM|Recurrent subluxation of patella, left knee|Recurrent subluxation of patella, left knee +C2894581|T047|PT|M22.12|ICD10CM|Recurrent subluxation of patella, left knee|Recurrent subluxation of patella, left knee +C0409325|T047|PT|M22.2|ICD10|Patellofemoral disorders|Patellofemoral disorders +C0409325|T047|HT|M22.2|ICD10CM|Patellofemoral disorders|Patellofemoral disorders +C0409325|T047|AB|M22.2|ICD10CM|Patellofemoral disorders|Patellofemoral disorders +C0409325|T047|HT|M22.2X|ICD10CM|Patellofemoral disorders|Patellofemoral disorders +C0409325|T047|AB|M22.2X|ICD10CM|Patellofemoral disorders|Patellofemoral disorders +C2894582|T047|AB|M22.2X1|ICD10CM|Patellofemoral disorders, right knee|Patellofemoral disorders, right knee +C2894582|T047|PT|M22.2X1|ICD10CM|Patellofemoral disorders, right knee|Patellofemoral disorders, right knee +C2894583|T047|AB|M22.2X2|ICD10CM|Patellofemoral disorders, left knee|Patellofemoral disorders, left knee +C2894583|T047|PT|M22.2X2|ICD10CM|Patellofemoral disorders, left knee|Patellofemoral disorders, left knee +C0409325|T047|AB|M22.2X9|ICD10CM|Patellofemoral disorders, unspecified knee|Patellofemoral disorders, unspecified knee +C0409325|T047|PT|M22.2X9|ICD10CM|Patellofemoral disorders, unspecified knee|Patellofemoral disorders, unspecified knee +C0477575|T047|HT|M22.3|ICD10CM|Other derangements of patella|Other derangements of patella +C0477575|T047|AB|M22.3|ICD10CM|Other derangements of patella|Other derangements of patella +C0477575|T047|PT|M22.3|ICD10|Other derangements of patella|Other derangements of patella +C0477575|T047|HT|M22.3X|ICD10CM|Other derangements of patella|Other derangements of patella +C0477575|T047|AB|M22.3X|ICD10CM|Other derangements of patella|Other derangements of patella +C2894584|T047|AB|M22.3X1|ICD10CM|Other derangements of patella, right knee|Other derangements of patella, right knee +C2894584|T047|PT|M22.3X1|ICD10CM|Other derangements of patella, right knee|Other derangements of patella, right knee +C2894585|T047|AB|M22.3X2|ICD10CM|Other derangements of patella, left knee|Other derangements of patella, left knee +C2894585|T047|PT|M22.3X2|ICD10CM|Other derangements of patella, left knee|Other derangements of patella, left knee +C0477575|T047|AB|M22.3X9|ICD10CM|Other derangements of patella, unspecified knee|Other derangements of patella, unspecified knee +C0477575|T047|PT|M22.3X9|ICD10CM|Other derangements of patella, unspecified knee|Other derangements of patella, unspecified knee +C0008475|T047|PT|M22.4|ICD10|Chondromalacia patellae|Chondromalacia patellae +C0008475|T047|HT|M22.4|ICD10CM|Chondromalacia patellae|Chondromalacia patellae +C0008475|T047|AB|M22.4|ICD10CM|Chondromalacia patellae|Chondromalacia patellae +C2894586|T047|AB|M22.40|ICD10CM|Chondromalacia patellae, unspecified knee|Chondromalacia patellae, unspecified knee +C2894586|T047|PT|M22.40|ICD10CM|Chondromalacia patellae, unspecified knee|Chondromalacia patellae, unspecified knee +C2894587|T047|AB|M22.41|ICD10CM|Chondromalacia patellae, right knee|Chondromalacia patellae, right knee +C2894587|T047|PT|M22.41|ICD10CM|Chondromalacia patellae, right knee|Chondromalacia patellae, right knee +C2894588|T047|AB|M22.42|ICD10CM|Chondromalacia patellae, left knee|Chondromalacia patellae, left knee +C2894588|T047|PT|M22.42|ICD10CM|Chondromalacia patellae, left knee|Chondromalacia patellae, left knee +C0477576|T047|HT|M22.8|ICD10CM|Other disorders of patella|Other disorders of patella +C0477576|T047|AB|M22.8|ICD10CM|Other disorders of patella|Other disorders of patella +C0477576|T047|PT|M22.8|ICD10|Other disorders of patella|Other disorders of patella +C0477576|T047|HT|M22.8X|ICD10CM|Other disorders of patella|Other disorders of patella +C0477576|T047|AB|M22.8X|ICD10CM|Other disorders of patella|Other disorders of patella +C2894589|T047|AB|M22.8X1|ICD10CM|Other disorders of patella, right knee|Other disorders of patella, right knee +C2894589|T047|PT|M22.8X1|ICD10CM|Other disorders of patella, right knee|Other disorders of patella, right knee +C2894590|T047|AB|M22.8X2|ICD10CM|Other disorders of patella, left knee|Other disorders of patella, left knee +C2894590|T047|PT|M22.8X2|ICD10CM|Other disorders of patella, left knee|Other disorders of patella, left knee +C0477576|T047|AB|M22.8X9|ICD10CM|Other disorders of patella, unspecified knee|Other disorders of patella, unspecified knee +C0477576|T047|PT|M22.8X9|ICD10CM|Other disorders of patella, unspecified knee|Other disorders of patella, unspecified knee +C0477582|T047|PT|M22.9|ICD10|Disorder of patella, unspecified|Disorder of patella, unspecified +C0477582|T047|AB|M22.9|ICD10CM|Unspecified disorder of patella|Unspecified disorder of patella +C0477582|T047|HT|M22.9|ICD10CM|Unspecified disorder of patella|Unspecified disorder of patella +C2894591|T047|AB|M22.90|ICD10CM|Unspecified disorder of patella, unspecified knee|Unspecified disorder of patella, unspecified knee +C2894591|T047|PT|M22.90|ICD10CM|Unspecified disorder of patella, unspecified knee|Unspecified disorder of patella, unspecified knee +C2894592|T047|AB|M22.91|ICD10CM|Unspecified disorder of patella, right knee|Unspecified disorder of patella, right knee +C2894592|T047|PT|M22.91|ICD10CM|Unspecified disorder of patella, right knee|Unspecified disorder of patella, right knee +C2894593|T047|AB|M22.92|ICD10CM|Unspecified disorder of patella, left knee|Unspecified disorder of patella, left knee +C2894593|T047|PT|M22.92|ICD10CM|Unspecified disorder of patella, left knee|Unspecified disorder of patella, left knee +C0158053|T047|HT|M23|ICD10CM|Internal derangement of knee|Internal derangement of knee +C0158053|T047|AB|M23|ICD10CM|Internal derangement of knee|Internal derangement of knee +C0158053|T047|HT|M23|ICD10|Internal derangement of knee|Internal derangement of knee +C0263787|T020|PT|M23.0|ICD10|Cystic meniscus|Cystic meniscus +C0263787|T020|HT|M23.0|ICD10CM|Cystic meniscus|Cystic meniscus +C0263787|T020|AB|M23.0|ICD10CM|Cystic meniscus|Cystic meniscus +C2894594|T020|ET|M23.00|ICD10CM|Cystic meniscus, unspecified lateral meniscus|Cystic meniscus, unspecified lateral meniscus +C2894595|T020|ET|M23.00|ICD10CM|Cystic meniscus, unspecified medial meniscus|Cystic meniscus, unspecified medial meniscus +C2894596|T020|AB|M23.00|ICD10CM|Cystic meniscus, unspecified meniscus|Cystic meniscus, unspecified meniscus +C2894596|T020|HT|M23.00|ICD10CM|Cystic meniscus, unspecified meniscus|Cystic meniscus, unspecified meniscus +C2894597|T020|AB|M23.000|ICD10CM|Cystic meniscus, unspecified lateral meniscus, right knee|Cystic meniscus, unspecified lateral meniscus, right knee +C2894597|T020|PT|M23.000|ICD10CM|Cystic meniscus, unspecified lateral meniscus, right knee|Cystic meniscus, unspecified lateral meniscus, right knee +C2894598|T020|AB|M23.001|ICD10CM|Cystic meniscus, unspecified lateral meniscus, left knee|Cystic meniscus, unspecified lateral meniscus, left knee +C2894598|T020|PT|M23.001|ICD10CM|Cystic meniscus, unspecified lateral meniscus, left knee|Cystic meniscus, unspecified lateral meniscus, left knee +C2894599|T020|AB|M23.002|ICD10CM|Cystic meniscus, unsp lateral meniscus, unspecified knee|Cystic meniscus, unsp lateral meniscus, unspecified knee +C2894599|T020|PT|M23.002|ICD10CM|Cystic meniscus, unspecified lateral meniscus, unspecified knee|Cystic meniscus, unspecified lateral meniscus, unspecified knee +C2894600|T020|AB|M23.003|ICD10CM|Cystic meniscus, unspecified medial meniscus, right knee|Cystic meniscus, unspecified medial meniscus, right knee +C2894600|T020|PT|M23.003|ICD10CM|Cystic meniscus, unspecified medial meniscus, right knee|Cystic meniscus, unspecified medial meniscus, right knee +C2894601|T020|AB|M23.004|ICD10CM|Cystic meniscus, unspecified medial meniscus, left knee|Cystic meniscus, unspecified medial meniscus, left knee +C2894601|T020|PT|M23.004|ICD10CM|Cystic meniscus, unspecified medial meniscus, left knee|Cystic meniscus, unspecified medial meniscus, left knee +C2894602|T020|AB|M23.005|ICD10CM|Cystic meniscus, unsp medial meniscus, unspecified knee|Cystic meniscus, unsp medial meniscus, unspecified knee +C2894602|T020|PT|M23.005|ICD10CM|Cystic meniscus, unspecified medial meniscus, unspecified knee|Cystic meniscus, unspecified medial meniscus, unspecified knee +C2894603|T020|AB|M23.006|ICD10CM|Cystic meniscus, unspecified meniscus, right knee|Cystic meniscus, unspecified meniscus, right knee +C2894603|T020|PT|M23.006|ICD10CM|Cystic meniscus, unspecified meniscus, right knee|Cystic meniscus, unspecified meniscus, right knee +C2894604|T020|AB|M23.007|ICD10CM|Cystic meniscus, unspecified meniscus, left knee|Cystic meniscus, unspecified meniscus, left knee +C2894604|T020|PT|M23.007|ICD10CM|Cystic meniscus, unspecified meniscus, left knee|Cystic meniscus, unspecified meniscus, left knee +C2894605|T020|AB|M23.009|ICD10CM|Cystic meniscus, unspecified meniscus, unspecified knee|Cystic meniscus, unspecified meniscus, unspecified knee +C2894605|T020|PT|M23.009|ICD10CM|Cystic meniscus, unspecified meniscus, unspecified knee|Cystic meniscus, unspecified meniscus, unspecified knee +C2894606|T020|AB|M23.01|ICD10CM|Cystic meniscus, anterior horn of medial meniscus|Cystic meniscus, anterior horn of medial meniscus +C2894606|T020|HT|M23.01|ICD10CM|Cystic meniscus, anterior horn of medial meniscus|Cystic meniscus, anterior horn of medial meniscus +C2894607|T020|AB|M23.011|ICD10CM|Cystic meniscus, anterior horn of medial meniscus, r knee|Cystic meniscus, anterior horn of medial meniscus, r knee +C2894607|T020|PT|M23.011|ICD10CM|Cystic meniscus, anterior horn of medial meniscus, right knee|Cystic meniscus, anterior horn of medial meniscus, right knee +C2894608|T020|AB|M23.012|ICD10CM|Cystic meniscus, anterior horn of medial meniscus, left knee|Cystic meniscus, anterior horn of medial meniscus, left knee +C2894608|T020|PT|M23.012|ICD10CM|Cystic meniscus, anterior horn of medial meniscus, left knee|Cystic meniscus, anterior horn of medial meniscus, left knee +C2894609|T020|AB|M23.019|ICD10CM|Cystic meniscus, anterior horn of medial meniscus, unsp knee|Cystic meniscus, anterior horn of medial meniscus, unsp knee +C2894609|T020|PT|M23.019|ICD10CM|Cystic meniscus, anterior horn of medial meniscus, unspecified knee|Cystic meniscus, anterior horn of medial meniscus, unspecified knee +C2894610|T020|AB|M23.02|ICD10CM|Cystic meniscus, posterior horn of medial meniscus|Cystic meniscus, posterior horn of medial meniscus +C2894610|T020|HT|M23.02|ICD10CM|Cystic meniscus, posterior horn of medial meniscus|Cystic meniscus, posterior horn of medial meniscus +C2894611|T020|AB|M23.021|ICD10CM|Cystic meniscus, posterior horn of medial meniscus, r knee|Cystic meniscus, posterior horn of medial meniscus, r knee +C2894611|T020|PT|M23.021|ICD10CM|Cystic meniscus, posterior horn of medial meniscus, right knee|Cystic meniscus, posterior horn of medial meniscus, right knee +C2894612|T020|AB|M23.022|ICD10CM|Cystic meniscus, posterior horn of medial meniscus, l knee|Cystic meniscus, posterior horn of medial meniscus, l knee +C2894612|T020|PT|M23.022|ICD10CM|Cystic meniscus, posterior horn of medial meniscus, left knee|Cystic meniscus, posterior horn of medial meniscus, left knee +C2894613|T020|AB|M23.029|ICD10CM|Cystic meniscus, post horn of medial meniscus, unsp knee|Cystic meniscus, post horn of medial meniscus, unsp knee +C2894613|T020|PT|M23.029|ICD10CM|Cystic meniscus, posterior horn of medial meniscus, unspecified knee|Cystic meniscus, posterior horn of medial meniscus, unspecified knee +C2894614|T020|AB|M23.03|ICD10CM|Cystic meniscus, other medial meniscus|Cystic meniscus, other medial meniscus +C2894614|T020|HT|M23.03|ICD10CM|Cystic meniscus, other medial meniscus|Cystic meniscus, other medial meniscus +C2894615|T020|AB|M23.031|ICD10CM|Cystic meniscus, other medial meniscus, right knee|Cystic meniscus, other medial meniscus, right knee +C2894615|T020|PT|M23.031|ICD10CM|Cystic meniscus, other medial meniscus, right knee|Cystic meniscus, other medial meniscus, right knee +C2894616|T020|AB|M23.032|ICD10CM|Cystic meniscus, other medial meniscus, left knee|Cystic meniscus, other medial meniscus, left knee +C2894616|T020|PT|M23.032|ICD10CM|Cystic meniscus, other medial meniscus, left knee|Cystic meniscus, other medial meniscus, left knee +C2894617|T020|AB|M23.039|ICD10CM|Cystic meniscus, other medial meniscus, unspecified knee|Cystic meniscus, other medial meniscus, unspecified knee +C2894617|T020|PT|M23.039|ICD10CM|Cystic meniscus, other medial meniscus, unspecified knee|Cystic meniscus, other medial meniscus, unspecified knee +C2894618|T020|AB|M23.04|ICD10CM|Cystic meniscus, anterior horn of lateral meniscus|Cystic meniscus, anterior horn of lateral meniscus +C2894618|T020|HT|M23.04|ICD10CM|Cystic meniscus, anterior horn of lateral meniscus|Cystic meniscus, anterior horn of lateral meniscus +C2894619|T020|AB|M23.041|ICD10CM|Cystic meniscus, anterior horn of lat mensc, right knee|Cystic meniscus, anterior horn of lat mensc, right knee +C2894619|T020|PT|M23.041|ICD10CM|Cystic meniscus, anterior horn of lateral meniscus, right knee|Cystic meniscus, anterior horn of lateral meniscus, right knee +C2894620|T020|AB|M23.042|ICD10CM|Cystic meniscus, anterior horn of lat mensc, left knee|Cystic meniscus, anterior horn of lat mensc, left knee +C2894620|T020|PT|M23.042|ICD10CM|Cystic meniscus, anterior horn of lateral meniscus, left knee|Cystic meniscus, anterior horn of lateral meniscus, left knee +C2894621|T020|AB|M23.049|ICD10CM|Cystic meniscus, anterior horn of lat mensc, unsp knee|Cystic meniscus, anterior horn of lat mensc, unsp knee +C2894621|T020|PT|M23.049|ICD10CM|Cystic meniscus, anterior horn of lateral meniscus, unspecified knee|Cystic meniscus, anterior horn of lateral meniscus, unspecified knee +C2894622|T020|AB|M23.05|ICD10CM|Cystic meniscus, posterior horn of lateral meniscus|Cystic meniscus, posterior horn of lateral meniscus +C2894622|T020|HT|M23.05|ICD10CM|Cystic meniscus, posterior horn of lateral meniscus|Cystic meniscus, posterior horn of lateral meniscus +C2894623|T020|AB|M23.051|ICD10CM|Cystic meniscus, posterior horn of lat mensc, right knee|Cystic meniscus, posterior horn of lat mensc, right knee +C2894623|T020|PT|M23.051|ICD10CM|Cystic meniscus, posterior horn of lateral meniscus, right knee|Cystic meniscus, posterior horn of lateral meniscus, right knee +C2894624|T020|AB|M23.052|ICD10CM|Cystic meniscus, posterior horn of lat mensc, left knee|Cystic meniscus, posterior horn of lat mensc, left knee +C2894624|T020|PT|M23.052|ICD10CM|Cystic meniscus, posterior horn of lateral meniscus, left knee|Cystic meniscus, posterior horn of lateral meniscus, left knee +C2894625|T020|AB|M23.059|ICD10CM|Cystic meniscus, posterior horn of lat mensc, unsp knee|Cystic meniscus, posterior horn of lat mensc, unsp knee +C2894625|T020|PT|M23.059|ICD10CM|Cystic meniscus, posterior horn of lateral meniscus, unspecified knee|Cystic meniscus, posterior horn of lateral meniscus, unspecified knee +C2894626|T020|AB|M23.06|ICD10CM|Cystic meniscus, other lateral meniscus|Cystic meniscus, other lateral meniscus +C2894626|T020|HT|M23.06|ICD10CM|Cystic meniscus, other lateral meniscus|Cystic meniscus, other lateral meniscus +C2894627|T020|AB|M23.061|ICD10CM|Cystic meniscus, other lateral meniscus, right knee|Cystic meniscus, other lateral meniscus, right knee +C2894627|T020|PT|M23.061|ICD10CM|Cystic meniscus, other lateral meniscus, right knee|Cystic meniscus, other lateral meniscus, right knee +C2894628|T020|AB|M23.062|ICD10CM|Cystic meniscus, other lateral meniscus, left knee|Cystic meniscus, other lateral meniscus, left knee +C2894628|T020|PT|M23.062|ICD10CM|Cystic meniscus, other lateral meniscus, left knee|Cystic meniscus, other lateral meniscus, left knee +C2894629|T020|AB|M23.069|ICD10CM|Cystic meniscus, other lateral meniscus, unspecified knee|Cystic meniscus, other lateral meniscus, unspecified knee +C2894629|T020|PT|M23.069|ICD10CM|Cystic meniscus, other lateral meniscus, unspecified knee|Cystic meniscus, other lateral meniscus, unspecified knee +C0265671|T019|PT|M23.1|ICD10|Discoid meniscus (congenital)|Discoid meniscus (congenital) +C0494934|T046|HT|M23.2|ICD10CM|Derangement of meniscus due to old tear or injury|Derangement of meniscus due to old tear or injury +C0494934|T046|AB|M23.2|ICD10CM|Derangement of meniscus due to old tear or injury|Derangement of meniscus due to old tear or injury +C0494934|T046|PT|M23.2|ICD10|Derangement of meniscus due to old tear or injury|Derangement of meniscus due to old tear or injury +C0263786|T037|ET|M23.2|ICD10CM|Old bucket-handle tear|Old bucket-handle tear +C0494934|T046|AB|M23.20|ICD10CM|Derangement of unsp meniscus due to old tear or injury|Derangement of unsp meniscus due to old tear or injury +C2894630|T190|ET|M23.20|ICD10CM|Derangement of unspecified lateral meniscus due to old tear or injury|Derangement of unspecified lateral meniscus due to old tear or injury +C2894631|T190|ET|M23.20|ICD10CM|Derangement of unspecified medial meniscus due to old tear or injury|Derangement of unspecified medial meniscus due to old tear or injury +C0494934|T046|HT|M23.20|ICD10CM|Derangement of unspecified meniscus due to old tear or injury|Derangement of unspecified meniscus due to old tear or injury +C2894632|T046|AB|M23.200|ICD10CM|Derang of unsp lat mensc due to old tear/inj, right knee|Derang of unsp lat mensc due to old tear/inj, right knee +C2894632|T046|PT|M23.200|ICD10CM|Derangement of unspecified lateral meniscus due to old tear or injury, right knee|Derangement of unspecified lateral meniscus due to old tear or injury, right knee +C2894633|T046|AB|M23.201|ICD10CM|Derangement of unsp lat mensc due to old tear/inj, left knee|Derangement of unsp lat mensc due to old tear/inj, left knee +C2894633|T046|PT|M23.201|ICD10CM|Derangement of unspecified lateral meniscus due to old tear or injury, left knee|Derangement of unspecified lateral meniscus due to old tear or injury, left knee +C2894634|T046|AB|M23.202|ICD10CM|Derangement of unsp lat mensc due to old tear/inj, unsp knee|Derangement of unsp lat mensc due to old tear/inj, unsp knee +C2894634|T046|PT|M23.202|ICD10CM|Derangement of unspecified lateral meniscus due to old tear or injury, unspecified knee|Derangement of unspecified lateral meniscus due to old tear or injury, unspecified knee +C2894635|T046|AB|M23.203|ICD10CM|Derang of unsp medial meniscus due to old tear/inj, r knee|Derang of unsp medial meniscus due to old tear/inj, r knee +C2894635|T046|PT|M23.203|ICD10CM|Derangement of unspecified medial meniscus due to old tear or injury, right knee|Derangement of unspecified medial meniscus due to old tear or injury, right knee +C2894636|T046|AB|M23.204|ICD10CM|Derang of unsp medial meniscus due to old tear/inj, l knee|Derang of unsp medial meniscus due to old tear/inj, l knee +C2894636|T046|PT|M23.204|ICD10CM|Derangement of unspecified medial meniscus due to old tear or injury, left knee|Derangement of unspecified medial meniscus due to old tear or injury, left knee +C2894637|T046|AB|M23.205|ICD10CM|Derang of unsp medial mensc due to old tear/inj, unsp knee|Derang of unsp medial mensc due to old tear/inj, unsp knee +C2894637|T046|PT|M23.205|ICD10CM|Derangement of unspecified medial meniscus due to old tear or injury, unspecified knee|Derangement of unspecified medial meniscus due to old tear or injury, unspecified knee +C2894638|T046|AB|M23.206|ICD10CM|Derangement of unsp meniscus due to old tear/inj, right knee|Derangement of unsp meniscus due to old tear/inj, right knee +C2894638|T046|PT|M23.206|ICD10CM|Derangement of unspecified meniscus due to old tear or injury, right knee|Derangement of unspecified meniscus due to old tear or injury, right knee +C2894639|T046|AB|M23.207|ICD10CM|Derangement of unsp meniscus due to old tear/inj, left knee|Derangement of unsp meniscus due to old tear/inj, left knee +C2894639|T046|PT|M23.207|ICD10CM|Derangement of unspecified meniscus due to old tear or injury, left knee|Derangement of unspecified meniscus due to old tear or injury, left knee +C2894640|T046|AB|M23.209|ICD10CM|Derangement of unsp meniscus due to old tear/inj, unsp knee|Derangement of unsp meniscus due to old tear/inj, unsp knee +C2894640|T046|PT|M23.209|ICD10CM|Derangement of unspecified meniscus due to old tear or injury, unspecified knee|Derangement of unspecified meniscus due to old tear or injury, unspecified knee +C0838080|T190|AB|M23.21|ICD10CM|Derang of ant horn of medial meniscus due to old tear/inj|Derang of ant horn of medial meniscus due to old tear/inj +C0838080|T190|HT|M23.21|ICD10CM|Derangement of anterior horn of medial meniscus due to old tear or injury|Derangement of anterior horn of medial meniscus due to old tear or injury +C2894641|T190|AB|M23.211|ICD10CM|Derang of ant horn of medial mensc d/t old tear/inj, r knee|Derang of ant horn of medial mensc d/t old tear/inj, r knee +C2894641|T190|PT|M23.211|ICD10CM|Derangement of anterior horn of medial meniscus due to old tear or injury, right knee|Derangement of anterior horn of medial meniscus due to old tear or injury, right knee +C2894642|T190|AB|M23.212|ICD10CM|Derang of ant horn of medial mensc d/t old tear/inj, l knee|Derang of ant horn of medial mensc d/t old tear/inj, l knee +C2894642|T190|PT|M23.212|ICD10CM|Derangement of anterior horn of medial meniscus due to old tear or injury, left knee|Derangement of anterior horn of medial meniscus due to old tear or injury, left knee +C2894643|T190|AB|M23.219|ICD10CM|Derang of ant horn of med mensc d/t old tear/inj, unsp knee|Derang of ant horn of med mensc d/t old tear/inj, unsp knee +C2894643|T190|PT|M23.219|ICD10CM|Derangement of anterior horn of medial meniscus due to old tear or injury, unspecified knee|Derangement of anterior horn of medial meniscus due to old tear or injury, unspecified knee +C0838081|T190|AB|M23.22|ICD10CM|Derang of post horn of medial meniscus due to old tear/inj|Derang of post horn of medial meniscus due to old tear/inj +C0838081|T190|HT|M23.22|ICD10CM|Derangement of posterior horn of medial meniscus due to old tear or injury|Derangement of posterior horn of medial meniscus due to old tear or injury +C2894644|T190|AB|M23.221|ICD10CM|Derang of post horn of medial mensc d/t old tear/inj, r knee|Derang of post horn of medial mensc d/t old tear/inj, r knee +C2894644|T190|PT|M23.221|ICD10CM|Derangement of posterior horn of medial meniscus due to old tear or injury, right knee|Derangement of posterior horn of medial meniscus due to old tear or injury, right knee +C2894645|T190|AB|M23.222|ICD10CM|Derang of post horn of medial mensc d/t old tear/inj, l knee|Derang of post horn of medial mensc d/t old tear/inj, l knee +C2894645|T190|PT|M23.222|ICD10CM|Derangement of posterior horn of medial meniscus due to old tear or injury, left knee|Derangement of posterior horn of medial meniscus due to old tear or injury, left knee +C2894646|T190|AB|M23.229|ICD10CM|Derang of post horn of med mensc d/t old tear/inj, unsp knee|Derang of post horn of med mensc d/t old tear/inj, unsp knee +C2894646|T190|PT|M23.229|ICD10CM|Derangement of posterior horn of medial meniscus due to old tear or injury, unspecified knee|Derangement of posterior horn of medial meniscus due to old tear or injury, unspecified knee +C2894647|T046|AB|M23.23|ICD10CM|Derangement of oth medial meniscus due to old tear or injury|Derangement of oth medial meniscus due to old tear or injury +C2894647|T046|HT|M23.23|ICD10CM|Derangement of other medial meniscus due to old tear or injury|Derangement of other medial meniscus due to old tear or injury +C2894648|T046|AB|M23.231|ICD10CM|Derang of medial meniscus due to old tear/inj, right knee|Derang of medial meniscus due to old tear/inj, right knee +C2894648|T046|PT|M23.231|ICD10CM|Derangement of other medial meniscus due to old tear or injury, right knee|Derangement of other medial meniscus due to old tear or injury, right knee +C2894649|T046|AB|M23.232|ICD10CM|Derang of medial meniscus due to old tear/inj, left knee|Derang of medial meniscus due to old tear/inj, left knee +C2894649|T046|PT|M23.232|ICD10CM|Derangement of other medial meniscus due to old tear or injury, left knee|Derangement of other medial meniscus due to old tear or injury, left knee +C2894650|T046|AB|M23.239|ICD10CM|Derang of medial meniscus due to old tear/inj, unsp knee|Derang of medial meniscus due to old tear/inj, unsp knee +C2894650|T046|PT|M23.239|ICD10CM|Derangement of other medial meniscus due to old tear or injury, unspecified knee|Derangement of other medial meniscus due to old tear or injury, unspecified knee +C0838083|T190|AB|M23.24|ICD10CM|Derang of anterior horn of lat mensc due to old tear/inj|Derang of anterior horn of lat mensc due to old tear/inj +C0838083|T190|HT|M23.24|ICD10CM|Derangement of anterior horn of lateral meniscus due to old tear or injury|Derangement of anterior horn of lateral meniscus due to old tear or injury +C2894651|T190|AB|M23.241|ICD10CM|Derang of ant horn of lat mensc due to old tear/inj, r knee|Derang of ant horn of lat mensc due to old tear/inj, r knee +C2894651|T190|PT|M23.241|ICD10CM|Derangement of anterior horn of lateral meniscus due to old tear or injury, right knee|Derangement of anterior horn of lateral meniscus due to old tear or injury, right knee +C2894652|T190|AB|M23.242|ICD10CM|Derang of ant horn of lat mensc due to old tear/inj, l knee|Derang of ant horn of lat mensc due to old tear/inj, l knee +C2894652|T190|PT|M23.242|ICD10CM|Derangement of anterior horn of lateral meniscus due to old tear or injury, left knee|Derangement of anterior horn of lateral meniscus due to old tear or injury, left knee +C2894653|T190|AB|M23.249|ICD10CM|Derang of ant horn of lat mensc d/t old tear/inj, unsp knee|Derang of ant horn of lat mensc d/t old tear/inj, unsp knee +C2894653|T190|PT|M23.249|ICD10CM|Derangement of anterior horn of lateral meniscus due to old tear or injury, unspecified knee|Derangement of anterior horn of lateral meniscus due to old tear or injury, unspecified knee +C0838084|T190|AB|M23.25|ICD10CM|Derang of posterior horn of lat mensc due to old tear/inj|Derang of posterior horn of lat mensc due to old tear/inj +C0838084|T190|HT|M23.25|ICD10CM|Derangement of posterior horn of lateral meniscus due to old tear or injury|Derangement of posterior horn of lateral meniscus due to old tear or injury +C2894654|T190|AB|M23.251|ICD10CM|Derang of post horn of lat mensc due to old tear/inj, r knee|Derang of post horn of lat mensc due to old tear/inj, r knee +C2894654|T190|PT|M23.251|ICD10CM|Derangement of posterior horn of lateral meniscus due to old tear or injury, right knee|Derangement of posterior horn of lateral meniscus due to old tear or injury, right knee +C2894655|T190|AB|M23.252|ICD10CM|Derang of post horn of lat mensc due to old tear/inj, l knee|Derang of post horn of lat mensc due to old tear/inj, l knee +C2894655|T190|PT|M23.252|ICD10CM|Derangement of posterior horn of lateral meniscus due to old tear or injury, left knee|Derangement of posterior horn of lateral meniscus due to old tear or injury, left knee +C2894656|T190|AB|M23.259|ICD10CM|Derang of post horn of lat mensc d/t old tear/inj, unsp knee|Derang of post horn of lat mensc d/t old tear/inj, unsp knee +C2894656|T190|PT|M23.259|ICD10CM|Derangement of posterior horn of lateral meniscus due to old tear or injury, unspecified knee|Derangement of posterior horn of lateral meniscus due to old tear or injury, unspecified knee +C2894657|T046|AB|M23.26|ICD10CM|Derangement of lateral meniscus due to old tear or injury|Derangement of lateral meniscus due to old tear or injury +C2894657|T046|HT|M23.26|ICD10CM|Derangement of other lateral meniscus due to old tear or injury|Derangement of other lateral meniscus due to old tear or injury +C2894658|T046|AB|M23.261|ICD10CM|Derangement of lat mensc due to old tear/inj, right knee|Derangement of lat mensc due to old tear/inj, right knee +C2894658|T046|PT|M23.261|ICD10CM|Derangement of other lateral meniscus due to old tear or injury, right knee|Derangement of other lateral meniscus due to old tear or injury, right knee +C2894659|T046|AB|M23.262|ICD10CM|Derangement of lat mensc due to old tear/inj, left knee|Derangement of lat mensc due to old tear/inj, left knee +C2894659|T046|PT|M23.262|ICD10CM|Derangement of other lateral meniscus due to old tear or injury, left knee|Derangement of other lateral meniscus due to old tear or injury, left knee +C2894660|T046|AB|M23.269|ICD10CM|Derangement of lat mensc due to old tear/inj, unsp knee|Derangement of lat mensc due to old tear/inj, unsp knee +C2894660|T046|PT|M23.269|ICD10CM|Derangement of other lateral meniscus due to old tear or injury, unspecified knee|Derangement of other lateral meniscus due to old tear or injury, unspecified knee +C2894661|T190|ET|M23.3|ICD10CM|Degenerate meniscus|Degenerate meniscus +C1403200|T033|ET|M23.3|ICD10CM|Detached meniscus|Detached meniscus +C0477577|T047|HT|M23.3|ICD10CM|Other meniscus derangements|Other meniscus derangements +C0477577|T047|AB|M23.3|ICD10CM|Other meniscus derangements|Other meniscus derangements +C0477577|T047|PT|M23.3|ICD10|Other meniscus derangements|Other meniscus derangements +C2894663|T190|ET|M23.3|ICD10CM|Retained meniscus|Retained meniscus +C2894664|T047|ET|M23.30|ICD10CM|Other meniscus derangements, unspecified lateral meniscus|Other meniscus derangements, unspecified lateral meniscus +C2894665|T047|ET|M23.30|ICD10CM|Other meniscus derangements, unspecified medial meniscus|Other meniscus derangements, unspecified medial meniscus +C0477577|T047|AB|M23.30|ICD10CM|Other meniscus derangements, unspecified meniscus|Other meniscus derangements, unspecified meniscus +C0477577|T047|HT|M23.30|ICD10CM|Other meniscus derangements, unspecified meniscus|Other meniscus derangements, unspecified meniscus +C2894666|T047|AB|M23.300|ICD10CM|Oth meniscus derangements, unsp lateral meniscus, right knee|Oth meniscus derangements, unsp lateral meniscus, right knee +C2894666|T047|PT|M23.300|ICD10CM|Other meniscus derangements, unspecified lateral meniscus, right knee|Other meniscus derangements, unspecified lateral meniscus, right knee +C2894667|T047|AB|M23.301|ICD10CM|Oth meniscus derangements, unsp lateral meniscus, left knee|Oth meniscus derangements, unsp lateral meniscus, left knee +C2894667|T047|PT|M23.301|ICD10CM|Other meniscus derangements, unspecified lateral meniscus, left knee|Other meniscus derangements, unspecified lateral meniscus, left knee +C2894668|T047|AB|M23.302|ICD10CM|Oth meniscus derangements, unsp lateral meniscus, unsp knee|Oth meniscus derangements, unsp lateral meniscus, unsp knee +C2894668|T047|PT|M23.302|ICD10CM|Other meniscus derangements, unspecified lateral meniscus, unspecified knee|Other meniscus derangements, unspecified lateral meniscus, unspecified knee +C2894669|T047|AB|M23.303|ICD10CM|Oth meniscus derangements, unsp medial meniscus, right knee|Oth meniscus derangements, unsp medial meniscus, right knee +C2894669|T047|PT|M23.303|ICD10CM|Other meniscus derangements, unspecified medial meniscus, right knee|Other meniscus derangements, unspecified medial meniscus, right knee +C2894670|T047|AB|M23.304|ICD10CM|Other meniscus derangements, unsp medial meniscus, left knee|Other meniscus derangements, unsp medial meniscus, left knee +C2894670|T047|PT|M23.304|ICD10CM|Other meniscus derangements, unspecified medial meniscus, left knee|Other meniscus derangements, unspecified medial meniscus, left knee +C2894671|T047|AB|M23.305|ICD10CM|Other meniscus derangements, unsp medial meniscus, unsp knee|Other meniscus derangements, unsp medial meniscus, unsp knee +C2894671|T047|PT|M23.305|ICD10CM|Other meniscus derangements, unspecified medial meniscus, unspecified knee|Other meniscus derangements, unspecified medial meniscus, unspecified knee +C2894672|T047|AB|M23.306|ICD10CM|Other meniscus derangements, unsp meniscus, right knee|Other meniscus derangements, unsp meniscus, right knee +C2894672|T047|PT|M23.306|ICD10CM|Other meniscus derangements, unspecified meniscus, right knee|Other meniscus derangements, unspecified meniscus, right knee +C2894673|T047|AB|M23.307|ICD10CM|Other meniscus derangements, unspecified meniscus, left knee|Other meniscus derangements, unspecified meniscus, left knee +C2894673|T047|PT|M23.307|ICD10CM|Other meniscus derangements, unspecified meniscus, left knee|Other meniscus derangements, unspecified meniscus, left knee +C0477577|T047|AB|M23.309|ICD10CM|Other meniscus derangements, unsp meniscus, unspecified knee|Other meniscus derangements, unsp meniscus, unspecified knee +C0477577|T047|PT|M23.309|ICD10CM|Other meniscus derangements, unspecified meniscus, unspecified knee|Other meniscus derangements, unspecified meniscus, unspecified knee +C2894674|T047|AB|M23.31|ICD10CM|Oth meniscus derangements, anterior horn of medial meniscus|Oth meniscus derangements, anterior horn of medial meniscus +C2894674|T047|HT|M23.31|ICD10CM|Other meniscus derangements, anterior horn of medial meniscus|Other meniscus derangements, anterior horn of medial meniscus +C2894675|T047|AB|M23.311|ICD10CM|Oth meniscus derang, ant horn of medial meniscus, r knee|Oth meniscus derang, ant horn of medial meniscus, r knee +C2894675|T047|PT|M23.311|ICD10CM|Other meniscus derangements, anterior horn of medial meniscus, right knee|Other meniscus derangements, anterior horn of medial meniscus, right knee +C2894676|T047|AB|M23.312|ICD10CM|Oth meniscus derang, ant horn of medial meniscus, l knee|Oth meniscus derang, ant horn of medial meniscus, l knee +C2894676|T047|PT|M23.312|ICD10CM|Other meniscus derangements, anterior horn of medial meniscus, left knee|Other meniscus derangements, anterior horn of medial meniscus, left knee +C2894674|T047|AB|M23.319|ICD10CM|Oth meniscus derang, ant horn of medial meniscus, unsp knee|Oth meniscus derang, ant horn of medial meniscus, unsp knee +C2894674|T047|PT|M23.319|ICD10CM|Other meniscus derangements, anterior horn of medial meniscus, unspecified knee|Other meniscus derangements, anterior horn of medial meniscus, unspecified knee +C2894677|T047|AB|M23.32|ICD10CM|Oth meniscus derangements, posterior horn of medial meniscus|Oth meniscus derangements, posterior horn of medial meniscus +C2894677|T047|HT|M23.32|ICD10CM|Other meniscus derangements, posterior horn of medial meniscus|Other meniscus derangements, posterior horn of medial meniscus +C2894678|T047|AB|M23.321|ICD10CM|Oth meniscus derang, post horn of medial meniscus, r knee|Oth meniscus derang, post horn of medial meniscus, r knee +C2894678|T047|PT|M23.321|ICD10CM|Other meniscus derangements, posterior horn of medial meniscus, right knee|Other meniscus derangements, posterior horn of medial meniscus, right knee +C2894679|T047|AB|M23.322|ICD10CM|Oth meniscus derang, post horn of medial meniscus, l knee|Oth meniscus derang, post horn of medial meniscus, l knee +C2894679|T047|PT|M23.322|ICD10CM|Other meniscus derangements, posterior horn of medial meniscus, left knee|Other meniscus derangements, posterior horn of medial meniscus, left knee +C2894677|T047|AB|M23.329|ICD10CM|Oth meniscus derang, post horn of medial meniscus, unsp knee|Oth meniscus derang, post horn of medial meniscus, unsp knee +C2894677|T047|PT|M23.329|ICD10CM|Other meniscus derangements, posterior horn of medial meniscus, unspecified knee|Other meniscus derangements, posterior horn of medial meniscus, unspecified knee +C2894682|T047|AB|M23.33|ICD10CM|Other meniscus derangements, other medial meniscus|Other meniscus derangements, other medial meniscus +C2894682|T047|HT|M23.33|ICD10CM|Other meniscus derangements, other medial meniscus|Other meniscus derangements, other medial meniscus +C2894680|T047|AB|M23.331|ICD10CM|Oth meniscus derangements, other medial meniscus, right knee|Oth meniscus derangements, other medial meniscus, right knee +C2894680|T047|PT|M23.331|ICD10CM|Other meniscus derangements, other medial meniscus, right knee|Other meniscus derangements, other medial meniscus, right knee +C2894681|T047|AB|M23.332|ICD10CM|Oth meniscus derangements, other medial meniscus, left knee|Oth meniscus derangements, other medial meniscus, left knee +C2894681|T047|PT|M23.332|ICD10CM|Other meniscus derangements, other medial meniscus, left knee|Other meniscus derangements, other medial meniscus, left knee +C2894682|T047|AB|M23.339|ICD10CM|Oth meniscus derangements, other medial meniscus, unsp knee|Oth meniscus derangements, other medial meniscus, unsp knee +C2894682|T047|PT|M23.339|ICD10CM|Other meniscus derangements, other medial meniscus, unspecified knee|Other meniscus derangements, other medial meniscus, unspecified knee +C2894685|T047|AB|M23.34|ICD10CM|Oth meniscus derangements, anterior horn of lateral meniscus|Oth meniscus derangements, anterior horn of lateral meniscus +C2894685|T047|HT|M23.34|ICD10CM|Other meniscus derangements, anterior horn of lateral meniscus|Other meniscus derangements, anterior horn of lateral meniscus +C2894683|T047|AB|M23.341|ICD10CM|Oth meniscus derang, anterior horn of lat mensc, right knee|Oth meniscus derang, anterior horn of lat mensc, right knee +C2894683|T047|PT|M23.341|ICD10CM|Other meniscus derangements, anterior horn of lateral meniscus, right knee|Other meniscus derangements, anterior horn of lateral meniscus, right knee +C2894684|T047|AB|M23.342|ICD10CM|Oth meniscus derang, anterior horn of lat mensc, left knee|Oth meniscus derang, anterior horn of lat mensc, left knee +C2894684|T047|PT|M23.342|ICD10CM|Other meniscus derangements, anterior horn of lateral meniscus, left knee|Other meniscus derangements, anterior horn of lateral meniscus, left knee +C2894685|T047|AB|M23.349|ICD10CM|Oth meniscus derang, anterior horn of lat mensc, unsp knee|Oth meniscus derang, anterior horn of lat mensc, unsp knee +C2894685|T047|PT|M23.349|ICD10CM|Other meniscus derangements, anterior horn of lateral meniscus, unspecified knee|Other meniscus derangements, anterior horn of lateral meniscus, unspecified knee +C2894688|T047|AB|M23.35|ICD10CM|Oth meniscus derangements, posterior horn of lat mensc|Oth meniscus derangements, posterior horn of lat mensc +C2894688|T047|HT|M23.35|ICD10CM|Other meniscus derangements, posterior horn of lateral meniscus|Other meniscus derangements, posterior horn of lateral meniscus +C2894686|T047|AB|M23.351|ICD10CM|Oth meniscus derang, posterior horn of lat mensc, right knee|Oth meniscus derang, posterior horn of lat mensc, right knee +C2894686|T047|PT|M23.351|ICD10CM|Other meniscus derangements, posterior horn of lateral meniscus, right knee|Other meniscus derangements, posterior horn of lateral meniscus, right knee +C2894687|T047|AB|M23.352|ICD10CM|Oth meniscus derang, posterior horn of lat mensc, left knee|Oth meniscus derang, posterior horn of lat mensc, left knee +C2894687|T047|PT|M23.352|ICD10CM|Other meniscus derangements, posterior horn of lateral meniscus, left knee|Other meniscus derangements, posterior horn of lateral meniscus, left knee +C2894688|T047|AB|M23.359|ICD10CM|Oth meniscus derang, posterior horn of lat mensc, unsp knee|Oth meniscus derang, posterior horn of lat mensc, unsp knee +C2894688|T047|PT|M23.359|ICD10CM|Other meniscus derangements, posterior horn of lateral meniscus, unspecified knee|Other meniscus derangements, posterior horn of lateral meniscus, unspecified knee +C2894691|T047|AB|M23.36|ICD10CM|Other meniscus derangements, other lateral meniscus|Other meniscus derangements, other lateral meniscus +C2894691|T047|HT|M23.36|ICD10CM|Other meniscus derangements, other lateral meniscus|Other meniscus derangements, other lateral meniscus +C2894689|T047|AB|M23.361|ICD10CM|Oth meniscus derangements, oth lateral meniscus, right knee|Oth meniscus derangements, oth lateral meniscus, right knee +C2894689|T047|PT|M23.361|ICD10CM|Other meniscus derangements, other lateral meniscus, right knee|Other meniscus derangements, other lateral meniscus, right knee +C2894690|T047|AB|M23.362|ICD10CM|Oth meniscus derangements, other lateral meniscus, left knee|Oth meniscus derangements, other lateral meniscus, left knee +C2894690|T047|PT|M23.362|ICD10CM|Other meniscus derangements, other lateral meniscus, left knee|Other meniscus derangements, other lateral meniscus, left knee +C2894691|T047|AB|M23.369|ICD10CM|Oth meniscus derangements, other lateral meniscus, unsp knee|Oth meniscus derangements, other lateral meniscus, unsp knee +C2894691|T047|PT|M23.369|ICD10CM|Other meniscus derangements, other lateral meniscus, unspecified knee|Other meniscus derangements, other lateral meniscus, unspecified knee +C0343161|T020|PT|M23.4|ICD10|Loose body in knee|Loose body in knee +C0343161|T020|HT|M23.4|ICD10CM|Loose body in knee|Loose body in knee +C0343161|T020|AB|M23.4|ICD10CM|Loose body in knee|Loose body in knee +C0343161|T020|AB|M23.40|ICD10CM|Loose body in knee, unspecified knee|Loose body in knee, unspecified knee +C0343161|T020|PT|M23.40|ICD10CM|Loose body in knee, unspecified knee|Loose body in knee, unspecified knee +C2894692|T020|AB|M23.41|ICD10CM|Loose body in knee, right knee|Loose body in knee, right knee +C2894692|T020|PT|M23.41|ICD10CM|Loose body in knee, right knee|Loose body in knee, right knee +C2894693|T020|AB|M23.42|ICD10CM|Loose body in knee, left knee|Loose body in knee, left knee +C2894693|T020|PT|M23.42|ICD10CM|Loose body in knee, left knee|Loose body in knee, left knee +C0451820|T190|HT|M23.5|ICD10CM|Chronic instability of knee|Chronic instability of knee +C0451820|T190|AB|M23.5|ICD10CM|Chronic instability of knee|Chronic instability of knee +C0451820|T190|PT|M23.5|ICD10|Chronic instability of knee|Chronic instability of knee +C0451820|T190|AB|M23.50|ICD10CM|Chronic instability of knee, unspecified knee|Chronic instability of knee, unspecified knee +C0451820|T190|PT|M23.50|ICD10CM|Chronic instability of knee, unspecified knee|Chronic instability of knee, unspecified knee +C2894694|T190|AB|M23.51|ICD10CM|Chronic instability of knee, right knee|Chronic instability of knee, right knee +C2894694|T190|PT|M23.51|ICD10CM|Chronic instability of knee, right knee|Chronic instability of knee, right knee +C2894695|T190|AB|M23.52|ICD10CM|Chronic instability of knee, left knee|Chronic instability of knee, left knee +C2894695|T190|PT|M23.52|ICD10CM|Chronic instability of knee, left knee|Chronic instability of knee, left knee +C0477578|T190|HT|M23.6|ICD10CM|Other spontaneous disruption of ligament(s) of knee|Other spontaneous disruption of ligament(s) of knee +C0477578|T190|AB|M23.6|ICD10CM|Other spontaneous disruption of ligament(s) of knee|Other spontaneous disruption of ligament(s) of knee +C0477578|T190|PT|M23.6|ICD10|Other spontaneous disruption of ligament(s) of knee|Other spontaneous disruption of ligament(s) of knee +C2894698|T047|AB|M23.60|ICD10CM|Other spontaneous disruption of unspecified ligament of knee|Other spontaneous disruption of unspecified ligament of knee +C2894698|T047|HT|M23.60|ICD10CM|Other spontaneous disruption of unspecified ligament of knee|Other spontaneous disruption of unspecified ligament of knee +C2894696|T047|AB|M23.601|ICD10CM|Other spontaneous disruption of unsp ligament of right knee|Other spontaneous disruption of unsp ligament of right knee +C2894696|T047|PT|M23.601|ICD10CM|Other spontaneous disruption of unspecified ligament of right knee|Other spontaneous disruption of unspecified ligament of right knee +C2894697|T047|AB|M23.602|ICD10CM|Other spontaneous disruption of unsp ligament of left knee|Other spontaneous disruption of unsp ligament of left knee +C2894697|T047|PT|M23.602|ICD10CM|Other spontaneous disruption of unspecified ligament of left knee|Other spontaneous disruption of unspecified ligament of left knee +C2894698|T047|AB|M23.609|ICD10CM|Other spontaneous disruption of unsp ligament of unsp knee|Other spontaneous disruption of unsp ligament of unsp knee +C2894698|T047|PT|M23.609|ICD10CM|Other spontaneous disruption of unspecified ligament of unspecified knee|Other spontaneous disruption of unspecified ligament of unspecified knee +C2894701|T047|AB|M23.61|ICD10CM|Oth spon disruption of anterior cruciate ligament of knee|Oth spon disruption of anterior cruciate ligament of knee +C2894701|T047|HT|M23.61|ICD10CM|Other spontaneous disruption of anterior cruciate ligament of knee|Other spontaneous disruption of anterior cruciate ligament of knee +C2894699|T047|AB|M23.611|ICD10CM|Oth spon disrupt of anterior cruciate ligament of right knee|Oth spon disrupt of anterior cruciate ligament of right knee +C2894699|T047|PT|M23.611|ICD10CM|Other spontaneous disruption of anterior cruciate ligament of right knee|Other spontaneous disruption of anterior cruciate ligament of right knee +C2894700|T047|AB|M23.612|ICD10CM|Oth spon disrupt of anterior cruciate ligament of left knee|Oth spon disrupt of anterior cruciate ligament of left knee +C2894700|T047|PT|M23.612|ICD10CM|Other spontaneous disruption of anterior cruciate ligament of left knee|Other spontaneous disruption of anterior cruciate ligament of left knee +C2894701|T047|AB|M23.619|ICD10CM|Oth spon disrupt of anterior cruciate ligament of unsp knee|Oth spon disrupt of anterior cruciate ligament of unsp knee +C2894701|T047|PT|M23.619|ICD10CM|Other spontaneous disruption of anterior cruciate ligament of unspecified knee|Other spontaneous disruption of anterior cruciate ligament of unspecified knee +C2894704|T047|AB|M23.62|ICD10CM|Oth spon disruption of posterior cruciate ligament of knee|Oth spon disruption of posterior cruciate ligament of knee +C2894704|T047|HT|M23.62|ICD10CM|Other spontaneous disruption of posterior cruciate ligament of knee|Other spontaneous disruption of posterior cruciate ligament of knee +C2894702|T047|AB|M23.621|ICD10CM|Oth spon disrupt of posterior cruciate ligament of r knee|Oth spon disrupt of posterior cruciate ligament of r knee +C2894702|T047|PT|M23.621|ICD10CM|Other spontaneous disruption of posterior cruciate ligament of right knee|Other spontaneous disruption of posterior cruciate ligament of right knee +C2894703|T047|AB|M23.622|ICD10CM|Oth spon disrupt of posterior cruciate ligament of left knee|Oth spon disrupt of posterior cruciate ligament of left knee +C2894703|T047|PT|M23.622|ICD10CM|Other spontaneous disruption of posterior cruciate ligament of left knee|Other spontaneous disruption of posterior cruciate ligament of left knee +C2894704|T047|AB|M23.629|ICD10CM|Oth spon disrupt of posterior cruciate ligament of unsp knee|Oth spon disrupt of posterior cruciate ligament of unsp knee +C2894704|T047|PT|M23.629|ICD10CM|Other spontaneous disruption of posterior cruciate ligament of unspecified knee|Other spontaneous disruption of posterior cruciate ligament of unspecified knee +C2894707|T047|AB|M23.63|ICD10CM|Oth spon disruption of medial collateral ligament of knee|Oth spon disruption of medial collateral ligament of knee +C2894707|T047|HT|M23.63|ICD10CM|Other spontaneous disruption of medial collateral ligament of knee|Other spontaneous disruption of medial collateral ligament of knee +C2894705|T047|AB|M23.631|ICD10CM|Oth spon disruption of medial collat ligament of right knee|Oth spon disruption of medial collat ligament of right knee +C2894705|T047|PT|M23.631|ICD10CM|Other spontaneous disruption of medial collateral ligament of right knee|Other spontaneous disruption of medial collateral ligament of right knee +C2894706|T047|AB|M23.632|ICD10CM|Oth spon disruption of medial collat ligament of left knee|Oth spon disruption of medial collat ligament of left knee +C2894706|T047|PT|M23.632|ICD10CM|Other spontaneous disruption of medial collateral ligament of left knee|Other spontaneous disruption of medial collateral ligament of left knee +C2894707|T047|AB|M23.639|ICD10CM|Oth spon disruption of medial collat ligament of unsp knee|Oth spon disruption of medial collat ligament of unsp knee +C2894707|T047|PT|M23.639|ICD10CM|Other spontaneous disruption of medial collateral ligament of unspecified knee|Other spontaneous disruption of medial collateral ligament of unspecified knee +C2894710|T047|AB|M23.64|ICD10CM|Oth spon disruption of lateral collateral ligament of knee|Oth spon disruption of lateral collateral ligament of knee +C2894710|T047|HT|M23.64|ICD10CM|Other spontaneous disruption of lateral collateral ligament of knee|Other spontaneous disruption of lateral collateral ligament of knee +C2894708|T047|AB|M23.641|ICD10CM|Oth spon disruption of lateral collat ligament of right knee|Oth spon disruption of lateral collat ligament of right knee +C2894708|T047|PT|M23.641|ICD10CM|Other spontaneous disruption of lateral collateral ligament of right knee|Other spontaneous disruption of lateral collateral ligament of right knee +C2894709|T047|AB|M23.642|ICD10CM|Oth spon disruption of lateral collat ligament of left knee|Oth spon disruption of lateral collat ligament of left knee +C2894709|T047|PT|M23.642|ICD10CM|Other spontaneous disruption of lateral collateral ligament of left knee|Other spontaneous disruption of lateral collateral ligament of left knee +C2894710|T047|AB|M23.649|ICD10CM|Oth spon disruption of lateral collat ligament of unsp knee|Oth spon disruption of lateral collat ligament of unsp knee +C2894710|T047|PT|M23.649|ICD10CM|Other spontaneous disruption of lateral collateral ligament of unspecified knee|Other spontaneous disruption of lateral collateral ligament of unspecified knee +C2894713|T047|AB|M23.67|ICD10CM|Other spontaneous disruption of capsular ligament of knee|Other spontaneous disruption of capsular ligament of knee +C2894713|T047|HT|M23.67|ICD10CM|Other spontaneous disruption of capsular ligament of knee|Other spontaneous disruption of capsular ligament of knee +C2894711|T047|AB|M23.671|ICD10CM|Oth spon disruption of capsular ligament of right knee|Oth spon disruption of capsular ligament of right knee +C2894711|T047|PT|M23.671|ICD10CM|Other spontaneous disruption of capsular ligament of right knee|Other spontaneous disruption of capsular ligament of right knee +C2894712|T047|AB|M23.672|ICD10CM|Oth spontaneous disruption of capsular ligament of left knee|Oth spontaneous disruption of capsular ligament of left knee +C2894712|T047|PT|M23.672|ICD10CM|Other spontaneous disruption of capsular ligament of left knee|Other spontaneous disruption of capsular ligament of left knee +C2894713|T047|AB|M23.679|ICD10CM|Oth spontaneous disruption of capsular ligament of unsp knee|Oth spontaneous disruption of capsular ligament of unsp knee +C2894713|T047|PT|M23.679|ICD10CM|Other spontaneous disruption of capsular ligament of unspecified knee|Other spontaneous disruption of capsular ligament of unspecified knee +C1401699|T190|ET|M23.8|ICD10CM|Laxity of ligament of knee|Laxity of ligament of knee +C0158065|T047|HT|M23.8|ICD10CM|Other internal derangements of knee|Other internal derangements of knee +C0158065|T047|AB|M23.8|ICD10CM|Other internal derangements of knee|Other internal derangements of knee +C0158065|T047|PT|M23.8|ICD10|Other internal derangements of knee|Other internal derangements of knee +C0240128|T033|ET|M23.8|ICD10CM|Snapping knee|Snapping knee +C0158065|T047|HT|M23.8X|ICD10CM|Other internal derangements of knee|Other internal derangements of knee +C0158065|T047|AB|M23.8X|ICD10CM|Other internal derangements of knee|Other internal derangements of knee +C2894714|T047|AB|M23.8X1|ICD10CM|Other internal derangements of right knee|Other internal derangements of right knee +C2894714|T047|PT|M23.8X1|ICD10CM|Other internal derangements of right knee|Other internal derangements of right knee +C2894715|T047|AB|M23.8X2|ICD10CM|Other internal derangements of left knee|Other internal derangements of left knee +C2894715|T047|PT|M23.8X2|ICD10CM|Other internal derangements of left knee|Other internal derangements of left knee +C0158065|T047|AB|M23.8X9|ICD10CM|Other internal derangements of unspecified knee|Other internal derangements of unspecified knee +C0158065|T047|PT|M23.8X9|ICD10CM|Other internal derangements of unspecified knee|Other internal derangements of unspecified knee +C0158053|T047|PT|M23.9|ICD10|Internal derangement of knee, unspecified|Internal derangement of knee, unspecified +C0158053|T047|HT|M23.9|ICD10CM|Unspecified internal derangement of knee|Unspecified internal derangement of knee +C0158053|T047|AB|M23.9|ICD10CM|Unspecified internal derangement of knee|Unspecified internal derangement of knee +C0158053|T047|AB|M23.90|ICD10CM|Unspecified internal derangement of unspecified knee|Unspecified internal derangement of unspecified knee +C0158053|T047|PT|M23.90|ICD10CM|Unspecified internal derangement of unspecified knee|Unspecified internal derangement of unspecified knee +C2702831|T047|AB|M23.91|ICD10CM|Unspecified internal derangement of right knee|Unspecified internal derangement of right knee +C2702831|T047|PT|M23.91|ICD10CM|Unspecified internal derangement of right knee|Unspecified internal derangement of right knee +C2702832|T047|AB|M23.92|ICD10CM|Unspecified internal derangement of left knee|Unspecified internal derangement of left knee +C2702832|T047|PT|M23.92|ICD10CM|Unspecified internal derangement of left knee|Unspecified internal derangement of left knee +C0494935|T047|AB|M24|ICD10CM|Other specific joint derangements|Other specific joint derangements +C0494935|T047|HT|M24|ICD10CM|Other specific joint derangements|Other specific joint derangements +C0494935|T047|HT|M24|ICD10|Other specific joint derangements|Other specific joint derangements +C0022411|T020|PT|M24.0|ICD10|Loose body in joint|Loose body in joint +C0022411|T020|HT|M24.0|ICD10CM|Loose body in joint|Loose body in joint +C0022411|T020|AB|M24.0|ICD10CM|Loose body in joint|Loose body in joint +C0022411|T020|AB|M24.00|ICD10CM|Loose body in unspecified joint|Loose body in unspecified joint +C0022411|T020|PT|M24.00|ICD10CM|Loose body in unspecified joint|Loose body in unspecified joint +C2894718|T020|AB|M24.01|ICD10CM|Loose body in shoulder|Loose body in shoulder +C2894718|T020|HT|M24.01|ICD10CM|Loose body in shoulder|Loose body in shoulder +C2894716|T020|AB|M24.011|ICD10CM|Loose body in right shoulder|Loose body in right shoulder +C2894716|T020|PT|M24.011|ICD10CM|Loose body in right shoulder|Loose body in right shoulder +C2894717|T020|AB|M24.012|ICD10CM|Loose body in left shoulder|Loose body in left shoulder +C2894717|T020|PT|M24.012|ICD10CM|Loose body in left shoulder|Loose body in left shoulder +C2894718|T020|AB|M24.019|ICD10CM|Loose body in unspecified shoulder|Loose body in unspecified shoulder +C2894718|T020|PT|M24.019|ICD10CM|Loose body in unspecified shoulder|Loose body in unspecified shoulder +C2894721|T020|AB|M24.02|ICD10CM|Loose body in elbow|Loose body in elbow +C2894721|T020|HT|M24.02|ICD10CM|Loose body in elbow|Loose body in elbow +C2894719|T020|AB|M24.021|ICD10CM|Loose body in right elbow|Loose body in right elbow +C2894719|T020|PT|M24.021|ICD10CM|Loose body in right elbow|Loose body in right elbow +C2894720|T020|AB|M24.022|ICD10CM|Loose body in left elbow|Loose body in left elbow +C2894720|T020|PT|M24.022|ICD10CM|Loose body in left elbow|Loose body in left elbow +C2894721|T020|AB|M24.029|ICD10CM|Loose body in unspecified elbow|Loose body in unspecified elbow +C2894721|T020|PT|M24.029|ICD10CM|Loose body in unspecified elbow|Loose body in unspecified elbow +C2894724|T020|AB|M24.03|ICD10CM|Loose body in wrist|Loose body in wrist +C2894724|T020|HT|M24.03|ICD10CM|Loose body in wrist|Loose body in wrist +C2894722|T020|AB|M24.031|ICD10CM|Loose body in right wrist|Loose body in right wrist +C2894722|T020|PT|M24.031|ICD10CM|Loose body in right wrist|Loose body in right wrist +C2894723|T020|AB|M24.032|ICD10CM|Loose body in left wrist|Loose body in left wrist +C2894723|T020|PT|M24.032|ICD10CM|Loose body in left wrist|Loose body in left wrist +C2894724|T020|AB|M24.039|ICD10CM|Loose body in unspecified wrist|Loose body in unspecified wrist +C2894724|T020|PT|M24.039|ICD10CM|Loose body in unspecified wrist|Loose body in unspecified wrist +C2894727|T020|AB|M24.04|ICD10CM|Loose body in finger joints|Loose body in finger joints +C2894727|T020|HT|M24.04|ICD10CM|Loose body in finger joints|Loose body in finger joints +C2894725|T020|AB|M24.041|ICD10CM|Loose body in right finger joint(s)|Loose body in right finger joint(s) +C2894725|T020|PT|M24.041|ICD10CM|Loose body in right finger joint(s)|Loose body in right finger joint(s) +C2894726|T020|AB|M24.042|ICD10CM|Loose body in left finger joint(s)|Loose body in left finger joint(s) +C2894726|T020|PT|M24.042|ICD10CM|Loose body in left finger joint(s)|Loose body in left finger joint(s) +C2894727|T020|AB|M24.049|ICD10CM|Loose body in unspecified finger joint(s)|Loose body in unspecified finger joint(s) +C2894727|T020|PT|M24.049|ICD10CM|Loose body in unspecified finger joint(s)|Loose body in unspecified finger joint(s) +C2894730|T020|AB|M24.05|ICD10CM|Loose body in hip|Loose body in hip +C2894730|T020|HT|M24.05|ICD10CM|Loose body in hip|Loose body in hip +C2894728|T020|AB|M24.051|ICD10CM|Loose body in right hip|Loose body in right hip +C2894728|T020|PT|M24.051|ICD10CM|Loose body in right hip|Loose body in right hip +C2894729|T020|AB|M24.052|ICD10CM|Loose body in left hip|Loose body in left hip +C2894729|T020|PT|M24.052|ICD10CM|Loose body in left hip|Loose body in left hip +C2894730|T020|AB|M24.059|ICD10CM|Loose body in unspecified hip|Loose body in unspecified hip +C2894730|T020|PT|M24.059|ICD10CM|Loose body in unspecified hip|Loose body in unspecified hip +C2894731|T020|AB|M24.07|ICD10CM|Loose body in ankle and toe joints|Loose body in ankle and toe joints +C2894731|T020|HT|M24.07|ICD10CM|Loose body in ankle and toe joints|Loose body in ankle and toe joints +C2894732|T020|AB|M24.071|ICD10CM|Loose body in right ankle|Loose body in right ankle +C2894732|T020|PT|M24.071|ICD10CM|Loose body in right ankle|Loose body in right ankle +C2894733|T020|AB|M24.072|ICD10CM|Loose body in left ankle|Loose body in left ankle +C2894733|T020|PT|M24.072|ICD10CM|Loose body in left ankle|Loose body in left ankle +C2894734|T020|AB|M24.073|ICD10CM|Loose body in unspecified ankle|Loose body in unspecified ankle +C2894734|T020|PT|M24.073|ICD10CM|Loose body in unspecified ankle|Loose body in unspecified ankle +C2894735|T020|AB|M24.074|ICD10CM|Loose body in right toe joint(s)|Loose body in right toe joint(s) +C2894735|T020|PT|M24.074|ICD10CM|Loose body in right toe joint(s)|Loose body in right toe joint(s) +C2894736|T020|AB|M24.075|ICD10CM|Loose body in left toe joint(s)|Loose body in left toe joint(s) +C2894736|T020|PT|M24.075|ICD10CM|Loose body in left toe joint(s)|Loose body in left toe joint(s) +C2894737|T020|AB|M24.076|ICD10CM|Loose body in unspecified toe joints|Loose body in unspecified toe joints +C2894737|T020|PT|M24.076|ICD10CM|Loose body in unspecified toe joints|Loose body in unspecified toe joints +C2894738|T020|AB|M24.08|ICD10CM|Loose body, other site|Loose body, other site +C2894738|T020|PT|M24.08|ICD10CM|Loose body, other site|Loose body, other site +C0477579|T047|PT|M24.1|ICD10|Other articular cartilage disorders|Other articular cartilage disorders +C0477579|T047|HT|M24.1|ICD10CM|Other articular cartilage disorders|Other articular cartilage disorders +C0477579|T047|AB|M24.1|ICD10CM|Other articular cartilage disorders|Other articular cartilage disorders +C0263800|T047|AB|M24.10|ICD10CM|Other articular cartilage disorders, unspecified site|Other articular cartilage disorders, unspecified site +C0263800|T047|PT|M24.10|ICD10CM|Other articular cartilage disorders, unspecified site|Other articular cartilage disorders, unspecified site +C2894739|T047|AB|M24.11|ICD10CM|Other articular cartilage disorders, shoulder|Other articular cartilage disorders, shoulder +C2894739|T047|HT|M24.11|ICD10CM|Other articular cartilage disorders, shoulder|Other articular cartilage disorders, shoulder +C2894740|T047|AB|M24.111|ICD10CM|Other articular cartilage disorders, right shoulder|Other articular cartilage disorders, right shoulder +C2894740|T047|PT|M24.111|ICD10CM|Other articular cartilage disorders, right shoulder|Other articular cartilage disorders, right shoulder +C2894741|T047|AB|M24.112|ICD10CM|Other articular cartilage disorders, left shoulder|Other articular cartilage disorders, left shoulder +C2894741|T047|PT|M24.112|ICD10CM|Other articular cartilage disorders, left shoulder|Other articular cartilage disorders, left shoulder +C2894742|T047|AB|M24.119|ICD10CM|Other articular cartilage disorders, unspecified shoulder|Other articular cartilage disorders, unspecified shoulder +C2894742|T047|PT|M24.119|ICD10CM|Other articular cartilage disorders, unspecified shoulder|Other articular cartilage disorders, unspecified shoulder +C2894743|T047|AB|M24.12|ICD10CM|Other articular cartilage disorders, elbow|Other articular cartilage disorders, elbow +C2894743|T047|HT|M24.12|ICD10CM|Other articular cartilage disorders, elbow|Other articular cartilage disorders, elbow +C2894744|T047|AB|M24.121|ICD10CM|Other articular cartilage disorders, right elbow|Other articular cartilage disorders, right elbow +C2894744|T047|PT|M24.121|ICD10CM|Other articular cartilage disorders, right elbow|Other articular cartilage disorders, right elbow +C2894745|T047|AB|M24.122|ICD10CM|Other articular cartilage disorders, left elbow|Other articular cartilage disorders, left elbow +C2894745|T047|PT|M24.122|ICD10CM|Other articular cartilage disorders, left elbow|Other articular cartilage disorders, left elbow +C2894746|T047|AB|M24.129|ICD10CM|Other articular cartilage disorders, unspecified elbow|Other articular cartilage disorders, unspecified elbow +C2894746|T047|PT|M24.129|ICD10CM|Other articular cartilage disorders, unspecified elbow|Other articular cartilage disorders, unspecified elbow +C2894747|T047|AB|M24.13|ICD10CM|Other articular cartilage disorders, wrist|Other articular cartilage disorders, wrist +C2894747|T047|HT|M24.13|ICD10CM|Other articular cartilage disorders, wrist|Other articular cartilage disorders, wrist +C2894748|T047|AB|M24.131|ICD10CM|Other articular cartilage disorders, right wrist|Other articular cartilage disorders, right wrist +C2894748|T047|PT|M24.131|ICD10CM|Other articular cartilage disorders, right wrist|Other articular cartilage disorders, right wrist +C2894749|T047|AB|M24.132|ICD10CM|Other articular cartilage disorders, left wrist|Other articular cartilage disorders, left wrist +C2894749|T047|PT|M24.132|ICD10CM|Other articular cartilage disorders, left wrist|Other articular cartilage disorders, left wrist +C2894750|T047|AB|M24.139|ICD10CM|Other articular cartilage disorders, unspecified wrist|Other articular cartilage disorders, unspecified wrist +C2894750|T047|PT|M24.139|ICD10CM|Other articular cartilage disorders, unspecified wrist|Other articular cartilage disorders, unspecified wrist +C0838143|T047|HT|M24.14|ICD10CM|Other articular cartilage disorders, hand|Other articular cartilage disorders, hand +C0838143|T047|AB|M24.14|ICD10CM|Other articular cartilage disorders, hand|Other articular cartilage disorders, hand +C2894751|T047|AB|M24.141|ICD10CM|Other articular cartilage disorders, right hand|Other articular cartilage disorders, right hand +C2894751|T047|PT|M24.141|ICD10CM|Other articular cartilage disorders, right hand|Other articular cartilage disorders, right hand +C2894752|T047|AB|M24.142|ICD10CM|Other articular cartilage disorders, left hand|Other articular cartilage disorders, left hand +C2894752|T047|PT|M24.142|ICD10CM|Other articular cartilage disorders, left hand|Other articular cartilage disorders, left hand +C2894753|T047|AB|M24.149|ICD10CM|Other articular cartilage disorders, unspecified hand|Other articular cartilage disorders, unspecified hand +C2894753|T047|PT|M24.149|ICD10CM|Other articular cartilage disorders, unspecified hand|Other articular cartilage disorders, unspecified hand +C2894754|T047|AB|M24.15|ICD10CM|Other articular cartilage disorders, hip|Other articular cartilage disorders, hip +C2894754|T047|HT|M24.15|ICD10CM|Other articular cartilage disorders, hip|Other articular cartilage disorders, hip +C2894755|T047|AB|M24.151|ICD10CM|Other articular cartilage disorders, right hip|Other articular cartilage disorders, right hip +C2894755|T047|PT|M24.151|ICD10CM|Other articular cartilage disorders, right hip|Other articular cartilage disorders, right hip +C2894756|T047|AB|M24.152|ICD10CM|Other articular cartilage disorders, left hip|Other articular cartilage disorders, left hip +C2894756|T047|PT|M24.152|ICD10CM|Other articular cartilage disorders, left hip|Other articular cartilage disorders, left hip +C2894757|T047|AB|M24.159|ICD10CM|Other articular cartilage disorders, unspecified hip|Other articular cartilage disorders, unspecified hip +C2894757|T047|PT|M24.159|ICD10CM|Other articular cartilage disorders, unspecified hip|Other articular cartilage disorders, unspecified hip +C0838145|T047|HT|M24.17|ICD10CM|Other articular cartilage disorders, ankle and foot|Other articular cartilage disorders, ankle and foot +C0838145|T047|AB|M24.17|ICD10CM|Other articular cartilage disorders, ankle and foot|Other articular cartilage disorders, ankle and foot +C2894758|T047|AB|M24.171|ICD10CM|Other articular cartilage disorders, right ankle|Other articular cartilage disorders, right ankle +C2894758|T047|PT|M24.171|ICD10CM|Other articular cartilage disorders, right ankle|Other articular cartilage disorders, right ankle +C2894759|T047|AB|M24.172|ICD10CM|Other articular cartilage disorders, left ankle|Other articular cartilage disorders, left ankle +C2894759|T047|PT|M24.172|ICD10CM|Other articular cartilage disorders, left ankle|Other articular cartilage disorders, left ankle +C2894760|T047|AB|M24.173|ICD10CM|Other articular cartilage disorders, unspecified ankle|Other articular cartilage disorders, unspecified ankle +C2894760|T047|PT|M24.173|ICD10CM|Other articular cartilage disorders, unspecified ankle|Other articular cartilage disorders, unspecified ankle +C2894761|T047|AB|M24.174|ICD10CM|Other articular cartilage disorders, right foot|Other articular cartilage disorders, right foot +C2894761|T047|PT|M24.174|ICD10CM|Other articular cartilage disorders, right foot|Other articular cartilage disorders, right foot +C2894762|T047|AB|M24.175|ICD10CM|Other articular cartilage disorders, left foot|Other articular cartilage disorders, left foot +C2894762|T047|PT|M24.175|ICD10CM|Other articular cartilage disorders, left foot|Other articular cartilage disorders, left foot +C2894763|T047|AB|M24.176|ICD10CM|Other articular cartilage disorders, unspecified foot|Other articular cartilage disorders, unspecified foot +C2894763|T047|PT|M24.176|ICD10CM|Other articular cartilage disorders, unspecified foot|Other articular cartilage disorders, unspecified foot +C0263976|T047|PT|M24.2|ICD10|Disorder of ligament|Disorder of ligament +C0263976|T047|HT|M24.2|ICD10CM|Disorder of ligament|Disorder of ligament +C0263976|T047|AB|M24.2|ICD10CM|Disorder of ligament|Disorder of ligament +C2894764|T033|ET|M24.2|ICD10CM|Instability secondary to old ligament injury|Instability secondary to old ligament injury +C0158359|T046|ET|M24.2|ICD10CM|Ligamentous laxity NOS|Ligamentous laxity NOS +C0263976|T047|AB|M24.20|ICD10CM|Disorder of ligament, unspecified site|Disorder of ligament, unspecified site +C0263976|T047|PT|M24.20|ICD10CM|Disorder of ligament, unspecified site|Disorder of ligament, unspecified site +C2894765|T047|AB|M24.21|ICD10CM|Disorder of ligament, shoulder|Disorder of ligament, shoulder +C2894765|T047|HT|M24.21|ICD10CM|Disorder of ligament, shoulder|Disorder of ligament, shoulder +C2894766|T047|AB|M24.211|ICD10CM|Disorder of ligament, right shoulder|Disorder of ligament, right shoulder +C2894766|T047|PT|M24.211|ICD10CM|Disorder of ligament, right shoulder|Disorder of ligament, right shoulder +C2894767|T047|AB|M24.212|ICD10CM|Disorder of ligament, left shoulder|Disorder of ligament, left shoulder +C2894767|T047|PT|M24.212|ICD10CM|Disorder of ligament, left shoulder|Disorder of ligament, left shoulder +C2894768|T047|AB|M24.219|ICD10CM|Disorder of ligament, unspecified shoulder|Disorder of ligament, unspecified shoulder +C2894768|T047|PT|M24.219|ICD10CM|Disorder of ligament, unspecified shoulder|Disorder of ligament, unspecified shoulder +C2894769|T047|AB|M24.22|ICD10CM|Disorder of ligament, elbow|Disorder of ligament, elbow +C2894769|T047|HT|M24.22|ICD10CM|Disorder of ligament, elbow|Disorder of ligament, elbow +C2894770|T047|AB|M24.221|ICD10CM|Disorder of ligament, right elbow|Disorder of ligament, right elbow +C2894770|T047|PT|M24.221|ICD10CM|Disorder of ligament, right elbow|Disorder of ligament, right elbow +C2894771|T047|AB|M24.222|ICD10CM|Disorder of ligament, left elbow|Disorder of ligament, left elbow +C2894771|T047|PT|M24.222|ICD10CM|Disorder of ligament, left elbow|Disorder of ligament, left elbow +C2894772|T047|AB|M24.229|ICD10CM|Disorder of ligament, unspecified elbow|Disorder of ligament, unspecified elbow +C2894772|T047|PT|M24.229|ICD10CM|Disorder of ligament, unspecified elbow|Disorder of ligament, unspecified elbow +C2894773|T047|AB|M24.23|ICD10CM|Disorder of ligament, wrist|Disorder of ligament, wrist +C2894773|T047|HT|M24.23|ICD10CM|Disorder of ligament, wrist|Disorder of ligament, wrist +C2894774|T047|AB|M24.231|ICD10CM|Disorder of ligament, right wrist|Disorder of ligament, right wrist +C2894774|T047|PT|M24.231|ICD10CM|Disorder of ligament, right wrist|Disorder of ligament, right wrist +C2894775|T047|AB|M24.232|ICD10CM|Disorder of ligament, left wrist|Disorder of ligament, left wrist +C2894775|T047|PT|M24.232|ICD10CM|Disorder of ligament, left wrist|Disorder of ligament, left wrist +C2894776|T047|AB|M24.239|ICD10CM|Disorder of ligament, unspecified wrist|Disorder of ligament, unspecified wrist +C2894776|T047|PT|M24.239|ICD10CM|Disorder of ligament, unspecified wrist|Disorder of ligament, unspecified wrist +C0838152|T047|HT|M24.24|ICD10CM|Disorder of ligament, hand|Disorder of ligament, hand +C0838152|T047|AB|M24.24|ICD10CM|Disorder of ligament, hand|Disorder of ligament, hand +C2894777|T047|AB|M24.241|ICD10CM|Disorder of ligament, right hand|Disorder of ligament, right hand +C2894777|T047|PT|M24.241|ICD10CM|Disorder of ligament, right hand|Disorder of ligament, right hand +C2894778|T047|AB|M24.242|ICD10CM|Disorder of ligament, left hand|Disorder of ligament, left hand +C2894778|T047|PT|M24.242|ICD10CM|Disorder of ligament, left hand|Disorder of ligament, left hand +C2894779|T047|AB|M24.249|ICD10CM|Disorder of ligament, unspecified hand|Disorder of ligament, unspecified hand +C2894779|T047|PT|M24.249|ICD10CM|Disorder of ligament, unspecified hand|Disorder of ligament, unspecified hand +C2894780|T047|AB|M24.25|ICD10CM|Disorder of ligament, hip|Disorder of ligament, hip +C2894780|T047|HT|M24.25|ICD10CM|Disorder of ligament, hip|Disorder of ligament, hip +C2894781|T047|AB|M24.251|ICD10CM|Disorder of ligament, right hip|Disorder of ligament, right hip +C2894781|T047|PT|M24.251|ICD10CM|Disorder of ligament, right hip|Disorder of ligament, right hip +C2894782|T047|AB|M24.252|ICD10CM|Disorder of ligament, left hip|Disorder of ligament, left hip +C2894782|T047|PT|M24.252|ICD10CM|Disorder of ligament, left hip|Disorder of ligament, left hip +C2894783|T047|AB|M24.259|ICD10CM|Disorder of ligament, unspecified hip|Disorder of ligament, unspecified hip +C2894783|T047|PT|M24.259|ICD10CM|Disorder of ligament, unspecified hip|Disorder of ligament, unspecified hip +C0838154|T047|HT|M24.27|ICD10CM|Disorder of ligament, ankle and foot|Disorder of ligament, ankle and foot +C0838154|T047|AB|M24.27|ICD10CM|Disorder of ligament, ankle and foot|Disorder of ligament, ankle and foot +C2894784|T047|AB|M24.271|ICD10CM|Disorder of ligament, right ankle|Disorder of ligament, right ankle +C2894784|T047|PT|M24.271|ICD10CM|Disorder of ligament, right ankle|Disorder of ligament, right ankle +C2894785|T047|AB|M24.272|ICD10CM|Disorder of ligament, left ankle|Disorder of ligament, left ankle +C2894785|T047|PT|M24.272|ICD10CM|Disorder of ligament, left ankle|Disorder of ligament, left ankle +C2894786|T047|AB|M24.273|ICD10CM|Disorder of ligament, unspecified ankle|Disorder of ligament, unspecified ankle +C2894786|T047|PT|M24.273|ICD10CM|Disorder of ligament, unspecified ankle|Disorder of ligament, unspecified ankle +C2894787|T047|AB|M24.274|ICD10CM|Disorder of ligament, right foot|Disorder of ligament, right foot +C2894787|T047|PT|M24.274|ICD10CM|Disorder of ligament, right foot|Disorder of ligament, right foot +C2894788|T047|AB|M24.275|ICD10CM|Disorder of ligament, left foot|Disorder of ligament, left foot +C2894788|T047|PT|M24.275|ICD10CM|Disorder of ligament, left foot|Disorder of ligament, left foot +C2894789|T047|AB|M24.276|ICD10CM|Disorder of ligament, unspecified foot|Disorder of ligament, unspecified foot +C2894789|T047|PT|M24.276|ICD10CM|Disorder of ligament, unspecified foot|Disorder of ligament, unspecified foot +C2894790|T047|AB|M24.28|ICD10CM|Disorder of ligament, vertebrae|Disorder of ligament, vertebrae +C2894790|T047|PT|M24.28|ICD10CM|Disorder of ligament, vertebrae|Disorder of ligament, vertebrae +C0494936|T047|PT|M24.3|ICD10|Pathological dislocation and subluxation of joint, not elsewhere classified|Pathological dislocation and subluxation of joint, not elsewhere classified +C2894791|T046|AB|M24.3|ICD10CM|Pathological dislocation of joint, not elsewhere classified|Pathological dislocation of joint, not elsewhere classified +C2894791|T046|HT|M24.3|ICD10CM|Pathological dislocation of joint, not elsewhere classified|Pathological dislocation of joint, not elsewhere classified +C2894792|T046|AB|M24.30|ICD10CM|Pathological dislocation of unsp joint, NEC|Pathological dislocation of unsp joint, NEC +C2894792|T046|PT|M24.30|ICD10CM|Pathological dislocation of unspecified joint, not elsewhere classified|Pathological dislocation of unspecified joint, not elsewhere classified +C2894793|T046|AB|M24.31|ICD10CM|Pathological dislocation of shoulder, NEC|Pathological dislocation of shoulder, NEC +C2894793|T046|HT|M24.31|ICD10CM|Pathological dislocation of shoulder, not elsewhere classified|Pathological dislocation of shoulder, not elsewhere classified +C2894794|T046|AB|M24.311|ICD10CM|Pathological dislocation of right shoulder, NEC|Pathological dislocation of right shoulder, NEC +C2894794|T046|PT|M24.311|ICD10CM|Pathological dislocation of right shoulder, not elsewhere classified|Pathological dislocation of right shoulder, not elsewhere classified +C2894795|T046|AB|M24.312|ICD10CM|Pathological dislocation of left shoulder, NEC|Pathological dislocation of left shoulder, NEC +C2894795|T046|PT|M24.312|ICD10CM|Pathological dislocation of left shoulder, not elsewhere classified|Pathological dislocation of left shoulder, not elsewhere classified +C2894796|T046|AB|M24.319|ICD10CM|Pathological dislocation of unsp shoulder, NEC|Pathological dislocation of unsp shoulder, NEC +C2894796|T046|PT|M24.319|ICD10CM|Pathological dislocation of unspecified shoulder, not elsewhere classified|Pathological dislocation of unspecified shoulder, not elsewhere classified +C2894797|T046|AB|M24.32|ICD10CM|Pathological dislocation of elbow, not elsewhere classified|Pathological dislocation of elbow, not elsewhere classified +C2894797|T046|HT|M24.32|ICD10CM|Pathological dislocation of elbow, not elsewhere classified|Pathological dislocation of elbow, not elsewhere classified +C2894798|T046|AB|M24.321|ICD10CM|Pathological dislocation of right elbow, NEC|Pathological dislocation of right elbow, NEC +C2894798|T046|PT|M24.321|ICD10CM|Pathological dislocation of right elbow, not elsewhere classified|Pathological dislocation of right elbow, not elsewhere classified +C2894799|T046|AB|M24.322|ICD10CM|Pathological dislocation of left elbow, NEC|Pathological dislocation of left elbow, NEC +C2894799|T046|PT|M24.322|ICD10CM|Pathological dislocation of left elbow, not elsewhere classified|Pathological dislocation of left elbow, not elsewhere classified +C2894800|T046|AB|M24.329|ICD10CM|Pathological dislocation of unsp elbow, NEC|Pathological dislocation of unsp elbow, NEC +C2894800|T046|PT|M24.329|ICD10CM|Pathological dislocation of unspecified elbow, not elsewhere classified|Pathological dislocation of unspecified elbow, not elsewhere classified +C2894801|T046|AB|M24.33|ICD10CM|Pathological dislocation of wrist, not elsewhere classified|Pathological dislocation of wrist, not elsewhere classified +C2894801|T046|HT|M24.33|ICD10CM|Pathological dislocation of wrist, not elsewhere classified|Pathological dislocation of wrist, not elsewhere classified +C2894802|T046|AB|M24.331|ICD10CM|Pathological dislocation of right wrist, NEC|Pathological dislocation of right wrist, NEC +C2894802|T046|PT|M24.331|ICD10CM|Pathological dislocation of right wrist, not elsewhere classified|Pathological dislocation of right wrist, not elsewhere classified +C2894803|T046|AB|M24.332|ICD10CM|Pathological dislocation of left wrist, NEC|Pathological dislocation of left wrist, NEC +C2894803|T046|PT|M24.332|ICD10CM|Pathological dislocation of left wrist, not elsewhere classified|Pathological dislocation of left wrist, not elsewhere classified +C2894804|T046|AB|M24.339|ICD10CM|Pathological dislocation of unsp wrist, NEC|Pathological dislocation of unsp wrist, NEC +C2894804|T046|PT|M24.339|ICD10CM|Pathological dislocation of unspecified wrist, not elsewhere classified|Pathological dislocation of unspecified wrist, not elsewhere classified +C2894805|T046|AB|M24.34|ICD10CM|Pathological dislocation of hand, not elsewhere classified|Pathological dislocation of hand, not elsewhere classified +C2894805|T046|HT|M24.34|ICD10CM|Pathological dislocation of hand, not elsewhere classified|Pathological dislocation of hand, not elsewhere classified +C2894806|T046|AB|M24.341|ICD10CM|Pathological dislocation of right hand, NEC|Pathological dislocation of right hand, NEC +C2894806|T046|PT|M24.341|ICD10CM|Pathological dislocation of right hand, not elsewhere classified|Pathological dislocation of right hand, not elsewhere classified +C2894807|T046|AB|M24.342|ICD10CM|Pathological dislocation of left hand, NEC|Pathological dislocation of left hand, NEC +C2894807|T046|PT|M24.342|ICD10CM|Pathological dislocation of left hand, not elsewhere classified|Pathological dislocation of left hand, not elsewhere classified +C2894808|T046|AB|M24.349|ICD10CM|Pathological dislocation of unsp hand, NEC|Pathological dislocation of unsp hand, NEC +C2894808|T046|PT|M24.349|ICD10CM|Pathological dislocation of unspecified hand, not elsewhere classified|Pathological dislocation of unspecified hand, not elsewhere classified +C2894809|T046|AB|M24.35|ICD10CM|Pathological dislocation of hip, not elsewhere classified|Pathological dislocation of hip, not elsewhere classified +C2894809|T046|HT|M24.35|ICD10CM|Pathological dislocation of hip, not elsewhere classified|Pathological dislocation of hip, not elsewhere classified +C2894810|T046|AB|M24.351|ICD10CM|Pathological dislocation of right hip, NEC|Pathological dislocation of right hip, NEC +C2894810|T046|PT|M24.351|ICD10CM|Pathological dislocation of right hip, not elsewhere classified|Pathological dislocation of right hip, not elsewhere classified +C2894811|T046|AB|M24.352|ICD10CM|Pathological dislocation of left hip, NEC|Pathological dislocation of left hip, NEC +C2894811|T046|PT|M24.352|ICD10CM|Pathological dislocation of left hip, not elsewhere classified|Pathological dislocation of left hip, not elsewhere classified +C2894812|T046|AB|M24.359|ICD10CM|Pathological dislocation of unsp hip, NEC|Pathological dislocation of unsp hip, NEC +C2894812|T046|PT|M24.359|ICD10CM|Pathological dislocation of unspecified hip, not elsewhere classified|Pathological dislocation of unspecified hip, not elsewhere classified +C2894813|T046|AB|M24.36|ICD10CM|Pathological dislocation of knee, not elsewhere classified|Pathological dislocation of knee, not elsewhere classified +C2894813|T046|HT|M24.36|ICD10CM|Pathological dislocation of knee, not elsewhere classified|Pathological dislocation of knee, not elsewhere classified +C2894814|T046|AB|M24.361|ICD10CM|Pathological dislocation of right knee, NEC|Pathological dislocation of right knee, NEC +C2894814|T046|PT|M24.361|ICD10CM|Pathological dislocation of right knee, not elsewhere classified|Pathological dislocation of right knee, not elsewhere classified +C2894815|T046|AB|M24.362|ICD10CM|Pathological dislocation of left knee, NEC|Pathological dislocation of left knee, NEC +C2894815|T046|PT|M24.362|ICD10CM|Pathological dislocation of left knee, not elsewhere classified|Pathological dislocation of left knee, not elsewhere classified +C2894816|T046|AB|M24.369|ICD10CM|Pathological dislocation of unsp knee, NEC|Pathological dislocation of unsp knee, NEC +C2894816|T046|PT|M24.369|ICD10CM|Pathological dislocation of unspecified knee, not elsewhere classified|Pathological dislocation of unspecified knee, not elsewhere classified +C2894817|T046|AB|M24.37|ICD10CM|Pathological dislocation of ankle and foot, NEC|Pathological dislocation of ankle and foot, NEC +C2894817|T046|HT|M24.37|ICD10CM|Pathological dislocation of ankle and foot, not elsewhere classified|Pathological dislocation of ankle and foot, not elsewhere classified +C2894818|T046|AB|M24.371|ICD10CM|Pathological dislocation of right ankle, NEC|Pathological dislocation of right ankle, NEC +C2894818|T046|PT|M24.371|ICD10CM|Pathological dislocation of right ankle, not elsewhere classified|Pathological dislocation of right ankle, not elsewhere classified +C2894819|T046|AB|M24.372|ICD10CM|Pathological dislocation of left ankle, NEC|Pathological dislocation of left ankle, NEC +C2894819|T046|PT|M24.372|ICD10CM|Pathological dislocation of left ankle, not elsewhere classified|Pathological dislocation of left ankle, not elsewhere classified +C2894820|T046|AB|M24.373|ICD10CM|Pathological dislocation of unsp ankle, NEC|Pathological dislocation of unsp ankle, NEC +C2894820|T046|PT|M24.373|ICD10CM|Pathological dislocation of unspecified ankle, not elsewhere classified|Pathological dislocation of unspecified ankle, not elsewhere classified +C2894821|T046|AB|M24.374|ICD10CM|Pathological dislocation of right foot, NEC|Pathological dislocation of right foot, NEC +C2894821|T046|PT|M24.374|ICD10CM|Pathological dislocation of right foot, not elsewhere classified|Pathological dislocation of right foot, not elsewhere classified +C2894822|T046|AB|M24.375|ICD10CM|Pathological dislocation of left foot, NEC|Pathological dislocation of left foot, NEC +C2894822|T046|PT|M24.375|ICD10CM|Pathological dislocation of left foot, not elsewhere classified|Pathological dislocation of left foot, not elsewhere classified +C2894823|T046|AB|M24.376|ICD10CM|Pathological dislocation of unsp foot, NEC|Pathological dislocation of unsp foot, NEC +C2894823|T046|PT|M24.376|ICD10CM|Pathological dislocation of unspecified foot, not elsewhere classified|Pathological dislocation of unspecified foot, not elsewhere classified +C0494937|T020|PT|M24.4|ICD10|Recurrent dislocation and subluxation of joint|Recurrent dislocation and subluxation of joint +C0158100|T037|HT|M24.4|ICD10CM|Recurrent dislocation of joint|Recurrent dislocation of joint +C0158100|T037|AB|M24.4|ICD10CM|Recurrent dislocation of joint|Recurrent dislocation of joint +C0409373|T037|ET|M24.4|ICD10CM|Recurrent subluxation of joint|Recurrent subluxation of joint +C2894824|T046|AB|M24.40|ICD10CM|Recurrent dislocation, unspecified joint|Recurrent dislocation, unspecified joint +C2894824|T046|PT|M24.40|ICD10CM|Recurrent dislocation, unspecified joint|Recurrent dislocation, unspecified joint +C0409415|T037|AB|M24.41|ICD10CM|Recurrent dislocation, shoulder|Recurrent dislocation, shoulder +C0409415|T037|HT|M24.41|ICD10CM|Recurrent dislocation, shoulder|Recurrent dislocation, shoulder +C2894825|T046|AB|M24.411|ICD10CM|Recurrent dislocation, right shoulder|Recurrent dislocation, right shoulder +C2894825|T046|PT|M24.411|ICD10CM|Recurrent dislocation, right shoulder|Recurrent dislocation, right shoulder +C2894826|T046|AB|M24.412|ICD10CM|Recurrent dislocation, left shoulder|Recurrent dislocation, left shoulder +C2894826|T046|PT|M24.412|ICD10CM|Recurrent dislocation, left shoulder|Recurrent dislocation, left shoulder +C2894827|T046|AB|M24.419|ICD10CM|Recurrent dislocation, unspecified shoulder|Recurrent dislocation, unspecified shoulder +C2894827|T046|PT|M24.419|ICD10CM|Recurrent dislocation, unspecified shoulder|Recurrent dislocation, unspecified shoulder +C0409406|T037|AB|M24.42|ICD10CM|Recurrent dislocation, elbow|Recurrent dislocation, elbow +C0409406|T037|HT|M24.42|ICD10CM|Recurrent dislocation, elbow|Recurrent dislocation, elbow +C2894828|T037|AB|M24.421|ICD10CM|Recurrent dislocation, right elbow|Recurrent dislocation, right elbow +C2894828|T037|PT|M24.421|ICD10CM|Recurrent dislocation, right elbow|Recurrent dislocation, right elbow +C2894829|T037|AB|M24.422|ICD10CM|Recurrent dislocation, left elbow|Recurrent dislocation, left elbow +C2894829|T037|PT|M24.422|ICD10CM|Recurrent dislocation, left elbow|Recurrent dislocation, left elbow +C2894830|T046|AB|M24.429|ICD10CM|Recurrent dislocation, unspecified elbow|Recurrent dislocation, unspecified elbow +C2894830|T046|PT|M24.429|ICD10CM|Recurrent dislocation, unspecified elbow|Recurrent dislocation, unspecified elbow +C0158103|T037|AB|M24.43|ICD10CM|Recurrent dislocation, wrist|Recurrent dislocation, wrist +C0158103|T037|HT|M24.43|ICD10CM|Recurrent dislocation, wrist|Recurrent dislocation, wrist +C2894831|T046|AB|M24.431|ICD10CM|Recurrent dislocation, right wrist|Recurrent dislocation, right wrist +C2894831|T046|PT|M24.431|ICD10CM|Recurrent dislocation, right wrist|Recurrent dislocation, right wrist +C2894832|T046|AB|M24.432|ICD10CM|Recurrent dislocation, left wrist|Recurrent dislocation, left wrist +C2894832|T046|PT|M24.432|ICD10CM|Recurrent dislocation, left wrist|Recurrent dislocation, left wrist +C2894833|T047|AB|M24.439|ICD10CM|Recurrent dislocation, unspecified wrist|Recurrent dislocation, unspecified wrist +C2894833|T047|PT|M24.439|ICD10CM|Recurrent dislocation, unspecified wrist|Recurrent dislocation, unspecified wrist +C2894834|T046|AB|M24.44|ICD10CM|Recurrent dislocation, hand and finger(s)|Recurrent dislocation, hand and finger(s) +C2894834|T046|HT|M24.44|ICD10CM|Recurrent dislocation, hand and finger(s)|Recurrent dislocation, hand and finger(s) +C2894835|T046|AB|M24.441|ICD10CM|Recurrent dislocation, right hand|Recurrent dislocation, right hand +C2894835|T046|PT|M24.441|ICD10CM|Recurrent dislocation, right hand|Recurrent dislocation, right hand +C2894836|T046|AB|M24.442|ICD10CM|Recurrent dislocation, left hand|Recurrent dislocation, left hand +C2894836|T046|PT|M24.442|ICD10CM|Recurrent dislocation, left hand|Recurrent dislocation, left hand +C2894837|T046|AB|M24.443|ICD10CM|Recurrent dislocation, unspecified hand|Recurrent dislocation, unspecified hand +C2894837|T046|PT|M24.443|ICD10CM|Recurrent dislocation, unspecified hand|Recurrent dislocation, unspecified hand +C2894838|T046|AB|M24.444|ICD10CM|Recurrent dislocation, right finger|Recurrent dislocation, right finger +C2894838|T046|PT|M24.444|ICD10CM|Recurrent dislocation, right finger|Recurrent dislocation, right finger +C2894839|T046|AB|M24.445|ICD10CM|Recurrent dislocation, left finger|Recurrent dislocation, left finger +C2894839|T046|PT|M24.445|ICD10CM|Recurrent dislocation, left finger|Recurrent dislocation, left finger +C2894840|T046|AB|M24.446|ICD10CM|Recurrent dislocation, unspecified finger|Recurrent dislocation, unspecified finger +C2894840|T046|PT|M24.446|ICD10CM|Recurrent dislocation, unspecified finger|Recurrent dislocation, unspecified finger +C0409402|T037|AB|M24.45|ICD10CM|Recurrent dislocation, hip|Recurrent dislocation, hip +C0409402|T037|HT|M24.45|ICD10CM|Recurrent dislocation, hip|Recurrent dislocation, hip +C2894841|T046|AB|M24.451|ICD10CM|Recurrent dislocation, right hip|Recurrent dislocation, right hip +C2894841|T046|PT|M24.451|ICD10CM|Recurrent dislocation, right hip|Recurrent dislocation, right hip +C2894842|T046|AB|M24.452|ICD10CM|Recurrent dislocation, left hip|Recurrent dislocation, left hip +C2894842|T046|PT|M24.452|ICD10CM|Recurrent dislocation, left hip|Recurrent dislocation, left hip +C2894843|T046|AB|M24.459|ICD10CM|Recurrent dislocation, unspecified hip|Recurrent dislocation, unspecified hip +C2894843|T046|PT|M24.459|ICD10CM|Recurrent dislocation, unspecified hip|Recurrent dislocation, unspecified hip +C0409400|T046|AB|M24.46|ICD10CM|Recurrent dislocation, knee|Recurrent dislocation, knee +C0409400|T046|HT|M24.46|ICD10CM|Recurrent dislocation, knee|Recurrent dislocation, knee +C2894844|T047|AB|M24.461|ICD10CM|Recurrent dislocation, right knee|Recurrent dislocation, right knee +C2894844|T047|PT|M24.461|ICD10CM|Recurrent dislocation, right knee|Recurrent dislocation, right knee +C2894845|T047|AB|M24.462|ICD10CM|Recurrent dislocation, left knee|Recurrent dislocation, left knee +C2894845|T047|PT|M24.462|ICD10CM|Recurrent dislocation, left knee|Recurrent dislocation, left knee +C2894846|T047|AB|M24.469|ICD10CM|Recurrent dislocation, unspecified knee|Recurrent dislocation, unspecified knee +C2894846|T047|PT|M24.469|ICD10CM|Recurrent dislocation, unspecified knee|Recurrent dislocation, unspecified knee +C2894847|T046|AB|M24.47|ICD10CM|Recurrent dislocation, ankle, foot and toes|Recurrent dislocation, ankle, foot and toes +C2894847|T046|HT|M24.47|ICD10CM|Recurrent dislocation, ankle, foot and toes|Recurrent dislocation, ankle, foot and toes +C2894848|T046|AB|M24.471|ICD10CM|Recurrent dislocation, right ankle|Recurrent dislocation, right ankle +C2894848|T046|PT|M24.471|ICD10CM|Recurrent dislocation, right ankle|Recurrent dislocation, right ankle +C2894849|T046|AB|M24.472|ICD10CM|Recurrent dislocation, left ankle|Recurrent dislocation, left ankle +C2894849|T046|PT|M24.472|ICD10CM|Recurrent dislocation, left ankle|Recurrent dislocation, left ankle +C2894850|T046|AB|M24.473|ICD10CM|Recurrent dislocation, unspecified ankle|Recurrent dislocation, unspecified ankle +C2894850|T046|PT|M24.473|ICD10CM|Recurrent dislocation, unspecified ankle|Recurrent dislocation, unspecified ankle +C2894851|T046|AB|M24.474|ICD10CM|Recurrent dislocation, right foot|Recurrent dislocation, right foot +C2894851|T046|PT|M24.474|ICD10CM|Recurrent dislocation, right foot|Recurrent dislocation, right foot +C2894852|T046|AB|M24.475|ICD10CM|Recurrent dislocation, left foot|Recurrent dislocation, left foot +C2894852|T046|PT|M24.475|ICD10CM|Recurrent dislocation, left foot|Recurrent dislocation, left foot +C2894853|T046|AB|M24.476|ICD10CM|Recurrent dislocation, unspecified foot|Recurrent dislocation, unspecified foot +C2894853|T046|PT|M24.476|ICD10CM|Recurrent dislocation, unspecified foot|Recurrent dislocation, unspecified foot +C2894854|T046|AB|M24.477|ICD10CM|Recurrent dislocation, right toe(s)|Recurrent dislocation, right toe(s) +C2894854|T046|PT|M24.477|ICD10CM|Recurrent dislocation, right toe(s)|Recurrent dislocation, right toe(s) +C2894855|T046|AB|M24.478|ICD10CM|Recurrent dislocation, left toe(s)|Recurrent dislocation, left toe(s) +C2894855|T046|PT|M24.478|ICD10CM|Recurrent dislocation, left toe(s)|Recurrent dislocation, left toe(s) +C2894856|T037|AB|M24.479|ICD10CM|Recurrent dislocation, unspecified toe(s)|Recurrent dislocation, unspecified toe(s) +C2894856|T037|PT|M24.479|ICD10CM|Recurrent dislocation, unspecified toe(s)|Recurrent dislocation, unspecified toe(s) +C0009918|T190|HT|M24.5|ICD10CM|Contracture of joint|Contracture of joint +C0009918|T190|AB|M24.5|ICD10CM|Contracture of joint|Contracture of joint +C0009918|T190|PT|M24.5|ICD10|Contracture of joint|Contracture of joint +C2894857|T020|AB|M24.50|ICD10CM|Contracture, unspecified joint|Contracture, unspecified joint +C2894857|T020|PT|M24.50|ICD10CM|Contracture, unspecified joint|Contracture, unspecified joint +C1848475|T020|AB|M24.51|ICD10CM|Contracture, shoulder|Contracture, shoulder +C1848475|T020|HT|M24.51|ICD10CM|Contracture, shoulder|Contracture, shoulder +C2174221|T020|AB|M24.511|ICD10CM|Contracture, right shoulder|Contracture, right shoulder +C2174221|T020|PT|M24.511|ICD10CM|Contracture, right shoulder|Contracture, right shoulder +C2894858|T020|AB|M24.512|ICD10CM|Contracture, left shoulder|Contracture, left shoulder +C2894858|T020|PT|M24.512|ICD10CM|Contracture, left shoulder|Contracture, left shoulder +C2894859|T020|AB|M24.519|ICD10CM|Contracture, unspecified shoulder|Contracture, unspecified shoulder +C2894859|T020|PT|M24.519|ICD10CM|Contracture, unspecified shoulder|Contracture, unspecified shoulder +C1833142|T020|AB|M24.52|ICD10CM|Contracture, elbow|Contracture, elbow +C1833142|T020|HT|M24.52|ICD10CM|Contracture, elbow|Contracture, elbow +C2108137|T020|AB|M24.521|ICD10CM|Contracture, right elbow|Contracture, right elbow +C2108137|T020|PT|M24.521|ICD10CM|Contracture, right elbow|Contracture, right elbow +C2108136|T020|AB|M24.522|ICD10CM|Contracture, left elbow|Contracture, left elbow +C2108136|T020|PT|M24.522|ICD10CM|Contracture, left elbow|Contracture, left elbow +C2894860|T020|AB|M24.529|ICD10CM|Contracture, unspecified elbow|Contracture, unspecified elbow +C2894860|T020|PT|M24.529|ICD10CM|Contracture, unspecified elbow|Contracture, unspecified elbow +C0343145|T020|AB|M24.53|ICD10CM|Contracture, wrist|Contracture, wrist +C0343145|T020|HT|M24.53|ICD10CM|Contracture, wrist|Contracture, wrist +C2108184|T020|AB|M24.531|ICD10CM|Contracture, right wrist|Contracture, right wrist +C2108184|T020|PT|M24.531|ICD10CM|Contracture, right wrist|Contracture, right wrist +C2108183|T020|AB|M24.532|ICD10CM|Contracture, left wrist|Contracture, left wrist +C2108183|T020|PT|M24.532|ICD10CM|Contracture, left wrist|Contracture, left wrist +C2894861|T020|AB|M24.539|ICD10CM|Contracture, unspecified wrist|Contracture, unspecified wrist +C2894861|T020|PT|M24.539|ICD10CM|Contracture, unspecified wrist|Contracture, unspecified wrist +C0158113|T190|AB|M24.54|ICD10CM|Contracture, hand|Contracture, hand +C0158113|T190|HT|M24.54|ICD10CM|Contracture, hand|Contracture, hand +C2108141|T020|AB|M24.541|ICD10CM|Contracture, right hand|Contracture, right hand +C2108141|T020|PT|M24.541|ICD10CM|Contracture, right hand|Contracture, right hand +C2108140|T020|AB|M24.542|ICD10CM|Contracture, left hand|Contracture, left hand +C2108140|T020|PT|M24.542|ICD10CM|Contracture, left hand|Contracture, left hand +C2894862|T020|AB|M24.549|ICD10CM|Contracture, unspecified hand|Contracture, unspecified hand +C2894862|T020|PT|M24.549|ICD10CM|Contracture, unspecified hand|Contracture, unspecified hand +C0019553|T020|AB|M24.55|ICD10CM|Contracture, hip|Contracture, hip +C0019553|T020|HT|M24.55|ICD10CM|Contracture, hip|Contracture, hip +C2108143|T020|AB|M24.551|ICD10CM|Contracture, right hip|Contracture, right hip +C2108143|T020|PT|M24.551|ICD10CM|Contracture, right hip|Contracture, right hip +C2108142|T020|AB|M24.552|ICD10CM|Contracture, left hip|Contracture, left hip +C2108142|T020|PT|M24.552|ICD10CM|Contracture, left hip|Contracture, left hip +C2894863|T020|AB|M24.559|ICD10CM|Contracture, unspecified hip|Contracture, unspecified hip +C2894863|T020|PT|M24.559|ICD10CM|Contracture, unspecified hip|Contracture, unspecified hip +C1837263|T190|AB|M24.56|ICD10CM|Contracture, knee|Contracture, knee +C1837263|T190|HT|M24.56|ICD10CM|Contracture, knee|Contracture, knee +C2108145|T020|AB|M24.561|ICD10CM|Contracture, right knee|Contracture, right knee +C2108145|T020|PT|M24.561|ICD10CM|Contracture, right knee|Contracture, right knee +C2108144|T020|AB|M24.562|ICD10CM|Contracture, left knee|Contracture, left knee +C2108144|T020|PT|M24.562|ICD10CM|Contracture, left knee|Contracture, left knee +C2894864|T020|AB|M24.569|ICD10CM|Contracture, unspecified knee|Contracture, unspecified knee +C2894864|T020|PT|M24.569|ICD10CM|Contracture, unspecified knee|Contracture, unspecified knee +C2894865|T020|AB|M24.57|ICD10CM|Contracture, ankle and foot|Contracture, ankle and foot +C2894865|T020|HT|M24.57|ICD10CM|Contracture, ankle and foot|Contracture, ankle and foot +C2174227|T020|AB|M24.571|ICD10CM|Contracture, right ankle|Contracture, right ankle +C2174227|T020|PT|M24.571|ICD10CM|Contracture, right ankle|Contracture, right ankle +C2139364|T020|AB|M24.572|ICD10CM|Contracture, left ankle|Contracture, left ankle +C2139364|T020|PT|M24.572|ICD10CM|Contracture, left ankle|Contracture, left ankle +C2894866|T020|AB|M24.573|ICD10CM|Contracture, unspecified ankle|Contracture, unspecified ankle +C2894866|T020|PT|M24.573|ICD10CM|Contracture, unspecified ankle|Contracture, unspecified ankle +C2108139|T020|AB|M24.574|ICD10CM|Contracture, right foot|Contracture, right foot +C2108139|T020|PT|M24.574|ICD10CM|Contracture, right foot|Contracture, right foot +C2108138|T020|AB|M24.575|ICD10CM|Contracture, left foot|Contracture, left foot +C2108138|T020|PT|M24.575|ICD10CM|Contracture, left foot|Contracture, left foot +C2894867|T020|AB|M24.576|ICD10CM|Contracture, unspecified foot|Contracture, unspecified foot +C2894867|T020|PT|M24.576|ICD10CM|Contracture, unspecified foot|Contracture, unspecified foot +C0003090|T046|HT|M24.6|ICD10CM|Ankylosis of joint|Ankylosis of joint +C0003090|T046|AB|M24.6|ICD10CM|Ankylosis of joint|Ankylosis of joint +C0003090|T046|PT|M24.6|ICD10|Ankylosis of joint|Ankylosis of joint +C2894868|T047|AB|M24.60|ICD10CM|Ankylosis, unspecified joint|Ankylosis, unspecified joint +C2894868|T047|PT|M24.60|ICD10CM|Ankylosis, unspecified joint|Ankylosis, unspecified joint +C1387848|T047|AB|M24.61|ICD10CM|Ankylosis, shoulder|Ankylosis, shoulder +C1387848|T047|HT|M24.61|ICD10CM|Ankylosis, shoulder|Ankylosis, shoulder +C2894869|T047|AB|M24.611|ICD10CM|Ankylosis, right shoulder|Ankylosis, right shoulder +C2894869|T047|PT|M24.611|ICD10CM|Ankylosis, right shoulder|Ankylosis, right shoulder +C2894870|T047|AB|M24.612|ICD10CM|Ankylosis, left shoulder|Ankylosis, left shoulder +C2894870|T047|PT|M24.612|ICD10CM|Ankylosis, left shoulder|Ankylosis, left shoulder +C2894871|T047|AB|M24.619|ICD10CM|Ankylosis, unspecified shoulder|Ankylosis, unspecified shoulder +C2894871|T047|PT|M24.619|ICD10CM|Ankylosis, unspecified shoulder|Ankylosis, unspecified shoulder +C0409477|T047|AB|M24.62|ICD10CM|Ankylosis, elbow|Ankylosis, elbow +C0409477|T047|HT|M24.62|ICD10CM|Ankylosis, elbow|Ankylosis, elbow +C2919043|T047|AB|M24.621|ICD10CM|Ankylosis, right elbow|Ankylosis, right elbow +C2919043|T047|PT|M24.621|ICD10CM|Ankylosis, right elbow|Ankylosis, right elbow +C2894872|T047|AB|M24.622|ICD10CM|Ankylosis, left elbow|Ankylosis, left elbow +C2894872|T047|PT|M24.622|ICD10CM|Ankylosis, left elbow|Ankylosis, left elbow +C0409477|T047|AB|M24.629|ICD10CM|Ankylosis, unspecified elbow|Ankylosis, unspecified elbow +C0409477|T047|PT|M24.629|ICD10CM|Ankylosis, unspecified elbow|Ankylosis, unspecified elbow +C1387846|T047|AB|M24.63|ICD10CM|Ankylosis, wrist|Ankylosis, wrist +C1387846|T047|HT|M24.63|ICD10CM|Ankylosis, wrist|Ankylosis, wrist +C2894873|T047|AB|M24.631|ICD10CM|Ankylosis, right wrist|Ankylosis, right wrist +C2894873|T047|PT|M24.631|ICD10CM|Ankylosis, right wrist|Ankylosis, right wrist +C2894874|T047|AB|M24.632|ICD10CM|Ankylosis, left wrist|Ankylosis, left wrist +C2894874|T047|PT|M24.632|ICD10CM|Ankylosis, left wrist|Ankylosis, left wrist +C2894875|T047|AB|M24.639|ICD10CM|Ankylosis, unspecified wrist|Ankylosis, unspecified wrist +C2894875|T047|PT|M24.639|ICD10CM|Ankylosis, unspecified wrist|Ankylosis, unspecified wrist +C0158122|T020|AB|M24.64|ICD10CM|Ankylosis, hand|Ankylosis, hand +C0158122|T020|HT|M24.64|ICD10CM|Ankylosis, hand|Ankylosis, hand +C2894876|T047|AB|M24.641|ICD10CM|Ankylosis, right hand|Ankylosis, right hand +C2894876|T047|PT|M24.641|ICD10CM|Ankylosis, right hand|Ankylosis, right hand +C2894877|T047|AB|M24.642|ICD10CM|Ankylosis, left hand|Ankylosis, left hand +C2894877|T047|PT|M24.642|ICD10CM|Ankylosis, left hand|Ankylosis, left hand +C0158122|T020|AB|M24.649|ICD10CM|Ankylosis, unspecified hand|Ankylosis, unspecified hand +C0158122|T020|PT|M24.649|ICD10CM|Ankylosis, unspecified hand|Ankylosis, unspecified hand +C0856460|T047|AB|M24.65|ICD10CM|Ankylosis, hip|Ankylosis, hip +C0856460|T047|HT|M24.65|ICD10CM|Ankylosis, hip|Ankylosis, hip +C2894878|T046|AB|M24.651|ICD10CM|Ankylosis, right hip|Ankylosis, right hip +C2894878|T046|PT|M24.651|ICD10CM|Ankylosis, right hip|Ankylosis, right hip +C2894879|T046|AB|M24.652|ICD10CM|Ankylosis, left hip|Ankylosis, left hip +C2894879|T046|PT|M24.652|ICD10CM|Ankylosis, left hip|Ankylosis, left hip +C2894880|T046|AB|M24.659|ICD10CM|Ankylosis, unspecified hip|Ankylosis, unspecified hip +C2894880|T046|PT|M24.659|ICD10CM|Ankylosis, unspecified hip|Ankylosis, unspecified hip +C0409473|T047|AB|M24.66|ICD10CM|Ankylosis, knee|Ankylosis, knee +C0409473|T047|HT|M24.66|ICD10CM|Ankylosis, knee|Ankylosis, knee +C2894881|T047|AB|M24.661|ICD10CM|Ankylosis, right knee|Ankylosis, right knee +C2894881|T047|PT|M24.661|ICD10CM|Ankylosis, right knee|Ankylosis, right knee +C2894882|T047|AB|M24.662|ICD10CM|Ankylosis, left knee|Ankylosis, left knee +C2894882|T047|PT|M24.662|ICD10CM|Ankylosis, left knee|Ankylosis, left knee +C2894883|T047|AB|M24.669|ICD10CM|Ankylosis, unspecified knee|Ankylosis, unspecified knee +C2894883|T047|PT|M24.669|ICD10CM|Ankylosis, unspecified knee|Ankylosis, unspecified knee +C2894884|T047|AB|M24.67|ICD10CM|Ankylosis, ankle and foot|Ankylosis, ankle and foot +C2894884|T047|HT|M24.67|ICD10CM|Ankylosis, ankle and foot|Ankylosis, ankle and foot +C2894885|T047|AB|M24.671|ICD10CM|Ankylosis, right ankle|Ankylosis, right ankle +C2894885|T047|PT|M24.671|ICD10CM|Ankylosis, right ankle|Ankylosis, right ankle +C2894886|T047|AB|M24.672|ICD10CM|Ankylosis, left ankle|Ankylosis, left ankle +C2894886|T047|PT|M24.672|ICD10CM|Ankylosis, left ankle|Ankylosis, left ankle +C2894887|T047|AB|M24.673|ICD10CM|Ankylosis, unspecified ankle|Ankylosis, unspecified ankle +C2894887|T047|PT|M24.673|ICD10CM|Ankylosis, unspecified ankle|Ankylosis, unspecified ankle +C2894888|T047|AB|M24.674|ICD10CM|Ankylosis, right foot|Ankylosis, right foot +C2894888|T047|PT|M24.674|ICD10CM|Ankylosis, right foot|Ankylosis, right foot +C2894889|T047|AB|M24.675|ICD10CM|Ankylosis, left foot|Ankylosis, left foot +C2894889|T047|PT|M24.675|ICD10CM|Ankylosis, left foot|Ankylosis, left foot +C2894890|T047|AB|M24.676|ICD10CM|Ankylosis, unspecified foot|Ankylosis, unspecified foot +C2894890|T047|PT|M24.676|ICD10CM|Ankylosis, unspecified foot|Ankylosis, unspecified foot +C0409495|T190|PT|M24.7|ICD10CM|Protrusio acetabuli|Protrusio acetabuli +C0409495|T190|AB|M24.7|ICD10CM|Protrusio acetabuli|Protrusio acetabuli +C0409495|T190|PT|M24.7|ICD10|Protrusio acetabuli|Protrusio acetabuli +C0869063|T047|PT|M24.8|ICD10|Other specific joint derangements, not elsewhere classified|Other specific joint derangements, not elsewhere classified +C0869063|T047|HT|M24.8|ICD10CM|Other specific joint derangements, not elsewhere classified|Other specific joint derangements, not elsewhere classified +C0869063|T047|AB|M24.8|ICD10CM|Other specific joint derangements, not elsewhere classified|Other specific joint derangements, not elsewhere classified +C2894891|T047|AB|M24.80|ICD10CM|Oth specific joint derangements of unsp joint, NEC|Oth specific joint derangements of unsp joint, NEC +C2894891|T047|PT|M24.80|ICD10CM|Other specific joint derangements of unspecified joint, not elsewhere classified|Other specific joint derangements of unspecified joint, not elsewhere classified +C2894892|T047|AB|M24.81|ICD10CM|Oth specific joint derangements of shoulder, NEC|Oth specific joint derangements of shoulder, NEC +C2894892|T047|HT|M24.81|ICD10CM|Other specific joint derangements of shoulder, not elsewhere classified|Other specific joint derangements of shoulder, not elsewhere classified +C2894893|T047|AB|M24.811|ICD10CM|Oth specific joint derangements of right shoulder, NEC|Oth specific joint derangements of right shoulder, NEC +C2894893|T047|PT|M24.811|ICD10CM|Other specific joint derangements of right shoulder, not elsewhere classified|Other specific joint derangements of right shoulder, not elsewhere classified +C2894894|T047|AB|M24.812|ICD10CM|Oth specific joint derangements of left shoulder, NEC|Oth specific joint derangements of left shoulder, NEC +C2894894|T047|PT|M24.812|ICD10CM|Other specific joint derangements of left shoulder, not elsewhere classified|Other specific joint derangements of left shoulder, not elsewhere classified +C2894895|T047|AB|M24.819|ICD10CM|Oth specific joint derangements of unsp shoulder, NEC|Oth specific joint derangements of unsp shoulder, NEC +C2894895|T047|PT|M24.819|ICD10CM|Other specific joint derangements of unspecified shoulder, not elsewhere classified|Other specific joint derangements of unspecified shoulder, not elsewhere classified +C2894896|T047|AB|M24.82|ICD10CM|Oth specific joint derangements of elbow, NEC|Oth specific joint derangements of elbow, NEC +C2894896|T047|HT|M24.82|ICD10CM|Other specific joint derangements of elbow, not elsewhere classified|Other specific joint derangements of elbow, not elsewhere classified +C2894897|T047|AB|M24.821|ICD10CM|Oth specific joint derangements of right elbow, NEC|Oth specific joint derangements of right elbow, NEC +C2894897|T047|PT|M24.821|ICD10CM|Other specific joint derangements of right elbow, not elsewhere classified|Other specific joint derangements of right elbow, not elsewhere classified +C2894898|T047|AB|M24.822|ICD10CM|Oth specific joint derangements of left elbow, NEC|Oth specific joint derangements of left elbow, NEC +C2894898|T047|PT|M24.822|ICD10CM|Other specific joint derangements of left elbow, not elsewhere classified|Other specific joint derangements of left elbow, not elsewhere classified +C2894899|T047|AB|M24.829|ICD10CM|Oth specific joint derangements of unsp elbow, NEC|Oth specific joint derangements of unsp elbow, NEC +C2894899|T047|PT|M24.829|ICD10CM|Other specific joint derangements of unspecified elbow, not elsewhere classified|Other specific joint derangements of unspecified elbow, not elsewhere classified +C2894900|T047|AB|M24.83|ICD10CM|Oth specific joint derangements of wrist, NEC|Oth specific joint derangements of wrist, NEC +C2894900|T047|HT|M24.83|ICD10CM|Other specific joint derangements of wrist, not elsewhere classified|Other specific joint derangements of wrist, not elsewhere classified +C2894901|T047|AB|M24.831|ICD10CM|Oth specific joint derangements of right wrist, NEC|Oth specific joint derangements of right wrist, NEC +C2894901|T047|PT|M24.831|ICD10CM|Other specific joint derangements of right wrist, not elsewhere classified|Other specific joint derangements of right wrist, not elsewhere classified +C2894902|T047|AB|M24.832|ICD10CM|Oth specific joint derangements of left wrist, NEC|Oth specific joint derangements of left wrist, NEC +C2894902|T047|PT|M24.832|ICD10CM|Other specific joint derangements of left wrist, not elsewhere classified|Other specific joint derangements of left wrist, not elsewhere classified +C2894903|T047|AB|M24.839|ICD10CM|Oth specific joint derangements of unsp wrist, NEC|Oth specific joint derangements of unsp wrist, NEC +C2894903|T047|PT|M24.839|ICD10CM|Other specific joint derangements of unspecified wrist, not elsewhere classified|Other specific joint derangements of unspecified wrist, not elsewhere classified +C0838182|T047|AB|M24.84|ICD10CM|Oth specific joint derangements of hand, NEC|Oth specific joint derangements of hand, NEC +C0838182|T047|HT|M24.84|ICD10CM|Other specific joint derangements of hand, not elsewhere classified|Other specific joint derangements of hand, not elsewhere classified +C2894904|T047|AB|M24.841|ICD10CM|Oth specific joint derangements of right hand, NEC|Oth specific joint derangements of right hand, NEC +C2894904|T047|PT|M24.841|ICD10CM|Other specific joint derangements of right hand, not elsewhere classified|Other specific joint derangements of right hand, not elsewhere classified +C2894905|T047|AB|M24.842|ICD10CM|Oth specific joint derangements of left hand, NEC|Oth specific joint derangements of left hand, NEC +C2894905|T047|PT|M24.842|ICD10CM|Other specific joint derangements of left hand, not elsewhere classified|Other specific joint derangements of left hand, not elsewhere classified +C0838182|T047|AB|M24.849|ICD10CM|Oth specific joint derangements of unsp hand, NEC|Oth specific joint derangements of unsp hand, NEC +C0838182|T047|PT|M24.849|ICD10CM|Other specific joint derangements of unspecified hand, not elsewhere classified|Other specific joint derangements of unspecified hand, not elsewhere classified +C0410082|T046|ET|M24.85|ICD10CM|Irritable hip|Irritable hip +C2894906|T047|AB|M24.85|ICD10CM|Oth specific joint derangements of hip, NEC|Oth specific joint derangements of hip, NEC +C2894906|T047|HT|M24.85|ICD10CM|Other specific joint derangements of hip, not elsewhere classified|Other specific joint derangements of hip, not elsewhere classified +C2894907|T047|AB|M24.851|ICD10CM|Oth specific joint derangements of right hip, NEC|Oth specific joint derangements of right hip, NEC +C2894907|T047|PT|M24.851|ICD10CM|Other specific joint derangements of right hip, not elsewhere classified|Other specific joint derangements of right hip, not elsewhere classified +C2894908|T047|AB|M24.852|ICD10CM|Oth specific joint derangements of left hip, NEC|Oth specific joint derangements of left hip, NEC +C2894908|T047|PT|M24.852|ICD10CM|Other specific joint derangements of left hip, not elsewhere classified|Other specific joint derangements of left hip, not elsewhere classified +C2894909|T047|AB|M24.859|ICD10CM|Oth specific joint derangements of unsp hip, NEC|Oth specific joint derangements of unsp hip, NEC +C2894909|T047|PT|M24.859|ICD10CM|Other specific joint derangements of unspecified hip, not elsewhere classified|Other specific joint derangements of unspecified hip, not elsewhere classified +C0838184|T047|AB|M24.87|ICD10CM|Oth specific joint derangements of ankle and foot, NEC|Oth specific joint derangements of ankle and foot, NEC +C0838184|T047|HT|M24.87|ICD10CM|Other specific joint derangements of ankle and foot, not elsewhere classified|Other specific joint derangements of ankle and foot, not elsewhere classified +C2894910|T047|AB|M24.871|ICD10CM|Oth specific joint derangements of right ankle, NEC|Oth specific joint derangements of right ankle, NEC +C2894910|T047|PT|M24.871|ICD10CM|Other specific joint derangements of right ankle, not elsewhere classified|Other specific joint derangements of right ankle, not elsewhere classified +C2894911|T047|AB|M24.872|ICD10CM|Oth specific joint derangements of left ankle, NEC|Oth specific joint derangements of left ankle, NEC +C2894911|T047|PT|M24.872|ICD10CM|Other specific joint derangements of left ankle, not elsewhere classified|Other specific joint derangements of left ankle, not elsewhere classified +C2894912|T047|AB|M24.873|ICD10CM|Oth specific joint derangements of unsp ankle, NEC|Oth specific joint derangements of unsp ankle, NEC +C2894912|T047|PT|M24.873|ICD10CM|Other specific joint derangements of unspecified ankle, not elsewhere classified|Other specific joint derangements of unspecified ankle, not elsewhere classified +C2894913|T047|AB|M24.874|ICD10CM|Oth specific joint derangements of right foot, NEC|Oth specific joint derangements of right foot, NEC +C2894913|T047|PT|M24.874|ICD10CM|Other specific joint derangements of right foot, not elsewhere classified|Other specific joint derangements of right foot, not elsewhere classified +C2894914|T047|AB|M24.875|ICD10CM|Oth specific joint derangements left foot, NEC|Oth specific joint derangements left foot, NEC +C2894914|T047|PT|M24.875|ICD10CM|Other specific joint derangements left foot, not elsewhere classified|Other specific joint derangements left foot, not elsewhere classified +C2894915|T047|AB|M24.876|ICD10CM|Oth specific joint derangements of unsp foot, NEC|Oth specific joint derangements of unsp foot, NEC +C2894915|T047|PT|M24.876|ICD10CM|Other specific joint derangements of unspecified foot, not elsewhere classified|Other specific joint derangements of unspecified foot, not elsewhere classified +C0158140|T047|PT|M24.9|ICD10|Joint derangement, unspecified|Joint derangement, unspecified +C0158140|T047|PT|M24.9|ICD10CM|Joint derangement, unspecified|Joint derangement, unspecified +C0158140|T047|AB|M24.9|ICD10CM|Joint derangement, unspecified|Joint derangement, unspecified +C0494938|T047|AB|M25|ICD10CM|Other joint disorder, not elsewhere classified|Other joint disorder, not elsewhere classified +C0494938|T047|HT|M25|ICD10CM|Other joint disorder, not elsewhere classified|Other joint disorder, not elsewhere classified +C0494938|T047|HT|M25|ICD10|Other joint disorders, not elsewhere classified|Other joint disorders, not elsewhere classified +C0018924|T046|PT|M25.0|ICD10|Haemarthrosis|Haemarthrosis +C0018924|T046|HT|M25.0|ICD10CM|Hemarthrosis|Hemarthrosis +C0018924|T046|AB|M25.0|ICD10CM|Hemarthrosis|Hemarthrosis +C0018924|T046|PT|M25.0|ICD10AE|Hemarthrosis|Hemarthrosis +C2894916|T046|AB|M25.00|ICD10CM|Hemarthrosis, unspecified joint|Hemarthrosis, unspecified joint +C2894916|T046|PT|M25.00|ICD10CM|Hemarthrosis, unspecified joint|Hemarthrosis, unspecified joint +C0158159|T047|AB|M25.01|ICD10CM|Hemarthrosis, shoulder|Hemarthrosis, shoulder +C0158159|T047|HT|M25.01|ICD10CM|Hemarthrosis, shoulder|Hemarthrosis, shoulder +C2894917|T047|AB|M25.011|ICD10CM|Hemarthrosis, right shoulder|Hemarthrosis, right shoulder +C2894917|T047|PT|M25.011|ICD10CM|Hemarthrosis, right shoulder|Hemarthrosis, right shoulder +C2894918|T047|AB|M25.012|ICD10CM|Hemarthrosis, left shoulder|Hemarthrosis, left shoulder +C2894918|T047|PT|M25.012|ICD10CM|Hemarthrosis, left shoulder|Hemarthrosis, left shoulder +C2894919|T047|AB|M25.019|ICD10CM|Hemarthrosis, unspecified shoulder|Hemarthrosis, unspecified shoulder +C2894919|T047|PT|M25.019|ICD10CM|Hemarthrosis, unspecified shoulder|Hemarthrosis, unspecified shoulder +C0343173|T046|AB|M25.02|ICD10CM|Hemarthrosis, elbow|Hemarthrosis, elbow +C0343173|T046|HT|M25.02|ICD10CM|Hemarthrosis, elbow|Hemarthrosis, elbow +C2894920|T046|AB|M25.021|ICD10CM|Hemarthrosis, right elbow|Hemarthrosis, right elbow +C2894920|T046|PT|M25.021|ICD10CM|Hemarthrosis, right elbow|Hemarthrosis, right elbow +C2894921|T046|AB|M25.022|ICD10CM|Hemarthrosis, left elbow|Hemarthrosis, left elbow +C2894921|T046|PT|M25.022|ICD10CM|Hemarthrosis, left elbow|Hemarthrosis, left elbow +C2894922|T046|AB|M25.029|ICD10CM|Hemarthrosis, unspecified elbow|Hemarthrosis, unspecified elbow +C2894922|T046|PT|M25.029|ICD10CM|Hemarthrosis, unspecified elbow|Hemarthrosis, unspecified elbow +C0343172|T046|AB|M25.03|ICD10CM|Hemarthrosis, wrist|Hemarthrosis, wrist +C0343172|T046|HT|M25.03|ICD10CM|Hemarthrosis, wrist|Hemarthrosis, wrist +C2894923|T046|AB|M25.031|ICD10CM|Hemarthrosis, right wrist|Hemarthrosis, right wrist +C2894923|T046|PT|M25.031|ICD10CM|Hemarthrosis, right wrist|Hemarthrosis, right wrist +C2894924|T046|AB|M25.032|ICD10CM|Hemarthrosis, left wrist|Hemarthrosis, left wrist +C2894924|T046|PT|M25.032|ICD10CM|Hemarthrosis, left wrist|Hemarthrosis, left wrist +C0343172|T046|AB|M25.039|ICD10CM|Hemarthrosis, unspecified wrist|Hemarthrosis, unspecified wrist +C0343172|T046|PT|M25.039|ICD10CM|Hemarthrosis, unspecified wrist|Hemarthrosis, unspecified wrist +C0158162|T047|HT|M25.04|ICD10CM|Hemarthrosis, hand|Hemarthrosis, hand +C0158162|T047|AB|M25.04|ICD10CM|Hemarthrosis, hand|Hemarthrosis, hand +C2894925|T047|AB|M25.041|ICD10CM|Hemarthrosis, right hand|Hemarthrosis, right hand +C2894925|T047|PT|M25.041|ICD10CM|Hemarthrosis, right hand|Hemarthrosis, right hand +C2894926|T047|AB|M25.042|ICD10CM|Hemarthrosis, left hand|Hemarthrosis, left hand +C2894926|T047|PT|M25.042|ICD10CM|Hemarthrosis, left hand|Hemarthrosis, left hand +C2894927|T047|AB|M25.049|ICD10CM|Hemarthrosis, unspecified hand|Hemarthrosis, unspecified hand +C2894927|T047|PT|M25.049|ICD10CM|Hemarthrosis, unspecified hand|Hemarthrosis, unspecified hand +C0343171|T046|AB|M25.05|ICD10CM|Hemarthrosis, hip|Hemarthrosis, hip +C0343171|T046|HT|M25.05|ICD10CM|Hemarthrosis, hip|Hemarthrosis, hip +C2894928|T046|AB|M25.051|ICD10CM|Hemarthrosis, right hip|Hemarthrosis, right hip +C2894928|T046|PT|M25.051|ICD10CM|Hemarthrosis, right hip|Hemarthrosis, right hip +C2894929|T046|AB|M25.052|ICD10CM|Hemarthrosis, left hip|Hemarthrosis, left hip +C2894929|T046|PT|M25.052|ICD10CM|Hemarthrosis, left hip|Hemarthrosis, left hip +C0343171|T046|AB|M25.059|ICD10CM|Hemarthrosis, unspecified hip|Hemarthrosis, unspecified hip +C0343171|T046|PT|M25.059|ICD10CM|Hemarthrosis, unspecified hip|Hemarthrosis, unspecified hip +C0343170|T046|AB|M25.06|ICD10CM|Hemarthrosis, knee|Hemarthrosis, knee +C0343170|T046|HT|M25.06|ICD10CM|Hemarthrosis, knee|Hemarthrosis, knee +C2894930|T046|AB|M25.061|ICD10CM|Hemarthrosis, right knee|Hemarthrosis, right knee +C2894930|T046|PT|M25.061|ICD10CM|Hemarthrosis, right knee|Hemarthrosis, right knee +C2894931|T046|AB|M25.062|ICD10CM|Hemarthrosis, left knee|Hemarthrosis, left knee +C2894931|T046|PT|M25.062|ICD10CM|Hemarthrosis, left knee|Hemarthrosis, left knee +C0343170|T046|AB|M25.069|ICD10CM|Hemarthrosis, unspecified knee|Hemarthrosis, unspecified knee +C0343170|T046|PT|M25.069|ICD10CM|Hemarthrosis, unspecified knee|Hemarthrosis, unspecified knee +C0263841|T033|HT|M25.07|ICD10CM|Hemarthrosis, ankle and foot|Hemarthrosis, ankle and foot +C0263841|T033|AB|M25.07|ICD10CM|Hemarthrosis, ankle and foot|Hemarthrosis, ankle and foot +C2894932|T046|AB|M25.071|ICD10CM|Hemarthrosis, right ankle|Hemarthrosis, right ankle +C2894932|T046|PT|M25.071|ICD10CM|Hemarthrosis, right ankle|Hemarthrosis, right ankle +C2894933|T046|AB|M25.072|ICD10CM|Hemarthrosis, left ankle|Hemarthrosis, left ankle +C2894933|T046|PT|M25.072|ICD10CM|Hemarthrosis, left ankle|Hemarthrosis, left ankle +C2894934|T047|AB|M25.073|ICD10CM|Hemarthrosis, unspecified ankle|Hemarthrosis, unspecified ankle +C2894934|T047|PT|M25.073|ICD10CM|Hemarthrosis, unspecified ankle|Hemarthrosis, unspecified ankle +C2894935|T046|AB|M25.074|ICD10CM|Hemarthrosis, right foot|Hemarthrosis, right foot +C2894935|T046|PT|M25.074|ICD10CM|Hemarthrosis, right foot|Hemarthrosis, right foot +C2894936|T046|AB|M25.075|ICD10CM|Hemarthrosis, left foot|Hemarthrosis, left foot +C2894936|T046|PT|M25.075|ICD10CM|Hemarthrosis, left foot|Hemarthrosis, left foot +C2894937|T047|AB|M25.076|ICD10CM|Hemarthrosis, unspecified foot|Hemarthrosis, unspecified foot +C2894937|T047|PT|M25.076|ICD10CM|Hemarthrosis, unspecified foot|Hemarthrosis, unspecified foot +C0473719|T046|AB|M25.08|ICD10CM|Hemarthrosis, other specified site|Hemarthrosis, other specified site +C0473719|T046|PT|M25.08|ICD10CM|Hemarthrosis, other specified site|Hemarthrosis, other specified site +C2894938|T046|ET|M25.08|ICD10CM|Hemarthrosis, vertebrae|Hemarthrosis, vertebrae +C0263846|T047|HT|M25.1|ICD10CM|Fistula of joint|Fistula of joint +C0263846|T047|AB|M25.1|ICD10CM|Fistula of joint|Fistula of joint +C0263846|T047|PT|M25.1|ICD10|Fistula of joint|Fistula of joint +C0263846|T047|AB|M25.10|ICD10CM|Fistula, unspecified joint|Fistula, unspecified joint +C0263846|T047|PT|M25.10|ICD10CM|Fistula, unspecified joint|Fistula, unspecified joint +C2894939|T047|AB|M25.11|ICD10CM|Fistula, shoulder|Fistula, shoulder +C2894939|T047|HT|M25.11|ICD10CM|Fistula, shoulder|Fistula, shoulder +C2894940|T047|AB|M25.111|ICD10CM|Fistula, right shoulder|Fistula, right shoulder +C2894940|T047|PT|M25.111|ICD10CM|Fistula, right shoulder|Fistula, right shoulder +C2894941|T047|AB|M25.112|ICD10CM|Fistula, left shoulder|Fistula, left shoulder +C2894941|T047|PT|M25.112|ICD10CM|Fistula, left shoulder|Fistula, left shoulder +C2894939|T047|AB|M25.119|ICD10CM|Fistula, unspecified shoulder|Fistula, unspecified shoulder +C2894939|T047|PT|M25.119|ICD10CM|Fistula, unspecified shoulder|Fistula, unspecified shoulder +C2894942|T047|AB|M25.12|ICD10CM|Fistula, elbow|Fistula, elbow +C2894942|T047|HT|M25.12|ICD10CM|Fistula, elbow|Fistula, elbow +C2894943|T190|AB|M25.121|ICD10CM|Fistula, right elbow|Fistula, right elbow +C2894943|T190|PT|M25.121|ICD10CM|Fistula, right elbow|Fistula, right elbow +C2894944|T190|AB|M25.122|ICD10CM|Fistula, left elbow|Fistula, left elbow +C2894944|T190|PT|M25.122|ICD10CM|Fistula, left elbow|Fistula, left elbow +C2894945|T047|AB|M25.129|ICD10CM|Fistula, unspecified elbow|Fistula, unspecified elbow +C2894945|T047|PT|M25.129|ICD10CM|Fistula, unspecified elbow|Fistula, unspecified elbow +C2894946|T047|AB|M25.13|ICD10CM|Fistula, wrist|Fistula, wrist +C2894946|T047|HT|M25.13|ICD10CM|Fistula, wrist|Fistula, wrist +C2894947|T047|AB|M25.131|ICD10CM|Fistula, right wrist|Fistula, right wrist +C2894947|T047|PT|M25.131|ICD10CM|Fistula, right wrist|Fistula, right wrist +C2894948|T047|AB|M25.132|ICD10CM|Fistula, left wrist|Fistula, left wrist +C2894948|T047|PT|M25.132|ICD10CM|Fistula, left wrist|Fistula, left wrist +C2894946|T047|AB|M25.139|ICD10CM|Fistula, unspecified wrist|Fistula, unspecified wrist +C2894946|T047|PT|M25.139|ICD10CM|Fistula, unspecified wrist|Fistula, unspecified wrist +C2894949|T047|AB|M25.14|ICD10CM|Fistula, hand|Fistula, hand +C2894949|T047|HT|M25.14|ICD10CM|Fistula, hand|Fistula, hand +C2894950|T047|AB|M25.141|ICD10CM|Fistula, right hand|Fistula, right hand +C2894950|T047|PT|M25.141|ICD10CM|Fistula, right hand|Fistula, right hand +C2894951|T047|AB|M25.142|ICD10CM|Fistula, left hand|Fistula, left hand +C2894951|T047|PT|M25.142|ICD10CM|Fistula, left hand|Fistula, left hand +C2894952|T047|AB|M25.149|ICD10CM|Fistula, unspecified hand|Fistula, unspecified hand +C2894952|T047|PT|M25.149|ICD10CM|Fistula, unspecified hand|Fistula, unspecified hand +C2894953|T047|AB|M25.15|ICD10CM|Fistula, hip|Fistula, hip +C2894953|T047|HT|M25.15|ICD10CM|Fistula, hip|Fistula, hip +C2894954|T190|AB|M25.151|ICD10CM|Fistula, right hip|Fistula, right hip +C2894954|T190|PT|M25.151|ICD10CM|Fistula, right hip|Fistula, right hip +C2894955|T190|AB|M25.152|ICD10CM|Fistula, left hip|Fistula, left hip +C2894955|T190|PT|M25.152|ICD10CM|Fistula, left hip|Fistula, left hip +C2894953|T047|AB|M25.159|ICD10CM|Fistula, unspecified hip|Fistula, unspecified hip +C2894953|T047|PT|M25.159|ICD10CM|Fistula, unspecified hip|Fistula, unspecified hip +C2894956|T047|AB|M25.16|ICD10CM|Fistula, knee|Fistula, knee +C2894956|T047|HT|M25.16|ICD10CM|Fistula, knee|Fistula, knee +C2894957|T190|AB|M25.161|ICD10CM|Fistula, right knee|Fistula, right knee +C2894957|T190|PT|M25.161|ICD10CM|Fistula, right knee|Fistula, right knee +C2894958|T190|AB|M25.162|ICD10CM|Fistula, left knee|Fistula, left knee +C2894958|T190|PT|M25.162|ICD10CM|Fistula, left knee|Fistula, left knee +C2894959|T047|AB|M25.169|ICD10CM|Fistula, unspecified knee|Fistula, unspecified knee +C2894959|T047|PT|M25.169|ICD10CM|Fistula, unspecified knee|Fistula, unspecified knee +C2894960|T047|AB|M25.17|ICD10CM|Fistula, ankle and foot|Fistula, ankle and foot +C2894960|T047|HT|M25.17|ICD10CM|Fistula, ankle and foot|Fistula, ankle and foot +C2894961|T047|AB|M25.171|ICD10CM|Fistula, right ankle|Fistula, right ankle +C2894961|T047|PT|M25.171|ICD10CM|Fistula, right ankle|Fistula, right ankle +C2894962|T047|AB|M25.172|ICD10CM|Fistula, left ankle|Fistula, left ankle +C2894962|T047|PT|M25.172|ICD10CM|Fistula, left ankle|Fistula, left ankle +C2894963|T047|AB|M25.173|ICD10CM|Fistula, unspecified ankle|Fistula, unspecified ankle +C2894963|T047|PT|M25.173|ICD10CM|Fistula, unspecified ankle|Fistula, unspecified ankle +C2894964|T047|AB|M25.174|ICD10CM|Fistula, right foot|Fistula, right foot +C2894964|T047|PT|M25.174|ICD10CM|Fistula, right foot|Fistula, right foot +C2894965|T047|AB|M25.175|ICD10CM|Fistula, left foot|Fistula, left foot +C2894965|T047|PT|M25.175|ICD10CM|Fistula, left foot|Fistula, left foot +C2894966|T047|AB|M25.176|ICD10CM|Fistula, unspecified foot|Fistula, unspecified foot +C2894966|T047|PT|M25.176|ICD10CM|Fistula, unspecified foot|Fistula, unspecified foot +C3696793|T047|AB|M25.18|ICD10CM|Fistula, other specified site|Fistula, other specified site +C3696793|T047|PT|M25.18|ICD10CM|Fistula, other specified site|Fistula, other specified site +C2894967|T047|ET|M25.18|ICD10CM|Fistula, vertebrae|Fistula, vertebrae +C0343156|T190|HT|M25.2|ICD10CM|Flail joint|Flail joint +C0343156|T190|AB|M25.2|ICD10CM|Flail joint|Flail joint +C0343156|T190|PT|M25.2|ICD10|Flail joint|Flail joint +C0343156|T190|AB|M25.20|ICD10CM|Flail joint, unspecified joint|Flail joint, unspecified joint +C0343156|T190|PT|M25.20|ICD10CM|Flail joint, unspecified joint|Flail joint, unspecified joint +C2894970|T190|AB|M25.21|ICD10CM|Flail joint, shoulder|Flail joint, shoulder +C2894970|T190|HT|M25.21|ICD10CM|Flail joint, shoulder|Flail joint, shoulder +C2894968|T190|AB|M25.211|ICD10CM|Flail joint, right shoulder|Flail joint, right shoulder +C2894968|T190|PT|M25.211|ICD10CM|Flail joint, right shoulder|Flail joint, right shoulder +C2894969|T190|AB|M25.212|ICD10CM|Flail joint, left shoulder|Flail joint, left shoulder +C2894969|T190|PT|M25.212|ICD10CM|Flail joint, left shoulder|Flail joint, left shoulder +C2894970|T190|AB|M25.219|ICD10CM|Flail joint, unspecified shoulder|Flail joint, unspecified shoulder +C2894970|T190|PT|M25.219|ICD10CM|Flail joint, unspecified shoulder|Flail joint, unspecified shoulder +C2894973|T190|AB|M25.22|ICD10CM|Flail joint, elbow|Flail joint, elbow +C2894973|T190|HT|M25.22|ICD10CM|Flail joint, elbow|Flail joint, elbow +C2894971|T190|AB|M25.221|ICD10CM|Flail joint, right elbow|Flail joint, right elbow +C2894971|T190|PT|M25.221|ICD10CM|Flail joint, right elbow|Flail joint, right elbow +C2894972|T190|AB|M25.222|ICD10CM|Flail joint, left elbow|Flail joint, left elbow +C2894972|T190|PT|M25.222|ICD10CM|Flail joint, left elbow|Flail joint, left elbow +C2894973|T190|AB|M25.229|ICD10CM|Flail joint, unspecified elbow|Flail joint, unspecified elbow +C2894973|T190|PT|M25.229|ICD10CM|Flail joint, unspecified elbow|Flail joint, unspecified elbow +C2894976|T190|AB|M25.23|ICD10CM|Flail joint, wrist|Flail joint, wrist +C2894976|T190|HT|M25.23|ICD10CM|Flail joint, wrist|Flail joint, wrist +C2894974|T190|AB|M25.231|ICD10CM|Flail joint, right wrist|Flail joint, right wrist +C2894974|T190|PT|M25.231|ICD10CM|Flail joint, right wrist|Flail joint, right wrist +C2894975|T190|AB|M25.232|ICD10CM|Flail joint, left wrist|Flail joint, left wrist +C2894975|T190|PT|M25.232|ICD10CM|Flail joint, left wrist|Flail joint, left wrist +C2894976|T190|AB|M25.239|ICD10CM|Flail joint, unspecified wrist|Flail joint, unspecified wrist +C2894976|T190|PT|M25.239|ICD10CM|Flail joint, unspecified wrist|Flail joint, unspecified wrist +C0838203|T190|HT|M25.24|ICD10CM|Flail joint, hand|Flail joint, hand +C0838203|T190|AB|M25.24|ICD10CM|Flail joint, hand|Flail joint, hand +C2894977|T190|AB|M25.241|ICD10CM|Flail joint, right hand|Flail joint, right hand +C2894977|T190|PT|M25.241|ICD10CM|Flail joint, right hand|Flail joint, right hand +C2894978|T190|AB|M25.242|ICD10CM|Flail joint, left hand|Flail joint, left hand +C2894978|T190|PT|M25.242|ICD10CM|Flail joint, left hand|Flail joint, left hand +C0838203|T190|AB|M25.249|ICD10CM|Flail joint, unspecified hand|Flail joint, unspecified hand +C0838203|T190|PT|M25.249|ICD10CM|Flail joint, unspecified hand|Flail joint, unspecified hand +C2894981|T190|AB|M25.25|ICD10CM|Flail joint, hip|Flail joint, hip +C2894981|T190|HT|M25.25|ICD10CM|Flail joint, hip|Flail joint, hip +C2894979|T190|AB|M25.251|ICD10CM|Flail joint, right hip|Flail joint, right hip +C2894979|T190|PT|M25.251|ICD10CM|Flail joint, right hip|Flail joint, right hip +C2894980|T190|AB|M25.252|ICD10CM|Flail joint, left hip|Flail joint, left hip +C2894980|T190|PT|M25.252|ICD10CM|Flail joint, left hip|Flail joint, left hip +C2894981|T190|AB|M25.259|ICD10CM|Flail joint, unspecified hip|Flail joint, unspecified hip +C2894981|T190|PT|M25.259|ICD10CM|Flail joint, unspecified hip|Flail joint, unspecified hip +C2894984|T190|AB|M25.26|ICD10CM|Flail joint, knee|Flail joint, knee +C2894984|T190|HT|M25.26|ICD10CM|Flail joint, knee|Flail joint, knee +C2894982|T190|AB|M25.261|ICD10CM|Flail joint, right knee|Flail joint, right knee +C2894982|T190|PT|M25.261|ICD10CM|Flail joint, right knee|Flail joint, right knee +C2894983|T190|AB|M25.262|ICD10CM|Flail joint, left knee|Flail joint, left knee +C2894983|T190|PT|M25.262|ICD10CM|Flail joint, left knee|Flail joint, left knee +C2894984|T190|AB|M25.269|ICD10CM|Flail joint, unspecified knee|Flail joint, unspecified knee +C2894984|T190|PT|M25.269|ICD10CM|Flail joint, unspecified knee|Flail joint, unspecified knee +C0838205|T190|HT|M25.27|ICD10CM|Flail joint, ankle and foot|Flail joint, ankle and foot +C0838205|T190|AB|M25.27|ICD10CM|Flail joint, ankle and foot|Flail joint, ankle and foot +C2894985|T190|AB|M25.271|ICD10CM|Flail joint, right ankle and foot|Flail joint, right ankle and foot +C2894985|T190|PT|M25.271|ICD10CM|Flail joint, right ankle and foot|Flail joint, right ankle and foot +C2894986|T190|AB|M25.272|ICD10CM|Flail joint, left ankle and foot|Flail joint, left ankle and foot +C2894986|T190|PT|M25.272|ICD10CM|Flail joint, left ankle and foot|Flail joint, left ankle and foot +C0838205|T190|AB|M25.279|ICD10CM|Flail joint, unspecified ankle and foot|Flail joint, unspecified ankle and foot +C0838205|T190|PT|M25.279|ICD10CM|Flail joint, unspecified ankle and foot|Flail joint, unspecified ankle and foot +C0838206|T190|PT|M25.28|ICD10CM|Flail joint, other site|Flail joint, other site +C0838206|T190|AB|M25.28|ICD10CM|Flail joint, other site|Flail joint, other site +C0477581|T047|HT|M25.3|ICD10CM|Other instability of joint|Other instability of joint +C0477581|T047|AB|M25.3|ICD10CM|Other instability of joint|Other instability of joint +C0477581|T047|PT|M25.3|ICD10|Other instability of joint|Other instability of joint +C0477581|T047|AB|M25.30|ICD10CM|Other instability, unspecified joint|Other instability, unspecified joint +C0477581|T047|PT|M25.30|ICD10CM|Other instability, unspecified joint|Other instability, unspecified joint +C2894987|T047|AB|M25.31|ICD10CM|Other instability, shoulder|Other instability, shoulder +C2894987|T047|HT|M25.31|ICD10CM|Other instability, shoulder|Other instability, shoulder +C2894988|T047|AB|M25.311|ICD10CM|Other instability, right shoulder|Other instability, right shoulder +C2894988|T047|PT|M25.311|ICD10CM|Other instability, right shoulder|Other instability, right shoulder +C2894989|T047|AB|M25.312|ICD10CM|Other instability, left shoulder|Other instability, left shoulder +C2894989|T047|PT|M25.312|ICD10CM|Other instability, left shoulder|Other instability, left shoulder +C2894990|T047|AB|M25.319|ICD10CM|Other instability, unspecified shoulder|Other instability, unspecified shoulder +C2894990|T047|PT|M25.319|ICD10CM|Other instability, unspecified shoulder|Other instability, unspecified shoulder +C2894991|T047|AB|M25.32|ICD10CM|Other instability, elbow|Other instability, elbow +C2894991|T047|HT|M25.32|ICD10CM|Other instability, elbow|Other instability, elbow +C2894992|T047|AB|M25.321|ICD10CM|Other instability, right elbow|Other instability, right elbow +C2894992|T047|PT|M25.321|ICD10CM|Other instability, right elbow|Other instability, right elbow +C2894993|T047|AB|M25.322|ICD10CM|Other instability, left elbow|Other instability, left elbow +C2894993|T047|PT|M25.322|ICD10CM|Other instability, left elbow|Other instability, left elbow +C2894994|T047|AB|M25.329|ICD10CM|Other instability, unspecified elbow|Other instability, unspecified elbow +C2894994|T047|PT|M25.329|ICD10CM|Other instability, unspecified elbow|Other instability, unspecified elbow +C2894995|T047|AB|M25.33|ICD10CM|Other instability, wrist|Other instability, wrist +C2894995|T047|HT|M25.33|ICD10CM|Other instability, wrist|Other instability, wrist +C2894996|T047|AB|M25.331|ICD10CM|Other instability, right wrist|Other instability, right wrist +C2894996|T047|PT|M25.331|ICD10CM|Other instability, right wrist|Other instability, right wrist +C2894997|T047|AB|M25.332|ICD10CM|Other instability, left wrist|Other instability, left wrist +C2894997|T047|PT|M25.332|ICD10CM|Other instability, left wrist|Other instability, left wrist +C2894998|T047|AB|M25.339|ICD10CM|Other instability, unspecified wrist|Other instability, unspecified wrist +C2894998|T047|PT|M25.339|ICD10CM|Other instability, unspecified wrist|Other instability, unspecified wrist +C2894999|T047|AB|M25.34|ICD10CM|Other instability, hand|Other instability, hand +C2894999|T047|HT|M25.34|ICD10CM|Other instability, hand|Other instability, hand +C2895000|T047|AB|M25.341|ICD10CM|Other instability, right hand|Other instability, right hand +C2895000|T047|PT|M25.341|ICD10CM|Other instability, right hand|Other instability, right hand +C2895001|T047|AB|M25.342|ICD10CM|Other instability, left hand|Other instability, left hand +C2895001|T047|PT|M25.342|ICD10CM|Other instability, left hand|Other instability, left hand +C2895002|T047|AB|M25.349|ICD10CM|Other instability, unspecified hand|Other instability, unspecified hand +C2895002|T047|PT|M25.349|ICD10CM|Other instability, unspecified hand|Other instability, unspecified hand +C2895003|T047|AB|M25.35|ICD10CM|Other instability, hip|Other instability, hip +C2895003|T047|HT|M25.35|ICD10CM|Other instability, hip|Other instability, hip +C2895004|T047|AB|M25.351|ICD10CM|Other instability, right hip|Other instability, right hip +C2895004|T047|PT|M25.351|ICD10CM|Other instability, right hip|Other instability, right hip +C2895005|T047|AB|M25.352|ICD10CM|Other instability, left hip|Other instability, left hip +C2895005|T047|PT|M25.352|ICD10CM|Other instability, left hip|Other instability, left hip +C2895006|T047|AB|M25.359|ICD10CM|Other instability, unspecified hip|Other instability, unspecified hip +C2895006|T047|PT|M25.359|ICD10CM|Other instability, unspecified hip|Other instability, unspecified hip +C2895007|T047|AB|M25.36|ICD10CM|Other instability, knee|Other instability, knee +C2895007|T047|HT|M25.36|ICD10CM|Other instability, knee|Other instability, knee +C2895008|T047|AB|M25.361|ICD10CM|Other instability, right knee|Other instability, right knee +C2895008|T047|PT|M25.361|ICD10CM|Other instability, right knee|Other instability, right knee +C2895009|T047|AB|M25.362|ICD10CM|Other instability, left knee|Other instability, left knee +C2895009|T047|PT|M25.362|ICD10CM|Other instability, left knee|Other instability, left knee +C2895010|T047|AB|M25.369|ICD10CM|Other instability, unspecified knee|Other instability, unspecified knee +C2895010|T047|PT|M25.369|ICD10CM|Other instability, unspecified knee|Other instability, unspecified knee +C2895011|T047|AB|M25.37|ICD10CM|Other instability, ankle and foot|Other instability, ankle and foot +C2895011|T047|HT|M25.37|ICD10CM|Other instability, ankle and foot|Other instability, ankle and foot +C2895012|T047|AB|M25.371|ICD10CM|Other instability, right ankle|Other instability, right ankle +C2895012|T047|PT|M25.371|ICD10CM|Other instability, right ankle|Other instability, right ankle +C2895013|T047|AB|M25.372|ICD10CM|Other instability, left ankle|Other instability, left ankle +C2895013|T047|PT|M25.372|ICD10CM|Other instability, left ankle|Other instability, left ankle +C2895014|T047|AB|M25.373|ICD10CM|Other instability, unspecified ankle|Other instability, unspecified ankle +C2895014|T047|PT|M25.373|ICD10CM|Other instability, unspecified ankle|Other instability, unspecified ankle +C2895015|T047|AB|M25.374|ICD10CM|Other instability, right foot|Other instability, right foot +C2895015|T047|PT|M25.374|ICD10CM|Other instability, right foot|Other instability, right foot +C2895016|T047|AB|M25.375|ICD10CM|Other instability, left foot|Other instability, left foot +C2895016|T047|PT|M25.375|ICD10CM|Other instability, left foot|Other instability, left foot +C2895017|T047|AB|M25.376|ICD10CM|Other instability, unspecified foot|Other instability, unspecified foot +C2895017|T047|PT|M25.376|ICD10CM|Other instability, unspecified foot|Other instability, unspecified foot +C1253936|T046|HT|M25.4|ICD10CM|Effusion of joint|Effusion of joint +C1253936|T046|AB|M25.4|ICD10CM|Effusion of joint|Effusion of joint +C1253936|T046|PT|M25.4|ICD10|Effusion of joint|Effusion of joint +C2895018|T046|AB|M25.40|ICD10CM|Effusion, unspecified joint|Effusion, unspecified joint +C2895018|T046|PT|M25.40|ICD10CM|Effusion, unspecified joint|Effusion, unspecified joint +C0158150|T046|AB|M25.41|ICD10CM|Effusion, shoulder|Effusion, shoulder +C0158150|T046|HT|M25.41|ICD10CM|Effusion, shoulder|Effusion, shoulder +C2895019|T046|AB|M25.411|ICD10CM|Effusion, right shoulder|Effusion, right shoulder +C2895019|T046|PT|M25.411|ICD10CM|Effusion, right shoulder|Effusion, right shoulder +C2895020|T046|AB|M25.412|ICD10CM|Effusion, left shoulder|Effusion, left shoulder +C2895020|T046|PT|M25.412|ICD10CM|Effusion, left shoulder|Effusion, left shoulder +C0158150|T046|AB|M25.419|ICD10CM|Effusion, unspecified shoulder|Effusion, unspecified shoulder +C0158150|T046|PT|M25.419|ICD10CM|Effusion, unspecified shoulder|Effusion, unspecified shoulder +C0343168|T047|AB|M25.42|ICD10CM|Effusion, elbow|Effusion, elbow +C0343168|T047|HT|M25.42|ICD10CM|Effusion, elbow|Effusion, elbow +C2895021|T047|AB|M25.421|ICD10CM|Effusion, right elbow|Effusion, right elbow +C2895021|T047|PT|M25.421|ICD10CM|Effusion, right elbow|Effusion, right elbow +C2895022|T047|AB|M25.422|ICD10CM|Effusion, left elbow|Effusion, left elbow +C2895022|T047|PT|M25.422|ICD10CM|Effusion, left elbow|Effusion, left elbow +C2895023|T046|AB|M25.429|ICD10CM|Effusion, unspecified elbow|Effusion, unspecified elbow +C2895023|T046|PT|M25.429|ICD10CM|Effusion, unspecified elbow|Effusion, unspecified elbow +C0343167|T046|AB|M25.43|ICD10CM|Effusion, wrist|Effusion, wrist +C0343167|T046|HT|M25.43|ICD10CM|Effusion, wrist|Effusion, wrist +C2895024|T046|AB|M25.431|ICD10CM|Effusion, right wrist|Effusion, right wrist +C2895024|T046|PT|M25.431|ICD10CM|Effusion, right wrist|Effusion, right wrist +C2895025|T046|AB|M25.432|ICD10CM|Effusion, left wrist|Effusion, left wrist +C2895025|T046|PT|M25.432|ICD10CM|Effusion, left wrist|Effusion, left wrist +C0343167|T046|AB|M25.439|ICD10CM|Effusion, unspecified wrist|Effusion, unspecified wrist +C0343167|T046|PT|M25.439|ICD10CM|Effusion, unspecified wrist|Effusion, unspecified wrist +C2895026|T046|AB|M25.44|ICD10CM|Effusion, hand|Effusion, hand +C2895026|T046|HT|M25.44|ICD10CM|Effusion, hand|Effusion, hand +C2895027|T046|AB|M25.441|ICD10CM|Effusion, right hand|Effusion, right hand +C2895027|T046|PT|M25.441|ICD10CM|Effusion, right hand|Effusion, right hand +C2895028|T046|AB|M25.442|ICD10CM|Effusion, left hand|Effusion, left hand +C2895028|T046|PT|M25.442|ICD10CM|Effusion, left hand|Effusion, left hand +C2895029|T046|AB|M25.449|ICD10CM|Effusion, unspecified hand|Effusion, unspecified hand +C2895029|T046|PT|M25.449|ICD10CM|Effusion, unspecified hand|Effusion, unspecified hand +C0263833|T046|AB|M25.45|ICD10CM|Effusion, hip|Effusion, hip +C0263833|T046|HT|M25.45|ICD10CM|Effusion, hip|Effusion, hip +C2895030|T046|AB|M25.451|ICD10CM|Effusion, right hip|Effusion, right hip +C2895030|T046|PT|M25.451|ICD10CM|Effusion, right hip|Effusion, right hip +C2895031|T046|AB|M25.452|ICD10CM|Effusion, left hip|Effusion, left hip +C2895031|T046|PT|M25.452|ICD10CM|Effusion, left hip|Effusion, left hip +C0263833|T046|AB|M25.459|ICD10CM|Effusion, unspecified hip|Effusion, unspecified hip +C0263833|T046|PT|M25.459|ICD10CM|Effusion, unspecified hip|Effusion, unspecified hip +C0343166|T033|AB|M25.46|ICD10CM|Effusion, knee|Effusion, knee +C0343166|T033|HT|M25.46|ICD10CM|Effusion, knee|Effusion, knee +C2176251|T046|AB|M25.461|ICD10CM|Effusion, right knee|Effusion, right knee +C2176251|T046|PT|M25.461|ICD10CM|Effusion, right knee|Effusion, right knee +C2176252|T046|AB|M25.462|ICD10CM|Effusion, left knee|Effusion, left knee +C2176252|T046|PT|M25.462|ICD10CM|Effusion, left knee|Effusion, left knee +C0343166|T033|AB|M25.469|ICD10CM|Effusion, unspecified knee|Effusion, unspecified knee +C0343166|T033|PT|M25.469|ICD10CM|Effusion, unspecified knee|Effusion, unspecified knee +C2895032|T046|AB|M25.47|ICD10CM|Effusion, ankle and foot|Effusion, ankle and foot +C2895032|T046|HT|M25.47|ICD10CM|Effusion, ankle and foot|Effusion, ankle and foot +C2895033|T046|AB|M25.471|ICD10CM|Effusion, right ankle|Effusion, right ankle +C2895033|T046|PT|M25.471|ICD10CM|Effusion, right ankle|Effusion, right ankle +C2895034|T046|AB|M25.472|ICD10CM|Effusion, left ankle|Effusion, left ankle +C2895034|T046|PT|M25.472|ICD10CM|Effusion, left ankle|Effusion, left ankle +C2895035|T046|AB|M25.473|ICD10CM|Effusion, unspecified ankle|Effusion, unspecified ankle +C2895035|T046|PT|M25.473|ICD10CM|Effusion, unspecified ankle|Effusion, unspecified ankle +C2895036|T046|AB|M25.474|ICD10CM|Effusion, right foot|Effusion, right foot +C2895036|T046|PT|M25.474|ICD10CM|Effusion, right foot|Effusion, right foot +C2895037|T046|AB|M25.475|ICD10CM|Effusion, left foot|Effusion, left foot +C2895037|T046|PT|M25.475|ICD10CM|Effusion, left foot|Effusion, left foot +C2895038|T046|AB|M25.476|ICD10CM|Effusion, unspecified foot|Effusion, unspecified foot +C2895038|T046|PT|M25.476|ICD10CM|Effusion, unspecified foot|Effusion, unspecified foot +C2895039|T046|AB|M25.48|ICD10CM|Effusion, other site|Effusion, other site +C2895039|T046|PT|M25.48|ICD10CM|Effusion, other site|Effusion, other site +C0003862|T184|HT|M25.5|ICD10CM|Pain in joint|Pain in joint +C0003862|T184|AB|M25.5|ICD10CM|Pain in joint|Pain in joint +C0003862|T184|PT|M25.5|ICD10|Pain in joint|Pain in joint +C2895040|T033|AB|M25.50|ICD10CM|Pain in unspecified joint|Pain in unspecified joint +C2895040|T033|PT|M25.50|ICD10CM|Pain in unspecified joint|Pain in unspecified joint +C0037011|T184|AB|M25.51|ICD10CM|Pain in shoulder|Pain in shoulder +C0037011|T184|HT|M25.51|ICD10CM|Pain in shoulder|Pain in shoulder +C0241040|T184|AB|M25.511|ICD10CM|Pain in right shoulder|Pain in right shoulder +C0241040|T184|PT|M25.511|ICD10CM|Pain in right shoulder|Pain in right shoulder +C0241039|T184|AB|M25.512|ICD10CM|Pain in left shoulder|Pain in left shoulder +C0241039|T184|PT|M25.512|ICD10CM|Pain in left shoulder|Pain in left shoulder +C0037011|T184|AB|M25.519|ICD10CM|Pain in unspecified shoulder|Pain in unspecified shoulder +C0037011|T184|PT|M25.519|ICD10CM|Pain in unspecified shoulder|Pain in unspecified shoulder +C0239266|T184|HT|M25.52|ICD10CM|Pain in elbow|Pain in elbow +C0239266|T184|AB|M25.52|ICD10CM|Pain in elbow|Pain in elbow +C2895041|T184|AB|M25.521|ICD10CM|Pain in right elbow|Pain in right elbow +C2895041|T184|PT|M25.521|ICD10CM|Pain in right elbow|Pain in right elbow +C2895042|T184|AB|M25.522|ICD10CM|Pain in left elbow|Pain in left elbow +C2895042|T184|PT|M25.522|ICD10CM|Pain in left elbow|Pain in left elbow +C0239266|T184|AB|M25.529|ICD10CM|Pain in unspecified elbow|Pain in unspecified elbow +C0239266|T184|PT|M25.529|ICD10CM|Pain in unspecified elbow|Pain in unspecified elbow +C0221785|T184|HT|M25.53|ICD10CM|Pain in wrist|Pain in wrist +C0221785|T184|AB|M25.53|ICD10CM|Pain in wrist|Pain in wrist +C2895043|T033|AB|M25.531|ICD10CM|Pain in right wrist|Pain in right wrist +C2895043|T033|PT|M25.531|ICD10CM|Pain in right wrist|Pain in right wrist +C2167935|T184|AB|M25.532|ICD10CM|Pain in left wrist|Pain in left wrist +C2167935|T184|PT|M25.532|ICD10CM|Pain in left wrist|Pain in left wrist +C2895044|T033|AB|M25.539|ICD10CM|Pain in unspecified wrist|Pain in unspecified wrist +C2895044|T033|PT|M25.539|ICD10CM|Pain in unspecified wrist|Pain in unspecified wrist +C0423665|T184|AB|M25.54|ICD10CM|Pain in joints of hand|Pain in joints of hand +C0423665|T184|HT|M25.54|ICD10CM|Pain in joints of hand|Pain in joints of hand +C4047544|T184|AB|M25.541|ICD10CM|Pain in joints of right hand|Pain in joints of right hand +C4047544|T184|PT|M25.541|ICD10CM|Pain in joints of right hand|Pain in joints of right hand +C4047545|T184|AB|M25.542|ICD10CM|Pain in joints of left hand|Pain in joints of left hand +C4047545|T184|PT|M25.542|ICD10CM|Pain in joints of left hand|Pain in joints of left hand +C0423665|T184|ET|M25.549|ICD10CM|Pain in joints of hand NOS|Pain in joints of hand NOS +C4268699|T184|AB|M25.549|ICD10CM|Pain in joints of unspecified hand|Pain in joints of unspecified hand +C4268699|T184|PT|M25.549|ICD10CM|Pain in joints of unspecified hand|Pain in joints of unspecified hand +C0019559|T184|AB|M25.55|ICD10CM|Pain in hip|Pain in hip +C0019559|T184|HT|M25.55|ICD10CM|Pain in hip|Pain in hip +C2202100|T184|AB|M25.551|ICD10CM|Pain in right hip|Pain in right hip +C2202100|T184|PT|M25.551|ICD10CM|Pain in right hip|Pain in right hip +C2141922|T184|AB|M25.552|ICD10CM|Pain in left hip|Pain in left hip +C2141922|T184|PT|M25.552|ICD10CM|Pain in left hip|Pain in left hip +C0019559|T184|AB|M25.559|ICD10CM|Pain in unspecified hip|Pain in unspecified hip +C0019559|T184|PT|M25.559|ICD10CM|Pain in unspecified hip|Pain in unspecified hip +C0231749|T184|HT|M25.56|ICD10CM|Pain in knee|Pain in knee +C0231749|T184|AB|M25.56|ICD10CM|Pain in knee|Pain in knee +C2202235|T184|PT|M25.561|ICD10CM|Pain in right knee|Pain in right knee +C2202235|T184|AB|M25.561|ICD10CM|Pain in right knee|Pain in right knee +C2142181|T184|PT|M25.562|ICD10CM|Pain in left knee|Pain in left knee +C2142181|T184|AB|M25.562|ICD10CM|Pain in left knee|Pain in left knee +C0231749|T184|AB|M25.569|ICD10CM|Pain in unspecified knee|Pain in unspecified knee +C0231749|T184|PT|M25.569|ICD10CM|Pain in unspecified knee|Pain in unspecified knee +C2919460|T184|AB|M25.57|ICD10CM|Pain in ankle and joints of foot|Pain in ankle and joints of foot +C2919460|T184|HT|M25.57|ICD10CM|Pain in ankle and joints of foot|Pain in ankle and joints of foot +C3531698|T033|AB|M25.571|ICD10CM|Pain in right ankle and joints of right foot|Pain in right ankle and joints of right foot +C3531698|T033|PT|M25.571|ICD10CM|Pain in right ankle and joints of right foot|Pain in right ankle and joints of right foot +C3531697|T033|AB|M25.572|ICD10CM|Pain in left ankle and joints of left foot|Pain in left ankle and joints of left foot +C3531697|T033|PT|M25.572|ICD10CM|Pain in left ankle and joints of left foot|Pain in left ankle and joints of left foot +C3531696|T033|AB|M25.579|ICD10CM|Pain in unspecified ankle and joints of unspecified foot|Pain in unspecified ankle and joints of unspecified foot +C3531696|T033|PT|M25.579|ICD10CM|Pain in unspecified ankle and joints of unspecified foot|Pain in unspecified ankle and joints of unspecified foot +C0869450|T184|PT|M25.6|ICD10|Stiffness of joint, not elsewhere classified|Stiffness of joint, not elsewhere classified +C0869450|T184|HT|M25.6|ICD10CM|Stiffness of joint, not elsewhere classified|Stiffness of joint, not elsewhere classified +C0869450|T184|AB|M25.6|ICD10CM|Stiffness of joint, not elsewhere classified|Stiffness of joint, not elsewhere classified +C2895045|T047|AB|M25.60|ICD10CM|Stiffness of unspecified joint, not elsewhere classified|Stiffness of unspecified joint, not elsewhere classified +C2895045|T047|PT|M25.60|ICD10CM|Stiffness of unspecified joint, not elsewhere classified|Stiffness of unspecified joint, not elsewhere classified +C2895046|T047|AB|M25.61|ICD10CM|Stiffness of shoulder, not elsewhere classified|Stiffness of shoulder, not elsewhere classified +C2895046|T047|HT|M25.61|ICD10CM|Stiffness of shoulder, not elsewhere classified|Stiffness of shoulder, not elsewhere classified +C2895047|T047|AB|M25.611|ICD10CM|Stiffness of right shoulder, not elsewhere classified|Stiffness of right shoulder, not elsewhere classified +C2895047|T047|PT|M25.611|ICD10CM|Stiffness of right shoulder, not elsewhere classified|Stiffness of right shoulder, not elsewhere classified +C2895048|T047|AB|M25.612|ICD10CM|Stiffness of left shoulder, not elsewhere classified|Stiffness of left shoulder, not elsewhere classified +C2895048|T047|PT|M25.612|ICD10CM|Stiffness of left shoulder, not elsewhere classified|Stiffness of left shoulder, not elsewhere classified +C2895049|T047|AB|M25.619|ICD10CM|Stiffness of unspecified shoulder, not elsewhere classified|Stiffness of unspecified shoulder, not elsewhere classified +C2895049|T047|PT|M25.619|ICD10CM|Stiffness of unspecified shoulder, not elsewhere classified|Stiffness of unspecified shoulder, not elsewhere classified +C2895050|T047|AB|M25.62|ICD10CM|Stiffness of elbow, not elsewhere classified|Stiffness of elbow, not elsewhere classified +C2895050|T047|HT|M25.62|ICD10CM|Stiffness of elbow, not elsewhere classified|Stiffness of elbow, not elsewhere classified +C2895051|T047|AB|M25.621|ICD10CM|Stiffness of right elbow, not elsewhere classified|Stiffness of right elbow, not elsewhere classified +C2895051|T047|PT|M25.621|ICD10CM|Stiffness of right elbow, not elsewhere classified|Stiffness of right elbow, not elsewhere classified +C2895052|T047|AB|M25.622|ICD10CM|Stiffness of left elbow, not elsewhere classified|Stiffness of left elbow, not elsewhere classified +C2895052|T047|PT|M25.622|ICD10CM|Stiffness of left elbow, not elsewhere classified|Stiffness of left elbow, not elsewhere classified +C2895053|T047|AB|M25.629|ICD10CM|Stiffness of unspecified elbow, not elsewhere classified|Stiffness of unspecified elbow, not elsewhere classified +C2895053|T047|PT|M25.629|ICD10CM|Stiffness of unspecified elbow, not elsewhere classified|Stiffness of unspecified elbow, not elsewhere classified +C2895054|T047|AB|M25.63|ICD10CM|Stiffness of wrist, not elsewhere classified|Stiffness of wrist, not elsewhere classified +C2895054|T047|HT|M25.63|ICD10CM|Stiffness of wrist, not elsewhere classified|Stiffness of wrist, not elsewhere classified +C2895055|T047|AB|M25.631|ICD10CM|Stiffness of right wrist, not elsewhere classified|Stiffness of right wrist, not elsewhere classified +C2895055|T047|PT|M25.631|ICD10CM|Stiffness of right wrist, not elsewhere classified|Stiffness of right wrist, not elsewhere classified +C2895056|T047|AB|M25.632|ICD10CM|Stiffness of left wrist, not elsewhere classified|Stiffness of left wrist, not elsewhere classified +C2895056|T047|PT|M25.632|ICD10CM|Stiffness of left wrist, not elsewhere classified|Stiffness of left wrist, not elsewhere classified +C2895057|T047|AB|M25.639|ICD10CM|Stiffness of unspecified wrist, not elsewhere classified|Stiffness of unspecified wrist, not elsewhere classified +C2895057|T047|PT|M25.639|ICD10CM|Stiffness of unspecified wrist, not elsewhere classified|Stiffness of unspecified wrist, not elsewhere classified +C2895058|T047|AB|M25.64|ICD10CM|Stiffness of hand, not elsewhere classified|Stiffness of hand, not elsewhere classified +C2895058|T047|HT|M25.64|ICD10CM|Stiffness of hand, not elsewhere classified|Stiffness of hand, not elsewhere classified +C2895059|T047|AB|M25.641|ICD10CM|Stiffness of right hand, not elsewhere classified|Stiffness of right hand, not elsewhere classified +C2895059|T047|PT|M25.641|ICD10CM|Stiffness of right hand, not elsewhere classified|Stiffness of right hand, not elsewhere classified +C2895060|T047|AB|M25.642|ICD10CM|Stiffness of left hand, not elsewhere classified|Stiffness of left hand, not elsewhere classified +C2895060|T047|PT|M25.642|ICD10CM|Stiffness of left hand, not elsewhere classified|Stiffness of left hand, not elsewhere classified +C2895061|T047|AB|M25.649|ICD10CM|Stiffness of unspecified hand, not elsewhere classified|Stiffness of unspecified hand, not elsewhere classified +C2895061|T047|PT|M25.649|ICD10CM|Stiffness of unspecified hand, not elsewhere classified|Stiffness of unspecified hand, not elsewhere classified +C2895062|T047|AB|M25.65|ICD10CM|Stiffness of hip, not elsewhere classified|Stiffness of hip, not elsewhere classified +C2895062|T047|HT|M25.65|ICD10CM|Stiffness of hip, not elsewhere classified|Stiffness of hip, not elsewhere classified +C2895063|T047|AB|M25.651|ICD10CM|Stiffness of right hip, not elsewhere classified|Stiffness of right hip, not elsewhere classified +C2895063|T047|PT|M25.651|ICD10CM|Stiffness of right hip, not elsewhere classified|Stiffness of right hip, not elsewhere classified +C2895064|T047|AB|M25.652|ICD10CM|Stiffness of left hip, not elsewhere classified|Stiffness of left hip, not elsewhere classified +C2895064|T047|PT|M25.652|ICD10CM|Stiffness of left hip, not elsewhere classified|Stiffness of left hip, not elsewhere classified +C2895065|T047|AB|M25.659|ICD10CM|Stiffness of unspecified hip, not elsewhere classified|Stiffness of unspecified hip, not elsewhere classified +C2895065|T047|PT|M25.659|ICD10CM|Stiffness of unspecified hip, not elsewhere classified|Stiffness of unspecified hip, not elsewhere classified +C2895066|T047|AB|M25.66|ICD10CM|Stiffness of knee, not elsewhere classified|Stiffness of knee, not elsewhere classified +C2895066|T047|HT|M25.66|ICD10CM|Stiffness of knee, not elsewhere classified|Stiffness of knee, not elsewhere classified +C2895067|T047|AB|M25.661|ICD10CM|Stiffness of right knee, not elsewhere classified|Stiffness of right knee, not elsewhere classified +C2895067|T047|PT|M25.661|ICD10CM|Stiffness of right knee, not elsewhere classified|Stiffness of right knee, not elsewhere classified +C2895068|T047|AB|M25.662|ICD10CM|Stiffness of left knee, not elsewhere classified|Stiffness of left knee, not elsewhere classified +C2895068|T047|PT|M25.662|ICD10CM|Stiffness of left knee, not elsewhere classified|Stiffness of left knee, not elsewhere classified +C2895069|T047|AB|M25.669|ICD10CM|Stiffness of unspecified knee, not elsewhere classified|Stiffness of unspecified knee, not elsewhere classified +C2895069|T047|PT|M25.669|ICD10CM|Stiffness of unspecified knee, not elsewhere classified|Stiffness of unspecified knee, not elsewhere classified +C2895070|T047|AB|M25.67|ICD10CM|Stiffness of ankle and foot, not elsewhere classified|Stiffness of ankle and foot, not elsewhere classified +C2895070|T047|HT|M25.67|ICD10CM|Stiffness of ankle and foot, not elsewhere classified|Stiffness of ankle and foot, not elsewhere classified +C2895071|T047|AB|M25.671|ICD10CM|Stiffness of right ankle, not elsewhere classified|Stiffness of right ankle, not elsewhere classified +C2895071|T047|PT|M25.671|ICD10CM|Stiffness of right ankle, not elsewhere classified|Stiffness of right ankle, not elsewhere classified +C2895072|T047|AB|M25.672|ICD10CM|Stiffness of left ankle, not elsewhere classified|Stiffness of left ankle, not elsewhere classified +C2895072|T047|PT|M25.672|ICD10CM|Stiffness of left ankle, not elsewhere classified|Stiffness of left ankle, not elsewhere classified +C2895073|T047|AB|M25.673|ICD10CM|Stiffness of unspecified ankle, not elsewhere classified|Stiffness of unspecified ankle, not elsewhere classified +C2895073|T047|PT|M25.673|ICD10CM|Stiffness of unspecified ankle, not elsewhere classified|Stiffness of unspecified ankle, not elsewhere classified +C2895074|T047|AB|M25.674|ICD10CM|Stiffness of right foot, not elsewhere classified|Stiffness of right foot, not elsewhere classified +C2895074|T047|PT|M25.674|ICD10CM|Stiffness of right foot, not elsewhere classified|Stiffness of right foot, not elsewhere classified +C2895075|T047|AB|M25.675|ICD10CM|Stiffness of left foot, not elsewhere classified|Stiffness of left foot, not elsewhere classified +C2895075|T047|PT|M25.675|ICD10CM|Stiffness of left foot, not elsewhere classified|Stiffness of left foot, not elsewhere classified +C2895076|T047|AB|M25.676|ICD10CM|Stiffness of unspecified foot, not elsewhere classified|Stiffness of unspecified foot, not elsewhere classified +C2895076|T047|PT|M25.676|ICD10CM|Stiffness of unspecified foot, not elsewhere classified|Stiffness of unspecified foot, not elsewhere classified +C1956089|T047|HT|M25.7|ICD10CM|Osteophyte|Osteophyte +C1956089|T047|AB|M25.7|ICD10CM|Osteophyte|Osteophyte +C1956089|T047|PT|M25.7|ICD10|Osteophyte|Osteophyte +C2895077|T047|AB|M25.70|ICD10CM|Osteophyte, unspecified joint|Osteophyte, unspecified joint +C2895077|T047|PT|M25.70|ICD10CM|Osteophyte, unspecified joint|Osteophyte, unspecified joint +C2895078|T047|AB|M25.71|ICD10CM|Osteophyte, shoulder|Osteophyte, shoulder +C2895078|T047|HT|M25.71|ICD10CM|Osteophyte, shoulder|Osteophyte, shoulder +C2895079|T047|AB|M25.711|ICD10CM|Osteophyte, right shoulder|Osteophyte, right shoulder +C2895079|T047|PT|M25.711|ICD10CM|Osteophyte, right shoulder|Osteophyte, right shoulder +C2895080|T047|AB|M25.712|ICD10CM|Osteophyte, left shoulder|Osteophyte, left shoulder +C2895080|T047|PT|M25.712|ICD10CM|Osteophyte, left shoulder|Osteophyte, left shoulder +C2895081|T047|AB|M25.719|ICD10CM|Osteophyte, unspecified shoulder|Osteophyte, unspecified shoulder +C2895081|T047|PT|M25.719|ICD10CM|Osteophyte, unspecified shoulder|Osteophyte, unspecified shoulder +C2895084|T047|AB|M25.72|ICD10CM|Osteophyte, elbow|Osteophyte, elbow +C2895084|T047|HT|M25.72|ICD10CM|Osteophyte, elbow|Osteophyte, elbow +C2895082|T047|AB|M25.721|ICD10CM|Osteophyte, right elbow|Osteophyte, right elbow +C2895082|T047|PT|M25.721|ICD10CM|Osteophyte, right elbow|Osteophyte, right elbow +C2895083|T047|AB|M25.722|ICD10CM|Osteophyte, left elbow|Osteophyte, left elbow +C2895083|T047|PT|M25.722|ICD10CM|Osteophyte, left elbow|Osteophyte, left elbow +C2895084|T047|AB|M25.729|ICD10CM|Osteophyte, unspecified elbow|Osteophyte, unspecified elbow +C2895084|T047|PT|M25.729|ICD10CM|Osteophyte, unspecified elbow|Osteophyte, unspecified elbow +C2895085|T047|AB|M25.73|ICD10CM|Osteophyte, wrist|Osteophyte, wrist +C2895085|T047|HT|M25.73|ICD10CM|Osteophyte, wrist|Osteophyte, wrist +C2895086|T047|AB|M25.731|ICD10CM|Osteophyte, right wrist|Osteophyte, right wrist +C2895086|T047|PT|M25.731|ICD10CM|Osteophyte, right wrist|Osteophyte, right wrist +C2895087|T047|AB|M25.732|ICD10CM|Osteophyte, left wrist|Osteophyte, left wrist +C2895087|T047|PT|M25.732|ICD10CM|Osteophyte, left wrist|Osteophyte, left wrist +C2895088|T047|AB|M25.739|ICD10CM|Osteophyte, unspecified wrist|Osteophyte, unspecified wrist +C2895088|T047|PT|M25.739|ICD10CM|Osteophyte, unspecified wrist|Osteophyte, unspecified wrist +C0838245|T047|HT|M25.74|ICD10CM|Osteophyte, hand|Osteophyte, hand +C0838245|T047|AB|M25.74|ICD10CM|Osteophyte, hand|Osteophyte, hand +C2895089|T047|AB|M25.741|ICD10CM|Osteophyte, right hand|Osteophyte, right hand +C2895089|T047|PT|M25.741|ICD10CM|Osteophyte, right hand|Osteophyte, right hand +C2895090|T047|AB|M25.742|ICD10CM|Osteophyte, left hand|Osteophyte, left hand +C2895090|T047|PT|M25.742|ICD10CM|Osteophyte, left hand|Osteophyte, left hand +C0838245|T047|AB|M25.749|ICD10CM|Osteophyte, unspecified hand|Osteophyte, unspecified hand +C0838245|T047|PT|M25.749|ICD10CM|Osteophyte, unspecified hand|Osteophyte, unspecified hand +C2895093|T047|AB|M25.75|ICD10CM|Osteophyte, hip|Osteophyte, hip +C2895093|T047|HT|M25.75|ICD10CM|Osteophyte, hip|Osteophyte, hip +C2895091|T047|AB|M25.751|ICD10CM|Osteophyte, right hip|Osteophyte, right hip +C2895091|T047|PT|M25.751|ICD10CM|Osteophyte, right hip|Osteophyte, right hip +C2895092|T047|AB|M25.752|ICD10CM|Osteophyte, left hip|Osteophyte, left hip +C2895092|T047|PT|M25.752|ICD10CM|Osteophyte, left hip|Osteophyte, left hip +C2895093|T047|AB|M25.759|ICD10CM|Osteophyte, unspecified hip|Osteophyte, unspecified hip +C2895093|T047|PT|M25.759|ICD10CM|Osteophyte, unspecified hip|Osteophyte, unspecified hip +C2895096|T047|AB|M25.76|ICD10CM|Osteophyte, knee|Osteophyte, knee +C2895096|T047|HT|M25.76|ICD10CM|Osteophyte, knee|Osteophyte, knee +C2895094|T047|AB|M25.761|ICD10CM|Osteophyte, right knee|Osteophyte, right knee +C2895094|T047|PT|M25.761|ICD10CM|Osteophyte, right knee|Osteophyte, right knee +C2895095|T047|AB|M25.762|ICD10CM|Osteophyte, left knee|Osteophyte, left knee +C2895095|T047|PT|M25.762|ICD10CM|Osteophyte, left knee|Osteophyte, left knee +C2895096|T047|AB|M25.769|ICD10CM|Osteophyte, unspecified knee|Osteophyte, unspecified knee +C2895096|T047|PT|M25.769|ICD10CM|Osteophyte, unspecified knee|Osteophyte, unspecified knee +C0838248|T047|HT|M25.77|ICD10CM|Osteophyte, ankle and foot|Osteophyte, ankle and foot +C0838248|T047|AB|M25.77|ICD10CM|Osteophyte, ankle and foot|Osteophyte, ankle and foot +C2895097|T047|AB|M25.771|ICD10CM|Osteophyte, right ankle|Osteophyte, right ankle +C2895097|T047|PT|M25.771|ICD10CM|Osteophyte, right ankle|Osteophyte, right ankle +C2895098|T047|AB|M25.772|ICD10CM|Osteophyte, left ankle|Osteophyte, left ankle +C2895098|T047|PT|M25.772|ICD10CM|Osteophyte, left ankle|Osteophyte, left ankle +C2919143|T047|AB|M25.773|ICD10CM|Osteophyte, unspecified ankle|Osteophyte, unspecified ankle +C2919143|T047|PT|M25.773|ICD10CM|Osteophyte, unspecified ankle|Osteophyte, unspecified ankle +C2895099|T047|AB|M25.774|ICD10CM|Osteophyte, right foot|Osteophyte, right foot +C2895099|T047|PT|M25.774|ICD10CM|Osteophyte, right foot|Osteophyte, right foot +C2895100|T047|AB|M25.775|ICD10CM|Osteophyte, left foot|Osteophyte, left foot +C2895100|T047|PT|M25.775|ICD10CM|Osteophyte, left foot|Osteophyte, left foot +C2895101|T047|AB|M25.776|ICD10CM|Osteophyte, unspecified foot|Osteophyte, unspecified foot +C2895101|T047|PT|M25.776|ICD10CM|Osteophyte, unspecified foot|Osteophyte, unspecified foot +C1096359|T047|AB|M25.78|ICD10CM|Osteophyte, vertebrae|Osteophyte, vertebrae +C1096359|T047|PT|M25.78|ICD10CM|Osteophyte, vertebrae|Osteophyte, vertebrae +C0029746|T047|HT|M25.8|ICD10CM|Other specified joint disorders|Other specified joint disorders +C0029746|T047|AB|M25.8|ICD10CM|Other specified joint disorders|Other specified joint disorders +C0029746|T047|PT|M25.8|ICD10|Other specified joint disorders|Other specified joint disorders +C2895102|T047|AB|M25.80|ICD10CM|Other specified joint disorders, unspecified joint|Other specified joint disorders, unspecified joint +C2895102|T047|PT|M25.80|ICD10CM|Other specified joint disorders, unspecified joint|Other specified joint disorders, unspecified joint +C2895103|T047|AB|M25.81|ICD10CM|Other specified joint disorders, shoulder|Other specified joint disorders, shoulder +C2895103|T047|HT|M25.81|ICD10CM|Other specified joint disorders, shoulder|Other specified joint disorders, shoulder +C2895104|T047|AB|M25.811|ICD10CM|Other specified joint disorders, right shoulder|Other specified joint disorders, right shoulder +C2895104|T047|PT|M25.811|ICD10CM|Other specified joint disorders, right shoulder|Other specified joint disorders, right shoulder +C2895105|T047|AB|M25.812|ICD10CM|Other specified joint disorders, left shoulder|Other specified joint disorders, left shoulder +C2895105|T047|PT|M25.812|ICD10CM|Other specified joint disorders, left shoulder|Other specified joint disorders, left shoulder +C2895106|T047|AB|M25.819|ICD10CM|Other specified joint disorders, unspecified shoulder|Other specified joint disorders, unspecified shoulder +C2895106|T047|PT|M25.819|ICD10CM|Other specified joint disorders, unspecified shoulder|Other specified joint disorders, unspecified shoulder +C2895107|T047|AB|M25.82|ICD10CM|Other specified joint disorders, elbow|Other specified joint disorders, elbow +C2895107|T047|HT|M25.82|ICD10CM|Other specified joint disorders, elbow|Other specified joint disorders, elbow +C2895108|T047|AB|M25.821|ICD10CM|Other specified joint disorders, right elbow|Other specified joint disorders, right elbow +C2895108|T047|PT|M25.821|ICD10CM|Other specified joint disorders, right elbow|Other specified joint disorders, right elbow +C2895109|T047|AB|M25.822|ICD10CM|Other specified joint disorders, left elbow|Other specified joint disorders, left elbow +C2895109|T047|PT|M25.822|ICD10CM|Other specified joint disorders, left elbow|Other specified joint disorders, left elbow +C2895110|T047|AB|M25.829|ICD10CM|Other specified joint disorders, unspecified elbow|Other specified joint disorders, unspecified elbow +C2895110|T047|PT|M25.829|ICD10CM|Other specified joint disorders, unspecified elbow|Other specified joint disorders, unspecified elbow +C2895111|T047|AB|M25.83|ICD10CM|Other specified joint disorders, wrist|Other specified joint disorders, wrist +C2895111|T047|HT|M25.83|ICD10CM|Other specified joint disorders, wrist|Other specified joint disorders, wrist +C2895112|T047|AB|M25.831|ICD10CM|Other specified joint disorders, right wrist|Other specified joint disorders, right wrist +C2895112|T047|PT|M25.831|ICD10CM|Other specified joint disorders, right wrist|Other specified joint disorders, right wrist +C2895113|T047|AB|M25.832|ICD10CM|Other specified joint disorders, left wrist|Other specified joint disorders, left wrist +C2895113|T047|PT|M25.832|ICD10CM|Other specified joint disorders, left wrist|Other specified joint disorders, left wrist +C2895114|T047|AB|M25.839|ICD10CM|Other specified joint disorders, unspecified wrist|Other specified joint disorders, unspecified wrist +C2895114|T047|PT|M25.839|ICD10CM|Other specified joint disorders, unspecified wrist|Other specified joint disorders, unspecified wrist +C0158225|T047|HT|M25.84|ICD10CM|Other specified joint disorders, hand|Other specified joint disorders, hand +C0158225|T047|AB|M25.84|ICD10CM|Other specified joint disorders, hand|Other specified joint disorders, hand +C2895115|T047|AB|M25.841|ICD10CM|Other specified joint disorders, right hand|Other specified joint disorders, right hand +C2895115|T047|PT|M25.841|ICD10CM|Other specified joint disorders, right hand|Other specified joint disorders, right hand +C2895116|T047|AB|M25.842|ICD10CM|Other specified joint disorders, left hand|Other specified joint disorders, left hand +C2895116|T047|PT|M25.842|ICD10CM|Other specified joint disorders, left hand|Other specified joint disorders, left hand +C2895117|T047|AB|M25.849|ICD10CM|Other specified joint disorders, unspecified hand|Other specified joint disorders, unspecified hand +C2895117|T047|PT|M25.849|ICD10CM|Other specified joint disorders, unspecified hand|Other specified joint disorders, unspecified hand +C2895118|T047|AB|M25.85|ICD10CM|Other specified joint disorders, hip|Other specified joint disorders, hip +C2895118|T047|HT|M25.85|ICD10CM|Other specified joint disorders, hip|Other specified joint disorders, hip +C2895119|T047|AB|M25.851|ICD10CM|Other specified joint disorders, right hip|Other specified joint disorders, right hip +C2895119|T047|PT|M25.851|ICD10CM|Other specified joint disorders, right hip|Other specified joint disorders, right hip +C2895120|T047|AB|M25.852|ICD10CM|Other specified joint disorders, left hip|Other specified joint disorders, left hip +C2895120|T047|PT|M25.852|ICD10CM|Other specified joint disorders, left hip|Other specified joint disorders, left hip +C2895121|T047|AB|M25.859|ICD10CM|Other specified joint disorders, unspecified hip|Other specified joint disorders, unspecified hip +C2895121|T047|PT|M25.859|ICD10CM|Other specified joint disorders, unspecified hip|Other specified joint disorders, unspecified hip +C2895122|T047|AB|M25.86|ICD10CM|Other specified joint disorders, knee|Other specified joint disorders, knee +C2895122|T047|HT|M25.86|ICD10CM|Other specified joint disorders, knee|Other specified joint disorders, knee +C2895123|T047|AB|M25.861|ICD10CM|Other specified joint disorders, right knee|Other specified joint disorders, right knee +C2895123|T047|PT|M25.861|ICD10CM|Other specified joint disorders, right knee|Other specified joint disorders, right knee +C2895124|T047|AB|M25.862|ICD10CM|Other specified joint disorders, left knee|Other specified joint disorders, left knee +C2895124|T047|PT|M25.862|ICD10CM|Other specified joint disorders, left knee|Other specified joint disorders, left knee +C2895125|T047|AB|M25.869|ICD10CM|Other specified joint disorders, unspecified knee|Other specified joint disorders, unspecified knee +C2895125|T047|PT|M25.869|ICD10CM|Other specified joint disorders, unspecified knee|Other specified joint disorders, unspecified knee +C0158228|T047|HT|M25.87|ICD10CM|Other specified joint disorders, ankle and foot|Other specified joint disorders, ankle and foot +C0158228|T047|AB|M25.87|ICD10CM|Other specified joint disorders, ankle and foot|Other specified joint disorders, ankle and foot +C2895126|T047|AB|M25.871|ICD10CM|Other specified joint disorders, right ankle and foot|Other specified joint disorders, right ankle and foot +C2895126|T047|PT|M25.871|ICD10CM|Other specified joint disorders, right ankle and foot|Other specified joint disorders, right ankle and foot +C2895127|T047|AB|M25.872|ICD10CM|Other specified joint disorders, left ankle and foot|Other specified joint disorders, left ankle and foot +C2895127|T047|PT|M25.872|ICD10CM|Other specified joint disorders, left ankle and foot|Other specified joint disorders, left ankle and foot +C2895128|T047|AB|M25.879|ICD10CM|Other specified joint disorders, unspecified ankle and foot|Other specified joint disorders, unspecified ankle and foot +C2895128|T047|PT|M25.879|ICD10CM|Other specified joint disorders, unspecified ankle and foot|Other specified joint disorders, unspecified ankle and foot +C0022408|T047|PT|M25.9|ICD10CM|Joint disorder, unspecified|Joint disorder, unspecified +C0022408|T047|AB|M25.9|ICD10CM|Joint disorder, unspecified|Joint disorder, unspecified +C0022408|T047|PT|M25.9|ICD10|Joint disorder, unspecified|Joint disorder, unspecified +C0155938|T019|AB|M26|ICD10CM|Dentofacial anomalies [including malocclusion]|Dentofacial anomalies [including malocclusion] +C0155938|T019|HT|M26|ICD10CM|Dentofacial anomalies [including malocclusion]|Dentofacial anomalies [including malocclusion] +C2895129|T190|HT|M26-M27|ICD10CM|Dentofacial anomalies [including malocclusion] and other disorders of jaw (M26-M27)|Dentofacial anomalies [including malocclusion] and other disorders of jaw (M26-M27) +C0024508|T019|HT|M26.0|ICD10CM|Major anomalies of jaw size|Major anomalies of jaw size +C0024508|T019|AB|M26.0|ICD10CM|Major anomalies of jaw size|Major anomalies of jaw size +C0024508|T019|PT|M26.00|ICD10CM|Unspecified anomaly of jaw size|Unspecified anomaly of jaw size +C0024508|T019|AB|M26.00|ICD10CM|Unspecified anomaly of jaw size|Unspecified anomaly of jaw size +C2227090|T033|PT|M26.01|ICD10CM|Maxillary hyperplasia|Maxillary hyperplasia +C2227090|T033|AB|M26.01|ICD10CM|Maxillary hyperplasia|Maxillary hyperplasia +C0240310|T019|PT|M26.02|ICD10CM|Maxillary hypoplasia|Maxillary hypoplasia +C0240310|T019|AB|M26.02|ICD10CM|Maxillary hypoplasia|Maxillary hypoplasia +C0302501|T190|PT|M26.03|ICD10CM|Mandibular hyperplasia|Mandibular hyperplasia +C0302501|T190|AB|M26.03|ICD10CM|Mandibular hyperplasia|Mandibular hyperplasia +C4024589|T190|PT|M26.04|ICD10CM|Mandibular hypoplasia|Mandibular hypoplasia +C4024589|T190|AB|M26.04|ICD10CM|Mandibular hypoplasia|Mandibular hypoplasia +C0341029|T190|PT|M26.05|ICD10CM|Macrogenia|Macrogenia +C0341029|T190|AB|M26.05|ICD10CM|Macrogenia|Macrogenia +C0341030|T190|PT|M26.06|ICD10CM|Microgenia|Microgenia +C0341030|T190|AB|M26.06|ICD10CM|Microgenia|Microgenia +C1456175|T047|ET|M26.07|ICD10CM|Entire maxillary tuberosity|Entire maxillary tuberosity +C1456175|T047|PT|M26.07|ICD10CM|Excessive tuberosity of jaw|Excessive tuberosity of jaw +C1456175|T047|AB|M26.07|ICD10CM|Excessive tuberosity of jaw|Excessive tuberosity of jaw +C0859106|T190|AB|M26.09|ICD10CM|Other specified anomalies of jaw size|Other specified anomalies of jaw size +C0859106|T190|PT|M26.09|ICD10CM|Other specified anomalies of jaw size|Other specified anomalies of jaw size +C0003110|T190|HT|M26.1|ICD10CM|Anomalies of jaw-cranial base relationship|Anomalies of jaw-cranial base relationship +C0003110|T190|AB|M26.1|ICD10CM|Anomalies of jaw-cranial base relationship|Anomalies of jaw-cranial base relationship +C0003110|T190|AB|M26.10|ICD10CM|Unspecified anomaly of jaw-cranial base relationship|Unspecified anomaly of jaw-cranial base relationship +C0003110|T190|PT|M26.10|ICD10CM|Unspecified anomaly of jaw-cranial base relationship|Unspecified anomaly of jaw-cranial base relationship +C0399519|T033|PT|M26.11|ICD10CM|Maxillary asymmetry|Maxillary asymmetry +C0399519|T033|AB|M26.11|ICD10CM|Maxillary asymmetry|Maxillary asymmetry +C0375343|T190|PT|M26.12|ICD10CM|Other jaw asymmetry|Other jaw asymmetry +C0375343|T190|AB|M26.12|ICD10CM|Other jaw asymmetry|Other jaw asymmetry +C0375344|T190|AB|M26.19|ICD10CM|Other specified anomalies of jaw-cranial base relationship|Other specified anomalies of jaw-cranial base relationship +C0375344|T190|PT|M26.19|ICD10CM|Other specified anomalies of jaw-cranial base relationship|Other specified anomalies of jaw-cranial base relationship +C0155939|T190|HT|M26.2|ICD10CM|Anomalies of dental arch relationship|Anomalies of dental arch relationship +C0155939|T190|AB|M26.2|ICD10CM|Anomalies of dental arch relationship|Anomalies of dental arch relationship +C0155939|T190|AB|M26.20|ICD10CM|Unspecified anomaly of dental arch relationship|Unspecified anomaly of dental arch relationship +C0155939|T190|PT|M26.20|ICD10CM|Unspecified anomaly of dental arch relationship|Unspecified anomaly of dental arch relationship +C2895130|T047|AB|M26.21|ICD10CM|Malocclusion, Angle's class|Malocclusion, Angle's class +C2895130|T047|HT|M26.21|ICD10CM|Malocclusion, Angle's class|Malocclusion, Angle's class +C0399523|T047|AB|M26.211|ICD10CM|Malocclusion, Angle's class I|Malocclusion, Angle's class I +C0399523|T047|PT|M26.211|ICD10CM|Malocclusion, Angle's class I|Malocclusion, Angle's class I +C1456177|T046|ET|M26.211|ICD10CM|Neutro-occlusion|Neutro-occlusion +C1456178|T046|ET|M26.212|ICD10CM|Disto-occlusion Division I|Disto-occlusion Division I +C1456179|T046|ET|M26.212|ICD10CM|Disto-occlusion Division II|Disto-occlusion Division II +C3714535|T190|AB|M26.212|ICD10CM|Malocclusion, Angle's class II|Malocclusion, Angle's class II +C3714535|T190|PT|M26.212|ICD10CM|Malocclusion, Angle's class II|Malocclusion, Angle's class II +C0399526|T019|AB|M26.213|ICD10CM|Malocclusion, Angle's class III|Malocclusion, Angle's class III +C0399526|T019|PT|M26.213|ICD10CM|Malocclusion, Angle's class III|Malocclusion, Angle's class III +C0232512|T190|ET|M26.213|ICD10CM|Mesio-occlusion|Mesio-occlusion +C2895130|T047|AB|M26.219|ICD10CM|Malocclusion, Angle's class, unspecified|Malocclusion, Angle's class, unspecified +C2895130|T047|PT|M26.219|ICD10CM|Malocclusion, Angle's class, unspecified|Malocclusion, Angle's class, unspecified +C2895131|T190|AB|M26.22|ICD10CM|Open occlusal relationship|Open occlusal relationship +C2895131|T190|HT|M26.22|ICD10CM|Open occlusal relationship|Open occlusal relationship +C0266060|T190|ET|M26.220|ICD10CM|Anterior open bite|Anterior open bite +C1456180|T033|PT|M26.220|ICD10CM|Open anterior occlusal relationship|Open anterior occlusal relationship +C1456180|T033|AB|M26.220|ICD10CM|Open anterior occlusal relationship|Open anterior occlusal relationship +C1456181|T033|PT|M26.221|ICD10CM|Open posterior occlusal relationship|Open posterior occlusal relationship +C1456181|T033|AB|M26.221|ICD10CM|Open posterior occlusal relationship|Open posterior occlusal relationship +C0266062|T019|ET|M26.221|ICD10CM|Posterior open bite|Posterior open bite +C1719499|T033|ET|M26.23|ICD10CM|Excessive horizontal overjet|Excessive horizontal overjet +C1456182|T047|AB|M26.23|ICD10CM|Excessive horizontal overlap|Excessive horizontal overlap +C1456182|T047|PT|M26.23|ICD10CM|Excessive horizontal overlap|Excessive horizontal overlap +C2895132|T190|ET|M26.24|ICD10CM|Crossbite (anterior) (posterior)|Crossbite (anterior) (posterior) +C1456183|T047|AB|M26.24|ICD10CM|Reverse articulation|Reverse articulation +C1456183|T190|AB|M26.24|ICD10CM|Reverse articulation|Reverse articulation +C1456183|T047|PT|M26.24|ICD10CM|Reverse articulation|Reverse articulation +C1456183|T190|PT|M26.24|ICD10CM|Reverse articulation|Reverse articulation +C1456186|T047|AB|M26.25|ICD10CM|Anomalies of interarch distance|Anomalies of interarch distance +C1456186|T047|PT|M26.25|ICD10CM|Anomalies of interarch distance|Anomalies of interarch distance +C0399532|T019|ET|M26.29|ICD10CM|Midline deviation of dental arch|Midline deviation of dental arch +C1456189|T047|AB|M26.29|ICD10CM|Other anomalies of dental arch relationship|Other anomalies of dental arch relationship +C1456189|T047|PT|M26.29|ICD10CM|Other anomalies of dental arch relationship|Other anomalies of dental arch relationship +C0266063|T047|ET|M26.29|ICD10CM|Overbite (excessive) deep|Overbite (excessive) deep +C0596028|T190|ET|M26.29|ICD10CM|Overbite (excessive) horizontal|Overbite (excessive) horizontal +C0266066|T190|ET|M26.29|ICD10CM|Overbite (excessive) vertical|Overbite (excessive) vertical +C0266067|T019|ET|M26.29|ICD10CM|Posterior lingual occlusion of mandibular teeth|Posterior lingual occlusion of mandibular teeth +C2895133|T019|AB|M26.3|ICD10CM|Anomalies of tooth position of fully erupted tooth or teeth|Anomalies of tooth position of fully erupted tooth or teeth +C2895133|T019|HT|M26.3|ICD10CM|Anomalies of tooth position of fully erupted tooth or teeth|Anomalies of tooth position of fully erupted tooth or teeth +C2895134|T033|ET|M26.30|ICD10CM|Abnormal spacing of fully erupted tooth or teeth NOS|Abnormal spacing of fully erupted tooth or teeth NOS +C2895135|T046|ET|M26.30|ICD10CM|Displacement of fully erupted tooth or teeth NOS|Displacement of fully erupted tooth or teeth NOS +C2895136|T019|ET|M26.30|ICD10CM|Transposition of fully erupted tooth or teeth NOS|Transposition of fully erupted tooth or teeth NOS +C2895137|T019|AB|M26.30|ICD10CM|Unsp anomaly of tooth position of fully erupted tooth/teeth|Unsp anomaly of tooth position of fully erupted tooth/teeth +C2895137|T019|PT|M26.30|ICD10CM|Unspecified anomaly of tooth position of fully erupted tooth or teeth|Unspecified anomaly of tooth position of fully erupted tooth or teeth +C2895138|T019|AB|M26.31|ICD10CM|Crowding of fully erupted teeth|Crowding of fully erupted teeth +C2895138|T019|PT|M26.31|ICD10CM|Crowding of fully erupted teeth|Crowding of fully erupted teeth +C2895139|T047|ET|M26.32|ICD10CM|Diastema of fully erupted tooth or teeth NOS|Diastema of fully erupted tooth or teeth NOS +C2895140|T190|PT|M26.32|ICD10CM|Excessive spacing of fully erupted teeth|Excessive spacing of fully erupted teeth +C2895140|T190|AB|M26.32|ICD10CM|Excessive spacing of fully erupted teeth|Excessive spacing of fully erupted teeth +C2895143|T019|AB|M26.33|ICD10CM|Horizontal displacement of fully erupted tooth or teeth|Horizontal displacement of fully erupted tooth or teeth +C2895143|T019|PT|M26.33|ICD10CM|Horizontal displacement of fully erupted tooth or teeth|Horizontal displacement of fully erupted tooth or teeth +C2895141|T190|ET|M26.33|ICD10CM|Tipped tooth or teeth|Tipped tooth or teeth +C2895142|T190|ET|M26.33|ICD10CM|Tipping of fully erupted tooth|Tipping of fully erupted tooth +C1318481|T190|ET|M26.34|ICD10CM|Extruded tooth|Extruded tooth +C2895144|T019|ET|M26.34|ICD10CM|Infraeruption of tooth or teeth|Infraeruption of tooth or teeth +C2895145|T019|ET|M26.34|ICD10CM|Supraeruption of tooth or teeth|Supraeruption of tooth or teeth +C2895146|T019|AB|M26.34|ICD10CM|Vertical displacement of fully erupted tooth or teeth|Vertical displacement of fully erupted tooth or teeth +C2895146|T019|PT|M26.34|ICD10CM|Vertical displacement of fully erupted tooth or teeth|Vertical displacement of fully erupted tooth or teeth +C2895147|T019|AB|M26.35|ICD10CM|Rotation of fully erupted tooth or teeth|Rotation of fully erupted tooth or teeth +C2895147|T019|PT|M26.35|ICD10CM|Rotation of fully erupted tooth or teeth|Rotation of fully erupted tooth or teeth +C2895149|T019|AB|M26.36|ICD10CM|Insufficient interocclusal distance of fully erupted teeth|Insufficient interocclusal distance of fully erupted teeth +C2895149|T019|PT|M26.36|ICD10CM|Insufficient interocclusal distance of fully erupted teeth (ridge)|Insufficient interocclusal distance of fully erupted teeth (ridge) +C2895148|T033|ET|M26.36|ICD10CM|Lack of adequate intermaxillary vertical dimension of fully erupted teeth|Lack of adequate intermaxillary vertical dimension of fully erupted teeth +C2895150|T019|ET|M26.37|ICD10CM|Excessive intermaxillary vertical dimension of fully erupted teeth|Excessive intermaxillary vertical dimension of fully erupted teeth +C2895152|T019|PT|M26.37|ICD10CM|Excessive interocclusal distance of fully erupted teeth|Excessive interocclusal distance of fully erupted teeth +C2895152|T019|AB|M26.37|ICD10CM|Excessive interocclusal distance of fully erupted teeth|Excessive interocclusal distance of fully erupted teeth +C2895151|T019|ET|M26.37|ICD10CM|Loss of occlusal vertical dimension of fully erupted teeth|Loss of occlusal vertical dimension of fully erupted teeth +C2895153|T019|AB|M26.39|ICD10CM|Oth anomalies of tooth position of fully erupted tooth/teeth|Oth anomalies of tooth position of fully erupted tooth/teeth +C2895153|T019|PT|M26.39|ICD10CM|Other anomalies of tooth position of fully erupted tooth or teeth|Other anomalies of tooth position of fully erupted tooth or teeth +C0024636|T190|PT|M26.4|ICD10CM|Malocclusion, unspecified|Malocclusion, unspecified +C0024636|T190|AB|M26.4|ICD10CM|Malocclusion, unspecified|Malocclusion, unspecified +C0266932|T190|HT|M26.5|ICD10CM|Dentofacial functional abnormalities|Dentofacial functional abnormalities +C0266932|T190|AB|M26.5|ICD10CM|Dentofacial functional abnormalities|Dentofacial functional abnormalities +C0266932|T190|AB|M26.50|ICD10CM|Dentofacial functional abnormalities, unspecified|Dentofacial functional abnormalities, unspecified +C0266932|T190|PT|M26.50|ICD10CM|Dentofacial functional abnormalities, unspecified|Dentofacial functional abnormalities, unspecified +C0266933|T047|PT|M26.51|ICD10CM|Abnormal jaw closure|Abnormal jaw closure +C0266933|T047|AB|M26.51|ICD10CM|Abnormal jaw closure|Abnormal jaw closure +C0521590|T033|PT|M26.52|ICD10CM|Limited mandibular range of motion|Limited mandibular range of motion +C0521590|T033|AB|M26.52|ICD10CM|Limited mandibular range of motion|Limited mandibular range of motion +C1456203|T047|AB|M26.53|ICD10CM|Deviation in opening and closing of the mandible|Deviation in opening and closing of the mandible +C1456203|T047|PT|M26.53|ICD10CM|Deviation in opening and closing of the mandible|Deviation in opening and closing of the mandible +C1291056|T190|PT|M26.54|ICD10CM|Insufficient anterior guidance|Insufficient anterior guidance +C1291056|T190|AB|M26.54|ICD10CM|Insufficient anterior guidance|Insufficient anterior guidance +C1719503|T033|ET|M26.54|ICD10CM|Insufficient anterior occlusal guidance|Insufficient anterior occlusal guidance +C1456205|T047|PT|M26.55|ICD10CM|Centric occlusion maximum intercuspation discrepancy|Centric occlusion maximum intercuspation discrepancy +C1456205|T047|AB|M26.55|ICD10CM|Centric occlusion maximum intercuspation discrepancy|Centric occlusion maximum intercuspation discrepancy +C2895154|T033|ET|M26.56|ICD10CM|Balancing side interference|Balancing side interference +C2895155|T190|AB|M26.56|ICD10CM|Non-working side interference|Non-working side interference +C2895155|T190|PT|M26.56|ICD10CM|Non-working side interference|Non-working side interference +C1456207|T033|PT|M26.57|ICD10CM|Lack of posterior occlusal support|Lack of posterior occlusal support +C1456207|T033|AB|M26.57|ICD10CM|Lack of posterior occlusal support|Lack of posterior occlusal support +C1268896|T033|ET|M26.59|ICD10CM|Centric occlusion (of teeth) NOS|Centric occlusion (of teeth) NOS +C0266934|T190|ET|M26.59|ICD10CM|Malocclusion due to abnormal swallowing|Malocclusion due to abnormal swallowing +C0266935|T033|ET|M26.59|ICD10CM|Malocclusion due to mouth breathing|Malocclusion due to mouth breathing +C2895156|T047|ET|M26.59|ICD10CM|Malocclusion due to tongue, lip or finger habits|Malocclusion due to tongue, lip or finger habits +C1456208|T047|AB|M26.59|ICD10CM|Other dentofacial functional abnormalities|Other dentofacial functional abnormalities +C1456208|T047|PT|M26.59|ICD10CM|Other dentofacial functional abnormalities|Other dentofacial functional abnormalities +C0039494|T047|HT|M26.6|ICD10CM|Temporomandibular joint disorders|Temporomandibular joint disorders +C0039494|T047|AB|M26.6|ICD10CM|Temporomandibular joint disorders|Temporomandibular joint disorders +C0039494|T047|AB|M26.60|ICD10CM|Temporomandibular joint disorder, unspecified|Temporomandibular joint disorder, unspecified +C0039494|T047|HT|M26.60|ICD10CM|Temporomandibular joint disorder, unspecified|Temporomandibular joint disorder, unspecified +C4268700|T047|AB|M26.601|ICD10CM|Right temporomandibular joint disorder, unspecified|Right temporomandibular joint disorder, unspecified +C4268700|T047|PT|M26.601|ICD10CM|Right temporomandibular joint disorder, unspecified|Right temporomandibular joint disorder, unspecified +C4268701|T047|AB|M26.602|ICD10CM|Left temporomandibular joint disorder, unspecified|Left temporomandibular joint disorder, unspecified +C4268701|T047|PT|M26.602|ICD10CM|Left temporomandibular joint disorder, unspecified|Left temporomandibular joint disorder, unspecified +C4268702|T047|AB|M26.603|ICD10CM|Bilateral temporomandibular joint disorder, unspecified|Bilateral temporomandibular joint disorder, unspecified +C4268702|T047|PT|M26.603|ICD10CM|Bilateral temporomandibular joint disorder, unspecified|Bilateral temporomandibular joint disorder, unspecified +C0039494|T047|ET|M26.609|ICD10CM|Temporomandibular joint disorder NOS|Temporomandibular joint disorder NOS +C4268703|T047|PT|M26.609|ICD10CM|Unspecified temporomandibular joint disorder, unspecified side|Unspecified temporomandibular joint disorder, unspecified side +C4268703|T047|AB|M26.609|ICD10CM|Unspecified TMJ joint disorder, unspecified side|Unspecified TMJ joint disorder, unspecified side +C3506687|T047|AB|M26.61|ICD10CM|Adhesions and ankylosis of temporomandibular joint|Adhesions and ankylosis of temporomandibular joint +C3506687|T047|HT|M26.61|ICD10CM|Adhesions and ankylosis of temporomandibular joint|Adhesions and ankylosis of temporomandibular joint +C4268704|T047|AB|M26.611|ICD10CM|Adhesions and ankylosis of right temporomandibular joint|Adhesions and ankylosis of right temporomandibular joint +C4268704|T047|PT|M26.611|ICD10CM|Adhesions and ankylosis of right temporomandibular joint|Adhesions and ankylosis of right temporomandibular joint +C4268705|T047|AB|M26.612|ICD10CM|Adhesions and ankylosis of left temporomandibular joint|Adhesions and ankylosis of left temporomandibular joint +C4268705|T047|PT|M26.612|ICD10CM|Adhesions and ankylosis of left temporomandibular joint|Adhesions and ankylosis of left temporomandibular joint +C4268706|T047|AB|M26.613|ICD10CM|Adhesions and ankylosis of bilateral temporomandibular joint|Adhesions and ankylosis of bilateral temporomandibular joint +C4268706|T047|PT|M26.613|ICD10CM|Adhesions and ankylosis of bilateral temporomandibular joint|Adhesions and ankylosis of bilateral temporomandibular joint +C4268707|T047|PT|M26.619|ICD10CM|Adhesions and ankylosis of temporomandibular joint, unspecified side|Adhesions and ankylosis of temporomandibular joint, unspecified side +C4268707|T047|AB|M26.619|ICD10CM|Adhesions and ankylosis of TMJ joint, unspecified side|Adhesions and ankylosis of TMJ joint, unspecified side +C0155943|T047|AB|M26.62|ICD10CM|Arthralgia of temporomandibular joint|Arthralgia of temporomandibular joint +C0155943|T047|HT|M26.62|ICD10CM|Arthralgia of temporomandibular joint|Arthralgia of temporomandibular joint +C4270813|T047|AB|M26.621|ICD10CM|Arthralgia of right temporomandibular joint|Arthralgia of right temporomandibular joint +C4270813|T047|PT|M26.621|ICD10CM|Arthralgia of right temporomandibular joint|Arthralgia of right temporomandibular joint +C4268708|T047|AB|M26.622|ICD10CM|Arthralgia of left temporomandibular joint|Arthralgia of left temporomandibular joint +C4268708|T047|PT|M26.622|ICD10CM|Arthralgia of left temporomandibular joint|Arthralgia of left temporomandibular joint +C4268709|T047|AB|M26.623|ICD10CM|Arthralgia of bilateral temporomandibular joint|Arthralgia of bilateral temporomandibular joint +C4268709|T047|PT|M26.623|ICD10CM|Arthralgia of bilateral temporomandibular joint|Arthralgia of bilateral temporomandibular joint +C4268710|T047|AB|M26.629|ICD10CM|Arthralgia of temporomandibular joint, unspecified side|Arthralgia of temporomandibular joint, unspecified side +C4268710|T047|PT|M26.629|ICD10CM|Arthralgia of temporomandibular joint, unspecified side|Arthralgia of temporomandibular joint, unspecified side +C0685925|T047|AB|M26.63|ICD10CM|Articular disc disorder of temporomandibular joint|Articular disc disorder of temporomandibular joint +C0685925|T047|HT|M26.63|ICD10CM|Articular disc disorder of temporomandibular joint|Articular disc disorder of temporomandibular joint +C4268711|T047|PT|M26.631|ICD10CM|Articular disc disorder of right temporomandibular joint|Articular disc disorder of right temporomandibular joint +C4268711|T047|AB|M26.631|ICD10CM|Articular disc disorder of right temporomandibular joint|Articular disc disorder of right temporomandibular joint +C4268712|T047|PT|M26.632|ICD10CM|Articular disc disorder of left temporomandibular joint|Articular disc disorder of left temporomandibular joint +C4268712|T047|AB|M26.632|ICD10CM|Articular disc disorder of left temporomandibular joint|Articular disc disorder of left temporomandibular joint +C4268713|T047|AB|M26.633|ICD10CM|Articular disc disorder of bilateral temporomandibular joint|Articular disc disorder of bilateral temporomandibular joint +C4268713|T047|PT|M26.633|ICD10CM|Articular disc disorder of bilateral temporomandibular joint|Articular disc disorder of bilateral temporomandibular joint +C4268714|T047|PT|M26.639|ICD10CM|Articular disc disorder of temporomandibular joint, unspecified side|Articular disc disorder of temporomandibular joint, unspecified side +C4268714|T047|AB|M26.639|ICD10CM|Articular disc disorder of TMJ joint, unspecified side|Articular disc disorder of TMJ joint, unspecified side +C0155945|T047|AB|M26.69|ICD10CM|Other specified disorders of temporomandibular joint|Other specified disorders of temporomandibular joint +C0155945|T047|PT|M26.69|ICD10CM|Other specified disorders of temporomandibular joint|Other specified disorders of temporomandibular joint +C0375346|T190|HT|M26.7|ICD10CM|Dental alveolar anomalies|Dental alveolar anomalies +C0375346|T190|AB|M26.7|ICD10CM|Dental alveolar anomalies|Dental alveolar anomalies +C0375346|T190|PT|M26.70|ICD10CM|Unspecified alveolar anomaly|Unspecified alveolar anomaly +C0375346|T190|AB|M26.70|ICD10CM|Unspecified alveolar anomaly|Unspecified alveolar anomaly +C0375347|T190|PT|M26.71|ICD10CM|Alveolar maxillary hyperplasia|Alveolar maxillary hyperplasia +C0375347|T190|AB|M26.71|ICD10CM|Alveolar maxillary hyperplasia|Alveolar maxillary hyperplasia +C0375348|T190|PT|M26.72|ICD10CM|Alveolar mandibular hyperplasia|Alveolar mandibular hyperplasia +C0375348|T190|AB|M26.72|ICD10CM|Alveolar mandibular hyperplasia|Alveolar mandibular hyperplasia +C0375349|T190|PT|M26.73|ICD10CM|Alveolar maxillary hypoplasia|Alveolar maxillary hypoplasia +C0375349|T190|AB|M26.73|ICD10CM|Alveolar maxillary hypoplasia|Alveolar maxillary hypoplasia +C0375350|T190|PT|M26.74|ICD10CM|Alveolar mandibular hypoplasia|Alveolar mandibular hypoplasia +C0375350|T190|AB|M26.74|ICD10CM|Alveolar mandibular hypoplasia|Alveolar mandibular hypoplasia +C0859118|T190|AB|M26.79|ICD10CM|Other specified alveolar anomalies|Other specified alveolar anomalies +C0859118|T190|PT|M26.79|ICD10CM|Other specified alveolar anomalies|Other specified alveolar anomalies +C0477464|T190|HT|M26.8|ICD10CM|Other dentofacial anomalies|Other dentofacial anomalies +C0477464|T190|AB|M26.8|ICD10CM|Other dentofacial anomalies|Other dentofacial anomalies +C1456217|T047|AB|M26.81|ICD10CM|Anterior soft tissue impingement|Anterior soft tissue impingement +C1456217|T047|PT|M26.81|ICD10CM|Anterior soft tissue impingement|Anterior soft tissue impingement +C2895158|T047|ET|M26.81|ICD10CM|Anterior soft tissue impingement on teeth|Anterior soft tissue impingement on teeth +C1456218|T047|AB|M26.82|ICD10CM|Posterior soft tissue impingement|Posterior soft tissue impingement +C1456218|T047|PT|M26.82|ICD10CM|Posterior soft tissue impingement|Posterior soft tissue impingement +C2895159|T047|ET|M26.82|ICD10CM|Posterior soft tissue impingement on teeth|Posterior soft tissue impingement on teeth +C0477464|T190|PT|M26.89|ICD10CM|Other dentofacial anomalies|Other dentofacial anomalies +C0477464|T190|AB|M26.89|ICD10CM|Other dentofacial anomalies|Other dentofacial anomalies +C0155947|T190|PT|M26.9|ICD10CM|Dentofacial anomaly, unspecified|Dentofacial anomaly, unspecified +C0155947|T190|AB|M26.9|ICD10CM|Dentofacial anomaly, unspecified|Dentofacial anomaly, unspecified +C0494711|T047|AB|M27|ICD10CM|Other diseases of jaws|Other diseases of jaws +C0494711|T047|HT|M27|ICD10CM|Other diseases of jaws|Other diseases of jaws +C0235801|T019|PT|M27.0|ICD10CM|Developmental disorders of jaws|Developmental disorders of jaws +C0235801|T019|AB|M27.0|ICD10CM|Developmental disorders of jaws|Developmental disorders of jaws +C0266983|T047|ET|M27.0|ICD10CM|Latent bone cyst of jaw|Latent bone cyst of jaw +C1394424|T190|ET|M27.0|ICD10CM|Stafne's cyst|Stafne's cyst +C0266980|T047|ET|M27.0|ICD10CM|Torus mandibularis|Torus mandibularis +C0266981|T033|ET|M27.0|ICD10CM|Torus palatinus|Torus palatinus +C0018194|T046|ET|M27.1|ICD10CM|Giant cell granuloma NOS|Giant cell granuloma NOS +C0162375|T047|PT|M27.1|ICD10CM|Giant cell granuloma, central|Giant cell granuloma, central +C0162375|T047|AB|M27.1|ICD10CM|Giant cell granuloma, central|Giant cell granuloma, central +C0155954|T047|PT|M27.2|ICD10CM|Inflammatory conditions of jaws|Inflammatory conditions of jaws +C0155954|T047|AB|M27.2|ICD10CM|Inflammatory conditions of jaws|Inflammatory conditions of jaws +C0341040|T047|ET|M27.2|ICD10CM|Osteitis of jaw(s)|Osteitis of jaw(s) +C0266972|T047|ET|M27.2|ICD10CM|Osteomyelitis (neonatal) jaw(s)|Osteomyelitis (neonatal) jaw(s) +C0266984|T047|ET|M27.2|ICD10CM|Osteoradionecrosis jaw(s)|Osteoradionecrosis jaw(s) +C0266973|T047|ET|M27.2|ICD10CM|Periostitis jaw(s)|Periostitis jaw(s) +C0266977|T047|ET|M27.2|ICD10CM|Sequestrum of jaw bone|Sequestrum of jaw bone +C0013240|T047|ET|M27.3|ICD10CM|Alveolar osteitis|Alveolar osteitis +C0013240|T047|PT|M27.3|ICD10CM|Alveolitis of jaws|Alveolitis of jaws +C0013240|T047|AB|M27.3|ICD10CM|Alveolitis of jaws|Alveolitis of jaws +C0013240|T047|ET|M27.3|ICD10CM|Dry socket|Dry socket +C2895160|T047|AB|M27.4|ICD10CM|Other and unspecified cysts of jaw|Other and unspecified cysts of jaw +C2895160|T047|HT|M27.4|ICD10CM|Other and unspecified cysts of jaw|Other and unspecified cysts of jaw +C0022361|T020|ET|M27.40|ICD10CM|Cyst of jaw NOS|Cyst of jaw NOS +C2895161|T047|AB|M27.40|ICD10CM|Unspecified cyst of jaw|Unspecified cyst of jaw +C2895161|T047|PT|M27.40|ICD10CM|Unspecified cyst of jaw|Unspecified cyst of jaw +C0266959|T047|ET|M27.49|ICD10CM|Aneurysmal cyst of jaw|Aneurysmal cyst of jaw +C0392493|T046|ET|M27.49|ICD10CM|Hemorrhagic cyst of jaw|Hemorrhagic cyst of jaw +C0029569|T047|PT|M27.49|ICD10CM|Other cysts of jaw|Other cysts of jaw +C0029569|T047|AB|M27.49|ICD10CM|Other cysts of jaw|Other cysts of jaw +C0266961|T037|ET|M27.49|ICD10CM|Traumatic cyst of jaw|Traumatic cyst of jaw +C1719524|T046|AB|M27.5|ICD10CM|Periradicular pathology assoc w previous endodontic trtmt|Periradicular pathology assoc w previous endodontic trtmt +C1719524|T046|HT|M27.5|ICD10CM|Periradicular pathology associated with previous endodontic treatment|Periradicular pathology associated with previous endodontic treatment +C2895162|T046|PT|M27.51|ICD10CM|Perforation of root canal space due to endodontic treatment|Perforation of root canal space due to endodontic treatment +C2895162|T046|AB|M27.51|ICD10CM|Perforation of root canal space due to endodontic treatment|Perforation of root canal space due to endodontic treatment +C1719522|T047|PT|M27.52|ICD10CM|Endodontic overfill|Endodontic overfill +C1719522|T047|AB|M27.52|ICD10CM|Endodontic overfill|Endodontic overfill +C1719523|T047|PT|M27.53|ICD10CM|Endodontic underfill|Endodontic underfill +C1719523|T047|AB|M27.53|ICD10CM|Endodontic underfill|Endodontic underfill +C1719713|T046|AB|M27.59|ICD10CM|Oth periradicular pathology assoc w prev endodontic trtmt|Oth periradicular pathology assoc w prev endodontic trtmt +C1719713|T046|PT|M27.59|ICD10CM|Other periradicular pathology associated with previous endodontic treatment|Other periradicular pathology associated with previous endodontic treatment +C1955812|T046|AB|M27.6|ICD10CM|Endosseous dental implant failure|Endosseous dental implant failure +C1955812|T046|HT|M27.6|ICD10CM|Endosseous dental implant failure|Endosseous dental implant failure +C1955793|T046|ET|M27.61|ICD10CM|Hemorrhagic complications of dental implant placement|Hemorrhagic complications of dental implant placement +C1955794|T046|ET|M27.61|ICD10CM|Iatrogenic osseointegration failure of dental implant|Iatrogenic osseointegration failure of dental implant +C2711774|T046|AB|M27.61|ICD10CM|Osseointegration failure of dental implant|Osseointegration failure of dental implant +C2711774|T046|PT|M27.61|ICD10CM|Osseointegration failure of dental implant|Osseointegration failure of dental implant +C1955795|T046|ET|M27.61|ICD10CM|Osseointegration failure of dental implant due to complications of systemic disease|Osseointegration failure of dental implant due to complications of systemic disease +C1955796|T046|ET|M27.61|ICD10CM|Osseointegration failure of dental implant due to poor bone quality|Osseointegration failure of dental implant due to poor bone quality +C1955797|T046|ET|M27.61|ICD10CM|Pre-integration failure of dental implant NOS|Pre-integration failure of dental implant NOS +C1955798|T046|ET|M27.61|ICD10CM|Pre-osseointegration failure of dental implant|Pre-osseointegration failure of dental implant +C1955800|T046|ET|M27.62|ICD10CM|Failure of dental implant due to lack of attached gingiva|Failure of dental implant due to lack of attached gingiva +C1955801|T033|ET|M27.62|ICD10CM|Failure of dental implant due to occlusal trauma (caused by poor prosthetic design)|Failure of dental implant due to occlusal trauma (caused by poor prosthetic design) +C1955802|T033|ET|M27.62|ICD10CM|Failure of dental implant due to parafunctional habits|Failure of dental implant due to parafunctional habits +C1955803|T033|ET|M27.62|ICD10CM|Failure of dental implant due to periodontal infection (peri-implantitis)|Failure of dental implant due to periodontal infection (peri-implantitis) +C1955804|T033|ET|M27.62|ICD10CM|Failure of dental implant due to poor oral hygiene|Failure of dental implant due to poor oral hygiene +C1955805|T033|ET|M27.62|ICD10CM|Iatrogenic post-osseointegration failure of dental implant|Iatrogenic post-osseointegration failure of dental implant +C1955799|T046|AB|M27.62|ICD10CM|Post-osseointegration biological failure of dental implant|Post-osseointegration biological failure of dental implant +C1955799|T046|PT|M27.62|ICD10CM|Post-osseointegration biological failure of dental implant|Post-osseointegration biological failure of dental implant +C1955806|T033|ET|M27.62|ICD10CM|Post-osseointegration failure of dental implant due to complications of systemic disease|Post-osseointegration failure of dental implant due to complications of systemic disease +C1955808|T046|ET|M27.63|ICD10CM|Failure of dental prosthesis causing loss of dental implant|Failure of dental prosthesis causing loss of dental implant +C2895163|T037|ET|M27.63|ICD10CM|Fracture of dental implant|Fracture of dental implant +C1955807|T046|AB|M27.63|ICD10CM|Post-osseointegration mechanical failure of dental implant|Post-osseointegration mechanical failure of dental implant +C1955807|T046|PT|M27.63|ICD10CM|Post-osseointegration mechanical failure of dental implant|Post-osseointegration mechanical failure of dental implant +C1955811|T046|ET|M27.69|ICD10CM|Dental implant failure NOS|Dental implant failure NOS +C1955810|T047|AB|M27.69|ICD10CM|Other endosseous dental implant failure|Other endosseous dental implant failure +C1955810|T047|PT|M27.69|ICD10CM|Other endosseous dental implant failure|Other endosseous dental implant failure +C0008029|T047|ET|M27.8|ICD10CM|Cherubism|Cherubism +C1442903|T047|ET|M27.8|ICD10CM|Exostosis|Exostosis +C0259779|T019|ET|M27.8|ICD10CM|Fibrous dysplasia|Fibrous dysplasia +C0259779|T047|ET|M27.8|ICD10CM|Fibrous dysplasia|Fibrous dysplasia +C0029772|T047|PT|M27.8|ICD10CM|Other specified diseases of jaws|Other specified diseases of jaws +C0029772|T047|AB|M27.8|ICD10CM|Other specified diseases of jaws|Other specified diseases of jaws +C0399571|T047|ET|M27.8|ICD10CM|Unilateral condylar hyperplasia|Unilateral condylar hyperplasia +C1396664|T047|ET|M27.8|ICD10CM|Unilateral condylar hypoplasia|Unilateral condylar hypoplasia +C0022362|T047|PT|M27.9|ICD10CM|Disease of jaws, unspecified|Disease of jaws, unspecified +C0022362|T047|AB|M27.9|ICD10CM|Disease of jaws, unspecified|Disease of jaws, unspecified +C0155757|T047|AB|M30|ICD10CM|Polyarteritis nodosa and related conditions|Polyarteritis nodosa and related conditions +C0155757|T047|HT|M30|ICD10CM|Polyarteritis nodosa and related conditions|Polyarteritis nodosa and related conditions +C0155757|T047|HT|M30|ICD10|Polyarteritis nodosa and related conditions|Polyarteritis nodosa and related conditions +C0004364|T047|ET|M30-M36|ICD10CM|autoimmune disease NOS|autoimmune disease NOS +C0262428|T047|ET|M30-M36|ICD10CM|collagen (vascular) disease NOS|collagen (vascular) disease NOS +C2895206|T047|ET|M30-M36|ICD10CM|systemic autoimmune disease|systemic autoimmune disease +C4290223|T047|ET|M30-M36|ICD10CM|systemic collagen (vascular) disease|systemic collagen (vascular) disease +C0477583|T047|HT|M30-M36|ICD10CM|Systemic connective tissue disorders (M30-M36)|Systemic connective tissue disorders (M30-M36) +C0477583|T047|HT|M30-M36.9|ICD10|Systemic connective tissue disorders|Systemic connective tissue disorders +C0031036|T047|PT|M30.0|ICD10|Polyarteritis nodosa|Polyarteritis nodosa +C0031036|T047|PT|M30.0|ICD10CM|Polyarteritis nodosa|Polyarteritis nodosa +C0031036|T047|AB|M30.0|ICD10CM|Polyarteritis nodosa|Polyarteritis nodosa +C0008728|T047|ET|M30.1|ICD10CM|Allergic granulomatous angiitis|Allergic granulomatous angiitis +C0008728|T047|PT|M30.1|ICD10CM|Polyarteritis with lung involvement [Churg-Strauss]|Polyarteritis with lung involvement [Churg-Strauss] +C0008728|T047|AB|M30.1|ICD10CM|Polyarteritis with lung involvement [Churg-Strauss]|Polyarteritis with lung involvement [Churg-Strauss] +C0008728|T047|PT|M30.1|ICD10|Polyarteritis with lung involvement [Churg-Strauss]|Polyarteritis with lung involvement [Churg-Strauss] +C0348857|T047|PT|M30.2|ICD10|Juvenile polyarteritis|Juvenile polyarteritis +C0348857|T047|PT|M30.2|ICD10CM|Juvenile polyarteritis|Juvenile polyarteritis +C0348857|T047|AB|M30.2|ICD10CM|Juvenile polyarteritis|Juvenile polyarteritis +C0026691|T047|PT|M30.3|ICD10CM|Mucocutaneous lymph node syndrome [Kawasaki]|Mucocutaneous lymph node syndrome [Kawasaki] +C0026691|T047|AB|M30.3|ICD10CM|Mucocutaneous lymph node syndrome [Kawasaki]|Mucocutaneous lymph node syndrome [Kawasaki] +C0026691|T047|PT|M30.3|ICD10|Mucocutaneous lymph node syndrome [Kawasaki]|Mucocutaneous lymph node syndrome [Kawasaki] +C0477584|T047|PT|M30.8|ICD10CM|Other conditions related to polyarteritis nodosa|Other conditions related to polyarteritis nodosa +C0477584|T047|AB|M30.8|ICD10CM|Other conditions related to polyarteritis nodosa|Other conditions related to polyarteritis nodosa +C0477584|T047|PT|M30.8|ICD10|Other conditions related to polyarteritis nodosa|Other conditions related to polyarteritis nodosa +C0343195|T047|ET|M30.8|ICD10CM|Polyangiitis overlap syndrome|Polyangiitis overlap syndrome +C0494942|T047|HT|M31|ICD10|Other necrotizing vasculopathies|Other necrotizing vasculopathies +C0494942|T047|AB|M31|ICD10CM|Other necrotizing vasculopathies|Other necrotizing vasculopathies +C0494942|T047|HT|M31|ICD10CM|Other necrotizing vasculopathies|Other necrotizing vasculopathies +C0403529|T047|ET|M31.0|ICD10CM|Goodpasture's syndrome|Goodpasture's syndrome +C0151436|T047|PT|M31.0|ICD10CM|Hypersensitivity angiitis|Hypersensitivity angiitis +C0151436|T047|AB|M31.0|ICD10CM|Hypersensitivity angiitis|Hypersensitivity angiitis +C0151436|T047|PT|M31.0|ICD10|Hypersensitivity angiitis|Hypersensitivity angiitis +C2717961|T047|PT|M31.1|ICD10|Thrombotic microangiopathy|Thrombotic microangiopathy +C2717961|T047|PT|M31.1|ICD10CM|Thrombotic microangiopathy|Thrombotic microangiopathy +C2717961|T047|AB|M31.1|ICD10CM|Thrombotic microangiopathy|Thrombotic microangiopathy +C0034155|T047|ET|M31.1|ICD10CM|Thrombotic thrombocytopenic purpura|Thrombotic thrombocytopenic purpura +C0018197|T191|PT|M31.2|ICD10CM|Lethal midline granuloma|Lethal midline granuloma +C0018197|T191|AB|M31.2|ICD10CM|Lethal midline granuloma|Lethal midline granuloma +C0018197|T191|PT|M31.2|ICD10|Lethal midline granuloma|Lethal midline granuloma +C3495801|T047|ET|M31.3|ICD10CM|Necrotizing respiratory granulomatosis|Necrotizing respiratory granulomatosis +C3495801|T047|HT|M31.3|ICD10CM|Wegener's granulomatosis|Wegener's granulomatosis +C3495801|T047|AB|M31.3|ICD10CM|Wegener's granulomatosis|Wegener's granulomatosis +C3495801|T047|PT|M31.3|ICD10|Wegener's granulomatosis|Wegener's granulomatosis +C3495801|T047|ET|M31.30|ICD10CM|Wegener's granulomatosis NOS|Wegener's granulomatosis NOS +C2895165|T047|PT|M31.30|ICD10CM|Wegener's granulomatosis without renal involvement|Wegener's granulomatosis without renal involvement +C2895165|T047|AB|M31.30|ICD10CM|Wegener's granulomatosis without renal involvement|Wegener's granulomatosis without renal involvement +C2895166|T047|PT|M31.31|ICD10CM|Wegener's granulomatosis with renal involvement|Wegener's granulomatosis with renal involvement +C2895166|T047|AB|M31.31|ICD10CM|Wegener's granulomatosis with renal involvement|Wegener's granulomatosis with renal involvement +C0039263|T047|PT|M31.4|ICD10CM|Aortic arch syndrome [Takayasu]|Aortic arch syndrome [Takayasu] +C0039263|T047|AB|M31.4|ICD10CM|Aortic arch syndrome [Takayasu]|Aortic arch syndrome [Takayasu] +C0039263|T047|PT|M31.4|ICD10|Aortic arch syndrome [Takayasu]|Aortic arch syndrome [Takayasu] +C0343200|T047|PT|M31.5|ICD10|Giant cell arteritis with polymyalgia rheumatica|Giant cell arteritis with polymyalgia rheumatica +C0343200|T047|PT|M31.5|ICD10CM|Giant cell arteritis with polymyalgia rheumatica|Giant cell arteritis with polymyalgia rheumatica +C0343200|T047|AB|M31.5|ICD10CM|Giant cell arteritis with polymyalgia rheumatica|Giant cell arteritis with polymyalgia rheumatica +C0477585|T047|PT|M31.6|ICD10CM|Other giant cell arteritis|Other giant cell arteritis +C0477585|T047|AB|M31.6|ICD10CM|Other giant cell arteritis|Other giant cell arteritis +C0477585|T047|PT|M31.6|ICD10|Other giant cell arteritis|Other giant cell arteritis +C2347126|T047|PT|M31.7|ICD10CM|Microscopic polyangiitis|Microscopic polyangiitis +C2347126|T047|AB|M31.7|ICD10CM|Microscopic polyangiitis|Microscopic polyangiitis +C2347126|T047|ET|M31.7|ICD10CM|Microscopic polyarteritis|Microscopic polyarteritis +C0343206|T047|ET|M31.8|ICD10CM|Hypocomplementemic vasculitis|Hypocomplementemic vasculitis +C0477586|T047|PT|M31.8|ICD10|Other specified necrotizing vasculopathies|Other specified necrotizing vasculopathies +C0477586|T047|PT|M31.8|ICD10CM|Other specified necrotizing vasculopathies|Other specified necrotizing vasculopathies +C0477586|T047|AB|M31.8|ICD10CM|Other specified necrotizing vasculopathies|Other specified necrotizing vasculopathies +C2895167|T046|ET|M31.8|ICD10CM|Septic vasculitis|Septic vasculitis +C0477597|T047|PT|M31.9|ICD10CM|Necrotizing vasculopathy, unspecified|Necrotizing vasculopathy, unspecified +C0477597|T047|AB|M31.9|ICD10CM|Necrotizing vasculopathy, unspecified|Necrotizing vasculopathy, unspecified +C0477597|T047|PT|M31.9|ICD10|Necrotizing vasculopathy, unspecified|Necrotizing vasculopathy, unspecified +C0024141|T047|HT|M32|ICD10|Systemic lupus erythematosus|Systemic lupus erythematosus +C0024141|T047|HT|M32|ICD10CM|Systemic lupus erythematosus (SLE)|Systemic lupus erythematosus (SLE) +C0024141|T047|AB|M32|ICD10CM|Systemic lupus erythematosus (SLE)|Systemic lupus erythematosus (SLE) +C0263591|T046|PT|M32.0|ICD10|Drug-induced systemic lupus erythematosus|Drug-induced systemic lupus erythematosus +C0263591|T046|PT|M32.0|ICD10CM|Drug-induced systemic lupus erythematosus|Drug-induced systemic lupus erythematosus +C0263591|T046|AB|M32.0|ICD10CM|Drug-induced systemic lupus erythematosus|Drug-induced systemic lupus erythematosus +C0409976|T047|AB|M32.1|ICD10CM|Systemic lupus erythematosus w organ or system involvement|Systemic lupus erythematosus w organ or system involvement +C0409976|T047|HT|M32.1|ICD10CM|Systemic lupus erythematosus with organ or system involvement|Systemic lupus erythematosus with organ or system involvement +C0409976|T047|PT|M32.1|ICD10|Systemic lupus erythematosus with organ or system involvement|Systemic lupus erythematosus with organ or system involvement +C2895168|T047|AB|M32.10|ICD10CM|Systemic lupus erythematosus, organ or system involv unsp|Systemic lupus erythematosus, organ or system involv unsp +C2895168|T047|PT|M32.10|ICD10CM|Systemic lupus erythematosus, organ or system involvement unspecified|Systemic lupus erythematosus, organ or system involvement unspecified +C2895169|T047|AB|M32.11|ICD10CM|Endocarditis in systemic lupus erythematosus|Endocarditis in systemic lupus erythematosus +C2895169|T047|PT|M32.11|ICD10CM|Endocarditis in systemic lupus erythematosus|Endocarditis in systemic lupus erythematosus +C0242380|T047|ET|M32.11|ICD10CM|Libman-Sacks disease|Libman-Sacks disease +C1141942|T047|ET|M32.12|ICD10CM|Lupus pericarditis|Lupus pericarditis +C0587239|T047|AB|M32.12|ICD10CM|Pericarditis in systemic lupus erythematosus|Pericarditis in systemic lupus erythematosus +C0587239|T047|PT|M32.12|ICD10CM|Pericarditis in systemic lupus erythematosus|Pericarditis in systemic lupus erythematosus +C2895171|T047|AB|M32.13|ICD10CM|Lung involvement in systemic lupus erythematosus|Lung involvement in systemic lupus erythematosus +C2895171|T047|PT|M32.13|ICD10CM|Lung involvement in systemic lupus erythematosus|Lung involvement in systemic lupus erythematosus +C2895170|T046|ET|M32.13|ICD10CM|Pleural effusion due to systemic lupus erythematosus|Pleural effusion due to systemic lupus erythematosus +C2895173|T047|AB|M32.14|ICD10CM|Glomerular disease in systemic lupus erythematosus|Glomerular disease in systemic lupus erythematosus +C2895173|T047|PT|M32.14|ICD10CM|Glomerular disease in systemic lupus erythematosus|Glomerular disease in systemic lupus erythematosus +C2895172|T047|ET|M32.14|ICD10CM|Lupus renal disease NOS|Lupus renal disease NOS +C2895174|T047|PT|M32.15|ICD10CM|Tubulo-interstitial nephropathy in systemic lupus erythematosus|Tubulo-interstitial nephropathy in systemic lupus erythematosus +C2895174|T047|AB|M32.15|ICD10CM|Tubulo-interstitial neuropath in sys lupus erythematosus|Tubulo-interstitial neuropath in sys lupus erythematosus +C2895175|T047|AB|M32.19|ICD10CM|Oth organ or system involv in systemic lupus erythematosus|Oth organ or system involv in systemic lupus erythematosus +C2895175|T047|PT|M32.19|ICD10CM|Other organ or system involvement in systemic lupus erythematosus|Other organ or system involvement in systemic lupus erythematosus +C0477587|T047|PT|M32.8|ICD10|Other forms of systemic lupus erythematosus|Other forms of systemic lupus erythematosus +C0477587|T047|PT|M32.8|ICD10CM|Other forms of systemic lupus erythematosus|Other forms of systemic lupus erythematosus +C0477587|T047|AB|M32.8|ICD10CM|Other forms of systemic lupus erythematosus|Other forms of systemic lupus erythematosus +C0024141|T047|ET|M32.9|ICD10CM|SLE NOS|SLE NOS +C0024141|T047|ET|M32.9|ICD10CM|Systemic lupus erythematosus NOS|Systemic lupus erythematosus NOS +C2895176|T047|ET|M32.9|ICD10CM|Systemic lupus erythematosus without organ involvement|Systemic lupus erythematosus without organ involvement +C0024141|T047|PT|M32.9|ICD10CM|Systemic lupus erythematosus, unspecified|Systemic lupus erythematosus, unspecified +C0024141|T047|AB|M32.9|ICD10CM|Systemic lupus erythematosus, unspecified|Systemic lupus erythematosus, unspecified +C0024141|T047|PT|M32.9|ICD10|Systemic lupus erythematosus, unspecified|Systemic lupus erythematosus, unspecified +C0011633|T047|HT|M33|ICD10|Dermatopolymyositis|Dermatopolymyositis +C0011633|T047|HT|M33|ICD10CM|Dermatopolymyositis|Dermatopolymyositis +C0011633|T047|AB|M33|ICD10CM|Dermatopolymyositis|Dermatopolymyositis +C0263666|T047|PT|M33.0|ICD10|Juvenile dermatomyositis|Juvenile dermatomyositis +C0263666|T047|HT|M33.0|ICD10CM|Juvenile dermatomyositis|Juvenile dermatomyositis +C0263666|T047|AB|M33.0|ICD10CM|Juvenile dermatomyositis|Juvenile dermatomyositis +C4509347|T047|AB|M33.00|ICD10CM|Juvenile dermatomyositis, organ involvement unspecified|Juvenile dermatomyositis, organ involvement unspecified +C4509347|T047|PT|M33.00|ICD10CM|Juvenile dermatomyositis, organ involvement unspecified|Juvenile dermatomyositis, organ involvement unspecified +C4509348|T047|AB|M33.01|ICD10CM|Juvenile dermatomyositis with respiratory involvement|Juvenile dermatomyositis with respiratory involvement +C4509348|T047|PT|M33.01|ICD10CM|Juvenile dermatomyositis with respiratory involvement|Juvenile dermatomyositis with respiratory involvement +C4509349|T047|AB|M33.02|ICD10CM|Juvenile dermatomyositis with myopathy|Juvenile dermatomyositis with myopathy +C4509349|T047|PT|M33.02|ICD10CM|Juvenile dermatomyositis with myopathy|Juvenile dermatomyositis with myopathy +C4509350|T047|AB|M33.03|ICD10CM|Juvenile dermatomyositis without myopathy|Juvenile dermatomyositis without myopathy +C4509350|T047|PT|M33.03|ICD10CM|Juvenile dermatomyositis without myopathy|Juvenile dermatomyositis without myopathy +C4509587|T047|AB|M33.09|ICD10CM|Juvenile dermatomyositis with other organ involvement|Juvenile dermatomyositis with other organ involvement +C4509587|T047|PT|M33.09|ICD10CM|Juvenile dermatomyositis with other organ involvement|Juvenile dermatomyositis with other organ involvement +C0221056|T047|ET|M33.1|ICD10CM|Adult dermatomyositis|Adult dermatomyositis +C0477588|T047|HT|M33.1|ICD10CM|Other dermatomyositis|Other dermatomyositis +C0477588|T047|AB|M33.1|ICD10CM|Other dermatomyositis|Other dermatomyositis +C0477588|T047|PT|M33.1|ICD10|Other dermatomyositis|Other dermatomyositis +C4509351|T047|AB|M33.10|ICD10CM|Other dermatomyositis, organ involvement unspecified|Other dermatomyositis, organ involvement unspecified +C4509351|T047|PT|M33.10|ICD10CM|Other dermatomyositis, organ involvement unspecified|Other dermatomyositis, organ involvement unspecified +C2895184|T047|AB|M33.11|ICD10CM|Other dermatomyositis with respiratory involvement|Other dermatomyositis with respiratory involvement +C2895184|T047|PT|M33.11|ICD10CM|Other dermatomyositis with respiratory involvement|Other dermatomyositis with respiratory involvement +C2895185|T047|AB|M33.12|ICD10CM|Other dermatomyositis with myopathy|Other dermatomyositis with myopathy +C2895185|T047|PT|M33.12|ICD10CM|Other dermatomyositis with myopathy|Other dermatomyositis with myopathy +C0221056|T047|ET|M33.13|ICD10CM|Dermatomyositis NOS|Dermatomyositis NOS +C4509352|T047|AB|M33.13|ICD10CM|Other dermatomyositis without myopathy|Other dermatomyositis without myopathy +C4509352|T047|PT|M33.13|ICD10CM|Other dermatomyositis without myopathy|Other dermatomyositis without myopathy +C4509353|T047|AB|M33.19|ICD10CM|Other dermatomyositis with other organ involvement|Other dermatomyositis with other organ involvement +C4509353|T047|PT|M33.19|ICD10CM|Other dermatomyositis with other organ involvement|Other dermatomyositis with other organ involvement +C0085655|T047|PT|M33.2|ICD10|Polymyositis|Polymyositis +C0085655|T047|HT|M33.2|ICD10CM|Polymyositis|Polymyositis +C0085655|T047|AB|M33.2|ICD10CM|Polymyositis|Polymyositis +C2895187|T047|AB|M33.20|ICD10CM|Polymyositis, organ involvement unspecified|Polymyositis, organ involvement unspecified +C2895187|T047|PT|M33.20|ICD10CM|Polymyositis, organ involvement unspecified|Polymyositis, organ involvement unspecified +C3509000|T047|AB|M33.21|ICD10CM|Polymyositis with respiratory involvement|Polymyositis with respiratory involvement +C3509000|T047|PT|M33.21|ICD10CM|Polymyositis with respiratory involvement|Polymyositis with respiratory involvement +C2895189|T047|PT|M33.22|ICD10CM|Polymyositis with myopathy|Polymyositis with myopathy +C2895189|T047|AB|M33.22|ICD10CM|Polymyositis with myopathy|Polymyositis with myopathy +C2895190|T047|AB|M33.29|ICD10CM|Polymyositis with other organ involvement|Polymyositis with other organ involvement +C2895190|T047|PT|M33.29|ICD10CM|Polymyositis with other organ involvement|Polymyositis with other organ involvement +C0011633|T047|HT|M33.9|ICD10CM|Dermatopolymyositis, unspecified|Dermatopolymyositis, unspecified +C0011633|T047|AB|M33.9|ICD10CM|Dermatopolymyositis, unspecified|Dermatopolymyositis, unspecified +C0011633|T047|PT|M33.9|ICD10|Dermatopolymyositis, unspecified|Dermatopolymyositis, unspecified +C0011633|T047|AB|M33.90|ICD10CM|Dermatopolymyositis, unsp, organ involvement unspecified|Dermatopolymyositis, unsp, organ involvement unspecified +C0011633|T047|PT|M33.90|ICD10CM|Dermatopolymyositis, unspecified, organ involvement unspecified|Dermatopolymyositis, unspecified, organ involvement unspecified +C2895192|T047|AB|M33.91|ICD10CM|Dermatopolymyositis, unsp with respiratory involvement|Dermatopolymyositis, unsp with respiratory involvement +C2895192|T047|PT|M33.91|ICD10CM|Dermatopolymyositis, unspecified with respiratory involvement|Dermatopolymyositis, unspecified with respiratory involvement +C2895193|T047|AB|M33.92|ICD10CM|Dermatopolymyositis, unspecified with myopathy|Dermatopolymyositis, unspecified with myopathy +C2895193|T047|PT|M33.92|ICD10CM|Dermatopolymyositis, unspecified with myopathy|Dermatopolymyositis, unspecified with myopathy +C4509354|T047|AB|M33.93|ICD10CM|Dermatopolymyositis, unspecified without myopathy|Dermatopolymyositis, unspecified without myopathy +C4509354|T047|PT|M33.93|ICD10CM|Dermatopolymyositis, unspecified without myopathy|Dermatopolymyositis, unspecified without myopathy +C2895194|T047|AB|M33.99|ICD10CM|Dermatopolymyositis, unsp with other organ involvement|Dermatopolymyositis, unsp with other organ involvement +C2895194|T047|PT|M33.99|ICD10CM|Dermatopolymyositis, unspecified with other organ involvement|Dermatopolymyositis, unspecified with other organ involvement +C0036421|T047|HT|M34|ICD10|Systemic sclerosis|Systemic sclerosis +C2364016|T047|AB|M34|ICD10CM|Systemic sclerosis [scleroderma]|Systemic sclerosis [scleroderma] +C2364016|T047|HT|M34|ICD10CM|Systemic sclerosis [scleroderma]|Systemic sclerosis [scleroderma] +C0036421|T047|PT|M34.0|ICD10|Progressive systemic sclerosis|Progressive systemic sclerosis +C0036421|T047|PT|M34.0|ICD10CM|Progressive systemic sclerosis|Progressive systemic sclerosis +C0036421|T047|AB|M34.0|ICD10CM|Progressive systemic sclerosis|Progressive systemic sclerosis +C0206138|T047|PT|M34.1|ICD10|CR(E)ST syndrome|CR(E)ST syndrome +C0206138|T047|PT|M34.1|ICD10CM|CR(E)ST syndrome|CR(E)ST syndrome +C0206138|T047|AB|M34.1|ICD10CM|CR(E)ST syndrome|CR(E)ST syndrome +C0451842|T037|AB|M34.2|ICD10CM|Systemic sclerosis induced by drug and chemical|Systemic sclerosis induced by drug and chemical +C0451842|T037|PT|M34.2|ICD10CM|Systemic sclerosis induced by drug and chemical|Systemic sclerosis induced by drug and chemical +C0451842|T037|PT|M34.2|ICD10|Systemic sclerosis induced by drugs and chemicals|Systemic sclerosis induced by drugs and chemicals +C0477589|T047|PT|M34.8|ICD10|Other forms of systemic sclerosis|Other forms of systemic sclerosis +C0477589|T047|HT|M34.8|ICD10CM|Other forms of systemic sclerosis|Other forms of systemic sclerosis +C0477589|T047|AB|M34.8|ICD10CM|Other forms of systemic sclerosis|Other forms of systemic sclerosis +C0339904|T047|AB|M34.81|ICD10CM|Systemic sclerosis with lung involvement|Systemic sclerosis with lung involvement +C0339904|T047|PT|M34.81|ICD10CM|Systemic sclerosis with lung involvement|Systemic sclerosis with lung involvement +C2895196|T047|AB|M34.82|ICD10CM|Systemic sclerosis with myopathy|Systemic sclerosis with myopathy +C2895196|T047|PT|M34.82|ICD10CM|Systemic sclerosis with myopathy|Systemic sclerosis with myopathy +C2895197|T047|AB|M34.83|ICD10CM|Systemic sclerosis with polyneuropathy|Systemic sclerosis with polyneuropathy +C2895197|T047|PT|M34.83|ICD10CM|Systemic sclerosis with polyneuropathy|Systemic sclerosis with polyneuropathy +C2895198|T047|AB|M34.89|ICD10CM|Other systemic sclerosis|Other systemic sclerosis +C2895198|T047|PT|M34.89|ICD10CM|Other systemic sclerosis|Other systemic sclerosis +C0036421|T047|PT|M34.9|ICD10|Systemic sclerosis, unspecified|Systemic sclerosis, unspecified +C0036421|T047|PT|M34.9|ICD10CM|Systemic sclerosis, unspecified|Systemic sclerosis, unspecified +C0036421|T047|AB|M34.9|ICD10CM|Systemic sclerosis, unspecified|Systemic sclerosis, unspecified +C0494946|T047|HT|M35|ICD10|Other systemic involvement of connective tissue|Other systemic involvement of connective tissue +C0494946|T047|AB|M35|ICD10CM|Other systemic involvement of connective tissue|Other systemic involvement of connective tissue +C0494946|T047|HT|M35|ICD10CM|Other systemic involvement of connective tissue|Other systemic involvement of connective tissue +C1527336|T047|PT|M35.0|ICD10|Sicca syndrome [Sjogren]|Sicca syndrome [Sjogren] +C1527336|T047|AB|M35.0|ICD10CM|Sicca syndrome [Sjogren]|Sicca syndrome [Sjogren] +C1527336|T047|HT|M35.0|ICD10CM|Sicca syndrome [Sjögren]|Sicca syndrome [Sjögren] +C0086981|T047|AB|M35.00|ICD10CM|Sicca syndrome, unspecified|Sicca syndrome, unspecified +C0086981|T047|PT|M35.00|ICD10CM|Sicca syndrome, unspecified|Sicca syndrome, unspecified +C2895200|T047|PT|M35.01|ICD10CM|Sicca syndrome with keratoconjunctivitis|Sicca syndrome with keratoconjunctivitis +C2895200|T047|AB|M35.01|ICD10CM|Sicca syndrome with keratoconjunctivitis|Sicca syndrome with keratoconjunctivitis +C2895201|T047|PT|M35.02|ICD10CM|Sicca syndrome with lung involvement|Sicca syndrome with lung involvement +C2895201|T047|AB|M35.02|ICD10CM|Sicca syndrome with lung involvement|Sicca syndrome with lung involvement +C2895202|T047|PT|M35.03|ICD10CM|Sicca syndrome with myopathy|Sicca syndrome with myopathy +C2895202|T047|AB|M35.03|ICD10CM|Sicca syndrome with myopathy|Sicca syndrome with myopathy +C2895203|T047|ET|M35.04|ICD10CM|Renal tubular acidosis in sicca syndrome|Renal tubular acidosis in sicca syndrome +C2895204|T047|PT|M35.04|ICD10CM|Sicca syndrome with tubulo-interstitial nephropathy|Sicca syndrome with tubulo-interstitial nephropathy +C2895204|T047|AB|M35.04|ICD10CM|Sicca syndrome with tubulo-interstitial nephropathy|Sicca syndrome with tubulo-interstitial nephropathy +C2895205|T047|AB|M35.09|ICD10CM|Sicca syndrome with other organ involvement|Sicca syndrome with other organ involvement +C2895205|T047|PT|M35.09|ICD10CM|Sicca syndrome with other organ involvement|Sicca syndrome with other organ involvement +C0026272|T047|ET|M35.1|ICD10CM|Mixed connective tissue disease|Mixed connective tissue disease +C0477590|T047|PT|M35.1|ICD10|Other overlap syndromes|Other overlap syndromes +C0477590|T047|PT|M35.1|ICD10CM|Other overlap syndromes|Other overlap syndromes +C0477590|T047|AB|M35.1|ICD10CM|Other overlap syndromes|Other overlap syndromes +C0004943|T047|PT|M35.2|ICD10|Behcet's disease|Behcet's disease +C0004943|T047|AB|M35.2|ICD10CM|Behcet's disease|Behcet's disease +C0004943|T047|PT|M35.2|ICD10CM|Behçet's disease|Behçet's disease +C0032533|T047|PT|M35.3|ICD10CM|Polymyalgia rheumatica|Polymyalgia rheumatica +C0032533|T047|AB|M35.3|ICD10CM|Polymyalgia rheumatica|Polymyalgia rheumatica +C0032533|T047|PT|M35.3|ICD10|Polymyalgia rheumatica|Polymyalgia rheumatica +C4721443|T047|PT|M35.4|ICD10|Diffuse (eosinophilic) fasciitis|Diffuse (eosinophilic) fasciitis +C4721443|T047|PT|M35.4|ICD10CM|Diffuse (eosinophilic) fasciitis|Diffuse (eosinophilic) fasciitis +C4721443|T047|AB|M35.4|ICD10CM|Diffuse (eosinophilic) fasciitis|Diffuse (eosinophilic) fasciitis +C0494949|T047|PT|M35.5|ICD10CM|Multifocal fibrosclerosis|Multifocal fibrosclerosis +C0494949|T047|AB|M35.5|ICD10CM|Multifocal fibrosclerosis|Multifocal fibrosclerosis +C0494949|T047|PT|M35.5|ICD10|Multifocal fibrosclerosis|Multifocal fibrosclerosis +C0030328|T047|PT|M35.6|ICD10|Relapsing panniculitis [Weber-Christian]|Relapsing panniculitis [Weber-Christian] +C0030328|T047|PT|M35.6|ICD10CM|Relapsing panniculitis [Weber-Christian]|Relapsing panniculitis [Weber-Christian] +C0030328|T047|AB|M35.6|ICD10CM|Relapsing panniculitis [Weber-Christian]|Relapsing panniculitis [Weber-Christian] +C0152093|T047|ET|M35.7|ICD10CM|Familial ligamentous laxity|Familial ligamentous laxity +C0152093|T047|PT|M35.7|ICD10CM|Hypermobility syndrome|Hypermobility syndrome +C0152093|T047|AB|M35.7|ICD10CM|Hypermobility syndrome|Hypermobility syndrome +C0152093|T047|PT|M35.7|ICD10|Hypermobility syndrome|Hypermobility syndrome +C0494951|T047|PT|M35.8|ICD10|Other specified systemic involvement of connective tissue|Other specified systemic involvement of connective tissue +C0494951|T047|PT|M35.8|ICD10CM|Other specified systemic involvement of connective tissue|Other specified systemic involvement of connective tissue +C0494951|T047|AB|M35.8|ICD10CM|Other specified systemic involvement of connective tissue|Other specified systemic involvement of connective tissue +C2895206|T047|ET|M35.9|ICD10CM|Autoimmune disease (systemic) NOS|Autoimmune disease (systemic) NOS +C0262428|T047|ET|M35.9|ICD10CM|Collagen (vascular) disease NOS|Collagen (vascular) disease NOS +C0477583|T047|PT|M35.9|ICD10CM|Systemic involvement of connective tissue, unspecified|Systemic involvement of connective tissue, unspecified +C0477583|T047|AB|M35.9|ICD10CM|Systemic involvement of connective tissue, unspecified|Systemic involvement of connective tissue, unspecified +C0477583|T047|PT|M35.9|ICD10|Systemic involvement of connective tissue, unspecified|Systemic involvement of connective tissue, unspecified +C3646018|T047|AB|M36|ICD10CM|Systemic disorders of conn tiss in diseases classd elswhr|Systemic disorders of conn tiss in diseases classd elswhr +C3646018|T047|HT|M36|ICD10CM|Systemic disorders of connective tissue in diseases classified elsewhere|Systemic disorders of connective tissue in diseases classified elsewhere +C3646018|T047|HT|M36|ICD10|Systemic disorders of connective tissue in diseases classified elsewhere|Systemic disorders of connective tissue in diseases classified elsewhere +C0409990|T047|PT|M36.0|ICD10|Dermato(poly)myositis in neoplastic disease|Dermato(poly)myositis in neoplastic disease +C0409990|T047|PT|M36.0|ICD10CM|Dermato(poly)myositis in neoplastic disease|Dermato(poly)myositis in neoplastic disease +C0409990|T047|AB|M36.0|ICD10CM|Dermato(poly)myositis in neoplastic disease|Dermato(poly)myositis in neoplastic disease +C0559237|T047|PT|M36.1|ICD10CM|Arthropathy in neoplastic disease|Arthropathy in neoplastic disease +C0559237|T047|AB|M36.1|ICD10CM|Arthropathy in neoplastic disease|Arthropathy in neoplastic disease +C0559237|T047|PT|M36.1|ICD10|Arthropathy in neoplastic disease|Arthropathy in neoplastic disease +C0263725|T047|PT|M36.2|ICD10|Haemophilic arthropathy|Haemophilic arthropathy +C2895207|T047|ET|M36.2|ICD10CM|Hemarthrosis in hemophilic arthropathy|Hemarthrosis in hemophilic arthropathy +C0263725|T047|PT|M36.2|ICD10AE|Hemophilic arthropathy|Hemophilic arthropathy +C0263725|T047|PT|M36.2|ICD10CM|Hemophilic arthropathy|Hemophilic arthropathy +C0263725|T047|AB|M36.2|ICD10CM|Hemophilic arthropathy|Hemophilic arthropathy +C0494954|T047|PT|M36.3|ICD10CM|Arthropathy in other blood disorders|Arthropathy in other blood disorders +C0494954|T047|AB|M36.3|ICD10CM|Arthropathy in other blood disorders|Arthropathy in other blood disorders +C0494954|T047|PT|M36.3|ICD10|Arthropathy in other blood disorders|Arthropathy in other blood disorders +C0477595|T047|AB|M36.4|ICD10CM|Arthropathy in hypersensitivity reactions classd elswhr|Arthropathy in hypersensitivity reactions classd elswhr +C0477595|T047|PT|M36.4|ICD10CM|Arthropathy in hypersensitivity reactions classified elsewhere|Arthropathy in hypersensitivity reactions classified elsewhere +C0477595|T047|PT|M36.4|ICD10|Arthropathy in hypersensitivity reactions classified elsewhere|Arthropathy in hypersensitivity reactions classified elsewhere +C0477596|T047|AB|M36.8|ICD10CM|Systemic disord of conn tiss in oth diseases classd elswhr|Systemic disord of conn tiss in oth diseases classd elswhr +C0477596|T047|PT|M36.8|ICD10CM|Systemic disorders of connective tissue in other diseases classified elsewhere|Systemic disorders of connective tissue in other diseases classified elsewhere +C0477596|T047|PT|M36.8|ICD10|Systemic disorders of connective tissue in other diseases classified elsewhere|Systemic disorders of connective tissue in other diseases classified elsewhere +C0494955|T047|HT|M40|ICD10|Kyphosis and lordosis|Kyphosis and lordosis +C0494955|T047|AB|M40|ICD10CM|Kyphosis and lordosis|Kyphosis and lordosis +C0494955|T047|HT|M40|ICD10CM|Kyphosis and lordosis|Kyphosis and lordosis +C0477599|T047|HT|M40-M43|ICD10CM|Deforming dorsopathies (M40-M43)|Deforming dorsopathies (M40-M43) +C0477599|T047|HT|M40-M43.9|ICD10|Deforming dorsopathies|Deforming dorsopathies +C4268715|T047|HT|M40-M54|ICD10CM|Dorsopathies (M40-M54)|Dorsopathies (M40-M54) +C3241938|T047|HT|M40-M54.9|ICD10|Dorsopathies|Dorsopathies +C0392048|T047|PT|M40.0|ICD10|Postural kyphosis|Postural kyphosis +C0392048|T047|HT|M40.0|ICD10CM|Postural kyphosis|Postural kyphosis +C0392048|T047|AB|M40.0|ICD10CM|Postural kyphosis|Postural kyphosis +C0392048|T047|PT|M40.00|ICD10CM|Postural kyphosis, site unspecified|Postural kyphosis, site unspecified +C0392048|T047|AB|M40.00|ICD10CM|Postural kyphosis, site unspecified|Postural kyphosis, site unspecified +C0838255|T047|PT|M40.03|ICD10CM|Postural kyphosis, cervicothoracic region|Postural kyphosis, cervicothoracic region +C0838255|T047|AB|M40.03|ICD10CM|Postural kyphosis, cervicothoracic region|Postural kyphosis, cervicothoracic region +C0838256|T047|PT|M40.04|ICD10CM|Postural kyphosis, thoracic region|Postural kyphosis, thoracic region +C0838256|T047|AB|M40.04|ICD10CM|Postural kyphosis, thoracic region|Postural kyphosis, thoracic region +C0838257|T047|PT|M40.05|ICD10CM|Postural kyphosis, thoracolumbar region|Postural kyphosis, thoracolumbar region +C0838257|T047|AB|M40.05|ICD10CM|Postural kyphosis, thoracolumbar region|Postural kyphosis, thoracolumbar region +C0477600|T190|HT|M40.1|ICD10CM|Other secondary kyphosis|Other secondary kyphosis +C0477600|T190|AB|M40.1|ICD10CM|Other secondary kyphosis|Other secondary kyphosis +C0477600|T190|PT|M40.1|ICD10|Other secondary kyphosis|Other secondary kyphosis +C0838271|T047|PT|M40.10|ICD10CM|Other secondary kyphosis, site unspecified|Other secondary kyphosis, site unspecified +C0838271|T047|AB|M40.10|ICD10CM|Other secondary kyphosis, site unspecified|Other secondary kyphosis, site unspecified +C0838264|T047|PT|M40.12|ICD10CM|Other secondary kyphosis, cervical region|Other secondary kyphosis, cervical region +C0838264|T047|AB|M40.12|ICD10CM|Other secondary kyphosis, cervical region|Other secondary kyphosis, cervical region +C0838265|T047|PT|M40.13|ICD10CM|Other secondary kyphosis, cervicothoracic region|Other secondary kyphosis, cervicothoracic region +C0838265|T047|AB|M40.13|ICD10CM|Other secondary kyphosis, cervicothoracic region|Other secondary kyphosis, cervicothoracic region +C0838266|T047|PT|M40.14|ICD10CM|Other secondary kyphosis, thoracic region|Other secondary kyphosis, thoracic region +C0838266|T047|AB|M40.14|ICD10CM|Other secondary kyphosis, thoracic region|Other secondary kyphosis, thoracic region +C0838267|T047|PT|M40.15|ICD10CM|Other secondary kyphosis, thoracolumbar region|Other secondary kyphosis, thoracolumbar region +C0838267|T047|AB|M40.15|ICD10CM|Other secondary kyphosis, thoracolumbar region|Other secondary kyphosis, thoracolumbar region +C0477601|T047|PT|M40.2|ICD10|Other and unspecified kyphosis|Other and unspecified kyphosis +C0477601|T047|HT|M40.2|ICD10CM|Other and unspecified kyphosis|Other and unspecified kyphosis +C0477601|T047|AB|M40.2|ICD10CM|Other and unspecified kyphosis|Other and unspecified kyphosis +C0022821|T190|AB|M40.20|ICD10CM|Unspecified kyphosis|Unspecified kyphosis +C0022821|T190|HT|M40.20|ICD10CM|Unspecified kyphosis|Unspecified kyphosis +C2895208|T047|AB|M40.202|ICD10CM|Unspecified kyphosis, cervical region|Unspecified kyphosis, cervical region +C2895208|T047|PT|M40.202|ICD10CM|Unspecified kyphosis, cervical region|Unspecified kyphosis, cervical region +C2895209|T047|AB|M40.203|ICD10CM|Unspecified kyphosis, cervicothoracic region|Unspecified kyphosis, cervicothoracic region +C2895209|T047|PT|M40.203|ICD10CM|Unspecified kyphosis, cervicothoracic region|Unspecified kyphosis, cervicothoracic region +C2895210|T047|AB|M40.204|ICD10CM|Unspecified kyphosis, thoracic region|Unspecified kyphosis, thoracic region +C2895210|T047|PT|M40.204|ICD10CM|Unspecified kyphosis, thoracic region|Unspecified kyphosis, thoracic region +C2895211|T047|AB|M40.205|ICD10CM|Unspecified kyphosis, thoracolumbar region|Unspecified kyphosis, thoracolumbar region +C2895211|T047|PT|M40.205|ICD10CM|Unspecified kyphosis, thoracolumbar region|Unspecified kyphosis, thoracolumbar region +C2895212|T047|AB|M40.209|ICD10CM|Unspecified kyphosis, site unspecified|Unspecified kyphosis, site unspecified +C2895212|T047|PT|M40.209|ICD10CM|Unspecified kyphosis, site unspecified|Unspecified kyphosis, site unspecified +C2895213|T047|AB|M40.29|ICD10CM|Other kyphosis|Other kyphosis +C2895213|T047|HT|M40.29|ICD10CM|Other kyphosis|Other kyphosis +C2895214|T047|AB|M40.292|ICD10CM|Other kyphosis, cervical region|Other kyphosis, cervical region +C2895214|T047|PT|M40.292|ICD10CM|Other kyphosis, cervical region|Other kyphosis, cervical region +C2895215|T047|AB|M40.293|ICD10CM|Other kyphosis, cervicothoracic region|Other kyphosis, cervicothoracic region +C2895215|T047|PT|M40.293|ICD10CM|Other kyphosis, cervicothoracic region|Other kyphosis, cervicothoracic region +C2895216|T047|AB|M40.294|ICD10CM|Other kyphosis, thoracic region|Other kyphosis, thoracic region +C2895216|T047|PT|M40.294|ICD10CM|Other kyphosis, thoracic region|Other kyphosis, thoracic region +C2895217|T047|AB|M40.295|ICD10CM|Other kyphosis, thoracolumbar region|Other kyphosis, thoracolumbar region +C2895217|T047|PT|M40.295|ICD10CM|Other kyphosis, thoracolumbar region|Other kyphosis, thoracolumbar region +C2895218|T047|AB|M40.299|ICD10CM|Other kyphosis, site unspecified|Other kyphosis, site unspecified +C2895218|T047|PT|M40.299|ICD10CM|Other kyphosis, site unspecified|Other kyphosis, site unspecified +C0452222|T047|HT|M40.3|ICD10CM|Flatback syndrome|Flatback syndrome +C0452222|T047|AB|M40.3|ICD10CM|Flatback syndrome|Flatback syndrome +C0452222|T047|PT|M40.3|ICD10|Flatback syndrome|Flatback syndrome +C0452222|T047|PT|M40.30|ICD10CM|Flatback syndrome, site unspecified|Flatback syndrome, site unspecified +C0452222|T047|AB|M40.30|ICD10CM|Flatback syndrome, site unspecified|Flatback syndrome, site unspecified +C0838287|T047|PT|M40.35|ICD10CM|Flatback syndrome, thoracolumbar region|Flatback syndrome, thoracolumbar region +C0838287|T047|AB|M40.35|ICD10CM|Flatback syndrome, thoracolumbar region|Flatback syndrome, thoracolumbar region +C0838288|T047|PT|M40.36|ICD10CM|Flatback syndrome, lumbar region|Flatback syndrome, lumbar region +C0838288|T047|AB|M40.36|ICD10CM|Flatback syndrome, lumbar region|Flatback syndrome, lumbar region +C0838289|T047|PT|M40.37|ICD10CM|Flatback syndrome, lumbosacral region|Flatback syndrome, lumbosacral region +C0838289|T047|AB|M40.37|ICD10CM|Flatback syndrome, lumbosacral region|Flatback syndrome, lumbosacral region +C0024004|T020|ET|M40.4|ICD10CM|Acquired lordosis|Acquired lordosis +C0477602|T047|PT|M40.4|ICD10|Other lordosis|Other lordosis +C0024005|T020|AB|M40.4|ICD10CM|Postural lordosis|Postural lordosis +C0024005|T020|HT|M40.4|ICD10CM|Postural lordosis|Postural lordosis +C2895219|T020|AB|M40.40|ICD10CM|Postural lordosis, site unspecified|Postural lordosis, site unspecified +C2895219|T020|PT|M40.40|ICD10CM|Postural lordosis, site unspecified|Postural lordosis, site unspecified +C2895220|T020|AB|M40.45|ICD10CM|Postural lordosis, thoracolumbar region|Postural lordosis, thoracolumbar region +C2895220|T020|PT|M40.45|ICD10CM|Postural lordosis, thoracolumbar region|Postural lordosis, thoracolumbar region +C2895221|T020|AB|M40.46|ICD10CM|Postural lordosis, lumbar region|Postural lordosis, lumbar region +C2895221|T020|PT|M40.46|ICD10CM|Postural lordosis, lumbar region|Postural lordosis, lumbar region +C2895222|T020|AB|M40.47|ICD10CM|Postural lordosis, lumbosacral region|Postural lordosis, lumbosacral region +C2895222|T020|PT|M40.47|ICD10CM|Postural lordosis, lumbosacral region|Postural lordosis, lumbosacral region +C0024003|T047|HT|M40.5|ICD10CM|Lordosis, unspecified|Lordosis, unspecified +C0024003|T047|AB|M40.5|ICD10CM|Lordosis, unspecified|Lordosis, unspecified +C0024003|T047|PT|M40.5|ICD10|Lordosis, unspecified|Lordosis, unspecified +C0838311|T190|AB|M40.50|ICD10CM|Lordosis, unspecified, site unspecified|Lordosis, unspecified, site unspecified +C0838311|T190|PT|M40.50|ICD10CM|Lordosis, unspecified, site unspecified|Lordosis, unspecified, site unspecified +C0838307|T190|AB|M40.55|ICD10CM|Lordosis, unspecified, thoracolumbar region|Lordosis, unspecified, thoracolumbar region +C0838307|T190|PT|M40.55|ICD10CM|Lordosis, unspecified, thoracolumbar region|Lordosis, unspecified, thoracolumbar region +C0838308|T190|AB|M40.56|ICD10CM|Lordosis, unspecified, lumbar region|Lordosis, unspecified, lumbar region +C0838308|T190|PT|M40.56|ICD10CM|Lordosis, unspecified, lumbar region|Lordosis, unspecified, lumbar region +C0838309|T190|AB|M40.57|ICD10CM|Lordosis, unspecified, lumbosacral region|Lordosis, unspecified, lumbosacral region +C0838309|T190|PT|M40.57|ICD10CM|Lordosis, unspecified, lumbosacral region|Lordosis, unspecified, lumbosacral region +C0575158|T190|ET|M41|ICD10CM|kyphoscoliosis|kyphoscoliosis +C0036439|T047|HT|M41|ICD10|Scoliosis|Scoliosis +C0036439|T047|HT|M41|ICD10CM|Scoliosis|Scoliosis +C0036439|T047|AB|M41|ICD10CM|Scoliosis|Scoliosis +C0494956|T047|HT|M41.0|ICD10CM|Infantile idiopathic scoliosis|Infantile idiopathic scoliosis +C0494956|T047|AB|M41.0|ICD10CM|Infantile idiopathic scoliosis|Infantile idiopathic scoliosis +C0494956|T047|PT|M41.0|ICD10|Infantile idiopathic scoliosis|Infantile idiopathic scoliosis +C0494956|T047|PT|M41.00|ICD10CM|Infantile idiopathic scoliosis, site unspecified|Infantile idiopathic scoliosis, site unspecified +C0494956|T047|AB|M41.00|ICD10CM|Infantile idiopathic scoliosis, site unspecified|Infantile idiopathic scoliosis, site unspecified +C0838314|T047|PT|M41.02|ICD10CM|Infantile idiopathic scoliosis, cervical region|Infantile idiopathic scoliosis, cervical region +C0838314|T047|AB|M41.02|ICD10CM|Infantile idiopathic scoliosis, cervical region|Infantile idiopathic scoliosis, cervical region +C0838315|T047|PT|M41.03|ICD10CM|Infantile idiopathic scoliosis, cervicothoracic region|Infantile idiopathic scoliosis, cervicothoracic region +C0838315|T047|AB|M41.03|ICD10CM|Infantile idiopathic scoliosis, cervicothoracic region|Infantile idiopathic scoliosis, cervicothoracic region +C0838316|T047|PT|M41.04|ICD10CM|Infantile idiopathic scoliosis, thoracic region|Infantile idiopathic scoliosis, thoracic region +C0838316|T047|AB|M41.04|ICD10CM|Infantile idiopathic scoliosis, thoracic region|Infantile idiopathic scoliosis, thoracic region +C0838317|T047|PT|M41.05|ICD10CM|Infantile idiopathic scoliosis, thoracolumbar region|Infantile idiopathic scoliosis, thoracolumbar region +C0838317|T047|AB|M41.05|ICD10CM|Infantile idiopathic scoliosis, thoracolumbar region|Infantile idiopathic scoliosis, thoracolumbar region +C0838318|T047|PT|M41.06|ICD10CM|Infantile idiopathic scoliosis, lumbar region|Infantile idiopathic scoliosis, lumbar region +C0838318|T047|AB|M41.06|ICD10CM|Infantile idiopathic scoliosis, lumbar region|Infantile idiopathic scoliosis, lumbar region +C0838319|T047|PT|M41.07|ICD10CM|Infantile idiopathic scoliosis, lumbosacral region|Infantile idiopathic scoliosis, lumbosacral region +C0838319|T047|AB|M41.07|ICD10CM|Infantile idiopathic scoliosis, lumbosacral region|Infantile idiopathic scoliosis, lumbosacral region +C0838320|T047|AB|M41.08|ICD10CM|Infantile idiopathic scoliosis, sacr/sacrocygl region|Infantile idiopathic scoliosis, sacr/sacrocygl region +C0838320|T047|PT|M41.08|ICD10CM|Infantile idiopathic scoliosis, sacral and sacrococcygeal region|Infantile idiopathic scoliosis, sacral and sacrococcygeal region +C2895223|T190|AB|M41.1|ICD10CM|Juvenile and adolescent idiopathic scoliosis|Juvenile and adolescent idiopathic scoliosis +C2895223|T190|HT|M41.1|ICD10CM|Juvenile and adolescent idiopathic scoliosis|Juvenile and adolescent idiopathic scoliosis +C3495538|T047|PT|M41.1|ICD10|Juvenile idiopathic scoliosis|Juvenile idiopathic scoliosis +C3495538|T047|HT|M41.11|ICD10CM|Juvenile idiopathic scoliosis|Juvenile idiopathic scoliosis +C3495538|T047|AB|M41.11|ICD10CM|Juvenile idiopathic scoliosis|Juvenile idiopathic scoliosis +C0838324|T047|PT|M41.112|ICD10CM|Juvenile idiopathic scoliosis, cervical region|Juvenile idiopathic scoliosis, cervical region +C0838324|T047|AB|M41.112|ICD10CM|Juvenile idiopathic scoliosis, cervical region|Juvenile idiopathic scoliosis, cervical region +C0838325|T190|PT|M41.113|ICD10CM|Juvenile idiopathic scoliosis, cervicothoracic region|Juvenile idiopathic scoliosis, cervicothoracic region +C0838325|T190|AB|M41.113|ICD10CM|Juvenile idiopathic scoliosis, cervicothoracic region|Juvenile idiopathic scoliosis, cervicothoracic region +C0838326|T190|PT|M41.114|ICD10CM|Juvenile idiopathic scoliosis, thoracic region|Juvenile idiopathic scoliosis, thoracic region +C0838326|T190|AB|M41.114|ICD10CM|Juvenile idiopathic scoliosis, thoracic region|Juvenile idiopathic scoliosis, thoracic region +C0838327|T190|PT|M41.115|ICD10CM|Juvenile idiopathic scoliosis, thoracolumbar region|Juvenile idiopathic scoliosis, thoracolumbar region +C0838327|T190|AB|M41.115|ICD10CM|Juvenile idiopathic scoliosis, thoracolumbar region|Juvenile idiopathic scoliosis, thoracolumbar region +C0838328|T190|PT|M41.116|ICD10CM|Juvenile idiopathic scoliosis, lumbar region|Juvenile idiopathic scoliosis, lumbar region +C0838328|T190|AB|M41.116|ICD10CM|Juvenile idiopathic scoliosis, lumbar region|Juvenile idiopathic scoliosis, lumbar region +C0838329|T190|PT|M41.117|ICD10CM|Juvenile idiopathic scoliosis, lumbosacral region|Juvenile idiopathic scoliosis, lumbosacral region +C0838329|T190|AB|M41.117|ICD10CM|Juvenile idiopathic scoliosis, lumbosacral region|Juvenile idiopathic scoliosis, lumbosacral region +C3495538|T047|PT|M41.119|ICD10CM|Juvenile idiopathic scoliosis, site unspecified|Juvenile idiopathic scoliosis, site unspecified +C3495538|T047|AB|M41.119|ICD10CM|Juvenile idiopathic scoliosis, site unspecified|Juvenile idiopathic scoliosis, site unspecified +C2895224|T190|AB|M41.12|ICD10CM|Adolescent scoliosis|Adolescent scoliosis +C2895224|T190|HT|M41.12|ICD10CM|Adolescent scoliosis|Adolescent scoliosis +C2895225|T190|AB|M41.122|ICD10CM|Adolescent idiopathic scoliosis, cervical region|Adolescent idiopathic scoliosis, cervical region +C2895225|T190|PT|M41.122|ICD10CM|Adolescent idiopathic scoliosis, cervical region|Adolescent idiopathic scoliosis, cervical region +C4759363|T020|AB|M41.123|ICD10CM|Adolescent idiopathic scoliosis, cervicothoracic region|Adolescent idiopathic scoliosis, cervicothoracic region +C4759363|T020|PT|M41.123|ICD10CM|Adolescent idiopathic scoliosis, cervicothoracic region|Adolescent idiopathic scoliosis, cervicothoracic region +C4751060|T020|AB|M41.124|ICD10CM|Adolescent idiopathic scoliosis, thoracic region|Adolescent idiopathic scoliosis, thoracic region +C4751060|T020|PT|M41.124|ICD10CM|Adolescent idiopathic scoliosis, thoracic region|Adolescent idiopathic scoliosis, thoracic region +C4751062|T020|AB|M41.125|ICD10CM|Adolescent idiopathic scoliosis, thoracolumbar region|Adolescent idiopathic scoliosis, thoracolumbar region +C4751062|T020|PT|M41.125|ICD10CM|Adolescent idiopathic scoliosis, thoracolumbar region|Adolescent idiopathic scoliosis, thoracolumbar region +C4751059|T020|AB|M41.126|ICD10CM|Adolescent idiopathic scoliosis, lumbar region|Adolescent idiopathic scoliosis, lumbar region +C4751059|T020|PT|M41.126|ICD10CM|Adolescent idiopathic scoliosis, lumbar region|Adolescent idiopathic scoliosis, lumbar region +C4759362|T020|AB|M41.127|ICD10CM|Adolescent idiopathic scoliosis, lumbosacral region|Adolescent idiopathic scoliosis, lumbosacral region +C4759362|T020|PT|M41.127|ICD10CM|Adolescent idiopathic scoliosis, lumbosacral region|Adolescent idiopathic scoliosis, lumbosacral region +C2895231|T190|AB|M41.129|ICD10CM|Adolescent idiopathic scoliosis, site unspecified|Adolescent idiopathic scoliosis, site unspecified +C2895231|T190|PT|M41.129|ICD10CM|Adolescent idiopathic scoliosis, site unspecified|Adolescent idiopathic scoliosis, site unspecified +C0477603|T047|HT|M41.2|ICD10CM|Other idiopathic scoliosis|Other idiopathic scoliosis +C0477603|T047|AB|M41.2|ICD10CM|Other idiopathic scoliosis|Other idiopathic scoliosis +C0477603|T047|PT|M41.2|ICD10|Other idiopathic scoliosis|Other idiopathic scoliosis +C0838341|T047|PT|M41.20|ICD10CM|Other idiopathic scoliosis, site unspecified|Other idiopathic scoliosis, site unspecified +C0838341|T047|AB|M41.20|ICD10CM|Other idiopathic scoliosis, site unspecified|Other idiopathic scoliosis, site unspecified +C0838334|T047|PT|M41.22|ICD10CM|Other idiopathic scoliosis, cervical region|Other idiopathic scoliosis, cervical region +C0838334|T047|AB|M41.22|ICD10CM|Other idiopathic scoliosis, cervical region|Other idiopathic scoliosis, cervical region +C0838335|T047|PT|M41.23|ICD10CM|Other idiopathic scoliosis, cervicothoracic region|Other idiopathic scoliosis, cervicothoracic region +C0838335|T047|AB|M41.23|ICD10CM|Other idiopathic scoliosis, cervicothoracic region|Other idiopathic scoliosis, cervicothoracic region +C0838336|T047|PT|M41.24|ICD10CM|Other idiopathic scoliosis, thoracic region|Other idiopathic scoliosis, thoracic region +C0838336|T047|AB|M41.24|ICD10CM|Other idiopathic scoliosis, thoracic region|Other idiopathic scoliosis, thoracic region +C0838337|T047|PT|M41.25|ICD10CM|Other idiopathic scoliosis, thoracolumbar region|Other idiopathic scoliosis, thoracolumbar region +C0838337|T047|AB|M41.25|ICD10CM|Other idiopathic scoliosis, thoracolumbar region|Other idiopathic scoliosis, thoracolumbar region +C0838338|T047|PT|M41.26|ICD10CM|Other idiopathic scoliosis, lumbar region|Other idiopathic scoliosis, lumbar region +C0838338|T047|AB|M41.26|ICD10CM|Other idiopathic scoliosis, lumbar region|Other idiopathic scoliosis, lumbar region +C0838339|T047|PT|M41.27|ICD10CM|Other idiopathic scoliosis, lumbosacral region|Other idiopathic scoliosis, lumbosacral region +C0838339|T047|AB|M41.27|ICD10CM|Other idiopathic scoliosis, lumbosacral region|Other idiopathic scoliosis, lumbosacral region +C0158505|T047|HT|M41.3|ICD10CM|Thoracogenic scoliosis|Thoracogenic scoliosis +C0158505|T047|AB|M41.3|ICD10CM|Thoracogenic scoliosis|Thoracogenic scoliosis +C0158505|T047|PT|M41.3|ICD10|Thoracogenic scoliosis|Thoracogenic scoliosis +C0838351|T047|PT|M41.30|ICD10CM|Thoracogenic scoliosis, site unspecified|Thoracogenic scoliosis, site unspecified +C0838351|T047|AB|M41.30|ICD10CM|Thoracogenic scoliosis, site unspecified|Thoracogenic scoliosis, site unspecified +C0838346|T190|PT|M41.34|ICD10CM|Thoracogenic scoliosis, thoracic region|Thoracogenic scoliosis, thoracic region +C0838346|T190|AB|M41.34|ICD10CM|Thoracogenic scoliosis, thoracic region|Thoracogenic scoliosis, thoracic region +C0838347|T190|PT|M41.35|ICD10CM|Thoracogenic scoliosis, thoracolumbar region|Thoracogenic scoliosis, thoracolumbar region +C0838347|T190|AB|M41.35|ICD10CM|Thoracogenic scoliosis, thoracolumbar region|Thoracogenic scoliosis, thoracolumbar region +C0410698|T047|PT|M41.4|ICD10|Neuromuscular scoliosis|Neuromuscular scoliosis +C0410698|T047|HT|M41.4|ICD10CM|Neuromuscular scoliosis|Neuromuscular scoliosis +C0410698|T047|AB|M41.4|ICD10CM|Neuromuscular scoliosis|Neuromuscular scoliosis +C0410698|T047|PT|M41.40|ICD10CM|Neuromuscular scoliosis, site unspecified|Neuromuscular scoliosis, site unspecified +C0410698|T047|AB|M41.40|ICD10CM|Neuromuscular scoliosis, site unspecified|Neuromuscular scoliosis, site unspecified +C0838353|T047|PT|M41.41|ICD10CM|Neuromuscular scoliosis, occipito-atlanto-axial region|Neuromuscular scoliosis, occipito-atlanto-axial region +C0838353|T047|AB|M41.41|ICD10CM|Neuromuscular scoliosis, occipito-atlanto-axial region|Neuromuscular scoliosis, occipito-atlanto-axial region +C0838354|T047|PT|M41.42|ICD10CM|Neuromuscular scoliosis, cervical region|Neuromuscular scoliosis, cervical region +C0838354|T047|AB|M41.42|ICD10CM|Neuromuscular scoliosis, cervical region|Neuromuscular scoliosis, cervical region +C0838355|T047|PT|M41.43|ICD10CM|Neuromuscular scoliosis, cervicothoracic region|Neuromuscular scoliosis, cervicothoracic region +C0838355|T047|AB|M41.43|ICD10CM|Neuromuscular scoliosis, cervicothoracic region|Neuromuscular scoliosis, cervicothoracic region +C0838356|T047|PT|M41.44|ICD10CM|Neuromuscular scoliosis, thoracic region|Neuromuscular scoliosis, thoracic region +C0838356|T047|AB|M41.44|ICD10CM|Neuromuscular scoliosis, thoracic region|Neuromuscular scoliosis, thoracic region +C0838357|T047|PT|M41.45|ICD10CM|Neuromuscular scoliosis, thoracolumbar region|Neuromuscular scoliosis, thoracolumbar region +C0838357|T047|AB|M41.45|ICD10CM|Neuromuscular scoliosis, thoracolumbar region|Neuromuscular scoliosis, thoracolumbar region +C0838358|T047|PT|M41.46|ICD10CM|Neuromuscular scoliosis, lumbar region|Neuromuscular scoliosis, lumbar region +C0838358|T047|AB|M41.46|ICD10CM|Neuromuscular scoliosis, lumbar region|Neuromuscular scoliosis, lumbar region +C0838359|T047|PT|M41.47|ICD10CM|Neuromuscular scoliosis, lumbosacral region|Neuromuscular scoliosis, lumbosacral region +C0838359|T047|AB|M41.47|ICD10CM|Neuromuscular scoliosis, lumbosacral region|Neuromuscular scoliosis, lumbosacral region +C0477604|T047|HT|M41.5|ICD10CM|Other secondary scoliosis|Other secondary scoliosis +C0477604|T047|AB|M41.5|ICD10CM|Other secondary scoliosis|Other secondary scoliosis +C0477604|T047|PT|M41.5|ICD10|Other secondary scoliosis|Other secondary scoliosis +C0477604|T047|PT|M41.50|ICD10CM|Other secondary scoliosis, site unspecified|Other secondary scoliosis, site unspecified +C0477604|T047|AB|M41.50|ICD10CM|Other secondary scoliosis, site unspecified|Other secondary scoliosis, site unspecified +C0838364|T047|PT|M41.52|ICD10CM|Other secondary scoliosis, cervical region|Other secondary scoliosis, cervical region +C0838364|T047|AB|M41.52|ICD10CM|Other secondary scoliosis, cervical region|Other secondary scoliosis, cervical region +C0838365|T047|PT|M41.53|ICD10CM|Other secondary scoliosis, cervicothoracic region|Other secondary scoliosis, cervicothoracic region +C0838365|T047|AB|M41.53|ICD10CM|Other secondary scoliosis, cervicothoracic region|Other secondary scoliosis, cervicothoracic region +C0838366|T047|PT|M41.54|ICD10CM|Other secondary scoliosis, thoracic region|Other secondary scoliosis, thoracic region +C0838366|T047|AB|M41.54|ICD10CM|Other secondary scoliosis, thoracic region|Other secondary scoliosis, thoracic region +C0838367|T047|PT|M41.55|ICD10CM|Other secondary scoliosis, thoracolumbar region|Other secondary scoliosis, thoracolumbar region +C0838367|T047|AB|M41.55|ICD10CM|Other secondary scoliosis, thoracolumbar region|Other secondary scoliosis, thoracolumbar region +C0838368|T047|PT|M41.56|ICD10CM|Other secondary scoliosis, lumbar region|Other secondary scoliosis, lumbar region +C0838368|T047|AB|M41.56|ICD10CM|Other secondary scoliosis, lumbar region|Other secondary scoliosis, lumbar region +C0838369|T047|PT|M41.57|ICD10CM|Other secondary scoliosis, lumbosacral region|Other secondary scoliosis, lumbosacral region +C0838369|T047|AB|M41.57|ICD10CM|Other secondary scoliosis, lumbosacral region|Other secondary scoliosis, lumbosacral region +C0477605|T047|HT|M41.8|ICD10CM|Other forms of scoliosis|Other forms of scoliosis +C0477605|T047|AB|M41.8|ICD10CM|Other forms of scoliosis|Other forms of scoliosis +C0477605|T047|PT|M41.8|ICD10|Other forms of scoliosis|Other forms of scoliosis +C0477605|T047|PT|M41.80|ICD10CM|Other forms of scoliosis, site unspecified|Other forms of scoliosis, site unspecified +C0477605|T047|AB|M41.80|ICD10CM|Other forms of scoliosis, site unspecified|Other forms of scoliosis, site unspecified +C0838374|T047|PT|M41.82|ICD10CM|Other forms of scoliosis, cervical region|Other forms of scoliosis, cervical region +C0838374|T047|AB|M41.82|ICD10CM|Other forms of scoliosis, cervical region|Other forms of scoliosis, cervical region +C0838375|T047|PT|M41.83|ICD10CM|Other forms of scoliosis, cervicothoracic region|Other forms of scoliosis, cervicothoracic region +C0838375|T047|AB|M41.83|ICD10CM|Other forms of scoliosis, cervicothoracic region|Other forms of scoliosis, cervicothoracic region +C0838376|T047|PT|M41.84|ICD10CM|Other forms of scoliosis, thoracic region|Other forms of scoliosis, thoracic region +C0838376|T047|AB|M41.84|ICD10CM|Other forms of scoliosis, thoracic region|Other forms of scoliosis, thoracic region +C0838377|T047|PT|M41.85|ICD10CM|Other forms of scoliosis, thoracolumbar region|Other forms of scoliosis, thoracolumbar region +C0838377|T047|AB|M41.85|ICD10CM|Other forms of scoliosis, thoracolumbar region|Other forms of scoliosis, thoracolumbar region +C0838378|T047|PT|M41.86|ICD10CM|Other forms of scoliosis, lumbar region|Other forms of scoliosis, lumbar region +C0838378|T047|AB|M41.86|ICD10CM|Other forms of scoliosis, lumbar region|Other forms of scoliosis, lumbar region +C0838379|T047|PT|M41.87|ICD10CM|Other forms of scoliosis, lumbosacral region|Other forms of scoliosis, lumbosacral region +C0838379|T047|AB|M41.87|ICD10CM|Other forms of scoliosis, lumbosacral region|Other forms of scoliosis, lumbosacral region +C0036439|T047|PT|M41.9|ICD10|Scoliosis, unspecified|Scoliosis, unspecified +C0036439|T047|PT|M41.9|ICD10CM|Scoliosis, unspecified|Scoliosis, unspecified +C0036439|T047|AB|M41.9|ICD10CM|Scoliosis, unspecified|Scoliosis, unspecified +C0477611|T047|HT|M42|ICD10CM|Spinal osteochondrosis|Spinal osteochondrosis +C0477611|T047|AB|M42|ICD10CM|Spinal osteochondrosis|Spinal osteochondrosis +C0477611|T047|HT|M42|ICD10|Spinal osteochondrosis|Spinal osteochondrosis +C0036310|T047|ET|M42.0|ICD10CM|Calvé's disease|Calvé's disease +C0036310|T047|HT|M42.0|ICD10CM|Juvenile osteochondrosis of spine|Juvenile osteochondrosis of spine +C0036310|T047|AB|M42.0|ICD10CM|Juvenile osteochondrosis of spine|Juvenile osteochondrosis of spine +C0036310|T047|PT|M42.0|ICD10|Juvenile osteochondrosis of spine|Juvenile osteochondrosis of spine +C0036310|T047|ET|M42.0|ICD10CM|Scheuermann's disease|Scheuermann's disease +C0036310|T047|PT|M42.00|ICD10CM|Juvenile osteochondrosis of spine, site unspecified|Juvenile osteochondrosis of spine, site unspecified +C0036310|T047|AB|M42.00|ICD10CM|Juvenile osteochondrosis of spine, site unspecified|Juvenile osteochondrosis of spine, site unspecified +C0838393|T047|PT|M42.01|ICD10CM|Juvenile osteochondrosis of spine, occipito-atlanto-axial region|Juvenile osteochondrosis of spine, occipito-atlanto-axial region +C0838393|T047|AB|M42.01|ICD10CM|Juvenile osteochondrosis of spine, occipt-atlan-ax region|Juvenile osteochondrosis of spine, occipt-atlan-ax region +C0838394|T047|PT|M42.02|ICD10CM|Juvenile osteochondrosis of spine, cervical region|Juvenile osteochondrosis of spine, cervical region +C0838394|T047|AB|M42.02|ICD10CM|Juvenile osteochondrosis of spine, cervical region|Juvenile osteochondrosis of spine, cervical region +C0838395|T047|PT|M42.03|ICD10CM|Juvenile osteochondrosis of spine, cervicothoracic region|Juvenile osteochondrosis of spine, cervicothoracic region +C0838395|T047|AB|M42.03|ICD10CM|Juvenile osteochondrosis of spine, cervicothoracic region|Juvenile osteochondrosis of spine, cervicothoracic region +C0838396|T047|PT|M42.04|ICD10CM|Juvenile osteochondrosis of spine, thoracic region|Juvenile osteochondrosis of spine, thoracic region +C0838396|T047|AB|M42.04|ICD10CM|Juvenile osteochondrosis of spine, thoracic region|Juvenile osteochondrosis of spine, thoracic region +C0838397|T047|PT|M42.05|ICD10CM|Juvenile osteochondrosis of spine, thoracolumbar region|Juvenile osteochondrosis of spine, thoracolumbar region +C0838397|T047|AB|M42.05|ICD10CM|Juvenile osteochondrosis of spine, thoracolumbar region|Juvenile osteochondrosis of spine, thoracolumbar region +C0838398|T047|PT|M42.06|ICD10CM|Juvenile osteochondrosis of spine, lumbar region|Juvenile osteochondrosis of spine, lumbar region +C0838398|T047|AB|M42.06|ICD10CM|Juvenile osteochondrosis of spine, lumbar region|Juvenile osteochondrosis of spine, lumbar region +C0838399|T047|PT|M42.07|ICD10CM|Juvenile osteochondrosis of spine, lumbosacral region|Juvenile osteochondrosis of spine, lumbosacral region +C0838399|T047|AB|M42.07|ICD10CM|Juvenile osteochondrosis of spine, lumbosacral region|Juvenile osteochondrosis of spine, lumbosacral region +C0838400|T047|AB|M42.08|ICD10CM|Juvenile osteochondrosis of spine, sacr/sacrocygl region|Juvenile osteochondrosis of spine, sacr/sacrocygl region +C0838400|T047|PT|M42.08|ICD10CM|Juvenile osteochondrosis of spine, sacral and sacrococcygeal region|Juvenile osteochondrosis of spine, sacral and sacrococcygeal region +C0838392|T047|PT|M42.09|ICD10CM|Juvenile osteochondrosis of spine, multiple sites in spine|Juvenile osteochondrosis of spine, multiple sites in spine +C0838392|T047|AB|M42.09|ICD10CM|Juvenile osteochondrosis of spine, multiple sites in spine|Juvenile osteochondrosis of spine, multiple sites in spine +C0343272|T047|PT|M42.1|ICD10|Adult osteochondrosis of spine|Adult osteochondrosis of spine +C0343272|T047|HT|M42.1|ICD10CM|Adult osteochondrosis of spine|Adult osteochondrosis of spine +C0343272|T047|AB|M42.1|ICD10CM|Adult osteochondrosis of spine|Adult osteochondrosis of spine +C0838411|T047|PT|M42.10|ICD10CM|Adult osteochondrosis of spine, site unspecified|Adult osteochondrosis of spine, site unspecified +C0838411|T047|AB|M42.10|ICD10CM|Adult osteochondrosis of spine, site unspecified|Adult osteochondrosis of spine, site unspecified +C0838403|T047|PT|M42.11|ICD10CM|Adult osteochondrosis of spine, occipito-atlanto-axial region|Adult osteochondrosis of spine, occipito-atlanto-axial region +C0838403|T047|AB|M42.11|ICD10CM|Adult osteochondrosis of spine, occipt-atlan-ax region|Adult osteochondrosis of spine, occipt-atlan-ax region +C0838404|T047|PT|M42.12|ICD10CM|Adult osteochondrosis of spine, cervical region|Adult osteochondrosis of spine, cervical region +C0838404|T047|AB|M42.12|ICD10CM|Adult osteochondrosis of spine, cervical region|Adult osteochondrosis of spine, cervical region +C0838405|T047|PT|M42.13|ICD10CM|Adult osteochondrosis of spine, cervicothoracic region|Adult osteochondrosis of spine, cervicothoracic region +C0838405|T047|AB|M42.13|ICD10CM|Adult osteochondrosis of spine, cervicothoracic region|Adult osteochondrosis of spine, cervicothoracic region +C0838406|T047|PT|M42.14|ICD10CM|Adult osteochondrosis of spine, thoracic region|Adult osteochondrosis of spine, thoracic region +C0838406|T047|AB|M42.14|ICD10CM|Adult osteochondrosis of spine, thoracic region|Adult osteochondrosis of spine, thoracic region +C0838407|T047|PT|M42.15|ICD10CM|Adult osteochondrosis of spine, thoracolumbar region|Adult osteochondrosis of spine, thoracolumbar region +C0838407|T190|PT|M42.15|ICD10CM|Adult osteochondrosis of spine, thoracolumbar region|Adult osteochondrosis of spine, thoracolumbar region +C0838407|T047|AB|M42.15|ICD10CM|Adult osteochondrosis of spine, thoracolumbar region|Adult osteochondrosis of spine, thoracolumbar region +C0838407|T190|AB|M42.15|ICD10CM|Adult osteochondrosis of spine, thoracolumbar region|Adult osteochondrosis of spine, thoracolumbar region +C0838408|T047|PT|M42.16|ICD10CM|Adult osteochondrosis of spine, lumbar region|Adult osteochondrosis of spine, lumbar region +C0838408|T047|AB|M42.16|ICD10CM|Adult osteochondrosis of spine, lumbar region|Adult osteochondrosis of spine, lumbar region +C0838409|T047|PT|M42.17|ICD10CM|Adult osteochondrosis of spine, lumbosacral region|Adult osteochondrosis of spine, lumbosacral region +C0838409|T047|AB|M42.17|ICD10CM|Adult osteochondrosis of spine, lumbosacral region|Adult osteochondrosis of spine, lumbosacral region +C0838410|T047|AB|M42.18|ICD10CM|Adult osteochondrosis of spine, sacr/sacrocygl region|Adult osteochondrosis of spine, sacr/sacrocygl region +C0838410|T047|PT|M42.18|ICD10CM|Adult osteochondrosis of spine, sacral and sacrococcygeal region|Adult osteochondrosis of spine, sacral and sacrococcygeal region +C0838402|T047|PT|M42.19|ICD10CM|Adult osteochondrosis of spine, multiple sites in spine|Adult osteochondrosis of spine, multiple sites in spine +C0838402|T047|AB|M42.19|ICD10CM|Adult osteochondrosis of spine, multiple sites in spine|Adult osteochondrosis of spine, multiple sites in spine +C0477611|T047|PT|M42.9|ICD10|Spinal osteochondrosis, unspecified|Spinal osteochondrosis, unspecified +C0477611|T047|PT|M42.9|ICD10CM|Spinal osteochondrosis, unspecified|Spinal osteochondrosis, unspecified +C0477611|T047|AB|M42.9|ICD10CM|Spinal osteochondrosis, unspecified|Spinal osteochondrosis, unspecified +C0494958|T047|AB|M43|ICD10CM|Other deforming dorsopathies|Other deforming dorsopathies +C0494958|T047|HT|M43|ICD10CM|Other deforming dorsopathies|Other deforming dorsopathies +C0494958|T047|HT|M43|ICD10|Other deforming dorsopathies|Other deforming dorsopathies +C0038018|T047|HT|M43.0|ICD10CM|Spondylolysis|Spondylolysis +C0038018|T047|AB|M43.0|ICD10CM|Spondylolysis|Spondylolysis +C0038018|T047|PT|M43.0|ICD10|Spondylolysis|Spondylolysis +C0038018|T047|PT|M43.00|ICD10CM|Spondylolysis, site unspecified|Spondylolysis, site unspecified +C0038018|T047|AB|M43.00|ICD10CM|Spondylolysis, site unspecified|Spondylolysis, site unspecified +C0838423|T047|PT|M43.01|ICD10CM|Spondylolysis, occipito-atlanto-axial region|Spondylolysis, occipito-atlanto-axial region +C0838423|T047|AB|M43.01|ICD10CM|Spondylolysis, occipito-atlanto-axial region|Spondylolysis, occipito-atlanto-axial region +C0838424|T047|PT|M43.02|ICD10CM|Spondylolysis, cervical region|Spondylolysis, cervical region +C0838424|T047|AB|M43.02|ICD10CM|Spondylolysis, cervical region|Spondylolysis, cervical region +C0838425|T047|PT|M43.03|ICD10CM|Spondylolysis, cervicothoracic region|Spondylolysis, cervicothoracic region +C0838425|T047|AB|M43.03|ICD10CM|Spondylolysis, cervicothoracic region|Spondylolysis, cervicothoracic region +C0838426|T047|PT|M43.04|ICD10CM|Spondylolysis, thoracic region|Spondylolysis, thoracic region +C0838426|T047|AB|M43.04|ICD10CM|Spondylolysis, thoracic region|Spondylolysis, thoracic region +C0838427|T047|PT|M43.05|ICD10CM|Spondylolysis, thoracolumbar region|Spondylolysis, thoracolumbar region +C0838427|T047|AB|M43.05|ICD10CM|Spondylolysis, thoracolumbar region|Spondylolysis, thoracolumbar region +C0838428|T047|PT|M43.06|ICD10CM|Spondylolysis, lumbar region|Spondylolysis, lumbar region +C0838428|T047|AB|M43.06|ICD10CM|Spondylolysis, lumbar region|Spondylolysis, lumbar region +C0838429|T047|PT|M43.07|ICD10CM|Spondylolysis, lumbosacral region|Spondylolysis, lumbosacral region +C0838429|T047|AB|M43.07|ICD10CM|Spondylolysis, lumbosacral region|Spondylolysis, lumbosacral region +C0838430|T047|PT|M43.08|ICD10CM|Spondylolysis, sacral and sacrococcygeal region|Spondylolysis, sacral and sacrococcygeal region +C0838430|T047|AB|M43.08|ICD10CM|Spondylolysis, sacral and sacrococcygeal region|Spondylolysis, sacral and sacrococcygeal region +C0838422|T047|PT|M43.09|ICD10CM|Spondylolysis, multiple sites in spine|Spondylolysis, multiple sites in spine +C0838422|T047|AB|M43.09|ICD10CM|Spondylolysis, multiple sites in spine|Spondylolysis, multiple sites in spine +C0038016|T047|HT|M43.1|ICD10CM|Spondylolisthesis|Spondylolisthesis +C0038016|T047|AB|M43.1|ICD10CM|Spondylolisthesis|Spondylolisthesis +C0038016|T047|PT|M43.1|ICD10|Spondylolisthesis|Spondylolisthesis +C0038016|T047|PT|M43.10|ICD10CM|Spondylolisthesis, site unspecified|Spondylolisthesis, site unspecified +C0038016|T047|AB|M43.10|ICD10CM|Spondylolisthesis, site unspecified|Spondylolisthesis, site unspecified +C0838433|T047|PT|M43.11|ICD10CM|Spondylolisthesis, occipito-atlanto-axial region|Spondylolisthesis, occipito-atlanto-axial region +C0838433|T047|AB|M43.11|ICD10CM|Spondylolisthesis, occipito-atlanto-axial region|Spondylolisthesis, occipito-atlanto-axial region +C0838434|T047|PT|M43.12|ICD10CM|Spondylolisthesis, cervical region|Spondylolisthesis, cervical region +C0838434|T047|AB|M43.12|ICD10CM|Spondylolisthesis, cervical region|Spondylolisthesis, cervical region +C0838435|T047|PT|M43.13|ICD10CM|Spondylolisthesis, cervicothoracic region|Spondylolisthesis, cervicothoracic region +C0838435|T047|AB|M43.13|ICD10CM|Spondylolisthesis, cervicothoracic region|Spondylolisthesis, cervicothoracic region +C0838436|T047|PT|M43.14|ICD10CM|Spondylolisthesis, thoracic region|Spondylolisthesis, thoracic region +C0838436|T047|AB|M43.14|ICD10CM|Spondylolisthesis, thoracic region|Spondylolisthesis, thoracic region +C0838437|T047|PT|M43.15|ICD10CM|Spondylolisthesis, thoracolumbar region|Spondylolisthesis, thoracolumbar region +C0838437|T047|AB|M43.15|ICD10CM|Spondylolisthesis, thoracolumbar region|Spondylolisthesis, thoracolumbar region +C0838438|T047|PT|M43.16|ICD10CM|Spondylolisthesis, lumbar region|Spondylolisthesis, lumbar region +C0838438|T047|AB|M43.16|ICD10CM|Spondylolisthesis, lumbar region|Spondylolisthesis, lumbar region +C0838439|T047|PT|M43.17|ICD10CM|Spondylolisthesis, lumbosacral region|Spondylolisthesis, lumbosacral region +C0838439|T047|AB|M43.17|ICD10CM|Spondylolisthesis, lumbosacral region|Spondylolisthesis, lumbosacral region +C0838440|T047|PT|M43.18|ICD10CM|Spondylolisthesis, sacral and sacrococcygeal region|Spondylolisthesis, sacral and sacrococcygeal region +C0838440|T047|AB|M43.18|ICD10CM|Spondylolisthesis, sacral and sacrococcygeal region|Spondylolisthesis, sacral and sacrococcygeal region +C0838432|T047|PT|M43.19|ICD10CM|Spondylolisthesis, multiple sites in spine|Spondylolisthesis, multiple sites in spine +C0838432|T047|AB|M43.19|ICD10CM|Spondylolisthesis, multiple sites in spine|Spondylolisthesis, multiple sites in spine +C2895233|T190|ET|M43.2|ICD10CM|Ankylosis of spinal joint|Ankylosis of spinal joint +C1410847|T047|AB|M43.2|ICD10CM|Fusion of spine|Fusion of spine +C1410847|T047|HT|M43.2|ICD10CM|Fusion of spine|Fusion of spine +C0477606|T047|PT|M43.2|ICD10|Other fusion of spine|Other fusion of spine +C1410847|T047|AB|M43.20|ICD10CM|Fusion of spine, site unspecified|Fusion of spine, site unspecified +C1410847|T047|PT|M43.20|ICD10CM|Fusion of spine, site unspecified|Fusion of spine, site unspecified +C2895234|T047|AB|M43.21|ICD10CM|Fusion of spine, occipito-atlanto-axial region|Fusion of spine, occipito-atlanto-axial region +C2895234|T047|PT|M43.21|ICD10CM|Fusion of spine, occipito-atlanto-axial region|Fusion of spine, occipito-atlanto-axial region +C2895235|T047|AB|M43.22|ICD10CM|Fusion of spine, cervical region|Fusion of spine, cervical region +C2895235|T047|PT|M43.22|ICD10CM|Fusion of spine, cervical region|Fusion of spine, cervical region +C2895236|T047|AB|M43.23|ICD10CM|Fusion of spine, cervicothoracic region|Fusion of spine, cervicothoracic region +C2895236|T047|PT|M43.23|ICD10CM|Fusion of spine, cervicothoracic region|Fusion of spine, cervicothoracic region +C2895237|T047|AB|M43.24|ICD10CM|Fusion of spine, thoracic region|Fusion of spine, thoracic region +C2895237|T047|PT|M43.24|ICD10CM|Fusion of spine, thoracic region|Fusion of spine, thoracic region +C2895238|T047|AB|M43.25|ICD10CM|Fusion of spine, thoracolumbar region|Fusion of spine, thoracolumbar region +C2895238|T047|PT|M43.25|ICD10CM|Fusion of spine, thoracolumbar region|Fusion of spine, thoracolumbar region +C2895239|T047|AB|M43.26|ICD10CM|Fusion of spine, lumbar region|Fusion of spine, lumbar region +C2895239|T047|PT|M43.26|ICD10CM|Fusion of spine, lumbar region|Fusion of spine, lumbar region +C2895240|T047|AB|M43.27|ICD10CM|Fusion of spine, lumbosacral region|Fusion of spine, lumbosacral region +C2895240|T047|PT|M43.27|ICD10CM|Fusion of spine, lumbosacral region|Fusion of spine, lumbosacral region +C2895241|T047|AB|M43.28|ICD10CM|Fusion of spine, sacral and sacrococcygeal region|Fusion of spine, sacral and sacrococcygeal region +C2895241|T047|PT|M43.28|ICD10CM|Fusion of spine, sacral and sacrococcygeal region|Fusion of spine, sacral and sacrococcygeal region +C2895242|T047|AB|M43.3|ICD10CM|Recurrent atlantoaxial dislocation with myelopathy|Recurrent atlantoaxial dislocation with myelopathy +C2895242|T047|PT|M43.3|ICD10CM|Recurrent atlantoaxial dislocation with myelopathy|Recurrent atlantoaxial dislocation with myelopathy +C0451893|T046|PT|M43.3|ICD10|Recurrent atlantoaxial subluxation with myelopathy|Recurrent atlantoaxial subluxation with myelopathy +C2895243|T037|AB|M43.4|ICD10CM|Other recurrent atlantoaxial dislocation|Other recurrent atlantoaxial dislocation +C2895243|T037|PT|M43.4|ICD10CM|Other recurrent atlantoaxial dislocation|Other recurrent atlantoaxial dislocation +C0477607|T190|PT|M43.4|ICD10|Other recurrent atlantoaxial subluxation|Other recurrent atlantoaxial subluxation +C2895244|T047|AB|M43.5|ICD10CM|Other recurrent vertebral dislocation|Other recurrent vertebral dislocation +C2895244|T047|HT|M43.5|ICD10CM|Other recurrent vertebral dislocation|Other recurrent vertebral dislocation +C0477608|T190|PT|M43.5|ICD10|Other recurrent vertebral subluxation|Other recurrent vertebral subluxation +C2895244|T047|HT|M43.5X|ICD10CM|Other recurrent vertebral dislocation|Other recurrent vertebral dislocation +C2895244|T047|AB|M43.5X|ICD10CM|Other recurrent vertebral dislocation|Other recurrent vertebral dislocation +C2895245|T037|AB|M43.5X2|ICD10CM|Other recurrent vertebral dislocation, cervical region|Other recurrent vertebral dislocation, cervical region +C2895245|T037|PT|M43.5X2|ICD10CM|Other recurrent vertebral dislocation, cervical region|Other recurrent vertebral dislocation, cervical region +C2895246|T037|AB|M43.5X3|ICD10CM|Oth recurrent vertebral dislocation, cervicothoracic region|Oth recurrent vertebral dislocation, cervicothoracic region +C2895246|T037|PT|M43.5X3|ICD10CM|Other recurrent vertebral dislocation, cervicothoracic region|Other recurrent vertebral dislocation, cervicothoracic region +C2895247|T047|AB|M43.5X4|ICD10CM|Other recurrent vertebral dislocation, thoracic region|Other recurrent vertebral dislocation, thoracic region +C2895247|T047|PT|M43.5X4|ICD10CM|Other recurrent vertebral dislocation, thoracic region|Other recurrent vertebral dislocation, thoracic region +C2895248|T047|AB|M43.5X5|ICD10CM|Other recurrent vertebral dislocation, thoracolumbar region|Other recurrent vertebral dislocation, thoracolumbar region +C2895248|T047|PT|M43.5X5|ICD10CM|Other recurrent vertebral dislocation, thoracolumbar region|Other recurrent vertebral dislocation, thoracolumbar region +C2895249|T037|AB|M43.5X6|ICD10CM|Other recurrent vertebral dislocation, lumbar region|Other recurrent vertebral dislocation, lumbar region +C2895249|T037|PT|M43.5X6|ICD10CM|Other recurrent vertebral dislocation, lumbar region|Other recurrent vertebral dislocation, lumbar region +C2895250|T037|AB|M43.5X7|ICD10CM|Other recurrent vertebral dislocation, lumbosacral region|Other recurrent vertebral dislocation, lumbosacral region +C2895250|T037|PT|M43.5X7|ICD10CM|Other recurrent vertebral dislocation, lumbosacral region|Other recurrent vertebral dislocation, lumbosacral region +C2895251|T037|AB|M43.5X8|ICD10CM|Oth recurrent vertebral dislocation, sacr/sacrocygl region|Oth recurrent vertebral dislocation, sacr/sacrocygl region +C2895251|T037|PT|M43.5X8|ICD10CM|Other recurrent vertebral dislocation, sacral and sacrococcygeal region|Other recurrent vertebral dislocation, sacral and sacrococcygeal region +C2895252|T047|AB|M43.5X9|ICD10CM|Other recurrent vertebral dislocation, site unspecified|Other recurrent vertebral dislocation, site unspecified +C2895252|T047|PT|M43.5X9|ICD10CM|Other recurrent vertebral dislocation, site unspecified|Other recurrent vertebral dislocation, site unspecified +C0040485|T184|PT|M43.6|ICD10CM|Torticollis|Torticollis +C0040485|T184|AB|M43.6|ICD10CM|Torticollis|Torticollis +C0040485|T184|PT|M43.6|ICD10|Torticollis|Torticollis +C0477609|T047|HT|M43.8|ICD10CM|Other specified deforming dorsopathies|Other specified deforming dorsopathies +C0477609|T047|AB|M43.8|ICD10CM|Other specified deforming dorsopathies|Other specified deforming dorsopathies +C0477609|T047|PT|M43.8|ICD10|Other specified deforming dorsopathies|Other specified deforming dorsopathies +C0477609|T047|HT|M43.8X|ICD10CM|Other specified deforming dorsopathies|Other specified deforming dorsopathies +C0477609|T047|AB|M43.8X|ICD10CM|Other specified deforming dorsopathies|Other specified deforming dorsopathies +C0838463|T047|AB|M43.8X1|ICD10CM|Oth deforming dorsopathies, occipito-atlanto-axial region|Oth deforming dorsopathies, occipito-atlanto-axial region +C0838463|T047|PT|M43.8X1|ICD10CM|Other specified deforming dorsopathies, occipito-atlanto-axial region|Other specified deforming dorsopathies, occipito-atlanto-axial region +C0838464|T047|PT|M43.8X2|ICD10CM|Other specified deforming dorsopathies, cervical region|Other specified deforming dorsopathies, cervical region +C0838464|T047|AB|M43.8X2|ICD10CM|Other specified deforming dorsopathies, cervical region|Other specified deforming dorsopathies, cervical region +C0838465|T047|AB|M43.8X3|ICD10CM|Oth deforming dorsopathies, cervicothoracic region|Oth deforming dorsopathies, cervicothoracic region +C0838465|T047|PT|M43.8X3|ICD10CM|Other specified deforming dorsopathies, cervicothoracic region|Other specified deforming dorsopathies, cervicothoracic region +C0838466|T047|PT|M43.8X4|ICD10CM|Other specified deforming dorsopathies, thoracic region|Other specified deforming dorsopathies, thoracic region +C0838466|T047|AB|M43.8X4|ICD10CM|Other specified deforming dorsopathies, thoracic region|Other specified deforming dorsopathies, thoracic region +C0838467|T047|PT|M43.8X5|ICD10CM|Other specified deforming dorsopathies, thoracolumbar region|Other specified deforming dorsopathies, thoracolumbar region +C0838467|T047|AB|M43.8X5|ICD10CM|Other specified deforming dorsopathies, thoracolumbar region|Other specified deforming dorsopathies, thoracolumbar region +C0838468|T047|PT|M43.8X6|ICD10CM|Other specified deforming dorsopathies, lumbar region|Other specified deforming dorsopathies, lumbar region +C0838468|T047|AB|M43.8X6|ICD10CM|Other specified deforming dorsopathies, lumbar region|Other specified deforming dorsopathies, lumbar region +C0838469|T047|PT|M43.8X7|ICD10CM|Other specified deforming dorsopathies, lumbosacral region|Other specified deforming dorsopathies, lumbosacral region +C0838469|T047|AB|M43.8X7|ICD10CM|Other specified deforming dorsopathies, lumbosacral region|Other specified deforming dorsopathies, lumbosacral region +C0838470|T047|AB|M43.8X8|ICD10CM|Oth deforming dorsopathies, sacral and sacrococcygeal region|Oth deforming dorsopathies, sacral and sacrococcygeal region +C0838470|T047|PT|M43.8X8|ICD10CM|Other specified deforming dorsopathies, sacral and sacrococcygeal region|Other specified deforming dorsopathies, sacral and sacrococcygeal region +C0477609|T047|PT|M43.8X9|ICD10CM|Other specified deforming dorsopathies, site unspecified|Other specified deforming dorsopathies, site unspecified +C0477609|T047|AB|M43.8X9|ICD10CM|Other specified deforming dorsopathies, site unspecified|Other specified deforming dorsopathies, site unspecified +C0037932|T033|ET|M43.9|ICD10CM|Curvature of spine NOS|Curvature of spine NOS +C0477599|T047|PT|M43.9|ICD10CM|Deforming dorsopathy, unspecified|Deforming dorsopathy, unspecified +C0477599|T047|AB|M43.9|ICD10CM|Deforming dorsopathy, unspecified|Deforming dorsopathy, unspecified +C0477599|T047|PT|M43.9|ICD10|Deforming dorsopathy, unspecified|Deforming dorsopathy, unspecified +C0038013|T047|PT|M45|ICD10|Ankylosing spondylitis|Ankylosing spondylitis +C0038013|T047|HT|M45|ICD10CM|Ankylosing spondylitis|Ankylosing spondylitis +C0038013|T047|AB|M45|ICD10CM|Ankylosing spondylitis|Ankylosing spondylitis +C0038013|T047|ET|M45|ICD10CM|Rheumatoid arthritis of spine|Rheumatoid arthritis of spine +C0037933|T047|HT|M45-M49|ICD10CM|Spondylopathies (M45-M49)|Spondylopathies (M45-M49) +C0037933|T047|HT|M45-M49.9|ICD10|Spondylopathies|Spondylopathies +C0838482|T047|PT|M45.0|ICD10CM|Ankylosing spondylitis of multiple sites in spine|Ankylosing spondylitis of multiple sites in spine +C0838482|T047|AB|M45.0|ICD10CM|Ankylosing spondylitis of multiple sites in spine|Ankylosing spondylitis of multiple sites in spine +C0838483|T047|PT|M45.1|ICD10CM|Ankylosing spondylitis of occipito-atlanto-axial region|Ankylosing spondylitis of occipito-atlanto-axial region +C0838483|T047|AB|M45.1|ICD10CM|Ankylosing spondylitis of occipito-atlanto-axial region|Ankylosing spondylitis of occipito-atlanto-axial region +C0838484|T047|PT|M45.2|ICD10CM|Ankylosing spondylitis of cervical region|Ankylosing spondylitis of cervical region +C0838484|T047|AB|M45.2|ICD10CM|Ankylosing spondylitis of cervical region|Ankylosing spondylitis of cervical region +C0838485|T047|PT|M45.3|ICD10CM|Ankylosing spondylitis of cervicothoracic region|Ankylosing spondylitis of cervicothoracic region +C0838485|T047|AB|M45.3|ICD10CM|Ankylosing spondylitis of cervicothoracic region|Ankylosing spondylitis of cervicothoracic region +C0838486|T047|PT|M45.4|ICD10CM|Ankylosing spondylitis of thoracic region|Ankylosing spondylitis of thoracic region +C0838486|T047|AB|M45.4|ICD10CM|Ankylosing spondylitis of thoracic region|Ankylosing spondylitis of thoracic region +C0838487|T047|PT|M45.5|ICD10CM|Ankylosing spondylitis of thoracolumbar region|Ankylosing spondylitis of thoracolumbar region +C0838487|T047|AB|M45.5|ICD10CM|Ankylosing spondylitis of thoracolumbar region|Ankylosing spondylitis of thoracolumbar region +C0838488|T047|AB|M45.6|ICD10CM|Ankylosing spondylitis lumbar region|Ankylosing spondylitis lumbar region +C0838488|T047|PT|M45.6|ICD10CM|Ankylosing spondylitis lumbar region|Ankylosing spondylitis lumbar region +C0838489|T047|PT|M45.7|ICD10CM|Ankylosing spondylitis of lumbosacral region|Ankylosing spondylitis of lumbosacral region +C0838489|T047|AB|M45.7|ICD10CM|Ankylosing spondylitis of lumbosacral region|Ankylosing spondylitis of lumbosacral region +C0838490|T047|AB|M45.8|ICD10CM|Ankylosing spondylitis sacral and sacrococcygeal region|Ankylosing spondylitis sacral and sacrococcygeal region +C0838490|T047|PT|M45.8|ICD10CM|Ankylosing spondylitis sacral and sacrococcygeal region|Ankylosing spondylitis sacral and sacrococcygeal region +C2895253|T047|AB|M45.9|ICD10CM|Ankylosing spondylitis of unspecified sites in spine|Ankylosing spondylitis of unspecified sites in spine +C2895253|T047|PT|M45.9|ICD10CM|Ankylosing spondylitis of unspecified sites in spine|Ankylosing spondylitis of unspecified sites in spine +C0029644|T047|HT|M46|ICD10|Other inflammatory spondylopathies|Other inflammatory spondylopathies +C0029644|T047|HT|M46|ICD10CM|Other inflammatory spondylopathies|Other inflammatory spondylopathies +C0029644|T047|AB|M46|ICD10CM|Other inflammatory spondylopathies|Other inflammatory spondylopathies +C2895254|T047|ET|M46.0|ICD10CM|Disorder of ligamentous or muscular attachments of spine|Disorder of ligamentous or muscular attachments of spine +C0152090|T047|PT|M46.0|ICD10|Spinal enthesopathy|Spinal enthesopathy +C0152090|T047|HT|M46.0|ICD10CM|Spinal enthesopathy|Spinal enthesopathy +C0152090|T047|AB|M46.0|ICD10CM|Spinal enthesopathy|Spinal enthesopathy +C0152090|T047|PT|M46.00|ICD10CM|Spinal enthesopathy, site unspecified|Spinal enthesopathy, site unspecified +C0152090|T047|AB|M46.00|ICD10CM|Spinal enthesopathy, site unspecified|Spinal enthesopathy, site unspecified +C0838493|T047|PT|M46.01|ICD10CM|Spinal enthesopathy, occipito-atlanto-axial region|Spinal enthesopathy, occipito-atlanto-axial region +C0838493|T047|AB|M46.01|ICD10CM|Spinal enthesopathy, occipito-atlanto-axial region|Spinal enthesopathy, occipito-atlanto-axial region +C0838494|T047|PT|M46.02|ICD10CM|Spinal enthesopathy, cervical region|Spinal enthesopathy, cervical region +C0838494|T047|AB|M46.02|ICD10CM|Spinal enthesopathy, cervical region|Spinal enthesopathy, cervical region +C0838495|T047|PT|M46.03|ICD10CM|Spinal enthesopathy, cervicothoracic region|Spinal enthesopathy, cervicothoracic region +C0838495|T047|AB|M46.03|ICD10CM|Spinal enthesopathy, cervicothoracic region|Spinal enthesopathy, cervicothoracic region +C0838496|T047|PT|M46.04|ICD10CM|Spinal enthesopathy, thoracic region|Spinal enthesopathy, thoracic region +C0838496|T047|AB|M46.04|ICD10CM|Spinal enthesopathy, thoracic region|Spinal enthesopathy, thoracic region +C0838497|T047|PT|M46.05|ICD10CM|Spinal enthesopathy, thoracolumbar region|Spinal enthesopathy, thoracolumbar region +C0838497|T047|AB|M46.05|ICD10CM|Spinal enthesopathy, thoracolumbar region|Spinal enthesopathy, thoracolumbar region +C0838498|T047|PT|M46.06|ICD10CM|Spinal enthesopathy, lumbar region|Spinal enthesopathy, lumbar region +C0838498|T047|AB|M46.06|ICD10CM|Spinal enthesopathy, lumbar region|Spinal enthesopathy, lumbar region +C0838499|T047|PT|M46.07|ICD10CM|Spinal enthesopathy, lumbosacral region|Spinal enthesopathy, lumbosacral region +C0838499|T047|AB|M46.07|ICD10CM|Spinal enthesopathy, lumbosacral region|Spinal enthesopathy, lumbosacral region +C0838500|T047|PT|M46.08|ICD10CM|Spinal enthesopathy, sacral and sacrococcygeal region|Spinal enthesopathy, sacral and sacrococcygeal region +C0838500|T047|AB|M46.08|ICD10CM|Spinal enthesopathy, sacral and sacrococcygeal region|Spinal enthesopathy, sacral and sacrococcygeal region +C0838492|T047|PT|M46.09|ICD10CM|Spinal enthesopathy, multiple sites in spine|Spinal enthesopathy, multiple sites in spine +C0838492|T047|AB|M46.09|ICD10CM|Spinal enthesopathy, multiple sites in spine|Spinal enthesopathy, multiple sites in spine +C0868862|T047|PT|M46.1|ICD10|Sacroiliitis, not elsewhere classified|Sacroiliitis, not elsewhere classified +C0868862|T047|PT|M46.1|ICD10CM|Sacroiliitis, not elsewhere classified|Sacroiliitis, not elsewhere classified +C0868862|T047|AB|M46.1|ICD10CM|Sacroiliitis, not elsewhere classified|Sacroiliitis, not elsewhere classified +C0452221|T047|PT|M46.2|ICD10|Osteomyelitis of vertebra|Osteomyelitis of vertebra +C0452221|T047|HT|M46.2|ICD10CM|Osteomyelitis of vertebra|Osteomyelitis of vertebra +C0452221|T047|AB|M46.2|ICD10CM|Osteomyelitis of vertebra|Osteomyelitis of vertebra +C0452221|T047|PT|M46.20|ICD10CM|Osteomyelitis of vertebra, site unspecified|Osteomyelitis of vertebra, site unspecified +C0452221|T047|AB|M46.20|ICD10CM|Osteomyelitis of vertebra, site unspecified|Osteomyelitis of vertebra, site unspecified +C0838503|T047|PT|M46.21|ICD10CM|Osteomyelitis of vertebra, occipito-atlanto-axial region|Osteomyelitis of vertebra, occipito-atlanto-axial region +C0838503|T047|AB|M46.21|ICD10CM|Osteomyelitis of vertebra, occipito-atlanto-axial region|Osteomyelitis of vertebra, occipito-atlanto-axial region +C0838504|T047|PT|M46.22|ICD10CM|Osteomyelitis of vertebra, cervical region|Osteomyelitis of vertebra, cervical region +C0838504|T047|AB|M46.22|ICD10CM|Osteomyelitis of vertebra, cervical region|Osteomyelitis of vertebra, cervical region +C0838505|T047|PT|M46.23|ICD10CM|Osteomyelitis of vertebra, cervicothoracic region|Osteomyelitis of vertebra, cervicothoracic region +C0838505|T047|AB|M46.23|ICD10CM|Osteomyelitis of vertebra, cervicothoracic region|Osteomyelitis of vertebra, cervicothoracic region +C0838506|T047|PT|M46.24|ICD10CM|Osteomyelitis of vertebra, thoracic region|Osteomyelitis of vertebra, thoracic region +C0838506|T047|AB|M46.24|ICD10CM|Osteomyelitis of vertebra, thoracic region|Osteomyelitis of vertebra, thoracic region +C0838507|T047|PT|M46.25|ICD10CM|Osteomyelitis of vertebra, thoracolumbar region|Osteomyelitis of vertebra, thoracolumbar region +C0838507|T047|AB|M46.25|ICD10CM|Osteomyelitis of vertebra, thoracolumbar region|Osteomyelitis of vertebra, thoracolumbar region +C0838508|T047|PT|M46.26|ICD10CM|Osteomyelitis of vertebra, lumbar region|Osteomyelitis of vertebra, lumbar region +C0838508|T047|AB|M46.26|ICD10CM|Osteomyelitis of vertebra, lumbar region|Osteomyelitis of vertebra, lumbar region +C0838509|T047|PT|M46.27|ICD10CM|Osteomyelitis of vertebra, lumbosacral region|Osteomyelitis of vertebra, lumbosacral region +C0838509|T047|AB|M46.27|ICD10CM|Osteomyelitis of vertebra, lumbosacral region|Osteomyelitis of vertebra, lumbosacral region +C0838510|T047|PT|M46.28|ICD10CM|Osteomyelitis of vertebra, sacral and sacrococcygeal region|Osteomyelitis of vertebra, sacral and sacrococcygeal region +C0838510|T047|AB|M46.28|ICD10CM|Osteomyelitis of vertebra, sacral and sacrococcygeal region|Osteomyelitis of vertebra, sacral and sacrococcygeal region +C0451887|T047|HT|M46.3|ICD10CM|Infection of intervertebral disc (pyogenic)|Infection of intervertebral disc (pyogenic) +C0451887|T047|AB|M46.3|ICD10CM|Infection of intervertebral disc (pyogenic)|Infection of intervertebral disc (pyogenic) +C0451887|T047|PT|M46.3|ICD10|Infection of intervertebral disc (pyogenic)|Infection of intervertebral disc (pyogenic) +C0451887|T047|AB|M46.30|ICD10CM|Infection of intervertebral disc (pyogenic), site unsp|Infection of intervertebral disc (pyogenic), site unsp +C0451887|T047|PT|M46.30|ICD10CM|Infection of intervertebral disc (pyogenic), site unspecified|Infection of intervertebral disc (pyogenic), site unspecified +C0838513|T047|PT|M46.31|ICD10CM|Infection of intervertebral disc (pyogenic), occipito-atlanto-axial region|Infection of intervertebral disc (pyogenic), occipito-atlanto-axial region +C0838513|T047|AB|M46.31|ICD10CM|Infection of intvrt disc (pyogenic), occipt-atlan-ax region|Infection of intvrt disc (pyogenic), occipt-atlan-ax region +C0838514|T047|PT|M46.32|ICD10CM|Infection of intervertebral disc (pyogenic), cervical region|Infection of intervertebral disc (pyogenic), cervical region +C0838514|T047|AB|M46.32|ICD10CM|Infection of intervertebral disc (pyogenic), cervical region|Infection of intervertebral disc (pyogenic), cervical region +C0838515|T047|PT|M46.33|ICD10CM|Infection of intervertebral disc (pyogenic), cervicothoracic region|Infection of intervertebral disc (pyogenic), cervicothoracic region +C0838515|T047|AB|M46.33|ICD10CM|Infection of intvrt disc (pyogenic), cervicothor region|Infection of intvrt disc (pyogenic), cervicothor region +C0838516|T047|PT|M46.34|ICD10CM|Infection of intervertebral disc (pyogenic), thoracic region|Infection of intervertebral disc (pyogenic), thoracic region +C0838516|T047|AB|M46.34|ICD10CM|Infection of intervertebral disc (pyogenic), thoracic region|Infection of intervertebral disc (pyogenic), thoracic region +C0838517|T047|PT|M46.35|ICD10CM|Infection of intervertebral disc (pyogenic), thoracolumbar region|Infection of intervertebral disc (pyogenic), thoracolumbar region +C0838517|T047|AB|M46.35|ICD10CM|Infection of intvrt disc (pyogenic), thoracolumbar region|Infection of intvrt disc (pyogenic), thoracolumbar region +C0838518|T047|PT|M46.36|ICD10CM|Infection of intervertebral disc (pyogenic), lumbar region|Infection of intervertebral disc (pyogenic), lumbar region +C0838518|T047|AB|M46.36|ICD10CM|Infection of intervertebral disc (pyogenic), lumbar region|Infection of intervertebral disc (pyogenic), lumbar region +C0838519|T047|PT|M46.37|ICD10CM|Infection of intervertebral disc (pyogenic), lumbosacral region|Infection of intervertebral disc (pyogenic), lumbosacral region +C0838519|T047|AB|M46.37|ICD10CM|Infection of intvrt disc (pyogenic), lumbosacral region|Infection of intvrt disc (pyogenic), lumbosacral region +C0838520|T047|PT|M46.38|ICD10CM|Infection of intervertebral disc (pyogenic), sacral and sacrococcygeal region|Infection of intervertebral disc (pyogenic), sacral and sacrococcygeal region +C0838520|T047|AB|M46.38|ICD10CM|Infection of intvrt disc (pyogenic), sacr/sacrocygl region|Infection of intvrt disc (pyogenic), sacr/sacrocygl region +C0838512|T047|PT|M46.39|ICD10CM|Infection of intervertebral disc (pyogenic), multiple sites in spine|Infection of intervertebral disc (pyogenic), multiple sites in spine +C0838512|T047|AB|M46.39|ICD10CM|Infection of intvrt disc (pyogenic), multiple sites in spine|Infection of intvrt disc (pyogenic), multiple sites in spine +C0012624|T047|HT|M46.4|ICD10CM|Discitis, unspecified|Discitis, unspecified +C0012624|T047|AB|M46.4|ICD10CM|Discitis, unspecified|Discitis, unspecified +C0012624|T047|PT|M46.4|ICD10|Discitis, unspecified|Discitis, unspecified +C0838531|T047|AB|M46.40|ICD10CM|Discitis, unspecified, site unspecified|Discitis, unspecified, site unspecified +C0838531|T047|PT|M46.40|ICD10CM|Discitis, unspecified, site unspecified|Discitis, unspecified, site unspecified +C0838523|T047|AB|M46.41|ICD10CM|Discitis, unspecified, occipito-atlanto-axial region|Discitis, unspecified, occipito-atlanto-axial region +C0838523|T047|PT|M46.41|ICD10CM|Discitis, unspecified, occipito-atlanto-axial region|Discitis, unspecified, occipito-atlanto-axial region +C0838524|T047|AB|M46.42|ICD10CM|Discitis, unspecified, cervical region|Discitis, unspecified, cervical region +C0838524|T047|PT|M46.42|ICD10CM|Discitis, unspecified, cervical region|Discitis, unspecified, cervical region +C0838525|T047|AB|M46.43|ICD10CM|Discitis, unspecified, cervicothoracic region|Discitis, unspecified, cervicothoracic region +C0838525|T047|PT|M46.43|ICD10CM|Discitis, unspecified, cervicothoracic region|Discitis, unspecified, cervicothoracic region +C0838526|T047|AB|M46.44|ICD10CM|Discitis, unspecified, thoracic region|Discitis, unspecified, thoracic region +C0838526|T047|PT|M46.44|ICD10CM|Discitis, unspecified, thoracic region|Discitis, unspecified, thoracic region +C0838527|T047|AB|M46.45|ICD10CM|Discitis, unspecified, thoracolumbar region|Discitis, unspecified, thoracolumbar region +C0838527|T047|PT|M46.45|ICD10CM|Discitis, unspecified, thoracolumbar region|Discitis, unspecified, thoracolumbar region +C0838528|T047|AB|M46.46|ICD10CM|Discitis, unspecified, lumbar region|Discitis, unspecified, lumbar region +C0838528|T047|PT|M46.46|ICD10CM|Discitis, unspecified, lumbar region|Discitis, unspecified, lumbar region +C0838529|T047|AB|M46.47|ICD10CM|Discitis, unspecified, lumbosacral region|Discitis, unspecified, lumbosacral region +C0838529|T047|PT|M46.47|ICD10CM|Discitis, unspecified, lumbosacral region|Discitis, unspecified, lumbosacral region +C0838530|T047|AB|M46.48|ICD10CM|Discitis, unspecified, sacral and sacrococcygeal region|Discitis, unspecified, sacral and sacrococcygeal region +C0838530|T047|PT|M46.48|ICD10CM|Discitis, unspecified, sacral and sacrococcygeal region|Discitis, unspecified, sacral and sacrococcygeal region +C0838522|T047|AB|M46.49|ICD10CM|Discitis, unspecified, multiple sites in spine|Discitis, unspecified, multiple sites in spine +C0838522|T047|PT|M46.49|ICD10CM|Discitis, unspecified, multiple sites in spine|Discitis, unspecified, multiple sites in spine +C0477612|T047|HT|M46.5|ICD10CM|Other infective spondylopathies|Other infective spondylopathies +C0477612|T047|AB|M46.5|ICD10CM|Other infective spondylopathies|Other infective spondylopathies +C0477612|T047|PT|M46.5|ICD10|Other infective spondylopathies|Other infective spondylopathies +C0477612|T047|PT|M46.50|ICD10CM|Other infective spondylopathies, site unspecified|Other infective spondylopathies, site unspecified +C0477612|T047|AB|M46.50|ICD10CM|Other infective spondylopathies, site unspecified|Other infective spondylopathies, site unspecified +C0838533|T047|AB|M46.51|ICD10CM|Oth infective spondylopathies, occipito-atlanto-axial region|Oth infective spondylopathies, occipito-atlanto-axial region +C0838533|T047|PT|M46.51|ICD10CM|Other infective spondylopathies, occipito-atlanto-axial region|Other infective spondylopathies, occipito-atlanto-axial region +C0838534|T047|PT|M46.52|ICD10CM|Other infective spondylopathies, cervical region|Other infective spondylopathies, cervical region +C0838534|T047|AB|M46.52|ICD10CM|Other infective spondylopathies, cervical region|Other infective spondylopathies, cervical region +C0838535|T047|PT|M46.53|ICD10CM|Other infective spondylopathies, cervicothoracic region|Other infective spondylopathies, cervicothoracic region +C0838535|T047|AB|M46.53|ICD10CM|Other infective spondylopathies, cervicothoracic region|Other infective spondylopathies, cervicothoracic region +C0838536|T047|PT|M46.54|ICD10CM|Other infective spondylopathies, thoracic region|Other infective spondylopathies, thoracic region +C0838536|T047|AB|M46.54|ICD10CM|Other infective spondylopathies, thoracic region|Other infective spondylopathies, thoracic region +C0838537|T047|PT|M46.55|ICD10CM|Other infective spondylopathies, thoracolumbar region|Other infective spondylopathies, thoracolumbar region +C0838537|T047|AB|M46.55|ICD10CM|Other infective spondylopathies, thoracolumbar region|Other infective spondylopathies, thoracolumbar region +C0838538|T047|PT|M46.56|ICD10CM|Other infective spondylopathies, lumbar region|Other infective spondylopathies, lumbar region +C0838538|T047|AB|M46.56|ICD10CM|Other infective spondylopathies, lumbar region|Other infective spondylopathies, lumbar region +C0838539|T047|PT|M46.57|ICD10CM|Other infective spondylopathies, lumbosacral region|Other infective spondylopathies, lumbosacral region +C0838539|T047|AB|M46.57|ICD10CM|Other infective spondylopathies, lumbosacral region|Other infective spondylopathies, lumbosacral region +C0838540|T047|AB|M46.58|ICD10CM|Oth infective spondylopathies, sacr/sacrocygl region|Oth infective spondylopathies, sacr/sacrocygl region +C0838540|T047|PT|M46.58|ICD10CM|Other infective spondylopathies, sacral and sacrococcygeal region|Other infective spondylopathies, sacral and sacrococcygeal region +C0838532|T047|PT|M46.59|ICD10CM|Other infective spondylopathies, multiple sites in spine|Other infective spondylopathies, multiple sites in spine +C0838532|T047|AB|M46.59|ICD10CM|Other infective spondylopathies, multiple sites in spine|Other infective spondylopathies, multiple sites in spine +C0477613|T047|HT|M46.8|ICD10CM|Other specified inflammatory spondylopathies|Other specified inflammatory spondylopathies +C0477613|T047|AB|M46.8|ICD10CM|Other specified inflammatory spondylopathies|Other specified inflammatory spondylopathies +C0477613|T047|PT|M46.8|ICD10|Other specified inflammatory spondylopathies|Other specified inflammatory spondylopathies +C0838551|T047|AB|M46.80|ICD10CM|Oth inflammatory spondylopathies, site unspecified|Oth inflammatory spondylopathies, site unspecified +C0838551|T047|PT|M46.80|ICD10CM|Other specified inflammatory spondylopathies, site unspecified|Other specified inflammatory spondylopathies, site unspecified +C0838543|T047|AB|M46.81|ICD10CM|Oth inflammatory spondylopathies, occipt-atlan-ax region|Oth inflammatory spondylopathies, occipt-atlan-ax region +C0838543|T047|PT|M46.81|ICD10CM|Other specified inflammatory spondylopathies, occipito-atlanto-axial region|Other specified inflammatory spondylopathies, occipito-atlanto-axial region +C0838544|T047|AB|M46.82|ICD10CM|Oth inflammatory spondylopathies, cervical region|Oth inflammatory spondylopathies, cervical region +C0838544|T047|PT|M46.82|ICD10CM|Other specified inflammatory spondylopathies, cervical region|Other specified inflammatory spondylopathies, cervical region +C0838545|T047|AB|M46.83|ICD10CM|Oth inflammatory spondylopathies, cervicothoracic region|Oth inflammatory spondylopathies, cervicothoracic region +C0838545|T047|PT|M46.83|ICD10CM|Other specified inflammatory spondylopathies, cervicothoracic region|Other specified inflammatory spondylopathies, cervicothoracic region +C0838546|T047|AB|M46.84|ICD10CM|Oth inflammatory spondylopathies, thoracic region|Oth inflammatory spondylopathies, thoracic region +C0838546|T047|PT|M46.84|ICD10CM|Other specified inflammatory spondylopathies, thoracic region|Other specified inflammatory spondylopathies, thoracic region +C0838547|T047|AB|M46.85|ICD10CM|Oth inflammatory spondylopathies, thoracolumbar region|Oth inflammatory spondylopathies, thoracolumbar region +C0838547|T047|PT|M46.85|ICD10CM|Other specified inflammatory spondylopathies, thoracolumbar region|Other specified inflammatory spondylopathies, thoracolumbar region +C0838548|T047|PT|M46.86|ICD10CM|Other specified inflammatory spondylopathies, lumbar region|Other specified inflammatory spondylopathies, lumbar region +C0838548|T047|AB|M46.86|ICD10CM|Other specified inflammatory spondylopathies, lumbar region|Other specified inflammatory spondylopathies, lumbar region +C0838549|T047|AB|M46.87|ICD10CM|Oth inflammatory spondylopathies, lumbosacral region|Oth inflammatory spondylopathies, lumbosacral region +C0838549|T047|PT|M46.87|ICD10CM|Other specified inflammatory spondylopathies, lumbosacral region|Other specified inflammatory spondylopathies, lumbosacral region +C0838550|T047|AB|M46.88|ICD10CM|Oth inflammatory spondylopathies, sacr/sacrocygl region|Oth inflammatory spondylopathies, sacr/sacrocygl region +C0838550|T047|PT|M46.88|ICD10CM|Other specified inflammatory spondylopathies, sacral and sacrococcygeal region|Other specified inflammatory spondylopathies, sacral and sacrococcygeal region +C0838542|T047|AB|M46.89|ICD10CM|Oth inflammatory spondylopathies, multiple sites in spine|Oth inflammatory spondylopathies, multiple sites in spine +C0838542|T047|PT|M46.89|ICD10CM|Other specified inflammatory spondylopathies, multiple sites in spine|Other specified inflammatory spondylopathies, multiple sites in spine +C0038012|T047|PT|M46.9|ICD10|Inflammatory spondylopathy, unspecified|Inflammatory spondylopathy, unspecified +C0038012|T047|HT|M46.9|ICD10CM|Unspecified inflammatory spondylopathy|Unspecified inflammatory spondylopathy +C0038012|T047|AB|M46.9|ICD10CM|Unspecified inflammatory spondylopathy|Unspecified inflammatory spondylopathy +C0838561|T047|PT|M46.90|ICD10CM|Unspecified inflammatory spondylopathy, site unspecified|Unspecified inflammatory spondylopathy, site unspecified +C0838561|T047|AB|M46.90|ICD10CM|Unspecified inflammatory spondylopathy, site unspecified|Unspecified inflammatory spondylopathy, site unspecified +C0838553|T047|AB|M46.91|ICD10CM|Unsp inflammatory spondylopathy, occipt-atlan-ax region|Unsp inflammatory spondylopathy, occipt-atlan-ax region +C0838553|T047|PT|M46.91|ICD10CM|Unspecified inflammatory spondylopathy, occipito-atlanto-axial region|Unspecified inflammatory spondylopathy, occipito-atlanto-axial region +C0838554|T047|PT|M46.92|ICD10CM|Unspecified inflammatory spondylopathy, cervical region|Unspecified inflammatory spondylopathy, cervical region +C0838554|T047|AB|M46.92|ICD10CM|Unspecified inflammatory spondylopathy, cervical region|Unspecified inflammatory spondylopathy, cervical region +C0838555|T047|AB|M46.93|ICD10CM|Unsp inflammatory spondylopathy, cervicothoracic region|Unsp inflammatory spondylopathy, cervicothoracic region +C0838555|T047|PT|M46.93|ICD10CM|Unspecified inflammatory spondylopathy, cervicothoracic region|Unspecified inflammatory spondylopathy, cervicothoracic region +C0838556|T047|PT|M46.94|ICD10CM|Unspecified inflammatory spondylopathy, thoracic region|Unspecified inflammatory spondylopathy, thoracic region +C0838556|T047|AB|M46.94|ICD10CM|Unspecified inflammatory spondylopathy, thoracic region|Unspecified inflammatory spondylopathy, thoracic region +C0838557|T047|PT|M46.95|ICD10CM|Unspecified inflammatory spondylopathy, thoracolumbar region|Unspecified inflammatory spondylopathy, thoracolumbar region +C0838557|T047|AB|M46.95|ICD10CM|Unspecified inflammatory spondylopathy, thoracolumbar region|Unspecified inflammatory spondylopathy, thoracolumbar region +C0838558|T047|PT|M46.96|ICD10CM|Unspecified inflammatory spondylopathy, lumbar region|Unspecified inflammatory spondylopathy, lumbar region +C0838558|T047|AB|M46.96|ICD10CM|Unspecified inflammatory spondylopathy, lumbar region|Unspecified inflammatory spondylopathy, lumbar region +C0838559|T047|PT|M46.97|ICD10CM|Unspecified inflammatory spondylopathy, lumbosacral region|Unspecified inflammatory spondylopathy, lumbosacral region +C0838559|T047|AB|M46.97|ICD10CM|Unspecified inflammatory spondylopathy, lumbosacral region|Unspecified inflammatory spondylopathy, lumbosacral region +C0838560|T047|AB|M46.98|ICD10CM|Unsp inflammatory spondylopathy, sacr/sacrocygl region|Unsp inflammatory spondylopathy, sacr/sacrocygl region +C0838560|T047|PT|M46.98|ICD10CM|Unspecified inflammatory spondylopathy, sacral and sacrococcygeal region|Unspecified inflammatory spondylopathy, sacral and sacrococcygeal region +C0838552|T047|AB|M46.99|ICD10CM|Unsp inflammatory spondylopathy, multiple sites in spine|Unsp inflammatory spondylopathy, multiple sites in spine +C0838552|T047|PT|M46.99|ICD10CM|Unspecified inflammatory spondylopathy, multiple sites in spine|Unspecified inflammatory spondylopathy, multiple sites in spine +C4290224|T047|ET|M47|ICD10CM|arthrosis or osteoarthritis of spine|arthrosis or osteoarthritis of spine +C0847415|T047|ET|M47|ICD10CM|degeneration of facet joints|degeneration of facet joints +C0038019|T047|HT|M47|ICD10CM|Spondylosis|Spondylosis +C0038019|T047|AB|M47|ICD10CM|Spondylosis|Spondylosis +C0038019|T047|HT|M47|ICD10|Spondylosis|Spondylosis +C0452159|T047|PT|M47.0|ICD10|Anterior spinal and vertebral artery compression syndromes|Anterior spinal and vertebral artery compression syndromes +C0452159|T047|HT|M47.0|ICD10CM|Anterior spinal and vertebral artery compression syndromes|Anterior spinal and vertebral artery compression syndromes +C0452159|T047|AB|M47.0|ICD10CM|Anterior spinal and vertebral artery compression syndromes|Anterior spinal and vertebral artery compression syndromes +C0263855|T047|AB|M47.01|ICD10CM|Anterior spinal artery compression syndromes|Anterior spinal artery compression syndromes +C0263855|T047|HT|M47.01|ICD10CM|Anterior spinal artery compression syndromes|Anterior spinal artery compression syndromes +C2895256|T047|PT|M47.011|ICD10CM|Anterior spinal artery compression syndromes, occipito-atlanto-axial region|Anterior spinal artery compression syndromes, occipito-atlanto-axial region +C2895256|T047|AB|M47.011|ICD10CM|Anterior spinal artery comprsn synd, occipt-atlan-ax region|Anterior spinal artery comprsn synd, occipt-atlan-ax region +C2895257|T047|PT|M47.012|ICD10CM|Anterior spinal artery compression syndromes, cervical region|Anterior spinal artery compression syndromes, cervical region +C2895257|T047|AB|M47.012|ICD10CM|Anterior spinal artery comprsn syndromes, cervical region|Anterior spinal artery comprsn syndromes, cervical region +C2895258|T047|PT|M47.013|ICD10CM|Anterior spinal artery compression syndromes, cervicothoracic region|Anterior spinal artery compression syndromes, cervicothoracic region +C2895258|T047|AB|M47.013|ICD10CM|Anterior spinal artery comprsn syndromes, cervicothor region|Anterior spinal artery comprsn syndromes, cervicothor region +C2895259|T047|PT|M47.014|ICD10CM|Anterior spinal artery compression syndromes, thoracic region|Anterior spinal artery compression syndromes, thoracic region +C2895259|T047|AB|M47.014|ICD10CM|Anterior spinal artery comprsn syndromes, thoracic region|Anterior spinal artery comprsn syndromes, thoracic region +C2895260|T047|PT|M47.015|ICD10CM|Anterior spinal artery compression syndromes, thoracolumbar region|Anterior spinal artery compression syndromes, thoracolumbar region +C2895260|T047|AB|M47.015|ICD10CM|Anterior spinal artery comprsn syndromes, thoracolum region|Anterior spinal artery comprsn syndromes, thoracolum region +C2895261|T047|AB|M47.016|ICD10CM|Anterior spinal artery compression syndromes, lumbar region|Anterior spinal artery compression syndromes, lumbar region +C2895261|T047|PT|M47.016|ICD10CM|Anterior spinal artery compression syndromes, lumbar region|Anterior spinal artery compression syndromes, lumbar region +C2895262|T047|AB|M47.019|ICD10CM|Anterior spinal artery compression syndromes, site unsp|Anterior spinal artery compression syndromes, site unsp +C2895262|T047|PT|M47.019|ICD10CM|Anterior spinal artery compression syndromes, site unspecified|Anterior spinal artery compression syndromes, site unspecified +C0263856|T047|AB|M47.02|ICD10CM|Vertebral artery compression syndromes|Vertebral artery compression syndromes +C0263856|T047|HT|M47.02|ICD10CM|Vertebral artery compression syndromes|Vertebral artery compression syndromes +C2895263|T047|AB|M47.021|ICD10CM|Verteb art compression syndromes, occipt-atlan-ax region|Verteb art compression syndromes, occipt-atlan-ax region +C2895263|T047|PT|M47.021|ICD10CM|Vertebral artery compression syndromes, occipito-atlanto-axial region|Vertebral artery compression syndromes, occipito-atlanto-axial region +C2895264|T047|AB|M47.022|ICD10CM|Vertebral artery compression syndromes, cervical region|Vertebral artery compression syndromes, cervical region +C2895264|T047|PT|M47.022|ICD10CM|Vertebral artery compression syndromes, cervical region|Vertebral artery compression syndromes, cervical region +C0263856|T047|AB|M47.029|ICD10CM|Vertebral artery compression syndromes, site unspecified|Vertebral artery compression syndromes, site unspecified +C0263856|T047|PT|M47.029|ICD10CM|Vertebral artery compression syndromes, site unspecified|Vertebral artery compression syndromes, site unspecified +C0477614|T047|HT|M47.1|ICD10CM|Other spondylosis with myelopathy|Other spondylosis with myelopathy +C0477614|T047|AB|M47.1|ICD10CM|Other spondylosis with myelopathy|Other spondylosis with myelopathy +C0477614|T047|PT|M47.1|ICD10|Other spondylosis with myelopathy|Other spondylosis with myelopathy +C0263853|T047|ET|M47.1|ICD10CM|Spondylogenic compression of spinal cord|Spondylogenic compression of spinal cord +C0477614|T047|PT|M47.10|ICD10CM|Other spondylosis with myelopathy, site unspecified|Other spondylosis with myelopathy, site unspecified +C0477614|T047|AB|M47.10|ICD10CM|Other spondylosis with myelopathy, site unspecified|Other spondylosis with myelopathy, site unspecified +C0838573|T047|AB|M47.11|ICD10CM|Oth spondylosis w myelopathy, occipito-atlanto-axial region|Oth spondylosis w myelopathy, occipito-atlanto-axial region +C0838573|T047|PT|M47.11|ICD10CM|Other spondylosis with myelopathy, occipito-atlanto-axial region|Other spondylosis with myelopathy, occipito-atlanto-axial region +C0838574|T047|PT|M47.12|ICD10CM|Other spondylosis with myelopathy, cervical region|Other spondylosis with myelopathy, cervical region +C0838574|T047|AB|M47.12|ICD10CM|Other spondylosis with myelopathy, cervical region|Other spondylosis with myelopathy, cervical region +C0838575|T047|PT|M47.13|ICD10CM|Other spondylosis with myelopathy, cervicothoracic region|Other spondylosis with myelopathy, cervicothoracic region +C0838575|T047|AB|M47.13|ICD10CM|Other spondylosis with myelopathy, cervicothoracic region|Other spondylosis with myelopathy, cervicothoracic region +C0838576|T047|PT|M47.14|ICD10CM|Other spondylosis with myelopathy, thoracic region|Other spondylosis with myelopathy, thoracic region +C0838576|T047|AB|M47.14|ICD10CM|Other spondylosis with myelopathy, thoracic region|Other spondylosis with myelopathy, thoracic region +C0838577|T047|PT|M47.15|ICD10CM|Other spondylosis with myelopathy, thoracolumbar region|Other spondylosis with myelopathy, thoracolumbar region +C0838577|T047|AB|M47.15|ICD10CM|Other spondylosis with myelopathy, thoracolumbar region|Other spondylosis with myelopathy, thoracolumbar region +C0838578|T047|PT|M47.16|ICD10CM|Other spondylosis with myelopathy, lumbar region|Other spondylosis with myelopathy, lumbar region +C0838578|T047|AB|M47.16|ICD10CM|Other spondylosis with myelopathy, lumbar region|Other spondylosis with myelopathy, lumbar region +C0477615|T047|HT|M47.2|ICD10CM|Other spondylosis with radiculopathy|Other spondylosis with radiculopathy +C0477615|T047|AB|M47.2|ICD10CM|Other spondylosis with radiculopathy|Other spondylosis with radiculopathy +C0477615|T047|PT|M47.2|ICD10|Other spondylosis with radiculopathy|Other spondylosis with radiculopathy +C0477615|T047|PT|M47.20|ICD10CM|Other spondylosis with radiculopathy, site unspecified|Other spondylosis with radiculopathy, site unspecified +C0477615|T047|AB|M47.20|ICD10CM|Other spondylosis with radiculopathy, site unspecified|Other spondylosis with radiculopathy, site unspecified +C0838583|T047|AB|M47.21|ICD10CM|Oth spondylosis w radiculopathy, occipt-atlan-ax region|Oth spondylosis w radiculopathy, occipt-atlan-ax region +C0838583|T047|PT|M47.21|ICD10CM|Other spondylosis with radiculopathy, occipito-atlanto-axial region|Other spondylosis with radiculopathy, occipito-atlanto-axial region +C0838584|T047|PT|M47.22|ICD10CM|Other spondylosis with radiculopathy, cervical region|Other spondylosis with radiculopathy, cervical region +C0838584|T047|AB|M47.22|ICD10CM|Other spondylosis with radiculopathy, cervical region|Other spondylosis with radiculopathy, cervical region +C0838585|T047|PT|M47.23|ICD10CM|Other spondylosis with radiculopathy, cervicothoracic region|Other spondylosis with radiculopathy, cervicothoracic region +C0838585|T047|AB|M47.23|ICD10CM|Other spondylosis with radiculopathy, cervicothoracic region|Other spondylosis with radiculopathy, cervicothoracic region +C0838586|T047|PT|M47.24|ICD10CM|Other spondylosis with radiculopathy, thoracic region|Other spondylosis with radiculopathy, thoracic region +C0838586|T047|AB|M47.24|ICD10CM|Other spondylosis with radiculopathy, thoracic region|Other spondylosis with radiculopathy, thoracic region +C0838587|T047|PT|M47.25|ICD10CM|Other spondylosis with radiculopathy, thoracolumbar region|Other spondylosis with radiculopathy, thoracolumbar region +C0838587|T047|AB|M47.25|ICD10CM|Other spondylosis with radiculopathy, thoracolumbar region|Other spondylosis with radiculopathy, thoracolumbar region +C0838588|T047|PT|M47.26|ICD10CM|Other spondylosis with radiculopathy, lumbar region|Other spondylosis with radiculopathy, lumbar region +C0838588|T047|AB|M47.26|ICD10CM|Other spondylosis with radiculopathy, lumbar region|Other spondylosis with radiculopathy, lumbar region +C0838589|T047|PT|M47.27|ICD10CM|Other spondylosis with radiculopathy, lumbosacral region|Other spondylosis with radiculopathy, lumbosacral region +C0838589|T047|AB|M47.27|ICD10CM|Other spondylosis with radiculopathy, lumbosacral region|Other spondylosis with radiculopathy, lumbosacral region +C0838590|T047|AB|M47.28|ICD10CM|Oth spondylosis w radiculopathy, sacr/sacrocygl region|Oth spondylosis w radiculopathy, sacr/sacrocygl region +C0838590|T047|PT|M47.28|ICD10CM|Other spondylosis with radiculopathy, sacral and sacrococcygeal region|Other spondylosis with radiculopathy, sacral and sacrococcygeal region +C0477616|T047|HT|M47.8|ICD10CM|Other spondylosis|Other spondylosis +C0477616|T047|AB|M47.8|ICD10CM|Other spondylosis|Other spondylosis +C0477616|T047|PT|M47.8|ICD10|Other spondylosis|Other spondylosis +C2895265|T047|HT|M47.81|ICD10CM|Spondylosis without myelopathy or radiculopathy|Spondylosis without myelopathy or radiculopathy +C2895265|T047|AB|M47.81|ICD10CM|Spondylosis without myelopathy or radiculopathy|Spondylosis without myelopathy or radiculopathy +C2895266|T047|PT|M47.811|ICD10CM|Spondylosis without myelopathy or radiculopathy, occipito-atlanto-axial region|Spondylosis without myelopathy or radiculopathy, occipito-atlanto-axial region +C2895266|T047|AB|M47.811|ICD10CM|Spondyls w/o myelpath or radiculopathy, occipt-atlan-ax rgn|Spondyls w/o myelpath or radiculopathy, occipt-atlan-ax rgn +C2895267|T047|AB|M47.812|ICD10CM|Spondylosis w/o myelopathy or radiculopathy, cervical region|Spondylosis w/o myelopathy or radiculopathy, cervical region +C2895267|T047|PT|M47.812|ICD10CM|Spondylosis without myelopathy or radiculopathy, cervical region|Spondylosis without myelopathy or radiculopathy, cervical region +C2895268|T047|PT|M47.813|ICD10CM|Spondylosis without myelopathy or radiculopathy, cervicothoracic region|Spondylosis without myelopathy or radiculopathy, cervicothoracic region +C2895268|T047|AB|M47.813|ICD10CM|Spondyls w/o myelopathy or radiculopathy, cervicothor region|Spondyls w/o myelopathy or radiculopathy, cervicothor region +C2895269|T047|AB|M47.814|ICD10CM|Spondylosis w/o myelopathy or radiculopathy, thoracic region|Spondylosis w/o myelopathy or radiculopathy, thoracic region +C2895269|T047|PT|M47.814|ICD10CM|Spondylosis without myelopathy or radiculopathy, thoracic region|Spondylosis without myelopathy or radiculopathy, thoracic region +C2895270|T047|PT|M47.815|ICD10CM|Spondylosis without myelopathy or radiculopathy, thoracolumbar region|Spondylosis without myelopathy or radiculopathy, thoracolumbar region +C2895270|T047|AB|M47.815|ICD10CM|Spondyls w/o myelopathy or radiculopathy, thoracolum region|Spondyls w/o myelopathy or radiculopathy, thoracolum region +C2895271|T047|AB|M47.816|ICD10CM|Spondylosis w/o myelopathy or radiculopathy, lumbar region|Spondylosis w/o myelopathy or radiculopathy, lumbar region +C2895271|T047|PT|M47.816|ICD10CM|Spondylosis without myelopathy or radiculopathy, lumbar region|Spondylosis without myelopathy or radiculopathy, lumbar region +C2895272|T047|PT|M47.817|ICD10CM|Spondylosis without myelopathy or radiculopathy, lumbosacral region|Spondylosis without myelopathy or radiculopathy, lumbosacral region +C2895272|T047|AB|M47.817|ICD10CM|Spondyls w/o myelopathy or radiculopathy, lumbosacr region|Spondyls w/o myelopathy or radiculopathy, lumbosacr region +C2895273|T047|PT|M47.818|ICD10CM|Spondylosis without myelopathy or radiculopathy, sacral and sacrococcygeal region|Spondylosis without myelopathy or radiculopathy, sacral and sacrococcygeal region +C2895273|T047|AB|M47.818|ICD10CM|Spondyls w/o myelpath or radiculopathy, sacr/sacrocygl rgn|Spondyls w/o myelpath or radiculopathy, sacr/sacrocygl rgn +C2895274|T047|AB|M47.819|ICD10CM|Spondylosis without myelopathy or radiculopathy, site unsp|Spondylosis without myelopathy or radiculopathy, site unsp +C2895274|T047|PT|M47.819|ICD10CM|Spondylosis without myelopathy or radiculopathy, site unspecified|Spondylosis without myelopathy or radiculopathy, site unspecified +C0477616|T047|HT|M47.89|ICD10CM|Other spondylosis|Other spondylosis +C0477616|T047|AB|M47.89|ICD10CM|Other spondylosis|Other spondylosis +C0838593|T047|PT|M47.891|ICD10CM|Other spondylosis, occipito-atlanto-axial region|Other spondylosis, occipito-atlanto-axial region +C0838593|T047|AB|M47.891|ICD10CM|Other spondylosis, occipito-atlanto-axial region|Other spondylosis, occipito-atlanto-axial region +C0838594|T047|PT|M47.892|ICD10CM|Other spondylosis, cervical region|Other spondylosis, cervical region +C0838594|T047|AB|M47.892|ICD10CM|Other spondylosis, cervical region|Other spondylosis, cervical region +C0838595|T047|PT|M47.893|ICD10CM|Other spondylosis, cervicothoracic region|Other spondylosis, cervicothoracic region +C0838595|T047|AB|M47.893|ICD10CM|Other spondylosis, cervicothoracic region|Other spondylosis, cervicothoracic region +C0838596|T047|PT|M47.894|ICD10CM|Other spondylosis, thoracic region|Other spondylosis, thoracic region +C0838596|T047|AB|M47.894|ICD10CM|Other spondylosis, thoracic region|Other spondylosis, thoracic region +C0838597|T047|PT|M47.895|ICD10CM|Other spondylosis, thoracolumbar region|Other spondylosis, thoracolumbar region +C0838597|T047|AB|M47.895|ICD10CM|Other spondylosis, thoracolumbar region|Other spondylosis, thoracolumbar region +C0838598|T047|PT|M47.896|ICD10CM|Other spondylosis, lumbar region|Other spondylosis, lumbar region +C0838598|T047|AB|M47.896|ICD10CM|Other spondylosis, lumbar region|Other spondylosis, lumbar region +C0838599|T047|PT|M47.897|ICD10CM|Other spondylosis, lumbosacral region|Other spondylosis, lumbosacral region +C0838599|T047|AB|M47.897|ICD10CM|Other spondylosis, lumbosacral region|Other spondylosis, lumbosacral region +C0838600|T047|PT|M47.898|ICD10CM|Other spondylosis, sacral and sacrococcygeal region|Other spondylosis, sacral and sacrococcygeal region +C0838600|T047|AB|M47.898|ICD10CM|Other spondylosis, sacral and sacrococcygeal region|Other spondylosis, sacral and sacrococcygeal region +C0477616|T047|PT|M47.899|ICD10CM|Other spondylosis, site unspecified|Other spondylosis, site unspecified +C0477616|T047|AB|M47.899|ICD10CM|Other spondylosis, site unspecified|Other spondylosis, site unspecified +C0038019|T047|PT|M47.9|ICD10CM|Spondylosis, unspecified|Spondylosis, unspecified +C0038019|T047|AB|M47.9|ICD10CM|Spondylosis, unspecified|Spondylosis, unspecified +C0038019|T047|PT|M47.9|ICD10|Spondylosis, unspecified|Spondylosis, unspecified +C0494962|T047|AB|M48|ICD10CM|Other spondylopathies|Other spondylopathies +C0494962|T047|HT|M48|ICD10CM|Other spondylopathies|Other spondylopathies +C0494962|T047|HT|M48|ICD10|Other spondylopathies|Other spondylopathies +C1392150|T047|ET|M48.0|ICD10CM|Caudal stenosis|Caudal stenosis +C0037944|T020|PT|M48.0|ICD10|Spinal stenosis|Spinal stenosis +C0037944|T020|HT|M48.0|ICD10CM|Spinal stenosis|Spinal stenosis +C0037944|T020|AB|M48.0|ICD10CM|Spinal stenosis|Spinal stenosis +C0037944|T020|PT|M48.00|ICD10CM|Spinal stenosis, site unspecified|Spinal stenosis, site unspecified +C0037944|T020|AB|M48.00|ICD10CM|Spinal stenosis, site unspecified|Spinal stenosis, site unspecified +C0838613|T047|PT|M48.01|ICD10CM|Spinal stenosis, occipito-atlanto-axial region|Spinal stenosis, occipito-atlanto-axial region +C0838613|T047|AB|M48.01|ICD10CM|Spinal stenosis, occipito-atlanto-axial region|Spinal stenosis, occipito-atlanto-axial region +C0158280|T047|PT|M48.02|ICD10CM|Spinal stenosis, cervical region|Spinal stenosis, cervical region +C0158280|T047|AB|M48.02|ICD10CM|Spinal stenosis, cervical region|Spinal stenosis, cervical region +C0838614|T047|PT|M48.03|ICD10CM|Spinal stenosis, cervicothoracic region|Spinal stenosis, cervicothoracic region +C0838614|T047|AB|M48.03|ICD10CM|Spinal stenosis, cervicothoracic region|Spinal stenosis, cervicothoracic region +C0158287|T047|PT|M48.04|ICD10CM|Spinal stenosis, thoracic region|Spinal stenosis, thoracic region +C0158287|T047|AB|M48.04|ICD10CM|Spinal stenosis, thoracic region|Spinal stenosis, thoracic region +C0838615|T047|PT|M48.05|ICD10CM|Spinal stenosis, thoracolumbar region|Spinal stenosis, thoracolumbar region +C0838615|T047|AB|M48.05|ICD10CM|Spinal stenosis, thoracolumbar region|Spinal stenosis, thoracolumbar region +C0158288|T047|AB|M48.06|ICD10CM|Spinal stenosis, lumbar region|Spinal stenosis, lumbar region +C0158288|T047|HT|M48.06|ICD10CM|Spinal stenosis, lumbar region|Spinal stenosis, lumbar region +C0158288|T047|ET|M48.061|ICD10CM|Spinal stenosis, lumbar region NOS|Spinal stenosis, lumbar region NOS +C2921108|T047|AB|M48.061|ICD10CM|Spinal stenosis, lumbar region without neurogenic claud|Spinal stenosis, lumbar region without neurogenic claud +C2921108|T047|PT|M48.061|ICD10CM|Spinal stenosis, lumbar region without neurogenic claudication|Spinal stenosis, lumbar region without neurogenic claudication +C2921109|T047|AB|M48.062|ICD10CM|Spinal stenosis, lumbar region with neurogenic claudication|Spinal stenosis, lumbar region with neurogenic claudication +C2921109|T047|PT|M48.062|ICD10CM|Spinal stenosis, lumbar region with neurogenic claudication|Spinal stenosis, lumbar region with neurogenic claudication +C0838616|T047|PT|M48.07|ICD10CM|Spinal stenosis, lumbosacral region|Spinal stenosis, lumbosacral region +C0838616|T047|AB|M48.07|ICD10CM|Spinal stenosis, lumbosacral region|Spinal stenosis, lumbosacral region +C0838617|T047|PT|M48.08|ICD10CM|Spinal stenosis, sacral and sacrococcygeal region|Spinal stenosis, sacral and sacrococcygeal region +C0838617|T047|AB|M48.08|ICD10CM|Spinal stenosis, sacral and sacrococcygeal region|Spinal stenosis, sacral and sacrococcygeal region +C0020498|T047|PT|M48.1|ICD10|Ankylosing hyperostosis [Forestier]|Ankylosing hyperostosis [Forestier] +C0020498|T047|HT|M48.1|ICD10CM|Ankylosing hyperostosis [Forestier]|Ankylosing hyperostosis [Forestier] +C0020498|T047|AB|M48.1|ICD10CM|Ankylosing hyperostosis [Forestier]|Ankylosing hyperostosis [Forestier] +C0020498|T047|ET|M48.1|ICD10CM|Diffuse idiopathic skeletal hyperostosis [DISH]|Diffuse idiopathic skeletal hyperostosis [DISH] +C0838628|T047|PT|M48.10|ICD10CM|Ankylosing hyperostosis [Forestier], site unspecified|Ankylosing hyperostosis [Forestier], site unspecified +C0838628|T047|AB|M48.10|ICD10CM|Ankylosing hyperostosis [Forestier], site unspecified|Ankylosing hyperostosis [Forestier], site unspecified +C0838620|T047|PT|M48.11|ICD10CM|Ankylosing hyperostosis [Forestier], occipito-atlanto-axial region|Ankylosing hyperostosis [Forestier], occipito-atlanto-axial region +C0838620|T047|AB|M48.11|ICD10CM|Ankylosing hyperostosis, occipito-atlanto-axial region|Ankylosing hyperostosis, occipito-atlanto-axial region +C0838621|T047|PT|M48.12|ICD10CM|Ankylosing hyperostosis [Forestier], cervical region|Ankylosing hyperostosis [Forestier], cervical region +C0838621|T047|AB|M48.12|ICD10CM|Ankylosing hyperostosis [Forestier], cervical region|Ankylosing hyperostosis [Forestier], cervical region +C0838622|T047|PT|M48.13|ICD10CM|Ankylosing hyperostosis [Forestier], cervicothoracic region|Ankylosing hyperostosis [Forestier], cervicothoracic region +C0838622|T047|AB|M48.13|ICD10CM|Ankylosing hyperostosis [Forestier], cervicothoracic region|Ankylosing hyperostosis [Forestier], cervicothoracic region +C0838623|T047|PT|M48.14|ICD10CM|Ankylosing hyperostosis [Forestier], thoracic region|Ankylosing hyperostosis [Forestier], thoracic region +C0838623|T047|AB|M48.14|ICD10CM|Ankylosing hyperostosis [Forestier], thoracic region|Ankylosing hyperostosis [Forestier], thoracic region +C0838624|T047|PT|M48.15|ICD10CM|Ankylosing hyperostosis [Forestier], thoracolumbar region|Ankylosing hyperostosis [Forestier], thoracolumbar region +C0838624|T047|AB|M48.15|ICD10CM|Ankylosing hyperostosis [Forestier], thoracolumbar region|Ankylosing hyperostosis [Forestier], thoracolumbar region +C0838625|T047|PT|M48.16|ICD10CM|Ankylosing hyperostosis [Forestier], lumbar region|Ankylosing hyperostosis [Forestier], lumbar region +C0838625|T047|AB|M48.16|ICD10CM|Ankylosing hyperostosis [Forestier], lumbar region|Ankylosing hyperostosis [Forestier], lumbar region +C0838626|T047|PT|M48.17|ICD10CM|Ankylosing hyperostosis [Forestier], lumbosacral region|Ankylosing hyperostosis [Forestier], lumbosacral region +C0838626|T047|AB|M48.17|ICD10CM|Ankylosing hyperostosis [Forestier], lumbosacral region|Ankylosing hyperostosis [Forestier], lumbosacral region +C0838627|T047|PT|M48.18|ICD10CM|Ankylosing hyperostosis [Forestier], sacral and sacrococcygeal region|Ankylosing hyperostosis [Forestier], sacral and sacrococcygeal region +C0838627|T047|AB|M48.18|ICD10CM|Ankylosing hyperostosis, sacral and sacrococcygeal region|Ankylosing hyperostosis, sacral and sacrococcygeal region +C0838619|T047|PT|M48.19|ICD10CM|Ankylosing hyperostosis [Forestier], multiple sites in spine|Ankylosing hyperostosis [Forestier], multiple sites in spine +C0838619|T047|AB|M48.19|ICD10CM|Ankylosing hyperostosis [Forestier], multiple sites in spine|Ankylosing hyperostosis [Forestier], multiple sites in spine +C0158248|T047|PT|M48.2|ICD10|Kissing spine|Kissing spine +C0158248|T047|HT|M48.2|ICD10CM|Kissing spine|Kissing spine +C0158248|T047|AB|M48.2|ICD10CM|Kissing spine|Kissing spine +C0158248|T047|PT|M48.20|ICD10CM|Kissing spine, site unspecified|Kissing spine, site unspecified +C0158248|T047|AB|M48.20|ICD10CM|Kissing spine, site unspecified|Kissing spine, site unspecified +C0838630|T047|PT|M48.21|ICD10CM|Kissing spine, occipito-atlanto-axial region|Kissing spine, occipito-atlanto-axial region +C0838630|T047|AB|M48.21|ICD10CM|Kissing spine, occipito-atlanto-axial region|Kissing spine, occipito-atlanto-axial region +C0838631|T047|PT|M48.22|ICD10CM|Kissing spine, cervical region|Kissing spine, cervical region +C0838631|T047|AB|M48.22|ICD10CM|Kissing spine, cervical region|Kissing spine, cervical region +C0838632|T047|PT|M48.23|ICD10CM|Kissing spine, cervicothoracic region|Kissing spine, cervicothoracic region +C0838632|T047|AB|M48.23|ICD10CM|Kissing spine, cervicothoracic region|Kissing spine, cervicothoracic region +C0838633|T047|PT|M48.24|ICD10CM|Kissing spine, thoracic region|Kissing spine, thoracic region +C0838633|T047|AB|M48.24|ICD10CM|Kissing spine, thoracic region|Kissing spine, thoracic region +C0838634|T047|PT|M48.25|ICD10CM|Kissing spine, thoracolumbar region|Kissing spine, thoracolumbar region +C0838634|T047|AB|M48.25|ICD10CM|Kissing spine, thoracolumbar region|Kissing spine, thoracolumbar region +C0838635|T047|PT|M48.26|ICD10CM|Kissing spine, lumbar region|Kissing spine, lumbar region +C0838635|T047|AB|M48.26|ICD10CM|Kissing spine, lumbar region|Kissing spine, lumbar region +C0838636|T047|PT|M48.27|ICD10CM|Kissing spine, lumbosacral region|Kissing spine, lumbosacral region +C0838636|T047|AB|M48.27|ICD10CM|Kissing spine, lumbosacral region|Kissing spine, lumbosacral region +C0152088|T047|HT|M48.3|ICD10CM|Traumatic spondylopathy|Traumatic spondylopathy +C0152088|T047|AB|M48.3|ICD10CM|Traumatic spondylopathy|Traumatic spondylopathy +C0152088|T047|PT|M48.3|ICD10|Traumatic spondylopathy|Traumatic spondylopathy +C0838648|T047|PT|M48.30|ICD10CM|Traumatic spondylopathy, site unspecified|Traumatic spondylopathy, site unspecified +C0838648|T047|AB|M48.30|ICD10CM|Traumatic spondylopathy, site unspecified|Traumatic spondylopathy, site unspecified +C0838640|T047|PT|M48.31|ICD10CM|Traumatic spondylopathy, occipito-atlanto-axial region|Traumatic spondylopathy, occipito-atlanto-axial region +C0838640|T047|AB|M48.31|ICD10CM|Traumatic spondylopathy, occipito-atlanto-axial region|Traumatic spondylopathy, occipito-atlanto-axial region +C0838641|T047|PT|M48.32|ICD10CM|Traumatic spondylopathy, cervical region|Traumatic spondylopathy, cervical region +C0838641|T047|AB|M48.32|ICD10CM|Traumatic spondylopathy, cervical region|Traumatic spondylopathy, cervical region +C0838642|T047|PT|M48.33|ICD10CM|Traumatic spondylopathy, cervicothoracic region|Traumatic spondylopathy, cervicothoracic region +C0838642|T047|AB|M48.33|ICD10CM|Traumatic spondylopathy, cervicothoracic region|Traumatic spondylopathy, cervicothoracic region +C0838643|T047|PT|M48.34|ICD10CM|Traumatic spondylopathy, thoracic region|Traumatic spondylopathy, thoracic region +C0838643|T047|AB|M48.34|ICD10CM|Traumatic spondylopathy, thoracic region|Traumatic spondylopathy, thoracic region +C0838644|T047|PT|M48.35|ICD10CM|Traumatic spondylopathy, thoracolumbar region|Traumatic spondylopathy, thoracolumbar region +C0838644|T047|AB|M48.35|ICD10CM|Traumatic spondylopathy, thoracolumbar region|Traumatic spondylopathy, thoracolumbar region +C0838645|T047|PT|M48.36|ICD10CM|Traumatic spondylopathy, lumbar region|Traumatic spondylopathy, lumbar region +C0838645|T047|AB|M48.36|ICD10CM|Traumatic spondylopathy, lumbar region|Traumatic spondylopathy, lumbar region +C0838646|T047|PT|M48.37|ICD10CM|Traumatic spondylopathy, lumbosacral region|Traumatic spondylopathy, lumbosacral region +C0838646|T047|AB|M48.37|ICD10CM|Traumatic spondylopathy, lumbosacral region|Traumatic spondylopathy, lumbosacral region +C0838647|T047|PT|M48.38|ICD10CM|Traumatic spondylopathy, sacral and sacrococcygeal region|Traumatic spondylopathy, sacral and sacrococcygeal region +C0838647|T047|AB|M48.38|ICD10CM|Traumatic spondylopathy, sacral and sacrococcygeal region|Traumatic spondylopathy, sacral and sacrococcygeal region +C0451880|T046|PT|M48.4|ICD10|Fatigue fracture of vertebra|Fatigue fracture of vertebra +C0451880|T046|HT|M48.4|ICD10CM|Fatigue fracture of vertebra|Fatigue fracture of vertebra +C0451880|T046|AB|M48.4|ICD10CM|Fatigue fracture of vertebra|Fatigue fracture of vertebra +C0451880|T046|ET|M48.4|ICD10CM|Stress fracture of vertebra|Stress fracture of vertebra +C0451880|T046|HT|M48.40|ICD10CM|Fatigue fracture of vertebra, site unspecified|Fatigue fracture of vertebra, site unspecified +C0451880|T046|AB|M48.40|ICD10CM|Fatigue fracture of vertebra, site unspecified|Fatigue fracture of vertebra, site unspecified +C2895275|T046|AB|M48.40XA|ICD10CM|Fatigue fracture of vertebra, site unsp, init for fx|Fatigue fracture of vertebra, site unsp, init for fx +C2895275|T046|PT|M48.40XA|ICD10CM|Fatigue fracture of vertebra, site unspecified, initial encounter for fracture|Fatigue fracture of vertebra, site unspecified, initial encounter for fracture +C2895276|T046|AB|M48.40XD|ICD10CM|Fatigue fx vertebra, site unsp, subs for fx w routn heal|Fatigue fx vertebra, site unsp, subs for fx w routn heal +C2895277|T046|AB|M48.40XG|ICD10CM|Fatigue fx vertebra, site unsp, subs for fx w delay heal|Fatigue fx vertebra, site unsp, subs for fx w delay heal +C2895278|T047|AB|M48.40XS|ICD10CM|Fatigue fracture of vertebra, site unsp, sequela of fracture|Fatigue fracture of vertebra, site unsp, sequela of fracture +C2895278|T047|PT|M48.40XS|ICD10CM|Fatigue fracture of vertebra, site unspecified, sequela of fracture|Fatigue fracture of vertebra, site unspecified, sequela of fracture +C0838650|T046|HT|M48.41|ICD10CM|Fatigue fracture of vertebra, occipito-atlanto-axial region|Fatigue fracture of vertebra, occipito-atlanto-axial region +C0838650|T046|AB|M48.41|ICD10CM|Fatigue fracture of vertebra, occipito-atlanto-axial region|Fatigue fracture of vertebra, occipito-atlanto-axial region +C2895279|T046|PT|M48.41XA|ICD10CM|Fatigue fracture of vertebra, occipito-atlanto-axial region, initial encounter for fracture|Fatigue fracture of vertebra, occipito-atlanto-axial region, initial encounter for fracture +C2895279|T046|AB|M48.41XA|ICD10CM|Fatigue fracture of vertebra, occipt-atlan-ax region, init|Fatigue fracture of vertebra, occipt-atlan-ax region, init +C2895280|T047|AB|M48.41XD|ICD10CM|Fatigue fx vert, occipt-atlan-ax rgn, 7thD|Fatigue fx vert, occipt-atlan-ax rgn, 7thD +C2895281|T047|AB|M48.41XG|ICD10CM|Fatigue fx vert, occipt-atlan-ax rgn, 7thG|Fatigue fx vert, occipt-atlan-ax rgn, 7thG +C2895282|T046|PT|M48.41XS|ICD10CM|Fatigue fracture of vertebra, occipito-atlanto-axial region, sequela of fracture|Fatigue fracture of vertebra, occipito-atlanto-axial region, sequela of fracture +C2895282|T046|AB|M48.41XS|ICD10CM|Fatigue fracture of vertebra, occipt-atlan-ax region, sqla|Fatigue fracture of vertebra, occipt-atlan-ax region, sqla +C0838651|T037|HT|M48.42|ICD10CM|Fatigue fracture of vertebra, cervical region|Fatigue fracture of vertebra, cervical region +C0838651|T037|AB|M48.42|ICD10CM|Fatigue fracture of vertebra, cervical region|Fatigue fracture of vertebra, cervical region +C2895283|T046|AB|M48.42XA|ICD10CM|Fatigue fracture of vertebra, cervical region, init for fx|Fatigue fracture of vertebra, cervical region, init for fx +C2895283|T046|PT|M48.42XA|ICD10CM|Fatigue fracture of vertebra, cervical region, initial encounter for fracture|Fatigue fracture of vertebra, cervical region, initial encounter for fracture +C2895284|T046|AB|M48.42XD|ICD10CM|Fatigue fx vertebra, cerv region, subs for fx w routn heal|Fatigue fx vertebra, cerv region, subs for fx w routn heal +C2895285|T047|AB|M48.42XG|ICD10CM|Fatigue fx vertebra, cerv region, subs for fx w delay heal|Fatigue fx vertebra, cerv region, subs for fx w delay heal +C2895286|T046|PT|M48.42XS|ICD10CM|Fatigue fracture of vertebra, cervical region, sequela of fracture|Fatigue fracture of vertebra, cervical region, sequela of fracture +C2895286|T046|AB|M48.42XS|ICD10CM|Fatigue fracture of vertebra, cervical region, sqla|Fatigue fracture of vertebra, cervical region, sqla +C0838652|T046|HT|M48.43|ICD10CM|Fatigue fracture of vertebra, cervicothoracic region|Fatigue fracture of vertebra, cervicothoracic region +C0838652|T046|AB|M48.43|ICD10CM|Fatigue fracture of vertebra, cervicothoracic region|Fatigue fracture of vertebra, cervicothoracic region +C2895287|T047|AB|M48.43XA|ICD10CM|Fatigue fracture of vertebra, cervicothoracic region, init|Fatigue fracture of vertebra, cervicothoracic region, init +C2895287|T047|PT|M48.43XA|ICD10CM|Fatigue fracture of vertebra, cervicothoracic region, initial encounter for fracture|Fatigue fracture of vertebra, cervicothoracic region, initial encounter for fracture +C2895288|T046|AB|M48.43XD|ICD10CM|Fatigue fx vert, cervicothor rgn, subs for fx w routn heal|Fatigue fx vert, cervicothor rgn, subs for fx w routn heal +C2895289|T046|AB|M48.43XG|ICD10CM|Fatigue fx vert, cervicothor rgn, subs for fx w delay heal|Fatigue fx vert, cervicothor rgn, subs for fx w delay heal +C2895290|T046|PT|M48.43XS|ICD10CM|Fatigue fracture of vertebra, cervicothoracic region, sequela of fracture|Fatigue fracture of vertebra, cervicothoracic region, sequela of fracture +C2895290|T046|AB|M48.43XS|ICD10CM|Fatigue fracture of vertebra, cervicothoracic region, sqla|Fatigue fracture of vertebra, cervicothoracic region, sqla +C0838653|T046|HT|M48.44|ICD10CM|Fatigue fracture of vertebra, thoracic region|Fatigue fracture of vertebra, thoracic region +C0838653|T046|AB|M48.44|ICD10CM|Fatigue fracture of vertebra, thoracic region|Fatigue fracture of vertebra, thoracic region +C2895291|T046|AB|M48.44XA|ICD10CM|Fatigue fracture of vertebra, thoracic region, init for fx|Fatigue fracture of vertebra, thoracic region, init for fx +C2895291|T046|PT|M48.44XA|ICD10CM|Fatigue fracture of vertebra, thoracic region, initial encounter for fracture|Fatigue fracture of vertebra, thoracic region, initial encounter for fracture +C2895292|T046|AB|M48.44XD|ICD10CM|Fatigue fx vertebra, thor region, subs for fx w routn heal|Fatigue fx vertebra, thor region, subs for fx w routn heal +C2895293|T047|AB|M48.44XG|ICD10CM|Fatigue fx vertebra, thor region, subs for fx w delay heal|Fatigue fx vertebra, thor region, subs for fx w delay heal +C2895294|T046|PT|M48.44XS|ICD10CM|Fatigue fracture of vertebra, thoracic region, sequela of fracture|Fatigue fracture of vertebra, thoracic region, sequela of fracture +C2895294|T046|AB|M48.44XS|ICD10CM|Fatigue fracture of vertebra, thoracic region, sqla|Fatigue fracture of vertebra, thoracic region, sqla +C0838654|T046|HT|M48.45|ICD10CM|Fatigue fracture of vertebra, thoracolumbar region|Fatigue fracture of vertebra, thoracolumbar region +C0838654|T046|AB|M48.45|ICD10CM|Fatigue fracture of vertebra, thoracolumbar region|Fatigue fracture of vertebra, thoracolumbar region +C2895295|T047|AB|M48.45XA|ICD10CM|Fatigue fracture of vertebra, thoracolumbar region, init|Fatigue fracture of vertebra, thoracolumbar region, init +C2895295|T047|PT|M48.45XA|ICD10CM|Fatigue fracture of vertebra, thoracolumbar region, initial encounter for fracture|Fatigue fracture of vertebra, thoracolumbar region, initial encounter for fracture +C2895296|T046|AB|M48.45XD|ICD10CM|Fatigue fx vertebra, thrclm region, subs for fx w routn heal|Fatigue fx vertebra, thrclm region, subs for fx w routn heal +C2895297|T046|AB|M48.45XG|ICD10CM|Fatigue fx vertebra, thrclm region, subs for fx w delay heal|Fatigue fx vertebra, thrclm region, subs for fx w delay heal +C2895298|T046|PT|M48.45XS|ICD10CM|Fatigue fracture of vertebra, thoracolumbar region, sequela of fracture|Fatigue fracture of vertebra, thoracolumbar region, sequela of fracture +C2895298|T046|AB|M48.45XS|ICD10CM|Fatigue fracture of vertebra, thoracolumbar region, sqla|Fatigue fracture of vertebra, thoracolumbar region, sqla +C0838655|T046|HT|M48.46|ICD10CM|Fatigue fracture of vertebra, lumbar region|Fatigue fracture of vertebra, lumbar region +C0838655|T046|AB|M48.46|ICD10CM|Fatigue fracture of vertebra, lumbar region|Fatigue fracture of vertebra, lumbar region +C2895299|T047|AB|M48.46XA|ICD10CM|Fatigue fracture of vertebra, lumbar region, init for fx|Fatigue fracture of vertebra, lumbar region, init for fx +C2895299|T047|PT|M48.46XA|ICD10CM|Fatigue fracture of vertebra, lumbar region, initial encounter for fracture|Fatigue fracture of vertebra, lumbar region, initial encounter for fracture +C2895300|T047|PT|M48.46XD|ICD10CM|Fatigue fracture of vertebra, lumbar region, subsequent encounter for fracture with routine healing|Fatigue fracture of vertebra, lumbar region, subsequent encounter for fracture with routine healing +C2895300|T047|AB|M48.46XD|ICD10CM|Fatigue fx vertebra, lumbar region, subs for fx w routn heal|Fatigue fx vertebra, lumbar region, subs for fx w routn heal +C2895301|T046|PT|M48.46XG|ICD10CM|Fatigue fracture of vertebra, lumbar region, subsequent encounter for fracture with delayed healing|Fatigue fracture of vertebra, lumbar region, subsequent encounter for fracture with delayed healing +C2895301|T046|AB|M48.46XG|ICD10CM|Fatigue fx vertebra, lumbar region, subs for fx w delay heal|Fatigue fx vertebra, lumbar region, subs for fx w delay heal +C2895302|T046|PT|M48.46XS|ICD10CM|Fatigue fracture of vertebra, lumbar region, sequela of fracture|Fatigue fracture of vertebra, lumbar region, sequela of fracture +C2895302|T046|AB|M48.46XS|ICD10CM|Fatigue fracture of vertebra, lumbar region, sqla|Fatigue fracture of vertebra, lumbar region, sqla +C0838656|T046|HT|M48.47|ICD10CM|Fatigue fracture of vertebra, lumbosacral region|Fatigue fracture of vertebra, lumbosacral region +C0838656|T046|AB|M48.47|ICD10CM|Fatigue fracture of vertebra, lumbosacral region|Fatigue fracture of vertebra, lumbosacral region +C2895303|T047|AB|M48.47XA|ICD10CM|Fatigue fracture of vertebra, lumbosacral region, init|Fatigue fracture of vertebra, lumbosacral region, init +C2895303|T047|PT|M48.47XA|ICD10CM|Fatigue fracture of vertebra, lumbosacral region, initial encounter for fracture|Fatigue fracture of vertebra, lumbosacral region, initial encounter for fracture +C2895304|T047|AB|M48.47XD|ICD10CM|Fatigue fx vert, lumbosacr region, subs for fx w routn heal|Fatigue fx vert, lumbosacr region, subs for fx w routn heal +C2895305|T047|AB|M48.47XG|ICD10CM|Fatigue fx vert, lumbosacr region, subs for fx w delay heal|Fatigue fx vert, lumbosacr region, subs for fx w delay heal +C2895306|T047|PT|M48.47XS|ICD10CM|Fatigue fracture of vertebra, lumbosacral region, sequela of fracture|Fatigue fracture of vertebra, lumbosacral region, sequela of fracture +C2895306|T047|AB|M48.47XS|ICD10CM|Fatigue fracture of vertebra, lumbosacral region, sqla|Fatigue fracture of vertebra, lumbosacral region, sqla +C0838657|T046|AB|M48.48|ICD10CM|Fatigue fracture of vertebra, sacr/sacrocygl region|Fatigue fracture of vertebra, sacr/sacrocygl region +C0838657|T046|HT|M48.48|ICD10CM|Fatigue fracture of vertebra, sacral and sacrococcygeal region|Fatigue fracture of vertebra, sacral and sacrococcygeal region +C2895307|T046|AB|M48.48XA|ICD10CM|Fatigue fracture of vertebra, sacr/sacrocygl region, init|Fatigue fracture of vertebra, sacr/sacrocygl region, init +C2895307|T046|PT|M48.48XA|ICD10CM|Fatigue fracture of vertebra, sacral and sacrococcygeal region, initial encounter for fracture|Fatigue fracture of vertebra, sacral and sacrococcygeal region, initial encounter for fracture +C2895308|T047|AB|M48.48XD|ICD10CM|Fatigue fx vert, sacr/sacrocygl rgn, 7thD|Fatigue fx vert, sacr/sacrocygl rgn, 7thD +C2895309|T046|AB|M48.48XG|ICD10CM|Fatigue fx vert, sacr/sacrocygl rgn, 7thG|Fatigue fx vert, sacr/sacrocygl rgn, 7thG +C2895310|T047|AB|M48.48XS|ICD10CM|Fatigue fracture of vertebra, sacr/sacrocygl region, sqla|Fatigue fracture of vertebra, sacr/sacrocygl region, sqla +C2895310|T047|PT|M48.48XS|ICD10CM|Fatigue fracture of vertebra, sacral and sacrococcygeal region, sequela of fracture|Fatigue fracture of vertebra, sacral and sacrococcygeal region, sequela of fracture +C0410550|T047|ET|M48.5|ICD10CM|Collapsed vertebra NOS|Collapsed vertebra NOS +C0494964|T037|HT|M48.5|ICD10CM|Collapsed vertebra, not elsewhere classified|Collapsed vertebra, not elsewhere classified +C0494964|T037|AB|M48.5|ICD10CM|Collapsed vertebra, not elsewhere classified|Collapsed vertebra, not elsewhere classified +C0494964|T037|PT|M48.5|ICD10|Collapsed vertebra, not elsewhere classified|Collapsed vertebra, not elsewhere classified +C0740366|T037|ET|M48.5|ICD10CM|Compression fracture of vertebra NOS|Compression fracture of vertebra NOS +C0264112|T047|ET|M48.5|ICD10CM|Wedging of vertebra NOS|Wedging of vertebra NOS +C0838668|T037|AB|M48.50|ICD10CM|Collapsed vertebra, not elsewhere classified, site unsp|Collapsed vertebra, not elsewhere classified, site unsp +C0838668|T037|HT|M48.50|ICD10CM|Collapsed vertebra, not elsewhere classified, site unspecified|Collapsed vertebra, not elsewhere classified, site unspecified +C2895311|T037|AB|M48.50XA|ICD10CM|Collapsed vertebra, NEC, site unsp, init|Collapsed vertebra, NEC, site unsp, init +C2895311|T037|PT|M48.50XA|ICD10CM|Collapsed vertebra, not elsewhere classified, site unspecified, initial encounter for fracture|Collapsed vertebra, not elsewhere classified, site unspecified, initial encounter for fracture +C2895312|T037|AB|M48.50XD|ICD10CM|Collapsed vertebra, NEC, site unsp, subs for fx w routn heal|Collapsed vertebra, NEC, site unsp, subs for fx w routn heal +C2895313|T037|AB|M48.50XG|ICD10CM|Collapsed vertebra, NEC, site unsp, subs for fx w delay heal|Collapsed vertebra, NEC, site unsp, subs for fx w delay heal +C2895314|T037|AB|M48.50XS|ICD10CM|Collapsed vertebra, NEC, site unsp, sequela of fracture|Collapsed vertebra, NEC, site unsp, sequela of fracture +C2895314|T037|PT|M48.50XS|ICD10CM|Collapsed vertebra, not elsewhere classified, site unspecified, sequela of fracture|Collapsed vertebra, not elsewhere classified, site unspecified, sequela of fracture +C0838660|T037|AB|M48.51|ICD10CM|Collapsed vertebra, NEC, occipito-atlanto-axial region|Collapsed vertebra, NEC, occipito-atlanto-axial region +C0838660|T037|HT|M48.51|ICD10CM|Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region|Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region +C2895315|T037|AB|M48.51XA|ICD10CM|Collapsed vertebra, NEC, occipito-atlanto-axial region, init|Collapsed vertebra, NEC, occipito-atlanto-axial region, init +C2895316|T037|AB|M48.51XD|ICD10CM|Collapsed vert, NEC, occipt-atlan-ax rgn, 7thD|Collapsed vert, NEC, occipt-atlan-ax rgn, 7thD +C2895317|T037|AB|M48.51XG|ICD10CM|Collapsed vert, NEC, occipt-atlan-ax rgn, 7thG|Collapsed vert, NEC, occipt-atlan-ax rgn, 7thG +C2895318|T037|AB|M48.51XS|ICD10CM|Collapsed vertebra, NEC, occipt-atlan-ax region, sqla|Collapsed vertebra, NEC, occipt-atlan-ax region, sqla +C2895318|T037|PT|M48.51XS|ICD10CM|Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, sequela of fracture|Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, sequela of fracture +C0838661|T037|AB|M48.52|ICD10CM|Collapsed vertebra, NEC, cervical region|Collapsed vertebra, NEC, cervical region +C0838661|T037|HT|M48.52|ICD10CM|Collapsed vertebra, not elsewhere classified, cervical region|Collapsed vertebra, not elsewhere classified, cervical region +C2895319|T037|AB|M48.52XA|ICD10CM|Collapsed vertebra, NEC, cervical region, init|Collapsed vertebra, NEC, cervical region, init +C2895319|T037|PT|M48.52XA|ICD10CM|Collapsed vertebra, not elsewhere classified, cervical region, initial encounter for fracture|Collapsed vertebra, not elsewhere classified, cervical region, initial encounter for fracture +C2895320|T037|AB|M48.52XD|ICD10CM|Collapsed vert, NEC, cerv region, subs for fx w routn heal|Collapsed vert, NEC, cerv region, subs for fx w routn heal +C2895321|T037|AB|M48.52XG|ICD10CM|Collapsed vert, NEC, cerv region, subs for fx w delay heal|Collapsed vert, NEC, cerv region, subs for fx w delay heal +C2895322|T037|AB|M48.52XS|ICD10CM|Collapsed vertebra, NEC, cervical region, sqla|Collapsed vertebra, NEC, cervical region, sqla +C2895322|T037|PT|M48.52XS|ICD10CM|Collapsed vertebra, not elsewhere classified, cervical region, sequela of fracture|Collapsed vertebra, not elsewhere classified, cervical region, sequela of fracture +C0838662|T037|AB|M48.53|ICD10CM|Collapsed vertebra, NEC, cervicothoracic region|Collapsed vertebra, NEC, cervicothoracic region +C0838662|T037|HT|M48.53|ICD10CM|Collapsed vertebra, not elsewhere classified, cervicothoracic region|Collapsed vertebra, not elsewhere classified, cervicothoracic region +C2895323|T037|AB|M48.53XA|ICD10CM|Collapsed vertebra, NEC, cervicothoracic region, init|Collapsed vertebra, NEC, cervicothoracic region, init +C2895323|T037|PT|M48.53XA|ICD10CM|Collapsed vertebra, not elsewhere classified, cervicothoracic region, initial encounter for fracture|Collapsed vertebra, not elsewhere classified, cervicothoracic region, initial encounter for fracture +C2895324|T037|AB|M48.53XD|ICD10CM|Collapsed vert, NEC, cervicothor rgn, 7thD|Collapsed vert, NEC, cervicothor rgn, 7thD +C2895325|T037|AB|M48.53XG|ICD10CM|Collapsed vert, NEC, cervicothor rgn, 7thG|Collapsed vert, NEC, cervicothor rgn, 7thG +C2895326|T037|AB|M48.53XS|ICD10CM|Collapsed vertebra, NEC, cervicothoracic region, sqla|Collapsed vertebra, NEC, cervicothoracic region, sqla +C2895326|T037|PT|M48.53XS|ICD10CM|Collapsed vertebra, not elsewhere classified, cervicothoracic region, sequela of fracture|Collapsed vertebra, not elsewhere classified, cervicothoracic region, sequela of fracture +C0838663|T037|AB|M48.54|ICD10CM|Collapsed vertebra, NEC, thoracic region|Collapsed vertebra, NEC, thoracic region +C0838663|T037|HT|M48.54|ICD10CM|Collapsed vertebra, not elsewhere classified, thoracic region|Collapsed vertebra, not elsewhere classified, thoracic region +C2895327|T037|AB|M48.54XA|ICD10CM|Collapsed vertebra, NEC, thoracic region, init|Collapsed vertebra, NEC, thoracic region, init +C2895327|T037|PT|M48.54XA|ICD10CM|Collapsed vertebra, not elsewhere classified, thoracic region, initial encounter for fracture|Collapsed vertebra, not elsewhere classified, thoracic region, initial encounter for fracture +C2895328|T037|AB|M48.54XD|ICD10CM|Collapsed vert, NEC, thor region, subs for fx w routn heal|Collapsed vert, NEC, thor region, subs for fx w routn heal +C2895329|T037|AB|M48.54XG|ICD10CM|Collapsed vert, NEC, thor region, subs for fx w delay heal|Collapsed vert, NEC, thor region, subs for fx w delay heal +C2895330|T037|AB|M48.54XS|ICD10CM|Collapsed vertebra, NEC, thoracic region, sqla|Collapsed vertebra, NEC, thoracic region, sqla +C2895330|T037|PT|M48.54XS|ICD10CM|Collapsed vertebra, not elsewhere classified, thoracic region, sequela of fracture|Collapsed vertebra, not elsewhere classified, thoracic region, sequela of fracture +C0838664|T037|AB|M48.55|ICD10CM|Collapsed vertebra, NEC, thoracolumbar region|Collapsed vertebra, NEC, thoracolumbar region +C0838664|T037|HT|M48.55|ICD10CM|Collapsed vertebra, not elsewhere classified, thoracolumbar region|Collapsed vertebra, not elsewhere classified, thoracolumbar region +C2895331|T037|AB|M48.55XA|ICD10CM|Collapsed vertebra, NEC, thoracolumbar region, init|Collapsed vertebra, NEC, thoracolumbar region, init +C2895331|T037|PT|M48.55XA|ICD10CM|Collapsed vertebra, not elsewhere classified, thoracolumbar region, initial encounter for fracture|Collapsed vertebra, not elsewhere classified, thoracolumbar region, initial encounter for fracture +C2895332|T037|AB|M48.55XD|ICD10CM|Collapsed vert, NEC, thrclm region, subs for fx w routn heal|Collapsed vert, NEC, thrclm region, subs for fx w routn heal +C2895333|T037|AB|M48.55XG|ICD10CM|Collapsed vert, NEC, thrclm region, subs for fx w delay heal|Collapsed vert, NEC, thrclm region, subs for fx w delay heal +C2895334|T037|AB|M48.55XS|ICD10CM|Collapsed vertebra, NEC, thoracolumbar region, sqla|Collapsed vertebra, NEC, thoracolumbar region, sqla +C2895334|T037|PT|M48.55XS|ICD10CM|Collapsed vertebra, not elsewhere classified, thoracolumbar region, sequela of fracture|Collapsed vertebra, not elsewhere classified, thoracolumbar region, sequela of fracture +C0838665|T037|HT|M48.56|ICD10CM|Collapsed vertebra, not elsewhere classified, lumbar region|Collapsed vertebra, not elsewhere classified, lumbar region +C0838665|T037|AB|M48.56|ICD10CM|Collapsed vertebra, not elsewhere classified, lumbar region|Collapsed vertebra, not elsewhere classified, lumbar region +C2895335|T037|AB|M48.56XA|ICD10CM|Collapsed vertebra, NEC, lumbar region, init|Collapsed vertebra, NEC, lumbar region, init +C2895335|T037|PT|M48.56XA|ICD10CM|Collapsed vertebra, not elsewhere classified, lumbar region, initial encounter for fracture|Collapsed vertebra, not elsewhere classified, lumbar region, initial encounter for fracture +C2895336|T037|AB|M48.56XD|ICD10CM|Collapsed vert, NEC, lumbar region, subs for fx w routn heal|Collapsed vert, NEC, lumbar region, subs for fx w routn heal +C2895337|T037|AB|M48.56XG|ICD10CM|Collapsed vert, NEC, lumbar region, subs for fx w delay heal|Collapsed vert, NEC, lumbar region, subs for fx w delay heal +C2895338|T037|AB|M48.56XS|ICD10CM|Collapsed vertebra, NEC, lumbar region, sequela of fracture|Collapsed vertebra, NEC, lumbar region, sequela of fracture +C2895338|T037|PT|M48.56XS|ICD10CM|Collapsed vertebra, not elsewhere classified, lumbar region, sequela of fracture|Collapsed vertebra, not elsewhere classified, lumbar region, sequela of fracture +C0838666|T037|AB|M48.57|ICD10CM|Collapsed vertebra, NEC, lumbosacral region|Collapsed vertebra, NEC, lumbosacral region +C0838666|T037|HT|M48.57|ICD10CM|Collapsed vertebra, not elsewhere classified, lumbosacral region|Collapsed vertebra, not elsewhere classified, lumbosacral region +C2895339|T037|AB|M48.57XA|ICD10CM|Collapsed vertebra, NEC, lumbosacral region, init|Collapsed vertebra, NEC, lumbosacral region, init +C2895339|T037|PT|M48.57XA|ICD10CM|Collapsed vertebra, not elsewhere classified, lumbosacral region, initial encounter for fracture|Collapsed vertebra, not elsewhere classified, lumbosacral region, initial encounter for fracture +C2895340|T037|AB|M48.57XD|ICD10CM|Collapsed vert, NEC, lumbosacr rgn, subs for fx w routn heal|Collapsed vert, NEC, lumbosacr rgn, subs for fx w routn heal +C2895341|T037|AB|M48.57XG|ICD10CM|Collapsed vert, NEC, lumbosacr rgn, subs for fx w delay heal|Collapsed vert, NEC, lumbosacr rgn, subs for fx w delay heal +C2895342|T037|AB|M48.57XS|ICD10CM|Collapsed vertebra, NEC, lumbosacral region, sqla|Collapsed vertebra, NEC, lumbosacral region, sqla +C2895342|T037|PT|M48.57XS|ICD10CM|Collapsed vertebra, not elsewhere classified, lumbosacral region, sequela of fracture|Collapsed vertebra, not elsewhere classified, lumbosacral region, sequela of fracture +C0838667|T037|AB|M48.58|ICD10CM|Collapsed vertebra, NEC, sacr/sacrocygl region|Collapsed vertebra, NEC, sacr/sacrocygl region +C0838667|T037|HT|M48.58|ICD10CM|Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region|Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region +C2895343|T037|AB|M48.58XA|ICD10CM|Collapsed vertebra, NEC, sacr/sacrocygl region, init|Collapsed vertebra, NEC, sacr/sacrocygl region, init +C2895344|T037|AB|M48.58XD|ICD10CM|Collapsed vert, NEC, sacr/sacrocygl rgn, 7thD|Collapsed vert, NEC, sacr/sacrocygl rgn, 7thD +C2895345|T037|AB|M48.58XG|ICD10CM|Collapsed vert, NEC, sacr/sacrocygl rgn, 7thG|Collapsed vert, NEC, sacr/sacrocygl rgn, 7thG +C2895346|T037|AB|M48.58XS|ICD10CM|Collapsed vertebra, NEC, sacr/sacrocygl region, sqla|Collapsed vertebra, NEC, sacr/sacrocygl region, sqla +C2895346|T037|PT|M48.58XS|ICD10CM|Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region, sequela of fracture|Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region, sequela of fracture +C0206366|T046|ET|M48.8|ICD10CM|Ossification of posterior longitudinal ligament|Ossification of posterior longitudinal ligament +C0477617|T047|PT|M48.8|ICD10|Other specified spondylopathies|Other specified spondylopathies +C0477617|T047|HT|M48.8|ICD10CM|Other specified spondylopathies|Other specified spondylopathies +C0477617|T047|AB|M48.8|ICD10CM|Other specified spondylopathies|Other specified spondylopathies +C0477617|T047|HT|M48.8X|ICD10CM|Other specified spondylopathies|Other specified spondylopathies +C0477617|T047|AB|M48.8X|ICD10CM|Other specified spondylopathies|Other specified spondylopathies +C0838670|T047|AB|M48.8X1|ICD10CM|Oth spondylopathies, occipito-atlanto-axial region|Oth spondylopathies, occipito-atlanto-axial region +C0838670|T047|PT|M48.8X1|ICD10CM|Other specified spondylopathies, occipito-atlanto-axial region|Other specified spondylopathies, occipito-atlanto-axial region +C0838671|T047|PT|M48.8X2|ICD10CM|Other specified spondylopathies, cervical region|Other specified spondylopathies, cervical region +C0838671|T047|AB|M48.8X2|ICD10CM|Other specified spondylopathies, cervical region|Other specified spondylopathies, cervical region +C0838672|T047|PT|M48.8X3|ICD10CM|Other specified spondylopathies, cervicothoracic region|Other specified spondylopathies, cervicothoracic region +C0838672|T047|AB|M48.8X3|ICD10CM|Other specified spondylopathies, cervicothoracic region|Other specified spondylopathies, cervicothoracic region +C0838673|T047|PT|M48.8X4|ICD10CM|Other specified spondylopathies, thoracic region|Other specified spondylopathies, thoracic region +C0838673|T047|AB|M48.8X4|ICD10CM|Other specified spondylopathies, thoracic region|Other specified spondylopathies, thoracic region +C0838674|T047|PT|M48.8X5|ICD10CM|Other specified spondylopathies, thoracolumbar region|Other specified spondylopathies, thoracolumbar region +C0838674|T047|AB|M48.8X5|ICD10CM|Other specified spondylopathies, thoracolumbar region|Other specified spondylopathies, thoracolumbar region +C0838675|T047|PT|M48.8X6|ICD10CM|Other specified spondylopathies, lumbar region|Other specified spondylopathies, lumbar region +C0838675|T047|AB|M48.8X6|ICD10CM|Other specified spondylopathies, lumbar region|Other specified spondylopathies, lumbar region +C0838676|T047|PT|M48.8X7|ICD10CM|Other specified spondylopathies, lumbosacral region|Other specified spondylopathies, lumbosacral region +C0838676|T047|AB|M48.8X7|ICD10CM|Other specified spondylopathies, lumbosacral region|Other specified spondylopathies, lumbosacral region +C0838677|T047|AB|M48.8X8|ICD10CM|Oth spondylopathies, sacral and sacrococcygeal region|Oth spondylopathies, sacral and sacrococcygeal region +C0838677|T047|PT|M48.8X8|ICD10CM|Other specified spondylopathies, sacral and sacrococcygeal region|Other specified spondylopathies, sacral and sacrococcygeal region +C0477617|T047|PT|M48.8X9|ICD10CM|Other specified spondylopathies, site unspecified|Other specified spondylopathies, site unspecified +C0477617|T047|AB|M48.8X9|ICD10CM|Other specified spondylopathies, site unspecified|Other specified spondylopathies, site unspecified +C0037933|T047|PT|M48.9|ICD10CM|Spondylopathy, unspecified|Spondylopathy, unspecified +C0037933|T047|AB|M48.9|ICD10CM|Spondylopathy, unspecified|Spondylopathy, unspecified +C0037933|T047|PT|M48.9|ICD10|Spondylopathy, unspecified|Spondylopathy, unspecified +C4290225|T047|ET|M49|ICD10CM|curvature of spine in diseases classified elsewhere|curvature of spine in diseases classified elsewhere +C4290226|T047|ET|M49|ICD10CM|deformity of spine in diseases classified elsewhere|deformity of spine in diseases classified elsewhere +C4290227|T047|ET|M49|ICD10CM|kyphosis in diseases classified elsewhere|kyphosis in diseases classified elsewhere +C4290228|T047|ET|M49|ICD10CM|scoliosis in diseases classified elsewhere|scoliosis in diseases classified elsewhere +C0694519|T047|HT|M49|ICD10|Spondylopathies in diseases classified elsewhere|Spondylopathies in diseases classified elsewhere +C0694519|T047|AB|M49|ICD10CM|Spondylopathies in diseases classified elsewhere|Spondylopathies in diseases classified elsewhere +C0694519|T047|HT|M49|ICD10CM|Spondylopathies in diseases classified elsewhere|Spondylopathies in diseases classified elsewhere +C0694519|T047|ET|M49|ICD10CM|spondylopathy in diseases classified elsewhere|spondylopathy in diseases classified elsewhere +C0041330|T047|PT|M49.0|ICD10|Tuberculosis of spine|Tuberculosis of spine +C0451831|T047|PT|M49.1|ICD10|Brucella spondylitis|Brucella spondylitis +C0451832|T047|PT|M49.2|ICD10|Enterobacterial spondylitis|Enterobacterial spondylitis +C0477618|T047|PT|M49.3|ICD10|Spondylopathy in other infectious and parasitic diseases classified elsewhere|Spondylopathy in other infectious and parasitic diseases classified elsewhere +C0451838|T047|PT|M49.4|ICD10|Neuropathic spondylopathy|Neuropathic spondylopathy +C0477619|T190|PT|M49.5|ICD10|Collapsed vertebra in diseases classified elsewhere|Collapsed vertebra in diseases classified elsewhere +C0694519|T047|HT|M49.8|ICD10CM|Spondylopathy in diseases classified elsewhere|Spondylopathy in diseases classified elsewhere +C0694519|T047|AB|M49.8|ICD10CM|Spondylopathy in diseases classified elsewhere|Spondylopathy in diseases classified elsewhere +C0477620|T047|PT|M49.8|ICD10|Spondylopathy in other diseases classified elsewhere|Spondylopathy in other diseases classified elsewhere +C2895351|T047|AB|M49.80|ICD10CM|Spondylopathy in diseases classified elsewhere, site unsp|Spondylopathy in diseases classified elsewhere, site unsp +C2895351|T047|PT|M49.80|ICD10CM|Spondylopathy in diseases classified elsewhere, site unspecified|Spondylopathy in diseases classified elsewhere, site unspecified +C2895352|T047|AB|M49.81|ICD10CM|Spond in diseases classd elswhr, occipt-atlan-ax region|Spond in diseases classd elswhr, occipt-atlan-ax region +C2895352|T047|PT|M49.81|ICD10CM|Spondylopathy in diseases classified elsewhere, occipito-atlanto-axial region|Spondylopathy in diseases classified elsewhere, occipito-atlanto-axial region +C2895353|T047|AB|M49.82|ICD10CM|Spondylopathy in diseases classd elswhr, cervical region|Spondylopathy in diseases classd elswhr, cervical region +C2895353|T047|PT|M49.82|ICD10CM|Spondylopathy in diseases classified elsewhere, cervical region|Spondylopathy in diseases classified elsewhere, cervical region +C2895354|T047|AB|M49.83|ICD10CM|Spondylopathy in diseases classd elswhr, cervicothor region|Spondylopathy in diseases classd elswhr, cervicothor region +C2895354|T047|PT|M49.83|ICD10CM|Spondylopathy in diseases classified elsewhere, cervicothoracic region|Spondylopathy in diseases classified elsewhere, cervicothoracic region +C2895355|T047|AB|M49.84|ICD10CM|Spondylopathy in diseases classd elswhr, thoracic region|Spondylopathy in diseases classd elswhr, thoracic region +C2895355|T047|PT|M49.84|ICD10CM|Spondylopathy in diseases classified elsewhere, thoracic region|Spondylopathy in diseases classified elsewhere, thoracic region +C2895356|T047|AB|M49.85|ICD10CM|Spond in diseases classd elswhr, thoracolumbar region|Spond in diseases classd elswhr, thoracolumbar region +C2895356|T047|PT|M49.85|ICD10CM|Spondylopathy in diseases classified elsewhere, thoracolumbar region|Spondylopathy in diseases classified elsewhere, thoracolumbar region +C2895357|T047|AB|M49.86|ICD10CM|Spondylopathy in diseases classd elswhr, lumbar region|Spondylopathy in diseases classd elswhr, lumbar region +C2895357|T047|PT|M49.86|ICD10CM|Spondylopathy in diseases classified elsewhere, lumbar region|Spondylopathy in diseases classified elsewhere, lumbar region +C2895358|T047|AB|M49.87|ICD10CM|Spondylopathy in diseases classd elswhr, lumbosacral region|Spondylopathy in diseases classd elswhr, lumbosacral region +C2895358|T047|PT|M49.87|ICD10CM|Spondylopathy in diseases classified elsewhere, lumbosacral region|Spondylopathy in diseases classified elsewhere, lumbosacral region +C2895359|T047|AB|M49.88|ICD10CM|Spond in diseases classd elswhr, sacr/sacrocygl region|Spond in diseases classd elswhr, sacr/sacrocygl region +C2895359|T047|PT|M49.88|ICD10CM|Spondylopathy in diseases classified elsewhere, sacral and sacrococcygeal region|Spondylopathy in diseases classified elsewhere, sacral and sacrococcygeal region +C2895360|T047|AB|M49.89|ICD10CM|Spond in diseases classd elswhr, multiple sites in spine|Spond in diseases classd elswhr, multiple sites in spine +C2895360|T047|PT|M49.89|ICD10CM|Spondylopathy in diseases classified elsewhere, multiple sites in spine|Spondylopathy in diseases classified elsewhere, multiple sites in spine +C0477633|T047|HT|M50|ICD10|Cervical disc disorders|Cervical disc disorders +C0477633|T047|AB|M50|ICD10CM|Cervical disc disorders|Cervical disc disorders +C0477633|T047|HT|M50|ICD10CM|Cervical disc disorders|Cervical disc disorders +C4290230|T047|ET|M50|ICD10CM|cervicothoracic disc disorders|cervicothoracic disc disorders +C4290229|T047|ET|M50|ICD10CM|cervicothoracic disc disorders with cervicalgia|cervicothoracic disc disorders with cervicalgia +C0477621|T047|HT|M50-M54|ICD10CM|Other dorsopathies (M50-M54)|Other dorsopathies (M50-M54) +C0477621|T047|HT|M50-M54.9|ICD10|Other dorsopathies|Other dorsopathies +C0410601|T047|PT|M50.0|ICD10|Cervical disc disorder with myelopathy|Cervical disc disorder with myelopathy +C0410601|T047|HT|M50.0|ICD10CM|Cervical disc disorder with myelopathy|Cervical disc disorder with myelopathy +C0410601|T047|AB|M50.0|ICD10CM|Cervical disc disorder with myelopathy|Cervical disc disorder with myelopathy +C2895363|T047|AB|M50.00|ICD10CM|Cervical disc disorder with myelopathy, unsp cervical region|Cervical disc disorder with myelopathy, unsp cervical region +C2895363|T047|PT|M50.00|ICD10CM|Cervical disc disorder with myelopathy, unspecified cervical region|Cervical disc disorder with myelopathy, unspecified cervical region +C3696851|T047|ET|M50.01|ICD10CM|C2-C3 disc disorder with myelopathy|C2-C3 disc disorder with myelopathy +C3696850|T047|ET|M50.01|ICD10CM|C3-C4 disc disorder with myelopathy|C3-C4 disc disorder with myelopathy +C3696792|T047|AB|M50.01|ICD10CM|Cervical disc disorder with myelopathy, high cervical region|Cervical disc disorder with myelopathy, high cervical region +C3696792|T047|PT|M50.01|ICD10CM|Cervical disc disorder with myelopathy, high cervical region|Cervical disc disorder with myelopathy, high cervical region +C2895365|T047|AB|M50.02|ICD10CM|Cervical disc disorder with myelopathy, mid-cervical region|Cervical disc disorder with myelopathy, mid-cervical region +C2895365|T047|HT|M50.02|ICD10CM|Cervical disc disorder with myelopathy, mid-cervical region|Cervical disc disorder with myelopathy, mid-cervical region +C4268716|T047|AB|M50.020|ICD10CM|Cerv disc disord with myelpath, mid-cervical rgn, unsp level|Cerv disc disord with myelpath, mid-cervical rgn, unsp level +C4268716|T047|PT|M50.020|ICD10CM|Cervical disc disorder with myelopathy, mid-cervical region, unspecified level|Cervical disc disorder with myelopathy, mid-cervical region, unspecified level +C4268717|T047|ET|M50.021|ICD10CM|C4-C5 disc disorder with myelopathy|C4-C5 disc disorder with myelopathy +C4268717|T047|AB|M50.021|ICD10CM|Cervical disc disorder at C4-C5 level with myelopathy|Cervical disc disorder at C4-C5 level with myelopathy +C4268717|T047|PT|M50.021|ICD10CM|Cervical disc disorder at C4-C5 level with myelopathy|Cervical disc disorder at C4-C5 level with myelopathy +C4268718|T047|ET|M50.022|ICD10CM|C5-C6 disc disorder with myelopathy|C5-C6 disc disorder with myelopathy +C4268718|T047|AB|M50.022|ICD10CM|Cervical disc disorder at C5-C6 level with myelopathy|Cervical disc disorder at C5-C6 level with myelopathy +C4268718|T047|PT|M50.022|ICD10CM|Cervical disc disorder at C5-C6 level with myelopathy|Cervical disc disorder at C5-C6 level with myelopathy +C4268719|T047|ET|M50.023|ICD10CM|C6-C7 disc disorder with myelopathy|C6-C7 disc disorder with myelopathy +C4268719|T047|AB|M50.023|ICD10CM|Cervical disc disorder at C6-C7 level with myelopathy|Cervical disc disorder at C6-C7 level with myelopathy +C4268719|T047|PT|M50.023|ICD10CM|Cervical disc disorder at C6-C7 level with myelopathy|Cervical disc disorder at C6-C7 level with myelopathy +C3696846|T047|ET|M50.03|ICD10CM|C7-T1 disc disorder with myelopathy|C7-T1 disc disorder with myelopathy +C2895366|T047|AB|M50.03|ICD10CM|Cervical disc disorder w myelopathy, cervicothoracic region|Cervical disc disorder w myelopathy, cervicothoracic region +C2895366|T047|PT|M50.03|ICD10CM|Cervical disc disorder with myelopathy, cervicothoracic region|Cervical disc disorder with myelopathy, cervicothoracic region +C0451888|T047|HT|M50.1|ICD10CM|Cervical disc disorder with radiculopathy|Cervical disc disorder with radiculopathy +C0451888|T047|AB|M50.1|ICD10CM|Cervical disc disorder with radiculopathy|Cervical disc disorder with radiculopathy +C0451888|T047|PT|M50.1|ICD10|Cervical disc disorder with radiculopathy|Cervical disc disorder with radiculopathy +C2895367|T047|AB|M50.10|ICD10CM|Cervical disc disorder w radiculopathy, unsp cervical region|Cervical disc disorder w radiculopathy, unsp cervical region +C2895367|T047|PT|M50.10|ICD10CM|Cervical disc disorder with radiculopathy, unspecified cervical region|Cervical disc disorder with radiculopathy, unspecified cervical region +C3696845|T047|ET|M50.11|ICD10CM|C2-C3 disc disorder with radiculopathy|C2-C3 disc disorder with radiculopathy +C3696844|T047|ET|M50.11|ICD10CM|C3 radiculopathy due to disc disorder|C3 radiculopathy due to disc disorder +C3696843|T047|ET|M50.11|ICD10CM|C3-C4 disc disorder with radiculopathy|C3-C4 disc disorder with radiculopathy +C3696842|T047|ET|M50.11|ICD10CM|C4 radiculopathy due to disc disorder|C4 radiculopathy due to disc disorder +C3696791|T047|AB|M50.11|ICD10CM|Cerv disc disorder with radiculopathy, high cervical region|Cerv disc disorder with radiculopathy, high cervical region +C3696791|T047|PT|M50.11|ICD10CM|Cervical disc disorder with radiculopathy, high cervical region|Cervical disc disorder with radiculopathy, high cervical region +C2895369|T047|AB|M50.12|ICD10CM|Cervical disc disorder w radiculopathy, mid-cervical region|Cervical disc disorder w radiculopathy, mid-cervical region +C2895369|T047|HT|M50.12|ICD10CM|Cervical disc disorder with radiculopathy, mid-cervical region|Cervical disc disorder with radiculopathy, mid-cervical region +C4268720|T047|AB|M50.120|ICD10CM|Mid-cervical disc disorder, unspecified level|Mid-cervical disc disorder, unspecified level +C4268720|T047|PT|M50.120|ICD10CM|Mid-cervical disc disorder, unspecified level|Mid-cervical disc disorder, unspecified level +C4268721|T047|ET|M50.121|ICD10CM|C4-C5 disc disorder with radiculopathy|C4-C5 disc disorder with radiculopathy +C4268721|T047|ET|M50.121|ICD10CM|C5 radiculopathy due to disc disorder|C5 radiculopathy due to disc disorder +C4268721|T047|AB|M50.121|ICD10CM|Cervical disc disorder at C4-C5 level with radiculopathy|Cervical disc disorder at C4-C5 level with radiculopathy +C4268721|T047|PT|M50.121|ICD10CM|Cervical disc disorder at C4-C5 level with radiculopathy|Cervical disc disorder at C4-C5 level with radiculopathy +C4268722|T047|ET|M50.122|ICD10CM|C5-C6 disc disorder with radiculopathy|C5-C6 disc disorder with radiculopathy +C4268722|T047|ET|M50.122|ICD10CM|C6 radiculopathy due to disc disorder|C6 radiculopathy due to disc disorder +C4268722|T047|AB|M50.122|ICD10CM|Cervical disc disorder at C5-C6 level with radiculopathy|Cervical disc disorder at C5-C6 level with radiculopathy +C4268722|T047|PT|M50.122|ICD10CM|Cervical disc disorder at C5-C6 level with radiculopathy|Cervical disc disorder at C5-C6 level with radiculopathy +C4268723|T047|ET|M50.123|ICD10CM|C6-C7 disc disorder with radiculopathy|C6-C7 disc disorder with radiculopathy +C4268723|T047|ET|M50.123|ICD10CM|C7 radiculopathy due to disc disorder|C7 radiculopathy due to disc disorder +C4268723|T047|AB|M50.123|ICD10CM|Cervical disc disorder at C6-C7 level with radiculopathy|Cervical disc disorder at C6-C7 level with radiculopathy +C4268723|T047|PT|M50.123|ICD10CM|Cervical disc disorder at C6-C7 level with radiculopathy|Cervical disc disorder at C6-C7 level with radiculopathy +C3696835|T047|ET|M50.13|ICD10CM|C7-T1 disc disorder with radiculopathy|C7-T1 disc disorder with radiculopathy +C3696834|T047|ET|M50.13|ICD10CM|C8 radiculopathy due to disc disorder|C8 radiculopathy due to disc disorder +C2895370|T047|AB|M50.13|ICD10CM|Cervical disc disorder w radiculopathy, cervicothor region|Cervical disc disorder w radiculopathy, cervicothor region +C2895370|T047|PT|M50.13|ICD10CM|Cervical disc disorder with radiculopathy, cervicothoracic region|Cervical disc disorder with radiculopathy, cervicothoracic region +C0477622|T047|PT|M50.2|ICD10|Other cervical disc displacement|Other cervical disc displacement +C0477622|T047|HT|M50.2|ICD10CM|Other cervical disc displacement|Other cervical disc displacement +C0477622|T047|AB|M50.2|ICD10CM|Other cervical disc displacement|Other cervical disc displacement +C2895371|T047|AB|M50.20|ICD10CM|Other cervical disc displacement, unsp cervical region|Other cervical disc displacement, unsp cervical region +C2895371|T047|PT|M50.20|ICD10CM|Other cervical disc displacement, unspecified cervical region|Other cervical disc displacement, unspecified cervical region +C3696833|T047|ET|M50.21|ICD10CM|Other C2-C3 cervical disc displacement|Other C2-C3 cervical disc displacement +C3696832|T047|ET|M50.21|ICD10CM|Other C3-C4 cervical disc displacement|Other C3-C4 cervical disc displacement +C3696790|T047|AB|M50.21|ICD10CM|Other cervical disc displacement, high cervical region|Other cervical disc displacement, high cervical region +C3696790|T047|PT|M50.21|ICD10CM|Other cervical disc displacement, high cervical region|Other cervical disc displacement, high cervical region +C2895373|T047|AB|M50.22|ICD10CM|Other cervical disc displacement, mid-cervical region|Other cervical disc displacement, mid-cervical region +C2895373|T047|HT|M50.22|ICD10CM|Other cervical disc displacement, mid-cervical region|Other cervical disc displacement, mid-cervical region +C4268724|T047|AB|M50.220|ICD10CM|Other cerv disc displacmnt, mid-cervical region, unsp level|Other cerv disc displacmnt, mid-cervical region, unsp level +C4268724|T047|PT|M50.220|ICD10CM|Other cervical disc displacement, mid-cervical region, unspecified level|Other cervical disc displacement, mid-cervical region, unspecified level +C4268725|T047|ET|M50.221|ICD10CM|Other C4-C5 cervical disc displacement|Other C4-C5 cervical disc displacement +C4268725|T047|AB|M50.221|ICD10CM|Other cervical disc displacement at C4-C5 level|Other cervical disc displacement at C4-C5 level +C4268725|T047|PT|M50.221|ICD10CM|Other cervical disc displacement at C4-C5 level|Other cervical disc displacement at C4-C5 level +C4268726|T047|ET|M50.222|ICD10CM|Other C5-C6 cervical disc displacement|Other C5-C6 cervical disc displacement +C4268726|T047|AB|M50.222|ICD10CM|Other cervical disc displacement at C5-C6 level|Other cervical disc displacement at C5-C6 level +C4268726|T047|PT|M50.222|ICD10CM|Other cervical disc displacement at C5-C6 level|Other cervical disc displacement at C5-C6 level +C4268727|T047|ET|M50.223|ICD10CM|Other C6-C7 cervical disc displacement|Other C6-C7 cervical disc displacement +C4268727|T047|AB|M50.223|ICD10CM|Other cervical disc displacement at C6-C7 level|Other cervical disc displacement at C6-C7 level +C4268727|T047|PT|M50.223|ICD10CM|Other cervical disc displacement at C6-C7 level|Other cervical disc displacement at C6-C7 level +C3696828|T047|ET|M50.23|ICD10CM|Other C7-T1 cervical disc displacement|Other C7-T1 cervical disc displacement +C2895374|T047|AB|M50.23|ICD10CM|Other cervical disc displacement, cervicothoracic region|Other cervical disc displacement, cervicothoracic region +C2895374|T047|PT|M50.23|ICD10CM|Other cervical disc displacement, cervicothoracic region|Other cervical disc displacement, cervicothoracic region +C0477623|T047|HT|M50.3|ICD10CM|Other cervical disc degeneration|Other cervical disc degeneration +C0477623|T047|AB|M50.3|ICD10CM|Other cervical disc degeneration|Other cervical disc degeneration +C0477623|T047|PT|M50.3|ICD10|Other cervical disc degeneration|Other cervical disc degeneration +C2895375|T047|AB|M50.30|ICD10CM|Other cervical disc degeneration, unsp cervical region|Other cervical disc degeneration, unsp cervical region +C2895375|T047|PT|M50.30|ICD10CM|Other cervical disc degeneration, unspecified cervical region|Other cervical disc degeneration, unspecified cervical region +C3696827|T047|ET|M50.31|ICD10CM|Other C2-C3 cervical disc degeneration|Other C2-C3 cervical disc degeneration +C3696826|T047|ET|M50.31|ICD10CM|Other C3-C4 cervical disc degeneration|Other C3-C4 cervical disc degeneration +C3696789|T047|AB|M50.31|ICD10CM|Other cervical disc degeneration, high cervical region|Other cervical disc degeneration, high cervical region +C3696789|T047|PT|M50.31|ICD10CM|Other cervical disc degeneration, high cervical region|Other cervical disc degeneration, high cervical region +C2895377|T047|AB|M50.32|ICD10CM|Other cervical disc degeneration, mid-cervical region|Other cervical disc degeneration, mid-cervical region +C2895377|T047|HT|M50.32|ICD10CM|Other cervical disc degeneration, mid-cervical region|Other cervical disc degeneration, mid-cervical region +C4268728|T047|AB|M50.320|ICD10CM|Other cerv disc degeneration, mid-cervical rgn, unsp level|Other cerv disc degeneration, mid-cervical rgn, unsp level +C4268728|T047|PT|M50.320|ICD10CM|Other cervical disc degeneration, mid-cervical region, unspecified level|Other cervical disc degeneration, mid-cervical region, unspecified level +C4268729|T047|ET|M50.321|ICD10CM|Other C4-C5 cervical disc degeneration|Other C4-C5 cervical disc degeneration +C4268729|T047|AB|M50.321|ICD10CM|Other cervical disc degeneration at C4-C5 level|Other cervical disc degeneration at C4-C5 level +C4268729|T047|PT|M50.321|ICD10CM|Other cervical disc degeneration at C4-C5 level|Other cervical disc degeneration at C4-C5 level +C4268730|T047|ET|M50.322|ICD10CM|Other C5-C6 cervical disc degeneration|Other C5-C6 cervical disc degeneration +C4268730|T047|AB|M50.322|ICD10CM|Other cervical disc degeneration at C5-C6 level|Other cervical disc degeneration at C5-C6 level +C4268730|T047|PT|M50.322|ICD10CM|Other cervical disc degeneration at C5-C6 level|Other cervical disc degeneration at C5-C6 level +C4268731|T047|ET|M50.323|ICD10CM|Other C6-C7 cervical disc degeneration|Other C6-C7 cervical disc degeneration +C4268731|T047|AB|M50.323|ICD10CM|Other cervical disc degeneration at C6-C7 level|Other cervical disc degeneration at C6-C7 level +C4268731|T047|PT|M50.323|ICD10CM|Other cervical disc degeneration at C6-C7 level|Other cervical disc degeneration at C6-C7 level +C3696822|T047|ET|M50.33|ICD10CM|Other C7-T1 cervical disc degeneration|Other C7-T1 cervical disc degeneration +C2895378|T047|AB|M50.33|ICD10CM|Other cervical disc degeneration, cervicothoracic region|Other cervical disc degeneration, cervicothoracic region +C2895378|T047|PT|M50.33|ICD10CM|Other cervical disc degeneration, cervicothoracic region|Other cervical disc degeneration, cervicothoracic region +C0477624|T047|PT|M50.8|ICD10|Other cervical disc disorders|Other cervical disc disorders +C0477624|T047|HT|M50.8|ICD10CM|Other cervical disc disorders|Other cervical disc disorders +C0477624|T047|AB|M50.8|ICD10CM|Other cervical disc disorders|Other cervical disc disorders +C2895379|T047|AB|M50.80|ICD10CM|Other cervical disc disorders, unspecified cervical region|Other cervical disc disorders, unspecified cervical region +C2895379|T047|PT|M50.80|ICD10CM|Other cervical disc disorders, unspecified cervical region|Other cervical disc disorders, unspecified cervical region +C3696821|T047|ET|M50.81|ICD10CM|Other C2-C3 cervical disc disorders|Other C2-C3 cervical disc disorders +C3696820|T047|ET|M50.81|ICD10CM|Other C3-C4 cervical disc disorders|Other C3-C4 cervical disc disorders +C3696788|T047|AB|M50.81|ICD10CM|Other cervical disc disorders, high cervical region|Other cervical disc disorders, high cervical region +C3696788|T047|PT|M50.81|ICD10CM|Other cervical disc disorders, high cervical region|Other cervical disc disorders, high cervical region +C2895381|T047|AB|M50.82|ICD10CM|Other cervical disc disorders, mid-cervical region|Other cervical disc disorders, mid-cervical region +C2895381|T047|HT|M50.82|ICD10CM|Other cervical disc disorders, mid-cervical region|Other cervical disc disorders, mid-cervical region +C4268732|T047|AB|M50.820|ICD10CM|Other cervical disc disord, mid-cervical region, unsp level|Other cervical disc disord, mid-cervical region, unsp level +C4268732|T047|PT|M50.820|ICD10CM|Other cervical disc disorders, mid-cervical region, unspecified level|Other cervical disc disorders, mid-cervical region, unspecified level +C4268733|T047|ET|M50.821|ICD10CM|Other C4-C5 cervical disc disorders|Other C4-C5 cervical disc disorders +C4268733|T047|AB|M50.821|ICD10CM|Other cervical disc disorders at C4-C5 level|Other cervical disc disorders at C4-C5 level +C4268733|T047|PT|M50.821|ICD10CM|Other cervical disc disorders at C4-C5 level|Other cervical disc disorders at C4-C5 level +C4268734|T047|ET|M50.822|ICD10CM|Other C5-C6 cervical disc disorders|Other C5-C6 cervical disc disorders +C4268734|T047|AB|M50.822|ICD10CM|Other cervical disc disorders at C5-C6 level|Other cervical disc disorders at C5-C6 level +C4268734|T047|PT|M50.822|ICD10CM|Other cervical disc disorders at C5-C6 level|Other cervical disc disorders at C5-C6 level +C4268735|T047|ET|M50.823|ICD10CM|Other C6-C7 cervical disc disorders|Other C6-C7 cervical disc disorders +C4268735|T047|AB|M50.823|ICD10CM|Other cervical disc disorders at C6-C7 level|Other cervical disc disorders at C6-C7 level +C4268735|T047|PT|M50.823|ICD10CM|Other cervical disc disorders at C6-C7 level|Other cervical disc disorders at C6-C7 level +C3696816|T047|ET|M50.83|ICD10CM|Other C7-T1 cervical disc disorders|Other C7-T1 cervical disc disorders +C2895382|T047|AB|M50.83|ICD10CM|Other cervical disc disorders, cervicothoracic region|Other cervical disc disorders, cervicothoracic region +C2895382|T047|PT|M50.83|ICD10CM|Other cervical disc disorders, cervicothoracic region|Other cervical disc disorders, cervicothoracic region +C0477633|T047|HT|M50.9|ICD10CM|Cervical disc disorder, unspecified|Cervical disc disorder, unspecified +C0477633|T047|AB|M50.9|ICD10CM|Cervical disc disorder, unspecified|Cervical disc disorder, unspecified +C0477633|T047|PT|M50.9|ICD10|Cervical disc disorder, unspecified|Cervical disc disorder, unspecified +C2895383|T047|AB|M50.90|ICD10CM|Cervical disc disorder, unsp, unspecified cervical region|Cervical disc disorder, unsp, unspecified cervical region +C2895383|T047|PT|M50.90|ICD10CM|Cervical disc disorder, unspecified, unspecified cervical region|Cervical disc disorder, unspecified, unspecified cervical region +C3696815|T047|ET|M50.91|ICD10CM|C2-C3 cervical disc disorder, unspecified|C2-C3 cervical disc disorder, unspecified +C3696814|T047|ET|M50.91|ICD10CM|C3-C4 cervical disc disorder, unspecified|C3-C4 cervical disc disorder, unspecified +C3696787|T047|AB|M50.91|ICD10CM|Cervical disc disorder, unspecified, high cervical region|Cervical disc disorder, unspecified, high cervical region +C3696787|T047|PT|M50.91|ICD10CM|Cervical disc disorder, unspecified, high cervical region|Cervical disc disorder, unspecified, high cervical region +C2895385|T047|AB|M50.92|ICD10CM|Cervical disc disorder, unspecified, mid-cervical region|Cervical disc disorder, unspecified, mid-cervical region +C2895385|T047|HT|M50.92|ICD10CM|Cervical disc disorder, unspecified, mid-cervical region|Cervical disc disorder, unspecified, mid-cervical region +C4268736|T047|AB|M50.920|ICD10CM|Unsp cervical disc disorder, mid-cervical region, unsp level|Unsp cervical disc disorder, mid-cervical region, unsp level +C4268736|T047|PT|M50.920|ICD10CM|Unspecified cervical disc disorder, mid-cervical region, unspecified level|Unspecified cervical disc disorder, mid-cervical region, unspecified level +C4268737|T047|ET|M50.921|ICD10CM|Unspecified C4-C5 cervical disc disorder|Unspecified C4-C5 cervical disc disorder +C4268737|T047|AB|M50.921|ICD10CM|Unspecified cervical disc disorder at C4-C5 level|Unspecified cervical disc disorder at C4-C5 level +C4268737|T047|PT|M50.921|ICD10CM|Unspecified cervical disc disorder at C4-C5 level|Unspecified cervical disc disorder at C4-C5 level +C4268738|T047|ET|M50.922|ICD10CM|Unspecified C5-C6 cervical disc disorder|Unspecified C5-C6 cervical disc disorder +C4268738|T047|AB|M50.922|ICD10CM|Unspecified cervical disc disorder at C5-C6 level|Unspecified cervical disc disorder at C5-C6 level +C4268738|T047|PT|M50.922|ICD10CM|Unspecified cervical disc disorder at C5-C6 level|Unspecified cervical disc disorder at C5-C6 level +C4268739|T047|ET|M50.923|ICD10CM|Unspecified C6-C7 cervical disc disorder|Unspecified C6-C7 cervical disc disorder +C4268739|T047|AB|M50.923|ICD10CM|Unspecified cervical disc disorder at C6-C7 level|Unspecified cervical disc disorder at C6-C7 level +C4268739|T047|PT|M50.923|ICD10CM|Unspecified cervical disc disorder at C6-C7 level|Unspecified cervical disc disorder at C6-C7 level +C3696810|T047|ET|M50.93|ICD10CM|C7-T1 cervical disc disorder, unspecified|C7-T1 cervical disc disorder, unspecified +C2895386|T047|AB|M50.93|ICD10CM|Cervical disc disorder, unspecified, cervicothoracic region|Cervical disc disorder, unspecified, cervicothoracic region +C2895386|T047|PT|M50.93|ICD10CM|Cervical disc disorder, unspecified, cervicothoracic region|Cervical disc disorder, unspecified, cervicothoracic region +C0494967|T047|HT|M51|ICD10|Other intervertebral disc disorders|Other intervertebral disc disorders +C2895387|T047|AB|M51|ICD10CM|Thoracic, thoracolum, and lumbosacral intvrt disc disorders|Thoracic, thoracolum, and lumbosacral intvrt disc disorders +C2895387|T047|HT|M51|ICD10CM|Thoracic, thoracolumbar, and lumbosacral intervertebral disc disorders|Thoracic, thoracolumbar, and lumbosacral intervertebral disc disorders +C0477625|T047|PT|M51.0|ICD10|Lumbar and other intervertebral disc disorders with myelopathy|Lumbar and other intervertebral disc disorders with myelopathy +C2895388|T047|HT|M51.0|ICD10CM|Thoracic, thoracolumbar and lumbosacral intervertebral disc disorders with myelopathy|Thoracic, thoracolumbar and lumbosacral intervertebral disc disorders with myelopathy +C2895388|T047|AB|M51.0|ICD10CM|Thoracic, thrclm and lumbosacr intvrt disc disord w myelpath|Thoracic, thrclm and lumbosacr intvrt disc disord w myelpath +C0158269|T047|AB|M51.04|ICD10CM|Intervertebral disc disorders w myelopathy, thoracic region|Intervertebral disc disorders w myelopathy, thoracic region +C0158269|T047|PT|M51.04|ICD10CM|Intervertebral disc disorders with myelopathy, thoracic region|Intervertebral disc disorders with myelopathy, thoracic region +C2895389|T047|PT|M51.05|ICD10CM|Intervertebral disc disorders with myelopathy, thoracolumbar region|Intervertebral disc disorders with myelopathy, thoracolumbar region +C2895389|T047|AB|M51.05|ICD10CM|Intvrt disc disorders w myelopathy, thoracolumbar region|Intvrt disc disorders w myelopathy, thoracolumbar region +C0158270|T047|AB|M51.06|ICD10CM|Intervertebral disc disorders with myelopathy, lumbar region|Intervertebral disc disorders with myelopathy, lumbar region +C0158270|T047|PT|M51.06|ICD10CM|Intervertebral disc disorders with myelopathy, lumbar region|Intervertebral disc disorders with myelopathy, lumbar region +C0477626|T047|PT|M51.1|ICD10|Lumbar and other intervertebral disc disorders with radiculopathy|Lumbar and other intervertebral disc disorders with radiculopathy +C2895391|T046|ET|M51.1|ICD10CM|Sciatica due to intervertebral disc disorder|Sciatica due to intervertebral disc disorder +C3648513|T047|AB|M51.1|ICD10CM|Thor, thrclm & lumbosacr intvrt disc disord w radiculopathy|Thor, thrclm & lumbosacr intvrt disc disord w radiculopathy +C3648513|T047|HT|M51.1|ICD10CM|Thoracic, thoracolumbar and lumbosacral intervertebral disc disorders with radiculopathy|Thoracic, thoracolumbar and lumbosacral intervertebral disc disorders with radiculopathy +C2895393|T047|PT|M51.14|ICD10CM|Intervertebral disc disorders with radiculopathy, thoracic region|Intervertebral disc disorders with radiculopathy, thoracic region +C2895393|T047|AB|M51.14|ICD10CM|Intvrt disc disorders w radiculopathy, thoracic region|Intvrt disc disorders w radiculopathy, thoracic region +C2895394|T047|PT|M51.15|ICD10CM|Intervertebral disc disorders with radiculopathy, thoracolumbar region|Intervertebral disc disorders with radiculopathy, thoracolumbar region +C2895394|T047|AB|M51.15|ICD10CM|Intvrt disc disorders w radiculopathy, thoracolumbar region|Intvrt disc disorders w radiculopathy, thoracolumbar region +C2895395|T047|AB|M51.16|ICD10CM|Intervertebral disc disorders w radiculopathy, lumbar region|Intervertebral disc disorders w radiculopathy, lumbar region +C2895395|T047|PT|M51.16|ICD10CM|Intervertebral disc disorders with radiculopathy, lumbar region|Intervertebral disc disorders with radiculopathy, lumbar region +C2895396|T047|PT|M51.17|ICD10CM|Intervertebral disc disorders with radiculopathy, lumbosacral region|Intervertebral disc disorders with radiculopathy, lumbosacral region +C2895396|T047|AB|M51.17|ICD10CM|Intvrt disc disorders w radiculopathy, lumbosacral region|Intvrt disc disorders w radiculopathy, lumbosacral region +C1403232|T047|ET|M51.2|ICD10CM|Lumbago due to displacement of intervertebral disc|Lumbago due to displacement of intervertebral disc +C2895397|T047|AB|M51.2|ICD10CM|Oth thoracic, thrclm and lumbosacr intvrt disc displacmnt|Oth thoracic, thrclm and lumbosacr intvrt disc displacmnt +C0477627|T047|PT|M51.2|ICD10|Other specified intervertebral disc displacement|Other specified intervertebral disc displacement +C2895397|T047|HT|M51.2|ICD10CM|Other thoracic, thoracolumbar and lumbosacral intervertebral disc displacement|Other thoracic, thoracolumbar and lumbosacral intervertebral disc displacement +C2895398|T047|AB|M51.24|ICD10CM|Other intervertebral disc displacement, thoracic region|Other intervertebral disc displacement, thoracic region +C2895398|T047|PT|M51.24|ICD10CM|Other intervertebral disc displacement, thoracic region|Other intervertebral disc displacement, thoracic region +C2895399|T047|AB|M51.25|ICD10CM|Other intervertebral disc displacement, thoracolumbar region|Other intervertebral disc displacement, thoracolumbar region +C2895399|T047|PT|M51.25|ICD10CM|Other intervertebral disc displacement, thoracolumbar region|Other intervertebral disc displacement, thoracolumbar region +C2895400|T047|AB|M51.26|ICD10CM|Other intervertebral disc displacement, lumbar region|Other intervertebral disc displacement, lumbar region +C2895400|T047|PT|M51.26|ICD10CM|Other intervertebral disc displacement, lumbar region|Other intervertebral disc displacement, lumbar region +C2895401|T047|AB|M51.27|ICD10CM|Other intervertebral disc displacement, lumbosacral region|Other intervertebral disc displacement, lumbosacral region +C2895401|T047|PT|M51.27|ICD10CM|Other intervertebral disc displacement, lumbosacral region|Other intervertebral disc displacement, lumbosacral region +C2895402|T047|AB|M51.3|ICD10CM|Oth thoracic, thrclm and lumbosacr intvrt disc degeneration|Oth thoracic, thrclm and lumbosacr intvrt disc degeneration +C0477628|T047|PT|M51.3|ICD10|Other specified intervertebral disc degeneration|Other specified intervertebral disc degeneration +C2895402|T047|HT|M51.3|ICD10CM|Other thoracic, thoracolumbar and lumbosacral intervertebral disc degeneration|Other thoracic, thoracolumbar and lumbosacral intervertebral disc degeneration +C2895403|T047|AB|M51.34|ICD10CM|Other intervertebral disc degeneration, thoracic region|Other intervertebral disc degeneration, thoracic region +C2895403|T047|PT|M51.34|ICD10CM|Other intervertebral disc degeneration, thoracic region|Other intervertebral disc degeneration, thoracic region +C2895404|T047|AB|M51.35|ICD10CM|Other intervertebral disc degeneration, thoracolumbar region|Other intervertebral disc degeneration, thoracolumbar region +C2895404|T047|PT|M51.35|ICD10CM|Other intervertebral disc degeneration, thoracolumbar region|Other intervertebral disc degeneration, thoracolumbar region +C2895405|T047|AB|M51.36|ICD10CM|Other intervertebral disc degeneration, lumbar region|Other intervertebral disc degeneration, lumbar region +C2895405|T047|PT|M51.36|ICD10CM|Other intervertebral disc degeneration, lumbar region|Other intervertebral disc degeneration, lumbar region +C2895406|T047|AB|M51.37|ICD10CM|Other intervertebral disc degeneration, lumbosacral region|Other intervertebral disc degeneration, lumbosacral region +C2895406|T047|PT|M51.37|ICD10CM|Other intervertebral disc degeneration, lumbosacral region|Other intervertebral disc degeneration, lumbosacral region +C0410632|T047|PT|M51.4|ICD10|Schmorl's nodes|Schmorl's nodes +C0410632|T047|HT|M51.4|ICD10CM|Schmorl's nodes|Schmorl's nodes +C0410632|T047|AB|M51.4|ICD10CM|Schmorl's nodes|Schmorl's nodes +C0158259|T047|AB|M51.44|ICD10CM|Schmorl's nodes, thoracic region|Schmorl's nodes, thoracic region +C0158259|T047|PT|M51.44|ICD10CM|Schmorl's nodes, thoracic region|Schmorl's nodes, thoracic region +C2895407|T047|AB|M51.45|ICD10CM|Schmorl's nodes, thoracolumbar region|Schmorl's nodes, thoracolumbar region +C2895407|T047|PT|M51.45|ICD10CM|Schmorl's nodes, thoracolumbar region|Schmorl's nodes, thoracolumbar region +C0158260|T047|AB|M51.46|ICD10CM|Schmorl's nodes, lumbar region|Schmorl's nodes, lumbar region +C0158260|T047|PT|M51.46|ICD10CM|Schmorl's nodes, lumbar region|Schmorl's nodes, lumbar region +C2895408|T047|AB|M51.47|ICD10CM|Schmorl's nodes, lumbosacral region|Schmorl's nodes, lumbosacral region +C2895408|T047|PT|M51.47|ICD10CM|Schmorl's nodes, lumbosacral region|Schmorl's nodes, lumbosacral region +C2895409|T047|AB|M51.8|ICD10CM|Oth thoracic, thoracolum and lumbosacr intvrt disc disorders|Oth thoracic, thoracolum and lumbosacr intvrt disc disorders +C0477629|T047|PT|M51.8|ICD10|Other specified intervertebral disc disorders|Other specified intervertebral disc disorders +C2895409|T047|HT|M51.8|ICD10CM|Other thoracic, thoracolumbar and lumbosacral intervertebral disc disorders|Other thoracic, thoracolumbar and lumbosacral intervertebral disc disorders +C2895410|T047|AB|M51.84|ICD10CM|Other intervertebral disc disorders, thoracic region|Other intervertebral disc disorders, thoracic region +C2895410|T047|PT|M51.84|ICD10CM|Other intervertebral disc disorders, thoracic region|Other intervertebral disc disorders, thoracic region +C2895411|T047|AB|M51.85|ICD10CM|Other intervertebral disc disorders, thoracolumbar region|Other intervertebral disc disorders, thoracolumbar region +C2895411|T047|PT|M51.85|ICD10CM|Other intervertebral disc disorders, thoracolumbar region|Other intervertebral disc disorders, thoracolumbar region +C2895412|T047|AB|M51.86|ICD10CM|Other intervertebral disc disorders, lumbar region|Other intervertebral disc disorders, lumbar region +C2895412|T047|PT|M51.86|ICD10CM|Other intervertebral disc disorders, lumbar region|Other intervertebral disc disorders, lumbar region +C2895413|T047|AB|M51.87|ICD10CM|Other intervertebral disc disorders, lumbosacral region|Other intervertebral disc disorders, lumbosacral region +C2895413|T047|PT|M51.87|ICD10CM|Other intervertebral disc disorders, lumbosacral region|Other intervertebral disc disorders, lumbosacral region +C0158252|T047|PT|M51.9|ICD10|Intervertebral disc disorder, unspecified|Intervertebral disc disorder, unspecified +C2895414|T047|AB|M51.9|ICD10CM|Unsp thoracic, thoracolum and lumbosacr intvrt disc disorder|Unsp thoracic, thoracolum and lumbosacr intvrt disc disorder +C2895414|T047|PT|M51.9|ICD10CM|Unspecified thoracic, thoracolumbar and lumbosacral intervertebral disc disorder|Unspecified thoracic, thoracolumbar and lumbosacral intervertebral disc disorder +C2895415|T047|AB|M53|ICD10CM|Other and unspecified dorsopathies, not elsewhere classified|Other and unspecified dorsopathies, not elsewhere classified +C2895415|T047|HT|M53|ICD10CM|Other and unspecified dorsopathies, not elsewhere classified|Other and unspecified dorsopathies, not elsewhere classified +C0494969|T047|HT|M53|ICD10|Other dorsopathies, not elsewhere classified|Other dorsopathies, not elsewhere classified +C2355645|T047|PT|M53.0|ICD10|Cervicocranial syndrome|Cervicocranial syndrome +C2355645|T047|PT|M53.0|ICD10CM|Cervicocranial syndrome|Cervicocranial syndrome +C2355645|T047|AB|M53.0|ICD10CM|Cervicocranial syndrome|Cervicocranial syndrome +C0376378|T047|ET|M53.0|ICD10CM|Posterior cervical sympathetic syndrome|Posterior cervical sympathetic syndrome +C0158281|T047|PT|M53.1|ICD10|Cervicobrachial syndrome|Cervicobrachial syndrome +C0158281|T047|PT|M53.1|ICD10CM|Cervicobrachial syndrome|Cervicobrachial syndrome +C0158281|T047|AB|M53.1|ICD10CM|Cervicobrachial syndrome|Cervicobrachial syndrome +C0410648|T047|HT|M53.2|ICD10CM|Spinal instabilities|Spinal instabilities +C0410648|T047|AB|M53.2|ICD10CM|Spinal instabilities|Spinal instabilities +C0410648|T047|PT|M53.2|ICD10|Spinal instabilities|Spinal instabilities +C0410648|T047|HT|M53.2X|ICD10CM|Spinal instabilities|Spinal instabilities +C0410648|T047|AB|M53.2X|ICD10CM|Spinal instabilities|Spinal instabilities +C0838760|T047|PT|M53.2X1|ICD10CM|Spinal instabilities, occipito-atlanto-axial region|Spinal instabilities, occipito-atlanto-axial region +C0838760|T047|AB|M53.2X1|ICD10CM|Spinal instabilities, occipito-atlanto-axial region|Spinal instabilities, occipito-atlanto-axial region +C0410652|T047|PT|M53.2X2|ICD10CM|Spinal instabilities, cervical region|Spinal instabilities, cervical region +C0410652|T047|AB|M53.2X2|ICD10CM|Spinal instabilities, cervical region|Spinal instabilities, cervical region +C0838762|T047|PT|M53.2X3|ICD10CM|Spinal instabilities, cervicothoracic region|Spinal instabilities, cervicothoracic region +C0838762|T047|AB|M53.2X3|ICD10CM|Spinal instabilities, cervicothoracic region|Spinal instabilities, cervicothoracic region +C0410650|T047|PT|M53.2X4|ICD10CM|Spinal instabilities, thoracic region|Spinal instabilities, thoracic region +C0410650|T047|AB|M53.2X4|ICD10CM|Spinal instabilities, thoracic region|Spinal instabilities, thoracic region +C0838764|T047|PT|M53.2X5|ICD10CM|Spinal instabilities, thoracolumbar region|Spinal instabilities, thoracolumbar region +C0838764|T047|AB|M53.2X5|ICD10CM|Spinal instabilities, thoracolumbar region|Spinal instabilities, thoracolumbar region +C0838765|T047|PT|M53.2X6|ICD10CM|Spinal instabilities, lumbar region|Spinal instabilities, lumbar region +C0838765|T047|AB|M53.2X6|ICD10CM|Spinal instabilities, lumbar region|Spinal instabilities, lumbar region +C0838766|T047|PT|M53.2X7|ICD10CM|Spinal instabilities, lumbosacral region|Spinal instabilities, lumbosacral region +C0838766|T047|AB|M53.2X7|ICD10CM|Spinal instabilities, lumbosacral region|Spinal instabilities, lumbosacral region +C0838767|T047|PT|M53.2X8|ICD10CM|Spinal instabilities, sacral and sacrococcygeal region|Spinal instabilities, sacral and sacrococcygeal region +C0838767|T047|AB|M53.2X8|ICD10CM|Spinal instabilities, sacral and sacrococcygeal region|Spinal instabilities, sacral and sacrococcygeal region +C0410648|T047|PT|M53.2X9|ICD10CM|Spinal instabilities, site unspecified|Spinal instabilities, site unspecified +C0410648|T047|AB|M53.2X9|ICD10CM|Spinal instabilities, site unspecified|Spinal instabilities, site unspecified +C0009193|T184|ET|M53.3|ICD10CM|Coccygodynia|Coccygodynia +C0869064|T047|PT|M53.3|ICD10|Sacrococcygeal disorders, not elsewhere classified|Sacrococcygeal disorders, not elsewhere classified +C0869064|T047|PT|M53.3|ICD10CM|Sacrococcygeal disorders, not elsewhere classified|Sacrococcygeal disorders, not elsewhere classified +C0869064|T047|AB|M53.3|ICD10CM|Sacrococcygeal disorders, not elsewhere classified|Sacrococcygeal disorders, not elsewhere classified +C0477631|T047|HT|M53.8|ICD10CM|Other specified dorsopathies|Other specified dorsopathies +C0477631|T047|AB|M53.8|ICD10CM|Other specified dorsopathies|Other specified dorsopathies +C0477631|T047|PT|M53.8|ICD10|Other specified dorsopathies|Other specified dorsopathies +C0477631|T047|PT|M53.80|ICD10CM|Other specified dorsopathies, site unspecified|Other specified dorsopathies, site unspecified +C0477631|T047|AB|M53.80|ICD10CM|Other specified dorsopathies, site unspecified|Other specified dorsopathies, site unspecified +C0838770|T047|PT|M53.81|ICD10CM|Other specified dorsopathies, occipito-atlanto-axial region|Other specified dorsopathies, occipito-atlanto-axial region +C0838770|T047|AB|M53.81|ICD10CM|Other specified dorsopathies, occipito-atlanto-axial region|Other specified dorsopathies, occipito-atlanto-axial region +C0838771|T047|PT|M53.82|ICD10CM|Other specified dorsopathies, cervical region|Other specified dorsopathies, cervical region +C0838771|T047|AB|M53.82|ICD10CM|Other specified dorsopathies, cervical region|Other specified dorsopathies, cervical region +C0838772|T047|PT|M53.83|ICD10CM|Other specified dorsopathies, cervicothoracic region|Other specified dorsopathies, cervicothoracic region +C0838772|T047|AB|M53.83|ICD10CM|Other specified dorsopathies, cervicothoracic region|Other specified dorsopathies, cervicothoracic region +C0838773|T047|PT|M53.84|ICD10CM|Other specified dorsopathies, thoracic region|Other specified dorsopathies, thoracic region +C0838773|T047|AB|M53.84|ICD10CM|Other specified dorsopathies, thoracic region|Other specified dorsopathies, thoracic region +C0838774|T047|PT|M53.85|ICD10CM|Other specified dorsopathies, thoracolumbar region|Other specified dorsopathies, thoracolumbar region +C0838774|T047|AB|M53.85|ICD10CM|Other specified dorsopathies, thoracolumbar region|Other specified dorsopathies, thoracolumbar region +C0838775|T047|PT|M53.86|ICD10CM|Other specified dorsopathies, lumbar region|Other specified dorsopathies, lumbar region +C0838775|T047|AB|M53.86|ICD10CM|Other specified dorsopathies, lumbar region|Other specified dorsopathies, lumbar region +C0838776|T047|PT|M53.87|ICD10CM|Other specified dorsopathies, lumbosacral region|Other specified dorsopathies, lumbosacral region +C0838776|T047|AB|M53.87|ICD10CM|Other specified dorsopathies, lumbosacral region|Other specified dorsopathies, lumbosacral region +C0838777|T047|AB|M53.88|ICD10CM|Oth dorsopathies, sacral and sacrococcygeal region|Oth dorsopathies, sacral and sacrococcygeal region +C0838777|T047|PT|M53.88|ICD10CM|Other specified dorsopathies, sacral and sacrococcygeal region|Other specified dorsopathies, sacral and sacrococcygeal region +C3241938|T047|PT|M53.9|ICD10|Dorsopathy, unspecified|Dorsopathy, unspecified +C3241938|T047|AB|M53.9|ICD10CM|Dorsopathy, unspecified|Dorsopathy, unspecified +C3241938|T047|PT|M53.9|ICD10CM|Dorsopathy, unspecified|Dorsopathy, unspecified +C0004604|T184|HT|M54|ICD10CM|Dorsalgia|Dorsalgia +C0004604|T184|AB|M54|ICD10CM|Dorsalgia|Dorsalgia +C0004604|T184|HT|M54|ICD10|Dorsalgia|Dorsalgia +C0494971|T047|HT|M54.0|ICD10CM|Panniculitis affecting regions of neck and back|Panniculitis affecting regions of neck and back +C0494971|T047|AB|M54.0|ICD10CM|Panniculitis affecting regions of neck and back|Panniculitis affecting regions of neck and back +C0494971|T047|PT|M54.0|ICD10|Panniculitis affecting regions of neck and back|Panniculitis affecting regions of neck and back +C0494971|T047|AB|M54.00|ICD10CM|Panniculitis affecting regions of neck and back, site unsp|Panniculitis affecting regions of neck and back, site unsp +C0494971|T047|PT|M54.00|ICD10CM|Panniculitis affecting regions of neck and back, site unspecified|Panniculitis affecting regions of neck and back, site unspecified +C0838790|T047|AB|M54.01|ICD10CM|Panniculitis aff regions of neck/bk, occipt-atlan-ax region|Panniculitis aff regions of neck/bk, occipt-atlan-ax region +C0838790|T047|PT|M54.01|ICD10CM|Panniculitis affecting regions of neck and back, occipito-atlanto-axial region|Panniculitis affecting regions of neck and back, occipito-atlanto-axial region +C0838791|T047|PT|M54.02|ICD10CM|Panniculitis affecting regions of neck and back, cervical region|Panniculitis affecting regions of neck and back, cervical region +C0838791|T047|AB|M54.02|ICD10CM|Panniculitis affecting regions of neck/bk, cervical region|Panniculitis affecting regions of neck/bk, cervical region +C0838792|T047|AB|M54.03|ICD10CM|Panniculitis aff regions of neck/bk, cervicothor region|Panniculitis aff regions of neck/bk, cervicothor region +C0838792|T047|PT|M54.03|ICD10CM|Panniculitis affecting regions of neck and back, cervicothoracic region|Panniculitis affecting regions of neck and back, cervicothoracic region +C0838793|T047|PT|M54.04|ICD10CM|Panniculitis affecting regions of neck and back, thoracic region|Panniculitis affecting regions of neck and back, thoracic region +C0838793|T047|AB|M54.04|ICD10CM|Panniculitis affecting regions of neck/bk, thoracic region|Panniculitis affecting regions of neck/bk, thoracic region +C0838794|T047|PT|M54.05|ICD10CM|Panniculitis affecting regions of neck and back, thoracolumbar region|Panniculitis affecting regions of neck and back, thoracolumbar region +C0838794|T047|AB|M54.05|ICD10CM|Panniculitis affecting regions of neck/bk, thoracolum region|Panniculitis affecting regions of neck/bk, thoracolum region +C0838795|T047|PT|M54.06|ICD10CM|Panniculitis affecting regions of neck and back, lumbar region|Panniculitis affecting regions of neck and back, lumbar region +C0838795|T047|AB|M54.06|ICD10CM|Panniculitis affecting regions of neck/bk, lumbar region|Panniculitis affecting regions of neck/bk, lumbar region +C0838796|T047|PT|M54.07|ICD10CM|Panniculitis affecting regions of neck and back, lumbosacral region|Panniculitis affecting regions of neck and back, lumbosacral region +C0838796|T047|AB|M54.07|ICD10CM|Panniculitis affecting regions of neck/bk, lumbosacr region|Panniculitis affecting regions of neck/bk, lumbosacr region +C0838797|T047|AB|M54.08|ICD10CM|Panniculitis aff regions of neck/bk, sacr/sacrocygl region|Panniculitis aff regions of neck/bk, sacr/sacrocygl region +C0838797|T047|PT|M54.08|ICD10CM|Panniculitis affecting regions of neck and back, sacral and sacrococcygeal region|Panniculitis affecting regions of neck and back, sacral and sacrococcygeal region +C0838789|T047|AB|M54.09|ICD10CM|Panniculitis aff regions, neck/bk, multiple sites in spine|Panniculitis aff regions, neck/bk, multiple sites in spine +C0838789|T047|PT|M54.09|ICD10CM|Panniculitis affecting regions, neck and back, multiple sites in spine|Panniculitis affecting regions, neck and back, multiple sites in spine +C1442952|T047|ET|M54.1|ICD10CM|Brachial neuritis or radiculitis NOS|Brachial neuritis or radiculitis NOS +C2895416|T047|ET|M54.1|ICD10CM|Lumbar neuritis or radiculitis NOS|Lumbar neuritis or radiculitis NOS +C2895417|T047|ET|M54.1|ICD10CM|Lumbosacral neuritis or radiculitis NOS|Lumbosacral neuritis or radiculitis NOS +C0034544|T047|ET|M54.1|ICD10CM|Radiculitis NOS|Radiculitis NOS +C0700594|T047|HT|M54.1|ICD10CM|Radiculopathy|Radiculopathy +C0700594|T047|AB|M54.1|ICD10CM|Radiculopathy|Radiculopathy +C0700594|T047|PT|M54.1|ICD10|Radiculopathy|Radiculopathy +C2895418|T047|ET|M54.1|ICD10CM|Thoracic neuritis or radiculitis NOS|Thoracic neuritis or radiculitis NOS +C0700594|T047|PT|M54.10|ICD10CM|Radiculopathy, site unspecified|Radiculopathy, site unspecified +C0700594|T047|AB|M54.10|ICD10CM|Radiculopathy, site unspecified|Radiculopathy, site unspecified +C0838800|T047|PT|M54.11|ICD10CM|Radiculopathy, occipito-atlanto-axial region|Radiculopathy, occipito-atlanto-axial region +C0838800|T047|AB|M54.11|ICD10CM|Radiculopathy, occipito-atlanto-axial region|Radiculopathy, occipito-atlanto-axial region +C0838801|T047|PT|M54.12|ICD10CM|Radiculopathy, cervical region|Radiculopathy, cervical region +C0838801|T047|AB|M54.12|ICD10CM|Radiculopathy, cervical region|Radiculopathy, cervical region +C0838802|T047|PT|M54.13|ICD10CM|Radiculopathy, cervicothoracic region|Radiculopathy, cervicothoracic region +C0838802|T047|AB|M54.13|ICD10CM|Radiculopathy, cervicothoracic region|Radiculopathy, cervicothoracic region +C0838803|T047|PT|M54.14|ICD10CM|Radiculopathy, thoracic region|Radiculopathy, thoracic region +C0838803|T047|AB|M54.14|ICD10CM|Radiculopathy, thoracic region|Radiculopathy, thoracic region +C0838804|T047|PT|M54.15|ICD10CM|Radiculopathy, thoracolumbar region|Radiculopathy, thoracolumbar region +C0838804|T047|AB|M54.15|ICD10CM|Radiculopathy, thoracolumbar region|Radiculopathy, thoracolumbar region +C1263855|T047|PT|M54.16|ICD10CM|Radiculopathy, lumbar region|Radiculopathy, lumbar region +C1263855|T047|AB|M54.16|ICD10CM|Radiculopathy, lumbar region|Radiculopathy, lumbar region +C0154738|T047|PT|M54.17|ICD10CM|Radiculopathy, lumbosacral region|Radiculopathy, lumbosacral region +C0154738|T047|AB|M54.17|ICD10CM|Radiculopathy, lumbosacral region|Radiculopathy, lumbosacral region +C0838807|T047|PT|M54.18|ICD10CM|Radiculopathy, sacral and sacrococcygeal region|Radiculopathy, sacral and sacrococcygeal region +C0838807|T047|AB|M54.18|ICD10CM|Radiculopathy, sacral and sacrococcygeal region|Radiculopathy, sacral and sacrococcygeal region +C0007859|T184|PT|M54.2|ICD10CM|Cervicalgia|Cervicalgia +C0007859|T184|AB|M54.2|ICD10CM|Cervicalgia|Cervicalgia +C0007859|T184|PT|M54.2|ICD10|Cervicalgia|Cervicalgia +C0036396|T184|PT|M54.3|ICD10|Sciatica|Sciatica +C0036396|T184|HT|M54.3|ICD10CM|Sciatica|Sciatica +C0036396|T184|AB|M54.3|ICD10CM|Sciatica|Sciatica +C0036396|T184|AB|M54.30|ICD10CM|Sciatica, unspecified side|Sciatica, unspecified side +C0036396|T184|PT|M54.30|ICD10CM|Sciatica, unspecified side|Sciatica, unspecified side +C2895419|T047|AB|M54.31|ICD10CM|Sciatica, right side|Sciatica, right side +C2895419|T047|PT|M54.31|ICD10CM|Sciatica, right side|Sciatica, right side +C2895420|T047|AB|M54.32|ICD10CM|Sciatica, left side|Sciatica, left side +C2895420|T047|PT|M54.32|ICD10CM|Sciatica, left side|Sciatica, left side +C0452160|T047|HT|M54.4|ICD10CM|Lumbago with sciatica|Lumbago with sciatica +C0452160|T047|AB|M54.4|ICD10CM|Lumbago with sciatica|Lumbago with sciatica +C0452160|T047|PT|M54.4|ICD10|Lumbago with sciatica|Lumbago with sciatica +C2895421|T047|AB|M54.40|ICD10CM|Lumbago with sciatica, unspecified side|Lumbago with sciatica, unspecified side +C2895421|T047|PT|M54.40|ICD10CM|Lumbago with sciatica, unspecified side|Lumbago with sciatica, unspecified side +C2895422|T047|AB|M54.41|ICD10CM|Lumbago with sciatica, right side|Lumbago with sciatica, right side +C2895422|T047|PT|M54.41|ICD10CM|Lumbago with sciatica, right side|Lumbago with sciatica, right side +C2895423|T047|AB|M54.42|ICD10CM|Lumbago with sciatica, left side|Lumbago with sciatica, left side +C2895423|T047|PT|M54.42|ICD10CM|Lumbago with sciatica, left side|Lumbago with sciatica, left side +C0235632|T184|ET|M54.5|ICD10CM|Loin pain|Loin pain +C0024031|T184|PT|M54.5|ICD10|Low back pain|Low back pain +C0024031|T184|PT|M54.5|ICD10CM|Low back pain|Low back pain +C0024031|T184|AB|M54.5|ICD10CM|Low back pain|Low back pain +C0024031|T184|ET|M54.5|ICD10CM|Lumbago NOS|Lumbago NOS +C0677061|T184|PT|M54.6|ICD10|Pain in thoracic spine|Pain in thoracic spine +C0677061|T184|PT|M54.6|ICD10CM|Pain in thoracic spine|Pain in thoracic spine +C0677061|T184|AB|M54.6|ICD10CM|Pain in thoracic spine|Pain in thoracic spine +C0477632|T184|PT|M54.8|ICD10|Other dorsalgia|Other dorsalgia +C0477632|T184|HT|M54.8|ICD10CM|Other dorsalgia|Other dorsalgia +C0477632|T184|AB|M54.8|ICD10CM|Other dorsalgia|Other dorsalgia +C0007863|T047|PT|M54.81|ICD10CM|Occipital neuralgia|Occipital neuralgia +C0007863|T047|AB|M54.81|ICD10CM|Occipital neuralgia|Occipital neuralgia +C0477632|T184|PT|M54.89|ICD10CM|Other dorsalgia|Other dorsalgia +C0477632|T184|AB|M54.89|ICD10CM|Other dorsalgia|Other dorsalgia +C0004604|T184|ET|M54.9|ICD10CM|Back pain NOS|Back pain NOS +C0004604|T184|ET|M54.9|ICD10CM|Backache NOS|Backache NOS +C0004604|T184|PT|M54.9|ICD10CM|Dorsalgia, unspecified|Dorsalgia, unspecified +C0004604|T184|AB|M54.9|ICD10CM|Dorsalgia, unspecified|Dorsalgia, unspecified +C0004604|T184|PT|M54.9|ICD10|Dorsalgia, unspecified|Dorsalgia, unspecified +C0027121|T047|HT|M60|ICD10|Myositis|Myositis +C0027121|T047|HT|M60|ICD10CM|Myositis|Myositis +C0027121|T047|AB|M60|ICD10CM|Myositis|Myositis +C0026848|T047|HT|M60-M63|ICD10CM|Disorders of muscles (M60-M63)|Disorders of muscles (M60-M63) +C0026848|T047|HT|M60-M63.9|ICD10|Disorders of muscles|Disorders of muscles +C4268740|T047|HT|M60-M79|ICD10CM|Soft tissue disorders (M60-M79)|Soft tissue disorders (M60-M79) +C0263978|T047|HT|M60-M79.9|ICD10|Soft tissue disorders|Soft tissue disorders +C0158353|T047|PT|M60.0|ICD10|Infective myositis|Infective myositis +C0158353|T047|HT|M60.0|ICD10CM|Infective myositis|Infective myositis +C0158353|T047|AB|M60.0|ICD10CM|Infective myositis|Infective myositis +C0041188|T047|ET|M60.0|ICD10CM|Tropical pyomyositis|Tropical pyomyositis +C0158353|T047|HT|M60.00|ICD10CM|Infective myositis, unspecified site|Infective myositis, unspecified site +C0158353|T047|AB|M60.00|ICD10CM|Infective myositis, unspecified site|Infective myositis, unspecified site +C2895424|T047|ET|M60.000|ICD10CM|Infective myositis, right upper limb NOS|Infective myositis, right upper limb NOS +C2895425|T047|AB|M60.000|ICD10CM|Infective myositis, unspecified right arm|Infective myositis, unspecified right arm +C2895425|T047|PT|M60.000|ICD10CM|Infective myositis, unspecified right arm|Infective myositis, unspecified right arm +C2895426|T047|ET|M60.001|ICD10CM|Infective myositis, left upper limb NOS|Infective myositis, left upper limb NOS +C2895427|T047|AB|M60.001|ICD10CM|Infective myositis, unspecified left arm|Infective myositis, unspecified left arm +C2895427|T047|PT|M60.001|ICD10CM|Infective myositis, unspecified left arm|Infective myositis, unspecified left arm +C2895429|T047|AB|M60.002|ICD10CM|Infective myositis, unspecified arm|Infective myositis, unspecified arm +C2895429|T047|PT|M60.002|ICD10CM|Infective myositis, unspecified arm|Infective myositis, unspecified arm +C2895428|T047|ET|M60.002|ICD10CM|Infective myositis, upper limb NOS|Infective myositis, upper limb NOS +C2895430|T047|ET|M60.003|ICD10CM|Infective myositis, right lower limb NOS|Infective myositis, right lower limb NOS +C2895431|T047|AB|M60.003|ICD10CM|Infective myositis, unspecified right leg|Infective myositis, unspecified right leg +C2895431|T047|PT|M60.003|ICD10CM|Infective myositis, unspecified right leg|Infective myositis, unspecified right leg +C2895432|T047|ET|M60.004|ICD10CM|Infective myositis, left lower limb NOS|Infective myositis, left lower limb NOS +C2895433|T047|AB|M60.004|ICD10CM|Infective myositis, unspecified left leg|Infective myositis, unspecified left leg +C2895433|T047|PT|M60.004|ICD10CM|Infective myositis, unspecified left leg|Infective myositis, unspecified left leg +C2895434|T047|ET|M60.005|ICD10CM|Infective myositis, lower limb NOS|Infective myositis, lower limb NOS +C2895435|T047|AB|M60.005|ICD10CM|Infective myositis, unspecified leg|Infective myositis, unspecified leg +C2895435|T047|PT|M60.005|ICD10CM|Infective myositis, unspecified leg|Infective myositis, unspecified leg +C0158353|T047|AB|M60.009|ICD10CM|Infective myositis, unspecified site|Infective myositis, unspecified site +C0158353|T047|PT|M60.009|ICD10CM|Infective myositis, unspecified site|Infective myositis, unspecified site +C0410245|T047|AB|M60.01|ICD10CM|Infective myositis, shoulder|Infective myositis, shoulder +C0410245|T047|HT|M60.01|ICD10CM|Infective myositis, shoulder|Infective myositis, shoulder +C2895436|T047|AB|M60.011|ICD10CM|Infective myositis, right shoulder|Infective myositis, right shoulder +C2895436|T047|PT|M60.011|ICD10CM|Infective myositis, right shoulder|Infective myositis, right shoulder +C2895437|T047|AB|M60.012|ICD10CM|Infective myositis, left shoulder|Infective myositis, left shoulder +C2895437|T047|PT|M60.012|ICD10CM|Infective myositis, left shoulder|Infective myositis, left shoulder +C2895438|T047|AB|M60.019|ICD10CM|Infective myositis, unspecified shoulder|Infective myositis, unspecified shoulder +C2895438|T047|PT|M60.019|ICD10CM|Infective myositis, unspecified shoulder|Infective myositis, unspecified shoulder +C0410244|T047|HT|M60.02|ICD10CM|Infective myositis, upper arm|Infective myositis, upper arm +C0410244|T047|AB|M60.02|ICD10CM|Infective myositis, upper arm|Infective myositis, upper arm +C2895439|T047|AB|M60.021|ICD10CM|Infective myositis, right upper arm|Infective myositis, right upper arm +C2895439|T047|PT|M60.021|ICD10CM|Infective myositis, right upper arm|Infective myositis, right upper arm +C2895440|T047|AB|M60.022|ICD10CM|Infective myositis, left upper arm|Infective myositis, left upper arm +C2895440|T047|PT|M60.022|ICD10CM|Infective myositis, left upper arm|Infective myositis, left upper arm +C2895441|T047|AB|M60.029|ICD10CM|Infective myositis, unspecified upper arm|Infective myositis, unspecified upper arm +C2895441|T047|PT|M60.029|ICD10CM|Infective myositis, unspecified upper arm|Infective myositis, unspecified upper arm +C0410243|T047|HT|M60.03|ICD10CM|Infective myositis, forearm|Infective myositis, forearm +C0410243|T047|AB|M60.03|ICD10CM|Infective myositis, forearm|Infective myositis, forearm +C2895442|T047|AB|M60.031|ICD10CM|Infective myositis, right forearm|Infective myositis, right forearm +C2895442|T047|PT|M60.031|ICD10CM|Infective myositis, right forearm|Infective myositis, right forearm +C2895443|T047|AB|M60.032|ICD10CM|Infective myositis, left forearm|Infective myositis, left forearm +C2895443|T047|PT|M60.032|ICD10CM|Infective myositis, left forearm|Infective myositis, left forearm +C2895444|T047|AB|M60.039|ICD10CM|Infective myositis, unspecified forearm|Infective myositis, unspecified forearm +C2895444|T047|PT|M60.039|ICD10CM|Infective myositis, unspecified forearm|Infective myositis, unspecified forearm +C2895445|T047|AB|M60.04|ICD10CM|Infective myositis, hand and fingers|Infective myositis, hand and fingers +C2895445|T047|HT|M60.04|ICD10CM|Infective myositis, hand and fingers|Infective myositis, hand and fingers +C2895446|T047|AB|M60.041|ICD10CM|Infective myositis, right hand|Infective myositis, right hand +C2895446|T047|PT|M60.041|ICD10CM|Infective myositis, right hand|Infective myositis, right hand +C2895447|T047|AB|M60.042|ICD10CM|Infective myositis, left hand|Infective myositis, left hand +C2895447|T047|PT|M60.042|ICD10CM|Infective myositis, left hand|Infective myositis, left hand +C2895448|T047|AB|M60.043|ICD10CM|Infective myositis, unspecified hand|Infective myositis, unspecified hand +C2895448|T047|PT|M60.043|ICD10CM|Infective myositis, unspecified hand|Infective myositis, unspecified hand +C2895449|T047|AB|M60.044|ICD10CM|Infective myositis, right finger(s)|Infective myositis, right finger(s) +C2895449|T047|PT|M60.044|ICD10CM|Infective myositis, right finger(s)|Infective myositis, right finger(s) +C2895450|T047|AB|M60.045|ICD10CM|Infective myositis, left finger(s)|Infective myositis, left finger(s) +C2895450|T047|PT|M60.045|ICD10CM|Infective myositis, left finger(s)|Infective myositis, left finger(s) +C2895451|T047|AB|M60.046|ICD10CM|Infective myositis, unspecified finger(s)|Infective myositis, unspecified finger(s) +C2895451|T047|PT|M60.046|ICD10CM|Infective myositis, unspecified finger(s)|Infective myositis, unspecified finger(s) +C0410240|T047|AB|M60.05|ICD10CM|Infective myositis, thigh|Infective myositis, thigh +C0410240|T047|HT|M60.05|ICD10CM|Infective myositis, thigh|Infective myositis, thigh +C2895452|T047|AB|M60.051|ICD10CM|Infective myositis, right thigh|Infective myositis, right thigh +C2895452|T047|PT|M60.051|ICD10CM|Infective myositis, right thigh|Infective myositis, right thigh +C2895453|T047|AB|M60.052|ICD10CM|Infective myositis, left thigh|Infective myositis, left thigh +C2895453|T047|PT|M60.052|ICD10CM|Infective myositis, left thigh|Infective myositis, left thigh +C2895454|T047|AB|M60.059|ICD10CM|Infective myositis, unspecified thigh|Infective myositis, unspecified thigh +C2895454|T047|PT|M60.059|ICD10CM|Infective myositis, unspecified thigh|Infective myositis, unspecified thigh +C0410239|T047|HT|M60.06|ICD10CM|Infective myositis, lower leg|Infective myositis, lower leg +C0410239|T047|AB|M60.06|ICD10CM|Infective myositis, lower leg|Infective myositis, lower leg +C2895455|T047|AB|M60.061|ICD10CM|Infective myositis, right lower leg|Infective myositis, right lower leg +C2895455|T047|PT|M60.061|ICD10CM|Infective myositis, right lower leg|Infective myositis, right lower leg +C2895456|T047|AB|M60.062|ICD10CM|Infective myositis, left lower leg|Infective myositis, left lower leg +C2895456|T047|PT|M60.062|ICD10CM|Infective myositis, left lower leg|Infective myositis, left lower leg +C2895457|T047|AB|M60.069|ICD10CM|Infective myositis, unspecified lower leg|Infective myositis, unspecified lower leg +C2895457|T047|PT|M60.069|ICD10CM|Infective myositis, unspecified lower leg|Infective myositis, unspecified lower leg +C2895458|T047|AB|M60.07|ICD10CM|Infective myositis, ankle, foot and toes|Infective myositis, ankle, foot and toes +C2895458|T047|HT|M60.07|ICD10CM|Infective myositis, ankle, foot and toes|Infective myositis, ankle, foot and toes +C2895459|T047|AB|M60.070|ICD10CM|Infective myositis, right ankle|Infective myositis, right ankle +C2895459|T047|PT|M60.070|ICD10CM|Infective myositis, right ankle|Infective myositis, right ankle +C2895460|T047|AB|M60.071|ICD10CM|Infective myositis, left ankle|Infective myositis, left ankle +C2895460|T047|PT|M60.071|ICD10CM|Infective myositis, left ankle|Infective myositis, left ankle +C2895461|T047|AB|M60.072|ICD10CM|Infective myositis, unspecified ankle|Infective myositis, unspecified ankle +C2895461|T047|PT|M60.072|ICD10CM|Infective myositis, unspecified ankle|Infective myositis, unspecified ankle +C2895462|T047|AB|M60.073|ICD10CM|Infective myositis, right foot|Infective myositis, right foot +C2895462|T047|PT|M60.073|ICD10CM|Infective myositis, right foot|Infective myositis, right foot +C2895463|T047|AB|M60.074|ICD10CM|Infective myositis, left foot|Infective myositis, left foot +C2895463|T047|PT|M60.074|ICD10CM|Infective myositis, left foot|Infective myositis, left foot +C2895464|T047|AB|M60.075|ICD10CM|Infective myositis, unspecified foot|Infective myositis, unspecified foot +C2895464|T047|PT|M60.075|ICD10CM|Infective myositis, unspecified foot|Infective myositis, unspecified foot +C2895465|T047|AB|M60.076|ICD10CM|Infective myositis, right toe(s)|Infective myositis, right toe(s) +C2895465|T047|PT|M60.076|ICD10CM|Infective myositis, right toe(s)|Infective myositis, right toe(s) +C2895466|T047|AB|M60.077|ICD10CM|Infective myositis, left toe(s)|Infective myositis, left toe(s) +C2895466|T047|PT|M60.077|ICD10CM|Infective myositis, left toe(s)|Infective myositis, left toe(s) +C2895467|T047|AB|M60.078|ICD10CM|Infective myositis, unspecified toe(s)|Infective myositis, unspecified toe(s) +C2895467|T047|PT|M60.078|ICD10CM|Infective myositis, unspecified toe(s)|Infective myositis, unspecified toe(s) +C0838835|T047|PT|M60.08|ICD10CM|Infective myositis, other site|Infective myositis, other site +C0838835|T047|AB|M60.08|ICD10CM|Infective myositis, other site|Infective myositis, other site +C0838829|T047|PT|M60.09|ICD10CM|Infective myositis, multiple sites|Infective myositis, multiple sites +C0838829|T047|AB|M60.09|ICD10CM|Infective myositis, multiple sites|Infective myositis, multiple sites +C0158362|T047|PT|M60.1|ICD10|Interstitial myositis|Interstitial myositis +C0158362|T047|HT|M60.1|ICD10CM|Interstitial myositis|Interstitial myositis +C0158362|T047|AB|M60.1|ICD10CM|Interstitial myositis|Interstitial myositis +C0838846|T047|AB|M60.10|ICD10CM|Interstitial myositis of unspecified site|Interstitial myositis of unspecified site +C0838846|T047|PT|M60.10|ICD10CM|Interstitial myositis of unspecified site|Interstitial myositis of unspecified site +C2895468|T047|AB|M60.11|ICD10CM|Interstitial myositis, shoulder|Interstitial myositis, shoulder +C2895468|T047|HT|M60.11|ICD10CM|Interstitial myositis, shoulder|Interstitial myositis, shoulder +C2895469|T047|AB|M60.111|ICD10CM|Interstitial myositis, right shoulder|Interstitial myositis, right shoulder +C2895469|T047|PT|M60.111|ICD10CM|Interstitial myositis, right shoulder|Interstitial myositis, right shoulder +C2895470|T047|AB|M60.112|ICD10CM|Interstitial myositis, left shoulder|Interstitial myositis, left shoulder +C2895470|T047|PT|M60.112|ICD10CM|Interstitial myositis, left shoulder|Interstitial myositis, left shoulder +C2895471|T047|AB|M60.119|ICD10CM|Interstitial myositis, unspecified shoulder|Interstitial myositis, unspecified shoulder +C2895471|T047|PT|M60.119|ICD10CM|Interstitial myositis, unspecified shoulder|Interstitial myositis, unspecified shoulder +C0838839|T047|HT|M60.12|ICD10CM|Interstitial myositis, upper arm|Interstitial myositis, upper arm +C0838839|T047|AB|M60.12|ICD10CM|Interstitial myositis, upper arm|Interstitial myositis, upper arm +C2895472|T047|AB|M60.121|ICD10CM|Interstitial myositis, right upper arm|Interstitial myositis, right upper arm +C2895472|T047|PT|M60.121|ICD10CM|Interstitial myositis, right upper arm|Interstitial myositis, right upper arm +C2895473|T047|AB|M60.122|ICD10CM|Interstitial myositis, left upper arm|Interstitial myositis, left upper arm +C2895473|T047|PT|M60.122|ICD10CM|Interstitial myositis, left upper arm|Interstitial myositis, left upper arm +C2895474|T047|AB|M60.129|ICD10CM|Interstitial myositis, unspecified upper arm|Interstitial myositis, unspecified upper arm +C2895474|T047|PT|M60.129|ICD10CM|Interstitial myositis, unspecified upper arm|Interstitial myositis, unspecified upper arm +C0838840|T047|HT|M60.13|ICD10CM|Interstitial myositis, forearm|Interstitial myositis, forearm +C0838840|T047|AB|M60.13|ICD10CM|Interstitial myositis, forearm|Interstitial myositis, forearm +C2895475|T047|AB|M60.131|ICD10CM|Interstitial myositis, right forearm|Interstitial myositis, right forearm +C2895475|T047|PT|M60.131|ICD10CM|Interstitial myositis, right forearm|Interstitial myositis, right forearm +C2895476|T047|AB|M60.132|ICD10CM|Interstitial myositis, left forearm|Interstitial myositis, left forearm +C2895476|T047|PT|M60.132|ICD10CM|Interstitial myositis, left forearm|Interstitial myositis, left forearm +C2895477|T047|AB|M60.139|ICD10CM|Interstitial myositis, unspecified forearm|Interstitial myositis, unspecified forearm +C2895477|T047|PT|M60.139|ICD10CM|Interstitial myositis, unspecified forearm|Interstitial myositis, unspecified forearm +C0838841|T047|HT|M60.14|ICD10CM|Interstitial myositis, hand|Interstitial myositis, hand +C0838841|T047|AB|M60.14|ICD10CM|Interstitial myositis, hand|Interstitial myositis, hand +C2895478|T047|AB|M60.141|ICD10CM|Interstitial myositis, right hand|Interstitial myositis, right hand +C2895478|T047|PT|M60.141|ICD10CM|Interstitial myositis, right hand|Interstitial myositis, right hand +C2895479|T047|AB|M60.142|ICD10CM|Interstitial myositis, left hand|Interstitial myositis, left hand +C2895479|T047|PT|M60.142|ICD10CM|Interstitial myositis, left hand|Interstitial myositis, left hand +C2895480|T047|AB|M60.149|ICD10CM|Interstitial myositis, unspecified hand|Interstitial myositis, unspecified hand +C2895480|T047|PT|M60.149|ICD10CM|Interstitial myositis, unspecified hand|Interstitial myositis, unspecified hand +C2895481|T047|AB|M60.15|ICD10CM|Interstitial myositis, thigh|Interstitial myositis, thigh +C2895481|T047|HT|M60.15|ICD10CM|Interstitial myositis, thigh|Interstitial myositis, thigh +C2895482|T047|AB|M60.151|ICD10CM|Interstitial myositis, right thigh|Interstitial myositis, right thigh +C2895482|T047|PT|M60.151|ICD10CM|Interstitial myositis, right thigh|Interstitial myositis, right thigh +C2895483|T047|AB|M60.152|ICD10CM|Interstitial myositis, left thigh|Interstitial myositis, left thigh +C2895483|T047|PT|M60.152|ICD10CM|Interstitial myositis, left thigh|Interstitial myositis, left thigh +C2895484|T047|AB|M60.159|ICD10CM|Interstitial myositis, unspecified thigh|Interstitial myositis, unspecified thigh +C2895484|T047|PT|M60.159|ICD10CM|Interstitial myositis, unspecified thigh|Interstitial myositis, unspecified thigh +C0838843|T047|HT|M60.16|ICD10CM|Interstitial myositis, lower leg|Interstitial myositis, lower leg +C0838843|T047|AB|M60.16|ICD10CM|Interstitial myositis, lower leg|Interstitial myositis, lower leg +C2895485|T047|AB|M60.161|ICD10CM|Interstitial myositis, right lower leg|Interstitial myositis, right lower leg +C2895485|T047|PT|M60.161|ICD10CM|Interstitial myositis, right lower leg|Interstitial myositis, right lower leg +C2895486|T047|AB|M60.162|ICD10CM|Interstitial myositis, left lower leg|Interstitial myositis, left lower leg +C2895486|T047|PT|M60.162|ICD10CM|Interstitial myositis, left lower leg|Interstitial myositis, left lower leg +C2895487|T047|AB|M60.169|ICD10CM|Interstitial myositis, unspecified lower leg|Interstitial myositis, unspecified lower leg +C2895487|T047|PT|M60.169|ICD10CM|Interstitial myositis, unspecified lower leg|Interstitial myositis, unspecified lower leg +C0838844|T047|HT|M60.17|ICD10CM|Interstitial myositis, ankle and foot|Interstitial myositis, ankle and foot +C0838844|T047|AB|M60.17|ICD10CM|Interstitial myositis, ankle and foot|Interstitial myositis, ankle and foot +C2895488|T047|AB|M60.171|ICD10CM|Interstitial myositis, right ankle and foot|Interstitial myositis, right ankle and foot +C2895488|T047|PT|M60.171|ICD10CM|Interstitial myositis, right ankle and foot|Interstitial myositis, right ankle and foot +C2895489|T047|AB|M60.172|ICD10CM|Interstitial myositis, left ankle and foot|Interstitial myositis, left ankle and foot +C2895489|T047|PT|M60.172|ICD10CM|Interstitial myositis, left ankle and foot|Interstitial myositis, left ankle and foot +C2895490|T047|AB|M60.179|ICD10CM|Interstitial myositis, unspecified ankle and foot|Interstitial myositis, unspecified ankle and foot +C2895490|T047|PT|M60.179|ICD10CM|Interstitial myositis, unspecified ankle and foot|Interstitial myositis, unspecified ankle and foot +C2895491|T047|AB|M60.18|ICD10CM|Interstitial myositis, other site|Interstitial myositis, other site +C2895491|T047|PT|M60.18|ICD10CM|Interstitial myositis, other site|Interstitial myositis, other site +C0838837|T047|PT|M60.19|ICD10CM|Interstitial myositis, multiple sites|Interstitial myositis, multiple sites +C0838837|T047|AB|M60.19|ICD10CM|Interstitial myositis, multiple sites|Interstitial myositis, multiple sites +C0494972|T047|AB|M60.2|ICD10CM|Foreign body granuloma of soft tissue, NEC|Foreign body granuloma of soft tissue, NEC +C0494972|T047|HT|M60.2|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified|Foreign body granuloma of soft tissue, not elsewhere classified +C0494972|T047|PT|M60.2|ICD10|Foreign body granuloma of soft tissue, not elsewhere classified|Foreign body granuloma of soft tissue, not elsewhere classified +C1963172|T046|AB|M60.20|ICD10CM|Foreign body granuloma of soft tissue, NEC, unsp site|Foreign body granuloma of soft tissue, NEC, unsp site +C1963172|T046|PT|M60.20|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, unspecified site|Foreign body granuloma of soft tissue, not elsewhere classified, unspecified site +C2895492|T047|AB|M60.21|ICD10CM|Foreign body granuloma of soft tissue, NEC, shoulder|Foreign body granuloma of soft tissue, NEC, shoulder +C2895492|T047|HT|M60.21|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, shoulder|Foreign body granuloma of soft tissue, not elsewhere classified, shoulder +C2895493|T047|AB|M60.211|ICD10CM|Foreign body granuloma of soft tissue, NEC, right shoulder|Foreign body granuloma of soft tissue, NEC, right shoulder +C2895493|T047|PT|M60.211|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, right shoulder|Foreign body granuloma of soft tissue, not elsewhere classified, right shoulder +C2895494|T047|AB|M60.212|ICD10CM|Foreign body granuloma of soft tissue, NEC, left shoulder|Foreign body granuloma of soft tissue, NEC, left shoulder +C2895494|T047|PT|M60.212|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, left shoulder|Foreign body granuloma of soft tissue, not elsewhere classified, left shoulder +C2895495|T047|AB|M60.219|ICD10CM|Foreign body granuloma of soft tissue, NEC, unsp shoulder|Foreign body granuloma of soft tissue, NEC, unsp shoulder +C2895495|T047|PT|M60.219|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, unspecified shoulder|Foreign body granuloma of soft tissue, not elsewhere classified, unspecified shoulder +C0838849|T046|AB|M60.22|ICD10CM|Foreign body granuloma of soft tissue, NEC, upper arm|Foreign body granuloma of soft tissue, NEC, upper arm +C0838849|T046|HT|M60.22|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, upper arm|Foreign body granuloma of soft tissue, not elsewhere classified, upper arm +C2895496|T020|AB|M60.221|ICD10CM|Foreign body granuloma of soft tissue, NEC, right upper arm|Foreign body granuloma of soft tissue, NEC, right upper arm +C2895496|T020|PT|M60.221|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, right upper arm|Foreign body granuloma of soft tissue, not elsewhere classified, right upper arm +C2895497|T020|AB|M60.222|ICD10CM|Foreign body granuloma of soft tissue, NEC, left upper arm|Foreign body granuloma of soft tissue, NEC, left upper arm +C2895497|T020|PT|M60.222|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, left upper arm|Foreign body granuloma of soft tissue, not elsewhere classified, left upper arm +C2895498|T046|AB|M60.229|ICD10CM|Foreign body granuloma of soft tissue, NEC, unsp upper arm|Foreign body granuloma of soft tissue, NEC, unsp upper arm +C2895498|T046|PT|M60.229|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, unspecified upper arm|Foreign body granuloma of soft tissue, not elsewhere classified, unspecified upper arm +C0838850|T046|AB|M60.23|ICD10CM|Foreign body granuloma of soft tissue, NEC, forearm|Foreign body granuloma of soft tissue, NEC, forearm +C0838850|T046|HT|M60.23|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, forearm|Foreign body granuloma of soft tissue, not elsewhere classified, forearm +C2895499|T020|AB|M60.231|ICD10CM|Foreign body granuloma of soft tissue, NEC, right forearm|Foreign body granuloma of soft tissue, NEC, right forearm +C2895499|T020|PT|M60.231|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, right forearm|Foreign body granuloma of soft tissue, not elsewhere classified, right forearm +C2895500|T020|AB|M60.232|ICD10CM|Foreign body granuloma of soft tissue, NEC, left forearm|Foreign body granuloma of soft tissue, NEC, left forearm +C2895500|T020|PT|M60.232|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, left forearm|Foreign body granuloma of soft tissue, not elsewhere classified, left forearm +C2895501|T020|AB|M60.239|ICD10CM|Foreign body granuloma of soft tissue, NEC, unsp forearm|Foreign body granuloma of soft tissue, NEC, unsp forearm +C2895501|T020|PT|M60.239|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, unspecified forearm|Foreign body granuloma of soft tissue, not elsewhere classified, unspecified forearm +C0838851|T046|AB|M60.24|ICD10CM|Foreign body granuloma of soft tissue, NEC, hand|Foreign body granuloma of soft tissue, NEC, hand +C0838851|T046|HT|M60.24|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, hand|Foreign body granuloma of soft tissue, not elsewhere classified, hand +C2895502|T020|AB|M60.241|ICD10CM|Foreign body granuloma of soft tissue, NEC, right hand|Foreign body granuloma of soft tissue, NEC, right hand +C2895502|T020|PT|M60.241|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, right hand|Foreign body granuloma of soft tissue, not elsewhere classified, right hand +C2895503|T020|AB|M60.242|ICD10CM|Foreign body granuloma of soft tissue, NEC, left hand|Foreign body granuloma of soft tissue, NEC, left hand +C2895503|T020|PT|M60.242|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, left hand|Foreign body granuloma of soft tissue, not elsewhere classified, left hand +C2895504|T020|AB|M60.249|ICD10CM|Foreign body granuloma of soft tissue, NEC, unsp hand|Foreign body granuloma of soft tissue, NEC, unsp hand +C2895504|T020|PT|M60.249|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, unspecified hand|Foreign body granuloma of soft tissue, not elsewhere classified, unspecified hand +C2895505|T047|AB|M60.25|ICD10CM|Foreign body granuloma of soft tissue, NEC, thigh|Foreign body granuloma of soft tissue, NEC, thigh +C2895505|T047|HT|M60.25|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, thigh|Foreign body granuloma of soft tissue, not elsewhere classified, thigh +C2895506|T047|AB|M60.251|ICD10CM|Foreign body granuloma of soft tissue, NEC, right thigh|Foreign body granuloma of soft tissue, NEC, right thigh +C2895506|T047|PT|M60.251|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, right thigh|Foreign body granuloma of soft tissue, not elsewhere classified, right thigh +C2895507|T047|AB|M60.252|ICD10CM|Foreign body granuloma of soft tissue, NEC, left thigh|Foreign body granuloma of soft tissue, NEC, left thigh +C2895507|T047|PT|M60.252|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, left thigh|Foreign body granuloma of soft tissue, not elsewhere classified, left thigh +C2895508|T047|AB|M60.259|ICD10CM|Foreign body granuloma of soft tissue, NEC, unsp thigh|Foreign body granuloma of soft tissue, NEC, unsp thigh +C2895508|T047|PT|M60.259|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, unspecified thigh|Foreign body granuloma of soft tissue, not elsewhere classified, unspecified thigh +C0838853|T046|AB|M60.26|ICD10CM|Foreign body granuloma of soft tissue, NEC, lower leg|Foreign body granuloma of soft tissue, NEC, lower leg +C0838853|T046|HT|M60.26|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, lower leg|Foreign body granuloma of soft tissue, not elsewhere classified, lower leg +C2895509|T046|AB|M60.261|ICD10CM|Foreign body granuloma of soft tissue, NEC, right lower leg|Foreign body granuloma of soft tissue, NEC, right lower leg +C2895509|T046|PT|M60.261|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, right lower leg|Foreign body granuloma of soft tissue, not elsewhere classified, right lower leg +C2895510|T020|AB|M60.262|ICD10CM|Foreign body granuloma of soft tissue, NEC, left lower leg|Foreign body granuloma of soft tissue, NEC, left lower leg +C2895510|T020|PT|M60.262|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, left lower leg|Foreign body granuloma of soft tissue, not elsewhere classified, left lower leg +C2895511|T046|AB|M60.269|ICD10CM|Foreign body granuloma of soft tissue, NEC, unsp lower leg|Foreign body granuloma of soft tissue, NEC, unsp lower leg +C2895511|T046|PT|M60.269|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, unspecified lower leg|Foreign body granuloma of soft tissue, not elsewhere classified, unspecified lower leg +C0838854|T046|AB|M60.27|ICD10CM|Foreign body granuloma of soft tissue, NEC, ankle and foot|Foreign body granuloma of soft tissue, NEC, ankle and foot +C0838854|T046|HT|M60.27|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, ankle and foot|Foreign body granuloma of soft tissue, not elsewhere classified, ankle and foot +C2895512|T020|AB|M60.271|ICD10CM|Foreign body granuloma of soft tissue, NEC, right ank/ft|Foreign body granuloma of soft tissue, NEC, right ank/ft +C2895512|T020|PT|M60.271|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, right ankle and foot|Foreign body granuloma of soft tissue, not elsewhere classified, right ankle and foot +C2895513|T047|AB|M60.272|ICD10CM|Foreign body granuloma of soft tissue, NEC, left ank/ft|Foreign body granuloma of soft tissue, NEC, left ank/ft +C2895513|T047|PT|M60.272|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, left ankle and foot|Foreign body granuloma of soft tissue, not elsewhere classified, left ankle and foot +C2895514|T020|AB|M60.279|ICD10CM|Foreign body granuloma of soft tissue, NEC, unsp ank/ft|Foreign body granuloma of soft tissue, NEC, unsp ank/ft +C2895514|T020|PT|M60.279|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, unspecified ankle and foot|Foreign body granuloma of soft tissue, not elsewhere classified, unspecified ankle and foot +C0838855|T046|AB|M60.28|ICD10CM|Foreign body granuloma of soft tissue, NEC, oth site|Foreign body granuloma of soft tissue, NEC, oth site +C0838855|T046|PT|M60.28|ICD10CM|Foreign body granuloma of soft tissue, not elsewhere classified, other site|Foreign body granuloma of soft tissue, not elsewhere classified, other site +C0477634|T047|HT|M60.8|ICD10CM|Other myositis|Other myositis +C0477634|T047|AB|M60.8|ICD10CM|Other myositis|Other myositis +C0477634|T047|PT|M60.8|ICD10|Other myositis|Other myositis +C0838866|T047|AB|M60.80|ICD10CM|Other myositis, unspecified site|Other myositis, unspecified site +C0838866|T047|PT|M60.80|ICD10CM|Other myositis, unspecified site|Other myositis, unspecified site +C2895515|T047|AB|M60.81|ICD10CM|Other myositis shoulder|Other myositis shoulder +C2895515|T047|HT|M60.81|ICD10CM|Other myositis shoulder|Other myositis shoulder +C2895516|T047|AB|M60.811|ICD10CM|Other myositis, right shoulder|Other myositis, right shoulder +C2895516|T047|PT|M60.811|ICD10CM|Other myositis, right shoulder|Other myositis, right shoulder +C2895517|T047|AB|M60.812|ICD10CM|Other myositis, left shoulder|Other myositis, left shoulder +C2895517|T047|PT|M60.812|ICD10CM|Other myositis, left shoulder|Other myositis, left shoulder +C2895518|T047|AB|M60.819|ICD10CM|Other myositis, unspecified shoulder|Other myositis, unspecified shoulder +C2895518|T047|PT|M60.819|ICD10CM|Other myositis, unspecified shoulder|Other myositis, unspecified shoulder +C0838859|T047|HT|M60.82|ICD10CM|Other myositis, upper arm|Other myositis, upper arm +C0838859|T047|AB|M60.82|ICD10CM|Other myositis, upper arm|Other myositis, upper arm +C2895519|T047|AB|M60.821|ICD10CM|Other myositis, right upper arm|Other myositis, right upper arm +C2895519|T047|PT|M60.821|ICD10CM|Other myositis, right upper arm|Other myositis, right upper arm +C2895520|T047|AB|M60.822|ICD10CM|Other myositis, left upper arm|Other myositis, left upper arm +C2895520|T047|PT|M60.822|ICD10CM|Other myositis, left upper arm|Other myositis, left upper arm +C2895521|T047|AB|M60.829|ICD10CM|Other myositis, unspecified upper arm|Other myositis, unspecified upper arm +C2895521|T047|PT|M60.829|ICD10CM|Other myositis, unspecified upper arm|Other myositis, unspecified upper arm +C0838860|T047|HT|M60.83|ICD10CM|Other myositis, forearm|Other myositis, forearm +C0838860|T047|AB|M60.83|ICD10CM|Other myositis, forearm|Other myositis, forearm +C2895522|T047|AB|M60.831|ICD10CM|Other myositis, right forearm|Other myositis, right forearm +C2895522|T047|PT|M60.831|ICD10CM|Other myositis, right forearm|Other myositis, right forearm +C2895523|T047|AB|M60.832|ICD10CM|Other myositis, left forearm|Other myositis, left forearm +C2895523|T047|PT|M60.832|ICD10CM|Other myositis, left forearm|Other myositis, left forearm +C2895524|T047|AB|M60.839|ICD10CM|Other myositis, unspecified forearm|Other myositis, unspecified forearm +C2895524|T047|PT|M60.839|ICD10CM|Other myositis, unspecified forearm|Other myositis, unspecified forearm +C0838861|T047|HT|M60.84|ICD10CM|Other myositis, hand|Other myositis, hand +C0838861|T047|AB|M60.84|ICD10CM|Other myositis, hand|Other myositis, hand +C2895525|T047|AB|M60.841|ICD10CM|Other myositis, right hand|Other myositis, right hand +C2895525|T047|PT|M60.841|ICD10CM|Other myositis, right hand|Other myositis, right hand +C2895526|T047|AB|M60.842|ICD10CM|Other myositis, left hand|Other myositis, left hand +C2895526|T047|PT|M60.842|ICD10CM|Other myositis, left hand|Other myositis, left hand +C2895527|T047|AB|M60.849|ICD10CM|Other myositis, unspecified hand|Other myositis, unspecified hand +C2895527|T047|PT|M60.849|ICD10CM|Other myositis, unspecified hand|Other myositis, unspecified hand +C2895528|T047|AB|M60.85|ICD10CM|Other myositis, thigh|Other myositis, thigh +C2895528|T047|HT|M60.85|ICD10CM|Other myositis, thigh|Other myositis, thigh +C2895529|T047|AB|M60.851|ICD10CM|Other myositis, right thigh|Other myositis, right thigh +C2895529|T047|PT|M60.851|ICD10CM|Other myositis, right thigh|Other myositis, right thigh +C2895530|T047|AB|M60.852|ICD10CM|Other myositis, left thigh|Other myositis, left thigh +C2895530|T047|PT|M60.852|ICD10CM|Other myositis, left thigh|Other myositis, left thigh +C2895531|T047|AB|M60.859|ICD10CM|Other myositis, unspecified thigh|Other myositis, unspecified thigh +C2895531|T047|PT|M60.859|ICD10CM|Other myositis, unspecified thigh|Other myositis, unspecified thigh +C0838863|T047|HT|M60.86|ICD10CM|Other myositis, lower leg|Other myositis, lower leg +C0838863|T047|AB|M60.86|ICD10CM|Other myositis, lower leg|Other myositis, lower leg +C2895532|T047|AB|M60.861|ICD10CM|Other myositis, right lower leg|Other myositis, right lower leg +C2895532|T047|PT|M60.861|ICD10CM|Other myositis, right lower leg|Other myositis, right lower leg +C2895533|T047|AB|M60.862|ICD10CM|Other myositis, left lower leg|Other myositis, left lower leg +C2895533|T047|PT|M60.862|ICD10CM|Other myositis, left lower leg|Other myositis, left lower leg +C2895534|T047|AB|M60.869|ICD10CM|Other myositis, unspecified lower leg|Other myositis, unspecified lower leg +C2895534|T047|PT|M60.869|ICD10CM|Other myositis, unspecified lower leg|Other myositis, unspecified lower leg +C0838864|T047|HT|M60.87|ICD10CM|Other myositis, ankle and foot|Other myositis, ankle and foot +C0838864|T047|AB|M60.87|ICD10CM|Other myositis, ankle and foot|Other myositis, ankle and foot +C2895535|T047|AB|M60.871|ICD10CM|Other myositis, right ankle and foot|Other myositis, right ankle and foot +C2895535|T047|PT|M60.871|ICD10CM|Other myositis, right ankle and foot|Other myositis, right ankle and foot +C2895536|T047|AB|M60.872|ICD10CM|Other myositis, left ankle and foot|Other myositis, left ankle and foot +C2895536|T047|PT|M60.872|ICD10CM|Other myositis, left ankle and foot|Other myositis, left ankle and foot +C2895537|T047|AB|M60.879|ICD10CM|Other myositis, unspecified ankle and foot|Other myositis, unspecified ankle and foot +C2895537|T047|PT|M60.879|ICD10CM|Other myositis, unspecified ankle and foot|Other myositis, unspecified ankle and foot +C0838865|T047|PT|M60.88|ICD10CM|Other myositis, other site|Other myositis, other site +C0838865|T047|AB|M60.88|ICD10CM|Other myositis, other site|Other myositis, other site +C0838857|T047|PT|M60.89|ICD10CM|Other myositis, multiple sites|Other myositis, multiple sites +C0838857|T047|AB|M60.89|ICD10CM|Other myositis, multiple sites|Other myositis, multiple sites +C0027121|T047|PT|M60.9|ICD10|Myositis, unspecified|Myositis, unspecified +C0027121|T047|PT|M60.9|ICD10CM|Myositis, unspecified|Myositis, unspecified +C0027121|T047|AB|M60.9|ICD10CM|Myositis, unspecified|Myositis, unspecified +C0343251|T047|AB|M61|ICD10CM|Calcification and ossification of muscle|Calcification and ossification of muscle +C0343251|T047|HT|M61|ICD10CM|Calcification and ossification of muscle|Calcification and ossification of muscle +C0343251|T047|HT|M61|ICD10|Calcification and ossification of muscle|Calcification and ossification of muscle +C0040798|T047|PT|M61.0|ICD10|Myositis ossificans traumatica|Myositis ossificans traumatica +C0040798|T047|HT|M61.0|ICD10CM|Myositis ossificans traumatica|Myositis ossificans traumatica +C0040798|T047|AB|M61.0|ICD10CM|Myositis ossificans traumatica|Myositis ossificans traumatica +C0838886|T046|AB|M61.00|ICD10CM|Myositis ossificans traumatica, unspecified site|Myositis ossificans traumatica, unspecified site +C0838886|T046|PT|M61.00|ICD10CM|Myositis ossificans traumatica, unspecified site|Myositis ossificans traumatica, unspecified site +C2895538|T046|AB|M61.01|ICD10CM|Myositis ossificans traumatica, shoulder|Myositis ossificans traumatica, shoulder +C2895538|T046|HT|M61.01|ICD10CM|Myositis ossificans traumatica, shoulder|Myositis ossificans traumatica, shoulder +C2895539|T046|AB|M61.011|ICD10CM|Myositis ossificans traumatica, right shoulder|Myositis ossificans traumatica, right shoulder +C2895539|T046|PT|M61.011|ICD10CM|Myositis ossificans traumatica, right shoulder|Myositis ossificans traumatica, right shoulder +C2895540|T046|AB|M61.012|ICD10CM|Myositis ossificans traumatica, left shoulder|Myositis ossificans traumatica, left shoulder +C2895540|T046|PT|M61.012|ICD10CM|Myositis ossificans traumatica, left shoulder|Myositis ossificans traumatica, left shoulder +C2895541|T046|AB|M61.019|ICD10CM|Myositis ossificans traumatica, unspecified shoulder|Myositis ossificans traumatica, unspecified shoulder +C2895541|T046|PT|M61.019|ICD10CM|Myositis ossificans traumatica, unspecified shoulder|Myositis ossificans traumatica, unspecified shoulder +C0838879|T046|HT|M61.02|ICD10CM|Myositis ossificans traumatica, upper arm|Myositis ossificans traumatica, upper arm +C0838879|T046|AB|M61.02|ICD10CM|Myositis ossificans traumatica, upper arm|Myositis ossificans traumatica, upper arm +C2895542|T046|AB|M61.021|ICD10CM|Myositis ossificans traumatica, right upper arm|Myositis ossificans traumatica, right upper arm +C2895542|T046|PT|M61.021|ICD10CM|Myositis ossificans traumatica, right upper arm|Myositis ossificans traumatica, right upper arm +C2895543|T046|AB|M61.022|ICD10CM|Myositis ossificans traumatica, left upper arm|Myositis ossificans traumatica, left upper arm +C2895543|T046|PT|M61.022|ICD10CM|Myositis ossificans traumatica, left upper arm|Myositis ossificans traumatica, left upper arm +C2895544|T046|AB|M61.029|ICD10CM|Myositis ossificans traumatica, unspecified upper arm|Myositis ossificans traumatica, unspecified upper arm +C2895544|T046|PT|M61.029|ICD10CM|Myositis ossificans traumatica, unspecified upper arm|Myositis ossificans traumatica, unspecified upper arm +C0838880|T046|HT|M61.03|ICD10CM|Myositis ossificans traumatica, forearm|Myositis ossificans traumatica, forearm +C0838880|T046|AB|M61.03|ICD10CM|Myositis ossificans traumatica, forearm|Myositis ossificans traumatica, forearm +C2895545|T046|AB|M61.031|ICD10CM|Myositis ossificans traumatica, right forearm|Myositis ossificans traumatica, right forearm +C2895545|T046|PT|M61.031|ICD10CM|Myositis ossificans traumatica, right forearm|Myositis ossificans traumatica, right forearm +C2895546|T046|AB|M61.032|ICD10CM|Myositis ossificans traumatica, left forearm|Myositis ossificans traumatica, left forearm +C2895546|T046|PT|M61.032|ICD10CM|Myositis ossificans traumatica, left forearm|Myositis ossificans traumatica, left forearm +C2895547|T046|AB|M61.039|ICD10CM|Myositis ossificans traumatica, unspecified forearm|Myositis ossificans traumatica, unspecified forearm +C2895547|T046|PT|M61.039|ICD10CM|Myositis ossificans traumatica, unspecified forearm|Myositis ossificans traumatica, unspecified forearm +C0838881|T046|HT|M61.04|ICD10CM|Myositis ossificans traumatica, hand|Myositis ossificans traumatica, hand +C0838881|T046|AB|M61.04|ICD10CM|Myositis ossificans traumatica, hand|Myositis ossificans traumatica, hand +C2895548|T046|AB|M61.041|ICD10CM|Myositis ossificans traumatica, right hand|Myositis ossificans traumatica, right hand +C2895548|T046|PT|M61.041|ICD10CM|Myositis ossificans traumatica, right hand|Myositis ossificans traumatica, right hand +C2895549|T046|AB|M61.042|ICD10CM|Myositis ossificans traumatica, left hand|Myositis ossificans traumatica, left hand +C2895549|T046|PT|M61.042|ICD10CM|Myositis ossificans traumatica, left hand|Myositis ossificans traumatica, left hand +C2895550|T046|AB|M61.049|ICD10CM|Myositis ossificans traumatica, unspecified hand|Myositis ossificans traumatica, unspecified hand +C2895550|T046|PT|M61.049|ICD10CM|Myositis ossificans traumatica, unspecified hand|Myositis ossificans traumatica, unspecified hand +C2895551|T046|AB|M61.05|ICD10CM|Myositis ossificans traumatica, thigh|Myositis ossificans traumatica, thigh +C2895551|T046|HT|M61.05|ICD10CM|Myositis ossificans traumatica, thigh|Myositis ossificans traumatica, thigh +C2895552|T046|AB|M61.051|ICD10CM|Myositis ossificans traumatica, right thigh|Myositis ossificans traumatica, right thigh +C2895552|T046|PT|M61.051|ICD10CM|Myositis ossificans traumatica, right thigh|Myositis ossificans traumatica, right thigh +C2895553|T046|AB|M61.052|ICD10CM|Myositis ossificans traumatica, left thigh|Myositis ossificans traumatica, left thigh +C2895553|T046|PT|M61.052|ICD10CM|Myositis ossificans traumatica, left thigh|Myositis ossificans traumatica, left thigh +C2895554|T046|AB|M61.059|ICD10CM|Myositis ossificans traumatica, unspecified thigh|Myositis ossificans traumatica, unspecified thigh +C2895554|T046|PT|M61.059|ICD10CM|Myositis ossificans traumatica, unspecified thigh|Myositis ossificans traumatica, unspecified thigh +C0838883|T046|HT|M61.06|ICD10CM|Myositis ossificans traumatica, lower leg|Myositis ossificans traumatica, lower leg +C0838883|T046|AB|M61.06|ICD10CM|Myositis ossificans traumatica, lower leg|Myositis ossificans traumatica, lower leg +C2895555|T046|AB|M61.061|ICD10CM|Myositis ossificans traumatica, right lower leg|Myositis ossificans traumatica, right lower leg +C2895555|T046|PT|M61.061|ICD10CM|Myositis ossificans traumatica, right lower leg|Myositis ossificans traumatica, right lower leg +C2895556|T046|AB|M61.062|ICD10CM|Myositis ossificans traumatica, left lower leg|Myositis ossificans traumatica, left lower leg +C2895556|T046|PT|M61.062|ICD10CM|Myositis ossificans traumatica, left lower leg|Myositis ossificans traumatica, left lower leg +C2895557|T046|AB|M61.069|ICD10CM|Myositis ossificans traumatica, unspecified lower leg|Myositis ossificans traumatica, unspecified lower leg +C2895557|T046|PT|M61.069|ICD10CM|Myositis ossificans traumatica, unspecified lower leg|Myositis ossificans traumatica, unspecified lower leg +C0838884|T046|HT|M61.07|ICD10CM|Myositis ossificans traumatica, ankle and foot|Myositis ossificans traumatica, ankle and foot +C0838884|T046|AB|M61.07|ICD10CM|Myositis ossificans traumatica, ankle and foot|Myositis ossificans traumatica, ankle and foot +C2895558|T046|AB|M61.071|ICD10CM|Myositis ossificans traumatica, right ankle and foot|Myositis ossificans traumatica, right ankle and foot +C2895558|T046|PT|M61.071|ICD10CM|Myositis ossificans traumatica, right ankle and foot|Myositis ossificans traumatica, right ankle and foot +C2895559|T046|AB|M61.072|ICD10CM|Myositis ossificans traumatica, left ankle and foot|Myositis ossificans traumatica, left ankle and foot +C2895559|T046|PT|M61.072|ICD10CM|Myositis ossificans traumatica, left ankle and foot|Myositis ossificans traumatica, left ankle and foot +C2895560|T046|AB|M61.079|ICD10CM|Myositis ossificans traumatica, unspecified ankle and foot|Myositis ossificans traumatica, unspecified ankle and foot +C2895560|T046|PT|M61.079|ICD10CM|Myositis ossificans traumatica, unspecified ankle and foot|Myositis ossificans traumatica, unspecified ankle and foot +C0838885|T046|PT|M61.08|ICD10CM|Myositis ossificans traumatica, other site|Myositis ossificans traumatica, other site +C0838885|T046|AB|M61.08|ICD10CM|Myositis ossificans traumatica, other site|Myositis ossificans traumatica, other site +C0838877|T046|PT|M61.09|ICD10CM|Myositis ossificans traumatica, multiple sites|Myositis ossificans traumatica, multiple sites +C0838877|T046|AB|M61.09|ICD10CM|Myositis ossificans traumatica, multiple sites|Myositis ossificans traumatica, multiple sites +C0016037|T047|ET|M61.1|ICD10CM|Fibrodysplasia ossificans progressiva|Fibrodysplasia ossificans progressiva +C0016037|T047|HT|M61.1|ICD10CM|Myositis ossificans progressiva|Myositis ossificans progressiva +C0016037|T047|AB|M61.1|ICD10CM|Myositis ossificans progressiva|Myositis ossificans progressiva +C0016037|T047|PT|M61.1|ICD10|Myositis ossificans progressiva|Myositis ossificans progressiva +C0016037|T047|AB|M61.10|ICD10CM|Myositis ossificans progressiva, unspecified site|Myositis ossificans progressiva, unspecified site +C0016037|T047|PT|M61.10|ICD10CM|Myositis ossificans progressiva, unspecified site|Myositis ossificans progressiva, unspecified site +C2895561|T047|AB|M61.11|ICD10CM|Myositis ossificans progressiva, shoulder|Myositis ossificans progressiva, shoulder +C2895561|T047|HT|M61.11|ICD10CM|Myositis ossificans progressiva, shoulder|Myositis ossificans progressiva, shoulder +C2895562|T047|AB|M61.111|ICD10CM|Myositis ossificans progressiva, right shoulder|Myositis ossificans progressiva, right shoulder +C2895562|T047|PT|M61.111|ICD10CM|Myositis ossificans progressiva, right shoulder|Myositis ossificans progressiva, right shoulder +C2895563|T047|AB|M61.112|ICD10CM|Myositis ossificans progressiva, left shoulder|Myositis ossificans progressiva, left shoulder +C2895563|T047|PT|M61.112|ICD10CM|Myositis ossificans progressiva, left shoulder|Myositis ossificans progressiva, left shoulder +C2895564|T047|AB|M61.119|ICD10CM|Myositis ossificans progressiva, unspecified shoulder|Myositis ossificans progressiva, unspecified shoulder +C2895564|T047|PT|M61.119|ICD10CM|Myositis ossificans progressiva, unspecified shoulder|Myositis ossificans progressiva, unspecified shoulder +C0838889|T047|HT|M61.12|ICD10CM|Myositis ossificans progressiva, upper arm|Myositis ossificans progressiva, upper arm +C0838889|T047|AB|M61.12|ICD10CM|Myositis ossificans progressiva, upper arm|Myositis ossificans progressiva, upper arm +C2895565|T047|AB|M61.121|ICD10CM|Myositis ossificans progressiva, right upper arm|Myositis ossificans progressiva, right upper arm +C2895565|T047|PT|M61.121|ICD10CM|Myositis ossificans progressiva, right upper arm|Myositis ossificans progressiva, right upper arm +C2895566|T047|AB|M61.122|ICD10CM|Myositis ossificans progressiva, left upper arm|Myositis ossificans progressiva, left upper arm +C2895566|T047|PT|M61.122|ICD10CM|Myositis ossificans progressiva, left upper arm|Myositis ossificans progressiva, left upper arm +C2895567|T047|AB|M61.129|ICD10CM|Myositis ossificans progressiva, unspecified arm|Myositis ossificans progressiva, unspecified arm +C2895567|T047|PT|M61.129|ICD10CM|Myositis ossificans progressiva, unspecified arm|Myositis ossificans progressiva, unspecified arm +C0838890|T047|HT|M61.13|ICD10CM|Myositis ossificans progressiva, forearm|Myositis ossificans progressiva, forearm +C0838890|T047|AB|M61.13|ICD10CM|Myositis ossificans progressiva, forearm|Myositis ossificans progressiva, forearm +C2895568|T047|AB|M61.131|ICD10CM|Myositis ossificans progressiva, right forearm|Myositis ossificans progressiva, right forearm +C2895568|T047|PT|M61.131|ICD10CM|Myositis ossificans progressiva, right forearm|Myositis ossificans progressiva, right forearm +C2895569|T047|AB|M61.132|ICD10CM|Myositis ossificans progressiva, left forearm|Myositis ossificans progressiva, left forearm +C2895569|T047|PT|M61.132|ICD10CM|Myositis ossificans progressiva, left forearm|Myositis ossificans progressiva, left forearm +C2895570|T047|AB|M61.139|ICD10CM|Myositis ossificans progressiva, unspecified forearm|Myositis ossificans progressiva, unspecified forearm +C2895570|T047|PT|M61.139|ICD10CM|Myositis ossificans progressiva, unspecified forearm|Myositis ossificans progressiva, unspecified forearm +C2895571|T047|AB|M61.14|ICD10CM|Myositis ossificans progressiva, hand and finger(s)|Myositis ossificans progressiva, hand and finger(s) +C2895571|T047|HT|M61.14|ICD10CM|Myositis ossificans progressiva, hand and finger(s)|Myositis ossificans progressiva, hand and finger(s) +C2895572|T047|AB|M61.141|ICD10CM|Myositis ossificans progressiva, right hand|Myositis ossificans progressiva, right hand +C2895572|T047|PT|M61.141|ICD10CM|Myositis ossificans progressiva, right hand|Myositis ossificans progressiva, right hand +C2895573|T047|AB|M61.142|ICD10CM|Myositis ossificans progressiva, left hand|Myositis ossificans progressiva, left hand +C2895573|T047|PT|M61.142|ICD10CM|Myositis ossificans progressiva, left hand|Myositis ossificans progressiva, left hand +C2895574|T047|AB|M61.143|ICD10CM|Myositis ossificans progressiva, unspecified hand|Myositis ossificans progressiva, unspecified hand +C2895574|T047|PT|M61.143|ICD10CM|Myositis ossificans progressiva, unspecified hand|Myositis ossificans progressiva, unspecified hand +C2895575|T047|AB|M61.144|ICD10CM|Myositis ossificans progressiva, right finger(s)|Myositis ossificans progressiva, right finger(s) +C2895575|T047|PT|M61.144|ICD10CM|Myositis ossificans progressiva, right finger(s)|Myositis ossificans progressiva, right finger(s) +C2895576|T047|AB|M61.145|ICD10CM|Myositis ossificans progressiva, left finger(s)|Myositis ossificans progressiva, left finger(s) +C2895576|T047|PT|M61.145|ICD10CM|Myositis ossificans progressiva, left finger(s)|Myositis ossificans progressiva, left finger(s) +C2895577|T047|AB|M61.146|ICD10CM|Myositis ossificans progressiva, unspecified finger(s)|Myositis ossificans progressiva, unspecified finger(s) +C2895577|T047|PT|M61.146|ICD10CM|Myositis ossificans progressiva, unspecified finger(s)|Myositis ossificans progressiva, unspecified finger(s) +C2895578|T047|AB|M61.15|ICD10CM|Myositis ossificans progressiva, thigh|Myositis ossificans progressiva, thigh +C2895578|T047|HT|M61.15|ICD10CM|Myositis ossificans progressiva, thigh|Myositis ossificans progressiva, thigh +C2895579|T047|AB|M61.151|ICD10CM|Myositis ossificans progressiva, right thigh|Myositis ossificans progressiva, right thigh +C2895579|T047|PT|M61.151|ICD10CM|Myositis ossificans progressiva, right thigh|Myositis ossificans progressiva, right thigh +C2895580|T047|AB|M61.152|ICD10CM|Myositis ossificans progressiva, left thigh|Myositis ossificans progressiva, left thigh +C2895580|T047|PT|M61.152|ICD10CM|Myositis ossificans progressiva, left thigh|Myositis ossificans progressiva, left thigh +C2895581|T047|AB|M61.159|ICD10CM|Myositis ossificans progressiva, unspecified thigh|Myositis ossificans progressiva, unspecified thigh +C2895581|T047|PT|M61.159|ICD10CM|Myositis ossificans progressiva, unspecified thigh|Myositis ossificans progressiva, unspecified thigh +C0838893|T047|HT|M61.16|ICD10CM|Myositis ossificans progressiva, lower leg|Myositis ossificans progressiva, lower leg +C0838893|T047|AB|M61.16|ICD10CM|Myositis ossificans progressiva, lower leg|Myositis ossificans progressiva, lower leg +C2895582|T047|AB|M61.161|ICD10CM|Myositis ossificans progressiva, right lower leg|Myositis ossificans progressiva, right lower leg +C2895582|T047|PT|M61.161|ICD10CM|Myositis ossificans progressiva, right lower leg|Myositis ossificans progressiva, right lower leg +C2895583|T047|AB|M61.162|ICD10CM|Myositis ossificans progressiva, left lower leg|Myositis ossificans progressiva, left lower leg +C2895583|T047|PT|M61.162|ICD10CM|Myositis ossificans progressiva, left lower leg|Myositis ossificans progressiva, left lower leg +C2895584|T047|AB|M61.169|ICD10CM|Myositis ossificans progressiva, unspecified lower leg|Myositis ossificans progressiva, unspecified lower leg +C2895584|T047|PT|M61.169|ICD10CM|Myositis ossificans progressiva, unspecified lower leg|Myositis ossificans progressiva, unspecified lower leg +C2895585|T047|AB|M61.17|ICD10CM|Myositis ossificans progressiva, ankle, foot and toe(s)|Myositis ossificans progressiva, ankle, foot and toe(s) +C2895585|T047|HT|M61.17|ICD10CM|Myositis ossificans progressiva, ankle, foot and toe(s)|Myositis ossificans progressiva, ankle, foot and toe(s) +C2895586|T047|AB|M61.171|ICD10CM|Myositis ossificans progressiva, right ankle|Myositis ossificans progressiva, right ankle +C2895586|T047|PT|M61.171|ICD10CM|Myositis ossificans progressiva, right ankle|Myositis ossificans progressiva, right ankle +C2895587|T047|AB|M61.172|ICD10CM|Myositis ossificans progressiva, left ankle|Myositis ossificans progressiva, left ankle +C2895587|T047|PT|M61.172|ICD10CM|Myositis ossificans progressiva, left ankle|Myositis ossificans progressiva, left ankle +C2895588|T047|AB|M61.173|ICD10CM|Myositis ossificans progressiva, unspecified ankle|Myositis ossificans progressiva, unspecified ankle +C2895588|T047|PT|M61.173|ICD10CM|Myositis ossificans progressiva, unspecified ankle|Myositis ossificans progressiva, unspecified ankle +C2895589|T047|AB|M61.174|ICD10CM|Myositis ossificans progressiva, right foot|Myositis ossificans progressiva, right foot +C2895589|T047|PT|M61.174|ICD10CM|Myositis ossificans progressiva, right foot|Myositis ossificans progressiva, right foot +C2895590|T047|AB|M61.175|ICD10CM|Myositis ossificans progressiva, left foot|Myositis ossificans progressiva, left foot +C2895590|T047|PT|M61.175|ICD10CM|Myositis ossificans progressiva, left foot|Myositis ossificans progressiva, left foot +C2895591|T047|AB|M61.176|ICD10CM|Myositis ossificans progressiva, unspecified foot|Myositis ossificans progressiva, unspecified foot +C2895591|T047|PT|M61.176|ICD10CM|Myositis ossificans progressiva, unspecified foot|Myositis ossificans progressiva, unspecified foot +C2895592|T047|AB|M61.177|ICD10CM|Myositis ossificans progressiva, right toe(s)|Myositis ossificans progressiva, right toe(s) +C2895592|T047|PT|M61.177|ICD10CM|Myositis ossificans progressiva, right toe(s)|Myositis ossificans progressiva, right toe(s) +C2895593|T047|AB|M61.178|ICD10CM|Myositis ossificans progressiva, left toe(s)|Myositis ossificans progressiva, left toe(s) +C2895593|T047|PT|M61.178|ICD10CM|Myositis ossificans progressiva, left toe(s)|Myositis ossificans progressiva, left toe(s) +C2895594|T047|AB|M61.179|ICD10CM|Myositis ossificans progressiva, unspecified toe(s)|Myositis ossificans progressiva, unspecified toe(s) +C2895594|T047|PT|M61.179|ICD10CM|Myositis ossificans progressiva, unspecified toe(s)|Myositis ossificans progressiva, unspecified toe(s) +C0838895|T047|PT|M61.18|ICD10CM|Myositis ossificans progressiva, other site|Myositis ossificans progressiva, other site +C0838895|T047|AB|M61.18|ICD10CM|Myositis ossificans progressiva, other site|Myositis ossificans progressiva, other site +C0838887|T047|PT|M61.19|ICD10CM|Myositis ossificans progressiva, multiple sites|Myositis ossificans progressiva, multiple sites +C0838887|T047|AB|M61.19|ICD10CM|Myositis ossificans progressiva, multiple sites|Myositis ossificans progressiva, multiple sites +C2895595|T047|ET|M61.2|ICD10CM|Myositis ossificans associated with quadriplegia or paraplegia|Myositis ossificans associated with quadriplegia or paraplegia +C0343254|T047|PT|M61.2|ICD10|Paralytic calcification and ossification of muscle|Paralytic calcification and ossification of muscle +C0343254|T047|HT|M61.2|ICD10CM|Paralytic calcification and ossification of muscle|Paralytic calcification and ossification of muscle +C0343254|T047|AB|M61.2|ICD10CM|Paralytic calcification and ossification of muscle|Paralytic calcification and ossification of muscle +C0343254|T047|AB|M61.20|ICD10CM|Paralytic calcifcn and ossification of muscle, unsp site|Paralytic calcifcn and ossification of muscle, unsp site +C0343254|T047|PT|M61.20|ICD10CM|Paralytic calcification and ossification of muscle, unspecified site|Paralytic calcification and ossification of muscle, unspecified site +C2895596|T047|AB|M61.21|ICD10CM|Paralytic calcification and ossification of muscle, shoulder|Paralytic calcification and ossification of muscle, shoulder +C2895596|T047|HT|M61.21|ICD10CM|Paralytic calcification and ossification of muscle, shoulder|Paralytic calcification and ossification of muscle, shoulder +C2895597|T047|AB|M61.211|ICD10CM|Paralytic calcifcn and ossification of muscle, r shoulder|Paralytic calcifcn and ossification of muscle, r shoulder +C2895597|T047|PT|M61.211|ICD10CM|Paralytic calcification and ossification of muscle, right shoulder|Paralytic calcification and ossification of muscle, right shoulder +C2895598|T047|AB|M61.212|ICD10CM|Paralytic calcifcn and ossification of muscle, left shoulder|Paralytic calcifcn and ossification of muscle, left shoulder +C2895598|T047|PT|M61.212|ICD10CM|Paralytic calcification and ossification of muscle, left shoulder|Paralytic calcification and ossification of muscle, left shoulder +C2895599|T047|AB|M61.219|ICD10CM|Paralytic calcifcn and ossification of muscle, unsp shoulder|Paralytic calcifcn and ossification of muscle, unsp shoulder +C2895599|T047|PT|M61.219|ICD10CM|Paralytic calcification and ossification of muscle, unspecified shoulder|Paralytic calcification and ossification of muscle, unspecified shoulder +C0838899|T047|AB|M61.22|ICD10CM|Paralytic calcifcn and ossification of muscle, upper arm|Paralytic calcifcn and ossification of muscle, upper arm +C0838899|T047|HT|M61.22|ICD10CM|Paralytic calcification and ossification of muscle, upper arm|Paralytic calcification and ossification of muscle, upper arm +C2895600|T047|AB|M61.221|ICD10CM|Paralytic calcification and ossification of muscle, r up arm|Paralytic calcification and ossification of muscle, r up arm +C2895600|T047|PT|M61.221|ICD10CM|Paralytic calcification and ossification of muscle, right upper arm|Paralytic calcification and ossification of muscle, right upper arm +C2895601|T047|AB|M61.222|ICD10CM|Paralytic calcification and ossification of muscle, l up arm|Paralytic calcification and ossification of muscle, l up arm +C2895601|T047|PT|M61.222|ICD10CM|Paralytic calcification and ossification of muscle, left upper arm|Paralytic calcification and ossification of muscle, left upper arm +C2895602|T047|AB|M61.229|ICD10CM|Paralytic calcifcn and ossifictn of muscle, unsp upper arm|Paralytic calcifcn and ossifictn of muscle, unsp upper arm +C2895602|T047|PT|M61.229|ICD10CM|Paralytic calcification and ossification of muscle, unspecified upper arm|Paralytic calcification and ossification of muscle, unspecified upper arm +C0838900|T047|HT|M61.23|ICD10CM|Paralytic calcification and ossification of muscle, forearm|Paralytic calcification and ossification of muscle, forearm +C0838900|T047|AB|M61.23|ICD10CM|Paralytic calcification and ossification of muscle, forearm|Paralytic calcification and ossification of muscle, forearm +C2895603|T047|AB|M61.231|ICD10CM|Paralytic calcifcn and ossification of muscle, right forearm|Paralytic calcifcn and ossification of muscle, right forearm +C2895603|T047|PT|M61.231|ICD10CM|Paralytic calcification and ossification of muscle, right forearm|Paralytic calcification and ossification of muscle, right forearm +C2895604|T047|AB|M61.232|ICD10CM|Paralytic calcifcn and ossification of muscle, left forearm|Paralytic calcifcn and ossification of muscle, left forearm +C2895604|T047|PT|M61.232|ICD10CM|Paralytic calcification and ossification of muscle, left forearm|Paralytic calcification and ossification of muscle, left forearm +C0838900|T047|AB|M61.239|ICD10CM|Paralytic calcifcn and ossification of muscle, unsp forearm|Paralytic calcifcn and ossification of muscle, unsp forearm +C0838900|T047|PT|M61.239|ICD10CM|Paralytic calcification and ossification of muscle, unspecified forearm|Paralytic calcification and ossification of muscle, unspecified forearm +C0838901|T047|HT|M61.24|ICD10CM|Paralytic calcification and ossification of muscle, hand|Paralytic calcification and ossification of muscle, hand +C0838901|T047|AB|M61.24|ICD10CM|Paralytic calcification and ossification of muscle, hand|Paralytic calcification and ossification of muscle, hand +C2895605|T047|AB|M61.241|ICD10CM|Paralytic calcifcn and ossification of muscle, right hand|Paralytic calcifcn and ossification of muscle, right hand +C2895605|T047|PT|M61.241|ICD10CM|Paralytic calcification and ossification of muscle, right hand|Paralytic calcification and ossification of muscle, right hand +C2895606|T047|AB|M61.242|ICD10CM|Paralytic calcifcn and ossification of muscle, left hand|Paralytic calcifcn and ossification of muscle, left hand +C2895606|T047|PT|M61.242|ICD10CM|Paralytic calcification and ossification of muscle, left hand|Paralytic calcification and ossification of muscle, left hand +C0838901|T047|AB|M61.249|ICD10CM|Paralytic calcifcn and ossification of muscle, unsp hand|Paralytic calcifcn and ossification of muscle, unsp hand +C0838901|T047|PT|M61.249|ICD10CM|Paralytic calcification and ossification of muscle, unspecified hand|Paralytic calcification and ossification of muscle, unspecified hand +C2895607|T047|AB|M61.25|ICD10CM|Paralytic calcification and ossification of muscle, thigh|Paralytic calcification and ossification of muscle, thigh +C2895607|T047|HT|M61.25|ICD10CM|Paralytic calcification and ossification of muscle, thigh|Paralytic calcification and ossification of muscle, thigh +C2895608|T047|AB|M61.251|ICD10CM|Paralytic calcifcn and ossification of muscle, right thigh|Paralytic calcifcn and ossification of muscle, right thigh +C2895608|T047|PT|M61.251|ICD10CM|Paralytic calcification and ossification of muscle, right thigh|Paralytic calcification and ossification of muscle, right thigh +C2895609|T047|AB|M61.252|ICD10CM|Paralytic calcifcn and ossification of muscle, left thigh|Paralytic calcifcn and ossification of muscle, left thigh +C2895609|T047|PT|M61.252|ICD10CM|Paralytic calcification and ossification of muscle, left thigh|Paralytic calcification and ossification of muscle, left thigh +C2895607|T047|AB|M61.259|ICD10CM|Paralytic calcifcn and ossification of muscle, unsp thigh|Paralytic calcifcn and ossification of muscle, unsp thigh +C2895607|T047|PT|M61.259|ICD10CM|Paralytic calcification and ossification of muscle, unspecified thigh|Paralytic calcification and ossification of muscle, unspecified thigh +C0838903|T047|AB|M61.26|ICD10CM|Paralytic calcifcn and ossification of muscle, lower leg|Paralytic calcifcn and ossification of muscle, lower leg +C0838903|T047|HT|M61.26|ICD10CM|Paralytic calcification and ossification of muscle, lower leg|Paralytic calcification and ossification of muscle, lower leg +C2895610|T047|AB|M61.261|ICD10CM|Paralytic calcifcn and ossification of muscle, r low leg|Paralytic calcifcn and ossification of muscle, r low leg +C2895610|T047|PT|M61.261|ICD10CM|Paralytic calcification and ossification of muscle, right lower leg|Paralytic calcification and ossification of muscle, right lower leg +C2895611|T047|AB|M61.262|ICD10CM|Paralytic calcifcn and ossification of muscle, l low leg|Paralytic calcifcn and ossification of muscle, l low leg +C2895611|T047|PT|M61.262|ICD10CM|Paralytic calcification and ossification of muscle, left lower leg|Paralytic calcification and ossification of muscle, left lower leg +C0838903|T047|AB|M61.269|ICD10CM|Paralytic calcifcn and ossifictn of muscle, unsp lower leg|Paralytic calcifcn and ossifictn of muscle, unsp lower leg +C0838903|T047|PT|M61.269|ICD10CM|Paralytic calcification and ossification of muscle, unspecified lower leg|Paralytic calcification and ossification of muscle, unspecified lower leg +C0838904|T047|AB|M61.27|ICD10CM|Paralytic calcification and ossification of muscle, ank/ft|Paralytic calcification and ossification of muscle, ank/ft +C0838904|T047|HT|M61.27|ICD10CM|Paralytic calcification and ossification of muscle, ankle and foot|Paralytic calcification and ossification of muscle, ankle and foot +C2895612|T047|AB|M61.271|ICD10CM|Paralytic calcifcn and ossification of muscle, right ank/ft|Paralytic calcifcn and ossification of muscle, right ank/ft +C2895612|T047|PT|M61.271|ICD10CM|Paralytic calcification and ossification of muscle, right ankle and foot|Paralytic calcification and ossification of muscle, right ankle and foot +C2895613|T047|AB|M61.272|ICD10CM|Paralytic calcifcn and ossification of muscle, left ank/ft|Paralytic calcifcn and ossification of muscle, left ank/ft +C2895613|T047|PT|M61.272|ICD10CM|Paralytic calcification and ossification of muscle, left ankle and foot|Paralytic calcification and ossification of muscle, left ankle and foot +C0838904|T047|AB|M61.279|ICD10CM|Paralytic calcifcn and ossification of muscle, unsp ank/ft|Paralytic calcifcn and ossification of muscle, unsp ank/ft +C0838904|T047|PT|M61.279|ICD10CM|Paralytic calcification and ossification of muscle, unspecified ankle and foot|Paralytic calcification and ossification of muscle, unspecified ankle and foot +C0838905|T047|AB|M61.28|ICD10CM|Paralytic calcification and ossification of muscle, oth site|Paralytic calcification and ossification of muscle, oth site +C0838905|T047|PT|M61.28|ICD10CM|Paralytic calcification and ossification of muscle, other site|Paralytic calcification and ossification of muscle, other site +C0838897|T047|AB|M61.29|ICD10CM|Paralytic calcifcn and ossifictn of muscle, multiple sites|Paralytic calcifcn and ossifictn of muscle, multiple sites +C0838897|T047|PT|M61.29|ICD10CM|Paralytic calcification and ossification of muscle, multiple sites|Paralytic calcification and ossification of muscle, multiple sites +C0343257|T047|AB|M61.3|ICD10CM|Calcification and ossification of muscles associated w burns|Calcification and ossification of muscles associated w burns +C0343257|T047|HT|M61.3|ICD10CM|Calcification and ossification of muscles associated with burns|Calcification and ossification of muscles associated with burns +C0343257|T047|PT|M61.3|ICD10|Calcification and ossification of muscles associated with burns|Calcification and ossification of muscles associated with burns +C0343257|T047|ET|M61.3|ICD10CM|Myositis ossificans associated with burns|Myositis ossificans associated with burns +C0838916|T047|AB|M61.30|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, unsp site|Calcifcn and ossifictn of muscles assoc w burns, unsp site +C0838916|T047|PT|M61.30|ICD10CM|Calcification and ossification of muscles associated with burns, unspecified site|Calcification and ossification of muscles associated with burns, unspecified site +C2895614|T047|AB|M61.31|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, shoulder|Calcifcn and ossifictn of muscles assoc w burns, shoulder +C2895614|T047|HT|M61.31|ICD10CM|Calcification and ossification of muscles associated with burns, shoulder|Calcification and ossification of muscles associated with burns, shoulder +C2895615|T047|AB|M61.311|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, r shoulder|Calcifcn and ossifictn of muscles assoc w burns, r shoulder +C2895615|T047|PT|M61.311|ICD10CM|Calcification and ossification of muscles associated with burns, right shoulder|Calcification and ossification of muscles associated with burns, right shoulder +C2895616|T047|AB|M61.312|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, l shoulder|Calcifcn and ossifictn of muscles assoc w burns, l shoulder +C2895616|T047|PT|M61.312|ICD10CM|Calcification and ossification of muscles associated with burns, left shoulder|Calcification and ossification of muscles associated with burns, left shoulder +C2895617|T047|AB|M61.319|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, unsp shldr|Calcifcn and ossifictn of muscles assoc w burns, unsp shldr +C2895617|T047|PT|M61.319|ICD10CM|Calcification and ossification of muscles associated with burns, unspecified shoulder|Calcification and ossification of muscles associated with burns, unspecified shoulder +C0838909|T047|AB|M61.32|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, upper arm|Calcifcn and ossifictn of muscles assoc w burns, upper arm +C0838909|T047|HT|M61.32|ICD10CM|Calcification and ossification of muscles associated with burns, upper arm|Calcification and ossification of muscles associated with burns, upper arm +C2895618|T047|AB|M61.321|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, r up arm|Calcifcn and ossifictn of muscles assoc w burns, r up arm +C2895618|T047|PT|M61.321|ICD10CM|Calcification and ossification of muscles associated with burns, right upper arm|Calcification and ossification of muscles associated with burns, right upper arm +C2895619|T047|AB|M61.322|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, l up arm|Calcifcn and ossifictn of muscles assoc w burns, l up arm +C2895619|T047|PT|M61.322|ICD10CM|Calcification and ossification of muscles associated with burns, left upper arm|Calcification and ossification of muscles associated with burns, left upper arm +C2895620|T047|AB|M61.329|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, unsp up arm|Calcifcn and ossifictn of muscles assoc w burns, unsp up arm +C2895620|T047|PT|M61.329|ICD10CM|Calcification and ossification of muscles associated with burns, unspecified upper arm|Calcification and ossification of muscles associated with burns, unspecified upper arm +C0838910|T047|AB|M61.33|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, forearm|Calcifcn and ossifictn of muscles assoc w burns, forearm +C0838910|T047|HT|M61.33|ICD10CM|Calcification and ossification of muscles associated with burns, forearm|Calcification and ossification of muscles associated with burns, forearm +C2895621|T047|AB|M61.331|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, r forearm|Calcifcn and ossifictn of muscles assoc w burns, r forearm +C2895621|T047|PT|M61.331|ICD10CM|Calcification and ossification of muscles associated with burns, right forearm|Calcification and ossification of muscles associated with burns, right forearm +C2895622|T047|AB|M61.332|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, l forearm|Calcifcn and ossifictn of muscles assoc w burns, l forearm +C2895622|T047|PT|M61.332|ICD10CM|Calcification and ossification of muscles associated with burns, left forearm|Calcification and ossification of muscles associated with burns, left forearm +C2895623|T047|AB|M61.339|ICD10CM|Calcifcn and ossifictn of musc assoc w burns, unsp forearm|Calcifcn and ossifictn of musc assoc w burns, unsp forearm +C2895623|T047|PT|M61.339|ICD10CM|Calcification and ossification of muscles associated with burns, unspecified forearm|Calcification and ossification of muscles associated with burns, unspecified forearm +C0838911|T047|AB|M61.34|ICD10CM|Calcifcn and ossifictn of muscles associated w burns, hand|Calcifcn and ossifictn of muscles associated w burns, hand +C0838911|T047|HT|M61.34|ICD10CM|Calcification and ossification of muscles associated with burns, hand|Calcification and ossification of muscles associated with burns, hand +C2895624|T047|AB|M61.341|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, right hand|Calcifcn and ossifictn of muscles assoc w burns, right hand +C2895624|T047|PT|M61.341|ICD10CM|Calcification and ossification of muscles associated with burns, right hand|Calcification and ossification of muscles associated with burns, right hand +C2895625|T047|AB|M61.342|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, left hand|Calcifcn and ossifictn of muscles assoc w burns, left hand +C2895625|T047|PT|M61.342|ICD10CM|Calcification and ossification of muscles associated with burns, left hand|Calcification and ossification of muscles associated with burns, left hand +C2895626|T047|AB|M61.349|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, unsp hand|Calcifcn and ossifictn of muscles assoc w burns, unsp hand +C2895626|T047|PT|M61.349|ICD10CM|Calcification and ossification of muscles associated with burns, unspecified hand|Calcification and ossification of muscles associated with burns, unspecified hand +C2895627|T047|AB|M61.35|ICD10CM|Calcifcn and ossifictn of muscles associated w burns, thigh|Calcifcn and ossifictn of muscles associated w burns, thigh +C2895627|T047|HT|M61.35|ICD10CM|Calcification and ossification of muscles associated with burns, thigh|Calcification and ossification of muscles associated with burns, thigh +C2895628|T047|AB|M61.351|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, right thigh|Calcifcn and ossifictn of muscles assoc w burns, right thigh +C2895628|T047|PT|M61.351|ICD10CM|Calcification and ossification of muscles associated with burns, right thigh|Calcification and ossification of muscles associated with burns, right thigh +C2895629|T047|AB|M61.352|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, left thigh|Calcifcn and ossifictn of muscles assoc w burns, left thigh +C2895629|T047|PT|M61.352|ICD10CM|Calcification and ossification of muscles associated with burns, left thigh|Calcification and ossification of muscles associated with burns, left thigh +C2895630|T047|AB|M61.359|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, unsp thigh|Calcifcn and ossifictn of muscles assoc w burns, unsp thigh +C2895630|T047|PT|M61.359|ICD10CM|Calcification and ossification of muscles associated with burns, unspecified thigh|Calcification and ossification of muscles associated with burns, unspecified thigh +C0838913|T047|AB|M61.36|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, lower leg|Calcifcn and ossifictn of muscles assoc w burns, lower leg +C0838913|T047|HT|M61.36|ICD10CM|Calcification and ossification of muscles associated with burns, lower leg|Calcification and ossification of muscles associated with burns, lower leg +C2895631|T047|AB|M61.361|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, r low leg|Calcifcn and ossifictn of muscles assoc w burns, r low leg +C2895631|T047|PT|M61.361|ICD10CM|Calcification and ossification of muscles associated with burns, right lower leg|Calcification and ossification of muscles associated with burns, right lower leg +C2895632|T047|AB|M61.362|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, l low leg|Calcifcn and ossifictn of muscles assoc w burns, l low leg +C2895632|T047|PT|M61.362|ICD10CM|Calcification and ossification of muscles associated with burns, left lower leg|Calcification and ossification of muscles associated with burns, left lower leg +C2895633|T047|AB|M61.369|ICD10CM|Calcifcn and ossifictn of musc assoc w burns, unsp low leg|Calcifcn and ossifictn of musc assoc w burns, unsp low leg +C2895633|T047|PT|M61.369|ICD10CM|Calcification and ossification of muscles associated with burns, unspecified lower leg|Calcification and ossification of muscles associated with burns, unspecified lower leg +C0838914|T047|AB|M61.37|ICD10CM|Calcifcn and ossifictn of muscles associated w burns, ank/ft|Calcifcn and ossifictn of muscles associated w burns, ank/ft +C0838914|T047|HT|M61.37|ICD10CM|Calcification and ossification of muscles associated with burns, ankle and foot|Calcification and ossification of muscles associated with burns, ankle and foot +C2895634|T047|AB|M61.371|ICD10CM|Calcifcn and ossifictn of musc assoc w burns, right ank/ft|Calcifcn and ossifictn of musc assoc w burns, right ank/ft +C2895634|T047|PT|M61.371|ICD10CM|Calcification and ossification of muscles associated with burns, right ankle and foot|Calcification and ossification of muscles associated with burns, right ankle and foot +C2895635|T047|AB|M61.372|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, left ank/ft|Calcifcn and ossifictn of muscles assoc w burns, left ank/ft +C2895635|T047|PT|M61.372|ICD10CM|Calcification and ossification of muscles associated with burns, left ankle and foot|Calcification and ossification of muscles associated with burns, left ankle and foot +C2895636|T047|AB|M61.379|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, unsp ank/ft|Calcifcn and ossifictn of muscles assoc w burns, unsp ank/ft +C2895636|T047|PT|M61.379|ICD10CM|Calcification and ossification of muscles associated with burns, unspecified ankle and foot|Calcification and ossification of muscles associated with burns, unspecified ankle and foot +C0838915|T047|AB|M61.38|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, oth site|Calcifcn and ossifictn of muscles assoc w burns, oth site +C0838915|T047|PT|M61.38|ICD10CM|Calcification and ossification of muscles associated with burns, other site|Calcification and ossification of muscles associated with burns, other site +C0838907|T047|AB|M61.39|ICD10CM|Calcifcn and ossifictn of muscles assoc w burns, mult sites|Calcifcn and ossifictn of muscles assoc w burns, mult sites +C0838907|T047|PT|M61.39|ICD10CM|Calcification and ossification of muscles associated with burns, multiple sites|Calcification and ossification of muscles associated with burns, multiple sites +C0477635|T046|PT|M61.4|ICD10|Other calcification of muscle|Other calcification of muscle +C0477635|T046|HT|M61.4|ICD10CM|Other calcification of muscle|Other calcification of muscle +C0477635|T046|AB|M61.4|ICD10CM|Other calcification of muscle|Other calcification of muscle +C0477636|T046|AB|M61.40|ICD10CM|Other calcification of muscle, unspecified site|Other calcification of muscle, unspecified site +C0477636|T046|PT|M61.40|ICD10CM|Other calcification of muscle, unspecified site|Other calcification of muscle, unspecified site +C2895637|T046|AB|M61.41|ICD10CM|Other calcification of muscle, shoulder|Other calcification of muscle, shoulder +C2895637|T046|HT|M61.41|ICD10CM|Other calcification of muscle, shoulder|Other calcification of muscle, shoulder +C2895638|T046|AB|M61.411|ICD10CM|Other calcification of muscle, right shoulder|Other calcification of muscle, right shoulder +C2895638|T046|PT|M61.411|ICD10CM|Other calcification of muscle, right shoulder|Other calcification of muscle, right shoulder +C2895639|T046|AB|M61.412|ICD10CM|Other calcification of muscle, left shoulder|Other calcification of muscle, left shoulder +C2895639|T046|PT|M61.412|ICD10CM|Other calcification of muscle, left shoulder|Other calcification of muscle, left shoulder +C2895640|T046|AB|M61.419|ICD10CM|Other calcification of muscle, unspecified shoulder|Other calcification of muscle, unspecified shoulder +C2895640|T046|PT|M61.419|ICD10CM|Other calcification of muscle, unspecified shoulder|Other calcification of muscle, unspecified shoulder +C0838919|T046|HT|M61.42|ICD10CM|Other calcification of muscle, upper arm|Other calcification of muscle, upper arm +C0838919|T046|AB|M61.42|ICD10CM|Other calcification of muscle, upper arm|Other calcification of muscle, upper arm +C2895641|T046|AB|M61.421|ICD10CM|Other calcification of muscle, right upper arm|Other calcification of muscle, right upper arm +C2895641|T046|PT|M61.421|ICD10CM|Other calcification of muscle, right upper arm|Other calcification of muscle, right upper arm +C2895642|T046|AB|M61.422|ICD10CM|Other calcification of muscle, left upper arm|Other calcification of muscle, left upper arm +C2895642|T046|PT|M61.422|ICD10CM|Other calcification of muscle, left upper arm|Other calcification of muscle, left upper arm +C2895643|T046|AB|M61.429|ICD10CM|Other calcification of muscle, unspecified upper arm|Other calcification of muscle, unspecified upper arm +C2895643|T046|PT|M61.429|ICD10CM|Other calcification of muscle, unspecified upper arm|Other calcification of muscle, unspecified upper arm +C0838920|T046|HT|M61.43|ICD10CM|Other calcification of muscle, forearm|Other calcification of muscle, forearm +C0838920|T046|AB|M61.43|ICD10CM|Other calcification of muscle, forearm|Other calcification of muscle, forearm +C2895644|T046|AB|M61.431|ICD10CM|Other calcification of muscle, right forearm|Other calcification of muscle, right forearm +C2895644|T046|PT|M61.431|ICD10CM|Other calcification of muscle, right forearm|Other calcification of muscle, right forearm +C2895645|T046|AB|M61.432|ICD10CM|Other calcification of muscle, left forearm|Other calcification of muscle, left forearm +C2895645|T046|PT|M61.432|ICD10CM|Other calcification of muscle, left forearm|Other calcification of muscle, left forearm +C2895646|T046|AB|M61.439|ICD10CM|Other calcification of muscle, unspecified forearm|Other calcification of muscle, unspecified forearm +C2895646|T046|PT|M61.439|ICD10CM|Other calcification of muscle, unspecified forearm|Other calcification of muscle, unspecified forearm +C0838921|T046|HT|M61.44|ICD10CM|Other calcification of muscle, hand|Other calcification of muscle, hand +C0838921|T046|AB|M61.44|ICD10CM|Other calcification of muscle, hand|Other calcification of muscle, hand +C2895647|T046|AB|M61.441|ICD10CM|Other calcification of muscle, right hand|Other calcification of muscle, right hand +C2895647|T046|PT|M61.441|ICD10CM|Other calcification of muscle, right hand|Other calcification of muscle, right hand +C2895648|T046|AB|M61.442|ICD10CM|Other calcification of muscle, left hand|Other calcification of muscle, left hand +C2895648|T046|PT|M61.442|ICD10CM|Other calcification of muscle, left hand|Other calcification of muscle, left hand +C0838921|T046|AB|M61.449|ICD10CM|Other calcification of muscle, unspecified hand|Other calcification of muscle, unspecified hand +C0838921|T046|PT|M61.449|ICD10CM|Other calcification of muscle, unspecified hand|Other calcification of muscle, unspecified hand +C2895649|T046|AB|M61.45|ICD10CM|Other calcification of muscle, thigh|Other calcification of muscle, thigh +C2895649|T046|HT|M61.45|ICD10CM|Other calcification of muscle, thigh|Other calcification of muscle, thigh +C2895650|T046|AB|M61.451|ICD10CM|Other calcification of muscle, right thigh|Other calcification of muscle, right thigh +C2895650|T046|PT|M61.451|ICD10CM|Other calcification of muscle, right thigh|Other calcification of muscle, right thigh +C2895651|T046|AB|M61.452|ICD10CM|Other calcification of muscle, left thigh|Other calcification of muscle, left thigh +C2895651|T046|PT|M61.452|ICD10CM|Other calcification of muscle, left thigh|Other calcification of muscle, left thigh +C2895649|T046|AB|M61.459|ICD10CM|Other calcification of muscle, unspecified thigh|Other calcification of muscle, unspecified thigh +C2895649|T046|PT|M61.459|ICD10CM|Other calcification of muscle, unspecified thigh|Other calcification of muscle, unspecified thigh +C0838923|T046|HT|M61.46|ICD10CM|Other calcification of muscle, lower leg|Other calcification of muscle, lower leg +C0838923|T046|AB|M61.46|ICD10CM|Other calcification of muscle, lower leg|Other calcification of muscle, lower leg +C2895652|T046|AB|M61.461|ICD10CM|Other calcification of muscle, right lower leg|Other calcification of muscle, right lower leg +C2895652|T046|PT|M61.461|ICD10CM|Other calcification of muscle, right lower leg|Other calcification of muscle, right lower leg +C2895653|T046|AB|M61.462|ICD10CM|Other calcification of muscle, left lower leg|Other calcification of muscle, left lower leg +C2895653|T046|PT|M61.462|ICD10CM|Other calcification of muscle, left lower leg|Other calcification of muscle, left lower leg +C0838923|T046|AB|M61.469|ICD10CM|Other calcification of muscle, unspecified lower leg|Other calcification of muscle, unspecified lower leg +C0838923|T046|PT|M61.469|ICD10CM|Other calcification of muscle, unspecified lower leg|Other calcification of muscle, unspecified lower leg +C0838924|T046|HT|M61.47|ICD10CM|Other calcification of muscle, ankle and foot|Other calcification of muscle, ankle and foot +C0838924|T046|AB|M61.47|ICD10CM|Other calcification of muscle, ankle and foot|Other calcification of muscle, ankle and foot +C2895654|T046|AB|M61.471|ICD10CM|Other calcification of muscle, right ankle and foot|Other calcification of muscle, right ankle and foot +C2895654|T046|PT|M61.471|ICD10CM|Other calcification of muscle, right ankle and foot|Other calcification of muscle, right ankle and foot +C2895655|T046|AB|M61.472|ICD10CM|Other calcification of muscle, left ankle and foot|Other calcification of muscle, left ankle and foot +C2895655|T046|PT|M61.472|ICD10CM|Other calcification of muscle, left ankle and foot|Other calcification of muscle, left ankle and foot +C0838924|T046|AB|M61.479|ICD10CM|Other calcification of muscle, unspecified ankle and foot|Other calcification of muscle, unspecified ankle and foot +C0838924|T046|PT|M61.479|ICD10CM|Other calcification of muscle, unspecified ankle and foot|Other calcification of muscle, unspecified ankle and foot +C0838925|T046|PT|M61.48|ICD10CM|Other calcification of muscle, other site|Other calcification of muscle, other site +C0838925|T046|AB|M61.48|ICD10CM|Other calcification of muscle, other site|Other calcification of muscle, other site +C0838917|T046|PT|M61.49|ICD10CM|Other calcification of muscle, multiple sites|Other calcification of muscle, multiple sites +C0838917|T046|AB|M61.49|ICD10CM|Other calcification of muscle, multiple sites|Other calcification of muscle, multiple sites +C0477636|T046|HT|M61.5|ICD10CM|Other ossification of muscle|Other ossification of muscle +C0477636|T046|AB|M61.5|ICD10CM|Other ossification of muscle|Other ossification of muscle +C0477636|T046|PT|M61.5|ICD10|Other ossification of muscle|Other ossification of muscle +C0477636|T046|PT|M61.50|ICD10CM|Other ossification of muscle, unspecified site|Other ossification of muscle, unspecified site +C0477636|T046|AB|M61.50|ICD10CM|Other ossification of muscle, unspecified site|Other ossification of muscle, unspecified site +C2895656|T046|AB|M61.51|ICD10CM|Other ossification of muscle, shoulder|Other ossification of muscle, shoulder +C2895656|T046|HT|M61.51|ICD10CM|Other ossification of muscle, shoulder|Other ossification of muscle, shoulder +C2895657|T046|AB|M61.511|ICD10CM|Other ossification of muscle, right shoulder|Other ossification of muscle, right shoulder +C2895657|T046|PT|M61.511|ICD10CM|Other ossification of muscle, right shoulder|Other ossification of muscle, right shoulder +C2895658|T046|AB|M61.512|ICD10CM|Other ossification of muscle, left shoulder|Other ossification of muscle, left shoulder +C2895658|T046|PT|M61.512|ICD10CM|Other ossification of muscle, left shoulder|Other ossification of muscle, left shoulder +C2895656|T046|AB|M61.519|ICD10CM|Other ossification of muscle, unspecified shoulder|Other ossification of muscle, unspecified shoulder +C2895656|T046|PT|M61.519|ICD10CM|Other ossification of muscle, unspecified shoulder|Other ossification of muscle, unspecified shoulder +C0838929|T046|HT|M61.52|ICD10CM|Other ossification of muscle, upper arm|Other ossification of muscle, upper arm +C0838929|T046|AB|M61.52|ICD10CM|Other ossification of muscle, upper arm|Other ossification of muscle, upper arm +C2895659|T046|AB|M61.521|ICD10CM|Other ossification of muscle, right upper arm|Other ossification of muscle, right upper arm +C2895659|T046|PT|M61.521|ICD10CM|Other ossification of muscle, right upper arm|Other ossification of muscle, right upper arm +C2895660|T046|AB|M61.522|ICD10CM|Other ossification of muscle, left upper arm|Other ossification of muscle, left upper arm +C2895660|T046|PT|M61.522|ICD10CM|Other ossification of muscle, left upper arm|Other ossification of muscle, left upper arm +C0838929|T046|AB|M61.529|ICD10CM|Other ossification of muscle, unspecified upper arm|Other ossification of muscle, unspecified upper arm +C0838929|T046|PT|M61.529|ICD10CM|Other ossification of muscle, unspecified upper arm|Other ossification of muscle, unspecified upper arm +C0838930|T046|HT|M61.53|ICD10CM|Other ossification of muscle, forearm|Other ossification of muscle, forearm +C0838930|T046|AB|M61.53|ICD10CM|Other ossification of muscle, forearm|Other ossification of muscle, forearm +C2895661|T046|AB|M61.531|ICD10CM|Other ossification of muscle, right forearm|Other ossification of muscle, right forearm +C2895661|T046|PT|M61.531|ICD10CM|Other ossification of muscle, right forearm|Other ossification of muscle, right forearm +C2895662|T046|AB|M61.532|ICD10CM|Other ossification of muscle, left forearm|Other ossification of muscle, left forearm +C2895662|T046|PT|M61.532|ICD10CM|Other ossification of muscle, left forearm|Other ossification of muscle, left forearm +C0838930|T046|AB|M61.539|ICD10CM|Other ossification of muscle, unspecified forearm|Other ossification of muscle, unspecified forearm +C0838930|T046|PT|M61.539|ICD10CM|Other ossification of muscle, unspecified forearm|Other ossification of muscle, unspecified forearm +C0838931|T046|HT|M61.54|ICD10CM|Other ossification of muscle, hand|Other ossification of muscle, hand +C0838931|T046|AB|M61.54|ICD10CM|Other ossification of muscle, hand|Other ossification of muscle, hand +C2895663|T046|AB|M61.541|ICD10CM|Other ossification of muscle, right hand|Other ossification of muscle, right hand +C2895663|T046|PT|M61.541|ICD10CM|Other ossification of muscle, right hand|Other ossification of muscle, right hand +C2895664|T046|AB|M61.542|ICD10CM|Other ossification of muscle, left hand|Other ossification of muscle, left hand +C2895664|T046|PT|M61.542|ICD10CM|Other ossification of muscle, left hand|Other ossification of muscle, left hand +C0838931|T046|AB|M61.549|ICD10CM|Other ossification of muscle, unspecified hand|Other ossification of muscle, unspecified hand +C0838931|T046|PT|M61.549|ICD10CM|Other ossification of muscle, unspecified hand|Other ossification of muscle, unspecified hand +C2895667|T046|AB|M61.55|ICD10CM|Other ossification of muscle, thigh|Other ossification of muscle, thigh +C2895667|T046|HT|M61.55|ICD10CM|Other ossification of muscle, thigh|Other ossification of muscle, thigh +C2895665|T046|AB|M61.551|ICD10CM|Other ossification of muscle, right thigh|Other ossification of muscle, right thigh +C2895665|T046|PT|M61.551|ICD10CM|Other ossification of muscle, right thigh|Other ossification of muscle, right thigh +C2895666|T046|AB|M61.552|ICD10CM|Other ossification of muscle, left thigh|Other ossification of muscle, left thigh +C2895666|T046|PT|M61.552|ICD10CM|Other ossification of muscle, left thigh|Other ossification of muscle, left thigh +C2895667|T046|AB|M61.559|ICD10CM|Other ossification of muscle, unspecified thigh|Other ossification of muscle, unspecified thigh +C2895667|T046|PT|M61.559|ICD10CM|Other ossification of muscle, unspecified thigh|Other ossification of muscle, unspecified thigh +C0838933|T046|HT|M61.56|ICD10CM|Other ossification of muscle, lower leg|Other ossification of muscle, lower leg +C0838933|T046|AB|M61.56|ICD10CM|Other ossification of muscle, lower leg|Other ossification of muscle, lower leg +C2895668|T046|AB|M61.561|ICD10CM|Other ossification of muscle, right lower leg|Other ossification of muscle, right lower leg +C2895668|T046|PT|M61.561|ICD10CM|Other ossification of muscle, right lower leg|Other ossification of muscle, right lower leg +C2895669|T046|AB|M61.562|ICD10CM|Other ossification of muscle, left lower leg|Other ossification of muscle, left lower leg +C2895669|T046|PT|M61.562|ICD10CM|Other ossification of muscle, left lower leg|Other ossification of muscle, left lower leg +C0838933|T046|AB|M61.569|ICD10CM|Other ossification of muscle, unspecified lower leg|Other ossification of muscle, unspecified lower leg +C0838933|T046|PT|M61.569|ICD10CM|Other ossification of muscle, unspecified lower leg|Other ossification of muscle, unspecified lower leg +C0838934|T046|HT|M61.57|ICD10CM|Other ossification of muscle, ankle and foot|Other ossification of muscle, ankle and foot +C0838934|T046|AB|M61.57|ICD10CM|Other ossification of muscle, ankle and foot|Other ossification of muscle, ankle and foot +C2895670|T046|AB|M61.571|ICD10CM|Other ossification of muscle, right ankle and foot|Other ossification of muscle, right ankle and foot +C2895670|T046|PT|M61.571|ICD10CM|Other ossification of muscle, right ankle and foot|Other ossification of muscle, right ankle and foot +C2895671|T046|AB|M61.572|ICD10CM|Other ossification of muscle, left ankle and foot|Other ossification of muscle, left ankle and foot +C2895671|T046|PT|M61.572|ICD10CM|Other ossification of muscle, left ankle and foot|Other ossification of muscle, left ankle and foot +C0838934|T046|AB|M61.579|ICD10CM|Other ossification of muscle, unspecified ankle and foot|Other ossification of muscle, unspecified ankle and foot +C0838934|T046|PT|M61.579|ICD10CM|Other ossification of muscle, unspecified ankle and foot|Other ossification of muscle, unspecified ankle and foot +C0838935|T046|PT|M61.58|ICD10CM|Other ossification of muscle, other site|Other ossification of muscle, other site +C0838935|T046|AB|M61.58|ICD10CM|Other ossification of muscle, other site|Other ossification of muscle, other site +C0838927|T046|AB|M61.59|ICD10CM|Other ossification of muscle, multiple sites|Other ossification of muscle, multiple sites +C0838927|T046|PT|M61.59|ICD10CM|Other ossification of muscle, multiple sites|Other ossification of muscle, multiple sites +C0343251|T047|PT|M61.9|ICD10CM|Calcification and ossification of muscle, unspecified|Calcification and ossification of muscle, unspecified +C0343251|T047|AB|M61.9|ICD10CM|Calcification and ossification of muscle, unspecified|Calcification and ossification of muscle, unspecified +C0343251|T047|PT|M61.9|ICD10|Calcification and ossification of muscle, unspecified|Calcification and ossification of muscle, unspecified +C0494973|T047|AB|M62|ICD10CM|Other disorders of muscle|Other disorders of muscle +C0494973|T047|HT|M62|ICD10CM|Other disorders of muscle|Other disorders of muscle +C0494973|T047|HT|M62|ICD10|Other disorders of muscle|Other disorders of muscle +C0158364|T190|PT|M62.0|ICD10|Diastasis of muscle|Diastasis of muscle +C0158364|T190|ET|M62.0|ICD10CM|Diastasis of muscle|Diastasis of muscle +C2895672|T047|AB|M62.0|ICD10CM|Separation of muscle (nontraumatic)|Separation of muscle (nontraumatic) +C2895672|T047|HT|M62.0|ICD10CM|Separation of muscle (nontraumatic)|Separation of muscle (nontraumatic) +C2895673|T047|AB|M62.00|ICD10CM|Separation of muscle (nontraumatic), unspecified site|Separation of muscle (nontraumatic), unspecified site +C2895673|T047|PT|M62.00|ICD10CM|Separation of muscle (nontraumatic), unspecified site|Separation of muscle (nontraumatic), unspecified site +C2895674|T047|AB|M62.01|ICD10CM|Separation of muscle (nontraumatic), shoulder|Separation of muscle (nontraumatic), shoulder +C2895674|T047|HT|M62.01|ICD10CM|Separation of muscle (nontraumatic), shoulder|Separation of muscle (nontraumatic), shoulder +C2895675|T047|AB|M62.011|ICD10CM|Separation of muscle (nontraumatic), right shoulder|Separation of muscle (nontraumatic), right shoulder +C2895675|T047|PT|M62.011|ICD10CM|Separation of muscle (nontraumatic), right shoulder|Separation of muscle (nontraumatic), right shoulder +C2895676|T047|AB|M62.012|ICD10CM|Separation of muscle (nontraumatic), left shoulder|Separation of muscle (nontraumatic), left shoulder +C2895676|T047|PT|M62.012|ICD10CM|Separation of muscle (nontraumatic), left shoulder|Separation of muscle (nontraumatic), left shoulder +C2895677|T047|AB|M62.019|ICD10CM|Separation of muscle (nontraumatic), unspecified shoulder|Separation of muscle (nontraumatic), unspecified shoulder +C2895677|T047|PT|M62.019|ICD10CM|Separation of muscle (nontraumatic), unspecified shoulder|Separation of muscle (nontraumatic), unspecified shoulder +C2895678|T047|AB|M62.02|ICD10CM|Separation of muscle (nontraumatic), upper arm|Separation of muscle (nontraumatic), upper arm +C2895678|T047|HT|M62.02|ICD10CM|Separation of muscle (nontraumatic), upper arm|Separation of muscle (nontraumatic), upper arm +C2895679|T047|AB|M62.021|ICD10CM|Separation of muscle (nontraumatic), right upper arm|Separation of muscle (nontraumatic), right upper arm +C2895679|T047|PT|M62.021|ICD10CM|Separation of muscle (nontraumatic), right upper arm|Separation of muscle (nontraumatic), right upper arm +C2895680|T047|AB|M62.022|ICD10CM|Separation of muscle (nontraumatic), left upper arm|Separation of muscle (nontraumatic), left upper arm +C2895680|T047|PT|M62.022|ICD10CM|Separation of muscle (nontraumatic), left upper arm|Separation of muscle (nontraumatic), left upper arm +C2895681|T047|AB|M62.029|ICD10CM|Separation of muscle (nontraumatic), unspecified upper arm|Separation of muscle (nontraumatic), unspecified upper arm +C2895681|T047|PT|M62.029|ICD10CM|Separation of muscle (nontraumatic), unspecified upper arm|Separation of muscle (nontraumatic), unspecified upper arm +C2895682|T047|AB|M62.03|ICD10CM|Separation of muscle (nontraumatic), forearm|Separation of muscle (nontraumatic), forearm +C2895682|T047|HT|M62.03|ICD10CM|Separation of muscle (nontraumatic), forearm|Separation of muscle (nontraumatic), forearm +C2895683|T047|AB|M62.031|ICD10CM|Separation of muscle (nontraumatic), right forearm|Separation of muscle (nontraumatic), right forearm +C2895683|T047|PT|M62.031|ICD10CM|Separation of muscle (nontraumatic), right forearm|Separation of muscle (nontraumatic), right forearm +C2895684|T047|AB|M62.032|ICD10CM|Separation of muscle (nontraumatic), left forearm|Separation of muscle (nontraumatic), left forearm +C2895684|T047|PT|M62.032|ICD10CM|Separation of muscle (nontraumatic), left forearm|Separation of muscle (nontraumatic), left forearm +C2895685|T047|AB|M62.039|ICD10CM|Separation of muscle (nontraumatic), unspecified forearm|Separation of muscle (nontraumatic), unspecified forearm +C2895685|T047|PT|M62.039|ICD10CM|Separation of muscle (nontraumatic), unspecified forearm|Separation of muscle (nontraumatic), unspecified forearm +C2895686|T047|AB|M62.04|ICD10CM|Separation of muscle (nontraumatic), hand|Separation of muscle (nontraumatic), hand +C2895686|T047|HT|M62.04|ICD10CM|Separation of muscle (nontraumatic), hand|Separation of muscle (nontraumatic), hand +C2895687|T047|AB|M62.041|ICD10CM|Separation of muscle (nontraumatic), right hand|Separation of muscle (nontraumatic), right hand +C2895687|T047|PT|M62.041|ICD10CM|Separation of muscle (nontraumatic), right hand|Separation of muscle (nontraumatic), right hand +C2895688|T047|AB|M62.042|ICD10CM|Separation of muscle (nontraumatic), left hand|Separation of muscle (nontraumatic), left hand +C2895688|T047|PT|M62.042|ICD10CM|Separation of muscle (nontraumatic), left hand|Separation of muscle (nontraumatic), left hand +C2895689|T047|AB|M62.049|ICD10CM|Separation of muscle (nontraumatic), unspecified hand|Separation of muscle (nontraumatic), unspecified hand +C2895689|T047|PT|M62.049|ICD10CM|Separation of muscle (nontraumatic), unspecified hand|Separation of muscle (nontraumatic), unspecified hand +C2895690|T047|AB|M62.05|ICD10CM|Separation of muscle (nontraumatic), thigh|Separation of muscle (nontraumatic), thigh +C2895690|T047|HT|M62.05|ICD10CM|Separation of muscle (nontraumatic), thigh|Separation of muscle (nontraumatic), thigh +C2895691|T047|AB|M62.051|ICD10CM|Separation of muscle (nontraumatic), right thigh|Separation of muscle (nontraumatic), right thigh +C2895691|T047|PT|M62.051|ICD10CM|Separation of muscle (nontraumatic), right thigh|Separation of muscle (nontraumatic), right thigh +C2895692|T047|AB|M62.052|ICD10CM|Separation of muscle (nontraumatic), left thigh|Separation of muscle (nontraumatic), left thigh +C2895692|T047|PT|M62.052|ICD10CM|Separation of muscle (nontraumatic), left thigh|Separation of muscle (nontraumatic), left thigh +C2895693|T047|AB|M62.059|ICD10CM|Separation of muscle (nontraumatic), unspecified thigh|Separation of muscle (nontraumatic), unspecified thigh +C2895693|T047|PT|M62.059|ICD10CM|Separation of muscle (nontraumatic), unspecified thigh|Separation of muscle (nontraumatic), unspecified thigh +C2895694|T047|AB|M62.06|ICD10CM|Separation of muscle (nontraumatic), lower leg|Separation of muscle (nontraumatic), lower leg +C2895694|T047|HT|M62.06|ICD10CM|Separation of muscle (nontraumatic), lower leg|Separation of muscle (nontraumatic), lower leg +C2895695|T047|AB|M62.061|ICD10CM|Separation of muscle (nontraumatic), right lower leg|Separation of muscle (nontraumatic), right lower leg +C2895695|T047|PT|M62.061|ICD10CM|Separation of muscle (nontraumatic), right lower leg|Separation of muscle (nontraumatic), right lower leg +C2895696|T047|AB|M62.062|ICD10CM|Separation of muscle (nontraumatic), left lower leg|Separation of muscle (nontraumatic), left lower leg +C2895696|T047|PT|M62.062|ICD10CM|Separation of muscle (nontraumatic), left lower leg|Separation of muscle (nontraumatic), left lower leg +C2895697|T047|AB|M62.069|ICD10CM|Separation of muscle (nontraumatic), unspecified lower leg|Separation of muscle (nontraumatic), unspecified lower leg +C2895697|T047|PT|M62.069|ICD10CM|Separation of muscle (nontraumatic), unspecified lower leg|Separation of muscle (nontraumatic), unspecified lower leg +C2895698|T047|AB|M62.07|ICD10CM|Separation of muscle (nontraumatic), ankle and foot|Separation of muscle (nontraumatic), ankle and foot +C2895698|T047|HT|M62.07|ICD10CM|Separation of muscle (nontraumatic), ankle and foot|Separation of muscle (nontraumatic), ankle and foot +C2895699|T047|AB|M62.071|ICD10CM|Separation of muscle (nontraumatic), right ankle and foot|Separation of muscle (nontraumatic), right ankle and foot +C2895699|T047|PT|M62.071|ICD10CM|Separation of muscle (nontraumatic), right ankle and foot|Separation of muscle (nontraumatic), right ankle and foot +C2895700|T047|AB|M62.072|ICD10CM|Separation of muscle (nontraumatic), left ankle and foot|Separation of muscle (nontraumatic), left ankle and foot +C2895700|T047|PT|M62.072|ICD10CM|Separation of muscle (nontraumatic), left ankle and foot|Separation of muscle (nontraumatic), left ankle and foot +C2895701|T047|AB|M62.079|ICD10CM|Separation of muscle (nontraumatic), unsp ankle and foot|Separation of muscle (nontraumatic), unsp ankle and foot +C2895701|T047|PT|M62.079|ICD10CM|Separation of muscle (nontraumatic), unspecified ankle and foot|Separation of muscle (nontraumatic), unspecified ankle and foot +C2895702|T047|AB|M62.08|ICD10CM|Separation of muscle (nontraumatic), other site|Separation of muscle (nontraumatic), other site +C2895702|T047|PT|M62.08|ICD10CM|Separation of muscle (nontraumatic), other site|Separation of muscle (nontraumatic), other site +C0477637|T046|PT|M62.1|ICD10|Other rupture of muscle (nontraumatic)|Other rupture of muscle (nontraumatic) +C0477637|T046|HT|M62.1|ICD10CM|Other rupture of muscle (nontraumatic)|Other rupture of muscle (nontraumatic) +C0477637|T046|AB|M62.1|ICD10CM|Other rupture of muscle (nontraumatic)|Other rupture of muscle (nontraumatic) +C0477637|T046|AB|M62.10|ICD10CM|Other rupture of muscle (nontraumatic), unspecified site|Other rupture of muscle (nontraumatic), unspecified site +C0477637|T046|PT|M62.10|ICD10CM|Other rupture of muscle (nontraumatic), unspecified site|Other rupture of muscle (nontraumatic), unspecified site +C2895703|T046|AB|M62.11|ICD10CM|Other rupture of muscle (nontraumatic), shoulder|Other rupture of muscle (nontraumatic), shoulder +C2895703|T046|HT|M62.11|ICD10CM|Other rupture of muscle (nontraumatic), shoulder|Other rupture of muscle (nontraumatic), shoulder +C2895704|T046|AB|M62.111|ICD10CM|Other rupture of muscle (nontraumatic), right shoulder|Other rupture of muscle (nontraumatic), right shoulder +C2895704|T046|PT|M62.111|ICD10CM|Other rupture of muscle (nontraumatic), right shoulder|Other rupture of muscle (nontraumatic), right shoulder +C2895705|T046|AB|M62.112|ICD10CM|Other rupture of muscle (nontraumatic), left shoulder|Other rupture of muscle (nontraumatic), left shoulder +C2895705|T046|PT|M62.112|ICD10CM|Other rupture of muscle (nontraumatic), left shoulder|Other rupture of muscle (nontraumatic), left shoulder +C2895706|T046|AB|M62.119|ICD10CM|Other rupture of muscle (nontraumatic), unspecified shoulder|Other rupture of muscle (nontraumatic), unspecified shoulder +C2895706|T046|PT|M62.119|ICD10CM|Other rupture of muscle (nontraumatic), unspecified shoulder|Other rupture of muscle (nontraumatic), unspecified shoulder +C0838959|T190|HT|M62.12|ICD10CM|Other rupture of muscle (nontraumatic), upper arm|Other rupture of muscle (nontraumatic), upper arm +C0838959|T190|AB|M62.12|ICD10CM|Other rupture of muscle (nontraumatic), upper arm|Other rupture of muscle (nontraumatic), upper arm +C2895707|T046|AB|M62.121|ICD10CM|Other rupture of muscle (nontraumatic), right upper arm|Other rupture of muscle (nontraumatic), right upper arm +C2895707|T046|PT|M62.121|ICD10CM|Other rupture of muscle (nontraumatic), right upper arm|Other rupture of muscle (nontraumatic), right upper arm +C2895708|T046|AB|M62.122|ICD10CM|Other rupture of muscle (nontraumatic), left upper arm|Other rupture of muscle (nontraumatic), left upper arm +C2895708|T046|PT|M62.122|ICD10CM|Other rupture of muscle (nontraumatic), left upper arm|Other rupture of muscle (nontraumatic), left upper arm +C2895709|T046|AB|M62.129|ICD10CM|Other rupture of muscle (nontraumatic), unsp upper arm|Other rupture of muscle (nontraumatic), unsp upper arm +C2895709|T046|PT|M62.129|ICD10CM|Other rupture of muscle (nontraumatic), unspecified upper arm|Other rupture of muscle (nontraumatic), unspecified upper arm +C0838960|T190|HT|M62.13|ICD10CM|Other rupture of muscle (nontraumatic), forearm|Other rupture of muscle (nontraumatic), forearm +C0838960|T190|AB|M62.13|ICD10CM|Other rupture of muscle (nontraumatic), forearm|Other rupture of muscle (nontraumatic), forearm +C2895710|T046|AB|M62.131|ICD10CM|Other rupture of muscle (nontraumatic), right forearm|Other rupture of muscle (nontraumatic), right forearm +C2895710|T046|PT|M62.131|ICD10CM|Other rupture of muscle (nontraumatic), right forearm|Other rupture of muscle (nontraumatic), right forearm +C2895711|T046|AB|M62.132|ICD10CM|Other rupture of muscle (nontraumatic), left forearm|Other rupture of muscle (nontraumatic), left forearm +C2895711|T046|PT|M62.132|ICD10CM|Other rupture of muscle (nontraumatic), left forearm|Other rupture of muscle (nontraumatic), left forearm +C2895712|T046|AB|M62.139|ICD10CM|Other rupture of muscle (nontraumatic), unspecified forearm|Other rupture of muscle (nontraumatic), unspecified forearm +C2895712|T046|PT|M62.139|ICD10CM|Other rupture of muscle (nontraumatic), unspecified forearm|Other rupture of muscle (nontraumatic), unspecified forearm +C0838961|T190|HT|M62.14|ICD10CM|Other rupture of muscle (nontraumatic), hand|Other rupture of muscle (nontraumatic), hand +C0838961|T190|AB|M62.14|ICD10CM|Other rupture of muscle (nontraumatic), hand|Other rupture of muscle (nontraumatic), hand +C2895713|T046|AB|M62.141|ICD10CM|Other rupture of muscle (nontraumatic), right hand|Other rupture of muscle (nontraumatic), right hand +C2895713|T046|PT|M62.141|ICD10CM|Other rupture of muscle (nontraumatic), right hand|Other rupture of muscle (nontraumatic), right hand +C2895714|T046|AB|M62.142|ICD10CM|Other rupture of muscle (nontraumatic), left hand|Other rupture of muscle (nontraumatic), left hand +C2895714|T046|PT|M62.142|ICD10CM|Other rupture of muscle (nontraumatic), left hand|Other rupture of muscle (nontraumatic), left hand +C2895715|T046|AB|M62.149|ICD10CM|Other rupture of muscle (nontraumatic), unspecified hand|Other rupture of muscle (nontraumatic), unspecified hand +C2895715|T046|PT|M62.149|ICD10CM|Other rupture of muscle (nontraumatic), unspecified hand|Other rupture of muscle (nontraumatic), unspecified hand +C2895716|T046|AB|M62.15|ICD10CM|Other rupture of muscle (nontraumatic), thigh|Other rupture of muscle (nontraumatic), thigh +C2895716|T046|HT|M62.15|ICD10CM|Other rupture of muscle (nontraumatic), thigh|Other rupture of muscle (nontraumatic), thigh +C2895717|T046|AB|M62.151|ICD10CM|Other rupture of muscle (nontraumatic), right thigh|Other rupture of muscle (nontraumatic), right thigh +C2895717|T046|PT|M62.151|ICD10CM|Other rupture of muscle (nontraumatic), right thigh|Other rupture of muscle (nontraumatic), right thigh +C2895718|T046|AB|M62.152|ICD10CM|Other rupture of muscle (nontraumatic), left thigh|Other rupture of muscle (nontraumatic), left thigh +C2895718|T046|PT|M62.152|ICD10CM|Other rupture of muscle (nontraumatic), left thigh|Other rupture of muscle (nontraumatic), left thigh +C2895719|T046|AB|M62.159|ICD10CM|Other rupture of muscle (nontraumatic), unspecified thigh|Other rupture of muscle (nontraumatic), unspecified thigh +C2895719|T046|PT|M62.159|ICD10CM|Other rupture of muscle (nontraumatic), unspecified thigh|Other rupture of muscle (nontraumatic), unspecified thigh +C0838963|T190|HT|M62.16|ICD10CM|Other rupture of muscle (nontraumatic), lower leg|Other rupture of muscle (nontraumatic), lower leg +C0838963|T190|AB|M62.16|ICD10CM|Other rupture of muscle (nontraumatic), lower leg|Other rupture of muscle (nontraumatic), lower leg +C2895720|T046|AB|M62.161|ICD10CM|Other rupture of muscle (nontraumatic), right lower leg|Other rupture of muscle (nontraumatic), right lower leg +C2895720|T046|PT|M62.161|ICD10CM|Other rupture of muscle (nontraumatic), right lower leg|Other rupture of muscle (nontraumatic), right lower leg +C2895721|T046|AB|M62.162|ICD10CM|Other rupture of muscle (nontraumatic), left lower leg|Other rupture of muscle (nontraumatic), left lower leg +C2895721|T046|PT|M62.162|ICD10CM|Other rupture of muscle (nontraumatic), left lower leg|Other rupture of muscle (nontraumatic), left lower leg +C2895722|T046|AB|M62.169|ICD10CM|Other rupture of muscle (nontraumatic), unsp lower leg|Other rupture of muscle (nontraumatic), unsp lower leg +C2895722|T046|PT|M62.169|ICD10CM|Other rupture of muscle (nontraumatic), unspecified lower leg|Other rupture of muscle (nontraumatic), unspecified lower leg +C0838964|T190|HT|M62.17|ICD10CM|Other rupture of muscle (nontraumatic), ankle and foot|Other rupture of muscle (nontraumatic), ankle and foot +C0838964|T190|AB|M62.17|ICD10CM|Other rupture of muscle (nontraumatic), ankle and foot|Other rupture of muscle (nontraumatic), ankle and foot +C2895723|T046|AB|M62.171|ICD10CM|Other rupture of muscle (nontraumatic), right ankle and foot|Other rupture of muscle (nontraumatic), right ankle and foot +C2895723|T046|PT|M62.171|ICD10CM|Other rupture of muscle (nontraumatic), right ankle and foot|Other rupture of muscle (nontraumatic), right ankle and foot +C2895724|T046|AB|M62.172|ICD10CM|Other rupture of muscle (nontraumatic), left ankle and foot|Other rupture of muscle (nontraumatic), left ankle and foot +C2895724|T046|PT|M62.172|ICD10CM|Other rupture of muscle (nontraumatic), left ankle and foot|Other rupture of muscle (nontraumatic), left ankle and foot +C2895725|T046|AB|M62.179|ICD10CM|Other rupture of muscle (nontraumatic), unsp ankle and foot|Other rupture of muscle (nontraumatic), unsp ankle and foot +C2895725|T046|PT|M62.179|ICD10CM|Other rupture of muscle (nontraumatic), unspecified ankle and foot|Other rupture of muscle (nontraumatic), unspecified ankle and foot +C0838965|T190|PT|M62.18|ICD10CM|Other rupture of muscle (nontraumatic), other site|Other rupture of muscle (nontraumatic), other site +C0838965|T190|AB|M62.18|ICD10CM|Other rupture of muscle (nontraumatic), other site|Other rupture of muscle (nontraumatic), other site +C0473768|T046|PT|M62.2|ICD10|Ischaemic infarction of muscle|Ischaemic infarction of muscle +C0473768|T046|PT|M62.2|ICD10AE|Ischemic infarction of muscle|Ischemic infarction of muscle +C2895726|T046|HT|M62.2|ICD10CM|Nontraumatic ischemic infarction of muscle|Nontraumatic ischemic infarction of muscle +C2895726|T046|AB|M62.2|ICD10CM|Nontraumatic ischemic infarction of muscle|Nontraumatic ischemic infarction of muscle +C2895727|T047|AB|M62.20|ICD10CM|Nontraumatic ischemic infarction of muscle, unspecified site|Nontraumatic ischemic infarction of muscle, unspecified site +C2895727|T047|PT|M62.20|ICD10CM|Nontraumatic ischemic infarction of muscle, unspecified site|Nontraumatic ischemic infarction of muscle, unspecified site +C2895728|T047|AB|M62.21|ICD10CM|Nontraumatic ischemic infarction of muscle, shoulder|Nontraumatic ischemic infarction of muscle, shoulder +C2895728|T047|HT|M62.21|ICD10CM|Nontraumatic ischemic infarction of muscle, shoulder|Nontraumatic ischemic infarction of muscle, shoulder +C2895729|T047|AB|M62.211|ICD10CM|Nontraumatic ischemic infarction of muscle, right shoulder|Nontraumatic ischemic infarction of muscle, right shoulder +C2895729|T047|PT|M62.211|ICD10CM|Nontraumatic ischemic infarction of muscle, right shoulder|Nontraumatic ischemic infarction of muscle, right shoulder +C2895730|T047|AB|M62.212|ICD10CM|Nontraumatic ischemic infarction of muscle, left shoulder|Nontraumatic ischemic infarction of muscle, left shoulder +C2895730|T047|PT|M62.212|ICD10CM|Nontraumatic ischemic infarction of muscle, left shoulder|Nontraumatic ischemic infarction of muscle, left shoulder +C2895731|T047|AB|M62.219|ICD10CM|Nontraumatic ischemic infarction of muscle, unsp shoulder|Nontraumatic ischemic infarction of muscle, unsp shoulder +C2895731|T047|PT|M62.219|ICD10CM|Nontraumatic ischemic infarction of muscle, unspecified shoulder|Nontraumatic ischemic infarction of muscle, unspecified shoulder +C2895732|T047|AB|M62.22|ICD10CM|Nontraumatic ischemic infarction of muscle, upper arm|Nontraumatic ischemic infarction of muscle, upper arm +C2895732|T047|HT|M62.22|ICD10CM|Nontraumatic ischemic infarction of muscle, upper arm|Nontraumatic ischemic infarction of muscle, upper arm +C2895733|T047|AB|M62.221|ICD10CM|Nontraumatic ischemic infarction of muscle, right upper arm|Nontraumatic ischemic infarction of muscle, right upper arm +C2895733|T047|PT|M62.221|ICD10CM|Nontraumatic ischemic infarction of muscle, right upper arm|Nontraumatic ischemic infarction of muscle, right upper arm +C2895734|T047|AB|M62.222|ICD10CM|Nontraumatic ischemic infarction of muscle, left upper arm|Nontraumatic ischemic infarction of muscle, left upper arm +C2895734|T047|PT|M62.222|ICD10CM|Nontraumatic ischemic infarction of muscle, left upper arm|Nontraumatic ischemic infarction of muscle, left upper arm +C2895735|T047|AB|M62.229|ICD10CM|Nontraumatic ischemic infarction of muscle, unsp upper arm|Nontraumatic ischemic infarction of muscle, unsp upper arm +C2895735|T047|PT|M62.229|ICD10CM|Nontraumatic ischemic infarction of muscle, unspecified upper arm|Nontraumatic ischemic infarction of muscle, unspecified upper arm +C2895736|T047|AB|M62.23|ICD10CM|Nontraumatic ischemic infarction of muscle, forearm|Nontraumatic ischemic infarction of muscle, forearm +C2895736|T047|HT|M62.23|ICD10CM|Nontraumatic ischemic infarction of muscle, forearm|Nontraumatic ischemic infarction of muscle, forearm +C2895737|T047|AB|M62.231|ICD10CM|Nontraumatic ischemic infarction of muscle, right forearm|Nontraumatic ischemic infarction of muscle, right forearm +C2895737|T047|PT|M62.231|ICD10CM|Nontraumatic ischemic infarction of muscle, right forearm|Nontraumatic ischemic infarction of muscle, right forearm +C2895738|T047|AB|M62.232|ICD10CM|Nontraumatic ischemic infarction of muscle, left forearm|Nontraumatic ischemic infarction of muscle, left forearm +C2895738|T047|PT|M62.232|ICD10CM|Nontraumatic ischemic infarction of muscle, left forearm|Nontraumatic ischemic infarction of muscle, left forearm +C2895739|T047|AB|M62.239|ICD10CM|Nontraumatic ischemic infarction of muscle, unsp forearm|Nontraumatic ischemic infarction of muscle, unsp forearm +C2895739|T047|PT|M62.239|ICD10CM|Nontraumatic ischemic infarction of muscle, unspecified forearm|Nontraumatic ischemic infarction of muscle, unspecified forearm +C2895740|T047|AB|M62.24|ICD10CM|Nontraumatic ischemic infarction of muscle, hand|Nontraumatic ischemic infarction of muscle, hand +C2895740|T047|HT|M62.24|ICD10CM|Nontraumatic ischemic infarction of muscle, hand|Nontraumatic ischemic infarction of muscle, hand +C2895741|T047|AB|M62.241|ICD10CM|Nontraumatic ischemic infarction of muscle, right hand|Nontraumatic ischemic infarction of muscle, right hand +C2895741|T047|PT|M62.241|ICD10CM|Nontraumatic ischemic infarction of muscle, right hand|Nontraumatic ischemic infarction of muscle, right hand +C2895742|T047|AB|M62.242|ICD10CM|Nontraumatic ischemic infarction of muscle, left hand|Nontraumatic ischemic infarction of muscle, left hand +C2895742|T047|PT|M62.242|ICD10CM|Nontraumatic ischemic infarction of muscle, left hand|Nontraumatic ischemic infarction of muscle, left hand +C2895743|T047|AB|M62.249|ICD10CM|Nontraumatic ischemic infarction of muscle, unspecified hand|Nontraumatic ischemic infarction of muscle, unspecified hand +C2895743|T047|PT|M62.249|ICD10CM|Nontraumatic ischemic infarction of muscle, unspecified hand|Nontraumatic ischemic infarction of muscle, unspecified hand +C2895744|T047|AB|M62.25|ICD10CM|Nontraumatic ischemic infarction of muscle, thigh|Nontraumatic ischemic infarction of muscle, thigh +C2895744|T047|HT|M62.25|ICD10CM|Nontraumatic ischemic infarction of muscle, thigh|Nontraumatic ischemic infarction of muscle, thigh +C2895745|T047|AB|M62.251|ICD10CM|Nontraumatic ischemic infarction of muscle, right thigh|Nontraumatic ischemic infarction of muscle, right thigh +C2895745|T047|PT|M62.251|ICD10CM|Nontraumatic ischemic infarction of muscle, right thigh|Nontraumatic ischemic infarction of muscle, right thigh +C2895746|T047|AB|M62.252|ICD10CM|Nontraumatic ischemic infarction of muscle, left thigh|Nontraumatic ischemic infarction of muscle, left thigh +C2895746|T047|PT|M62.252|ICD10CM|Nontraumatic ischemic infarction of muscle, left thigh|Nontraumatic ischemic infarction of muscle, left thigh +C2895747|T047|AB|M62.259|ICD10CM|Nontraumatic ischemic infarction of muscle, unsp thigh|Nontraumatic ischemic infarction of muscle, unsp thigh +C2895747|T047|PT|M62.259|ICD10CM|Nontraumatic ischemic infarction of muscle, unspecified thigh|Nontraumatic ischemic infarction of muscle, unspecified thigh +C2895748|T047|AB|M62.26|ICD10CM|Nontraumatic ischemic infarction of muscle, lower leg|Nontraumatic ischemic infarction of muscle, lower leg +C2895748|T047|HT|M62.26|ICD10CM|Nontraumatic ischemic infarction of muscle, lower leg|Nontraumatic ischemic infarction of muscle, lower leg +C2895749|T047|AB|M62.261|ICD10CM|Nontraumatic ischemic infarction of muscle, right lower leg|Nontraumatic ischemic infarction of muscle, right lower leg +C2895749|T047|PT|M62.261|ICD10CM|Nontraumatic ischemic infarction of muscle, right lower leg|Nontraumatic ischemic infarction of muscle, right lower leg +C2895750|T047|AB|M62.262|ICD10CM|Nontraumatic ischemic infarction of muscle, left lower leg|Nontraumatic ischemic infarction of muscle, left lower leg +C2895750|T047|PT|M62.262|ICD10CM|Nontraumatic ischemic infarction of muscle, left lower leg|Nontraumatic ischemic infarction of muscle, left lower leg +C2895751|T047|AB|M62.269|ICD10CM|Nontraumatic ischemic infarction of muscle, unsp lower leg|Nontraumatic ischemic infarction of muscle, unsp lower leg +C2895751|T047|PT|M62.269|ICD10CM|Nontraumatic ischemic infarction of muscle, unspecified lower leg|Nontraumatic ischemic infarction of muscle, unspecified lower leg +C2895752|T047|AB|M62.27|ICD10CM|Nontraumatic ischemic infarction of muscle, ankle and foot|Nontraumatic ischemic infarction of muscle, ankle and foot +C2895752|T047|HT|M62.27|ICD10CM|Nontraumatic ischemic infarction of muscle, ankle and foot|Nontraumatic ischemic infarction of muscle, ankle and foot +C2895753|T047|AB|M62.271|ICD10CM|Nontraumatic ischemic infarction of muscle, right ank/ft|Nontraumatic ischemic infarction of muscle, right ank/ft +C2895753|T047|PT|M62.271|ICD10CM|Nontraumatic ischemic infarction of muscle, right ankle and foot|Nontraumatic ischemic infarction of muscle, right ankle and foot +C2895754|T047|AB|M62.272|ICD10CM|Nontraumatic ischemic infarction of muscle, left ank/ft|Nontraumatic ischemic infarction of muscle, left ank/ft +C2895754|T047|PT|M62.272|ICD10CM|Nontraumatic ischemic infarction of muscle, left ankle and foot|Nontraumatic ischemic infarction of muscle, left ankle and foot +C2895755|T047|AB|M62.279|ICD10CM|Nontraumatic ischemic infarction of muscle, unsp ank/ft|Nontraumatic ischemic infarction of muscle, unsp ank/ft +C2895755|T047|PT|M62.279|ICD10CM|Nontraumatic ischemic infarction of muscle, unspecified ankle and foot|Nontraumatic ischemic infarction of muscle, unspecified ankle and foot +C2895756|T047|AB|M62.28|ICD10CM|Nontraumatic ischemic infarction of muscle, other site|Nontraumatic ischemic infarction of muscle, other site +C2895756|T047|PT|M62.28|ICD10CM|Nontraumatic ischemic infarction of muscle, other site|Nontraumatic ischemic infarction of muscle, other site +C0263989|T047|PT|M62.3|ICD10CM|Immobility syndrome (paraplegic)|Immobility syndrome (paraplegic) +C0263989|T047|AB|M62.3|ICD10CM|Immobility syndrome (paraplegic)|Immobility syndrome (paraplegic) +C0263989|T047|PT|M62.3|ICD10|Immobility syndrome (paraplegic)|Immobility syndrome (paraplegic) +C0009917|T190|PT|M62.4|ICD10|Contracture of muscle|Contracture of muscle +C0009917|T190|HT|M62.4|ICD10CM|Contracture of muscle|Contracture of muscle +C0009917|T190|AB|M62.4|ICD10CM|Contracture of muscle|Contracture of muscle +C0158350|T046|ET|M62.4|ICD10CM|Contracture of tendon (sheath)|Contracture of tendon (sheath) +C0009917|T190|AB|M62.40|ICD10CM|Contracture of muscle, unspecified site|Contracture of muscle, unspecified site +C0009917|T190|PT|M62.40|ICD10CM|Contracture of muscle, unspecified site|Contracture of muscle, unspecified site +C2895757|T020|AB|M62.41|ICD10CM|Contracture of muscle, shoulder|Contracture of muscle, shoulder +C2895757|T020|HT|M62.41|ICD10CM|Contracture of muscle, shoulder|Contracture of muscle, shoulder +C2895758|T020|AB|M62.411|ICD10CM|Contracture of muscle, right shoulder|Contracture of muscle, right shoulder +C2895758|T020|PT|M62.411|ICD10CM|Contracture of muscle, right shoulder|Contracture of muscle, right shoulder +C2895759|T020|AB|M62.412|ICD10CM|Contracture of muscle, left shoulder|Contracture of muscle, left shoulder +C2895759|T020|PT|M62.412|ICD10CM|Contracture of muscle, left shoulder|Contracture of muscle, left shoulder +C2895760|T020|AB|M62.419|ICD10CM|Contracture of muscle, unspecified shoulder|Contracture of muscle, unspecified shoulder +C2895760|T020|PT|M62.419|ICD10CM|Contracture of muscle, unspecified shoulder|Contracture of muscle, unspecified shoulder +C0838989|T020|HT|M62.42|ICD10CM|Contracture of muscle, upper arm|Contracture of muscle, upper arm +C0838989|T020|AB|M62.42|ICD10CM|Contracture of muscle, upper arm|Contracture of muscle, upper arm +C2895761|T020|AB|M62.421|ICD10CM|Contracture of muscle, right upper arm|Contracture of muscle, right upper arm +C2895761|T020|PT|M62.421|ICD10CM|Contracture of muscle, right upper arm|Contracture of muscle, right upper arm +C2895762|T020|AB|M62.422|ICD10CM|Contracture of muscle, left upper arm|Contracture of muscle, left upper arm +C2895762|T020|PT|M62.422|ICD10CM|Contracture of muscle, left upper arm|Contracture of muscle, left upper arm +C2895763|T020|AB|M62.429|ICD10CM|Contracture of muscle, unspecified upper arm|Contracture of muscle, unspecified upper arm +C2895763|T020|PT|M62.429|ICD10CM|Contracture of muscle, unspecified upper arm|Contracture of muscle, unspecified upper arm +C0838990|T020|HT|M62.43|ICD10CM|Contracture of muscle, forearm|Contracture of muscle, forearm +C0838990|T020|AB|M62.43|ICD10CM|Contracture of muscle, forearm|Contracture of muscle, forearm +C2895764|T020|AB|M62.431|ICD10CM|Contracture of muscle, right forearm|Contracture of muscle, right forearm +C2895764|T020|PT|M62.431|ICD10CM|Contracture of muscle, right forearm|Contracture of muscle, right forearm +C2895765|T020|AB|M62.432|ICD10CM|Contracture of muscle, left forearm|Contracture of muscle, left forearm +C2895765|T020|PT|M62.432|ICD10CM|Contracture of muscle, left forearm|Contracture of muscle, left forearm +C2895766|T020|AB|M62.439|ICD10CM|Contracture of muscle, unspecified forearm|Contracture of muscle, unspecified forearm +C2895766|T020|PT|M62.439|ICD10CM|Contracture of muscle, unspecified forearm|Contracture of muscle, unspecified forearm +C0838991|T020|HT|M62.44|ICD10CM|Contracture of muscle, hand|Contracture of muscle, hand +C0838991|T020|AB|M62.44|ICD10CM|Contracture of muscle, hand|Contracture of muscle, hand +C2895767|T020|AB|M62.441|ICD10CM|Contracture of muscle, right hand|Contracture of muscle, right hand +C2895767|T020|PT|M62.441|ICD10CM|Contracture of muscle, right hand|Contracture of muscle, right hand +C2895768|T020|AB|M62.442|ICD10CM|Contracture of muscle, left hand|Contracture of muscle, left hand +C2895768|T020|PT|M62.442|ICD10CM|Contracture of muscle, left hand|Contracture of muscle, left hand +C2895769|T020|AB|M62.449|ICD10CM|Contracture of muscle, unspecified hand|Contracture of muscle, unspecified hand +C2895769|T020|PT|M62.449|ICD10CM|Contracture of muscle, unspecified hand|Contracture of muscle, unspecified hand +C2895770|T020|AB|M62.45|ICD10CM|Contracture of muscle, thigh|Contracture of muscle, thigh +C2895770|T020|HT|M62.45|ICD10CM|Contracture of muscle, thigh|Contracture of muscle, thigh +C2895771|T020|AB|M62.451|ICD10CM|Contracture of muscle, right thigh|Contracture of muscle, right thigh +C2895771|T020|PT|M62.451|ICD10CM|Contracture of muscle, right thigh|Contracture of muscle, right thigh +C2895772|T020|AB|M62.452|ICD10CM|Contracture of muscle, left thigh|Contracture of muscle, left thigh +C2895772|T020|PT|M62.452|ICD10CM|Contracture of muscle, left thigh|Contracture of muscle, left thigh +C2895773|T020|AB|M62.459|ICD10CM|Contracture of muscle, unspecified thigh|Contracture of muscle, unspecified thigh +C2895773|T020|PT|M62.459|ICD10CM|Contracture of muscle, unspecified thigh|Contracture of muscle, unspecified thigh +C0838993|T020|HT|M62.46|ICD10CM|Contracture of muscle, lower leg|Contracture of muscle, lower leg +C0838993|T020|AB|M62.46|ICD10CM|Contracture of muscle, lower leg|Contracture of muscle, lower leg +C2895774|T020|AB|M62.461|ICD10CM|Contracture of muscle, right lower leg|Contracture of muscle, right lower leg +C2895774|T020|PT|M62.461|ICD10CM|Contracture of muscle, right lower leg|Contracture of muscle, right lower leg +C2895775|T020|AB|M62.462|ICD10CM|Contracture of muscle, left lower leg|Contracture of muscle, left lower leg +C2895775|T020|PT|M62.462|ICD10CM|Contracture of muscle, left lower leg|Contracture of muscle, left lower leg +C2895776|T020|AB|M62.469|ICD10CM|Contracture of muscle, unspecified lower leg|Contracture of muscle, unspecified lower leg +C2895776|T020|PT|M62.469|ICD10CM|Contracture of muscle, unspecified lower leg|Contracture of muscle, unspecified lower leg +C0838994|T020|HT|M62.47|ICD10CM|Contracture of muscle, ankle and foot|Contracture of muscle, ankle and foot +C0838994|T020|AB|M62.47|ICD10CM|Contracture of muscle, ankle and foot|Contracture of muscle, ankle and foot +C2895777|T020|AB|M62.471|ICD10CM|Contracture of muscle, right ankle and foot|Contracture of muscle, right ankle and foot +C2895777|T020|PT|M62.471|ICD10CM|Contracture of muscle, right ankle and foot|Contracture of muscle, right ankle and foot +C2895778|T020|AB|M62.472|ICD10CM|Contracture of muscle, left ankle and foot|Contracture of muscle, left ankle and foot +C2895778|T020|PT|M62.472|ICD10CM|Contracture of muscle, left ankle and foot|Contracture of muscle, left ankle and foot +C2895779|T020|AB|M62.479|ICD10CM|Contracture of muscle, unspecified ankle and foot|Contracture of muscle, unspecified ankle and foot +C2895779|T020|PT|M62.479|ICD10CM|Contracture of muscle, unspecified ankle and foot|Contracture of muscle, unspecified ankle and foot +C0838995|T190|PT|M62.48|ICD10CM|Contracture of muscle, other site|Contracture of muscle, other site +C0838995|T190|AB|M62.48|ICD10CM|Contracture of muscle, other site|Contracture of muscle, other site +C0838987|T020|PT|M62.49|ICD10CM|Contracture of muscle, multiple sites|Contracture of muscle, multiple sites +C0838987|T020|AB|M62.49|ICD10CM|Contracture of muscle, multiple sites|Contracture of muscle, multiple sites +C2895780|T020|ET|M62.5|ICD10CM|Disuse atrophy NEC|Disuse atrophy NEC +C0869065|T020|PT|M62.5|ICD10|Muscle wasting and atrophy, not elsewhere classified|Muscle wasting and atrophy, not elsewhere classified +C0869065|T020|HT|M62.5|ICD10CM|Muscle wasting and atrophy, not elsewhere classified|Muscle wasting and atrophy, not elsewhere classified +C0869065|T020|AB|M62.5|ICD10CM|Muscle wasting and atrophy, not elsewhere classified|Muscle wasting and atrophy, not elsewhere classified +C0839006|T046|AB|M62.50|ICD10CM|Muscle wasting and atrophy, NEC, unsp site|Muscle wasting and atrophy, NEC, unsp site +C0839006|T046|PT|M62.50|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, unspecified site|Muscle wasting and atrophy, not elsewhere classified, unspecified site +C2895781|T047|AB|M62.51|ICD10CM|Muscle wasting and atrophy, NEC, shoulder|Muscle wasting and atrophy, NEC, shoulder +C2895781|T047|HT|M62.51|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, shoulder|Muscle wasting and atrophy, not elsewhere classified, shoulder +C2895782|T047|AB|M62.511|ICD10CM|Muscle wasting and atrophy, NEC, right shoulder|Muscle wasting and atrophy, NEC, right shoulder +C2895782|T047|PT|M62.511|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, right shoulder|Muscle wasting and atrophy, not elsewhere classified, right shoulder +C2895783|T047|AB|M62.512|ICD10CM|Muscle wasting and atrophy, NEC, left shoulder|Muscle wasting and atrophy, NEC, left shoulder +C2895783|T047|PT|M62.512|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, left shoulder|Muscle wasting and atrophy, not elsewhere classified, left shoulder +C2895784|T047|AB|M62.519|ICD10CM|Muscle wasting and atrophy, NEC, unsp shoulder|Muscle wasting and atrophy, NEC, unsp shoulder +C2895784|T047|PT|M62.519|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, unspecified shoulder|Muscle wasting and atrophy, not elsewhere classified, unspecified shoulder +C0838999|T046|AB|M62.52|ICD10CM|Muscle wasting and atrophy, NEC, upper arm|Muscle wasting and atrophy, NEC, upper arm +C0838999|T046|HT|M62.52|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, upper arm|Muscle wasting and atrophy, not elsewhere classified, upper arm +C2895785|T046|AB|M62.521|ICD10CM|Muscle wasting and atrophy, NEC, right upper arm|Muscle wasting and atrophy, NEC, right upper arm +C2895785|T046|PT|M62.521|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, right upper arm|Muscle wasting and atrophy, not elsewhere classified, right upper arm +C2895786|T046|AB|M62.522|ICD10CM|Muscle wasting and atrophy, NEC, left upper arm|Muscle wasting and atrophy, NEC, left upper arm +C2895786|T046|PT|M62.522|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, left upper arm|Muscle wasting and atrophy, not elsewhere classified, left upper arm +C2895787|T046|AB|M62.529|ICD10CM|Muscle wasting and atrophy, NEC, unsp upper arm|Muscle wasting and atrophy, NEC, unsp upper arm +C2895787|T046|PT|M62.529|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, unspecified upper arm|Muscle wasting and atrophy, not elsewhere classified, unspecified upper arm +C0839000|T046|AB|M62.53|ICD10CM|Muscle wasting and atrophy, NEC, forearm|Muscle wasting and atrophy, NEC, forearm +C0839000|T046|HT|M62.53|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, forearm|Muscle wasting and atrophy, not elsewhere classified, forearm +C2895788|T046|AB|M62.531|ICD10CM|Muscle wasting and atrophy, NEC, right forearm|Muscle wasting and atrophy, NEC, right forearm +C2895788|T046|PT|M62.531|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, right forearm|Muscle wasting and atrophy, not elsewhere classified, right forearm +C2895789|T046|AB|M62.532|ICD10CM|Muscle wasting and atrophy, NEC, left forearm|Muscle wasting and atrophy, NEC, left forearm +C2895789|T046|PT|M62.532|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, left forearm|Muscle wasting and atrophy, not elsewhere classified, left forearm +C2895790|T046|AB|M62.539|ICD10CM|Muscle wasting and atrophy, NEC, unsp forearm|Muscle wasting and atrophy, NEC, unsp forearm +C2895790|T046|PT|M62.539|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, unspecified forearm|Muscle wasting and atrophy, not elsewhere classified, unspecified forearm +C0839001|T046|HT|M62.54|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, hand|Muscle wasting and atrophy, not elsewhere classified, hand +C0839001|T046|AB|M62.54|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, hand|Muscle wasting and atrophy, not elsewhere classified, hand +C2895791|T046|AB|M62.541|ICD10CM|Muscle wasting and atrophy, NEC, right hand|Muscle wasting and atrophy, NEC, right hand +C2895791|T046|PT|M62.541|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, right hand|Muscle wasting and atrophy, not elsewhere classified, right hand +C2895792|T046|AB|M62.542|ICD10CM|Muscle wasting and atrophy, NEC, left hand|Muscle wasting and atrophy, NEC, left hand +C2895792|T046|PT|M62.542|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, left hand|Muscle wasting and atrophy, not elsewhere classified, left hand +C2895793|T046|AB|M62.549|ICD10CM|Muscle wasting and atrophy, NEC, unsp hand|Muscle wasting and atrophy, NEC, unsp hand +C2895793|T046|PT|M62.549|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, unspecified hand|Muscle wasting and atrophy, not elsewhere classified, unspecified hand +C2895794|T047|AB|M62.55|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, thigh|Muscle wasting and atrophy, not elsewhere classified, thigh +C2895794|T047|HT|M62.55|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, thigh|Muscle wasting and atrophy, not elsewhere classified, thigh +C2895795|T047|AB|M62.551|ICD10CM|Muscle wasting and atrophy, NEC, right thigh|Muscle wasting and atrophy, NEC, right thigh +C2895795|T047|PT|M62.551|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, right thigh|Muscle wasting and atrophy, not elsewhere classified, right thigh +C2895796|T047|AB|M62.552|ICD10CM|Muscle wasting and atrophy, NEC, left thigh|Muscle wasting and atrophy, NEC, left thigh +C2895796|T047|PT|M62.552|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, left thigh|Muscle wasting and atrophy, not elsewhere classified, left thigh +C2895797|T047|AB|M62.559|ICD10CM|Muscle wasting and atrophy, NEC, unsp thigh|Muscle wasting and atrophy, NEC, unsp thigh +C2895797|T047|PT|M62.559|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, unspecified thigh|Muscle wasting and atrophy, not elsewhere classified, unspecified thigh +C0839003|T046|AB|M62.56|ICD10CM|Muscle wasting and atrophy, NEC, lower leg|Muscle wasting and atrophy, NEC, lower leg +C0839003|T046|HT|M62.56|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, lower leg|Muscle wasting and atrophy, not elsewhere classified, lower leg +C2895798|T046|AB|M62.561|ICD10CM|Muscle wasting and atrophy, NEC, right lower leg|Muscle wasting and atrophy, NEC, right lower leg +C2895798|T046|PT|M62.561|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, right lower leg|Muscle wasting and atrophy, not elsewhere classified, right lower leg +C2895799|T046|AB|M62.562|ICD10CM|Muscle wasting and atrophy, NEC, left lower leg|Muscle wasting and atrophy, NEC, left lower leg +C2895799|T046|PT|M62.562|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, left lower leg|Muscle wasting and atrophy, not elsewhere classified, left lower leg +C2895800|T046|AB|M62.569|ICD10CM|Muscle wasting and atrophy, NEC, unsp lower leg|Muscle wasting and atrophy, NEC, unsp lower leg +C2895800|T046|PT|M62.569|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, unspecified lower leg|Muscle wasting and atrophy, not elsewhere classified, unspecified lower leg +C0839004|T046|AB|M62.57|ICD10CM|Muscle wasting and atrophy, NEC, ankle and foot|Muscle wasting and atrophy, NEC, ankle and foot +C0839004|T046|HT|M62.57|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, ankle and foot|Muscle wasting and atrophy, not elsewhere classified, ankle and foot +C2895801|T046|AB|M62.571|ICD10CM|Muscle wasting and atrophy, NEC, right ankle and foot|Muscle wasting and atrophy, NEC, right ankle and foot +C2895801|T046|PT|M62.571|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, right ankle and foot|Muscle wasting and atrophy, not elsewhere classified, right ankle and foot +C2895802|T046|AB|M62.572|ICD10CM|Muscle wasting and atrophy, NEC, left ankle and foot|Muscle wasting and atrophy, NEC, left ankle and foot +C2895802|T046|PT|M62.572|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, left ankle and foot|Muscle wasting and atrophy, not elsewhere classified, left ankle and foot +C2895803|T046|AB|M62.579|ICD10CM|Muscle wasting and atrophy, NEC, unsp ankle and foot|Muscle wasting and atrophy, NEC, unsp ankle and foot +C2895803|T046|PT|M62.579|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, unspecified ankle and foot|Muscle wasting and atrophy, not elsewhere classified, unspecified ankle and foot +C0839005|T046|AB|M62.58|ICD10CM|Muscle wasting and atrophy, NEC, oth site|Muscle wasting and atrophy, NEC, oth site +C0839005|T046|PT|M62.58|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, other site|Muscle wasting and atrophy, not elsewhere classified, other site +C0838997|T046|AB|M62.59|ICD10CM|Muscle wasting and atrophy, NEC, multiple sites|Muscle wasting and atrophy, NEC, multiple sites +C0838997|T046|PT|M62.59|ICD10CM|Muscle wasting and atrophy, not elsewhere classified, multiple sites|Muscle wasting and atrophy, not elsewhere classified, multiple sites +C0080194|T037|PT|M62.6|ICD10|Muscle strain|Muscle strain +C0029741|T047|PT|M62.8|ICD10|Other specified disorders of muscle|Other specified disorders of muscle +C0029741|T047|HT|M62.8|ICD10CM|Other specified disorders of muscle|Other specified disorders of muscle +C0029741|T047|AB|M62.8|ICD10CM|Other specified disorders of muscle|Other specified disorders of muscle +C0746674|T184|AB|M62.81|ICD10CM|Muscle weakness (generalized)|Muscle weakness (generalized) +C0746674|T184|PT|M62.81|ICD10CM|Muscle weakness (generalized)|Muscle weakness (generalized) +C0035410|T046|PT|M62.82|ICD10CM|Rhabdomyolysis|Rhabdomyolysis +C0035410|T046|AB|M62.82|ICD10CM|Rhabdomyolysis|Rhabdomyolysis +C0037763|T184|HT|M62.83|ICD10CM|Muscle spasm|Muscle spasm +C0037763|T184|AB|M62.83|ICD10CM|Muscle spasm|Muscle spasm +C0238738|T047|AB|M62.830|ICD10CM|Muscle spasm of back|Muscle spasm of back +C0238738|T047|PT|M62.830|ICD10CM|Muscle spasm of back|Muscle spasm of back +C0277823|T184|ET|M62.831|ICD10CM|Charley-horse|Charley-horse +C0178419|T184|AB|M62.831|ICD10CM|Muscle spasm of calf|Muscle spasm of calf +C0178419|T184|PT|M62.831|ICD10CM|Muscle spasm of calf|Muscle spasm of calf +C2895804|T184|AB|M62.838|ICD10CM|Other muscle spasm|Other muscle spasm +C2895804|T184|PT|M62.838|ICD10CM|Other muscle spasm|Other muscle spasm +C4268741|T047|ET|M62.84|ICD10CM|Age-related sarcopenia|Age-related sarcopenia +C0872084|T047|AB|M62.84|ICD10CM|Sarcopenia|Sarcopenia +C0872084|T047|PT|M62.84|ICD10CM|Sarcopenia|Sarcopenia +C0343258|T020|ET|M62.89|ICD10CM|Muscle (sheath) hernia|Muscle (sheath) hernia +C0029741|T047|PT|M62.89|ICD10CM|Other specified disorders of muscle|Other specified disorders of muscle +C0029741|T047|AB|M62.89|ICD10CM|Other specified disorders of muscle|Other specified disorders of muscle +C0026848|T047|PT|M62.9|ICD10CM|Disorder of muscle, unspecified|Disorder of muscle, unspecified +C0026848|T047|AB|M62.9|ICD10CM|Disorder of muscle, unspecified|Disorder of muscle, unspecified +C0026848|T047|PT|M62.9|ICD10|Disorder of muscle, unspecified|Disorder of muscle, unspecified +C0694520|T047|HT|M63|ICD10|Disorders of muscle in diseases classified elsewhere|Disorders of muscle in diseases classified elsewhere +C0694520|T047|HT|M63|ICD10CM|Disorders of muscle in diseases classified elsewhere|Disorders of muscle in diseases classified elsewhere +C0694520|T047|AB|M63|ICD10CM|Disorders of muscle in diseases classified elsewhere|Disorders of muscle in diseases classified elsewhere +C0477639|T047|PT|M63.0|ICD10|Myositis in bacterial diseases classified elsewhere|Myositis in bacterial diseases classified elsewhere +C0477640|T047|PT|M63.1|ICD10|Myositis in protozoal and parasitic infections classified elsewhere|Myositis in protozoal and parasitic infections classified elsewhere +C0477641|T047|PT|M63.2|ICD10|Myositis in other infectious diseases classified elsewhere|Myositis in other infectious diseases classified elsewhere +C0451845|T047|PT|M63.3|ICD10|Myositis in sarcoidosis|Myositis in sarcoidosis +C0694520|T047|AB|M63.8|ICD10CM|Disorders of muscle in diseases classified elsewhere|Disorders of muscle in diseases classified elsewhere +C0694520|T047|HT|M63.8|ICD10CM|Disorders of muscle in diseases classified elsewhere|Disorders of muscle in diseases classified elsewhere +C0477643|T047|PT|M63.8|ICD10|Other disorders of muscle in diseases classified elsewhere|Other disorders of muscle in diseases classified elsewhere +C2895805|T047|AB|M63.80|ICD10CM|Disorders of muscle in diseases classd elswhr, unsp site|Disorders of muscle in diseases classd elswhr, unsp site +C2895805|T047|PT|M63.80|ICD10CM|Disorders of muscle in diseases classified elsewhere, unspecified site|Disorders of muscle in diseases classified elsewhere, unspecified site +C2895806|T047|AB|M63.81|ICD10CM|Disorders of muscle in diseases classd elswhr, shoulder|Disorders of muscle in diseases classd elswhr, shoulder +C2895806|T047|HT|M63.81|ICD10CM|Disorders of muscle in diseases classified elsewhere, shoulder|Disorders of muscle in diseases classified elsewhere, shoulder +C2895807|T047|AB|M63.811|ICD10CM|Disorders of muscle in diseases classd elswhr, r shoulder|Disorders of muscle in diseases classd elswhr, r shoulder +C2895807|T047|PT|M63.811|ICD10CM|Disorders of muscle in diseases classified elsewhere, right shoulder|Disorders of muscle in diseases classified elsewhere, right shoulder +C2895808|T047|AB|M63.812|ICD10CM|Disorders of muscle in diseases classd elswhr, left shoulder|Disorders of muscle in diseases classd elswhr, left shoulder +C2895808|T047|PT|M63.812|ICD10CM|Disorders of muscle in diseases classified elsewhere, left shoulder|Disorders of muscle in diseases classified elsewhere, left shoulder +C2895809|T047|AB|M63.819|ICD10CM|Disorders of muscle in diseases classd elswhr, unsp shoulder|Disorders of muscle in diseases classd elswhr, unsp shoulder +C2895809|T047|PT|M63.819|ICD10CM|Disorders of muscle in diseases classified elsewhere, unspecified shoulder|Disorders of muscle in diseases classified elsewhere, unspecified shoulder +C2895810|T047|AB|M63.82|ICD10CM|Disorders of muscle in diseases classd elswhr, upper arm|Disorders of muscle in diseases classd elswhr, upper arm +C2895810|T047|HT|M63.82|ICD10CM|Disorders of muscle in diseases classified elsewhere, upper arm|Disorders of muscle in diseases classified elsewhere, upper arm +C2895811|T047|AB|M63.821|ICD10CM|Disorders of muscle in diseases classd elswhr, r up arm|Disorders of muscle in diseases classd elswhr, r up arm +C2895811|T047|PT|M63.821|ICD10CM|Disorders of muscle in diseases classified elsewhere, right upper arm|Disorders of muscle in diseases classified elsewhere, right upper arm +C2895812|T047|AB|M63.822|ICD10CM|Disorders of muscle in diseases classd elswhr, l up arm|Disorders of muscle in diseases classd elswhr, l up arm +C2895812|T047|PT|M63.822|ICD10CM|Disorders of muscle in diseases classified elsewhere, left upper arm|Disorders of muscle in diseases classified elsewhere, left upper arm +C2895813|T047|AB|M63.829|ICD10CM|Disord of muscle in diseases classd elswhr, unsp upper arm|Disord of muscle in diseases classd elswhr, unsp upper arm +C2895813|T047|PT|M63.829|ICD10CM|Disorders of muscle in diseases classified elsewhere, unspecified upper arm|Disorders of muscle in diseases classified elsewhere, unspecified upper arm +C2895814|T047|AB|M63.83|ICD10CM|Disorders of muscle in diseases classd elswhr, forearm|Disorders of muscle in diseases classd elswhr, forearm +C2895814|T047|HT|M63.83|ICD10CM|Disorders of muscle in diseases classified elsewhere, forearm|Disorders of muscle in diseases classified elsewhere, forearm +C2895815|T047|AB|M63.831|ICD10CM|Disorders of muscle in diseases classd elswhr, right forearm|Disorders of muscle in diseases classd elswhr, right forearm +C2895815|T047|PT|M63.831|ICD10CM|Disorders of muscle in diseases classified elsewhere, right forearm|Disorders of muscle in diseases classified elsewhere, right forearm +C2895816|T047|AB|M63.832|ICD10CM|Disorders of muscle in diseases classd elswhr, left forearm|Disorders of muscle in diseases classd elswhr, left forearm +C2895816|T047|PT|M63.832|ICD10CM|Disorders of muscle in diseases classified elsewhere, left forearm|Disorders of muscle in diseases classified elsewhere, left forearm +C2895817|T047|AB|M63.839|ICD10CM|Disorders of muscle in diseases classd elswhr, unsp forearm|Disorders of muscle in diseases classd elswhr, unsp forearm +C2895817|T047|PT|M63.839|ICD10CM|Disorders of muscle in diseases classified elsewhere, unspecified forearm|Disorders of muscle in diseases classified elsewhere, unspecified forearm +C2895818|T047|AB|M63.84|ICD10CM|Disorders of muscle in diseases classified elsewhere, hand|Disorders of muscle in diseases classified elsewhere, hand +C2895818|T047|HT|M63.84|ICD10CM|Disorders of muscle in diseases classified elsewhere, hand|Disorders of muscle in diseases classified elsewhere, hand +C2895819|T047|AB|M63.841|ICD10CM|Disorders of muscle in diseases classd elswhr, right hand|Disorders of muscle in diseases classd elswhr, right hand +C2895819|T047|PT|M63.841|ICD10CM|Disorders of muscle in diseases classified elsewhere, right hand|Disorders of muscle in diseases classified elsewhere, right hand +C2895820|T047|AB|M63.842|ICD10CM|Disorders of muscle in diseases classd elswhr, left hand|Disorders of muscle in diseases classd elswhr, left hand +C2895820|T047|PT|M63.842|ICD10CM|Disorders of muscle in diseases classified elsewhere, left hand|Disorders of muscle in diseases classified elsewhere, left hand +C2895821|T047|AB|M63.849|ICD10CM|Disorders of muscle in diseases classd elswhr, unsp hand|Disorders of muscle in diseases classd elswhr, unsp hand +C2895821|T047|PT|M63.849|ICD10CM|Disorders of muscle in diseases classified elsewhere, unspecified hand|Disorders of muscle in diseases classified elsewhere, unspecified hand +C2895822|T047|AB|M63.85|ICD10CM|Disorders of muscle in diseases classified elsewhere, thigh|Disorders of muscle in diseases classified elsewhere, thigh +C2895822|T047|HT|M63.85|ICD10CM|Disorders of muscle in diseases classified elsewhere, thigh|Disorders of muscle in diseases classified elsewhere, thigh +C2895823|T047|AB|M63.851|ICD10CM|Disorders of muscle in diseases classd elswhr, right thigh|Disorders of muscle in diseases classd elswhr, right thigh +C2895823|T047|PT|M63.851|ICD10CM|Disorders of muscle in diseases classified elsewhere, right thigh|Disorders of muscle in diseases classified elsewhere, right thigh +C2895824|T047|AB|M63.852|ICD10CM|Disorders of muscle in diseases classd elswhr, left thigh|Disorders of muscle in diseases classd elswhr, left thigh +C2895824|T047|PT|M63.852|ICD10CM|Disorders of muscle in diseases classified elsewhere, left thigh|Disorders of muscle in diseases classified elsewhere, left thigh +C2895825|T047|AB|M63.859|ICD10CM|Disorders of muscle in diseases classd elswhr, unsp thigh|Disorders of muscle in diseases classd elswhr, unsp thigh +C2895825|T047|PT|M63.859|ICD10CM|Disorders of muscle in diseases classified elsewhere, unspecified thigh|Disorders of muscle in diseases classified elsewhere, unspecified thigh +C2895826|T047|AB|M63.86|ICD10CM|Disorders of muscle in diseases classd elswhr, lower leg|Disorders of muscle in diseases classd elswhr, lower leg +C2895826|T047|HT|M63.86|ICD10CM|Disorders of muscle in diseases classified elsewhere, lower leg|Disorders of muscle in diseases classified elsewhere, lower leg +C2895827|T047|AB|M63.861|ICD10CM|Disorders of muscle in diseases classd elswhr, r low leg|Disorders of muscle in diseases classd elswhr, r low leg +C2895827|T047|PT|M63.861|ICD10CM|Disorders of muscle in diseases classified elsewhere, right lower leg|Disorders of muscle in diseases classified elsewhere, right lower leg +C2895828|T047|AB|M63.862|ICD10CM|Disorders of muscle in diseases classd elswhr, l low leg|Disorders of muscle in diseases classd elswhr, l low leg +C2895828|T047|PT|M63.862|ICD10CM|Disorders of muscle in diseases classified elsewhere, left lower leg|Disorders of muscle in diseases classified elsewhere, left lower leg +C2895829|T047|AB|M63.869|ICD10CM|Disord of muscle in diseases classd elswhr, unsp lower leg|Disord of muscle in diseases classd elswhr, unsp lower leg +C2895829|T047|PT|M63.869|ICD10CM|Disorders of muscle in diseases classified elsewhere, unspecified lower leg|Disorders of muscle in diseases classified elsewhere, unspecified lower leg +C2895830|T047|AB|M63.87|ICD10CM|Disorders of muscle in diseases classd elswhr, ank/ft|Disorders of muscle in diseases classd elswhr, ank/ft +C2895830|T047|HT|M63.87|ICD10CM|Disorders of muscle in diseases classified elsewhere, ankle and foot|Disorders of muscle in diseases classified elsewhere, ankle and foot +C2895831|T047|AB|M63.871|ICD10CM|Disorders of muscle in diseases classd elswhr, right ank/ft|Disorders of muscle in diseases classd elswhr, right ank/ft +C2895831|T047|PT|M63.871|ICD10CM|Disorders of muscle in diseases classified elsewhere, right ankle and foot|Disorders of muscle in diseases classified elsewhere, right ankle and foot +C2895832|T047|AB|M63.872|ICD10CM|Disorders of muscle in diseases classd elswhr, left ank/ft|Disorders of muscle in diseases classd elswhr, left ank/ft +C2895832|T047|PT|M63.872|ICD10CM|Disorders of muscle in diseases classified elsewhere, left ankle and foot|Disorders of muscle in diseases classified elsewhere, left ankle and foot +C2895833|T047|AB|M63.879|ICD10CM|Disorders of muscle in diseases classd elswhr, unsp ank/ft|Disorders of muscle in diseases classd elswhr, unsp ank/ft +C2895833|T047|PT|M63.879|ICD10CM|Disorders of muscle in diseases classified elsewhere, unspecified ankle and foot|Disorders of muscle in diseases classified elsewhere, unspecified ankle and foot +C2895834|T047|AB|M63.88|ICD10CM|Disorders of muscle in diseases classd elswhr, oth site|Disorders of muscle in diseases classd elswhr, oth site +C2895834|T047|PT|M63.88|ICD10CM|Disorders of muscle in diseases classified elsewhere, other site|Disorders of muscle in diseases classified elsewhere, other site +C2895835|T047|AB|M63.89|ICD10CM|Disord of muscle in diseases classd elswhr, multiple sites|Disord of muscle in diseases classd elswhr, multiple sites +C2895835|T047|PT|M63.89|ICD10CM|Disorders of muscle in diseases classified elsewhere, multiple sites|Disorders of muscle in diseases classified elsewhere, multiple sites +C0039104|T047|HT|M65|ICD10|Synovitis and tenosynovitis|Synovitis and tenosynovitis +C0039104|T047|HT|M65|ICD10CM|Synovitis and tenosynovitis|Synovitis and tenosynovitis +C0039104|T047|AB|M65|ICD10CM|Synovitis and tenosynovitis|Synovitis and tenosynovitis +C0477645|T047|HT|M65-M67|ICD10CM|Disorders of synovium and tendon (M65-M67)|Disorders of synovium and tendon (M65-M67) +C0477645|T047|HT|M65-M68.9|ICD10|Disorders of synovium and tendon|Disorders of synovium and tendon +C0343226|T047|PT|M65.0|ICD10|Abscess of tendon sheath|Abscess of tendon sheath +C0343226|T047|HT|M65.0|ICD10CM|Abscess of tendon sheath|Abscess of tendon sheath +C0343226|T047|AB|M65.0|ICD10CM|Abscess of tendon sheath|Abscess of tendon sheath +C0839096|T047|AB|M65.00|ICD10CM|Abscess of tendon sheath, unspecified site|Abscess of tendon sheath, unspecified site +C0839096|T047|PT|M65.00|ICD10CM|Abscess of tendon sheath, unspecified site|Abscess of tendon sheath, unspecified site +C2895836|T047|AB|M65.01|ICD10CM|Abscess of tendon sheath, shoulder|Abscess of tendon sheath, shoulder +C2895836|T047|HT|M65.01|ICD10CM|Abscess of tendon sheath, shoulder|Abscess of tendon sheath, shoulder +C2895837|T047|AB|M65.011|ICD10CM|Abscess of tendon sheath, right shoulder|Abscess of tendon sheath, right shoulder +C2895837|T047|PT|M65.011|ICD10CM|Abscess of tendon sheath, right shoulder|Abscess of tendon sheath, right shoulder +C2895838|T047|AB|M65.012|ICD10CM|Abscess of tendon sheath, left shoulder|Abscess of tendon sheath, left shoulder +C2895838|T047|PT|M65.012|ICD10CM|Abscess of tendon sheath, left shoulder|Abscess of tendon sheath, left shoulder +C2895839|T047|AB|M65.019|ICD10CM|Abscess of tendon sheath, unspecified shoulder|Abscess of tendon sheath, unspecified shoulder +C2895839|T047|PT|M65.019|ICD10CM|Abscess of tendon sheath, unspecified shoulder|Abscess of tendon sheath, unspecified shoulder +C0839089|T047|HT|M65.02|ICD10CM|Abscess of tendon sheath, upper arm|Abscess of tendon sheath, upper arm +C0839089|T047|AB|M65.02|ICD10CM|Abscess of tendon sheath, upper arm|Abscess of tendon sheath, upper arm +C2895840|T047|AB|M65.021|ICD10CM|Abscess of tendon sheath, right upper arm|Abscess of tendon sheath, right upper arm +C2895840|T047|PT|M65.021|ICD10CM|Abscess of tendon sheath, right upper arm|Abscess of tendon sheath, right upper arm +C2895841|T047|AB|M65.022|ICD10CM|Abscess of tendon sheath, left upper arm|Abscess of tendon sheath, left upper arm +C2895841|T047|PT|M65.022|ICD10CM|Abscess of tendon sheath, left upper arm|Abscess of tendon sheath, left upper arm +C2895842|T047|AB|M65.029|ICD10CM|Abscess of tendon sheath, unspecified upper arm|Abscess of tendon sheath, unspecified upper arm +C2895842|T047|PT|M65.029|ICD10CM|Abscess of tendon sheath, unspecified upper arm|Abscess of tendon sheath, unspecified upper arm +C0839090|T047|HT|M65.03|ICD10CM|Abscess of tendon sheath, forearm|Abscess of tendon sheath, forearm +C0839090|T047|AB|M65.03|ICD10CM|Abscess of tendon sheath, forearm|Abscess of tendon sheath, forearm +C2895843|T047|AB|M65.031|ICD10CM|Abscess of tendon sheath, right forearm|Abscess of tendon sheath, right forearm +C2895843|T047|PT|M65.031|ICD10CM|Abscess of tendon sheath, right forearm|Abscess of tendon sheath, right forearm +C2895844|T047|AB|M65.032|ICD10CM|Abscess of tendon sheath, left forearm|Abscess of tendon sheath, left forearm +C2895844|T047|PT|M65.032|ICD10CM|Abscess of tendon sheath, left forearm|Abscess of tendon sheath, left forearm +C2895845|T047|AB|M65.039|ICD10CM|Abscess of tendon sheath, unspecified forearm|Abscess of tendon sheath, unspecified forearm +C2895845|T047|PT|M65.039|ICD10CM|Abscess of tendon sheath, unspecified forearm|Abscess of tendon sheath, unspecified forearm +C0839091|T020|HT|M65.04|ICD10CM|Abscess of tendon sheath, hand|Abscess of tendon sheath, hand +C0839091|T020|AB|M65.04|ICD10CM|Abscess of tendon sheath, hand|Abscess of tendon sheath, hand +C2895846|T047|AB|M65.041|ICD10CM|Abscess of tendon sheath, right hand|Abscess of tendon sheath, right hand +C2895846|T047|PT|M65.041|ICD10CM|Abscess of tendon sheath, right hand|Abscess of tendon sheath, right hand +C2895847|T047|AB|M65.042|ICD10CM|Abscess of tendon sheath, left hand|Abscess of tendon sheath, left hand +C2895847|T047|PT|M65.042|ICD10CM|Abscess of tendon sheath, left hand|Abscess of tendon sheath, left hand +C2895848|T047|AB|M65.049|ICD10CM|Abscess of tendon sheath, unspecified hand|Abscess of tendon sheath, unspecified hand +C2895848|T047|PT|M65.049|ICD10CM|Abscess of tendon sheath, unspecified hand|Abscess of tendon sheath, unspecified hand +C2895849|T020|AB|M65.05|ICD10CM|Abscess of tendon sheath, thigh|Abscess of tendon sheath, thigh +C2895849|T020|HT|M65.05|ICD10CM|Abscess of tendon sheath, thigh|Abscess of tendon sheath, thigh +C2895850|T047|AB|M65.051|ICD10CM|Abscess of tendon sheath, right thigh|Abscess of tendon sheath, right thigh +C2895850|T047|PT|M65.051|ICD10CM|Abscess of tendon sheath, right thigh|Abscess of tendon sheath, right thigh +C2895851|T047|AB|M65.052|ICD10CM|Abscess of tendon sheath, left thigh|Abscess of tendon sheath, left thigh +C2895851|T047|PT|M65.052|ICD10CM|Abscess of tendon sheath, left thigh|Abscess of tendon sheath, left thigh +C2895852|T047|AB|M65.059|ICD10CM|Abscess of tendon sheath, unspecified thigh|Abscess of tendon sheath, unspecified thigh +C2895852|T047|PT|M65.059|ICD10CM|Abscess of tendon sheath, unspecified thigh|Abscess of tendon sheath, unspecified thigh +C0839093|T020|HT|M65.06|ICD10CM|Abscess of tendon sheath, lower leg|Abscess of tendon sheath, lower leg +C0839093|T020|AB|M65.06|ICD10CM|Abscess of tendon sheath, lower leg|Abscess of tendon sheath, lower leg +C2895853|T047|AB|M65.061|ICD10CM|Abscess of tendon sheath, right lower leg|Abscess of tendon sheath, right lower leg +C2895853|T047|PT|M65.061|ICD10CM|Abscess of tendon sheath, right lower leg|Abscess of tendon sheath, right lower leg +C2895854|T047|AB|M65.062|ICD10CM|Abscess of tendon sheath, left lower leg|Abscess of tendon sheath, left lower leg +C2895854|T047|PT|M65.062|ICD10CM|Abscess of tendon sheath, left lower leg|Abscess of tendon sheath, left lower leg +C2895855|T047|AB|M65.069|ICD10CM|Abscess of tendon sheath, unspecified lower leg|Abscess of tendon sheath, unspecified lower leg +C2895855|T047|PT|M65.069|ICD10CM|Abscess of tendon sheath, unspecified lower leg|Abscess of tendon sheath, unspecified lower leg +C0839094|T047|HT|M65.07|ICD10CM|Abscess of tendon sheath, ankle and foot|Abscess of tendon sheath, ankle and foot +C0839094|T047|AB|M65.07|ICD10CM|Abscess of tendon sheath, ankle and foot|Abscess of tendon sheath, ankle and foot +C2895856|T047|AB|M65.071|ICD10CM|Abscess of tendon sheath, right ankle and foot|Abscess of tendon sheath, right ankle and foot +C2895856|T047|PT|M65.071|ICD10CM|Abscess of tendon sheath, right ankle and foot|Abscess of tendon sheath, right ankle and foot +C2895857|T047|AB|M65.072|ICD10CM|Abscess of tendon sheath, left ankle and foot|Abscess of tendon sheath, left ankle and foot +C2895857|T047|PT|M65.072|ICD10CM|Abscess of tendon sheath, left ankle and foot|Abscess of tendon sheath, left ankle and foot +C2895858|T047|AB|M65.079|ICD10CM|Abscess of tendon sheath, unspecified ankle and foot|Abscess of tendon sheath, unspecified ankle and foot +C2895858|T047|PT|M65.079|ICD10CM|Abscess of tendon sheath, unspecified ankle and foot|Abscess of tendon sheath, unspecified ankle and foot +C0839095|T047|PT|M65.08|ICD10CM|Abscess of tendon sheath, other site|Abscess of tendon sheath, other site +C0839095|T047|AB|M65.08|ICD10CM|Abscess of tendon sheath, other site|Abscess of tendon sheath, other site +C0477646|T047|HT|M65.1|ICD10CM|Other infective (teno)synovitis|Other infective (teno)synovitis +C0477646|T047|AB|M65.1|ICD10CM|Other infective (teno)synovitis|Other infective (teno)synovitis +C0477646|T047|PT|M65.1|ICD10|Other infective (teno)synovitis|Other infective (teno)synovitis +C0477646|T047|AB|M65.10|ICD10CM|Other infective (teno)synovitis, unspecified site|Other infective (teno)synovitis, unspecified site +C0477646|T047|PT|M65.10|ICD10CM|Other infective (teno)synovitis, unspecified site|Other infective (teno)synovitis, unspecified site +C2895859|T047|AB|M65.11|ICD10CM|Other infective (teno)synovitis, shoulder|Other infective (teno)synovitis, shoulder +C2895859|T047|HT|M65.11|ICD10CM|Other infective (teno)synovitis, shoulder|Other infective (teno)synovitis, shoulder +C2895860|T047|AB|M65.111|ICD10CM|Other infective (teno)synovitis, right shoulder|Other infective (teno)synovitis, right shoulder +C2895860|T047|PT|M65.111|ICD10CM|Other infective (teno)synovitis, right shoulder|Other infective (teno)synovitis, right shoulder +C2895861|T047|AB|M65.112|ICD10CM|Other infective (teno)synovitis, left shoulder|Other infective (teno)synovitis, left shoulder +C2895861|T047|PT|M65.112|ICD10CM|Other infective (teno)synovitis, left shoulder|Other infective (teno)synovitis, left shoulder +C2895862|T047|AB|M65.119|ICD10CM|Other infective (teno)synovitis, unspecified shoulder|Other infective (teno)synovitis, unspecified shoulder +C2895862|T047|PT|M65.119|ICD10CM|Other infective (teno)synovitis, unspecified shoulder|Other infective (teno)synovitis, unspecified shoulder +C2895863|T047|AB|M65.12|ICD10CM|Other infective (teno)synovitis, elbow|Other infective (teno)synovitis, elbow +C2895863|T047|HT|M65.12|ICD10CM|Other infective (teno)synovitis, elbow|Other infective (teno)synovitis, elbow +C2895864|T047|AB|M65.121|ICD10CM|Other infective (teno)synovitis, right elbow|Other infective (teno)synovitis, right elbow +C2895864|T047|PT|M65.121|ICD10CM|Other infective (teno)synovitis, right elbow|Other infective (teno)synovitis, right elbow +C2895865|T047|AB|M65.122|ICD10CM|Other infective (teno)synovitis, left elbow|Other infective (teno)synovitis, left elbow +C2895865|T047|PT|M65.122|ICD10CM|Other infective (teno)synovitis, left elbow|Other infective (teno)synovitis, left elbow +C2895866|T047|AB|M65.129|ICD10CM|Other infective (teno)synovitis, unspecified elbow|Other infective (teno)synovitis, unspecified elbow +C2895866|T047|PT|M65.129|ICD10CM|Other infective (teno)synovitis, unspecified elbow|Other infective (teno)synovitis, unspecified elbow +C2895869|T047|AB|M65.13|ICD10CM|Other infective (teno)synovitis, wrist|Other infective (teno)synovitis, wrist +C2895869|T047|HT|M65.13|ICD10CM|Other infective (teno)synovitis, wrist|Other infective (teno)synovitis, wrist +C2895867|T047|AB|M65.131|ICD10CM|Other infective (teno)synovitis, right wrist|Other infective (teno)synovitis, right wrist +C2895867|T047|PT|M65.131|ICD10CM|Other infective (teno)synovitis, right wrist|Other infective (teno)synovitis, right wrist +C2895868|T047|AB|M65.132|ICD10CM|Other infective (teno)synovitis, left wrist|Other infective (teno)synovitis, left wrist +C2895868|T047|PT|M65.132|ICD10CM|Other infective (teno)synovitis, left wrist|Other infective (teno)synovitis, left wrist +C2895869|T047|AB|M65.139|ICD10CM|Other infective (teno)synovitis, unspecified wrist|Other infective (teno)synovitis, unspecified wrist +C2895869|T047|PT|M65.139|ICD10CM|Other infective (teno)synovitis, unspecified wrist|Other infective (teno)synovitis, unspecified wrist +C0839101|T047|HT|M65.14|ICD10CM|Other infective (teno)synovitis, hand|Other infective (teno)synovitis, hand +C0839101|T047|AB|M65.14|ICD10CM|Other infective (teno)synovitis, hand|Other infective (teno)synovitis, hand +C2895870|T047|AB|M65.141|ICD10CM|Other infective (teno)synovitis, right hand|Other infective (teno)synovitis, right hand +C2895870|T047|PT|M65.141|ICD10CM|Other infective (teno)synovitis, right hand|Other infective (teno)synovitis, right hand +C2895871|T047|AB|M65.142|ICD10CM|Other infective (teno)synovitis, left hand|Other infective (teno)synovitis, left hand +C2895871|T047|PT|M65.142|ICD10CM|Other infective (teno)synovitis, left hand|Other infective (teno)synovitis, left hand +C0839101|T047|AB|M65.149|ICD10CM|Other infective (teno)synovitis, unspecified hand|Other infective (teno)synovitis, unspecified hand +C0839101|T047|PT|M65.149|ICD10CM|Other infective (teno)synovitis, unspecified hand|Other infective (teno)synovitis, unspecified hand +C2895872|T047|AB|M65.15|ICD10CM|Other infective (teno)synovitis, hip|Other infective (teno)synovitis, hip +C2895872|T047|HT|M65.15|ICD10CM|Other infective (teno)synovitis, hip|Other infective (teno)synovitis, hip +C2895873|T047|AB|M65.151|ICD10CM|Other infective (teno)synovitis, right hip|Other infective (teno)synovitis, right hip +C2895873|T047|PT|M65.151|ICD10CM|Other infective (teno)synovitis, right hip|Other infective (teno)synovitis, right hip +C2895874|T047|AB|M65.152|ICD10CM|Other infective (teno)synovitis, left hip|Other infective (teno)synovitis, left hip +C2895874|T047|PT|M65.152|ICD10CM|Other infective (teno)synovitis, left hip|Other infective (teno)synovitis, left hip +C2895875|T047|AB|M65.159|ICD10CM|Other infective (teno)synovitis, unspecified hip|Other infective (teno)synovitis, unspecified hip +C2895875|T047|PT|M65.159|ICD10CM|Other infective (teno)synovitis, unspecified hip|Other infective (teno)synovitis, unspecified hip +C2895876|T047|AB|M65.16|ICD10CM|Other infective (teno)synovitis, knee|Other infective (teno)synovitis, knee +C2895876|T047|HT|M65.16|ICD10CM|Other infective (teno)synovitis, knee|Other infective (teno)synovitis, knee +C2895877|T047|AB|M65.161|ICD10CM|Other infective (teno)synovitis, right knee|Other infective (teno)synovitis, right knee +C2895877|T047|PT|M65.161|ICD10CM|Other infective (teno)synovitis, right knee|Other infective (teno)synovitis, right knee +C2895878|T047|AB|M65.162|ICD10CM|Other infective (teno)synovitis, left knee|Other infective (teno)synovitis, left knee +C2895878|T047|PT|M65.162|ICD10CM|Other infective (teno)synovitis, left knee|Other infective (teno)synovitis, left knee +C2895879|T047|AB|M65.169|ICD10CM|Other infective (teno)synovitis, unspecified knee|Other infective (teno)synovitis, unspecified knee +C2895879|T047|PT|M65.169|ICD10CM|Other infective (teno)synovitis, unspecified knee|Other infective (teno)synovitis, unspecified knee +C0839104|T047|HT|M65.17|ICD10CM|Other infective (teno)synovitis, ankle and foot|Other infective (teno)synovitis, ankle and foot +C0839104|T047|AB|M65.17|ICD10CM|Other infective (teno)synovitis, ankle and foot|Other infective (teno)synovitis, ankle and foot +C2895880|T047|AB|M65.171|ICD10CM|Other infective (teno)synovitis, right ankle and foot|Other infective (teno)synovitis, right ankle and foot +C2895880|T047|PT|M65.171|ICD10CM|Other infective (teno)synovitis, right ankle and foot|Other infective (teno)synovitis, right ankle and foot +C2895881|T047|AB|M65.172|ICD10CM|Other infective (teno)synovitis, left ankle and foot|Other infective (teno)synovitis, left ankle and foot +C2895881|T047|PT|M65.172|ICD10CM|Other infective (teno)synovitis, left ankle and foot|Other infective (teno)synovitis, left ankle and foot +C2895882|T047|AB|M65.179|ICD10CM|Other infective (teno)synovitis, unspecified ankle and foot|Other infective (teno)synovitis, unspecified ankle and foot +C2895882|T047|PT|M65.179|ICD10CM|Other infective (teno)synovitis, unspecified ankle and foot|Other infective (teno)synovitis, unspecified ankle and foot +C0839105|T047|PT|M65.18|ICD10CM|Other infective (teno)synovitis, other site|Other infective (teno)synovitis, other site +C0839105|T047|AB|M65.18|ICD10CM|Other infective (teno)synovitis, other site|Other infective (teno)synovitis, other site +C0839097|T047|PT|M65.19|ICD10CM|Other infective (teno)synovitis, multiple sites|Other infective (teno)synovitis, multiple sites +C0839097|T047|AB|M65.19|ICD10CM|Other infective (teno)synovitis, multiple sites|Other infective (teno)synovitis, multiple sites +C0521515|T047|HT|M65.2|ICD10CM|Calcific tendinitis|Calcific tendinitis +C0521515|T047|AB|M65.2|ICD10CM|Calcific tendinitis|Calcific tendinitis +C0521515|T047|PT|M65.2|ICD10|Calcific tendinitis|Calcific tendinitis +C0839116|T047|AB|M65.20|ICD10CM|Calcific tendinitis, unspecified site|Calcific tendinitis, unspecified site +C0839116|T047|PT|M65.20|ICD10CM|Calcific tendinitis, unspecified site|Calcific tendinitis, unspecified site +C0839109|T047|HT|M65.22|ICD10CM|Calcific tendinitis, upper arm|Calcific tendinitis, upper arm +C0839109|T047|AB|M65.22|ICD10CM|Calcific tendinitis, upper arm|Calcific tendinitis, upper arm +C2895883|T047|AB|M65.221|ICD10CM|Calcific tendinitis, right upper arm|Calcific tendinitis, right upper arm +C2895883|T047|PT|M65.221|ICD10CM|Calcific tendinitis, right upper arm|Calcific tendinitis, right upper arm +C2895884|T047|AB|M65.222|ICD10CM|Calcific tendinitis, left upper arm|Calcific tendinitis, left upper arm +C2895884|T047|PT|M65.222|ICD10CM|Calcific tendinitis, left upper arm|Calcific tendinitis, left upper arm +C2895885|T047|AB|M65.229|ICD10CM|Calcific tendinitis, unspecified upper arm|Calcific tendinitis, unspecified upper arm +C2895885|T047|PT|M65.229|ICD10CM|Calcific tendinitis, unspecified upper arm|Calcific tendinitis, unspecified upper arm +C0839110|T047|HT|M65.23|ICD10CM|Calcific tendinitis, forearm|Calcific tendinitis, forearm +C0839110|T047|AB|M65.23|ICD10CM|Calcific tendinitis, forearm|Calcific tendinitis, forearm +C2895886|T047|AB|M65.231|ICD10CM|Calcific tendinitis, right forearm|Calcific tendinitis, right forearm +C2895886|T047|PT|M65.231|ICD10CM|Calcific tendinitis, right forearm|Calcific tendinitis, right forearm +C2895887|T047|AB|M65.232|ICD10CM|Calcific tendinitis, left forearm|Calcific tendinitis, left forearm +C2895887|T047|PT|M65.232|ICD10CM|Calcific tendinitis, left forearm|Calcific tendinitis, left forearm +C2895888|T047|AB|M65.239|ICD10CM|Calcific tendinitis, unspecified forearm|Calcific tendinitis, unspecified forearm +C2895888|T047|PT|M65.239|ICD10CM|Calcific tendinitis, unspecified forearm|Calcific tendinitis, unspecified forearm +C0839111|T047|HT|M65.24|ICD10CM|Calcific tendinitis, hand|Calcific tendinitis, hand +C0839111|T047|AB|M65.24|ICD10CM|Calcific tendinitis, hand|Calcific tendinitis, hand +C2895889|T047|AB|M65.241|ICD10CM|Calcific tendinitis, right hand|Calcific tendinitis, right hand +C2895889|T047|PT|M65.241|ICD10CM|Calcific tendinitis, right hand|Calcific tendinitis, right hand +C2895890|T047|AB|M65.242|ICD10CM|Calcific tendinitis, left hand|Calcific tendinitis, left hand +C2895890|T047|PT|M65.242|ICD10CM|Calcific tendinitis, left hand|Calcific tendinitis, left hand +C0839111|T047|AB|M65.249|ICD10CM|Calcific tendinitis, unspecified hand|Calcific tendinitis, unspecified hand +C0839111|T047|PT|M65.249|ICD10CM|Calcific tendinitis, unspecified hand|Calcific tendinitis, unspecified hand +C2895891|T047|AB|M65.25|ICD10CM|Calcific tendinitis, thigh|Calcific tendinitis, thigh +C2895891|T047|HT|M65.25|ICD10CM|Calcific tendinitis, thigh|Calcific tendinitis, thigh +C2895892|T047|AB|M65.251|ICD10CM|Calcific tendinitis, right thigh|Calcific tendinitis, right thigh +C2895892|T047|PT|M65.251|ICD10CM|Calcific tendinitis, right thigh|Calcific tendinitis, right thigh +C2895893|T047|AB|M65.252|ICD10CM|Calcific tendinitis, left thigh|Calcific tendinitis, left thigh +C2895893|T047|PT|M65.252|ICD10CM|Calcific tendinitis, left thigh|Calcific tendinitis, left thigh +C2895894|T047|AB|M65.259|ICD10CM|Calcific tendinitis, unspecified thigh|Calcific tendinitis, unspecified thigh +C2895894|T047|PT|M65.259|ICD10CM|Calcific tendinitis, unspecified thigh|Calcific tendinitis, unspecified thigh +C0839113|T047|HT|M65.26|ICD10CM|Calcific tendinitis, lower leg|Calcific tendinitis, lower leg +C0839113|T047|AB|M65.26|ICD10CM|Calcific tendinitis, lower leg|Calcific tendinitis, lower leg +C2895895|T047|AB|M65.261|ICD10CM|Calcific tendinitis, right lower leg|Calcific tendinitis, right lower leg +C2895895|T047|PT|M65.261|ICD10CM|Calcific tendinitis, right lower leg|Calcific tendinitis, right lower leg +C2895896|T047|AB|M65.262|ICD10CM|Calcific tendinitis, left lower leg|Calcific tendinitis, left lower leg +C2895896|T047|PT|M65.262|ICD10CM|Calcific tendinitis, left lower leg|Calcific tendinitis, left lower leg +C2895897|T047|AB|M65.269|ICD10CM|Calcific tendinitis, unspecified lower leg|Calcific tendinitis, unspecified lower leg +C2895897|T047|PT|M65.269|ICD10CM|Calcific tendinitis, unspecified lower leg|Calcific tendinitis, unspecified lower leg +C0839114|T047|HT|M65.27|ICD10CM|Calcific tendinitis, ankle and foot|Calcific tendinitis, ankle and foot +C0839114|T047|AB|M65.27|ICD10CM|Calcific tendinitis, ankle and foot|Calcific tendinitis, ankle and foot +C2895898|T047|AB|M65.271|ICD10CM|Calcific tendinitis, right ankle and foot|Calcific tendinitis, right ankle and foot +C2895898|T047|PT|M65.271|ICD10CM|Calcific tendinitis, right ankle and foot|Calcific tendinitis, right ankle and foot +C2895899|T047|AB|M65.272|ICD10CM|Calcific tendinitis, left ankle and foot|Calcific tendinitis, left ankle and foot +C2895899|T047|PT|M65.272|ICD10CM|Calcific tendinitis, left ankle and foot|Calcific tendinitis, left ankle and foot +C2895900|T047|AB|M65.279|ICD10CM|Calcific tendinitis, unspecified ankle and foot|Calcific tendinitis, unspecified ankle and foot +C2895900|T047|PT|M65.279|ICD10CM|Calcific tendinitis, unspecified ankle and foot|Calcific tendinitis, unspecified ankle and foot +C0839115|T047|PT|M65.28|ICD10CM|Calcific tendinitis, other site|Calcific tendinitis, other site +C0839115|T047|AB|M65.28|ICD10CM|Calcific tendinitis, other site|Calcific tendinitis, other site +C0839107|T047|PT|M65.29|ICD10CM|Calcific tendinitis, multiple sites|Calcific tendinitis, multiple sites +C0839107|T047|AB|M65.29|ICD10CM|Calcific tendinitis, multiple sites|Calcific tendinitis, multiple sites +C2895901|T047|ET|M65.3|ICD10CM|Nodular tendinous disease|Nodular tendinous disease +C0158328|T047|HT|M65.3|ICD10CM|Trigger finger|Trigger finger +C0158328|T047|AB|M65.3|ICD10CM|Trigger finger|Trigger finger +C0158328|T047|PT|M65.3|ICD10|Trigger finger|Trigger finger +C2895902|T020|AB|M65.30|ICD10CM|Trigger finger, unspecified finger|Trigger finger, unspecified finger +C2895902|T020|PT|M65.30|ICD10CM|Trigger finger, unspecified finger|Trigger finger, unspecified finger +C0410060|T020|HT|M65.31|ICD10CM|Trigger thumb|Trigger thumb +C0410060|T020|AB|M65.31|ICD10CM|Trigger thumb|Trigger thumb +C2895903|T020|AB|M65.311|ICD10CM|Trigger thumb, right thumb|Trigger thumb, right thumb +C2895903|T020|PT|M65.311|ICD10CM|Trigger thumb, right thumb|Trigger thumb, right thumb +C2895904|T020|AB|M65.312|ICD10CM|Trigger thumb, left thumb|Trigger thumb, left thumb +C2895904|T020|PT|M65.312|ICD10CM|Trigger thumb, left thumb|Trigger thumb, left thumb +C2895905|T020|AB|M65.319|ICD10CM|Trigger thumb, unspecified thumb|Trigger thumb, unspecified thumb +C2895905|T020|PT|M65.319|ICD10CM|Trigger thumb, unspecified thumb|Trigger thumb, unspecified thumb +C2146266|T020|AB|M65.32|ICD10CM|Trigger finger, index finger|Trigger finger, index finger +C2146266|T020|HT|M65.32|ICD10CM|Trigger finger, index finger|Trigger finger, index finger +C2895906|T020|AB|M65.321|ICD10CM|Trigger finger, right index finger|Trigger finger, right index finger +C2895906|T020|PT|M65.321|ICD10CM|Trigger finger, right index finger|Trigger finger, right index finger +C2895907|T020|AB|M65.322|ICD10CM|Trigger finger, left index finger|Trigger finger, left index finger +C2895907|T020|PT|M65.322|ICD10CM|Trigger finger, left index finger|Trigger finger, left index finger +C2895908|T020|AB|M65.329|ICD10CM|Trigger finger, unspecified index finger|Trigger finger, unspecified index finger +C2895908|T020|PT|M65.329|ICD10CM|Trigger finger, unspecified index finger|Trigger finger, unspecified index finger +C2146273|T020|AB|M65.33|ICD10CM|Trigger finger, middle finger|Trigger finger, middle finger +C2146273|T020|HT|M65.33|ICD10CM|Trigger finger, middle finger|Trigger finger, middle finger +C2895909|T020|AB|M65.331|ICD10CM|Trigger finger, right middle finger|Trigger finger, right middle finger +C2895909|T020|PT|M65.331|ICD10CM|Trigger finger, right middle finger|Trigger finger, right middle finger +C2895910|T020|AB|M65.332|ICD10CM|Trigger finger, left middle finger|Trigger finger, left middle finger +C2895910|T020|PT|M65.332|ICD10CM|Trigger finger, left middle finger|Trigger finger, left middle finger +C2895911|T020|AB|M65.339|ICD10CM|Trigger finger, unspecified middle finger|Trigger finger, unspecified middle finger +C2895911|T020|PT|M65.339|ICD10CM|Trigger finger, unspecified middle finger|Trigger finger, unspecified middle finger +C2146279|T020|AB|M65.34|ICD10CM|Trigger finger, ring finger|Trigger finger, ring finger +C2146279|T020|HT|M65.34|ICD10CM|Trigger finger, ring finger|Trigger finger, ring finger +C2895912|T020|AB|M65.341|ICD10CM|Trigger finger, right ring finger|Trigger finger, right ring finger +C2895912|T020|PT|M65.341|ICD10CM|Trigger finger, right ring finger|Trigger finger, right ring finger +C2895913|T020|AB|M65.342|ICD10CM|Trigger finger, left ring finger|Trigger finger, left ring finger +C2895913|T020|PT|M65.342|ICD10CM|Trigger finger, left ring finger|Trigger finger, left ring finger +C2895914|T020|AB|M65.349|ICD10CM|Trigger finger, unspecified ring finger|Trigger finger, unspecified ring finger +C2895914|T020|PT|M65.349|ICD10CM|Trigger finger, unspecified ring finger|Trigger finger, unspecified ring finger +C2146272|T020|AB|M65.35|ICD10CM|Trigger finger, little finger|Trigger finger, little finger +C2146272|T020|HT|M65.35|ICD10CM|Trigger finger, little finger|Trigger finger, little finger +C2895915|T020|AB|M65.351|ICD10CM|Trigger finger, right little finger|Trigger finger, right little finger +C2895915|T020|PT|M65.351|ICD10CM|Trigger finger, right little finger|Trigger finger, right little finger +C2895916|T020|AB|M65.352|ICD10CM|Trigger finger, left little finger|Trigger finger, left little finger +C2895916|T020|PT|M65.352|ICD10CM|Trigger finger, left little finger|Trigger finger, left little finger +C2895917|T020|AB|M65.359|ICD10CM|Trigger finger, unspecified little finger|Trigger finger, unspecified little finger +C2895917|T020|PT|M65.359|ICD10CM|Trigger finger, unspecified little finger|Trigger finger, unspecified little finger +C0149870|T047|PT|M65.4|ICD10|Radial styloid tenosynovitis [de Quervain]|Radial styloid tenosynovitis [de Quervain] +C0149870|T047|PT|M65.4|ICD10CM|Radial styloid tenosynovitis [de Quervain]|Radial styloid tenosynovitis [de Quervain] +C0149870|T047|AB|M65.4|ICD10CM|Radial styloid tenosynovitis [de Quervain]|Radial styloid tenosynovitis [de Quervain] +C0029856|T047|HT|M65.8|ICD10CM|Other synovitis and tenosynovitis|Other synovitis and tenosynovitis +C0029856|T047|AB|M65.8|ICD10CM|Other synovitis and tenosynovitis|Other synovitis and tenosynovitis +C0029856|T047|PT|M65.8|ICD10|Other synovitis and tenosynovitis|Other synovitis and tenosynovitis +C0839135|T047|AB|M65.80|ICD10CM|Other synovitis and tenosynovitis, unspecified site|Other synovitis and tenosynovitis, unspecified site +C0839135|T047|PT|M65.80|ICD10CM|Other synovitis and tenosynovitis, unspecified site|Other synovitis and tenosynovitis, unspecified site +C2895918|T047|AB|M65.81|ICD10CM|Other synovitis and tenosynovitis, shoulder|Other synovitis and tenosynovitis, shoulder +C2895918|T047|HT|M65.81|ICD10CM|Other synovitis and tenosynovitis, shoulder|Other synovitis and tenosynovitis, shoulder +C2895919|T047|AB|M65.811|ICD10CM|Other synovitis and tenosynovitis, right shoulder|Other synovitis and tenosynovitis, right shoulder +C2895919|T047|PT|M65.811|ICD10CM|Other synovitis and tenosynovitis, right shoulder|Other synovitis and tenosynovitis, right shoulder +C2895920|T047|AB|M65.812|ICD10CM|Other synovitis and tenosynovitis, left shoulder|Other synovitis and tenosynovitis, left shoulder +C2895920|T047|PT|M65.812|ICD10CM|Other synovitis and tenosynovitis, left shoulder|Other synovitis and tenosynovitis, left shoulder +C2895918|T047|AB|M65.819|ICD10CM|Other synovitis and tenosynovitis, unspecified shoulder|Other synovitis and tenosynovitis, unspecified shoulder +C2895918|T047|PT|M65.819|ICD10CM|Other synovitis and tenosynovitis, unspecified shoulder|Other synovitis and tenosynovitis, unspecified shoulder +C0839119|T047|HT|M65.82|ICD10CM|Other synovitis and tenosynovitis, upper arm|Other synovitis and tenosynovitis, upper arm +C0839119|T047|AB|M65.82|ICD10CM|Other synovitis and tenosynovitis, upper arm|Other synovitis and tenosynovitis, upper arm +C2895921|T047|AB|M65.821|ICD10CM|Other synovitis and tenosynovitis, right upper arm|Other synovitis and tenosynovitis, right upper arm +C2895921|T047|PT|M65.821|ICD10CM|Other synovitis and tenosynovitis, right upper arm|Other synovitis and tenosynovitis, right upper arm +C2895922|T047|AB|M65.822|ICD10CM|Other synovitis and tenosynovitis, left upper arm|Other synovitis and tenosynovitis, left upper arm +C2895922|T047|PT|M65.822|ICD10CM|Other synovitis and tenosynovitis, left upper arm|Other synovitis and tenosynovitis, left upper arm +C2895923|T047|AB|M65.829|ICD10CM|Other synovitis and tenosynovitis, unspecified upper arm|Other synovitis and tenosynovitis, unspecified upper arm +C2895923|T047|PT|M65.829|ICD10CM|Other synovitis and tenosynovitis, unspecified upper arm|Other synovitis and tenosynovitis, unspecified upper arm +C0839120|T047|HT|M65.83|ICD10CM|Other synovitis and tenosynovitis, forearm|Other synovitis and tenosynovitis, forearm +C0839120|T047|AB|M65.83|ICD10CM|Other synovitis and tenosynovitis, forearm|Other synovitis and tenosynovitis, forearm +C2895924|T047|AB|M65.831|ICD10CM|Other synovitis and tenosynovitis, right forearm|Other synovitis and tenosynovitis, right forearm +C2895924|T047|PT|M65.831|ICD10CM|Other synovitis and tenosynovitis, right forearm|Other synovitis and tenosynovitis, right forearm +C2895925|T047|AB|M65.832|ICD10CM|Other synovitis and tenosynovitis, left forearm|Other synovitis and tenosynovitis, left forearm +C2895925|T047|PT|M65.832|ICD10CM|Other synovitis and tenosynovitis, left forearm|Other synovitis and tenosynovitis, left forearm +C2895926|T047|AB|M65.839|ICD10CM|Other synovitis and tenosynovitis, unspecified forearm|Other synovitis and tenosynovitis, unspecified forearm +C2895926|T047|PT|M65.839|ICD10CM|Other synovitis and tenosynovitis, unspecified forearm|Other synovitis and tenosynovitis, unspecified forearm +C0839121|T047|HT|M65.84|ICD10CM|Other synovitis and tenosynovitis, hand|Other synovitis and tenosynovitis, hand +C0839121|T047|AB|M65.84|ICD10CM|Other synovitis and tenosynovitis, hand|Other synovitis and tenosynovitis, hand +C2895927|T047|AB|M65.841|ICD10CM|Other synovitis and tenosynovitis, right hand|Other synovitis and tenosynovitis, right hand +C2895927|T047|PT|M65.841|ICD10CM|Other synovitis and tenosynovitis, right hand|Other synovitis and tenosynovitis, right hand +C2895928|T047|AB|M65.842|ICD10CM|Other synovitis and tenosynovitis, left hand|Other synovitis and tenosynovitis, left hand +C2895928|T047|PT|M65.842|ICD10CM|Other synovitis and tenosynovitis, left hand|Other synovitis and tenosynovitis, left hand +C2895929|T047|AB|M65.849|ICD10CM|Other synovitis and tenosynovitis, unspecified hand|Other synovitis and tenosynovitis, unspecified hand +C2895929|T047|PT|M65.849|ICD10CM|Other synovitis and tenosynovitis, unspecified hand|Other synovitis and tenosynovitis, unspecified hand +C2895930|T047|AB|M65.85|ICD10CM|Other synovitis and tenosynovitis, thigh|Other synovitis and tenosynovitis, thigh +C2895930|T047|HT|M65.85|ICD10CM|Other synovitis and tenosynovitis, thigh|Other synovitis and tenosynovitis, thigh +C2895931|T047|AB|M65.851|ICD10CM|Other synovitis and tenosynovitis, right thigh|Other synovitis and tenosynovitis, right thigh +C2895931|T047|PT|M65.851|ICD10CM|Other synovitis and tenosynovitis, right thigh|Other synovitis and tenosynovitis, right thigh +C2895932|T047|AB|M65.852|ICD10CM|Other synovitis and tenosynovitis, left thigh|Other synovitis and tenosynovitis, left thigh +C2895932|T047|PT|M65.852|ICD10CM|Other synovitis and tenosynovitis, left thigh|Other synovitis and tenosynovitis, left thigh +C2895930|T047|AB|M65.859|ICD10CM|Other synovitis and tenosynovitis, unspecified thigh|Other synovitis and tenosynovitis, unspecified thigh +C2895930|T047|PT|M65.859|ICD10CM|Other synovitis and tenosynovitis, unspecified thigh|Other synovitis and tenosynovitis, unspecified thigh +C0839123|T047|HT|M65.86|ICD10CM|Other synovitis and tenosynovitis, lower leg|Other synovitis and tenosynovitis, lower leg +C0839123|T047|AB|M65.86|ICD10CM|Other synovitis and tenosynovitis, lower leg|Other synovitis and tenosynovitis, lower leg +C2895933|T047|AB|M65.861|ICD10CM|Other synovitis and tenosynovitis, right lower leg|Other synovitis and tenosynovitis, right lower leg +C2895933|T047|PT|M65.861|ICD10CM|Other synovitis and tenosynovitis, right lower leg|Other synovitis and tenosynovitis, right lower leg +C2895934|T047|AB|M65.862|ICD10CM|Other synovitis and tenosynovitis, left lower leg|Other synovitis and tenosynovitis, left lower leg +C2895934|T047|PT|M65.862|ICD10CM|Other synovitis and tenosynovitis, left lower leg|Other synovitis and tenosynovitis, left lower leg +C2895935|T047|AB|M65.869|ICD10CM|Other synovitis and tenosynovitis, unspecified lower leg|Other synovitis and tenosynovitis, unspecified lower leg +C2895935|T047|PT|M65.869|ICD10CM|Other synovitis and tenosynovitis, unspecified lower leg|Other synovitis and tenosynovitis, unspecified lower leg +C0839124|T047|HT|M65.87|ICD10CM|Other synovitis and tenosynovitis, ankle and foot|Other synovitis and tenosynovitis, ankle and foot +C0839124|T047|AB|M65.87|ICD10CM|Other synovitis and tenosynovitis, ankle and foot|Other synovitis and tenosynovitis, ankle and foot +C2895936|T047|AB|M65.871|ICD10CM|Other synovitis and tenosynovitis, right ankle and foot|Other synovitis and tenosynovitis, right ankle and foot +C2895936|T047|PT|M65.871|ICD10CM|Other synovitis and tenosynovitis, right ankle and foot|Other synovitis and tenosynovitis, right ankle and foot +C2895937|T047|AB|M65.872|ICD10CM|Other synovitis and tenosynovitis, left ankle and foot|Other synovitis and tenosynovitis, left ankle and foot +C2895937|T047|PT|M65.872|ICD10CM|Other synovitis and tenosynovitis, left ankle and foot|Other synovitis and tenosynovitis, left ankle and foot +C2895938|T047|AB|M65.879|ICD10CM|Other synovitis and tenosynovitis, unsp ankle and foot|Other synovitis and tenosynovitis, unsp ankle and foot +C2895938|T047|PT|M65.879|ICD10CM|Other synovitis and tenosynovitis, unspecified ankle and foot|Other synovitis and tenosynovitis, unspecified ankle and foot +C0839125|T047|PT|M65.88|ICD10CM|Other synovitis and tenosynovitis, other site|Other synovitis and tenosynovitis, other site +C0839125|T047|AB|M65.88|ICD10CM|Other synovitis and tenosynovitis, other site|Other synovitis and tenosynovitis, other site +C0839117|T047|PT|M65.89|ICD10CM|Other synovitis and tenosynovitis, multiple sites|Other synovitis and tenosynovitis, multiple sites +C0839117|T047|AB|M65.89|ICD10CM|Other synovitis and tenosynovitis, multiple sites|Other synovitis and tenosynovitis, multiple sites +C0039104|T047|PT|M65.9|ICD10CM|Synovitis and tenosynovitis, unspecified|Synovitis and tenosynovitis, unspecified +C0039104|T047|AB|M65.9|ICD10CM|Synovitis and tenosynovitis, unspecified|Synovitis and tenosynovitis, unspecified +C0039104|T047|PT|M65.9|ICD10|Synovitis and tenosynovitis, unspecified|Synovitis and tenosynovitis, unspecified +C0494975|T046|AB|M66|ICD10CM|Spontaneous rupture of synovium and tendon|Spontaneous rupture of synovium and tendon +C0494975|T046|HT|M66|ICD10CM|Spontaneous rupture of synovium and tendon|Spontaneous rupture of synovium and tendon +C0494975|T046|HT|M66|ICD10|Spontaneous rupture of synovium and tendon|Spontaneous rupture of synovium and tendon +C0410551|T037|PT|M66.0|ICD10|Rupture of popliteal cyst|Rupture of popliteal cyst +C0410551|T037|PT|M66.0|ICD10CM|Rupture of popliteal cyst|Rupture of popliteal cyst +C0410551|T037|AB|M66.0|ICD10CM|Rupture of popliteal cyst|Rupture of popliteal cyst +C1394433|T047|ET|M66.1|ICD10CM|Rupture of synovial cyst|Rupture of synovial cyst +C0158337|T046|PT|M66.1|ICD10|Rupture of synovium|Rupture of synovium +C0158337|T046|HT|M66.1|ICD10CM|Rupture of synovium|Rupture of synovium +C0158337|T046|AB|M66.1|ICD10CM|Rupture of synovium|Rupture of synovium +C0158337|T046|AB|M66.10|ICD10CM|Rupture of synovium, unspecified joint|Rupture of synovium, unspecified joint +C0158337|T046|PT|M66.10|ICD10CM|Rupture of synovium, unspecified joint|Rupture of synovium, unspecified joint +C0564810|T046|AB|M66.11|ICD10CM|Rupture of synovium, shoulder|Rupture of synovium, shoulder +C0564810|T046|HT|M66.11|ICD10CM|Rupture of synovium, shoulder|Rupture of synovium, shoulder +C2895940|T046|AB|M66.111|ICD10CM|Rupture of synovium, right shoulder|Rupture of synovium, right shoulder +C2895940|T046|PT|M66.111|ICD10CM|Rupture of synovium, right shoulder|Rupture of synovium, right shoulder +C2895941|T046|AB|M66.112|ICD10CM|Rupture of synovium, left shoulder|Rupture of synovium, left shoulder +C2895941|T046|PT|M66.112|ICD10CM|Rupture of synovium, left shoulder|Rupture of synovium, left shoulder +C2895942|T046|AB|M66.119|ICD10CM|Rupture of synovium, unspecified shoulder|Rupture of synovium, unspecified shoulder +C2895942|T046|PT|M66.119|ICD10CM|Rupture of synovium, unspecified shoulder|Rupture of synovium, unspecified shoulder +C0564811|T046|AB|M66.12|ICD10CM|Rupture of synovium, elbow|Rupture of synovium, elbow +C0564811|T046|HT|M66.12|ICD10CM|Rupture of synovium, elbow|Rupture of synovium, elbow +C2895943|T046|AB|M66.121|ICD10CM|Rupture of synovium, right elbow|Rupture of synovium, right elbow +C2895943|T046|PT|M66.121|ICD10CM|Rupture of synovium, right elbow|Rupture of synovium, right elbow +C2895944|T046|AB|M66.122|ICD10CM|Rupture of synovium, left elbow|Rupture of synovium, left elbow +C2895944|T046|PT|M66.122|ICD10CM|Rupture of synovium, left elbow|Rupture of synovium, left elbow +C2895945|T046|AB|M66.129|ICD10CM|Rupture of synovium, unspecified elbow|Rupture of synovium, unspecified elbow +C2895945|T046|PT|M66.129|ICD10CM|Rupture of synovium, unspecified elbow|Rupture of synovium, unspecified elbow +C0564812|T046|AB|M66.13|ICD10CM|Rupture of synovium, wrist|Rupture of synovium, wrist +C0564812|T046|HT|M66.13|ICD10CM|Rupture of synovium, wrist|Rupture of synovium, wrist +C2895946|T046|AB|M66.131|ICD10CM|Rupture of synovium, right wrist|Rupture of synovium, right wrist +C2895946|T046|PT|M66.131|ICD10CM|Rupture of synovium, right wrist|Rupture of synovium, right wrist +C2895947|T046|AB|M66.132|ICD10CM|Rupture of synovium, left wrist|Rupture of synovium, left wrist +C2895947|T046|PT|M66.132|ICD10CM|Rupture of synovium, left wrist|Rupture of synovium, left wrist +C2895948|T046|AB|M66.139|ICD10CM|Rupture of synovium, unspecified wrist|Rupture of synovium, unspecified wrist +C2895948|T046|PT|M66.139|ICD10CM|Rupture of synovium, unspecified wrist|Rupture of synovium, unspecified wrist +C2895949|T046|AB|M66.14|ICD10CM|Rupture of synovium, hand and fingers|Rupture of synovium, hand and fingers +C2895949|T046|HT|M66.14|ICD10CM|Rupture of synovium, hand and fingers|Rupture of synovium, hand and fingers +C2895950|T046|AB|M66.141|ICD10CM|Rupture of synovium, right hand|Rupture of synovium, right hand +C2895950|T046|PT|M66.141|ICD10CM|Rupture of synovium, right hand|Rupture of synovium, right hand +C2895951|T046|AB|M66.142|ICD10CM|Rupture of synovium, left hand|Rupture of synovium, left hand +C2895951|T046|PT|M66.142|ICD10CM|Rupture of synovium, left hand|Rupture of synovium, left hand +C2895952|T046|AB|M66.143|ICD10CM|Rupture of synovium, unspecified hand|Rupture of synovium, unspecified hand +C2895952|T046|PT|M66.143|ICD10CM|Rupture of synovium, unspecified hand|Rupture of synovium, unspecified hand +C2895953|T046|AB|M66.144|ICD10CM|Rupture of synovium, right finger(s)|Rupture of synovium, right finger(s) +C2895953|T046|PT|M66.144|ICD10CM|Rupture of synovium, right finger(s)|Rupture of synovium, right finger(s) +C2895954|T046|AB|M66.145|ICD10CM|Rupture of synovium, left finger(s)|Rupture of synovium, left finger(s) +C2895954|T046|PT|M66.145|ICD10CM|Rupture of synovium, left finger(s)|Rupture of synovium, left finger(s) +C2895955|T046|AB|M66.146|ICD10CM|Rupture of synovium, unspecified finger(s)|Rupture of synovium, unspecified finger(s) +C2895955|T046|PT|M66.146|ICD10CM|Rupture of synovium, unspecified finger(s)|Rupture of synovium, unspecified finger(s) +C0564814|T046|AB|M66.15|ICD10CM|Rupture of synovium, hip|Rupture of synovium, hip +C0564814|T046|HT|M66.15|ICD10CM|Rupture of synovium, hip|Rupture of synovium, hip +C2895956|T046|AB|M66.151|ICD10CM|Rupture of synovium, right hip|Rupture of synovium, right hip +C2895956|T046|PT|M66.151|ICD10CM|Rupture of synovium, right hip|Rupture of synovium, right hip +C2895957|T046|AB|M66.152|ICD10CM|Rupture of synovium, left hip|Rupture of synovium, left hip +C2895957|T046|PT|M66.152|ICD10CM|Rupture of synovium, left hip|Rupture of synovium, left hip +C2895958|T046|AB|M66.159|ICD10CM|Rupture of synovium, unspecified hip|Rupture of synovium, unspecified hip +C2895958|T046|PT|M66.159|ICD10CM|Rupture of synovium, unspecified hip|Rupture of synovium, unspecified hip +C2895959|T046|AB|M66.17|ICD10CM|Rupture of synovium, ankle, foot and toes|Rupture of synovium, ankle, foot and toes +C2895959|T046|HT|M66.17|ICD10CM|Rupture of synovium, ankle, foot and toes|Rupture of synovium, ankle, foot and toes +C2895960|T046|AB|M66.171|ICD10CM|Rupture of synovium, right ankle|Rupture of synovium, right ankle +C2895960|T046|PT|M66.171|ICD10CM|Rupture of synovium, right ankle|Rupture of synovium, right ankle +C2895961|T046|AB|M66.172|ICD10CM|Rupture of synovium, left ankle|Rupture of synovium, left ankle +C2895961|T046|PT|M66.172|ICD10CM|Rupture of synovium, left ankle|Rupture of synovium, left ankle +C2895962|T046|AB|M66.173|ICD10CM|Rupture of synovium, unspecified ankle|Rupture of synovium, unspecified ankle +C2895962|T046|PT|M66.173|ICD10CM|Rupture of synovium, unspecified ankle|Rupture of synovium, unspecified ankle +C2895963|T046|AB|M66.174|ICD10CM|Rupture of synovium, right foot|Rupture of synovium, right foot +C2895963|T046|PT|M66.174|ICD10CM|Rupture of synovium, right foot|Rupture of synovium, right foot +C2895964|T046|AB|M66.175|ICD10CM|Rupture of synovium, left foot|Rupture of synovium, left foot +C2895964|T046|PT|M66.175|ICD10CM|Rupture of synovium, left foot|Rupture of synovium, left foot +C2895965|T046|AB|M66.176|ICD10CM|Rupture of synovium, unspecified foot|Rupture of synovium, unspecified foot +C2895965|T046|PT|M66.176|ICD10CM|Rupture of synovium, unspecified foot|Rupture of synovium, unspecified foot +C2895966|T046|AB|M66.177|ICD10CM|Rupture of synovium, right toe(s)|Rupture of synovium, right toe(s) +C2895966|T046|PT|M66.177|ICD10CM|Rupture of synovium, right toe(s)|Rupture of synovium, right toe(s) +C2895967|T046|AB|M66.178|ICD10CM|Rupture of synovium, left toe(s)|Rupture of synovium, left toe(s) +C2895967|T046|PT|M66.178|ICD10CM|Rupture of synovium, left toe(s)|Rupture of synovium, left toe(s) +C2895968|T046|AB|M66.179|ICD10CM|Rupture of synovium, unspecified toe(s)|Rupture of synovium, unspecified toe(s) +C2895968|T046|PT|M66.179|ICD10CM|Rupture of synovium, unspecified toe(s)|Rupture of synovium, unspecified toe(s) +C0839143|T047|PT|M66.18|ICD10CM|Rupture of synovium, other site|Rupture of synovium, other site +C0839143|T047|AB|M66.18|ICD10CM|Rupture of synovium, other site|Rupture of synovium, other site +C0494977|T046|HT|M66.2|ICD10CM|Spontaneous rupture of extensor tendons|Spontaneous rupture of extensor tendons +C0494977|T046|AB|M66.2|ICD10CM|Spontaneous rupture of extensor tendons|Spontaneous rupture of extensor tendons +C0494977|T046|PT|M66.2|ICD10|Spontaneous rupture of extensor tendons|Spontaneous rupture of extensor tendons +C0839154|T046|AB|M66.20|ICD10CM|Spontaneous rupture of extensor tendons, unspecified site|Spontaneous rupture of extensor tendons, unspecified site +C0839154|T046|PT|M66.20|ICD10CM|Spontaneous rupture of extensor tendons, unspecified site|Spontaneous rupture of extensor tendons, unspecified site +C2895969|T046|AB|M66.21|ICD10CM|Spontaneous rupture of extensor tendons, shoulder|Spontaneous rupture of extensor tendons, shoulder +C2895969|T046|HT|M66.21|ICD10CM|Spontaneous rupture of extensor tendons, shoulder|Spontaneous rupture of extensor tendons, shoulder +C2895970|T046|AB|M66.211|ICD10CM|Spontaneous rupture of extensor tendons, right shoulder|Spontaneous rupture of extensor tendons, right shoulder +C2895970|T046|PT|M66.211|ICD10CM|Spontaneous rupture of extensor tendons, right shoulder|Spontaneous rupture of extensor tendons, right shoulder +C2895971|T046|AB|M66.212|ICD10CM|Spontaneous rupture of extensor tendons, left shoulder|Spontaneous rupture of extensor tendons, left shoulder +C2895971|T046|PT|M66.212|ICD10CM|Spontaneous rupture of extensor tendons, left shoulder|Spontaneous rupture of extensor tendons, left shoulder +C2895972|T046|AB|M66.219|ICD10CM|Spontaneous rupture of extensor tendons, unsp shoulder|Spontaneous rupture of extensor tendons, unsp shoulder +C2895972|T046|PT|M66.219|ICD10CM|Spontaneous rupture of extensor tendons, unspecified shoulder|Spontaneous rupture of extensor tendons, unspecified shoulder +C0839147|T046|HT|M66.22|ICD10CM|Spontaneous rupture of extensor tendons, upper arm|Spontaneous rupture of extensor tendons, upper arm +C0839147|T046|AB|M66.22|ICD10CM|Spontaneous rupture of extensor tendons, upper arm|Spontaneous rupture of extensor tendons, upper arm +C2895973|T046|AB|M66.221|ICD10CM|Spontaneous rupture of extensor tendons, right upper arm|Spontaneous rupture of extensor tendons, right upper arm +C2895973|T046|PT|M66.221|ICD10CM|Spontaneous rupture of extensor tendons, right upper arm|Spontaneous rupture of extensor tendons, right upper arm +C2895974|T046|AB|M66.222|ICD10CM|Spontaneous rupture of extensor tendons, left upper arm|Spontaneous rupture of extensor tendons, left upper arm +C2895974|T046|PT|M66.222|ICD10CM|Spontaneous rupture of extensor tendons, left upper arm|Spontaneous rupture of extensor tendons, left upper arm +C2895975|T046|AB|M66.229|ICD10CM|Spontaneous rupture of extensor tendons, unsp upper arm|Spontaneous rupture of extensor tendons, unsp upper arm +C2895975|T046|PT|M66.229|ICD10CM|Spontaneous rupture of extensor tendons, unspecified upper arm|Spontaneous rupture of extensor tendons, unspecified upper arm +C0839148|T046|HT|M66.23|ICD10CM|Spontaneous rupture of extensor tendons, forearm|Spontaneous rupture of extensor tendons, forearm +C0839148|T046|AB|M66.23|ICD10CM|Spontaneous rupture of extensor tendons, forearm|Spontaneous rupture of extensor tendons, forearm +C2895976|T046|AB|M66.231|ICD10CM|Spontaneous rupture of extensor tendons, right forearm|Spontaneous rupture of extensor tendons, right forearm +C2895976|T046|PT|M66.231|ICD10CM|Spontaneous rupture of extensor tendons, right forearm|Spontaneous rupture of extensor tendons, right forearm +C2895977|T046|AB|M66.232|ICD10CM|Spontaneous rupture of extensor tendons, left forearm|Spontaneous rupture of extensor tendons, left forearm +C2895977|T046|PT|M66.232|ICD10CM|Spontaneous rupture of extensor tendons, left forearm|Spontaneous rupture of extensor tendons, left forearm +C2895978|T046|AB|M66.239|ICD10CM|Spontaneous rupture of extensor tendons, unspecified forearm|Spontaneous rupture of extensor tendons, unspecified forearm +C2895978|T046|PT|M66.239|ICD10CM|Spontaneous rupture of extensor tendons, unspecified forearm|Spontaneous rupture of extensor tendons, unspecified forearm +C0839149|T046|HT|M66.24|ICD10CM|Spontaneous rupture of extensor tendons, hand|Spontaneous rupture of extensor tendons, hand +C0839149|T046|AB|M66.24|ICD10CM|Spontaneous rupture of extensor tendons, hand|Spontaneous rupture of extensor tendons, hand +C2895979|T046|AB|M66.241|ICD10CM|Spontaneous rupture of extensor tendons, right hand|Spontaneous rupture of extensor tendons, right hand +C2895979|T046|PT|M66.241|ICD10CM|Spontaneous rupture of extensor tendons, right hand|Spontaneous rupture of extensor tendons, right hand +C2895980|T046|AB|M66.242|ICD10CM|Spontaneous rupture of extensor tendons, left hand|Spontaneous rupture of extensor tendons, left hand +C2895980|T046|PT|M66.242|ICD10CM|Spontaneous rupture of extensor tendons, left hand|Spontaneous rupture of extensor tendons, left hand +C2895981|T046|AB|M66.249|ICD10CM|Spontaneous rupture of extensor tendons, unspecified hand|Spontaneous rupture of extensor tendons, unspecified hand +C2895981|T046|PT|M66.249|ICD10CM|Spontaneous rupture of extensor tendons, unspecified hand|Spontaneous rupture of extensor tendons, unspecified hand +C2895982|T046|AB|M66.25|ICD10CM|Spontaneous rupture of extensor tendons, thigh|Spontaneous rupture of extensor tendons, thigh +C2895982|T046|HT|M66.25|ICD10CM|Spontaneous rupture of extensor tendons, thigh|Spontaneous rupture of extensor tendons, thigh +C2895983|T046|AB|M66.251|ICD10CM|Spontaneous rupture of extensor tendons, right thigh|Spontaneous rupture of extensor tendons, right thigh +C2895983|T046|PT|M66.251|ICD10CM|Spontaneous rupture of extensor tendons, right thigh|Spontaneous rupture of extensor tendons, right thigh +C2895984|T046|AB|M66.252|ICD10CM|Spontaneous rupture of extensor tendons, left thigh|Spontaneous rupture of extensor tendons, left thigh +C2895984|T046|PT|M66.252|ICD10CM|Spontaneous rupture of extensor tendons, left thigh|Spontaneous rupture of extensor tendons, left thigh +C2895985|T046|AB|M66.259|ICD10CM|Spontaneous rupture of extensor tendons, unspecified thigh|Spontaneous rupture of extensor tendons, unspecified thigh +C2895985|T046|PT|M66.259|ICD10CM|Spontaneous rupture of extensor tendons, unspecified thigh|Spontaneous rupture of extensor tendons, unspecified thigh +C0839151|T046|HT|M66.26|ICD10CM|Spontaneous rupture of extensor tendons, lower leg|Spontaneous rupture of extensor tendons, lower leg +C0839151|T046|AB|M66.26|ICD10CM|Spontaneous rupture of extensor tendons, lower leg|Spontaneous rupture of extensor tendons, lower leg +C2895986|T046|AB|M66.261|ICD10CM|Spontaneous rupture of extensor tendons, right lower leg|Spontaneous rupture of extensor tendons, right lower leg +C2895986|T046|PT|M66.261|ICD10CM|Spontaneous rupture of extensor tendons, right lower leg|Spontaneous rupture of extensor tendons, right lower leg +C2895987|T046|AB|M66.262|ICD10CM|Spontaneous rupture of extensor tendons, left lower leg|Spontaneous rupture of extensor tendons, left lower leg +C2895987|T046|PT|M66.262|ICD10CM|Spontaneous rupture of extensor tendons, left lower leg|Spontaneous rupture of extensor tendons, left lower leg +C0839151|T046|AB|M66.269|ICD10CM|Spontaneous rupture of extensor tendons, unsp lower leg|Spontaneous rupture of extensor tendons, unsp lower leg +C0839151|T046|PT|M66.269|ICD10CM|Spontaneous rupture of extensor tendons, unspecified lower leg|Spontaneous rupture of extensor tendons, unspecified lower leg +C0839152|T046|HT|M66.27|ICD10CM|Spontaneous rupture of extensor tendons, ankle and foot|Spontaneous rupture of extensor tendons, ankle and foot +C0839152|T046|AB|M66.27|ICD10CM|Spontaneous rupture of extensor tendons, ankle and foot|Spontaneous rupture of extensor tendons, ankle and foot +C2895988|T046|AB|M66.271|ICD10CM|Spontaneous rupture of extensor tendons, right ank/ft|Spontaneous rupture of extensor tendons, right ank/ft +C2895988|T046|PT|M66.271|ICD10CM|Spontaneous rupture of extensor tendons, right ankle and foot|Spontaneous rupture of extensor tendons, right ankle and foot +C2895989|T046|AB|M66.272|ICD10CM|Spontaneous rupture of extensor tendons, left ankle and foot|Spontaneous rupture of extensor tendons, left ankle and foot +C2895989|T046|PT|M66.272|ICD10CM|Spontaneous rupture of extensor tendons, left ankle and foot|Spontaneous rupture of extensor tendons, left ankle and foot +C0839152|T046|AB|M66.279|ICD10CM|Spontaneous rupture of extensor tendons, unsp ankle and foot|Spontaneous rupture of extensor tendons, unsp ankle and foot +C0839152|T046|PT|M66.279|ICD10CM|Spontaneous rupture of extensor tendons, unspecified ankle and foot|Spontaneous rupture of extensor tendons, unspecified ankle and foot +C0839153|T047|PT|M66.28|ICD10CM|Spontaneous rupture of extensor tendons, other site|Spontaneous rupture of extensor tendons, other site +C0839153|T047|AB|M66.28|ICD10CM|Spontaneous rupture of extensor tendons, other site|Spontaneous rupture of extensor tendons, other site +C0839145|T046|PT|M66.29|ICD10CM|Spontaneous rupture of extensor tendons, multiple sites|Spontaneous rupture of extensor tendons, multiple sites +C0839145|T046|AB|M66.29|ICD10CM|Spontaneous rupture of extensor tendons, multiple sites|Spontaneous rupture of extensor tendons, multiple sites +C0494978|T046|HT|M66.3|ICD10CM|Spontaneous rupture of flexor tendons|Spontaneous rupture of flexor tendons +C0494978|T046|AB|M66.3|ICD10CM|Spontaneous rupture of flexor tendons|Spontaneous rupture of flexor tendons +C0494978|T046|PT|M66.3|ICD10|Spontaneous rupture of flexor tendons|Spontaneous rupture of flexor tendons +C0839164|T046|AB|M66.30|ICD10CM|Spontaneous rupture of flexor tendons, unspecified site|Spontaneous rupture of flexor tendons, unspecified site +C0839164|T046|PT|M66.30|ICD10CM|Spontaneous rupture of flexor tendons, unspecified site|Spontaneous rupture of flexor tendons, unspecified site +C2895992|T046|AB|M66.31|ICD10CM|Spontaneous rupture of flexor tendons, shoulder|Spontaneous rupture of flexor tendons, shoulder +C2895992|T046|HT|M66.31|ICD10CM|Spontaneous rupture of flexor tendons, shoulder|Spontaneous rupture of flexor tendons, shoulder +C2895990|T046|AB|M66.311|ICD10CM|Spontaneous rupture of flexor tendons, right shoulder|Spontaneous rupture of flexor tendons, right shoulder +C2895990|T046|PT|M66.311|ICD10CM|Spontaneous rupture of flexor tendons, right shoulder|Spontaneous rupture of flexor tendons, right shoulder +C2895991|T046|AB|M66.312|ICD10CM|Spontaneous rupture of flexor tendons, left shoulder|Spontaneous rupture of flexor tendons, left shoulder +C2895991|T046|PT|M66.312|ICD10CM|Spontaneous rupture of flexor tendons, left shoulder|Spontaneous rupture of flexor tendons, left shoulder +C2895992|T046|AB|M66.319|ICD10CM|Spontaneous rupture of flexor tendons, unspecified shoulder|Spontaneous rupture of flexor tendons, unspecified shoulder +C2895992|T046|PT|M66.319|ICD10CM|Spontaneous rupture of flexor tendons, unspecified shoulder|Spontaneous rupture of flexor tendons, unspecified shoulder +C0839157|T046|HT|M66.32|ICD10CM|Spontaneous rupture of flexor tendons, upper arm|Spontaneous rupture of flexor tendons, upper arm +C0839157|T046|AB|M66.32|ICD10CM|Spontaneous rupture of flexor tendons, upper arm|Spontaneous rupture of flexor tendons, upper arm +C2895993|T046|AB|M66.321|ICD10CM|Spontaneous rupture of flexor tendons, right upper arm|Spontaneous rupture of flexor tendons, right upper arm +C2895993|T046|PT|M66.321|ICD10CM|Spontaneous rupture of flexor tendons, right upper arm|Spontaneous rupture of flexor tendons, right upper arm +C2895994|T046|AB|M66.322|ICD10CM|Spontaneous rupture of flexor tendons, left upper arm|Spontaneous rupture of flexor tendons, left upper arm +C2895994|T046|PT|M66.322|ICD10CM|Spontaneous rupture of flexor tendons, left upper arm|Spontaneous rupture of flexor tendons, left upper arm +C0839157|T046|AB|M66.329|ICD10CM|Spontaneous rupture of flexor tendons, unspecified upper arm|Spontaneous rupture of flexor tendons, unspecified upper arm +C0839157|T046|PT|M66.329|ICD10CM|Spontaneous rupture of flexor tendons, unspecified upper arm|Spontaneous rupture of flexor tendons, unspecified upper arm +C0839158|T046|HT|M66.33|ICD10CM|Spontaneous rupture of flexor tendons, forearm|Spontaneous rupture of flexor tendons, forearm +C0839158|T046|AB|M66.33|ICD10CM|Spontaneous rupture of flexor tendons, forearm|Spontaneous rupture of flexor tendons, forearm +C2895995|T046|AB|M66.331|ICD10CM|Spontaneous rupture of flexor tendons, right forearm|Spontaneous rupture of flexor tendons, right forearm +C2895995|T046|PT|M66.331|ICD10CM|Spontaneous rupture of flexor tendons, right forearm|Spontaneous rupture of flexor tendons, right forearm +C2895996|T046|AB|M66.332|ICD10CM|Spontaneous rupture of flexor tendons, left forearm|Spontaneous rupture of flexor tendons, left forearm +C2895996|T046|PT|M66.332|ICD10CM|Spontaneous rupture of flexor tendons, left forearm|Spontaneous rupture of flexor tendons, left forearm +C0839158|T046|AB|M66.339|ICD10CM|Spontaneous rupture of flexor tendons, unspecified forearm|Spontaneous rupture of flexor tendons, unspecified forearm +C0839158|T046|PT|M66.339|ICD10CM|Spontaneous rupture of flexor tendons, unspecified forearm|Spontaneous rupture of flexor tendons, unspecified forearm +C0839159|T046|HT|M66.34|ICD10CM|Spontaneous rupture of flexor tendons, hand|Spontaneous rupture of flexor tendons, hand +C0839159|T046|AB|M66.34|ICD10CM|Spontaneous rupture of flexor tendons, hand|Spontaneous rupture of flexor tendons, hand +C2895997|T046|AB|M66.341|ICD10CM|Spontaneous rupture of flexor tendons, right hand|Spontaneous rupture of flexor tendons, right hand +C2895997|T046|PT|M66.341|ICD10CM|Spontaneous rupture of flexor tendons, right hand|Spontaneous rupture of flexor tendons, right hand +C2895998|T046|AB|M66.342|ICD10CM|Spontaneous rupture of flexor tendons, left hand|Spontaneous rupture of flexor tendons, left hand +C2895998|T046|PT|M66.342|ICD10CM|Spontaneous rupture of flexor tendons, left hand|Spontaneous rupture of flexor tendons, left hand +C0839159|T046|AB|M66.349|ICD10CM|Spontaneous rupture of flexor tendons, unspecified hand|Spontaneous rupture of flexor tendons, unspecified hand +C0839159|T046|PT|M66.349|ICD10CM|Spontaneous rupture of flexor tendons, unspecified hand|Spontaneous rupture of flexor tendons, unspecified hand +C2896001|T046|AB|M66.35|ICD10CM|Spontaneous rupture of flexor tendons, thigh|Spontaneous rupture of flexor tendons, thigh +C2896001|T046|HT|M66.35|ICD10CM|Spontaneous rupture of flexor tendons, thigh|Spontaneous rupture of flexor tendons, thigh +C2895999|T046|AB|M66.351|ICD10CM|Spontaneous rupture of flexor tendons, right thigh|Spontaneous rupture of flexor tendons, right thigh +C2895999|T046|PT|M66.351|ICD10CM|Spontaneous rupture of flexor tendons, right thigh|Spontaneous rupture of flexor tendons, right thigh +C2896000|T046|AB|M66.352|ICD10CM|Spontaneous rupture of flexor tendons, left thigh|Spontaneous rupture of flexor tendons, left thigh +C2896000|T046|PT|M66.352|ICD10CM|Spontaneous rupture of flexor tendons, left thigh|Spontaneous rupture of flexor tendons, left thigh +C2896001|T046|AB|M66.359|ICD10CM|Spontaneous rupture of flexor tendons, unspecified thigh|Spontaneous rupture of flexor tendons, unspecified thigh +C2896001|T046|PT|M66.359|ICD10CM|Spontaneous rupture of flexor tendons, unspecified thigh|Spontaneous rupture of flexor tendons, unspecified thigh +C0839161|T046|HT|M66.36|ICD10CM|Spontaneous rupture of flexor tendons, lower leg|Spontaneous rupture of flexor tendons, lower leg +C0839161|T046|AB|M66.36|ICD10CM|Spontaneous rupture of flexor tendons, lower leg|Spontaneous rupture of flexor tendons, lower leg +C2896002|T046|AB|M66.361|ICD10CM|Spontaneous rupture of flexor tendons, right lower leg|Spontaneous rupture of flexor tendons, right lower leg +C2896002|T046|PT|M66.361|ICD10CM|Spontaneous rupture of flexor tendons, right lower leg|Spontaneous rupture of flexor tendons, right lower leg +C2896003|T046|AB|M66.362|ICD10CM|Spontaneous rupture of flexor tendons, left lower leg|Spontaneous rupture of flexor tendons, left lower leg +C2896003|T046|PT|M66.362|ICD10CM|Spontaneous rupture of flexor tendons, left lower leg|Spontaneous rupture of flexor tendons, left lower leg +C0839161|T046|AB|M66.369|ICD10CM|Spontaneous rupture of flexor tendons, unspecified lower leg|Spontaneous rupture of flexor tendons, unspecified lower leg +C0839161|T046|PT|M66.369|ICD10CM|Spontaneous rupture of flexor tendons, unspecified lower leg|Spontaneous rupture of flexor tendons, unspecified lower leg +C0839162|T046|HT|M66.37|ICD10CM|Spontaneous rupture of flexor tendons, ankle and foot|Spontaneous rupture of flexor tendons, ankle and foot +C0839162|T046|AB|M66.37|ICD10CM|Spontaneous rupture of flexor tendons, ankle and foot|Spontaneous rupture of flexor tendons, ankle and foot +C2896004|T046|AB|M66.371|ICD10CM|Spontaneous rupture of flexor tendons, right ankle and foot|Spontaneous rupture of flexor tendons, right ankle and foot +C2896004|T046|PT|M66.371|ICD10CM|Spontaneous rupture of flexor tendons, right ankle and foot|Spontaneous rupture of flexor tendons, right ankle and foot +C2896005|T046|AB|M66.372|ICD10CM|Spontaneous rupture of flexor tendons, left ankle and foot|Spontaneous rupture of flexor tendons, left ankle and foot +C2896005|T046|PT|M66.372|ICD10CM|Spontaneous rupture of flexor tendons, left ankle and foot|Spontaneous rupture of flexor tendons, left ankle and foot +C0839162|T046|AB|M66.379|ICD10CM|Spontaneous rupture of flexor tendons, unsp ankle and foot|Spontaneous rupture of flexor tendons, unsp ankle and foot +C0839162|T046|PT|M66.379|ICD10CM|Spontaneous rupture of flexor tendons, unspecified ankle and foot|Spontaneous rupture of flexor tendons, unspecified ankle and foot +C0839163|T047|PT|M66.38|ICD10CM|Spontaneous rupture of flexor tendons, other site|Spontaneous rupture of flexor tendons, other site +C0839163|T047|AB|M66.38|ICD10CM|Spontaneous rupture of flexor tendons, other site|Spontaneous rupture of flexor tendons, other site +C0839155|T046|PT|M66.39|ICD10CM|Spontaneous rupture of flexor tendons, multiple sites|Spontaneous rupture of flexor tendons, multiple sites +C0839155|T046|AB|M66.39|ICD10CM|Spontaneous rupture of flexor tendons, multiple sites|Spontaneous rupture of flexor tendons, multiple sites +C0477647|T046|PT|M66.4|ICD10|Spontaneous rupture of other tendons|Spontaneous rupture of other tendons +C0158339|T047|PT|M66.5|ICD10|Spontaneous rupture of unspecified tendon|Spontaneous rupture of unspecified tendon +C0477647|T046|HT|M66.8|ICD10CM|Spontaneous rupture of other tendons|Spontaneous rupture of other tendons +C0477647|T046|AB|M66.8|ICD10CM|Spontaneous rupture of other tendons|Spontaneous rupture of other tendons +C0839174|T046|AB|M66.80|ICD10CM|Spontaneous rupture of other tendons, unspecified site|Spontaneous rupture of other tendons, unspecified site +C0839174|T046|PT|M66.80|ICD10CM|Spontaneous rupture of other tendons, unspecified site|Spontaneous rupture of other tendons, unspecified site +C2896008|T046|AB|M66.81|ICD10CM|Spontaneous rupture of other tendons, shoulder|Spontaneous rupture of other tendons, shoulder +C2896008|T046|HT|M66.81|ICD10CM|Spontaneous rupture of other tendons, shoulder|Spontaneous rupture of other tendons, shoulder +C2896006|T046|AB|M66.811|ICD10CM|Spontaneous rupture of other tendons, right shoulder|Spontaneous rupture of other tendons, right shoulder +C2896006|T046|PT|M66.811|ICD10CM|Spontaneous rupture of other tendons, right shoulder|Spontaneous rupture of other tendons, right shoulder +C2896007|T046|AB|M66.812|ICD10CM|Spontaneous rupture of other tendons, left shoulder|Spontaneous rupture of other tendons, left shoulder +C2896007|T046|PT|M66.812|ICD10CM|Spontaneous rupture of other tendons, left shoulder|Spontaneous rupture of other tendons, left shoulder +C2896008|T046|AB|M66.819|ICD10CM|Spontaneous rupture of other tendons, unspecified shoulder|Spontaneous rupture of other tendons, unspecified shoulder +C2896008|T046|PT|M66.819|ICD10CM|Spontaneous rupture of other tendons, unspecified shoulder|Spontaneous rupture of other tendons, unspecified shoulder +C0839167|T046|HT|M66.82|ICD10CM|Spontaneous rupture of other tendons, upper arm|Spontaneous rupture of other tendons, upper arm +C0839167|T046|AB|M66.82|ICD10CM|Spontaneous rupture of other tendons, upper arm|Spontaneous rupture of other tendons, upper arm +C2896009|T046|AB|M66.821|ICD10CM|Spontaneous rupture of other tendons, right upper arm|Spontaneous rupture of other tendons, right upper arm +C2896009|T046|PT|M66.821|ICD10CM|Spontaneous rupture of other tendons, right upper arm|Spontaneous rupture of other tendons, right upper arm +C2896010|T046|AB|M66.822|ICD10CM|Spontaneous rupture of other tendons, left upper arm|Spontaneous rupture of other tendons, left upper arm +C2896010|T046|PT|M66.822|ICD10CM|Spontaneous rupture of other tendons, left upper arm|Spontaneous rupture of other tendons, left upper arm +C0839167|T046|AB|M66.829|ICD10CM|Spontaneous rupture of other tendons, unspecified upper arm|Spontaneous rupture of other tendons, unspecified upper arm +C0839167|T046|PT|M66.829|ICD10CM|Spontaneous rupture of other tendons, unspecified upper arm|Spontaneous rupture of other tendons, unspecified upper arm +C0839168|T046|HT|M66.83|ICD10CM|Spontaneous rupture of other tendons, forearm|Spontaneous rupture of other tendons, forearm +C0839168|T046|AB|M66.83|ICD10CM|Spontaneous rupture of other tendons, forearm|Spontaneous rupture of other tendons, forearm +C2896011|T046|AB|M66.831|ICD10CM|Spontaneous rupture of other tendons, right forearm|Spontaneous rupture of other tendons, right forearm +C2896011|T046|PT|M66.831|ICD10CM|Spontaneous rupture of other tendons, right forearm|Spontaneous rupture of other tendons, right forearm +C2896012|T046|AB|M66.832|ICD10CM|Spontaneous rupture of other tendons, left forearm|Spontaneous rupture of other tendons, left forearm +C2896012|T046|PT|M66.832|ICD10CM|Spontaneous rupture of other tendons, left forearm|Spontaneous rupture of other tendons, left forearm +C0839168|T046|AB|M66.839|ICD10CM|Spontaneous rupture of other tendons, unspecified forearm|Spontaneous rupture of other tendons, unspecified forearm +C0839168|T046|PT|M66.839|ICD10CM|Spontaneous rupture of other tendons, unspecified forearm|Spontaneous rupture of other tendons, unspecified forearm +C0839169|T046|HT|M66.84|ICD10CM|Spontaneous rupture of other tendons, hand|Spontaneous rupture of other tendons, hand +C0839169|T046|AB|M66.84|ICD10CM|Spontaneous rupture of other tendons, hand|Spontaneous rupture of other tendons, hand +C2896013|T046|AB|M66.841|ICD10CM|Spontaneous rupture of other tendons, right hand|Spontaneous rupture of other tendons, right hand +C2896013|T046|PT|M66.841|ICD10CM|Spontaneous rupture of other tendons, right hand|Spontaneous rupture of other tendons, right hand +C2896014|T046|AB|M66.842|ICD10CM|Spontaneous rupture of other tendons, left hand|Spontaneous rupture of other tendons, left hand +C2896014|T046|PT|M66.842|ICD10CM|Spontaneous rupture of other tendons, left hand|Spontaneous rupture of other tendons, left hand +C0839169|T046|AB|M66.849|ICD10CM|Spontaneous rupture of other tendons, unspecified hand|Spontaneous rupture of other tendons, unspecified hand +C0839169|T046|PT|M66.849|ICD10CM|Spontaneous rupture of other tendons, unspecified hand|Spontaneous rupture of other tendons, unspecified hand +C2896017|T046|AB|M66.85|ICD10CM|Spontaneous rupture of other tendons, thigh|Spontaneous rupture of other tendons, thigh +C2896017|T046|HT|M66.85|ICD10CM|Spontaneous rupture of other tendons, thigh|Spontaneous rupture of other tendons, thigh +C2896015|T046|AB|M66.851|ICD10CM|Spontaneous rupture of other tendons, right thigh|Spontaneous rupture of other tendons, right thigh +C2896015|T046|PT|M66.851|ICD10CM|Spontaneous rupture of other tendons, right thigh|Spontaneous rupture of other tendons, right thigh +C2896016|T046|AB|M66.852|ICD10CM|Spontaneous rupture of other tendons, left thigh|Spontaneous rupture of other tendons, left thigh +C2896016|T046|PT|M66.852|ICD10CM|Spontaneous rupture of other tendons, left thigh|Spontaneous rupture of other tendons, left thigh +C2896017|T046|AB|M66.859|ICD10CM|Spontaneous rupture of other tendons, unspecified thigh|Spontaneous rupture of other tendons, unspecified thigh +C2896017|T046|PT|M66.859|ICD10CM|Spontaneous rupture of other tendons, unspecified thigh|Spontaneous rupture of other tendons, unspecified thigh +C0839171|T046|HT|M66.86|ICD10CM|Spontaneous rupture of other tendons, lower leg|Spontaneous rupture of other tendons, lower leg +C0839171|T046|AB|M66.86|ICD10CM|Spontaneous rupture of other tendons, lower leg|Spontaneous rupture of other tendons, lower leg +C2896018|T046|AB|M66.861|ICD10CM|Spontaneous rupture of other tendons, right lower leg|Spontaneous rupture of other tendons, right lower leg +C2896018|T046|PT|M66.861|ICD10CM|Spontaneous rupture of other tendons, right lower leg|Spontaneous rupture of other tendons, right lower leg +C2896019|T046|AB|M66.862|ICD10CM|Spontaneous rupture of other tendons, left lower leg|Spontaneous rupture of other tendons, left lower leg +C2896019|T046|PT|M66.862|ICD10CM|Spontaneous rupture of other tendons, left lower leg|Spontaneous rupture of other tendons, left lower leg +C0839171|T046|AB|M66.869|ICD10CM|Spontaneous rupture of other tendons, unspecified lower leg|Spontaneous rupture of other tendons, unspecified lower leg +C0839171|T046|PT|M66.869|ICD10CM|Spontaneous rupture of other tendons, unspecified lower leg|Spontaneous rupture of other tendons, unspecified lower leg +C0839172|T046|HT|M66.87|ICD10CM|Spontaneous rupture of other tendons, ankle and foot|Spontaneous rupture of other tendons, ankle and foot +C0839172|T046|AB|M66.87|ICD10CM|Spontaneous rupture of other tendons, ankle and foot|Spontaneous rupture of other tendons, ankle and foot +C2896020|T046|AB|M66.871|ICD10CM|Spontaneous rupture of other tendons, right ankle and foot|Spontaneous rupture of other tendons, right ankle and foot +C2896020|T046|PT|M66.871|ICD10CM|Spontaneous rupture of other tendons, right ankle and foot|Spontaneous rupture of other tendons, right ankle and foot +C2896021|T046|AB|M66.872|ICD10CM|Spontaneous rupture of other tendons, left ankle and foot|Spontaneous rupture of other tendons, left ankle and foot +C2896021|T046|PT|M66.872|ICD10CM|Spontaneous rupture of other tendons, left ankle and foot|Spontaneous rupture of other tendons, left ankle and foot +C2896022|T046|AB|M66.879|ICD10CM|Spontaneous rupture of other tendons, unsp ankle and foot|Spontaneous rupture of other tendons, unsp ankle and foot +C2896022|T046|PT|M66.879|ICD10CM|Spontaneous rupture of other tendons, unspecified ankle and foot|Spontaneous rupture of other tendons, unspecified ankle and foot +C0839173|T046|AB|M66.88|ICD10CM|Spontaneous rupture of other tendons, other sites|Spontaneous rupture of other tendons, other sites +C0839173|T046|PT|M66.88|ICD10CM|Spontaneous rupture of other tendons, other sites|Spontaneous rupture of other tendons, other sites +C0839165|T046|PT|M66.89|ICD10CM|Spontaneous rupture of other tendons, multiple sites|Spontaneous rupture of other tendons, multiple sites +C0839165|T046|AB|M66.89|ICD10CM|Spontaneous rupture of other tendons, multiple sites|Spontaneous rupture of other tendons, multiple sites +C2896024|T046|ET|M66.9|ICD10CM|Rupture at musculotendinous junction, nontraumatic|Rupture at musculotendinous junction, nontraumatic +C0158339|T047|PT|M66.9|ICD10CM|Spontaneous rupture of unspecified tendon|Spontaneous rupture of unspecified tendon +C0158339|T047|AB|M66.9|ICD10CM|Spontaneous rupture of unspecified tendon|Spontaneous rupture of unspecified tendon +C0494980|T047|AB|M67|ICD10CM|Other disorders of synovium and tendon|Other disorders of synovium and tendon +C0494980|T047|HT|M67|ICD10CM|Other disorders of synovium and tendon|Other disorders of synovium and tendon +C0494980|T047|HT|M67|ICD10|Other disorders of synovium and tendon|Other disorders of synovium and tendon +C0263973|T020|PT|M67.0|ICD10|Short Achilles tendon (acquired)|Short Achilles tendon (acquired) +C0263973|T020|HT|M67.0|ICD10CM|Short Achilles tendon (acquired)|Short Achilles tendon (acquired) +C0263973|T020|AB|M67.0|ICD10CM|Short Achilles tendon (acquired)|Short Achilles tendon (acquired) +C2896025|T020|AB|M67.00|ICD10CM|Short Achilles tendon (acquired), unspecified ankle|Short Achilles tendon (acquired), unspecified ankle +C2896025|T020|PT|M67.00|ICD10CM|Short Achilles tendon (acquired), unspecified ankle|Short Achilles tendon (acquired), unspecified ankle +C2896026|T020|AB|M67.01|ICD10CM|Short Achilles tendon (acquired), right ankle|Short Achilles tendon (acquired), right ankle +C2896026|T020|PT|M67.01|ICD10CM|Short Achilles tendon (acquired), right ankle|Short Achilles tendon (acquired), right ankle +C2896027|T020|AB|M67.02|ICD10CM|Short Achilles tendon (acquired), left ankle|Short Achilles tendon (acquired), left ankle +C2896027|T020|PT|M67.02|ICD10CM|Short Achilles tendon (acquired), left ankle|Short Achilles tendon (acquired), left ankle +C0477648|T020|PT|M67.1|ICD10|Other contracture of tendon (sheath)|Other contracture of tendon (sheath) +C0869066|T046|PT|M67.2|ICD10|Synovial hypertrophy, not elsewhere classified|Synovial hypertrophy, not elsewhere classified +C0869066|T046|HT|M67.2|ICD10CM|Synovial hypertrophy, not elsewhere classified|Synovial hypertrophy, not elsewhere classified +C0869066|T046|AB|M67.2|ICD10CM|Synovial hypertrophy, not elsewhere classified|Synovial hypertrophy, not elsewhere classified +C0839204|T046|AB|M67.20|ICD10CM|Synovial hypertrophy, not elsewhere classified, unsp site|Synovial hypertrophy, not elsewhere classified, unsp site +C0839204|T046|PT|M67.20|ICD10CM|Synovial hypertrophy, not elsewhere classified, unspecified site|Synovial hypertrophy, not elsewhere classified, unspecified site +C2896028|T047|AB|M67.21|ICD10CM|Synovial hypertrophy, not elsewhere classified, shoulder|Synovial hypertrophy, not elsewhere classified, shoulder +C2896028|T047|HT|M67.21|ICD10CM|Synovial hypertrophy, not elsewhere classified, shoulder|Synovial hypertrophy, not elsewhere classified, shoulder +C2896029|T047|AB|M67.211|ICD10CM|Synovial hypertrophy, NEC, right shoulder|Synovial hypertrophy, NEC, right shoulder +C2896029|T047|PT|M67.211|ICD10CM|Synovial hypertrophy, not elsewhere classified, right shoulder|Synovial hypertrophy, not elsewhere classified, right shoulder +C2896030|T047|AB|M67.212|ICD10CM|Synovial hypertrophy, NEC, left shoulder|Synovial hypertrophy, NEC, left shoulder +C2896030|T047|PT|M67.212|ICD10CM|Synovial hypertrophy, not elsewhere classified, left shoulder|Synovial hypertrophy, not elsewhere classified, left shoulder +C2896031|T047|AB|M67.219|ICD10CM|Synovial hypertrophy, NEC, unsp shoulder|Synovial hypertrophy, NEC, unsp shoulder +C2896031|T047|PT|M67.219|ICD10CM|Synovial hypertrophy, not elsewhere classified, unspecified shoulder|Synovial hypertrophy, not elsewhere classified, unspecified shoulder +C0839197|T046|HT|M67.22|ICD10CM|Synovial hypertrophy, not elsewhere classified, upper arm|Synovial hypertrophy, not elsewhere classified, upper arm +C0839197|T046|AB|M67.22|ICD10CM|Synovial hypertrophy, not elsewhere classified, upper arm|Synovial hypertrophy, not elsewhere classified, upper arm +C2896032|T046|AB|M67.221|ICD10CM|Synovial hypertrophy, NEC, right upper arm|Synovial hypertrophy, NEC, right upper arm +C2896032|T046|PT|M67.221|ICD10CM|Synovial hypertrophy, not elsewhere classified, right upper arm|Synovial hypertrophy, not elsewhere classified, right upper arm +C2896033|T046|AB|M67.222|ICD10CM|Synovial hypertrophy, NEC, left upper arm|Synovial hypertrophy, NEC, left upper arm +C2896033|T046|PT|M67.222|ICD10CM|Synovial hypertrophy, not elsewhere classified, left upper arm|Synovial hypertrophy, not elsewhere classified, left upper arm +C0839197|T046|AB|M67.229|ICD10CM|Synovial hypertrophy, NEC, unsp upper arm|Synovial hypertrophy, NEC, unsp upper arm +C0839197|T046|PT|M67.229|ICD10CM|Synovial hypertrophy, not elsewhere classified, unspecified upper arm|Synovial hypertrophy, not elsewhere classified, unspecified upper arm +C0839198|T046|HT|M67.23|ICD10CM|Synovial hypertrophy, not elsewhere classified, forearm|Synovial hypertrophy, not elsewhere classified, forearm +C0839198|T046|AB|M67.23|ICD10CM|Synovial hypertrophy, not elsewhere classified, forearm|Synovial hypertrophy, not elsewhere classified, forearm +C2896034|T046|AB|M67.231|ICD10CM|Synovial hypertrophy, NEC, right forearm|Synovial hypertrophy, NEC, right forearm +C2896034|T046|PT|M67.231|ICD10CM|Synovial hypertrophy, not elsewhere classified, right forearm|Synovial hypertrophy, not elsewhere classified, right forearm +C2896035|T046|AB|M67.232|ICD10CM|Synovial hypertrophy, not elsewhere classified, left forearm|Synovial hypertrophy, not elsewhere classified, left forearm +C2896035|T046|PT|M67.232|ICD10CM|Synovial hypertrophy, not elsewhere classified, left forearm|Synovial hypertrophy, not elsewhere classified, left forearm +C0839198|T046|AB|M67.239|ICD10CM|Synovial hypertrophy, not elsewhere classified, unsp forearm|Synovial hypertrophy, not elsewhere classified, unsp forearm +C0839198|T046|PT|M67.239|ICD10CM|Synovial hypertrophy, not elsewhere classified, unspecified forearm|Synovial hypertrophy, not elsewhere classified, unspecified forearm +C0839199|T046|HT|M67.24|ICD10CM|Synovial hypertrophy, not elsewhere classified, hand|Synovial hypertrophy, not elsewhere classified, hand +C0839199|T046|AB|M67.24|ICD10CM|Synovial hypertrophy, not elsewhere classified, hand|Synovial hypertrophy, not elsewhere classified, hand +C2896036|T046|AB|M67.241|ICD10CM|Synovial hypertrophy, not elsewhere classified, right hand|Synovial hypertrophy, not elsewhere classified, right hand +C2896036|T046|PT|M67.241|ICD10CM|Synovial hypertrophy, not elsewhere classified, right hand|Synovial hypertrophy, not elsewhere classified, right hand +C2896037|T046|AB|M67.242|ICD10CM|Synovial hypertrophy, not elsewhere classified, left hand|Synovial hypertrophy, not elsewhere classified, left hand +C2896037|T046|PT|M67.242|ICD10CM|Synovial hypertrophy, not elsewhere classified, left hand|Synovial hypertrophy, not elsewhere classified, left hand +C0839199|T046|AB|M67.249|ICD10CM|Synovial hypertrophy, not elsewhere classified, unsp hand|Synovial hypertrophy, not elsewhere classified, unsp hand +C0839199|T046|PT|M67.249|ICD10CM|Synovial hypertrophy, not elsewhere classified, unspecified hand|Synovial hypertrophy, not elsewhere classified, unspecified hand +C2896038|T047|AB|M67.25|ICD10CM|Synovial hypertrophy, not elsewhere classified, thigh|Synovial hypertrophy, not elsewhere classified, thigh +C2896038|T047|HT|M67.25|ICD10CM|Synovial hypertrophy, not elsewhere classified, thigh|Synovial hypertrophy, not elsewhere classified, thigh +C2896039|T047|AB|M67.251|ICD10CM|Synovial hypertrophy, not elsewhere classified, right thigh|Synovial hypertrophy, not elsewhere classified, right thigh +C2896039|T047|PT|M67.251|ICD10CM|Synovial hypertrophy, not elsewhere classified, right thigh|Synovial hypertrophy, not elsewhere classified, right thigh +C2896040|T047|AB|M67.252|ICD10CM|Synovial hypertrophy, not elsewhere classified, left thigh|Synovial hypertrophy, not elsewhere classified, left thigh +C2896040|T047|PT|M67.252|ICD10CM|Synovial hypertrophy, not elsewhere classified, left thigh|Synovial hypertrophy, not elsewhere classified, left thigh +C2896041|T047|AB|M67.259|ICD10CM|Synovial hypertrophy, not elsewhere classified, unsp thigh|Synovial hypertrophy, not elsewhere classified, unsp thigh +C2896041|T047|PT|M67.259|ICD10CM|Synovial hypertrophy, not elsewhere classified, unspecified thigh|Synovial hypertrophy, not elsewhere classified, unspecified thigh +C0839201|T046|HT|M67.26|ICD10CM|Synovial hypertrophy, not elsewhere classified, lower leg|Synovial hypertrophy, not elsewhere classified, lower leg +C0839201|T046|AB|M67.26|ICD10CM|Synovial hypertrophy, not elsewhere classified, lower leg|Synovial hypertrophy, not elsewhere classified, lower leg +C2896042|T046|AB|M67.261|ICD10CM|Synovial hypertrophy, NEC, right lower leg|Synovial hypertrophy, NEC, right lower leg +C2896042|T046|PT|M67.261|ICD10CM|Synovial hypertrophy, not elsewhere classified, right lower leg|Synovial hypertrophy, not elsewhere classified, right lower leg +C2896043|T046|AB|M67.262|ICD10CM|Synovial hypertrophy, NEC, left lower leg|Synovial hypertrophy, NEC, left lower leg +C2896043|T046|PT|M67.262|ICD10CM|Synovial hypertrophy, not elsewhere classified, left lower leg|Synovial hypertrophy, not elsewhere classified, left lower leg +C0839201|T046|AB|M67.269|ICD10CM|Synovial hypertrophy, NEC, unsp lower leg|Synovial hypertrophy, NEC, unsp lower leg +C0839201|T046|PT|M67.269|ICD10CM|Synovial hypertrophy, not elsewhere classified, unspecified lower leg|Synovial hypertrophy, not elsewhere classified, unspecified lower leg +C0839202|T046|AB|M67.27|ICD10CM|Synovial hypertrophy, NEC, ankle and foot|Synovial hypertrophy, NEC, ankle and foot +C0839202|T046|HT|M67.27|ICD10CM|Synovial hypertrophy, not elsewhere classified, ankle and foot|Synovial hypertrophy, not elsewhere classified, ankle and foot +C2896044|T046|AB|M67.271|ICD10CM|Synovial hypertrophy, NEC, right ankle and foot|Synovial hypertrophy, NEC, right ankle and foot +C2896044|T046|PT|M67.271|ICD10CM|Synovial hypertrophy, not elsewhere classified, right ankle and foot|Synovial hypertrophy, not elsewhere classified, right ankle and foot +C2896045|T046|AB|M67.272|ICD10CM|Synovial hypertrophy, NEC, left ankle and foot|Synovial hypertrophy, NEC, left ankle and foot +C2896045|T046|PT|M67.272|ICD10CM|Synovial hypertrophy, not elsewhere classified, left ankle and foot|Synovial hypertrophy, not elsewhere classified, left ankle and foot +C2896046|T046|AB|M67.279|ICD10CM|Synovial hypertrophy, NEC, unsp ankle and foot|Synovial hypertrophy, NEC, unsp ankle and foot +C2896046|T046|PT|M67.279|ICD10CM|Synovial hypertrophy, not elsewhere classified, unspecified ankle and foot|Synovial hypertrophy, not elsewhere classified, unspecified ankle and foot +C0839203|T046|PT|M67.28|ICD10CM|Synovial hypertrophy, not elsewhere classified, other site|Synovial hypertrophy, not elsewhere classified, other site +C0839203|T046|AB|M67.28|ICD10CM|Synovial hypertrophy, not elsewhere classified, other site|Synovial hypertrophy, not elsewhere classified, other site +C0839195|T046|AB|M67.29|ICD10CM|Synovial hypertrophy, NEC, multiple sites|Synovial hypertrophy, NEC, multiple sites +C0839195|T046|PT|M67.29|ICD10CM|Synovial hypertrophy, not elsewhere classified, multiple sites|Synovial hypertrophy, not elsewhere classified, multiple sites +C0302886|T047|ET|M67.3|ICD10CM|Toxic synovitis|Toxic synovitis +C0343179|T047|HT|M67.3|ICD10CM|Transient synovitis|Transient synovitis +C0343179|T047|AB|M67.3|ICD10CM|Transient synovitis|Transient synovitis +C0343179|T047|PT|M67.3|ICD10|Transient synovitis|Transient synovitis +C0343179|T047|AB|M67.30|ICD10CM|Transient synovitis, unspecified site|Transient synovitis, unspecified site +C0343179|T047|PT|M67.30|ICD10CM|Transient synovitis, unspecified site|Transient synovitis, unspecified site +C2896049|T047|AB|M67.31|ICD10CM|Transient synovitis, shoulder|Transient synovitis, shoulder +C2896049|T047|HT|M67.31|ICD10CM|Transient synovitis, shoulder|Transient synovitis, shoulder +C2896047|T047|AB|M67.311|ICD10CM|Transient synovitis, right shoulder|Transient synovitis, right shoulder +C2896047|T047|PT|M67.311|ICD10CM|Transient synovitis, right shoulder|Transient synovitis, right shoulder +C2896048|T047|AB|M67.312|ICD10CM|Transient synovitis, left shoulder|Transient synovitis, left shoulder +C2896048|T047|PT|M67.312|ICD10CM|Transient synovitis, left shoulder|Transient synovitis, left shoulder +C2896049|T047|AB|M67.319|ICD10CM|Transient synovitis, unspecified shoulder|Transient synovitis, unspecified shoulder +C2896049|T047|PT|M67.319|ICD10CM|Transient synovitis, unspecified shoulder|Transient synovitis, unspecified shoulder +C2896052|T047|AB|M67.32|ICD10CM|Transient synovitis, elbow|Transient synovitis, elbow +C2896052|T047|HT|M67.32|ICD10CM|Transient synovitis, elbow|Transient synovitis, elbow +C2896050|T047|AB|M67.321|ICD10CM|Transient synovitis, right elbow|Transient synovitis, right elbow +C2896050|T047|PT|M67.321|ICD10CM|Transient synovitis, right elbow|Transient synovitis, right elbow +C2896051|T047|AB|M67.322|ICD10CM|Transient synovitis, left elbow|Transient synovitis, left elbow +C2896051|T047|PT|M67.322|ICD10CM|Transient synovitis, left elbow|Transient synovitis, left elbow +C2896052|T047|AB|M67.329|ICD10CM|Transient synovitis, unspecified elbow|Transient synovitis, unspecified elbow +C2896052|T047|PT|M67.329|ICD10CM|Transient synovitis, unspecified elbow|Transient synovitis, unspecified elbow +C2896053|T047|AB|M67.33|ICD10CM|Transient synovitis, wrist|Transient synovitis, wrist +C2896053|T047|HT|M67.33|ICD10CM|Transient synovitis, wrist|Transient synovitis, wrist +C2896054|T047|AB|M67.331|ICD10CM|Transient synovitis, right wrist|Transient synovitis, right wrist +C2896054|T047|PT|M67.331|ICD10CM|Transient synovitis, right wrist|Transient synovitis, right wrist +C2896055|T047|AB|M67.332|ICD10CM|Transient synovitis, left wrist|Transient synovitis, left wrist +C2896055|T047|PT|M67.332|ICD10CM|Transient synovitis, left wrist|Transient synovitis, left wrist +C2896056|T047|AB|M67.339|ICD10CM|Transient synovitis, unspecified wrist|Transient synovitis, unspecified wrist +C2896056|T047|PT|M67.339|ICD10CM|Transient synovitis, unspecified wrist|Transient synovitis, unspecified wrist +C0839209|T047|HT|M67.34|ICD10CM|Transient synovitis, hand|Transient synovitis, hand +C0839209|T047|AB|M67.34|ICD10CM|Transient synovitis, hand|Transient synovitis, hand +C2896057|T047|AB|M67.341|ICD10CM|Transient synovitis, right hand|Transient synovitis, right hand +C2896057|T047|PT|M67.341|ICD10CM|Transient synovitis, right hand|Transient synovitis, right hand +C2896058|T047|AB|M67.342|ICD10CM|Transient synovitis, left hand|Transient synovitis, left hand +C2896058|T047|PT|M67.342|ICD10CM|Transient synovitis, left hand|Transient synovitis, left hand +C0839209|T047|AB|M67.349|ICD10CM|Transient synovitis, unspecified hand|Transient synovitis, unspecified hand +C0839209|T047|PT|M67.349|ICD10CM|Transient synovitis, unspecified hand|Transient synovitis, unspecified hand +C0149908|T047|AB|M67.35|ICD10CM|Transient synovitis, hip|Transient synovitis, hip +C0149908|T047|HT|M67.35|ICD10CM|Transient synovitis, hip|Transient synovitis, hip +C2896059|T047|AB|M67.351|ICD10CM|Transient synovitis, right hip|Transient synovitis, right hip +C2896059|T047|PT|M67.351|ICD10CM|Transient synovitis, right hip|Transient synovitis, right hip +C2896060|T047|AB|M67.352|ICD10CM|Transient synovitis, left hip|Transient synovitis, left hip +C2896060|T047|PT|M67.352|ICD10CM|Transient synovitis, left hip|Transient synovitis, left hip +C2896061|T047|AB|M67.359|ICD10CM|Transient synovitis, unspecified hip|Transient synovitis, unspecified hip +C2896061|T047|PT|M67.359|ICD10CM|Transient synovitis, unspecified hip|Transient synovitis, unspecified hip +C2896062|T047|AB|M67.36|ICD10CM|Transient synovitis, knee|Transient synovitis, knee +C2896062|T047|HT|M67.36|ICD10CM|Transient synovitis, knee|Transient synovitis, knee +C2896063|T047|AB|M67.361|ICD10CM|Transient synovitis, right knee|Transient synovitis, right knee +C2896063|T047|PT|M67.361|ICD10CM|Transient synovitis, right knee|Transient synovitis, right knee +C2896064|T047|AB|M67.362|ICD10CM|Transient synovitis, left knee|Transient synovitis, left knee +C2896064|T047|PT|M67.362|ICD10CM|Transient synovitis, left knee|Transient synovitis, left knee +C2896065|T047|AB|M67.369|ICD10CM|Transient synovitis, unspecified knee|Transient synovitis, unspecified knee +C2896065|T047|PT|M67.369|ICD10CM|Transient synovitis, unspecified knee|Transient synovitis, unspecified knee +C0839212|T047|HT|M67.37|ICD10CM|Transient synovitis, ankle and foot|Transient synovitis, ankle and foot +C0839212|T047|AB|M67.37|ICD10CM|Transient synovitis, ankle and foot|Transient synovitis, ankle and foot +C2896066|T047|AB|M67.371|ICD10CM|Transient synovitis, right ankle and foot|Transient synovitis, right ankle and foot +C2896066|T047|PT|M67.371|ICD10CM|Transient synovitis, right ankle and foot|Transient synovitis, right ankle and foot +C2896067|T047|AB|M67.372|ICD10CM|Transient synovitis, left ankle and foot|Transient synovitis, left ankle and foot +C2896067|T047|PT|M67.372|ICD10CM|Transient synovitis, left ankle and foot|Transient synovitis, left ankle and foot +C2896068|T047|AB|M67.379|ICD10CM|Transient synovitis, unspecified ankle and foot|Transient synovitis, unspecified ankle and foot +C2896068|T047|PT|M67.379|ICD10CM|Transient synovitis, unspecified ankle and foot|Transient synovitis, unspecified ankle and foot +C0839213|T047|PT|M67.38|ICD10CM|Transient synovitis, other site|Transient synovitis, other site +C0839213|T047|AB|M67.38|ICD10CM|Transient synovitis, other site|Transient synovitis, other site +C0839205|T047|PT|M67.39|ICD10CM|Transient synovitis, multiple sites|Transient synovitis, multiple sites +C0839205|T047|AB|M67.39|ICD10CM|Transient synovitis, multiple sites|Transient synovitis, multiple sites +C1258666|T047|PT|M67.4|ICD10|Ganglion|Ganglion +C1258666|T047|HT|M67.4|ICD10CM|Ganglion|Ganglion +C1258666|T047|AB|M67.4|ICD10CM|Ganglion|Ganglion +C2896069|T020|ET|M67.4|ICD10CM|Ganglion of joint or tendon (sheath)|Ganglion of joint or tendon (sheath) +C0839223|T020|AB|M67.40|ICD10CM|Ganglion, unspecified site|Ganglion, unspecified site +C0839223|T020|PT|M67.40|ICD10CM|Ganglion, unspecified site|Ganglion, unspecified site +C2896072|T047|AB|M67.41|ICD10CM|Ganglion, shoulder|Ganglion, shoulder +C2896072|T047|HT|M67.41|ICD10CM|Ganglion, shoulder|Ganglion, shoulder +C2896070|T047|AB|M67.411|ICD10CM|Ganglion, right shoulder|Ganglion, right shoulder +C2896070|T047|PT|M67.411|ICD10CM|Ganglion, right shoulder|Ganglion, right shoulder +C2896071|T047|AB|M67.412|ICD10CM|Ganglion, left shoulder|Ganglion, left shoulder +C2896071|T047|PT|M67.412|ICD10CM|Ganglion, left shoulder|Ganglion, left shoulder +C2896072|T047|AB|M67.419|ICD10CM|Ganglion, unspecified shoulder|Ganglion, unspecified shoulder +C2896072|T047|PT|M67.419|ICD10CM|Ganglion, unspecified shoulder|Ganglion, unspecified shoulder +C2010385|T047|AB|M67.42|ICD10CM|Ganglion, elbow|Ganglion, elbow +C2010385|T047|HT|M67.42|ICD10CM|Ganglion, elbow|Ganglion, elbow +C2010403|T047|AB|M67.421|ICD10CM|Ganglion, right elbow|Ganglion, right elbow +C2010403|T047|PT|M67.421|ICD10CM|Ganglion, right elbow|Ganglion, right elbow +C2010387|T047|AB|M67.422|ICD10CM|Ganglion, left elbow|Ganglion, left elbow +C2010387|T047|PT|M67.422|ICD10CM|Ganglion, left elbow|Ganglion, left elbow +C2010385|T047|AB|M67.429|ICD10CM|Ganglion, unspecified elbow|Ganglion, unspecified elbow +C2010385|T047|PT|M67.429|ICD10CM|Ganglion, unspecified elbow|Ganglion, unspecified elbow +C0343231|T047|AB|M67.43|ICD10CM|Ganglion, wrist|Ganglion, wrist +C0343231|T047|HT|M67.43|ICD10CM|Ganglion, wrist|Ganglion, wrist +C2010417|T020|AB|M67.431|ICD10CM|Ganglion, right wrist|Ganglion, right wrist +C2010417|T020|PT|M67.431|ICD10CM|Ganglion, right wrist|Ganglion, right wrist +C2010401|T020|AB|M67.432|ICD10CM|Ganglion, left wrist|Ganglion, left wrist +C2010401|T020|PT|M67.432|ICD10CM|Ganglion, left wrist|Ganglion, left wrist +C0343231|T047|AB|M67.439|ICD10CM|Ganglion, unspecified wrist|Ganglion, unspecified wrist +C0343231|T047|PT|M67.439|ICD10CM|Ganglion, unspecified wrist|Ganglion, unspecified wrist +C0574042|T047|HT|M67.44|ICD10CM|Ganglion, hand|Ganglion, hand +C0574042|T047|AB|M67.44|ICD10CM|Ganglion, hand|Ganglion, hand +C2010410|T020|AB|M67.441|ICD10CM|Ganglion, right hand|Ganglion, right hand +C2010410|T020|PT|M67.441|ICD10CM|Ganglion, right hand|Ganglion, right hand +C2010394|T020|AB|M67.442|ICD10CM|Ganglion, left hand|Ganglion, left hand +C2010394|T020|PT|M67.442|ICD10CM|Ganglion, left hand|Ganglion, left hand +C0574042|T047|AB|M67.449|ICD10CM|Ganglion, unspecified hand|Ganglion, unspecified hand +C0574042|T047|PT|M67.449|ICD10CM|Ganglion, unspecified hand|Ganglion, unspecified hand +C2896075|T047|AB|M67.45|ICD10CM|Ganglion, hip|Ganglion, hip +C2896075|T047|HT|M67.45|ICD10CM|Ganglion, hip|Ganglion, hip +C2896073|T020|AB|M67.451|ICD10CM|Ganglion, right hip|Ganglion, right hip +C2896073|T020|PT|M67.451|ICD10CM|Ganglion, right hip|Ganglion, right hip +C2896074|T020|AB|M67.452|ICD10CM|Ganglion, left hip|Ganglion, left hip +C2896074|T020|PT|M67.452|ICD10CM|Ganglion, left hip|Ganglion, left hip +C2896075|T047|AB|M67.459|ICD10CM|Ganglion, unspecified hip|Ganglion, unspecified hip +C2896075|T047|PT|M67.459|ICD10CM|Ganglion, unspecified hip|Ganglion, unspecified hip +C0343230|T047|AB|M67.46|ICD10CM|Ganglion, knee|Ganglion, knee +C0343230|T047|HT|M67.46|ICD10CM|Ganglion, knee|Ganglion, knee +C2010412|T047|AB|M67.461|ICD10CM|Ganglion, right knee|Ganglion, right knee +C2010412|T047|PT|M67.461|ICD10CM|Ganglion, right knee|Ganglion, right knee +C2010396|T047|AB|M67.462|ICD10CM|Ganglion, left knee|Ganglion, left knee +C2010396|T047|PT|M67.462|ICD10CM|Ganglion, left knee|Ganglion, left knee +C0343230|T047|AB|M67.469|ICD10CM|Ganglion, unspecified knee|Ganglion, unspecified knee +C0343230|T047|PT|M67.469|ICD10CM|Ganglion, unspecified knee|Ganglion, unspecified knee +C0839221|T020|HT|M67.47|ICD10CM|Ganglion, ankle and foot|Ganglion, ankle and foot +C0839221|T020|AB|M67.47|ICD10CM|Ganglion, ankle and foot|Ganglion, ankle and foot +C2896076|T020|AB|M67.471|ICD10CM|Ganglion, right ankle and foot|Ganglion, right ankle and foot +C2896076|T020|PT|M67.471|ICD10CM|Ganglion, right ankle and foot|Ganglion, right ankle and foot +C2896077|T020|AB|M67.472|ICD10CM|Ganglion, left ankle and foot|Ganglion, left ankle and foot +C2896077|T020|PT|M67.472|ICD10CM|Ganglion, left ankle and foot|Ganglion, left ankle and foot +C0839221|T020|AB|M67.479|ICD10CM|Ganglion, unspecified ankle and foot|Ganglion, unspecified ankle and foot +C0839221|T020|PT|M67.479|ICD10CM|Ganglion, unspecified ankle and foot|Ganglion, unspecified ankle and foot +C0839222|T020|PT|M67.48|ICD10CM|Ganglion, other site|Ganglion, other site +C0839222|T020|AB|M67.48|ICD10CM|Ganglion, other site|Ganglion, other site +C0839215|T020|PT|M67.49|ICD10CM|Ganglion, multiple sites|Ganglion, multiple sites +C0839215|T020|AB|M67.49|ICD10CM|Ganglion, multiple sites|Ganglion, multiple sites +C0878782|T047|ET|M67.5|ICD10CM|Plica knee|Plica knee +C0878705|T047|HT|M67.5|ICD10CM|Plica syndrome|Plica syndrome +C0878705|T047|AB|M67.5|ICD10CM|Plica syndrome|Plica syndrome +C2896078|T047|AB|M67.50|ICD10CM|Plica syndrome, unspecified knee|Plica syndrome, unspecified knee +C2896078|T047|PT|M67.50|ICD10CM|Plica syndrome, unspecified knee|Plica syndrome, unspecified knee +C2896079|T047|AB|M67.51|ICD10CM|Plica syndrome, right knee|Plica syndrome, right knee +C2896079|T047|PT|M67.51|ICD10CM|Plica syndrome, right knee|Plica syndrome, right knee +C2896080|T047|AB|M67.52|ICD10CM|Plica syndrome, left knee|Plica syndrome, left knee +C2896080|T047|PT|M67.52|ICD10CM|Plica syndrome, left knee|Plica syndrome, left knee +C0477649|T047|HT|M67.8|ICD10CM|Other specified disorders of synovium and tendon|Other specified disorders of synovium and tendon +C0477649|T047|AB|M67.8|ICD10CM|Other specified disorders of synovium and tendon|Other specified disorders of synovium and tendon +C0477649|T047|PT|M67.8|ICD10|Other specified disorders of synovium and tendon|Other specified disorders of synovium and tendon +C0477649|T047|AB|M67.80|ICD10CM|Oth disrd of synovium and tendon, unspecified site|Oth disrd of synovium and tendon, unspecified site +C0477649|T047|PT|M67.80|ICD10CM|Other specified disorders of synovium and tendon, unspecified site|Other specified disorders of synovium and tendon, unspecified site +C2896081|T047|AB|M67.81|ICD10CM|Other specified disorders of synovium and tendon, shoulder|Other specified disorders of synovium and tendon, shoulder +C2896081|T047|HT|M67.81|ICD10CM|Other specified disorders of synovium and tendon, shoulder|Other specified disorders of synovium and tendon, shoulder +C2896082|T047|AB|M67.811|ICD10CM|Other specified disorders of synovium, right shoulder|Other specified disorders of synovium, right shoulder +C2896082|T047|PT|M67.811|ICD10CM|Other specified disorders of synovium, right shoulder|Other specified disorders of synovium, right shoulder +C2896083|T047|AB|M67.812|ICD10CM|Other specified disorders of synovium, left shoulder|Other specified disorders of synovium, left shoulder +C2896083|T047|PT|M67.812|ICD10CM|Other specified disorders of synovium, left shoulder|Other specified disorders of synovium, left shoulder +C2896084|T047|AB|M67.813|ICD10CM|Other specified disorders of tendon, right shoulder|Other specified disorders of tendon, right shoulder +C2896084|T047|PT|M67.813|ICD10CM|Other specified disorders of tendon, right shoulder|Other specified disorders of tendon, right shoulder +C2896085|T047|AB|M67.814|ICD10CM|Other specified disorders of tendon, left shoulder|Other specified disorders of tendon, left shoulder +C2896085|T047|PT|M67.814|ICD10CM|Other specified disorders of tendon, left shoulder|Other specified disorders of tendon, left shoulder +C2896086|T047|AB|M67.819|ICD10CM|Oth disrd of synovium and tendon, unspecified shoulder|Oth disrd of synovium and tendon, unspecified shoulder +C2896086|T047|PT|M67.819|ICD10CM|Other specified disorders of synovium and tendon, unspecified shoulder|Other specified disorders of synovium and tendon, unspecified shoulder +C2896091|T047|AB|M67.82|ICD10CM|Other specified disorders of synovium and tendon, elbow|Other specified disorders of synovium and tendon, elbow +C2896091|T047|HT|M67.82|ICD10CM|Other specified disorders of synovium and tendon, elbow|Other specified disorders of synovium and tendon, elbow +C2896087|T047|AB|M67.821|ICD10CM|Other specified disorders of synovium, right elbow|Other specified disorders of synovium, right elbow +C2896087|T047|PT|M67.821|ICD10CM|Other specified disorders of synovium, right elbow|Other specified disorders of synovium, right elbow +C2896088|T047|AB|M67.822|ICD10CM|Other specified disorders of synovium, left elbow|Other specified disorders of synovium, left elbow +C2896088|T047|PT|M67.822|ICD10CM|Other specified disorders of synovium, left elbow|Other specified disorders of synovium, left elbow +C2896089|T047|AB|M67.823|ICD10CM|Other specified disorders of tendon, right elbow|Other specified disorders of tendon, right elbow +C2896089|T047|PT|M67.823|ICD10CM|Other specified disorders of tendon, right elbow|Other specified disorders of tendon, right elbow +C2896090|T047|AB|M67.824|ICD10CM|Other specified disorders of tendon, left elbow|Other specified disorders of tendon, left elbow +C2896090|T047|PT|M67.824|ICD10CM|Other specified disorders of tendon, left elbow|Other specified disorders of tendon, left elbow +C2896091|T047|AB|M67.829|ICD10CM|Oth disrd of synovium and tendon, unspecified elbow|Oth disrd of synovium and tendon, unspecified elbow +C2896091|T047|PT|M67.829|ICD10CM|Other specified disorders of synovium and tendon, unspecified elbow|Other specified disorders of synovium and tendon, unspecified elbow +C2896092|T047|AB|M67.83|ICD10CM|Other specified disorders of synovium and tendon, wrist|Other specified disorders of synovium and tendon, wrist +C2896092|T047|HT|M67.83|ICD10CM|Other specified disorders of synovium and tendon, wrist|Other specified disorders of synovium and tendon, wrist +C2896093|T047|AB|M67.831|ICD10CM|Other specified disorders of synovium, right wrist|Other specified disorders of synovium, right wrist +C2896093|T047|PT|M67.831|ICD10CM|Other specified disorders of synovium, right wrist|Other specified disorders of synovium, right wrist +C2896094|T047|AB|M67.832|ICD10CM|Other specified disorders of synovium, left wrist|Other specified disorders of synovium, left wrist +C2896094|T047|PT|M67.832|ICD10CM|Other specified disorders of synovium, left wrist|Other specified disorders of synovium, left wrist +C2896095|T047|AB|M67.833|ICD10CM|Other specified disorders of tendon, right wrist|Other specified disorders of tendon, right wrist +C2896095|T047|PT|M67.833|ICD10CM|Other specified disorders of tendon, right wrist|Other specified disorders of tendon, right wrist +C2896096|T047|AB|M67.834|ICD10CM|Other specified disorders of tendon, left wrist|Other specified disorders of tendon, left wrist +C2896096|T047|PT|M67.834|ICD10CM|Other specified disorders of tendon, left wrist|Other specified disorders of tendon, left wrist +C5140862|T047|AB|M67.839|ICD10CM|Oth disrd of synovium and tendon, unspecified wrist|Oth disrd of synovium and tendon, unspecified wrist +C5140862|T047|PT|M67.839|ICD10CM|Other specified disorders of synovium and tendon, unspecified wrist|Other specified disorders of synovium and tendon, unspecified wrist +C2896102|T047|AB|M67.84|ICD10CM|Other specified disorders of synovium and tendon, hand|Other specified disorders of synovium and tendon, hand +C2896102|T047|HT|M67.84|ICD10CM|Other specified disorders of synovium and tendon, hand|Other specified disorders of synovium and tendon, hand +C2896098|T047|AB|M67.841|ICD10CM|Other specified disorders of synovium, right hand|Other specified disorders of synovium, right hand +C2896098|T047|PT|M67.841|ICD10CM|Other specified disorders of synovium, right hand|Other specified disorders of synovium, right hand +C2896099|T047|AB|M67.842|ICD10CM|Other specified disorders of synovium, left hand|Other specified disorders of synovium, left hand +C2896099|T047|PT|M67.842|ICD10CM|Other specified disorders of synovium, left hand|Other specified disorders of synovium, left hand +C2896100|T047|AB|M67.843|ICD10CM|Other specified disorders of tendon, right hand|Other specified disorders of tendon, right hand +C2896100|T047|PT|M67.843|ICD10CM|Other specified disorders of tendon, right hand|Other specified disorders of tendon, right hand +C2896101|T047|AB|M67.844|ICD10CM|Other specified disorders of tendon, left hand|Other specified disorders of tendon, left hand +C2896101|T047|PT|M67.844|ICD10CM|Other specified disorders of tendon, left hand|Other specified disorders of tendon, left hand +C2896102|T047|AB|M67.849|ICD10CM|Oth disrd of synovium and tendon, unspecified hand|Oth disrd of synovium and tendon, unspecified hand +C2896102|T047|PT|M67.849|ICD10CM|Other specified disorders of synovium and tendon, unspecified hand|Other specified disorders of synovium and tendon, unspecified hand +C2896107|T047|AB|M67.85|ICD10CM|Other specified disorders of synovium and tendon, hip|Other specified disorders of synovium and tendon, hip +C2896107|T047|HT|M67.85|ICD10CM|Other specified disorders of synovium and tendon, hip|Other specified disorders of synovium and tendon, hip +C2896103|T047|AB|M67.851|ICD10CM|Other specified disorders of synovium, right hip|Other specified disorders of synovium, right hip +C2896103|T047|PT|M67.851|ICD10CM|Other specified disorders of synovium, right hip|Other specified disorders of synovium, right hip +C2896104|T047|AB|M67.852|ICD10CM|Other specified disorders of synovium, left hip|Other specified disorders of synovium, left hip +C2896104|T047|PT|M67.852|ICD10CM|Other specified disorders of synovium, left hip|Other specified disorders of synovium, left hip +C2896105|T047|AB|M67.853|ICD10CM|Other specified disorders of tendon, right hip|Other specified disorders of tendon, right hip +C2896105|T047|PT|M67.853|ICD10CM|Other specified disorders of tendon, right hip|Other specified disorders of tendon, right hip +C2896106|T047|AB|M67.854|ICD10CM|Other specified disorders of tendon, left hip|Other specified disorders of tendon, left hip +C2896106|T047|PT|M67.854|ICD10CM|Other specified disorders of tendon, left hip|Other specified disorders of tendon, left hip +C2896107|T047|AB|M67.859|ICD10CM|Oth disrd of synovium and tendon, unspecified hip|Oth disrd of synovium and tendon, unspecified hip +C2896107|T047|PT|M67.859|ICD10CM|Other specified disorders of synovium and tendon, unspecified hip|Other specified disorders of synovium and tendon, unspecified hip +C2896112|T047|AB|M67.86|ICD10CM|Other specified disorders of synovium and tendon, knee|Other specified disorders of synovium and tendon, knee +C2896112|T047|HT|M67.86|ICD10CM|Other specified disorders of synovium and tendon, knee|Other specified disorders of synovium and tendon, knee +C2896108|T047|AB|M67.861|ICD10CM|Other specified disorders of synovium, right knee|Other specified disorders of synovium, right knee +C2896108|T047|PT|M67.861|ICD10CM|Other specified disorders of synovium, right knee|Other specified disorders of synovium, right knee +C2896109|T047|AB|M67.862|ICD10CM|Other specified disorders of synovium, left knee|Other specified disorders of synovium, left knee +C2896109|T047|PT|M67.862|ICD10CM|Other specified disorders of synovium, left knee|Other specified disorders of synovium, left knee +C2896110|T047|AB|M67.863|ICD10CM|Other specified disorders of tendon, right knee|Other specified disorders of tendon, right knee +C2896110|T047|PT|M67.863|ICD10CM|Other specified disorders of tendon, right knee|Other specified disorders of tendon, right knee +C2896111|T047|AB|M67.864|ICD10CM|Other specified disorders of tendon, left knee|Other specified disorders of tendon, left knee +C2896111|T047|PT|M67.864|ICD10CM|Other specified disorders of tendon, left knee|Other specified disorders of tendon, left knee +C2896112|T047|AB|M67.869|ICD10CM|Oth disrd of synovium and tendon, unspecified knee|Oth disrd of synovium and tendon, unspecified knee +C2896112|T047|PT|M67.869|ICD10CM|Other specified disorders of synovium and tendon, unspecified knee|Other specified disorders of synovium and tendon, unspecified knee +C2896113|T047|AB|M67.87|ICD10CM|Oth disrd of synovium and tendon, ankle and foot|Oth disrd of synovium and tendon, ankle and foot +C2896113|T047|HT|M67.87|ICD10CM|Other specified disorders of synovium and tendon, ankle and foot|Other specified disorders of synovium and tendon, ankle and foot +C2896114|T047|AB|M67.871|ICD10CM|Other specified disorders of synovium, right ankle and foot|Other specified disorders of synovium, right ankle and foot +C2896114|T047|PT|M67.871|ICD10CM|Other specified disorders of synovium, right ankle and foot|Other specified disorders of synovium, right ankle and foot +C2896115|T047|AB|M67.872|ICD10CM|Other specified disorders of synovium, left ankle and foot|Other specified disorders of synovium, left ankle and foot +C2896115|T047|PT|M67.872|ICD10CM|Other specified disorders of synovium, left ankle and foot|Other specified disorders of synovium, left ankle and foot +C2896116|T047|AB|M67.873|ICD10CM|Other specified disorders of tendon, right ankle and foot|Other specified disorders of tendon, right ankle and foot +C2896116|T047|PT|M67.873|ICD10CM|Other specified disorders of tendon, right ankle and foot|Other specified disorders of tendon, right ankle and foot +C2896117|T047|AB|M67.874|ICD10CM|Other specified disorders of tendon, left ankle and foot|Other specified disorders of tendon, left ankle and foot +C2896117|T047|PT|M67.874|ICD10CM|Other specified disorders of tendon, left ankle and foot|Other specified disorders of tendon, left ankle and foot +C2896118|T047|AB|M67.879|ICD10CM|Oth disrd of synovium and tendon, unspecified ankle and foot|Oth disrd of synovium and tendon, unspecified ankle and foot +C2896118|T047|PT|M67.879|ICD10CM|Other specified disorders of synovium and tendon, unspecified ankle and foot|Other specified disorders of synovium and tendon, unspecified ankle and foot +C2896119|T047|AB|M67.88|ICD10CM|Other specified disorders of synovium and tendon, other site|Other specified disorders of synovium and tendon, other site +C2896119|T047|PT|M67.88|ICD10CM|Other specified disorders of synovium and tendon, other site|Other specified disorders of synovium and tendon, other site +C2896120|T047|AB|M67.89|ICD10CM|Oth disrd of synovium and tendon, multiple sites|Oth disrd of synovium and tendon, multiple sites +C2896120|T047|PT|M67.89|ICD10CM|Other specified disorders of synovium and tendon, multiple sites|Other specified disorders of synovium and tendon, multiple sites +C0477645|T047|PT|M67.9|ICD10|Disorder of synovium and tendon, unspecified|Disorder of synovium and tendon, unspecified +C0477645|T047|AB|M67.9|ICD10CM|Unspecified disorder of synovium and tendon|Unspecified disorder of synovium and tendon +C0477645|T047|HT|M67.9|ICD10CM|Unspecified disorder of synovium and tendon|Unspecified disorder of synovium and tendon +C0839243|T047|AB|M67.90|ICD10CM|Unsp disorder of synovium and tendon, unspecified site|Unsp disorder of synovium and tendon, unspecified site +C0839243|T047|PT|M67.90|ICD10CM|Unspecified disorder of synovium and tendon, unspecified site|Unspecified disorder of synovium and tendon, unspecified site +C2896121|T047|AB|M67.91|ICD10CM|Unspecified disorder of synovium and tendon, shoulder|Unspecified disorder of synovium and tendon, shoulder +C2896121|T047|HT|M67.91|ICD10CM|Unspecified disorder of synovium and tendon, shoulder|Unspecified disorder of synovium and tendon, shoulder +C2896122|T047|AB|M67.911|ICD10CM|Unspecified disorder of synovium and tendon, right shoulder|Unspecified disorder of synovium and tendon, right shoulder +C2896122|T047|PT|M67.911|ICD10CM|Unspecified disorder of synovium and tendon, right shoulder|Unspecified disorder of synovium and tendon, right shoulder +C2896123|T047|AB|M67.912|ICD10CM|Unspecified disorder of synovium and tendon, left shoulder|Unspecified disorder of synovium and tendon, left shoulder +C2896123|T047|PT|M67.912|ICD10CM|Unspecified disorder of synovium and tendon, left shoulder|Unspecified disorder of synovium and tendon, left shoulder +C2896124|T047|AB|M67.919|ICD10CM|Unsp disorder of synovium and tendon, unspecified shoulder|Unsp disorder of synovium and tendon, unspecified shoulder +C2896124|T047|PT|M67.919|ICD10CM|Unspecified disorder of synovium and tendon, unspecified shoulder|Unspecified disorder of synovium and tendon, unspecified shoulder +C0839236|T047|HT|M67.92|ICD10CM|Unspecified disorder of synovium and tendon, upper arm|Unspecified disorder of synovium and tendon, upper arm +C0839236|T047|AB|M67.92|ICD10CM|Unspecified disorder of synovium and tendon, upper arm|Unspecified disorder of synovium and tendon, upper arm +C2896125|T047|AB|M67.921|ICD10CM|Unspecified disorder of synovium and tendon, right upper arm|Unspecified disorder of synovium and tendon, right upper arm +C2896125|T047|PT|M67.921|ICD10CM|Unspecified disorder of synovium and tendon, right upper arm|Unspecified disorder of synovium and tendon, right upper arm +C2896126|T047|AB|M67.922|ICD10CM|Unspecified disorder of synovium and tendon, left upper arm|Unspecified disorder of synovium and tendon, left upper arm +C2896126|T047|PT|M67.922|ICD10CM|Unspecified disorder of synovium and tendon, left upper arm|Unspecified disorder of synovium and tendon, left upper arm +C2896127|T047|AB|M67.929|ICD10CM|Unsp disorder of synovium and tendon, unspecified upper arm|Unsp disorder of synovium and tendon, unspecified upper arm +C2896127|T047|PT|M67.929|ICD10CM|Unspecified disorder of synovium and tendon, unspecified upper arm|Unspecified disorder of synovium and tendon, unspecified upper arm +C0839237|T047|HT|M67.93|ICD10CM|Unspecified disorder of synovium and tendon, forearm|Unspecified disorder of synovium and tendon, forearm +C0839237|T047|AB|M67.93|ICD10CM|Unspecified disorder of synovium and tendon, forearm|Unspecified disorder of synovium and tendon, forearm +C2896128|T047|AB|M67.931|ICD10CM|Unspecified disorder of synovium and tendon, right forearm|Unspecified disorder of synovium and tendon, right forearm +C2896128|T047|PT|M67.931|ICD10CM|Unspecified disorder of synovium and tendon, right forearm|Unspecified disorder of synovium and tendon, right forearm +C2896129|T047|AB|M67.932|ICD10CM|Unspecified disorder of synovium and tendon, left forearm|Unspecified disorder of synovium and tendon, left forearm +C2896129|T047|PT|M67.932|ICD10CM|Unspecified disorder of synovium and tendon, left forearm|Unspecified disorder of synovium and tendon, left forearm +C2896130|T047|AB|M67.939|ICD10CM|Unsp disorder of synovium and tendon, unspecified forearm|Unsp disorder of synovium and tendon, unspecified forearm +C2896130|T047|PT|M67.939|ICD10CM|Unspecified disorder of synovium and tendon, unspecified forearm|Unspecified disorder of synovium and tendon, unspecified forearm +C0839238|T047|HT|M67.94|ICD10CM|Unspecified disorder of synovium and tendon, hand|Unspecified disorder of synovium and tendon, hand +C0839238|T047|AB|M67.94|ICD10CM|Unspecified disorder of synovium and tendon, hand|Unspecified disorder of synovium and tendon, hand +C2896131|T047|AB|M67.941|ICD10CM|Unspecified disorder of synovium and tendon, right hand|Unspecified disorder of synovium and tendon, right hand +C2896131|T047|PT|M67.941|ICD10CM|Unspecified disorder of synovium and tendon, right hand|Unspecified disorder of synovium and tendon, right hand +C2896132|T047|AB|M67.942|ICD10CM|Unspecified disorder of synovium and tendon, left hand|Unspecified disorder of synovium and tendon, left hand +C2896132|T047|PT|M67.942|ICD10CM|Unspecified disorder of synovium and tendon, left hand|Unspecified disorder of synovium and tendon, left hand +C2896133|T047|AB|M67.949|ICD10CM|Unsp disorder of synovium and tendon, unspecified hand|Unsp disorder of synovium and tendon, unspecified hand +C2896133|T047|PT|M67.949|ICD10CM|Unspecified disorder of synovium and tendon, unspecified hand|Unspecified disorder of synovium and tendon, unspecified hand +C2896134|T047|AB|M67.95|ICD10CM|Unspecified disorder of synovium and tendon, thigh|Unspecified disorder of synovium and tendon, thigh +C2896134|T047|HT|M67.95|ICD10CM|Unspecified disorder of synovium and tendon, thigh|Unspecified disorder of synovium and tendon, thigh +C2896135|T047|AB|M67.951|ICD10CM|Unspecified disorder of synovium and tendon, right thigh|Unspecified disorder of synovium and tendon, right thigh +C2896135|T047|PT|M67.951|ICD10CM|Unspecified disorder of synovium and tendon, right thigh|Unspecified disorder of synovium and tendon, right thigh +C2896136|T047|AB|M67.952|ICD10CM|Unspecified disorder of synovium and tendon, left thigh|Unspecified disorder of synovium and tendon, left thigh +C2896136|T047|PT|M67.952|ICD10CM|Unspecified disorder of synovium and tendon, left thigh|Unspecified disorder of synovium and tendon, left thigh +C2896137|T047|AB|M67.959|ICD10CM|Unsp disorder of synovium and tendon, unspecified thigh|Unsp disorder of synovium and tendon, unspecified thigh +C2896137|T047|PT|M67.959|ICD10CM|Unspecified disorder of synovium and tendon, unspecified thigh|Unspecified disorder of synovium and tendon, unspecified thigh +C0839240|T047|HT|M67.96|ICD10CM|Unspecified disorder of synovium and tendon, lower leg|Unspecified disorder of synovium and tendon, lower leg +C0839240|T047|AB|M67.96|ICD10CM|Unspecified disorder of synovium and tendon, lower leg|Unspecified disorder of synovium and tendon, lower leg +C2896138|T047|AB|M67.961|ICD10CM|Unspecified disorder of synovium and tendon, right lower leg|Unspecified disorder of synovium and tendon, right lower leg +C2896138|T047|PT|M67.961|ICD10CM|Unspecified disorder of synovium and tendon, right lower leg|Unspecified disorder of synovium and tendon, right lower leg +C2896139|T047|AB|M67.962|ICD10CM|Unspecified disorder of synovium and tendon, left lower leg|Unspecified disorder of synovium and tendon, left lower leg +C2896139|T047|PT|M67.962|ICD10CM|Unspecified disorder of synovium and tendon, left lower leg|Unspecified disorder of synovium and tendon, left lower leg +C2896140|T047|AB|M67.969|ICD10CM|Unsp disorder of synovium and tendon, unspecified lower leg|Unsp disorder of synovium and tendon, unspecified lower leg +C2896140|T047|PT|M67.969|ICD10CM|Unspecified disorder of synovium and tendon, unspecified lower leg|Unspecified disorder of synovium and tendon, unspecified lower leg +C0839241|T047|HT|M67.97|ICD10CM|Unspecified disorder of synovium and tendon, ankle and foot|Unspecified disorder of synovium and tendon, ankle and foot +C0839241|T047|AB|M67.97|ICD10CM|Unspecified disorder of synovium and tendon, ankle and foot|Unspecified disorder of synovium and tendon, ankle and foot +C2896141|T047|AB|M67.971|ICD10CM|Unsp disorder of synovium and tendon, right ankle and foot|Unsp disorder of synovium and tendon, right ankle and foot +C2896141|T047|PT|M67.971|ICD10CM|Unspecified disorder of synovium and tendon, right ankle and foot|Unspecified disorder of synovium and tendon, right ankle and foot +C2896142|T047|AB|M67.972|ICD10CM|Unsp disorder of synovium and tendon, left ankle and foot|Unsp disorder of synovium and tendon, left ankle and foot +C2896142|T047|PT|M67.972|ICD10CM|Unspecified disorder of synovium and tendon, left ankle and foot|Unspecified disorder of synovium and tendon, left ankle and foot +C2896143|T047|AB|M67.979|ICD10CM|Unsp disorder of synovium and tendon, unsp ankle and foot|Unsp disorder of synovium and tendon, unsp ankle and foot +C2896143|T047|PT|M67.979|ICD10CM|Unspecified disorder of synovium and tendon, unspecified ankle and foot|Unspecified disorder of synovium and tendon, unspecified ankle and foot +C0839242|T047|PT|M67.98|ICD10CM|Unspecified disorder of synovium and tendon, other site|Unspecified disorder of synovium and tendon, other site +C0839242|T047|AB|M67.98|ICD10CM|Unspecified disorder of synovium and tendon, other site|Unspecified disorder of synovium and tendon, other site +C0839234|T047|PT|M67.99|ICD10CM|Unspecified disorder of synovium and tendon, multiple sites|Unspecified disorder of synovium and tendon, multiple sites +C0839234|T047|AB|M67.99|ICD10CM|Unspecified disorder of synovium and tendon, multiple sites|Unspecified disorder of synovium and tendon, multiple sites +C0694521|T047|HT|M68|ICD10|Disorders of synovium and tendon in diseases classified elsewhere|Disorders of synovium and tendon in diseases classified elsewhere +C0477650|T047|PT|M68.0|ICD10|Synovitis and tenosynovitis in bacterial diseases classified elsewhere|Synovitis and tenosynovitis in bacterial diseases classified elsewhere +C0477651|T047|PT|M68.8|ICD10|Other disorders of synovium and tendon in diseases classified elsewhere|Other disorders of synovium and tendon in diseases classified elsewhere +C4290232|T047|ET|M70|ICD10CM|soft tissue disorders of occupational origin|soft tissue disorders of occupational origin +C0477669|T047|HT|M70|ICD10|Soft tissue disorders related to use, overuse and pressure|Soft tissue disorders related to use, overuse and pressure +C0477669|T047|AB|M70|ICD10CM|Soft tissue disorders related to use, overuse and pressure|Soft tissue disorders related to use, overuse and pressure +C0477669|T047|HT|M70|ICD10CM|Soft tissue disorders related to use, overuse and pressure|Soft tissue disorders related to use, overuse and pressure +C0158370|T047|HT|M70-M79|ICD10CM|Other soft tissue disorders (M70-M79)|Other soft tissue disorders (M70-M79) +C0158370|T047|HT|M70-M79.9|ICD10|Other soft tissue disorders|Other soft tissue disorders +C0452220|T047|PT|M70.0|ICD10|Chronic crepitant synovitis of hand and wrist|Chronic crepitant synovitis of hand and wrist +C2896145|T047|AB|M70.0|ICD10CM|Crepitant synovitis (acute) (chronic) of hand and wrist|Crepitant synovitis (acute) (chronic) of hand and wrist +C2896145|T047|HT|M70.0|ICD10CM|Crepitant synovitis (acute) (chronic) of hand and wrist|Crepitant synovitis (acute) (chronic) of hand and wrist +C2896146|T047|AB|M70.03|ICD10CM|Crepitant synovitis (acute) (chronic), wrist|Crepitant synovitis (acute) (chronic), wrist +C2896146|T047|HT|M70.03|ICD10CM|Crepitant synovitis (acute) (chronic), wrist|Crepitant synovitis (acute) (chronic), wrist +C2896147|T047|AB|M70.031|ICD10CM|Crepitant synovitis (acute) (chronic), right wrist|Crepitant synovitis (acute) (chronic), right wrist +C2896147|T047|PT|M70.031|ICD10CM|Crepitant synovitis (acute) (chronic), right wrist|Crepitant synovitis (acute) (chronic), right wrist +C2896148|T047|AB|M70.032|ICD10CM|Crepitant synovitis (acute) (chronic), left wrist|Crepitant synovitis (acute) (chronic), left wrist +C2896148|T047|PT|M70.032|ICD10CM|Crepitant synovitis (acute) (chronic), left wrist|Crepitant synovitis (acute) (chronic), left wrist +C2896149|T047|AB|M70.039|ICD10CM|Crepitant synovitis (acute) (chronic), unspecified wrist|Crepitant synovitis (acute) (chronic), unspecified wrist +C2896149|T047|PT|M70.039|ICD10CM|Crepitant synovitis (acute) (chronic), unspecified wrist|Crepitant synovitis (acute) (chronic), unspecified wrist +C2896150|T047|AB|M70.04|ICD10CM|Crepitant synovitis (acute) (chronic), hand|Crepitant synovitis (acute) (chronic), hand +C2896150|T047|HT|M70.04|ICD10CM|Crepitant synovitis (acute) (chronic), hand|Crepitant synovitis (acute) (chronic), hand +C2896151|T047|AB|M70.041|ICD10CM|Crepitant synovitis (acute) (chronic), right hand|Crepitant synovitis (acute) (chronic), right hand +C2896151|T047|PT|M70.041|ICD10CM|Crepitant synovitis (acute) (chronic), right hand|Crepitant synovitis (acute) (chronic), right hand +C2896152|T047|AB|M70.042|ICD10CM|Crepitant synovitis (acute) (chronic), left hand|Crepitant synovitis (acute) (chronic), left hand +C2896152|T047|PT|M70.042|ICD10CM|Crepitant synovitis (acute) (chronic), left hand|Crepitant synovitis (acute) (chronic), left hand +C2896153|T047|AB|M70.049|ICD10CM|Crepitant synovitis (acute) (chronic), unspecified hand|Crepitant synovitis (acute) (chronic), unspecified hand +C2896153|T047|PT|M70.049|ICD10CM|Crepitant synovitis (acute) (chronic), unspecified hand|Crepitant synovitis (acute) (chronic), unspecified hand +C0263920|T047|PT|M70.1|ICD10|Bursitis of hand|Bursitis of hand +C0263920|T047|HT|M70.1|ICD10CM|Bursitis of hand|Bursitis of hand +C0263920|T047|AB|M70.1|ICD10CM|Bursitis of hand|Bursitis of hand +C2896154|T047|AB|M70.10|ICD10CM|Bursitis, unspecified hand|Bursitis, unspecified hand +C2896154|T047|PT|M70.10|ICD10CM|Bursitis, unspecified hand|Bursitis, unspecified hand +C2896155|T047|AB|M70.11|ICD10CM|Bursitis, right hand|Bursitis, right hand +C2896155|T047|PT|M70.11|ICD10CM|Bursitis, right hand|Bursitis, right hand +C2896156|T047|AB|M70.12|ICD10CM|Bursitis, left hand|Bursitis, left hand +C2896156|T047|PT|M70.12|ICD10CM|Bursitis, left hand|Bursitis, left hand +C0263962|T047|HT|M70.2|ICD10CM|Olecranon bursitis|Olecranon bursitis +C0263962|T047|AB|M70.2|ICD10CM|Olecranon bursitis|Olecranon bursitis +C0263962|T047|PT|M70.2|ICD10|Olecranon bursitis|Olecranon bursitis +C2896157|T047|AB|M70.20|ICD10CM|Olecranon bursitis, unspecified elbow|Olecranon bursitis, unspecified elbow +C2896157|T047|PT|M70.20|ICD10CM|Olecranon bursitis, unspecified elbow|Olecranon bursitis, unspecified elbow +C2896158|T047|AB|M70.21|ICD10CM|Olecranon bursitis, right elbow|Olecranon bursitis, right elbow +C2896158|T047|PT|M70.21|ICD10CM|Olecranon bursitis, right elbow|Olecranon bursitis, right elbow +C2896159|T047|AB|M70.22|ICD10CM|Olecranon bursitis, left elbow|Olecranon bursitis, left elbow +C2896159|T047|PT|M70.22|ICD10CM|Olecranon bursitis, left elbow|Olecranon bursitis, left elbow +C0477653|T047|PT|M70.3|ICD10|Other bursitis of elbow|Other bursitis of elbow +C0477653|T047|HT|M70.3|ICD10CM|Other bursitis of elbow|Other bursitis of elbow +C0477653|T047|AB|M70.3|ICD10CM|Other bursitis of elbow|Other bursitis of elbow +C2896160|T047|AB|M70.30|ICD10CM|Other bursitis of elbow, unspecified elbow|Other bursitis of elbow, unspecified elbow +C2896160|T047|PT|M70.30|ICD10CM|Other bursitis of elbow, unspecified elbow|Other bursitis of elbow, unspecified elbow +C2896161|T047|AB|M70.31|ICD10CM|Other bursitis of elbow, right elbow|Other bursitis of elbow, right elbow +C2896161|T047|PT|M70.31|ICD10CM|Other bursitis of elbow, right elbow|Other bursitis of elbow, right elbow +C2896162|T047|AB|M70.32|ICD10CM|Other bursitis of elbow, left elbow|Other bursitis of elbow, left elbow +C2896162|T047|PT|M70.32|ICD10CM|Other bursitis of elbow, left elbow|Other bursitis of elbow, left elbow +C0851258|T047|PT|M70.4|ICD10|Prepatellar bursitis|Prepatellar bursitis +C0851258|T047|HT|M70.4|ICD10CM|Prepatellar bursitis|Prepatellar bursitis +C0851258|T047|AB|M70.4|ICD10CM|Prepatellar bursitis|Prepatellar bursitis +C0851258|T047|AB|M70.40|ICD10CM|Prepatellar bursitis, unspecified knee|Prepatellar bursitis, unspecified knee +C0851258|T047|PT|M70.40|ICD10CM|Prepatellar bursitis, unspecified knee|Prepatellar bursitis, unspecified knee +C2896163|T047|AB|M70.41|ICD10CM|Prepatellar bursitis, right knee|Prepatellar bursitis, right knee +C2896163|T047|PT|M70.41|ICD10CM|Prepatellar bursitis, right knee|Prepatellar bursitis, right knee +C2896164|T047|AB|M70.42|ICD10CM|Prepatellar bursitis, left knee|Prepatellar bursitis, left knee +C2896164|T047|PT|M70.42|ICD10CM|Prepatellar bursitis, left knee|Prepatellar bursitis, left knee +C0477654|T047|HT|M70.5|ICD10CM|Other bursitis of knee|Other bursitis of knee +C0477654|T047|AB|M70.5|ICD10CM|Other bursitis of knee|Other bursitis of knee +C0477654|T047|PT|M70.5|ICD10|Other bursitis of knee|Other bursitis of knee +C2896165|T047|AB|M70.50|ICD10CM|Other bursitis of knee, unspecified knee|Other bursitis of knee, unspecified knee +C2896165|T047|PT|M70.50|ICD10CM|Other bursitis of knee, unspecified knee|Other bursitis of knee, unspecified knee +C2896166|T047|AB|M70.51|ICD10CM|Other bursitis of knee, right knee|Other bursitis of knee, right knee +C2896166|T047|PT|M70.51|ICD10CM|Other bursitis of knee, right knee|Other bursitis of knee, right knee +C2896167|T047|AB|M70.52|ICD10CM|Other bursitis of knee, left knee|Other bursitis of knee, left knee +C2896167|T047|PT|M70.52|ICD10CM|Other bursitis of knee, left knee|Other bursitis of knee, left knee +C0151451|T047|PT|M70.6|ICD10|Trochanteric bursitis|Trochanteric bursitis +C0151451|T047|HT|M70.6|ICD10CM|Trochanteric bursitis|Trochanteric bursitis +C0151451|T047|AB|M70.6|ICD10CM|Trochanteric bursitis|Trochanteric bursitis +C0263927|T047|ET|M70.6|ICD10CM|Trochanteric tendinitis|Trochanteric tendinitis +C0151451|T047|AB|M70.60|ICD10CM|Trochanteric bursitis, unspecified hip|Trochanteric bursitis, unspecified hip +C0151451|T047|PT|M70.60|ICD10CM|Trochanteric bursitis, unspecified hip|Trochanteric bursitis, unspecified hip +C2896168|T047|AB|M70.61|ICD10CM|Trochanteric bursitis, right hip|Trochanteric bursitis, right hip +C2896168|T047|PT|M70.61|ICD10CM|Trochanteric bursitis, right hip|Trochanteric bursitis, right hip +C2896169|T047|AB|M70.62|ICD10CM|Trochanteric bursitis, left hip|Trochanteric bursitis, left hip +C2896169|T047|PT|M70.62|ICD10CM|Trochanteric bursitis, left hip|Trochanteric bursitis, left hip +C0410076|T047|ET|M70.7|ICD10CM|Ischial bursitis|Ischial bursitis +C0477655|T047|HT|M70.7|ICD10CM|Other bursitis of hip|Other bursitis of hip +C0477655|T047|AB|M70.7|ICD10CM|Other bursitis of hip|Other bursitis of hip +C0477655|T047|PT|M70.7|ICD10|Other bursitis of hip|Other bursitis of hip +C2896170|T047|AB|M70.70|ICD10CM|Other bursitis of hip, unspecified hip|Other bursitis of hip, unspecified hip +C2896170|T047|PT|M70.70|ICD10CM|Other bursitis of hip, unspecified hip|Other bursitis of hip, unspecified hip +C2896171|T047|AB|M70.71|ICD10CM|Other bursitis of hip, right hip|Other bursitis of hip, right hip +C2896171|T047|PT|M70.71|ICD10CM|Other bursitis of hip, right hip|Other bursitis of hip, right hip +C2896172|T047|AB|M70.72|ICD10CM|Other bursitis of hip, left hip|Other bursitis of hip, left hip +C2896172|T047|PT|M70.72|ICD10CM|Other bursitis of hip, left hip|Other bursitis of hip, left hip +C0477656|T020|AB|M70.8|ICD10CM|Oth soft tissue disorders related to use/pressure|Oth soft tissue disorders related to use/pressure +C0477656|T020|HT|M70.8|ICD10CM|Other soft tissue disorders related to use, overuse and pressure|Other soft tissue disorders related to use, overuse and pressure +C0477656|T020|PT|M70.8|ICD10|Other soft tissue disorders related to use, overuse and pressure|Other soft tissue disorders related to use, overuse and pressure +C2896173|T047|AB|M70.80|ICD10CM|Oth soft tissue disord related to use/pressure of unsp site|Oth soft tissue disord related to use/pressure of unsp site +C2896173|T047|PT|M70.80|ICD10CM|Other soft tissue disorders related to use, overuse and pressure of unspecified site|Other soft tissue disorders related to use, overuse and pressure of unspecified site +C2896176|T047|AB|M70.81|ICD10CM|Oth soft tissue disord related to use/pressure of shoulder|Oth soft tissue disord related to use/pressure of shoulder +C2896176|T047|HT|M70.81|ICD10CM|Other soft tissue disorders related to use, overuse and pressure of shoulder|Other soft tissue disorders related to use, overuse and pressure of shoulder +C2896174|T047|AB|M70.811|ICD10CM|Oth soft tissue disord related to use/pressure, r shoulder|Oth soft tissue disord related to use/pressure, r shoulder +C2896174|T047|PT|M70.811|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, right shoulder|Other soft tissue disorders related to use, overuse and pressure, right shoulder +C2896175|T047|AB|M70.812|ICD10CM|Oth soft tissue disord related to use/pressure, l shoulder|Oth soft tissue disord related to use/pressure, l shoulder +C2896175|T047|PT|M70.812|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, left shoulder|Other soft tissue disorders related to use, overuse and pressure, left shoulder +C2896176|T047|AB|M70.819|ICD10CM|Oth soft tissue disord related to use/pressure, unsp shldr|Oth soft tissue disord related to use/pressure, unsp shldr +C2896176|T047|PT|M70.819|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, unspecified shoulder|Other soft tissue disorders related to use, overuse and pressure, unspecified shoulder +C2896179|T047|AB|M70.82|ICD10CM|Oth soft tissue disord related to use/pressure of upper arm|Oth soft tissue disord related to use/pressure of upper arm +C2896179|T047|HT|M70.82|ICD10CM|Other soft tissue disorders related to use, overuse and pressure of upper arm|Other soft tissue disorders related to use, overuse and pressure of upper arm +C2896177|T047|AB|M70.821|ICD10CM|Oth soft tissue disorders related to use/pressure, r up arm|Oth soft tissue disorders related to use/pressure, r up arm +C2896177|T047|PT|M70.821|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, right upper arm|Other soft tissue disorders related to use, overuse and pressure, right upper arm +C2896178|T047|AB|M70.822|ICD10CM|Oth soft tissue disorders related to use/pressure, l up arm|Oth soft tissue disorders related to use/pressure, l up arm +C2896178|T047|PT|M70.822|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, left upper arm|Other soft tissue disorders related to use, overuse and pressure, left upper arm +C2896179|T047|AB|M70.829|ICD10CM|Oth soft tissue disord rel to use/pressure, unsp upper arms|Oth soft tissue disord rel to use/pressure, unsp upper arms +C2896179|T047|PT|M70.829|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, unspecified upper arms|Other soft tissue disorders related to use, overuse and pressure, unspecified upper arms +C2896182|T047|AB|M70.83|ICD10CM|Oth soft tissue disorders related to use/pressure of forearm|Oth soft tissue disorders related to use/pressure of forearm +C2896182|T047|HT|M70.83|ICD10CM|Other soft tissue disorders related to use, overuse and pressure of forearm|Other soft tissue disorders related to use, overuse and pressure of forearm +C2896180|T047|AB|M70.831|ICD10CM|Oth soft tissue disorders related to use/pressure, r forearm|Oth soft tissue disorders related to use/pressure, r forearm +C2896180|T047|PT|M70.831|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, right forearm|Other soft tissue disorders related to use, overuse and pressure, right forearm +C2896181|T047|AB|M70.832|ICD10CM|Oth soft tissue disorders related to use/pressure, l forearm|Oth soft tissue disorders related to use/pressure, l forearm +C2896181|T047|PT|M70.832|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, left forearm|Other soft tissue disorders related to use, overuse and pressure, left forearm +C2896182|T047|AB|M70.839|ICD10CM|Oth soft tissue disord related to use/pressure, unsp forearm|Oth soft tissue disord related to use/pressure, unsp forearm +C2896182|T047|PT|M70.839|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, unspecified forearm|Other soft tissue disorders related to use, overuse and pressure, unspecified forearm +C2896185|T047|AB|M70.84|ICD10CM|Oth soft tissue disorders related to use/pressure of hand|Oth soft tissue disorders related to use/pressure of hand +C2896185|T047|HT|M70.84|ICD10CM|Other soft tissue disorders related to use, overuse and pressure of hand|Other soft tissue disorders related to use, overuse and pressure of hand +C2896183|T047|AB|M70.841|ICD10CM|Oth soft tissue disorders related to use/pressure, r hand|Oth soft tissue disorders related to use/pressure, r hand +C2896183|T047|PT|M70.841|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, right hand|Other soft tissue disorders related to use, overuse and pressure, right hand +C2896184|T047|AB|M70.842|ICD10CM|Oth soft tissue disorders related to use/pressure, left hand|Oth soft tissue disorders related to use/pressure, left hand +C2896184|T047|PT|M70.842|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, left hand|Other soft tissue disorders related to use, overuse and pressure, left hand +C2896185|T047|AB|M70.849|ICD10CM|Oth soft tissue disorders related to use/pressure, unsp hand|Oth soft tissue disorders related to use/pressure, unsp hand +C2896185|T047|PT|M70.849|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, unspecified hand|Other soft tissue disorders related to use, overuse and pressure, unspecified hand +C2896188|T047|AB|M70.85|ICD10CM|Oth soft tissue disorders related to use/pressure of thigh|Oth soft tissue disorders related to use/pressure of thigh +C2896188|T047|HT|M70.85|ICD10CM|Other soft tissue disorders related to use, overuse and pressure of thigh|Other soft tissue disorders related to use, overuse and pressure of thigh +C2896186|T047|AB|M70.851|ICD10CM|Oth soft tissue disord related to use/pressure, right thigh|Oth soft tissue disord related to use/pressure, right thigh +C2896186|T047|PT|M70.851|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, right thigh|Other soft tissue disorders related to use, overuse and pressure, right thigh +C2896187|T047|AB|M70.852|ICD10CM|Oth soft tissue disord related to use/pressure, left thigh|Oth soft tissue disord related to use/pressure, left thigh +C2896187|T047|PT|M70.852|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, left thigh|Other soft tissue disorders related to use, overuse and pressure, left thigh +C2896188|T047|AB|M70.859|ICD10CM|Oth soft tissue disord related to use/pressure, unsp thigh|Oth soft tissue disord related to use/pressure, unsp thigh +C2896188|T047|PT|M70.859|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, unspecified thigh|Other soft tissue disorders related to use, overuse and pressure, unspecified thigh +C2896189|T047|AB|M70.86|ICD10CM|Oth soft tissue disorders related to use/pressure lower leg|Oth soft tissue disorders related to use/pressure lower leg +C2896189|T047|HT|M70.86|ICD10CM|Other soft tissue disorders related to use, overuse and pressure lower leg|Other soft tissue disorders related to use, overuse and pressure lower leg +C2896190|T047|AB|M70.861|ICD10CM|Oth soft tissue disorders related to use/pressure, r low leg|Oth soft tissue disorders related to use/pressure, r low leg +C2896190|T047|PT|M70.861|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, right lower leg|Other soft tissue disorders related to use, overuse and pressure, right lower leg +C2896191|T047|AB|M70.862|ICD10CM|Oth soft tissue disorders related to use/pressure, l low leg|Oth soft tissue disorders related to use/pressure, l low leg +C2896191|T047|PT|M70.862|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, left lower leg|Other soft tissue disorders related to use, overuse and pressure, left lower leg +C2896192|T047|AB|M70.869|ICD10CM|Oth soft tissue disorders related to use/pressure, unsp leg|Oth soft tissue disorders related to use/pressure, unsp leg +C2896192|T047|PT|M70.869|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, unspecified leg|Other soft tissue disorders related to use, overuse and pressure, unspecified leg +C2896195|T047|AB|M70.87|ICD10CM|Oth soft tissue disorders related to use/pressure of ank/ft|Oth soft tissue disorders related to use/pressure of ank/ft +C2896195|T047|HT|M70.87|ICD10CM|Other soft tissue disorders related to use, overuse and pressure of ankle and foot|Other soft tissue disorders related to use, overuse and pressure of ankle and foot +C2896193|T047|AB|M70.871|ICD10CM|Oth soft tissue disord related to use/pressure, right ank/ft|Oth soft tissue disord related to use/pressure, right ank/ft +C2896193|T047|PT|M70.871|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, right ankle and foot|Other soft tissue disorders related to use, overuse and pressure, right ankle and foot +C2896194|T047|AB|M70.872|ICD10CM|Oth soft tissue disord related to use/pressure, left ank/ft|Oth soft tissue disord related to use/pressure, left ank/ft +C2896194|T047|PT|M70.872|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, left ankle and foot|Other soft tissue disorders related to use, overuse and pressure, left ankle and foot +C2896195|T047|AB|M70.879|ICD10CM|Oth soft tissue disord related to use/pressure, unsp ank/ft|Oth soft tissue disord related to use/pressure, unsp ank/ft +C2896195|T047|PT|M70.879|ICD10CM|Other soft tissue disorders related to use, overuse and pressure, unspecified ankle and foot|Other soft tissue disorders related to use, overuse and pressure, unspecified ankle and foot +C2896196|T047|AB|M70.88|ICD10CM|Oth soft tissue disorders related to use/pressure oth site|Oth soft tissue disorders related to use/pressure oth site +C2896196|T047|PT|M70.88|ICD10CM|Other soft tissue disorders related to use, overuse and pressure other site|Other soft tissue disorders related to use, overuse and pressure other site +C2896197|T047|AB|M70.89|ICD10CM|Oth soft tissue disord related to use/pressure mult sites|Oth soft tissue disord related to use/pressure mult sites +C2896197|T047|PT|M70.89|ICD10CM|Other soft tissue disorders related to use, overuse and pressure multiple sites|Other soft tissue disorders related to use, overuse and pressure multiple sites +C0477669|T047|AB|M70.9|ICD10CM|Unsp soft tissue disorder related to use/pressure|Unsp soft tissue disorder related to use/pressure +C0477669|T047|HT|M70.9|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure|Unspecified soft tissue disorder related to use, overuse and pressure +C0477669|T047|PT|M70.9|ICD10|Unspecified soft tissue disorder related to use, overuse and pressure|Unspecified soft tissue disorder related to use, overuse and pressure +C2896198|T047|AB|M70.90|ICD10CM|Unsp soft tissue disord related to use/pressure of unsp site|Unsp soft tissue disord related to use/pressure of unsp site +C2896198|T047|PT|M70.90|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure of unspecified site|Unspecified soft tissue disorder related to use, overuse and pressure of unspecified site +C2896199|T047|AB|M70.91|ICD10CM|Unsp soft tissue disord related to use/pressure of shoulder|Unsp soft tissue disord related to use/pressure of shoulder +C2896199|T047|HT|M70.91|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure of shoulder|Unspecified soft tissue disorder related to use, overuse and pressure of shoulder +C2896200|T047|AB|M70.911|ICD10CM|Unsp soft tissue disord related to use/pressure, r shoulder|Unsp soft tissue disord related to use/pressure, r shoulder +C2896200|T047|PT|M70.911|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, right shoulder|Unspecified soft tissue disorder related to use, overuse and pressure, right shoulder +C2896201|T047|AB|M70.912|ICD10CM|Unsp soft tissue disord related to use/pressure, l shoulder|Unsp soft tissue disord related to use/pressure, l shoulder +C2896201|T047|PT|M70.912|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, left shoulder|Unspecified soft tissue disorder related to use, overuse and pressure, left shoulder +C2896202|T047|AB|M70.919|ICD10CM|Unsp soft tissue disord related to use/pressure, unsp shldr|Unsp soft tissue disord related to use/pressure, unsp shldr +C2896202|T047|PT|M70.919|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, unspecified shoulder|Unspecified soft tissue disorder related to use, overuse and pressure, unspecified shoulder +C2896203|T047|AB|M70.92|ICD10CM|Unsp soft tissue disorder related to use/pressure of up arm|Unsp soft tissue disorder related to use/pressure of up arm +C2896203|T047|HT|M70.92|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure of upper arm|Unspecified soft tissue disorder related to use, overuse and pressure of upper arm +C2896204|T047|AB|M70.921|ICD10CM|Unsp soft tissue disorder related to use/pressure, r up arm|Unsp soft tissue disorder related to use/pressure, r up arm +C2896204|T047|PT|M70.921|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, right upper arm|Unspecified soft tissue disorder related to use, overuse and pressure, right upper arm +C2896205|T047|AB|M70.922|ICD10CM|Unsp soft tissue disorder related to use/pressure, l up arm|Unsp soft tissue disorder related to use/pressure, l up arm +C2896205|T047|PT|M70.922|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, left upper arm|Unspecified soft tissue disorder related to use, overuse and pressure, left upper arm +C2896206|T047|AB|M70.929|ICD10CM|Unsp soft tissue disord related to use/pressure, unsp up arm|Unsp soft tissue disord related to use/pressure, unsp up arm +C2896206|T047|PT|M70.929|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, unspecified upper arm|Unspecified soft tissue disorder related to use, overuse and pressure, unspecified upper arm +C2896207|T047|AB|M70.93|ICD10CM|Unsp soft tissue disorder related to use/pressure of forearm|Unsp soft tissue disorder related to use/pressure of forearm +C2896207|T047|HT|M70.93|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure of forearm|Unspecified soft tissue disorder related to use, overuse and pressure of forearm +C2896208|T047|AB|M70.931|ICD10CM|Unsp soft tissue disorder related to use/pressure, r forearm|Unsp soft tissue disorder related to use/pressure, r forearm +C2896208|T047|PT|M70.931|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, right forearm|Unspecified soft tissue disorder related to use, overuse and pressure, right forearm +C2896209|T047|AB|M70.932|ICD10CM|Unsp soft tissue disorder related to use/pressure, l forearm|Unsp soft tissue disorder related to use/pressure, l forearm +C2896209|T047|PT|M70.932|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, left forearm|Unspecified soft tissue disorder related to use, overuse and pressure, left forearm +C2896210|T047|AB|M70.939|ICD10CM|Unsp soft tissue disord rel to use/pressure, unsp forearm|Unsp soft tissue disord rel to use/pressure, unsp forearm +C2896210|T047|PT|M70.939|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, unspecified forearm|Unspecified soft tissue disorder related to use, overuse and pressure, unspecified forearm +C2896211|T047|AB|M70.94|ICD10CM|Unsp soft tissue disorder related to use/pressure of hand|Unsp soft tissue disorder related to use/pressure of hand +C2896211|T047|HT|M70.94|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure of hand|Unspecified soft tissue disorder related to use, overuse and pressure of hand +C2896212|T047|AB|M70.941|ICD10CM|Unsp soft tissue disorder related to use/pressure, r hand|Unsp soft tissue disorder related to use/pressure, r hand +C2896212|T047|PT|M70.941|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, right hand|Unspecified soft tissue disorder related to use, overuse and pressure, right hand +C2896213|T047|AB|M70.942|ICD10CM|Unsp soft tissue disorder related to use/pressure, left hand|Unsp soft tissue disorder related to use/pressure, left hand +C2896213|T047|PT|M70.942|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, left hand|Unspecified soft tissue disorder related to use, overuse and pressure, left hand +C2896214|T047|AB|M70.949|ICD10CM|Unsp soft tissue disorder related to use/pressure, unsp hand|Unsp soft tissue disorder related to use/pressure, unsp hand +C2896214|T047|PT|M70.949|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, unspecified hand|Unspecified soft tissue disorder related to use, overuse and pressure, unspecified hand +C2896215|T047|AB|M70.95|ICD10CM|Unsp soft tissue disorder related to use/pressure of thigh|Unsp soft tissue disorder related to use/pressure of thigh +C2896215|T047|HT|M70.95|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure of thigh|Unspecified soft tissue disorder related to use, overuse and pressure of thigh +C2896216|T047|AB|M70.951|ICD10CM|Unsp soft tissue disord related to use/pressure, right thigh|Unsp soft tissue disord related to use/pressure, right thigh +C2896216|T047|PT|M70.951|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, right thigh|Unspecified soft tissue disorder related to use, overuse and pressure, right thigh +C2896217|T047|AB|M70.952|ICD10CM|Unsp soft tissue disord related to use/pressure, left thigh|Unsp soft tissue disord related to use/pressure, left thigh +C2896217|T047|PT|M70.952|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, left thigh|Unspecified soft tissue disorder related to use, overuse and pressure, left thigh +C2896218|T047|AB|M70.959|ICD10CM|Unsp soft tissue disord related to use/pressure, unsp thigh|Unsp soft tissue disord related to use/pressure, unsp thigh +C2896218|T047|PT|M70.959|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, unspecified thigh|Unspecified soft tissue disorder related to use, overuse and pressure, unspecified thigh +C2896219|T047|AB|M70.96|ICD10CM|Unsp soft tissue disorder related to use/pressure lower leg|Unsp soft tissue disorder related to use/pressure lower leg +C2896219|T047|HT|M70.96|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure lower leg|Unspecified soft tissue disorder related to use, overuse and pressure lower leg +C2896220|T047|AB|M70.961|ICD10CM|Unsp soft tissue disorder related to use/pressure, r low leg|Unsp soft tissue disorder related to use/pressure, r low leg +C2896220|T047|PT|M70.961|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, right lower leg|Unspecified soft tissue disorder related to use, overuse and pressure, right lower leg +C2896221|T047|AB|M70.962|ICD10CM|Unsp soft tissue disorder related to use/pressure, l low leg|Unsp soft tissue disorder related to use/pressure, l low leg +C2896221|T047|PT|M70.962|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, left lower leg|Unspecified soft tissue disorder related to use, overuse and pressure, left lower leg +C2896222|T047|AB|M70.969|ICD10CM|Unsp soft tissue disord rel to use/pressure, unsp low leg|Unsp soft tissue disord rel to use/pressure, unsp low leg +C2896222|T047|PT|M70.969|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, unspecified lower leg|Unspecified soft tissue disorder related to use, overuse and pressure, unspecified lower leg +C2896223|T047|AB|M70.97|ICD10CM|Unsp soft tissue disorder related to use/pressure of ank/ft|Unsp soft tissue disorder related to use/pressure of ank/ft +C2896223|T047|HT|M70.97|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure of ankle and foot|Unspecified soft tissue disorder related to use, overuse and pressure of ankle and foot +C2896224|T047|AB|M70.971|ICD10CM|Unsp soft tissue disord rel to use/pressure, right ank/ft|Unsp soft tissue disord rel to use/pressure, right ank/ft +C2896224|T047|PT|M70.971|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, right ankle and foot|Unspecified soft tissue disorder related to use, overuse and pressure, right ankle and foot +C2896225|T047|AB|M70.972|ICD10CM|Unsp soft tissue disord related to use/pressure, left ank/ft|Unsp soft tissue disord related to use/pressure, left ank/ft +C2896225|T047|PT|M70.972|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, left ankle and foot|Unspecified soft tissue disorder related to use, overuse and pressure, left ankle and foot +C2896226|T047|AB|M70.979|ICD10CM|Unsp soft tissue disord related to use/pressure, unsp ank/ft|Unsp soft tissue disord related to use/pressure, unsp ank/ft +C2896226|T047|PT|M70.979|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure, unspecified ankle and foot|Unspecified soft tissue disorder related to use, overuse and pressure, unspecified ankle and foot +C2896227|T047|AB|M70.98|ICD10CM|Unsp soft tissue disorder related to use/pressure oth|Unsp soft tissue disorder related to use/pressure oth +C2896227|T047|PT|M70.98|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure other|Unspecified soft tissue disorder related to use, overuse and pressure other +C2896228|T047|AB|M70.99|ICD10CM|Unsp soft tissue disord related to use/pressure mult sites|Unsp soft tissue disord related to use/pressure mult sites +C2896228|T047|PT|M70.99|ICD10CM|Unspecified soft tissue disorder related to use, overuse and pressure multiple sites|Unspecified soft tissue disorder related to use, overuse and pressure multiple sites +C0494983|T047|HT|M71|ICD10|Other bursopathies|Other bursopathies +C0494983|T047|AB|M71|ICD10CM|Other bursopathies|Other bursopathies +C0494983|T047|HT|M71|ICD10CM|Other bursopathies|Other bursopathies +C0343221|T047|PT|M71.0|ICD10|Abscess of bursa|Abscess of bursa +C0343221|T047|HT|M71.0|ICD10CM|Abscess of bursa|Abscess of bursa +C0343221|T047|AB|M71.0|ICD10CM|Abscess of bursa|Abscess of bursa +C0839273|T047|AB|M71.00|ICD10CM|Abscess of bursa, unspecified site|Abscess of bursa, unspecified site +C0839273|T047|PT|M71.00|ICD10CM|Abscess of bursa, unspecified site|Abscess of bursa, unspecified site +C0410129|T047|AB|M71.01|ICD10CM|Abscess of bursa, shoulder|Abscess of bursa, shoulder +C0410129|T047|HT|M71.01|ICD10CM|Abscess of bursa, shoulder|Abscess of bursa, shoulder +C2896229|T047|AB|M71.011|ICD10CM|Abscess of bursa, right shoulder|Abscess of bursa, right shoulder +C2896229|T047|PT|M71.011|ICD10CM|Abscess of bursa, right shoulder|Abscess of bursa, right shoulder +C2896230|T047|AB|M71.012|ICD10CM|Abscess of bursa, left shoulder|Abscess of bursa, left shoulder +C2896230|T047|PT|M71.012|ICD10CM|Abscess of bursa, left shoulder|Abscess of bursa, left shoulder +C2896231|T047|AB|M71.019|ICD10CM|Abscess of bursa, unspecified shoulder|Abscess of bursa, unspecified shoulder +C2896231|T047|PT|M71.019|ICD10CM|Abscess of bursa, unspecified shoulder|Abscess of bursa, unspecified shoulder +C0410128|T047|AB|M71.02|ICD10CM|Abscess of bursa, elbow|Abscess of bursa, elbow +C0410128|T047|HT|M71.02|ICD10CM|Abscess of bursa, elbow|Abscess of bursa, elbow +C2896232|T047|AB|M71.021|ICD10CM|Abscess of bursa, right elbow|Abscess of bursa, right elbow +C2896232|T047|PT|M71.021|ICD10CM|Abscess of bursa, right elbow|Abscess of bursa, right elbow +C2896233|T047|AB|M71.022|ICD10CM|Abscess of bursa, left elbow|Abscess of bursa, left elbow +C2896233|T047|PT|M71.022|ICD10CM|Abscess of bursa, left elbow|Abscess of bursa, left elbow +C2896234|T047|AB|M71.029|ICD10CM|Abscess of bursa, unspecified elbow|Abscess of bursa, unspecified elbow +C2896234|T047|PT|M71.029|ICD10CM|Abscess of bursa, unspecified elbow|Abscess of bursa, unspecified elbow +C0410127|T047|AB|M71.03|ICD10CM|Abscess of bursa, wrist|Abscess of bursa, wrist +C0410127|T047|HT|M71.03|ICD10CM|Abscess of bursa, wrist|Abscess of bursa, wrist +C2896235|T047|AB|M71.031|ICD10CM|Abscess of bursa, right wrist|Abscess of bursa, right wrist +C2896235|T047|PT|M71.031|ICD10CM|Abscess of bursa, right wrist|Abscess of bursa, right wrist +C2896236|T047|AB|M71.032|ICD10CM|Abscess of bursa, left wrist|Abscess of bursa, left wrist +C2896236|T047|PT|M71.032|ICD10CM|Abscess of bursa, left wrist|Abscess of bursa, left wrist +C2896237|T047|AB|M71.039|ICD10CM|Abscess of bursa, unspecified wrist|Abscess of bursa, unspecified wrist +C2896237|T047|PT|M71.039|ICD10CM|Abscess of bursa, unspecified wrist|Abscess of bursa, unspecified wrist +C3840082|T047|HT|M71.04|ICD10CM|Abscess of bursa, hand|Abscess of bursa, hand +C3840082|T047|AB|M71.04|ICD10CM|Abscess of bursa, hand|Abscess of bursa, hand +C2896238|T047|AB|M71.041|ICD10CM|Abscess of bursa, right hand|Abscess of bursa, right hand +C2896238|T047|PT|M71.041|ICD10CM|Abscess of bursa, right hand|Abscess of bursa, right hand +C2896239|T047|AB|M71.042|ICD10CM|Abscess of bursa, left hand|Abscess of bursa, left hand +C2896239|T047|PT|M71.042|ICD10CM|Abscess of bursa, left hand|Abscess of bursa, left hand +C3840082|T047|AB|M71.049|ICD10CM|Abscess of bursa, unspecified hand|Abscess of bursa, unspecified hand +C3840082|T047|PT|M71.049|ICD10CM|Abscess of bursa, unspecified hand|Abscess of bursa, unspecified hand +C0410126|T047|AB|M71.05|ICD10CM|Abscess of bursa, hip|Abscess of bursa, hip +C0410126|T047|HT|M71.05|ICD10CM|Abscess of bursa, hip|Abscess of bursa, hip +C2896240|T047|AB|M71.051|ICD10CM|Abscess of bursa, right hip|Abscess of bursa, right hip +C2896240|T047|PT|M71.051|ICD10CM|Abscess of bursa, right hip|Abscess of bursa, right hip +C2896241|T047|AB|M71.052|ICD10CM|Abscess of bursa, left hip|Abscess of bursa, left hip +C2896241|T047|PT|M71.052|ICD10CM|Abscess of bursa, left hip|Abscess of bursa, left hip +C2896242|T047|AB|M71.059|ICD10CM|Abscess of bursa, unspecified hip|Abscess of bursa, unspecified hip +C2896242|T047|PT|M71.059|ICD10CM|Abscess of bursa, unspecified hip|Abscess of bursa, unspecified hip +C0410125|T047|AB|M71.06|ICD10CM|Abscess of bursa, knee|Abscess of bursa, knee +C0410125|T047|HT|M71.06|ICD10CM|Abscess of bursa, knee|Abscess of bursa, knee +C2896243|T047|AB|M71.061|ICD10CM|Abscess of bursa, right knee|Abscess of bursa, right knee +C2896243|T047|PT|M71.061|ICD10CM|Abscess of bursa, right knee|Abscess of bursa, right knee +C2896244|T047|AB|M71.062|ICD10CM|Abscess of bursa, left knee|Abscess of bursa, left knee +C2896244|T047|PT|M71.062|ICD10CM|Abscess of bursa, left knee|Abscess of bursa, left knee +C2896245|T047|AB|M71.069|ICD10CM|Abscess of bursa, unspecified knee|Abscess of bursa, unspecified knee +C2896245|T047|PT|M71.069|ICD10CM|Abscess of bursa, unspecified knee|Abscess of bursa, unspecified knee +C0839271|T047|HT|M71.07|ICD10CM|Abscess of bursa, ankle and foot|Abscess of bursa, ankle and foot +C0839271|T047|AB|M71.07|ICD10CM|Abscess of bursa, ankle and foot|Abscess of bursa, ankle and foot +C2896246|T047|AB|M71.071|ICD10CM|Abscess of bursa, right ankle and foot|Abscess of bursa, right ankle and foot +C2896246|T047|PT|M71.071|ICD10CM|Abscess of bursa, right ankle and foot|Abscess of bursa, right ankle and foot +C2896247|T047|AB|M71.072|ICD10CM|Abscess of bursa, left ankle and foot|Abscess of bursa, left ankle and foot +C2896247|T047|PT|M71.072|ICD10CM|Abscess of bursa, left ankle and foot|Abscess of bursa, left ankle and foot +C0839271|T047|AB|M71.079|ICD10CM|Abscess of bursa, unspecified ankle and foot|Abscess of bursa, unspecified ankle and foot +C0839271|T047|PT|M71.079|ICD10CM|Abscess of bursa, unspecified ankle and foot|Abscess of bursa, unspecified ankle and foot +C0839272|T047|PT|M71.08|ICD10CM|Abscess of bursa, other site|Abscess of bursa, other site +C0839272|T047|AB|M71.08|ICD10CM|Abscess of bursa, other site|Abscess of bursa, other site +C0839264|T047|PT|M71.09|ICD10CM|Abscess of bursa, multiple sites|Abscess of bursa, multiple sites +C0839264|T047|AB|M71.09|ICD10CM|Abscess of bursa, multiple sites|Abscess of bursa, multiple sites +C0477657|T047|HT|M71.1|ICD10CM|Other infective bursitis|Other infective bursitis +C0477657|T047|AB|M71.1|ICD10CM|Other infective bursitis|Other infective bursitis +C0477657|T047|PT|M71.1|ICD10|Other infective bursitis|Other infective bursitis +C0477657|T047|AB|M71.10|ICD10CM|Other infective bursitis, unspecified site|Other infective bursitis, unspecified site +C0477657|T047|PT|M71.10|ICD10CM|Other infective bursitis, unspecified site|Other infective bursitis, unspecified site +C2896248|T047|AB|M71.11|ICD10CM|Other infective bursitis, shoulder|Other infective bursitis, shoulder +C2896248|T047|HT|M71.11|ICD10CM|Other infective bursitis, shoulder|Other infective bursitis, shoulder +C2896249|T047|AB|M71.111|ICD10CM|Other infective bursitis, right shoulder|Other infective bursitis, right shoulder +C2896249|T047|PT|M71.111|ICD10CM|Other infective bursitis, right shoulder|Other infective bursitis, right shoulder +C2896250|T047|AB|M71.112|ICD10CM|Other infective bursitis, left shoulder|Other infective bursitis, left shoulder +C2896250|T047|PT|M71.112|ICD10CM|Other infective bursitis, left shoulder|Other infective bursitis, left shoulder +C2896251|T047|AB|M71.119|ICD10CM|Other infective bursitis, unspecified shoulder|Other infective bursitis, unspecified shoulder +C2896251|T047|PT|M71.119|ICD10CM|Other infective bursitis, unspecified shoulder|Other infective bursitis, unspecified shoulder +C2896254|T047|AB|M71.12|ICD10CM|Other infective bursitis, elbow|Other infective bursitis, elbow +C2896254|T047|HT|M71.12|ICD10CM|Other infective bursitis, elbow|Other infective bursitis, elbow +C2896252|T047|AB|M71.121|ICD10CM|Other infective bursitis, right elbow|Other infective bursitis, right elbow +C2896252|T047|PT|M71.121|ICD10CM|Other infective bursitis, right elbow|Other infective bursitis, right elbow +C2896253|T047|AB|M71.122|ICD10CM|Other infective bursitis, left elbow|Other infective bursitis, left elbow +C2896253|T047|PT|M71.122|ICD10CM|Other infective bursitis, left elbow|Other infective bursitis, left elbow +C2896254|T047|AB|M71.129|ICD10CM|Other infective bursitis, unspecified elbow|Other infective bursitis, unspecified elbow +C2896254|T047|PT|M71.129|ICD10CM|Other infective bursitis, unspecified elbow|Other infective bursitis, unspecified elbow +C2896257|T047|AB|M71.13|ICD10CM|Other infective bursitis, wrist|Other infective bursitis, wrist +C2896257|T047|HT|M71.13|ICD10CM|Other infective bursitis, wrist|Other infective bursitis, wrist +C2896255|T047|AB|M71.131|ICD10CM|Other infective bursitis, right wrist|Other infective bursitis, right wrist +C2896255|T047|PT|M71.131|ICD10CM|Other infective bursitis, right wrist|Other infective bursitis, right wrist +C2896256|T047|AB|M71.132|ICD10CM|Other infective bursitis, left wrist|Other infective bursitis, left wrist +C2896256|T047|PT|M71.132|ICD10CM|Other infective bursitis, left wrist|Other infective bursitis, left wrist +C2896257|T047|AB|M71.139|ICD10CM|Other infective bursitis, unspecified wrist|Other infective bursitis, unspecified wrist +C2896257|T047|PT|M71.139|ICD10CM|Other infective bursitis, unspecified wrist|Other infective bursitis, unspecified wrist +C0839278|T047|HT|M71.14|ICD10CM|Other infective bursitis, hand|Other infective bursitis, hand +C0839278|T047|AB|M71.14|ICD10CM|Other infective bursitis, hand|Other infective bursitis, hand +C2896258|T047|AB|M71.141|ICD10CM|Other infective bursitis, right hand|Other infective bursitis, right hand +C2896258|T047|PT|M71.141|ICD10CM|Other infective bursitis, right hand|Other infective bursitis, right hand +C2896259|T047|AB|M71.142|ICD10CM|Other infective bursitis, left hand|Other infective bursitis, left hand +C2896259|T047|PT|M71.142|ICD10CM|Other infective bursitis, left hand|Other infective bursitis, left hand +C2896260|T047|AB|M71.149|ICD10CM|Other infective bursitis, unspecified hand|Other infective bursitis, unspecified hand +C2896260|T047|PT|M71.149|ICD10CM|Other infective bursitis, unspecified hand|Other infective bursitis, unspecified hand +C2896261|T047|AB|M71.15|ICD10CM|Other infective bursitis, hip|Other infective bursitis, hip +C2896261|T047|HT|M71.15|ICD10CM|Other infective bursitis, hip|Other infective bursitis, hip +C2896262|T047|AB|M71.151|ICD10CM|Other infective bursitis, right hip|Other infective bursitis, right hip +C2896262|T047|PT|M71.151|ICD10CM|Other infective bursitis, right hip|Other infective bursitis, right hip +C2896263|T047|AB|M71.152|ICD10CM|Other infective bursitis, left hip|Other infective bursitis, left hip +C2896263|T047|PT|M71.152|ICD10CM|Other infective bursitis, left hip|Other infective bursitis, left hip +C2896264|T047|AB|M71.159|ICD10CM|Other infective bursitis, unspecified hip|Other infective bursitis, unspecified hip +C2896264|T047|PT|M71.159|ICD10CM|Other infective bursitis, unspecified hip|Other infective bursitis, unspecified hip +C2896267|T047|AB|M71.16|ICD10CM|Other infective bursitis, knee|Other infective bursitis, knee +C2896267|T047|HT|M71.16|ICD10CM|Other infective bursitis, knee|Other infective bursitis, knee +C2896265|T047|AB|M71.161|ICD10CM|Other infective bursitis, right knee|Other infective bursitis, right knee +C2896265|T047|PT|M71.161|ICD10CM|Other infective bursitis, right knee|Other infective bursitis, right knee +C2896266|T047|AB|M71.162|ICD10CM|Other infective bursitis, left knee|Other infective bursitis, left knee +C2896266|T047|PT|M71.162|ICD10CM|Other infective bursitis, left knee|Other infective bursitis, left knee +C2896267|T047|AB|M71.169|ICD10CM|Other infective bursitis, unspecified knee|Other infective bursitis, unspecified knee +C2896267|T047|PT|M71.169|ICD10CM|Other infective bursitis, unspecified knee|Other infective bursitis, unspecified knee +C0839281|T047|HT|M71.17|ICD10CM|Other infective bursitis, ankle and foot|Other infective bursitis, ankle and foot +C0839281|T047|AB|M71.17|ICD10CM|Other infective bursitis, ankle and foot|Other infective bursitis, ankle and foot +C2896268|T047|AB|M71.171|ICD10CM|Other infective bursitis, right ankle and foot|Other infective bursitis, right ankle and foot +C2896268|T047|PT|M71.171|ICD10CM|Other infective bursitis, right ankle and foot|Other infective bursitis, right ankle and foot +C2896269|T047|AB|M71.172|ICD10CM|Other infective bursitis, left ankle and foot|Other infective bursitis, left ankle and foot +C2896269|T047|PT|M71.172|ICD10CM|Other infective bursitis, left ankle and foot|Other infective bursitis, left ankle and foot +C2896270|T047|AB|M71.179|ICD10CM|Other infective bursitis, unspecified ankle and foot|Other infective bursitis, unspecified ankle and foot +C2896270|T047|PT|M71.179|ICD10CM|Other infective bursitis, unspecified ankle and foot|Other infective bursitis, unspecified ankle and foot +C0839282|T047|PT|M71.18|ICD10CM|Other infective bursitis, other site|Other infective bursitis, other site +C0839282|T047|AB|M71.18|ICD10CM|Other infective bursitis, other site|Other infective bursitis, other site +C0839274|T047|PT|M71.19|ICD10CM|Other infective bursitis, multiple sites|Other infective bursitis, multiple sites +C0839274|T047|AB|M71.19|ICD10CM|Other infective bursitis, multiple sites|Other infective bursitis, multiple sites +C0032650|T020|PT|M71.2|ICD10|Synovial cyst of popliteal space [Baker]|Synovial cyst of popliteal space [Baker] +C0032650|T020|HT|M71.2|ICD10CM|Synovial cyst of popliteal space [Baker]|Synovial cyst of popliteal space [Baker] +C0032650|T020|AB|M71.2|ICD10CM|Synovial cyst of popliteal space [Baker]|Synovial cyst of popliteal space [Baker] +C0032650|T020|AB|M71.20|ICD10CM|Synovial cyst of popliteal space [Baker], unspecified knee|Synovial cyst of popliteal space [Baker], unspecified knee +C0032650|T020|PT|M71.20|ICD10CM|Synovial cyst of popliteal space [Baker], unspecified knee|Synovial cyst of popliteal space [Baker], unspecified knee +C2896271|T020|AB|M71.21|ICD10CM|Synovial cyst of popliteal space [Baker], right knee|Synovial cyst of popliteal space [Baker], right knee +C2896271|T020|PT|M71.21|ICD10CM|Synovial cyst of popliteal space [Baker], right knee|Synovial cyst of popliteal space [Baker], right knee +C2896272|T020|AB|M71.22|ICD10CM|Synovial cyst of popliteal space [Baker], left knee|Synovial cyst of popliteal space [Baker], left knee +C2896272|T020|PT|M71.22|ICD10CM|Synovial cyst of popliteal space [Baker], left knee|Synovial cyst of popliteal space [Baker], left knee +C0477658|T020|HT|M71.3|ICD10CM|Other bursal cyst|Other bursal cyst +C0477658|T020|AB|M71.3|ICD10CM|Other bursal cyst|Other bursal cyst +C0477658|T020|PT|M71.3|ICD10|Other bursal cyst|Other bursal cyst +C0085648|T047|ET|M71.3|ICD10CM|Synovial cyst NOS|Synovial cyst NOS +C0477658|T020|AB|M71.30|ICD10CM|Other bursal cyst, unspecified site|Other bursal cyst, unspecified site +C0477658|T020|PT|M71.30|ICD10CM|Other bursal cyst, unspecified site|Other bursal cyst, unspecified site +C2896275|T047|AB|M71.31|ICD10CM|Other bursal cyst, shoulder|Other bursal cyst, shoulder +C2896275|T047|HT|M71.31|ICD10CM|Other bursal cyst, shoulder|Other bursal cyst, shoulder +C2896273|T047|AB|M71.311|ICD10CM|Other bursal cyst, right shoulder|Other bursal cyst, right shoulder +C2896273|T047|PT|M71.311|ICD10CM|Other bursal cyst, right shoulder|Other bursal cyst, right shoulder +C2896274|T020|AB|M71.312|ICD10CM|Other bursal cyst, left shoulder|Other bursal cyst, left shoulder +C2896274|T020|PT|M71.312|ICD10CM|Other bursal cyst, left shoulder|Other bursal cyst, left shoulder +C2896275|T047|AB|M71.319|ICD10CM|Other bursal cyst, unspecified shoulder|Other bursal cyst, unspecified shoulder +C2896275|T047|PT|M71.319|ICD10CM|Other bursal cyst, unspecified shoulder|Other bursal cyst, unspecified shoulder +C2896276|T020|AB|M71.32|ICD10CM|Other bursal cyst, elbow|Other bursal cyst, elbow +C2896276|T020|HT|M71.32|ICD10CM|Other bursal cyst, elbow|Other bursal cyst, elbow +C2896277|T020|AB|M71.321|ICD10CM|Other bursal cyst, right elbow|Other bursal cyst, right elbow +C2896277|T020|PT|M71.321|ICD10CM|Other bursal cyst, right elbow|Other bursal cyst, right elbow +C2896278|T020|AB|M71.322|ICD10CM|Other bursal cyst, left elbow|Other bursal cyst, left elbow +C2896278|T020|PT|M71.322|ICD10CM|Other bursal cyst, left elbow|Other bursal cyst, left elbow +C2896276|T020|AB|M71.329|ICD10CM|Other bursal cyst, unspecified elbow|Other bursal cyst, unspecified elbow +C2896276|T020|PT|M71.329|ICD10CM|Other bursal cyst, unspecified elbow|Other bursal cyst, unspecified elbow +C2896281|T020|AB|M71.33|ICD10CM|Other bursal cyst, wrist|Other bursal cyst, wrist +C2896281|T020|HT|M71.33|ICD10CM|Other bursal cyst, wrist|Other bursal cyst, wrist +C2896279|T020|AB|M71.331|ICD10CM|Other bursal cyst, right wrist|Other bursal cyst, right wrist +C2896279|T020|PT|M71.331|ICD10CM|Other bursal cyst, right wrist|Other bursal cyst, right wrist +C2896280|T020|AB|M71.332|ICD10CM|Other bursal cyst, left wrist|Other bursal cyst, left wrist +C2896280|T020|PT|M71.332|ICD10CM|Other bursal cyst, left wrist|Other bursal cyst, left wrist +C2896281|T020|AB|M71.339|ICD10CM|Other bursal cyst, unspecified wrist|Other bursal cyst, unspecified wrist +C2896281|T020|PT|M71.339|ICD10CM|Other bursal cyst, unspecified wrist|Other bursal cyst, unspecified wrist +C0839288|T020|HT|M71.34|ICD10CM|Other bursal cyst, hand|Other bursal cyst, hand +C0839288|T020|AB|M71.34|ICD10CM|Other bursal cyst, hand|Other bursal cyst, hand +C2896282|T020|AB|M71.341|ICD10CM|Other bursal cyst, right hand|Other bursal cyst, right hand +C2896282|T020|PT|M71.341|ICD10CM|Other bursal cyst, right hand|Other bursal cyst, right hand +C2896283|T020|AB|M71.342|ICD10CM|Other bursal cyst, left hand|Other bursal cyst, left hand +C2896283|T020|PT|M71.342|ICD10CM|Other bursal cyst, left hand|Other bursal cyst, left hand +C0839288|T020|AB|M71.349|ICD10CM|Other bursal cyst, unspecified hand|Other bursal cyst, unspecified hand +C0839288|T020|PT|M71.349|ICD10CM|Other bursal cyst, unspecified hand|Other bursal cyst, unspecified hand +C2896286|T020|AB|M71.35|ICD10CM|Other bursal cyst, hip|Other bursal cyst, hip +C2896286|T020|HT|M71.35|ICD10CM|Other bursal cyst, hip|Other bursal cyst, hip +C2896284|T020|AB|M71.351|ICD10CM|Other bursal cyst, right hip|Other bursal cyst, right hip +C2896284|T020|PT|M71.351|ICD10CM|Other bursal cyst, right hip|Other bursal cyst, right hip +C2896285|T020|AB|M71.352|ICD10CM|Other bursal cyst, left hip|Other bursal cyst, left hip +C2896285|T020|PT|M71.352|ICD10CM|Other bursal cyst, left hip|Other bursal cyst, left hip +C2896286|T020|AB|M71.359|ICD10CM|Other bursal cyst, unspecified hip|Other bursal cyst, unspecified hip +C2896286|T020|PT|M71.359|ICD10CM|Other bursal cyst, unspecified hip|Other bursal cyst, unspecified hip +C0839291|T020|HT|M71.37|ICD10CM|Other bursal cyst, ankle and foot|Other bursal cyst, ankle and foot +C0839291|T020|AB|M71.37|ICD10CM|Other bursal cyst, ankle and foot|Other bursal cyst, ankle and foot +C2896287|T020|AB|M71.371|ICD10CM|Other bursal cyst, right ankle and foot|Other bursal cyst, right ankle and foot +C2896287|T020|PT|M71.371|ICD10CM|Other bursal cyst, right ankle and foot|Other bursal cyst, right ankle and foot +C2896288|T020|AB|M71.372|ICD10CM|Other bursal cyst, left ankle and foot|Other bursal cyst, left ankle and foot +C2896288|T020|PT|M71.372|ICD10CM|Other bursal cyst, left ankle and foot|Other bursal cyst, left ankle and foot +C0839291|T020|AB|M71.379|ICD10CM|Other bursal cyst, unspecified ankle and foot|Other bursal cyst, unspecified ankle and foot +C0839291|T020|PT|M71.379|ICD10CM|Other bursal cyst, unspecified ankle and foot|Other bursal cyst, unspecified ankle and foot +C0839292|T020|PT|M71.38|ICD10CM|Other bursal cyst, other site|Other bursal cyst, other site +C0839292|T020|AB|M71.38|ICD10CM|Other bursal cyst, other site|Other bursal cyst, other site +C0839284|T020|PT|M71.39|ICD10CM|Other bursal cyst, multiple sites|Other bursal cyst, multiple sites +C0839284|T020|AB|M71.39|ICD10CM|Other bursal cyst, multiple sites|Other bursal cyst, multiple sites +C0451844|T047|HT|M71.4|ICD10CM|Calcium deposit in bursa|Calcium deposit in bursa +C0451844|T047|AB|M71.4|ICD10CM|Calcium deposit in bursa|Calcium deposit in bursa +C0451844|T047|PT|M71.4|ICD10|Calcium deposit in bursa|Calcium deposit in bursa +C0839303|T047|AB|M71.40|ICD10CM|Calcium deposit in bursa, unspecified site|Calcium deposit in bursa, unspecified site +C0839303|T047|PT|M71.40|ICD10CM|Calcium deposit in bursa, unspecified site|Calcium deposit in bursa, unspecified site +C2896289|T047|AB|M71.42|ICD10CM|Calcium deposit in bursa, elbow|Calcium deposit in bursa, elbow +C2896289|T047|HT|M71.42|ICD10CM|Calcium deposit in bursa, elbow|Calcium deposit in bursa, elbow +C2896290|T047|AB|M71.421|ICD10CM|Calcium deposit in bursa, right elbow|Calcium deposit in bursa, right elbow +C2896290|T047|PT|M71.421|ICD10CM|Calcium deposit in bursa, right elbow|Calcium deposit in bursa, right elbow +C2896291|T047|AB|M71.422|ICD10CM|Calcium deposit in bursa, left elbow|Calcium deposit in bursa, left elbow +C2896291|T047|PT|M71.422|ICD10CM|Calcium deposit in bursa, left elbow|Calcium deposit in bursa, left elbow +C2896292|T047|AB|M71.429|ICD10CM|Calcium deposit in bursa, unspecified elbow|Calcium deposit in bursa, unspecified elbow +C2896292|T047|PT|M71.429|ICD10CM|Calcium deposit in bursa, unspecified elbow|Calcium deposit in bursa, unspecified elbow +C2896293|T047|AB|M71.43|ICD10CM|Calcium deposit in bursa, wrist|Calcium deposit in bursa, wrist +C2896293|T047|HT|M71.43|ICD10CM|Calcium deposit in bursa, wrist|Calcium deposit in bursa, wrist +C2896294|T047|AB|M71.431|ICD10CM|Calcium deposit in bursa, right wrist|Calcium deposit in bursa, right wrist +C2896294|T047|PT|M71.431|ICD10CM|Calcium deposit in bursa, right wrist|Calcium deposit in bursa, right wrist +C2896295|T047|AB|M71.432|ICD10CM|Calcium deposit in bursa, left wrist|Calcium deposit in bursa, left wrist +C2896295|T047|PT|M71.432|ICD10CM|Calcium deposit in bursa, left wrist|Calcium deposit in bursa, left wrist +C2896296|T047|AB|M71.439|ICD10CM|Calcium deposit in bursa, unspecified wrist|Calcium deposit in bursa, unspecified wrist +C2896296|T047|PT|M71.439|ICD10CM|Calcium deposit in bursa, unspecified wrist|Calcium deposit in bursa, unspecified wrist +C0839298|T047|HT|M71.44|ICD10CM|Calcium deposit in bursa, hand|Calcium deposit in bursa, hand +C0839298|T047|AB|M71.44|ICD10CM|Calcium deposit in bursa, hand|Calcium deposit in bursa, hand +C2896297|T047|AB|M71.441|ICD10CM|Calcium deposit in bursa, right hand|Calcium deposit in bursa, right hand +C2896297|T047|PT|M71.441|ICD10CM|Calcium deposit in bursa, right hand|Calcium deposit in bursa, right hand +C2896298|T047|AB|M71.442|ICD10CM|Calcium deposit in bursa, left hand|Calcium deposit in bursa, left hand +C2896298|T047|PT|M71.442|ICD10CM|Calcium deposit in bursa, left hand|Calcium deposit in bursa, left hand +C2896299|T047|AB|M71.449|ICD10CM|Calcium deposit in bursa, unspecified hand|Calcium deposit in bursa, unspecified hand +C2896299|T047|PT|M71.449|ICD10CM|Calcium deposit in bursa, unspecified hand|Calcium deposit in bursa, unspecified hand +C2896300|T047|AB|M71.45|ICD10CM|Calcium deposit in bursa, hip|Calcium deposit in bursa, hip +C2896300|T047|HT|M71.45|ICD10CM|Calcium deposit in bursa, hip|Calcium deposit in bursa, hip +C2896301|T047|AB|M71.451|ICD10CM|Calcium deposit in bursa, right hip|Calcium deposit in bursa, right hip +C2896301|T047|PT|M71.451|ICD10CM|Calcium deposit in bursa, right hip|Calcium deposit in bursa, right hip +C2896302|T047|AB|M71.452|ICD10CM|Calcium deposit in bursa, left hip|Calcium deposit in bursa, left hip +C2896302|T047|PT|M71.452|ICD10CM|Calcium deposit in bursa, left hip|Calcium deposit in bursa, left hip +C2896303|T047|AB|M71.459|ICD10CM|Calcium deposit in bursa, unspecified hip|Calcium deposit in bursa, unspecified hip +C2896303|T047|PT|M71.459|ICD10CM|Calcium deposit in bursa, unspecified hip|Calcium deposit in bursa, unspecified hip +C2896304|T047|AB|M71.46|ICD10CM|Calcium deposit in bursa, knee|Calcium deposit in bursa, knee +C2896304|T047|HT|M71.46|ICD10CM|Calcium deposit in bursa, knee|Calcium deposit in bursa, knee +C2896305|T046|AB|M71.461|ICD10CM|Calcium deposit in bursa, right knee|Calcium deposit in bursa, right knee +C2896305|T046|PT|M71.461|ICD10CM|Calcium deposit in bursa, right knee|Calcium deposit in bursa, right knee +C2896306|T046|AB|M71.462|ICD10CM|Calcium deposit in bursa, left knee|Calcium deposit in bursa, left knee +C2896306|T046|PT|M71.462|ICD10CM|Calcium deposit in bursa, left knee|Calcium deposit in bursa, left knee +C2896307|T047|AB|M71.469|ICD10CM|Calcium deposit in bursa, unspecified knee|Calcium deposit in bursa, unspecified knee +C2896307|T047|PT|M71.469|ICD10CM|Calcium deposit in bursa, unspecified knee|Calcium deposit in bursa, unspecified knee +C0839301|T047|HT|M71.47|ICD10CM|Calcium deposit in bursa, ankle and foot|Calcium deposit in bursa, ankle and foot +C0839301|T047|AB|M71.47|ICD10CM|Calcium deposit in bursa, ankle and foot|Calcium deposit in bursa, ankle and foot +C2896308|T047|AB|M71.471|ICD10CM|Calcium deposit in bursa, right ankle and foot|Calcium deposit in bursa, right ankle and foot +C2896308|T047|PT|M71.471|ICD10CM|Calcium deposit in bursa, right ankle and foot|Calcium deposit in bursa, right ankle and foot +C2896309|T047|AB|M71.472|ICD10CM|Calcium deposit in bursa, left ankle and foot|Calcium deposit in bursa, left ankle and foot +C2896309|T047|PT|M71.472|ICD10CM|Calcium deposit in bursa, left ankle and foot|Calcium deposit in bursa, left ankle and foot +C2896310|T047|AB|M71.479|ICD10CM|Calcium deposit in bursa, unspecified ankle and foot|Calcium deposit in bursa, unspecified ankle and foot +C2896310|T047|PT|M71.479|ICD10CM|Calcium deposit in bursa, unspecified ankle and foot|Calcium deposit in bursa, unspecified ankle and foot +C0839302|T047|PT|M71.48|ICD10CM|Calcium deposit in bursa, other site|Calcium deposit in bursa, other site +C0839302|T047|AB|M71.48|ICD10CM|Calcium deposit in bursa, other site|Calcium deposit in bursa, other site +C0839294|T047|PT|M71.49|ICD10CM|Calcium deposit in bursa, multiple sites|Calcium deposit in bursa, multiple sites +C0839294|T047|AB|M71.49|ICD10CM|Calcium deposit in bursa, multiple sites|Calcium deposit in bursa, multiple sites +C0839313|T047|HT|M71.5|ICD10CM|Other bursitis, not elsewhere classified|Other bursitis, not elsewhere classified +C0839313|T047|AB|M71.5|ICD10CM|Other bursitis, not elsewhere classified|Other bursitis, not elsewhere classified +C0839313|T047|PT|M71.5|ICD10|Other bursitis, not elsewhere classified|Other bursitis, not elsewhere classified +C0839313|T047|AB|M71.50|ICD10CM|Other bursitis, not elsewhere classified, unspecified site|Other bursitis, not elsewhere classified, unspecified site +C0839313|T047|PT|M71.50|ICD10CM|Other bursitis, not elsewhere classified, unspecified site|Other bursitis, not elsewhere classified, unspecified site +C2896311|T047|AB|M71.52|ICD10CM|Other bursitis, not elsewhere classified, elbow|Other bursitis, not elsewhere classified, elbow +C2896311|T047|HT|M71.52|ICD10CM|Other bursitis, not elsewhere classified, elbow|Other bursitis, not elsewhere classified, elbow +C2896312|T047|AB|M71.521|ICD10CM|Other bursitis, not elsewhere classified, right elbow|Other bursitis, not elsewhere classified, right elbow +C2896312|T047|PT|M71.521|ICD10CM|Other bursitis, not elsewhere classified, right elbow|Other bursitis, not elsewhere classified, right elbow +C2896313|T047|AB|M71.522|ICD10CM|Other bursitis, not elsewhere classified, left elbow|Other bursitis, not elsewhere classified, left elbow +C2896313|T047|PT|M71.522|ICD10CM|Other bursitis, not elsewhere classified, left elbow|Other bursitis, not elsewhere classified, left elbow +C2896314|T047|AB|M71.529|ICD10CM|Other bursitis, not elsewhere classified, unspecified elbow|Other bursitis, not elsewhere classified, unspecified elbow +C2896314|T047|PT|M71.529|ICD10CM|Other bursitis, not elsewhere classified, unspecified elbow|Other bursitis, not elsewhere classified, unspecified elbow +C2896315|T047|AB|M71.53|ICD10CM|Other bursitis, not elsewhere classified, wrist|Other bursitis, not elsewhere classified, wrist +C2896315|T047|HT|M71.53|ICD10CM|Other bursitis, not elsewhere classified, wrist|Other bursitis, not elsewhere classified, wrist +C2896316|T047|AB|M71.531|ICD10CM|Other bursitis, not elsewhere classified, right wrist|Other bursitis, not elsewhere classified, right wrist +C2896316|T047|PT|M71.531|ICD10CM|Other bursitis, not elsewhere classified, right wrist|Other bursitis, not elsewhere classified, right wrist +C2896317|T047|AB|M71.532|ICD10CM|Other bursitis, not elsewhere classified, left wrist|Other bursitis, not elsewhere classified, left wrist +C2896317|T047|PT|M71.532|ICD10CM|Other bursitis, not elsewhere classified, left wrist|Other bursitis, not elsewhere classified, left wrist +C2896318|T047|AB|M71.539|ICD10CM|Other bursitis, not elsewhere classified, unspecified wrist|Other bursitis, not elsewhere classified, unspecified wrist +C2896318|T047|PT|M71.539|ICD10CM|Other bursitis, not elsewhere classified, unspecified wrist|Other bursitis, not elsewhere classified, unspecified wrist +C0839308|T047|HT|M71.54|ICD10CM|Other bursitis, not elsewhere classified, hand|Other bursitis, not elsewhere classified, hand +C0839308|T047|AB|M71.54|ICD10CM|Other bursitis, not elsewhere classified, hand|Other bursitis, not elsewhere classified, hand +C2896319|T047|AB|M71.541|ICD10CM|Other bursitis, not elsewhere classified, right hand|Other bursitis, not elsewhere classified, right hand +C2896319|T047|PT|M71.541|ICD10CM|Other bursitis, not elsewhere classified, right hand|Other bursitis, not elsewhere classified, right hand +C2896320|T047|AB|M71.542|ICD10CM|Other bursitis, not elsewhere classified, left hand|Other bursitis, not elsewhere classified, left hand +C2896320|T047|PT|M71.542|ICD10CM|Other bursitis, not elsewhere classified, left hand|Other bursitis, not elsewhere classified, left hand +C2896321|T047|AB|M71.549|ICD10CM|Other bursitis, not elsewhere classified, unspecified hand|Other bursitis, not elsewhere classified, unspecified hand +C2896321|T047|PT|M71.549|ICD10CM|Other bursitis, not elsewhere classified, unspecified hand|Other bursitis, not elsewhere classified, unspecified hand +C2896322|T047|AB|M71.55|ICD10CM|Other bursitis, not elsewhere classified, hip|Other bursitis, not elsewhere classified, hip +C2896322|T047|HT|M71.55|ICD10CM|Other bursitis, not elsewhere classified, hip|Other bursitis, not elsewhere classified, hip +C2896323|T047|AB|M71.551|ICD10CM|Other bursitis, not elsewhere classified, right hip|Other bursitis, not elsewhere classified, right hip +C2896323|T047|PT|M71.551|ICD10CM|Other bursitis, not elsewhere classified, right hip|Other bursitis, not elsewhere classified, right hip +C2896324|T047|AB|M71.552|ICD10CM|Other bursitis, not elsewhere classified, left hip|Other bursitis, not elsewhere classified, left hip +C2896324|T047|PT|M71.552|ICD10CM|Other bursitis, not elsewhere classified, left hip|Other bursitis, not elsewhere classified, left hip +C2896325|T047|AB|M71.559|ICD10CM|Other bursitis, not elsewhere classified, unspecified hip|Other bursitis, not elsewhere classified, unspecified hip +C2896325|T047|PT|M71.559|ICD10CM|Other bursitis, not elsewhere classified, unspecified hip|Other bursitis, not elsewhere classified, unspecified hip +C2896326|T047|AB|M71.56|ICD10CM|Other bursitis, not elsewhere classified, knee|Other bursitis, not elsewhere classified, knee +C2896326|T047|HT|M71.56|ICD10CM|Other bursitis, not elsewhere classified, knee|Other bursitis, not elsewhere classified, knee +C2896327|T047|AB|M71.561|ICD10CM|Other bursitis, not elsewhere classified, right knee|Other bursitis, not elsewhere classified, right knee +C2896327|T047|PT|M71.561|ICD10CM|Other bursitis, not elsewhere classified, right knee|Other bursitis, not elsewhere classified, right knee +C2896328|T047|AB|M71.562|ICD10CM|Other bursitis, not elsewhere classified, left knee|Other bursitis, not elsewhere classified, left knee +C2896328|T047|PT|M71.562|ICD10CM|Other bursitis, not elsewhere classified, left knee|Other bursitis, not elsewhere classified, left knee +C2896329|T047|AB|M71.569|ICD10CM|Other bursitis, not elsewhere classified, unspecified knee|Other bursitis, not elsewhere classified, unspecified knee +C2896329|T047|PT|M71.569|ICD10CM|Other bursitis, not elsewhere classified, unspecified knee|Other bursitis, not elsewhere classified, unspecified knee +C0839311|T047|HT|M71.57|ICD10CM|Other bursitis, not elsewhere classified, ankle and foot|Other bursitis, not elsewhere classified, ankle and foot +C0839311|T047|AB|M71.57|ICD10CM|Other bursitis, not elsewhere classified, ankle and foot|Other bursitis, not elsewhere classified, ankle and foot +C2896330|T047|AB|M71.571|ICD10CM|Oth bursitis, not elsewhere classified, right ankle and foot|Oth bursitis, not elsewhere classified, right ankle and foot +C2896330|T047|PT|M71.571|ICD10CM|Other bursitis, not elsewhere classified, right ankle and foot|Other bursitis, not elsewhere classified, right ankle and foot +C2896331|T047|AB|M71.572|ICD10CM|Oth bursitis, not elsewhere classified, left ankle and foot|Oth bursitis, not elsewhere classified, left ankle and foot +C2896331|T047|PT|M71.572|ICD10CM|Other bursitis, not elsewhere classified, left ankle and foot|Other bursitis, not elsewhere classified, left ankle and foot +C2896332|T047|AB|M71.579|ICD10CM|Oth bursitis, not elsewhere classified, unsp ankle and foot|Oth bursitis, not elsewhere classified, unsp ankle and foot +C2896332|T047|PT|M71.579|ICD10CM|Other bursitis, not elsewhere classified, unspecified ankle and foot|Other bursitis, not elsewhere classified, unspecified ankle and foot +C0839312|T047|PT|M71.58|ICD10CM|Other bursitis, not elsewhere classified, other site|Other bursitis, not elsewhere classified, other site +C0839312|T047|AB|M71.58|ICD10CM|Other bursitis, not elsewhere classified, other site|Other bursitis, not elsewhere classified, other site +C0477660|T047|PT|M71.8|ICD10|Other specified bursopathies|Other specified bursopathies +C0477660|T047|HT|M71.8|ICD10CM|Other specified bursopathies|Other specified bursopathies +C0477660|T047|AB|M71.8|ICD10CM|Other specified bursopathies|Other specified bursopathies +C0477660|T047|AB|M71.80|ICD10CM|Other specified bursopathies, unspecified site|Other specified bursopathies, unspecified site +C0477660|T047|PT|M71.80|ICD10CM|Other specified bursopathies, unspecified site|Other specified bursopathies, unspecified site +C2896333|T047|AB|M71.81|ICD10CM|Other specified bursopathies, shoulder|Other specified bursopathies, shoulder +C2896333|T047|HT|M71.81|ICD10CM|Other specified bursopathies, shoulder|Other specified bursopathies, shoulder +C2896334|T047|AB|M71.811|ICD10CM|Other specified bursopathies, right shoulder|Other specified bursopathies, right shoulder +C2896334|T047|PT|M71.811|ICD10CM|Other specified bursopathies, right shoulder|Other specified bursopathies, right shoulder +C2896335|T047|AB|M71.812|ICD10CM|Other specified bursopathies, left shoulder|Other specified bursopathies, left shoulder +C2896335|T047|PT|M71.812|ICD10CM|Other specified bursopathies, left shoulder|Other specified bursopathies, left shoulder +C2896336|T047|AB|M71.819|ICD10CM|Other specified bursopathies, unspecified shoulder|Other specified bursopathies, unspecified shoulder +C2896336|T047|PT|M71.819|ICD10CM|Other specified bursopathies, unspecified shoulder|Other specified bursopathies, unspecified shoulder +C2896339|T047|AB|M71.82|ICD10CM|Other specified bursopathies, elbow|Other specified bursopathies, elbow +C2896339|T047|HT|M71.82|ICD10CM|Other specified bursopathies, elbow|Other specified bursopathies, elbow +C2896337|T047|AB|M71.821|ICD10CM|Other specified bursopathies, right elbow|Other specified bursopathies, right elbow +C2896337|T047|PT|M71.821|ICD10CM|Other specified bursopathies, right elbow|Other specified bursopathies, right elbow +C2896338|T047|AB|M71.822|ICD10CM|Other specified bursopathies, left elbow|Other specified bursopathies, left elbow +C2896338|T047|PT|M71.822|ICD10CM|Other specified bursopathies, left elbow|Other specified bursopathies, left elbow +C2896339|T047|AB|M71.829|ICD10CM|Other specified bursopathies, unspecified elbow|Other specified bursopathies, unspecified elbow +C2896339|T047|PT|M71.829|ICD10CM|Other specified bursopathies, unspecified elbow|Other specified bursopathies, unspecified elbow +C2896340|T047|AB|M71.83|ICD10CM|Other specified bursopathies, wrist|Other specified bursopathies, wrist +C2896340|T047|HT|M71.83|ICD10CM|Other specified bursopathies, wrist|Other specified bursopathies, wrist +C2896341|T047|AB|M71.831|ICD10CM|Other specified bursopathies, right wrist|Other specified bursopathies, right wrist +C2896341|T047|PT|M71.831|ICD10CM|Other specified bursopathies, right wrist|Other specified bursopathies, right wrist +C2896342|T047|AB|M71.832|ICD10CM|Other specified bursopathies, left wrist|Other specified bursopathies, left wrist +C2896342|T047|PT|M71.832|ICD10CM|Other specified bursopathies, left wrist|Other specified bursopathies, left wrist +C2896343|T047|AB|M71.839|ICD10CM|Other specified bursopathies, unspecified wrist|Other specified bursopathies, unspecified wrist +C2896343|T047|PT|M71.839|ICD10CM|Other specified bursopathies, unspecified wrist|Other specified bursopathies, unspecified wrist +C0839318|T047|HT|M71.84|ICD10CM|Other specified bursopathies, hand|Other specified bursopathies, hand +C0839318|T047|AB|M71.84|ICD10CM|Other specified bursopathies, hand|Other specified bursopathies, hand +C2896344|T047|AB|M71.841|ICD10CM|Other specified bursopathies, right hand|Other specified bursopathies, right hand +C2896344|T047|PT|M71.841|ICD10CM|Other specified bursopathies, right hand|Other specified bursopathies, right hand +C2896345|T047|AB|M71.842|ICD10CM|Other specified bursopathies, left hand|Other specified bursopathies, left hand +C2896345|T047|PT|M71.842|ICD10CM|Other specified bursopathies, left hand|Other specified bursopathies, left hand +C2896346|T047|AB|M71.849|ICD10CM|Other specified bursopathies, unspecified hand|Other specified bursopathies, unspecified hand +C2896346|T047|PT|M71.849|ICD10CM|Other specified bursopathies, unspecified hand|Other specified bursopathies, unspecified hand +C2896347|T047|AB|M71.85|ICD10CM|Other specified bursopathies, hip|Other specified bursopathies, hip +C2896347|T047|HT|M71.85|ICD10CM|Other specified bursopathies, hip|Other specified bursopathies, hip +C2896348|T047|AB|M71.851|ICD10CM|Other specified bursopathies, right hip|Other specified bursopathies, right hip +C2896348|T047|PT|M71.851|ICD10CM|Other specified bursopathies, right hip|Other specified bursopathies, right hip +C2896349|T047|AB|M71.852|ICD10CM|Other specified bursopathies, left hip|Other specified bursopathies, left hip +C2896349|T047|PT|M71.852|ICD10CM|Other specified bursopathies, left hip|Other specified bursopathies, left hip +C2896347|T047|AB|M71.859|ICD10CM|Other specified bursopathies, unspecified hip|Other specified bursopathies, unspecified hip +C2896347|T047|PT|M71.859|ICD10CM|Other specified bursopathies, unspecified hip|Other specified bursopathies, unspecified hip +C2896350|T047|AB|M71.86|ICD10CM|Other specified bursopathies, knee|Other specified bursopathies, knee +C2896350|T047|HT|M71.86|ICD10CM|Other specified bursopathies, knee|Other specified bursopathies, knee +C2896351|T047|AB|M71.861|ICD10CM|Other specified bursopathies, right knee|Other specified bursopathies, right knee +C2896351|T047|PT|M71.861|ICD10CM|Other specified bursopathies, right knee|Other specified bursopathies, right knee +C2896352|T047|AB|M71.862|ICD10CM|Other specified bursopathies, left knee|Other specified bursopathies, left knee +C2896352|T047|PT|M71.862|ICD10CM|Other specified bursopathies, left knee|Other specified bursopathies, left knee +C2896353|T047|AB|M71.869|ICD10CM|Other specified bursopathies, unspecified knee|Other specified bursopathies, unspecified knee +C2896353|T047|PT|M71.869|ICD10CM|Other specified bursopathies, unspecified knee|Other specified bursopathies, unspecified knee +C0839321|T047|HT|M71.87|ICD10CM|Other specified bursopathies, ankle and foot|Other specified bursopathies, ankle and foot +C0839321|T047|AB|M71.87|ICD10CM|Other specified bursopathies, ankle and foot|Other specified bursopathies, ankle and foot +C2896354|T047|AB|M71.871|ICD10CM|Other specified bursopathies, right ankle and foot|Other specified bursopathies, right ankle and foot +C2896354|T047|PT|M71.871|ICD10CM|Other specified bursopathies, right ankle and foot|Other specified bursopathies, right ankle and foot +C2896355|T047|AB|M71.872|ICD10CM|Other specified bursopathies, left ankle and foot|Other specified bursopathies, left ankle and foot +C2896355|T047|PT|M71.872|ICD10CM|Other specified bursopathies, left ankle and foot|Other specified bursopathies, left ankle and foot +C2896356|T047|AB|M71.879|ICD10CM|Other specified bursopathies, unspecified ankle and foot|Other specified bursopathies, unspecified ankle and foot +C2896356|T047|PT|M71.879|ICD10CM|Other specified bursopathies, unspecified ankle and foot|Other specified bursopathies, unspecified ankle and foot +C0839322|T047|PT|M71.88|ICD10CM|Other specified bursopathies, other site|Other specified bursopathies, other site +C0839322|T047|AB|M71.88|ICD10CM|Other specified bursopathies, other site|Other specified bursopathies, other site +C0839314|T047|PT|M71.89|ICD10CM|Other specified bursopathies, multiple sites|Other specified bursopathies, multiple sites +C0839314|T047|AB|M71.89|ICD10CM|Other specified bursopathies, multiple sites|Other specified bursopathies, multiple sites +C0006444|T047|ET|M71.9|ICD10CM|Bursitis NOS|Bursitis NOS +C0263946|T047|PT|M71.9|ICD10CM|Bursopathy, unspecified|Bursopathy, unspecified +C0263946|T047|AB|M71.9|ICD10CM|Bursopathy, unspecified|Bursopathy, unspecified +C0263946|T047|PT|M71.9|ICD10|Bursopathy, unspecified|Bursopathy, unspecified +C0477670|T047|AB|M72|ICD10CM|Fibroblastic disorders|Fibroblastic disorders +C0477670|T047|HT|M72|ICD10CM|Fibroblastic disorders|Fibroblastic disorders +C0477670|T047|HT|M72|ICD10|Fibroblastic disorders|Fibroblastic disorders +C0013312|T047|PT|M72.0|ICD10CM|Palmar fascial fibromatosis [Dupuytren]|Palmar fascial fibromatosis [Dupuytren] +C0013312|T047|AB|M72.0|ICD10CM|Palmar fascial fibromatosis [Dupuytren]|Palmar fascial fibromatosis [Dupuytren] +C0013312|T047|PT|M72.0|ICD10|Palmar fascial fibromatosis [Dupuytren]|Palmar fascial fibromatosis [Dupuytren] +C0264000|T047|PT|M72.1|ICD10|Knuckle pads|Knuckle pads +C0264000|T047|PT|M72.1|ICD10CM|Knuckle pads|Knuckle pads +C0264000|T047|AB|M72.1|ICD10CM|Knuckle pads|Knuckle pads +C0158360|T047|PT|M72.2|ICD10|Plantar fascial fibromatosis|Plantar fascial fibromatosis +C0158360|T047|PT|M72.2|ICD10CM|Plantar fascial fibromatosis|Plantar fascial fibromatosis +C0158360|T047|AB|M72.2|ICD10CM|Plantar fascial fibromatosis|Plantar fascial fibromatosis +C0149756|T047|ET|M72.2|ICD10CM|Plantar fasciitis|Plantar fasciitis +C0410005|T047|PT|M72.3|ICD10|Nodular fasciitis|Nodular fasciitis +C0410005|T047|ET|M72.4|ICD10CM|Nodular fasciitis|Nodular fasciitis +C0410005|T047|PT|M72.4|ICD10CM|Pseudosarcomatous fibromatosis|Pseudosarcomatous fibromatosis +C0410005|T047|AB|M72.4|ICD10CM|Pseudosarcomatous fibromatosis|Pseudosarcomatous fibromatosis +C0410005|T047|PT|M72.4|ICD10|Pseudosarcomatous fibromatosis|Pseudosarcomatous fibromatosis +C1879339|T047|PT|M72.5|ICD10|Fasciitis, not elsewhere classified|Fasciitis, not elsewhere classified +C0238124|T047|PT|M72.6|ICD10CM|Necrotizing fasciitis|Necrotizing fasciitis +C0238124|T047|AB|M72.6|ICD10CM|Necrotizing fasciitis|Necrotizing fasciitis +C1385470|T047|ET|M72.8|ICD10CM|Abscess of fascia|Abscess of fascia +C1879339|T047|ET|M72.8|ICD10CM|Fasciitis NEC|Fasciitis NEC +C0477662|T047|PT|M72.8|ICD10|Other fibroblastic disorders|Other fibroblastic disorders +C0477662|T047|PT|M72.8|ICD10CM|Other fibroblastic disorders|Other fibroblastic disorders +C0477662|T047|AB|M72.8|ICD10CM|Other fibroblastic disorders|Other fibroblastic disorders +C2896357|T047|ET|M72.8|ICD10CM|Other infective fasciitis|Other infective fasciitis +C0015645|T047|ET|M72.9|ICD10CM|Fasciitis NOS|Fasciitis NOS +C0477670|T047|PT|M72.9|ICD10|Fibroblastic disorder, unspecified|Fibroblastic disorder, unspecified +C0477670|T047|PT|M72.9|ICD10CM|Fibroblastic disorder, unspecified|Fibroblastic disorder, unspecified +C0477670|T047|AB|M72.9|ICD10CM|Fibroblastic disorder, unspecified|Fibroblastic disorder, unspecified +C0016048|T191|ET|M72.9|ICD10CM|Fibromatosis NOS|Fibromatosis NOS +C0694522|T047|HT|M73|ICD10|Soft tissue disorders in diseases classified elsewhere|Soft tissue disorders in diseases classified elsewhere +C0153218|T047|PT|M73.0|ICD10|Gonococcal bursitis|Gonococcal bursitis +C0349370|T047|PT|M73.1|ICD10|Syphilitic bursitis|Syphilitic bursitis +C0494987|T047|PT|M73.8|ICD10|Other soft tissue disorders in diseases classified elsewhere|Other soft tissue disorders in diseases classified elsewhere +C0494989|T047|HT|M75|ICD10|Shoulder lesions|Shoulder lesions +C0494989|T047|HT|M75|ICD10CM|Shoulder lesions|Shoulder lesions +C0494989|T047|AB|M75|ICD10CM|Shoulder lesions|Shoulder lesions +C0311223|T047|HT|M75.0|ICD10CM|Adhesive capsulitis of shoulder|Adhesive capsulitis of shoulder +C0311223|T047|AB|M75.0|ICD10CM|Adhesive capsulitis of shoulder|Adhesive capsulitis of shoulder +C0311223|T047|PT|M75.0|ICD10|Adhesive capsulitis of shoulder|Adhesive capsulitis of shoulder +C0311223|T047|ET|M75.0|ICD10CM|Frozen shoulder|Frozen shoulder +C1306835|T047|ET|M75.0|ICD10CM|Periarthritis of shoulder|Periarthritis of shoulder +C2896358|T047|AB|M75.00|ICD10CM|Adhesive capsulitis of unspecified shoulder|Adhesive capsulitis of unspecified shoulder +C2896358|T047|PT|M75.00|ICD10CM|Adhesive capsulitis of unspecified shoulder|Adhesive capsulitis of unspecified shoulder +C2896359|T047|PT|M75.01|ICD10CM|Adhesive capsulitis of right shoulder|Adhesive capsulitis of right shoulder +C2896359|T047|AB|M75.01|ICD10CM|Adhesive capsulitis of right shoulder|Adhesive capsulitis of right shoulder +C2896360|T047|PT|M75.02|ICD10CM|Adhesive capsulitis of left shoulder|Adhesive capsulitis of left shoulder +C2896360|T047|AB|M75.02|ICD10CM|Adhesive capsulitis of left shoulder|Adhesive capsulitis of left shoulder +C0263912|T047|ET|M75.1|ICD10CM|Rotator cuff syndrome|Rotator cuff syndrome +C0263912|T047|PT|M75.1|ICD10|Rotator cuff syndrome|Rotator cuff syndrome +C3264478|T047|AB|M75.1|ICD10CM|Rotator cuff tear or rupture, not specified as traumatic|Rotator cuff tear or rupture, not specified as traumatic +C3264478|T047|HT|M75.1|ICD10CM|Rotator cuff tear or rupture, not specified as traumatic|Rotator cuff tear or rupture, not specified as traumatic +C0263913|T047|ET|M75.1|ICD10CM|Supraspinatus syndrome|Supraspinatus syndrome +C3264477|T047|ET|M75.1|ICD10CM|Supraspinatus tear or rupture, not specified as traumatic|Supraspinatus tear or rupture, not specified as traumatic +C3264479|T047|AB|M75.10|ICD10CM|Unsp rotatr-cuff tear/ruptr, not specified as traumatic|Unsp rotatr-cuff tear/ruptr, not specified as traumatic +C3264479|T047|HT|M75.10|ICD10CM|Unspecified rotator cuff tear or rupture, not specified as traumatic|Unspecified rotator cuff tear or rupture, not specified as traumatic +C3264480|T047|AB|M75.100|ICD10CM|Unsp rotatr-cuff tear/ruptr of unsp shoulder, not trauma|Unsp rotatr-cuff tear/ruptr of unsp shoulder, not trauma +C3264480|T047|PT|M75.100|ICD10CM|Unspecified rotator cuff tear or rupture of unspecified shoulder, not specified as traumatic|Unspecified rotator cuff tear or rupture of unspecified shoulder, not specified as traumatic +C3264481|T047|AB|M75.101|ICD10CM|Unsp rotatr-cuff tear/ruptr of right shoulder, not trauma|Unsp rotatr-cuff tear/ruptr of right shoulder, not trauma +C3264481|T047|PT|M75.101|ICD10CM|Unspecified rotator cuff tear or rupture of right shoulder, not specified as traumatic|Unspecified rotator cuff tear or rupture of right shoulder, not specified as traumatic +C3264482|T047|AB|M75.102|ICD10CM|Unsp rotatr-cuff tear/ruptr of left shoulder, not trauma|Unsp rotatr-cuff tear/ruptr of left shoulder, not trauma +C3264482|T047|PT|M75.102|ICD10CM|Unspecified rotator cuff tear or rupture of left shoulder, not specified as traumatic|Unspecified rotator cuff tear or rupture of left shoulder, not specified as traumatic +C3264483|T020|HT|M75.11|ICD10CM|Incomplete rotator cuff tear or rupture not specified as traumatic|Incomplete rotator cuff tear or rupture not specified as traumatic +C3264483|T020|AB|M75.11|ICD10CM|Incomplete rotatr-cuff tear/ruptr not specified as traumatic|Incomplete rotatr-cuff tear/ruptr not specified as traumatic +C3264484|T020|AB|M75.110|ICD10CM|Incmpl rotatr-cuff tear/ruptr of unsp shoulder, not trauma|Incmpl rotatr-cuff tear/ruptr of unsp shoulder, not trauma +C3264484|T020|PT|M75.110|ICD10CM|Incomplete rotator cuff tear or rupture of unspecified shoulder, not specified as traumatic|Incomplete rotator cuff tear or rupture of unspecified shoulder, not specified as traumatic +C3264485|T047|PT|M75.111|ICD10CM|Incomplete rotator cuff tear or rupture of right shoulder, not specified as traumatic|Incomplete rotator cuff tear or rupture of right shoulder, not specified as traumatic +C3264485|T047|AB|M75.111|ICD10CM|Incomplete rotatr-cuff tear/ruptr of r shoulder, not trauma|Incomplete rotatr-cuff tear/ruptr of r shoulder, not trauma +C3264486|T047|PT|M75.112|ICD10CM|Incomplete rotator cuff tear or rupture of left shoulder, not specified as traumatic|Incomplete rotator cuff tear or rupture of left shoulder, not specified as traumatic +C3264486|T047|AB|M75.112|ICD10CM|Incomplete rotatr-cuff tear/ruptr of l shoulder, not trauma|Incomplete rotatr-cuff tear/ruptr of l shoulder, not trauma +C3264487|T047|HT|M75.12|ICD10CM|Complete rotator cuff tear or rupture not specified as traumatic|Complete rotator cuff tear or rupture not specified as traumatic +C3264487|T047|AB|M75.12|ICD10CM|Complete rotatr-cuff tear/ruptr not specified as traumatic|Complete rotatr-cuff tear/ruptr not specified as traumatic +C3264488|T047|PT|M75.120|ICD10CM|Complete rotator cuff tear or rupture of unspecified shoulder, not specified as traumatic|Complete rotator cuff tear or rupture of unspecified shoulder, not specified as traumatic +C3264488|T047|AB|M75.120|ICD10CM|Complete rotatr-cuff tear/ruptr of unsp shoulder, not trauma|Complete rotatr-cuff tear/ruptr of unsp shoulder, not trauma +C3264489|T047|PT|M75.121|ICD10CM|Complete rotator cuff tear or rupture of right shoulder, not specified as traumatic|Complete rotator cuff tear or rupture of right shoulder, not specified as traumatic +C3264489|T047|AB|M75.121|ICD10CM|Complete rotatr-cuff tear/ruptr of r shoulder, not trauma|Complete rotatr-cuff tear/ruptr of r shoulder, not trauma +C3264490|T047|PT|M75.122|ICD10CM|Complete rotator cuff tear or rupture of left shoulder, not specified as traumatic|Complete rotator cuff tear or rupture of left shoulder, not specified as traumatic +C3264490|T047|AB|M75.122|ICD10CM|Complete rotatr-cuff tear/ruptr of left shoulder, not trauma|Complete rotatr-cuff tear/ruptr of left shoulder, not trauma +C0151434|T047|HT|M75.2|ICD10CM|Bicipital tendinitis|Bicipital tendinitis +C0151434|T047|AB|M75.2|ICD10CM|Bicipital tendinitis|Bicipital tendinitis +C0151434|T047|PT|M75.2|ICD10|Bicipital tendinitis|Bicipital tendinitis +C2896365|T047|AB|M75.20|ICD10CM|Bicipital tendinitis, unspecified shoulder|Bicipital tendinitis, unspecified shoulder +C2896365|T047|PT|M75.20|ICD10CM|Bicipital tendinitis, unspecified shoulder|Bicipital tendinitis, unspecified shoulder +C2896366|T047|AB|M75.21|ICD10CM|Bicipital tendinitis, right shoulder|Bicipital tendinitis, right shoulder +C2896366|T047|PT|M75.21|ICD10CM|Bicipital tendinitis, right shoulder|Bicipital tendinitis, right shoulder +C2896367|T047|AB|M75.22|ICD10CM|Bicipital tendinitis, left shoulder|Bicipital tendinitis, left shoulder +C2896367|T047|PT|M75.22|ICD10CM|Bicipital tendinitis, left shoulder|Bicipital tendinitis, left shoulder +C0158303|T047|PT|M75.3|ICD10|Calcific tendinitis of shoulder|Calcific tendinitis of shoulder +C0158303|T047|HT|M75.3|ICD10CM|Calcific tendinitis of shoulder|Calcific tendinitis of shoulder +C0158303|T047|AB|M75.3|ICD10CM|Calcific tendinitis of shoulder|Calcific tendinitis of shoulder +C2896368|T046|ET|M75.3|ICD10CM|Calcified bursa of shoulder|Calcified bursa of shoulder +C2896369|T047|AB|M75.30|ICD10CM|Calcific tendinitis of unspecified shoulder|Calcific tendinitis of unspecified shoulder +C2896369|T047|PT|M75.30|ICD10CM|Calcific tendinitis of unspecified shoulder|Calcific tendinitis of unspecified shoulder +C2921580|T047|PT|M75.31|ICD10CM|Calcific tendinitis of right shoulder|Calcific tendinitis of right shoulder +C2921580|T047|AB|M75.31|ICD10CM|Calcific tendinitis of right shoulder|Calcific tendinitis of right shoulder +C2921579|T047|PT|M75.32|ICD10CM|Calcific tendinitis of left shoulder|Calcific tendinitis of left shoulder +C2921579|T047|AB|M75.32|ICD10CM|Calcific tendinitis of left shoulder|Calcific tendinitis of left shoulder +C0376685|T047|HT|M75.4|ICD10CM|Impingement syndrome of shoulder|Impingement syndrome of shoulder +C0376685|T047|AB|M75.4|ICD10CM|Impingement syndrome of shoulder|Impingement syndrome of shoulder +C0376685|T047|PT|M75.4|ICD10|Impingement syndrome of shoulder|Impingement syndrome of shoulder +C2896372|T047|AB|M75.40|ICD10CM|Impingement syndrome of unspecified shoulder|Impingement syndrome of unspecified shoulder +C2896372|T047|PT|M75.40|ICD10CM|Impingement syndrome of unspecified shoulder|Impingement syndrome of unspecified shoulder +C2896373|T047|AB|M75.41|ICD10CM|Impingement syndrome of right shoulder|Impingement syndrome of right shoulder +C2896373|T047|PT|M75.41|ICD10CM|Impingement syndrome of right shoulder|Impingement syndrome of right shoulder +C2896374|T047|AB|M75.42|ICD10CM|Impingement syndrome of left shoulder|Impingement syndrome of left shoulder +C2896374|T047|PT|M75.42|ICD10CM|Impingement syndrome of left shoulder|Impingement syndrome of left shoulder +C0262399|T047|HT|M75.5|ICD10CM|Bursitis of shoulder|Bursitis of shoulder +C0262399|T047|AB|M75.5|ICD10CM|Bursitis of shoulder|Bursitis of shoulder +C0262399|T047|PT|M75.5|ICD10|Bursitis of shoulder|Bursitis of shoulder +C2896375|T047|AB|M75.50|ICD10CM|Bursitis of unspecified shoulder|Bursitis of unspecified shoulder +C2896375|T047|PT|M75.50|ICD10CM|Bursitis of unspecified shoulder|Bursitis of unspecified shoulder +C2896376|T047|PT|M75.51|ICD10CM|Bursitis of right shoulder|Bursitis of right shoulder +C2896376|T047|AB|M75.51|ICD10CM|Bursitis of right shoulder|Bursitis of right shoulder +C2896377|T047|PT|M75.52|ICD10CM|Bursitis of left shoulder|Bursitis of left shoulder +C2896377|T047|AB|M75.52|ICD10CM|Bursitis of left shoulder|Bursitis of left shoulder +C0477664|T047|PT|M75.8|ICD10|Other shoulder lesions|Other shoulder lesions +C0477664|T047|HT|M75.8|ICD10CM|Other shoulder lesions|Other shoulder lesions +C0477664|T047|AB|M75.8|ICD10CM|Other shoulder lesions|Other shoulder lesions +C0477664|T047|AB|M75.80|ICD10CM|Other shoulder lesions, unspecified shoulder|Other shoulder lesions, unspecified shoulder +C0477664|T047|PT|M75.80|ICD10CM|Other shoulder lesions, unspecified shoulder|Other shoulder lesions, unspecified shoulder +C2896378|T047|AB|M75.81|ICD10CM|Other shoulder lesions, right shoulder|Other shoulder lesions, right shoulder +C2896378|T047|PT|M75.81|ICD10CM|Other shoulder lesions, right shoulder|Other shoulder lesions, right shoulder +C2896379|T047|AB|M75.82|ICD10CM|Other shoulder lesions, left shoulder|Other shoulder lesions, left shoulder +C2896379|T047|PT|M75.82|ICD10CM|Other shoulder lesions, left shoulder|Other shoulder lesions, left shoulder +C0494989|T047|HT|M75.9|ICD10CM|Shoulder lesion, unspecified|Shoulder lesion, unspecified +C0494989|T047|AB|M75.9|ICD10CM|Shoulder lesion, unspecified|Shoulder lesion, unspecified +C0494989|T047|PT|M75.9|ICD10|Shoulder lesion, unspecified|Shoulder lesion, unspecified +C2896380|T047|AB|M75.90|ICD10CM|Shoulder lesion, unspecified, unspecified shoulder|Shoulder lesion, unspecified, unspecified shoulder +C2896380|T047|PT|M75.90|ICD10CM|Shoulder lesion, unspecified, unspecified shoulder|Shoulder lesion, unspecified, unspecified shoulder +C2896381|T047|AB|M75.91|ICD10CM|Shoulder lesion, unspecified, right shoulder|Shoulder lesion, unspecified, right shoulder +C2896381|T047|PT|M75.91|ICD10CM|Shoulder lesion, unspecified, right shoulder|Shoulder lesion, unspecified, right shoulder +C2896382|T047|AB|M75.92|ICD10CM|Shoulder lesion, unspecified, left shoulder|Shoulder lesion, unspecified, left shoulder +C2896382|T047|PT|M75.92|ICD10CM|Shoulder lesion, unspecified, left shoulder|Shoulder lesion, unspecified, left shoulder +C0494990|T047|HT|M76|ICD10|Enthesopathies of lower limb, excluding foot|Enthesopathies of lower limb, excluding foot +C0494990|T047|AB|M76|ICD10CM|Enthesopathies, lower limb, excluding foot|Enthesopathies, lower limb, excluding foot +C0494990|T047|HT|M76|ICD10CM|Enthesopathies, lower limb, excluding foot|Enthesopathies, lower limb, excluding foot +C0263924|T047|PT|M76.0|ICD10|Gluteal tendinitis|Gluteal tendinitis +C0263924|T047|HT|M76.0|ICD10CM|Gluteal tendinitis|Gluteal tendinitis +C0263924|T047|AB|M76.0|ICD10CM|Gluteal tendinitis|Gluteal tendinitis +C2896383|T047|AB|M76.00|ICD10CM|Gluteal tendinitis, unspecified hip|Gluteal tendinitis, unspecified hip +C2896383|T047|PT|M76.00|ICD10CM|Gluteal tendinitis, unspecified hip|Gluteal tendinitis, unspecified hip +C2896384|T047|AB|M76.01|ICD10CM|Gluteal tendinitis, right hip|Gluteal tendinitis, right hip +C2896384|T047|PT|M76.01|ICD10CM|Gluteal tendinitis, right hip|Gluteal tendinitis, right hip +C2896385|T047|AB|M76.02|ICD10CM|Gluteal tendinitis, left hip|Gluteal tendinitis, left hip +C2896385|T047|PT|M76.02|ICD10CM|Gluteal tendinitis, left hip|Gluteal tendinitis, left hip +C0263926|T047|HT|M76.1|ICD10CM|Psoas tendinitis|Psoas tendinitis +C0263926|T047|AB|M76.1|ICD10CM|Psoas tendinitis|Psoas tendinitis +C0263926|T047|PT|M76.1|ICD10|Psoas tendinitis|Psoas tendinitis +C2896386|T047|AB|M76.10|ICD10CM|Psoas tendinitis, unspecified hip|Psoas tendinitis, unspecified hip +C2896386|T047|PT|M76.10|ICD10CM|Psoas tendinitis, unspecified hip|Psoas tendinitis, unspecified hip +C2896387|T047|AB|M76.11|ICD10CM|Psoas tendinitis, right hip|Psoas tendinitis, right hip +C2896387|T047|PT|M76.11|ICD10CM|Psoas tendinitis, right hip|Psoas tendinitis, right hip +C2896388|T047|AB|M76.12|ICD10CM|Psoas tendinitis, left hip|Psoas tendinitis, left hip +C2896388|T047|PT|M76.12|ICD10CM|Psoas tendinitis, left hip|Psoas tendinitis, left hip +C0263925|T033|PT|M76.2|ICD10|Iliac crest spur|Iliac crest spur +C0263925|T033|HT|M76.2|ICD10CM|Iliac crest spur|Iliac crest spur +C0263925|T033|AB|M76.2|ICD10CM|Iliac crest spur|Iliac crest spur +C2896389|T190|AB|M76.20|ICD10CM|Iliac crest spur, unspecified hip|Iliac crest spur, unspecified hip +C2896389|T190|PT|M76.20|ICD10CM|Iliac crest spur, unspecified hip|Iliac crest spur, unspecified hip +C2896390|T190|AB|M76.21|ICD10CM|Iliac crest spur, right hip|Iliac crest spur, right hip +C2896390|T190|PT|M76.21|ICD10CM|Iliac crest spur, right hip|Iliac crest spur, right hip +C2896391|T190|AB|M76.22|ICD10CM|Iliac crest spur, left hip|Iliac crest spur, left hip +C2896391|T190|PT|M76.22|ICD10CM|Iliac crest spur, left hip|Iliac crest spur, left hip +C1262206|T047|PT|M76.3|ICD10|Iliotibial band syndrome|Iliotibial band syndrome +C1262206|T047|HT|M76.3|ICD10CM|Iliotibial band syndrome|Iliotibial band syndrome +C1262206|T047|AB|M76.3|ICD10CM|Iliotibial band syndrome|Iliotibial band syndrome +C2896392|T047|AB|M76.30|ICD10CM|Iliotibial band syndrome, unspecified leg|Iliotibial band syndrome, unspecified leg +C2896392|T047|PT|M76.30|ICD10CM|Iliotibial band syndrome, unspecified leg|Iliotibial band syndrome, unspecified leg +C2896393|T047|AB|M76.31|ICD10CM|Iliotibial band syndrome, right leg|Iliotibial band syndrome, right leg +C2896393|T047|PT|M76.31|ICD10CM|Iliotibial band syndrome, right leg|Iliotibial band syndrome, right leg +C2896394|T047|AB|M76.32|ICD10CM|Iliotibial band syndrome, left leg|Iliotibial band syndrome, left leg +C2896394|T047|PT|M76.32|ICD10CM|Iliotibial band syndrome, left leg|Iliotibial band syndrome, left leg +C0263930|T047|HT|M76.4|ICD10CM|Tibial collateral bursitis [Pellegrini-Stieda]|Tibial collateral bursitis [Pellegrini-Stieda] +C0263930|T047|AB|M76.4|ICD10CM|Tibial collateral bursitis [Pellegrini-Stieda]|Tibial collateral bursitis [Pellegrini-Stieda] +C0263930|T047|PT|M76.4|ICD10|Tibial collateral bursitis [Pellegrini-Stieda]|Tibial collateral bursitis [Pellegrini-Stieda] +C2896395|T047|PT|M76.40|ICD10CM|Tibial collateral bursitis [Pellegrini-Stieda], unspecified leg|Tibial collateral bursitis [Pellegrini-Stieda], unspecified leg +C2896395|T047|AB|M76.40|ICD10CM|Tibial collateral bursitis, unspecified leg|Tibial collateral bursitis, unspecified leg +C2896396|T047|AB|M76.41|ICD10CM|Tibial collateral bursitis [Pellegrini-Stieda], right leg|Tibial collateral bursitis [Pellegrini-Stieda], right leg +C2896396|T047|PT|M76.41|ICD10CM|Tibial collateral bursitis [Pellegrini-Stieda], right leg|Tibial collateral bursitis [Pellegrini-Stieda], right leg +C2896397|T047|AB|M76.42|ICD10CM|Tibial collateral bursitis [Pellegrini-Stieda], left leg|Tibial collateral bursitis [Pellegrini-Stieda], left leg +C2896397|T047|PT|M76.42|ICD10CM|Tibial collateral bursitis [Pellegrini-Stieda], left leg|Tibial collateral bursitis [Pellegrini-Stieda], left leg +C0158317|T047|PT|M76.5|ICD10|Patellar tendinitis|Patellar tendinitis +C0158317|T047|HT|M76.5|ICD10CM|Patellar tendinitis|Patellar tendinitis +C0158317|T047|AB|M76.5|ICD10CM|Patellar tendinitis|Patellar tendinitis +C0158317|T047|AB|M76.50|ICD10CM|Patellar tendinitis, unspecified knee|Patellar tendinitis, unspecified knee +C0158317|T047|PT|M76.50|ICD10CM|Patellar tendinitis, unspecified knee|Patellar tendinitis, unspecified knee +C2896398|T047|AB|M76.51|ICD10CM|Patellar tendinitis, right knee|Patellar tendinitis, right knee +C2896398|T047|PT|M76.51|ICD10CM|Patellar tendinitis, right knee|Patellar tendinitis, right knee +C2896399|T047|AB|M76.52|ICD10CM|Patellar tendinitis, left knee|Patellar tendinitis, left knee +C2896399|T047|PT|M76.52|ICD10CM|Patellar tendinitis, left knee|Patellar tendinitis, left knee +C0149846|T047|ET|M76.6|ICD10CM|Achilles bursitis|Achilles bursitis +C0263933|T047|PT|M76.6|ICD10|Achilles tendinitis|Achilles tendinitis +C0263933|T047|HT|M76.6|ICD10CM|Achilles tendinitis|Achilles tendinitis +C0263933|T047|AB|M76.6|ICD10CM|Achilles tendinitis|Achilles tendinitis +C2896400|T047|AB|M76.60|ICD10CM|Achilles tendinitis, unspecified leg|Achilles tendinitis, unspecified leg +C2896400|T047|PT|M76.60|ICD10CM|Achilles tendinitis, unspecified leg|Achilles tendinitis, unspecified leg +C2896401|T047|AB|M76.61|ICD10CM|Achilles tendinitis, right leg|Achilles tendinitis, right leg +C2896401|T047|PT|M76.61|ICD10CM|Achilles tendinitis, right leg|Achilles tendinitis, right leg +C2896402|T047|AB|M76.62|ICD10CM|Achilles tendinitis, left leg|Achilles tendinitis, left leg +C2896402|T047|PT|M76.62|ICD10CM|Achilles tendinitis, left leg|Achilles tendinitis, left leg +C0263936|T047|HT|M76.7|ICD10CM|Peroneal tendinitis|Peroneal tendinitis +C0263936|T047|AB|M76.7|ICD10CM|Peroneal tendinitis|Peroneal tendinitis +C0263936|T047|PT|M76.7|ICD10|Peroneal tendinitis|Peroneal tendinitis +C2896403|T047|AB|M76.70|ICD10CM|Peroneal tendinitis, unspecified leg|Peroneal tendinitis, unspecified leg +C2896403|T047|PT|M76.70|ICD10CM|Peroneal tendinitis, unspecified leg|Peroneal tendinitis, unspecified leg +C2896404|T047|AB|M76.71|ICD10CM|Peroneal tendinitis, right leg|Peroneal tendinitis, right leg +C2896404|T047|PT|M76.71|ICD10CM|Peroneal tendinitis, right leg|Peroneal tendinitis, right leg +C2057349|T047|AB|M76.72|ICD10CM|Peroneal tendinitis, left leg|Peroneal tendinitis, left leg +C2057349|T047|PT|M76.72|ICD10CM|Peroneal tendinitis, left leg|Peroneal tendinitis, left leg +C0477665|T047|PT|M76.8|ICD10|Other enthesopathies of lower limb, excluding foot|Other enthesopathies of lower limb, excluding foot +C0477665|T047|AB|M76.8|ICD10CM|Other specified enthesopathies of lower limb, excluding foot|Other specified enthesopathies of lower limb, excluding foot +C0477665|T047|HT|M76.8|ICD10CM|Other specified enthesopathies of lower limb, excluding foot|Other specified enthesopathies of lower limb, excluding foot +C0003152|T047|AB|M76.81|ICD10CM|Anterior tibial syndrome|Anterior tibial syndrome +C0003152|T047|HT|M76.81|ICD10CM|Anterior tibial syndrome|Anterior tibial syndrome +C2977223|T047|AB|M76.811|ICD10CM|Anterior tibial syndrome, right leg|Anterior tibial syndrome, right leg +C2977223|T047|PT|M76.811|ICD10CM|Anterior tibial syndrome, right leg|Anterior tibial syndrome, right leg +C2977224|T047|AB|M76.812|ICD10CM|Anterior tibial syndrome, left leg|Anterior tibial syndrome, left leg +C2977224|T047|PT|M76.812|ICD10CM|Anterior tibial syndrome, left leg|Anterior tibial syndrome, left leg +C2977225|T047|AB|M76.819|ICD10CM|Anterior tibial syndrome, unspecified leg|Anterior tibial syndrome, unspecified leg +C2977225|T047|PT|M76.819|ICD10CM|Anterior tibial syndrome, unspecified leg|Anterior tibial syndrome, unspecified leg +C0554595|T047|AB|M76.82|ICD10CM|Posterior tibial tendinitis|Posterior tibial tendinitis +C0554595|T047|HT|M76.82|ICD10CM|Posterior tibial tendinitis|Posterior tibial tendinitis +C2977226|T047|AB|M76.821|ICD10CM|Posterior tibial tendinitis, right leg|Posterior tibial tendinitis, right leg +C2977226|T047|PT|M76.821|ICD10CM|Posterior tibial tendinitis, right leg|Posterior tibial tendinitis, right leg +C2977227|T047|AB|M76.822|ICD10CM|Posterior tibial tendinitis, left leg|Posterior tibial tendinitis, left leg +C2977227|T047|PT|M76.822|ICD10CM|Posterior tibial tendinitis, left leg|Posterior tibial tendinitis, left leg +C2977228|T047|AB|M76.829|ICD10CM|Posterior tibial tendinitis, unspecified leg|Posterior tibial tendinitis, unspecified leg +C2977228|T047|PT|M76.829|ICD10CM|Posterior tibial tendinitis, unspecified leg|Posterior tibial tendinitis, unspecified leg +C0477665|T047|HT|M76.89|ICD10CM|Other specified enthesopathies of lower limb, excluding foot|Other specified enthesopathies of lower limb, excluding foot +C0477665|T047|AB|M76.89|ICD10CM|Other specified enthesopathies of lower limb, excluding foot|Other specified enthesopathies of lower limb, excluding foot +C2977229|T047|AB|M76.891|ICD10CM|Oth enthesopathies of right lower limb, excluding foot|Oth enthesopathies of right lower limb, excluding foot +C2977229|T047|PT|M76.891|ICD10CM|Other specified enthesopathies of right lower limb, excluding foot|Other specified enthesopathies of right lower limb, excluding foot +C2977230|T047|AB|M76.892|ICD10CM|Oth enthesopathies of left lower limb, excluding foot|Oth enthesopathies of left lower limb, excluding foot +C2977230|T047|PT|M76.892|ICD10CM|Other specified enthesopathies of left lower limb, excluding foot|Other specified enthesopathies of left lower limb, excluding foot +C2977231|T047|AB|M76.899|ICD10CM|Oth enthesopathies of unspecified lower limb, excluding foot|Oth enthesopathies of unspecified lower limb, excluding foot +C2977231|T047|PT|M76.899|ICD10CM|Other specified enthesopathies of unspecified lower limb, excluding foot|Other specified enthesopathies of unspecified lower limb, excluding foot +C0477671|T047|PT|M76.9|ICD10|Enthesopathy of lower limb, unspecified|Enthesopathy of lower limb, unspecified +C2896415|T047|AB|M76.9|ICD10CM|Unspecified enthesopathy, lower limb, excluding foot|Unspecified enthesopathy, lower limb, excluding foot +C2896415|T047|PT|M76.9|ICD10CM|Unspecified enthesopathy, lower limb, excluding foot|Unspecified enthesopathy, lower limb, excluding foot +C0494992|T047|HT|M77|ICD10|Other enthesopathies|Other enthesopathies +C0494992|T047|AB|M77|ICD10CM|Other enthesopathies|Other enthesopathies +C0494992|T047|HT|M77|ICD10CM|Other enthesopathies|Other enthesopathies +C0158309|T020|HT|M77.0|ICD10CM|Medial epicondylitis|Medial epicondylitis +C0158309|T020|AB|M77.0|ICD10CM|Medial epicondylitis|Medial epicondylitis +C0158309|T020|PT|M77.0|ICD10|Medial epicondylitis|Medial epicondylitis +C0158309|T020|AB|M77.00|ICD10CM|Medial epicondylitis, unspecified elbow|Medial epicondylitis, unspecified elbow +C0158309|T020|PT|M77.00|ICD10CM|Medial epicondylitis, unspecified elbow|Medial epicondylitis, unspecified elbow +C2896425|T047|AB|M77.01|ICD10CM|Medial epicondylitis, right elbow|Medial epicondylitis, right elbow +C2896425|T047|PT|M77.01|ICD10CM|Medial epicondylitis, right elbow|Medial epicondylitis, right elbow +C2896426|T020|AB|M77.02|ICD10CM|Medial epicondylitis, left elbow|Medial epicondylitis, left elbow +C2896426|T020|PT|M77.02|ICD10CM|Medial epicondylitis, left elbow|Medial epicondylitis, left elbow +C0039516|T047|HT|M77.1|ICD10CM|Lateral epicondylitis|Lateral epicondylitis +C0039516|T047|AB|M77.1|ICD10CM|Lateral epicondylitis|Lateral epicondylitis +C0039516|T047|PT|M77.1|ICD10|Lateral epicondylitis|Lateral epicondylitis +C0039516|T047|ET|M77.1|ICD10CM|Tennis elbow|Tennis elbow +C2896427|T047|AB|M77.10|ICD10CM|Lateral epicondylitis, unspecified elbow|Lateral epicondylitis, unspecified elbow +C2896427|T047|PT|M77.10|ICD10CM|Lateral epicondylitis, unspecified elbow|Lateral epicondylitis, unspecified elbow +C2104096|T047|AB|M77.11|ICD10CM|Lateral epicondylitis, right elbow|Lateral epicondylitis, right elbow +C2104096|T047|PT|M77.11|ICD10CM|Lateral epicondylitis, right elbow|Lateral epicondylitis, right elbow +C2104097|T047|AB|M77.12|ICD10CM|Lateral epicondylitis, left elbow|Lateral epicondylitis, left elbow +C2104097|T047|PT|M77.12|ICD10CM|Lateral epicondylitis, left elbow|Lateral epicondylitis, left elbow +C0263921|T047|PT|M77.2|ICD10|Periarthritis of wrist|Periarthritis of wrist +C0263921|T047|HT|M77.2|ICD10CM|Periarthritis of wrist|Periarthritis of wrist +C0263921|T047|AB|M77.2|ICD10CM|Periarthritis of wrist|Periarthritis of wrist +C2896428|T047|AB|M77.20|ICD10CM|Periarthritis, unspecified wrist|Periarthritis, unspecified wrist +C2896428|T047|PT|M77.20|ICD10CM|Periarthritis, unspecified wrist|Periarthritis, unspecified wrist +C2896429|T047|AB|M77.21|ICD10CM|Periarthritis, right wrist|Periarthritis, right wrist +C2896429|T047|PT|M77.21|ICD10CM|Periarthritis, right wrist|Periarthritis, right wrist +C2896430|T047|AB|M77.22|ICD10CM|Periarthritis, left wrist|Periarthritis, left wrist +C2896430|T047|PT|M77.22|ICD10CM|Periarthritis, left wrist|Periarthritis, left wrist +C0158322|T047|PT|M77.3|ICD10|Calcaneal spur|Calcaneal spur +C0158322|T047|HT|M77.3|ICD10CM|Calcaneal spur|Calcaneal spur +C0158322|T047|AB|M77.3|ICD10CM|Calcaneal spur|Calcaneal spur +C0158322|T047|AB|M77.30|ICD10CM|Calcaneal spur, unspecified foot|Calcaneal spur, unspecified foot +C0158322|T047|PT|M77.30|ICD10CM|Calcaneal spur, unspecified foot|Calcaneal spur, unspecified foot +C2896431|T047|AB|M77.31|ICD10CM|Calcaneal spur, right foot|Calcaneal spur, right foot +C2896431|T047|PT|M77.31|ICD10CM|Calcaneal spur, right foot|Calcaneal spur, right foot +C2896432|T047|AB|M77.32|ICD10CM|Calcaneal spur, left foot|Calcaneal spur, left foot +C2896432|T047|PT|M77.32|ICD10CM|Calcaneal spur, left foot|Calcaneal spur, left foot +C0025587|T184|HT|M77.4|ICD10CM|Metatarsalgia|Metatarsalgia +C0025587|T184|AB|M77.4|ICD10CM|Metatarsalgia|Metatarsalgia +C0025587|T184|PT|M77.4|ICD10|Metatarsalgia|Metatarsalgia +C0025587|T184|AB|M77.40|ICD10CM|Metatarsalgia, unspecified foot|Metatarsalgia, unspecified foot +C0025587|T184|PT|M77.40|ICD10CM|Metatarsalgia, unspecified foot|Metatarsalgia, unspecified foot +C2896433|T184|AB|M77.41|ICD10CM|Metatarsalgia, right foot|Metatarsalgia, right foot +C2896433|T184|PT|M77.41|ICD10CM|Metatarsalgia, right foot|Metatarsalgia, right foot +C2896434|T184|AB|M77.42|ICD10CM|Metatarsalgia, left foot|Metatarsalgia, left foot +C2896434|T184|PT|M77.42|ICD10CM|Metatarsalgia, left foot|Metatarsalgia, left foot +C0477666|T047|PT|M77.5|ICD10|Other enthesopathy of foot|Other enthesopathy of foot +C5140863|T047|AB|M77.5|ICD10CM|Other enthesopathy of foot and ankle|Other enthesopathy of foot and ankle +C5140863|T047|HT|M77.5|ICD10CM|Other enthesopathy of foot and ankle|Other enthesopathy of foot and ankle +C5140864|T047|AB|M77.50|ICD10CM|Other enthesopathy of unspecified foot and ankle|Other enthesopathy of unspecified foot and ankle +C5140864|T047|PT|M77.50|ICD10CM|Other enthesopathy of unspecified foot and ankle|Other enthesopathy of unspecified foot and ankle +C5140865|T047|AB|M77.51|ICD10CM|Other enthesopathy of right foot and ankle|Other enthesopathy of right foot and ankle +C5140865|T047|PT|M77.51|ICD10CM|Other enthesopathy of right foot and ankle|Other enthesopathy of right foot and ankle +C5140866|T047|AB|M77.52|ICD10CM|Other enthesopathy of left foot and ankle|Other enthesopathy of left foot and ankle +C5140866|T047|PT|M77.52|ICD10CM|Other enthesopathy of left foot and ankle|Other enthesopathy of left foot and ankle +C0869067|T047|PT|M77.8|ICD10CM|Other enthesopathies, not elsewhere classified|Other enthesopathies, not elsewhere classified +C0869067|T047|AB|M77.8|ICD10CM|Other enthesopathies, not elsewhere classified|Other enthesopathies, not elsewhere classified +C0869067|T047|PT|M77.8|ICD10|Other enthesopathies, not elsewhere classified|Other enthesopathies, not elsewhere classified +C1956089|T047|ET|M77.9|ICD10CM|Bone spur NOS|Bone spur NOS +C0263907|T047|ET|M77.9|ICD10CM|Capsulitis NOS|Capsulitis NOS +C0242490|T047|PT|M77.9|ICD10CM|Enthesopathy, unspecified|Enthesopathy, unspecified +C0242490|T047|AB|M77.9|ICD10CM|Enthesopathy, unspecified|Enthesopathy, unspecified +C0242490|T047|PT|M77.9|ICD10|Enthesopathy, unspecified|Enthesopathy, unspecified +C0031037|T047|ET|M77.9|ICD10CM|Periarthritis NOS|Periarthritis NOS +C0039503|T047|ET|M77.9|ICD10CM|Tendinitis NOS|Tendinitis NOS +C2896437|T047|AB|M79|ICD10CM|Oth and unsp soft tissue disorders, not elsewhere classified|Oth and unsp soft tissue disorders, not elsewhere classified +C2896437|T047|HT|M79|ICD10CM|Other and unspecified soft tissue disorders, not elsewhere classified|Other and unspecified soft tissue disorders, not elsewhere classified +C0494993|T047|HT|M79|ICD10|Other soft tissue disorders, not elsewhere classified|Other soft tissue disorders, not elsewhere classified +C0035435|T047|PT|M79.0|ICD10|Rheumatism, unspecified|Rheumatism, unspecified +C0035435|T047|PT|M79.0|ICD10CM|Rheumatism, unspecified|Rheumatism, unspecified +C0035435|T047|AB|M79.0|ICD10CM|Rheumatism, unspecified|Rheumatism, unspecified +C0231528|T184|PT|M79.1|ICD10|Myalgia|Myalgia +C0231528|T184|AB|M79.1|ICD10CM|Myalgia|Myalgia +C0231528|T184|HT|M79.1|ICD10CM|Myalgia|Myalgia +C0016053|T047|ET|M79.1|ICD10CM|Myofascial pain syndrome|Myofascial pain syndrome +C0839433|T047|AB|M79.10|ICD10CM|Myalgia, unspecified site|Myalgia, unspecified site +C0839433|T047|PT|M79.10|ICD10CM|Myalgia, unspecified site|Myalgia, unspecified site +C4703321|T047|AB|M79.11|ICD10CM|Myalgia of mastication muscle|Myalgia of mastication muscle +C4703321|T047|PT|M79.11|ICD10CM|Myalgia of mastication muscle|Myalgia of mastication muscle +C4703322|T047|AB|M79.12|ICD10CM|Myalgia of auxiliary muscles, head and neck|Myalgia of auxiliary muscles, head and neck +C4703322|T047|PT|M79.12|ICD10CM|Myalgia of auxiliary muscles, head and neck|Myalgia of auxiliary muscles, head and neck +C0839432|T047|AB|M79.18|ICD10CM|Myalgia, other site|Myalgia, other site +C0839432|T047|PT|M79.18|ICD10CM|Myalgia, other site|Myalgia, other site +C0494994|T047|PT|M79.2|ICD10CM|Neuralgia and neuritis, unspecified|Neuralgia and neuritis, unspecified +C0494994|T047|AB|M79.2|ICD10CM|Neuralgia and neuritis, unspecified|Neuralgia and neuritis, unspecified +C0494994|T047|PT|M79.2|ICD10|Neuralgia and neuritis, unspecified|Neuralgia and neuritis, unspecified +C0030326|T047|PT|M79.3|ICD10CM|Panniculitis, unspecified|Panniculitis, unspecified +C0030326|T047|AB|M79.3|ICD10CM|Panniculitis, unspecified|Panniculitis, unspecified +C0030326|T047|PT|M79.3|ICD10|Panniculitis, unspecified|Panniculitis, unspecified +C0158366|T033|PT|M79.4|ICD10|Hypertrophy of (infrapatellar) fat pad|Hypertrophy of (infrapatellar) fat pad +C0158366|T033|PT|M79.4|ICD10CM|Hypertrophy of (infrapatellar) fat pad|Hypertrophy of (infrapatellar) fat pad +C0158366|T033|AB|M79.4|ICD10CM|Hypertrophy of (infrapatellar) fat pad|Hypertrophy of (infrapatellar) fat pad +C0158368|T020|PT|M79.5|ICD10CM|Residual foreign body in soft tissue|Residual foreign body in soft tissue +C0158368|T020|AB|M79.5|ICD10CM|Residual foreign body in soft tissue|Residual foreign body in soft tissue +C0158368|T020|PT|M79.5|ICD10|Residual foreign body in soft tissue|Residual foreign body in soft tissue +C0030196|T184|PT|M79.6|ICD10|Pain in limb|Pain in limb +C2896438|T047|AB|M79.6|ICD10CM|Pain in limb, hand, foot, fingers and toes|Pain in limb, hand, foot, fingers and toes +C2896438|T047|HT|M79.6|ICD10CM|Pain in limb, hand, foot, fingers and toes|Pain in limb, hand, foot, fingers and toes +C2896439|T047|AB|M79.60|ICD10CM|Pain in limb, unspecified|Pain in limb, unspecified +C2896439|T047|HT|M79.60|ICD10CM|Pain in limb, unspecified|Pain in limb, unspecified +C0564821|T184|PT|M79.601|ICD10CM|Pain in right arm|Pain in right arm +C0564821|T184|AB|M79.601|ICD10CM|Pain in right arm|Pain in right arm +C0564821|T184|ET|M79.601|ICD10CM|Pain in right upper limb NOS|Pain in right upper limb NOS +C0564820|T184|PT|M79.602|ICD10CM|Pain in left arm|Pain in left arm +C0564820|T184|AB|M79.602|ICD10CM|Pain in left arm|Pain in left arm +C0564820|T184|ET|M79.602|ICD10CM|Pain in left upper limb NOS|Pain in left upper limb NOS +C2896440|T047|AB|M79.603|ICD10CM|Pain in arm, unspecified|Pain in arm, unspecified +C2896440|T047|PT|M79.603|ICD10CM|Pain in arm, unspecified|Pain in arm, unspecified +C0239377|T184|ET|M79.603|ICD10CM|Pain in upper limb NOS|Pain in upper limb NOS +C0564823|T184|PT|M79.604|ICD10CM|Pain in right leg|Pain in right leg +C0564823|T184|AB|M79.604|ICD10CM|Pain in right leg|Pain in right leg +C2896441|T184|ET|M79.604|ICD10CM|Pain in right lower limb NOS|Pain in right lower limb NOS +C0564822|T184|PT|M79.605|ICD10CM|Pain in left leg|Pain in left leg +C0564822|T184|AB|M79.605|ICD10CM|Pain in left leg|Pain in left leg +C2896442|T184|ET|M79.605|ICD10CM|Pain in left lower limb NOS|Pain in left lower limb NOS +C2896443|T047|AB|M79.606|ICD10CM|Pain in leg, unspecified|Pain in leg, unspecified +C2896443|T047|PT|M79.606|ICD10CM|Pain in leg, unspecified|Pain in leg, unspecified +C0023222|T184|ET|M79.606|ICD10CM|Pain in lower limb NOS|Pain in lower limb NOS +C0030196|T184|ET|M79.609|ICD10CM|Pain in limb NOS|Pain in limb NOS +C2896444|T047|AB|M79.609|ICD10CM|Pain in unspecified limb|Pain in unspecified limb +C2896444|T047|PT|M79.609|ICD10CM|Pain in unspecified limb|Pain in unspecified limb +C2896445|T184|ET|M79.62|ICD10CM|Pain in axillary region|Pain in axillary region +C0839476|T184|HT|M79.62|ICD10CM|Pain in upper arm|Pain in upper arm +C0839476|T184|AB|M79.62|ICD10CM|Pain in upper arm|Pain in upper arm +C2032401|T184|AB|M79.621|ICD10CM|Pain in right upper arm|Pain in right upper arm +C2032401|T184|PT|M79.621|ICD10CM|Pain in right upper arm|Pain in right upper arm +C2032333|T184|AB|M79.622|ICD10CM|Pain in left upper arm|Pain in left upper arm +C2032333|T184|PT|M79.622|ICD10CM|Pain in left upper arm|Pain in left upper arm +C2896449|T047|AB|M79.629|ICD10CM|Pain in unspecified upper arm|Pain in unspecified upper arm +C2896449|T047|PT|M79.629|ICD10CM|Pain in unspecified upper arm|Pain in unspecified upper arm +C0239667|T184|HT|M79.63|ICD10CM|Pain in forearm|Pain in forearm +C0239667|T184|AB|M79.63|ICD10CM|Pain in forearm|Pain in forearm +C2126411|T184|AB|M79.631|ICD10CM|Pain in right forearm|Pain in right forearm +C2126411|T184|PT|M79.631|ICD10CM|Pain in right forearm|Pain in right forearm +C2126412|T184|AB|M79.632|ICD10CM|Pain in left forearm|Pain in left forearm +C2126412|T184|PT|M79.632|ICD10CM|Pain in left forearm|Pain in left forearm +C0239667|T184|AB|M79.639|ICD10CM|Pain in unspecified forearm|Pain in unspecified forearm +C0239667|T184|PT|M79.639|ICD10CM|Pain in unspecified forearm|Pain in unspecified forearm +C2896450|T047|AB|M79.64|ICD10CM|Pain in hand and fingers|Pain in hand and fingers +C2896450|T047|HT|M79.64|ICD10CM|Pain in hand and fingers|Pain in hand and fingers +C2032420|T184|PT|M79.641|ICD10CM|Pain in right hand|Pain in right hand +C2032420|T184|AB|M79.641|ICD10CM|Pain in right hand|Pain in right hand +C2032351|T184|PT|M79.642|ICD10CM|Pain in left hand|Pain in left hand +C2032351|T184|AB|M79.642|ICD10CM|Pain in left hand|Pain in left hand +C2896451|T047|AB|M79.643|ICD10CM|Pain in unspecified hand|Pain in unspecified hand +C2896451|T047|PT|M79.643|ICD10CM|Pain in unspecified hand|Pain in unspecified hand +C2896452|T184|AB|M79.644|ICD10CM|Pain in right finger(s)|Pain in right finger(s) +C2896452|T184|PT|M79.644|ICD10CM|Pain in right finger(s)|Pain in right finger(s) +C2896453|T184|AB|M79.645|ICD10CM|Pain in left finger(s)|Pain in left finger(s) +C2896453|T184|PT|M79.645|ICD10CM|Pain in left finger(s)|Pain in left finger(s) +C2896454|T047|AB|M79.646|ICD10CM|Pain in unspecified finger(s)|Pain in unspecified finger(s) +C2896454|T047|PT|M79.646|ICD10CM|Pain in unspecified finger(s)|Pain in unspecified finger(s) +C0241374|T184|HT|M79.65|ICD10CM|Pain in thigh|Pain in thigh +C0241374|T184|AB|M79.65|ICD10CM|Pain in thigh|Pain in thigh +C2896455|T184|AB|M79.651|ICD10CM|Pain in right thigh|Pain in right thigh +C2896455|T184|PT|M79.651|ICD10CM|Pain in right thigh|Pain in right thigh +C2896456|T184|AB|M79.652|ICD10CM|Pain in left thigh|Pain in left thigh +C2896456|T184|PT|M79.652|ICD10CM|Pain in left thigh|Pain in left thigh +C0241374|T184|AB|M79.659|ICD10CM|Pain in unspecified thigh|Pain in unspecified thigh +C0241374|T184|PT|M79.659|ICD10CM|Pain in unspecified thigh|Pain in unspecified thigh +C0839480|T184|AB|M79.66|ICD10CM|Pain in lower leg|Pain in lower leg +C0839480|T184|HT|M79.66|ICD10CM|Pain in lower leg|Pain in lower leg +C0564823|T184|AB|M79.661|ICD10CM|Pain in right lower leg|Pain in right lower leg +C0564823|T184|PT|M79.661|ICD10CM|Pain in right lower leg|Pain in right lower leg +C0564822|T184|AB|M79.662|ICD10CM|Pain in left lower leg|Pain in left lower leg +C0564822|T184|PT|M79.662|ICD10CM|Pain in left lower leg|Pain in left lower leg +C0023222|T184|AB|M79.669|ICD10CM|Pain in unspecified lower leg|Pain in unspecified lower leg +C0023222|T184|PT|M79.669|ICD10CM|Pain in unspecified lower leg|Pain in unspecified lower leg +C1534968|T184|HT|M79.67|ICD10CM|Pain in foot and toes|Pain in foot and toes +C1534968|T184|AB|M79.67|ICD10CM|Pain in foot and toes|Pain in foot and toes +C2016977|T184|PT|M79.671|ICD10CM|Pain in right foot|Pain in right foot +C2016977|T184|AB|M79.671|ICD10CM|Pain in right foot|Pain in right foot +C2141243|T184|PT|M79.672|ICD10CM|Pain in left foot|Pain in left foot +C2141243|T184|AB|M79.672|ICD10CM|Pain in left foot|Pain in left foot +C2896459|T184|AB|M79.673|ICD10CM|Pain in unspecified foot|Pain in unspecified foot +C2896459|T184|PT|M79.673|ICD10CM|Pain in unspecified foot|Pain in unspecified foot +C2896460|T184|AB|M79.674|ICD10CM|Pain in right toe(s)|Pain in right toe(s) +C2896460|T184|PT|M79.674|ICD10CM|Pain in right toe(s)|Pain in right toe(s) +C2896461|T184|AB|M79.675|ICD10CM|Pain in left toe(s)|Pain in left toe(s) +C2896461|T184|PT|M79.675|ICD10CM|Pain in left toe(s)|Pain in left toe(s) +C2896462|T184|AB|M79.676|ICD10CM|Pain in unspecified toe(s)|Pain in unspecified toe(s) +C2896462|T184|PT|M79.676|ICD10CM|Pain in unspecified toe(s)|Pain in unspecified toe(s) +C0016053|T047|PT|M79.7|ICD10CM|Fibromyalgia|Fibromyalgia +C0016053|T047|AB|M79.7|ICD10CM|Fibromyalgia|Fibromyalgia +C0016053|T047|ET|M79.7|ICD10CM|Fibromyositis|Fibromyositis +C0016053|T047|ET|M79.7|ICD10CM|Fibrositis|Fibrositis +C0262942|T047|ET|M79.7|ICD10CM|Myofibrositis|Myofibrositis +C0477668|T047|HT|M79.8|ICD10CM|Other specified soft tissue disorders|Other specified soft tissue disorders +C0477668|T047|AB|M79.8|ICD10CM|Other specified soft tissue disorders|Other specified soft tissue disorders +C0477668|T047|PT|M79.8|ICD10|Other specified soft tissue disorders|Other specified soft tissue disorders +C2349649|T046|ET|M79.81|ICD10CM|Nontraumatic hematoma of muscle|Nontraumatic hematoma of muscle +C2349648|T047|AB|M79.81|ICD10CM|Nontraumatic hematoma of soft tissue|Nontraumatic hematoma of soft tissue +C2349648|T047|PT|M79.81|ICD10CM|Nontraumatic hematoma of soft tissue|Nontraumatic hematoma of soft tissue +C2896463|T047|ET|M79.81|ICD10CM|Nontraumatic seroma of muscle and soft tissue|Nontraumatic seroma of muscle and soft tissue +C0477668|T047|PT|M79.89|ICD10CM|Other specified soft tissue disorders|Other specified soft tissue disorders +C0477668|T047|AB|M79.89|ICD10CM|Other specified soft tissue disorders|Other specified soft tissue disorders +C0343211|T184|ET|M79.89|ICD10CM|Polyalgia|Polyalgia +C0263978|T047|PT|M79.9|ICD10CM|Soft tissue disorder, unspecified|Soft tissue disorder, unspecified +C0263978|T047|AB|M79.9|ICD10CM|Soft tissue disorder, unspecified|Soft tissue disorder, unspecified +C0263978|T047|PT|M79.9|ICD10|Soft tissue disorder, unspecified|Soft tissue disorder, unspecified +C1719623|T047|AB|M79.A|ICD10CM|Nontraumatic compartment syndrome|Nontraumatic compartment syndrome +C1719623|T047|HT|M79.A|ICD10CM|Nontraumatic compartment syndrome|Nontraumatic compartment syndrome +C1719619|T047|ET|M79.A1|ICD10CM|Nontraumatic compartment syndrome of shoulder, arm, forearm, wrist, hand, and fingers|Nontraumatic compartment syndrome of shoulder, arm, forearm, wrist, hand, and fingers +C1719618|T047|HT|M79.A1|ICD10CM|Nontraumatic compartment syndrome of upper extremity|Nontraumatic compartment syndrome of upper extremity +C1719618|T047|AB|M79.A1|ICD10CM|Nontraumatic compartment syndrome of upper extremity|Nontraumatic compartment syndrome of upper extremity +C2896464|T047|AB|M79.A11|ICD10CM|Nontraumatic compartment syndrome of right upper extremity|Nontraumatic compartment syndrome of right upper extremity +C2896464|T047|PT|M79.A11|ICD10CM|Nontraumatic compartment syndrome of right upper extremity|Nontraumatic compartment syndrome of right upper extremity +C2896465|T047|AB|M79.A12|ICD10CM|Nontraumatic compartment syndrome of left upper extremity|Nontraumatic compartment syndrome of left upper extremity +C2896465|T047|PT|M79.A12|ICD10CM|Nontraumatic compartment syndrome of left upper extremity|Nontraumatic compartment syndrome of left upper extremity +C2896466|T047|AB|M79.A19|ICD10CM|Nontraumatic compartment syndrome of unsp upper extremity|Nontraumatic compartment syndrome of unsp upper extremity +C2896466|T047|PT|M79.A19|ICD10CM|Nontraumatic compartment syndrome of unspecified upper extremity|Nontraumatic compartment syndrome of unspecified upper extremity +C1719721|T047|ET|M79.A2|ICD10CM|Nontraumatic compartment syndrome of hip, buttock, thigh, leg, foot, and toes|Nontraumatic compartment syndrome of hip, buttock, thigh, leg, foot, and toes +C1719620|T047|HT|M79.A2|ICD10CM|Nontraumatic compartment syndrome of lower extremity|Nontraumatic compartment syndrome of lower extremity +C1719620|T047|AB|M79.A2|ICD10CM|Nontraumatic compartment syndrome of lower extremity|Nontraumatic compartment syndrome of lower extremity +C2896467|T047|AB|M79.A21|ICD10CM|Nontraumatic compartment syndrome of right lower extremity|Nontraumatic compartment syndrome of right lower extremity +C2896467|T047|PT|M79.A21|ICD10CM|Nontraumatic compartment syndrome of right lower extremity|Nontraumatic compartment syndrome of right lower extremity +C2896468|T047|AB|M79.A22|ICD10CM|Nontraumatic compartment syndrome of left lower extremity|Nontraumatic compartment syndrome of left lower extremity +C2896468|T047|PT|M79.A22|ICD10CM|Nontraumatic compartment syndrome of left lower extremity|Nontraumatic compartment syndrome of left lower extremity +C2896469|T047|AB|M79.A29|ICD10CM|Nontraumatic compartment syndrome of unsp lower extremity|Nontraumatic compartment syndrome of unsp lower extremity +C2896469|T047|PT|M79.A29|ICD10CM|Nontraumatic compartment syndrome of unspecified lower extremity|Nontraumatic compartment syndrome of unspecified lower extremity +C1719621|T047|AB|M79.A3|ICD10CM|Nontraumatic compartment syndrome of abdomen|Nontraumatic compartment syndrome of abdomen +C1719621|T047|PT|M79.A3|ICD10CM|Nontraumatic compartment syndrome of abdomen|Nontraumatic compartment syndrome of abdomen +C1719622|T047|AB|M79.A9|ICD10CM|Nontraumatic compartment syndrome of other sites|Nontraumatic compartment syndrome of other sites +C1719622|T047|PT|M79.A9|ICD10CM|Nontraumatic compartment syndrome of other sites|Nontraumatic compartment syndrome of other sites +C4290233|T047|ET|M80|ICD10CM|osteoporosis with current fragility fracture|osteoporosis with current fragility fracture +C2896472|T047|HT|M80|ICD10CM|Osteoporosis with current pathological fracture|Osteoporosis with current pathological fracture +C2896472|T047|AB|M80|ICD10CM|Osteoporosis with current pathological fracture|Osteoporosis with current pathological fracture +C0521170|T047|HT|M80|ICD10|Osteoporosis with pathological fracture|Osteoporosis with pathological fracture +C0477681|T047|HT|M80-M85|ICD10CM|Disorders of bone density and structure (M80-M85)|Disorders of bone density and structure (M80-M85) +C0477681|T047|HT|M80-M85.9|ICD10|Disorders of bone density and structure|Disorders of bone density and structure +C4268742|T047|HT|M80-M94|ICD10CM|Osteopathies and chondropathies (M80-M94)|Osteopathies and chondropathies (M80-M94) +C0694455|T047|HT|M80-M94.9|ICD10|Osteopathies and chondropathies|Osteopathies and chondropathies +C2896475|T046|AB|M80.0|ICD10CM|Age-related osteoporosis with current pathological fracture|Age-related osteoporosis with current pathological fracture +C2896475|T046|HT|M80.0|ICD10CM|Age-related osteoporosis with current pathological fracture|Age-related osteoporosis with current pathological fracture +C2896471|T046|ET|M80.0|ICD10CM|Involutional osteoporosis with current pathological fracture|Involutional osteoporosis with current pathological fracture +C2896472|T047|ET|M80.0|ICD10CM|Osteoporosis NOS with current pathological fracture|Osteoporosis NOS with current pathological fracture +C2896473|T046|ET|M80.0|ICD10CM|Postmenopausal osteoporosis with current pathological fracture|Postmenopausal osteoporosis with current pathological fracture +C0494997|T047|PT|M80.0|ICD10|Postmenopausal osteoporosis with pathological fracture|Postmenopausal osteoporosis with pathological fracture +C2896474|T046|ET|M80.0|ICD10CM|Senile osteoporosis with current pathological fracture|Senile osteoporosis with current pathological fracture +C2896476|T046|AB|M80.00|ICD10CM|Age-related osteopor w current path fracture, unsp site|Age-related osteopor w current path fracture, unsp site +C2896476|T046|HT|M80.00|ICD10CM|Age-related osteoporosis with current pathological fracture, unspecified site|Age-related osteoporosis with current pathological fracture, unspecified site +C2896477|T046|AB|M80.00XA|ICD10CM|Age-rel osteopor w current path fracture, unsp site, init|Age-rel osteopor w current path fracture, unsp site, init +C2896478|T046|AB|M80.00XD|ICD10CM|Age-rel osteopor w crnt path fx, unsp site, 7thD|Age-rel osteopor w crnt path fx, unsp site, 7thD +C2896479|T046|AB|M80.00XG|ICD10CM|Age-rel osteopor w crnt path fx, unsp site, 7thG|Age-rel osteopor w crnt path fx, unsp site, 7thG +C2896480|T046|AB|M80.00XK|ICD10CM|Age-rel osteopor w crnt path fx, unsp site, 7thK|Age-rel osteopor w crnt path fx, unsp site, 7thK +C2896481|T046|AB|M80.00XP|ICD10CM|Age-rel osteopor w crnt path fx, unsp site, 7thP|Age-rel osteopor w crnt path fx, unsp site, 7thP +C2896482|T046|AB|M80.00XS|ICD10CM|Age-rel osteopor w current path fracture, unsp site, sequela|Age-rel osteopor w current path fracture, unsp site, sequela +C2896482|T046|PT|M80.00XS|ICD10CM|Age-related osteoporosis with current pathological fracture, unspecified site, sequela|Age-related osteoporosis with current pathological fracture, unspecified site, sequela +C2896483|T046|AB|M80.01|ICD10CM|Age-related osteopor w current path fracture, shoulder|Age-related osteopor w current path fracture, shoulder +C2896483|T046|HT|M80.01|ICD10CM|Age-related osteoporosis with current pathological fracture, shoulder|Age-related osteoporosis with current pathological fracture, shoulder +C2896484|T046|AB|M80.011|ICD10CM|Age-related osteopor w current path fracture, r shoulder|Age-related osteopor w current path fracture, r shoulder +C2896484|T046|HT|M80.011|ICD10CM|Age-related osteoporosis with current pathological fracture, right shoulder|Age-related osteoporosis with current pathological fracture, right shoulder +C2896485|T046|AB|M80.011A|ICD10CM|Age-rel osteopor w current path fracture, r shoulder, init|Age-rel osteopor w current path fracture, r shoulder, init +C2896486|T046|AB|M80.011D|ICD10CM|Age-rel osteopor w crnt path fx, r shldr, 7thD|Age-rel osteopor w crnt path fx, r shldr, 7thD +C2896487|T046|AB|M80.011G|ICD10CM|Age-rel osteopor w crnt path fx, r shldr, 7thG|Age-rel osteopor w crnt path fx, r shldr, 7thG +C2896488|T046|AB|M80.011K|ICD10CM|Age-rel osteopor w crnt path fx, r shldr, 7thK|Age-rel osteopor w crnt path fx, r shldr, 7thK +C2896489|T046|AB|M80.011P|ICD10CM|Age-rel osteopor w crnt path fx, r shldr, 7thP|Age-rel osteopor w crnt path fx, r shldr, 7thP +C2896490|T046|AB|M80.011S|ICD10CM|Age-rel osteopor w current path fx, r shoulder, sequela|Age-rel osteopor w current path fx, r shoulder, sequela +C2896490|T046|PT|M80.011S|ICD10CM|Age-related osteoporosis with current pathological fracture, right shoulder, sequela|Age-related osteoporosis with current pathological fracture, right shoulder, sequela +C2896491|T046|AB|M80.012|ICD10CM|Age-related osteopor w current path fracture, l shoulder|Age-related osteopor w current path fracture, l shoulder +C2896491|T046|HT|M80.012|ICD10CM|Age-related osteoporosis with current pathological fracture, left shoulder|Age-related osteoporosis with current pathological fracture, left shoulder +C2896492|T046|AB|M80.012A|ICD10CM|Age-rel osteopor w current path fracture, l shoulder, init|Age-rel osteopor w current path fracture, l shoulder, init +C2896493|T046|AB|M80.012D|ICD10CM|Age-rel osteopor w crnt path fx, l shldr, 7thD|Age-rel osteopor w crnt path fx, l shldr, 7thD +C2896494|T046|AB|M80.012G|ICD10CM|Age-rel osteopor w crnt path fx, l shldr, 7thG|Age-rel osteopor w crnt path fx, l shldr, 7thG +C2896495|T046|AB|M80.012K|ICD10CM|Age-rel osteopor w crnt path fx, l shldr, 7thK|Age-rel osteopor w crnt path fx, l shldr, 7thK +C2896496|T046|AB|M80.012P|ICD10CM|Age-rel osteopor w crnt path fx, l shldr, 7thP|Age-rel osteopor w crnt path fx, l shldr, 7thP +C2896497|T046|AB|M80.012S|ICD10CM|Age-rel osteopor w current path fx, l shoulder, sequela|Age-rel osteopor w current path fx, l shoulder, sequela +C2896497|T046|PT|M80.012S|ICD10CM|Age-related osteoporosis with current pathological fracture, left shoulder, sequela|Age-related osteoporosis with current pathological fracture, left shoulder, sequela +C2896498|T046|AB|M80.019|ICD10CM|Age-related osteopor w current path fracture, unsp shoulder|Age-related osteopor w current path fracture, unsp shoulder +C2896498|T046|HT|M80.019|ICD10CM|Age-related osteoporosis with current pathological fracture, unspecified shoulder|Age-related osteoporosis with current pathological fracture, unspecified shoulder +C2896499|T046|AB|M80.019A|ICD10CM|Age-rel osteopor w current path fx, unsp shoulder, init|Age-rel osteopor w current path fx, unsp shoulder, init +C2896500|T046|AB|M80.019D|ICD10CM|Age-rel osteopor w crnt path fx, unsp shldr, 7thD|Age-rel osteopor w crnt path fx, unsp shldr, 7thD +C2896501|T046|AB|M80.019G|ICD10CM|Age-rel osteopor w crnt path fx, unsp shldr, 7thG|Age-rel osteopor w crnt path fx, unsp shldr, 7thG +C2896502|T046|AB|M80.019K|ICD10CM|Age-rel osteopor w crnt path fx, unsp shldr, 7thK|Age-rel osteopor w crnt path fx, unsp shldr, 7thK +C2896503|T046|AB|M80.019P|ICD10CM|Age-rel osteopor w crnt path fx, unsp shldr, 7thP|Age-rel osteopor w crnt path fx, unsp shldr, 7thP +C2896504|T046|AB|M80.019S|ICD10CM|Age-rel osteopor w current path fx, unsp shoulder, sequela|Age-rel osteopor w current path fx, unsp shoulder, sequela +C2896504|T046|PT|M80.019S|ICD10CM|Age-related osteoporosis with current pathological fracture, unspecified shoulder, sequela|Age-related osteoporosis with current pathological fracture, unspecified shoulder, sequela +C2896505|T046|AB|M80.02|ICD10CM|Age-related osteopor w current path fracture, humerus|Age-related osteopor w current path fracture, humerus +C2896505|T046|HT|M80.02|ICD10CM|Age-related osteoporosis with current pathological fracture, humerus|Age-related osteoporosis with current pathological fracture, humerus +C2896506|T046|AB|M80.021|ICD10CM|Age-related osteopor w current path fracture, r humerus|Age-related osteopor w current path fracture, r humerus +C2896506|T046|HT|M80.021|ICD10CM|Age-related osteoporosis with current pathological fracture, right humerus|Age-related osteoporosis with current pathological fracture, right humerus +C2896507|T046|AB|M80.021A|ICD10CM|Age-rel osteopor w current path fracture, r humerus, init|Age-rel osteopor w current path fracture, r humerus, init +C2896508|T046|AB|M80.021D|ICD10CM|Age-rel osteopor w crnt path fx, r humer, 7thD|Age-rel osteopor w crnt path fx, r humer, 7thD +C2896509|T046|AB|M80.021G|ICD10CM|Age-rel osteopor w crnt path fx, r humer, 7thG|Age-rel osteopor w crnt path fx, r humer, 7thG +C2896510|T046|AB|M80.021K|ICD10CM|Age-rel osteopor w crnt path fx, r humer, 7thK|Age-rel osteopor w crnt path fx, r humer, 7thK +C2896511|T046|AB|M80.021P|ICD10CM|Age-rel osteopor w crnt path fx, r humer, 7thP|Age-rel osteopor w crnt path fx, r humer, 7thP +C2896512|T046|AB|M80.021S|ICD10CM|Age-rel osteopor w current path fracture, r humerus, sequela|Age-rel osteopor w current path fracture, r humerus, sequela +C2896512|T046|PT|M80.021S|ICD10CM|Age-related osteoporosis with current pathological fracture, right humerus, sequela|Age-related osteoporosis with current pathological fracture, right humerus, sequela +C2896513|T046|AB|M80.022|ICD10CM|Age-related osteopor w current path fracture, l humerus|Age-related osteopor w current path fracture, l humerus +C2896513|T046|HT|M80.022|ICD10CM|Age-related osteoporosis with current pathological fracture, left humerus|Age-related osteoporosis with current pathological fracture, left humerus +C2896514|T046|AB|M80.022A|ICD10CM|Age-rel osteopor w current path fracture, l humerus, init|Age-rel osteopor w current path fracture, l humerus, init +C2896515|T046|AB|M80.022D|ICD10CM|Age-rel osteopor w crnt path fx, l humer, 7thD|Age-rel osteopor w crnt path fx, l humer, 7thD +C2896516|T046|AB|M80.022G|ICD10CM|Age-rel osteopor w crnt path fx, l humer, 7thG|Age-rel osteopor w crnt path fx, l humer, 7thG +C2896517|T046|AB|M80.022K|ICD10CM|Age-rel osteopor w crnt path fx, l humer, 7thK|Age-rel osteopor w crnt path fx, l humer, 7thK +C2896518|T046|AB|M80.022P|ICD10CM|Age-rel osteopor w crnt path fx, l humer, 7thP|Age-rel osteopor w crnt path fx, l humer, 7thP +C2896519|T046|AB|M80.022S|ICD10CM|Age-rel osteopor w current path fracture, l humerus, sequela|Age-rel osteopor w current path fracture, l humerus, sequela +C2896519|T046|PT|M80.022S|ICD10CM|Age-related osteoporosis with current pathological fracture, left humerus, sequela|Age-related osteoporosis with current pathological fracture, left humerus, sequela +C2896520|T046|AB|M80.029|ICD10CM|Age-related osteopor w current path fracture, unsp humerus|Age-related osteopor w current path fracture, unsp humerus +C2896520|T046|HT|M80.029|ICD10CM|Age-related osteoporosis with current pathological fracture, unspecified humerus|Age-related osteoporosis with current pathological fracture, unspecified humerus +C2896521|T046|AB|M80.029A|ICD10CM|Age-rel osteopor w current path fracture, unsp humerus, init|Age-rel osteopor w current path fracture, unsp humerus, init +C2896522|T046|AB|M80.029D|ICD10CM|Age-rel osteopor w crnt path fx, unsp humer, 7thD|Age-rel osteopor w crnt path fx, unsp humer, 7thD +C2896523|T046|AB|M80.029G|ICD10CM|Age-rel osteopor w crnt path fx, unsp humer, 7thG|Age-rel osteopor w crnt path fx, unsp humer, 7thG +C2896524|T046|AB|M80.029K|ICD10CM|Age-rel osteopor w crnt path fx, unsp humer, 7thK|Age-rel osteopor w crnt path fx, unsp humer, 7thK +C2896525|T046|AB|M80.029P|ICD10CM|Age-rel osteopor w crnt path fx, unsp humer, 7thP|Age-rel osteopor w crnt path fx, unsp humer, 7thP +C2896526|T046|AB|M80.029S|ICD10CM|Age-rel osteopor w current path fx, unsp humerus, sequela|Age-rel osteopor w current path fx, unsp humerus, sequela +C2896526|T046|PT|M80.029S|ICD10CM|Age-related osteoporosis with current pathological fracture, unspecified humerus, sequela|Age-related osteoporosis with current pathological fracture, unspecified humerus, sequela +C2896528|T046|AB|M80.03|ICD10CM|Age-related osteopor w current path fracture, forearm|Age-related osteopor w current path fracture, forearm +C2896527|T046|ET|M80.03|ICD10CM|Age-related osteoporosis with current pathological fracture of wrist|Age-related osteoporosis with current pathological fracture of wrist +C2896528|T046|HT|M80.03|ICD10CM|Age-related osteoporosis with current pathological fracture, forearm|Age-related osteoporosis with current pathological fracture, forearm +C2896529|T046|AB|M80.031|ICD10CM|Age-related osteopor w current path fracture, r forearm|Age-related osteopor w current path fracture, r forearm +C2896529|T046|HT|M80.031|ICD10CM|Age-related osteoporosis with current pathological fracture, right forearm|Age-related osteoporosis with current pathological fracture, right forearm +C2896530|T046|AB|M80.031A|ICD10CM|Age-rel osteopor w current path fracture, r forearm, init|Age-rel osteopor w current path fracture, r forearm, init +C2896531|T046|AB|M80.031D|ICD10CM|Age-rel osteopor w crnt path fx, r forearm, 7thD|Age-rel osteopor w crnt path fx, r forearm, 7thD +C2896532|T046|AB|M80.031G|ICD10CM|Age-rel osteopor w crnt path fx, r forearm, 7thG|Age-rel osteopor w crnt path fx, r forearm, 7thG +C2896533|T046|AB|M80.031K|ICD10CM|Age-rel osteopor w crnt path fx, r forearm, 7thK|Age-rel osteopor w crnt path fx, r forearm, 7thK +C2896534|T046|AB|M80.031P|ICD10CM|Age-rel osteopor w crnt path fx, r forearm, 7thP|Age-rel osteopor w crnt path fx, r forearm, 7thP +C2896535|T046|AB|M80.031S|ICD10CM|Age-rel osteopor w current path fracture, r forearm, sequela|Age-rel osteopor w current path fracture, r forearm, sequela +C2896535|T046|PT|M80.031S|ICD10CM|Age-related osteoporosis with current pathological fracture, right forearm, sequela|Age-related osteoporosis with current pathological fracture, right forearm, sequela +C2896536|T046|AB|M80.032|ICD10CM|Age-related osteopor w current path fracture, l forearm|Age-related osteopor w current path fracture, l forearm +C2896536|T046|HT|M80.032|ICD10CM|Age-related osteoporosis with current pathological fracture, left forearm|Age-related osteoporosis with current pathological fracture, left forearm +C2896537|T046|AB|M80.032A|ICD10CM|Age-rel osteopor w current path fracture, l forearm, init|Age-rel osteopor w current path fracture, l forearm, init +C2896538|T046|AB|M80.032D|ICD10CM|Age-rel osteopor w crnt path fx, l forearm, 7thD|Age-rel osteopor w crnt path fx, l forearm, 7thD +C2896539|T046|AB|M80.032G|ICD10CM|Age-rel osteopor w crnt path fx, l forearm, 7thG|Age-rel osteopor w crnt path fx, l forearm, 7thG +C2896540|T046|AB|M80.032K|ICD10CM|Age-rel osteopor w crnt path fx, l forearm, 7thK|Age-rel osteopor w crnt path fx, l forearm, 7thK +C2896541|T046|AB|M80.032P|ICD10CM|Age-rel osteopor w crnt path fx, l forearm, 7thP|Age-rel osteopor w crnt path fx, l forearm, 7thP +C2896542|T046|AB|M80.032S|ICD10CM|Age-rel osteopor w current path fracture, l forearm, sequela|Age-rel osteopor w current path fracture, l forearm, sequela +C2896542|T046|PT|M80.032S|ICD10CM|Age-related osteoporosis with current pathological fracture, left forearm, sequela|Age-related osteoporosis with current pathological fracture, left forearm, sequela +C2896543|T046|AB|M80.039|ICD10CM|Age-related osteopor w current path fracture, unsp forearm|Age-related osteopor w current path fracture, unsp forearm +C2896543|T046|HT|M80.039|ICD10CM|Age-related osteoporosis with current pathological fracture, unspecified forearm|Age-related osteoporosis with current pathological fracture, unspecified forearm +C2896544|T046|AB|M80.039A|ICD10CM|Age-rel osteopor w current path fracture, unsp forearm, init|Age-rel osteopor w current path fracture, unsp forearm, init +C2896545|T046|AB|M80.039D|ICD10CM|Age-rel osteopor w crnt path fx, unsp forearm, 7thD|Age-rel osteopor w crnt path fx, unsp forearm, 7thD +C2896546|T046|AB|M80.039G|ICD10CM|Age-rel osteopor w crnt path fx, unsp forearm, 7thG|Age-rel osteopor w crnt path fx, unsp forearm, 7thG +C2896547|T046|AB|M80.039K|ICD10CM|Age-rel osteopor w crnt path fx, unsp forearm, 7thK|Age-rel osteopor w crnt path fx, unsp forearm, 7thK +C2896548|T046|AB|M80.039P|ICD10CM|Age-rel osteopor w crnt path fx, unsp forearm, 7thP|Age-rel osteopor w crnt path fx, unsp forearm, 7thP +C2896549|T046|AB|M80.039S|ICD10CM|Age-rel osteopor w current path fx, unsp forearm, sequela|Age-rel osteopor w current path fx, unsp forearm, sequela +C2896549|T046|PT|M80.039S|ICD10CM|Age-related osteoporosis with current pathological fracture, unspecified forearm, sequela|Age-related osteoporosis with current pathological fracture, unspecified forearm, sequela +C2896550|T046|AB|M80.04|ICD10CM|Age-related osteopor w current pathological fracture, hand|Age-related osteopor w current pathological fracture, hand +C2896550|T046|HT|M80.04|ICD10CM|Age-related osteoporosis with current pathological fracture, hand|Age-related osteoporosis with current pathological fracture, hand +C2896551|T046|AB|M80.041|ICD10CM|Age-related osteopor w current path fracture, right hand|Age-related osteopor w current path fracture, right hand +C2896551|T046|HT|M80.041|ICD10CM|Age-related osteoporosis with current pathological fracture, right hand|Age-related osteoporosis with current pathological fracture, right hand +C2896552|T046|AB|M80.041A|ICD10CM|Age-rel osteopor w current path fracture, right hand, init|Age-rel osteopor w current path fracture, right hand, init +C2896553|T046|AB|M80.041D|ICD10CM|Age-rel osteopor w crnt path fx, r hand, 7thD|Age-rel osteopor w crnt path fx, r hand, 7thD +C2896554|T046|AB|M80.041G|ICD10CM|Age-rel osteopor w crnt path fx, r hand, 7thG|Age-rel osteopor w crnt path fx, r hand, 7thG +C2896555|T046|AB|M80.041K|ICD10CM|Age-rel osteopor w crnt path fx, r hand, 7thK|Age-rel osteopor w crnt path fx, r hand, 7thK +C2896556|T046|AB|M80.041P|ICD10CM|Age-rel osteopor w crnt path fx, r hand, 7thP|Age-rel osteopor w crnt path fx, r hand, 7thP +C2896557|T046|AB|M80.041S|ICD10CM|Age-rel osteopor w current path fracture, r hand, sequela|Age-rel osteopor w current path fracture, r hand, sequela +C2896557|T046|PT|M80.041S|ICD10CM|Age-related osteoporosis with current pathological fracture, right hand, sequela|Age-related osteoporosis with current pathological fracture, right hand, sequela +C2896558|T046|AB|M80.042|ICD10CM|Age-related osteopor w current path fracture, left hand|Age-related osteopor w current path fracture, left hand +C2896558|T046|HT|M80.042|ICD10CM|Age-related osteoporosis with current pathological fracture, left hand|Age-related osteoporosis with current pathological fracture, left hand +C2896559|T046|AB|M80.042A|ICD10CM|Age-rel osteopor w current path fracture, left hand, init|Age-rel osteopor w current path fracture, left hand, init +C2896560|T046|AB|M80.042D|ICD10CM|Age-rel osteopor w crnt path fx, l hand, 7thD|Age-rel osteopor w crnt path fx, l hand, 7thD +C2896561|T046|AB|M80.042G|ICD10CM|Age-rel osteopor w crnt path fx, l hand, 7thG|Age-rel osteopor w crnt path fx, l hand, 7thG +C2896562|T046|AB|M80.042K|ICD10CM|Age-rel osteopor w crnt path fx, l hand, 7thK|Age-rel osteopor w crnt path fx, l hand, 7thK +C2896563|T046|AB|M80.042P|ICD10CM|Age-rel osteopor w crnt path fx, l hand, 7thP|Age-rel osteopor w crnt path fx, l hand, 7thP +C2896564|T046|AB|M80.042S|ICD10CM|Age-rel osteopor w current path fracture, left hand, sequela|Age-rel osteopor w current path fracture, left hand, sequela +C2896564|T046|PT|M80.042S|ICD10CM|Age-related osteoporosis with current pathological fracture, left hand, sequela|Age-related osteoporosis with current pathological fracture, left hand, sequela +C2896565|T046|AB|M80.049|ICD10CM|Age-related osteopor w current path fracture, unsp hand|Age-related osteopor w current path fracture, unsp hand +C2896565|T046|HT|M80.049|ICD10CM|Age-related osteoporosis with current pathological fracture, unspecified hand|Age-related osteoporosis with current pathological fracture, unspecified hand +C2896566|T046|AB|M80.049A|ICD10CM|Age-rel osteopor w current path fracture, unsp hand, init|Age-rel osteopor w current path fracture, unsp hand, init +C2896567|T046|AB|M80.049D|ICD10CM|Age-rel osteopor w crnt path fx, unsp hand, 7thD|Age-rel osteopor w crnt path fx, unsp hand, 7thD +C2896568|T046|AB|M80.049G|ICD10CM|Age-rel osteopor w crnt path fx, unsp hand, 7thG|Age-rel osteopor w crnt path fx, unsp hand, 7thG +C2896569|T046|AB|M80.049K|ICD10CM|Age-rel osteopor w crnt path fx, unsp hand, 7thK|Age-rel osteopor w crnt path fx, unsp hand, 7thK +C2896570|T046|AB|M80.049P|ICD10CM|Age-rel osteopor w crnt path fx, unsp hand, 7thP|Age-rel osteopor w crnt path fx, unsp hand, 7thP +C2896571|T046|AB|M80.049S|ICD10CM|Age-rel osteopor w current path fracture, unsp hand, sequela|Age-rel osteopor w current path fracture, unsp hand, sequela +C2896571|T046|PT|M80.049S|ICD10CM|Age-related osteoporosis with current pathological fracture, unspecified hand, sequela|Age-related osteoporosis with current pathological fracture, unspecified hand, sequela +C2896573|T046|AB|M80.05|ICD10CM|Age-related osteopor w current pathological fracture, femur|Age-related osteopor w current pathological fracture, femur +C2896572|T046|ET|M80.05|ICD10CM|Age-related osteoporosis with current pathological fracture of hip|Age-related osteoporosis with current pathological fracture of hip +C2896573|T046|HT|M80.05|ICD10CM|Age-related osteoporosis with current pathological fracture, femur|Age-related osteoporosis with current pathological fracture, femur +C2896574|T046|AB|M80.051|ICD10CM|Age-related osteopor w current path fracture, right femur|Age-related osteopor w current path fracture, right femur +C2896574|T046|HT|M80.051|ICD10CM|Age-related osteoporosis with current pathological fracture, right femur|Age-related osteoporosis with current pathological fracture, right femur +C2896575|T046|AB|M80.051A|ICD10CM|Age-rel osteopor w current path fracture, right femur, init|Age-rel osteopor w current path fracture, right femur, init +C2896576|T046|AB|M80.051D|ICD10CM|Age-rel osteopor w crnt path fx, r femr, 7thD|Age-rel osteopor w crnt path fx, r femr, 7thD +C2896577|T046|AB|M80.051G|ICD10CM|Age-rel osteopor w crnt path fx, r femr, 7thG|Age-rel osteopor w crnt path fx, r femr, 7thG +C2896578|T046|AB|M80.051K|ICD10CM|Age-rel osteopor w crnt path fx, r femr, 7thK|Age-rel osteopor w crnt path fx, r femr, 7thK +C2896579|T046|AB|M80.051P|ICD10CM|Age-rel osteopor w crnt path fx, r femr, 7thP|Age-rel osteopor w crnt path fx, r femr, 7thP +C2896580|T046|AB|M80.051S|ICD10CM|Age-rel osteopor w current path fracture, r femur, sequela|Age-rel osteopor w current path fracture, r femur, sequela +C2896580|T046|PT|M80.051S|ICD10CM|Age-related osteoporosis with current pathological fracture, right femur, sequela|Age-related osteoporosis with current pathological fracture, right femur, sequela +C2896581|T046|AB|M80.052|ICD10CM|Age-related osteopor w current path fracture, left femur|Age-related osteopor w current path fracture, left femur +C2896581|T046|HT|M80.052|ICD10CM|Age-related osteoporosis with current pathological fracture, left femur|Age-related osteoporosis with current pathological fracture, left femur +C2896582|T046|AB|M80.052A|ICD10CM|Age-rel osteopor w current path fracture, left femur, init|Age-rel osteopor w current path fracture, left femur, init +C2896583|T046|AB|M80.052D|ICD10CM|Age-rel osteopor w crnt path fx, l femr, 7thD|Age-rel osteopor w crnt path fx, l femr, 7thD +C2896584|T046|AB|M80.052G|ICD10CM|Age-rel osteopor w crnt path fx, l femr, 7thG|Age-rel osteopor w crnt path fx, l femr, 7thG +C2896585|T046|AB|M80.052K|ICD10CM|Age-rel osteopor w crnt path fx, l femr, 7thK|Age-rel osteopor w crnt path fx, l femr, 7thK +C2896586|T046|AB|M80.052P|ICD10CM|Age-rel osteopor w crnt path fx, l femr, 7thP|Age-rel osteopor w crnt path fx, l femr, 7thP +C2896587|T046|AB|M80.052S|ICD10CM|Age-rel osteopor w current path fracture, l femur, sequela|Age-rel osteopor w current path fracture, l femur, sequela +C2896587|T046|PT|M80.052S|ICD10CM|Age-related osteoporosis with current pathological fracture, left femur, sequela|Age-related osteoporosis with current pathological fracture, left femur, sequela +C2896588|T046|AB|M80.059|ICD10CM|Age-related osteopor w current path fracture, unsp femur|Age-related osteopor w current path fracture, unsp femur +C2896588|T046|HT|M80.059|ICD10CM|Age-related osteoporosis with current pathological fracture, unspecified femur|Age-related osteoporosis with current pathological fracture, unspecified femur +C2896589|T046|AB|M80.059A|ICD10CM|Age-rel osteopor w current path fracture, unsp femur, init|Age-rel osteopor w current path fracture, unsp femur, init +C2896590|T046|AB|M80.059D|ICD10CM|Age-rel osteopor w crnt path fx, unsp femr, 7thD|Age-rel osteopor w crnt path fx, unsp femr, 7thD +C2896591|T046|AB|M80.059G|ICD10CM|Age-rel osteopor w crnt path fx, unsp femr, 7thG|Age-rel osteopor w crnt path fx, unsp femr, 7thG +C2896592|T046|AB|M80.059K|ICD10CM|Age-rel osteopor w crnt path fx, unsp femr, 7thK|Age-rel osteopor w crnt path fx, unsp femr, 7thK +C2896593|T046|AB|M80.059P|ICD10CM|Age-rel osteopor w crnt path fx, unsp femr, 7thP|Age-rel osteopor w crnt path fx, unsp femr, 7thP +C2896594|T046|AB|M80.059S|ICD10CM|Age-rel osteopor w current path fx, unsp femur, sequela|Age-rel osteopor w current path fx, unsp femur, sequela +C2896594|T046|PT|M80.059S|ICD10CM|Age-related osteoporosis with current pathological fracture, unspecified femur, sequela|Age-related osteoporosis with current pathological fracture, unspecified femur, sequela +C2896595|T046|AB|M80.06|ICD10CM|Age-related osteopor w current path fracture, lower leg|Age-related osteopor w current path fracture, lower leg +C2896595|T046|HT|M80.06|ICD10CM|Age-related osteoporosis with current pathological fracture, lower leg|Age-related osteoporosis with current pathological fracture, lower leg +C2896596|T046|AB|M80.061|ICD10CM|Age-related osteopor w current path fracture, r low leg|Age-related osteopor w current path fracture, r low leg +C2896596|T046|HT|M80.061|ICD10CM|Age-related osteoporosis with current pathological fracture, right lower leg|Age-related osteoporosis with current pathological fracture, right lower leg +C2896597|T046|AB|M80.061A|ICD10CM|Age-rel osteopor w current path fracture, r low leg, init|Age-rel osteopor w current path fracture, r low leg, init +C2896598|T046|AB|M80.061D|ICD10CM|Age-rel osteopor w crnt path fx, r low leg, 7thD|Age-rel osteopor w crnt path fx, r low leg, 7thD +C2896599|T046|AB|M80.061G|ICD10CM|Age-rel osteopor w crnt path fx, r low leg, 7thG|Age-rel osteopor w crnt path fx, r low leg, 7thG +C2896600|T046|AB|M80.061K|ICD10CM|Age-rel osteopor w crnt path fx, r low leg, 7thK|Age-rel osteopor w crnt path fx, r low leg, 7thK +C2896601|T046|AB|M80.061P|ICD10CM|Age-rel osteopor w crnt path fx, r low leg, 7thP|Age-rel osteopor w crnt path fx, r low leg, 7thP +C2896602|T046|AB|M80.061S|ICD10CM|Age-rel osteopor w current path fracture, r low leg, sequela|Age-rel osteopor w current path fracture, r low leg, sequela +C2896602|T046|PT|M80.061S|ICD10CM|Age-related osteoporosis with current pathological fracture, right lower leg, sequela|Age-related osteoporosis with current pathological fracture, right lower leg, sequela +C2896603|T046|AB|M80.062|ICD10CM|Age-related osteopor w current path fracture, l low leg|Age-related osteopor w current path fracture, l low leg +C2896603|T046|HT|M80.062|ICD10CM|Age-related osteoporosis with current pathological fracture, left lower leg|Age-related osteoporosis with current pathological fracture, left lower leg +C2896604|T046|AB|M80.062A|ICD10CM|Age-rel osteopor w current path fracture, l low leg, init|Age-rel osteopor w current path fracture, l low leg, init +C2896605|T046|AB|M80.062D|ICD10CM|Age-rel osteopor w crnt path fx, l low leg, 7thD|Age-rel osteopor w crnt path fx, l low leg, 7thD +C2896606|T046|AB|M80.062G|ICD10CM|Age-rel osteopor w crnt path fx, l low leg, 7thG|Age-rel osteopor w crnt path fx, l low leg, 7thG +C2896607|T046|AB|M80.062K|ICD10CM|Age-rel osteopor w crnt path fx, l low leg, 7thK|Age-rel osteopor w crnt path fx, l low leg, 7thK +C2896608|T046|AB|M80.062P|ICD10CM|Age-rel osteopor w crnt path fx, l low leg, 7thP|Age-rel osteopor w crnt path fx, l low leg, 7thP +C2896609|T046|AB|M80.062S|ICD10CM|Age-rel osteopor w current path fracture, l low leg, sequela|Age-rel osteopor w current path fracture, l low leg, sequela +C2896609|T046|PT|M80.062S|ICD10CM|Age-related osteoporosis with current pathological fracture, left lower leg, sequela|Age-related osteoporosis with current pathological fracture, left lower leg, sequela +C2896610|T046|AB|M80.069|ICD10CM|Age-related osteopor w current path fracture, unsp lower leg|Age-related osteopor w current path fracture, unsp lower leg +C2896610|T046|HT|M80.069|ICD10CM|Age-related osteoporosis with current pathological fracture, unspecified lower leg|Age-related osteoporosis with current pathological fracture, unspecified lower leg +C2896611|T046|AB|M80.069A|ICD10CM|Age-rel osteopor w current path fracture, unsp low leg, init|Age-rel osteopor w current path fracture, unsp low leg, init +C2896612|T046|AB|M80.069D|ICD10CM|Age-rel osteopor w crnt path fx, unsp low leg, 7thD|Age-rel osteopor w crnt path fx, unsp low leg, 7thD +C2896613|T046|AB|M80.069G|ICD10CM|Age-rel osteopor w crnt path fx, unsp low leg, 7thG|Age-rel osteopor w crnt path fx, unsp low leg, 7thG +C2896614|T046|AB|M80.069K|ICD10CM|Age-rel osteopor w crnt path fx, unsp low leg, 7thK|Age-rel osteopor w crnt path fx, unsp low leg, 7thK +C2896615|T046|AB|M80.069P|ICD10CM|Age-rel osteopor w crnt path fx, unsp low leg, 7thP|Age-rel osteopor w crnt path fx, unsp low leg, 7thP +C2896616|T046|AB|M80.069S|ICD10CM|Age-rel osteopor w current path fx, unsp low leg, sequela|Age-rel osteopor w current path fx, unsp low leg, sequela +C2896616|T046|PT|M80.069S|ICD10CM|Age-related osteoporosis with current pathological fracture, unspecified lower leg, sequela|Age-related osteoporosis with current pathological fracture, unspecified lower leg, sequela +C2896617|T046|AB|M80.07|ICD10CM|Age-related osteopor w current pathological fracture, ank/ft|Age-related osteopor w current pathological fracture, ank/ft +C2896617|T046|HT|M80.07|ICD10CM|Age-related osteoporosis with current pathological fracture, ankle and foot|Age-related osteoporosis with current pathological fracture, ankle and foot +C2896618|T046|AB|M80.071|ICD10CM|Age-related osteopor w current path fracture, right ank/ft|Age-related osteopor w current path fracture, right ank/ft +C2896618|T046|HT|M80.071|ICD10CM|Age-related osteoporosis with current pathological fracture, right ankle and foot|Age-related osteoporosis with current pathological fracture, right ankle and foot +C2896619|T046|AB|M80.071A|ICD10CM|Age-rel osteopor w current path fracture, right ank/ft, init|Age-rel osteopor w current path fracture, right ank/ft, init +C2896620|T046|AB|M80.071D|ICD10CM|Age-rel osteopor w crnt path fx, r ank/ft, 7thD|Age-rel osteopor w crnt path fx, r ank/ft, 7thD +C2896621|T046|AB|M80.071G|ICD10CM|Age-rel osteopor w crnt path fx, r ank/ft, 7thG|Age-rel osteopor w crnt path fx, r ank/ft, 7thG +C2896622|T046|AB|M80.071K|ICD10CM|Age-rel osteopor w crnt path fx, r ank/ft, 7thK|Age-rel osteopor w crnt path fx, r ank/ft, 7thK +C2896623|T046|AB|M80.071P|ICD10CM|Age-rel osteopor w crnt path fx, r ank/ft, 7thP|Age-rel osteopor w crnt path fx, r ank/ft, 7thP +C2896624|T046|AB|M80.071S|ICD10CM|Age-rel osteopor w current path fx, right ank/ft, sequela|Age-rel osteopor w current path fx, right ank/ft, sequela +C2896624|T046|PT|M80.071S|ICD10CM|Age-related osteoporosis with current pathological fracture, right ankle and foot, sequela|Age-related osteoporosis with current pathological fracture, right ankle and foot, sequela +C2896625|T046|AB|M80.072|ICD10CM|Age-related osteopor w current path fracture, left ank/ft|Age-related osteopor w current path fracture, left ank/ft +C2896625|T046|HT|M80.072|ICD10CM|Age-related osteoporosis with current pathological fracture, left ankle and foot|Age-related osteoporosis with current pathological fracture, left ankle and foot +C2896626|T046|AB|M80.072A|ICD10CM|Age-rel osteopor w current path fracture, left ank/ft, init|Age-rel osteopor w current path fracture, left ank/ft, init +C2896627|T046|AB|M80.072D|ICD10CM|Age-rel osteopor w crnt path fx, l ank/ft, 7thD|Age-rel osteopor w crnt path fx, l ank/ft, 7thD +C2896628|T046|AB|M80.072G|ICD10CM|Age-rel osteopor w crnt path fx, l ank/ft, 7thG|Age-rel osteopor w crnt path fx, l ank/ft, 7thG +C2896629|T046|AB|M80.072K|ICD10CM|Age-rel osteopor w crnt path fx, l ank/ft, 7thK|Age-rel osteopor w crnt path fx, l ank/ft, 7thK +C2896630|T046|AB|M80.072P|ICD10CM|Age-rel osteopor w crnt path fx, l ank/ft, 7thP|Age-rel osteopor w crnt path fx, l ank/ft, 7thP +C2896631|T046|AB|M80.072S|ICD10CM|Age-rel osteopor w current path fx, left ank/ft, sequela|Age-rel osteopor w current path fx, left ank/ft, sequela +C2896631|T046|PT|M80.072S|ICD10CM|Age-related osteoporosis with current pathological fracture, left ankle and foot, sequela|Age-related osteoporosis with current pathological fracture, left ankle and foot, sequela +C2896632|T046|AB|M80.079|ICD10CM|Age-related osteopor w current path fracture, unsp ank/ft|Age-related osteopor w current path fracture, unsp ank/ft +C2896632|T046|HT|M80.079|ICD10CM|Age-related osteoporosis with current pathological fracture, unspecified ankle and foot|Age-related osteoporosis with current pathological fracture, unspecified ankle and foot +C2896633|T046|AB|M80.079A|ICD10CM|Age-rel osteopor w current path fracture, unsp ank/ft, init|Age-rel osteopor w current path fracture, unsp ank/ft, init +C2896634|T046|AB|M80.079D|ICD10CM|Age-rel osteopor w crnt path fx, unsp ank/ft, 7thD|Age-rel osteopor w crnt path fx, unsp ank/ft, 7thD +C2896635|T046|AB|M80.079G|ICD10CM|Age-rel osteopor w crnt path fx, unsp ank/ft, 7thG|Age-rel osteopor w crnt path fx, unsp ank/ft, 7thG +C2896636|T046|AB|M80.079K|ICD10CM|Age-rel osteopor w crnt path fx, unsp ank/ft, 7thK|Age-rel osteopor w crnt path fx, unsp ank/ft, 7thK +C2896637|T046|AB|M80.079P|ICD10CM|Age-rel osteopor w crnt path fx, unsp ank/ft, 7thP|Age-rel osteopor w crnt path fx, unsp ank/ft, 7thP +C2896638|T046|AB|M80.079S|ICD10CM|Age-rel osteopor w current path fx, unsp ank/ft, sequela|Age-rel osteopor w current path fx, unsp ank/ft, sequela +C2896638|T046|PT|M80.079S|ICD10CM|Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, sequela|Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, sequela +C2896639|T046|AB|M80.08|ICD10CM|Age-related osteopor w current path fracture, vertebra(e)|Age-related osteopor w current path fracture, vertebra(e) +C2896639|T046|HT|M80.08|ICD10CM|Age-related osteoporosis with current pathological fracture, vertebra(e)|Age-related osteoporosis with current pathological fracture, vertebra(e) +C2896640|T046|AB|M80.08XA|ICD10CM|Age-rel osteopor w current path fracture, vertebra(e), init|Age-rel osteopor w current path fracture, vertebra(e), init +C2896641|T046|AB|M80.08XD|ICD10CM|Age-rel osteopor w crnt path fx, verteb, 7thD|Age-rel osteopor w crnt path fx, verteb, 7thD +C2896642|T046|AB|M80.08XG|ICD10CM|Age-rel osteopor w crnt path fx, verteb, 7thG|Age-rel osteopor w crnt path fx, verteb, 7thG +C2896643|T046|AB|M80.08XK|ICD10CM|Age-rel osteopor w crnt path fx, verteb, 7thK|Age-rel osteopor w crnt path fx, verteb, 7thK +C2896644|T046|AB|M80.08XP|ICD10CM|Age-rel osteopor w crnt path fx, verteb, 7thP|Age-rel osteopor w crnt path fx, verteb, 7thP +C2896645|T046|AB|M80.08XS|ICD10CM|Age-rel osteopor w current path fracture, verteb, sequela|Age-rel osteopor w current path fracture, verteb, sequela +C2896645|T046|PT|M80.08XS|ICD10CM|Age-related osteoporosis with current pathological fracture, vertebra(e), sequela|Age-related osteoporosis with current pathological fracture, vertebra(e), sequela +C0451871|T047|PT|M80.1|ICD10|Postoophorectomy osteoporosis with pathological fracture|Postoophorectomy osteoporosis with pathological fracture +C0451881|T047|PT|M80.2|ICD10|Osteoporosis of disuse with pathological fracture|Osteoporosis of disuse with pathological fracture +C0451882|T047|PT|M80.3|ICD10|Postsurgical malabsorption osteoporosis with pathological fracture|Postsurgical malabsorption osteoporosis with pathological fracture +C0451883|T047|PT|M80.4|ICD10|Drug-induced osteoporosis with pathological fracture|Drug-induced osteoporosis with pathological fracture +C0451884|T047|PT|M80.5|ICD10|Idiopathic osteoporosis with pathological fracture|Idiopathic osteoporosis with pathological fracture +C2896646|T046|ET|M80.8|ICD10CM|Drug-induced osteoporosis with current pathological fracture|Drug-induced osteoporosis with current pathological fracture +C2896647|T046|ET|M80.8|ICD10CM|Idiopathic osteoporosis with current pathological fracture|Idiopathic osteoporosis with current pathological fracture +C2896648|T046|ET|M80.8|ICD10CM|Osteoporosis of disuse with current pathological fracture|Osteoporosis of disuse with current pathological fracture +C2896652|T046|AB|M80.8|ICD10CM|Other osteoporosis with current pathological fracture|Other osteoporosis with current pathological fracture +C2896652|T046|HT|M80.8|ICD10CM|Other osteoporosis with current pathological fracture|Other osteoporosis with current pathological fracture +C0477673|T047|PT|M80.8|ICD10|Other osteoporosis with pathological fracture|Other osteoporosis with pathological fracture +C2896649|T046|ET|M80.8|ICD10CM|Post-traumatic osteoporosis with current pathological fracture|Post-traumatic osteoporosis with current pathological fracture +C2896650|T047|ET|M80.8|ICD10CM|Postoophorectomy osteoporosis with current pathological fracture|Postoophorectomy osteoporosis with current pathological fracture +C2896651|T046|ET|M80.8|ICD10CM|Postsurgical malabsorption osteoporosis with current pathological fracture|Postsurgical malabsorption osteoporosis with current pathological fracture +C2896653|T046|AB|M80.80|ICD10CM|Oth osteoporosis w current pathological fracture, unsp site|Oth osteoporosis w current pathological fracture, unsp site +C2896653|T046|HT|M80.80|ICD10CM|Other osteoporosis with current pathological fracture, unspecified site|Other osteoporosis with current pathological fracture, unspecified site +C2896654|T046|AB|M80.80XA|ICD10CM|Oth osteopor w current path fracture, unsp site, init|Oth osteopor w current path fracture, unsp site, init +C2896655|T046|AB|M80.80XD|ICD10CM|Oth osteopor w crnt path fx, unsp site, 7thD|Oth osteopor w crnt path fx, unsp site, 7thD +C2896656|T046|AB|M80.80XG|ICD10CM|Oth osteopor w crnt path fx, unsp site, 7thG|Oth osteopor w crnt path fx, unsp site, 7thG +C2896657|T046|AB|M80.80XK|ICD10CM|Oth osteopor w crnt path fx, unsp site, 7thK|Oth osteopor w crnt path fx, unsp site, 7thK +C2896658|T046|AB|M80.80XP|ICD10CM|Oth osteopor w crnt path fx, unsp site, 7thP|Oth osteopor w crnt path fx, unsp site, 7thP +C2896659|T046|AB|M80.80XS|ICD10CM|Oth osteopor w current path fracture, unsp site, sequela|Oth osteopor w current path fracture, unsp site, sequela +C2896659|T046|PT|M80.80XS|ICD10CM|Other osteoporosis with current pathological fracture, unspecified site, sequela|Other osteoporosis with current pathological fracture, unspecified site, sequela +C2896660|T046|AB|M80.81|ICD10CM|Other osteoporosis with pathological fracture, shoulder|Other osteoporosis with pathological fracture, shoulder +C2896660|T046|HT|M80.81|ICD10CM|Other osteoporosis with pathological fracture, shoulder|Other osteoporosis with pathological fracture, shoulder +C2896661|T046|AB|M80.811|ICD10CM|Oth osteoporosis w current pathological fracture, r shoulder|Oth osteoporosis w current pathological fracture, r shoulder +C2896661|T046|HT|M80.811|ICD10CM|Other osteoporosis with current pathological fracture, right shoulder|Other osteoporosis with current pathological fracture, right shoulder +C2896662|T046|AB|M80.811A|ICD10CM|Oth osteopor w current path fracture, r shoulder, init|Oth osteopor w current path fracture, r shoulder, init +C2896663|T046|AB|M80.811D|ICD10CM|Oth osteopor w crnt path fx, r shldr, 7thD|Oth osteopor w crnt path fx, r shldr, 7thD +C2896664|T046|AB|M80.811G|ICD10CM|Oth osteopor w crnt path fx, r shldr, 7thG|Oth osteopor w crnt path fx, r shldr, 7thG +C2896665|T046|AB|M80.811K|ICD10CM|Oth osteopor w crnt path fx, r shldr, subs for fx w nonunion|Oth osteopor w crnt path fx, r shldr, subs for fx w nonunion +C2896666|T046|AB|M80.811P|ICD10CM|Oth osteopor w crnt path fx, r shldr, subs for fx w malunion|Oth osteopor w crnt path fx, r shldr, subs for fx w malunion +C2896667|T046|AB|M80.811S|ICD10CM|Oth osteopor w current path fracture, r shoulder, sequela|Oth osteopor w current path fracture, r shoulder, sequela +C2896667|T046|PT|M80.811S|ICD10CM|Other osteoporosis with current pathological fracture, right shoulder, sequela|Other osteoporosis with current pathological fracture, right shoulder, sequela +C2896668|T046|AB|M80.812|ICD10CM|Oth osteoporosis w current pathological fracture, l shoulder|Oth osteoporosis w current pathological fracture, l shoulder +C2896668|T046|HT|M80.812|ICD10CM|Other osteoporosis with current pathological fracture, left shoulder|Other osteoporosis with current pathological fracture, left shoulder +C2896669|T046|AB|M80.812A|ICD10CM|Oth osteopor w current path fracture, l shoulder, init|Oth osteopor w current path fracture, l shoulder, init +C2896669|T046|PT|M80.812A|ICD10CM|Other osteoporosis with current pathological fracture, left shoulder, initial encounter for fracture|Other osteoporosis with current pathological fracture, left shoulder, initial encounter for fracture +C2896670|T046|AB|M80.812D|ICD10CM|Oth osteopor w crnt path fx, l shldr, 7thD|Oth osteopor w crnt path fx, l shldr, 7thD +C2896671|T046|AB|M80.812G|ICD10CM|Oth osteopor w crnt path fx, l shldr, 7thG|Oth osteopor w crnt path fx, l shldr, 7thG +C2896672|T046|AB|M80.812K|ICD10CM|Oth osteopor w crnt path fx, l shldr, subs for fx w nonunion|Oth osteopor w crnt path fx, l shldr, subs for fx w nonunion +C2896673|T046|AB|M80.812P|ICD10CM|Oth osteopor w crnt path fx, l shldr, subs for fx w malunion|Oth osteopor w crnt path fx, l shldr, subs for fx w malunion +C2896674|T046|AB|M80.812S|ICD10CM|Oth osteopor w current path fracture, l shoulder, sequela|Oth osteopor w current path fracture, l shoulder, sequela +C2896674|T046|PT|M80.812S|ICD10CM|Other osteoporosis with current pathological fracture, left shoulder, sequela|Other osteoporosis with current pathological fracture, left shoulder, sequela +C2896675|T046|AB|M80.819|ICD10CM|Oth osteopor w current pathological fracture, unsp shoulder|Oth osteopor w current pathological fracture, unsp shoulder +C2896675|T046|HT|M80.819|ICD10CM|Other osteoporosis with current pathological fracture, unspecified shoulder|Other osteoporosis with current pathological fracture, unspecified shoulder +C2896676|T046|AB|M80.819A|ICD10CM|Oth osteopor w current path fracture, unsp shoulder, init|Oth osteopor w current path fracture, unsp shoulder, init +C2896677|T046|AB|M80.819D|ICD10CM|Oth osteopor w crnt path fx, unsp shldr, 7thD|Oth osteopor w crnt path fx, unsp shldr, 7thD +C2896678|T046|AB|M80.819G|ICD10CM|Oth osteopor w crnt path fx, unsp shldr, 7thG|Oth osteopor w crnt path fx, unsp shldr, 7thG +C2896679|T046|AB|M80.819K|ICD10CM|Oth osteopor w crnt path fx, unsp shldr, 7thK|Oth osteopor w crnt path fx, unsp shldr, 7thK +C2896680|T046|AB|M80.819P|ICD10CM|Oth osteopor w crnt path fx, unsp shldr, 7thP|Oth osteopor w crnt path fx, unsp shldr, 7thP +C2896681|T046|AB|M80.819S|ICD10CM|Oth osteopor w current path fracture, unsp shoulder, sequela|Oth osteopor w current path fracture, unsp shoulder, sequela +C2896681|T046|PT|M80.819S|ICD10CM|Other osteoporosis with current pathological fracture, unspecified shoulder, sequela|Other osteoporosis with current pathological fracture, unspecified shoulder, sequela +C2896682|T046|AB|M80.82|ICD10CM|Oth osteoporosis with current pathological fracture, humerus|Oth osteoporosis with current pathological fracture, humerus +C2896682|T046|HT|M80.82|ICD10CM|Other osteoporosis with current pathological fracture, humerus|Other osteoporosis with current pathological fracture, humerus +C2896683|T046|AB|M80.821|ICD10CM|Oth osteoporosis w current pathological fracture, r humerus|Oth osteoporosis w current pathological fracture, r humerus +C2896683|T046|HT|M80.821|ICD10CM|Other osteoporosis with current pathological fracture, right humerus|Other osteoporosis with current pathological fracture, right humerus +C2896684|T046|AB|M80.821A|ICD10CM|Oth osteopor w current path fracture, r humerus, init|Oth osteopor w current path fracture, r humerus, init +C2896684|T046|PT|M80.821A|ICD10CM|Other osteoporosis with current pathological fracture, right humerus, initial encounter for fracture|Other osteoporosis with current pathological fracture, right humerus, initial encounter for fracture +C2896685|T046|AB|M80.821D|ICD10CM|Oth osteopor w crnt path fx, r humer, 7thD|Oth osteopor w crnt path fx, r humer, 7thD +C2896686|T046|AB|M80.821G|ICD10CM|Oth osteopor w crnt path fx, r humer, 7thG|Oth osteopor w crnt path fx, r humer, 7thG +C2896687|T046|AB|M80.821K|ICD10CM|Oth osteopor w crnt path fx, r humer, subs for fx w nonunion|Oth osteopor w crnt path fx, r humer, subs for fx w nonunion +C2896688|T046|AB|M80.821P|ICD10CM|Oth osteopor w crnt path fx, r humer, subs for fx w malunion|Oth osteopor w crnt path fx, r humer, subs for fx w malunion +C2896689|T046|AB|M80.821S|ICD10CM|Oth osteopor w current path fracture, r humerus, sequela|Oth osteopor w current path fracture, r humerus, sequela +C2896689|T046|PT|M80.821S|ICD10CM|Other osteoporosis with current pathological fracture, right humerus, sequela|Other osteoporosis with current pathological fracture, right humerus, sequela +C2896690|T046|AB|M80.822|ICD10CM|Oth osteoporosis w current pathological fracture, l humerus|Oth osteoporosis w current pathological fracture, l humerus +C2896690|T046|HT|M80.822|ICD10CM|Other osteoporosis with current pathological fracture, left humerus|Other osteoporosis with current pathological fracture, left humerus +C2896691|T046|AB|M80.822A|ICD10CM|Oth osteopor w current path fracture, l humerus, init|Oth osteopor w current path fracture, l humerus, init +C2896691|T046|PT|M80.822A|ICD10CM|Other osteoporosis with current pathological fracture, left humerus, initial encounter for fracture|Other osteoporosis with current pathological fracture, left humerus, initial encounter for fracture +C2896692|T046|AB|M80.822D|ICD10CM|Oth osteopor w crnt path fx, l humer, 7thD|Oth osteopor w crnt path fx, l humer, 7thD +C2896693|T046|AB|M80.822G|ICD10CM|Oth osteopor w crnt path fx, l humer, 7thG|Oth osteopor w crnt path fx, l humer, 7thG +C2896694|T046|AB|M80.822K|ICD10CM|Oth osteopor w crnt path fx, l humer, subs for fx w nonunion|Oth osteopor w crnt path fx, l humer, subs for fx w nonunion +C2896695|T046|AB|M80.822P|ICD10CM|Oth osteopor w crnt path fx, l humer, subs for fx w malunion|Oth osteopor w crnt path fx, l humer, subs for fx w malunion +C2896696|T046|AB|M80.822S|ICD10CM|Oth osteopor w current path fracture, l humerus, sequela|Oth osteopor w current path fracture, l humerus, sequela +C2896696|T046|PT|M80.822S|ICD10CM|Other osteoporosis with current pathological fracture, left humerus, sequela|Other osteoporosis with current pathological fracture, left humerus, sequela +C2896682|T046|AB|M80.829|ICD10CM|Oth osteopor w current pathological fracture, unsp humerus|Oth osteopor w current pathological fracture, unsp humerus +C2896682|T046|HT|M80.829|ICD10CM|Other osteoporosis with current pathological fracture, unspecified humerus|Other osteoporosis with current pathological fracture, unspecified humerus +C2896697|T046|AB|M80.829A|ICD10CM|Oth osteopor w current path fracture, unsp humerus, init|Oth osteopor w current path fracture, unsp humerus, init +C2896698|T046|AB|M80.829D|ICD10CM|Oth osteopor w crnt path fx, unsp humer, 7thD|Oth osteopor w crnt path fx, unsp humer, 7thD +C2896699|T046|AB|M80.829G|ICD10CM|Oth osteopor w crnt path fx, unsp humer, 7thG|Oth osteopor w crnt path fx, unsp humer, 7thG +C2896700|T046|AB|M80.829K|ICD10CM|Oth osteopor w crnt path fx, unsp humer, 7thK|Oth osteopor w crnt path fx, unsp humer, 7thK +C2896701|T046|AB|M80.829P|ICD10CM|Oth osteopor w crnt path fx, unsp humer, 7thP|Oth osteopor w crnt path fx, unsp humer, 7thP +C2896702|T046|AB|M80.829S|ICD10CM|Oth osteopor w current path fracture, unsp humerus, sequela|Oth osteopor w current path fracture, unsp humerus, sequela +C2896702|T046|PT|M80.829S|ICD10CM|Other osteoporosis with current pathological fracture, unspecified humerus, sequela|Other osteoporosis with current pathological fracture, unspecified humerus, sequela +C2896704|T046|AB|M80.83|ICD10CM|Oth osteoporosis with current pathological fracture, forearm|Oth osteoporosis with current pathological fracture, forearm +C2896703|T046|ET|M80.83|ICD10CM|Other osteoporosis with current pathological fracture of wrist|Other osteoporosis with current pathological fracture of wrist +C2896704|T046|HT|M80.83|ICD10CM|Other osteoporosis with current pathological fracture, forearm|Other osteoporosis with current pathological fracture, forearm +C2896705|T046|AB|M80.831|ICD10CM|Oth osteoporosis w current pathological fracture, r forearm|Oth osteoporosis w current pathological fracture, r forearm +C2896705|T046|HT|M80.831|ICD10CM|Other osteoporosis with current pathological fracture, right forearm|Other osteoporosis with current pathological fracture, right forearm +C2896706|T046|AB|M80.831A|ICD10CM|Oth osteopor w current path fracture, r forearm, init|Oth osteopor w current path fracture, r forearm, init +C2896706|T046|PT|M80.831A|ICD10CM|Other osteoporosis with current pathological fracture, right forearm, initial encounter for fracture|Other osteoporosis with current pathological fracture, right forearm, initial encounter for fracture +C2896707|T046|AB|M80.831D|ICD10CM|Oth osteopor w crnt path fx, r forearm, 7thD|Oth osteopor w crnt path fx, r forearm, 7thD +C2896708|T046|AB|M80.831G|ICD10CM|Oth osteopor w crnt path fx, r forearm, 7thG|Oth osteopor w crnt path fx, r forearm, 7thG +C2896709|T046|AB|M80.831K|ICD10CM|Oth osteopor w crnt path fx, r forearm, 7thK|Oth osteopor w crnt path fx, r forearm, 7thK +C2896710|T046|AB|M80.831P|ICD10CM|Oth osteopor w crnt path fx, r forearm, 7thP|Oth osteopor w crnt path fx, r forearm, 7thP +C2896711|T046|AB|M80.831S|ICD10CM|Oth osteopor w current path fracture, r forearm, sequela|Oth osteopor w current path fracture, r forearm, sequela +C2896711|T046|PT|M80.831S|ICD10CM|Other osteoporosis with current pathological fracture, right forearm, sequela|Other osteoporosis with current pathological fracture, right forearm, sequela +C2896712|T046|AB|M80.832|ICD10CM|Oth osteoporosis w current pathological fracture, l forearm|Oth osteoporosis w current pathological fracture, l forearm +C2896712|T046|HT|M80.832|ICD10CM|Other osteoporosis with current pathological fracture, left forearm|Other osteoporosis with current pathological fracture, left forearm +C2896713|T046|AB|M80.832A|ICD10CM|Oth osteopor w current path fracture, l forearm, init|Oth osteopor w current path fracture, l forearm, init +C2896713|T046|PT|M80.832A|ICD10CM|Other osteoporosis with current pathological fracture, left forearm, initial encounter for fracture|Other osteoporosis with current pathological fracture, left forearm, initial encounter for fracture +C2896714|T046|AB|M80.832D|ICD10CM|Oth osteopor w crnt path fx, l forearm, 7thD|Oth osteopor w crnt path fx, l forearm, 7thD +C2896715|T046|AB|M80.832G|ICD10CM|Oth osteopor w crnt path fx, l forearm, 7thG|Oth osteopor w crnt path fx, l forearm, 7thG +C2896716|T046|AB|M80.832K|ICD10CM|Oth osteopor w crnt path fx, l forearm, 7thK|Oth osteopor w crnt path fx, l forearm, 7thK +C2896717|T046|AB|M80.832P|ICD10CM|Oth osteopor w crnt path fx, l forearm, 7thP|Oth osteopor w crnt path fx, l forearm, 7thP +C2896718|T046|AB|M80.832S|ICD10CM|Oth osteopor w current path fracture, l forearm, sequela|Oth osteopor w current path fracture, l forearm, sequela +C2896718|T046|PT|M80.832S|ICD10CM|Other osteoporosis with current pathological fracture, left forearm, sequela|Other osteoporosis with current pathological fracture, left forearm, sequela +C2896719|T046|AB|M80.839|ICD10CM|Oth osteopor w current pathological fracture, unsp forearm|Oth osteopor w current pathological fracture, unsp forearm +C2896719|T046|HT|M80.839|ICD10CM|Other osteoporosis with current pathological fracture, unspecified forearm|Other osteoporosis with current pathological fracture, unspecified forearm +C2896720|T046|AB|M80.839A|ICD10CM|Oth osteopor w current path fracture, unsp forearm, init|Oth osteopor w current path fracture, unsp forearm, init +C2896721|T046|AB|M80.839D|ICD10CM|Oth osteopor w crnt path fx, unsp forearm, 7thD|Oth osteopor w crnt path fx, unsp forearm, 7thD +C2896722|T046|AB|M80.839G|ICD10CM|Oth osteopor w crnt path fx, unsp forearm, 7thG|Oth osteopor w crnt path fx, unsp forearm, 7thG +C2896723|T046|AB|M80.839K|ICD10CM|Oth osteopor w crnt path fx, unsp forearm, 7thK|Oth osteopor w crnt path fx, unsp forearm, 7thK +C2896724|T046|AB|M80.839P|ICD10CM|Oth osteopor w crnt path fx, unsp forearm, 7thP|Oth osteopor w crnt path fx, unsp forearm, 7thP +C2896725|T046|AB|M80.839S|ICD10CM|Oth osteopor w current path fracture, unsp forearm, sequela|Oth osteopor w current path fracture, unsp forearm, sequela +C2896725|T046|PT|M80.839S|ICD10CM|Other osteoporosis with current pathological fracture, unspecified forearm, sequela|Other osteoporosis with current pathological fracture, unspecified forearm, sequela +C2896726|T046|AB|M80.84|ICD10CM|Other osteoporosis with current pathological fracture, hand|Other osteoporosis with current pathological fracture, hand +C2896726|T046|HT|M80.84|ICD10CM|Other osteoporosis with current pathological fracture, hand|Other osteoporosis with current pathological fracture, hand +C2896727|T046|AB|M80.841|ICD10CM|Oth osteoporosis w current pathological fracture, right hand|Oth osteoporosis w current pathological fracture, right hand +C2896727|T046|HT|M80.841|ICD10CM|Other osteoporosis with current pathological fracture, right hand|Other osteoporosis with current pathological fracture, right hand +C2896728|T046|AB|M80.841A|ICD10CM|Oth osteopor w current path fracture, right hand, init|Oth osteopor w current path fracture, right hand, init +C2896728|T046|PT|M80.841A|ICD10CM|Other osteoporosis with current pathological fracture, right hand, initial encounter for fracture|Other osteoporosis with current pathological fracture, right hand, initial encounter for fracture +C2896729|T046|AB|M80.841D|ICD10CM|Oth osteopor w crnt path fx, r hand, 7thD|Oth osteopor w crnt path fx, r hand, 7thD +C2896730|T046|AB|M80.841G|ICD10CM|Oth osteopor w crnt path fx, r hand, 7thG|Oth osteopor w crnt path fx, r hand, 7thG +C2896731|T046|AB|M80.841K|ICD10CM|Oth osteopor w crnt path fx, r hand, subs for fx w nonunion|Oth osteopor w crnt path fx, r hand, subs for fx w nonunion +C2896732|T046|AB|M80.841P|ICD10CM|Oth osteopor w crnt path fx, r hand, subs for fx w malunion|Oth osteopor w crnt path fx, r hand, subs for fx w malunion +C2896733|T046|AB|M80.841S|ICD10CM|Oth osteopor w current path fracture, right hand, sequela|Oth osteopor w current path fracture, right hand, sequela +C2896733|T046|PT|M80.841S|ICD10CM|Other osteoporosis with current pathological fracture, right hand, sequela|Other osteoporosis with current pathological fracture, right hand, sequela +C2896734|T046|AB|M80.842|ICD10CM|Oth osteoporosis w current pathological fracture, left hand|Oth osteoporosis w current pathological fracture, left hand +C2896734|T046|HT|M80.842|ICD10CM|Other osteoporosis with current pathological fracture, left hand|Other osteoporosis with current pathological fracture, left hand +C2896735|T046|AB|M80.842A|ICD10CM|Oth osteopor w current path fracture, left hand, init|Oth osteopor w current path fracture, left hand, init +C2896735|T046|PT|M80.842A|ICD10CM|Other osteoporosis with current pathological fracture, left hand, initial encounter for fracture|Other osteoporosis with current pathological fracture, left hand, initial encounter for fracture +C2896736|T046|AB|M80.842D|ICD10CM|Oth osteopor w crnt path fx, l hand, 7thD|Oth osteopor w crnt path fx, l hand, 7thD +C2896737|T046|AB|M80.842G|ICD10CM|Oth osteopor w crnt path fx, l hand, 7thG|Oth osteopor w crnt path fx, l hand, 7thG +C2896738|T046|AB|M80.842K|ICD10CM|Oth osteopor w crnt path fx, l hand, subs for fx w nonunion|Oth osteopor w crnt path fx, l hand, subs for fx w nonunion +C2896739|T046|AB|M80.842P|ICD10CM|Oth osteopor w crnt path fx, l hand, subs for fx w malunion|Oth osteopor w crnt path fx, l hand, subs for fx w malunion +C2896740|T046|AB|M80.842S|ICD10CM|Oth osteopor w current path fracture, left hand, sequela|Oth osteopor w current path fracture, left hand, sequela +C2896740|T046|PT|M80.842S|ICD10CM|Other osteoporosis with current pathological fracture, left hand, sequela|Other osteoporosis with current pathological fracture, left hand, sequela +C2896741|T046|AB|M80.849|ICD10CM|Oth osteoporosis w current pathological fracture, unsp hand|Oth osteoporosis w current pathological fracture, unsp hand +C2896741|T046|HT|M80.849|ICD10CM|Other osteoporosis with current pathological fracture, unspecified hand|Other osteoporosis with current pathological fracture, unspecified hand +C2896742|T046|AB|M80.849A|ICD10CM|Oth osteopor w current path fracture, unsp hand, init|Oth osteopor w current path fracture, unsp hand, init +C2896743|T046|AB|M80.849D|ICD10CM|Oth osteopor w crnt path fx, unsp hand, 7thD|Oth osteopor w crnt path fx, unsp hand, 7thD +C2896744|T046|AB|M80.849G|ICD10CM|Oth osteopor w crnt path fx, unsp hand, 7thG|Oth osteopor w crnt path fx, unsp hand, 7thG +C2896745|T046|AB|M80.849K|ICD10CM|Oth osteopor w crnt path fx, unsp hand, 7thK|Oth osteopor w crnt path fx, unsp hand, 7thK +C2896746|T046|AB|M80.849P|ICD10CM|Oth osteopor w crnt path fx, unsp hand, 7thP|Oth osteopor w crnt path fx, unsp hand, 7thP +C2896747|T046|AB|M80.849S|ICD10CM|Oth osteopor w current path fracture, unsp hand, sequela|Oth osteopor w current path fracture, unsp hand, sequela +C2896747|T046|PT|M80.849S|ICD10CM|Other osteoporosis with current pathological fracture, unspecified hand, sequela|Other osteoporosis with current pathological fracture, unspecified hand, sequela +C2896748|T046|ET|M80.85|ICD10CM|Other osteoporosis with current pathological fracture of hip|Other osteoporosis with current pathological fracture of hip +C2896749|T046|AB|M80.85|ICD10CM|Other osteoporosis with current pathological fracture, femur|Other osteoporosis with current pathological fracture, femur +C2896749|T046|HT|M80.85|ICD10CM|Other osteoporosis with current pathological fracture, femur|Other osteoporosis with current pathological fracture, femur +C2896750|T046|AB|M80.851|ICD10CM|Oth osteopor w current pathological fracture, right femur|Oth osteopor w current pathological fracture, right femur +C2896750|T046|HT|M80.851|ICD10CM|Other osteoporosis with current pathological fracture, right femur|Other osteoporosis with current pathological fracture, right femur +C2896751|T046|AB|M80.851A|ICD10CM|Oth osteopor w current path fracture, right femur, init|Oth osteopor w current path fracture, right femur, init +C2896751|T046|PT|M80.851A|ICD10CM|Other osteoporosis with current pathological fracture, right femur, initial encounter for fracture|Other osteoporosis with current pathological fracture, right femur, initial encounter for fracture +C2896752|T046|AB|M80.851D|ICD10CM|Oth osteopor w crnt path fx, r femr, 7thD|Oth osteopor w crnt path fx, r femr, 7thD +C2900506|T046|AB|M80.851G|ICD10CM|Oth osteopor w crnt path fx, r femr, 7thG|Oth osteopor w crnt path fx, r femr, 7thG +C2900507|T046|AB|M80.851K|ICD10CM|Oth osteopor w crnt path fx, r femur, subs for fx w nonunion|Oth osteopor w crnt path fx, r femur, subs for fx w nonunion +C2900508|T046|AB|M80.851P|ICD10CM|Oth osteopor w crnt path fx, r femur, subs for fx w malunion|Oth osteopor w crnt path fx, r femur, subs for fx w malunion +C2900509|T046|AB|M80.851S|ICD10CM|Oth osteopor w current path fracture, right femur, sequela|Oth osteopor w current path fracture, right femur, sequela +C2900509|T046|PT|M80.851S|ICD10CM|Other osteoporosis with current pathological fracture, right femur, sequela|Other osteoporosis with current pathological fracture, right femur, sequela +C2900510|T046|AB|M80.852|ICD10CM|Oth osteoporosis w current pathological fracture, left femur|Oth osteoporosis w current pathological fracture, left femur +C2900510|T046|HT|M80.852|ICD10CM|Other osteoporosis with current pathological fracture, left femur|Other osteoporosis with current pathological fracture, left femur +C2900511|T046|AB|M80.852A|ICD10CM|Oth osteopor w current path fracture, left femur, init|Oth osteopor w current path fracture, left femur, init +C2900511|T046|PT|M80.852A|ICD10CM|Other osteoporosis with current pathological fracture, left femur, initial encounter for fracture|Other osteoporosis with current pathological fracture, left femur, initial encounter for fracture +C2900512|T046|AB|M80.852D|ICD10CM|Oth osteopor w crnt path fx, l femr, 7thD|Oth osteopor w crnt path fx, l femr, 7thD +C2900513|T046|AB|M80.852G|ICD10CM|Oth osteopor w crnt path fx, l femr, 7thG|Oth osteopor w crnt path fx, l femr, 7thG +C2900514|T046|AB|M80.852K|ICD10CM|Oth osteopor w crnt path fx, l femur, subs for fx w nonunion|Oth osteopor w crnt path fx, l femur, subs for fx w nonunion +C2900515|T046|AB|M80.852P|ICD10CM|Oth osteopor w crnt path fx, l femur, subs for fx w malunion|Oth osteopor w crnt path fx, l femur, subs for fx w malunion +C2900516|T046|AB|M80.852S|ICD10CM|Oth osteopor w current path fracture, left femur, sequela|Oth osteopor w current path fracture, left femur, sequela +C2900516|T046|PT|M80.852S|ICD10CM|Other osteoporosis with current pathological fracture, left femur, sequela|Other osteoporosis with current pathological fracture, left femur, sequela +C2900517|T046|AB|M80.859|ICD10CM|Oth osteoporosis w current pathological fracture, unsp femur|Oth osteoporosis w current pathological fracture, unsp femur +C2900517|T046|HT|M80.859|ICD10CM|Other osteoporosis with current pathological fracture, unspecified femur|Other osteoporosis with current pathological fracture, unspecified femur +C2900518|T046|AB|M80.859A|ICD10CM|Oth osteopor w current path fracture, unsp femur, init|Oth osteopor w current path fracture, unsp femur, init +C2900519|T046|AB|M80.859D|ICD10CM|Oth osteopor w crnt path fx, unsp femr, 7thD|Oth osteopor w crnt path fx, unsp femr, 7thD +C2900520|T046|AB|M80.859G|ICD10CM|Oth osteopor w crnt path fx, unsp femr, 7thG|Oth osteopor w crnt path fx, unsp femr, 7thG +C2900521|T046|AB|M80.859K|ICD10CM|Oth osteopor w crnt path fx, unsp femr, 7thK|Oth osteopor w crnt path fx, unsp femr, 7thK +C2900522|T046|AB|M80.859P|ICD10CM|Oth osteopor w crnt path fx, unsp femr, 7thP|Oth osteopor w crnt path fx, unsp femr, 7thP +C2900523|T046|AB|M80.859S|ICD10CM|Oth osteopor w current path fracture, unsp femur, sequela|Oth osteopor w current path fracture, unsp femur, sequela +C2900523|T046|PT|M80.859S|ICD10CM|Other osteoporosis with current pathological fracture, unspecified femur, sequela|Other osteoporosis with current pathological fracture, unspecified femur, sequela +C2900524|T046|AB|M80.86|ICD10CM|Oth osteoporosis w current pathological fracture, lower leg|Oth osteoporosis w current pathological fracture, lower leg +C2900524|T046|HT|M80.86|ICD10CM|Other osteoporosis with current pathological fracture, lower leg|Other osteoporosis with current pathological fracture, lower leg +C2900525|T046|AB|M80.861|ICD10CM|Oth osteoporosis w current pathological fracture, r low leg|Oth osteoporosis w current pathological fracture, r low leg +C2900525|T046|HT|M80.861|ICD10CM|Other osteoporosis with current pathological fracture, right lower leg|Other osteoporosis with current pathological fracture, right lower leg +C2900526|T046|AB|M80.861A|ICD10CM|Oth osteopor w current path fracture, r low leg, init|Oth osteopor w current path fracture, r low leg, init +C2900527|T046|AB|M80.861D|ICD10CM|Oth osteopor w crnt path fx, r low leg, 7thD|Oth osteopor w crnt path fx, r low leg, 7thD +C2900528|T046|AB|M80.861G|ICD10CM|Oth osteopor w crnt path fx, r low leg, 7thG|Oth osteopor w crnt path fx, r low leg, 7thG +C2900529|T046|AB|M80.861K|ICD10CM|Oth osteopor w crnt path fx, r low leg, 7thK|Oth osteopor w crnt path fx, r low leg, 7thK +C2900530|T046|AB|M80.861P|ICD10CM|Oth osteopor w crnt path fx, r low leg, 7thP|Oth osteopor w crnt path fx, r low leg, 7thP +C2900531|T046|AB|M80.861S|ICD10CM|Oth osteopor w current path fracture, r low leg, sequela|Oth osteopor w current path fracture, r low leg, sequela +C2900531|T046|PT|M80.861S|ICD10CM|Other osteoporosis with current pathological fracture, right lower leg, sequela|Other osteoporosis with current pathological fracture, right lower leg, sequela +C2900532|T046|AB|M80.862|ICD10CM|Oth osteoporosis w current pathological fracture, l low leg|Oth osteoporosis w current pathological fracture, l low leg +C2900532|T046|HT|M80.862|ICD10CM|Other osteoporosis with current pathological fracture, left lower leg|Other osteoporosis with current pathological fracture, left lower leg +C2900533|T046|AB|M80.862A|ICD10CM|Oth osteopor w current path fracture, l low leg, init|Oth osteopor w current path fracture, l low leg, init +C2900534|T046|AB|M80.862D|ICD10CM|Oth osteopor w crnt path fx, l low leg, 7thD|Oth osteopor w crnt path fx, l low leg, 7thD +C2900535|T046|AB|M80.862G|ICD10CM|Oth osteopor w crnt path fx, l low leg, 7thG|Oth osteopor w crnt path fx, l low leg, 7thG +C2900536|T046|AB|M80.862K|ICD10CM|Oth osteopor w crnt path fx, l low leg, 7thK|Oth osteopor w crnt path fx, l low leg, 7thK +C2900537|T046|AB|M80.862P|ICD10CM|Oth osteopor w crnt path fx, l low leg, 7thP|Oth osteopor w crnt path fx, l low leg, 7thP +C2900538|T046|AB|M80.862S|ICD10CM|Oth osteopor w current path fracture, l low leg, sequela|Oth osteopor w current path fracture, l low leg, sequela +C2900538|T046|PT|M80.862S|ICD10CM|Other osteoporosis with current pathological fracture, left lower leg, sequela|Other osteoporosis with current pathological fracture, left lower leg, sequela +C2900539|T046|AB|M80.869|ICD10CM|Oth osteopor w current pathological fracture, unsp lower leg|Oth osteopor w current pathological fracture, unsp lower leg +C2900539|T046|HT|M80.869|ICD10CM|Other osteoporosis with current pathological fracture, unspecified lower leg|Other osteoporosis with current pathological fracture, unspecified lower leg +C2900540|T046|AB|M80.869A|ICD10CM|Oth osteopor w current path fracture, unsp lower leg, init|Oth osteopor w current path fracture, unsp lower leg, init +C2900541|T046|AB|M80.869D|ICD10CM|Oth osteopor w crnt path fx, unsp low leg, 7thD|Oth osteopor w crnt path fx, unsp low leg, 7thD +C2900542|T046|AB|M80.869G|ICD10CM|Oth osteopor w crnt path fx, unsp low leg, 7thG|Oth osteopor w crnt path fx, unsp low leg, 7thG +C2900543|T046|AB|M80.869K|ICD10CM|Oth osteopor w crnt path fx, unsp low leg, 7thK|Oth osteopor w crnt path fx, unsp low leg, 7thK +C2900544|T046|AB|M80.869P|ICD10CM|Oth osteopor w crnt path fx, unsp low leg, 7thP|Oth osteopor w crnt path fx, unsp low leg, 7thP +C2900545|T046|AB|M80.869S|ICD10CM|Oth osteopor w current path fracture, unsp low leg, sequela|Oth osteopor w current path fracture, unsp low leg, sequela +C2900545|T046|PT|M80.869S|ICD10CM|Other osteoporosis with current pathological fracture, unspecified lower leg, sequela|Other osteoporosis with current pathological fracture, unspecified lower leg, sequela +C2900546|T046|AB|M80.87|ICD10CM|Oth osteoporosis w current pathological fracture, ank/ft|Oth osteoporosis w current pathological fracture, ank/ft +C2900546|T046|HT|M80.87|ICD10CM|Other osteoporosis with current pathological fracture, ankle and foot|Other osteoporosis with current pathological fracture, ankle and foot +C2900547|T046|AB|M80.871|ICD10CM|Oth osteopor w current pathological fracture, right ank/ft|Oth osteopor w current pathological fracture, right ank/ft +C2900547|T046|HT|M80.871|ICD10CM|Other osteoporosis with current pathological fracture, right ankle and foot|Other osteoporosis with current pathological fracture, right ankle and foot +C2900548|T046|AB|M80.871A|ICD10CM|Oth osteopor w current path fracture, right ank/ft, init|Oth osteopor w current path fracture, right ank/ft, init +C2900549|T046|AB|M80.871D|ICD10CM|Oth osteopor w crnt path fx, r ank/ft, 7thD|Oth osteopor w crnt path fx, r ank/ft, 7thD +C2900550|T046|AB|M80.871G|ICD10CM|Oth osteopor w crnt path fx, r ank/ft, 7thG|Oth osteopor w crnt path fx, r ank/ft, 7thG +C2900551|T046|AB|M80.871K|ICD10CM|Oth osteopor w crnt path fx, r ank/ft, 7thK|Oth osteopor w crnt path fx, r ank/ft, 7thK +C2900552|T046|AB|M80.871P|ICD10CM|Oth osteopor w crnt path fx, r ank/ft, 7thP|Oth osteopor w crnt path fx, r ank/ft, 7thP +C2900553|T046|AB|M80.871S|ICD10CM|Oth osteopor w current path fracture, right ank/ft, sequela|Oth osteopor w current path fracture, right ank/ft, sequela +C2900553|T046|PT|M80.871S|ICD10CM|Other osteoporosis with current pathological fracture, right ankle and foot, sequela|Other osteoporosis with current pathological fracture, right ankle and foot, sequela +C2900554|T046|AB|M80.872|ICD10CM|Oth osteopor w current pathological fracture, left ank/ft|Oth osteopor w current pathological fracture, left ank/ft +C2900554|T046|HT|M80.872|ICD10CM|Other osteoporosis with current pathological fracture, left ankle and foot|Other osteoporosis with current pathological fracture, left ankle and foot +C2900555|T046|AB|M80.872A|ICD10CM|Oth osteopor w current path fracture, left ank/ft, init|Oth osteopor w current path fracture, left ank/ft, init +C2900556|T046|AB|M80.872D|ICD10CM|Oth osteopor w crnt path fx, l ank/ft, 7thD|Oth osteopor w crnt path fx, l ank/ft, 7thD +C2900557|T046|AB|M80.872G|ICD10CM|Oth osteopor w crnt path fx, l ank/ft, 7thG|Oth osteopor w crnt path fx, l ank/ft, 7thG +C2900558|T046|AB|M80.872K|ICD10CM|Oth osteopor w crnt path fx, l ank/ft, 7thK|Oth osteopor w crnt path fx, l ank/ft, 7thK +C2900559|T046|AB|M80.872P|ICD10CM|Oth osteopor w crnt path fx, l ank/ft, 7thP|Oth osteopor w crnt path fx, l ank/ft, 7thP +C2900560|T046|AB|M80.872S|ICD10CM|Oth osteopor w current path fracture, left ank/ft, sequela|Oth osteopor w current path fracture, left ank/ft, sequela +C2900560|T046|PT|M80.872S|ICD10CM|Other osteoporosis with current pathological fracture, left ankle and foot, sequela|Other osteoporosis with current pathological fracture, left ankle and foot, sequela +C2900561|T046|AB|M80.879|ICD10CM|Oth osteopor w current pathological fracture, unsp ank/ft|Oth osteopor w current pathological fracture, unsp ank/ft +C2900561|T046|HT|M80.879|ICD10CM|Other osteoporosis with current pathological fracture, unspecified ankle and foot|Other osteoporosis with current pathological fracture, unspecified ankle and foot +C2900562|T046|AB|M80.879A|ICD10CM|Oth osteopor w current path fracture, unsp ank/ft, init|Oth osteopor w current path fracture, unsp ank/ft, init +C2900563|T046|AB|M80.879D|ICD10CM|Oth osteopor w crnt path fx, unsp ank/ft, 7thD|Oth osteopor w crnt path fx, unsp ank/ft, 7thD +C2900564|T046|AB|M80.879G|ICD10CM|Oth osteopor w crnt path fx, unsp ank/ft, 7thG|Oth osteopor w crnt path fx, unsp ank/ft, 7thG +C2900565|T046|AB|M80.879K|ICD10CM|Oth osteopor w crnt path fx, unsp ank/ft, 7thK|Oth osteopor w crnt path fx, unsp ank/ft, 7thK +C2900566|T046|AB|M80.879P|ICD10CM|Oth osteopor w crnt path fx, unsp ank/ft, 7thP|Oth osteopor w crnt path fx, unsp ank/ft, 7thP +C2900567|T046|AB|M80.879S|ICD10CM|Oth osteopor w current path fracture, unsp ank/ft, sequela|Oth osteopor w current path fracture, unsp ank/ft, sequela +C2900567|T046|PT|M80.879S|ICD10CM|Other osteoporosis with current pathological fracture, unspecified ankle and foot, sequela|Other osteoporosis with current pathological fracture, unspecified ankle and foot, sequela +C2900568|T046|AB|M80.88|ICD10CM|Oth osteopor w current pathological fracture, vertebra(e)|Oth osteopor w current pathological fracture, vertebra(e) +C2900568|T046|HT|M80.88|ICD10CM|Other osteoporosis with current pathological fracture, vertebra(e)|Other osteoporosis with current pathological fracture, vertebra(e) +C2900569|T046|AB|M80.88XA|ICD10CM|Oth osteopor w current path fracture, vertebra(e), init|Oth osteopor w current path fracture, vertebra(e), init +C2900569|T046|PT|M80.88XA|ICD10CM|Other osteoporosis with current pathological fracture, vertebra(e), initial encounter for fracture|Other osteoporosis with current pathological fracture, vertebra(e), initial encounter for fracture +C2900570|T046|AB|M80.88XD|ICD10CM|Oth osteopor w crnt path fx, verteb, 7thD|Oth osteopor w crnt path fx, verteb, 7thD +C2900571|T046|AB|M80.88XG|ICD10CM|Oth osteopor w crnt path fx, verteb, 7thG|Oth osteopor w crnt path fx, verteb, 7thG +C2900572|T046|AB|M80.88XK|ICD10CM|Oth osteopor w crnt path fx, verteb, subs for fx w nonunion|Oth osteopor w crnt path fx, verteb, subs for fx w nonunion +C2900573|T046|AB|M80.88XP|ICD10CM|Oth osteopor w crnt path fx, verteb, subs for fx w malunion|Oth osteopor w crnt path fx, verteb, subs for fx w malunion +C2900574|T046|AB|M80.88XS|ICD10CM|Oth osteopor w current path fracture, vertebra(e), sequela|Oth osteopor w current path fracture, vertebra(e), sequela +C2900574|T046|PT|M80.88XS|ICD10CM|Other osteoporosis with current pathological fracture, vertebra(e), sequela|Other osteoporosis with current pathological fracture, vertebra(e), sequela +C0521170|T047|PT|M80.9|ICD10|Unspecified osteoporosis with pathological fracture|Unspecified osteoporosis with pathological fracture +C2900575|T047|HT|M81|ICD10CM|Osteoporosis without current pathological fracture|Osteoporosis without current pathological fracture +C2900575|T047|AB|M81|ICD10CM|Osteoporosis without current pathological fracture|Osteoporosis without current pathological fracture +C0494998|T047|HT|M81|ICD10|Osteoporosis without pathological fracture|Osteoporosis without pathological fracture +C2900579|T047|AB|M81.0|ICD10CM|Age-related osteoporosis w/o current pathological fracture|Age-related osteoporosis w/o current pathological fracture +C2900579|T047|PT|M81.0|ICD10CM|Age-related osteoporosis without current pathological fracture|Age-related osteoporosis without current pathological fracture +C2900576|T046|ET|M81.0|ICD10CM|Involutional osteoporosis without current pathological fracture|Involutional osteoporosis without current pathological fracture +C0029456|T047|ET|M81.0|ICD10CM|Osteoporosis NOS|Osteoporosis NOS +C0029458|T047|PT|M81.0|ICD10|Postmenopausal osteoporosis|Postmenopausal osteoporosis +C2900577|T046|ET|M81.0|ICD10CM|Postmenopausal osteoporosis without current pathological fracture|Postmenopausal osteoporosis without current pathological fracture +C2900578|T046|ET|M81.0|ICD10CM|Senile osteoporosis without current pathological fracture|Senile osteoporosis without current pathological fracture +C0451870|T020|PT|M81.1|ICD10|Postoophorectomy osteoporosis|Postoophorectomy osteoporosis +C0152256|T047|PT|M81.2|ICD10|Osteoporosis of disuse|Osteoporosis of disuse +C0451872|T047|PT|M81.3|ICD10|Postsurgical malabsorption osteoporosis|Postsurgical malabsorption osteoporosis +C0264115|T046|PT|M81.4|ICD10|Drug-induced osteoporosis|Drug-induced osteoporosis +C0158447|T047|PT|M81.5|ICD10|Idiopathic osteoporosis|Idiopathic osteoporosis +C0451868|T047|PT|M81.6|ICD10|Localized osteoporosis [Lequesne]|Localized osteoporosis [Lequesne] +C0451868|T047|PT|M81.6|ICD10CM|Localized osteoporosis [Lequesne]|Localized osteoporosis [Lequesne] +C0451868|T047|AB|M81.6|ICD10CM|Localized osteoporosis [Lequesne]|Localized osteoporosis [Lequesne] +C2900580|T046|ET|M81.8|ICD10CM|Drug-induced osteoporosis without current pathological fracture|Drug-induced osteoporosis without current pathological fracture +C2900581|T046|ET|M81.8|ICD10CM|Idiopathic osteoporosis without current pathological fracture|Idiopathic osteoporosis without current pathological fracture +C2900582|T046|ET|M81.8|ICD10CM|Osteoporosis of disuse without current pathological fracture|Osteoporosis of disuse without current pathological fracture +C0029694|T047|PT|M81.8|ICD10|Other osteoporosis|Other osteoporosis +C2900586|T046|AB|M81.8|ICD10CM|Other osteoporosis without current pathological fracture|Other osteoporosis without current pathological fracture +C2900586|T046|PT|M81.8|ICD10CM|Other osteoporosis without current pathological fracture|Other osteoporosis without current pathological fracture +C2900583|T046|ET|M81.8|ICD10CM|Post-traumatic osteoporosis without current pathological fracture|Post-traumatic osteoporosis without current pathological fracture +C2900584|T047|ET|M81.8|ICD10CM|Postoophorectomy osteoporosis without current pathological fracture|Postoophorectomy osteoporosis without current pathological fracture +C2900585|T046|ET|M81.8|ICD10CM|Postsurgical malabsorption osteoporosis without current pathological fracture|Postsurgical malabsorption osteoporosis without current pathological fracture +C0029456|T047|PT|M81.9|ICD10|Osteoporosis, unspecified|Osteoporosis, unspecified +C0694523|T047|HT|M82|ICD10|Osteoporosis in diseases classified elsewhere|Osteoporosis in diseases classified elsewhere +C0451873|T047|PT|M82.0|ICD10|Osteoporosis in multiple myelomatosis|Osteoporosis in multiple myelomatosis +C0451869|T047|PT|M82.1|ICD10|Osteoporosis in endocrine disorders|Osteoporosis in endocrine disorders +C0477674|T047|PT|M82.8|ICD10|Osteoporosis in other diseases classified elsewhere|Osteoporosis in other diseases classified elsewhere +C0477680|T047|HT|M83|ICD10|Adult osteomalacia|Adult osteomalacia +C0477680|T047|AB|M83|ICD10CM|Adult osteomalacia|Adult osteomalacia +C0477680|T047|HT|M83|ICD10CM|Adult osteomalacia|Adult osteomalacia +C0410446|T047|PT|M83.0|ICD10CM|Puerperal osteomalacia|Puerperal osteomalacia +C0410446|T047|AB|M83.0|ICD10CM|Puerperal osteomalacia|Puerperal osteomalacia +C0410446|T047|PT|M83.0|ICD10|Puerperal osteomalacia|Puerperal osteomalacia +C0451874|T047|PT|M83.1|ICD10|Senile osteomalacia|Senile osteomalacia +C0451874|T047|PT|M83.1|ICD10CM|Senile osteomalacia|Senile osteomalacia +C0451874|T047|AB|M83.1|ICD10CM|Senile osteomalacia|Senile osteomalacia +C0451875|T047|PT|M83.2|ICD10CM|Adult osteomalacia due to malabsorption|Adult osteomalacia due to malabsorption +C0451875|T047|AB|M83.2|ICD10CM|Adult osteomalacia due to malabsorption|Adult osteomalacia due to malabsorption +C0451875|T047|PT|M83.2|ICD10|Adult osteomalacia due to malabsorption|Adult osteomalacia due to malabsorption +C2900587|T046|ET|M83.2|ICD10CM|Postsurgical malabsorption osteomalacia in adults|Postsurgical malabsorption osteomalacia in adults +C0451876|T047|PT|M83.3|ICD10|Adult osteomalacia due to malnutrition|Adult osteomalacia due to malnutrition +C0451876|T047|PT|M83.3|ICD10CM|Adult osteomalacia due to malnutrition|Adult osteomalacia due to malnutrition +C0451876|T047|AB|M83.3|ICD10CM|Adult osteomalacia due to malnutrition|Adult osteomalacia due to malnutrition +C0473224|T047|PT|M83.4|ICD10|Aluminium bone disease|Aluminium bone disease +C0473224|T047|PT|M83.4|ICD10CM|Aluminum bone disease|Aluminum bone disease +C0473224|T047|AB|M83.4|ICD10CM|Aluminum bone disease|Aluminum bone disease +C0473224|T047|PT|M83.4|ICD10AE|Aluminum bone disease|Aluminum bone disease +C0477675|T047|PT|M83.5|ICD10CM|Other drug-induced osteomalacia in adults|Other drug-induced osteomalacia in adults +C0477675|T047|AB|M83.5|ICD10CM|Other drug-induced osteomalacia in adults|Other drug-induced osteomalacia in adults +C0477675|T047|PT|M83.5|ICD10|Other drug-induced osteomalacia in adults|Other drug-induced osteomalacia in adults +C0477676|T047|PT|M83.8|ICD10|Other adult osteomalacia|Other adult osteomalacia +C0477676|T047|PT|M83.8|ICD10CM|Other adult osteomalacia|Other adult osteomalacia +C0477676|T047|AB|M83.8|ICD10CM|Other adult osteomalacia|Other adult osteomalacia +C0477680|T047|PT|M83.9|ICD10CM|Adult osteomalacia, unspecified|Adult osteomalacia, unspecified +C0477680|T047|AB|M83.9|ICD10CM|Adult osteomalacia, unspecified|Adult osteomalacia, unspecified +C0477680|T047|PT|M83.9|ICD10|Adult osteomalacia, unspecified|Adult osteomalacia, unspecified +C0495003|T047|HT|M84|ICD10CM|Disorder of continuity of bone|Disorder of continuity of bone +C0495003|T047|AB|M84|ICD10CM|Disorder of continuity of bone|Disorder of continuity of bone +C0495003|T047|HT|M84|ICD10|Disorders of continuity of bone|Disorders of continuity of bone +C0158454|T046|PT|M84.0|ICD10|Malunion of fracture|Malunion of fracture +C0580003|T046|PT|M84.1|ICD10|Nonunion of fracture [pseudarthrosis]|Nonunion of fracture [pseudarthrosis] +C0332743|T046|PT|M84.2|ICD10|Delayed union of fracture|Delayed union of fracture +C0016664|T037|ET|M84.3|ICD10CM|Fatigue fracture|Fatigue fracture +C0016664|T037|ET|M84.3|ICD10CM|March fracture|March fracture +C0016664|T037|HT|M84.3|ICD10CM|Stress fracture|Stress fracture +C0016664|T037|AB|M84.3|ICD10CM|Stress fracture|Stress fracture +C0016664|T037|ET|M84.3|ICD10CM|Stress fracture NOS|Stress fracture NOS +C0495001|T037|PT|M84.3|ICD10|Stress fracture, not elsewhere classified|Stress fracture, not elsewhere classified +C0016664|T037|ET|M84.3|ICD10CM|Stress reaction|Stress reaction +C2900588|T037|AB|M84.30|ICD10CM|Stress fracture, unspecified site|Stress fracture, unspecified site +C2900588|T037|HT|M84.30|ICD10CM|Stress fracture, unspecified site|Stress fracture, unspecified site +C2900589|T046|AB|M84.30XA|ICD10CM|Stress fracture, unspecified site, init encntr for fracture|Stress fracture, unspecified site, init encntr for fracture +C2900589|T046|PT|M84.30XA|ICD10CM|Stress fracture, unspecified site, initial encounter for fracture|Stress fracture, unspecified site, initial encounter for fracture +C2900590|T037|AB|M84.30XD|ICD10CM|Stress fracture, unsp site, subs for fx w routn heal|Stress fracture, unsp site, subs for fx w routn heal +C2900590|T037|PT|M84.30XD|ICD10CM|Stress fracture, unspecified site, subsequent encounter for fracture with routine healing|Stress fracture, unspecified site, subsequent encounter for fracture with routine healing +C2900591|T037|AB|M84.30XG|ICD10CM|Stress fracture, unsp site, subs for fx w delay heal|Stress fracture, unsp site, subs for fx w delay heal +C2900591|T037|PT|M84.30XG|ICD10CM|Stress fracture, unspecified site, subsequent encounter for fracture with delayed healing|Stress fracture, unspecified site, subsequent encounter for fracture with delayed healing +C2900592|T037|AB|M84.30XK|ICD10CM|Stress fracture, unsp site, subs for fx w nonunion|Stress fracture, unsp site, subs for fx w nonunion +C2900592|T037|PT|M84.30XK|ICD10CM|Stress fracture, unspecified site, subsequent encounter for fracture with nonunion|Stress fracture, unspecified site, subsequent encounter for fracture with nonunion +C2900593|T037|AB|M84.30XP|ICD10CM|Stress fracture, unsp site, subs for fx w malunion|Stress fracture, unsp site, subs for fx w malunion +C2900593|T037|PT|M84.30XP|ICD10CM|Stress fracture, unspecified site, subsequent encounter for fracture with malunion|Stress fracture, unspecified site, subsequent encounter for fracture with malunion +C2900594|T037|PT|M84.30XS|ICD10CM|Stress fracture, unspecified site, sequela|Stress fracture, unspecified site, sequela +C2900594|T037|AB|M84.30XS|ICD10CM|Stress fracture, unspecified site, sequela|Stress fracture, unspecified site, sequela +C2900595|T046|AB|M84.31|ICD10CM|Stress fracture, shoulder|Stress fracture, shoulder +C2900595|T046|HT|M84.31|ICD10CM|Stress fracture, shoulder|Stress fracture, shoulder +C2900596|T046|AB|M84.311|ICD10CM|Stress fracture, right shoulder|Stress fracture, right shoulder +C2900596|T046|HT|M84.311|ICD10CM|Stress fracture, right shoulder|Stress fracture, right shoulder +C2900597|T046|AB|M84.311A|ICD10CM|Stress fracture, right shoulder, init encntr for fracture|Stress fracture, right shoulder, init encntr for fracture +C2900597|T046|PT|M84.311A|ICD10CM|Stress fracture, right shoulder, initial encounter for fracture|Stress fracture, right shoulder, initial encounter for fracture +C2900598|T037|AB|M84.311D|ICD10CM|Stress fracture, right shoulder, subs for fx w routn heal|Stress fracture, right shoulder, subs for fx w routn heal +C2900598|T037|PT|M84.311D|ICD10CM|Stress fracture, right shoulder, subsequent encounter for fracture with routine healing|Stress fracture, right shoulder, subsequent encounter for fracture with routine healing +C2900599|T037|AB|M84.311G|ICD10CM|Stress fracture, right shoulder, subs for fx w delay heal|Stress fracture, right shoulder, subs for fx w delay heal +C2900599|T037|PT|M84.311G|ICD10CM|Stress fracture, right shoulder, subsequent encounter for fracture with delayed healing|Stress fracture, right shoulder, subsequent encounter for fracture with delayed healing +C2900600|T046|AB|M84.311K|ICD10CM|Stress fracture, right shoulder, subs for fx w nonunion|Stress fracture, right shoulder, subs for fx w nonunion +C2900600|T046|PT|M84.311K|ICD10CM|Stress fracture, right shoulder, subsequent encounter for fracture with nonunion|Stress fracture, right shoulder, subsequent encounter for fracture with nonunion +C2900601|T037|AB|M84.311P|ICD10CM|Stress fracture, right shoulder, subs for fx w malunion|Stress fracture, right shoulder, subs for fx w malunion +C2900601|T037|PT|M84.311P|ICD10CM|Stress fracture, right shoulder, subsequent encounter for fracture with malunion|Stress fracture, right shoulder, subsequent encounter for fracture with malunion +C2900602|T046|PT|M84.311S|ICD10CM|Stress fracture, right shoulder, sequela|Stress fracture, right shoulder, sequela +C2900602|T046|AB|M84.311S|ICD10CM|Stress fracture, right shoulder, sequela|Stress fracture, right shoulder, sequela +C2900603|T046|AB|M84.312|ICD10CM|Stress fracture, left shoulder|Stress fracture, left shoulder +C2900603|T046|HT|M84.312|ICD10CM|Stress fracture, left shoulder|Stress fracture, left shoulder +C2900604|T046|AB|M84.312A|ICD10CM|Stress fracture, left shoulder, init encntr for fracture|Stress fracture, left shoulder, init encntr for fracture +C2900604|T046|PT|M84.312A|ICD10CM|Stress fracture, left shoulder, initial encounter for fracture|Stress fracture, left shoulder, initial encounter for fracture +C2900605|T046|AB|M84.312D|ICD10CM|Stress fracture, left shoulder, subs for fx w routn heal|Stress fracture, left shoulder, subs for fx w routn heal +C2900605|T046|PT|M84.312D|ICD10CM|Stress fracture, left shoulder, subsequent encounter for fracture with routine healing|Stress fracture, left shoulder, subsequent encounter for fracture with routine healing +C2900606|T046|AB|M84.312G|ICD10CM|Stress fracture, left shoulder, subs for fx w delay heal|Stress fracture, left shoulder, subs for fx w delay heal +C2900606|T046|PT|M84.312G|ICD10CM|Stress fracture, left shoulder, subsequent encounter for fracture with delayed healing|Stress fracture, left shoulder, subsequent encounter for fracture with delayed healing +C2900607|T046|AB|M84.312K|ICD10CM|Stress fracture, left shoulder, subs for fx w nonunion|Stress fracture, left shoulder, subs for fx w nonunion +C2900607|T046|PT|M84.312K|ICD10CM|Stress fracture, left shoulder, subsequent encounter for fracture with nonunion|Stress fracture, left shoulder, subsequent encounter for fracture with nonunion +C2900608|T037|AB|M84.312P|ICD10CM|Stress fracture, left shoulder, subs for fx w malunion|Stress fracture, left shoulder, subs for fx w malunion +C2900608|T037|PT|M84.312P|ICD10CM|Stress fracture, left shoulder, subsequent encounter for fracture with malunion|Stress fracture, left shoulder, subsequent encounter for fracture with malunion +C2900609|T037|PT|M84.312S|ICD10CM|Stress fracture, left shoulder, sequela|Stress fracture, left shoulder, sequela +C2900609|T037|AB|M84.312S|ICD10CM|Stress fracture, left shoulder, sequela|Stress fracture, left shoulder, sequela +C2900610|T037|AB|M84.319|ICD10CM|Stress fracture, unspecified shoulder|Stress fracture, unspecified shoulder +C2900610|T037|HT|M84.319|ICD10CM|Stress fracture, unspecified shoulder|Stress fracture, unspecified shoulder +C2900611|T046|AB|M84.319A|ICD10CM|Stress fracture, unsp shoulder, init encntr for fracture|Stress fracture, unsp shoulder, init encntr for fracture +C2900611|T046|PT|M84.319A|ICD10CM|Stress fracture, unspecified shoulder, initial encounter for fracture|Stress fracture, unspecified shoulder, initial encounter for fracture +C2900612|T037|AB|M84.319D|ICD10CM|Stress fracture, unsp shoulder, subs for fx w routn heal|Stress fracture, unsp shoulder, subs for fx w routn heal +C2900612|T037|PT|M84.319D|ICD10CM|Stress fracture, unspecified shoulder, subsequent encounter for fracture with routine healing|Stress fracture, unspecified shoulder, subsequent encounter for fracture with routine healing +C2900613|T037|AB|M84.319G|ICD10CM|Stress fracture, unsp shoulder, subs for fx w delay heal|Stress fracture, unsp shoulder, subs for fx w delay heal +C2900613|T037|PT|M84.319G|ICD10CM|Stress fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing|Stress fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing +C2900614|T046|AB|M84.319K|ICD10CM|Stress fracture, unsp shoulder, subs for fx w nonunion|Stress fracture, unsp shoulder, subs for fx w nonunion +C2900614|T046|PT|M84.319K|ICD10CM|Stress fracture, unspecified shoulder, subsequent encounter for fracture with nonunion|Stress fracture, unspecified shoulder, subsequent encounter for fracture with nonunion +C2900615|T046|AB|M84.319P|ICD10CM|Stress fracture, unsp shoulder, subs for fx w malunion|Stress fracture, unsp shoulder, subs for fx w malunion +C2900615|T046|PT|M84.319P|ICD10CM|Stress fracture, unspecified shoulder, subsequent encounter for fracture with malunion|Stress fracture, unspecified shoulder, subsequent encounter for fracture with malunion +C2900616|T037|PT|M84.319S|ICD10CM|Stress fracture, unspecified shoulder, sequela|Stress fracture, unspecified shoulder, sequela +C2900616|T037|AB|M84.319S|ICD10CM|Stress fracture, unspecified shoulder, sequela|Stress fracture, unspecified shoulder, sequela +C2900617|T037|AB|M84.32|ICD10CM|Stress fracture, humerus|Stress fracture, humerus +C2900617|T037|HT|M84.32|ICD10CM|Stress fracture, humerus|Stress fracture, humerus +C2900618|T037|AB|M84.321|ICD10CM|Stress fracture, right humerus|Stress fracture, right humerus +C2900618|T037|HT|M84.321|ICD10CM|Stress fracture, right humerus|Stress fracture, right humerus +C2900619|T037|AB|M84.321A|ICD10CM|Stress fracture, right humerus, init encntr for fracture|Stress fracture, right humerus, init encntr for fracture +C2900619|T037|PT|M84.321A|ICD10CM|Stress fracture, right humerus, initial encounter for fracture|Stress fracture, right humerus, initial encounter for fracture +C2900620|T037|AB|M84.321D|ICD10CM|Stress fracture, right humerus, subs for fx w routn heal|Stress fracture, right humerus, subs for fx w routn heal +C2900620|T037|PT|M84.321D|ICD10CM|Stress fracture, right humerus, subsequent encounter for fracture with routine healing|Stress fracture, right humerus, subsequent encounter for fracture with routine healing +C2900621|T046|AB|M84.321G|ICD10CM|Stress fracture, right humerus, subs for fx w delay heal|Stress fracture, right humerus, subs for fx w delay heal +C2900621|T046|PT|M84.321G|ICD10CM|Stress fracture, right humerus, subsequent encounter for fracture with delayed healing|Stress fracture, right humerus, subsequent encounter for fracture with delayed healing +C2900622|T046|AB|M84.321K|ICD10CM|Stress fracture, right humerus, subs for fx w nonunion|Stress fracture, right humerus, subs for fx w nonunion +C2900622|T046|PT|M84.321K|ICD10CM|Stress fracture, right humerus, subsequent encounter for fracture with nonunion|Stress fracture, right humerus, subsequent encounter for fracture with nonunion +C2900623|T037|AB|M84.321P|ICD10CM|Stress fracture, right humerus, subs for fx w malunion|Stress fracture, right humerus, subs for fx w malunion +C2900623|T037|PT|M84.321P|ICD10CM|Stress fracture, right humerus, subsequent encounter for fracture with malunion|Stress fracture, right humerus, subsequent encounter for fracture with malunion +C2900624|T037|PT|M84.321S|ICD10CM|Stress fracture, right humerus, sequela|Stress fracture, right humerus, sequela +C2900624|T037|AB|M84.321S|ICD10CM|Stress fracture, right humerus, sequela|Stress fracture, right humerus, sequela +C2900625|T037|AB|M84.322|ICD10CM|Stress fracture, left humerus|Stress fracture, left humerus +C2900625|T037|HT|M84.322|ICD10CM|Stress fracture, left humerus|Stress fracture, left humerus +C2900626|T037|AB|M84.322A|ICD10CM|Stress fracture, left humerus, init encntr for fracture|Stress fracture, left humerus, init encntr for fracture +C2900626|T037|PT|M84.322A|ICD10CM|Stress fracture, left humerus, initial encounter for fracture|Stress fracture, left humerus, initial encounter for fracture +C2900627|T037|AB|M84.322D|ICD10CM|Stress fracture, left humerus, subs for fx w routn heal|Stress fracture, left humerus, subs for fx w routn heal +C2900627|T037|PT|M84.322D|ICD10CM|Stress fracture, left humerus, subsequent encounter for fracture with routine healing|Stress fracture, left humerus, subsequent encounter for fracture with routine healing +C2900628|T037|AB|M84.322G|ICD10CM|Stress fracture, left humerus, subs for fx w delay heal|Stress fracture, left humerus, subs for fx w delay heal +C2900628|T037|PT|M84.322G|ICD10CM|Stress fracture, left humerus, subsequent encounter for fracture with delayed healing|Stress fracture, left humerus, subsequent encounter for fracture with delayed healing +C2900629|T037|AB|M84.322K|ICD10CM|Stress fracture, left humerus, subs for fx w nonunion|Stress fracture, left humerus, subs for fx w nonunion +C2900629|T037|PT|M84.322K|ICD10CM|Stress fracture, left humerus, subsequent encounter for fracture with nonunion|Stress fracture, left humerus, subsequent encounter for fracture with nonunion +C2900630|T046|AB|M84.322P|ICD10CM|Stress fracture, left humerus, subs for fx w malunion|Stress fracture, left humerus, subs for fx w malunion +C2900630|T046|PT|M84.322P|ICD10CM|Stress fracture, left humerus, subsequent encounter for fracture with malunion|Stress fracture, left humerus, subsequent encounter for fracture with malunion +C2900631|T037|PT|M84.322S|ICD10CM|Stress fracture, left humerus, sequela|Stress fracture, left humerus, sequela +C2900631|T037|AB|M84.322S|ICD10CM|Stress fracture, left humerus, sequela|Stress fracture, left humerus, sequela +C2900632|T037|AB|M84.329|ICD10CM|Stress fracture, unspecified humerus|Stress fracture, unspecified humerus +C2900632|T037|HT|M84.329|ICD10CM|Stress fracture, unspecified humerus|Stress fracture, unspecified humerus +C2900633|T037|AB|M84.329A|ICD10CM|Stress fracture, unsp humerus, init encntr for fracture|Stress fracture, unsp humerus, init encntr for fracture +C2900633|T037|PT|M84.329A|ICD10CM|Stress fracture, unspecified humerus, initial encounter for fracture|Stress fracture, unspecified humerus, initial encounter for fracture +C2900634|T046|AB|M84.329D|ICD10CM|Stress fracture, unsp humerus, subs for fx w routn heal|Stress fracture, unsp humerus, subs for fx w routn heal +C2900634|T046|PT|M84.329D|ICD10CM|Stress fracture, unspecified humerus, subsequent encounter for fracture with routine healing|Stress fracture, unspecified humerus, subsequent encounter for fracture with routine healing +C2900635|T037|AB|M84.329G|ICD10CM|Stress fracture, unsp humerus, subs for fx w delay heal|Stress fracture, unsp humerus, subs for fx w delay heal +C2900635|T037|PT|M84.329G|ICD10CM|Stress fracture, unspecified humerus, subsequent encounter for fracture with delayed healing|Stress fracture, unspecified humerus, subsequent encounter for fracture with delayed healing +C2900636|T046|AB|M84.329K|ICD10CM|Stress fracture, unsp humerus, subs for fx w nonunion|Stress fracture, unsp humerus, subs for fx w nonunion +C2900636|T046|PT|M84.329K|ICD10CM|Stress fracture, unspecified humerus, subsequent encounter for fracture with nonunion|Stress fracture, unspecified humerus, subsequent encounter for fracture with nonunion +C2900637|T037|AB|M84.329P|ICD10CM|Stress fracture, unsp humerus, subs for fx w malunion|Stress fracture, unsp humerus, subs for fx w malunion +C2900637|T037|PT|M84.329P|ICD10CM|Stress fracture, unspecified humerus, subsequent encounter for fracture with malunion|Stress fracture, unspecified humerus, subsequent encounter for fracture with malunion +C2900638|T037|PT|M84.329S|ICD10CM|Stress fracture, unspecified humerus, sequela|Stress fracture, unspecified humerus, sequela +C2900638|T037|AB|M84.329S|ICD10CM|Stress fracture, unspecified humerus, sequela|Stress fracture, unspecified humerus, sequela +C2911665|T046|AB|M84.33|ICD10CM|Stress fracture, ulna and radius|Stress fracture, ulna and radius +C2911665|T046|HT|M84.33|ICD10CM|Stress fracture, ulna and radius|Stress fracture, ulna and radius +C2900639|T037|AB|M84.331|ICD10CM|Stress fracture, right ulna|Stress fracture, right ulna +C2900639|T037|HT|M84.331|ICD10CM|Stress fracture, right ulna|Stress fracture, right ulna +C2900640|T046|PT|M84.331A|ICD10CM|Stress fracture, right ulna, initial encounter for fracture|Stress fracture, right ulna, initial encounter for fracture +C2900640|T046|AB|M84.331A|ICD10CM|Stress fracture, right ulna, initial encounter for fracture|Stress fracture, right ulna, initial encounter for fracture +C2900641|T046|AB|M84.331D|ICD10CM|Stress fracture, right ulna, subs for fx w routn heal|Stress fracture, right ulna, subs for fx w routn heal +C2900641|T046|PT|M84.331D|ICD10CM|Stress fracture, right ulna, subsequent encounter for fracture with routine healing|Stress fracture, right ulna, subsequent encounter for fracture with routine healing +C2900642|T046|AB|M84.331G|ICD10CM|Stress fracture, right ulna, subs for fx w delay heal|Stress fracture, right ulna, subs for fx w delay heal +C2900642|T046|PT|M84.331G|ICD10CM|Stress fracture, right ulna, subsequent encounter for fracture with delayed healing|Stress fracture, right ulna, subsequent encounter for fracture with delayed healing +C2900643|T046|AB|M84.331K|ICD10CM|Stress fracture, right ulna, subs for fx w nonunion|Stress fracture, right ulna, subs for fx w nonunion +C2900643|T046|PT|M84.331K|ICD10CM|Stress fracture, right ulna, subsequent encounter for fracture with nonunion|Stress fracture, right ulna, subsequent encounter for fracture with nonunion +C2900644|T046|AB|M84.331P|ICD10CM|Stress fracture, right ulna, subs for fx w malunion|Stress fracture, right ulna, subs for fx w malunion +C2900644|T046|PT|M84.331P|ICD10CM|Stress fracture, right ulna, subsequent encounter for fracture with malunion|Stress fracture, right ulna, subsequent encounter for fracture with malunion +C2900645|T046|PT|M84.331S|ICD10CM|Stress fracture, right ulna, sequela|Stress fracture, right ulna, sequela +C2900645|T046|AB|M84.331S|ICD10CM|Stress fracture, right ulna, sequela|Stress fracture, right ulna, sequela +C2900646|T037|AB|M84.332|ICD10CM|Stress fracture, left ulna|Stress fracture, left ulna +C2900646|T037|HT|M84.332|ICD10CM|Stress fracture, left ulna|Stress fracture, left ulna +C2900647|T046|PT|M84.332A|ICD10CM|Stress fracture, left ulna, initial encounter for fracture|Stress fracture, left ulna, initial encounter for fracture +C2900647|T046|AB|M84.332A|ICD10CM|Stress fracture, left ulna, initial encounter for fracture|Stress fracture, left ulna, initial encounter for fracture +C2900648|T046|AB|M84.332D|ICD10CM|Stress fracture, left ulna, subs for fx w routn heal|Stress fracture, left ulna, subs for fx w routn heal +C2900648|T046|PT|M84.332D|ICD10CM|Stress fracture, left ulna, subsequent encounter for fracture with routine healing|Stress fracture, left ulna, subsequent encounter for fracture with routine healing +C2900649|T046|AB|M84.332G|ICD10CM|Stress fracture, left ulna, subs for fx w delay heal|Stress fracture, left ulna, subs for fx w delay heal +C2900649|T046|PT|M84.332G|ICD10CM|Stress fracture, left ulna, subsequent encounter for fracture with delayed healing|Stress fracture, left ulna, subsequent encounter for fracture with delayed healing +C2900650|T046|AB|M84.332K|ICD10CM|Stress fracture, left ulna, subs for fx w nonunion|Stress fracture, left ulna, subs for fx w nonunion +C2900650|T046|PT|M84.332K|ICD10CM|Stress fracture, left ulna, subsequent encounter for fracture with nonunion|Stress fracture, left ulna, subsequent encounter for fracture with nonunion +C2900651|T046|AB|M84.332P|ICD10CM|Stress fracture, left ulna, subs for fx w malunion|Stress fracture, left ulna, subs for fx w malunion +C2900651|T046|PT|M84.332P|ICD10CM|Stress fracture, left ulna, subsequent encounter for fracture with malunion|Stress fracture, left ulna, subsequent encounter for fracture with malunion +C2900652|T046|PT|M84.332S|ICD10CM|Stress fracture, left ulna, sequela|Stress fracture, left ulna, sequela +C2900652|T046|AB|M84.332S|ICD10CM|Stress fracture, left ulna, sequela|Stress fracture, left ulna, sequela +C2900653|T037|AB|M84.333|ICD10CM|Stress fracture, right radius|Stress fracture, right radius +C2900653|T037|HT|M84.333|ICD10CM|Stress fracture, right radius|Stress fracture, right radius +C2900654|T046|AB|M84.333A|ICD10CM|Stress fracture, right radius, init encntr for fracture|Stress fracture, right radius, init encntr for fracture +C2900654|T046|PT|M84.333A|ICD10CM|Stress fracture, right radius, initial encounter for fracture|Stress fracture, right radius, initial encounter for fracture +C2900655|T046|AB|M84.333D|ICD10CM|Stress fracture, right radius, subs for fx w routn heal|Stress fracture, right radius, subs for fx w routn heal +C2900655|T046|PT|M84.333D|ICD10CM|Stress fracture, right radius, subsequent encounter for fracture with routine healing|Stress fracture, right radius, subsequent encounter for fracture with routine healing +C2900656|T046|AB|M84.333G|ICD10CM|Stress fracture, right radius, subs for fx w delay heal|Stress fracture, right radius, subs for fx w delay heal +C2900656|T046|PT|M84.333G|ICD10CM|Stress fracture, right radius, subsequent encounter for fracture with delayed healing|Stress fracture, right radius, subsequent encounter for fracture with delayed healing +C2900657|T046|AB|M84.333K|ICD10CM|Stress fracture, right radius, subs for fx w nonunion|Stress fracture, right radius, subs for fx w nonunion +C2900657|T046|PT|M84.333K|ICD10CM|Stress fracture, right radius, subsequent encounter for fracture with nonunion|Stress fracture, right radius, subsequent encounter for fracture with nonunion +C2900658|T046|AB|M84.333P|ICD10CM|Stress fracture, right radius, subs for fx w malunion|Stress fracture, right radius, subs for fx w malunion +C2900658|T046|PT|M84.333P|ICD10CM|Stress fracture, right radius, subsequent encounter for fracture with malunion|Stress fracture, right radius, subsequent encounter for fracture with malunion +C2900659|T046|PT|M84.333S|ICD10CM|Stress fracture, right radius, sequela|Stress fracture, right radius, sequela +C2900659|T046|AB|M84.333S|ICD10CM|Stress fracture, right radius, sequela|Stress fracture, right radius, sequela +C2900660|T037|AB|M84.334|ICD10CM|Stress fracture, left radius|Stress fracture, left radius +C2900660|T037|HT|M84.334|ICD10CM|Stress fracture, left radius|Stress fracture, left radius +C2900661|T046|AB|M84.334A|ICD10CM|Stress fracture, left radius, initial encounter for fracture|Stress fracture, left radius, initial encounter for fracture +C2900661|T046|PT|M84.334A|ICD10CM|Stress fracture, left radius, initial encounter for fracture|Stress fracture, left radius, initial encounter for fracture +C2900662|T046|AB|M84.334D|ICD10CM|Stress fracture, left radius, subs for fx w routn heal|Stress fracture, left radius, subs for fx w routn heal +C2900662|T046|PT|M84.334D|ICD10CM|Stress fracture, left radius, subsequent encounter for fracture with routine healing|Stress fracture, left radius, subsequent encounter for fracture with routine healing +C2900663|T046|AB|M84.334G|ICD10CM|Stress fracture, left radius, subs for fx w delay heal|Stress fracture, left radius, subs for fx w delay heal +C2900663|T046|PT|M84.334G|ICD10CM|Stress fracture, left radius, subsequent encounter for fracture with delayed healing|Stress fracture, left radius, subsequent encounter for fracture with delayed healing +C2900664|T046|AB|M84.334K|ICD10CM|Stress fracture, left radius, subs for fx w nonunion|Stress fracture, left radius, subs for fx w nonunion +C2900664|T046|PT|M84.334K|ICD10CM|Stress fracture, left radius, subsequent encounter for fracture with nonunion|Stress fracture, left radius, subsequent encounter for fracture with nonunion +C2900665|T046|AB|M84.334P|ICD10CM|Stress fracture, left radius, subs for fx w malunion|Stress fracture, left radius, subs for fx w malunion +C2900665|T046|PT|M84.334P|ICD10CM|Stress fracture, left radius, subsequent encounter for fracture with malunion|Stress fracture, left radius, subsequent encounter for fracture with malunion +C2900666|T046|PT|M84.334S|ICD10CM|Stress fracture, left radius, sequela|Stress fracture, left radius, sequela +C2900666|T046|AB|M84.334S|ICD10CM|Stress fracture, left radius, sequela|Stress fracture, left radius, sequela +C2900667|T046|AB|M84.339|ICD10CM|Stress fracture, unspecified ulna and radius|Stress fracture, unspecified ulna and radius +C2900667|T046|HT|M84.339|ICD10CM|Stress fracture, unspecified ulna and radius|Stress fracture, unspecified ulna and radius +C2900668|T046|AB|M84.339A|ICD10CM|Stress fracture, unsp ulna and radius, init for fx|Stress fracture, unsp ulna and radius, init for fx +C2900668|T046|PT|M84.339A|ICD10CM|Stress fracture, unspecified ulna and radius, initial encounter for fracture|Stress fracture, unspecified ulna and radius, initial encounter for fracture +C2900669|T046|PT|M84.339D|ICD10CM|Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with routine healing|Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with routine healing +C2900669|T046|AB|M84.339D|ICD10CM|Stress fx, unsp ulna and radius, subs for fx w routn heal|Stress fx, unsp ulna and radius, subs for fx w routn heal +C2900670|T046|PT|M84.339G|ICD10CM|Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with delayed healing|Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with delayed healing +C2900670|T046|AB|M84.339G|ICD10CM|Stress fx, unsp ulna and radius, subs for fx w delay heal|Stress fx, unsp ulna and radius, subs for fx w delay heal +C2900671|T046|PT|M84.339K|ICD10CM|Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with nonunion|Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with nonunion +C2900671|T046|AB|M84.339K|ICD10CM|Stress fx, unsp ulna and radius, subs for fx w nonunion|Stress fx, unsp ulna and radius, subs for fx w nonunion +C2900672|T046|PT|M84.339P|ICD10CM|Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with malunion|Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with malunion +C2900672|T046|AB|M84.339P|ICD10CM|Stress fx, unsp ulna and radius, subs for fx w malunion|Stress fx, unsp ulna and radius, subs for fx w malunion +C2900673|T046|PT|M84.339S|ICD10CM|Stress fracture, unspecified ulna and radius, sequela|Stress fracture, unspecified ulna and radius, sequela +C2900673|T046|AB|M84.339S|ICD10CM|Stress fracture, unspecified ulna and radius, sequela|Stress fracture, unspecified ulna and radius, sequela +C2900674|T046|AB|M84.34|ICD10CM|Stress fracture, hand and fingers|Stress fracture, hand and fingers +C2900674|T046|HT|M84.34|ICD10CM|Stress fracture, hand and fingers|Stress fracture, hand and fingers +C2900675|T037|AB|M84.341|ICD10CM|Stress fracture, right hand|Stress fracture, right hand +C2900675|T037|HT|M84.341|ICD10CM|Stress fracture, right hand|Stress fracture, right hand +C2900676|T037|PT|M84.341A|ICD10CM|Stress fracture, right hand, initial encounter for fracture|Stress fracture, right hand, initial encounter for fracture +C2900676|T037|AB|M84.341A|ICD10CM|Stress fracture, right hand, initial encounter for fracture|Stress fracture, right hand, initial encounter for fracture +C2900677|T037|AB|M84.341D|ICD10CM|Stress fracture, right hand, subs for fx w routn heal|Stress fracture, right hand, subs for fx w routn heal +C2900677|T037|PT|M84.341D|ICD10CM|Stress fracture, right hand, subsequent encounter for fracture with routine healing|Stress fracture, right hand, subsequent encounter for fracture with routine healing +C2900678|T046|AB|M84.341G|ICD10CM|Stress fracture, right hand, subs for fx w delay heal|Stress fracture, right hand, subs for fx w delay heal +C2900678|T046|PT|M84.341G|ICD10CM|Stress fracture, right hand, subsequent encounter for fracture with delayed healing|Stress fracture, right hand, subsequent encounter for fracture with delayed healing +C2900679|T046|AB|M84.341K|ICD10CM|Stress fracture, right hand, subs for fx w nonunion|Stress fracture, right hand, subs for fx w nonunion +C2900679|T046|PT|M84.341K|ICD10CM|Stress fracture, right hand, subsequent encounter for fracture with nonunion|Stress fracture, right hand, subsequent encounter for fracture with nonunion +C2900680|T037|AB|M84.341P|ICD10CM|Stress fracture, right hand, subs for fx w malunion|Stress fracture, right hand, subs for fx w malunion +C2900680|T037|PT|M84.341P|ICD10CM|Stress fracture, right hand, subsequent encounter for fracture with malunion|Stress fracture, right hand, subsequent encounter for fracture with malunion +C2900681|T046|PT|M84.341S|ICD10CM|Stress fracture, right hand, sequela|Stress fracture, right hand, sequela +C2900681|T046|AB|M84.341S|ICD10CM|Stress fracture, right hand, sequela|Stress fracture, right hand, sequela +C2900682|T037|AB|M84.342|ICD10CM|Stress fracture, left hand|Stress fracture, left hand +C2900682|T037|HT|M84.342|ICD10CM|Stress fracture, left hand|Stress fracture, left hand +C2900683|T037|PT|M84.342A|ICD10CM|Stress fracture, left hand, initial encounter for fracture|Stress fracture, left hand, initial encounter for fracture +C2900683|T037|AB|M84.342A|ICD10CM|Stress fracture, left hand, initial encounter for fracture|Stress fracture, left hand, initial encounter for fracture +C2900684|T037|AB|M84.342D|ICD10CM|Stress fracture, left hand, subs for fx w routn heal|Stress fracture, left hand, subs for fx w routn heal +C2900684|T037|PT|M84.342D|ICD10CM|Stress fracture, left hand, subsequent encounter for fracture with routine healing|Stress fracture, left hand, subsequent encounter for fracture with routine healing +C2900685|T037|AB|M84.342G|ICD10CM|Stress fracture, left hand, subs for fx w delay heal|Stress fracture, left hand, subs for fx w delay heal +C2900685|T037|PT|M84.342G|ICD10CM|Stress fracture, left hand, subsequent encounter for fracture with delayed healing|Stress fracture, left hand, subsequent encounter for fracture with delayed healing +C2900686|T046|AB|M84.342K|ICD10CM|Stress fracture, left hand, subs for fx w nonunion|Stress fracture, left hand, subs for fx w nonunion +C2900686|T046|PT|M84.342K|ICD10CM|Stress fracture, left hand, subsequent encounter for fracture with nonunion|Stress fracture, left hand, subsequent encounter for fracture with nonunion +C2900687|T037|AB|M84.342P|ICD10CM|Stress fracture, left hand, subs for fx w malunion|Stress fracture, left hand, subs for fx w malunion +C2900687|T037|PT|M84.342P|ICD10CM|Stress fracture, left hand, subsequent encounter for fracture with malunion|Stress fracture, left hand, subsequent encounter for fracture with malunion +C2900688|T046|PT|M84.342S|ICD10CM|Stress fracture, left hand, sequela|Stress fracture, left hand, sequela +C2900688|T046|AB|M84.342S|ICD10CM|Stress fracture, left hand, sequela|Stress fracture, left hand, sequela +C2900689|T046|AB|M84.343|ICD10CM|Stress fracture, unspecified hand|Stress fracture, unspecified hand +C2900689|T046|HT|M84.343|ICD10CM|Stress fracture, unspecified hand|Stress fracture, unspecified hand +C2900690|T037|AB|M84.343A|ICD10CM|Stress fracture, unspecified hand, init encntr for fracture|Stress fracture, unspecified hand, init encntr for fracture +C2900690|T037|PT|M84.343A|ICD10CM|Stress fracture, unspecified hand, initial encounter for fracture|Stress fracture, unspecified hand, initial encounter for fracture +C2900691|T046|AB|M84.343D|ICD10CM|Stress fracture, unsp hand, subs for fx w routn heal|Stress fracture, unsp hand, subs for fx w routn heal +C2900691|T046|PT|M84.343D|ICD10CM|Stress fracture, unspecified hand, subsequent encounter for fracture with routine healing|Stress fracture, unspecified hand, subsequent encounter for fracture with routine healing +C2900692|T037|AB|M84.343G|ICD10CM|Stress fracture, unsp hand, subs for fx w delay heal|Stress fracture, unsp hand, subs for fx w delay heal +C2900692|T037|PT|M84.343G|ICD10CM|Stress fracture, unspecified hand, subsequent encounter for fracture with delayed healing|Stress fracture, unspecified hand, subsequent encounter for fracture with delayed healing +C2900693|T037|AB|M84.343K|ICD10CM|Stress fracture, unsp hand, subs for fx w nonunion|Stress fracture, unsp hand, subs for fx w nonunion +C2900693|T037|PT|M84.343K|ICD10CM|Stress fracture, unspecified hand, subsequent encounter for fracture with nonunion|Stress fracture, unspecified hand, subsequent encounter for fracture with nonunion +C2900694|T046|AB|M84.343P|ICD10CM|Stress fracture, unsp hand, subs for fx w malunion|Stress fracture, unsp hand, subs for fx w malunion +C2900694|T046|PT|M84.343P|ICD10CM|Stress fracture, unspecified hand, subsequent encounter for fracture with malunion|Stress fracture, unspecified hand, subsequent encounter for fracture with malunion +C2900695|T037|PT|M84.343S|ICD10CM|Stress fracture, unspecified hand, sequela|Stress fracture, unspecified hand, sequela +C2900695|T037|AB|M84.343S|ICD10CM|Stress fracture, unspecified hand, sequela|Stress fracture, unspecified hand, sequela +C2900696|T046|AB|M84.344|ICD10CM|Stress fracture, right finger(s)|Stress fracture, right finger(s) +C2900696|T046|HT|M84.344|ICD10CM|Stress fracture, right finger(s)|Stress fracture, right finger(s) +C2900697|T046|AB|M84.344A|ICD10CM|Stress fracture, right finger(s), init encntr for fracture|Stress fracture, right finger(s), init encntr for fracture +C2900697|T046|PT|M84.344A|ICD10CM|Stress fracture, right finger(s), initial encounter for fracture|Stress fracture, right finger(s), initial encounter for fracture +C2900698|T037|AB|M84.344D|ICD10CM|Stress fracture, right finger(s), subs for fx w routn heal|Stress fracture, right finger(s), subs for fx w routn heal +C2900698|T037|PT|M84.344D|ICD10CM|Stress fracture, right finger(s), subsequent encounter for fracture with routine healing|Stress fracture, right finger(s), subsequent encounter for fracture with routine healing +C2900699|T037|AB|M84.344G|ICD10CM|Stress fracture, right finger(s), subs for fx w delay heal|Stress fracture, right finger(s), subs for fx w delay heal +C2900699|T037|PT|M84.344G|ICD10CM|Stress fracture, right finger(s), subsequent encounter for fracture with delayed healing|Stress fracture, right finger(s), subsequent encounter for fracture with delayed healing +C2900700|T037|AB|M84.344K|ICD10CM|Stress fracture, right finger(s), subs for fx w nonunion|Stress fracture, right finger(s), subs for fx w nonunion +C2900700|T037|PT|M84.344K|ICD10CM|Stress fracture, right finger(s), subsequent encounter for fracture with nonunion|Stress fracture, right finger(s), subsequent encounter for fracture with nonunion +C2900701|T037|AB|M84.344P|ICD10CM|Stress fracture, right finger(s), subs for fx w malunion|Stress fracture, right finger(s), subs for fx w malunion +C2900701|T037|PT|M84.344P|ICD10CM|Stress fracture, right finger(s), subsequent encounter for fracture with malunion|Stress fracture, right finger(s), subsequent encounter for fracture with malunion +C2900702|T037|PT|M84.344S|ICD10CM|Stress fracture, right finger(s), sequela|Stress fracture, right finger(s), sequela +C2900702|T037|AB|M84.344S|ICD10CM|Stress fracture, right finger(s), sequela|Stress fracture, right finger(s), sequela +C2900703|T046|AB|M84.345|ICD10CM|Stress fracture, left finger(s)|Stress fracture, left finger(s) +C2900703|T046|HT|M84.345|ICD10CM|Stress fracture, left finger(s)|Stress fracture, left finger(s) +C2900704|T037|AB|M84.345A|ICD10CM|Stress fracture, left finger(s), init encntr for fracture|Stress fracture, left finger(s), init encntr for fracture +C2900704|T037|PT|M84.345A|ICD10CM|Stress fracture, left finger(s), initial encounter for fracture|Stress fracture, left finger(s), initial encounter for fracture +C2900705|T037|AB|M84.345D|ICD10CM|Stress fracture, left finger(s), subs for fx w routn heal|Stress fracture, left finger(s), subs for fx w routn heal +C2900705|T037|PT|M84.345D|ICD10CM|Stress fracture, left finger(s), subsequent encounter for fracture with routine healing|Stress fracture, left finger(s), subsequent encounter for fracture with routine healing +C2900706|T037|AB|M84.345G|ICD10CM|Stress fracture, left finger(s), subs for fx w delay heal|Stress fracture, left finger(s), subs for fx w delay heal +C2900706|T037|PT|M84.345G|ICD10CM|Stress fracture, left finger(s), subsequent encounter for fracture with delayed healing|Stress fracture, left finger(s), subsequent encounter for fracture with delayed healing +C2900707|T046|AB|M84.345K|ICD10CM|Stress fracture, left finger(s), subs for fx w nonunion|Stress fracture, left finger(s), subs for fx w nonunion +C2900707|T046|PT|M84.345K|ICD10CM|Stress fracture, left finger(s), subsequent encounter for fracture with nonunion|Stress fracture, left finger(s), subsequent encounter for fracture with nonunion +C2900708|T046|AB|M84.345P|ICD10CM|Stress fracture, left finger(s), subs for fx w malunion|Stress fracture, left finger(s), subs for fx w malunion +C2900708|T046|PT|M84.345P|ICD10CM|Stress fracture, left finger(s), subsequent encounter for fracture with malunion|Stress fracture, left finger(s), subsequent encounter for fracture with malunion +C2900709|T037|PT|M84.345S|ICD10CM|Stress fracture, left finger(s), sequela|Stress fracture, left finger(s), sequela +C2900709|T037|AB|M84.345S|ICD10CM|Stress fracture, left finger(s), sequela|Stress fracture, left finger(s), sequela +C2900710|T037|AB|M84.346|ICD10CM|Stress fracture, unspecified finger(s)|Stress fracture, unspecified finger(s) +C2900710|T037|HT|M84.346|ICD10CM|Stress fracture, unspecified finger(s)|Stress fracture, unspecified finger(s) +C2900711|T046|AB|M84.346A|ICD10CM|Stress fracture, unsp finger(s), init encntr for fracture|Stress fracture, unsp finger(s), init encntr for fracture +C2900711|T046|PT|M84.346A|ICD10CM|Stress fracture, unspecified finger(s), initial encounter for fracture|Stress fracture, unspecified finger(s), initial encounter for fracture +C2900712|T037|AB|M84.346D|ICD10CM|Stress fracture, unsp finger(s), subs for fx w routn heal|Stress fracture, unsp finger(s), subs for fx w routn heal +C2900712|T037|PT|M84.346D|ICD10CM|Stress fracture, unspecified finger(s), subsequent encounter for fracture with routine healing|Stress fracture, unspecified finger(s), subsequent encounter for fracture with routine healing +C2900713|T046|AB|M84.346G|ICD10CM|Stress fracture, unsp finger(s), subs for fx w delay heal|Stress fracture, unsp finger(s), subs for fx w delay heal +C2900713|T046|PT|M84.346G|ICD10CM|Stress fracture, unspecified finger(s), subsequent encounter for fracture with delayed healing|Stress fracture, unspecified finger(s), subsequent encounter for fracture with delayed healing +C2900714|T037|AB|M84.346K|ICD10CM|Stress fracture, unsp finger(s), subs for fx w nonunion|Stress fracture, unsp finger(s), subs for fx w nonunion +C2900714|T037|PT|M84.346K|ICD10CM|Stress fracture, unspecified finger(s), subsequent encounter for fracture with nonunion|Stress fracture, unspecified finger(s), subsequent encounter for fracture with nonunion +C2900715|T037|AB|M84.346P|ICD10CM|Stress fracture, unsp finger(s), subs for fx w malunion|Stress fracture, unsp finger(s), subs for fx w malunion +C2900715|T037|PT|M84.346P|ICD10CM|Stress fracture, unspecified finger(s), subsequent encounter for fracture with malunion|Stress fracture, unspecified finger(s), subsequent encounter for fracture with malunion +C2900716|T046|PT|M84.346S|ICD10CM|Stress fracture, unspecified finger(s), sequela|Stress fracture, unspecified finger(s), sequela +C2900716|T046|AB|M84.346S|ICD10CM|Stress fracture, unspecified finger(s), sequela|Stress fracture, unspecified finger(s), sequela +C2900745|T037|ET|M84.35|ICD10CM|Stress fracture, hip|Stress fracture, hip +C2900717|T046|AB|M84.35|ICD10CM|Stress fracture, pelvis and femur|Stress fracture, pelvis and femur +C2900717|T046|HT|M84.35|ICD10CM|Stress fracture, pelvis and femur|Stress fracture, pelvis and femur +C2317110|T037|AB|M84.350|ICD10CM|Stress fracture, pelvis|Stress fracture, pelvis +C2317110|T037|HT|M84.350|ICD10CM|Stress fracture, pelvis|Stress fracture, pelvis +C2900718|T037|PT|M84.350A|ICD10CM|Stress fracture, pelvis, initial encounter for fracture|Stress fracture, pelvis, initial encounter for fracture +C2900718|T037|AB|M84.350A|ICD10CM|Stress fracture, pelvis, initial encounter for fracture|Stress fracture, pelvis, initial encounter for fracture +C2900719|T046|AB|M84.350D|ICD10CM|Stress fracture, pelvis, subs for fx w routn heal|Stress fracture, pelvis, subs for fx w routn heal +C2900719|T046|PT|M84.350D|ICD10CM|Stress fracture, pelvis, subsequent encounter for fracture with routine healing|Stress fracture, pelvis, subsequent encounter for fracture with routine healing +C2900720|T037|AB|M84.350G|ICD10CM|Stress fracture, pelvis, subs for fx w delay heal|Stress fracture, pelvis, subs for fx w delay heal +C2900720|T037|PT|M84.350G|ICD10CM|Stress fracture, pelvis, subsequent encounter for fracture with delayed healing|Stress fracture, pelvis, subsequent encounter for fracture with delayed healing +C2900721|T037|AB|M84.350K|ICD10CM|Stress fracture, pelvis, subs encntr for fracture w nonunion|Stress fracture, pelvis, subs encntr for fracture w nonunion +C2900721|T037|PT|M84.350K|ICD10CM|Stress fracture, pelvis, subsequent encounter for fracture with nonunion|Stress fracture, pelvis, subsequent encounter for fracture with nonunion +C2900722|T037|AB|M84.350P|ICD10CM|Stress fracture, pelvis, subs encntr for fracture w malunion|Stress fracture, pelvis, subs encntr for fracture w malunion +C2900722|T037|PT|M84.350P|ICD10CM|Stress fracture, pelvis, subsequent encounter for fracture with malunion|Stress fracture, pelvis, subsequent encounter for fracture with malunion +C2900723|T046|PT|M84.350S|ICD10CM|Stress fracture, pelvis, sequela|Stress fracture, pelvis, sequela +C2900723|T046|AB|M84.350S|ICD10CM|Stress fracture, pelvis, sequela|Stress fracture, pelvis, sequela +C2900724|T037|AB|M84.351|ICD10CM|Stress fracture, right femur|Stress fracture, right femur +C2900724|T037|HT|M84.351|ICD10CM|Stress fracture, right femur|Stress fracture, right femur +C2900725|T037|AB|M84.351A|ICD10CM|Stress fracture, right femur, initial encounter for fracture|Stress fracture, right femur, initial encounter for fracture +C2900725|T037|PT|M84.351A|ICD10CM|Stress fracture, right femur, initial encounter for fracture|Stress fracture, right femur, initial encounter for fracture +C2900726|T037|AB|M84.351D|ICD10CM|Stress fracture, right femur, subs for fx w routn heal|Stress fracture, right femur, subs for fx w routn heal +C2900726|T037|PT|M84.351D|ICD10CM|Stress fracture, right femur, subsequent encounter for fracture with routine healing|Stress fracture, right femur, subsequent encounter for fracture with routine healing +C2900727|T037|AB|M84.351G|ICD10CM|Stress fracture, right femur, subs for fx w delay heal|Stress fracture, right femur, subs for fx w delay heal +C2900727|T037|PT|M84.351G|ICD10CM|Stress fracture, right femur, subsequent encounter for fracture with delayed healing|Stress fracture, right femur, subsequent encounter for fracture with delayed healing +C2900728|T046|AB|M84.351K|ICD10CM|Stress fracture, right femur, subs for fx w nonunion|Stress fracture, right femur, subs for fx w nonunion +C2900728|T046|PT|M84.351K|ICD10CM|Stress fracture, right femur, subsequent encounter for fracture with nonunion|Stress fracture, right femur, subsequent encounter for fracture with nonunion +C2900729|T046|AB|M84.351P|ICD10CM|Stress fracture, right femur, subs for fx w malunion|Stress fracture, right femur, subs for fx w malunion +C2900729|T046|PT|M84.351P|ICD10CM|Stress fracture, right femur, subsequent encounter for fracture with malunion|Stress fracture, right femur, subsequent encounter for fracture with malunion +C2900730|T037|PT|M84.351S|ICD10CM|Stress fracture, right femur, sequela|Stress fracture, right femur, sequela +C2900730|T037|AB|M84.351S|ICD10CM|Stress fracture, right femur, sequela|Stress fracture, right femur, sequela +C2900731|T037|AB|M84.352|ICD10CM|Stress fracture, left femur|Stress fracture, left femur +C2900731|T037|HT|M84.352|ICD10CM|Stress fracture, left femur|Stress fracture, left femur +C2900732|T046|PT|M84.352A|ICD10CM|Stress fracture, left femur, initial encounter for fracture|Stress fracture, left femur, initial encounter for fracture +C2900732|T046|AB|M84.352A|ICD10CM|Stress fracture, left femur, initial encounter for fracture|Stress fracture, left femur, initial encounter for fracture +C2900733|T046|AB|M84.352D|ICD10CM|Stress fracture, left femur, subs for fx w routn heal|Stress fracture, left femur, subs for fx w routn heal +C2900733|T046|PT|M84.352D|ICD10CM|Stress fracture, left femur, subsequent encounter for fracture with routine healing|Stress fracture, left femur, subsequent encounter for fracture with routine healing +C2900734|T037|AB|M84.352G|ICD10CM|Stress fracture, left femur, subs for fx w delay heal|Stress fracture, left femur, subs for fx w delay heal +C2900734|T037|PT|M84.352G|ICD10CM|Stress fracture, left femur, subsequent encounter for fracture with delayed healing|Stress fracture, left femur, subsequent encounter for fracture with delayed healing +C2900735|T037|AB|M84.352K|ICD10CM|Stress fracture, left femur, subs for fx w nonunion|Stress fracture, left femur, subs for fx w nonunion +C2900735|T037|PT|M84.352K|ICD10CM|Stress fracture, left femur, subsequent encounter for fracture with nonunion|Stress fracture, left femur, subsequent encounter for fracture with nonunion +C2900736|T046|AB|M84.352P|ICD10CM|Stress fracture, left femur, subs for fx w malunion|Stress fracture, left femur, subs for fx w malunion +C2900736|T046|PT|M84.352P|ICD10CM|Stress fracture, left femur, subsequent encounter for fracture with malunion|Stress fracture, left femur, subsequent encounter for fracture with malunion +C2900737|T037|PT|M84.352S|ICD10CM|Stress fracture, left femur, sequela|Stress fracture, left femur, sequela +C2900737|T037|AB|M84.352S|ICD10CM|Stress fracture, left femur, sequela|Stress fracture, left femur, sequela +C2900738|T037|AB|M84.353|ICD10CM|Stress fracture, unspecified femur|Stress fracture, unspecified femur +C2900738|T037|HT|M84.353|ICD10CM|Stress fracture, unspecified femur|Stress fracture, unspecified femur +C2900739|T037|AB|M84.353A|ICD10CM|Stress fracture, unspecified femur, init encntr for fracture|Stress fracture, unspecified femur, init encntr for fracture +C2900739|T037|PT|M84.353A|ICD10CM|Stress fracture, unspecified femur, initial encounter for fracture|Stress fracture, unspecified femur, initial encounter for fracture +C2900740|T046|AB|M84.353D|ICD10CM|Stress fracture, unsp femur, subs for fx w routn heal|Stress fracture, unsp femur, subs for fx w routn heal +C2900740|T046|PT|M84.353D|ICD10CM|Stress fracture, unspecified femur, subsequent encounter for fracture with routine healing|Stress fracture, unspecified femur, subsequent encounter for fracture with routine healing +C2900741|T046|AB|M84.353G|ICD10CM|Stress fracture, unsp femur, subs for fx w delay heal|Stress fracture, unsp femur, subs for fx w delay heal +C2900741|T046|PT|M84.353G|ICD10CM|Stress fracture, unspecified femur, subsequent encounter for fracture with delayed healing|Stress fracture, unspecified femur, subsequent encounter for fracture with delayed healing +C2900742|T037|AB|M84.353K|ICD10CM|Stress fracture, unsp femur, subs for fx w nonunion|Stress fracture, unsp femur, subs for fx w nonunion +C2900742|T037|PT|M84.353K|ICD10CM|Stress fracture, unspecified femur, subsequent encounter for fracture with nonunion|Stress fracture, unspecified femur, subsequent encounter for fracture with nonunion +C2900743|T046|AB|M84.353P|ICD10CM|Stress fracture, unsp femur, subs for fx w malunion|Stress fracture, unsp femur, subs for fx w malunion +C2900743|T046|PT|M84.353P|ICD10CM|Stress fracture, unspecified femur, subsequent encounter for fracture with malunion|Stress fracture, unspecified femur, subsequent encounter for fracture with malunion +C2900744|T046|PT|M84.353S|ICD10CM|Stress fracture, unspecified femur, sequela|Stress fracture, unspecified femur, sequela +C2900744|T046|AB|M84.353S|ICD10CM|Stress fracture, unspecified femur, sequela|Stress fracture, unspecified femur, sequela +C2900745|T037|AB|M84.359|ICD10CM|Stress fracture, hip, unspecified|Stress fracture, hip, unspecified +C2900745|T037|HT|M84.359|ICD10CM|Stress fracture, hip, unspecified|Stress fracture, hip, unspecified +C2900746|T046|AB|M84.359A|ICD10CM|Stress fracture, hip, unspecified, init encntr for fracture|Stress fracture, hip, unspecified, init encntr for fracture +C2900746|T046|PT|M84.359A|ICD10CM|Stress fracture, hip, unspecified, initial encounter for fracture|Stress fracture, hip, unspecified, initial encounter for fracture +C2900747|T046|AB|M84.359D|ICD10CM|Stress fracture, hip, unsp, subs for fx w routn heal|Stress fracture, hip, unsp, subs for fx w routn heal +C2900747|T046|PT|M84.359D|ICD10CM|Stress fracture, hip, unspecified, subsequent encounter for fracture with routine healing|Stress fracture, hip, unspecified, subsequent encounter for fracture with routine healing +C2900748|T037|AB|M84.359G|ICD10CM|Stress fracture, hip, unsp, subs for fx w delay heal|Stress fracture, hip, unsp, subs for fx w delay heal +C2900748|T037|PT|M84.359G|ICD10CM|Stress fracture, hip, unspecified, subsequent encounter for fracture with delayed healing|Stress fracture, hip, unspecified, subsequent encounter for fracture with delayed healing +C2900749|T037|AB|M84.359K|ICD10CM|Stress fracture, hip, unsp, subs for fx w nonunion|Stress fracture, hip, unsp, subs for fx w nonunion +C2900749|T037|PT|M84.359K|ICD10CM|Stress fracture, hip, unspecified, subsequent encounter for fracture with nonunion|Stress fracture, hip, unspecified, subsequent encounter for fracture with nonunion +C2900750|T037|AB|M84.359P|ICD10CM|Stress fracture, hip, unsp, subs for fx w malunion|Stress fracture, hip, unsp, subs for fx w malunion +C2900750|T037|PT|M84.359P|ICD10CM|Stress fracture, hip, unspecified, subsequent encounter for fracture with malunion|Stress fracture, hip, unspecified, subsequent encounter for fracture with malunion +C2900751|T037|PT|M84.359S|ICD10CM|Stress fracture, hip, unspecified, sequela|Stress fracture, hip, unspecified, sequela +C2900751|T037|AB|M84.359S|ICD10CM|Stress fracture, hip, unspecified, sequela|Stress fracture, hip, unspecified, sequela +C2900752|T037|AB|M84.36|ICD10CM|Stress fracture, tibia and fibula|Stress fracture, tibia and fibula +C2900752|T037|HT|M84.36|ICD10CM|Stress fracture, tibia and fibula|Stress fracture, tibia and fibula +C2900753|T037|AB|M84.361|ICD10CM|Stress fracture, right tibia|Stress fracture, right tibia +C2900753|T037|HT|M84.361|ICD10CM|Stress fracture, right tibia|Stress fracture, right tibia +C2900754|T046|AB|M84.361A|ICD10CM|Stress fracture, right tibia, initial encounter for fracture|Stress fracture, right tibia, initial encounter for fracture +C2900754|T046|PT|M84.361A|ICD10CM|Stress fracture, right tibia, initial encounter for fracture|Stress fracture, right tibia, initial encounter for fracture +C2900755|T037|AB|M84.361D|ICD10CM|Stress fracture, right tibia, subs for fx w routn heal|Stress fracture, right tibia, subs for fx w routn heal +C2900755|T037|PT|M84.361D|ICD10CM|Stress fracture, right tibia, subsequent encounter for fracture with routine healing|Stress fracture, right tibia, subsequent encounter for fracture with routine healing +C2900756|T037|AB|M84.361G|ICD10CM|Stress fracture, right tibia, subs for fx w delay heal|Stress fracture, right tibia, subs for fx w delay heal +C2900756|T037|PT|M84.361G|ICD10CM|Stress fracture, right tibia, subsequent encounter for fracture with delayed healing|Stress fracture, right tibia, subsequent encounter for fracture with delayed healing +C2900757|T046|AB|M84.361K|ICD10CM|Stress fracture, right tibia, subs for fx w nonunion|Stress fracture, right tibia, subs for fx w nonunion +C2900757|T046|PT|M84.361K|ICD10CM|Stress fracture, right tibia, subsequent encounter for fracture with nonunion|Stress fracture, right tibia, subsequent encounter for fracture with nonunion +C2900758|T037|AB|M84.361P|ICD10CM|Stress fracture, right tibia, subs for fx w malunion|Stress fracture, right tibia, subs for fx w malunion +C2900758|T037|PT|M84.361P|ICD10CM|Stress fracture, right tibia, subsequent encounter for fracture with malunion|Stress fracture, right tibia, subsequent encounter for fracture with malunion +C2900759|T046|PT|M84.361S|ICD10CM|Stress fracture, right tibia, sequela|Stress fracture, right tibia, sequela +C2900759|T046|AB|M84.361S|ICD10CM|Stress fracture, right tibia, sequela|Stress fracture, right tibia, sequela +C2900760|T037|AB|M84.362|ICD10CM|Stress fracture, left tibia|Stress fracture, left tibia +C2900760|T037|HT|M84.362|ICD10CM|Stress fracture, left tibia|Stress fracture, left tibia +C2900761|T037|PT|M84.362A|ICD10CM|Stress fracture, left tibia, initial encounter for fracture|Stress fracture, left tibia, initial encounter for fracture +C2900761|T037|AB|M84.362A|ICD10CM|Stress fracture, left tibia, initial encounter for fracture|Stress fracture, left tibia, initial encounter for fracture +C2900762|T037|AB|M84.362D|ICD10CM|Stress fracture, left tibia, subs for fx w routn heal|Stress fracture, left tibia, subs for fx w routn heal +C2900762|T037|PT|M84.362D|ICD10CM|Stress fracture, left tibia, subsequent encounter for fracture with routine healing|Stress fracture, left tibia, subsequent encounter for fracture with routine healing +C2900763|T046|AB|M84.362G|ICD10CM|Stress fracture, left tibia, subs for fx w delay heal|Stress fracture, left tibia, subs for fx w delay heal +C2900763|T046|PT|M84.362G|ICD10CM|Stress fracture, left tibia, subsequent encounter for fracture with delayed healing|Stress fracture, left tibia, subsequent encounter for fracture with delayed healing +C2900764|T037|AB|M84.362K|ICD10CM|Stress fracture, left tibia, subs for fx w nonunion|Stress fracture, left tibia, subs for fx w nonunion +C2900764|T037|PT|M84.362K|ICD10CM|Stress fracture, left tibia, subsequent encounter for fracture with nonunion|Stress fracture, left tibia, subsequent encounter for fracture with nonunion +C2900765|T046|AB|M84.362P|ICD10CM|Stress fracture, left tibia, subs for fx w malunion|Stress fracture, left tibia, subs for fx w malunion +C2900765|T046|PT|M84.362P|ICD10CM|Stress fracture, left tibia, subsequent encounter for fracture with malunion|Stress fracture, left tibia, subsequent encounter for fracture with malunion +C2900766|T046|PT|M84.362S|ICD10CM|Stress fracture, left tibia, sequela|Stress fracture, left tibia, sequela +C2900766|T046|AB|M84.362S|ICD10CM|Stress fracture, left tibia, sequela|Stress fracture, left tibia, sequela +C2900767|T037|AB|M84.363|ICD10CM|Stress fracture, right fibula|Stress fracture, right fibula +C2900767|T037|HT|M84.363|ICD10CM|Stress fracture, right fibula|Stress fracture, right fibula +C2900768|T046|AB|M84.363A|ICD10CM|Stress fracture, right fibula, init encntr for fracture|Stress fracture, right fibula, init encntr for fracture +C2900768|T046|PT|M84.363A|ICD10CM|Stress fracture, right fibula, initial encounter for fracture|Stress fracture, right fibula, initial encounter for fracture +C2900769|T046|AB|M84.363D|ICD10CM|Stress fracture, right fibula, subs for fx w routn heal|Stress fracture, right fibula, subs for fx w routn heal +C2900769|T046|PT|M84.363D|ICD10CM|Stress fracture, right fibula, subsequent encounter for fracture with routine healing|Stress fracture, right fibula, subsequent encounter for fracture with routine healing +C2900770|T037|AB|M84.363G|ICD10CM|Stress fracture, right fibula, subs for fx w delay heal|Stress fracture, right fibula, subs for fx w delay heal +C2900770|T037|PT|M84.363G|ICD10CM|Stress fracture, right fibula, subsequent encounter for fracture with delayed healing|Stress fracture, right fibula, subsequent encounter for fracture with delayed healing +C2900771|T037|AB|M84.363K|ICD10CM|Stress fracture, right fibula, subs for fx w nonunion|Stress fracture, right fibula, subs for fx w nonunion +C2900771|T037|PT|M84.363K|ICD10CM|Stress fracture, right fibula, subsequent encounter for fracture with nonunion|Stress fracture, right fibula, subsequent encounter for fracture with nonunion +C2900772|T046|AB|M84.363P|ICD10CM|Stress fracture, right fibula, subs for fx w malunion|Stress fracture, right fibula, subs for fx w malunion +C2900772|T046|PT|M84.363P|ICD10CM|Stress fracture, right fibula, subsequent encounter for fracture with malunion|Stress fracture, right fibula, subsequent encounter for fracture with malunion +C2900773|T046|PT|M84.363S|ICD10CM|Stress fracture, right fibula, sequela|Stress fracture, right fibula, sequela +C2900773|T046|AB|M84.363S|ICD10CM|Stress fracture, right fibula, sequela|Stress fracture, right fibula, sequela +C2900774|T037|AB|M84.364|ICD10CM|Stress fracture, left fibula|Stress fracture, left fibula +C2900774|T037|HT|M84.364|ICD10CM|Stress fracture, left fibula|Stress fracture, left fibula +C2900775|T037|AB|M84.364A|ICD10CM|Stress fracture, left fibula, initial encounter for fracture|Stress fracture, left fibula, initial encounter for fracture +C2900775|T037|PT|M84.364A|ICD10CM|Stress fracture, left fibula, initial encounter for fracture|Stress fracture, left fibula, initial encounter for fracture +C2900776|T037|AB|M84.364D|ICD10CM|Stress fracture, left fibula, subs for fx w routn heal|Stress fracture, left fibula, subs for fx w routn heal +C2900776|T037|PT|M84.364D|ICD10CM|Stress fracture, left fibula, subsequent encounter for fracture with routine healing|Stress fracture, left fibula, subsequent encounter for fracture with routine healing +C2900777|T046|AB|M84.364G|ICD10CM|Stress fracture, left fibula, subs for fx w delay heal|Stress fracture, left fibula, subs for fx w delay heal +C2900777|T046|PT|M84.364G|ICD10CM|Stress fracture, left fibula, subsequent encounter for fracture with delayed healing|Stress fracture, left fibula, subsequent encounter for fracture with delayed healing +C2900778|T046|AB|M84.364K|ICD10CM|Stress fracture, left fibula, subs for fx w nonunion|Stress fracture, left fibula, subs for fx w nonunion +C2900778|T046|PT|M84.364K|ICD10CM|Stress fracture, left fibula, subsequent encounter for fracture with nonunion|Stress fracture, left fibula, subsequent encounter for fracture with nonunion +C2900779|T046|AB|M84.364P|ICD10CM|Stress fracture, left fibula, subs for fx w malunion|Stress fracture, left fibula, subs for fx w malunion +C2900779|T046|PT|M84.364P|ICD10CM|Stress fracture, left fibula, subsequent encounter for fracture with malunion|Stress fracture, left fibula, subsequent encounter for fracture with malunion +C2900780|T037|PT|M84.364S|ICD10CM|Stress fracture, left fibula, sequela|Stress fracture, left fibula, sequela +C2900780|T037|AB|M84.364S|ICD10CM|Stress fracture, left fibula, sequela|Stress fracture, left fibula, sequela +C2900781|T046|AB|M84.369|ICD10CM|Stress fracture, unspecified tibia and fibula|Stress fracture, unspecified tibia and fibula +C2900781|T046|HT|M84.369|ICD10CM|Stress fracture, unspecified tibia and fibula|Stress fracture, unspecified tibia and fibula +C2900782|T037|AB|M84.369A|ICD10CM|Stress fracture, unsp tibia and fibula, init for fx|Stress fracture, unsp tibia and fibula, init for fx +C2900782|T037|PT|M84.369A|ICD10CM|Stress fracture, unspecified tibia and fibula, initial encounter for fracture|Stress fracture, unspecified tibia and fibula, initial encounter for fracture +C2900783|T037|AB|M84.369D|ICD10CM|Stress fx, unsp tibia and fibula, subs for fx w routn heal|Stress fx, unsp tibia and fibula, subs for fx w routn heal +C2900784|T037|AB|M84.369G|ICD10CM|Stress fx, unsp tibia and fibula, subs for fx w delay heal|Stress fx, unsp tibia and fibula, subs for fx w delay heal +C2900785|T046|PT|M84.369K|ICD10CM|Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with nonunion|Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with nonunion +C2900785|T046|AB|M84.369K|ICD10CM|Stress fx, unsp tibia and fibula, subs for fx w nonunion|Stress fx, unsp tibia and fibula, subs for fx w nonunion +C2900786|T046|PT|M84.369P|ICD10CM|Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with malunion|Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with malunion +C2900786|T046|AB|M84.369P|ICD10CM|Stress fx, unsp tibia and fibula, subs for fx w malunion|Stress fx, unsp tibia and fibula, subs for fx w malunion +C2900787|T037|AB|M84.369S|ICD10CM|Stress fracture, unspecified tibia and fibula, sequela|Stress fracture, unspecified tibia and fibula, sequela +C2900787|T037|PT|M84.369S|ICD10CM|Stress fracture, unspecified tibia and fibula, sequela|Stress fracture, unspecified tibia and fibula, sequela +C2900788|T046|AB|M84.37|ICD10CM|Stress fracture, ankle, foot and toes|Stress fracture, ankle, foot and toes +C2900788|T046|HT|M84.37|ICD10CM|Stress fracture, ankle, foot and toes|Stress fracture, ankle, foot and toes +C2900789|T037|AB|M84.371|ICD10CM|Stress fracture, right ankle|Stress fracture, right ankle +C2900789|T037|HT|M84.371|ICD10CM|Stress fracture, right ankle|Stress fracture, right ankle +C2900790|T037|AB|M84.371A|ICD10CM|Stress fracture, right ankle, initial encounter for fracture|Stress fracture, right ankle, initial encounter for fracture +C2900790|T037|PT|M84.371A|ICD10CM|Stress fracture, right ankle, initial encounter for fracture|Stress fracture, right ankle, initial encounter for fracture +C2900791|T037|AB|M84.371D|ICD10CM|Stress fracture, right ankle, subs for fx w routn heal|Stress fracture, right ankle, subs for fx w routn heal +C2900791|T037|PT|M84.371D|ICD10CM|Stress fracture, right ankle, subsequent encounter for fracture with routine healing|Stress fracture, right ankle, subsequent encounter for fracture with routine healing +C2900792|T046|AB|M84.371G|ICD10CM|Stress fracture, right ankle, subs for fx w delay heal|Stress fracture, right ankle, subs for fx w delay heal +C2900792|T046|PT|M84.371G|ICD10CM|Stress fracture, right ankle, subsequent encounter for fracture with delayed healing|Stress fracture, right ankle, subsequent encounter for fracture with delayed healing +C2900793|T046|AB|M84.371K|ICD10CM|Stress fracture, right ankle, subs for fx w nonunion|Stress fracture, right ankle, subs for fx w nonunion +C2900793|T046|PT|M84.371K|ICD10CM|Stress fracture, right ankle, subsequent encounter for fracture with nonunion|Stress fracture, right ankle, subsequent encounter for fracture with nonunion +C2900794|T037|AB|M84.371P|ICD10CM|Stress fracture, right ankle, subs for fx w malunion|Stress fracture, right ankle, subs for fx w malunion +C2900794|T037|PT|M84.371P|ICD10CM|Stress fracture, right ankle, subsequent encounter for fracture with malunion|Stress fracture, right ankle, subsequent encounter for fracture with malunion +C2900795|T046|PT|M84.371S|ICD10CM|Stress fracture, right ankle, sequela|Stress fracture, right ankle, sequela +C2900795|T046|AB|M84.371S|ICD10CM|Stress fracture, right ankle, sequela|Stress fracture, right ankle, sequela +C2900796|T037|AB|M84.372|ICD10CM|Stress fracture, left ankle|Stress fracture, left ankle +C2900796|T037|HT|M84.372|ICD10CM|Stress fracture, left ankle|Stress fracture, left ankle +C2900797|T037|PT|M84.372A|ICD10CM|Stress fracture, left ankle, initial encounter for fracture|Stress fracture, left ankle, initial encounter for fracture +C2900797|T037|AB|M84.372A|ICD10CM|Stress fracture, left ankle, initial encounter for fracture|Stress fracture, left ankle, initial encounter for fracture +C2900798|T046|AB|M84.372D|ICD10CM|Stress fracture, left ankle, subs for fx w routn heal|Stress fracture, left ankle, subs for fx w routn heal +C2900798|T046|PT|M84.372D|ICD10CM|Stress fracture, left ankle, subsequent encounter for fracture with routine healing|Stress fracture, left ankle, subsequent encounter for fracture with routine healing +C2900799|T046|AB|M84.372G|ICD10CM|Stress fracture, left ankle, subs for fx w delay heal|Stress fracture, left ankle, subs for fx w delay heal +C2900799|T046|PT|M84.372G|ICD10CM|Stress fracture, left ankle, subsequent encounter for fracture with delayed healing|Stress fracture, left ankle, subsequent encounter for fracture with delayed healing +C2900800|T037|AB|M84.372K|ICD10CM|Stress fracture, left ankle, subs for fx w nonunion|Stress fracture, left ankle, subs for fx w nonunion +C2900800|T037|PT|M84.372K|ICD10CM|Stress fracture, left ankle, subsequent encounter for fracture with nonunion|Stress fracture, left ankle, subsequent encounter for fracture with nonunion +C2900801|T037|AB|M84.372P|ICD10CM|Stress fracture, left ankle, subs for fx w malunion|Stress fracture, left ankle, subs for fx w malunion +C2900801|T037|PT|M84.372P|ICD10CM|Stress fracture, left ankle, subsequent encounter for fracture with malunion|Stress fracture, left ankle, subsequent encounter for fracture with malunion +C2900802|T037|PT|M84.372S|ICD10CM|Stress fracture, left ankle, sequela|Stress fracture, left ankle, sequela +C2900802|T037|AB|M84.372S|ICD10CM|Stress fracture, left ankle, sequela|Stress fracture, left ankle, sequela +C2900803|T037|AB|M84.373|ICD10CM|Stress fracture, unspecified ankle|Stress fracture, unspecified ankle +C2900803|T037|HT|M84.373|ICD10CM|Stress fracture, unspecified ankle|Stress fracture, unspecified ankle +C2900804|T046|AB|M84.373A|ICD10CM|Stress fracture, unspecified ankle, init encntr for fracture|Stress fracture, unspecified ankle, init encntr for fracture +C2900804|T046|PT|M84.373A|ICD10CM|Stress fracture, unspecified ankle, initial encounter for fracture|Stress fracture, unspecified ankle, initial encounter for fracture +C2900805|T037|AB|M84.373D|ICD10CM|Stress fracture, unsp ankle, subs for fx w routn heal|Stress fracture, unsp ankle, subs for fx w routn heal +C2900805|T037|PT|M84.373D|ICD10CM|Stress fracture, unspecified ankle, subsequent encounter for fracture with routine healing|Stress fracture, unspecified ankle, subsequent encounter for fracture with routine healing +C2900806|T046|AB|M84.373G|ICD10CM|Stress fracture, unsp ankle, subs for fx w delay heal|Stress fracture, unsp ankle, subs for fx w delay heal +C2900806|T046|PT|M84.373G|ICD10CM|Stress fracture, unspecified ankle, subsequent encounter for fracture with delayed healing|Stress fracture, unspecified ankle, subsequent encounter for fracture with delayed healing +C2900807|T037|AB|M84.373K|ICD10CM|Stress fracture, unsp ankle, subs for fx w nonunion|Stress fracture, unsp ankle, subs for fx w nonunion +C2900807|T037|PT|M84.373K|ICD10CM|Stress fracture, unspecified ankle, subsequent encounter for fracture with nonunion|Stress fracture, unspecified ankle, subsequent encounter for fracture with nonunion +C2900808|T037|AB|M84.373P|ICD10CM|Stress fracture, unsp ankle, subs for fx w malunion|Stress fracture, unsp ankle, subs for fx w malunion +C2900808|T037|PT|M84.373P|ICD10CM|Stress fracture, unspecified ankle, subsequent encounter for fracture with malunion|Stress fracture, unspecified ankle, subsequent encounter for fracture with malunion +C2900809|T046|PT|M84.373S|ICD10CM|Stress fracture, unspecified ankle, sequela|Stress fracture, unspecified ankle, sequela +C2900809|T046|AB|M84.373S|ICD10CM|Stress fracture, unspecified ankle, sequela|Stress fracture, unspecified ankle, sequela +C2900810|T037|AB|M84.374|ICD10CM|Stress fracture, right foot|Stress fracture, right foot +C2900810|T037|HT|M84.374|ICD10CM|Stress fracture, right foot|Stress fracture, right foot +C2900811|T037|PT|M84.374A|ICD10CM|Stress fracture, right foot, initial encounter for fracture|Stress fracture, right foot, initial encounter for fracture +C2900811|T037|AB|M84.374A|ICD10CM|Stress fracture, right foot, initial encounter for fracture|Stress fracture, right foot, initial encounter for fracture +C2900812|T037|AB|M84.374D|ICD10CM|Stress fracture, right foot, subs for fx w routn heal|Stress fracture, right foot, subs for fx w routn heal +C2900812|T037|PT|M84.374D|ICD10CM|Stress fracture, right foot, subsequent encounter for fracture with routine healing|Stress fracture, right foot, subsequent encounter for fracture with routine healing +C2900813|T037|AB|M84.374G|ICD10CM|Stress fracture, right foot, subs for fx w delay heal|Stress fracture, right foot, subs for fx w delay heal +C2900813|T037|PT|M84.374G|ICD10CM|Stress fracture, right foot, subsequent encounter for fracture with delayed healing|Stress fracture, right foot, subsequent encounter for fracture with delayed healing +C2900814|T037|AB|M84.374K|ICD10CM|Stress fracture, right foot, subs for fx w nonunion|Stress fracture, right foot, subs for fx w nonunion +C2900814|T037|PT|M84.374K|ICD10CM|Stress fracture, right foot, subsequent encounter for fracture with nonunion|Stress fracture, right foot, subsequent encounter for fracture with nonunion +C2900815|T046|AB|M84.374P|ICD10CM|Stress fracture, right foot, subs for fx w malunion|Stress fracture, right foot, subs for fx w malunion +C2900815|T046|PT|M84.374P|ICD10CM|Stress fracture, right foot, subsequent encounter for fracture with malunion|Stress fracture, right foot, subsequent encounter for fracture with malunion +C2900816|T046|PT|M84.374S|ICD10CM|Stress fracture, right foot, sequela|Stress fracture, right foot, sequela +C2900816|T046|AB|M84.374S|ICD10CM|Stress fracture, right foot, sequela|Stress fracture, right foot, sequela +C2900817|T037|AB|M84.375|ICD10CM|Stress fracture, left foot|Stress fracture, left foot +C2900817|T037|HT|M84.375|ICD10CM|Stress fracture, left foot|Stress fracture, left foot +C2900818|T037|PT|M84.375A|ICD10CM|Stress fracture, left foot, initial encounter for fracture|Stress fracture, left foot, initial encounter for fracture +C2900818|T037|AB|M84.375A|ICD10CM|Stress fracture, left foot, initial encounter for fracture|Stress fracture, left foot, initial encounter for fracture +C2900819|T037|AB|M84.375D|ICD10CM|Stress fracture, left foot, subs for fx w routn heal|Stress fracture, left foot, subs for fx w routn heal +C2900819|T037|PT|M84.375D|ICD10CM|Stress fracture, left foot, subsequent encounter for fracture with routine healing|Stress fracture, left foot, subsequent encounter for fracture with routine healing +C2900820|T046|AB|M84.375G|ICD10CM|Stress fracture, left foot, subs for fx w delay heal|Stress fracture, left foot, subs for fx w delay heal +C2900820|T046|PT|M84.375G|ICD10CM|Stress fracture, left foot, subsequent encounter for fracture with delayed healing|Stress fracture, left foot, subsequent encounter for fracture with delayed healing +C2900821|T037|AB|M84.375K|ICD10CM|Stress fracture, left foot, subs for fx w nonunion|Stress fracture, left foot, subs for fx w nonunion +C2900821|T037|PT|M84.375K|ICD10CM|Stress fracture, left foot, subsequent encounter for fracture with nonunion|Stress fracture, left foot, subsequent encounter for fracture with nonunion +C2900822|T037|AB|M84.375P|ICD10CM|Stress fracture, left foot, subs for fx w malunion|Stress fracture, left foot, subs for fx w malunion +C2900822|T037|PT|M84.375P|ICD10CM|Stress fracture, left foot, subsequent encounter for fracture with malunion|Stress fracture, left foot, subsequent encounter for fracture with malunion +C2900823|T037|PT|M84.375S|ICD10CM|Stress fracture, left foot, sequela|Stress fracture, left foot, sequela +C2900823|T037|AB|M84.375S|ICD10CM|Stress fracture, left foot, sequela|Stress fracture, left foot, sequela +C2900824|T046|AB|M84.376|ICD10CM|Stress fracture, unspecified foot|Stress fracture, unspecified foot +C2900824|T046|HT|M84.376|ICD10CM|Stress fracture, unspecified foot|Stress fracture, unspecified foot +C2900825|T046|AB|M84.376A|ICD10CM|Stress fracture, unspecified foot, init encntr for fracture|Stress fracture, unspecified foot, init encntr for fracture +C2900825|T046|PT|M84.376A|ICD10CM|Stress fracture, unspecified foot, initial encounter for fracture|Stress fracture, unspecified foot, initial encounter for fracture +C2900826|T046|AB|M84.376D|ICD10CM|Stress fracture, unsp foot, subs for fx w routn heal|Stress fracture, unsp foot, subs for fx w routn heal +C2900826|T046|PT|M84.376D|ICD10CM|Stress fracture, unspecified foot, subsequent encounter for fracture with routine healing|Stress fracture, unspecified foot, subsequent encounter for fracture with routine healing +C2900827|T037|AB|M84.376G|ICD10CM|Stress fracture, unsp foot, subs for fx w delay heal|Stress fracture, unsp foot, subs for fx w delay heal +C2900827|T037|PT|M84.376G|ICD10CM|Stress fracture, unspecified foot, subsequent encounter for fracture with delayed healing|Stress fracture, unspecified foot, subsequent encounter for fracture with delayed healing +C2900828|T046|AB|M84.376K|ICD10CM|Stress fracture, unsp foot, subs for fx w nonunion|Stress fracture, unsp foot, subs for fx w nonunion +C2900828|T046|PT|M84.376K|ICD10CM|Stress fracture, unspecified foot, subsequent encounter for fracture with nonunion|Stress fracture, unspecified foot, subsequent encounter for fracture with nonunion +C2900829|T046|AB|M84.376P|ICD10CM|Stress fracture, unsp foot, subs for fx w malunion|Stress fracture, unsp foot, subs for fx w malunion +C2900829|T046|PT|M84.376P|ICD10CM|Stress fracture, unspecified foot, subsequent encounter for fracture with malunion|Stress fracture, unspecified foot, subsequent encounter for fracture with malunion +C2900830|T037|PT|M84.376S|ICD10CM|Stress fracture, unspecified foot, sequela|Stress fracture, unspecified foot, sequela +C2900830|T037|AB|M84.376S|ICD10CM|Stress fracture, unspecified foot, sequela|Stress fracture, unspecified foot, sequela +C2900831|T046|AB|M84.377|ICD10CM|Stress fracture, right toe(s)|Stress fracture, right toe(s) +C2900831|T046|HT|M84.377|ICD10CM|Stress fracture, right toe(s)|Stress fracture, right toe(s) +C2900832|T037|AB|M84.377A|ICD10CM|Stress fracture, right toe(s), init encntr for fracture|Stress fracture, right toe(s), init encntr for fracture +C2900832|T037|PT|M84.377A|ICD10CM|Stress fracture, right toe(s), initial encounter for fracture|Stress fracture, right toe(s), initial encounter for fracture +C2900833|T046|AB|M84.377D|ICD10CM|Stress fracture, right toe(s), subs for fx w routn heal|Stress fracture, right toe(s), subs for fx w routn heal +C2900833|T046|PT|M84.377D|ICD10CM|Stress fracture, right toe(s), subsequent encounter for fracture with routine healing|Stress fracture, right toe(s), subsequent encounter for fracture with routine healing +C2900834|T046|AB|M84.377G|ICD10CM|Stress fracture, right toe(s), subs for fx w delay heal|Stress fracture, right toe(s), subs for fx w delay heal +C2900834|T046|PT|M84.377G|ICD10CM|Stress fracture, right toe(s), subsequent encounter for fracture with delayed healing|Stress fracture, right toe(s), subsequent encounter for fracture with delayed healing +C2900835|T037|AB|M84.377K|ICD10CM|Stress fracture, right toe(s), subs for fx w nonunion|Stress fracture, right toe(s), subs for fx w nonunion +C2900835|T037|PT|M84.377K|ICD10CM|Stress fracture, right toe(s), subsequent encounter for fracture with nonunion|Stress fracture, right toe(s), subsequent encounter for fracture with nonunion +C2900836|T046|AB|M84.377P|ICD10CM|Stress fracture, right toe(s), subs for fx w malunion|Stress fracture, right toe(s), subs for fx w malunion +C2900836|T046|PT|M84.377P|ICD10CM|Stress fracture, right toe(s), subsequent encounter for fracture with malunion|Stress fracture, right toe(s), subsequent encounter for fracture with malunion +C2900837|T037|PT|M84.377S|ICD10CM|Stress fracture, right toe(s), sequela|Stress fracture, right toe(s), sequela +C2900837|T037|AB|M84.377S|ICD10CM|Stress fracture, right toe(s), sequela|Stress fracture, right toe(s), sequela +C2900838|T046|AB|M84.378|ICD10CM|Stress fracture, left toe(s)|Stress fracture, left toe(s) +C2900838|T046|HT|M84.378|ICD10CM|Stress fracture, left toe(s)|Stress fracture, left toe(s) +C2900839|T037|AB|M84.378A|ICD10CM|Stress fracture, left toe(s), initial encounter for fracture|Stress fracture, left toe(s), initial encounter for fracture +C2900839|T037|PT|M84.378A|ICD10CM|Stress fracture, left toe(s), initial encounter for fracture|Stress fracture, left toe(s), initial encounter for fracture +C2900840|T046|AB|M84.378D|ICD10CM|Stress fracture, left toe(s), subs for fx w routn heal|Stress fracture, left toe(s), subs for fx w routn heal +C2900840|T046|PT|M84.378D|ICD10CM|Stress fracture, left toe(s), subsequent encounter for fracture with routine healing|Stress fracture, left toe(s), subsequent encounter for fracture with routine healing +C2900841|T037|AB|M84.378G|ICD10CM|Stress fracture, left toe(s), subs for fx w delay heal|Stress fracture, left toe(s), subs for fx w delay heal +C2900841|T037|PT|M84.378G|ICD10CM|Stress fracture, left toe(s), subsequent encounter for fracture with delayed healing|Stress fracture, left toe(s), subsequent encounter for fracture with delayed healing +C2900842|T037|AB|M84.378K|ICD10CM|Stress fracture, left toe(s), subs for fx w nonunion|Stress fracture, left toe(s), subs for fx w nonunion +C2900842|T037|PT|M84.378K|ICD10CM|Stress fracture, left toe(s), subsequent encounter for fracture with nonunion|Stress fracture, left toe(s), subsequent encounter for fracture with nonunion +C2900843|T037|AB|M84.378P|ICD10CM|Stress fracture, left toe(s), subs for fx w malunion|Stress fracture, left toe(s), subs for fx w malunion +C2900843|T037|PT|M84.378P|ICD10CM|Stress fracture, left toe(s), subsequent encounter for fracture with malunion|Stress fracture, left toe(s), subsequent encounter for fracture with malunion +C2900844|T037|PT|M84.378S|ICD10CM|Stress fracture, left toe(s), sequela|Stress fracture, left toe(s), sequela +C2900844|T037|AB|M84.378S|ICD10CM|Stress fracture, left toe(s), sequela|Stress fracture, left toe(s), sequela +C2900845|T037|AB|M84.379|ICD10CM|Stress fracture, unspecified toe(s)|Stress fracture, unspecified toe(s) +C2900845|T037|HT|M84.379|ICD10CM|Stress fracture, unspecified toe(s)|Stress fracture, unspecified toe(s) +C2900846|T046|AB|M84.379A|ICD10CM|Stress fracture, unsp toe(s), init encntr for fracture|Stress fracture, unsp toe(s), init encntr for fracture +C2900846|T046|PT|M84.379A|ICD10CM|Stress fracture, unspecified toe(s), initial encounter for fracture|Stress fracture, unspecified toe(s), initial encounter for fracture +C2900847|T037|AB|M84.379D|ICD10CM|Stress fracture, unsp toe(s), subs for fx w routn heal|Stress fracture, unsp toe(s), subs for fx w routn heal +C2900847|T037|PT|M84.379D|ICD10CM|Stress fracture, unspecified toe(s), subsequent encounter for fracture with routine healing|Stress fracture, unspecified toe(s), subsequent encounter for fracture with routine healing +C2900848|T037|AB|M84.379G|ICD10CM|Stress fracture, unsp toe(s), subs for fx w delay heal|Stress fracture, unsp toe(s), subs for fx w delay heal +C2900848|T037|PT|M84.379G|ICD10CM|Stress fracture, unspecified toe(s), subsequent encounter for fracture with delayed healing|Stress fracture, unspecified toe(s), subsequent encounter for fracture with delayed healing +C2900849|T046|AB|M84.379K|ICD10CM|Stress fracture, unsp toe(s), subs for fx w nonunion|Stress fracture, unsp toe(s), subs for fx w nonunion +C2900849|T046|PT|M84.379K|ICD10CM|Stress fracture, unspecified toe(s), subsequent encounter for fracture with nonunion|Stress fracture, unspecified toe(s), subsequent encounter for fracture with nonunion +C2900850|T037|AB|M84.379P|ICD10CM|Stress fracture, unsp toe(s), subs for fx w malunion|Stress fracture, unsp toe(s), subs for fx w malunion +C2900850|T037|PT|M84.379P|ICD10CM|Stress fracture, unspecified toe(s), subsequent encounter for fracture with malunion|Stress fracture, unspecified toe(s), subsequent encounter for fracture with malunion +C2900851|T037|PT|M84.379S|ICD10CM|Stress fracture, unspecified toe(s), sequela|Stress fracture, unspecified toe(s), sequela +C2900851|T037|AB|M84.379S|ICD10CM|Stress fracture, unspecified toe(s), sequela|Stress fracture, unspecified toe(s), sequela +C2900852|T037|AB|M84.38|ICD10CM|Stress fracture, other site|Stress fracture, other site +C2900852|T037|HT|M84.38|ICD10CM|Stress fracture, other site|Stress fracture, other site +C2900853|T037|PT|M84.38XA|ICD10CM|Stress fracture, other site, initial encounter for fracture|Stress fracture, other site, initial encounter for fracture +C2900853|T037|AB|M84.38XA|ICD10CM|Stress fracture, other site, initial encounter for fracture|Stress fracture, other site, initial encounter for fracture +C2900854|T046|AB|M84.38XD|ICD10CM|Stress fracture, oth site, subs for fx w routn heal|Stress fracture, oth site, subs for fx w routn heal +C2900854|T046|PT|M84.38XD|ICD10CM|Stress fracture, other site, subsequent encounter for fracture with routine healing|Stress fracture, other site, subsequent encounter for fracture with routine healing +C2900855|T037|AB|M84.38XG|ICD10CM|Stress fracture, oth site, subs for fx w delay heal|Stress fracture, oth site, subs for fx w delay heal +C2900855|T037|PT|M84.38XG|ICD10CM|Stress fracture, other site, subsequent encounter for fracture with delayed healing|Stress fracture, other site, subsequent encounter for fracture with delayed healing +C2900856|T046|AB|M84.38XK|ICD10CM|Stress fracture, oth site, subs for fx w nonunion|Stress fracture, oth site, subs for fx w nonunion +C2900856|T046|PT|M84.38XK|ICD10CM|Stress fracture, other site, subsequent encounter for fracture with nonunion|Stress fracture, other site, subsequent encounter for fracture with nonunion +C2900857|T046|AB|M84.38XP|ICD10CM|Stress fracture, oth site, subs for fx w malunion|Stress fracture, oth site, subs for fx w malunion +C2900857|T046|PT|M84.38XP|ICD10CM|Stress fracture, other site, subsequent encounter for fracture with malunion|Stress fracture, other site, subsequent encounter for fracture with malunion +C2900858|T046|PT|M84.38XS|ICD10CM|Stress fracture, other site, sequela|Stress fracture, other site, sequela +C2900858|T046|AB|M84.38XS|ICD10CM|Stress fracture, other site, sequela|Stress fracture, other site, sequela +C2712806|T046|ET|M84.4|ICD10CM|Chronic fracture|Chronic fracture +C0016663|T046|ET|M84.4|ICD10CM|Pathological fracture NOS|Pathological fracture NOS +C0495002|T020|PT|M84.4|ICD10|Pathological fracture, not elsewhere classified|Pathological fracture, not elsewhere classified +C0495002|T020|HT|M84.4|ICD10CM|Pathological fracture, not elsewhere classified|Pathological fracture, not elsewhere classified +C0495002|T020|AB|M84.4|ICD10CM|Pathological fracture, not elsewhere classified|Pathological fracture, not elsewhere classified +C2900859|T046|AB|M84.40|ICD10CM|Pathological fracture, unspecified site|Pathological fracture, unspecified site +C2900859|T046|HT|M84.40|ICD10CM|Pathological fracture, unspecified site|Pathological fracture, unspecified site +C2900860|T046|AB|M84.40XA|ICD10CM|Pathological fracture, unsp site, init encntr for fracture|Pathological fracture, unsp site, init encntr for fracture +C2900860|T046|PT|M84.40XA|ICD10CM|Pathological fracture, unspecified site, initial encounter for fracture|Pathological fracture, unspecified site, initial encounter for fracture +C2900861|T046|AB|M84.40XD|ICD10CM|Pathological fracture, unsp site, subs for fx w routn heal|Pathological fracture, unsp site, subs for fx w routn heal +C2900861|T046|PT|M84.40XD|ICD10CM|Pathological fracture, unspecified site, subsequent encounter for fracture with routine healing|Pathological fracture, unspecified site, subsequent encounter for fracture with routine healing +C2900862|T046|AB|M84.40XG|ICD10CM|Pathological fracture, unsp site, subs for fx w delay heal|Pathological fracture, unsp site, subs for fx w delay heal +C2900862|T046|PT|M84.40XG|ICD10CM|Pathological fracture, unspecified site, subsequent encounter for fracture with delayed healing|Pathological fracture, unspecified site, subsequent encounter for fracture with delayed healing +C2900863|T046|AB|M84.40XK|ICD10CM|Pathological fracture, unsp site, subs for fx w nonunion|Pathological fracture, unsp site, subs for fx w nonunion +C2900863|T046|PT|M84.40XK|ICD10CM|Pathological fracture, unspecified site, subsequent encounter for fracture with nonunion|Pathological fracture, unspecified site, subsequent encounter for fracture with nonunion +C2900864|T046|AB|M84.40XP|ICD10CM|Pathological fracture, unsp site, subs for fx w malunion|Pathological fracture, unsp site, subs for fx w malunion +C2900864|T046|PT|M84.40XP|ICD10CM|Pathological fracture, unspecified site, subsequent encounter for fracture with malunion|Pathological fracture, unspecified site, subsequent encounter for fracture with malunion +C2900865|T046|PT|M84.40XS|ICD10CM|Pathological fracture, unspecified site, sequela|Pathological fracture, unspecified site, sequela +C2900865|T046|AB|M84.40XS|ICD10CM|Pathological fracture, unspecified site, sequela|Pathological fracture, unspecified site, sequela +C0564836|T046|AB|M84.41|ICD10CM|Pathological fracture, shoulder|Pathological fracture, shoulder +C0564836|T046|HT|M84.41|ICD10CM|Pathological fracture, shoulder|Pathological fracture, shoulder +C2900866|T046|AB|M84.411|ICD10CM|Pathological fracture, right shoulder|Pathological fracture, right shoulder +C2900866|T046|HT|M84.411|ICD10CM|Pathological fracture, right shoulder|Pathological fracture, right shoulder +C2900867|T046|AB|M84.411A|ICD10CM|Pathological fracture, right shoulder, init for fx|Pathological fracture, right shoulder, init for fx +C2900867|T046|PT|M84.411A|ICD10CM|Pathological fracture, right shoulder, initial encounter for fracture|Pathological fracture, right shoulder, initial encounter for fracture +C2900868|T046|AB|M84.411D|ICD10CM|Pathological fracture, r shoulder, subs for fx w routn heal|Pathological fracture, r shoulder, subs for fx w routn heal +C2900868|T046|PT|M84.411D|ICD10CM|Pathological fracture, right shoulder, subsequent encounter for fracture with routine healing|Pathological fracture, right shoulder, subsequent encounter for fracture with routine healing +C2900869|T046|AB|M84.411G|ICD10CM|Pathological fracture, r shoulder, subs for fx w delay heal|Pathological fracture, r shoulder, subs for fx w delay heal +C2900869|T046|PT|M84.411G|ICD10CM|Pathological fracture, right shoulder, subsequent encounter for fracture with delayed healing|Pathological fracture, right shoulder, subsequent encounter for fracture with delayed healing +C2900870|T046|AB|M84.411K|ICD10CM|Pathological fracture, r shoulder, subs for fx w nonunion|Pathological fracture, r shoulder, subs for fx w nonunion +C2900870|T046|PT|M84.411K|ICD10CM|Pathological fracture, right shoulder, subsequent encounter for fracture with nonunion|Pathological fracture, right shoulder, subsequent encounter for fracture with nonunion +C2900871|T046|AB|M84.411P|ICD10CM|Pathological fracture, r shoulder, subs for fx w malunion|Pathological fracture, r shoulder, subs for fx w malunion +C2900871|T046|PT|M84.411P|ICD10CM|Pathological fracture, right shoulder, subsequent encounter for fracture with malunion|Pathological fracture, right shoulder, subsequent encounter for fracture with malunion +C2900872|T046|PT|M84.411S|ICD10CM|Pathological fracture, right shoulder, sequela|Pathological fracture, right shoulder, sequela +C2900872|T046|AB|M84.411S|ICD10CM|Pathological fracture, right shoulder, sequela|Pathological fracture, right shoulder, sequela +C2900873|T046|AB|M84.412|ICD10CM|Pathological fracture, left shoulder|Pathological fracture, left shoulder +C2900873|T046|HT|M84.412|ICD10CM|Pathological fracture, left shoulder|Pathological fracture, left shoulder +C2900874|T046|AB|M84.412A|ICD10CM|Pathological fracture, left shoulder, init for fx|Pathological fracture, left shoulder, init for fx +C2900874|T046|PT|M84.412A|ICD10CM|Pathological fracture, left shoulder, initial encounter for fracture|Pathological fracture, left shoulder, initial encounter for fracture +C2900875|T046|AB|M84.412D|ICD10CM|Pathological fracture, l shoulder, subs for fx w routn heal|Pathological fracture, l shoulder, subs for fx w routn heal +C2900875|T046|PT|M84.412D|ICD10CM|Pathological fracture, left shoulder, subsequent encounter for fracture with routine healing|Pathological fracture, left shoulder, subsequent encounter for fracture with routine healing +C2900876|T046|AB|M84.412G|ICD10CM|Pathological fracture, l shoulder, subs for fx w delay heal|Pathological fracture, l shoulder, subs for fx w delay heal +C2900876|T046|PT|M84.412G|ICD10CM|Pathological fracture, left shoulder, subsequent encounter for fracture with delayed healing|Pathological fracture, left shoulder, subsequent encounter for fracture with delayed healing +C2900877|T046|AB|M84.412K|ICD10CM|Pathological fracture, left shoulder, subs for fx w nonunion|Pathological fracture, left shoulder, subs for fx w nonunion +C2900877|T046|PT|M84.412K|ICD10CM|Pathological fracture, left shoulder, subsequent encounter for fracture with nonunion|Pathological fracture, left shoulder, subsequent encounter for fracture with nonunion +C2900878|T046|AB|M84.412P|ICD10CM|Pathological fracture, left shoulder, subs for fx w malunion|Pathological fracture, left shoulder, subs for fx w malunion +C2900878|T046|PT|M84.412P|ICD10CM|Pathological fracture, left shoulder, subsequent encounter for fracture with malunion|Pathological fracture, left shoulder, subsequent encounter for fracture with malunion +C2900879|T046|PT|M84.412S|ICD10CM|Pathological fracture, left shoulder, sequela|Pathological fracture, left shoulder, sequela +C2900879|T046|AB|M84.412S|ICD10CM|Pathological fracture, left shoulder, sequela|Pathological fracture, left shoulder, sequela +C2900880|T046|AB|M84.419|ICD10CM|Pathological fracture, unspecified shoulder|Pathological fracture, unspecified shoulder +C2900880|T046|HT|M84.419|ICD10CM|Pathological fracture, unspecified shoulder|Pathological fracture, unspecified shoulder +C2900881|T046|AB|M84.419A|ICD10CM|Pathological fracture, unsp shoulder, init for fx|Pathological fracture, unsp shoulder, init for fx +C2900881|T046|PT|M84.419A|ICD10CM|Pathological fracture, unspecified shoulder, initial encounter for fracture|Pathological fracture, unspecified shoulder, initial encounter for fracture +C2900882|T046|AB|M84.419D|ICD10CM|Path fracture, unsp shoulder, subs for fx w routn heal|Path fracture, unsp shoulder, subs for fx w routn heal +C2900882|T046|PT|M84.419D|ICD10CM|Pathological fracture, unspecified shoulder, subsequent encounter for fracture with routine healing|Pathological fracture, unspecified shoulder, subsequent encounter for fracture with routine healing +C2900883|T046|AB|M84.419G|ICD10CM|Path fracture, unsp shoulder, subs for fx w delay heal|Path fracture, unsp shoulder, subs for fx w delay heal +C2900883|T046|PT|M84.419G|ICD10CM|Pathological fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing|Pathological fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing +C2900884|T046|AB|M84.419K|ICD10CM|Pathological fracture, unsp shoulder, subs for fx w nonunion|Pathological fracture, unsp shoulder, subs for fx w nonunion +C2900884|T046|PT|M84.419K|ICD10CM|Pathological fracture, unspecified shoulder, subsequent encounter for fracture with nonunion|Pathological fracture, unspecified shoulder, subsequent encounter for fracture with nonunion +C2900885|T046|AB|M84.419P|ICD10CM|Pathological fracture, unsp shoulder, subs for fx w malunion|Pathological fracture, unsp shoulder, subs for fx w malunion +C2900885|T046|PT|M84.419P|ICD10CM|Pathological fracture, unspecified shoulder, subsequent encounter for fracture with malunion|Pathological fracture, unspecified shoulder, subsequent encounter for fracture with malunion +C2900886|T046|PT|M84.419S|ICD10CM|Pathological fracture, unspecified shoulder, sequela|Pathological fracture, unspecified shoulder, sequela +C2900886|T046|AB|M84.419S|ICD10CM|Pathological fracture, unspecified shoulder, sequela|Pathological fracture, unspecified shoulder, sequela +C0564837|T046|AB|M84.42|ICD10CM|Pathological fracture, humerus|Pathological fracture, humerus +C0564837|T046|HT|M84.42|ICD10CM|Pathological fracture, humerus|Pathological fracture, humerus +C2900888|T046|AB|M84.421|ICD10CM|Pathological fracture, right humerus|Pathological fracture, right humerus +C2900888|T046|HT|M84.421|ICD10CM|Pathological fracture, right humerus|Pathological fracture, right humerus +C2900889|T046|AB|M84.421A|ICD10CM|Pathological fracture, right humerus, init for fx|Pathological fracture, right humerus, init for fx +C2900889|T046|PT|M84.421A|ICD10CM|Pathological fracture, right humerus, initial encounter for fracture|Pathological fracture, right humerus, initial encounter for fracture +C2900890|T046|AB|M84.421D|ICD10CM|Pathological fracture, r humerus, subs for fx w routn heal|Pathological fracture, r humerus, subs for fx w routn heal +C2900890|T046|PT|M84.421D|ICD10CM|Pathological fracture, right humerus, subsequent encounter for fracture with routine healing|Pathological fracture, right humerus, subsequent encounter for fracture with routine healing +C2900891|T046|AB|M84.421G|ICD10CM|Pathological fracture, r humerus, subs for fx w delay heal|Pathological fracture, r humerus, subs for fx w delay heal +C2900891|T046|PT|M84.421G|ICD10CM|Pathological fracture, right humerus, subsequent encounter for fracture with delayed healing|Pathological fracture, right humerus, subsequent encounter for fracture with delayed healing +C2900892|T046|AB|M84.421K|ICD10CM|Pathological fracture, right humerus, subs for fx w nonunion|Pathological fracture, right humerus, subs for fx w nonunion +C2900892|T046|PT|M84.421K|ICD10CM|Pathological fracture, right humerus, subsequent encounter for fracture with nonunion|Pathological fracture, right humerus, subsequent encounter for fracture with nonunion +C2900893|T046|AB|M84.421P|ICD10CM|Pathological fracture, right humerus, subs for fx w malunion|Pathological fracture, right humerus, subs for fx w malunion +C2900893|T046|PT|M84.421P|ICD10CM|Pathological fracture, right humerus, subsequent encounter for fracture with malunion|Pathological fracture, right humerus, subsequent encounter for fracture with malunion +C2900894|T046|PT|M84.421S|ICD10CM|Pathological fracture, right humerus, sequela|Pathological fracture, right humerus, sequela +C2900894|T046|AB|M84.421S|ICD10CM|Pathological fracture, right humerus, sequela|Pathological fracture, right humerus, sequela +C2900895|T046|AB|M84.422|ICD10CM|Pathological fracture, left humerus|Pathological fracture, left humerus +C2900895|T046|HT|M84.422|ICD10CM|Pathological fracture, left humerus|Pathological fracture, left humerus +C2900896|T046|AB|M84.422A|ICD10CM|Pathological fracture, left humerus, init for fx|Pathological fracture, left humerus, init for fx +C2900896|T046|PT|M84.422A|ICD10CM|Pathological fracture, left humerus, initial encounter for fracture|Pathological fracture, left humerus, initial encounter for fracture +C2900897|T046|AB|M84.422D|ICD10CM|Pathological fracture, l humerus, subs for fx w routn heal|Pathological fracture, l humerus, subs for fx w routn heal +C2900897|T046|PT|M84.422D|ICD10CM|Pathological fracture, left humerus, subsequent encounter for fracture with routine healing|Pathological fracture, left humerus, subsequent encounter for fracture with routine healing +C2900898|T046|AB|M84.422G|ICD10CM|Pathological fracture, l humerus, subs for fx w delay heal|Pathological fracture, l humerus, subs for fx w delay heal +C2900898|T046|PT|M84.422G|ICD10CM|Pathological fracture, left humerus, subsequent encounter for fracture with delayed healing|Pathological fracture, left humerus, subsequent encounter for fracture with delayed healing +C2900899|T046|AB|M84.422K|ICD10CM|Pathological fracture, left humerus, subs for fx w nonunion|Pathological fracture, left humerus, subs for fx w nonunion +C2900899|T046|PT|M84.422K|ICD10CM|Pathological fracture, left humerus, subsequent encounter for fracture with nonunion|Pathological fracture, left humerus, subsequent encounter for fracture with nonunion +C2900900|T046|AB|M84.422P|ICD10CM|Pathological fracture, left humerus, subs for fx w malunion|Pathological fracture, left humerus, subs for fx w malunion +C2900900|T046|PT|M84.422P|ICD10CM|Pathological fracture, left humerus, subsequent encounter for fracture with malunion|Pathological fracture, left humerus, subsequent encounter for fracture with malunion +C2900901|T046|PT|M84.422S|ICD10CM|Pathological fracture, left humerus, sequela|Pathological fracture, left humerus, sequela +C2900901|T046|AB|M84.422S|ICD10CM|Pathological fracture, left humerus, sequela|Pathological fracture, left humerus, sequela +C2900902|T046|AB|M84.429|ICD10CM|Pathological fracture, unspecified humerus|Pathological fracture, unspecified humerus +C2900902|T046|HT|M84.429|ICD10CM|Pathological fracture, unspecified humerus|Pathological fracture, unspecified humerus +C2900903|T046|AB|M84.429A|ICD10CM|Pathological fracture, unsp humerus, init for fx|Pathological fracture, unsp humerus, init for fx +C2900903|T046|PT|M84.429A|ICD10CM|Pathological fracture, unspecified humerus, initial encounter for fracture|Pathological fracture, unspecified humerus, initial encounter for fracture +C2900904|T046|AB|M84.429D|ICD10CM|Path fracture, unsp humerus, subs for fx w routn heal|Path fracture, unsp humerus, subs for fx w routn heal +C2900904|T046|PT|M84.429D|ICD10CM|Pathological fracture, unspecified humerus, subsequent encounter for fracture with routine healing|Pathological fracture, unspecified humerus, subsequent encounter for fracture with routine healing +C2900905|T046|AB|M84.429G|ICD10CM|Path fracture, unsp humerus, subs for fx w delay heal|Path fracture, unsp humerus, subs for fx w delay heal +C2900905|T046|PT|M84.429G|ICD10CM|Pathological fracture, unspecified humerus, subsequent encounter for fracture with delayed healing|Pathological fracture, unspecified humerus, subsequent encounter for fracture with delayed healing +C2900906|T046|AB|M84.429K|ICD10CM|Pathological fracture, unsp humerus, subs for fx w nonunion|Pathological fracture, unsp humerus, subs for fx w nonunion +C2900906|T046|PT|M84.429K|ICD10CM|Pathological fracture, unspecified humerus, subsequent encounter for fracture with nonunion|Pathological fracture, unspecified humerus, subsequent encounter for fracture with nonunion +C2900907|T046|AB|M84.429P|ICD10CM|Pathological fracture, unsp humerus, subs for fx w malunion|Pathological fracture, unsp humerus, subs for fx w malunion +C2900907|T046|PT|M84.429P|ICD10CM|Pathological fracture, unspecified humerus, subsequent encounter for fracture with malunion|Pathological fracture, unspecified humerus, subsequent encounter for fracture with malunion +C2900908|T046|PT|M84.429S|ICD10CM|Pathological fracture, unspecified humerus, sequela|Pathological fracture, unspecified humerus, sequela +C2900908|T046|AB|M84.429S|ICD10CM|Pathological fracture, unspecified humerus, sequela|Pathological fracture, unspecified humerus, sequela +C2900909|T046|AB|M84.43|ICD10CM|Pathological fracture, ulna and radius|Pathological fracture, ulna and radius +C2900909|T046|HT|M84.43|ICD10CM|Pathological fracture, ulna and radius|Pathological fracture, ulna and radius +C2900910|T046|AB|M84.431|ICD10CM|Pathological fracture, right ulna|Pathological fracture, right ulna +C2900910|T046|HT|M84.431|ICD10CM|Pathological fracture, right ulna|Pathological fracture, right ulna +C2900911|T046|AB|M84.431A|ICD10CM|Pathological fracture, right ulna, init encntr for fracture|Pathological fracture, right ulna, init encntr for fracture +C2900911|T046|PT|M84.431A|ICD10CM|Pathological fracture, right ulna, initial encounter for fracture|Pathological fracture, right ulna, initial encounter for fracture +C2900912|T046|AB|M84.431D|ICD10CM|Pathological fracture, right ulna, subs for fx w routn heal|Pathological fracture, right ulna, subs for fx w routn heal +C2900912|T046|PT|M84.431D|ICD10CM|Pathological fracture, right ulna, subsequent encounter for fracture with routine healing|Pathological fracture, right ulna, subsequent encounter for fracture with routine healing +C2900913|T046|AB|M84.431G|ICD10CM|Pathological fracture, right ulna, subs for fx w delay heal|Pathological fracture, right ulna, subs for fx w delay heal +C2900913|T046|PT|M84.431G|ICD10CM|Pathological fracture, right ulna, subsequent encounter for fracture with delayed healing|Pathological fracture, right ulna, subsequent encounter for fracture with delayed healing +C2900914|T046|AB|M84.431K|ICD10CM|Pathological fracture, right ulna, subs for fx w nonunion|Pathological fracture, right ulna, subs for fx w nonunion +C2900914|T046|PT|M84.431K|ICD10CM|Pathological fracture, right ulna, subsequent encounter for fracture with nonunion|Pathological fracture, right ulna, subsequent encounter for fracture with nonunion +C2900915|T046|AB|M84.431P|ICD10CM|Pathological fracture, right ulna, subs for fx w malunion|Pathological fracture, right ulna, subs for fx w malunion +C2900915|T046|PT|M84.431P|ICD10CM|Pathological fracture, right ulna, subsequent encounter for fracture with malunion|Pathological fracture, right ulna, subsequent encounter for fracture with malunion +C2900916|T046|PT|M84.431S|ICD10CM|Pathological fracture, right ulna, sequela|Pathological fracture, right ulna, sequela +C2900916|T046|AB|M84.431S|ICD10CM|Pathological fracture, right ulna, sequela|Pathological fracture, right ulna, sequela +C2900917|T046|AB|M84.432|ICD10CM|Pathological fracture, left ulna|Pathological fracture, left ulna +C2900917|T046|HT|M84.432|ICD10CM|Pathological fracture, left ulna|Pathological fracture, left ulna +C2900918|T046|AB|M84.432A|ICD10CM|Pathological fracture, left ulna, init encntr for fracture|Pathological fracture, left ulna, init encntr for fracture +C2900918|T046|PT|M84.432A|ICD10CM|Pathological fracture, left ulna, initial encounter for fracture|Pathological fracture, left ulna, initial encounter for fracture +C2900919|T046|AB|M84.432D|ICD10CM|Pathological fracture, left ulna, subs for fx w routn heal|Pathological fracture, left ulna, subs for fx w routn heal +C2900919|T046|PT|M84.432D|ICD10CM|Pathological fracture, left ulna, subsequent encounter for fracture with routine healing|Pathological fracture, left ulna, subsequent encounter for fracture with routine healing +C2900920|T046|AB|M84.432G|ICD10CM|Pathological fracture, left ulna, subs for fx w delay heal|Pathological fracture, left ulna, subs for fx w delay heal +C2900920|T046|PT|M84.432G|ICD10CM|Pathological fracture, left ulna, subsequent encounter for fracture with delayed healing|Pathological fracture, left ulna, subsequent encounter for fracture with delayed healing +C2900921|T046|AB|M84.432K|ICD10CM|Pathological fracture, left ulna, subs for fx w nonunion|Pathological fracture, left ulna, subs for fx w nonunion +C2900921|T046|PT|M84.432K|ICD10CM|Pathological fracture, left ulna, subsequent encounter for fracture with nonunion|Pathological fracture, left ulna, subsequent encounter for fracture with nonunion +C2900922|T046|AB|M84.432P|ICD10CM|Pathological fracture, left ulna, subs for fx w malunion|Pathological fracture, left ulna, subs for fx w malunion +C2900922|T046|PT|M84.432P|ICD10CM|Pathological fracture, left ulna, subsequent encounter for fracture with malunion|Pathological fracture, left ulna, subsequent encounter for fracture with malunion +C2900923|T046|PT|M84.432S|ICD10CM|Pathological fracture, left ulna, sequela|Pathological fracture, left ulna, sequela +C2900923|T046|AB|M84.432S|ICD10CM|Pathological fracture, left ulna, sequela|Pathological fracture, left ulna, sequela +C2900924|T046|AB|M84.433|ICD10CM|Pathological fracture, right radius|Pathological fracture, right radius +C2900924|T046|HT|M84.433|ICD10CM|Pathological fracture, right radius|Pathological fracture, right radius +C2900925|T046|AB|M84.433A|ICD10CM|Pathological fracture, right radius, init for fx|Pathological fracture, right radius, init for fx +C2900925|T046|PT|M84.433A|ICD10CM|Pathological fracture, right radius, initial encounter for fracture|Pathological fracture, right radius, initial encounter for fracture +C2900926|T046|AB|M84.433D|ICD10CM|Path fracture, right radius, subs for fx w routn heal|Path fracture, right radius, subs for fx w routn heal +C2900926|T046|PT|M84.433D|ICD10CM|Pathological fracture, right radius, subsequent encounter for fracture with routine healing|Pathological fracture, right radius, subsequent encounter for fracture with routine healing +C2900927|T046|AB|M84.433G|ICD10CM|Path fracture, right radius, subs for fx w delay heal|Path fracture, right radius, subs for fx w delay heal +C2900927|T046|PT|M84.433G|ICD10CM|Pathological fracture, right radius, subsequent encounter for fracture with delayed healing|Pathological fracture, right radius, subsequent encounter for fracture with delayed healing +C2900928|T046|AB|M84.433K|ICD10CM|Pathological fracture, right radius, subs for fx w nonunion|Pathological fracture, right radius, subs for fx w nonunion +C2900928|T046|PT|M84.433K|ICD10CM|Pathological fracture, right radius, subsequent encounter for fracture with nonunion|Pathological fracture, right radius, subsequent encounter for fracture with nonunion +C2900929|T046|AB|M84.433P|ICD10CM|Pathological fracture, right radius, subs for fx w malunion|Pathological fracture, right radius, subs for fx w malunion +C2900929|T046|PT|M84.433P|ICD10CM|Pathological fracture, right radius, subsequent encounter for fracture with malunion|Pathological fracture, right radius, subsequent encounter for fracture with malunion +C2900930|T046|PT|M84.433S|ICD10CM|Pathological fracture, right radius, sequela|Pathological fracture, right radius, sequela +C2900930|T046|AB|M84.433S|ICD10CM|Pathological fracture, right radius, sequela|Pathological fracture, right radius, sequela +C2900931|T046|AB|M84.434|ICD10CM|Pathological fracture, left radius|Pathological fracture, left radius +C2900931|T046|HT|M84.434|ICD10CM|Pathological fracture, left radius|Pathological fracture, left radius +C2900932|T046|AB|M84.434A|ICD10CM|Pathological fracture, left radius, init encntr for fracture|Pathological fracture, left radius, init encntr for fracture +C2900932|T046|PT|M84.434A|ICD10CM|Pathological fracture, left radius, initial encounter for fracture|Pathological fracture, left radius, initial encounter for fracture +C2900933|T046|AB|M84.434D|ICD10CM|Pathological fracture, left radius, subs for fx w routn heal|Pathological fracture, left radius, subs for fx w routn heal +C2900933|T046|PT|M84.434D|ICD10CM|Pathological fracture, left radius, subsequent encounter for fracture with routine healing|Pathological fracture, left radius, subsequent encounter for fracture with routine healing +C2900934|T046|AB|M84.434G|ICD10CM|Pathological fracture, left radius, subs for fx w delay heal|Pathological fracture, left radius, subs for fx w delay heal +C2900934|T046|PT|M84.434G|ICD10CM|Pathological fracture, left radius, subsequent encounter for fracture with delayed healing|Pathological fracture, left radius, subsequent encounter for fracture with delayed healing +C2900935|T046|AB|M84.434K|ICD10CM|Pathological fracture, left radius, subs for fx w nonunion|Pathological fracture, left radius, subs for fx w nonunion +C2900935|T046|PT|M84.434K|ICD10CM|Pathological fracture, left radius, subsequent encounter for fracture with nonunion|Pathological fracture, left radius, subsequent encounter for fracture with nonunion +C2900936|T046|AB|M84.434P|ICD10CM|Pathological fracture, left radius, subs for fx w malunion|Pathological fracture, left radius, subs for fx w malunion +C2900936|T046|PT|M84.434P|ICD10CM|Pathological fracture, left radius, subsequent encounter for fracture with malunion|Pathological fracture, left radius, subsequent encounter for fracture with malunion +C2900937|T046|PT|M84.434S|ICD10CM|Pathological fracture, left radius, sequela|Pathological fracture, left radius, sequela +C2900937|T046|AB|M84.434S|ICD10CM|Pathological fracture, left radius, sequela|Pathological fracture, left radius, sequela +C2900938|T046|AB|M84.439|ICD10CM|Pathological fracture, unspecified ulna and radius|Pathological fracture, unspecified ulna and radius +C2900938|T046|HT|M84.439|ICD10CM|Pathological fracture, unspecified ulna and radius|Pathological fracture, unspecified ulna and radius +C2900939|T046|AB|M84.439A|ICD10CM|Pathological fracture, unsp ulna and radius, init for fx|Pathological fracture, unsp ulna and radius, init for fx +C2900939|T046|PT|M84.439A|ICD10CM|Pathological fracture, unspecified ulna and radius, initial encounter for fracture|Pathological fracture, unspecified ulna and radius, initial encounter for fracture +C2900940|T046|AB|M84.439D|ICD10CM|Path fx, unsp ulna and radius, subs for fx w routn heal|Path fx, unsp ulna and radius, subs for fx w routn heal +C2900941|T046|AB|M84.439G|ICD10CM|Path fx, unsp ulna and radius, subs for fx w delay heal|Path fx, unsp ulna and radius, subs for fx w delay heal +C2900942|T046|AB|M84.439K|ICD10CM|Path fracture, unsp ulna and radius, subs for fx w nonunion|Path fracture, unsp ulna and radius, subs for fx w nonunion +C2900942|T046|PT|M84.439K|ICD10CM|Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with nonunion|Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with nonunion +C2900943|T046|AB|M84.439P|ICD10CM|Path fracture, unsp ulna and radius, subs for fx w malunion|Path fracture, unsp ulna and radius, subs for fx w malunion +C2900943|T046|PT|M84.439P|ICD10CM|Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with malunion|Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with malunion +C2900944|T046|PT|M84.439S|ICD10CM|Pathological fracture, unspecified ulna and radius, sequela|Pathological fracture, unspecified ulna and radius, sequela +C2900944|T046|AB|M84.439S|ICD10CM|Pathological fracture, unspecified ulna and radius, sequela|Pathological fracture, unspecified ulna and radius, sequela +C2900945|T046|AB|M84.44|ICD10CM|Pathological fracture, hand and fingers|Pathological fracture, hand and fingers +C2900945|T046|HT|M84.44|ICD10CM|Pathological fracture, hand and fingers|Pathological fracture, hand and fingers +C2900946|T046|AB|M84.441|ICD10CM|Pathological fracture, right hand|Pathological fracture, right hand +C2900946|T046|HT|M84.441|ICD10CM|Pathological fracture, right hand|Pathological fracture, right hand +C2900947|T046|AB|M84.441A|ICD10CM|Pathological fracture, right hand, init encntr for fracture|Pathological fracture, right hand, init encntr for fracture +C2900947|T046|PT|M84.441A|ICD10CM|Pathological fracture, right hand, initial encounter for fracture|Pathological fracture, right hand, initial encounter for fracture +C2900948|T046|AB|M84.441D|ICD10CM|Pathological fracture, right hand, subs for fx w routn heal|Pathological fracture, right hand, subs for fx w routn heal +C2900948|T046|PT|M84.441D|ICD10CM|Pathological fracture, right hand, subsequent encounter for fracture with routine healing|Pathological fracture, right hand, subsequent encounter for fracture with routine healing +C2900949|T046|AB|M84.441G|ICD10CM|Pathological fracture, right hand, subs for fx w delay heal|Pathological fracture, right hand, subs for fx w delay heal +C2900949|T046|PT|M84.441G|ICD10CM|Pathological fracture, right hand, subsequent encounter for fracture with delayed healing|Pathological fracture, right hand, subsequent encounter for fracture with delayed healing +C2900950|T046|AB|M84.441K|ICD10CM|Pathological fracture, right hand, subs for fx w nonunion|Pathological fracture, right hand, subs for fx w nonunion +C2900950|T046|PT|M84.441K|ICD10CM|Pathological fracture, right hand, subsequent encounter for fracture with nonunion|Pathological fracture, right hand, subsequent encounter for fracture with nonunion +C2900951|T046|AB|M84.441P|ICD10CM|Pathological fracture, right hand, subs for fx w malunion|Pathological fracture, right hand, subs for fx w malunion +C2900951|T046|PT|M84.441P|ICD10CM|Pathological fracture, right hand, subsequent encounter for fracture with malunion|Pathological fracture, right hand, subsequent encounter for fracture with malunion +C2900952|T046|PT|M84.441S|ICD10CM|Pathological fracture, right hand, sequela|Pathological fracture, right hand, sequela +C2900952|T046|AB|M84.441S|ICD10CM|Pathological fracture, right hand, sequela|Pathological fracture, right hand, sequela +C2900953|T046|AB|M84.442|ICD10CM|Pathological fracture, left hand|Pathological fracture, left hand +C2900953|T046|HT|M84.442|ICD10CM|Pathological fracture, left hand|Pathological fracture, left hand +C2900954|T046|AB|M84.442A|ICD10CM|Pathological fracture, left hand, init encntr for fracture|Pathological fracture, left hand, init encntr for fracture +C2900954|T046|PT|M84.442A|ICD10CM|Pathological fracture, left hand, initial encounter for fracture|Pathological fracture, left hand, initial encounter for fracture +C2900955|T046|AB|M84.442D|ICD10CM|Pathological fracture, left hand, subs for fx w routn heal|Pathological fracture, left hand, subs for fx w routn heal +C2900955|T046|PT|M84.442D|ICD10CM|Pathological fracture, left hand, subsequent encounter for fracture with routine healing|Pathological fracture, left hand, subsequent encounter for fracture with routine healing +C2900956|T046|AB|M84.442G|ICD10CM|Pathological fracture, left hand, subs for fx w delay heal|Pathological fracture, left hand, subs for fx w delay heal +C2900956|T046|PT|M84.442G|ICD10CM|Pathological fracture, left hand, subsequent encounter for fracture with delayed healing|Pathological fracture, left hand, subsequent encounter for fracture with delayed healing +C2900957|T046|AB|M84.442K|ICD10CM|Pathological fracture, left hand, subs for fx w nonunion|Pathological fracture, left hand, subs for fx w nonunion +C2900957|T046|PT|M84.442K|ICD10CM|Pathological fracture, left hand, subsequent encounter for fracture with nonunion|Pathological fracture, left hand, subsequent encounter for fracture with nonunion +C2900958|T046|AB|M84.442P|ICD10CM|Pathological fracture, left hand, subs for fx w malunion|Pathological fracture, left hand, subs for fx w malunion +C2900958|T046|PT|M84.442P|ICD10CM|Pathological fracture, left hand, subsequent encounter for fracture with malunion|Pathological fracture, left hand, subsequent encounter for fracture with malunion +C2900959|T046|PT|M84.442S|ICD10CM|Pathological fracture, left hand, sequela|Pathological fracture, left hand, sequela +C2900959|T046|AB|M84.442S|ICD10CM|Pathological fracture, left hand, sequela|Pathological fracture, left hand, sequela +C2900960|T046|AB|M84.443|ICD10CM|Pathological fracture, unspecified hand|Pathological fracture, unspecified hand +C2900960|T046|HT|M84.443|ICD10CM|Pathological fracture, unspecified hand|Pathological fracture, unspecified hand +C2900961|T046|AB|M84.443A|ICD10CM|Pathological fracture, unsp hand, init encntr for fracture|Pathological fracture, unsp hand, init encntr for fracture +C2900961|T046|PT|M84.443A|ICD10CM|Pathological fracture, unspecified hand, initial encounter for fracture|Pathological fracture, unspecified hand, initial encounter for fracture +C2900962|T046|AB|M84.443D|ICD10CM|Pathological fracture, unsp hand, subs for fx w routn heal|Pathological fracture, unsp hand, subs for fx w routn heal +C2900962|T046|PT|M84.443D|ICD10CM|Pathological fracture, unspecified hand, subsequent encounter for fracture with routine healing|Pathological fracture, unspecified hand, subsequent encounter for fracture with routine healing +C2900963|T046|AB|M84.443G|ICD10CM|Pathological fracture, unsp hand, subs for fx w delay heal|Pathological fracture, unsp hand, subs for fx w delay heal +C2900963|T046|PT|M84.443G|ICD10CM|Pathological fracture, unspecified hand, subsequent encounter for fracture with delayed healing|Pathological fracture, unspecified hand, subsequent encounter for fracture with delayed healing +C2900964|T046|AB|M84.443K|ICD10CM|Pathological fracture, unsp hand, subs for fx w nonunion|Pathological fracture, unsp hand, subs for fx w nonunion +C2900964|T046|PT|M84.443K|ICD10CM|Pathological fracture, unspecified hand, subsequent encounter for fracture with nonunion|Pathological fracture, unspecified hand, subsequent encounter for fracture with nonunion +C2900965|T046|AB|M84.443P|ICD10CM|Pathological fracture, unsp hand, subs for fx w malunion|Pathological fracture, unsp hand, subs for fx w malunion +C2900965|T046|PT|M84.443P|ICD10CM|Pathological fracture, unspecified hand, subsequent encounter for fracture with malunion|Pathological fracture, unspecified hand, subsequent encounter for fracture with malunion +C2900966|T046|PT|M84.443S|ICD10CM|Pathological fracture, unspecified hand, sequela|Pathological fracture, unspecified hand, sequela +C2900966|T046|AB|M84.443S|ICD10CM|Pathological fracture, unspecified hand, sequela|Pathological fracture, unspecified hand, sequela +C2900967|T046|AB|M84.444|ICD10CM|Pathological fracture, right finger(s)|Pathological fracture, right finger(s) +C2900967|T046|HT|M84.444|ICD10CM|Pathological fracture, right finger(s)|Pathological fracture, right finger(s) +C2900968|T046|AB|M84.444A|ICD10CM|Pathological fracture, right finger(s), init for fx|Pathological fracture, right finger(s), init for fx +C2900968|T046|PT|M84.444A|ICD10CM|Pathological fracture, right finger(s), initial encounter for fracture|Pathological fracture, right finger(s), initial encounter for fracture +C2900969|T046|AB|M84.444D|ICD10CM|Path fracture, right finger(s), subs for fx w routn heal|Path fracture, right finger(s), subs for fx w routn heal +C2900969|T046|PT|M84.444D|ICD10CM|Pathological fracture, right finger(s), subsequent encounter for fracture with routine healing|Pathological fracture, right finger(s), subsequent encounter for fracture with routine healing +C2900970|T046|AB|M84.444G|ICD10CM|Path fracture, right finger(s), subs for fx w delay heal|Path fracture, right finger(s), subs for fx w delay heal +C2900970|T046|PT|M84.444G|ICD10CM|Pathological fracture, right finger(s), subsequent encounter for fracture with delayed healing|Pathological fracture, right finger(s), subsequent encounter for fracture with delayed healing +C2900971|T046|AB|M84.444K|ICD10CM|Path fracture, right finger(s), subs for fx w nonunion|Path fracture, right finger(s), subs for fx w nonunion +C2900971|T046|PT|M84.444K|ICD10CM|Pathological fracture, right finger(s), subsequent encounter for fracture with nonunion|Pathological fracture, right finger(s), subsequent encounter for fracture with nonunion +C2900972|T046|AB|M84.444P|ICD10CM|Path fracture, right finger(s), subs for fx w malunion|Path fracture, right finger(s), subs for fx w malunion +C2900972|T046|PT|M84.444P|ICD10CM|Pathological fracture, right finger(s), subsequent encounter for fracture with malunion|Pathological fracture, right finger(s), subsequent encounter for fracture with malunion +C2900973|T046|PT|M84.444S|ICD10CM|Pathological fracture, right finger(s), sequela|Pathological fracture, right finger(s), sequela +C2900973|T046|AB|M84.444S|ICD10CM|Pathological fracture, right finger(s), sequela|Pathological fracture, right finger(s), sequela +C2900974|T046|AB|M84.445|ICD10CM|Pathological fracture, left finger(s)|Pathological fracture, left finger(s) +C2900974|T046|HT|M84.445|ICD10CM|Pathological fracture, left finger(s)|Pathological fracture, left finger(s) +C2900975|T046|AB|M84.445A|ICD10CM|Pathological fracture, left finger(s), init for fx|Pathological fracture, left finger(s), init for fx +C2900975|T046|PT|M84.445A|ICD10CM|Pathological fracture, left finger(s), initial encounter for fracture|Pathological fracture, left finger(s), initial encounter for fracture +C2900976|T046|AB|M84.445D|ICD10CM|Path fracture, left finger(s), subs for fx w routn heal|Path fracture, left finger(s), subs for fx w routn heal +C2900976|T046|PT|M84.445D|ICD10CM|Pathological fracture, left finger(s), subsequent encounter for fracture with routine healing|Pathological fracture, left finger(s), subsequent encounter for fracture with routine healing +C2900977|T046|AB|M84.445G|ICD10CM|Path fracture, left finger(s), subs for fx w delay heal|Path fracture, left finger(s), subs for fx w delay heal +C2900977|T046|PT|M84.445G|ICD10CM|Pathological fracture, left finger(s), subsequent encounter for fracture with delayed healing|Pathological fracture, left finger(s), subsequent encounter for fracture with delayed healing +C2900978|T046|AB|M84.445K|ICD10CM|Path fracture, left finger(s), subs for fx w nonunion|Path fracture, left finger(s), subs for fx w nonunion +C2900978|T046|PT|M84.445K|ICD10CM|Pathological fracture, left finger(s), subsequent encounter for fracture with nonunion|Pathological fracture, left finger(s), subsequent encounter for fracture with nonunion +C2900979|T046|AB|M84.445P|ICD10CM|Path fracture, left finger(s), subs for fx w malunion|Path fracture, left finger(s), subs for fx w malunion +C2900979|T046|PT|M84.445P|ICD10CM|Pathological fracture, left finger(s), subsequent encounter for fracture with malunion|Pathological fracture, left finger(s), subsequent encounter for fracture with malunion +C2900980|T046|PT|M84.445S|ICD10CM|Pathological fracture, left finger(s), sequela|Pathological fracture, left finger(s), sequela +C2900980|T046|AB|M84.445S|ICD10CM|Pathological fracture, left finger(s), sequela|Pathological fracture, left finger(s), sequela +C2900981|T046|AB|M84.446|ICD10CM|Pathological fracture, unspecified finger(s)|Pathological fracture, unspecified finger(s) +C2900981|T046|HT|M84.446|ICD10CM|Pathological fracture, unspecified finger(s)|Pathological fracture, unspecified finger(s) +C2900982|T046|AB|M84.446A|ICD10CM|Pathological fracture, unsp finger(s), init for fx|Pathological fracture, unsp finger(s), init for fx +C2900982|T046|PT|M84.446A|ICD10CM|Pathological fracture, unspecified finger(s), initial encounter for fracture|Pathological fracture, unspecified finger(s), initial encounter for fracture +C2900983|T046|AB|M84.446D|ICD10CM|Path fracture, unsp finger(s), subs for fx w routn heal|Path fracture, unsp finger(s), subs for fx w routn heal +C2900983|T046|PT|M84.446D|ICD10CM|Pathological fracture, unspecified finger(s), subsequent encounter for fracture with routine healing|Pathological fracture, unspecified finger(s), subsequent encounter for fracture with routine healing +C2900984|T046|AB|M84.446G|ICD10CM|Path fracture, unsp finger(s), subs for fx w delay heal|Path fracture, unsp finger(s), subs for fx w delay heal +C2900984|T046|PT|M84.446G|ICD10CM|Pathological fracture, unspecified finger(s), subsequent encounter for fracture with delayed healing|Pathological fracture, unspecified finger(s), subsequent encounter for fracture with delayed healing +C2900985|T046|AB|M84.446K|ICD10CM|Path fracture, unsp finger(s), subs for fx w nonunion|Path fracture, unsp finger(s), subs for fx w nonunion +C2900985|T046|PT|M84.446K|ICD10CM|Pathological fracture, unspecified finger(s), subsequent encounter for fracture with nonunion|Pathological fracture, unspecified finger(s), subsequent encounter for fracture with nonunion +C2900986|T046|AB|M84.446P|ICD10CM|Path fracture, unsp finger(s), subs for fx w malunion|Path fracture, unsp finger(s), subs for fx w malunion +C2900986|T046|PT|M84.446P|ICD10CM|Pathological fracture, unspecified finger(s), subsequent encounter for fracture with malunion|Pathological fracture, unspecified finger(s), subsequent encounter for fracture with malunion +C2900987|T046|PT|M84.446S|ICD10CM|Pathological fracture, unspecified finger(s), sequela|Pathological fracture, unspecified finger(s), sequela +C2900987|T046|AB|M84.446S|ICD10CM|Pathological fracture, unspecified finger(s), sequela|Pathological fracture, unspecified finger(s), sequela +C2900988|T046|AB|M84.45|ICD10CM|Pathological fracture, femur and pelvis|Pathological fracture, femur and pelvis +C2900988|T046|HT|M84.45|ICD10CM|Pathological fracture, femur and pelvis|Pathological fracture, femur and pelvis +C2900989|T046|AB|M84.451|ICD10CM|Pathological fracture, right femur|Pathological fracture, right femur +C2900989|T046|HT|M84.451|ICD10CM|Pathological fracture, right femur|Pathological fracture, right femur +C2900990|T046|AB|M84.451A|ICD10CM|Pathological fracture, right femur, init encntr for fracture|Pathological fracture, right femur, init encntr for fracture +C2900990|T046|PT|M84.451A|ICD10CM|Pathological fracture, right femur, initial encounter for fracture|Pathological fracture, right femur, initial encounter for fracture +C2900991|T046|AB|M84.451D|ICD10CM|Pathological fracture, right femur, subs for fx w routn heal|Pathological fracture, right femur, subs for fx w routn heal +C2900991|T046|PT|M84.451D|ICD10CM|Pathological fracture, right femur, subsequent encounter for fracture with routine healing|Pathological fracture, right femur, subsequent encounter for fracture with routine healing +C2900992|T046|AB|M84.451G|ICD10CM|Pathological fracture, right femur, subs for fx w delay heal|Pathological fracture, right femur, subs for fx w delay heal +C2900992|T046|PT|M84.451G|ICD10CM|Pathological fracture, right femur, subsequent encounter for fracture with delayed healing|Pathological fracture, right femur, subsequent encounter for fracture with delayed healing +C2900993|T046|AB|M84.451K|ICD10CM|Pathological fracture, right femur, subs for fx w nonunion|Pathological fracture, right femur, subs for fx w nonunion +C2900993|T046|PT|M84.451K|ICD10CM|Pathological fracture, right femur, subsequent encounter for fracture with nonunion|Pathological fracture, right femur, subsequent encounter for fracture with nonunion +C2900994|T046|AB|M84.451P|ICD10CM|Pathological fracture, right femur, subs for fx w malunion|Pathological fracture, right femur, subs for fx w malunion +C2900994|T046|PT|M84.451P|ICD10CM|Pathological fracture, right femur, subsequent encounter for fracture with malunion|Pathological fracture, right femur, subsequent encounter for fracture with malunion +C2900995|T046|PT|M84.451S|ICD10CM|Pathological fracture, right femur, sequela|Pathological fracture, right femur, sequela +C2900995|T046|AB|M84.451S|ICD10CM|Pathological fracture, right femur, sequela|Pathological fracture, right femur, sequela +C2900996|T046|AB|M84.452|ICD10CM|Pathological fracture, left femur|Pathological fracture, left femur +C2900996|T046|HT|M84.452|ICD10CM|Pathological fracture, left femur|Pathological fracture, left femur +C2900997|T046|AB|M84.452A|ICD10CM|Pathological fracture, left femur, init encntr for fracture|Pathological fracture, left femur, init encntr for fracture +C2900997|T046|PT|M84.452A|ICD10CM|Pathological fracture, left femur, initial encounter for fracture|Pathological fracture, left femur, initial encounter for fracture +C2900998|T046|AB|M84.452D|ICD10CM|Pathological fracture, left femur, subs for fx w routn heal|Pathological fracture, left femur, subs for fx w routn heal +C2900998|T046|PT|M84.452D|ICD10CM|Pathological fracture, left femur, subsequent encounter for fracture with routine healing|Pathological fracture, left femur, subsequent encounter for fracture with routine healing +C2900999|T046|AB|M84.452G|ICD10CM|Pathological fracture, left femur, subs for fx w delay heal|Pathological fracture, left femur, subs for fx w delay heal +C2900999|T046|PT|M84.452G|ICD10CM|Pathological fracture, left femur, subsequent encounter for fracture with delayed healing|Pathological fracture, left femur, subsequent encounter for fracture with delayed healing +C2901000|T046|AB|M84.452K|ICD10CM|Pathological fracture, left femur, subs for fx w nonunion|Pathological fracture, left femur, subs for fx w nonunion +C2901000|T046|PT|M84.452K|ICD10CM|Pathological fracture, left femur, subsequent encounter for fracture with nonunion|Pathological fracture, left femur, subsequent encounter for fracture with nonunion +C2901001|T046|AB|M84.452P|ICD10CM|Pathological fracture, left femur, subs for fx w malunion|Pathological fracture, left femur, subs for fx w malunion +C2901001|T046|PT|M84.452P|ICD10CM|Pathological fracture, left femur, subsequent encounter for fracture with malunion|Pathological fracture, left femur, subsequent encounter for fracture with malunion +C2901002|T046|PT|M84.452S|ICD10CM|Pathological fracture, left femur, sequela|Pathological fracture, left femur, sequela +C2901002|T046|AB|M84.452S|ICD10CM|Pathological fracture, left femur, sequela|Pathological fracture, left femur, sequela +C2901003|T046|AB|M84.453|ICD10CM|Pathological fracture, unspecified femur|Pathological fracture, unspecified femur +C2901003|T046|HT|M84.453|ICD10CM|Pathological fracture, unspecified femur|Pathological fracture, unspecified femur +C2901004|T046|AB|M84.453A|ICD10CM|Pathological fracture, unsp femur, init encntr for fracture|Pathological fracture, unsp femur, init encntr for fracture +C2901004|T046|PT|M84.453A|ICD10CM|Pathological fracture, unspecified femur, initial encounter for fracture|Pathological fracture, unspecified femur, initial encounter for fracture +C2901005|T046|AB|M84.453D|ICD10CM|Pathological fracture, unsp femur, subs for fx w routn heal|Pathological fracture, unsp femur, subs for fx w routn heal +C2901005|T046|PT|M84.453D|ICD10CM|Pathological fracture, unspecified femur, subsequent encounter for fracture with routine healing|Pathological fracture, unspecified femur, subsequent encounter for fracture with routine healing +C2901006|T046|AB|M84.453G|ICD10CM|Pathological fracture, unsp femur, subs for fx w delay heal|Pathological fracture, unsp femur, subs for fx w delay heal +C2901006|T046|PT|M84.453G|ICD10CM|Pathological fracture, unspecified femur, subsequent encounter for fracture with delayed healing|Pathological fracture, unspecified femur, subsequent encounter for fracture with delayed healing +C2901007|T046|AB|M84.453K|ICD10CM|Pathological fracture, unsp femur, subs for fx w nonunion|Pathological fracture, unsp femur, subs for fx w nonunion +C2901007|T046|PT|M84.453K|ICD10CM|Pathological fracture, unspecified femur, subsequent encounter for fracture with nonunion|Pathological fracture, unspecified femur, subsequent encounter for fracture with nonunion +C2901008|T046|AB|M84.453P|ICD10CM|Pathological fracture, unsp femur, subs for fx w malunion|Pathological fracture, unsp femur, subs for fx w malunion +C2901008|T046|PT|M84.453P|ICD10CM|Pathological fracture, unspecified femur, subsequent encounter for fracture with malunion|Pathological fracture, unspecified femur, subsequent encounter for fracture with malunion +C2901009|T046|PT|M84.453S|ICD10CM|Pathological fracture, unspecified femur, sequela|Pathological fracture, unspecified femur, sequela +C2901009|T046|AB|M84.453S|ICD10CM|Pathological fracture, unspecified femur, sequela|Pathological fracture, unspecified femur, sequela +C1959847|T046|AB|M84.454|ICD10CM|Pathological fracture, pelvis|Pathological fracture, pelvis +C1959847|T046|HT|M84.454|ICD10CM|Pathological fracture, pelvis|Pathological fracture, pelvis +C2901010|T046|AB|M84.454A|ICD10CM|Pathological fracture, pelvis, init encntr for fracture|Pathological fracture, pelvis, init encntr for fracture +C2901010|T046|PT|M84.454A|ICD10CM|Pathological fracture, pelvis, initial encounter for fracture|Pathological fracture, pelvis, initial encounter for fracture +C2901011|T046|AB|M84.454D|ICD10CM|Pathological fracture, pelvis, subs for fx w routn heal|Pathological fracture, pelvis, subs for fx w routn heal +C2901011|T046|PT|M84.454D|ICD10CM|Pathological fracture, pelvis, subsequent encounter for fracture with routine healing|Pathological fracture, pelvis, subsequent encounter for fracture with routine healing +C2901012|T046|AB|M84.454G|ICD10CM|Pathological fracture, pelvis, subs for fx w delay heal|Pathological fracture, pelvis, subs for fx w delay heal +C2901012|T046|PT|M84.454G|ICD10CM|Pathological fracture, pelvis, subsequent encounter for fracture with delayed healing|Pathological fracture, pelvis, subsequent encounter for fracture with delayed healing +C2901013|T046|AB|M84.454K|ICD10CM|Pathological fracture, pelvis, subs for fx w nonunion|Pathological fracture, pelvis, subs for fx w nonunion +C2901013|T046|PT|M84.454K|ICD10CM|Pathological fracture, pelvis, subsequent encounter for fracture with nonunion|Pathological fracture, pelvis, subsequent encounter for fracture with nonunion +C2901014|T046|AB|M84.454P|ICD10CM|Pathological fracture, pelvis, subs for fx w malunion|Pathological fracture, pelvis, subs for fx w malunion +C2901014|T046|PT|M84.454P|ICD10CM|Pathological fracture, pelvis, subsequent encounter for fracture with malunion|Pathological fracture, pelvis, subsequent encounter for fracture with malunion +C2901015|T046|PT|M84.454S|ICD10CM|Pathological fracture, pelvis, sequela|Pathological fracture, pelvis, sequela +C2901015|T046|AB|M84.454S|ICD10CM|Pathological fracture, pelvis, sequela|Pathological fracture, pelvis, sequela +C2901016|T046|AB|M84.459|ICD10CM|Pathological fracture, hip, unspecified|Pathological fracture, hip, unspecified +C2901016|T046|HT|M84.459|ICD10CM|Pathological fracture, hip, unspecified|Pathological fracture, hip, unspecified +C2901017|T046|AB|M84.459A|ICD10CM|Pathological fracture, hip, unsp, init encntr for fracture|Pathological fracture, hip, unsp, init encntr for fracture +C2901017|T046|PT|M84.459A|ICD10CM|Pathological fracture, hip, unspecified, initial encounter for fracture|Pathological fracture, hip, unspecified, initial encounter for fracture +C2901018|T046|AB|M84.459D|ICD10CM|Pathological fracture, hip, unsp, subs for fx w routn heal|Pathological fracture, hip, unsp, subs for fx w routn heal +C2901018|T046|PT|M84.459D|ICD10CM|Pathological fracture, hip, unspecified, subsequent encounter for fracture with routine healing|Pathological fracture, hip, unspecified, subsequent encounter for fracture with routine healing +C2901019|T046|AB|M84.459G|ICD10CM|Pathological fracture, hip, unsp, subs for fx w delay heal|Pathological fracture, hip, unsp, subs for fx w delay heal +C2901019|T046|PT|M84.459G|ICD10CM|Pathological fracture, hip, unspecified, subsequent encounter for fracture with delayed healing|Pathological fracture, hip, unspecified, subsequent encounter for fracture with delayed healing +C2901020|T046|AB|M84.459K|ICD10CM|Pathological fracture, hip, unsp, subs for fx w nonunion|Pathological fracture, hip, unsp, subs for fx w nonunion +C2901020|T046|PT|M84.459K|ICD10CM|Pathological fracture, hip, unspecified, subsequent encounter for fracture with nonunion|Pathological fracture, hip, unspecified, subsequent encounter for fracture with nonunion +C2901021|T046|AB|M84.459P|ICD10CM|Pathological fracture, hip, unsp, subs for fx w malunion|Pathological fracture, hip, unsp, subs for fx w malunion +C2901021|T046|PT|M84.459P|ICD10CM|Pathological fracture, hip, unspecified, subsequent encounter for fracture with malunion|Pathological fracture, hip, unspecified, subsequent encounter for fracture with malunion +C2901022|T046|PT|M84.459S|ICD10CM|Pathological fracture, hip, unspecified, sequela|Pathological fracture, hip, unspecified, sequela +C2901022|T046|AB|M84.459S|ICD10CM|Pathological fracture, hip, unspecified, sequela|Pathological fracture, hip, unspecified, sequela +C2901023|T046|AB|M84.46|ICD10CM|Pathological fracture, tibia and fibula|Pathological fracture, tibia and fibula +C2901023|T046|HT|M84.46|ICD10CM|Pathological fracture, tibia and fibula|Pathological fracture, tibia and fibula +C2901024|T046|AB|M84.461|ICD10CM|Pathological fracture, right tibia|Pathological fracture, right tibia +C2901024|T046|HT|M84.461|ICD10CM|Pathological fracture, right tibia|Pathological fracture, right tibia +C2901025|T046|AB|M84.461A|ICD10CM|Pathological fracture, right tibia, init encntr for fracture|Pathological fracture, right tibia, init encntr for fracture +C2901025|T046|PT|M84.461A|ICD10CM|Pathological fracture, right tibia, initial encounter for fracture|Pathological fracture, right tibia, initial encounter for fracture +C2901026|T046|AB|M84.461D|ICD10CM|Pathological fracture, right tibia, subs for fx w routn heal|Pathological fracture, right tibia, subs for fx w routn heal +C2901026|T046|PT|M84.461D|ICD10CM|Pathological fracture, right tibia, subsequent encounter for fracture with routine healing|Pathological fracture, right tibia, subsequent encounter for fracture with routine healing +C2901027|T046|AB|M84.461G|ICD10CM|Pathological fracture, right tibia, subs for fx w delay heal|Pathological fracture, right tibia, subs for fx w delay heal +C2901027|T046|PT|M84.461G|ICD10CM|Pathological fracture, right tibia, subsequent encounter for fracture with delayed healing|Pathological fracture, right tibia, subsequent encounter for fracture with delayed healing +C2901028|T046|AB|M84.461K|ICD10CM|Pathological fracture, right tibia, subs for fx w nonunion|Pathological fracture, right tibia, subs for fx w nonunion +C2901028|T046|PT|M84.461K|ICD10CM|Pathological fracture, right tibia, subsequent encounter for fracture with nonunion|Pathological fracture, right tibia, subsequent encounter for fracture with nonunion +C2901029|T046|AB|M84.461P|ICD10CM|Pathological fracture, right tibia, subs for fx w malunion|Pathological fracture, right tibia, subs for fx w malunion +C2901029|T046|PT|M84.461P|ICD10CM|Pathological fracture, right tibia, subsequent encounter for fracture with malunion|Pathological fracture, right tibia, subsequent encounter for fracture with malunion +C2901030|T046|PT|M84.461S|ICD10CM|Pathological fracture, right tibia, sequela|Pathological fracture, right tibia, sequela +C2901030|T046|AB|M84.461S|ICD10CM|Pathological fracture, right tibia, sequela|Pathological fracture, right tibia, sequela +C2901031|T046|AB|M84.462|ICD10CM|Pathological fracture, left tibia|Pathological fracture, left tibia +C2901031|T046|HT|M84.462|ICD10CM|Pathological fracture, left tibia|Pathological fracture, left tibia +C2901032|T046|AB|M84.462A|ICD10CM|Pathological fracture, left tibia, init encntr for fracture|Pathological fracture, left tibia, init encntr for fracture +C2901032|T046|PT|M84.462A|ICD10CM|Pathological fracture, left tibia, initial encounter for fracture|Pathological fracture, left tibia, initial encounter for fracture +C2901033|T046|AB|M84.462D|ICD10CM|Pathological fracture, left tibia, subs for fx w routn heal|Pathological fracture, left tibia, subs for fx w routn heal +C2901033|T046|PT|M84.462D|ICD10CM|Pathological fracture, left tibia, subsequent encounter for fracture with routine healing|Pathological fracture, left tibia, subsequent encounter for fracture with routine healing +C2901034|T046|AB|M84.462G|ICD10CM|Pathological fracture, left tibia, subs for fx w delay heal|Pathological fracture, left tibia, subs for fx w delay heal +C2901034|T046|PT|M84.462G|ICD10CM|Pathological fracture, left tibia, subsequent encounter for fracture with delayed healing|Pathological fracture, left tibia, subsequent encounter for fracture with delayed healing +C2901035|T046|AB|M84.462K|ICD10CM|Pathological fracture, left tibia, subs for fx w nonunion|Pathological fracture, left tibia, subs for fx w nonunion +C2901035|T046|PT|M84.462K|ICD10CM|Pathological fracture, left tibia, subsequent encounter for fracture with nonunion|Pathological fracture, left tibia, subsequent encounter for fracture with nonunion +C2901036|T046|AB|M84.462P|ICD10CM|Pathological fracture, left tibia, subs for fx w malunion|Pathological fracture, left tibia, subs for fx w malunion +C2901036|T046|PT|M84.462P|ICD10CM|Pathological fracture, left tibia, subsequent encounter for fracture with malunion|Pathological fracture, left tibia, subsequent encounter for fracture with malunion +C2901037|T046|PT|M84.462S|ICD10CM|Pathological fracture, left tibia, sequela|Pathological fracture, left tibia, sequela +C2901037|T046|AB|M84.462S|ICD10CM|Pathological fracture, left tibia, sequela|Pathological fracture, left tibia, sequela +C2901038|T046|AB|M84.463|ICD10CM|Pathological fracture, right fibula|Pathological fracture, right fibula +C2901038|T046|HT|M84.463|ICD10CM|Pathological fracture, right fibula|Pathological fracture, right fibula +C2901039|T046|AB|M84.463A|ICD10CM|Pathological fracture, right fibula, init for fx|Pathological fracture, right fibula, init for fx +C2901039|T046|PT|M84.463A|ICD10CM|Pathological fracture, right fibula, initial encounter for fracture|Pathological fracture, right fibula, initial encounter for fracture +C2901040|T046|AB|M84.463D|ICD10CM|Path fracture, right fibula, subs for fx w routn heal|Path fracture, right fibula, subs for fx w routn heal +C2901040|T046|PT|M84.463D|ICD10CM|Pathological fracture, right fibula, subsequent encounter for fracture with routine healing|Pathological fracture, right fibula, subsequent encounter for fracture with routine healing +C2901041|T046|AB|M84.463G|ICD10CM|Path fracture, right fibula, subs for fx w delay heal|Path fracture, right fibula, subs for fx w delay heal +C2901041|T046|PT|M84.463G|ICD10CM|Pathological fracture, right fibula, subsequent encounter for fracture with delayed healing|Pathological fracture, right fibula, subsequent encounter for fracture with delayed healing +C2901042|T046|AB|M84.463K|ICD10CM|Pathological fracture, right fibula, subs for fx w nonunion|Pathological fracture, right fibula, subs for fx w nonunion +C2901042|T046|PT|M84.463K|ICD10CM|Pathological fracture, right fibula, subsequent encounter for fracture with nonunion|Pathological fracture, right fibula, subsequent encounter for fracture with nonunion +C2901043|T046|AB|M84.463P|ICD10CM|Pathological fracture, right fibula, subs for fx w malunion|Pathological fracture, right fibula, subs for fx w malunion +C2901043|T046|PT|M84.463P|ICD10CM|Pathological fracture, right fibula, subsequent encounter for fracture with malunion|Pathological fracture, right fibula, subsequent encounter for fracture with malunion +C2901044|T046|PT|M84.463S|ICD10CM|Pathological fracture, right fibula, sequela|Pathological fracture, right fibula, sequela +C2901044|T046|AB|M84.463S|ICD10CM|Pathological fracture, right fibula, sequela|Pathological fracture, right fibula, sequela +C2901045|T046|AB|M84.464|ICD10CM|Pathological fracture, left fibula|Pathological fracture, left fibula +C2901045|T046|HT|M84.464|ICD10CM|Pathological fracture, left fibula|Pathological fracture, left fibula +C2901046|T046|AB|M84.464A|ICD10CM|Pathological fracture, left fibula, init encntr for fracture|Pathological fracture, left fibula, init encntr for fracture +C2901046|T046|PT|M84.464A|ICD10CM|Pathological fracture, left fibula, initial encounter for fracture|Pathological fracture, left fibula, initial encounter for fracture +C2901047|T046|AB|M84.464D|ICD10CM|Pathological fracture, left fibula, subs for fx w routn heal|Pathological fracture, left fibula, subs for fx w routn heal +C2901047|T046|PT|M84.464D|ICD10CM|Pathological fracture, left fibula, subsequent encounter for fracture with routine healing|Pathological fracture, left fibula, subsequent encounter for fracture with routine healing +C2901048|T046|AB|M84.464G|ICD10CM|Pathological fracture, left fibula, subs for fx w delay heal|Pathological fracture, left fibula, subs for fx w delay heal +C2901048|T046|PT|M84.464G|ICD10CM|Pathological fracture, left fibula, subsequent encounter for fracture with delayed healing|Pathological fracture, left fibula, subsequent encounter for fracture with delayed healing +C2901049|T046|AB|M84.464K|ICD10CM|Pathological fracture, left fibula, subs for fx w nonunion|Pathological fracture, left fibula, subs for fx w nonunion +C2901049|T046|PT|M84.464K|ICD10CM|Pathological fracture, left fibula, subsequent encounter for fracture with nonunion|Pathological fracture, left fibula, subsequent encounter for fracture with nonunion +C2901050|T046|AB|M84.464P|ICD10CM|Pathological fracture, left fibula, subs for fx w malunion|Pathological fracture, left fibula, subs for fx w malunion +C2901050|T046|PT|M84.464P|ICD10CM|Pathological fracture, left fibula, subsequent encounter for fracture with malunion|Pathological fracture, left fibula, subsequent encounter for fracture with malunion +C2901051|T046|PT|M84.464S|ICD10CM|Pathological fracture, left fibula, sequela|Pathological fracture, left fibula, sequela +C2901051|T046|AB|M84.464S|ICD10CM|Pathological fracture, left fibula, sequela|Pathological fracture, left fibula, sequela +C2901052|T046|AB|M84.469|ICD10CM|Pathological fracture, unspecified tibia and fibula|Pathological fracture, unspecified tibia and fibula +C2901052|T046|HT|M84.469|ICD10CM|Pathological fracture, unspecified tibia and fibula|Pathological fracture, unspecified tibia and fibula +C2901053|T046|AB|M84.469A|ICD10CM|Pathological fracture, unsp tibia and fibula, init for fx|Pathological fracture, unsp tibia and fibula, init for fx +C2901053|T046|PT|M84.469A|ICD10CM|Pathological fracture, unspecified tibia and fibula, initial encounter for fracture|Pathological fracture, unspecified tibia and fibula, initial encounter for fracture +C2901054|T046|AB|M84.469D|ICD10CM|Path fx, unsp tibia and fibula, subs for fx w routn heal|Path fx, unsp tibia and fibula, subs for fx w routn heal +C2901055|T046|AB|M84.469G|ICD10CM|Path fx, unsp tibia and fibula, subs for fx w delay heal|Path fx, unsp tibia and fibula, subs for fx w delay heal +C2901056|T046|AB|M84.469K|ICD10CM|Path fracture, unsp tibia and fibula, subs for fx w nonunion|Path fracture, unsp tibia and fibula, subs for fx w nonunion +C2901056|T046|PT|M84.469K|ICD10CM|Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with nonunion|Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with nonunion +C2901057|T046|AB|M84.469P|ICD10CM|Path fracture, unsp tibia and fibula, subs for fx w malunion|Path fracture, unsp tibia and fibula, subs for fx w malunion +C2901057|T046|PT|M84.469P|ICD10CM|Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with malunion|Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with malunion +C2901058|T046|AB|M84.469S|ICD10CM|Pathological fracture, unspecified tibia and fibula, sequela|Pathological fracture, unspecified tibia and fibula, sequela +C2901058|T046|PT|M84.469S|ICD10CM|Pathological fracture, unspecified tibia and fibula, sequela|Pathological fracture, unspecified tibia and fibula, sequela +C2901059|T046|AB|M84.47|ICD10CM|Pathological fracture, ankle, foot and toes|Pathological fracture, ankle, foot and toes +C2901059|T046|HT|M84.47|ICD10CM|Pathological fracture, ankle, foot and toes|Pathological fracture, ankle, foot and toes +C2901060|T046|AB|M84.471|ICD10CM|Pathological fracture, right ankle|Pathological fracture, right ankle +C2901060|T046|HT|M84.471|ICD10CM|Pathological fracture, right ankle|Pathological fracture, right ankle +C2901061|T046|AB|M84.471A|ICD10CM|Pathological fracture, right ankle, init encntr for fracture|Pathological fracture, right ankle, init encntr for fracture +C2901061|T046|PT|M84.471A|ICD10CM|Pathological fracture, right ankle, initial encounter for fracture|Pathological fracture, right ankle, initial encounter for fracture +C2901062|T046|AB|M84.471D|ICD10CM|Pathological fracture, right ankle, subs for fx w routn heal|Pathological fracture, right ankle, subs for fx w routn heal +C2901062|T046|PT|M84.471D|ICD10CM|Pathological fracture, right ankle, subsequent encounter for fracture with routine healing|Pathological fracture, right ankle, subsequent encounter for fracture with routine healing +C2901063|T046|AB|M84.471G|ICD10CM|Pathological fracture, right ankle, subs for fx w delay heal|Pathological fracture, right ankle, subs for fx w delay heal +C2901063|T046|PT|M84.471G|ICD10CM|Pathological fracture, right ankle, subsequent encounter for fracture with delayed healing|Pathological fracture, right ankle, subsequent encounter for fracture with delayed healing +C2901064|T046|AB|M84.471K|ICD10CM|Pathological fracture, right ankle, subs for fx w nonunion|Pathological fracture, right ankle, subs for fx w nonunion +C2901064|T046|PT|M84.471K|ICD10CM|Pathological fracture, right ankle, subsequent encounter for fracture with nonunion|Pathological fracture, right ankle, subsequent encounter for fracture with nonunion +C2901065|T046|AB|M84.471P|ICD10CM|Pathological fracture, right ankle, subs for fx w malunion|Pathological fracture, right ankle, subs for fx w malunion +C2901065|T046|PT|M84.471P|ICD10CM|Pathological fracture, right ankle, subsequent encounter for fracture with malunion|Pathological fracture, right ankle, subsequent encounter for fracture with malunion +C2901066|T046|PT|M84.471S|ICD10CM|Pathological fracture, right ankle, sequela|Pathological fracture, right ankle, sequela +C2901066|T046|AB|M84.471S|ICD10CM|Pathological fracture, right ankle, sequela|Pathological fracture, right ankle, sequela +C2901067|T046|AB|M84.472|ICD10CM|Pathological fracture, left ankle|Pathological fracture, left ankle +C2901067|T046|HT|M84.472|ICD10CM|Pathological fracture, left ankle|Pathological fracture, left ankle +C2901068|T046|AB|M84.472A|ICD10CM|Pathological fracture, left ankle, init encntr for fracture|Pathological fracture, left ankle, init encntr for fracture +C2901068|T046|PT|M84.472A|ICD10CM|Pathological fracture, left ankle, initial encounter for fracture|Pathological fracture, left ankle, initial encounter for fracture +C2901069|T046|AB|M84.472D|ICD10CM|Pathological fracture, left ankle, subs for fx w routn heal|Pathological fracture, left ankle, subs for fx w routn heal +C2901069|T046|PT|M84.472D|ICD10CM|Pathological fracture, left ankle, subsequent encounter for fracture with routine healing|Pathological fracture, left ankle, subsequent encounter for fracture with routine healing +C2901070|T046|AB|M84.472G|ICD10CM|Pathological fracture, left ankle, subs for fx w delay heal|Pathological fracture, left ankle, subs for fx w delay heal +C2901070|T046|PT|M84.472G|ICD10CM|Pathological fracture, left ankle, subsequent encounter for fracture with delayed healing|Pathological fracture, left ankle, subsequent encounter for fracture with delayed healing +C2901071|T046|AB|M84.472K|ICD10CM|Pathological fracture, left ankle, subs for fx w nonunion|Pathological fracture, left ankle, subs for fx w nonunion +C2901071|T046|PT|M84.472K|ICD10CM|Pathological fracture, left ankle, subsequent encounter for fracture with nonunion|Pathological fracture, left ankle, subsequent encounter for fracture with nonunion +C2901072|T046|AB|M84.472P|ICD10CM|Pathological fracture, left ankle, subs for fx w malunion|Pathological fracture, left ankle, subs for fx w malunion +C2901072|T046|PT|M84.472P|ICD10CM|Pathological fracture, left ankle, subsequent encounter for fracture with malunion|Pathological fracture, left ankle, subsequent encounter for fracture with malunion +C2901073|T046|PT|M84.472S|ICD10CM|Pathological fracture, left ankle, sequela|Pathological fracture, left ankle, sequela +C2901073|T046|AB|M84.472S|ICD10CM|Pathological fracture, left ankle, sequela|Pathological fracture, left ankle, sequela +C2901074|T046|AB|M84.473|ICD10CM|Pathological fracture, unspecified ankle|Pathological fracture, unspecified ankle +C2901074|T046|HT|M84.473|ICD10CM|Pathological fracture, unspecified ankle|Pathological fracture, unspecified ankle +C2901075|T046|AB|M84.473A|ICD10CM|Pathological fracture, unsp ankle, init encntr for fracture|Pathological fracture, unsp ankle, init encntr for fracture +C2901075|T046|PT|M84.473A|ICD10CM|Pathological fracture, unspecified ankle, initial encounter for fracture|Pathological fracture, unspecified ankle, initial encounter for fracture +C2901076|T046|AB|M84.473D|ICD10CM|Pathological fracture, unsp ankle, subs for fx w routn heal|Pathological fracture, unsp ankle, subs for fx w routn heal +C2901076|T046|PT|M84.473D|ICD10CM|Pathological fracture, unspecified ankle, subsequent encounter for fracture with routine healing|Pathological fracture, unspecified ankle, subsequent encounter for fracture with routine healing +C2901077|T046|AB|M84.473G|ICD10CM|Pathological fracture, unsp ankle, subs for fx w delay heal|Pathological fracture, unsp ankle, subs for fx w delay heal +C2901077|T046|PT|M84.473G|ICD10CM|Pathological fracture, unspecified ankle, subsequent encounter for fracture with delayed healing|Pathological fracture, unspecified ankle, subsequent encounter for fracture with delayed healing +C2901078|T046|AB|M84.473K|ICD10CM|Pathological fracture, unsp ankle, subs for fx w nonunion|Pathological fracture, unsp ankle, subs for fx w nonunion +C2901078|T046|PT|M84.473K|ICD10CM|Pathological fracture, unspecified ankle, subsequent encounter for fracture with nonunion|Pathological fracture, unspecified ankle, subsequent encounter for fracture with nonunion +C2901079|T046|AB|M84.473P|ICD10CM|Pathological fracture, unsp ankle, subs for fx w malunion|Pathological fracture, unsp ankle, subs for fx w malunion +C2901079|T046|PT|M84.473P|ICD10CM|Pathological fracture, unspecified ankle, subsequent encounter for fracture with malunion|Pathological fracture, unspecified ankle, subsequent encounter for fracture with malunion +C2901080|T046|PT|M84.473S|ICD10CM|Pathological fracture, unspecified ankle, sequela|Pathological fracture, unspecified ankle, sequela +C2901080|T046|AB|M84.473S|ICD10CM|Pathological fracture, unspecified ankle, sequela|Pathological fracture, unspecified ankle, sequela +C2901081|T046|AB|M84.474|ICD10CM|Pathological fracture, right foot|Pathological fracture, right foot +C2901081|T046|HT|M84.474|ICD10CM|Pathological fracture, right foot|Pathological fracture, right foot +C2901082|T046|AB|M84.474A|ICD10CM|Pathological fracture, right foot, init encntr for fracture|Pathological fracture, right foot, init encntr for fracture +C2901082|T046|PT|M84.474A|ICD10CM|Pathological fracture, right foot, initial encounter for fracture|Pathological fracture, right foot, initial encounter for fracture +C2901083|T046|AB|M84.474D|ICD10CM|Pathological fracture, right foot, subs for fx w routn heal|Pathological fracture, right foot, subs for fx w routn heal +C2901083|T046|PT|M84.474D|ICD10CM|Pathological fracture, right foot, subsequent encounter for fracture with routine healing|Pathological fracture, right foot, subsequent encounter for fracture with routine healing +C2901084|T046|AB|M84.474G|ICD10CM|Pathological fracture, right foot, subs for fx w delay heal|Pathological fracture, right foot, subs for fx w delay heal +C2901084|T046|PT|M84.474G|ICD10CM|Pathological fracture, right foot, subsequent encounter for fracture with delayed healing|Pathological fracture, right foot, subsequent encounter for fracture with delayed healing +C2901085|T046|AB|M84.474K|ICD10CM|Pathological fracture, right foot, subs for fx w nonunion|Pathological fracture, right foot, subs for fx w nonunion +C2901085|T046|PT|M84.474K|ICD10CM|Pathological fracture, right foot, subsequent encounter for fracture with nonunion|Pathological fracture, right foot, subsequent encounter for fracture with nonunion +C2901086|T046|AB|M84.474P|ICD10CM|Pathological fracture, right foot, subs for fx w malunion|Pathological fracture, right foot, subs for fx w malunion +C2901086|T046|PT|M84.474P|ICD10CM|Pathological fracture, right foot, subsequent encounter for fracture with malunion|Pathological fracture, right foot, subsequent encounter for fracture with malunion +C2901087|T046|PT|M84.474S|ICD10CM|Pathological fracture, right foot, sequela|Pathological fracture, right foot, sequela +C2901087|T046|AB|M84.474S|ICD10CM|Pathological fracture, right foot, sequela|Pathological fracture, right foot, sequela +C2901088|T046|AB|M84.475|ICD10CM|Pathological fracture, left foot|Pathological fracture, left foot +C2901088|T046|HT|M84.475|ICD10CM|Pathological fracture, left foot|Pathological fracture, left foot +C2901089|T046|AB|M84.475A|ICD10CM|Pathological fracture, left foot, init encntr for fracture|Pathological fracture, left foot, init encntr for fracture +C2901089|T046|PT|M84.475A|ICD10CM|Pathological fracture, left foot, initial encounter for fracture|Pathological fracture, left foot, initial encounter for fracture +C2901090|T046|AB|M84.475D|ICD10CM|Pathological fracture, left foot, subs for fx w routn heal|Pathological fracture, left foot, subs for fx w routn heal +C2901090|T046|PT|M84.475D|ICD10CM|Pathological fracture, left foot, subsequent encounter for fracture with routine healing|Pathological fracture, left foot, subsequent encounter for fracture with routine healing +C2901091|T046|AB|M84.475G|ICD10CM|Pathological fracture, left foot, subs for fx w delay heal|Pathological fracture, left foot, subs for fx w delay heal +C2901091|T046|PT|M84.475G|ICD10CM|Pathological fracture, left foot, subsequent encounter for fracture with delayed healing|Pathological fracture, left foot, subsequent encounter for fracture with delayed healing +C2901092|T046|AB|M84.475K|ICD10CM|Pathological fracture, left foot, subs for fx w nonunion|Pathological fracture, left foot, subs for fx w nonunion +C2901092|T046|PT|M84.475K|ICD10CM|Pathological fracture, left foot, subsequent encounter for fracture with nonunion|Pathological fracture, left foot, subsequent encounter for fracture with nonunion +C2901093|T046|AB|M84.475P|ICD10CM|Pathological fracture, left foot, subs for fx w malunion|Pathological fracture, left foot, subs for fx w malunion +C2901093|T046|PT|M84.475P|ICD10CM|Pathological fracture, left foot, subsequent encounter for fracture with malunion|Pathological fracture, left foot, subsequent encounter for fracture with malunion +C2901094|T046|PT|M84.475S|ICD10CM|Pathological fracture, left foot, sequela|Pathological fracture, left foot, sequela +C2901094|T046|AB|M84.475S|ICD10CM|Pathological fracture, left foot, sequela|Pathological fracture, left foot, sequela +C2901095|T046|AB|M84.476|ICD10CM|Pathological fracture, unspecified foot|Pathological fracture, unspecified foot +C2901095|T046|HT|M84.476|ICD10CM|Pathological fracture, unspecified foot|Pathological fracture, unspecified foot +C2901096|T046|AB|M84.476A|ICD10CM|Pathological fracture, unsp foot, init encntr for fracture|Pathological fracture, unsp foot, init encntr for fracture +C2901096|T046|PT|M84.476A|ICD10CM|Pathological fracture, unspecified foot, initial encounter for fracture|Pathological fracture, unspecified foot, initial encounter for fracture +C2901097|T046|AB|M84.476D|ICD10CM|Pathological fracture, unsp foot, subs for fx w routn heal|Pathological fracture, unsp foot, subs for fx w routn heal +C2901097|T046|PT|M84.476D|ICD10CM|Pathological fracture, unspecified foot, subsequent encounter for fracture with routine healing|Pathological fracture, unspecified foot, subsequent encounter for fracture with routine healing +C2901098|T046|AB|M84.476G|ICD10CM|Pathological fracture, unsp foot, subs for fx w delay heal|Pathological fracture, unsp foot, subs for fx w delay heal +C2901098|T046|PT|M84.476G|ICD10CM|Pathological fracture, unspecified foot, subsequent encounter for fracture with delayed healing|Pathological fracture, unspecified foot, subsequent encounter for fracture with delayed healing +C2901099|T046|AB|M84.476K|ICD10CM|Pathological fracture, unsp foot, subs for fx w nonunion|Pathological fracture, unsp foot, subs for fx w nonunion +C2901099|T046|PT|M84.476K|ICD10CM|Pathological fracture, unspecified foot, subsequent encounter for fracture with nonunion|Pathological fracture, unspecified foot, subsequent encounter for fracture with nonunion +C2901100|T046|AB|M84.476P|ICD10CM|Pathological fracture, unsp foot, subs for fx w malunion|Pathological fracture, unsp foot, subs for fx w malunion +C2901100|T046|PT|M84.476P|ICD10CM|Pathological fracture, unspecified foot, subsequent encounter for fracture with malunion|Pathological fracture, unspecified foot, subsequent encounter for fracture with malunion +C2901101|T046|PT|M84.476S|ICD10CM|Pathological fracture, unspecified foot, sequela|Pathological fracture, unspecified foot, sequela +C2901101|T046|AB|M84.476S|ICD10CM|Pathological fracture, unspecified foot, sequela|Pathological fracture, unspecified foot, sequela +C2901102|T046|AB|M84.477|ICD10CM|Pathological fracture, right toe(s)|Pathological fracture, right toe(s) +C2901102|T046|HT|M84.477|ICD10CM|Pathological fracture, right toe(s)|Pathological fracture, right toe(s) +C2901103|T046|AB|M84.477A|ICD10CM|Pathological fracture, right toe(s), init for fx|Pathological fracture, right toe(s), init for fx +C2901103|T046|PT|M84.477A|ICD10CM|Pathological fracture, right toe(s), initial encounter for fracture|Pathological fracture, right toe(s), initial encounter for fracture +C2901104|T046|AB|M84.477D|ICD10CM|Path fracture, right toe(s), subs for fx w routn heal|Path fracture, right toe(s), subs for fx w routn heal +C2901104|T046|PT|M84.477D|ICD10CM|Pathological fracture, right toe(s), subsequent encounter for fracture with routine healing|Pathological fracture, right toe(s), subsequent encounter for fracture with routine healing +C2901105|T046|AB|M84.477G|ICD10CM|Path fracture, right toe(s), subs for fx w delay heal|Path fracture, right toe(s), subs for fx w delay heal +C2901105|T046|PT|M84.477G|ICD10CM|Pathological fracture, right toe(s), subsequent encounter for fracture with delayed healing|Pathological fracture, right toe(s), subsequent encounter for fracture with delayed healing +C2901106|T046|AB|M84.477K|ICD10CM|Pathological fracture, right toe(s), subs for fx w nonunion|Pathological fracture, right toe(s), subs for fx w nonunion +C2901106|T046|PT|M84.477K|ICD10CM|Pathological fracture, right toe(s), subsequent encounter for fracture with nonunion|Pathological fracture, right toe(s), subsequent encounter for fracture with nonunion +C2901107|T046|AB|M84.477P|ICD10CM|Pathological fracture, right toe(s), subs for fx w malunion|Pathological fracture, right toe(s), subs for fx w malunion +C2901107|T046|PT|M84.477P|ICD10CM|Pathological fracture, right toe(s), subsequent encounter for fracture with malunion|Pathological fracture, right toe(s), subsequent encounter for fracture with malunion +C2901108|T046|PT|M84.477S|ICD10CM|Pathological fracture, right toe(s), sequela|Pathological fracture, right toe(s), sequela +C2901108|T046|AB|M84.477S|ICD10CM|Pathological fracture, right toe(s), sequela|Pathological fracture, right toe(s), sequela +C2901109|T046|AB|M84.478|ICD10CM|Pathological fracture, left toe(s)|Pathological fracture, left toe(s) +C2901109|T046|HT|M84.478|ICD10CM|Pathological fracture, left toe(s)|Pathological fracture, left toe(s) +C2901110|T046|AB|M84.478A|ICD10CM|Pathological fracture, left toe(s), init encntr for fracture|Pathological fracture, left toe(s), init encntr for fracture +C2901110|T046|PT|M84.478A|ICD10CM|Pathological fracture, left toe(s), initial encounter for fracture|Pathological fracture, left toe(s), initial encounter for fracture +C2901111|T046|AB|M84.478D|ICD10CM|Pathological fracture, left toe(s), subs for fx w routn heal|Pathological fracture, left toe(s), subs for fx w routn heal +C2901111|T046|PT|M84.478D|ICD10CM|Pathological fracture, left toe(s), subsequent encounter for fracture with routine healing|Pathological fracture, left toe(s), subsequent encounter for fracture with routine healing +C2901112|T046|AB|M84.478G|ICD10CM|Pathological fracture, left toe(s), subs for fx w delay heal|Pathological fracture, left toe(s), subs for fx w delay heal +C2901112|T046|PT|M84.478G|ICD10CM|Pathological fracture, left toe(s), subsequent encounter for fracture with delayed healing|Pathological fracture, left toe(s), subsequent encounter for fracture with delayed healing +C2901113|T046|AB|M84.478K|ICD10CM|Pathological fracture, left toe(s), subs for fx w nonunion|Pathological fracture, left toe(s), subs for fx w nonunion +C2901113|T046|PT|M84.478K|ICD10CM|Pathological fracture, left toe(s), subsequent encounter for fracture with nonunion|Pathological fracture, left toe(s), subsequent encounter for fracture with nonunion +C2901114|T046|AB|M84.478P|ICD10CM|Pathological fracture, left toe(s), subs for fx w malunion|Pathological fracture, left toe(s), subs for fx w malunion +C2901114|T046|PT|M84.478P|ICD10CM|Pathological fracture, left toe(s), subsequent encounter for fracture with malunion|Pathological fracture, left toe(s), subsequent encounter for fracture with malunion +C2901115|T046|PT|M84.478S|ICD10CM|Pathological fracture, left toe(s), sequela|Pathological fracture, left toe(s), sequela +C2901115|T046|AB|M84.478S|ICD10CM|Pathological fracture, left toe(s), sequela|Pathological fracture, left toe(s), sequela +C2901116|T046|AB|M84.479|ICD10CM|Pathological fracture, unspecified toe(s)|Pathological fracture, unspecified toe(s) +C2901116|T046|HT|M84.479|ICD10CM|Pathological fracture, unspecified toe(s)|Pathological fracture, unspecified toe(s) +C2901117|T046|AB|M84.479A|ICD10CM|Pathological fracture, unsp toe(s), init encntr for fracture|Pathological fracture, unsp toe(s), init encntr for fracture +C2901117|T046|PT|M84.479A|ICD10CM|Pathological fracture, unspecified toe(s), initial encounter for fracture|Pathological fracture, unspecified toe(s), initial encounter for fracture +C2901118|T046|AB|M84.479D|ICD10CM|Pathological fracture, unsp toe(s), subs for fx w routn heal|Pathological fracture, unsp toe(s), subs for fx w routn heal +C2901118|T046|PT|M84.479D|ICD10CM|Pathological fracture, unspecified toe(s), subsequent encounter for fracture with routine healing|Pathological fracture, unspecified toe(s), subsequent encounter for fracture with routine healing +C2901119|T046|AB|M84.479G|ICD10CM|Pathological fracture, unsp toe(s), subs for fx w delay heal|Pathological fracture, unsp toe(s), subs for fx w delay heal +C2901119|T046|PT|M84.479G|ICD10CM|Pathological fracture, unspecified toe(s), subsequent encounter for fracture with delayed healing|Pathological fracture, unspecified toe(s), subsequent encounter for fracture with delayed healing +C2901120|T046|AB|M84.479K|ICD10CM|Pathological fracture, unsp toe(s), subs for fx w nonunion|Pathological fracture, unsp toe(s), subs for fx w nonunion +C2901120|T046|PT|M84.479K|ICD10CM|Pathological fracture, unspecified toe(s), subsequent encounter for fracture with nonunion|Pathological fracture, unspecified toe(s), subsequent encounter for fracture with nonunion +C2901121|T046|AB|M84.479P|ICD10CM|Pathological fracture, unsp toe(s), subs for fx w malunion|Pathological fracture, unsp toe(s), subs for fx w malunion +C2901121|T046|PT|M84.479P|ICD10CM|Pathological fracture, unspecified toe(s), subsequent encounter for fracture with malunion|Pathological fracture, unspecified toe(s), subsequent encounter for fracture with malunion +C2901122|T046|PT|M84.479S|ICD10CM|Pathological fracture, unspecified toe(s), sequela|Pathological fracture, unspecified toe(s), sequela +C2901122|T046|AB|M84.479S|ICD10CM|Pathological fracture, unspecified toe(s), sequela|Pathological fracture, unspecified toe(s), sequela +C2901123|T046|AB|M84.48|ICD10CM|Pathological fracture, other site|Pathological fracture, other site +C2901123|T046|HT|M84.48|ICD10CM|Pathological fracture, other site|Pathological fracture, other site +C2901124|T046|AB|M84.48XA|ICD10CM|Pathological fracture, other site, init encntr for fracture|Pathological fracture, other site, init encntr for fracture +C2901124|T046|PT|M84.48XA|ICD10CM|Pathological fracture, other site, initial encounter for fracture|Pathological fracture, other site, initial encounter for fracture +C2901125|T046|AB|M84.48XD|ICD10CM|Pathological fracture, oth site, subs for fx w routn heal|Pathological fracture, oth site, subs for fx w routn heal +C2901125|T046|PT|M84.48XD|ICD10CM|Pathological fracture, other site, subsequent encounter for fracture with routine healing|Pathological fracture, other site, subsequent encounter for fracture with routine healing +C2901126|T046|AB|M84.48XG|ICD10CM|Pathological fracture, oth site, subs for fx w delay heal|Pathological fracture, oth site, subs for fx w delay heal +C2901126|T046|PT|M84.48XG|ICD10CM|Pathological fracture, other site, subsequent encounter for fracture with delayed healing|Pathological fracture, other site, subsequent encounter for fracture with delayed healing +C2901127|T046|AB|M84.48XK|ICD10CM|Pathological fracture, oth site, subs for fx w nonunion|Pathological fracture, oth site, subs for fx w nonunion +C2901127|T046|PT|M84.48XK|ICD10CM|Pathological fracture, other site, subsequent encounter for fracture with nonunion|Pathological fracture, other site, subsequent encounter for fracture with nonunion +C2901128|T046|AB|M84.48XP|ICD10CM|Pathological fracture, oth site, subs for fx w malunion|Pathological fracture, oth site, subs for fx w malunion +C2901128|T046|PT|M84.48XP|ICD10CM|Pathological fracture, other site, subsequent encounter for fracture with malunion|Pathological fracture, other site, subsequent encounter for fracture with malunion +C2901129|T046|PT|M84.48XS|ICD10CM|Pathological fracture, other site, sequela|Pathological fracture, other site, sequela +C2901129|T046|AB|M84.48XS|ICD10CM|Pathological fracture, other site, sequela|Pathological fracture, other site, sequela +C2901130|T046|AB|M84.5|ICD10CM|Pathological fracture in neoplastic disease|Pathological fracture in neoplastic disease +C2901130|T046|HT|M84.5|ICD10CM|Pathological fracture in neoplastic disease|Pathological fracture in neoplastic disease +C2901131|T046|AB|M84.50|ICD10CM|Pathological fracture in neoplastic disease, unsp site|Pathological fracture in neoplastic disease, unsp site +C2901131|T046|HT|M84.50|ICD10CM|Pathological fracture in neoplastic disease, unspecified site|Pathological fracture in neoplastic disease, unspecified site +C2901132|T046|AB|M84.50XA|ICD10CM|Pathological fracture in neoplastic disease, unsp site, init|Pathological fracture in neoplastic disease, unsp site, init +C2901132|T046|PT|M84.50XA|ICD10CM|Pathological fracture in neoplastic disease, unspecified site, initial encounter for fracture|Pathological fracture in neoplastic disease, unspecified site, initial encounter for fracture +C2901133|T046|AB|M84.50XD|ICD10CM|Path fx in neopltc dis, unsp site, subs for fx w routn heal|Path fx in neopltc dis, unsp site, subs for fx w routn heal +C2901134|T046|AB|M84.50XG|ICD10CM|Path fx in neopltc dis, unsp site, subs for fx w delay heal|Path fx in neopltc dis, unsp site, subs for fx w delay heal +C2901135|T046|AB|M84.50XK|ICD10CM|Path fx in neopltc dis, unsp site, subs for fx w nonunion|Path fx in neopltc dis, unsp site, subs for fx w nonunion +C2901136|T046|AB|M84.50XP|ICD10CM|Path fx in neopltc dis, unsp site, subs for fx w malunion|Path fx in neopltc dis, unsp site, subs for fx w malunion +C2901137|T046|AB|M84.50XS|ICD10CM|Path fracture in neoplastic disease, unsp site, sequela|Path fracture in neoplastic disease, unsp site, sequela +C2901137|T046|PT|M84.50XS|ICD10CM|Pathological fracture in neoplastic disease, unspecified site, sequela|Pathological fracture in neoplastic disease, unspecified site, sequela +C2901138|T046|AB|M84.51|ICD10CM|Pathological fracture in neoplastic disease, shoulder|Pathological fracture in neoplastic disease, shoulder +C2901138|T046|HT|M84.51|ICD10CM|Pathological fracture in neoplastic disease, shoulder|Pathological fracture in neoplastic disease, shoulder +C2901139|T046|AB|M84.511|ICD10CM|Pathological fracture in neoplastic disease, right shoulder|Pathological fracture in neoplastic disease, right shoulder +C2901139|T046|HT|M84.511|ICD10CM|Pathological fracture in neoplastic disease, right shoulder|Pathological fracture in neoplastic disease, right shoulder +C2901140|T046|AB|M84.511A|ICD10CM|Path fracture in neoplastic disease, r shoulder, init|Path fracture in neoplastic disease, r shoulder, init +C2901140|T046|PT|M84.511A|ICD10CM|Pathological fracture in neoplastic disease, right shoulder, initial encounter for fracture|Pathological fracture in neoplastic disease, right shoulder, initial encounter for fracture +C2901141|T046|AB|M84.511D|ICD10CM|Path fx in neopltc dis, r shldr, subs for fx w routn heal|Path fx in neopltc dis, r shldr, subs for fx w routn heal +C2901142|T046|AB|M84.511G|ICD10CM|Path fx in neopltc dis, r shldr, subs for fx w delay heal|Path fx in neopltc dis, r shldr, subs for fx w delay heal +C2901143|T046|AB|M84.511K|ICD10CM|Path fx in neopltc disease, r shldr, subs for fx w nonunion|Path fx in neopltc disease, r shldr, subs for fx w nonunion +C2901144|T046|AB|M84.511P|ICD10CM|Path fx in neopltc disease, r shldr, subs for fx w malunion|Path fx in neopltc disease, r shldr, subs for fx w malunion +C2901145|T046|AB|M84.511S|ICD10CM|Path fracture in neoplastic disease, r shoulder, sequela|Path fracture in neoplastic disease, r shoulder, sequela +C2901145|T046|PT|M84.511S|ICD10CM|Pathological fracture in neoplastic disease, right shoulder, sequela|Pathological fracture in neoplastic disease, right shoulder, sequela +C2901146|T046|AB|M84.512|ICD10CM|Pathological fracture in neoplastic disease, left shoulder|Pathological fracture in neoplastic disease, left shoulder +C2901146|T046|HT|M84.512|ICD10CM|Pathological fracture in neoplastic disease, left shoulder|Pathological fracture in neoplastic disease, left shoulder +C2901147|T046|AB|M84.512A|ICD10CM|Path fracture in neoplastic disease, l shoulder, init|Path fracture in neoplastic disease, l shoulder, init +C2901147|T046|PT|M84.512A|ICD10CM|Pathological fracture in neoplastic disease, left shoulder, initial encounter for fracture|Pathological fracture in neoplastic disease, left shoulder, initial encounter for fracture +C2901148|T046|AB|M84.512D|ICD10CM|Path fx in neopltc dis, l shldr, subs for fx w routn heal|Path fx in neopltc dis, l shldr, subs for fx w routn heal +C2901149|T046|AB|M84.512G|ICD10CM|Path fx in neopltc dis, l shldr, subs for fx w delay heal|Path fx in neopltc dis, l shldr, subs for fx w delay heal +C2901150|T046|AB|M84.512K|ICD10CM|Path fx in neopltc disease, l shldr, subs for fx w nonunion|Path fx in neopltc disease, l shldr, subs for fx w nonunion +C2901151|T046|AB|M84.512P|ICD10CM|Path fx in neopltc disease, l shldr, subs for fx w malunion|Path fx in neopltc disease, l shldr, subs for fx w malunion +C2901152|T046|AB|M84.512S|ICD10CM|Path fracture in neoplastic disease, l shoulder, sequela|Path fracture in neoplastic disease, l shoulder, sequela +C2901152|T046|PT|M84.512S|ICD10CM|Pathological fracture in neoplastic disease, left shoulder, sequela|Pathological fracture in neoplastic disease, left shoulder, sequela +C2901153|T046|AB|M84.519|ICD10CM|Pathological fracture in neoplastic disease, unsp shoulder|Pathological fracture in neoplastic disease, unsp shoulder +C2901153|T046|HT|M84.519|ICD10CM|Pathological fracture in neoplastic disease, unspecified shoulder|Pathological fracture in neoplastic disease, unspecified shoulder +C2901154|T046|AB|M84.519A|ICD10CM|Path fracture in neoplastic disease, unsp shoulder, init|Path fracture in neoplastic disease, unsp shoulder, init +C2901154|T046|PT|M84.519A|ICD10CM|Pathological fracture in neoplastic disease, unspecified shoulder, initial encounter for fracture|Pathological fracture in neoplastic disease, unspecified shoulder, initial encounter for fracture +C2901155|T046|AB|M84.519D|ICD10CM|Path fx in neopltc dis, unsp shldr, subs for fx w routn heal|Path fx in neopltc dis, unsp shldr, subs for fx w routn heal +C2901156|T046|AB|M84.519G|ICD10CM|Path fx in neopltc dis, unsp shldr, subs for fx w delay heal|Path fx in neopltc dis, unsp shldr, subs for fx w delay heal +C2901157|T046|AB|M84.519K|ICD10CM|Path fx in neopltc dis, unsp shldr, subs for fx w nonunion|Path fx in neopltc dis, unsp shldr, subs for fx w nonunion +C2901158|T046|AB|M84.519P|ICD10CM|Path fx in neopltc dis, unsp shldr, subs for fx w malunion|Path fx in neopltc dis, unsp shldr, subs for fx w malunion +C2901159|T046|AB|M84.519S|ICD10CM|Path fracture in neoplastic disease, unsp shoulder, sequela|Path fracture in neoplastic disease, unsp shoulder, sequela +C2901159|T046|PT|M84.519S|ICD10CM|Pathological fracture in neoplastic disease, unspecified shoulder, sequela|Pathological fracture in neoplastic disease, unspecified shoulder, sequela +C2901160|T046|AB|M84.52|ICD10CM|Pathological fracture in neoplastic disease, humerus|Pathological fracture in neoplastic disease, humerus +C2901160|T046|HT|M84.52|ICD10CM|Pathological fracture in neoplastic disease, humerus|Pathological fracture in neoplastic disease, humerus +C2901161|T046|AB|M84.521|ICD10CM|Pathological fracture in neoplastic disease, right humerus|Pathological fracture in neoplastic disease, right humerus +C2901161|T046|HT|M84.521|ICD10CM|Pathological fracture in neoplastic disease, right humerus|Pathological fracture in neoplastic disease, right humerus +C2901162|T046|AB|M84.521A|ICD10CM|Pathological fracture in neoplastic disease, r humerus, init|Pathological fracture in neoplastic disease, r humerus, init +C2901162|T046|PT|M84.521A|ICD10CM|Pathological fracture in neoplastic disease, right humerus, initial encounter for fracture|Pathological fracture in neoplastic disease, right humerus, initial encounter for fracture +C2901163|T046|AB|M84.521D|ICD10CM|Path fx in neopltc dis, r humerus, subs for fx w routn heal|Path fx in neopltc dis, r humerus, subs for fx w routn heal +C2901164|T046|AB|M84.521G|ICD10CM|Path fx in neopltc dis, r humerus, subs for fx w delay heal|Path fx in neopltc dis, r humerus, subs for fx w delay heal +C2901165|T046|AB|M84.521K|ICD10CM|Path fx in neopltc dis, r humerus, subs for fx w nonunion|Path fx in neopltc dis, r humerus, subs for fx w nonunion +C2901166|T046|AB|M84.521P|ICD10CM|Path fx in neopltc dis, r humerus, subs for fx w malunion|Path fx in neopltc dis, r humerus, subs for fx w malunion +C2901167|T046|AB|M84.521S|ICD10CM|Path fracture in neoplastic disease, r humerus, sequela|Path fracture in neoplastic disease, r humerus, sequela +C2901167|T046|PT|M84.521S|ICD10CM|Pathological fracture in neoplastic disease, right humerus, sequela|Pathological fracture in neoplastic disease, right humerus, sequela +C2901168|T046|AB|M84.522|ICD10CM|Pathological fracture in neoplastic disease, left humerus|Pathological fracture in neoplastic disease, left humerus +C2901168|T046|HT|M84.522|ICD10CM|Pathological fracture in neoplastic disease, left humerus|Pathological fracture in neoplastic disease, left humerus +C2901169|T046|AB|M84.522A|ICD10CM|Pathological fracture in neoplastic disease, l humerus, init|Pathological fracture in neoplastic disease, l humerus, init +C2901169|T046|PT|M84.522A|ICD10CM|Pathological fracture in neoplastic disease, left humerus, initial encounter for fracture|Pathological fracture in neoplastic disease, left humerus, initial encounter for fracture +C2901170|T046|AB|M84.522D|ICD10CM|Path fx in neopltc dis, l humerus, subs for fx w routn heal|Path fx in neopltc dis, l humerus, subs for fx w routn heal +C2901171|T046|AB|M84.522G|ICD10CM|Path fx in neopltc dis, l humerus, subs for fx w delay heal|Path fx in neopltc dis, l humerus, subs for fx w delay heal +C2901172|T046|AB|M84.522K|ICD10CM|Path fx in neopltc dis, l humerus, subs for fx w nonunion|Path fx in neopltc dis, l humerus, subs for fx w nonunion +C2901173|T046|AB|M84.522P|ICD10CM|Path fx in neopltc dis, l humerus, subs for fx w malunion|Path fx in neopltc dis, l humerus, subs for fx w malunion +C2901174|T046|AB|M84.522S|ICD10CM|Path fracture in neoplastic disease, l humerus, sequela|Path fracture in neoplastic disease, l humerus, sequela +C2901174|T046|PT|M84.522S|ICD10CM|Pathological fracture in neoplastic disease, left humerus, sequela|Pathological fracture in neoplastic disease, left humerus, sequela +C2901175|T046|AB|M84.529|ICD10CM|Pathological fracture in neoplastic disease, unsp humerus|Pathological fracture in neoplastic disease, unsp humerus +C2901175|T046|HT|M84.529|ICD10CM|Pathological fracture in neoplastic disease, unspecified humerus|Pathological fracture in neoplastic disease, unspecified humerus +C2901176|T046|AB|M84.529A|ICD10CM|Path fracture in neoplastic disease, unsp humerus, init|Path fracture in neoplastic disease, unsp humerus, init +C2901176|T046|PT|M84.529A|ICD10CM|Pathological fracture in neoplastic disease, unspecified humerus, initial encounter for fracture|Pathological fracture in neoplastic disease, unspecified humerus, initial encounter for fracture +C2901177|T046|AB|M84.529D|ICD10CM|Path fx in neopltc dis, unsp humer, subs for fx w routn heal|Path fx in neopltc dis, unsp humer, subs for fx w routn heal +C2901178|T046|AB|M84.529G|ICD10CM|Path fx in neopltc dis, unsp humer, subs for fx w delay heal|Path fx in neopltc dis, unsp humer, subs for fx w delay heal +C2901179|T046|AB|M84.529K|ICD10CM|Path fx in neopltc dis, unsp humerus, subs for fx w nonunion|Path fx in neopltc dis, unsp humerus, subs for fx w nonunion +C2901180|T046|AB|M84.529P|ICD10CM|Path fx in neopltc dis, unsp humerus, subs for fx w malunion|Path fx in neopltc dis, unsp humerus, subs for fx w malunion +C2901181|T046|AB|M84.529S|ICD10CM|Path fracture in neoplastic disease, unsp humerus, sequela|Path fracture in neoplastic disease, unsp humerus, sequela +C2901181|T046|PT|M84.529S|ICD10CM|Pathological fracture in neoplastic disease, unspecified humerus, sequela|Pathological fracture in neoplastic disease, unspecified humerus, sequela +C2901182|T046|AB|M84.53|ICD10CM|Pathological fracture in neoplastic disease, ulna and radius|Pathological fracture in neoplastic disease, ulna and radius +C2901182|T046|HT|M84.53|ICD10CM|Pathological fracture in neoplastic disease, ulna and radius|Pathological fracture in neoplastic disease, ulna and radius +C2901183|T046|AB|M84.531|ICD10CM|Pathological fracture in neoplastic disease, right ulna|Pathological fracture in neoplastic disease, right ulna +C2901183|T046|HT|M84.531|ICD10CM|Pathological fracture in neoplastic disease, right ulna|Pathological fracture in neoplastic disease, right ulna +C2901184|T046|AB|M84.531A|ICD10CM|Path fracture in neoplastic disease, right ulna, init|Path fracture in neoplastic disease, right ulna, init +C2901184|T046|PT|M84.531A|ICD10CM|Pathological fracture in neoplastic disease, right ulna, initial encounter for fracture|Pathological fracture in neoplastic disease, right ulna, initial encounter for fracture +C2901185|T046|AB|M84.531D|ICD10CM|Path fx in neopltc disease, r ulna, subs for fx w routn heal|Path fx in neopltc disease, r ulna, subs for fx w routn heal +C2901186|T046|AB|M84.531G|ICD10CM|Path fx in neopltc disease, r ulna, subs for fx w delay heal|Path fx in neopltc disease, r ulna, subs for fx w delay heal +C2901187|T046|AB|M84.531K|ICD10CM|Path fx in neopltc disease, r ulna, subs for fx w nonunion|Path fx in neopltc disease, r ulna, subs for fx w nonunion +C2901188|T046|AB|M84.531P|ICD10CM|Path fx in neopltc disease, r ulna, subs for fx w malunion|Path fx in neopltc disease, r ulna, subs for fx w malunion +C2901189|T046|AB|M84.531S|ICD10CM|Path fracture in neoplastic disease, right ulna, sequela|Path fracture in neoplastic disease, right ulna, sequela +C2901189|T046|PT|M84.531S|ICD10CM|Pathological fracture in neoplastic disease, right ulna, sequela|Pathological fracture in neoplastic disease, right ulna, sequela +C2901190|T046|AB|M84.532|ICD10CM|Pathological fracture in neoplastic disease, left ulna|Pathological fracture in neoplastic disease, left ulna +C2901190|T046|HT|M84.532|ICD10CM|Pathological fracture in neoplastic disease, left ulna|Pathological fracture in neoplastic disease, left ulna +C2901191|T046|AB|M84.532A|ICD10CM|Pathological fracture in neoplastic disease, left ulna, init|Pathological fracture in neoplastic disease, left ulna, init +C2901191|T046|PT|M84.532A|ICD10CM|Pathological fracture in neoplastic disease, left ulna, initial encounter for fracture|Pathological fracture in neoplastic disease, left ulna, initial encounter for fracture +C2901192|T046|AB|M84.532D|ICD10CM|Path fx in neopltc disease, l ulna, subs for fx w routn heal|Path fx in neopltc disease, l ulna, subs for fx w routn heal +C2901193|T046|AB|M84.532G|ICD10CM|Path fx in neopltc disease, l ulna, subs for fx w delay heal|Path fx in neopltc disease, l ulna, subs for fx w delay heal +C2901194|T046|AB|M84.532K|ICD10CM|Path fx in neopltc disease, l ulna, subs for fx w nonunion|Path fx in neopltc disease, l ulna, subs for fx w nonunion +C2901195|T046|AB|M84.532P|ICD10CM|Path fx in neopltc disease, l ulna, subs for fx w malunion|Path fx in neopltc disease, l ulna, subs for fx w malunion +C2901196|T046|AB|M84.532S|ICD10CM|Path fracture in neoplastic disease, left ulna, sequela|Path fracture in neoplastic disease, left ulna, sequela +C2901196|T046|PT|M84.532S|ICD10CM|Pathological fracture in neoplastic disease, left ulna, sequela|Pathological fracture in neoplastic disease, left ulna, sequela +C2901197|T046|AB|M84.533|ICD10CM|Pathological fracture in neoplastic disease, right radius|Pathological fracture in neoplastic disease, right radius +C2901197|T046|HT|M84.533|ICD10CM|Pathological fracture in neoplastic disease, right radius|Pathological fracture in neoplastic disease, right radius +C2901198|T046|AB|M84.533A|ICD10CM|Path fracture in neoplastic disease, right radius, init|Path fracture in neoplastic disease, right radius, init +C2901198|T046|PT|M84.533A|ICD10CM|Pathological fracture in neoplastic disease, right radius, initial encounter for fracture|Pathological fracture in neoplastic disease, right radius, initial encounter for fracture +C2901199|T046|AB|M84.533D|ICD10CM|Path fx in neopltc dis, r radius, subs for fx w routn heal|Path fx in neopltc dis, r radius, subs for fx w routn heal +C2901200|T046|AB|M84.533G|ICD10CM|Path fx in neopltc dis, r radius, subs for fx w delay heal|Path fx in neopltc dis, r radius, subs for fx w delay heal +C2901201|T046|AB|M84.533K|ICD10CM|Path fx in neopltc disease, r radius, subs for fx w nonunion|Path fx in neopltc disease, r radius, subs for fx w nonunion +C2901202|T046|AB|M84.533P|ICD10CM|Path fx in neopltc disease, r radius, subs for fx w malunion|Path fx in neopltc disease, r radius, subs for fx w malunion +C2901203|T046|AB|M84.533S|ICD10CM|Path fracture in neoplastic disease, right radius, sequela|Path fracture in neoplastic disease, right radius, sequela +C2901203|T046|PT|M84.533S|ICD10CM|Pathological fracture in neoplastic disease, right radius, sequela|Pathological fracture in neoplastic disease, right radius, sequela +C2901204|T046|AB|M84.534|ICD10CM|Pathological fracture in neoplastic disease, left radius|Pathological fracture in neoplastic disease, left radius +C2901204|T046|HT|M84.534|ICD10CM|Pathological fracture in neoplastic disease, left radius|Pathological fracture in neoplastic disease, left radius +C2901205|T046|AB|M84.534A|ICD10CM|Path fracture in neoplastic disease, left radius, init|Path fracture in neoplastic disease, left radius, init +C2901205|T046|PT|M84.534A|ICD10CM|Pathological fracture in neoplastic disease, left radius, initial encounter for fracture|Pathological fracture in neoplastic disease, left radius, initial encounter for fracture +C2901206|T046|AB|M84.534D|ICD10CM|Path fx in neopltc dis, left rad, subs for fx w routn heal|Path fx in neopltc dis, left rad, subs for fx w routn heal +C2901207|T046|AB|M84.534G|ICD10CM|Path fx in neopltc dis, left rad, subs for fx w delay heal|Path fx in neopltc dis, left rad, subs for fx w delay heal +C2901208|T046|AB|M84.534K|ICD10CM|Path fx in neopltc dis, left radius, subs for fx w nonunion|Path fx in neopltc dis, left radius, subs for fx w nonunion +C2901209|T046|AB|M84.534P|ICD10CM|Path fx in neopltc dis, left radius, subs for fx w malunion|Path fx in neopltc dis, left radius, subs for fx w malunion +C2901210|T046|AB|M84.534S|ICD10CM|Path fracture in neoplastic disease, left radius, sequela|Path fracture in neoplastic disease, left radius, sequela +C2901210|T046|PT|M84.534S|ICD10CM|Pathological fracture in neoplastic disease, left radius, sequela|Pathological fracture in neoplastic disease, left radius, sequela +C2901211|T046|AB|M84.539|ICD10CM|Path fracture in neoplastic disease, unsp ulna and radius|Path fracture in neoplastic disease, unsp ulna and radius +C2901211|T046|HT|M84.539|ICD10CM|Pathological fracture in neoplastic disease, unspecified ulna and radius|Pathological fracture in neoplastic disease, unspecified ulna and radius +C2901212|T046|AB|M84.539A|ICD10CM|Path fracture in neopltc disease, unsp ulna and radius, init|Path fracture in neopltc disease, unsp ulna and radius, init +C2901213|T046|AB|M84.539D|ICD10CM|Path fx in neopltc dis, unsp ulna & rad, 7thD|Path fx in neopltc dis, unsp ulna & rad, 7thD +C2901214|T046|AB|M84.539G|ICD10CM|Path fx in neopltc dis, unsp ulna & rad, 7thG|Path fx in neopltc dis, unsp ulna & rad, 7thG +C2901215|T046|AB|M84.539K|ICD10CM|Path fx in neopltc dis, unsp ulna & rad, 7thK|Path fx in neopltc dis, unsp ulna & rad, 7thK +C2901216|T046|AB|M84.539P|ICD10CM|Path fx in neopltc dis, unsp ulna & rad, 7thP|Path fx in neopltc dis, unsp ulna & rad, 7thP +C2901217|T046|AB|M84.539S|ICD10CM|Path fx in neopltc disease, unsp ulna and radius, sequela|Path fx in neopltc disease, unsp ulna and radius, sequela +C2901217|T046|PT|M84.539S|ICD10CM|Pathological fracture in neoplastic disease, unspecified ulna and radius, sequela|Pathological fracture in neoplastic disease, unspecified ulna and radius, sequela +C2901218|T046|AB|M84.54|ICD10CM|Pathological fracture in neoplastic disease, hand|Pathological fracture in neoplastic disease, hand +C2901218|T046|HT|M84.54|ICD10CM|Pathological fracture in neoplastic disease, hand|Pathological fracture in neoplastic disease, hand +C2901219|T046|AB|M84.541|ICD10CM|Pathological fracture in neoplastic disease, right hand|Pathological fracture in neoplastic disease, right hand +C2901219|T046|HT|M84.541|ICD10CM|Pathological fracture in neoplastic disease, right hand|Pathological fracture in neoplastic disease, right hand +C2901220|T046|AB|M84.541A|ICD10CM|Path fracture in neoplastic disease, right hand, init|Path fracture in neoplastic disease, right hand, init +C2901220|T046|PT|M84.541A|ICD10CM|Pathological fracture in neoplastic disease, right hand, initial encounter for fracture|Pathological fracture in neoplastic disease, right hand, initial encounter for fracture +C2901221|T046|AB|M84.541D|ICD10CM|Path fx in neopltc disease, r hand, subs for fx w routn heal|Path fx in neopltc disease, r hand, subs for fx w routn heal +C2901222|T046|AB|M84.541G|ICD10CM|Path fx in neopltc disease, r hand, subs for fx w delay heal|Path fx in neopltc disease, r hand, subs for fx w delay heal +C2901223|T046|AB|M84.541K|ICD10CM|Path fx in neopltc disease, r hand, subs for fx w nonunion|Path fx in neopltc disease, r hand, subs for fx w nonunion +C2901224|T046|AB|M84.541P|ICD10CM|Path fx in neopltc disease, r hand, subs for fx w malunion|Path fx in neopltc disease, r hand, subs for fx w malunion +C2901225|T046|AB|M84.541S|ICD10CM|Path fracture in neoplastic disease, right hand, sequela|Path fracture in neoplastic disease, right hand, sequela +C2901225|T046|PT|M84.541S|ICD10CM|Pathological fracture in neoplastic disease, right hand, sequela|Pathological fracture in neoplastic disease, right hand, sequela +C2901226|T046|AB|M84.542|ICD10CM|Pathological fracture in neoplastic disease, left hand|Pathological fracture in neoplastic disease, left hand +C2901226|T046|HT|M84.542|ICD10CM|Pathological fracture in neoplastic disease, left hand|Pathological fracture in neoplastic disease, left hand +C2901227|T046|AB|M84.542A|ICD10CM|Pathological fracture in neoplastic disease, left hand, init|Pathological fracture in neoplastic disease, left hand, init +C2901227|T046|PT|M84.542A|ICD10CM|Pathological fracture in neoplastic disease, left hand, initial encounter for fracture|Pathological fracture in neoplastic disease, left hand, initial encounter for fracture +C2901228|T046|AB|M84.542D|ICD10CM|Path fx in neopltc disease, l hand, subs for fx w routn heal|Path fx in neopltc disease, l hand, subs for fx w routn heal +C2901229|T046|AB|M84.542G|ICD10CM|Path fx in neopltc disease, l hand, subs for fx w delay heal|Path fx in neopltc disease, l hand, subs for fx w delay heal +C2901230|T046|AB|M84.542K|ICD10CM|Path fx in neopltc disease, l hand, subs for fx w nonunion|Path fx in neopltc disease, l hand, subs for fx w nonunion +C2901231|T046|AB|M84.542P|ICD10CM|Path fx in neopltc disease, l hand, subs for fx w malunion|Path fx in neopltc disease, l hand, subs for fx w malunion +C2901232|T046|AB|M84.542S|ICD10CM|Path fracture in neoplastic disease, left hand, sequela|Path fracture in neoplastic disease, left hand, sequela +C2901232|T046|PT|M84.542S|ICD10CM|Pathological fracture in neoplastic disease, left hand, sequela|Pathological fracture in neoplastic disease, left hand, sequela +C2901233|T046|AB|M84.549|ICD10CM|Pathological fracture in neoplastic disease, unsp hand|Pathological fracture in neoplastic disease, unsp hand +C2901233|T046|HT|M84.549|ICD10CM|Pathological fracture in neoplastic disease, unspecified hand|Pathological fracture in neoplastic disease, unspecified hand +C2901234|T046|AB|M84.549A|ICD10CM|Pathological fracture in neoplastic disease, unsp hand, init|Pathological fracture in neoplastic disease, unsp hand, init +C2901234|T046|PT|M84.549A|ICD10CM|Pathological fracture in neoplastic disease, unspecified hand, initial encounter for fracture|Pathological fracture in neoplastic disease, unspecified hand, initial encounter for fracture +C2901235|T046|AB|M84.549D|ICD10CM|Path fx in neopltc dis, unsp hand, subs for fx w routn heal|Path fx in neopltc dis, unsp hand, subs for fx w routn heal +C2901236|T046|AB|M84.549G|ICD10CM|Path fx in neopltc dis, unsp hand, subs for fx w delay heal|Path fx in neopltc dis, unsp hand, subs for fx w delay heal +C2901237|T046|AB|M84.549K|ICD10CM|Path fx in neopltc dis, unsp hand, subs for fx w nonunion|Path fx in neopltc dis, unsp hand, subs for fx w nonunion +C2901238|T046|AB|M84.549P|ICD10CM|Path fx in neopltc dis, unsp hand, subs for fx w malunion|Path fx in neopltc dis, unsp hand, subs for fx w malunion +C2901239|T046|AB|M84.549S|ICD10CM|Path fracture in neoplastic disease, unsp hand, sequela|Path fracture in neoplastic disease, unsp hand, sequela +C2901239|T046|PT|M84.549S|ICD10CM|Pathological fracture in neoplastic disease, unspecified hand, sequela|Pathological fracture in neoplastic disease, unspecified hand, sequela +C2901240|T046|AB|M84.55|ICD10CM|Path fracture in neoplastic disease, pelvis and femur|Path fracture in neoplastic disease, pelvis and femur +C2901240|T046|HT|M84.55|ICD10CM|Pathological fracture in neoplastic disease, pelvis and femur|Pathological fracture in neoplastic disease, pelvis and femur +C2901241|T046|AB|M84.550|ICD10CM|Pathological fracture in neoplastic disease, pelvis|Pathological fracture in neoplastic disease, pelvis +C2901241|T046|HT|M84.550|ICD10CM|Pathological fracture in neoplastic disease, pelvis|Pathological fracture in neoplastic disease, pelvis +C2901242|T046|AB|M84.550A|ICD10CM|Pathological fracture in neoplastic disease, pelvis, init|Pathological fracture in neoplastic disease, pelvis, init +C2901242|T046|PT|M84.550A|ICD10CM|Pathological fracture in neoplastic disease, pelvis, initial encounter for fracture|Pathological fracture in neoplastic disease, pelvis, initial encounter for fracture +C2901243|T046|AB|M84.550D|ICD10CM|Path fx in neopltc disease, pelvis, subs for fx w routn heal|Path fx in neopltc disease, pelvis, subs for fx w routn heal +C2901244|T046|AB|M84.550G|ICD10CM|Path fx in neopltc disease, pelvis, subs for fx w delay heal|Path fx in neopltc disease, pelvis, subs for fx w delay heal +C2901245|T046|AB|M84.550K|ICD10CM|Path fx in neopltc disease, pelvis, subs for fx w nonunion|Path fx in neopltc disease, pelvis, subs for fx w nonunion +C2901245|T046|PT|M84.550K|ICD10CM|Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with nonunion|Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with nonunion +C2901246|T046|AB|M84.550P|ICD10CM|Path fx in neopltc disease, pelvis, subs for fx w malunion|Path fx in neopltc disease, pelvis, subs for fx w malunion +C2901246|T046|PT|M84.550P|ICD10CM|Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with malunion|Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with malunion +C2901247|T046|AB|M84.550S|ICD10CM|Pathological fracture in neoplastic disease, pelvis, sequela|Pathological fracture in neoplastic disease, pelvis, sequela +C2901247|T046|PT|M84.550S|ICD10CM|Pathological fracture in neoplastic disease, pelvis, sequela|Pathological fracture in neoplastic disease, pelvis, sequela +C2901248|T046|AB|M84.551|ICD10CM|Pathological fracture in neoplastic disease, right femur|Pathological fracture in neoplastic disease, right femur +C2901248|T046|HT|M84.551|ICD10CM|Pathological fracture in neoplastic disease, right femur|Pathological fracture in neoplastic disease, right femur +C2901249|T046|AB|M84.551A|ICD10CM|Path fracture in neoplastic disease, right femur, init|Path fracture in neoplastic disease, right femur, init +C2901249|T046|PT|M84.551A|ICD10CM|Pathological fracture in neoplastic disease, right femur, initial encounter for fracture|Pathological fracture in neoplastic disease, right femur, initial encounter for fracture +C2901250|T046|AB|M84.551D|ICD10CM|Path fx in neopltc dis, r femur, subs for fx w routn heal|Path fx in neopltc dis, r femur, subs for fx w routn heal +C2901251|T046|AB|M84.551G|ICD10CM|Path fx in neopltc dis, r femur, subs for fx w delay heal|Path fx in neopltc dis, r femur, subs for fx w delay heal +C2901252|T046|AB|M84.551K|ICD10CM|Path fx in neopltc disease, r femur, subs for fx w nonunion|Path fx in neopltc disease, r femur, subs for fx w nonunion +C2901253|T046|AB|M84.551P|ICD10CM|Path fx in neopltc disease, r femur, subs for fx w malunion|Path fx in neopltc disease, r femur, subs for fx w malunion +C2901254|T046|AB|M84.551S|ICD10CM|Path fracture in neoplastic disease, right femur, sequela|Path fracture in neoplastic disease, right femur, sequela +C2901254|T046|PT|M84.551S|ICD10CM|Pathological fracture in neoplastic disease, right femur, sequela|Pathological fracture in neoplastic disease, right femur, sequela +C2901255|T046|AB|M84.552|ICD10CM|Pathological fracture in neoplastic disease, left femur|Pathological fracture in neoplastic disease, left femur +C2901255|T046|HT|M84.552|ICD10CM|Pathological fracture in neoplastic disease, left femur|Pathological fracture in neoplastic disease, left femur +C2901256|T046|AB|M84.552A|ICD10CM|Path fracture in neoplastic disease, left femur, init|Path fracture in neoplastic disease, left femur, init +C2901256|T046|PT|M84.552A|ICD10CM|Pathological fracture in neoplastic disease, left femur, initial encounter for fracture|Pathological fracture in neoplastic disease, left femur, initial encounter for fracture +C2901257|T046|AB|M84.552D|ICD10CM|Path fx in neopltc dis, l femur, subs for fx w routn heal|Path fx in neopltc dis, l femur, subs for fx w routn heal +C2901258|T046|AB|M84.552G|ICD10CM|Path fx in neopltc dis, l femur, subs for fx w delay heal|Path fx in neopltc dis, l femur, subs for fx w delay heal +C2901259|T046|AB|M84.552K|ICD10CM|Path fx in neopltc disease, l femur, subs for fx w nonunion|Path fx in neopltc disease, l femur, subs for fx w nonunion +C2901260|T046|AB|M84.552P|ICD10CM|Path fx in neopltc disease, l femur, subs for fx w malunion|Path fx in neopltc disease, l femur, subs for fx w malunion +C2901261|T046|AB|M84.552S|ICD10CM|Path fracture in neoplastic disease, left femur, sequela|Path fracture in neoplastic disease, left femur, sequela +C2901261|T046|PT|M84.552S|ICD10CM|Pathological fracture in neoplastic disease, left femur, sequela|Pathological fracture in neoplastic disease, left femur, sequela +C2901262|T046|AB|M84.553|ICD10CM|Pathological fracture in neoplastic disease, unsp femur|Pathological fracture in neoplastic disease, unsp femur +C2901262|T046|HT|M84.553|ICD10CM|Pathological fracture in neoplastic disease, unspecified femur|Pathological fracture in neoplastic disease, unspecified femur +C2901263|T046|AB|M84.553A|ICD10CM|Path fracture in neoplastic disease, unsp femur, init|Path fracture in neoplastic disease, unsp femur, init +C2901263|T046|PT|M84.553A|ICD10CM|Pathological fracture in neoplastic disease, unspecified femur, initial encounter for fracture|Pathological fracture in neoplastic disease, unspecified femur, initial encounter for fracture +C2901264|T046|AB|M84.553D|ICD10CM|Path fx in neopltc dis, unsp femur, subs for fx w routn heal|Path fx in neopltc dis, unsp femur, subs for fx w routn heal +C2901265|T046|AB|M84.553G|ICD10CM|Path fx in neopltc dis, unsp femur, subs for fx w delay heal|Path fx in neopltc dis, unsp femur, subs for fx w delay heal +C2901266|T046|AB|M84.553K|ICD10CM|Path fx in neopltc dis, unsp femur, subs for fx w nonunion|Path fx in neopltc dis, unsp femur, subs for fx w nonunion +C2901267|T046|AB|M84.553P|ICD10CM|Path fx in neopltc dis, unsp femur, subs for fx w malunion|Path fx in neopltc dis, unsp femur, subs for fx w malunion +C2901268|T046|AB|M84.553S|ICD10CM|Path fracture in neoplastic disease, unsp femur, sequela|Path fracture in neoplastic disease, unsp femur, sequela +C2901268|T046|PT|M84.553S|ICD10CM|Pathological fracture in neoplastic disease, unspecified femur, sequela|Pathological fracture in neoplastic disease, unspecified femur, sequela +C2901269|T046|AB|M84.559|ICD10CM|Pathological fracture in neoplastic disease, hip, unsp|Pathological fracture in neoplastic disease, hip, unsp +C2901269|T046|HT|M84.559|ICD10CM|Pathological fracture in neoplastic disease, hip, unspecified|Pathological fracture in neoplastic disease, hip, unspecified +C2901270|T046|AB|M84.559A|ICD10CM|Pathological fracture in neoplastic disease, hip, unsp, init|Pathological fracture in neoplastic disease, hip, unsp, init +C2901270|T046|PT|M84.559A|ICD10CM|Pathological fracture in neoplastic disease, hip, unspecified, initial encounter for fracture|Pathological fracture in neoplastic disease, hip, unspecified, initial encounter for fracture +C2901271|T046|AB|M84.559D|ICD10CM|Path fx in neopltc dis, hip, unsp, subs for fx w routn heal|Path fx in neopltc dis, hip, unsp, subs for fx w routn heal +C2901272|T046|AB|M84.559G|ICD10CM|Path fx in neopltc dis, hip, unsp, subs for fx w delay heal|Path fx in neopltc dis, hip, unsp, subs for fx w delay heal +C2901273|T046|AB|M84.559K|ICD10CM|Path fx in neopltc dis, hip, unsp, subs for fx w nonunion|Path fx in neopltc dis, hip, unsp, subs for fx w nonunion +C2901274|T046|AB|M84.559P|ICD10CM|Path fx in neopltc dis, hip, unsp, subs for fx w malunion|Path fx in neopltc dis, hip, unsp, subs for fx w malunion +C2901275|T046|AB|M84.559S|ICD10CM|Path fracture in neoplastic disease, hip, unsp, sequela|Path fracture in neoplastic disease, hip, unsp, sequela +C2901275|T046|PT|M84.559S|ICD10CM|Pathological fracture in neoplastic disease, hip, unspecified, sequela|Pathological fracture in neoplastic disease, hip, unspecified, sequela +C2901276|T046|AB|M84.56|ICD10CM|Path fracture in neoplastic disease, tibia and fibula|Path fracture in neoplastic disease, tibia and fibula +C2901276|T046|HT|M84.56|ICD10CM|Pathological fracture in neoplastic disease, tibia and fibula|Pathological fracture in neoplastic disease, tibia and fibula +C2901277|T046|AB|M84.561|ICD10CM|Pathological fracture in neoplastic disease, right tibia|Pathological fracture in neoplastic disease, right tibia +C2901277|T046|HT|M84.561|ICD10CM|Pathological fracture in neoplastic disease, right tibia|Pathological fracture in neoplastic disease, right tibia +C2901278|T046|AB|M84.561A|ICD10CM|Path fracture in neoplastic disease, right tibia, init|Path fracture in neoplastic disease, right tibia, init +C2901278|T046|PT|M84.561A|ICD10CM|Pathological fracture in neoplastic disease, right tibia, initial encounter for fracture|Pathological fracture in neoplastic disease, right tibia, initial encounter for fracture +C2901279|T046|AB|M84.561D|ICD10CM|Path fx in neopltc dis, r tibia, subs for fx w routn heal|Path fx in neopltc dis, r tibia, subs for fx w routn heal +C2901280|T046|AB|M84.561G|ICD10CM|Path fx in neopltc dis, r tibia, subs for fx w delay heal|Path fx in neopltc dis, r tibia, subs for fx w delay heal +C2901281|T046|AB|M84.561K|ICD10CM|Path fx in neopltc disease, r tibia, subs for fx w nonunion|Path fx in neopltc disease, r tibia, subs for fx w nonunion +C2901282|T046|AB|M84.561P|ICD10CM|Path fx in neopltc disease, r tibia, subs for fx w malunion|Path fx in neopltc disease, r tibia, subs for fx w malunion +C2901283|T046|AB|M84.561S|ICD10CM|Path fracture in neoplastic disease, right tibia, sequela|Path fracture in neoplastic disease, right tibia, sequela +C2901283|T046|PT|M84.561S|ICD10CM|Pathological fracture in neoplastic disease, right tibia, sequela|Pathological fracture in neoplastic disease, right tibia, sequela +C2901284|T046|AB|M84.562|ICD10CM|Pathological fracture in neoplastic disease, left tibia|Pathological fracture in neoplastic disease, left tibia +C2901284|T046|HT|M84.562|ICD10CM|Pathological fracture in neoplastic disease, left tibia|Pathological fracture in neoplastic disease, left tibia +C2901285|T046|AB|M84.562A|ICD10CM|Path fracture in neoplastic disease, left tibia, init|Path fracture in neoplastic disease, left tibia, init +C2901285|T046|PT|M84.562A|ICD10CM|Pathological fracture in neoplastic disease, left tibia, initial encounter for fracture|Pathological fracture in neoplastic disease, left tibia, initial encounter for fracture +C2901286|T046|AB|M84.562D|ICD10CM|Path fx in neopltc dis, l tibia, subs for fx w routn heal|Path fx in neopltc dis, l tibia, subs for fx w routn heal +C2901287|T046|AB|M84.562G|ICD10CM|Path fx in neopltc dis, l tibia, subs for fx w delay heal|Path fx in neopltc dis, l tibia, subs for fx w delay heal +C2901288|T046|AB|M84.562K|ICD10CM|Path fx in neopltc disease, l tibia, subs for fx w nonunion|Path fx in neopltc disease, l tibia, subs for fx w nonunion +C2901289|T046|AB|M84.562P|ICD10CM|Path fx in neopltc disease, l tibia, subs for fx w malunion|Path fx in neopltc disease, l tibia, subs for fx w malunion +C2901290|T046|AB|M84.562S|ICD10CM|Path fracture in neoplastic disease, left tibia, sequela|Path fracture in neoplastic disease, left tibia, sequela +C2901290|T046|PT|M84.562S|ICD10CM|Pathological fracture in neoplastic disease, left tibia, sequela|Pathological fracture in neoplastic disease, left tibia, sequela +C2901291|T046|AB|M84.563|ICD10CM|Pathological fracture in neoplastic disease, right fibula|Pathological fracture in neoplastic disease, right fibula +C2901291|T046|HT|M84.563|ICD10CM|Pathological fracture in neoplastic disease, right fibula|Pathological fracture in neoplastic disease, right fibula +C2901292|T046|AB|M84.563A|ICD10CM|Path fracture in neoplastic disease, right fibula, init|Path fracture in neoplastic disease, right fibula, init +C2901292|T046|PT|M84.563A|ICD10CM|Pathological fracture in neoplastic disease, right fibula, initial encounter for fracture|Pathological fracture in neoplastic disease, right fibula, initial encounter for fracture +C2901293|T046|AB|M84.563D|ICD10CM|Path fx in neopltc dis, r fibula, subs for fx w routn heal|Path fx in neopltc dis, r fibula, subs for fx w routn heal +C2901294|T046|AB|M84.563G|ICD10CM|Path fx in neopltc dis, r fibula, subs for fx w delay heal|Path fx in neopltc dis, r fibula, subs for fx w delay heal +C2901295|T046|AB|M84.563K|ICD10CM|Path fx in neopltc disease, r fibula, subs for fx w nonunion|Path fx in neopltc disease, r fibula, subs for fx w nonunion +C2901296|T046|AB|M84.563P|ICD10CM|Path fx in neopltc disease, r fibula, subs for fx w malunion|Path fx in neopltc disease, r fibula, subs for fx w malunion +C2901297|T046|AB|M84.563S|ICD10CM|Path fracture in neoplastic disease, right fibula, sequela|Path fracture in neoplastic disease, right fibula, sequela +C2901297|T046|PT|M84.563S|ICD10CM|Pathological fracture in neoplastic disease, right fibula, sequela|Pathological fracture in neoplastic disease, right fibula, sequela +C2901298|T046|AB|M84.564|ICD10CM|Pathological fracture in neoplastic disease, left fibula|Pathological fracture in neoplastic disease, left fibula +C2901298|T046|HT|M84.564|ICD10CM|Pathological fracture in neoplastic disease, left fibula|Pathological fracture in neoplastic disease, left fibula +C2901299|T046|AB|M84.564A|ICD10CM|Path fracture in neoplastic disease, left fibula, init|Path fracture in neoplastic disease, left fibula, init +C2901299|T046|PT|M84.564A|ICD10CM|Pathological fracture in neoplastic disease, left fibula, initial encounter for fracture|Pathological fracture in neoplastic disease, left fibula, initial encounter for fracture +C2901300|T046|AB|M84.564D|ICD10CM|Path fx in neopltc dis, l fibula, subs for fx w routn heal|Path fx in neopltc dis, l fibula, subs for fx w routn heal +C2901301|T046|AB|M84.564G|ICD10CM|Path fx in neopltc dis, l fibula, subs for fx w delay heal|Path fx in neopltc dis, l fibula, subs for fx w delay heal +C2901302|T046|AB|M84.564K|ICD10CM|Path fx in neopltc disease, l fibula, subs for fx w nonunion|Path fx in neopltc disease, l fibula, subs for fx w nonunion +C2901303|T046|AB|M84.564P|ICD10CM|Path fx in neopltc disease, l fibula, subs for fx w malunion|Path fx in neopltc disease, l fibula, subs for fx w malunion +C2901304|T046|AB|M84.564S|ICD10CM|Path fracture in neoplastic disease, left fibula, sequela|Path fracture in neoplastic disease, left fibula, sequela +C2901304|T046|PT|M84.564S|ICD10CM|Pathological fracture in neoplastic disease, left fibula, sequela|Pathological fracture in neoplastic disease, left fibula, sequela +C2901305|T046|AB|M84.569|ICD10CM|Path fracture in neoplastic disease, unsp tibia and fibula|Path fracture in neoplastic disease, unsp tibia and fibula +C2901305|T046|HT|M84.569|ICD10CM|Pathological fracture in neoplastic disease, unspecified tibia and fibula|Pathological fracture in neoplastic disease, unspecified tibia and fibula +C2901306|T046|AB|M84.569A|ICD10CM|Path fx in neopltc disease, unsp tibia and fibula, init|Path fx in neopltc disease, unsp tibia and fibula, init +C2901307|T046|AB|M84.569D|ICD10CM|Path fx in neopltc dis, unsp tibia & fibula, 7thD|Path fx in neopltc dis, unsp tibia & fibula, 7thD +C2901308|T046|AB|M84.569G|ICD10CM|Path fx in neopltc dis, unsp tibia & fibula, 7thG|Path fx in neopltc dis, unsp tibia & fibula, 7thG +C2901309|T046|AB|M84.569K|ICD10CM|Path fx in neopltc dis, unsp tibia & fibula, 7thK|Path fx in neopltc dis, unsp tibia & fibula, 7thK +C2901310|T046|AB|M84.569P|ICD10CM|Path fx in neopltc dis, unsp tibia & fibula, 7thP|Path fx in neopltc dis, unsp tibia & fibula, 7thP +C2901311|T046|AB|M84.569S|ICD10CM|Path fx in neopltc disease, unsp tibia and fibula, sequela|Path fx in neopltc disease, unsp tibia and fibula, sequela +C2901311|T046|PT|M84.569S|ICD10CM|Pathological fracture in neoplastic disease, unspecified tibia and fibula, sequela|Pathological fracture in neoplastic disease, unspecified tibia and fibula, sequela +C2901312|T046|AB|M84.57|ICD10CM|Pathological fracture in neoplastic disease, ankle and foot|Pathological fracture in neoplastic disease, ankle and foot +C2901312|T046|HT|M84.57|ICD10CM|Pathological fracture in neoplastic disease, ankle and foot|Pathological fracture in neoplastic disease, ankle and foot +C2901313|T046|AB|M84.571|ICD10CM|Pathological fracture in neoplastic disease, right ankle|Pathological fracture in neoplastic disease, right ankle +C2901313|T046|HT|M84.571|ICD10CM|Pathological fracture in neoplastic disease, right ankle|Pathological fracture in neoplastic disease, right ankle +C2901314|T046|AB|M84.571A|ICD10CM|Path fracture in neoplastic disease, right ankle, init|Path fracture in neoplastic disease, right ankle, init +C2901314|T046|PT|M84.571A|ICD10CM|Pathological fracture in neoplastic disease, right ankle, initial encounter for fracture|Pathological fracture in neoplastic disease, right ankle, initial encounter for fracture +C2901315|T046|AB|M84.571D|ICD10CM|Path fx in neopltc dis, r ankle, subs for fx w routn heal|Path fx in neopltc dis, r ankle, subs for fx w routn heal +C2901316|T046|AB|M84.571G|ICD10CM|Path fx in neopltc dis, r ankle, subs for fx w delay heal|Path fx in neopltc dis, r ankle, subs for fx w delay heal +C2901317|T046|AB|M84.571K|ICD10CM|Path fx in neopltc disease, r ankle, subs for fx w nonunion|Path fx in neopltc disease, r ankle, subs for fx w nonunion +C2901318|T046|AB|M84.571P|ICD10CM|Path fx in neopltc disease, r ankle, subs for fx w malunion|Path fx in neopltc disease, r ankle, subs for fx w malunion +C2901319|T046|AB|M84.571S|ICD10CM|Path fracture in neoplastic disease, right ankle, sequela|Path fracture in neoplastic disease, right ankle, sequela +C2901319|T046|PT|M84.571S|ICD10CM|Pathological fracture in neoplastic disease, right ankle, sequela|Pathological fracture in neoplastic disease, right ankle, sequela +C2901320|T046|AB|M84.572|ICD10CM|Pathological fracture in neoplastic disease, left ankle|Pathological fracture in neoplastic disease, left ankle +C2901320|T046|HT|M84.572|ICD10CM|Pathological fracture in neoplastic disease, left ankle|Pathological fracture in neoplastic disease, left ankle +C2901321|T046|AB|M84.572A|ICD10CM|Path fracture in neoplastic disease, left ankle, init|Path fracture in neoplastic disease, left ankle, init +C2901321|T046|PT|M84.572A|ICD10CM|Pathological fracture in neoplastic disease, left ankle, initial encounter for fracture|Pathological fracture in neoplastic disease, left ankle, initial encounter for fracture +C2901322|T046|AB|M84.572D|ICD10CM|Path fx in neopltc dis, l ankle, subs for fx w routn heal|Path fx in neopltc dis, l ankle, subs for fx w routn heal +C2901323|T046|AB|M84.572G|ICD10CM|Path fx in neopltc dis, l ankle, subs for fx w delay heal|Path fx in neopltc dis, l ankle, subs for fx w delay heal +C2901324|T046|AB|M84.572K|ICD10CM|Path fx in neopltc disease, l ankle, subs for fx w nonunion|Path fx in neopltc disease, l ankle, subs for fx w nonunion +C2901325|T046|AB|M84.572P|ICD10CM|Path fx in neopltc disease, l ankle, subs for fx w malunion|Path fx in neopltc disease, l ankle, subs for fx w malunion +C2901326|T046|AB|M84.572S|ICD10CM|Path fracture in neoplastic disease, left ankle, sequela|Path fracture in neoplastic disease, left ankle, sequela +C2901326|T046|PT|M84.572S|ICD10CM|Pathological fracture in neoplastic disease, left ankle, sequela|Pathological fracture in neoplastic disease, left ankle, sequela +C2901327|T046|AB|M84.573|ICD10CM|Pathological fracture in neoplastic disease, unsp ankle|Pathological fracture in neoplastic disease, unsp ankle +C2901327|T046|HT|M84.573|ICD10CM|Pathological fracture in neoplastic disease, unspecified ankle|Pathological fracture in neoplastic disease, unspecified ankle +C2901328|T046|AB|M84.573A|ICD10CM|Path fracture in neoplastic disease, unsp ankle, init|Path fracture in neoplastic disease, unsp ankle, init +C2901328|T046|PT|M84.573A|ICD10CM|Pathological fracture in neoplastic disease, unspecified ankle, initial encounter for fracture|Pathological fracture in neoplastic disease, unspecified ankle, initial encounter for fracture +C2901329|T046|AB|M84.573D|ICD10CM|Path fx in neopltc dis, unsp ankle, subs for fx w routn heal|Path fx in neopltc dis, unsp ankle, subs for fx w routn heal +C2901330|T046|AB|M84.573G|ICD10CM|Path fx in neopltc dis, unsp ankle, subs for fx w delay heal|Path fx in neopltc dis, unsp ankle, subs for fx w delay heal +C2901331|T046|AB|M84.573K|ICD10CM|Path fx in neopltc dis, unsp ankle, subs for fx w nonunion|Path fx in neopltc dis, unsp ankle, subs for fx w nonunion +C2901332|T046|AB|M84.573P|ICD10CM|Path fx in neopltc dis, unsp ankle, subs for fx w malunion|Path fx in neopltc dis, unsp ankle, subs for fx w malunion +C2901333|T046|AB|M84.573S|ICD10CM|Path fracture in neoplastic disease, unsp ankle, sequela|Path fracture in neoplastic disease, unsp ankle, sequela +C2901333|T046|PT|M84.573S|ICD10CM|Pathological fracture in neoplastic disease, unspecified ankle, sequela|Pathological fracture in neoplastic disease, unspecified ankle, sequela +C2901334|T046|AB|M84.574|ICD10CM|Pathological fracture in neoplastic disease, right foot|Pathological fracture in neoplastic disease, right foot +C2901334|T046|HT|M84.574|ICD10CM|Pathological fracture in neoplastic disease, right foot|Pathological fracture in neoplastic disease, right foot +C2901335|T046|AB|M84.574A|ICD10CM|Path fracture in neoplastic disease, right foot, init|Path fracture in neoplastic disease, right foot, init +C2901335|T046|PT|M84.574A|ICD10CM|Pathological fracture in neoplastic disease, right foot, initial encounter for fracture|Pathological fracture in neoplastic disease, right foot, initial encounter for fracture +C2901336|T046|AB|M84.574D|ICD10CM|Path fx in neopltc disease, r foot, subs for fx w routn heal|Path fx in neopltc disease, r foot, subs for fx w routn heal +C2901337|T046|AB|M84.574G|ICD10CM|Path fx in neopltc disease, r foot, subs for fx w delay heal|Path fx in neopltc disease, r foot, subs for fx w delay heal +C2901338|T046|AB|M84.574K|ICD10CM|Path fx in neopltc disease, r foot, subs for fx w nonunion|Path fx in neopltc disease, r foot, subs for fx w nonunion +C2901339|T046|AB|M84.574P|ICD10CM|Path fx in neopltc disease, r foot, subs for fx w malunion|Path fx in neopltc disease, r foot, subs for fx w malunion +C2901340|T046|AB|M84.574S|ICD10CM|Path fracture in neoplastic disease, right foot, sequela|Path fracture in neoplastic disease, right foot, sequela +C2901340|T046|PT|M84.574S|ICD10CM|Pathological fracture in neoplastic disease, right foot, sequela|Pathological fracture in neoplastic disease, right foot, sequela +C2901341|T046|AB|M84.575|ICD10CM|Pathological fracture in neoplastic disease, left foot|Pathological fracture in neoplastic disease, left foot +C2901341|T046|HT|M84.575|ICD10CM|Pathological fracture in neoplastic disease, left foot|Pathological fracture in neoplastic disease, left foot +C2901342|T046|AB|M84.575A|ICD10CM|Pathological fracture in neoplastic disease, left foot, init|Pathological fracture in neoplastic disease, left foot, init +C2901342|T046|PT|M84.575A|ICD10CM|Pathological fracture in neoplastic disease, left foot, initial encounter for fracture|Pathological fracture in neoplastic disease, left foot, initial encounter for fracture +C2901343|T046|AB|M84.575D|ICD10CM|Path fx in neopltc disease, l foot, subs for fx w routn heal|Path fx in neopltc disease, l foot, subs for fx w routn heal +C2901344|T046|AB|M84.575G|ICD10CM|Path fx in neopltc disease, l foot, subs for fx w delay heal|Path fx in neopltc disease, l foot, subs for fx w delay heal +C2901345|T046|AB|M84.575K|ICD10CM|Path fx in neopltc disease, l foot, subs for fx w nonunion|Path fx in neopltc disease, l foot, subs for fx w nonunion +C2901346|T046|AB|M84.575P|ICD10CM|Path fx in neopltc disease, l foot, subs for fx w malunion|Path fx in neopltc disease, l foot, subs for fx w malunion +C2901347|T046|AB|M84.575S|ICD10CM|Path fracture in neoplastic disease, left foot, sequela|Path fracture in neoplastic disease, left foot, sequela +C2901347|T046|PT|M84.575S|ICD10CM|Pathological fracture in neoplastic disease, left foot, sequela|Pathological fracture in neoplastic disease, left foot, sequela +C2901348|T046|AB|M84.576|ICD10CM|Pathological fracture in neoplastic disease, unsp foot|Pathological fracture in neoplastic disease, unsp foot +C2901348|T046|HT|M84.576|ICD10CM|Pathological fracture in neoplastic disease, unspecified foot|Pathological fracture in neoplastic disease, unspecified foot +C2901349|T046|AB|M84.576A|ICD10CM|Pathological fracture in neoplastic disease, unsp foot, init|Pathological fracture in neoplastic disease, unsp foot, init +C2901349|T046|PT|M84.576A|ICD10CM|Pathological fracture in neoplastic disease, unspecified foot, initial encounter for fracture|Pathological fracture in neoplastic disease, unspecified foot, initial encounter for fracture +C2901350|T046|AB|M84.576D|ICD10CM|Path fx in neopltc dis, unsp foot, subs for fx w routn heal|Path fx in neopltc dis, unsp foot, subs for fx w routn heal +C2901351|T046|AB|M84.576G|ICD10CM|Path fx in neopltc dis, unsp foot, subs for fx w delay heal|Path fx in neopltc dis, unsp foot, subs for fx w delay heal +C2901352|T046|AB|M84.576K|ICD10CM|Path fx in neopltc dis, unsp foot, subs for fx w nonunion|Path fx in neopltc dis, unsp foot, subs for fx w nonunion +C2901353|T046|AB|M84.576P|ICD10CM|Path fx in neopltc dis, unsp foot, subs for fx w malunion|Path fx in neopltc dis, unsp foot, subs for fx w malunion +C2901354|T046|AB|M84.576S|ICD10CM|Path fracture in neoplastic disease, unsp foot, sequela|Path fracture in neoplastic disease, unsp foot, sequela +C2901354|T046|PT|M84.576S|ICD10CM|Pathological fracture in neoplastic disease, unspecified foot, sequela|Pathological fracture in neoplastic disease, unspecified foot, sequela +C3696857|T047|AB|M84.58|ICD10CM|Pathological fracture in neoplastic disease, oth site|Pathological fracture in neoplastic disease, oth site +C3696857|T047|HT|M84.58|ICD10CM|Pathological fracture in neoplastic disease, other specified site|Pathological fracture in neoplastic disease, other specified site +C2901355|T046|ET|M84.58|ICD10CM|Pathological fracture in neoplastic disease, vertebrae|Pathological fracture in neoplastic disease, vertebrae +C2901356|T046|AB|M84.58XA|ICD10CM|Pathological fracture in neoplastic disease, oth site, init|Pathological fracture in neoplastic disease, oth site, init +C2901356|T046|PT|M84.58XA|ICD10CM|Pathological fracture in neoplastic disease, other specified site, initial encounter for fracture|Pathological fracture in neoplastic disease, other specified site, initial encounter for fracture +C2901357|T046|AB|M84.58XD|ICD10CM|Path fx in neopltc dis, oth site, subs for fx w routn heal|Path fx in neopltc dis, oth site, subs for fx w routn heal +C2901358|T046|AB|M84.58XG|ICD10CM|Path fx in neopltc dis, oth site, subs for fx w delay heal|Path fx in neopltc dis, oth site, subs for fx w delay heal +C2901359|T046|AB|M84.58XK|ICD10CM|Path fx in neopltc disease, oth site, subs for fx w nonunion|Path fx in neopltc disease, oth site, subs for fx w nonunion +C2901360|T046|AB|M84.58XP|ICD10CM|Path fx in neopltc disease, oth site, subs for fx w malunion|Path fx in neopltc disease, oth site, subs for fx w malunion +C2901361|T046|AB|M84.58XS|ICD10CM|Path fracture in neoplastic disease, oth site, sequela|Path fracture in neoplastic disease, oth site, sequela +C2901361|T046|PT|M84.58XS|ICD10CM|Pathological fracture in neoplastic disease, other specified site, sequela|Pathological fracture in neoplastic disease, other specified site, sequela +C2901362|T046|AB|M84.6|ICD10CM|Pathological fracture in other disease|Pathological fracture in other disease +C2901362|T046|HT|M84.6|ICD10CM|Pathological fracture in other disease|Pathological fracture in other disease +C2901363|T046|AB|M84.60|ICD10CM|Pathological fracture in other disease, unspecified site|Pathological fracture in other disease, unspecified site +C2901363|T046|HT|M84.60|ICD10CM|Pathological fracture in other disease, unspecified site|Pathological fracture in other disease, unspecified site +C2901364|T046|AB|M84.60XA|ICD10CM|Pathological fracture in oth disease, unsp site, init for fx|Pathological fracture in oth disease, unsp site, init for fx +C2901364|T046|PT|M84.60XA|ICD10CM|Pathological fracture in other disease, unspecified site, initial encounter for fracture|Pathological fracture in other disease, unspecified site, initial encounter for fracture +C2901365|T046|AB|M84.60XD|ICD10CM|Path fx in oth disease, unsp site, subs for fx w routn heal|Path fx in oth disease, unsp site, subs for fx w routn heal +C2901366|T046|AB|M84.60XG|ICD10CM|Path fx in oth disease, unsp site, subs for fx w delay heal|Path fx in oth disease, unsp site, subs for fx w delay heal +C2901367|T046|AB|M84.60XK|ICD10CM|Path fx in oth disease, unsp site, subs for fx w nonunion|Path fx in oth disease, unsp site, subs for fx w nonunion +C2901368|T046|AB|M84.60XP|ICD10CM|Path fx in oth disease, unsp site, subs for fx w malunion|Path fx in oth disease, unsp site, subs for fx w malunion +C2901369|T046|AB|M84.60XS|ICD10CM|Pathological fracture in other disease, unsp site, sequela|Pathological fracture in other disease, unsp site, sequela +C2901369|T046|PT|M84.60XS|ICD10CM|Pathological fracture in other disease, unspecified site, sequela|Pathological fracture in other disease, unspecified site, sequela +C2901370|T046|AB|M84.61|ICD10CM|Pathological fracture in other disease, shoulder|Pathological fracture in other disease, shoulder +C2901370|T046|HT|M84.61|ICD10CM|Pathological fracture in other disease, shoulder|Pathological fracture in other disease, shoulder +C2901371|T047|AB|M84.611|ICD10CM|Pathological fracture in other disease, right shoulder|Pathological fracture in other disease, right shoulder +C2901371|T047|HT|M84.611|ICD10CM|Pathological fracture in other disease, right shoulder|Pathological fracture in other disease, right shoulder +C2901372|T046|AB|M84.611A|ICD10CM|Pathological fracture in oth disease, right shoulder, init|Pathological fracture in oth disease, right shoulder, init +C2901372|T046|PT|M84.611A|ICD10CM|Pathological fracture in other disease, right shoulder, initial encounter for fracture|Pathological fracture in other disease, right shoulder, initial encounter for fracture +C2901373|T046|AB|M84.611D|ICD10CM|Path fx in oth disease, r shoulder, subs for fx w routn heal|Path fx in oth disease, r shoulder, subs for fx w routn heal +C2901374|T046|AB|M84.611G|ICD10CM|Path fx in oth disease, r shoulder, subs for fx w delay heal|Path fx in oth disease, r shoulder, subs for fx w delay heal +C2901375|T046|AB|M84.611K|ICD10CM|Path fx in oth disease, r shoulder, subs for fx w nonunion|Path fx in oth disease, r shoulder, subs for fx w nonunion +C2901376|T046|AB|M84.611P|ICD10CM|Path fx in oth disease, r shoulder, subs for fx w malunion|Path fx in oth disease, r shoulder, subs for fx w malunion +C2901377|T047|AB|M84.611S|ICD10CM|Pathological fracture in oth disease, r shoulder, sequela|Pathological fracture in oth disease, r shoulder, sequela +C2901377|T047|PT|M84.611S|ICD10CM|Pathological fracture in other disease, right shoulder, sequela|Pathological fracture in other disease, right shoulder, sequela +C2901378|T046|AB|M84.612|ICD10CM|Pathological fracture in other disease, left shoulder|Pathological fracture in other disease, left shoulder +C2901378|T046|HT|M84.612|ICD10CM|Pathological fracture in other disease, left shoulder|Pathological fracture in other disease, left shoulder +C2901379|T046|AB|M84.612A|ICD10CM|Pathological fracture in oth disease, left shoulder, init|Pathological fracture in oth disease, left shoulder, init +C2901379|T046|PT|M84.612A|ICD10CM|Pathological fracture in other disease, left shoulder, initial encounter for fracture|Pathological fracture in other disease, left shoulder, initial encounter for fracture +C2901380|T046|AB|M84.612D|ICD10CM|Path fx in oth disease, l shoulder, subs for fx w routn heal|Path fx in oth disease, l shoulder, subs for fx w routn heal +C2901381|T046|AB|M84.612G|ICD10CM|Path fx in oth disease, l shoulder, subs for fx w delay heal|Path fx in oth disease, l shoulder, subs for fx w delay heal +C2901382|T046|AB|M84.612K|ICD10CM|Path fx in oth disease, l shoulder, subs for fx w nonunion|Path fx in oth disease, l shoulder, subs for fx w nonunion +C2901383|T046|AB|M84.612P|ICD10CM|Path fx in oth disease, l shoulder, subs for fx w malunion|Path fx in oth disease, l shoulder, subs for fx w malunion +C2901384|T046|AB|M84.612S|ICD10CM|Pathological fracture in oth disease, left shoulder, sequela|Pathological fracture in oth disease, left shoulder, sequela +C2901384|T046|PT|M84.612S|ICD10CM|Pathological fracture in other disease, left shoulder, sequela|Pathological fracture in other disease, left shoulder, sequela +C2901385|T046|AB|M84.619|ICD10CM|Pathological fracture in other disease, unspecified shoulder|Pathological fracture in other disease, unspecified shoulder +C2901385|T046|HT|M84.619|ICD10CM|Pathological fracture in other disease, unspecified shoulder|Pathological fracture in other disease, unspecified shoulder +C2901386|T046|AB|M84.619A|ICD10CM|Pathological fracture in oth disease, unsp shoulder, init|Pathological fracture in oth disease, unsp shoulder, init +C2901386|T046|PT|M84.619A|ICD10CM|Pathological fracture in other disease, unspecified shoulder, initial encounter for fracture|Pathological fracture in other disease, unspecified shoulder, initial encounter for fracture +C2901387|T046|AB|M84.619D|ICD10CM|Path fx in oth disease, unsp shldr, subs for fx w routn heal|Path fx in oth disease, unsp shldr, subs for fx w routn heal +C2901388|T046|AB|M84.619G|ICD10CM|Path fx in oth disease, unsp shldr, subs for fx w delay heal|Path fx in oth disease, unsp shldr, subs for fx w delay heal +C2901389|T046|AB|M84.619K|ICD10CM|Path fx in oth disease, unsp shldr, subs for fx w nonunion|Path fx in oth disease, unsp shldr, subs for fx w nonunion +C2901390|T046|AB|M84.619P|ICD10CM|Path fx in oth disease, unsp shldr, subs for fx w malunion|Path fx in oth disease, unsp shldr, subs for fx w malunion +C2901391|T046|AB|M84.619S|ICD10CM|Pathological fracture in oth disease, unsp shoulder, sequela|Pathological fracture in oth disease, unsp shoulder, sequela +C2901391|T046|PT|M84.619S|ICD10CM|Pathological fracture in other disease, unspecified shoulder, sequela|Pathological fracture in other disease, unspecified shoulder, sequela +C2901392|T046|AB|M84.62|ICD10CM|Pathological fracture in other disease, humerus|Pathological fracture in other disease, humerus +C2901392|T046|HT|M84.62|ICD10CM|Pathological fracture in other disease, humerus|Pathological fracture in other disease, humerus +C2901393|T046|AB|M84.621|ICD10CM|Pathological fracture in other disease, right humerus|Pathological fracture in other disease, right humerus +C2901393|T046|HT|M84.621|ICD10CM|Pathological fracture in other disease, right humerus|Pathological fracture in other disease, right humerus +C2901394|T046|AB|M84.621A|ICD10CM|Pathological fracture in oth disease, right humerus, init|Pathological fracture in oth disease, right humerus, init +C2901394|T046|PT|M84.621A|ICD10CM|Pathological fracture in other disease, right humerus, initial encounter for fracture|Pathological fracture in other disease, right humerus, initial encounter for fracture +C2901395|T046|AB|M84.621D|ICD10CM|Path fx in oth disease, r humerus, subs for fx w routn heal|Path fx in oth disease, r humerus, subs for fx w routn heal +C2901396|T047|AB|M84.621G|ICD10CM|Path fx in oth disease, r humerus, subs for fx w delay heal|Path fx in oth disease, r humerus, subs for fx w delay heal +C2901397|T046|AB|M84.621K|ICD10CM|Path fx in oth disease, r humerus, subs for fx w nonunion|Path fx in oth disease, r humerus, subs for fx w nonunion +C2901398|T046|AB|M84.621P|ICD10CM|Path fx in oth disease, r humerus, subs for fx w malunion|Path fx in oth disease, r humerus, subs for fx w malunion +C2901399|T046|AB|M84.621S|ICD10CM|Pathological fracture in oth disease, right humerus, sequela|Pathological fracture in oth disease, right humerus, sequela +C2901399|T046|PT|M84.621S|ICD10CM|Pathological fracture in other disease, right humerus, sequela|Pathological fracture in other disease, right humerus, sequela +C2901400|T046|AB|M84.622|ICD10CM|Pathological fracture in other disease, left humerus|Pathological fracture in other disease, left humerus +C2901400|T046|HT|M84.622|ICD10CM|Pathological fracture in other disease, left humerus|Pathological fracture in other disease, left humerus +C2901401|T046|AB|M84.622A|ICD10CM|Pathological fracture in oth disease, left humerus, init|Pathological fracture in oth disease, left humerus, init +C2901401|T046|PT|M84.622A|ICD10CM|Pathological fracture in other disease, left humerus, initial encounter for fracture|Pathological fracture in other disease, left humerus, initial encounter for fracture +C2901402|T046|AB|M84.622D|ICD10CM|Path fx in oth disease, l humerus, subs for fx w routn heal|Path fx in oth disease, l humerus, subs for fx w routn heal +C2901403|T046|AB|M84.622G|ICD10CM|Path fx in oth disease, l humerus, subs for fx w delay heal|Path fx in oth disease, l humerus, subs for fx w delay heal +C2901404|T046|AB|M84.622K|ICD10CM|Path fx in oth disease, l humerus, subs for fx w nonunion|Path fx in oth disease, l humerus, subs for fx w nonunion +C2901405|T046|AB|M84.622P|ICD10CM|Path fx in oth disease, l humerus, subs for fx w malunion|Path fx in oth disease, l humerus, subs for fx w malunion +C2901406|T046|AB|M84.622S|ICD10CM|Pathological fracture in oth disease, left humerus, sequela|Pathological fracture in oth disease, left humerus, sequela +C2901406|T046|PT|M84.622S|ICD10CM|Pathological fracture in other disease, left humerus, sequela|Pathological fracture in other disease, left humerus, sequela +C2901407|T046|AB|M84.629|ICD10CM|Pathological fracture in other disease, unspecified humerus|Pathological fracture in other disease, unspecified humerus +C2901407|T046|HT|M84.629|ICD10CM|Pathological fracture in other disease, unspecified humerus|Pathological fracture in other disease, unspecified humerus +C2901408|T046|AB|M84.629A|ICD10CM|Pathological fracture in oth disease, unsp humerus, init|Pathological fracture in oth disease, unsp humerus, init +C2901408|T046|PT|M84.629A|ICD10CM|Pathological fracture in other disease, unspecified humerus, initial encounter for fracture|Pathological fracture in other disease, unspecified humerus, initial encounter for fracture +C2901409|T046|AB|M84.629D|ICD10CM|Path fx in oth dis, unsp humerus, subs for fx w routn heal|Path fx in oth dis, unsp humerus, subs for fx w routn heal +C2901410|T046|AB|M84.629G|ICD10CM|Path fx in oth dis, unsp humerus, subs for fx w delay heal|Path fx in oth dis, unsp humerus, subs for fx w delay heal +C2901411|T046|AB|M84.629K|ICD10CM|Path fx in oth disease, unsp humerus, subs for fx w nonunion|Path fx in oth disease, unsp humerus, subs for fx w nonunion +C2901412|T046|AB|M84.629P|ICD10CM|Path fx in oth disease, unsp humerus, subs for fx w malunion|Path fx in oth disease, unsp humerus, subs for fx w malunion +C2901413|T046|AB|M84.629S|ICD10CM|Pathological fracture in oth disease, unsp humerus, sequela|Pathological fracture in oth disease, unsp humerus, sequela +C2901413|T046|PT|M84.629S|ICD10CM|Pathological fracture in other disease, unspecified humerus, sequela|Pathological fracture in other disease, unspecified humerus, sequela +C2901414|T046|AB|M84.63|ICD10CM|Pathological fracture in other disease, ulna and radius|Pathological fracture in other disease, ulna and radius +C2901414|T046|HT|M84.63|ICD10CM|Pathological fracture in other disease, ulna and radius|Pathological fracture in other disease, ulna and radius +C2901415|T046|AB|M84.631|ICD10CM|Pathological fracture in other disease, right ulna|Pathological fracture in other disease, right ulna +C2901415|T046|HT|M84.631|ICD10CM|Pathological fracture in other disease, right ulna|Pathological fracture in other disease, right ulna +C2901416|T046|AB|M84.631A|ICD10CM|Pathological fracture in oth disease, right ulna, init|Pathological fracture in oth disease, right ulna, init +C2901416|T046|PT|M84.631A|ICD10CM|Pathological fracture in other disease, right ulna, initial encounter for fracture|Pathological fracture in other disease, right ulna, initial encounter for fracture +C2901417|T047|AB|M84.631D|ICD10CM|Path fx in oth disease, r ulna, subs for fx w routn heal|Path fx in oth disease, r ulna, subs for fx w routn heal +C2901418|T046|AB|M84.631G|ICD10CM|Path fx in oth disease, r ulna, subs for fx w delay heal|Path fx in oth disease, r ulna, subs for fx w delay heal +C2901419|T046|AB|M84.631K|ICD10CM|Path fracture in oth disease, r ulna, subs for fx w nonunion|Path fracture in oth disease, r ulna, subs for fx w nonunion +C2901419|T046|PT|M84.631K|ICD10CM|Pathological fracture in other disease, right ulna, subsequent encounter for fracture with nonunion|Pathological fracture in other disease, right ulna, subsequent encounter for fracture with nonunion +C2901420|T046|AB|M84.631P|ICD10CM|Path fracture in oth disease, r ulna, subs for fx w malunion|Path fracture in oth disease, r ulna, subs for fx w malunion +C2901420|T046|PT|M84.631P|ICD10CM|Pathological fracture in other disease, right ulna, subsequent encounter for fracture with malunion|Pathological fracture in other disease, right ulna, subsequent encounter for fracture with malunion +C2901421|T046|AB|M84.631S|ICD10CM|Pathological fracture in other disease, right ulna, sequela|Pathological fracture in other disease, right ulna, sequela +C2901421|T046|PT|M84.631S|ICD10CM|Pathological fracture in other disease, right ulna, sequela|Pathological fracture in other disease, right ulna, sequela +C2901422|T046|AB|M84.632|ICD10CM|Pathological fracture in other disease, left ulna|Pathological fracture in other disease, left ulna +C2901422|T046|HT|M84.632|ICD10CM|Pathological fracture in other disease, left ulna|Pathological fracture in other disease, left ulna +C2901423|T046|AB|M84.632A|ICD10CM|Pathological fracture in oth disease, left ulna, init for fx|Pathological fracture in oth disease, left ulna, init for fx +C2901423|T046|PT|M84.632A|ICD10CM|Pathological fracture in other disease, left ulna, initial encounter for fracture|Pathological fracture in other disease, left ulna, initial encounter for fracture +C2901424|T046|AB|M84.632D|ICD10CM|Path fx in oth disease, l ulna, subs for fx w routn heal|Path fx in oth disease, l ulna, subs for fx w routn heal +C2901425|T046|AB|M84.632G|ICD10CM|Path fx in oth disease, l ulna, subs for fx w delay heal|Path fx in oth disease, l ulna, subs for fx w delay heal +C2901426|T046|AB|M84.632K|ICD10CM|Path fracture in oth disease, l ulna, subs for fx w nonunion|Path fracture in oth disease, l ulna, subs for fx w nonunion +C2901426|T046|PT|M84.632K|ICD10CM|Pathological fracture in other disease, left ulna, subsequent encounter for fracture with nonunion|Pathological fracture in other disease, left ulna, subsequent encounter for fracture with nonunion +C2901427|T046|AB|M84.632P|ICD10CM|Path fracture in oth disease, l ulna, subs for fx w malunion|Path fracture in oth disease, l ulna, subs for fx w malunion +C2901427|T046|PT|M84.632P|ICD10CM|Pathological fracture in other disease, left ulna, subsequent encounter for fracture with malunion|Pathological fracture in other disease, left ulna, subsequent encounter for fracture with malunion +C2901428|T046|AB|M84.632S|ICD10CM|Pathological fracture in other disease, left ulna, sequela|Pathological fracture in other disease, left ulna, sequela +C2901428|T046|PT|M84.632S|ICD10CM|Pathological fracture in other disease, left ulna, sequela|Pathological fracture in other disease, left ulna, sequela +C2901429|T046|AB|M84.633|ICD10CM|Pathological fracture in other disease, right radius|Pathological fracture in other disease, right radius +C2901429|T046|HT|M84.633|ICD10CM|Pathological fracture in other disease, right radius|Pathological fracture in other disease, right radius +C2901430|T047|AB|M84.633A|ICD10CM|Pathological fracture in oth disease, right radius, init|Pathological fracture in oth disease, right radius, init +C2901430|T047|PT|M84.633A|ICD10CM|Pathological fracture in other disease, right radius, initial encounter for fracture|Pathological fracture in other disease, right radius, initial encounter for fracture +C2901431|T046|AB|M84.633D|ICD10CM|Path fx in oth disease, r radius, subs for fx w routn heal|Path fx in oth disease, r radius, subs for fx w routn heal +C2901432|T047|AB|M84.633G|ICD10CM|Path fx in oth disease, r radius, subs for fx w delay heal|Path fx in oth disease, r radius, subs for fx w delay heal +C2901433|T047|AB|M84.633K|ICD10CM|Path fx in oth disease, r radius, subs for fx w nonunion|Path fx in oth disease, r radius, subs for fx w nonunion +C2901434|T046|AB|M84.633P|ICD10CM|Path fx in oth disease, r radius, subs for fx w malunion|Path fx in oth disease, r radius, subs for fx w malunion +C2901435|T046|AB|M84.633S|ICD10CM|Pathological fracture in oth disease, right radius, sequela|Pathological fracture in oth disease, right radius, sequela +C2901435|T046|PT|M84.633S|ICD10CM|Pathological fracture in other disease, right radius, sequela|Pathological fracture in other disease, right radius, sequela +C2901436|T046|AB|M84.634|ICD10CM|Pathological fracture in other disease, left radius|Pathological fracture in other disease, left radius +C2901436|T046|HT|M84.634|ICD10CM|Pathological fracture in other disease, left radius|Pathological fracture in other disease, left radius +C2901437|T046|AB|M84.634A|ICD10CM|Pathological fracture in oth disease, left radius, init|Pathological fracture in oth disease, left radius, init +C2901437|T046|PT|M84.634A|ICD10CM|Pathological fracture in other disease, left radius, initial encounter for fracture|Pathological fracture in other disease, left radius, initial encounter for fracture +C2901438|T046|AB|M84.634D|ICD10CM|Path fx in oth dis, left radius, subs for fx w routn heal|Path fx in oth dis, left radius, subs for fx w routn heal +C2901439|T046|AB|M84.634G|ICD10CM|Path fx in oth dis, left radius, subs for fx w delay heal|Path fx in oth dis, left radius, subs for fx w delay heal +C2901440|T046|AB|M84.634K|ICD10CM|Path fx in oth disease, left radius, subs for fx w nonunion|Path fx in oth disease, left radius, subs for fx w nonunion +C2901440|T046|PT|M84.634K|ICD10CM|Pathological fracture in other disease, left radius, subsequent encounter for fracture with nonunion|Pathological fracture in other disease, left radius, subsequent encounter for fracture with nonunion +C2901441|T046|AB|M84.634P|ICD10CM|Path fx in oth disease, left radius, subs for fx w malunion|Path fx in oth disease, left radius, subs for fx w malunion +C2901441|T046|PT|M84.634P|ICD10CM|Pathological fracture in other disease, left radius, subsequent encounter for fracture with malunion|Pathological fracture in other disease, left radius, subsequent encounter for fracture with malunion +C2901442|T046|AB|M84.634S|ICD10CM|Pathological fracture in other disease, left radius, sequela|Pathological fracture in other disease, left radius, sequela +C2901442|T046|PT|M84.634S|ICD10CM|Pathological fracture in other disease, left radius, sequela|Pathological fracture in other disease, left radius, sequela +C2901443|T046|AB|M84.639|ICD10CM|Pathological fracture in other disease, unsp ulna and radius|Pathological fracture in other disease, unsp ulna and radius +C2901443|T046|HT|M84.639|ICD10CM|Pathological fracture in other disease, unspecified ulna and radius|Pathological fracture in other disease, unspecified ulna and radius +C2901444|T046|AB|M84.639A|ICD10CM|Path fracture in oth disease, unsp ulna and radius, init|Path fracture in oth disease, unsp ulna and radius, init +C2901444|T046|PT|M84.639A|ICD10CM|Pathological fracture in other disease, unspecified ulna and radius, initial encounter for fracture|Pathological fracture in other disease, unspecified ulna and radius, initial encounter for fracture +C2901445|T046|AB|M84.639D|ICD10CM|Path fx in oth dis, unsp ulna & rad, 7thD|Path fx in oth dis, unsp ulna & rad, 7thD +C2901446|T046|AB|M84.639G|ICD10CM|Path fx in oth dis, unsp ulna & rad, 7thG|Path fx in oth dis, unsp ulna & rad, 7thG +C2901447|T046|AB|M84.639K|ICD10CM|Path fx in oth dis, unsp ulna & rad, subs for fx w nonunion|Path fx in oth dis, unsp ulna & rad, subs for fx w nonunion +C2901448|T046|AB|M84.639P|ICD10CM|Path fx in oth dis, unsp ulna & rad, subs for fx w malunion|Path fx in oth dis, unsp ulna & rad, subs for fx w malunion +C2901449|T046|AB|M84.639S|ICD10CM|Path fracture in oth disease, unsp ulna and radius, sequela|Path fracture in oth disease, unsp ulna and radius, sequela +C2901449|T046|PT|M84.639S|ICD10CM|Pathological fracture in other disease, unspecified ulna and radius, sequela|Pathological fracture in other disease, unspecified ulna and radius, sequela +C2901450|T046|AB|M84.64|ICD10CM|Pathological fracture in other disease, hand|Pathological fracture in other disease, hand +C2901450|T046|HT|M84.64|ICD10CM|Pathological fracture in other disease, hand|Pathological fracture in other disease, hand +C2901451|T046|AB|M84.641|ICD10CM|Pathological fracture in other disease, right hand|Pathological fracture in other disease, right hand +C2901451|T046|HT|M84.641|ICD10CM|Pathological fracture in other disease, right hand|Pathological fracture in other disease, right hand +C2901452|T046|AB|M84.641A|ICD10CM|Pathological fracture in oth disease, right hand, init|Pathological fracture in oth disease, right hand, init +C2901452|T046|PT|M84.641A|ICD10CM|Pathological fracture in other disease, right hand, initial encounter for fracture|Pathological fracture in other disease, right hand, initial encounter for fracture +C2901453|T047|AB|M84.641D|ICD10CM|Path fx in oth disease, r hand, subs for fx w routn heal|Path fx in oth disease, r hand, subs for fx w routn heal +C2901454|T046|AB|M84.641G|ICD10CM|Path fx in oth disease, r hand, subs for fx w delay heal|Path fx in oth disease, r hand, subs for fx w delay heal +C2901455|T047|AB|M84.641K|ICD10CM|Path fracture in oth disease, r hand, subs for fx w nonunion|Path fracture in oth disease, r hand, subs for fx w nonunion +C2901455|T047|PT|M84.641K|ICD10CM|Pathological fracture in other disease, right hand, subsequent encounter for fracture with nonunion|Pathological fracture in other disease, right hand, subsequent encounter for fracture with nonunion +C2901456|T046|AB|M84.641P|ICD10CM|Path fracture in oth disease, r hand, subs for fx w malunion|Path fracture in oth disease, r hand, subs for fx w malunion +C2901456|T046|PT|M84.641P|ICD10CM|Pathological fracture in other disease, right hand, subsequent encounter for fracture with malunion|Pathological fracture in other disease, right hand, subsequent encounter for fracture with malunion +C2901457|T046|AB|M84.641S|ICD10CM|Pathological fracture in other disease, right hand, sequela|Pathological fracture in other disease, right hand, sequela +C2901457|T046|PT|M84.641S|ICD10CM|Pathological fracture in other disease, right hand, sequela|Pathological fracture in other disease, right hand, sequela +C2901458|T046|AB|M84.642|ICD10CM|Pathological fracture in other disease, left hand|Pathological fracture in other disease, left hand +C2901458|T046|HT|M84.642|ICD10CM|Pathological fracture in other disease, left hand|Pathological fracture in other disease, left hand +C2901459|T046|AB|M84.642A|ICD10CM|Pathological fracture in oth disease, left hand, init for fx|Pathological fracture in oth disease, left hand, init for fx +C2901459|T046|PT|M84.642A|ICD10CM|Pathological fracture in other disease, left hand, initial encounter for fracture|Pathological fracture in other disease, left hand, initial encounter for fracture +C2901460|T046|AB|M84.642D|ICD10CM|Path fx in oth disease, l hand, subs for fx w routn heal|Path fx in oth disease, l hand, subs for fx w routn heal +C2901461|T046|AB|M84.642G|ICD10CM|Path fx in oth disease, l hand, subs for fx w delay heal|Path fx in oth disease, l hand, subs for fx w delay heal +C2901462|T046|AB|M84.642K|ICD10CM|Path fracture in oth disease, l hand, subs for fx w nonunion|Path fracture in oth disease, l hand, subs for fx w nonunion +C2901462|T046|PT|M84.642K|ICD10CM|Pathological fracture in other disease, left hand, subsequent encounter for fracture with nonunion|Pathological fracture in other disease, left hand, subsequent encounter for fracture with nonunion +C2901463|T046|AB|M84.642P|ICD10CM|Path fracture in oth disease, l hand, subs for fx w malunion|Path fracture in oth disease, l hand, subs for fx w malunion +C2901463|T046|PT|M84.642P|ICD10CM|Pathological fracture in other disease, left hand, subsequent encounter for fracture with malunion|Pathological fracture in other disease, left hand, subsequent encounter for fracture with malunion +C2901464|T046|AB|M84.642S|ICD10CM|Pathological fracture in other disease, left hand, sequela|Pathological fracture in other disease, left hand, sequela +C2901464|T046|PT|M84.642S|ICD10CM|Pathological fracture in other disease, left hand, sequela|Pathological fracture in other disease, left hand, sequela +C2901465|T046|AB|M84.649|ICD10CM|Pathological fracture in other disease, unspecified hand|Pathological fracture in other disease, unspecified hand +C2901465|T046|HT|M84.649|ICD10CM|Pathological fracture in other disease, unspecified hand|Pathological fracture in other disease, unspecified hand +C2901466|T046|AB|M84.649A|ICD10CM|Pathological fracture in oth disease, unsp hand, init for fx|Pathological fracture in oth disease, unsp hand, init for fx +C2901466|T046|PT|M84.649A|ICD10CM|Pathological fracture in other disease, unspecified hand, initial encounter for fracture|Pathological fracture in other disease, unspecified hand, initial encounter for fracture +C2901467|T046|AB|M84.649D|ICD10CM|Path fx in oth disease, unsp hand, subs for fx w routn heal|Path fx in oth disease, unsp hand, subs for fx w routn heal +C2901468|T046|AB|M84.649G|ICD10CM|Path fx in oth disease, unsp hand, subs for fx w delay heal|Path fx in oth disease, unsp hand, subs for fx w delay heal +C2901469|T046|AB|M84.649K|ICD10CM|Path fx in oth disease, unsp hand, subs for fx w nonunion|Path fx in oth disease, unsp hand, subs for fx w nonunion +C2901470|T046|AB|M84.649P|ICD10CM|Path fx in oth disease, unsp hand, subs for fx w malunion|Path fx in oth disease, unsp hand, subs for fx w malunion +C2901471|T046|AB|M84.649S|ICD10CM|Pathological fracture in other disease, unsp hand, sequela|Pathological fracture in other disease, unsp hand, sequela +C2901471|T046|PT|M84.649S|ICD10CM|Pathological fracture in other disease, unspecified hand, sequela|Pathological fracture in other disease, unspecified hand, sequela +C2901472|T046|AB|M84.65|ICD10CM|Pathological fracture in other disease, pelvis and femur|Pathological fracture in other disease, pelvis and femur +C2901472|T046|HT|M84.65|ICD10CM|Pathological fracture in other disease, pelvis and femur|Pathological fracture in other disease, pelvis and femur +C2901473|T046|AB|M84.650|ICD10CM|Pathological fracture in other disease, pelvis|Pathological fracture in other disease, pelvis +C2901473|T046|HT|M84.650|ICD10CM|Pathological fracture in other disease, pelvis|Pathological fracture in other disease, pelvis +C2901474|T046|AB|M84.650A|ICD10CM|Pathological fracture in oth disease, pelvis, init for fx|Pathological fracture in oth disease, pelvis, init for fx +C2901474|T046|PT|M84.650A|ICD10CM|Pathological fracture in other disease, pelvis, initial encounter for fracture|Pathological fracture in other disease, pelvis, initial encounter for fracture +C2901475|T046|AB|M84.650D|ICD10CM|Path fx in oth disease, pelvis, subs for fx w routn heal|Path fx in oth disease, pelvis, subs for fx w routn heal +C2901476|T047|AB|M84.650G|ICD10CM|Path fx in oth disease, pelvis, subs for fx w delay heal|Path fx in oth disease, pelvis, subs for fx w delay heal +C2901477|T046|AB|M84.650K|ICD10CM|Path fracture in oth disease, pelvis, subs for fx w nonunion|Path fracture in oth disease, pelvis, subs for fx w nonunion +C2901477|T046|PT|M84.650K|ICD10CM|Pathological fracture in other disease, pelvis, subsequent encounter for fracture with nonunion|Pathological fracture in other disease, pelvis, subsequent encounter for fracture with nonunion +C2901478|T046|AB|M84.650P|ICD10CM|Path fracture in oth disease, pelvis, subs for fx w malunion|Path fracture in oth disease, pelvis, subs for fx w malunion +C2901478|T046|PT|M84.650P|ICD10CM|Pathological fracture in other disease, pelvis, subsequent encounter for fracture with malunion|Pathological fracture in other disease, pelvis, subsequent encounter for fracture with malunion +C2901479|T046|AB|M84.650S|ICD10CM|Pathological fracture in other disease, pelvis, sequela|Pathological fracture in other disease, pelvis, sequela +C2901479|T046|PT|M84.650S|ICD10CM|Pathological fracture in other disease, pelvis, sequela|Pathological fracture in other disease, pelvis, sequela +C2901480|T046|AB|M84.651|ICD10CM|Pathological fracture in other disease, right femur|Pathological fracture in other disease, right femur +C2901480|T046|HT|M84.651|ICD10CM|Pathological fracture in other disease, right femur|Pathological fracture in other disease, right femur +C2901481|T046|AB|M84.651A|ICD10CM|Pathological fracture in oth disease, right femur, init|Pathological fracture in oth disease, right femur, init +C2901481|T046|PT|M84.651A|ICD10CM|Pathological fracture in other disease, right femur, initial encounter for fracture|Pathological fracture in other disease, right femur, initial encounter for fracture +C2901482|T046|AB|M84.651D|ICD10CM|Path fx in oth disease, r femur, subs for fx w routn heal|Path fx in oth disease, r femur, subs for fx w routn heal +C2901483|T046|AB|M84.651G|ICD10CM|Path fx in oth disease, r femur, subs for fx w delay heal|Path fx in oth disease, r femur, subs for fx w delay heal +C2901484|T046|AB|M84.651K|ICD10CM|Path fx in oth disease, r femur, subs for fx w nonunion|Path fx in oth disease, r femur, subs for fx w nonunion +C2901484|T046|PT|M84.651K|ICD10CM|Pathological fracture in other disease, right femur, subsequent encounter for fracture with nonunion|Pathological fracture in other disease, right femur, subsequent encounter for fracture with nonunion +C2901485|T046|AB|M84.651P|ICD10CM|Path fx in oth disease, r femur, subs for fx w malunion|Path fx in oth disease, r femur, subs for fx w malunion +C2901485|T046|PT|M84.651P|ICD10CM|Pathological fracture in other disease, right femur, subsequent encounter for fracture with malunion|Pathological fracture in other disease, right femur, subsequent encounter for fracture with malunion +C2901486|T046|AB|M84.651S|ICD10CM|Pathological fracture in other disease, right femur, sequela|Pathological fracture in other disease, right femur, sequela +C2901486|T046|PT|M84.651S|ICD10CM|Pathological fracture in other disease, right femur, sequela|Pathological fracture in other disease, right femur, sequela +C2901487|T046|AB|M84.652|ICD10CM|Pathological fracture in other disease, left femur|Pathological fracture in other disease, left femur +C2901487|T046|HT|M84.652|ICD10CM|Pathological fracture in other disease, left femur|Pathological fracture in other disease, left femur +C2901488|T046|AB|M84.652A|ICD10CM|Pathological fracture in oth disease, left femur, init|Pathological fracture in oth disease, left femur, init +C2901488|T046|PT|M84.652A|ICD10CM|Pathological fracture in other disease, left femur, initial encounter for fracture|Pathological fracture in other disease, left femur, initial encounter for fracture +C2901489|T046|AB|M84.652D|ICD10CM|Path fx in oth disease, l femur, subs for fx w routn heal|Path fx in oth disease, l femur, subs for fx w routn heal +C2901490|T046|AB|M84.652G|ICD10CM|Path fx in oth disease, l femur, subs for fx w delay heal|Path fx in oth disease, l femur, subs for fx w delay heal +C2901491|T046|AB|M84.652K|ICD10CM|Path fx in oth disease, l femur, subs for fx w nonunion|Path fx in oth disease, l femur, subs for fx w nonunion +C2901491|T046|PT|M84.652K|ICD10CM|Pathological fracture in other disease, left femur, subsequent encounter for fracture with nonunion|Pathological fracture in other disease, left femur, subsequent encounter for fracture with nonunion +C2901492|T046|AB|M84.652P|ICD10CM|Path fx in oth disease, l femur, subs for fx w malunion|Path fx in oth disease, l femur, subs for fx w malunion +C2901492|T046|PT|M84.652P|ICD10CM|Pathological fracture in other disease, left femur, subsequent encounter for fracture with malunion|Pathological fracture in other disease, left femur, subsequent encounter for fracture with malunion +C2901493|T046|AB|M84.652S|ICD10CM|Pathological fracture in other disease, left femur, sequela|Pathological fracture in other disease, left femur, sequela +C2901493|T046|PT|M84.652S|ICD10CM|Pathological fracture in other disease, left femur, sequela|Pathological fracture in other disease, left femur, sequela +C2901494|T046|AB|M84.653|ICD10CM|Pathological fracture in other disease, unspecified femur|Pathological fracture in other disease, unspecified femur +C2901494|T046|HT|M84.653|ICD10CM|Pathological fracture in other disease, unspecified femur|Pathological fracture in other disease, unspecified femur +C2901495|T046|AB|M84.653A|ICD10CM|Pathological fracture in oth disease, unsp femur, init|Pathological fracture in oth disease, unsp femur, init +C2901495|T046|PT|M84.653A|ICD10CM|Pathological fracture in other disease, unspecified femur, initial encounter for fracture|Pathological fracture in other disease, unspecified femur, initial encounter for fracture +C2901496|T046|AB|M84.653D|ICD10CM|Path fx in oth disease, unsp femur, subs for fx w routn heal|Path fx in oth disease, unsp femur, subs for fx w routn heal +C2901497|T046|AB|M84.653G|ICD10CM|Path fx in oth disease, unsp femur, subs for fx w delay heal|Path fx in oth disease, unsp femur, subs for fx w delay heal +C2901498|T046|AB|M84.653K|ICD10CM|Path fx in oth disease, unsp femur, subs for fx w nonunion|Path fx in oth disease, unsp femur, subs for fx w nonunion +C2901499|T046|AB|M84.653P|ICD10CM|Path fx in oth disease, unsp femur, subs for fx w malunion|Path fx in oth disease, unsp femur, subs for fx w malunion +C2901500|T046|AB|M84.653S|ICD10CM|Pathological fracture in other disease, unsp femur, sequela|Pathological fracture in other disease, unsp femur, sequela +C2901500|T046|PT|M84.653S|ICD10CM|Pathological fracture in other disease, unspecified femur, sequela|Pathological fracture in other disease, unspecified femur, sequela +C2901501|T046|AB|M84.659|ICD10CM|Pathological fracture in other disease, hip, unspecified|Pathological fracture in other disease, hip, unspecified +C2901501|T046|HT|M84.659|ICD10CM|Pathological fracture in other disease, hip, unspecified|Pathological fracture in other disease, hip, unspecified +C2901502|T046|AB|M84.659A|ICD10CM|Pathological fracture in oth disease, hip, unsp, init for fx|Pathological fracture in oth disease, hip, unsp, init for fx +C2901502|T046|PT|M84.659A|ICD10CM|Pathological fracture in other disease, hip, unspecified, initial encounter for fracture|Pathological fracture in other disease, hip, unspecified, initial encounter for fracture +C2901503|T046|AB|M84.659D|ICD10CM|Path fx in oth disease, hip, unsp, subs for fx w routn heal|Path fx in oth disease, hip, unsp, subs for fx w routn heal +C2901504|T046|AB|M84.659G|ICD10CM|Path fx in oth disease, hip, unsp, subs for fx w delay heal|Path fx in oth disease, hip, unsp, subs for fx w delay heal +C2901505|T046|AB|M84.659K|ICD10CM|Path fx in oth disease, hip, unsp, subs for fx w nonunion|Path fx in oth disease, hip, unsp, subs for fx w nonunion +C2901506|T046|AB|M84.659P|ICD10CM|Path fx in oth disease, hip, unsp, subs for fx w malunion|Path fx in oth disease, hip, unsp, subs for fx w malunion +C2901507|T046|AB|M84.659S|ICD10CM|Pathological fracture in other disease, hip, unsp, sequela|Pathological fracture in other disease, hip, unsp, sequela +C2901507|T046|PT|M84.659S|ICD10CM|Pathological fracture in other disease, hip, unspecified, sequela|Pathological fracture in other disease, hip, unspecified, sequela +C2901508|T046|AB|M84.66|ICD10CM|Pathological fracture in other disease, tibia and fibula|Pathological fracture in other disease, tibia and fibula +C2901508|T046|HT|M84.66|ICD10CM|Pathological fracture in other disease, tibia and fibula|Pathological fracture in other disease, tibia and fibula +C2901509|T046|AB|M84.661|ICD10CM|Pathological fracture in other disease, right tibia|Pathological fracture in other disease, right tibia +C2901509|T046|HT|M84.661|ICD10CM|Pathological fracture in other disease, right tibia|Pathological fracture in other disease, right tibia +C2901510|T047|AB|M84.661A|ICD10CM|Pathological fracture in oth disease, right tibia, init|Pathological fracture in oth disease, right tibia, init +C2901510|T047|PT|M84.661A|ICD10CM|Pathological fracture in other disease, right tibia, initial encounter for fracture|Pathological fracture in other disease, right tibia, initial encounter for fracture +C2901511|T047|AB|M84.661D|ICD10CM|Path fx in oth disease, r tibia, subs for fx w routn heal|Path fx in oth disease, r tibia, subs for fx w routn heal +C2901512|T046|AB|M84.661G|ICD10CM|Path fx in oth disease, r tibia, subs for fx w delay heal|Path fx in oth disease, r tibia, subs for fx w delay heal +C2901513|T046|AB|M84.661K|ICD10CM|Path fx in oth disease, r tibia, subs for fx w nonunion|Path fx in oth disease, r tibia, subs for fx w nonunion +C2901513|T046|PT|M84.661K|ICD10CM|Pathological fracture in other disease, right tibia, subsequent encounter for fracture with nonunion|Pathological fracture in other disease, right tibia, subsequent encounter for fracture with nonunion +C2901514|T046|AB|M84.661P|ICD10CM|Path fx in oth disease, r tibia, subs for fx w malunion|Path fx in oth disease, r tibia, subs for fx w malunion +C2901514|T046|PT|M84.661P|ICD10CM|Pathological fracture in other disease, right tibia, subsequent encounter for fracture with malunion|Pathological fracture in other disease, right tibia, subsequent encounter for fracture with malunion +C2901515|T046|AB|M84.661S|ICD10CM|Pathological fracture in other disease, right tibia, sequela|Pathological fracture in other disease, right tibia, sequela +C2901515|T046|PT|M84.661S|ICD10CM|Pathological fracture in other disease, right tibia, sequela|Pathological fracture in other disease, right tibia, sequela +C2901516|T046|AB|M84.662|ICD10CM|Pathological fracture in other disease, left tibia|Pathological fracture in other disease, left tibia +C2901516|T046|HT|M84.662|ICD10CM|Pathological fracture in other disease, left tibia|Pathological fracture in other disease, left tibia +C2901517|T046|AB|M84.662A|ICD10CM|Pathological fracture in oth disease, left tibia, init|Pathological fracture in oth disease, left tibia, init +C2901517|T046|PT|M84.662A|ICD10CM|Pathological fracture in other disease, left tibia, initial encounter for fracture|Pathological fracture in other disease, left tibia, initial encounter for fracture +C2901518|T046|AB|M84.662D|ICD10CM|Path fx in oth disease, l tibia, subs for fx w routn heal|Path fx in oth disease, l tibia, subs for fx w routn heal +C2901519|T046|AB|M84.662G|ICD10CM|Path fx in oth disease, l tibia, subs for fx w delay heal|Path fx in oth disease, l tibia, subs for fx w delay heal +C2901520|T046|AB|M84.662K|ICD10CM|Path fx in oth disease, l tibia, subs for fx w nonunion|Path fx in oth disease, l tibia, subs for fx w nonunion +C2901520|T046|PT|M84.662K|ICD10CM|Pathological fracture in other disease, left tibia, subsequent encounter for fracture with nonunion|Pathological fracture in other disease, left tibia, subsequent encounter for fracture with nonunion +C2901521|T046|AB|M84.662P|ICD10CM|Path fx in oth disease, l tibia, subs for fx w malunion|Path fx in oth disease, l tibia, subs for fx w malunion +C2901521|T046|PT|M84.662P|ICD10CM|Pathological fracture in other disease, left tibia, subsequent encounter for fracture with malunion|Pathological fracture in other disease, left tibia, subsequent encounter for fracture with malunion +C2901522|T046|AB|M84.662S|ICD10CM|Pathological fracture in other disease, left tibia, sequela|Pathological fracture in other disease, left tibia, sequela +C2901522|T046|PT|M84.662S|ICD10CM|Pathological fracture in other disease, left tibia, sequela|Pathological fracture in other disease, left tibia, sequela +C2901523|T046|AB|M84.663|ICD10CM|Pathological fracture in other disease, right fibula|Pathological fracture in other disease, right fibula +C2901523|T046|HT|M84.663|ICD10CM|Pathological fracture in other disease, right fibula|Pathological fracture in other disease, right fibula +C2901524|T046|AB|M84.663A|ICD10CM|Pathological fracture in oth disease, right fibula, init|Pathological fracture in oth disease, right fibula, init +C2901524|T046|PT|M84.663A|ICD10CM|Pathological fracture in other disease, right fibula, initial encounter for fracture|Pathological fracture in other disease, right fibula, initial encounter for fracture +C2901525|T047|AB|M84.663D|ICD10CM|Path fx in oth disease, r fibula, subs for fx w routn heal|Path fx in oth disease, r fibula, subs for fx w routn heal +C2901526|T046|AB|M84.663G|ICD10CM|Path fx in oth disease, r fibula, subs for fx w delay heal|Path fx in oth disease, r fibula, subs for fx w delay heal +C2901527|T046|AB|M84.663K|ICD10CM|Path fx in oth disease, r fibula, subs for fx w nonunion|Path fx in oth disease, r fibula, subs for fx w nonunion +C2901528|T046|AB|M84.663P|ICD10CM|Path fx in oth disease, r fibula, subs for fx w malunion|Path fx in oth disease, r fibula, subs for fx w malunion +C2901529|T046|AB|M84.663S|ICD10CM|Pathological fracture in oth disease, right fibula, sequela|Pathological fracture in oth disease, right fibula, sequela +C2901529|T046|PT|M84.663S|ICD10CM|Pathological fracture in other disease, right fibula, sequela|Pathological fracture in other disease, right fibula, sequela +C2901530|T046|AB|M84.664|ICD10CM|Pathological fracture in other disease, left fibula|Pathological fracture in other disease, left fibula +C2901530|T046|HT|M84.664|ICD10CM|Pathological fracture in other disease, left fibula|Pathological fracture in other disease, left fibula +C2901531|T046|AB|M84.664A|ICD10CM|Pathological fracture in oth disease, left fibula, init|Pathological fracture in oth disease, left fibula, init +C2901531|T046|PT|M84.664A|ICD10CM|Pathological fracture in other disease, left fibula, initial encounter for fracture|Pathological fracture in other disease, left fibula, initial encounter for fracture +C2901532|T046|AB|M84.664D|ICD10CM|Path fx in oth disease, l fibula, subs for fx w routn heal|Path fx in oth disease, l fibula, subs for fx w routn heal +C2901533|T046|AB|M84.664G|ICD10CM|Path fx in oth disease, l fibula, subs for fx w delay heal|Path fx in oth disease, l fibula, subs for fx w delay heal +C2901534|T046|AB|M84.664K|ICD10CM|Path fx in oth disease, l fibula, subs for fx w nonunion|Path fx in oth disease, l fibula, subs for fx w nonunion +C2901534|T046|PT|M84.664K|ICD10CM|Pathological fracture in other disease, left fibula, subsequent encounter for fracture with nonunion|Pathological fracture in other disease, left fibula, subsequent encounter for fracture with nonunion +C2901535|T046|AB|M84.664P|ICD10CM|Path fx in oth disease, l fibula, subs for fx w malunion|Path fx in oth disease, l fibula, subs for fx w malunion +C2901535|T046|PT|M84.664P|ICD10CM|Pathological fracture in other disease, left fibula, subsequent encounter for fracture with malunion|Pathological fracture in other disease, left fibula, subsequent encounter for fracture with malunion +C2901536|T046|AB|M84.664S|ICD10CM|Pathological fracture in other disease, left fibula, sequela|Pathological fracture in other disease, left fibula, sequela +C2901536|T046|PT|M84.664S|ICD10CM|Pathological fracture in other disease, left fibula, sequela|Pathological fracture in other disease, left fibula, sequela +C2901537|T046|AB|M84.669|ICD10CM|Pathological fracture in oth disease, unsp tibia and fibula|Pathological fracture in oth disease, unsp tibia and fibula +C2901537|T046|HT|M84.669|ICD10CM|Pathological fracture in other disease, unspecified tibia and fibula|Pathological fracture in other disease, unspecified tibia and fibula +C2901538|T046|AB|M84.669A|ICD10CM|Path fracture in oth disease, unsp tibia and fibula, init|Path fracture in oth disease, unsp tibia and fibula, init +C2901538|T046|PT|M84.669A|ICD10CM|Pathological fracture in other disease, unspecified tibia and fibula, initial encounter for fracture|Pathological fracture in other disease, unspecified tibia and fibula, initial encounter for fracture +C2901539|T046|AB|M84.669D|ICD10CM|Path fx in oth dis, unsp tibia & fibula, 7thD|Path fx in oth dis, unsp tibia & fibula, 7thD +C2901540|T046|AB|M84.669G|ICD10CM|Path fx in oth dis, unsp tibia & fibula, 7thG|Path fx in oth dis, unsp tibia & fibula, 7thG +C2901541|T046|AB|M84.669K|ICD10CM|Path fx in oth dis, unsp tibia & fibula, 7thK|Path fx in oth dis, unsp tibia & fibula, 7thK +C2901542|T046|AB|M84.669P|ICD10CM|Path fx in oth dis, unsp tibia & fibula, 7thP|Path fx in oth dis, unsp tibia & fibula, 7thP +C2901543|T046|AB|M84.669S|ICD10CM|Path fracture in oth disease, unsp tibia and fibula, sequela|Path fracture in oth disease, unsp tibia and fibula, sequela +C2901543|T046|PT|M84.669S|ICD10CM|Pathological fracture in other disease, unspecified tibia and fibula, sequela|Pathological fracture in other disease, unspecified tibia and fibula, sequela +C2901544|T046|AB|M84.67|ICD10CM|Pathological fracture in other disease, ankle and foot|Pathological fracture in other disease, ankle and foot +C2901544|T046|HT|M84.67|ICD10CM|Pathological fracture in other disease, ankle and foot|Pathological fracture in other disease, ankle and foot +C2901545|T046|AB|M84.671|ICD10CM|Pathological fracture in other disease, right ankle|Pathological fracture in other disease, right ankle +C2901545|T046|HT|M84.671|ICD10CM|Pathological fracture in other disease, right ankle|Pathological fracture in other disease, right ankle +C2901546|T046|AB|M84.671A|ICD10CM|Pathological fracture in oth disease, right ankle, init|Pathological fracture in oth disease, right ankle, init +C2901546|T046|PT|M84.671A|ICD10CM|Pathological fracture in other disease, right ankle, initial encounter for fracture|Pathological fracture in other disease, right ankle, initial encounter for fracture +C2901547|T046|AB|M84.671D|ICD10CM|Path fx in oth disease, r ankle, subs for fx w routn heal|Path fx in oth disease, r ankle, subs for fx w routn heal +C2901548|T047|AB|M84.671G|ICD10CM|Path fx in oth disease, r ankle, subs for fx w delay heal|Path fx in oth disease, r ankle, subs for fx w delay heal +C2901549|T046|AB|M84.671K|ICD10CM|Path fx in oth disease, r ankle, subs for fx w nonunion|Path fx in oth disease, r ankle, subs for fx w nonunion +C2901549|T046|PT|M84.671K|ICD10CM|Pathological fracture in other disease, right ankle, subsequent encounter for fracture with nonunion|Pathological fracture in other disease, right ankle, subsequent encounter for fracture with nonunion +C2901550|T046|AB|M84.671P|ICD10CM|Path fx in oth disease, r ankle, subs for fx w malunion|Path fx in oth disease, r ankle, subs for fx w malunion +C2901550|T046|PT|M84.671P|ICD10CM|Pathological fracture in other disease, right ankle, subsequent encounter for fracture with malunion|Pathological fracture in other disease, right ankle, subsequent encounter for fracture with malunion +C2901551|T046|AB|M84.671S|ICD10CM|Pathological fracture in other disease, right ankle, sequela|Pathological fracture in other disease, right ankle, sequela +C2901551|T046|PT|M84.671S|ICD10CM|Pathological fracture in other disease, right ankle, sequela|Pathological fracture in other disease, right ankle, sequela +C2901552|T046|AB|M84.672|ICD10CM|Pathological fracture in other disease, left ankle|Pathological fracture in other disease, left ankle +C2901552|T046|HT|M84.672|ICD10CM|Pathological fracture in other disease, left ankle|Pathological fracture in other disease, left ankle +C2901553|T046|AB|M84.672A|ICD10CM|Pathological fracture in oth disease, left ankle, init|Pathological fracture in oth disease, left ankle, init +C2901553|T046|PT|M84.672A|ICD10CM|Pathological fracture in other disease, left ankle, initial encounter for fracture|Pathological fracture in other disease, left ankle, initial encounter for fracture +C2901554|T046|AB|M84.672D|ICD10CM|Path fx in oth disease, l ankle, subs for fx w routn heal|Path fx in oth disease, l ankle, subs for fx w routn heal +C2901555|T046|AB|M84.672G|ICD10CM|Path fx in oth disease, l ankle, subs for fx w delay heal|Path fx in oth disease, l ankle, subs for fx w delay heal +C2901556|T046|AB|M84.672K|ICD10CM|Path fx in oth disease, l ankle, subs for fx w nonunion|Path fx in oth disease, l ankle, subs for fx w nonunion +C2901556|T046|PT|M84.672K|ICD10CM|Pathological fracture in other disease, left ankle, subsequent encounter for fracture with nonunion|Pathological fracture in other disease, left ankle, subsequent encounter for fracture with nonunion +C2901557|T046|AB|M84.672P|ICD10CM|Path fx in oth disease, l ankle, subs for fx w malunion|Path fx in oth disease, l ankle, subs for fx w malunion +C2901557|T046|PT|M84.672P|ICD10CM|Pathological fracture in other disease, left ankle, subsequent encounter for fracture with malunion|Pathological fracture in other disease, left ankle, subsequent encounter for fracture with malunion +C2901558|T046|AB|M84.672S|ICD10CM|Pathological fracture in other disease, left ankle, sequela|Pathological fracture in other disease, left ankle, sequela +C2901558|T046|PT|M84.672S|ICD10CM|Pathological fracture in other disease, left ankle, sequela|Pathological fracture in other disease, left ankle, sequela +C2901559|T046|AB|M84.673|ICD10CM|Pathological fracture in other disease, unspecified ankle|Pathological fracture in other disease, unspecified ankle +C2901559|T046|HT|M84.673|ICD10CM|Pathological fracture in other disease, unspecified ankle|Pathological fracture in other disease, unspecified ankle +C2901560|T046|AB|M84.673A|ICD10CM|Pathological fracture in oth disease, unsp ankle, init|Pathological fracture in oth disease, unsp ankle, init +C2901560|T046|PT|M84.673A|ICD10CM|Pathological fracture in other disease, unspecified ankle, initial encounter for fracture|Pathological fracture in other disease, unspecified ankle, initial encounter for fracture +C2901561|T047|AB|M84.673D|ICD10CM|Path fx in oth disease, unsp ankle, subs for fx w routn heal|Path fx in oth disease, unsp ankle, subs for fx w routn heal +C2901562|T046|AB|M84.673G|ICD10CM|Path fx in oth disease, unsp ankle, subs for fx w delay heal|Path fx in oth disease, unsp ankle, subs for fx w delay heal +C2901563|T046|AB|M84.673K|ICD10CM|Path fx in oth disease, unsp ankle, subs for fx w nonunion|Path fx in oth disease, unsp ankle, subs for fx w nonunion +C2901564|T046|AB|M84.673P|ICD10CM|Path fx in oth disease, unsp ankle, subs for fx w malunion|Path fx in oth disease, unsp ankle, subs for fx w malunion +C2901565|T046|AB|M84.673S|ICD10CM|Pathological fracture in other disease, unsp ankle, sequela|Pathological fracture in other disease, unsp ankle, sequela +C2901565|T046|PT|M84.673S|ICD10CM|Pathological fracture in other disease, unspecified ankle, sequela|Pathological fracture in other disease, unspecified ankle, sequela +C2901566|T046|AB|M84.674|ICD10CM|Pathological fracture in other disease, right foot|Pathological fracture in other disease, right foot +C2901566|T046|HT|M84.674|ICD10CM|Pathological fracture in other disease, right foot|Pathological fracture in other disease, right foot +C2901567|T046|AB|M84.674A|ICD10CM|Pathological fracture in oth disease, right foot, init|Pathological fracture in oth disease, right foot, init +C2901567|T046|PT|M84.674A|ICD10CM|Pathological fracture in other disease, right foot, initial encounter for fracture|Pathological fracture in other disease, right foot, initial encounter for fracture +C2901568|T047|AB|M84.674D|ICD10CM|Path fx in oth disease, r foot, subs for fx w routn heal|Path fx in oth disease, r foot, subs for fx w routn heal +C2901569|T046|AB|M84.674G|ICD10CM|Path fx in oth disease, r foot, subs for fx w delay heal|Path fx in oth disease, r foot, subs for fx w delay heal +C2901570|T046|AB|M84.674K|ICD10CM|Path fracture in oth disease, r foot, subs for fx w nonunion|Path fracture in oth disease, r foot, subs for fx w nonunion +C2901570|T046|PT|M84.674K|ICD10CM|Pathological fracture in other disease, right foot, subsequent encounter for fracture with nonunion|Pathological fracture in other disease, right foot, subsequent encounter for fracture with nonunion +C2901571|T047|AB|M84.674P|ICD10CM|Path fracture in oth disease, r foot, subs for fx w malunion|Path fracture in oth disease, r foot, subs for fx w malunion +C2901571|T047|PT|M84.674P|ICD10CM|Pathological fracture in other disease, right foot, subsequent encounter for fracture with malunion|Pathological fracture in other disease, right foot, subsequent encounter for fracture with malunion +C2901572|T046|AB|M84.674S|ICD10CM|Pathological fracture in other disease, right foot, sequela|Pathological fracture in other disease, right foot, sequela +C2901572|T046|PT|M84.674S|ICD10CM|Pathological fracture in other disease, right foot, sequela|Pathological fracture in other disease, right foot, sequela +C2901573|T046|AB|M84.675|ICD10CM|Pathological fracture in other disease, left foot|Pathological fracture in other disease, left foot +C2901573|T046|HT|M84.675|ICD10CM|Pathological fracture in other disease, left foot|Pathological fracture in other disease, left foot +C2901574|T046|AB|M84.675A|ICD10CM|Pathological fracture in oth disease, left foot, init for fx|Pathological fracture in oth disease, left foot, init for fx +C2901574|T046|PT|M84.675A|ICD10CM|Pathological fracture in other disease, left foot, initial encounter for fracture|Pathological fracture in other disease, left foot, initial encounter for fracture +C2901575|T046|AB|M84.675D|ICD10CM|Path fx in oth disease, l foot, subs for fx w routn heal|Path fx in oth disease, l foot, subs for fx w routn heal +C2901576|T046|AB|M84.675G|ICD10CM|Path fx in oth disease, l foot, subs for fx w delay heal|Path fx in oth disease, l foot, subs for fx w delay heal +C2901577|T046|AB|M84.675K|ICD10CM|Path fracture in oth disease, l foot, subs for fx w nonunion|Path fracture in oth disease, l foot, subs for fx w nonunion +C2901577|T046|PT|M84.675K|ICD10CM|Pathological fracture in other disease, left foot, subsequent encounter for fracture with nonunion|Pathological fracture in other disease, left foot, subsequent encounter for fracture with nonunion +C2901578|T046|AB|M84.675P|ICD10CM|Path fracture in oth disease, l foot, subs for fx w malunion|Path fracture in oth disease, l foot, subs for fx w malunion +C2901578|T046|PT|M84.675P|ICD10CM|Pathological fracture in other disease, left foot, subsequent encounter for fracture with malunion|Pathological fracture in other disease, left foot, subsequent encounter for fracture with malunion +C2901579|T046|AB|M84.675S|ICD10CM|Pathological fracture in other disease, left foot, sequela|Pathological fracture in other disease, left foot, sequela +C2901579|T046|PT|M84.675S|ICD10CM|Pathological fracture in other disease, left foot, sequela|Pathological fracture in other disease, left foot, sequela +C2901580|T046|AB|M84.676|ICD10CM|Pathological fracture in other disease, unspecified foot|Pathological fracture in other disease, unspecified foot +C2901580|T046|HT|M84.676|ICD10CM|Pathological fracture in other disease, unspecified foot|Pathological fracture in other disease, unspecified foot +C2901581|T046|AB|M84.676A|ICD10CM|Pathological fracture in oth disease, unsp foot, init for fx|Pathological fracture in oth disease, unsp foot, init for fx +C2901581|T046|PT|M84.676A|ICD10CM|Pathological fracture in other disease, unspecified foot, initial encounter for fracture|Pathological fracture in other disease, unspecified foot, initial encounter for fracture +C2901582|T046|AB|M84.676D|ICD10CM|Path fx in oth disease, unsp foot, subs for fx w routn heal|Path fx in oth disease, unsp foot, subs for fx w routn heal +C2901583|T046|AB|M84.676G|ICD10CM|Path fx in oth disease, unsp foot, subs for fx w delay heal|Path fx in oth disease, unsp foot, subs for fx w delay heal +C2901584|T046|AB|M84.676K|ICD10CM|Path fx in oth disease, unsp foot, subs for fx w nonunion|Path fx in oth disease, unsp foot, subs for fx w nonunion +C2901585|T046|AB|M84.676P|ICD10CM|Path fx in oth disease, unsp foot, subs for fx w malunion|Path fx in oth disease, unsp foot, subs for fx w malunion +C2901586|T046|AB|M84.676S|ICD10CM|Pathological fracture in other disease, unsp foot, sequela|Pathological fracture in other disease, unsp foot, sequela +C2901586|T046|PT|M84.676S|ICD10CM|Pathological fracture in other disease, unspecified foot, sequela|Pathological fracture in other disease, unspecified foot, sequela +C2901587|T046|AB|M84.68|ICD10CM|Pathological fracture in other disease, other site|Pathological fracture in other disease, other site +C2901587|T046|HT|M84.68|ICD10CM|Pathological fracture in other disease, other site|Pathological fracture in other disease, other site +C2901588|T046|AB|M84.68XA|ICD10CM|Pathological fracture in oth disease, oth site, init for fx|Pathological fracture in oth disease, oth site, init for fx +C2901588|T046|PT|M84.68XA|ICD10CM|Pathological fracture in other disease, other site, initial encounter for fracture|Pathological fracture in other disease, other site, initial encounter for fracture +C2901589|T046|AB|M84.68XD|ICD10CM|Path fx in oth disease, oth site, subs for fx w routn heal|Path fx in oth disease, oth site, subs for fx w routn heal +C2901590|T046|AB|M84.68XG|ICD10CM|Path fx in oth disease, oth site, subs for fx w delay heal|Path fx in oth disease, oth site, subs for fx w delay heal +C2901591|T046|AB|M84.68XK|ICD10CM|Path fx in oth disease, oth site, subs for fx w nonunion|Path fx in oth disease, oth site, subs for fx w nonunion +C2901591|T046|PT|M84.68XK|ICD10CM|Pathological fracture in other disease, other site, subsequent encounter for fracture with nonunion|Pathological fracture in other disease, other site, subsequent encounter for fracture with nonunion +C2901592|T046|AB|M84.68XP|ICD10CM|Path fx in oth disease, oth site, subs for fx w malunion|Path fx in oth disease, oth site, subs for fx w malunion +C2901592|T046|PT|M84.68XP|ICD10CM|Pathological fracture in other disease, other site, subsequent encounter for fracture with malunion|Pathological fracture in other disease, other site, subsequent encounter for fracture with malunion +C2901593|T046|AB|M84.68XS|ICD10CM|Pathological fracture in other disease, other site, sequela|Pathological fracture in other disease, other site, sequela +C2901593|T046|PT|M84.68XS|ICD10CM|Pathological fracture in other disease, other site, sequela|Pathological fracture in other disease, other site, sequela +C4268743|T046|AB|M84.7|ICD10CM|Nontraumatic fracture, not elsewhere classified|Nontraumatic fracture, not elsewhere classified +C4268743|T046|HT|M84.7|ICD10CM|Nontraumatic fracture, not elsewhere classified|Nontraumatic fracture, not elsewhere classified +C4268744|T046|AB|M84.75|ICD10CM|Atypical femoral fracture|Atypical femoral fracture +C4268744|T046|HT|M84.75|ICD10CM|Atypical femoral fracture|Atypical femoral fracture +C4268745|T046|AB|M84.750|ICD10CM|Atypical femoral fracture, unspecified|Atypical femoral fracture, unspecified +C4268745|T046|HT|M84.750|ICD10CM|Atypical femoral fracture, unspecified|Atypical femoral fracture, unspecified +C4268746|T046|AB|M84.750A|ICD10CM|Atypical femoral fracture, unspecified, init|Atypical femoral fracture, unspecified, init +C4268746|T046|PT|M84.750A|ICD10CM|Atypical femoral fracture, unspecified, initial encounter for fracture|Atypical femoral fracture, unspecified, initial encounter for fracture +C4268747|T046|AB|M84.750D|ICD10CM|Atypical femoral fracture, unspecified, 7thD|Atypical femoral fracture, unspecified, 7thD +C4268747|T046|PT|M84.750D|ICD10CM|Atypical femoral fracture, unspecified, subsequent encounter for fracture with routine healing|Atypical femoral fracture, unspecified, subsequent encounter for fracture with routine healing +C4268748|T046|AB|M84.750G|ICD10CM|Atypical femoral fracture, unspecified, 7thG|Atypical femoral fracture, unspecified, 7thG +C4268748|T046|PT|M84.750G|ICD10CM|Atypical femoral fracture, unspecified, subsequent encounter for fracture with delayed healing|Atypical femoral fracture, unspecified, subsequent encounter for fracture with delayed healing +C4268749|T046|AB|M84.750K|ICD10CM|Atypical femoral fracture, unspecified, 7thK|Atypical femoral fracture, unspecified, 7thK +C4268749|T046|PT|M84.750K|ICD10CM|Atypical femoral fracture, unspecified, subsequent encounter for fracture with nonunion|Atypical femoral fracture, unspecified, subsequent encounter for fracture with nonunion +C4268750|T046|AB|M84.750P|ICD10CM|Atypical femoral fracture, unspecified, 7thP|Atypical femoral fracture, unspecified, 7thP +C4268750|T046|PT|M84.750P|ICD10CM|Atypical femoral fracture, unspecified, subsequent encounter for fracture with malunion|Atypical femoral fracture, unspecified, subsequent encounter for fracture with malunion +C4268751|T046|AB|M84.750S|ICD10CM|Atypical femoral fracture, unspecified, sequela|Atypical femoral fracture, unspecified, sequela +C4268751|T046|PT|M84.750S|ICD10CM|Atypical femoral fracture, unspecified, sequela|Atypical femoral fracture, unspecified, sequela +C4268752|T046|AB|M84.751|ICD10CM|Incomplete atypical femoral fracture, right leg|Incomplete atypical femoral fracture, right leg +C4268752|T046|HT|M84.751|ICD10CM|Incomplete atypical femoral fracture, right leg|Incomplete atypical femoral fracture, right leg +C4268753|T046|AB|M84.751A|ICD10CM|Incomplete atypical femoral fracture, right leg, init|Incomplete atypical femoral fracture, right leg, init +C4268753|T046|PT|M84.751A|ICD10CM|Incomplete atypical femoral fracture, right leg, initial encounter for fracture|Incomplete atypical femoral fracture, right leg, initial encounter for fracture +C4268754|T046|AB|M84.751D|ICD10CM|Incomplete atypical femoral fracture, right leg, 7thD|Incomplete atypical femoral fracture, right leg, 7thD +C4268755|T046|AB|M84.751G|ICD10CM|Incomplete atypical femoral fracture, right leg, 7thG|Incomplete atypical femoral fracture, right leg, 7thG +C4268756|T046|AB|M84.751K|ICD10CM|Incomplete atypical femoral fracture, right leg, 7thK|Incomplete atypical femoral fracture, right leg, 7thK +C4268756|T046|PT|M84.751K|ICD10CM|Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with nonunion|Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with nonunion +C4268757|T046|AB|M84.751P|ICD10CM|Incomplete atypical femoral fracture, right leg, 7thP|Incomplete atypical femoral fracture, right leg, 7thP +C4268757|T046|PT|M84.751P|ICD10CM|Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with malunion|Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with malunion +C4268758|T046|AB|M84.751S|ICD10CM|Incomplete atypical femoral fracture, right leg, sequela|Incomplete atypical femoral fracture, right leg, sequela +C4268758|T046|PT|M84.751S|ICD10CM|Incomplete atypical femoral fracture, right leg, sequela|Incomplete atypical femoral fracture, right leg, sequela +C4268759|T046|AB|M84.752|ICD10CM|Incomplete atypical femoral fracture, left leg|Incomplete atypical femoral fracture, left leg +C4268759|T046|HT|M84.752|ICD10CM|Incomplete atypical femoral fracture, left leg|Incomplete atypical femoral fracture, left leg +C4268760|T046|AB|M84.752A|ICD10CM|Incomplete atypical femoral fracture, left leg, init|Incomplete atypical femoral fracture, left leg, init +C4268760|T046|PT|M84.752A|ICD10CM|Incomplete atypical femoral fracture, left leg, initial encounter for fracture|Incomplete atypical femoral fracture, left leg, initial encounter for fracture +C4268761|T046|AB|M84.752D|ICD10CM|Incomplete atypical femoral fracture, left leg, 7thD|Incomplete atypical femoral fracture, left leg, 7thD +C4268762|T046|AB|M84.752G|ICD10CM|Incomplete atypical femoral fracture, left leg, 7thG|Incomplete atypical femoral fracture, left leg, 7thG +C4268763|T046|AB|M84.752K|ICD10CM|Incomplete atypical femoral fracture, left leg, 7thK|Incomplete atypical femoral fracture, left leg, 7thK +C4268763|T046|PT|M84.752K|ICD10CM|Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with nonunion|Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with nonunion +C4268764|T046|AB|M84.752P|ICD10CM|Incomplete atypical femoral fracture, left leg, 7thP|Incomplete atypical femoral fracture, left leg, 7thP +C4268764|T046|PT|M84.752P|ICD10CM|Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with malunion|Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with malunion +C4268765|T046|AB|M84.752S|ICD10CM|Incomplete atypical femoral fracture, left leg, sequela|Incomplete atypical femoral fracture, left leg, sequela +C4268765|T046|PT|M84.752S|ICD10CM|Incomplete atypical femoral fracture, left leg, sequela|Incomplete atypical femoral fracture, left leg, sequela +C4268766|T046|AB|M84.753|ICD10CM|Incomplete atypical femoral fracture, unspecified leg|Incomplete atypical femoral fracture, unspecified leg +C4268766|T046|HT|M84.753|ICD10CM|Incomplete atypical femoral fracture, unspecified leg|Incomplete atypical femoral fracture, unspecified leg +C4268767|T046|AB|M84.753A|ICD10CM|Incomplete atypical femoral fracture, unspecified leg, init|Incomplete atypical femoral fracture, unspecified leg, init +C4268767|T046|PT|M84.753A|ICD10CM|Incomplete atypical femoral fracture, unspecified leg, initial encounter for fracture|Incomplete atypical femoral fracture, unspecified leg, initial encounter for fracture +C4268768|T046|AB|M84.753D|ICD10CM|Incomplete atypical femoral fracture, unspecified leg, 7thD|Incomplete atypical femoral fracture, unspecified leg, 7thD +C4268769|T046|AB|M84.753G|ICD10CM|Incomplete atypical femoral fracture, unspecified leg, 7thG|Incomplete atypical femoral fracture, unspecified leg, 7thG +C4268770|T046|AB|M84.753K|ICD10CM|Incomplete atypical femoral fracture, unspecified leg, 7thK|Incomplete atypical femoral fracture, unspecified leg, 7thK +C4268771|T046|AB|M84.753P|ICD10CM|Incomplete atypical femoral fracture, unspecified leg, 7thP|Incomplete atypical femoral fracture, unspecified leg, 7thP +C4268772|T046|AB|M84.753S|ICD10CM|Incomplete atypical femoral fracture, unsp leg, sequela|Incomplete atypical femoral fracture, unsp leg, sequela +C4268772|T046|PT|M84.753S|ICD10CM|Incomplete atypical femoral fracture, unspecified leg, sequela|Incomplete atypical femoral fracture, unspecified leg, sequela +C4268773|T046|AB|M84.754|ICD10CM|Complete transverse atypical femoral fracture, right leg|Complete transverse atypical femoral fracture, right leg +C4268773|T046|HT|M84.754|ICD10CM|Complete transverse atypical femoral fracture, right leg|Complete transverse atypical femoral fracture, right leg +C4268774|T046|AB|M84.754A|ICD10CM|Complete transverse atyp femoral fracture, right leg, init|Complete transverse atyp femoral fracture, right leg, init +C4268774|T046|PT|M84.754A|ICD10CM|Complete transverse atypical femoral fracture, right leg, initial encounter for fracture|Complete transverse atypical femoral fracture, right leg, initial encounter for fracture +C4268775|T046|AB|M84.754D|ICD10CM|Complete transverse atyp femoral fracture, right leg, 7thD|Complete transverse atyp femoral fracture, right leg, 7thD +C4268776|T046|AB|M84.754G|ICD10CM|Complete transverse atyp femoral fracture, right leg, 7thG|Complete transverse atyp femoral fracture, right leg, 7thG +C4268777|T046|AB|M84.754K|ICD10CM|Complete transverse atyp femoral fracture, right leg, 7thK|Complete transverse atyp femoral fracture, right leg, 7thK +C4268778|T046|AB|M84.754P|ICD10CM|Complete transverse atyp femoral fracture, right leg, 7thP|Complete transverse atyp femoral fracture, right leg, 7thP +C4268779|T046|AB|M84.754S|ICD10CM|Complete transverse atyp femoral fx, right leg, sequela|Complete transverse atyp femoral fx, right leg, sequela +C4268779|T046|PT|M84.754S|ICD10CM|Complete transverse atypical femoral fracture, right leg, sequela|Complete transverse atypical femoral fracture, right leg, sequela +C4268780|T046|AB|M84.755|ICD10CM|Complete transverse atypical femoral fracture, left leg|Complete transverse atypical femoral fracture, left leg +C4268780|T046|HT|M84.755|ICD10CM|Complete transverse atypical femoral fracture, left leg|Complete transverse atypical femoral fracture, left leg +C4268781|T046|AB|M84.755A|ICD10CM|Complete transverse atyp femoral fracture, left leg, init|Complete transverse atyp femoral fracture, left leg, init +C4268781|T046|PT|M84.755A|ICD10CM|Complete transverse atypical femoral fracture, left leg, initial encounter for fracture|Complete transverse atypical femoral fracture, left leg, initial encounter for fracture +C4268782|T046|AB|M84.755D|ICD10CM|Complete transverse atyp femoral fracture, left leg, 7thD|Complete transverse atyp femoral fracture, left leg, 7thD +C4268783|T046|AB|M84.755G|ICD10CM|Complete transverse atyp femoral fracture, left leg, 7thG|Complete transverse atyp femoral fracture, left leg, 7thG +C4268784|T046|AB|M84.755K|ICD10CM|Complete transverse atyp femoral fracture, left leg, 7thK|Complete transverse atyp femoral fracture, left leg, 7thK +C4268785|T046|AB|M84.755P|ICD10CM|Complete transverse atyp femoral fracture, left leg, 7thP|Complete transverse atyp femoral fracture, left leg, 7thP +C4268786|T046|AB|M84.755S|ICD10CM|Complete transverse atyp femoral fracture, left leg, sequela|Complete transverse atyp femoral fracture, left leg, sequela +C4268786|T046|PT|M84.755S|ICD10CM|Complete transverse atypical femoral fracture, left leg, sequela|Complete transverse atypical femoral fracture, left leg, sequela +C4268787|T046|AB|M84.756|ICD10CM|Complete transverse atypical femoral fracture, unsp leg|Complete transverse atypical femoral fracture, unsp leg +C4268787|T046|HT|M84.756|ICD10CM|Complete transverse atypical femoral fracture, unspecified leg|Complete transverse atypical femoral fracture, unspecified leg +C4268788|T046|AB|M84.756A|ICD10CM|Complete transverse atyp femoral fracture, unsp leg, init|Complete transverse atyp femoral fracture, unsp leg, init +C4268788|T046|PT|M84.756A|ICD10CM|Complete transverse atypical femoral fracture, unspecified leg, initial encounter for fracture|Complete transverse atypical femoral fracture, unspecified leg, initial encounter for fracture +C4268789|T046|AB|M84.756D|ICD10CM|Complete transverse atyp femoral fracture, unsp leg, 7thD|Complete transverse atyp femoral fracture, unsp leg, 7thD +C4268790|T046|AB|M84.756G|ICD10CM|Complete transverse atyp femoral fracture, unsp leg, 7thG|Complete transverse atyp femoral fracture, unsp leg, 7thG +C4268791|T046|AB|M84.756K|ICD10CM|Complete transverse atyp femoral fracture, unsp leg, 7thK|Complete transverse atyp femoral fracture, unsp leg, 7thK +C4268792|T046|AB|M84.756P|ICD10CM|Complete transverse atyp femoral fracture, unsp leg, 7thP|Complete transverse atyp femoral fracture, unsp leg, 7thP +C4268793|T046|AB|M84.756S|ICD10CM|Complete transverse atyp femoral fracture, unsp leg, sequela|Complete transverse atyp femoral fracture, unsp leg, sequela +C4268793|T046|PT|M84.756S|ICD10CM|Complete transverse atypical femoral fracture, unspecified leg, sequela|Complete transverse atypical femoral fracture, unspecified leg, sequela +C4268794|T046|AB|M84.757|ICD10CM|Complete oblique atypical femoral fracture, right leg|Complete oblique atypical femoral fracture, right leg +C4268794|T046|HT|M84.757|ICD10CM|Complete oblique atypical femoral fracture, right leg|Complete oblique atypical femoral fracture, right leg +C4268795|T046|AB|M84.757A|ICD10CM|Complete oblique atypical femoral fracture, right leg, init|Complete oblique atypical femoral fracture, right leg, init +C4268795|T046|PT|M84.757A|ICD10CM|Complete oblique atypical femoral fracture, right leg, initial encounter for fracture|Complete oblique atypical femoral fracture, right leg, initial encounter for fracture +C4268796|T046|AB|M84.757D|ICD10CM|Complete oblique atypical femoral fracture, right leg, 7thD|Complete oblique atypical femoral fracture, right leg, 7thD +C4268797|T046|AB|M84.757G|ICD10CM|Complete oblique atypical femoral fracture, right leg, 7thG|Complete oblique atypical femoral fracture, right leg, 7thG +C4268798|T046|AB|M84.757K|ICD10CM|Complete oblique atypical femoral fracture, right leg, 7thK|Complete oblique atypical femoral fracture, right leg, 7thK +C4268799|T046|AB|M84.757P|ICD10CM|Complete oblique atypical femoral fracture, right leg, 7thP|Complete oblique atypical femoral fracture, right leg, 7thP +C4268800|T046|AB|M84.757S|ICD10CM|Complete oblique atyp femoral fracture, right leg, sequela|Complete oblique atyp femoral fracture, right leg, sequela +C4268800|T046|PT|M84.757S|ICD10CM|Complete oblique atypical femoral fracture, right leg, sequela|Complete oblique atypical femoral fracture, right leg, sequela +C4268801|T046|AB|M84.758|ICD10CM|Complete oblique atypical femoral fracture, left leg|Complete oblique atypical femoral fracture, left leg +C4268801|T046|HT|M84.758|ICD10CM|Complete oblique atypical femoral fracture, left leg|Complete oblique atypical femoral fracture, left leg +C4268802|T046|AB|M84.758A|ICD10CM|Complete oblique atypical femoral fracture, left leg, init|Complete oblique atypical femoral fracture, left leg, init +C4268802|T046|PT|M84.758A|ICD10CM|Complete oblique atypical femoral fracture, left leg, initial encounter for fracture|Complete oblique atypical femoral fracture, left leg, initial encounter for fracture +C4268803|T046|AB|M84.758D|ICD10CM|Complete oblique atypical femoral fracture, left leg, 7thD|Complete oblique atypical femoral fracture, left leg, 7thD +C4268804|T046|AB|M84.758G|ICD10CM|Complete oblique atypical femoral fracture, left leg, 7thG|Complete oblique atypical femoral fracture, left leg, 7thG +C4268805|T046|AB|M84.758K|ICD10CM|Complete oblique atypical femoral fracture, left leg, 7thK|Complete oblique atypical femoral fracture, left leg, 7thK +C4268806|T046|AB|M84.758P|ICD10CM|Complete oblique atypical femoral fracture, left leg, 7thP|Complete oblique atypical femoral fracture, left leg, 7thP +C4268807|T046|AB|M84.758S|ICD10CM|Complete oblique atyp femoral fracture, left leg, sequela|Complete oblique atyp femoral fracture, left leg, sequela +C4268807|T046|PT|M84.758S|ICD10CM|Complete oblique atypical femoral fracture, left leg, sequela|Complete oblique atypical femoral fracture, left leg, sequela +C4268808|T046|AB|M84.759|ICD10CM|Complete oblique atypical femoral fracture, unspecified leg|Complete oblique atypical femoral fracture, unspecified leg +C4268808|T046|HT|M84.759|ICD10CM|Complete oblique atypical femoral fracture, unspecified leg|Complete oblique atypical femoral fracture, unspecified leg +C4268809|T046|AB|M84.759A|ICD10CM|Complete oblique atypical femoral fracture, unsp leg, init|Complete oblique atypical femoral fracture, unsp leg, init +C4268809|T046|PT|M84.759A|ICD10CM|Complete oblique atypical femoral fracture, unspecified leg, initial encounter for fracture|Complete oblique atypical femoral fracture, unspecified leg, initial encounter for fracture +C4268810|T046|AB|M84.759D|ICD10CM|Complete oblique atypical femoral fracture, unsp leg, 7thD|Complete oblique atypical femoral fracture, unsp leg, 7thD +C4268811|T046|AB|M84.759G|ICD10CM|Complete oblique atypical femoral fracture, unsp leg, 7thG|Complete oblique atypical femoral fracture, unsp leg, 7thG +C4268812|T046|AB|M84.759K|ICD10CM|Complete oblique atypical femoral fracture, unsp leg, 7thK|Complete oblique atypical femoral fracture, unsp leg, 7thK +C4268813|T046|AB|M84.759P|ICD10CM|Complete oblique atypical femoral fracture, unsp leg, 7thP|Complete oblique atypical femoral fracture, unsp leg, 7thP +C4268814|T046|AB|M84.759S|ICD10CM|Complete oblique atyp femoral fracture, unsp leg, sequela|Complete oblique atyp femoral fracture, unsp leg, sequela +C4268814|T046|PT|M84.759S|ICD10CM|Complete oblique atypical femoral fracture, unspecified leg, sequela|Complete oblique atypical femoral fracture, unspecified leg, sequela +C0477677|T190|HT|M84.8|ICD10CM|Other disorders of continuity of bone|Other disorders of continuity of bone +C0477677|T190|AB|M84.8|ICD10CM|Other disorders of continuity of bone|Other disorders of continuity of bone +C0477677|T190|PT|M84.8|ICD10|Other disorders of continuity of bone|Other disorders of continuity of bone +C0839846|T047|AB|M84.80|ICD10CM|Other disorders of continuity of bone, unspecified site|Other disorders of continuity of bone, unspecified site +C0839846|T047|PT|M84.80|ICD10CM|Other disorders of continuity of bone, unspecified site|Other disorders of continuity of bone, unspecified site +C2901596|T047|AB|M84.81|ICD10CM|Other disorders of continuity of bone, shoulder|Other disorders of continuity of bone, shoulder +C2901596|T047|HT|M84.81|ICD10CM|Other disorders of continuity of bone, shoulder|Other disorders of continuity of bone, shoulder +C2901594|T047|AB|M84.811|ICD10CM|Other disorders of continuity of bone, right shoulder|Other disorders of continuity of bone, right shoulder +C2901594|T047|PT|M84.811|ICD10CM|Other disorders of continuity of bone, right shoulder|Other disorders of continuity of bone, right shoulder +C2901595|T047|AB|M84.812|ICD10CM|Other disorders of continuity of bone, left shoulder|Other disorders of continuity of bone, left shoulder +C2901595|T047|PT|M84.812|ICD10CM|Other disorders of continuity of bone, left shoulder|Other disorders of continuity of bone, left shoulder +C2901596|T047|AB|M84.819|ICD10CM|Other disorders of continuity of bone, unspecified shoulder|Other disorders of continuity of bone, unspecified shoulder +C2901596|T047|PT|M84.819|ICD10CM|Other disorders of continuity of bone, unspecified shoulder|Other disorders of continuity of bone, unspecified shoulder +C2901599|T047|AB|M84.82|ICD10CM|Other disorders of continuity of bone, humerus|Other disorders of continuity of bone, humerus +C2901599|T047|HT|M84.82|ICD10CM|Other disorders of continuity of bone, humerus|Other disorders of continuity of bone, humerus +C2901597|T047|AB|M84.821|ICD10CM|Other disorders of continuity of bone, right humerus|Other disorders of continuity of bone, right humerus +C2901597|T047|PT|M84.821|ICD10CM|Other disorders of continuity of bone, right humerus|Other disorders of continuity of bone, right humerus +C2901598|T047|AB|M84.822|ICD10CM|Other disorders of continuity of bone, left humerus|Other disorders of continuity of bone, left humerus +C2901598|T047|PT|M84.822|ICD10CM|Other disorders of continuity of bone, left humerus|Other disorders of continuity of bone, left humerus +C2901599|T047|AB|M84.829|ICD10CM|Other disorders of continuity of bone, unspecified humerus|Other disorders of continuity of bone, unspecified humerus +C2901599|T047|PT|M84.829|ICD10CM|Other disorders of continuity of bone, unspecified humerus|Other disorders of continuity of bone, unspecified humerus +C2901604|T047|AB|M84.83|ICD10CM|Other disorders of continuity of bone, ulna and radius|Other disorders of continuity of bone, ulna and radius +C2901604|T047|HT|M84.83|ICD10CM|Other disorders of continuity of bone, ulna and radius|Other disorders of continuity of bone, ulna and radius +C2901600|T047|AB|M84.831|ICD10CM|Other disorders of continuity of bone, right ulna|Other disorders of continuity of bone, right ulna +C2901600|T047|PT|M84.831|ICD10CM|Other disorders of continuity of bone, right ulna|Other disorders of continuity of bone, right ulna +C2901601|T047|AB|M84.832|ICD10CM|Other disorders of continuity of bone, left ulna|Other disorders of continuity of bone, left ulna +C2901601|T047|PT|M84.832|ICD10CM|Other disorders of continuity of bone, left ulna|Other disorders of continuity of bone, left ulna +C2901602|T047|AB|M84.833|ICD10CM|Other disorders of continuity of bone, right radius|Other disorders of continuity of bone, right radius +C2901602|T047|PT|M84.833|ICD10CM|Other disorders of continuity of bone, right radius|Other disorders of continuity of bone, right radius +C2901603|T047|AB|M84.834|ICD10CM|Other disorders of continuity of bone, left radius|Other disorders of continuity of bone, left radius +C2901603|T047|PT|M84.834|ICD10CM|Other disorders of continuity of bone, left radius|Other disorders of continuity of bone, left radius +C2901604|T047|AB|M84.839|ICD10CM|Other disorders of continuity of bone, unsp ulna and radius|Other disorders of continuity of bone, unsp ulna and radius +C2901604|T047|PT|M84.839|ICD10CM|Other disorders of continuity of bone, unspecified ulna and radius|Other disorders of continuity of bone, unspecified ulna and radius +C0839832|T047|HT|M84.84|ICD10CM|Other disorders of continuity of bone, hand|Other disorders of continuity of bone, hand +C0839832|T047|AB|M84.84|ICD10CM|Other disorders of continuity of bone, hand|Other disorders of continuity of bone, hand +C2901605|T047|AB|M84.841|ICD10CM|Other disorders of continuity of bone, right hand|Other disorders of continuity of bone, right hand +C2901605|T047|PT|M84.841|ICD10CM|Other disorders of continuity of bone, right hand|Other disorders of continuity of bone, right hand +C2901606|T047|AB|M84.842|ICD10CM|Other disorders of continuity of bone, left hand|Other disorders of continuity of bone, left hand +C2901606|T047|PT|M84.842|ICD10CM|Other disorders of continuity of bone, left hand|Other disorders of continuity of bone, left hand +C0839832|T047|AB|M84.849|ICD10CM|Other disorders of continuity of bone, unspecified hand|Other disorders of continuity of bone, unspecified hand +C0839832|T047|PT|M84.849|ICD10CM|Other disorders of continuity of bone, unspecified hand|Other disorders of continuity of bone, unspecified hand +C0839833|T047|AB|M84.85|ICD10CM|Oth disorders of continuity of bone, pelvic region and thigh|Oth disorders of continuity of bone, pelvic region and thigh +C0839833|T047|HT|M84.85|ICD10CM|Other disorders of continuity of bone, pelvic region and thigh|Other disorders of continuity of bone, pelvic region and thigh +C2901607|T047|AB|M84.851|ICD10CM|Oth disord of continuity of bone, right pelv rgn and thigh|Oth disord of continuity of bone, right pelv rgn and thigh +C2901607|T047|PT|M84.851|ICD10CM|Other disorders of continuity of bone, right pelvic region and thigh|Other disorders of continuity of bone, right pelvic region and thigh +C2901608|T047|AB|M84.852|ICD10CM|Oth disord of continuity of bone, left pelv region and thigh|Oth disord of continuity of bone, left pelv region and thigh +C2901608|T047|PT|M84.852|ICD10CM|Other disorders of continuity of bone, left pelvic region and thigh|Other disorders of continuity of bone, left pelvic region and thigh +C0839833|T047|AB|M84.859|ICD10CM|Oth disord of continuity of bone, unsp pelv region and thigh|Oth disord of continuity of bone, unsp pelv region and thigh +C0839833|T047|PT|M84.859|ICD10CM|Other disorders of continuity of bone, unspecified pelvic region and thigh|Other disorders of continuity of bone, unspecified pelvic region and thigh +C2901609|T047|AB|M84.86|ICD10CM|Other disorders of continuity of bone, tibia and fibula|Other disorders of continuity of bone, tibia and fibula +C2901609|T047|HT|M84.86|ICD10CM|Other disorders of continuity of bone, tibia and fibula|Other disorders of continuity of bone, tibia and fibula +C2901610|T047|AB|M84.861|ICD10CM|Other disorders of continuity of bone, right tibia|Other disorders of continuity of bone, right tibia +C2901610|T047|PT|M84.861|ICD10CM|Other disorders of continuity of bone, right tibia|Other disorders of continuity of bone, right tibia +C2901611|T047|AB|M84.862|ICD10CM|Other disorders of continuity of bone, left tibia|Other disorders of continuity of bone, left tibia +C2901611|T047|PT|M84.862|ICD10CM|Other disorders of continuity of bone, left tibia|Other disorders of continuity of bone, left tibia +C2901612|T047|AB|M84.863|ICD10CM|Other disorders of continuity of bone, right fibula|Other disorders of continuity of bone, right fibula +C2901612|T047|PT|M84.863|ICD10CM|Other disorders of continuity of bone, right fibula|Other disorders of continuity of bone, right fibula +C2901613|T047|AB|M84.864|ICD10CM|Other disorders of continuity of bone, left fibula|Other disorders of continuity of bone, left fibula +C2901613|T047|PT|M84.864|ICD10CM|Other disorders of continuity of bone, left fibula|Other disorders of continuity of bone, left fibula +C2901609|T047|AB|M84.869|ICD10CM|Other disorders of continuity of bone, unsp tibia and fibula|Other disorders of continuity of bone, unsp tibia and fibula +C2901609|T047|PT|M84.869|ICD10CM|Other disorders of continuity of bone, unspecified tibia and fibula|Other disorders of continuity of bone, unspecified tibia and fibula +C0839835|T047|HT|M84.87|ICD10CM|Other disorders of continuity of bone, ankle and foot|Other disorders of continuity of bone, ankle and foot +C0839835|T047|AB|M84.87|ICD10CM|Other disorders of continuity of bone, ankle and foot|Other disorders of continuity of bone, ankle and foot +C2901614|T047|AB|M84.871|ICD10CM|Other disorders of continuity of bone, right ankle and foot|Other disorders of continuity of bone, right ankle and foot +C2901614|T047|PT|M84.871|ICD10CM|Other disorders of continuity of bone, right ankle and foot|Other disorders of continuity of bone, right ankle and foot +C2901615|T047|AB|M84.872|ICD10CM|Other disorders of continuity of bone, left ankle and foot|Other disorders of continuity of bone, left ankle and foot +C2901615|T047|PT|M84.872|ICD10CM|Other disorders of continuity of bone, left ankle and foot|Other disorders of continuity of bone, left ankle and foot +C0839835|T047|AB|M84.879|ICD10CM|Other disorders of continuity of bone, unsp ankle and foot|Other disorders of continuity of bone, unsp ankle and foot +C0839835|T047|PT|M84.879|ICD10CM|Other disorders of continuity of bone, unspecified ankle and foot|Other disorders of continuity of bone, unspecified ankle and foot +C0839836|T190|PT|M84.88|ICD10CM|Other disorders of continuity of bone, other site|Other disorders of continuity of bone, other site +C0839836|T190|AB|M84.88|ICD10CM|Other disorders of continuity of bone, other site|Other disorders of continuity of bone, other site +C0495003|T047|PT|M84.9|ICD10CM|Disorder of continuity of bone, unspecified|Disorder of continuity of bone, unspecified +C0495003|T047|AB|M84.9|ICD10CM|Disorder of continuity of bone, unspecified|Disorder of continuity of bone, unspecified +C0495003|T047|PT|M84.9|ICD10|Disorder of continuity of bone, unspecified|Disorder of continuity of bone, unspecified +C0495004|T047|HT|M85|ICD10|Other disorders of bone density and structure|Other disorders of bone density and structure +C0495004|T047|AB|M85|ICD10CM|Other disorders of bone density and structure|Other disorders of bone density and structure +C0495004|T047|HT|M85|ICD10CM|Other disorders of bone density and structure|Other disorders of bone density and structure +C0016064|T047|PT|M85.0|ICD10|Fibrous dysplasia (monostotic)|Fibrous dysplasia (monostotic) +C0016064|T047|HT|M85.0|ICD10CM|Fibrous dysplasia (monostotic)|Fibrous dysplasia (monostotic) +C0016064|T047|AB|M85.0|ICD10CM|Fibrous dysplasia (monostotic)|Fibrous dysplasia (monostotic) +C0016064|T047|AB|M85.00|ICD10CM|Fibrous dysplasia (monostotic), unspecified site|Fibrous dysplasia (monostotic), unspecified site +C0016064|T047|PT|M85.00|ICD10CM|Fibrous dysplasia (monostotic), unspecified site|Fibrous dysplasia (monostotic), unspecified site +C2901616|T047|AB|M85.01|ICD10CM|Fibrous dysplasia (monostotic), shoulder|Fibrous dysplasia (monostotic), shoulder +C2901616|T047|HT|M85.01|ICD10CM|Fibrous dysplasia (monostotic), shoulder|Fibrous dysplasia (monostotic), shoulder +C2901617|T047|AB|M85.011|ICD10CM|Fibrous dysplasia (monostotic), right shoulder|Fibrous dysplasia (monostotic), right shoulder +C2901617|T047|PT|M85.011|ICD10CM|Fibrous dysplasia (monostotic), right shoulder|Fibrous dysplasia (monostotic), right shoulder +C2901618|T047|AB|M85.012|ICD10CM|Fibrous dysplasia (monostotic), left shoulder|Fibrous dysplasia (monostotic), left shoulder +C2901618|T047|PT|M85.012|ICD10CM|Fibrous dysplasia (monostotic), left shoulder|Fibrous dysplasia (monostotic), left shoulder +C2901619|T047|AB|M85.019|ICD10CM|Fibrous dysplasia (monostotic), unspecified shoulder|Fibrous dysplasia (monostotic), unspecified shoulder +C2901619|T047|PT|M85.019|ICD10CM|Fibrous dysplasia (monostotic), unspecified shoulder|Fibrous dysplasia (monostotic), unspecified shoulder +C0839850|T047|HT|M85.02|ICD10CM|Fibrous dysplasia (monostotic), upper arm|Fibrous dysplasia (monostotic), upper arm +C0839850|T047|AB|M85.02|ICD10CM|Fibrous dysplasia (monostotic), upper arm|Fibrous dysplasia (monostotic), upper arm +C2901620|T047|AB|M85.021|ICD10CM|Fibrous dysplasia (monostotic), right upper arm|Fibrous dysplasia (monostotic), right upper arm +C2901620|T047|PT|M85.021|ICD10CM|Fibrous dysplasia (monostotic), right upper arm|Fibrous dysplasia (monostotic), right upper arm +C2901621|T047|AB|M85.022|ICD10CM|Fibrous dysplasia (monostotic), left upper arm|Fibrous dysplasia (monostotic), left upper arm +C2901621|T047|PT|M85.022|ICD10CM|Fibrous dysplasia (monostotic), left upper arm|Fibrous dysplasia (monostotic), left upper arm +C2901622|T047|AB|M85.029|ICD10CM|Fibrous dysplasia (monostotic), unspecified upper arm|Fibrous dysplasia (monostotic), unspecified upper arm +C2901622|T047|PT|M85.029|ICD10CM|Fibrous dysplasia (monostotic), unspecified upper arm|Fibrous dysplasia (monostotic), unspecified upper arm +C0839851|T047|HT|M85.03|ICD10CM|Fibrous dysplasia (monostotic), forearm|Fibrous dysplasia (monostotic), forearm +C0839851|T047|AB|M85.03|ICD10CM|Fibrous dysplasia (monostotic), forearm|Fibrous dysplasia (monostotic), forearm +C2901623|T047|AB|M85.031|ICD10CM|Fibrous dysplasia (monostotic), right forearm|Fibrous dysplasia (monostotic), right forearm +C2901623|T047|PT|M85.031|ICD10CM|Fibrous dysplasia (monostotic), right forearm|Fibrous dysplasia (monostotic), right forearm +C2901624|T047|AB|M85.032|ICD10CM|Fibrous dysplasia (monostotic), left forearm|Fibrous dysplasia (monostotic), left forearm +C2901624|T047|PT|M85.032|ICD10CM|Fibrous dysplasia (monostotic), left forearm|Fibrous dysplasia (monostotic), left forearm +C0839851|T047|AB|M85.039|ICD10CM|Fibrous dysplasia (monostotic), unspecified forearm|Fibrous dysplasia (monostotic), unspecified forearm +C0839851|T047|PT|M85.039|ICD10CM|Fibrous dysplasia (monostotic), unspecified forearm|Fibrous dysplasia (monostotic), unspecified forearm +C0839852|T047|HT|M85.04|ICD10CM|Fibrous dysplasia (monostotic), hand|Fibrous dysplasia (monostotic), hand +C0839852|T047|AB|M85.04|ICD10CM|Fibrous dysplasia (monostotic), hand|Fibrous dysplasia (monostotic), hand +C2901625|T047|AB|M85.041|ICD10CM|Fibrous dysplasia (monostotic), right hand|Fibrous dysplasia (monostotic), right hand +C2901625|T047|PT|M85.041|ICD10CM|Fibrous dysplasia (monostotic), right hand|Fibrous dysplasia (monostotic), right hand +C2901626|T047|AB|M85.042|ICD10CM|Fibrous dysplasia (monostotic), left hand|Fibrous dysplasia (monostotic), left hand +C2901626|T047|PT|M85.042|ICD10CM|Fibrous dysplasia (monostotic), left hand|Fibrous dysplasia (monostotic), left hand +C0839852|T047|AB|M85.049|ICD10CM|Fibrous dysplasia (monostotic), unspecified hand|Fibrous dysplasia (monostotic), unspecified hand +C0839852|T047|PT|M85.049|ICD10CM|Fibrous dysplasia (monostotic), unspecified hand|Fibrous dysplasia (monostotic), unspecified hand +C2901627|T047|AB|M85.05|ICD10CM|Fibrous dysplasia (monostotic), thigh|Fibrous dysplasia (monostotic), thigh +C2901627|T047|HT|M85.05|ICD10CM|Fibrous dysplasia (monostotic), thigh|Fibrous dysplasia (monostotic), thigh +C2901628|T047|AB|M85.051|ICD10CM|Fibrous dysplasia (monostotic), right thigh|Fibrous dysplasia (monostotic), right thigh +C2901628|T047|PT|M85.051|ICD10CM|Fibrous dysplasia (monostotic), right thigh|Fibrous dysplasia (monostotic), right thigh +C2901629|T047|AB|M85.052|ICD10CM|Fibrous dysplasia (monostotic), left thigh|Fibrous dysplasia (monostotic), left thigh +C2901629|T047|PT|M85.052|ICD10CM|Fibrous dysplasia (monostotic), left thigh|Fibrous dysplasia (monostotic), left thigh +C2901630|T047|AB|M85.059|ICD10CM|Fibrous dysplasia (monostotic), unspecified thigh|Fibrous dysplasia (monostotic), unspecified thigh +C2901630|T047|PT|M85.059|ICD10CM|Fibrous dysplasia (monostotic), unspecified thigh|Fibrous dysplasia (monostotic), unspecified thigh +C0839854|T047|HT|M85.06|ICD10CM|Fibrous dysplasia (monostotic), lower leg|Fibrous dysplasia (monostotic), lower leg +C0839854|T047|AB|M85.06|ICD10CM|Fibrous dysplasia (monostotic), lower leg|Fibrous dysplasia (monostotic), lower leg +C2901631|T047|AB|M85.061|ICD10CM|Fibrous dysplasia (monostotic), right lower leg|Fibrous dysplasia (monostotic), right lower leg +C2901631|T047|PT|M85.061|ICD10CM|Fibrous dysplasia (monostotic), right lower leg|Fibrous dysplasia (monostotic), right lower leg +C2901632|T047|AB|M85.062|ICD10CM|Fibrous dysplasia (monostotic), left lower leg|Fibrous dysplasia (monostotic), left lower leg +C2901632|T047|PT|M85.062|ICD10CM|Fibrous dysplasia (monostotic), left lower leg|Fibrous dysplasia (monostotic), left lower leg +C2901633|T047|AB|M85.069|ICD10CM|Fibrous dysplasia (monostotic), unspecified lower leg|Fibrous dysplasia (monostotic), unspecified lower leg +C2901633|T047|PT|M85.069|ICD10CM|Fibrous dysplasia (monostotic), unspecified lower leg|Fibrous dysplasia (monostotic), unspecified lower leg +C0839855|T047|HT|M85.07|ICD10CM|Fibrous dysplasia (monostotic), ankle and foot|Fibrous dysplasia (monostotic), ankle and foot +C0839855|T047|AB|M85.07|ICD10CM|Fibrous dysplasia (monostotic), ankle and foot|Fibrous dysplasia (monostotic), ankle and foot +C2901634|T047|AB|M85.071|ICD10CM|Fibrous dysplasia (monostotic), right ankle and foot|Fibrous dysplasia (monostotic), right ankle and foot +C2901634|T047|PT|M85.071|ICD10CM|Fibrous dysplasia (monostotic), right ankle and foot|Fibrous dysplasia (monostotic), right ankle and foot +C2901635|T047|AB|M85.072|ICD10CM|Fibrous dysplasia (monostotic), left ankle and foot|Fibrous dysplasia (monostotic), left ankle and foot +C2901635|T047|PT|M85.072|ICD10CM|Fibrous dysplasia (monostotic), left ankle and foot|Fibrous dysplasia (monostotic), left ankle and foot +C0839855|T047|AB|M85.079|ICD10CM|Fibrous dysplasia (monostotic), unspecified ankle and foot|Fibrous dysplasia (monostotic), unspecified ankle and foot +C0839855|T047|PT|M85.079|ICD10CM|Fibrous dysplasia (monostotic), unspecified ankle and foot|Fibrous dysplasia (monostotic), unspecified ankle and foot +C0839856|T047|PT|M85.08|ICD10CM|Fibrous dysplasia (monostotic), other site|Fibrous dysplasia (monostotic), other site +C0839856|T047|AB|M85.08|ICD10CM|Fibrous dysplasia (monostotic), other site|Fibrous dysplasia (monostotic), other site +C0839848|T047|PT|M85.09|ICD10CM|Fibrous dysplasia (monostotic), multiple sites|Fibrous dysplasia (monostotic), multiple sites +C0839848|T047|AB|M85.09|ICD10CM|Fibrous dysplasia (monostotic), multiple sites|Fibrous dysplasia (monostotic), multiple sites +C0410447|T037|PT|M85.1|ICD10|Skeletal fluorosis|Skeletal fluorosis +C0410447|T037|HT|M85.1|ICD10CM|Skeletal fluorosis|Skeletal fluorosis +C0410447|T037|AB|M85.1|ICD10CM|Skeletal fluorosis|Skeletal fluorosis +C0410447|T037|AB|M85.10|ICD10CM|Skeletal fluorosis, unspecified site|Skeletal fluorosis, unspecified site +C0410447|T037|PT|M85.10|ICD10CM|Skeletal fluorosis, unspecified site|Skeletal fluorosis, unspecified site +C2901638|T047|AB|M85.11|ICD10CM|Skeletal fluorosis, shoulder|Skeletal fluorosis, shoulder +C2901638|T047|HT|M85.11|ICD10CM|Skeletal fluorosis, shoulder|Skeletal fluorosis, shoulder +C2901636|T047|AB|M85.111|ICD10CM|Skeletal fluorosis, right shoulder|Skeletal fluorosis, right shoulder +C2901636|T047|PT|M85.111|ICD10CM|Skeletal fluorosis, right shoulder|Skeletal fluorosis, right shoulder +C2901637|T047|AB|M85.112|ICD10CM|Skeletal fluorosis, left shoulder|Skeletal fluorosis, left shoulder +C2901637|T047|PT|M85.112|ICD10CM|Skeletal fluorosis, left shoulder|Skeletal fluorosis, left shoulder +C2901638|T047|AB|M85.119|ICD10CM|Skeletal fluorosis, unspecified shoulder|Skeletal fluorosis, unspecified shoulder +C2901638|T047|PT|M85.119|ICD10CM|Skeletal fluorosis, unspecified shoulder|Skeletal fluorosis, unspecified shoulder +C0839860|T037|HT|M85.12|ICD10CM|Skeletal fluorosis, upper arm|Skeletal fluorosis, upper arm +C0839860|T037|AB|M85.12|ICD10CM|Skeletal fluorosis, upper arm|Skeletal fluorosis, upper arm +C2901639|T047|AB|M85.121|ICD10CM|Skeletal fluorosis, right upper arm|Skeletal fluorosis, right upper arm +C2901639|T047|PT|M85.121|ICD10CM|Skeletal fluorosis, right upper arm|Skeletal fluorosis, right upper arm +C2901640|T047|AB|M85.122|ICD10CM|Skeletal fluorosis, left upper arm|Skeletal fluorosis, left upper arm +C2901640|T047|PT|M85.122|ICD10CM|Skeletal fluorosis, left upper arm|Skeletal fluorosis, left upper arm +C2901641|T047|AB|M85.129|ICD10CM|Skeletal fluorosis, unspecified upper arm|Skeletal fluorosis, unspecified upper arm +C2901641|T047|PT|M85.129|ICD10CM|Skeletal fluorosis, unspecified upper arm|Skeletal fluorosis, unspecified upper arm +C0839861|T047|HT|M85.13|ICD10CM|Skeletal fluorosis, forearm|Skeletal fluorosis, forearm +C0839861|T047|AB|M85.13|ICD10CM|Skeletal fluorosis, forearm|Skeletal fluorosis, forearm +C2901642|T047|AB|M85.131|ICD10CM|Skeletal fluorosis, right forearm|Skeletal fluorosis, right forearm +C2901642|T047|PT|M85.131|ICD10CM|Skeletal fluorosis, right forearm|Skeletal fluorosis, right forearm +C2901643|T047|AB|M85.132|ICD10CM|Skeletal fluorosis, left forearm|Skeletal fluorosis, left forearm +C2901643|T047|PT|M85.132|ICD10CM|Skeletal fluorosis, left forearm|Skeletal fluorosis, left forearm +C0839861|T047|AB|M85.139|ICD10CM|Skeletal fluorosis, unspecified forearm|Skeletal fluorosis, unspecified forearm +C0839861|T047|PT|M85.139|ICD10CM|Skeletal fluorosis, unspecified forearm|Skeletal fluorosis, unspecified forearm +C0839862|T047|HT|M85.14|ICD10CM|Skeletal fluorosis, hand|Skeletal fluorosis, hand +C0839862|T047|AB|M85.14|ICD10CM|Skeletal fluorosis, hand|Skeletal fluorosis, hand +C2901644|T047|AB|M85.141|ICD10CM|Skeletal fluorosis, right hand|Skeletal fluorosis, right hand +C2901644|T047|PT|M85.141|ICD10CM|Skeletal fluorosis, right hand|Skeletal fluorosis, right hand +C2901645|T047|AB|M85.142|ICD10CM|Skeletal fluorosis, left hand|Skeletal fluorosis, left hand +C2901645|T047|PT|M85.142|ICD10CM|Skeletal fluorosis, left hand|Skeletal fluorosis, left hand +C0839862|T047|AB|M85.149|ICD10CM|Skeletal fluorosis, unspecified hand|Skeletal fluorosis, unspecified hand +C0839862|T047|PT|M85.149|ICD10CM|Skeletal fluorosis, unspecified hand|Skeletal fluorosis, unspecified hand +C2901646|T047|AB|M85.15|ICD10CM|Skeletal fluorosis, thigh|Skeletal fluorosis, thigh +C2901646|T047|HT|M85.15|ICD10CM|Skeletal fluorosis, thigh|Skeletal fluorosis, thigh +C2901647|T047|AB|M85.151|ICD10CM|Skeletal fluorosis, right thigh|Skeletal fluorosis, right thigh +C2901647|T047|PT|M85.151|ICD10CM|Skeletal fluorosis, right thigh|Skeletal fluorosis, right thigh +C2901648|T047|AB|M85.152|ICD10CM|Skeletal fluorosis, left thigh|Skeletal fluorosis, left thigh +C2901648|T047|PT|M85.152|ICD10CM|Skeletal fluorosis, left thigh|Skeletal fluorosis, left thigh +C2901649|T047|AB|M85.159|ICD10CM|Skeletal fluorosis, unspecified thigh|Skeletal fluorosis, unspecified thigh +C2901649|T047|PT|M85.159|ICD10CM|Skeletal fluorosis, unspecified thigh|Skeletal fluorosis, unspecified thigh +C0839864|T047|HT|M85.16|ICD10CM|Skeletal fluorosis, lower leg|Skeletal fluorosis, lower leg +C0839864|T047|AB|M85.16|ICD10CM|Skeletal fluorosis, lower leg|Skeletal fluorosis, lower leg +C2901650|T047|AB|M85.161|ICD10CM|Skeletal fluorosis, right lower leg|Skeletal fluorosis, right lower leg +C2901650|T047|PT|M85.161|ICD10CM|Skeletal fluorosis, right lower leg|Skeletal fluorosis, right lower leg +C2901651|T047|AB|M85.162|ICD10CM|Skeletal fluorosis, left lower leg|Skeletal fluorosis, left lower leg +C2901651|T047|PT|M85.162|ICD10CM|Skeletal fluorosis, left lower leg|Skeletal fluorosis, left lower leg +C0839864|T047|AB|M85.169|ICD10CM|Skeletal fluorosis, unspecified lower leg|Skeletal fluorosis, unspecified lower leg +C0839864|T047|PT|M85.169|ICD10CM|Skeletal fluorosis, unspecified lower leg|Skeletal fluorosis, unspecified lower leg +C0839865|T037|HT|M85.17|ICD10CM|Skeletal fluorosis, ankle and foot|Skeletal fluorosis, ankle and foot +C0839865|T037|AB|M85.17|ICD10CM|Skeletal fluorosis, ankle and foot|Skeletal fluorosis, ankle and foot +C2901652|T047|AB|M85.171|ICD10CM|Skeletal fluorosis, right ankle and foot|Skeletal fluorosis, right ankle and foot +C2901652|T047|PT|M85.171|ICD10CM|Skeletal fluorosis, right ankle and foot|Skeletal fluorosis, right ankle and foot +C2901653|T047|AB|M85.172|ICD10CM|Skeletal fluorosis, left ankle and foot|Skeletal fluorosis, left ankle and foot +C2901653|T047|PT|M85.172|ICD10CM|Skeletal fluorosis, left ankle and foot|Skeletal fluorosis, left ankle and foot +C2901654|T047|AB|M85.179|ICD10CM|Skeletal fluorosis, unspecified ankle and foot|Skeletal fluorosis, unspecified ankle and foot +C2901654|T047|PT|M85.179|ICD10CM|Skeletal fluorosis, unspecified ankle and foot|Skeletal fluorosis, unspecified ankle and foot +C0839866|T037|PT|M85.18|ICD10CM|Skeletal fluorosis, other site|Skeletal fluorosis, other site +C0839866|T037|AB|M85.18|ICD10CM|Skeletal fluorosis, other site|Skeletal fluorosis, other site +C0839858|T037|PT|M85.19|ICD10CM|Skeletal fluorosis, multiple sites|Skeletal fluorosis, multiple sites +C0839858|T037|AB|M85.19|ICD10CM|Skeletal fluorosis, multiple sites|Skeletal fluorosis, multiple sites +C0020496|T047|PT|M85.2|ICD10CM|Hyperostosis of skull|Hyperostosis of skull +C0020496|T047|AB|M85.2|ICD10CM|Hyperostosis of skull|Hyperostosis of skull +C0020496|T047|PT|M85.2|ICD10|Hyperostosis of skull|Hyperostosis of skull +C0152263|T047|PT|M85.3|ICD10|Osteitis condensans|Osteitis condensans +C0152263|T047|HT|M85.3|ICD10CM|Osteitis condensans|Osteitis condensans +C0152263|T047|AB|M85.3|ICD10CM|Osteitis condensans|Osteitis condensans +C0152263|T047|AB|M85.30|ICD10CM|Osteitis condensans, unspecified site|Osteitis condensans, unspecified site +C0152263|T047|PT|M85.30|ICD10CM|Osteitis condensans, unspecified site|Osteitis condensans, unspecified site +C2901655|T047|AB|M85.31|ICD10CM|Osteitis condensans, shoulder|Osteitis condensans, shoulder +C2901655|T047|HT|M85.31|ICD10CM|Osteitis condensans, shoulder|Osteitis condensans, shoulder +C2901656|T047|AB|M85.311|ICD10CM|Osteitis condensans, right shoulder|Osteitis condensans, right shoulder +C2901656|T047|PT|M85.311|ICD10CM|Osteitis condensans, right shoulder|Osteitis condensans, right shoulder +C2901657|T047|AB|M85.312|ICD10CM|Osteitis condensans, left shoulder|Osteitis condensans, left shoulder +C2901657|T047|PT|M85.312|ICD10CM|Osteitis condensans, left shoulder|Osteitis condensans, left shoulder +C2901658|T047|AB|M85.319|ICD10CM|Osteitis condensans, unspecified shoulder|Osteitis condensans, unspecified shoulder +C2901658|T047|PT|M85.319|ICD10CM|Osteitis condensans, unspecified shoulder|Osteitis condensans, unspecified shoulder +C0839870|T047|HT|M85.32|ICD10CM|Osteitis condensans, upper arm|Osteitis condensans, upper arm +C0839870|T047|AB|M85.32|ICD10CM|Osteitis condensans, upper arm|Osteitis condensans, upper arm +C2901659|T047|AB|M85.321|ICD10CM|Osteitis condensans, right upper arm|Osteitis condensans, right upper arm +C2901659|T047|PT|M85.321|ICD10CM|Osteitis condensans, right upper arm|Osteitis condensans, right upper arm +C2901660|T047|AB|M85.322|ICD10CM|Osteitis condensans, left upper arm|Osteitis condensans, left upper arm +C2901660|T047|PT|M85.322|ICD10CM|Osteitis condensans, left upper arm|Osteitis condensans, left upper arm +C2901661|T047|AB|M85.329|ICD10CM|Osteitis condensans, unspecified upper arm|Osteitis condensans, unspecified upper arm +C2901661|T047|PT|M85.329|ICD10CM|Osteitis condensans, unspecified upper arm|Osteitis condensans, unspecified upper arm +C0839871|T047|HT|M85.33|ICD10CM|Osteitis condensans, forearm|Osteitis condensans, forearm +C0839871|T047|AB|M85.33|ICD10CM|Osteitis condensans, forearm|Osteitis condensans, forearm +C2901662|T047|AB|M85.331|ICD10CM|Osteitis condensans, right forearm|Osteitis condensans, right forearm +C2901662|T047|PT|M85.331|ICD10CM|Osteitis condensans, right forearm|Osteitis condensans, right forearm +C2901663|T047|AB|M85.332|ICD10CM|Osteitis condensans, left forearm|Osteitis condensans, left forearm +C2901663|T047|PT|M85.332|ICD10CM|Osteitis condensans, left forearm|Osteitis condensans, left forearm +C2901664|T047|AB|M85.339|ICD10CM|Osteitis condensans, unspecified forearm|Osteitis condensans, unspecified forearm +C2901664|T047|PT|M85.339|ICD10CM|Osteitis condensans, unspecified forearm|Osteitis condensans, unspecified forearm +C0839872|T047|HT|M85.34|ICD10CM|Osteitis condensans, hand|Osteitis condensans, hand +C0839872|T047|AB|M85.34|ICD10CM|Osteitis condensans, hand|Osteitis condensans, hand +C2901665|T047|AB|M85.341|ICD10CM|Osteitis condensans, right hand|Osteitis condensans, right hand +C2901665|T047|PT|M85.341|ICD10CM|Osteitis condensans, right hand|Osteitis condensans, right hand +C2901666|T047|AB|M85.342|ICD10CM|Osteitis condensans, left hand|Osteitis condensans, left hand +C2901666|T047|PT|M85.342|ICD10CM|Osteitis condensans, left hand|Osteitis condensans, left hand +C2901667|T047|AB|M85.349|ICD10CM|Osteitis condensans, unspecified hand|Osteitis condensans, unspecified hand +C2901667|T047|PT|M85.349|ICD10CM|Osteitis condensans, unspecified hand|Osteitis condensans, unspecified hand +C2901668|T047|AB|M85.35|ICD10CM|Osteitis condensans, thigh|Osteitis condensans, thigh +C2901668|T047|HT|M85.35|ICD10CM|Osteitis condensans, thigh|Osteitis condensans, thigh +C2901669|T047|AB|M85.351|ICD10CM|Osteitis condensans, right thigh|Osteitis condensans, right thigh +C2901669|T047|PT|M85.351|ICD10CM|Osteitis condensans, right thigh|Osteitis condensans, right thigh +C2901670|T047|AB|M85.352|ICD10CM|Osteitis condensans, left thigh|Osteitis condensans, left thigh +C2901670|T047|PT|M85.352|ICD10CM|Osteitis condensans, left thigh|Osteitis condensans, left thigh +C2901671|T047|AB|M85.359|ICD10CM|Osteitis condensans, unspecified thigh|Osteitis condensans, unspecified thigh +C2901671|T047|PT|M85.359|ICD10CM|Osteitis condensans, unspecified thigh|Osteitis condensans, unspecified thigh +C0839874|T047|HT|M85.36|ICD10CM|Osteitis condensans, lower leg|Osteitis condensans, lower leg +C0839874|T047|AB|M85.36|ICD10CM|Osteitis condensans, lower leg|Osteitis condensans, lower leg +C2901672|T047|AB|M85.361|ICD10CM|Osteitis condensans, right lower leg|Osteitis condensans, right lower leg +C2901672|T047|PT|M85.361|ICD10CM|Osteitis condensans, right lower leg|Osteitis condensans, right lower leg +C2901673|T047|AB|M85.362|ICD10CM|Osteitis condensans, left lower leg|Osteitis condensans, left lower leg +C2901673|T047|PT|M85.362|ICD10CM|Osteitis condensans, left lower leg|Osteitis condensans, left lower leg +C2901674|T047|AB|M85.369|ICD10CM|Osteitis condensans, unspecified lower leg|Osteitis condensans, unspecified lower leg +C2901674|T047|PT|M85.369|ICD10CM|Osteitis condensans, unspecified lower leg|Osteitis condensans, unspecified lower leg +C0839875|T047|HT|M85.37|ICD10CM|Osteitis condensans, ankle and foot|Osteitis condensans, ankle and foot +C0839875|T047|AB|M85.37|ICD10CM|Osteitis condensans, ankle and foot|Osteitis condensans, ankle and foot +C2901675|T047|AB|M85.371|ICD10CM|Osteitis condensans, right ankle and foot|Osteitis condensans, right ankle and foot +C2901675|T047|PT|M85.371|ICD10CM|Osteitis condensans, right ankle and foot|Osteitis condensans, right ankle and foot +C2901676|T047|AB|M85.372|ICD10CM|Osteitis condensans, left ankle and foot|Osteitis condensans, left ankle and foot +C2901676|T047|PT|M85.372|ICD10CM|Osteitis condensans, left ankle and foot|Osteitis condensans, left ankle and foot +C2901677|T047|AB|M85.379|ICD10CM|Osteitis condensans, unspecified ankle and foot|Osteitis condensans, unspecified ankle and foot +C2901677|T047|PT|M85.379|ICD10CM|Osteitis condensans, unspecified ankle and foot|Osteitis condensans, unspecified ankle and foot +C0839876|T047|AB|M85.38|ICD10CM|Osteitis condensans, other site|Osteitis condensans, other site +C0839876|T047|PT|M85.38|ICD10CM|Osteitis condensans, other site|Osteitis condensans, other site +C0839868|T047|PT|M85.39|ICD10CM|Osteitis condensans, multiple sites|Osteitis condensans, multiple sites +C0839868|T047|AB|M85.39|ICD10CM|Osteitis condensans, multiple sites|Osteitis condensans, multiple sites +C0005937|T190|PT|M85.4|ICD10|Solitary bone cyst|Solitary bone cyst +C0005937|T190|HT|M85.4|ICD10CM|Solitary bone cyst|Solitary bone cyst +C0005937|T190|AB|M85.4|ICD10CM|Solitary bone cyst|Solitary bone cyst +C0005937|T190|AB|M85.40|ICD10CM|Solitary bone cyst, unspecified site|Solitary bone cyst, unspecified site +C0005937|T190|PT|M85.40|ICD10CM|Solitary bone cyst, unspecified site|Solitary bone cyst, unspecified site +C2901681|T190|AB|M85.41|ICD10CM|Solitary bone cyst, shoulder|Solitary bone cyst, shoulder +C2901681|T190|HT|M85.41|ICD10CM|Solitary bone cyst, shoulder|Solitary bone cyst, shoulder +C2901679|T047|AB|M85.411|ICD10CM|Solitary bone cyst, right shoulder|Solitary bone cyst, right shoulder +C2901679|T047|PT|M85.411|ICD10CM|Solitary bone cyst, right shoulder|Solitary bone cyst, right shoulder +C2901680|T047|AB|M85.412|ICD10CM|Solitary bone cyst, left shoulder|Solitary bone cyst, left shoulder +C2901680|T047|PT|M85.412|ICD10CM|Solitary bone cyst, left shoulder|Solitary bone cyst, left shoulder +C2901681|T190|AB|M85.419|ICD10CM|Solitary bone cyst, unspecified shoulder|Solitary bone cyst, unspecified shoulder +C2901681|T190|PT|M85.419|ICD10CM|Solitary bone cyst, unspecified shoulder|Solitary bone cyst, unspecified shoulder +C2901684|T190|AB|M85.42|ICD10CM|Solitary bone cyst, humerus|Solitary bone cyst, humerus +C2901684|T190|HT|M85.42|ICD10CM|Solitary bone cyst, humerus|Solitary bone cyst, humerus +C2901682|T190|AB|M85.421|ICD10CM|Solitary bone cyst, right humerus|Solitary bone cyst, right humerus +C2901682|T190|PT|M85.421|ICD10CM|Solitary bone cyst, right humerus|Solitary bone cyst, right humerus +C2901683|T190|AB|M85.422|ICD10CM|Solitary bone cyst, left humerus|Solitary bone cyst, left humerus +C2901683|T190|PT|M85.422|ICD10CM|Solitary bone cyst, left humerus|Solitary bone cyst, left humerus +C2901684|T190|AB|M85.429|ICD10CM|Solitary bone cyst, unspecified humerus|Solitary bone cyst, unspecified humerus +C2901684|T190|PT|M85.429|ICD10CM|Solitary bone cyst, unspecified humerus|Solitary bone cyst, unspecified humerus +C2901685|T190|AB|M85.43|ICD10CM|Solitary bone cyst, ulna and radius|Solitary bone cyst, ulna and radius +C2901685|T190|HT|M85.43|ICD10CM|Solitary bone cyst, ulna and radius|Solitary bone cyst, ulna and radius +C2901686|T047|AB|M85.431|ICD10CM|Solitary bone cyst, right ulna and radius|Solitary bone cyst, right ulna and radius +C2901686|T047|PT|M85.431|ICD10CM|Solitary bone cyst, right ulna and radius|Solitary bone cyst, right ulna and radius +C2901687|T047|AB|M85.432|ICD10CM|Solitary bone cyst, left ulna and radius|Solitary bone cyst, left ulna and radius +C2901687|T047|PT|M85.432|ICD10CM|Solitary bone cyst, left ulna and radius|Solitary bone cyst, left ulna and radius +C2901688|T047|AB|M85.439|ICD10CM|Solitary bone cyst, unspecified ulna and radius|Solitary bone cyst, unspecified ulna and radius +C2901688|T047|PT|M85.439|ICD10CM|Solitary bone cyst, unspecified ulna and radius|Solitary bone cyst, unspecified ulna and radius +C0839882|T190|HT|M85.44|ICD10CM|Solitary bone cyst, hand|Solitary bone cyst, hand +C0839882|T190|AB|M85.44|ICD10CM|Solitary bone cyst, hand|Solitary bone cyst, hand +C2901689|T047|AB|M85.441|ICD10CM|Solitary bone cyst, right hand|Solitary bone cyst, right hand +C2901689|T047|PT|M85.441|ICD10CM|Solitary bone cyst, right hand|Solitary bone cyst, right hand +C2901690|T047|AB|M85.442|ICD10CM|Solitary bone cyst, left hand|Solitary bone cyst, left hand +C2901690|T047|PT|M85.442|ICD10CM|Solitary bone cyst, left hand|Solitary bone cyst, left hand +C0839882|T190|AB|M85.449|ICD10CM|Solitary bone cyst, unspecified hand|Solitary bone cyst, unspecified hand +C0839882|T190|PT|M85.449|ICD10CM|Solitary bone cyst, unspecified hand|Solitary bone cyst, unspecified hand +C2901691|T190|AB|M85.45|ICD10CM|Solitary bone cyst, pelvis|Solitary bone cyst, pelvis +C2901691|T190|HT|M85.45|ICD10CM|Solitary bone cyst, pelvis|Solitary bone cyst, pelvis +C2901692|T047|AB|M85.451|ICD10CM|Solitary bone cyst, right pelvis|Solitary bone cyst, right pelvis +C2901692|T047|PT|M85.451|ICD10CM|Solitary bone cyst, right pelvis|Solitary bone cyst, right pelvis +C2901693|T047|AB|M85.452|ICD10CM|Solitary bone cyst, left pelvis|Solitary bone cyst, left pelvis +C2901693|T047|PT|M85.452|ICD10CM|Solitary bone cyst, left pelvis|Solitary bone cyst, left pelvis +C2901691|T190|AB|M85.459|ICD10CM|Solitary bone cyst, unspecified pelvis|Solitary bone cyst, unspecified pelvis +C2901691|T190|PT|M85.459|ICD10CM|Solitary bone cyst, unspecified pelvis|Solitary bone cyst, unspecified pelvis +C2901694|T190|AB|M85.46|ICD10CM|Solitary bone cyst, tibia and fibula|Solitary bone cyst, tibia and fibula +C2901694|T190|HT|M85.46|ICD10CM|Solitary bone cyst, tibia and fibula|Solitary bone cyst, tibia and fibula +C2901695|T047|AB|M85.461|ICD10CM|Solitary bone cyst, right tibia and fibula|Solitary bone cyst, right tibia and fibula +C2901695|T047|PT|M85.461|ICD10CM|Solitary bone cyst, right tibia and fibula|Solitary bone cyst, right tibia and fibula +C2901696|T047|AB|M85.462|ICD10CM|Solitary bone cyst, left tibia and fibula|Solitary bone cyst, left tibia and fibula +C2901696|T047|PT|M85.462|ICD10CM|Solitary bone cyst, left tibia and fibula|Solitary bone cyst, left tibia and fibula +C2901697|T047|AB|M85.469|ICD10CM|Solitary bone cyst, unspecified tibia and fibula|Solitary bone cyst, unspecified tibia and fibula +C2901697|T047|PT|M85.469|ICD10CM|Solitary bone cyst, unspecified tibia and fibula|Solitary bone cyst, unspecified tibia and fibula +C0839885|T190|HT|M85.47|ICD10CM|Solitary bone cyst, ankle and foot|Solitary bone cyst, ankle and foot +C0839885|T190|AB|M85.47|ICD10CM|Solitary bone cyst, ankle and foot|Solitary bone cyst, ankle and foot +C2901698|T190|AB|M85.471|ICD10CM|Solitary bone cyst, right ankle and foot|Solitary bone cyst, right ankle and foot +C2901698|T190|PT|M85.471|ICD10CM|Solitary bone cyst, right ankle and foot|Solitary bone cyst, right ankle and foot +C2901699|T190|AB|M85.472|ICD10CM|Solitary bone cyst, left ankle and foot|Solitary bone cyst, left ankle and foot +C2901699|T190|PT|M85.472|ICD10CM|Solitary bone cyst, left ankle and foot|Solitary bone cyst, left ankle and foot +C0839885|T190|AB|M85.479|ICD10CM|Solitary bone cyst, unspecified ankle and foot|Solitary bone cyst, unspecified ankle and foot +C0839885|T190|PT|M85.479|ICD10CM|Solitary bone cyst, unspecified ankle and foot|Solitary bone cyst, unspecified ankle and foot +C0839886|T190|PT|M85.48|ICD10CM|Solitary bone cyst, other site|Solitary bone cyst, other site +C0839886|T190|AB|M85.48|ICD10CM|Solitary bone cyst, other site|Solitary bone cyst, other site +C0152244|T047|HT|M85.5|ICD10CM|Aneurysmal bone cyst|Aneurysmal bone cyst +C0152244|T047|AB|M85.5|ICD10CM|Aneurysmal bone cyst|Aneurysmal bone cyst +C0152244|T047|PT|M85.5|ICD10|Aneurysmal bone cyst|Aneurysmal bone cyst +C0152244|T047|AB|M85.50|ICD10CM|Aneurysmal bone cyst, unspecified site|Aneurysmal bone cyst, unspecified site +C0152244|T047|PT|M85.50|ICD10CM|Aneurysmal bone cyst, unspecified site|Aneurysmal bone cyst, unspecified site +C2901700|T190|AB|M85.51|ICD10CM|Aneurysmal bone cyst, shoulder|Aneurysmal bone cyst, shoulder +C2901700|T190|HT|M85.51|ICD10CM|Aneurysmal bone cyst, shoulder|Aneurysmal bone cyst, shoulder +C2901701|T190|AB|M85.511|ICD10CM|Aneurysmal bone cyst, right shoulder|Aneurysmal bone cyst, right shoulder +C2901701|T190|PT|M85.511|ICD10CM|Aneurysmal bone cyst, right shoulder|Aneurysmal bone cyst, right shoulder +C2901702|T190|AB|M85.512|ICD10CM|Aneurysmal bone cyst, left shoulder|Aneurysmal bone cyst, left shoulder +C2901702|T190|PT|M85.512|ICD10CM|Aneurysmal bone cyst, left shoulder|Aneurysmal bone cyst, left shoulder +C2901703|T190|AB|M85.519|ICD10CM|Aneurysmal bone cyst, unspecified shoulder|Aneurysmal bone cyst, unspecified shoulder +C2901703|T190|PT|M85.519|ICD10CM|Aneurysmal bone cyst, unspecified shoulder|Aneurysmal bone cyst, unspecified shoulder +C0839890|T190|HT|M85.52|ICD10CM|Aneurysmal bone cyst, upper arm|Aneurysmal bone cyst, upper arm +C0839890|T190|AB|M85.52|ICD10CM|Aneurysmal bone cyst, upper arm|Aneurysmal bone cyst, upper arm +C2901704|T047|AB|M85.521|ICD10CM|Aneurysmal bone cyst, right upper arm|Aneurysmal bone cyst, right upper arm +C2901704|T047|PT|M85.521|ICD10CM|Aneurysmal bone cyst, right upper arm|Aneurysmal bone cyst, right upper arm +C2901705|T047|AB|M85.522|ICD10CM|Aneurysmal bone cyst, left upper arm|Aneurysmal bone cyst, left upper arm +C2901705|T047|PT|M85.522|ICD10CM|Aneurysmal bone cyst, left upper arm|Aneurysmal bone cyst, left upper arm +C2901706|T047|AB|M85.529|ICD10CM|Aneurysmal bone cyst, unspecified upper arm|Aneurysmal bone cyst, unspecified upper arm +C2901706|T047|PT|M85.529|ICD10CM|Aneurysmal bone cyst, unspecified upper arm|Aneurysmal bone cyst, unspecified upper arm +C0839891|T190|HT|M85.53|ICD10CM|Aneurysmal bone cyst, forearm|Aneurysmal bone cyst, forearm +C0839891|T190|AB|M85.53|ICD10CM|Aneurysmal bone cyst, forearm|Aneurysmal bone cyst, forearm +C2901707|T047|AB|M85.531|ICD10CM|Aneurysmal bone cyst, right forearm|Aneurysmal bone cyst, right forearm +C2901707|T047|PT|M85.531|ICD10CM|Aneurysmal bone cyst, right forearm|Aneurysmal bone cyst, right forearm +C2901708|T047|AB|M85.532|ICD10CM|Aneurysmal bone cyst, left forearm|Aneurysmal bone cyst, left forearm +C2901708|T047|PT|M85.532|ICD10CM|Aneurysmal bone cyst, left forearm|Aneurysmal bone cyst, left forearm +C2901709|T047|AB|M85.539|ICD10CM|Aneurysmal bone cyst, unspecified forearm|Aneurysmal bone cyst, unspecified forearm +C2901709|T047|PT|M85.539|ICD10CM|Aneurysmal bone cyst, unspecified forearm|Aneurysmal bone cyst, unspecified forearm +C0839892|T190|HT|M85.54|ICD10CM|Aneurysmal bone cyst, hand|Aneurysmal bone cyst, hand +C0839892|T190|AB|M85.54|ICD10CM|Aneurysmal bone cyst, hand|Aneurysmal bone cyst, hand +C2901710|T047|AB|M85.541|ICD10CM|Aneurysmal bone cyst, right hand|Aneurysmal bone cyst, right hand +C2901710|T047|PT|M85.541|ICD10CM|Aneurysmal bone cyst, right hand|Aneurysmal bone cyst, right hand +C2901711|T047|AB|M85.542|ICD10CM|Aneurysmal bone cyst, left hand|Aneurysmal bone cyst, left hand +C2901711|T047|PT|M85.542|ICD10CM|Aneurysmal bone cyst, left hand|Aneurysmal bone cyst, left hand +C2901712|T047|AB|M85.549|ICD10CM|Aneurysmal bone cyst, unspecified hand|Aneurysmal bone cyst, unspecified hand +C2901712|T047|PT|M85.549|ICD10CM|Aneurysmal bone cyst, unspecified hand|Aneurysmal bone cyst, unspecified hand +C2901713|T190|AB|M85.55|ICD10CM|Aneurysmal bone cyst, thigh|Aneurysmal bone cyst, thigh +C2901713|T190|HT|M85.55|ICD10CM|Aneurysmal bone cyst, thigh|Aneurysmal bone cyst, thigh +C2901714|T190|AB|M85.551|ICD10CM|Aneurysmal bone cyst, right thigh|Aneurysmal bone cyst, right thigh +C2901714|T190|PT|M85.551|ICD10CM|Aneurysmal bone cyst, right thigh|Aneurysmal bone cyst, right thigh +C2901715|T190|AB|M85.552|ICD10CM|Aneurysmal bone cyst, left thigh|Aneurysmal bone cyst, left thigh +C2901715|T190|PT|M85.552|ICD10CM|Aneurysmal bone cyst, left thigh|Aneurysmal bone cyst, left thigh +C2901716|T190|AB|M85.559|ICD10CM|Aneurysmal bone cyst, unspecified thigh|Aneurysmal bone cyst, unspecified thigh +C2901716|T190|PT|M85.559|ICD10CM|Aneurysmal bone cyst, unspecified thigh|Aneurysmal bone cyst, unspecified thigh +C0839894|T190|HT|M85.56|ICD10CM|Aneurysmal bone cyst, lower leg|Aneurysmal bone cyst, lower leg +C0839894|T190|AB|M85.56|ICD10CM|Aneurysmal bone cyst, lower leg|Aneurysmal bone cyst, lower leg +C2901717|T047|AB|M85.561|ICD10CM|Aneurysmal bone cyst, right lower leg|Aneurysmal bone cyst, right lower leg +C2901717|T047|PT|M85.561|ICD10CM|Aneurysmal bone cyst, right lower leg|Aneurysmal bone cyst, right lower leg +C2901718|T047|AB|M85.562|ICD10CM|Aneurysmal bone cyst, left lower leg|Aneurysmal bone cyst, left lower leg +C2901718|T047|PT|M85.562|ICD10CM|Aneurysmal bone cyst, left lower leg|Aneurysmal bone cyst, left lower leg +C2901719|T047|AB|M85.569|ICD10CM|Aneurysmal bone cyst, unspecified lower leg|Aneurysmal bone cyst, unspecified lower leg +C2901719|T047|PT|M85.569|ICD10CM|Aneurysmal bone cyst, unspecified lower leg|Aneurysmal bone cyst, unspecified lower leg +C0839895|T190|HT|M85.57|ICD10CM|Aneurysmal bone cyst, ankle and foot|Aneurysmal bone cyst, ankle and foot +C0839895|T190|AB|M85.57|ICD10CM|Aneurysmal bone cyst, ankle and foot|Aneurysmal bone cyst, ankle and foot +C2901720|T047|AB|M85.571|ICD10CM|Aneurysmal bone cyst, right ankle and foot|Aneurysmal bone cyst, right ankle and foot +C2901720|T047|PT|M85.571|ICD10CM|Aneurysmal bone cyst, right ankle and foot|Aneurysmal bone cyst, right ankle and foot +C2901721|T047|AB|M85.572|ICD10CM|Aneurysmal bone cyst, left ankle and foot|Aneurysmal bone cyst, left ankle and foot +C2901721|T047|PT|M85.572|ICD10CM|Aneurysmal bone cyst, left ankle and foot|Aneurysmal bone cyst, left ankle and foot +C2901722|T047|AB|M85.579|ICD10CM|Aneurysmal bone cyst, unspecified ankle and foot|Aneurysmal bone cyst, unspecified ankle and foot +C2901722|T047|PT|M85.579|ICD10CM|Aneurysmal bone cyst, unspecified ankle and foot|Aneurysmal bone cyst, unspecified ankle and foot +C0839896|T047|PT|M85.58|ICD10CM|Aneurysmal bone cyst, other site|Aneurysmal bone cyst, other site +C0839896|T047|AB|M85.58|ICD10CM|Aneurysmal bone cyst, other site|Aneurysmal bone cyst, other site +C0839888|T190|PT|M85.59|ICD10CM|Aneurysmal bone cyst, multiple sites|Aneurysmal bone cyst, multiple sites +C0839888|T190|AB|M85.59|ICD10CM|Aneurysmal bone cyst, multiple sites|Aneurysmal bone cyst, multiple sites +C0029525|T047|PT|M85.6|ICD10|Other cyst of bone|Other cyst of bone +C0029525|T047|HT|M85.6|ICD10CM|Other cyst of bone|Other cyst of bone +C0029525|T047|AB|M85.6|ICD10CM|Other cyst of bone|Other cyst of bone +C2901723|T047|AB|M85.60|ICD10CM|Other cyst of bone, unspecified site|Other cyst of bone, unspecified site +C2901723|T047|PT|M85.60|ICD10CM|Other cyst of bone, unspecified site|Other cyst of bone, unspecified site +C2901724|T047|AB|M85.61|ICD10CM|Other cyst of bone, shoulder|Other cyst of bone, shoulder +C2901724|T047|HT|M85.61|ICD10CM|Other cyst of bone, shoulder|Other cyst of bone, shoulder +C2901725|T047|AB|M85.611|ICD10CM|Other cyst of bone, right shoulder|Other cyst of bone, right shoulder +C2901725|T047|PT|M85.611|ICD10CM|Other cyst of bone, right shoulder|Other cyst of bone, right shoulder +C2901726|T047|AB|M85.612|ICD10CM|Other cyst of bone, left shoulder|Other cyst of bone, left shoulder +C2901726|T047|PT|M85.612|ICD10CM|Other cyst of bone, left shoulder|Other cyst of bone, left shoulder +C2901727|T047|AB|M85.619|ICD10CM|Other cyst of bone, unspecified shoulder|Other cyst of bone, unspecified shoulder +C2901727|T047|PT|M85.619|ICD10CM|Other cyst of bone, unspecified shoulder|Other cyst of bone, unspecified shoulder +C0839900|T047|HT|M85.62|ICD10CM|Other cyst of bone, upper arm|Other cyst of bone, upper arm +C0839900|T047|AB|M85.62|ICD10CM|Other cyst of bone, upper arm|Other cyst of bone, upper arm +C2901728|T047|AB|M85.621|ICD10CM|Other cyst of bone, right upper arm|Other cyst of bone, right upper arm +C2901728|T047|PT|M85.621|ICD10CM|Other cyst of bone, right upper arm|Other cyst of bone, right upper arm +C2901729|T047|AB|M85.622|ICD10CM|Other cyst of bone, left upper arm|Other cyst of bone, left upper arm +C2901729|T047|PT|M85.622|ICD10CM|Other cyst of bone, left upper arm|Other cyst of bone, left upper arm +C2901730|T047|AB|M85.629|ICD10CM|Other cyst of bone, unspecified upper arm|Other cyst of bone, unspecified upper arm +C2901730|T047|PT|M85.629|ICD10CM|Other cyst of bone, unspecified upper arm|Other cyst of bone, unspecified upper arm +C0839901|T047|HT|M85.63|ICD10CM|Other cyst of bone, forearm|Other cyst of bone, forearm +C0839901|T047|AB|M85.63|ICD10CM|Other cyst of bone, forearm|Other cyst of bone, forearm +C2901731|T047|AB|M85.631|ICD10CM|Other cyst of bone, right forearm|Other cyst of bone, right forearm +C2901731|T047|PT|M85.631|ICD10CM|Other cyst of bone, right forearm|Other cyst of bone, right forearm +C2901732|T047|AB|M85.632|ICD10CM|Other cyst of bone, left forearm|Other cyst of bone, left forearm +C2901732|T047|PT|M85.632|ICD10CM|Other cyst of bone, left forearm|Other cyst of bone, left forearm +C2901733|T047|AB|M85.639|ICD10CM|Other cyst of bone, unspecified forearm|Other cyst of bone, unspecified forearm +C2901733|T047|PT|M85.639|ICD10CM|Other cyst of bone, unspecified forearm|Other cyst of bone, unspecified forearm +C0839902|T047|HT|M85.64|ICD10CM|Other cyst of bone, hand|Other cyst of bone, hand +C0839902|T047|AB|M85.64|ICD10CM|Other cyst of bone, hand|Other cyst of bone, hand +C2901734|T047|AB|M85.641|ICD10CM|Other cyst of bone, right hand|Other cyst of bone, right hand +C2901734|T047|PT|M85.641|ICD10CM|Other cyst of bone, right hand|Other cyst of bone, right hand +C2901735|T047|AB|M85.642|ICD10CM|Other cyst of bone, left hand|Other cyst of bone, left hand +C2901735|T047|PT|M85.642|ICD10CM|Other cyst of bone, left hand|Other cyst of bone, left hand +C2901736|T047|AB|M85.649|ICD10CM|Other cyst of bone, unspecified hand|Other cyst of bone, unspecified hand +C2901736|T047|PT|M85.649|ICD10CM|Other cyst of bone, unspecified hand|Other cyst of bone, unspecified hand +C2901737|T047|AB|M85.65|ICD10CM|Other cyst of bone, thigh|Other cyst of bone, thigh +C2901737|T047|HT|M85.65|ICD10CM|Other cyst of bone, thigh|Other cyst of bone, thigh +C2901738|T047|AB|M85.651|ICD10CM|Other cyst of bone, right thigh|Other cyst of bone, right thigh +C2901738|T047|PT|M85.651|ICD10CM|Other cyst of bone, right thigh|Other cyst of bone, right thigh +C2901739|T047|AB|M85.652|ICD10CM|Other cyst of bone, left thigh|Other cyst of bone, left thigh +C2901739|T047|PT|M85.652|ICD10CM|Other cyst of bone, left thigh|Other cyst of bone, left thigh +C2901740|T047|AB|M85.659|ICD10CM|Other cyst of bone, unspecified thigh|Other cyst of bone, unspecified thigh +C2901740|T047|PT|M85.659|ICD10CM|Other cyst of bone, unspecified thigh|Other cyst of bone, unspecified thigh +C0839904|T047|HT|M85.66|ICD10CM|Other cyst of bone, lower leg|Other cyst of bone, lower leg +C0839904|T047|AB|M85.66|ICD10CM|Other cyst of bone, lower leg|Other cyst of bone, lower leg +C2901741|T047|AB|M85.661|ICD10CM|Other cyst of bone, right lower leg|Other cyst of bone, right lower leg +C2901741|T047|PT|M85.661|ICD10CM|Other cyst of bone, right lower leg|Other cyst of bone, right lower leg +C2901742|T047|AB|M85.662|ICD10CM|Other cyst of bone, left lower leg|Other cyst of bone, left lower leg +C2901742|T047|PT|M85.662|ICD10CM|Other cyst of bone, left lower leg|Other cyst of bone, left lower leg +C2901743|T047|AB|M85.669|ICD10CM|Other cyst of bone, unspecified lower leg|Other cyst of bone, unspecified lower leg +C2901743|T047|PT|M85.669|ICD10CM|Other cyst of bone, unspecified lower leg|Other cyst of bone, unspecified lower leg +C0839905|T047|HT|M85.67|ICD10CM|Other cyst of bone, ankle and foot|Other cyst of bone, ankle and foot +C0839905|T047|AB|M85.67|ICD10CM|Other cyst of bone, ankle and foot|Other cyst of bone, ankle and foot +C2901744|T047|AB|M85.671|ICD10CM|Other cyst of bone, right ankle and foot|Other cyst of bone, right ankle and foot +C2901744|T047|PT|M85.671|ICD10CM|Other cyst of bone, right ankle and foot|Other cyst of bone, right ankle and foot +C2901745|T047|AB|M85.672|ICD10CM|Other cyst of bone, left ankle and foot|Other cyst of bone, left ankle and foot +C2901745|T047|PT|M85.672|ICD10CM|Other cyst of bone, left ankle and foot|Other cyst of bone, left ankle and foot +C2901746|T047|AB|M85.679|ICD10CM|Other cyst of bone, unspecified ankle and foot|Other cyst of bone, unspecified ankle and foot +C2901746|T047|PT|M85.679|ICD10CM|Other cyst of bone, unspecified ankle and foot|Other cyst of bone, unspecified ankle and foot +C0839906|T047|PT|M85.68|ICD10CM|Other cyst of bone, other site|Other cyst of bone, other site +C0839906|T047|AB|M85.68|ICD10CM|Other cyst of bone, other site|Other cyst of bone, other site +C0839898|T047|PT|M85.69|ICD10CM|Other cyst of bone, multiple sites|Other cyst of bone, multiple sites +C0839898|T047|AB|M85.69|ICD10CM|Other cyst of bone, multiple sites|Other cyst of bone, multiple sites +C2901747|T033|ET|M85.8|ICD10CM|Hyperostosis of bones, except skull|Hyperostosis of bones, except skull +C2901748|T047|ET|M85.8|ICD10CM|Osteosclerosis, acquired|Osteosclerosis, acquired +C0477678|T047|HT|M85.8|ICD10CM|Other specified disorders of bone density and structure|Other specified disorders of bone density and structure +C0477678|T047|AB|M85.8|ICD10CM|Other specified disorders of bone density and structure|Other specified disorders of bone density and structure +C0477678|T047|PT|M85.8|ICD10|Other specified disorders of bone density and structure|Other specified disorders of bone density and structure +C0477678|T047|AB|M85.80|ICD10CM|Oth disrd of bone density and structure, unspecified site|Oth disrd of bone density and structure, unspecified site +C0477678|T047|PT|M85.80|ICD10CM|Other specified disorders of bone density and structure, unspecified site|Other specified disorders of bone density and structure, unspecified site +C2901749|T047|AB|M85.81|ICD10CM|Oth disrd of bone density and structure, shoulder|Oth disrd of bone density and structure, shoulder +C2901749|T047|HT|M85.81|ICD10CM|Other specified disorders of bone density and structure, shoulder|Other specified disorders of bone density and structure, shoulder +C2901750|T047|AB|M85.811|ICD10CM|Oth disrd of bone density and structure, right shoulder|Oth disrd of bone density and structure, right shoulder +C2901750|T047|PT|M85.811|ICD10CM|Other specified disorders of bone density and structure, right shoulder|Other specified disorders of bone density and structure, right shoulder +C2901751|T047|AB|M85.812|ICD10CM|Oth disrd of bone density and structure, left shoulder|Oth disrd of bone density and structure, left shoulder +C2901751|T047|PT|M85.812|ICD10CM|Other specified disorders of bone density and structure, left shoulder|Other specified disorders of bone density and structure, left shoulder +C2901752|T047|AB|M85.819|ICD10CM|Oth disrd of bone density and structure, unsp shoulder|Oth disrd of bone density and structure, unsp shoulder +C2901752|T047|PT|M85.819|ICD10CM|Other specified disorders of bone density and structure, unspecified shoulder|Other specified disorders of bone density and structure, unspecified shoulder +C0839910|T047|AB|M85.82|ICD10CM|Oth disrd of bone density and structure, upper arm|Oth disrd of bone density and structure, upper arm +C0839910|T047|HT|M85.82|ICD10CM|Other specified disorders of bone density and structure, upper arm|Other specified disorders of bone density and structure, upper arm +C2901753|T047|AB|M85.821|ICD10CM|Oth disrd of bone density and structure, right upper arm|Oth disrd of bone density and structure, right upper arm +C2901753|T047|PT|M85.821|ICD10CM|Other specified disorders of bone density and structure, right upper arm|Other specified disorders of bone density and structure, right upper arm +C2901754|T047|AB|M85.822|ICD10CM|Oth disrd of bone density and structure, left upper arm|Oth disrd of bone density and structure, left upper arm +C2901754|T047|PT|M85.822|ICD10CM|Other specified disorders of bone density and structure, left upper arm|Other specified disorders of bone density and structure, left upper arm +C2901755|T047|AB|M85.829|ICD10CM|Oth disrd of bone density and structure, unsp upper arm|Oth disrd of bone density and structure, unsp upper arm +C2901755|T047|PT|M85.829|ICD10CM|Other specified disorders of bone density and structure, unspecified upper arm|Other specified disorders of bone density and structure, unspecified upper arm +C0839911|T047|AB|M85.83|ICD10CM|Oth disrd of bone density and structure, forearm|Oth disrd of bone density and structure, forearm +C0839911|T047|HT|M85.83|ICD10CM|Other specified disorders of bone density and structure, forearm|Other specified disorders of bone density and structure, forearm +C2901756|T047|AB|M85.831|ICD10CM|Oth disrd of bone density and structure, right forearm|Oth disrd of bone density and structure, right forearm +C2901756|T047|PT|M85.831|ICD10CM|Other specified disorders of bone density and structure, right forearm|Other specified disorders of bone density and structure, right forearm +C2901757|T047|AB|M85.832|ICD10CM|Oth disrd of bone density and structure, left forearm|Oth disrd of bone density and structure, left forearm +C2901757|T047|PT|M85.832|ICD10CM|Other specified disorders of bone density and structure, left forearm|Other specified disorders of bone density and structure, left forearm +C2901758|T047|AB|M85.839|ICD10CM|Oth disrd of bone density and structure, unspecified forearm|Oth disrd of bone density and structure, unspecified forearm +C2901758|T047|PT|M85.839|ICD10CM|Other specified disorders of bone density and structure, unspecified forearm|Other specified disorders of bone density and structure, unspecified forearm +C0839912|T047|AB|M85.84|ICD10CM|Oth disrd of bone density and structure, hand|Oth disrd of bone density and structure, hand +C0839912|T047|HT|M85.84|ICD10CM|Other specified disorders of bone density and structure, hand|Other specified disorders of bone density and structure, hand +C2901759|T047|AB|M85.841|ICD10CM|Oth disrd of bone density and structure, right hand|Oth disrd of bone density and structure, right hand +C2901759|T047|PT|M85.841|ICD10CM|Other specified disorders of bone density and structure, right hand|Other specified disorders of bone density and structure, right hand +C2901760|T047|AB|M85.842|ICD10CM|Oth disrd of bone density and structure, left hand|Oth disrd of bone density and structure, left hand +C2901760|T047|PT|M85.842|ICD10CM|Other specified disorders of bone density and structure, left hand|Other specified disorders of bone density and structure, left hand +C2901761|T047|AB|M85.849|ICD10CM|Oth disrd of bone density and structure, unspecified hand|Oth disrd of bone density and structure, unspecified hand +C2901761|T047|PT|M85.849|ICD10CM|Other specified disorders of bone density and structure, unspecified hand|Other specified disorders of bone density and structure, unspecified hand +C2901764|T047|AB|M85.85|ICD10CM|Oth disrd of bone density and structure, thigh|Oth disrd of bone density and structure, thigh +C2901764|T047|HT|M85.85|ICD10CM|Other specified disorders of bone density and structure, thigh|Other specified disorders of bone density and structure, thigh +C2901762|T047|AB|M85.851|ICD10CM|Oth disrd of bone density and structure, right thigh|Oth disrd of bone density and structure, right thigh +C2901762|T047|PT|M85.851|ICD10CM|Other specified disorders of bone density and structure, right thigh|Other specified disorders of bone density and structure, right thigh +C2901763|T047|AB|M85.852|ICD10CM|Oth disrd of bone density and structure, left thigh|Oth disrd of bone density and structure, left thigh +C2901763|T047|PT|M85.852|ICD10CM|Other specified disorders of bone density and structure, left thigh|Other specified disorders of bone density and structure, left thigh +C2901764|T047|AB|M85.859|ICD10CM|Oth disrd of bone density and structure, unspecified thigh|Oth disrd of bone density and structure, unspecified thigh +C2901764|T047|PT|M85.859|ICD10CM|Other specified disorders of bone density and structure, unspecified thigh|Other specified disorders of bone density and structure, unspecified thigh +C0839914|T047|AB|M85.86|ICD10CM|Oth disrd of bone density and structure, lower leg|Oth disrd of bone density and structure, lower leg +C0839914|T047|HT|M85.86|ICD10CM|Other specified disorders of bone density and structure, lower leg|Other specified disorders of bone density and structure, lower leg +C2901765|T047|AB|M85.861|ICD10CM|Oth disrd of bone density and structure, right lower leg|Oth disrd of bone density and structure, right lower leg +C2901765|T047|PT|M85.861|ICD10CM|Other specified disorders of bone density and structure, right lower leg|Other specified disorders of bone density and structure, right lower leg +C2901766|T047|AB|M85.862|ICD10CM|Oth disrd of bone density and structure, left lower leg|Oth disrd of bone density and structure, left lower leg +C2901766|T047|PT|M85.862|ICD10CM|Other specified disorders of bone density and structure, left lower leg|Other specified disorders of bone density and structure, left lower leg +C2901767|T047|AB|M85.869|ICD10CM|Oth disrd of bone density and structure, unsp lower leg|Oth disrd of bone density and structure, unsp lower leg +C2901767|T047|PT|M85.869|ICD10CM|Other specified disorders of bone density and structure, unspecified lower leg|Other specified disorders of bone density and structure, unspecified lower leg +C0839915|T047|AB|M85.87|ICD10CM|Oth disrd of bone density and structure, ankle and foot|Oth disrd of bone density and structure, ankle and foot +C0839915|T047|HT|M85.87|ICD10CM|Other specified disorders of bone density and structure, ankle and foot|Other specified disorders of bone density and structure, ankle and foot +C2901768|T047|AB|M85.871|ICD10CM|Oth disrd of bone density and structure, right ank/ft|Oth disrd of bone density and structure, right ank/ft +C2901768|T047|PT|M85.871|ICD10CM|Other specified disorders of bone density and structure, right ankle and foot|Other specified disorders of bone density and structure, right ankle and foot +C2901769|T047|AB|M85.872|ICD10CM|Oth disrd of bone density and structure, left ankle and foot|Oth disrd of bone density and structure, left ankle and foot +C2901769|T047|PT|M85.872|ICD10CM|Other specified disorders of bone density and structure, left ankle and foot|Other specified disorders of bone density and structure, left ankle and foot +C0839915|T047|AB|M85.879|ICD10CM|Oth disrd of bone density and structure, unsp ankle and foot|Oth disrd of bone density and structure, unsp ankle and foot +C0839915|T047|PT|M85.879|ICD10CM|Other specified disorders of bone density and structure, unspecified ankle and foot|Other specified disorders of bone density and structure, unspecified ankle and foot +C0839916|T047|AB|M85.88|ICD10CM|Oth disrd of bone density and structure, other site|Oth disrd of bone density and structure, other site +C0839916|T047|PT|M85.88|ICD10CM|Other specified disorders of bone density and structure, other site|Other specified disorders of bone density and structure, other site +C0839908|T047|AB|M85.89|ICD10CM|Oth disrd of bone density and structure, multiple sites|Oth disrd of bone density and structure, multiple sites +C0839908|T047|PT|M85.89|ICD10CM|Other specified disorders of bone density and structure, multiple sites|Other specified disorders of bone density and structure, multiple sites +C0477681|T047|PT|M85.9|ICD10CM|Disorder of bone density and structure, unspecified|Disorder of bone density and structure, unspecified +C0477681|T047|AB|M85.9|ICD10CM|Disorder of bone density and structure, unspecified|Disorder of bone density and structure, unspecified +C0477681|T047|PT|M85.9|ICD10|Disorder of bone density and structure, unspecified|Disorder of bone density and structure, unspecified +C0029443|T047|HT|M86|ICD10|Osteomyelitis|Osteomyelitis +C0029443|T047|HT|M86|ICD10CM|Osteomyelitis|Osteomyelitis +C0029443|T047|AB|M86|ICD10CM|Osteomyelitis|Osteomyelitis +C0477682|T047|HT|M86-M90|ICD10CM|Other osteopathies (M86-M90)|Other osteopathies (M86-M90) +C0477682|T047|HT|M86-M90.9|ICD10|Other osteopathies|Other osteopathies +C0600123|T047|PT|M86.0|ICD10|Acute haematogenous osteomyelitis|Acute haematogenous osteomyelitis +C0600123|T047|PT|M86.0|ICD10AE|Acute hematogenous osteomyelitis|Acute hematogenous osteomyelitis +C0600123|T047|HT|M86.0|ICD10CM|Acute hematogenous osteomyelitis|Acute hematogenous osteomyelitis +C0600123|T047|AB|M86.0|ICD10CM|Acute hematogenous osteomyelitis|Acute hematogenous osteomyelitis +C0600123|T047|AB|M86.00|ICD10CM|Acute hematogenous osteomyelitis, unspecified site|Acute hematogenous osteomyelitis, unspecified site +C0600123|T047|PT|M86.00|ICD10CM|Acute hematogenous osteomyelitis, unspecified site|Acute hematogenous osteomyelitis, unspecified site +C2901772|T047|AB|M86.01|ICD10CM|Acute hematogenous osteomyelitis, shoulder|Acute hematogenous osteomyelitis, shoulder +C2901772|T047|HT|M86.01|ICD10CM|Acute hematogenous osteomyelitis, shoulder|Acute hematogenous osteomyelitis, shoulder +C2901770|T047|PT|M86.011|ICD10CM|Acute hematogenous osteomyelitis, right shoulder|Acute hematogenous osteomyelitis, right shoulder +C2901770|T047|AB|M86.011|ICD10CM|Acute hematogenous osteomyelitis, right shoulder|Acute hematogenous osteomyelitis, right shoulder +C2901771|T047|AB|M86.012|ICD10CM|Acute hematogenous osteomyelitis, left shoulder|Acute hematogenous osteomyelitis, left shoulder +C2901771|T047|PT|M86.012|ICD10CM|Acute hematogenous osteomyelitis, left shoulder|Acute hematogenous osteomyelitis, left shoulder +C2901772|T047|AB|M86.019|ICD10CM|Acute hematogenous osteomyelitis, unspecified shoulder|Acute hematogenous osteomyelitis, unspecified shoulder +C2901772|T047|PT|M86.019|ICD10CM|Acute hematogenous osteomyelitis, unspecified shoulder|Acute hematogenous osteomyelitis, unspecified shoulder +C2901775|T047|AB|M86.02|ICD10CM|Acute hematogenous osteomyelitis, humerus|Acute hematogenous osteomyelitis, humerus +C2901775|T047|HT|M86.02|ICD10CM|Acute hematogenous osteomyelitis, humerus|Acute hematogenous osteomyelitis, humerus +C2901773|T047|AB|M86.021|ICD10CM|Acute hematogenous osteomyelitis, right humerus|Acute hematogenous osteomyelitis, right humerus +C2901773|T047|PT|M86.021|ICD10CM|Acute hematogenous osteomyelitis, right humerus|Acute hematogenous osteomyelitis, right humerus +C2901774|T047|AB|M86.022|ICD10CM|Acute hematogenous osteomyelitis, left humerus|Acute hematogenous osteomyelitis, left humerus +C2901774|T047|PT|M86.022|ICD10CM|Acute hematogenous osteomyelitis, left humerus|Acute hematogenous osteomyelitis, left humerus +C2901775|T047|AB|M86.029|ICD10CM|Acute hematogenous osteomyelitis, unspecified humerus|Acute hematogenous osteomyelitis, unspecified humerus +C2901775|T047|PT|M86.029|ICD10CM|Acute hematogenous osteomyelitis, unspecified humerus|Acute hematogenous osteomyelitis, unspecified humerus +C2901776|T047|AB|M86.03|ICD10CM|Acute hematogenous osteomyelitis, radius and ulna|Acute hematogenous osteomyelitis, radius and ulna +C2901776|T047|HT|M86.03|ICD10CM|Acute hematogenous osteomyelitis, radius and ulna|Acute hematogenous osteomyelitis, radius and ulna +C2901777|T047|AB|M86.031|ICD10CM|Acute hematogenous osteomyelitis, right radius and ulna|Acute hematogenous osteomyelitis, right radius and ulna +C2901777|T047|PT|M86.031|ICD10CM|Acute hematogenous osteomyelitis, right radius and ulna|Acute hematogenous osteomyelitis, right radius and ulna +C2901778|T047|AB|M86.032|ICD10CM|Acute hematogenous osteomyelitis, left radius and ulna|Acute hematogenous osteomyelitis, left radius and ulna +C2901778|T047|PT|M86.032|ICD10CM|Acute hematogenous osteomyelitis, left radius and ulna|Acute hematogenous osteomyelitis, left radius and ulna +C2901779|T047|AB|M86.039|ICD10CM|Acute hematogenous osteomyelitis, unsp radius and ulna|Acute hematogenous osteomyelitis, unsp radius and ulna +C2901779|T047|PT|M86.039|ICD10CM|Acute hematogenous osteomyelitis, unspecified radius and ulna|Acute hematogenous osteomyelitis, unspecified radius and ulna +C0839932|T047|HT|M86.04|ICD10CM|Acute hematogenous osteomyelitis, hand|Acute hematogenous osteomyelitis, hand +C0839932|T047|AB|M86.04|ICD10CM|Acute hematogenous osteomyelitis, hand|Acute hematogenous osteomyelitis, hand +C2901780|T047|AB|M86.041|ICD10CM|Acute hematogenous osteomyelitis, right hand|Acute hematogenous osteomyelitis, right hand +C2901780|T047|PT|M86.041|ICD10CM|Acute hematogenous osteomyelitis, right hand|Acute hematogenous osteomyelitis, right hand +C2901781|T047|AB|M86.042|ICD10CM|Acute hematogenous osteomyelitis, left hand|Acute hematogenous osteomyelitis, left hand +C2901781|T047|PT|M86.042|ICD10CM|Acute hematogenous osteomyelitis, left hand|Acute hematogenous osteomyelitis, left hand +C0839932|T047|AB|M86.049|ICD10CM|Acute hematogenous osteomyelitis, unspecified hand|Acute hematogenous osteomyelitis, unspecified hand +C0839932|T047|PT|M86.049|ICD10CM|Acute hematogenous osteomyelitis, unspecified hand|Acute hematogenous osteomyelitis, unspecified hand +C2901782|T047|AB|M86.05|ICD10CM|Acute hematogenous osteomyelitis, femur|Acute hematogenous osteomyelitis, femur +C2901782|T047|HT|M86.05|ICD10CM|Acute hematogenous osteomyelitis, femur|Acute hematogenous osteomyelitis, femur +C2901783|T047|AB|M86.051|ICD10CM|Acute hematogenous osteomyelitis, right femur|Acute hematogenous osteomyelitis, right femur +C2901783|T047|PT|M86.051|ICD10CM|Acute hematogenous osteomyelitis, right femur|Acute hematogenous osteomyelitis, right femur +C2901784|T047|AB|M86.052|ICD10CM|Acute hematogenous osteomyelitis, left femur|Acute hematogenous osteomyelitis, left femur +C2901784|T047|PT|M86.052|ICD10CM|Acute hematogenous osteomyelitis, left femur|Acute hematogenous osteomyelitis, left femur +C2901785|T047|AB|M86.059|ICD10CM|Acute hematogenous osteomyelitis, unspecified femur|Acute hematogenous osteomyelitis, unspecified femur +C2901785|T047|PT|M86.059|ICD10CM|Acute hematogenous osteomyelitis, unspecified femur|Acute hematogenous osteomyelitis, unspecified femur +C2901786|T047|AB|M86.06|ICD10CM|Acute hematogenous osteomyelitis, tibia and fibula|Acute hematogenous osteomyelitis, tibia and fibula +C2901786|T047|HT|M86.06|ICD10CM|Acute hematogenous osteomyelitis, tibia and fibula|Acute hematogenous osteomyelitis, tibia and fibula +C2901787|T047|AB|M86.061|ICD10CM|Acute hematogenous osteomyelitis, right tibia and fibula|Acute hematogenous osteomyelitis, right tibia and fibula +C2901787|T047|PT|M86.061|ICD10CM|Acute hematogenous osteomyelitis, right tibia and fibula|Acute hematogenous osteomyelitis, right tibia and fibula +C2901788|T047|AB|M86.062|ICD10CM|Acute hematogenous osteomyelitis, left tibia and fibula|Acute hematogenous osteomyelitis, left tibia and fibula +C2901788|T047|PT|M86.062|ICD10CM|Acute hematogenous osteomyelitis, left tibia and fibula|Acute hematogenous osteomyelitis, left tibia and fibula +C2901789|T047|AB|M86.069|ICD10CM|Acute hematogenous osteomyelitis, unsp tibia and fibula|Acute hematogenous osteomyelitis, unsp tibia and fibula +C2901789|T047|PT|M86.069|ICD10CM|Acute hematogenous osteomyelitis, unspecified tibia and fibula|Acute hematogenous osteomyelitis, unspecified tibia and fibula +C0839935|T047|HT|M86.07|ICD10CM|Acute hematogenous osteomyelitis, ankle and foot|Acute hematogenous osteomyelitis, ankle and foot +C0839935|T047|AB|M86.07|ICD10CM|Acute hematogenous osteomyelitis, ankle and foot|Acute hematogenous osteomyelitis, ankle and foot +C2901790|T047|AB|M86.071|ICD10CM|Acute hematogenous osteomyelitis, right ankle and foot|Acute hematogenous osteomyelitis, right ankle and foot +C2901790|T047|PT|M86.071|ICD10CM|Acute hematogenous osteomyelitis, right ankle and foot|Acute hematogenous osteomyelitis, right ankle and foot +C2901791|T047|AB|M86.072|ICD10CM|Acute hematogenous osteomyelitis, left ankle and foot|Acute hematogenous osteomyelitis, left ankle and foot +C2901791|T047|PT|M86.072|ICD10CM|Acute hematogenous osteomyelitis, left ankle and foot|Acute hematogenous osteomyelitis, left ankle and foot +C2901792|T047|AB|M86.079|ICD10CM|Acute hematogenous osteomyelitis, unspecified ankle and foot|Acute hematogenous osteomyelitis, unspecified ankle and foot +C2901792|T047|PT|M86.079|ICD10CM|Acute hematogenous osteomyelitis, unspecified ankle and foot|Acute hematogenous osteomyelitis, unspecified ankle and foot +C0839936|T047|AB|M86.08|ICD10CM|Acute hematogenous osteomyelitis, other sites|Acute hematogenous osteomyelitis, other sites +C0839936|T047|PT|M86.08|ICD10CM|Acute hematogenous osteomyelitis, other sites|Acute hematogenous osteomyelitis, other sites +C0839928|T047|PT|M86.09|ICD10CM|Acute hematogenous osteomyelitis, multiple sites|Acute hematogenous osteomyelitis, multiple sites +C0839928|T047|AB|M86.09|ICD10CM|Acute hematogenous osteomyelitis, multiple sites|Acute hematogenous osteomyelitis, multiple sites +C0477683|T047|PT|M86.1|ICD10|Other acute osteomyelitis|Other acute osteomyelitis +C0477683|T047|HT|M86.1|ICD10CM|Other acute osteomyelitis|Other acute osteomyelitis +C0477683|T047|AB|M86.1|ICD10CM|Other acute osteomyelitis|Other acute osteomyelitis +C0477683|T047|AB|M86.10|ICD10CM|Other acute osteomyelitis, unspecified site|Other acute osteomyelitis, unspecified site +C0477683|T047|PT|M86.10|ICD10CM|Other acute osteomyelitis, unspecified site|Other acute osteomyelitis, unspecified site +C2901793|T047|AB|M86.11|ICD10CM|Other acute osteomyelitis, shoulder|Other acute osteomyelitis, shoulder +C2901793|T047|HT|M86.11|ICD10CM|Other acute osteomyelitis, shoulder|Other acute osteomyelitis, shoulder +C2901794|T047|AB|M86.111|ICD10CM|Other acute osteomyelitis, right shoulder|Other acute osteomyelitis, right shoulder +C2901794|T047|PT|M86.111|ICD10CM|Other acute osteomyelitis, right shoulder|Other acute osteomyelitis, right shoulder +C2901795|T047|AB|M86.112|ICD10CM|Other acute osteomyelitis, left shoulder|Other acute osteomyelitis, left shoulder +C2901795|T047|PT|M86.112|ICD10CM|Other acute osteomyelitis, left shoulder|Other acute osteomyelitis, left shoulder +C2901796|T047|AB|M86.119|ICD10CM|Other acute osteomyelitis, unspecified shoulder|Other acute osteomyelitis, unspecified shoulder +C2901796|T047|PT|M86.119|ICD10CM|Other acute osteomyelitis, unspecified shoulder|Other acute osteomyelitis, unspecified shoulder +C2901797|T047|AB|M86.12|ICD10CM|Other acute osteomyelitis, humerus|Other acute osteomyelitis, humerus +C2901797|T047|HT|M86.12|ICD10CM|Other acute osteomyelitis, humerus|Other acute osteomyelitis, humerus +C2901798|T047|AB|M86.121|ICD10CM|Other acute osteomyelitis, right humerus|Other acute osteomyelitis, right humerus +C2901798|T047|PT|M86.121|ICD10CM|Other acute osteomyelitis, right humerus|Other acute osteomyelitis, right humerus +C2901799|T047|AB|M86.122|ICD10CM|Other acute osteomyelitis, left humerus|Other acute osteomyelitis, left humerus +C2901799|T047|PT|M86.122|ICD10CM|Other acute osteomyelitis, left humerus|Other acute osteomyelitis, left humerus +C2901800|T047|AB|M86.129|ICD10CM|Other acute osteomyelitis, unspecified humerus|Other acute osteomyelitis, unspecified humerus +C2901800|T047|PT|M86.129|ICD10CM|Other acute osteomyelitis, unspecified humerus|Other acute osteomyelitis, unspecified humerus +C2901801|T047|AB|M86.13|ICD10CM|Other acute osteomyelitis, radius and ulna|Other acute osteomyelitis, radius and ulna +C2901801|T047|HT|M86.13|ICD10CM|Other acute osteomyelitis, radius and ulna|Other acute osteomyelitis, radius and ulna +C2901802|T047|AB|M86.131|ICD10CM|Other acute osteomyelitis, right radius and ulna|Other acute osteomyelitis, right radius and ulna +C2901802|T047|PT|M86.131|ICD10CM|Other acute osteomyelitis, right radius and ulna|Other acute osteomyelitis, right radius and ulna +C2901803|T047|AB|M86.132|ICD10CM|Other acute osteomyelitis, left radius and ulna|Other acute osteomyelitis, left radius and ulna +C2901803|T047|PT|M86.132|ICD10CM|Other acute osteomyelitis, left radius and ulna|Other acute osteomyelitis, left radius and ulna +C2901804|T047|AB|M86.139|ICD10CM|Other acute osteomyelitis, unspecified radius and ulna|Other acute osteomyelitis, unspecified radius and ulna +C2901804|T047|PT|M86.139|ICD10CM|Other acute osteomyelitis, unspecified radius and ulna|Other acute osteomyelitis, unspecified radius and ulna +C0839942|T047|HT|M86.14|ICD10CM|Other acute osteomyelitis, hand|Other acute osteomyelitis, hand +C0839942|T047|AB|M86.14|ICD10CM|Other acute osteomyelitis, hand|Other acute osteomyelitis, hand +C2901805|T047|AB|M86.141|ICD10CM|Other acute osteomyelitis, right hand|Other acute osteomyelitis, right hand +C2901805|T047|PT|M86.141|ICD10CM|Other acute osteomyelitis, right hand|Other acute osteomyelitis, right hand +C2901806|T047|AB|M86.142|ICD10CM|Other acute osteomyelitis, left hand|Other acute osteomyelitis, left hand +C2901806|T047|PT|M86.142|ICD10CM|Other acute osteomyelitis, left hand|Other acute osteomyelitis, left hand +C2901807|T047|AB|M86.149|ICD10CM|Other acute osteomyelitis, unspecified hand|Other acute osteomyelitis, unspecified hand +C2901807|T047|PT|M86.149|ICD10CM|Other acute osteomyelitis, unspecified hand|Other acute osteomyelitis, unspecified hand +C2901808|T047|AB|M86.15|ICD10CM|Other acute osteomyelitis, femur|Other acute osteomyelitis, femur +C2901808|T047|HT|M86.15|ICD10CM|Other acute osteomyelitis, femur|Other acute osteomyelitis, femur +C2901809|T047|AB|M86.151|ICD10CM|Other acute osteomyelitis, right femur|Other acute osteomyelitis, right femur +C2901809|T047|PT|M86.151|ICD10CM|Other acute osteomyelitis, right femur|Other acute osteomyelitis, right femur +C2901810|T047|AB|M86.152|ICD10CM|Other acute osteomyelitis, left femur|Other acute osteomyelitis, left femur +C2901810|T047|PT|M86.152|ICD10CM|Other acute osteomyelitis, left femur|Other acute osteomyelitis, left femur +C2901811|T047|AB|M86.159|ICD10CM|Other acute osteomyelitis, unspecified femur|Other acute osteomyelitis, unspecified femur +C2901811|T047|PT|M86.159|ICD10CM|Other acute osteomyelitis, unspecified femur|Other acute osteomyelitis, unspecified femur +C2901812|T047|AB|M86.16|ICD10CM|Other acute osteomyelitis, tibia and fibula|Other acute osteomyelitis, tibia and fibula +C2901812|T047|HT|M86.16|ICD10CM|Other acute osteomyelitis, tibia and fibula|Other acute osteomyelitis, tibia and fibula +C2901813|T047|AB|M86.161|ICD10CM|Other acute osteomyelitis, right tibia and fibula|Other acute osteomyelitis, right tibia and fibula +C2901813|T047|PT|M86.161|ICD10CM|Other acute osteomyelitis, right tibia and fibula|Other acute osteomyelitis, right tibia and fibula +C2901814|T047|AB|M86.162|ICD10CM|Other acute osteomyelitis, left tibia and fibula|Other acute osteomyelitis, left tibia and fibula +C2901814|T047|PT|M86.162|ICD10CM|Other acute osteomyelitis, left tibia and fibula|Other acute osteomyelitis, left tibia and fibula +C2901815|T047|AB|M86.169|ICD10CM|Other acute osteomyelitis, unspecified tibia and fibula|Other acute osteomyelitis, unspecified tibia and fibula +C2901815|T047|PT|M86.169|ICD10CM|Other acute osteomyelitis, unspecified tibia and fibula|Other acute osteomyelitis, unspecified tibia and fibula +C0839945|T047|HT|M86.17|ICD10CM|Other acute osteomyelitis, ankle and foot|Other acute osteomyelitis, ankle and foot +C0839945|T047|AB|M86.17|ICD10CM|Other acute osteomyelitis, ankle and foot|Other acute osteomyelitis, ankle and foot +C2901816|T047|AB|M86.171|ICD10CM|Other acute osteomyelitis, right ankle and foot|Other acute osteomyelitis, right ankle and foot +C2901816|T047|PT|M86.171|ICD10CM|Other acute osteomyelitis, right ankle and foot|Other acute osteomyelitis, right ankle and foot +C2901817|T047|AB|M86.172|ICD10CM|Other acute osteomyelitis, left ankle and foot|Other acute osteomyelitis, left ankle and foot +C2901817|T047|PT|M86.172|ICD10CM|Other acute osteomyelitis, left ankle and foot|Other acute osteomyelitis, left ankle and foot +C2901818|T047|AB|M86.179|ICD10CM|Other acute osteomyelitis, unspecified ankle and foot|Other acute osteomyelitis, unspecified ankle and foot +C2901818|T047|PT|M86.179|ICD10CM|Other acute osteomyelitis, unspecified ankle and foot|Other acute osteomyelitis, unspecified ankle and foot +C0839946|T047|PT|M86.18|ICD10CM|Other acute osteomyelitis, other site|Other acute osteomyelitis, other site +C0839946|T047|AB|M86.18|ICD10CM|Other acute osteomyelitis, other site|Other acute osteomyelitis, other site +C0839938|T047|PT|M86.19|ICD10CM|Other acute osteomyelitis, multiple sites|Other acute osteomyelitis, multiple sites +C0839938|T047|AB|M86.19|ICD10CM|Other acute osteomyelitis, multiple sites|Other acute osteomyelitis, multiple sites +C0410345|T047|HT|M86.2|ICD10CM|Subacute osteomyelitis|Subacute osteomyelitis +C0410345|T047|AB|M86.2|ICD10CM|Subacute osteomyelitis|Subacute osteomyelitis +C0410345|T047|PT|M86.2|ICD10|Subacute osteomyelitis|Subacute osteomyelitis +C0410345|T047|AB|M86.20|ICD10CM|Subacute osteomyelitis, unspecified site|Subacute osteomyelitis, unspecified site +C0410345|T047|PT|M86.20|ICD10CM|Subacute osteomyelitis, unspecified site|Subacute osteomyelitis, unspecified site +C2901819|T047|AB|M86.21|ICD10CM|Subacute osteomyelitis, shoulder|Subacute osteomyelitis, shoulder +C2901819|T047|HT|M86.21|ICD10CM|Subacute osteomyelitis, shoulder|Subacute osteomyelitis, shoulder +C2901820|T047|AB|M86.211|ICD10CM|Subacute osteomyelitis, right shoulder|Subacute osteomyelitis, right shoulder +C2901820|T047|PT|M86.211|ICD10CM|Subacute osteomyelitis, right shoulder|Subacute osteomyelitis, right shoulder +C2901821|T047|AB|M86.212|ICD10CM|Subacute osteomyelitis, left shoulder|Subacute osteomyelitis, left shoulder +C2901821|T047|PT|M86.212|ICD10CM|Subacute osteomyelitis, left shoulder|Subacute osteomyelitis, left shoulder +C2901819|T047|AB|M86.219|ICD10CM|Subacute osteomyelitis, unspecified shoulder|Subacute osteomyelitis, unspecified shoulder +C2901819|T047|PT|M86.219|ICD10CM|Subacute osteomyelitis, unspecified shoulder|Subacute osteomyelitis, unspecified shoulder +C2901824|T047|AB|M86.22|ICD10CM|Subacute osteomyelitis, humerus|Subacute osteomyelitis, humerus +C2901824|T047|HT|M86.22|ICD10CM|Subacute osteomyelitis, humerus|Subacute osteomyelitis, humerus +C2901822|T047|AB|M86.221|ICD10CM|Subacute osteomyelitis, right humerus|Subacute osteomyelitis, right humerus +C2901822|T047|PT|M86.221|ICD10CM|Subacute osteomyelitis, right humerus|Subacute osteomyelitis, right humerus +C2901823|T047|AB|M86.222|ICD10CM|Subacute osteomyelitis, left humerus|Subacute osteomyelitis, left humerus +C2901823|T047|PT|M86.222|ICD10CM|Subacute osteomyelitis, left humerus|Subacute osteomyelitis, left humerus +C2901824|T047|AB|M86.229|ICD10CM|Subacute osteomyelitis, unspecified humerus|Subacute osteomyelitis, unspecified humerus +C2901824|T047|PT|M86.229|ICD10CM|Subacute osteomyelitis, unspecified humerus|Subacute osteomyelitis, unspecified humerus +C2901825|T047|AB|M86.23|ICD10CM|Subacute osteomyelitis, radius and ulna|Subacute osteomyelitis, radius and ulna +C2901825|T047|HT|M86.23|ICD10CM|Subacute osteomyelitis, radius and ulna|Subacute osteomyelitis, radius and ulna +C2901826|T047|AB|M86.231|ICD10CM|Subacute osteomyelitis, right radius and ulna|Subacute osteomyelitis, right radius and ulna +C2901826|T047|PT|M86.231|ICD10CM|Subacute osteomyelitis, right radius and ulna|Subacute osteomyelitis, right radius and ulna +C2901827|T047|AB|M86.232|ICD10CM|Subacute osteomyelitis, left radius and ulna|Subacute osteomyelitis, left radius and ulna +C2901827|T047|PT|M86.232|ICD10CM|Subacute osteomyelitis, left radius and ulna|Subacute osteomyelitis, left radius and ulna +C2901828|T047|AB|M86.239|ICD10CM|Subacute osteomyelitis, unspecified radius and ulna|Subacute osteomyelitis, unspecified radius and ulna +C2901828|T047|PT|M86.239|ICD10CM|Subacute osteomyelitis, unspecified radius and ulna|Subacute osteomyelitis, unspecified radius and ulna +C0839952|T047|HT|M86.24|ICD10CM|Subacute osteomyelitis, hand|Subacute osteomyelitis, hand +C0839952|T047|AB|M86.24|ICD10CM|Subacute osteomyelitis, hand|Subacute osteomyelitis, hand +C2901829|T047|AB|M86.241|ICD10CM|Subacute osteomyelitis, right hand|Subacute osteomyelitis, right hand +C2901829|T047|PT|M86.241|ICD10CM|Subacute osteomyelitis, right hand|Subacute osteomyelitis, right hand +C2901830|T047|AB|M86.242|ICD10CM|Subacute osteomyelitis, left hand|Subacute osteomyelitis, left hand +C2901830|T047|PT|M86.242|ICD10CM|Subacute osteomyelitis, left hand|Subacute osteomyelitis, left hand +C0839952|T047|AB|M86.249|ICD10CM|Subacute osteomyelitis, unspecified hand|Subacute osteomyelitis, unspecified hand +C0839952|T047|PT|M86.249|ICD10CM|Subacute osteomyelitis, unspecified hand|Subacute osteomyelitis, unspecified hand +C2901833|T047|AB|M86.25|ICD10CM|Subacute osteomyelitis, femur|Subacute osteomyelitis, femur +C2901833|T047|HT|M86.25|ICD10CM|Subacute osteomyelitis, femur|Subacute osteomyelitis, femur +C2901831|T047|AB|M86.251|ICD10CM|Subacute osteomyelitis, right femur|Subacute osteomyelitis, right femur +C2901831|T047|PT|M86.251|ICD10CM|Subacute osteomyelitis, right femur|Subacute osteomyelitis, right femur +C2901832|T047|AB|M86.252|ICD10CM|Subacute osteomyelitis, left femur|Subacute osteomyelitis, left femur +C2901832|T047|PT|M86.252|ICD10CM|Subacute osteomyelitis, left femur|Subacute osteomyelitis, left femur +C2901833|T047|AB|M86.259|ICD10CM|Subacute osteomyelitis, unspecified femur|Subacute osteomyelitis, unspecified femur +C2901833|T047|PT|M86.259|ICD10CM|Subacute osteomyelitis, unspecified femur|Subacute osteomyelitis, unspecified femur +C2901836|T047|AB|M86.26|ICD10CM|Subacute osteomyelitis, tibia and fibula|Subacute osteomyelitis, tibia and fibula +C2901836|T047|HT|M86.26|ICD10CM|Subacute osteomyelitis, tibia and fibula|Subacute osteomyelitis, tibia and fibula +C2901834|T047|AB|M86.261|ICD10CM|Subacute osteomyelitis, right tibia and fibula|Subacute osteomyelitis, right tibia and fibula +C2901834|T047|PT|M86.261|ICD10CM|Subacute osteomyelitis, right tibia and fibula|Subacute osteomyelitis, right tibia and fibula +C2901835|T047|AB|M86.262|ICD10CM|Subacute osteomyelitis, left tibia and fibula|Subacute osteomyelitis, left tibia and fibula +C2901835|T047|PT|M86.262|ICD10CM|Subacute osteomyelitis, left tibia and fibula|Subacute osteomyelitis, left tibia and fibula +C2901836|T047|AB|M86.269|ICD10CM|Subacute osteomyelitis, unspecified tibia and fibula|Subacute osteomyelitis, unspecified tibia and fibula +C2901836|T047|PT|M86.269|ICD10CM|Subacute osteomyelitis, unspecified tibia and fibula|Subacute osteomyelitis, unspecified tibia and fibula +C0839955|T047|HT|M86.27|ICD10CM|Subacute osteomyelitis, ankle and foot|Subacute osteomyelitis, ankle and foot +C0839955|T047|AB|M86.27|ICD10CM|Subacute osteomyelitis, ankle and foot|Subacute osteomyelitis, ankle and foot +C2901837|T047|AB|M86.271|ICD10CM|Subacute osteomyelitis, right ankle and foot|Subacute osteomyelitis, right ankle and foot +C2901837|T047|PT|M86.271|ICD10CM|Subacute osteomyelitis, right ankle and foot|Subacute osteomyelitis, right ankle and foot +C2901838|T047|AB|M86.272|ICD10CM|Subacute osteomyelitis, left ankle and foot|Subacute osteomyelitis, left ankle and foot +C2901838|T047|PT|M86.272|ICD10CM|Subacute osteomyelitis, left ankle and foot|Subacute osteomyelitis, left ankle and foot +C2901839|T047|AB|M86.279|ICD10CM|Subacute osteomyelitis, unspecified ankle and foot|Subacute osteomyelitis, unspecified ankle and foot +C2901839|T047|PT|M86.279|ICD10CM|Subacute osteomyelitis, unspecified ankle and foot|Subacute osteomyelitis, unspecified ankle and foot +C0839956|T047|PT|M86.28|ICD10CM|Subacute osteomyelitis, other site|Subacute osteomyelitis, other site +C0839956|T047|AB|M86.28|ICD10CM|Subacute osteomyelitis, other site|Subacute osteomyelitis, other site +C0839948|T047|PT|M86.29|ICD10CM|Subacute osteomyelitis, multiple sites|Subacute osteomyelitis, multiple sites +C0839948|T047|AB|M86.29|ICD10CM|Subacute osteomyelitis, multiple sites|Subacute osteomyelitis, multiple sites +C0410422|T047|HT|M86.3|ICD10CM|Chronic multifocal osteomyelitis|Chronic multifocal osteomyelitis +C0410422|T047|AB|M86.3|ICD10CM|Chronic multifocal osteomyelitis|Chronic multifocal osteomyelitis +C0410422|T047|PT|M86.3|ICD10|Chronic multifocal osteomyelitis|Chronic multifocal osteomyelitis +C0410422|T047|AB|M86.30|ICD10CM|Chronic multifocal osteomyelitis, unspecified site|Chronic multifocal osteomyelitis, unspecified site +C0410422|T047|PT|M86.30|ICD10CM|Chronic multifocal osteomyelitis, unspecified site|Chronic multifocal osteomyelitis, unspecified site +C2901840|T047|AB|M86.31|ICD10CM|Chronic multifocal osteomyelitis, shoulder|Chronic multifocal osteomyelitis, shoulder +C2901840|T047|HT|M86.31|ICD10CM|Chronic multifocal osteomyelitis, shoulder|Chronic multifocal osteomyelitis, shoulder +C2901841|T047|AB|M86.311|ICD10CM|Chronic multifocal osteomyelitis, right shoulder|Chronic multifocal osteomyelitis, right shoulder +C2901841|T047|PT|M86.311|ICD10CM|Chronic multifocal osteomyelitis, right shoulder|Chronic multifocal osteomyelitis, right shoulder +C2901842|T047|AB|M86.312|ICD10CM|Chronic multifocal osteomyelitis, left shoulder|Chronic multifocal osteomyelitis, left shoulder +C2901842|T047|PT|M86.312|ICD10CM|Chronic multifocal osteomyelitis, left shoulder|Chronic multifocal osteomyelitis, left shoulder +C2901843|T047|AB|M86.319|ICD10CM|Chronic multifocal osteomyelitis, unspecified shoulder|Chronic multifocal osteomyelitis, unspecified shoulder +C2901843|T047|PT|M86.319|ICD10CM|Chronic multifocal osteomyelitis, unspecified shoulder|Chronic multifocal osteomyelitis, unspecified shoulder +C2901844|T047|AB|M86.32|ICD10CM|Chronic multifocal osteomyelitis, humerus|Chronic multifocal osteomyelitis, humerus +C2901844|T047|HT|M86.32|ICD10CM|Chronic multifocal osteomyelitis, humerus|Chronic multifocal osteomyelitis, humerus +C2901845|T047|AB|M86.321|ICD10CM|Chronic multifocal osteomyelitis, right humerus|Chronic multifocal osteomyelitis, right humerus +C2901845|T047|PT|M86.321|ICD10CM|Chronic multifocal osteomyelitis, right humerus|Chronic multifocal osteomyelitis, right humerus +C2901846|T047|AB|M86.322|ICD10CM|Chronic multifocal osteomyelitis, left humerus|Chronic multifocal osteomyelitis, left humerus +C2901846|T047|PT|M86.322|ICD10CM|Chronic multifocal osteomyelitis, left humerus|Chronic multifocal osteomyelitis, left humerus +C2901847|T047|AB|M86.329|ICD10CM|Chronic multifocal osteomyelitis, unspecified humerus|Chronic multifocal osteomyelitis, unspecified humerus +C2901847|T047|PT|M86.329|ICD10CM|Chronic multifocal osteomyelitis, unspecified humerus|Chronic multifocal osteomyelitis, unspecified humerus +C2901848|T047|AB|M86.33|ICD10CM|Chronic multifocal osteomyelitis, radius and ulna|Chronic multifocal osteomyelitis, radius and ulna +C2901848|T047|HT|M86.33|ICD10CM|Chronic multifocal osteomyelitis, radius and ulna|Chronic multifocal osteomyelitis, radius and ulna +C2901849|T047|AB|M86.331|ICD10CM|Chronic multifocal osteomyelitis, right radius and ulna|Chronic multifocal osteomyelitis, right radius and ulna +C2901849|T047|PT|M86.331|ICD10CM|Chronic multifocal osteomyelitis, right radius and ulna|Chronic multifocal osteomyelitis, right radius and ulna +C2901850|T047|AB|M86.332|ICD10CM|Chronic multifocal osteomyelitis, left radius and ulna|Chronic multifocal osteomyelitis, left radius and ulna +C2901850|T047|PT|M86.332|ICD10CM|Chronic multifocal osteomyelitis, left radius and ulna|Chronic multifocal osteomyelitis, left radius and ulna +C2901851|T047|AB|M86.339|ICD10CM|Chronic multifocal osteomyelitis, unsp radius and ulna|Chronic multifocal osteomyelitis, unsp radius and ulna +C2901851|T047|PT|M86.339|ICD10CM|Chronic multifocal osteomyelitis, unspecified radius and ulna|Chronic multifocal osteomyelitis, unspecified radius and ulna +C0839962|T047|HT|M86.34|ICD10CM|Chronic multifocal osteomyelitis, hand|Chronic multifocal osteomyelitis, hand +C0839962|T047|AB|M86.34|ICD10CM|Chronic multifocal osteomyelitis, hand|Chronic multifocal osteomyelitis, hand +C2901852|T047|AB|M86.341|ICD10CM|Chronic multifocal osteomyelitis, right hand|Chronic multifocal osteomyelitis, right hand +C2901852|T047|PT|M86.341|ICD10CM|Chronic multifocal osteomyelitis, right hand|Chronic multifocal osteomyelitis, right hand +C2901853|T047|AB|M86.342|ICD10CM|Chronic multifocal osteomyelitis, left hand|Chronic multifocal osteomyelitis, left hand +C2901853|T047|PT|M86.342|ICD10CM|Chronic multifocal osteomyelitis, left hand|Chronic multifocal osteomyelitis, left hand +C2901854|T047|AB|M86.349|ICD10CM|Chronic multifocal osteomyelitis, unspecified hand|Chronic multifocal osteomyelitis, unspecified hand +C2901854|T047|PT|M86.349|ICD10CM|Chronic multifocal osteomyelitis, unspecified hand|Chronic multifocal osteomyelitis, unspecified hand +C2901855|T047|AB|M86.35|ICD10CM|Chronic multifocal osteomyelitis, femur|Chronic multifocal osteomyelitis, femur +C2901855|T047|HT|M86.35|ICD10CM|Chronic multifocal osteomyelitis, femur|Chronic multifocal osteomyelitis, femur +C2901856|T047|AB|M86.351|ICD10CM|Chronic multifocal osteomyelitis, right femur|Chronic multifocal osteomyelitis, right femur +C2901856|T047|PT|M86.351|ICD10CM|Chronic multifocal osteomyelitis, right femur|Chronic multifocal osteomyelitis, right femur +C2901857|T047|AB|M86.352|ICD10CM|Chronic multifocal osteomyelitis, left femur|Chronic multifocal osteomyelitis, left femur +C2901857|T047|PT|M86.352|ICD10CM|Chronic multifocal osteomyelitis, left femur|Chronic multifocal osteomyelitis, left femur +C2901858|T047|AB|M86.359|ICD10CM|Chronic multifocal osteomyelitis, unspecified femur|Chronic multifocal osteomyelitis, unspecified femur +C2901858|T047|PT|M86.359|ICD10CM|Chronic multifocal osteomyelitis, unspecified femur|Chronic multifocal osteomyelitis, unspecified femur +C2901859|T047|AB|M86.36|ICD10CM|Chronic multifocal osteomyelitis, tibia and fibula|Chronic multifocal osteomyelitis, tibia and fibula +C2901859|T047|HT|M86.36|ICD10CM|Chronic multifocal osteomyelitis, tibia and fibula|Chronic multifocal osteomyelitis, tibia and fibula +C2901860|T047|AB|M86.361|ICD10CM|Chronic multifocal osteomyelitis, right tibia and fibula|Chronic multifocal osteomyelitis, right tibia and fibula +C2901860|T047|PT|M86.361|ICD10CM|Chronic multifocal osteomyelitis, right tibia and fibula|Chronic multifocal osteomyelitis, right tibia and fibula +C2901861|T047|AB|M86.362|ICD10CM|Chronic multifocal osteomyelitis, left tibia and fibula|Chronic multifocal osteomyelitis, left tibia and fibula +C2901861|T047|PT|M86.362|ICD10CM|Chronic multifocal osteomyelitis, left tibia and fibula|Chronic multifocal osteomyelitis, left tibia and fibula +C2901862|T047|AB|M86.369|ICD10CM|Chronic multifocal osteomyelitis, unsp tibia and fibula|Chronic multifocal osteomyelitis, unsp tibia and fibula +C2901862|T047|PT|M86.369|ICD10CM|Chronic multifocal osteomyelitis, unspecified tibia and fibula|Chronic multifocal osteomyelitis, unspecified tibia and fibula +C0839965|T047|HT|M86.37|ICD10CM|Chronic multifocal osteomyelitis, ankle and foot|Chronic multifocal osteomyelitis, ankle and foot +C0839965|T047|AB|M86.37|ICD10CM|Chronic multifocal osteomyelitis, ankle and foot|Chronic multifocal osteomyelitis, ankle and foot +C2901863|T047|AB|M86.371|ICD10CM|Chronic multifocal osteomyelitis, right ankle and foot|Chronic multifocal osteomyelitis, right ankle and foot +C2901863|T047|PT|M86.371|ICD10CM|Chronic multifocal osteomyelitis, right ankle and foot|Chronic multifocal osteomyelitis, right ankle and foot +C2901864|T047|AB|M86.372|ICD10CM|Chronic multifocal osteomyelitis, left ankle and foot|Chronic multifocal osteomyelitis, left ankle and foot +C2901864|T047|PT|M86.372|ICD10CM|Chronic multifocal osteomyelitis, left ankle and foot|Chronic multifocal osteomyelitis, left ankle and foot +C2901865|T047|AB|M86.379|ICD10CM|Chronic multifocal osteomyelitis, unspecified ankle and foot|Chronic multifocal osteomyelitis, unspecified ankle and foot +C2901865|T047|PT|M86.379|ICD10CM|Chronic multifocal osteomyelitis, unspecified ankle and foot|Chronic multifocal osteomyelitis, unspecified ankle and foot +C0839966|T047|PT|M86.38|ICD10CM|Chronic multifocal osteomyelitis, other site|Chronic multifocal osteomyelitis, other site +C0839966|T047|AB|M86.38|ICD10CM|Chronic multifocal osteomyelitis, other site|Chronic multifocal osteomyelitis, other site +C0839958|T047|PT|M86.39|ICD10CM|Chronic multifocal osteomyelitis, multiple sites|Chronic multifocal osteomyelitis, multiple sites +C0839958|T047|AB|M86.39|ICD10CM|Chronic multifocal osteomyelitis, multiple sites|Chronic multifocal osteomyelitis, multiple sites +C0410423|T047|HT|M86.4|ICD10CM|Chronic osteomyelitis with draining sinus|Chronic osteomyelitis with draining sinus +C0410423|T047|AB|M86.4|ICD10CM|Chronic osteomyelitis with draining sinus|Chronic osteomyelitis with draining sinus +C0410423|T047|PT|M86.4|ICD10|Chronic osteomyelitis with draining sinus|Chronic osteomyelitis with draining sinus +C0410423|T047|AB|M86.40|ICD10CM|Chronic osteomyelitis with draining sinus, unspecified site|Chronic osteomyelitis with draining sinus, unspecified site +C0410423|T047|PT|M86.40|ICD10CM|Chronic osteomyelitis with draining sinus, unspecified site|Chronic osteomyelitis with draining sinus, unspecified site +C2901866|T047|AB|M86.41|ICD10CM|Chronic osteomyelitis with draining sinus, shoulder|Chronic osteomyelitis with draining sinus, shoulder +C2901866|T047|HT|M86.41|ICD10CM|Chronic osteomyelitis with draining sinus, shoulder|Chronic osteomyelitis with draining sinus, shoulder +C2901867|T047|AB|M86.411|ICD10CM|Chronic osteomyelitis with draining sinus, right shoulder|Chronic osteomyelitis with draining sinus, right shoulder +C2901867|T047|PT|M86.411|ICD10CM|Chronic osteomyelitis with draining sinus, right shoulder|Chronic osteomyelitis with draining sinus, right shoulder +C2901868|T047|AB|M86.412|ICD10CM|Chronic osteomyelitis with draining sinus, left shoulder|Chronic osteomyelitis with draining sinus, left shoulder +C2901868|T047|PT|M86.412|ICD10CM|Chronic osteomyelitis with draining sinus, left shoulder|Chronic osteomyelitis with draining sinus, left shoulder +C2901869|T047|AB|M86.419|ICD10CM|Chronic osteomyelitis with draining sinus, unsp shoulder|Chronic osteomyelitis with draining sinus, unsp shoulder +C2901869|T047|PT|M86.419|ICD10CM|Chronic osteomyelitis with draining sinus, unspecified shoulder|Chronic osteomyelitis with draining sinus, unspecified shoulder +C0839970|T047|AB|M86.42|ICD10CM|Chronic osteomyelitis with draining sinus, humerus|Chronic osteomyelitis with draining sinus, humerus +C0839970|T047|HT|M86.42|ICD10CM|Chronic osteomyelitis with draining sinus, humerus|Chronic osteomyelitis with draining sinus, humerus +C2901871|T047|AB|M86.421|ICD10CM|Chronic osteomyelitis with draining sinus, right humerus|Chronic osteomyelitis with draining sinus, right humerus +C2901871|T047|PT|M86.421|ICD10CM|Chronic osteomyelitis with draining sinus, right humerus|Chronic osteomyelitis with draining sinus, right humerus +C2901872|T047|AB|M86.422|ICD10CM|Chronic osteomyelitis with draining sinus, left humerus|Chronic osteomyelitis with draining sinus, left humerus +C2901872|T047|PT|M86.422|ICD10CM|Chronic osteomyelitis with draining sinus, left humerus|Chronic osteomyelitis with draining sinus, left humerus +C2901873|T047|AB|M86.429|ICD10CM|Chronic osteomyelitis with draining sinus, unsp humerus|Chronic osteomyelitis with draining sinus, unsp humerus +C2901873|T047|PT|M86.429|ICD10CM|Chronic osteomyelitis with draining sinus, unspecified humerus|Chronic osteomyelitis with draining sinus, unspecified humerus +C3264491|T047|AB|M86.43|ICD10CM|Chronic osteomyelitis with draining sinus, radius and ulna|Chronic osteomyelitis with draining sinus, radius and ulna +C3264491|T047|HT|M86.43|ICD10CM|Chronic osteomyelitis with draining sinus, radius and ulna|Chronic osteomyelitis with draining sinus, radius and ulna +C2901874|T047|AB|M86.431|ICD10CM|Chronic osteomyelit w draining sinus, right radius and ulna|Chronic osteomyelit w draining sinus, right radius and ulna +C2901874|T047|PT|M86.431|ICD10CM|Chronic osteomyelitis with draining sinus, right radius and ulna|Chronic osteomyelitis with draining sinus, right radius and ulna +C2901875|T047|AB|M86.432|ICD10CM|Chronic osteomyelitis w draining sinus, left radius and ulna|Chronic osteomyelitis w draining sinus, left radius and ulna +C2901875|T047|PT|M86.432|ICD10CM|Chronic osteomyelitis with draining sinus, left radius and ulna|Chronic osteomyelitis with draining sinus, left radius and ulna +C2901876|T047|AB|M86.439|ICD10CM|Chronic osteomyelitis w draining sinus, unsp radius and ulna|Chronic osteomyelitis w draining sinus, unsp radius and ulna +C2901876|T047|PT|M86.439|ICD10CM|Chronic osteomyelitis with draining sinus, unspecified radius and ulna|Chronic osteomyelitis with draining sinus, unspecified radius and ulna +C0839972|T047|HT|M86.44|ICD10CM|Chronic osteomyelitis with draining sinus, hand|Chronic osteomyelitis with draining sinus, hand +C0839972|T047|AB|M86.44|ICD10CM|Chronic osteomyelitis with draining sinus, hand|Chronic osteomyelitis with draining sinus, hand +C2901877|T047|AB|M86.441|ICD10CM|Chronic osteomyelitis with draining sinus, right hand|Chronic osteomyelitis with draining sinus, right hand +C2901877|T047|PT|M86.441|ICD10CM|Chronic osteomyelitis with draining sinus, right hand|Chronic osteomyelitis with draining sinus, right hand +C2901878|T047|AB|M86.442|ICD10CM|Chronic osteomyelitis with draining sinus, left hand|Chronic osteomyelitis with draining sinus, left hand +C2901878|T047|PT|M86.442|ICD10CM|Chronic osteomyelitis with draining sinus, left hand|Chronic osteomyelitis with draining sinus, left hand +C2901879|T047|AB|M86.449|ICD10CM|Chronic osteomyelitis with draining sinus, unspecified hand|Chronic osteomyelitis with draining sinus, unspecified hand +C2901879|T047|PT|M86.449|ICD10CM|Chronic osteomyelitis with draining sinus, unspecified hand|Chronic osteomyelitis with draining sinus, unspecified hand +C2901880|T047|AB|M86.45|ICD10CM|Chronic osteomyelitis with draining sinus, femur|Chronic osteomyelitis with draining sinus, femur +C2901880|T047|HT|M86.45|ICD10CM|Chronic osteomyelitis with draining sinus, femur|Chronic osteomyelitis with draining sinus, femur +C2901881|T047|AB|M86.451|ICD10CM|Chronic osteomyelitis with draining sinus, right femur|Chronic osteomyelitis with draining sinus, right femur +C2901881|T047|PT|M86.451|ICD10CM|Chronic osteomyelitis with draining sinus, right femur|Chronic osteomyelitis with draining sinus, right femur +C2901882|T047|AB|M86.452|ICD10CM|Chronic osteomyelitis with draining sinus, left femur|Chronic osteomyelitis with draining sinus, left femur +C2901882|T047|PT|M86.452|ICD10CM|Chronic osteomyelitis with draining sinus, left femur|Chronic osteomyelitis with draining sinus, left femur +C2901883|T047|AB|M86.459|ICD10CM|Chronic osteomyelitis with draining sinus, unspecified femur|Chronic osteomyelitis with draining sinus, unspecified femur +C2901883|T047|PT|M86.459|ICD10CM|Chronic osteomyelitis with draining sinus, unspecified femur|Chronic osteomyelitis with draining sinus, unspecified femur +C3264492|T047|AB|M86.46|ICD10CM|Chronic osteomyelitis with draining sinus, tibia and fibula|Chronic osteomyelitis with draining sinus, tibia and fibula +C3264492|T047|HT|M86.46|ICD10CM|Chronic osteomyelitis with draining sinus, tibia and fibula|Chronic osteomyelitis with draining sinus, tibia and fibula +C2901884|T047|AB|M86.461|ICD10CM|Chronic osteomyelit w draining sinus, right tibia and fibula|Chronic osteomyelit w draining sinus, right tibia and fibula +C2901884|T047|PT|M86.461|ICD10CM|Chronic osteomyelitis with draining sinus, right tibia and fibula|Chronic osteomyelitis with draining sinus, right tibia and fibula +C2901885|T047|AB|M86.462|ICD10CM|Chronic osteomyelit w draining sinus, left tibia and fibula|Chronic osteomyelit w draining sinus, left tibia and fibula +C2901885|T047|PT|M86.462|ICD10CM|Chronic osteomyelitis with draining sinus, left tibia and fibula|Chronic osteomyelitis with draining sinus, left tibia and fibula +C2901886|T047|AB|M86.469|ICD10CM|Chronic osteomyelit w draining sinus, unsp tibia and fibula|Chronic osteomyelit w draining sinus, unsp tibia and fibula +C2901886|T047|PT|M86.469|ICD10CM|Chronic osteomyelitis with draining sinus, unspecified tibia and fibula|Chronic osteomyelitis with draining sinus, unspecified tibia and fibula +C0839975|T047|HT|M86.47|ICD10CM|Chronic osteomyelitis with draining sinus, ankle and foot|Chronic osteomyelitis with draining sinus, ankle and foot +C0839975|T047|AB|M86.47|ICD10CM|Chronic osteomyelitis with draining sinus, ankle and foot|Chronic osteomyelitis with draining sinus, ankle and foot +C2901887|T047|AB|M86.471|ICD10CM|Chronic osteomyelitis w draining sinus, right ankle and foot|Chronic osteomyelitis w draining sinus, right ankle and foot +C2901887|T047|PT|M86.471|ICD10CM|Chronic osteomyelitis with draining sinus, right ankle and foot|Chronic osteomyelitis with draining sinus, right ankle and foot +C2901888|T047|AB|M86.472|ICD10CM|Chronic osteomyelitis w draining sinus, left ankle and foot|Chronic osteomyelitis w draining sinus, left ankle and foot +C2901888|T047|PT|M86.472|ICD10CM|Chronic osteomyelitis with draining sinus, left ankle and foot|Chronic osteomyelitis with draining sinus, left ankle and foot +C2901889|T047|AB|M86.479|ICD10CM|Chronic osteomyelitis w draining sinus, unsp ankle and foot|Chronic osteomyelitis w draining sinus, unsp ankle and foot +C2901889|T047|PT|M86.479|ICD10CM|Chronic osteomyelitis with draining sinus, unspecified ankle and foot|Chronic osteomyelitis with draining sinus, unspecified ankle and foot +C0839976|T047|PT|M86.48|ICD10CM|Chronic osteomyelitis with draining sinus, other site|Chronic osteomyelitis with draining sinus, other site +C0839976|T047|AB|M86.48|ICD10CM|Chronic osteomyelitis with draining sinus, other site|Chronic osteomyelitis with draining sinus, other site +C0839968|T047|PT|M86.49|ICD10CM|Chronic osteomyelitis with draining sinus, multiple sites|Chronic osteomyelitis with draining sinus, multiple sites +C0839968|T047|AB|M86.49|ICD10CM|Chronic osteomyelitis with draining sinus, multiple sites|Chronic osteomyelitis with draining sinus, multiple sites +C0477684|T047|PT|M86.5|ICD10|Other chronic haematogenous osteomyelitis|Other chronic haematogenous osteomyelitis +C0477684|T047|PT|M86.5|ICD10AE|Other chronic hematogenous osteomyelitis|Other chronic hematogenous osteomyelitis +C0477684|T047|HT|M86.5|ICD10CM|Other chronic hematogenous osteomyelitis|Other chronic hematogenous osteomyelitis +C0477684|T047|AB|M86.5|ICD10CM|Other chronic hematogenous osteomyelitis|Other chronic hematogenous osteomyelitis +C0477684|T047|AB|M86.50|ICD10CM|Other chronic hematogenous osteomyelitis, unspecified site|Other chronic hematogenous osteomyelitis, unspecified site +C0477684|T047|PT|M86.50|ICD10CM|Other chronic hematogenous osteomyelitis, unspecified site|Other chronic hematogenous osteomyelitis, unspecified site +C2901892|T047|AB|M86.51|ICD10CM|Other chronic hematogenous osteomyelitis, shoulder|Other chronic hematogenous osteomyelitis, shoulder +C2901892|T047|HT|M86.51|ICD10CM|Other chronic hematogenous osteomyelitis, shoulder|Other chronic hematogenous osteomyelitis, shoulder +C2901890|T047|AB|M86.511|ICD10CM|Other chronic hematogenous osteomyelitis, right shoulder|Other chronic hematogenous osteomyelitis, right shoulder +C2901890|T047|PT|M86.511|ICD10CM|Other chronic hematogenous osteomyelitis, right shoulder|Other chronic hematogenous osteomyelitis, right shoulder +C2901891|T047|AB|M86.512|ICD10CM|Other chronic hematogenous osteomyelitis, left shoulder|Other chronic hematogenous osteomyelitis, left shoulder +C2901891|T047|PT|M86.512|ICD10CM|Other chronic hematogenous osteomyelitis, left shoulder|Other chronic hematogenous osteomyelitis, left shoulder +C2901892|T047|AB|M86.519|ICD10CM|Other chronic hematogenous osteomyelitis, unsp shoulder|Other chronic hematogenous osteomyelitis, unsp shoulder +C2901892|T047|PT|M86.519|ICD10CM|Other chronic hematogenous osteomyelitis, unspecified shoulder|Other chronic hematogenous osteomyelitis, unspecified shoulder +C2901893|T047|AB|M86.52|ICD10CM|Other chronic hematogenous osteomyelitis, humerus|Other chronic hematogenous osteomyelitis, humerus +C2901893|T047|HT|M86.52|ICD10CM|Other chronic hematogenous osteomyelitis, humerus|Other chronic hematogenous osteomyelitis, humerus +C2901894|T047|AB|M86.521|ICD10CM|Other chronic hematogenous osteomyelitis, right humerus|Other chronic hematogenous osteomyelitis, right humerus +C2901894|T047|PT|M86.521|ICD10CM|Other chronic hematogenous osteomyelitis, right humerus|Other chronic hematogenous osteomyelitis, right humerus +C2901895|T047|AB|M86.522|ICD10CM|Other chronic hematogenous osteomyelitis, left humerus|Other chronic hematogenous osteomyelitis, left humerus +C2901895|T047|PT|M86.522|ICD10CM|Other chronic hematogenous osteomyelitis, left humerus|Other chronic hematogenous osteomyelitis, left humerus +C2901896|T047|AB|M86.529|ICD10CM|Other chronic hematogenous osteomyelitis, unsp humerus|Other chronic hematogenous osteomyelitis, unsp humerus +C2901896|T047|PT|M86.529|ICD10CM|Other chronic hematogenous osteomyelitis, unspecified humerus|Other chronic hematogenous osteomyelitis, unspecified humerus +C3264493|T047|AB|M86.53|ICD10CM|Other chronic hematogenous osteomyelitis, radius and ulna|Other chronic hematogenous osteomyelitis, radius and ulna +C3264493|T047|HT|M86.53|ICD10CM|Other chronic hematogenous osteomyelitis, radius and ulna|Other chronic hematogenous osteomyelitis, radius and ulna +C2901897|T047|AB|M86.531|ICD10CM|Oth chronic hematogenous osteomyelit, right radius and ulna|Oth chronic hematogenous osteomyelit, right radius and ulna +C2901897|T047|PT|M86.531|ICD10CM|Other chronic hematogenous osteomyelitis, right radius and ulna|Other chronic hematogenous osteomyelitis, right radius and ulna +C2901898|T047|AB|M86.532|ICD10CM|Oth chronic hematogenous osteomyelitis, left radius and ulna|Oth chronic hematogenous osteomyelitis, left radius and ulna +C2901898|T047|PT|M86.532|ICD10CM|Other chronic hematogenous osteomyelitis, left radius and ulna|Other chronic hematogenous osteomyelitis, left radius and ulna +C2901899|T047|AB|M86.539|ICD10CM|Oth chronic hematogenous osteomyelitis, unsp radius and ulna|Oth chronic hematogenous osteomyelitis, unsp radius and ulna +C2901899|T047|PT|M86.539|ICD10CM|Other chronic hematogenous osteomyelitis, unspecified radius and ulna|Other chronic hematogenous osteomyelitis, unspecified radius and ulna +C0839982|T047|HT|M86.54|ICD10CM|Other chronic hematogenous osteomyelitis, hand|Other chronic hematogenous osteomyelitis, hand +C0839982|T047|AB|M86.54|ICD10CM|Other chronic hematogenous osteomyelitis, hand|Other chronic hematogenous osteomyelitis, hand +C2901900|T047|AB|M86.541|ICD10CM|Other chronic hematogenous osteomyelitis, right hand|Other chronic hematogenous osteomyelitis, right hand +C2901900|T047|PT|M86.541|ICD10CM|Other chronic hematogenous osteomyelitis, right hand|Other chronic hematogenous osteomyelitis, right hand +C2901901|T047|AB|M86.542|ICD10CM|Other chronic hematogenous osteomyelitis, left hand|Other chronic hematogenous osteomyelitis, left hand +C2901901|T047|PT|M86.542|ICD10CM|Other chronic hematogenous osteomyelitis, left hand|Other chronic hematogenous osteomyelitis, left hand +C2901902|T047|AB|M86.549|ICD10CM|Other chronic hematogenous osteomyelitis, unspecified hand|Other chronic hematogenous osteomyelitis, unspecified hand +C2901902|T047|PT|M86.549|ICD10CM|Other chronic hematogenous osteomyelitis, unspecified hand|Other chronic hematogenous osteomyelitis, unspecified hand +C2901903|T047|AB|M86.55|ICD10CM|Other chronic hematogenous osteomyelitis, femur|Other chronic hematogenous osteomyelitis, femur +C2901903|T047|HT|M86.55|ICD10CM|Other chronic hematogenous osteomyelitis, femur|Other chronic hematogenous osteomyelitis, femur +C2901904|T047|AB|M86.551|ICD10CM|Other chronic hematogenous osteomyelitis, right femur|Other chronic hematogenous osteomyelitis, right femur +C2901904|T047|PT|M86.551|ICD10CM|Other chronic hematogenous osteomyelitis, right femur|Other chronic hematogenous osteomyelitis, right femur +C2901905|T047|AB|M86.552|ICD10CM|Other chronic hematogenous osteomyelitis, left femur|Other chronic hematogenous osteomyelitis, left femur +C2901905|T047|PT|M86.552|ICD10CM|Other chronic hematogenous osteomyelitis, left femur|Other chronic hematogenous osteomyelitis, left femur +C2901906|T047|AB|M86.559|ICD10CM|Other chronic hematogenous osteomyelitis, unspecified femur|Other chronic hematogenous osteomyelitis, unspecified femur +C2901906|T047|PT|M86.559|ICD10CM|Other chronic hematogenous osteomyelitis, unspecified femur|Other chronic hematogenous osteomyelitis, unspecified femur +C3264494|T047|AB|M86.56|ICD10CM|Other chronic hematogenous osteomyelitis, tibia and fibula|Other chronic hematogenous osteomyelitis, tibia and fibula +C3264494|T047|HT|M86.56|ICD10CM|Other chronic hematogenous osteomyelitis, tibia and fibula|Other chronic hematogenous osteomyelitis, tibia and fibula +C2901907|T047|AB|M86.561|ICD10CM|Oth chronic hematogenous osteomyelit, right tibia and fibula|Oth chronic hematogenous osteomyelit, right tibia and fibula +C2901907|T047|PT|M86.561|ICD10CM|Other chronic hematogenous osteomyelitis, right tibia and fibula|Other chronic hematogenous osteomyelitis, right tibia and fibula +C2901908|T047|AB|M86.562|ICD10CM|Oth chronic hematogenous osteomyelit, left tibia and fibula|Oth chronic hematogenous osteomyelit, left tibia and fibula +C2901908|T047|PT|M86.562|ICD10CM|Other chronic hematogenous osteomyelitis, left tibia and fibula|Other chronic hematogenous osteomyelitis, left tibia and fibula +C2901909|T047|AB|M86.569|ICD10CM|Oth chronic hematogenous osteomyelit, unsp tibia and fibula|Oth chronic hematogenous osteomyelit, unsp tibia and fibula +C2901909|T047|PT|M86.569|ICD10CM|Other chronic hematogenous osteomyelitis, unspecified tibia and fibula|Other chronic hematogenous osteomyelitis, unspecified tibia and fibula +C0839985|T047|HT|M86.57|ICD10CM|Other chronic hematogenous osteomyelitis, ankle and foot|Other chronic hematogenous osteomyelitis, ankle and foot +C0839985|T047|AB|M86.57|ICD10CM|Other chronic hematogenous osteomyelitis, ankle and foot|Other chronic hematogenous osteomyelitis, ankle and foot +C2901910|T047|AB|M86.571|ICD10CM|Oth chronic hematogenous osteomyelitis, right ankle and foot|Oth chronic hematogenous osteomyelitis, right ankle and foot +C2901910|T047|PT|M86.571|ICD10CM|Other chronic hematogenous osteomyelitis, right ankle and foot|Other chronic hematogenous osteomyelitis, right ankle and foot +C2901911|T047|AB|M86.572|ICD10CM|Oth chronic hematogenous osteomyelitis, left ankle and foot|Oth chronic hematogenous osteomyelitis, left ankle and foot +C2901911|T047|PT|M86.572|ICD10CM|Other chronic hematogenous osteomyelitis, left ankle and foot|Other chronic hematogenous osteomyelitis, left ankle and foot +C2901912|T047|AB|M86.579|ICD10CM|Oth chronic hematogenous osteomyelitis, unsp ankle and foot|Oth chronic hematogenous osteomyelitis, unsp ankle and foot +C2901912|T047|PT|M86.579|ICD10CM|Other chronic hematogenous osteomyelitis, unspecified ankle and foot|Other chronic hematogenous osteomyelitis, unspecified ankle and foot +C0839986|T047|PT|M86.58|ICD10CM|Other chronic hematogenous osteomyelitis, other site|Other chronic hematogenous osteomyelitis, other site +C0839986|T047|AB|M86.58|ICD10CM|Other chronic hematogenous osteomyelitis, other site|Other chronic hematogenous osteomyelitis, other site +C0839978|T047|PT|M86.59|ICD10CM|Other chronic hematogenous osteomyelitis, multiple sites|Other chronic hematogenous osteomyelitis, multiple sites +C0839978|T047|AB|M86.59|ICD10CM|Other chronic hematogenous osteomyelitis, multiple sites|Other chronic hematogenous osteomyelitis, multiple sites +C0477685|T047|PT|M86.6|ICD10|Other chronic osteomyelitis|Other chronic osteomyelitis +C0477685|T047|HT|M86.6|ICD10CM|Other chronic osteomyelitis|Other chronic osteomyelitis +C0477685|T047|AB|M86.6|ICD10CM|Other chronic osteomyelitis|Other chronic osteomyelitis +C0477685|T047|AB|M86.60|ICD10CM|Other chronic osteomyelitis, unspecified site|Other chronic osteomyelitis, unspecified site +C0477685|T047|PT|M86.60|ICD10CM|Other chronic osteomyelitis, unspecified site|Other chronic osteomyelitis, unspecified site +C2901915|T047|AB|M86.61|ICD10CM|Other chronic osteomyelitis, shoulder|Other chronic osteomyelitis, shoulder +C2901915|T047|HT|M86.61|ICD10CM|Other chronic osteomyelitis, shoulder|Other chronic osteomyelitis, shoulder +C2901913|T047|AB|M86.611|ICD10CM|Other chronic osteomyelitis, right shoulder|Other chronic osteomyelitis, right shoulder +C2901913|T047|PT|M86.611|ICD10CM|Other chronic osteomyelitis, right shoulder|Other chronic osteomyelitis, right shoulder +C2901914|T047|AB|M86.612|ICD10CM|Other chronic osteomyelitis, left shoulder|Other chronic osteomyelitis, left shoulder +C2901914|T047|PT|M86.612|ICD10CM|Other chronic osteomyelitis, left shoulder|Other chronic osteomyelitis, left shoulder +C2901915|T047|AB|M86.619|ICD10CM|Other chronic osteomyelitis, unspecified shoulder|Other chronic osteomyelitis, unspecified shoulder +C2901915|T047|PT|M86.619|ICD10CM|Other chronic osteomyelitis, unspecified shoulder|Other chronic osteomyelitis, unspecified shoulder +C3264495|T047|AB|M86.62|ICD10CM|Other chronic osteomyelitis, humerus|Other chronic osteomyelitis, humerus +C3264495|T047|HT|M86.62|ICD10CM|Other chronic osteomyelitis, humerus|Other chronic osteomyelitis, humerus +C2901916|T047|AB|M86.621|ICD10CM|Other chronic osteomyelitis, right humerus|Other chronic osteomyelitis, right humerus +C2901916|T047|PT|M86.621|ICD10CM|Other chronic osteomyelitis, right humerus|Other chronic osteomyelitis, right humerus +C2901917|T047|AB|M86.622|ICD10CM|Other chronic osteomyelitis, left humerus|Other chronic osteomyelitis, left humerus +C2901917|T047|PT|M86.622|ICD10CM|Other chronic osteomyelitis, left humerus|Other chronic osteomyelitis, left humerus +C2901918|T047|AB|M86.629|ICD10CM|Other chronic osteomyelitis, unspecified humerus|Other chronic osteomyelitis, unspecified humerus +C2901918|T047|PT|M86.629|ICD10CM|Other chronic osteomyelitis, unspecified humerus|Other chronic osteomyelitis, unspecified humerus +C3264496|T047|AB|M86.63|ICD10CM|Other chronic osteomyelitis, radius and ulna|Other chronic osteomyelitis, radius and ulna +C3264496|T047|HT|M86.63|ICD10CM|Other chronic osteomyelitis, radius and ulna|Other chronic osteomyelitis, radius and ulna +C2901919|T047|AB|M86.631|ICD10CM|Other chronic osteomyelitis, right radius and ulna|Other chronic osteomyelitis, right radius and ulna +C2901919|T047|PT|M86.631|ICD10CM|Other chronic osteomyelitis, right radius and ulna|Other chronic osteomyelitis, right radius and ulna +C2901920|T047|AB|M86.632|ICD10CM|Other chronic osteomyelitis, left radius and ulna|Other chronic osteomyelitis, left radius and ulna +C2901920|T047|PT|M86.632|ICD10CM|Other chronic osteomyelitis, left radius and ulna|Other chronic osteomyelitis, left radius and ulna +C2901921|T047|AB|M86.639|ICD10CM|Other chronic osteomyelitis, unspecified radius and ulna|Other chronic osteomyelitis, unspecified radius and ulna +C2901921|T047|PT|M86.639|ICD10CM|Other chronic osteomyelitis, unspecified radius and ulna|Other chronic osteomyelitis, unspecified radius and ulna +C0839992|T047|HT|M86.64|ICD10CM|Other chronic osteomyelitis, hand|Other chronic osteomyelitis, hand +C0839992|T047|AB|M86.64|ICD10CM|Other chronic osteomyelitis, hand|Other chronic osteomyelitis, hand +C2901922|T047|AB|M86.641|ICD10CM|Other chronic osteomyelitis, right hand|Other chronic osteomyelitis, right hand +C2901922|T047|PT|M86.641|ICD10CM|Other chronic osteomyelitis, right hand|Other chronic osteomyelitis, right hand +C2901923|T047|AB|M86.642|ICD10CM|Other chronic osteomyelitis, left hand|Other chronic osteomyelitis, left hand +C2901923|T047|PT|M86.642|ICD10CM|Other chronic osteomyelitis, left hand|Other chronic osteomyelitis, left hand +C2901924|T047|AB|M86.649|ICD10CM|Other chronic osteomyelitis, unspecified hand|Other chronic osteomyelitis, unspecified hand +C2901924|T047|PT|M86.649|ICD10CM|Other chronic osteomyelitis, unspecified hand|Other chronic osteomyelitis, unspecified hand +C2901927|T047|AB|M86.65|ICD10CM|Other chronic osteomyelitis, thigh|Other chronic osteomyelitis, thigh +C2901927|T047|HT|M86.65|ICD10CM|Other chronic osteomyelitis, thigh|Other chronic osteomyelitis, thigh +C2901925|T047|AB|M86.651|ICD10CM|Other chronic osteomyelitis, right thigh|Other chronic osteomyelitis, right thigh +C2901925|T047|PT|M86.651|ICD10CM|Other chronic osteomyelitis, right thigh|Other chronic osteomyelitis, right thigh +C2901926|T047|AB|M86.652|ICD10CM|Other chronic osteomyelitis, left thigh|Other chronic osteomyelitis, left thigh +C2901926|T047|PT|M86.652|ICD10CM|Other chronic osteomyelitis, left thigh|Other chronic osteomyelitis, left thigh +C2901927|T047|AB|M86.659|ICD10CM|Other chronic osteomyelitis, unspecified thigh|Other chronic osteomyelitis, unspecified thigh +C2901927|T047|PT|M86.659|ICD10CM|Other chronic osteomyelitis, unspecified thigh|Other chronic osteomyelitis, unspecified thigh +C3264497|T047|AB|M86.66|ICD10CM|Other chronic osteomyelitis, tibia and fibula|Other chronic osteomyelitis, tibia and fibula +C3264497|T047|HT|M86.66|ICD10CM|Other chronic osteomyelitis, tibia and fibula|Other chronic osteomyelitis, tibia and fibula +C2901928|T047|AB|M86.661|ICD10CM|Other chronic osteomyelitis, right tibia and fibula|Other chronic osteomyelitis, right tibia and fibula +C2901928|T047|PT|M86.661|ICD10CM|Other chronic osteomyelitis, right tibia and fibula|Other chronic osteomyelitis, right tibia and fibula +C2901929|T047|AB|M86.662|ICD10CM|Other chronic osteomyelitis, left tibia and fibula|Other chronic osteomyelitis, left tibia and fibula +C2901929|T047|PT|M86.662|ICD10CM|Other chronic osteomyelitis, left tibia and fibula|Other chronic osteomyelitis, left tibia and fibula +C3264498|T047|AB|M86.669|ICD10CM|Other chronic osteomyelitis, unspecified tibia and fibula|Other chronic osteomyelitis, unspecified tibia and fibula +C3264498|T047|PT|M86.669|ICD10CM|Other chronic osteomyelitis, unspecified tibia and fibula|Other chronic osteomyelitis, unspecified tibia and fibula +C0839995|T047|HT|M86.67|ICD10CM|Other chronic osteomyelitis, ankle and foot|Other chronic osteomyelitis, ankle and foot +C0839995|T047|AB|M86.67|ICD10CM|Other chronic osteomyelitis, ankle and foot|Other chronic osteomyelitis, ankle and foot +C2901930|T047|AB|M86.671|ICD10CM|Other chronic osteomyelitis, right ankle and foot|Other chronic osteomyelitis, right ankle and foot +C2901930|T047|PT|M86.671|ICD10CM|Other chronic osteomyelitis, right ankle and foot|Other chronic osteomyelitis, right ankle and foot +C2901931|T047|AB|M86.672|ICD10CM|Other chronic osteomyelitis, left ankle and foot|Other chronic osteomyelitis, left ankle and foot +C2901931|T047|PT|M86.672|ICD10CM|Other chronic osteomyelitis, left ankle and foot|Other chronic osteomyelitis, left ankle and foot +C2901932|T047|AB|M86.679|ICD10CM|Other chronic osteomyelitis, unspecified ankle and foot|Other chronic osteomyelitis, unspecified ankle and foot +C2901932|T047|PT|M86.679|ICD10CM|Other chronic osteomyelitis, unspecified ankle and foot|Other chronic osteomyelitis, unspecified ankle and foot +C0839996|T047|PT|M86.68|ICD10CM|Other chronic osteomyelitis, other site|Other chronic osteomyelitis, other site +C0839996|T047|AB|M86.68|ICD10CM|Other chronic osteomyelitis, other site|Other chronic osteomyelitis, other site +C0839988|T047|PT|M86.69|ICD10CM|Other chronic osteomyelitis, multiple sites|Other chronic osteomyelitis, multiple sites +C0839988|T047|AB|M86.69|ICD10CM|Other chronic osteomyelitis, multiple sites|Other chronic osteomyelitis, multiple sites +C0264053|T047|ET|M86.8|ICD10CM|Brodie's abscess|Brodie's abscess +C0477686|T047|HT|M86.8|ICD10CM|Other osteomyelitis|Other osteomyelitis +C0477686|T047|AB|M86.8|ICD10CM|Other osteomyelitis|Other osteomyelitis +C0477686|T047|PT|M86.8|ICD10|Other osteomyelitis|Other osteomyelitis +C0477686|T047|HT|M86.8X|ICD10CM|Other osteomyelitis|Other osteomyelitis +C0477686|T047|AB|M86.8X|ICD10CM|Other osteomyelitis|Other osteomyelitis +C0839998|T047|PT|M86.8X0|ICD10CM|Other osteomyelitis, multiple sites|Other osteomyelitis, multiple sites +C0839998|T047|AB|M86.8X0|ICD10CM|Other osteomyelitis, multiple sites|Other osteomyelitis, multiple sites +C2901933|T047|AB|M86.8X1|ICD10CM|Other osteomyelitis, shoulder|Other osteomyelitis, shoulder +C2901933|T047|PT|M86.8X1|ICD10CM|Other osteomyelitis, shoulder|Other osteomyelitis, shoulder +C0840000|T047|PT|M86.8X2|ICD10CM|Other osteomyelitis, upper arm|Other osteomyelitis, upper arm +C0840000|T047|AB|M86.8X2|ICD10CM|Other osteomyelitis, upper arm|Other osteomyelitis, upper arm +C0840001|T047|PT|M86.8X3|ICD10CM|Other osteomyelitis, forearm|Other osteomyelitis, forearm +C0840001|T047|AB|M86.8X3|ICD10CM|Other osteomyelitis, forearm|Other osteomyelitis, forearm +C0840002|T047|PT|M86.8X4|ICD10CM|Other osteomyelitis, hand|Other osteomyelitis, hand +C0840002|T047|AB|M86.8X4|ICD10CM|Other osteomyelitis, hand|Other osteomyelitis, hand +C2901934|T047|AB|M86.8X5|ICD10CM|Other osteomyelitis, thigh|Other osteomyelitis, thigh +C2901934|T047|PT|M86.8X5|ICD10CM|Other osteomyelitis, thigh|Other osteomyelitis, thigh +C0840004|T047|PT|M86.8X6|ICD10CM|Other osteomyelitis, lower leg|Other osteomyelitis, lower leg +C0840004|T047|AB|M86.8X6|ICD10CM|Other osteomyelitis, lower leg|Other osteomyelitis, lower leg +C0840005|T047|PT|M86.8X7|ICD10CM|Other osteomyelitis, ankle and foot|Other osteomyelitis, ankle and foot +C0840005|T047|AB|M86.8X7|ICD10CM|Other osteomyelitis, ankle and foot|Other osteomyelitis, ankle and foot +C0840006|T047|PT|M86.8X8|ICD10CM|Other osteomyelitis, other site|Other osteomyelitis, other site +C0840006|T047|AB|M86.8X8|ICD10CM|Other osteomyelitis, other site|Other osteomyelitis, other site +C0477686|T047|AB|M86.8X9|ICD10CM|Other osteomyelitis, unspecified sites|Other osteomyelitis, unspecified sites +C0477686|T047|PT|M86.8X9|ICD10CM|Other osteomyelitis, unspecified sites|Other osteomyelitis, unspecified sites +C2242472|T047|ET|M86.9|ICD10CM|Infection of bone NOS|Infection of bone NOS +C0029443|T047|PT|M86.9|ICD10|Osteomyelitis, unspecified|Osteomyelitis, unspecified +C0029443|T047|PT|M86.9|ICD10CM|Osteomyelitis, unspecified|Osteomyelitis, unspecified +C0029443|T047|AB|M86.9|ICD10CM|Osteomyelitis, unspecified|Osteomyelitis, unspecified +C0264069|T047|ET|M86.9|ICD10CM|Periostitis without osteomyelitis|Periostitis without osteomyelitis +C0027543|T047|ET|M87|ICD10CM|avascular necrosis of bone|avascular necrosis of bone +C0029445|T046|HT|M87|ICD10CM|Osteonecrosis|Osteonecrosis +C0029445|T046|AB|M87|ICD10CM|Osteonecrosis|Osteonecrosis +C0029445|T046|HT|M87|ICD10|Osteonecrosis|Osteonecrosis +C0451877|T046|PT|M87.0|ICD10|Idiopathic aseptic necrosis of bone|Idiopathic aseptic necrosis of bone +C0451877|T046|HT|M87.0|ICD10CM|Idiopathic aseptic necrosis of bone|Idiopathic aseptic necrosis of bone +C0451877|T046|AB|M87.0|ICD10CM|Idiopathic aseptic necrosis of bone|Idiopathic aseptic necrosis of bone +C2901935|T046|AB|M87.00|ICD10CM|Idiopathic aseptic necrosis of unspecified bone|Idiopathic aseptic necrosis of unspecified bone +C2901935|T046|PT|M87.00|ICD10CM|Idiopathic aseptic necrosis of unspecified bone|Idiopathic aseptic necrosis of unspecified bone +C2901936|T047|ET|M87.01|ICD10CM|Idiopathic aseptic necrosis of clavicle and scapula|Idiopathic aseptic necrosis of clavicle and scapula +C2901939|T046|AB|M87.01|ICD10CM|Idiopathic aseptic necrosis of shoulder|Idiopathic aseptic necrosis of shoulder +C2901939|T046|HT|M87.01|ICD10CM|Idiopathic aseptic necrosis of shoulder|Idiopathic aseptic necrosis of shoulder +C2901937|T046|PT|M87.011|ICD10CM|Idiopathic aseptic necrosis of right shoulder|Idiopathic aseptic necrosis of right shoulder +C2901937|T046|AB|M87.011|ICD10CM|Idiopathic aseptic necrosis of right shoulder|Idiopathic aseptic necrosis of right shoulder +C2901938|T046|PT|M87.012|ICD10CM|Idiopathic aseptic necrosis of left shoulder|Idiopathic aseptic necrosis of left shoulder +C2901938|T046|AB|M87.012|ICD10CM|Idiopathic aseptic necrosis of left shoulder|Idiopathic aseptic necrosis of left shoulder +C2901939|T046|AB|M87.019|ICD10CM|Idiopathic aseptic necrosis of unspecified shoulder|Idiopathic aseptic necrosis of unspecified shoulder +C2901939|T046|PT|M87.019|ICD10CM|Idiopathic aseptic necrosis of unspecified shoulder|Idiopathic aseptic necrosis of unspecified shoulder +C2901942|T046|AB|M87.02|ICD10CM|Idiopathic aseptic necrosis of humerus|Idiopathic aseptic necrosis of humerus +C2901942|T046|HT|M87.02|ICD10CM|Idiopathic aseptic necrosis of humerus|Idiopathic aseptic necrosis of humerus +C2901940|T046|AB|M87.021|ICD10CM|Idiopathic aseptic necrosis of right humerus|Idiopathic aseptic necrosis of right humerus +C2901940|T046|PT|M87.021|ICD10CM|Idiopathic aseptic necrosis of right humerus|Idiopathic aseptic necrosis of right humerus +C2901941|T046|AB|M87.022|ICD10CM|Idiopathic aseptic necrosis of left humerus|Idiopathic aseptic necrosis of left humerus +C2901941|T046|PT|M87.022|ICD10CM|Idiopathic aseptic necrosis of left humerus|Idiopathic aseptic necrosis of left humerus +C2901942|T046|AB|M87.029|ICD10CM|Idiopathic aseptic necrosis of unspecified humerus|Idiopathic aseptic necrosis of unspecified humerus +C2901942|T046|PT|M87.029|ICD10CM|Idiopathic aseptic necrosis of unspecified humerus|Idiopathic aseptic necrosis of unspecified humerus +C2901943|T046|AB|M87.03|ICD10CM|Idiopathic aseptic necrosis of radius, ulna and carpus|Idiopathic aseptic necrosis of radius, ulna and carpus +C2901943|T046|HT|M87.03|ICD10CM|Idiopathic aseptic necrosis of radius, ulna and carpus|Idiopathic aseptic necrosis of radius, ulna and carpus +C2901944|T046|AB|M87.031|ICD10CM|Idiopathic aseptic necrosis of right radius|Idiopathic aseptic necrosis of right radius +C2901944|T046|PT|M87.031|ICD10CM|Idiopathic aseptic necrosis of right radius|Idiopathic aseptic necrosis of right radius +C2901945|T046|AB|M87.032|ICD10CM|Idiopathic aseptic necrosis of left radius|Idiopathic aseptic necrosis of left radius +C2901945|T046|PT|M87.032|ICD10CM|Idiopathic aseptic necrosis of left radius|Idiopathic aseptic necrosis of left radius +C2901946|T046|AB|M87.033|ICD10CM|Idiopathic aseptic necrosis of unspecified radius|Idiopathic aseptic necrosis of unspecified radius +C2901946|T046|PT|M87.033|ICD10CM|Idiopathic aseptic necrosis of unspecified radius|Idiopathic aseptic necrosis of unspecified radius +C2901947|T046|AB|M87.034|ICD10CM|Idiopathic aseptic necrosis of right ulna|Idiopathic aseptic necrosis of right ulna +C2901947|T046|PT|M87.034|ICD10CM|Idiopathic aseptic necrosis of right ulna|Idiopathic aseptic necrosis of right ulna +C2901948|T046|AB|M87.035|ICD10CM|Idiopathic aseptic necrosis of left ulna|Idiopathic aseptic necrosis of left ulna +C2901948|T046|PT|M87.035|ICD10CM|Idiopathic aseptic necrosis of left ulna|Idiopathic aseptic necrosis of left ulna +C2901949|T046|AB|M87.036|ICD10CM|Idiopathic aseptic necrosis of unspecified ulna|Idiopathic aseptic necrosis of unspecified ulna +C2901949|T046|PT|M87.036|ICD10CM|Idiopathic aseptic necrosis of unspecified ulna|Idiopathic aseptic necrosis of unspecified ulna +C2901950|T046|AB|M87.037|ICD10CM|Idiopathic aseptic necrosis of right carpus|Idiopathic aseptic necrosis of right carpus +C2901950|T046|PT|M87.037|ICD10CM|Idiopathic aseptic necrosis of right carpus|Idiopathic aseptic necrosis of right carpus +C2901951|T046|AB|M87.038|ICD10CM|Idiopathic aseptic necrosis of left carpus|Idiopathic aseptic necrosis of left carpus +C2901951|T046|PT|M87.038|ICD10CM|Idiopathic aseptic necrosis of left carpus|Idiopathic aseptic necrosis of left carpus +C2901952|T046|AB|M87.039|ICD10CM|Idiopathic aseptic necrosis of unspecified carpus|Idiopathic aseptic necrosis of unspecified carpus +C2901952|T046|PT|M87.039|ICD10CM|Idiopathic aseptic necrosis of unspecified carpus|Idiopathic aseptic necrosis of unspecified carpus +C2901954|T046|AB|M87.04|ICD10CM|Idiopathic aseptic necrosis of hand and fingers|Idiopathic aseptic necrosis of hand and fingers +C2901954|T046|HT|M87.04|ICD10CM|Idiopathic aseptic necrosis of hand and fingers|Idiopathic aseptic necrosis of hand and fingers +C2901953|T047|ET|M87.04|ICD10CM|Idiopathic aseptic necrosis of metacarpals and phalanges of hands|Idiopathic aseptic necrosis of metacarpals and phalanges of hands +C2901955|T046|AB|M87.041|ICD10CM|Idiopathic aseptic necrosis of right hand|Idiopathic aseptic necrosis of right hand +C2901955|T046|PT|M87.041|ICD10CM|Idiopathic aseptic necrosis of right hand|Idiopathic aseptic necrosis of right hand +C2901956|T046|AB|M87.042|ICD10CM|Idiopathic aseptic necrosis of left hand|Idiopathic aseptic necrosis of left hand +C2901956|T046|PT|M87.042|ICD10CM|Idiopathic aseptic necrosis of left hand|Idiopathic aseptic necrosis of left hand +C2901957|T046|AB|M87.043|ICD10CM|Idiopathic aseptic necrosis of unspecified hand|Idiopathic aseptic necrosis of unspecified hand +C2901957|T046|PT|M87.043|ICD10CM|Idiopathic aseptic necrosis of unspecified hand|Idiopathic aseptic necrosis of unspecified hand +C2901958|T046|AB|M87.044|ICD10CM|Idiopathic aseptic necrosis of right finger(s)|Idiopathic aseptic necrosis of right finger(s) +C2901958|T046|PT|M87.044|ICD10CM|Idiopathic aseptic necrosis of right finger(s)|Idiopathic aseptic necrosis of right finger(s) +C2901959|T046|AB|M87.045|ICD10CM|Idiopathic aseptic necrosis of left finger(s)|Idiopathic aseptic necrosis of left finger(s) +C2901959|T046|PT|M87.045|ICD10CM|Idiopathic aseptic necrosis of left finger(s)|Idiopathic aseptic necrosis of left finger(s) +C2901960|T046|AB|M87.046|ICD10CM|Idiopathic aseptic necrosis of unspecified finger(s)|Idiopathic aseptic necrosis of unspecified finger(s) +C2901960|T046|PT|M87.046|ICD10CM|Idiopathic aseptic necrosis of unspecified finger(s)|Idiopathic aseptic necrosis of unspecified finger(s) +C2901961|T046|AB|M87.05|ICD10CM|Idiopathic aseptic necrosis of pelvis and femur|Idiopathic aseptic necrosis of pelvis and femur +C2901961|T046|HT|M87.05|ICD10CM|Idiopathic aseptic necrosis of pelvis and femur|Idiopathic aseptic necrosis of pelvis and femur +C2901962|T046|AB|M87.050|ICD10CM|Idiopathic aseptic necrosis of pelvis|Idiopathic aseptic necrosis of pelvis +C2901962|T046|PT|M87.050|ICD10CM|Idiopathic aseptic necrosis of pelvis|Idiopathic aseptic necrosis of pelvis +C2901963|T046|AB|M87.051|ICD10CM|Idiopathic aseptic necrosis of right femur|Idiopathic aseptic necrosis of right femur +C2901963|T046|PT|M87.051|ICD10CM|Idiopathic aseptic necrosis of right femur|Idiopathic aseptic necrosis of right femur +C2901964|T046|AB|M87.052|ICD10CM|Idiopathic aseptic necrosis of left femur|Idiopathic aseptic necrosis of left femur +C2901964|T046|PT|M87.052|ICD10CM|Idiopathic aseptic necrosis of left femur|Idiopathic aseptic necrosis of left femur +C2901965|T047|ET|M87.059|ICD10CM|Idiopathic aseptic necrosis of hip NOS|Idiopathic aseptic necrosis of hip NOS +C2901966|T046|AB|M87.059|ICD10CM|Idiopathic aseptic necrosis of unspecified femur|Idiopathic aseptic necrosis of unspecified femur +C2901966|T046|PT|M87.059|ICD10CM|Idiopathic aseptic necrosis of unspecified femur|Idiopathic aseptic necrosis of unspecified femur +C2901967|T046|AB|M87.06|ICD10CM|Idiopathic aseptic necrosis of tibia and fibula|Idiopathic aseptic necrosis of tibia and fibula +C2901967|T046|HT|M87.06|ICD10CM|Idiopathic aseptic necrosis of tibia and fibula|Idiopathic aseptic necrosis of tibia and fibula +C2901968|T046|AB|M87.061|ICD10CM|Idiopathic aseptic necrosis of right tibia|Idiopathic aseptic necrosis of right tibia +C2901968|T046|PT|M87.061|ICD10CM|Idiopathic aseptic necrosis of right tibia|Idiopathic aseptic necrosis of right tibia +C2901969|T046|AB|M87.062|ICD10CM|Idiopathic aseptic necrosis of left tibia|Idiopathic aseptic necrosis of left tibia +C2901969|T046|PT|M87.062|ICD10CM|Idiopathic aseptic necrosis of left tibia|Idiopathic aseptic necrosis of left tibia +C2901970|T046|AB|M87.063|ICD10CM|Idiopathic aseptic necrosis of unspecified tibia|Idiopathic aseptic necrosis of unspecified tibia +C2901970|T046|PT|M87.063|ICD10CM|Idiopathic aseptic necrosis of unspecified tibia|Idiopathic aseptic necrosis of unspecified tibia +C2901971|T046|AB|M87.064|ICD10CM|Idiopathic aseptic necrosis of right fibula|Idiopathic aseptic necrosis of right fibula +C2901971|T046|PT|M87.064|ICD10CM|Idiopathic aseptic necrosis of right fibula|Idiopathic aseptic necrosis of right fibula +C2901972|T046|AB|M87.065|ICD10CM|Idiopathic aseptic necrosis of left fibula|Idiopathic aseptic necrosis of left fibula +C2901972|T046|PT|M87.065|ICD10CM|Idiopathic aseptic necrosis of left fibula|Idiopathic aseptic necrosis of left fibula +C2901973|T046|AB|M87.066|ICD10CM|Idiopathic aseptic necrosis of unspecified fibula|Idiopathic aseptic necrosis of unspecified fibula +C2901973|T046|PT|M87.066|ICD10CM|Idiopathic aseptic necrosis of unspecified fibula|Idiopathic aseptic necrosis of unspecified fibula +C2901975|T046|AB|M87.07|ICD10CM|Idiopathic aseptic necrosis of ankle, foot and toes|Idiopathic aseptic necrosis of ankle, foot and toes +C2901975|T046|HT|M87.07|ICD10CM|Idiopathic aseptic necrosis of ankle, foot and toes|Idiopathic aseptic necrosis of ankle, foot and toes +C2901974|T047|ET|M87.07|ICD10CM|Idiopathic aseptic necrosis of metatarsus, tarsus, and phalanges of toes|Idiopathic aseptic necrosis of metatarsus, tarsus, and phalanges of toes +C2901976|T046|PT|M87.071|ICD10CM|Idiopathic aseptic necrosis of right ankle|Idiopathic aseptic necrosis of right ankle +C2901976|T046|AB|M87.071|ICD10CM|Idiopathic aseptic necrosis of right ankle|Idiopathic aseptic necrosis of right ankle +C2901977|T046|PT|M87.072|ICD10CM|Idiopathic aseptic necrosis of left ankle|Idiopathic aseptic necrosis of left ankle +C2901977|T046|AB|M87.072|ICD10CM|Idiopathic aseptic necrosis of left ankle|Idiopathic aseptic necrosis of left ankle +C2901978|T046|AB|M87.073|ICD10CM|Idiopathic aseptic necrosis of unspecified ankle|Idiopathic aseptic necrosis of unspecified ankle +C2901978|T046|PT|M87.073|ICD10CM|Idiopathic aseptic necrosis of unspecified ankle|Idiopathic aseptic necrosis of unspecified ankle +C2901979|T046|AB|M87.074|ICD10CM|Idiopathic aseptic necrosis of right foot|Idiopathic aseptic necrosis of right foot +C2901979|T046|PT|M87.074|ICD10CM|Idiopathic aseptic necrosis of right foot|Idiopathic aseptic necrosis of right foot +C2901980|T046|AB|M87.075|ICD10CM|Idiopathic aseptic necrosis of left foot|Idiopathic aseptic necrosis of left foot +C2901980|T046|PT|M87.075|ICD10CM|Idiopathic aseptic necrosis of left foot|Idiopathic aseptic necrosis of left foot +C2901981|T046|AB|M87.076|ICD10CM|Idiopathic aseptic necrosis of unspecified foot|Idiopathic aseptic necrosis of unspecified foot +C2901981|T046|PT|M87.076|ICD10CM|Idiopathic aseptic necrosis of unspecified foot|Idiopathic aseptic necrosis of unspecified foot +C2901982|T046|AB|M87.077|ICD10CM|Idiopathic aseptic necrosis of right toe(s)|Idiopathic aseptic necrosis of right toe(s) +C2901982|T046|PT|M87.077|ICD10CM|Idiopathic aseptic necrosis of right toe(s)|Idiopathic aseptic necrosis of right toe(s) +C2901983|T046|AB|M87.078|ICD10CM|Idiopathic aseptic necrosis of left toe(s)|Idiopathic aseptic necrosis of left toe(s) +C2901983|T046|PT|M87.078|ICD10CM|Idiopathic aseptic necrosis of left toe(s)|Idiopathic aseptic necrosis of left toe(s) +C2901984|T046|AB|M87.079|ICD10CM|Idiopathic aseptic necrosis of unspecified toe(s)|Idiopathic aseptic necrosis of unspecified toe(s) +C2901984|T046|PT|M87.079|ICD10CM|Idiopathic aseptic necrosis of unspecified toe(s)|Idiopathic aseptic necrosis of unspecified toe(s) +C0840017|T046|PT|M87.08|ICD10CM|Idiopathic aseptic necrosis of bone, other site|Idiopathic aseptic necrosis of bone, other site +C0840017|T046|AB|M87.08|ICD10CM|Idiopathic aseptic necrosis of bone, other site|Idiopathic aseptic necrosis of bone, other site +C0840009|T046|PT|M87.09|ICD10CM|Idiopathic aseptic necrosis of bone, multiple sites|Idiopathic aseptic necrosis of bone, multiple sites +C0840009|T046|AB|M87.09|ICD10CM|Idiopathic aseptic necrosis of bone, multiple sites|Idiopathic aseptic necrosis of bone, multiple sites +C0451878|T046|HT|M87.1|ICD10CM|Osteonecrosis due to drugs|Osteonecrosis due to drugs +C0451878|T046|AB|M87.1|ICD10CM|Osteonecrosis due to drugs|Osteonecrosis due to drugs +C0451878|T046|PT|M87.1|ICD10|Osteonecrosis due to drugs|Osteonecrosis due to drugs +C2901985|T046|AB|M87.10|ICD10CM|Osteonecrosis due to drugs, unspecified bone|Osteonecrosis due to drugs, unspecified bone +C2901985|T046|PT|M87.10|ICD10CM|Osteonecrosis due to drugs, unspecified bone|Osteonecrosis due to drugs, unspecified bone +C2901988|T046|AB|M87.11|ICD10CM|Osteonecrosis due to drugs, shoulder|Osteonecrosis due to drugs, shoulder +C2901988|T046|HT|M87.11|ICD10CM|Osteonecrosis due to drugs, shoulder|Osteonecrosis due to drugs, shoulder +C2901986|T046|AB|M87.111|ICD10CM|Osteonecrosis due to drugs, right shoulder|Osteonecrosis due to drugs, right shoulder +C2901986|T046|PT|M87.111|ICD10CM|Osteonecrosis due to drugs, right shoulder|Osteonecrosis due to drugs, right shoulder +C2901987|T046|AB|M87.112|ICD10CM|Osteonecrosis due to drugs, left shoulder|Osteonecrosis due to drugs, left shoulder +C2901987|T046|PT|M87.112|ICD10CM|Osteonecrosis due to drugs, left shoulder|Osteonecrosis due to drugs, left shoulder +C2901988|T046|AB|M87.119|ICD10CM|Osteonecrosis due to drugs, unspecified shoulder|Osteonecrosis due to drugs, unspecified shoulder +C2901988|T046|PT|M87.119|ICD10CM|Osteonecrosis due to drugs, unspecified shoulder|Osteonecrosis due to drugs, unspecified shoulder +C2901991|T046|AB|M87.12|ICD10CM|Osteonecrosis due to drugs, humerus|Osteonecrosis due to drugs, humerus +C2901991|T046|HT|M87.12|ICD10CM|Osteonecrosis due to drugs, humerus|Osteonecrosis due to drugs, humerus +C2901989|T046|AB|M87.121|ICD10CM|Osteonecrosis due to drugs, right humerus|Osteonecrosis due to drugs, right humerus +C2901989|T046|PT|M87.121|ICD10CM|Osteonecrosis due to drugs, right humerus|Osteonecrosis due to drugs, right humerus +C2901990|T046|AB|M87.122|ICD10CM|Osteonecrosis due to drugs, left humerus|Osteonecrosis due to drugs, left humerus +C2901990|T046|PT|M87.122|ICD10CM|Osteonecrosis due to drugs, left humerus|Osteonecrosis due to drugs, left humerus +C2901991|T046|AB|M87.129|ICD10CM|Osteonecrosis due to drugs, unspecified humerus|Osteonecrosis due to drugs, unspecified humerus +C2901991|T046|PT|M87.129|ICD10CM|Osteonecrosis due to drugs, unspecified humerus|Osteonecrosis due to drugs, unspecified humerus +C2901992|T046|AB|M87.13|ICD10CM|Osteonecrosis due to drugs of radius, ulna and carpus|Osteonecrosis due to drugs of radius, ulna and carpus +C2901992|T046|HT|M87.13|ICD10CM|Osteonecrosis due to drugs of radius, ulna and carpus|Osteonecrosis due to drugs of radius, ulna and carpus +C2901993|T046|AB|M87.131|ICD10CM|Osteonecrosis due to drugs of right radius|Osteonecrosis due to drugs of right radius +C2901993|T046|PT|M87.131|ICD10CM|Osteonecrosis due to drugs of right radius|Osteonecrosis due to drugs of right radius +C2901994|T046|AB|M87.132|ICD10CM|Osteonecrosis due to drugs of left radius|Osteonecrosis due to drugs of left radius +C2901994|T046|PT|M87.132|ICD10CM|Osteonecrosis due to drugs of left radius|Osteonecrosis due to drugs of left radius +C2901995|T046|AB|M87.133|ICD10CM|Osteonecrosis due to drugs of unspecified radius|Osteonecrosis due to drugs of unspecified radius +C2901995|T046|PT|M87.133|ICD10CM|Osteonecrosis due to drugs of unspecified radius|Osteonecrosis due to drugs of unspecified radius +C2901996|T046|AB|M87.134|ICD10CM|Osteonecrosis due to drugs of right ulna|Osteonecrosis due to drugs of right ulna +C2901996|T046|PT|M87.134|ICD10CM|Osteonecrosis due to drugs of right ulna|Osteonecrosis due to drugs of right ulna +C2901997|T046|AB|M87.135|ICD10CM|Osteonecrosis due to drugs of left ulna|Osteonecrosis due to drugs of left ulna +C2901997|T046|PT|M87.135|ICD10CM|Osteonecrosis due to drugs of left ulna|Osteonecrosis due to drugs of left ulna +C2901998|T046|AB|M87.136|ICD10CM|Osteonecrosis due to drugs of unspecified ulna|Osteonecrosis due to drugs of unspecified ulna +C2901998|T046|PT|M87.136|ICD10CM|Osteonecrosis due to drugs of unspecified ulna|Osteonecrosis due to drugs of unspecified ulna +C2901999|T046|AB|M87.137|ICD10CM|Osteonecrosis due to drugs of right carpus|Osteonecrosis due to drugs of right carpus +C2901999|T046|PT|M87.137|ICD10CM|Osteonecrosis due to drugs of right carpus|Osteonecrosis due to drugs of right carpus +C2902000|T046|AB|M87.138|ICD10CM|Osteonecrosis due to drugs of left carpus|Osteonecrosis due to drugs of left carpus +C2902000|T046|PT|M87.138|ICD10CM|Osteonecrosis due to drugs of left carpus|Osteonecrosis due to drugs of left carpus +C2902001|T046|AB|M87.139|ICD10CM|Osteonecrosis due to drugs of unspecified carpus|Osteonecrosis due to drugs of unspecified carpus +C2902001|T046|PT|M87.139|ICD10CM|Osteonecrosis due to drugs of unspecified carpus|Osteonecrosis due to drugs of unspecified carpus +C2902002|T046|AB|M87.14|ICD10CM|Osteonecrosis due to drugs, hand and fingers|Osteonecrosis due to drugs, hand and fingers +C2902002|T046|HT|M87.14|ICD10CM|Osteonecrosis due to drugs, hand and fingers|Osteonecrosis due to drugs, hand and fingers +C2902003|T046|AB|M87.141|ICD10CM|Osteonecrosis due to drugs, right hand|Osteonecrosis due to drugs, right hand +C2902003|T046|PT|M87.141|ICD10CM|Osteonecrosis due to drugs, right hand|Osteonecrosis due to drugs, right hand +C2902004|T046|AB|M87.142|ICD10CM|Osteonecrosis due to drugs, left hand|Osteonecrosis due to drugs, left hand +C2902004|T046|PT|M87.142|ICD10CM|Osteonecrosis due to drugs, left hand|Osteonecrosis due to drugs, left hand +C2902005|T046|AB|M87.143|ICD10CM|Osteonecrosis due to drugs, unspecified hand|Osteonecrosis due to drugs, unspecified hand +C2902005|T046|PT|M87.143|ICD10CM|Osteonecrosis due to drugs, unspecified hand|Osteonecrosis due to drugs, unspecified hand +C2902006|T046|AB|M87.144|ICD10CM|Osteonecrosis due to drugs, right finger(s)|Osteonecrosis due to drugs, right finger(s) +C2902006|T046|PT|M87.144|ICD10CM|Osteonecrosis due to drugs, right finger(s)|Osteonecrosis due to drugs, right finger(s) +C2902007|T046|AB|M87.145|ICD10CM|Osteonecrosis due to drugs, left finger(s)|Osteonecrosis due to drugs, left finger(s) +C2902007|T046|PT|M87.145|ICD10CM|Osteonecrosis due to drugs, left finger(s)|Osteonecrosis due to drugs, left finger(s) +C2902008|T046|AB|M87.146|ICD10CM|Osteonecrosis due to drugs, unspecified finger(s)|Osteonecrosis due to drugs, unspecified finger(s) +C2902008|T046|PT|M87.146|ICD10CM|Osteonecrosis due to drugs, unspecified finger(s)|Osteonecrosis due to drugs, unspecified finger(s) +C2902009|T046|AB|M87.15|ICD10CM|Osteonecrosis due to drugs, pelvis and femur|Osteonecrosis due to drugs, pelvis and femur +C2902009|T046|HT|M87.15|ICD10CM|Osteonecrosis due to drugs, pelvis and femur|Osteonecrosis due to drugs, pelvis and femur +C2902010|T047|AB|M87.150|ICD10CM|Osteonecrosis due to drugs, pelvis|Osteonecrosis due to drugs, pelvis +C2902010|T047|PT|M87.150|ICD10CM|Osteonecrosis due to drugs, pelvis|Osteonecrosis due to drugs, pelvis +C2902011|T046|AB|M87.151|ICD10CM|Osteonecrosis due to drugs, right femur|Osteonecrosis due to drugs, right femur +C2902011|T046|PT|M87.151|ICD10CM|Osteonecrosis due to drugs, right femur|Osteonecrosis due to drugs, right femur +C2902012|T046|AB|M87.152|ICD10CM|Osteonecrosis due to drugs, left femur|Osteonecrosis due to drugs, left femur +C2902012|T046|PT|M87.152|ICD10CM|Osteonecrosis due to drugs, left femur|Osteonecrosis due to drugs, left femur +C2902013|T046|AB|M87.159|ICD10CM|Osteonecrosis due to drugs, unspecified femur|Osteonecrosis due to drugs, unspecified femur +C2902013|T046|PT|M87.159|ICD10CM|Osteonecrosis due to drugs, unspecified femur|Osteonecrosis due to drugs, unspecified femur +C2902014|T046|AB|M87.16|ICD10CM|Osteonecrosis due to drugs, tibia and fibula|Osteonecrosis due to drugs, tibia and fibula +C2902014|T046|HT|M87.16|ICD10CM|Osteonecrosis due to drugs, tibia and fibula|Osteonecrosis due to drugs, tibia and fibula +C2902015|T046|AB|M87.161|ICD10CM|Osteonecrosis due to drugs, right tibia|Osteonecrosis due to drugs, right tibia +C2902015|T046|PT|M87.161|ICD10CM|Osteonecrosis due to drugs, right tibia|Osteonecrosis due to drugs, right tibia +C2902016|T046|AB|M87.162|ICD10CM|Osteonecrosis due to drugs, left tibia|Osteonecrosis due to drugs, left tibia +C2902016|T046|PT|M87.162|ICD10CM|Osteonecrosis due to drugs, left tibia|Osteonecrosis due to drugs, left tibia +C2902017|T046|AB|M87.163|ICD10CM|Osteonecrosis due to drugs, unspecified tibia|Osteonecrosis due to drugs, unspecified tibia +C2902017|T046|PT|M87.163|ICD10CM|Osteonecrosis due to drugs, unspecified tibia|Osteonecrosis due to drugs, unspecified tibia +C2902018|T046|AB|M87.164|ICD10CM|Osteonecrosis due to drugs, right fibula|Osteonecrosis due to drugs, right fibula +C2902018|T046|PT|M87.164|ICD10CM|Osteonecrosis due to drugs, right fibula|Osteonecrosis due to drugs, right fibula +C2902019|T046|AB|M87.165|ICD10CM|Osteonecrosis due to drugs, left fibula|Osteonecrosis due to drugs, left fibula +C2902019|T046|PT|M87.165|ICD10CM|Osteonecrosis due to drugs, left fibula|Osteonecrosis due to drugs, left fibula +C2902020|T046|AB|M87.166|ICD10CM|Osteonecrosis due to drugs, unspecified fibula|Osteonecrosis due to drugs, unspecified fibula +C2902020|T046|PT|M87.166|ICD10CM|Osteonecrosis due to drugs, unspecified fibula|Osteonecrosis due to drugs, unspecified fibula +C2902021|T046|AB|M87.17|ICD10CM|Osteonecrosis due to drugs, ankle, foot and toes|Osteonecrosis due to drugs, ankle, foot and toes +C2902021|T046|HT|M87.17|ICD10CM|Osteonecrosis due to drugs, ankle, foot and toes|Osteonecrosis due to drugs, ankle, foot and toes +C2902022|T046|AB|M87.171|ICD10CM|Osteonecrosis due to drugs, right ankle|Osteonecrosis due to drugs, right ankle +C2902022|T046|PT|M87.171|ICD10CM|Osteonecrosis due to drugs, right ankle|Osteonecrosis due to drugs, right ankle +C2902023|T046|AB|M87.172|ICD10CM|Osteonecrosis due to drugs, left ankle|Osteonecrosis due to drugs, left ankle +C2902023|T046|PT|M87.172|ICD10CM|Osteonecrosis due to drugs, left ankle|Osteonecrosis due to drugs, left ankle +C2902024|T046|AB|M87.173|ICD10CM|Osteonecrosis due to drugs, unspecified ankle|Osteonecrosis due to drugs, unspecified ankle +C2902024|T046|PT|M87.173|ICD10CM|Osteonecrosis due to drugs, unspecified ankle|Osteonecrosis due to drugs, unspecified ankle +C2902025|T046|AB|M87.174|ICD10CM|Osteonecrosis due to drugs, right foot|Osteonecrosis due to drugs, right foot +C2902025|T046|PT|M87.174|ICD10CM|Osteonecrosis due to drugs, right foot|Osteonecrosis due to drugs, right foot +C2902026|T046|AB|M87.175|ICD10CM|Osteonecrosis due to drugs, left foot|Osteonecrosis due to drugs, left foot +C2902026|T046|PT|M87.175|ICD10CM|Osteonecrosis due to drugs, left foot|Osteonecrosis due to drugs, left foot +C2902027|T046|AB|M87.176|ICD10CM|Osteonecrosis due to drugs, unspecified foot|Osteonecrosis due to drugs, unspecified foot +C2902027|T046|PT|M87.176|ICD10CM|Osteonecrosis due to drugs, unspecified foot|Osteonecrosis due to drugs, unspecified foot +C2902028|T046|AB|M87.177|ICD10CM|Osteonecrosis due to drugs, right toe(s)|Osteonecrosis due to drugs, right toe(s) +C2902028|T046|PT|M87.177|ICD10CM|Osteonecrosis due to drugs, right toe(s)|Osteonecrosis due to drugs, right toe(s) +C2902029|T046|AB|M87.178|ICD10CM|Osteonecrosis due to drugs, left toe(s)|Osteonecrosis due to drugs, left toe(s) +C2902029|T046|PT|M87.178|ICD10CM|Osteonecrosis due to drugs, left toe(s)|Osteonecrosis due to drugs, left toe(s) +C2902030|T046|AB|M87.179|ICD10CM|Osteonecrosis due to drugs, unspecified toe(s)|Osteonecrosis due to drugs, unspecified toe(s) +C2902030|T046|PT|M87.179|ICD10CM|Osteonecrosis due to drugs, unspecified toe(s)|Osteonecrosis due to drugs, unspecified toe(s) +C0840027|T037|HT|M87.18|ICD10CM|Osteonecrosis due to drugs, other site|Osteonecrosis due to drugs, other site +C0840027|T037|AB|M87.18|ICD10CM|Osteonecrosis due to drugs, other site|Osteonecrosis due to drugs, other site +C2902031|T047|AB|M87.180|ICD10CM|Osteonecrosis due to drugs, jaw|Osteonecrosis due to drugs, jaw +C2902031|T047|PT|M87.180|ICD10CM|Osteonecrosis due to drugs, jaw|Osteonecrosis due to drugs, jaw +C0840027|T037|PT|M87.188|ICD10CM|Osteonecrosis due to drugs, other site|Osteonecrosis due to drugs, other site +C0840027|T037|AB|M87.188|ICD10CM|Osteonecrosis due to drugs, other site|Osteonecrosis due to drugs, other site +C0840019|T037|PT|M87.19|ICD10CM|Osteonecrosis due to drugs, multiple sites|Osteonecrosis due to drugs, multiple sites +C0840019|T037|AB|M87.19|ICD10CM|Osteonecrosis due to drugs, multiple sites|Osteonecrosis due to drugs, multiple sites +C0451879|T037|PT|M87.2|ICD10|Osteonecrosis due to previous trauma|Osteonecrosis due to previous trauma +C0451879|T037|HT|M87.2|ICD10CM|Osteonecrosis due to previous trauma|Osteonecrosis due to previous trauma +C0451879|T037|AB|M87.2|ICD10CM|Osteonecrosis due to previous trauma|Osteonecrosis due to previous trauma +C2902032|T046|AB|M87.20|ICD10CM|Osteonecrosis due to previous trauma, unspecified bone|Osteonecrosis due to previous trauma, unspecified bone +C2902032|T046|PT|M87.20|ICD10CM|Osteonecrosis due to previous trauma, unspecified bone|Osteonecrosis due to previous trauma, unspecified bone +C2902033|T046|AB|M87.21|ICD10CM|Osteonecrosis due to previous trauma, shoulder|Osteonecrosis due to previous trauma, shoulder +C2902033|T046|HT|M87.21|ICD10CM|Osteonecrosis due to previous trauma, shoulder|Osteonecrosis due to previous trauma, shoulder +C2902034|T046|AB|M87.211|ICD10CM|Osteonecrosis due to previous trauma, right shoulder|Osteonecrosis due to previous trauma, right shoulder +C2902034|T046|PT|M87.211|ICD10CM|Osteonecrosis due to previous trauma, right shoulder|Osteonecrosis due to previous trauma, right shoulder +C2902035|T046|AB|M87.212|ICD10CM|Osteonecrosis due to previous trauma, left shoulder|Osteonecrosis due to previous trauma, left shoulder +C2902035|T046|PT|M87.212|ICD10CM|Osteonecrosis due to previous trauma, left shoulder|Osteonecrosis due to previous trauma, left shoulder +C2902036|T046|AB|M87.219|ICD10CM|Osteonecrosis due to previous trauma, unspecified shoulder|Osteonecrosis due to previous trauma, unspecified shoulder +C2902036|T046|PT|M87.219|ICD10CM|Osteonecrosis due to previous trauma, unspecified shoulder|Osteonecrosis due to previous trauma, unspecified shoulder +C2902037|T046|AB|M87.22|ICD10CM|Osteonecrosis due to previous trauma, humerus|Osteonecrosis due to previous trauma, humerus +C2902037|T046|HT|M87.22|ICD10CM|Osteonecrosis due to previous trauma, humerus|Osteonecrosis due to previous trauma, humerus +C2902038|T046|AB|M87.221|ICD10CM|Osteonecrosis due to previous trauma, right humerus|Osteonecrosis due to previous trauma, right humerus +C2902038|T046|PT|M87.221|ICD10CM|Osteonecrosis due to previous trauma, right humerus|Osteonecrosis due to previous trauma, right humerus +C2902039|T046|AB|M87.222|ICD10CM|Osteonecrosis due to previous trauma, left humerus|Osteonecrosis due to previous trauma, left humerus +C2902039|T046|PT|M87.222|ICD10CM|Osteonecrosis due to previous trauma, left humerus|Osteonecrosis due to previous trauma, left humerus +C2902040|T046|AB|M87.229|ICD10CM|Osteonecrosis due to previous trauma, unspecified humerus|Osteonecrosis due to previous trauma, unspecified humerus +C2902040|T046|PT|M87.229|ICD10CM|Osteonecrosis due to previous trauma, unspecified humerus|Osteonecrosis due to previous trauma, unspecified humerus +C2902041|T046|HT|M87.23|ICD10CM|Osteonecrosis due to previous trauma of radius, ulna and carpus|Osteonecrosis due to previous trauma of radius, ulna and carpus +C2902041|T046|AB|M87.23|ICD10CM|Osteonecrs due to previous trauma of radius, ulna and carpus|Osteonecrs due to previous trauma of radius, ulna and carpus +C2902042|T046|AB|M87.231|ICD10CM|Osteonecrosis due to previous trauma of right radius|Osteonecrosis due to previous trauma of right radius +C2902042|T046|PT|M87.231|ICD10CM|Osteonecrosis due to previous trauma of right radius|Osteonecrosis due to previous trauma of right radius +C2902043|T046|AB|M87.232|ICD10CM|Osteonecrosis due to previous trauma of left radius|Osteonecrosis due to previous trauma of left radius +C2902043|T046|PT|M87.232|ICD10CM|Osteonecrosis due to previous trauma of left radius|Osteonecrosis due to previous trauma of left radius +C2902044|T046|AB|M87.233|ICD10CM|Osteonecrosis due to previous trauma of unspecified radius|Osteonecrosis due to previous trauma of unspecified radius +C2902044|T046|PT|M87.233|ICD10CM|Osteonecrosis due to previous trauma of unspecified radius|Osteonecrosis due to previous trauma of unspecified radius +C2902045|T046|AB|M87.234|ICD10CM|Osteonecrosis due to previous trauma of right ulna|Osteonecrosis due to previous trauma of right ulna +C2902045|T046|PT|M87.234|ICD10CM|Osteonecrosis due to previous trauma of right ulna|Osteonecrosis due to previous trauma of right ulna +C2902046|T046|AB|M87.235|ICD10CM|Osteonecrosis due to previous trauma of left ulna|Osteonecrosis due to previous trauma of left ulna +C2902046|T046|PT|M87.235|ICD10CM|Osteonecrosis due to previous trauma of left ulna|Osteonecrosis due to previous trauma of left ulna +C2902047|T046|AB|M87.236|ICD10CM|Osteonecrosis due to previous trauma of unspecified ulna|Osteonecrosis due to previous trauma of unspecified ulna +C2902047|T046|PT|M87.236|ICD10CM|Osteonecrosis due to previous trauma of unspecified ulna|Osteonecrosis due to previous trauma of unspecified ulna +C2902048|T046|AB|M87.237|ICD10CM|Osteonecrosis due to previous trauma of right carpus|Osteonecrosis due to previous trauma of right carpus +C2902048|T046|PT|M87.237|ICD10CM|Osteonecrosis due to previous trauma of right carpus|Osteonecrosis due to previous trauma of right carpus +C2902049|T046|AB|M87.238|ICD10CM|Osteonecrosis due to previous trauma of left carpus|Osteonecrosis due to previous trauma of left carpus +C2902049|T046|PT|M87.238|ICD10CM|Osteonecrosis due to previous trauma of left carpus|Osteonecrosis due to previous trauma of left carpus +C2902050|T046|AB|M87.239|ICD10CM|Osteonecrosis due to previous trauma of unspecified carpus|Osteonecrosis due to previous trauma of unspecified carpus +C2902050|T046|PT|M87.239|ICD10CM|Osteonecrosis due to previous trauma of unspecified carpus|Osteonecrosis due to previous trauma of unspecified carpus +C2902051|T046|AB|M87.24|ICD10CM|Osteonecrosis due to previous trauma, hand and fingers|Osteonecrosis due to previous trauma, hand and fingers +C2902051|T046|HT|M87.24|ICD10CM|Osteonecrosis due to previous trauma, hand and fingers|Osteonecrosis due to previous trauma, hand and fingers +C2902052|T046|AB|M87.241|ICD10CM|Osteonecrosis due to previous trauma, right hand|Osteonecrosis due to previous trauma, right hand +C2902052|T046|PT|M87.241|ICD10CM|Osteonecrosis due to previous trauma, right hand|Osteonecrosis due to previous trauma, right hand +C2902053|T046|AB|M87.242|ICD10CM|Osteonecrosis due to previous trauma, left hand|Osteonecrosis due to previous trauma, left hand +C2902053|T046|PT|M87.242|ICD10CM|Osteonecrosis due to previous trauma, left hand|Osteonecrosis due to previous trauma, left hand +C2902054|T046|AB|M87.243|ICD10CM|Osteonecrosis due to previous trauma, unspecified hand|Osteonecrosis due to previous trauma, unspecified hand +C2902054|T046|PT|M87.243|ICD10CM|Osteonecrosis due to previous trauma, unspecified hand|Osteonecrosis due to previous trauma, unspecified hand +C2902055|T046|AB|M87.244|ICD10CM|Osteonecrosis due to previous trauma, right finger(s)|Osteonecrosis due to previous trauma, right finger(s) +C2902055|T046|PT|M87.244|ICD10CM|Osteonecrosis due to previous trauma, right finger(s)|Osteonecrosis due to previous trauma, right finger(s) +C2902056|T046|AB|M87.245|ICD10CM|Osteonecrosis due to previous trauma, left finger(s)|Osteonecrosis due to previous trauma, left finger(s) +C2902056|T046|PT|M87.245|ICD10CM|Osteonecrosis due to previous trauma, left finger(s)|Osteonecrosis due to previous trauma, left finger(s) +C2902057|T046|AB|M87.246|ICD10CM|Osteonecrosis due to previous trauma, unspecified finger(s)|Osteonecrosis due to previous trauma, unspecified finger(s) +C2902057|T046|PT|M87.246|ICD10CM|Osteonecrosis due to previous trauma, unspecified finger(s)|Osteonecrosis due to previous trauma, unspecified finger(s) +C2902058|T046|AB|M87.25|ICD10CM|Osteonecrosis due to previous trauma, pelvis and femur|Osteonecrosis due to previous trauma, pelvis and femur +C2902058|T046|HT|M87.25|ICD10CM|Osteonecrosis due to previous trauma, pelvis and femur|Osteonecrosis due to previous trauma, pelvis and femur +C2902059|T046|AB|M87.250|ICD10CM|Osteonecrosis due to previous trauma, pelvis|Osteonecrosis due to previous trauma, pelvis +C2902059|T046|PT|M87.250|ICD10CM|Osteonecrosis due to previous trauma, pelvis|Osteonecrosis due to previous trauma, pelvis +C2902060|T046|AB|M87.251|ICD10CM|Osteonecrosis due to previous trauma, right femur|Osteonecrosis due to previous trauma, right femur +C2902060|T046|PT|M87.251|ICD10CM|Osteonecrosis due to previous trauma, right femur|Osteonecrosis due to previous trauma, right femur +C2902061|T046|AB|M87.252|ICD10CM|Osteonecrosis due to previous trauma, left femur|Osteonecrosis due to previous trauma, left femur +C2902061|T046|PT|M87.252|ICD10CM|Osteonecrosis due to previous trauma, left femur|Osteonecrosis due to previous trauma, left femur +C2902062|T046|AB|M87.256|ICD10CM|Osteonecrosis due to previous trauma, unspecified femur|Osteonecrosis due to previous trauma, unspecified femur +C2902062|T046|PT|M87.256|ICD10CM|Osteonecrosis due to previous trauma, unspecified femur|Osteonecrosis due to previous trauma, unspecified femur +C2902063|T046|AB|M87.26|ICD10CM|Osteonecrosis due to previous trauma, tibia and fibula|Osteonecrosis due to previous trauma, tibia and fibula +C2902063|T046|HT|M87.26|ICD10CM|Osteonecrosis due to previous trauma, tibia and fibula|Osteonecrosis due to previous trauma, tibia and fibula +C2902064|T046|AB|M87.261|ICD10CM|Osteonecrosis due to previous trauma, right tibia|Osteonecrosis due to previous trauma, right tibia +C2902064|T046|PT|M87.261|ICD10CM|Osteonecrosis due to previous trauma, right tibia|Osteonecrosis due to previous trauma, right tibia +C2902065|T046|AB|M87.262|ICD10CM|Osteonecrosis due to previous trauma, left tibia|Osteonecrosis due to previous trauma, left tibia +C2902065|T046|PT|M87.262|ICD10CM|Osteonecrosis due to previous trauma, left tibia|Osteonecrosis due to previous trauma, left tibia +C2902066|T046|AB|M87.263|ICD10CM|Osteonecrosis due to previous trauma, unspecified tibia|Osteonecrosis due to previous trauma, unspecified tibia +C2902066|T046|PT|M87.263|ICD10CM|Osteonecrosis due to previous trauma, unspecified tibia|Osteonecrosis due to previous trauma, unspecified tibia +C2902067|T046|AB|M87.264|ICD10CM|Osteonecrosis due to previous trauma, right fibula|Osteonecrosis due to previous trauma, right fibula +C2902067|T046|PT|M87.264|ICD10CM|Osteonecrosis due to previous trauma, right fibula|Osteonecrosis due to previous trauma, right fibula +C2902068|T046|AB|M87.265|ICD10CM|Osteonecrosis due to previous trauma, left fibula|Osteonecrosis due to previous trauma, left fibula +C2902068|T046|PT|M87.265|ICD10CM|Osteonecrosis due to previous trauma, left fibula|Osteonecrosis due to previous trauma, left fibula +C2902069|T046|AB|M87.266|ICD10CM|Osteonecrosis due to previous trauma, unspecified fibula|Osteonecrosis due to previous trauma, unspecified fibula +C2902069|T046|PT|M87.266|ICD10CM|Osteonecrosis due to previous trauma, unspecified fibula|Osteonecrosis due to previous trauma, unspecified fibula +C2902070|T046|AB|M87.27|ICD10CM|Osteonecrosis due to previous trauma, ankle, foot and toes|Osteonecrosis due to previous trauma, ankle, foot and toes +C2902070|T046|HT|M87.27|ICD10CM|Osteonecrosis due to previous trauma, ankle, foot and toes|Osteonecrosis due to previous trauma, ankle, foot and toes +C2902071|T046|AB|M87.271|ICD10CM|Osteonecrosis due to previous trauma, right ankle|Osteonecrosis due to previous trauma, right ankle +C2902071|T046|PT|M87.271|ICD10CM|Osteonecrosis due to previous trauma, right ankle|Osteonecrosis due to previous trauma, right ankle +C2902072|T046|AB|M87.272|ICD10CM|Osteonecrosis due to previous trauma, left ankle|Osteonecrosis due to previous trauma, left ankle +C2902072|T046|PT|M87.272|ICD10CM|Osteonecrosis due to previous trauma, left ankle|Osteonecrosis due to previous trauma, left ankle +C2902073|T046|AB|M87.273|ICD10CM|Osteonecrosis due to previous trauma, unspecified ankle|Osteonecrosis due to previous trauma, unspecified ankle +C2902073|T046|PT|M87.273|ICD10CM|Osteonecrosis due to previous trauma, unspecified ankle|Osteonecrosis due to previous trauma, unspecified ankle +C2902074|T046|AB|M87.274|ICD10CM|Osteonecrosis due to previous trauma, right foot|Osteonecrosis due to previous trauma, right foot +C2902074|T046|PT|M87.274|ICD10CM|Osteonecrosis due to previous trauma, right foot|Osteonecrosis due to previous trauma, right foot +C2902075|T046|AB|M87.275|ICD10CM|Osteonecrosis due to previous trauma, left foot|Osteonecrosis due to previous trauma, left foot +C2902075|T046|PT|M87.275|ICD10CM|Osteonecrosis due to previous trauma, left foot|Osteonecrosis due to previous trauma, left foot +C2902076|T046|AB|M87.276|ICD10CM|Osteonecrosis due to previous trauma, unspecified foot|Osteonecrosis due to previous trauma, unspecified foot +C2902076|T046|PT|M87.276|ICD10CM|Osteonecrosis due to previous trauma, unspecified foot|Osteonecrosis due to previous trauma, unspecified foot +C2902077|T046|AB|M87.277|ICD10CM|Osteonecrosis due to previous trauma, right toe(s)|Osteonecrosis due to previous trauma, right toe(s) +C2902077|T046|PT|M87.277|ICD10CM|Osteonecrosis due to previous trauma, right toe(s)|Osteonecrosis due to previous trauma, right toe(s) +C2902078|T046|AB|M87.278|ICD10CM|Osteonecrosis due to previous trauma, left toe(s)|Osteonecrosis due to previous trauma, left toe(s) +C2902078|T046|PT|M87.278|ICD10CM|Osteonecrosis due to previous trauma, left toe(s)|Osteonecrosis due to previous trauma, left toe(s) +C2902079|T046|AB|M87.279|ICD10CM|Osteonecrosis due to previous trauma, unspecified toe(s)|Osteonecrosis due to previous trauma, unspecified toe(s) +C2902079|T046|PT|M87.279|ICD10CM|Osteonecrosis due to previous trauma, unspecified toe(s)|Osteonecrosis due to previous trauma, unspecified toe(s) +C0840037|T046|PT|M87.28|ICD10CM|Osteonecrosis due to previous trauma, other site|Osteonecrosis due to previous trauma, other site +C0840037|T046|AB|M87.28|ICD10CM|Osteonecrosis due to previous trauma, other site|Osteonecrosis due to previous trauma, other site +C0840029|T046|PT|M87.29|ICD10CM|Osteonecrosis due to previous trauma, multiple sites|Osteonecrosis due to previous trauma, multiple sites +C0840029|T046|AB|M87.29|ICD10CM|Osteonecrosis due to previous trauma, multiple sites|Osteonecrosis due to previous trauma, multiple sites +C0477687|T046|HT|M87.3|ICD10CM|Other secondary osteonecrosis|Other secondary osteonecrosis +C0477687|T046|AB|M87.3|ICD10CM|Other secondary osteonecrosis|Other secondary osteonecrosis +C0477687|T046|PT|M87.3|ICD10|Other secondary osteonecrosis|Other secondary osteonecrosis +C2902080|T046|AB|M87.30|ICD10CM|Other secondary osteonecrosis, unspecified bone|Other secondary osteonecrosis, unspecified bone +C2902080|T046|PT|M87.30|ICD10CM|Other secondary osteonecrosis, unspecified bone|Other secondary osteonecrosis, unspecified bone +C2902081|T046|AB|M87.31|ICD10CM|Other secondary osteonecrosis, shoulder|Other secondary osteonecrosis, shoulder +C2902081|T046|HT|M87.31|ICD10CM|Other secondary osteonecrosis, shoulder|Other secondary osteonecrosis, shoulder +C2902082|T046|AB|M87.311|ICD10CM|Other secondary osteonecrosis, right shoulder|Other secondary osteonecrosis, right shoulder +C2902082|T046|PT|M87.311|ICD10CM|Other secondary osteonecrosis, right shoulder|Other secondary osteonecrosis, right shoulder +C2902083|T046|AB|M87.312|ICD10CM|Other secondary osteonecrosis, left shoulder|Other secondary osteonecrosis, left shoulder +C2902083|T046|PT|M87.312|ICD10CM|Other secondary osteonecrosis, left shoulder|Other secondary osteonecrosis, left shoulder +C2902081|T046|AB|M87.319|ICD10CM|Other secondary osteonecrosis, unspecified shoulder|Other secondary osteonecrosis, unspecified shoulder +C2902081|T046|PT|M87.319|ICD10CM|Other secondary osteonecrosis, unspecified shoulder|Other secondary osteonecrosis, unspecified shoulder +C2902086|T046|AB|M87.32|ICD10CM|Other secondary osteonecrosis, humerus|Other secondary osteonecrosis, humerus +C2902086|T046|HT|M87.32|ICD10CM|Other secondary osteonecrosis, humerus|Other secondary osteonecrosis, humerus +C2902084|T046|AB|M87.321|ICD10CM|Other secondary osteonecrosis, right humerus|Other secondary osteonecrosis, right humerus +C2902084|T046|PT|M87.321|ICD10CM|Other secondary osteonecrosis, right humerus|Other secondary osteonecrosis, right humerus +C2902085|T046|AB|M87.322|ICD10CM|Other secondary osteonecrosis, left humerus|Other secondary osteonecrosis, left humerus +C2902085|T046|PT|M87.322|ICD10CM|Other secondary osteonecrosis, left humerus|Other secondary osteonecrosis, left humerus +C2902086|T046|AB|M87.329|ICD10CM|Other secondary osteonecrosis, unspecified humerus|Other secondary osteonecrosis, unspecified humerus +C2902086|T046|PT|M87.329|ICD10CM|Other secondary osteonecrosis, unspecified humerus|Other secondary osteonecrosis, unspecified humerus +C2902087|T046|AB|M87.33|ICD10CM|Other secondary osteonecrosis of radius, ulna and carpus|Other secondary osteonecrosis of radius, ulna and carpus +C2902087|T046|HT|M87.33|ICD10CM|Other secondary osteonecrosis of radius, ulna and carpus|Other secondary osteonecrosis of radius, ulna and carpus +C2902088|T046|AB|M87.331|ICD10CM|Other secondary osteonecrosis of right radius|Other secondary osteonecrosis of right radius +C2902088|T046|PT|M87.331|ICD10CM|Other secondary osteonecrosis of right radius|Other secondary osteonecrosis of right radius +C2902089|T046|AB|M87.332|ICD10CM|Other secondary osteonecrosis of left radius|Other secondary osteonecrosis of left radius +C2902089|T046|PT|M87.332|ICD10CM|Other secondary osteonecrosis of left radius|Other secondary osteonecrosis of left radius +C2902090|T046|AB|M87.333|ICD10CM|Other secondary osteonecrosis of unspecified radius|Other secondary osteonecrosis of unspecified radius +C2902090|T046|PT|M87.333|ICD10CM|Other secondary osteonecrosis of unspecified radius|Other secondary osteonecrosis of unspecified radius +C2902091|T046|AB|M87.334|ICD10CM|Other secondary osteonecrosis of right ulna|Other secondary osteonecrosis of right ulna +C2902091|T046|PT|M87.334|ICD10CM|Other secondary osteonecrosis of right ulna|Other secondary osteonecrosis of right ulna +C2902092|T046|AB|M87.335|ICD10CM|Other secondary osteonecrosis of left ulna|Other secondary osteonecrosis of left ulna +C2902092|T046|PT|M87.335|ICD10CM|Other secondary osteonecrosis of left ulna|Other secondary osteonecrosis of left ulna +C2902093|T046|AB|M87.336|ICD10CM|Other secondary osteonecrosis of unspecified ulna|Other secondary osteonecrosis of unspecified ulna +C2902093|T046|PT|M87.336|ICD10CM|Other secondary osteonecrosis of unspecified ulna|Other secondary osteonecrosis of unspecified ulna +C2902094|T046|AB|M87.337|ICD10CM|Other secondary osteonecrosis of right carpus|Other secondary osteonecrosis of right carpus +C2902094|T046|PT|M87.337|ICD10CM|Other secondary osteonecrosis of right carpus|Other secondary osteonecrosis of right carpus +C2902095|T046|AB|M87.338|ICD10CM|Other secondary osteonecrosis of left carpus|Other secondary osteonecrosis of left carpus +C2902095|T046|PT|M87.338|ICD10CM|Other secondary osteonecrosis of left carpus|Other secondary osteonecrosis of left carpus +C2902096|T046|AB|M87.339|ICD10CM|Other secondary osteonecrosis of unspecified carpus|Other secondary osteonecrosis of unspecified carpus +C2902096|T046|PT|M87.339|ICD10CM|Other secondary osteonecrosis of unspecified carpus|Other secondary osteonecrosis of unspecified carpus +C2902097|T046|AB|M87.34|ICD10CM|Other secondary osteonecrosis, hand and fingers|Other secondary osteonecrosis, hand and fingers +C2902097|T046|HT|M87.34|ICD10CM|Other secondary osteonecrosis, hand and fingers|Other secondary osteonecrosis, hand and fingers +C2902098|T046|AB|M87.341|ICD10CM|Other secondary osteonecrosis, right hand|Other secondary osteonecrosis, right hand +C2902098|T046|PT|M87.341|ICD10CM|Other secondary osteonecrosis, right hand|Other secondary osteonecrosis, right hand +C2902099|T046|AB|M87.342|ICD10CM|Other secondary osteonecrosis, left hand|Other secondary osteonecrosis, left hand +C2902099|T046|PT|M87.342|ICD10CM|Other secondary osteonecrosis, left hand|Other secondary osteonecrosis, left hand +C2902100|T046|AB|M87.343|ICD10CM|Other secondary osteonecrosis, unspecified hand|Other secondary osteonecrosis, unspecified hand +C2902100|T046|PT|M87.343|ICD10CM|Other secondary osteonecrosis, unspecified hand|Other secondary osteonecrosis, unspecified hand +C2902101|T046|AB|M87.344|ICD10CM|Other secondary osteonecrosis, right finger(s)|Other secondary osteonecrosis, right finger(s) +C2902101|T046|PT|M87.344|ICD10CM|Other secondary osteonecrosis, right finger(s)|Other secondary osteonecrosis, right finger(s) +C2902102|T046|AB|M87.345|ICD10CM|Other secondary osteonecrosis, left finger(s)|Other secondary osteonecrosis, left finger(s) +C2902102|T046|PT|M87.345|ICD10CM|Other secondary osteonecrosis, left finger(s)|Other secondary osteonecrosis, left finger(s) +C2902103|T046|AB|M87.346|ICD10CM|Other secondary osteonecrosis, unspecified finger(s)|Other secondary osteonecrosis, unspecified finger(s) +C2902103|T046|PT|M87.346|ICD10CM|Other secondary osteonecrosis, unspecified finger(s)|Other secondary osteonecrosis, unspecified finger(s) +C2902104|T046|AB|M87.35|ICD10CM|Other secondary osteonecrosis, pelvis and femur|Other secondary osteonecrosis, pelvis and femur +C2902104|T046|HT|M87.35|ICD10CM|Other secondary osteonecrosis, pelvis and femur|Other secondary osteonecrosis, pelvis and femur +C2902105|T046|AB|M87.350|ICD10CM|Other secondary osteonecrosis, pelvis|Other secondary osteonecrosis, pelvis +C2902105|T046|PT|M87.350|ICD10CM|Other secondary osteonecrosis, pelvis|Other secondary osteonecrosis, pelvis +C2902106|T046|AB|M87.351|ICD10CM|Other secondary osteonecrosis, right femur|Other secondary osteonecrosis, right femur +C2902106|T046|PT|M87.351|ICD10CM|Other secondary osteonecrosis, right femur|Other secondary osteonecrosis, right femur +C2902107|T046|AB|M87.352|ICD10CM|Other secondary osteonecrosis, left femur|Other secondary osteonecrosis, left femur +C2902107|T046|PT|M87.352|ICD10CM|Other secondary osteonecrosis, left femur|Other secondary osteonecrosis, left femur +C2902108|T046|AB|M87.353|ICD10CM|Other secondary osteonecrosis, unspecified femur|Other secondary osteonecrosis, unspecified femur +C2902108|T046|PT|M87.353|ICD10CM|Other secondary osteonecrosis, unspecified femur|Other secondary osteonecrosis, unspecified femur +C2902109|T046|AB|M87.36|ICD10CM|Other secondary osteonecrosis, tibia and fibula|Other secondary osteonecrosis, tibia and fibula +C2902109|T046|HT|M87.36|ICD10CM|Other secondary osteonecrosis, tibia and fibula|Other secondary osteonecrosis, tibia and fibula +C2902110|T046|AB|M87.361|ICD10CM|Other secondary osteonecrosis, right tibia|Other secondary osteonecrosis, right tibia +C2902110|T046|PT|M87.361|ICD10CM|Other secondary osteonecrosis, right tibia|Other secondary osteonecrosis, right tibia +C2902111|T046|AB|M87.362|ICD10CM|Other secondary osteonecrosis, left tibia|Other secondary osteonecrosis, left tibia +C2902111|T046|PT|M87.362|ICD10CM|Other secondary osteonecrosis, left tibia|Other secondary osteonecrosis, left tibia +C2902112|T046|AB|M87.363|ICD10CM|Other secondary osteonecrosis, unspecified tibia|Other secondary osteonecrosis, unspecified tibia +C2902112|T046|PT|M87.363|ICD10CM|Other secondary osteonecrosis, unspecified tibia|Other secondary osteonecrosis, unspecified tibia +C2902113|T046|AB|M87.364|ICD10CM|Other secondary osteonecrosis, right fibula|Other secondary osteonecrosis, right fibula +C2902113|T046|PT|M87.364|ICD10CM|Other secondary osteonecrosis, right fibula|Other secondary osteonecrosis, right fibula +C2902114|T046|AB|M87.365|ICD10CM|Other secondary osteonecrosis, left fibula|Other secondary osteonecrosis, left fibula +C2902114|T046|PT|M87.365|ICD10CM|Other secondary osteonecrosis, left fibula|Other secondary osteonecrosis, left fibula +C2902115|T046|AB|M87.366|ICD10CM|Other secondary osteonecrosis, unspecified fibula|Other secondary osteonecrosis, unspecified fibula +C2902115|T046|PT|M87.366|ICD10CM|Other secondary osteonecrosis, unspecified fibula|Other secondary osteonecrosis, unspecified fibula +C0840046|T046|HT|M87.37|ICD10CM|Other secondary osteonecrosis, ankle and foot|Other secondary osteonecrosis, ankle and foot +C0840046|T046|AB|M87.37|ICD10CM|Other secondary osteonecrosis, ankle and foot|Other secondary osteonecrosis, ankle and foot +C2902116|T046|AB|M87.371|ICD10CM|Other secondary osteonecrosis, right ankle|Other secondary osteonecrosis, right ankle +C2902116|T046|PT|M87.371|ICD10CM|Other secondary osteonecrosis, right ankle|Other secondary osteonecrosis, right ankle +C2902117|T046|AB|M87.372|ICD10CM|Other secondary osteonecrosis, left ankle|Other secondary osteonecrosis, left ankle +C2902117|T046|PT|M87.372|ICD10CM|Other secondary osteonecrosis, left ankle|Other secondary osteonecrosis, left ankle +C2902118|T046|AB|M87.373|ICD10CM|Other secondary osteonecrosis, unspecified ankle|Other secondary osteonecrosis, unspecified ankle +C2902118|T046|PT|M87.373|ICD10CM|Other secondary osteonecrosis, unspecified ankle|Other secondary osteonecrosis, unspecified ankle +C2902119|T046|AB|M87.374|ICD10CM|Other secondary osteonecrosis, right foot|Other secondary osteonecrosis, right foot +C2902119|T046|PT|M87.374|ICD10CM|Other secondary osteonecrosis, right foot|Other secondary osteonecrosis, right foot +C2902120|T046|AB|M87.375|ICD10CM|Other secondary osteonecrosis, left foot|Other secondary osteonecrosis, left foot +C2902120|T046|PT|M87.375|ICD10CM|Other secondary osteonecrosis, left foot|Other secondary osteonecrosis, left foot +C2902121|T046|AB|M87.376|ICD10CM|Other secondary osteonecrosis, unspecified foot|Other secondary osteonecrosis, unspecified foot +C2902121|T046|PT|M87.376|ICD10CM|Other secondary osteonecrosis, unspecified foot|Other secondary osteonecrosis, unspecified foot +C2902122|T046|AB|M87.377|ICD10CM|Other secondary osteonecrosis, right toe(s)|Other secondary osteonecrosis, right toe(s) +C2902122|T046|PT|M87.377|ICD10CM|Other secondary osteonecrosis, right toe(s)|Other secondary osteonecrosis, right toe(s) +C2902123|T046|AB|M87.378|ICD10CM|Other secondary osteonecrosis, left toe(s)|Other secondary osteonecrosis, left toe(s) +C2902123|T046|PT|M87.378|ICD10CM|Other secondary osteonecrosis, left toe(s)|Other secondary osteonecrosis, left toe(s) +C2902124|T046|AB|M87.379|ICD10CM|Other secondary osteonecrosis, unspecified toe(s)|Other secondary osteonecrosis, unspecified toe(s) +C2902124|T046|PT|M87.379|ICD10CM|Other secondary osteonecrosis, unspecified toe(s)|Other secondary osteonecrosis, unspecified toe(s) +C0840047|T046|PT|M87.38|ICD10CM|Other secondary osteonecrosis, other site|Other secondary osteonecrosis, other site +C0840047|T046|AB|M87.38|ICD10CM|Other secondary osteonecrosis, other site|Other secondary osteonecrosis, other site +C0840039|T046|PT|M87.39|ICD10CM|Other secondary osteonecrosis, multiple sites|Other secondary osteonecrosis, multiple sites +C0840039|T046|AB|M87.39|ICD10CM|Other secondary osteonecrosis, multiple sites|Other secondary osteonecrosis, multiple sites +C0477688|T046|PT|M87.8|ICD10|Other osteonecrosis|Other osteonecrosis +C0477688|T046|HT|M87.8|ICD10CM|Other osteonecrosis|Other osteonecrosis +C0477688|T046|AB|M87.8|ICD10CM|Other osteonecrosis|Other osteonecrosis +C2902125|T046|AB|M87.80|ICD10CM|Other osteonecrosis, unspecified bone|Other osteonecrosis, unspecified bone +C2902125|T046|PT|M87.80|ICD10CM|Other osteonecrosis, unspecified bone|Other osteonecrosis, unspecified bone +C2902126|T046|AB|M87.81|ICD10CM|Other osteonecrosis, shoulder|Other osteonecrosis, shoulder +C2902126|T046|HT|M87.81|ICD10CM|Other osteonecrosis, shoulder|Other osteonecrosis, shoulder +C2902127|T046|AB|M87.811|ICD10CM|Other osteonecrosis, right shoulder|Other osteonecrosis, right shoulder +C2902127|T046|PT|M87.811|ICD10CM|Other osteonecrosis, right shoulder|Other osteonecrosis, right shoulder +C2902128|T046|AB|M87.812|ICD10CM|Other osteonecrosis, left shoulder|Other osteonecrosis, left shoulder +C2902128|T046|PT|M87.812|ICD10CM|Other osteonecrosis, left shoulder|Other osteonecrosis, left shoulder +C2902126|T046|AB|M87.819|ICD10CM|Other osteonecrosis, unspecified shoulder|Other osteonecrosis, unspecified shoulder +C2902126|T046|PT|M87.819|ICD10CM|Other osteonecrosis, unspecified shoulder|Other osteonecrosis, unspecified shoulder +C2902131|T046|AB|M87.82|ICD10CM|Other osteonecrosis, humerus|Other osteonecrosis, humerus +C2902131|T046|HT|M87.82|ICD10CM|Other osteonecrosis, humerus|Other osteonecrosis, humerus +C2902129|T046|AB|M87.821|ICD10CM|Other osteonecrosis, right humerus|Other osteonecrosis, right humerus +C2902129|T046|PT|M87.821|ICD10CM|Other osteonecrosis, right humerus|Other osteonecrosis, right humerus +C2902130|T046|AB|M87.822|ICD10CM|Other osteonecrosis, left humerus|Other osteonecrosis, left humerus +C2902130|T046|PT|M87.822|ICD10CM|Other osteonecrosis, left humerus|Other osteonecrosis, left humerus +C2902131|T046|AB|M87.829|ICD10CM|Other osteonecrosis, unspecified humerus|Other osteonecrosis, unspecified humerus +C2902131|T046|PT|M87.829|ICD10CM|Other osteonecrosis, unspecified humerus|Other osteonecrosis, unspecified humerus +C2902132|T046|AB|M87.83|ICD10CM|Other osteonecrosis of radius, ulna and carpus|Other osteonecrosis of radius, ulna and carpus +C2902132|T046|HT|M87.83|ICD10CM|Other osteonecrosis of radius, ulna and carpus|Other osteonecrosis of radius, ulna and carpus +C2902133|T046|AB|M87.831|ICD10CM|Other osteonecrosis of right radius|Other osteonecrosis of right radius +C2902133|T046|PT|M87.831|ICD10CM|Other osteonecrosis of right radius|Other osteonecrosis of right radius +C2902134|T046|AB|M87.832|ICD10CM|Other osteonecrosis of left radius|Other osteonecrosis of left radius +C2902134|T046|PT|M87.832|ICD10CM|Other osteonecrosis of left radius|Other osteonecrosis of left radius +C2902135|T046|AB|M87.833|ICD10CM|Other osteonecrosis of unspecified radius|Other osteonecrosis of unspecified radius +C2902135|T046|PT|M87.833|ICD10CM|Other osteonecrosis of unspecified radius|Other osteonecrosis of unspecified radius +C2902136|T046|AB|M87.834|ICD10CM|Other osteonecrosis of right ulna|Other osteonecrosis of right ulna +C2902136|T046|PT|M87.834|ICD10CM|Other osteonecrosis of right ulna|Other osteonecrosis of right ulna +C2902137|T046|AB|M87.835|ICD10CM|Other osteonecrosis of left ulna|Other osteonecrosis of left ulna +C2902137|T046|PT|M87.835|ICD10CM|Other osteonecrosis of left ulna|Other osteonecrosis of left ulna +C2902138|T046|AB|M87.836|ICD10CM|Other osteonecrosis of unspecified ulna|Other osteonecrosis of unspecified ulna +C2902138|T046|PT|M87.836|ICD10CM|Other osteonecrosis of unspecified ulna|Other osteonecrosis of unspecified ulna +C2902139|T046|AB|M87.837|ICD10CM|Other osteonecrosis of right carpus|Other osteonecrosis of right carpus +C2902139|T046|PT|M87.837|ICD10CM|Other osteonecrosis of right carpus|Other osteonecrosis of right carpus +C2902140|T046|AB|M87.838|ICD10CM|Other osteonecrosis of left carpus|Other osteonecrosis of left carpus +C2902140|T046|PT|M87.838|ICD10CM|Other osteonecrosis of left carpus|Other osteonecrosis of left carpus +C2902141|T046|AB|M87.839|ICD10CM|Other osteonecrosis of unspecified carpus|Other osteonecrosis of unspecified carpus +C2902141|T046|PT|M87.839|ICD10CM|Other osteonecrosis of unspecified carpus|Other osteonecrosis of unspecified carpus +C2902142|T046|AB|M87.84|ICD10CM|Other osteonecrosis, hand and fingers|Other osteonecrosis, hand and fingers +C2902142|T046|HT|M87.84|ICD10CM|Other osteonecrosis, hand and fingers|Other osteonecrosis, hand and fingers +C2902143|T046|AB|M87.841|ICD10CM|Other osteonecrosis, right hand|Other osteonecrosis, right hand +C2902143|T046|PT|M87.841|ICD10CM|Other osteonecrosis, right hand|Other osteonecrosis, right hand +C2902144|T046|AB|M87.842|ICD10CM|Other osteonecrosis, left hand|Other osteonecrosis, left hand +C2902144|T046|PT|M87.842|ICD10CM|Other osteonecrosis, left hand|Other osteonecrosis, left hand +C2902145|T046|AB|M87.843|ICD10CM|Other osteonecrosis, unspecified hand|Other osteonecrosis, unspecified hand +C2902145|T046|PT|M87.843|ICD10CM|Other osteonecrosis, unspecified hand|Other osteonecrosis, unspecified hand +C2902146|T046|AB|M87.844|ICD10CM|Other osteonecrosis, right finger(s)|Other osteonecrosis, right finger(s) +C2902146|T046|PT|M87.844|ICD10CM|Other osteonecrosis, right finger(s)|Other osteonecrosis, right finger(s) +C2902147|T046|AB|M87.845|ICD10CM|Other osteonecrosis, left finger(s)|Other osteonecrosis, left finger(s) +C2902147|T046|PT|M87.845|ICD10CM|Other osteonecrosis, left finger(s)|Other osteonecrosis, left finger(s) +C2902148|T046|AB|M87.849|ICD10CM|Other osteonecrosis, unspecified finger(s)|Other osteonecrosis, unspecified finger(s) +C2902148|T046|PT|M87.849|ICD10CM|Other osteonecrosis, unspecified finger(s)|Other osteonecrosis, unspecified finger(s) +C2902149|T046|AB|M87.85|ICD10CM|Other osteonecrosis, pelvis and femur|Other osteonecrosis, pelvis and femur +C2902149|T046|HT|M87.85|ICD10CM|Other osteonecrosis, pelvis and femur|Other osteonecrosis, pelvis and femur +C2902150|T046|AB|M87.850|ICD10CM|Other osteonecrosis, pelvis|Other osteonecrosis, pelvis +C2902150|T046|PT|M87.850|ICD10CM|Other osteonecrosis, pelvis|Other osteonecrosis, pelvis +C2902151|T046|AB|M87.851|ICD10CM|Other osteonecrosis, right femur|Other osteonecrosis, right femur +C2902151|T046|PT|M87.851|ICD10CM|Other osteonecrosis, right femur|Other osteonecrosis, right femur +C2902152|T046|AB|M87.852|ICD10CM|Other osteonecrosis, left femur|Other osteonecrosis, left femur +C2902152|T046|PT|M87.852|ICD10CM|Other osteonecrosis, left femur|Other osteonecrosis, left femur +C2902153|T046|AB|M87.859|ICD10CM|Other osteonecrosis, unspecified femur|Other osteonecrosis, unspecified femur +C2902153|T046|PT|M87.859|ICD10CM|Other osteonecrosis, unspecified femur|Other osteonecrosis, unspecified femur +C2902154|T046|AB|M87.86|ICD10CM|Other osteonecrosis, tibia and fibula|Other osteonecrosis, tibia and fibula +C2902154|T046|HT|M87.86|ICD10CM|Other osteonecrosis, tibia and fibula|Other osteonecrosis, tibia and fibula +C2902155|T046|AB|M87.861|ICD10CM|Other osteonecrosis, right tibia|Other osteonecrosis, right tibia +C2902155|T046|PT|M87.861|ICD10CM|Other osteonecrosis, right tibia|Other osteonecrosis, right tibia +C2902156|T046|AB|M87.862|ICD10CM|Other osteonecrosis, left tibia|Other osteonecrosis, left tibia +C2902156|T046|PT|M87.862|ICD10CM|Other osteonecrosis, left tibia|Other osteonecrosis, left tibia +C2902157|T046|AB|M87.863|ICD10CM|Other osteonecrosis, unspecified tibia|Other osteonecrosis, unspecified tibia +C2902157|T046|PT|M87.863|ICD10CM|Other osteonecrosis, unspecified tibia|Other osteonecrosis, unspecified tibia +C2902158|T046|AB|M87.864|ICD10CM|Other osteonecrosis, right fibula|Other osteonecrosis, right fibula +C2902158|T046|PT|M87.864|ICD10CM|Other osteonecrosis, right fibula|Other osteonecrosis, right fibula +C2902159|T046|AB|M87.865|ICD10CM|Other osteonecrosis, left fibula|Other osteonecrosis, left fibula +C2902159|T046|PT|M87.865|ICD10CM|Other osteonecrosis, left fibula|Other osteonecrosis, left fibula +C2902160|T046|AB|M87.869|ICD10CM|Other osteonecrosis, unspecified fibula|Other osteonecrosis, unspecified fibula +C2902160|T046|PT|M87.869|ICD10CM|Other osteonecrosis, unspecified fibula|Other osteonecrosis, unspecified fibula +C2902161|T046|AB|M87.87|ICD10CM|Other osteonecrosis, ankle, foot and toes|Other osteonecrosis, ankle, foot and toes +C2902161|T046|HT|M87.87|ICD10CM|Other osteonecrosis, ankle, foot and toes|Other osteonecrosis, ankle, foot and toes +C2902162|T046|AB|M87.871|ICD10CM|Other osteonecrosis, right ankle|Other osteonecrosis, right ankle +C2902162|T046|PT|M87.871|ICD10CM|Other osteonecrosis, right ankle|Other osteonecrosis, right ankle +C2902163|T046|AB|M87.872|ICD10CM|Other osteonecrosis, left ankle|Other osteonecrosis, left ankle +C2902163|T046|PT|M87.872|ICD10CM|Other osteonecrosis, left ankle|Other osteonecrosis, left ankle +C2902164|T046|AB|M87.873|ICD10CM|Other osteonecrosis, unspecified ankle|Other osteonecrosis, unspecified ankle +C2902164|T046|PT|M87.873|ICD10CM|Other osteonecrosis, unspecified ankle|Other osteonecrosis, unspecified ankle +C2902165|T046|AB|M87.874|ICD10CM|Other osteonecrosis, right foot|Other osteonecrosis, right foot +C2902165|T046|PT|M87.874|ICD10CM|Other osteonecrosis, right foot|Other osteonecrosis, right foot +C2902166|T046|AB|M87.875|ICD10CM|Other osteonecrosis, left foot|Other osteonecrosis, left foot +C2902166|T046|PT|M87.875|ICD10CM|Other osteonecrosis, left foot|Other osteonecrosis, left foot +C2902167|T046|AB|M87.876|ICD10CM|Other osteonecrosis, unspecified foot|Other osteonecrosis, unspecified foot +C2902167|T046|PT|M87.876|ICD10CM|Other osteonecrosis, unspecified foot|Other osteonecrosis, unspecified foot +C2902168|T046|AB|M87.877|ICD10CM|Other osteonecrosis, right toe(s)|Other osteonecrosis, right toe(s) +C2902168|T046|PT|M87.877|ICD10CM|Other osteonecrosis, right toe(s)|Other osteonecrosis, right toe(s) +C2902169|T046|AB|M87.878|ICD10CM|Other osteonecrosis, left toe(s)|Other osteonecrosis, left toe(s) +C2902169|T046|PT|M87.878|ICD10CM|Other osteonecrosis, left toe(s)|Other osteonecrosis, left toe(s) +C2902170|T046|AB|M87.879|ICD10CM|Other osteonecrosis, unspecified toe(s)|Other osteonecrosis, unspecified toe(s) +C2902170|T046|PT|M87.879|ICD10CM|Other osteonecrosis, unspecified toe(s)|Other osteonecrosis, unspecified toe(s) +C0840057|T046|PT|M87.88|ICD10CM|Other osteonecrosis, other site|Other osteonecrosis, other site +C0840057|T046|AB|M87.88|ICD10CM|Other osteonecrosis, other site|Other osteonecrosis, other site +C0840049|T046|PT|M87.89|ICD10CM|Other osteonecrosis, multiple sites|Other osteonecrosis, multiple sites +C0840049|T046|AB|M87.89|ICD10CM|Other osteonecrosis, multiple sites|Other osteonecrosis, multiple sites +C0029445|T046|ET|M87.9|ICD10CM|Necrosis of bone NOS|Necrosis of bone NOS +C0029445|T046|PT|M87.9|ICD10CM|Osteonecrosis, unspecified|Osteonecrosis, unspecified +C0029445|T046|AB|M87.9|ICD10CM|Osteonecrosis, unspecified|Osteonecrosis, unspecified +C0029445|T046|PT|M87.9|ICD10|Osteonecrosis, unspecified|Osteonecrosis, unspecified +C0029401|T047|AB|M88|ICD10CM|Osteitis deformans [Paget's disease of bone]|Osteitis deformans [Paget's disease of bone] +C0029401|T047|HT|M88|ICD10CM|Osteitis deformans [Paget's disease of bone]|Osteitis deformans [Paget's disease of bone] +C0029401|T047|HT|M88|ICD10|Paget's disease of bone [osteitis deformans]|Paget's disease of bone [osteitis deformans] +C0410474|T047|PT|M88.0|ICD10CM|Osteitis deformans of skull|Osteitis deformans of skull +C0410474|T047|AB|M88.0|ICD10CM|Osteitis deformans of skull|Osteitis deformans of skull +C0410474|T047|PT|M88.0|ICD10|Paget's disease of skull|Paget's disease of skull +C2902171|T047|AB|M88.1|ICD10CM|Osteitis deformans of vertebrae|Osteitis deformans of vertebrae +C2902171|T047|PT|M88.1|ICD10CM|Osteitis deformans of vertebrae|Osteitis deformans of vertebrae +C2902172|T047|HT|M88.8|ICD10CM|Osteitis deformans of other bones|Osteitis deformans of other bones +C2902172|T047|AB|M88.8|ICD10CM|Osteitis deformans of other bones|Osteitis deformans of other bones +C0495005|T047|PT|M88.8|ICD10|Paget's disease of other bones|Paget's disease of other bones +C2902175|T047|AB|M88.81|ICD10CM|Osteitis deformans of shoulder|Osteitis deformans of shoulder +C2902175|T047|HT|M88.81|ICD10CM|Osteitis deformans of shoulder|Osteitis deformans of shoulder +C2902173|T047|AB|M88.811|ICD10CM|Osteitis deformans of right shoulder|Osteitis deformans of right shoulder +C2902173|T047|PT|M88.811|ICD10CM|Osteitis deformans of right shoulder|Osteitis deformans of right shoulder +C2902174|T047|AB|M88.812|ICD10CM|Osteitis deformans of left shoulder|Osteitis deformans of left shoulder +C2902174|T047|PT|M88.812|ICD10CM|Osteitis deformans of left shoulder|Osteitis deformans of left shoulder +C2902175|T047|AB|M88.819|ICD10CM|Osteitis deformans of unspecified shoulder|Osteitis deformans of unspecified shoulder +C2902175|T047|PT|M88.819|ICD10CM|Osteitis deformans of unspecified shoulder|Osteitis deformans of unspecified shoulder +C2902176|T047|AB|M88.82|ICD10CM|Osteitis deformans of upper arm|Osteitis deformans of upper arm +C2902176|T047|HT|M88.82|ICD10CM|Osteitis deformans of upper arm|Osteitis deformans of upper arm +C2902177|T047|AB|M88.821|ICD10CM|Osteitis deformans of right upper arm|Osteitis deformans of right upper arm +C2902177|T047|PT|M88.821|ICD10CM|Osteitis deformans of right upper arm|Osteitis deformans of right upper arm +C2902178|T047|AB|M88.822|ICD10CM|Osteitis deformans of left upper arm|Osteitis deformans of left upper arm +C2902178|T047|PT|M88.822|ICD10CM|Osteitis deformans of left upper arm|Osteitis deformans of left upper arm +C2902179|T047|AB|M88.829|ICD10CM|Osteitis deformans of unspecified upper arm|Osteitis deformans of unspecified upper arm +C2902179|T047|PT|M88.829|ICD10CM|Osteitis deformans of unspecified upper arm|Osteitis deformans of unspecified upper arm +C2902180|T047|AB|M88.83|ICD10CM|Osteitis deformans of forearm|Osteitis deformans of forearm +C2902180|T047|HT|M88.83|ICD10CM|Osteitis deformans of forearm|Osteitis deformans of forearm +C2902181|T047|AB|M88.831|ICD10CM|Osteitis deformans of right forearm|Osteitis deformans of right forearm +C2902181|T047|PT|M88.831|ICD10CM|Osteitis deformans of right forearm|Osteitis deformans of right forearm +C2902182|T047|AB|M88.832|ICD10CM|Osteitis deformans of left forearm|Osteitis deformans of left forearm +C2902182|T047|PT|M88.832|ICD10CM|Osteitis deformans of left forearm|Osteitis deformans of left forearm +C2902183|T047|AB|M88.839|ICD10CM|Osteitis deformans of unspecified forearm|Osteitis deformans of unspecified forearm +C2902183|T047|PT|M88.839|ICD10CM|Osteitis deformans of unspecified forearm|Osteitis deformans of unspecified forearm +C2902184|T047|AB|M88.84|ICD10CM|Osteitis deformans of hand|Osteitis deformans of hand +C2902184|T047|HT|M88.84|ICD10CM|Osteitis deformans of hand|Osteitis deformans of hand +C2902185|T047|AB|M88.841|ICD10CM|Osteitis deformans of right hand|Osteitis deformans of right hand +C2902185|T047|PT|M88.841|ICD10CM|Osteitis deformans of right hand|Osteitis deformans of right hand +C2902186|T047|AB|M88.842|ICD10CM|Osteitis deformans of left hand|Osteitis deformans of left hand +C2902186|T047|PT|M88.842|ICD10CM|Osteitis deformans of left hand|Osteitis deformans of left hand +C2902187|T047|AB|M88.849|ICD10CM|Osteitis deformans of unspecified hand|Osteitis deformans of unspecified hand +C2902187|T047|PT|M88.849|ICD10CM|Osteitis deformans of unspecified hand|Osteitis deformans of unspecified hand +C2902190|T047|AB|M88.85|ICD10CM|Osteitis deformans of thigh|Osteitis deformans of thigh +C2902190|T047|HT|M88.85|ICD10CM|Osteitis deformans of thigh|Osteitis deformans of thigh +C2902188|T047|AB|M88.851|ICD10CM|Osteitis deformans of right thigh|Osteitis deformans of right thigh +C2902188|T047|PT|M88.851|ICD10CM|Osteitis deformans of right thigh|Osteitis deformans of right thigh +C2902189|T047|AB|M88.852|ICD10CM|Osteitis deformans of left thigh|Osteitis deformans of left thigh +C2902189|T047|PT|M88.852|ICD10CM|Osteitis deformans of left thigh|Osteitis deformans of left thigh +C2902190|T047|AB|M88.859|ICD10CM|Osteitis deformans of unspecified thigh|Osteitis deformans of unspecified thigh +C2902190|T047|PT|M88.859|ICD10CM|Osteitis deformans of unspecified thigh|Osteitis deformans of unspecified thigh +C2902193|T047|AB|M88.86|ICD10CM|Osteitis deformans of lower leg|Osteitis deformans of lower leg +C2902193|T047|HT|M88.86|ICD10CM|Osteitis deformans of lower leg|Osteitis deformans of lower leg +C2902191|T047|AB|M88.861|ICD10CM|Osteitis deformans of right lower leg|Osteitis deformans of right lower leg +C2902191|T047|PT|M88.861|ICD10CM|Osteitis deformans of right lower leg|Osteitis deformans of right lower leg +C2902192|T047|AB|M88.862|ICD10CM|Osteitis deformans of left lower leg|Osteitis deformans of left lower leg +C2902192|T047|PT|M88.862|ICD10CM|Osteitis deformans of left lower leg|Osteitis deformans of left lower leg +C2902193|T047|AB|M88.869|ICD10CM|Osteitis deformans of unspecified lower leg|Osteitis deformans of unspecified lower leg +C2902193|T047|PT|M88.869|ICD10CM|Osteitis deformans of unspecified lower leg|Osteitis deformans of unspecified lower leg +C2902194|T047|AB|M88.87|ICD10CM|Osteitis deformans of ankle and foot|Osteitis deformans of ankle and foot +C2902194|T047|HT|M88.87|ICD10CM|Osteitis deformans of ankle and foot|Osteitis deformans of ankle and foot +C2902195|T047|AB|M88.871|ICD10CM|Osteitis deformans of right ankle and foot|Osteitis deformans of right ankle and foot +C2902195|T047|PT|M88.871|ICD10CM|Osteitis deformans of right ankle and foot|Osteitis deformans of right ankle and foot +C2902196|T047|AB|M88.872|ICD10CM|Osteitis deformans of left ankle and foot|Osteitis deformans of left ankle and foot +C2902196|T047|PT|M88.872|ICD10CM|Osteitis deformans of left ankle and foot|Osteitis deformans of left ankle and foot +C2902197|T047|AB|M88.879|ICD10CM|Osteitis deformans of unspecified ankle and foot|Osteitis deformans of unspecified ankle and foot +C2902197|T047|PT|M88.879|ICD10CM|Osteitis deformans of unspecified ankle and foot|Osteitis deformans of unspecified ankle and foot +C2902172|T047|AB|M88.88|ICD10CM|Osteitis deformans of other bones|Osteitis deformans of other bones +C2902172|T047|PT|M88.88|ICD10CM|Osteitis deformans of other bones|Osteitis deformans of other bones +C2902198|T047|AB|M88.89|ICD10CM|Osteitis deformans of multiple sites|Osteitis deformans of multiple sites +C2902198|T047|PT|M88.89|ICD10CM|Osteitis deformans of multiple sites|Osteitis deformans of multiple sites +C2902199|T047|AB|M88.9|ICD10CM|Osteitis deformans of unspecified bone|Osteitis deformans of unspecified bone +C2902199|T047|PT|M88.9|ICD10CM|Osteitis deformans of unspecified bone|Osteitis deformans of unspecified bone +C0029401|T047|PT|M88.9|ICD10|Paget's disease of bone, unspecified|Paget's disease of bone, unspecified +C0495006|T047|HT|M89|ICD10|Other disorders of bone|Other disorders of bone +C0495006|T047|AB|M89|ICD10CM|Other disorders of bone|Other disorders of bone +C0495006|T047|HT|M89|ICD10CM|Other disorders of bone|Other disorders of bone +C0205930|T047|PT|M89.0|ICD10|Algoneurodystrophy|Algoneurodystrophy +C0205930|T047|HT|M89.0|ICD10CM|Algoneurodystrophy|Algoneurodystrophy +C0205930|T047|AB|M89.0|ICD10CM|Algoneurodystrophy|Algoneurodystrophy +C4040007|T047|ET|M89.0|ICD10CM|Shoulder-hand syndrome|Shoulder-hand syndrome +C0034931|T047|ET|M89.0|ICD10CM|Sudeck's atrophy|Sudeck's atrophy +C0205930|T047|AB|M89.00|ICD10CM|Algoneurodystrophy, unspecified site|Algoneurodystrophy, unspecified site +C0205930|T047|PT|M89.00|ICD10CM|Algoneurodystrophy, unspecified site|Algoneurodystrophy, unspecified site +C2902200|T047|AB|M89.01|ICD10CM|Algoneurodystrophy, shoulder|Algoneurodystrophy, shoulder +C2902200|T047|HT|M89.01|ICD10CM|Algoneurodystrophy, shoulder|Algoneurodystrophy, shoulder +C2902201|T047|AB|M89.011|ICD10CM|Algoneurodystrophy, right shoulder|Algoneurodystrophy, right shoulder +C2902201|T047|PT|M89.011|ICD10CM|Algoneurodystrophy, right shoulder|Algoneurodystrophy, right shoulder +C2902202|T047|AB|M89.012|ICD10CM|Algoneurodystrophy, left shoulder|Algoneurodystrophy, left shoulder +C2902202|T047|PT|M89.012|ICD10CM|Algoneurodystrophy, left shoulder|Algoneurodystrophy, left shoulder +C2902203|T047|AB|M89.019|ICD10CM|Algoneurodystrophy, unspecified shoulder|Algoneurodystrophy, unspecified shoulder +C2902203|T047|PT|M89.019|ICD10CM|Algoneurodystrophy, unspecified shoulder|Algoneurodystrophy, unspecified shoulder +C0840080|T047|HT|M89.02|ICD10CM|Algoneurodystrophy, upper arm|Algoneurodystrophy, upper arm +C0840080|T047|AB|M89.02|ICD10CM|Algoneurodystrophy, upper arm|Algoneurodystrophy, upper arm +C2902204|T047|AB|M89.021|ICD10CM|Algoneurodystrophy, right upper arm|Algoneurodystrophy, right upper arm +C2902204|T047|PT|M89.021|ICD10CM|Algoneurodystrophy, right upper arm|Algoneurodystrophy, right upper arm +C2902205|T047|AB|M89.022|ICD10CM|Algoneurodystrophy, left upper arm|Algoneurodystrophy, left upper arm +C2902205|T047|PT|M89.022|ICD10CM|Algoneurodystrophy, left upper arm|Algoneurodystrophy, left upper arm +C2902206|T047|AB|M89.029|ICD10CM|Algoneurodystrophy, unspecified upper arm|Algoneurodystrophy, unspecified upper arm +C2902206|T047|PT|M89.029|ICD10CM|Algoneurodystrophy, unspecified upper arm|Algoneurodystrophy, unspecified upper arm +C0840081|T047|HT|M89.03|ICD10CM|Algoneurodystrophy, forearm|Algoneurodystrophy, forearm +C0840081|T047|AB|M89.03|ICD10CM|Algoneurodystrophy, forearm|Algoneurodystrophy, forearm +C2902207|T047|AB|M89.031|ICD10CM|Algoneurodystrophy, right forearm|Algoneurodystrophy, right forearm +C2902207|T047|PT|M89.031|ICD10CM|Algoneurodystrophy, right forearm|Algoneurodystrophy, right forearm +C2902208|T047|AB|M89.032|ICD10CM|Algoneurodystrophy, left forearm|Algoneurodystrophy, left forearm +C2902208|T047|PT|M89.032|ICD10CM|Algoneurodystrophy, left forearm|Algoneurodystrophy, left forearm +C2902209|T047|AB|M89.039|ICD10CM|Algoneurodystrophy, unspecified forearm|Algoneurodystrophy, unspecified forearm +C2902209|T047|PT|M89.039|ICD10CM|Algoneurodystrophy, unspecified forearm|Algoneurodystrophy, unspecified forearm +C0840082|T047|HT|M89.04|ICD10CM|Algoneurodystrophy, hand|Algoneurodystrophy, hand +C0840082|T047|AB|M89.04|ICD10CM|Algoneurodystrophy, hand|Algoneurodystrophy, hand +C2902210|T047|AB|M89.041|ICD10CM|Algoneurodystrophy, right hand|Algoneurodystrophy, right hand +C2902210|T047|PT|M89.041|ICD10CM|Algoneurodystrophy, right hand|Algoneurodystrophy, right hand +C2902211|T047|AB|M89.042|ICD10CM|Algoneurodystrophy, left hand|Algoneurodystrophy, left hand +C2902211|T047|PT|M89.042|ICD10CM|Algoneurodystrophy, left hand|Algoneurodystrophy, left hand +C2902212|T047|AB|M89.049|ICD10CM|Algoneurodystrophy, unspecified hand|Algoneurodystrophy, unspecified hand +C2902212|T047|PT|M89.049|ICD10CM|Algoneurodystrophy, unspecified hand|Algoneurodystrophy, unspecified hand +C2902213|T047|AB|M89.05|ICD10CM|Algoneurodystrophy, thigh|Algoneurodystrophy, thigh +C2902213|T047|HT|M89.05|ICD10CM|Algoneurodystrophy, thigh|Algoneurodystrophy, thigh +C2902214|T047|AB|M89.051|ICD10CM|Algoneurodystrophy, right thigh|Algoneurodystrophy, right thigh +C2902214|T047|PT|M89.051|ICD10CM|Algoneurodystrophy, right thigh|Algoneurodystrophy, right thigh +C2902215|T047|AB|M89.052|ICD10CM|Algoneurodystrophy, left thigh|Algoneurodystrophy, left thigh +C2902215|T047|PT|M89.052|ICD10CM|Algoneurodystrophy, left thigh|Algoneurodystrophy, left thigh +C2902216|T047|AB|M89.059|ICD10CM|Algoneurodystrophy, unspecified thigh|Algoneurodystrophy, unspecified thigh +C2902216|T047|PT|M89.059|ICD10CM|Algoneurodystrophy, unspecified thigh|Algoneurodystrophy, unspecified thigh +C0840084|T047|HT|M89.06|ICD10CM|Algoneurodystrophy, lower leg|Algoneurodystrophy, lower leg +C0840084|T047|AB|M89.06|ICD10CM|Algoneurodystrophy, lower leg|Algoneurodystrophy, lower leg +C2902217|T047|AB|M89.061|ICD10CM|Algoneurodystrophy, right lower leg|Algoneurodystrophy, right lower leg +C2902217|T047|PT|M89.061|ICD10CM|Algoneurodystrophy, right lower leg|Algoneurodystrophy, right lower leg +C2902218|T047|AB|M89.062|ICD10CM|Algoneurodystrophy, left lower leg|Algoneurodystrophy, left lower leg +C2902218|T047|PT|M89.062|ICD10CM|Algoneurodystrophy, left lower leg|Algoneurodystrophy, left lower leg +C2902219|T047|AB|M89.069|ICD10CM|Algoneurodystrophy, unspecified lower leg|Algoneurodystrophy, unspecified lower leg +C2902219|T047|PT|M89.069|ICD10CM|Algoneurodystrophy, unspecified lower leg|Algoneurodystrophy, unspecified lower leg +C0840085|T047|HT|M89.07|ICD10CM|Algoneurodystrophy, ankle and foot|Algoneurodystrophy, ankle and foot +C0840085|T047|AB|M89.07|ICD10CM|Algoneurodystrophy, ankle and foot|Algoneurodystrophy, ankle and foot +C2902220|T047|AB|M89.071|ICD10CM|Algoneurodystrophy, right ankle and foot|Algoneurodystrophy, right ankle and foot +C2902220|T047|PT|M89.071|ICD10CM|Algoneurodystrophy, right ankle and foot|Algoneurodystrophy, right ankle and foot +C2902221|T047|AB|M89.072|ICD10CM|Algoneurodystrophy, left ankle and foot|Algoneurodystrophy, left ankle and foot +C2902221|T047|PT|M89.072|ICD10CM|Algoneurodystrophy, left ankle and foot|Algoneurodystrophy, left ankle and foot +C2902222|T047|AB|M89.079|ICD10CM|Algoneurodystrophy, unspecified ankle and foot|Algoneurodystrophy, unspecified ankle and foot +C2902222|T047|PT|M89.079|ICD10CM|Algoneurodystrophy, unspecified ankle and foot|Algoneurodystrophy, unspecified ankle and foot +C0840086|T047|PT|M89.08|ICD10CM|Algoneurodystrophy, other site|Algoneurodystrophy, other site +C0840086|T047|AB|M89.08|ICD10CM|Algoneurodystrophy, other site|Algoneurodystrophy, other site +C0840078|T047|PT|M89.09|ICD10CM|Algoneurodystrophy, multiple sites|Algoneurodystrophy, multiple sites +C0840078|T047|AB|M89.09|ICD10CM|Algoneurodystrophy, multiple sites|Algoneurodystrophy, multiple sites +C2902223|T047|ET|M89.1|ICD10CM|Arrest of growth plate|Arrest of growth plate +C0264124|T046|ET|M89.1|ICD10CM|Epiphyseal arrest|Epiphyseal arrest +C0264124|T046|PT|M89.1|ICD10|Epiphyseal arrest|Epiphyseal arrest +C2902223|T047|ET|M89.1|ICD10CM|Growth plate arrest|Growth plate arrest +C2902224|T047|AB|M89.1|ICD10CM|Physeal arrest|Physeal arrest +C2902224|T047|HT|M89.1|ICD10CM|Physeal arrest|Physeal arrest +C2902225|T047|AB|M89.12|ICD10CM|Physeal arrest, humerus|Physeal arrest, humerus +C2902225|T047|HT|M89.12|ICD10CM|Physeal arrest, humerus|Physeal arrest, humerus +C2902226|T047|AB|M89.121|ICD10CM|Complete physeal arrest, right proximal humerus|Complete physeal arrest, right proximal humerus +C2902226|T047|PT|M89.121|ICD10CM|Complete physeal arrest, right proximal humerus|Complete physeal arrest, right proximal humerus +C2902227|T047|AB|M89.122|ICD10CM|Complete physeal arrest, left proximal humerus|Complete physeal arrest, left proximal humerus +C2902227|T047|PT|M89.122|ICD10CM|Complete physeal arrest, left proximal humerus|Complete physeal arrest, left proximal humerus +C2902228|T047|AB|M89.123|ICD10CM|Partial physeal arrest, right proximal humerus|Partial physeal arrest, right proximal humerus +C2902228|T047|PT|M89.123|ICD10CM|Partial physeal arrest, right proximal humerus|Partial physeal arrest, right proximal humerus +C2902229|T047|AB|M89.124|ICD10CM|Partial physeal arrest, left proximal humerus|Partial physeal arrest, left proximal humerus +C2902229|T047|PT|M89.124|ICD10CM|Partial physeal arrest, left proximal humerus|Partial physeal arrest, left proximal humerus +C2902230|T047|AB|M89.125|ICD10CM|Complete physeal arrest, right distal humerus|Complete physeal arrest, right distal humerus +C2902230|T047|PT|M89.125|ICD10CM|Complete physeal arrest, right distal humerus|Complete physeal arrest, right distal humerus +C2902231|T047|AB|M89.126|ICD10CM|Complete physeal arrest, left distal humerus|Complete physeal arrest, left distal humerus +C2902231|T047|PT|M89.126|ICD10CM|Complete physeal arrest, left distal humerus|Complete physeal arrest, left distal humerus +C2902232|T047|AB|M89.127|ICD10CM|Partial physeal arrest, right distal humerus|Partial physeal arrest, right distal humerus +C2902232|T047|PT|M89.127|ICD10CM|Partial physeal arrest, right distal humerus|Partial physeal arrest, right distal humerus +C2902233|T047|AB|M89.128|ICD10CM|Partial physeal arrest, left distal humerus|Partial physeal arrest, left distal humerus +C2902233|T047|PT|M89.128|ICD10CM|Partial physeal arrest, left distal humerus|Partial physeal arrest, left distal humerus +C2902225|T047|AB|M89.129|ICD10CM|Physeal arrest, humerus, unspecified|Physeal arrest, humerus, unspecified +C2902225|T047|PT|M89.129|ICD10CM|Physeal arrest, humerus, unspecified|Physeal arrest, humerus, unspecified +C2902234|T047|AB|M89.13|ICD10CM|Physeal arrest, forearm|Physeal arrest, forearm +C2902234|T047|HT|M89.13|ICD10CM|Physeal arrest, forearm|Physeal arrest, forearm +C2902235|T047|AB|M89.131|ICD10CM|Complete physeal arrest, right distal radius|Complete physeal arrest, right distal radius +C2902235|T047|PT|M89.131|ICD10CM|Complete physeal arrest, right distal radius|Complete physeal arrest, right distal radius +C2902236|T047|AB|M89.132|ICD10CM|Complete physeal arrest, left distal radius|Complete physeal arrest, left distal radius +C2902236|T047|PT|M89.132|ICD10CM|Complete physeal arrest, left distal radius|Complete physeal arrest, left distal radius +C2902237|T047|AB|M89.133|ICD10CM|Partial physeal arrest, right distal radius|Partial physeal arrest, right distal radius +C2902237|T047|PT|M89.133|ICD10CM|Partial physeal arrest, right distal radius|Partial physeal arrest, right distal radius +C2902238|T047|AB|M89.134|ICD10CM|Partial physeal arrest, left distal radius|Partial physeal arrest, left distal radius +C2902238|T047|PT|M89.134|ICD10CM|Partial physeal arrest, left distal radius|Partial physeal arrest, left distal radius +C2902239|T047|AB|M89.138|ICD10CM|Other physeal arrest of forearm|Other physeal arrest of forearm +C2902239|T047|PT|M89.138|ICD10CM|Other physeal arrest of forearm|Other physeal arrest of forearm +C2902234|T047|AB|M89.139|ICD10CM|Physeal arrest, forearm, unspecified|Physeal arrest, forearm, unspecified +C2902234|T047|PT|M89.139|ICD10CM|Physeal arrest, forearm, unspecified|Physeal arrest, forearm, unspecified +C2902248|T047|AB|M89.15|ICD10CM|Physeal arrest, femur|Physeal arrest, femur +C2902248|T047|HT|M89.15|ICD10CM|Physeal arrest, femur|Physeal arrest, femur +C2902240|T047|AB|M89.151|ICD10CM|Complete physeal arrest, right proximal femur|Complete physeal arrest, right proximal femur +C2902240|T047|PT|M89.151|ICD10CM|Complete physeal arrest, right proximal femur|Complete physeal arrest, right proximal femur +C2902241|T047|AB|M89.152|ICD10CM|Complete physeal arrest, left proximal femur|Complete physeal arrest, left proximal femur +C2902241|T047|PT|M89.152|ICD10CM|Complete physeal arrest, left proximal femur|Complete physeal arrest, left proximal femur +C2902242|T047|AB|M89.153|ICD10CM|Partial physeal arrest, right proximal femur|Partial physeal arrest, right proximal femur +C2902242|T047|PT|M89.153|ICD10CM|Partial physeal arrest, right proximal femur|Partial physeal arrest, right proximal femur +C2902243|T047|AB|M89.154|ICD10CM|Partial physeal arrest, left proximal femur|Partial physeal arrest, left proximal femur +C2902243|T047|PT|M89.154|ICD10CM|Partial physeal arrest, left proximal femur|Partial physeal arrest, left proximal femur +C2902244|T047|AB|M89.155|ICD10CM|Complete physeal arrest, right distal femur|Complete physeal arrest, right distal femur +C2902244|T047|PT|M89.155|ICD10CM|Complete physeal arrest, right distal femur|Complete physeal arrest, right distal femur +C2902245|T047|AB|M89.156|ICD10CM|Complete physeal arrest, left distal femur|Complete physeal arrest, left distal femur +C2902245|T047|PT|M89.156|ICD10CM|Complete physeal arrest, left distal femur|Complete physeal arrest, left distal femur +C2902246|T047|AB|M89.157|ICD10CM|Partial physeal arrest, right distal femur|Partial physeal arrest, right distal femur +C2902246|T047|PT|M89.157|ICD10CM|Partial physeal arrest, right distal femur|Partial physeal arrest, right distal femur +C2902247|T047|AB|M89.158|ICD10CM|Partial physeal arrest, left distal femur|Partial physeal arrest, left distal femur +C2902247|T047|PT|M89.158|ICD10CM|Partial physeal arrest, left distal femur|Partial physeal arrest, left distal femur +C2902248|T047|AB|M89.159|ICD10CM|Physeal arrest, femur, unspecified|Physeal arrest, femur, unspecified +C2902248|T047|PT|M89.159|ICD10CM|Physeal arrest, femur, unspecified|Physeal arrest, femur, unspecified +C2902258|T047|AB|M89.16|ICD10CM|Physeal arrest, lower leg|Physeal arrest, lower leg +C2902258|T047|HT|M89.16|ICD10CM|Physeal arrest, lower leg|Physeal arrest, lower leg +C2902249|T047|AB|M89.160|ICD10CM|Complete physeal arrest, right proximal tibia|Complete physeal arrest, right proximal tibia +C2902249|T047|PT|M89.160|ICD10CM|Complete physeal arrest, right proximal tibia|Complete physeal arrest, right proximal tibia +C2902250|T047|AB|M89.161|ICD10CM|Complete physeal arrest, left proximal tibia|Complete physeal arrest, left proximal tibia +C2902250|T047|PT|M89.161|ICD10CM|Complete physeal arrest, left proximal tibia|Complete physeal arrest, left proximal tibia +C2902251|T047|AB|M89.162|ICD10CM|Partial physeal arrest, right proximal tibia|Partial physeal arrest, right proximal tibia +C2902251|T047|PT|M89.162|ICD10CM|Partial physeal arrest, right proximal tibia|Partial physeal arrest, right proximal tibia +C2902252|T047|AB|M89.163|ICD10CM|Partial physeal arrest, left proximal tibia|Partial physeal arrest, left proximal tibia +C2902252|T047|PT|M89.163|ICD10CM|Partial physeal arrest, left proximal tibia|Partial physeal arrest, left proximal tibia +C2902253|T047|AB|M89.164|ICD10CM|Complete physeal arrest, right distal tibia|Complete physeal arrest, right distal tibia +C2902253|T047|PT|M89.164|ICD10CM|Complete physeal arrest, right distal tibia|Complete physeal arrest, right distal tibia +C2902254|T047|AB|M89.165|ICD10CM|Complete physeal arrest, left distal tibia|Complete physeal arrest, left distal tibia +C2902254|T047|PT|M89.165|ICD10CM|Complete physeal arrest, left distal tibia|Complete physeal arrest, left distal tibia +C2902255|T047|AB|M89.166|ICD10CM|Partial physeal arrest, right distal tibia|Partial physeal arrest, right distal tibia +C2902255|T047|PT|M89.166|ICD10CM|Partial physeal arrest, right distal tibia|Partial physeal arrest, right distal tibia +C2902256|T047|AB|M89.167|ICD10CM|Partial physeal arrest, left distal tibia|Partial physeal arrest, left distal tibia +C2902256|T047|PT|M89.167|ICD10CM|Partial physeal arrest, left distal tibia|Partial physeal arrest, left distal tibia +C2902257|T047|AB|M89.168|ICD10CM|Other physeal arrest of lower leg|Other physeal arrest of lower leg +C2902257|T047|PT|M89.168|ICD10CM|Other physeal arrest of lower leg|Other physeal arrest of lower leg +C2902258|T047|AB|M89.169|ICD10CM|Physeal arrest, lower leg, unspecified|Physeal arrest, lower leg, unspecified +C2902258|T047|PT|M89.169|ICD10CM|Physeal arrest, lower leg, unspecified|Physeal arrest, lower leg, unspecified +C2902259|T047|AB|M89.18|ICD10CM|Physeal arrest, other site|Physeal arrest, other site +C2902259|T047|PT|M89.18|ICD10CM|Physeal arrest, other site|Physeal arrest, other site +C0477689|T047|PT|M89.2|ICD10|Other disorders of bone development and growth|Other disorders of bone development and growth +C0477689|T047|HT|M89.2|ICD10CM|Other disorders of bone development and growth|Other disorders of bone development and growth +C0477689|T047|AB|M89.2|ICD10CM|Other disorders of bone development and growth|Other disorders of bone development and growth +C0477689|T047|AB|M89.20|ICD10CM|Other disorders of bone development and growth, unsp site|Other disorders of bone development and growth, unsp site +C0477689|T047|PT|M89.20|ICD10CM|Other disorders of bone development and growth, unspecified site|Other disorders of bone development and growth, unspecified site +C2902260|T047|AB|M89.21|ICD10CM|Other disorders of bone development and growth, shoulder|Other disorders of bone development and growth, shoulder +C2902260|T047|HT|M89.21|ICD10CM|Other disorders of bone development and growth, shoulder|Other disorders of bone development and growth, shoulder +C2902261|T047|AB|M89.211|ICD10CM|Oth disorders of bone development and growth, right shoulder|Oth disorders of bone development and growth, right shoulder +C2902261|T047|PT|M89.211|ICD10CM|Other disorders of bone development and growth, right shoulder|Other disorders of bone development and growth, right shoulder +C2902262|T047|AB|M89.212|ICD10CM|Oth disorders of bone development and growth, left shoulder|Oth disorders of bone development and growth, left shoulder +C2902262|T047|PT|M89.212|ICD10CM|Other disorders of bone development and growth, left shoulder|Other disorders of bone development and growth, left shoulder +C2902263|T047|AB|M89.219|ICD10CM|Oth disorders of bone development and growth, unsp shoulder|Oth disorders of bone development and growth, unsp shoulder +C2902263|T047|PT|M89.219|ICD10CM|Other disorders of bone development and growth, unspecified shoulder|Other disorders of bone development and growth, unspecified shoulder +C2902264|T047|AB|M89.22|ICD10CM|Other disorders of bone development and growth, humerus|Other disorders of bone development and growth, humerus +C2902264|T047|HT|M89.22|ICD10CM|Other disorders of bone development and growth, humerus|Other disorders of bone development and growth, humerus +C2902265|T047|AB|M89.221|ICD10CM|Oth disorders of bone development and growth, right humerus|Oth disorders of bone development and growth, right humerus +C2902265|T047|PT|M89.221|ICD10CM|Other disorders of bone development and growth, right humerus|Other disorders of bone development and growth, right humerus +C2902266|T047|AB|M89.222|ICD10CM|Other disorders of bone development and growth, left humerus|Other disorders of bone development and growth, left humerus +C2902266|T047|PT|M89.222|ICD10CM|Other disorders of bone development and growth, left humerus|Other disorders of bone development and growth, left humerus +C2902267|T047|AB|M89.229|ICD10CM|Other disorders of bone development and growth, unsp humerus|Other disorders of bone development and growth, unsp humerus +C2902267|T047|PT|M89.229|ICD10CM|Other disorders of bone development and growth, unspecified humerus|Other disorders of bone development and growth, unspecified humerus +C2902268|T047|AB|M89.23|ICD10CM|Oth disorders of bone dev and growth, ulna and radius|Oth disorders of bone dev and growth, ulna and radius +C2902268|T047|HT|M89.23|ICD10CM|Other disorders of bone development and growth, ulna and radius|Other disorders of bone development and growth, ulna and radius +C2902269|T047|AB|M89.231|ICD10CM|Other disorders of bone development and growth, right ulna|Other disorders of bone development and growth, right ulna +C2902269|T047|PT|M89.231|ICD10CM|Other disorders of bone development and growth, right ulna|Other disorders of bone development and growth, right ulna +C2902270|T047|AB|M89.232|ICD10CM|Other disorders of bone development and growth, left ulna|Other disorders of bone development and growth, left ulna +C2902270|T047|PT|M89.232|ICD10CM|Other disorders of bone development and growth, left ulna|Other disorders of bone development and growth, left ulna +C2902271|T047|AB|M89.233|ICD10CM|Other disorders of bone development and growth, right radius|Other disorders of bone development and growth, right radius +C2902271|T047|PT|M89.233|ICD10CM|Other disorders of bone development and growth, right radius|Other disorders of bone development and growth, right radius +C2902272|T047|AB|M89.234|ICD10CM|Other disorders of bone development and growth, left radius|Other disorders of bone development and growth, left radius +C2902272|T047|PT|M89.234|ICD10CM|Other disorders of bone development and growth, left radius|Other disorders of bone development and growth, left radius +C2902273|T047|AB|M89.239|ICD10CM|Oth disorders of bone dev and growth, unsp ulna and radius|Oth disorders of bone dev and growth, unsp ulna and radius +C2902273|T047|PT|M89.239|ICD10CM|Other disorders of bone development and growth, unspecified ulna and radius|Other disorders of bone development and growth, unspecified ulna and radius +C0840102|T047|HT|M89.24|ICD10CM|Other disorders of bone development and growth, hand|Other disorders of bone development and growth, hand +C0840102|T047|AB|M89.24|ICD10CM|Other disorders of bone development and growth, hand|Other disorders of bone development and growth, hand +C2902274|T047|AB|M89.241|ICD10CM|Other disorders of bone development and growth, right hand|Other disorders of bone development and growth, right hand +C2902274|T047|PT|M89.241|ICD10CM|Other disorders of bone development and growth, right hand|Other disorders of bone development and growth, right hand +C2902275|T047|AB|M89.242|ICD10CM|Other disorders of bone development and growth, left hand|Other disorders of bone development and growth, left hand +C2902275|T047|PT|M89.242|ICD10CM|Other disorders of bone development and growth, left hand|Other disorders of bone development and growth, left hand +C0840102|T047|AB|M89.249|ICD10CM|Other disorders of bone development and growth, unsp hand|Other disorders of bone development and growth, unsp hand +C0840102|T047|PT|M89.249|ICD10CM|Other disorders of bone development and growth, unspecified hand|Other disorders of bone development and growth, unspecified hand +C2902276|T047|AB|M89.25|ICD10CM|Other disorders of bone development and growth, femur|Other disorders of bone development and growth, femur +C2902276|T047|HT|M89.25|ICD10CM|Other disorders of bone development and growth, femur|Other disorders of bone development and growth, femur +C2902277|T047|AB|M89.251|ICD10CM|Other disorders of bone development and growth, right femur|Other disorders of bone development and growth, right femur +C2902277|T047|PT|M89.251|ICD10CM|Other disorders of bone development and growth, right femur|Other disorders of bone development and growth, right femur +C2902278|T047|AB|M89.252|ICD10CM|Other disorders of bone development and growth, left femur|Other disorders of bone development and growth, left femur +C2902278|T047|PT|M89.252|ICD10CM|Other disorders of bone development and growth, left femur|Other disorders of bone development and growth, left femur +C2902279|T047|AB|M89.259|ICD10CM|Other disorders of bone development and growth, unsp femur|Other disorders of bone development and growth, unsp femur +C2902279|T047|PT|M89.259|ICD10CM|Other disorders of bone development and growth, unspecified femur|Other disorders of bone development and growth, unspecified femur +C2902280|T047|AB|M89.26|ICD10CM|Oth disorders of bone dev and growth, tibia and fibula|Oth disorders of bone dev and growth, tibia and fibula +C2902280|T047|HT|M89.26|ICD10CM|Other disorders of bone development and growth, tibia and fibula|Other disorders of bone development and growth, tibia and fibula +C2902281|T047|AB|M89.261|ICD10CM|Other disorders of bone development and growth, right tibia|Other disorders of bone development and growth, right tibia +C2902281|T047|PT|M89.261|ICD10CM|Other disorders of bone development and growth, right tibia|Other disorders of bone development and growth, right tibia +C2902282|T047|AB|M89.262|ICD10CM|Other disorders of bone development and growth, left tibia|Other disorders of bone development and growth, left tibia +C2902282|T047|PT|M89.262|ICD10CM|Other disorders of bone development and growth, left tibia|Other disorders of bone development and growth, left tibia +C2902283|T047|AB|M89.263|ICD10CM|Other disorders of bone development and growth, right fibula|Other disorders of bone development and growth, right fibula +C2902283|T047|PT|M89.263|ICD10CM|Other disorders of bone development and growth, right fibula|Other disorders of bone development and growth, right fibula +C2902284|T047|AB|M89.264|ICD10CM|Other disorders of bone development and growth, left fibula|Other disorders of bone development and growth, left fibula +C2902284|T047|PT|M89.264|ICD10CM|Other disorders of bone development and growth, left fibula|Other disorders of bone development and growth, left fibula +C2902285|T047|AB|M89.269|ICD10CM|Oth disorders of bone development and growth, unsp lower leg|Oth disorders of bone development and growth, unsp lower leg +C2902285|T047|PT|M89.269|ICD10CM|Other disorders of bone development and growth, unspecified lower leg|Other disorders of bone development and growth, unspecified lower leg +C0840105|T047|AB|M89.27|ICD10CM|Oth disorders of bone development and growth, ankle and foot|Oth disorders of bone development and growth, ankle and foot +C0840105|T047|HT|M89.27|ICD10CM|Other disorders of bone development and growth, ankle and foot|Other disorders of bone development and growth, ankle and foot +C2902286|T047|AB|M89.271|ICD10CM|Oth disorders of bone development and growth, right ank/ft|Oth disorders of bone development and growth, right ank/ft +C2902286|T047|PT|M89.271|ICD10CM|Other disorders of bone development and growth, right ankle and foot|Other disorders of bone development and growth, right ankle and foot +C2902287|T047|AB|M89.272|ICD10CM|Oth disorders of bone development and growth, left ank/ft|Oth disorders of bone development and growth, left ank/ft +C2902287|T047|PT|M89.272|ICD10CM|Other disorders of bone development and growth, left ankle and foot|Other disorders of bone development and growth, left ankle and foot +C2902288|T047|AB|M89.279|ICD10CM|Oth disorders of bone development and growth, unsp ank/ft|Oth disorders of bone development and growth, unsp ank/ft +C2902288|T047|PT|M89.279|ICD10CM|Other disorders of bone development and growth, unspecified ankle and foot|Other disorders of bone development and growth, unspecified ankle and foot +C0840106|T047|PT|M89.28|ICD10CM|Other disorders of bone development and growth, other site|Other disorders of bone development and growth, other site +C0840106|T047|AB|M89.28|ICD10CM|Other disorders of bone development and growth, other site|Other disorders of bone development and growth, other site +C0840098|T047|AB|M89.29|ICD10CM|Oth disorders of bone development and growth, multiple sites|Oth disorders of bone development and growth, multiple sites +C0840098|T047|PT|M89.29|ICD10CM|Other disorders of bone development and growth, multiple sites|Other disorders of bone development and growth, multiple sites +C0020492|T047|HT|M89.3|ICD10CM|Hypertrophy of bone|Hypertrophy of bone +C0020492|T047|AB|M89.3|ICD10CM|Hypertrophy of bone|Hypertrophy of bone +C0020492|T047|PT|M89.3|ICD10|Hypertrophy of bone|Hypertrophy of bone +C0020492|T047|AB|M89.30|ICD10CM|Hypertrophy of bone, unspecified site|Hypertrophy of bone, unspecified site +C0020492|T047|PT|M89.30|ICD10CM|Hypertrophy of bone, unspecified site|Hypertrophy of bone, unspecified site +C2902289|T047|AB|M89.31|ICD10CM|Hypertrophy of bone, shoulder|Hypertrophy of bone, shoulder +C2902289|T047|HT|M89.31|ICD10CM|Hypertrophy of bone, shoulder|Hypertrophy of bone, shoulder +C2902290|T047|AB|M89.311|ICD10CM|Hypertrophy of bone, right shoulder|Hypertrophy of bone, right shoulder +C2902290|T047|PT|M89.311|ICD10CM|Hypertrophy of bone, right shoulder|Hypertrophy of bone, right shoulder +C2902291|T047|AB|M89.312|ICD10CM|Hypertrophy of bone, left shoulder|Hypertrophy of bone, left shoulder +C2902291|T047|PT|M89.312|ICD10CM|Hypertrophy of bone, left shoulder|Hypertrophy of bone, left shoulder +C2902292|T047|AB|M89.319|ICD10CM|Hypertrophy of bone, unspecified shoulder|Hypertrophy of bone, unspecified shoulder +C2902292|T047|PT|M89.319|ICD10CM|Hypertrophy of bone, unspecified shoulder|Hypertrophy of bone, unspecified shoulder +C2902293|T047|AB|M89.32|ICD10CM|Hypertrophy of bone, humerus|Hypertrophy of bone, humerus +C2902293|T047|HT|M89.32|ICD10CM|Hypertrophy of bone, humerus|Hypertrophy of bone, humerus +C2902294|T047|AB|M89.321|ICD10CM|Hypertrophy of bone, right humerus|Hypertrophy of bone, right humerus +C2902294|T047|PT|M89.321|ICD10CM|Hypertrophy of bone, right humerus|Hypertrophy of bone, right humerus +C2902295|T047|AB|M89.322|ICD10CM|Hypertrophy of bone, left humerus|Hypertrophy of bone, left humerus +C2902295|T047|PT|M89.322|ICD10CM|Hypertrophy of bone, left humerus|Hypertrophy of bone, left humerus +C2902296|T047|AB|M89.329|ICD10CM|Hypertrophy of bone, unspecified humerus|Hypertrophy of bone, unspecified humerus +C2902296|T047|PT|M89.329|ICD10CM|Hypertrophy of bone, unspecified humerus|Hypertrophy of bone, unspecified humerus +C2902297|T047|AB|M89.33|ICD10CM|Hypertrophy of bone, ulna and radius|Hypertrophy of bone, ulna and radius +C2902297|T047|HT|M89.33|ICD10CM|Hypertrophy of bone, ulna and radius|Hypertrophy of bone, ulna and radius +C2902298|T047|AB|M89.331|ICD10CM|Hypertrophy of bone, right ulna|Hypertrophy of bone, right ulna +C2902298|T047|PT|M89.331|ICD10CM|Hypertrophy of bone, right ulna|Hypertrophy of bone, right ulna +C2902299|T047|AB|M89.332|ICD10CM|Hypertrophy of bone, left ulna|Hypertrophy of bone, left ulna +C2902299|T047|PT|M89.332|ICD10CM|Hypertrophy of bone, left ulna|Hypertrophy of bone, left ulna +C2902300|T047|AB|M89.333|ICD10CM|Hypertrophy of bone, right radius|Hypertrophy of bone, right radius +C2902300|T047|PT|M89.333|ICD10CM|Hypertrophy of bone, right radius|Hypertrophy of bone, right radius +C2902301|T047|AB|M89.334|ICD10CM|Hypertrophy of bone, left radius|Hypertrophy of bone, left radius +C2902301|T047|PT|M89.334|ICD10CM|Hypertrophy of bone, left radius|Hypertrophy of bone, left radius +C2902302|T047|AB|M89.339|ICD10CM|Hypertrophy of bone, unspecified ulna and radius|Hypertrophy of bone, unspecified ulna and radius +C2902302|T047|PT|M89.339|ICD10CM|Hypertrophy of bone, unspecified ulna and radius|Hypertrophy of bone, unspecified ulna and radius +C0840112|T047|HT|M89.34|ICD10CM|Hypertrophy of bone, hand|Hypertrophy of bone, hand +C0840112|T047|AB|M89.34|ICD10CM|Hypertrophy of bone, hand|Hypertrophy of bone, hand +C2902303|T047|AB|M89.341|ICD10CM|Hypertrophy of bone, right hand|Hypertrophy of bone, right hand +C2902303|T047|PT|M89.341|ICD10CM|Hypertrophy of bone, right hand|Hypertrophy of bone, right hand +C2902304|T047|AB|M89.342|ICD10CM|Hypertrophy of bone, left hand|Hypertrophy of bone, left hand +C2902304|T047|PT|M89.342|ICD10CM|Hypertrophy of bone, left hand|Hypertrophy of bone, left hand +C2902305|T047|AB|M89.349|ICD10CM|Hypertrophy of bone, unspecified hand|Hypertrophy of bone, unspecified hand +C2902305|T047|PT|M89.349|ICD10CM|Hypertrophy of bone, unspecified hand|Hypertrophy of bone, unspecified hand +C2902306|T047|AB|M89.35|ICD10CM|Hypertrophy of bone, femur|Hypertrophy of bone, femur +C2902306|T047|HT|M89.35|ICD10CM|Hypertrophy of bone, femur|Hypertrophy of bone, femur +C2902307|T047|AB|M89.351|ICD10CM|Hypertrophy of bone, right femur|Hypertrophy of bone, right femur +C2902307|T047|PT|M89.351|ICD10CM|Hypertrophy of bone, right femur|Hypertrophy of bone, right femur +C2902308|T047|AB|M89.352|ICD10CM|Hypertrophy of bone, left femur|Hypertrophy of bone, left femur +C2902308|T047|PT|M89.352|ICD10CM|Hypertrophy of bone, left femur|Hypertrophy of bone, left femur +C2902309|T047|AB|M89.359|ICD10CM|Hypertrophy of bone, unspecified femur|Hypertrophy of bone, unspecified femur +C2902309|T047|PT|M89.359|ICD10CM|Hypertrophy of bone, unspecified femur|Hypertrophy of bone, unspecified femur +C2902310|T047|AB|M89.36|ICD10CM|Hypertrophy of bone, tibia and fibula|Hypertrophy of bone, tibia and fibula +C2902310|T047|HT|M89.36|ICD10CM|Hypertrophy of bone, tibia and fibula|Hypertrophy of bone, tibia and fibula +C2902311|T047|AB|M89.361|ICD10CM|Hypertrophy of bone, right tibia|Hypertrophy of bone, right tibia +C2902311|T047|PT|M89.361|ICD10CM|Hypertrophy of bone, right tibia|Hypertrophy of bone, right tibia +C2902312|T047|AB|M89.362|ICD10CM|Hypertrophy of bone, left tibia|Hypertrophy of bone, left tibia +C2902312|T047|PT|M89.362|ICD10CM|Hypertrophy of bone, left tibia|Hypertrophy of bone, left tibia +C2902313|T047|AB|M89.363|ICD10CM|Hypertrophy of bone, right fibula|Hypertrophy of bone, right fibula +C2902313|T047|PT|M89.363|ICD10CM|Hypertrophy of bone, right fibula|Hypertrophy of bone, right fibula +C2902314|T047|AB|M89.364|ICD10CM|Hypertrophy of bone, left fibula|Hypertrophy of bone, left fibula +C2902314|T047|PT|M89.364|ICD10CM|Hypertrophy of bone, left fibula|Hypertrophy of bone, left fibula +C2902315|T047|AB|M89.369|ICD10CM|Hypertrophy of bone, unspecified tibia and fibula|Hypertrophy of bone, unspecified tibia and fibula +C2902315|T047|PT|M89.369|ICD10CM|Hypertrophy of bone, unspecified tibia and fibula|Hypertrophy of bone, unspecified tibia and fibula +C0840115|T047|HT|M89.37|ICD10CM|Hypertrophy of bone, ankle and foot|Hypertrophy of bone, ankle and foot +C0840115|T047|AB|M89.37|ICD10CM|Hypertrophy of bone, ankle and foot|Hypertrophy of bone, ankle and foot +C2902316|T047|AB|M89.371|ICD10CM|Hypertrophy of bone, right ankle and foot|Hypertrophy of bone, right ankle and foot +C2902316|T047|PT|M89.371|ICD10CM|Hypertrophy of bone, right ankle and foot|Hypertrophy of bone, right ankle and foot +C2902317|T047|AB|M89.372|ICD10CM|Hypertrophy of bone, left ankle and foot|Hypertrophy of bone, left ankle and foot +C2902317|T047|PT|M89.372|ICD10CM|Hypertrophy of bone, left ankle and foot|Hypertrophy of bone, left ankle and foot +C2902318|T047|AB|M89.379|ICD10CM|Hypertrophy of bone, unspecified ankle and foot|Hypertrophy of bone, unspecified ankle and foot +C2902318|T047|PT|M89.379|ICD10CM|Hypertrophy of bone, unspecified ankle and foot|Hypertrophy of bone, unspecified ankle and foot +C0840116|T047|PT|M89.38|ICD10CM|Hypertrophy of bone, other site|Hypertrophy of bone, other site +C0840116|T047|AB|M89.38|ICD10CM|Hypertrophy of bone, other site|Hypertrophy of bone, other site +C0840108|T047|PT|M89.39|ICD10CM|Hypertrophy of bone, multiple sites|Hypertrophy of bone, multiple sites +C0840108|T047|AB|M89.39|ICD10CM|Hypertrophy of bone, multiple sites|Hypertrophy of bone, multiple sites +C0029412|T047|ET|M89.4|ICD10CM|Marie-Bamberger disease|Marie-Bamberger disease +C0477690|T047|HT|M89.4|ICD10CM|Other hypertrophic osteoarthropathy|Other hypertrophic osteoarthropathy +C0477690|T047|AB|M89.4|ICD10CM|Other hypertrophic osteoarthropathy|Other hypertrophic osteoarthropathy +C0477690|T047|PT|M89.4|ICD10|Other hypertrophic osteoarthropathy|Other hypertrophic osteoarthropathy +C0029411|T047|ET|M89.4|ICD10CM|Pachydermoperiostosis|Pachydermoperiostosis +C0477690|T047|AB|M89.40|ICD10CM|Other hypertrophic osteoarthropathy, unspecified site|Other hypertrophic osteoarthropathy, unspecified site +C0477690|T047|PT|M89.40|ICD10CM|Other hypertrophic osteoarthropathy, unspecified site|Other hypertrophic osteoarthropathy, unspecified site +C2902319|T047|AB|M89.41|ICD10CM|Other hypertrophic osteoarthropathy, shoulder|Other hypertrophic osteoarthropathy, shoulder +C2902319|T047|HT|M89.41|ICD10CM|Other hypertrophic osteoarthropathy, shoulder|Other hypertrophic osteoarthropathy, shoulder +C2902320|T047|AB|M89.411|ICD10CM|Other hypertrophic osteoarthropathy, right shoulder|Other hypertrophic osteoarthropathy, right shoulder +C2902320|T047|PT|M89.411|ICD10CM|Other hypertrophic osteoarthropathy, right shoulder|Other hypertrophic osteoarthropathy, right shoulder +C2902321|T047|AB|M89.412|ICD10CM|Other hypertrophic osteoarthropathy, left shoulder|Other hypertrophic osteoarthropathy, left shoulder +C2902321|T047|PT|M89.412|ICD10CM|Other hypertrophic osteoarthropathy, left shoulder|Other hypertrophic osteoarthropathy, left shoulder +C2902322|T047|AB|M89.419|ICD10CM|Other hypertrophic osteoarthropathy, unspecified shoulder|Other hypertrophic osteoarthropathy, unspecified shoulder +C2902322|T047|PT|M89.419|ICD10CM|Other hypertrophic osteoarthropathy, unspecified shoulder|Other hypertrophic osteoarthropathy, unspecified shoulder +C0840120|T047|HT|M89.42|ICD10CM|Other hypertrophic osteoarthropathy, upper arm|Other hypertrophic osteoarthropathy, upper arm +C0840120|T047|AB|M89.42|ICD10CM|Other hypertrophic osteoarthropathy, upper arm|Other hypertrophic osteoarthropathy, upper arm +C2902323|T047|AB|M89.421|ICD10CM|Other hypertrophic osteoarthropathy, right upper arm|Other hypertrophic osteoarthropathy, right upper arm +C2902323|T047|PT|M89.421|ICD10CM|Other hypertrophic osteoarthropathy, right upper arm|Other hypertrophic osteoarthropathy, right upper arm +C2902324|T047|AB|M89.422|ICD10CM|Other hypertrophic osteoarthropathy, left upper arm|Other hypertrophic osteoarthropathy, left upper arm +C2902324|T047|PT|M89.422|ICD10CM|Other hypertrophic osteoarthropathy, left upper arm|Other hypertrophic osteoarthropathy, left upper arm +C2902325|T047|AB|M89.429|ICD10CM|Other hypertrophic osteoarthropathy, unspecified upper arm|Other hypertrophic osteoarthropathy, unspecified upper arm +C2902325|T047|PT|M89.429|ICD10CM|Other hypertrophic osteoarthropathy, unspecified upper arm|Other hypertrophic osteoarthropathy, unspecified upper arm +C0840121|T047|HT|M89.43|ICD10CM|Other hypertrophic osteoarthropathy, forearm|Other hypertrophic osteoarthropathy, forearm +C0840121|T047|AB|M89.43|ICD10CM|Other hypertrophic osteoarthropathy, forearm|Other hypertrophic osteoarthropathy, forearm +C2902326|T047|AB|M89.431|ICD10CM|Other hypertrophic osteoarthropathy, right forearm|Other hypertrophic osteoarthropathy, right forearm +C2902326|T047|PT|M89.431|ICD10CM|Other hypertrophic osteoarthropathy, right forearm|Other hypertrophic osteoarthropathy, right forearm +C2902327|T047|AB|M89.432|ICD10CM|Other hypertrophic osteoarthropathy, left forearm|Other hypertrophic osteoarthropathy, left forearm +C2902327|T047|PT|M89.432|ICD10CM|Other hypertrophic osteoarthropathy, left forearm|Other hypertrophic osteoarthropathy, left forearm +C0840121|T047|AB|M89.439|ICD10CM|Other hypertrophic osteoarthropathy, unspecified forearm|Other hypertrophic osteoarthropathy, unspecified forearm +C0840121|T047|PT|M89.439|ICD10CM|Other hypertrophic osteoarthropathy, unspecified forearm|Other hypertrophic osteoarthropathy, unspecified forearm +C0840122|T047|HT|M89.44|ICD10CM|Other hypertrophic osteoarthropathy, hand|Other hypertrophic osteoarthropathy, hand +C0840122|T047|AB|M89.44|ICD10CM|Other hypertrophic osteoarthropathy, hand|Other hypertrophic osteoarthropathy, hand +C2902328|T047|AB|M89.441|ICD10CM|Other hypertrophic osteoarthropathy, right hand|Other hypertrophic osteoarthropathy, right hand +C2902328|T047|PT|M89.441|ICD10CM|Other hypertrophic osteoarthropathy, right hand|Other hypertrophic osteoarthropathy, right hand +C2902329|T047|AB|M89.442|ICD10CM|Other hypertrophic osteoarthropathy, left hand|Other hypertrophic osteoarthropathy, left hand +C2902329|T047|PT|M89.442|ICD10CM|Other hypertrophic osteoarthropathy, left hand|Other hypertrophic osteoarthropathy, left hand +C2902330|T047|AB|M89.449|ICD10CM|Other hypertrophic osteoarthropathy, unspecified hand|Other hypertrophic osteoarthropathy, unspecified hand +C2902330|T047|PT|M89.449|ICD10CM|Other hypertrophic osteoarthropathy, unspecified hand|Other hypertrophic osteoarthropathy, unspecified hand +C2902331|T047|AB|M89.45|ICD10CM|Other hypertrophic osteoarthropathy, thigh|Other hypertrophic osteoarthropathy, thigh +C2902331|T047|HT|M89.45|ICD10CM|Other hypertrophic osteoarthropathy, thigh|Other hypertrophic osteoarthropathy, thigh +C2902332|T047|AB|M89.451|ICD10CM|Other hypertrophic osteoarthropathy, right thigh|Other hypertrophic osteoarthropathy, right thigh +C2902332|T047|PT|M89.451|ICD10CM|Other hypertrophic osteoarthropathy, right thigh|Other hypertrophic osteoarthropathy, right thigh +C2902333|T047|AB|M89.452|ICD10CM|Other hypertrophic osteoarthropathy, left thigh|Other hypertrophic osteoarthropathy, left thigh +C2902333|T047|PT|M89.452|ICD10CM|Other hypertrophic osteoarthropathy, left thigh|Other hypertrophic osteoarthropathy, left thigh +C2902334|T047|AB|M89.459|ICD10CM|Other hypertrophic osteoarthropathy, unspecified thigh|Other hypertrophic osteoarthropathy, unspecified thigh +C2902334|T047|PT|M89.459|ICD10CM|Other hypertrophic osteoarthropathy, unspecified thigh|Other hypertrophic osteoarthropathy, unspecified thigh +C0840124|T047|HT|M89.46|ICD10CM|Other hypertrophic osteoarthropathy, lower leg|Other hypertrophic osteoarthropathy, lower leg +C0840124|T047|AB|M89.46|ICD10CM|Other hypertrophic osteoarthropathy, lower leg|Other hypertrophic osteoarthropathy, lower leg +C2902335|T047|AB|M89.461|ICD10CM|Other hypertrophic osteoarthropathy, right lower leg|Other hypertrophic osteoarthropathy, right lower leg +C2902335|T047|PT|M89.461|ICD10CM|Other hypertrophic osteoarthropathy, right lower leg|Other hypertrophic osteoarthropathy, right lower leg +C2902336|T047|AB|M89.462|ICD10CM|Other hypertrophic osteoarthropathy, left lower leg|Other hypertrophic osteoarthropathy, left lower leg +C2902336|T047|PT|M89.462|ICD10CM|Other hypertrophic osteoarthropathy, left lower leg|Other hypertrophic osteoarthropathy, left lower leg +C2902337|T047|AB|M89.469|ICD10CM|Other hypertrophic osteoarthropathy, unspecified lower leg|Other hypertrophic osteoarthropathy, unspecified lower leg +C2902337|T047|PT|M89.469|ICD10CM|Other hypertrophic osteoarthropathy, unspecified lower leg|Other hypertrophic osteoarthropathy, unspecified lower leg +C0840125|T047|HT|M89.47|ICD10CM|Other hypertrophic osteoarthropathy, ankle and foot|Other hypertrophic osteoarthropathy, ankle and foot +C0840125|T047|AB|M89.47|ICD10CM|Other hypertrophic osteoarthropathy, ankle and foot|Other hypertrophic osteoarthropathy, ankle and foot +C2902338|T047|AB|M89.471|ICD10CM|Other hypertrophic osteoarthropathy, right ankle and foot|Other hypertrophic osteoarthropathy, right ankle and foot +C2902338|T047|PT|M89.471|ICD10CM|Other hypertrophic osteoarthropathy, right ankle and foot|Other hypertrophic osteoarthropathy, right ankle and foot +C2902339|T047|AB|M89.472|ICD10CM|Other hypertrophic osteoarthropathy, left ankle and foot|Other hypertrophic osteoarthropathy, left ankle and foot +C2902339|T047|PT|M89.472|ICD10CM|Other hypertrophic osteoarthropathy, left ankle and foot|Other hypertrophic osteoarthropathy, left ankle and foot +C2902340|T047|AB|M89.479|ICD10CM|Other hypertrophic osteoarthropathy, unsp ankle and foot|Other hypertrophic osteoarthropathy, unsp ankle and foot +C2902340|T047|PT|M89.479|ICD10CM|Other hypertrophic osteoarthropathy, unspecified ankle and foot|Other hypertrophic osteoarthropathy, unspecified ankle and foot +C0840126|T047|PT|M89.48|ICD10CM|Other hypertrophic osteoarthropathy, other site|Other hypertrophic osteoarthropathy, other site +C0840126|T047|AB|M89.48|ICD10CM|Other hypertrophic osteoarthropathy, other site|Other hypertrophic osteoarthropathy, other site +C0840118|T047|PT|M89.49|ICD10CM|Other hypertrophic osteoarthropathy, multiple sites|Other hypertrophic osteoarthropathy, multiple sites +C0840118|T047|AB|M89.49|ICD10CM|Other hypertrophic osteoarthropathy, multiple sites|Other hypertrophic osteoarthropathy, multiple sites +C4721411|T046|PT|M89.5|ICD10|Osteolysis|Osteolysis +C4721411|T046|HT|M89.5|ICD10CM|Osteolysis|Osteolysis +C4721411|T046|AB|M89.5|ICD10CM|Osteolysis|Osteolysis +C4721411|T046|AB|M89.50|ICD10CM|Osteolysis, unspecified site|Osteolysis, unspecified site +C4721411|T046|PT|M89.50|ICD10CM|Osteolysis, unspecified site|Osteolysis, unspecified site +C2902341|T046|AB|M89.51|ICD10CM|Osteolysis, shoulder|Osteolysis, shoulder +C2902341|T046|HT|M89.51|ICD10CM|Osteolysis, shoulder|Osteolysis, shoulder +C2902342|T046|AB|M89.511|ICD10CM|Osteolysis, right shoulder|Osteolysis, right shoulder +C2902342|T046|PT|M89.511|ICD10CM|Osteolysis, right shoulder|Osteolysis, right shoulder +C2902343|T046|AB|M89.512|ICD10CM|Osteolysis, left shoulder|Osteolysis, left shoulder +C2902343|T046|PT|M89.512|ICD10CM|Osteolysis, left shoulder|Osteolysis, left shoulder +C2902341|T046|AB|M89.519|ICD10CM|Osteolysis, unspecified shoulder|Osteolysis, unspecified shoulder +C2902341|T046|PT|M89.519|ICD10CM|Osteolysis, unspecified shoulder|Osteolysis, unspecified shoulder +C0840130|T046|HT|M89.52|ICD10CM|Osteolysis, upper arm|Osteolysis, upper arm +C0840130|T046|AB|M89.52|ICD10CM|Osteolysis, upper arm|Osteolysis, upper arm +C2902344|T046|AB|M89.521|ICD10CM|Osteolysis, right upper arm|Osteolysis, right upper arm +C2902344|T046|PT|M89.521|ICD10CM|Osteolysis, right upper arm|Osteolysis, right upper arm +C2902345|T046|AB|M89.522|ICD10CM|Osteolysis, left upper arm|Osteolysis, left upper arm +C2902345|T046|PT|M89.522|ICD10CM|Osteolysis, left upper arm|Osteolysis, left upper arm +C0840130|T046|AB|M89.529|ICD10CM|Osteolysis, unspecified upper arm|Osteolysis, unspecified upper arm +C0840130|T046|PT|M89.529|ICD10CM|Osteolysis, unspecified upper arm|Osteolysis, unspecified upper arm +C0840131|T046|HT|M89.53|ICD10CM|Osteolysis, forearm|Osteolysis, forearm +C0840131|T046|AB|M89.53|ICD10CM|Osteolysis, forearm|Osteolysis, forearm +C2902346|T046|AB|M89.531|ICD10CM|Osteolysis, right forearm|Osteolysis, right forearm +C2902346|T046|PT|M89.531|ICD10CM|Osteolysis, right forearm|Osteolysis, right forearm +C2902347|T046|AB|M89.532|ICD10CM|Osteolysis, left forearm|Osteolysis, left forearm +C2902347|T046|PT|M89.532|ICD10CM|Osteolysis, left forearm|Osteolysis, left forearm +C0840131|T046|AB|M89.539|ICD10CM|Osteolysis, unspecified forearm|Osteolysis, unspecified forearm +C0840131|T046|PT|M89.539|ICD10CM|Osteolysis, unspecified forearm|Osteolysis, unspecified forearm +C0840132|T046|HT|M89.54|ICD10CM|Osteolysis, hand|Osteolysis, hand +C0840132|T046|AB|M89.54|ICD10CM|Osteolysis, hand|Osteolysis, hand +C2902348|T046|AB|M89.541|ICD10CM|Osteolysis, right hand|Osteolysis, right hand +C2902348|T046|PT|M89.541|ICD10CM|Osteolysis, right hand|Osteolysis, right hand +C2902349|T046|AB|M89.542|ICD10CM|Osteolysis, left hand|Osteolysis, left hand +C2902349|T046|PT|M89.542|ICD10CM|Osteolysis, left hand|Osteolysis, left hand +C0840132|T046|AB|M89.549|ICD10CM|Osteolysis, unspecified hand|Osteolysis, unspecified hand +C0840132|T046|PT|M89.549|ICD10CM|Osteolysis, unspecified hand|Osteolysis, unspecified hand +C2902350|T046|AB|M89.55|ICD10CM|Osteolysis, thigh|Osteolysis, thigh +C2902350|T046|HT|M89.55|ICD10CM|Osteolysis, thigh|Osteolysis, thigh +C2902351|T046|AB|M89.551|ICD10CM|Osteolysis, right thigh|Osteolysis, right thigh +C2902351|T046|PT|M89.551|ICD10CM|Osteolysis, right thigh|Osteolysis, right thigh +C2902352|T046|AB|M89.552|ICD10CM|Osteolysis, left thigh|Osteolysis, left thigh +C2902352|T046|PT|M89.552|ICD10CM|Osteolysis, left thigh|Osteolysis, left thigh +C2902350|T046|AB|M89.559|ICD10CM|Osteolysis, unspecified thigh|Osteolysis, unspecified thigh +C2902350|T046|PT|M89.559|ICD10CM|Osteolysis, unspecified thigh|Osteolysis, unspecified thigh +C0840134|T046|HT|M89.56|ICD10CM|Osteolysis, lower leg|Osteolysis, lower leg +C0840134|T046|AB|M89.56|ICD10CM|Osteolysis, lower leg|Osteolysis, lower leg +C2902353|T046|AB|M89.561|ICD10CM|Osteolysis, right lower leg|Osteolysis, right lower leg +C2902353|T046|PT|M89.561|ICD10CM|Osteolysis, right lower leg|Osteolysis, right lower leg +C2902354|T046|AB|M89.562|ICD10CM|Osteolysis, left lower leg|Osteolysis, left lower leg +C2902354|T046|PT|M89.562|ICD10CM|Osteolysis, left lower leg|Osteolysis, left lower leg +C0840134|T046|AB|M89.569|ICD10CM|Osteolysis, unspecified lower leg|Osteolysis, unspecified lower leg +C0840134|T046|PT|M89.569|ICD10CM|Osteolysis, unspecified lower leg|Osteolysis, unspecified lower leg +C0840135|T046|HT|M89.57|ICD10CM|Osteolysis, ankle and foot|Osteolysis, ankle and foot +C0840135|T046|AB|M89.57|ICD10CM|Osteolysis, ankle and foot|Osteolysis, ankle and foot +C2902355|T046|AB|M89.571|ICD10CM|Osteolysis, right ankle and foot|Osteolysis, right ankle and foot +C2902355|T046|PT|M89.571|ICD10CM|Osteolysis, right ankle and foot|Osteolysis, right ankle and foot +C2902356|T046|AB|M89.572|ICD10CM|Osteolysis, left ankle and foot|Osteolysis, left ankle and foot +C2902356|T046|PT|M89.572|ICD10CM|Osteolysis, left ankle and foot|Osteolysis, left ankle and foot +C2902357|T046|AB|M89.579|ICD10CM|Osteolysis, unspecified ankle and foot|Osteolysis, unspecified ankle and foot +C2902357|T046|PT|M89.579|ICD10CM|Osteolysis, unspecified ankle and foot|Osteolysis, unspecified ankle and foot +C0840136|T047|PT|M89.58|ICD10CM|Osteolysis, other site|Osteolysis, other site +C0840136|T047|AB|M89.58|ICD10CM|Osteolysis, other site|Osteolysis, other site +C0840128|T046|PT|M89.59|ICD10CM|Osteolysis, multiple sites|Osteolysis, multiple sites +C0840128|T046|AB|M89.59|ICD10CM|Osteolysis, multiple sites|Osteolysis, multiple sites +C0158408|T047|HT|M89.6|ICD10CM|Osteopathy after poliomyelitis|Osteopathy after poliomyelitis +C0158408|T047|AB|M89.6|ICD10CM|Osteopathy after poliomyelitis|Osteopathy after poliomyelitis +C0158408|T047|PT|M89.6|ICD10|Osteopathy after poliomyelitis|Osteopathy after poliomyelitis +C0158408|T047|AB|M89.60|ICD10CM|Osteopathy after poliomyelitis, unspecified site|Osteopathy after poliomyelitis, unspecified site +C0158408|T047|PT|M89.60|ICD10CM|Osteopathy after poliomyelitis, unspecified site|Osteopathy after poliomyelitis, unspecified site +C2902359|T047|AB|M89.61|ICD10CM|Osteopathy after poliomyelitis, shoulder|Osteopathy after poliomyelitis, shoulder +C2902359|T047|HT|M89.61|ICD10CM|Osteopathy after poliomyelitis, shoulder|Osteopathy after poliomyelitis, shoulder +C2902360|T047|AB|M89.611|ICD10CM|Osteopathy after poliomyelitis, right shoulder|Osteopathy after poliomyelitis, right shoulder +C2902360|T047|PT|M89.611|ICD10CM|Osteopathy after poliomyelitis, right shoulder|Osteopathy after poliomyelitis, right shoulder +C2902361|T047|AB|M89.612|ICD10CM|Osteopathy after poliomyelitis, left shoulder|Osteopathy after poliomyelitis, left shoulder +C2902361|T047|PT|M89.612|ICD10CM|Osteopathy after poliomyelitis, left shoulder|Osteopathy after poliomyelitis, left shoulder +C2902362|T047|AB|M89.619|ICD10CM|Osteopathy after poliomyelitis, unspecified shoulder|Osteopathy after poliomyelitis, unspecified shoulder +C2902362|T047|PT|M89.619|ICD10CM|Osteopathy after poliomyelitis, unspecified shoulder|Osteopathy after poliomyelitis, unspecified shoulder +C0840140|T047|HT|M89.62|ICD10CM|Osteopathy after poliomyelitis, upper arm|Osteopathy after poliomyelitis, upper arm +C0840140|T047|AB|M89.62|ICD10CM|Osteopathy after poliomyelitis, upper arm|Osteopathy after poliomyelitis, upper arm +C2902363|T047|AB|M89.621|ICD10CM|Osteopathy after poliomyelitis, right upper arm|Osteopathy after poliomyelitis, right upper arm +C2902363|T047|PT|M89.621|ICD10CM|Osteopathy after poliomyelitis, right upper arm|Osteopathy after poliomyelitis, right upper arm +C2902364|T047|AB|M89.622|ICD10CM|Osteopathy after poliomyelitis, left upper arm|Osteopathy after poliomyelitis, left upper arm +C2902364|T047|PT|M89.622|ICD10CM|Osteopathy after poliomyelitis, left upper arm|Osteopathy after poliomyelitis, left upper arm +C2902365|T047|AB|M89.629|ICD10CM|Osteopathy after poliomyelitis, unspecified upper arm|Osteopathy after poliomyelitis, unspecified upper arm +C2902365|T047|PT|M89.629|ICD10CM|Osteopathy after poliomyelitis, unspecified upper arm|Osteopathy after poliomyelitis, unspecified upper arm +C0840141|T047|HT|M89.63|ICD10CM|Osteopathy after poliomyelitis, forearm|Osteopathy after poliomyelitis, forearm +C0840141|T047|AB|M89.63|ICD10CM|Osteopathy after poliomyelitis, forearm|Osteopathy after poliomyelitis, forearm +C2902366|T047|AB|M89.631|ICD10CM|Osteopathy after poliomyelitis, right forearm|Osteopathy after poliomyelitis, right forearm +C2902366|T047|PT|M89.631|ICD10CM|Osteopathy after poliomyelitis, right forearm|Osteopathy after poliomyelitis, right forearm +C2902367|T047|AB|M89.632|ICD10CM|Osteopathy after poliomyelitis, left forearm|Osteopathy after poliomyelitis, left forearm +C2902367|T047|PT|M89.632|ICD10CM|Osteopathy after poliomyelitis, left forearm|Osteopathy after poliomyelitis, left forearm +C2902368|T047|AB|M89.639|ICD10CM|Osteopathy after poliomyelitis, unspecified forearm|Osteopathy after poliomyelitis, unspecified forearm +C2902368|T047|PT|M89.639|ICD10CM|Osteopathy after poliomyelitis, unspecified forearm|Osteopathy after poliomyelitis, unspecified forearm +C0840142|T047|HT|M89.64|ICD10CM|Osteopathy after poliomyelitis, hand|Osteopathy after poliomyelitis, hand +C0840142|T047|AB|M89.64|ICD10CM|Osteopathy after poliomyelitis, hand|Osteopathy after poliomyelitis, hand +C2902369|T047|AB|M89.641|ICD10CM|Osteopathy after poliomyelitis, right hand|Osteopathy after poliomyelitis, right hand +C2902369|T047|PT|M89.641|ICD10CM|Osteopathy after poliomyelitis, right hand|Osteopathy after poliomyelitis, right hand +C2902370|T047|AB|M89.642|ICD10CM|Osteopathy after poliomyelitis, left hand|Osteopathy after poliomyelitis, left hand +C2902370|T047|PT|M89.642|ICD10CM|Osteopathy after poliomyelitis, left hand|Osteopathy after poliomyelitis, left hand +C2902371|T047|AB|M89.649|ICD10CM|Osteopathy after poliomyelitis, unspecified hand|Osteopathy after poliomyelitis, unspecified hand +C2902371|T047|PT|M89.649|ICD10CM|Osteopathy after poliomyelitis, unspecified hand|Osteopathy after poliomyelitis, unspecified hand +C2902372|T047|AB|M89.65|ICD10CM|Osteopathy after poliomyelitis, thigh|Osteopathy after poliomyelitis, thigh +C2902372|T047|HT|M89.65|ICD10CM|Osteopathy after poliomyelitis, thigh|Osteopathy after poliomyelitis, thigh +C2902373|T047|AB|M89.651|ICD10CM|Osteopathy after poliomyelitis, right thigh|Osteopathy after poliomyelitis, right thigh +C2902373|T047|PT|M89.651|ICD10CM|Osteopathy after poliomyelitis, right thigh|Osteopathy after poliomyelitis, right thigh +C2902374|T047|AB|M89.652|ICD10CM|Osteopathy after poliomyelitis, left thigh|Osteopathy after poliomyelitis, left thigh +C2902374|T047|PT|M89.652|ICD10CM|Osteopathy after poliomyelitis, left thigh|Osteopathy after poliomyelitis, left thigh +C2902375|T047|AB|M89.659|ICD10CM|Osteopathy after poliomyelitis, unspecified thigh|Osteopathy after poliomyelitis, unspecified thigh +C2902375|T047|PT|M89.659|ICD10CM|Osteopathy after poliomyelitis, unspecified thigh|Osteopathy after poliomyelitis, unspecified thigh +C0840144|T047|HT|M89.66|ICD10CM|Osteopathy after poliomyelitis, lower leg|Osteopathy after poliomyelitis, lower leg +C0840144|T047|AB|M89.66|ICD10CM|Osteopathy after poliomyelitis, lower leg|Osteopathy after poliomyelitis, lower leg +C2902376|T047|AB|M89.661|ICD10CM|Osteopathy after poliomyelitis, right lower leg|Osteopathy after poliomyelitis, right lower leg +C2902376|T047|PT|M89.661|ICD10CM|Osteopathy after poliomyelitis, right lower leg|Osteopathy after poliomyelitis, right lower leg +C2902377|T047|AB|M89.662|ICD10CM|Osteopathy after poliomyelitis, left lower leg|Osteopathy after poliomyelitis, left lower leg +C2902377|T047|PT|M89.662|ICD10CM|Osteopathy after poliomyelitis, left lower leg|Osteopathy after poliomyelitis, left lower leg +C2902378|T047|AB|M89.669|ICD10CM|Osteopathy after poliomyelitis, unspecified lower leg|Osteopathy after poliomyelitis, unspecified lower leg +C2902378|T047|PT|M89.669|ICD10CM|Osteopathy after poliomyelitis, unspecified lower leg|Osteopathy after poliomyelitis, unspecified lower leg +C0840145|T047|HT|M89.67|ICD10CM|Osteopathy after poliomyelitis, ankle and foot|Osteopathy after poliomyelitis, ankle and foot +C0840145|T047|AB|M89.67|ICD10CM|Osteopathy after poliomyelitis, ankle and foot|Osteopathy after poliomyelitis, ankle and foot +C2902379|T047|AB|M89.671|ICD10CM|Osteopathy after poliomyelitis, right ankle and foot|Osteopathy after poliomyelitis, right ankle and foot +C2902379|T047|PT|M89.671|ICD10CM|Osteopathy after poliomyelitis, right ankle and foot|Osteopathy after poliomyelitis, right ankle and foot +C2902380|T047|AB|M89.672|ICD10CM|Osteopathy after poliomyelitis, left ankle and foot|Osteopathy after poliomyelitis, left ankle and foot +C2902380|T047|PT|M89.672|ICD10CM|Osteopathy after poliomyelitis, left ankle and foot|Osteopathy after poliomyelitis, left ankle and foot +C2902381|T047|AB|M89.679|ICD10CM|Osteopathy after poliomyelitis, unspecified ankle and foot|Osteopathy after poliomyelitis, unspecified ankle and foot +C2902381|T047|PT|M89.679|ICD10CM|Osteopathy after poliomyelitis, unspecified ankle and foot|Osteopathy after poliomyelitis, unspecified ankle and foot +C0840146|T047|PT|M89.68|ICD10CM|Osteopathy after poliomyelitis, other site|Osteopathy after poliomyelitis, other site +C0840146|T047|AB|M89.68|ICD10CM|Osteopathy after poliomyelitis, other site|Osteopathy after poliomyelitis, other site +C0840138|T047|PT|M89.69|ICD10CM|Osteopathy after poliomyelitis, multiple sites|Osteopathy after poliomyelitis, multiple sites +C0840138|T047|AB|M89.69|ICD10CM|Osteopathy after poliomyelitis, multiple sites|Osteopathy after poliomyelitis, multiple sites +C1719624|T047|AB|M89.7|ICD10CM|Major osseous defect|Major osseous defect +C1719624|T047|HT|M89.7|ICD10CM|Major osseous defect|Major osseous defect +C2902382|T047|AB|M89.70|ICD10CM|Major osseous defect, unspecified site|Major osseous defect, unspecified site +C2902382|T047|PT|M89.70|ICD10CM|Major osseous defect, unspecified site|Major osseous defect, unspecified site +C2902383|T047|ET|M89.71|ICD10CM|Major osseous defect clavicle or scapula|Major osseous defect clavicle or scapula +C2902384|T047|AB|M89.71|ICD10CM|Major osseous defect, shoulder region|Major osseous defect, shoulder region +C2902384|T047|HT|M89.71|ICD10CM|Major osseous defect, shoulder region|Major osseous defect, shoulder region +C2902385|T047|AB|M89.711|ICD10CM|Major osseous defect, right shoulder region|Major osseous defect, right shoulder region +C2902385|T047|PT|M89.711|ICD10CM|Major osseous defect, right shoulder region|Major osseous defect, right shoulder region +C2902386|T047|AB|M89.712|ICD10CM|Major osseous defect, left shoulder region|Major osseous defect, left shoulder region +C2902386|T047|PT|M89.712|ICD10CM|Major osseous defect, left shoulder region|Major osseous defect, left shoulder region +C2902387|T047|AB|M89.719|ICD10CM|Major osseous defect, unspecified shoulder region|Major osseous defect, unspecified shoulder region +C2902387|T047|PT|M89.719|ICD10CM|Major osseous defect, unspecified shoulder region|Major osseous defect, unspecified shoulder region +C2902388|T047|AB|M89.72|ICD10CM|Major osseous defect, humerus|Major osseous defect, humerus +C2902388|T047|HT|M89.72|ICD10CM|Major osseous defect, humerus|Major osseous defect, humerus +C2902389|T047|AB|M89.721|ICD10CM|Major osseous defect, right humerus|Major osseous defect, right humerus +C2902389|T047|PT|M89.721|ICD10CM|Major osseous defect, right humerus|Major osseous defect, right humerus +C2902390|T047|AB|M89.722|ICD10CM|Major osseous defect, left humerus|Major osseous defect, left humerus +C2902390|T047|PT|M89.722|ICD10CM|Major osseous defect, left humerus|Major osseous defect, left humerus +C2902391|T047|AB|M89.729|ICD10CM|Major osseous defect, unspecified humerus|Major osseous defect, unspecified humerus +C2902391|T047|PT|M89.729|ICD10CM|Major osseous defect, unspecified humerus|Major osseous defect, unspecified humerus +C2902392|T047|ET|M89.73|ICD10CM|Major osseous defect of radius and ulna|Major osseous defect of radius and ulna +C2902393|T047|AB|M89.73|ICD10CM|Major osseous defect, forearm|Major osseous defect, forearm +C2902393|T047|HT|M89.73|ICD10CM|Major osseous defect, forearm|Major osseous defect, forearm +C2902394|T047|AB|M89.731|ICD10CM|Major osseous defect, right forearm|Major osseous defect, right forearm +C2902394|T047|PT|M89.731|ICD10CM|Major osseous defect, right forearm|Major osseous defect, right forearm +C2902395|T047|AB|M89.732|ICD10CM|Major osseous defect, left forearm|Major osseous defect, left forearm +C2902395|T047|PT|M89.732|ICD10CM|Major osseous defect, left forearm|Major osseous defect, left forearm +C2902396|T047|AB|M89.739|ICD10CM|Major osseous defect, unspecified forearm|Major osseous defect, unspecified forearm +C2902396|T047|PT|M89.739|ICD10CM|Major osseous defect, unspecified forearm|Major osseous defect, unspecified forearm +C2902397|T047|ET|M89.74|ICD10CM|Major osseous defect of carpus, fingers, metacarpus|Major osseous defect of carpus, fingers, metacarpus +C2902398|T047|AB|M89.74|ICD10CM|Major osseous defect, hand|Major osseous defect, hand +C2902398|T047|HT|M89.74|ICD10CM|Major osseous defect, hand|Major osseous defect, hand +C2902399|T047|AB|M89.741|ICD10CM|Major osseous defect, right hand|Major osseous defect, right hand +C2902399|T047|PT|M89.741|ICD10CM|Major osseous defect, right hand|Major osseous defect, right hand +C2902400|T047|AB|M89.742|ICD10CM|Major osseous defect, left hand|Major osseous defect, left hand +C2902400|T047|PT|M89.742|ICD10CM|Major osseous defect, left hand|Major osseous defect, left hand +C2902401|T047|AB|M89.749|ICD10CM|Major osseous defect, unspecified hand|Major osseous defect, unspecified hand +C2902401|T047|PT|M89.749|ICD10CM|Major osseous defect, unspecified hand|Major osseous defect, unspecified hand +C2902402|T047|ET|M89.75|ICD10CM|Major osseous defect of femur and pelvis|Major osseous defect of femur and pelvis +C2902403|T047|AB|M89.75|ICD10CM|Major osseous defect, pelvic region and thigh|Major osseous defect, pelvic region and thigh +C2902403|T047|HT|M89.75|ICD10CM|Major osseous defect, pelvic region and thigh|Major osseous defect, pelvic region and thigh +C2902404|T047|AB|M89.751|ICD10CM|Major osseous defect, right pelvic region and thigh|Major osseous defect, right pelvic region and thigh +C2902404|T047|PT|M89.751|ICD10CM|Major osseous defect, right pelvic region and thigh|Major osseous defect, right pelvic region and thigh +C2902405|T047|AB|M89.752|ICD10CM|Major osseous defect, left pelvic region and thigh|Major osseous defect, left pelvic region and thigh +C2902405|T047|PT|M89.752|ICD10CM|Major osseous defect, left pelvic region and thigh|Major osseous defect, left pelvic region and thigh +C2902406|T047|AB|M89.759|ICD10CM|Major osseous defect, unspecified pelvic region and thigh|Major osseous defect, unspecified pelvic region and thigh +C2902406|T047|PT|M89.759|ICD10CM|Major osseous defect, unspecified pelvic region and thigh|Major osseous defect, unspecified pelvic region and thigh +C2902407|T047|ET|M89.76|ICD10CM|Major osseous defect of fibula and tibia|Major osseous defect of fibula and tibia +C2902408|T047|AB|M89.76|ICD10CM|Major osseous defect, lower leg|Major osseous defect, lower leg +C2902408|T047|HT|M89.76|ICD10CM|Major osseous defect, lower leg|Major osseous defect, lower leg +C2902409|T047|AB|M89.761|ICD10CM|Major osseous defect, right lower leg|Major osseous defect, right lower leg +C2902409|T047|PT|M89.761|ICD10CM|Major osseous defect, right lower leg|Major osseous defect, right lower leg +C2902410|T047|AB|M89.762|ICD10CM|Major osseous defect, left lower leg|Major osseous defect, left lower leg +C2902410|T047|PT|M89.762|ICD10CM|Major osseous defect, left lower leg|Major osseous defect, left lower leg +C2902411|T047|AB|M89.769|ICD10CM|Major osseous defect, unspecified lower leg|Major osseous defect, unspecified lower leg +C2902411|T047|PT|M89.769|ICD10CM|Major osseous defect, unspecified lower leg|Major osseous defect, unspecified lower leg +C2902412|T047|ET|M89.77|ICD10CM|Major osseous defect of metatarsus, tarsus, toes|Major osseous defect of metatarsus, tarsus, toes +C2902413|T047|AB|M89.77|ICD10CM|Major osseous defect, ankle and foot|Major osseous defect, ankle and foot +C2902413|T047|HT|M89.77|ICD10CM|Major osseous defect, ankle and foot|Major osseous defect, ankle and foot +C2902414|T047|AB|M89.771|ICD10CM|Major osseous defect, right ankle and foot|Major osseous defect, right ankle and foot +C2902414|T047|PT|M89.771|ICD10CM|Major osseous defect, right ankle and foot|Major osseous defect, right ankle and foot +C2902415|T047|AB|M89.772|ICD10CM|Major osseous defect, left ankle and foot|Major osseous defect, left ankle and foot +C2902415|T047|PT|M89.772|ICD10CM|Major osseous defect, left ankle and foot|Major osseous defect, left ankle and foot +C2902416|T047|AB|M89.779|ICD10CM|Major osseous defect, unspecified ankle and foot|Major osseous defect, unspecified ankle and foot +C2902416|T047|PT|M89.779|ICD10CM|Major osseous defect, unspecified ankle and foot|Major osseous defect, unspecified ankle and foot +C2902417|T047|AB|M89.78|ICD10CM|Major osseous defect, other site|Major osseous defect, other site +C2902417|T047|PT|M89.78|ICD10CM|Major osseous defect, other site|Major osseous defect, other site +C2902418|T047|AB|M89.79|ICD10CM|Major osseous defect, multiple sites|Major osseous defect, multiple sites +C2902418|T047|PT|M89.79|ICD10CM|Major osseous defect, multiple sites|Major osseous defect, multiple sites +C0020497|T047|ET|M89.8|ICD10CM|Infantile cortical hyperostoses|Infantile cortical hyperostoses +C0477691|T047|PT|M89.8|ICD10|Other specified disorders of bone|Other specified disorders of bone +C0477691|T047|HT|M89.8|ICD10CM|Other specified disorders of bone|Other specified disorders of bone +C0477691|T047|AB|M89.8|ICD10CM|Other specified disorders of bone|Other specified disorders of bone +C2902419|T047|ET|M89.8|ICD10CM|Post-traumatic subperiosteal ossification|Post-traumatic subperiosteal ossification +C0477691|T047|HT|M89.8X|ICD10CM|Other specified disorders of bone|Other specified disorders of bone +C0477691|T047|AB|M89.8X|ICD10CM|Other specified disorders of bone|Other specified disorders of bone +C0840148|T047|PT|M89.8X0|ICD10CM|Other specified disorders of bone, multiple sites|Other specified disorders of bone, multiple sites +C0840148|T047|AB|M89.8X0|ICD10CM|Other specified disorders of bone, multiple sites|Other specified disorders of bone, multiple sites +C2902420|T047|AB|M89.8X1|ICD10CM|Other specified disorders of bone, shoulder|Other specified disorders of bone, shoulder +C2902420|T047|PT|M89.8X1|ICD10CM|Other specified disorders of bone, shoulder|Other specified disorders of bone, shoulder +C0840150|T047|PT|M89.8X2|ICD10CM|Other specified disorders of bone, upper arm|Other specified disorders of bone, upper arm +C0840150|T047|AB|M89.8X2|ICD10CM|Other specified disorders of bone, upper arm|Other specified disorders of bone, upper arm +C0840151|T047|PT|M89.8X3|ICD10CM|Other specified disorders of bone, forearm|Other specified disorders of bone, forearm +C0840151|T047|AB|M89.8X3|ICD10CM|Other specified disorders of bone, forearm|Other specified disorders of bone, forearm +C0840152|T047|PT|M89.8X4|ICD10CM|Other specified disorders of bone, hand|Other specified disorders of bone, hand +C0840152|T047|AB|M89.8X4|ICD10CM|Other specified disorders of bone, hand|Other specified disorders of bone, hand +C2902421|T047|AB|M89.8X5|ICD10CM|Other specified disorders of bone, thigh|Other specified disorders of bone, thigh +C2902421|T047|PT|M89.8X5|ICD10CM|Other specified disorders of bone, thigh|Other specified disorders of bone, thigh +C0840154|T047|PT|M89.8X6|ICD10CM|Other specified disorders of bone, lower leg|Other specified disorders of bone, lower leg +C0840154|T047|AB|M89.8X6|ICD10CM|Other specified disorders of bone, lower leg|Other specified disorders of bone, lower leg +C0840155|T047|PT|M89.8X7|ICD10CM|Other specified disorders of bone, ankle and foot|Other specified disorders of bone, ankle and foot +C0840155|T047|AB|M89.8X7|ICD10CM|Other specified disorders of bone, ankle and foot|Other specified disorders of bone, ankle and foot +C0840156|T047|PT|M89.8X8|ICD10CM|Other specified disorders of bone, other site|Other specified disorders of bone, other site +C0840156|T047|AB|M89.8X8|ICD10CM|Other specified disorders of bone, other site|Other specified disorders of bone, other site +C0477691|T047|AB|M89.8X9|ICD10CM|Other specified disorders of bone, unspecified site|Other specified disorders of bone, unspecified site +C0477691|T047|PT|M89.8X9|ICD10CM|Other specified disorders of bone, unspecified site|Other specified disorders of bone, unspecified site +C0005940|T047|PT|M89.9|ICD10CM|Disorder of bone, unspecified|Disorder of bone, unspecified +C0005940|T047|AB|M89.9|ICD10CM|Disorder of bone, unspecified|Disorder of bone, unspecified +C0005940|T047|PT|M89.9|ICD10|Disorder of bone, unspecified|Disorder of bone, unspecified +C0694524|T047|HT|M90|ICD10|Osteopathies in diseases classified elsewhere|Osteopathies in diseases classified elsewhere +C0694524|T047|AB|M90|ICD10CM|Osteopathies in diseases classified elsewhere|Osteopathies in diseases classified elsewhere +C0694524|T047|HT|M90|ICD10CM|Osteopathies in diseases classified elsewhere|Osteopathies in diseases classified elsewhere +C3203357|T047|PT|M90.0|ICD10|Tuberculosis of bone|Tuberculosis of bone +C0477692|T047|PT|M90.1|ICD10|Periostitis in other infectious diseases classified elsewhere|Periostitis in other infectious diseases classified elsewhere +C0477693|T020|PT|M90.2|ICD10|Osteopathy in other infectious diseases classified elsewhere|Osteopathy in other infectious diseases classified elsewhere +C0556003|T046|PT|M90.3|ICD10|Osteonecrosis in caisson disease|Osteonecrosis in caisson disease +C0475568|T046|PT|M90.4|ICD10|Osteonecrosis due to haemoglobinopathy|Osteonecrosis due to haemoglobinopathy +C0475568|T046|PT|M90.4|ICD10AE|Osteonecrosis due to hemoglobinopathy|Osteonecrosis due to hemoglobinopathy +C2902422|T047|HT|M90.5|ICD10CM|Osteonecrosis in diseases classified elsewhere|Osteonecrosis in diseases classified elsewhere +C2902422|T047|AB|M90.5|ICD10CM|Osteonecrosis in diseases classified elsewhere|Osteonecrosis in diseases classified elsewhere +C0477695|T047|PT|M90.5|ICD10|Osteonecrosis in other diseases classified elsewhere|Osteonecrosis in other diseases classified elsewhere +C2902423|T047|AB|M90.50|ICD10CM|Osteonecrosis in diseases classified elsewhere, unsp site|Osteonecrosis in diseases classified elsewhere, unsp site +C2902423|T047|PT|M90.50|ICD10CM|Osteonecrosis in diseases classified elsewhere, unspecified site|Osteonecrosis in diseases classified elsewhere, unspecified site +C2902424|T047|AB|M90.51|ICD10CM|Osteonecrosis in diseases classified elsewhere, shoulder|Osteonecrosis in diseases classified elsewhere, shoulder +C2902424|T047|HT|M90.51|ICD10CM|Osteonecrosis in diseases classified elsewhere, shoulder|Osteonecrosis in diseases classified elsewhere, shoulder +C2902425|T047|AB|M90.511|ICD10CM|Osteonecrosis in diseases classd elswhr, right shoulder|Osteonecrosis in diseases classd elswhr, right shoulder +C2902425|T047|PT|M90.511|ICD10CM|Osteonecrosis in diseases classified elsewhere, right shoulder|Osteonecrosis in diseases classified elsewhere, right shoulder +C2902426|T047|AB|M90.512|ICD10CM|Osteonecrosis in diseases classd elswhr, left shoulder|Osteonecrosis in diseases classd elswhr, left shoulder +C2902426|T047|PT|M90.512|ICD10CM|Osteonecrosis in diseases classified elsewhere, left shoulder|Osteonecrosis in diseases classified elsewhere, left shoulder +C2902427|T047|AB|M90.519|ICD10CM|Osteonecrosis in diseases classd elswhr, unsp shoulder|Osteonecrosis in diseases classd elswhr, unsp shoulder +C2902427|T047|PT|M90.519|ICD10CM|Osteonecrosis in diseases classified elsewhere, unspecified shoulder|Osteonecrosis in diseases classified elsewhere, unspecified shoulder +C2902428|T047|AB|M90.52|ICD10CM|Osteonecrosis in diseases classified elsewhere, upper arm|Osteonecrosis in diseases classified elsewhere, upper arm +C2902428|T047|HT|M90.52|ICD10CM|Osteonecrosis in diseases classified elsewhere, upper arm|Osteonecrosis in diseases classified elsewhere, upper arm +C2902429|T047|AB|M90.521|ICD10CM|Osteonecrosis in diseases classd elswhr, right upper arm|Osteonecrosis in diseases classd elswhr, right upper arm +C2902429|T047|PT|M90.521|ICD10CM|Osteonecrosis in diseases classified elsewhere, right upper arm|Osteonecrosis in diseases classified elsewhere, right upper arm +C2902430|T047|AB|M90.522|ICD10CM|Osteonecrosis in diseases classd elswhr, left upper arm|Osteonecrosis in diseases classd elswhr, left upper arm +C2902430|T047|PT|M90.522|ICD10CM|Osteonecrosis in diseases classified elsewhere, left upper arm|Osteonecrosis in diseases classified elsewhere, left upper arm +C2902431|T047|AB|M90.529|ICD10CM|Osteonecrosis in diseases classd elswhr, unsp upper arm|Osteonecrosis in diseases classd elswhr, unsp upper arm +C2902431|T047|PT|M90.529|ICD10CM|Osteonecrosis in diseases classified elsewhere, unspecified upper arm|Osteonecrosis in diseases classified elsewhere, unspecified upper arm +C2902432|T047|AB|M90.53|ICD10CM|Osteonecrosis in diseases classified elsewhere, forearm|Osteonecrosis in diseases classified elsewhere, forearm +C2902432|T047|HT|M90.53|ICD10CM|Osteonecrosis in diseases classified elsewhere, forearm|Osteonecrosis in diseases classified elsewhere, forearm +C2902433|T047|AB|M90.531|ICD10CM|Osteonecrosis in diseases classd elswhr, right forearm|Osteonecrosis in diseases classd elswhr, right forearm +C2902433|T047|PT|M90.531|ICD10CM|Osteonecrosis in diseases classified elsewhere, right forearm|Osteonecrosis in diseases classified elsewhere, right forearm +C2902434|T047|AB|M90.532|ICD10CM|Osteonecrosis in diseases classified elsewhere, left forearm|Osteonecrosis in diseases classified elsewhere, left forearm +C2902434|T047|PT|M90.532|ICD10CM|Osteonecrosis in diseases classified elsewhere, left forearm|Osteonecrosis in diseases classified elsewhere, left forearm +C2902435|T047|AB|M90.539|ICD10CM|Osteonecrosis in diseases classified elsewhere, unsp forearm|Osteonecrosis in diseases classified elsewhere, unsp forearm +C2902435|T047|PT|M90.539|ICD10CM|Osteonecrosis in diseases classified elsewhere, unspecified forearm|Osteonecrosis in diseases classified elsewhere, unspecified forearm +C2902436|T047|AB|M90.54|ICD10CM|Osteonecrosis in diseases classified elsewhere, hand|Osteonecrosis in diseases classified elsewhere, hand +C2902436|T047|HT|M90.54|ICD10CM|Osteonecrosis in diseases classified elsewhere, hand|Osteonecrosis in diseases classified elsewhere, hand +C2902437|T047|AB|M90.541|ICD10CM|Osteonecrosis in diseases classified elsewhere, right hand|Osteonecrosis in diseases classified elsewhere, right hand +C2902437|T047|PT|M90.541|ICD10CM|Osteonecrosis in diseases classified elsewhere, right hand|Osteonecrosis in diseases classified elsewhere, right hand +C2902438|T047|AB|M90.542|ICD10CM|Osteonecrosis in diseases classified elsewhere, left hand|Osteonecrosis in diseases classified elsewhere, left hand +C2902438|T047|PT|M90.542|ICD10CM|Osteonecrosis in diseases classified elsewhere, left hand|Osteonecrosis in diseases classified elsewhere, left hand +C2902439|T047|AB|M90.549|ICD10CM|Osteonecrosis in diseases classified elsewhere, unsp hand|Osteonecrosis in diseases classified elsewhere, unsp hand +C2902439|T047|PT|M90.549|ICD10CM|Osteonecrosis in diseases classified elsewhere, unspecified hand|Osteonecrosis in diseases classified elsewhere, unspecified hand +C2902440|T047|AB|M90.55|ICD10CM|Osteonecrosis in diseases classified elsewhere, thigh|Osteonecrosis in diseases classified elsewhere, thigh +C2902440|T047|HT|M90.55|ICD10CM|Osteonecrosis in diseases classified elsewhere, thigh|Osteonecrosis in diseases classified elsewhere, thigh +C2902441|T047|AB|M90.551|ICD10CM|Osteonecrosis in diseases classified elsewhere, right thigh|Osteonecrosis in diseases classified elsewhere, right thigh +C2902441|T047|PT|M90.551|ICD10CM|Osteonecrosis in diseases classified elsewhere, right thigh|Osteonecrosis in diseases classified elsewhere, right thigh +C2902442|T047|AB|M90.552|ICD10CM|Osteonecrosis in diseases classified elsewhere, left thigh|Osteonecrosis in diseases classified elsewhere, left thigh +C2902442|T047|PT|M90.552|ICD10CM|Osteonecrosis in diseases classified elsewhere, left thigh|Osteonecrosis in diseases classified elsewhere, left thigh +C2902443|T047|AB|M90.559|ICD10CM|Osteonecrosis in diseases classified elsewhere, unsp thigh|Osteonecrosis in diseases classified elsewhere, unsp thigh +C2902443|T047|PT|M90.559|ICD10CM|Osteonecrosis in diseases classified elsewhere, unspecified thigh|Osteonecrosis in diseases classified elsewhere, unspecified thigh +C2902444|T047|AB|M90.56|ICD10CM|Osteonecrosis in diseases classified elsewhere, lower leg|Osteonecrosis in diseases classified elsewhere, lower leg +C2902444|T047|HT|M90.56|ICD10CM|Osteonecrosis in diseases classified elsewhere, lower leg|Osteonecrosis in diseases classified elsewhere, lower leg +C2902445|T047|AB|M90.561|ICD10CM|Osteonecrosis in diseases classd elswhr, right lower leg|Osteonecrosis in diseases classd elswhr, right lower leg +C2902445|T047|PT|M90.561|ICD10CM|Osteonecrosis in diseases classified elsewhere, right lower leg|Osteonecrosis in diseases classified elsewhere, right lower leg +C2902446|T047|AB|M90.562|ICD10CM|Osteonecrosis in diseases classd elswhr, left lower leg|Osteonecrosis in diseases classd elswhr, left lower leg +C2902446|T047|PT|M90.562|ICD10CM|Osteonecrosis in diseases classified elsewhere, left lower leg|Osteonecrosis in diseases classified elsewhere, left lower leg +C2902447|T047|AB|M90.569|ICD10CM|Osteonecrosis in diseases classd elswhr, unsp lower leg|Osteonecrosis in diseases classd elswhr, unsp lower leg +C2902447|T047|PT|M90.569|ICD10CM|Osteonecrosis in diseases classified elsewhere, unspecified lower leg|Osteonecrosis in diseases classified elsewhere, unspecified lower leg +C2902448|T047|AB|M90.57|ICD10CM|Osteonecrosis in diseases classd elswhr, ankle and foot|Osteonecrosis in diseases classd elswhr, ankle and foot +C2902448|T047|HT|M90.57|ICD10CM|Osteonecrosis in diseases classified elsewhere, ankle and foot|Osteonecrosis in diseases classified elsewhere, ankle and foot +C2902449|T047|AB|M90.571|ICD10CM|Osteonecrosis in diseases classd elswhr, right ank/ft|Osteonecrosis in diseases classd elswhr, right ank/ft +C2902449|T047|PT|M90.571|ICD10CM|Osteonecrosis in diseases classified elsewhere, right ankle and foot|Osteonecrosis in diseases classified elsewhere, right ankle and foot +C2902450|T047|AB|M90.572|ICD10CM|Osteonecrosis in diseases classd elswhr, left ankle and foot|Osteonecrosis in diseases classd elswhr, left ankle and foot +C2902450|T047|PT|M90.572|ICD10CM|Osteonecrosis in diseases classified elsewhere, left ankle and foot|Osteonecrosis in diseases classified elsewhere, left ankle and foot +C2902451|T047|AB|M90.579|ICD10CM|Osteonecrosis in diseases classd elswhr, unsp ankle and foot|Osteonecrosis in diseases classd elswhr, unsp ankle and foot +C2902451|T047|PT|M90.579|ICD10CM|Osteonecrosis in diseases classified elsewhere, unspecified ankle and foot|Osteonecrosis in diseases classified elsewhere, unspecified ankle and foot +C2902452|T047|AB|M90.58|ICD10CM|Osteonecrosis in diseases classified elsewhere, other site|Osteonecrosis in diseases classified elsewhere, other site +C2902452|T047|PT|M90.58|ICD10CM|Osteonecrosis in diseases classified elsewhere, other site|Osteonecrosis in diseases classified elsewhere, other site +C2902453|T047|AB|M90.59|ICD10CM|Osteonecrosis in diseases classd elswhr, multiple sites|Osteonecrosis in diseases classd elswhr, multiple sites +C2902453|T047|PT|M90.59|ICD10CM|Osteonecrosis in diseases classified elsewhere, multiple sites|Osteonecrosis in diseases classified elsewhere, multiple sites +C2902454|T191|ET|M90.6|ICD10CM|Osteitis deformans in malignant neoplasm of bone|Osteitis deformans in malignant neoplasm of bone +C0452141|T191|PT|M90.6|ICD10|Osteitis deformans in neoplastic disease|Osteitis deformans in neoplastic disease +C0452141|T191|AB|M90.6|ICD10CM|Osteitis deformans in neoplastic diseases|Osteitis deformans in neoplastic diseases +C0452141|T191|HT|M90.6|ICD10CM|Osteitis deformans in neoplastic diseases|Osteitis deformans in neoplastic diseases +C0452141|T191|AB|M90.60|ICD10CM|Osteitis deformans in neoplastic diseases, unspecified site|Osteitis deformans in neoplastic diseases, unspecified site +C0452141|T191|PT|M90.60|ICD10CM|Osteitis deformans in neoplastic diseases, unspecified site|Osteitis deformans in neoplastic diseases, unspecified site +C2902455|T191|AB|M90.61|ICD10CM|Osteitis deformans in neoplastic diseases, shoulder|Osteitis deformans in neoplastic diseases, shoulder +C2902455|T191|HT|M90.61|ICD10CM|Osteitis deformans in neoplastic diseases, shoulder|Osteitis deformans in neoplastic diseases, shoulder +C2902456|T191|AB|M90.611|ICD10CM|Osteitis deformans in neoplastic diseases, right shoulder|Osteitis deformans in neoplastic diseases, right shoulder +C2902456|T191|PT|M90.611|ICD10CM|Osteitis deformans in neoplastic diseases, right shoulder|Osteitis deformans in neoplastic diseases, right shoulder +C2902457|T191|AB|M90.612|ICD10CM|Osteitis deformans in neoplastic diseases, left shoulder|Osteitis deformans in neoplastic diseases, left shoulder +C2902457|T191|PT|M90.612|ICD10CM|Osteitis deformans in neoplastic diseases, left shoulder|Osteitis deformans in neoplastic diseases, left shoulder +C2902458|T191|AB|M90.619|ICD10CM|Osteitis deformans in neoplastic diseases, unsp shoulder|Osteitis deformans in neoplastic diseases, unsp shoulder +C2902458|T191|PT|M90.619|ICD10CM|Osteitis deformans in neoplastic diseases, unspecified shoulder|Osteitis deformans in neoplastic diseases, unspecified shoulder +C0840221|T191|AB|M90.62|ICD10CM|Osteitis deformans in neoplastic diseases, upper arm|Osteitis deformans in neoplastic diseases, upper arm +C0840221|T191|HT|M90.62|ICD10CM|Osteitis deformans in neoplastic diseases, upper arm|Osteitis deformans in neoplastic diseases, upper arm +C2902459|T191|AB|M90.621|ICD10CM|Osteitis deformans in neoplastic diseases, right upper arm|Osteitis deformans in neoplastic diseases, right upper arm +C2902459|T191|PT|M90.621|ICD10CM|Osteitis deformans in neoplastic diseases, right upper arm|Osteitis deformans in neoplastic diseases, right upper arm +C2902460|T191|AB|M90.622|ICD10CM|Osteitis deformans in neoplastic diseases, left upper arm|Osteitis deformans in neoplastic diseases, left upper arm +C2902460|T191|PT|M90.622|ICD10CM|Osteitis deformans in neoplastic diseases, left upper arm|Osteitis deformans in neoplastic diseases, left upper arm +C2902461|T191|AB|M90.629|ICD10CM|Osteitis deformans in neoplastic diseases, unsp upper arm|Osteitis deformans in neoplastic diseases, unsp upper arm +C2902461|T191|PT|M90.629|ICD10CM|Osteitis deformans in neoplastic diseases, unspecified upper arm|Osteitis deformans in neoplastic diseases, unspecified upper arm +C0840222|T191|AB|M90.63|ICD10CM|Osteitis deformans in neoplastic diseases, forearm|Osteitis deformans in neoplastic diseases, forearm +C0840222|T191|HT|M90.63|ICD10CM|Osteitis deformans in neoplastic diseases, forearm|Osteitis deformans in neoplastic diseases, forearm +C2902462|T191|AB|M90.631|ICD10CM|Osteitis deformans in neoplastic diseases, right forearm|Osteitis deformans in neoplastic diseases, right forearm +C2902462|T191|PT|M90.631|ICD10CM|Osteitis deformans in neoplastic diseases, right forearm|Osteitis deformans in neoplastic diseases, right forearm +C2902463|T191|AB|M90.632|ICD10CM|Osteitis deformans in neoplastic diseases, left forearm|Osteitis deformans in neoplastic diseases, left forearm +C2902463|T191|PT|M90.632|ICD10CM|Osteitis deformans in neoplastic diseases, left forearm|Osteitis deformans in neoplastic diseases, left forearm +C2902464|T191|AB|M90.639|ICD10CM|Osteitis deformans in neoplastic diseases, unsp forearm|Osteitis deformans in neoplastic diseases, unsp forearm +C2902464|T191|PT|M90.639|ICD10CM|Osteitis deformans in neoplastic diseases, unspecified forearm|Osteitis deformans in neoplastic diseases, unspecified forearm +C0840223|T191|AB|M90.64|ICD10CM|Osteitis deformans in neoplastic diseases, hand|Osteitis deformans in neoplastic diseases, hand +C0840223|T191|HT|M90.64|ICD10CM|Osteitis deformans in neoplastic diseases, hand|Osteitis deformans in neoplastic diseases, hand +C2902465|T191|AB|M90.641|ICD10CM|Osteitis deformans in neoplastic diseases, right hand|Osteitis deformans in neoplastic diseases, right hand +C2902465|T191|PT|M90.641|ICD10CM|Osteitis deformans in neoplastic diseases, right hand|Osteitis deformans in neoplastic diseases, right hand +C2902466|T191|AB|M90.642|ICD10CM|Osteitis deformans in neoplastic diseases, left hand|Osteitis deformans in neoplastic diseases, left hand +C2902466|T191|PT|M90.642|ICD10CM|Osteitis deformans in neoplastic diseases, left hand|Osteitis deformans in neoplastic diseases, left hand +C2902467|T191|AB|M90.649|ICD10CM|Osteitis deformans in neoplastic diseases, unspecified hand|Osteitis deformans in neoplastic diseases, unspecified hand +C2902467|T191|PT|M90.649|ICD10CM|Osteitis deformans in neoplastic diseases, unspecified hand|Osteitis deformans in neoplastic diseases, unspecified hand +C2902468|T191|AB|M90.65|ICD10CM|Osteitis deformans in neoplastic diseases, thigh|Osteitis deformans in neoplastic diseases, thigh +C2902468|T191|HT|M90.65|ICD10CM|Osteitis deformans in neoplastic diseases, thigh|Osteitis deformans in neoplastic diseases, thigh +C2902469|T191|AB|M90.651|ICD10CM|Osteitis deformans in neoplastic diseases, right thigh|Osteitis deformans in neoplastic diseases, right thigh +C2902469|T191|PT|M90.651|ICD10CM|Osteitis deformans in neoplastic diseases, right thigh|Osteitis deformans in neoplastic diseases, right thigh +C2902470|T191|AB|M90.652|ICD10CM|Osteitis deformans in neoplastic diseases, left thigh|Osteitis deformans in neoplastic diseases, left thigh +C2902470|T191|PT|M90.652|ICD10CM|Osteitis deformans in neoplastic diseases, left thigh|Osteitis deformans in neoplastic diseases, left thigh +C2902471|T191|AB|M90.659|ICD10CM|Osteitis deformans in neoplastic diseases, unspecified thigh|Osteitis deformans in neoplastic diseases, unspecified thigh +C2902471|T191|PT|M90.659|ICD10CM|Osteitis deformans in neoplastic diseases, unspecified thigh|Osteitis deformans in neoplastic diseases, unspecified thigh +C0840225|T191|AB|M90.66|ICD10CM|Osteitis deformans in neoplastic diseases, lower leg|Osteitis deformans in neoplastic diseases, lower leg +C0840225|T191|HT|M90.66|ICD10CM|Osteitis deformans in neoplastic diseases, lower leg|Osteitis deformans in neoplastic diseases, lower leg +C2902472|T191|AB|M90.661|ICD10CM|Osteitis deformans in neoplastic diseases, right lower leg|Osteitis deformans in neoplastic diseases, right lower leg +C2902472|T191|PT|M90.661|ICD10CM|Osteitis deformans in neoplastic diseases, right lower leg|Osteitis deformans in neoplastic diseases, right lower leg +C2902473|T191|AB|M90.662|ICD10CM|Osteitis deformans in neoplastic diseases, left lower leg|Osteitis deformans in neoplastic diseases, left lower leg +C2902473|T191|PT|M90.662|ICD10CM|Osteitis deformans in neoplastic diseases, left lower leg|Osteitis deformans in neoplastic diseases, left lower leg +C2902474|T191|AB|M90.669|ICD10CM|Osteitis deformans in neoplastic diseases, unsp lower leg|Osteitis deformans in neoplastic diseases, unsp lower leg +C2902474|T191|PT|M90.669|ICD10CM|Osteitis deformans in neoplastic diseases, unspecified lower leg|Osteitis deformans in neoplastic diseases, unspecified lower leg +C0840226|T191|AB|M90.67|ICD10CM|Osteitis deformans in neoplastic diseases, ankle and foot|Osteitis deformans in neoplastic diseases, ankle and foot +C0840226|T191|HT|M90.67|ICD10CM|Osteitis deformans in neoplastic diseases, ankle and foot|Osteitis deformans in neoplastic diseases, ankle and foot +C2902475|T191|AB|M90.671|ICD10CM|Osteitis deformans in neoplastic diseases, right ank/ft|Osteitis deformans in neoplastic diseases, right ank/ft +C2902475|T191|PT|M90.671|ICD10CM|Osteitis deformans in neoplastic diseases, right ankle and foot|Osteitis deformans in neoplastic diseases, right ankle and foot +C2902476|T191|AB|M90.672|ICD10CM|Osteitis deformans in neoplastic diseases, left ank/ft|Osteitis deformans in neoplastic diseases, left ank/ft +C2902476|T191|PT|M90.672|ICD10CM|Osteitis deformans in neoplastic diseases, left ankle and foot|Osteitis deformans in neoplastic diseases, left ankle and foot +C2902477|T191|AB|M90.679|ICD10CM|Osteitis deformans in neoplastic diseases, unsp ank/ft|Osteitis deformans in neoplastic diseases, unsp ank/ft +C2902477|T191|PT|M90.679|ICD10CM|Osteitis deformans in neoplastic diseases, unspecified ankle and foot|Osteitis deformans in neoplastic diseases, unspecified ankle and foot +C0840227|T191|AB|M90.68|ICD10CM|Osteitis deformans in neoplastic diseases, other site|Osteitis deformans in neoplastic diseases, other site +C0840227|T191|PT|M90.68|ICD10CM|Osteitis deformans in neoplastic diseases, other site|Osteitis deformans in neoplastic diseases, other site +C0840219|T191|AB|M90.69|ICD10CM|Osteitis deformans in neoplastic diseases, multiple sites|Osteitis deformans in neoplastic diseases, multiple sites +C0840219|T191|PT|M90.69|ICD10CM|Osteitis deformans in neoplastic diseases, multiple sites|Osteitis deformans in neoplastic diseases, multiple sites +C0451885|T046|PT|M90.7|ICD10|Fracture of bone in neoplastic disease|Fracture of bone in neoplastic disease +C0694524|T047|HT|M90.8|ICD10CM|Osteopathy in diseases classified elsewhere|Osteopathy in diseases classified elsewhere +C0694524|T047|AB|M90.8|ICD10CM|Osteopathy in diseases classified elsewhere|Osteopathy in diseases classified elsewhere +C0477698|T047|PT|M90.8|ICD10|Osteopathy in other diseases classified elsewhere|Osteopathy in other diseases classified elsewhere +C2902478|T047|AB|M90.80|ICD10CM|Osteopathy in diseases classified elsewhere, unsp site|Osteopathy in diseases classified elsewhere, unsp site +C2902478|T047|PT|M90.80|ICD10CM|Osteopathy in diseases classified elsewhere, unspecified site|Osteopathy in diseases classified elsewhere, unspecified site +C2902479|T047|AB|M90.81|ICD10CM|Osteopathy in diseases classified elsewhere, shoulder|Osteopathy in diseases classified elsewhere, shoulder +C2902479|T047|HT|M90.81|ICD10CM|Osteopathy in diseases classified elsewhere, shoulder|Osteopathy in diseases classified elsewhere, shoulder +C2902480|T047|AB|M90.811|ICD10CM|Osteopathy in diseases classified elsewhere, right shoulder|Osteopathy in diseases classified elsewhere, right shoulder +C2902480|T047|PT|M90.811|ICD10CM|Osteopathy in diseases classified elsewhere, right shoulder|Osteopathy in diseases classified elsewhere, right shoulder +C2902481|T047|AB|M90.812|ICD10CM|Osteopathy in diseases classified elsewhere, left shoulder|Osteopathy in diseases classified elsewhere, left shoulder +C2902481|T047|PT|M90.812|ICD10CM|Osteopathy in diseases classified elsewhere, left shoulder|Osteopathy in diseases classified elsewhere, left shoulder +C2902482|T047|AB|M90.819|ICD10CM|Osteopathy in diseases classified elsewhere, unsp shoulder|Osteopathy in diseases classified elsewhere, unsp shoulder +C2902482|T047|PT|M90.819|ICD10CM|Osteopathy in diseases classified elsewhere, unspecified shoulder|Osteopathy in diseases classified elsewhere, unspecified shoulder +C2902483|T047|AB|M90.82|ICD10CM|Osteopathy in diseases classified elsewhere, upper arm|Osteopathy in diseases classified elsewhere, upper arm +C2902483|T047|HT|M90.82|ICD10CM|Osteopathy in diseases classified elsewhere, upper arm|Osteopathy in diseases classified elsewhere, upper arm +C2902484|T047|AB|M90.821|ICD10CM|Osteopathy in diseases classified elsewhere, right upper arm|Osteopathy in diseases classified elsewhere, right upper arm +C2902484|T047|PT|M90.821|ICD10CM|Osteopathy in diseases classified elsewhere, right upper arm|Osteopathy in diseases classified elsewhere, right upper arm +C2902485|T047|AB|M90.822|ICD10CM|Osteopathy in diseases classified elsewhere, left upper arm|Osteopathy in diseases classified elsewhere, left upper arm +C2902485|T047|PT|M90.822|ICD10CM|Osteopathy in diseases classified elsewhere, left upper arm|Osteopathy in diseases classified elsewhere, left upper arm +C2902486|T047|AB|M90.829|ICD10CM|Osteopathy in diseases classified elsewhere, unsp upper arm|Osteopathy in diseases classified elsewhere, unsp upper arm +C2902486|T047|PT|M90.829|ICD10CM|Osteopathy in diseases classified elsewhere, unspecified upper arm|Osteopathy in diseases classified elsewhere, unspecified upper arm +C2902487|T047|AB|M90.83|ICD10CM|Osteopathy in diseases classified elsewhere, forearm|Osteopathy in diseases classified elsewhere, forearm +C2902487|T047|HT|M90.83|ICD10CM|Osteopathy in diseases classified elsewhere, forearm|Osteopathy in diseases classified elsewhere, forearm +C2902488|T047|AB|M90.831|ICD10CM|Osteopathy in diseases classified elsewhere, right forearm|Osteopathy in diseases classified elsewhere, right forearm +C2902488|T047|PT|M90.831|ICD10CM|Osteopathy in diseases classified elsewhere, right forearm|Osteopathy in diseases classified elsewhere, right forearm +C2902489|T047|AB|M90.832|ICD10CM|Osteopathy in diseases classified elsewhere, left forearm|Osteopathy in diseases classified elsewhere, left forearm +C2902489|T047|PT|M90.832|ICD10CM|Osteopathy in diseases classified elsewhere, left forearm|Osteopathy in diseases classified elsewhere, left forearm +C2902490|T047|AB|M90.839|ICD10CM|Osteopathy in diseases classified elsewhere, unsp forearm|Osteopathy in diseases classified elsewhere, unsp forearm +C2902490|T047|PT|M90.839|ICD10CM|Osteopathy in diseases classified elsewhere, unspecified forearm|Osteopathy in diseases classified elsewhere, unspecified forearm +C2902491|T047|AB|M90.84|ICD10CM|Osteopathy in diseases classified elsewhere, hand|Osteopathy in diseases classified elsewhere, hand +C2902491|T047|HT|M90.84|ICD10CM|Osteopathy in diseases classified elsewhere, hand|Osteopathy in diseases classified elsewhere, hand +C2902492|T047|AB|M90.841|ICD10CM|Osteopathy in diseases classified elsewhere, right hand|Osteopathy in diseases classified elsewhere, right hand +C2902492|T047|PT|M90.841|ICD10CM|Osteopathy in diseases classified elsewhere, right hand|Osteopathy in diseases classified elsewhere, right hand +C2902493|T047|AB|M90.842|ICD10CM|Osteopathy in diseases classified elsewhere, left hand|Osteopathy in diseases classified elsewhere, left hand +C2902493|T047|PT|M90.842|ICD10CM|Osteopathy in diseases classified elsewhere, left hand|Osteopathy in diseases classified elsewhere, left hand +C2902494|T047|AB|M90.849|ICD10CM|Osteopathy in diseases classified elsewhere, unsp hand|Osteopathy in diseases classified elsewhere, unsp hand +C2902494|T047|PT|M90.849|ICD10CM|Osteopathy in diseases classified elsewhere, unspecified hand|Osteopathy in diseases classified elsewhere, unspecified hand +C2902495|T047|AB|M90.85|ICD10CM|Osteopathy in diseases classified elsewhere, thigh|Osteopathy in diseases classified elsewhere, thigh +C2902495|T047|HT|M90.85|ICD10CM|Osteopathy in diseases classified elsewhere, thigh|Osteopathy in diseases classified elsewhere, thigh +C2902496|T047|AB|M90.851|ICD10CM|Osteopathy in diseases classified elsewhere, right thigh|Osteopathy in diseases classified elsewhere, right thigh +C2902496|T047|PT|M90.851|ICD10CM|Osteopathy in diseases classified elsewhere, right thigh|Osteopathy in diseases classified elsewhere, right thigh +C2902497|T047|AB|M90.852|ICD10CM|Osteopathy in diseases classified elsewhere, left thigh|Osteopathy in diseases classified elsewhere, left thigh +C2902497|T047|PT|M90.852|ICD10CM|Osteopathy in diseases classified elsewhere, left thigh|Osteopathy in diseases classified elsewhere, left thigh +C2902498|T047|AB|M90.859|ICD10CM|Osteopathy in diseases classified elsewhere, unsp thigh|Osteopathy in diseases classified elsewhere, unsp thigh +C2902498|T047|PT|M90.859|ICD10CM|Osteopathy in diseases classified elsewhere, unspecified thigh|Osteopathy in diseases classified elsewhere, unspecified thigh +C2902499|T047|AB|M90.86|ICD10CM|Osteopathy in diseases classified elsewhere, lower leg|Osteopathy in diseases classified elsewhere, lower leg +C2902499|T047|HT|M90.86|ICD10CM|Osteopathy in diseases classified elsewhere, lower leg|Osteopathy in diseases classified elsewhere, lower leg +C2902500|T047|AB|M90.861|ICD10CM|Osteopathy in diseases classified elsewhere, right lower leg|Osteopathy in diseases classified elsewhere, right lower leg +C2902500|T047|PT|M90.861|ICD10CM|Osteopathy in diseases classified elsewhere, right lower leg|Osteopathy in diseases classified elsewhere, right lower leg +C2902501|T047|AB|M90.862|ICD10CM|Osteopathy in diseases classified elsewhere, left lower leg|Osteopathy in diseases classified elsewhere, left lower leg +C2902501|T047|PT|M90.862|ICD10CM|Osteopathy in diseases classified elsewhere, left lower leg|Osteopathy in diseases classified elsewhere, left lower leg +C2902502|T047|AB|M90.869|ICD10CM|Osteopathy in diseases classified elsewhere, unsp lower leg|Osteopathy in diseases classified elsewhere, unsp lower leg +C2902502|T047|PT|M90.869|ICD10CM|Osteopathy in diseases classified elsewhere, unspecified lower leg|Osteopathy in diseases classified elsewhere, unspecified lower leg +C2902503|T047|AB|M90.87|ICD10CM|Osteopathy in diseases classified elsewhere, ankle and foot|Osteopathy in diseases classified elsewhere, ankle and foot +C2902503|T047|HT|M90.87|ICD10CM|Osteopathy in diseases classified elsewhere, ankle and foot|Osteopathy in diseases classified elsewhere, ankle and foot +C2902504|T047|AB|M90.871|ICD10CM|Osteopathy in diseases classd elswhr, right ankle and foot|Osteopathy in diseases classd elswhr, right ankle and foot +C2902504|T047|PT|M90.871|ICD10CM|Osteopathy in diseases classified elsewhere, right ankle and foot|Osteopathy in diseases classified elsewhere, right ankle and foot +C2902505|T047|AB|M90.872|ICD10CM|Osteopathy in diseases classd elswhr, left ankle and foot|Osteopathy in diseases classd elswhr, left ankle and foot +C2902505|T047|PT|M90.872|ICD10CM|Osteopathy in diseases classified elsewhere, left ankle and foot|Osteopathy in diseases classified elsewhere, left ankle and foot +C2902506|T047|AB|M90.879|ICD10CM|Osteopathy in diseases classd elswhr, unsp ankle and foot|Osteopathy in diseases classd elswhr, unsp ankle and foot +C2902506|T047|PT|M90.879|ICD10CM|Osteopathy in diseases classified elsewhere, unspecified ankle and foot|Osteopathy in diseases classified elsewhere, unspecified ankle and foot +C2902507|T047|AB|M90.88|ICD10CM|Osteopathy in diseases classified elsewhere, other site|Osteopathy in diseases classified elsewhere, other site +C2902507|T047|PT|M90.88|ICD10CM|Osteopathy in diseases classified elsewhere, other site|Osteopathy in diseases classified elsewhere, other site +C2902508|T047|AB|M90.89|ICD10CM|Osteopathy in diseases classified elsewhere, multiple sites|Osteopathy in diseases classified elsewhere, multiple sites +C2902508|T047|PT|M90.89|ICD10CM|Osteopathy in diseases classified elsewhere, multiple sites|Osteopathy in diseases classified elsewhere, multiple sites +C0410502|T047|HT|M91|ICD10|Juvenile osteochondrosis of hip and pelvis|Juvenile osteochondrosis of hip and pelvis +C0410502|T047|HT|M91|ICD10CM|Juvenile osteochondrosis of hip and pelvis|Juvenile osteochondrosis of hip and pelvis +C0410502|T047|AB|M91|ICD10CM|Juvenile osteochondrosis of hip and pelvis|Juvenile osteochondrosis of hip and pelvis +C0007302|T047|HT|M91-M94|ICD10CM|Chondropathies (M91-M94)|Chondropathies (M91-M94) +C0007302|T047|HT|M91-M94.9|ICD10|Chondropathies|Chondropathies +C0264083|T047|PT|M91.0|ICD10|Juvenile osteochondrosis of pelvis|Juvenile osteochondrosis of pelvis +C0264083|T047|PT|M91.0|ICD10CM|Juvenile osteochondrosis of pelvis|Juvenile osteochondrosis of pelvis +C0264083|T047|AB|M91.0|ICD10CM|Juvenile osteochondrosis of pelvis|Juvenile osteochondrosis of pelvis +C0343276|T047|ET|M91.0|ICD10CM|Osteochondrosis (juvenile) of acetabulum|Osteochondrosis (juvenile) of acetabulum +C3696809|T047|ET|M91.0|ICD10CM|Osteochondrosis (juvenile) of iliac crest [Buchanan]|Osteochondrosis (juvenile) of iliac crest [Buchanan] +C3696808|T047|ET|M91.0|ICD10CM|Osteochondrosis (juvenile) of ischiopubic synchondrosis [van Neck]|Osteochondrosis (juvenile) of ischiopubic synchondrosis [van Neck] +C3696807|T047|ET|M91.0|ICD10CM|Osteochondrosis (juvenile) of symphysis pubis [Pierson]|Osteochondrosis (juvenile) of symphysis pubis [Pierson] +C0023234|T047|AB|M91.1|ICD10CM|Juvenile osteochondrosis of head of femur|Juvenile osteochondrosis of head of femur +C0023234|T047|HT|M91.1|ICD10CM|Juvenile osteochondrosis of head of femur [Legg-Calvé-Perthes]|Juvenile osteochondrosis of head of femur [Legg-Calvé-Perthes] +C0023234|T047|PT|M91.1|ICD10|Juvenile osteochondrosis of head of femur [Legg-Calve-Perthes]|Juvenile osteochondrosis of head of femur [Legg-Calve-Perthes] +C2902512|T047|PT|M91.10|ICD10CM|Juvenile osteochondrosis of head of femur [Legg-Calvé-Perthes], unspecified leg|Juvenile osteochondrosis of head of femur [Legg-Calvé-Perthes], unspecified leg +C2902512|T047|AB|M91.10|ICD10CM|Juvenile osteochondrosis of head of femur, unspecified leg|Juvenile osteochondrosis of head of femur, unspecified leg +C2902513|T047|PT|M91.11|ICD10CM|Juvenile osteochondrosis of head of femur [Legg-Calvé-Perthes], right leg|Juvenile osteochondrosis of head of femur [Legg-Calvé-Perthes], right leg +C2902513|T047|AB|M91.11|ICD10CM|Juvenile osteochondrosis of head of femur, right leg|Juvenile osteochondrosis of head of femur, right leg +C2902514|T047|PT|M91.12|ICD10CM|Juvenile osteochondrosis of head of femur [Legg-Calvé-Perthes], left leg|Juvenile osteochondrosis of head of femur [Legg-Calvé-Perthes], left leg +C2902514|T047|AB|M91.12|ICD10CM|Juvenile osteochondrosis of head of femur, left leg|Juvenile osteochondrosis of head of femur, left leg +C0023234|T047|PT|M91.2|ICD10|Coxa plana|Coxa plana +C0023234|T047|HT|M91.2|ICD10CM|Coxa plana|Coxa plana +C0023234|T047|AB|M91.2|ICD10CM|Coxa plana|Coxa plana +C1399653|T047|ET|M91.2|ICD10CM|Hip deformity due to previous juvenile osteochondrosis|Hip deformity due to previous juvenile osteochondrosis +C2902515|T047|AB|M91.20|ICD10CM|Coxa plana, unspecified hip|Coxa plana, unspecified hip +C2902515|T047|PT|M91.20|ICD10CM|Coxa plana, unspecified hip|Coxa plana, unspecified hip +C2902516|T047|AB|M91.21|ICD10CM|Coxa plana, right hip|Coxa plana, right hip +C2902516|T047|PT|M91.21|ICD10CM|Coxa plana, right hip|Coxa plana, right hip +C2902517|T047|AB|M91.22|ICD10CM|Coxa plana, left hip|Coxa plana, left hip +C2902517|T047|PT|M91.22|ICD10CM|Coxa plana, left hip|Coxa plana, left hip +C0023234|T047|HT|M91.3|ICD10CM|Pseudocoxalgia|Pseudocoxalgia +C0023234|T047|AB|M91.3|ICD10CM|Pseudocoxalgia|Pseudocoxalgia +C0023234|T047|PT|M91.3|ICD10|Pseudocoxalgia|Pseudocoxalgia +C2902518|T047|AB|M91.30|ICD10CM|Pseudocoxalgia, unspecified hip|Pseudocoxalgia, unspecified hip +C2902518|T047|PT|M91.30|ICD10CM|Pseudocoxalgia, unspecified hip|Pseudocoxalgia, unspecified hip +C2902519|T047|AB|M91.31|ICD10CM|Pseudocoxalgia, right hip|Pseudocoxalgia, right hip +C2902519|T047|PT|M91.31|ICD10CM|Pseudocoxalgia, right hip|Pseudocoxalgia, right hip +C2902520|T047|AB|M91.32|ICD10CM|Pseudocoxalgia, left hip|Pseudocoxalgia, left hip +C2902520|T047|PT|M91.32|ICD10CM|Pseudocoxalgia, left hip|Pseudocoxalgia, left hip +C1860826|T047|HT|M91.4|ICD10CM|Coxa magna|Coxa magna +C1860826|T047|AB|M91.4|ICD10CM|Coxa magna|Coxa magna +C2902521|T047|AB|M91.40|ICD10CM|Coxa magna, unspecified hip|Coxa magna, unspecified hip +C2902521|T047|PT|M91.40|ICD10CM|Coxa magna, unspecified hip|Coxa magna, unspecified hip +C2902522|T047|AB|M91.41|ICD10CM|Coxa magna, right hip|Coxa magna, right hip +C2902522|T047|PT|M91.41|ICD10CM|Coxa magna, right hip|Coxa magna, right hip +C2902523|T047|AB|M91.42|ICD10CM|Coxa magna, left hip|Coxa magna, left hip +C2902523|T047|PT|M91.42|ICD10CM|Coxa magna, left hip|Coxa magna, left hip +C1408902|T047|ET|M91.8|ICD10CM|Juvenile osteochondrosis after reduction of congenital dislocation of hip|Juvenile osteochondrosis after reduction of congenital dislocation of hip +C0477700|T047|PT|M91.8|ICD10|Other juvenile osteochondrosis of hip and pelvis|Other juvenile osteochondrosis of hip and pelvis +C0477700|T047|HT|M91.8|ICD10CM|Other juvenile osteochondrosis of hip and pelvis|Other juvenile osteochondrosis of hip and pelvis +C0477700|T047|AB|M91.8|ICD10CM|Other juvenile osteochondrosis of hip and pelvis|Other juvenile osteochondrosis of hip and pelvis +C2902524|T047|AB|M91.80|ICD10CM|Other juvenile osteochondrosis of hip and pelvis, unsp leg|Other juvenile osteochondrosis of hip and pelvis, unsp leg +C2902524|T047|PT|M91.80|ICD10CM|Other juvenile osteochondrosis of hip and pelvis, unspecified leg|Other juvenile osteochondrosis of hip and pelvis, unspecified leg +C2902525|T047|AB|M91.81|ICD10CM|Other juvenile osteochondrosis of hip and pelvis, right leg|Other juvenile osteochondrosis of hip and pelvis, right leg +C2902525|T047|PT|M91.81|ICD10CM|Other juvenile osteochondrosis of hip and pelvis, right leg|Other juvenile osteochondrosis of hip and pelvis, right leg +C2902526|T047|AB|M91.82|ICD10CM|Other juvenile osteochondrosis of hip and pelvis, left leg|Other juvenile osteochondrosis of hip and pelvis, left leg +C2902526|T047|PT|M91.82|ICD10CM|Other juvenile osteochondrosis of hip and pelvis, left leg|Other juvenile osteochondrosis of hip and pelvis, left leg +C0410502|T047|HT|M91.9|ICD10CM|Juvenile osteochondrosis of hip and pelvis, unspecified|Juvenile osteochondrosis of hip and pelvis, unspecified +C0410502|T047|AB|M91.9|ICD10CM|Juvenile osteochondrosis of hip and pelvis, unspecified|Juvenile osteochondrosis of hip and pelvis, unspecified +C0410502|T047|PT|M91.9|ICD10|Juvenile osteochondrosis of hip and pelvis, unspecified|Juvenile osteochondrosis of hip and pelvis, unspecified +C2902527|T047|AB|M91.90|ICD10CM|Juvenile osteochondrosis of hip and pelvis, unsp, unsp leg|Juvenile osteochondrosis of hip and pelvis, unsp, unsp leg +C2902527|T047|PT|M91.90|ICD10CM|Juvenile osteochondrosis of hip and pelvis, unspecified, unspecified leg|Juvenile osteochondrosis of hip and pelvis, unspecified, unspecified leg +C2902528|T047|AB|M91.91|ICD10CM|Juvenile osteochondrosis of hip and pelvis, unsp, right leg|Juvenile osteochondrosis of hip and pelvis, unsp, right leg +C2902528|T047|PT|M91.91|ICD10CM|Juvenile osteochondrosis of hip and pelvis, unspecified, right leg|Juvenile osteochondrosis of hip and pelvis, unspecified, right leg +C2902529|T047|AB|M91.92|ICD10CM|Juvenile osteochondrosis of hip and pelvis, unsp, left leg|Juvenile osteochondrosis of hip and pelvis, unsp, left leg +C2902529|T047|PT|M91.92|ICD10CM|Juvenile osteochondrosis of hip and pelvis, unspecified, left leg|Juvenile osteochondrosis of hip and pelvis, unspecified, left leg +C0158445|T047|HT|M92|ICD10CM|Other juvenile osteochondrosis|Other juvenile osteochondrosis +C0158445|T047|AB|M92|ICD10CM|Other juvenile osteochondrosis|Other juvenile osteochondrosis +C0158445|T047|HT|M92|ICD10|Other juvenile osteochondrosis|Other juvenile osteochondrosis +C0264088|T047|PT|M92.0|ICD10|Juvenile osteochondrosis of humerus|Juvenile osteochondrosis of humerus +C0264088|T047|HT|M92.0|ICD10CM|Juvenile osteochondrosis of humerus|Juvenile osteochondrosis of humerus +C0264088|T047|AB|M92.0|ICD10CM|Juvenile osteochondrosis of humerus|Juvenile osteochondrosis of humerus +C2902530|T047|ET|M92.0|ICD10CM|Osteochondrosis (juvenile) of capitulum of humerus [Panner]|Osteochondrosis (juvenile) of capitulum of humerus [Panner] +C2902531|T047|ET|M92.0|ICD10CM|Osteochondrosis (juvenile) of head of humerus [Haas]|Osteochondrosis (juvenile) of head of humerus [Haas] +C2902532|T047|AB|M92.00|ICD10CM|Juvenile osteochondrosis of humerus, unspecified arm|Juvenile osteochondrosis of humerus, unspecified arm +C2902532|T047|PT|M92.00|ICD10CM|Juvenile osteochondrosis of humerus, unspecified arm|Juvenile osteochondrosis of humerus, unspecified arm +C2902533|T047|AB|M92.01|ICD10CM|Juvenile osteochondrosis of humerus, right arm|Juvenile osteochondrosis of humerus, right arm +C2902533|T047|PT|M92.01|ICD10CM|Juvenile osteochondrosis of humerus, right arm|Juvenile osteochondrosis of humerus, right arm +C2902534|T047|AB|M92.02|ICD10CM|Juvenile osteochondrosis of humerus, left arm|Juvenile osteochondrosis of humerus, left arm +C2902534|T047|PT|M92.02|ICD10CM|Juvenile osteochondrosis of humerus, left arm|Juvenile osteochondrosis of humerus, left arm +C0495010|T047|PT|M92.1|ICD10|Juvenile osteochondrosis of radius and ulna|Juvenile osteochondrosis of radius and ulna +C0495010|T047|HT|M92.1|ICD10CM|Juvenile osteochondrosis of radius and ulna|Juvenile osteochondrosis of radius and ulna +C0495010|T047|AB|M92.1|ICD10CM|Juvenile osteochondrosis of radius and ulna|Juvenile osteochondrosis of radius and ulna +C2902535|T047|ET|M92.1|ICD10CM|Osteochondrosis (juvenile) of lower ulna [Burns]|Osteochondrosis (juvenile) of lower ulna [Burns] +C2902536|T047|ET|M92.1|ICD10CM|Osteochondrosis (juvenile) of radial head [Brailsford]|Osteochondrosis (juvenile) of radial head [Brailsford] +C2902537|T047|AB|M92.10|ICD10CM|Juvenile osteochondrosis of radius and ulna, unspecified arm|Juvenile osteochondrosis of radius and ulna, unspecified arm +C2902537|T047|PT|M92.10|ICD10CM|Juvenile osteochondrosis of radius and ulna, unspecified arm|Juvenile osteochondrosis of radius and ulna, unspecified arm +C2902538|T047|AB|M92.11|ICD10CM|Juvenile osteochondrosis of radius and ulna, right arm|Juvenile osteochondrosis of radius and ulna, right arm +C2902538|T047|PT|M92.11|ICD10CM|Juvenile osteochondrosis of radius and ulna, right arm|Juvenile osteochondrosis of radius and ulna, right arm +C2902539|T047|AB|M92.12|ICD10CM|Juvenile osteochondrosis of radius and ulna, left arm|Juvenile osteochondrosis of radius and ulna, left arm +C2902539|T047|PT|M92.12|ICD10CM|Juvenile osteochondrosis of radius and ulna, left arm|Juvenile osteochondrosis of radius and ulna, left arm +C0264090|T047|PT|M92.2|ICD10|Juvenile osteochondrosis of hand|Juvenile osteochondrosis of hand +C0264090|T047|AB|M92.2|ICD10CM|Juvenile osteochondrosis, hand|Juvenile osteochondrosis, hand +C0264090|T047|HT|M92.2|ICD10CM|Juvenile osteochondrosis, hand|Juvenile osteochondrosis, hand +C2902540|T047|AB|M92.20|ICD10CM|Unspecified juvenile osteochondrosis, hand|Unspecified juvenile osteochondrosis, hand +C2902540|T047|HT|M92.20|ICD10CM|Unspecified juvenile osteochondrosis, hand|Unspecified juvenile osteochondrosis, hand +C2902541|T047|AB|M92.201|ICD10CM|Unspecified juvenile osteochondrosis, right hand|Unspecified juvenile osteochondrosis, right hand +C2902541|T047|PT|M92.201|ICD10CM|Unspecified juvenile osteochondrosis, right hand|Unspecified juvenile osteochondrosis, right hand +C2902542|T047|AB|M92.202|ICD10CM|Unspecified juvenile osteochondrosis, left hand|Unspecified juvenile osteochondrosis, left hand +C2902542|T047|PT|M92.202|ICD10CM|Unspecified juvenile osteochondrosis, left hand|Unspecified juvenile osteochondrosis, left hand +C2902543|T047|AB|M92.209|ICD10CM|Unspecified juvenile osteochondrosis, unspecified hand|Unspecified juvenile osteochondrosis, unspecified hand +C2902543|T047|PT|M92.209|ICD10CM|Unspecified juvenile osteochondrosis, unspecified hand|Unspecified juvenile osteochondrosis, unspecified hand +C2902544|T047|HT|M92.21|ICD10CM|Osteochondrosis (juvenile) of carpal lunate [Kienböck]|Osteochondrosis (juvenile) of carpal lunate [Kienböck] +C2902544|T047|AB|M92.21|ICD10CM|Osteochondrosis (juvenile) of carpal lunate [Kienbock]|Osteochondrosis (juvenile) of carpal lunate [Kienbock] +C2902545|T047|PT|M92.211|ICD10CM|Osteochondrosis (juvenile) of carpal lunate [Kienböck], right hand|Osteochondrosis (juvenile) of carpal lunate [Kienböck], right hand +C2902545|T047|AB|M92.211|ICD10CM|Osteochondrosis (juvenile) of carpal lunate, right hand|Osteochondrosis (juvenile) of carpal lunate, right hand +C2902546|T047|PT|M92.212|ICD10CM|Osteochondrosis (juvenile) of carpal lunate [Kienböck], left hand|Osteochondrosis (juvenile) of carpal lunate [Kienböck], left hand +C2902546|T047|AB|M92.212|ICD10CM|Osteochondrosis (juvenile) of carpal lunate, left hand|Osteochondrosis (juvenile) of carpal lunate, left hand +C2902547|T047|PT|M92.219|ICD10CM|Osteochondrosis (juvenile) of carpal lunate [Kienböck], unspecified hand|Osteochondrosis (juvenile) of carpal lunate [Kienböck], unspecified hand +C2902547|T047|AB|M92.219|ICD10CM|Osteochondrosis (juvenile) of carpal lunate, unsp hand|Osteochondrosis (juvenile) of carpal lunate, unsp hand +C2902548|T047|AB|M92.22|ICD10CM|Osteochondrosis (juvenile) of metacarpal heads [Mauclaire]|Osteochondrosis (juvenile) of metacarpal heads [Mauclaire] +C2902548|T047|HT|M92.22|ICD10CM|Osteochondrosis (juvenile) of metacarpal heads [Mauclaire]|Osteochondrosis (juvenile) of metacarpal heads [Mauclaire] +C2902549|T047|PT|M92.221|ICD10CM|Osteochondrosis (juvenile) of metacarpal heads [Mauclaire], right hand|Osteochondrosis (juvenile) of metacarpal heads [Mauclaire], right hand +C2902549|T047|AB|M92.221|ICD10CM|Osteochondrosis (juvenile) of metacarpal heads, right hand|Osteochondrosis (juvenile) of metacarpal heads, right hand +C2902550|T047|PT|M92.222|ICD10CM|Osteochondrosis (juvenile) of metacarpal heads [Mauclaire], left hand|Osteochondrosis (juvenile) of metacarpal heads [Mauclaire], left hand +C2902550|T047|AB|M92.222|ICD10CM|Osteochondrosis (juvenile) of metacarpal heads, left hand|Osteochondrosis (juvenile) of metacarpal heads, left hand +C2902551|T047|PT|M92.229|ICD10CM|Osteochondrosis (juvenile) of metacarpal heads [Mauclaire], unspecified hand|Osteochondrosis (juvenile) of metacarpal heads [Mauclaire], unspecified hand +C2902551|T047|AB|M92.229|ICD10CM|Osteochondrosis (juvenile) of metacarpal heads, unsp hand|Osteochondrosis (juvenile) of metacarpal heads, unsp hand +C2902552|T047|AB|M92.29|ICD10CM|Other juvenile osteochondrosis, hand|Other juvenile osteochondrosis, hand +C2902552|T047|HT|M92.29|ICD10CM|Other juvenile osteochondrosis, hand|Other juvenile osteochondrosis, hand +C2902553|T047|AB|M92.291|ICD10CM|Other juvenile osteochondrosis, right hand|Other juvenile osteochondrosis, right hand +C2902553|T047|PT|M92.291|ICD10CM|Other juvenile osteochondrosis, right hand|Other juvenile osteochondrosis, right hand +C2902554|T047|AB|M92.292|ICD10CM|Other juvenile osteochondrosis, left hand|Other juvenile osteochondrosis, left hand +C2902554|T047|PT|M92.292|ICD10CM|Other juvenile osteochondrosis, left hand|Other juvenile osteochondrosis, left hand +C2902555|T047|AB|M92.299|ICD10CM|Other juvenile osteochondrosis, unspecified hand|Other juvenile osteochondrosis, unspecified hand +C2902555|T047|PT|M92.299|ICD10CM|Other juvenile osteochondrosis, unspecified hand|Other juvenile osteochondrosis, unspecified hand +C0477701|T047|PT|M92.3|ICD10|Other juvenile osteochondrosis of upper limb|Other juvenile osteochondrosis of upper limb +C0477701|T047|AB|M92.3|ICD10CM|Other juvenile osteochondrosis, upper limb|Other juvenile osteochondrosis, upper limb +C0477701|T047|HT|M92.3|ICD10CM|Other juvenile osteochondrosis, upper limb|Other juvenile osteochondrosis, upper limb +C2902556|T047|AB|M92.30|ICD10CM|Other juvenile osteochondrosis, unspecified upper limb|Other juvenile osteochondrosis, unspecified upper limb +C2902556|T047|PT|M92.30|ICD10CM|Other juvenile osteochondrosis, unspecified upper limb|Other juvenile osteochondrosis, unspecified upper limb +C2902557|T047|AB|M92.31|ICD10CM|Other juvenile osteochondrosis, right upper limb|Other juvenile osteochondrosis, right upper limb +C2902557|T047|PT|M92.31|ICD10CM|Other juvenile osteochondrosis, right upper limb|Other juvenile osteochondrosis, right upper limb +C2902558|T047|AB|M92.32|ICD10CM|Other juvenile osteochondrosis, left upper limb|Other juvenile osteochondrosis, left upper limb +C2902558|T047|PT|M92.32|ICD10CM|Other juvenile osteochondrosis, left upper limb|Other juvenile osteochondrosis, left upper limb +C0264096|T047|HT|M92.4|ICD10CM|Juvenile osteochondrosis of patella|Juvenile osteochondrosis of patella +C0264096|T047|AB|M92.4|ICD10CM|Juvenile osteochondrosis of patella|Juvenile osteochondrosis of patella +C0264096|T047|PT|M92.4|ICD10|Juvenile osteochondrosis of patella|Juvenile osteochondrosis of patella +C2902559|T047|ET|M92.4|ICD10CM|Osteochondrosis (juvenile) of primary patellar center [Köhler]|Osteochondrosis (juvenile) of primary patellar center [Köhler] +C2902560|T047|ET|M92.4|ICD10CM|Osteochondrosis (juvenile) of secondary patellar centre [Sinding Larsen]|Osteochondrosis (juvenile) of secondary patellar centre [Sinding Larsen] +C2902561|T047|AB|M92.40|ICD10CM|Juvenile osteochondrosis of patella, unspecified knee|Juvenile osteochondrosis of patella, unspecified knee +C2902561|T047|PT|M92.40|ICD10CM|Juvenile osteochondrosis of patella, unspecified knee|Juvenile osteochondrosis of patella, unspecified knee +C2902562|T047|AB|M92.41|ICD10CM|Juvenile osteochondrosis of patella, right knee|Juvenile osteochondrosis of patella, right knee +C2902562|T047|PT|M92.41|ICD10CM|Juvenile osteochondrosis of patella, right knee|Juvenile osteochondrosis of patella, right knee +C2902563|T047|AB|M92.42|ICD10CM|Juvenile osteochondrosis of patella, left knee|Juvenile osteochondrosis of patella, left knee +C2902563|T047|PT|M92.42|ICD10CM|Juvenile osteochondrosis of patella, left knee|Juvenile osteochondrosis of patella, left knee +C0495011|T047|PT|M92.5|ICD10|Juvenile osteochondrosis of tibia and fibula|Juvenile osteochondrosis of tibia and fibula +C0495011|T047|HT|M92.5|ICD10CM|Juvenile osteochondrosis of tibia and fibula|Juvenile osteochondrosis of tibia and fibula +C0495011|T047|AB|M92.5|ICD10CM|Juvenile osteochondrosis of tibia and fibula|Juvenile osteochondrosis of tibia and fibula +C2902564|T047|ET|M92.5|ICD10CM|Osteochondrosis (juvenile) of proximal tibia [Blount]|Osteochondrosis (juvenile) of proximal tibia [Blount] +C2902565|T047|ET|M92.5|ICD10CM|Osteochondrosis (juvenile) of tibial tubercle [Osgood-Schlatter]|Osteochondrosis (juvenile) of tibial tubercle [Osgood-Schlatter] +C0175756|T047|ET|M92.5|ICD10CM|Tibia vara|Tibia vara +C2902566|T047|AB|M92.50|ICD10CM|Juvenile osteochondrosis of tibia and fibula, unsp leg|Juvenile osteochondrosis of tibia and fibula, unsp leg +C2902566|T047|PT|M92.50|ICD10CM|Juvenile osteochondrosis of tibia and fibula, unspecified leg|Juvenile osteochondrosis of tibia and fibula, unspecified leg +C2902567|T047|AB|M92.51|ICD10CM|Juvenile osteochondrosis of tibia and fibula, right leg|Juvenile osteochondrosis of tibia and fibula, right leg +C2902567|T047|PT|M92.51|ICD10CM|Juvenile osteochondrosis of tibia and fibula, right leg|Juvenile osteochondrosis of tibia and fibula, right leg +C2902568|T047|AB|M92.52|ICD10CM|Juvenile osteochondrosis of tibia and fibula, left leg|Juvenile osteochondrosis of tibia and fibula, left leg +C2902568|T047|PT|M92.52|ICD10CM|Juvenile osteochondrosis of tibia and fibula, left leg|Juvenile osteochondrosis of tibia and fibula, left leg +C3495402|T047|HT|M92.6|ICD10CM|Juvenile osteochondrosis of tarsus|Juvenile osteochondrosis of tarsus +C3495402|T047|AB|M92.6|ICD10CM|Juvenile osteochondrosis of tarsus|Juvenile osteochondrosis of tarsus +C3495402|T047|PT|M92.6|ICD10|Juvenile osteochondrosis of tarsus|Juvenile osteochondrosis of tarsus +C2902569|T047|ET|M92.6|ICD10CM|Osteochondrosis (juvenile) of calcaneum [Sever]|Osteochondrosis (juvenile) of calcaneum [Sever] +C2902570|T047|ET|M92.6|ICD10CM|Osteochondrosis (juvenile) of os tibiale externum [Haglund]|Osteochondrosis (juvenile) of os tibiale externum [Haglund] +C2902571|T047|ET|M92.6|ICD10CM|Osteochondrosis (juvenile) of talus [Diaz]|Osteochondrosis (juvenile) of talus [Diaz] +C2902572|T047|ET|M92.6|ICD10CM|Osteochondrosis (juvenile) of tarsal navicular [Köhler]|Osteochondrosis (juvenile) of tarsal navicular [Köhler] +C2902573|T047|AB|M92.60|ICD10CM|Juvenile osteochondrosis of tarsus, unspecified ankle|Juvenile osteochondrosis of tarsus, unspecified ankle +C2902573|T047|PT|M92.60|ICD10CM|Juvenile osteochondrosis of tarsus, unspecified ankle|Juvenile osteochondrosis of tarsus, unspecified ankle +C2902574|T047|AB|M92.61|ICD10CM|Juvenile osteochondrosis of tarsus, right ankle|Juvenile osteochondrosis of tarsus, right ankle +C2902574|T047|PT|M92.61|ICD10CM|Juvenile osteochondrosis of tarsus, right ankle|Juvenile osteochondrosis of tarsus, right ankle +C2902575|T047|AB|M92.62|ICD10CM|Juvenile osteochondrosis of tarsus, left ankle|Juvenile osteochondrosis of tarsus, left ankle +C2902575|T047|PT|M92.62|ICD10CM|Juvenile osteochondrosis of tarsus, left ankle|Juvenile osteochondrosis of tarsus, left ankle +C0495013|T047|HT|M92.7|ICD10CM|Juvenile osteochondrosis of metatarsus|Juvenile osteochondrosis of metatarsus +C0495013|T047|AB|M92.7|ICD10CM|Juvenile osteochondrosis of metatarsus|Juvenile osteochondrosis of metatarsus +C0495013|T047|PT|M92.7|ICD10|Juvenile osteochondrosis of metatarsus|Juvenile osteochondrosis of metatarsus +C2902576|T047|ET|M92.7|ICD10CM|Osteochondrosis (juvenile) of fifth metatarsus [Iselin]|Osteochondrosis (juvenile) of fifth metatarsus [Iselin] +C2902577|T047|ET|M92.7|ICD10CM|Osteochondrosis (juvenile) of second metatarsus [Freiberg]|Osteochondrosis (juvenile) of second metatarsus [Freiberg] +C2902578|T047|AB|M92.70|ICD10CM|Juvenile osteochondrosis of metatarsus, unspecified foot|Juvenile osteochondrosis of metatarsus, unspecified foot +C2902578|T047|PT|M92.70|ICD10CM|Juvenile osteochondrosis of metatarsus, unspecified foot|Juvenile osteochondrosis of metatarsus, unspecified foot +C2902579|T047|AB|M92.71|ICD10CM|Juvenile osteochondrosis of metatarsus, right foot|Juvenile osteochondrosis of metatarsus, right foot +C2902579|T047|PT|M92.71|ICD10CM|Juvenile osteochondrosis of metatarsus, right foot|Juvenile osteochondrosis of metatarsus, right foot +C2902580|T047|AB|M92.72|ICD10CM|Juvenile osteochondrosis of metatarsus, left foot|Juvenile osteochondrosis of metatarsus, left foot +C2902580|T047|PT|M92.72|ICD10CM|Juvenile osteochondrosis of metatarsus, left foot|Juvenile osteochondrosis of metatarsus, left foot +C0264097|T047|ET|M92.8|ICD10CM|Calcaneal apophysitis|Calcaneal apophysitis +C0477702|T047|PT|M92.8|ICD10|Other specified juvenile osteochondrosis|Other specified juvenile osteochondrosis +C0477702|T047|PT|M92.8|ICD10CM|Other specified juvenile osteochondrosis|Other specified juvenile osteochondrosis +C0477702|T047|AB|M92.8|ICD10CM|Other specified juvenile osteochondrosis|Other specified juvenile osteochondrosis +C0264104|T047|ET|M92.9|ICD10CM|Juvenile apophysitis NOS|Juvenile apophysitis NOS +C0264105|T047|ET|M92.9|ICD10CM|Juvenile epiphysitis NOS|Juvenile epiphysitis NOS +C0729346|T047|ET|M92.9|ICD10CM|Juvenile osteochondritis NOS|Juvenile osteochondritis NOS +C0729346|T047|ET|M92.9|ICD10CM|Juvenile osteochondrosis NOS|Juvenile osteochondrosis NOS +C0729346|T047|PT|M92.9|ICD10CM|Juvenile osteochondrosis, unspecified|Juvenile osteochondrosis, unspecified +C0729346|T047|AB|M92.9|ICD10CM|Juvenile osteochondrosis, unspecified|Juvenile osteochondrosis, unspecified +C0729346|T047|PT|M92.9|ICD10|Juvenile osteochondrosis, unspecified|Juvenile osteochondrosis, unspecified +C0495015|T047|AB|M93|ICD10CM|Other osteochondropathies|Other osteochondropathies +C0495015|T047|HT|M93|ICD10CM|Other osteochondropathies|Other osteochondropathies +C0495015|T047|HT|M93|ICD10|Other osteochondropathies|Other osteochondropathies +C0158441|T037|HT|M93.0|ICD10CM|Slipped upper femoral epiphysis (nontraumatic)|Slipped upper femoral epiphysis (nontraumatic) +C0158441|T037|AB|M93.0|ICD10CM|Slipped upper femoral epiphysis (nontraumatic)|Slipped upper femoral epiphysis (nontraumatic) +C0158441|T037|PT|M93.0|ICD10|Slipped upper femoral epiphysis (nontraumatic)|Slipped upper femoral epiphysis (nontraumatic) +C2902581|T047|AB|M93.00|ICD10CM|Unspecified slipped upper femoral epiphysis (nontraumatic)|Unspecified slipped upper femoral epiphysis (nontraumatic) +C2902581|T047|HT|M93.00|ICD10CM|Unspecified slipped upper femoral epiphysis (nontraumatic)|Unspecified slipped upper femoral epiphysis (nontraumatic) +C2902582|T047|AB|M93.001|ICD10CM|Unsp slipped upper femoral epiphysis, right hip|Unsp slipped upper femoral epiphysis, right hip +C2902582|T047|PT|M93.001|ICD10CM|Unspecified slipped upper femoral epiphysis (nontraumatic), right hip|Unspecified slipped upper femoral epiphysis (nontraumatic), right hip +C2902583|T047|AB|M93.002|ICD10CM|Unsp slipped upper femoral epiphysis, left hip|Unsp slipped upper femoral epiphysis, left hip +C2902583|T047|PT|M93.002|ICD10CM|Unspecified slipped upper femoral epiphysis (nontraumatic), left hip|Unspecified slipped upper femoral epiphysis (nontraumatic), left hip +C2902584|T047|AB|M93.003|ICD10CM|Unsp slipped upper femoral epiphysis, unsp hip|Unsp slipped upper femoral epiphysis, unsp hip +C2902584|T047|PT|M93.003|ICD10CM|Unspecified slipped upper femoral epiphysis (nontraumatic), unspecified hip|Unspecified slipped upper femoral epiphysis (nontraumatic), unspecified hip +C2902585|T047|AB|M93.01|ICD10CM|Acute slipped upper femoral epiphysis (nontraumatic)|Acute slipped upper femoral epiphysis (nontraumatic) +C2902585|T047|HT|M93.01|ICD10CM|Acute slipped upper femoral epiphysis (nontraumatic)|Acute slipped upper femoral epiphysis (nontraumatic) +C2902586|T047|PT|M93.011|ICD10CM|Acute slipped upper femoral epiphysis (nontraumatic), right hip|Acute slipped upper femoral epiphysis (nontraumatic), right hip +C2902586|T047|AB|M93.011|ICD10CM|Acute slipped upper femoral epiphysis, right hip|Acute slipped upper femoral epiphysis, right hip +C2902587|T047|PT|M93.012|ICD10CM|Acute slipped upper femoral epiphysis (nontraumatic), left hip|Acute slipped upper femoral epiphysis (nontraumatic), left hip +C2902587|T047|AB|M93.012|ICD10CM|Acute slipped upper femoral epiphysis, left hip|Acute slipped upper femoral epiphysis, left hip +C2902588|T047|PT|M93.013|ICD10CM|Acute slipped upper femoral epiphysis (nontraumatic), unspecified hip|Acute slipped upper femoral epiphysis (nontraumatic), unspecified hip +C2902588|T047|AB|M93.013|ICD10CM|Acute slipped upper femoral epiphysis, unsp hip|Acute slipped upper femoral epiphysis, unsp hip +C2902589|T047|AB|M93.02|ICD10CM|Chronic slipped upper femoral epiphysis (nontraumatic)|Chronic slipped upper femoral epiphysis (nontraumatic) +C2902589|T047|HT|M93.02|ICD10CM|Chronic slipped upper femoral epiphysis (nontraumatic)|Chronic slipped upper femoral epiphysis (nontraumatic) +C2902590|T047|PT|M93.021|ICD10CM|Chronic slipped upper femoral epiphysis (nontraumatic), right hip|Chronic slipped upper femoral epiphysis (nontraumatic), right hip +C2902590|T047|AB|M93.021|ICD10CM|Chronic slipped upper femoral epiphysis, right hip|Chronic slipped upper femoral epiphysis, right hip +C2902591|T047|PT|M93.022|ICD10CM|Chronic slipped upper femoral epiphysis (nontraumatic), left hip|Chronic slipped upper femoral epiphysis (nontraumatic), left hip +C2902591|T047|AB|M93.022|ICD10CM|Chronic slipped upper femoral epiphysis, left hip|Chronic slipped upper femoral epiphysis, left hip +C2902592|T047|PT|M93.023|ICD10CM|Chronic slipped upper femoral epiphysis (nontraumatic), unspecified hip|Chronic slipped upper femoral epiphysis (nontraumatic), unspecified hip +C2902592|T047|AB|M93.023|ICD10CM|Chronic slipped upper femoral epiphysis, unsp hip|Chronic slipped upper femoral epiphysis, unsp hip +C2902593|T047|AB|M93.03|ICD10CM|Acute on chronic slipped upper femoral epiphysis|Acute on chronic slipped upper femoral epiphysis +C2902593|T047|HT|M93.03|ICD10CM|Acute on chronic slipped upper femoral epiphysis (nontraumatic)|Acute on chronic slipped upper femoral epiphysis (nontraumatic) +C2902594|T047|PT|M93.031|ICD10CM|Acute on chronic slipped upper femoral epiphysis (nontraumatic), right hip|Acute on chronic slipped upper femoral epiphysis (nontraumatic), right hip +C2902594|T047|AB|M93.031|ICD10CM|Acute on chronic slipped upper femoral epiphysis, right hip|Acute on chronic slipped upper femoral epiphysis, right hip +C2902595|T047|PT|M93.032|ICD10CM|Acute on chronic slipped upper femoral epiphysis (nontraumatic), left hip|Acute on chronic slipped upper femoral epiphysis (nontraumatic), left hip +C2902595|T047|AB|M93.032|ICD10CM|Acute on chronic slipped upper femoral epiphysis, left hip|Acute on chronic slipped upper femoral epiphysis, left hip +C2902596|T047|PT|M93.033|ICD10CM|Acute on chronic slipped upper femoral epiphysis (nontraumatic), unspecified hip|Acute on chronic slipped upper femoral epiphysis (nontraumatic), unspecified hip +C2902596|T047|AB|M93.033|ICD10CM|Acute on chronic slipped upper femoral epiphysis, unsp hip|Acute on chronic slipped upper femoral epiphysis, unsp hip +C2902597|T047|ET|M93.1|ICD10CM|Adult osteochondrosis of carpal lunates|Adult osteochondrosis of carpal lunates +C0349356|T047|AB|M93.1|ICD10CM|Kienbock's disease of adults|Kienbock's disease of adults +C0349356|T047|PT|M93.1|ICD10CM|Kienböck's disease of adults|Kienböck's disease of adults +C0349356|T047|PT|M93.1|ICD10|Kienbock's disease of adults|Kienbock's disease of adults +C0029421|T047|PT|M93.2|ICD10|Osteochondritis dissecans|Osteochondritis dissecans +C0029421|T047|HT|M93.2|ICD10CM|Osteochondritis dissecans|Osteochondritis dissecans +C0029421|T047|AB|M93.2|ICD10CM|Osteochondritis dissecans|Osteochondritis dissecans +C2902598|T047|AB|M93.20|ICD10CM|Osteochondritis dissecans of unspecified site|Osteochondritis dissecans of unspecified site +C2902598|T047|PT|M93.20|ICD10CM|Osteochondritis dissecans of unspecified site|Osteochondritis dissecans of unspecified site +C2902599|T047|AB|M93.21|ICD10CM|Osteochondritis dissecans of shoulder|Osteochondritis dissecans of shoulder +C2902599|T047|HT|M93.21|ICD10CM|Osteochondritis dissecans of shoulder|Osteochondritis dissecans of shoulder +C2902600|T047|AB|M93.211|ICD10CM|Osteochondritis dissecans, right shoulder|Osteochondritis dissecans, right shoulder +C2902600|T047|PT|M93.211|ICD10CM|Osteochondritis dissecans, right shoulder|Osteochondritis dissecans, right shoulder +C2902601|T047|AB|M93.212|ICD10CM|Osteochondritis dissecans, left shoulder|Osteochondritis dissecans, left shoulder +C2902601|T047|PT|M93.212|ICD10CM|Osteochondritis dissecans, left shoulder|Osteochondritis dissecans, left shoulder +C2902602|T047|AB|M93.219|ICD10CM|Osteochondritis dissecans, unspecified shoulder|Osteochondritis dissecans, unspecified shoulder +C2902602|T047|PT|M93.219|ICD10CM|Osteochondritis dissecans, unspecified shoulder|Osteochondritis dissecans, unspecified shoulder +C2902603|T047|AB|M93.22|ICD10CM|Osteochondritis dissecans of elbow|Osteochondritis dissecans of elbow +C2902603|T047|HT|M93.22|ICD10CM|Osteochondritis dissecans of elbow|Osteochondritis dissecans of elbow +C2902604|T047|AB|M93.221|ICD10CM|Osteochondritis dissecans, right elbow|Osteochondritis dissecans, right elbow +C2902604|T047|PT|M93.221|ICD10CM|Osteochondritis dissecans, right elbow|Osteochondritis dissecans, right elbow +C2902605|T047|AB|M93.222|ICD10CM|Osteochondritis dissecans, left elbow|Osteochondritis dissecans, left elbow +C2902605|T047|PT|M93.222|ICD10CM|Osteochondritis dissecans, left elbow|Osteochondritis dissecans, left elbow +C2902603|T047|AB|M93.229|ICD10CM|Osteochondritis dissecans, unspecified elbow|Osteochondritis dissecans, unspecified elbow +C2902603|T047|PT|M93.229|ICD10CM|Osteochondritis dissecans, unspecified elbow|Osteochondritis dissecans, unspecified elbow +C0410513|T047|AB|M93.23|ICD10CM|Osteochondritis dissecans of wrist|Osteochondritis dissecans of wrist +C0410513|T047|HT|M93.23|ICD10CM|Osteochondritis dissecans of wrist|Osteochondritis dissecans of wrist +C2902606|T047|AB|M93.231|ICD10CM|Osteochondritis dissecans, right wrist|Osteochondritis dissecans, right wrist +C2902606|T047|PT|M93.231|ICD10CM|Osteochondritis dissecans, right wrist|Osteochondritis dissecans, right wrist +C2902607|T047|AB|M93.232|ICD10CM|Osteochondritis dissecans, left wrist|Osteochondritis dissecans, left wrist +C2902607|T047|PT|M93.232|ICD10CM|Osteochondritis dissecans, left wrist|Osteochondritis dissecans, left wrist +C2902608|T047|AB|M93.239|ICD10CM|Osteochondritis dissecans, unspecified wrist|Osteochondritis dissecans, unspecified wrist +C2902608|T047|PT|M93.239|ICD10CM|Osteochondritis dissecans, unspecified wrist|Osteochondritis dissecans, unspecified wrist +C2902611|T047|AB|M93.24|ICD10CM|Osteochondritis dissecans of joints of hand|Osteochondritis dissecans of joints of hand +C2902611|T047|HT|M93.24|ICD10CM|Osteochondritis dissecans of joints of hand|Osteochondritis dissecans of joints of hand +C2902609|T047|AB|M93.241|ICD10CM|Osteochondritis dissecans, joints of right hand|Osteochondritis dissecans, joints of right hand +C2902609|T047|PT|M93.241|ICD10CM|Osteochondritis dissecans, joints of right hand|Osteochondritis dissecans, joints of right hand +C2902610|T047|AB|M93.242|ICD10CM|Osteochondritis dissecans, joints of left hand|Osteochondritis dissecans, joints of left hand +C2902610|T047|PT|M93.242|ICD10CM|Osteochondritis dissecans, joints of left hand|Osteochondritis dissecans, joints of left hand +C2902611|T047|AB|M93.249|ICD10CM|Osteochondritis dissecans, joints of unspecified hand|Osteochondritis dissecans, joints of unspecified hand +C2902611|T047|PT|M93.249|ICD10CM|Osteochondritis dissecans, joints of unspecified hand|Osteochondritis dissecans, joints of unspecified hand +C2902612|T047|AB|M93.25|ICD10CM|Osteochondritis dissecans of hip|Osteochondritis dissecans of hip +C2902612|T047|HT|M93.25|ICD10CM|Osteochondritis dissecans of hip|Osteochondritis dissecans of hip +C2902613|T047|AB|M93.251|ICD10CM|Osteochondritis dissecans, right hip|Osteochondritis dissecans, right hip +C2902613|T047|PT|M93.251|ICD10CM|Osteochondritis dissecans, right hip|Osteochondritis dissecans, right hip +C2902614|T047|AB|M93.252|ICD10CM|Osteochondritis dissecans, left hip|Osteochondritis dissecans, left hip +C2902614|T047|PT|M93.252|ICD10CM|Osteochondritis dissecans, left hip|Osteochondritis dissecans, left hip +C2902615|T047|AB|M93.259|ICD10CM|Osteochondritis dissecans, unspecified hip|Osteochondritis dissecans, unspecified hip +C2902615|T047|PT|M93.259|ICD10CM|Osteochondritis dissecans, unspecified hip|Osteochondritis dissecans, unspecified hip +C2902616|T047|HT|M93.26|ICD10CM|Osteochondritis dissecans knee|Osteochondritis dissecans knee +C2902616|T047|AB|M93.26|ICD10CM|Osteochondritis dissecans knee|Osteochondritis dissecans knee +C2902617|T047|AB|M93.261|ICD10CM|Osteochondritis dissecans, right knee|Osteochondritis dissecans, right knee +C2902617|T047|PT|M93.261|ICD10CM|Osteochondritis dissecans, right knee|Osteochondritis dissecans, right knee +C2902618|T047|AB|M93.262|ICD10CM|Osteochondritis dissecans, left knee|Osteochondritis dissecans, left knee +C2902618|T047|PT|M93.262|ICD10CM|Osteochondritis dissecans, left knee|Osteochondritis dissecans, left knee +C2902619|T047|AB|M93.269|ICD10CM|Osteochondritis dissecans, unspecified knee|Osteochondritis dissecans, unspecified knee +C2902619|T047|PT|M93.269|ICD10CM|Osteochondritis dissecans, unspecified knee|Osteochondritis dissecans, unspecified knee +C2902620|T047|AB|M93.27|ICD10CM|Osteochondritis dissecans of ankle and joints of foot|Osteochondritis dissecans of ankle and joints of foot +C2902620|T047|HT|M93.27|ICD10CM|Osteochondritis dissecans of ankle and joints of foot|Osteochondritis dissecans of ankle and joints of foot +C2902621|T047|AB|M93.271|ICD10CM|Osteochondritis dissecans, r ankle and joints of right foot|Osteochondritis dissecans, r ankle and joints of right foot +C2902621|T047|PT|M93.271|ICD10CM|Osteochondritis dissecans, right ankle and joints of right foot|Osteochondritis dissecans, right ankle and joints of right foot +C2902622|T047|AB|M93.272|ICD10CM|Osteochondritis dissecans, l ankle and joints of left foot|Osteochondritis dissecans, l ankle and joints of left foot +C2902622|T047|PT|M93.272|ICD10CM|Osteochondritis dissecans, left ankle and joints of left foot|Osteochondritis dissecans, left ankle and joints of left foot +C2902623|T047|AB|M93.279|ICD10CM|Osteochondritis dissecans, unsp ankle and joints of foot|Osteochondritis dissecans, unsp ankle and joints of foot +C2902623|T047|PT|M93.279|ICD10CM|Osteochondritis dissecans, unspecified ankle and joints of foot|Osteochondritis dissecans, unspecified ankle and joints of foot +C0410512|T047|AB|M93.28|ICD10CM|Osteochondritis dissecans other site|Osteochondritis dissecans other site +C0410512|T047|PT|M93.28|ICD10CM|Osteochondritis dissecans other site|Osteochondritis dissecans other site +C2902624|T047|PT|M93.29|ICD10CM|Osteochondritis dissecans multiple sites|Osteochondritis dissecans multiple sites +C2902624|T047|AB|M93.29|ICD10CM|Osteochondritis dissecans multiple sites|Osteochondritis dissecans multiple sites +C0451640|T047|HT|M93.8|ICD10CM|Other specified osteochondropathies|Other specified osteochondropathies +C0451640|T047|AB|M93.8|ICD10CM|Other specified osteochondropathies|Other specified osteochondropathies +C0451640|T047|PT|M93.8|ICD10|Other specified osteochondropathies|Other specified osteochondropathies +C0451640|T047|AB|M93.80|ICD10CM|Other specified osteochondropathies of unspecified site|Other specified osteochondropathies of unspecified site +C0451640|T047|PT|M93.80|ICD10CM|Other specified osteochondropathies of unspecified site|Other specified osteochondropathies of unspecified site +C2902625|T047|AB|M93.81|ICD10CM|Other specified osteochondropathies of shoulder|Other specified osteochondropathies of shoulder +C2902625|T047|HT|M93.81|ICD10CM|Other specified osteochondropathies of shoulder|Other specified osteochondropathies of shoulder +C2902626|T047|AB|M93.811|ICD10CM|Other specified osteochondropathies, right shoulder|Other specified osteochondropathies, right shoulder +C2902626|T047|PT|M93.811|ICD10CM|Other specified osteochondropathies, right shoulder|Other specified osteochondropathies, right shoulder +C2902627|T047|AB|M93.812|ICD10CM|Other specified osteochondropathies, left shoulder|Other specified osteochondropathies, left shoulder +C2902627|T047|PT|M93.812|ICD10CM|Other specified osteochondropathies, left shoulder|Other specified osteochondropathies, left shoulder +C2902628|T047|AB|M93.819|ICD10CM|Other specified osteochondropathies, unspecified shoulder|Other specified osteochondropathies, unspecified shoulder +C2902628|T047|PT|M93.819|ICD10CM|Other specified osteochondropathies, unspecified shoulder|Other specified osteochondropathies, unspecified shoulder +C2902629|T047|AB|M93.82|ICD10CM|Other specified osteochondropathies of upper arm|Other specified osteochondropathies of upper arm +C2902629|T047|HT|M93.82|ICD10CM|Other specified osteochondropathies of upper arm|Other specified osteochondropathies of upper arm +C2902630|T047|AB|M93.821|ICD10CM|Other specified osteochondropathies, right upper arm|Other specified osteochondropathies, right upper arm +C2902630|T047|PT|M93.821|ICD10CM|Other specified osteochondropathies, right upper arm|Other specified osteochondropathies, right upper arm +C2902631|T047|AB|M93.822|ICD10CM|Other specified osteochondropathies, left upper arm|Other specified osteochondropathies, left upper arm +C2902631|T047|PT|M93.822|ICD10CM|Other specified osteochondropathies, left upper arm|Other specified osteochondropathies, left upper arm +C2902632|T047|AB|M93.829|ICD10CM|Other specified osteochondropathies, unspecified upper arm|Other specified osteochondropathies, unspecified upper arm +C2902632|T047|PT|M93.829|ICD10CM|Other specified osteochondropathies, unspecified upper arm|Other specified osteochondropathies, unspecified upper arm +C2902633|T047|AB|M93.83|ICD10CM|Other specified osteochondropathies of forearm|Other specified osteochondropathies of forearm +C2902633|T047|HT|M93.83|ICD10CM|Other specified osteochondropathies of forearm|Other specified osteochondropathies of forearm +C2902634|T047|AB|M93.831|ICD10CM|Other specified osteochondropathies, right forearm|Other specified osteochondropathies, right forearm +C2902634|T047|PT|M93.831|ICD10CM|Other specified osteochondropathies, right forearm|Other specified osteochondropathies, right forearm +C2902635|T047|AB|M93.832|ICD10CM|Other specified osteochondropathies, left forearm|Other specified osteochondropathies, left forearm +C2902635|T047|PT|M93.832|ICD10CM|Other specified osteochondropathies, left forearm|Other specified osteochondropathies, left forearm +C2902636|T047|AB|M93.839|ICD10CM|Other specified osteochondropathies, unspecified forearm|Other specified osteochondropathies, unspecified forearm +C2902636|T047|PT|M93.839|ICD10CM|Other specified osteochondropathies, unspecified forearm|Other specified osteochondropathies, unspecified forearm +C2902637|T047|AB|M93.84|ICD10CM|Other specified osteochondropathies of hand|Other specified osteochondropathies of hand +C2902637|T047|HT|M93.84|ICD10CM|Other specified osteochondropathies of hand|Other specified osteochondropathies of hand +C2902638|T047|AB|M93.841|ICD10CM|Other specified osteochondropathies, right hand|Other specified osteochondropathies, right hand +C2902638|T047|PT|M93.841|ICD10CM|Other specified osteochondropathies, right hand|Other specified osteochondropathies, right hand +C2902639|T047|AB|M93.842|ICD10CM|Other specified osteochondropathies, left hand|Other specified osteochondropathies, left hand +C2902639|T047|PT|M93.842|ICD10CM|Other specified osteochondropathies, left hand|Other specified osteochondropathies, left hand +C2902640|T047|AB|M93.849|ICD10CM|Other specified osteochondropathies, unspecified hand|Other specified osteochondropathies, unspecified hand +C2902640|T047|PT|M93.849|ICD10CM|Other specified osteochondropathies, unspecified hand|Other specified osteochondropathies, unspecified hand +C2902641|T047|AB|M93.85|ICD10CM|Other specified osteochondropathies of thigh|Other specified osteochondropathies of thigh +C2902641|T047|HT|M93.85|ICD10CM|Other specified osteochondropathies of thigh|Other specified osteochondropathies of thigh +C2902642|T047|AB|M93.851|ICD10CM|Other specified osteochondropathies, right thigh|Other specified osteochondropathies, right thigh +C2902642|T047|PT|M93.851|ICD10CM|Other specified osteochondropathies, right thigh|Other specified osteochondropathies, right thigh +C2902643|T047|AB|M93.852|ICD10CM|Other specified osteochondropathies, left thigh|Other specified osteochondropathies, left thigh +C2902643|T047|PT|M93.852|ICD10CM|Other specified osteochondropathies, left thigh|Other specified osteochondropathies, left thigh +C2902644|T047|AB|M93.859|ICD10CM|Other specified osteochondropathies, unspecified thigh|Other specified osteochondropathies, unspecified thigh +C2902644|T047|PT|M93.859|ICD10CM|Other specified osteochondropathies, unspecified thigh|Other specified osteochondropathies, unspecified thigh +C2902645|T047|AB|M93.86|ICD10CM|Other specified osteochondropathies lower leg|Other specified osteochondropathies lower leg +C2902645|T047|HT|M93.86|ICD10CM|Other specified osteochondropathies lower leg|Other specified osteochondropathies lower leg +C2902646|T047|AB|M93.861|ICD10CM|Other specified osteochondropathies, right lower leg|Other specified osteochondropathies, right lower leg +C2902646|T047|PT|M93.861|ICD10CM|Other specified osteochondropathies, right lower leg|Other specified osteochondropathies, right lower leg +C2902647|T047|AB|M93.862|ICD10CM|Other specified osteochondropathies, left lower leg|Other specified osteochondropathies, left lower leg +C2902647|T047|PT|M93.862|ICD10CM|Other specified osteochondropathies, left lower leg|Other specified osteochondropathies, left lower leg +C2902648|T047|AB|M93.869|ICD10CM|Other specified osteochondropathies, unspecified lower leg|Other specified osteochondropathies, unspecified lower leg +C2902648|T047|PT|M93.869|ICD10CM|Other specified osteochondropathies, unspecified lower leg|Other specified osteochondropathies, unspecified lower leg +C2902649|T047|AB|M93.87|ICD10CM|Other specified osteochondropathies of ankle and foot|Other specified osteochondropathies of ankle and foot +C2902649|T047|HT|M93.87|ICD10CM|Other specified osteochondropathies of ankle and foot|Other specified osteochondropathies of ankle and foot +C2902650|T047|AB|M93.871|ICD10CM|Other specified osteochondropathies, right ankle and foot|Other specified osteochondropathies, right ankle and foot +C2902650|T047|PT|M93.871|ICD10CM|Other specified osteochondropathies, right ankle and foot|Other specified osteochondropathies, right ankle and foot +C2902651|T047|AB|M93.872|ICD10CM|Other specified osteochondropathies, left ankle and foot|Other specified osteochondropathies, left ankle and foot +C2902651|T047|PT|M93.872|ICD10CM|Other specified osteochondropathies, left ankle and foot|Other specified osteochondropathies, left ankle and foot +C2902652|T047|AB|M93.879|ICD10CM|Oth osteochondropathies, unspecified ankle and foot|Oth osteochondropathies, unspecified ankle and foot +C2902652|T047|PT|M93.879|ICD10CM|Other specified osteochondropathies, unspecified ankle and foot|Other specified osteochondropathies, unspecified ankle and foot +C2902653|T047|AB|M93.88|ICD10CM|Other specified osteochondropathies other|Other specified osteochondropathies other +C2902653|T047|PT|M93.88|ICD10CM|Other specified osteochondropathies other|Other specified osteochondropathies other +C2902654|T047|AB|M93.89|ICD10CM|Other specified osteochondropathies multiple sites|Other specified osteochondropathies multiple sites +C2902654|T047|PT|M93.89|ICD10CM|Other specified osteochondropathies multiple sites|Other specified osteochondropathies multiple sites +C0264110|T047|ET|M93.9|ICD10CM|Apophysitis NOS|Apophysitis NOS +C0014574|T047|ET|M93.9|ICD10CM|Epiphysitis NOS|Epiphysitis NOS +C0029420|T047|ET|M93.9|ICD10CM|Osteochondritis NOS|Osteochondritis NOS +C0152091|T047|PT|M93.9|ICD10|Osteochondropathy, unspecified|Osteochondropathy, unspecified +C0152091|T047|HT|M93.9|ICD10CM|Osteochondropathy, unspecified|Osteochondropathy, unspecified +C0152091|T047|AB|M93.9|ICD10CM|Osteochondropathy, unspecified|Osteochondropathy, unspecified +C0029429|T047|ET|M93.9|ICD10CM|Osteochondrosis NOS|Osteochondrosis NOS +C2902655|T047|AB|M93.90|ICD10CM|Osteochondropathy, unspecified of unspecified site|Osteochondropathy, unspecified of unspecified site +C2902655|T047|PT|M93.90|ICD10CM|Osteochondropathy, unspecified of unspecified site|Osteochondropathy, unspecified of unspecified site +C2902656|T047|AB|M93.91|ICD10CM|Osteochondropathy, unspecified of shoulder|Osteochondropathy, unspecified of shoulder +C2902656|T047|HT|M93.91|ICD10CM|Osteochondropathy, unspecified of shoulder|Osteochondropathy, unspecified of shoulder +C2902657|T047|AB|M93.911|ICD10CM|Osteochondropathy, unspecified, right shoulder|Osteochondropathy, unspecified, right shoulder +C2902657|T047|PT|M93.911|ICD10CM|Osteochondropathy, unspecified, right shoulder|Osteochondropathy, unspecified, right shoulder +C2902658|T047|AB|M93.912|ICD10CM|Osteochondropathy, unspecified, left shoulder|Osteochondropathy, unspecified, left shoulder +C2902658|T047|PT|M93.912|ICD10CM|Osteochondropathy, unspecified, left shoulder|Osteochondropathy, unspecified, left shoulder +C2902659|T047|AB|M93.919|ICD10CM|Osteochondropathy, unspecified, unspecified shoulder|Osteochondropathy, unspecified, unspecified shoulder +C2902659|T047|PT|M93.919|ICD10CM|Osteochondropathy, unspecified, unspecified shoulder|Osteochondropathy, unspecified, unspecified shoulder +C2902660|T047|AB|M93.92|ICD10CM|Osteochondropathy, unspecified of upper arm|Osteochondropathy, unspecified of upper arm +C2902660|T047|HT|M93.92|ICD10CM|Osteochondropathy, unspecified of upper arm|Osteochondropathy, unspecified of upper arm +C2902661|T047|AB|M93.921|ICD10CM|Osteochondropathy, unspecified, right upper arm|Osteochondropathy, unspecified, right upper arm +C2902661|T047|PT|M93.921|ICD10CM|Osteochondropathy, unspecified, right upper arm|Osteochondropathy, unspecified, right upper arm +C2902662|T047|AB|M93.922|ICD10CM|Osteochondropathy, unspecified, left upper arm|Osteochondropathy, unspecified, left upper arm +C2902662|T047|PT|M93.922|ICD10CM|Osteochondropathy, unspecified, left upper arm|Osteochondropathy, unspecified, left upper arm +C2902663|T047|AB|M93.929|ICD10CM|Osteochondropathy, unspecified, unspecified upper arm|Osteochondropathy, unspecified, unspecified upper arm +C2902663|T047|PT|M93.929|ICD10CM|Osteochondropathy, unspecified, unspecified upper arm|Osteochondropathy, unspecified, unspecified upper arm +C2902664|T047|AB|M93.93|ICD10CM|Osteochondropathy, unspecified of forearm|Osteochondropathy, unspecified of forearm +C2902664|T047|HT|M93.93|ICD10CM|Osteochondropathy, unspecified of forearm|Osteochondropathy, unspecified of forearm +C2902665|T047|AB|M93.931|ICD10CM|Osteochondropathy, unspecified, right forearm|Osteochondropathy, unspecified, right forearm +C2902665|T047|PT|M93.931|ICD10CM|Osteochondropathy, unspecified, right forearm|Osteochondropathy, unspecified, right forearm +C2902666|T047|AB|M93.932|ICD10CM|Osteochondropathy, unspecified, left forearm|Osteochondropathy, unspecified, left forearm +C2902666|T047|PT|M93.932|ICD10CM|Osteochondropathy, unspecified, left forearm|Osteochondropathy, unspecified, left forearm +C2902667|T047|AB|M93.939|ICD10CM|Osteochondropathy, unspecified, unspecified forearm|Osteochondropathy, unspecified, unspecified forearm +C2902667|T047|PT|M93.939|ICD10CM|Osteochondropathy, unspecified, unspecified forearm|Osteochondropathy, unspecified, unspecified forearm +C2902668|T047|AB|M93.94|ICD10CM|Osteochondropathy, unspecified of hand|Osteochondropathy, unspecified of hand +C2902668|T047|HT|M93.94|ICD10CM|Osteochondropathy, unspecified of hand|Osteochondropathy, unspecified of hand +C2902669|T047|AB|M93.941|ICD10CM|Osteochondropathy, unspecified, right hand|Osteochondropathy, unspecified, right hand +C2902669|T047|PT|M93.941|ICD10CM|Osteochondropathy, unspecified, right hand|Osteochondropathy, unspecified, right hand +C2902670|T047|AB|M93.942|ICD10CM|Osteochondropathy, unspecified, left hand|Osteochondropathy, unspecified, left hand +C2902670|T047|PT|M93.942|ICD10CM|Osteochondropathy, unspecified, left hand|Osteochondropathy, unspecified, left hand +C2902671|T047|AB|M93.949|ICD10CM|Osteochondropathy, unspecified, unspecified hand|Osteochondropathy, unspecified, unspecified hand +C2902671|T047|PT|M93.949|ICD10CM|Osteochondropathy, unspecified, unspecified hand|Osteochondropathy, unspecified, unspecified hand +C2902672|T047|AB|M93.95|ICD10CM|Osteochondropathy, unspecified of thigh|Osteochondropathy, unspecified of thigh +C2902672|T047|HT|M93.95|ICD10CM|Osteochondropathy, unspecified of thigh|Osteochondropathy, unspecified of thigh +C2902673|T047|AB|M93.951|ICD10CM|Osteochondropathy, unspecified, right thigh|Osteochondropathy, unspecified, right thigh +C2902673|T047|PT|M93.951|ICD10CM|Osteochondropathy, unspecified, right thigh|Osteochondropathy, unspecified, right thigh +C2902674|T047|AB|M93.952|ICD10CM|Osteochondropathy, unspecified, left thigh|Osteochondropathy, unspecified, left thigh +C2902674|T047|PT|M93.952|ICD10CM|Osteochondropathy, unspecified, left thigh|Osteochondropathy, unspecified, left thigh +C2902675|T047|AB|M93.959|ICD10CM|Osteochondropathy, unspecified, unspecified thigh|Osteochondropathy, unspecified, unspecified thigh +C2902675|T047|PT|M93.959|ICD10CM|Osteochondropathy, unspecified, unspecified thigh|Osteochondropathy, unspecified, unspecified thigh +C2902676|T047|AB|M93.96|ICD10CM|Osteochondropathy, unspecified lower leg|Osteochondropathy, unspecified lower leg +C2902676|T047|HT|M93.96|ICD10CM|Osteochondropathy, unspecified lower leg|Osteochondropathy, unspecified lower leg +C2902677|T047|AB|M93.961|ICD10CM|Osteochondropathy, unspecified, right lower leg|Osteochondropathy, unspecified, right lower leg +C2902677|T047|PT|M93.961|ICD10CM|Osteochondropathy, unspecified, right lower leg|Osteochondropathy, unspecified, right lower leg +C2902678|T047|AB|M93.962|ICD10CM|Osteochondropathy, unspecified, left lower leg|Osteochondropathy, unspecified, left lower leg +C2902678|T047|PT|M93.962|ICD10CM|Osteochondropathy, unspecified, left lower leg|Osteochondropathy, unspecified, left lower leg +C2902679|T047|AB|M93.969|ICD10CM|Osteochondropathy, unspecified, unspecified lower leg|Osteochondropathy, unspecified, unspecified lower leg +C2902679|T047|PT|M93.969|ICD10CM|Osteochondropathy, unspecified, unspecified lower leg|Osteochondropathy, unspecified, unspecified lower leg +C2902680|T047|AB|M93.97|ICD10CM|Osteochondropathy, unspecified of ankle and foot|Osteochondropathy, unspecified of ankle and foot +C2902680|T047|HT|M93.97|ICD10CM|Osteochondropathy, unspecified of ankle and foot|Osteochondropathy, unspecified of ankle and foot +C2902681|T047|AB|M93.971|ICD10CM|Osteochondropathy, unspecified, right ankle and foot|Osteochondropathy, unspecified, right ankle and foot +C2902681|T047|PT|M93.971|ICD10CM|Osteochondropathy, unspecified, right ankle and foot|Osteochondropathy, unspecified, right ankle and foot +C2902682|T047|AB|M93.972|ICD10CM|Osteochondropathy, unspecified, left ankle and foot|Osteochondropathy, unspecified, left ankle and foot +C2902682|T047|PT|M93.972|ICD10CM|Osteochondropathy, unspecified, left ankle and foot|Osteochondropathy, unspecified, left ankle and foot +C2902683|T047|AB|M93.979|ICD10CM|Osteochondropathy, unspecified, unspecified ankle and foot|Osteochondropathy, unspecified, unspecified ankle and foot +C2902683|T047|PT|M93.979|ICD10CM|Osteochondropathy, unspecified, unspecified ankle and foot|Osteochondropathy, unspecified, unspecified ankle and foot +C2902684|T047|AB|M93.98|ICD10CM|Osteochondropathy, unspecified other|Osteochondropathy, unspecified other +C2902684|T047|PT|M93.98|ICD10CM|Osteochondropathy, unspecified other|Osteochondropathy, unspecified other +C2902685|T047|AB|M93.99|ICD10CM|Osteochondropathy, unspecified multiple sites|Osteochondropathy, unspecified multiple sites +C2902685|T047|PT|M93.99|ICD10CM|Osteochondropathy, unspecified multiple sites|Osteochondropathy, unspecified multiple sites +C0495016|T047|AB|M94|ICD10CM|Other disorders of cartilage|Other disorders of cartilage +C0495016|T047|HT|M94|ICD10CM|Other disorders of cartilage|Other disorders of cartilage +C0495016|T047|HT|M94|ICD10|Other disorders of cartilage|Other disorders of cartilage +C0040213|T047|PT|M94.0|ICD10CM|Chondrocostal junction syndrome [Tietze]|Chondrocostal junction syndrome [Tietze] +C0040213|T047|AB|M94.0|ICD10CM|Chondrocostal junction syndrome [Tietze]|Chondrocostal junction syndrome [Tietze] +C0040213|T047|PT|M94.0|ICD10|Chondrocostal junction syndrome [Tietze]|Chondrocostal junction syndrome [Tietze] +C0040213|T047|ET|M94.0|ICD10CM|Costochondritis|Costochondritis +C0032453|T047|PT|M94.1|ICD10CM|Relapsing polychondritis|Relapsing polychondritis +C0032453|T047|AB|M94.1|ICD10CM|Relapsing polychondritis|Relapsing polychondritis +C0032453|T047|PT|M94.1|ICD10|Relapsing polychondritis|Relapsing polychondritis +C0085700|T047|PT|M94.2|ICD10|Chondromalacia|Chondromalacia +C0085700|T047|HT|M94.2|ICD10CM|Chondromalacia|Chondromalacia +C0085700|T047|AB|M94.2|ICD10CM|Chondromalacia|Chondromalacia +C0085700|T047|AB|M94.20|ICD10CM|Chondromalacia, unspecified site|Chondromalacia, unspecified site +C0085700|T047|PT|M94.20|ICD10CM|Chondromalacia, unspecified site|Chondromalacia, unspecified site +C2902686|T047|AB|M94.21|ICD10CM|Chondromalacia, shoulder|Chondromalacia, shoulder +C2902686|T047|HT|M94.21|ICD10CM|Chondromalacia, shoulder|Chondromalacia, shoulder +C2902687|T047|AB|M94.211|ICD10CM|Chondromalacia, right shoulder|Chondromalacia, right shoulder +C2902687|T047|PT|M94.211|ICD10CM|Chondromalacia, right shoulder|Chondromalacia, right shoulder +C2902688|T047|AB|M94.212|ICD10CM|Chondromalacia, left shoulder|Chondromalacia, left shoulder +C2902688|T047|PT|M94.212|ICD10CM|Chondromalacia, left shoulder|Chondromalacia, left shoulder +C2902689|T047|AB|M94.219|ICD10CM|Chondromalacia, unspecified shoulder|Chondromalacia, unspecified shoulder +C2902689|T047|PT|M94.219|ICD10CM|Chondromalacia, unspecified shoulder|Chondromalacia, unspecified shoulder +C2902690|T047|AB|M94.22|ICD10CM|Chondromalacia, elbow|Chondromalacia, elbow +C2902690|T047|HT|M94.22|ICD10CM|Chondromalacia, elbow|Chondromalacia, elbow +C2902691|T047|AB|M94.221|ICD10CM|Chondromalacia, right elbow|Chondromalacia, right elbow +C2902691|T047|PT|M94.221|ICD10CM|Chondromalacia, right elbow|Chondromalacia, right elbow +C2902692|T047|AB|M94.222|ICD10CM|Chondromalacia, left elbow|Chondromalacia, left elbow +C2902692|T047|PT|M94.222|ICD10CM|Chondromalacia, left elbow|Chondromalacia, left elbow +C2902693|T047|AB|M94.229|ICD10CM|Chondromalacia, unspecified elbow|Chondromalacia, unspecified elbow +C2902693|T047|PT|M94.229|ICD10CM|Chondromalacia, unspecified elbow|Chondromalacia, unspecified elbow +C2902694|T047|AB|M94.23|ICD10CM|Chondromalacia, wrist|Chondromalacia, wrist +C2902694|T047|HT|M94.23|ICD10CM|Chondromalacia, wrist|Chondromalacia, wrist +C2902695|T047|AB|M94.231|ICD10CM|Chondromalacia, right wrist|Chondromalacia, right wrist +C2902695|T047|PT|M94.231|ICD10CM|Chondromalacia, right wrist|Chondromalacia, right wrist +C2902696|T047|AB|M94.232|ICD10CM|Chondromalacia, left wrist|Chondromalacia, left wrist +C2902696|T047|PT|M94.232|ICD10CM|Chondromalacia, left wrist|Chondromalacia, left wrist +C2902697|T047|AB|M94.239|ICD10CM|Chondromalacia, unspecified wrist|Chondromalacia, unspecified wrist +C2902697|T047|PT|M94.239|ICD10CM|Chondromalacia, unspecified wrist|Chondromalacia, unspecified wrist +C2902698|T047|AB|M94.24|ICD10CM|Chondromalacia, joints of hand|Chondromalacia, joints of hand +C2902698|T047|HT|M94.24|ICD10CM|Chondromalacia, joints of hand|Chondromalacia, joints of hand +C2902699|T047|AB|M94.241|ICD10CM|Chondromalacia, joints of right hand|Chondromalacia, joints of right hand +C2902699|T047|PT|M94.241|ICD10CM|Chondromalacia, joints of right hand|Chondromalacia, joints of right hand +C2902700|T047|AB|M94.242|ICD10CM|Chondromalacia, joints of left hand|Chondromalacia, joints of left hand +C2902700|T047|PT|M94.242|ICD10CM|Chondromalacia, joints of left hand|Chondromalacia, joints of left hand +C2902701|T047|AB|M94.249|ICD10CM|Chondromalacia, joints of unspecified hand|Chondromalacia, joints of unspecified hand +C2902701|T047|PT|M94.249|ICD10CM|Chondromalacia, joints of unspecified hand|Chondromalacia, joints of unspecified hand +C2902702|T047|AB|M94.25|ICD10CM|Chondromalacia, hip|Chondromalacia, hip +C2902702|T047|HT|M94.25|ICD10CM|Chondromalacia, hip|Chondromalacia, hip +C2902703|T047|AB|M94.251|ICD10CM|Chondromalacia, right hip|Chondromalacia, right hip +C2902703|T047|PT|M94.251|ICD10CM|Chondromalacia, right hip|Chondromalacia, right hip +C2902704|T047|AB|M94.252|ICD10CM|Chondromalacia, left hip|Chondromalacia, left hip +C2902704|T047|PT|M94.252|ICD10CM|Chondromalacia, left hip|Chondromalacia, left hip +C2902705|T047|AB|M94.259|ICD10CM|Chondromalacia, unspecified hip|Chondromalacia, unspecified hip +C2902705|T047|PT|M94.259|ICD10CM|Chondromalacia, unspecified hip|Chondromalacia, unspecified hip +C2902706|T047|AB|M94.26|ICD10CM|Chondromalacia, knee|Chondromalacia, knee +C2902706|T047|HT|M94.26|ICD10CM|Chondromalacia, knee|Chondromalacia, knee +C2902707|T047|AB|M94.261|ICD10CM|Chondromalacia, right knee|Chondromalacia, right knee +C2902707|T047|PT|M94.261|ICD10CM|Chondromalacia, right knee|Chondromalacia, right knee +C2902708|T047|AB|M94.262|ICD10CM|Chondromalacia, left knee|Chondromalacia, left knee +C2902708|T047|PT|M94.262|ICD10CM|Chondromalacia, left knee|Chondromalacia, left knee +C2902709|T047|AB|M94.269|ICD10CM|Chondromalacia, unspecified knee|Chondromalacia, unspecified knee +C2902709|T047|PT|M94.269|ICD10CM|Chondromalacia, unspecified knee|Chondromalacia, unspecified knee +C2902710|T047|AB|M94.27|ICD10CM|Chondromalacia, ankle and joints of foot|Chondromalacia, ankle and joints of foot +C2902710|T047|HT|M94.27|ICD10CM|Chondromalacia, ankle and joints of foot|Chondromalacia, ankle and joints of foot +C2902711|T047|AB|M94.271|ICD10CM|Chondromalacia, right ankle and joints of right foot|Chondromalacia, right ankle and joints of right foot +C2902711|T047|PT|M94.271|ICD10CM|Chondromalacia, right ankle and joints of right foot|Chondromalacia, right ankle and joints of right foot +C2902712|T047|AB|M94.272|ICD10CM|Chondromalacia, left ankle and joints of left foot|Chondromalacia, left ankle and joints of left foot +C2902712|T047|PT|M94.272|ICD10CM|Chondromalacia, left ankle and joints of left foot|Chondromalacia, left ankle and joints of left foot +C2902713|T047|AB|M94.279|ICD10CM|Chondromalacia, unspecified ankle and joints of foot|Chondromalacia, unspecified ankle and joints of foot +C2902713|T047|PT|M94.279|ICD10CM|Chondromalacia, unspecified ankle and joints of foot|Chondromalacia, unspecified ankle and joints of foot +C2902714|T047|AB|M94.28|ICD10CM|Chondromalacia, other site|Chondromalacia, other site +C2902714|T047|PT|M94.28|ICD10CM|Chondromalacia, other site|Chondromalacia, other site +C0840249|T047|PT|M94.29|ICD10CM|Chondromalacia, multiple sites|Chondromalacia, multiple sites +C0840249|T047|AB|M94.29|ICD10CM|Chondromalacia, multiple sites|Chondromalacia, multiple sites +C0343263|T047|PT|M94.3|ICD10|Chondrolysis|Chondrolysis +C0343263|T047|HT|M94.3|ICD10CM|Chondrolysis|Chondrolysis +C0343263|T047|AB|M94.3|ICD10CM|Chondrolysis|Chondrolysis +C2902715|T047|AB|M94.35|ICD10CM|Chondrolysis, hip|Chondrolysis, hip +C2902715|T047|HT|M94.35|ICD10CM|Chondrolysis, hip|Chondrolysis, hip +C2902716|T047|AB|M94.351|ICD10CM|Chondrolysis, right hip|Chondrolysis, right hip +C2902716|T047|PT|M94.351|ICD10CM|Chondrolysis, right hip|Chondrolysis, right hip +C2902717|T047|AB|M94.352|ICD10CM|Chondrolysis, left hip|Chondrolysis, left hip +C2902717|T047|PT|M94.352|ICD10CM|Chondrolysis, left hip|Chondrolysis, left hip +C2902718|T047|AB|M94.359|ICD10CM|Chondrolysis, unspecified hip|Chondrolysis, unspecified hip +C2902718|T047|PT|M94.359|ICD10CM|Chondrolysis, unspecified hip|Chondrolysis, unspecified hip +C0477703|T047|PT|M94.8|ICD10|Other specified disorders of cartilage|Other specified disorders of cartilage +C0477703|T047|HT|M94.8|ICD10CM|Other specified disorders of cartilage|Other specified disorders of cartilage +C0477703|T047|AB|M94.8|ICD10CM|Other specified disorders of cartilage|Other specified disorders of cartilage +C0477703|T047|HT|M94.8X|ICD10CM|Other specified disorders of cartilage|Other specified disorders of cartilage +C0477703|T047|AB|M94.8X|ICD10CM|Other specified disorders of cartilage|Other specified disorders of cartilage +C0840267|T047|PT|M94.8X0|ICD10CM|Other specified disorders of cartilage, multiple sites|Other specified disorders of cartilage, multiple sites +C0840267|T047|AB|M94.8X0|ICD10CM|Other specified disorders of cartilage, multiple sites|Other specified disorders of cartilage, multiple sites +C2902719|T047|AB|M94.8X1|ICD10CM|Other specified disorders of cartilage, shoulder|Other specified disorders of cartilage, shoulder +C2902719|T047|PT|M94.8X1|ICD10CM|Other specified disorders of cartilage, shoulder|Other specified disorders of cartilage, shoulder +C0840269|T047|PT|M94.8X2|ICD10CM|Other specified disorders of cartilage, upper arm|Other specified disorders of cartilage, upper arm +C0840269|T047|AB|M94.8X2|ICD10CM|Other specified disorders of cartilage, upper arm|Other specified disorders of cartilage, upper arm +C0840270|T047|PT|M94.8X3|ICD10CM|Other specified disorders of cartilage, forearm|Other specified disorders of cartilage, forearm +C0840270|T047|AB|M94.8X3|ICD10CM|Other specified disorders of cartilage, forearm|Other specified disorders of cartilage, forearm +C0840271|T047|PT|M94.8X4|ICD10CM|Other specified disorders of cartilage, hand|Other specified disorders of cartilage, hand +C0840271|T047|AB|M94.8X4|ICD10CM|Other specified disorders of cartilage, hand|Other specified disorders of cartilage, hand +C2902720|T047|AB|M94.8X5|ICD10CM|Other specified disorders of cartilage, thigh|Other specified disorders of cartilage, thigh +C2902720|T047|PT|M94.8X5|ICD10CM|Other specified disorders of cartilage, thigh|Other specified disorders of cartilage, thigh +C0840273|T047|PT|M94.8X6|ICD10CM|Other specified disorders of cartilage, lower leg|Other specified disorders of cartilage, lower leg +C0840273|T047|AB|M94.8X6|ICD10CM|Other specified disorders of cartilage, lower leg|Other specified disorders of cartilage, lower leg +C0840274|T047|PT|M94.8X7|ICD10CM|Other specified disorders of cartilage, ankle and foot|Other specified disorders of cartilage, ankle and foot +C0840274|T047|AB|M94.8X7|ICD10CM|Other specified disorders of cartilage, ankle and foot|Other specified disorders of cartilage, ankle and foot +C2902721|T047|AB|M94.8X8|ICD10CM|Other specified disorders of cartilage, other site|Other specified disorders of cartilage, other site +C2902721|T047|PT|M94.8X8|ICD10CM|Other specified disorders of cartilage, other site|Other specified disorders of cartilage, other site +C0477703|T047|AB|M94.8X9|ICD10CM|Other specified disorders of cartilage, unspecified sites|Other specified disorders of cartilage, unspecified sites +C0477703|T047|PT|M94.8X9|ICD10CM|Other specified disorders of cartilage, unspecified sites|Other specified disorders of cartilage, unspecified sites +C0007302|T047|PT|M94.9|ICD10CM|Disorder of cartilage, unspecified|Disorder of cartilage, unspecified +C0007302|T047|AB|M94.9|ICD10CM|Disorder of cartilage, unspecified|Disorder of cartilage, unspecified +C0007302|T047|PT|M94.9|ICD10|Disorder of cartilage, unspecified|Disorder of cartilage, unspecified +C0495018|T020|AB|M95|ICD10CM|Oth acquired deformities of ms sys and connective tissue|Oth acquired deformities of ms sys and connective tissue +C0495018|T020|HT|M95|ICD10CM|Other acquired deformities of musculoskeletal system and connective tissue|Other acquired deformities of musculoskeletal system and connective tissue +C0495018|T020|HT|M95|ICD10|Other acquired deformities of musculoskeletal system and connective tissue|Other acquired deformities of musculoskeletal system and connective tissue +C0477705|T047|HT|M95-M95|ICD10CM|Other disorders of the musculoskeletal system and connective tissue (M95)|Other disorders of the musculoskeletal system and connective tissue (M95) +C0477705|T047|HT|M95-M99.9|ICD10|Other disorders of the musculoskeletal system and connective tissue|Other disorders of the musculoskeletal system and connective tissue +C0028431|T020|PT|M95.0|ICD10CM|Acquired deformity of nose|Acquired deformity of nose +C0028431|T020|AB|M95.0|ICD10CM|Acquired deformity of nose|Acquired deformity of nose +C0028431|T020|PT|M95.0|ICD10|Acquired deformity of nose|Acquired deformity of nose +C0158516|T020|PT|M95.1|ICD10|Cauliflower ear|Cauliflower ear +C0158516|T020|HT|M95.1|ICD10CM|Cauliflower ear|Cauliflower ear +C0158516|T020|AB|M95.1|ICD10CM|Cauliflower ear|Cauliflower ear +C2902722|T020|AB|M95.10|ICD10CM|Cauliflower ear, unspecified ear|Cauliflower ear, unspecified ear +C2902722|T020|PT|M95.10|ICD10CM|Cauliflower ear, unspecified ear|Cauliflower ear, unspecified ear +C2902723|T020|AB|M95.11|ICD10CM|Cauliflower ear, right ear|Cauliflower ear, right ear +C2902723|T020|PT|M95.11|ICD10CM|Cauliflower ear, right ear|Cauliflower ear, right ear +C2902724|T020|AB|M95.12|ICD10CM|Cauliflower ear, left ear|Cauliflower ear, left ear +C2902724|T020|PT|M95.12|ICD10CM|Cauliflower ear, left ear|Cauliflower ear, left ear +C0158511|T020|PT|M95.2|ICD10CM|Other acquired deformity of head|Other acquired deformity of head +C0158511|T020|AB|M95.2|ICD10CM|Other acquired deformity of head|Other acquired deformity of head +C0158511|T020|PT|M95.2|ICD10|Other acquired deformity of head|Other acquired deformity of head +C0158512|T020|PT|M95.3|ICD10|Acquired deformity of neck|Acquired deformity of neck +C0158512|T020|PT|M95.3|ICD10CM|Acquired deformity of neck|Acquired deformity of neck +C0158512|T020|AB|M95.3|ICD10CM|Acquired deformity of neck|Acquired deformity of neck +C0001171|T020|PT|M95.4|ICD10|Acquired deformity of chest and rib|Acquired deformity of chest and rib +C0001171|T020|PT|M95.4|ICD10CM|Acquired deformity of chest and rib|Acquired deformity of chest and rib +C0001171|T020|AB|M95.4|ICD10CM|Acquired deformity of chest and rib|Acquired deformity of chest and rib +C0158515|T020|PT|M95.5|ICD10CM|Acquired deformity of pelvis|Acquired deformity of pelvis +C0158515|T020|AB|M95.5|ICD10CM|Acquired deformity of pelvis|Acquired deformity of pelvis +C0158515|T020|PT|M95.5|ICD10|Acquired deformity of pelvis|Acquired deformity of pelvis +C0477706|T020|AB|M95.8|ICD10CM|Oth acquired deformities of musculoskeletal system|Oth acquired deformities of musculoskeletal system +C0477706|T020|PT|M95.8|ICD10CM|Other specified acquired deformities of musculoskeletal system|Other specified acquired deformities of musculoskeletal system +C0477706|T020|PT|M95.8|ICD10|Other specified acquired deformities of musculoskeletal system|Other specified acquired deformities of musculoskeletal system +C0264132|T020|PT|M95.9|ICD10|Acquired deformity of musculoskeletal system, unspecified|Acquired deformity of musculoskeletal system, unspecified +C0264132|T020|PT|M95.9|ICD10CM|Acquired deformity of musculoskeletal system, unspecified|Acquired deformity of musculoskeletal system, unspecified +C0264132|T020|AB|M95.9|ICD10CM|Acquired deformity of musculoskeletal system, unspecified|Acquired deformity of musculoskeletal system, unspecified +C2902725|T046|AB|M96|ICD10CM|Intraop and postproc comp and disorders of ms sys, NEC|Intraop and postproc comp and disorders of ms sys, NEC +C0495020|T047|HT|M96|ICD10|Postprocedural musculoskeletal disorders, not elsewhere classified|Postprocedural musculoskeletal disorders, not elsewhere classified +C0451886|T020|PT|M96.0|ICD10|Pseudarthrosis after fusion or arthrodesis|Pseudarthrosis after fusion or arthrodesis +C0451886|T020|PT|M96.0|ICD10CM|Pseudarthrosis after fusion or arthrodesis|Pseudarthrosis after fusion or arthrodesis +C0451886|T020|AB|M96.0|ICD10CM|Pseudarthrosis after fusion or arthrodesis|Pseudarthrosis after fusion or arthrodesis +C0495021|T047|PT|M96.1|ICD10|Postlaminectomy syndrome, not elsewhere classified|Postlaminectomy syndrome, not elsewhere classified +C0495021|T047|PT|M96.1|ICD10CM|Postlaminectomy syndrome, not elsewhere classified|Postlaminectomy syndrome, not elsewhere classified +C0495021|T047|AB|M96.1|ICD10CM|Postlaminectomy syndrome, not elsewhere classified|Postlaminectomy syndrome, not elsewhere classified +C0158498|T046|PT|M96.2|ICD10|Postradiation kyphosis|Postradiation kyphosis +C0158498|T046|PT|M96.2|ICD10CM|Postradiation kyphosis|Postradiation kyphosis +C0158498|T046|AB|M96.2|ICD10CM|Postradiation kyphosis|Postradiation kyphosis +C0158499|T020|PT|M96.3|ICD10CM|Postlaminectomy kyphosis|Postlaminectomy kyphosis +C0158499|T020|AB|M96.3|ICD10CM|Postlaminectomy kyphosis|Postlaminectomy kyphosis +C0158499|T020|PT|M96.3|ICD10|Postlaminectomy kyphosis|Postlaminectomy kyphosis +C0495023|T046|PT|M96.4|ICD10CM|Postsurgical lordosis|Postsurgical lordosis +C0495023|T046|AB|M96.4|ICD10CM|Postsurgical lordosis|Postsurgical lordosis +C0495023|T046|PT|M96.4|ICD10|Postsurgical lordosis|Postsurgical lordosis +C0158504|T046|PT|M96.5|ICD10|Postradiation scoliosis|Postradiation scoliosis +C0158504|T046|PT|M96.5|ICD10CM|Postradiation scoliosis|Postradiation scoliosis +C0158504|T046|AB|M96.5|ICD10CM|Postradiation scoliosis|Postradiation scoliosis +C0477707|T037|PT|M96.6|ICD10|Fracture of bone following insertion of orthopaedic implant, joint prosthesis, or bone plate|Fracture of bone following insertion of orthopaedic implant, joint prosthesis, or bone plate +C0477707|T037|PT|M96.6|ICD10AE|Fracture of bone following insertion of orthopedic implant, joint prosthesis, or bone plate|Fracture of bone following insertion of orthopedic implant, joint prosthesis, or bone plate +C0477707|T037|HT|M96.6|ICD10CM|Fracture of bone following insertion of orthopedic implant, joint prosthesis, or bone plate|Fracture of bone following insertion of orthopedic implant, joint prosthesis, or bone plate +C0477707|T037|AB|M96.6|ICD10CM|Fx bone following insrt ortho implnt/prosth/bone plt|Fx bone following insrt ortho implnt/prosth/bone plt +C2902727|T037|HT|M96.62|ICD10CM|Fracture of humerus following insertion of orthopedic implant, joint prosthesis, or bone plate|Fracture of humerus following insertion of orthopedic implant, joint prosthesis, or bone plate +C2902727|T037|AB|M96.62|ICD10CM|Fx humerus following insrt ortho implnt/prosth/bone plt|Fx humerus following insrt ortho implnt/prosth/bone plt +C2902728|T037|AB|M96.621|ICD10CM|Fx humerus fol insrt ortho implnt/prosth/bone plt, right arm|Fx humerus fol insrt ortho implnt/prosth/bone plt, right arm +C2902729|T047|AB|M96.622|ICD10CM|Fx humerus fol insrt ortho implnt/prosth/bone plt, left arm|Fx humerus fol insrt ortho implnt/prosth/bone plt, left arm +C2902730|T037|AB|M96.629|ICD10CM|Fx humerus fol insrt ortho implnt/prosth/bone plt, unsp arm|Fx humerus fol insrt ortho implnt/prosth/bone plt, unsp arm +C2902731|T037|AB|M96.63|ICD10CM|Fx rad/ulna following insrt ortho implnt/prosth/bone plt|Fx rad/ulna following insrt ortho implnt/prosth/bone plt +C2902732|T037|AB|M96.631|ICD10CM|Fx rad/ulna fol insrt ortho implnt/prosth/bone plt, r arm|Fx rad/ulna fol insrt ortho implnt/prosth/bone plt, r arm +C2902733|T037|AB|M96.632|ICD10CM|Fx rad/ulna fol insrt ortho implnt/prosth/bone plt, left arm|Fx rad/ulna fol insrt ortho implnt/prosth/bone plt, left arm +C2902734|T037|AB|M96.639|ICD10CM|Fx rad/ulna fol insrt ortho implnt/prosth/bone plt, unsp arm|Fx rad/ulna fol insrt ortho implnt/prosth/bone plt, unsp arm +C2902735|T037|PT|M96.65|ICD10CM|Fracture of pelvis following insertion of orthopedic implant, joint prosthesis, or bone plate|Fracture of pelvis following insertion of orthopedic implant, joint prosthesis, or bone plate +C2902735|T037|AB|M96.65|ICD10CM|Fx pelvis following insrt ortho implnt/prosth/bone plt|Fx pelvis following insrt ortho implnt/prosth/bone plt +C2902736|T037|HT|M96.66|ICD10CM|Fracture of femur following insertion of orthopedic implant, joint prosthesis, or bone plate|Fracture of femur following insertion of orthopedic implant, joint prosthesis, or bone plate +C2902736|T037|AB|M96.66|ICD10CM|Fx femur following insrt ortho implnt/prosth/bone plt|Fx femur following insrt ortho implnt/prosth/bone plt +C2902737|T037|AB|M96.661|ICD10CM|Fx femur fol insrt ortho implnt/prosth/bone plt, right leg|Fx femur fol insrt ortho implnt/prosth/bone plt, right leg +C2902738|T037|AB|M96.662|ICD10CM|Fx femur fol insrt ortho implnt/prosth/bone plt, left leg|Fx femur fol insrt ortho implnt/prosth/bone plt, left leg +C2902739|T037|AB|M96.669|ICD10CM|Fx femur fol insrt ortho implnt/prosth/bone plt, unsp leg|Fx femur fol insrt ortho implnt/prosth/bone plt, unsp leg +C2902740|T037|AB|M96.67|ICD10CM|Fx tib/fib following insrt ortho implnt/prosth/bone plt|Fx tib/fib following insrt ortho implnt/prosth/bone plt +C2902741|T037|AB|M96.671|ICD10CM|Fx tib/fib fol insrt ortho implnt/prosth/bone plt, right leg|Fx tib/fib fol insrt ortho implnt/prosth/bone plt, right leg +C2902742|T037|AB|M96.672|ICD10CM|Fx tib/fib fol insrt ortho implnt/prosth/bone plt, left leg|Fx tib/fib fol insrt ortho implnt/prosth/bone plt, left leg +C2902743|T037|AB|M96.679|ICD10CM|Fx tib/fib fol insrt ortho implnt/prosth/bone plt, unsp leg|Fx tib/fib fol insrt ortho implnt/prosth/bone plt, unsp leg +C2902744|T037|PT|M96.69|ICD10CM|Fracture of other bone following insertion of orthopedic implant, joint prosthesis, or bone plate|Fracture of other bone following insertion of orthopedic implant, joint prosthesis, or bone plate +C2902744|T037|AB|M96.69|ICD10CM|Fx bone following insrt ortho implnt/prosth/bone plt|Fx bone following insrt ortho implnt/prosth/bone plt +C2902745|T047|AB|M96.8|ICD10CM|Other intraop and postproc comp and disorders of ms sys, NEC|Other intraop and postproc comp and disorders of ms sys, NEC +C0477708|T020|PT|M96.8|ICD10|Other postprocedural musculoskeletal disorders|Other postprocedural musculoskeletal disorders +C2902746|T047|AB|M96.81|ICD10CM|Intraop hemor/hemtom of a ms structure comp a procedure|Intraop hemor/hemtom of a ms structure comp a procedure +C2902746|T047|HT|M96.81|ICD10CM|Intraoperative hemorrhage and hematoma of a musculoskeletal structure complicating a procedure|Intraoperative hemorrhage and hematoma of a musculoskeletal structure complicating a procedure +C2902747|T047|AB|M96.810|ICD10CM|Intraop hemor/hemtom of a ms structure comp a ms sys proc|Intraop hemor/hemtom of a ms structure comp a ms sys proc +C2902748|T047|AB|M96.811|ICD10CM|Intraop hemor/hemtom of a ms structure comp oth procedure|Intraop hemor/hemtom of a ms structure comp oth procedure +C2902748|T047|PT|M96.811|ICD10CM|Intraoperative hemorrhage and hematoma of a musculoskeletal structure complicating other procedure|Intraoperative hemorrhage and hematoma of a musculoskeletal structure complicating other procedure +C2902749|T037|AB|M96.82|ICD10CM|Accidental pnctr & lac of a ms structure dur proc|Accidental pnctr & lac of a ms structure dur proc +C2902749|T037|HT|M96.82|ICD10CM|Accidental puncture and laceration of a musculoskeletal structure during a procedure|Accidental puncture and laceration of a musculoskeletal structure during a procedure +C2902750|T037|AB|M96.820|ICD10CM|Acc pnctr & lac of a ms structure during a ms sys procedure|Acc pnctr & lac of a ms structure during a ms sys procedure +C2902751|T037|AB|M96.821|ICD10CM|Acc pnctr & lac of a ms structure during oth procedure|Acc pnctr & lac of a ms structure during oth procedure +C2902751|T037|PT|M96.821|ICD10CM|Accidental puncture and laceration of a musculoskeletal structure during other procedure|Accidental puncture and laceration of a musculoskeletal structure during other procedure +C4268815|T046|AB|M96.83|ICD10CM|Postproc hemorrhage of a ms structure following a procedure|Postproc hemorrhage of a ms structure following a procedure +C4268815|T046|HT|M96.83|ICD10CM|Postprocedural hemorrhage of a musculoskeletal structure following a procedure|Postprocedural hemorrhage of a musculoskeletal structure following a procedure +C4268816|T046|AB|M96.830|ICD10CM|Postproc hemor of a ms structure fol a ms sys procedure|Postproc hemor of a ms structure fol a ms sys procedure +C4268817|T046|AB|M96.831|ICD10CM|Postproc hemor of a ms structure following other procedure|Postproc hemor of a ms structure following other procedure +C4268817|T046|PT|M96.831|ICD10CM|Postprocedural hemorrhage of a musculoskeletal structure following other procedure|Postprocedural hemorrhage of a musculoskeletal structure following other procedure +C4268818|T046|AB|M96.84|ICD10CM|Postproc hematoma and seroma of a ms structure fol a proc|Postproc hematoma and seroma of a ms structure fol a proc +C4268818|T046|HT|M96.84|ICD10CM|Postprocedural hematoma and seroma of a musculoskeletal structure following a procedure|Postprocedural hematoma and seroma of a musculoskeletal structure following a procedure +C4268819|T046|AB|M96.840|ICD10CM|Postproc hematoma of a ms structure fol a ms sys procedure|Postproc hematoma of a ms structure fol a ms sys procedure +C4268819|T046|PT|M96.840|ICD10CM|Postprocedural hematoma of a musculoskeletal structure following a musculoskeletal system procedure|Postprocedural hematoma of a musculoskeletal structure following a musculoskeletal system procedure +C4268820|T046|AB|M96.841|ICD10CM|Postproc hematoma of a ms structure fol other procedure|Postproc hematoma of a ms structure fol other procedure +C4268820|T046|PT|M96.841|ICD10CM|Postprocedural hematoma of a musculoskeletal structure following other procedure|Postprocedural hematoma of a musculoskeletal structure following other procedure +C4268821|T046|AB|M96.842|ICD10CM|Postproc seroma of a ms structure fol a ms sys procedure|Postproc seroma of a ms structure fol a ms sys procedure +C4268821|T046|PT|M96.842|ICD10CM|Postprocedural seroma of a musculoskeletal structure following a musculoskeletal system procedure|Postprocedural seroma of a musculoskeletal structure following a musculoskeletal system procedure +C4268822|T046|AB|M96.843|ICD10CM|Postproc seroma of a ms structure following other procedure|Postproc seroma of a ms structure following other procedure +C4268822|T046|PT|M96.843|ICD10CM|Postprocedural seroma of a musculoskeletal structure following other procedure|Postprocedural seroma of a musculoskeletal structure following other procedure +C1401029|T020|ET|M96.89|ICD10CM|Instability of joint secondary to removal of joint prosthesis|Instability of joint secondary to removal of joint prosthesis +C2902755|T046|AB|M96.89|ICD10CM|Oth intraop and postproc comp and disorders of the ms sys|Oth intraop and postproc comp and disorders of the ms sys +C2902755|T046|PT|M96.89|ICD10CM|Other intraoperative and postprocedural complications and disorders of the musculoskeletal system|Other intraoperative and postprocedural complications and disorders of the musculoskeletal system +C0477710|T020|PT|M96.9|ICD10|Postprocedural musculoskeletal disorder, unspecified|Postprocedural musculoskeletal disorder, unspecified +C4268824|T046|AB|M97|ICD10CM|Periprosthetic fracture around internal prosthetic joint|Periprosthetic fracture around internal prosthetic joint +C4268824|T046|HT|M97|ICD10CM|Periprosthetic fracture around internal prosthetic joint|Periprosthetic fracture around internal prosthetic joint +C4268823|T046|HT|M97-M97|ICD10CM|Periprosthetic fracture around internal prosthetic joint (M97)|Periprosthetic fracture around internal prosthetic joint (M97) +C4268825|T046|AB|M97.0|ICD10CM|Periprosthetic fracture around internal prosthetic hip joint|Periprosthetic fracture around internal prosthetic hip joint +C4268825|T046|HT|M97.0|ICD10CM|Periprosthetic fracture around internal prosthetic hip joint|Periprosthetic fracture around internal prosthetic hip joint +C4268826|T046|AB|M97.01|ICD10CM|Periprosthetic fracture around internal prosthetic r hip jt|Periprosthetic fracture around internal prosthetic r hip jt +C4268826|T046|HT|M97.01|ICD10CM|Periprosthetic fracture around internal prosthetic right hip joint|Periprosthetic fracture around internal prosthetic right hip joint +C4268827|T046|AB|M97.01XA|ICD10CM|Periprosth fracture around internal prosth r hip jt, init|Periprosth fracture around internal prosth r hip jt, init +C4268827|T046|PT|M97.01XA|ICD10CM|Periprosthetic fracture around internal prosthetic right hip joint, initial encounter|Periprosthetic fracture around internal prosthetic right hip joint, initial encounter +C4268828|T046|AB|M97.01XD|ICD10CM|Periprosth fracture around internal prosth r hip jt, subs|Periprosth fracture around internal prosth r hip jt, subs +C4268828|T046|PT|M97.01XD|ICD10CM|Periprosthetic fracture around internal prosthetic right hip joint, subsequent encounter|Periprosthetic fracture around internal prosthetic right hip joint, subsequent encounter +C4268829|T046|AB|M97.01XS|ICD10CM|Periprosth fracture around internal prosth r hip jt, sequela|Periprosth fracture around internal prosth r hip jt, sequela +C4268829|T046|PT|M97.01XS|ICD10CM|Periprosthetic fracture around internal prosthetic right hip joint, sequela|Periprosthetic fracture around internal prosthetic right hip joint, sequela +C4268830|T046|AB|M97.02|ICD10CM|Periprosthetic fracture around internal prosthetic l hip jt|Periprosthetic fracture around internal prosthetic l hip jt +C4268830|T046|HT|M97.02|ICD10CM|Periprosthetic fracture around internal prosthetic left hip joint|Periprosthetic fracture around internal prosthetic left hip joint +C4268831|T046|AB|M97.02XA|ICD10CM|Periprosth fracture around internal prosth l hip jt, init|Periprosth fracture around internal prosth l hip jt, init +C4268831|T046|PT|M97.02XA|ICD10CM|Periprosthetic fracture around internal prosthetic left hip joint, initial encounter|Periprosthetic fracture around internal prosthetic left hip joint, initial encounter +C4268832|T046|AB|M97.02XD|ICD10CM|Periprosth fracture around internal prosth l hip jt, subs|Periprosth fracture around internal prosth l hip jt, subs +C4268832|T046|PT|M97.02XD|ICD10CM|Periprosthetic fracture around internal prosthetic left hip joint, subsequent encounter|Periprosthetic fracture around internal prosthetic left hip joint, subsequent encounter +C4268833|T046|AB|M97.02XS|ICD10CM|Periprosth fracture around internal prosth l hip jt, sequela|Periprosth fracture around internal prosth l hip jt, sequela +C4268833|T046|PT|M97.02XS|ICD10CM|Periprosthetic fracture around internal prosthetic left hip joint, sequela|Periprosthetic fracture around internal prosthetic left hip joint, sequela +C4268834|T046|AB|M97.1|ICD10CM|Periprosth fracture around internal prosthetic knee joint|Periprosth fracture around internal prosthetic knee joint +C4268834|T046|HT|M97.1|ICD10CM|Periprosthetic fracture around internal prosthetic knee joint|Periprosthetic fracture around internal prosthetic knee joint +C4268835|T046|AB|M97.11|ICD10CM|Periprosthetic fracture around internal prosthetic r knee jt|Periprosthetic fracture around internal prosthetic r knee jt +C4268835|T046|HT|M97.11|ICD10CM|Periprosthetic fracture around internal prosthetic right knee joint|Periprosthetic fracture around internal prosthetic right knee joint +C4268836|T046|AB|M97.11XA|ICD10CM|Periprosth fracture around internal prosth r knee jt, init|Periprosth fracture around internal prosth r knee jt, init +C4268836|T046|PT|M97.11XA|ICD10CM|Periprosthetic fracture around internal prosthetic right knee joint, initial encounter|Periprosthetic fracture around internal prosthetic right knee joint, initial encounter +C4268837|T046|AB|M97.11XD|ICD10CM|Periprosth fracture around internal prosth r knee jt, subs|Periprosth fracture around internal prosth r knee jt, subs +C4268837|T046|PT|M97.11XD|ICD10CM|Periprosthetic fracture around internal prosthetic right knee joint, subsequent encounter|Periprosthetic fracture around internal prosthetic right knee joint, subsequent encounter +C4268838|T046|AB|M97.11XS|ICD10CM|Periprosth fx around internal prosth r knee jt, sequela|Periprosth fx around internal prosth r knee jt, sequela +C4268838|T046|PT|M97.11XS|ICD10CM|Periprosthetic fracture around internal prosthetic right knee joint, sequela|Periprosthetic fracture around internal prosthetic right knee joint, sequela +C4268839|T046|AB|M97.12|ICD10CM|Periprosthetic fracture around internal prosthetic l knee jt|Periprosthetic fracture around internal prosthetic l knee jt +C4268839|T046|HT|M97.12|ICD10CM|Periprosthetic fracture around internal prosthetic left knee joint|Periprosthetic fracture around internal prosthetic left knee joint +C4268840|T046|AB|M97.12XA|ICD10CM|Periprosth fracture around internal prosth l knee jt, init|Periprosth fracture around internal prosth l knee jt, init +C4268840|T046|PT|M97.12XA|ICD10CM|Periprosthetic fracture around internal prosthetic left knee joint, initial encounter|Periprosthetic fracture around internal prosthetic left knee joint, initial encounter +C4268841|T046|AB|M97.12XD|ICD10CM|Periprosth fracture around internal prosth l knee jt, subs|Periprosth fracture around internal prosth l knee jt, subs +C4268841|T046|PT|M97.12XD|ICD10CM|Periprosthetic fracture around internal prosthetic left knee joint, subsequent encounter|Periprosthetic fracture around internal prosthetic left knee joint, subsequent encounter +C4268842|T046|AB|M97.12XS|ICD10CM|Periprosth fx around internal prosth l knee jt, sequela|Periprosth fx around internal prosth l knee jt, sequela +C4268842|T046|PT|M97.12XS|ICD10CM|Periprosthetic fracture around internal prosthetic left knee joint, sequela|Periprosthetic fracture around internal prosthetic left knee joint, sequela +C4268843|T046|AB|M97.2|ICD10CM|Periprosth fracture around internal prosthetic ankle joint|Periprosth fracture around internal prosthetic ankle joint +C4268843|T046|HT|M97.2|ICD10CM|Periprosthetic fracture around internal prosthetic ankle joint|Periprosthetic fracture around internal prosthetic ankle joint +C4268844|T046|AB|M97.21|ICD10CM|Periprosth fracture around internal prosthetic r ankle joint|Periprosth fracture around internal prosthetic r ankle joint +C4268844|T046|HT|M97.21|ICD10CM|Periprosthetic fracture around internal prosthetic right ankle joint|Periprosthetic fracture around internal prosthetic right ankle joint +C4268845|T046|AB|M97.21XA|ICD10CM|Periprosth fx around internal prosth r ankle joint, init|Periprosth fx around internal prosth r ankle joint, init +C4268845|T046|PT|M97.21XA|ICD10CM|Periprosthetic fracture around internal prosthetic right ankle joint, initial encounter|Periprosthetic fracture around internal prosthetic right ankle joint, initial encounter +C4268846|T046|AB|M97.21XD|ICD10CM|Periprosth fx around internal prosth r ankle joint, subs|Periprosth fx around internal prosth r ankle joint, subs +C4268846|T046|PT|M97.21XD|ICD10CM|Periprosthetic fracture around internal prosthetic right ankle joint, subsequent encounter|Periprosthetic fracture around internal prosthetic right ankle joint, subsequent encounter +C4268847|T046|AB|M97.21XS|ICD10CM|Periprosth fx around internal prosth r ankle joint, sequela|Periprosth fx around internal prosth r ankle joint, sequela +C4268847|T046|PT|M97.21XS|ICD10CM|Periprosthetic fracture around internal prosthetic right ankle joint, sequela|Periprosthetic fracture around internal prosthetic right ankle joint, sequela +C4268848|T046|AB|M97.22|ICD10CM|Periprosth fracture around internal prosthetic l ankle joint|Periprosth fracture around internal prosthetic l ankle joint +C4268848|T046|HT|M97.22|ICD10CM|Periprosthetic fracture around internal prosthetic left ankle joint|Periprosthetic fracture around internal prosthetic left ankle joint +C4268849|T046|AB|M97.22XA|ICD10CM|Periprosth fx around internal prosth l ankle joint, init|Periprosth fx around internal prosth l ankle joint, init +C4268849|T046|PT|M97.22XA|ICD10CM|Periprosthetic fracture around internal prosthetic left ankle joint, initial encounter|Periprosthetic fracture around internal prosthetic left ankle joint, initial encounter +C4268850|T046|AB|M97.22XD|ICD10CM|Periprosth fx around internal prosth l ankle joint, subs|Periprosth fx around internal prosth l ankle joint, subs +C4268850|T046|PT|M97.22XD|ICD10CM|Periprosthetic fracture around internal prosthetic left ankle joint, subsequent encounter|Periprosthetic fracture around internal prosthetic left ankle joint, subsequent encounter +C4268851|T046|AB|M97.22XS|ICD10CM|Periprosth fx around internal prosth l ankle joint, sequela|Periprosth fx around internal prosth l ankle joint, sequela +C4268851|T046|PT|M97.22XS|ICD10CM|Periprosthetic fracture around internal prosthetic left ankle joint, sequela|Periprosthetic fracture around internal prosthetic left ankle joint, sequela +C4268852|T046|AB|M97.3|ICD10CM|Periprosth fracture around internal prosthetic shoulder jt|Periprosth fracture around internal prosthetic shoulder jt +C4268852|T046|HT|M97.3|ICD10CM|Periprosthetic fracture around internal prosthetic shoulder joint|Periprosthetic fracture around internal prosthetic shoulder joint +C4268853|T046|AB|M97.31|ICD10CM|Periprosth fracture around internal prosthetic r shoulder jt|Periprosth fracture around internal prosthetic r shoulder jt +C4268853|T046|HT|M97.31|ICD10CM|Periprosthetic fracture around internal prosthetic right shoulder joint|Periprosthetic fracture around internal prosthetic right shoulder joint +C4268854|T046|AB|M97.31XA|ICD10CM|Periprosth fx around internal prosth r shoulder jt, init|Periprosth fx around internal prosth r shoulder jt, init +C4268854|T046|PT|M97.31XA|ICD10CM|Periprosthetic fracture around internal prosthetic right shoulder joint, initial encounter|Periprosthetic fracture around internal prosthetic right shoulder joint, initial encounter +C4268855|T046|AB|M97.31XD|ICD10CM|Periprosth fx around internal prosth r shoulder jt, subs|Periprosth fx around internal prosth r shoulder jt, subs +C4268855|T046|PT|M97.31XD|ICD10CM|Periprosthetic fracture around internal prosthetic right shoulder joint, subsequent encounter|Periprosthetic fracture around internal prosthetic right shoulder joint, subsequent encounter +C4268856|T046|AB|M97.31XS|ICD10CM|Periprosth fx around internal prosth r shoulder jt, sequela|Periprosth fx around internal prosth r shoulder jt, sequela +C4268856|T046|PT|M97.31XS|ICD10CM|Periprosthetic fracture around internal prosthetic right shoulder joint, sequela|Periprosthetic fracture around internal prosthetic right shoulder joint, sequela +C4268857|T046|AB|M97.32|ICD10CM|Periprosth fracture around internal prosthetic l shoulder jt|Periprosth fracture around internal prosthetic l shoulder jt +C4268857|T046|HT|M97.32|ICD10CM|Periprosthetic fracture around internal prosthetic left shoulder joint|Periprosthetic fracture around internal prosthetic left shoulder joint +C4268858|T046|AB|M97.32XA|ICD10CM|Periprosth fx around internal prosth l shoulder jt, init|Periprosth fx around internal prosth l shoulder jt, init +C4268858|T046|PT|M97.32XA|ICD10CM|Periprosthetic fracture around internal prosthetic left shoulder joint, initial encounter|Periprosthetic fracture around internal prosthetic left shoulder joint, initial encounter +C4268859|T046|AB|M97.32XD|ICD10CM|Periprosth fx around internal prosth l shoulder jt, subs|Periprosth fx around internal prosth l shoulder jt, subs +C4268859|T046|PT|M97.32XD|ICD10CM|Periprosthetic fracture around internal prosthetic left shoulder joint, subsequent encounter|Periprosthetic fracture around internal prosthetic left shoulder joint, subsequent encounter +C4268860|T046|AB|M97.32XS|ICD10CM|Periprosth fx around internal prosth l shoulder jt, sequela|Periprosth fx around internal prosth l shoulder jt, sequela +C4268860|T046|PT|M97.32XS|ICD10CM|Periprosthetic fracture around internal prosthetic left shoulder joint, sequela|Periprosthetic fracture around internal prosthetic left shoulder joint, sequela +C4268861|T046|AB|M97.4|ICD10CM|Periprosth fracture around internal prosthetic elbow joint|Periprosth fracture around internal prosthetic elbow joint +C4268861|T046|HT|M97.4|ICD10CM|Periprosthetic fracture around internal prosthetic elbow joint|Periprosthetic fracture around internal prosthetic elbow joint +C4268862|T046|AB|M97.41|ICD10CM|Periprosth fracture around internal prosthetic r elbow joint|Periprosth fracture around internal prosthetic r elbow joint +C4268862|T046|HT|M97.41|ICD10CM|Periprosthetic fracture around internal prosthetic right elbow joint|Periprosthetic fracture around internal prosthetic right elbow joint +C4268863|T046|AB|M97.41XA|ICD10CM|Periprosth fx around internal prosth r elbow joint, init|Periprosth fx around internal prosth r elbow joint, init +C4268863|T046|PT|M97.41XA|ICD10CM|Periprosthetic fracture around internal prosthetic right elbow joint, initial encounter|Periprosthetic fracture around internal prosthetic right elbow joint, initial encounter +C4268864|T046|AB|M97.41XD|ICD10CM|Periprosth fx around internal prosth r elbow joint, subs|Periprosth fx around internal prosth r elbow joint, subs +C4268864|T046|PT|M97.41XD|ICD10CM|Periprosthetic fracture around internal prosthetic right elbow joint, subsequent encounter|Periprosthetic fracture around internal prosthetic right elbow joint, subsequent encounter +C4268865|T046|AB|M97.41XS|ICD10CM|Periprosth fx around internal prosth r elbow joint, sequela|Periprosth fx around internal prosth r elbow joint, sequela +C4268865|T046|PT|M97.41XS|ICD10CM|Periprosthetic fracture around internal prosthetic right elbow joint, sequela|Periprosthetic fracture around internal prosthetic right elbow joint, sequela +C4268866|T046|AB|M97.42|ICD10CM|Periprosth fracture around internal prosthetic l elbow joint|Periprosth fracture around internal prosthetic l elbow joint +C4268866|T046|HT|M97.42|ICD10CM|Periprosthetic fracture around internal prosthetic left elbow joint|Periprosthetic fracture around internal prosthetic left elbow joint +C4268867|T046|AB|M97.42XA|ICD10CM|Periprosth fx around internal prosth l elbow joint, init|Periprosth fx around internal prosth l elbow joint, init +C4268867|T046|PT|M97.42XA|ICD10CM|Periprosthetic fracture around internal prosthetic left elbow joint, initial encounter|Periprosthetic fracture around internal prosthetic left elbow joint, initial encounter +C4268868|T046|AB|M97.42XD|ICD10CM|Periprosth fx around internal prosth l elbow joint, subs|Periprosth fx around internal prosth l elbow joint, subs +C4268868|T046|PT|M97.42XD|ICD10CM|Periprosthetic fracture around internal prosthetic left elbow joint, subsequent encounter|Periprosthetic fracture around internal prosthetic left elbow joint, subsequent encounter +C4268869|T046|AB|M97.42XS|ICD10CM|Periprosth fx around internal prosth l elbow joint, sequela|Periprosth fx around internal prosth l elbow joint, sequela +C4268869|T046|PT|M97.42XS|ICD10CM|Periprosthetic fracture around internal prosthetic left elbow joint, sequela|Periprosthetic fracture around internal prosthetic left elbow joint, sequela +C4268870|T046|AB|M97.8|ICD10CM|Periprosth fracture around other internal prosthetic joint|Periprosth fracture around other internal prosthetic joint +C4268871|T046|ET|M97.8|ICD10CM|Periprosthetic fracture around internal prosthetic finger joint|Periprosthetic fracture around internal prosthetic finger joint +C4268872|T046|ET|M97.8|ICD10CM|Periprosthetic fracture around internal prosthetic spinal joint|Periprosthetic fracture around internal prosthetic spinal joint +C4268873|T046|ET|M97.8|ICD10CM|Periprosthetic fracture around internal prosthetic toe joint|Periprosthetic fracture around internal prosthetic toe joint +C4268874|T046|ET|M97.8|ICD10CM|Periprosthetic fracture around internal prosthetic wrist joint|Periprosthetic fracture around internal prosthetic wrist joint +C4268870|T046|HT|M97.8|ICD10CM|Periprosthetic fracture around other internal prosthetic joint|Periprosthetic fracture around other internal prosthetic joint +C4268875|T046|AB|M97.8XXA|ICD10CM|Periprosth fracture around other internal prosth joint, init|Periprosth fracture around other internal prosth joint, init +C4268875|T046|PT|M97.8XXA|ICD10CM|Periprosthetic fracture around other internal prosthetic joint, initial encounter|Periprosthetic fracture around other internal prosthetic joint, initial encounter +C4268876|T046|AB|M97.8XXD|ICD10CM|Periprosth fracture around other internal prosth joint, subs|Periprosth fracture around other internal prosth joint, subs +C4268876|T046|PT|M97.8XXD|ICD10CM|Periprosthetic fracture around other internal prosthetic joint, subsequent encounter|Periprosthetic fracture around other internal prosthetic joint, subsequent encounter +C4268877|T046|AB|M97.8XXS|ICD10CM|Periprosth fx around other internal prosth joint, sequela|Periprosth fx around other internal prosth joint, sequela +C4268877|T046|PT|M97.8XXS|ICD10CM|Periprosthetic fracture around other internal prosthetic joint, sequela|Periprosthetic fracture around other internal prosthetic joint, sequela +C4268878|T046|AB|M97.9|ICD10CM|Periprosth fracture around unsp internal prosthetic joint|Periprosth fracture around unsp internal prosthetic joint +C4268878|T046|HT|M97.9|ICD10CM|Periprosthetic fracture around unspecified internal prosthetic joint|Periprosthetic fracture around unspecified internal prosthetic joint +C4268879|T046|AB|M97.9XXA|ICD10CM|Periprosth fracture around unsp internal prosth joint, init|Periprosth fracture around unsp internal prosth joint, init +C4268879|T046|PT|M97.9XXA|ICD10CM|Periprosthetic fracture around unspecified internal prosthetic joint, initial encounter|Periprosthetic fracture around unspecified internal prosthetic joint, initial encounter +C4268880|T046|AB|M97.9XXD|ICD10CM|Periprosth fracture around unsp internal prosth joint, subs|Periprosth fracture around unsp internal prosth joint, subs +C4268880|T046|PT|M97.9XXD|ICD10CM|Periprosthetic fracture around unspecified internal prosthetic joint, subsequent encounter|Periprosthetic fracture around unspecified internal prosthetic joint, subsequent encounter +C4268881|T046|AB|M97.9XXS|ICD10CM|Periprosth fx around unsp internal prosth joint, sequela|Periprosth fx around unsp internal prosth joint, sequela +C4268881|T046|PT|M97.9XXS|ICD10CM|Periprosthetic fracture around unspecified internal prosthetic joint, sequela|Periprosthetic fracture around unspecified internal prosthetic joint, sequela +C0868884|T033|HT|M99|ICD10|Biomechanical lesions, not elsewhere classified|Biomechanical lesions, not elsewhere classified +C0868884|T033|AB|M99|ICD10CM|Biomechanical lesions, not elsewhere classified|Biomechanical lesions, not elsewhere classified +C0868884|T033|HT|M99|ICD10CM|Biomechanical lesions, not elsewhere classified|Biomechanical lesions, not elsewhere classified +C0868884|T033|HT|M99-M99|ICD10CM|Biomechanical lesions, not elsewhere classified (M99)|Biomechanical lesions, not elsewhere classified (M99) +C0451902|T046|HT|M99.0|ICD10CM|Segmental and somatic dysfunction|Segmental and somatic dysfunction +C0451902|T046|AB|M99.0|ICD10CM|Segmental and somatic dysfunction|Segmental and somatic dysfunction +C0451902|T046|PT|M99.0|ICD10|Segmental and somatic dysfunction|Segmental and somatic dysfunction +C2902756|T046|AB|M99.00|ICD10CM|Segmental and somatic dysfunction of head region|Segmental and somatic dysfunction of head region +C2902756|T046|PT|M99.00|ICD10CM|Segmental and somatic dysfunction of head region|Segmental and somatic dysfunction of head region +C2902757|T046|AB|M99.01|ICD10CM|Segmental and somatic dysfunction of cervical region|Segmental and somatic dysfunction of cervical region +C2902757|T046|PT|M99.01|ICD10CM|Segmental and somatic dysfunction of cervical region|Segmental and somatic dysfunction of cervical region +C2902758|T046|AB|M99.02|ICD10CM|Segmental and somatic dysfunction of thoracic region|Segmental and somatic dysfunction of thoracic region +C2902758|T046|PT|M99.02|ICD10CM|Segmental and somatic dysfunction of thoracic region|Segmental and somatic dysfunction of thoracic region +C2902759|T046|AB|M99.03|ICD10CM|Segmental and somatic dysfunction of lumbar region|Segmental and somatic dysfunction of lumbar region +C2902759|T046|PT|M99.03|ICD10CM|Segmental and somatic dysfunction of lumbar region|Segmental and somatic dysfunction of lumbar region +C2902760|T046|AB|M99.04|ICD10CM|Segmental and somatic dysfunction of sacral region|Segmental and somatic dysfunction of sacral region +C2902760|T046|PT|M99.04|ICD10CM|Segmental and somatic dysfunction of sacral region|Segmental and somatic dysfunction of sacral region +C2902761|T046|AB|M99.05|ICD10CM|Segmental and somatic dysfunction of pelvic region|Segmental and somatic dysfunction of pelvic region +C2902761|T046|PT|M99.05|ICD10CM|Segmental and somatic dysfunction of pelvic region|Segmental and somatic dysfunction of pelvic region +C2902762|T046|AB|M99.06|ICD10CM|Segmental and somatic dysfunction of lower extremity|Segmental and somatic dysfunction of lower extremity +C2902762|T046|PT|M99.06|ICD10CM|Segmental and somatic dysfunction of lower extremity|Segmental and somatic dysfunction of lower extremity +C2902763|T046|AB|M99.07|ICD10CM|Segmental and somatic dysfunction of upper extremity|Segmental and somatic dysfunction of upper extremity +C2902763|T046|PT|M99.07|ICD10CM|Segmental and somatic dysfunction of upper extremity|Segmental and somatic dysfunction of upper extremity +C2902764|T046|AB|M99.08|ICD10CM|Segmental and somatic dysfunction of rib cage|Segmental and somatic dysfunction of rib cage +C2902764|T046|PT|M99.08|ICD10CM|Segmental and somatic dysfunction of rib cage|Segmental and somatic dysfunction of rib cage +C2902765|T046|AB|M99.09|ICD10CM|Segmental and somatic dysfunction of abdomen and oth regions|Segmental and somatic dysfunction of abdomen and oth regions +C2902765|T046|PT|M99.09|ICD10CM|Segmental and somatic dysfunction of abdomen and other regions|Segmental and somatic dysfunction of abdomen and other regions +C0451823|T037|PT|M99.1|ICD10|Subluxation complex (vertebral)|Subluxation complex (vertebral) +C0451823|T037|HT|M99.1|ICD10CM|Subluxation complex (vertebral)|Subluxation complex (vertebral) +C0451823|T037|AB|M99.1|ICD10CM|Subluxation complex (vertebral)|Subluxation complex (vertebral) +C2902766|T037|AB|M99.10|ICD10CM|Subluxation complex (vertebral) of head region|Subluxation complex (vertebral) of head region +C2902766|T037|PT|M99.10|ICD10CM|Subluxation complex (vertebral) of head region|Subluxation complex (vertebral) of head region +C2902767|T037|AB|M99.11|ICD10CM|Subluxation complex (vertebral) of cervical region|Subluxation complex (vertebral) of cervical region +C2902767|T037|PT|M99.11|ICD10CM|Subluxation complex (vertebral) of cervical region|Subluxation complex (vertebral) of cervical region +C2902768|T037|AB|M99.12|ICD10CM|Subluxation complex (vertebral) of thoracic region|Subluxation complex (vertebral) of thoracic region +C2902768|T037|PT|M99.12|ICD10CM|Subluxation complex (vertebral) of thoracic region|Subluxation complex (vertebral) of thoracic region +C2902769|T037|AB|M99.13|ICD10CM|Subluxation complex (vertebral) of lumbar region|Subluxation complex (vertebral) of lumbar region +C2902769|T037|PT|M99.13|ICD10CM|Subluxation complex (vertebral) of lumbar region|Subluxation complex (vertebral) of lumbar region +C2902770|T037|AB|M99.14|ICD10CM|Subluxation complex (vertebral) of sacral region|Subluxation complex (vertebral) of sacral region +C2902770|T037|PT|M99.14|ICD10CM|Subluxation complex (vertebral) of sacral region|Subluxation complex (vertebral) of sacral region +C2902771|T037|AB|M99.15|ICD10CM|Subluxation complex (vertebral) of pelvic region|Subluxation complex (vertebral) of pelvic region +C2902771|T037|PT|M99.15|ICD10CM|Subluxation complex (vertebral) of pelvic region|Subluxation complex (vertebral) of pelvic region +C2902772|T037|AB|M99.16|ICD10CM|Subluxation complex (vertebral) of lower extremity|Subluxation complex (vertebral) of lower extremity +C2902772|T037|PT|M99.16|ICD10CM|Subluxation complex (vertebral) of lower extremity|Subluxation complex (vertebral) of lower extremity +C2902773|T037|AB|M99.17|ICD10CM|Subluxation complex (vertebral) of upper extremity|Subluxation complex (vertebral) of upper extremity +C2902773|T037|PT|M99.17|ICD10CM|Subluxation complex (vertebral) of upper extremity|Subluxation complex (vertebral) of upper extremity +C2902774|T037|AB|M99.18|ICD10CM|Subluxation complex (vertebral) of rib cage|Subluxation complex (vertebral) of rib cage +C2902774|T037|PT|M99.18|ICD10CM|Subluxation complex (vertebral) of rib cage|Subluxation complex (vertebral) of rib cage +C2902775|T037|AB|M99.19|ICD10CM|Subluxation complex (vertebral) of abdomen and other regions|Subluxation complex (vertebral) of abdomen and other regions +C2902775|T037|PT|M99.19|ICD10CM|Subluxation complex (vertebral) of abdomen and other regions|Subluxation complex (vertebral) of abdomen and other regions +C0451824|T037|HT|M99.2|ICD10CM|Subluxation stenosis of neural canal|Subluxation stenosis of neural canal +C0451824|T037|AB|M99.2|ICD10CM|Subluxation stenosis of neural canal|Subluxation stenosis of neural canal +C0451824|T037|PT|M99.2|ICD10|Subluxation stenosis of neural canal|Subluxation stenosis of neural canal +C2902776|T037|AB|M99.20|ICD10CM|Subluxation stenosis of neural canal of head region|Subluxation stenosis of neural canal of head region +C2902776|T037|PT|M99.20|ICD10CM|Subluxation stenosis of neural canal of head region|Subluxation stenosis of neural canal of head region +C2902777|T037|AB|M99.21|ICD10CM|Subluxation stenosis of neural canal of cervical region|Subluxation stenosis of neural canal of cervical region +C2902777|T037|PT|M99.21|ICD10CM|Subluxation stenosis of neural canal of cervical region|Subluxation stenosis of neural canal of cervical region +C2902778|T037|AB|M99.22|ICD10CM|Subluxation stenosis of neural canal of thoracic region|Subluxation stenosis of neural canal of thoracic region +C2902778|T037|PT|M99.22|ICD10CM|Subluxation stenosis of neural canal of thoracic region|Subluxation stenosis of neural canal of thoracic region +C2902779|T037|AB|M99.23|ICD10CM|Subluxation stenosis of neural canal of lumbar region|Subluxation stenosis of neural canal of lumbar region +C2902779|T037|PT|M99.23|ICD10CM|Subluxation stenosis of neural canal of lumbar region|Subluxation stenosis of neural canal of lumbar region +C2902780|T037|AB|M99.24|ICD10CM|Subluxation stenosis of neural canal of sacral region|Subluxation stenosis of neural canal of sacral region +C2902780|T037|PT|M99.24|ICD10CM|Subluxation stenosis of neural canal of sacral region|Subluxation stenosis of neural canal of sacral region +C2902781|T037|AB|M99.25|ICD10CM|Subluxation stenosis of neural canal of pelvic region|Subluxation stenosis of neural canal of pelvic region +C2902781|T037|PT|M99.25|ICD10CM|Subluxation stenosis of neural canal of pelvic region|Subluxation stenosis of neural canal of pelvic region +C2902782|T037|AB|M99.26|ICD10CM|Subluxation stenosis of neural canal of lower extremity|Subluxation stenosis of neural canal of lower extremity +C2902782|T037|PT|M99.26|ICD10CM|Subluxation stenosis of neural canal of lower extremity|Subluxation stenosis of neural canal of lower extremity +C2902783|T037|AB|M99.27|ICD10CM|Subluxation stenosis of neural canal of upper extremity|Subluxation stenosis of neural canal of upper extremity +C2902783|T037|PT|M99.27|ICD10CM|Subluxation stenosis of neural canal of upper extremity|Subluxation stenosis of neural canal of upper extremity +C2902784|T037|AB|M99.28|ICD10CM|Subluxation stenosis of neural canal of rib cage|Subluxation stenosis of neural canal of rib cage +C2902784|T037|PT|M99.28|ICD10CM|Subluxation stenosis of neural canal of rib cage|Subluxation stenosis of neural canal of rib cage +C2902785|T037|AB|M99.29|ICD10CM|Sublux stenosis of neural canal of abdomen and oth regions|Sublux stenosis of neural canal of abdomen and oth regions +C2902785|T037|PT|M99.29|ICD10CM|Subluxation stenosis of neural canal of abdomen and other regions|Subluxation stenosis of neural canal of abdomen and other regions +C0451899|T047|PT|M99.3|ICD10|Osseous stenosis of neural canal|Osseous stenosis of neural canal +C0451899|T047|HT|M99.3|ICD10CM|Osseous stenosis of neural canal|Osseous stenosis of neural canal +C0451899|T047|AB|M99.3|ICD10CM|Osseous stenosis of neural canal|Osseous stenosis of neural canal +C2902786|T047|AB|M99.30|ICD10CM|Osseous stenosis of neural canal of head region|Osseous stenosis of neural canal of head region +C2902786|T047|PT|M99.30|ICD10CM|Osseous stenosis of neural canal of head region|Osseous stenosis of neural canal of head region +C2902787|T047|AB|M99.31|ICD10CM|Osseous stenosis of neural canal of cervical region|Osseous stenosis of neural canal of cervical region +C2902787|T047|PT|M99.31|ICD10CM|Osseous stenosis of neural canal of cervical region|Osseous stenosis of neural canal of cervical region +C2902788|T047|AB|M99.32|ICD10CM|Osseous stenosis of neural canal of thoracic region|Osseous stenosis of neural canal of thoracic region +C2902788|T047|PT|M99.32|ICD10CM|Osseous stenosis of neural canal of thoracic region|Osseous stenosis of neural canal of thoracic region +C2902789|T047|AB|M99.33|ICD10CM|Osseous stenosis of neural canal of lumbar region|Osseous stenosis of neural canal of lumbar region +C2902789|T047|PT|M99.33|ICD10CM|Osseous stenosis of neural canal of lumbar region|Osseous stenosis of neural canal of lumbar region +C2902790|T047|AB|M99.34|ICD10CM|Osseous stenosis of neural canal of sacral region|Osseous stenosis of neural canal of sacral region +C2902790|T047|PT|M99.34|ICD10CM|Osseous stenosis of neural canal of sacral region|Osseous stenosis of neural canal of sacral region +C2902791|T047|AB|M99.35|ICD10CM|Osseous stenosis of neural canal of pelvic region|Osseous stenosis of neural canal of pelvic region +C2902791|T047|PT|M99.35|ICD10CM|Osseous stenosis of neural canal of pelvic region|Osseous stenosis of neural canal of pelvic region +C2902792|T047|AB|M99.36|ICD10CM|Osseous stenosis of neural canal of lower extremity|Osseous stenosis of neural canal of lower extremity +C2902792|T047|PT|M99.36|ICD10CM|Osseous stenosis of neural canal of lower extremity|Osseous stenosis of neural canal of lower extremity +C2902793|T047|AB|M99.37|ICD10CM|Osseous stenosis of neural canal of upper extremity|Osseous stenosis of neural canal of upper extremity +C2902793|T047|PT|M99.37|ICD10CM|Osseous stenosis of neural canal of upper extremity|Osseous stenosis of neural canal of upper extremity +C2902794|T047|AB|M99.38|ICD10CM|Osseous stenosis of neural canal of rib cage|Osseous stenosis of neural canal of rib cage +C2902794|T047|PT|M99.38|ICD10CM|Osseous stenosis of neural canal of rib cage|Osseous stenosis of neural canal of rib cage +C2902795|T047|AB|M99.39|ICD10CM|Osseous stenosis of neural canal of abdomen and oth regions|Osseous stenosis of neural canal of abdomen and oth regions +C2902795|T047|PT|M99.39|ICD10CM|Osseous stenosis of neural canal of abdomen and other regions|Osseous stenosis of neural canal of abdomen and other regions +C0451900|T190|HT|M99.4|ICD10CM|Connective tissue stenosis of neural canal|Connective tissue stenosis of neural canal +C0451900|T190|AB|M99.4|ICD10CM|Connective tissue stenosis of neural canal|Connective tissue stenosis of neural canal +C0451900|T190|PT|M99.4|ICD10|Connective tissue stenosis of neural canal|Connective tissue stenosis of neural canal +C2902796|T190|AB|M99.40|ICD10CM|Connective tissue stenosis of neural canal of head region|Connective tissue stenosis of neural canal of head region +C2902796|T190|PT|M99.40|ICD10CM|Connective tissue stenosis of neural canal of head region|Connective tissue stenosis of neural canal of head region +C2902797|T190|AB|M99.41|ICD10CM|Connective tiss stenosis of neural canal of cervical region|Connective tiss stenosis of neural canal of cervical region +C2902797|T190|PT|M99.41|ICD10CM|Connective tissue stenosis of neural canal of cervical region|Connective tissue stenosis of neural canal of cervical region +C2902798|T190|AB|M99.42|ICD10CM|Connective tiss stenosis of neural canal of thoracic region|Connective tiss stenosis of neural canal of thoracic region +C2902798|T190|PT|M99.42|ICD10CM|Connective tissue stenosis of neural canal of thoracic region|Connective tissue stenosis of neural canal of thoracic region +C2902799|T190|AB|M99.43|ICD10CM|Connective tissue stenosis of neural canal of lumbar region|Connective tissue stenosis of neural canal of lumbar region +C2902799|T190|PT|M99.43|ICD10CM|Connective tissue stenosis of neural canal of lumbar region|Connective tissue stenosis of neural canal of lumbar region +C2902800|T190|AB|M99.44|ICD10CM|Connective tissue stenosis of neural canal of sacral region|Connective tissue stenosis of neural canal of sacral region +C2902800|T190|PT|M99.44|ICD10CM|Connective tissue stenosis of neural canal of sacral region|Connective tissue stenosis of neural canal of sacral region +C2902801|T190|AB|M99.45|ICD10CM|Connective tissue stenosis of neural canal of pelvic region|Connective tissue stenosis of neural canal of pelvic region +C2902801|T190|PT|M99.45|ICD10CM|Connective tissue stenosis of neural canal of pelvic region|Connective tissue stenosis of neural canal of pelvic region +C2902802|T190|AB|M99.46|ICD10CM|Connective tiss stenosis of neural canal of lower extremity|Connective tiss stenosis of neural canal of lower extremity +C2902802|T190|PT|M99.46|ICD10CM|Connective tissue stenosis of neural canal of lower extremity|Connective tissue stenosis of neural canal of lower extremity +C2902803|T190|AB|M99.47|ICD10CM|Connective tiss stenosis of neural canal of upper extremity|Connective tiss stenosis of neural canal of upper extremity +C2902803|T190|PT|M99.47|ICD10CM|Connective tissue stenosis of neural canal of upper extremity|Connective tissue stenosis of neural canal of upper extremity +C2902804|T190|AB|M99.48|ICD10CM|Connective tissue stenosis of neural canal of rib cage|Connective tissue stenosis of neural canal of rib cage +C2902804|T190|PT|M99.48|ICD10CM|Connective tissue stenosis of neural canal of rib cage|Connective tissue stenosis of neural canal of rib cage +C2902805|T190|AB|M99.49|ICD10CM|Conn tiss stenos of neural canal of abdomen and oth regions|Conn tiss stenos of neural canal of abdomen and oth regions +C2902805|T190|PT|M99.49|ICD10CM|Connective tissue stenosis of neural canal of abdomen and other regions|Connective tissue stenosis of neural canal of abdomen and other regions +C0451892|T190|PT|M99.5|ICD10|Intervertebral disc stenosis of neural canal|Intervertebral disc stenosis of neural canal +C0451892|T190|HT|M99.5|ICD10CM|Intervertebral disc stenosis of neural canal|Intervertebral disc stenosis of neural canal +C0451892|T190|AB|M99.5|ICD10CM|Intervertebral disc stenosis of neural canal|Intervertebral disc stenosis of neural canal +C2902806|T190|AB|M99.50|ICD10CM|Intervertebral disc stenosis of neural canal of head region|Intervertebral disc stenosis of neural canal of head region +C2902806|T190|PT|M99.50|ICD10CM|Intervertebral disc stenosis of neural canal of head region|Intervertebral disc stenosis of neural canal of head region +C2902807|T190|PT|M99.51|ICD10CM|Intervertebral disc stenosis of neural canal of cervical region|Intervertebral disc stenosis of neural canal of cervical region +C2902807|T190|AB|M99.51|ICD10CM|Intvrt disc stenosis of neural canal of cervical region|Intvrt disc stenosis of neural canal of cervical region +C2902808|T190|PT|M99.52|ICD10CM|Intervertebral disc stenosis of neural canal of thoracic region|Intervertebral disc stenosis of neural canal of thoracic region +C2902808|T190|AB|M99.52|ICD10CM|Intvrt disc stenosis of neural canal of thoracic region|Intvrt disc stenosis of neural canal of thoracic region +C2902809|T190|PT|M99.53|ICD10CM|Intervertebral disc stenosis of neural canal of lumbar region|Intervertebral disc stenosis of neural canal of lumbar region +C2902809|T190|AB|M99.53|ICD10CM|Intvrt disc stenosis of neural canal of lumbar region|Intvrt disc stenosis of neural canal of lumbar region +C2902810|T190|PT|M99.54|ICD10CM|Intervertebral disc stenosis of neural canal of sacral region|Intervertebral disc stenosis of neural canal of sacral region +C2902810|T190|AB|M99.54|ICD10CM|Intvrt disc stenosis of neural canal of sacral region|Intvrt disc stenosis of neural canal of sacral region +C2902811|T190|PT|M99.55|ICD10CM|Intervertebral disc stenosis of neural canal of pelvic region|Intervertebral disc stenosis of neural canal of pelvic region +C2902811|T190|AB|M99.55|ICD10CM|Intvrt disc stenosis of neural canal of pelvic region|Intvrt disc stenosis of neural canal of pelvic region +C2902812|T190|AB|M99.56|ICD10CM|Intervertebral disc stenosis of neural canal of low extrm|Intervertebral disc stenosis of neural canal of low extrm +C2902812|T190|PT|M99.56|ICD10CM|Intervertebral disc stenosis of neural canal of lower extremity|Intervertebral disc stenosis of neural canal of lower extremity +C2902813|T190|AB|M99.57|ICD10CM|Intervertebral disc stenosis of neural canal of up extrem|Intervertebral disc stenosis of neural canal of up extrem +C2902813|T190|PT|M99.57|ICD10CM|Intervertebral disc stenosis of neural canal of upper extremity|Intervertebral disc stenosis of neural canal of upper extremity +C2902814|T190|AB|M99.58|ICD10CM|Intervertebral disc stenosis of neural canal of rib cage|Intervertebral disc stenosis of neural canal of rib cage +C2902814|T190|PT|M99.58|ICD10CM|Intervertebral disc stenosis of neural canal of rib cage|Intervertebral disc stenosis of neural canal of rib cage +C2902815|T190|PT|M99.59|ICD10CM|Intervertebral disc stenosis of neural canal of abdomen and other regions|Intervertebral disc stenosis of neural canal of abdomen and other regions +C2902815|T190|AB|M99.59|ICD10CM|Intvrt disc stenos of neural canal of abd and oth regions|Intvrt disc stenos of neural canal of abd and oth regions +C0451894|T047|HT|M99.6|ICD10CM|Osseous and subluxation stenosis of intervertebral foramina|Osseous and subluxation stenosis of intervertebral foramina +C0451894|T047|AB|M99.6|ICD10CM|Osseous and subluxation stenosis of intervertebral foramina|Osseous and subluxation stenosis of intervertebral foramina +C0451894|T047|PT|M99.6|ICD10|Osseous and subluxation stenosis of intervertebral foramina|Osseous and subluxation stenosis of intervertebral foramina +C2902816|T047|AB|M99.60|ICD10CM|Osseous and sublux stenosis of intvrt foramin of head region|Osseous and sublux stenosis of intvrt foramin of head region +C2902816|T047|PT|M99.60|ICD10CM|Osseous and subluxation stenosis of intervertebral foramina of head region|Osseous and subluxation stenosis of intervertebral foramina of head region +C2902817|T047|AB|M99.61|ICD10CM|Osseous and sublux stenosis of intvrt foramin of cerv region|Osseous and sublux stenosis of intvrt foramin of cerv region +C2902817|T047|PT|M99.61|ICD10CM|Osseous and subluxation stenosis of intervertebral foramina of cervical region|Osseous and subluxation stenosis of intervertebral foramina of cervical region +C2902818|T047|AB|M99.62|ICD10CM|Osseous and sublux stenos of intvrt foramin of thor region|Osseous and sublux stenos of intvrt foramin of thor region +C2902818|T047|PT|M99.62|ICD10CM|Osseous and subluxation stenosis of intervertebral foramina of thoracic region|Osseous and subluxation stenosis of intervertebral foramina of thoracic region +C2902819|T047|AB|M99.63|ICD10CM|Osseous and sublux stenos of intvrt foramin of lumbar region|Osseous and sublux stenos of intvrt foramin of lumbar region +C2902819|T047|PT|M99.63|ICD10CM|Osseous and subluxation stenosis of intervertebral foramina of lumbar region|Osseous and subluxation stenosis of intervertebral foramina of lumbar region +C2902820|T047|AB|M99.64|ICD10CM|Osseous and sublux stenos of intvrt foramin of sacral region|Osseous and sublux stenos of intvrt foramin of sacral region +C2902820|T047|PT|M99.64|ICD10CM|Osseous and subluxation stenosis of intervertebral foramina of sacral region|Osseous and subluxation stenosis of intervertebral foramina of sacral region +C2902821|T047|AB|M99.65|ICD10CM|Osseous and sublux stenos of intvrt foramin of pelvic region|Osseous and sublux stenos of intvrt foramin of pelvic region +C2902821|T047|PT|M99.65|ICD10CM|Osseous and subluxation stenosis of intervertebral foramina of pelvic region|Osseous and subluxation stenosis of intervertebral foramina of pelvic region +C2902822|T047|AB|M99.66|ICD10CM|Osseous and sublux stenosis of intvrt foramina of low extrm|Osseous and sublux stenosis of intvrt foramina of low extrm +C2902822|T047|PT|M99.66|ICD10CM|Osseous and subluxation stenosis of intervertebral foramina of lower extremity|Osseous and subluxation stenosis of intervertebral foramina of lower extremity +C2902823|T047|AB|M99.67|ICD10CM|Osseous and sublux stenosis of intvrt foramina of up extrem|Osseous and sublux stenosis of intvrt foramina of up extrem +C2902823|T047|PT|M99.67|ICD10CM|Osseous and subluxation stenosis of intervertebral foramina of upper extremity|Osseous and subluxation stenosis of intervertebral foramina of upper extremity +C2902824|T047|AB|M99.68|ICD10CM|Osseous and sublux stenosis of intvrt foramina of rib cage|Osseous and sublux stenosis of intvrt foramina of rib cage +C2902824|T047|PT|M99.68|ICD10CM|Osseous and subluxation stenosis of intervertebral foramina of rib cage|Osseous and subluxation stenosis of intervertebral foramina of rib cage +C2902825|T047|AB|M99.69|ICD10CM|Osseous & sublux stenos of intvrt foramin of abd and oth rgn|Osseous & sublux stenos of intvrt foramin of abd and oth rgn +C2902825|T047|PT|M99.69|ICD10CM|Osseous and subluxation stenosis of intervertebral foramina of abdomen and other regions|Osseous and subluxation stenosis of intervertebral foramina of abdomen and other regions +C0451895|T190|AB|M99.7|ICD10CM|Connective tiss and disc stenosis of intervertebral foramina|Connective tiss and disc stenosis of intervertebral foramina +C0451895|T190|HT|M99.7|ICD10CM|Connective tissue and disc stenosis of intervertebral foramina|Connective tissue and disc stenosis of intervertebral foramina +C0451895|T190|PT|M99.7|ICD10|Connective tissue and disc stenosis of intervertebral foramina|Connective tissue and disc stenosis of intervertebral foramina +C2902826|T190|AB|M99.70|ICD10CM|Conn tiss and disc stenosis of intvrt foramin of head region|Conn tiss and disc stenosis of intvrt foramin of head region +C2902826|T190|PT|M99.70|ICD10CM|Connective tissue and disc stenosis of intervertebral foramina of head region|Connective tissue and disc stenosis of intervertebral foramina of head region +C2902827|T190|AB|M99.71|ICD10CM|Conn tiss and disc stenosis of intvrt foramin of cerv region|Conn tiss and disc stenosis of intvrt foramin of cerv region +C2902827|T190|PT|M99.71|ICD10CM|Connective tissue and disc stenosis of intervertebral foramina of cervical region|Connective tissue and disc stenosis of intervertebral foramina of cervical region +C2902828|T190|AB|M99.72|ICD10CM|Conn tiss and disc stenos of intvrt foramin of thor region|Conn tiss and disc stenos of intvrt foramin of thor region +C2902828|T190|PT|M99.72|ICD10CM|Connective tissue and disc stenosis of intervertebral foramina of thoracic region|Connective tissue and disc stenosis of intervertebral foramina of thoracic region +C2902829|T190|AB|M99.73|ICD10CM|Conn tiss and disc stenos of intvrt foramin of lumbar region|Conn tiss and disc stenos of intvrt foramin of lumbar region +C2902829|T190|PT|M99.73|ICD10CM|Connective tissue and disc stenosis of intervertebral foramina of lumbar region|Connective tissue and disc stenosis of intervertebral foramina of lumbar region +C2902830|T190|AB|M99.74|ICD10CM|Conn tiss and disc stenos of intvrt foramin of sacral region|Conn tiss and disc stenos of intvrt foramin of sacral region +C2902830|T190|PT|M99.74|ICD10CM|Connective tissue and disc stenosis of intervertebral foramina of sacral region|Connective tissue and disc stenosis of intervertebral foramina of sacral region +C2902831|T190|AB|M99.75|ICD10CM|Conn tiss and disc stenos of intvrt foramin of pelvic region|Conn tiss and disc stenos of intvrt foramin of pelvic region +C2902831|T190|PT|M99.75|ICD10CM|Connective tissue and disc stenosis of intervertebral foramina of pelvic region|Connective tissue and disc stenosis of intervertebral foramina of pelvic region +C2902832|T190|AB|M99.76|ICD10CM|Conn tiss and disc stenosis of intvrt foramina of low extrm|Conn tiss and disc stenosis of intvrt foramina of low extrm +C2902832|T190|PT|M99.76|ICD10CM|Connective tissue and disc stenosis of intervertebral foramina of lower extremity|Connective tissue and disc stenosis of intervertebral foramina of lower extremity +C2902833|T190|AB|M99.77|ICD10CM|Conn tiss and disc stenosis of intvrt foramina of up extrem|Conn tiss and disc stenosis of intvrt foramina of up extrem +C2902833|T190|PT|M99.77|ICD10CM|Connective tissue and disc stenosis of intervertebral foramina of upper extremity|Connective tissue and disc stenosis of intervertebral foramina of upper extremity +C2902834|T190|AB|M99.78|ICD10CM|Conn tiss and disc stenosis of intvrt foramina of rib cage|Conn tiss and disc stenosis of intvrt foramina of rib cage +C2902834|T190|PT|M99.78|ICD10CM|Connective tissue and disc stenosis of intervertebral foramina of rib cage|Connective tissue and disc stenosis of intervertebral foramina of rib cage +C2902835|T190|AB|M99.79|ICD10CM|Conn tiss & disc stenos of intvrt foramin of abd and oth rgn|Conn tiss & disc stenos of intvrt foramin of abd and oth rgn +C2902835|T190|PT|M99.79|ICD10CM|Connective tissue and disc stenosis of intervertebral foramina of abdomen and other regions|Connective tissue and disc stenosis of intervertebral foramina of abdomen and other regions +C0477709|T047|PT|M99.8|ICD10|Other biomechanical lesions|Other biomechanical lesions +C0477709|T047|HT|M99.8|ICD10CM|Other biomechanical lesions|Other biomechanical lesions +C0477709|T047|AB|M99.8|ICD10CM|Other biomechanical lesions|Other biomechanical lesions +C2902836|T047|AB|M99.80|ICD10CM|Other biomechanical lesions of head region|Other biomechanical lesions of head region +C2902836|T047|PT|M99.80|ICD10CM|Other biomechanical lesions of head region|Other biomechanical lesions of head region +C2902837|T047|AB|M99.81|ICD10CM|Other biomechanical lesions of cervical region|Other biomechanical lesions of cervical region +C2902837|T047|PT|M99.81|ICD10CM|Other biomechanical lesions of cervical region|Other biomechanical lesions of cervical region +C2902838|T047|AB|M99.82|ICD10CM|Other biomechanical lesions of thoracic region|Other biomechanical lesions of thoracic region +C2902838|T047|PT|M99.82|ICD10CM|Other biomechanical lesions of thoracic region|Other biomechanical lesions of thoracic region +C2902839|T047|AB|M99.83|ICD10CM|Other biomechanical lesions of lumbar region|Other biomechanical lesions of lumbar region +C2902839|T047|PT|M99.83|ICD10CM|Other biomechanical lesions of lumbar region|Other biomechanical lesions of lumbar region +C2902840|T047|AB|M99.84|ICD10CM|Other biomechanical lesions of sacral region|Other biomechanical lesions of sacral region +C2902840|T047|PT|M99.84|ICD10CM|Other biomechanical lesions of sacral region|Other biomechanical lesions of sacral region +C2902841|T047|AB|M99.85|ICD10CM|Other biomechanical lesions of pelvic region|Other biomechanical lesions of pelvic region +C2902841|T047|PT|M99.85|ICD10CM|Other biomechanical lesions of pelvic region|Other biomechanical lesions of pelvic region +C2902842|T047|AB|M99.86|ICD10CM|Other biomechanical lesions of lower extremity|Other biomechanical lesions of lower extremity +C2902842|T047|PT|M99.86|ICD10CM|Other biomechanical lesions of lower extremity|Other biomechanical lesions of lower extremity +C2902843|T047|AB|M99.87|ICD10CM|Other biomechanical lesions of upper extremity|Other biomechanical lesions of upper extremity +C2902843|T047|PT|M99.87|ICD10CM|Other biomechanical lesions of upper extremity|Other biomechanical lesions of upper extremity +C2902844|T047|AB|M99.88|ICD10CM|Other biomechanical lesions of rib cage|Other biomechanical lesions of rib cage +C2902844|T047|PT|M99.88|ICD10CM|Other biomechanical lesions of rib cage|Other biomechanical lesions of rib cage +C2902845|T047|AB|M99.89|ICD10CM|Other biomechanical lesions of abdomen and other regions|Other biomechanical lesions of abdomen and other regions +C2902845|T047|PT|M99.89|ICD10CM|Other biomechanical lesions of abdomen and other regions|Other biomechanical lesions of abdomen and other regions +C0495025|T047|PT|M99.9|ICD10|Biomechanical lesion, unspecified|Biomechanical lesion, unspecified +C0495025|T047|PT|M99.9|ICD10CM|Biomechanical lesion, unspecified|Biomechanical lesion, unspecified +C0495025|T047|AB|M99.9|ICD10CM|Biomechanical lesion, unspecified|Biomechanical lesion, unspecified +C1384924|T047|ET|N00|ICD10CM|acute glomerular disease|acute glomerular disease +C0156221|T047|ET|N00|ICD10CM|acute glomerulonephritis|acute glomerulonephritis +C0268733|T047|HT|N00|ICD10CM|Acute nephritic syndrome|Acute nephritic syndrome +C0268733|T047|AB|N00|ICD10CM|Acute nephritic syndrome|Acute nephritic syndrome +C0268733|T047|HT|N00|ICD10|Acute nephritic syndrome|Acute nephritic syndrome +C0268733|T047|ET|N00|ICD10CM|acute nephritis|acute nephritis +C0268731|T047|HT|N00-N08|ICD10CM|Glomerular diseases (N00-N08)|Glomerular diseases (N00-N08) +C0268731|T047|HT|N00-N08.9|ICD10|Glomerular diseases|Glomerular diseases +C0080276|T047|HT|N00-N99|ICD10CM|Diseases of the genitourinary system (N00-N99)|Diseases of the genitourinary system (N00-N99) +C0080276|T047|HT|N00-N99.9|ICD10|Diseases of the genitourinary system|Diseases of the genitourinary system +C2902846|T047|ET|N00.0|ICD10CM|Acute nephritic syndrome with minimal change lesion|Acute nephritic syndrome with minimal change lesion +C0451737|T047|PT|N00.0|ICD10CM|Acute nephritic syndrome with minor glomerular abnormality|Acute nephritic syndrome with minor glomerular abnormality +C0451737|T047|AB|N00.0|ICD10CM|Acute nephritic syndrome with minor glomerular abnormality|Acute nephritic syndrome with minor glomerular abnormality +C0451737|T047|PT|N00.0|ICD10|Acute nephritic syndrome, minor glomerular abnormality|Acute nephritic syndrome, minor glomerular abnormality +C0451738|T047|AB|N00.1|ICD10CM|Acute neph syndrome w focal and segmental glomerular lesions|Acute neph syndrome w focal and segmental glomerular lesions +C0451738|T047|PT|N00.1|ICD10CM|Acute nephritic syndrome with focal and segmental glomerular lesions|Acute nephritic syndrome with focal and segmental glomerular lesions +C2902847|T047|ET|N00.1|ICD10CM|Acute nephritic syndrome with focal and segmental hyalinosis|Acute nephritic syndrome with focal and segmental hyalinosis +C2902848|T047|ET|N00.1|ICD10CM|Acute nephritic syndrome with focal and segmental sclerosis|Acute nephritic syndrome with focal and segmental sclerosis +C2902849|T047|ET|N00.1|ICD10CM|Acute nephritic syndrome with focal glomerulonephritis|Acute nephritic syndrome with focal glomerulonephritis +C0451738|T047|PT|N00.1|ICD10|Acute nephritic syndrome, focal and segmental glomerular lesions|Acute nephritic syndrome, focal and segmental glomerular lesions +C0451739|T047|AB|N00.2|ICD10CM|Acute nephritic syndrome w diffuse membranous glomrlneph|Acute nephritic syndrome w diffuse membranous glomrlneph +C0451739|T047|PT|N00.2|ICD10CM|Acute nephritic syndrome with diffuse membranous glomerulonephritis|Acute nephritic syndrome with diffuse membranous glomerulonephritis +C0451739|T047|PT|N00.2|ICD10|Acute nephritic syndrome, diffuse membranous glomerulonephritis|Acute nephritic syndrome, diffuse membranous glomerulonephritis +C0451740|T047|AB|N00.3|ICD10CM|Acute neph syndrome w diffuse mesangial prolif glomrlneph|Acute neph syndrome w diffuse mesangial prolif glomrlneph +C0451740|T047|PT|N00.3|ICD10CM|Acute nephritic syndrome with diffuse mesangial proliferative glomerulonephritis|Acute nephritic syndrome with diffuse mesangial proliferative glomerulonephritis +C0451740|T047|PT|N00.3|ICD10|Acute nephritic syndrome, diffuse mesangial proliferative glomerulonephritis|Acute nephritic syndrome, diffuse mesangial proliferative glomerulonephritis +C0451741|T047|AB|N00.4|ICD10CM|Acute neph syndrome w diffuse endocaplry prolif glomrlneph|Acute neph syndrome w diffuse endocaplry prolif glomrlneph +C0451741|T047|PT|N00.4|ICD10CM|Acute nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis|Acute nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis +C0451741|T047|PT|N00.4|ICD10|Acute nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis|Acute nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis +C0451742|T047|AB|N00.5|ICD10CM|Acute nephritic syndrome w diffuse mesangiocap glomrlneph|Acute nephritic syndrome w diffuse mesangiocap glomrlneph +C0451742|T047|PT|N00.5|ICD10CM|Acute nephritic syndrome with diffuse mesangiocapillary glomerulonephritis|Acute nephritic syndrome with diffuse mesangiocapillary glomerulonephritis +C2902850|T047|ET|N00.5|ICD10CM|Acute nephritic syndrome with membranoproliferative glomerulonephritis, types 1 and 3, or NOS|Acute nephritic syndrome with membranoproliferative glomerulonephritis, types 1 and 3, or NOS +C0451742|T047|PT|N00.5|ICD10|Acute nephritic syndrome, diffuse mesangiocapillary glomerulonephritis|Acute nephritic syndrome, diffuse mesangiocapillary glomerulonephritis +C0451743|T047|PT|N00.6|ICD10CM|Acute nephritic syndrome with dense deposit disease|Acute nephritic syndrome with dense deposit disease +C0451743|T047|AB|N00.6|ICD10CM|Acute nephritic syndrome with dense deposit disease|Acute nephritic syndrome with dense deposit disease +C2902851|T047|ET|N00.6|ICD10CM|Acute nephritic syndrome with membranoproliferative glomerulonephritis, type 2|Acute nephritic syndrome with membranoproliferative glomerulonephritis, type 2 +C0451743|T047|PT|N00.6|ICD10|Acute nephritic syndrome, dense deposit disease|Acute nephritic syndrome, dense deposit disease +C0451727|T047|AB|N00.7|ICD10CM|Acute nephritic syndrome w diffuse crescentic glomrlneph|Acute nephritic syndrome w diffuse crescentic glomrlneph +C0451727|T047|PT|N00.7|ICD10CM|Acute nephritic syndrome with diffuse crescentic glomerulonephritis|Acute nephritic syndrome with diffuse crescentic glomerulonephritis +C2902852|T047|ET|N00.7|ICD10CM|Acute nephritic syndrome with extracapillary glomerulonephritis|Acute nephritic syndrome with extracapillary glomerulonephritis +C0451727|T047|PT|N00.7|ICD10|Acute nephritic syndrome, diffuse crescentic glomerulonephritis|Acute nephritic syndrome, diffuse crescentic glomerulonephritis +C2902854|T047|AB|N00.8|ICD10CM|Acute nephritic syndrome with other morphologic changes|Acute nephritic syndrome with other morphologic changes +C2902854|T047|PT|N00.8|ICD10CM|Acute nephritic syndrome with other morphologic changes|Acute nephritic syndrome with other morphologic changes +C2902853|T047|ET|N00.8|ICD10CM|Acute nephritic syndrome with proliferative glomerulonephritis NOS|Acute nephritic syndrome with proliferative glomerulonephritis NOS +C0495026|T047|PT|N00.8|ICD10|Acute nephritic syndrome, other|Acute nephritic syndrome, other +C2902855|T047|AB|N00.9|ICD10CM|Acute nephritic syndrome with unsp morphologic changes|Acute nephritic syndrome with unsp morphologic changes +C2902855|T047|PT|N00.9|ICD10CM|Acute nephritic syndrome with unspecified morphologic changes|Acute nephritic syndrome with unspecified morphologic changes +C0268733|T047|PT|N00.9|ICD10|Acute nephritic syndrome, unspecified|Acute nephritic syndrome, unspecified +C0451728|T047|ET|N01|ICD10CM|rapidly progressive glomerular disease|rapidly progressive glomerular disease +C0221239|T047|ET|N01|ICD10CM|rapidly progressive glomerulonephritis|rapidly progressive glomerulonephritis +C0451728|T047|HT|N01|ICD10CM|Rapidly progressive nephritic syndrome|Rapidly progressive nephritic syndrome +C0451728|T047|AB|N01|ICD10CM|Rapidly progressive nephritic syndrome|Rapidly progressive nephritic syndrome +C0451728|T047|HT|N01|ICD10|Rapidly progressive nephritic syndrome|Rapidly progressive nephritic syndrome +C1404822|T047|ET|N01|ICD10CM|rapidly progressive nephritis|rapidly progressive nephritis +C0451729|T047|AB|N01.0|ICD10CM|Rapidly progr nephritic syndrome w minor glomerular abnlt|Rapidly progr nephritic syndrome w minor glomerular abnlt +C2902856|T047|ET|N01.0|ICD10CM|Rapidly progressive nephritic syndrome with minimal change lesion|Rapidly progressive nephritic syndrome with minimal change lesion +C0451729|T047|PT|N01.0|ICD10CM|Rapidly progressive nephritic syndrome with minor glomerular abnormality|Rapidly progressive nephritic syndrome with minor glomerular abnormality +C0451729|T047|PT|N01.0|ICD10|Rapidly progressive nephritic syndrome, minor glomerular abnormality|Rapidly progressive nephritic syndrome, minor glomerular abnormality +C0451730|T047|AB|N01.1|ICD10CM|Rapidly progr neph synd w focal and seg glomerular lesions|Rapidly progr neph synd w focal and seg glomerular lesions +C0451730|T047|PT|N01.1|ICD10CM|Rapidly progressive nephritic syndrome with focal and segmental glomerular lesions|Rapidly progressive nephritic syndrome with focal and segmental glomerular lesions +C2902857|T047|ET|N01.1|ICD10CM|Rapidly progressive nephritic syndrome with focal and segmental hyalinosis|Rapidly progressive nephritic syndrome with focal and segmental hyalinosis +C2902858|T047|ET|N01.1|ICD10CM|Rapidly progressive nephritic syndrome with focal and segmental sclerosis|Rapidly progressive nephritic syndrome with focal and segmental sclerosis +C2902859|T047|ET|N01.1|ICD10CM|Rapidly progressive nephritic syndrome with focal glomerulonephritis|Rapidly progressive nephritic syndrome with focal glomerulonephritis +C0451730|T047|PT|N01.1|ICD10|Rapidly progressive nephritic syndrome, focal and segmental glomerular lesions|Rapidly progressive nephritic syndrome, focal and segmental glomerular lesions +C0451731|T047|AB|N01.2|ICD10CM|Rapidly progr neph syndrome w diffuse membranous glomrlneph|Rapidly progr neph syndrome w diffuse membranous glomrlneph +C0451731|T047|PT|N01.2|ICD10CM|Rapidly progressive nephritic syndrome with diffuse membranous glomerulonephritis|Rapidly progressive nephritic syndrome with diffuse membranous glomerulonephritis +C0451731|T047|PT|N01.2|ICD10|Rapidly progressive nephritic syndrome, diffuse membranous glomerulonephritis|Rapidly progressive nephritic syndrome, diffuse membranous glomerulonephritis +C0451732|T047|AB|N01.3|ICD10CM|Rapidly progr neph synd w diffus mesangial prolif glomrlneph|Rapidly progr neph synd w diffus mesangial prolif glomrlneph +C0451732|T047|PT|N01.3|ICD10CM|Rapidly progressive nephritic syndrome with diffuse mesangial proliferative glomerulonephritis|Rapidly progressive nephritic syndrome with diffuse mesangial proliferative glomerulonephritis +C0451732|T047|PT|N01.3|ICD10|Rapidly progressive nephritic syndrome, diffuse mesangial proliferative glomerulonephritis|Rapidly progressive nephritic syndrome, diffuse mesangial proliferative glomerulonephritis +C0451733|T047|AB|N01.4|ICD10CM|Rapid progr neph synd w diffus endocaplry prolif glomrlneph|Rapid progr neph synd w diffus endocaplry prolif glomrlneph +C0451733|T047|PT|N01.4|ICD10CM|Rapidly progressive nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis|Rapidly progressive nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis +C0451733|T047|PT|N01.4|ICD10|Rapidly progressive nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis|Rapidly progressive nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis +C0451734|T047|AB|N01.5|ICD10CM|Rapidly progr neph syndrome w diffuse mesangiocap glomrlneph|Rapidly progr neph syndrome w diffuse mesangiocap glomrlneph +C0451734|T047|PT|N01.5|ICD10CM|Rapidly progressive nephritic syndrome with diffuse mesangiocapillary glomerulonephritis|Rapidly progressive nephritic syndrome with diffuse mesangiocapillary glomerulonephritis +C0451734|T047|PT|N01.5|ICD10|Rapidly progressive nephritic syndrome, diffuse mesangiocapillary glomerulonephritis|Rapidly progressive nephritic syndrome, diffuse mesangiocapillary glomerulonephritis +C0451735|T047|AB|N01.6|ICD10CM|Rapidly progr nephritic syndrome w dense deposit disease|Rapidly progr nephritic syndrome w dense deposit disease +C0451735|T047|PT|N01.6|ICD10CM|Rapidly progressive nephritic syndrome with dense deposit disease|Rapidly progressive nephritic syndrome with dense deposit disease +C2902861|T047|ET|N01.6|ICD10CM|Rapidly progressive nephritic syndrome with membranoproliferative glomerulonephritis, type 2|Rapidly progressive nephritic syndrome with membranoproliferative glomerulonephritis, type 2 +C0451735|T047|PT|N01.6|ICD10|Rapidly progressive nephritic syndrome, dense deposit disease|Rapidly progressive nephritic syndrome, dense deposit disease +C0451736|T047|AB|N01.7|ICD10CM|Rapidly progr neph syndrome w diffuse crescentic glomrlneph|Rapidly progr neph syndrome w diffuse crescentic glomrlneph +C0451736|T047|PT|N01.7|ICD10CM|Rapidly progressive nephritic syndrome with diffuse crescentic glomerulonephritis|Rapidly progressive nephritic syndrome with diffuse crescentic glomerulonephritis +C2902862|T047|ET|N01.7|ICD10CM|Rapidly progressive nephritic syndrome with extracapillary glomerulonephritis|Rapidly progressive nephritic syndrome with extracapillary glomerulonephritis +C0451736|T047|PT|N01.7|ICD10|Rapidly progressive nephritic syndrome, diffuse crescentic glomerulonephritis|Rapidly progressive nephritic syndrome, diffuse crescentic glomerulonephritis +C2902864|T047|AB|N01.8|ICD10CM|Rapidly progr nephritic syndrome w oth morphologic changes|Rapidly progr nephritic syndrome w oth morphologic changes +C2902864|T047|PT|N01.8|ICD10CM|Rapidly progressive nephritic syndrome with other morphologic changes|Rapidly progressive nephritic syndrome with other morphologic changes +C2902863|T047|ET|N01.8|ICD10CM|Rapidly progressive nephritic syndrome with proliferative glomerulonephritis NOS|Rapidly progressive nephritic syndrome with proliferative glomerulonephritis NOS +C0477720|T047|PT|N01.8|ICD10|Rapidly progressive nephritic syndrome, other|Rapidly progressive nephritic syndrome, other +C2902865|T047|AB|N01.9|ICD10CM|Rapidly progr nephritic syndrome w unsp morphologic changes|Rapidly progr nephritic syndrome w unsp morphologic changes +C2902865|T047|PT|N01.9|ICD10CM|Rapidly progressive nephritic syndrome with unspecified morphologic changes|Rapidly progressive nephritic syndrome with unspecified morphologic changes +C0451728|T047|PT|N01.9|ICD10|Rapidly progressive nephritic syndrome, unspecified|Rapidly progressive nephritic syndrome, unspecified +C0475537|T046|HT|N02|ICD10|Recurrent and persistent haematuria|Recurrent and persistent haematuria +C0475537|T046|HT|N02|ICD10AE|Recurrent and persistent hematuria|Recurrent and persistent hematuria +C0475537|T046|HT|N02|ICD10CM|Recurrent and persistent hematuria|Recurrent and persistent hematuria +C0475537|T046|AB|N02|ICD10CM|Recurrent and persistent hematuria|Recurrent and persistent hematuria +C0475538|T046|PT|N02.0|ICD10|Recurrent and persistent haematuria, minor glomerular abnormality|Recurrent and persistent haematuria, minor glomerular abnormality +C0475538|T046|AB|N02.0|ICD10CM|Recurrent and persistent hematuria w minor glomerular abnlt|Recurrent and persistent hematuria w minor glomerular abnlt +C2902866|T046|ET|N02.0|ICD10CM|Recurrent and persistent hematuria with minimal change lesion|Recurrent and persistent hematuria with minimal change lesion +C0475538|T046|PT|N02.0|ICD10CM|Recurrent and persistent hematuria with minor glomerular abnormality|Recurrent and persistent hematuria with minor glomerular abnormality +C0475538|T046|PT|N02.0|ICD10AE|Recurrent and persistent hematuria, minor glomerular abnormality|Recurrent and persistent hematuria, minor glomerular abnormality +C0475539|T046|AB|N02.1|ICD10CM|Recur and perst hematur w focal and seg glomerular lesions|Recur and perst hematur w focal and seg glomerular lesions +C0475539|T046|PT|N02.1|ICD10|Recurrent and persistent haematuria, focal and segmental glomerular lesions|Recurrent and persistent haematuria, focal and segmental glomerular lesions +C0475539|T046|PT|N02.1|ICD10CM|Recurrent and persistent hematuria with focal and segmental glomerular lesions|Recurrent and persistent hematuria with focal and segmental glomerular lesions +C2902867|T047|ET|N02.1|ICD10CM|Recurrent and persistent hematuria with focal and segmental hyalinosis|Recurrent and persistent hematuria with focal and segmental hyalinosis +C2902868|T046|ET|N02.1|ICD10CM|Recurrent and persistent hematuria with focal and segmental sclerosis|Recurrent and persistent hematuria with focal and segmental sclerosis +C2902869|T046|ET|N02.1|ICD10CM|Recurrent and persistent hematuria with focal glomerulonephritis|Recurrent and persistent hematuria with focal glomerulonephritis +C0475539|T046|PT|N02.1|ICD10AE|Recurrent and persistent hematuria, focal and segmental glomerular lesions|Recurrent and persistent hematuria, focal and segmental glomerular lesions +C0475540|T047|PT|N02.2|ICD10|Recurrent and persistent haematuria, diffuse membranous glomerulonephritis|Recurrent and persistent haematuria, diffuse membranous glomerulonephritis +C0475540|T047|PT|N02.2|ICD10CM|Recurrent and persistent hematuria with diffuse membranous glomerulonephritis|Recurrent and persistent hematuria with diffuse membranous glomerulonephritis +C0475540|T047|PT|N02.2|ICD10AE|Recurrent and persistent hematuria, diffuse membranous glomerulonephritis|Recurrent and persistent hematuria, diffuse membranous glomerulonephritis +C0475540|T047|AB|N02.2|ICD10CM|Recurrent and perst hematur w diffuse membranous glomrlneph|Recurrent and perst hematur w diffuse membranous glomrlneph +C0475541|T047|AB|N02.3|ICD10CM|Recur and perst hematur w diffus mesangial prolif glomrlneph|Recur and perst hematur w diffus mesangial prolif glomrlneph +C0475541|T047|PT|N02.3|ICD10|Recurrent and persistent haematuria, diffuse mesangial proliferative glomerulonephritis|Recurrent and persistent haematuria, diffuse mesangial proliferative glomerulonephritis +C0475541|T047|PT|N02.3|ICD10CM|Recurrent and persistent hematuria with diffuse mesangial proliferative glomerulonephritis|Recurrent and persistent hematuria with diffuse mesangial proliferative glomerulonephritis +C0475541|T047|PT|N02.3|ICD10AE|Recurrent and persistent hematuria, diffuse mesangial proliferative glomerulonephritis|Recurrent and persistent hematuria, diffuse mesangial proliferative glomerulonephritis +C0475542|T047|AB|N02.4|ICD10CM|Recur & perst hematur w diffus endocaplry prolif glomrlneph|Recur & perst hematur w diffus endocaplry prolif glomrlneph +C0475542|T047|PT|N02.4|ICD10|Recurrent and persistent haematuria, diffuse endocapillary proliferative glomerulonephritis|Recurrent and persistent haematuria, diffuse endocapillary proliferative glomerulonephritis +C0475542|T047|PT|N02.4|ICD10CM|Recurrent and persistent hematuria with diffuse endocapillary proliferative glomerulonephritis|Recurrent and persistent hematuria with diffuse endocapillary proliferative glomerulonephritis +C0475542|T047|PT|N02.4|ICD10AE|Recurrent and persistent hematuria, diffuse endocapillary proliferative glomerulonephritis|Recurrent and persistent hematuria, diffuse endocapillary proliferative glomerulonephritis +C0475543|T047|PT|N02.5|ICD10|Recurrent and persistent haematuria, diffuse mesangiocapillary glomerulonephritis|Recurrent and persistent haematuria, diffuse mesangiocapillary glomerulonephritis +C0475543|T047|PT|N02.5|ICD10CM|Recurrent and persistent hematuria with diffuse mesangiocapillary glomerulonephritis|Recurrent and persistent hematuria with diffuse mesangiocapillary glomerulonephritis +C0475543|T047|PT|N02.5|ICD10AE|Recurrent and persistent hematuria, diffuse mesangiocapillary glomerulonephritis|Recurrent and persistent hematuria, diffuse mesangiocapillary glomerulonephritis +C0475543|T047|AB|N02.5|ICD10CM|Recurrent and perst hematur w diffuse mesangiocap glomrlneph|Recurrent and perst hematur w diffuse mesangiocap glomrlneph +C0475544|T047|PT|N02.6|ICD10|Recurrent and persistent haematuria, dense deposit disease|Recurrent and persistent haematuria, dense deposit disease +C0475544|T047|AB|N02.6|ICD10CM|Recurrent and persistent hematuria w dense deposit disease|Recurrent and persistent hematuria w dense deposit disease +C0475544|T047|PT|N02.6|ICD10CM|Recurrent and persistent hematuria with dense deposit disease|Recurrent and persistent hematuria with dense deposit disease +C2902871|T046|ET|N02.6|ICD10CM|Recurrent and persistent hematuria with membranoproliferative glomerulonephritis, type 2|Recurrent and persistent hematuria with membranoproliferative glomerulonephritis, type 2 +C0475544|T047|PT|N02.6|ICD10AE|Recurrent and persistent hematuria, dense deposit disease|Recurrent and persistent hematuria, dense deposit disease +C0475545|T047|PT|N02.7|ICD10|Recurrent and persistent haematuria, diffuse crescentic glomerulonephritis|Recurrent and persistent haematuria, diffuse crescentic glomerulonephritis +C0475545|T047|PT|N02.7|ICD10CM|Recurrent and persistent hematuria with diffuse crescentic glomerulonephritis|Recurrent and persistent hematuria with diffuse crescentic glomerulonephritis +C2902872|T047|ET|N02.7|ICD10CM|Recurrent and persistent hematuria with extracapillary glomerulonephritis|Recurrent and persistent hematuria with extracapillary glomerulonephritis +C0475545|T047|PT|N02.7|ICD10AE|Recurrent and persistent hematuria, diffuse crescentic glomerulonephritis|Recurrent and persistent hematuria, diffuse crescentic glomerulonephritis +C0475545|T047|AB|N02.7|ICD10CM|Recurrent and perst hematur w diffuse crescentic glomrlneph|Recurrent and perst hematur w diffuse crescentic glomrlneph +C0495027|T184|PT|N02.8|ICD10|Recurrent and persistent haematuria, other|Recurrent and persistent haematuria, other +C2902874|T046|AB|N02.8|ICD10CM|Recurrent and persistent hematuria w oth morphologic changes|Recurrent and persistent hematuria w oth morphologic changes +C2902874|T046|PT|N02.8|ICD10CM|Recurrent and persistent hematuria with other morphologic changes|Recurrent and persistent hematuria with other morphologic changes +C2902873|T046|ET|N02.8|ICD10CM|Recurrent and persistent hematuria with proliferative glomerulonephritis NOS|Recurrent and persistent hematuria with proliferative glomerulonephritis NOS +C0495027|T184|PT|N02.8|ICD10AE|Recurrent and persistent hematuria, other|Recurrent and persistent hematuria, other +C0475537|T046|PT|N02.9|ICD10|Recurrent and persistent haematuria, unspecified|Recurrent and persistent haematuria, unspecified +C2902875|T046|PT|N02.9|ICD10CM|Recurrent and persistent hematuria with unspecified morphologic changes|Recurrent and persistent hematuria with unspecified morphologic changes +C0475537|T046|PT|N02.9|ICD10AE|Recurrent and persistent hematuria, unspecified|Recurrent and persistent hematuria, unspecified +C2902875|T046|AB|N02.9|ICD10CM|Recurrent and perst hematuria w unsp morphologic changes|Recurrent and perst hematuria w unsp morphologic changes +C1398786|T047|ET|N03|ICD10CM|chronic glomerular disease|chronic glomerular disease +C0152451|T047|ET|N03|ICD10CM|chronic glomerulonephritis|chronic glomerulonephritis +C0677052|T047|HT|N03|ICD10|Chronic nephritic syndrome|Chronic nephritic syndrome +C0677052|T047|HT|N03|ICD10CM|Chronic nephritic syndrome|Chronic nephritic syndrome +C0677052|T047|AB|N03|ICD10CM|Chronic nephritic syndrome|Chronic nephritic syndrome +C2364010|T047|ET|N03|ICD10CM|chronic nephritis|chronic nephritis +C2902876|T047|ET|N03.0|ICD10CM|Chronic nephritic syndrome with minimal change lesion|Chronic nephritic syndrome with minimal change lesion +C0555998|T047|PT|N03.0|ICD10CM|Chronic nephritic syndrome with minor glomerular abnormality|Chronic nephritic syndrome with minor glomerular abnormality +C0555998|T047|AB|N03.0|ICD10CM|Chronic nephritic syndrome with minor glomerular abnormality|Chronic nephritic syndrome with minor glomerular abnormality +C0555998|T047|PT|N03.0|ICD10|Chronic nephritic syndrome, minor glomerular abnormality|Chronic nephritic syndrome, minor glomerular abnormality +C0451744|T047|AB|N03.1|ICD10CM|Chronic neph syndrome w focal and seg glomerular lesions|Chronic neph syndrome w focal and seg glomerular lesions +C0451744|T047|PT|N03.1|ICD10CM|Chronic nephritic syndrome with focal and segmental glomerular lesions|Chronic nephritic syndrome with focal and segmental glomerular lesions +C2902877|T047|ET|N03.1|ICD10CM|Chronic nephritic syndrome with focal and segmental hyalinosis|Chronic nephritic syndrome with focal and segmental hyalinosis +C2902878|T047|ET|N03.1|ICD10CM|Chronic nephritic syndrome with focal and segmental sclerosis|Chronic nephritic syndrome with focal and segmental sclerosis +C2902879|T047|ET|N03.1|ICD10CM|Chronic nephritic syndrome with focal glomerulonephritis|Chronic nephritic syndrome with focal glomerulonephritis +C0451744|T047|PT|N03.1|ICD10|Chronic nephritic syndrome, focal and segmental glomerular lesions|Chronic nephritic syndrome, focal and segmental glomerular lesions +C0017665|T047|AB|N03.2|ICD10CM|Chronic nephritic syndrome w diffuse membranous glomrlneph|Chronic nephritic syndrome w diffuse membranous glomrlneph +C0017665|T047|PT|N03.2|ICD10CM|Chronic nephritic syndrome with diffuse membranous glomerulonephritis|Chronic nephritic syndrome with diffuse membranous glomerulonephritis +C0017665|T047|PT|N03.2|ICD10|Chronic nephritic syndrome, diffuse membranous glomerulonephritis|Chronic nephritic syndrome, diffuse membranous glomerulonephritis +C0403428|T047|AB|N03.3|ICD10CM|Chronic neph syndrome w diffuse mesangial prolif glomrlneph|Chronic neph syndrome w diffuse mesangial prolif glomrlneph +C0403428|T047|PT|N03.3|ICD10CM|Chronic nephritic syndrome with diffuse mesangial proliferative glomerulonephritis|Chronic nephritic syndrome with diffuse mesangial proliferative glomerulonephritis +C0403428|T047|PT|N03.3|ICD10|Chronic nephritic syndrome, diffuse mesangial proliferative glomerulonephritis|Chronic nephritic syndrome, diffuse mesangial proliferative glomerulonephritis +C0451745|T047|AB|N03.4|ICD10CM|Chronic neph syndrome w diffuse endocaplry prolif glomrlneph|Chronic neph syndrome w diffuse endocaplry prolif glomrlneph +C0451745|T047|PT|N03.4|ICD10CM|Chronic nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis|Chronic nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis +C0451745|T047|PT|N03.4|ICD10|Chronic nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis|Chronic nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis +C0451746|T047|AB|N03.5|ICD10CM|Chronic nephritic syndrome w diffuse mesangiocap glomrlneph|Chronic nephritic syndrome w diffuse mesangiocap glomrlneph +C0451746|T047|PT|N03.5|ICD10CM|Chronic nephritic syndrome with diffuse mesangiocapillary glomerulonephritis|Chronic nephritic syndrome with diffuse mesangiocapillary glomerulonephritis +C2902880|T047|ET|N03.5|ICD10CM|Chronic nephritic syndrome with membranoproliferative glomerulonephritis, types 1 and 3, or NOS|Chronic nephritic syndrome with membranoproliferative glomerulonephritis, types 1 and 3, or NOS +C0451746|T047|PT|N03.5|ICD10|Chronic nephritic syndrome, diffuse mesangiocapillary glomerulonephritis|Chronic nephritic syndrome, diffuse mesangiocapillary glomerulonephritis +C0451747|T047|PT|N03.6|ICD10CM|Chronic nephritic syndrome with dense deposit disease|Chronic nephritic syndrome with dense deposit disease +C0451747|T047|AB|N03.6|ICD10CM|Chronic nephritic syndrome with dense deposit disease|Chronic nephritic syndrome with dense deposit disease +C2902881|T047|ET|N03.6|ICD10CM|Chronic nephritic syndrome with membranoproliferative glomerulonephritis, type 2|Chronic nephritic syndrome with membranoproliferative glomerulonephritis, type 2 +C0451747|T047|PT|N03.6|ICD10|Chronic nephritic syndrome, dense deposit disease|Chronic nephritic syndrome, dense deposit disease +C0451748|T047|AB|N03.7|ICD10CM|Chronic nephritic syndrome w diffuse crescentic glomrlneph|Chronic nephritic syndrome w diffuse crescentic glomrlneph +C0451748|T047|PT|N03.7|ICD10CM|Chronic nephritic syndrome with diffuse crescentic glomerulonephritis|Chronic nephritic syndrome with diffuse crescentic glomerulonephritis +C2902882|T047|ET|N03.7|ICD10CM|Chronic nephritic syndrome with extracapillary glomerulonephritis|Chronic nephritic syndrome with extracapillary glomerulonephritis +C0451748|T047|PT|N03.7|ICD10|Chronic nephritic syndrome, diffuse crescentic glomerulonephritis|Chronic nephritic syndrome, diffuse crescentic glomerulonephritis +C2902884|T047|AB|N03.8|ICD10CM|Chronic nephritic syndrome with other morphologic changes|Chronic nephritic syndrome with other morphologic changes +C2902884|T047|PT|N03.8|ICD10CM|Chronic nephritic syndrome with other morphologic changes|Chronic nephritic syndrome with other morphologic changes +C2902883|T047|ET|N03.8|ICD10CM|Chronic nephritic syndrome with proliferative glomerulonephritis NOS|Chronic nephritic syndrome with proliferative glomerulonephritis NOS +C0495028|T047|PT|N03.8|ICD10|Chronic nephritic syndrome, other|Chronic nephritic syndrome, other +C2902885|T047|AB|N03.9|ICD10CM|Chronic nephritic syndrome with unsp morphologic changes|Chronic nephritic syndrome with unsp morphologic changes +C2902885|T047|PT|N03.9|ICD10CM|Chronic nephritic syndrome with unspecified morphologic changes|Chronic nephritic syndrome with unspecified morphologic changes +C0677052|T047|PT|N03.9|ICD10|Chronic nephritic syndrome, unspecified|Chronic nephritic syndrome, unspecified +C3501848|T047|ET|N04|ICD10CM|congenital nephrotic syndrome|congenital nephrotic syndrome +C0027721|T047|ET|N04|ICD10CM|lipoid nephrosis|lipoid nephrosis +C0027726|T047|HT|N04|ICD10CM|Nephrotic syndrome|Nephrotic syndrome +C0027726|T047|AB|N04|ICD10CM|Nephrotic syndrome|Nephrotic syndrome +C0027726|T047|HT|N04|ICD10|Nephrotic syndrome|Nephrotic syndrome +C2902886|T047|ET|N04.0|ICD10CM|Nephrotic syndrome with minimal change lesion|Nephrotic syndrome with minimal change lesion +C0451719|T047|AB|N04.0|ICD10CM|Nephrotic syndrome with minor glomerular abnormality|Nephrotic syndrome with minor glomerular abnormality +C0451719|T047|PT|N04.0|ICD10CM|Nephrotic syndrome with minor glomerular abnormality|Nephrotic syndrome with minor glomerular abnormality +C0451719|T047|PT|N04.0|ICD10|Nephrotic syndrome, minor glomerular abnormality|Nephrotic syndrome, minor glomerular abnormality +C0451720|T047|AB|N04.1|ICD10CM|Nephrotic syndrome w focal and segmental glomerular lesions|Nephrotic syndrome w focal and segmental glomerular lesions +C0451720|T047|PT|N04.1|ICD10CM|Nephrotic syndrome with focal and segmental glomerular lesions|Nephrotic syndrome with focal and segmental glomerular lesions +C2902887|T047|ET|N04.1|ICD10CM|Nephrotic syndrome with focal and segmental hyalinosis|Nephrotic syndrome with focal and segmental hyalinosis +C2902888|T047|ET|N04.1|ICD10CM|Nephrotic syndrome with focal and segmental sclerosis|Nephrotic syndrome with focal and segmental sclerosis +C2902889|T047|ET|N04.1|ICD10CM|Nephrotic syndrome with focal glomerulonephritis|Nephrotic syndrome with focal glomerulonephritis +C0451720|T047|PT|N04.1|ICD10|Nephrotic syndrome, focal and segmental glomerular lesions|Nephrotic syndrome, focal and segmental glomerular lesions +C0451721|T047|AB|N04.2|ICD10CM|Nephrotic syndrome w diffuse membranous glomerulonephritis|Nephrotic syndrome w diffuse membranous glomerulonephritis +C0451721|T047|PT|N04.2|ICD10CM|Nephrotic syndrome with diffuse membranous glomerulonephritis|Nephrotic syndrome with diffuse membranous glomerulonephritis +C0451721|T047|PT|N04.2|ICD10|Nephrotic syndrome, diffuse membranous glomerulonephritis|Nephrotic syndrome, diffuse membranous glomerulonephritis +C0451722|T047|AB|N04.3|ICD10CM|Nephrotic syndrome w diffuse mesangial prolif glomrlneph|Nephrotic syndrome w diffuse mesangial prolif glomrlneph +C0451722|T047|PT|N04.3|ICD10CM|Nephrotic syndrome with diffuse mesangial proliferative glomerulonephritis|Nephrotic syndrome with diffuse mesangial proliferative glomerulonephritis +C0451722|T047|PT|N04.3|ICD10|Nephrotic syndrome, diffuse mesangial proliferative glomerulonephritis|Nephrotic syndrome, diffuse mesangial proliferative glomerulonephritis +C0451723|T047|AB|N04.4|ICD10CM|Nephrotic syndrome w diffuse endocaplry prolif glomrlneph|Nephrotic syndrome w diffuse endocaplry prolif glomrlneph +C0451723|T047|PT|N04.4|ICD10CM|Nephrotic syndrome with diffuse endocapillary proliferative glomerulonephritis|Nephrotic syndrome with diffuse endocapillary proliferative glomerulonephritis +C0451723|T047|PT|N04.4|ICD10|Nephrotic syndrome, diffuse endocapillary proliferative glomerulonephritis|Nephrotic syndrome, diffuse endocapillary proliferative glomerulonephritis +C0451724|T047|AB|N04.5|ICD10CM|Nephrotic syndrome w diffuse mesangiocapillary glomrlneph|Nephrotic syndrome w diffuse mesangiocapillary glomrlneph +C0451724|T047|PT|N04.5|ICD10CM|Nephrotic syndrome with diffuse mesangiocapillary glomerulonephritis|Nephrotic syndrome with diffuse mesangiocapillary glomerulonephritis +C2902890|T047|ET|N04.5|ICD10CM|Nephrotic syndrome with membranoproliferative glomerulonephritis, types 1 and 3, or NOS|Nephrotic syndrome with membranoproliferative glomerulonephritis, types 1 and 3, or NOS +C0451724|T047|PT|N04.5|ICD10|Nephrotic syndrome, diffuse mesangiocapillary glomerulonephritis|Nephrotic syndrome, diffuse mesangiocapillary glomerulonephritis +C0451725|T047|PT|N04.6|ICD10CM|Nephrotic syndrome with dense deposit disease|Nephrotic syndrome with dense deposit disease +C0451725|T047|AB|N04.6|ICD10CM|Nephrotic syndrome with dense deposit disease|Nephrotic syndrome with dense deposit disease +C2902891|T047|ET|N04.6|ICD10CM|Nephrotic syndrome with membranoproliferative glomerulonephritis, type 2|Nephrotic syndrome with membranoproliferative glomerulonephritis, type 2 +C0451725|T047|PT|N04.6|ICD10|Nephrotic syndrome, dense deposit disease|Nephrotic syndrome, dense deposit disease +C0451726|T047|AB|N04.7|ICD10CM|Nephrotic syndrome w diffuse crescentic glomerulonephritis|Nephrotic syndrome w diffuse crescentic glomerulonephritis +C0451726|T047|PT|N04.7|ICD10CM|Nephrotic syndrome with diffuse crescentic glomerulonephritis|Nephrotic syndrome with diffuse crescentic glomerulonephritis +C2902892|T047|ET|N04.7|ICD10CM|Nephrotic syndrome with extracapillary glomerulonephritis|Nephrotic syndrome with extracapillary glomerulonephritis +C0451726|T047|PT|N04.7|ICD10|Nephrotic syndrome, diffuse crescentic glomerulonephritis|Nephrotic syndrome, diffuse crescentic glomerulonephritis +C2902893|T047|AB|N04.8|ICD10CM|Nephrotic syndrome with other morphologic changes|Nephrotic syndrome with other morphologic changes +C2902893|T047|PT|N04.8|ICD10CM|Nephrotic syndrome with other morphologic changes|Nephrotic syndrome with other morphologic changes +C0403395|T047|ET|N04.8|ICD10CM|Nephrotic syndrome with proliferative glomerulonephritis NOS|Nephrotic syndrome with proliferative glomerulonephritis NOS +C0495029|T047|PT|N04.8|ICD10|Nephrotic syndrome, other|Nephrotic syndrome, other +C2902894|T047|AB|N04.9|ICD10CM|Nephrotic syndrome with unspecified morphologic changes|Nephrotic syndrome with unspecified morphologic changes +C2902894|T047|PT|N04.9|ICD10CM|Nephrotic syndrome with unspecified morphologic changes|Nephrotic syndrome with unspecified morphologic changes +C0027726|T047|PT|N04.9|ICD10|Nephrotic syndrome, unspecified|Nephrotic syndrome, unspecified +C0268731|T047|ET|N05|ICD10CM|glomerular disease NOS|glomerular disease NOS +C0017658|T047|ET|N05|ICD10CM|glomerulonephritis NOS|glomerulonephritis NOS +C0027697|T047|ET|N05|ICD10CM|nephritis NOS|nephritis NOS +C4290234|T047|ET|N05|ICD10CM|nephropathy NOS and renal disease NOS with morphological lesion specified in .0-.8|nephropathy NOS and renal disease NOS with morphological lesion specified in .0-.8 +C0268732|T047|AB|N05|ICD10CM|Unspecified nephritic syndrome|Unspecified nephritic syndrome +C0268732|T047|HT|N05|ICD10CM|Unspecified nephritic syndrome|Unspecified nephritic syndrome +C0268732|T047|HT|N05|ICD10|Unspecified nephritic syndrome|Unspecified nephritic syndrome +C0477721|T047|AB|N05.0|ICD10CM|Unsp nephritic syndrome with minor glomerular abnormality|Unsp nephritic syndrome with minor glomerular abnormality +C2902896|T047|ET|N05.0|ICD10CM|Unspecified nephritic syndrome with minimal change lesion|Unspecified nephritic syndrome with minimal change lesion +C0477721|T047|PT|N05.0|ICD10CM|Unspecified nephritic syndrome with minor glomerular abnormality|Unspecified nephritic syndrome with minor glomerular abnormality +C0477721|T047|PT|N05.0|ICD10|Unspecified nephritic syndrome, minor glomerular abnormality|Unspecified nephritic syndrome, minor glomerular abnormality +C0495031|T047|AB|N05.1|ICD10CM|Unsp neph syndrome w focal and segmental glomerular lesions|Unsp neph syndrome w focal and segmental glomerular lesions +C0495031|T047|PT|N05.1|ICD10CM|Unspecified nephritic syndrome with focal and segmental glomerular lesions|Unspecified nephritic syndrome with focal and segmental glomerular lesions +C2902897|T047|ET|N05.1|ICD10CM|Unspecified nephritic syndrome with focal and segmental hyalinosis|Unspecified nephritic syndrome with focal and segmental hyalinosis +C2902898|T047|ET|N05.1|ICD10CM|Unspecified nephritic syndrome with focal and segmental sclerosis|Unspecified nephritic syndrome with focal and segmental sclerosis +C2902899|T047|ET|N05.1|ICD10CM|Unspecified nephritic syndrome with focal glomerulonephritis|Unspecified nephritic syndrome with focal glomerulonephritis +C0495031|T047|PT|N05.1|ICD10|Unspecified nephritic syndrome, focal and segmental glomerular lesions|Unspecified nephritic syndrome, focal and segmental glomerular lesions +C0495032|T047|AB|N05.2|ICD10CM|Unsp nephritic syndrome w diffuse membranous glomrlneph|Unsp nephritic syndrome w diffuse membranous glomrlneph +C0495032|T047|PT|N05.2|ICD10CM|Unspecified nephritic syndrome with diffuse membranous glomerulonephritis|Unspecified nephritic syndrome with diffuse membranous glomerulonephritis +C0495032|T047|PT|N05.2|ICD10|Unspecified nephritic syndrome, diffuse membranous glomerulonephritis|Unspecified nephritic syndrome, diffuse membranous glomerulonephritis +C0477722|T047|AB|N05.3|ICD10CM|Unsp neph syndrome w diffuse mesangial prolif glomrlneph|Unsp neph syndrome w diffuse mesangial prolif glomrlneph +C0477722|T047|PT|N05.3|ICD10CM|Unspecified nephritic syndrome with diffuse mesangial proliferative glomerulonephritis|Unspecified nephritic syndrome with diffuse mesangial proliferative glomerulonephritis +C0477722|T047|PT|N05.3|ICD10|Unspecified nephritic syndrome, diffuse mesangial proliferative glomerulonephritis|Unspecified nephritic syndrome, diffuse mesangial proliferative glomerulonephritis +C0477723|T047|AB|N05.4|ICD10CM|Unsp neph syndrome w diffuse endocaplry prolif glomrlneph|Unsp neph syndrome w diffuse endocaplry prolif glomrlneph +C0477723|T047|PT|N05.4|ICD10CM|Unspecified nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis|Unspecified nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis +C0477723|T047|PT|N05.4|ICD10|Unspecified nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis|Unspecified nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis +C0495033|T047|AB|N05.5|ICD10CM|Unsp nephritic syndrome w diffuse mesangiocap glomrlneph|Unsp nephritic syndrome w diffuse mesangiocap glomrlneph +C0495033|T047|PT|N05.5|ICD10CM|Unspecified nephritic syndrome with diffuse mesangiocapillary glomerulonephritis|Unspecified nephritic syndrome with diffuse mesangiocapillary glomerulonephritis +C2902900|T047|ET|N05.5|ICD10CM|Unspecified nephritic syndrome with membranoproliferative glomerulonephritis, types 1 and 3, or NOS|Unspecified nephritic syndrome with membranoproliferative glomerulonephritis, types 1 and 3, or NOS +C0495033|T047|PT|N05.5|ICD10|Unspecified nephritic syndrome, diffuse mesangiocapillary glomerulonephritis|Unspecified nephritic syndrome, diffuse mesangiocapillary glomerulonephritis +C0477724|T047|AB|N05.6|ICD10CM|Unspecified nephritic syndrome with dense deposit disease|Unspecified nephritic syndrome with dense deposit disease +C0477724|T047|PT|N05.6|ICD10CM|Unspecified nephritic syndrome with dense deposit disease|Unspecified nephritic syndrome with dense deposit disease +C2902901|T047|ET|N05.6|ICD10CM|Unspecified nephritic syndrome with membranoproliferative glomerulonephritis, type 2|Unspecified nephritic syndrome with membranoproliferative glomerulonephritis, type 2 +C0477724|T047|PT|N05.6|ICD10|Unspecified nephritic syndrome, dense deposit disease|Unspecified nephritic syndrome, dense deposit disease +C0495034|T047|AB|N05.7|ICD10CM|Unsp nephritic syndrome w diffuse crescentic glomrlneph|Unsp nephritic syndrome w diffuse crescentic glomrlneph +C0495034|T047|PT|N05.7|ICD10CM|Unspecified nephritic syndrome with diffuse crescentic glomerulonephritis|Unspecified nephritic syndrome with diffuse crescentic glomerulonephritis +C2902902|T047|ET|N05.7|ICD10CM|Unspecified nephritic syndrome with extracapillary glomerulonephritis|Unspecified nephritic syndrome with extracapillary glomerulonephritis +C0495034|T047|PT|N05.7|ICD10|Unspecified nephritic syndrome, diffuse crescentic glomerulonephritis|Unspecified nephritic syndrome, diffuse crescentic glomerulonephritis +C2902904|T047|AB|N05.8|ICD10CM|Unsp nephritic syndrome with other morphologic changes|Unsp nephritic syndrome with other morphologic changes +C2902904|T047|PT|N05.8|ICD10CM|Unspecified nephritic syndrome with other morphologic changes|Unspecified nephritic syndrome with other morphologic changes +C2902903|T047|ET|N05.8|ICD10CM|Unspecified nephritic syndrome with proliferative glomerulonephritis NOS|Unspecified nephritic syndrome with proliferative glomerulonephritis NOS +C0495035|T047|PT|N05.8|ICD10|Unspecified nephritic syndrome, other|Unspecified nephritic syndrome, other +C2902905|T047|AB|N05.9|ICD10CM|Unsp nephritic syndrome with unspecified morphologic changes|Unsp nephritic syndrome with unspecified morphologic changes +C2902905|T047|PT|N05.9|ICD10CM|Unspecified nephritic syndrome with unspecified morphologic changes|Unspecified nephritic syndrome with unspecified morphologic changes +C0268732|T047|PT|N05.9|ICD10|Unspecified nephritic syndrome, unspecified|Unspecified nephritic syndrome, unspecified +C0451774|T033|HT|N06|ICD10|Isolated proteinuria with specified morphological lesion|Isolated proteinuria with specified morphological lesion +C0451774|T033|HT|N06|ICD10CM|Isolated proteinuria with specified morphological lesion|Isolated proteinuria with specified morphological lesion +C0451774|T033|AB|N06|ICD10CM|Isolated proteinuria with specified morphological lesion|Isolated proteinuria with specified morphological lesion +C2902906|T033|ET|N06.0|ICD10CM|Isolated proteinuria with minimal change lesion|Isolated proteinuria with minimal change lesion +C0495036|T033|PT|N06.0|ICD10CM|Isolated proteinuria with minor glomerular abnormality|Isolated proteinuria with minor glomerular abnormality +C0495036|T033|AB|N06.0|ICD10CM|Isolated proteinuria with minor glomerular abnormality|Isolated proteinuria with minor glomerular abnormality +C0495036|T033|PT|N06.0|ICD10|Isolated proteinuria with minor glomerular abnormality|Isolated proteinuria with minor glomerular abnormality +C0495037|T047|AB|N06.1|ICD10CM|Isolated protein w focal and segmental glomerular lesions|Isolated protein w focal and segmental glomerular lesions +C0495037|T047|PT|N06.1|ICD10CM|Isolated proteinuria with focal and segmental glomerular lesions|Isolated proteinuria with focal and segmental glomerular lesions +C0495037|T047|PT|N06.1|ICD10|Isolated proteinuria with focal and segmental glomerular lesions|Isolated proteinuria with focal and segmental glomerular lesions +C2902907|T033|ET|N06.1|ICD10CM|Isolated proteinuria with focal and segmental hyalinosis|Isolated proteinuria with focal and segmental hyalinosis +C2902908|T033|ET|N06.1|ICD10CM|Isolated proteinuria with focal and segmental sclerosis|Isolated proteinuria with focal and segmental sclerosis +C2902909|T033|ET|N06.1|ICD10CM|Isolated proteinuria with focal glomerulonephritis|Isolated proteinuria with focal glomerulonephritis +C0495038|T047|AB|N06.2|ICD10CM|Isolated proteinuria w diffuse membranous glomerulonephritis|Isolated proteinuria w diffuse membranous glomerulonephritis +C0495038|T047|PT|N06.2|ICD10CM|Isolated proteinuria with diffuse membranous glomerulonephritis|Isolated proteinuria with diffuse membranous glomerulonephritis +C0495038|T047|PT|N06.2|ICD10|Isolated proteinuria with diffuse membranous glomerulonephritis|Isolated proteinuria with diffuse membranous glomerulonephritis +C0495039|T047|AB|N06.3|ICD10CM|Isolated proteinuria w diffuse mesangial prolif glomrlneph|Isolated proteinuria w diffuse mesangial prolif glomrlneph +C0495039|T047|PT|N06.3|ICD10CM|Isolated proteinuria with diffuse mesangial proliferative glomerulonephritis|Isolated proteinuria with diffuse mesangial proliferative glomerulonephritis +C0495039|T047|PT|N06.3|ICD10|Isolated proteinuria with diffuse mesangial proliferative glomerulonephritis|Isolated proteinuria with diffuse mesangial proliferative glomerulonephritis +C0495040|T047|AB|N06.4|ICD10CM|Isolated proteinuria w diffuse endocaplry prolif glomrlneph|Isolated proteinuria w diffuse endocaplry prolif glomrlneph +C0495040|T047|PT|N06.4|ICD10CM|Isolated proteinuria with diffuse endocapillary proliferative glomerulonephritis|Isolated proteinuria with diffuse endocapillary proliferative glomerulonephritis +C0495040|T047|PT|N06.4|ICD10|Isolated proteinuria with diffuse endocapillary proliferative glomerulonephritis|Isolated proteinuria with diffuse endocapillary proliferative glomerulonephritis +C0495041|T047|AB|N06.5|ICD10CM|Isolated proteinuria w diffuse mesangiocapillary glomrlneph|Isolated proteinuria w diffuse mesangiocapillary glomrlneph +C0495041|T047|PT|N06.5|ICD10CM|Isolated proteinuria with diffuse mesangiocapillary glomerulonephritis|Isolated proteinuria with diffuse mesangiocapillary glomerulonephritis +C0495041|T047|PT|N06.5|ICD10|Isolated proteinuria with diffuse mesangiocapillary glomerulonephritis|Isolated proteinuria with diffuse mesangiocapillary glomerulonephritis +C2902910|T033|ET|N06.5|ICD10CM|Isolated proteinuria with membranoproliferative glomerulonephritis, types 1 and 3, or NOS|Isolated proteinuria with membranoproliferative glomerulonephritis, types 1 and 3, or NOS +C0495042|T047|PT|N06.6|ICD10|Isolated proteinuria with dense deposit disease|Isolated proteinuria with dense deposit disease +C0495042|T047|PT|N06.6|ICD10CM|Isolated proteinuria with dense deposit disease|Isolated proteinuria with dense deposit disease +C0495042|T047|AB|N06.6|ICD10CM|Isolated proteinuria with dense deposit disease|Isolated proteinuria with dense deposit disease +C2902911|T033|ET|N06.6|ICD10CM|Isolated proteinuria with membranoproliferative glomerulonephritis, type 2|Isolated proteinuria with membranoproliferative glomerulonephritis, type 2 +C0495043|T047|AB|N06.7|ICD10CM|Isolated proteinuria w diffuse crescentic glomerulonephritis|Isolated proteinuria w diffuse crescentic glomerulonephritis +C0495043|T047|PT|N06.7|ICD10CM|Isolated proteinuria with diffuse crescentic glomerulonephritis|Isolated proteinuria with diffuse crescentic glomerulonephritis +C0495043|T047|PT|N06.7|ICD10|Isolated proteinuria with diffuse crescentic glomerulonephritis|Isolated proteinuria with diffuse crescentic glomerulonephritis +C2902912|T033|ET|N06.7|ICD10CM|Isolated proteinuria with extracapillary glomerulonephritis|Isolated proteinuria with extracapillary glomerulonephritis +C2902914|T047|AB|N06.8|ICD10CM|Isolated proteinuria with other morphologic lesion|Isolated proteinuria with other morphologic lesion +C2902914|T047|PT|N06.8|ICD10CM|Isolated proteinuria with other morphologic lesion|Isolated proteinuria with other morphologic lesion +C2902913|T033|ET|N06.8|ICD10CM|Isolated proteinuria with proliferative glomerulonephritis NOS|Isolated proteinuria with proliferative glomerulonephritis NOS +C0495044|T047|PT|N06.8|ICD10|Isolated proteinuria with specified morphological lesion, other|Isolated proteinuria with specified morphological lesion, other +C0451774|T033|PT|N06.9|ICD10|Isolated proteinuria with specified morphological lesion, unspecified|Isolated proteinuria with specified morphological lesion, unspecified +C2902915|T047|AB|N06.9|ICD10CM|Isolated proteinuria with unspecified morphologic lesion|Isolated proteinuria with unspecified morphologic lesion +C2902915|T047|PT|N06.9|ICD10CM|Isolated proteinuria with unspecified morphologic lesion|Isolated proteinuria with unspecified morphologic lesion +C0868872|T047|HT|N07|ICD10|Hereditary nephropathy, not elsewhere classified|Hereditary nephropathy, not elsewhere classified +C0868872|T047|AB|N07|ICD10CM|Hereditary nephropathy, not elsewhere classified|Hereditary nephropathy, not elsewhere classified +C0868872|T047|HT|N07|ICD10CM|Hereditary nephropathy, not elsewhere classified|Hereditary nephropathy, not elsewhere classified +C0868873|T047|AB|N07.0|ICD10CM|Hereditary nephropathy, NEC w minor glomerular abnormality|Hereditary nephropathy, NEC w minor glomerular abnormality +C2902916|T047|ET|N07.0|ICD10CM|Hereditary nephropathy, not elsewhere classified with minimal change lesion|Hereditary nephropathy, not elsewhere classified with minimal change lesion +C0868873|T047|PT|N07.0|ICD10CM|Hereditary nephropathy, not elsewhere classified with minor glomerular abnormality|Hereditary nephropathy, not elsewhere classified with minor glomerular abnormality +C0868873|T047|PT|N07.0|ICD10|Hereditary nephropathy, not elsewhere classified, minor glomerular abnormality|Hereditary nephropathy, not elsewhere classified, minor glomerular abnormality +C0868874|T047|AB|N07.1|ICD10CM|Heredit neuropath, NEC w focal and seg glomerular lesions|Heredit neuropath, NEC w focal and seg glomerular lesions +C0868874|T047|PT|N07.1|ICD10CM|Hereditary nephropathy, not elsewhere classified with focal and segmental glomerular lesions|Hereditary nephropathy, not elsewhere classified with focal and segmental glomerular lesions +C2902917|T047|ET|N07.1|ICD10CM|Hereditary nephropathy, not elsewhere classified with focal and segmental hyalinosis|Hereditary nephropathy, not elsewhere classified with focal and segmental hyalinosis +C2902918|T047|ET|N07.1|ICD10CM|Hereditary nephropathy, not elsewhere classified with focal and segmental sclerosis|Hereditary nephropathy, not elsewhere classified with focal and segmental sclerosis +C2902919|T047|ET|N07.1|ICD10CM|Hereditary nephropathy, not elsewhere classified with focal glomerulonephritis|Hereditary nephropathy, not elsewhere classified with focal glomerulonephritis +C0868874|T047|PT|N07.1|ICD10|Hereditary nephropathy, not elsewhere classified, focal and segmental glomerular lesions|Hereditary nephropathy, not elsewhere classified, focal and segmental glomerular lesions +C0868875|T047|AB|N07.2|ICD10CM|Hereditary nephropathy, NEC w diffuse membranous glomrlneph|Hereditary nephropathy, NEC w diffuse membranous glomrlneph +C0868875|T047|PT|N07.2|ICD10CM|Hereditary nephropathy, not elsewhere classified with diffuse membranous glomerulonephritis|Hereditary nephropathy, not elsewhere classified with diffuse membranous glomerulonephritis +C0868875|T047|PT|N07.2|ICD10|Hereditary nephropathy, not elsewhere classified, diffuse membranous glomerulonephritis|Hereditary nephropathy, not elsewhere classified, diffuse membranous glomerulonephritis +C0868878|T047|AB|N07.3|ICD10CM|Heredit neuropath, NEC w diffuse mesangial prolif glomrlneph|Heredit neuropath, NEC w diffuse mesangial prolif glomrlneph +C0868878|T047|PT|N07.3|ICD10|Hereditary nephropathy, not elsewhere classified, diffuse mesangial proliferative glomerulonephritis|Hereditary nephropathy, not elsewhere classified, diffuse mesangial proliferative glomerulonephritis +C0868880|T047|AB|N07.4|ICD10CM|Heredit neuropath, NEC w diffus endocaplry prolif glomrlneph|Heredit neuropath, NEC w diffus endocaplry prolif glomrlneph +C0868881|T047|AB|N07.5|ICD10CM|Hereditary nephropathy, NEC w diffuse mesangiocap glomrlneph|Hereditary nephropathy, NEC w diffuse mesangiocap glomrlneph +C0868881|T047|PT|N07.5|ICD10CM|Hereditary nephropathy, not elsewhere classified with diffuse mesangiocapillary glomerulonephritis|Hereditary nephropathy, not elsewhere classified with diffuse mesangiocapillary glomerulonephritis +C0868881|T047|PT|N07.5|ICD10|Hereditary nephropathy, not elsewhere classified, diffuse mesangiocapillary glomerulonephritis|Hereditary nephropathy, not elsewhere classified, diffuse mesangiocapillary glomerulonephritis +C0868882|T047|AB|N07.6|ICD10CM|Hereditary nephropathy, NEC w dense deposit disease|Hereditary nephropathy, NEC w dense deposit disease +C0868882|T047|PT|N07.6|ICD10CM|Hereditary nephropathy, not elsewhere classified with dense deposit disease|Hereditary nephropathy, not elsewhere classified with dense deposit disease +C0868882|T047|PT|N07.6|ICD10|Hereditary nephropathy, not elsewhere classified, dense deposit disease|Hereditary nephropathy, not elsewhere classified, dense deposit disease +C0868883|T047|AB|N07.7|ICD10CM|Hereditary nephropathy, NEC w diffuse crescentic glomrlneph|Hereditary nephropathy, NEC w diffuse crescentic glomrlneph +C0868883|T047|PT|N07.7|ICD10CM|Hereditary nephropathy, not elsewhere classified with diffuse crescentic glomerulonephritis|Hereditary nephropathy, not elsewhere classified with diffuse crescentic glomerulonephritis +C2902922|T047|ET|N07.7|ICD10CM|Hereditary nephropathy, not elsewhere classified with extracapillary glomerulonephritis|Hereditary nephropathy, not elsewhere classified with extracapillary glomerulonephritis +C0868883|T047|PT|N07.7|ICD10|Hereditary nephropathy, not elsewhere classified, diffuse crescentic glomerulonephritis|Hereditary nephropathy, not elsewhere classified, diffuse crescentic glomerulonephritis +C2902924|T047|AB|N07.8|ICD10CM|Hereditary nephropathy, NEC w oth morphologic lesions|Hereditary nephropathy, NEC w oth morphologic lesions +C2902924|T047|PT|N07.8|ICD10CM|Hereditary nephropathy, not elsewhere classified with other morphologic lesions|Hereditary nephropathy, not elsewhere classified with other morphologic lesions +C2902923|T047|ET|N07.8|ICD10CM|Hereditary nephropathy, not elsewhere classified with proliferative glomerulonephritis NOS|Hereditary nephropathy, not elsewhere classified with proliferative glomerulonephritis NOS +C0495045|T047|PT|N07.8|ICD10|Hereditary nephropathy, not elsewhere classified, other|Hereditary nephropathy, not elsewhere classified, other +C2902925|T047|AB|N07.9|ICD10CM|Hereditary nephropathy, NEC w unsp morphologic lesions|Hereditary nephropathy, NEC w unsp morphologic lesions +C2902925|T047|PT|N07.9|ICD10CM|Hereditary nephropathy, not elsewhere classified with unspecified morphologic lesions|Hereditary nephropathy, not elsewhere classified with unspecified morphologic lesions +C0868872|T047|PT|N07.9|ICD10|Hereditary nephropathy, not elsewhere classified, unspecified|Hereditary nephropathy, not elsewhere classified, unspecified +C0694525|T047|HT|N08|ICD10|Glomerular disorders in diseases classified elsewhere|Glomerular disorders in diseases classified elsewhere +C0694525|T047|PT|N08|ICD10CM|Glomerular disorders in diseases classified elsewhere|Glomerular disorders in diseases classified elsewhere +C0694525|T047|AB|N08|ICD10CM|Glomerular disorders in diseases classified elsewhere|Glomerular disorders in diseases classified elsewhere +C0017658|T047|ET|N08|ICD10CM|Glomerulonephritis|Glomerulonephritis +C0027697|T047|ET|N08|ICD10CM|Nephritis|Nephritis +C0022658|T047|ET|N08|ICD10CM|Nephropathy|Nephropathy +C0477713|T047|PT|N08.0|ICD10|Glomerular disorders in infectious and parasitic diseases classified elsewhere|Glomerular disorders in infectious and parasitic diseases classified elsewhere +C0451765|T047|PT|N08.1|ICD10|Glomerular disorders in neoplastic diseases|Glomerular disorders in neoplastic diseases +C0451766|T047|PT|N08.2|ICD10|Glomerular disorders in blood diseases and disorders involving the immune mechanism|Glomerular disorders in blood diseases and disorders involving the immune mechanism +C0477716|T047|PT|N08.3|ICD10|Glomerular disorders in diabetes mellitus|Glomerular disorders in diabetes mellitus +C0495046|T047|PT|N08.4|ICD10|Glomerular disorders in other endocrine, nutritional and metabolic diseases|Glomerular disorders in other endocrine, nutritional and metabolic diseases +C0495047|T047|PT|N08.5|ICD10|Glomerular disorders in systemic connective tissue disorders|Glomerular disorders in systemic connective tissue disorders +C0477719|T047|PT|N08.8|ICD10|Glomerular disorders in other diseases classified elsewhere|Glomerular disorders in other diseases classified elsewhere +C2902926|T047|ET|N10|ICD10CM|Acute infectious interstitial nephritis|Acute infectious interstitial nephritis +C0268715|T047|ET|N10|ICD10CM|Acute pyelitis|Acute pyelitis +C0520575|T047|AB|N10|ICD10CM|Acute pyelonephritis|Acute pyelonephritis +C0520575|T047|PT|N10|ICD10CM|Acute pyelonephritis|Acute pyelonephritis +C1843274|T047|PT|N10|ICD10|Acute tubulo-interstitial nephritis|Acute tubulo-interstitial nephritis +C1843274|T047|ET|N10|ICD10CM|Acute tubulo-interstitial nephritis|Acute tubulo-interstitial nephritis +C3264499|T047|ET|N10|ICD10CM|Hemoglobin nephrosis|Hemoglobin nephrosis +C2902928|T047|ET|N10|ICD10CM|Myoglobin nephrosis|Myoglobin nephrosis +C0034186|T047|ET|N10-N16|ICD10CM|pyelonephritis|pyelonephritis +C0041349|T047|HT|N10-N16|ICD10CM|Renal tubulo-interstitial diseases (N10-N16)|Renal tubulo-interstitial diseases (N10-N16) +C0041349|T047|HT|N10-N16.9|ICD10|Renal tubulo-interstitial diseases|Renal tubulo-interstitial diseases +C4290235|T047|ET|N11|ICD10CM|chronic infectious interstitial nephritis|chronic infectious interstitial nephritis +C0341681|T047|ET|N11|ICD10CM|chronic pyelitis|chronic pyelitis +C0085697|T047|ET|N11|ICD10CM|chronic pyelonephritis|chronic pyelonephritis +C0238304|T047|HT|N11|ICD10CM|Chronic tubulo-interstitial nephritis|Chronic tubulo-interstitial nephritis +C0238304|T047|AB|N11|ICD10CM|Chronic tubulo-interstitial nephritis|Chronic tubulo-interstitial nephritis +C0238304|T047|HT|N11|ICD10|Chronic tubulo-interstitial nephritis|Chronic tubulo-interstitial nephritis +C0451718|T047|PT|N11.0|ICD10CM|Nonobstructive reflux-associated chronic pyelonephritis|Nonobstructive reflux-associated chronic pyelonephritis +C0451718|T047|AB|N11.0|ICD10CM|Nonobstructive reflux-associated chronic pyelonephritis|Nonobstructive reflux-associated chronic pyelonephritis +C0451718|T047|PT|N11.0|ICD10|Nonobstructive reflux-associated chronic pyelonephritis|Nonobstructive reflux-associated chronic pyelonephritis +C2902930|T047|ET|N11.0|ICD10CM|Pyelonephritis (chronic) associated with (vesicoureteral) reflux|Pyelonephritis (chronic) associated with (vesicoureteral) reflux +C0403389|T047|PT|N11.1|ICD10|Chronic obstructive pyelonephritis|Chronic obstructive pyelonephritis +C0403389|T047|PT|N11.1|ICD10CM|Chronic obstructive pyelonephritis|Chronic obstructive pyelonephritis +C0403389|T047|AB|N11.1|ICD10CM|Chronic obstructive pyelonephritis|Chronic obstructive pyelonephritis +C2902931|T047|ET|N11.1|ICD10CM|Pyelonephritis (chronic) associated with anomaly of pelviureteric junction|Pyelonephritis (chronic) associated with anomaly of pelviureteric junction +C2902932|T047|ET|N11.1|ICD10CM|Pyelonephritis (chronic) associated with anomaly of pyeloureteric junction|Pyelonephritis (chronic) associated with anomaly of pyeloureteric junction +C2902933|T047|ET|N11.1|ICD10CM|Pyelonephritis (chronic) associated with crossing of vessel|Pyelonephritis (chronic) associated with crossing of vessel +C2902934|T047|ET|N11.1|ICD10CM|Pyelonephritis (chronic) associated with kinking of ureter|Pyelonephritis (chronic) associated with kinking of ureter +C2902935|T047|ET|N11.1|ICD10CM|Pyelonephritis (chronic) associated with obstruction of ureter|Pyelonephritis (chronic) associated with obstruction of ureter +C2902936|T047|ET|N11.1|ICD10CM|Pyelonephritis (chronic) associated with stricture of pelviureteric junction|Pyelonephritis (chronic) associated with stricture of pelviureteric junction +C2902937|T047|ET|N11.1|ICD10CM|Pyelonephritis (chronic) associated with stricture of ureter|Pyelonephritis (chronic) associated with stricture of ureter +C1392616|T047|ET|N11.8|ICD10CM|Nonobstructive chronic pyelonephritis NOS|Nonobstructive chronic pyelonephritis NOS +C0477729|T047|PT|N11.8|ICD10CM|Other chronic tubulo-interstitial nephritis|Other chronic tubulo-interstitial nephritis +C0477729|T047|AB|N11.8|ICD10CM|Other chronic tubulo-interstitial nephritis|Other chronic tubulo-interstitial nephritis +C0477729|T047|PT|N11.8|ICD10|Other chronic tubulo-interstitial nephritis|Other chronic tubulo-interstitial nephritis +C0238304|T047|ET|N11.9|ICD10CM|Chronic interstitial nephritis NOS|Chronic interstitial nephritis NOS +C0341681|T047|ET|N11.9|ICD10CM|Chronic pyelitis NOS|Chronic pyelitis NOS +C0085697|T047|ET|N11.9|ICD10CM|Chronic pyelonephritis NOS|Chronic pyelonephritis NOS +C0238304|T047|PT|N11.9|ICD10|Chronic tubulo-interstitial nephritis, unspecified|Chronic tubulo-interstitial nephritis, unspecified +C0238304|T047|PT|N11.9|ICD10CM|Chronic tubulo-interstitial nephritis, unspecified|Chronic tubulo-interstitial nephritis, unspecified +C0238304|T047|AB|N11.9|ICD10CM|Chronic tubulo-interstitial nephritis, unspecified|Chronic tubulo-interstitial nephritis, unspecified +C0027707|T047|ET|N12|ICD10CM|Interstitial nephritis NOS|Interstitial nephritis NOS +C0034183|T047|ET|N12|ICD10CM|Pyelitis NOS|Pyelitis NOS +C0034186|T047|ET|N12|ICD10CM|Pyelonephritis NOS|Pyelonephritis NOS +C0477743|T047|AB|N12|ICD10CM|Tubulo-interstitial nephritis, not spcf as acute or chronic|Tubulo-interstitial nephritis, not spcf as acute or chronic +C0477743|T047|PT|N12|ICD10CM|Tubulo-interstitial nephritis, not specified as acute or chronic|Tubulo-interstitial nephritis, not specified as acute or chronic +C0477743|T047|PT|N12|ICD10|Tubulo-interstitial nephritis, not specified as acute or chronic|Tubulo-interstitial nephritis, not specified as acute or chronic +C0477732|T047|HT|N13|ICD10|Obstructive and reflux uropathy|Obstructive and reflux uropathy +C0477732|T047|AB|N13|ICD10CM|Obstructive and reflux uropathy|Obstructive and reflux uropathy +C0477732|T047|HT|N13|ICD10CM|Obstructive and reflux uropathy|Obstructive and reflux uropathy +C4268882|T047|ET|N13.0|ICD10CM|Hydronephrosis due to acquired occlusion of ureteropelvic junction|Hydronephrosis due to acquired occlusion of ureteropelvic junction +C0495049|T047|AB|N13.0|ICD10CM|Hydronephrosis with ureteropelvic junction obstruction|Hydronephrosis with ureteropelvic junction obstruction +C0495049|T047|PT|N13.0|ICD10CM|Hydronephrosis with ureteropelvic junction obstruction|Hydronephrosis with ureteropelvic junction obstruction +C0495049|T047|PT|N13.0|ICD10|Hydronephrosis with ureteropelvic junction obstruction|Hydronephrosis with ureteropelvic junction obstruction +C0869069|T047|AB|N13.1|ICD10CM|Hydronephrosis w ureteral stricture, NEC|Hydronephrosis w ureteral stricture, NEC +C0869069|T047|PT|N13.1|ICD10CM|Hydronephrosis with ureteral stricture, not elsewhere classified|Hydronephrosis with ureteral stricture, not elsewhere classified +C0869069|T047|PT|N13.1|ICD10|Hydronephrosis with ureteral stricture, not elsewhere classified|Hydronephrosis with ureteral stricture, not elsewhere classified +C0451770|T020|PT|N13.2|ICD10|Hydronephrosis with renal and ureteral calculous obstruction|Hydronephrosis with renal and ureteral calculous obstruction +C0451770|T020|PT|N13.2|ICD10CM|Hydronephrosis with renal and ureteral calculous obstruction|Hydronephrosis with renal and ureteral calculous obstruction +C0451770|T020|AB|N13.2|ICD10CM|Hydronephrosis with renal and ureteral calculous obstruction|Hydronephrosis with renal and ureteral calculous obstruction +C0477730|T020|HT|N13.3|ICD10CM|Other and unspecified hydronephrosis|Other and unspecified hydronephrosis +C0477730|T020|AB|N13.3|ICD10CM|Other and unspecified hydronephrosis|Other and unspecified hydronephrosis +C0477730|T020|PT|N13.3|ICD10|Other and unspecified hydronephrosis|Other and unspecified hydronephrosis +C0020295|T047|AB|N13.30|ICD10CM|Unspecified hydronephrosis|Unspecified hydronephrosis +C0020295|T047|PT|N13.30|ICD10CM|Unspecified hydronephrosis|Unspecified hydronephrosis +C2902938|T047|AB|N13.39|ICD10CM|Other hydronephrosis|Other hydronephrosis +C2902938|T047|PT|N13.39|ICD10CM|Other hydronephrosis|Other hydronephrosis +C0521620|T190|PT|N13.4|ICD10|Hydroureter|Hydroureter +C0521620|T190|PT|N13.4|ICD10CM|Hydroureter|Hydroureter +C0521620|T190|AB|N13.4|ICD10CM|Hydroureter|Hydroureter +C2902939|T047|AB|N13.5|ICD10CM|Crossing vessel and stricture of ureter w/o hydronephrosis|Crossing vessel and stricture of ureter w/o hydronephrosis +C2902939|T047|PT|N13.5|ICD10CM|Crossing vessel and stricture of ureter without hydronephrosis|Crossing vessel and stricture of ureter without hydronephrosis +C0495051|T020|ET|N13.5|ICD10CM|Kinking and stricture of ureter without hydronephrosis|Kinking and stricture of ureter without hydronephrosis +C0495051|T020|PT|N13.5|ICD10|Kinking and stricture of ureter without hydronephrosis|Kinking and stricture of ureter without hydronephrosis +C4268883|T047|ET|N13.6|ICD10CM|Conditions in N13.0-N13.5 with infection|Conditions in N13.0-N13.5 with infection +C2902941|T047|ET|N13.6|ICD10CM|Obstructive uropathy with infection|Obstructive uropathy with infection +C0034216|T047|PT|N13.6|ICD10CM|Pyonephrosis|Pyonephrosis +C0034216|T047|AB|N13.6|ICD10CM|Pyonephrosis|Pyonephrosis +C0034216|T047|PT|N13.6|ICD10|Pyonephrosis|Pyonephrosis +C0042580|T047|AB|N13.7|ICD10CM|Vesicoureteral-reflux|Vesicoureteral-reflux +C0042580|T047|HT|N13.7|ICD10CM|Vesicoureteral-reflux|Vesicoureteral-reflux +C0495052|T047|PT|N13.7|ICD10|Vesicoureteral-reflux-associated uropathy|Vesicoureteral-reflux-associated uropathy +C0042580|T047|ET|N13.70|ICD10CM|Vesicoureteral-reflux NOS|Vesicoureteral-reflux NOS +C0042580|T047|AB|N13.70|ICD10CM|Vesicoureteral-reflux, unspecified|Vesicoureteral-reflux, unspecified +C0042580|T047|PT|N13.70|ICD10CM|Vesicoureteral-reflux, unspecified|Vesicoureteral-reflux, unspecified +C2902942|T047|AB|N13.71|ICD10CM|Vesicoureteral-reflux without reflux nephropathy|Vesicoureteral-reflux without reflux nephropathy +C2902942|T047|PT|N13.71|ICD10CM|Vesicoureteral-reflux without reflux nephropathy|Vesicoureteral-reflux without reflux nephropathy +C2902945|T047|AB|N13.72|ICD10CM|Vesicoureteral-reflux w reflux nephropathy w/o hydroureter|Vesicoureteral-reflux w reflux nephropathy w/o hydroureter +C2902945|T047|HT|N13.72|ICD10CM|Vesicoureteral-reflux with reflux nephropathy without hydroureter|Vesicoureteral-reflux with reflux nephropathy without hydroureter +C2902943|T047|AB|N13.721|ICD10CM|Vesicoureter-reflux w reflux neuropath w/o hydrourt, unil|Vesicoureter-reflux w reflux neuropath w/o hydrourt, unil +C2902943|T047|PT|N13.721|ICD10CM|Vesicoureteral-reflux with reflux nephropathy without hydroureter, unilateral|Vesicoureteral-reflux with reflux nephropathy without hydroureter, unilateral +C2902944|T047|AB|N13.722|ICD10CM|Vesicoureter-reflux w reflux neuropath w/o hydrourt, bi|Vesicoureter-reflux w reflux neuropath w/o hydrourt, bi +C2902944|T047|PT|N13.722|ICD10CM|Vesicoureteral-reflux with reflux nephropathy without hydroureter, bilateral|Vesicoureteral-reflux with reflux nephropathy without hydroureter, bilateral +C2902945|T047|AB|N13.729|ICD10CM|Vesicoureter-reflux w reflux nephropathy w/o hydrourt, unsp|Vesicoureter-reflux w reflux nephropathy w/o hydrourt, unsp +C2902945|T047|PT|N13.729|ICD10CM|Vesicoureteral-reflux with reflux nephropathy without hydroureter, unspecified|Vesicoureteral-reflux with reflux nephropathy without hydroureter, unspecified +C2902948|T047|AB|N13.73|ICD10CM|Vesicoureteral-reflux w reflux nephropathy with hydroureter|Vesicoureteral-reflux w reflux nephropathy with hydroureter +C2902948|T047|HT|N13.73|ICD10CM|Vesicoureteral-reflux with reflux nephropathy with hydroureter|Vesicoureteral-reflux with reflux nephropathy with hydroureter +C2902946|T047|AB|N13.731|ICD10CM|Vesicoureter-reflux w reflux neuropath w hydrourt, unil|Vesicoureter-reflux w reflux neuropath w hydrourt, unil +C2902946|T047|PT|N13.731|ICD10CM|Vesicoureteral-reflux with reflux nephropathy with hydroureter, unilateral|Vesicoureteral-reflux with reflux nephropathy with hydroureter, unilateral +C2902947|T047|AB|N13.732|ICD10CM|Vesicoureter-reflux w reflux neuropath w hydrourt, bilateral|Vesicoureter-reflux w reflux neuropath w hydrourt, bilateral +C2902947|T047|PT|N13.732|ICD10CM|Vesicoureteral-reflux with reflux nephropathy with hydroureter, bilateral|Vesicoureteral-reflux with reflux nephropathy with hydroureter, bilateral +C2902948|T047|AB|N13.739|ICD10CM|Vesicoureter-reflux w reflux nephropathy w hydroureter, unsp|Vesicoureter-reflux w reflux nephropathy w hydroureter, unsp +C2902948|T047|PT|N13.739|ICD10CM|Vesicoureteral-reflux with reflux nephropathy with hydroureter, unspecified|Vesicoureteral-reflux with reflux nephropathy with hydroureter, unspecified +C0477731|T047|PT|N13.8|ICD10CM|Other obstructive and reflux uropathy|Other obstructive and reflux uropathy +C0477731|T047|AB|N13.8|ICD10CM|Other obstructive and reflux uropathy|Other obstructive and reflux uropathy +C0477731|T047|PT|N13.8|ICD10|Other obstructive and reflux uropathy|Other obstructive and reflux uropathy +C2902949|T047|ET|N13.8|ICD10CM|Urinary tract obstruction due to specified cause|Urinary tract obstruction due to specified cause +C0477732|T047|PT|N13.9|ICD10|Obstructive and reflux uropathy, unspecified|Obstructive and reflux uropathy, unspecified +C0477732|T047|PT|N13.9|ICD10CM|Obstructive and reflux uropathy, unspecified|Obstructive and reflux uropathy, unspecified +C0477732|T047|AB|N13.9|ICD10CM|Obstructive and reflux uropathy, unspecified|Obstructive and reflux uropathy, unspecified +C0178879|T047|ET|N13.9|ICD10CM|Urinary tract obstruction NOS|Urinary tract obstruction NOS +C0451754|T047|AB|N14|ICD10CM|Drug- & heavy-metal-induced tubulo-interstitial & tublr cond|Drug- & heavy-metal-induced tubulo-interstitial & tublr cond +C0451754|T047|HT|N14|ICD10CM|Drug- and heavy-metal-induced tubulo-interstitial and tubular conditions|Drug- and heavy-metal-induced tubulo-interstitial and tubular conditions +C0451754|T047|HT|N14|ICD10|Drug- and heavy-metal-induced tubulo-interstitial and tubular conditions|Drug- and heavy-metal-induced tubulo-interstitial and tubular conditions +C0149938|T046|PT|N14.0|ICD10CM|Analgesic nephropathy|Analgesic nephropathy +C0149938|T046|AB|N14.0|ICD10CM|Analgesic nephropathy|Analgesic nephropathy +C0149938|T046|PT|N14.0|ICD10|Analgesic nephropathy|Analgesic nephropathy +C0451767|T046|AB|N14.1|ICD10CM|Nephropathy induced by oth drug/meds/biol subst|Nephropathy induced by oth drug/meds/biol subst +C0451767|T046|PT|N14.1|ICD10CM|Nephropathy induced by other drugs, medicaments and biological substances|Nephropathy induced by other drugs, medicaments and biological substances +C0451767|T046|PT|N14.1|ICD10|Nephropathy induced by other drugs, medicaments and biological substances|Nephropathy induced by other drugs, medicaments and biological substances +C0495053|T046|PT|N14.2|ICD10|Nephropathy induced by unspecified drug, medicament or biological substance|Nephropathy induced by unspecified drug, medicament or biological substance +C0495053|T046|PT|N14.2|ICD10CM|Nephropathy induced by unspecified drug, medicament or biological substance|Nephropathy induced by unspecified drug, medicament or biological substance +C0495053|T046|AB|N14.2|ICD10CM|Neuropath induced by unsp drug, medicament or biolg sub|Neuropath induced by unsp drug, medicament or biolg sub +C0451769|T047|PT|N14.3|ICD10|Nephropathy induced by heavy metals|Nephropathy induced by heavy metals +C0451769|T047|PT|N14.3|ICD10CM|Nephropathy induced by heavy metals|Nephropathy induced by heavy metals +C0451769|T047|AB|N14.3|ICD10CM|Nephropathy induced by heavy metals|Nephropathy induced by heavy metals +C0869068|T047|PT|N14.4|ICD10|Toxic nephropathy, not elsewhere classified|Toxic nephropathy, not elsewhere classified +C0869068|T047|PT|N14.4|ICD10CM|Toxic nephropathy, not elsewhere classified|Toxic nephropathy, not elsewhere classified +C0869068|T047|AB|N14.4|ICD10CM|Toxic nephropathy, not elsewhere classified|Toxic nephropathy, not elsewhere classified +C0495054|T047|HT|N15|ICD10|Other renal tubulo-interstitial diseases|Other renal tubulo-interstitial diseases +C0495054|T047|AB|N15|ICD10CM|Other renal tubulo-interstitial diseases|Other renal tubulo-interstitial diseases +C0495054|T047|HT|N15|ICD10CM|Other renal tubulo-interstitial diseases|Other renal tubulo-interstitial diseases +C0004698|T047|ET|N15.0|ICD10CM|Balkan endemic nephropathy|Balkan endemic nephropathy +C0004698|T047|PT|N15.0|ICD10CM|Balkan nephropathy|Balkan nephropathy +C0004698|T047|AB|N15.0|ICD10CM|Balkan nephropathy|Balkan nephropathy +C0004698|T047|PT|N15.0|ICD10|Balkan nephropathy|Balkan nephropathy +C0156253|T047|PT|N15.1|ICD10|Renal and perinephric abscess|Renal and perinephric abscess +C0156253|T047|PT|N15.1|ICD10CM|Renal and perinephric abscess|Renal and perinephric abscess +C0156253|T047|AB|N15.1|ICD10CM|Renal and perinephric abscess|Renal and perinephric abscess +C0477735|T047|PT|N15.8|ICD10|Other specified renal tubulo-interstitial diseases|Other specified renal tubulo-interstitial diseases +C0477735|T047|PT|N15.8|ICD10CM|Other specified renal tubulo-interstitial diseases|Other specified renal tubulo-interstitial diseases +C0477735|T047|AB|N15.8|ICD10CM|Other specified renal tubulo-interstitial diseases|Other specified renal tubulo-interstitial diseases +C0021313|T047|ET|N15.9|ICD10CM|Infection of kidney NOS|Infection of kidney NOS +C0041349|T047|PT|N15.9|ICD10CM|Renal tubulo-interstitial disease, unspecified|Renal tubulo-interstitial disease, unspecified +C0041349|T047|AB|N15.9|ICD10CM|Renal tubulo-interstitial disease, unspecified|Renal tubulo-interstitial disease, unspecified +C0041349|T047|PT|N15.9|ICD10|Renal tubulo-interstitial disease, unspecified|Renal tubulo-interstitial disease, unspecified +C0034186|T047|ET|N16|ICD10CM|Pyelonephritis|Pyelonephritis +C0451749|T047|AB|N16|ICD10CM|Renal tubulo-interstitial disord in diseases classd elswhr|Renal tubulo-interstitial disord in diseases classd elswhr +C0451749|T047|PT|N16|ICD10CM|Renal tubulo-interstitial disorders in diseases classified elsewhere|Renal tubulo-interstitial disorders in diseases classified elsewhere +C0451749|T047|HT|N16|ICD10|Renal tubulo-interstitial disorders in diseases classified elsewhere|Renal tubulo-interstitial disorders in diseases classified elsewhere +C0041349|T047|ET|N16|ICD10CM|Tubulo-interstitial nephritis|Tubulo-interstitial nephritis +C0477736|T047|PT|N16.0|ICD10|Renal tubulo-interstitial disorders in infectious and parasitic diseases classified elsewhere|Renal tubulo-interstitial disorders in infectious and parasitic diseases classified elsewhere +C0451750|T047|PT|N16.1|ICD10|Renal tubulo-interstitial disorders in neoplastic diseases|Renal tubulo-interstitial disorders in neoplastic diseases +C0451751|T047|PT|N16.2|ICD10|Renal tubulo-interstitial disorders in blood diseases and disorders involving the immune mechanism|Renal tubulo-interstitial disorders in blood diseases and disorders involving the immune mechanism +C0451752|T047|PT|N16.3|ICD10|Renal tubulo-interstitial disorders in metabolic diseases|Renal tubulo-interstitial disorders in metabolic diseases +C0451753|T047|PT|N16.4|ICD10|Renal tubulo-interstitial disorders in systemic connective tissue disorders|Renal tubulo-interstitial disorders in systemic connective tissue disorders +C0477741|T047|PT|N16.5|ICD10|Renal tubulo-interstitial disorders in transplant rejection|Renal tubulo-interstitial disorders in transplant rejection +C0477742|T047|PT|N16.8|ICD10|Renal tubulo-interstitial disorders in other diseases classified elsewhere|Renal tubulo-interstitial disorders in other diseases classified elsewhere +C0022660|T047|HT|N17|ICD10CM|Acute kidney failure|Acute kidney failure +C0022660|T047|AB|N17|ICD10CM|Acute kidney failure|Acute kidney failure +C0022660|T047|HT|N17|ICD10|Acute renal failure|Acute renal failure +C2902950|T047|HT|N17-N19|ICD10CM|Acute kidney failure and chronic kidney disease (N17-N19)|Acute kidney failure and chronic kidney disease (N17-N19) +C0035078|T047|HT|N17-N19.9|ICD10|Renal failure|Renal failure +C2902951|T047|AB|N17.0|ICD10CM|Acute kidney failure with tubular necrosis|Acute kidney failure with tubular necrosis +C2902951|T047|PT|N17.0|ICD10CM|Acute kidney failure with tubular necrosis|Acute kidney failure with tubular necrosis +C0022672|T047|PT|N17.0|ICD10|Acute renal failure with tubular necrosis|Acute renal failure with tubular necrosis +C0022672|T047|ET|N17.0|ICD10CM|Acute tubular necrosis|Acute tubular necrosis +C1720775|T047|ET|N17.0|ICD10CM|Renal tubular necrosis|Renal tubular necrosis +C1720775|T047|ET|N17.0|ICD10CM|Tubular necrosis NOS|Tubular necrosis NOS +C0403452|T047|ET|N17.1|ICD10CM|Acute cortical necrosis|Acute cortical necrosis +C2902952|T047|AB|N17.1|ICD10CM|Acute kidney failure with acute cortical necrosis|Acute kidney failure with acute cortical necrosis +C2902952|T047|PT|N17.1|ICD10CM|Acute kidney failure with acute cortical necrosis|Acute kidney failure with acute cortical necrosis +C0495057|T047|PT|N17.1|ICD10|Acute renal failure with acute cortical necrosis|Acute renal failure with acute cortical necrosis +C0022656|T047|ET|N17.1|ICD10CM|Cortical necrosis NOS|Cortical necrosis NOS +C0022656|T047|ET|N17.1|ICD10CM|Renal cortical necrosis|Renal cortical necrosis +C0574786|T047|AB|N17.2|ICD10CM|Acute kidney failure with medullary necrosis|Acute kidney failure with medullary necrosis +C0574786|T047|PT|N17.2|ICD10CM|Acute kidney failure with medullary necrosis|Acute kidney failure with medullary necrosis +C2902953|T047|ET|N17.2|ICD10CM|Acute medullary [papillary] necrosis|Acute medullary [papillary] necrosis +C0574786|T047|PT|N17.2|ICD10|Acute renal failure with medullary necrosis|Acute renal failure with medullary necrosis +C2902954|T047|ET|N17.2|ICD10CM|Medullary [papillary] necrosis NOS|Medullary [papillary] necrosis NOS +C2902954|T047|ET|N17.2|ICD10CM|Renal medullary [papillary] necrosis|Renal medullary [papillary] necrosis +C0477745|T047|AB|N17.8|ICD10CM|Other acute kidney failure|Other acute kidney failure +C0477745|T047|PT|N17.8|ICD10CM|Other acute kidney failure|Other acute kidney failure +C0477745|T047|PT|N17.8|ICD10|Other acute renal failure|Other acute renal failure +C0022660|T047|AB|N17.9|ICD10CM|Acute kidney failure, unspecified|Acute kidney failure, unspecified +C0022660|T047|PT|N17.9|ICD10CM|Acute kidney failure, unspecified|Acute kidney failure, unspecified +C2349570|T037|ET|N17.9|ICD10CM|Acute kidney injury (nontraumatic)|Acute kidney injury (nontraumatic) +C0022660|T047|PT|N17.9|ICD10|Acute renal failure, unspecified|Acute renal failure, unspecified +C1561643|T047|AB|N18|ICD10CM|Chronic kidney disease (CKD)|Chronic kidney disease (CKD) +C1561643|T047|HT|N18|ICD10CM|Chronic kidney disease (CKD)|Chronic kidney disease (CKD) +C0022661|T047|HT|N18|ICD10|Chronic renal failure|Chronic renal failure +C0022661|T047|PT|N18.0|ICD10|End-stage renal disease|End-stage renal disease +C2316401|T047|AB|N18.1|ICD10CM|Chronic kidney disease, stage 1|Chronic kidney disease, stage 1 +C2316401|T047|PT|N18.1|ICD10CM|Chronic kidney disease, stage 1|Chronic kidney disease, stage 1 +C1561639|T047|AB|N18.2|ICD10CM|Chronic kidney disease, stage 2 (mild)|Chronic kidney disease, stage 2 (mild) +C1561639|T047|PT|N18.2|ICD10CM|Chronic kidney disease, stage 2 (mild)|Chronic kidney disease, stage 2 (mild) +C1561640|T047|AB|N18.3|ICD10CM|Chronic kidney disease, stage 3 (moderate)|Chronic kidney disease, stage 3 (moderate) +C1561640|T047|PT|N18.3|ICD10CM|Chronic kidney disease, stage 3 (moderate)|Chronic kidney disease, stage 3 (moderate) +C1561641|T047|AB|N18.4|ICD10CM|Chronic kidney disease, stage 4 (severe)|Chronic kidney disease, stage 4 (severe) +C1561641|T047|PT|N18.4|ICD10CM|Chronic kidney disease, stage 4 (severe)|Chronic kidney disease, stage 4 (severe) +C2316810|T047|PT|N18.5|ICD10CM|Chronic kidney disease, stage 5|Chronic kidney disease, stage 5 +C2316810|T047|AB|N18.5|ICD10CM|Chronic kidney disease, stage 5|Chronic kidney disease, stage 5 +C1719537|T047|ET|N18.6|ICD10CM|Chronic kidney disease requiring chronic dialysis|Chronic kidney disease requiring chronic dialysis +C2316810|T047|PT|N18.6|ICD10CM|End stage renal disease|End stage renal disease +C2316810|T047|AB|N18.6|ICD10CM|End stage renal disease|End stage renal disease +C0477746|T047|PT|N18.8|ICD10|Other chronic renal failure|Other chronic renal failure +C1561643|T047|AB|N18.9|ICD10CM|Chronic kidney disease, unspecified|Chronic kidney disease, unspecified +C1561643|T047|PT|N18.9|ICD10CM|Chronic kidney disease, unspecified|Chronic kidney disease, unspecified +C0022661|T047|ET|N18.9|ICD10CM|Chronic renal disease|Chronic renal disease +C0022661|T047|ET|N18.9|ICD10CM|Chronic renal failure NOS|Chronic renal failure NOS +C0022661|T047|PT|N18.9|ICD10|Chronic renal failure, unspecified|Chronic renal failure, unspecified +C0403447|T047|ET|N18.9|ICD10CM|Chronic renal insufficiency|Chronic renal insufficiency +C1579029|T047|ET|N18.9|ICD10CM|Chronic uremia NOS|Chronic uremia NOS +C1398790|T047|ET|N18.9|ICD10CM|Diffuse sclerosing glomerulonephritis NOS|Diffuse sclerosing glomerulonephritis NOS +C0035078|T047|AB|N19|ICD10CM|Unspecified kidney failure|Unspecified kidney failure +C0035078|T047|PT|N19|ICD10CM|Unspecified kidney failure|Unspecified kidney failure +C0035078|T047|PT|N19|ICD10|Unspecified renal failure|Unspecified renal failure +C0041948|T047|ET|N19|ICD10CM|Uremia NOS|Uremia NOS +C0268722|T047|ET|N20|ICD10CM|Calculous pyelonephritis|Calculous pyelonephritis +C0156257|T047|HT|N20|ICD10CM|Calculus of kidney and ureter|Calculus of kidney and ureter +C0156257|T047|AB|N20|ICD10CM|Calculus of kidney and ureter|Calculus of kidney and ureter +C0156257|T047|HT|N20|ICD10|Calculus of kidney and ureter|Calculus of kidney and ureter +C0451641|T047|HT|N20-N23|ICD10CM|Urolithiasis (N20-N23)|Urolithiasis (N20-N23) +C0451641|T047|HT|N20-N23.9|ICD10|Urolithiasis|Urolithiasis +C0022650|T047|PT|N20.0|ICD10CM|Calculus of kidney|Calculus of kidney +C0022650|T047|AB|N20.0|ICD10CM|Calculus of kidney|Calculus of kidney +C0022650|T047|PT|N20.0|ICD10|Calculus of kidney|Calculus of kidney +C0392525|T047|ET|N20.0|ICD10CM|Nephrolithiasis NOS|Nephrolithiasis NOS +C0022650|T047|ET|N20.0|ICD10CM|Renal calculus|Renal calculus +C0022650|T047|ET|N20.0|ICD10CM|Renal stone|Renal stone +C0333014|T047|ET|N20.0|ICD10CM|Staghorn calculus|Staghorn calculus +C0022650|T047|ET|N20.0|ICD10CM|Stone in kidney|Stone in kidney +C0041952|T047|PT|N20.1|ICD10CM|Calculus of ureter|Calculus of ureter +C0041952|T047|AB|N20.1|ICD10CM|Calculus of ureter|Calculus of ureter +C0041952|T047|PT|N20.1|ICD10|Calculus of ureter|Calculus of ureter +C0041952|T047|ET|N20.1|ICD10CM|Ureteric stone|Ureteric stone +C0156257|T047|PT|N20.2|ICD10CM|Calculus of kidney with calculus of ureter|Calculus of kidney with calculus of ureter +C0156257|T047|AB|N20.2|ICD10CM|Calculus of kidney with calculus of ureter|Calculus of kidney with calculus of ureter +C0156257|T047|PT|N20.2|ICD10|Calculus of kidney with calculus of ureter|Calculus of kidney with calculus of ureter +C4759702|T047|PT|N20.9|ICD10|Urinary calculus, unspecified|Urinary calculus, unspecified +C4759702|T047|PT|N20.9|ICD10CM|Urinary calculus, unspecified|Urinary calculus, unspecified +C4759702|T047|AB|N20.9|ICD10CM|Urinary calculus, unspecified|Urinary calculus, unspecified +C0156264|T047|HT|N21|ICD10|Calculus of lower urinary tract|Calculus of lower urinary tract +C0156264|T047|HT|N21|ICD10CM|Calculus of lower urinary tract|Calculus of lower urinary tract +C0156264|T047|AB|N21|ICD10CM|Calculus of lower urinary tract|Calculus of lower urinary tract +C4290236|T047|ET|N21|ICD10CM|calculus of lower urinary tract with cystitis and urethritis|calculus of lower urinary tract with cystitis and urethritis +C0005683|T047|PT|N21.0|ICD10|Calculus in bladder|Calculus in bladder +C0005683|T047|PT|N21.0|ICD10CM|Calculus in bladder|Calculus in bladder +C0005683|T047|AB|N21.0|ICD10CM|Calculus in bladder|Calculus in bladder +C0156265|T047|ET|N21.0|ICD10CM|Calculus in diverticulum of bladder|Calculus in diverticulum of bladder +C0005683|T047|ET|N21.0|ICD10CM|Urinary bladder stone|Urinary bladder stone +C0162301|T047|PT|N21.1|ICD10CM|Calculus in urethra|Calculus in urethra +C0162301|T047|AB|N21.1|ICD10CM|Calculus in urethra|Calculus in urethra +C0162301|T047|PT|N21.1|ICD10|Calculus in urethra|Calculus in urethra +C0156266|T047|PT|N21.8|ICD10|Other lower urinary tract calculus|Other lower urinary tract calculus +C0156266|T047|PT|N21.8|ICD10CM|Other lower urinary tract calculus|Other lower urinary tract calculus +C0156266|T047|AB|N21.8|ICD10CM|Other lower urinary tract calculus|Other lower urinary tract calculus +C0156264|T047|PT|N21.9|ICD10CM|Calculus of lower urinary tract, unspecified|Calculus of lower urinary tract, unspecified +C0156264|T047|AB|N21.9|ICD10CM|Calculus of lower urinary tract, unspecified|Calculus of lower urinary tract, unspecified +C0156264|T047|PT|N21.9|ICD10|Calculus of lower urinary tract, unspecified|Calculus of lower urinary tract, unspecified +C0694526|T047|HT|N22|ICD10|Calculus of urinary tract in diseases classified elsewhere|Calculus of urinary tract in diseases classified elsewhere +C0694526|T047|PT|N22|ICD10CM|Calculus of urinary tract in diseases classified elsewhere|Calculus of urinary tract in diseases classified elsewhere +C0694526|T047|AB|N22|ICD10CM|Calculus of urinary tract in diseases classified elsewhere|Calculus of urinary tract in diseases classified elsewhere +C0477747|T047|PT|N22.8|ICD10|Calculus of urinary tract in other diseases classified elsewhere|Calculus of urinary tract in other diseases classified elsewhere +C0152169|T184|PT|N23|ICD10|Unspecified renal colic|Unspecified renal colic +C0152169|T184|PT|N23|ICD10CM|Unspecified renal colic|Unspecified renal colic +C0152169|T184|AB|N23|ICD10CM|Unspecified renal colic|Unspecified renal colic +C0151747|T047|AB|N25|ICD10CM|Disorders resulting from impaired renal tubular function|Disorders resulting from impaired renal tubular function +C0151747|T047|HT|N25|ICD10CM|Disorders resulting from impaired renal tubular function|Disorders resulting from impaired renal tubular function +C0151747|T047|HT|N25|ICD10|Disorders resulting from impaired renal tubular function|Disorders resulting from impaired renal tubular function +C0156258|T047|HT|N25-N29|ICD10CM|Other disorders of kidney and ureter (N25-N29)|Other disorders of kidney and ureter (N25-N29) +C0156258|T047|HT|N25-N29.9|ICD10|Other disorders of kidney and ureter|Other disorders of kidney and ureter +C0543799|T047|ET|N25.0|ICD10CM|Azotemic osteodystrophy|Azotemic osteodystrophy +C0341679|T047|ET|N25.0|ICD10CM|Phosphate-losing tubular disorders|Phosphate-losing tubular disorders +C0035086|T047|PT|N25.0|ICD10|Renal osteodystrophy|Renal osteodystrophy +C0035086|T047|PT|N25.0|ICD10CM|Renal osteodystrophy|Renal osteodystrophy +C0035086|T047|AB|N25.0|ICD10CM|Renal osteodystrophy|Renal osteodystrophy +C1527410|T047|ET|N25.0|ICD10CM|Renal rickets|Renal rickets +C1398538|T047|ET|N25.0|ICD10CM|Renal short stature|Renal short stature +C0162283|T047|PT|N25.1|ICD10CM|Nephrogenic diabetes insipidus|Nephrogenic diabetes insipidus +C0162283|T047|AB|N25.1|ICD10CM|Nephrogenic diabetes insipidus|Nephrogenic diabetes insipidus +C0162283|T047|PT|N25.1|ICD10|Nephrogenic diabetes insipidus|Nephrogenic diabetes insipidus +C0477748|T047|AB|N25.8|ICD10CM|Oth disorders resulting from impaired renal tubular function|Oth disorders resulting from impaired renal tubular function +C0477748|T047|HT|N25.8|ICD10CM|Other disorders resulting from impaired renal tubular function|Other disorders resulting from impaired renal tubular function +C0477748|T047|PT|N25.8|ICD10|Other disorders resulting from impaired renal tubular function|Other disorders resulting from impaired renal tubular function +C0271847|T047|PT|N25.81|ICD10CM|Secondary hyperparathyroidism of renal origin|Secondary hyperparathyroidism of renal origin +C0271847|T047|AB|N25.81|ICD10CM|Secondary hyperparathyroidism of renal origin|Secondary hyperparathyroidism of renal origin +C0221042|T047|ET|N25.89|ICD10CM|Hypokalemic nephropathy|Hypokalemic nephropathy +C0475733|T047|ET|N25.89|ICD10CM|Lightwood-Albright syndrome|Lightwood-Albright syndrome +C0477748|T047|AB|N25.89|ICD10CM|Oth disorders resulting from impaired renal tubular function|Oth disorders resulting from impaired renal tubular function +C0477748|T047|PT|N25.89|ICD10CM|Other disorders resulting from impaired renal tubular function|Other disorders resulting from impaired renal tubular function +C0001126|T047|ET|N25.89|ICD10CM|Renal tubular acidosis NOS|Renal tubular acidosis NOS +C0151747|T047|PT|N25.9|ICD10CM|Disorder resulting from impaired renal tubular function, unspecified|Disorder resulting from impaired renal tubular function, unspecified +C0151747|T047|PT|N25.9|ICD10|Disorder resulting from impaired renal tubular function, unspecified|Disorder resulting from impaired renal tubular function, unspecified +C0151747|T047|AB|N25.9|ICD10CM|Disorder rslt from impaired renal tubular function, unsp|Disorder rslt from impaired renal tubular function, unsp +C3495403|T047|PT|N26|ICD10|Unspecified contracted kidney|Unspecified contracted kidney +C3495403|T047|HT|N26|ICD10CM|Unspecified contracted kidney|Unspecified contracted kidney +C3495403|T047|AB|N26|ICD10CM|Unspecified contracted kidney|Unspecified contracted kidney +C2902960|T047|AB|N26.1|ICD10CM|Atrophy of kidney (terminal)|Atrophy of kidney (terminal) +C2902960|T047|PT|N26.1|ICD10CM|Atrophy of kidney (terminal)|Atrophy of kidney (terminal) +C2902961|T047|PT|N26.2|ICD10CM|Page kidney|Page kidney +C2902961|T047|AB|N26.2|ICD10CM|Page kidney|Page kidney +C0027719|T047|PT|N26.9|ICD10CM|Renal sclerosis, unspecified|Renal sclerosis, unspecified +C0027719|T047|AB|N26.9|ICD10CM|Renal sclerosis, unspecified|Renal sclerosis, unspecified +C2673888|T033|ET|N27|ICD10CM|oligonephronia|oligonephronia +C0156247|T033|HT|N27|ICD10CM|Small kidney of unknown cause|Small kidney of unknown cause +C0156247|T033|AB|N27|ICD10CM|Small kidney of unknown cause|Small kidney of unknown cause +C0156247|T033|HT|N27|ICD10|Small kidney of unknown cause|Small kidney of unknown cause +C0156245|T019|PT|N27.0|ICD10|Small kidney, unilateral|Small kidney, unilateral +C0156245|T019|PT|N27.0|ICD10CM|Small kidney, unilateral|Small kidney, unilateral +C0156245|T019|AB|N27.0|ICD10CM|Small kidney, unilateral|Small kidney, unilateral +C0156246|T190|PT|N27.1|ICD10CM|Small kidney, bilateral|Small kidney, bilateral +C0156246|T190|AB|N27.1|ICD10CM|Small kidney, bilateral|Small kidney, bilateral +C0156246|T190|PT|N27.1|ICD10|Small kidney, bilateral|Small kidney, bilateral +C0156247|T033|PT|N27.9|ICD10|Small kidney, unspecified|Small kidney, unspecified +C0156247|T033|PT|N27.9|ICD10CM|Small kidney, unspecified|Small kidney, unspecified +C0156247|T033|AB|N27.9|ICD10CM|Small kidney, unspecified|Small kidney, unspecified +C0495063|T047|AB|N28|ICD10CM|Oth disorders of kidney and ureter, not elsewhere classified|Oth disorders of kidney and ureter, not elsewhere classified +C0495063|T047|HT|N28|ICD10CM|Other disorders of kidney and ureter, not elsewhere classified|Other disorders of kidney and ureter, not elsewhere classified +C0495063|T047|HT|N28|ICD10|Other disorders of kidney and ureter, not elsewhere classified|Other disorders of kidney and ureter, not elsewhere classified +C0495064|T047|PT|N28.0|ICD10|Ischaemia and infarction of kidney|Ischaemia and infarction of kidney +C0495064|T047|PT|N28.0|ICD10AE|Ischemia and infarction of kidney|Ischemia and infarction of kidney +C0495064|T047|PT|N28.0|ICD10CM|Ischemia and infarction of kidney|Ischemia and infarction of kidney +C0495064|T047|AB|N28.0|ICD10CM|Ischemia and infarction of kidney|Ischemia and infarction of kidney +C0341708|T046|ET|N28.0|ICD10CM|Renal artery embolism|Renal artery embolism +C0035066|T047|ET|N28.0|ICD10CM|Renal artery obstruction|Renal artery obstruction +C0553718|T047|ET|N28.0|ICD10CM|Renal artery occlusion|Renal artery occlusion +C0340608|T047|ET|N28.0|ICD10CM|Renal artery thrombosis|Renal artery thrombosis +C0035085|T047|ET|N28.0|ICD10CM|Renal infarct|Renal infarct +C2902963|T190|ET|N28.1|ICD10CM|Cyst (multiple) (solitary) of kidney (acquired)|Cyst (multiple) (solitary) of kidney (acquired) +C0268799|T047|PT|N28.1|ICD10CM|Cyst of kidney, acquired|Cyst of kidney, acquired +C0268799|T047|AB|N28.1|ICD10CM|Cyst of kidney, acquired|Cyst of kidney, acquired +C0268799|T047|PT|N28.1|ICD10|Cyst of kidney, acquired|Cyst of kidney, acquired +C0029781|T047|PT|N28.8|ICD10|Other specified disorders of kidney and ureter|Other specified disorders of kidney and ureter +C0029781|T047|HT|N28.8|ICD10CM|Other specified disorders of kidney and ureter|Other specified disorders of kidney and ureter +C0029781|T047|AB|N28.8|ICD10CM|Other specified disorders of kidney and ureter|Other specified disorders of kidney and ureter +C0156259|T047|PT|N28.81|ICD10CM|Hypertrophy of kidney|Hypertrophy of kidney +C0156259|T047|AB|N28.81|ICD10CM|Hypertrophy of kidney|Hypertrophy of kidney +C0521620|T190|PT|N28.82|ICD10CM|Megaloureter|Megaloureter +C0521620|T190|AB|N28.82|ICD10CM|Megaloureter|Megaloureter +C1384594|T047|PT|N28.83|ICD10CM|Nephroptosis|Nephroptosis +C1384594|T047|AB|N28.83|ICD10CM|Nephroptosis|Nephroptosis +C0259778|T047|PT|N28.84|ICD10CM|Pyelitis cystica|Pyelitis cystica +C0259778|T047|AB|N28.84|ICD10CM|Pyelitis cystica|Pyelitis cystica +C0156254|T047|PT|N28.85|ICD10CM|Pyeloureteritis cystica|Pyeloureteritis cystica +C0156254|T047|AB|N28.85|ICD10CM|Pyeloureteritis cystica|Pyeloureteritis cystica +C0259777|T047|PT|N28.86|ICD10CM|Ureteritis cystica|Ureteritis cystica +C0259777|T047|AB|N28.86|ICD10CM|Ureteritis cystica|Ureteritis cystica +C0029781|T047|PT|N28.89|ICD10CM|Other specified disorders of kidney and ureter|Other specified disorders of kidney and ureter +C0029781|T047|AB|N28.89|ICD10CM|Other specified disorders of kidney and ureter|Other specified disorders of kidney and ureter +C0268701|T047|PT|N28.9|ICD10CM|Disorder of kidney and ureter, unspecified|Disorder of kidney and ureter, unspecified +C0268701|T047|AB|N28.9|ICD10CM|Disorder of kidney and ureter, unspecified|Disorder of kidney and ureter, unspecified +C0268701|T047|PT|N28.9|ICD10|Disorder of kidney and ureter, unspecified|Disorder of kidney and ureter, unspecified +C0022658|T047|ET|N28.9|ICD10CM|Nephropathy NOS|Nephropathy NOS +C1408247|T047|ET|N28.9|ICD10CM|Renal disease (acute) NOS|Renal disease (acute) NOS +C1565662|T047|ET|N28.9|ICD10CM|Renal insufficiency (acute)|Renal insufficiency (acute) +C0694527|T047|AB|N29|ICD10CM|Oth disorders of kidney and ureter in diseases classd elswhr|Oth disorders of kidney and ureter in diseases classd elswhr +C0694527|T047|PT|N29|ICD10CM|Other disorders of kidney and ureter in diseases classified elsewhere|Other disorders of kidney and ureter in diseases classified elsewhere +C0694527|T047|HT|N29|ICD10|Other disorders of kidney and ureter in diseases classified elsewhere|Other disorders of kidney and ureter in diseases classified elsewhere +C0452161|T047|PT|N29.0|ICD10|Late syphilis of kidney|Late syphilis of kidney +C0477749|T047|PT|N29.1|ICD10|Other disorders of kidney and ureter in infectious and parasitic diseases classified elsewhere|Other disorders of kidney and ureter in infectious and parasitic diseases classified elsewhere +C0477750|T047|PT|N29.8|ICD10|Other disorders of kidney and ureter in other diseases classified elsewhere|Other disorders of kidney and ureter in other diseases classified elsewhere +C0010692|T047|HT|N30|ICD10CM|Cystitis|Cystitis +C0010692|T047|AB|N30|ICD10CM|Cystitis|Cystitis +C0010692|T047|HT|N30|ICD10|Cystitis|Cystitis +C0178288|T047|HT|N30-N39|ICD10CM|Other diseases of the urinary system (N30-N39)|Other diseases of the urinary system (N30-N39) +C0178288|T047|HT|N30-N39.9|ICD10|Other diseases of urinary system|Other diseases of urinary system +C0149523|T047|PT|N30.0|ICD10|Acute cystitis|Acute cystitis +C0149523|T047|HT|N30.0|ICD10CM|Acute cystitis|Acute cystitis +C0149523|T047|AB|N30.0|ICD10CM|Acute cystitis|Acute cystitis +C2902964|T047|PT|N30.00|ICD10CM|Acute cystitis without hematuria|Acute cystitis without hematuria +C2902964|T047|AB|N30.00|ICD10CM|Acute cystitis without hematuria|Acute cystitis without hematuria +C2902965|T047|AB|N30.01|ICD10CM|Acute cystitis with hematuria|Acute cystitis with hematuria +C2902965|T047|PT|N30.01|ICD10CM|Acute cystitis with hematuria|Acute cystitis with hematuria +C0600040|T047|PT|N30.1|ICD10|Interstitial cystitis (chronic)|Interstitial cystitis (chronic) +C0600040|T047|HT|N30.1|ICD10CM|Interstitial cystitis (chronic)|Interstitial cystitis (chronic) +C0600040|T047|AB|N30.1|ICD10CM|Interstitial cystitis (chronic)|Interstitial cystitis (chronic) +C2902966|T047|AB|N30.10|ICD10CM|Interstitial cystitis (chronic) without hematuria|Interstitial cystitis (chronic) without hematuria +C2902966|T047|PT|N30.10|ICD10CM|Interstitial cystitis (chronic) without hematuria|Interstitial cystitis (chronic) without hematuria +C2902967|T047|AB|N30.11|ICD10CM|Interstitial cystitis (chronic) with hematuria|Interstitial cystitis (chronic) with hematuria +C2902967|T047|PT|N30.11|ICD10CM|Interstitial cystitis (chronic) with hematuria|Interstitial cystitis (chronic) with hematuria +C0156268|T047|HT|N30.2|ICD10CM|Other chronic cystitis|Other chronic cystitis +C0156268|T047|AB|N30.2|ICD10CM|Other chronic cystitis|Other chronic cystitis +C0156268|T047|PT|N30.2|ICD10|Other chronic cystitis|Other chronic cystitis +C2902968|T047|AB|N30.20|ICD10CM|Other chronic cystitis without hematuria|Other chronic cystitis without hematuria +C2902968|T047|PT|N30.20|ICD10CM|Other chronic cystitis without hematuria|Other chronic cystitis without hematuria +C2902969|T047|AB|N30.21|ICD10CM|Other chronic cystitis with hematuria|Other chronic cystitis with hematuria +C2902969|T047|PT|N30.21|ICD10CM|Other chronic cystitis with hematuria|Other chronic cystitis with hematuria +C1261278|T047|PT|N30.3|ICD10|Trigonitis|Trigonitis +C1261278|T047|HT|N30.3|ICD10CM|Trigonitis|Trigonitis +C1261278|T047|AB|N30.3|ICD10CM|Trigonitis|Trigonitis +C0268830|T047|ET|N30.3|ICD10CM|Urethrotrigonitis|Urethrotrigonitis +C2902970|T047|PT|N30.30|ICD10CM|Trigonitis without hematuria|Trigonitis without hematuria +C2902970|T047|AB|N30.30|ICD10CM|Trigonitis without hematuria|Trigonitis without hematuria +C2902971|T047|PT|N30.31|ICD10CM|Trigonitis with hematuria|Trigonitis with hematuria +C2902971|T047|AB|N30.31|ICD10CM|Trigonitis with hematuria|Trigonitis with hematuria +C0156270|T047|HT|N30.4|ICD10CM|Irradiation cystitis|Irradiation cystitis +C0156270|T047|AB|N30.4|ICD10CM|Irradiation cystitis|Irradiation cystitis +C0156270|T047|PT|N30.4|ICD10|Irradiation cystitis|Irradiation cystitis +C2902972|T047|PT|N30.40|ICD10CM|Irradiation cystitis without hematuria|Irradiation cystitis without hematuria +C2902972|T047|AB|N30.40|ICD10CM|Irradiation cystitis without hematuria|Irradiation cystitis without hematuria +C2902973|T047|AB|N30.41|ICD10CM|Irradiation cystitis with hematuria|Irradiation cystitis with hematuria +C2902973|T047|PT|N30.41|ICD10CM|Irradiation cystitis with hematuria|Irradiation cystitis with hematuria +C3714511|T047|ET|N30.8|ICD10CM|Abscess of bladder|Abscess of bladder +C0477751|T047|PT|N30.8|ICD10|Other cystitis|Other cystitis +C0477751|T047|HT|N30.8|ICD10CM|Other cystitis|Other cystitis +C0477751|T047|AB|N30.8|ICD10CM|Other cystitis|Other cystitis +C2902974|T047|AB|N30.80|ICD10CM|Other cystitis without hematuria|Other cystitis without hematuria +C2902974|T047|PT|N30.80|ICD10CM|Other cystitis without hematuria|Other cystitis without hematuria +C2902975|T047|AB|N30.81|ICD10CM|Other cystitis with hematuria|Other cystitis with hematuria +C2902975|T047|PT|N30.81|ICD10CM|Other cystitis with hematuria|Other cystitis with hematuria +C0010692|T047|PT|N30.9|ICD10|Cystitis, unspecified|Cystitis, unspecified +C0010692|T047|HT|N30.9|ICD10CM|Cystitis, unspecified|Cystitis, unspecified +C0010692|T047|AB|N30.9|ICD10CM|Cystitis, unspecified|Cystitis, unspecified +C2902976|T047|AB|N30.90|ICD10CM|Cystitis, unspecified without hematuria|Cystitis, unspecified without hematuria +C2902976|T047|PT|N30.90|ICD10CM|Cystitis, unspecified without hematuria|Cystitis, unspecified without hematuria +C2902977|T047|AB|N30.91|ICD10CM|Cystitis, unspecified with hematuria|Cystitis, unspecified with hematuria +C2902977|T047|PT|N30.91|ICD10CM|Cystitis, unspecified with hematuria|Cystitis, unspecified with hematuria +C0495065|T047|AB|N31|ICD10CM|Neuromuscular dysfunction of bladder, NEC|Neuromuscular dysfunction of bladder, NEC +C0495065|T047|HT|N31|ICD10CM|Neuromuscular dysfunction of bladder, not elsewhere classified|Neuromuscular dysfunction of bladder, not elsewhere classified +C0495065|T047|HT|N31|ICD10|Neuromuscular dysfunction of bladder, not elsewhere classified|Neuromuscular dysfunction of bladder, not elsewhere classified +C0869070|T047|PT|N31.0|ICD10|Uninhibited neuropathic bladder, not elsewhere classified|Uninhibited neuropathic bladder, not elsewhere classified +C0869070|T047|PT|N31.0|ICD10CM|Uninhibited neuropathic bladder, not elsewhere classified|Uninhibited neuropathic bladder, not elsewhere classified +C0869070|T047|AB|N31.0|ICD10CM|Uninhibited neuropathic bladder, not elsewhere classified|Uninhibited neuropathic bladder, not elsewhere classified +C0869071|T047|PT|N31.1|ICD10CM|Reflex neuropathic bladder, not elsewhere classified|Reflex neuropathic bladder, not elsewhere classified +C0869071|T047|AB|N31.1|ICD10CM|Reflex neuropathic bladder, not elsewhere classified|Reflex neuropathic bladder, not elsewhere classified +C0869071|T047|PT|N31.1|ICD10|Reflex neuropathic bladder, not elsewhere classified|Reflex neuropathic bladder, not elsewhere classified +C1389936|T047|ET|N31.2|ICD10CM|Atonic (motor) (sensory) neuropathic bladder|Atonic (motor) (sensory) neuropathic bladder +C1389937|T047|ET|N31.2|ICD10CM|Autonomous neuropathic bladder|Autonomous neuropathic bladder +C0495066|T047|PT|N31.2|ICD10|Flaccid neuropathic bladder, not elsewhere classified|Flaccid neuropathic bladder, not elsewhere classified +C0495066|T047|PT|N31.2|ICD10CM|Flaccid neuropathic bladder, not elsewhere classified|Flaccid neuropathic bladder, not elsewhere classified +C0495066|T047|AB|N31.2|ICD10CM|Flaccid neuropathic bladder, not elsewhere classified|Flaccid neuropathic bladder, not elsewhere classified +C1389939|T047|ET|N31.2|ICD10CM|Nonreflex neuropathic bladder|Nonreflex neuropathic bladder +C0477752|T047|PT|N31.8|ICD10|Other neuromuscular dysfunction of bladder|Other neuromuscular dysfunction of bladder +C0477752|T047|PT|N31.8|ICD10CM|Other neuromuscular dysfunction of bladder|Other neuromuscular dysfunction of bladder +C0477752|T047|AB|N31.8|ICD10CM|Other neuromuscular dysfunction of bladder|Other neuromuscular dysfunction of bladder +C2902981|T047|ET|N31.9|ICD10CM|Neurogenic bladder dysfunction NOS|Neurogenic bladder dysfunction NOS +C0477761|T047|PT|N31.9|ICD10CM|Neuromuscular dysfunction of bladder, unspecified|Neuromuscular dysfunction of bladder, unspecified +C0477761|T047|AB|N31.9|ICD10CM|Neuromuscular dysfunction of bladder, unspecified|Neuromuscular dysfunction of bladder, unspecified +C0477761|T047|PT|N31.9|ICD10|Neuromuscular dysfunction of bladder, unspecified|Neuromuscular dysfunction of bladder, unspecified +C0156271|T047|HT|N32|ICD10|Other disorders of bladder|Other disorders of bladder +C0156271|T047|HT|N32|ICD10CM|Other disorders of bladder|Other disorders of bladder +C0156271|T047|AB|N32|ICD10CM|Other disorders of bladder|Other disorders of bladder +C0005694|T047|PT|N32.0|ICD10CM|Bladder-neck obstruction|Bladder-neck obstruction +C0005694|T047|AB|N32.0|ICD10CM|Bladder-neck obstruction|Bladder-neck obstruction +C0005694|T047|PT|N32.0|ICD10|Bladder-neck obstruction|Bladder-neck obstruction +C0268841|T020|ET|N32.0|ICD10CM|Bladder-neck stenosis (acquired)|Bladder-neck stenosis (acquired) +C0156272|T047|PT|N32.1|ICD10CM|Vesicointestinal fistula|Vesicointestinal fistula +C0156272|T047|AB|N32.1|ICD10CM|Vesicointestinal fistula|Vesicointestinal fistula +C0156272|T047|PT|N32.1|ICD10|Vesicointestinal fistula|Vesicointestinal fistula +C0268843|T190|ET|N32.1|ICD10CM|Vesicorectal fistula|Vesicorectal fistula +C0868850|T190|PT|N32.2|ICD10|Vesical fistula, not elsewhere classified|Vesical fistula, not elsewhere classified +C0868850|T190|PT|N32.2|ICD10CM|Vesical fistula, not elsewhere classified|Vesical fistula, not elsewhere classified +C0868850|T190|AB|N32.2|ICD10CM|Vesical fistula, not elsewhere classified|Vesical fistula, not elsewhere classified +C0156273|T020|PT|N32.3|ICD10|Diverticulum of bladder|Diverticulum of bladder +C0156273|T020|PT|N32.3|ICD10CM|Diverticulum of bladder|Diverticulum of bladder +C0156273|T020|AB|N32.3|ICD10CM|Diverticulum of bladder|Diverticulum of bladder +C0156275|T047|PT|N32.4|ICD10|Rupture of bladder, nontraumatic|Rupture of bladder, nontraumatic +C0029776|T047|PT|N32.8|ICD10|Other specified disorders of bladder|Other specified disorders of bladder +C0029776|T047|HT|N32.8|ICD10CM|Other specified disorders of bladder|Other specified disorders of bladder +C0029776|T047|AB|N32.8|ICD10CM|Other specified disorders of bladder|Other specified disorders of bladder +C1857858|T033|ET|N32.81|ICD10CM|Detrusor muscle hyperactivity|Detrusor muscle hyperactivity +C0878773|T047|PT|N32.81|ICD10CM|Overactive bladder|Overactive bladder +C0878773|T047|AB|N32.81|ICD10CM|Overactive bladder|Overactive bladder +C0341750|T046|ET|N32.89|ICD10CM|Bladder hemorrhage|Bladder hemorrhage +C0268855|T047|ET|N32.89|ICD10CM|Bladder hypertrophy|Bladder hypertrophy +C0268853|T047|ET|N32.89|ICD10CM|Calcified bladder|Calcified bladder +C0268854|T047|ET|N32.89|ICD10CM|Contracted bladder|Contracted bladder +C0029776|T047|PT|N32.89|ICD10CM|Other specified disorders of bladder|Other specified disorders of bladder +C0029776|T047|AB|N32.89|ICD10CM|Other specified disorders of bladder|Other specified disorders of bladder +C0005686|T047|PT|N32.9|ICD10CM|Bladder disorder, unspecified|Bladder disorder, unspecified +C0005686|T047|AB|N32.9|ICD10CM|Bladder disorder, unspecified|Bladder disorder, unspecified +C0005686|T047|PT|N32.9|ICD10|Bladder disorder, unspecified|Bladder disorder, unspecified +C0694528|T047|HT|N33|ICD10|Bladder disorders in diseases classified elsewhere|Bladder disorders in diseases classified elsewhere +C0694528|T047|PT|N33|ICD10CM|Bladder disorders in diseases classified elsewhere|Bladder disorders in diseases classified elsewhere +C0694528|T047|AB|N33|ICD10CM|Bladder disorders in diseases classified elsewhere|Bladder disorders in diseases classified elsewhere +C0152793|T047|PT|N33.0|ICD10|Tuberculous cystitis|Tuberculous cystitis +C0477753|T047|PT|N33.8|ICD10|Bladder disorders in other diseases classified elsewhere|Bladder disorders in other diseases classified elsewhere +C0495067|T047|HT|N34|ICD10|Urethritis and urethral syndrome|Urethritis and urethral syndrome +C0495067|T047|AB|N34|ICD10CM|Urethritis and urethral syndrome|Urethritis and urethral syndrome +C0495067|T047|HT|N34|ICD10CM|Urethritis and urethral syndrome|Urethritis and urethral syndrome +C0268864|T047|ET|N34.0|ICD10CM|Abscess (of) Cowper's gland|Abscess (of) Cowper's gland +C0268865|T047|ET|N34.0|ICD10CM|Abscess (of) Littré's gland|Abscess (of) Littré's gland +C0156278|T047|ET|N34.0|ICD10CM|Abscess (of) urethral (gland)|Abscess (of) urethral (gland) +C0237961|T047|ET|N34.0|ICD10CM|Periurethral abscess|Periurethral abscess +C0156278|T047|PT|N34.0|ICD10CM|Urethral abscess|Urethral abscess +C0156278|T047|AB|N34.0|ICD10CM|Urethral abscess|Urethral abscess +C0156278|T047|PT|N34.0|ICD10|Urethral abscess|Urethral abscess +C1112709|T047|ET|N34.1|ICD10CM|Nongonococcal urethritis|Nongonococcal urethritis +C1112709|T047|PT|N34.1|ICD10CM|Nonspecific urethritis|Nonspecific urethritis +C1112709|T047|AB|N34.1|ICD10CM|Nonspecific urethritis|Nonspecific urethritis +C1112709|T047|PT|N34.1|ICD10|Nonspecific urethritis|Nonspecific urethritis +C0149742|T047|ET|N34.1|ICD10CM|Nonvenereal urethritis|Nonvenereal urethritis +C0268861|T047|ET|N34.2|ICD10CM|Meatitis, urethral|Meatitis, urethral +C0029867|T047|PT|N34.2|ICD10|Other urethritis|Other urethritis +C0029867|T047|PT|N34.2|ICD10CM|Other urethritis|Other urethritis +C0029867|T047|AB|N34.2|ICD10CM|Other urethritis|Other urethritis +C0403695|T046|ET|N34.2|ICD10CM|Postmenopausal urethritis|Postmenopausal urethritis +C0241566|T047|ET|N34.2|ICD10CM|Ulcer of urethra (meatus)|Ulcer of urethra (meatus) +C0311389|T047|ET|N34.2|ICD10CM|Urethritis NOS|Urethritis NOS +C0156279|T047|PT|N34.3|ICD10|Urethral syndrome, unspecified|Urethral syndrome, unspecified +C0156279|T047|PT|N34.3|ICD10CM|Urethral syndrome, unspecified|Urethral syndrome, unspecified +C0156279|T047|AB|N34.3|ICD10CM|Urethral syndrome, unspecified|Urethral syndrome, unspecified +C4551691|T047|HT|N35|ICD10|Urethral stricture|Urethral stricture +C4551691|T047|HT|N35|ICD10CM|Urethral stricture|Urethral stricture +C4551691|T047|AB|N35|ICD10CM|Urethral stricture|Urethral stricture +C0403698|T037|PT|N35.0|ICD10|Post-traumatic urethral stricture|Post-traumatic urethral stricture +C0403698|T037|HT|N35.0|ICD10CM|Post-traumatic urethral stricture|Post-traumatic urethral stricture +C0403698|T037|AB|N35.0|ICD10CM|Post-traumatic urethral stricture|Post-traumatic urethral stricture +C2902983|T046|ET|N35.0|ICD10CM|Urethral stricture due to injury|Urethral stricture due to injury +C2902984|T046|AB|N35.01|ICD10CM|Post-traumatic urethral stricture, male|Post-traumatic urethral stricture, male +C2902984|T046|HT|N35.01|ICD10CM|Post-traumatic urethral stricture, male|Post-traumatic urethral stricture, male +C2902985|T046|AB|N35.010|ICD10CM|Post-traumatic urethral stricture, male, meatal|Post-traumatic urethral stricture, male, meatal +C2902985|T046|PT|N35.010|ICD10CM|Post-traumatic urethral stricture, male, meatal|Post-traumatic urethral stricture, male, meatal +C2902986|T046|AB|N35.011|ICD10CM|Post-traumatic bulbous urethral stricture|Post-traumatic bulbous urethral stricture +C2902986|T046|PT|N35.011|ICD10CM|Post-traumatic bulbous urethral stricture|Post-traumatic bulbous urethral stricture +C2902987|T037|PT|N35.012|ICD10CM|Post-traumatic membranous urethral stricture|Post-traumatic membranous urethral stricture +C2902987|T037|AB|N35.012|ICD10CM|Post-traumatic membranous urethral stricture|Post-traumatic membranous urethral stricture +C2902988|T037|PT|N35.013|ICD10CM|Post-traumatic anterior urethral stricture|Post-traumatic anterior urethral stricture +C2902988|T037|AB|N35.013|ICD10CM|Post-traumatic anterior urethral stricture|Post-traumatic anterior urethral stricture +C2902984|T046|AB|N35.014|ICD10CM|Post-traumatic urethral stricture, male, unspecified|Post-traumatic urethral stricture, male, unspecified +C2902984|T046|PT|N35.014|ICD10CM|Post-traumatic urethral stricture, male, unspecified|Post-traumatic urethral stricture, male, unspecified +C4552698|T046|AB|N35.016|ICD10CM|Post-traumatic urethral stricture, male, overlapping sites|Post-traumatic urethral stricture, male, overlapping sites +C4552698|T046|PT|N35.016|ICD10CM|Post-traumatic urethral stricture, male, overlapping sites|Post-traumatic urethral stricture, male, overlapping sites +C2902989|T046|AB|N35.02|ICD10CM|Post-traumatic urethral stricture, female|Post-traumatic urethral stricture, female +C2902989|T046|HT|N35.02|ICD10CM|Post-traumatic urethral stricture, female|Post-traumatic urethral stricture, female +C2902990|T046|AB|N35.021|ICD10CM|Urethral stricture due to childbirth|Urethral stricture due to childbirth +C2902990|T046|PT|N35.021|ICD10CM|Urethral stricture due to childbirth|Urethral stricture due to childbirth +C2902991|T046|AB|N35.028|ICD10CM|Other post-traumatic urethral stricture, female|Other post-traumatic urethral stricture, female +C2902991|T046|PT|N35.028|ICD10CM|Other post-traumatic urethral stricture, female|Other post-traumatic urethral stricture, female +C0495069|T046|PT|N35.1|ICD10|Postinfective urethral stricture, not elsewhere classified|Postinfective urethral stricture, not elsewhere classified +C0495069|T046|HT|N35.1|ICD10CM|Postinfective urethral stricture, not elsewhere classified|Postinfective urethral stricture, not elsewhere classified +C0495069|T046|AB|N35.1|ICD10CM|Postinfective urethral stricture, not elsewhere classified|Postinfective urethral stricture, not elsewhere classified +C2902997|T047|AB|N35.11|ICD10CM|Postinfective urethral stricture, NEC, male|Postinfective urethral stricture, NEC, male +C2902997|T047|HT|N35.11|ICD10CM|Postinfective urethral stricture, not elsewhere classified, male|Postinfective urethral stricture, not elsewhere classified, male +C2902993|T046|AB|N35.111|ICD10CM|Postinfective urethral stricture, NEC, male, meatal|Postinfective urethral stricture, NEC, male, meatal +C2902993|T046|PT|N35.111|ICD10CM|Postinfective urethral stricture, not elsewhere classified, male, meatal|Postinfective urethral stricture, not elsewhere classified, male, meatal +C4509355|T047|AB|N35.112|ICD10CM|Postinfective bulbous urethral stricture, NEC, male|Postinfective bulbous urethral stricture, NEC, male +C4509355|T047|PT|N35.112|ICD10CM|Postinfective bulbous urethral stricture, not elsewhere classified, male|Postinfective bulbous urethral stricture, not elsewhere classified, male +C4509356|T047|AB|N35.113|ICD10CM|Postinfective membranous urethral stricture, NEC, male|Postinfective membranous urethral stricture, NEC, male +C4509356|T047|PT|N35.113|ICD10CM|Postinfective membranous urethral stricture, not elsewhere classified, male|Postinfective membranous urethral stricture, not elsewhere classified, male +C4509357|T047|AB|N35.114|ICD10CM|Postinfective anterior urethral stricture, NEC, male|Postinfective anterior urethral stricture, NEC, male +C4509357|T047|PT|N35.114|ICD10CM|Postinfective anterior urethral stricture, not elsewhere classified, male|Postinfective anterior urethral stricture, not elsewhere classified, male +C4703283|T047|AB|N35.116|ICD10CM|Postinfective urethral stricture, NEC, male, ovrlp sites|Postinfective urethral stricture, NEC, male, ovrlp sites +C4703283|T047|PT|N35.116|ICD10CM|Postinfective urethral stricture, not elsewhere classified, male, overlapping sites|Postinfective urethral stricture, not elsewhere classified, male, overlapping sites +C2902997|T047|AB|N35.119|ICD10CM|Postinfective urethral stricture, NEC, male, unsp|Postinfective urethral stricture, NEC, male, unsp +C2902997|T047|PT|N35.119|ICD10CM|Postinfective urethral stricture, not elsewhere classified, male, unspecified|Postinfective urethral stricture, not elsewhere classified, male, unspecified +C2902998|T046|AB|N35.12|ICD10CM|Postinfective urethral stricture, NEC, female|Postinfective urethral stricture, NEC, female +C2902998|T046|PT|N35.12|ICD10CM|Postinfective urethral stricture, not elsewhere classified, female|Postinfective urethral stricture, not elsewhere classified, female +C0477754|T047|AB|N35.8|ICD10CM|Other urethral stricture|Other urethral stricture +C0477754|T047|HT|N35.8|ICD10CM|Other urethral stricture|Other urethral stricture +C0477754|T047|PT|N35.8|ICD10|Other urethral stricture|Other urethral stricture +C4718788|T047|AB|N35.81|ICD10CM|Other urethral stricture, male|Other urethral stricture, male +C4718788|T047|HT|N35.81|ICD10CM|Other urethral stricture, male|Other urethral stricture, male +C4552699|T047|AB|N35.811|ICD10CM|Other urethral stricture, male, meatal|Other urethral stricture, male, meatal +C4552699|T047|PT|N35.811|ICD10CM|Other urethral stricture, male, meatal|Other urethral stricture, male, meatal +C4552700|T047|AB|N35.812|ICD10CM|Other urethral bulbous stricture, male|Other urethral bulbous stricture, male +C4552700|T047|PT|N35.812|ICD10CM|Other urethral bulbous stricture, male|Other urethral bulbous stricture, male +C4552701|T020|AB|N35.813|ICD10CM|Other membranous urethral stricture, male|Other membranous urethral stricture, male +C4552701|T020|PT|N35.813|ICD10CM|Other membranous urethral stricture, male|Other membranous urethral stricture, male +C5140867|T047|AB|N35.814|ICD10CM|Other anterior urethral stricture, male|Other anterior urethral stricture, male +C5140867|T047|PT|N35.814|ICD10CM|Other anterior urethral stricture, male|Other anterior urethral stricture, male +C4552703|T047|AB|N35.816|ICD10CM|Other urethral stricture, male, overlapping sites|Other urethral stricture, male, overlapping sites +C4552703|T047|PT|N35.816|ICD10CM|Other urethral stricture, male, overlapping sites|Other urethral stricture, male, overlapping sites +C4552704|T047|AB|N35.819|ICD10CM|Other urethral stricture, male, unspecified site|Other urethral stricture, male, unspecified site +C4552704|T047|PT|N35.819|ICD10CM|Other urethral stricture, male, unspecified site|Other urethral stricture, male, unspecified site +C4552705|T047|AB|N35.82|ICD10CM|Other urethral stricture, female|Other urethral stricture, female +C4552705|T047|PT|N35.82|ICD10CM|Other urethral stricture, female|Other urethral stricture, female +C4551691|T047|AB|N35.9|ICD10CM|Urethral stricture, unspecified|Urethral stricture, unspecified +C4551691|T047|HT|N35.9|ICD10CM|Urethral stricture, unspecified|Urethral stricture, unspecified +C4551691|T047|PT|N35.9|ICD10|Urethral stricture, unspecified|Urethral stricture, unspecified +C4718789|T047|AB|N35.91|ICD10CM|Urethral stricture, unspecified, male|Urethral stricture, unspecified, male +C4718789|T047|HT|N35.91|ICD10CM|Urethral stricture, unspecified, male|Urethral stricture, unspecified, male +C4552706|T047|AB|N35.911|ICD10CM|Unspecified urethral stricture, male, meatal|Unspecified urethral stricture, male, meatal +C4552706|T047|PT|N35.911|ICD10CM|Unspecified urethral stricture, male, meatal|Unspecified urethral stricture, male, meatal +C4552707|T047|AB|N35.912|ICD10CM|Unspecified bulbous urethral stricture, male|Unspecified bulbous urethral stricture, male +C4552707|T047|PT|N35.912|ICD10CM|Unspecified bulbous urethral stricture, male|Unspecified bulbous urethral stricture, male +C4552708|T047|AB|N35.913|ICD10CM|Unspecified membranous urethral stricture, male|Unspecified membranous urethral stricture, male +C4552708|T047|PT|N35.913|ICD10CM|Unspecified membranous urethral stricture, male|Unspecified membranous urethral stricture, male +C4553610|T047|AB|N35.914|ICD10CM|Unspecified anterior urethral stricture, male|Unspecified anterior urethral stricture, male +C4553610|T047|PT|N35.914|ICD10CM|Unspecified anterior urethral stricture, male|Unspecified anterior urethral stricture, male +C4552709|T047|AB|N35.916|ICD10CM|Unspecified urethral stricture, male, overlapping sites|Unspecified urethral stricture, male, overlapping sites +C4552709|T047|PT|N35.916|ICD10CM|Unspecified urethral stricture, male, overlapping sites|Unspecified urethral stricture, male, overlapping sites +C0431750|T047|ET|N35.919|ICD10CM|Pinhole meatus NOS|Pinhole meatus NOS +C4552710|T047|AB|N35.919|ICD10CM|Unspecified urethral stricture, male, unspecified site|Unspecified urethral stricture, male, unspecified site +C4552710|T047|PT|N35.919|ICD10CM|Unspecified urethral stricture, male, unspecified site|Unspecified urethral stricture, male, unspecified site +C4551691|T047|ET|N35.919|ICD10CM|Urethral stricture NOS|Urethral stricture NOS +C4552711|T047|AB|N35.92|ICD10CM|Unspecified urethral stricture, female|Unspecified urethral stricture, female +C4552711|T047|PT|N35.92|ICD10CM|Unspecified urethral stricture, female|Unspecified urethral stricture, female +C0495070|T047|HT|N36|ICD10|Other disorders of urethra|Other disorders of urethra +C0495070|T047|AB|N36|ICD10CM|Other disorders of urethra|Other disorders of urethra +C0495070|T047|HT|N36|ICD10CM|Other disorders of urethra|Other disorders of urethra +C0041970|T190|PT|N36.0|ICD10CM|Urethral fistula|Urethral fistula +C0041970|T190|AB|N36.0|ICD10CM|Urethral fistula|Urethral fistula +C0041970|T190|PT|N36.0|ICD10|Urethral fistula|Urethral fistula +C0268874|T190|ET|N36.0|ICD10CM|Urethroperineal fistula|Urethroperineal fistula +C0268875|T047|ET|N36.0|ICD10CM|Urethrorectal fistula|Urethrorectal fistula +C0042021|T047|ET|N36.0|ICD10CM|Urinary fistula NOS|Urinary fistula NOS +C0152443|T047|PT|N36.1|ICD10CM|Urethral diverticulum|Urethral diverticulum +C0152443|T047|AB|N36.1|ICD10CM|Urethral diverticulum|Urethral diverticulum +C0152443|T047|PT|N36.1|ICD10|Urethral diverticulum|Urethral diverticulum +C0152247|T020|PT|N36.2|ICD10|Urethral caruncle|Urethral caruncle +C0152247|T020|PT|N36.2|ICD10CM|Urethral caruncle|Urethral caruncle +C0152247|T020|AB|N36.2|ICD10CM|Urethral caruncle|Urethral caruncle +C0156287|T047|PT|N36.3|ICD10|Prolapsed urethral mucosa|Prolapsed urethral mucosa +C2902999|T047|HT|N36.4|ICD10CM|Urethral functional and muscular disorders|Urethral functional and muscular disorders +C2902999|T047|AB|N36.4|ICD10CM|Urethral functional and muscular disorders|Urethral functional and muscular disorders +C2903000|T047|AB|N36.41|ICD10CM|Hypermobility of urethra|Hypermobility of urethra +C2903000|T047|PT|N36.41|ICD10CM|Hypermobility of urethra|Hypermobility of urethra +C0375381|T047|AB|N36.42|ICD10CM|Intrinsic sphincter deficiency (ISD)|Intrinsic sphincter deficiency (ISD) +C0375381|T047|PT|N36.42|ICD10CM|Intrinsic sphincter deficiency (ISD)|Intrinsic sphincter deficiency (ISD) +C2903002|T047|PT|N36.43|ICD10CM|Combined hypermobility of urethra and intrinsic sphincter deficiency|Combined hypermobility of urethra and intrinsic sphincter deficiency +C2903002|T047|AB|N36.43|ICD10CM|Combined hypermobility of urethra and intrns sphincter defic|Combined hypermobility of urethra and intrns sphincter defic +C2903003|T033|ET|N36.44|ICD10CM|Bladder sphincter dyssynergy|Bladder sphincter dyssynergy +C2903004|T047|PT|N36.44|ICD10CM|Muscular disorders of urethra|Muscular disorders of urethra +C2903004|T047|AB|N36.44|ICD10CM|Muscular disorders of urethra|Muscular disorders of urethra +C0156286|T020|PT|N36.5|ICD10CM|Urethral false passage|Urethral false passage +C0156286|T020|AB|N36.5|ICD10CM|Urethral false passage|Urethral false passage +C0348769|T047|PT|N36.8|ICD10|Other specified disorders of urethra|Other specified disorders of urethra +C0348769|T047|PT|N36.8|ICD10CM|Other specified disorders of urethra|Other specified disorders of urethra +C0348769|T047|AB|N36.8|ICD10CM|Other specified disorders of urethra|Other specified disorders of urethra +C0041969|T047|PT|N36.9|ICD10CM|Urethral disorder, unspecified|Urethral disorder, unspecified +C0041969|T047|AB|N36.9|ICD10CM|Urethral disorder, unspecified|Urethral disorder, unspecified +C0041969|T047|PT|N36.9|ICD10|Urethral disorder, unspecified|Urethral disorder, unspecified +C0694529|T047|PT|N37|ICD10CM|Urethral disorders in diseases classified elsewhere|Urethral disorders in diseases classified elsewhere +C0694529|T047|AB|N37|ICD10CM|Urethral disorders in diseases classified elsewhere|Urethral disorders in diseases classified elsewhere +C0694529|T047|HT|N37|ICD10|Urethral disorders in diseases classified elsewhere|Urethral disorders in diseases classified elsewhere +C0477755|T047|PT|N37.0|ICD10|Urethritis in diseases classified elsewhere|Urethritis in diseases classified elsewhere +C0477756|T047|PT|N37.8|ICD10|Other urethral disorders in diseases classified elsewhere|Other urethral disorders in diseases classified elsewhere +C0178288|T047|HT|N39|ICD10|Other disorders of urinary system|Other disorders of urinary system +C0178288|T047|AB|N39|ICD10CM|Other disorders of urinary system|Other disorders of urinary system +C0178288|T047|HT|N39|ICD10CM|Other disorders of urinary system|Other disorders of urinary system +C0042029|T047|PT|N39.0|ICD10|Urinary tract infection, site not specified|Urinary tract infection, site not specified +C0042029|T047|PT|N39.0|ICD10CM|Urinary tract infection, site not specified|Urinary tract infection, site not specified +C0042029|T047|AB|N39.0|ICD10CM|Urinary tract infection, site not specified|Urinary tract infection, site not specified +C0477762|T033|PT|N39.1|ICD10|Persistent proteinuria, unspecified|Persistent proteinuria, unspecified +C0232867|T047|PT|N39.2|ICD10|Orthostatic proteinuria, unspecified|Orthostatic proteinuria, unspecified +C0042025|T047|PT|N39.3|ICD10|Stress incontinence|Stress incontinence +C2903005|T047|AB|N39.3|ICD10CM|Stress incontinence (female) (male)|Stress incontinence (female) (male) +C2903005|T047|PT|N39.3|ICD10CM|Stress incontinence (female) (male)|Stress incontinence (female) (male) +C0477757|T047|HT|N39.4|ICD10CM|Other specified urinary incontinence|Other specified urinary incontinence +C0477757|T047|AB|N39.4|ICD10CM|Other specified urinary incontinence|Other specified urinary incontinence +C0477757|T047|PT|N39.4|ICD10|Other specified urinary incontinence|Other specified urinary incontinence +C0150045|T033|PT|N39.41|ICD10CM|Urge incontinence|Urge incontinence +C0150045|T033|AB|N39.41|ICD10CM|Urge incontinence|Urge incontinence +C0375551|T046|PT|N39.42|ICD10CM|Incontinence without sensory awareness|Incontinence without sensory awareness +C0375551|T046|AB|N39.42|ICD10CM|Incontinence without sensory awareness|Incontinence without sensory awareness +C4268884|T046|ET|N39.42|ICD10CM|Insensible (urinary) incontinence|Insensible (urinary) incontinence +C0375552|T184|AB|N39.43|ICD10CM|Post-void dribbling|Post-void dribbling +C0375552|T184|PT|N39.43|ICD10CM|Post-void dribbling|Post-void dribbling +C0270327|T048|AB|N39.44|ICD10CM|Nocturnal enuresis|Nocturnal enuresis +C0270327|T048|PT|N39.44|ICD10CM|Nocturnal enuresis|Nocturnal enuresis +C0375553|T184|AB|N39.45|ICD10CM|Continuous leakage|Continuous leakage +C0375553|T184|PT|N39.45|ICD10CM|Continuous leakage|Continuous leakage +C0869256|T184|PT|N39.46|ICD10CM|Mixed incontinence|Mixed incontinence +C0869256|T184|AB|N39.46|ICD10CM|Mixed incontinence|Mixed incontinence +C0869256|T184|ET|N39.46|ICD10CM|Urge and stress incontinence|Urge and stress incontinence +C0477757|T047|HT|N39.49|ICD10CM|Other specified urinary incontinence|Other specified urinary incontinence +C0477757|T047|AB|N39.49|ICD10CM|Other specified urinary incontinence|Other specified urinary incontinence +C0312413|T033|AB|N39.490|ICD10CM|Overflow incontinence|Overflow incontinence +C0312413|T033|PT|N39.490|ICD10CM|Overflow incontinence|Overflow incontinence +C4268885|T047|AB|N39.491|ICD10CM|Coital incontinence|Coital incontinence +C4268885|T047|PT|N39.491|ICD10CM|Coital incontinence|Coital incontinence +C0403669|T047|AB|N39.492|ICD10CM|Postural (urinary) incontinence|Postural (urinary) incontinence +C0403669|T047|PT|N39.492|ICD10CM|Postural (urinary) incontinence|Postural (urinary) incontinence +C0477757|T047|PT|N39.498|ICD10CM|Other specified urinary incontinence|Other specified urinary incontinence +C0477757|T047|AB|N39.498|ICD10CM|Other specified urinary incontinence|Other specified urinary incontinence +C0150043|T033|ET|N39.498|ICD10CM|Reflex incontinence|Reflex incontinence +C0150044|T033|ET|N39.498|ICD10CM|Total incontinence|Total incontinence +C0477758|T047|PT|N39.8|ICD10|Other specified disorders of urinary system|Other specified disorders of urinary system +C0477758|T047|PT|N39.8|ICD10CM|Other specified disorders of urinary system|Other specified disorders of urinary system +C0477758|T047|AB|N39.8|ICD10CM|Other specified disorders of urinary system|Other specified disorders of urinary system +C0042075|T047|PT|N39.9|ICD10CM|Disorder of urinary system, unspecified|Disorder of urinary system, unspecified +C0042075|T047|AB|N39.9|ICD10CM|Disorder of urinary system, unspecified|Disorder of urinary system, unspecified +C0042075|T047|PT|N39.9|ICD10|Disorder of urinary system, unspecified|Disorder of urinary system, unspecified +C1739363|T047|ET|N40|ICD10CM|adenofibromatous hypertrophy of prostate|adenofibromatous hypertrophy of prostate +C0005001|T046|ET|N40|ICD10CM|benign hypertrophy of the prostate|benign hypertrophy of the prostate +C1704272|T047|HT|N40|ICD10CM|Benign prostatic hyperplasia|Benign prostatic hyperplasia +C1704272|T047|AB|N40|ICD10CM|Benign prostatic hyperplasia|Benign prostatic hyperplasia +C0005001|T046|ET|N40|ICD10CM|benign prostatic hypertrophy|benign prostatic hypertrophy +C0005001|T046|ET|N40|ICD10CM|BPH|BPH +C0426732|T033|ET|N40|ICD10CM|enlarged prostate|enlarged prostate +C2937421|T047|PT|N40|ICD10|Hyperplasia of prostate|Hyperplasia of prostate +C0748012|T047|ET|N40|ICD10CM|nodular prostate|nodular prostate +C0878778|T191|ET|N40|ICD10CM|polyp of prostate|polyp of prostate +C0017412|T047|HT|N40-N51.9|ICD10|Diseases of male genital organs|Diseases of male genital organs +C2977265|T047|HT|N40-N53|ICD10CM|Diseases of male genital organs (N40-N53)|Diseases of male genital organs (N40-N53) +C4270814|T191|PT|N40.0|ICD10CM|Benign prostatic hyperplasia without lower urinary tract symptoms|Benign prostatic hyperplasia without lower urinary tract symptoms +C4270814|T191|AB|N40.0|ICD10CM|Benign prostatic hyperplasia without lower urinry tract symp|Benign prostatic hyperplasia without lower urinry tract symp +C0426732|T033|ET|N40.0|ICD10CM|Enlarged prostate NOS|Enlarged prostate NOS +C3264501|T033|ET|N40.0|ICD10CM|Enlarged prostate without LUTS|Enlarged prostate without LUTS +C4268886|T191|AB|N40.1|ICD10CM|Benign prostatic hyperplasia with lower urinary tract symp|Benign prostatic hyperplasia with lower urinary tract symp +C4268886|T191|PT|N40.1|ICD10CM|Benign prostatic hyperplasia with lower urinary tract symptoms|Benign prostatic hyperplasia with lower urinary tract symptoms +C3264502|T033|ET|N40.1|ICD10CM|Enlarged prostate with LUTS|Enlarged prostate with LUTS +C3264504|T047|AB|N40.2|ICD10CM|Nodular prostate without lower urinary tract symptoms|Nodular prostate without lower urinary tract symptoms +C3264504|T047|PT|N40.2|ICD10CM|Nodular prostate without lower urinary tract symptoms|Nodular prostate without lower urinary tract symptoms +C3264503|T033|ET|N40.2|ICD10CM|Nodular prostate without LUTS|Nodular prostate without LUTS +C3264505|T033|AB|N40.3|ICD10CM|Nodular prostate with lower urinary tract symptoms|Nodular prostate with lower urinary tract symptoms +C3264505|T033|PT|N40.3|ICD10CM|Nodular prostate with lower urinary tract symptoms|Nodular prostate with lower urinary tract symptoms +C0033581|T047|HT|N41|ICD10|Inflammatory diseases of prostate|Inflammatory diseases of prostate +C0033581|T047|HT|N41|ICD10CM|Inflammatory diseases of prostate|Inflammatory diseases of prostate +C0033581|T047|AB|N41|ICD10CM|Inflammatory diseases of prostate|Inflammatory diseases of prostate +C0149524|T047|PT|N41.0|ICD10CM|Acute prostatitis|Acute prostatitis +C0149524|T047|AB|N41.0|ICD10CM|Acute prostatitis|Acute prostatitis +C0149524|T047|PT|N41.0|ICD10|Acute prostatitis|Acute prostatitis +C0085696|T047|PT|N41.1|ICD10|Chronic prostatitis|Chronic prostatitis +C0085696|T047|AB|N41.1|ICD10CM|Chronic prostatitis|Chronic prostatitis +C0085696|T047|PT|N41.1|ICD10CM|Chronic prostatitis|Chronic prostatitis +C0156290|T047|PT|N41.2|ICD10CM|Abscess of prostate|Abscess of prostate +C0156290|T047|AB|N41.2|ICD10CM|Abscess of prostate|Abscess of prostate +C0156290|T047|PT|N41.2|ICD10|Abscess of prostate|Abscess of prostate +C0156291|T047|PT|N41.3|ICD10|Prostatocystitis|Prostatocystitis +C0156291|T047|PT|N41.3|ICD10CM|Prostatocystitis|Prostatocystitis +C0156291|T047|AB|N41.3|ICD10CM|Prostatocystitis|Prostatocystitis +C0018204|T047|PT|N41.4|ICD10CM|Granulomatous prostatitis|Granulomatous prostatitis +C0018204|T047|AB|N41.4|ICD10CM|Granulomatous prostatitis|Granulomatous prostatitis +C0403679|T047|PT|N41.8|ICD10CM|Other inflammatory diseases of prostate|Other inflammatory diseases of prostate +C0403679|T047|AB|N41.8|ICD10CM|Other inflammatory diseases of prostate|Other inflammatory diseases of prostate +C0403679|T047|PT|N41.8|ICD10|Other inflammatory diseases of prostate|Other inflammatory diseases of prostate +C0033581|T047|PT|N41.9|ICD10|Inflammatory disease of prostate, unspecified|Inflammatory disease of prostate, unspecified +C0033581|T047|PT|N41.9|ICD10CM|Inflammatory disease of prostate, unspecified|Inflammatory disease of prostate, unspecified +C0033581|T047|AB|N41.9|ICD10CM|Inflammatory disease of prostate, unspecified|Inflammatory disease of prostate, unspecified +C0033581|T047|ET|N41.9|ICD10CM|Prostatitis NOS|Prostatitis NOS +C2903013|T047|AB|N42|ICD10CM|Other and unspecified disorders of prostate|Other and unspecified disorders of prostate +C2903013|T047|HT|N42|ICD10CM|Other and unspecified disorders of prostate|Other and unspecified disorders of prostate +C0156294|T047|HT|N42|ICD10|Other disorders of prostate|Other disorders of prostate +C0149525|T047|PT|N42.0|ICD10|Calculus of prostate|Calculus of prostate +C0149525|T047|PT|N42.0|ICD10CM|Calculus of prostate|Calculus of prostate +C0149525|T047|AB|N42.0|ICD10CM|Calculus of prostate|Calculus of prostate +C0149525|T047|ET|N42.0|ICD10CM|Prostatic stone|Prostatic stone +C0495075|T046|PT|N42.1|ICD10|Congestion and haemorrhage of prostate|Congestion and haemorrhage of prostate +C0495075|T046|PT|N42.1|ICD10AE|Congestion and hemorrhage of prostate|Congestion and hemorrhage of prostate +C0495075|T046|PT|N42.1|ICD10CM|Congestion and hemorrhage of prostate|Congestion and hemorrhage of prostate +C0495075|T046|AB|N42.1|ICD10CM|Congestion and hemorrhage of prostate|Congestion and hemorrhage of prostate +C0156296|T047|PT|N42.2|ICD10|Atrophy of prostate|Atrophy of prostate +C0949136|T047|AB|N42.3|ICD10CM|Dysplasia of prostate|Dysplasia of prostate +C0949136|T047|HT|N42.3|ICD10CM|Dysplasia of prostate|Dysplasia of prostate +C4268887|T047|AB|N42.30|ICD10CM|Unspecified dysplasia of prostate|Unspecified dysplasia of prostate +C4268887|T047|PT|N42.30|ICD10CM|Unspecified dysplasia of prostate|Unspecified dysplasia of prostate +C0282612|T191|ET|N42.31|ICD10CM|PIN|PIN +C0282612|T191|AB|N42.31|ICD10CM|Prostatic intraepithelial neoplasia|Prostatic intraepithelial neoplasia +C0282612|T191|PT|N42.31|ICD10CM|Prostatic intraepithelial neoplasia|Prostatic intraepithelial neoplasia +C1135355|T191|ET|N42.31|ICD10CM|Prostatic intraepithelial neoplasia I (PIN I)|Prostatic intraepithelial neoplasia I (PIN I) +C1135356|T191|ET|N42.31|ICD10CM|Prostatic intraepithelial neoplasia II (PIN II)|Prostatic intraepithelial neoplasia II (PIN II) +C1332353|T191|PT|N42.32|ICD10CM|Atypical small acinar proliferation of prostate|Atypical small acinar proliferation of prostate +C1332353|T191|AB|N42.32|ICD10CM|Atypical small acinar proliferation of prostate|Atypical small acinar proliferation of prostate +C4268889|T047|AB|N42.39|ICD10CM|Other dysplasia of prostate|Other dysplasia of prostate +C4268889|T047|PT|N42.39|ICD10CM|Other dysplasia of prostate|Other dysplasia of prostate +C0156297|T047|HT|N42.8|ICD10CM|Other specified disorders of prostate|Other specified disorders of prostate +C0156297|T047|AB|N42.8|ICD10CM|Other specified disorders of prostate|Other specified disorders of prostate +C0156297|T047|PT|N42.8|ICD10|Other specified disorders of prostate|Other specified disorders of prostate +C2903014|T047|ET|N42.81|ICD10CM|Painful prostate syndrome|Painful prostate syndrome +C2903015|T047|PT|N42.81|ICD10CM|Prostatodynia syndrome|Prostatodynia syndrome +C2903015|T047|AB|N42.81|ICD10CM|Prostatodynia syndrome|Prostatodynia syndrome +C2903016|T047|PT|N42.82|ICD10CM|Prostatosis syndrome|Prostatosis syndrome +C2903016|T047|AB|N42.82|ICD10CM|Prostatosis syndrome|Prostatosis syndrome +C1443972|T047|PT|N42.83|ICD10CM|Cyst of prostate|Cyst of prostate +C1443972|T047|AB|N42.83|ICD10CM|Cyst of prostate|Cyst of prostate +C0156297|T047|PT|N42.89|ICD10CM|Other specified disorders of prostate|Other specified disorders of prostate +C0156297|T047|AB|N42.89|ICD10CM|Other specified disorders of prostate|Other specified disorders of prostate +C0033575|T047|PT|N42.9|ICD10CM|Disorder of prostate, unspecified|Disorder of prostate, unspecified +C0033575|T047|AB|N42.9|ICD10CM|Disorder of prostate, unspecified|Disorder of prostate, unspecified +C0033575|T047|PT|N42.9|ICD10|Disorder of prostate, unspecified|Disorder of prostate, unspecified +C0495076|T190|HT|N43|ICD10|Hydrocele and spermatocele|Hydrocele and spermatocele +C0495076|T190|AB|N43|ICD10CM|Hydrocele and spermatocele|Hydrocele and spermatocele +C0495076|T190|HT|N43|ICD10CM|Hydrocele and spermatocele|Hydrocele and spermatocele +C4290237|T047|ET|N43|ICD10CM|hydrocele of spermatic cord, testis or tunica vaginalis|hydrocele of spermatic cord, testis or tunica vaginalis +C0156299|T046|PT|N43.0|ICD10|Encysted hydrocele|Encysted hydrocele +C0156299|T046|PT|N43.0|ICD10CM|Encysted hydrocele|Encysted hydrocele +C0156299|T046|AB|N43.0|ICD10CM|Encysted hydrocele|Encysted hydrocele +C0156300|T047|PT|N43.1|ICD10CM|Infected hydrocele|Infected hydrocele +C0156300|T047|AB|N43.1|ICD10CM|Infected hydrocele|Infected hydrocele +C0156300|T047|PT|N43.1|ICD10|Infected hydrocele|Infected hydrocele +C0477763|T190|PT|N43.2|ICD10CM|Other hydrocele|Other hydrocele +C0477763|T190|AB|N43.2|ICD10CM|Other hydrocele|Other hydrocele +C0477763|T190|PT|N43.2|ICD10|Other hydrocele|Other hydrocele +C1720771|T019|PT|N43.3|ICD10|Hydrocele, unspecified|Hydrocele, unspecified +C1720771|T019|PT|N43.3|ICD10CM|Hydrocele, unspecified|Hydrocele, unspecified +C1720771|T019|AB|N43.3|ICD10CM|Hydrocele, unspecified|Hydrocele, unspecified +C2903018|T047|ET|N43.4|ICD10CM|Spermatic cyst|Spermatic cyst +C0037859|T047|PT|N43.4|ICD10|Spermatocele|Spermatocele +C0037859|T047|AB|N43.4|ICD10CM|Spermatocele of epididymis|Spermatocele of epididymis +C0037859|T047|HT|N43.4|ICD10CM|Spermatocele of epididymis|Spermatocele of epididymis +C0037859|T047|AB|N43.40|ICD10CM|Spermatocele of epididymis, unspecified|Spermatocele of epididymis, unspecified +C0037859|T047|PT|N43.40|ICD10CM|Spermatocele of epididymis, unspecified|Spermatocele of epididymis, unspecified +C2903019|T047|AB|N43.41|ICD10CM|Spermatocele of epididymis, single|Spermatocele of epididymis, single +C2903019|T047|PT|N43.41|ICD10CM|Spermatocele of epididymis, single|Spermatocele of epididymis, single +C2903020|T047|AB|N43.42|ICD10CM|Spermatocele of epididymis, multiple|Spermatocele of epididymis, multiple +C2903020|T047|PT|N43.42|ICD10CM|Spermatocele of epididymis, multiple|Spermatocele of epididymis, multiple +C2903021|T047|AB|N44|ICD10CM|Noninflammatory disorders of testis|Noninflammatory disorders of testis +C2903021|T047|HT|N44|ICD10CM|Noninflammatory disorders of testis|Noninflammatory disorders of testis +C0037856|T047|PT|N44|ICD10|Torsion of testis|Torsion of testis +C0037856|T047|HT|N44.0|ICD10CM|Torsion of testis|Torsion of testis +C0037856|T047|AB|N44.0|ICD10CM|Torsion of testis|Torsion of testis +C0037856|T047|AB|N44.00|ICD10CM|Torsion of testis, unspecified|Torsion of testis, unspecified +C0037856|T047|PT|N44.00|ICD10CM|Torsion of testis, unspecified|Torsion of testis, unspecified +C1719541|T046|PT|N44.01|ICD10CM|Extravaginal torsion of spermatic cord|Extravaginal torsion of spermatic cord +C1719541|T046|AB|N44.01|ICD10CM|Extravaginal torsion of spermatic cord|Extravaginal torsion of spermatic cord +C1719542|T047|PT|N44.02|ICD10CM|Intravaginal torsion of spermatic cord|Intravaginal torsion of spermatic cord +C1719542|T047|AB|N44.02|ICD10CM|Intravaginal torsion of spermatic cord|Intravaginal torsion of spermatic cord +C0037856|T047|ET|N44.02|ICD10CM|Torsion of spermatic cord NOS|Torsion of spermatic cord NOS +C0392531|T190|AB|N44.03|ICD10CM|Torsion of appendix testis|Torsion of appendix testis +C0392531|T190|PT|N44.03|ICD10CM|Torsion of appendix testis|Torsion of appendix testis +C1997777|T047|PT|N44.04|ICD10CM|Torsion of appendix epididymis|Torsion of appendix epididymis +C1997777|T047|AB|N44.04|ICD10CM|Torsion of appendix epididymis|Torsion of appendix epididymis +C2903022|T047|PT|N44.1|ICD10CM|Cyst of tunica albuginea testis|Cyst of tunica albuginea testis +C2903022|T047|AB|N44.1|ICD10CM|Cyst of tunica albuginea testis|Cyst of tunica albuginea testis +C0749280|T047|AB|N44.2|ICD10CM|Benign cyst of testis|Benign cyst of testis +C0749280|T047|PT|N44.2|ICD10CM|Benign cyst of testis|Benign cyst of testis +C2903024|T047|AB|N44.8|ICD10CM|Other noninflammatory disorders of the testis|Other noninflammatory disorders of the testis +C2903024|T047|PT|N44.8|ICD10CM|Other noninflammatory disorders of the testis|Other noninflammatory disorders of the testis +C0149881|T047|HT|N45|ICD10CM|Orchitis and epididymitis|Orchitis and epididymitis +C0149881|T047|AB|N45|ICD10CM|Orchitis and epididymitis|Orchitis and epididymitis +C0149881|T047|HT|N45|ICD10|Orchitis and epididymitis|Orchitis and epididymitis +C0156301|T047|PT|N45.0|ICD10|Orchitis, epididymitis and epididymo-orchitis with abscess|Orchitis, epididymitis and epididymo-orchitis with abscess +C0014534|T047|PT|N45.1|ICD10CM|Epididymitis|Epididymitis +C0014534|T047|AB|N45.1|ICD10CM|Epididymitis|Epididymitis +C0029191|T047|PT|N45.2|ICD10CM|Orchitis|Orchitis +C0029191|T047|AB|N45.2|ICD10CM|Orchitis|Orchitis +C0149881|T047|PT|N45.3|ICD10CM|Epididymo-orchitis|Epididymo-orchitis +C0149881|T047|AB|N45.3|ICD10CM|Epididymo-orchitis|Epididymo-orchitis +C0866198|T047|AB|N45.4|ICD10CM|Abscess of epididymis or testis|Abscess of epididymis or testis +C0866198|T047|PT|N45.4|ICD10CM|Abscess of epididymis or testis|Abscess of epididymis or testis +C0495077|T047|PT|N45.9|ICD10|Orchitis, epididymitis and epididymo-orchitis without abscess|Orchitis, epididymitis and epididymo-orchitis without abscess +C0021364|T047|HT|N46|ICD10CM|Male infertility|Male infertility +C0021364|T047|AB|N46|ICD10CM|Male infertility|Male infertility +C0021364|T047|PT|N46|ICD10|Male infertility|Male infertility +C1321542|T046|ET|N46.0|ICD10CM|Absolute male infertility|Absolute male infertility +C0004509|T047|HT|N46.0|ICD10CM|Azoospermia|Azoospermia +C0004509|T047|AB|N46.0|ICD10CM|Azoospermia|Azoospermia +C2903025|T046|ET|N46.0|ICD10CM|Male infertility due to germinal (cell) aplasia|Male infertility due to germinal (cell) aplasia +C2903026|T046|ET|N46.0|ICD10CM|Male infertility due to spermatogenic arrest (complete)|Male infertility due to spermatogenic arrest (complete) +C0004509|T047|ET|N46.01|ICD10CM|Azoospermia NOS|Azoospermia NOS +C2903027|T047|AB|N46.01|ICD10CM|Organic azoospermia|Organic azoospermia +C2903027|T047|PT|N46.01|ICD10CM|Organic azoospermia|Organic azoospermia +C2903028|T047|HT|N46.02|ICD10CM|Azoospermia due to extratesticular causes|Azoospermia due to extratesticular causes +C2903028|T047|AB|N46.02|ICD10CM|Azoospermia due to extratesticular causes|Azoospermia due to extratesticular causes +C2903029|T047|PT|N46.021|ICD10CM|Azoospermia due to drug therapy|Azoospermia due to drug therapy +C2903029|T047|AB|N46.021|ICD10CM|Azoospermia due to drug therapy|Azoospermia due to drug therapy +C2903030|T047|PT|N46.022|ICD10CM|Azoospermia due to infection|Azoospermia due to infection +C2903030|T047|AB|N46.022|ICD10CM|Azoospermia due to infection|Azoospermia due to infection +C2903031|T047|PT|N46.023|ICD10CM|Azoospermia due to obstruction of efferent ducts|Azoospermia due to obstruction of efferent ducts +C2903031|T047|AB|N46.023|ICD10CM|Azoospermia due to obstruction of efferent ducts|Azoospermia due to obstruction of efferent ducts +C2903032|T047|PT|N46.024|ICD10CM|Azoospermia due to radiation|Azoospermia due to radiation +C2903032|T047|AB|N46.024|ICD10CM|Azoospermia due to radiation|Azoospermia due to radiation +C1960199|T047|PT|N46.025|ICD10CM|Azoospermia due to systemic disease|Azoospermia due to systemic disease +C1960199|T047|AB|N46.025|ICD10CM|Azoospermia due to systemic disease|Azoospermia due to systemic disease +C2903033|T047|AB|N46.029|ICD10CM|Azoospermia due to other extratesticular causes|Azoospermia due to other extratesticular causes +C2903033|T047|PT|N46.029|ICD10CM|Azoospermia due to other extratesticular causes|Azoospermia due to other extratesticular causes +C2903034|T046|ET|N46.1|ICD10CM|Male infertility due to germinal cell desquamation|Male infertility due to germinal cell desquamation +C2903035|T046|ET|N46.1|ICD10CM|Male infertility due to hypospermatogenesis|Male infertility due to hypospermatogenesis +C2903036|T046|ET|N46.1|ICD10CM|Male infertility due to incomplete spermatogenic arrest|Male infertility due to incomplete spermatogenic arrest +C0028960|T047|HT|N46.1|ICD10CM|Oligospermia|Oligospermia +C0028960|T047|AB|N46.1|ICD10CM|Oligospermia|Oligospermia +C0028960|T047|ET|N46.11|ICD10CM|Oligospermia NOS|Oligospermia NOS +C2903037|T047|AB|N46.11|ICD10CM|Organic oligospermia|Organic oligospermia +C2903037|T047|PT|N46.11|ICD10CM|Organic oligospermia|Organic oligospermia +C2903038|T047|HT|N46.12|ICD10CM|Oligospermia due to extratesticular causes|Oligospermia due to extratesticular causes +C2903038|T047|AB|N46.12|ICD10CM|Oligospermia due to extratesticular causes|Oligospermia due to extratesticular causes +C2903039|T047|PT|N46.121|ICD10CM|Oligospermia due to drug therapy|Oligospermia due to drug therapy +C2903039|T047|AB|N46.121|ICD10CM|Oligospermia due to drug therapy|Oligospermia due to drug therapy +C2903040|T047|PT|N46.122|ICD10CM|Oligospermia due to infection|Oligospermia due to infection +C2903040|T047|AB|N46.122|ICD10CM|Oligospermia due to infection|Oligospermia due to infection +C2903041|T047|AB|N46.123|ICD10CM|Oligospermia due to obstruction of efferent ducts|Oligospermia due to obstruction of efferent ducts +C2903041|T047|PT|N46.123|ICD10CM|Oligospermia due to obstruction of efferent ducts|Oligospermia due to obstruction of efferent ducts +C2903042|T047|PT|N46.124|ICD10CM|Oligospermia due to radiation|Oligospermia due to radiation +C2903042|T047|AB|N46.124|ICD10CM|Oligospermia due to radiation|Oligospermia due to radiation +C2903043|T047|PT|N46.125|ICD10CM|Oligospermia due to systemic disease|Oligospermia due to systemic disease +C2903043|T047|AB|N46.125|ICD10CM|Oligospermia due to systemic disease|Oligospermia due to systemic disease +C2903044|T047|AB|N46.129|ICD10CM|Oligospermia due to other extratesticular causes|Oligospermia due to other extratesticular causes +C2903044|T047|PT|N46.129|ICD10CM|Oligospermia due to other extratesticular causes|Oligospermia due to other extratesticular causes +C2903045|T047|AB|N46.8|ICD10CM|Other male infertility|Other male infertility +C2903045|T047|PT|N46.8|ICD10CM|Other male infertility|Other male infertility +C0021364|T047|PT|N46.9|ICD10CM|Male infertility, unspecified|Male infertility, unspecified +C0021364|T047|AB|N46.9|ICD10CM|Male infertility, unspecified|Male infertility, unspecified +C2903046|T047|AB|N47|ICD10CM|Disorders of prepuce|Disorders of prepuce +C2903046|T047|HT|N47|ICD10CM|Disorders of prepuce|Disorders of prepuce +C0495078|T190|PT|N47|ICD10|Redundant prepuce, phimosis and paraphimosis|Redundant prepuce, phimosis and paraphimosis +C2903047|T047|AB|N47.0|ICD10CM|Adherent prepuce, newborn|Adherent prepuce, newborn +C2903047|T047|PT|N47.0|ICD10CM|Adherent prepuce, newborn|Adherent prepuce, newborn +C0031538|T033|PT|N47.1|ICD10CM|Phimosis|Phimosis +C0031538|T033|AB|N47.1|ICD10CM|Phimosis|Phimosis +C0030483|T047|PT|N47.2|ICD10CM|Paraphimosis|Paraphimosis +C0030483|T047|AB|N47.2|ICD10CM|Paraphimosis|Paraphimosis +C0426339|T033|PT|N47.3|ICD10CM|Deficient foreskin|Deficient foreskin +C0426339|T033|AB|N47.3|ICD10CM|Deficient foreskin|Deficient foreskin +C2903048|T047|AB|N47.4|ICD10CM|Benign cyst of prepuce|Benign cyst of prepuce +C2903048|T047|PT|N47.4|ICD10CM|Benign cyst of prepuce|Benign cyst of prepuce +C2903049|T047|PT|N47.5|ICD10CM|Adhesions of prepuce and glans penis|Adhesions of prepuce and glans penis +C2903049|T047|AB|N47.5|ICD10CM|Adhesions of prepuce and glans penis|Adhesions of prepuce and glans penis +C0004691|T047|PT|N47.6|ICD10CM|Balanoposthitis|Balanoposthitis +C0004691|T047|AB|N47.6|ICD10CM|Balanoposthitis|Balanoposthitis +C2903050|T047|AB|N47.7|ICD10CM|Other inflammatory diseases of prepuce|Other inflammatory diseases of prepuce +C2903050|T047|PT|N47.7|ICD10CM|Other inflammatory diseases of prepuce|Other inflammatory diseases of prepuce +C2903051|T047|AB|N47.8|ICD10CM|Other disorders of prepuce|Other disorders of prepuce +C2903051|T047|PT|N47.8|ICD10CM|Other disorders of prepuce|Other disorders of prepuce +C0495079|T047|HT|N48|ICD10|Other disorders of penis|Other disorders of penis +C0495079|T047|AB|N48|ICD10CM|Other disorders of penis|Other disorders of penis +C0495079|T047|HT|N48|ICD10CM|Other disorders of penis|Other disorders of penis +C0022782|T047|ET|N48.0|ICD10CM|Balanitis xerotica obliterans|Balanitis xerotica obliterans +C0022782|T047|ET|N48.0|ICD10CM|Kraurosis of penis|Kraurosis of penis +C0022782|T047|PT|N48.0|ICD10CM|Leukoplakia of penis|Leukoplakia of penis +C0022782|T047|AB|N48.0|ICD10CM|Leukoplakia of penis|Leukoplakia of penis +C0022782|T047|PT|N48.0|ICD10|Leukoplakia of penis|Leukoplakia of penis +C2903052|T046|ET|N48.0|ICD10CM|Lichen sclerosus of external male genital organs|Lichen sclerosus of external male genital organs +C0004690|T047|PT|N48.1|ICD10CM|Balanitis|Balanitis +C0004690|T047|AB|N48.1|ICD10CM|Balanitis|Balanitis +C0004691|T047|PT|N48.1|ICD10|Balanoposthitis|Balanoposthitis +C0156306|T047|PT|N48.2|ICD10|Other inflammatory disorders of penis|Other inflammatory disorders of penis +C0156306|T047|HT|N48.2|ICD10CM|Other inflammatory disorders of penis|Other inflammatory disorders of penis +C0156306|T047|AB|N48.2|ICD10CM|Other inflammatory disorders of penis|Other inflammatory disorders of penis +C0268997|T047|AB|N48.21|ICD10CM|Abscess of corpus cavernosum and penis|Abscess of corpus cavernosum and penis +C0268997|T047|PT|N48.21|ICD10CM|Abscess of corpus cavernosum and penis|Abscess of corpus cavernosum and penis +C2903054|T047|AB|N48.22|ICD10CM|Cellulitis of corpus cavernosum and penis|Cellulitis of corpus cavernosum and penis +C2903054|T047|PT|N48.22|ICD10CM|Cellulitis of corpus cavernosum and penis|Cellulitis of corpus cavernosum and penis +C0156306|T047|PT|N48.29|ICD10CM|Other inflammatory disorders of penis|Other inflammatory disorders of penis +C0156306|T047|AB|N48.29|ICD10CM|Other inflammatory disorders of penis|Other inflammatory disorders of penis +C0233973|T184|ET|N48.3|ICD10CM|Painful erection|Painful erection +C0033117|T047|HT|N48.3|ICD10CM|Priapism|Priapism +C0033117|T047|AB|N48.3|ICD10CM|Priapism|Priapism +C0033117|T047|PT|N48.3|ICD10|Priapism|Priapism +C0033117|T047|AB|N48.30|ICD10CM|Priapism, unspecified|Priapism, unspecified +C0033117|T047|PT|N48.30|ICD10CM|Priapism, unspecified|Priapism, unspecified +C2903055|T047|PT|N48.31|ICD10CM|Priapism due to trauma|Priapism due to trauma +C2903055|T047|AB|N48.31|ICD10CM|Priapism due to trauma|Priapism due to trauma +C2903056|T047|PT|N48.32|ICD10CM|Priapism due to disease classified elsewhere|Priapism due to disease classified elsewhere +C2903056|T047|AB|N48.32|ICD10CM|Priapism due to disease classified elsewhere|Priapism due to disease classified elsewhere +C2903057|T047|AB|N48.33|ICD10CM|Priapism, drug-induced|Priapism, drug-induced +C2903057|T047|PT|N48.33|ICD10CM|Priapism, drug-induced|Priapism, drug-induced +C2903058|T047|AB|N48.39|ICD10CM|Other priapism|Other priapism +C2903058|T047|PT|N48.39|ICD10CM|Other priapism|Other priapism +C0156309|T046|PT|N48.4|ICD10|Impotence of organic origin|Impotence of organic origin +C0240698|T047|PT|N48.5|ICD10|Ulcer of penis|Ulcer of penis +C0240698|T047|PT|N48.5|ICD10CM|Ulcer of penis|Ulcer of penis +C0240698|T047|AB|N48.5|ICD10CM|Ulcer of penis|Ulcer of penis +C0152460|T047|PT|N48.6|ICD10|Balanitis xerotica obliterans|Balanitis xerotica obliterans +C2903059|T047|AB|N48.6|ICD10CM|Induration penis plastica|Induration penis plastica +C2903059|T047|PT|N48.6|ICD10CM|Induration penis plastica|Induration penis plastica +C0030848|T047|ET|N48.6|ICD10CM|Peyronie's disease|Peyronie's disease +C0030848|T047|ET|N48.6|ICD10CM|Plastic induration of penis|Plastic induration of penis +C0029785|T047|PT|N48.8|ICD10|Other specified disorders of penis|Other specified disorders of penis +C0029785|T047|HT|N48.8|ICD10CM|Other specified disorders of penis|Other specified disorders of penis +C0029785|T047|AB|N48.8|ICD10CM|Other specified disorders of penis|Other specified disorders of penis +C2903060|T047|PT|N48.81|ICD10CM|Thrombosis of superficial vein of penis|Thrombosis of superficial vein of penis +C2903060|T047|AB|N48.81|ICD10CM|Thrombosis of superficial vein of penis|Thrombosis of superficial vein of penis +C3264512|T047|PT|N48.82|ICD10CM|Acquired torsion of penis|Acquired torsion of penis +C3264512|T047|AB|N48.82|ICD10CM|Acquired torsion of penis|Acquired torsion of penis +C3264512|T047|ET|N48.82|ICD10CM|Acquired torsion of penis NOS|Acquired torsion of penis NOS +C0403770|T020|PT|N48.83|ICD10CM|Acquired buried penis|Acquired buried penis +C0403770|T020|AB|N48.83|ICD10CM|Acquired buried penis|Acquired buried penis +C0029785|T047|PT|N48.89|ICD10CM|Other specified disorders of penis|Other specified disorders of penis +C0029785|T047|AB|N48.89|ICD10CM|Other specified disorders of penis|Other specified disorders of penis +C0030846|T047|PT|N48.9|ICD10CM|Disorder of penis, unspecified|Disorder of penis, unspecified +C0030846|T047|AB|N48.9|ICD10CM|Disorder of penis, unspecified|Disorder of penis, unspecified +C0030846|T047|PT|N48.9|ICD10|Disorder of penis, unspecified|Disorder of penis, unspecified +C0495080|T047|AB|N49|ICD10CM|Inflammatory disorders of male genital organs, NEC|Inflammatory disorders of male genital organs, NEC +C0495080|T047|HT|N49|ICD10CM|Inflammatory disorders of male genital organs, not elsewhere classified|Inflammatory disorders of male genital organs, not elsewhere classified +C0495080|T047|HT|N49|ICD10|Inflammatory disorders of male genital organs, not elsewhere classified|Inflammatory disorders of male genital organs, not elsewhere classified +C0495081|T047|PT|N49.0|ICD10|Inflammatory disorders of seminal vesicle|Inflammatory disorders of seminal vesicle +C0495081|T047|PT|N49.0|ICD10CM|Inflammatory disorders of seminal vesicle|Inflammatory disorders of seminal vesicle +C0495081|T047|AB|N49.0|ICD10CM|Inflammatory disorders of seminal vesicle|Inflammatory disorders of seminal vesicle +C0042588|T047|ET|N49.0|ICD10CM|Vesiculitis NOS|Vesiculitis NOS +C0495082|T047|AB|N49.1|ICD10CM|Inflam disorders of sperm cord, tunica vaginalis and vas def|Inflam disorders of sperm cord, tunica vaginalis and vas def +C0495082|T047|PT|N49.1|ICD10CM|Inflammatory disorders of spermatic cord, tunica vaginalis and vas deferens|Inflammatory disorders of spermatic cord, tunica vaginalis and vas deferens +C0495082|T047|PT|N49.1|ICD10|Inflammatory disorders of spermatic cord, tunica vaginalis and vas deferens|Inflammatory disorders of spermatic cord, tunica vaginalis and vas deferens +C0042392|T047|ET|N49.1|ICD10CM|Vasitis|Vasitis +C0495083|T047|PT|N49.2|ICD10|Inflammatory disorders of scrotum|Inflammatory disorders of scrotum +C0495083|T047|PT|N49.2|ICD10CM|Inflammatory disorders of scrotum|Inflammatory disorders of scrotum +C0495083|T047|AB|N49.2|ICD10CM|Inflammatory disorders of scrotum|Inflammatory disorders of scrotum +C0238419|T047|PT|N49.3|ICD10CM|Fournier gangrene|Fournier gangrene +C0238419|T047|AB|N49.3|ICD10CM|Fournier gangrene|Fournier gangrene +C1398501|T047|ET|N49.8|ICD10CM|Inflammation of multiple sites in male genital organs|Inflammation of multiple sites in male genital organs +C0477764|T047|AB|N49.8|ICD10CM|Inflammatory disorders of oth male genital organs|Inflammatory disorders of oth male genital organs +C0477764|T047|PT|N49.8|ICD10CM|Inflammatory disorders of other specified male genital organs|Inflammatory disorders of other specified male genital organs +C0477764|T047|PT|N49.8|ICD10|Inflammatory disorders of other specified male genital organs|Inflammatory disorders of other specified male genital organs +C2903061|T047|ET|N49.9|ICD10CM|Abscess of unspecified male genital organ|Abscess of unspecified male genital organ +C2903062|T047|ET|N49.9|ICD10CM|Boil of unspecified male genital organ|Boil of unspecified male genital organ +C2903063|T047|ET|N49.9|ICD10CM|Carbuncle of unspecified male genital organ|Carbuncle of unspecified male genital organ +C2903064|T046|ET|N49.9|ICD10CM|Cellulitis of unspecified male genital organ|Cellulitis of unspecified male genital organ +C0477765|T047|PT|N49.9|ICD10|Inflammatory disorder of unspecified male genital organ|Inflammatory disorder of unspecified male genital organ +C0477765|T047|PT|N49.9|ICD10CM|Inflammatory disorder of unspecified male genital organ|Inflammatory disorder of unspecified male genital organ +C0477765|T047|AB|N49.9|ICD10CM|Inflammatory disorder of unspecified male genital organ|Inflammatory disorder of unspecified male genital organ +C2903065|T047|AB|N50|ICD10CM|Other and unspecified disorders of male genital organs|Other and unspecified disorders of male genital organs +C2903065|T047|HT|N50|ICD10CM|Other and unspecified disorders of male genital organs|Other and unspecified disorders of male genital organs +C0156311|T047|HT|N50|ICD10|Other disorders of male genital organs|Other disorders of male genital organs +C0156312|T047|PT|N50.0|ICD10|Atrophy of testis|Atrophy of testis +C0156312|T047|PT|N50.0|ICD10CM|Atrophy of testis|Atrophy of testis +C0156312|T047|AB|N50.0|ICD10CM|Atrophy of testis|Atrophy of testis +C2903066|T047|ET|N50.1|ICD10CM|Hematocele, NOS, of male genital organs|Hematocele, NOS, of male genital organs +C2903067|T046|ET|N50.1|ICD10CM|Hemorrhage of male genital organs|Hemorrhage of male genital organs +C1398510|T047|ET|N50.1|ICD10CM|Thrombosis of male genital organs|Thrombosis of male genital organs +C0042374|T047|PT|N50.1|ICD10CM|Vascular disorders of male genital organs|Vascular disorders of male genital organs +C0042374|T047|AB|N50.1|ICD10CM|Vascular disorders of male genital organs|Vascular disorders of male genital organs +C0042374|T047|PT|N50.1|ICD10|Vascular disorders of male genital organs|Vascular disorders of male genital organs +C0037859|T047|PT|N50.3|ICD10CM|Cyst of epididymis|Cyst of epididymis +C0037859|T047|AB|N50.3|ICD10CM|Cyst of epididymis|Cyst of epididymis +C0029782|T047|AB|N50.8|ICD10CM|Other specified disorders of male genital organs|Other specified disorders of male genital organs +C0029782|T047|HT|N50.8|ICD10CM|Other specified disorders of male genital organs|Other specified disorders of male genital organs +C0029782|T047|PT|N50.8|ICD10|Other specified disorders of male genital organs|Other specified disorders of male genital organs +C0039591|T184|HT|N50.81|ICD10CM|Testicular pain|Testicular pain +C0039591|T184|AB|N50.81|ICD10CM|Testicular pain|Testicular pain +C2129031|T184|PT|N50.811|ICD10CM|Right testicular pain|Right testicular pain +C2129031|T184|AB|N50.811|ICD10CM|Right testicular pain|Right testicular pain +C2129032|T184|PT|N50.812|ICD10CM|Left testicular pain|Left testicular pain +C2129032|T184|AB|N50.812|ICD10CM|Left testicular pain|Left testicular pain +C4268890|T184|AB|N50.819|ICD10CM|Testicular pain, unspecified|Testicular pain, unspecified +C4268890|T184|PT|N50.819|ICD10CM|Testicular pain, unspecified|Testicular pain, unspecified +C0236078|T184|PT|N50.82|ICD10CM|Scrotal pain|Scrotal pain +C0236078|T184|AB|N50.82|ICD10CM|Scrotal pain|Scrotal pain +C4268891|T047|ET|N50.89|ICD10CM|Atrophy of scrotum, seminal vesicle, spermatic cord, tunica vaginalis and vas deferens|Atrophy of scrotum, seminal vesicle, spermatic cord, tunica vaginalis and vas deferens +C4268892|T047|ET|N50.89|ICD10CM|Chylocele, tunica vaginalis (nonfilarial) NOS|Chylocele, tunica vaginalis (nonfilarial) NOS +C4268893|T047|ET|N50.89|ICD10CM|Edema of scrotum, seminal vesicle, spermatic cord, tunica vaginalis and vas deferens|Edema of scrotum, seminal vesicle, spermatic cord, tunica vaginalis and vas deferens +C4268894|T020|ET|N50.89|ICD10CM|Hypertrophy of scrotum, seminal vesicle, spermatic cord, tunica vaginalis and vas deferens|Hypertrophy of scrotum, seminal vesicle, spermatic cord, tunica vaginalis and vas deferens +C0029782|T047|AB|N50.89|ICD10CM|Other specified disorders of the male genital organs|Other specified disorders of the male genital organs +C0029782|T047|PT|N50.89|ICD10CM|Other specified disorders of the male genital organs|Other specified disorders of the male genital organs +C4268895|T047|ET|N50.89|ICD10CM|Stricture of spermatic cord, tunica vaginalis, and vas deferens|Stricture of spermatic cord, tunica vaginalis, and vas deferens +C4268896|T047|ET|N50.89|ICD10CM|Ulcer of scrotum, seminal vesicle, spermatic cord, testis, tunica vaginalis and vas deferens|Ulcer of scrotum, seminal vesicle, spermatic cord, testis, tunica vaginalis and vas deferens +C1397497|T047|ET|N50.89|ICD10CM|Urethroscrotal fistula|Urethroscrotal fistula +C0017412|T047|PT|N50.9|ICD10CM|Disorder of male genital organs, unspecified|Disorder of male genital organs, unspecified +C0017412|T047|AB|N50.9|ICD10CM|Disorder of male genital organs, unspecified|Disorder of male genital organs, unspecified +C0017412|T047|PT|N50.9|ICD10|Disorder of male genital organs, unspecified|Disorder of male genital organs, unspecified +C0156314|T047|AB|N51|ICD10CM|Disorders of male genital organs in diseases classd elswhr|Disorders of male genital organs in diseases classd elswhr +C0156314|T047|PT|N51|ICD10CM|Disorders of male genital organs in diseases classified elsewhere|Disorders of male genital organs in diseases classified elsewhere +C0156314|T047|HT|N51|ICD10|Disorders of male genital organs in diseases classified elsewhere|Disorders of male genital organs in diseases classified elsewhere +C0477766|T047|PT|N51.0|ICD10|Disorders of prostate in diseases classified elsewhere|Disorders of prostate in diseases classified elsewhere +C0477767|T047|PT|N51.1|ICD10|Disorders of testis and epididymis in diseases classified elsewhere|Disorders of testis and epididymis in diseases classified elsewhere +C0477768|T047|PT|N51.2|ICD10|Balanitis in diseases classified elsewhere|Balanitis in diseases classified elsewhere +C0477769|T047|PT|N51.8|ICD10|Other disorders of male genital organs in diseases classified elsewhere|Other disorders of male genital organs in diseases classified elsewhere +C0242350|T047|HT|N52|ICD10CM|Male erectile dysfunction|Male erectile dysfunction +C0242350|T047|AB|N52|ICD10CM|Male erectile dysfunction|Male erectile dysfunction +C3647902|T047|HT|N52.0|ICD10CM|Vasculogenic erectile dysfunction|Vasculogenic erectile dysfunction +C3647902|T047|AB|N52.0|ICD10CM|Vasculogenic erectile dysfunction|Vasculogenic erectile dysfunction +C2903075|T047|AB|N52.01|ICD10CM|Erectile dysfunction due to arterial insufficiency|Erectile dysfunction due to arterial insufficiency +C2903075|T047|PT|N52.01|ICD10CM|Erectile dysfunction due to arterial insufficiency|Erectile dysfunction due to arterial insufficiency +C2903076|T047|PT|N52.02|ICD10CM|Corporo-venous occlusive erectile dysfunction|Corporo-venous occlusive erectile dysfunction +C2903076|T047|AB|N52.02|ICD10CM|Corporo-venous occlusive erectile dysfunction|Corporo-venous occlusive erectile dysfunction +C2903077|T047|AB|N52.03|ICD10CM|Comb artrl insuff & corporo-venous occlusv erectile dysfnct|Comb artrl insuff & corporo-venous occlusv erectile dysfnct +C2903077|T047|PT|N52.03|ICD10CM|Combined arterial insufficiency and corporo-venous occlusive erectile dysfunction|Combined arterial insufficiency and corporo-venous occlusive erectile dysfunction +C2903078|T047|AB|N52.1|ICD10CM|Erectile dysfunction due to diseases classified elsewhere|Erectile dysfunction due to diseases classified elsewhere +C2903078|T047|PT|N52.1|ICD10CM|Erectile dysfunction due to diseases classified elsewhere|Erectile dysfunction due to diseases classified elsewhere +C2903079|T047|AB|N52.2|ICD10CM|Drug-induced erectile dysfunction|Drug-induced erectile dysfunction +C2903079|T047|PT|N52.2|ICD10CM|Drug-induced erectile dysfunction|Drug-induced erectile dysfunction +C4268897|T046|AB|N52.3|ICD10CM|Postprocedural erectile dysfunction|Postprocedural erectile dysfunction +C4268897|T046|HT|N52.3|ICD10CM|Postprocedural erectile dysfunction|Postprocedural erectile dysfunction +C2903081|T046|PT|N52.31|ICD10CM|Erectile dysfunction following radical prostatectomy|Erectile dysfunction following radical prostatectomy +C2903081|T046|AB|N52.31|ICD10CM|Erectile dysfunction following radical prostatectomy|Erectile dysfunction following radical prostatectomy +C2903082|T047|PT|N52.32|ICD10CM|Erectile dysfunction following radical cystectomy|Erectile dysfunction following radical cystectomy +C2903082|T047|AB|N52.32|ICD10CM|Erectile dysfunction following radical cystectomy|Erectile dysfunction following radical cystectomy +C2903083|T047|AB|N52.33|ICD10CM|Erectile dysfunction following urethral surgery|Erectile dysfunction following urethral surgery +C2903083|T047|PT|N52.33|ICD10CM|Erectile dysfunction following urethral surgery|Erectile dysfunction following urethral surgery +C2903084|T047|PT|N52.34|ICD10CM|Erectile dysfunction following simple prostatectomy|Erectile dysfunction following simple prostatectomy +C2903084|T047|AB|N52.34|ICD10CM|Erectile dysfunction following simple prostatectomy|Erectile dysfunction following simple prostatectomy +C4268898|T047|AB|N52.35|ICD10CM|Erectile dysfunction following radiation therapy|Erectile dysfunction following radiation therapy +C4268898|T047|PT|N52.35|ICD10CM|Erectile dysfunction following radiation therapy|Erectile dysfunction following radiation therapy +C4268899|T047|AB|N52.36|ICD10CM|Erectile dysfunction following interstitial seed therapy|Erectile dysfunction following interstitial seed therapy +C4268899|T047|PT|N52.36|ICD10CM|Erectile dysfunction following interstitial seed therapy|Erectile dysfunction following interstitial seed therapy +C4268901|T047|ET|N52.37|ICD10CM|Erectile dysfunction following cryotherapy|Erectile dysfunction following cryotherapy +C4268902|T047|ET|N52.37|ICD10CM|Erectile dysfunction following other prostate ablative therapies|Erectile dysfunction following other prostate ablative therapies +C4268900|T047|AB|N52.37|ICD10CM|Erectile dysfunction following prostate ablative therapy|Erectile dysfunction following prostate ablative therapy +C4268900|T047|PT|N52.37|ICD10CM|Erectile dysfunction following prostate ablative therapy|Erectile dysfunction following prostate ablative therapy +C4268903|T047|ET|N52.37|ICD10CM|Erectile dysfunction following ultrasound ablative therapies|Erectile dysfunction following ultrasound ablative therapies +C4268904|T047|AB|N52.39|ICD10CM|Other and unspecified postprocedural erectile dysfunction|Other and unspecified postprocedural erectile dysfunction +C4268904|T047|PT|N52.39|ICD10CM|Other and unspecified postprocedural erectile dysfunction|Other and unspecified postprocedural erectile dysfunction +C2903086|T047|AB|N52.8|ICD10CM|Other male erectile dysfunction|Other male erectile dysfunction +C2903086|T047|PT|N52.8|ICD10CM|Other male erectile dysfunction|Other male erectile dysfunction +C0242350|T047|ET|N52.9|ICD10CM|Impotence NOS|Impotence NOS +C0242350|T047|AB|N52.9|ICD10CM|Male erectile dysfunction, unspecified|Male erectile dysfunction, unspecified +C0242350|T047|PT|N52.9|ICD10CM|Male erectile dysfunction, unspecified|Male erectile dysfunction, unspecified +C2903087|T047|HT|N53|ICD10CM|Other male sexual dysfunction|Other male sexual dysfunction +C2903087|T047|AB|N53|ICD10CM|Other male sexual dysfunction|Other male sexual dysfunction +C2919133|T046|HT|N53.1|ICD10CM|Ejaculatory dysfunction|Ejaculatory dysfunction +C2919133|T046|AB|N53.1|ICD10CM|Ejaculatory dysfunction|Ejaculatory dysfunction +C0234047|T046|PT|N53.11|ICD10CM|Retarded ejaculation|Retarded ejaculation +C0234047|T046|AB|N53.11|ICD10CM|Retarded ejaculation|Retarded ejaculation +C0278107|T184|PT|N53.12|ICD10CM|Painful ejaculation|Painful ejaculation +C0278107|T184|AB|N53.12|ICD10CM|Painful ejaculation|Painful ejaculation +C2903089|T046|AB|N53.13|ICD10CM|Anejaculatory orgasm|Anejaculatory orgasm +C2903089|T046|PT|N53.13|ICD10CM|Anejaculatory orgasm|Anejaculatory orgasm +C0403673|T046|PT|N53.14|ICD10CM|Retrograde ejaculation|Retrograde ejaculation +C0403673|T046|AB|N53.14|ICD10CM|Retrograde ejaculation|Retrograde ejaculation +C2919133|T046|ET|N53.19|ICD10CM|Ejaculatory dysfunction NOS|Ejaculatory dysfunction NOS +C2903090|T046|AB|N53.19|ICD10CM|Other ejaculatory dysfunction|Other ejaculatory dysfunction +C2903090|T046|PT|N53.19|ICD10CM|Other ejaculatory dysfunction|Other ejaculatory dysfunction +C2903087|T047|AB|N53.8|ICD10CM|Other male sexual dysfunction|Other male sexual dysfunction +C2903087|T047|PT|N53.8|ICD10CM|Other male sexual dysfunction|Other male sexual dysfunction +C1112443|T047|AB|N53.9|ICD10CM|Unspecified male sexual dysfunction|Unspecified male sexual dysfunction +C1112443|T047|PT|N53.9|ICD10CM|Unspecified male sexual dysfunction|Unspecified male sexual dysfunction +C1305934|T046|HT|N60|ICD10CM|Benign mammary dysplasia|Benign mammary dysplasia +C1305934|T046|AB|N60|ICD10CM|Benign mammary dysplasia|Benign mammary dysplasia +C1305934|T046|HT|N60|ICD10|Benign mammary dysplasia|Benign mammary dysplasia +C0016034|T047|ET|N60|ICD10CM|fibrocystic mastopathy|fibrocystic mastopathy +C0006145|T047|HT|N60-N64.9|ICD10|Disorders of breast|Disorders of breast +C0006145|T047|HT|N60-N65|ICD10CM|Disorders of breast (N60-N65)|Disorders of breast (N60-N65) +C0006144|T020|ET|N60.0|ICD10CM|Cyst of breast|Cyst of breast +C0037619|T190|PT|N60.0|ICD10|Solitary cyst of breast|Solitary cyst of breast +C0037619|T190|HT|N60.0|ICD10CM|Solitary cyst of breast|Solitary cyst of breast +C0037619|T190|AB|N60.0|ICD10CM|Solitary cyst of breast|Solitary cyst of breast +C2903091|T190|AB|N60.01|ICD10CM|Solitary cyst of right breast|Solitary cyst of right breast +C2903091|T190|PT|N60.01|ICD10CM|Solitary cyst of right breast|Solitary cyst of right breast +C2903092|T190|AB|N60.02|ICD10CM|Solitary cyst of left breast|Solitary cyst of left breast +C2903092|T190|PT|N60.02|ICD10CM|Solitary cyst of left breast|Solitary cyst of left breast +C0037619|T190|AB|N60.09|ICD10CM|Solitary cyst of unspecified breast|Solitary cyst of unspecified breast +C0037619|T190|PT|N60.09|ICD10CM|Solitary cyst of unspecified breast|Solitary cyst of unspecified breast +C1527375|T047|ET|N60.1|ICD10CM|Cystic breast|Cystic breast +C0016034|T047|PT|N60.1|ICD10|Diffuse cystic mastopathy|Diffuse cystic mastopathy +C0016034|T047|HT|N60.1|ICD10CM|Diffuse cystic mastopathy|Diffuse cystic mastopathy +C0016034|T047|AB|N60.1|ICD10CM|Diffuse cystic mastopathy|Diffuse cystic mastopathy +C0016034|T047|ET|N60.1|ICD10CM|Fibrocystic disease of breast|Fibrocystic disease of breast +C2903093|T047|AB|N60.11|ICD10CM|Diffuse cystic mastopathy of right breast|Diffuse cystic mastopathy of right breast +C2903093|T047|PT|N60.11|ICD10CM|Diffuse cystic mastopathy of right breast|Diffuse cystic mastopathy of right breast +C2903094|T047|AB|N60.12|ICD10CM|Diffuse cystic mastopathy of left breast|Diffuse cystic mastopathy of left breast +C2903094|T047|PT|N60.12|ICD10CM|Diffuse cystic mastopathy of left breast|Diffuse cystic mastopathy of left breast +C2903095|T047|AB|N60.19|ICD10CM|Diffuse cystic mastopathy of unspecified breast|Diffuse cystic mastopathy of unspecified breast +C2903095|T047|PT|N60.19|ICD10CM|Diffuse cystic mastopathy of unspecified breast|Diffuse cystic mastopathy of unspecified breast +C1305875|T047|ET|N60.2|ICD10CM|Adenofibrosis of breast|Adenofibrosis of breast +C1305875|T047|HT|N60.2|ICD10CM|Fibroadenosis of breast|Fibroadenosis of breast +C1305875|T047|AB|N60.2|ICD10CM|Fibroadenosis of breast|Fibroadenosis of breast +C1305875|T047|PT|N60.2|ICD10|Fibroadenosis of breast|Fibroadenosis of breast +C2903096|T047|PT|N60.21|ICD10CM|Fibroadenosis of right breast|Fibroadenosis of right breast +C2903096|T047|AB|N60.21|ICD10CM|Fibroadenosis of right breast|Fibroadenosis of right breast +C2903097|T047|PT|N60.22|ICD10CM|Fibroadenosis of left breast|Fibroadenosis of left breast +C2903097|T047|AB|N60.22|ICD10CM|Fibroadenosis of left breast|Fibroadenosis of left breast +C2903098|T047|AB|N60.29|ICD10CM|Fibroadenosis of unspecified breast|Fibroadenosis of unspecified breast +C2903098|T047|PT|N60.29|ICD10CM|Fibroadenosis of unspecified breast|Fibroadenosis of unspecified breast +C1394467|T047|ET|N60.3|ICD10CM|Cystic mastopathy with epithelial proliferation|Cystic mastopathy with epithelial proliferation +C0156318|T047|PT|N60.3|ICD10|Fibrosclerosis of breast|Fibrosclerosis of breast +C0156318|T047|HT|N60.3|ICD10CM|Fibrosclerosis of breast|Fibrosclerosis of breast +C0156318|T047|AB|N60.3|ICD10CM|Fibrosclerosis of breast|Fibrosclerosis of breast +C2903099|T047|AB|N60.31|ICD10CM|Fibrosclerosis of right breast|Fibrosclerosis of right breast +C2903099|T047|PT|N60.31|ICD10CM|Fibrosclerosis of right breast|Fibrosclerosis of right breast +C2903100|T047|AB|N60.32|ICD10CM|Fibrosclerosis of left breast|Fibrosclerosis of left breast +C2903100|T047|PT|N60.32|ICD10CM|Fibrosclerosis of left breast|Fibrosclerosis of left breast +C2903101|T047|AB|N60.39|ICD10CM|Fibrosclerosis of unspecified breast|Fibrosclerosis of unspecified breast +C2903101|T047|PT|N60.39|ICD10CM|Fibrosclerosis of unspecified breast|Fibrosclerosis of unspecified breast +C0152442|T047|HT|N60.4|ICD10CM|Mammary duct ectasia|Mammary duct ectasia +C0152442|T047|AB|N60.4|ICD10CM|Mammary duct ectasia|Mammary duct ectasia +C0152442|T047|PT|N60.4|ICD10|Mammary duct ectasia|Mammary duct ectasia +C2903102|T047|PT|N60.41|ICD10CM|Mammary duct ectasia of right breast|Mammary duct ectasia of right breast +C2903102|T047|AB|N60.41|ICD10CM|Mammary duct ectasia of right breast|Mammary duct ectasia of right breast +C2903103|T047|PT|N60.42|ICD10CM|Mammary duct ectasia of left breast|Mammary duct ectasia of left breast +C2903103|T047|AB|N60.42|ICD10CM|Mammary duct ectasia of left breast|Mammary duct ectasia of left breast +C2903104|T047|AB|N60.49|ICD10CM|Mammary duct ectasia of unspecified breast|Mammary duct ectasia of unspecified breast +C2903104|T047|PT|N60.49|ICD10CM|Mammary duct ectasia of unspecified breast|Mammary duct ectasia of unspecified breast +C0405459|T047|HT|N60.8|ICD10CM|Other benign mammary dysplasias|Other benign mammary dysplasias +C0405459|T047|AB|N60.8|ICD10CM|Other benign mammary dysplasias|Other benign mammary dysplasias +C0405459|T047|PT|N60.8|ICD10|Other benign mammary dysplasias|Other benign mammary dysplasias +C2903105|T047|AB|N60.81|ICD10CM|Other benign mammary dysplasias of right breast|Other benign mammary dysplasias of right breast +C2903105|T047|PT|N60.81|ICD10CM|Other benign mammary dysplasias of right breast|Other benign mammary dysplasias of right breast +C2903106|T047|AB|N60.82|ICD10CM|Other benign mammary dysplasias of left breast|Other benign mammary dysplasias of left breast +C2903106|T047|PT|N60.82|ICD10CM|Other benign mammary dysplasias of left breast|Other benign mammary dysplasias of left breast +C2903107|T047|AB|N60.89|ICD10CM|Other benign mammary dysplasias of unspecified breast|Other benign mammary dysplasias of unspecified breast +C2903107|T047|PT|N60.89|ICD10CM|Other benign mammary dysplasias of unspecified breast|Other benign mammary dysplasias of unspecified breast +C1305934|T046|PT|N60.9|ICD10|Benign mammary dysplasia, unspecified|Benign mammary dysplasia, unspecified +C1305934|T046|AB|N60.9|ICD10CM|Unspecified benign mammary dysplasia|Unspecified benign mammary dysplasia +C1305934|T046|HT|N60.9|ICD10CM|Unspecified benign mammary dysplasia|Unspecified benign mammary dysplasia +C2903108|T046|AB|N60.91|ICD10CM|Unspecified benign mammary dysplasia of right breast|Unspecified benign mammary dysplasia of right breast +C2903108|T046|PT|N60.91|ICD10CM|Unspecified benign mammary dysplasia of right breast|Unspecified benign mammary dysplasia of right breast +C2903109|T046|AB|N60.92|ICD10CM|Unspecified benign mammary dysplasia of left breast|Unspecified benign mammary dysplasia of left breast +C2903109|T046|PT|N60.92|ICD10CM|Unspecified benign mammary dysplasia of left breast|Unspecified benign mammary dysplasia of left breast +C2903110|T046|AB|N60.99|ICD10CM|Unspecified benign mammary dysplasia of unspecified breast|Unspecified benign mammary dysplasia of unspecified breast +C2903110|T046|PT|N60.99|ICD10CM|Unspecified benign mammary dysplasia of unspecified breast|Unspecified benign mammary dysplasia of unspecified breast +C3495439|T047|AB|N61|ICD10CM|Inflammatory disorders of breast|Inflammatory disorders of breast +C3495439|T047|HT|N61|ICD10CM|Inflammatory disorders of breast|Inflammatory disorders of breast +C3495439|T047|PT|N61|ICD10|Inflammatory disorders of breast|Inflammatory disorders of breast +C4268908|T047|ET|N61.0|ICD10CM|Cellulitis (acute) (nonpuerperal) (subacute) of breast NOS|Cellulitis (acute) (nonpuerperal) (subacute) of breast NOS +C4268909|T047|ET|N61.0|ICD10CM|Cellulitis (acute) (nonpuerperal) (subacute) of nipple NOS|Cellulitis (acute) (nonpuerperal) (subacute) of nipple NOS +C4268906|T047|ET|N61.0|ICD10CM|Infective mastitis (acute) (nonpuerperal) (subacute)|Infective mastitis (acute) (nonpuerperal) (subacute) +C4268907|T047|ET|N61.0|ICD10CM|Mastitis (acute) (nonpuerperal) (subacute) NOS|Mastitis (acute) (nonpuerperal) (subacute) NOS +C4268905|T047|AB|N61.0|ICD10CM|Mastitis without abscess|Mastitis without abscess +C4268905|T047|PT|N61.0|ICD10CM|Mastitis without abscess|Mastitis without abscess +C4268911|T047|ET|N61.1|ICD10CM|Abscess (acute) (chronic) (nonpuerperal) of areola|Abscess (acute) (chronic) (nonpuerperal) of areola +C4270823|T047|ET|N61.1|ICD10CM|Abscess (acute) (chronic) (nonpuerperal) of breast|Abscess (acute) (chronic) (nonpuerperal) of breast +C4268910|T047|AB|N61.1|ICD10CM|Abscess of the breast and nipple|Abscess of the breast and nipple +C4268910|T047|PT|N61.1|ICD10CM|Abscess of the breast and nipple|Abscess of the breast and nipple +C0263027|T047|ET|N61.1|ICD10CM|Carbuncle of breast|Carbuncle of breast +C4268912|T047|ET|N61.1|ICD10CM|Mastitis with abscess|Mastitis with abscess +C0018418|T047|ET|N62|ICD10CM|Gynecomastia|Gynecomastia +C0020565|T046|PT|N62|ICD10CM|Hypertrophy of breast|Hypertrophy of breast +C0020565|T046|AB|N62|ICD10CM|Hypertrophy of breast|Hypertrophy of breast +C0020565|T046|PT|N62|ICD10|Hypertrophy of breast|Hypertrophy of breast +C2225524|T033|ET|N62|ICD10CM|Hypertrophy of breast NOS|Hypertrophy of breast NOS +C0269262|T047|ET|N62|ICD10CM|Massive pubertal hypertrophy of breast|Massive pubertal hypertrophy of breast +C0567490|T033|ET|N63|ICD10CM|Nodule(s) NOS in breast|Nodule(s) NOS in breast +C0024103|T033|AB|N63|ICD10CM|Unspecified lump in breast|Unspecified lump in breast +C0024103|T033|HT|N63|ICD10CM|Unspecified lump in breast|Unspecified lump in breast +C0024103|T033|PT|N63|ICD10|Unspecified lump in breast|Unspecified lump in breast +C4509358|T033|AB|N63.0|ICD10CM|Unspecified lump in unspecified breast|Unspecified lump in unspecified breast +C4509358|T033|PT|N63.0|ICD10CM|Unspecified lump in unspecified breast|Unspecified lump in unspecified breast +C4509359|T033|AB|N63.1|ICD10CM|Unspecified lump in the right breast|Unspecified lump in the right breast +C4509359|T033|HT|N63.1|ICD10CM|Unspecified lump in the right breast|Unspecified lump in the right breast +C4509360|T033|AB|N63.10|ICD10CM|Unspecified lump in the right breast, unspecified quadrant|Unspecified lump in the right breast, unspecified quadrant +C4509360|T033|PT|N63.10|ICD10CM|Unspecified lump in the right breast, unspecified quadrant|Unspecified lump in the right breast, unspecified quadrant +C4509361|T033|AB|N63.11|ICD10CM|Unspecified lump in the right breast, upper outer quadrant|Unspecified lump in the right breast, upper outer quadrant +C4509361|T033|PT|N63.11|ICD10CM|Unspecified lump in the right breast, upper outer quadrant|Unspecified lump in the right breast, upper outer quadrant +C4509362|T033|AB|N63.12|ICD10CM|Unspecified lump in the right breast, upper inner quadrant|Unspecified lump in the right breast, upper inner quadrant +C4509362|T033|PT|N63.12|ICD10CM|Unspecified lump in the right breast, upper inner quadrant|Unspecified lump in the right breast, upper inner quadrant +C4509363|T033|AB|N63.13|ICD10CM|Unspecified lump in the right breast, lower outer quadrant|Unspecified lump in the right breast, lower outer quadrant +C4509363|T033|PT|N63.13|ICD10CM|Unspecified lump in the right breast, lower outer quadrant|Unspecified lump in the right breast, lower outer quadrant +C4509364|T033|AB|N63.14|ICD10CM|Unspecified lump in the right breast, lower inner quadrant|Unspecified lump in the right breast, lower inner quadrant +C4509364|T033|PT|N63.14|ICD10CM|Unspecified lump in the right breast, lower inner quadrant|Unspecified lump in the right breast, lower inner quadrant +C5140868|T033|AB|N63.15|ICD10CM|Unspecified lump in the right breast, overlapping quadrants|Unspecified lump in the right breast, overlapping quadrants +C5140868|T033|PT|N63.15|ICD10CM|Unspecified lump in the right breast, overlapping quadrants|Unspecified lump in the right breast, overlapping quadrants +C4509365|T033|AB|N63.2|ICD10CM|Unspecified lump in the left breast|Unspecified lump in the left breast +C4509365|T033|HT|N63.2|ICD10CM|Unspecified lump in the left breast|Unspecified lump in the left breast +C4509366|T033|AB|N63.20|ICD10CM|Unspecified lump in the left breast, unspecified quadrant|Unspecified lump in the left breast, unspecified quadrant +C4509366|T033|PT|N63.20|ICD10CM|Unspecified lump in the left breast, unspecified quadrant|Unspecified lump in the left breast, unspecified quadrant +C4509367|T033|AB|N63.21|ICD10CM|Unspecified lump in the left breast, upper outer quadrant|Unspecified lump in the left breast, upper outer quadrant +C4509367|T033|PT|N63.21|ICD10CM|Unspecified lump in the left breast, upper outer quadrant|Unspecified lump in the left breast, upper outer quadrant +C4509368|T033|AB|N63.22|ICD10CM|Unspecified lump in the left breast, upper inner quadrant|Unspecified lump in the left breast, upper inner quadrant +C4509368|T033|PT|N63.22|ICD10CM|Unspecified lump in the left breast, upper inner quadrant|Unspecified lump in the left breast, upper inner quadrant +C4509369|T033|AB|N63.23|ICD10CM|Unspecified lump in the left breast, lower outer quadrant|Unspecified lump in the left breast, lower outer quadrant +C4509369|T033|PT|N63.23|ICD10CM|Unspecified lump in the left breast, lower outer quadrant|Unspecified lump in the left breast, lower outer quadrant +C4509370|T033|AB|N63.24|ICD10CM|Unspecified lump in the left breast, lower inner quadrant|Unspecified lump in the left breast, lower inner quadrant +C4509370|T033|PT|N63.24|ICD10CM|Unspecified lump in the left breast, lower inner quadrant|Unspecified lump in the left breast, lower inner quadrant +C5140869|T033|AB|N63.25|ICD10CM|Unspecified lump in the left breast, overlapping quadrants|Unspecified lump in the left breast, overlapping quadrants +C5140869|T033|PT|N63.25|ICD10CM|Unspecified lump in the left breast, overlapping quadrants|Unspecified lump in the left breast, overlapping quadrants +C4509371|T033|AB|N63.3|ICD10CM|Unspecified lump in axillary tail|Unspecified lump in axillary tail +C4509371|T033|HT|N63.3|ICD10CM|Unspecified lump in axillary tail|Unspecified lump in axillary tail +C4509372|T033|AB|N63.31|ICD10CM|Unspecified lump in axillary tail of the right breast|Unspecified lump in axillary tail of the right breast +C4509372|T033|PT|N63.31|ICD10CM|Unspecified lump in axillary tail of the right breast|Unspecified lump in axillary tail of the right breast +C4509373|T033|AB|N63.32|ICD10CM|Unspecified lump in axillary tail of the left breast|Unspecified lump in axillary tail of the left breast +C4509373|T033|PT|N63.32|ICD10CM|Unspecified lump in axillary tail of the left breast|Unspecified lump in axillary tail of the left breast +C4509374|T033|AB|N63.4|ICD10CM|Unspecified lump in breast, subareolar|Unspecified lump in breast, subareolar +C4509374|T033|HT|N63.4|ICD10CM|Unspecified lump in breast, subareolar|Unspecified lump in breast, subareolar +C4509375|T033|AB|N63.41|ICD10CM|Unspecified lump in right breast, subareolar|Unspecified lump in right breast, subareolar +C4509375|T033|PT|N63.41|ICD10CM|Unspecified lump in right breast, subareolar|Unspecified lump in right breast, subareolar +C4509376|T033|AB|N63.42|ICD10CM|Unspecified lump in left breast, subareolar|Unspecified lump in left breast, subareolar +C4509376|T033|PT|N63.42|ICD10CM|Unspecified lump in left breast, subareolar|Unspecified lump in left breast, subareolar +C0156320|T047|HT|N64|ICD10|Other disorders of breast|Other disorders of breast +C0156320|T047|HT|N64|ICD10CM|Other disorders of breast|Other disorders of breast +C0156320|T047|AB|N64|ICD10CM|Other disorders of breast|Other disorders of breast +C0405482|T190|PT|N64.0|ICD10CM|Fissure and fistula of nipple|Fissure and fistula of nipple +C0405482|T190|AB|N64.0|ICD10CM|Fissure and fistula of nipple|Fissure and fistula of nipple +C0405482|T190|PT|N64.0|ICD10|Fissure and fistula of nipple|Fissure and fistula of nipple +C0866242|T047|ET|N64.1|ICD10CM|Fat necrosis (segmental) of breast|Fat necrosis (segmental) of breast +C0156321|T047|PT|N64.1|ICD10|Fat necrosis of breast|Fat necrosis of breast +C0156321|T047|PT|N64.1|ICD10CM|Fat necrosis of breast|Fat necrosis of breast +C0156321|T047|AB|N64.1|ICD10CM|Fat necrosis of breast|Fat necrosis of breast +C0151511|T020|PT|N64.2|ICD10CM|Atrophy of breast|Atrophy of breast +C0151511|T020|AB|N64.2|ICD10CM|Atrophy of breast|Atrophy of breast +C0151511|T020|PT|N64.2|ICD10|Atrophy of breast|Atrophy of breast +C0235660|T047|PT|N64.3|ICD10AE|Galactorrhea not associated with childbirth|Galactorrhea not associated with childbirth +C0235660|T047|PT|N64.3|ICD10CM|Galactorrhea not associated with childbirth|Galactorrhea not associated with childbirth +C0235660|T047|AB|N64.3|ICD10CM|Galactorrhea not associated with childbirth|Galactorrhea not associated with childbirth +C0235660|T047|PT|N64.3|ICD10|Galactorrhoea not associated with childbirth|Galactorrhoea not associated with childbirth +C0024902|T184|PT|N64.4|ICD10|Mastodynia|Mastodynia +C0024902|T184|PT|N64.4|ICD10CM|Mastodynia|Mastodynia +C0024902|T184|AB|N64.4|ICD10CM|Mastodynia|Mastodynia +C0156324|T184|PT|N64.5|ICD10|Other signs and symptoms in breast|Other signs and symptoms in breast +C0156324|T184|HT|N64.5|ICD10CM|Other signs and symptoms in breast|Other signs and symptoms in breast +C0156324|T184|AB|N64.5|ICD10CM|Other signs and symptoms in breast|Other signs and symptoms in breast +C0269268|T184|PT|N64.51|ICD10CM|Induration of breast|Induration of breast +C0269268|T184|AB|N64.51|ICD10CM|Induration of breast|Induration of breast +C0149741|T184|PT|N64.52|ICD10CM|Nipple discharge|Nipple discharge +C0149741|T184|AB|N64.52|ICD10CM|Nipple discharge|Nipple discharge +C0221370|T047|PT|N64.53|ICD10CM|Retraction of nipple|Retraction of nipple +C0221370|T047|AB|N64.53|ICD10CM|Retraction of nipple|Retraction of nipple +C0156324|T184|PT|N64.59|ICD10CM|Other signs and symptoms in breast|Other signs and symptoms in breast +C0156324|T184|AB|N64.59|ICD10CM|Other signs and symptoms in breast|Other signs and symptoms in breast +C0156325|T047|HT|N64.8|ICD10CM|Other specified disorders of breast|Other specified disorders of breast +C0156325|T047|AB|N64.8|ICD10CM|Other specified disorders of breast|Other specified disorders of breast +C0156325|T047|PT|N64.8|ICD10|Other specified disorders of breast|Other specified disorders of breast +C2233848|T033|PT|N64.81|ICD10CM|Ptosis of breast|Ptosis of breast +C2233848|T033|AB|N64.81|ICD10CM|Ptosis of breast|Ptosis of breast +C0266013|T019|PT|N64.82|ICD10CM|Hypoplasia of breast|Hypoplasia of breast +C0266013|T019|AB|N64.82|ICD10CM|Hypoplasia of breast|Hypoplasia of breast +C0948473|T047|ET|N64.82|ICD10CM|Micromastia|Micromastia +C0152243|T020|ET|N64.89|ICD10CM|Galactocele|Galactocele +C0156325|T047|PT|N64.89|ICD10CM|Other specified disorders of breast|Other specified disorders of breast +C0156325|T047|AB|N64.89|ICD10CM|Other specified disorders of breast|Other specified disorders of breast +C0233390|T184|ET|N64.89|ICD10CM|Subinvolution of breast (postlactational)|Subinvolution of breast (postlactational) +C0006145|T047|PT|N64.9|ICD10|Disorder of breast, unspecified|Disorder of breast, unspecified +C0006145|T047|PT|N64.9|ICD10CM|Disorder of breast, unspecified|Disorder of breast, unspecified +C0006145|T047|AB|N64.9|ICD10CM|Disorder of breast, unspecified|Disorder of breast, unspecified +C2349581|T047|AB|N65|ICD10CM|Deformity and disproportion of reconstructed breast|Deformity and disproportion of reconstructed breast +C2349581|T047|HT|N65|ICD10CM|Deformity and disproportion of reconstructed breast|Deformity and disproportion of reconstructed breast +C2349575|T047|ET|N65.0|ICD10CM|Contour irregularity in reconstructed breast|Contour irregularity in reconstructed breast +C2349574|T047|PT|N65.0|ICD10CM|Deformity of reconstructed breast|Deformity of reconstructed breast +C2349574|T047|AB|N65.0|ICD10CM|Deformity of reconstructed breast|Deformity of reconstructed breast +C2349576|T047|ET|N65.0|ICD10CM|Excess tissue in reconstructed breast|Excess tissue in reconstructed breast +C2349577|T047|ET|N65.0|ICD10CM|Misshapen reconstructed breast|Misshapen reconstructed breast +C2349579|T047|ET|N65.1|ICD10CM|Breast asymmetry between native breast and reconstructed breast|Breast asymmetry between native breast and reconstructed breast +C2349580|T047|ET|N65.1|ICD10CM|Disproportion between native breast and reconstructed breast|Disproportion between native breast and reconstructed breast +C2349578|T047|PT|N65.1|ICD10CM|Disproportion of reconstructed breast|Disproportion of reconstructed breast +C2349578|T047|AB|N65.1|ICD10CM|Disproportion of reconstructed breast|Disproportion of reconstructed breast +C0392528|T047|ET|N70|ICD10CM|abscess (of) fallopian tube|abscess (of) fallopian tube +C0269035|T047|ET|N70|ICD10CM|abscess (of) ovary|abscess (of) ovary +C0034220|T047|ET|N70|ICD10CM|pyosalpinx|pyosalpinx +C0036133|T047|HT|N70|ICD10CM|Salpingitis and oophoritis|Salpingitis and oophoritis +C0036133|T047|AB|N70|ICD10CM|Salpingitis and oophoritis|Salpingitis and oophoritis +C0036133|T047|HT|N70|ICD10|Salpingitis and oophoritis|Salpingitis and oophoritis +C0036133|T047|ET|N70|ICD10CM|salpingo-oophoritis|salpingo-oophoritis +C0041343|T047|ET|N70|ICD10CM|tubo-ovarian abscess|tubo-ovarian abscess +C0036133|T047|ET|N70|ICD10CM|tubo-ovarian inflammatory disease|tubo-ovarian inflammatory disease +C0242172|T047|HT|N70-N77|ICD10CM|Inflammatory diseases of female pelvic organs (N70-N77)|Inflammatory diseases of female pelvic organs (N70-N77) +C0242172|T047|HT|N70-N77.9|ICD10|Inflammatory diseases of female pelvic organs|Inflammatory diseases of female pelvic organs +C0156327|T047|PT|N70.0|ICD10|Acute salpingitis and oophoritis|Acute salpingitis and oophoritis +C0156327|T047|HT|N70.0|ICD10CM|Acute salpingitis and oophoritis|Acute salpingitis and oophoritis +C0156327|T047|AB|N70.0|ICD10CM|Acute salpingitis and oophoritis|Acute salpingitis and oophoritis +C0269038|T047|PT|N70.01|ICD10CM|Acute salpingitis|Acute salpingitis +C0269038|T047|AB|N70.01|ICD10CM|Acute salpingitis|Acute salpingitis +C0269034|T047|PT|N70.02|ICD10CM|Acute oophoritis|Acute oophoritis +C0269034|T047|AB|N70.02|ICD10CM|Acute oophoritis|Acute oophoritis +C0156327|T047|PT|N70.03|ICD10CM|Acute salpingitis and oophoritis|Acute salpingitis and oophoritis +C0156327|T047|AB|N70.03|ICD10CM|Acute salpingitis and oophoritis|Acute salpingitis and oophoritis +C0156328|T047|HT|N70.1|ICD10CM|Chronic salpingitis and oophoritis|Chronic salpingitis and oophoritis +C0156328|T047|AB|N70.1|ICD10CM|Chronic salpingitis and oophoritis|Chronic salpingitis and oophoritis +C0156328|T047|PT|N70.1|ICD10|Chronic salpingitis and oophoritis|Chronic salpingitis and oophoritis +C0221376|T047|ET|N70.1|ICD10CM|Hydrosalpinx|Hydrosalpinx +C0269041|T047|PT|N70.11|ICD10CM|Chronic salpingitis|Chronic salpingitis +C0269041|T047|AB|N70.11|ICD10CM|Chronic salpingitis|Chronic salpingitis +C0269037|T047|PT|N70.12|ICD10CM|Chronic oophoritis|Chronic oophoritis +C0269037|T047|AB|N70.12|ICD10CM|Chronic oophoritis|Chronic oophoritis +C0156328|T047|PT|N70.13|ICD10CM|Chronic salpingitis and oophoritis|Chronic salpingitis and oophoritis +C0156328|T047|AB|N70.13|ICD10CM|Chronic salpingitis and oophoritis|Chronic salpingitis and oophoritis +C0036133|T047|HT|N70.9|ICD10CM|Salpingitis and oophoritis, unspecified|Salpingitis and oophoritis, unspecified +C0036133|T047|AB|N70.9|ICD10CM|Salpingitis and oophoritis, unspecified|Salpingitis and oophoritis, unspecified +C0036133|T047|PT|N70.9|ICD10|Salpingitis and oophoritis, unspecified|Salpingitis and oophoritis, unspecified +C0036130|T047|AB|N70.91|ICD10CM|Salpingitis, unspecified|Salpingitis, unspecified +C0036130|T047|PT|N70.91|ICD10CM|Salpingitis, unspecified|Salpingitis, unspecified +C0029051|T047|AB|N70.92|ICD10CM|Oophoritis, unspecified|Oophoritis, unspecified +C0029051|T047|PT|N70.92|ICD10CM|Oophoritis, unspecified|Oophoritis, unspecified +C0036133|T047|PT|N70.93|ICD10CM|Salpingitis and oophoritis, unspecified|Salpingitis and oophoritis, unspecified +C0036133|T047|AB|N70.93|ICD10CM|Salpingitis and oophoritis, unspecified|Salpingitis and oophoritis, unspecified +C4290238|T047|ET|N71|ICD10CM|endo (myo) metritis|endo (myo) metritis +C0156333|T047|HT|N71|ICD10CM|Inflammatory disease of uterus, except cervix|Inflammatory disease of uterus, except cervix +C0156333|T047|AB|N71|ICD10CM|Inflammatory disease of uterus, except cervix|Inflammatory disease of uterus, except cervix +C0156333|T047|HT|N71|ICD10|Inflammatory disease of uterus, except cervix|Inflammatory disease of uterus, except cervix +C0269048|T047|ET|N71|ICD10CM|metritis|metritis +C0269053|T047|ET|N71|ICD10CM|myometritis|myometritis +C0034215|T047|ET|N71|ICD10CM|pyometra|pyometra +C0878511|T047|ET|N71|ICD10CM|uterine abscess|uterine abscess +C0495085|T047|PT|N71.0|ICD10CM|Acute inflammatory disease of uterus|Acute inflammatory disease of uterus +C0495085|T047|AB|N71.0|ICD10CM|Acute inflammatory disease of uterus|Acute inflammatory disease of uterus +C0495085|T047|PT|N71.0|ICD10|Acute inflammatory disease of uterus|Acute inflammatory disease of uterus +C0495086|T047|PT|N71.1|ICD10|Chronic inflammatory disease of uterus|Chronic inflammatory disease of uterus +C0495086|T047|PT|N71.1|ICD10CM|Chronic inflammatory disease of uterus|Chronic inflammatory disease of uterus +C0495086|T047|AB|N71.1|ICD10CM|Chronic inflammatory disease of uterus|Chronic inflammatory disease of uterus +C0269047|T047|PT|N71.9|ICD10CM|Inflammatory disease of uterus, unspecified|Inflammatory disease of uterus, unspecified +C0269047|T047|AB|N71.9|ICD10CM|Inflammatory disease of uterus, unspecified|Inflammatory disease of uterus, unspecified +C0269047|T047|PT|N71.9|ICD10|Inflammatory disease of uterus, unspecified|Inflammatory disease of uterus, unspecified +C4290239|T047|ET|N72|ICD10CM|cervicitis (with or without erosion or ectropion)|cervicitis (with or without erosion or ectropion) +C4290240|T047|ET|N72|ICD10CM|endocervicitis (with or without erosion or ectropion)|endocervicitis (with or without erosion or ectropion) +C4290241|T047|ET|N72|ICD10CM|exocervicitis (with or without erosion or ectropion)|exocervicitis (with or without erosion or ectropion) +C0007860|T047|PT|N72|ICD10|Inflammatory disease of cervix uteri|Inflammatory disease of cervix uteri +C0007860|T047|PT|N72|ICD10CM|Inflammatory disease of cervix uteri|Inflammatory disease of cervix uteri +C0007860|T047|AB|N72|ICD10CM|Inflammatory disease of cervix uteri|Inflammatory disease of cervix uteri +C0495087|T047|AB|N73|ICD10CM|Other female pelvic inflammatory diseases|Other female pelvic inflammatory diseases +C0495087|T047|HT|N73|ICD10CM|Other female pelvic inflammatory diseases|Other female pelvic inflammatory diseases +C0495087|T047|HT|N73|ICD10|Other female pelvic inflammatory diseases|Other female pelvic inflammatory diseases +C0269027|T047|ET|N73.0|ICD10CM|Abscess of broad ligament|Abscess of broad ligament +C0269025|T047|ET|N73.0|ICD10CM|Abscess of parametrium|Abscess of parametrium +C0156329|T047|PT|N73.0|ICD10CM|Acute parametritis and pelvic cellulitis|Acute parametritis and pelvic cellulitis +C0156329|T047|AB|N73.0|ICD10CM|Acute parametritis and pelvic cellulitis|Acute parametritis and pelvic cellulitis +C0156329|T047|PT|N73.0|ICD10|Acute parametritis and pelvic cellulitis|Acute parametritis and pelvic cellulitis +C0349734|T047|ET|N73.0|ICD10CM|Pelvic cellulitis, female|Pelvic cellulitis, female +C2903119|T047|ET|N73.1|ICD10CM|Any condition in N73.0 specified as chronic|Any condition in N73.0 specified as chronic +C0404458|T047|PT|N73.1|ICD10CM|Chronic parametritis and pelvic cellulitis|Chronic parametritis and pelvic cellulitis +C0404458|T047|AB|N73.1|ICD10CM|Chronic parametritis and pelvic cellulitis|Chronic parametritis and pelvic cellulitis +C0404458|T047|PT|N73.1|ICD10|Chronic parametritis and pelvic cellulitis|Chronic parametritis and pelvic cellulitis +C2903120|T047|ET|N73.2|ICD10CM|Any condition in N73.0 unspecified whether acute or chronic|Any condition in N73.0 unspecified whether acute or chronic +C0404450|T047|PT|N73.2|ICD10|Unspecified parametritis and pelvic cellulitis|Unspecified parametritis and pelvic cellulitis +C0404450|T047|PT|N73.2|ICD10CM|Unspecified parametritis and pelvic cellulitis|Unspecified parametritis and pelvic cellulitis +C0404450|T047|AB|N73.2|ICD10CM|Unspecified parametritis and pelvic cellulitis|Unspecified parametritis and pelvic cellulitis +C0269032|T047|PT|N73.3|ICD10|Female acute pelvic peritonitis|Female acute pelvic peritonitis +C0269032|T047|PT|N73.3|ICD10CM|Female acute pelvic peritonitis|Female acute pelvic peritonitis +C0269032|T047|AB|N73.3|ICD10CM|Female acute pelvic peritonitis|Female acute pelvic peritonitis +C0269033|T047|PT|N73.4|ICD10CM|Female chronic pelvic peritonitis|Female chronic pelvic peritonitis +C0269033|T047|AB|N73.4|ICD10CM|Female chronic pelvic peritonitis|Female chronic pelvic peritonitis +C0269033|T047|PT|N73.4|ICD10|Female chronic pelvic peritonitis|Female chronic pelvic peritonitis +C0269031|T047|PT|N73.5|ICD10|Female pelvic peritonitis, unspecified|Female pelvic peritonitis, unspecified +C0269031|T047|PT|N73.5|ICD10CM|Female pelvic peritonitis, unspecified|Female pelvic peritonitis, unspecified +C0269031|T047|AB|N73.5|ICD10CM|Female pelvic peritonitis, unspecified|Female pelvic peritonitis, unspecified +C0156331|T047|PT|N73.6|ICD10|Female pelvic peritoneal adhesions|Female pelvic peritoneal adhesions +C2903121|T047|AB|N73.6|ICD10CM|Female pelvic peritoneal adhesions (postinfective)|Female pelvic peritoneal adhesions (postinfective) +C2903121|T047|PT|N73.6|ICD10CM|Female pelvic peritoneal adhesions (postinfective)|Female pelvic peritoneal adhesions (postinfective) +C0404446|T047|PT|N73.8|ICD10CM|Other specified female pelvic inflammatory diseases|Other specified female pelvic inflammatory diseases +C0404446|T047|AB|N73.8|ICD10CM|Other specified female pelvic inflammatory diseases|Other specified female pelvic inflammatory diseases +C0404446|T047|PT|N73.8|ICD10|Other specified female pelvic inflammatory diseases|Other specified female pelvic inflammatory diseases +C0866249|T047|ET|N73.9|ICD10CM|Female pelvic infection or inflammation NOS|Female pelvic infection or inflammation NOS +C0242172|T047|PT|N73.9|ICD10|Female pelvic inflammatory disease, unspecified|Female pelvic inflammatory disease, unspecified +C0242172|T047|PT|N73.9|ICD10CM|Female pelvic inflammatory disease, unspecified|Female pelvic inflammatory disease, unspecified +C0242172|T047|AB|N73.9|ICD10CM|Female pelvic inflammatory disease, unspecified|Female pelvic inflammatory disease, unspecified +C0694530|T047|AB|N74|ICD10CM|Female pelvic inflam disorders in diseases classd elswhr|Female pelvic inflam disorders in diseases classd elswhr +C0694530|T047|PT|N74|ICD10CM|Female pelvic inflammatory disorders in diseases classified elsewhere|Female pelvic inflammatory disorders in diseases classified elsewhere +C0694530|T047|HT|N74|ICD10|Female pelvic inflammatory disorders in diseases classified elsewhere|Female pelvic inflammatory disorders in diseases classified elsewhere +C0495089|T047|PT|N74.0|ICD10|Tuberculous infection of cervix uteri|Tuberculous infection of cervix uteri +C0452162|T047|PT|N74.1|ICD10|Female tuberculous pelvic inflammatory disease|Female tuberculous pelvic inflammatory disease +C0451785|T047|PT|N74.2|ICD10|Female syphilitic pelvic inflammatory disease|Female syphilitic pelvic inflammatory disease +C0452163|T047|PT|N74.3|ICD10|Female gonococcal pelvic inflammatory disease|Female gonococcal pelvic inflammatory disease +C0451784|T047|PT|N74.4|ICD10|Female chlamydial pelvic inflammatory disease|Female chlamydial pelvic inflammatory disease +C0477770|T047|PT|N74.8|ICD10|Female pelvic inflammatory disorders in other diseases classified elsewhere|Female pelvic inflammatory disorders in other diseases classified elsewhere +C0477776|T047|HT|N75|ICD10|Diseases of Bartholin's gland|Diseases of Bartholin's gland +C0477776|T047|AB|N75|ICD10CM|Diseases of Bartholin's gland|Diseases of Bartholin's gland +C0477776|T047|HT|N75|ICD10CM|Diseases of Bartholin's gland|Diseases of Bartholin's gland +C0004767|T047|PT|N75.0|ICD10CM|Cyst of Bartholin's gland|Cyst of Bartholin's gland +C0004767|T047|AB|N75.0|ICD10CM|Cyst of Bartholin's gland|Cyst of Bartholin's gland +C0004767|T047|PT|N75.0|ICD10|Cyst of Bartholin's gland|Cyst of Bartholin's gland +C0004766|T046|PT|N75.1|ICD10|Abscess of Bartholin's gland|Abscess of Bartholin's gland +C0004766|T046|PT|N75.1|ICD10CM|Abscess of Bartholin's gland|Abscess of Bartholin's gland +C0004766|T046|AB|N75.1|ICD10CM|Abscess of Bartholin's gland|Abscess of Bartholin's gland +C0004769|T047|ET|N75.8|ICD10CM|Bartholinitis|Bartholinitis +C0477771|T047|PT|N75.8|ICD10CM|Other diseases of Bartholin's gland|Other diseases of Bartholin's gland +C0477771|T047|AB|N75.8|ICD10CM|Other diseases of Bartholin's gland|Other diseases of Bartholin's gland +C0477771|T047|PT|N75.8|ICD10|Other diseases of Bartholin's gland|Other diseases of Bartholin's gland +C0477776|T047|PT|N75.9|ICD10|Disease of Bartholin's gland, unspecified|Disease of Bartholin's gland, unspecified +C0477776|T047|PT|N75.9|ICD10CM|Disease of Bartholin's gland, unspecified|Disease of Bartholin's gland, unspecified +C0477776|T047|AB|N75.9|ICD10CM|Disease of Bartholin's gland, unspecified|Disease of Bartholin's gland, unspecified +C0495091|T047|AB|N76|ICD10CM|Other inflammation of vagina and vulva|Other inflammation of vagina and vulva +C0495091|T047|HT|N76|ICD10CM|Other inflammation of vagina and vulva|Other inflammation of vagina and vulva +C0495091|T047|HT|N76|ICD10|Other inflammation of vagina and vulva|Other inflammation of vagina and vulva +C0269075|T047|PT|N76.0|ICD10|Acute vaginitis|Acute vaginitis +C0269075|T047|PT|N76.0|ICD10CM|Acute vaginitis|Acute vaginitis +C0269075|T047|AB|N76.0|ICD10CM|Acute vaginitis|Acute vaginitis +C0269082|T047|ET|N76.0|ICD10CM|Acute vulvovaginitis|Acute vulvovaginitis +C0404521|T047|ET|N76.0|ICD10CM|Vaginitis NOS|Vaginitis NOS +C0042998|T047|ET|N76.0|ICD10CM|Vulvovaginitis NOS|Vulvovaginitis NOS +C0269083|T047|ET|N76.1|ICD10CM|Chronic vulvovaginitis|Chronic vulvovaginitis +C0451787|T047|PT|N76.1|ICD10|Subacute and chronic vaginitis|Subacute and chronic vaginitis +C0451787|T047|PT|N76.1|ICD10CM|Subacute and chronic vaginitis|Subacute and chronic vaginitis +C0451787|T047|AB|N76.1|ICD10CM|Subacute and chronic vaginitis|Subacute and chronic vaginitis +C2903122|T046|ET|N76.1|ICD10CM|Subacute vulvovaginitis|Subacute vulvovaginitis +C0269085|T047|PT|N76.2|ICD10CM|Acute vulvitis|Acute vulvitis +C0269085|T047|AB|N76.2|ICD10CM|Acute vulvitis|Acute vulvitis +C0269085|T047|PT|N76.2|ICD10|Acute vulvitis|Acute vulvitis +C0042996|T047|ET|N76.2|ICD10CM|Vulvitis NOS|Vulvitis NOS +C0451788|T047|PT|N76.3|ICD10CM|Subacute and chronic vulvitis|Subacute and chronic vulvitis +C0451788|T047|AB|N76.3|ICD10CM|Subacute and chronic vulvitis|Subacute and chronic vulvitis +C0451788|T047|PT|N76.3|ICD10|Subacute and chronic vulvitis|Subacute and chronic vulvitis +C0262666|T047|PT|N76.4|ICD10|Abscess of vulva|Abscess of vulva +C0262666|T047|AB|N76.4|ICD10CM|Abscess of vulva|Abscess of vulva +C0262666|T047|PT|N76.4|ICD10CM|Abscess of vulva|Abscess of vulva +C0269091|T047|ET|N76.4|ICD10CM|Furuncle of vulva|Furuncle of vulva +C0566951|T047|PT|N76.5|ICD10|Ulceration of vagina|Ulceration of vagina +C0566951|T047|PT|N76.5|ICD10CM|Ulceration of vagina|Ulceration of vagina +C0566951|T047|AB|N76.5|ICD10CM|Ulceration of vagina|Ulceration of vagina +C0156339|T047|PT|N76.6|ICD10CM|Ulceration of vulva|Ulceration of vulva +C0156339|T047|AB|N76.6|ICD10CM|Ulceration of vulva|Ulceration of vulva +C0156339|T047|PT|N76.6|ICD10|Ulceration of vulva|Ulceration of vulva +C0477772|T047|PT|N76.8|ICD10|Other specified inflammation of vagina and vulva|Other specified inflammation of vagina and vulva +C0477772|T047|HT|N76.8|ICD10CM|Other specified inflammation of vagina and vulva|Other specified inflammation of vagina and vulva +C0477772|T047|AB|N76.8|ICD10CM|Other specified inflammation of vagina and vulva|Other specified inflammation of vagina and vulva +C2903123|T047|AB|N76.81|ICD10CM|Mucositis (ulcerative) of vagina and vulva|Mucositis (ulcerative) of vagina and vulva +C2903123|T047|PT|N76.81|ICD10CM|Mucositis (ulcerative) of vagina and vulva|Mucositis (ulcerative) of vagina and vulva +C0477772|T047|PT|N76.89|ICD10CM|Other specified inflammation of vagina and vulva|Other specified inflammation of vagina and vulva +C0477772|T047|AB|N76.89|ICD10CM|Other specified inflammation of vagina and vulva|Other specified inflammation of vagina and vulva +C0694531|T047|AB|N77|ICD10CM|Vulvovaginal ulceration and inflam in diseases classd elswhr|Vulvovaginal ulceration and inflam in diseases classd elswhr +C0694531|T047|HT|N77|ICD10CM|Vulvovaginal ulceration and inflammation in diseases classified elsewhere|Vulvovaginal ulceration and inflammation in diseases classified elsewhere +C0694531|T047|HT|N77|ICD10|Vulvovaginal ulceration and inflammation in diseases classified elsewhere|Vulvovaginal ulceration and inflammation in diseases classified elsewhere +C0156340|T047|AB|N77.0|ICD10CM|Ulceration of vulva in diseases classified elsewhere|Ulceration of vulva in diseases classified elsewhere +C0156340|T047|PT|N77.0|ICD10CM|Ulceration of vulva in diseases classified elsewhere|Ulceration of vulva in diseases classified elsewhere +C0477773|T047|PT|N77.0|ICD10|Ulceration of vulva in infectious and parasitic diseases classified elsewhere|Ulceration of vulva in infectious and parasitic diseases classified elsewhere +C2903124|T047|AB|N77.1|ICD10CM|Vaginitis, vulvitis and vulvovaginitis in dis classd elswhr|Vaginitis, vulvitis and vulvovaginitis in dis classd elswhr +C2903124|T047|PT|N77.1|ICD10CM|Vaginitis, vulvitis and vulvovaginitis in diseases classified elsewhere|Vaginitis, vulvitis and vulvovaginitis in diseases classified elsewhere +C0477774|T047|PT|N77.1|ICD10|Vaginitis, vulvitis and vulvovaginitis in infectious and parasitic diseases classified elsewhere|Vaginitis, vulvitis and vulvovaginitis in infectious and parasitic diseases classified elsewhere +C0477775|T020|PT|N77.8|ICD10|Vulvovaginal ulceration and inflammation in other diseases classified elsewhere|Vulvovaginal ulceration and inflammation in other diseases classified elsewhere +C0014175|T047|HT|N80|ICD10|Endometriosis|Endometriosis +C0014175|T047|HT|N80|ICD10CM|Endometriosis|Endometriosis +C0014175|T047|AB|N80|ICD10CM|Endometriosis|Endometriosis +C0269150|T047|HT|N80-N98|ICD10CM|Noninflammatory disorders of female genital tract (N80-N98)|Noninflammatory disorders of female genital tract (N80-N98) +C0269150|T047|HT|N80-N98.9|ICD10|Noninflammatory disorders of female genital tract|Noninflammatory disorders of female genital tract +C0341858|T047|ET|N80.0|ICD10CM|Adenomyosis|Adenomyosis +C0341858|T047|PT|N80.0|ICD10CM|Endometriosis of uterus|Endometriosis of uterus +C0341858|T047|AB|N80.0|ICD10CM|Endometriosis of uterus|Endometriosis of uterus +C0341858|T047|PT|N80.0|ICD10|Endometriosis of uterus|Endometriosis of uterus +C0156344|T047|PT|N80.1|ICD10|Endometriosis of ovary|Endometriosis of ovary +C0156344|T047|PT|N80.1|ICD10CM|Endometriosis of ovary|Endometriosis of ovary +C0156344|T047|AB|N80.1|ICD10CM|Endometriosis of ovary|Endometriosis of ovary +C0014177|T047|PT|N80.2|ICD10CM|Endometriosis of fallopian tube|Endometriosis of fallopian tube +C0014177|T047|AB|N80.2|ICD10CM|Endometriosis of fallopian tube|Endometriosis of fallopian tube +C0014177|T047|PT|N80.2|ICD10|Endometriosis of fallopian tube|Endometriosis of fallopian tube +C0156345|T047|PT|N80.3|ICD10|Endometriosis of pelvic peritoneum|Endometriosis of pelvic peritoneum +C0156345|T047|PT|N80.3|ICD10CM|Endometriosis of pelvic peritoneum|Endometriosis of pelvic peritoneum +C0156345|T047|AB|N80.3|ICD10CM|Endometriosis of pelvic peritoneum|Endometriosis of pelvic peritoneum +C0156346|T047|PT|N80.4|ICD10CM|Endometriosis of rectovaginal septum and vagina|Endometriosis of rectovaginal septum and vagina +C0156346|T047|AB|N80.4|ICD10CM|Endometriosis of rectovaginal septum and vagina|Endometriosis of rectovaginal septum and vagina +C0156346|T047|PT|N80.4|ICD10|Endometriosis of rectovaginal septum and vagina|Endometriosis of rectovaginal septum and vagina +C0156347|T047|PT|N80.5|ICD10|Endometriosis of intestine|Endometriosis of intestine +C0156347|T047|PT|N80.5|ICD10CM|Endometriosis of intestine|Endometriosis of intestine +C0156347|T047|AB|N80.5|ICD10CM|Endometriosis of intestine|Endometriosis of intestine +C0156348|T047|PT|N80.6|ICD10CM|Endometriosis in cutaneous scar|Endometriosis in cutaneous scar +C0156348|T047|AB|N80.6|ICD10CM|Endometriosis in cutaneous scar|Endometriosis in cutaneous scar +C0156348|T047|PT|N80.6|ICD10|Endometriosis in cutaneous scar|Endometriosis in cutaneous scar +C4049489|T047|ET|N80.8|ICD10CM|Endometriosis of thorax|Endometriosis of thorax +C0477778|T047|PT|N80.8|ICD10CM|Other endometriosis|Other endometriosis +C0477778|T047|AB|N80.8|ICD10CM|Other endometriosis|Other endometriosis +C0477778|T047|PT|N80.8|ICD10|Other endometriosis|Other endometriosis +C0014175|T047|PT|N80.9|ICD10|Endometriosis, unspecified|Endometriosis, unspecified +C0014175|T047|PT|N80.9|ICD10CM|Endometriosis, unspecified|Endometriosis, unspecified +C0014175|T047|AB|N80.9|ICD10CM|Endometriosis, unspecified|Endometriosis, unspecified +C0392070|T020|HT|N81|ICD10|Female genital prolapse|Female genital prolapse +C0392070|T020|AB|N81|ICD10CM|Female genital prolapse|Female genital prolapse +C0392070|T020|HT|N81|ICD10CM|Female genital prolapse|Female genital prolapse +C0392116|T047|PT|N81.0|ICD10|Female urethrocele|Female urethrocele +C0238502|T047|PT|N81.0|ICD10CM|Urethrocele|Urethrocele +C0238502|T047|AB|N81.0|ICD10CM|Urethrocele|Urethrocele +C1394494|T047|PT|N81.1|ICD10|Cystocele|Cystocele +C1394494|T047|HT|N81.1|ICD10CM|Cystocele|Cystocele +C1394494|T047|AB|N81.1|ICD10CM|Cystocele|Cystocele +C2903125|T047|ET|N81.1|ICD10CM|Cystocele with urethrocele|Cystocele with urethrocele +C0269121|T190|ET|N81.1|ICD10CM|Cystourethrocele|Cystourethrocele +C1394494|T047|AB|N81.10|ICD10CM|Cystocele, unspecified|Cystocele, unspecified +C1394494|T047|PT|N81.10|ICD10CM|Cystocele, unspecified|Cystocele, unspecified +C0425852|T020|ET|N81.10|ICD10CM|Prolapse of (anterior) vaginal wall NOS|Prolapse of (anterior) vaginal wall NOS +C1456248|T047|AB|N81.11|ICD10CM|Cystocele, midline|Cystocele, midline +C1456248|T047|PT|N81.11|ICD10CM|Cystocele, midline|Cystocele, midline +C2711750|T047|AB|N81.12|ICD10CM|Cystocele, lateral|Cystocele, lateral +C2711750|T047|PT|N81.12|ICD10CM|Cystocele, lateral|Cystocele, lateral +C2903126|T046|ET|N81.12|ICD10CM|Paravaginal cystocele|Paravaginal cystocele +C0269125|T020|ET|N81.2|ICD10CM|First degree uterine prolapse|First degree uterine prolapse +C0156351|T020|PT|N81.2|ICD10CM|Incomplete uterovaginal prolapse|Incomplete uterovaginal prolapse +C0156351|T020|AB|N81.2|ICD10CM|Incomplete uterovaginal prolapse|Incomplete uterovaginal prolapse +C0156351|T020|PT|N81.2|ICD10|Incomplete uterovaginal prolapse|Incomplete uterovaginal prolapse +C1392369|T020|ET|N81.2|ICD10CM|Prolapse of cervix NOS|Prolapse of cervix NOS +C0269126|T020|ET|N81.2|ICD10CM|Second degree uterine prolapse|Second degree uterine prolapse +C0392530|T020|PT|N81.3|ICD10CM|Complete uterovaginal prolapse|Complete uterovaginal prolapse +C0392530|T020|AB|N81.3|ICD10CM|Complete uterovaginal prolapse|Complete uterovaginal prolapse +C0392530|T020|PT|N81.3|ICD10|Complete uterovaginal prolapse|Complete uterovaginal prolapse +C0392530|T020|ET|N81.3|ICD10CM|Procidentia (uteri) NOS|Procidentia (uteri) NOS +C0392530|T020|ET|N81.3|ICD10CM|Third degree uterine prolapse|Third degree uterine prolapse +C0042140|T190|ET|N81.4|ICD10CM|Prolapse of uterus NOS|Prolapse of uterus NOS +C0156353|T020|PT|N81.4|ICD10CM|Uterovaginal prolapse, unspecified|Uterovaginal prolapse, unspecified +C0156353|T020|AB|N81.4|ICD10CM|Uterovaginal prolapse, unspecified|Uterovaginal prolapse, unspecified +C0156353|T020|PT|N81.4|ICD10|Uterovaginal prolapse, unspecified|Uterovaginal prolapse, unspecified +C0205792|T190|PT|N81.5|ICD10|Vaginal enterocele|Vaginal enterocele +C0205792|T190|PT|N81.5|ICD10CM|Vaginal enterocele|Vaginal enterocele +C0205792|T190|AB|N81.5|ICD10CM|Vaginal enterocele|Vaginal enterocele +C0425853|T020|ET|N81.6|ICD10CM|Prolapse of posterior vaginal wall|Prolapse of posterior vaginal wall +C0149771|T020|PT|N81.6|ICD10|Rectocele|Rectocele +C0149771|T020|PT|N81.6|ICD10CM|Rectocele|Rectocele +C0149771|T020|AB|N81.6|ICD10CM|Rectocele|Rectocele +C0477779|T020|HT|N81.8|ICD10CM|Other female genital prolapse|Other female genital prolapse +C0477779|T020|AB|N81.8|ICD10CM|Other female genital prolapse|Other female genital prolapse +C0477779|T020|PT|N81.8|ICD10|Other female genital prolapse|Other female genital prolapse +C1456251|T047|AB|N81.81|ICD10CM|Perineocele|Perineocele +C1456251|T047|PT|N81.81|ICD10CM|Perineocele|Perineocele +C1456253|T047|AB|N81.82|ICD10CM|Incompetence or weakening of pubocervical tissue|Incompetence or weakening of pubocervical tissue +C1456253|T047|PT|N81.82|ICD10CM|Incompetence or weakening of pubocervical tissue|Incompetence or weakening of pubocervical tissue +C1456254|T047|AB|N81.83|ICD10CM|Incompetence or weakening of rectovaginal tissue|Incompetence or weakening of rectovaginal tissue +C1456254|T047|PT|N81.83|ICD10CM|Incompetence or weakening of rectovaginal tissue|Incompetence or weakening of rectovaginal tissue +C1456256|T046|ET|N81.84|ICD10CM|Disuse atrophy of pelvic muscles and anal sphincter|Disuse atrophy of pelvic muscles and anal sphincter +C1456255|T047|AB|N81.84|ICD10CM|Pelvic muscle wasting|Pelvic muscle wasting +C1456255|T047|PT|N81.84|ICD10CM|Pelvic muscle wasting|Pelvic muscle wasting +C1719546|T020|AB|N81.85|ICD10CM|Cervical stump prolapse|Cervical stump prolapse +C1719546|T020|PT|N81.85|ICD10CM|Cervical stump prolapse|Cervical stump prolapse +C0404533|T019|ET|N81.89|ICD10CM|Deficient perineum|Deficient perineum +C0156355|T037|ET|N81.89|ICD10CM|Old laceration of muscles of pelvic floor|Old laceration of muscles of pelvic floor +C0477779|T020|PT|N81.89|ICD10CM|Other female genital prolapse|Other female genital prolapse +C0477779|T020|AB|N81.89|ICD10CM|Other female genital prolapse|Other female genital prolapse +C0392070|T020|PT|N81.9|ICD10CM|Female genital prolapse, unspecified|Female genital prolapse, unspecified +C0392070|T020|AB|N81.9|ICD10CM|Female genital prolapse, unspecified|Female genital prolapse, unspecified +C0392070|T020|PT|N81.9|ICD10|Female genital prolapse, unspecified|Female genital prolapse, unspecified +C0156357|T190|HT|N82|ICD10CM|Fistulae involving female genital tract|Fistulae involving female genital tract +C0156357|T190|AB|N82|ICD10CM|Fistulae involving female genital tract|Fistulae involving female genital tract +C0156357|T190|HT|N82|ICD10|Fistulae involving female genital tract|Fistulae involving female genital tract +C0042582|T047|PT|N82.0|ICD10|Vesicovaginal fistula|Vesicovaginal fistula +C0042582|T047|PT|N82.0|ICD10CM|Vesicovaginal fistula|Vesicovaginal fistula +C0042582|T047|AB|N82.0|ICD10CM|Vesicovaginal fistula|Vesicovaginal fistula +C0269132|T190|ET|N82.1|ICD10CM|Cervicovesical fistula|Cervicovesical fistula +C0477780|T020|PT|N82.1|ICD10|Other female urinary-genital tract fistulae|Other female urinary-genital tract fistulae +C0477780|T020|PT|N82.1|ICD10CM|Other female urinary-genital tract fistulae|Other female urinary-genital tract fistulae +C0477780|T020|AB|N82.1|ICD10CM|Other female urinary-genital tract fistulae|Other female urinary-genital tract fistulae +C0238133|T190|ET|N82.1|ICD10CM|Ureterovaginal fistula|Ureterovaginal fistula +C0269133|T190|ET|N82.1|ICD10CM|Urethrovaginal fistula|Urethrovaginal fistula +C0269135|T190|ET|N82.1|ICD10CM|Uteroureteric fistula|Uteroureteric fistula +C0269136|T190|ET|N82.1|ICD10CM|Uterovesical fistula|Uterovesical fistula +C0348896|T190|PT|N82.2|ICD10CM|Fistula of vagina to small intestine|Fistula of vagina to small intestine +C0348896|T190|AB|N82.2|ICD10CM|Fistula of vagina to small intestine|Fistula of vagina to small intestine +C0348896|T190|PT|N82.2|ICD10|Fistula of vagina to small intestine|Fistula of vagina to small intestine +C0348897|T190|PT|N82.3|ICD10|Fistula of vagina to large intestine|Fistula of vagina to large intestine +C0348897|T190|PT|N82.3|ICD10CM|Fistula of vagina to large intestine|Fistula of vagina to large intestine +C0348897|T190|AB|N82.3|ICD10CM|Fistula of vagina to large intestine|Fistula of vagina to large intestine +C0034895|T190|ET|N82.3|ICD10CM|Rectovaginal fistula|Rectovaginal fistula +C0269138|T047|ET|N82.4|ICD10CM|Intestinouterine fistula|Intestinouterine fistula +C0348770|T020|PT|N82.4|ICD10|Other female intestinal-genital tract fistulae|Other female intestinal-genital tract fistulae +C0348770|T020|PT|N82.4|ICD10CM|Other female intestinal-genital tract fistulae|Other female intestinal-genital tract fistulae +C0348770|T020|AB|N82.4|ICD10CM|Other female intestinal-genital tract fistulae|Other female intestinal-genital tract fistulae +C0156358|T020|PT|N82.5|ICD10CM|Female genital tract-skin fistulae|Female genital tract-skin fistulae +C0156358|T020|AB|N82.5|ICD10CM|Female genital tract-skin fistulae|Female genital tract-skin fistulae +C0156358|T020|PT|N82.5|ICD10|Female genital tract-skin fistulae|Female genital tract-skin fistulae +C0269143|T190|ET|N82.5|ICD10CM|Uterus to abdominal wall fistula|Uterus to abdominal wall fistula +C0269144|T190|ET|N82.5|ICD10CM|Vaginoperineal fistula|Vaginoperineal fistula +C0477781|T020|PT|N82.8|ICD10CM|Other female genital tract fistulae|Other female genital tract fistulae +C0477781|T020|AB|N82.8|ICD10CM|Other female genital tract fistulae|Other female genital tract fistulae +C0477781|T020|PT|N82.8|ICD10|Other female genital tract fistulae|Other female genital tract fistulae +C0269131|T190|PT|N82.9|ICD10CM|Female genital tract fistula, unspecified|Female genital tract fistula, unspecified +C0269131|T190|AB|N82.9|ICD10CM|Female genital tract fistula, unspecified|Female genital tract fistula, unspecified +C0269131|T190|PT|N82.9|ICD10|Female genital tract fistula, unspecified|Female genital tract fistula, unspecified +C0156367|T047|AB|N83|ICD10CM|Noninflammatory disord of ovary, fallop and broad ligament|Noninflammatory disord of ovary, fallop and broad ligament +C0156367|T047|HT|N83|ICD10CM|Noninflammatory disorders of ovary, fallopian tube and broad ligament|Noninflammatory disorders of ovary, fallopian tube and broad ligament +C0156367|T047|HT|N83|ICD10|Noninflammatory disorders of ovary, fallopian tube and broad ligament|Noninflammatory disorders of ovary, fallopian tube and broad ligament +C0016429|T047|ET|N83.0|ICD10CM|Cyst of graafian follicle|Cyst of graafian follicle +C0016429|T047|AB|N83.0|ICD10CM|Follicular cyst of ovary|Follicular cyst of ovary +C0016429|T047|HT|N83.0|ICD10CM|Follicular cyst of ovary|Follicular cyst of ovary +C0016429|T047|PT|N83.0|ICD10|Follicular cyst of ovary|Follicular cyst of ovary +C2903127|T046|ET|N83.0|ICD10CM|Hemorrhagic follicular cyst (of ovary)|Hemorrhagic follicular cyst (of ovary) +C4268913|T047|AB|N83.00|ICD10CM|Follicular cyst of ovary, unspecified side|Follicular cyst of ovary, unspecified side +C4268913|T047|PT|N83.00|ICD10CM|Follicular cyst of ovary, unspecified side|Follicular cyst of ovary, unspecified side +C2231245|T047|PT|N83.01|ICD10CM|Follicular cyst of right ovary|Follicular cyst of right ovary +C2231245|T047|AB|N83.01|ICD10CM|Follicular cyst of right ovary|Follicular cyst of right ovary +C2231246|T047|PT|N83.02|ICD10CM|Follicular cyst of left ovary|Follicular cyst of left ovary +C2231246|T047|AB|N83.02|ICD10CM|Follicular cyst of left ovary|Follicular cyst of left ovary +C0010093|T047|PT|N83.1|ICD10|Corpus luteum cyst|Corpus luteum cyst +C0010093|T047|AB|N83.1|ICD10CM|Corpus luteum cyst|Corpus luteum cyst +C0010093|T047|HT|N83.1|ICD10CM|Corpus luteum cyst|Corpus luteum cyst +C2903128|T046|ET|N83.1|ICD10CM|Hemorrhagic corpus luteum cyst|Hemorrhagic corpus luteum cyst +C4268914|T047|AB|N83.10|ICD10CM|Corpus luteum cyst of ovary, unspecified side|Corpus luteum cyst of ovary, unspecified side +C4268914|T047|PT|N83.10|ICD10CM|Corpus luteum cyst of ovary, unspecified side|Corpus luteum cyst of ovary, unspecified side +C4268915|T047|AB|N83.11|ICD10CM|Corpus luteum cyst of right ovary|Corpus luteum cyst of right ovary +C4268915|T047|PT|N83.11|ICD10CM|Corpus luteum cyst of right ovary|Corpus luteum cyst of right ovary +C4268916|T047|AB|N83.12|ICD10CM|Corpus luteum cyst of left ovary|Corpus luteum cyst of left ovary +C4268916|T047|PT|N83.12|ICD10CM|Corpus luteum cyst of left ovary|Corpus luteum cyst of left ovary +C0029513|T020|HT|N83.2|ICD10CM|Other and unspecified ovarian cysts|Other and unspecified ovarian cysts +C0029513|T020|AB|N83.2|ICD10CM|Other and unspecified ovarian cysts|Other and unspecified ovarian cysts +C0029513|T020|PT|N83.2|ICD10|Other and unspecified ovarian cysts|Other and unspecified ovarian cysts +C0029927|T047|AB|N83.20|ICD10CM|Unspecified ovarian cysts|Unspecified ovarian cysts +C0029927|T047|HT|N83.20|ICD10CM|Unspecified ovarian cysts|Unspecified ovarian cysts +C4268917|T047|AB|N83.201|ICD10CM|Unspecified ovarian cyst, right side|Unspecified ovarian cyst, right side +C4268917|T047|PT|N83.201|ICD10CM|Unspecified ovarian cyst, right side|Unspecified ovarian cyst, right side +C4268918|T047|AB|N83.202|ICD10CM|Unspecified ovarian cyst, left side|Unspecified ovarian cyst, left side +C4268918|T047|PT|N83.202|ICD10CM|Unspecified ovarian cyst, left side|Unspecified ovarian cyst, left side +C0029927|T047|ET|N83.209|ICD10CM|Ovarian cyst, NOS|Ovarian cyst, NOS +C4268919|T047|AB|N83.209|ICD10CM|Unspecified ovarian cyst, unspecified side|Unspecified ovarian cyst, unspecified side +C4268919|T047|PT|N83.209|ICD10CM|Unspecified ovarian cyst, unspecified side|Unspecified ovarian cyst, unspecified side +C0404475|T020|AB|N83.29|ICD10CM|Other ovarian cysts|Other ovarian cysts +C0404475|T020|HT|N83.29|ICD10CM|Other ovarian cysts|Other ovarian cysts +C4316911|T047|ET|N83.29|ICD10CM|Retention cyst of ovary|Retention cyst of ovary +C0237010|T047|ET|N83.29|ICD10CM|Simple cyst of ovary|Simple cyst of ovary +C4268920|T020|AB|N83.291|ICD10CM|Other ovarian cyst, right side|Other ovarian cyst, right side +C4268920|T020|PT|N83.291|ICD10CM|Other ovarian cyst, right side|Other ovarian cyst, right side +C4268921|T020|AB|N83.292|ICD10CM|Other ovarian cyst, left side|Other ovarian cyst, left side +C4268921|T020|PT|N83.292|ICD10CM|Other ovarian cyst, left side|Other ovarian cyst, left side +C4268922|T020|AB|N83.299|ICD10CM|Other ovarian cyst, unspecified side|Other ovarian cyst, unspecified side +C4268922|T020|PT|N83.299|ICD10CM|Other ovarian cyst, unspecified side|Other ovarian cyst, unspecified side +C0156362|T020|PT|N83.3|ICD10|Acquired atrophy of ovary and fallopian tube|Acquired atrophy of ovary and fallopian tube +C0156362|T020|HT|N83.3|ICD10CM|Acquired atrophy of ovary and fallopian tube|Acquired atrophy of ovary and fallopian tube +C0156362|T020|AB|N83.3|ICD10CM|Acquired atrophy of ovary and fallopian tube|Acquired atrophy of ovary and fallopian tube +C0404445|T047|AB|N83.31|ICD10CM|Acquired atrophy of ovary|Acquired atrophy of ovary +C0404445|T047|HT|N83.31|ICD10CM|Acquired atrophy of ovary|Acquired atrophy of ovary +C2016024|T047|AB|N83.311|ICD10CM|Acquired atrophy of right ovary|Acquired atrophy of right ovary +C2016024|T047|PT|N83.311|ICD10CM|Acquired atrophy of right ovary|Acquired atrophy of right ovary +C2016023|T047|AB|N83.312|ICD10CM|Acquired atrophy of left ovary|Acquired atrophy of left ovary +C2016023|T047|PT|N83.312|ICD10CM|Acquired atrophy of left ovary|Acquired atrophy of left ovary +C0404445|T047|ET|N83.319|ICD10CM|Acquired atrophy of ovary, NOS|Acquired atrophy of ovary, NOS +C4268923|T020|AB|N83.319|ICD10CM|Acquired atrophy of ovary, unspecified side|Acquired atrophy of ovary, unspecified side +C4268923|T020|PT|N83.319|ICD10CM|Acquired atrophy of ovary, unspecified side|Acquired atrophy of ovary, unspecified side +C0269166|T047|AB|N83.32|ICD10CM|Acquired atrophy of fallopian tube|Acquired atrophy of fallopian tube +C0269166|T047|HT|N83.32|ICD10CM|Acquired atrophy of fallopian tube|Acquired atrophy of fallopian tube +C4268924|T020|PT|N83.321|ICD10CM|Acquired atrophy of right fallopian tube|Acquired atrophy of right fallopian tube +C4268924|T020|AB|N83.321|ICD10CM|Acquired atrophy of right fallopian tube|Acquired atrophy of right fallopian tube +C4268925|T020|PT|N83.322|ICD10CM|Acquired atrophy of left fallopian tube|Acquired atrophy of left fallopian tube +C4268925|T020|AB|N83.322|ICD10CM|Acquired atrophy of left fallopian tube|Acquired atrophy of left fallopian tube +C0269166|T047|ET|N83.329|ICD10CM|Acquired atrophy of fallopian tube, NOS|Acquired atrophy of fallopian tube, NOS +C4268926|T020|AB|N83.329|ICD10CM|Acquired atrophy of fallopian tube, unspecified side|Acquired atrophy of fallopian tube, unspecified side +C4268926|T020|PT|N83.329|ICD10CM|Acquired atrophy of fallopian tube, unspecified side|Acquired atrophy of fallopian tube, unspecified side +C0156362|T020|AB|N83.33|ICD10CM|Acquired atrophy of ovary and fallopian tube|Acquired atrophy of ovary and fallopian tube +C0156362|T020|HT|N83.33|ICD10CM|Acquired atrophy of ovary and fallopian tube|Acquired atrophy of ovary and fallopian tube +C4268927|T020|AB|N83.331|ICD10CM|Acquired atrophy of right ovary and fallopian tube|Acquired atrophy of right ovary and fallopian tube +C4268927|T020|PT|N83.331|ICD10CM|Acquired atrophy of right ovary and fallopian tube|Acquired atrophy of right ovary and fallopian tube +C4268928|T020|AB|N83.332|ICD10CM|Acquired atrophy of left ovary and fallopian tube|Acquired atrophy of left ovary and fallopian tube +C4268928|T020|PT|N83.332|ICD10CM|Acquired atrophy of left ovary and fallopian tube|Acquired atrophy of left ovary and fallopian tube +C4268929|T020|AB|N83.339|ICD10CM|Acquired atrophy of ovary and fallop, unspecified side|Acquired atrophy of ovary and fallop, unspecified side +C0156362|T020|ET|N83.339|ICD10CM|Acquired atrophy of ovary and fallopian tube, NOS|Acquired atrophy of ovary and fallopian tube, NOS +C4268929|T020|PT|N83.339|ICD10CM|Acquired atrophy of ovary and fallopian tube, unspecified side|Acquired atrophy of ovary and fallopian tube, unspecified side +C0495094|T020|PT|N83.4|ICD10|Prolapse and hernia of ovary and fallopian tube|Prolapse and hernia of ovary and fallopian tube +C0495094|T020|AB|N83.4|ICD10CM|Prolapse and hernia of ovary and fallopian tube|Prolapse and hernia of ovary and fallopian tube +C0495094|T020|HT|N83.4|ICD10CM|Prolapse and hernia of ovary and fallopian tube|Prolapse and hernia of ovary and fallopian tube +C4268930|T020|AB|N83.40|ICD10CM|Prolapse and hernia of ovary and fallop, unspecified side|Prolapse and hernia of ovary and fallop, unspecified side +C0495094|T020|ET|N83.40|ICD10CM|Prolapse and hernia of ovary and fallopian tube, NOS|Prolapse and hernia of ovary and fallopian tube, NOS +C4268930|T020|PT|N83.40|ICD10CM|Prolapse and hernia of ovary and fallopian tube, unspecified side|Prolapse and hernia of ovary and fallopian tube, unspecified side +C4268931|T020|AB|N83.41|ICD10CM|Prolapse and hernia of right ovary and fallopian tube|Prolapse and hernia of right ovary and fallopian tube +C4268931|T020|PT|N83.41|ICD10CM|Prolapse and hernia of right ovary and fallopian tube|Prolapse and hernia of right ovary and fallopian tube +C4268932|T020|AB|N83.42|ICD10CM|Prolapse and hernia of left ovary and fallopian tube|Prolapse and hernia of left ovary and fallopian tube +C4268932|T020|PT|N83.42|ICD10CM|Prolapse and hernia of left ovary and fallopian tube|Prolapse and hernia of left ovary and fallopian tube +C0269170|T046|ET|N83.5|ICD10CM|Torsion of accessory tube|Torsion of accessory tube +C3814161|T047|PT|N83.5|ICD10|Torsion of ovary, ovarian pedicle and fallopian tube|Torsion of ovary, ovarian pedicle and fallopian tube +C3814161|T047|HT|N83.5|ICD10CM|Torsion of ovary, ovarian pedicle and fallopian tube|Torsion of ovary, ovarian pedicle and fallopian tube +C3814161|T047|AB|N83.5|ICD10CM|Torsion of ovary, ovarian pedicle and fallopian tube|Torsion of ovary, ovarian pedicle and fallopian tube +C2903129|T190|AB|N83.51|ICD10CM|Torsion of ovary and ovarian pedicle|Torsion of ovary and ovarian pedicle +C2903129|T190|HT|N83.51|ICD10CM|Torsion of ovary and ovarian pedicle|Torsion of ovary and ovarian pedicle +C4268933|T190|AB|N83.511|ICD10CM|Torsion of right ovary and ovarian pedicle|Torsion of right ovary and ovarian pedicle +C4268933|T190|PT|N83.511|ICD10CM|Torsion of right ovary and ovarian pedicle|Torsion of right ovary and ovarian pedicle +C4268934|T190|AB|N83.512|ICD10CM|Torsion of left ovary and ovarian pedicle|Torsion of left ovary and ovarian pedicle +C4268934|T190|PT|N83.512|ICD10CM|Torsion of left ovary and ovarian pedicle|Torsion of left ovary and ovarian pedicle +C2903129|T190|ET|N83.519|ICD10CM|Torsion of ovary and ovarian pedicle, NOS|Torsion of ovary and ovarian pedicle, NOS +C4270815|T190|AB|N83.519|ICD10CM|Torsion of ovary and ovarian pedicle, unspecified side|Torsion of ovary and ovarian pedicle, unspecified side +C4270815|T190|PT|N83.519|ICD10CM|Torsion of ovary and ovarian pedicle, unspecified side|Torsion of ovary and ovarian pedicle, unspecified side +C0269169|T046|AB|N83.52|ICD10CM|Torsion of fallopian tube|Torsion of fallopian tube +C0269169|T046|HT|N83.52|ICD10CM|Torsion of fallopian tube|Torsion of fallopian tube +C0392531|T190|ET|N83.52|ICD10CM|Torsion of hydatid of Morgagni|Torsion of hydatid of Morgagni +C2119238|T047|PT|N83.521|ICD10CM|Torsion of right fallopian tube|Torsion of right fallopian tube +C2119238|T047|AB|N83.521|ICD10CM|Torsion of right fallopian tube|Torsion of right fallopian tube +C2119239|T047|PT|N83.522|ICD10CM|Torsion of left fallopian tube|Torsion of left fallopian tube +C2119239|T047|AB|N83.522|ICD10CM|Torsion of left fallopian tube|Torsion of left fallopian tube +C0269169|T046|ET|N83.529|ICD10CM|Torsion of fallopian tube, NOS|Torsion of fallopian tube, NOS +C4268935|T020|AB|N83.529|ICD10CM|Torsion of fallopian tube, unspecified side|Torsion of fallopian tube, unspecified side +C4268935|T020|PT|N83.529|ICD10CM|Torsion of fallopian tube, unspecified side|Torsion of fallopian tube, unspecified side +C3814161|T047|PT|N83.53|ICD10CM|Torsion of ovary, ovarian pedicle and fallopian tube|Torsion of ovary, ovarian pedicle and fallopian tube +C3814161|T047|AB|N83.53|ICD10CM|Torsion of ovary, ovarian pedicle and fallopian tube|Torsion of ovary, ovarian pedicle and fallopian tube +C0018962|T047|PT|N83.6|ICD10|Haematosalpinx|Haematosalpinx +C0018962|T047|PT|N83.6|ICD10AE|Hematosalpinx|Hematosalpinx +C0018962|T047|PT|N83.6|ICD10CM|Hematosalpinx|Hematosalpinx +C0018962|T047|AB|N83.6|ICD10CM|Hematosalpinx|Hematosalpinx +C0156365|T046|PT|N83.7|ICD10|Haematoma of broad ligament|Haematoma of broad ligament +C0156365|T046|PT|N83.7|ICD10CM|Hematoma of broad ligament|Hematoma of broad ligament +C0156365|T046|AB|N83.7|ICD10CM|Hematoma of broad ligament|Hematoma of broad ligament +C0156365|T046|PT|N83.7|ICD10AE|Hematoma of broad ligament|Hematoma of broad ligament +C2903130|T047|ET|N83.8|ICD10CM|Broad ligament laceration syndrome [Allen-Masters]|Broad ligament laceration syndrome [Allen-Masters] +C0156366|T047|AB|N83.8|ICD10CM|Oth noninflammatory disord of ovary, fallop and broad ligmt|Oth noninflammatory disord of ovary, fallop and broad ligmt +C0156366|T047|PT|N83.8|ICD10CM|Other noninflammatory disorders of ovary, fallopian tube and broad ligament|Other noninflammatory disorders of ovary, fallopian tube and broad ligament +C0156366|T047|PT|N83.8|ICD10|Other noninflammatory disorders of ovary, fallopian tube and broad ligament|Other noninflammatory disorders of ovary, fallopian tube and broad ligament +C0156367|T047|AB|N83.9|ICD10CM|Noninflammatory disord of ovary, fallop & broad ligmt, unsp|Noninflammatory disord of ovary, fallop & broad ligmt, unsp +C0156367|T047|PT|N83.9|ICD10CM|Noninflammatory disorder of ovary, fallopian tube and broad ligament, unspecified|Noninflammatory disorder of ovary, fallopian tube and broad ligament, unspecified +C0156367|T047|PT|N83.9|ICD10|Noninflammatory disorder of ovary, fallopian tube and broad ligament, unspecified|Noninflammatory disorder of ovary, fallopian tube and broad ligament, unspecified +C0477791|T191|HT|N84|ICD10CM|Polyp of female genital tract|Polyp of female genital tract +C0477791|T191|AB|N84|ICD10CM|Polyp of female genital tract|Polyp of female genital tract +C0477791|T191|HT|N84|ICD10|Polyp of female genital tract|Polyp of female genital tract +C0156369|T191|PT|N84.0|ICD10|Polyp of corpus uteri|Polyp of corpus uteri +C0156369|T191|PT|N84.0|ICD10CM|Polyp of corpus uteri|Polyp of corpus uteri +C0156369|T191|AB|N84.0|ICD10CM|Polyp of corpus uteri|Polyp of corpus uteri +C1704273|T191|ET|N84.0|ICD10CM|Polyp of endometrium|Polyp of endometrium +C0156369|T191|ET|N84.0|ICD10CM|Polyp of uterus NOS|Polyp of uterus NOS +C0026725|T191|ET|N84.1|ICD10CM|Mucous polyp of cervix|Mucous polyp of cervix +C0007855|T191|PT|N84.1|ICD10CM|Polyp of cervix uteri|Polyp of cervix uteri +C0007855|T191|AB|N84.1|ICD10CM|Polyp of cervix uteri|Polyp of cervix uteri +C0007855|T191|PT|N84.1|ICD10|Polyp of cervix uteri|Polyp of cervix uteri +C0156390|T191|PT|N84.2|ICD10|Polyp of vagina|Polyp of vagina +C0156390|T191|PT|N84.2|ICD10CM|Polyp of vagina|Polyp of vagina +C0156390|T191|AB|N84.2|ICD10CM|Polyp of vagina|Polyp of vagina +C0269219|T191|ET|N84.3|ICD10CM|Polyp of labia|Polyp of labia +C0269218|T191|PT|N84.3|ICD10CM|Polyp of vulva|Polyp of vulva +C0269218|T191|AB|N84.3|ICD10CM|Polyp of vulva|Polyp of vulva +C0269218|T191|PT|N84.3|ICD10|Polyp of vulva|Polyp of vulva +C0477782|T191|PT|N84.8|ICD10|Polyp of other parts of female genital tract|Polyp of other parts of female genital tract +C0477782|T191|PT|N84.8|ICD10CM|Polyp of other parts of female genital tract|Polyp of other parts of female genital tract +C0477782|T191|AB|N84.8|ICD10CM|Polyp of other parts of female genital tract|Polyp of other parts of female genital tract +C0477791|T191|PT|N84.9|ICD10CM|Polyp of female genital tract, unspecified|Polyp of female genital tract, unspecified +C0477791|T191|AB|N84.9|ICD10CM|Polyp of female genital tract, unspecified|Polyp of female genital tract, unspecified +C0477791|T191|PT|N84.9|ICD10|Polyp of female genital tract, unspecified|Polyp of female genital tract, unspecified +C0495096|T047|HT|N85|ICD10|Other noninflammatory disorders of uterus, except cervix|Other noninflammatory disorders of uterus, except cervix +C0495096|T047|AB|N85|ICD10CM|Other noninflammatory disorders of uterus, except cervix|Other noninflammatory disorders of uterus, except cervix +C0495096|T047|HT|N85|ICD10CM|Other noninflammatory disorders of uterus, except cervix|Other noninflammatory disorders of uterus, except cervix +C0349578|T047|PT|N85.0|ICD10|Endometrial glandular hyperplasia|Endometrial glandular hyperplasia +C0014173|T047|HT|N85.0|ICD10CM|Endometrial hyperplasia|Endometrial hyperplasia +C0014173|T047|AB|N85.0|ICD10CM|Endometrial hyperplasia|Endometrial hyperplasia +C0014173|T047|AB|N85.00|ICD10CM|Endometrial hyperplasia, unspecified|Endometrial hyperplasia, unspecified +C0014173|T047|PT|N85.00|ICD10CM|Endometrial hyperplasia, unspecified|Endometrial hyperplasia, unspecified +C2903131|T033|ET|N85.00|ICD10CM|Hyperplasia (adenomatous) (cystic) (glandular) of endometrium|Hyperplasia (adenomatous) (cystic) (glandular) of endometrium +C0866271|T047|ET|N85.00|ICD10CM|Hyperplastic endometritis|Hyperplastic endometritis +C2712711|T047|PT|N85.01|ICD10CM|Benign endometrial hyperplasia|Benign endometrial hyperplasia +C2712711|T047|AB|N85.01|ICD10CM|Benign endometrial hyperplasia|Benign endometrial hyperplasia +C2903132|T047|ET|N85.01|ICD10CM|Endometrial hyperplasia (complex) (simple) without atypia|Endometrial hyperplasia (complex) (simple) without atypia +C0349579|T047|ET|N85.02|ICD10CM|Endometrial hyperplasia with atypia|Endometrial hyperplasia with atypia +C1333394|T191|AB|N85.02|ICD10CM|Endometrial intraepithelial neoplasia [EIN]|Endometrial intraepithelial neoplasia [EIN] +C1333394|T191|PT|N85.02|ICD10CM|Endometrial intraepithelial neoplasia [EIN]|Endometrial intraepithelial neoplasia [EIN] +C0349578|T047|PT|N85.1|ICD10|Endometrial adenomatous hyperplasia|Endometrial adenomatous hyperplasia +C0866270|T033|ET|N85.2|ICD10CM|Bulky or enlarged uterus|Bulky or enlarged uterus +C0156371|T033|PT|N85.2|ICD10|Hypertrophy of uterus|Hypertrophy of uterus +C0156371|T033|PT|N85.2|ICD10CM|Hypertrophy of uterus|Hypertrophy of uterus +C0156371|T033|AB|N85.2|ICD10CM|Hypertrophy of uterus|Hypertrophy of uterus +C0426265|T047|PT|N85.3|ICD10|Subinvolution of uterus|Subinvolution of uterus +C0426265|T047|PT|N85.3|ICD10CM|Subinvolution of uterus|Subinvolution of uterus +C0426265|T047|AB|N85.3|ICD10CM|Subinvolution of uterus|Subinvolution of uterus +C0269184|T190|ET|N85.4|ICD10CM|Anteversion of uterus|Anteversion of uterus +C0156373|T033|PT|N85.4|ICD10CM|Malposition of uterus|Malposition of uterus +C0156373|T033|AB|N85.4|ICD10CM|Malposition of uterus|Malposition of uterus +C0156373|T033|PT|N85.4|ICD10|Malposition of uterus|Malposition of uterus +C0237065|T190|ET|N85.4|ICD10CM|Retroflexion of uterus|Retroflexion of uterus +C0269185|T190|ET|N85.4|ICD10CM|Retroversion of uterus|Retroversion of uterus +C0162482|T046|PT|N85.5|ICD10CM|Inversion of uterus|Inversion of uterus +C0162482|T046|AB|N85.5|ICD10CM|Inversion of uterus|Inversion of uterus +C0162482|T046|PT|N85.5|ICD10|Inversion of uterus|Inversion of uterus +C1704274|T047|PT|N85.6|ICD10|Intrauterine synechiae|Intrauterine synechiae +C1704274|T047|PT|N85.6|ICD10CM|Intrauterine synechiae|Intrauterine synechiae +C1704274|T047|AB|N85.6|ICD10CM|Intrauterine synechiae|Intrauterine synechiae +C0018948|T046|PT|N85.7|ICD10|Haematometra|Haematometra +C0018948|T046|PT|N85.7|ICD10AE|Hematometra|Hematometra +C0018948|T046|PT|N85.7|ICD10CM|Hematometra|Hematometra +C0018948|T046|AB|N85.7|ICD10CM|Hematometra|Hematometra +C1399277|T184|ET|N85.7|ICD10CM|Hematosalpinx with hematometra|Hematosalpinx with hematometra +C0269187|T047|ET|N85.8|ICD10CM|Atrophy of uterus, acquired|Atrophy of uterus, acquired +C0269182|T047|ET|N85.8|ICD10CM|Fibrosis of uterus NOS|Fibrosis of uterus NOS +C0477783|T047|PT|N85.8|ICD10|Other specified noninflammatory disorders of uterus|Other specified noninflammatory disorders of uterus +C0477783|T047|PT|N85.8|ICD10CM|Other specified noninflammatory disorders of uterus|Other specified noninflammatory disorders of uterus +C0477783|T047|AB|N85.8|ICD10CM|Other specified noninflammatory disorders of uterus|Other specified noninflammatory disorders of uterus +C0042131|T047|ET|N85.9|ICD10CM|Disorder of uterus NOS|Disorder of uterus NOS +C0269179|T047|PT|N85.9|ICD10CM|Noninflammatory disorder of uterus, unspecified|Noninflammatory disorder of uterus, unspecified +C0269179|T047|AB|N85.9|ICD10CM|Noninflammatory disorder of uterus, unspecified|Noninflammatory disorder of uterus, unspecified +C0269179|T047|PT|N85.9|ICD10|Noninflammatory disorder of uterus, unspecified|Noninflammatory disorder of uterus, unspecified +C2903133|T047|ET|N86|ICD10CM|Decubitus (trophic) ulcer of cervix|Decubitus (trophic) ulcer of cervix +C0014719|T020|PT|N86|ICD10|Erosion and ectropion of cervix uteri|Erosion and ectropion of cervix uteri +C0014719|T020|PT|N86|ICD10CM|Erosion and ectropion of cervix uteri|Erosion and ectropion of cervix uteri +C0014719|T020|AB|N86|ICD10CM|Erosion and ectropion of cervix uteri|Erosion and ectropion of cervix uteri +C0269189|T047|ET|N86|ICD10CM|Eversion of cervix|Eversion of cervix +C0007868|T047|HT|N87|ICD10|Dysplasia of cervix uteri|Dysplasia of cervix uteri +C0007868|T047|HT|N87|ICD10CM|Dysplasia of cervix uteri|Dysplasia of cervix uteri +C0007868|T047|AB|N87|ICD10CM|Dysplasia of cervix uteri|Dysplasia of cervix uteri +C0349458|T191|ET|N87.0|ICD10CM|Cervical intraepithelial neoplasia I [CIN I]|Cervical intraepithelial neoplasia I [CIN I] +C0349458|T191|PT|N87.0|ICD10CM|Mild cervical dysplasia|Mild cervical dysplasia +C0349458|T191|AB|N87.0|ICD10CM|Mild cervical dysplasia|Mild cervical dysplasia +C0349458|T191|PT|N87.0|ICD10|Mild cervical dysplasia|Mild cervical dysplasia +C1456056|T191|ET|N87.1|ICD10CM|Cervical intraepithelial neoplasia II [CIN II]|Cervical intraepithelial neoplasia II [CIN II] +C0349459|T191|PT|N87.1|ICD10|Moderate cervical dysplasia|Moderate cervical dysplasia +C0349459|T191|PT|N87.1|ICD10CM|Moderate cervical dysplasia|Moderate cervical dysplasia +C0349459|T191|AB|N87.1|ICD10CM|Moderate cervical dysplasia|Moderate cervical dysplasia +C0869072|T046|PT|N87.2|ICD10|Severe cervical dysplasia, not elsewhere classified|Severe cervical dysplasia, not elsewhere classified +C0269193|T047|ET|N87.9|ICD10CM|Anaplasia of cervix|Anaplasia of cervix +C0269192|T191|ET|N87.9|ICD10CM|Cervical atypism|Cervical atypism +C0007868|T047|ET|N87.9|ICD10CM|Cervical dysplasia NOS|Cervical dysplasia NOS +C0007868|T047|PT|N87.9|ICD10CM|Dysplasia of cervix uteri, unspecified|Dysplasia of cervix uteri, unspecified +C0007868|T047|AB|N87.9|ICD10CM|Dysplasia of cervix uteri, unspecified|Dysplasia of cervix uteri, unspecified +C0007868|T047|PT|N87.9|ICD10|Dysplasia of cervix uteri, unspecified|Dysplasia of cervix uteri, unspecified +C0495099|T047|AB|N88|ICD10CM|Other noninflammatory disorders of cervix uteri|Other noninflammatory disorders of cervix uteri +C0495099|T047|HT|N88|ICD10CM|Other noninflammatory disorders of cervix uteri|Other noninflammatory disorders of cervix uteri +C0495099|T047|HT|N88|ICD10|Other noninflammatory disorders of cervix uteri|Other noninflammatory disorders of cervix uteri +C0269194|T191|PT|N88.0|ICD10|Leukoplakia of cervix uteri|Leukoplakia of cervix uteri +C0269194|T191|PT|N88.0|ICD10CM|Leukoplakia of cervix uteri|Leukoplakia of cervix uteri +C0269194|T191|AB|N88.0|ICD10CM|Leukoplakia of cervix uteri|Leukoplakia of cervix uteri +C0269196|T020|ET|N88.1|ICD10CM|Adhesions of cervix|Adhesions of cervix +C0156379|T037|PT|N88.1|ICD10|Old laceration of cervix uteri|Old laceration of cervix uteri +C0156379|T037|PT|N88.1|ICD10CM|Old laceration of cervix uteri|Old laceration of cervix uteri +C0156379|T037|AB|N88.1|ICD10CM|Old laceration of cervix uteri|Old laceration of cervix uteri +C0156380|T190|PT|N88.2|ICD10CM|Stricture and stenosis of cervix uteri|Stricture and stenosis of cervix uteri +C0156380|T190|AB|N88.2|ICD10CM|Stricture and stenosis of cervix uteri|Stricture and stenosis of cervix uteri +C0156380|T190|PT|N88.2|ICD10|Stricture and stenosis of cervix uteri|Stricture and stenosis of cervix uteri +C0007871|T046|PT|N88.3|ICD10|Incompetence of cervix uteri|Incompetence of cervix uteri +C0007871|T046|PT|N88.3|ICD10CM|Incompetence of cervix uteri|Incompetence of cervix uteri +C0007871|T046|AB|N88.3|ICD10CM|Incompetence of cervix uteri|Incompetence of cervix uteri +C2903134|T046|ET|N88.3|ICD10CM|Investigation and management of (suspected) cervical incompetence in a nonpregnant woman|Investigation and management of (suspected) cervical incompetence in a nonpregnant woman +C0020561|T047|PT|N88.4|ICD10CM|Hypertrophic elongation of cervix uteri|Hypertrophic elongation of cervix uteri +C0020561|T047|AB|N88.4|ICD10CM|Hypertrophic elongation of cervix uteri|Hypertrophic elongation of cervix uteri +C0020561|T047|PT|N88.4|ICD10|Hypertrophic elongation of cervix uteri|Hypertrophic elongation of cervix uteri +C0477784|T047|PT|N88.8|ICD10|Other specified noninflammatory disorders of cervix uteri|Other specified noninflammatory disorders of cervix uteri +C0477784|T047|PT|N88.8|ICD10CM|Other specified noninflammatory disorders of cervix uteri|Other specified noninflammatory disorders of cervix uteri +C0477784|T047|AB|N88.8|ICD10CM|Other specified noninflammatory disorders of cervix uteri|Other specified noninflammatory disorders of cervix uteri +C0156377|T047|PT|N88.9|ICD10|Noninflammatory disorder of cervix uteri, unspecified|Noninflammatory disorder of cervix uteri, unspecified +C0156377|T047|PT|N88.9|ICD10CM|Noninflammatory disorder of cervix uteri, unspecified|Noninflammatory disorder of cervix uteri, unspecified +C0156377|T047|AB|N88.9|ICD10CM|Noninflammatory disorder of cervix uteri, unspecified|Noninflammatory disorder of cervix uteri, unspecified +C0495103|T047|HT|N89|ICD10|Other noninflammatory disorders of vagina|Other noninflammatory disorders of vagina +C0495103|T047|AB|N89|ICD10CM|Other noninflammatory disorders of vagina|Other noninflammatory disorders of vagina +C0495103|T047|HT|N89|ICD10CM|Other noninflammatory disorders of vagina|Other noninflammatory disorders of vagina +C0349554|T191|PT|N89.0|ICD10CM|Mild vaginal dysplasia|Mild vaginal dysplasia +C0349554|T191|AB|N89.0|ICD10CM|Mild vaginal dysplasia|Mild vaginal dysplasia +C0349554|T191|PT|N89.0|ICD10|Mild vaginal dysplasia|Mild vaginal dysplasia +C0349554|T191|ET|N89.0|ICD10CM|Vaginal intraepithelial neoplasia [VAIN], grade I|Vaginal intraepithelial neoplasia [VAIN], grade I +C0349555|T191|PT|N89.1|ICD10CM|Moderate vaginal dysplasia|Moderate vaginal dysplasia +C0349555|T191|AB|N89.1|ICD10CM|Moderate vaginal dysplasia|Moderate vaginal dysplasia +C0349555|T191|PT|N89.1|ICD10|Moderate vaginal dysplasia|Moderate vaginal dysplasia +C0349555|T191|ET|N89.1|ICD10CM|Vaginal intraepithelial neoplasia [VAIN], grade II|Vaginal intraepithelial neoplasia [VAIN], grade II +C0869073|T046|PT|N89.2|ICD10|Severe vaginal dysplasia, not elsewhere classified|Severe vaginal dysplasia, not elsewhere classified +C0156384|T046|PT|N89.3|ICD10|Dysplasia of vagina, unspecified|Dysplasia of vagina, unspecified +C0156384|T046|PT|N89.3|ICD10CM|Dysplasia of vagina, unspecified|Dysplasia of vagina, unspecified +C0156384|T046|AB|N89.3|ICD10CM|Dysplasia of vagina, unspecified|Dysplasia of vagina, unspecified +C0156385|T191|PT|N89.4|ICD10CM|Leukoplakia of vagina|Leukoplakia of vagina +C0156385|T191|AB|N89.4|ICD10CM|Leukoplakia of vagina|Leukoplakia of vagina +C0156385|T191|PT|N89.4|ICD10|Leukoplakia of vagina|Leukoplakia of vagina +C0868912|T190|PT|N89.5|ICD10|Stricture and atresia of vagina|Stricture and atresia of vagina +C0868912|T190|PT|N89.5|ICD10CM|Stricture and atresia of vagina|Stricture and atresia of vagina +C0868912|T190|AB|N89.5|ICD10CM|Stricture and atresia of vagina|Stricture and atresia of vagina +C0269210|T047|ET|N89.5|ICD10CM|Vaginal adhesions|Vaginal adhesions +C1856007|T033|ET|N89.5|ICD10CM|Vaginal stenosis|Vaginal stenosis +C0156387|T190|ET|N89.6|ICD10CM|Rigid hymen|Rigid hymen +C0156387|T190|PT|N89.6|ICD10CM|Tight hymenal ring|Tight hymenal ring +C0156387|T190|AB|N89.6|ICD10CM|Tight hymenal ring|Tight hymenal ring +C0156387|T190|PT|N89.6|ICD10|Tight hymenal ring|Tight hymenal ring +C0156387|T190|ET|N89.6|ICD10CM|Tight introitus|Tight introitus +C0018934|T047|PT|N89.7|ICD10|Haematocolpos|Haematocolpos +C0018934|T047|PT|N89.7|ICD10CM|Hematocolpos|Hematocolpos +C0018934|T047|AB|N89.7|ICD10CM|Hematocolpos|Hematocolpos +C0018934|T047|PT|N89.7|ICD10AE|Hematocolpos|Hematocolpos +C2903135|T047|ET|N89.7|ICD10CM|Hematocolpos with hematometra or hematosalpinx|Hematocolpos with hematometra or hematosalpinx +C0023533|T184|ET|N89.8|ICD10CM|Leukorrhea NOS|Leukorrhea NOS +C0156388|T033|ET|N89.8|ICD10CM|Old vaginal laceration|Old vaginal laceration +C0029819|T047|PT|N89.8|ICD10CM|Other specified noninflammatory disorders of vagina|Other specified noninflammatory disorders of vagina +C0029819|T047|AB|N89.8|ICD10CM|Other specified noninflammatory disorders of vagina|Other specified noninflammatory disorders of vagina +C0029819|T047|PT|N89.8|ICD10|Other specified noninflammatory disorders of vagina|Other specified noninflammatory disorders of vagina +C1407928|T047|ET|N89.8|ICD10CM|Pessary ulcer of vagina|Pessary ulcer of vagina +C0156383|T047|PT|N89.9|ICD10|Noninflammatory disorder of vagina, unspecified|Noninflammatory disorder of vagina, unspecified +C0156383|T047|PT|N89.9|ICD10CM|Noninflammatory disorder of vagina, unspecified|Noninflammatory disorder of vagina, unspecified +C0156383|T047|AB|N89.9|ICD10CM|Noninflammatory disorder of vagina, unspecified|Noninflammatory disorder of vagina, unspecified +C0495105|T047|AB|N90|ICD10CM|Other noninflammatory disorders of vulva and perineum|Other noninflammatory disorders of vulva and perineum +C0495105|T047|HT|N90|ICD10CM|Other noninflammatory disorders of vulva and perineum|Other noninflammatory disorders of vulva and perineum +C0495105|T047|HT|N90|ICD10|Other noninflammatory disorders of vulva and perineum|Other noninflammatory disorders of vulva and perineum +C0495106|T191|PT|N90.0|ICD10|Mild vulvar dysplasia|Mild vulvar dysplasia +C0495106|T191|PT|N90.0|ICD10CM|Mild vulvar dysplasia|Mild vulvar dysplasia +C0495106|T191|AB|N90.0|ICD10CM|Mild vulvar dysplasia|Mild vulvar dysplasia +C0495106|T191|ET|N90.0|ICD10CM|Vulvar intraepithelial neoplasia [VIN], grade I|Vulvar intraepithelial neoplasia [VIN], grade I +C0495107|T191|PT|N90.1|ICD10CM|Moderate vulvar dysplasia|Moderate vulvar dysplasia +C0495107|T191|AB|N90.1|ICD10CM|Moderate vulvar dysplasia|Moderate vulvar dysplasia +C0495107|T191|PT|N90.1|ICD10|Moderate vulvar dysplasia|Moderate vulvar dysplasia +C0495107|T191|ET|N90.1|ICD10CM|Vulvar intraepithelial neoplasia [VIN], grade II|Vulvar intraepithelial neoplasia [VIN], grade II +C0869074|T046|PT|N90.2|ICD10|Severe vulvar dysplasia, not elsewhere classified|Severe vulvar dysplasia, not elsewhere classified +C0346210|T191|PT|N90.3|ICD10|Dysplasia of vulva, unspecified|Dysplasia of vulva, unspecified +C0346210|T191|PT|N90.3|ICD10CM|Dysplasia of vulva, unspecified|Dysplasia of vulva, unspecified +C0346210|T191|AB|N90.3|ICD10CM|Dysplasia of vulva, unspecified|Dysplasia of vulva, unspecified +C0013426|T047|ET|N90.4|ICD10CM|Dystrophy of vulva|Dystrophy of vulva +C0022783|T047|ET|N90.4|ICD10CM|Kraurosis of vulva|Kraurosis of vulva +C0022783|T047|AB|N90.4|ICD10CM|Leukoplakia of vulva|Leukoplakia of vulva +C0022783|T047|PT|N90.4|ICD10CM|Leukoplakia of vulva|Leukoplakia of vulva +C0022783|T047|PT|N90.4|ICD10|Leukoplakia of vulva|Leukoplakia of vulva +C2903136|T047|ET|N90.4|ICD10CM|Lichen sclerosus of external female genital organs|Lichen sclerosus of external female genital organs +C0156393|T047|PT|N90.5|ICD10|Atrophy of vulva|Atrophy of vulva +C0156393|T047|PT|N90.5|ICD10CM|Atrophy of vulva|Atrophy of vulva +C0156393|T047|AB|N90.5|ICD10CM|Atrophy of vulva|Atrophy of vulva +C1410069|T020|ET|N90.5|ICD10CM|Stenosis of vulva|Stenosis of vulva +C0156395|T046|AB|N90.6|ICD10CM|Hypertrophy of vulva|Hypertrophy of vulva +C0156395|T046|HT|N90.6|ICD10CM|Hypertrophy of vulva|Hypertrophy of vulva +C0156395|T046|PT|N90.6|ICD10|Hypertrophy of vulva|Hypertrophy of vulva +C4268937|T047|ET|N90.60|ICD10CM|Unspecified hypertrophy of labia|Unspecified hypertrophy of labia +C4268936|T046|AB|N90.60|ICD10CM|Unspecified hypertrophy of vulva|Unspecified hypertrophy of vulva +C4268936|T046|PT|N90.60|ICD10CM|Unspecified hypertrophy of vulva|Unspecified hypertrophy of vulva +C4268938|T047|ET|N90.61|ICD10CM|CALME|CALME +C4268938|T047|PT|N90.61|ICD10CM|Childhood asymmetric labium majus enlargement|Childhood asymmetric labium majus enlargement +C4268938|T047|AB|N90.61|ICD10CM|Childhood asymmetric labium majus enlargement|Childhood asymmetric labium majus enlargement +C4268940|T047|ET|N90.69|ICD10CM|Other specified hypertrophy of labia|Other specified hypertrophy of labia +C4268939|T046|AB|N90.69|ICD10CM|Other specified hypertrophy of vulva|Other specified hypertrophy of vulva +C4268939|T046|PT|N90.69|ICD10CM|Other specified hypertrophy of vulva|Other specified hypertrophy of vulva +C0269220|T047|PT|N90.7|ICD10|Vulvar cyst|Vulvar cyst +C0269220|T047|PT|N90.7|ICD10CM|Vulvar cyst|Vulvar cyst +C0269220|T047|AB|N90.7|ICD10CM|Vulvar cyst|Vulvar cyst +C0156399|T047|AB|N90.8|ICD10CM|Oth noninflammatory disorders of vulva and perineum|Oth noninflammatory disorders of vulva and perineum +C0156399|T047|HT|N90.8|ICD10CM|Other specified noninflammatory disorders of vulva and perineum|Other specified noninflammatory disorders of vulva and perineum +C0156399|T047|PT|N90.8|ICD10|Other specified noninflammatory disorders of vulva and perineum|Other specified noninflammatory disorders of vulva and perineum +C2903137|T033|ET|N90.81|ICD10CM|Female genital cutting status|Female genital cutting status +C0744374|T033|AB|N90.81|ICD10CM|Female genital mutilation status|Female genital mutilation status +C0744374|T033|HT|N90.81|ICD10CM|Female genital mutilation status|Female genital mutilation status +C1719547|T033|ET|N90.810|ICD10CM|Female genital cutting status, unspecified|Female genital cutting status, unspecified +C0744374|T033|ET|N90.810|ICD10CM|Female genital mutilation status NOS|Female genital mutilation status NOS +C0744374|T033|AB|N90.810|ICD10CM|Female genital mutilation status, unspecified|Female genital mutilation status, unspecified +C0744374|T033|PT|N90.810|ICD10CM|Female genital mutilation status, unspecified|Female genital mutilation status, unspecified +C1456060|T033|ET|N90.811|ICD10CM|Clitorectomy status|Clitorectomy status +C1719548|T033|ET|N90.811|ICD10CM|Female genital cutting Type I status|Female genital cutting Type I status +C1456059|T047|AB|N90.811|ICD10CM|Female genital mutilation Type I status|Female genital mutilation Type I status +C1456059|T047|PT|N90.811|ICD10CM|Female genital mutilation Type I status|Female genital mutilation Type I status +C1456062|T033|ET|N90.812|ICD10CM|Clitorectomy with excision of labia minora status|Clitorectomy with excision of labia minora status +C1719549|T033|ET|N90.812|ICD10CM|Female genital cutting Type II status|Female genital cutting Type II status +C1456061|T047|AB|N90.812|ICD10CM|Female genital mutilation Type II status|Female genital mutilation Type II status +C1456061|T047|PT|N90.812|ICD10CM|Female genital mutilation Type II status|Female genital mutilation Type II status +C1719550|T033|ET|N90.813|ICD10CM|Female genital cutting Type III status|Female genital cutting Type III status +C1456063|T047|AB|N90.813|ICD10CM|Female genital mutilation Type III status|Female genital mutilation Type III status +C1456063|T047|PT|N90.813|ICD10CM|Female genital mutilation Type III status|Female genital mutilation Type III status +C1456064|T033|ET|N90.813|ICD10CM|Infibulation status|Infibulation status +C1719724|T033|ET|N90.818|ICD10CM|Female genital cutting Type IV status|Female genital cutting Type IV status +C1719552|T033|ET|N90.818|ICD10CM|Female genital mutilation Type IV status|Female genital mutilation Type IV status +C1719553|T033|ET|N90.818|ICD10CM|Other female genital cutting status|Other female genital cutting status +C1719551|T033|AB|N90.818|ICD10CM|Other female genital mutilation status|Other female genital mutilation status +C1719551|T033|PT|N90.818|ICD10CM|Other female genital mutilation status|Other female genital mutilation status +C1386454|T190|ET|N90.89|ICD10CM|Adhesions of vulva|Adhesions of vulva +C0156394|T047|ET|N90.89|ICD10CM|Hypertrophy of clitoris|Hypertrophy of clitoris +C0156399|T047|AB|N90.89|ICD10CM|Oth noninflammatory disorders of vulva and perineum|Oth noninflammatory disorders of vulva and perineum +C0156399|T047|PT|N90.89|ICD10CM|Other specified noninflammatory disorders of vulva and perineum|Other specified noninflammatory disorders of vulva and perineum +C0156400|T047|PT|N90.9|ICD10CM|Noninflammatory disorder of vulva and perineum, unspecified|Noninflammatory disorder of vulva and perineum, unspecified +C0156400|T047|AB|N90.9|ICD10CM|Noninflammatory disorder of vulva and perineum, unspecified|Noninflammatory disorder of vulva and perineum, unspecified +C0156400|T047|PT|N90.9|ICD10|Noninflammatory disorder of vulva and perineum, unspecified|Noninflammatory disorder of vulva and perineum, unspecified +C0495109|T047|AB|N91|ICD10CM|Absent, scanty and rare menstruation|Absent, scanty and rare menstruation +C0495109|T047|HT|N91|ICD10CM|Absent, scanty and rare menstruation|Absent, scanty and rare menstruation +C0495109|T047|HT|N91|ICD10|Absent, scanty and rare menstruation|Absent, scanty and rare menstruation +C0232939|T047|PT|N91.0|ICD10CM|Primary amenorrhea|Primary amenorrhea +C0232939|T047|AB|N91.0|ICD10CM|Primary amenorrhea|Primary amenorrhea +C0232939|T047|PT|N91.0|ICD10AE|Primary amenorrhea|Primary amenorrhea +C0232939|T047|PT|N91.0|ICD10|Primary amenorrhoea|Primary amenorrhoea +C0232940|T047|PT|N91.1|ICD10AE|Secondary amenorrhea|Secondary amenorrhea +C0232940|T047|PT|N91.1|ICD10CM|Secondary amenorrhea|Secondary amenorrhea +C0232940|T047|AB|N91.1|ICD10CM|Secondary amenorrhea|Secondary amenorrhea +C0232940|T047|PT|N91.1|ICD10|Secondary amenorrhoea|Secondary amenorrhoea +C0002453|T033|PT|N91.2|ICD10AE|Amenorrhea, unspecified|Amenorrhea, unspecified +C0002453|T033|PT|N91.2|ICD10CM|Amenorrhea, unspecified|Amenorrhea, unspecified +C0002453|T033|AB|N91.2|ICD10CM|Amenorrhea, unspecified|Amenorrhea, unspecified +C0002453|T033|PT|N91.2|ICD10|Amenorrhoea, unspecified|Amenorrhoea, unspecified +C0475546|T046|PT|N91.3|ICD10AE|Primary oligomenorrhea|Primary oligomenorrhea +C0475546|T046|PT|N91.3|ICD10CM|Primary oligomenorrhea|Primary oligomenorrhea +C0475546|T046|AB|N91.3|ICD10CM|Primary oligomenorrhea|Primary oligomenorrhea +C0475546|T046|PT|N91.3|ICD10|Primary oligomenorrhoea|Primary oligomenorrhoea +C0475547|T046|PT|N91.4|ICD10CM|Secondary oligomenorrhea|Secondary oligomenorrhea +C0475547|T046|AB|N91.4|ICD10CM|Secondary oligomenorrhea|Secondary oligomenorrhea +C0475547|T046|PT|N91.4|ICD10AE|Secondary oligomenorrhea|Secondary oligomenorrhea +C0475547|T046|PT|N91.4|ICD10|Secondary oligomenorrhoea|Secondary oligomenorrhoea +C0020624|T047|ET|N91.5|ICD10CM|Hypomenorrhea NOS|Hypomenorrhea NOS +C0028949|T046|PT|N91.5|ICD10AE|Oligomenorrhea, unspecified|Oligomenorrhea, unspecified +C0028949|T046|PT|N91.5|ICD10CM|Oligomenorrhea, unspecified|Oligomenorrhea, unspecified +C0028949|T046|AB|N91.5|ICD10CM|Oligomenorrhea, unspecified|Oligomenorrhea, unspecified +C0028949|T046|PT|N91.5|ICD10|Oligomenorrhoea, unspecified|Oligomenorrhoea, unspecified +C0868913|T046|HT|N92|ICD10|Excessive, frequent and irregular menstruation|Excessive, frequent and irregular menstruation +C0868913|T046|AB|N92|ICD10CM|Excessive, frequent and irregular menstruation|Excessive, frequent and irregular menstruation +C0868913|T046|HT|N92|ICD10CM|Excessive, frequent and irregular menstruation|Excessive, frequent and irregular menstruation +C0495111|T046|PT|N92.0|ICD10|Excessive and frequent menstruation with regular cycle|Excessive and frequent menstruation with regular cycle +C0495111|T046|PT|N92.0|ICD10CM|Excessive and frequent menstruation with regular cycle|Excessive and frequent menstruation with regular cycle +C0495111|T046|AB|N92.0|ICD10CM|Excessive and frequent menstruation with regular cycle|Excessive and frequent menstruation with regular cycle +C0025323|T046|ET|N92.0|ICD10CM|Heavy periods NOS|Heavy periods NOS +C0025323|T046|ET|N92.0|ICD10CM|Menorrhagia NOS|Menorrhagia NOS +C0032519|T047|ET|N92.0|ICD10CM|Polymenorrhea|Polymenorrhea +C0495112|T046|PT|N92.1|ICD10CM|Excessive and frequent menstruation with irregular cycle|Excessive and frequent menstruation with irregular cycle +C0495112|T046|AB|N92.1|ICD10CM|Excessive and frequent menstruation with irregular cycle|Excessive and frequent menstruation with irregular cycle +C0495112|T046|PT|N92.1|ICD10|Excessive and frequent menstruation with irregular cycle|Excessive and frequent menstruation with irregular cycle +C0025874|T046|ET|N92.1|ICD10CM|Irregular intermenstrual bleeding|Irregular intermenstrual bleeding +C2903138|T046|ET|N92.1|ICD10CM|Irregular, shortened intervals between menstrual bleeding|Irregular, shortened intervals between menstrual bleeding +C0232943|T184|ET|N92.1|ICD10CM|Menometrorrhagia|Menometrorrhagia +C0025874|T046|ET|N92.1|ICD10CM|Metrorrhagia|Metrorrhagia +C0156403|T046|ET|N92.2|ICD10CM|Excessive bleeding associated with onset of menstrual periods|Excessive bleeding associated with onset of menstrual periods +C0156403|T046|PT|N92.2|ICD10CM|Excessive menstruation at puberty|Excessive menstruation at puberty +C0156403|T046|AB|N92.2|ICD10CM|Excessive menstruation at puberty|Excessive menstruation at puberty +C0156403|T046|PT|N92.2|ICD10|Excessive menstruation at puberty|Excessive menstruation at puberty +C0156403|T046|ET|N92.2|ICD10CM|Pubertal menorrhagia|Pubertal menorrhagia +C0156403|T046|ET|N92.2|ICD10CM|Puberty bleeding|Puberty bleeding +C0156405|T184|PT|N92.3|ICD10CM|Ovulation bleeding|Ovulation bleeding +C0156405|T184|AB|N92.3|ICD10CM|Ovulation bleeding|Ovulation bleeding +C0156405|T184|PT|N92.3|ICD10|Ovulation bleeding|Ovulation bleeding +C0547004|T184|ET|N92.3|ICD10CM|Regular intermenstrual bleeding|Regular intermenstrual bleeding +C2903139|T046|ET|N92.4|ICD10CM|Climacteric menorrhagia or metrorrhagia|Climacteric menorrhagia or metrorrhagia +C0156408|T046|PT|N92.4|ICD10|Excessive bleeding in the premenopausal period|Excessive bleeding in the premenopausal period +C0156408|T046|PT|N92.4|ICD10CM|Excessive bleeding in the premenopausal period|Excessive bleeding in the premenopausal period +C0156408|T046|AB|N92.4|ICD10CM|Excessive bleeding in the premenopausal period|Excessive bleeding in the premenopausal period +C2903140|T046|ET|N92.4|ICD10CM|Menopausal menorrhagia or metrorrhagia|Menopausal menorrhagia or metrorrhagia +C0747484|T184|ET|N92.4|ICD10CM|Perimenopausal bleeding|Perimenopausal bleeding +C5141155|T046|ET|N92.4|ICD10CM|Perimenopausal menorrhagia or metrorrhagia|Perimenopausal menorrhagia or metrorrhagia +C2903141|T046|ET|N92.4|ICD10CM|Preclimacteric menorrhagia or metrorrhagia|Preclimacteric menorrhagia or metrorrhagia +C2903142|T046|ET|N92.4|ICD10CM|Premenopausal menorrhagia or metrorrhagia|Premenopausal menorrhagia or metrorrhagia +C0477785|T046|PT|N92.5|ICD10|Other specified irregular menstruation|Other specified irregular menstruation +C0477785|T046|PT|N92.5|ICD10CM|Other specified irregular menstruation|Other specified irregular menstruation +C0477785|T046|AB|N92.5|ICD10CM|Other specified irregular menstruation|Other specified irregular menstruation +C0745411|T184|ET|N92.6|ICD10CM|Irregular bleeding NOS|Irregular bleeding NOS +C0156404|T033|PT|N92.6|ICD10|Irregular menstruation, unspecified|Irregular menstruation, unspecified +C0156404|T033|PT|N92.6|ICD10CM|Irregular menstruation, unspecified|Irregular menstruation, unspecified +C0156404|T033|AB|N92.6|ICD10CM|Irregular menstruation, unspecified|Irregular menstruation, unspecified +C0156404|T033|ET|N92.6|ICD10CM|Irregular periods NOS|Irregular periods NOS +C0495115|T046|HT|N93|ICD10|Other abnormal uterine and vaginal bleeding|Other abnormal uterine and vaginal bleeding +C0495115|T046|AB|N93|ICD10CM|Other abnormal uterine and vaginal bleeding|Other abnormal uterine and vaginal bleeding +C0495115|T046|HT|N93|ICD10CM|Other abnormal uterine and vaginal bleeding|Other abnormal uterine and vaginal bleeding +C0495116|T046|PT|N93.0|ICD10CM|Postcoital and contact bleeding|Postcoital and contact bleeding +C0495116|T046|AB|N93.0|ICD10CM|Postcoital and contact bleeding|Postcoital and contact bleeding +C0495116|T046|PT|N93.0|ICD10|Postcoital and contact bleeding|Postcoital and contact bleeding +C0878577|T046|AB|N93.1|ICD10CM|Pre-pubertal vaginal bleeding|Pre-pubertal vaginal bleeding +C0878577|T046|PT|N93.1|ICD10CM|Pre-pubertal vaginal bleeding|Pre-pubertal vaginal bleeding +C2903143|T047|ET|N93.8|ICD10CM|Dysfunctional or functional uterine or vaginal bleeding NOS|Dysfunctional or functional uterine or vaginal bleeding NOS +C0477786|T046|PT|N93.8|ICD10|Other specified abnormal uterine and vaginal bleeding|Other specified abnormal uterine and vaginal bleeding +C0477786|T046|PT|N93.8|ICD10CM|Other specified abnormal uterine and vaginal bleeding|Other specified abnormal uterine and vaginal bleeding +C0477786|T046|AB|N93.8|ICD10CM|Other specified abnormal uterine and vaginal bleeding|Other specified abnormal uterine and vaginal bleeding +C0495117|T046|PT|N93.9|ICD10|Abnormal uterine and vaginal bleeding, unspecified|Abnormal uterine and vaginal bleeding, unspecified +C0495117|T046|PT|N93.9|ICD10CM|Abnormal uterine and vaginal bleeding, unspecified|Abnormal uterine and vaginal bleeding, unspecified +C0495117|T046|AB|N93.9|ICD10CM|Abnormal uterine and vaginal bleeding, unspecified|Abnormal uterine and vaginal bleeding, unspecified +C0156401|T184|AB|N94|ICD10CM|Pain and oth cond assoc w fem gntl org and menstrual cycle|Pain and oth cond assoc w fem gntl org and menstrual cycle +C0156401|T184|HT|N94|ICD10CM|Pain and other conditions associated with female genital organs and menstrual cycle|Pain and other conditions associated with female genital organs and menstrual cycle +C0156401|T184|HT|N94|ICD10|Pain and other conditions associated with female genital organs and menstrual cycle|Pain and other conditions associated with female genital organs and menstrual cycle +C0152149|T184|PT|N94.0|ICD10|Mittelschmerz|Mittelschmerz +C0152149|T184|PT|N94.0|ICD10CM|Mittelschmerz|Mittelschmerz +C0152149|T184|AB|N94.0|ICD10CM|Mittelschmerz|Mittelschmerz +C0013394|T047|AB|N94.1|ICD10CM|Dyspareunia|Dyspareunia +C0013394|T047|HT|N94.1|ICD10CM|Dyspareunia|Dyspareunia +C0013394|T047|PT|N94.1|ICD10|Dyspareunia|Dyspareunia +C4268941|T047|AB|N94.10|ICD10CM|Unspecified dyspareunia|Unspecified dyspareunia +C4268941|T047|PT|N94.10|ICD10CM|Unspecified dyspareunia|Unspecified dyspareunia +C4268942|T047|AB|N94.11|ICD10CM|Superficial (introital) dyspareunia|Superficial (introital) dyspareunia +C4268942|T047|PT|N94.11|ICD10CM|Superficial (introital) dyspareunia|Superficial (introital) dyspareunia +C0423747|T047|AB|N94.12|ICD10CM|Deep dyspareunia|Deep dyspareunia +C0423747|T047|PT|N94.12|ICD10CM|Deep dyspareunia|Deep dyspareunia +C4268943|T047|AB|N94.19|ICD10CM|Other specified dyspareunia|Other specified dyspareunia +C4268943|T047|PT|N94.19|ICD10CM|Other specified dyspareunia|Other specified dyspareunia +C2004487|T047|PT|N94.2|ICD10|Vaginismus|Vaginismus +C2004487|T047|PT|N94.2|ICD10CM|Vaginismus|Vaginismus +C2004487|T047|AB|N94.2|ICD10CM|Vaginismus|Vaginismus +C0376356|T047|PT|N94.3|ICD10CM|Premenstrual tension syndrome|Premenstrual tension syndrome +C0376356|T047|AB|N94.3|ICD10CM|Premenstrual tension syndrome|Premenstrual tension syndrome +C0376356|T047|PT|N94.3|ICD10|Premenstrual tension syndrome|Premenstrual tension syndrome +C0149875|T047|PT|N94.4|ICD10CM|Primary dysmenorrhea|Primary dysmenorrhea +C0149875|T047|AB|N94.4|ICD10CM|Primary dysmenorrhea|Primary dysmenorrhea +C0149875|T047|PT|N94.4|ICD10AE|Primary dysmenorrhea|Primary dysmenorrhea +C0149875|T047|PT|N94.4|ICD10|Primary dysmenorrhoea|Primary dysmenorrhoea +C0232944|T046|PT|N94.5|ICD10AE|Secondary dysmenorrhea|Secondary dysmenorrhea +C0232944|T046|PT|N94.5|ICD10CM|Secondary dysmenorrhea|Secondary dysmenorrhea +C0232944|T046|AB|N94.5|ICD10CM|Secondary dysmenorrhea|Secondary dysmenorrhea +C0232944|T046|PT|N94.5|ICD10|Secondary dysmenorrhoea|Secondary dysmenorrhoea +C0013390|T047|PT|N94.6|ICD10AE|Dysmenorrhea, unspecified|Dysmenorrhea, unspecified +C0013390|T047|PT|N94.6|ICD10CM|Dysmenorrhea, unspecified|Dysmenorrhea, unspecified +C0013390|T047|AB|N94.6|ICD10CM|Dysmenorrhea, unspecified|Dysmenorrhea, unspecified +C0013390|T047|PT|N94.6|ICD10|Dysmenorrhoea, unspecified|Dysmenorrhoea, unspecified +C0477787|T046|AB|N94.8|ICD10CM|Oth cond assoc w female genital organs and menstrual cycle|Oth cond assoc w female genital organs and menstrual cycle +C0477787|T046|HT|N94.8|ICD10CM|Other specified conditions associated with female genital organs and menstrual cycle|Other specified conditions associated with female genital organs and menstrual cycle +C0477787|T046|PT|N94.8|ICD10|Other specified conditions associated with female genital organs and menstrual cycle|Other specified conditions associated with female genital organs and menstrual cycle +C0406670|T047|HT|N94.81|ICD10CM|Vulvodynia|Vulvodynia +C0406670|T047|AB|N94.81|ICD10CM|Vulvodynia|Vulvodynia +C0269084|T047|PT|N94.810|ICD10CM|Vulvar vestibulitis|Vulvar vestibulitis +C0269084|T047|AB|N94.810|ICD10CM|Vulvar vestibulitis|Vulvar vestibulitis +C2349583|T047|AB|N94.818|ICD10CM|Other vulvodynia|Other vulvodynia +C2349583|T047|PT|N94.818|ICD10CM|Other vulvodynia|Other vulvodynia +C0406670|T047|ET|N94.819|ICD10CM|Vulvodynia NOS|Vulvodynia NOS +C0406670|T047|AB|N94.819|ICD10CM|Vulvodynia, unspecified|Vulvodynia, unspecified +C0406670|T047|PT|N94.819|ICD10CM|Vulvodynia, unspecified|Vulvodynia, unspecified +C0477787|T046|AB|N94.89|ICD10CM|Oth cond assoc w female genital organs and menstrual cycle|Oth cond assoc w female genital organs and menstrual cycle +C0477787|T046|PT|N94.89|ICD10CM|Other specified conditions associated with female genital organs and menstrual cycle|Other specified conditions associated with female genital organs and menstrual cycle +C0495119|T046|AB|N94.9|ICD10CM|Unsp cond assoc w female genital organs and menstrual cycle|Unsp cond assoc w female genital organs and menstrual cycle +C0495119|T046|PT|N94.9|ICD10CM|Unspecified condition associated with female genital organs and menstrual cycle|Unspecified condition associated with female genital organs and menstrual cycle +C0495119|T046|PT|N94.9|ICD10|Unspecified condition associated with female genital organs and menstrual cycle|Unspecified condition associated with female genital organs and menstrual cycle +C0495120|T047|HT|N95|ICD10|Menopausal and other perimenopausal disorders|Menopausal and other perimenopausal disorders +C0495120|T047|AB|N95|ICD10CM|Menopausal and other perimenopausal disorders|Menopausal and other perimenopausal disorders +C0495120|T047|HT|N95|ICD10CM|Menopausal and other perimenopausal disorders|Menopausal and other perimenopausal disorders +C0032776|T046|PT|N95.0|ICD10|Postmenopausal bleeding|Postmenopausal bleeding +C0032776|T046|PT|N95.0|ICD10CM|Postmenopausal bleeding|Postmenopausal bleeding +C0032776|T046|AB|N95.0|ICD10CM|Postmenopausal bleeding|Postmenopausal bleeding +C0495121|T046|PT|N95.1|ICD10|Menopausal and female climacteric states|Menopausal and female climacteric states +C0495121|T046|PT|N95.1|ICD10CM|Menopausal and female climacteric states|Menopausal and female climacteric states +C0495121|T046|AB|N95.1|ICD10CM|Menopausal and female climacteric states|Menopausal and female climacteric states +C0156409|T047|PT|N95.2|ICD10CM|Postmenopausal atrophic vaginitis|Postmenopausal atrophic vaginitis +C0156409|T047|AB|N95.2|ICD10CM|Postmenopausal atrophic vaginitis|Postmenopausal atrophic vaginitis +C0156409|T047|PT|N95.2|ICD10|Postmenopausal atrophic vaginitis|Postmenopausal atrophic vaginitis +C0156409|T047|ET|N95.2|ICD10CM|Senile (atrophic) vaginitis|Senile (atrophic) vaginitis +C0156410|T046|PT|N95.3|ICD10|States associated with artificial menopause|States associated with artificial menopause +C0477788|T047|PT|N95.8|ICD10CM|Other specified menopausal and perimenopausal disorders|Other specified menopausal and perimenopausal disorders +C0477788|T047|AB|N95.8|ICD10CM|Other specified menopausal and perimenopausal disorders|Other specified menopausal and perimenopausal disorders +C0477788|T047|PT|N95.8|ICD10|Other specified menopausal and perimenopausal disorders|Other specified menopausal and perimenopausal disorders +C0495122|T047|PT|N95.9|ICD10|Menopausal and perimenopausal disorder, unspecified|Menopausal and perimenopausal disorder, unspecified +C0495122|T047|AB|N95.9|ICD10CM|Unspecified menopausal and perimenopausal disorder|Unspecified menopausal and perimenopausal disorder +C0495122|T047|PT|N95.9|ICD10CM|Unspecified menopausal and perimenopausal disorder|Unspecified menopausal and perimenopausal disorder +C0000809|T047|PT|N96|ICD10|Habitual aborter|Habitual aborter +C2903145|T047|ET|N96|ICD10CM|Investigation or care in a nonpregnant woman with history of recurrent pregnancy loss|Investigation or care in a nonpregnant woman with history of recurrent pregnancy loss +C2921106|T046|PT|N96|ICD10CM|Recurrent pregnancy loss|Recurrent pregnancy loss +C2921106|T046|AB|N96|ICD10CM|Recurrent pregnancy loss|Recurrent pregnancy loss +C0021361|T046|HT|N97|ICD10|Female infertility|Female infertility +C0021361|T046|HT|N97|ICD10CM|Female infertility|Female infertility +C0021361|T046|AB|N97|ICD10CM|Female infertility|Female infertility +C4290242|T046|ET|N97|ICD10CM|inability to achieve a pregnancy|inability to achieve a pregnancy +C0917730|T033|ET|N97|ICD10CM|sterility, female NOS|sterility, female NOS +C0404572|T047|PT|N97.0|ICD10|Female infertility associated with anovulation|Female infertility associated with anovulation +C0404572|T047|PT|N97.0|ICD10CM|Female infertility associated with anovulation|Female infertility associated with anovulation +C0404572|T047|AB|N97.0|ICD10CM|Female infertility associated with anovulation|Female infertility associated with anovulation +C2903147|T046|ET|N97.1|ICD10CM|Female infertility associated with congenital anomaly of tube|Female infertility associated with congenital anomaly of tube +C2903148|T046|ET|N97.1|ICD10CM|Female infertility due to tubal block|Female infertility due to tubal block +C2903149|T046|ET|N97.1|ICD10CM|Female infertility due to tubal occlusion|Female infertility due to tubal occlusion +C2903150|T046|ET|N97.1|ICD10CM|Female infertility due to tubal stenosis|Female infertility due to tubal stenosis +C0156415|T047|PT|N97.1|ICD10|Female infertility of tubal origin|Female infertility of tubal origin +C0156415|T047|PT|N97.1|ICD10CM|Female infertility of tubal origin|Female infertility of tubal origin +C0156415|T047|AB|N97.1|ICD10CM|Female infertility of tubal origin|Female infertility of tubal origin +C0269235|T046|ET|N97.2|ICD10CM|Female infertility associated with congenital anomaly of uterus|Female infertility associated with congenital anomaly of uterus +C2903151|T046|ET|N97.2|ICD10CM|Female infertility due to nonimplantation of ovum|Female infertility due to nonimplantation of ovum +C0156416|T046|PT|N97.2|ICD10CM|Female infertility of uterine origin|Female infertility of uterine origin +C0156416|T046|AB|N97.2|ICD10CM|Female infertility of uterine origin|Female infertility of uterine origin +C0156416|T046|PT|N97.2|ICD10|Female infertility of uterine origin|Female infertility of uterine origin +C0269237|T047|PT|N97.3|ICD10|Female infertility of cervical origin|Female infertility of cervical origin +C0404584|T047|PT|N97.4|ICD10|Female infertility associated with male factors|Female infertility associated with male factors +C0477789|T046|PT|N97.8|ICD10|Female infertility of other origin|Female infertility of other origin +C0477789|T046|PT|N97.8|ICD10CM|Female infertility of other origin|Female infertility of other origin +C0477789|T046|AB|N97.8|ICD10CM|Female infertility of other origin|Female infertility of other origin +C0021361|T046|PT|N97.9|ICD10CM|Female infertility, unspecified|Female infertility, unspecified +C0021361|T046|AB|N97.9|ICD10CM|Female infertility, unspecified|Female infertility, unspecified +C0021361|T046|PT|N97.9|ICD10|Female infertility, unspecified|Female infertility, unspecified +C0477796|T046|HT|N98|ICD10CM|Complications associated with artificial fertilization|Complications associated with artificial fertilization +C0477796|T046|AB|N98|ICD10CM|Complications associated with artificial fertilization|Complications associated with artificial fertilization +C0477796|T046|HT|N98|ICD10|Complications associated with artificial fertilization|Complications associated with artificial fertilization +C0452110|T047|PT|N98.0|ICD10|Infection associated with artificial insemination|Infection associated with artificial insemination +C0452110|T047|PT|N98.0|ICD10CM|Infection associated with artificial insemination|Infection associated with artificial insemination +C0452110|T047|AB|N98.0|ICD10CM|Infection associated with artificial insemination|Infection associated with artificial insemination +C0549383|T046|PT|N98.1|ICD10|Hyperstimulation of ovaries|Hyperstimulation of ovaries +C0549383|T046|PT|N98.1|ICD10CM|Hyperstimulation of ovaries|Hyperstimulation of ovaries +C0549383|T046|AB|N98.1|ICD10CM|Hyperstimulation of ovaries|Hyperstimulation of ovaries +C2903152|T033|ET|N98.1|ICD10CM|Hyperstimulation of ovaries associated with induced ovulation|Hyperstimulation of ovaries associated with induced ovulation +C0549383|T046|ET|N98.1|ICD10CM|Hyperstimulation of ovaries NOS|Hyperstimulation of ovaries NOS +C0452111|T046|AB|N98.2|ICD10CM|Comp of attempt introduce of fertilized ovum fol in vitro|Comp of attempt introduce of fertilized ovum fol in vitro +C0452111|T046|PT|N98.2|ICD10CM|Complications of attempted introduction of fertilized ovum following in vitro fertilization|Complications of attempted introduction of fertilized ovum following in vitro fertilization +C0452111|T046|PT|N98.2|ICD10|Complications of attempted introduction of fertilized ovum following in vitro fertilization|Complications of attempted introduction of fertilized ovum following in vitro fertilization +C0452112|T046|AB|N98.3|ICD10CM|Comp of attempted introduction of embryo in embryo transfer|Comp of attempted introduction of embryo in embryo transfer +C0452112|T046|PT|N98.3|ICD10CM|Complications of attempted introduction of embryo in embryo transfer|Complications of attempted introduction of embryo in embryo transfer +C0452112|T046|PT|N98.3|ICD10|Complications of attempted introduction of embryo in embryo transfer|Complications of attempted introduction of embryo in embryo transfer +C0477790|T046|PT|N98.8|ICD10|Other complications associated with artificial fertilization|Other complications associated with artificial fertilization +C0477790|T046|PT|N98.8|ICD10CM|Other complications associated with artificial fertilization|Other complications associated with artificial fertilization +C0477790|T046|AB|N98.8|ICD10CM|Other complications associated with artificial fertilization|Other complications associated with artificial fertilization +C0477796|T046|AB|N98.9|ICD10CM|Complication associated with artificial fertilization, unsp|Complication associated with artificial fertilization, unsp +C0477796|T046|PT|N98.9|ICD10CM|Complication associated with artificial fertilization, unspecified|Complication associated with artificial fertilization, unspecified +C0477796|T046|PT|N98.9|ICD10|Complication associated with artificial fertilization, unspecified|Complication associated with artificial fertilization, unspecified +C2903153|T046|AB|N99|ICD10CM|Intraop and postproc comp and disorders of GU sys, NEC|Intraop and postproc comp and disorders of GU sys, NEC +C0495123|T047|HT|N99|ICD10|Postprocedural disorders of genitourinary system, not elsewhere classified|Postprocedural disorders of genitourinary system, not elsewhere classified +C0477797|T047|HT|N99-N99.9|ICD10|Other disorders of the genitourinary tract|Other disorders of the genitourinary tract +C2903154|T046|AB|N99.0|ICD10CM|Postprocedural (acute) (chronic) kidney failure|Postprocedural (acute) (chronic) kidney failure +C2903154|T046|PT|N99.0|ICD10CM|Postprocedural (acute) (chronic) kidney failure|Postprocedural (acute) (chronic) kidney failure +C0495124|T047|PT|N99.0|ICD10|Postprocedural renal failure|Postprocedural renal failure +C0268873|T020|ET|N99.1|ICD10CM|Postcatheterization urethral stricture|Postcatheterization urethral stricture +C0495125|T020|PT|N99.1|ICD10|Postprocedural urethral stricture|Postprocedural urethral stricture +C0495125|T020|HT|N99.1|ICD10CM|Postprocedural urethral stricture|Postprocedural urethral stricture +C0495125|T020|AB|N99.1|ICD10CM|Postprocedural urethral stricture|Postprocedural urethral stricture +C2903159|T020|AB|N99.11|ICD10CM|Postprocedural urethral stricture, male|Postprocedural urethral stricture, male +C2903159|T020|HT|N99.11|ICD10CM|Postprocedural urethral stricture, male|Postprocedural urethral stricture, male +C2903155|T020|AB|N99.110|ICD10CM|Postprocedural urethral stricture, male, meatal|Postprocedural urethral stricture, male, meatal +C2903155|T020|PT|N99.110|ICD10CM|Postprocedural urethral stricture, male, meatal|Postprocedural urethral stricture, male, meatal +C2903156|T046|AB|N99.111|ICD10CM|Postprocedural bulbous urethral stricture, male|Postprocedural bulbous urethral stricture, male +C2903156|T046|PT|N99.111|ICD10CM|Postprocedural bulbous urethral stricture, male|Postprocedural bulbous urethral stricture, male +C2903157|T046|AB|N99.112|ICD10CM|Postprocedural membranous urethral stricture, male|Postprocedural membranous urethral stricture, male +C2903157|T046|PT|N99.112|ICD10CM|Postprocedural membranous urethral stricture, male|Postprocedural membranous urethral stricture, male +C4509377|T020|AB|N99.113|ICD10CM|Postprocedural anterior bulbous urethral stricture, male|Postprocedural anterior bulbous urethral stricture, male +C4509377|T020|PT|N99.113|ICD10CM|Postprocedural anterior bulbous urethral stricture, male|Postprocedural anterior bulbous urethral stricture, male +C2903159|T020|AB|N99.114|ICD10CM|Postprocedural urethral stricture, male, unspecified|Postprocedural urethral stricture, male, unspecified +C2903159|T020|PT|N99.114|ICD10CM|Postprocedural urethral stricture, male, unspecified|Postprocedural urethral stricture, male, unspecified +C4268945|T046|AB|N99.115|ICD10CM|Postprocedural fossa navicularis urethral stricture|Postprocedural fossa navicularis urethral stricture +C4268945|T046|PT|N99.115|ICD10CM|Postprocedural fossa navicularis urethral stricture|Postprocedural fossa navicularis urethral stricture +C4703285|T046|AB|N99.116|ICD10CM|Postprocedural urethral stricture, male, overlapping sites|Postprocedural urethral stricture, male, overlapping sites +C4703285|T046|PT|N99.116|ICD10CM|Postprocedural urethral stricture, male, overlapping sites|Postprocedural urethral stricture, male, overlapping sites +C2903160|T020|AB|N99.12|ICD10CM|Postprocedural urethral stricture, female|Postprocedural urethral stricture, female +C2903160|T020|PT|N99.12|ICD10CM|Postprocedural urethral stricture, female|Postprocedural urethral stricture, female +C0269211|T046|PT|N99.2|ICD10|Postoperative adhesions of vagina|Postoperative adhesions of vagina +C0269211|T046|PT|N99.2|ICD10CM|Postprocedural adhesions of vagina|Postprocedural adhesions of vagina +C0269211|T046|AB|N99.2|ICD10CM|Postprocedural adhesions of vagina|Postprocedural adhesions of vagina +C0156354|T020|PT|N99.3|ICD10|Prolapse of vaginal vault after hysterectomy|Prolapse of vaginal vault after hysterectomy +C0156354|T020|PT|N99.3|ICD10CM|Prolapse of vaginal vault after hysterectomy|Prolapse of vaginal vault after hysterectomy +C0156354|T020|AB|N99.3|ICD10CM|Prolapse of vaginal vault after hysterectomy|Prolapse of vaginal vault after hysterectomy +C0451701|T020|PT|N99.4|ICD10CM|Postprocedural pelvic peritoneal adhesions|Postprocedural pelvic peritoneal adhesions +C0451701|T020|AB|N99.4|ICD10CM|Postprocedural pelvic peritoneal adhesions|Postprocedural pelvic peritoneal adhesions +C0451701|T020|PT|N99.4|ICD10|Postprocedural pelvic peritoneal adhesions|Postprocedural pelvic peritoneal adhesions +C2903161|T046|AB|N99.5|ICD10CM|Complications of stoma of urinary tract|Complications of stoma of urinary tract +C2903161|T046|HT|N99.5|ICD10CM|Complications of stoma of urinary tract|Complications of stoma of urinary tract +C0452113|T046|PT|N99.5|ICD10|Malfunction of external stoma of urinary tract|Malfunction of external stoma of urinary tract +C1392935|T046|HT|N99.51|ICD10CM|Complication of cystostomy|Complication of cystostomy +C1392935|T046|AB|N99.51|ICD10CM|Complication of cystostomy|Complication of cystostomy +C2903162|T046|PT|N99.510|ICD10CM|Cystostomy hemorrhage|Cystostomy hemorrhage +C2903162|T046|AB|N99.510|ICD10CM|Cystostomy hemorrhage|Cystostomy hemorrhage +C2903163|T046|AB|N99.511|ICD10CM|Cystostomy infection|Cystostomy infection +C2903163|T046|PT|N99.511|ICD10CM|Cystostomy infection|Cystostomy infection +C1397892|T046|PT|N99.512|ICD10CM|Cystostomy malfunction|Cystostomy malfunction +C1397892|T046|AB|N99.512|ICD10CM|Cystostomy malfunction|Cystostomy malfunction +C2903164|T046|AB|N99.518|ICD10CM|Other cystostomy complication|Other cystostomy complication +C2903164|T046|PT|N99.518|ICD10CM|Other cystostomy complication|Other cystostomy complication +C4268946|T046|AB|N99.52|ICD10CM|Complication of incontinent external stoma of urinary tract|Complication of incontinent external stoma of urinary tract +C4268946|T046|HT|N99.52|ICD10CM|Complication of incontinent external stoma of urinary tract|Complication of incontinent external stoma of urinary tract +C4268947|T046|AB|N99.520|ICD10CM|Hemorrhage of incontinent external stoma of urinary tract|Hemorrhage of incontinent external stoma of urinary tract +C4268947|T046|PT|N99.520|ICD10CM|Hemorrhage of incontinent external stoma of urinary tract|Hemorrhage of incontinent external stoma of urinary tract +C4268948|T046|AB|N99.521|ICD10CM|Infection of incontinent external stoma of urinary tract|Infection of incontinent external stoma of urinary tract +C4268948|T046|PT|N99.521|ICD10CM|Infection of incontinent external stoma of urinary tract|Infection of incontinent external stoma of urinary tract +C4268949|T046|AB|N99.522|ICD10CM|Malfunction of incontinent external stoma of urinary tract|Malfunction of incontinent external stoma of urinary tract +C4268949|T046|PT|N99.522|ICD10CM|Malfunction of incontinent external stoma of urinary tract|Malfunction of incontinent external stoma of urinary tract +C4268950|T046|AB|N99.523|ICD10CM|Herniation of incontinent stoma of urinary tract|Herniation of incontinent stoma of urinary tract +C4268950|T046|PT|N99.523|ICD10CM|Herniation of incontinent stoma of urinary tract|Herniation of incontinent stoma of urinary tract +C4268951|T046|AB|N99.524|ICD10CM|Stenosis of incontinent stoma of urinary tract|Stenosis of incontinent stoma of urinary tract +C4268951|T046|PT|N99.524|ICD10CM|Stenosis of incontinent stoma of urinary tract|Stenosis of incontinent stoma of urinary tract +C4268952|T046|AB|N99.528|ICD10CM|Other comp of incontinent external stoma of urinary tract|Other comp of incontinent external stoma of urinary tract +C4268952|T046|PT|N99.528|ICD10CM|Other complication of incontinent external stoma of urinary tract|Other complication of incontinent external stoma of urinary tract +C4268953|T046|AB|N99.53|ICD10CM|Complication of continent stoma of urinary tract|Complication of continent stoma of urinary tract +C4268953|T046|HT|N99.53|ICD10CM|Complication of continent stoma of urinary tract|Complication of continent stoma of urinary tract +C4268954|T046|AB|N99.530|ICD10CM|Hemorrhage of continent stoma of urinary tract|Hemorrhage of continent stoma of urinary tract +C4268954|T046|PT|N99.530|ICD10CM|Hemorrhage of continent stoma of urinary tract|Hemorrhage of continent stoma of urinary tract +C4268955|T046|AB|N99.531|ICD10CM|Infection of continent stoma of urinary tract|Infection of continent stoma of urinary tract +C4268955|T046|PT|N99.531|ICD10CM|Infection of continent stoma of urinary tract|Infection of continent stoma of urinary tract +C4268956|T046|AB|N99.532|ICD10CM|Malfunction of continent stoma of urinary tract|Malfunction of continent stoma of urinary tract +C4268956|T046|PT|N99.532|ICD10CM|Malfunction of continent stoma of urinary tract|Malfunction of continent stoma of urinary tract +C4268957|T046|AB|N99.533|ICD10CM|Herniation of continent stoma of urinary tract|Herniation of continent stoma of urinary tract +C4268957|T046|PT|N99.533|ICD10CM|Herniation of continent stoma of urinary tract|Herniation of continent stoma of urinary tract +C4268958|T046|AB|N99.534|ICD10CM|Stenosis of continent stoma of urinary tract|Stenosis of continent stoma of urinary tract +C4268958|T046|PT|N99.534|ICD10CM|Stenosis of continent stoma of urinary tract|Stenosis of continent stoma of urinary tract +C4268959|T046|AB|N99.538|ICD10CM|Other complication of continent stoma of urinary tract|Other complication of continent stoma of urinary tract +C4268959|T046|PT|N99.538|ICD10CM|Other complication of continent stoma of urinary tract|Other complication of continent stoma of urinary tract +C2903175|T047|AB|N99.6|ICD10CM|Intraop hemor/hemtom of a GU sys org comp a procedure|Intraop hemor/hemtom of a GU sys org comp a procedure +C2903176|T047|AB|N99.61|ICD10CM|Intraop hemor/hemtom of a GU sys org comp a GU sys procedure|Intraop hemor/hemtom of a GU sys org comp a GU sys procedure +C2903177|T047|AB|N99.62|ICD10CM|Intraop hemor/hemtom of a GU sys org comp oth procedure|Intraop hemor/hemtom of a GU sys org comp oth procedure +C2903178|T037|AB|N99.7|ICD10CM|Accidental pnctr & lac of a GU sys org dur proc|Accidental pnctr & lac of a GU sys org dur proc +C2903178|T037|HT|N99.7|ICD10CM|Accidental puncture and laceration of a genitourinary system organ or structure during a procedure|Accidental puncture and laceration of a genitourinary system organ or structure during a procedure +C2903179|T037|AB|N99.71|ICD10CM|Acc pnctr & lac of a GU sys org during a GU sys procedure|Acc pnctr & lac of a GU sys org during a GU sys procedure +C2903180|T037|AB|N99.72|ICD10CM|Accidental pnctr & lac of a GU sys org during oth procedure|Accidental pnctr & lac of a GU sys org during oth procedure +C2903181|T047|AB|N99.8|ICD10CM|Oth intraop and postproc comp and disorders of GU sys|Oth intraop and postproc comp and disorders of GU sys +C2903181|T047|HT|N99.8|ICD10CM|Other intraoperative and postprocedural complications and disorders of genitourinary system|Other intraoperative and postprocedural complications and disorders of genitourinary system +C0477798|T047|PT|N99.8|ICD10|Other postprocedural disorders of genitourinary system|Other postprocedural disorders of genitourinary system +C2903182|T047|AB|N99.81|ICD10CM|Other intraoperative complications of genitourinary system|Other intraoperative complications of genitourinary system +C2903182|T047|PT|N99.81|ICD10CM|Other intraoperative complications of genitourinary system|Other intraoperative complications of genitourinary system +C4268960|T046|AB|N99.82|ICD10CM|Postproc hemorrhage of a GU sys org following a procedure|Postproc hemorrhage of a GU sys org following a procedure +C4268960|T046|HT|N99.82|ICD10CM|Postprocedural hemorrhage of a genitourinary system organ or structure following a procedure|Postprocedural hemorrhage of a genitourinary system organ or structure following a procedure +C4268961|T046|AB|N99.820|ICD10CM|Postproc hemor of a GU sys org following a GU sys procedure|Postproc hemor of a GU sys org following a GU sys procedure +C4268962|T046|AB|N99.821|ICD10CM|Postproc hemor of a GU sys org following other procedure|Postproc hemor of a GU sys org following other procedure +C4268962|T046|PT|N99.821|ICD10CM|Postprocedural hemorrhage of a genitourinary system organ or structure following other procedure|Postprocedural hemorrhage of a genitourinary system organ or structure following other procedure +C0271614|T047|PT|N99.83|ICD10CM|Residual ovary syndrome|Residual ovary syndrome +C0271614|T047|AB|N99.83|ICD10CM|Residual ovary syndrome|Residual ovary syndrome +C4268963|T046|AB|N99.84|ICD10CM|Postproc hematoma and seroma of a GU sys org fol a procedure|Postproc hematoma and seroma of a GU sys org fol a procedure +C4268964|T046|AB|N99.840|ICD10CM|Postproc hematoma of a GU sys org fol a GU sys procedure|Postproc hematoma of a GU sys org fol a GU sys procedure +C4268965|T046|AB|N99.841|ICD10CM|Postproc hematoma of a GU sys org following other procedure|Postproc hematoma of a GU sys org following other procedure +C4268965|T046|PT|N99.841|ICD10CM|Postprocedural hematoma of a genitourinary system organ or structure following other procedure|Postprocedural hematoma of a genitourinary system organ or structure following other procedure +C4268966|T046|AB|N99.842|ICD10CM|Postproc seroma of a GU sys org following a GU sys procedure|Postproc seroma of a GU sys org following a GU sys procedure +C4268967|T046|AB|N99.843|ICD10CM|Postproc seroma of a GU sys org following other procedure|Postproc seroma of a GU sys org following other procedure +C4268967|T046|PT|N99.843|ICD10CM|Postprocedural seroma of a genitourinary system organ or structure following other procedure|Postprocedural seroma of a genitourinary system organ or structure following other procedure +C5140870|T047|AB|N99.85|ICD10CM|Post endometrial ablation syndrome|Post endometrial ablation syndrome +C5140870|T047|PT|N99.85|ICD10CM|Post endometrial ablation syndrome|Post endometrial ablation syndrome +C2903186|T047|AB|N99.89|ICD10CM|Oth postprocedural complications and disorders of GU sys|Oth postprocedural complications and disorders of GU sys +C2903186|T047|PT|N99.89|ICD10CM|Other postprocedural complications and disorders of genitourinary system|Other postprocedural complications and disorders of genitourinary system +C0495126|T037|PT|N99.9|ICD10|Postprocedural disorder of genitourinary system, unspecified|Postprocedural disorder of genitourinary system, unspecified +C0032987|T046|HT|O00|ICD10CM|Ectopic pregnancy|Ectopic pregnancy +C0032987|T046|AB|O00|ICD10CM|Ectopic pregnancy|Ectopic pregnancy +C0032987|T046|HT|O00|ICD10|Ectopic pregnancy|Ectopic pregnancy +C0392534|T046|ET|O00|ICD10CM|ruptured ectopic pregnancy|ruptured ectopic pregnancy +C0156543|T033|HT|O00-O08|ICD10CM|Pregnancy with abortive outcome (O00-O08)|Pregnancy with abortive outcome (O00-O08) +C0156543|T033|HT|O00-O08.9|ICD10|Pregnancy with abortive outcome|Pregnancy with abortive outcome +C0032984|T046|PT|O00.0|ICD10|Abdominal pregnancy|Abdominal pregnancy +C0032984|T046|AB|O00.0|ICD10CM|Abdominal pregnancy|Abdominal pregnancy +C0032984|T046|HT|O00.0|ICD10CM|Abdominal pregnancy|Abdominal pregnancy +C0032984|T046|ET|O00.00|ICD10CM|Abdominal pregnancy NOS|Abdominal pregnancy NOS +C1135231|T046|AB|O00.00|ICD10CM|Abdominal pregnancy without intrauterine pregnancy|Abdominal pregnancy without intrauterine pregnancy +C1135231|T046|PT|O00.00|ICD10CM|Abdominal pregnancy without intrauterine pregnancy|Abdominal pregnancy without intrauterine pregnancy +C1135232|T046|AB|O00.01|ICD10CM|Abdominal pregnancy with intrauterine pregnancy|Abdominal pregnancy with intrauterine pregnancy +C1135232|T046|PT|O00.01|ICD10CM|Abdominal pregnancy with intrauterine pregnancy|Abdominal pregnancy with intrauterine pregnancy +C0032994|T046|ET|O00.1|ICD10CM|Fallopian pregnancy|Fallopian pregnancy +C0041276|T046|ET|O00.1|ICD10CM|Rupture of (fallopian) tube due to pregnancy|Rupture of (fallopian) tube due to pregnancy +C0000822|T046|ET|O00.1|ICD10CM|Tubal abortion|Tubal abortion +C0032994|T046|AB|O00.1|ICD10CM|Tubal pregnancy|Tubal pregnancy +C0032994|T046|HT|O00.1|ICD10CM|Tubal pregnancy|Tubal pregnancy +C0032994|T046|PT|O00.1|ICD10|Tubal pregnancy|Tubal pregnancy +C0032994|T046|ET|O00.10|ICD10CM|Tubal pregnancy NOS|Tubal pregnancy NOS +C1135233|T046|AB|O00.10|ICD10CM|Tubal pregnancy without intrauterine pregnancy|Tubal pregnancy without intrauterine pregnancy +C1135233|T046|HT|O00.10|ICD10CM|Tubal pregnancy without intrauterine pregnancy|Tubal pregnancy without intrauterine pregnancy +C4509378|T046|PT|O00.101|ICD10CM|Right tubal pregnancy without intrauterine pregnancy|Right tubal pregnancy without intrauterine pregnancy +C4509378|T046|AB|O00.101|ICD10CM|Right tubal pregnancy without intrauterine pregnancy|Right tubal pregnancy without intrauterine pregnancy +C4509379|T046|PT|O00.102|ICD10CM|Left tubal pregnancy without intrauterine pregnancy|Left tubal pregnancy without intrauterine pregnancy +C4509379|T046|AB|O00.102|ICD10CM|Left tubal pregnancy without intrauterine pregnancy|Left tubal pregnancy without intrauterine pregnancy +C4509380|T046|AB|O00.109|ICD10CM|Unspecified tubal pregnancy without intrauterine pregnancy|Unspecified tubal pregnancy without intrauterine pregnancy +C4509380|T046|PT|O00.109|ICD10CM|Unspecified tubal pregnancy without intrauterine pregnancy|Unspecified tubal pregnancy without intrauterine pregnancy +C1135234|T046|AB|O00.11|ICD10CM|Tubal pregnancy with intrauterine pregnancy|Tubal pregnancy with intrauterine pregnancy +C1135234|T046|HT|O00.11|ICD10CM|Tubal pregnancy with intrauterine pregnancy|Tubal pregnancy with intrauterine pregnancy +C4509381|T046|AB|O00.111|ICD10CM|Right tubal pregnancy with intrauterine pregnancy|Right tubal pregnancy with intrauterine pregnancy +C4509381|T046|PT|O00.111|ICD10CM|Right tubal pregnancy with intrauterine pregnancy|Right tubal pregnancy with intrauterine pregnancy +C4509382|T046|AB|O00.112|ICD10CM|Left tubal pregnancy with intrauterine pregnancy|Left tubal pregnancy with intrauterine pregnancy +C4509382|T046|PT|O00.112|ICD10CM|Left tubal pregnancy with intrauterine pregnancy|Left tubal pregnancy with intrauterine pregnancy +C4509383|T046|AB|O00.119|ICD10CM|Unspecified tubal pregnancy with intrauterine pregnancy|Unspecified tubal pregnancy with intrauterine pregnancy +C4509383|T046|PT|O00.119|ICD10CM|Unspecified tubal pregnancy with intrauterine pregnancy|Unspecified tubal pregnancy with intrauterine pregnancy +C0032991|T046|AB|O00.2|ICD10CM|Ovarian pregnancy|Ovarian pregnancy +C0032991|T046|HT|O00.2|ICD10CM|Ovarian pregnancy|Ovarian pregnancy +C0032991|T046|PT|O00.2|ICD10|Ovarian pregnancy|Ovarian pregnancy +C0032991|T046|ET|O00.20|ICD10CM|Ovarian pregnancy NOS|Ovarian pregnancy NOS +C1135235|T046|AB|O00.20|ICD10CM|Ovarian pregnancy without intrauterine pregnancy|Ovarian pregnancy without intrauterine pregnancy +C1135235|T046|HT|O00.20|ICD10CM|Ovarian pregnancy without intrauterine pregnancy|Ovarian pregnancy without intrauterine pregnancy +C4509384|T046|PT|O00.201|ICD10CM|Right ovarian pregnancy without intrauterine pregnancy|Right ovarian pregnancy without intrauterine pregnancy +C4509384|T046|AB|O00.201|ICD10CM|Right ovarian pregnancy without intrauterine pregnancy|Right ovarian pregnancy without intrauterine pregnancy +C4509385|T046|PT|O00.202|ICD10CM|Left ovarian pregnancy without intrauterine pregnancy|Left ovarian pregnancy without intrauterine pregnancy +C4509385|T046|AB|O00.202|ICD10CM|Left ovarian pregnancy without intrauterine pregnancy|Left ovarian pregnancy without intrauterine pregnancy +C4509386|T046|AB|O00.209|ICD10CM|Unspecified ovarian pregnancy without intrauterine pregnancy|Unspecified ovarian pregnancy without intrauterine pregnancy +C4509386|T046|PT|O00.209|ICD10CM|Unspecified ovarian pregnancy without intrauterine pregnancy|Unspecified ovarian pregnancy without intrauterine pregnancy +C1135236|T046|AB|O00.21|ICD10CM|Ovarian pregnancy with intrauterine pregnancy|Ovarian pregnancy with intrauterine pregnancy +C1135236|T046|HT|O00.21|ICD10CM|Ovarian pregnancy with intrauterine pregnancy|Ovarian pregnancy with intrauterine pregnancy +C4509588|T046|AB|O00.211|ICD10CM|Right ovarian pregnancy with intrauterine pregnancy|Right ovarian pregnancy with intrauterine pregnancy +C4509588|T046|PT|O00.211|ICD10CM|Right ovarian pregnancy with intrauterine pregnancy|Right ovarian pregnancy with intrauterine pregnancy +C4536152|T046|AB|O00.212|ICD10CM|Left ovarian pregnancy with intrauterine pregnancy|Left ovarian pregnancy with intrauterine pregnancy +C4536152|T046|PT|O00.212|ICD10CM|Left ovarian pregnancy with intrauterine pregnancy|Left ovarian pregnancy with intrauterine pregnancy +C4509387|T046|AB|O00.219|ICD10CM|Unspecified ovarian pregnancy with intrauterine pregnancy|Unspecified ovarian pregnancy with intrauterine pregnancy +C4509387|T046|PT|O00.219|ICD10CM|Unspecified ovarian pregnancy with intrauterine pregnancy|Unspecified ovarian pregnancy with intrauterine pregnancy +C0269285|T047|ET|O00.8|ICD10CM|Cervical pregnancy|Cervical pregnancy +C0269286|T046|ET|O00.8|ICD10CM|Cornual pregnancy|Cornual pregnancy +C0269288|T047|ET|O00.8|ICD10CM|Intraligamentous pregnancy|Intraligamentous pregnancy +C0269287|T047|ET|O00.8|ICD10CM|Mural pregnancy|Mural pregnancy +C0029604|T046|PT|O00.8|ICD10|Other ectopic pregnancy|Other ectopic pregnancy +C0029604|T046|AB|O00.8|ICD10CM|Other ectopic pregnancy|Other ectopic pregnancy +C0029604|T046|HT|O00.8|ICD10CM|Other ectopic pregnancy|Other ectopic pregnancy +C0029604|T046|ET|O00.80|ICD10CM|Other ectopic pregnancy NOS|Other ectopic pregnancy NOS +C1135237|T047|AB|O00.80|ICD10CM|Other ectopic pregnancy without intrauterine pregnancy|Other ectopic pregnancy without intrauterine pregnancy +C1135237|T047|PT|O00.80|ICD10CM|Other ectopic pregnancy without intrauterine pregnancy|Other ectopic pregnancy without intrauterine pregnancy +C1135238|T047|AB|O00.81|ICD10CM|Other ectopic pregnancy with intrauterine pregnancy|Other ectopic pregnancy with intrauterine pregnancy +C1135238|T047|PT|O00.81|ICD10CM|Other ectopic pregnancy with intrauterine pregnancy|Other ectopic pregnancy with intrauterine pregnancy +C0032987|T046|AB|O00.9|ICD10CM|Ectopic pregnancy, unspecified|Ectopic pregnancy, unspecified +C0032987|T046|HT|O00.9|ICD10CM|Ectopic pregnancy, unspecified|Ectopic pregnancy, unspecified +C0032987|T046|PT|O00.9|ICD10|Ectopic pregnancy, unspecified|Ectopic pregnancy, unspecified +C0032987|T046|ET|O00.90|ICD10CM|Ectopic pregnancy NOS|Ectopic pregnancy NOS +C1135239|T046|AB|O00.90|ICD10CM|Unspecified ectopic pregnancy without intrauterine pregnancy|Unspecified ectopic pregnancy without intrauterine pregnancy +C1135239|T046|PT|O00.90|ICD10CM|Unspecified ectopic pregnancy without intrauterine pregnancy|Unspecified ectopic pregnancy without intrauterine pregnancy +C1135240|T046|AB|O00.91|ICD10CM|Unspecified ectopic pregnancy with intrauterine pregnancy|Unspecified ectopic pregnancy with intrauterine pregnancy +C1135240|T046|PT|O00.91|ICD10CM|Unspecified ectopic pregnancy with intrauterine pregnancy|Unspecified ectopic pregnancy with intrauterine pregnancy +C0020217|T191|HT|O01|ICD10CM|Hydatidiform mole|Hydatidiform mole +C0020217|T191|AB|O01|ICD10CM|Hydatidiform mole|Hydatidiform mole +C0020217|T191|HT|O01|ICD10|Hydatidiform mole|Hydatidiform mole +C0020217|T191|PT|O01.0|ICD10|Classical hydatidiform mole|Classical hydatidiform mole +C0020217|T191|PT|O01.0|ICD10CM|Classical hydatidiform mole|Classical hydatidiform mole +C0020217|T191|AB|O01.0|ICD10CM|Classical hydatidiform mole|Classical hydatidiform mole +C0678213|T191|ET|O01.0|ICD10CM|Complete hydatidiform mole|Complete hydatidiform mole +C0334529|T191|PT|O01.1|ICD10|Incomplete and partial hydatidiform mole|Incomplete and partial hydatidiform mole +C0334529|T191|PT|O01.1|ICD10CM|Incomplete and partial hydatidiform mole|Incomplete and partial hydatidiform mole +C0334529|T191|AB|O01.1|ICD10CM|Incomplete and partial hydatidiform mole|Incomplete and partial hydatidiform mole +C0020217|T191|PT|O01.9|ICD10CM|Hydatidiform mole, unspecified|Hydatidiform mole, unspecified +C0020217|T191|AB|O01.9|ICD10CM|Hydatidiform mole, unspecified|Hydatidiform mole, unspecified +C0020217|T191|PT|O01.9|ICD10|Hydatidiform mole, unspecified|Hydatidiform mole, unspecified +C2931618|T047|ET|O01.9|ICD10CM|Trophoblastic disease NOS|Trophoblastic disease NOS +C0678213|T191|ET|O01.9|ICD10CM|Vesicular mole NOS|Vesicular mole NOS +C0156422|T047|HT|O02|ICD10CM|Other abnormal products of conception|Other abnormal products of conception +C0156422|T047|AB|O02|ICD10CM|Other abnormal products of conception|Other abnormal products of conception +C0156422|T047|HT|O02|ICD10|Other abnormal products of conception|Other abnormal products of conception +C0495127|T033|PT|O02.0|ICD10CM|Blighted ovum and nonhydatidiform mole|Blighted ovum and nonhydatidiform mole +C0495127|T033|AB|O02.0|ICD10CM|Blighted ovum and nonhydatidiform mole|Blighted ovum and nonhydatidiform mole +C0495127|T033|PT|O02.0|ICD10|Blighted ovum and nonhydatidiform mole|Blighted ovum and nonhydatidiform mole +C0701846|T046|ET|O02.0|ICD10CM|Carneous mole|Carneous mole +C0701846|T046|ET|O02.0|ICD10CM|Fleshy mole|Fleshy mole +C2903187|T046|ET|O02.0|ICD10CM|Intrauterine mole NOS|Intrauterine mole NOS +C2903188|T046|ET|O02.0|ICD10CM|Molar pregnancy NEC|Molar pregnancy NEC +C2903189|T046|ET|O02.0|ICD10CM|Pathological ovum|Pathological ovum +C2903190|T033|ET|O02.1|ICD10CM|Early fetal death, before completion of 20 weeks of gestation, with retention of dead fetus|Early fetal death, before completion of 20 weeks of gestation, with retention of dead fetus +C0000814|T047|PT|O02.1|ICD10|Missed abortion|Missed abortion +C0000814|T047|AB|O02.1|ICD10CM|Missed abortion|Missed abortion +C0000814|T047|PT|O02.1|ICD10CM|Missed abortion|Missed abortion +C0477800|T046|PT|O02.8|ICD10|Other specified abnormal products of conception|Other specified abnormal products of conception +C0477800|T046|HT|O02.8|ICD10CM|Other specified abnormal products of conception|Other specified abnormal products of conception +C0477800|T046|AB|O02.8|ICD10CM|Other specified abnormal products of conception|Other specified abnormal products of conception +C0404845|T033|ET|O02.81|ICD10CM|Biochemical pregnancy|Biochemical pregnancy +C2919902|T046|ET|O02.81|ICD10CM|Chemical pregnancy|Chemical pregnancy +C3161120|T033|AB|O02.81|ICD10CM|Inapprop chg quantitav hCG in early pregnancy|Inapprop chg quantitav hCG in early pregnancy +C3161120|T033|PT|O02.81|ICD10CM|Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy|Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy +C0156422|T047|AB|O02.89|ICD10CM|Other abnormal products of conception|Other abnormal products of conception +C0156422|T047|PT|O02.89|ICD10CM|Other abnormal products of conception|Other abnormal products of conception +C0000786|T046|ET|O03|ICD10CM|miscarriage|miscarriage +C0000786|T046|HT|O03|ICD10CM|Spontaneous abortion|Spontaneous abortion +C0000786|T046|AB|O03|ICD10CM|Spontaneous abortion|Spontaneous abortion +C0000786|T046|HT|O03|ICD10|Spontaneous abortion|Spontaneous abortion +C2903191|T046|ET|O03.0|ICD10CM|Endometritis following incomplete spontaneous abortion|Endometritis following incomplete spontaneous abortion +C2903197|T046|PT|O03.0|ICD10CM|Genital tract and pelvic infection following incomplete spontaneous abortion|Genital tract and pelvic infection following incomplete spontaneous abortion +C2903197|T046|AB|O03.0|ICD10CM|Genitl trct and pelvic infection fol incmpl spon abortion|Genitl trct and pelvic infection fol incmpl spon abortion +C2903192|T046|ET|O03.0|ICD10CM|Oophoritis following incomplete spontaneous abortion|Oophoritis following incomplete spontaneous abortion +C2903193|T046|ET|O03.0|ICD10CM|Parametritis following incomplete spontaneous abortion|Parametritis following incomplete spontaneous abortion +C2903194|T046|ET|O03.0|ICD10CM|Pelvic peritonitis following incomplete spontaneous abortion|Pelvic peritonitis following incomplete spontaneous abortion +C2903195|T046|ET|O03.0|ICD10CM|Salpingitis following incomplete spontaneous abortion|Salpingitis following incomplete spontaneous abortion +C2903196|T046|ET|O03.0|ICD10CM|Salpingo-oophoritis following incomplete spontaneous abortion|Salpingo-oophoritis following incomplete spontaneous abortion +C0156425|T047|PT|O03.0|ICD10|Spontaneous abortion, incomplete, complicated by genital tract and pelvic infection|Spontaneous abortion, incomplete, complicated by genital tract and pelvic infection +C2903198|T047|ET|O03.1|ICD10CM|Afibrinogenemia following incomplete spontaneous abortion|Afibrinogenemia following incomplete spontaneous abortion +C2903199|T046|ET|O03.1|ICD10CM|Defibrination syndrome following incomplete spontaneous abortion|Defibrination syndrome following incomplete spontaneous abortion +C2903202|T046|AB|O03.1|ICD10CM|Delayed or excessive hemor following incmpl spon abortion|Delayed or excessive hemor following incmpl spon abortion +C2903202|T046|PT|O03.1|ICD10CM|Delayed or excessive hemorrhage following incomplete spontaneous abortion|Delayed or excessive hemorrhage following incomplete spontaneous abortion +C2903200|T046|ET|O03.1|ICD10CM|Hemolysis following incomplete spontaneous abortion|Hemolysis following incomplete spontaneous abortion +C2903201|T046|ET|O03.1|ICD10CM|Intravascular coagulation following incomplete spontaneous abortion|Intravascular coagulation following incomplete spontaneous abortion +C0156429|T046|PT|O03.1|ICD10|Spontaneous abortion, incomplete, complicated by delayed or excessive haemorrhage|Spontaneous abortion, incomplete, complicated by delayed or excessive haemorrhage +C0156429|T046|PT|O03.1|ICD10AE|Spontaneous abortion, incomplete, complicated by delayed or excessive hemorrhage|Spontaneous abortion, incomplete, complicated by delayed or excessive hemorrhage +C2903203|T046|ET|O03.2|ICD10CM|Air embolism following incomplete spontaneous abortion|Air embolism following incomplete spontaneous abortion +C2903204|T046|ET|O03.2|ICD10CM|Amniotic fluid embolism following incomplete spontaneous abortion|Amniotic fluid embolism following incomplete spontaneous abortion +C2903205|T046|ET|O03.2|ICD10CM|Blood-clot embolism following incomplete spontaneous abortion|Blood-clot embolism following incomplete spontaneous abortion +C0404919|T046|PT|O03.2|ICD10CM|Embolism following incomplete spontaneous abortion|Embolism following incomplete spontaneous abortion +C0404919|T046|AB|O03.2|ICD10CM|Embolism following incomplete spontaneous abortion|Embolism following incomplete spontaneous abortion +C0404919|T046|ET|O03.2|ICD10CM|Embolism NOS following incomplete spontaneous abortion|Embolism NOS following incomplete spontaneous abortion +C2903207|T046|ET|O03.2|ICD10CM|Fat embolism following incomplete spontaneous abortion|Fat embolism following incomplete spontaneous abortion +C2903208|T046|ET|O03.2|ICD10CM|Pulmonary embolism following incomplete spontaneous abortion|Pulmonary embolism following incomplete spontaneous abortion +C2903209|T046|ET|O03.2|ICD10CM|Pyemic embolism following incomplete spontaneous abortion|Pyemic embolism following incomplete spontaneous abortion +C2903210|T046|ET|O03.2|ICD10CM|Septic or septicopyemic embolism following incomplete spontaneous abortion|Septic or septicopyemic embolism following incomplete spontaneous abortion +C2903211|T046|ET|O03.2|ICD10CM|Soap embolism following incomplete spontaneous abortion|Soap embolism following incomplete spontaneous abortion +C0404919|T046|PT|O03.2|ICD10|Spontaneous abortion, incomplete, complicated by embolism|Spontaneous abortion, incomplete, complicated by embolism +C2903213|T046|AB|O03.3|ICD10CM|Oth and unsp comp following incomplete spontaneous abortion|Oth and unsp comp following incomplete spontaneous abortion +C2903213|T046|HT|O03.3|ICD10CM|Other and unspecified complications following incomplete spontaneous abortion|Other and unspecified complications following incomplete spontaneous abortion +C0495128|T047|PT|O03.3|ICD10|Spontaenous abortion, incomplete, with other and unspecified complications|Spontaenous abortion, incomplete, with other and unspecified complications +C2903214|T046|AB|O03.30|ICD10CM|Unsp complication following incomplete spontaneous abortion|Unsp complication following incomplete spontaneous abortion +C2903214|T046|PT|O03.30|ICD10CM|Unspecified complication following incomplete spontaneous abortion|Unspecified complication following incomplete spontaneous abortion +C2903215|T046|ET|O03.31|ICD10CM|Circulatory collapse following incomplete spontaneous abortion|Circulatory collapse following incomplete spontaneous abortion +C2903216|T046|ET|O03.31|ICD10CM|Shock (postprocedural) following incomplete spontaneous abortion|Shock (postprocedural) following incomplete spontaneous abortion +C2903217|T046|PT|O03.31|ICD10CM|Shock following incomplete spontaneous abortion|Shock following incomplete spontaneous abortion +C2903217|T046|AB|O03.31|ICD10CM|Shock following incomplete spontaneous abortion|Shock following incomplete spontaneous abortion +C2903218|T046|ET|O03.32|ICD10CM|Kidney failure (acute) following incomplete spontaneous abortion|Kidney failure (acute) following incomplete spontaneous abortion +C2903219|T046|ET|O03.32|ICD10CM|Oliguria following incomplete spontaneous abortion|Oliguria following incomplete spontaneous abortion +C2903223|T046|PT|O03.32|ICD10CM|Renal failure following incomplete spontaneous abortion|Renal failure following incomplete spontaneous abortion +C2903223|T046|AB|O03.32|ICD10CM|Renal failure following incomplete spontaneous abortion|Renal failure following incomplete spontaneous abortion +C2903220|T046|ET|O03.32|ICD10CM|Renal shutdown following incomplete spontaneous abortion|Renal shutdown following incomplete spontaneous abortion +C2903221|T046|ET|O03.32|ICD10CM|Renal tubular necrosis following incomplete spontaneous abortion|Renal tubular necrosis following incomplete spontaneous abortion +C2903222|T046|ET|O03.32|ICD10CM|Uremia following incomplete spontaneous abortion|Uremia following incomplete spontaneous abortion +C0404921|T046|PT|O03.33|ICD10CM|Metabolic disorder following incomplete spontaneous abortion|Metabolic disorder following incomplete spontaneous abortion +C0404921|T046|AB|O03.33|ICD10CM|Metabolic disorder following incomplete spontaneous abortion|Metabolic disorder following incomplete spontaneous abortion +C2903232|T046|AB|O03.34|ICD10CM|Damage to pelvic organs following incomplete spon abortion|Damage to pelvic organs following incomplete spon abortion +C2903232|T046|PT|O03.34|ICD10CM|Damage to pelvic organs following incomplete spontaneous abortion|Damage to pelvic organs following incomplete spontaneous abortion +C2903226|T037|ET|O03.34|ICD10CM|Laceration, perforation, tear or chemical damage of bowel following incomplete spontaneous abortion|Laceration, perforation, tear or chemical damage of bowel following incomplete spontaneous abortion +C2903228|T037|ET|O03.34|ICD10CM|Laceration, perforation, tear or chemical damage of cervix following incomplete spontaneous abortion|Laceration, perforation, tear or chemical damage of cervix following incomplete spontaneous abortion +C2903230|T037|ET|O03.34|ICD10CM|Laceration, perforation, tear or chemical damage of uterus following incomplete spontaneous abortion|Laceration, perforation, tear or chemical damage of uterus following incomplete spontaneous abortion +C2903231|T037|ET|O03.34|ICD10CM|Laceration, perforation, tear or chemical damage of vagina following incomplete spontaneous abortion|Laceration, perforation, tear or chemical damage of vagina following incomplete spontaneous abortion +C2903233|T046|AB|O03.35|ICD10CM|Oth venous comp following incomplete spontaneous abortion|Oth venous comp following incomplete spontaneous abortion +C2903233|T046|PT|O03.35|ICD10CM|Other venous complications following incomplete spontaneous abortion|Other venous complications following incomplete spontaneous abortion +C2903234|T046|PT|O03.36|ICD10CM|Cardiac arrest following incomplete spontaneous abortion|Cardiac arrest following incomplete spontaneous abortion +C2903234|T046|AB|O03.36|ICD10CM|Cardiac arrest following incomplete spontaneous abortion|Cardiac arrest following incomplete spontaneous abortion +C2903235|T046|PT|O03.37|ICD10CM|Sepsis following incomplete spontaneous abortion|Sepsis following incomplete spontaneous abortion +C2903235|T046|AB|O03.37|ICD10CM|Sepsis following incomplete spontaneous abortion|Sepsis following incomplete spontaneous abortion +C2903236|T047|ET|O03.38|ICD10CM|Cystitis following incomplete spontaneous abortion|Cystitis following incomplete spontaneous abortion +C2903237|T046|AB|O03.38|ICD10CM|Urinary tract infection following incomplete spon abortion|Urinary tract infection following incomplete spon abortion +C2903237|T046|PT|O03.38|ICD10CM|Urinary tract infection following incomplete spontaneous abortion|Urinary tract infection following incomplete spontaneous abortion +C2903238|T046|AB|O03.39|ICD10CM|Incomplete spontaneous abortion with other complications|Incomplete spontaneous abortion with other complications +C2903238|T046|PT|O03.39|ICD10CM|Incomplete spontaneous abortion with other complications|Incomplete spontaneous abortion with other complications +C0729205|T046|AB|O03.4|ICD10CM|Incomplete spontaneous abortion without complication|Incomplete spontaneous abortion without complication +C0729205|T046|PT|O03.4|ICD10CM|Incomplete spontaneous abortion without complication|Incomplete spontaneous abortion without complication +C0729205|T046|PT|O03.4|ICD10|Spontaneous abortion, incomplete, without complication|Spontaneous abortion, incomplete, without complication +C2903239|T046|ET|O03.5|ICD10CM|Endometritis following complete or unspecified spontaneous abortion|Endometritis following complete or unspecified spontaneous abortion +C2903245|T046|PT|O03.5|ICD10CM|Genital tract and pelvic infection following complete or unspecified spontaneous abortion|Genital tract and pelvic infection following complete or unspecified spontaneous abortion +C2903245|T046|AB|O03.5|ICD10CM|Genitl trct and pelvic infct fol complete or unsp spon abort|Genitl trct and pelvic infct fol complete or unsp spon abort +C2903240|T046|ET|O03.5|ICD10CM|Oophoritis following complete or unspecified spontaneous abortion|Oophoritis following complete or unspecified spontaneous abortion +C2903241|T046|ET|O03.5|ICD10CM|Parametritis following complete or unspecified spontaneous abortion|Parametritis following complete or unspecified spontaneous abortion +C2903242|T046|ET|O03.5|ICD10CM|Pelvic peritonitis following complete or unspecified spontaneous abortion|Pelvic peritonitis following complete or unspecified spontaneous abortion +C2903243|T046|ET|O03.5|ICD10CM|Salpingitis following complete or unspecified spontaneous abortion|Salpingitis following complete or unspecified spontaneous abortion +C2903244|T046|ET|O03.5|ICD10CM|Salpingo-oophoritis following complete or unspecified spontaneous abortion|Salpingo-oophoritis following complete or unspecified spontaneous abortion +C0495130|T046|PT|O03.5|ICD10|Spontaneous abortion, complete or unspecified, complicated by genital tract and pelvic infection|Spontaneous abortion, complete or unspecified, complicated by genital tract and pelvic infection +C2903246|T047|ET|O03.6|ICD10CM|Afibrinogenemia following complete or unspecified spontaneous abortion|Afibrinogenemia following complete or unspecified spontaneous abortion +C2903247|T046|ET|O03.6|ICD10CM|Defibrination syndrome following complete or unspecified spontaneous abortion|Defibrination syndrome following complete or unspecified spontaneous abortion +C2903250|T046|AB|O03.6|ICD10CM|Delayed or excess hemor fol complete or unsp spon abortion|Delayed or excess hemor fol complete or unsp spon abortion +C2903250|T046|PT|O03.6|ICD10CM|Delayed or excessive hemorrhage following complete or unspecified spontaneous abortion|Delayed or excessive hemorrhage following complete or unspecified spontaneous abortion +C2903248|T046|ET|O03.6|ICD10CM|Hemolysis following complete or unspecified spontaneous abortion|Hemolysis following complete or unspecified spontaneous abortion +C2903249|T046|ET|O03.6|ICD10CM|Intravascular coagulation following complete or unspecified spontaneous abortion|Intravascular coagulation following complete or unspecified spontaneous abortion +C0495131|T046|PT|O03.6|ICD10|Spontaneous abortion, complete or unspecified, complicated by delayed or excessive haemorrhage|Spontaneous abortion, complete or unspecified, complicated by delayed or excessive haemorrhage +C0495131|T046|PT|O03.6|ICD10AE|Spontaneous abortion, complete or unspecified, complicated by delayed or excessive hemorrhage|Spontaneous abortion, complete or unspecified, complicated by delayed or excessive hemorrhage +C2903251|T046|ET|O03.7|ICD10CM|Air embolism following complete or unspecified spontaneous abortion|Air embolism following complete or unspecified spontaneous abortion +C2903252|T046|ET|O03.7|ICD10CM|Amniotic fluid embolism following complete or unspecified spontaneous abortion|Amniotic fluid embolism following complete or unspecified spontaneous abortion +C2903253|T046|ET|O03.7|ICD10CM|Blood-clot embolism following complete or unspecified spontaneous abortion|Blood-clot embolism following complete or unspecified spontaneous abortion +C2903260|T046|AB|O03.7|ICD10CM|Embolism following complete or unsp spontaneous abortion|Embolism following complete or unsp spontaneous abortion +C2903260|T046|PT|O03.7|ICD10CM|Embolism following complete or unspecified spontaneous abortion|Embolism following complete or unspecified spontaneous abortion +C2903254|T046|ET|O03.7|ICD10CM|Embolism NOS following complete or unspecified spontaneous abortion|Embolism NOS following complete or unspecified spontaneous abortion +C2903255|T046|ET|O03.7|ICD10CM|Fat embolism following complete or unspecified spontaneous abortion|Fat embolism following complete or unspecified spontaneous abortion +C2903256|T046|ET|O03.7|ICD10CM|Pulmonary embolism following complete or unspecified spontaneous abortion|Pulmonary embolism following complete or unspecified spontaneous abortion +C2903257|T046|ET|O03.7|ICD10CM|Pyemic embolism following complete or unspecified spontaneous abortion|Pyemic embolism following complete or unspecified spontaneous abortion +C2903258|T046|ET|O03.7|ICD10CM|Septic or septicopyemic embolism following complete or unspecified spontaneous abortion|Septic or septicopyemic embolism following complete or unspecified spontaneous abortion +C2903259|T046|ET|O03.7|ICD10CM|Soap embolism following complete or unspecified spontaneous abortion|Soap embolism following complete or unspecified spontaneous abortion +C0495132|T046|PT|O03.7|ICD10|Spontaneous abortion, complete or unspecified, complicated by embolism|Spontaneous abortion, complete or unspecified, complicated by embolism +C2903261|T046|AB|O03.8|ICD10CM|Oth and unsp comp following complete or unsp spon abortion|Oth and unsp comp following complete or unsp spon abortion +C2903261|T046|HT|O03.8|ICD10CM|Other and unspecified complications following complete or unspecified spontaneous abortion|Other and unspecified complications following complete or unspecified spontaneous abortion +C0495133|T046|PT|O03.8|ICD10|Spontaneous abortion, complete or unspecified, with other and unspecified complications|Spontaneous abortion, complete or unspecified, with other and unspecified complications +C2903262|T046|AB|O03.80|ICD10CM|Unsp comp following complete or unsp spontaneous abortion|Unsp comp following complete or unsp spontaneous abortion +C2903262|T046|PT|O03.80|ICD10CM|Unspecified complication following complete or unspecified spontaneous abortion|Unspecified complication following complete or unspecified spontaneous abortion +C2903263|T046|ET|O03.81|ICD10CM|Circulatory collapse following complete or unspecified spontaneous abortion|Circulatory collapse following complete or unspecified spontaneous abortion +C2903264|T046|ET|O03.81|ICD10CM|Shock (postprocedural) following complete or unspecified spontaneous abortion|Shock (postprocedural) following complete or unspecified spontaneous abortion +C2903265|T046|AB|O03.81|ICD10CM|Shock following complete or unspecified spontaneous abortion|Shock following complete or unspecified spontaneous abortion +C2903265|T046|PT|O03.81|ICD10CM|Shock following complete or unspecified spontaneous abortion|Shock following complete or unspecified spontaneous abortion +C2903266|T046|ET|O03.82|ICD10CM|Kidney failure (acute) following complete or unspecified spontaneous abortion|Kidney failure (acute) following complete or unspecified spontaneous abortion +C2903267|T046|ET|O03.82|ICD10CM|Oliguria following complete or unspecified spontaneous abortion|Oliguria following complete or unspecified spontaneous abortion +C2903271|T046|AB|O03.82|ICD10CM|Renal failure following complete or unsp spon abortion|Renal failure following complete or unsp spon abortion +C2903271|T046|PT|O03.82|ICD10CM|Renal failure following complete or unspecified spontaneous abortion|Renal failure following complete or unspecified spontaneous abortion +C2903268|T046|ET|O03.82|ICD10CM|Renal shutdown following complete or unspecified spontaneous abortion|Renal shutdown following complete or unspecified spontaneous abortion +C2903269|T046|ET|O03.82|ICD10CM|Renal tubular necrosis following complete or unspecified spontaneous abortion|Renal tubular necrosis following complete or unspecified spontaneous abortion +C2903270|T046|ET|O03.82|ICD10CM|Uremia following complete or unspecified spontaneous abortion|Uremia following complete or unspecified spontaneous abortion +C2903272|T046|AB|O03.83|ICD10CM|Metabolic disorder following complete or unsp spon abortion|Metabolic disorder following complete or unsp spon abortion +C2903272|T046|PT|O03.83|ICD10CM|Metabolic disorder following complete or unspecified spontaneous abortion|Metabolic disorder following complete or unspecified spontaneous abortion +C2903280|T046|AB|O03.84|ICD10CM|Damage to pelvic organs fol complete or unsp spon abortion|Damage to pelvic organs fol complete or unsp spon abortion +C2903280|T046|PT|O03.84|ICD10CM|Damage to pelvic organs following complete or unspecified spontaneous abortion|Damage to pelvic organs following complete or unspecified spontaneous abortion +C2903281|T046|AB|O03.85|ICD10CM|Oth venous comp following complete or unsp spon abortion|Oth venous comp following complete or unsp spon abortion +C2903281|T046|PT|O03.85|ICD10CM|Other venous complications following complete or unspecified spontaneous abortion|Other venous complications following complete or unspecified spontaneous abortion +C2903282|T046|AB|O03.86|ICD10CM|Cardiac arrest following complete or unsp spon abortion|Cardiac arrest following complete or unsp spon abortion +C2903282|T046|PT|O03.86|ICD10CM|Cardiac arrest following complete or unspecified spontaneous abortion|Cardiac arrest following complete or unspecified spontaneous abortion +C2903283|T046|AB|O03.87|ICD10CM|Sepsis following complete or unsp spontaneous abortion|Sepsis following complete or unsp spontaneous abortion +C2903283|T046|PT|O03.87|ICD10CM|Sepsis following complete or unspecified spontaneous abortion|Sepsis following complete or unspecified spontaneous abortion +C2903284|T046|ET|O03.88|ICD10CM|Cystitis following complete or unspecified spontaneous abortion|Cystitis following complete or unspecified spontaneous abortion +C2903285|T046|AB|O03.88|ICD10CM|Urinary tract infection fol complete or unsp spon abortion|Urinary tract infection fol complete or unsp spon abortion +C2903285|T046|PT|O03.88|ICD10CM|Urinary tract infection following complete or unspecified spontaneous abortion|Urinary tract infection following complete or unspecified spontaneous abortion +C2903286|T046|AB|O03.89|ICD10CM|Complete or unsp spontaneous abortion with oth complications|Complete or unsp spontaneous abortion with oth complications +C2903286|T046|PT|O03.89|ICD10CM|Complete or unspecified spontaneous abortion with other complications|Complete or unspecified spontaneous abortion with other complications +C0495134|T046|AB|O03.9|ICD10CM|Complete or unsp spontaneous abortion without complication|Complete or unsp spontaneous abortion without complication +C0495134|T046|PT|O03.9|ICD10CM|Complete or unspecified spontaneous abortion without complication|Complete or unspecified spontaneous abortion without complication +C0000786|T046|ET|O03.9|ICD10CM|Miscarriage NOS|Miscarriage NOS +C0000786|T046|ET|O03.9|ICD10CM|Spontaneous abortion NOS|Spontaneous abortion NOS +C0495134|T046|PT|O03.9|ICD10|Spontaneous abortion, complete or unspecified, without complication|Spontaneous abortion, complete or unspecified, without complication +C2903287|T046|AB|O04|ICD10CM|Complications following (induced) termination of pregnancy|Complications following (induced) termination of pregnancy +C2903287|T046|HT|O04|ICD10CM|Complications following (induced) termination of pregnancy|Complications following (induced) termination of pregnancy +C2903287|T046|ET|O04|ICD10CM|complications following (induced) termination of pregnancy|complications following (induced) termination of pregnancy +C3146283|T033|HT|O04|ICD10|Medical abortion|Medical abortion +C0495135|T046|PT|O04.0|ICD10|Medical abortion, incomplete, complicated by genital tract and pelvic infection|Medical abortion, incomplete, complicated by genital tract and pelvic infection +C0495136|T046|PT|O04.1|ICD10|Medical abortion, incomplete, complicated by delayed or excessive haemorrhage|Medical abortion, incomplete, complicated by delayed or excessive haemorrhage +C0495136|T046|PT|O04.1|ICD10AE|Medical abortion, incomplete, complicated by delayed or excessive hemorrhage|Medical abortion, incomplete, complicated by delayed or excessive hemorrhage +C0495137|T046|PT|O04.2|ICD10|Medical abortion, incomplete, complicated by embolism|Medical abortion, incomplete, complicated by embolism +C0495138|T046|PT|O04.3|ICD10|Medical abortion, incomplete, with other and unspecified complications|Medical abortion, incomplete, with other and unspecified complications +C0495139|T046|PT|O04.4|ICD10|Medical abortion, incomplete, without complication|Medical abortion, incomplete, without complication +C2903288|T046|ET|O04.5|ICD10CM|Endometritis following (induced) termination of pregnancy|Endometritis following (induced) termination of pregnancy +C2903294|T046|PT|O04.5|ICD10CM|Genital tract and pelvic infection following (induced) termination of pregnancy|Genital tract and pelvic infection following (induced) termination of pregnancy +C2903294|T046|AB|O04.5|ICD10CM|Genitl trct and pelvic infct fol (induced) term of pregnancy|Genitl trct and pelvic infct fol (induced) term of pregnancy +C0495140|T046|PT|O04.5|ICD10|Medical abortion, complete or unspecified, complicated by genital tract and pelvic infection|Medical abortion, complete or unspecified, complicated by genital tract and pelvic infection +C2903289|T046|ET|O04.5|ICD10CM|Oophoritis following (induced) termination of pregnancy|Oophoritis following (induced) termination of pregnancy +C2903290|T046|ET|O04.5|ICD10CM|Parametritis following (induced) termination of pregnancy|Parametritis following (induced) termination of pregnancy +C2903291|T046|ET|O04.5|ICD10CM|Pelvic peritonitis following (induced) termination of pregnancy|Pelvic peritonitis following (induced) termination of pregnancy +C2903292|T046|ET|O04.5|ICD10CM|Salpingitis following (induced) termination of pregnancy|Salpingitis following (induced) termination of pregnancy +C2903293|T046|ET|O04.5|ICD10CM|Salpingo-oophoritis following (induced) termination of pregnancy|Salpingo-oophoritis following (induced) termination of pregnancy +C2903295|T047|ET|O04.6|ICD10CM|Afibrinogenemia following (induced) termination of pregnancy|Afibrinogenemia following (induced) termination of pregnancy +C2903296|T046|ET|O04.6|ICD10CM|Defibrination syndrome following (induced) termination of pregnancy|Defibrination syndrome following (induced) termination of pregnancy +C2903299|T046|AB|O04.6|ICD10CM|Delayed or excess hemor fol (induced) term of pregnancy|Delayed or excess hemor fol (induced) term of pregnancy +C2903299|T046|PT|O04.6|ICD10CM|Delayed or excessive hemorrhage following (induced) termination of pregnancy|Delayed or excessive hemorrhage following (induced) termination of pregnancy +C2903297|T046|ET|O04.6|ICD10CM|Hemolysis following (induced) termination of pregnancy|Hemolysis following (induced) termination of pregnancy +C2903298|T046|ET|O04.6|ICD10CM|Intravascular coagulation following (induced) termination of pregnancy|Intravascular coagulation following (induced) termination of pregnancy +C0495141|T046|PT|O04.6|ICD10|Medical abortion, complete or unspecified, complicated by delayed or excessive haemorrhage|Medical abortion, complete or unspecified, complicated by delayed or excessive haemorrhage +C0495141|T046|PT|O04.6|ICD10AE|Medical abortion, complete or unspecified, complicated by delayed or excessive hemorrhage|Medical abortion, complete or unspecified, complicated by delayed or excessive hemorrhage +C2903300|T046|ET|O04.7|ICD10CM|Air embolism following (induced) termination of pregnancy|Air embolism following (induced) termination of pregnancy +C2903301|T046|ET|O04.7|ICD10CM|Amniotic fluid embolism following (induced) termination of pregnancy|Amniotic fluid embolism following (induced) termination of pregnancy +C2903302|T046|ET|O04.7|ICD10CM|Blood-clot embolism following (induced) termination of pregnancy|Blood-clot embolism following (induced) termination of pregnancy +C2903309|T046|AB|O04.7|ICD10CM|Embolism following (induced) termination of pregnancy|Embolism following (induced) termination of pregnancy +C2903309|T046|PT|O04.7|ICD10CM|Embolism following (induced) termination of pregnancy|Embolism following (induced) termination of pregnancy +C2903309|T046|ET|O04.7|ICD10CM|Embolism NOS following (induced) termination of pregnancy|Embolism NOS following (induced) termination of pregnancy +C2903304|T046|ET|O04.7|ICD10CM|Fat embolism following (induced) termination of pregnancy|Fat embolism following (induced) termination of pregnancy +C0495142|T046|PT|O04.7|ICD10|Medical abortion, complete or unspecified, complicated by embolism|Medical abortion, complete or unspecified, complicated by embolism +C2903305|T046|ET|O04.7|ICD10CM|Pulmonary embolism following (induced) termination of pregnancy|Pulmonary embolism following (induced) termination of pregnancy +C2903306|T046|ET|O04.7|ICD10CM|Pyemic embolism following (induced) termination of pregnancy|Pyemic embolism following (induced) termination of pregnancy +C2903307|T046|ET|O04.7|ICD10CM|Septic or septicopyemic embolism following (induced) termination of pregnancy|Septic or septicopyemic embolism following (induced) termination of pregnancy +C2903308|T046|ET|O04.7|ICD10CM|Soap embolism following (induced) termination of pregnancy|Soap embolism following (induced) termination of pregnancy +C2903310|T046|AB|O04.8|ICD10CM|(Induced) termination of pregnancy w oth and unsp comp|(Induced) termination of pregnancy w oth and unsp comp +C2903310|T046|HT|O04.8|ICD10CM|(Induced) termination of pregnancy with other and unspecified complications|(Induced) termination of pregnancy with other and unspecified complications +C0495143|T046|PT|O04.8|ICD10|Medical abortion, complete or unspecified, with other and unspecified complications|Medical abortion, complete or unspecified, with other and unspecified complications +C2903311|T046|AB|O04.80|ICD10CM|(Induced) termination of pregnancy with unsp complications|(Induced) termination of pregnancy with unsp complications +C2903311|T046|PT|O04.80|ICD10CM|(Induced) termination of pregnancy with unspecified complications|(Induced) termination of pregnancy with unspecified complications +C2903312|T046|ET|O04.81|ICD10CM|Circulatory collapse following (induced) termination of pregnancy|Circulatory collapse following (induced) termination of pregnancy +C2903313|T046|ET|O04.81|ICD10CM|Shock (postprocedural) following (induced) termination of pregnancy|Shock (postprocedural) following (induced) termination of pregnancy +C2903314|T046|AB|O04.81|ICD10CM|Shock following (induced) termination of pregnancy|Shock following (induced) termination of pregnancy +C2903314|T046|PT|O04.81|ICD10CM|Shock following (induced) termination of pregnancy|Shock following (induced) termination of pregnancy +C2903315|T046|ET|O04.82|ICD10CM|Kidney failure (acute) following (induced) termination of pregnancy|Kidney failure (acute) following (induced) termination of pregnancy +C2903316|T046|ET|O04.82|ICD10CM|Oliguria following (induced) termination of pregnancy|Oliguria following (induced) termination of pregnancy +C2903320|T046|AB|O04.82|ICD10CM|Renal failure following (induced) termination of pregnancy|Renal failure following (induced) termination of pregnancy +C2903320|T046|PT|O04.82|ICD10CM|Renal failure following (induced) termination of pregnancy|Renal failure following (induced) termination of pregnancy +C2903317|T046|ET|O04.82|ICD10CM|Renal shutdown following (induced) termination of pregnancy|Renal shutdown following (induced) termination of pregnancy +C2903318|T046|ET|O04.82|ICD10CM|Renal tubular necrosis following (induced) termination of pregnancy|Renal tubular necrosis following (induced) termination of pregnancy +C2903319|T046|ET|O04.82|ICD10CM|Uremia following (induced) termination of pregnancy|Uremia following (induced) termination of pregnancy +C2903321|T046|AB|O04.83|ICD10CM|Metabolic disorder following (induced) term of pregnancy|Metabolic disorder following (induced) term of pregnancy +C2903321|T046|PT|O04.83|ICD10CM|Metabolic disorder following (induced) termination of pregnancy|Metabolic disorder following (induced) termination of pregnancy +C2903329|T046|AB|O04.84|ICD10CM|Damage to pelvic organs fol (induced) term of pregnancy|Damage to pelvic organs fol (induced) term of pregnancy +C2903329|T046|PT|O04.84|ICD10CM|Damage to pelvic organs following (induced) termination of pregnancy|Damage to pelvic organs following (induced) termination of pregnancy +C2903330|T046|AB|O04.85|ICD10CM|Oth venous comp following (induced) termination of pregnancy|Oth venous comp following (induced) termination of pregnancy +C2903330|T046|PT|O04.85|ICD10CM|Other venous complications following (induced) termination of pregnancy|Other venous complications following (induced) termination of pregnancy +C2903331|T046|AB|O04.86|ICD10CM|Cardiac arrest following (induced) termination of pregnancy|Cardiac arrest following (induced) termination of pregnancy +C2903331|T046|PT|O04.86|ICD10CM|Cardiac arrest following (induced) termination of pregnancy|Cardiac arrest following (induced) termination of pregnancy +C2903332|T046|AB|O04.87|ICD10CM|Sepsis following (induced) termination of pregnancy|Sepsis following (induced) termination of pregnancy +C2903332|T046|PT|O04.87|ICD10CM|Sepsis following (induced) termination of pregnancy|Sepsis following (induced) termination of pregnancy +C2903333|T046|ET|O04.88|ICD10CM|Cystitis following (induced) termination of pregnancy|Cystitis following (induced) termination of pregnancy +C2903334|T046|AB|O04.88|ICD10CM|Urinary tract infection fol (induced) term of pregnancy|Urinary tract infection fol (induced) term of pregnancy +C2903334|T046|PT|O04.88|ICD10CM|Urinary tract infection following (induced) termination of pregnancy|Urinary tract infection following (induced) termination of pregnancy +C2903335|T046|AB|O04.89|ICD10CM|(Induced) termination of pregnancy with other complications|(Induced) termination of pregnancy with other complications +C2903335|T046|PT|O04.89|ICD10CM|(Induced) termination of pregnancy with other complications|(Induced) termination of pregnancy with other complications +C0495144|T046|PT|O04.9|ICD10|Medical abortion, complete or unspecified, without complication|Medical abortion, complete or unspecified, without complication +C0477801|T046|HT|O05|ICD10|Other abortion|Other abortion +C0495145|T046|PT|O05.0|ICD10|Other abortion, incomplete, complicated by genital tract and pelvic infection|Other abortion, incomplete, complicated by genital tract and pelvic infection +C0495146|T046|PT|O05.1|ICD10|Other abortion, incomplete, complicated by delayed or excessive haemorrhage|Other abortion, incomplete, complicated by delayed or excessive haemorrhage +C0495146|T046|PT|O05.1|ICD10AE|Other abortion, incomplete, complicated by delayed or excessive hemorrhage|Other abortion, incomplete, complicated by delayed or excessive hemorrhage +C0495147|T046|PT|O05.2|ICD10|Other abortion, incomplete, complicated by embolism|Other abortion, incomplete, complicated by embolism +C0495148|T046|PT|O05.3|ICD10|Other abortion, incomplete, with other and unspecified complications|Other abortion, incomplete, with other and unspecified complications +C0495149|T046|PT|O05.4|ICD10|Other abortion, incomplete, without complication|Other abortion, incomplete, without complication +C0495150|T046|PT|O05.5|ICD10|Other abortion, complete or unspecified, complicated by genital tract and pelvic infection|Other abortion, complete or unspecified, complicated by genital tract and pelvic infection +C0495151|T046|PT|O05.6|ICD10|Other abortion, complete or unspecified, complicated by delayed or excessive haemorrhage|Other abortion, complete or unspecified, complicated by delayed or excessive haemorrhage +C0495151|T046|PT|O05.6|ICD10AE|Other abortion, complete or unspecified, complicated by delayed or excessive hemorrhage|Other abortion, complete or unspecified, complicated by delayed or excessive hemorrhage +C0495152|T046|PT|O05.7|ICD10|Other abortion, complete or unspecified, complicated by embolism|Other abortion, complete or unspecified, complicated by embolism +C0495153|T046|PT|O05.8|ICD10|Other abortion, complete or unspecified, with other and unspecified complications|Other abortion, complete or unspecified, with other and unspecified complications +C0495154|T046|PT|O05.9|ICD10|Other abortion, complete or unspecified, without complication|Other abortion, complete or unspecified, without complication +C0156543|T033|HT|O06|ICD10|Unspecified abortion|Unspecified abortion +C0156546|T047|PT|O06.0|ICD10|Unspecified abortion, incomplete, complicated by genital tract and pelvic infection|Unspecified abortion, incomplete, complicated by genital tract and pelvic infection +C0156550|T046|PT|O06.1|ICD10|Unspecified abortion, incomplete, complicated by delayed or excessive haemorrhage|Unspecified abortion, incomplete, complicated by delayed or excessive haemorrhage +C0156550|T046|PT|O06.1|ICD10AE|Unspecified abortion, incomplete, complicated by delayed or excessive hemorrhage|Unspecified abortion, incomplete, complicated by delayed or excessive hemorrhage +C0156570|T047|PT|O06.2|ICD10|Unspecified abortion, incomplete, complicated by embolism|Unspecified abortion, incomplete, complicated by embolism +C0495155|T046|PT|O06.3|ICD10|Unspecified abortion, incomplete, with other and unspecified complications|Unspecified abortion, incomplete, with other and unspecified complications +C0495156|T046|PT|O06.4|ICD10|Unspecified abortion, incomplete, without complication|Unspecified abortion, incomplete, without complication +C0495157|T046|PT|O06.5|ICD10|Unspecified abortion, complete or unspecified, complicated by genital tract and pelvic infection|Unspecified abortion, complete or unspecified, complicated by genital tract and pelvic infection +C0495158|T046|PT|O06.6|ICD10|Unspecified abortion, complete or unspecified, complicated by delayed or excessive haemorrhage|Unspecified abortion, complete or unspecified, complicated by delayed or excessive haemorrhage +C0495158|T046|PT|O06.6|ICD10AE|Unspecified abortion, complete or unspecified, complicated by delayed or excessive hemorrhage|Unspecified abortion, complete or unspecified, complicated by delayed or excessive hemorrhage +C0495159|T046|PT|O06.7|ICD10|Unspecified abortion, complete or unspecified, complicated by embolism|Unspecified abortion, complete or unspecified, complicated by embolism +C0495160|T046|PT|O06.8|ICD10|Unspecified abortion, complete or unspecified, with other and unspecified complications|Unspecified abortion, complete or unspecified, with other and unspecified complications +C0495161|T046|PT|O06.9|ICD10|Unspecified abortion, complete or unspecified, without complication|Unspecified abortion, complete or unspecified, without complication +C0392536|T046|HT|O07|ICD10|Failed attempted abortion|Failed attempted abortion +C0392536|T046|HT|O07|ICD10CM|Failed attempted termination of pregnancy|Failed attempted termination of pregnancy +C0392536|T046|AB|O07|ICD10CM|Failed attempted termination of pregnancy|Failed attempted termination of pregnancy +C0392536|T046|ET|O07|ICD10CM|failure of attempted induction of termination of pregnancy|failure of attempted induction of termination of pregnancy +C2048762|T046|ET|O07|ICD10CM|incomplete elective abortion|incomplete elective abortion +C2903337|T033|ET|O07.0|ICD10CM|Endometritis following failed attempted termination of pregnancy|Endometritis following failed attempted termination of pregnancy +C0556000|T046|PT|O07.0|ICD10|Failed medical abortion, complicated by genital tract and pelvic infection|Failed medical abortion, complicated by genital tract and pelvic infection +C2903343|T046|PT|O07.0|ICD10CM|Genital tract and pelvic infection following failed attempted termination of pregnancy|Genital tract and pelvic infection following failed attempted termination of pregnancy +C2903343|T046|AB|O07.0|ICD10CM|Genitl trct and pelvic infct fol failed attempt term of preg|Genitl trct and pelvic infct fol failed attempt term of preg +C2903338|T046|ET|O07.0|ICD10CM|Oophoritis following failed attempted termination of pregnancy|Oophoritis following failed attempted termination of pregnancy +C2903339|T046|ET|O07.0|ICD10CM|Parametritis following failed attempted termination of pregnancy|Parametritis following failed attempted termination of pregnancy +C2903340|T046|ET|O07.0|ICD10CM|Pelvic peritonitis following failed attempted termination of pregnancy|Pelvic peritonitis following failed attempted termination of pregnancy +C2903341|T046|ET|O07.0|ICD10CM|Salpingitis following failed attempted termination of pregnancy|Salpingitis following failed attempted termination of pregnancy +C2903342|T046|ET|O07.0|ICD10CM|Salpingo-oophoritis following failed attempted termination of pregnancy|Salpingo-oophoritis following failed attempted termination of pregnancy +C2903344|T047|ET|O07.1|ICD10CM|Afibrinogenemia following failed attempted termination of pregnancy|Afibrinogenemia following failed attempted termination of pregnancy +C2903345|T046|ET|O07.1|ICD10CM|Defibrination syndrome following failed attempted termination of pregnancy|Defibrination syndrome following failed attempted termination of pregnancy +C2903348|T046|AB|O07.1|ICD10CM|Delayed or excess hemor fol failed attempt term of pregnancy|Delayed or excess hemor fol failed attempt term of pregnancy +C2903348|T046|PT|O07.1|ICD10CM|Delayed or excessive hemorrhage following failed attempted termination of pregnancy|Delayed or excessive hemorrhage following failed attempted termination of pregnancy +C0556001|T046|PT|O07.1|ICD10|Failed medical abortion, complicated by delayed or excessive haemorrhage|Failed medical abortion, complicated by delayed or excessive haemorrhage +C0556001|T046|PT|O07.1|ICD10AE|Failed medical abortion, complicated by delayed or excessive hemorrhage|Failed medical abortion, complicated by delayed or excessive hemorrhage +C2903346|T046|ET|O07.1|ICD10CM|Hemolysis following failed attempted termination of pregnancy|Hemolysis following failed attempted termination of pregnancy +C2903347|T046|ET|O07.1|ICD10CM|Intravascular coagulation following failed attempted termination of pregnancy|Intravascular coagulation following failed attempted termination of pregnancy +C2903349|T046|ET|O07.2|ICD10CM|Air embolism following failed attempted termination of pregnancy|Air embolism following failed attempted termination of pregnancy +C2903350|T046|ET|O07.2|ICD10CM|Amniotic fluid embolism following failed attempted termination of pregnancy|Amniotic fluid embolism following failed attempted termination of pregnancy +C2903351|T046|ET|O07.2|ICD10CM|Blood-clot embolism following failed attempted termination of pregnancy|Blood-clot embolism following failed attempted termination of pregnancy +C2903358|T046|AB|O07.2|ICD10CM|Embolism following failed attempted termination of pregnancy|Embolism following failed attempted termination of pregnancy +C2903358|T046|PT|O07.2|ICD10CM|Embolism following failed attempted termination of pregnancy|Embolism following failed attempted termination of pregnancy +C2903352|T046|ET|O07.2|ICD10CM|Embolism NOS following failed attempted termination of pregnancy|Embolism NOS following failed attempted termination of pregnancy +C0555999|T047|PT|O07.2|ICD10|Failed medical abortion, complicated by embolism|Failed medical abortion, complicated by embolism +C2903353|T046|ET|O07.2|ICD10CM|Fat embolism following failed attempted termination of pregnancy|Fat embolism following failed attempted termination of pregnancy +C2903354|T046|ET|O07.2|ICD10CM|Pulmonary embolism following failed attempted termination of pregnancy|Pulmonary embolism following failed attempted termination of pregnancy +C2903355|T046|ET|O07.2|ICD10CM|Pyemic embolism following failed attempted termination of pregnancy|Pyemic embolism following failed attempted termination of pregnancy +C2903356|T046|ET|O07.2|ICD10CM|Septic or septicopyemic embolism following failed attempted termination of pregnancy|Septic or septicopyemic embolism following failed attempted termination of pregnancy +C2903357|T046|ET|O07.2|ICD10CM|Soap embolism following failed attempted termination of pregnancy|Soap embolism following failed attempted termination of pregnancy +C2903359|T046|AB|O07.3|ICD10CM|Failed attempted term of pregnancy w oth and unsp comp|Failed attempted term of pregnancy w oth and unsp comp +C2903359|T046|HT|O07.3|ICD10CM|Failed attempted termination of pregnancy with other and unspecified complications|Failed attempted termination of pregnancy with other and unspecified complications +C0477802|T047|PT|O07.3|ICD10|Failed medical abortion, with other and unspecified complications|Failed medical abortion, with other and unspecified complications +C2903360|T046|AB|O07.30|ICD10CM|Failed attempted termination of pregnancy w unsp comp|Failed attempted termination of pregnancy w unsp comp +C2903360|T046|PT|O07.30|ICD10CM|Failed attempted termination of pregnancy with unspecified complications|Failed attempted termination of pregnancy with unspecified complications +C2903361|T046|ET|O07.31|ICD10CM|Circulatory collapse following failed attempted termination of pregnancy|Circulatory collapse following failed attempted termination of pregnancy +C2903362|T046|ET|O07.31|ICD10CM|Shock (postprocedural) following failed attempted termination of pregnancy|Shock (postprocedural) following failed attempted termination of pregnancy +C2903363|T046|AB|O07.31|ICD10CM|Shock following failed attempted termination of pregnancy|Shock following failed attempted termination of pregnancy +C2903363|T046|PT|O07.31|ICD10CM|Shock following failed attempted termination of pregnancy|Shock following failed attempted termination of pregnancy +C2903364|T046|ET|O07.32|ICD10CM|Kidney failure (acute) following failed attempted termination of pregnancy|Kidney failure (acute) following failed attempted termination of pregnancy +C2903365|T046|ET|O07.32|ICD10CM|Oliguria following failed attempted termination of pregnancy|Oliguria following failed attempted termination of pregnancy +C2903369|T046|AB|O07.32|ICD10CM|Renal failure following failed attempted term of pregnancy|Renal failure following failed attempted term of pregnancy +C2903369|T046|PT|O07.32|ICD10CM|Renal failure following failed attempted termination of pregnancy|Renal failure following failed attempted termination of pregnancy +C2903366|T046|ET|O07.32|ICD10CM|Renal shutdown following failed attempted termination of pregnancy|Renal shutdown following failed attempted termination of pregnancy +C2903367|T046|ET|O07.32|ICD10CM|Renal tubular necrosis following failed attempted termination of pregnancy|Renal tubular necrosis following failed attempted termination of pregnancy +C2903368|T046|ET|O07.32|ICD10CM|Uremia following failed attempted termination of pregnancy|Uremia following failed attempted termination of pregnancy +C2903370|T046|AB|O07.33|ICD10CM|Metabolic disorder fol failed attempt term of pregnancy|Metabolic disorder fol failed attempt term of pregnancy +C2903370|T046|PT|O07.33|ICD10CM|Metabolic disorder following failed attempted termination of pregnancy|Metabolic disorder following failed attempted termination of pregnancy +C2903378|T046|AB|O07.34|ICD10CM|Damage to pelvic organs fol failed attempt term of pregnancy|Damage to pelvic organs fol failed attempt term of pregnancy +C2903378|T046|PT|O07.34|ICD10CM|Damage to pelvic organs following failed attempted termination of pregnancy|Damage to pelvic organs following failed attempted termination of pregnancy +C2903379|T046|AB|O07.35|ICD10CM|Oth venous comp following failed attempted term of pregnancy|Oth venous comp following failed attempted term of pregnancy +C2903379|T046|PT|O07.35|ICD10CM|Other venous complications following failed attempted termination of pregnancy|Other venous complications following failed attempted termination of pregnancy +C2903380|T046|AB|O07.36|ICD10CM|Cardiac arrest following failed attempted term of pregnancy|Cardiac arrest following failed attempted term of pregnancy +C2903380|T046|PT|O07.36|ICD10CM|Cardiac arrest following failed attempted termination of pregnancy|Cardiac arrest following failed attempted termination of pregnancy +C2903381|T046|AB|O07.37|ICD10CM|Sepsis following failed attempted termination of pregnancy|Sepsis following failed attempted termination of pregnancy +C2903381|T046|PT|O07.37|ICD10CM|Sepsis following failed attempted termination of pregnancy|Sepsis following failed attempted termination of pregnancy +C2903382|T046|ET|O07.38|ICD10CM|Cystitis following failed attempted termination of pregnancy|Cystitis following failed attempted termination of pregnancy +C2903383|T046|AB|O07.38|ICD10CM|Urinary tract infection fol failed attempt term of pregnancy|Urinary tract infection fol failed attempt term of pregnancy +C2903383|T046|PT|O07.38|ICD10CM|Urinary tract infection following failed attempted termination of pregnancy|Urinary tract infection following failed attempted termination of pregnancy +C2903384|T046|AB|O07.39|ICD10CM|Failed attempted termination of pregnancy w oth comp|Failed attempted termination of pregnancy w oth comp +C2903384|T046|PT|O07.39|ICD10CM|Failed attempted termination of pregnancy with other complications|Failed attempted termination of pregnancy with other complications +C0269549|T046|AB|O07.4|ICD10CM|Failed attempted termination of pregnancy w/o complication|Failed attempted termination of pregnancy w/o complication +C0269549|T046|PT|O07.4|ICD10CM|Failed attempted termination of pregnancy without complication|Failed attempted termination of pregnancy without complication +C0451793|T046|PT|O07.4|ICD10|Failed medical abortion, without complication|Failed medical abortion, without complication +C0495162|T046|PT|O07.5|ICD10|Other and unspecified failed attempted abortion, complicated by genital tract and pelvic infection|Other and unspecified failed attempted abortion, complicated by genital tract and pelvic infection +C0495163|T046|PT|O07.6|ICD10|Other and unspecified failed attempted abortion, complicated by delayed or excessive haemorrhage|Other and unspecified failed attempted abortion, complicated by delayed or excessive haemorrhage +C0495163|T046|PT|O07.6|ICD10AE|Other and unspecified failed attempted abortion, complicated by delayed or excessive hemorrhage|Other and unspecified failed attempted abortion, complicated by delayed or excessive hemorrhage +C0495164|T046|PT|O07.7|ICD10|Other and unspecified failed attempted abortion, complicated by embolism|Other and unspecified failed attempted abortion, complicated by embolism +C0495165|T046|PT|O07.8|ICD10|Other and unspecified failed attempted abortion, with other and unspecified complications|Other and unspecified failed attempted abortion, with other and unspecified complications +C0495166|T046|PT|O07.9|ICD10|Other and unspecified failed attempted abortion, without complication|Other and unspecified failed attempted abortion, without complication +C0477810|T046|HT|O08|ICD10|Complications following abortion and ectopic and molar pregnancy|Complications following abortion and ectopic and molar pregnancy +C0269292|T046|AB|O08|ICD10CM|Complications following ectopic and molar pregnancy|Complications following ectopic and molar pregnancy +C0269292|T046|HT|O08|ICD10CM|Complications following ectopic and molar pregnancy|Complications following ectopic and molar pregnancy +C2903386|T046|ET|O08.0|ICD10CM|Endometritis following ectopic and molar pregnancy|Endometritis following ectopic and molar pregnancy +C0269294|T046|PT|O08.0|ICD10|Genital tract and pelvic infection following abortion and ectopic and molar pregnancy|Genital tract and pelvic infection following abortion and ectopic and molar pregnancy +C2903392|T046|PT|O08.0|ICD10CM|Genital tract and pelvic infection following ectopic and molar pregnancy|Genital tract and pelvic infection following ectopic and molar pregnancy +C2903392|T046|AB|O08.0|ICD10CM|Genitl trct and pelvic infct fol ectopic and molar pregnancy|Genitl trct and pelvic infct fol ectopic and molar pregnancy +C2903387|T046|ET|O08.0|ICD10CM|Oophoritis following ectopic and molar pregnancy|Oophoritis following ectopic and molar pregnancy +C2903388|T046|ET|O08.0|ICD10CM|Parametritis following ectopic and molar pregnancy|Parametritis following ectopic and molar pregnancy +C2903389|T046|ET|O08.0|ICD10CM|Pelvic peritonitis following ectopic and molar pregnancy|Pelvic peritonitis following ectopic and molar pregnancy +C2903390|T046|ET|O08.0|ICD10CM|Salpingitis following ectopic and molar pregnancy|Salpingitis following ectopic and molar pregnancy +C2903391|T046|ET|O08.0|ICD10CM|Salpingo-oophoritis following ectopic and molar pregnancy|Salpingo-oophoritis following ectopic and molar pregnancy +C2903393|T047|ET|O08.1|ICD10CM|Afibrinogenemia following ectopic and molar pregnancy|Afibrinogenemia following ectopic and molar pregnancy +C2903394|T046|ET|O08.1|ICD10CM|Defibrination syndrome following ectopic and molar pregnancy|Defibrination syndrome following ectopic and molar pregnancy +C0495168|T046|AB|O08.1|ICD10CM|Delayed or excess hemor fol ectopic and molar pregnancy|Delayed or excess hemor fol ectopic and molar pregnancy +C0495168|T046|PT|O08.1|ICD10|Delayed or excessive haemorrhage following abortion and ectopic and molar pregnancy|Delayed or excessive haemorrhage following abortion and ectopic and molar pregnancy +C0495168|T046|PT|O08.1|ICD10AE|Delayed or excessive hemorrhage following abortion and ectopic and molar pregnancy|Delayed or excessive hemorrhage following abortion and ectopic and molar pregnancy +C0495168|T046|PT|O08.1|ICD10CM|Delayed or excessive hemorrhage following ectopic and molar pregnancy|Delayed or excessive hemorrhage following ectopic and molar pregnancy +C2903395|T046|ET|O08.1|ICD10CM|Hemolysis following ectopic and molar pregnancy|Hemolysis following ectopic and molar pregnancy +C2903396|T046|ET|O08.1|ICD10CM|Intravascular coagulation following ectopic and molar pregnancy|Intravascular coagulation following ectopic and molar pregnancy +C2903398|T046|ET|O08.2|ICD10CM|Air embolism following ectopic and molar pregnancy|Air embolism following ectopic and molar pregnancy +C2903399|T046|ET|O08.2|ICD10CM|Amniotic fluid embolism following ectopic and molar pregnancy|Amniotic fluid embolism following ectopic and molar pregnancy +C2903400|T046|ET|O08.2|ICD10CM|Blood-clot embolism following ectopic and molar pregnancy|Blood-clot embolism following ectopic and molar pregnancy +C0495169|T046|PT|O08.2|ICD10|Embolism following abortion and ectopic and molar pregnancy|Embolism following abortion and ectopic and molar pregnancy +C0495169|T046|AB|O08.2|ICD10CM|Embolism following ectopic and molar pregnancy|Embolism following ectopic and molar pregnancy +C0495169|T046|PT|O08.2|ICD10CM|Embolism following ectopic and molar pregnancy|Embolism following ectopic and molar pregnancy +C2903401|T046|ET|O08.2|ICD10CM|Embolism NOS following ectopic and molar pregnancy|Embolism NOS following ectopic and molar pregnancy +C2903402|T046|ET|O08.2|ICD10CM|Fat embolism following ectopic and molar pregnancy|Fat embolism following ectopic and molar pregnancy +C2903403|T046|ET|O08.2|ICD10CM|Pulmonary embolism following ectopic and molar pregnancy|Pulmonary embolism following ectopic and molar pregnancy +C2903404|T046|ET|O08.2|ICD10CM|Pyemic embolism following ectopic and molar pregnancy|Pyemic embolism following ectopic and molar pregnancy +C2903405|T046|ET|O08.2|ICD10CM|Septic or septicopyemic embolism following ectopic and molar pregnancy|Septic or septicopyemic embolism following ectopic and molar pregnancy +C2903406|T046|ET|O08.2|ICD10CM|Soap embolism following ectopic and molar pregnancy|Soap embolism following ectopic and molar pregnancy +C2903408|T046|ET|O08.3|ICD10CM|Circulatory collapse following ectopic and molar pregnancy|Circulatory collapse following ectopic and molar pregnancy +C2903409|T046|ET|O08.3|ICD10CM|Shock (postprocedural) following ectopic and molar pregnancy|Shock (postprocedural) following ectopic and molar pregnancy +C0495170|T046|PT|O08.3|ICD10|Shock following abortion and ectopic and molar pregnancy|Shock following abortion and ectopic and molar pregnancy +C0495170|T046|AB|O08.3|ICD10CM|Shock following ectopic and molar pregnancy|Shock following ectopic and molar pregnancy +C0495170|T046|PT|O08.3|ICD10CM|Shock following ectopic and molar pregnancy|Shock following ectopic and molar pregnancy +C2903411|T046|ET|O08.4|ICD10CM|Kidney failure (acute) following ectopic and molar pregnancy|Kidney failure (acute) following ectopic and molar pregnancy +C2903412|T046|ET|O08.4|ICD10CM|Oliguria following ectopic and molar pregnancy|Oliguria following ectopic and molar pregnancy +C0495171|T047|PT|O08.4|ICD10|Renal failure following abortion and ectopic and molar pregnancy|Renal failure following abortion and ectopic and molar pregnancy +C2903416|T046|AB|O08.4|ICD10CM|Renal failure following ectopic and molar pregnancy|Renal failure following ectopic and molar pregnancy +C2903416|T046|PT|O08.4|ICD10CM|Renal failure following ectopic and molar pregnancy|Renal failure following ectopic and molar pregnancy +C2903413|T046|ET|O08.4|ICD10CM|Renal shutdown following ectopic and molar pregnancy|Renal shutdown following ectopic and molar pregnancy +C2903414|T046|ET|O08.4|ICD10CM|Renal tubular necrosis following ectopic and molar pregnancy|Renal tubular necrosis following ectopic and molar pregnancy +C2903415|T046|ET|O08.4|ICD10CM|Uremia following ectopic and molar pregnancy|Uremia following ectopic and molar pregnancy +C0495172|T046|PT|O08.5|ICD10|Metabolic disorders following abortion and ectopic and molar pregnancy|Metabolic disorders following abortion and ectopic and molar pregnancy +C0495172|T046|AB|O08.5|ICD10CM|Metabolic disorders following an ectopic and molar pregnancy|Metabolic disorders following an ectopic and molar pregnancy +C0495172|T046|PT|O08.5|ICD10CM|Metabolic disorders following an ectopic and molar pregnancy|Metabolic disorders following an ectopic and molar pregnancy +C0495173|T037|AB|O08.6|ICD10CM|Damage to pelvic organs and tiss fol an ect and molar preg|Damage to pelvic organs and tiss fol an ect and molar preg +C0495173|T037|PT|O08.6|ICD10|Damage to pelvic organs and tissues following abortion and ectopic and molar pregnancy|Damage to pelvic organs and tissues following abortion and ectopic and molar pregnancy +C0495173|T037|PT|O08.6|ICD10CM|Damage to pelvic organs and tissues following an ectopic and molar pregnancy|Damage to pelvic organs and tissues following an ectopic and molar pregnancy +C2903418|T037|ET|O08.6|ICD10CM|Laceration, perforation, tear or chemical damage of bladder following an ectopic and molar pregnancy|Laceration, perforation, tear or chemical damage of bladder following an ectopic and molar pregnancy +C2903419|T037|ET|O08.6|ICD10CM|Laceration, perforation, tear or chemical damage of bowel following an ectopic and molar pregnancy|Laceration, perforation, tear or chemical damage of bowel following an ectopic and molar pregnancy +C2903421|T037|ET|O08.6|ICD10CM|Laceration, perforation, tear or chemical damage of cervix following an ectopic and molar pregnancy|Laceration, perforation, tear or chemical damage of cervix following an ectopic and molar pregnancy +C2903423|T037|ET|O08.6|ICD10CM|Laceration, perforation, tear or chemical damage of uterus following an ectopic and molar pregnancy|Laceration, perforation, tear or chemical damage of uterus following an ectopic and molar pregnancy +C2903424|T037|ET|O08.6|ICD10CM|Laceration, perforation, tear or chemical damage of vagina following an ectopic and molar pregnancy|Laceration, perforation, tear or chemical damage of vagina following an ectopic and molar pregnancy +C2903426|T046|AB|O08.7|ICD10CM|Oth venous comp following an ectopic and molar pregnancy|Oth venous comp following an ectopic and molar pregnancy +C0477808|T046|PT|O08.7|ICD10|Other venous complications following abortion and ectopic and molar pregnancy|Other venous complications following abortion and ectopic and molar pregnancy +C2903426|T046|PT|O08.7|ICD10CM|Other venous complications following an ectopic and molar pregnancy|Other venous complications following an ectopic and molar pregnancy +C0477809|T046|PT|O08.8|ICD10|Other complications following abortion and ectopic and molar pregnancy|Other complications following abortion and ectopic and molar pregnancy +C2903427|T046|HT|O08.8|ICD10CM|Other complications following an ectopic and molar pregnancy|Other complications following an ectopic and molar pregnancy +C2903427|T046|AB|O08.8|ICD10CM|Other complications following an ectopic and molar pregnancy|Other complications following an ectopic and molar pregnancy +C2903428|T046|AB|O08.81|ICD10CM|Cardiac arrest following an ectopic and molar pregnancy|Cardiac arrest following an ectopic and molar pregnancy +C2903428|T046|PT|O08.81|ICD10CM|Cardiac arrest following an ectopic and molar pregnancy|Cardiac arrest following an ectopic and molar pregnancy +C2903429|T046|AB|O08.82|ICD10CM|Sepsis following ectopic and molar pregnancy|Sepsis following ectopic and molar pregnancy +C2903429|T046|PT|O08.82|ICD10CM|Sepsis following ectopic and molar pregnancy|Sepsis following ectopic and molar pregnancy +C2903430|T046|ET|O08.83|ICD10CM|Cystitis following an ectopic and molar pregnancy|Cystitis following an ectopic and molar pregnancy +C2903431|T046|AB|O08.83|ICD10CM|Urinary tract infection fol an ectopic and molar pregnancy|Urinary tract infection fol an ectopic and molar pregnancy +C2903431|T046|PT|O08.83|ICD10CM|Urinary tract infection following an ectopic and molar pregnancy|Urinary tract infection following an ectopic and molar pregnancy +C2903427|T046|AB|O08.89|ICD10CM|Other complications following an ectopic and molar pregnancy|Other complications following an ectopic and molar pregnancy +C2903427|T046|PT|O08.89|ICD10CM|Other complications following an ectopic and molar pregnancy|Other complications following an ectopic and molar pregnancy +C0477810|T046|PT|O08.9|ICD10|Complication following abortion and ectopic and molar pregnancy, unspecified|Complication following abortion and ectopic and molar pregnancy, unspecified +C2903432|T046|AB|O08.9|ICD10CM|Unsp complication following an ectopic and molar pregnancy|Unsp complication following an ectopic and molar pregnancy +C2903432|T046|PT|O08.9|ICD10CM|Unspecified complication following an ectopic and molar pregnancy|Unspecified complication following an ectopic and molar pregnancy +C2977268|T033|HT|O09-O09|ICD10CM|Supervision of high risk pregnancy (O09)|Supervision of high risk pregnancy (O09) +C2919002|T033|HT|O09.0|ICD10CM|Supervision of pregnancy with history of infertility|Supervision of pregnancy with history of infertility +C2919002|T033|AB|O09.0|ICD10CM|Supervision of pregnancy with history of infertility|Supervision of pregnancy with history of infertility +C2903433|T033|PT|O09.00|ICD10CM|Supervision of pregnancy with history of infertility, unspecified trimester|Supervision of pregnancy with history of infertility, unspecified trimester +C2903433|T033|AB|O09.00|ICD10CM|Suprvsn of preg w history of infertility, unsp trimester|Suprvsn of preg w history of infertility, unsp trimester +C2903434|T033|PT|O09.01|ICD10CM|Supervision of pregnancy with history of infertility, first trimester|Supervision of pregnancy with history of infertility, first trimester +C2903434|T033|AB|O09.01|ICD10CM|Suprvsn of preg w history of infertility, first trimester|Suprvsn of preg w history of infertility, first trimester +C2903435|T033|PT|O09.02|ICD10CM|Supervision of pregnancy with history of infertility, second trimester|Supervision of pregnancy with history of infertility, second trimester +C2903435|T033|AB|O09.02|ICD10CM|Suprvsn of preg w history of infertility, second trimester|Suprvsn of preg w history of infertility, second trimester +C2903436|T033|PT|O09.03|ICD10CM|Supervision of pregnancy with history of infertility, third trimester|Supervision of pregnancy with history of infertility, third trimester +C2903436|T033|AB|O09.03|ICD10CM|Suprvsn of preg w history of infertility, third trimester|Suprvsn of preg w history of infertility, third trimester +C2911693|T033|HT|O09.2|ICD10CM|Supervision of pregnancy with other poor reproductive or obstetric history|Supervision of pregnancy with other poor reproductive or obstetric history +C2911693|T033|AB|O09.2|ICD10CM|Suprvsn of pregnancy w poor reprodctv or obstetric history|Suprvsn of pregnancy w poor reprodctv or obstetric history +C2903442|T033|AB|O09.21|ICD10CM|Supervision of pregnancy with history of pre-term labor|Supervision of pregnancy with history of pre-term labor +C2903442|T033|HT|O09.21|ICD10CM|Supervision of pregnancy with history of pre-term labor|Supervision of pregnancy with history of pre-term labor +C2903443|T033|PT|O09.211|ICD10CM|Supervision of pregnancy with history of pre-term labor, first trimester|Supervision of pregnancy with history of pre-term labor, first trimester +C2903443|T033|AB|O09.211|ICD10CM|Suprvsn of preg w history of pre-term labor, first trimester|Suprvsn of preg w history of pre-term labor, first trimester +C2903444|T033|PT|O09.212|ICD10CM|Supervision of pregnancy with history of pre-term labor, second trimester|Supervision of pregnancy with history of pre-term labor, second trimester +C2903444|T033|AB|O09.212|ICD10CM|Suprvsn of preg w history of pre-term labor, second tri|Suprvsn of preg w history of pre-term labor, second tri +C2903445|T033|PT|O09.213|ICD10CM|Supervision of pregnancy with history of pre-term labor, third trimester|Supervision of pregnancy with history of pre-term labor, third trimester +C2903445|T033|AB|O09.213|ICD10CM|Suprvsn of preg w history of pre-term labor, third trimester|Suprvsn of preg w history of pre-term labor, third trimester +C2903446|T033|PT|O09.219|ICD10CM|Supervision of pregnancy with history of pre-term labor, unspecified trimester|Supervision of pregnancy with history of pre-term labor, unspecified trimester +C2903446|T033|AB|O09.219|ICD10CM|Suprvsn of preg w history of pre-term labor, unsp trimester|Suprvsn of preg w history of pre-term labor, unsp trimester +C2903447|T046|ET|O09.29|ICD10CM|Supervision of pregnancy with history of neonatal death|Supervision of pregnancy with history of neonatal death +C2903448|T046|ET|O09.29|ICD10CM|Supervision of pregnancy with history of stillbirth|Supervision of pregnancy with history of stillbirth +C2911693|T033|HT|O09.29|ICD10CM|Supervision of pregnancy with other poor reproductive or obstetric history|Supervision of pregnancy with other poor reproductive or obstetric history +C2911693|T033|AB|O09.29|ICD10CM|Suprvsn of pregnancy w poor reprodctv or obstetric history|Suprvsn of pregnancy w poor reprodctv or obstetric history +C2903449|T033|PT|O09.291|ICD10CM|Supervision of pregnancy with other poor reproductive or obstetric history, first trimester|Supervision of pregnancy with other poor reproductive or obstetric history, first trimester +C2903449|T033|AB|O09.291|ICD10CM|Suprvsn of preg w poor reprodctv or obstet hx, first tri|Suprvsn of preg w poor reprodctv or obstet hx, first tri +C2903450|T033|PT|O09.292|ICD10CM|Supervision of pregnancy with other poor reproductive or obstetric history, second trimester|Supervision of pregnancy with other poor reproductive or obstetric history, second trimester +C2903450|T033|AB|O09.292|ICD10CM|Suprvsn of preg w poor reprodctv or obstet hx, second tri|Suprvsn of preg w poor reprodctv or obstet hx, second tri +C2903451|T033|PT|O09.293|ICD10CM|Supervision of pregnancy with other poor reproductive or obstetric history, third trimester|Supervision of pregnancy with other poor reproductive or obstetric history, third trimester +C2903451|T033|AB|O09.293|ICD10CM|Suprvsn of preg w poor reprodctv or obstet hx, third tri|Suprvsn of preg w poor reprodctv or obstet hx, third tri +C2903452|T033|PT|O09.299|ICD10CM|Supervision of pregnancy with other poor reproductive or obstetric history, unspecified trimester|Supervision of pregnancy with other poor reproductive or obstetric history, unspecified trimester +C2903452|T033|AB|O09.299|ICD10CM|Suprvsn of preg w poor reprodctv or obstet history, unsp tri|Suprvsn of preg w poor reprodctv or obstet history, unsp tri +C2903453|T046|ET|O09.3|ICD10CM|Supervision of concealed pregnancy|Supervision of concealed pregnancy +C2903454|T046|ET|O09.3|ICD10CM|Supervision of hidden pregnancy|Supervision of hidden pregnancy +C2903455|T046|AB|O09.3|ICD10CM|Supervision of pregnancy with insufficient antenatal care|Supervision of pregnancy with insufficient antenatal care +C2903455|T046|HT|O09.3|ICD10CM|Supervision of pregnancy with insufficient antenatal care|Supervision of pregnancy with insufficient antenatal care +C2903456|T046|PT|O09.30|ICD10CM|Supervision of pregnancy with insufficient antenatal care, unspecified trimester|Supervision of pregnancy with insufficient antenatal care, unspecified trimester +C2903456|T046|AB|O09.30|ICD10CM|Suprvsn of preg w insufficient antenat care, unsp trimester|Suprvsn of preg w insufficient antenat care, unsp trimester +C2903457|T046|PT|O09.31|ICD10CM|Supervision of pregnancy with insufficient antenatal care, first trimester|Supervision of pregnancy with insufficient antenatal care, first trimester +C2903457|T046|AB|O09.31|ICD10CM|Suprvsn of preg w insufficient antenat care, first trimester|Suprvsn of preg w insufficient antenat care, first trimester +C2903458|T046|PT|O09.32|ICD10CM|Supervision of pregnancy with insufficient antenatal care, second trimester|Supervision of pregnancy with insufficient antenatal care, second trimester +C2903458|T046|AB|O09.32|ICD10CM|Suprvsn of preg w insufficient antenat care, second tri|Suprvsn of preg w insufficient antenat care, second tri +C2903459|T046|PT|O09.33|ICD10CM|Supervision of pregnancy with insufficient antenatal care, third trimester|Supervision of pregnancy with insufficient antenatal care, third trimester +C2903459|T046|AB|O09.33|ICD10CM|Suprvsn of preg w insufficient antenat care, third trimester|Suprvsn of preg w insufficient antenat care, third trimester +C2919003|T046|HT|O09.4|ICD10CM|Supervision of pregnancy with grand multiparity|Supervision of pregnancy with grand multiparity +C2919003|T046|AB|O09.4|ICD10CM|Supervision of pregnancy with grand multiparity|Supervision of pregnancy with grand multiparity +C2903460|T046|AB|O09.40|ICD10CM|Supervision of pregnancy w grand multiparity, unsp trimester|Supervision of pregnancy w grand multiparity, unsp trimester +C2903460|T046|PT|O09.40|ICD10CM|Supervision of pregnancy with grand multiparity, unspecified trimester|Supervision of pregnancy with grand multiparity, unspecified trimester +C2903461|T046|PT|O09.41|ICD10CM|Supervision of pregnancy with grand multiparity, first trimester|Supervision of pregnancy with grand multiparity, first trimester +C2903461|T046|AB|O09.41|ICD10CM|Suprvsn of pregnancy w grand multiparity, first trimester|Suprvsn of pregnancy w grand multiparity, first trimester +C2903462|T046|PT|O09.42|ICD10CM|Supervision of pregnancy with grand multiparity, second trimester|Supervision of pregnancy with grand multiparity, second trimester +C2903462|T046|AB|O09.42|ICD10CM|Suprvsn of pregnancy w grand multiparity, second trimester|Suprvsn of pregnancy w grand multiparity, second trimester +C2903463|T046|PT|O09.43|ICD10CM|Supervision of pregnancy with grand multiparity, third trimester|Supervision of pregnancy with grand multiparity, third trimester +C2903463|T046|AB|O09.43|ICD10CM|Suprvsn of pregnancy w grand multiparity, third trimester|Suprvsn of pregnancy w grand multiparity, third trimester +C2903464|T046|ET|O09.5|ICD10CM|Pregnancy for a female 35 years and older at expected date of delivery|Pregnancy for a female 35 years and older at expected date of delivery +C2903465|T046|AB|O09.5|ICD10CM|Supervision of elderly primigravida and multigravida|Supervision of elderly primigravida and multigravida +C2903465|T046|HT|O09.5|ICD10CM|Supervision of elderly primigravida and multigravida|Supervision of elderly primigravida and multigravida +C2911694|T046|HT|O09.51|ICD10CM|Supervision of elderly primigravida|Supervision of elderly primigravida +C2911694|T046|AB|O09.51|ICD10CM|Supervision of elderly primigravida|Supervision of elderly primigravida +C2903466|T046|AB|O09.511|ICD10CM|Supervision of elderly primigravida, first trimester|Supervision of elderly primigravida, first trimester +C2903466|T046|PT|O09.511|ICD10CM|Supervision of elderly primigravida, first trimester|Supervision of elderly primigravida, first trimester +C2903467|T046|AB|O09.512|ICD10CM|Supervision of elderly primigravida, second trimester|Supervision of elderly primigravida, second trimester +C2903467|T046|PT|O09.512|ICD10CM|Supervision of elderly primigravida, second trimester|Supervision of elderly primigravida, second trimester +C2903468|T046|AB|O09.513|ICD10CM|Supervision of elderly primigravida, third trimester|Supervision of elderly primigravida, third trimester +C2903468|T046|PT|O09.513|ICD10CM|Supervision of elderly primigravida, third trimester|Supervision of elderly primigravida, third trimester +C2903469|T046|AB|O09.519|ICD10CM|Supervision of elderly primigravida, unspecified trimester|Supervision of elderly primigravida, unspecified trimester +C2903469|T046|PT|O09.519|ICD10CM|Supervision of elderly primigravida, unspecified trimester|Supervision of elderly primigravida, unspecified trimester +C2903471|T046|AB|O09.521|ICD10CM|Supervision of elderly multigravida, first trimester|Supervision of elderly multigravida, first trimester +C2903471|T046|PT|O09.521|ICD10CM|Supervision of elderly multigravida, first trimester|Supervision of elderly multigravida, first trimester +C2903472|T046|AB|O09.522|ICD10CM|Supervision of elderly multigravida, second trimester|Supervision of elderly multigravida, second trimester +C2903472|T046|PT|O09.522|ICD10CM|Supervision of elderly multigravida, second trimester|Supervision of elderly multigravida, second trimester +C2903473|T046|AB|O09.523|ICD10CM|Supervision of elderly multigravida, third trimester|Supervision of elderly multigravida, third trimester +C2903473|T046|PT|O09.523|ICD10CM|Supervision of elderly multigravida, third trimester|Supervision of elderly multigravida, third trimester +C2903474|T046|AB|O09.529|ICD10CM|Supervision of elderly multigravida, unspecified trimester|Supervision of elderly multigravida, unspecified trimester +C2903474|T046|PT|O09.529|ICD10CM|Supervision of elderly multigravida, unspecified trimester|Supervision of elderly multigravida, unspecified trimester +C2903475|T047|ET|O09.6|ICD10CM|Supervision of pregnancy for a female less than 16 years old at expected date of delivery|Supervision of pregnancy for a female less than 16 years old at expected date of delivery +C2903476|T046|AB|O09.6|ICD10CM|Supervision of young primigravida and multigravida|Supervision of young primigravida and multigravida +C2903476|T046|HT|O09.6|ICD10CM|Supervision of young primigravida and multigravida|Supervision of young primigravida and multigravida +C2903477|T046|AB|O09.61|ICD10CM|Supervision of young primigravida|Supervision of young primigravida +C2903477|T046|HT|O09.61|ICD10CM|Supervision of young primigravida|Supervision of young primigravida +C2903478|T046|AB|O09.611|ICD10CM|Supervision of young primigravida, first trimester|Supervision of young primigravida, first trimester +C2903478|T046|PT|O09.611|ICD10CM|Supervision of young primigravida, first trimester|Supervision of young primigravida, first trimester +C2903479|T046|AB|O09.612|ICD10CM|Supervision of young primigravida, second trimester|Supervision of young primigravida, second trimester +C2903479|T046|PT|O09.612|ICD10CM|Supervision of young primigravida, second trimester|Supervision of young primigravida, second trimester +C2903480|T046|AB|O09.613|ICD10CM|Supervision of young primigravida, third trimester|Supervision of young primigravida, third trimester +C2903480|T046|PT|O09.613|ICD10CM|Supervision of young primigravida, third trimester|Supervision of young primigravida, third trimester +C2903481|T046|AB|O09.619|ICD10CM|Supervision of young primigravida, unspecified trimester|Supervision of young primigravida, unspecified trimester +C2903481|T046|PT|O09.619|ICD10CM|Supervision of young primigravida, unspecified trimester|Supervision of young primigravida, unspecified trimester +C2903482|T046|AB|O09.62|ICD10CM|Supervision of young multigravida|Supervision of young multigravida +C2903482|T046|HT|O09.62|ICD10CM|Supervision of young multigravida|Supervision of young multigravida +C2903483|T046|AB|O09.621|ICD10CM|Supervision of young multigravida, first trimester|Supervision of young multigravida, first trimester +C2903483|T046|PT|O09.621|ICD10CM|Supervision of young multigravida, first trimester|Supervision of young multigravida, first trimester +C2903484|T046|AB|O09.622|ICD10CM|Supervision of young multigravida, second trimester|Supervision of young multigravida, second trimester +C2903484|T046|PT|O09.622|ICD10CM|Supervision of young multigravida, second trimester|Supervision of young multigravida, second trimester +C2903485|T046|AB|O09.623|ICD10CM|Supervision of young multigravida, third trimester|Supervision of young multigravida, third trimester +C2903485|T046|PT|O09.623|ICD10CM|Supervision of young multigravida, third trimester|Supervision of young multigravida, third trimester +C2903486|T046|AB|O09.629|ICD10CM|Supervision of young multigravida, unspecified trimester|Supervision of young multigravida, unspecified trimester +C2903486|T046|PT|O09.629|ICD10CM|Supervision of young multigravida, unspecified trimester|Supervision of young multigravida, unspecified trimester +C2903487|T046|PT|O09.70|ICD10CM|Supervision of high risk pregnancy due to social problems, unspecified trimester|Supervision of high risk pregnancy due to social problems, unspecified trimester +C2903487|T046|AB|O09.70|ICD10CM|Suprvsn of high risk preg due to social problems, unsp tri|Suprvsn of high risk preg due to social problems, unsp tri +C2903488|T046|PT|O09.71|ICD10CM|Supervision of high risk pregnancy due to social problems, first trimester|Supervision of high risk pregnancy due to social problems, first trimester +C2903488|T046|AB|O09.71|ICD10CM|Suprvsn of high risk preg due to social problems, first tri|Suprvsn of high risk preg due to social problems, first tri +C2903489|T046|PT|O09.72|ICD10CM|Supervision of high risk pregnancy due to social problems, second trimester|Supervision of high risk pregnancy due to social problems, second trimester +C2903489|T046|AB|O09.72|ICD10CM|Suprvsn of high risk preg due to social problems, second tri|Suprvsn of high risk preg due to social problems, second tri +C2903490|T046|PT|O09.73|ICD10CM|Supervision of high risk pregnancy due to social problems, third trimester|Supervision of high risk pregnancy due to social problems, third trimester +C2903490|T046|AB|O09.73|ICD10CM|Suprvsn of high risk preg due to social problems, third tri|Suprvsn of high risk preg due to social problems, third tri +C2911667|T046|HT|O09.8|ICD10CM|Supervision of other high risk pregnancies|Supervision of other high risk pregnancies +C2911667|T046|AB|O09.8|ICD10CM|Supervision of other high risk pregnancies|Supervision of other high risk pregnancies +C2903491|T046|ET|O09.81|ICD10CM|Supervision of pregnancy resulting from in-vitro fertilization|Supervision of pregnancy resulting from in-vitro fertilization +C2903493|T046|PT|O09.811|ICD10CM|Supervision of pregnancy resulting from assisted reproductive technology, first trimester|Supervision of pregnancy resulting from assisted reproductive technology, first trimester +C2903493|T046|AB|O09.811|ICD10CM|Suprvsn of preg rslt from assisted reprodctv tech, first tri|Suprvsn of preg rslt from assisted reprodctv tech, first tri +C2903494|T046|PT|O09.812|ICD10CM|Supervision of pregnancy resulting from assisted reproductive technology, second trimester|Supervision of pregnancy resulting from assisted reproductive technology, second trimester +C2903494|T046|AB|O09.812|ICD10CM|Suprvsn of preg rslt from assist reprodctv tech, second tri|Suprvsn of preg rslt from assist reprodctv tech, second tri +C2903495|T046|PT|O09.813|ICD10CM|Supervision of pregnancy resulting from assisted reproductive technology, third trimester|Supervision of pregnancy resulting from assisted reproductive technology, third trimester +C2903495|T046|AB|O09.813|ICD10CM|Suprvsn of preg rslt from assisted reprodctv tech, third tri|Suprvsn of preg rslt from assisted reprodctv tech, third tri +C2903496|T046|PT|O09.819|ICD10CM|Supervision of pregnancy resulting from assisted reproductive technology, unspecified trimester|Supervision of pregnancy resulting from assisted reproductive technology, unspecified trimester +C2903496|T046|AB|O09.819|ICD10CM|Suprvsn of preg rslt from assisted reprodctv tech, unsp tri|Suprvsn of preg rslt from assisted reprodctv tech, unsp tri +C2903498|T033|AB|O09.821|ICD10CM|Suprvsn of preg w hx of in utero proc dur prev preg, 1st tri|Suprvsn of preg w hx of in utero proc dur prev preg, 1st tri +C2903499|T033|AB|O09.822|ICD10CM|Suprvsn of preg w hx of in utero proc dur prev preg, 2nd tri|Suprvsn of preg w hx of in utero proc dur prev preg, 2nd tri +C2903500|T033|AB|O09.823|ICD10CM|Suprvsn of preg w hx of in utero proc dur prev preg, 3rd tri|Suprvsn of preg w hx of in utero proc dur prev preg, 3rd tri +C2903501|T033|AB|O09.829|ICD10CM|Suprvsn of preg w hx of in utero proc dur prev preg,unsp tri|Suprvsn of preg w hx of in utero proc dur prev preg,unsp tri +C2911667|T046|AB|O09.89|ICD10CM|Supervision of other high risk pregnancies|Supervision of other high risk pregnancies +C2911667|T046|HT|O09.89|ICD10CM|Supervision of other high risk pregnancies|Supervision of other high risk pregnancies +C2903502|T046|AB|O09.891|ICD10CM|Supervision of other high risk pregnancies, first trimester|Supervision of other high risk pregnancies, first trimester +C2903502|T046|PT|O09.891|ICD10CM|Supervision of other high risk pregnancies, first trimester|Supervision of other high risk pregnancies, first trimester +C2903503|T046|AB|O09.892|ICD10CM|Supervision of other high risk pregnancies, second trimester|Supervision of other high risk pregnancies, second trimester +C2903503|T046|PT|O09.892|ICD10CM|Supervision of other high risk pregnancies, second trimester|Supervision of other high risk pregnancies, second trimester +C2903504|T046|AB|O09.893|ICD10CM|Supervision of other high risk pregnancies, third trimester|Supervision of other high risk pregnancies, third trimester +C2903504|T046|PT|O09.893|ICD10CM|Supervision of other high risk pregnancies, third trimester|Supervision of other high risk pregnancies, third trimester +C2903505|T046|AB|O09.899|ICD10CM|Supervision of other high risk pregnancies, unsp trimester|Supervision of other high risk pregnancies, unsp trimester +C2903505|T046|PT|O09.899|ICD10CM|Supervision of other high risk pregnancies, unspecified trimester|Supervision of other high risk pregnancies, unspecified trimester +C2903506|T046|AB|O09.90|ICD10CM|Supervision of high risk pregnancy, unsp, unsp trimester|Supervision of high risk pregnancy, unsp, unsp trimester +C2903506|T046|PT|O09.90|ICD10CM|Supervision of high risk pregnancy, unspecified, unspecified trimester|Supervision of high risk pregnancy, unspecified, unspecified trimester +C2903507|T046|AB|O09.91|ICD10CM|Supervision of high risk pregnancy, unsp, first trimester|Supervision of high risk pregnancy, unsp, first trimester +C2903507|T046|PT|O09.91|ICD10CM|Supervision of high risk pregnancy, unspecified, first trimester|Supervision of high risk pregnancy, unspecified, first trimester +C2903508|T046|AB|O09.92|ICD10CM|Supervision of high risk pregnancy, unsp, second trimester|Supervision of high risk pregnancy, unsp, second trimester +C2903508|T046|PT|O09.92|ICD10CM|Supervision of high risk pregnancy, unspecified, second trimester|Supervision of high risk pregnancy, unspecified, second trimester +C2903509|T046|AB|O09.93|ICD10CM|Supervision of high risk pregnancy, unsp, third trimester|Supervision of high risk pregnancy, unsp, third trimester +C2903509|T046|PT|O09.93|ICD10CM|Supervision of high risk pregnancy, unspecified, third trimester|Supervision of high risk pregnancy, unspecified, third trimester +C0348859|T046|AB|O10|ICD10CM|Pre-existing hypertension compl preg/chldbrth|Pre-existing hypertension compl preg/chldbrth +C0348859|T046|HT|O10|ICD10CM|Pre-existing hypertension complicating pregnancy, childbirth and the puerperium|Pre-existing hypertension complicating pregnancy, childbirth and the puerperium +C0348859|T046|HT|O10|ICD10|Pre-existing hypertension complicating pregnancy, childbirth and the puerperium|Pre-existing hypertension complicating pregnancy, childbirth and the puerperium +C0477811|T047|HT|O10-O16|ICD10CM|Edema, proteinuria and hypertensive disorders in pregnancy, childbirth and the puerperium (O10-O16)|Edema, proteinuria and hypertensive disorders in pregnancy, childbirth and the puerperium (O10-O16) +C0477811|T047|HT|O10-O16.9|ICD10AE|Edema, proteinuria and hypertensive disorders in pregnancy, childbirth and the puerperium|Edema, proteinuria and hypertensive disorders in pregnancy, childbirth and the puerperium +C0477811|T047|HT|O10-O16.9|ICD10|Oedema, proteinuria and hypertensive disorders in pregnancy, childbirth and the puerperium|Oedema, proteinuria and hypertensive disorders in pregnancy, childbirth and the puerperium +C0495174|T047|AB|O10.0|ICD10CM|Pre-existing essential hypertension compl preg/chldbrth|Pre-existing essential hypertension compl preg/chldbrth +C0495174|T047|HT|O10.0|ICD10CM|Pre-existing essential hypertension complicating pregnancy, childbirth and the puerperium|Pre-existing essential hypertension complicating pregnancy, childbirth and the puerperium +C0495174|T047|PT|O10.0|ICD10|Pre-existing essential hypertension complicating pregnancy, childbirth and the puerperium|Pre-existing essential hypertension complicating pregnancy, childbirth and the puerperium +C2903515|T046|AB|O10.01|ICD10CM|Pre-existing essential hypertension complicating pregnancy,|Pre-existing essential hypertension complicating pregnancy, +C2903515|T046|HT|O10.01|ICD10CM|Pre-existing essential hypertension complicating pregnancy,|Pre-existing essential hypertension complicating pregnancy, +C2903512|T046|AB|O10.011|ICD10CM|Pre-existing essential htn comp pregnancy, first trimester|Pre-existing essential htn comp pregnancy, first trimester +C2903512|T046|PT|O10.011|ICD10CM|Pre-existing essential hypertension complicating pregnancy, first trimester|Pre-existing essential hypertension complicating pregnancy, first trimester +C2903513|T046|AB|O10.012|ICD10CM|Pre-existing essential htn comp pregnancy, second trimester|Pre-existing essential htn comp pregnancy, second trimester +C2903513|T046|PT|O10.012|ICD10CM|Pre-existing essential hypertension complicating pregnancy, second trimester|Pre-existing essential hypertension complicating pregnancy, second trimester +C2903514|T046|AB|O10.013|ICD10CM|Pre-existing essential htn comp pregnancy, third trimester|Pre-existing essential htn comp pregnancy, third trimester +C2903514|T046|PT|O10.013|ICD10CM|Pre-existing essential hypertension complicating pregnancy, third trimester|Pre-existing essential hypertension complicating pregnancy, third trimester +C2903515|T046|AB|O10.019|ICD10CM|Pre-existing essential htn comp pregnancy, unsp trimester|Pre-existing essential htn comp pregnancy, unsp trimester +C2903515|T046|PT|O10.019|ICD10CM|Pre-existing essential hypertension complicating pregnancy, unspecified trimester|Pre-existing essential hypertension complicating pregnancy, unspecified trimester +C2903516|T047|AB|O10.02|ICD10CM|Pre-existing essential hypertension complicating childbirth|Pre-existing essential hypertension complicating childbirth +C2903516|T047|PT|O10.02|ICD10CM|Pre-existing essential hypertension complicating childbirth|Pre-existing essential hypertension complicating childbirth +C2903517|T047|AB|O10.03|ICD10CM|Pre-existing essential hypertension comp the puerperium|Pre-existing essential hypertension comp the puerperium +C2903517|T047|PT|O10.03|ICD10CM|Pre-existing essential hypertension complicating the puerperium|Pre-existing essential hypertension complicating the puerperium +C0348881|T046|AB|O10.1|ICD10CM|Pre-existing hypertensive heart disease compl preg/chldbrth|Pre-existing hypertensive heart disease compl preg/chldbrth +C0348881|T046|HT|O10.1|ICD10CM|Pre-existing hypertensive heart disease complicating pregnancy, childbirth and the puerperium|Pre-existing hypertensive heart disease complicating pregnancy, childbirth and the puerperium +C0348881|T046|PT|O10.1|ICD10|Pre-existing hypertensive heart disease complicating pregnancy, childbirth and the puerperium|Pre-existing hypertensive heart disease complicating pregnancy, childbirth and the puerperium +C1399136|T047|AB|O10.11|ICD10CM|Pre-existing hypertensive heart disease comp pregnancy|Pre-existing hypertensive heart disease comp pregnancy +C1399136|T047|HT|O10.11|ICD10CM|Pre-existing hypertensive heart disease complicating pregnancy|Pre-existing hypertensive heart disease complicating pregnancy +C2903519|T046|AB|O10.111|ICD10CM|Pre-exist hyp heart disease comp pregnancy, first trimester|Pre-exist hyp heart disease comp pregnancy, first trimester +C2903519|T046|PT|O10.111|ICD10CM|Pre-existing hypertensive heart disease complicating pregnancy, first trimester|Pre-existing hypertensive heart disease complicating pregnancy, first trimester +C2903520|T046|AB|O10.112|ICD10CM|Pre-exist hyp heart disease comp pregnancy, second trimester|Pre-exist hyp heart disease comp pregnancy, second trimester +C2903520|T046|PT|O10.112|ICD10CM|Pre-existing hypertensive heart disease complicating pregnancy, second trimester|Pre-existing hypertensive heart disease complicating pregnancy, second trimester +C2903521|T046|AB|O10.113|ICD10CM|Pre-exist hyp heart disease comp pregnancy, third trimester|Pre-exist hyp heart disease comp pregnancy, third trimester +C2903521|T046|PT|O10.113|ICD10CM|Pre-existing hypertensive heart disease complicating pregnancy, third trimester|Pre-existing hypertensive heart disease complicating pregnancy, third trimester +C2903522|T046|AB|O10.119|ICD10CM|Pre-exist hyp heart disease comp pregnancy, unsp trimester|Pre-exist hyp heart disease comp pregnancy, unsp trimester +C2903522|T046|PT|O10.119|ICD10CM|Pre-existing hypertensive heart disease complicating pregnancy, unspecified trimester|Pre-existing hypertensive heart disease complicating pregnancy, unspecified trimester +C2903523|T047|AB|O10.12|ICD10CM|Pre-existing hypertensive heart disease comp childbirth|Pre-existing hypertensive heart disease comp childbirth +C2903523|T047|PT|O10.12|ICD10CM|Pre-existing hypertensive heart disease complicating childbirth|Pre-existing hypertensive heart disease complicating childbirth +C2903524|T047|AB|O10.13|ICD10CM|Pre-existing hypertensive heart disease comp the puerperium|Pre-existing hypertensive heart disease comp the puerperium +C2903524|T047|PT|O10.13|ICD10CM|Pre-existing hypertensive heart disease complicating the puerperium|Pre-existing hypertensive heart disease complicating the puerperium +C2903526|T046|AB|O10.2|ICD10CM|Pre-existing hyp chronic kidney disease compl preg/chldbrth|Pre-existing hyp chronic kidney disease compl preg/chldbrth +C0495175|T047|PT|O10.2|ICD10|Pre-existing hypertensive renal disease complicating pregnancy, childbirth and the puerperium|Pre-existing hypertensive renal disease complicating pregnancy, childbirth and the puerperium +C2903530|T046|AB|O10.21|ICD10CM|Pre-existing hyp chronic kidney disease comp pregnancy|Pre-existing hyp chronic kidney disease comp pregnancy +C2903530|T046|HT|O10.21|ICD10CM|Pre-existing hypertensive chronic kidney disease complicating pregnancy|Pre-existing hypertensive chronic kidney disease complicating pregnancy +C2903527|T046|AB|O10.211|ICD10CM|Pre-exist hyp chronic kidney disease comp preg, first tri|Pre-exist hyp chronic kidney disease comp preg, first tri +C2903527|T046|PT|O10.211|ICD10CM|Pre-existing hypertensive chronic kidney disease complicating pregnancy, first trimester|Pre-existing hypertensive chronic kidney disease complicating pregnancy, first trimester +C2903528|T046|AB|O10.212|ICD10CM|Pre-exist hyp chronic kidney disease comp preg, second tri|Pre-exist hyp chronic kidney disease comp preg, second tri +C2903528|T046|PT|O10.212|ICD10CM|Pre-existing hypertensive chronic kidney disease complicating pregnancy, second trimester|Pre-existing hypertensive chronic kidney disease complicating pregnancy, second trimester +C2903529|T046|AB|O10.213|ICD10CM|Pre-exist hyp chronic kidney disease comp preg, third tri|Pre-exist hyp chronic kidney disease comp preg, third tri +C2903529|T046|PT|O10.213|ICD10CM|Pre-existing hypertensive chronic kidney disease complicating pregnancy, third trimester|Pre-existing hypertensive chronic kidney disease complicating pregnancy, third trimester +C2903530|T046|AB|O10.219|ICD10CM|Pre-exist hyp chronic kidney disease comp preg, unsp tri|Pre-exist hyp chronic kidney disease comp preg, unsp tri +C2903530|T046|PT|O10.219|ICD10CM|Pre-existing hypertensive chronic kidney disease complicating pregnancy, unspecified trimester|Pre-existing hypertensive chronic kidney disease complicating pregnancy, unspecified trimester +C2903531|T046|AB|O10.22|ICD10CM|Pre-existing hyp chronic kidney disease comp childbirth|Pre-existing hyp chronic kidney disease comp childbirth +C2903531|T046|PT|O10.22|ICD10CM|Pre-existing hypertensive chronic kidney disease complicating childbirth|Pre-existing hypertensive chronic kidney disease complicating childbirth +C2903532|T046|AB|O10.23|ICD10CM|Pre-existing hyp chronic kidney disease comp the puerperium|Pre-existing hyp chronic kidney disease comp the puerperium +C2903532|T046|PT|O10.23|ICD10CM|Pre-existing hypertensive chronic kidney disease complicating the puerperium|Pre-existing hypertensive chronic kidney disease complicating the puerperium +C2903534|T046|AB|O10.3|ICD10CM|Pre-exist hyp heart and chr kidney dis compl preg/chldbrth|Pre-exist hyp heart and chr kidney dis compl preg/chldbrth +C2903538|T046|AB|O10.31|ICD10CM|Pre-exist hyp heart and chronic kidney disease comp preg|Pre-exist hyp heart and chronic kidney disease comp preg +C2903538|T046|HT|O10.31|ICD10CM|Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy|Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy +C2903535|T046|AB|O10.311|ICD10CM|Pre-exist hyp heart and chr kidney dis comp preg, first tri|Pre-exist hyp heart and chr kidney dis comp preg, first tri +C2903535|T046|PT|O10.311|ICD10CM|Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, first trimester|Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, first trimester +C2903536|T046|AB|O10.312|ICD10CM|Pre-exist hyp heart and chr kidney dis comp preg, second tri|Pre-exist hyp heart and chr kidney dis comp preg, second tri +C2903536|T046|PT|O10.312|ICD10CM|Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, second trimester|Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, second trimester +C2903537|T046|AB|O10.313|ICD10CM|Pre-exist hyp heart and chr kidney dis comp preg, third tri|Pre-exist hyp heart and chr kidney dis comp preg, third tri +C2903537|T046|PT|O10.313|ICD10CM|Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, third trimester|Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, third trimester +C2903538|T046|AB|O10.319|ICD10CM|Pre-exist hyp heart and chr kidney dis comp preg, unsp tri|Pre-exist hyp heart and chr kidney dis comp preg, unsp tri +C2903539|T047|AB|O10.32|ICD10CM|Pre-exist hyp heart and chronic kidney disease comp chldbrth|Pre-exist hyp heart and chronic kidney disease comp chldbrth +C2903539|T047|PT|O10.32|ICD10CM|Pre-existing hypertensive heart and chronic kidney disease complicating childbirth|Pre-existing hypertensive heart and chronic kidney disease complicating childbirth +C2903540|T047|AB|O10.33|ICD10CM|Pre-exist hyp heart and chr kidney disease comp the puerp|Pre-exist hyp heart and chr kidney disease comp the puerp +C2903540|T047|PT|O10.33|ICD10CM|Pre-existing hypertensive heart and chronic kidney disease complicating the puerperium|Pre-existing hypertensive heart and chronic kidney disease complicating the puerperium +C0495176|T046|AB|O10.4|ICD10CM|Pre-existing secondary hypertension compl preg/chldbrth|Pre-existing secondary hypertension compl preg/chldbrth +C0495176|T046|HT|O10.4|ICD10CM|Pre-existing secondary hypertension complicating pregnancy, childbirth and the puerperium|Pre-existing secondary hypertension complicating pregnancy, childbirth and the puerperium +C0495176|T046|PT|O10.4|ICD10|Pre-existing secondary hypertension complicating pregnancy, childbirth and the puerperium|Pre-existing secondary hypertension complicating pregnancy, childbirth and the puerperium +C2903545|T046|AB|O10.41|ICD10CM|Pre-existing secondary hypertension complicating pregnancy|Pre-existing secondary hypertension complicating pregnancy +C2903545|T046|HT|O10.41|ICD10CM|Pre-existing secondary hypertension complicating pregnancy|Pre-existing secondary hypertension complicating pregnancy +C2903542|T046|AB|O10.411|ICD10CM|Pre-existing secondary htn comp pregnancy, first trimester|Pre-existing secondary htn comp pregnancy, first trimester +C2903542|T046|PT|O10.411|ICD10CM|Pre-existing secondary hypertension complicating pregnancy, first trimester|Pre-existing secondary hypertension complicating pregnancy, first trimester +C2903543|T046|AB|O10.412|ICD10CM|Pre-existing secondary htn comp pregnancy, second trimester|Pre-existing secondary htn comp pregnancy, second trimester +C2903543|T046|PT|O10.412|ICD10CM|Pre-existing secondary hypertension complicating pregnancy, second trimester|Pre-existing secondary hypertension complicating pregnancy, second trimester +C2903544|T046|AB|O10.413|ICD10CM|Pre-existing secondary htn comp pregnancy, third trimester|Pre-existing secondary htn comp pregnancy, third trimester +C2903544|T046|PT|O10.413|ICD10CM|Pre-existing secondary hypertension complicating pregnancy, third trimester|Pre-existing secondary hypertension complicating pregnancy, third trimester +C2903545|T046|AB|O10.419|ICD10CM|Pre-existing secondary htn comp pregnancy, unsp trimester|Pre-existing secondary htn comp pregnancy, unsp trimester +C2903545|T046|PT|O10.419|ICD10CM|Pre-existing secondary hypertension complicating pregnancy, unspecified trimester|Pre-existing secondary hypertension complicating pregnancy, unspecified trimester +C2903546|T047|AB|O10.42|ICD10CM|Pre-existing secondary hypertension complicating childbirth|Pre-existing secondary hypertension complicating childbirth +C2903546|T047|PT|O10.42|ICD10CM|Pre-existing secondary hypertension complicating childbirth|Pre-existing secondary hypertension complicating childbirth +C2903547|T047|AB|O10.43|ICD10CM|Pre-existing secondary hypertension comp the puerperium|Pre-existing secondary hypertension comp the puerperium +C2903547|T047|PT|O10.43|ICD10CM|Pre-existing secondary hypertension complicating the puerperium|Pre-existing secondary hypertension complicating the puerperium +C0495177|T047|AB|O10.9|ICD10CM|Unsp pre-existing hypertension compl preg/chldbrth|Unsp pre-existing hypertension compl preg/chldbrth +C0495177|T047|HT|O10.9|ICD10CM|Unspecified pre-existing hypertension complicating pregnancy, childbirth and the puerperium|Unspecified pre-existing hypertension complicating pregnancy, childbirth and the puerperium +C0495177|T047|PT|O10.9|ICD10|Unspecified pre-existing hypertension complicating pregnancy, childbirth and the puerperium|Unspecified pre-existing hypertension complicating pregnancy, childbirth and the puerperium +C2903551|T046|AB|O10.91|ICD10CM|Unspecified pre-existing hypertension complicating pregnancy|Unspecified pre-existing hypertension complicating pregnancy +C2903551|T046|HT|O10.91|ICD10CM|Unspecified pre-existing hypertension complicating pregnancy|Unspecified pre-existing hypertension complicating pregnancy +C2903548|T046|AB|O10.911|ICD10CM|Unsp pre-existing htn comp pregnancy, first trimester|Unsp pre-existing htn comp pregnancy, first trimester +C2903548|T046|PT|O10.911|ICD10CM|Unspecified pre-existing hypertension complicating pregnancy, first trimester|Unspecified pre-existing hypertension complicating pregnancy, first trimester +C2903549|T046|AB|O10.912|ICD10CM|Unsp pre-existing htn comp pregnancy, second trimester|Unsp pre-existing htn comp pregnancy, second trimester +C2903549|T046|PT|O10.912|ICD10CM|Unspecified pre-existing hypertension complicating pregnancy, second trimester|Unspecified pre-existing hypertension complicating pregnancy, second trimester +C2903550|T046|AB|O10.913|ICD10CM|Unsp pre-existing htn comp pregnancy, third trimester|Unsp pre-existing htn comp pregnancy, third trimester +C2903550|T046|PT|O10.913|ICD10CM|Unspecified pre-existing hypertension complicating pregnancy, third trimester|Unspecified pre-existing hypertension complicating pregnancy, third trimester +C2903551|T046|AB|O10.919|ICD10CM|Unsp pre-existing htn comp pregnancy, unsp trimester|Unsp pre-existing htn comp pregnancy, unsp trimester +C2903551|T046|PT|O10.919|ICD10CM|Unspecified pre-existing hypertension complicating pregnancy, unspecified trimester|Unspecified pre-existing hypertension complicating pregnancy, unspecified trimester +C2903552|T046|AB|O10.92|ICD10CM|Unsp pre-existing hypertension complicating childbirth|Unsp pre-existing hypertension complicating childbirth +C2903552|T046|PT|O10.92|ICD10CM|Unspecified pre-existing hypertension complicating childbirth|Unspecified pre-existing hypertension complicating childbirth +C2903553|T047|AB|O10.93|ICD10CM|Unsp pre-existing hypertension complicating the puerperium|Unsp pre-existing hypertension complicating the puerperium +C2903553|T047|PT|O10.93|ICD10CM|Unspecified pre-existing hypertension complicating the puerperium|Unspecified pre-existing hypertension complicating the puerperium +C4290244|T047|ET|O11|ICD10CM|conditions in Ol0 complicated by pre-eclampsia|conditions in Ol0 complicated by pre-eclampsia +C4290245|T047|ET|O11|ICD10CM|pre-eclampsia superimposed pre-existing hypertension|pre-eclampsia superimposed pre-existing hypertension +C0341952|T047|AB|O11|ICD10CM|Pre-existing hypertension with pre-eclampsia|Pre-existing hypertension with pre-eclampsia +C0341952|T047|HT|O11|ICD10CM|Pre-existing hypertension with pre-eclampsia|Pre-existing hypertension with pre-eclampsia +C0495178|T046|PT|O11|ICD10|Pre-existing hypertensive disorder with superimposed proteinuria|Pre-existing hypertensive disorder with superimposed proteinuria +C2903555|T046|AB|O11.1|ICD10CM|Pre-existing hypertension w pre-eclampsia, first trimester|Pre-existing hypertension w pre-eclampsia, first trimester +C2903555|T046|PT|O11.1|ICD10CM|Pre-existing hypertension with pre-eclampsia, first trimester|Pre-existing hypertension with pre-eclampsia, first trimester +C2903556|T046|AB|O11.2|ICD10CM|Pre-existing hypertension w pre-eclampsia, second trimester|Pre-existing hypertension w pre-eclampsia, second trimester +C2903556|T046|PT|O11.2|ICD10CM|Pre-existing hypertension with pre-eclampsia, second trimester|Pre-existing hypertension with pre-eclampsia, second trimester +C2903557|T046|AB|O11.3|ICD10CM|Pre-existing hypertension w pre-eclampsia, third trimester|Pre-existing hypertension w pre-eclampsia, third trimester +C2903557|T046|PT|O11.3|ICD10CM|Pre-existing hypertension with pre-eclampsia, third trimester|Pre-existing hypertension with pre-eclampsia, third trimester +C4268978|T046|AB|O11.4|ICD10CM|Pre-existing htn with pre-eclampsia, comp childbirth|Pre-existing htn with pre-eclampsia, comp childbirth +C4268978|T046|PT|O11.4|ICD10CM|Pre-existing hypertension with pre-eclampsia, complicating childbirth|Pre-existing hypertension with pre-eclampsia, complicating childbirth +C4268979|T046|AB|O11.5|ICD10CM|Pre-existing htn with pre-eclampsia, comp the puerperium|Pre-existing htn with pre-eclampsia, comp the puerperium +C4268979|T046|PT|O11.5|ICD10CM|Pre-existing hypertension with pre-eclampsia, complicating the puerperium|Pre-existing hypertension with pre-eclampsia, complicating the puerperium +C2903558|T046|AB|O11.9|ICD10CM|Pre-existing hypertension with pre-eclampsia, unsp trimester|Pre-existing hypertension with pre-eclampsia, unsp trimester +C2903558|T046|PT|O11.9|ICD10CM|Pre-existing hypertension with pre-eclampsia, unspecified trimester|Pre-existing hypertension with pre-eclampsia, unspecified trimester +C3648968|T046|HT|O12|ICD10CM|Gestational [pregnancy-induced] edema and proteinuria without hypertension|Gestational [pregnancy-induced] edema and proteinuria without hypertension +C3648968|T046|HT|O12|ICD10AE|Gestational [pregnancy-induced] edema and proteinuria without hypertension|Gestational [pregnancy-induced] edema and proteinuria without hypertension +C3648968|T046|HT|O12|ICD10|Gestational [pregnancy-induced] oedema and proteinuria without hypertension|Gestational [pregnancy-induced] oedema and proteinuria without hypertension +C3648968|T046|AB|O12|ICD10CM|Gestational edema and proteinuria without hypertension|Gestational edema and proteinuria without hypertension +C0341960|T046|PT|O12.0|ICD10AE|Gestational edema|Gestational edema +C0341960|T046|HT|O12.0|ICD10CM|Gestational edema|Gestational edema +C0341960|T046|AB|O12.0|ICD10CM|Gestational edema|Gestational edema +C0341960|T046|PT|O12.0|ICD10|Gestational oedema|Gestational oedema +C2903559|T046|AB|O12.00|ICD10CM|Gestational edema, unspecified trimester|Gestational edema, unspecified trimester +C2903559|T046|PT|O12.00|ICD10CM|Gestational edema, unspecified trimester|Gestational edema, unspecified trimester +C2903560|T046|PT|O12.01|ICD10CM|Gestational edema, first trimester|Gestational edema, first trimester +C2903560|T046|AB|O12.01|ICD10CM|Gestational edema, first trimester|Gestational edema, first trimester +C2903561|T046|PT|O12.02|ICD10CM|Gestational edema, second trimester|Gestational edema, second trimester +C2903561|T046|AB|O12.02|ICD10CM|Gestational edema, second trimester|Gestational edema, second trimester +C2903562|T046|PT|O12.03|ICD10CM|Gestational edema, third trimester|Gestational edema, third trimester +C2903562|T046|AB|O12.03|ICD10CM|Gestational edema, third trimester|Gestational edema, third trimester +C4268980|T047|AB|O12.04|ICD10CM|Gestational edema, complicating childbirth|Gestational edema, complicating childbirth +C4268980|T047|PT|O12.04|ICD10CM|Gestational edema, complicating childbirth|Gestational edema, complicating childbirth +C4268981|T047|AB|O12.05|ICD10CM|Gestational edema, complicating the puerperium|Gestational edema, complicating the puerperium +C4268981|T047|PT|O12.05|ICD10CM|Gestational edema, complicating the puerperium|Gestational edema, complicating the puerperium +C0269674|T046|PT|O12.1|ICD10|Gestational proteinuria|Gestational proteinuria +C0269674|T046|HT|O12.1|ICD10CM|Gestational proteinuria|Gestational proteinuria +C0269674|T046|AB|O12.1|ICD10CM|Gestational proteinuria|Gestational proteinuria +C2903563|T046|AB|O12.10|ICD10CM|Gestational proteinuria, unspecified trimester|Gestational proteinuria, unspecified trimester +C2903563|T046|PT|O12.10|ICD10CM|Gestational proteinuria, unspecified trimester|Gestational proteinuria, unspecified trimester +C2903564|T046|PT|O12.11|ICD10CM|Gestational proteinuria, first trimester|Gestational proteinuria, first trimester +C2903564|T046|AB|O12.11|ICD10CM|Gestational proteinuria, first trimester|Gestational proteinuria, first trimester +C2903565|T046|PT|O12.12|ICD10CM|Gestational proteinuria, second trimester|Gestational proteinuria, second trimester +C2903565|T046|AB|O12.12|ICD10CM|Gestational proteinuria, second trimester|Gestational proteinuria, second trimester +C2903566|T046|PT|O12.13|ICD10CM|Gestational proteinuria, third trimester|Gestational proteinuria, third trimester +C2903566|T046|AB|O12.13|ICD10CM|Gestational proteinuria, third trimester|Gestational proteinuria, third trimester +C4268982|T047|AB|O12.14|ICD10CM|Gestational proteinuria, complicating childbirth|Gestational proteinuria, complicating childbirth +C4268982|T047|PT|O12.14|ICD10CM|Gestational proteinuria, complicating childbirth|Gestational proteinuria, complicating childbirth +C4268983|T047|AB|O12.15|ICD10CM|Gestational proteinuria, complicating the puerperium|Gestational proteinuria, complicating the puerperium +C4268983|T047|PT|O12.15|ICD10CM|Gestational proteinuria, complicating the puerperium|Gestational proteinuria, complicating the puerperium +C0475548|T046|PT|O12.2|ICD10AE|Gestational edema with proteinuria|Gestational edema with proteinuria +C0475548|T046|HT|O12.2|ICD10CM|Gestational edema with proteinuria|Gestational edema with proteinuria +C0475548|T046|AB|O12.2|ICD10CM|Gestational edema with proteinuria|Gestational edema with proteinuria +C0475548|T046|PT|O12.2|ICD10|Gestational oedema with proteinuria|Gestational oedema with proteinuria +C2903567|T046|AB|O12.20|ICD10CM|Gestational edema with proteinuria, unspecified trimester|Gestational edema with proteinuria, unspecified trimester +C2903567|T046|PT|O12.20|ICD10CM|Gestational edema with proteinuria, unspecified trimester|Gestational edema with proteinuria, unspecified trimester +C2903568|T046|AB|O12.21|ICD10CM|Gestational edema with proteinuria, first trimester|Gestational edema with proteinuria, first trimester +C2903568|T046|PT|O12.21|ICD10CM|Gestational edema with proteinuria, first trimester|Gestational edema with proteinuria, first trimester +C2903569|T046|AB|O12.22|ICD10CM|Gestational edema with proteinuria, second trimester|Gestational edema with proteinuria, second trimester +C2903569|T046|PT|O12.22|ICD10CM|Gestational edema with proteinuria, second trimester|Gestational edema with proteinuria, second trimester +C2903570|T046|AB|O12.23|ICD10CM|Gestational edema with proteinuria, third trimester|Gestational edema with proteinuria, third trimester +C2903570|T046|PT|O12.23|ICD10CM|Gestational edema with proteinuria, third trimester|Gestational edema with proteinuria, third trimester +C4268984|T047|AB|O12.24|ICD10CM|Gestational edema with proteinuria, complicating childbirth|Gestational edema with proteinuria, complicating childbirth +C4268984|T047|PT|O12.24|ICD10CM|Gestational edema with proteinuria, complicating childbirth|Gestational edema with proteinuria, complicating childbirth +C4268985|T047|AB|O12.25|ICD10CM|Gestational edema with proteinuria, comp the puerperium|Gestational edema with proteinuria, comp the puerperium +C4268985|T047|PT|O12.25|ICD10CM|Gestational edema with proteinuria, complicating the puerperium|Gestational edema with proteinuria, complicating the puerperium +C0495180|T046|PT|O13|ICD10|Gestational [pregnancy-induced] hypertension without significant proteinuria|Gestational [pregnancy-induced] hypertension without significant proteinuria +C0495180|T046|HT|O13|ICD10CM|Gestational [pregnancy-induced] hypertension without significant proteinuria|Gestational [pregnancy-induced] hypertension without significant proteinuria +C0852036|T047|ET|O13|ICD10CM|gestational hypertension NOS|gestational hypertension NOS +C0495180|T046|AB|O13|ICD10CM|Gestational hypertension without significant proteinuria|Gestational hypertension without significant proteinuria +C0341934|T046|ET|O13|ICD10CM|transient hypertension of pregnancy|transient hypertension of pregnancy +C2903571|T046|PT|O13.1|ICD10CM|Gestational [pregnancy-induced] hypertension without significant proteinuria, first trimester|Gestational [pregnancy-induced] hypertension without significant proteinuria, first trimester +C2903571|T046|AB|O13.1|ICD10CM|Gestational htn w/o significant proteinuria, first trimester|Gestational htn w/o significant proteinuria, first trimester +C2903572|T046|PT|O13.2|ICD10CM|Gestational [pregnancy-induced] hypertension without significant proteinuria, second trimester|Gestational [pregnancy-induced] hypertension without significant proteinuria, second trimester +C2903572|T046|AB|O13.2|ICD10CM|Gestatnl htn w/o significant proteinuria, second trimester|Gestatnl htn w/o significant proteinuria, second trimester +C2903573|T046|PT|O13.3|ICD10CM|Gestational [pregnancy-induced] hypertension without significant proteinuria, third trimester|Gestational [pregnancy-induced] hypertension without significant proteinuria, third trimester +C2903573|T046|AB|O13.3|ICD10CM|Gestational htn w/o significant proteinuria, third trimester|Gestational htn w/o significant proteinuria, third trimester +C4268986|T046|AB|O13.4|ICD10CM|Gestatnl htn without significant protein, comp childbirth|Gestatnl htn without significant protein, comp childbirth +C4268987|T046|AB|O13.5|ICD10CM|Gestatnl htn without significant protein, comp the puerp|Gestatnl htn without significant protein, comp the puerp +C0495180|T046|PT|O13.9|ICD10CM|Gestational [pregnancy-induced] hypertension without significant proteinuria, unspecified trimester|Gestational [pregnancy-induced] hypertension without significant proteinuria, unspecified trimester +C0495180|T046|AB|O13.9|ICD10CM|Gestational htn w/o significant proteinuria, unsp trimester|Gestational htn w/o significant proteinuria, unsp trimester +C0495181|T046|HT|O14|ICD10|Gestational [pregnancy-induced] hypertension with significant proteinuria|Gestational [pregnancy-induced] hypertension with significant proteinuria +C0032914|T046|HT|O14|ICD10CM|Pre-eclampsia|Pre-eclampsia +C0032914|T046|AB|O14|ICD10CM|Pre-eclampsia|Pre-eclampsia +C2977271|T046|AB|O14.0|ICD10CM|Mild to moderate pre-eclampsia|Mild to moderate pre-eclampsia +C2977271|T046|HT|O14.0|ICD10CM|Mild to moderate pre-eclampsia|Mild to moderate pre-eclampsia +C0341944|T047|PT|O14.0|ICD10|Moderate pre-eclampsia|Moderate pre-eclampsia +C2977272|T046|AB|O14.00|ICD10CM|Mild to moderate pre-eclampsia, unspecified trimester|Mild to moderate pre-eclampsia, unspecified trimester +C2977272|T046|PT|O14.00|ICD10CM|Mild to moderate pre-eclampsia, unspecified trimester|Mild to moderate pre-eclampsia, unspecified trimester +C2903574|T046|AB|O14.02|ICD10CM|Mild to moderate pre-eclampsia, second trimester|Mild to moderate pre-eclampsia, second trimester +C2903574|T046|PT|O14.02|ICD10CM|Mild to moderate pre-eclampsia, second trimester|Mild to moderate pre-eclampsia, second trimester +C2903575|T046|AB|O14.03|ICD10CM|Mild to moderate pre-eclampsia, third trimester|Mild to moderate pre-eclampsia, third trimester +C2903575|T046|PT|O14.03|ICD10CM|Mild to moderate pre-eclampsia, third trimester|Mild to moderate pre-eclampsia, third trimester +C4268988|T046|AB|O14.04|ICD10CM|Mild to moderate pre-eclampsia, complicating childbirth|Mild to moderate pre-eclampsia, complicating childbirth +C4268988|T046|PT|O14.04|ICD10CM|Mild to moderate pre-eclampsia, complicating childbirth|Mild to moderate pre-eclampsia, complicating childbirth +C4268989|T046|AB|O14.05|ICD10CM|Mild to moderate pre-eclampsia, complicating the puerperium|Mild to moderate pre-eclampsia, complicating the puerperium +C4268989|T046|PT|O14.05|ICD10CM|Mild to moderate pre-eclampsia, complicating the puerperium|Mild to moderate pre-eclampsia, complicating the puerperium +C0341950|T046|PT|O14.1|ICD10|Severe pre-eclampsia|Severe pre-eclampsia +C0341950|T046|HT|O14.1|ICD10CM|Severe pre-eclampsia|Severe pre-eclampsia +C0341950|T046|AB|O14.1|ICD10CM|Severe pre-eclampsia|Severe pre-eclampsia +C2903576|T046|AB|O14.10|ICD10CM|Severe pre-eclampsia, unspecified trimester|Severe pre-eclampsia, unspecified trimester +C2903576|T046|PT|O14.10|ICD10CM|Severe pre-eclampsia, unspecified trimester|Severe pre-eclampsia, unspecified trimester +C2903577|T046|AB|O14.12|ICD10CM|Severe pre-eclampsia, second trimester|Severe pre-eclampsia, second trimester +C2903577|T046|PT|O14.12|ICD10CM|Severe pre-eclampsia, second trimester|Severe pre-eclampsia, second trimester +C2903578|T046|AB|O14.13|ICD10CM|Severe pre-eclampsia, third trimester|Severe pre-eclampsia, third trimester +C2903578|T046|PT|O14.13|ICD10CM|Severe pre-eclampsia, third trimester|Severe pre-eclampsia, third trimester +C4268990|T046|AB|O14.14|ICD10CM|Severe pre-eclampsia complicating childbirth|Severe pre-eclampsia complicating childbirth +C4268990|T046|PT|O14.14|ICD10CM|Severe pre-eclampsia complicating childbirth|Severe pre-eclampsia complicating childbirth +C4268991|T046|AB|O14.15|ICD10CM|Severe pre-eclampsia, complicating the puerperium|Severe pre-eclampsia, complicating the puerperium +C4268991|T046|PT|O14.15|ICD10CM|Severe pre-eclampsia, complicating the puerperium|Severe pre-eclampsia, complicating the puerperium +C0162739|T047|HT|O14.2|ICD10CM|HELLP syndrome|HELLP syndrome +C0162739|T047|AB|O14.2|ICD10CM|HELLP syndrome|HELLP syndrome +C2903579|T047|ET|O14.2|ICD10CM|Severe pre-eclampsia with hemolysis, elevated liver enzymes and low platelet count (HELLP)|Severe pre-eclampsia with hemolysis, elevated liver enzymes and low platelet count (HELLP) +C2903580|T046|AB|O14.20|ICD10CM|HELLP syndrome (HELLP), unspecified trimester|HELLP syndrome (HELLP), unspecified trimester +C2903580|T046|PT|O14.20|ICD10CM|HELLP syndrome (HELLP), unspecified trimester|HELLP syndrome (HELLP), unspecified trimester +C2903581|T046|AB|O14.22|ICD10CM|HELLP syndrome (HELLP), second trimester|HELLP syndrome (HELLP), second trimester +C2903581|T046|PT|O14.22|ICD10CM|HELLP syndrome (HELLP), second trimester|HELLP syndrome (HELLP), second trimester +C2903582|T046|AB|O14.23|ICD10CM|HELLP syndrome (HELLP), third trimester|HELLP syndrome (HELLP), third trimester +C2903582|T046|PT|O14.23|ICD10CM|HELLP syndrome (HELLP), third trimester|HELLP syndrome (HELLP), third trimester +C4268992|T047|AB|O14.24|ICD10CM|HELLP syndrome, complicating childbirth|HELLP syndrome, complicating childbirth +C4268992|T047|PT|O14.24|ICD10CM|HELLP syndrome, complicating childbirth|HELLP syndrome, complicating childbirth +C4268993|T047|AB|O14.25|ICD10CM|HELLP syndrome, complicating the puerperium|HELLP syndrome, complicating the puerperium +C4268993|T047|PT|O14.25|ICD10CM|HELLP syndrome, complicating the puerperium|HELLP syndrome, complicating the puerperium +C0032914|T046|PT|O14.9|ICD10|Pre-eclampsia, unspecified|Pre-eclampsia, unspecified +C0032914|T046|AB|O14.9|ICD10CM|Unspecified pre-eclampsia|Unspecified pre-eclampsia +C0032914|T046|HT|O14.9|ICD10CM|Unspecified pre-eclampsia|Unspecified pre-eclampsia +C0032914|T046|AB|O14.90|ICD10CM|Unspecified pre-eclampsia, unspecified trimester|Unspecified pre-eclampsia, unspecified trimester +C0032914|T046|PT|O14.90|ICD10CM|Unspecified pre-eclampsia, unspecified trimester|Unspecified pre-eclampsia, unspecified trimester +C2903583|T046|AB|O14.92|ICD10CM|Unspecified pre-eclampsia, second trimester|Unspecified pre-eclampsia, second trimester +C2903583|T046|PT|O14.92|ICD10CM|Unspecified pre-eclampsia, second trimester|Unspecified pre-eclampsia, second trimester +C2903584|T046|AB|O14.93|ICD10CM|Unspecified pre-eclampsia, third trimester|Unspecified pre-eclampsia, third trimester +C2903584|T046|PT|O14.93|ICD10CM|Unspecified pre-eclampsia, third trimester|Unspecified pre-eclampsia, third trimester +C4268994|T046|AB|O14.94|ICD10CM|Unspecified pre-eclampsia, complicating childbirth|Unspecified pre-eclampsia, complicating childbirth +C4268994|T046|PT|O14.94|ICD10CM|Unspecified pre-eclampsia, complicating childbirth|Unspecified pre-eclampsia, complicating childbirth +C4268995|T046|AB|O14.95|ICD10CM|Unspecified pre-eclampsia, complicating the puerperium|Unspecified pre-eclampsia, complicating the puerperium +C4268995|T046|PT|O14.95|ICD10CM|Unspecified pre-eclampsia, complicating the puerperium|Unspecified pre-eclampsia, complicating the puerperium +C4290246|T047|ET|O15|ICD10CM|convulsions following conditions in O10-O14 and O16|convulsions following conditions in O10-O14 and O16 +C0013537|T047|HT|O15|ICD10|Eclampsia|Eclampsia +C0013537|T047|HT|O15|ICD10CM|Eclampsia|Eclampsia +C0013537|T047|AB|O15|ICD10CM|Eclampsia|Eclampsia +C1391483|T046|AB|O15.0|ICD10CM|Eclampsia complicating pregnancy|Eclampsia complicating pregnancy +C1391483|T046|HT|O15.0|ICD10CM|Eclampsia complicating pregnancy|Eclampsia complicating pregnancy +C0156677|T046|PT|O15.0|ICD10|Eclampsia in pregnancy|Eclampsia in pregnancy +C4268996|T046|AB|O15.00|ICD10CM|Eclampsia complicating pregnancy, unspecified trimester|Eclampsia complicating pregnancy, unspecified trimester +C4268996|T046|PT|O15.00|ICD10CM|Eclampsia complicating pregnancy, unspecified trimester|Eclampsia complicating pregnancy, unspecified trimester +C4268997|T046|AB|O15.02|ICD10CM|Eclampsia complicating pregnancy, second trimester|Eclampsia complicating pregnancy, second trimester +C4268997|T046|PT|O15.02|ICD10CM|Eclampsia complicating pregnancy, second trimester|Eclampsia complicating pregnancy, second trimester +C4268998|T046|AB|O15.03|ICD10CM|Eclampsia complicating pregnancy, third trimester|Eclampsia complicating pregnancy, third trimester +C4268998|T046|PT|O15.03|ICD10CM|Eclampsia complicating pregnancy, third trimester|Eclampsia complicating pregnancy, third trimester +C4268999|T046|AB|O15.1|ICD10CM|Eclampsia complicating labor|Eclampsia complicating labor +C4268999|T046|PT|O15.1|ICD10CM|Eclampsia complicating labor|Eclampsia complicating labor +C0341957|T046|PT|O15.1|ICD10AE|Eclampsia in labor|Eclampsia in labor +C0341957|T046|PT|O15.1|ICD10|Eclampsia in labour|Eclampsia in labour +C4269000|T046|AB|O15.2|ICD10CM|Eclampsia complicating the puerperium|Eclampsia complicating the puerperium +C4269000|T046|PT|O15.2|ICD10CM|Eclampsia complicating the puerperium|Eclampsia complicating the puerperium +C0156678|T047|PT|O15.2|ICD10|Eclampsia in the puerperium|Eclampsia in the puerperium +C0013537|T047|ET|O15.9|ICD10CM|Eclampsia NOS|Eclampsia NOS +C0013537|T047|PT|O15.9|ICD10CM|Eclampsia, unspecified as to time period|Eclampsia, unspecified as to time period +C0013537|T047|AB|O15.9|ICD10CM|Eclampsia, unspecified as to time period|Eclampsia, unspecified as to time period +C0013537|T047|PT|O15.9|ICD10|Eclampsia, unspecified as to time period|Eclampsia, unspecified as to time period +C0495183|T046|HT|O16|ICD10CM|Unspecified maternal hypertension|Unspecified maternal hypertension +C0495183|T046|AB|O16|ICD10CM|Unspecified maternal hypertension|Unspecified maternal hypertension +C0495183|T046|PT|O16|ICD10|Unspecified maternal hypertension|Unspecified maternal hypertension +C2903588|T046|AB|O16.1|ICD10CM|Unspecified maternal hypertension, first trimester|Unspecified maternal hypertension, first trimester +C2903588|T046|PT|O16.1|ICD10CM|Unspecified maternal hypertension, first trimester|Unspecified maternal hypertension, first trimester +C2903589|T046|AB|O16.2|ICD10CM|Unspecified maternal hypertension, second trimester|Unspecified maternal hypertension, second trimester +C2903589|T046|PT|O16.2|ICD10CM|Unspecified maternal hypertension, second trimester|Unspecified maternal hypertension, second trimester +C2903590|T046|AB|O16.3|ICD10CM|Unspecified maternal hypertension, third trimester|Unspecified maternal hypertension, third trimester +C2903590|T046|PT|O16.3|ICD10CM|Unspecified maternal hypertension, third trimester|Unspecified maternal hypertension, third trimester +C4269001|T046|AB|O16.4|ICD10CM|Unspecified maternal hypertension, complicating childbirth|Unspecified maternal hypertension, complicating childbirth +C4269001|T046|PT|O16.4|ICD10CM|Unspecified maternal hypertension, complicating childbirth|Unspecified maternal hypertension, complicating childbirth +C4269002|T046|AB|O16.5|ICD10CM|Unspecified maternal hypertension, comp the puerperium|Unspecified maternal hypertension, comp the puerperium +C4269002|T046|PT|O16.5|ICD10CM|Unspecified maternal hypertension, complicating the puerperium|Unspecified maternal hypertension, complicating the puerperium +C0495183|T046|AB|O16.9|ICD10CM|Unspecified maternal hypertension, unspecified trimester|Unspecified maternal hypertension, unspecified trimester +C0495183|T046|PT|O16.9|ICD10CM|Unspecified maternal hypertension, unspecified trimester|Unspecified maternal hypertension, unspecified trimester +C0156604|T046|HT|O20|ICD10|Haemorrhage in early pregnancy|Haemorrhage in early pregnancy +C4290247|T046|ET|O20|ICD10CM|hemorrhage before completion of 20 weeks gestation|hemorrhage before completion of 20 weeks gestation +C0156604|T046|HT|O20|ICD10CM|Hemorrhage in early pregnancy|Hemorrhage in early pregnancy +C0156604|T046|AB|O20|ICD10CM|Hemorrhage in early pregnancy|Hemorrhage in early pregnancy +C0156604|T046|HT|O20|ICD10AE|Hemorrhage in early pregnancy|Hemorrhage in early pregnancy +C0477812|T046|HT|O20-O29|ICD10CM|Other maternal disorders predominantly related to pregnancy (O20-O29)|Other maternal disorders predominantly related to pregnancy (O20-O29) +C0477812|T046|HT|O20-O29.9|ICD10|Other maternal disorders predominantly related to pregnancy|Other maternal disorders predominantly related to pregnancy +C2903592|T046|ET|O20.0|ICD10CM|Hemorrhage specified as due to threatened abortion|Hemorrhage specified as due to threatened abortion +C0000821|T046|PT|O20.0|ICD10|Threatened abortion|Threatened abortion +C0000821|T046|PT|O20.0|ICD10CM|Threatened abortion|Threatened abortion +C0000821|T046|AB|O20.0|ICD10CM|Threatened abortion|Threatened abortion +C0477813|T046|PT|O20.8|ICD10|Other haemorrhage in early pregnancy|Other haemorrhage in early pregnancy +C0477813|T046|PT|O20.8|ICD10AE|Other hemorrhage in early pregnancy|Other hemorrhage in early pregnancy +C0477813|T046|PT|O20.8|ICD10CM|Other hemorrhage in early pregnancy|Other hemorrhage in early pregnancy +C0477813|T046|AB|O20.8|ICD10CM|Other hemorrhage in early pregnancy|Other hemorrhage in early pregnancy +C0156604|T046|PT|O20.9|ICD10|Haemorrhage in early pregnancy, unspecified|Haemorrhage in early pregnancy, unspecified +C0156604|T046|PT|O20.9|ICD10AE|Hemorrhage in early pregnancy, unspecified|Hemorrhage in early pregnancy, unspecified +C0156604|T046|PT|O20.9|ICD10CM|Hemorrhage in early pregnancy, unspecified|Hemorrhage in early pregnancy, unspecified +C0156604|T046|AB|O20.9|ICD10CM|Hemorrhage in early pregnancy, unspecified|Hemorrhage in early pregnancy, unspecified +C0020450|T184|HT|O21|ICD10|Excessive vomiting in pregnancy|Excessive vomiting in pregnancy +C0020450|T184|HT|O21|ICD10CM|Excessive vomiting in pregnancy|Excessive vomiting in pregnancy +C0020450|T184|AB|O21|ICD10CM|Excessive vomiting in pregnancy|Excessive vomiting in pregnancy +C2903593|T046|ET|O21.0|ICD10CM|Hyperemesis gravidarum, mild or unspecified, starting before the end of the 20th week of gestation|Hyperemesis gravidarum, mild or unspecified, starting before the end of the 20th week of gestation +C0020451|T047|PT|O21.0|ICD10CM|Mild hyperemesis gravidarum|Mild hyperemesis gravidarum +C0020451|T047|AB|O21.0|ICD10CM|Mild hyperemesis gravidarum|Mild hyperemesis gravidarum +C0020451|T047|PT|O21.0|ICD10|Mild hyperemesis gravidarum|Mild hyperemesis gravidarum +C0405080|T047|PT|O21.1|ICD10|Hyperemesis gravidarum with metabolic disturbance|Hyperemesis gravidarum with metabolic disturbance +C0405080|T047|PT|O21.1|ICD10CM|Hyperemesis gravidarum with metabolic disturbance|Hyperemesis gravidarum with metabolic disturbance +C0405080|T047|AB|O21.1|ICD10CM|Hyperemesis gravidarum with metabolic disturbance|Hyperemesis gravidarum with metabolic disturbance +C2903597|T046|ET|O21.2|ICD10CM|Excessive vomiting starting after 20 completed weeks of gestation|Excessive vomiting starting after 20 completed weeks of gestation +C0156699|T046|PT|O21.2|ICD10|Late vomiting of pregnancy|Late vomiting of pregnancy +C0156699|T046|PT|O21.2|ICD10CM|Late vomiting of pregnancy|Late vomiting of pregnancy +C0156699|T046|AB|O21.2|ICD10CM|Late vomiting of pregnancy|Late vomiting of pregnancy +C0156703|T184|PT|O21.8|ICD10CM|Other vomiting complicating pregnancy|Other vomiting complicating pregnancy +C0156703|T184|AB|O21.8|ICD10CM|Other vomiting complicating pregnancy|Other vomiting complicating pregnancy +C0156703|T184|PT|O21.8|ICD10|Other vomiting complicating pregnancy|Other vomiting complicating pregnancy +C1390591|T046|ET|O21.8|ICD10CM|Vomiting due to diseases classified elsewhere, complicating pregnancy|Vomiting due to diseases classified elsewhere, complicating pregnancy +C0269661|T046|PT|O21.9|ICD10|Vomiting of pregnancy, unspecified|Vomiting of pregnancy, unspecified +C0269661|T046|PT|O21.9|ICD10CM|Vomiting of pregnancy, unspecified|Vomiting of pregnancy, unspecified +C0269661|T046|AB|O21.9|ICD10CM|Vomiting of pregnancy, unspecified|Vomiting of pregnancy, unspecified +C3264514|T046|AB|O22|ICD10CM|Venous complications and hemorrhoids in pregnancy|Venous complications and hemorrhoids in pregnancy +C3264514|T046|HT|O22|ICD10CM|Venous complications and hemorrhoids in pregnancy|Venous complications and hemorrhoids in pregnancy +C0495184|T046|HT|O22|ICD10|Venous complications in pregnancy|Venous complications in pregnancy +C2903598|T046|ET|O22.0|ICD10CM|Varicose veins NOS in pregnancy|Varicose veins NOS in pregnancy +C0342068|T046|HT|O22.0|ICD10CM|Varicose veins of lower extremity in pregnancy|Varicose veins of lower extremity in pregnancy +C0342068|T046|AB|O22.0|ICD10CM|Varicose veins of lower extremity in pregnancy|Varicose veins of lower extremity in pregnancy +C0342068|T046|PT|O22.0|ICD10|Varicose veins of lower extremity in pregnancy|Varicose veins of lower extremity in pregnancy +C2903599|T046|AB|O22.00|ICD10CM|Varicose veins of low extrm in pregnancy, unsp trimester|Varicose veins of low extrm in pregnancy, unsp trimester +C2903599|T046|PT|O22.00|ICD10CM|Varicose veins of lower extremity in pregnancy, unspecified trimester|Varicose veins of lower extremity in pregnancy, unspecified trimester +C2903600|T046|AB|O22.01|ICD10CM|Varicose veins of low extrm in pregnancy, first trimester|Varicose veins of low extrm in pregnancy, first trimester +C2903600|T046|PT|O22.01|ICD10CM|Varicose veins of lower extremity in pregnancy, first trimester|Varicose veins of lower extremity in pregnancy, first trimester +C2903601|T046|AB|O22.02|ICD10CM|Varicose veins of low extrm in pregnancy, second trimester|Varicose veins of low extrm in pregnancy, second trimester +C2903601|T046|PT|O22.02|ICD10CM|Varicose veins of lower extremity in pregnancy, second trimester|Varicose veins of lower extremity in pregnancy, second trimester +C2903602|T046|AB|O22.03|ICD10CM|Varicose veins of low extrm in pregnancy, third trimester|Varicose veins of low extrm in pregnancy, third trimester +C2903602|T046|PT|O22.03|ICD10CM|Varicose veins of lower extremity in pregnancy, third trimester|Varicose veins of lower extremity in pregnancy, third trimester +C0340747|T046|PT|O22.1|ICD10|Genital varices in pregnancy|Genital varices in pregnancy +C0340747|T046|HT|O22.1|ICD10CM|Genital varices in pregnancy|Genital varices in pregnancy +C0340747|T046|AB|O22.1|ICD10CM|Genital varices in pregnancy|Genital varices in pregnancy +C0340747|T046|ET|O22.1|ICD10CM|Perineal varices in pregnancy|Perineal varices in pregnancy +C0341961|T020|ET|O22.1|ICD10CM|Vaginal varices in pregnancy|Vaginal varices in pregnancy +C0341961|T020|ET|O22.1|ICD10CM|Vulval varices in pregnancy|Vulval varices in pregnancy +C0340747|T046|AB|O22.10|ICD10CM|Genital varices in pregnancy, unspecified trimester|Genital varices in pregnancy, unspecified trimester +C0340747|T046|PT|O22.10|ICD10CM|Genital varices in pregnancy, unspecified trimester|Genital varices in pregnancy, unspecified trimester +C2903603|T046|AB|O22.11|ICD10CM|Genital varices in pregnancy, first trimester|Genital varices in pregnancy, first trimester +C2903603|T046|PT|O22.11|ICD10CM|Genital varices in pregnancy, first trimester|Genital varices in pregnancy, first trimester +C2903604|T046|AB|O22.12|ICD10CM|Genital varices in pregnancy, second trimester|Genital varices in pregnancy, second trimester +C2903604|T046|PT|O22.12|ICD10CM|Genital varices in pregnancy, second trimester|Genital varices in pregnancy, second trimester +C2903605|T046|AB|O22.13|ICD10CM|Genital varices in pregnancy, third trimester|Genital varices in pregnancy, third trimester +C2903605|T046|PT|O22.13|ICD10CM|Genital varices in pregnancy, third trimester|Genital varices in pregnancy, third trimester +C1443070|T046|ET|O22.2|ICD10CM|Phlebitis in pregnancy NOS|Phlebitis in pregnancy NOS +C0342054|T046|HT|O22.2|ICD10CM|Superficial thrombophlebitis in pregnancy|Superficial thrombophlebitis in pregnancy +C0342054|T046|AB|O22.2|ICD10CM|Superficial thrombophlebitis in pregnancy|Superficial thrombophlebitis in pregnancy +C0342054|T046|PT|O22.2|ICD10|Superficial thrombophlebitis in pregnancy|Superficial thrombophlebitis in pregnancy +C0342054|T046|ET|O22.2|ICD10CM|Thrombophlebitis of legs in pregnancy|Thrombophlebitis of legs in pregnancy +C1443069|T046|ET|O22.2|ICD10CM|Thrombosis in pregnancy NOS|Thrombosis in pregnancy NOS +C0342054|T046|AB|O22.20|ICD10CM|Superficial thrombophlebitis in pregnancy, unsp trimester|Superficial thrombophlebitis in pregnancy, unsp trimester +C0342054|T046|PT|O22.20|ICD10CM|Superficial thrombophlebitis in pregnancy, unspecified trimester|Superficial thrombophlebitis in pregnancy, unspecified trimester +C2903606|T046|AB|O22.21|ICD10CM|Superficial thrombophlebitis in pregnancy, first trimester|Superficial thrombophlebitis in pregnancy, first trimester +C2903606|T046|PT|O22.21|ICD10CM|Superficial thrombophlebitis in pregnancy, first trimester|Superficial thrombophlebitis in pregnancy, first trimester +C2903607|T046|AB|O22.22|ICD10CM|Superficial thrombophlebitis in pregnancy, second trimester|Superficial thrombophlebitis in pregnancy, second trimester +C2903607|T046|PT|O22.22|ICD10CM|Superficial thrombophlebitis in pregnancy, second trimester|Superficial thrombophlebitis in pregnancy, second trimester +C2903608|T046|AB|O22.23|ICD10CM|Superficial thrombophlebitis in pregnancy, third trimester|Superficial thrombophlebitis in pregnancy, third trimester +C2903608|T046|PT|O22.23|ICD10CM|Superficial thrombophlebitis in pregnancy, third trimester|Superficial thrombophlebitis in pregnancy, third trimester +C0342044|T046|HT|O22.3|ICD10CM|Deep phlebothrombosis in pregnancy|Deep phlebothrombosis in pregnancy +C0342044|T046|AB|O22.3|ICD10CM|Deep phlebothrombosis in pregnancy|Deep phlebothrombosis in pregnancy +C0342044|T046|PT|O22.3|ICD10|Deep phlebothrombosis in pregnancy|Deep phlebothrombosis in pregnancy +C0342044|T046|ET|O22.3|ICD10CM|Deep vein thrombosis, antepartum|Deep vein thrombosis, antepartum +C2903609|T046|AB|O22.30|ICD10CM|Deep phlebothrombosis in pregnancy, unspecified trimester|Deep phlebothrombosis in pregnancy, unspecified trimester +C2903609|T046|PT|O22.30|ICD10CM|Deep phlebothrombosis in pregnancy, unspecified trimester|Deep phlebothrombosis in pregnancy, unspecified trimester +C2903610|T046|AB|O22.31|ICD10CM|Deep phlebothrombosis in pregnancy, first trimester|Deep phlebothrombosis in pregnancy, first trimester +C2903610|T046|PT|O22.31|ICD10CM|Deep phlebothrombosis in pregnancy, first trimester|Deep phlebothrombosis in pregnancy, first trimester +C2903611|T046|AB|O22.32|ICD10CM|Deep phlebothrombosis in pregnancy, second trimester|Deep phlebothrombosis in pregnancy, second trimester +C2903611|T046|PT|O22.32|ICD10CM|Deep phlebothrombosis in pregnancy, second trimester|Deep phlebothrombosis in pregnancy, second trimester +C2903612|T046|AB|O22.33|ICD10CM|Deep phlebothrombosis in pregnancy, third trimester|Deep phlebothrombosis in pregnancy, third trimester +C2903612|T046|PT|O22.33|ICD10CM|Deep phlebothrombosis in pregnancy, third trimester|Deep phlebothrombosis in pregnancy, third trimester +C0495187|T046|PT|O22.4|ICD10|Haemorrhoids in pregnancy|Haemorrhoids in pregnancy +C0495187|T046|HT|O22.4|ICD10CM|Hemorrhoids in pregnancy|Hemorrhoids in pregnancy +C0495187|T046|AB|O22.4|ICD10CM|Hemorrhoids in pregnancy|Hemorrhoids in pregnancy +C0495187|T046|PT|O22.4|ICD10AE|Hemorrhoids in pregnancy|Hemorrhoids in pregnancy +C0495187|T046|AB|O22.40|ICD10CM|Hemorrhoids in pregnancy, unspecified trimester|Hemorrhoids in pregnancy, unspecified trimester +C0495187|T046|PT|O22.40|ICD10CM|Hemorrhoids in pregnancy, unspecified trimester|Hemorrhoids in pregnancy, unspecified trimester +C2903613|T046|AB|O22.41|ICD10CM|Hemorrhoids in pregnancy, first trimester|Hemorrhoids in pregnancy, first trimester +C2903613|T046|PT|O22.41|ICD10CM|Hemorrhoids in pregnancy, first trimester|Hemorrhoids in pregnancy, first trimester +C2903614|T046|AB|O22.42|ICD10CM|Hemorrhoids in pregnancy, second trimester|Hemorrhoids in pregnancy, second trimester +C2903614|T046|PT|O22.42|ICD10CM|Hemorrhoids in pregnancy, second trimester|Hemorrhoids in pregnancy, second trimester +C2903615|T046|AB|O22.43|ICD10CM|Hemorrhoids in pregnancy, third trimester|Hemorrhoids in pregnancy, third trimester +C2903615|T046|PT|O22.43|ICD10CM|Hemorrhoids in pregnancy, third trimester|Hemorrhoids in pregnancy, third trimester +C0348786|T046|HT|O22.5|ICD10CM|Cerebral venous thrombosis in pregnancy|Cerebral venous thrombosis in pregnancy +C0348786|T046|AB|O22.5|ICD10CM|Cerebral venous thrombosis in pregnancy|Cerebral venous thrombosis in pregnancy +C0348786|T046|PT|O22.5|ICD10|Cerebral venous thrombosis in pregnancy|Cerebral venous thrombosis in pregnancy +C0348786|T046|ET|O22.5|ICD10CM|Cerebrovenous sinus thrombosis in pregnancy|Cerebrovenous sinus thrombosis in pregnancy +C0348786|T046|AB|O22.50|ICD10CM|Cerebral venous thrombosis in pregnancy, unsp trimester|Cerebral venous thrombosis in pregnancy, unsp trimester +C0348786|T046|PT|O22.50|ICD10CM|Cerebral venous thrombosis in pregnancy, unspecified trimester|Cerebral venous thrombosis in pregnancy, unspecified trimester +C2903616|T046|AB|O22.51|ICD10CM|Cerebral venous thrombosis in pregnancy, first trimester|Cerebral venous thrombosis in pregnancy, first trimester +C2903616|T046|PT|O22.51|ICD10CM|Cerebral venous thrombosis in pregnancy, first trimester|Cerebral venous thrombosis in pregnancy, first trimester +C2903617|T046|AB|O22.52|ICD10CM|Cerebral venous thrombosis in pregnancy, second trimester|Cerebral venous thrombosis in pregnancy, second trimester +C2903617|T046|PT|O22.52|ICD10CM|Cerebral venous thrombosis in pregnancy, second trimester|Cerebral venous thrombosis in pregnancy, second trimester +C2903618|T046|AB|O22.53|ICD10CM|Cerebral venous thrombosis in pregnancy, third trimester|Cerebral venous thrombosis in pregnancy, third trimester +C2903618|T046|PT|O22.53|ICD10CM|Cerebral venous thrombosis in pregnancy, third trimester|Cerebral venous thrombosis in pregnancy, third trimester +C0477814|T046|HT|O22.8|ICD10CM|Other venous complications in pregnancy|Other venous complications in pregnancy +C0477814|T046|AB|O22.8|ICD10CM|Other venous complications in pregnancy|Other venous complications in pregnancy +C0477814|T046|PT|O22.8|ICD10|Other venous complications in pregnancy|Other venous complications in pregnancy +C0477814|T046|HT|O22.8X|ICD10CM|Other venous complications in pregnancy|Other venous complications in pregnancy +C0477814|T046|AB|O22.8X|ICD10CM|Other venous complications in pregnancy|Other venous complications in pregnancy +C2903619|T046|AB|O22.8X1|ICD10CM|Other venous complications in pregnancy, first trimester|Other venous complications in pregnancy, first trimester +C2903619|T046|PT|O22.8X1|ICD10CM|Other venous complications in pregnancy, first trimester|Other venous complications in pregnancy, first trimester +C2903620|T046|AB|O22.8X2|ICD10CM|Other venous complications in pregnancy, second trimester|Other venous complications in pregnancy, second trimester +C2903620|T046|PT|O22.8X2|ICD10CM|Other venous complications in pregnancy, second trimester|Other venous complications in pregnancy, second trimester +C2903621|T046|AB|O22.8X3|ICD10CM|Other venous complications in pregnancy, third trimester|Other venous complications in pregnancy, third trimester +C2903621|T046|PT|O22.8X3|ICD10CM|Other venous complications in pregnancy, third trimester|Other venous complications in pregnancy, third trimester +C2903622|T046|AB|O22.8X9|ICD10CM|Other venous complications in pregnancy, unsp trimester|Other venous complications in pregnancy, unsp trimester +C2903622|T046|PT|O22.8X9|ICD10CM|Other venous complications in pregnancy, unspecified trimester|Other venous complications in pregnancy, unspecified trimester +C1443070|T046|ET|O22.9|ICD10CM|Gestational phlebitis NOS|Gestational phlebitis NOS +C1443070|T046|ET|O22.9|ICD10CM|Gestational phlebopathy NOS|Gestational phlebopathy NOS +C1443069|T046|ET|O22.9|ICD10CM|Gestational thrombosis NOS|Gestational thrombosis NOS +C0495184|T046|PT|O22.9|ICD10|Venous complication in pregnancy, unspecified|Venous complication in pregnancy, unspecified +C0495184|T046|HT|O22.9|ICD10CM|Venous complication in pregnancy, unspecified|Venous complication in pregnancy, unspecified +C0495184|T046|AB|O22.9|ICD10CM|Venous complication in pregnancy, unspecified|Venous complication in pregnancy, unspecified +C2903623|T046|AB|O22.90|ICD10CM|Venous complication in pregnancy, unsp, unsp trimester|Venous complication in pregnancy, unsp, unsp trimester +C2903623|T046|PT|O22.90|ICD10CM|Venous complication in pregnancy, unspecified, unspecified trimester|Venous complication in pregnancy, unspecified, unspecified trimester +C2903624|T046|AB|O22.91|ICD10CM|Venous complication in pregnancy, unsp, first trimester|Venous complication in pregnancy, unsp, first trimester +C2903624|T046|PT|O22.91|ICD10CM|Venous complication in pregnancy, unspecified, first trimester|Venous complication in pregnancy, unspecified, first trimester +C2903625|T046|AB|O22.92|ICD10CM|Venous complication in pregnancy, unsp, second trimester|Venous complication in pregnancy, unsp, second trimester +C2903625|T046|PT|O22.92|ICD10CM|Venous complication in pregnancy, unspecified, second trimester|Venous complication in pregnancy, unspecified, second trimester +C2903626|T046|AB|O22.93|ICD10CM|Venous complication in pregnancy, unsp, third trimester|Venous complication in pregnancy, unsp, third trimester +C2903626|T046|PT|O22.93|ICD10CM|Venous complication in pregnancy, unspecified, third trimester|Venous complication in pregnancy, unspecified, third trimester +C0156756|T046|HT|O23|ICD10CM|Infections of genitourinary tract in pregnancy|Infections of genitourinary tract in pregnancy +C0156756|T046|AB|O23|ICD10CM|Infections of genitourinary tract in pregnancy|Infections of genitourinary tract in pregnancy +C0156756|T046|HT|O23|ICD10|Infections of genitourinary tract in pregnancy|Infections of genitourinary tract in pregnancy +C0451717|T046|PT|O23.0|ICD10|Infections of kidney in pregnancy|Infections of kidney in pregnancy +C0451717|T046|HT|O23.0|ICD10CM|Infections of kidney in pregnancy|Infections of kidney in pregnancy +C0451717|T046|AB|O23.0|ICD10CM|Infections of kidney in pregnancy|Infections of kidney in pregnancy +C0747827|T047|ET|O23.0|ICD10CM|Pyelonephritis in pregnancy|Pyelonephritis in pregnancy +C0451717|T046|AB|O23.00|ICD10CM|Infections of kidney in pregnancy, unspecified trimester|Infections of kidney in pregnancy, unspecified trimester +C0451717|T046|PT|O23.00|ICD10CM|Infections of kidney in pregnancy, unspecified trimester|Infections of kidney in pregnancy, unspecified trimester +C2903627|T046|AB|O23.01|ICD10CM|Infections of kidney in pregnancy, first trimester|Infections of kidney in pregnancy, first trimester +C2903627|T046|PT|O23.01|ICD10CM|Infections of kidney in pregnancy, first trimester|Infections of kidney in pregnancy, first trimester +C2903628|T046|AB|O23.02|ICD10CM|Infections of kidney in pregnancy, second trimester|Infections of kidney in pregnancy, second trimester +C2903628|T046|PT|O23.02|ICD10CM|Infections of kidney in pregnancy, second trimester|Infections of kidney in pregnancy, second trimester +C2903629|T046|AB|O23.03|ICD10CM|Infections of kidney in pregnancy, third trimester|Infections of kidney in pregnancy, third trimester +C2903629|T046|PT|O23.03|ICD10CM|Infections of kidney in pregnancy, third trimester|Infections of kidney in pregnancy, third trimester +C0452164|T046|HT|O23.1|ICD10CM|Infections of bladder in pregnancy|Infections of bladder in pregnancy +C0452164|T046|AB|O23.1|ICD10CM|Infections of bladder in pregnancy|Infections of bladder in pregnancy +C0452164|T046|PT|O23.1|ICD10|Infections of bladder in pregnancy|Infections of bladder in pregnancy +C0452164|T046|AB|O23.10|ICD10CM|Infections of bladder in pregnancy, unspecified trimester|Infections of bladder in pregnancy, unspecified trimester +C0452164|T046|PT|O23.10|ICD10CM|Infections of bladder in pregnancy, unspecified trimester|Infections of bladder in pregnancy, unspecified trimester +C2903630|T047|AB|O23.11|ICD10CM|Infections of bladder in pregnancy, first trimester|Infections of bladder in pregnancy, first trimester +C2903630|T047|PT|O23.11|ICD10CM|Infections of bladder in pregnancy, first trimester|Infections of bladder in pregnancy, first trimester +C2903631|T046|AB|O23.12|ICD10CM|Infections of bladder in pregnancy, second trimester|Infections of bladder in pregnancy, second trimester +C2903631|T046|PT|O23.12|ICD10CM|Infections of bladder in pregnancy, second trimester|Infections of bladder in pregnancy, second trimester +C2903632|T046|AB|O23.13|ICD10CM|Infections of bladder in pregnancy, third trimester|Infections of bladder in pregnancy, third trimester +C2903632|T046|PT|O23.13|ICD10CM|Infections of bladder in pregnancy, third trimester|Infections of bladder in pregnancy, third trimester +C0452165|T046|HT|O23.2|ICD10CM|Infections of urethra in pregnancy|Infections of urethra in pregnancy +C0452165|T046|AB|O23.2|ICD10CM|Infections of urethra in pregnancy|Infections of urethra in pregnancy +C0452165|T046|PT|O23.2|ICD10|Infections of urethra in pregnancy|Infections of urethra in pregnancy +C0452165|T046|AB|O23.20|ICD10CM|Infections of urethra in pregnancy, unspecified trimester|Infections of urethra in pregnancy, unspecified trimester +C0452165|T046|PT|O23.20|ICD10CM|Infections of urethra in pregnancy, unspecified trimester|Infections of urethra in pregnancy, unspecified trimester +C2903633|T046|AB|O23.21|ICD10CM|Infections of urethra in pregnancy, first trimester|Infections of urethra in pregnancy, first trimester +C2903633|T046|PT|O23.21|ICD10CM|Infections of urethra in pregnancy, first trimester|Infections of urethra in pregnancy, first trimester +C2903634|T046|AB|O23.22|ICD10CM|Infections of urethra in pregnancy, second trimester|Infections of urethra in pregnancy, second trimester +C2903634|T046|PT|O23.22|ICD10CM|Infections of urethra in pregnancy, second trimester|Infections of urethra in pregnancy, second trimester +C2903635|T046|AB|O23.23|ICD10CM|Infections of urethra in pregnancy, third trimester|Infections of urethra in pregnancy, third trimester +C2903635|T046|PT|O23.23|ICD10CM|Infections of urethra in pregnancy, third trimester|Infections of urethra in pregnancy, third trimester +C0477815|T046|HT|O23.3|ICD10CM|Infections of other parts of urinary tract in pregnancy|Infections of other parts of urinary tract in pregnancy +C0477815|T046|AB|O23.3|ICD10CM|Infections of other parts of urinary tract in pregnancy|Infections of other parts of urinary tract in pregnancy +C0477815|T046|PT|O23.3|ICD10|Infections of other parts of urinary tract in pregnancy|Infections of other parts of urinary tract in pregnancy +C0477815|T046|PT|O23.30|ICD10CM|Infections of other parts of urinary tract in pregnancy, unspecified trimester|Infections of other parts of urinary tract in pregnancy, unspecified trimester +C0477815|T046|AB|O23.30|ICD10CM|Infections of prt urinary tract in pregnancy, unsp trimester|Infections of prt urinary tract in pregnancy, unsp trimester +C2903636|T046|AB|O23.31|ICD10CM|Infect of prt urinary tract in pregnancy, first trimester|Infect of prt urinary tract in pregnancy, first trimester +C2903636|T046|PT|O23.31|ICD10CM|Infections of other parts of urinary tract in pregnancy, first trimester|Infections of other parts of urinary tract in pregnancy, first trimester +C2903637|T046|AB|O23.32|ICD10CM|Infect of prt urinary tract in pregnancy, second trimester|Infect of prt urinary tract in pregnancy, second trimester +C2903637|T046|PT|O23.32|ICD10CM|Infections of other parts of urinary tract in pregnancy, second trimester|Infections of other parts of urinary tract in pregnancy, second trimester +C2903638|T046|AB|O23.33|ICD10CM|Infect of prt urinary tract in pregnancy, third trimester|Infect of prt urinary tract in pregnancy, third trimester +C2903638|T046|PT|O23.33|ICD10CM|Infections of other parts of urinary tract in pregnancy, third trimester|Infections of other parts of urinary tract in pregnancy, third trimester +C0495188|T046|PT|O23.4|ICD10|Unspecified infection of urinary tract in pregnancy|Unspecified infection of urinary tract in pregnancy +C0495188|T046|HT|O23.4|ICD10CM|Unspecified infection of urinary tract in pregnancy|Unspecified infection of urinary tract in pregnancy +C0495188|T046|AB|O23.4|ICD10CM|Unspecified infection of urinary tract in pregnancy|Unspecified infection of urinary tract in pregnancy +C0495188|T046|AB|O23.40|ICD10CM|Unsp infection of urinary tract in pregnancy, unsp trimester|Unsp infection of urinary tract in pregnancy, unsp trimester +C0495188|T046|PT|O23.40|ICD10CM|Unspecified infection of urinary tract in pregnancy, unspecified trimester|Unspecified infection of urinary tract in pregnancy, unspecified trimester +C2903639|T046|AB|O23.41|ICD10CM|Unsp infct of urinary tract in pregnancy, first trimester|Unsp infct of urinary tract in pregnancy, first trimester +C2903639|T046|PT|O23.41|ICD10CM|Unspecified infection of urinary tract in pregnancy, first trimester|Unspecified infection of urinary tract in pregnancy, first trimester +C2903640|T046|AB|O23.42|ICD10CM|Unsp infct of urinary tract in pregnancy, second trimester|Unsp infct of urinary tract in pregnancy, second trimester +C2903640|T046|PT|O23.42|ICD10CM|Unspecified infection of urinary tract in pregnancy, second trimester|Unspecified infection of urinary tract in pregnancy, second trimester +C2903641|T046|AB|O23.43|ICD10CM|Unsp infct of urinary tract in pregnancy, third trimester|Unsp infct of urinary tract in pregnancy, third trimester +C2903641|T046|PT|O23.43|ICD10CM|Unspecified infection of urinary tract in pregnancy, third trimester|Unspecified infection of urinary tract in pregnancy, third trimester +C0451799|T046|PT|O23.5|ICD10|Infections of the genital tract in pregnancy|Infections of the genital tract in pregnancy +C0451799|T046|HT|O23.5|ICD10CM|Infections of the genital tract in pregnancy|Infections of the genital tract in pregnancy +C0451799|T046|AB|O23.5|ICD10CM|Infections of the genital tract in pregnancy|Infections of the genital tract in pregnancy +C2903642|T046|AB|O23.51|ICD10CM|Infection of cervix in pregnancy|Infection of cervix in pregnancy +C2903642|T046|HT|O23.51|ICD10CM|Infection of cervix in pregnancy|Infection of cervix in pregnancy +C2903643|T046|AB|O23.511|ICD10CM|Infections of cervix in pregnancy, first trimester|Infections of cervix in pregnancy, first trimester +C2903643|T046|PT|O23.511|ICD10CM|Infections of cervix in pregnancy, first trimester|Infections of cervix in pregnancy, first trimester +C2903644|T046|AB|O23.512|ICD10CM|Infections of cervix in pregnancy, second trimester|Infections of cervix in pregnancy, second trimester +C2903644|T046|PT|O23.512|ICD10CM|Infections of cervix in pregnancy, second trimester|Infections of cervix in pregnancy, second trimester +C2903645|T046|AB|O23.513|ICD10CM|Infections of cervix in pregnancy, third trimester|Infections of cervix in pregnancy, third trimester +C2903645|T046|PT|O23.513|ICD10CM|Infections of cervix in pregnancy, third trimester|Infections of cervix in pregnancy, third trimester +C2903642|T046|AB|O23.519|ICD10CM|Infections of cervix in pregnancy, unspecified trimester|Infections of cervix in pregnancy, unspecified trimester +C2903642|T046|PT|O23.519|ICD10CM|Infections of cervix in pregnancy, unspecified trimester|Infections of cervix in pregnancy, unspecified trimester +C1411664|T046|ET|O23.52|ICD10CM|Oophoritis in pregnancy|Oophoritis in pregnancy +C1411706|T046|ET|O23.52|ICD10CM|Salpingitis in pregnancy|Salpingitis in pregnancy +C1411707|T047|HT|O23.52|ICD10CM|Salpingo-oophoritis in pregnancy|Salpingo-oophoritis in pregnancy +C1411707|T047|AB|O23.52|ICD10CM|Salpingo-oophoritis in pregnancy|Salpingo-oophoritis in pregnancy +C2903646|T046|AB|O23.521|ICD10CM|Salpingo-oophoritis in pregnancy, first trimester|Salpingo-oophoritis in pregnancy, first trimester +C2903646|T046|PT|O23.521|ICD10CM|Salpingo-oophoritis in pregnancy, first trimester|Salpingo-oophoritis in pregnancy, first trimester +C2903647|T046|AB|O23.522|ICD10CM|Salpingo-oophoritis in pregnancy, second trimester|Salpingo-oophoritis in pregnancy, second trimester +C2903647|T046|PT|O23.522|ICD10CM|Salpingo-oophoritis in pregnancy, second trimester|Salpingo-oophoritis in pregnancy, second trimester +C2903648|T046|AB|O23.523|ICD10CM|Salpingo-oophoritis in pregnancy, third trimester|Salpingo-oophoritis in pregnancy, third trimester +C2903648|T046|PT|O23.523|ICD10CM|Salpingo-oophoritis in pregnancy, third trimester|Salpingo-oophoritis in pregnancy, third trimester +C1411707|T047|AB|O23.529|ICD10CM|Salpingo-oophoritis in pregnancy, unspecified trimester|Salpingo-oophoritis in pregnancy, unspecified trimester +C1411707|T047|PT|O23.529|ICD10CM|Salpingo-oophoritis in pregnancy, unspecified trimester|Salpingo-oophoritis in pregnancy, unspecified trimester +C2903649|T046|AB|O23.59|ICD10CM|Infection of other part of genital tract in pregnancy|Infection of other part of genital tract in pregnancy +C2903649|T046|HT|O23.59|ICD10CM|Infection of other part of genital tract in pregnancy|Infection of other part of genital tract in pregnancy +C2903650|T046|PT|O23.591|ICD10CM|Infection of other part of genital tract in pregnancy, first trimester|Infection of other part of genital tract in pregnancy, first trimester +C2903650|T046|AB|O23.591|ICD10CM|Infection oth prt genitl trct in pregnancy, first trimester|Infection oth prt genitl trct in pregnancy, first trimester +C2903651|T046|PT|O23.592|ICD10CM|Infection of other part of genital tract in pregnancy, second trimester|Infection of other part of genital tract in pregnancy, second trimester +C2903651|T046|AB|O23.592|ICD10CM|Infection oth prt genitl trct in pregnancy, second trimester|Infection oth prt genitl trct in pregnancy, second trimester +C2903652|T046|PT|O23.593|ICD10CM|Infection of other part of genital tract in pregnancy, third trimester|Infection of other part of genital tract in pregnancy, third trimester +C2903652|T046|AB|O23.593|ICD10CM|Infection oth prt genitl trct in pregnancy, third trimester|Infection oth prt genitl trct in pregnancy, third trimester +C2903649|T046|PT|O23.599|ICD10CM|Infection of other part of genital tract in pregnancy, unspecified trimester|Infection of other part of genital tract in pregnancy, unspecified trimester +C2903649|T046|AB|O23.599|ICD10CM|Infection oth prt genital tract in pregnancy, unsp trimester|Infection oth prt genital tract in pregnancy, unsp trimester +C0156756|T046|ET|O23.9|ICD10CM|Genitourinary tract infection in pregnancy NOS|Genitourinary tract infection in pregnancy NOS +C0477816|T047|PT|O23.9|ICD10|Other and unspecified genitourinary tract infection in pregnancy|Other and unspecified genitourinary tract infection in pregnancy +C0156756|T046|AB|O23.9|ICD10CM|Unspecified genitourinary tract infection in pregnancy|Unspecified genitourinary tract infection in pregnancy +C0156756|T046|HT|O23.9|ICD10CM|Unspecified genitourinary tract infection in pregnancy|Unspecified genitourinary tract infection in pregnancy +C0156756|T046|AB|O23.90|ICD10CM|Unsp GU tract infection in pregnancy, unsp trimester|Unsp GU tract infection in pregnancy, unsp trimester +C0156756|T046|PT|O23.90|ICD10CM|Unspecified genitourinary tract infection in pregnancy, unspecified trimester|Unspecified genitourinary tract infection in pregnancy, unspecified trimester +C2903653|T046|AB|O23.91|ICD10CM|Unsp GU tract infection in pregnancy, first trimester|Unsp GU tract infection in pregnancy, first trimester +C2903653|T046|PT|O23.91|ICD10CM|Unspecified genitourinary tract infection in pregnancy, first trimester|Unspecified genitourinary tract infection in pregnancy, first trimester +C2903654|T046|AB|O23.92|ICD10CM|Unsp GU tract infection in pregnancy, second trimester|Unsp GU tract infection in pregnancy, second trimester +C2903654|T046|PT|O23.92|ICD10CM|Unspecified genitourinary tract infection in pregnancy, second trimester|Unspecified genitourinary tract infection in pregnancy, second trimester +C2903655|T046|AB|O23.93|ICD10CM|Unsp GU tract infection in pregnancy, third trimester|Unsp GU tract infection in pregnancy, third trimester +C2903655|T046|PT|O23.93|ICD10CM|Unspecified genitourinary tract infection in pregnancy, third trimester|Unspecified genitourinary tract infection in pregnancy, third trimester +C0341893|T047|AB|O24|ICD10CM|Diabetes in pregnancy, childbirth, and the puerperium|Diabetes in pregnancy, childbirth, and the puerperium +C0032969|T047|HT|O24|ICD10|Diabetes mellitus in pregnancy|Diabetes mellitus in pregnancy +C0341893|T047|HT|O24|ICD10CM|Diabetes mellitus in pregnancy, childbirth, and the puerperium|Diabetes mellitus in pregnancy, childbirth, and the puerperium +C2903656|T047|ET|O24.0|ICD10CM|Juvenile onset diabetes mellitus, in pregnancy, childbirth and the puerperium|Juvenile onset diabetes mellitus, in pregnancy, childbirth and the puerperium +C2903657|T046|ET|O24.0|ICD10CM|Ketosis-prone diabetes mellitus in pregnancy, childbirth and the puerperium|Ketosis-prone diabetes mellitus in pregnancy, childbirth and the puerperium +C2903658|T047|AB|O24.0|ICD10CM|Pre-exist type 1 diabetes, in preg, chldbrth and the puerp|Pre-exist type 1 diabetes, in preg, chldbrth and the puerp +C0851207|T047|PT|O24.0|ICD10|Pre-existing diabetes mellitus, insulin-dependent|Pre-existing diabetes mellitus, insulin-dependent +C2903658|T047|HT|O24.0|ICD10CM|Pre-existing type 1 diabetes mellitus, in pregnancy, childbirth and the puerperium|Pre-existing type 1 diabetes mellitus, in pregnancy, childbirth and the puerperium +C0851207|T047|AB|O24.01|ICD10CM|Pre-existing type 1 diabetes mellitus, in pregnancy|Pre-existing type 1 diabetes mellitus, in pregnancy +C0851207|T047|HT|O24.01|ICD10CM|Pre-existing type 1 diabetes mellitus, in pregnancy|Pre-existing type 1 diabetes mellitus, in pregnancy +C2903659|T047|PT|O24.011|ICD10CM|Pre-existing type 1 diabetes mellitus, in pregnancy, first trimester|Pre-existing type 1 diabetes mellitus, in pregnancy, first trimester +C2903659|T047|AB|O24.011|ICD10CM|Pre-existing type 1 diabetes, in pregnancy, first trimester|Pre-existing type 1 diabetes, in pregnancy, first trimester +C2903660|T047|PT|O24.012|ICD10CM|Pre-existing type 1 diabetes mellitus, in pregnancy, second trimester|Pre-existing type 1 diabetes mellitus, in pregnancy, second trimester +C2903660|T047|AB|O24.012|ICD10CM|Pre-existing type 1 diabetes, in pregnancy, second trimester|Pre-existing type 1 diabetes, in pregnancy, second trimester +C2903661|T047|PT|O24.013|ICD10CM|Pre-existing type 1 diabetes mellitus, in pregnancy, third trimester|Pre-existing type 1 diabetes mellitus, in pregnancy, third trimester +C2903661|T047|AB|O24.013|ICD10CM|Pre-existing type 1 diabetes, in pregnancy, third trimester|Pre-existing type 1 diabetes, in pregnancy, third trimester +C0851207|T047|AB|O24.019|ICD10CM|Pre-exist type 1 diabetes, in pregnancy, unsp trimester|Pre-exist type 1 diabetes, in pregnancy, unsp trimester +C0851207|T047|PT|O24.019|ICD10CM|Pre-existing type 1 diabetes mellitus, in pregnancy, unspecified trimester|Pre-existing type 1 diabetes mellitus, in pregnancy, unspecified trimester +C2903662|T047|AB|O24.02|ICD10CM|Pre-existing type 1 diabetes mellitus, in childbirth|Pre-existing type 1 diabetes mellitus, in childbirth +C2903662|T047|PT|O24.02|ICD10CM|Pre-existing type 1 diabetes mellitus, in childbirth|Pre-existing type 1 diabetes mellitus, in childbirth +C2903663|T047|AB|O24.03|ICD10CM|Pre-existing type 1 diabetes mellitus, in the puerperium|Pre-existing type 1 diabetes mellitus, in the puerperium +C2903663|T047|PT|O24.03|ICD10CM|Pre-existing type 1 diabetes mellitus, in the puerperium|Pre-existing type 1 diabetes mellitus, in the puerperium +C2903664|T046|ET|O24.1|ICD10CM|Insulin-resistant diabetes mellitus in pregnancy, childbirth and the puerperium|Insulin-resistant diabetes mellitus in pregnancy, childbirth and the puerperium +C2903665|T047|AB|O24.1|ICD10CM|Pre-exist type 2 diabetes, in preg, chldbrth and the puerp|Pre-exist type 2 diabetes, in preg, chldbrth and the puerp +C0851208|T047|PT|O24.1|ICD10|Pre-existing diabetes mellitus, non-insulin-dependent|Pre-existing diabetes mellitus, non-insulin-dependent +C2903665|T047|HT|O24.1|ICD10CM|Pre-existing type 2 diabetes mellitus, in pregnancy, childbirth and the puerperium|Pre-existing type 2 diabetes mellitus, in pregnancy, childbirth and the puerperium +C0851208|T047|AB|O24.11|ICD10CM|Pre-existing type 2 diabetes mellitus, in pregnancy|Pre-existing type 2 diabetes mellitus, in pregnancy +C0851208|T047|HT|O24.11|ICD10CM|Pre-existing type 2 diabetes mellitus, in pregnancy|Pre-existing type 2 diabetes mellitus, in pregnancy +C2903666|T047|PT|O24.111|ICD10CM|Pre-existing type 2 diabetes mellitus, in pregnancy, first trimester|Pre-existing type 2 diabetes mellitus, in pregnancy, first trimester +C2903666|T047|AB|O24.111|ICD10CM|Pre-existing type 2 diabetes, in pregnancy, first trimester|Pre-existing type 2 diabetes, in pregnancy, first trimester +C2903667|T047|PT|O24.112|ICD10CM|Pre-existing type 2 diabetes mellitus, in pregnancy, second trimester|Pre-existing type 2 diabetes mellitus, in pregnancy, second trimester +C2903667|T047|AB|O24.112|ICD10CM|Pre-existing type 2 diabetes, in pregnancy, second trimester|Pre-existing type 2 diabetes, in pregnancy, second trimester +C2903668|T047|PT|O24.113|ICD10CM|Pre-existing type 2 diabetes mellitus, in pregnancy, third trimester|Pre-existing type 2 diabetes mellitus, in pregnancy, third trimester +C2903668|T047|AB|O24.113|ICD10CM|Pre-existing type 2 diabetes, in pregnancy, third trimester|Pre-existing type 2 diabetes, in pregnancy, third trimester +C0851208|T047|AB|O24.119|ICD10CM|Pre-exist type 2 diabetes, in pregnancy, unsp trimester|Pre-exist type 2 diabetes, in pregnancy, unsp trimester +C0851208|T047|PT|O24.119|ICD10CM|Pre-existing type 2 diabetes mellitus, in pregnancy, unspecified trimester|Pre-existing type 2 diabetes mellitus, in pregnancy, unspecified trimester +C2903669|T047|AB|O24.12|ICD10CM|Pre-existing type 2 diabetes mellitus, in childbirth|Pre-existing type 2 diabetes mellitus, in childbirth +C2903669|T047|PT|O24.12|ICD10CM|Pre-existing type 2 diabetes mellitus, in childbirth|Pre-existing type 2 diabetes mellitus, in childbirth +C2903670|T047|AB|O24.13|ICD10CM|Pre-existing type 2 diabetes mellitus, in the puerperium|Pre-existing type 2 diabetes mellitus, in the puerperium +C2903670|T047|PT|O24.13|ICD10CM|Pre-existing type 2 diabetes mellitus, in the puerperium|Pre-existing type 2 diabetes mellitus, in the puerperium +C0851209|T047|PT|O24.2|ICD10|Pre-existing malnutrition-related diabetes mellitus|Pre-existing malnutrition-related diabetes mellitus +C0851217|T047|PT|O24.3|ICD10|Pre-existing diabetes mellitus, unspecified|Pre-existing diabetes mellitus, unspecified +C2903671|T047|AB|O24.3|ICD10CM|Unsp pre-exist diabetes in pregnancy, chldbrth and the puerp|Unsp pre-exist diabetes in pregnancy, chldbrth and the puerp +C2903671|T047|HT|O24.3|ICD10CM|Unspecified pre-existing diabetes mellitus in pregnancy, childbirth and the puerperium|Unspecified pre-existing diabetes mellitus in pregnancy, childbirth and the puerperium +C0851217|T047|AB|O24.31|ICD10CM|Unspecified pre-existing diabetes mellitus in pregnancy|Unspecified pre-existing diabetes mellitus in pregnancy +C0851217|T047|HT|O24.31|ICD10CM|Unspecified pre-existing diabetes mellitus in pregnancy|Unspecified pre-existing diabetes mellitus in pregnancy +C2903672|T047|AB|O24.311|ICD10CM|Unsp pre-existing diabetes in pregnancy, first trimester|Unsp pre-existing diabetes in pregnancy, first trimester +C2903672|T047|PT|O24.311|ICD10CM|Unspecified pre-existing diabetes mellitus in pregnancy, first trimester|Unspecified pre-existing diabetes mellitus in pregnancy, first trimester +C2903673|T047|AB|O24.312|ICD10CM|Unsp pre-existing diabetes in pregnancy, second trimester|Unsp pre-existing diabetes in pregnancy, second trimester +C2903673|T047|PT|O24.312|ICD10CM|Unspecified pre-existing diabetes mellitus in pregnancy, second trimester|Unspecified pre-existing diabetes mellitus in pregnancy, second trimester +C2903674|T047|AB|O24.313|ICD10CM|Unsp pre-existing diabetes in pregnancy, third trimester|Unsp pre-existing diabetes in pregnancy, third trimester +C2903674|T047|PT|O24.313|ICD10CM|Unspecified pre-existing diabetes mellitus in pregnancy, third trimester|Unspecified pre-existing diabetes mellitus in pregnancy, third trimester +C0851217|T047|AB|O24.319|ICD10CM|Unsp pre-existing diabetes in pregnancy, unsp trimester|Unsp pre-existing diabetes in pregnancy, unsp trimester +C0851217|T047|PT|O24.319|ICD10CM|Unspecified pre-existing diabetes mellitus in pregnancy, unspecified trimester|Unspecified pre-existing diabetes mellitus in pregnancy, unspecified trimester +C2903675|T047|AB|O24.32|ICD10CM|Unspecified pre-existing diabetes mellitus in childbirth|Unspecified pre-existing diabetes mellitus in childbirth +C2903675|T047|PT|O24.32|ICD10CM|Unspecified pre-existing diabetes mellitus in childbirth|Unspecified pre-existing diabetes mellitus in childbirth +C2903676|T047|AB|O24.33|ICD10CM|Unspecified pre-existing diabetes mellitus in the puerperium|Unspecified pre-existing diabetes mellitus in the puerperium +C2903676|T047|PT|O24.33|ICD10CM|Unspecified pre-existing diabetes mellitus in the puerperium|Unspecified pre-existing diabetes mellitus in the puerperium +C0085207|T047|PT|O24.4|ICD10|Diabetes mellitus arising in pregnancy|Diabetes mellitus arising in pregnancy +C0085207|T047|ET|O24.4|ICD10CM|Diabetes mellitus arising in pregnancy|Diabetes mellitus arising in pregnancy +C0085207|T047|HT|O24.4|ICD10CM|Gestational diabetes mellitus|Gestational diabetes mellitus +C0085207|T047|AB|O24.4|ICD10CM|Gestational diabetes mellitus|Gestational diabetes mellitus +C0085207|T047|ET|O24.4|ICD10CM|Gestational diabetes mellitus NOS|Gestational diabetes mellitus NOS +C2903677|T046|HT|O24.41|ICD10CM|Gestational diabetes mellitus in pregnancy|Gestational diabetes mellitus in pregnancy +C2903677|T046|AB|O24.41|ICD10CM|Gestational diabetes mellitus in pregnancy|Gestational diabetes mellitus in pregnancy +C2903678|T033|AB|O24.410|ICD10CM|Gestational diabetes mellitus in pregnancy, diet controlled|Gestational diabetes mellitus in pregnancy, diet controlled +C2903678|T033|PT|O24.410|ICD10CM|Gestational diabetes mellitus in pregnancy, diet controlled|Gestational diabetes mellitus in pregnancy, diet controlled +C2903679|T033|AB|O24.414|ICD10CM|Gestational diabetes in pregnancy, insulin controlled|Gestational diabetes in pregnancy, insulin controlled +C2903679|T033|PT|O24.414|ICD10CM|Gestational diabetes mellitus in pregnancy, insulin controlled|Gestational diabetes mellitus in pregnancy, insulin controlled +C4269003|T046|ET|O24.415|ICD10CM|Gestational diabetes mellitus in pregnancy, controlled by oral antidiabetic drugs|Gestational diabetes mellitus in pregnancy, controlled by oral antidiabetic drugs +C4269003|T046|PT|O24.415|ICD10CM|Gestational diabetes mellitus in pregnancy, controlled by oral hypoglycemic drugs|Gestational diabetes mellitus in pregnancy, controlled by oral hypoglycemic drugs +C4269003|T046|AB|O24.415|ICD10CM|Gestatnl diabetes in preg, ctrl by oral hypoglycemic drugs|Gestatnl diabetes in preg, ctrl by oral hypoglycemic drugs +C2903680|T046|AB|O24.419|ICD10CM|Gestational diabetes mellitus in pregnancy, unsp control|Gestational diabetes mellitus in pregnancy, unsp control +C2903680|T046|PT|O24.419|ICD10CM|Gestational diabetes mellitus in pregnancy, unspecified control|Gestational diabetes mellitus in pregnancy, unspecified control +C2903681|T047|HT|O24.42|ICD10CM|Gestational diabetes mellitus in childbirth|Gestational diabetes mellitus in childbirth +C2903681|T047|AB|O24.42|ICD10CM|Gestational diabetes mellitus in childbirth|Gestational diabetes mellitus in childbirth +C2903682|T033|AB|O24.420|ICD10CM|Gestational diabetes mellitus in childbirth, diet controlled|Gestational diabetes mellitus in childbirth, diet controlled +C2903682|T033|PT|O24.420|ICD10CM|Gestational diabetes mellitus in childbirth, diet controlled|Gestational diabetes mellitus in childbirth, diet controlled +C2903683|T033|AB|O24.424|ICD10CM|Gestational diabetes in childbirth, insulin controlled|Gestational diabetes in childbirth, insulin controlled +C2903683|T033|PT|O24.424|ICD10CM|Gestational diabetes mellitus in childbirth, insulin controlled|Gestational diabetes mellitus in childbirth, insulin controlled +C4269004|T046|ET|O24.425|ICD10CM|Gestational diabetes mellitus in childbirth, controlled by oral antidiabetic drugs|Gestational diabetes mellitus in childbirth, controlled by oral antidiabetic drugs +C4269004|T046|PT|O24.425|ICD10CM|Gestational diabetes mellitus in childbirth, controlled by oral hypoglycemic drugs|Gestational diabetes mellitus in childbirth, controlled by oral hypoglycemic drugs +C4269004|T046|AB|O24.425|ICD10CM|Gestatnl diab in chldbrth, ctrl by oral hypoglycemic drugs|Gestatnl diab in chldbrth, ctrl by oral hypoglycemic drugs +C2903684|T046|AB|O24.429|ICD10CM|Gestational diabetes mellitus in childbirth, unsp control|Gestational diabetes mellitus in childbirth, unsp control +C2903684|T046|PT|O24.429|ICD10CM|Gestational diabetes mellitus in childbirth, unspecified control|Gestational diabetes mellitus in childbirth, unspecified control +C2903685|T046|AB|O24.43|ICD10CM|Gestational diabetes mellitus in the puerperium|Gestational diabetes mellitus in the puerperium +C2903685|T046|HT|O24.43|ICD10CM|Gestational diabetes mellitus in the puerperium|Gestational diabetes mellitus in the puerperium +C2903686|T033|AB|O24.430|ICD10CM|Gestational diabetes in the puerperium, diet controlled|Gestational diabetes in the puerperium, diet controlled +C2903686|T033|PT|O24.430|ICD10CM|Gestational diabetes mellitus in the puerperium, diet controlled|Gestational diabetes mellitus in the puerperium, diet controlled +C2903687|T033|AB|O24.434|ICD10CM|Gestational diabetes in the puerperium, insulin controlled|Gestational diabetes in the puerperium, insulin controlled +C2903687|T033|PT|O24.434|ICD10CM|Gestational diabetes mellitus in the puerperium, insulin controlled|Gestational diabetes mellitus in the puerperium, insulin controlled +C4269005|T046|ET|O24.435|ICD10CM|Gestational diabetes mellitus in puerperium, controlled by oral antidiabetic drugs|Gestational diabetes mellitus in puerperium, controlled by oral antidiabetic drugs +C4269005|T046|PT|O24.435|ICD10CM|Gestational diabetes mellitus in puerperium, controlled by oral hypoglycemic drugs|Gestational diabetes mellitus in puerperium, controlled by oral hypoglycemic drugs +C4269005|T046|AB|O24.435|ICD10CM|Gestatnl diabetes in puerp, ctrl by oral hypoglycemic drugs|Gestatnl diabetes in puerp, ctrl by oral hypoglycemic drugs +C2903688|T046|AB|O24.439|ICD10CM|Gestational diabetes in the puerperium, unsp control|Gestational diabetes in the puerperium, unsp control +C2903688|T046|PT|O24.439|ICD10CM|Gestational diabetes mellitus in the puerperium, unspecified control|Gestational diabetes mellitus in the puerperium, unspecified control +C2903689|T047|AB|O24.8|ICD10CM|Oth pre-exist diabetes in pregnancy, chldbrth, and the puerp|Oth pre-exist diabetes in pregnancy, chldbrth, and the puerp +C2903689|T047|HT|O24.8|ICD10CM|Other pre-existing diabetes mellitus in pregnancy, childbirth, and the puerperium|Other pre-existing diabetes mellitus in pregnancy, childbirth, and the puerperium +C2903693|T047|AB|O24.81|ICD10CM|Other pre-existing diabetes mellitus in pregnancy|Other pre-existing diabetes mellitus in pregnancy +C2903693|T047|HT|O24.81|ICD10CM|Other pre-existing diabetes mellitus in pregnancy|Other pre-existing diabetes mellitus in pregnancy +C2903690|T047|AB|O24.811|ICD10CM|Oth pre-existing diabetes in pregnancy, first trimester|Oth pre-existing diabetes in pregnancy, first trimester +C2903690|T047|PT|O24.811|ICD10CM|Other pre-existing diabetes mellitus in pregnancy, first trimester|Other pre-existing diabetes mellitus in pregnancy, first trimester +C2903691|T047|AB|O24.812|ICD10CM|Oth pre-existing diabetes in pregnancy, second trimester|Oth pre-existing diabetes in pregnancy, second trimester +C2903691|T047|PT|O24.812|ICD10CM|Other pre-existing diabetes mellitus in pregnancy, second trimester|Other pre-existing diabetes mellitus in pregnancy, second trimester +C2903692|T047|AB|O24.813|ICD10CM|Oth pre-existing diabetes in pregnancy, third trimester|Oth pre-existing diabetes in pregnancy, third trimester +C2903692|T047|PT|O24.813|ICD10CM|Other pre-existing diabetes mellitus in pregnancy, third trimester|Other pre-existing diabetes mellitus in pregnancy, third trimester +C2903693|T047|AB|O24.819|ICD10CM|Oth pre-existing diabetes in pregnancy, unsp trimester|Oth pre-existing diabetes in pregnancy, unsp trimester +C2903693|T047|PT|O24.819|ICD10CM|Other pre-existing diabetes mellitus in pregnancy, unspecified trimester|Other pre-existing diabetes mellitus in pregnancy, unspecified trimester +C2903694|T047|AB|O24.82|ICD10CM|Other pre-existing diabetes mellitus in childbirth|Other pre-existing diabetes mellitus in childbirth +C2903694|T047|PT|O24.82|ICD10CM|Other pre-existing diabetes mellitus in childbirth|Other pre-existing diabetes mellitus in childbirth +C2903695|T047|AB|O24.83|ICD10CM|Other pre-existing diabetes mellitus in the puerperium|Other pre-existing diabetes mellitus in the puerperium +C2903695|T047|PT|O24.83|ICD10CM|Other pre-existing diabetes mellitus in the puerperium|Other pre-existing diabetes mellitus in the puerperium +C0032969|T047|PT|O24.9|ICD10|Diabetes mellitus in pregnancy, unspecified|Diabetes mellitus in pregnancy, unspecified +C0341893|T047|AB|O24.9|ICD10CM|Unsp diabetes in pregnancy, childbirth and the puerperium|Unsp diabetes in pregnancy, childbirth and the puerperium +C0341893|T047|HT|O24.9|ICD10CM|Unspecified diabetes mellitus in pregnancy, childbirth and the puerperium|Unspecified diabetes mellitus in pregnancy, childbirth and the puerperium +C0032969|T047|AB|O24.91|ICD10CM|Unspecified diabetes mellitus in pregnancy|Unspecified diabetes mellitus in pregnancy +C0032969|T047|HT|O24.91|ICD10CM|Unspecified diabetes mellitus in pregnancy|Unspecified diabetes mellitus in pregnancy +C2903696|T047|AB|O24.911|ICD10CM|Unspecified diabetes mellitus in pregnancy, first trimester|Unspecified diabetes mellitus in pregnancy, first trimester +C2903696|T047|PT|O24.911|ICD10CM|Unspecified diabetes mellitus in pregnancy, first trimester|Unspecified diabetes mellitus in pregnancy, first trimester +C2903697|T047|AB|O24.912|ICD10CM|Unspecified diabetes mellitus in pregnancy, second trimester|Unspecified diabetes mellitus in pregnancy, second trimester +C2903697|T047|PT|O24.912|ICD10CM|Unspecified diabetes mellitus in pregnancy, second trimester|Unspecified diabetes mellitus in pregnancy, second trimester +C2903698|T047|AB|O24.913|ICD10CM|Unspecified diabetes mellitus in pregnancy, third trimester|Unspecified diabetes mellitus in pregnancy, third trimester +C2903698|T047|PT|O24.913|ICD10CM|Unspecified diabetes mellitus in pregnancy, third trimester|Unspecified diabetes mellitus in pregnancy, third trimester +C0032969|T047|AB|O24.919|ICD10CM|Unsp diabetes mellitus in pregnancy, unspecified trimester|Unsp diabetes mellitus in pregnancy, unspecified trimester +C0032969|T047|PT|O24.919|ICD10CM|Unspecified diabetes mellitus in pregnancy, unspecified trimester|Unspecified diabetes mellitus in pregnancy, unspecified trimester +C2903699|T046|AB|O24.92|ICD10CM|Unspecified diabetes mellitus in childbirth|Unspecified diabetes mellitus in childbirth +C2903699|T046|PT|O24.92|ICD10CM|Unspecified diabetes mellitus in childbirth|Unspecified diabetes mellitus in childbirth +C2903700|T046|AB|O24.93|ICD10CM|Unspecified diabetes mellitus in the puerperium|Unspecified diabetes mellitus in the puerperium +C2903700|T046|PT|O24.93|ICD10CM|Unspecified diabetes mellitus in the puerperium|Unspecified diabetes mellitus in the puerperium +C0348950|T046|PT|O25|ICD10|Malnutrition in pregnancy|Malnutrition in pregnancy +C2903701|T046|AB|O25|ICD10CM|Malnutrition in pregnancy, childbirth and the puerperium|Malnutrition in pregnancy, childbirth and the puerperium +C2903701|T046|HT|O25|ICD10CM|Malnutrition in pregnancy, childbirth and the puerperium|Malnutrition in pregnancy, childbirth and the puerperium +C0348950|T046|HT|O25.1|ICD10CM|Malnutrition in pregnancy|Malnutrition in pregnancy +C0348950|T046|AB|O25.1|ICD10CM|Malnutrition in pregnancy|Malnutrition in pregnancy +C0348950|T046|AB|O25.10|ICD10CM|Malnutrition in pregnancy, unspecified trimester|Malnutrition in pregnancy, unspecified trimester +C0348950|T046|PT|O25.10|ICD10CM|Malnutrition in pregnancy, unspecified trimester|Malnutrition in pregnancy, unspecified trimester +C2903702|T046|AB|O25.11|ICD10CM|Malnutrition in pregnancy, first trimester|Malnutrition in pregnancy, first trimester +C2903702|T046|PT|O25.11|ICD10CM|Malnutrition in pregnancy, first trimester|Malnutrition in pregnancy, first trimester +C2903703|T046|AB|O25.12|ICD10CM|Malnutrition in pregnancy, second trimester|Malnutrition in pregnancy, second trimester +C2903703|T046|PT|O25.12|ICD10CM|Malnutrition in pregnancy, second trimester|Malnutrition in pregnancy, second trimester +C2903704|T046|AB|O25.13|ICD10CM|Malnutrition in pregnancy, third trimester|Malnutrition in pregnancy, third trimester +C2903704|T046|PT|O25.13|ICD10CM|Malnutrition in pregnancy, third trimester|Malnutrition in pregnancy, third trimester +C2903705|T047|PT|O25.2|ICD10CM|Malnutrition in childbirth|Malnutrition in childbirth +C2903705|T047|AB|O25.2|ICD10CM|Malnutrition in childbirth|Malnutrition in childbirth +C2903706|T046|AB|O25.3|ICD10CM|Malnutrition in the puerperium|Malnutrition in the puerperium +C2903706|T046|PT|O25.3|ICD10CM|Malnutrition in the puerperium|Malnutrition in the puerperium +C0495189|T046|AB|O26|ICD10CM|Maternal care for oth conditions predom related to pregnancy|Maternal care for oth conditions predom related to pregnancy +C0495189|T046|HT|O26|ICD10CM|Maternal care for other conditions predominantly related to pregnancy|Maternal care for other conditions predominantly related to pregnancy +C0495189|T046|HT|O26|ICD10|Maternal care for other conditions predominantly related to pregnancy|Maternal care for other conditions predominantly related to pregnancy +C0269672|T046|PT|O26.0|ICD10|Excessive weight gain in pregnancy|Excessive weight gain in pregnancy +C0269672|T046|HT|O26.0|ICD10CM|Excessive weight gain in pregnancy|Excessive weight gain in pregnancy +C0269672|T046|AB|O26.0|ICD10CM|Excessive weight gain in pregnancy|Excessive weight gain in pregnancy +C0269672|T046|AB|O26.00|ICD10CM|Excessive weight gain in pregnancy, unspecified trimester|Excessive weight gain in pregnancy, unspecified trimester +C0269672|T046|PT|O26.00|ICD10CM|Excessive weight gain in pregnancy, unspecified trimester|Excessive weight gain in pregnancy, unspecified trimester +C2903707|T046|AB|O26.01|ICD10CM|Excessive weight gain in pregnancy, first trimester|Excessive weight gain in pregnancy, first trimester +C2903707|T046|PT|O26.01|ICD10CM|Excessive weight gain in pregnancy, first trimester|Excessive weight gain in pregnancy, first trimester +C2903708|T046|AB|O26.02|ICD10CM|Excessive weight gain in pregnancy, second trimester|Excessive weight gain in pregnancy, second trimester +C2903708|T046|PT|O26.02|ICD10CM|Excessive weight gain in pregnancy, second trimester|Excessive weight gain in pregnancy, second trimester +C2903709|T046|AB|O26.03|ICD10CM|Excessive weight gain in pregnancy, third trimester|Excessive weight gain in pregnancy, third trimester +C2903709|T046|PT|O26.03|ICD10CM|Excessive weight gain in pregnancy, third trimester|Excessive weight gain in pregnancy, third trimester +C0233214|T033|HT|O26.1|ICD10CM|Low weight gain in pregnancy|Low weight gain in pregnancy +C0233214|T033|AB|O26.1|ICD10CM|Low weight gain in pregnancy|Low weight gain in pregnancy +C0233214|T033|PT|O26.1|ICD10|Low weight gain in pregnancy|Low weight gain in pregnancy +C0233214|T033|AB|O26.10|ICD10CM|Low weight gain in pregnancy, unspecified trimester|Low weight gain in pregnancy, unspecified trimester +C0233214|T033|PT|O26.10|ICD10CM|Low weight gain in pregnancy, unspecified trimester|Low weight gain in pregnancy, unspecified trimester +C2903710|T046|AB|O26.11|ICD10CM|Low weight gain in pregnancy, first trimester|Low weight gain in pregnancy, first trimester +C2903710|T046|PT|O26.11|ICD10CM|Low weight gain in pregnancy, first trimester|Low weight gain in pregnancy, first trimester +C2903711|T046|AB|O26.12|ICD10CM|Low weight gain in pregnancy, second trimester|Low weight gain in pregnancy, second trimester +C2903711|T046|PT|O26.12|ICD10CM|Low weight gain in pregnancy, second trimester|Low weight gain in pregnancy, second trimester +C2903712|T046|AB|O26.13|ICD10CM|Low weight gain in pregnancy, third trimester|Low weight gain in pregnancy, third trimester +C2903712|T046|PT|O26.13|ICD10CM|Low weight gain in pregnancy, third trimester|Low weight gain in pregnancy, third trimester +C2977397|T033|AB|O26.2|ICD10CM|Pregnancy care for patient with recurrent pregnancy loss|Pregnancy care for patient with recurrent pregnancy loss +C2977397|T033|HT|O26.2|ICD10CM|Pregnancy care for patient with recurrent pregnancy loss|Pregnancy care for patient with recurrent pregnancy loss +C0495190|T047|PT|O26.2|ICD10|Pregnancy care of habitual aborter|Pregnancy care of habitual aborter +C2977398|T033|AB|O26.20|ICD10CM|Preg care for patient w recurrent preg loss, unsp trimester|Preg care for patient w recurrent preg loss, unsp trimester +C2977398|T033|PT|O26.20|ICD10CM|Pregnancy care for patient with recurrent pregnancy loss, unspecified trimester|Pregnancy care for patient with recurrent pregnancy loss, unspecified trimester +C2903713|T033|AB|O26.21|ICD10CM|Preg care for patient w recurrent preg loss, first trimester|Preg care for patient w recurrent preg loss, first trimester +C2903713|T033|PT|O26.21|ICD10CM|Pregnancy care for patient with recurrent pregnancy loss, first trimester|Pregnancy care for patient with recurrent pregnancy loss, first trimester +C2903714|T033|AB|O26.22|ICD10CM|Preg care for patient w recur preg loss, second trimester|Preg care for patient w recur preg loss, second trimester +C2903714|T033|PT|O26.22|ICD10CM|Pregnancy care for patient with recurrent pregnancy loss, second trimester|Pregnancy care for patient with recurrent pregnancy loss, second trimester +C2903715|T033|AB|O26.23|ICD10CM|Preg care for patient w recurrent preg loss, third trimester|Preg care for patient w recurrent preg loss, third trimester +C2903715|T033|PT|O26.23|ICD10CM|Pregnancy care for patient with recurrent pregnancy loss, third trimester|Pregnancy care for patient with recurrent pregnancy loss, third trimester +C0451783|T047|PT|O26.3|ICD10|Retained intrauterine contraceptive device in pregnancy|Retained intrauterine contraceptive device in pregnancy +C0451783|T047|HT|O26.3|ICD10CM|Retained intrauterine contraceptive device in pregnancy|Retained intrauterine contraceptive device in pregnancy +C0451783|T047|AB|O26.3|ICD10CM|Retained intrauterine contraceptive device in pregnancy|Retained intrauterine contraceptive device in pregnancy +C2903716|T046|PT|O26.30|ICD10CM|Retained intrauterine contraceptive device in pregnancy, unspecified trimester|Retained intrauterine contraceptive device in pregnancy, unspecified trimester +C2903716|T046|AB|O26.30|ICD10CM|Retained uterin contracep dev in pregnancy, unsp trimester|Retained uterin contracep dev in pregnancy, unsp trimester +C2903717|T046|PT|O26.31|ICD10CM|Retained intrauterine contraceptive device in pregnancy, first trimester|Retained intrauterine contraceptive device in pregnancy, first trimester +C2903717|T046|AB|O26.31|ICD10CM|Retained uterin contracep dev in pregnancy, first trimester|Retained uterin contracep dev in pregnancy, first trimester +C2903718|T046|PT|O26.32|ICD10CM|Retained intrauterine contraceptive device in pregnancy, second trimester|Retained intrauterine contraceptive device in pregnancy, second trimester +C2903718|T046|AB|O26.32|ICD10CM|Retained uterin contracep dev in pregnancy, second trimester|Retained uterin contracep dev in pregnancy, second trimester +C2903719|T046|PT|O26.33|ICD10CM|Retained intrauterine contraceptive device in pregnancy, third trimester|Retained intrauterine contraceptive device in pregnancy, third trimester +C2903719|T046|AB|O26.33|ICD10CM|Retained uterin contracep dev in pregnancy, third trimester|Retained uterin contracep dev in pregnancy, third trimester +C0019343|T047|HT|O26.4|ICD10CM|Herpes gestationis|Herpes gestationis +C0019343|T047|AB|O26.4|ICD10CM|Herpes gestationis|Herpes gestationis +C0019343|T047|PT|O26.4|ICD10|Herpes gestationis|Herpes gestationis +C0019343|T047|AB|O26.40|ICD10CM|Herpes gestationis, unspecified trimester|Herpes gestationis, unspecified trimester +C0019343|T047|PT|O26.40|ICD10CM|Herpes gestationis, unspecified trimester|Herpes gestationis, unspecified trimester +C2903720|T046|AB|O26.41|ICD10CM|Herpes gestationis, first trimester|Herpes gestationis, first trimester +C2903720|T046|PT|O26.41|ICD10CM|Herpes gestationis, first trimester|Herpes gestationis, first trimester +C2903721|T046|AB|O26.42|ICD10CM|Herpes gestationis, second trimester|Herpes gestationis, second trimester +C2903721|T046|PT|O26.42|ICD10CM|Herpes gestationis, second trimester|Herpes gestationis, second trimester +C2903722|T046|AB|O26.43|ICD10CM|Herpes gestationis, third trimester|Herpes gestationis, third trimester +C2903722|T046|PT|O26.43|ICD10CM|Herpes gestationis, third trimester|Herpes gestationis, third trimester +C0341966|T046|PT|O26.5|ICD10|Maternal hypotension syndrome|Maternal hypotension syndrome +C0341966|T046|HT|O26.5|ICD10CM|Maternal hypotension syndrome|Maternal hypotension syndrome +C0341966|T046|AB|O26.5|ICD10CM|Maternal hypotension syndrome|Maternal hypotension syndrome +C0341966|T046|ET|O26.5|ICD10CM|Supine hypotensive syndrome|Supine hypotensive syndrome +C0341966|T046|AB|O26.50|ICD10CM|Maternal hypotension syndrome, unspecified trimester|Maternal hypotension syndrome, unspecified trimester +C0341966|T046|PT|O26.50|ICD10CM|Maternal hypotension syndrome, unspecified trimester|Maternal hypotension syndrome, unspecified trimester +C2903723|T046|AB|O26.51|ICD10CM|Maternal hypotension syndrome, first trimester|Maternal hypotension syndrome, first trimester +C2903723|T046|PT|O26.51|ICD10CM|Maternal hypotension syndrome, first trimester|Maternal hypotension syndrome, first trimester +C2903724|T046|AB|O26.52|ICD10CM|Maternal hypotension syndrome, second trimester|Maternal hypotension syndrome, second trimester +C2903724|T046|PT|O26.52|ICD10CM|Maternal hypotension syndrome, second trimester|Maternal hypotension syndrome, second trimester +C2903725|T046|AB|O26.53|ICD10CM|Maternal hypotension syndrome, third trimester|Maternal hypotension syndrome, third trimester +C2903725|T046|PT|O26.53|ICD10CM|Maternal hypotension syndrome, third trimester|Maternal hypotension syndrome, third trimester +C3264515|T047|AB|O26.6|ICD10CM|Liver & biliary trac disord in preg, chldbrth and the puerp|Liver & biliary trac disord in preg, chldbrth and the puerp +C3264515|T047|HT|O26.6|ICD10CM|Liver and biliary tract disorders in pregnancy, childbirth and the puerperium|Liver and biliary tract disorders in pregnancy, childbirth and the puerperium +C0728889|T047|PT|O26.6|ICD10|Liver disorders in pregnancy, childbirth and the puerperium|Liver disorders in pregnancy, childbirth and the puerperium +C3161439|T047|HT|O26.61|ICD10CM|Liver and biliary tract disorders in pregnancy|Liver and biliary tract disorders in pregnancy +C3161439|T047|AB|O26.61|ICD10CM|Liver and biliary tract disorders in pregnancy|Liver and biliary tract disorders in pregnancy +C2903726|T047|AB|O26.611|ICD10CM|Liver and biliary tract disord in pregnancy, first trimester|Liver and biliary tract disord in pregnancy, first trimester +C2903726|T047|PT|O26.611|ICD10CM|Liver and biliary tract disorders in pregnancy, first trimester|Liver and biliary tract disorders in pregnancy, first trimester +C2903727|T047|AB|O26.612|ICD10CM|Liver and biliary tract disord in preg, second trimester|Liver and biliary tract disord in preg, second trimester +C2903727|T047|PT|O26.612|ICD10CM|Liver and biliary tract disorders in pregnancy, second trimester|Liver and biliary tract disorders in pregnancy, second trimester +C2903728|T047|AB|O26.613|ICD10CM|Liver and biliary tract disord in pregnancy, third trimester|Liver and biliary tract disord in pregnancy, third trimester +C2903728|T047|PT|O26.613|ICD10CM|Liver and biliary tract disorders in pregnancy, third trimester|Liver and biliary tract disorders in pregnancy, third trimester +C3264516|T047|AB|O26.619|ICD10CM|Liver and biliary tract disord in pregnancy, unsp trimester|Liver and biliary tract disord in pregnancy, unsp trimester +C3264516|T047|PT|O26.619|ICD10CM|Liver and biliary tract disorders in pregnancy, unspecified trimester|Liver and biliary tract disorders in pregnancy, unspecified trimester +C2903729|T047|PT|O26.62|ICD10CM|Liver and biliary tract disorders in childbirth|Liver and biliary tract disorders in childbirth +C2903729|T047|AB|O26.62|ICD10CM|Liver and biliary tract disorders in childbirth|Liver and biliary tract disorders in childbirth +C2903730|T047|AB|O26.63|ICD10CM|Liver and biliary tract disorders in the puerperium|Liver and biliary tract disorders in the puerperium +C2903730|T047|PT|O26.63|ICD10CM|Liver and biliary tract disorders in the puerperium|Liver and biliary tract disorders in the puerperium +C0451822|T037|AB|O26.7|ICD10CM|Sublux of symphysis (pubis) in preg, chldbrth and the puerp|Sublux of symphysis (pubis) in preg, chldbrth and the puerp +C0451822|T037|HT|O26.7|ICD10CM|Subluxation of symphysis (pubis) in pregnancy, childbirth and the puerperium|Subluxation of symphysis (pubis) in pregnancy, childbirth and the puerperium +C0451822|T037|PT|O26.7|ICD10|Subluxation of symphysis (pubis) in pregnancy, childbirth and the puerperium|Subluxation of symphysis (pubis) in pregnancy, childbirth and the puerperium +C2903731|T037|AB|O26.71|ICD10CM|Subluxation of symphysis (pubis) in pregnancy|Subluxation of symphysis (pubis) in pregnancy +C2903731|T037|HT|O26.71|ICD10CM|Subluxation of symphysis (pubis) in pregnancy|Subluxation of symphysis (pubis) in pregnancy +C2903732|T037|AB|O26.711|ICD10CM|Sublux of symphysis (pubis) in pregnancy, first trimester|Sublux of symphysis (pubis) in pregnancy, first trimester +C2903732|T037|PT|O26.711|ICD10CM|Subluxation of symphysis (pubis) in pregnancy, first trimester|Subluxation of symphysis (pubis) in pregnancy, first trimester +C2903733|T037|AB|O26.712|ICD10CM|Sublux of symphysis (pubis) in pregnancy, second trimester|Sublux of symphysis (pubis) in pregnancy, second trimester +C2903733|T037|PT|O26.712|ICD10CM|Subluxation of symphysis (pubis) in pregnancy, second trimester|Subluxation of symphysis (pubis) in pregnancy, second trimester +C2903734|T037|AB|O26.713|ICD10CM|Sublux of symphysis (pubis) in pregnancy, third trimester|Sublux of symphysis (pubis) in pregnancy, third trimester +C2903734|T037|PT|O26.713|ICD10CM|Subluxation of symphysis (pubis) in pregnancy, third trimester|Subluxation of symphysis (pubis) in pregnancy, third trimester +C2903735|T037|AB|O26.719|ICD10CM|Sublux of symphysis (pubis) in pregnancy, unsp trimester|Sublux of symphysis (pubis) in pregnancy, unsp trimester +C2903735|T037|PT|O26.719|ICD10CM|Subluxation of symphysis (pubis) in pregnancy, unspecified trimester|Subluxation of symphysis (pubis) in pregnancy, unspecified trimester +C2903736|T037|AB|O26.72|ICD10CM|Subluxation of symphysis (pubis) in childbirth|Subluxation of symphysis (pubis) in childbirth +C2903736|T037|PT|O26.72|ICD10CM|Subluxation of symphysis (pubis) in childbirth|Subluxation of symphysis (pubis) in childbirth +C2903737|T037|AB|O26.73|ICD10CM|Subluxation of symphysis (pubis) in the puerperium|Subluxation of symphysis (pubis) in the puerperium +C2903737|T037|PT|O26.73|ICD10CM|Subluxation of symphysis (pubis) in the puerperium|Subluxation of symphysis (pubis) in the puerperium +C0477817|T046|AB|O26.8|ICD10CM|Other specified pregnancy related conditions|Other specified pregnancy related conditions +C0477817|T046|HT|O26.8|ICD10CM|Other specified pregnancy related conditions|Other specified pregnancy related conditions +C0477817|T046|PT|O26.8|ICD10|Other specified pregnancy-related conditions|Other specified pregnancy-related conditions +C2903741|T046|AB|O26.81|ICD10CM|Pregnancy related exhaustion and fatigue|Pregnancy related exhaustion and fatigue +C2903741|T046|HT|O26.81|ICD10CM|Pregnancy related exhaustion and fatigue|Pregnancy related exhaustion and fatigue +C2903738|T046|AB|O26.811|ICD10CM|Pregnancy related exhaustion and fatigue, first trimester|Pregnancy related exhaustion and fatigue, first trimester +C2903738|T046|PT|O26.811|ICD10CM|Pregnancy related exhaustion and fatigue, first trimester|Pregnancy related exhaustion and fatigue, first trimester +C2903739|T046|AB|O26.812|ICD10CM|Pregnancy related exhaustion and fatigue, second trimester|Pregnancy related exhaustion and fatigue, second trimester +C2903739|T046|PT|O26.812|ICD10CM|Pregnancy related exhaustion and fatigue, second trimester|Pregnancy related exhaustion and fatigue, second trimester +C2903740|T046|AB|O26.813|ICD10CM|Pregnancy related exhaustion and fatigue, third trimester|Pregnancy related exhaustion and fatigue, third trimester +C2903740|T046|PT|O26.813|ICD10CM|Pregnancy related exhaustion and fatigue, third trimester|Pregnancy related exhaustion and fatigue, third trimester +C2903741|T046|AB|O26.819|ICD10CM|Pregnancy related exhaustion and fatigue, unsp trimester|Pregnancy related exhaustion and fatigue, unsp trimester +C2903741|T046|PT|O26.819|ICD10CM|Pregnancy related exhaustion and fatigue, unspecified trimester|Pregnancy related exhaustion and fatigue, unspecified trimester +C2903745|T046|AB|O26.82|ICD10CM|Pregnancy related peripheral neuritis|Pregnancy related peripheral neuritis +C2903745|T046|HT|O26.82|ICD10CM|Pregnancy related peripheral neuritis|Pregnancy related peripheral neuritis +C2903742|T046|AB|O26.821|ICD10CM|Pregnancy related peripheral neuritis, first trimester|Pregnancy related peripheral neuritis, first trimester +C2903742|T046|PT|O26.821|ICD10CM|Pregnancy related peripheral neuritis, first trimester|Pregnancy related peripheral neuritis, first trimester +C2903743|T046|AB|O26.822|ICD10CM|Pregnancy related peripheral neuritis, second trimester|Pregnancy related peripheral neuritis, second trimester +C2903743|T046|PT|O26.822|ICD10CM|Pregnancy related peripheral neuritis, second trimester|Pregnancy related peripheral neuritis, second trimester +C2903744|T046|AB|O26.823|ICD10CM|Pregnancy related peripheral neuritis, third trimester|Pregnancy related peripheral neuritis, third trimester +C2903744|T046|PT|O26.823|ICD10CM|Pregnancy related peripheral neuritis, third trimester|Pregnancy related peripheral neuritis, third trimester +C2903745|T046|AB|O26.829|ICD10CM|Pregnancy related peripheral neuritis, unspecified trimester|Pregnancy related peripheral neuritis, unspecified trimester +C2903745|T046|PT|O26.829|ICD10CM|Pregnancy related peripheral neuritis, unspecified trimester|Pregnancy related peripheral neuritis, unspecified trimester +C0840899|T046|AB|O26.83|ICD10CM|Pregnancy related renal disease|Pregnancy related renal disease +C0840899|T046|HT|O26.83|ICD10CM|Pregnancy related renal disease|Pregnancy related renal disease +C2903746|T046|AB|O26.831|ICD10CM|Pregnancy related renal disease, first trimester|Pregnancy related renal disease, first trimester +C2903746|T046|PT|O26.831|ICD10CM|Pregnancy related renal disease, first trimester|Pregnancy related renal disease, first trimester +C2903747|T046|AB|O26.832|ICD10CM|Pregnancy related renal disease, second trimester|Pregnancy related renal disease, second trimester +C2903747|T046|PT|O26.832|ICD10CM|Pregnancy related renal disease, second trimester|Pregnancy related renal disease, second trimester +C2903748|T046|AB|O26.833|ICD10CM|Pregnancy related renal disease, third trimester|Pregnancy related renal disease, third trimester +C2903748|T046|PT|O26.833|ICD10CM|Pregnancy related renal disease, third trimester|Pregnancy related renal disease, third trimester +C0840899|T046|AB|O26.839|ICD10CM|Pregnancy related renal disease, unspecified trimester|Pregnancy related renal disease, unspecified trimester +C0840899|T046|PT|O26.839|ICD10CM|Pregnancy related renal disease, unspecified trimester|Pregnancy related renal disease, unspecified trimester +C2903752|T046|AB|O26.84|ICD10CM|Uterine size-date discrepancy complicating pregnancy|Uterine size-date discrepancy complicating pregnancy +C2903752|T046|HT|O26.84|ICD10CM|Uterine size-date discrepancy complicating pregnancy|Uterine size-date discrepancy complicating pregnancy +C2903749|T046|AB|O26.841|ICD10CM|Uterine size-date discrepancy, first trimester|Uterine size-date discrepancy, first trimester +C2903749|T046|PT|O26.841|ICD10CM|Uterine size-date discrepancy, first trimester|Uterine size-date discrepancy, first trimester +C2903750|T046|AB|O26.842|ICD10CM|Uterine size-date discrepancy, second trimester|Uterine size-date discrepancy, second trimester +C2903750|T046|PT|O26.842|ICD10CM|Uterine size-date discrepancy, second trimester|Uterine size-date discrepancy, second trimester +C2903751|T046|AB|O26.843|ICD10CM|Uterine size-date discrepancy, third trimester|Uterine size-date discrepancy, third trimester +C2903751|T046|PT|O26.843|ICD10CM|Uterine size-date discrepancy, third trimester|Uterine size-date discrepancy, third trimester +C2903752|T046|AB|O26.849|ICD10CM|Uterine size-date discrepancy, unspecified trimester|Uterine size-date discrepancy, unspecified trimester +C2903752|T046|PT|O26.849|ICD10CM|Uterine size-date discrepancy, unspecified trimester|Uterine size-date discrepancy, unspecified trimester +C1719595|T046|AB|O26.85|ICD10CM|Spotting complicating pregnancy|Spotting complicating pregnancy +C1719595|T046|HT|O26.85|ICD10CM|Spotting complicating pregnancy|Spotting complicating pregnancy +C2903753|T046|AB|O26.851|ICD10CM|Spotting complicating pregnancy, first trimester|Spotting complicating pregnancy, first trimester +C2903753|T046|PT|O26.851|ICD10CM|Spotting complicating pregnancy, first trimester|Spotting complicating pregnancy, first trimester +C2903754|T046|AB|O26.852|ICD10CM|Spotting complicating pregnancy, second trimester|Spotting complicating pregnancy, second trimester +C2903754|T046|PT|O26.852|ICD10CM|Spotting complicating pregnancy, second trimester|Spotting complicating pregnancy, second trimester +C2903755|T046|AB|O26.853|ICD10CM|Spotting complicating pregnancy, third trimester|Spotting complicating pregnancy, third trimester +C2903755|T046|PT|O26.853|ICD10CM|Spotting complicating pregnancy, third trimester|Spotting complicating pregnancy, third trimester +C1719595|T046|AB|O26.859|ICD10CM|Spotting complicating pregnancy, unspecified trimester|Spotting complicating pregnancy, unspecified trimester +C1719595|T046|PT|O26.859|ICD10CM|Spotting complicating pregnancy, unspecified trimester|Spotting complicating pregnancy, unspecified trimester +C0269680|T046|ET|O26.86|ICD10CM|Polymorphic eruption of pregnancy|Polymorphic eruption of pregnancy +C0269680|T046|AB|O26.86|ICD10CM|Pruritic urticarial papules and plaques of pregnancy (PUPPP)|Pruritic urticarial papules and plaques of pregnancy (PUPPP) +C0269680|T046|PT|O26.86|ICD10CM|Pruritic urticarial papules and plaques of pregnancy (PUPPP)|Pruritic urticarial papules and plaques of pregnancy (PUPPP) +C2349587|T046|AB|O26.87|ICD10CM|Cervical shortening|Cervical shortening +C2349587|T046|HT|O26.87|ICD10CM|Cervical shortening|Cervical shortening +C2903756|T046|AB|O26.872|ICD10CM|Cervical shortening, second trimester|Cervical shortening, second trimester +C2903756|T046|PT|O26.872|ICD10CM|Cervical shortening, second trimester|Cervical shortening, second trimester +C2903757|T046|AB|O26.873|ICD10CM|Cervical shortening, third trimester|Cervical shortening, third trimester +C2903757|T046|PT|O26.873|ICD10CM|Cervical shortening, third trimester|Cervical shortening, third trimester +C2903758|T046|AB|O26.879|ICD10CM|Cervical shortening, unspecified trimester|Cervical shortening, unspecified trimester +C2903758|T046|PT|O26.879|ICD10CM|Cervical shortening, unspecified trimester|Cervical shortening, unspecified trimester +C0477817|T046|HT|O26.89|ICD10CM|Other specified pregnancy related conditions|Other specified pregnancy related conditions +C0477817|T046|AB|O26.89|ICD10CM|Other specified pregnancy related conditions|Other specified pregnancy related conditions +C2903759|T046|AB|O26.891|ICD10CM|Oth pregnancy related conditions, first trimester|Oth pregnancy related conditions, first trimester +C2903759|T046|PT|O26.891|ICD10CM|Other specified pregnancy related conditions, first trimester|Other specified pregnancy related conditions, first trimester +C2903760|T046|AB|O26.892|ICD10CM|Oth pregnancy related conditions, second trimester|Oth pregnancy related conditions, second trimester +C2903760|T046|PT|O26.892|ICD10CM|Other specified pregnancy related conditions, second trimester|Other specified pregnancy related conditions, second trimester +C2903761|T046|AB|O26.893|ICD10CM|Oth pregnancy related conditions, third trimester|Oth pregnancy related conditions, third trimester +C2903761|T046|PT|O26.893|ICD10CM|Other specified pregnancy related conditions, third trimester|Other specified pregnancy related conditions, third trimester +C0477817|T046|AB|O26.899|ICD10CM|Oth pregnancy related conditions, unspecified trimester|Oth pregnancy related conditions, unspecified trimester +C0477817|T046|PT|O26.899|ICD10CM|Other specified pregnancy related conditions, unspecified trimester|Other specified pregnancy related conditions, unspecified trimester +C0495192|T046|AB|O26.9|ICD10CM|Pregnancy related conditions, unspecified|Pregnancy related conditions, unspecified +C0495192|T046|HT|O26.9|ICD10CM|Pregnancy related conditions, unspecified|Pregnancy related conditions, unspecified +C0495192|T046|PT|O26.9|ICD10|Pregnancy-related condition, unspecified|Pregnancy-related condition, unspecified +C2903762|T046|AB|O26.90|ICD10CM|Pregnancy related conditions, unsp, unspecified trimester|Pregnancy related conditions, unsp, unspecified trimester +C2903762|T046|PT|O26.90|ICD10CM|Pregnancy related conditions, unspecified, unspecified trimester|Pregnancy related conditions, unspecified, unspecified trimester +C2903763|T046|AB|O26.91|ICD10CM|Pregnancy related conditions, unspecified, first trimester|Pregnancy related conditions, unspecified, first trimester +C2903763|T046|PT|O26.91|ICD10CM|Pregnancy related conditions, unspecified, first trimester|Pregnancy related conditions, unspecified, first trimester +C2903764|T046|AB|O26.92|ICD10CM|Pregnancy related conditions, unspecified, second trimester|Pregnancy related conditions, unspecified, second trimester +C2903764|T046|PT|O26.92|ICD10CM|Pregnancy related conditions, unspecified, second trimester|Pregnancy related conditions, unspecified, second trimester +C2903765|T046|AB|O26.93|ICD10CM|Pregnancy related conditions, unspecified, third trimester|Pregnancy related conditions, unspecified, third trimester +C2903765|T046|PT|O26.93|ICD10CM|Pregnancy related conditions, unspecified, third trimester|Pregnancy related conditions, unspecified, third trimester +C0495194|T033|HT|O28|ICD10|Abnormal findings on antenatal screening of mother|Abnormal findings on antenatal screening of mother +C0495194|T033|HT|O28|ICD10CM|Abnormal findings on antenatal screening of mother|Abnormal findings on antenatal screening of mother +C0495194|T033|AB|O28|ICD10CM|Abnormal findings on antenatal screening of mother|Abnormal findings on antenatal screening of mother +C0495193|T033|PT|O28.0|ICD10|Abnormal haematological finding on antenatal screening of mother|Abnormal haematological finding on antenatal screening of mother +C0495193|T033|AB|O28.0|ICD10CM|Abnormal hematolog finding on antenatal screening of mother|Abnormal hematolog finding on antenatal screening of mother +C0495193|T033|PT|O28.0|ICD10CM|Abnormal hematological finding on antenatal screening of mother|Abnormal hematological finding on antenatal screening of mother +C0495193|T033|PT|O28.0|ICD10AE|Abnormal hematological finding on antenatal screening of mother|Abnormal hematological finding on antenatal screening of mother +C0451805|T033|AB|O28.1|ICD10CM|Abnormal biochemical finding on antenat screening of mother|Abnormal biochemical finding on antenat screening of mother +C0451805|T033|PT|O28.1|ICD10CM|Abnormal biochemical finding on antenatal screening of mother|Abnormal biochemical finding on antenatal screening of mother +C0451805|T033|PT|O28.1|ICD10|Abnormal biochemical finding on antenatal screening of mother|Abnormal biochemical finding on antenatal screening of mother +C0451806|T033|AB|O28.2|ICD10CM|Abnormal cytolog finding on antenatal screening of mother|Abnormal cytolog finding on antenatal screening of mother +C0451806|T033|PT|O28.2|ICD10CM|Abnormal cytological finding on antenatal screening of mother|Abnormal cytological finding on antenatal screening of mother +C0451806|T033|PT|O28.2|ICD10|Abnormal cytological finding on antenatal screening of mother|Abnormal cytological finding on antenatal screening of mother +C0420948|T033|PT|O28.3|ICD10|Abnormal ultrasonic finding on antenatal screening of mother|Abnormal ultrasonic finding on antenatal screening of mother +C0420948|T033|PT|O28.3|ICD10CM|Abnormal ultrasonic finding on antenatal screening of mother|Abnormal ultrasonic finding on antenatal screening of mother +C0420948|T033|AB|O28.3|ICD10CM|Abnormal ultrasonic finding on antenatal screening of mother|Abnormal ultrasonic finding on antenatal screening of mother +C0451808|T033|AB|O28.4|ICD10CM|Abnormal radiolog finding on antenatal screening of mother|Abnormal radiolog finding on antenatal screening of mother +C0451808|T033|PT|O28.4|ICD10CM|Abnormal radiological finding on antenatal screening of mother|Abnormal radiological finding on antenatal screening of mother +C0451808|T033|PT|O28.4|ICD10|Abnormal radiological finding on antenatal screening of mother|Abnormal radiological finding on antenatal screening of mother +C0451809|T033|AB|O28.5|ICD10CM|Abn chromsoml and genetic find on antenat screen of mother|Abn chromsoml and genetic find on antenat screen of mother +C0451809|T033|PT|O28.5|ICD10CM|Abnormal chromosomal and genetic finding on antenatal screening of mother|Abnormal chromosomal and genetic finding on antenatal screening of mother +C0451809|T033|PT|O28.5|ICD10|Abnormal chromosomal and genetic finding on antenatal screening of mother|Abnormal chromosomal and genetic finding on antenatal screening of mother +C0477818|T033|PT|O28.8|ICD10|Other abnormal findings on antenatal screening of mother|Other abnormal findings on antenatal screening of mother +C0477818|T033|PT|O28.8|ICD10CM|Other abnormal findings on antenatal screening of mother|Other abnormal findings on antenatal screening of mother +C0477818|T033|AB|O28.8|ICD10CM|Other abnormal findings on antenatal screening of mother|Other abnormal findings on antenatal screening of mother +C0495194|T033|PT|O28.9|ICD10|Abnormal finding on antenatal screening of mother, unspecified|Abnormal finding on antenatal screening of mother, unspecified +C0495194|T033|AB|O28.9|ICD10CM|Unsp abnormal findings on antenatal screening of mother|Unsp abnormal findings on antenatal screening of mother +C0495194|T033|PT|O28.9|ICD10CM|Unspecified abnormal findings on antenatal screening of mother|Unspecified abnormal findings on antenatal screening of mother +C0495199|T046|HT|O29|ICD10|Complications of anaesthesia during pregnancy|Complications of anaesthesia during pregnancy +C0495199|T046|AB|O29|ICD10CM|Complications of anesthesia during pregnancy|Complications of anesthesia during pregnancy +C0495199|T046|HT|O29|ICD10CM|Complications of anesthesia during pregnancy|Complications of anesthesia during pregnancy +C0495199|T046|HT|O29|ICD10AE|Complications of anesthesia during pregnancy|Complications of anesthesia during pregnancy +C0495196|T046|PT|O29.0|ICD10|Pulmonary complications of anaesthesia during pregnancy|Pulmonary complications of anaesthesia during pregnancy +C0495196|T046|PT|O29.0|ICD10AE|Pulmonary complications of anesthesia during pregnancy|Pulmonary complications of anesthesia during pregnancy +C0495196|T046|HT|O29.0|ICD10CM|Pulmonary complications of anesthesia during pregnancy|Pulmonary complications of anesthesia during pregnancy +C0495196|T046|AB|O29.0|ICD10CM|Pulmonary complications of anesthesia during pregnancy|Pulmonary complications of anesthesia during pregnancy +C2903769|T046|AB|O29.01|ICD10CM|Aspiration pneumonitis due to anesthesia during pregnancy|Aspiration pneumonitis due to anesthesia during pregnancy +C2903769|T046|HT|O29.01|ICD10CM|Aspiration pneumonitis due to anesthesia during pregnancy|Aspiration pneumonitis due to anesthesia during pregnancy +C2903767|T037|ET|O29.01|ICD10CM|Inhalation of stomach contents or secretions NOS due to anesthesia during pregnancy|Inhalation of stomach contents or secretions NOS due to anesthesia during pregnancy +C2903768|T046|ET|O29.01|ICD10CM|Mendelson's syndrome due to anesthesia during pregnancy|Mendelson's syndrome due to anesthesia during pregnancy +C2903770|T046|AB|O29.011|ICD10CM|Aspirat pneumonitis due to anesth during preg, first tri|Aspirat pneumonitis due to anesth during preg, first tri +C2903770|T046|PT|O29.011|ICD10CM|Aspiration pneumonitis due to anesthesia during pregnancy, first trimester|Aspiration pneumonitis due to anesthesia during pregnancy, first trimester +C2903771|T046|AB|O29.012|ICD10CM|Aspirat pneumonitis due to anesth during preg, second tri|Aspirat pneumonitis due to anesth during preg, second tri +C2903771|T046|PT|O29.012|ICD10CM|Aspiration pneumonitis due to anesthesia during pregnancy, second trimester|Aspiration pneumonitis due to anesthesia during pregnancy, second trimester +C2903772|T046|AB|O29.013|ICD10CM|Aspirat pneumonitis due to anesth during preg, third tri|Aspirat pneumonitis due to anesth during preg, third tri +C2903772|T046|PT|O29.013|ICD10CM|Aspiration pneumonitis due to anesthesia during pregnancy, third trimester|Aspiration pneumonitis due to anesthesia during pregnancy, third trimester +C2903773|T046|AB|O29.019|ICD10CM|Aspirat pneumonitis due to anesth during preg, unsp tri|Aspirat pneumonitis due to anesth during preg, unsp tri +C2903773|T046|PT|O29.019|ICD10CM|Aspiration pneumonitis due to anesthesia during pregnancy, unspecified trimester|Aspiration pneumonitis due to anesthesia during pregnancy, unspecified trimester +C2903774|T046|AB|O29.02|ICD10CM|Pressure collapse of lung due to anesthesia during pregnancy|Pressure collapse of lung due to anesthesia during pregnancy +C2903774|T046|HT|O29.02|ICD10CM|Pressure collapse of lung due to anesthesia during pregnancy|Pressure collapse of lung due to anesthesia during pregnancy +C2903775|T046|AB|O29.021|ICD10CM|Pressr collapse of lung due to anesth during preg, first tri|Pressr collapse of lung due to anesth during preg, first tri +C2903775|T046|PT|O29.021|ICD10CM|Pressure collapse of lung due to anesthesia during pregnancy, first trimester|Pressure collapse of lung due to anesthesia during pregnancy, first trimester +C2903776|T046|AB|O29.022|ICD10CM|Pressr collapse of lung d/t anesth during preg, second tri|Pressr collapse of lung d/t anesth during preg, second tri +C2903776|T046|PT|O29.022|ICD10CM|Pressure collapse of lung due to anesthesia during pregnancy, second trimester|Pressure collapse of lung due to anesthesia during pregnancy, second trimester +C2903777|T046|AB|O29.023|ICD10CM|Pressr collapse of lung due to anesth during preg, third tri|Pressr collapse of lung due to anesth during preg, third tri +C2903777|T046|PT|O29.023|ICD10CM|Pressure collapse of lung due to anesthesia during pregnancy, third trimester|Pressure collapse of lung due to anesthesia during pregnancy, third trimester +C2903778|T046|AB|O29.029|ICD10CM|Pressr collapse of lung due to anesth during preg, unsp tri|Pressr collapse of lung due to anesth during preg, unsp tri +C2903778|T046|PT|O29.029|ICD10CM|Pressure collapse of lung due to anesthesia during pregnancy, unspecified trimester|Pressure collapse of lung due to anesthesia during pregnancy, unspecified trimester +C2903779|T046|AB|O29.09|ICD10CM|Other pulmonary complications of anesthesia during pregnancy|Other pulmonary complications of anesthesia during pregnancy +C2903779|T046|HT|O29.09|ICD10CM|Other pulmonary complications of anesthesia during pregnancy|Other pulmonary complications of anesthesia during pregnancy +C2903780|T046|AB|O29.091|ICD10CM|Oth pulmonary comp of anesth during preg, first trimester|Oth pulmonary comp of anesth during preg, first trimester +C2903780|T046|PT|O29.091|ICD10CM|Other pulmonary complications of anesthesia during pregnancy, first trimester|Other pulmonary complications of anesthesia during pregnancy, first trimester +C2903781|T046|AB|O29.092|ICD10CM|Oth pulmonary comp of anesth during preg, second trimester|Oth pulmonary comp of anesth during preg, second trimester +C2903781|T046|PT|O29.092|ICD10CM|Other pulmonary complications of anesthesia during pregnancy, second trimester|Other pulmonary complications of anesthesia during pregnancy, second trimester +C2903782|T046|AB|O29.093|ICD10CM|Oth pulmonary comp of anesth during preg, third trimester|Oth pulmonary comp of anesth during preg, third trimester +C2903782|T046|PT|O29.093|ICD10CM|Other pulmonary complications of anesthesia during pregnancy, third trimester|Other pulmonary complications of anesthesia during pregnancy, third trimester +C2903783|T046|AB|O29.099|ICD10CM|Oth pulmonary comp of anesth during preg, unsp trimester|Oth pulmonary comp of anesth during preg, unsp trimester +C2903783|T046|PT|O29.099|ICD10CM|Other pulmonary complications of anesthesia during pregnancy, unspecified trimester|Other pulmonary complications of anesthesia during pregnancy, unspecified trimester +C0495197|T046|PT|O29.1|ICD10|Cardiac complications of anaesthesia during pregnancy|Cardiac complications of anaesthesia during pregnancy +C0495197|T046|HT|O29.1|ICD10CM|Cardiac complications of anesthesia during pregnancy|Cardiac complications of anesthesia during pregnancy +C0495197|T046|AB|O29.1|ICD10CM|Cardiac complications of anesthesia during pregnancy|Cardiac complications of anesthesia during pregnancy +C0495197|T046|PT|O29.1|ICD10AE|Cardiac complications of anesthesia during pregnancy|Cardiac complications of anesthesia during pregnancy +C2903784|T046|AB|O29.11|ICD10CM|Cardiac arrest due to anesthesia during pregnancy|Cardiac arrest due to anesthesia during pregnancy +C2903784|T046|HT|O29.11|ICD10CM|Cardiac arrest due to anesthesia during pregnancy|Cardiac arrest due to anesthesia during pregnancy +C2903785|T046|AB|O29.111|ICD10CM|Cardiac arrest due to anesth during preg, first trimester|Cardiac arrest due to anesth during preg, first trimester +C2903785|T046|PT|O29.111|ICD10CM|Cardiac arrest due to anesthesia during pregnancy, first trimester|Cardiac arrest due to anesthesia during pregnancy, first trimester +C2903786|T046|AB|O29.112|ICD10CM|Cardiac arrest due to anesth during preg, second trimester|Cardiac arrest due to anesth during preg, second trimester +C2903786|T046|PT|O29.112|ICD10CM|Cardiac arrest due to anesthesia during pregnancy, second trimester|Cardiac arrest due to anesthesia during pregnancy, second trimester +C2903787|T046|AB|O29.113|ICD10CM|Cardiac arrest due to anesth during preg, third trimester|Cardiac arrest due to anesth during preg, third trimester +C2903787|T046|PT|O29.113|ICD10CM|Cardiac arrest due to anesthesia during pregnancy, third trimester|Cardiac arrest due to anesthesia during pregnancy, third trimester +C2903788|T046|AB|O29.119|ICD10CM|Cardiac arrest due to anesth during preg, unsp trimester|Cardiac arrest due to anesth during preg, unsp trimester +C2903788|T046|PT|O29.119|ICD10CM|Cardiac arrest due to anesthesia during pregnancy, unspecified trimester|Cardiac arrest due to anesthesia during pregnancy, unspecified trimester +C2903792|T046|AB|O29.12|ICD10CM|Cardiac failure due to anesthesia during pregnancy|Cardiac failure due to anesthesia during pregnancy +C2903792|T046|HT|O29.12|ICD10CM|Cardiac failure due to anesthesia during pregnancy|Cardiac failure due to anesthesia during pregnancy +C2903789|T046|AB|O29.121|ICD10CM|Cardiac failure due to anesth during preg, first trimester|Cardiac failure due to anesth during preg, first trimester +C2903789|T046|PT|O29.121|ICD10CM|Cardiac failure due to anesthesia during pregnancy, first trimester|Cardiac failure due to anesthesia during pregnancy, first trimester +C2903790|T046|AB|O29.122|ICD10CM|Cardiac failure due to anesth during preg, second trimester|Cardiac failure due to anesth during preg, second trimester +C2903790|T046|PT|O29.122|ICD10CM|Cardiac failure due to anesthesia during pregnancy, second trimester|Cardiac failure due to anesthesia during pregnancy, second trimester +C2903791|T046|AB|O29.123|ICD10CM|Cardiac failure due to anesth during preg, third trimester|Cardiac failure due to anesth during preg, third trimester +C2903791|T046|PT|O29.123|ICD10CM|Cardiac failure due to anesthesia during pregnancy, third trimester|Cardiac failure due to anesthesia during pregnancy, third trimester +C2903792|T046|AB|O29.129|ICD10CM|Cardiac failure due to anesth during preg, unsp trimester|Cardiac failure due to anesth during preg, unsp trimester +C2903792|T046|PT|O29.129|ICD10CM|Cardiac failure due to anesthesia during pregnancy, unspecified trimester|Cardiac failure due to anesthesia during pregnancy, unspecified trimester +C2903796|T046|AB|O29.19|ICD10CM|Other cardiac complications of anesthesia during pregnancy|Other cardiac complications of anesthesia during pregnancy +C2903796|T046|HT|O29.19|ICD10CM|Other cardiac complications of anesthesia during pregnancy|Other cardiac complications of anesthesia during pregnancy +C2903793|T046|AB|O29.191|ICD10CM|Oth cardiac comp of anesth during pregnancy, first trimester|Oth cardiac comp of anesth during pregnancy, first trimester +C2903793|T046|PT|O29.191|ICD10CM|Other cardiac complications of anesthesia during pregnancy, first trimester|Other cardiac complications of anesthesia during pregnancy, first trimester +C2903794|T046|AB|O29.192|ICD10CM|Oth cardiac comp of anesth during preg, second trimester|Oth cardiac comp of anesth during preg, second trimester +C2903794|T046|PT|O29.192|ICD10CM|Other cardiac complications of anesthesia during pregnancy, second trimester|Other cardiac complications of anesthesia during pregnancy, second trimester +C2903795|T046|AB|O29.193|ICD10CM|Oth cardiac comp of anesth during pregnancy, third trimester|Oth cardiac comp of anesth during pregnancy, third trimester +C2903795|T046|PT|O29.193|ICD10CM|Other cardiac complications of anesthesia during pregnancy, third trimester|Other cardiac complications of anesthesia during pregnancy, third trimester +C2903796|T046|AB|O29.199|ICD10CM|Oth cardiac comp of anesth during pregnancy, unsp trimester|Oth cardiac comp of anesth during pregnancy, unsp trimester +C2903796|T046|PT|O29.199|ICD10CM|Other cardiac complications of anesthesia during pregnancy, unspecified trimester|Other cardiac complications of anesthesia during pregnancy, unspecified trimester +C0495198|T046|PT|O29.2|ICD10|Central nervous system complications of anaesthesia during pregnancy|Central nervous system complications of anaesthesia during pregnancy +C0495198|T046|PT|O29.2|ICD10AE|Central nervous system complications of anesthesia during pregnancy|Central nervous system complications of anesthesia during pregnancy +C0495198|T046|HT|O29.2|ICD10CM|Central nervous system complications of anesthesia during pregnancy|Central nervous system complications of anesthesia during pregnancy +C0495198|T046|AB|O29.2|ICD10CM|Cnsl complications of anesthesia during pregnancy|Cnsl complications of anesthesia during pregnancy +C2903800|T046|AB|O29.21|ICD10CM|Cerebral anoxia due to anesthesia during pregnancy|Cerebral anoxia due to anesthesia during pregnancy +C2903800|T046|HT|O29.21|ICD10CM|Cerebral anoxia due to anesthesia during pregnancy|Cerebral anoxia due to anesthesia during pregnancy +C2903797|T046|AB|O29.211|ICD10CM|Cerebral anoxia due to anesth during preg, first trimester|Cerebral anoxia due to anesth during preg, first trimester +C2903797|T046|PT|O29.211|ICD10CM|Cerebral anoxia due to anesthesia during pregnancy, first trimester|Cerebral anoxia due to anesthesia during pregnancy, first trimester +C2903798|T046|AB|O29.212|ICD10CM|Cerebral anoxia due to anesth during preg, second trimester|Cerebral anoxia due to anesth during preg, second trimester +C2903798|T046|PT|O29.212|ICD10CM|Cerebral anoxia due to anesthesia during pregnancy, second trimester|Cerebral anoxia due to anesthesia during pregnancy, second trimester +C2903799|T046|AB|O29.213|ICD10CM|Cerebral anoxia due to anesth during preg, third trimester|Cerebral anoxia due to anesth during preg, third trimester +C2903799|T046|PT|O29.213|ICD10CM|Cerebral anoxia due to anesthesia during pregnancy, third trimester|Cerebral anoxia due to anesthesia during pregnancy, third trimester +C2903800|T046|AB|O29.219|ICD10CM|Cerebral anoxia due to anesth during preg, unsp trimester|Cerebral anoxia due to anesth during preg, unsp trimester +C2903800|T046|PT|O29.219|ICD10CM|Cerebral anoxia due to anesthesia during pregnancy, unspecified trimester|Cerebral anoxia due to anesthesia during pregnancy, unspecified trimester +C2903801|T046|AB|O29.29|ICD10CM|Oth cnsl complications of anesthesia during pregnancy|Oth cnsl complications of anesthesia during pregnancy +C2903801|T046|HT|O29.29|ICD10CM|Other central nervous system complications of anesthesia during pregnancy|Other central nervous system complications of anesthesia during pregnancy +C2903802|T046|AB|O29.291|ICD10CM|Oth cnsl comp of anesth during pregnancy, first trimester|Oth cnsl comp of anesth during pregnancy, first trimester +C2903802|T046|PT|O29.291|ICD10CM|Other central nervous system complications of anesthesia during pregnancy, first trimester|Other central nervous system complications of anesthesia during pregnancy, first trimester +C2903803|T046|AB|O29.292|ICD10CM|Oth cnsl comp of anesth during pregnancy, second trimester|Oth cnsl comp of anesth during pregnancy, second trimester +C2903803|T046|PT|O29.292|ICD10CM|Other central nervous system complications of anesthesia during pregnancy, second trimester|Other central nervous system complications of anesthesia during pregnancy, second trimester +C2903804|T046|AB|O29.293|ICD10CM|Oth cnsl comp of anesth during pregnancy, third trimester|Oth cnsl comp of anesth during pregnancy, third trimester +C2903804|T046|PT|O29.293|ICD10CM|Other central nervous system complications of anesthesia during pregnancy, third trimester|Other central nervous system complications of anesthesia during pregnancy, third trimester +C2903805|T046|AB|O29.299|ICD10CM|Oth cnsl comp of anesthesia during pregnancy, unsp trimester|Oth cnsl comp of anesthesia during pregnancy, unsp trimester +C2903805|T046|PT|O29.299|ICD10CM|Other central nervous system complications of anesthesia during pregnancy, unspecified trimester|Other central nervous system complications of anesthesia during pregnancy, unspecified trimester +C0475578|T046|PT|O29.3|ICD10|Toxic reaction to local anaesthesia during pregnancy|Toxic reaction to local anaesthesia during pregnancy +C0475578|T046|PT|O29.3|ICD10AE|Toxic reaction to local anesthesia during pregnancy|Toxic reaction to local anesthesia during pregnancy +C0475578|T046|HT|O29.3|ICD10CM|Toxic reaction to local anesthesia during pregnancy|Toxic reaction to local anesthesia during pregnancy +C0475578|T046|AB|O29.3|ICD10CM|Toxic reaction to local anesthesia during pregnancy|Toxic reaction to local anesthesia during pregnancy +C0475578|T046|HT|O29.3X|ICD10CM|Toxic reaction to local anesthesia during pregnancy|Toxic reaction to local anesthesia during pregnancy +C0475578|T046|AB|O29.3X|ICD10CM|Toxic reaction to local anesthesia during pregnancy|Toxic reaction to local anesthesia during pregnancy +C2903806|T046|AB|O29.3X1|ICD10CM|Toxic reaction to local anesth during preg, first trimester|Toxic reaction to local anesth during preg, first trimester +C2903806|T046|PT|O29.3X1|ICD10CM|Toxic reaction to local anesthesia during pregnancy, first trimester|Toxic reaction to local anesthesia during pregnancy, first trimester +C2907905|T046|AB|O29.3X2|ICD10CM|Toxic reaction to local anesth during preg, second trimester|Toxic reaction to local anesth during preg, second trimester +C2907905|T046|PT|O29.3X2|ICD10CM|Toxic reaction to local anesthesia during pregnancy, second trimester|Toxic reaction to local anesthesia during pregnancy, second trimester +C2907906|T046|AB|O29.3X3|ICD10CM|Toxic reaction to local anesth during preg, third trimester|Toxic reaction to local anesth during preg, third trimester +C2907906|T046|PT|O29.3X3|ICD10CM|Toxic reaction to local anesthesia during pregnancy, third trimester|Toxic reaction to local anesthesia during pregnancy, third trimester +C0475578|T046|AB|O29.3X9|ICD10CM|Toxic reaction to local anesth during preg, unsp trimester|Toxic reaction to local anesth during preg, unsp trimester +C0475578|T046|PT|O29.3X9|ICD10CM|Toxic reaction to local anesthesia during pregnancy, unspecified trimester|Toxic reaction to local anesthesia during pregnancy, unspecified trimester +C0475523|T046|PT|O29.4|ICD10|Spinal and epidural anaesthesia-induced headache during pregnancy|Spinal and epidural anaesthesia-induced headache during pregnancy +C0475523|T046|AB|O29.4|ICD10CM|Spinal and epidural anesth induced headache during pregnancy|Spinal and epidural anesth induced headache during pregnancy +C0475523|T046|HT|O29.4|ICD10CM|Spinal and epidural anesthesia induced headache during pregnancy|Spinal and epidural anesthesia induced headache during pregnancy +C0475523|T046|PT|O29.4|ICD10AE|Spinal and epidural anesthesia-induced headache during pregnancy|Spinal and epidural anesthesia-induced headache during pregnancy +C0475523|T046|AB|O29.40|ICD10CM|Spinal and epidur anesth induce hdache during preg, unsp tri|Spinal and epidur anesth induce hdache during preg, unsp tri +C0475523|T046|PT|O29.40|ICD10CM|Spinal and epidural anesthesia induced headache during pregnancy, unspecified trimester|Spinal and epidural anesthesia induced headache during pregnancy, unspecified trimester +C2907907|T046|AB|O29.41|ICD10CM|Spinal and epidur anesth induce hdache dur preg, first tri|Spinal and epidur anesth induce hdache dur preg, first tri +C2907907|T046|PT|O29.41|ICD10CM|Spinal and epidural anesthesia induced headache during pregnancy, first trimester|Spinal and epidural anesthesia induced headache during pregnancy, first trimester +C2907908|T046|AB|O29.42|ICD10CM|Spinal and epidur anesth induce hdache dur preg, second tri|Spinal and epidur anesth induce hdache dur preg, second tri +C2907908|T046|PT|O29.42|ICD10CM|Spinal and epidural anesthesia induced headache during pregnancy, second trimester|Spinal and epidural anesthesia induced headache during pregnancy, second trimester +C2907909|T046|AB|O29.43|ICD10CM|Spinal and epidur anesth induce hdache dur preg, third tri|Spinal and epidur anesth induce hdache dur preg, third tri +C2907909|T046|PT|O29.43|ICD10CM|Spinal and epidural anesthesia induced headache during pregnancy, third trimester|Spinal and epidural anesthesia induced headache during pregnancy, third trimester +C0477819|T046|AB|O29.5|ICD10CM|Oth comp of spinal and epidural anesthesia during pregnancy|Oth comp of spinal and epidural anesthesia during pregnancy +C0477819|T046|PT|O29.5|ICD10|Other complications of spinal and epidural anaesthesia during pregnancy|Other complications of spinal and epidural anaesthesia during pregnancy +C0477819|T046|HT|O29.5|ICD10CM|Other complications of spinal and epidural anesthesia during pregnancy|Other complications of spinal and epidural anesthesia during pregnancy +C0477819|T046|PT|O29.5|ICD10AE|Other complications of spinal and epidural anesthesia during pregnancy|Other complications of spinal and epidural anesthesia during pregnancy +C0477819|T046|AB|O29.5X|ICD10CM|Oth comp of spinal and epidural anesthesia during pregnancy|Oth comp of spinal and epidural anesthesia during pregnancy +C0477819|T046|HT|O29.5X|ICD10CM|Other complications of spinal and epidural anesthesia during pregnancy|Other complications of spinal and epidural anesthesia during pregnancy +C2907910|T046|AB|O29.5X1|ICD10CM|Oth comp of spinal and epidur anesth during preg, first tri|Oth comp of spinal and epidur anesth during preg, first tri +C2907910|T046|PT|O29.5X1|ICD10CM|Other complications of spinal and epidural anesthesia during pregnancy, first trimester|Other complications of spinal and epidural anesthesia during pregnancy, first trimester +C2907911|T046|AB|O29.5X2|ICD10CM|Oth comp of spinal and epidur anesth during preg, second tri|Oth comp of spinal and epidur anesth during preg, second tri +C2907911|T046|PT|O29.5X2|ICD10CM|Other complications of spinal and epidural anesthesia during pregnancy, second trimester|Other complications of spinal and epidural anesthesia during pregnancy, second trimester +C2907912|T046|AB|O29.5X3|ICD10CM|Oth comp of spinal and epidur anesth during preg, third tri|Oth comp of spinal and epidur anesth during preg, third tri +C2907912|T046|PT|O29.5X3|ICD10CM|Other complications of spinal and epidural anesthesia during pregnancy, third trimester|Other complications of spinal and epidural anesthesia during pregnancy, third trimester +C2907913|T046|AB|O29.5X9|ICD10CM|Oth comp of spinal and epidural anesth during preg, unsp tri|Oth comp of spinal and epidural anesth during preg, unsp tri +C2907913|T046|PT|O29.5X9|ICD10CM|Other complications of spinal and epidural anesthesia during pregnancy, unspecified trimester|Other complications of spinal and epidural anesthesia during pregnancy, unspecified trimester +C0451810|T046|PT|O29.6|ICD10|Failed or difficult intubation during pregnancy|Failed or difficult intubation during pregnancy +C2907914|T046|AB|O29.6|ICD10CM|Failed or difficult intubation for anesth during pregnancy|Failed or difficult intubation for anesth during pregnancy +C2907914|T046|HT|O29.6|ICD10CM|Failed or difficult intubation for anesthesia during pregnancy|Failed or difficult intubation for anesthesia during pregnancy +C2907915|T046|AB|O29.60|ICD10CM|Failed or difficult intubation for anesth dur preg, unsp tri|Failed or difficult intubation for anesth dur preg, unsp tri +C2907915|T046|PT|O29.60|ICD10CM|Failed or difficult intubation for anesthesia during pregnancy, unspecified trimester|Failed or difficult intubation for anesthesia during pregnancy, unspecified trimester +C2907916|T046|AB|O29.61|ICD10CM|Fail or difficult intubation for anesth dur preg, first tri|Fail or difficult intubation for anesth dur preg, first tri +C2907916|T046|PT|O29.61|ICD10CM|Failed or difficult intubation for anesthesia during pregnancy, first trimester|Failed or difficult intubation for anesthesia during pregnancy, first trimester +C2907917|T046|AB|O29.62|ICD10CM|Fail or difficult intubation for anesth dur preg, second tri|Fail or difficult intubation for anesth dur preg, second tri +C2907917|T046|PT|O29.62|ICD10CM|Failed or difficult intubation for anesthesia during pregnancy, second trimester|Failed or difficult intubation for anesthesia during pregnancy, second trimester +C2907918|T046|AB|O29.63|ICD10CM|Fail or difficult intubation for anesth dur preg, third tri|Fail or difficult intubation for anesth dur preg, third tri +C2907918|T046|PT|O29.63|ICD10CM|Failed or difficult intubation for anesthesia during pregnancy, third trimester|Failed or difficult intubation for anesthesia during pregnancy, third trimester +C0477820|T046|PT|O29.8|ICD10|Other complications of anaesthesia during pregnancy|Other complications of anaesthesia during pregnancy +C0477820|T046|HT|O29.8|ICD10CM|Other complications of anesthesia during pregnancy|Other complications of anesthesia during pregnancy +C0477820|T046|AB|O29.8|ICD10CM|Other complications of anesthesia during pregnancy|Other complications of anesthesia during pregnancy +C0477820|T046|PT|O29.8|ICD10AE|Other complications of anesthesia during pregnancy|Other complications of anesthesia during pregnancy +C0477820|T046|HT|O29.8X|ICD10CM|Other complications of anesthesia during pregnancy|Other complications of anesthesia during pregnancy +C0477820|T046|AB|O29.8X|ICD10CM|Other complications of anesthesia during pregnancy|Other complications of anesthesia during pregnancy +C2907919|T046|AB|O29.8X1|ICD10CM|Oth comp of anesthesia during pregnancy, first trimester|Oth comp of anesthesia during pregnancy, first trimester +C2907919|T046|PT|O29.8X1|ICD10CM|Other complications of anesthesia during pregnancy, first trimester|Other complications of anesthesia during pregnancy, first trimester +C2907920|T046|AB|O29.8X2|ICD10CM|Oth comp of anesthesia during pregnancy, second trimester|Oth comp of anesthesia during pregnancy, second trimester +C2907920|T046|PT|O29.8X2|ICD10CM|Other complications of anesthesia during pregnancy, second trimester|Other complications of anesthesia during pregnancy, second trimester +C2907921|T046|AB|O29.8X3|ICD10CM|Oth comp of anesthesia during pregnancy, third trimester|Oth comp of anesthesia during pregnancy, third trimester +C2907921|T046|PT|O29.8X3|ICD10CM|Other complications of anesthesia during pregnancy, third trimester|Other complications of anesthesia during pregnancy, third trimester +C2907922|T046|AB|O29.8X9|ICD10CM|Oth comp of anesthesia during pregnancy, unsp trimester|Oth comp of anesthesia during pregnancy, unsp trimester +C2907922|T046|PT|O29.8X9|ICD10CM|Other complications of anesthesia during pregnancy, unspecified trimester|Other complications of anesthesia during pregnancy, unspecified trimester +C0495199|T046|PT|O29.9|ICD10|Complication of anaesthesia during pregnancy, unspecified|Complication of anaesthesia during pregnancy, unspecified +C0495199|T046|PT|O29.9|ICD10AE|Complication of anesthesia during pregnancy, unspecified|Complication of anesthesia during pregnancy, unspecified +C0495199|T046|AB|O29.9|ICD10CM|Unspecified complication of anesthesia during pregnancy|Unspecified complication of anesthesia during pregnancy +C0495199|T046|HT|O29.9|ICD10CM|Unspecified complication of anesthesia during pregnancy|Unspecified complication of anesthesia during pregnancy +C2907923|T046|AB|O29.90|ICD10CM|Unsp comp of anesthesia during pregnancy, unsp trimester|Unsp comp of anesthesia during pregnancy, unsp trimester +C2907923|T046|PT|O29.90|ICD10CM|Unspecified complication of anesthesia during pregnancy, unspecified trimester|Unspecified complication of anesthesia during pregnancy, unspecified trimester +C2907924|T046|AB|O29.91|ICD10CM|Unsp comp of anesthesia during pregnancy, first trimester|Unsp comp of anesthesia during pregnancy, first trimester +C2907924|T046|PT|O29.91|ICD10CM|Unspecified complication of anesthesia during pregnancy, first trimester|Unspecified complication of anesthesia during pregnancy, first trimester +C2907925|T046|AB|O29.92|ICD10CM|Unsp comp of anesthesia during pregnancy, second trimester|Unsp comp of anesthesia during pregnancy, second trimester +C2907925|T046|PT|O29.92|ICD10CM|Unspecified complication of anesthesia during pregnancy, second trimester|Unspecified complication of anesthesia during pregnancy, second trimester +C2907926|T046|AB|O29.93|ICD10CM|Unsp comp of anesthesia during pregnancy, third trimester|Unsp comp of anesthesia during pregnancy, third trimester +C2907926|T046|PT|O29.93|ICD10CM|Unspecified complication of anesthesia during pregnancy, third trimester|Unspecified complication of anesthesia during pregnancy, third trimester +C0032989|T033|HT|O30|ICD10|Multiple gestation|Multiple gestation +C0032989|T033|HT|O30|ICD10CM|Multiple gestation|Multiple gestation +C0032989|T033|AB|O30|ICD10CM|Multiple gestation|Multiple gestation +C0477822|T046|HT|O30-O48|ICD10CM|Maternal care related to the fetus and amniotic cavity and possible delivery problems (O30-O48)|Maternal care related to the fetus and amniotic cavity and possible delivery problems (O30-O48) +C0477822|T046|HT|O30-O48.9|ICD10|Maternal care related to fetus and amniotic cavity and possible delivery problems|Maternal care related to fetus and amniotic cavity and possible delivery problems +C0152150|T033|HT|O30.0|ICD10CM|Twin pregnancy|Twin pregnancy +C0152150|T033|AB|O30.0|ICD10CM|Twin pregnancy|Twin pregnancy +C0152150|T033|PT|O30.0|ICD10|Twin pregnancy|Twin pregnancy +C0152150|T033|AB|O30.00|ICD10CM|Twin pregnancy, unsp num plcnta & amnio sacs|Twin pregnancy, unsp num plcnta & amnio sacs +C0152150|T033|HT|O30.00|ICD10CM|Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs|Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs +C2907927|T033|AB|O30.001|ICD10CM|Twin preg, unsp num plcnta & amnio sacs, first trimester|Twin preg, unsp num plcnta & amnio sacs, first trimester +C2907928|T033|AB|O30.002|ICD10CM|Twin preg, unsp num plcnta & amnio sacs, second trimester|Twin preg, unsp num plcnta & amnio sacs, second trimester +C2907929|T033|AB|O30.003|ICD10CM|Twin preg, unsp num plcnta & amnio sacs, third trimester|Twin preg, unsp num plcnta & amnio sacs, third trimester +C0152150|T033|AB|O30.009|ICD10CM|Twin pregnancy, unsp num plcnta & amnio sacs, unsp trimester|Twin pregnancy, unsp num plcnta & amnio sacs, unsp trimester +C3531930|T033|AB|O30.01|ICD10CM|Twin pregnancy, monochorionic/monoamniotic|Twin pregnancy, monochorionic/monoamniotic +C3531930|T033|HT|O30.01|ICD10CM|Twin pregnancy, monochorionic/monoamniotic|Twin pregnancy, monochorionic/monoamniotic +C2977399|T033|ET|O30.01|ICD10CM|Twin pregnancy, one placenta, one amniotic sac|Twin pregnancy, one placenta, one amniotic sac +C2907931|T033|AB|O30.011|ICD10CM|Twin pregnancy, monochorionic/monoamniotic, first trimester|Twin pregnancy, monochorionic/monoamniotic, first trimester +C2907931|T033|PT|O30.011|ICD10CM|Twin pregnancy, monochorionic/monoamniotic, first trimester|Twin pregnancy, monochorionic/monoamniotic, first trimester +C2907932|T046|AB|O30.012|ICD10CM|Twin pregnancy, monochorionic/monoamniotic, second trimester|Twin pregnancy, monochorionic/monoamniotic, second trimester +C2907932|T046|PT|O30.012|ICD10CM|Twin pregnancy, monochorionic/monoamniotic, second trimester|Twin pregnancy, monochorionic/monoamniotic, second trimester +C2907933|T033|AB|O30.013|ICD10CM|Twin pregnancy, monochorionic/monoamniotic, third trimester|Twin pregnancy, monochorionic/monoamniotic, third trimester +C2907933|T033|PT|O30.013|ICD10CM|Twin pregnancy, monochorionic/monoamniotic, third trimester|Twin pregnancy, monochorionic/monoamniotic, third trimester +C2907930|T046|AB|O30.019|ICD10CM|Twin pregnancy, monochorionic/monoamniotic, unsp trimester|Twin pregnancy, monochorionic/monoamniotic, unsp trimester +C2907930|T046|PT|O30.019|ICD10CM|Twin pregnancy, monochorionic/monoamniotic, unspecified trimester|Twin pregnancy, monochorionic/monoamniotic, unspecified trimester +C3264517|T033|AB|O30.02|ICD10CM|Conjoined twin pregnancy|Conjoined twin pregnancy +C3264517|T033|HT|O30.02|ICD10CM|Conjoined twin pregnancy|Conjoined twin pregnancy +C2907934|T033|AB|O30.021|ICD10CM|Conjoined twin pregnancy, first trimester|Conjoined twin pregnancy, first trimester +C2907934|T033|PT|O30.021|ICD10CM|Conjoined twin pregnancy, first trimester|Conjoined twin pregnancy, first trimester +C2907935|T033|AB|O30.022|ICD10CM|Conjoined twin pregnancy, second trimester|Conjoined twin pregnancy, second trimester +C2907935|T033|PT|O30.022|ICD10CM|Conjoined twin pregnancy, second trimester|Conjoined twin pregnancy, second trimester +C2907936|T033|AB|O30.023|ICD10CM|Conjoined twin pregnancy, third trimester|Conjoined twin pregnancy, third trimester +C2907936|T033|PT|O30.023|ICD10CM|Conjoined twin pregnancy, third trimester|Conjoined twin pregnancy, third trimester +C2907937|T033|AB|O30.029|ICD10CM|Conjoined twin pregnancy, unspecified trimester|Conjoined twin pregnancy, unspecified trimester +C2907937|T033|PT|O30.029|ICD10CM|Conjoined twin pregnancy, unspecified trimester|Conjoined twin pregnancy, unspecified trimester +C2977401|T033|AB|O30.03|ICD10CM|Twin pregnancy, monochorionic/diamniotic|Twin pregnancy, monochorionic/diamniotic +C2977401|T033|HT|O30.03|ICD10CM|Twin pregnancy, monochorionic/diamniotic|Twin pregnancy, monochorionic/diamniotic +C2977400|T033|ET|O30.03|ICD10CM|Twin pregnancy, one placenta, two amniotic sacs|Twin pregnancy, one placenta, two amniotic sacs +C2977402|T033|AB|O30.031|ICD10CM|Twin pregnancy, monochorionic/diamniotic, first trimester|Twin pregnancy, monochorionic/diamniotic, first trimester +C2977402|T033|PT|O30.031|ICD10CM|Twin pregnancy, monochorionic/diamniotic, first trimester|Twin pregnancy, monochorionic/diamniotic, first trimester +C2977403|T033|AB|O30.032|ICD10CM|Twin pregnancy, monochorionic/diamniotic, second trimester|Twin pregnancy, monochorionic/diamniotic, second trimester +C2977403|T033|PT|O30.032|ICD10CM|Twin pregnancy, monochorionic/diamniotic, second trimester|Twin pregnancy, monochorionic/diamniotic, second trimester +C2977404|T033|AB|O30.033|ICD10CM|Twin pregnancy, monochorionic/diamniotic, third trimester|Twin pregnancy, monochorionic/diamniotic, third trimester +C2977404|T033|PT|O30.033|ICD10CM|Twin pregnancy, monochorionic/diamniotic, third trimester|Twin pregnancy, monochorionic/diamniotic, third trimester +C2977405|T033|AB|O30.039|ICD10CM|Twin pregnancy, monochorionic/diamniotic, unsp trimester|Twin pregnancy, monochorionic/diamniotic, unsp trimester +C2977405|T033|PT|O30.039|ICD10CM|Twin pregnancy, monochorionic/diamniotic, unspecified trimester|Twin pregnancy, monochorionic/diamniotic, unspecified trimester +C2977407|T033|AB|O30.04|ICD10CM|Twin pregnancy, dichorionic/diamniotic|Twin pregnancy, dichorionic/diamniotic +C2977407|T033|HT|O30.04|ICD10CM|Twin pregnancy, dichorionic/diamniotic|Twin pregnancy, dichorionic/diamniotic +C2977406|T033|ET|O30.04|ICD10CM|Twin pregnancy, two placentae, two amniotic sacs|Twin pregnancy, two placentae, two amniotic sacs +C2977408|T033|AB|O30.041|ICD10CM|Twin pregnancy, dichorionic/diamniotic, first trimester|Twin pregnancy, dichorionic/diamniotic, first trimester +C2977408|T033|PT|O30.041|ICD10CM|Twin pregnancy, dichorionic/diamniotic, first trimester|Twin pregnancy, dichorionic/diamniotic, first trimester +C2977409|T033|AB|O30.042|ICD10CM|Twin pregnancy, dichorionic/diamniotic, second trimester|Twin pregnancy, dichorionic/diamniotic, second trimester +C2977409|T033|PT|O30.042|ICD10CM|Twin pregnancy, dichorionic/diamniotic, second trimester|Twin pregnancy, dichorionic/diamniotic, second trimester +C2977410|T033|AB|O30.043|ICD10CM|Twin pregnancy, dichorionic/diamniotic, third trimester|Twin pregnancy, dichorionic/diamniotic, third trimester +C2977410|T033|PT|O30.043|ICD10CM|Twin pregnancy, dichorionic/diamniotic, third trimester|Twin pregnancy, dichorionic/diamniotic, third trimester +C2977411|T033|AB|O30.049|ICD10CM|Twin pregnancy, dichorionic/diamniotic, unsp trimester|Twin pregnancy, dichorionic/diamniotic, unsp trimester +C2977411|T033|PT|O30.049|ICD10CM|Twin pregnancy, dichorionic/diamniotic, unspecified trimester|Twin pregnancy, dichorionic/diamniotic, unspecified trimester +C2977412|T033|AB|O30.09|ICD10CM|Twin pregnancy, unable to determine num plcnta & amnio sacs|Twin pregnancy, unable to determine num plcnta & amnio sacs +C2977412|T033|HT|O30.09|ICD10CM|Twin pregnancy, unable to determine number of placenta and number of amniotic sacs|Twin pregnancy, unable to determine number of placenta and number of amniotic sacs +C2907939|T033|AB|O30.091|ICD10CM|Twin preg, unable to dtrm num plcnta & amnio sacs, first tri|Twin preg, unable to dtrm num plcnta & amnio sacs, first tri +C2907939|T033|PT|O30.091|ICD10CM|Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, first trimester|Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, first trimester +C2907940|T033|AB|O30.092|ICD10CM|Twin preg, unable to dtrm num plcnta & amnio sacs, 2nd tri|Twin preg, unable to dtrm num plcnta & amnio sacs, 2nd tri +C2907940|T033|PT|O30.092|ICD10CM|Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, second trimester|Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, second trimester +C2907941|T033|AB|O30.093|ICD10CM|Twin preg, unable to dtrm num plcnta & amnio sacs, third tri|Twin preg, unable to dtrm num plcnta & amnio sacs, third tri +C2907941|T033|PT|O30.093|ICD10CM|Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, third trimester|Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, third trimester +C2977413|T033|AB|O30.099|ICD10CM|Twin preg, unable to dtrm num plcnta & amnio sacs, unsp tri|Twin preg, unable to dtrm num plcnta & amnio sacs, unsp tri +C0152151|T046|HT|O30.1|ICD10CM|Triplet pregnancy|Triplet pregnancy +C0152151|T046|AB|O30.1|ICD10CM|Triplet pregnancy|Triplet pregnancy +C0152151|T046|PT|O30.1|ICD10|Triplet pregnancy|Triplet pregnancy +C2977414|T033|AB|O30.10|ICD10CM|Triplet pregnancy, unsp num plcnta & amnio sacs|Triplet pregnancy, unsp num plcnta & amnio sacs +C2977414|T033|HT|O30.10|ICD10CM|Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs|Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs +C2977415|T033|AB|O30.101|ICD10CM|Triplet preg, unsp num plcnta & amnio sacs, first trimester|Triplet preg, unsp num plcnta & amnio sacs, first trimester +C2977416|T033|AB|O30.102|ICD10CM|Triplet preg, unsp num plcnta & amnio sacs, second trimester|Triplet preg, unsp num plcnta & amnio sacs, second trimester +C2977417|T033|AB|O30.103|ICD10CM|Triplet preg, unsp num plcnta & amnio sacs, third trimester|Triplet preg, unsp num plcnta & amnio sacs, third trimester +C2977418|T033|AB|O30.109|ICD10CM|Triplet preg, unsp num plcnta & amnio sacs, unsp trimester|Triplet preg, unsp num plcnta & amnio sacs, unsp trimester +C2977419|T033|AB|O30.11|ICD10CM|Triplet pregnancy with two or more monochorionic fetuses|Triplet pregnancy with two or more monochorionic fetuses +C2977419|T033|HT|O30.11|ICD10CM|Triplet pregnancy with two or more monochorionic fetuses|Triplet pregnancy with two or more monochorionic fetuses +C2977420|T033|AB|O30.111|ICD10CM|Triplet preg w two or more monochorionic fetuses, first tri|Triplet preg w two or more monochorionic fetuses, first tri +C2977420|T033|PT|O30.111|ICD10CM|Triplet pregnancy with two or more monochorionic fetuses, first trimester|Triplet pregnancy with two or more monochorionic fetuses, first trimester +C2977421|T033|AB|O30.112|ICD10CM|Triplet preg w two or more monochorionic fetuses, second tri|Triplet preg w two or more monochorionic fetuses, second tri +C2977421|T033|PT|O30.112|ICD10CM|Triplet pregnancy with two or more monochorionic fetuses, second trimester|Triplet pregnancy with two or more monochorionic fetuses, second trimester +C2977422|T033|AB|O30.113|ICD10CM|Triplet preg w two or more monochorionic fetuses, third tri|Triplet preg w two or more monochorionic fetuses, third tri +C2977422|T033|PT|O30.113|ICD10CM|Triplet pregnancy with two or more monochorionic fetuses, third trimester|Triplet pregnancy with two or more monochorionic fetuses, third trimester +C2977423|T033|AB|O30.119|ICD10CM|Triplet preg w two or more monochorionic fetuses, unsp tri|Triplet preg w two or more monochorionic fetuses, unsp tri +C2977423|T033|PT|O30.119|ICD10CM|Triplet pregnancy with two or more monochorionic fetuses, unspecified trimester|Triplet pregnancy with two or more monochorionic fetuses, unspecified trimester +C2977424|T033|AB|O30.12|ICD10CM|Triplet pregnancy with two or more monoamniotic fetuses|Triplet pregnancy with two or more monoamniotic fetuses +C2977424|T033|HT|O30.12|ICD10CM|Triplet pregnancy with two or more monoamniotic fetuses|Triplet pregnancy with two or more monoamniotic fetuses +C2977425|T033|AB|O30.121|ICD10CM|Triplet preg w two or more monoamnio fetuses, first tri|Triplet preg w two or more monoamnio fetuses, first tri +C2977425|T033|PT|O30.121|ICD10CM|Triplet pregnancy with two or more monoamniotic fetuses, first trimester|Triplet pregnancy with two or more monoamniotic fetuses, first trimester +C2977426|T033|AB|O30.122|ICD10CM|Triplet preg w two or more monoamnio fetuses, second tri|Triplet preg w two or more monoamnio fetuses, second tri +C2977426|T033|PT|O30.122|ICD10CM|Triplet pregnancy with two or more monoamniotic fetuses, second trimester|Triplet pregnancy with two or more monoamniotic fetuses, second trimester +C2977427|T033|AB|O30.123|ICD10CM|Triplet preg w two or more monoamnio fetuses, third tri|Triplet preg w two or more monoamnio fetuses, third tri +C2977427|T033|PT|O30.123|ICD10CM|Triplet pregnancy with two or more monoamniotic fetuses, third trimester|Triplet pregnancy with two or more monoamniotic fetuses, third trimester +C2977428|T033|AB|O30.129|ICD10CM|Triplet preg w two or more monoamnio fetuses, unsp trimester|Triplet preg w two or more monoamnio fetuses, unsp trimester +C2977428|T033|PT|O30.129|ICD10CM|Triplet pregnancy with two or more monoamniotic fetuses, unspecified trimester|Triplet pregnancy with two or more monoamniotic fetuses, unspecified trimester +C4703293|T033|HT|O30.13|ICD10CM|Triplet pregnancy, trichorionic/triamniotic|Triplet pregnancy, trichorionic/triamniotic +C4703293|T033|AB|O30.13|ICD10CM|Triplet pregnancy, trichorionic/triamniotic|Triplet pregnancy, trichorionic/triamniotic +C4552712|T033|AB|O30.131|ICD10CM|Triplet pregnancy, trichorionic/triamniotic, first trimester|Triplet pregnancy, trichorionic/triamniotic, first trimester +C4552712|T033|PT|O30.131|ICD10CM|Triplet pregnancy, trichorionic/triamniotic, first trimester|Triplet pregnancy, trichorionic/triamniotic, first trimester +C4552713|T033|AB|O30.132|ICD10CM|Triplet preg, trichorionic/triamniotic, second trimester|Triplet preg, trichorionic/triamniotic, second trimester +C4552713|T033|PT|O30.132|ICD10CM|Triplet pregnancy, trichorionic/triamniotic, second trimester|Triplet pregnancy, trichorionic/triamniotic, second trimester +C4552714|T033|AB|O30.133|ICD10CM|Triplet pregnancy, trichorionic/triamniotic, third trimester|Triplet pregnancy, trichorionic/triamniotic, third trimester +C4552714|T033|PT|O30.133|ICD10CM|Triplet pregnancy, trichorionic/triamniotic, third trimester|Triplet pregnancy, trichorionic/triamniotic, third trimester +C4552715|T033|AB|O30.139|ICD10CM|Triplet pregnancy, trichorionic/triamniotic, unsp trimester|Triplet pregnancy, trichorionic/triamniotic, unsp trimester +C4552715|T033|PT|O30.139|ICD10CM|Triplet pregnancy, trichorionic/triamniotic, unspecified trimester|Triplet pregnancy, trichorionic/triamniotic, unspecified trimester +C2977429|T033|HT|O30.19|ICD10CM|Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs|Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs +C2977429|T033|AB|O30.19|ICD10CM|Triplet pregnancy, unable to dtrm num plcnta & amnio sacs|Triplet pregnancy, unable to dtrm num plcnta & amnio sacs +C2977430|T033|AB|O30.191|ICD10CM|Trp preg, unable to dtrm num plcnta & amnio sacs, first tri|Trp preg, unable to dtrm num plcnta & amnio sacs, first tri +C2977431|T033|AB|O30.192|ICD10CM|Trp preg, unable to dtrm num plcnta & amnio sacs, second tri|Trp preg, unable to dtrm num plcnta & amnio sacs, second tri +C2977432|T033|AB|O30.193|ICD10CM|Trp preg, unable to dtrm num plcnta & amnio sacs, third tri|Trp preg, unable to dtrm num plcnta & amnio sacs, third tri +C2977433|T033|AB|O30.199|ICD10CM|Trp preg, unable to dtrm num plcnta & amnio sacs, unsp tri|Trp preg, unable to dtrm num plcnta & amnio sacs, unsp tri +C0152152|T046|PT|O30.2|ICD10|Quadruplet pregnancy|Quadruplet pregnancy +C0152152|T046|HT|O30.2|ICD10CM|Quadruplet pregnancy|Quadruplet pregnancy +C0152152|T046|AB|O30.2|ICD10CM|Quadruplet pregnancy|Quadruplet pregnancy +C2977434|T033|AB|O30.20|ICD10CM|Quadruplet pregnancy, unsp num plcnta & amnio sacs|Quadruplet pregnancy, unsp num plcnta & amnio sacs +C2977434|T033|HT|O30.20|ICD10CM|Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs|Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs +C2977435|T033|AB|O30.201|ICD10CM|Quad preg, unsp num plcnta & amnio sacs, first trimester|Quad preg, unsp num plcnta & amnio sacs, first trimester +C2977436|T033|AB|O30.202|ICD10CM|Quad preg, unsp num plcnta & amnio sacs, second trimester|Quad preg, unsp num plcnta & amnio sacs, second trimester +C2977437|T033|AB|O30.203|ICD10CM|Quad preg, unsp num plcnta & amnio sacs, third trimester|Quad preg, unsp num plcnta & amnio sacs, third trimester +C2977438|T033|AB|O30.209|ICD10CM|Quad pregnancy, unsp num plcnta & amnio sacs, unsp trimester|Quad pregnancy, unsp num plcnta & amnio sacs, unsp trimester +C2977439|T033|AB|O30.21|ICD10CM|Quadruplet pregnancy with two or more monochorionic fetuses|Quadruplet pregnancy with two or more monochorionic fetuses +C2977439|T033|HT|O30.21|ICD10CM|Quadruplet pregnancy with two or more monochorionic fetuses|Quadruplet pregnancy with two or more monochorionic fetuses +C2977440|T033|AB|O30.211|ICD10CM|Quad preg w two or more monochorionic fetuses, first tri|Quad preg w two or more monochorionic fetuses, first tri +C2977440|T033|PT|O30.211|ICD10CM|Quadruplet pregnancy with two or more monochorionic fetuses, first trimester|Quadruplet pregnancy with two or more monochorionic fetuses, first trimester +C2977441|T033|AB|O30.212|ICD10CM|Quad preg w two or more monochorionic fetuses, second tri|Quad preg w two or more monochorionic fetuses, second tri +C2977441|T033|PT|O30.212|ICD10CM|Quadruplet pregnancy with two or more monochorionic fetuses, second trimester|Quadruplet pregnancy with two or more monochorionic fetuses, second trimester +C2977442|T033|AB|O30.213|ICD10CM|Quad preg w two or more monochorionic fetuses, third tri|Quad preg w two or more monochorionic fetuses, third tri +C2977442|T033|PT|O30.213|ICD10CM|Quadruplet pregnancy with two or more monochorionic fetuses, third trimester|Quadruplet pregnancy with two or more monochorionic fetuses, third trimester +C2977443|T033|AB|O30.219|ICD10CM|Quad preg w two or more monochorionic fetuses, unsp tri|Quad preg w two or more monochorionic fetuses, unsp tri +C2977443|T033|PT|O30.219|ICD10CM|Quadruplet pregnancy with two or more monochorionic fetuses, unspecified trimester|Quadruplet pregnancy with two or more monochorionic fetuses, unspecified trimester +C2977444|T033|AB|O30.22|ICD10CM|Quadruplet pregnancy with two or more monoamniotic fetuses|Quadruplet pregnancy with two or more monoamniotic fetuses +C2977444|T033|HT|O30.22|ICD10CM|Quadruplet pregnancy with two or more monoamniotic fetuses|Quadruplet pregnancy with two or more monoamniotic fetuses +C2977445|T033|AB|O30.221|ICD10CM|Quad preg w two or more monoamnio fetuses, first trimester|Quad preg w two or more monoamnio fetuses, first trimester +C2977445|T033|PT|O30.221|ICD10CM|Quadruplet pregnancy with two or more monoamniotic fetuses, first trimester|Quadruplet pregnancy with two or more monoamniotic fetuses, first trimester +C2977446|T033|AB|O30.222|ICD10CM|Quad preg w two or more monoamnio fetuses, second trimester|Quad preg w two or more monoamnio fetuses, second trimester +C2977446|T033|PT|O30.222|ICD10CM|Quadruplet pregnancy with two or more monoamniotic fetuses, second trimester|Quadruplet pregnancy with two or more monoamniotic fetuses, second trimester +C2977447|T033|AB|O30.223|ICD10CM|Quad preg w two or more monoamnio fetuses, third trimester|Quad preg w two or more monoamnio fetuses, third trimester +C2977447|T033|PT|O30.223|ICD10CM|Quadruplet pregnancy with two or more monoamniotic fetuses, third trimester|Quadruplet pregnancy with two or more monoamniotic fetuses, third trimester +C2977448|T033|AB|O30.229|ICD10CM|Quad preg w two or more monoamnio fetuses, unsp trimester|Quad preg w two or more monoamnio fetuses, unsp trimester +C2977448|T033|PT|O30.229|ICD10CM|Quadruplet pregnancy with two or more monoamniotic fetuses, unspecified trimester|Quadruplet pregnancy with two or more monoamniotic fetuses, unspecified trimester +C4718790|T033|AB|O30.23|ICD10CM|Quadruplet pregnancy, quadrachorionic/quadra-amniotic|Quadruplet pregnancy, quadrachorionic/quadra-amniotic +C4718790|T033|HT|O30.23|ICD10CM|Quadruplet pregnancy, quadrachorionic/quadra-amniotic|Quadruplet pregnancy, quadrachorionic/quadra-amniotic +C4552716|T033|AB|O30.231|ICD10CM|Quad preg, quadrachorionic/quadra-amniotic, first trimester|Quad preg, quadrachorionic/quadra-amniotic, first trimester +C4552716|T033|PT|O30.231|ICD10CM|Quadruplet pregnancy, quadrachorionic/quadra-amniotic, first trimester|Quadruplet pregnancy, quadrachorionic/quadra-amniotic, first trimester +C4552717|T033|AB|O30.232|ICD10CM|Quad preg, quadrachorionic/quadra-amniotic, second trimester|Quad preg, quadrachorionic/quadra-amniotic, second trimester +C4552717|T033|PT|O30.232|ICD10CM|Quadruplet pregnancy, quadrachorionic/quadra-amniotic, second trimester|Quadruplet pregnancy, quadrachorionic/quadra-amniotic, second trimester +C4552718|T033|AB|O30.233|ICD10CM|Quad preg, quadrachorionic/quadra-amniotic, third trimester|Quad preg, quadrachorionic/quadra-amniotic, third trimester +C4552718|T033|PT|O30.233|ICD10CM|Quadruplet pregnancy, quadrachorionic/quadra-amniotic, third trimester|Quadruplet pregnancy, quadrachorionic/quadra-amniotic, third trimester +C4552719|T033|AB|O30.239|ICD10CM|Quad preg, quadrachorionic/quadra-amniotic, unsp trimester|Quad preg, quadrachorionic/quadra-amniotic, unsp trimester +C4552719|T033|PT|O30.239|ICD10CM|Quadruplet pregnancy, quadrachorionic/quadra-amniotic, unspecified trimester|Quadruplet pregnancy, quadrachorionic/quadra-amniotic, unspecified trimester +C2977449|T033|AB|O30.29|ICD10CM|Quad pregnancy, unable to determine num plcnta & amnio sacs|Quad pregnancy, unable to determine num plcnta & amnio sacs +C2977449|T033|HT|O30.29|ICD10CM|Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs|Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs +C2977450|T033|AB|O30.291|ICD10CM|Quad preg, unable to dtrm num plcnta & amnio sacs, first tri|Quad preg, unable to dtrm num plcnta & amnio sacs, first tri +C2977451|T033|AB|O30.292|ICD10CM|Quad preg, unable to dtrm num plcnta & amnio sacs, 2nd tri|Quad preg, unable to dtrm num plcnta & amnio sacs, 2nd tri +C2977452|T033|AB|O30.293|ICD10CM|Quad preg, unable to dtrm num plcnta & amnio sacs, third tri|Quad preg, unable to dtrm num plcnta & amnio sacs, third tri +C2977453|T033|AB|O30.299|ICD10CM|Quad preg, unable to dtrm num plcnta & amnio sacs, unsp tri|Quad preg, unable to dtrm num plcnta & amnio sacs, unsp tri +C2977454|T033|ET|O30.8|ICD10CM|Multiple gestation pregnancy greater then quadruplets|Multiple gestation pregnancy greater then quadruplets +C0156917|T033|HT|O30.8|ICD10CM|Other specified multiple gestation|Other specified multiple gestation +C0156917|T033|AB|O30.8|ICD10CM|Other specified multiple gestation|Other specified multiple gestation +C2921363|T033|AB|O30.80|ICD10CM|Oth multiple gestation, unsp num plcnta & amnio sacs|Oth multiple gestation, unsp num plcnta & amnio sacs +C2977455|T033|AB|O30.801|ICD10CM|Oth multiple gest, unsp num plcnta & amnio sacs, first tri|Oth multiple gest, unsp num plcnta & amnio sacs, first tri +C2977456|T033|AB|O30.802|ICD10CM|Oth multiple gest, unsp num plcnta & amnio sacs, second tri|Oth multiple gest, unsp num plcnta & amnio sacs, second tri +C2977457|T033|AB|O30.803|ICD10CM|Oth multiple gest, unsp num plcnta & amnio sacs, third tri|Oth multiple gest, unsp num plcnta & amnio sacs, third tri +C2977458|T033|AB|O30.809|ICD10CM|Oth multiple gest, unsp num plcnta & amnio sacs, unsp tri|Oth multiple gest, unsp num plcnta & amnio sacs, unsp tri +C2977459|T033|AB|O30.81|ICD10CM|Oth multiple gestation w two or more monochorionic fetuses|Oth multiple gestation w two or more monochorionic fetuses +C2977459|T033|HT|O30.81|ICD10CM|Other specified multiple gestation with two or more monochorionic fetuses|Other specified multiple gestation with two or more monochorionic fetuses +C2977460|T033|AB|O30.811|ICD10CM|Oth mult gest w two or more monochorionic fetuses, first tri|Oth mult gest w two or more monochorionic fetuses, first tri +C2977460|T033|PT|O30.811|ICD10CM|Other specified multiple gestation with two or more monochorionic fetuses, first trimester|Other specified multiple gestation with two or more monochorionic fetuses, first trimester +C2977461|T033|AB|O30.812|ICD10CM|Oth mult gest w two or more monochorionic fetuses, 2nd tri|Oth mult gest w two or more monochorionic fetuses, 2nd tri +C2977461|T033|PT|O30.812|ICD10CM|Other specified multiple gestation with two or more monochorionic fetuses, second trimester|Other specified multiple gestation with two or more monochorionic fetuses, second trimester +C2977462|T033|AB|O30.813|ICD10CM|Oth mult gest w two or more monochorionic fetuses, third tri|Oth mult gest w two or more monochorionic fetuses, third tri +C2977462|T033|PT|O30.813|ICD10CM|Other specified multiple gestation with two or more monochorionic fetuses, third trimester|Other specified multiple gestation with two or more monochorionic fetuses, third trimester +C2977463|T033|AB|O30.819|ICD10CM|Oth mult gest w two or more monochorionic fetuses, unsp tri|Oth mult gest w two or more monochorionic fetuses, unsp tri +C2977463|T033|PT|O30.819|ICD10CM|Other specified multiple gestation with two or more monochorionic fetuses, unspecified trimester|Other specified multiple gestation with two or more monochorionic fetuses, unspecified trimester +C2977464|T033|AB|O30.82|ICD10CM|Oth multiple gestation with two or more monoamniotic fetuses|Oth multiple gestation with two or more monoamniotic fetuses +C2977464|T033|HT|O30.82|ICD10CM|Other specified multiple gestation with two or more monoamniotic fetuses|Other specified multiple gestation with two or more monoamniotic fetuses +C2977465|T033|AB|O30.821|ICD10CM|Oth multiple gest w two or more monoamnio fetuses, first tri|Oth multiple gest w two or more monoamnio fetuses, first tri +C2977465|T033|PT|O30.821|ICD10CM|Other specified multiple gestation with two or more monoamniotic fetuses, first trimester|Other specified multiple gestation with two or more monoamniotic fetuses, first trimester +C2977466|T033|AB|O30.822|ICD10CM|Oth mult gest w two or more monoamnio fetuses, second tri|Oth mult gest w two or more monoamnio fetuses, second tri +C2977466|T033|PT|O30.822|ICD10CM|Other specified multiple gestation with two or more monoamniotic fetuses, second trimester|Other specified multiple gestation with two or more monoamniotic fetuses, second trimester +C2977467|T033|AB|O30.823|ICD10CM|Oth multiple gest w two or more monoamnio fetuses, third tri|Oth multiple gest w two or more monoamnio fetuses, third tri +C2977467|T033|PT|O30.823|ICD10CM|Other specified multiple gestation with two or more monoamniotic fetuses, third trimester|Other specified multiple gestation with two or more monoamniotic fetuses, third trimester +C2977468|T033|AB|O30.829|ICD10CM|Oth multiple gest w two or more monoamnio fetuses, unsp tri|Oth multiple gest w two or more monoamnio fetuses, unsp tri +C2977468|T033|PT|O30.829|ICD10CM|Other specified multiple gestation with two or more monoamniotic fetuses, unspecified trimester|Other specified multiple gestation with two or more monoamniotic fetuses, unspecified trimester +C4718794|T033|ET|O30.83|ICD10CM|Heptachorionic, hepta-amniotic pregnancy (septuplets)|Heptachorionic, hepta-amniotic pregnancy (septuplets) +C4718793|T033|ET|O30.83|ICD10CM|Hexachorionic, hexa-amniotic pregnancy (sextuplets)|Hexachorionic, hexa-amniotic pregnancy (sextuplets) +C4718791|T033|AB|O30.83|ICD10CM|Oth mult gest, num of chorions and amnions = num of fetuses|Oth mult gest, num of chorions and amnions = num of fetuses +C4718792|T033|ET|O30.83|ICD10CM|Pentachorionic, penta-amniotic pregnancy (quintuplets)|Pentachorionic, penta-amniotic pregnancy (quintuplets) +C4552720|T033|AB|O30.831|ICD10CM|Oth mult gest, num chorions & amnions = num ftses, 1st tri|Oth mult gest, num chorions & amnions = num ftses, 1st tri +C4552721|T033|AB|O30.832|ICD10CM|Oth mult gest, num chorions & amnions = num ftses, 2nd tri|Oth mult gest, num chorions & amnions = num ftses, 2nd tri +C4552722|T033|AB|O30.833|ICD10CM|Oth mult gest, num chorions & amnions = num ftses, 3rd tri|Oth mult gest, num chorions & amnions = num ftses, 3rd tri +C4552723|T033|AB|O30.839|ICD10CM|Oth mult gest, num chorions & amnions = num ftses, unsp tri|Oth mult gest, num chorions & amnions = num ftses, unsp tri +C2921366|T033|AB|O30.89|ICD10CM|Oth multiple gest, unable to dtrm num plcnta & amnio sacs|Oth multiple gest, unable to dtrm num plcnta & amnio sacs +C2977469|T033|AB|O30.891|ICD10CM|Oth mult gest, unab to dtrm num plcnta & amnio sacs, 1st tri|Oth mult gest, unab to dtrm num plcnta & amnio sacs, 1st tri +C2977470|T033|AB|O30.892|ICD10CM|Oth mult gest, unab to dtrm num plcnta & amnio sacs, 2nd tri|Oth mult gest, unab to dtrm num plcnta & amnio sacs, 2nd tri +C2977471|T033|AB|O30.893|ICD10CM|Oth mult gest, unab to dtrm num plcnta & amnio sacs, 3rd tri|Oth mult gest, unab to dtrm num plcnta & amnio sacs, 3rd tri +C2977472|T033|AB|O30.899|ICD10CM|Oth mult gest,unab to dtrm num plcnta & amnio sacs, unsp tri|Oth mult gest,unab to dtrm num plcnta & amnio sacs, unsp tri +C0032989|T033|HT|O30.9|ICD10CM|Multiple gestation, unspecified|Multiple gestation, unspecified +C0032989|T033|AB|O30.9|ICD10CM|Multiple gestation, unspecified|Multiple gestation, unspecified +C0032989|T033|PT|O30.9|ICD10|Multiple gestation, unspecified|Multiple gestation, unspecified +C0032989|T033|ET|O30.9|ICD10CM|Multiple pregnancy NOS|Multiple pregnancy NOS +C0032989|T033|AB|O30.90|ICD10CM|Multiple gestation, unspecified, unspecified trimester|Multiple gestation, unspecified, unspecified trimester +C0032989|T033|PT|O30.90|ICD10CM|Multiple gestation, unspecified, unspecified trimester|Multiple gestation, unspecified, unspecified trimester +C2907953|T046|AB|O30.91|ICD10CM|Multiple gestation, unspecified, first trimester|Multiple gestation, unspecified, first trimester +C2907953|T046|PT|O30.91|ICD10CM|Multiple gestation, unspecified, first trimester|Multiple gestation, unspecified, first trimester +C2907954|T046|AB|O30.92|ICD10CM|Multiple gestation, unspecified, second trimester|Multiple gestation, unspecified, second trimester +C2907954|T046|PT|O30.92|ICD10CM|Multiple gestation, unspecified, second trimester|Multiple gestation, unspecified, second trimester +C2907955|T046|AB|O30.93|ICD10CM|Multiple gestation, unspecified, third trimester|Multiple gestation, unspecified, third trimester +C2907955|T046|PT|O30.93|ICD10CM|Multiple gestation, unspecified, third trimester|Multiple gestation, unspecified, third trimester +C0451804|T046|HT|O31|ICD10|Complications specific to multiple gestation|Complications specific to multiple gestation +C0451804|T046|HT|O31|ICD10CM|Complications specific to multiple gestation|Complications specific to multiple gestation +C0451804|T046|AB|O31|ICD10CM|Complications specific to multiple gestation|Complications specific to multiple gestation +C0156724|T019|ET|O31.0|ICD10CM|Fetus compressus|Fetus compressus +C0156724|T019|HT|O31.0|ICD10CM|Papyraceous fetus|Papyraceous fetus +C0156724|T019|AB|O31.0|ICD10CM|Papyraceous fetus|Papyraceous fetus +C0156724|T019|PT|O31.0|ICD10|Papyraceous fetus|Papyraceous fetus +C2907956|T019|AB|O31.00|ICD10CM|Papyraceous fetus, unspecified trimester|Papyraceous fetus, unspecified trimester +C2907956|T019|HT|O31.00|ICD10CM|Papyraceous fetus, unspecified trimester|Papyraceous fetus, unspecified trimester +C2907957|T019|AB|O31.00X0|ICD10CM|Papyraceous fetus, unsp trimester, not applicable or unsp|Papyraceous fetus, unsp trimester, not applicable or unsp +C2907957|T019|PT|O31.00X0|ICD10CM|Papyraceous fetus, unspecified trimester, not applicable or unspecified|Papyraceous fetus, unspecified trimester, not applicable or unspecified +C2907958|T019|AB|O31.00X1|ICD10CM|Papyraceous fetus, unspecified trimester, fetus 1|Papyraceous fetus, unspecified trimester, fetus 1 +C2907958|T019|PT|O31.00X1|ICD10CM|Papyraceous fetus, unspecified trimester, fetus 1|Papyraceous fetus, unspecified trimester, fetus 1 +C2907959|T019|AB|O31.00X2|ICD10CM|Papyraceous fetus, unspecified trimester, fetus 2|Papyraceous fetus, unspecified trimester, fetus 2 +C2907959|T019|PT|O31.00X2|ICD10CM|Papyraceous fetus, unspecified trimester, fetus 2|Papyraceous fetus, unspecified trimester, fetus 2 +C2907960|T019|AB|O31.00X3|ICD10CM|Papyraceous fetus, unspecified trimester, fetus 3|Papyraceous fetus, unspecified trimester, fetus 3 +C2907960|T019|PT|O31.00X3|ICD10CM|Papyraceous fetus, unspecified trimester, fetus 3|Papyraceous fetus, unspecified trimester, fetus 3 +C2907961|T019|AB|O31.00X4|ICD10CM|Papyraceous fetus, unspecified trimester, fetus 4|Papyraceous fetus, unspecified trimester, fetus 4 +C2907961|T019|PT|O31.00X4|ICD10CM|Papyraceous fetus, unspecified trimester, fetus 4|Papyraceous fetus, unspecified trimester, fetus 4 +C2907962|T019|AB|O31.00X5|ICD10CM|Papyraceous fetus, unspecified trimester, fetus 5|Papyraceous fetus, unspecified trimester, fetus 5 +C2907962|T019|PT|O31.00X5|ICD10CM|Papyraceous fetus, unspecified trimester, fetus 5|Papyraceous fetus, unspecified trimester, fetus 5 +C2907963|T019|AB|O31.00X9|ICD10CM|Papyraceous fetus, unspecified trimester, other fetus|Papyraceous fetus, unspecified trimester, other fetus +C2907963|T019|PT|O31.00X9|ICD10CM|Papyraceous fetus, unspecified trimester, other fetus|Papyraceous fetus, unspecified trimester, other fetus +C2907964|T019|AB|O31.01|ICD10CM|Papyraceous fetus, first trimester|Papyraceous fetus, first trimester +C2907964|T019|HT|O31.01|ICD10CM|Papyraceous fetus, first trimester|Papyraceous fetus, first trimester +C2907965|T019|AB|O31.01X0|ICD10CM|Papyraceous fetus, first trimester, not applicable or unsp|Papyraceous fetus, first trimester, not applicable or unsp +C2907965|T019|PT|O31.01X0|ICD10CM|Papyraceous fetus, first trimester, not applicable or unspecified|Papyraceous fetus, first trimester, not applicable or unspecified +C2907966|T019|AB|O31.01X1|ICD10CM|Papyraceous fetus, first trimester, fetus 1|Papyraceous fetus, first trimester, fetus 1 +C2907966|T019|PT|O31.01X1|ICD10CM|Papyraceous fetus, first trimester, fetus 1|Papyraceous fetus, first trimester, fetus 1 +C2907967|T019|AB|O31.01X2|ICD10CM|Papyraceous fetus, first trimester, fetus 2|Papyraceous fetus, first trimester, fetus 2 +C2907967|T019|PT|O31.01X2|ICD10CM|Papyraceous fetus, first trimester, fetus 2|Papyraceous fetus, first trimester, fetus 2 +C2907968|T019|AB|O31.01X3|ICD10CM|Papyraceous fetus, first trimester, fetus 3|Papyraceous fetus, first trimester, fetus 3 +C2907968|T019|PT|O31.01X3|ICD10CM|Papyraceous fetus, first trimester, fetus 3|Papyraceous fetus, first trimester, fetus 3 +C2907969|T019|AB|O31.01X4|ICD10CM|Papyraceous fetus, first trimester, fetus 4|Papyraceous fetus, first trimester, fetus 4 +C2907969|T019|PT|O31.01X4|ICD10CM|Papyraceous fetus, first trimester, fetus 4|Papyraceous fetus, first trimester, fetus 4 +C2907970|T019|AB|O31.01X5|ICD10CM|Papyraceous fetus, first trimester, fetus 5|Papyraceous fetus, first trimester, fetus 5 +C2907970|T019|PT|O31.01X5|ICD10CM|Papyraceous fetus, first trimester, fetus 5|Papyraceous fetus, first trimester, fetus 5 +C2907971|T019|AB|O31.01X9|ICD10CM|Papyraceous fetus, first trimester, other fetus|Papyraceous fetus, first trimester, other fetus +C2907971|T019|PT|O31.01X9|ICD10CM|Papyraceous fetus, first trimester, other fetus|Papyraceous fetus, first trimester, other fetus +C2907972|T019|AB|O31.02|ICD10CM|Papyraceous fetus, second trimester|Papyraceous fetus, second trimester +C2907972|T019|HT|O31.02|ICD10CM|Papyraceous fetus, second trimester|Papyraceous fetus, second trimester +C2907973|T019|AB|O31.02X0|ICD10CM|Papyraceous fetus, second trimester, not applicable or unsp|Papyraceous fetus, second trimester, not applicable or unsp +C2907973|T019|PT|O31.02X0|ICD10CM|Papyraceous fetus, second trimester, not applicable or unspecified|Papyraceous fetus, second trimester, not applicable or unspecified +C2907974|T019|AB|O31.02X1|ICD10CM|Papyraceous fetus, second trimester, fetus 1|Papyraceous fetus, second trimester, fetus 1 +C2907974|T019|PT|O31.02X1|ICD10CM|Papyraceous fetus, second trimester, fetus 1|Papyraceous fetus, second trimester, fetus 1 +C2907975|T019|AB|O31.02X2|ICD10CM|Papyraceous fetus, second trimester, fetus 2|Papyraceous fetus, second trimester, fetus 2 +C2907975|T019|PT|O31.02X2|ICD10CM|Papyraceous fetus, second trimester, fetus 2|Papyraceous fetus, second trimester, fetus 2 +C2907976|T019|AB|O31.02X3|ICD10CM|Papyraceous fetus, second trimester, fetus 3|Papyraceous fetus, second trimester, fetus 3 +C2907976|T019|PT|O31.02X3|ICD10CM|Papyraceous fetus, second trimester, fetus 3|Papyraceous fetus, second trimester, fetus 3 +C2907977|T019|AB|O31.02X4|ICD10CM|Papyraceous fetus, second trimester, fetus 4|Papyraceous fetus, second trimester, fetus 4 +C2907977|T019|PT|O31.02X4|ICD10CM|Papyraceous fetus, second trimester, fetus 4|Papyraceous fetus, second trimester, fetus 4 +C2907978|T019|AB|O31.02X5|ICD10CM|Papyraceous fetus, second trimester, fetus 5|Papyraceous fetus, second trimester, fetus 5 +C2907978|T019|PT|O31.02X5|ICD10CM|Papyraceous fetus, second trimester, fetus 5|Papyraceous fetus, second trimester, fetus 5 +C2907979|T019|AB|O31.02X9|ICD10CM|Papyraceous fetus, second trimester, other fetus|Papyraceous fetus, second trimester, other fetus +C2907979|T019|PT|O31.02X9|ICD10CM|Papyraceous fetus, second trimester, other fetus|Papyraceous fetus, second trimester, other fetus +C2907980|T019|AB|O31.03|ICD10CM|Papyraceous fetus, third trimester|Papyraceous fetus, third trimester +C2907980|T019|HT|O31.03|ICD10CM|Papyraceous fetus, third trimester|Papyraceous fetus, third trimester +C2907981|T019|AB|O31.03X0|ICD10CM|Papyraceous fetus, third trimester, not applicable or unsp|Papyraceous fetus, third trimester, not applicable or unsp +C2907981|T019|PT|O31.03X0|ICD10CM|Papyraceous fetus, third trimester, not applicable or unspecified|Papyraceous fetus, third trimester, not applicable or unspecified +C2907982|T019|AB|O31.03X1|ICD10CM|Papyraceous fetus, third trimester, fetus 1|Papyraceous fetus, third trimester, fetus 1 +C2907982|T019|PT|O31.03X1|ICD10CM|Papyraceous fetus, third trimester, fetus 1|Papyraceous fetus, third trimester, fetus 1 +C2907983|T019|AB|O31.03X2|ICD10CM|Papyraceous fetus, third trimester, fetus 2|Papyraceous fetus, third trimester, fetus 2 +C2907983|T019|PT|O31.03X2|ICD10CM|Papyraceous fetus, third trimester, fetus 2|Papyraceous fetus, third trimester, fetus 2 +C2907984|T019|AB|O31.03X3|ICD10CM|Papyraceous fetus, third trimester, fetus 3|Papyraceous fetus, third trimester, fetus 3 +C2907984|T019|PT|O31.03X3|ICD10CM|Papyraceous fetus, third trimester, fetus 3|Papyraceous fetus, third trimester, fetus 3 +C2907985|T019|AB|O31.03X4|ICD10CM|Papyraceous fetus, third trimester, fetus 4|Papyraceous fetus, third trimester, fetus 4 +C2907985|T019|PT|O31.03X4|ICD10CM|Papyraceous fetus, third trimester, fetus 4|Papyraceous fetus, third trimester, fetus 4 +C2907986|T019|AB|O31.03X5|ICD10CM|Papyraceous fetus, third trimester, fetus 5|Papyraceous fetus, third trimester, fetus 5 +C2907986|T019|PT|O31.03X5|ICD10CM|Papyraceous fetus, third trimester, fetus 5|Papyraceous fetus, third trimester, fetus 5 +C2907987|T019|AB|O31.03X9|ICD10CM|Papyraceous fetus, third trimester, other fetus|Papyraceous fetus, third trimester, other fetus +C2907987|T019|PT|O31.03X9|ICD10CM|Papyraceous fetus, third trimester, other fetus|Papyraceous fetus, third trimester, other fetus +C2907988|T046|AB|O31.1|ICD10CM|Cont pregnancy after spon abortion of one fetus or more|Cont pregnancy after spon abortion of one fetus or more +C0451790|T046|PT|O31.1|ICD10|Continuing pregnancy after abortion of one fetus or more|Continuing pregnancy after abortion of one fetus or more +C2907988|T046|HT|O31.1|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more|Continuing pregnancy after spontaneous abortion of one fetus or more +C2907989|T046|AB|O31.10|ICD10CM|Cont preg after spon abortion of one fetus or more, unsp tri|Cont preg after spon abortion of one fetus or more, unsp tri +C2907989|T046|HT|O31.10|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester|Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester +C2907990|T046|AB|O31.10X0|ICD10CM|Cont preg aft spon abort of one fts or more, unsp tri, unsp|Cont preg aft spon abort of one fts or more, unsp tri, unsp +C2907991|T046|AB|O31.10X1|ICD10CM|Cont preg aft spon abort of one fts or more, unsp tri, fts1|Cont preg aft spon abort of one fts or more, unsp tri, fts1 +C2907991|T046|PT|O31.10X1|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 1|Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 1 +C2907992|T046|AB|O31.10X2|ICD10CM|Cont preg aft spon abort of one fts or more, unsp tri, fts2|Cont preg aft spon abort of one fts or more, unsp tri, fts2 +C2907992|T046|PT|O31.10X2|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 2|Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 2 +C2907993|T046|AB|O31.10X3|ICD10CM|Cont preg aft spon abort of one fts or more, unsp tri, fts3|Cont preg aft spon abort of one fts or more, unsp tri, fts3 +C2907993|T046|PT|O31.10X3|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 3|Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 3 +C2907994|T046|AB|O31.10X4|ICD10CM|Cont preg aft spon abort of one fts or more, unsp tri, fts4|Cont preg aft spon abort of one fts or more, unsp tri, fts4 +C2907994|T046|PT|O31.10X4|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 4|Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 4 +C2907995|T046|AB|O31.10X5|ICD10CM|Cont preg aft spon abort of one fts or more, unsp tri, fts5|Cont preg aft spon abort of one fts or more, unsp tri, fts5 +C2907995|T046|PT|O31.10X5|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 5|Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 5 +C2907996|T046|AB|O31.10X9|ICD10CM|Cont preg aft spon abort of one fetus or more, unsp tri, oth|Cont preg aft spon abort of one fetus or more, unsp tri, oth +C2907997|T046|AB|O31.11|ICD10CM|Cont preg after spon abort of one fetus or more, first tri|Cont preg after spon abort of one fetus or more, first tri +C2907997|T046|HT|O31.11|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester|Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester +C2907998|T046|AB|O31.11X0|ICD10CM|Cont preg aft spon abort of one fts or more, first tri, unsp|Cont preg aft spon abort of one fts or more, first tri, unsp +C2907999|T046|AB|O31.11X1|ICD10CM|Cont preg aft spon abort of one fts or more, first tri, fts1|Cont preg aft spon abort of one fts or more, first tri, fts1 +C2907999|T046|PT|O31.11X1|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 1|Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 1 +C2908000|T046|AB|O31.11X2|ICD10CM|Cont preg aft spon abort of one fts or more, first tri, fts2|Cont preg aft spon abort of one fts or more, first tri, fts2 +C2908000|T046|PT|O31.11X2|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 2|Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 2 +C2908001|T046|AB|O31.11X3|ICD10CM|Cont preg aft spon abort of one fts or more, first tri, fts3|Cont preg aft spon abort of one fts or more, first tri, fts3 +C2908001|T046|PT|O31.11X3|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 3|Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 3 +C2908002|T046|AB|O31.11X4|ICD10CM|Cont preg aft spon abort of one fts or more, first tri, fts4|Cont preg aft spon abort of one fts or more, first tri, fts4 +C2908002|T046|PT|O31.11X4|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 4|Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 4 +C2908003|T046|AB|O31.11X5|ICD10CM|Cont preg aft spon abort of one fts or more, first tri, fts5|Cont preg aft spon abort of one fts or more, first tri, fts5 +C2908003|T046|PT|O31.11X5|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 5|Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 5 +C2908004|T046|AB|O31.11X9|ICD10CM|Cont preg aft spon abort of one fts or more, first tri, oth|Cont preg aft spon abort of one fts or more, first tri, oth +C2908004|T046|PT|O31.11X9|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, other fetus|Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, other fetus +C2908005|T046|AB|O31.12|ICD10CM|Cont preg after spon abort of one fetus or more, second tri|Cont preg after spon abort of one fetus or more, second tri +C2908005|T046|HT|O31.12|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester|Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester +C2908006|T046|AB|O31.12X0|ICD10CM|Cont preg aft spon abort of one fetus or more, 2nd tri, unsp|Cont preg aft spon abort of one fetus or more, 2nd tri, unsp +C2908007|T046|AB|O31.12X1|ICD10CM|Cont preg aft spon abort of one fetus or more, 2nd tri, fts1|Cont preg aft spon abort of one fetus or more, 2nd tri, fts1 +C2908007|T046|PT|O31.12X1|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 1|Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 1 +C2908008|T046|AB|O31.12X2|ICD10CM|Cont preg aft spon abort of one fetus or more, 2nd tri, fts2|Cont preg aft spon abort of one fetus or more, 2nd tri, fts2 +C2908008|T046|PT|O31.12X2|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 2|Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 2 +C2908009|T046|AB|O31.12X3|ICD10CM|Cont preg aft spon abort of one fetus or more, 2nd tri, fts3|Cont preg aft spon abort of one fetus or more, 2nd tri, fts3 +C2908009|T046|PT|O31.12X3|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 3|Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 3 +C2908010|T046|AB|O31.12X4|ICD10CM|Cont preg aft spon abort of one fetus or more, 2nd tri, fts4|Cont preg aft spon abort of one fetus or more, 2nd tri, fts4 +C2908010|T046|PT|O31.12X4|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 4|Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 4 +C2908011|T046|AB|O31.12X5|ICD10CM|Cont preg aft spon abort of one fetus or more, 2nd tri, fts5|Cont preg aft spon abort of one fetus or more, 2nd tri, fts5 +C2908011|T046|PT|O31.12X5|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 5|Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 5 +C2908012|T046|AB|O31.12X9|ICD10CM|Cont preg aft spon abort of one fetus or more, 2nd tri, oth|Cont preg aft spon abort of one fetus or more, 2nd tri, oth +C2908012|T046|PT|O31.12X9|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, other fetus|Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, other fetus +C2908013|T046|AB|O31.13|ICD10CM|Cont preg after spon abort of one fetus or more, third tri|Cont preg after spon abort of one fetus or more, third tri +C2908013|T046|HT|O31.13|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester|Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester +C2908014|T046|AB|O31.13X0|ICD10CM|Cont preg aft spon abort of one fts or more, third tri, unsp|Cont preg aft spon abort of one fts or more, third tri, unsp +C2908015|T046|AB|O31.13X1|ICD10CM|Cont preg aft spon abort of one fts or more, third tri, fts1|Cont preg aft spon abort of one fts or more, third tri, fts1 +C2908015|T046|PT|O31.13X1|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 1|Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 1 +C2908016|T046|AB|O31.13X2|ICD10CM|Cont preg aft spon abort of one fts or more, third tri, fts2|Cont preg aft spon abort of one fts or more, third tri, fts2 +C2908016|T046|PT|O31.13X2|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 2|Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 2 +C2908017|T046|AB|O31.13X3|ICD10CM|Cont preg aft spon abort of one fts or more, third tri, fts3|Cont preg aft spon abort of one fts or more, third tri, fts3 +C2908017|T046|PT|O31.13X3|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 3|Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 3 +C2908018|T046|AB|O31.13X4|ICD10CM|Cont preg aft spon abort of one fts or more, third tri, fts4|Cont preg aft spon abort of one fts or more, third tri, fts4 +C2908018|T046|PT|O31.13X4|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 4|Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 4 +C2908019|T046|AB|O31.13X5|ICD10CM|Cont preg aft spon abort of one fts or more, third tri, fts5|Cont preg aft spon abort of one fts or more, third tri, fts5 +C2908019|T046|PT|O31.13X5|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 5|Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 5 +C2908020|T046|AB|O31.13X9|ICD10CM|Cont preg aft spon abort of one fts or more, third tri, oth|Cont preg aft spon abort of one fts or more, third tri, oth +C2908020|T046|PT|O31.13X9|ICD10CM|Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, other fetus|Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, other fetus +C0451791|T046|PT|O31.2|ICD10|Continuing pregnancy after intrauterine death of one fetus or more|Continuing pregnancy after intrauterine death of one fetus or more +C0451791|T046|HT|O31.2|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more|Continuing pregnancy after intrauterine death of one fetus or more +C0451791|T046|AB|O31.2|ICD10CM|Continuing pregnancy after uterin death of one fetus or more|Continuing pregnancy after uterin death of one fetus or more +C0451791|T046|AB|O31.20|ICD10CM|Cont preg after uterin death of one fetus or more, unsp tri|Cont preg after uterin death of one fetus or more, unsp tri +C0451791|T046|HT|O31.20|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester|Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester +C2908021|T046|AB|O31.20X0|ICD10CM|Cont preg aft uterin dth of one fts or more, unsp tri, unsp|Cont preg aft uterin dth of one fts or more, unsp tri, unsp +C2908022|T046|AB|O31.20X1|ICD10CM|Cont preg aft uterin dth of one fts or more, unsp tri, fts1|Cont preg aft uterin dth of one fts or more, unsp tri, fts1 +C2908022|T046|PT|O31.20X1|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 1|Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 1 +C2908023|T046|AB|O31.20X2|ICD10CM|Cont preg aft uterin dth of one fts or more, unsp tri, fts2|Cont preg aft uterin dth of one fts or more, unsp tri, fts2 +C2908023|T046|PT|O31.20X2|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 2|Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 2 +C2908024|T046|AB|O31.20X3|ICD10CM|Cont preg aft uterin dth of one fts or more, unsp tri, fts3|Cont preg aft uterin dth of one fts or more, unsp tri, fts3 +C2908024|T046|PT|O31.20X3|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 3|Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 3 +C2908025|T046|AB|O31.20X4|ICD10CM|Cont preg aft uterin dth of one fts or more, unsp tri, fts4|Cont preg aft uterin dth of one fts or more, unsp tri, fts4 +C2908025|T046|PT|O31.20X4|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 4|Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 4 +C2908026|T046|AB|O31.20X5|ICD10CM|Cont preg aft uterin dth of one fts or more, unsp tri, fts5|Cont preg aft uterin dth of one fts or more, unsp tri, fts5 +C2908026|T046|PT|O31.20X5|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 5|Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 5 +C2908027|T046|AB|O31.20X9|ICD10CM|Cont preg aft uterin dth of one fetus or more, unsp tri, oth|Cont preg aft uterin dth of one fetus or more, unsp tri, oth +C2908028|T046|AB|O31.21|ICD10CM|Cont preg after uterin death of one fetus or more, first tri|Cont preg after uterin death of one fetus or more, first tri +C2908028|T046|HT|O31.21|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, first trimester|Continuing pregnancy after intrauterine death of one fetus or more, first trimester +C2908029|T046|AB|O31.21X0|ICD10CM|Cont preg aft uterin dth of one fts or more, first tri, unsp|Cont preg aft uterin dth of one fts or more, first tri, unsp +C2908030|T046|AB|O31.21X1|ICD10CM|Cont preg aft uterin dth of one fts or more, first tri, fts1|Cont preg aft uterin dth of one fts or more, first tri, fts1 +C2908030|T046|PT|O31.21X1|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 1|Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 1 +C2908031|T046|AB|O31.21X2|ICD10CM|Cont preg aft uterin dth of one fts or more, first tri, fts2|Cont preg aft uterin dth of one fts or more, first tri, fts2 +C2908031|T046|PT|O31.21X2|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 2|Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 2 +C2908032|T046|AB|O31.21X3|ICD10CM|Cont preg aft uterin dth of one fts or more, first tri, fts3|Cont preg aft uterin dth of one fts or more, first tri, fts3 +C2908032|T046|PT|O31.21X3|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 3|Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 3 +C2908033|T046|AB|O31.21X4|ICD10CM|Cont preg aft uterin dth of one fts or more, first tri, fts4|Cont preg aft uterin dth of one fts or more, first tri, fts4 +C2908033|T046|PT|O31.21X4|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 4|Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 4 +C2908034|T046|AB|O31.21X5|ICD10CM|Cont preg aft uterin dth of one fts or more, first tri, fts5|Cont preg aft uterin dth of one fts or more, first tri, fts5 +C2908034|T046|PT|O31.21X5|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 5|Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 5 +C2908035|T046|AB|O31.21X9|ICD10CM|Cont preg aft uterin dth of one fts or more, first tri, oth|Cont preg aft uterin dth of one fts or more, first tri, oth +C2908035|T046|PT|O31.21X9|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, first trimester, other fetus|Continuing pregnancy after intrauterine death of one fetus or more, first trimester, other fetus +C2908036|T046|AB|O31.22|ICD10CM|Cont preg after uterin death of one fetus or more, 2nd tri|Cont preg after uterin death of one fetus or more, 2nd tri +C2908036|T046|HT|O31.22|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, second trimester|Continuing pregnancy after intrauterine death of one fetus or more, second trimester +C2908037|T046|AB|O31.22X0|ICD10CM|Cont preg aft uterin dth of one fetus or more, 2nd tri, unsp|Cont preg aft uterin dth of one fetus or more, 2nd tri, unsp +C2908038|T046|AB|O31.22X1|ICD10CM|Cont preg aft uterin dth of one fetus or more, 2nd tri, fts1|Cont preg aft uterin dth of one fetus or more, 2nd tri, fts1 +C2908038|T046|PT|O31.22X1|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 1|Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 1 +C2908039|T046|AB|O31.22X2|ICD10CM|Cont preg aft uterin dth of one fetus or more, 2nd tri, fts2|Cont preg aft uterin dth of one fetus or more, 2nd tri, fts2 +C2908039|T046|PT|O31.22X2|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 2|Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 2 +C2908040|T046|AB|O31.22X3|ICD10CM|Cont preg aft uterin dth of one fetus or more, 2nd tri, fts3|Cont preg aft uterin dth of one fetus or more, 2nd tri, fts3 +C2908040|T046|PT|O31.22X3|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 3|Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 3 +C2908041|T046|AB|O31.22X4|ICD10CM|Cont preg aft uterin dth of one fetus or more, 2nd tri, fts4|Cont preg aft uterin dth of one fetus or more, 2nd tri, fts4 +C2908041|T046|PT|O31.22X4|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 4|Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 4 +C2908042|T046|AB|O31.22X5|ICD10CM|Cont preg aft uterin dth of one fetus or more, 2nd tri, fts5|Cont preg aft uterin dth of one fetus or more, 2nd tri, fts5 +C2908042|T046|PT|O31.22X5|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 5|Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 5 +C2908043|T046|AB|O31.22X9|ICD10CM|Cont preg aft uterin dth of one fetus or more, 2nd tri, oth|Cont preg aft uterin dth of one fetus or more, 2nd tri, oth +C2908043|T046|PT|O31.22X9|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, second trimester, other fetus|Continuing pregnancy after intrauterine death of one fetus or more, second trimester, other fetus +C2908044|T046|AB|O31.23|ICD10CM|Cont preg after uterin death of one fetus or more, third tri|Cont preg after uterin death of one fetus or more, third tri +C2908044|T046|HT|O31.23|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, third trimester|Continuing pregnancy after intrauterine death of one fetus or more, third trimester +C2908045|T046|AB|O31.23X0|ICD10CM|Cont preg aft uterin dth of one fts or more, third tri, unsp|Cont preg aft uterin dth of one fts or more, third tri, unsp +C2908046|T046|AB|O31.23X1|ICD10CM|Cont preg aft uterin dth of one fts or more, third tri, fts1|Cont preg aft uterin dth of one fts or more, third tri, fts1 +C2908046|T046|PT|O31.23X1|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 1|Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 1 +C2908047|T046|AB|O31.23X2|ICD10CM|Cont preg aft uterin dth of one fts or more, third tri, fts2|Cont preg aft uterin dth of one fts or more, third tri, fts2 +C2908047|T046|PT|O31.23X2|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 2|Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 2 +C2908048|T046|AB|O31.23X3|ICD10CM|Cont preg aft uterin dth of one fts or more, third tri, fts3|Cont preg aft uterin dth of one fts or more, third tri, fts3 +C2908048|T046|PT|O31.23X3|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 3|Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 3 +C2908049|T046|AB|O31.23X4|ICD10CM|Cont preg aft uterin dth of one fts or more, third tri, fts4|Cont preg aft uterin dth of one fts or more, third tri, fts4 +C2908049|T046|PT|O31.23X4|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 4|Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 4 +C2908050|T046|AB|O31.23X5|ICD10CM|Cont preg aft uterin dth of one fts or more, third tri, fts5|Cont preg aft uterin dth of one fts or more, third tri, fts5 +C2908050|T046|PT|O31.23X5|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 5|Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 5 +C2908051|T046|AB|O31.23X9|ICD10CM|Cont preg aft uterin dth of one fts or more, third tri, oth|Cont preg aft uterin dth of one fts or more, third tri, oth +C2908051|T046|PT|O31.23X9|ICD10CM|Continuing pregnancy after intrauterine death of one fetus or more, third trimester, other fetus|Continuing pregnancy after intrauterine death of one fetus or more, third trimester, other fetus +C2908053|T046|AB|O31.3|ICD10CM|Cont preg after elective fetal rdct of one fetus or more|Cont preg after elective fetal rdct of one fetus or more +C2908053|T046|HT|O31.3|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more|Continuing pregnancy after elective fetal reduction of one fetus or more +C2908052|T046|ET|O31.3|ICD10CM|Continuing pregnancy after selective termination of one fetus or more|Continuing pregnancy after selective termination of one fetus or more +C2908054|T046|AB|O31.30|ICD10CM|Cont preg aft elctv fetl rdct of one fetus or more, unsp tri|Cont preg aft elctv fetl rdct of one fetus or more, unsp tri +C2908054|T046|HT|O31.30|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester|Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester +C2908055|T046|AB|O31.30X0|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,unsp tri,unsp|Cont preg aft elctv fetl rdct of 1 fts or more,unsp tri,unsp +C2908056|T046|AB|O31.30X1|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,unsp tri,fts1|Cont preg aft elctv fetl rdct of 1 fts or more,unsp tri,fts1 +C2908057|T046|AB|O31.30X2|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,unsp tri,fts2|Cont preg aft elctv fetl rdct of 1 fts or more,unsp tri,fts2 +C2908058|T046|AB|O31.30X3|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,unsp tri,fts3|Cont preg aft elctv fetl rdct of 1 fts or more,unsp tri,fts3 +C2908059|T046|AB|O31.30X4|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,unsp tri,fts4|Cont preg aft elctv fetl rdct of 1 fts or more,unsp tri,fts4 +C2908060|T046|AB|O31.30X5|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,unsp tri,fts5|Cont preg aft elctv fetl rdct of 1 fts or more,unsp tri,fts5 +C2908061|T046|AB|O31.30X9|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,unsp tri, oth|Cont preg aft elctv fetl rdct of 1 fts or more,unsp tri, oth +C2908062|T046|AB|O31.31|ICD10CM|Cont preg aft elctv fetl rdct of one fts or more, first tri|Cont preg aft elctv fetl rdct of one fts or more, first tri +C2908062|T046|HT|O31.31|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester|Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester +C2908063|T046|AB|O31.31X0|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,1st tri, unsp|Cont preg aft elctv fetl rdct of 1 fts or more,1st tri, unsp +C2908064|T046|AB|O31.31X1|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,1st tri, fts1|Cont preg aft elctv fetl rdct of 1 fts or more,1st tri, fts1 +C2908064|T046|PT|O31.31X1|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 1|Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 1 +C2908065|T046|AB|O31.31X2|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,1st tri, fts2|Cont preg aft elctv fetl rdct of 1 fts or more,1st tri, fts2 +C2908065|T046|PT|O31.31X2|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 2|Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 2 +C2908066|T046|AB|O31.31X3|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,1st tri, fts3|Cont preg aft elctv fetl rdct of 1 fts or more,1st tri, fts3 +C2908066|T046|PT|O31.31X3|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 3|Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 3 +C2908067|T046|AB|O31.31X4|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,1st tri, fts4|Cont preg aft elctv fetl rdct of 1 fts or more,1st tri, fts4 +C2908067|T046|PT|O31.31X4|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 4|Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 4 +C2908068|T046|AB|O31.31X5|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,1st tri, fts5|Cont preg aft elctv fetl rdct of 1 fts or more,1st tri, fts5 +C2908068|T046|PT|O31.31X5|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 5|Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 5 +C2908069|T046|AB|O31.31X9|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more, 1st tri, oth|Cont preg aft elctv fetl rdct of 1 fts or more, 1st tri, oth +C2908070|T046|AB|O31.32|ICD10CM|Cont preg aft elctv fetal rdct of one fetus or more, 2nd tri|Cont preg aft elctv fetal rdct of one fetus or more, 2nd tri +C2908070|T046|HT|O31.32|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester|Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester +C2908071|T046|AB|O31.32X0|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,2nd tri, unsp|Cont preg aft elctv fetl rdct of 1 fts or more,2nd tri, unsp +C2908072|T046|AB|O31.32X1|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,2nd tri, fts1|Cont preg aft elctv fetl rdct of 1 fts or more,2nd tri, fts1 +C2908072|T046|PT|O31.32X1|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 1|Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 1 +C2908073|T046|AB|O31.32X2|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,2nd tri, fts2|Cont preg aft elctv fetl rdct of 1 fts or more,2nd tri, fts2 +C2908073|T046|PT|O31.32X2|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 2|Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 2 +C2908074|T046|AB|O31.32X3|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,2nd tri, fts3|Cont preg aft elctv fetl rdct of 1 fts or more,2nd tri, fts3 +C2908074|T046|PT|O31.32X3|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 3|Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 3 +C2908075|T046|AB|O31.32X4|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,2nd tri, fts4|Cont preg aft elctv fetl rdct of 1 fts or more,2nd tri, fts4 +C2908075|T046|PT|O31.32X4|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 4|Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 4 +C2908076|T046|AB|O31.32X5|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,2nd tri, fts5|Cont preg aft elctv fetl rdct of 1 fts or more,2nd tri, fts5 +C2908076|T046|PT|O31.32X5|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 5|Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 5 +C2908077|T046|AB|O31.32X9|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more, 2nd tri, oth|Cont preg aft elctv fetl rdct of 1 fts or more, 2nd tri, oth +C2908078|T046|AB|O31.33|ICD10CM|Cont preg aft elctv fetl rdct of one fts or more, third tri|Cont preg aft elctv fetl rdct of one fts or more, third tri +C2908078|T046|HT|O31.33|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester|Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester +C2908079|T046|AB|O31.33X0|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,3rd tri, unsp|Cont preg aft elctv fetl rdct of 1 fts or more,3rd tri, unsp +C2908080|T046|AB|O31.33X1|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,3rd tri, fts1|Cont preg aft elctv fetl rdct of 1 fts or more,3rd tri, fts1 +C2908080|T046|PT|O31.33X1|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 1|Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 1 +C2908081|T046|AB|O31.33X2|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,3rd tri, fts2|Cont preg aft elctv fetl rdct of 1 fts or more,3rd tri, fts2 +C2908081|T046|PT|O31.33X2|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 2|Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 2 +C2908082|T046|AB|O31.33X3|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,3rd tri, fts3|Cont preg aft elctv fetl rdct of 1 fts or more,3rd tri, fts3 +C2908082|T046|PT|O31.33X3|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 3|Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 3 +C2908083|T046|AB|O31.33X4|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,3rd tri, fts4|Cont preg aft elctv fetl rdct of 1 fts or more,3rd tri, fts4 +C2908083|T046|PT|O31.33X4|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 4|Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 4 +C2908084|T046|AB|O31.33X5|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more,3rd tri, fts5|Cont preg aft elctv fetl rdct of 1 fts or more,3rd tri, fts5 +C2908084|T046|PT|O31.33X5|ICD10CM|Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 5|Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 5 +C2908085|T046|AB|O31.33X9|ICD10CM|Cont preg aft elctv fetl rdct of 1 fts or more, 3rd tri, oth|Cont preg aft elctv fetl rdct of 1 fts or more, 3rd tri, oth +C0477824|T046|HT|O31.8|ICD10CM|Other complications specific to multiple gestation|Other complications specific to multiple gestation +C0477824|T046|AB|O31.8|ICD10CM|Other complications specific to multiple gestation|Other complications specific to multiple gestation +C0477824|T046|PT|O31.8|ICD10|Other complications specific to multiple gestation|Other complications specific to multiple gestation +C0477824|T046|HT|O31.8X|ICD10CM|Other complications specific to multiple gestation|Other complications specific to multiple gestation +C0477824|T046|AB|O31.8X|ICD10CM|Other complications specific to multiple gestation|Other complications specific to multiple gestation +C2908086|T046|AB|O31.8X1|ICD10CM|Oth comp specific to multiple gestation, first trimester|Oth comp specific to multiple gestation, first trimester +C2908086|T046|HT|O31.8X1|ICD10CM|Other complications specific to multiple gestation, first trimester|Other complications specific to multiple gestation, first trimester +C2908087|T046|AB|O31.8X10|ICD10CM|Oth comp specific to multiple gest, first trimester, unsp|Oth comp specific to multiple gest, first trimester, unsp +C2908087|T046|PT|O31.8X10|ICD10CM|Other complications specific to multiple gestation, first trimester, not applicable or unspecified|Other complications specific to multiple gestation, first trimester, not applicable or unspecified +C2908088|T046|AB|O31.8X11|ICD10CM|Oth comp specific to multiple gest, first trimester, fetus 1|Oth comp specific to multiple gest, first trimester, fetus 1 +C2908088|T046|PT|O31.8X11|ICD10CM|Other complications specific to multiple gestation, first trimester, fetus 1|Other complications specific to multiple gestation, first trimester, fetus 1 +C2908089|T046|AB|O31.8X12|ICD10CM|Oth comp specific to multiple gest, first trimester, fetus 2|Oth comp specific to multiple gest, first trimester, fetus 2 +C2908089|T046|PT|O31.8X12|ICD10CM|Other complications specific to multiple gestation, first trimester, fetus 2|Other complications specific to multiple gestation, first trimester, fetus 2 +C2908090|T046|AB|O31.8X13|ICD10CM|Oth comp specific to multiple gest, first trimester, fetus 3|Oth comp specific to multiple gest, first trimester, fetus 3 +C2908090|T046|PT|O31.8X13|ICD10CM|Other complications specific to multiple gestation, first trimester, fetus 3|Other complications specific to multiple gestation, first trimester, fetus 3 +C2908091|T046|AB|O31.8X14|ICD10CM|Oth comp specific to multiple gest, first trimester, fetus 4|Oth comp specific to multiple gest, first trimester, fetus 4 +C2908091|T046|PT|O31.8X14|ICD10CM|Other complications specific to multiple gestation, first trimester, fetus 4|Other complications specific to multiple gestation, first trimester, fetus 4 +C2908092|T046|AB|O31.8X15|ICD10CM|Oth comp specific to multiple gest, first trimester, fetus 5|Oth comp specific to multiple gest, first trimester, fetus 5 +C2908092|T046|PT|O31.8X15|ICD10CM|Other complications specific to multiple gestation, first trimester, fetus 5|Other complications specific to multiple gestation, first trimester, fetus 5 +C2908093|T046|AB|O31.8X19|ICD10CM|Oth comp specific to multiple gest, first trimester, oth|Oth comp specific to multiple gest, first trimester, oth +C2908093|T046|PT|O31.8X19|ICD10CM|Other complications specific to multiple gestation, first trimester, other fetus|Other complications specific to multiple gestation, first trimester, other fetus +C2908094|T046|AB|O31.8X2|ICD10CM|Oth comp specific to multiple gestation, second trimester|Oth comp specific to multiple gestation, second trimester +C2908094|T046|HT|O31.8X2|ICD10CM|Other complications specific to multiple gestation, second trimester|Other complications specific to multiple gestation, second trimester +C2908095|T046|AB|O31.8X20|ICD10CM|Oth comp specific to multiple gest, second trimester, unsp|Oth comp specific to multiple gest, second trimester, unsp +C2908095|T046|PT|O31.8X20|ICD10CM|Other complications specific to multiple gestation, second trimester, not applicable or unspecified|Other complications specific to multiple gestation, second trimester, not applicable or unspecified +C2908096|T046|AB|O31.8X21|ICD10CM|Oth comp specific to multiple gest, second tri, fetus 1|Oth comp specific to multiple gest, second tri, fetus 1 +C2908096|T046|PT|O31.8X21|ICD10CM|Other complications specific to multiple gestation, second trimester, fetus 1|Other complications specific to multiple gestation, second trimester, fetus 1 +C2908097|T046|AB|O31.8X22|ICD10CM|Oth comp specific to multiple gest, second tri, fetus 2|Oth comp specific to multiple gest, second tri, fetus 2 +C2908097|T046|PT|O31.8X22|ICD10CM|Other complications specific to multiple gestation, second trimester, fetus 2|Other complications specific to multiple gestation, second trimester, fetus 2 +C2908098|T046|AB|O31.8X23|ICD10CM|Oth comp specific to multiple gest, second tri, fetus 3|Oth comp specific to multiple gest, second tri, fetus 3 +C2908098|T046|PT|O31.8X23|ICD10CM|Other complications specific to multiple gestation, second trimester, fetus 3|Other complications specific to multiple gestation, second trimester, fetus 3 +C2908099|T046|AB|O31.8X24|ICD10CM|Oth comp specific to multiple gest, second tri, fetus 4|Oth comp specific to multiple gest, second tri, fetus 4 +C2908099|T046|PT|O31.8X24|ICD10CM|Other complications specific to multiple gestation, second trimester, fetus 4|Other complications specific to multiple gestation, second trimester, fetus 4 +C2908100|T046|AB|O31.8X25|ICD10CM|Oth comp specific to multiple gest, second tri, fetus 5|Oth comp specific to multiple gest, second tri, fetus 5 +C2908100|T046|PT|O31.8X25|ICD10CM|Other complications specific to multiple gestation, second trimester, fetus 5|Other complications specific to multiple gestation, second trimester, fetus 5 +C2908101|T046|AB|O31.8X29|ICD10CM|Oth comp specific to multiple gest, second trimester, oth|Oth comp specific to multiple gest, second trimester, oth +C2908101|T046|PT|O31.8X29|ICD10CM|Other complications specific to multiple gestation, second trimester, other fetus|Other complications specific to multiple gestation, second trimester, other fetus +C2908102|T046|AB|O31.8X3|ICD10CM|Oth comp specific to multiple gestation, third trimester|Oth comp specific to multiple gestation, third trimester +C2908102|T046|HT|O31.8X3|ICD10CM|Other complications specific to multiple gestation, third trimester|Other complications specific to multiple gestation, third trimester +C2908103|T046|AB|O31.8X30|ICD10CM|Oth comp specific to multiple gest, third trimester, unsp|Oth comp specific to multiple gest, third trimester, unsp +C2908103|T046|PT|O31.8X30|ICD10CM|Other complications specific to multiple gestation, third trimester, not applicable or unspecified|Other complications specific to multiple gestation, third trimester, not applicable or unspecified +C2908104|T046|AB|O31.8X31|ICD10CM|Oth comp specific to multiple gest, third trimester, fetus 1|Oth comp specific to multiple gest, third trimester, fetus 1 +C2908104|T046|PT|O31.8X31|ICD10CM|Other complications specific to multiple gestation, third trimester, fetus 1|Other complications specific to multiple gestation, third trimester, fetus 1 +C2908105|T046|AB|O31.8X32|ICD10CM|Oth comp specific to multiple gest, third trimester, fetus 2|Oth comp specific to multiple gest, third trimester, fetus 2 +C2908105|T046|PT|O31.8X32|ICD10CM|Other complications specific to multiple gestation, third trimester, fetus 2|Other complications specific to multiple gestation, third trimester, fetus 2 +C2908106|T046|AB|O31.8X33|ICD10CM|Oth comp specific to multiple gest, third trimester, fetus 3|Oth comp specific to multiple gest, third trimester, fetus 3 +C2908106|T046|PT|O31.8X33|ICD10CM|Other complications specific to multiple gestation, third trimester, fetus 3|Other complications specific to multiple gestation, third trimester, fetus 3 +C2908107|T046|AB|O31.8X34|ICD10CM|Oth comp specific to multiple gest, third trimester, fetus 4|Oth comp specific to multiple gest, third trimester, fetus 4 +C2908107|T046|PT|O31.8X34|ICD10CM|Other complications specific to multiple gestation, third trimester, fetus 4|Other complications specific to multiple gestation, third trimester, fetus 4 +C2908108|T046|AB|O31.8X35|ICD10CM|Oth comp specific to multiple gest, third trimester, fetus 5|Oth comp specific to multiple gest, third trimester, fetus 5 +C2908108|T046|PT|O31.8X35|ICD10CM|Other complications specific to multiple gestation, third trimester, fetus 5|Other complications specific to multiple gestation, third trimester, fetus 5 +C2908109|T046|AB|O31.8X39|ICD10CM|Oth comp specific to multiple gest, third trimester, oth|Oth comp specific to multiple gest, third trimester, oth +C2908109|T046|PT|O31.8X39|ICD10CM|Other complications specific to multiple gestation, third trimester, other fetus|Other complications specific to multiple gestation, third trimester, other fetus +C0477824|T046|AB|O31.8X9|ICD10CM|Oth comp specific to multiple gestation, unsp trimester|Oth comp specific to multiple gestation, unsp trimester +C0477824|T046|HT|O31.8X9|ICD10CM|Other complications specific to multiple gestation, unspecified trimester|Other complications specific to multiple gestation, unspecified trimester +C2908110|T046|AB|O31.8X90|ICD10CM|Oth comp specific to multiple gest, unsp trimester, unsp|Oth comp specific to multiple gest, unsp trimester, unsp +C2908111|T046|AB|O31.8X91|ICD10CM|Oth comp specific to multiple gest, unsp trimester, fetus 1|Oth comp specific to multiple gest, unsp trimester, fetus 1 +C2908111|T046|PT|O31.8X91|ICD10CM|Other complications specific to multiple gestation, unspecified trimester, fetus 1|Other complications specific to multiple gestation, unspecified trimester, fetus 1 +C2908112|T046|AB|O31.8X92|ICD10CM|Oth comp specific to multiple gest, unsp trimester, fetus 2|Oth comp specific to multiple gest, unsp trimester, fetus 2 +C2908112|T046|PT|O31.8X92|ICD10CM|Other complications specific to multiple gestation, unspecified trimester, fetus 2|Other complications specific to multiple gestation, unspecified trimester, fetus 2 +C2908113|T046|AB|O31.8X93|ICD10CM|Oth comp specific to multiple gest, unsp trimester, fetus 3|Oth comp specific to multiple gest, unsp trimester, fetus 3 +C2908113|T046|PT|O31.8X93|ICD10CM|Other complications specific to multiple gestation, unspecified trimester, fetus 3|Other complications specific to multiple gestation, unspecified trimester, fetus 3 +C2908114|T046|AB|O31.8X94|ICD10CM|Oth comp specific to multiple gest, unsp trimester, fetus 4|Oth comp specific to multiple gest, unsp trimester, fetus 4 +C2908114|T046|PT|O31.8X94|ICD10CM|Other complications specific to multiple gestation, unspecified trimester, fetus 4|Other complications specific to multiple gestation, unspecified trimester, fetus 4 +C2908115|T046|AB|O31.8X95|ICD10CM|Oth comp specific to multiple gest, unsp trimester, fetus 5|Oth comp specific to multiple gest, unsp trimester, fetus 5 +C2908115|T046|PT|O31.8X95|ICD10CM|Other complications specific to multiple gestation, unspecified trimester, fetus 5|Other complications specific to multiple gestation, unspecified trimester, fetus 5 +C2908116|T046|AB|O31.8X99|ICD10CM|Oth comp specific to multiple gestation, unsp trimester, oth|Oth comp specific to multiple gestation, unsp trimester, oth +C2908116|T046|PT|O31.8X99|ICD10CM|Other complications specific to multiple gestation, unspecified trimester, other fetus|Other complications specific to multiple gestation, unspecified trimester, other fetus +C0495207|T046|AB|O32|ICD10CM|Maternal care for malpresentation of fetus|Maternal care for malpresentation of fetus +C0495207|T046|HT|O32|ICD10CM|Maternal care for malpresentation of fetus|Maternal care for malpresentation of fetus +C0495201|T046|HT|O32.0|ICD10CM|Maternal care for unstable lie|Maternal care for unstable lie +C0495201|T046|AB|O32.0|ICD10CM|Maternal care for unstable lie|Maternal care for unstable lie +C0495201|T046|PT|O32.0|ICD10|Maternal care for unstable lie|Maternal care for unstable lie +C2908117|T046|AB|O32.0XX0|ICD10CM|Maternal care for unstable lie, not applicable or unsp|Maternal care for unstable lie, not applicable or unsp +C2908117|T046|PT|O32.0XX0|ICD10CM|Maternal care for unstable lie, not applicable or unspecified|Maternal care for unstable lie, not applicable or unspecified +C2908118|T046|AB|O32.0XX1|ICD10CM|Maternal care for unstable lie, fetus 1|Maternal care for unstable lie, fetus 1 +C2908118|T046|PT|O32.0XX1|ICD10CM|Maternal care for unstable lie, fetus 1|Maternal care for unstable lie, fetus 1 +C2908119|T046|AB|O32.0XX2|ICD10CM|Maternal care for unstable lie, fetus 2|Maternal care for unstable lie, fetus 2 +C2908119|T046|PT|O32.0XX2|ICD10CM|Maternal care for unstable lie, fetus 2|Maternal care for unstable lie, fetus 2 +C2908120|T046|AB|O32.0XX3|ICD10CM|Maternal care for unstable lie, fetus 3|Maternal care for unstable lie, fetus 3 +C2908120|T046|PT|O32.0XX3|ICD10CM|Maternal care for unstable lie, fetus 3|Maternal care for unstable lie, fetus 3 +C2908121|T046|AB|O32.0XX4|ICD10CM|Maternal care for unstable lie, fetus 4|Maternal care for unstable lie, fetus 4 +C2908121|T046|PT|O32.0XX4|ICD10CM|Maternal care for unstable lie, fetus 4|Maternal care for unstable lie, fetus 4 +C2908122|T046|AB|O32.0XX5|ICD10CM|Maternal care for unstable lie, fetus 5|Maternal care for unstable lie, fetus 5 +C2908122|T046|PT|O32.0XX5|ICD10CM|Maternal care for unstable lie, fetus 5|Maternal care for unstable lie, fetus 5 +C2908123|T046|AB|O32.0XX9|ICD10CM|Maternal care for unstable lie, other fetus|Maternal care for unstable lie, other fetus +C2908123|T046|PT|O32.0XX9|ICD10CM|Maternal care for unstable lie, other fetus|Maternal care for unstable lie, other fetus +C0495202|T046|PT|O32.1|ICD10|Maternal care for breech presentation|Maternal care for breech presentation +C0495202|T046|HT|O32.1|ICD10CM|Maternal care for breech presentation|Maternal care for breech presentation +C0495202|T046|AB|O32.1|ICD10CM|Maternal care for breech presentation|Maternal care for breech presentation +C2908124|T046|ET|O32.1|ICD10CM|Maternal care for buttocks presentation|Maternal care for buttocks presentation +C2908125|T046|ET|O32.1|ICD10CM|Maternal care for complete breech|Maternal care for complete breech +C2908126|T046|ET|O32.1|ICD10CM|Maternal care for frank breech|Maternal care for frank breech +C2908127|T046|PT|O32.1XX0|ICD10CM|Maternal care for breech presentation, not applicable or unspecified|Maternal care for breech presentation, not applicable or unspecified +C2908127|T046|AB|O32.1XX0|ICD10CM|Maternal care for breech presentation, unsp|Maternal care for breech presentation, unsp +C2908128|T046|AB|O32.1XX1|ICD10CM|Maternal care for breech presentation, fetus 1|Maternal care for breech presentation, fetus 1 +C2908128|T046|PT|O32.1XX1|ICD10CM|Maternal care for breech presentation, fetus 1|Maternal care for breech presentation, fetus 1 +C2908129|T046|AB|O32.1XX2|ICD10CM|Maternal care for breech presentation, fetus 2|Maternal care for breech presentation, fetus 2 +C2908129|T046|PT|O32.1XX2|ICD10CM|Maternal care for breech presentation, fetus 2|Maternal care for breech presentation, fetus 2 +C2908130|T046|AB|O32.1XX3|ICD10CM|Maternal care for breech presentation, fetus 3|Maternal care for breech presentation, fetus 3 +C2908130|T046|PT|O32.1XX3|ICD10CM|Maternal care for breech presentation, fetus 3|Maternal care for breech presentation, fetus 3 +C2908131|T046|AB|O32.1XX4|ICD10CM|Maternal care for breech presentation, fetus 4|Maternal care for breech presentation, fetus 4 +C2908131|T046|PT|O32.1XX4|ICD10CM|Maternal care for breech presentation, fetus 4|Maternal care for breech presentation, fetus 4 +C2908132|T046|AB|O32.1XX5|ICD10CM|Maternal care for breech presentation, fetus 5|Maternal care for breech presentation, fetus 5 +C2908132|T046|PT|O32.1XX5|ICD10CM|Maternal care for breech presentation, fetus 5|Maternal care for breech presentation, fetus 5 +C2908133|T046|AB|O32.1XX9|ICD10CM|Maternal care for breech presentation, other fetus|Maternal care for breech presentation, other fetus +C2908133|T046|PT|O32.1XX9|ICD10CM|Maternal care for breech presentation, other fetus|Maternal care for breech presentation, other fetus +C1409540|T033|ET|O32.2|ICD10CM|Maternal care for oblique presentation|Maternal care for oblique presentation +C0495203|T046|HT|O32.2|ICD10CM|Maternal care for transverse and oblique lie|Maternal care for transverse and oblique lie +C0495203|T046|AB|O32.2|ICD10CM|Maternal care for transverse and oblique lie|Maternal care for transverse and oblique lie +C0495203|T046|PT|O32.2|ICD10|Maternal care for transverse and oblique lie|Maternal care for transverse and oblique lie +C2908134|T046|ET|O32.2|ICD10CM|Maternal care for transverse presentation|Maternal care for transverse presentation +C2908135|T046|PT|O32.2XX0|ICD10CM|Maternal care for transverse and oblique lie, not applicable or unspecified|Maternal care for transverse and oblique lie, not applicable or unspecified +C2908135|T046|AB|O32.2XX0|ICD10CM|Maternal care for transverse and oblique lie, unsp|Maternal care for transverse and oblique lie, unsp +C2908136|T046|AB|O32.2XX1|ICD10CM|Maternal care for transverse and oblique lie, fetus 1|Maternal care for transverse and oblique lie, fetus 1 +C2908136|T046|PT|O32.2XX1|ICD10CM|Maternal care for transverse and oblique lie, fetus 1|Maternal care for transverse and oblique lie, fetus 1 +C2908137|T046|AB|O32.2XX2|ICD10CM|Maternal care for transverse and oblique lie, fetus 2|Maternal care for transverse and oblique lie, fetus 2 +C2908137|T046|PT|O32.2XX2|ICD10CM|Maternal care for transverse and oblique lie, fetus 2|Maternal care for transverse and oblique lie, fetus 2 +C2908138|T046|AB|O32.2XX3|ICD10CM|Maternal care for transverse and oblique lie, fetus 3|Maternal care for transverse and oblique lie, fetus 3 +C2908138|T046|PT|O32.2XX3|ICD10CM|Maternal care for transverse and oblique lie, fetus 3|Maternal care for transverse and oblique lie, fetus 3 +C2908139|T046|AB|O32.2XX4|ICD10CM|Maternal care for transverse and oblique lie, fetus 4|Maternal care for transverse and oblique lie, fetus 4 +C2908139|T046|PT|O32.2XX4|ICD10CM|Maternal care for transverse and oblique lie, fetus 4|Maternal care for transverse and oblique lie, fetus 4 +C2908140|T046|AB|O32.2XX5|ICD10CM|Maternal care for transverse and oblique lie, fetus 5|Maternal care for transverse and oblique lie, fetus 5 +C2908140|T046|PT|O32.2XX5|ICD10CM|Maternal care for transverse and oblique lie, fetus 5|Maternal care for transverse and oblique lie, fetus 5 +C2908141|T046|AB|O32.2XX9|ICD10CM|Maternal care for transverse and oblique lie, other fetus|Maternal care for transverse and oblique lie, other fetus +C2908141|T046|PT|O32.2XX9|ICD10CM|Maternal care for transverse and oblique lie, other fetus|Maternal care for transverse and oblique lie, other fetus +C0495204|T046|PT|O32.3|ICD10|Maternal care for face, brow and chin presentation|Maternal care for face, brow and chin presentation +C0495204|T046|HT|O32.3|ICD10CM|Maternal care for face, brow and chin presentation|Maternal care for face, brow and chin presentation +C0495204|T046|AB|O32.3|ICD10CM|Maternal care for face, brow and chin presentation|Maternal care for face, brow and chin presentation +C2908142|T046|PT|O32.3XX0|ICD10CM|Maternal care for face, brow and chin presentation, not applicable or unspecified|Maternal care for face, brow and chin presentation, not applicable or unspecified +C2908142|T046|AB|O32.3XX0|ICD10CM|Maternal care for face, brow and chin presentation, unsp|Maternal care for face, brow and chin presentation, unsp +C2908143|T046|AB|O32.3XX1|ICD10CM|Maternal care for face, brow and chin presentation, fetus 1|Maternal care for face, brow and chin presentation, fetus 1 +C2908143|T046|PT|O32.3XX1|ICD10CM|Maternal care for face, brow and chin presentation, fetus 1|Maternal care for face, brow and chin presentation, fetus 1 +C2908144|T046|AB|O32.3XX2|ICD10CM|Maternal care for face, brow and chin presentation, fetus 2|Maternal care for face, brow and chin presentation, fetus 2 +C2908144|T046|PT|O32.3XX2|ICD10CM|Maternal care for face, brow and chin presentation, fetus 2|Maternal care for face, brow and chin presentation, fetus 2 +C2908145|T046|AB|O32.3XX3|ICD10CM|Maternal care for face, brow and chin presentation, fetus 3|Maternal care for face, brow and chin presentation, fetus 3 +C2908145|T046|PT|O32.3XX3|ICD10CM|Maternal care for face, brow and chin presentation, fetus 3|Maternal care for face, brow and chin presentation, fetus 3 +C2908146|T046|AB|O32.3XX4|ICD10CM|Maternal care for face, brow and chin presentation, fetus 4|Maternal care for face, brow and chin presentation, fetus 4 +C2908146|T046|PT|O32.3XX4|ICD10CM|Maternal care for face, brow and chin presentation, fetus 4|Maternal care for face, brow and chin presentation, fetus 4 +C2908147|T046|AB|O32.3XX5|ICD10CM|Maternal care for face, brow and chin presentation, fetus 5|Maternal care for face, brow and chin presentation, fetus 5 +C2908147|T046|PT|O32.3XX5|ICD10CM|Maternal care for face, brow and chin presentation, fetus 5|Maternal care for face, brow and chin presentation, fetus 5 +C2908148|T046|AB|O32.3XX9|ICD10CM|Maternal care for face, brow and chin presentation, oth|Maternal care for face, brow and chin presentation, oth +C2908148|T046|PT|O32.3XX9|ICD10CM|Maternal care for face, brow and chin presentation, other fetus|Maternal care for face, brow and chin presentation, other fetus +C2908149|T046|ET|O32.4|ICD10CM|Maternal care for failure of head to enter pelvic brim|Maternal care for failure of head to enter pelvic brim +C0495205|T046|HT|O32.4|ICD10CM|Maternal care for high head at term|Maternal care for high head at term +C0495205|T046|AB|O32.4|ICD10CM|Maternal care for high head at term|Maternal care for high head at term +C0495205|T046|PT|O32.4|ICD10|Maternal care for high head at term|Maternal care for high head at term +C2908150|T046|AB|O32.4XX0|ICD10CM|Maternal care for high head at term, not applicable or unsp|Maternal care for high head at term, not applicable or unsp +C2908150|T046|PT|O32.4XX0|ICD10CM|Maternal care for high head at term, not applicable or unspecified|Maternal care for high head at term, not applicable or unspecified +C2908151|T046|AB|O32.4XX1|ICD10CM|Maternal care for high head at term, fetus 1|Maternal care for high head at term, fetus 1 +C2908151|T046|PT|O32.4XX1|ICD10CM|Maternal care for high head at term, fetus 1|Maternal care for high head at term, fetus 1 +C2908152|T046|AB|O32.4XX2|ICD10CM|Maternal care for high head at term, fetus 2|Maternal care for high head at term, fetus 2 +C2908152|T046|PT|O32.4XX2|ICD10CM|Maternal care for high head at term, fetus 2|Maternal care for high head at term, fetus 2 +C2908153|T046|AB|O32.4XX3|ICD10CM|Maternal care for high head at term, fetus 3|Maternal care for high head at term, fetus 3 +C2908153|T046|PT|O32.4XX3|ICD10CM|Maternal care for high head at term, fetus 3|Maternal care for high head at term, fetus 3 +C2908154|T046|AB|O32.4XX4|ICD10CM|Maternal care for high head at term, fetus 4|Maternal care for high head at term, fetus 4 +C2908154|T046|PT|O32.4XX4|ICD10CM|Maternal care for high head at term, fetus 4|Maternal care for high head at term, fetus 4 +C2908155|T046|AB|O32.4XX5|ICD10CM|Maternal care for high head at term, fetus 5|Maternal care for high head at term, fetus 5 +C2908155|T046|PT|O32.4XX5|ICD10CM|Maternal care for high head at term, fetus 5|Maternal care for high head at term, fetus 5 +C2908156|T046|AB|O32.4XX9|ICD10CM|Maternal care for high head at term, other fetus|Maternal care for high head at term, other fetus +C2908156|T046|PT|O32.4XX9|ICD10CM|Maternal care for high head at term, other fetus|Maternal care for high head at term, other fetus +C0495206|T033|PT|O32.5|ICD10|Maternal care for multiple gestation with malpresentation of one fetus or more|Maternal care for multiple gestation with malpresentation of one fetus or more +C0451813|T046|PT|O32.6|ICD10|Maternal care for compound presentation|Maternal care for compound presentation +C0451813|T046|HT|O32.6|ICD10CM|Maternal care for compound presentation|Maternal care for compound presentation +C0451813|T046|AB|O32.6|ICD10CM|Maternal care for compound presentation|Maternal care for compound presentation +C2908157|T046|PT|O32.6XX0|ICD10CM|Maternal care for compound presentation, not applicable or unspecified|Maternal care for compound presentation, not applicable or unspecified +C2908157|T046|AB|O32.6XX0|ICD10CM|Maternal care for compound presentation, unsp|Maternal care for compound presentation, unsp +C2908158|T046|AB|O32.6XX1|ICD10CM|Maternal care for compound presentation, fetus 1|Maternal care for compound presentation, fetus 1 +C2908158|T046|PT|O32.6XX1|ICD10CM|Maternal care for compound presentation, fetus 1|Maternal care for compound presentation, fetus 1 +C2908159|T046|AB|O32.6XX2|ICD10CM|Maternal care for compound presentation, fetus 2|Maternal care for compound presentation, fetus 2 +C2908159|T046|PT|O32.6XX2|ICD10CM|Maternal care for compound presentation, fetus 2|Maternal care for compound presentation, fetus 2 +C2908160|T046|AB|O32.6XX3|ICD10CM|Maternal care for compound presentation, fetus 3|Maternal care for compound presentation, fetus 3 +C2908160|T046|PT|O32.6XX3|ICD10CM|Maternal care for compound presentation, fetus 3|Maternal care for compound presentation, fetus 3 +C2908161|T046|AB|O32.6XX4|ICD10CM|Maternal care for compound presentation, fetus 4|Maternal care for compound presentation, fetus 4 +C2908161|T046|PT|O32.6XX4|ICD10CM|Maternal care for compound presentation, fetus 4|Maternal care for compound presentation, fetus 4 +C2908162|T046|AB|O32.6XX5|ICD10CM|Maternal care for compound presentation, fetus 5|Maternal care for compound presentation, fetus 5 +C2908162|T046|PT|O32.6XX5|ICD10CM|Maternal care for compound presentation, fetus 5|Maternal care for compound presentation, fetus 5 +C2908163|T046|AB|O32.6XX9|ICD10CM|Maternal care for compound presentation, other fetus|Maternal care for compound presentation, other fetus +C2908163|T046|PT|O32.6XX9|ICD10CM|Maternal care for compound presentation, other fetus|Maternal care for compound presentation, other fetus +C2908164|T046|ET|O32.8|ICD10CM|Maternal care for footling presentation|Maternal care for footling presentation +C2908165|T046|ET|O32.8|ICD10CM|Maternal care for incomplete breech|Maternal care for incomplete breech +C0477825|T046|HT|O32.8|ICD10CM|Maternal care for other malpresentation of fetus|Maternal care for other malpresentation of fetus +C0477825|T046|AB|O32.8|ICD10CM|Maternal care for other malpresentation of fetus|Maternal care for other malpresentation of fetus +C0477825|T046|PT|O32.8|ICD10|Maternal care for other malpresentation of fetus|Maternal care for other malpresentation of fetus +C2908166|T046|AB|O32.8XX0|ICD10CM|Maternal care for oth malpresentation of fetus, unsp|Maternal care for oth malpresentation of fetus, unsp +C2908166|T046|PT|O32.8XX0|ICD10CM|Maternal care for other malpresentation of fetus, not applicable or unspecified|Maternal care for other malpresentation of fetus, not applicable or unspecified +C2908167|T046|AB|O32.8XX1|ICD10CM|Maternal care for other malpresentation of fetus, fetus 1|Maternal care for other malpresentation of fetus, fetus 1 +C2908167|T046|PT|O32.8XX1|ICD10CM|Maternal care for other malpresentation of fetus, fetus 1|Maternal care for other malpresentation of fetus, fetus 1 +C2908168|T046|AB|O32.8XX2|ICD10CM|Maternal care for other malpresentation of fetus, fetus 2|Maternal care for other malpresentation of fetus, fetus 2 +C2908168|T046|PT|O32.8XX2|ICD10CM|Maternal care for other malpresentation of fetus, fetus 2|Maternal care for other malpresentation of fetus, fetus 2 +C2908169|T046|AB|O32.8XX3|ICD10CM|Maternal care for other malpresentation of fetus, fetus 3|Maternal care for other malpresentation of fetus, fetus 3 +C2908169|T046|PT|O32.8XX3|ICD10CM|Maternal care for other malpresentation of fetus, fetus 3|Maternal care for other malpresentation of fetus, fetus 3 +C2908170|T046|AB|O32.8XX4|ICD10CM|Maternal care for other malpresentation of fetus, fetus 4|Maternal care for other malpresentation of fetus, fetus 4 +C2908170|T046|PT|O32.8XX4|ICD10CM|Maternal care for other malpresentation of fetus, fetus 4|Maternal care for other malpresentation of fetus, fetus 4 +C2908171|T046|AB|O32.8XX5|ICD10CM|Maternal care for other malpresentation of fetus, fetus 5|Maternal care for other malpresentation of fetus, fetus 5 +C2908171|T046|PT|O32.8XX5|ICD10CM|Maternal care for other malpresentation of fetus, fetus 5|Maternal care for other malpresentation of fetus, fetus 5 +C2908172|T046|AB|O32.8XX9|ICD10CM|Maternal care for oth malpresentation of fetus, other fetus|Maternal care for oth malpresentation of fetus, other fetus +C2908172|T046|PT|O32.8XX9|ICD10CM|Maternal care for other malpresentation of fetus, other fetus|Maternal care for other malpresentation of fetus, other fetus +C0495207|T046|PT|O32.9|ICD10|Maternal care for malpresentation of fetus, unspecified|Maternal care for malpresentation of fetus, unspecified +C0495207|T046|HT|O32.9|ICD10CM|Maternal care for malpresentation of fetus, unspecified|Maternal care for malpresentation of fetus, unspecified +C0495207|T046|AB|O32.9|ICD10CM|Maternal care for malpresentation of fetus, unspecified|Maternal care for malpresentation of fetus, unspecified +C2908173|T046|AB|O32.9XX0|ICD10CM|Maternal care for malpresentation of fetus, unsp, unsp|Maternal care for malpresentation of fetus, unsp, unsp +C2908173|T046|PT|O32.9XX0|ICD10CM|Maternal care for malpresentation of fetus, unspecified, not applicable or unspecified|Maternal care for malpresentation of fetus, unspecified, not applicable or unspecified +C2908174|T046|AB|O32.9XX1|ICD10CM|Maternal care for malpresentation of fetus, unsp, fetus 1|Maternal care for malpresentation of fetus, unsp, fetus 1 +C2908174|T046|PT|O32.9XX1|ICD10CM|Maternal care for malpresentation of fetus, unspecified, fetus 1|Maternal care for malpresentation of fetus, unspecified, fetus 1 +C2908175|T046|AB|O32.9XX2|ICD10CM|Maternal care for malpresentation of fetus, unsp, fetus 2|Maternal care for malpresentation of fetus, unsp, fetus 2 +C2908175|T046|PT|O32.9XX2|ICD10CM|Maternal care for malpresentation of fetus, unspecified, fetus 2|Maternal care for malpresentation of fetus, unspecified, fetus 2 +C2908176|T046|AB|O32.9XX3|ICD10CM|Maternal care for malpresentation of fetus, unsp, fetus 3|Maternal care for malpresentation of fetus, unsp, fetus 3 +C2908176|T046|PT|O32.9XX3|ICD10CM|Maternal care for malpresentation of fetus, unspecified, fetus 3|Maternal care for malpresentation of fetus, unspecified, fetus 3 +C2908177|T046|AB|O32.9XX4|ICD10CM|Maternal care for malpresentation of fetus, unsp, fetus 4|Maternal care for malpresentation of fetus, unsp, fetus 4 +C2908177|T046|PT|O32.9XX4|ICD10CM|Maternal care for malpresentation of fetus, unspecified, fetus 4|Maternal care for malpresentation of fetus, unspecified, fetus 4 +C2908178|T046|AB|O32.9XX5|ICD10CM|Maternal care for malpresentation of fetus, unsp, fetus 5|Maternal care for malpresentation of fetus, unsp, fetus 5 +C2908178|T046|PT|O32.9XX5|ICD10CM|Maternal care for malpresentation of fetus, unspecified, fetus 5|Maternal care for malpresentation of fetus, unspecified, fetus 5 +C2908179|T046|AB|O32.9XX9|ICD10CM|Maternal care for malpresentation of fetus, unsp, oth fetus|Maternal care for malpresentation of fetus, unsp, oth fetus +C2908179|T046|PT|O32.9XX9|ICD10CM|Maternal care for malpresentation of fetus, unspecified, other fetus|Maternal care for malpresentation of fetus, unspecified, other fetus +C0495218|T046|AB|O33|ICD10CM|Maternal care for disproportion|Maternal care for disproportion +C0495218|T046|HT|O33|ICD10CM|Maternal care for disproportion|Maternal care for disproportion +C0495209|T046|AB|O33.0|ICD10CM|Matern care for disproprtn d/t deformity of matern pelv bone|Matern care for disproprtn d/t deformity of matern pelv bone +C0495209|T046|PT|O33.0|ICD10CM|Maternal care for disproportion due to deformity of maternal pelvic bones|Maternal care for disproportion due to deformity of maternal pelvic bones +C0495209|T046|PT|O33.0|ICD10|Maternal care for disproportion due to deformity of maternal pelvic bones|Maternal care for disproportion due to deformity of maternal pelvic bones +C2908181|T046|ET|O33.0|ICD10CM|Maternal care for disproportion due to pelvic deformity causing disproportion NOS|Maternal care for disproportion due to pelvic deformity causing disproportion NOS +C0495210|T046|AB|O33.1|ICD10CM|Matern care for disproprtn d/t generally contracted pelvis|Matern care for disproprtn d/t generally contracted pelvis +C2908182|T046|ET|O33.1|ICD10CM|Maternal care for disproportion due to contracted pelvis NOS causing disproportion|Maternal care for disproportion due to contracted pelvis NOS causing disproportion +C0495210|T046|PT|O33.1|ICD10CM|Maternal care for disproportion due to generally contracted pelvis|Maternal care for disproportion due to generally contracted pelvis +C0495210|T046|PT|O33.1|ICD10|Maternal care for disproportion due to generally contracted pelvis|Maternal care for disproportion due to generally contracted pelvis +C2908183|T046|ET|O33.2|ICD10CM|Maternal care for disproportion due to inlet contraction (pelvis) causing disproportion|Maternal care for disproportion due to inlet contraction (pelvis) causing disproportion +C0495211|T046|PT|O33.2|ICD10|Maternal care for disproportion due to inlet contraction of pelvis|Maternal care for disproportion due to inlet contraction of pelvis +C0495211|T046|PT|O33.2|ICD10CM|Maternal care for disproportion due to inlet contraction of pelvis|Maternal care for disproportion due to inlet contraction of pelvis +C0495211|T046|AB|O33.2|ICD10CM|Maternal care for disproprtn due to inlet contrctn of pelvis|Maternal care for disproprtn due to inlet contrctn of pelvis +C0495212|T046|AB|O33.3|ICD10CM|Matern care for disproprtn due to outlet contrctn of pelvis|Matern care for disproprtn due to outlet contrctn of pelvis +C2908184|T046|ET|O33.3|ICD10CM|Maternal care for disproportion due to mid-cavity contraction (pelvis)|Maternal care for disproportion due to mid-cavity contraction (pelvis) +C0495212|T046|ET|O33.3|ICD10CM|Maternal care for disproportion due to outlet contraction (pelvis)|Maternal care for disproportion due to outlet contraction (pelvis) +C0495212|T046|HT|O33.3|ICD10CM|Maternal care for disproportion due to outlet contraction of pelvis|Maternal care for disproportion due to outlet contraction of pelvis +C0495212|T046|PT|O33.3|ICD10|Maternal care for disproportion due to outlet contraction of pelvis|Maternal care for disproportion due to outlet contraction of pelvis +C2977473|T046|AB|O33.3XX0|ICD10CM|Matern care for disproprtn d/t outlet contrctn of pelv, unsp|Matern care for disproprtn d/t outlet contrctn of pelv, unsp +C2977473|T046|PT|O33.3XX0|ICD10CM|Maternal care for disproportion due to outlet contraction of pelvis, not applicable or unspecified|Maternal care for disproportion due to outlet contraction of pelvis, not applicable or unspecified +C2977474|T046|AB|O33.3XX1|ICD10CM|Matern care for disproprtn d/t outlet contrctn of pelv, fts1|Matern care for disproprtn d/t outlet contrctn of pelv, fts1 +C2977474|T046|PT|O33.3XX1|ICD10CM|Maternal care for disproportion due to outlet contraction of pelvis, fetus 1|Maternal care for disproportion due to outlet contraction of pelvis, fetus 1 +C2977475|T046|AB|O33.3XX2|ICD10CM|Matern care for disproprtn d/t outlet contrctn of pelv, fts2|Matern care for disproprtn d/t outlet contrctn of pelv, fts2 +C2977475|T046|PT|O33.3XX2|ICD10CM|Maternal care for disproportion due to outlet contraction of pelvis, fetus 2|Maternal care for disproportion due to outlet contraction of pelvis, fetus 2 +C2977476|T046|AB|O33.3XX3|ICD10CM|Matern care for disproprtn d/t outlet contrctn of pelv, fts3|Matern care for disproprtn d/t outlet contrctn of pelv, fts3 +C2977476|T046|PT|O33.3XX3|ICD10CM|Maternal care for disproportion due to outlet contraction of pelvis, fetus 3|Maternal care for disproportion due to outlet contraction of pelvis, fetus 3 +C2977477|T046|AB|O33.3XX4|ICD10CM|Matern care for disproprtn d/t outlet contrctn of pelv, fts4|Matern care for disproprtn d/t outlet contrctn of pelv, fts4 +C2977477|T046|PT|O33.3XX4|ICD10CM|Maternal care for disproportion due to outlet contraction of pelvis, fetus 4|Maternal care for disproportion due to outlet contraction of pelvis, fetus 4 +C2977478|T046|AB|O33.3XX5|ICD10CM|Matern care for disproprtn d/t outlet contrctn of pelv, fts5|Matern care for disproprtn d/t outlet contrctn of pelv, fts5 +C2977478|T046|PT|O33.3XX5|ICD10CM|Maternal care for disproportion due to outlet contraction of pelvis, fetus 5|Maternal care for disproportion due to outlet contraction of pelvis, fetus 5 +C2977479|T046|AB|O33.3XX9|ICD10CM|Matern care for disproprtn d/t outlet contrctn of pelv, oth|Matern care for disproprtn d/t outlet contrctn of pelv, oth +C2977479|T046|PT|O33.3XX9|ICD10CM|Maternal care for disproportion due to outlet contraction of pelvis, other fetus|Maternal care for disproportion due to outlet contraction of pelvis, other fetus +C0495213|T046|AB|O33.4|ICD10CM|Matern care for disproprtn of mixed matern and fetal origin|Matern care for disproprtn of mixed matern and fetal origin +C0495213|T046|HT|O33.4|ICD10CM|Maternal care for disproportion of mixed maternal and fetal origin|Maternal care for disproportion of mixed maternal and fetal origin +C0495213|T046|PT|O33.4|ICD10|Maternal care for disproportion of mixed maternal and fetal origin|Maternal care for disproportion of mixed maternal and fetal origin +C2908185|T046|AB|O33.4XX0|ICD10CM|Matern care for disproprtn of mix matern & fetl origin, unsp|Matern care for disproprtn of mix matern & fetl origin, unsp +C2908185|T046|PT|O33.4XX0|ICD10CM|Maternal care for disproportion of mixed maternal and fetal origin, not applicable or unspecified|Maternal care for disproportion of mixed maternal and fetal origin, not applicable or unspecified +C2908186|T046|AB|O33.4XX1|ICD10CM|Matern care for disproprtn of mix matern & fetl origin, fts1|Matern care for disproprtn of mix matern & fetl origin, fts1 +C2908186|T046|PT|O33.4XX1|ICD10CM|Maternal care for disproportion of mixed maternal and fetal origin, fetus 1|Maternal care for disproportion of mixed maternal and fetal origin, fetus 1 +C2908187|T046|AB|O33.4XX2|ICD10CM|Matern care for disproprtn of mix matern & fetl origin, fts2|Matern care for disproprtn of mix matern & fetl origin, fts2 +C2908187|T046|PT|O33.4XX2|ICD10CM|Maternal care for disproportion of mixed maternal and fetal origin, fetus 2|Maternal care for disproportion of mixed maternal and fetal origin, fetus 2 +C2908188|T046|AB|O33.4XX3|ICD10CM|Matern care for disproprtn of mix matern & fetl origin, fts3|Matern care for disproprtn of mix matern & fetl origin, fts3 +C2908188|T046|PT|O33.4XX3|ICD10CM|Maternal care for disproportion of mixed maternal and fetal origin, fetus 3|Maternal care for disproportion of mixed maternal and fetal origin, fetus 3 +C2908189|T046|AB|O33.4XX4|ICD10CM|Matern care for disproprtn of mix matern & fetl origin, fts4|Matern care for disproprtn of mix matern & fetl origin, fts4 +C2908189|T046|PT|O33.4XX4|ICD10CM|Maternal care for disproportion of mixed maternal and fetal origin, fetus 4|Maternal care for disproportion of mixed maternal and fetal origin, fetus 4 +C2908190|T046|AB|O33.4XX5|ICD10CM|Matern care for disproprtn of mix matern & fetl origin, fts5|Matern care for disproprtn of mix matern & fetl origin, fts5 +C2908190|T046|PT|O33.4XX5|ICD10CM|Maternal care for disproportion of mixed maternal and fetal origin, fetus 5|Maternal care for disproportion of mixed maternal and fetal origin, fetus 5 +C2908191|T046|AB|O33.4XX9|ICD10CM|Matern care for disproprtn of mix matern & fetl origin, oth|Matern care for disproprtn of mix matern & fetl origin, oth +C2908191|T046|PT|O33.4XX9|ICD10CM|Maternal care for disproportion of mixed maternal and fetal origin, other fetus|Maternal care for disproportion of mixed maternal and fetal origin, other fetus +C2908192|T046|ET|O33.5|ICD10CM|Maternal care for disproportion due to disproportion of fetal origin with normally formed fetus|Maternal care for disproportion due to disproportion of fetal origin with normally formed fetus +C2908193|T046|ET|O33.5|ICD10CM|Maternal care for disproportion due to fetal disproportion NOS|Maternal care for disproportion due to fetal disproportion NOS +C0495214|T046|PT|O33.5|ICD10|Maternal care for disproportion due to unusually large fetus|Maternal care for disproportion due to unusually large fetus +C0495214|T046|HT|O33.5|ICD10CM|Maternal care for disproportion due to unusually large fetus|Maternal care for disproportion due to unusually large fetus +C0495214|T046|AB|O33.5|ICD10CM|Maternal care for disproportion due to unusually large fetus|Maternal care for disproportion due to unusually large fetus +C2908194|T046|AB|O33.5XX0|ICD10CM|Matern care for disproprtn d/t unusually large fetus, unsp|Matern care for disproprtn d/t unusually large fetus, unsp +C2908194|T046|PT|O33.5XX0|ICD10CM|Maternal care for disproportion due to unusually large fetus, not applicable or unspecified|Maternal care for disproportion due to unusually large fetus, not applicable or unspecified +C2908195|T046|AB|O33.5XX1|ICD10CM|Matern care for disproprtn d/t unusually large fetus, fts1|Matern care for disproprtn d/t unusually large fetus, fts1 +C2908195|T046|PT|O33.5XX1|ICD10CM|Maternal care for disproportion due to unusually large fetus, fetus 1|Maternal care for disproportion due to unusually large fetus, fetus 1 +C2908196|T046|AB|O33.5XX2|ICD10CM|Matern care for disproprtn d/t unusually large fetus, fts2|Matern care for disproprtn d/t unusually large fetus, fts2 +C2908196|T046|PT|O33.5XX2|ICD10CM|Maternal care for disproportion due to unusually large fetus, fetus 2|Maternal care for disproportion due to unusually large fetus, fetus 2 +C2908197|T046|AB|O33.5XX3|ICD10CM|Matern care for disproprtn d/t unusually large fetus, fts3|Matern care for disproprtn d/t unusually large fetus, fts3 +C2908197|T046|PT|O33.5XX3|ICD10CM|Maternal care for disproportion due to unusually large fetus, fetus 3|Maternal care for disproportion due to unusually large fetus, fetus 3 +C2908198|T046|AB|O33.5XX4|ICD10CM|Matern care for disproprtn d/t unusually large fetus, fts4|Matern care for disproprtn d/t unusually large fetus, fts4 +C2908198|T046|PT|O33.5XX4|ICD10CM|Maternal care for disproportion due to unusually large fetus, fetus 4|Maternal care for disproportion due to unusually large fetus, fetus 4 +C2908199|T046|AB|O33.5XX5|ICD10CM|Matern care for disproprtn d/t unusually large fetus, fts5|Matern care for disproprtn d/t unusually large fetus, fts5 +C2908199|T046|PT|O33.5XX5|ICD10CM|Maternal care for disproportion due to unusually large fetus, fetus 5|Maternal care for disproportion due to unusually large fetus, fetus 5 +C2908200|T046|AB|O33.5XX9|ICD10CM|Matern care for disproprtn due to unusually large fetus, oth|Matern care for disproprtn due to unusually large fetus, oth +C2908200|T046|PT|O33.5XX9|ICD10CM|Maternal care for disproportion due to unusually large fetus, other fetus|Maternal care for disproportion due to unusually large fetus, other fetus +C0495215|T046|HT|O33.6|ICD10CM|Maternal care for disproportion due to hydrocephalic fetus|Maternal care for disproportion due to hydrocephalic fetus +C0495215|T046|AB|O33.6|ICD10CM|Maternal care for disproportion due to hydrocephalic fetus|Maternal care for disproportion due to hydrocephalic fetus +C0495215|T046|PT|O33.6|ICD10|Maternal care for disproportion due to hydrocephalic fetus|Maternal care for disproportion due to hydrocephalic fetus +C2908201|T046|AB|O33.6XX0|ICD10CM|Matern care for disproprtn due to hydrocephalic fetus, unsp|Matern care for disproprtn due to hydrocephalic fetus, unsp +C2908201|T046|PT|O33.6XX0|ICD10CM|Maternal care for disproportion due to hydrocephalic fetus, not applicable or unspecified|Maternal care for disproportion due to hydrocephalic fetus, not applicable or unspecified +C2908202|T046|AB|O33.6XX1|ICD10CM|Matern care for disproprtn due to hydrocephalic fetus, fts1|Matern care for disproprtn due to hydrocephalic fetus, fts1 +C2908202|T046|PT|O33.6XX1|ICD10CM|Maternal care for disproportion due to hydrocephalic fetus, fetus 1|Maternal care for disproportion due to hydrocephalic fetus, fetus 1 +C2908203|T046|AB|O33.6XX2|ICD10CM|Matern care for disproprtn due to hydrocephalic fetus, fts2|Matern care for disproprtn due to hydrocephalic fetus, fts2 +C2908203|T046|PT|O33.6XX2|ICD10CM|Maternal care for disproportion due to hydrocephalic fetus, fetus 2|Maternal care for disproportion due to hydrocephalic fetus, fetus 2 +C2908204|T046|AB|O33.6XX3|ICD10CM|Matern care for disproprtn due to hydrocephalic fetus, fts3|Matern care for disproprtn due to hydrocephalic fetus, fts3 +C2908204|T046|PT|O33.6XX3|ICD10CM|Maternal care for disproportion due to hydrocephalic fetus, fetus 3|Maternal care for disproportion due to hydrocephalic fetus, fetus 3 +C2908205|T046|AB|O33.6XX4|ICD10CM|Matern care for disproprtn due to hydrocephalic fetus, fts4|Matern care for disproprtn due to hydrocephalic fetus, fts4 +C2908205|T046|PT|O33.6XX4|ICD10CM|Maternal care for disproportion due to hydrocephalic fetus, fetus 4|Maternal care for disproportion due to hydrocephalic fetus, fetus 4 +C2908206|T046|AB|O33.6XX5|ICD10CM|Matern care for disproprtn due to hydrocephalic fetus, fts5|Matern care for disproprtn due to hydrocephalic fetus, fts5 +C2908206|T046|PT|O33.6XX5|ICD10CM|Maternal care for disproportion due to hydrocephalic fetus, fetus 5|Maternal care for disproportion due to hydrocephalic fetus, fetus 5 +C2908207|T046|PT|O33.6XX9|ICD10CM|Maternal care for disproportion due to hydrocephalic fetus, other fetus|Maternal care for disproportion due to hydrocephalic fetus, other fetus +C2908207|T046|AB|O33.6XX9|ICD10CM|Maternal care for disproprtn due to hydrocephalic fetus, oth|Maternal care for disproprtn due to hydrocephalic fetus, oth +C2908208|T046|ET|O33.7|ICD10CM|Maternal care for disproportion due to fetal ascites|Maternal care for disproportion due to fetal ascites +C2908209|T046|ET|O33.7|ICD10CM|Maternal care for disproportion due to fetal hydrops|Maternal care for disproportion due to fetal hydrops +C2908210|T046|ET|O33.7|ICD10CM|Maternal care for disproportion due to fetal meningomyelocele|Maternal care for disproportion due to fetal meningomyelocele +C2908211|T046|ET|O33.7|ICD10CM|Maternal care for disproportion due to fetal sacral teratoma|Maternal care for disproportion due to fetal sacral teratoma +C2908212|T046|ET|O33.7|ICD10CM|Maternal care for disproportion due to fetal tumor|Maternal care for disproportion due to fetal tumor +C0495216|T046|AB|O33.7|ICD10CM|Maternal care for disproportion due to oth fetal deformities|Maternal care for disproportion due to oth fetal deformities +C0495216|T046|HT|O33.7|ICD10CM|Maternal care for disproportion due to other fetal deformities|Maternal care for disproportion due to other fetal deformities +C0495216|T046|PT|O33.7|ICD10|Maternal care for disproportion due to other fetal deformities|Maternal care for disproportion due to other fetal deformities +C4269006|T046|PT|O33.7XX0|ICD10CM|Maternal care for disproportion due to other fetal deformities, not applicable or unspecified|Maternal care for disproportion due to other fetal deformities, not applicable or unspecified +C4269006|T046|AB|O33.7XX0|ICD10CM|Maternal care for disproprtn due to other fetal deform, unsp|Maternal care for disproprtn due to other fetal deform, unsp +C4269007|T046|AB|O33.7XX1|ICD10CM|Matern care for disproprtn due to other fetal deform, fts1|Matern care for disproprtn due to other fetal deform, fts1 +C4269007|T046|PT|O33.7XX1|ICD10CM|Maternal care for disproportion due to other fetal deformities, fetus 1|Maternal care for disproportion due to other fetal deformities, fetus 1 +C4269008|T046|AB|O33.7XX2|ICD10CM|Matern care for disproprtn due to other fetal deform, fts2|Matern care for disproprtn due to other fetal deform, fts2 +C4269008|T046|PT|O33.7XX2|ICD10CM|Maternal care for disproportion due to other fetal deformities, fetus 2|Maternal care for disproportion due to other fetal deformities, fetus 2 +C4269009|T046|AB|O33.7XX3|ICD10CM|Matern care for disproprtn due to other fetal deform, fts3|Matern care for disproprtn due to other fetal deform, fts3 +C4269009|T046|PT|O33.7XX3|ICD10CM|Maternal care for disproportion due to other fetal deformities, fetus 3|Maternal care for disproportion due to other fetal deformities, fetus 3 +C4269010|T046|AB|O33.7XX4|ICD10CM|Matern care for disproprtn due to other fetal deform, fts4|Matern care for disproprtn due to other fetal deform, fts4 +C4269010|T046|PT|O33.7XX4|ICD10CM|Maternal care for disproportion due to other fetal deformities, fetus 4|Maternal care for disproportion due to other fetal deformities, fetus 4 +C4269011|T046|AB|O33.7XX5|ICD10CM|Matern care for disproprtn due to other fetal deform, fts5|Matern care for disproprtn due to other fetal deform, fts5 +C4269011|T046|PT|O33.7XX5|ICD10CM|Maternal care for disproportion due to other fetal deformities, fetus 5|Maternal care for disproportion due to other fetal deformities, fetus 5 +C4269012|T046|PT|O33.7XX9|ICD10CM|Maternal care for disproportion due to other fetal deformities, other fetus|Maternal care for disproportion due to other fetal deformities, other fetus +C4269012|T046|AB|O33.7XX9|ICD10CM|Maternal care for disproprtn due to other fetal deform, oth|Maternal care for disproprtn due to other fetal deform, oth +C0495217|T046|PT|O33.8|ICD10|Maternal care for disproportion of other origin|Maternal care for disproportion of other origin +C0495217|T046|PT|O33.8|ICD10CM|Maternal care for disproportion of other origin|Maternal care for disproportion of other origin +C0495217|T046|AB|O33.8|ICD10CM|Maternal care for disproportion of other origin|Maternal care for disproportion of other origin +C2908220|T046|ET|O33.9|ICD10CM|Maternal care for disproportion due to cephalopelvic disproportion NOS|Maternal care for disproportion due to cephalopelvic disproportion NOS +C2908221|T046|ET|O33.9|ICD10CM|Maternal care for disproportion due to fetopelvic disproportion NOS|Maternal care for disproportion due to fetopelvic disproportion NOS +C0495218|T046|PT|O33.9|ICD10CM|Maternal care for disproportion, unspecified|Maternal care for disproportion, unspecified +C0495218|T046|AB|O33.9|ICD10CM|Maternal care for disproportion, unspecified|Maternal care for disproportion, unspecified +C0495218|T046|PT|O33.9|ICD10|Maternal care for disproportion, unspecified|Maternal care for disproportion, unspecified +C0495226|T046|AB|O34|ICD10CM|Maternal care for abnormality of pelvic organs|Maternal care for abnormality of pelvic organs +C0495226|T046|HT|O34|ICD10CM|Maternal care for abnormality of pelvic organs|Maternal care for abnormality of pelvic organs +C0495220|T046|HT|O34.0|ICD10CM|Maternal care for congenital malformation of uterus|Maternal care for congenital malformation of uterus +C0495220|T046|AB|O34.0|ICD10CM|Maternal care for congenital malformation of uterus|Maternal care for congenital malformation of uterus +C0495220|T046|PT|O34.0|ICD10|Maternal care for congenital malformation of uterus|Maternal care for congenital malformation of uterus +C2908223|T046|AB|O34.00|ICD10CM|Maternal care for unsp congen malform of uterus, unsp tri|Maternal care for unsp congen malform of uterus, unsp tri +C2908223|T046|PT|O34.00|ICD10CM|Maternal care for unspecified congenital malformation of uterus, unspecified trimester|Maternal care for unspecified congenital malformation of uterus, unspecified trimester +C2908224|T046|AB|O34.01|ICD10CM|Maternal care for unsp congen malform of uterus, first tri|Maternal care for unsp congen malform of uterus, first tri +C2908224|T046|PT|O34.01|ICD10CM|Maternal care for unspecified congenital malformation of uterus, first trimester|Maternal care for unspecified congenital malformation of uterus, first trimester +C2908225|T046|AB|O34.02|ICD10CM|Maternal care for unsp congen malform of uterus, second tri|Maternal care for unsp congen malform of uterus, second tri +C2908225|T046|PT|O34.02|ICD10CM|Maternal care for unspecified congenital malformation of uterus, second trimester|Maternal care for unspecified congenital malformation of uterus, second trimester +C2908226|T046|AB|O34.03|ICD10CM|Maternal care for unsp congen malform of uterus, third tri|Maternal care for unsp congen malform of uterus, third tri +C2908226|T046|PT|O34.03|ICD10CM|Maternal care for unspecified congenital malformation of uterus, third trimester|Maternal care for unspecified congenital malformation of uterus, third trimester +C2908227|T046|AB|O34.1|ICD10CM|Maternal care for benign tumor of corpus uteri|Maternal care for benign tumor of corpus uteri +C2908227|T046|HT|O34.1|ICD10CM|Maternal care for benign tumor of corpus uteri|Maternal care for benign tumor of corpus uteri +C2908228|T046|AB|O34.10|ICD10CM|Maternal care for benign tumor of corpus uteri, unsp tri|Maternal care for benign tumor of corpus uteri, unsp tri +C2908228|T046|PT|O34.10|ICD10CM|Maternal care for benign tumor of corpus uteri, unspecified trimester|Maternal care for benign tumor of corpus uteri, unspecified trimester +C2908229|T046|AB|O34.11|ICD10CM|Maternal care for benign tumor of corpus uteri, first tri|Maternal care for benign tumor of corpus uteri, first tri +C2908229|T046|PT|O34.11|ICD10CM|Maternal care for benign tumor of corpus uteri, first trimester|Maternal care for benign tumor of corpus uteri, first trimester +C2908230|T046|AB|O34.12|ICD10CM|Maternal care for benign tumor of corpus uteri, second tri|Maternal care for benign tumor of corpus uteri, second tri +C2908230|T046|PT|O34.12|ICD10CM|Maternal care for benign tumor of corpus uteri, second trimester|Maternal care for benign tumor of corpus uteri, second trimester +C2908231|T046|AB|O34.13|ICD10CM|Maternal care for benign tumor of corpus uteri, third tri|Maternal care for benign tumor of corpus uteri, third tri +C2908231|T046|PT|O34.13|ICD10CM|Maternal care for benign tumor of corpus uteri, third trimester|Maternal care for benign tumor of corpus uteri, third trimester +C0495222|T046|PT|O34.2|ICD10|Maternal care due to uterine scar from previous surgery|Maternal care due to uterine scar from previous surgery +C0495222|T046|HT|O34.2|ICD10CM|Maternal care due to uterine scar from previous surgery|Maternal care due to uterine scar from previous surgery +C0495222|T046|AB|O34.2|ICD10CM|Maternal care due to uterine scar from previous surgery|Maternal care due to uterine scar from previous surgery +C2908232|T046|AB|O34.21|ICD10CM|Maternal care for scar from previous cesarean delivery|Maternal care for scar from previous cesarean delivery +C2908232|T046|HT|O34.21|ICD10CM|Maternal care for scar from previous cesarean delivery|Maternal care for scar from previous cesarean delivery +C4269015|T046|AB|O34.211|ICD10CM|Matern care for low transverse scar from prev cesarean del|Matern care for low transverse scar from prev cesarean del +C4269015|T046|PT|O34.211|ICD10CM|Maternal care for low transverse scar from previous cesarean delivery|Maternal care for low transverse scar from previous cesarean delivery +C4269016|T046|AB|O34.212|ICD10CM|Maternal care for vertical scar from previous cesarean del|Maternal care for vertical scar from previous cesarean del +C4269016|T046|PT|O34.212|ICD10CM|Maternal care for vertical scar from previous cesarean delivery|Maternal care for vertical scar from previous cesarean delivery +C4269018|T046|AB|O34.219|ICD10CM|Maternal care for unsp type scar from previous cesarean del|Maternal care for unsp type scar from previous cesarean del +C4269018|T046|PT|O34.219|ICD10CM|Maternal care for unspecified type scar from previous cesarean delivery|Maternal care for unspecified type scar from previous cesarean delivery +C2908233|T046|AB|O34.29|ICD10CM|Maternal care due to uterine scar from oth previous surgery|Maternal care due to uterine scar from oth previous surgery +C2908233|T046|PT|O34.29|ICD10CM|Maternal care due to uterine scar from other previous surgery|Maternal care due to uterine scar from other previous surgery +C2908235|T047|ET|O34.3|ICD10CM|Maternal care for cerclage with or without cervical incompetence|Maternal care for cerclage with or without cervical incompetence +C0495223|T046|HT|O34.3|ICD10CM|Maternal care for cervical incompetence|Maternal care for cervical incompetence +C0495223|T046|AB|O34.3|ICD10CM|Maternal care for cervical incompetence|Maternal care for cervical incompetence +C0495223|T046|PT|O34.3|ICD10|Maternal care for cervical incompetence|Maternal care for cervical incompetence +C2908234|T046|ET|O34.3|ICD10CM|Maternal care for Shirodkar suture with or without cervical incompetence|Maternal care for Shirodkar suture with or without cervical incompetence +C0495223|T046|AB|O34.30|ICD10CM|Maternal care for cervical incompetence, unsp trimester|Maternal care for cervical incompetence, unsp trimester +C0495223|T046|PT|O34.30|ICD10CM|Maternal care for cervical incompetence, unspecified trimester|Maternal care for cervical incompetence, unspecified trimester +C2908236|T046|AB|O34.31|ICD10CM|Maternal care for cervical incompetence, first trimester|Maternal care for cervical incompetence, first trimester +C2908236|T046|PT|O34.31|ICD10CM|Maternal care for cervical incompetence, first trimester|Maternal care for cervical incompetence, first trimester +C2908237|T046|AB|O34.32|ICD10CM|Maternal care for cervical incompetence, second trimester|Maternal care for cervical incompetence, second trimester +C2908237|T046|PT|O34.32|ICD10CM|Maternal care for cervical incompetence, second trimester|Maternal care for cervical incompetence, second trimester +C2908238|T046|AB|O34.33|ICD10CM|Maternal care for cervical incompetence, third trimester|Maternal care for cervical incompetence, third trimester +C2908238|T046|PT|O34.33|ICD10CM|Maternal care for cervical incompetence, third trimester|Maternal care for cervical incompetence, third trimester +C0477826|T046|PT|O34.4|ICD10|Maternal care for other abnormalities of cervix|Maternal care for other abnormalities of cervix +C0477826|T046|HT|O34.4|ICD10CM|Maternal care for other abnormalities of cervix|Maternal care for other abnormalities of cervix +C0477826|T046|AB|O34.4|ICD10CM|Maternal care for other abnormalities of cervix|Maternal care for other abnormalities of cervix +C2908239|T046|AB|O34.40|ICD10CM|Maternal care for oth abnlt of cervix, unsp trimester|Maternal care for oth abnlt of cervix, unsp trimester +C2908239|T046|PT|O34.40|ICD10CM|Maternal care for other abnormalities of cervix, unspecified trimester|Maternal care for other abnormalities of cervix, unspecified trimester +C2908240|T046|AB|O34.41|ICD10CM|Maternal care for oth abnlt of cervix, first trimester|Maternal care for oth abnlt of cervix, first trimester +C2908240|T046|PT|O34.41|ICD10CM|Maternal care for other abnormalities of cervix, first trimester|Maternal care for other abnormalities of cervix, first trimester +C2908241|T046|AB|O34.42|ICD10CM|Maternal care for oth abnlt of cervix, second trimester|Maternal care for oth abnlt of cervix, second trimester +C2908241|T046|PT|O34.42|ICD10CM|Maternal care for other abnormalities of cervix, second trimester|Maternal care for other abnormalities of cervix, second trimester +C2908242|T046|AB|O34.43|ICD10CM|Maternal care for oth abnlt of cervix, third trimester|Maternal care for oth abnlt of cervix, third trimester +C2908242|T046|PT|O34.43|ICD10CM|Maternal care for other abnormalities of cervix, third trimester|Maternal care for other abnormalities of cervix, third trimester +C0477827|T046|HT|O34.5|ICD10CM|Maternal care for other abnormalities of gravid uterus|Maternal care for other abnormalities of gravid uterus +C0477827|T046|AB|O34.5|ICD10CM|Maternal care for other abnormalities of gravid uterus|Maternal care for other abnormalities of gravid uterus +C0477827|T046|PT|O34.5|ICD10|Maternal care for other abnormalities of gravid uterus|Maternal care for other abnormalities of gravid uterus +C2908243|T046|AB|O34.51|ICD10CM|Maternal care for incarceration of gravid uterus|Maternal care for incarceration of gravid uterus +C2908243|T046|HT|O34.51|ICD10CM|Maternal care for incarceration of gravid uterus|Maternal care for incarceration of gravid uterus +C2908244|T046|AB|O34.511|ICD10CM|Maternal care for incarceration of gravid uterus, first tri|Maternal care for incarceration of gravid uterus, first tri +C2908244|T046|PT|O34.511|ICD10CM|Maternal care for incarceration of gravid uterus, first trimester|Maternal care for incarceration of gravid uterus, first trimester +C2908245|T046|AB|O34.512|ICD10CM|Maternal care for incarceration of gravid uterus, second tri|Maternal care for incarceration of gravid uterus, second tri +C2908245|T046|PT|O34.512|ICD10CM|Maternal care for incarceration of gravid uterus, second trimester|Maternal care for incarceration of gravid uterus, second trimester +C2908246|T046|AB|O34.513|ICD10CM|Maternal care for incarceration of gravid uterus, third tri|Maternal care for incarceration of gravid uterus, third tri +C2908246|T046|PT|O34.513|ICD10CM|Maternal care for incarceration of gravid uterus, third trimester|Maternal care for incarceration of gravid uterus, third trimester +C2908247|T046|AB|O34.519|ICD10CM|Maternal care for incarceration of gravid uterus, unsp tri|Maternal care for incarceration of gravid uterus, unsp tri +C2908247|T046|PT|O34.519|ICD10CM|Maternal care for incarceration of gravid uterus, unspecified trimester|Maternal care for incarceration of gravid uterus, unspecified trimester +C2908248|T046|AB|O34.52|ICD10CM|Maternal care for prolapse of gravid uterus|Maternal care for prolapse of gravid uterus +C2908248|T046|HT|O34.52|ICD10CM|Maternal care for prolapse of gravid uterus|Maternal care for prolapse of gravid uterus +C2908249|T046|AB|O34.521|ICD10CM|Maternal care for prolapse of gravid uterus, first trimester|Maternal care for prolapse of gravid uterus, first trimester +C2908249|T046|PT|O34.521|ICD10CM|Maternal care for prolapse of gravid uterus, first trimester|Maternal care for prolapse of gravid uterus, first trimester +C2908250|T046|AB|O34.522|ICD10CM|Maternal care for prolapse of gravid uterus, second tri|Maternal care for prolapse of gravid uterus, second tri +C2908250|T046|PT|O34.522|ICD10CM|Maternal care for prolapse of gravid uterus, second trimester|Maternal care for prolapse of gravid uterus, second trimester +C2908251|T046|AB|O34.523|ICD10CM|Maternal care for prolapse of gravid uterus, third trimester|Maternal care for prolapse of gravid uterus, third trimester +C2908251|T046|PT|O34.523|ICD10CM|Maternal care for prolapse of gravid uterus, third trimester|Maternal care for prolapse of gravid uterus, third trimester +C2908252|T046|AB|O34.529|ICD10CM|Maternal care for prolapse of gravid uterus, unsp trimester|Maternal care for prolapse of gravid uterus, unsp trimester +C2908252|T046|PT|O34.529|ICD10CM|Maternal care for prolapse of gravid uterus, unspecified trimester|Maternal care for prolapse of gravid uterus, unspecified trimester +C2908253|T046|AB|O34.53|ICD10CM|Maternal care for retroversion of gravid uterus|Maternal care for retroversion of gravid uterus +C2908253|T046|HT|O34.53|ICD10CM|Maternal care for retroversion of gravid uterus|Maternal care for retroversion of gravid uterus +C2908254|T046|AB|O34.531|ICD10CM|Maternal care for retroversion of gravid uterus, first tri|Maternal care for retroversion of gravid uterus, first tri +C2908254|T046|PT|O34.531|ICD10CM|Maternal care for retroversion of gravid uterus, first trimester|Maternal care for retroversion of gravid uterus, first trimester +C2908255|T046|AB|O34.532|ICD10CM|Maternal care for retroversion of gravid uterus, second tri|Maternal care for retroversion of gravid uterus, second tri +C2908255|T046|PT|O34.532|ICD10CM|Maternal care for retroversion of gravid uterus, second trimester|Maternal care for retroversion of gravid uterus, second trimester +C2908256|T046|AB|O34.533|ICD10CM|Maternal care for retroversion of gravid uterus, third tri|Maternal care for retroversion of gravid uterus, third tri +C2908256|T046|PT|O34.533|ICD10CM|Maternal care for retroversion of gravid uterus, third trimester|Maternal care for retroversion of gravid uterus, third trimester +C2908257|T046|AB|O34.539|ICD10CM|Maternal care for retroversion of gravid uterus, unsp tri|Maternal care for retroversion of gravid uterus, unsp tri +C2908257|T046|PT|O34.539|ICD10CM|Maternal care for retroversion of gravid uterus, unspecified trimester|Maternal care for retroversion of gravid uterus, unspecified trimester +C0477827|T046|HT|O34.59|ICD10CM|Maternal care for other abnormalities of gravid uterus|Maternal care for other abnormalities of gravid uterus +C0477827|T046|AB|O34.59|ICD10CM|Maternal care for other abnormalities of gravid uterus|Maternal care for other abnormalities of gravid uterus +C2908258|T046|AB|O34.591|ICD10CM|Maternal care for oth abnlt of gravid uterus, first tri|Maternal care for oth abnlt of gravid uterus, first tri +C2908258|T046|PT|O34.591|ICD10CM|Maternal care for other abnormalities of gravid uterus, first trimester|Maternal care for other abnormalities of gravid uterus, first trimester +C2908259|T046|AB|O34.592|ICD10CM|Maternal care for oth abnlt of gravid uterus, second tri|Maternal care for oth abnlt of gravid uterus, second tri +C2908259|T046|PT|O34.592|ICD10CM|Maternal care for other abnormalities of gravid uterus, second trimester|Maternal care for other abnormalities of gravid uterus, second trimester +C2908260|T046|AB|O34.593|ICD10CM|Maternal care for oth abnlt of gravid uterus, third tri|Maternal care for oth abnlt of gravid uterus, third tri +C2908260|T046|PT|O34.593|ICD10CM|Maternal care for other abnormalities of gravid uterus, third trimester|Maternal care for other abnormalities of gravid uterus, third trimester +C2908261|T046|AB|O34.599|ICD10CM|Maternal care for oth abnlt of gravid uterus, unsp trimester|Maternal care for oth abnlt of gravid uterus, unsp trimester +C2908261|T046|PT|O34.599|ICD10CM|Maternal care for other abnormalities of gravid uterus, unspecified trimester|Maternal care for other abnormalities of gravid uterus, unspecified trimester +C0495224|T046|HT|O34.6|ICD10CM|Maternal care for abnormality of vagina|Maternal care for abnormality of vagina +C0495224|T046|AB|O34.6|ICD10CM|Maternal care for abnormality of vagina|Maternal care for abnormality of vagina +C0495224|T046|PT|O34.6|ICD10|Maternal care for abnormality of vagina|Maternal care for abnormality of vagina +C2908262|T046|AB|O34.60|ICD10CM|Maternal care for abnormality of vagina, unsp trimester|Maternal care for abnormality of vagina, unsp trimester +C2908262|T046|PT|O34.60|ICD10CM|Maternal care for abnormality of vagina, unspecified trimester|Maternal care for abnormality of vagina, unspecified trimester +C2908263|T046|AB|O34.61|ICD10CM|Maternal care for abnormality of vagina, first trimester|Maternal care for abnormality of vagina, first trimester +C2908263|T046|PT|O34.61|ICD10CM|Maternal care for abnormality of vagina, first trimester|Maternal care for abnormality of vagina, first trimester +C2908264|T046|AB|O34.62|ICD10CM|Maternal care for abnormality of vagina, second trimester|Maternal care for abnormality of vagina, second trimester +C2908264|T046|PT|O34.62|ICD10CM|Maternal care for abnormality of vagina, second trimester|Maternal care for abnormality of vagina, second trimester +C2908265|T046|AB|O34.63|ICD10CM|Maternal care for abnormality of vagina, third trimester|Maternal care for abnormality of vagina, third trimester +C2908265|T046|PT|O34.63|ICD10CM|Maternal care for abnormality of vagina, third trimester|Maternal care for abnormality of vagina, third trimester +C0495225|T046|PT|O34.7|ICD10|Maternal care for abnormality of vulva and perineum|Maternal care for abnormality of vulva and perineum +C0495225|T046|HT|O34.7|ICD10CM|Maternal care for abnormality of vulva and perineum|Maternal care for abnormality of vulva and perineum +C0495225|T046|AB|O34.7|ICD10CM|Maternal care for abnormality of vulva and perineum|Maternal care for abnormality of vulva and perineum +C0495225|T046|AB|O34.70|ICD10CM|Maternal care for abnlt of vulva and perineum, unsp tri|Maternal care for abnlt of vulva and perineum, unsp tri +C0495225|T046|PT|O34.70|ICD10CM|Maternal care for abnormality of vulva and perineum, unspecified trimester|Maternal care for abnormality of vulva and perineum, unspecified trimester +C2908266|T046|AB|O34.71|ICD10CM|Maternal care for abnlt of vulva and perineum, first tri|Maternal care for abnlt of vulva and perineum, first tri +C2908266|T046|PT|O34.71|ICD10CM|Maternal care for abnormality of vulva and perineum, first trimester|Maternal care for abnormality of vulva and perineum, first trimester +C2908267|T046|AB|O34.72|ICD10CM|Maternal care for abnlt of vulva and perineum, second tri|Maternal care for abnlt of vulva and perineum, second tri +C2908267|T046|PT|O34.72|ICD10CM|Maternal care for abnormality of vulva and perineum, second trimester|Maternal care for abnormality of vulva and perineum, second trimester +C2908268|T046|AB|O34.73|ICD10CM|Maternal care for abnlt of vulva and perineum, third tri|Maternal care for abnlt of vulva and perineum, third tri +C2908268|T046|PT|O34.73|ICD10CM|Maternal care for abnormality of vulva and perineum, third trimester|Maternal care for abnormality of vulva and perineum, third trimester +C0477828|T046|HT|O34.8|ICD10CM|Maternal care for other abnormalities of pelvic organs|Maternal care for other abnormalities of pelvic organs +C0477828|T046|AB|O34.8|ICD10CM|Maternal care for other abnormalities of pelvic organs|Maternal care for other abnormalities of pelvic organs +C0477828|T046|PT|O34.8|ICD10|Maternal care for other abnormalities of pelvic organs|Maternal care for other abnormalities of pelvic organs +C2908269|T046|AB|O34.80|ICD10CM|Maternal care for oth abnlt of pelvic organs, unsp trimester|Maternal care for oth abnlt of pelvic organs, unsp trimester +C2908269|T046|PT|O34.80|ICD10CM|Maternal care for other abnormalities of pelvic organs, unspecified trimester|Maternal care for other abnormalities of pelvic organs, unspecified trimester +C2908270|T046|AB|O34.81|ICD10CM|Maternal care for oth abnlt of pelvic organs, first tri|Maternal care for oth abnlt of pelvic organs, first tri +C2908270|T046|PT|O34.81|ICD10CM|Maternal care for other abnormalities of pelvic organs, first trimester|Maternal care for other abnormalities of pelvic organs, first trimester +C2908271|T046|AB|O34.82|ICD10CM|Maternal care for oth abnlt of pelvic organs, second tri|Maternal care for oth abnlt of pelvic organs, second tri +C2908271|T046|PT|O34.82|ICD10CM|Maternal care for other abnormalities of pelvic organs, second trimester|Maternal care for other abnormalities of pelvic organs, second trimester +C2908272|T046|AB|O34.83|ICD10CM|Maternal care for oth abnlt of pelvic organs, third tri|Maternal care for oth abnlt of pelvic organs, third tri +C2908272|T046|PT|O34.83|ICD10CM|Maternal care for other abnormalities of pelvic organs, third trimester|Maternal care for other abnormalities of pelvic organs, third trimester +C0495226|T046|PT|O34.9|ICD10|Maternal care for abnormality of pelvic organ, unspecified|Maternal care for abnormality of pelvic organ, unspecified +C0495226|T046|HT|O34.9|ICD10CM|Maternal care for abnormality of pelvic organ, unspecified|Maternal care for abnormality of pelvic organ, unspecified +C0495226|T046|AB|O34.9|ICD10CM|Maternal care for abnormality of pelvic organ, unspecified|Maternal care for abnormality of pelvic organ, unspecified +C0495226|T046|AB|O34.90|ICD10CM|Maternal care for abnlt of pelvic organ, unsp, unsp tri|Maternal care for abnlt of pelvic organ, unsp, unsp tri +C0495226|T046|PT|O34.90|ICD10CM|Maternal care for abnormality of pelvic organ, unspecified, unspecified trimester|Maternal care for abnormality of pelvic organ, unspecified, unspecified trimester +C2908273|T046|AB|O34.91|ICD10CM|Maternal care for abnlt of pelvic organ, unsp, first tri|Maternal care for abnlt of pelvic organ, unsp, first tri +C2908273|T046|PT|O34.91|ICD10CM|Maternal care for abnormality of pelvic organ, unspecified, first trimester|Maternal care for abnormality of pelvic organ, unspecified, first trimester +C2908274|T046|AB|O34.92|ICD10CM|Maternal care for abnlt of pelvic organ, unsp, second tri|Maternal care for abnlt of pelvic organ, unsp, second tri +C2908274|T046|PT|O34.92|ICD10CM|Maternal care for abnormality of pelvic organ, unspecified, second trimester|Maternal care for abnormality of pelvic organ, unspecified, second trimester +C2908275|T046|AB|O34.93|ICD10CM|Maternal care for abnlt of pelvic organ, unsp, third tri|Maternal care for abnlt of pelvic organ, unsp, third tri +C2908275|T046|PT|O34.93|ICD10CM|Maternal care for abnormality of pelvic organ, unspecified, third trimester|Maternal care for abnormality of pelvic organ, unspecified, third trimester +C0495227|T046|AB|O35|ICD10CM|Maternal care for known or suspected fetal abnlt and damage|Maternal care for known or suspected fetal abnlt and damage +C0495227|T046|HT|O35|ICD10CM|Maternal care for known or suspected fetal abnormality and damage|Maternal care for known or suspected fetal abnormality and damage +C0495227|T046|HT|O35|ICD10|Maternal care for known or suspected fetal abnormality and damage|Maternal care for known or suspected fetal abnormality and damage +C0495228|T046|PT|O35.0|ICD10|Maternal care for (suspected) central nervous system malformation in fetus|Maternal care for (suspected) central nervous system malformation in fetus +C0495228|T046|HT|O35.0|ICD10CM|Maternal care for (suspected) central nervous system malformation in fetus|Maternal care for (suspected) central nervous system malformation in fetus +C0495228|T046|AB|O35.0|ICD10CM|Maternal care for (suspected) cnsl malformation in fetus|Maternal care for (suspected) cnsl malformation in fetus +C2908276|T046|ET|O35.0|ICD10CM|Maternal care for fetal anencephaly|Maternal care for fetal anencephaly +C2908277|T046|ET|O35.0|ICD10CM|Maternal care for fetal hydrocephalus|Maternal care for fetal hydrocephalus +C2908278|T047|ET|O35.0|ICD10CM|Maternal care for fetal spina bifida|Maternal care for fetal spina bifida +C2908279|T046|AB|O35.0XX0|ICD10CM|Maternal care for (suspected) cnsl malform in fetus, unsp|Maternal care for (suspected) cnsl malform in fetus, unsp +C2908280|T046|PT|O35.0XX1|ICD10CM|Maternal care for (suspected) central nervous system malformation in fetus, fetus 1|Maternal care for (suspected) central nervous system malformation in fetus, fetus 1 +C2908280|T046|AB|O35.0XX1|ICD10CM|Maternal care for (suspected) cnsl malform in fetus, fetus 1|Maternal care for (suspected) cnsl malform in fetus, fetus 1 +C2908281|T046|PT|O35.0XX2|ICD10CM|Maternal care for (suspected) central nervous system malformation in fetus, fetus 2|Maternal care for (suspected) central nervous system malformation in fetus, fetus 2 +C2908281|T046|AB|O35.0XX2|ICD10CM|Maternal care for (suspected) cnsl malform in fetus, fetus 2|Maternal care for (suspected) cnsl malform in fetus, fetus 2 +C2908282|T046|PT|O35.0XX3|ICD10CM|Maternal care for (suspected) central nervous system malformation in fetus, fetus 3|Maternal care for (suspected) central nervous system malformation in fetus, fetus 3 +C2908282|T046|AB|O35.0XX3|ICD10CM|Maternal care for (suspected) cnsl malform in fetus, fetus 3|Maternal care for (suspected) cnsl malform in fetus, fetus 3 +C2908283|T046|PT|O35.0XX4|ICD10CM|Maternal care for (suspected) central nervous system malformation in fetus, fetus 4|Maternal care for (suspected) central nervous system malformation in fetus, fetus 4 +C2908283|T046|AB|O35.0XX4|ICD10CM|Maternal care for (suspected) cnsl malform in fetus, fetus 4|Maternal care for (suspected) cnsl malform in fetus, fetus 4 +C2908284|T046|PT|O35.0XX5|ICD10CM|Maternal care for (suspected) central nervous system malformation in fetus, fetus 5|Maternal care for (suspected) central nervous system malformation in fetus, fetus 5 +C2908284|T046|AB|O35.0XX5|ICD10CM|Maternal care for (suspected) cnsl malform in fetus, fetus 5|Maternal care for (suspected) cnsl malform in fetus, fetus 5 +C2908285|T046|PT|O35.0XX9|ICD10CM|Maternal care for (suspected) central nervous system malformation in fetus, other fetus|Maternal care for (suspected) central nervous system malformation in fetus, other fetus +C2908285|T046|AB|O35.0XX9|ICD10CM|Maternal care for (suspected) cnsl malform in fetus, oth|Maternal care for (suspected) cnsl malform in fetus, oth +C2908286|T046|PT|O35.1XX0|ICD10CM|Maternal care for (suspected) chromosomal abnormality in fetus, not applicable or unspecified|Maternal care for (suspected) chromosomal abnormality in fetus, not applicable or unspecified +C2908286|T046|AB|O35.1XX0|ICD10CM|Maternal care for chromosomal abnormality in fetus, unsp|Maternal care for chromosomal abnormality in fetus, unsp +C2908287|T046|PT|O35.1XX1|ICD10CM|Maternal care for (suspected) chromosomal abnormality in fetus, fetus 1|Maternal care for (suspected) chromosomal abnormality in fetus, fetus 1 +C2908287|T046|AB|O35.1XX1|ICD10CM|Maternal care for chromosomal abnormality in fetus, fetus 1|Maternal care for chromosomal abnormality in fetus, fetus 1 +C2908288|T046|PT|O35.1XX2|ICD10CM|Maternal care for (suspected) chromosomal abnormality in fetus, fetus 2|Maternal care for (suspected) chromosomal abnormality in fetus, fetus 2 +C2908288|T046|AB|O35.1XX2|ICD10CM|Maternal care for chromosomal abnormality in fetus, fetus 2|Maternal care for chromosomal abnormality in fetus, fetus 2 +C2908289|T046|PT|O35.1XX3|ICD10CM|Maternal care for (suspected) chromosomal abnormality in fetus, fetus 3|Maternal care for (suspected) chromosomal abnormality in fetus, fetus 3 +C2908289|T046|AB|O35.1XX3|ICD10CM|Maternal care for chromosomal abnormality in fetus, fetus 3|Maternal care for chromosomal abnormality in fetus, fetus 3 +C2908290|T046|PT|O35.1XX4|ICD10CM|Maternal care for (suspected) chromosomal abnormality in fetus, fetus 4|Maternal care for (suspected) chromosomal abnormality in fetus, fetus 4 +C2908290|T046|AB|O35.1XX4|ICD10CM|Maternal care for chromosomal abnormality in fetus, fetus 4|Maternal care for chromosomal abnormality in fetus, fetus 4 +C2908291|T046|PT|O35.1XX5|ICD10CM|Maternal care for (suspected) chromosomal abnormality in fetus, fetus 5|Maternal care for (suspected) chromosomal abnormality in fetus, fetus 5 +C2908291|T046|AB|O35.1XX5|ICD10CM|Maternal care for chromosomal abnormality in fetus, fetus 5|Maternal care for chromosomal abnormality in fetus, fetus 5 +C2908292|T046|PT|O35.1XX9|ICD10CM|Maternal care for (suspected) chromosomal abnormality in fetus, other fetus|Maternal care for (suspected) chromosomal abnormality in fetus, other fetus +C2908292|T046|AB|O35.1XX9|ICD10CM|Maternal care for chromosomal abnormality in fetus, oth|Maternal care for chromosomal abnormality in fetus, oth +C0495230|T046|HT|O35.2|ICD10CM|Maternal care for (suspected) hereditary disease in fetus|Maternal care for (suspected) hereditary disease in fetus +C0495230|T046|AB|O35.2|ICD10CM|Maternal care for (suspected) hereditary disease in fetus|Maternal care for (suspected) hereditary disease in fetus +C0495230|T046|PT|O35.2|ICD10|Maternal care for (suspected) hereditary disease in fetus|Maternal care for (suspected) hereditary disease in fetus +C2908293|T046|PT|O35.2XX0|ICD10CM|Maternal care for (suspected) hereditary disease in fetus, not applicable or unspecified|Maternal care for (suspected) hereditary disease in fetus, not applicable or unspecified +C2908293|T046|AB|O35.2XX0|ICD10CM|Maternal care for hereditary disease in fetus, unsp|Maternal care for hereditary disease in fetus, unsp +C2908294|T046|PT|O35.2XX1|ICD10CM|Maternal care for (suspected) hereditary disease in fetus, fetus 1|Maternal care for (suspected) hereditary disease in fetus, fetus 1 +C2908294|T046|AB|O35.2XX1|ICD10CM|Maternal care for hereditary disease in fetus, fetus 1|Maternal care for hereditary disease in fetus, fetus 1 +C2908295|T046|PT|O35.2XX2|ICD10CM|Maternal care for (suspected) hereditary disease in fetus, fetus 2|Maternal care for (suspected) hereditary disease in fetus, fetus 2 +C2908295|T046|AB|O35.2XX2|ICD10CM|Maternal care for hereditary disease in fetus, fetus 2|Maternal care for hereditary disease in fetus, fetus 2 +C2908296|T046|PT|O35.2XX3|ICD10CM|Maternal care for (suspected) hereditary disease in fetus, fetus 3|Maternal care for (suspected) hereditary disease in fetus, fetus 3 +C2908296|T046|AB|O35.2XX3|ICD10CM|Maternal care for hereditary disease in fetus, fetus 3|Maternal care for hereditary disease in fetus, fetus 3 +C2908297|T046|PT|O35.2XX4|ICD10CM|Maternal care for (suspected) hereditary disease in fetus, fetus 4|Maternal care for (suspected) hereditary disease in fetus, fetus 4 +C2908297|T046|AB|O35.2XX4|ICD10CM|Maternal care for hereditary disease in fetus, fetus 4|Maternal care for hereditary disease in fetus, fetus 4 +C2908298|T046|PT|O35.2XX5|ICD10CM|Maternal care for (suspected) hereditary disease in fetus, fetus 5|Maternal care for (suspected) hereditary disease in fetus, fetus 5 +C2908298|T046|AB|O35.2XX5|ICD10CM|Maternal care for hereditary disease in fetus, fetus 5|Maternal care for hereditary disease in fetus, fetus 5 +C2908299|T046|PT|O35.2XX9|ICD10CM|Maternal care for (suspected) hereditary disease in fetus, other fetus|Maternal care for (suspected) hereditary disease in fetus, other fetus +C2908299|T046|AB|O35.2XX9|ICD10CM|Maternal care for hereditary disease in fetus, oth|Maternal care for hereditary disease in fetus, oth +C0495231|T046|AB|O35.3|ICD10CM|Matern care for damage to fetus from viral disease in mother|Matern care for damage to fetus from viral disease in mother +C0495231|T046|HT|O35.3|ICD10CM|Maternal care for (suspected) damage to fetus from viral disease in mother|Maternal care for (suspected) damage to fetus from viral disease in mother +C0495231|T046|PT|O35.3|ICD10|Maternal care for (suspected) damage to fetus from viral disease in mother|Maternal care for (suspected) damage to fetus from viral disease in mother +C2908300|T037|ET|O35.3|ICD10CM|Maternal care for damage to fetus from maternal cytomegalovirus infection|Maternal care for damage to fetus from maternal cytomegalovirus infection +C0730009|T046|ET|O35.3|ICD10CM|Maternal care for damage to fetus from maternal rubella|Maternal care for damage to fetus from maternal rubella +C2908301|T046|AB|O35.3XX0|ICD10CM|Matern care for damag to fts from viral dis in mother, unsp|Matern care for damag to fts from viral dis in mother, unsp +C2908302|T046|AB|O35.3XX1|ICD10CM|Matern care for damag to fts from viral dis in mother, fts1|Matern care for damag to fts from viral dis in mother, fts1 +C2908302|T046|PT|O35.3XX1|ICD10CM|Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 1|Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 1 +C2908303|T046|AB|O35.3XX2|ICD10CM|Matern care for damag to fts from viral dis in mother, fts2|Matern care for damag to fts from viral dis in mother, fts2 +C2908303|T046|PT|O35.3XX2|ICD10CM|Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 2|Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 2 +C2908304|T046|AB|O35.3XX3|ICD10CM|Matern care for damag to fts from viral dis in mother, fts3|Matern care for damag to fts from viral dis in mother, fts3 +C2908304|T046|PT|O35.3XX3|ICD10CM|Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 3|Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 3 +C2908305|T046|AB|O35.3XX4|ICD10CM|Matern care for damag to fts from viral dis in mother, fts4|Matern care for damag to fts from viral dis in mother, fts4 +C2908305|T046|PT|O35.3XX4|ICD10CM|Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 4|Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 4 +C2908306|T046|AB|O35.3XX5|ICD10CM|Matern care for damag to fts from viral dis in mother, fts5|Matern care for damag to fts from viral dis in mother, fts5 +C2908306|T046|PT|O35.3XX5|ICD10CM|Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 5|Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 5 +C2908307|T046|AB|O35.3XX9|ICD10CM|Matern care for damag to fetus from viral dis in mother, oth|Matern care for damag to fetus from viral dis in mother, oth +C2908307|T046|PT|O35.3XX9|ICD10CM|Maternal care for (suspected) damage to fetus from viral disease in mother, other fetus|Maternal care for (suspected) damage to fetus from viral disease in mother, other fetus +C0452166|T046|PT|O35.4|ICD10|Maternal care for (suspected) damage to fetus from alcohol|Maternal care for (suspected) damage to fetus from alcohol +C0452166|T046|HT|O35.4|ICD10CM|Maternal care for (suspected) damage to fetus from alcohol|Maternal care for (suspected) damage to fetus from alcohol +C0452166|T046|AB|O35.4|ICD10CM|Maternal care for (suspected) damage to fetus from alcohol|Maternal care for (suspected) damage to fetus from alcohol +C2908308|T046|PT|O35.4XX0|ICD10CM|Maternal care for (suspected) damage to fetus from alcohol, not applicable or unspecified|Maternal care for (suspected) damage to fetus from alcohol, not applicable or unspecified +C2908308|T046|AB|O35.4XX0|ICD10CM|Maternal care for damage to fetus from alcohol, unsp|Maternal care for damage to fetus from alcohol, unsp +C2908309|T046|PT|O35.4XX1|ICD10CM|Maternal care for (suspected) damage to fetus from alcohol, fetus 1|Maternal care for (suspected) damage to fetus from alcohol, fetus 1 +C2908309|T046|AB|O35.4XX1|ICD10CM|Maternal care for damage to fetus from alcohol, fetus 1|Maternal care for damage to fetus from alcohol, fetus 1 +C2908310|T046|PT|O35.4XX2|ICD10CM|Maternal care for (suspected) damage to fetus from alcohol, fetus 2|Maternal care for (suspected) damage to fetus from alcohol, fetus 2 +C2908310|T046|AB|O35.4XX2|ICD10CM|Maternal care for damage to fetus from alcohol, fetus 2|Maternal care for damage to fetus from alcohol, fetus 2 +C2908311|T046|PT|O35.4XX3|ICD10CM|Maternal care for (suspected) damage to fetus from alcohol, fetus 3|Maternal care for (suspected) damage to fetus from alcohol, fetus 3 +C2908311|T046|AB|O35.4XX3|ICD10CM|Maternal care for damage to fetus from alcohol, fetus 3|Maternal care for damage to fetus from alcohol, fetus 3 +C2908312|T046|PT|O35.4XX4|ICD10CM|Maternal care for (suspected) damage to fetus from alcohol, fetus 4|Maternal care for (suspected) damage to fetus from alcohol, fetus 4 +C2908312|T046|AB|O35.4XX4|ICD10CM|Maternal care for damage to fetus from alcohol, fetus 4|Maternal care for damage to fetus from alcohol, fetus 4 +C2908313|T046|PT|O35.4XX5|ICD10CM|Maternal care for (suspected) damage to fetus from alcohol, fetus 5|Maternal care for (suspected) damage to fetus from alcohol, fetus 5 +C2908313|T046|AB|O35.4XX5|ICD10CM|Maternal care for damage to fetus from alcohol, fetus 5|Maternal care for damage to fetus from alcohol, fetus 5 +C2908314|T046|PT|O35.4XX9|ICD10CM|Maternal care for (suspected) damage to fetus from alcohol, other fetus|Maternal care for (suspected) damage to fetus from alcohol, other fetus +C2908314|T046|AB|O35.4XX9|ICD10CM|Maternal care for damage to fetus from alcohol, oth|Maternal care for damage to fetus from alcohol, oth +C0495232|T046|HT|O35.5|ICD10CM|Maternal care for (suspected) damage to fetus by drugs|Maternal care for (suspected) damage to fetus by drugs +C0495232|T046|AB|O35.5|ICD10CM|Maternal care for (suspected) damage to fetus by drugs|Maternal care for (suspected) damage to fetus by drugs +C0495232|T046|PT|O35.5|ICD10|Maternal care for (suspected) damage to fetus by drugs|Maternal care for (suspected) damage to fetus by drugs +C2908315|T047|ET|O35.5|ICD10CM|Maternal care for damage to fetus from drug addiction|Maternal care for damage to fetus from drug addiction +C2908316|T046|PT|O35.5XX0|ICD10CM|Maternal care for (suspected) damage to fetus by drugs, not applicable or unspecified|Maternal care for (suspected) damage to fetus by drugs, not applicable or unspecified +C2908316|T046|AB|O35.5XX0|ICD10CM|Maternal care for (suspected) damage to fetus by drugs, unsp|Maternal care for (suspected) damage to fetus by drugs, unsp +C2908317|T046|PT|O35.5XX1|ICD10CM|Maternal care for (suspected) damage to fetus by drugs, fetus 1|Maternal care for (suspected) damage to fetus by drugs, fetus 1 +C2908317|T046|AB|O35.5XX1|ICD10CM|Maternal care for damage to fetus by drugs, fetus 1|Maternal care for damage to fetus by drugs, fetus 1 +C2908318|T046|PT|O35.5XX2|ICD10CM|Maternal care for (suspected) damage to fetus by drugs, fetus 2|Maternal care for (suspected) damage to fetus by drugs, fetus 2 +C2908318|T046|AB|O35.5XX2|ICD10CM|Maternal care for damage to fetus by drugs, fetus 2|Maternal care for damage to fetus by drugs, fetus 2 +C2908319|T046|PT|O35.5XX3|ICD10CM|Maternal care for (suspected) damage to fetus by drugs, fetus 3|Maternal care for (suspected) damage to fetus by drugs, fetus 3 +C2908319|T046|AB|O35.5XX3|ICD10CM|Maternal care for damage to fetus by drugs, fetus 3|Maternal care for damage to fetus by drugs, fetus 3 +C2908320|T046|PT|O35.5XX4|ICD10CM|Maternal care for (suspected) damage to fetus by drugs, fetus 4|Maternal care for (suspected) damage to fetus by drugs, fetus 4 +C2908320|T046|AB|O35.5XX4|ICD10CM|Maternal care for damage to fetus by drugs, fetus 4|Maternal care for damage to fetus by drugs, fetus 4 +C2908321|T046|PT|O35.5XX5|ICD10CM|Maternal care for (suspected) damage to fetus by drugs, fetus 5|Maternal care for (suspected) damage to fetus by drugs, fetus 5 +C2908321|T046|AB|O35.5XX5|ICD10CM|Maternal care for damage to fetus by drugs, fetus 5|Maternal care for damage to fetus by drugs, fetus 5 +C2908322|T046|AB|O35.5XX9|ICD10CM|Maternal care for (suspected) damage to fetus by drugs, oth|Maternal care for (suspected) damage to fetus by drugs, oth +C2908322|T046|PT|O35.5XX9|ICD10CM|Maternal care for (suspected) damage to fetus by drugs, other fetus|Maternal care for (suspected) damage to fetus by drugs, other fetus +C0495233|T046|PT|O35.6|ICD10|Maternal care for (suspected) damage to fetus by radiation|Maternal care for (suspected) damage to fetus by radiation +C0495233|T046|HT|O35.6|ICD10CM|Maternal care for (suspected) damage to fetus by radiation|Maternal care for (suspected) damage to fetus by radiation +C0495233|T046|AB|O35.6|ICD10CM|Maternal care for (suspected) damage to fetus by radiation|Maternal care for (suspected) damage to fetus by radiation +C2908323|T046|PT|O35.6XX0|ICD10CM|Maternal care for (suspected) damage to fetus by radiation, not applicable or unspecified|Maternal care for (suspected) damage to fetus by radiation, not applicable or unspecified +C2908323|T046|AB|O35.6XX0|ICD10CM|Maternal care for damage to fetus by radiation, unsp|Maternal care for damage to fetus by radiation, unsp +C2908324|T046|PT|O35.6XX1|ICD10CM|Maternal care for (suspected) damage to fetus by radiation, fetus 1|Maternal care for (suspected) damage to fetus by radiation, fetus 1 +C2908324|T046|AB|O35.6XX1|ICD10CM|Maternal care for damage to fetus by radiation, fetus 1|Maternal care for damage to fetus by radiation, fetus 1 +C2908325|T046|PT|O35.6XX2|ICD10CM|Maternal care for (suspected) damage to fetus by radiation, fetus 2|Maternal care for (suspected) damage to fetus by radiation, fetus 2 +C2908325|T046|AB|O35.6XX2|ICD10CM|Maternal care for damage to fetus by radiation, fetus 2|Maternal care for damage to fetus by radiation, fetus 2 +C2908326|T046|PT|O35.6XX3|ICD10CM|Maternal care for (suspected) damage to fetus by radiation, fetus 3|Maternal care for (suspected) damage to fetus by radiation, fetus 3 +C2908326|T046|AB|O35.6XX3|ICD10CM|Maternal care for damage to fetus by radiation, fetus 3|Maternal care for damage to fetus by radiation, fetus 3 +C2908327|T046|PT|O35.6XX4|ICD10CM|Maternal care for (suspected) damage to fetus by radiation, fetus 4|Maternal care for (suspected) damage to fetus by radiation, fetus 4 +C2908327|T046|AB|O35.6XX4|ICD10CM|Maternal care for damage to fetus by radiation, fetus 4|Maternal care for damage to fetus by radiation, fetus 4 +C2908328|T046|PT|O35.6XX5|ICD10CM|Maternal care for (suspected) damage to fetus by radiation, fetus 5|Maternal care for (suspected) damage to fetus by radiation, fetus 5 +C2908328|T046|AB|O35.6XX5|ICD10CM|Maternal care for damage to fetus by radiation, fetus 5|Maternal care for damage to fetus by radiation, fetus 5 +C2908329|T046|PT|O35.6XX9|ICD10CM|Maternal care for (suspected) damage to fetus by radiation, other fetus|Maternal care for (suspected) damage to fetus by radiation, other fetus +C2908329|T046|AB|O35.6XX9|ICD10CM|Maternal care for damage to fetus by radiation, oth|Maternal care for damage to fetus by radiation, oth +C0477829|T046|HT|O35.7|ICD10CM|Maternal care for (suspected) damage to fetus by other medical procedures|Maternal care for (suspected) damage to fetus by other medical procedures +C0477829|T046|PT|O35.7|ICD10|Maternal care for (suspected) damage to fetus by other medical procedures|Maternal care for (suspected) damage to fetus by other medical procedures +C2908330|T037|ET|O35.7|ICD10CM|Maternal care for damage to fetus by amniocentesis|Maternal care for damage to fetus by amniocentesis +C2908331|T037|ET|O35.7|ICD10CM|Maternal care for damage to fetus by biopsy procedures|Maternal care for damage to fetus by biopsy procedures +C2908332|T046|ET|O35.7|ICD10CM|Maternal care for damage to fetus by hematological investigation|Maternal care for damage to fetus by hematological investigation +C2908333|T037|ET|O35.7|ICD10CM|Maternal care for damage to fetus by intrauterine contraceptive device|Maternal care for damage to fetus by intrauterine contraceptive device +C2908334|T037|ET|O35.7|ICD10CM|Maternal care for damage to fetus by intrauterine surgery|Maternal care for damage to fetus by intrauterine surgery +C0477829|T046|AB|O35.7|ICD10CM|Maternal care for damage to fetus by oth medical procedures|Maternal care for damage to fetus by oth medical procedures +C2908335|T046|AB|O35.7XX0|ICD10CM|Maternal care for damage to fetus by oth medical proc, unsp|Maternal care for damage to fetus by oth medical proc, unsp +C2908336|T046|AB|O35.7XX1|ICD10CM|Matern care for damage to fetus by oth medical proc, fetus 1|Matern care for damage to fetus by oth medical proc, fetus 1 +C2908336|T046|PT|O35.7XX1|ICD10CM|Maternal care for (suspected) damage to fetus by other medical procedures, fetus 1|Maternal care for (suspected) damage to fetus by other medical procedures, fetus 1 +C2908337|T046|AB|O35.7XX2|ICD10CM|Matern care for damage to fetus by oth medical proc, fetus 2|Matern care for damage to fetus by oth medical proc, fetus 2 +C2908337|T046|PT|O35.7XX2|ICD10CM|Maternal care for (suspected) damage to fetus by other medical procedures, fetus 2|Maternal care for (suspected) damage to fetus by other medical procedures, fetus 2 +C2908338|T046|AB|O35.7XX3|ICD10CM|Matern care for damage to fetus by oth medical proc, fetus 3|Matern care for damage to fetus by oth medical proc, fetus 3 +C2908338|T046|PT|O35.7XX3|ICD10CM|Maternal care for (suspected) damage to fetus by other medical procedures, fetus 3|Maternal care for (suspected) damage to fetus by other medical procedures, fetus 3 +C2908339|T046|AB|O35.7XX4|ICD10CM|Matern care for damage to fetus by oth medical proc, fetus 4|Matern care for damage to fetus by oth medical proc, fetus 4 +C2908339|T046|PT|O35.7XX4|ICD10CM|Maternal care for (suspected) damage to fetus by other medical procedures, fetus 4|Maternal care for (suspected) damage to fetus by other medical procedures, fetus 4 +C2908340|T046|AB|O35.7XX5|ICD10CM|Matern care for damage to fetus by oth medical proc, fetus 5|Matern care for damage to fetus by oth medical proc, fetus 5 +C2908340|T046|PT|O35.7XX5|ICD10CM|Maternal care for (suspected) damage to fetus by other medical procedures, fetus 5|Maternal care for (suspected) damage to fetus by other medical procedures, fetus 5 +C2908341|T046|PT|O35.7XX9|ICD10CM|Maternal care for (suspected) damage to fetus by other medical procedures, other fetus|Maternal care for (suspected) damage to fetus by other medical procedures, other fetus +C2908341|T046|AB|O35.7XX9|ICD10CM|Maternal care for damage to fetus by oth medical proc, oth|Maternal care for damage to fetus by oth medical proc, oth +C2908342|T047|ET|O35.8|ICD10CM|Maternal care for damage to fetus from maternal listeriosis|Maternal care for damage to fetus from maternal listeriosis +C2908343|T047|ET|O35.8|ICD10CM|Maternal care for damage to fetus from maternal toxoplasmosis|Maternal care for damage to fetus from maternal toxoplasmosis +C0477830|T046|AB|O35.8|ICD10CM|Maternal care for oth fetal abnormality and damage|Maternal care for oth fetal abnormality and damage +C0477830|T046|HT|O35.8|ICD10CM|Maternal care for other (suspected) fetal abnormality and damage|Maternal care for other (suspected) fetal abnormality and damage +C0477830|T046|PT|O35.8|ICD10|Maternal care for other (suspected) fetal abnormality and damage|Maternal care for other (suspected) fetal abnormality and damage +C2908344|T046|AB|O35.8XX0|ICD10CM|Maternal care for oth fetal abnormality and damage, unsp|Maternal care for oth fetal abnormality and damage, unsp +C2908344|T046|PT|O35.8XX0|ICD10CM|Maternal care for other (suspected) fetal abnormality and damage, not applicable or unspecified|Maternal care for other (suspected) fetal abnormality and damage, not applicable or unspecified +C2908345|T046|AB|O35.8XX1|ICD10CM|Maternal care for oth fetal abnormality and damage, fetus 1|Maternal care for oth fetal abnormality and damage, fetus 1 +C2908345|T046|PT|O35.8XX1|ICD10CM|Maternal care for other (suspected) fetal abnormality and damage, fetus 1|Maternal care for other (suspected) fetal abnormality and damage, fetus 1 +C2908346|T046|AB|O35.8XX2|ICD10CM|Maternal care for oth fetal abnormality and damage, fetus 2|Maternal care for oth fetal abnormality and damage, fetus 2 +C2908346|T046|PT|O35.8XX2|ICD10CM|Maternal care for other (suspected) fetal abnormality and damage, fetus 2|Maternal care for other (suspected) fetal abnormality and damage, fetus 2 +C2908347|T046|AB|O35.8XX3|ICD10CM|Maternal care for oth fetal abnormality and damage, fetus 3|Maternal care for oth fetal abnormality and damage, fetus 3 +C2908347|T046|PT|O35.8XX3|ICD10CM|Maternal care for other (suspected) fetal abnormality and damage, fetus 3|Maternal care for other (suspected) fetal abnormality and damage, fetus 3 +C2908348|T046|AB|O35.8XX4|ICD10CM|Maternal care for oth fetal abnormality and damage, fetus 4|Maternal care for oth fetal abnormality and damage, fetus 4 +C2908348|T046|PT|O35.8XX4|ICD10CM|Maternal care for other (suspected) fetal abnormality and damage, fetus 4|Maternal care for other (suspected) fetal abnormality and damage, fetus 4 +C2908349|T046|AB|O35.8XX5|ICD10CM|Maternal care for oth fetal abnormality and damage, fetus 5|Maternal care for oth fetal abnormality and damage, fetus 5 +C2908349|T046|PT|O35.8XX5|ICD10CM|Maternal care for other (suspected) fetal abnormality and damage, fetus 5|Maternal care for other (suspected) fetal abnormality and damage, fetus 5 +C2908350|T046|AB|O35.8XX9|ICD10CM|Maternal care for oth fetal abnormality and damage, oth|Maternal care for oth fetal abnormality and damage, oth +C2908350|T046|PT|O35.8XX9|ICD10CM|Maternal care for other (suspected) fetal abnormality and damage, other fetus|Maternal care for other (suspected) fetal abnormality and damage, other fetus +C0495234|T046|PT|O35.9|ICD10|Maternal care for (suspected) fetal abnormality and damage, unspecified|Maternal care for (suspected) fetal abnormality and damage, unspecified +C0495234|T046|HT|O35.9|ICD10CM|Maternal care for (suspected) fetal abnormality and damage, unspecified|Maternal care for (suspected) fetal abnormality and damage, unspecified +C0495234|T046|AB|O35.9|ICD10CM|Maternal care for fetal abnormality and damage, unsp|Maternal care for fetal abnormality and damage, unsp +C2908351|T046|AB|O35.9XX0|ICD10CM|Maternal care for fetal abnormality and damage, unsp, unsp|Maternal care for fetal abnormality and damage, unsp, unsp +C2908352|T046|PT|O35.9XX1|ICD10CM|Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 1|Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 1 +C2908352|T046|AB|O35.9XX1|ICD10CM|Maternal care for fetal abnlt and damage, unsp, fetus 1|Maternal care for fetal abnlt and damage, unsp, fetus 1 +C2908353|T046|PT|O35.9XX2|ICD10CM|Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 2|Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 2 +C2908353|T046|AB|O35.9XX2|ICD10CM|Maternal care for fetal abnlt and damage, unsp, fetus 2|Maternal care for fetal abnlt and damage, unsp, fetus 2 +C2908354|T046|PT|O35.9XX3|ICD10CM|Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 3|Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 3 +C2908354|T046|AB|O35.9XX3|ICD10CM|Maternal care for fetal abnlt and damage, unsp, fetus 3|Maternal care for fetal abnlt and damage, unsp, fetus 3 +C2908355|T046|PT|O35.9XX4|ICD10CM|Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 4|Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 4 +C2908355|T046|AB|O35.9XX4|ICD10CM|Maternal care for fetal abnlt and damage, unsp, fetus 4|Maternal care for fetal abnlt and damage, unsp, fetus 4 +C2908356|T046|PT|O35.9XX5|ICD10CM|Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 5|Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 5 +C2908356|T046|AB|O35.9XX5|ICD10CM|Maternal care for fetal abnlt and damage, unsp, fetus 5|Maternal care for fetal abnlt and damage, unsp, fetus 5 +C2908357|T046|PT|O35.9XX9|ICD10CM|Maternal care for (suspected) fetal abnormality and damage, unspecified, other fetus|Maternal care for (suspected) fetal abnormality and damage, unspecified, other fetus +C2908357|T046|AB|O35.9XX9|ICD10CM|Maternal care for fetal abnormality and damage, unsp, oth|Maternal care for fetal abnormality and damage, unsp, oth +C2908359|T046|AB|O36|ICD10CM|Maternal care for other fetal problems|Maternal care for other fetal problems +C2908359|T046|HT|O36|ICD10CM|Maternal care for other fetal problems|Maternal care for other fetal problems +C2908360|T047|ET|O36.0|ICD10CM|Maternal care for Rh incompatibility (with hydrops fetalis)|Maternal care for Rh incompatibility (with hydrops fetalis) +C0495235|T046|HT|O36.0|ICD10CM|Maternal care for rhesus isoimmunization|Maternal care for rhesus isoimmunization +C0495235|T046|AB|O36.0|ICD10CM|Maternal care for rhesus isoimmunization|Maternal care for rhesus isoimmunization +C0495235|T046|PT|O36.0|ICD10|Maternal care for rhesus isoimmunization|Maternal care for rhesus isoimmunization +C2908387|T046|AB|O36.01|ICD10CM|Maternal care for anti-D [Rh] antibodies|Maternal care for anti-D [Rh] antibodies +C2908387|T046|HT|O36.01|ICD10CM|Maternal care for anti-D [Rh] antibodies|Maternal care for anti-D [Rh] antibodies +C2908362|T046|AB|O36.011|ICD10CM|Maternal care for anti-D [Rh] antibodies, first trimester|Maternal care for anti-D [Rh] antibodies, first trimester +C2908362|T046|HT|O36.011|ICD10CM|Maternal care for anti-D [Rh] antibodies, first trimester|Maternal care for anti-D [Rh] antibodies, first trimester +C2908363|T046|PT|O36.0110|ICD10CM|Maternal care for anti-D [Rh] antibodies, first trimester, not applicable or unspecified|Maternal care for anti-D [Rh] antibodies, first trimester, not applicable or unspecified +C2908363|T046|AB|O36.0110|ICD10CM|Maternal care for anti-D antibodies, first trimester, unsp|Maternal care for anti-D antibodies, first trimester, unsp +C2908364|T046|PT|O36.0111|ICD10CM|Maternal care for anti-D [Rh] antibodies, first trimester, fetus 1|Maternal care for anti-D [Rh] antibodies, first trimester, fetus 1 +C2908364|T046|AB|O36.0111|ICD10CM|Maternal care for anti-D antibodies, first tri, fetus 1|Maternal care for anti-D antibodies, first tri, fetus 1 +C2908365|T046|PT|O36.0112|ICD10CM|Maternal care for anti-D [Rh] antibodies, first trimester, fetus 2|Maternal care for anti-D [Rh] antibodies, first trimester, fetus 2 +C2908365|T046|AB|O36.0112|ICD10CM|Maternal care for anti-D antibodies, first tri, fetus 2|Maternal care for anti-D antibodies, first tri, fetus 2 +C2908366|T046|PT|O36.0113|ICD10CM|Maternal care for anti-D [Rh] antibodies, first trimester, fetus 3|Maternal care for anti-D [Rh] antibodies, first trimester, fetus 3 +C2908366|T046|AB|O36.0113|ICD10CM|Maternal care for anti-D antibodies, first tri, fetus 3|Maternal care for anti-D antibodies, first tri, fetus 3 +C2908367|T046|PT|O36.0114|ICD10CM|Maternal care for anti-D [Rh] antibodies, first trimester, fetus 4|Maternal care for anti-D [Rh] antibodies, first trimester, fetus 4 +C2908367|T046|AB|O36.0114|ICD10CM|Maternal care for anti-D antibodies, first tri, fetus 4|Maternal care for anti-D antibodies, first tri, fetus 4 +C2908368|T046|PT|O36.0115|ICD10CM|Maternal care for anti-D [Rh] antibodies, first trimester, fetus 5|Maternal care for anti-D [Rh] antibodies, first trimester, fetus 5 +C2908368|T046|AB|O36.0115|ICD10CM|Maternal care for anti-D antibodies, first tri, fetus 5|Maternal care for anti-D antibodies, first tri, fetus 5 +C2908369|T046|PT|O36.0119|ICD10CM|Maternal care for anti-D [Rh] antibodies, first trimester, other fetus|Maternal care for anti-D [Rh] antibodies, first trimester, other fetus +C2908369|T046|AB|O36.0119|ICD10CM|Maternal care for anti-D antibodies, first trimester, oth|Maternal care for anti-D antibodies, first trimester, oth +C2908370|T046|AB|O36.012|ICD10CM|Maternal care for anti-D [Rh] antibodies, second trimester|Maternal care for anti-D [Rh] antibodies, second trimester +C2908370|T046|HT|O36.012|ICD10CM|Maternal care for anti-D [Rh] antibodies, second trimester|Maternal care for anti-D [Rh] antibodies, second trimester +C2908371|T046|PT|O36.0120|ICD10CM|Maternal care for anti-D [Rh] antibodies, second trimester, not applicable or unspecified|Maternal care for anti-D [Rh] antibodies, second trimester, not applicable or unspecified +C2908371|T046|AB|O36.0120|ICD10CM|Maternal care for anti-D antibodies, second trimester, unsp|Maternal care for anti-D antibodies, second trimester, unsp +C2908372|T046|PT|O36.0121|ICD10CM|Maternal care for anti-D [Rh] antibodies, second trimester, fetus 1|Maternal care for anti-D [Rh] antibodies, second trimester, fetus 1 +C2908372|T046|AB|O36.0121|ICD10CM|Maternal care for anti-D antibodies, second tri, fetus 1|Maternal care for anti-D antibodies, second tri, fetus 1 +C2908373|T046|PT|O36.0122|ICD10CM|Maternal care for anti-D [Rh] antibodies, second trimester, fetus 2|Maternal care for anti-D [Rh] antibodies, second trimester, fetus 2 +C2908373|T046|AB|O36.0122|ICD10CM|Maternal care for anti-D antibodies, second tri, fetus 2|Maternal care for anti-D antibodies, second tri, fetus 2 +C2908374|T046|PT|O36.0123|ICD10CM|Maternal care for anti-D [Rh] antibodies, second trimester, fetus 3|Maternal care for anti-D [Rh] antibodies, second trimester, fetus 3 +C2908374|T046|AB|O36.0123|ICD10CM|Maternal care for anti-D antibodies, second tri, fetus 3|Maternal care for anti-D antibodies, second tri, fetus 3 +C2908375|T046|PT|O36.0124|ICD10CM|Maternal care for anti-D [Rh] antibodies, second trimester, fetus 4|Maternal care for anti-D [Rh] antibodies, second trimester, fetus 4 +C2908375|T046|AB|O36.0124|ICD10CM|Maternal care for anti-D antibodies, second tri, fetus 4|Maternal care for anti-D antibodies, second tri, fetus 4 +C2908376|T046|PT|O36.0125|ICD10CM|Maternal care for anti-D [Rh] antibodies, second trimester, fetus 5|Maternal care for anti-D [Rh] antibodies, second trimester, fetus 5 +C2908376|T046|AB|O36.0125|ICD10CM|Maternal care for anti-D antibodies, second tri, fetus 5|Maternal care for anti-D antibodies, second tri, fetus 5 +C2908377|T046|PT|O36.0129|ICD10CM|Maternal care for anti-D [Rh] antibodies, second trimester, other fetus|Maternal care for anti-D [Rh] antibodies, second trimester, other fetus +C2908377|T046|AB|O36.0129|ICD10CM|Maternal care for anti-D antibodies, second trimester, oth|Maternal care for anti-D antibodies, second trimester, oth +C2908378|T046|AB|O36.013|ICD10CM|Maternal care for anti-D [Rh] antibodies, third trimester|Maternal care for anti-D [Rh] antibodies, third trimester +C2908378|T046|HT|O36.013|ICD10CM|Maternal care for anti-D [Rh] antibodies, third trimester|Maternal care for anti-D [Rh] antibodies, third trimester +C2908379|T046|PT|O36.0130|ICD10CM|Maternal care for anti-D [Rh] antibodies, third trimester, not applicable or unspecified|Maternal care for anti-D [Rh] antibodies, third trimester, not applicable or unspecified +C2908379|T046|AB|O36.0130|ICD10CM|Maternal care for anti-D antibodies, third trimester, unsp|Maternal care for anti-D antibodies, third trimester, unsp +C2908380|T046|PT|O36.0131|ICD10CM|Maternal care for anti-D [Rh] antibodies, third trimester, fetus 1|Maternal care for anti-D [Rh] antibodies, third trimester, fetus 1 +C2908380|T046|AB|O36.0131|ICD10CM|Maternal care for anti-D antibodies, third tri, fetus 1|Maternal care for anti-D antibodies, third tri, fetus 1 +C2908381|T046|PT|O36.0132|ICD10CM|Maternal care for anti-D [Rh] antibodies, third trimester, fetus 2|Maternal care for anti-D [Rh] antibodies, third trimester, fetus 2 +C2908381|T046|AB|O36.0132|ICD10CM|Maternal care for anti-D antibodies, third tri, fetus 2|Maternal care for anti-D antibodies, third tri, fetus 2 +C2908382|T046|PT|O36.0133|ICD10CM|Maternal care for anti-D [Rh] antibodies, third trimester, fetus 3|Maternal care for anti-D [Rh] antibodies, third trimester, fetus 3 +C2908382|T046|AB|O36.0133|ICD10CM|Maternal care for anti-D antibodies, third tri, fetus 3|Maternal care for anti-D antibodies, third tri, fetus 3 +C2908383|T046|PT|O36.0134|ICD10CM|Maternal care for anti-D [Rh] antibodies, third trimester, fetus 4|Maternal care for anti-D [Rh] antibodies, third trimester, fetus 4 +C2908383|T046|AB|O36.0134|ICD10CM|Maternal care for anti-D antibodies, third tri, fetus 4|Maternal care for anti-D antibodies, third tri, fetus 4 +C2908384|T046|PT|O36.0135|ICD10CM|Maternal care for anti-D [Rh] antibodies, third trimester, fetus 5|Maternal care for anti-D [Rh] antibodies, third trimester, fetus 5 +C2908384|T046|AB|O36.0135|ICD10CM|Maternal care for anti-D antibodies, third tri, fetus 5|Maternal care for anti-D antibodies, third tri, fetus 5 +C2908385|T046|PT|O36.0139|ICD10CM|Maternal care for anti-D [Rh] antibodies, third trimester, other fetus|Maternal care for anti-D [Rh] antibodies, third trimester, other fetus +C2908385|T046|AB|O36.0139|ICD10CM|Maternal care for anti-D antibodies, third trimester, oth|Maternal care for anti-D antibodies, third trimester, oth +C2908386|T046|HT|O36.019|ICD10CM|Maternal care for anti-D [Rh] antibodies, unspecified trimester|Maternal care for anti-D [Rh] antibodies, unspecified trimester +C2908386|T046|AB|O36.019|ICD10CM|Maternal care for anti-D antibodies, unspecified trimester|Maternal care for anti-D antibodies, unspecified trimester +C2908387|T046|PT|O36.0190|ICD10CM|Maternal care for anti-D [Rh] antibodies, unspecified trimester, not applicable or unspecified|Maternal care for anti-D [Rh] antibodies, unspecified trimester, not applicable or unspecified +C2908387|T046|AB|O36.0190|ICD10CM|Maternal care for anti-D antibodies, unsp trimester, unsp|Maternal care for anti-D antibodies, unsp trimester, unsp +C2908388|T046|PT|O36.0191|ICD10CM|Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 1|Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 1 +C2908388|T046|AB|O36.0191|ICD10CM|Maternal care for anti-D antibodies, unsp trimester, fetus 1|Maternal care for anti-D antibodies, unsp trimester, fetus 1 +C2908389|T046|PT|O36.0192|ICD10CM|Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 2|Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 2 +C2908389|T046|AB|O36.0192|ICD10CM|Maternal care for anti-D antibodies, unsp trimester, fetus 2|Maternal care for anti-D antibodies, unsp trimester, fetus 2 +C2908390|T046|PT|O36.0193|ICD10CM|Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 3|Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 3 +C2908390|T046|AB|O36.0193|ICD10CM|Maternal care for anti-D antibodies, unsp trimester, fetus 3|Maternal care for anti-D antibodies, unsp trimester, fetus 3 +C2908391|T046|PT|O36.0194|ICD10CM|Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 4|Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 4 +C2908391|T046|AB|O36.0194|ICD10CM|Maternal care for anti-D antibodies, unsp trimester, fetus 4|Maternal care for anti-D antibodies, unsp trimester, fetus 4 +C2908392|T046|PT|O36.0195|ICD10CM|Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 5|Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 5 +C2908392|T046|AB|O36.0195|ICD10CM|Maternal care for anti-D antibodies, unsp trimester, fetus 5|Maternal care for anti-D antibodies, unsp trimester, fetus 5 +C2908393|T046|PT|O36.0199|ICD10CM|Maternal care for anti-D [Rh] antibodies, unspecified trimester, other fetus|Maternal care for anti-D [Rh] antibodies, unspecified trimester, other fetus +C2908393|T046|AB|O36.0199|ICD10CM|Maternal care for anti-D antibodies, unsp trimester, oth|Maternal care for anti-D antibodies, unsp trimester, oth +C2908420|T046|AB|O36.09|ICD10CM|Maternal care for other rhesus isoimmunization|Maternal care for other rhesus isoimmunization +C2908420|T046|HT|O36.09|ICD10CM|Maternal care for other rhesus isoimmunization|Maternal care for other rhesus isoimmunization +C2908395|T046|AB|O36.091|ICD10CM|Maternal care for oth rhesus isoimmun, first trimester|Maternal care for oth rhesus isoimmun, first trimester +C2908395|T046|HT|O36.091|ICD10CM|Maternal care for other rhesus isoimmunization, first trimester|Maternal care for other rhesus isoimmunization, first trimester +C2908396|T046|AB|O36.0910|ICD10CM|Maternal care for oth rhesus isoimmun, first trimester, unsp|Maternal care for oth rhesus isoimmun, first trimester, unsp +C2908396|T046|PT|O36.0910|ICD10CM|Maternal care for other rhesus isoimmunization, first trimester, not applicable or unspecified|Maternal care for other rhesus isoimmunization, first trimester, not applicable or unspecified +C2908397|T046|AB|O36.0911|ICD10CM|Maternal care for oth rhesus isoimmun, first tri, fetus 1|Maternal care for oth rhesus isoimmun, first tri, fetus 1 +C2908397|T046|PT|O36.0911|ICD10CM|Maternal care for other rhesus isoimmunization, first trimester, fetus 1|Maternal care for other rhesus isoimmunization, first trimester, fetus 1 +C2908398|T046|AB|O36.0912|ICD10CM|Maternal care for oth rhesus isoimmun, first tri, fetus 2|Maternal care for oth rhesus isoimmun, first tri, fetus 2 +C2908398|T046|PT|O36.0912|ICD10CM|Maternal care for other rhesus isoimmunization, first trimester, fetus 2|Maternal care for other rhesus isoimmunization, first trimester, fetus 2 +C2908399|T046|AB|O36.0913|ICD10CM|Maternal care for oth rhesus isoimmun, first tri, fetus 3|Maternal care for oth rhesus isoimmun, first tri, fetus 3 +C2908399|T046|PT|O36.0913|ICD10CM|Maternal care for other rhesus isoimmunization, first trimester, fetus 3|Maternal care for other rhesus isoimmunization, first trimester, fetus 3 +C2908400|T046|AB|O36.0914|ICD10CM|Maternal care for oth rhesus isoimmun, first tri, fetus 4|Maternal care for oth rhesus isoimmun, first tri, fetus 4 +C2908400|T046|PT|O36.0914|ICD10CM|Maternal care for other rhesus isoimmunization, first trimester, fetus 4|Maternal care for other rhesus isoimmunization, first trimester, fetus 4 +C2908401|T046|AB|O36.0915|ICD10CM|Maternal care for oth rhesus isoimmun, first tri, fetus 5|Maternal care for oth rhesus isoimmun, first tri, fetus 5 +C2908401|T046|PT|O36.0915|ICD10CM|Maternal care for other rhesus isoimmunization, first trimester, fetus 5|Maternal care for other rhesus isoimmunization, first trimester, fetus 5 +C2908402|T046|AB|O36.0919|ICD10CM|Maternal care for oth rhesus isoimmun, first trimester, oth|Maternal care for oth rhesus isoimmun, first trimester, oth +C2908402|T046|PT|O36.0919|ICD10CM|Maternal care for other rhesus isoimmunization, first trimester, other fetus|Maternal care for other rhesus isoimmunization, first trimester, other fetus +C2908403|T046|AB|O36.092|ICD10CM|Maternal care for oth rhesus isoimmun, second trimester|Maternal care for oth rhesus isoimmun, second trimester +C2908403|T046|HT|O36.092|ICD10CM|Maternal care for other rhesus isoimmunization, second trimester|Maternal care for other rhesus isoimmunization, second trimester +C2908404|T046|AB|O36.0920|ICD10CM|Maternal care for oth rhesus isoimmun, second tri, unsp|Maternal care for oth rhesus isoimmun, second tri, unsp +C2908404|T046|PT|O36.0920|ICD10CM|Maternal care for other rhesus isoimmunization, second trimester, not applicable or unspecified|Maternal care for other rhesus isoimmunization, second trimester, not applicable or unspecified +C2908405|T046|AB|O36.0921|ICD10CM|Maternal care for oth rhesus isoimmun, second tri, fetus 1|Maternal care for oth rhesus isoimmun, second tri, fetus 1 +C2908405|T046|PT|O36.0921|ICD10CM|Maternal care for other rhesus isoimmunization, second trimester, fetus 1|Maternal care for other rhesus isoimmunization, second trimester, fetus 1 +C2908406|T046|AB|O36.0922|ICD10CM|Maternal care for oth rhesus isoimmun, second tri, fetus 2|Maternal care for oth rhesus isoimmun, second tri, fetus 2 +C2908406|T046|PT|O36.0922|ICD10CM|Maternal care for other rhesus isoimmunization, second trimester, fetus 2|Maternal care for other rhesus isoimmunization, second trimester, fetus 2 +C2908407|T046|AB|O36.0923|ICD10CM|Maternal care for oth rhesus isoimmun, second tri, fetus 3|Maternal care for oth rhesus isoimmun, second tri, fetus 3 +C2908407|T046|PT|O36.0923|ICD10CM|Maternal care for other rhesus isoimmunization, second trimester, fetus 3|Maternal care for other rhesus isoimmunization, second trimester, fetus 3 +C2908408|T046|AB|O36.0924|ICD10CM|Maternal care for oth rhesus isoimmun, second tri, fetus 4|Maternal care for oth rhesus isoimmun, second tri, fetus 4 +C2908408|T046|PT|O36.0924|ICD10CM|Maternal care for other rhesus isoimmunization, second trimester, fetus 4|Maternal care for other rhesus isoimmunization, second trimester, fetus 4 +C2908409|T046|AB|O36.0925|ICD10CM|Maternal care for oth rhesus isoimmun, second tri, fetus 5|Maternal care for oth rhesus isoimmun, second tri, fetus 5 +C2908409|T046|PT|O36.0925|ICD10CM|Maternal care for other rhesus isoimmunization, second trimester, fetus 5|Maternal care for other rhesus isoimmunization, second trimester, fetus 5 +C2908410|T046|AB|O36.0929|ICD10CM|Maternal care for oth rhesus isoimmun, second trimester, oth|Maternal care for oth rhesus isoimmun, second trimester, oth +C2908410|T046|PT|O36.0929|ICD10CM|Maternal care for other rhesus isoimmunization, second trimester, other fetus|Maternal care for other rhesus isoimmunization, second trimester, other fetus +C2908411|T046|AB|O36.093|ICD10CM|Maternal care for oth rhesus isoimmun, third trimester|Maternal care for oth rhesus isoimmun, third trimester +C2908411|T046|HT|O36.093|ICD10CM|Maternal care for other rhesus isoimmunization, third trimester|Maternal care for other rhesus isoimmunization, third trimester +C2908412|T046|AB|O36.0930|ICD10CM|Maternal care for oth rhesus isoimmun, third trimester, unsp|Maternal care for oth rhesus isoimmun, third trimester, unsp +C2908412|T046|PT|O36.0930|ICD10CM|Maternal care for other rhesus isoimmunization, third trimester, not applicable or unspecified|Maternal care for other rhesus isoimmunization, third trimester, not applicable or unspecified +C2908413|T046|AB|O36.0931|ICD10CM|Maternal care for oth rhesus isoimmun, third tri, fetus 1|Maternal care for oth rhesus isoimmun, third tri, fetus 1 +C2908413|T046|PT|O36.0931|ICD10CM|Maternal care for other rhesus isoimmunization, third trimester, fetus 1|Maternal care for other rhesus isoimmunization, third trimester, fetus 1 +C2908414|T046|AB|O36.0932|ICD10CM|Maternal care for oth rhesus isoimmun, third tri, fetus 2|Maternal care for oth rhesus isoimmun, third tri, fetus 2 +C2908414|T046|PT|O36.0932|ICD10CM|Maternal care for other rhesus isoimmunization, third trimester, fetus 2|Maternal care for other rhesus isoimmunization, third trimester, fetus 2 +C2908415|T046|AB|O36.0933|ICD10CM|Maternal care for oth rhesus isoimmun, third tri, fetus 3|Maternal care for oth rhesus isoimmun, third tri, fetus 3 +C2908415|T046|PT|O36.0933|ICD10CM|Maternal care for other rhesus isoimmunization, third trimester, fetus 3|Maternal care for other rhesus isoimmunization, third trimester, fetus 3 +C2908416|T046|AB|O36.0934|ICD10CM|Maternal care for oth rhesus isoimmun, third tri, fetus 4|Maternal care for oth rhesus isoimmun, third tri, fetus 4 +C2908416|T046|PT|O36.0934|ICD10CM|Maternal care for other rhesus isoimmunization, third trimester, fetus 4|Maternal care for other rhesus isoimmunization, third trimester, fetus 4 +C2908417|T046|AB|O36.0935|ICD10CM|Maternal care for oth rhesus isoimmun, third tri, fetus 5|Maternal care for oth rhesus isoimmun, third tri, fetus 5 +C2908417|T046|PT|O36.0935|ICD10CM|Maternal care for other rhesus isoimmunization, third trimester, fetus 5|Maternal care for other rhesus isoimmunization, third trimester, fetus 5 +C2908418|T046|AB|O36.0939|ICD10CM|Maternal care for oth rhesus isoimmun, third trimester, oth|Maternal care for oth rhesus isoimmun, third trimester, oth +C2908418|T046|PT|O36.0939|ICD10CM|Maternal care for other rhesus isoimmunization, third trimester, other fetus|Maternal care for other rhesus isoimmunization, third trimester, other fetus +C2908419|T046|AB|O36.099|ICD10CM|Maternal care for oth rhesus isoimmunization, unsp trimester|Maternal care for oth rhesus isoimmunization, unsp trimester +C2908419|T046|HT|O36.099|ICD10CM|Maternal care for other rhesus isoimmunization, unspecified trimester|Maternal care for other rhesus isoimmunization, unspecified trimester +C2908420|T046|AB|O36.0990|ICD10CM|Maternal care for oth rhesus isoimmun, unsp trimester, unsp|Maternal care for oth rhesus isoimmun, unsp trimester, unsp +C2908420|T046|PT|O36.0990|ICD10CM|Maternal care for other rhesus isoimmunization, unspecified trimester, not applicable or unspecified|Maternal care for other rhesus isoimmunization, unspecified trimester, not applicable or unspecified +C2908421|T046|AB|O36.0991|ICD10CM|Maternal care for oth rhesus isoimmun, unsp tri, fetus 1|Maternal care for oth rhesus isoimmun, unsp tri, fetus 1 +C2908421|T046|PT|O36.0991|ICD10CM|Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 1|Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 1 +C2908422|T046|AB|O36.0992|ICD10CM|Maternal care for oth rhesus isoimmun, unsp tri, fetus 2|Maternal care for oth rhesus isoimmun, unsp tri, fetus 2 +C2908422|T046|PT|O36.0992|ICD10CM|Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 2|Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 2 +C2908423|T046|AB|O36.0993|ICD10CM|Maternal care for oth rhesus isoimmun, unsp tri, fetus 3|Maternal care for oth rhesus isoimmun, unsp tri, fetus 3 +C2908423|T046|PT|O36.0993|ICD10CM|Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 3|Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 3 +C2908424|T046|AB|O36.0994|ICD10CM|Maternal care for oth rhesus isoimmun, unsp tri, fetus 4|Maternal care for oth rhesus isoimmun, unsp tri, fetus 4 +C2908424|T046|PT|O36.0994|ICD10CM|Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 4|Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 4 +C2908425|T046|AB|O36.0995|ICD10CM|Maternal care for oth rhesus isoimmun, unsp tri, fetus 5|Maternal care for oth rhesus isoimmun, unsp tri, fetus 5 +C2908425|T046|PT|O36.0995|ICD10CM|Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 5|Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 5 +C2908426|T046|AB|O36.0999|ICD10CM|Maternal care for oth rhesus isoimmun, unsp trimester, oth|Maternal care for oth rhesus isoimmun, unsp trimester, oth +C2908426|T046|PT|O36.0999|ICD10CM|Maternal care for other rhesus isoimmunization, unspecified trimester, other fetus|Maternal care for other rhesus isoimmunization, unspecified trimester, other fetus +C2908427|T047|ET|O36.1|ICD10CM|Maternal care for ABO isoimmunization|Maternal care for ABO isoimmunization +C0477831|T046|PT|O36.1|ICD10|Maternal care for other isoimmunization|Maternal care for other isoimmunization +C0477831|T046|HT|O36.1|ICD10CM|Maternal care for other isoimmunization|Maternal care for other isoimmunization +C0477831|T046|AB|O36.1|ICD10CM|Maternal care for other isoimmunization|Maternal care for other isoimmunization +C2908455|T046|AB|O36.11|ICD10CM|Maternal care for Anti-A sensitization|Maternal care for Anti-A sensitization +C2908455|T046|HT|O36.11|ICD10CM|Maternal care for Anti-A sensitization|Maternal care for Anti-A sensitization +C2908428|T046|ET|O36.11|ICD10CM|Maternal care for isoimmunization NOS (with hydrops fetalis)|Maternal care for isoimmunization NOS (with hydrops fetalis) +C2908430|T046|AB|O36.111|ICD10CM|Maternal care for Anti-A sensitization, first trimester|Maternal care for Anti-A sensitization, first trimester +C2908430|T046|HT|O36.111|ICD10CM|Maternal care for Anti-A sensitization, first trimester|Maternal care for Anti-A sensitization, first trimester +C2908431|T046|AB|O36.1110|ICD10CM|Maternal care for Anti-A sensitization, first tri, unsp|Maternal care for Anti-A sensitization, first tri, unsp +C2908431|T046|PT|O36.1110|ICD10CM|Maternal care for Anti-A sensitization, first trimester, not applicable or unspecified|Maternal care for Anti-A sensitization, first trimester, not applicable or unspecified +C2908432|T046|AB|O36.1111|ICD10CM|Maternal care for Anti-A sensitization, first tri, fetus 1|Maternal care for Anti-A sensitization, first tri, fetus 1 +C2908432|T046|PT|O36.1111|ICD10CM|Maternal care for Anti-A sensitization, first trimester, fetus 1|Maternal care for Anti-A sensitization, first trimester, fetus 1 +C2908433|T046|AB|O36.1112|ICD10CM|Maternal care for Anti-A sensitization, first tri, fetus 2|Maternal care for Anti-A sensitization, first tri, fetus 2 +C2908433|T046|PT|O36.1112|ICD10CM|Maternal care for Anti-A sensitization, first trimester, fetus 2|Maternal care for Anti-A sensitization, first trimester, fetus 2 +C2908434|T046|AB|O36.1113|ICD10CM|Maternal care for Anti-A sensitization, first tri, fetus 3|Maternal care for Anti-A sensitization, first tri, fetus 3 +C2908434|T046|PT|O36.1113|ICD10CM|Maternal care for Anti-A sensitization, first trimester, fetus 3|Maternal care for Anti-A sensitization, first trimester, fetus 3 +C2908435|T046|AB|O36.1114|ICD10CM|Maternal care for Anti-A sensitization, first tri, fetus 4|Maternal care for Anti-A sensitization, first tri, fetus 4 +C2908435|T046|PT|O36.1114|ICD10CM|Maternal care for Anti-A sensitization, first trimester, fetus 4|Maternal care for Anti-A sensitization, first trimester, fetus 4 +C2908436|T046|AB|O36.1115|ICD10CM|Maternal care for Anti-A sensitization, first tri, fetus 5|Maternal care for Anti-A sensitization, first tri, fetus 5 +C2908436|T046|PT|O36.1115|ICD10CM|Maternal care for Anti-A sensitization, first trimester, fetus 5|Maternal care for Anti-A sensitization, first trimester, fetus 5 +C2908437|T046|AB|O36.1119|ICD10CM|Maternal care for Anti-A sensitization, first trimester, oth|Maternal care for Anti-A sensitization, first trimester, oth +C2908437|T046|PT|O36.1119|ICD10CM|Maternal care for Anti-A sensitization, first trimester, other fetus|Maternal care for Anti-A sensitization, first trimester, other fetus +C2908438|T046|AB|O36.112|ICD10CM|Maternal care for Anti-A sensitization, second trimester|Maternal care for Anti-A sensitization, second trimester +C2908438|T046|HT|O36.112|ICD10CM|Maternal care for Anti-A sensitization, second trimester|Maternal care for Anti-A sensitization, second trimester +C2908439|T046|AB|O36.1120|ICD10CM|Maternal care for Anti-A sensitization, second tri, unsp|Maternal care for Anti-A sensitization, second tri, unsp +C2908439|T046|PT|O36.1120|ICD10CM|Maternal care for Anti-A sensitization, second trimester, not applicable or unspecified|Maternal care for Anti-A sensitization, second trimester, not applicable or unspecified +C2908440|T046|AB|O36.1121|ICD10CM|Maternal care for Anti-A sensitization, second tri, fetus 1|Maternal care for Anti-A sensitization, second tri, fetus 1 +C2908440|T046|PT|O36.1121|ICD10CM|Maternal care for Anti-A sensitization, second trimester, fetus 1|Maternal care for Anti-A sensitization, second trimester, fetus 1 +C2908441|T046|AB|O36.1122|ICD10CM|Maternal care for Anti-A sensitization, second tri, fetus 2|Maternal care for Anti-A sensitization, second tri, fetus 2 +C2908441|T046|PT|O36.1122|ICD10CM|Maternal care for Anti-A sensitization, second trimester, fetus 2|Maternal care for Anti-A sensitization, second trimester, fetus 2 +C2908442|T046|AB|O36.1123|ICD10CM|Maternal care for Anti-A sensitization, second tri, fetus 3|Maternal care for Anti-A sensitization, second tri, fetus 3 +C2908442|T046|PT|O36.1123|ICD10CM|Maternal care for Anti-A sensitization, second trimester, fetus 3|Maternal care for Anti-A sensitization, second trimester, fetus 3 +C2908443|T046|AB|O36.1124|ICD10CM|Maternal care for Anti-A sensitization, second tri, fetus 4|Maternal care for Anti-A sensitization, second tri, fetus 4 +C2908443|T046|PT|O36.1124|ICD10CM|Maternal care for Anti-A sensitization, second trimester, fetus 4|Maternal care for Anti-A sensitization, second trimester, fetus 4 +C2908444|T046|AB|O36.1125|ICD10CM|Maternal care for Anti-A sensitization, second tri, fetus 5|Maternal care for Anti-A sensitization, second tri, fetus 5 +C2908444|T046|PT|O36.1125|ICD10CM|Maternal care for Anti-A sensitization, second trimester, fetus 5|Maternal care for Anti-A sensitization, second trimester, fetus 5 +C2908445|T046|AB|O36.1129|ICD10CM|Maternal care for Anti-A sensitization, second tri, oth|Maternal care for Anti-A sensitization, second tri, oth +C2908445|T046|PT|O36.1129|ICD10CM|Maternal care for Anti-A sensitization, second trimester, other fetus|Maternal care for Anti-A sensitization, second trimester, other fetus +C2908446|T046|AB|O36.113|ICD10CM|Maternal care for Anti-A sensitization, third trimester|Maternal care for Anti-A sensitization, third trimester +C2908446|T046|HT|O36.113|ICD10CM|Maternal care for Anti-A sensitization, third trimester|Maternal care for Anti-A sensitization, third trimester +C2908447|T046|AB|O36.1130|ICD10CM|Maternal care for Anti-A sensitization, third tri, unsp|Maternal care for Anti-A sensitization, third tri, unsp +C2908447|T046|PT|O36.1130|ICD10CM|Maternal care for Anti-A sensitization, third trimester, not applicable or unspecified|Maternal care for Anti-A sensitization, third trimester, not applicable or unspecified +C2908448|T046|AB|O36.1131|ICD10CM|Maternal care for Anti-A sensitization, third tri, fetus 1|Maternal care for Anti-A sensitization, third tri, fetus 1 +C2908448|T046|PT|O36.1131|ICD10CM|Maternal care for Anti-A sensitization, third trimester, fetus 1|Maternal care for Anti-A sensitization, third trimester, fetus 1 +C2908449|T046|AB|O36.1132|ICD10CM|Maternal care for Anti-A sensitization, third tri, fetus 2|Maternal care for Anti-A sensitization, third tri, fetus 2 +C2908449|T046|PT|O36.1132|ICD10CM|Maternal care for Anti-A sensitization, third trimester, fetus 2|Maternal care for Anti-A sensitization, third trimester, fetus 2 +C2908450|T046|AB|O36.1133|ICD10CM|Maternal care for Anti-A sensitization, third tri, fetus 3|Maternal care for Anti-A sensitization, third tri, fetus 3 +C2908450|T046|PT|O36.1133|ICD10CM|Maternal care for Anti-A sensitization, third trimester, fetus 3|Maternal care for Anti-A sensitization, third trimester, fetus 3 +C2908451|T046|AB|O36.1134|ICD10CM|Maternal care for Anti-A sensitization, third tri, fetus 4|Maternal care for Anti-A sensitization, third tri, fetus 4 +C2908451|T046|PT|O36.1134|ICD10CM|Maternal care for Anti-A sensitization, third trimester, fetus 4|Maternal care for Anti-A sensitization, third trimester, fetus 4 +C2908452|T046|AB|O36.1135|ICD10CM|Maternal care for Anti-A sensitization, third tri, fetus 5|Maternal care for Anti-A sensitization, third tri, fetus 5 +C2908452|T046|PT|O36.1135|ICD10CM|Maternal care for Anti-A sensitization, third trimester, fetus 5|Maternal care for Anti-A sensitization, third trimester, fetus 5 +C2908453|T046|AB|O36.1139|ICD10CM|Maternal care for Anti-A sensitization, third trimester, oth|Maternal care for Anti-A sensitization, third trimester, oth +C2908453|T046|PT|O36.1139|ICD10CM|Maternal care for Anti-A sensitization, third trimester, other fetus|Maternal care for Anti-A sensitization, third trimester, other fetus +C2908454|T046|AB|O36.119|ICD10CM|Maternal care for Anti-A sensitization, unsp trimester|Maternal care for Anti-A sensitization, unsp trimester +C2908454|T046|HT|O36.119|ICD10CM|Maternal care for Anti-A sensitization, unspecified trimester|Maternal care for Anti-A sensitization, unspecified trimester +C2908455|T046|AB|O36.1190|ICD10CM|Maternal care for Anti-A sensitization, unsp trimester, unsp|Maternal care for Anti-A sensitization, unsp trimester, unsp +C2908455|T046|PT|O36.1190|ICD10CM|Maternal care for Anti-A sensitization, unspecified trimester, not applicable or unspecified|Maternal care for Anti-A sensitization, unspecified trimester, not applicable or unspecified +C2908456|T046|AB|O36.1191|ICD10CM|Maternal care for Anti-A sensitization, unsp tri, fetus 1|Maternal care for Anti-A sensitization, unsp tri, fetus 1 +C2908456|T046|PT|O36.1191|ICD10CM|Maternal care for Anti-A sensitization, unspecified trimester, fetus 1|Maternal care for Anti-A sensitization, unspecified trimester, fetus 1 +C2908457|T046|AB|O36.1192|ICD10CM|Maternal care for Anti-A sensitization, unsp tri, fetus 2|Maternal care for Anti-A sensitization, unsp tri, fetus 2 +C2908457|T046|PT|O36.1192|ICD10CM|Maternal care for Anti-A sensitization, unspecified trimester, fetus 2|Maternal care for Anti-A sensitization, unspecified trimester, fetus 2 +C2908458|T046|AB|O36.1193|ICD10CM|Maternal care for Anti-A sensitization, unsp tri, fetus 3|Maternal care for Anti-A sensitization, unsp tri, fetus 3 +C2908458|T046|PT|O36.1193|ICD10CM|Maternal care for Anti-A sensitization, unspecified trimester, fetus 3|Maternal care for Anti-A sensitization, unspecified trimester, fetus 3 +C2908459|T046|AB|O36.1194|ICD10CM|Maternal care for Anti-A sensitization, unsp tri, fetus 4|Maternal care for Anti-A sensitization, unsp tri, fetus 4 +C2908459|T046|PT|O36.1194|ICD10CM|Maternal care for Anti-A sensitization, unspecified trimester, fetus 4|Maternal care for Anti-A sensitization, unspecified trimester, fetus 4 +C2908460|T046|AB|O36.1195|ICD10CM|Maternal care for Anti-A sensitization, unsp tri, fetus 5|Maternal care for Anti-A sensitization, unsp tri, fetus 5 +C2908460|T046|PT|O36.1195|ICD10CM|Maternal care for Anti-A sensitization, unspecified trimester, fetus 5|Maternal care for Anti-A sensitization, unspecified trimester, fetus 5 +C2908461|T046|AB|O36.1199|ICD10CM|Maternal care for Anti-A sensitization, unsp trimester, oth|Maternal care for Anti-A sensitization, unsp trimester, oth +C2908461|T046|PT|O36.1199|ICD10CM|Maternal care for Anti-A sensitization, unspecified trimester, other fetus|Maternal care for Anti-A sensitization, unspecified trimester, other fetus +C2908462|T047|ET|O36.19|ICD10CM|Maternal care for Anti-B sensitization|Maternal care for Anti-B sensitization +C0477831|T046|HT|O36.19|ICD10CM|Maternal care for other isoimmunization|Maternal care for other isoimmunization +C0477831|T046|AB|O36.19|ICD10CM|Maternal care for other isoimmunization|Maternal care for other isoimmunization +C2908463|T046|AB|O36.191|ICD10CM|Maternal care for other isoimmunization, first trimester|Maternal care for other isoimmunization, first trimester +C2908463|T046|HT|O36.191|ICD10CM|Maternal care for other isoimmunization, first trimester|Maternal care for other isoimmunization, first trimester +C2908464|T046|AB|O36.1910|ICD10CM|Maternal care for oth isoimmunization, first trimester, unsp|Maternal care for oth isoimmunization, first trimester, unsp +C2908464|T046|PT|O36.1910|ICD10CM|Maternal care for other isoimmunization, first trimester, not applicable or unspecified|Maternal care for other isoimmunization, first trimester, not applicable or unspecified +C2908465|T046|AB|O36.1911|ICD10CM|Maternal care for oth isoimmun, first trimester, fetus 1|Maternal care for oth isoimmun, first trimester, fetus 1 +C2908465|T046|PT|O36.1911|ICD10CM|Maternal care for other isoimmunization, first trimester, fetus 1|Maternal care for other isoimmunization, first trimester, fetus 1 +C2908466|T046|AB|O36.1912|ICD10CM|Maternal care for oth isoimmun, first trimester, fetus 2|Maternal care for oth isoimmun, first trimester, fetus 2 +C2908466|T046|PT|O36.1912|ICD10CM|Maternal care for other isoimmunization, first trimester, fetus 2|Maternal care for other isoimmunization, first trimester, fetus 2 +C2908467|T046|AB|O36.1913|ICD10CM|Maternal care for oth isoimmun, first trimester, fetus 3|Maternal care for oth isoimmun, first trimester, fetus 3 +C2908467|T046|PT|O36.1913|ICD10CM|Maternal care for other isoimmunization, first trimester, fetus 3|Maternal care for other isoimmunization, first trimester, fetus 3 +C2908468|T046|AB|O36.1914|ICD10CM|Maternal care for oth isoimmun, first trimester, fetus 4|Maternal care for oth isoimmun, first trimester, fetus 4 +C2908468|T046|PT|O36.1914|ICD10CM|Maternal care for other isoimmunization, first trimester, fetus 4|Maternal care for other isoimmunization, first trimester, fetus 4 +C2908469|T046|AB|O36.1915|ICD10CM|Maternal care for oth isoimmun, first trimester, fetus 5|Maternal care for oth isoimmun, first trimester, fetus 5 +C2908469|T046|PT|O36.1915|ICD10CM|Maternal care for other isoimmunization, first trimester, fetus 5|Maternal care for other isoimmunization, first trimester, fetus 5 +C2908470|T046|AB|O36.1919|ICD10CM|Maternal care for oth isoimmunization, first trimester, oth|Maternal care for oth isoimmunization, first trimester, oth +C2908470|T046|PT|O36.1919|ICD10CM|Maternal care for other isoimmunization, first trimester, other fetus|Maternal care for other isoimmunization, first trimester, other fetus +C2908471|T046|AB|O36.192|ICD10CM|Maternal care for other isoimmunization, second trimester|Maternal care for other isoimmunization, second trimester +C2908471|T046|HT|O36.192|ICD10CM|Maternal care for other isoimmunization, second trimester|Maternal care for other isoimmunization, second trimester +C2908472|T046|AB|O36.1920|ICD10CM|Maternal care for oth isoimmun, second trimester, unsp|Maternal care for oth isoimmun, second trimester, unsp +C2908472|T046|PT|O36.1920|ICD10CM|Maternal care for other isoimmunization, second trimester, not applicable or unspecified|Maternal care for other isoimmunization, second trimester, not applicable or unspecified +C2908473|T046|AB|O36.1921|ICD10CM|Maternal care for oth isoimmun, second trimester, fetus 1|Maternal care for oth isoimmun, second trimester, fetus 1 +C2908473|T046|PT|O36.1921|ICD10CM|Maternal care for other isoimmunization, second trimester, fetus 1|Maternal care for other isoimmunization, second trimester, fetus 1 +C2908474|T046|AB|O36.1922|ICD10CM|Maternal care for oth isoimmun, second trimester, fetus 2|Maternal care for oth isoimmun, second trimester, fetus 2 +C2908474|T046|PT|O36.1922|ICD10CM|Maternal care for other isoimmunization, second trimester, fetus 2|Maternal care for other isoimmunization, second trimester, fetus 2 +C2908475|T046|AB|O36.1923|ICD10CM|Maternal care for oth isoimmun, second trimester, fetus 3|Maternal care for oth isoimmun, second trimester, fetus 3 +C2908475|T046|PT|O36.1923|ICD10CM|Maternal care for other isoimmunization, second trimester, fetus 3|Maternal care for other isoimmunization, second trimester, fetus 3 +C2908476|T046|AB|O36.1924|ICD10CM|Maternal care for oth isoimmun, second trimester, fetus 4|Maternal care for oth isoimmun, second trimester, fetus 4 +C2908476|T046|PT|O36.1924|ICD10CM|Maternal care for other isoimmunization, second trimester, fetus 4|Maternal care for other isoimmunization, second trimester, fetus 4 +C2908477|T046|AB|O36.1925|ICD10CM|Maternal care for oth isoimmun, second trimester, fetus 5|Maternal care for oth isoimmun, second trimester, fetus 5 +C2908477|T046|PT|O36.1925|ICD10CM|Maternal care for other isoimmunization, second trimester, fetus 5|Maternal care for other isoimmunization, second trimester, fetus 5 +C2908478|T046|AB|O36.1929|ICD10CM|Maternal care for oth isoimmunization, second trimester, oth|Maternal care for oth isoimmunization, second trimester, oth +C2908478|T046|PT|O36.1929|ICD10CM|Maternal care for other isoimmunization, second trimester, other fetus|Maternal care for other isoimmunization, second trimester, other fetus +C2908479|T046|AB|O36.193|ICD10CM|Maternal care for other isoimmunization, third trimester|Maternal care for other isoimmunization, third trimester +C2908479|T046|HT|O36.193|ICD10CM|Maternal care for other isoimmunization, third trimester|Maternal care for other isoimmunization, third trimester +C2908480|T046|AB|O36.1930|ICD10CM|Maternal care for oth isoimmunization, third trimester, unsp|Maternal care for oth isoimmunization, third trimester, unsp +C2908480|T046|PT|O36.1930|ICD10CM|Maternal care for other isoimmunization, third trimester, not applicable or unspecified|Maternal care for other isoimmunization, third trimester, not applicable or unspecified +C2908481|T046|AB|O36.1931|ICD10CM|Maternal care for oth isoimmun, third trimester, fetus 1|Maternal care for oth isoimmun, third trimester, fetus 1 +C2908481|T046|PT|O36.1931|ICD10CM|Maternal care for other isoimmunization, third trimester, fetus 1|Maternal care for other isoimmunization, third trimester, fetus 1 +C2908482|T046|AB|O36.1932|ICD10CM|Maternal care for oth isoimmun, third trimester, fetus 2|Maternal care for oth isoimmun, third trimester, fetus 2 +C2908482|T046|PT|O36.1932|ICD10CM|Maternal care for other isoimmunization, third trimester, fetus 2|Maternal care for other isoimmunization, third trimester, fetus 2 +C2908483|T046|AB|O36.1933|ICD10CM|Maternal care for oth isoimmun, third trimester, fetus 3|Maternal care for oth isoimmun, third trimester, fetus 3 +C2908483|T046|PT|O36.1933|ICD10CM|Maternal care for other isoimmunization, third trimester, fetus 3|Maternal care for other isoimmunization, third trimester, fetus 3 +C2908484|T046|AB|O36.1934|ICD10CM|Maternal care for oth isoimmun, third trimester, fetus 4|Maternal care for oth isoimmun, third trimester, fetus 4 +C2908484|T046|PT|O36.1934|ICD10CM|Maternal care for other isoimmunization, third trimester, fetus 4|Maternal care for other isoimmunization, third trimester, fetus 4 +C2908485|T046|AB|O36.1935|ICD10CM|Maternal care for oth isoimmun, third trimester, fetus 5|Maternal care for oth isoimmun, third trimester, fetus 5 +C2908485|T046|PT|O36.1935|ICD10CM|Maternal care for other isoimmunization, third trimester, fetus 5|Maternal care for other isoimmunization, third trimester, fetus 5 +C2908486|T046|AB|O36.1939|ICD10CM|Maternal care for oth isoimmunization, third trimester, oth|Maternal care for oth isoimmunization, third trimester, oth +C2908486|T046|PT|O36.1939|ICD10CM|Maternal care for other isoimmunization, third trimester, other fetus|Maternal care for other isoimmunization, third trimester, other fetus +C2908487|T046|AB|O36.199|ICD10CM|Maternal care for other isoimmunization, unsp trimester|Maternal care for other isoimmunization, unsp trimester +C2908487|T046|HT|O36.199|ICD10CM|Maternal care for other isoimmunization, unspecified trimester|Maternal care for other isoimmunization, unspecified trimester +C0477831|T046|AB|O36.1990|ICD10CM|Maternal care for oth isoimmunization, unsp trimester, unsp|Maternal care for oth isoimmunization, unsp trimester, unsp +C0477831|T046|PT|O36.1990|ICD10CM|Maternal care for other isoimmunization, unspecified trimester, not applicable or unspecified|Maternal care for other isoimmunization, unspecified trimester, not applicable or unspecified +C2908489|T046|AB|O36.1991|ICD10CM|Maternal care for oth isoimmun, unsp trimester, fetus 1|Maternal care for oth isoimmun, unsp trimester, fetus 1 +C2908489|T046|PT|O36.1991|ICD10CM|Maternal care for other isoimmunization, unspecified trimester, fetus 1|Maternal care for other isoimmunization, unspecified trimester, fetus 1 +C2908490|T046|AB|O36.1992|ICD10CM|Maternal care for oth isoimmun, unsp trimester, fetus 2|Maternal care for oth isoimmun, unsp trimester, fetus 2 +C2908490|T046|PT|O36.1992|ICD10CM|Maternal care for other isoimmunization, unspecified trimester, fetus 2|Maternal care for other isoimmunization, unspecified trimester, fetus 2 +C2908491|T046|AB|O36.1993|ICD10CM|Maternal care for oth isoimmun, unsp trimester, fetus 3|Maternal care for oth isoimmun, unsp trimester, fetus 3 +C2908491|T046|PT|O36.1993|ICD10CM|Maternal care for other isoimmunization, unspecified trimester, fetus 3|Maternal care for other isoimmunization, unspecified trimester, fetus 3 +C2908492|T046|AB|O36.1994|ICD10CM|Maternal care for oth isoimmun, unsp trimester, fetus 4|Maternal care for oth isoimmun, unsp trimester, fetus 4 +C2908492|T046|PT|O36.1994|ICD10CM|Maternal care for other isoimmunization, unspecified trimester, fetus 4|Maternal care for other isoimmunization, unspecified trimester, fetus 4 +C2908493|T046|AB|O36.1995|ICD10CM|Maternal care for oth isoimmun, unsp trimester, fetus 5|Maternal care for oth isoimmun, unsp trimester, fetus 5 +C2908493|T046|PT|O36.1995|ICD10CM|Maternal care for other isoimmunization, unspecified trimester, fetus 5|Maternal care for other isoimmunization, unspecified trimester, fetus 5 +C2908494|T046|AB|O36.1999|ICD10CM|Maternal care for oth isoimmunization, unsp trimester, oth|Maternal care for oth isoimmunization, unsp trimester, oth +C2908494|T046|PT|O36.1999|ICD10CM|Maternal care for other isoimmunization, unspecified trimester, other fetus|Maternal care for other isoimmunization, unspecified trimester, other fetus +C0451815|T046|HT|O36.2|ICD10CM|Maternal care for hydrops fetalis|Maternal care for hydrops fetalis +C0451815|T046|AB|O36.2|ICD10CM|Maternal care for hydrops fetalis|Maternal care for hydrops fetalis +C0451815|T046|PT|O36.2|ICD10|Maternal care for hydrops fetalis|Maternal care for hydrops fetalis +C0451815|T046|ET|O36.2|ICD10CM|Maternal care for hydrops fetalis NOS|Maternal care for hydrops fetalis NOS +C2908495|T046|ET|O36.2|ICD10CM|Maternal care for hydrops fetalis not associated with isoimmunization|Maternal care for hydrops fetalis not associated with isoimmunization +C2908496|T046|AB|O36.20|ICD10CM|Maternal care for hydrops fetalis, unspecified trimester|Maternal care for hydrops fetalis, unspecified trimester +C2908496|T046|HT|O36.20|ICD10CM|Maternal care for hydrops fetalis, unspecified trimester|Maternal care for hydrops fetalis, unspecified trimester +C2908497|T046|AB|O36.20X0|ICD10CM|Maternal care for hydrops fetalis, unsp trimester, unsp|Maternal care for hydrops fetalis, unsp trimester, unsp +C2908497|T046|PT|O36.20X0|ICD10CM|Maternal care for hydrops fetalis, unspecified trimester, not applicable or unspecified|Maternal care for hydrops fetalis, unspecified trimester, not applicable or unspecified +C2908498|T046|AB|O36.20X1|ICD10CM|Maternal care for hydrops fetalis, unsp trimester, fetus 1|Maternal care for hydrops fetalis, unsp trimester, fetus 1 +C2908498|T046|PT|O36.20X1|ICD10CM|Maternal care for hydrops fetalis, unspecified trimester, fetus 1|Maternal care for hydrops fetalis, unspecified trimester, fetus 1 +C2908499|T046|AB|O36.20X2|ICD10CM|Maternal care for hydrops fetalis, unsp trimester, fetus 2|Maternal care for hydrops fetalis, unsp trimester, fetus 2 +C2908499|T046|PT|O36.20X2|ICD10CM|Maternal care for hydrops fetalis, unspecified trimester, fetus 2|Maternal care for hydrops fetalis, unspecified trimester, fetus 2 +C2908500|T046|AB|O36.20X3|ICD10CM|Maternal care for hydrops fetalis, unsp trimester, fetus 3|Maternal care for hydrops fetalis, unsp trimester, fetus 3 +C2908500|T046|PT|O36.20X3|ICD10CM|Maternal care for hydrops fetalis, unspecified trimester, fetus 3|Maternal care for hydrops fetalis, unspecified trimester, fetus 3 +C2908501|T046|AB|O36.20X4|ICD10CM|Maternal care for hydrops fetalis, unsp trimester, fetus 4|Maternal care for hydrops fetalis, unsp trimester, fetus 4 +C2908501|T046|PT|O36.20X4|ICD10CM|Maternal care for hydrops fetalis, unspecified trimester, fetus 4|Maternal care for hydrops fetalis, unspecified trimester, fetus 4 +C2908502|T046|AB|O36.20X5|ICD10CM|Maternal care for hydrops fetalis, unsp trimester, fetus 5|Maternal care for hydrops fetalis, unsp trimester, fetus 5 +C2908502|T046|PT|O36.20X5|ICD10CM|Maternal care for hydrops fetalis, unspecified trimester, fetus 5|Maternal care for hydrops fetalis, unspecified trimester, fetus 5 +C2908503|T046|AB|O36.20X9|ICD10CM|Maternal care for hydrops fetalis, unsp trimester, oth fetus|Maternal care for hydrops fetalis, unsp trimester, oth fetus +C2908503|T046|PT|O36.20X9|ICD10CM|Maternal care for hydrops fetalis, unspecified trimester, other fetus|Maternal care for hydrops fetalis, unspecified trimester, other fetus +C2908504|T046|AB|O36.21|ICD10CM|Maternal care for hydrops fetalis, first trimester|Maternal care for hydrops fetalis, first trimester +C2908504|T046|HT|O36.21|ICD10CM|Maternal care for hydrops fetalis, first trimester|Maternal care for hydrops fetalis, first trimester +C2908505|T046|PT|O36.21X0|ICD10CM|Maternal care for hydrops fetalis, first trimester, not applicable or unspecified|Maternal care for hydrops fetalis, first trimester, not applicable or unspecified +C2908505|T046|AB|O36.21X0|ICD10CM|Maternal care for hydrops fetalis, first trimester, unsp|Maternal care for hydrops fetalis, first trimester, unsp +C2908506|T046|AB|O36.21X1|ICD10CM|Maternal care for hydrops fetalis, first trimester, fetus 1|Maternal care for hydrops fetalis, first trimester, fetus 1 +C2908506|T046|PT|O36.21X1|ICD10CM|Maternal care for hydrops fetalis, first trimester, fetus 1|Maternal care for hydrops fetalis, first trimester, fetus 1 +C2908507|T046|AB|O36.21X2|ICD10CM|Maternal care for hydrops fetalis, first trimester, fetus 2|Maternal care for hydrops fetalis, first trimester, fetus 2 +C2908507|T046|PT|O36.21X2|ICD10CM|Maternal care for hydrops fetalis, first trimester, fetus 2|Maternal care for hydrops fetalis, first trimester, fetus 2 +C2908508|T046|AB|O36.21X3|ICD10CM|Maternal care for hydrops fetalis, first trimester, fetus 3|Maternal care for hydrops fetalis, first trimester, fetus 3 +C2908508|T046|PT|O36.21X3|ICD10CM|Maternal care for hydrops fetalis, first trimester, fetus 3|Maternal care for hydrops fetalis, first trimester, fetus 3 +C2908509|T046|AB|O36.21X4|ICD10CM|Maternal care for hydrops fetalis, first trimester, fetus 4|Maternal care for hydrops fetalis, first trimester, fetus 4 +C2908509|T046|PT|O36.21X4|ICD10CM|Maternal care for hydrops fetalis, first trimester, fetus 4|Maternal care for hydrops fetalis, first trimester, fetus 4 +C2908510|T046|AB|O36.21X5|ICD10CM|Maternal care for hydrops fetalis, first trimester, fetus 5|Maternal care for hydrops fetalis, first trimester, fetus 5 +C2908510|T046|PT|O36.21X5|ICD10CM|Maternal care for hydrops fetalis, first trimester, fetus 5|Maternal care for hydrops fetalis, first trimester, fetus 5 +C2908511|T046|AB|O36.21X9|ICD10CM|Maternal care for hydrops fetalis, first trimester, oth|Maternal care for hydrops fetalis, first trimester, oth +C2908511|T046|PT|O36.21X9|ICD10CM|Maternal care for hydrops fetalis, first trimester, other fetus|Maternal care for hydrops fetalis, first trimester, other fetus +C2908512|T046|AB|O36.22|ICD10CM|Maternal care for hydrops fetalis, second trimester|Maternal care for hydrops fetalis, second trimester +C2908512|T046|HT|O36.22|ICD10CM|Maternal care for hydrops fetalis, second trimester|Maternal care for hydrops fetalis, second trimester +C2908513|T046|PT|O36.22X0|ICD10CM|Maternal care for hydrops fetalis, second trimester, not applicable or unspecified|Maternal care for hydrops fetalis, second trimester, not applicable or unspecified +C2908513|T046|AB|O36.22X0|ICD10CM|Maternal care for hydrops fetalis, second trimester, unsp|Maternal care for hydrops fetalis, second trimester, unsp +C2908514|T046|AB|O36.22X1|ICD10CM|Maternal care for hydrops fetalis, second trimester, fetus 1|Maternal care for hydrops fetalis, second trimester, fetus 1 +C2908514|T046|PT|O36.22X1|ICD10CM|Maternal care for hydrops fetalis, second trimester, fetus 1|Maternal care for hydrops fetalis, second trimester, fetus 1 +C2908515|T046|AB|O36.22X2|ICD10CM|Maternal care for hydrops fetalis, second trimester, fetus 2|Maternal care for hydrops fetalis, second trimester, fetus 2 +C2908515|T046|PT|O36.22X2|ICD10CM|Maternal care for hydrops fetalis, second trimester, fetus 2|Maternal care for hydrops fetalis, second trimester, fetus 2 +C2908516|T046|AB|O36.22X3|ICD10CM|Maternal care for hydrops fetalis, second trimester, fetus 3|Maternal care for hydrops fetalis, second trimester, fetus 3 +C2908516|T046|PT|O36.22X3|ICD10CM|Maternal care for hydrops fetalis, second trimester, fetus 3|Maternal care for hydrops fetalis, second trimester, fetus 3 +C2908517|T046|AB|O36.22X4|ICD10CM|Maternal care for hydrops fetalis, second trimester, fetus 4|Maternal care for hydrops fetalis, second trimester, fetus 4 +C2908517|T046|PT|O36.22X4|ICD10CM|Maternal care for hydrops fetalis, second trimester, fetus 4|Maternal care for hydrops fetalis, second trimester, fetus 4 +C2908518|T046|AB|O36.22X5|ICD10CM|Maternal care for hydrops fetalis, second trimester, fetus 5|Maternal care for hydrops fetalis, second trimester, fetus 5 +C2908518|T046|PT|O36.22X5|ICD10CM|Maternal care for hydrops fetalis, second trimester, fetus 5|Maternal care for hydrops fetalis, second trimester, fetus 5 +C2908519|T046|AB|O36.22X9|ICD10CM|Maternal care for hydrops fetalis, second trimester, oth|Maternal care for hydrops fetalis, second trimester, oth +C2908519|T046|PT|O36.22X9|ICD10CM|Maternal care for hydrops fetalis, second trimester, other fetus|Maternal care for hydrops fetalis, second trimester, other fetus +C2908520|T046|AB|O36.23|ICD10CM|Maternal care for hydrops fetalis, third trimester|Maternal care for hydrops fetalis, third trimester +C2908520|T046|HT|O36.23|ICD10CM|Maternal care for hydrops fetalis, third trimester|Maternal care for hydrops fetalis, third trimester +C2908521|T046|PT|O36.23X0|ICD10CM|Maternal care for hydrops fetalis, third trimester, not applicable or unspecified|Maternal care for hydrops fetalis, third trimester, not applicable or unspecified +C2908521|T046|AB|O36.23X0|ICD10CM|Maternal care for hydrops fetalis, third trimester, unsp|Maternal care for hydrops fetalis, third trimester, unsp +C2908522|T046|AB|O36.23X1|ICD10CM|Maternal care for hydrops fetalis, third trimester, fetus 1|Maternal care for hydrops fetalis, third trimester, fetus 1 +C2908522|T046|PT|O36.23X1|ICD10CM|Maternal care for hydrops fetalis, third trimester, fetus 1|Maternal care for hydrops fetalis, third trimester, fetus 1 +C2908523|T046|AB|O36.23X2|ICD10CM|Maternal care for hydrops fetalis, third trimester, fetus 2|Maternal care for hydrops fetalis, third trimester, fetus 2 +C2908523|T046|PT|O36.23X2|ICD10CM|Maternal care for hydrops fetalis, third trimester, fetus 2|Maternal care for hydrops fetalis, third trimester, fetus 2 +C2908524|T046|AB|O36.23X3|ICD10CM|Maternal care for hydrops fetalis, third trimester, fetus 3|Maternal care for hydrops fetalis, third trimester, fetus 3 +C2908524|T046|PT|O36.23X3|ICD10CM|Maternal care for hydrops fetalis, third trimester, fetus 3|Maternal care for hydrops fetalis, third trimester, fetus 3 +C2908525|T046|AB|O36.23X4|ICD10CM|Maternal care for hydrops fetalis, third trimester, fetus 4|Maternal care for hydrops fetalis, third trimester, fetus 4 +C2908525|T046|PT|O36.23X4|ICD10CM|Maternal care for hydrops fetalis, third trimester, fetus 4|Maternal care for hydrops fetalis, third trimester, fetus 4 +C2908526|T046|AB|O36.23X5|ICD10CM|Maternal care for hydrops fetalis, third trimester, fetus 5|Maternal care for hydrops fetalis, third trimester, fetus 5 +C2908526|T046|PT|O36.23X5|ICD10CM|Maternal care for hydrops fetalis, third trimester, fetus 5|Maternal care for hydrops fetalis, third trimester, fetus 5 +C2908527|T046|AB|O36.23X9|ICD10CM|Maternal care for hydrops fetalis, third trimester, oth|Maternal care for hydrops fetalis, third trimester, oth +C2908527|T046|PT|O36.23X9|ICD10CM|Maternal care for hydrops fetalis, third trimester, other fetus|Maternal care for hydrops fetalis, third trimester, other fetus +C0495237|T046|HT|O36.4|ICD10CM|Maternal care for intrauterine death|Maternal care for intrauterine death +C0495237|T046|AB|O36.4|ICD10CM|Maternal care for intrauterine death|Maternal care for intrauterine death +C0495237|T046|PT|O36.4|ICD10|Maternal care for intrauterine death|Maternal care for intrauterine death +C2908529|T046|ET|O36.4|ICD10CM|Maternal care for intrauterine fetal death after completion of 20 weeks of gestation|Maternal care for intrauterine fetal death after completion of 20 weeks of gestation +C2908528|T046|ET|O36.4|ICD10CM|Maternal care for intrauterine fetal death NOS|Maternal care for intrauterine fetal death NOS +C2908530|T046|ET|O36.4|ICD10CM|Maternal care for late fetal death|Maternal care for late fetal death +C2908531|T046|ET|O36.4|ICD10CM|Maternal care for missed delivery|Maternal care for missed delivery +C2908532|T046|AB|O36.4XX0|ICD10CM|Maternal care for intrauterine death, not applicable or unsp|Maternal care for intrauterine death, not applicable or unsp +C2908532|T046|PT|O36.4XX0|ICD10CM|Maternal care for intrauterine death, not applicable or unspecified|Maternal care for intrauterine death, not applicable or unspecified +C2908533|T046|AB|O36.4XX1|ICD10CM|Maternal care for intrauterine death, fetus 1|Maternal care for intrauterine death, fetus 1 +C2908533|T046|PT|O36.4XX1|ICD10CM|Maternal care for intrauterine death, fetus 1|Maternal care for intrauterine death, fetus 1 +C2908534|T046|AB|O36.4XX2|ICD10CM|Maternal care for intrauterine death, fetus 2|Maternal care for intrauterine death, fetus 2 +C2908534|T046|PT|O36.4XX2|ICD10CM|Maternal care for intrauterine death, fetus 2|Maternal care for intrauterine death, fetus 2 +C2908535|T046|AB|O36.4XX3|ICD10CM|Maternal care for intrauterine death, fetus 3|Maternal care for intrauterine death, fetus 3 +C2908535|T046|PT|O36.4XX3|ICD10CM|Maternal care for intrauterine death, fetus 3|Maternal care for intrauterine death, fetus 3 +C2908536|T046|AB|O36.4XX4|ICD10CM|Maternal care for intrauterine death, fetus 4|Maternal care for intrauterine death, fetus 4 +C2908536|T046|PT|O36.4XX4|ICD10CM|Maternal care for intrauterine death, fetus 4|Maternal care for intrauterine death, fetus 4 +C2908537|T046|AB|O36.4XX5|ICD10CM|Maternal care for intrauterine death, fetus 5|Maternal care for intrauterine death, fetus 5 +C2908537|T046|PT|O36.4XX5|ICD10CM|Maternal care for intrauterine death, fetus 5|Maternal care for intrauterine death, fetus 5 +C2908538|T046|AB|O36.4XX9|ICD10CM|Maternal care for intrauterine death, other fetus|Maternal care for intrauterine death, other fetus +C2908538|T046|PT|O36.4XX9|ICD10CM|Maternal care for intrauterine death, other fetus|Maternal care for intrauterine death, other fetus +C2908539|T046|AB|O36.5|ICD10CM|Maternal care for known or suspected poor fetal growth|Maternal care for known or suspected poor fetal growth +C2908539|T046|HT|O36.5|ICD10CM|Maternal care for known or suspected poor fetal growth|Maternal care for known or suspected poor fetal growth +C0495238|T047|PT|O36.5|ICD10|Maternal care for poor fetal growth|Maternal care for poor fetal growth +C2908566|T046|AB|O36.51|ICD10CM|Maternal care for known or suspected placental insufficiency|Maternal care for known or suspected placental insufficiency +C2908566|T046|HT|O36.51|ICD10CM|Maternal care for known or suspected placental insufficiency|Maternal care for known or suspected placental insufficiency +C2908541|T046|AB|O36.511|ICD10CM|Maternal care for known or susp placntl insuff, first tri|Maternal care for known or susp placntl insuff, first tri +C2908541|T046|HT|O36.511|ICD10CM|Maternal care for known or suspected placental insufficiency, first trimester|Maternal care for known or suspected placental insufficiency, first trimester +C2908542|T046|AB|O36.5110|ICD10CM|Matern care for known or susp placntl insuff, 1st tri, unsp|Matern care for known or susp placntl insuff, 1st tri, unsp +C2908543|T046|AB|O36.5111|ICD10CM|Matern care for known or susp placntl insuff, 1st tri, fts1|Matern care for known or susp placntl insuff, 1st tri, fts1 +C2908543|T046|PT|O36.5111|ICD10CM|Maternal care for known or suspected placental insufficiency, first trimester, fetus 1|Maternal care for known or suspected placental insufficiency, first trimester, fetus 1 +C2908544|T046|AB|O36.5112|ICD10CM|Matern care for known or susp placntl insuff, 1st tri, fts2|Matern care for known or susp placntl insuff, 1st tri, fts2 +C2908544|T046|PT|O36.5112|ICD10CM|Maternal care for known or suspected placental insufficiency, first trimester, fetus 2|Maternal care for known or suspected placental insufficiency, first trimester, fetus 2 +C2908545|T046|AB|O36.5113|ICD10CM|Matern care for known or susp placntl insuff, 1st tri, fts3|Matern care for known or susp placntl insuff, 1st tri, fts3 +C2908545|T046|PT|O36.5113|ICD10CM|Maternal care for known or suspected placental insufficiency, first trimester, fetus 3|Maternal care for known or suspected placental insufficiency, first trimester, fetus 3 +C2908546|T046|AB|O36.5114|ICD10CM|Matern care for known or susp placntl insuff, 1st tri, fts4|Matern care for known or susp placntl insuff, 1st tri, fts4 +C2908546|T046|PT|O36.5114|ICD10CM|Maternal care for known or suspected placental insufficiency, first trimester, fetus 4|Maternal care for known or suspected placental insufficiency, first trimester, fetus 4 +C2908547|T046|AB|O36.5115|ICD10CM|Matern care for known or susp placntl insuff, 1st tri, fts5|Matern care for known or susp placntl insuff, 1st tri, fts5 +C2908547|T046|PT|O36.5115|ICD10CM|Maternal care for known or suspected placental insufficiency, first trimester, fetus 5|Maternal care for known or suspected placental insufficiency, first trimester, fetus 5 +C2908548|T046|AB|O36.5119|ICD10CM|Matern care for known or susp placntl insuff, first tri, oth|Matern care for known or susp placntl insuff, first tri, oth +C2908548|T046|PT|O36.5119|ICD10CM|Maternal care for known or suspected placental insufficiency, first trimester, other fetus|Maternal care for known or suspected placental insufficiency, first trimester, other fetus +C2908549|T046|AB|O36.512|ICD10CM|Maternal care for known or susp placntl insuff, second tri|Maternal care for known or susp placntl insuff, second tri +C2908549|T046|HT|O36.512|ICD10CM|Maternal care for known or suspected placental insufficiency, second trimester|Maternal care for known or suspected placental insufficiency, second trimester +C2908550|T046|AB|O36.5120|ICD10CM|Matern care for known or susp placntl insuff, 2nd tri, unsp|Matern care for known or susp placntl insuff, 2nd tri, unsp +C2908551|T046|AB|O36.5121|ICD10CM|Matern care for known or susp placntl insuff, 2nd tri, fts1|Matern care for known or susp placntl insuff, 2nd tri, fts1 +C2908551|T046|PT|O36.5121|ICD10CM|Maternal care for known or suspected placental insufficiency, second trimester, fetus 1|Maternal care for known or suspected placental insufficiency, second trimester, fetus 1 +C2908552|T046|AB|O36.5122|ICD10CM|Matern care for known or susp placntl insuff, 2nd tri, fts2|Matern care for known or susp placntl insuff, 2nd tri, fts2 +C2908552|T046|PT|O36.5122|ICD10CM|Maternal care for known or suspected placental insufficiency, second trimester, fetus 2|Maternal care for known or suspected placental insufficiency, second trimester, fetus 2 +C2908553|T046|AB|O36.5123|ICD10CM|Matern care for known or susp placntl insuff, 2nd tri, fts3|Matern care for known or susp placntl insuff, 2nd tri, fts3 +C2908553|T046|PT|O36.5123|ICD10CM|Maternal care for known or suspected placental insufficiency, second trimester, fetus 3|Maternal care for known or suspected placental insufficiency, second trimester, fetus 3 +C2908554|T046|AB|O36.5124|ICD10CM|Matern care for known or susp placntl insuff, 2nd tri, fts4|Matern care for known or susp placntl insuff, 2nd tri, fts4 +C2908554|T046|PT|O36.5124|ICD10CM|Maternal care for known or suspected placental insufficiency, second trimester, fetus 4|Maternal care for known or suspected placental insufficiency, second trimester, fetus 4 +C2908555|T046|AB|O36.5125|ICD10CM|Matern care for known or susp placntl insuff, 2nd tri, fts5|Matern care for known or susp placntl insuff, 2nd tri, fts5 +C2908555|T046|PT|O36.5125|ICD10CM|Maternal care for known or suspected placental insufficiency, second trimester, fetus 5|Maternal care for known or suspected placental insufficiency, second trimester, fetus 5 +C2908556|T046|AB|O36.5129|ICD10CM|Matern care for known or susp placntl insuff, 2nd tri, oth|Matern care for known or susp placntl insuff, 2nd tri, oth +C2908556|T046|PT|O36.5129|ICD10CM|Maternal care for known or suspected placental insufficiency, second trimester, other fetus|Maternal care for known or suspected placental insufficiency, second trimester, other fetus +C2908557|T046|AB|O36.513|ICD10CM|Maternal care for known or susp placntl insuff, third tri|Maternal care for known or susp placntl insuff, third tri +C2908557|T046|HT|O36.513|ICD10CM|Maternal care for known or suspected placental insufficiency, third trimester|Maternal care for known or suspected placental insufficiency, third trimester +C2908558|T046|AB|O36.5130|ICD10CM|Matern care for or susp placntl insuff, third tri, unsp|Matern care for or susp placntl insuff, third tri, unsp +C2908559|T046|AB|O36.5131|ICD10CM|Matern care for or susp placntl insuff, third tri, fts1|Matern care for or susp placntl insuff, third tri, fts1 +C2908559|T046|PT|O36.5131|ICD10CM|Maternal care for known or suspected placental insufficiency, third trimester, fetus 1|Maternal care for known or suspected placental insufficiency, third trimester, fetus 1 +C2908560|T046|AB|O36.5132|ICD10CM|Matern care for or susp placntl insuff, third tri, fts2|Matern care for or susp placntl insuff, third tri, fts2 +C2908560|T046|PT|O36.5132|ICD10CM|Maternal care for known or suspected placental insufficiency, third trimester, fetus 2|Maternal care for known or suspected placental insufficiency, third trimester, fetus 2 +C2908561|T046|AB|O36.5133|ICD10CM|Matern care for or susp placntl insuff, third tri, fts3|Matern care for or susp placntl insuff, third tri, fts3 +C2908561|T046|PT|O36.5133|ICD10CM|Maternal care for known or suspected placental insufficiency, third trimester, fetus 3|Maternal care for known or suspected placental insufficiency, third trimester, fetus 3 +C2908562|T046|AB|O36.5134|ICD10CM|Matern care for or susp placntl insuff, third tri, fts4|Matern care for or susp placntl insuff, third tri, fts4 +C2908562|T046|PT|O36.5134|ICD10CM|Maternal care for known or suspected placental insufficiency, third trimester, fetus 4|Maternal care for known or suspected placental insufficiency, third trimester, fetus 4 +C2908563|T046|AB|O36.5135|ICD10CM|Matern care for or susp placntl insuff, third tri, fts5|Matern care for or susp placntl insuff, third tri, fts5 +C2908563|T046|PT|O36.5135|ICD10CM|Maternal care for known or suspected placental insufficiency, third trimester, fetus 5|Maternal care for known or suspected placental insufficiency, third trimester, fetus 5 +C2908564|T046|AB|O36.5139|ICD10CM|Matern care for known or susp placntl insuff, third tri, oth|Matern care for known or susp placntl insuff, third tri, oth +C2908564|T046|PT|O36.5139|ICD10CM|Maternal care for known or suspected placental insufficiency, third trimester, other fetus|Maternal care for known or suspected placental insufficiency, third trimester, other fetus +C2908565|T046|AB|O36.519|ICD10CM|Maternal care for known or susp placntl insuff, unsp tri|Maternal care for known or susp placntl insuff, unsp tri +C2908565|T046|HT|O36.519|ICD10CM|Maternal care for known or suspected placental insufficiency, unspecified trimester|Maternal care for known or suspected placental insufficiency, unspecified trimester +C2908566|T046|AB|O36.5190|ICD10CM|Matern care for known or susp placntl insuff, unsp tri, unsp|Matern care for known or susp placntl insuff, unsp tri, unsp +C2908567|T046|AB|O36.5191|ICD10CM|Matern care for known or susp placntl insuff, unsp tri, fts1|Matern care for known or susp placntl insuff, unsp tri, fts1 +C2908567|T046|PT|O36.5191|ICD10CM|Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 1|Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 1 +C2908568|T046|AB|O36.5192|ICD10CM|Matern care for known or susp placntl insuff, unsp tri, fts2|Matern care for known or susp placntl insuff, unsp tri, fts2 +C2908568|T046|PT|O36.5192|ICD10CM|Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 2|Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 2 +C2908569|T046|AB|O36.5193|ICD10CM|Matern care for known or susp placntl insuff, unsp tri, fts3|Matern care for known or susp placntl insuff, unsp tri, fts3 +C2908569|T046|PT|O36.5193|ICD10CM|Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 3|Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 3 +C2908570|T046|AB|O36.5194|ICD10CM|Matern care for known or susp placntl insuff, unsp tri, fts4|Matern care for known or susp placntl insuff, unsp tri, fts4 +C2908570|T046|PT|O36.5194|ICD10CM|Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 4|Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 4 +C2908571|T046|AB|O36.5195|ICD10CM|Matern care for known or susp placntl insuff, unsp tri, fts5|Matern care for known or susp placntl insuff, unsp tri, fts5 +C2908571|T046|PT|O36.5195|ICD10CM|Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 5|Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 5 +C2908572|T046|AB|O36.5199|ICD10CM|Matern care for known or susp placntl insuff, unsp tri, oth|Matern care for known or susp placntl insuff, unsp tri, oth +C2908572|T046|PT|O36.5199|ICD10CM|Maternal care for known or suspected placental insufficiency, unspecified trimester, other fetus|Maternal care for known or suspected placental insufficiency, unspecified trimester, other fetus +C2908573|T046|ET|O36.59|ICD10CM|Maternal care for known or suspected light-for-dates NOS|Maternal care for known or suspected light-for-dates NOS +C2908574|T046|ET|O36.59|ICD10CM|Maternal care for known or suspected small-for-dates NOS|Maternal care for known or suspected small-for-dates NOS +C2908601|T046|AB|O36.59|ICD10CM|Maternal care for other known or suspected poor fetal growth|Maternal care for other known or suspected poor fetal growth +C2908601|T046|HT|O36.59|ICD10CM|Maternal care for other known or suspected poor fetal growth|Maternal care for other known or suspected poor fetal growth +C2908576|T046|AB|O36.591|ICD10CM|Matern care for oth known or susp poor fetal grth, first tri|Matern care for oth known or susp poor fetal grth, first tri +C2908576|T046|HT|O36.591|ICD10CM|Maternal care for other known or suspected poor fetal growth, first trimester|Maternal care for other known or suspected poor fetal growth, first trimester +C2908577|T046|AB|O36.5910|ICD10CM|Matern care for oth or susp poor fetl grth, 1st tri, unsp|Matern care for oth or susp poor fetl grth, 1st tri, unsp +C2908578|T046|AB|O36.5911|ICD10CM|Matern care for oth or susp poor fetl grth, 1st tri, fts1|Matern care for oth or susp poor fetl grth, 1st tri, fts1 +C2908578|T046|PT|O36.5911|ICD10CM|Maternal care for other known or suspected poor fetal growth, first trimester, fetus 1|Maternal care for other known or suspected poor fetal growth, first trimester, fetus 1 +C2908579|T046|AB|O36.5912|ICD10CM|Matern care for oth or susp poor fetl grth, 1st tri, fts2|Matern care for oth or susp poor fetl grth, 1st tri, fts2 +C2908579|T046|PT|O36.5912|ICD10CM|Maternal care for other known or suspected poor fetal growth, first trimester, fetus 2|Maternal care for other known or suspected poor fetal growth, first trimester, fetus 2 +C2908580|T046|AB|O36.5913|ICD10CM|Matern care for oth or susp poor fetl grth, 1st tri, fts3|Matern care for oth or susp poor fetl grth, 1st tri, fts3 +C2908580|T046|PT|O36.5913|ICD10CM|Maternal care for other known or suspected poor fetal growth, first trimester, fetus 3|Maternal care for other known or suspected poor fetal growth, first trimester, fetus 3 +C2908581|T046|AB|O36.5914|ICD10CM|Matern care for oth or susp poor fetl grth, 1st tri, fts4|Matern care for oth or susp poor fetl grth, 1st tri, fts4 +C2908581|T046|PT|O36.5914|ICD10CM|Maternal care for other known or suspected poor fetal growth, first trimester, fetus 4|Maternal care for other known or suspected poor fetal growth, first trimester, fetus 4 +C2908582|T046|AB|O36.5915|ICD10CM|Matern care for oth or susp poor fetl grth, 1st tri, fts5|Matern care for oth or susp poor fetl grth, 1st tri, fts5 +C2908582|T046|PT|O36.5915|ICD10CM|Maternal care for other known or suspected poor fetal growth, first trimester, fetus 5|Maternal care for other known or suspected poor fetal growth, first trimester, fetus 5 +C2908583|T046|AB|O36.5919|ICD10CM|Matern care for oth or susp poor fetl grth, 1st tri, oth|Matern care for oth or susp poor fetl grth, 1st tri, oth +C2908583|T046|PT|O36.5919|ICD10CM|Maternal care for other known or suspected poor fetal growth, first trimester, other fetus|Maternal care for other known or suspected poor fetal growth, first trimester, other fetus +C2908584|T046|AB|O36.592|ICD10CM|Matern care for oth known or susp poor fetal grth, 2nd tri|Matern care for oth known or susp poor fetal grth, 2nd tri +C2908584|T046|HT|O36.592|ICD10CM|Maternal care for other known or suspected poor fetal growth, second trimester|Maternal care for other known or suspected poor fetal growth, second trimester +C2908585|T046|AB|O36.5920|ICD10CM|Matern care for oth or susp poor fetl grth, 2nd tri, unsp|Matern care for oth or susp poor fetl grth, 2nd tri, unsp +C2908586|T046|AB|O36.5921|ICD10CM|Matern care for oth or susp poor fetl grth, 2nd tri, fts1|Matern care for oth or susp poor fetl grth, 2nd tri, fts1 +C2908586|T046|PT|O36.5921|ICD10CM|Maternal care for other known or suspected poor fetal growth, second trimester, fetus 1|Maternal care for other known or suspected poor fetal growth, second trimester, fetus 1 +C2908587|T046|AB|O36.5922|ICD10CM|Matern care for oth or susp poor fetl grth, 2nd tri, fts2|Matern care for oth or susp poor fetl grth, 2nd tri, fts2 +C2908587|T046|PT|O36.5922|ICD10CM|Maternal care for other known or suspected poor fetal growth, second trimester, fetus 2|Maternal care for other known or suspected poor fetal growth, second trimester, fetus 2 +C2908588|T046|AB|O36.5923|ICD10CM|Matern care for oth or susp poor fetl grth, 2nd tri, fts3|Matern care for oth or susp poor fetl grth, 2nd tri, fts3 +C2908588|T046|PT|O36.5923|ICD10CM|Maternal care for other known or suspected poor fetal growth, second trimester, fetus 3|Maternal care for other known or suspected poor fetal growth, second trimester, fetus 3 +C2908589|T046|AB|O36.5924|ICD10CM|Matern care for oth or susp poor fetl grth, 2nd tri, fts4|Matern care for oth or susp poor fetl grth, 2nd tri, fts4 +C2908589|T046|PT|O36.5924|ICD10CM|Maternal care for other known or suspected poor fetal growth, second trimester, fetus 4|Maternal care for other known or suspected poor fetal growth, second trimester, fetus 4 +C2908590|T046|AB|O36.5925|ICD10CM|Matern care for oth or susp poor fetl grth, 2nd tri, fts5|Matern care for oth or susp poor fetl grth, 2nd tri, fts5 +C2908590|T046|PT|O36.5925|ICD10CM|Maternal care for other known or suspected poor fetal growth, second trimester, fetus 5|Maternal care for other known or suspected poor fetal growth, second trimester, fetus 5 +C2908591|T046|AB|O36.5929|ICD10CM|Matern care for oth or susp poor fetl grth, 2nd tri, oth|Matern care for oth or susp poor fetl grth, 2nd tri, oth +C2908591|T046|PT|O36.5929|ICD10CM|Maternal care for other known or suspected poor fetal growth, second trimester, other fetus|Maternal care for other known or suspected poor fetal growth, second trimester, other fetus +C2908592|T046|AB|O36.593|ICD10CM|Matern care for oth known or susp poor fetal grth, third tri|Matern care for oth known or susp poor fetal grth, third tri +C2908592|T046|HT|O36.593|ICD10CM|Maternal care for other known or suspected poor fetal growth, third trimester|Maternal care for other known or suspected poor fetal growth, third trimester +C2908593|T046|AB|O36.5930|ICD10CM|Matern care for oth or susp poor fetl grth, third tri, unsp|Matern care for oth or susp poor fetl grth, third tri, unsp +C2908594|T046|AB|O36.5931|ICD10CM|Matern care for oth or susp poor fetl grth, third tri, fts1|Matern care for oth or susp poor fetl grth, third tri, fts1 +C2908594|T046|PT|O36.5931|ICD10CM|Maternal care for other known or suspected poor fetal growth, third trimester, fetus 1|Maternal care for other known or suspected poor fetal growth, third trimester, fetus 1 +C2908595|T046|AB|O36.5932|ICD10CM|Matern care for oth or susp poor fetl grth, third tri, fts2|Matern care for oth or susp poor fetl grth, third tri, fts2 +C2908595|T046|PT|O36.5932|ICD10CM|Maternal care for other known or suspected poor fetal growth, third trimester, fetus 2|Maternal care for other known or suspected poor fetal growth, third trimester, fetus 2 +C2908596|T046|AB|O36.5933|ICD10CM|Matern care for oth or susp poor fetl grth, third tri, fts3|Matern care for oth or susp poor fetl grth, third tri, fts3 +C2908596|T046|PT|O36.5933|ICD10CM|Maternal care for other known or suspected poor fetal growth, third trimester, fetus 3|Maternal care for other known or suspected poor fetal growth, third trimester, fetus 3 +C2908597|T046|AB|O36.5934|ICD10CM|Matern care for oth or susp poor fetl grth, third tri, fts4|Matern care for oth or susp poor fetl grth, third tri, fts4 +C2908597|T046|PT|O36.5934|ICD10CM|Maternal care for other known or suspected poor fetal growth, third trimester, fetus 4|Maternal care for other known or suspected poor fetal growth, third trimester, fetus 4 +C2908598|T046|AB|O36.5935|ICD10CM|Matern care for oth or susp poor fetl grth, third tri, fts5|Matern care for oth or susp poor fetl grth, third tri, fts5 +C2908598|T046|PT|O36.5935|ICD10CM|Maternal care for other known or suspected poor fetal growth, third trimester, fetus 5|Maternal care for other known or suspected poor fetal growth, third trimester, fetus 5 +C2908599|T046|AB|O36.5939|ICD10CM|Matern care for oth or susp poor fetl grth, third tri, oth|Matern care for oth or susp poor fetl grth, third tri, oth +C2908599|T046|PT|O36.5939|ICD10CM|Maternal care for other known or suspected poor fetal growth, third trimester, other fetus|Maternal care for other known or suspected poor fetal growth, third trimester, other fetus +C2908600|T046|AB|O36.599|ICD10CM|Matern care for oth known or susp poor fetal grth, unsp tri|Matern care for oth known or susp poor fetal grth, unsp tri +C2908600|T046|HT|O36.599|ICD10CM|Maternal care for other known or suspected poor fetal growth, unspecified trimester|Maternal care for other known or suspected poor fetal growth, unspecified trimester +C2908601|T046|AB|O36.5990|ICD10CM|Matern care for oth or susp poor fetl grth, unsp tri, unsp|Matern care for oth or susp poor fetl grth, unsp tri, unsp +C2908602|T046|AB|O36.5991|ICD10CM|Matern care for oth or susp poor fetl grth, unsp tri, fts1|Matern care for oth or susp poor fetl grth, unsp tri, fts1 +C2908602|T046|PT|O36.5991|ICD10CM|Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 1|Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 1 +C2908603|T046|AB|O36.5992|ICD10CM|Matern care for oth or susp poor fetl grth, unsp tri, fts2|Matern care for oth or susp poor fetl grth, unsp tri, fts2 +C2908603|T046|PT|O36.5992|ICD10CM|Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 2|Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 2 +C2908604|T046|AB|O36.5993|ICD10CM|Matern care for oth or susp poor fetl grth, unsp tri, fts3|Matern care for oth or susp poor fetl grth, unsp tri, fts3 +C2908604|T046|PT|O36.5993|ICD10CM|Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 3|Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 3 +C2908605|T046|AB|O36.5994|ICD10CM|Matern care for oth or susp poor fetl grth, unsp tri, fts4|Matern care for oth or susp poor fetl grth, unsp tri, fts4 +C2908605|T046|PT|O36.5994|ICD10CM|Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 4|Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 4 +C2908606|T046|AB|O36.5995|ICD10CM|Matern care for oth or susp poor fetl grth, unsp tri, fts5|Matern care for oth or susp poor fetl grth, unsp tri, fts5 +C2908606|T046|PT|O36.5995|ICD10CM|Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 5|Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 5 +C2908607|T046|AB|O36.5999|ICD10CM|Matern care for oth or susp poor fetl grth, unsp tri, oth|Matern care for oth or susp poor fetl grth, unsp tri, oth +C2908607|T046|PT|O36.5999|ICD10CM|Maternal care for other known or suspected poor fetal growth, unspecified trimester, other fetus|Maternal care for other known or suspected poor fetal growth, unspecified trimester, other fetus +C0495239|T046|PT|O36.6|ICD10|Maternal care for excessive fetal growth|Maternal care for excessive fetal growth +C0495239|T046|HT|O36.6|ICD10CM|Maternal care for excessive fetal growth|Maternal care for excessive fetal growth +C0495239|T046|AB|O36.6|ICD10CM|Maternal care for excessive fetal growth|Maternal care for excessive fetal growth +C2908608|T046|ET|O36.6|ICD10CM|Maternal care for known or suspected large-for-dates|Maternal care for known or suspected large-for-dates +C2908609|T046|AB|O36.60|ICD10CM|Maternal care for excessive fetal growth, unsp trimester|Maternal care for excessive fetal growth, unsp trimester +C2908609|T046|HT|O36.60|ICD10CM|Maternal care for excessive fetal growth, unspecified trimester|Maternal care for excessive fetal growth, unspecified trimester +C2908610|T046|AB|O36.60X0|ICD10CM|Maternal care for excess fetal growth, unsp trimester, unsp|Maternal care for excess fetal growth, unsp trimester, unsp +C2908610|T046|PT|O36.60X0|ICD10CM|Maternal care for excessive fetal growth, unspecified trimester, not applicable or unspecified|Maternal care for excessive fetal growth, unspecified trimester, not applicable or unspecified +C2908611|T046|AB|O36.60X1|ICD10CM|Maternal care for excess fetal growth, unsp tri, fetus 1|Maternal care for excess fetal growth, unsp tri, fetus 1 +C2908611|T046|PT|O36.60X1|ICD10CM|Maternal care for excessive fetal growth, unspecified trimester, fetus 1|Maternal care for excessive fetal growth, unspecified trimester, fetus 1 +C2908612|T046|AB|O36.60X2|ICD10CM|Maternal care for excess fetal growth, unsp tri, fetus 2|Maternal care for excess fetal growth, unsp tri, fetus 2 +C2908612|T046|PT|O36.60X2|ICD10CM|Maternal care for excessive fetal growth, unspecified trimester, fetus 2|Maternal care for excessive fetal growth, unspecified trimester, fetus 2 +C2908613|T046|AB|O36.60X3|ICD10CM|Maternal care for excess fetal growth, unsp tri, fetus 3|Maternal care for excess fetal growth, unsp tri, fetus 3 +C2908613|T046|PT|O36.60X3|ICD10CM|Maternal care for excessive fetal growth, unspecified trimester, fetus 3|Maternal care for excessive fetal growth, unspecified trimester, fetus 3 +C2908614|T046|AB|O36.60X4|ICD10CM|Maternal care for excess fetal growth, unsp tri, fetus 4|Maternal care for excess fetal growth, unsp tri, fetus 4 +C2908614|T046|PT|O36.60X4|ICD10CM|Maternal care for excessive fetal growth, unspecified trimester, fetus 4|Maternal care for excessive fetal growth, unspecified trimester, fetus 4 +C2908615|T046|AB|O36.60X5|ICD10CM|Maternal care for excess fetal growth, unsp tri, fetus 5|Maternal care for excess fetal growth, unsp tri, fetus 5 +C2908615|T046|PT|O36.60X5|ICD10CM|Maternal care for excessive fetal growth, unspecified trimester, fetus 5|Maternal care for excessive fetal growth, unspecified trimester, fetus 5 +C2908616|T046|AB|O36.60X9|ICD10CM|Maternal care for excess fetal growth, unsp trimester, oth|Maternal care for excess fetal growth, unsp trimester, oth +C2908616|T046|PT|O36.60X9|ICD10CM|Maternal care for excessive fetal growth, unspecified trimester, other fetus|Maternal care for excessive fetal growth, unspecified trimester, other fetus +C2908617|T046|AB|O36.61|ICD10CM|Maternal care for excessive fetal growth, first trimester|Maternal care for excessive fetal growth, first trimester +C2908617|T046|HT|O36.61|ICD10CM|Maternal care for excessive fetal growth, first trimester|Maternal care for excessive fetal growth, first trimester +C2908618|T046|AB|O36.61X0|ICD10CM|Maternal care for excess fetal growth, first trimester, unsp|Maternal care for excess fetal growth, first trimester, unsp +C2908618|T046|PT|O36.61X0|ICD10CM|Maternal care for excessive fetal growth, first trimester, not applicable or unspecified|Maternal care for excessive fetal growth, first trimester, not applicable or unspecified +C2908619|T046|AB|O36.61X1|ICD10CM|Maternal care for excess fetal growth, first tri, fetus 1|Maternal care for excess fetal growth, first tri, fetus 1 +C2908619|T046|PT|O36.61X1|ICD10CM|Maternal care for excessive fetal growth, first trimester, fetus 1|Maternal care for excessive fetal growth, first trimester, fetus 1 +C2908620|T046|AB|O36.61X2|ICD10CM|Maternal care for excess fetal growth, first tri, fetus 2|Maternal care for excess fetal growth, first tri, fetus 2 +C2908620|T046|PT|O36.61X2|ICD10CM|Maternal care for excessive fetal growth, first trimester, fetus 2|Maternal care for excessive fetal growth, first trimester, fetus 2 +C2908621|T046|AB|O36.61X3|ICD10CM|Maternal care for excess fetal growth, first tri, fetus 3|Maternal care for excess fetal growth, first tri, fetus 3 +C2908621|T046|PT|O36.61X3|ICD10CM|Maternal care for excessive fetal growth, first trimester, fetus 3|Maternal care for excessive fetal growth, first trimester, fetus 3 +C2908622|T046|AB|O36.61X4|ICD10CM|Maternal care for excess fetal growth, first tri, fetus 4|Maternal care for excess fetal growth, first tri, fetus 4 +C2908622|T046|PT|O36.61X4|ICD10CM|Maternal care for excessive fetal growth, first trimester, fetus 4|Maternal care for excessive fetal growth, first trimester, fetus 4 +C2908623|T046|AB|O36.61X5|ICD10CM|Maternal care for excess fetal growth, first tri, fetus 5|Maternal care for excess fetal growth, first tri, fetus 5 +C2908623|T046|PT|O36.61X5|ICD10CM|Maternal care for excessive fetal growth, first trimester, fetus 5|Maternal care for excessive fetal growth, first trimester, fetus 5 +C2908624|T046|AB|O36.61X9|ICD10CM|Maternal care for excess fetal growth, first trimester, oth|Maternal care for excess fetal growth, first trimester, oth +C2908624|T046|PT|O36.61X9|ICD10CM|Maternal care for excessive fetal growth, first trimester, other fetus|Maternal care for excessive fetal growth, first trimester, other fetus +C2908625|T046|AB|O36.62|ICD10CM|Maternal care for excessive fetal growth, second trimester|Maternal care for excessive fetal growth, second trimester +C2908625|T046|HT|O36.62|ICD10CM|Maternal care for excessive fetal growth, second trimester|Maternal care for excessive fetal growth, second trimester +C2908626|T046|AB|O36.62X0|ICD10CM|Maternal care for excess fetal growth, second tri, unsp|Maternal care for excess fetal growth, second tri, unsp +C2908626|T046|PT|O36.62X0|ICD10CM|Maternal care for excessive fetal growth, second trimester, not applicable or unspecified|Maternal care for excessive fetal growth, second trimester, not applicable or unspecified +C2908627|T046|AB|O36.62X1|ICD10CM|Maternal care for excess fetal growth, second tri, fetus 1|Maternal care for excess fetal growth, second tri, fetus 1 +C2908627|T046|PT|O36.62X1|ICD10CM|Maternal care for excessive fetal growth, second trimester, fetus 1|Maternal care for excessive fetal growth, second trimester, fetus 1 +C2908628|T046|AB|O36.62X2|ICD10CM|Maternal care for excess fetal growth, second tri, fetus 2|Maternal care for excess fetal growth, second tri, fetus 2 +C2908628|T046|PT|O36.62X2|ICD10CM|Maternal care for excessive fetal growth, second trimester, fetus 2|Maternal care for excessive fetal growth, second trimester, fetus 2 +C2908629|T046|AB|O36.62X3|ICD10CM|Maternal care for excess fetal growth, second tri, fetus 3|Maternal care for excess fetal growth, second tri, fetus 3 +C2908629|T046|PT|O36.62X3|ICD10CM|Maternal care for excessive fetal growth, second trimester, fetus 3|Maternal care for excessive fetal growth, second trimester, fetus 3 +C2908630|T046|AB|O36.62X4|ICD10CM|Maternal care for excess fetal growth, second tri, fetus 4|Maternal care for excess fetal growth, second tri, fetus 4 +C2908630|T046|PT|O36.62X4|ICD10CM|Maternal care for excessive fetal growth, second trimester, fetus 4|Maternal care for excessive fetal growth, second trimester, fetus 4 +C2908631|T046|AB|O36.62X5|ICD10CM|Maternal care for excess fetal growth, second tri, fetus 5|Maternal care for excess fetal growth, second tri, fetus 5 +C2908631|T046|PT|O36.62X5|ICD10CM|Maternal care for excessive fetal growth, second trimester, fetus 5|Maternal care for excessive fetal growth, second trimester, fetus 5 +C2908632|T046|AB|O36.62X9|ICD10CM|Maternal care for excess fetal growth, second trimester, oth|Maternal care for excess fetal growth, second trimester, oth +C2908632|T046|PT|O36.62X9|ICD10CM|Maternal care for excessive fetal growth, second trimester, other fetus|Maternal care for excessive fetal growth, second trimester, other fetus +C2908633|T046|AB|O36.63|ICD10CM|Maternal care for excessive fetal growth, third trimester|Maternal care for excessive fetal growth, third trimester +C2908633|T046|HT|O36.63|ICD10CM|Maternal care for excessive fetal growth, third trimester|Maternal care for excessive fetal growth, third trimester +C2908634|T046|AB|O36.63X0|ICD10CM|Maternal care for excess fetal growth, third trimester, unsp|Maternal care for excess fetal growth, third trimester, unsp +C2908634|T046|PT|O36.63X0|ICD10CM|Maternal care for excessive fetal growth, third trimester, not applicable or unspecified|Maternal care for excessive fetal growth, third trimester, not applicable or unspecified +C2908635|T046|AB|O36.63X1|ICD10CM|Maternal care for excess fetal growth, third tri, fetus 1|Maternal care for excess fetal growth, third tri, fetus 1 +C2908635|T046|PT|O36.63X1|ICD10CM|Maternal care for excessive fetal growth, third trimester, fetus 1|Maternal care for excessive fetal growth, third trimester, fetus 1 +C2908636|T046|AB|O36.63X2|ICD10CM|Maternal care for excess fetal growth, third tri, fetus 2|Maternal care for excess fetal growth, third tri, fetus 2 +C2908636|T046|PT|O36.63X2|ICD10CM|Maternal care for excessive fetal growth, third trimester, fetus 2|Maternal care for excessive fetal growth, third trimester, fetus 2 +C2908637|T046|AB|O36.63X3|ICD10CM|Maternal care for excess fetal growth, third tri, fetus 3|Maternal care for excess fetal growth, third tri, fetus 3 +C2908637|T046|PT|O36.63X3|ICD10CM|Maternal care for excessive fetal growth, third trimester, fetus 3|Maternal care for excessive fetal growth, third trimester, fetus 3 +C2908638|T046|AB|O36.63X4|ICD10CM|Maternal care for excess fetal growth, third tri, fetus 4|Maternal care for excess fetal growth, third tri, fetus 4 +C2908638|T046|PT|O36.63X4|ICD10CM|Maternal care for excessive fetal growth, third trimester, fetus 4|Maternal care for excessive fetal growth, third trimester, fetus 4 +C2908639|T046|AB|O36.63X5|ICD10CM|Maternal care for excess fetal growth, third tri, fetus 5|Maternal care for excess fetal growth, third tri, fetus 5 +C2908639|T046|PT|O36.63X5|ICD10CM|Maternal care for excessive fetal growth, third trimester, fetus 5|Maternal care for excessive fetal growth, third trimester, fetus 5 +C2908640|T046|AB|O36.63X9|ICD10CM|Maternal care for excess fetal growth, third trimester, oth|Maternal care for excess fetal growth, third trimester, oth +C2908640|T046|PT|O36.63X9|ICD10CM|Maternal care for excessive fetal growth, third trimester, other fetus|Maternal care for excessive fetal growth, third trimester, other fetus +C0451816|T046|HT|O36.7|ICD10CM|Maternal care for viable fetus in abdominal pregnancy|Maternal care for viable fetus in abdominal pregnancy +C0451816|T046|AB|O36.7|ICD10CM|Maternal care for viable fetus in abdominal pregnancy|Maternal care for viable fetus in abdominal pregnancy +C0451816|T046|PT|O36.7|ICD10|Maternal care for viable fetus in abdominal pregnancy|Maternal care for viable fetus in abdominal pregnancy +C2908641|T046|AB|O36.70|ICD10CM|Maternal care for viable fetus in abd preg, unsp trimester|Maternal care for viable fetus in abd preg, unsp trimester +C2908641|T046|HT|O36.70|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, unspecified trimester|Maternal care for viable fetus in abdominal pregnancy, unspecified trimester +C2908642|T046|AB|O36.70X0|ICD10CM|Maternal care for viable fetus in abd preg, unsp tri, unsp|Maternal care for viable fetus in abd preg, unsp tri, unsp +C2908643|T046|AB|O36.70X1|ICD10CM|Matern care for viable fetus in abd preg, unsp tri, fetus 1|Matern care for viable fetus in abd preg, unsp tri, fetus 1 +C2908643|T046|PT|O36.70X1|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 1|Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 1 +C2908644|T046|AB|O36.70X2|ICD10CM|Matern care for viable fetus in abd preg, unsp tri, fetus 2|Matern care for viable fetus in abd preg, unsp tri, fetus 2 +C2908644|T046|PT|O36.70X2|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 2|Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 2 +C2908645|T046|AB|O36.70X3|ICD10CM|Matern care for viable fetus in abd preg, unsp tri, fetus 3|Matern care for viable fetus in abd preg, unsp tri, fetus 3 +C2908645|T046|PT|O36.70X3|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 3|Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 3 +C2908646|T046|AB|O36.70X4|ICD10CM|Matern care for viable fetus in abd preg, unsp tri, fetus 4|Matern care for viable fetus in abd preg, unsp tri, fetus 4 +C2908646|T046|PT|O36.70X4|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 4|Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 4 +C2908647|T046|AB|O36.70X5|ICD10CM|Matern care for viable fetus in abd preg, unsp tri, fetus 5|Matern care for viable fetus in abd preg, unsp tri, fetus 5 +C2908647|T046|PT|O36.70X5|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 5|Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 5 +C2908648|T046|AB|O36.70X9|ICD10CM|Maternal care for viable fetus in abd preg, unsp tri, oth|Maternal care for viable fetus in abd preg, unsp tri, oth +C2908648|T046|PT|O36.70X9|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, other fetus|Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, other fetus +C2908649|T046|AB|O36.71|ICD10CM|Maternal care for viable fetus in abd preg, first trimester|Maternal care for viable fetus in abd preg, first trimester +C2908649|T046|HT|O36.71|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, first trimester|Maternal care for viable fetus in abdominal pregnancy, first trimester +C2908650|T046|AB|O36.71X0|ICD10CM|Maternal care for viable fetus in abd preg, first tri, unsp|Maternal care for viable fetus in abd preg, first tri, unsp +C2908651|T046|AB|O36.71X1|ICD10CM|Matern care for viable fetus in abd preg, first tri, fetus 1|Matern care for viable fetus in abd preg, first tri, fetus 1 +C2908651|T046|PT|O36.71X1|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 1|Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 1 +C2908652|T046|AB|O36.71X2|ICD10CM|Matern care for viable fetus in abd preg, first tri, fetus 2|Matern care for viable fetus in abd preg, first tri, fetus 2 +C2908652|T046|PT|O36.71X2|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 2|Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 2 +C2908653|T046|AB|O36.71X3|ICD10CM|Matern care for viable fetus in abd preg, first tri, fetus 3|Matern care for viable fetus in abd preg, first tri, fetus 3 +C2908653|T046|PT|O36.71X3|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 3|Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 3 +C2908654|T046|AB|O36.71X4|ICD10CM|Matern care for viable fetus in abd preg, first tri, fetus 4|Matern care for viable fetus in abd preg, first tri, fetus 4 +C2908654|T046|PT|O36.71X4|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 4|Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 4 +C2908655|T046|AB|O36.71X5|ICD10CM|Matern care for viable fetus in abd preg, first tri, fetus 5|Matern care for viable fetus in abd preg, first tri, fetus 5 +C2908655|T046|PT|O36.71X5|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 5|Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 5 +C2908656|T046|AB|O36.71X9|ICD10CM|Maternal care for viable fetus in abd preg, first tri, oth|Maternal care for viable fetus in abd preg, first tri, oth +C2908656|T046|PT|O36.71X9|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, first trimester, other fetus|Maternal care for viable fetus in abdominal pregnancy, first trimester, other fetus +C2908657|T046|AB|O36.72|ICD10CM|Maternal care for viable fetus in abd preg, second trimester|Maternal care for viable fetus in abd preg, second trimester +C2908657|T046|HT|O36.72|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, second trimester|Maternal care for viable fetus in abdominal pregnancy, second trimester +C2908658|T046|AB|O36.72X0|ICD10CM|Maternal care for viable fetus in abd preg, second tri, unsp|Maternal care for viable fetus in abd preg, second tri, unsp +C2908659|T046|AB|O36.72X1|ICD10CM|Matern care for viable fetus in abd preg, second tri, fts1|Matern care for viable fetus in abd preg, second tri, fts1 +C2908659|T046|PT|O36.72X1|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 1|Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 1 +C2908660|T046|AB|O36.72X2|ICD10CM|Matern care for viable fetus in abd preg, second tri, fts2|Matern care for viable fetus in abd preg, second tri, fts2 +C2908660|T046|PT|O36.72X2|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 2|Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 2 +C2908661|T046|AB|O36.72X3|ICD10CM|Matern care for viable fetus in abd preg, second tri, fts3|Matern care for viable fetus in abd preg, second tri, fts3 +C2908661|T046|PT|O36.72X3|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 3|Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 3 +C2908662|T046|AB|O36.72X4|ICD10CM|Matern care for viable fetus in abd preg, second tri, fts4|Matern care for viable fetus in abd preg, second tri, fts4 +C2908662|T046|PT|O36.72X4|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 4|Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 4 +C2908663|T046|AB|O36.72X5|ICD10CM|Matern care for viable fetus in abd preg, second tri, fts5|Matern care for viable fetus in abd preg, second tri, fts5 +C2908663|T046|PT|O36.72X5|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 5|Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 5 +C2908664|T046|AB|O36.72X9|ICD10CM|Maternal care for viable fetus in abd preg, second tri, oth|Maternal care for viable fetus in abd preg, second tri, oth +C2908664|T046|PT|O36.72X9|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, second trimester, other fetus|Maternal care for viable fetus in abdominal pregnancy, second trimester, other fetus +C2908665|T046|AB|O36.73|ICD10CM|Maternal care for viable fetus in abd preg, third trimester|Maternal care for viable fetus in abd preg, third trimester +C2908665|T046|HT|O36.73|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, third trimester|Maternal care for viable fetus in abdominal pregnancy, third trimester +C2908666|T046|AB|O36.73X0|ICD10CM|Maternal care for viable fetus in abd preg, third tri, unsp|Maternal care for viable fetus in abd preg, third tri, unsp +C2908667|T046|AB|O36.73X1|ICD10CM|Matern care for viable fetus in abd preg, third tri, fetus 1|Matern care for viable fetus in abd preg, third tri, fetus 1 +C2908667|T046|PT|O36.73X1|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 1|Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 1 +C2908668|T046|AB|O36.73X2|ICD10CM|Matern care for viable fetus in abd preg, third tri, fetus 2|Matern care for viable fetus in abd preg, third tri, fetus 2 +C2908668|T046|PT|O36.73X2|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 2|Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 2 +C2908669|T046|AB|O36.73X3|ICD10CM|Matern care for viable fetus in abd preg, third tri, fetus 3|Matern care for viable fetus in abd preg, third tri, fetus 3 +C2908669|T046|PT|O36.73X3|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 3|Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 3 +C2908670|T046|AB|O36.73X4|ICD10CM|Matern care for viable fetus in abd preg, third tri, fetus 4|Matern care for viable fetus in abd preg, third tri, fetus 4 +C2908670|T046|PT|O36.73X4|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 4|Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 4 +C2908671|T046|AB|O36.73X5|ICD10CM|Matern care for viable fetus in abd preg, third tri, fetus 5|Matern care for viable fetus in abd preg, third tri, fetus 5 +C2908671|T046|PT|O36.73X5|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 5|Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 5 +C2908672|T046|AB|O36.73X9|ICD10CM|Maternal care for viable fetus in abd preg, third tri, oth|Maternal care for viable fetus in abd preg, third tri, oth +C2908672|T046|PT|O36.73X9|ICD10CM|Maternal care for viable fetus in abdominal pregnancy, third trimester, other fetus|Maternal care for viable fetus in abdominal pregnancy, third trimester, other fetus +C0495240|T046|PT|O36.8|ICD10|Maternal care for other specified fetal problems|Maternal care for other specified fetal problems +C0495240|T046|HT|O36.8|ICD10CM|Maternal care for other specified fetal problems|Maternal care for other specified fetal problems +C0495240|T046|AB|O36.8|ICD10CM|Maternal care for other specified fetal problems|Maternal care for other specified fetal problems +C3161244|T033|ET|O36.80|ICD10CM|Encounter to determine fetal viability of pregnancy|Encounter to determine fetal viability of pregnancy +C3161150|T033|HT|O36.80|ICD10CM|Pregnancy with inconclusive fetal viability|Pregnancy with inconclusive fetal viability +C3161150|T033|AB|O36.80|ICD10CM|Pregnancy with inconclusive fetal viability|Pregnancy with inconclusive fetal viability +C3264518|T033|AB|O36.80X0|ICD10CM|Pregnancy w inconclusive fetal viability, unsp|Pregnancy w inconclusive fetal viability, unsp +C3264518|T033|PT|O36.80X0|ICD10CM|Pregnancy with inconclusive fetal viability, not applicable or unspecified|Pregnancy with inconclusive fetal viability, not applicable or unspecified +C3264519|T033|AB|O36.80X1|ICD10CM|Pregnancy with inconclusive fetal viability, fetus 1|Pregnancy with inconclusive fetal viability, fetus 1 +C3264519|T033|PT|O36.80X1|ICD10CM|Pregnancy with inconclusive fetal viability, fetus 1|Pregnancy with inconclusive fetal viability, fetus 1 +C3264520|T033|AB|O36.80X2|ICD10CM|Pregnancy with inconclusive fetal viability, fetus 2|Pregnancy with inconclusive fetal viability, fetus 2 +C3264520|T033|PT|O36.80X2|ICD10CM|Pregnancy with inconclusive fetal viability, fetus 2|Pregnancy with inconclusive fetal viability, fetus 2 +C3264521|T033|AB|O36.80X3|ICD10CM|Pregnancy with inconclusive fetal viability, fetus 3|Pregnancy with inconclusive fetal viability, fetus 3 +C3264521|T033|PT|O36.80X3|ICD10CM|Pregnancy with inconclusive fetal viability, fetus 3|Pregnancy with inconclusive fetal viability, fetus 3 +C3264522|T033|AB|O36.80X4|ICD10CM|Pregnancy with inconclusive fetal viability, fetus 4|Pregnancy with inconclusive fetal viability, fetus 4 +C3264522|T033|PT|O36.80X4|ICD10CM|Pregnancy with inconclusive fetal viability, fetus 4|Pregnancy with inconclusive fetal viability, fetus 4 +C3264523|T033|AB|O36.80X5|ICD10CM|Pregnancy with inconclusive fetal viability, fetus 5|Pregnancy with inconclusive fetal viability, fetus 5 +C3264523|T033|PT|O36.80X5|ICD10CM|Pregnancy with inconclusive fetal viability, fetus 5|Pregnancy with inconclusive fetal viability, fetus 5 +C3264524|T033|AB|O36.80X9|ICD10CM|Pregnancy with inconclusive fetal viability, other fetus|Pregnancy with inconclusive fetal viability, other fetus +C3264524|T033|PT|O36.80X9|ICD10CM|Pregnancy with inconclusive fetal viability, other fetus|Pregnancy with inconclusive fetal viability, other fetus +C0235659|T033|HT|O36.81|ICD10CM|Decreased fetal movements|Decreased fetal movements +C0235659|T033|AB|O36.81|ICD10CM|Decreased fetal movements|Decreased fetal movements +C2908673|T033|AB|O36.812|ICD10CM|Decreased fetal movements, second trimester|Decreased fetal movements, second trimester +C2908673|T033|HT|O36.812|ICD10CM|Decreased fetal movements, second trimester|Decreased fetal movements, second trimester +C2908674|T033|PT|O36.8120|ICD10CM|Decreased fetal movements, second trimester, not applicable or unspecified|Decreased fetal movements, second trimester, not applicable or unspecified +C2908674|T033|AB|O36.8120|ICD10CM|Decreased fetal movements, second trimester, unsp|Decreased fetal movements, second trimester, unsp +C2908675|T033|AB|O36.8121|ICD10CM|Decreased fetal movements, second trimester, fetus 1|Decreased fetal movements, second trimester, fetus 1 +C2908675|T033|PT|O36.8121|ICD10CM|Decreased fetal movements, second trimester, fetus 1|Decreased fetal movements, second trimester, fetus 1 +C2908676|T033|AB|O36.8122|ICD10CM|Decreased fetal movements, second trimester, fetus 2|Decreased fetal movements, second trimester, fetus 2 +C2908676|T033|PT|O36.8122|ICD10CM|Decreased fetal movements, second trimester, fetus 2|Decreased fetal movements, second trimester, fetus 2 +C2908677|T033|AB|O36.8123|ICD10CM|Decreased fetal movements, second trimester, fetus 3|Decreased fetal movements, second trimester, fetus 3 +C2908677|T033|PT|O36.8123|ICD10CM|Decreased fetal movements, second trimester, fetus 3|Decreased fetal movements, second trimester, fetus 3 +C2908678|T033|AB|O36.8124|ICD10CM|Decreased fetal movements, second trimester, fetus 4|Decreased fetal movements, second trimester, fetus 4 +C2908678|T033|PT|O36.8124|ICD10CM|Decreased fetal movements, second trimester, fetus 4|Decreased fetal movements, second trimester, fetus 4 +C2908679|T033|AB|O36.8125|ICD10CM|Decreased fetal movements, second trimester, fetus 5|Decreased fetal movements, second trimester, fetus 5 +C2908679|T033|PT|O36.8125|ICD10CM|Decreased fetal movements, second trimester, fetus 5|Decreased fetal movements, second trimester, fetus 5 +C2908680|T033|AB|O36.8129|ICD10CM|Decreased fetal movements, second trimester, other fetus|Decreased fetal movements, second trimester, other fetus +C2908680|T033|PT|O36.8129|ICD10CM|Decreased fetal movements, second trimester, other fetus|Decreased fetal movements, second trimester, other fetus +C2908681|T033|AB|O36.813|ICD10CM|Decreased fetal movements, third trimester|Decreased fetal movements, third trimester +C2908681|T033|HT|O36.813|ICD10CM|Decreased fetal movements, third trimester|Decreased fetal movements, third trimester +C2908682|T033|PT|O36.8130|ICD10CM|Decreased fetal movements, third trimester, not applicable or unspecified|Decreased fetal movements, third trimester, not applicable or unspecified +C2908682|T033|AB|O36.8130|ICD10CM|Decreased fetal movements, third trimester, unsp|Decreased fetal movements, third trimester, unsp +C2908683|T033|AB|O36.8131|ICD10CM|Decreased fetal movements, third trimester, fetus 1|Decreased fetal movements, third trimester, fetus 1 +C2908683|T033|PT|O36.8131|ICD10CM|Decreased fetal movements, third trimester, fetus 1|Decreased fetal movements, third trimester, fetus 1 +C2908684|T033|AB|O36.8132|ICD10CM|Decreased fetal movements, third trimester, fetus 2|Decreased fetal movements, third trimester, fetus 2 +C2908684|T033|PT|O36.8132|ICD10CM|Decreased fetal movements, third trimester, fetus 2|Decreased fetal movements, third trimester, fetus 2 +C2908685|T033|AB|O36.8133|ICD10CM|Decreased fetal movements, third trimester, fetus 3|Decreased fetal movements, third trimester, fetus 3 +C2908685|T033|PT|O36.8133|ICD10CM|Decreased fetal movements, third trimester, fetus 3|Decreased fetal movements, third trimester, fetus 3 +C2908686|T033|AB|O36.8134|ICD10CM|Decreased fetal movements, third trimester, fetus 4|Decreased fetal movements, third trimester, fetus 4 +C2908686|T033|PT|O36.8134|ICD10CM|Decreased fetal movements, third trimester, fetus 4|Decreased fetal movements, third trimester, fetus 4 +C2908687|T033|AB|O36.8135|ICD10CM|Decreased fetal movements, third trimester, fetus 5|Decreased fetal movements, third trimester, fetus 5 +C2908687|T033|PT|O36.8135|ICD10CM|Decreased fetal movements, third trimester, fetus 5|Decreased fetal movements, third trimester, fetus 5 +C2908688|T033|AB|O36.8139|ICD10CM|Decreased fetal movements, third trimester, other fetus|Decreased fetal movements, third trimester, other fetus +C2908688|T033|PT|O36.8139|ICD10CM|Decreased fetal movements, third trimester, other fetus|Decreased fetal movements, third trimester, other fetus +C2908689|T033|AB|O36.819|ICD10CM|Decreased fetal movements, unspecified trimester|Decreased fetal movements, unspecified trimester +C2908689|T033|HT|O36.819|ICD10CM|Decreased fetal movements, unspecified trimester|Decreased fetal movements, unspecified trimester +C0235659|T033|AB|O36.8190|ICD10CM|Decreased fetal movements, unsp trimester, unsp|Decreased fetal movements, unsp trimester, unsp +C0235659|T033|PT|O36.8190|ICD10CM|Decreased fetal movements, unspecified trimester, not applicable or unspecified|Decreased fetal movements, unspecified trimester, not applicable or unspecified +C2908691|T033|AB|O36.8191|ICD10CM|Decreased fetal movements, unspecified trimester, fetus 1|Decreased fetal movements, unspecified trimester, fetus 1 +C2908691|T033|PT|O36.8191|ICD10CM|Decreased fetal movements, unspecified trimester, fetus 1|Decreased fetal movements, unspecified trimester, fetus 1 +C2908692|T033|AB|O36.8192|ICD10CM|Decreased fetal movements, unspecified trimester, fetus 2|Decreased fetal movements, unspecified trimester, fetus 2 +C2908692|T033|PT|O36.8192|ICD10CM|Decreased fetal movements, unspecified trimester, fetus 2|Decreased fetal movements, unspecified trimester, fetus 2 +C2908693|T046|AB|O36.8193|ICD10CM|Decreased fetal movements, unspecified trimester, fetus 3|Decreased fetal movements, unspecified trimester, fetus 3 +C2908693|T046|PT|O36.8193|ICD10CM|Decreased fetal movements, unspecified trimester, fetus 3|Decreased fetal movements, unspecified trimester, fetus 3 +C2908694|T046|AB|O36.8194|ICD10CM|Decreased fetal movements, unspecified trimester, fetus 4|Decreased fetal movements, unspecified trimester, fetus 4 +C2908694|T046|PT|O36.8194|ICD10CM|Decreased fetal movements, unspecified trimester, fetus 4|Decreased fetal movements, unspecified trimester, fetus 4 +C2908695|T046|AB|O36.8195|ICD10CM|Decreased fetal movements, unspecified trimester, fetus 5|Decreased fetal movements, unspecified trimester, fetus 5 +C2908695|T046|PT|O36.8195|ICD10CM|Decreased fetal movements, unspecified trimester, fetus 5|Decreased fetal movements, unspecified trimester, fetus 5 +C2908696|T046|AB|O36.8199|ICD10CM|Decreased fetal movements, unsp trimester, other fetus|Decreased fetal movements, unsp trimester, other fetus +C2908696|T046|PT|O36.8199|ICD10CM|Decreased fetal movements, unspecified trimester, other fetus|Decreased fetal movements, unspecified trimester, other fetus +C2908722|T046|AB|O36.82|ICD10CM|Fetal anemia and thrombocytopenia|Fetal anemia and thrombocytopenia +C2908722|T046|HT|O36.82|ICD10CM|Fetal anemia and thrombocytopenia|Fetal anemia and thrombocytopenia +C2908698|T046|AB|O36.821|ICD10CM|Fetal anemia and thrombocytopenia, first trimester|Fetal anemia and thrombocytopenia, first trimester +C2908698|T046|HT|O36.821|ICD10CM|Fetal anemia and thrombocytopenia, first trimester|Fetal anemia and thrombocytopenia, first trimester +C2908699|T046|PT|O36.8210|ICD10CM|Fetal anemia and thrombocytopenia, first trimester, not applicable or unspecified|Fetal anemia and thrombocytopenia, first trimester, not applicable or unspecified +C2908699|T046|AB|O36.8210|ICD10CM|Fetal anemia and thrombocytopenia, first trimester, unsp|Fetal anemia and thrombocytopenia, first trimester, unsp +C2908700|T046|AB|O36.8211|ICD10CM|Fetal anemia and thrombocytopenia, first trimester, fetus 1|Fetal anemia and thrombocytopenia, first trimester, fetus 1 +C2908700|T046|PT|O36.8211|ICD10CM|Fetal anemia and thrombocytopenia, first trimester, fetus 1|Fetal anemia and thrombocytopenia, first trimester, fetus 1 +C2908701|T046|AB|O36.8212|ICD10CM|Fetal anemia and thrombocytopenia, first trimester, fetus 2|Fetal anemia and thrombocytopenia, first trimester, fetus 2 +C2908701|T046|PT|O36.8212|ICD10CM|Fetal anemia and thrombocytopenia, first trimester, fetus 2|Fetal anemia and thrombocytopenia, first trimester, fetus 2 +C2908702|T046|AB|O36.8213|ICD10CM|Fetal anemia and thrombocytopenia, first trimester, fetus 3|Fetal anemia and thrombocytopenia, first trimester, fetus 3 +C2908702|T046|PT|O36.8213|ICD10CM|Fetal anemia and thrombocytopenia, first trimester, fetus 3|Fetal anemia and thrombocytopenia, first trimester, fetus 3 +C2908703|T046|AB|O36.8214|ICD10CM|Fetal anemia and thrombocytopenia, first trimester, fetus 4|Fetal anemia and thrombocytopenia, first trimester, fetus 4 +C2908703|T046|PT|O36.8214|ICD10CM|Fetal anemia and thrombocytopenia, first trimester, fetus 4|Fetal anemia and thrombocytopenia, first trimester, fetus 4 +C2908704|T046|AB|O36.8215|ICD10CM|Fetal anemia and thrombocytopenia, first trimester, fetus 5|Fetal anemia and thrombocytopenia, first trimester, fetus 5 +C2908704|T046|PT|O36.8215|ICD10CM|Fetal anemia and thrombocytopenia, first trimester, fetus 5|Fetal anemia and thrombocytopenia, first trimester, fetus 5 +C2908705|T046|AB|O36.8219|ICD10CM|Fetal anemia and thrombocytopenia, first trimester, oth|Fetal anemia and thrombocytopenia, first trimester, oth +C2908705|T046|PT|O36.8219|ICD10CM|Fetal anemia and thrombocytopenia, first trimester, other fetus|Fetal anemia and thrombocytopenia, first trimester, other fetus +C2908706|T046|AB|O36.822|ICD10CM|Fetal anemia and thrombocytopenia, second trimester|Fetal anemia and thrombocytopenia, second trimester +C2908706|T046|HT|O36.822|ICD10CM|Fetal anemia and thrombocytopenia, second trimester|Fetal anemia and thrombocytopenia, second trimester +C2908707|T046|PT|O36.8220|ICD10CM|Fetal anemia and thrombocytopenia, second trimester, not applicable or unspecified|Fetal anemia and thrombocytopenia, second trimester, not applicable or unspecified +C2908707|T046|AB|O36.8220|ICD10CM|Fetal anemia and thrombocytopenia, second trimester, unsp|Fetal anemia and thrombocytopenia, second trimester, unsp +C2908708|T046|AB|O36.8221|ICD10CM|Fetal anemia and thrombocytopenia, second trimester, fetus 1|Fetal anemia and thrombocytopenia, second trimester, fetus 1 +C2908708|T046|PT|O36.8221|ICD10CM|Fetal anemia and thrombocytopenia, second trimester, fetus 1|Fetal anemia and thrombocytopenia, second trimester, fetus 1 +C2908709|T046|AB|O36.8222|ICD10CM|Fetal anemia and thrombocytopenia, second trimester, fetus 2|Fetal anemia and thrombocytopenia, second trimester, fetus 2 +C2908709|T046|PT|O36.8222|ICD10CM|Fetal anemia and thrombocytopenia, second trimester, fetus 2|Fetal anemia and thrombocytopenia, second trimester, fetus 2 +C2908710|T046|AB|O36.8223|ICD10CM|Fetal anemia and thrombocytopenia, second trimester, fetus 3|Fetal anemia and thrombocytopenia, second trimester, fetus 3 +C2908710|T046|PT|O36.8223|ICD10CM|Fetal anemia and thrombocytopenia, second trimester, fetus 3|Fetal anemia and thrombocytopenia, second trimester, fetus 3 +C2908711|T046|AB|O36.8224|ICD10CM|Fetal anemia and thrombocytopenia, second trimester, fetus 4|Fetal anemia and thrombocytopenia, second trimester, fetus 4 +C2908711|T046|PT|O36.8224|ICD10CM|Fetal anemia and thrombocytopenia, second trimester, fetus 4|Fetal anemia and thrombocytopenia, second trimester, fetus 4 +C2908712|T046|AB|O36.8225|ICD10CM|Fetal anemia and thrombocytopenia, second trimester, fetus 5|Fetal anemia and thrombocytopenia, second trimester, fetus 5 +C2908712|T046|PT|O36.8225|ICD10CM|Fetal anemia and thrombocytopenia, second trimester, fetus 5|Fetal anemia and thrombocytopenia, second trimester, fetus 5 +C2908713|T046|AB|O36.8229|ICD10CM|Fetal anemia and thrombocytopenia, second trimester, oth|Fetal anemia and thrombocytopenia, second trimester, oth +C2908713|T046|PT|O36.8229|ICD10CM|Fetal anemia and thrombocytopenia, second trimester, other fetus|Fetal anemia and thrombocytopenia, second trimester, other fetus +C2908714|T046|AB|O36.823|ICD10CM|Fetal anemia and thrombocytopenia, third trimester|Fetal anemia and thrombocytopenia, third trimester +C2908714|T046|HT|O36.823|ICD10CM|Fetal anemia and thrombocytopenia, third trimester|Fetal anemia and thrombocytopenia, third trimester +C2908715|T046|PT|O36.8230|ICD10CM|Fetal anemia and thrombocytopenia, third trimester, not applicable or unspecified|Fetal anemia and thrombocytopenia, third trimester, not applicable or unspecified +C2908715|T046|AB|O36.8230|ICD10CM|Fetal anemia and thrombocytopenia, third trimester, unsp|Fetal anemia and thrombocytopenia, third trimester, unsp +C2908716|T046|AB|O36.8231|ICD10CM|Fetal anemia and thrombocytopenia, third trimester, fetus 1|Fetal anemia and thrombocytopenia, third trimester, fetus 1 +C2908716|T046|PT|O36.8231|ICD10CM|Fetal anemia and thrombocytopenia, third trimester, fetus 1|Fetal anemia and thrombocytopenia, third trimester, fetus 1 +C2908717|T046|AB|O36.8232|ICD10CM|Fetal anemia and thrombocytopenia, third trimester, fetus 2|Fetal anemia and thrombocytopenia, third trimester, fetus 2 +C2908717|T046|PT|O36.8232|ICD10CM|Fetal anemia and thrombocytopenia, third trimester, fetus 2|Fetal anemia and thrombocytopenia, third trimester, fetus 2 +C2908718|T046|AB|O36.8233|ICD10CM|Fetal anemia and thrombocytopenia, third trimester, fetus 3|Fetal anemia and thrombocytopenia, third trimester, fetus 3 +C2908718|T046|PT|O36.8233|ICD10CM|Fetal anemia and thrombocytopenia, third trimester, fetus 3|Fetal anemia and thrombocytopenia, third trimester, fetus 3 +C2908719|T046|AB|O36.8234|ICD10CM|Fetal anemia and thrombocytopenia, third trimester, fetus 4|Fetal anemia and thrombocytopenia, third trimester, fetus 4 +C2908719|T046|PT|O36.8234|ICD10CM|Fetal anemia and thrombocytopenia, third trimester, fetus 4|Fetal anemia and thrombocytopenia, third trimester, fetus 4 +C2908720|T046|AB|O36.8235|ICD10CM|Fetal anemia and thrombocytopenia, third trimester, fetus 5|Fetal anemia and thrombocytopenia, third trimester, fetus 5 +C2908720|T046|PT|O36.8235|ICD10CM|Fetal anemia and thrombocytopenia, third trimester, fetus 5|Fetal anemia and thrombocytopenia, third trimester, fetus 5 +C2908721|T046|AB|O36.8239|ICD10CM|Fetal anemia and thrombocytopenia, third trimester, oth|Fetal anemia and thrombocytopenia, third trimester, oth +C2908721|T046|PT|O36.8239|ICD10CM|Fetal anemia and thrombocytopenia, third trimester, other fetus|Fetal anemia and thrombocytopenia, third trimester, other fetus +C2908722|T046|AB|O36.829|ICD10CM|Fetal anemia and thrombocytopenia, unspecified trimester|Fetal anemia and thrombocytopenia, unspecified trimester +C2908722|T046|HT|O36.829|ICD10CM|Fetal anemia and thrombocytopenia, unspecified trimester|Fetal anemia and thrombocytopenia, unspecified trimester +C2908722|T046|AB|O36.8290|ICD10CM|Fetal anemia and thrombocytopenia, unsp trimester, unsp|Fetal anemia and thrombocytopenia, unsp trimester, unsp +C2908722|T046|PT|O36.8290|ICD10CM|Fetal anemia and thrombocytopenia, unspecified trimester, not applicable or unspecified|Fetal anemia and thrombocytopenia, unspecified trimester, not applicable or unspecified +C2908723|T046|AB|O36.8291|ICD10CM|Fetal anemia and thrombocytopenia, unsp trimester, fetus 1|Fetal anemia and thrombocytopenia, unsp trimester, fetus 1 +C2908723|T046|PT|O36.8291|ICD10CM|Fetal anemia and thrombocytopenia, unspecified trimester, fetus 1|Fetal anemia and thrombocytopenia, unspecified trimester, fetus 1 +C2908724|T046|AB|O36.8292|ICD10CM|Fetal anemia and thrombocytopenia, unsp trimester, fetus 2|Fetal anemia and thrombocytopenia, unsp trimester, fetus 2 +C2908724|T046|PT|O36.8292|ICD10CM|Fetal anemia and thrombocytopenia, unspecified trimester, fetus 2|Fetal anemia and thrombocytopenia, unspecified trimester, fetus 2 +C2908725|T046|AB|O36.8293|ICD10CM|Fetal anemia and thrombocytopenia, unsp trimester, fetus 3|Fetal anemia and thrombocytopenia, unsp trimester, fetus 3 +C2908725|T046|PT|O36.8293|ICD10CM|Fetal anemia and thrombocytopenia, unspecified trimester, fetus 3|Fetal anemia and thrombocytopenia, unspecified trimester, fetus 3 +C2908726|T046|AB|O36.8294|ICD10CM|Fetal anemia and thrombocytopenia, unsp trimester, fetus 4|Fetal anemia and thrombocytopenia, unsp trimester, fetus 4 +C2908726|T046|PT|O36.8294|ICD10CM|Fetal anemia and thrombocytopenia, unspecified trimester, fetus 4|Fetal anemia and thrombocytopenia, unspecified trimester, fetus 4 +C2908727|T046|AB|O36.8295|ICD10CM|Fetal anemia and thrombocytopenia, unsp trimester, fetus 5|Fetal anemia and thrombocytopenia, unsp trimester, fetus 5 +C2908727|T046|PT|O36.8295|ICD10CM|Fetal anemia and thrombocytopenia, unspecified trimester, fetus 5|Fetal anemia and thrombocytopenia, unspecified trimester, fetus 5 +C2908728|T046|AB|O36.8299|ICD10CM|Fetal anemia and thrombocytopenia, unsp trimester, oth fetus|Fetal anemia and thrombocytopenia, unsp trimester, oth fetus +C2908728|T046|PT|O36.8299|ICD10CM|Fetal anemia and thrombocytopenia, unspecified trimester, other fetus|Fetal anemia and thrombocytopenia, unspecified trimester, other fetus +C4509388|T046|AB|O36.83|ICD10CM|Maternal care for abnlt of the fetal heart rate or rhythm|Maternal care for abnlt of the fetal heart rate or rhythm +C4509388|T046|HT|O36.83|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm|Maternal care for abnormalities of the fetal heart rate or rhythm +C5141156|T046|ET|O36.83|ICD10CM|Maternal care for depressed fetal heart rate tones|Maternal care for depressed fetal heart rate tones +C5141157|T046|ET|O36.83|ICD10CM|Maternal care for fetal bradycardia|Maternal care for fetal bradycardia +C5141158|T046|ET|O36.83|ICD10CM|Maternal care for fetal heart rate abnormal variability|Maternal care for fetal heart rate abnormal variability +C5141159|T046|ET|O36.83|ICD10CM|Maternal care for fetal heart rate decelerations|Maternal care for fetal heart rate decelerations +C5141160|T046|ET|O36.83|ICD10CM|Maternal care for fetal heart rate irregularity|Maternal care for fetal heart rate irregularity +C5141161|T046|ET|O36.83|ICD10CM|Maternal care for fetal tachycardia|Maternal care for fetal tachycardia +C5141162|T046|ET|O36.83|ICD10CM|Maternal care for non-reassuring fetal heart rate or rhythm|Maternal care for non-reassuring fetal heart rate or rhythm +C4509389|T046|AB|O36.831|ICD10CM|Matern care for abnlt of fetal heart rate or rhym, first tri|Matern care for abnlt of fetal heart rate or rhym, first tri +C4509389|T046|HT|O36.831|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester|Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester +C4509390|T046|AB|O36.8310|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, 1st tri, unsp|Matern care for abnlt fetl hrt rate or rhym, 1st tri, unsp +C4509391|T046|AB|O36.8311|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, 1st tri, fts1|Matern care for abnlt fetl hrt rate or rhym, 1st tri, fts1 +C4509391|T046|PT|O36.8311|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 1|Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 1 +C4509392|T046|AB|O36.8312|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, 1st tri, fts2|Matern care for abnlt fetl hrt rate or rhym, 1st tri, fts2 +C4509392|T046|PT|O36.8312|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 2|Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 2 +C4509393|T046|AB|O36.8313|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, 1st tri, fts3|Matern care for abnlt fetl hrt rate or rhym, 1st tri, fts3 +C4509393|T046|PT|O36.8313|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 3|Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 3 +C4509394|T046|AB|O36.8314|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, 1st tri, fts4|Matern care for abnlt fetl hrt rate or rhym, 1st tri, fts4 +C4509394|T046|PT|O36.8314|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 4|Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 4 +C4509395|T046|AB|O36.8315|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, 1st tri, fts5|Matern care for abnlt fetl hrt rate or rhym, 1st tri, fts5 +C4509395|T046|PT|O36.8315|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 5|Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 5 +C4509396|T046|AB|O36.8319|ICD10CM|Matern care for abnlt of fetl hrt rate or rhym, 1st tri, oth|Matern care for abnlt of fetl hrt rate or rhym, 1st tri, oth +C4509396|T046|PT|O36.8319|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, other fetus|Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, other fetus +C4509397|T046|AB|O36.832|ICD10CM|Matern care for abnlt of fetal heart rate or rhym, 2nd tri|Matern care for abnlt of fetal heart rate or rhym, 2nd tri +C4509397|T046|HT|O36.832|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester|Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester +C4509398|T046|AB|O36.8320|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, 2nd tri, unsp|Matern care for abnlt fetl hrt rate or rhym, 2nd tri, unsp +C4509399|T046|AB|O36.8321|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, 2nd tri, fts1|Matern care for abnlt fetl hrt rate or rhym, 2nd tri, fts1 +C4509399|T046|PT|O36.8321|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 1|Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 1 +C4509400|T046|AB|O36.8322|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, 2nd tri, fts2|Matern care for abnlt fetl hrt rate or rhym, 2nd tri, fts2 +C4509400|T046|PT|O36.8322|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 2|Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 2 +C4509401|T046|AB|O36.8323|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, 2nd tri, fts3|Matern care for abnlt fetl hrt rate or rhym, 2nd tri, fts3 +C4509401|T046|PT|O36.8323|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 3|Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 3 +C4509402|T046|AB|O36.8324|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, 2nd tri, fts4|Matern care for abnlt fetl hrt rate or rhym, 2nd tri, fts4 +C4509402|T046|PT|O36.8324|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 4|Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 4 +C4509403|T046|AB|O36.8325|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, 2nd tri, fts5|Matern care for abnlt fetl hrt rate or rhym, 2nd tri, fts5 +C4509403|T046|PT|O36.8325|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 5|Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 5 +C4509404|T046|AB|O36.8329|ICD10CM|Matern care for abnlt of fetl hrt rate or rhym, 2nd tri, oth|Matern care for abnlt of fetl hrt rate or rhym, 2nd tri, oth +C4509404|T046|PT|O36.8329|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, other fetus|Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, other fetus +C4509405|T046|AB|O36.833|ICD10CM|Matern care for abnlt of fetal heart rate or rhym, third tri|Matern care for abnlt of fetal heart rate or rhym, third tri +C4509405|T046|HT|O36.833|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester|Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester +C4509406|T046|AB|O36.8330|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, 3rd tri, unsp|Matern care for abnlt fetl hrt rate or rhym, 3rd tri, unsp +C4509407|T046|AB|O36.8331|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, 3rd tri, fts1|Matern care for abnlt fetl hrt rate or rhym, 3rd tri, fts1 +C4509407|T046|PT|O36.8331|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 1|Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 1 +C4509408|T046|AB|O36.8332|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, 3rd tri, fts2|Matern care for abnlt fetl hrt rate or rhym, 3rd tri, fts2 +C4509408|T046|PT|O36.8332|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 2|Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 2 +C4509409|T046|AB|O36.8333|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, 3rd tri, fts3|Matern care for abnlt fetl hrt rate or rhym, 3rd tri, fts3 +C4509409|T046|PT|O36.8333|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 3|Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 3 +C4509410|T046|AB|O36.8334|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, 3rd tri, fts4|Matern care for abnlt fetl hrt rate or rhym, 3rd tri, fts4 +C4509410|T046|PT|O36.8334|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 4|Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 4 +C4509411|T046|AB|O36.8335|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, 3rd tri, fts5|Matern care for abnlt fetl hrt rate or rhym, 3rd tri, fts5 +C4509411|T046|PT|O36.8335|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 5|Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 5 +C4509412|T046|AB|O36.8339|ICD10CM|Matern care for abnlt of fetl hrt rate or rhym, 3rd tri, oth|Matern care for abnlt of fetl hrt rate or rhym, 3rd tri, oth +C4509412|T046|PT|O36.8339|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, other fetus|Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, other fetus +C4509413|T046|AB|O36.839|ICD10CM|Matern care for abnlt of fetal heart rate or rhym, unsp tri|Matern care for abnlt of fetal heart rate or rhym, unsp tri +C4509413|T046|HT|O36.839|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester|Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester +C4509414|T046|AB|O36.8390|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, unsp tri, unsp|Matern care for abnlt fetl hrt rate or rhym, unsp tri, unsp +C4509415|T046|AB|O36.8391|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, unsp tri, fts1|Matern care for abnlt fetl hrt rate or rhym, unsp tri, fts1 +C4509415|T046|PT|O36.8391|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 1|Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 1 +C4509416|T046|AB|O36.8392|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, unsp tri, fts2|Matern care for abnlt fetl hrt rate or rhym, unsp tri, fts2 +C4509416|T046|PT|O36.8392|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 2|Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 2 +C4509417|T046|AB|O36.8393|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, unsp tri, fts3|Matern care for abnlt fetl hrt rate or rhym, unsp tri, fts3 +C4509417|T046|PT|O36.8393|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 3|Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 3 +C4509418|T046|AB|O36.8394|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, unsp tri, fts4|Matern care for abnlt fetl hrt rate or rhym, unsp tri, fts4 +C4509418|T046|PT|O36.8394|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 4|Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 4 +C4509419|T046|AB|O36.8395|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, unsp tri, fts5|Matern care for abnlt fetl hrt rate or rhym, unsp tri, fts5 +C4509419|T046|PT|O36.8395|ICD10CM|Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 5|Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 5 +C4509420|T046|AB|O36.8399|ICD10CM|Matern care for abnlt fetl hrt rate or rhym, unsp tri, oth|Matern care for abnlt fetl hrt rate or rhym, unsp tri, oth +C0495240|T046|HT|O36.89|ICD10CM|Maternal care for other specified fetal problems|Maternal care for other specified fetal problems +C0495240|T046|AB|O36.89|ICD10CM|Maternal care for other specified fetal problems|Maternal care for other specified fetal problems +C2908729|T046|AB|O36.891|ICD10CM|Maternal care for oth fetal problems, first trimester|Maternal care for oth fetal problems, first trimester +C2908729|T046|HT|O36.891|ICD10CM|Maternal care for other specified fetal problems, first trimester|Maternal care for other specified fetal problems, first trimester +C2908730|T046|AB|O36.8910|ICD10CM|Maternal care for oth fetal problems, first trimester, unsp|Maternal care for oth fetal problems, first trimester, unsp +C2908730|T046|PT|O36.8910|ICD10CM|Maternal care for other specified fetal problems, first trimester, not applicable or unspecified|Maternal care for other specified fetal problems, first trimester, not applicable or unspecified +C2908731|T046|AB|O36.8911|ICD10CM|Maternal care for oth fetal problems, first tri, fetus 1|Maternal care for oth fetal problems, first tri, fetus 1 +C2908731|T046|PT|O36.8911|ICD10CM|Maternal care for other specified fetal problems, first trimester, fetus 1|Maternal care for other specified fetal problems, first trimester, fetus 1 +C2908732|T046|AB|O36.8912|ICD10CM|Maternal care for oth fetal problems, first tri, fetus 2|Maternal care for oth fetal problems, first tri, fetus 2 +C2908732|T046|PT|O36.8912|ICD10CM|Maternal care for other specified fetal problems, first trimester, fetus 2|Maternal care for other specified fetal problems, first trimester, fetus 2 +C2908733|T046|AB|O36.8913|ICD10CM|Maternal care for oth fetal problems, first tri, fetus 3|Maternal care for oth fetal problems, first tri, fetus 3 +C2908733|T046|PT|O36.8913|ICD10CM|Maternal care for other specified fetal problems, first trimester, fetus 3|Maternal care for other specified fetal problems, first trimester, fetus 3 +C2908734|T046|AB|O36.8914|ICD10CM|Maternal care for oth fetal problems, first tri, fetus 4|Maternal care for oth fetal problems, first tri, fetus 4 +C2908734|T046|PT|O36.8914|ICD10CM|Maternal care for other specified fetal problems, first trimester, fetus 4|Maternal care for other specified fetal problems, first trimester, fetus 4 +C2908735|T046|AB|O36.8915|ICD10CM|Maternal care for oth fetal problems, first tri, fetus 5|Maternal care for oth fetal problems, first tri, fetus 5 +C2908735|T046|PT|O36.8915|ICD10CM|Maternal care for other specified fetal problems, first trimester, fetus 5|Maternal care for other specified fetal problems, first trimester, fetus 5 +C2908736|T046|AB|O36.8919|ICD10CM|Maternal care for oth fetal problems, first trimester, oth|Maternal care for oth fetal problems, first trimester, oth +C2908736|T046|PT|O36.8919|ICD10CM|Maternal care for other specified fetal problems, first trimester, other fetus|Maternal care for other specified fetal problems, first trimester, other fetus +C2908737|T046|AB|O36.892|ICD10CM|Maternal care for oth fetal problems, second trimester|Maternal care for oth fetal problems, second trimester +C2908737|T046|HT|O36.892|ICD10CM|Maternal care for other specified fetal problems, second trimester|Maternal care for other specified fetal problems, second trimester +C2908738|T046|AB|O36.8920|ICD10CM|Maternal care for oth fetal problems, second trimester, unsp|Maternal care for oth fetal problems, second trimester, unsp +C2908738|T046|PT|O36.8920|ICD10CM|Maternal care for other specified fetal problems, second trimester, not applicable or unspecified|Maternal care for other specified fetal problems, second trimester, not applicable or unspecified +C2908739|T046|AB|O36.8921|ICD10CM|Maternal care for oth fetal problems, second tri, fetus 1|Maternal care for oth fetal problems, second tri, fetus 1 +C2908739|T046|PT|O36.8921|ICD10CM|Maternal care for other specified fetal problems, second trimester, fetus 1|Maternal care for other specified fetal problems, second trimester, fetus 1 +C2908740|T046|AB|O36.8922|ICD10CM|Maternal care for oth fetal problems, second tri, fetus 2|Maternal care for oth fetal problems, second tri, fetus 2 +C2908740|T046|PT|O36.8922|ICD10CM|Maternal care for other specified fetal problems, second trimester, fetus 2|Maternal care for other specified fetal problems, second trimester, fetus 2 +C2908741|T046|AB|O36.8923|ICD10CM|Maternal care for oth fetal problems, second tri, fetus 3|Maternal care for oth fetal problems, second tri, fetus 3 +C2908741|T046|PT|O36.8923|ICD10CM|Maternal care for other specified fetal problems, second trimester, fetus 3|Maternal care for other specified fetal problems, second trimester, fetus 3 +C2908742|T046|AB|O36.8924|ICD10CM|Maternal care for oth fetal problems, second tri, fetus 4|Maternal care for oth fetal problems, second tri, fetus 4 +C2908742|T046|PT|O36.8924|ICD10CM|Maternal care for other specified fetal problems, second trimester, fetus 4|Maternal care for other specified fetal problems, second trimester, fetus 4 +C2908743|T046|AB|O36.8925|ICD10CM|Maternal care for oth fetal problems, second tri, fetus 5|Maternal care for oth fetal problems, second tri, fetus 5 +C2908743|T046|PT|O36.8925|ICD10CM|Maternal care for other specified fetal problems, second trimester, fetus 5|Maternal care for other specified fetal problems, second trimester, fetus 5 +C2908744|T046|AB|O36.8929|ICD10CM|Maternal care for oth fetal problems, second trimester, oth|Maternal care for oth fetal problems, second trimester, oth +C2908744|T046|PT|O36.8929|ICD10CM|Maternal care for other specified fetal problems, second trimester, other fetus|Maternal care for other specified fetal problems, second trimester, other fetus +C2908745|T046|AB|O36.893|ICD10CM|Maternal care for oth fetal problems, third trimester|Maternal care for oth fetal problems, third trimester +C2908745|T046|HT|O36.893|ICD10CM|Maternal care for other specified fetal problems, third trimester|Maternal care for other specified fetal problems, third trimester +C2908746|T046|AB|O36.8930|ICD10CM|Maternal care for oth fetal problems, third trimester, unsp|Maternal care for oth fetal problems, third trimester, unsp +C2908746|T046|PT|O36.8930|ICD10CM|Maternal care for other specified fetal problems, third trimester, not applicable or unspecified|Maternal care for other specified fetal problems, third trimester, not applicable or unspecified +C2908747|T046|AB|O36.8931|ICD10CM|Maternal care for oth fetal problems, third tri, fetus 1|Maternal care for oth fetal problems, third tri, fetus 1 +C2908747|T046|PT|O36.8931|ICD10CM|Maternal care for other specified fetal problems, third trimester, fetus 1|Maternal care for other specified fetal problems, third trimester, fetus 1 +C2908748|T046|AB|O36.8932|ICD10CM|Maternal care for oth fetal problems, third tri, fetus 2|Maternal care for oth fetal problems, third tri, fetus 2 +C2908748|T046|PT|O36.8932|ICD10CM|Maternal care for other specified fetal problems, third trimester, fetus 2|Maternal care for other specified fetal problems, third trimester, fetus 2 +C2908749|T046|AB|O36.8933|ICD10CM|Maternal care for oth fetal problems, third tri, fetus 3|Maternal care for oth fetal problems, third tri, fetus 3 +C2908749|T046|PT|O36.8933|ICD10CM|Maternal care for other specified fetal problems, third trimester, fetus 3|Maternal care for other specified fetal problems, third trimester, fetus 3 +C2908750|T046|AB|O36.8934|ICD10CM|Maternal care for oth fetal problems, third tri, fetus 4|Maternal care for oth fetal problems, third tri, fetus 4 +C2908750|T046|PT|O36.8934|ICD10CM|Maternal care for other specified fetal problems, third trimester, fetus 4|Maternal care for other specified fetal problems, third trimester, fetus 4 +C2908751|T046|AB|O36.8935|ICD10CM|Maternal care for oth fetal problems, third tri, fetus 5|Maternal care for oth fetal problems, third tri, fetus 5 +C2908751|T046|PT|O36.8935|ICD10CM|Maternal care for other specified fetal problems, third trimester, fetus 5|Maternal care for other specified fetal problems, third trimester, fetus 5 +C2908752|T046|AB|O36.8939|ICD10CM|Maternal care for oth fetal problems, third trimester, oth|Maternal care for oth fetal problems, third trimester, oth +C2908752|T046|PT|O36.8939|ICD10CM|Maternal care for other specified fetal problems, third trimester, other fetus|Maternal care for other specified fetal problems, third trimester, other fetus +C0495240|T046|AB|O36.899|ICD10CM|Maternal care for oth fetal problems, unspecified trimester|Maternal care for oth fetal problems, unspecified trimester +C0495240|T046|HT|O36.899|ICD10CM|Maternal care for other specified fetal problems, unspecified trimester|Maternal care for other specified fetal problems, unspecified trimester +C0495240|T046|AB|O36.8990|ICD10CM|Maternal care for oth fetal problems, unsp trimester, unsp|Maternal care for oth fetal problems, unsp trimester, unsp +C2908754|T046|AB|O36.8991|ICD10CM|Maternal care for oth fetal problems, unsp tri, fetus 1|Maternal care for oth fetal problems, unsp tri, fetus 1 +C2908754|T046|PT|O36.8991|ICD10CM|Maternal care for other specified fetal problems, unspecified trimester, fetus 1|Maternal care for other specified fetal problems, unspecified trimester, fetus 1 +C2908755|T046|AB|O36.8992|ICD10CM|Maternal care for oth fetal problems, unsp tri, fetus 2|Maternal care for oth fetal problems, unsp tri, fetus 2 +C2908755|T046|PT|O36.8992|ICD10CM|Maternal care for other specified fetal problems, unspecified trimester, fetus 2|Maternal care for other specified fetal problems, unspecified trimester, fetus 2 +C2908756|T046|AB|O36.8993|ICD10CM|Maternal care for oth fetal problems, unsp tri, fetus 3|Maternal care for oth fetal problems, unsp tri, fetus 3 +C2908756|T046|PT|O36.8993|ICD10CM|Maternal care for other specified fetal problems, unspecified trimester, fetus 3|Maternal care for other specified fetal problems, unspecified trimester, fetus 3 +C2908757|T046|AB|O36.8994|ICD10CM|Maternal care for oth fetal problems, unsp tri, fetus 4|Maternal care for oth fetal problems, unsp tri, fetus 4 +C2908757|T046|PT|O36.8994|ICD10CM|Maternal care for other specified fetal problems, unspecified trimester, fetus 4|Maternal care for other specified fetal problems, unspecified trimester, fetus 4 +C2908758|T046|AB|O36.8995|ICD10CM|Maternal care for oth fetal problems, unsp tri, fetus 5|Maternal care for oth fetal problems, unsp tri, fetus 5 +C2908758|T046|PT|O36.8995|ICD10CM|Maternal care for other specified fetal problems, unspecified trimester, fetus 5|Maternal care for other specified fetal problems, unspecified trimester, fetus 5 +C2908759|T046|AB|O36.8999|ICD10CM|Maternal care for oth fetal problems, unsp trimester, oth|Maternal care for oth fetal problems, unsp trimester, oth +C2908759|T046|PT|O36.8999|ICD10CM|Maternal care for other specified fetal problems, unspecified trimester, other fetus|Maternal care for other specified fetal problems, unspecified trimester, other fetus +C0495241|T046|HT|O36.9|ICD10CM|Maternal care for fetal problem, unspecified|Maternal care for fetal problem, unspecified +C0495241|T046|AB|O36.9|ICD10CM|Maternal care for fetal problem, unspecified|Maternal care for fetal problem, unspecified +C0495241|T046|PT|O36.9|ICD10|Maternal care for fetal problem, unspecified|Maternal care for fetal problem, unspecified +C2908760|T046|AB|O36.90|ICD10CM|Maternal care for fetal problem, unsp, unspecified trimester|Maternal care for fetal problem, unsp, unspecified trimester +C2908760|T046|HT|O36.90|ICD10CM|Maternal care for fetal problem, unspecified, unspecified trimester|Maternal care for fetal problem, unspecified, unspecified trimester +C2908761|T046|AB|O36.90X0|ICD10CM|Maternal care for fetal problem, unsp, unsp trimester, unsp|Maternal care for fetal problem, unsp, unsp trimester, unsp +C2908761|T046|PT|O36.90X0|ICD10CM|Maternal care for fetal problem, unspecified, unspecified trimester, not applicable or unspecified|Maternal care for fetal problem, unspecified, unspecified trimester, not applicable or unspecified +C2908762|T046|AB|O36.90X1|ICD10CM|Maternal care for fetal problem, unsp, unsp tri, fetus 1|Maternal care for fetal problem, unsp, unsp tri, fetus 1 +C2908762|T046|PT|O36.90X1|ICD10CM|Maternal care for fetal problem, unspecified, unspecified trimester, fetus 1|Maternal care for fetal problem, unspecified, unspecified trimester, fetus 1 +C2908763|T046|AB|O36.90X2|ICD10CM|Maternal care for fetal problem, unsp, unsp tri, fetus 2|Maternal care for fetal problem, unsp, unsp tri, fetus 2 +C2908763|T046|PT|O36.90X2|ICD10CM|Maternal care for fetal problem, unspecified, unspecified trimester, fetus 2|Maternal care for fetal problem, unspecified, unspecified trimester, fetus 2 +C2908764|T046|AB|O36.90X3|ICD10CM|Maternal care for fetal problem, unsp, unsp tri, fetus 3|Maternal care for fetal problem, unsp, unsp tri, fetus 3 +C2908764|T046|PT|O36.90X3|ICD10CM|Maternal care for fetal problem, unspecified, unspecified trimester, fetus 3|Maternal care for fetal problem, unspecified, unspecified trimester, fetus 3 +C2908765|T046|AB|O36.90X4|ICD10CM|Maternal care for fetal problem, unsp, unsp tri, fetus 4|Maternal care for fetal problem, unsp, unsp tri, fetus 4 +C2908765|T046|PT|O36.90X4|ICD10CM|Maternal care for fetal problem, unspecified, unspecified trimester, fetus 4|Maternal care for fetal problem, unspecified, unspecified trimester, fetus 4 +C2908766|T046|AB|O36.90X5|ICD10CM|Maternal care for fetal problem, unsp, unsp tri, fetus 5|Maternal care for fetal problem, unsp, unsp tri, fetus 5 +C2908766|T046|PT|O36.90X5|ICD10CM|Maternal care for fetal problem, unspecified, unspecified trimester, fetus 5|Maternal care for fetal problem, unspecified, unspecified trimester, fetus 5 +C2908767|T046|AB|O36.90X9|ICD10CM|Maternal care for fetal problem, unsp, unsp trimester, oth|Maternal care for fetal problem, unsp, unsp trimester, oth +C2908767|T046|PT|O36.90X9|ICD10CM|Maternal care for fetal problem, unspecified, unspecified trimester, other fetus|Maternal care for fetal problem, unspecified, unspecified trimester, other fetus +C2908768|T046|AB|O36.91|ICD10CM|Maternal care for fetal problem, unsp, first trimester|Maternal care for fetal problem, unsp, first trimester +C2908768|T046|HT|O36.91|ICD10CM|Maternal care for fetal problem, unspecified, first trimester|Maternal care for fetal problem, unspecified, first trimester +C2908769|T046|AB|O36.91X0|ICD10CM|Maternal care for fetal problem, unsp, first trimester, unsp|Maternal care for fetal problem, unsp, first trimester, unsp +C2908769|T046|PT|O36.91X0|ICD10CM|Maternal care for fetal problem, unspecified, first trimester, not applicable or unspecified|Maternal care for fetal problem, unspecified, first trimester, not applicable or unspecified +C2908770|T046|AB|O36.91X1|ICD10CM|Maternal care for fetal problem, unsp, first tri, fetus 1|Maternal care for fetal problem, unsp, first tri, fetus 1 +C2908770|T046|PT|O36.91X1|ICD10CM|Maternal care for fetal problem, unspecified, first trimester, fetus 1|Maternal care for fetal problem, unspecified, first trimester, fetus 1 +C2908771|T046|AB|O36.91X2|ICD10CM|Maternal care for fetal problem, unsp, first tri, fetus 2|Maternal care for fetal problem, unsp, first tri, fetus 2 +C2908771|T046|PT|O36.91X2|ICD10CM|Maternal care for fetal problem, unspecified, first trimester, fetus 2|Maternal care for fetal problem, unspecified, first trimester, fetus 2 +C2908772|T046|AB|O36.91X3|ICD10CM|Maternal care for fetal problem, unsp, first tri, fetus 3|Maternal care for fetal problem, unsp, first tri, fetus 3 +C2908772|T046|PT|O36.91X3|ICD10CM|Maternal care for fetal problem, unspecified, first trimester, fetus 3|Maternal care for fetal problem, unspecified, first trimester, fetus 3 +C2908773|T046|AB|O36.91X4|ICD10CM|Maternal care for fetal problem, unsp, first tri, fetus 4|Maternal care for fetal problem, unsp, first tri, fetus 4 +C2908773|T046|PT|O36.91X4|ICD10CM|Maternal care for fetal problem, unspecified, first trimester, fetus 4|Maternal care for fetal problem, unspecified, first trimester, fetus 4 +C2908774|T046|AB|O36.91X5|ICD10CM|Maternal care for fetal problem, unsp, first tri, fetus 5|Maternal care for fetal problem, unsp, first tri, fetus 5 +C2908774|T046|PT|O36.91X5|ICD10CM|Maternal care for fetal problem, unspecified, first trimester, fetus 5|Maternal care for fetal problem, unspecified, first trimester, fetus 5 +C2908775|T046|AB|O36.91X9|ICD10CM|Maternal care for fetal problem, unsp, first trimester, oth|Maternal care for fetal problem, unsp, first trimester, oth +C2908775|T046|PT|O36.91X9|ICD10CM|Maternal care for fetal problem, unspecified, first trimester, other fetus|Maternal care for fetal problem, unspecified, first trimester, other fetus +C2908776|T046|AB|O36.92|ICD10CM|Maternal care for fetal problem, unsp, second trimester|Maternal care for fetal problem, unsp, second trimester +C2908776|T046|HT|O36.92|ICD10CM|Maternal care for fetal problem, unspecified, second trimester|Maternal care for fetal problem, unspecified, second trimester +C2908777|T046|AB|O36.92X0|ICD10CM|Maternal care for fetal problem, unsp, second tri, unsp|Maternal care for fetal problem, unsp, second tri, unsp +C2908777|T046|PT|O36.92X0|ICD10CM|Maternal care for fetal problem, unspecified, second trimester, not applicable or unspecified|Maternal care for fetal problem, unspecified, second trimester, not applicable or unspecified +C2908778|T046|AB|O36.92X1|ICD10CM|Maternal care for fetal problem, unsp, second tri, fetus 1|Maternal care for fetal problem, unsp, second tri, fetus 1 +C2908778|T046|PT|O36.92X1|ICD10CM|Maternal care for fetal problem, unspecified, second trimester, fetus 1|Maternal care for fetal problem, unspecified, second trimester, fetus 1 +C2908779|T046|AB|O36.92X2|ICD10CM|Maternal care for fetal problem, unsp, second tri, fetus 2|Maternal care for fetal problem, unsp, second tri, fetus 2 +C2908779|T046|PT|O36.92X2|ICD10CM|Maternal care for fetal problem, unspecified, second trimester, fetus 2|Maternal care for fetal problem, unspecified, second trimester, fetus 2 +C2908780|T046|AB|O36.92X3|ICD10CM|Maternal care for fetal problem, unsp, second tri, fetus 3|Maternal care for fetal problem, unsp, second tri, fetus 3 +C2908780|T046|PT|O36.92X3|ICD10CM|Maternal care for fetal problem, unspecified, second trimester, fetus 3|Maternal care for fetal problem, unspecified, second trimester, fetus 3 +C2908781|T046|AB|O36.92X4|ICD10CM|Maternal care for fetal problem, unsp, second tri, fetus 4|Maternal care for fetal problem, unsp, second tri, fetus 4 +C2908781|T046|PT|O36.92X4|ICD10CM|Maternal care for fetal problem, unspecified, second trimester, fetus 4|Maternal care for fetal problem, unspecified, second trimester, fetus 4 +C2908782|T046|AB|O36.92X5|ICD10CM|Maternal care for fetal problem, unsp, second tri, fetus 5|Maternal care for fetal problem, unsp, second tri, fetus 5 +C2908782|T046|PT|O36.92X5|ICD10CM|Maternal care for fetal problem, unspecified, second trimester, fetus 5|Maternal care for fetal problem, unspecified, second trimester, fetus 5 +C2908783|T046|AB|O36.92X9|ICD10CM|Maternal care for fetal problem, unsp, second trimester, oth|Maternal care for fetal problem, unsp, second trimester, oth +C2908783|T046|PT|O36.92X9|ICD10CM|Maternal care for fetal problem, unspecified, second trimester, other fetus|Maternal care for fetal problem, unspecified, second trimester, other fetus +C2908784|T046|AB|O36.93|ICD10CM|Maternal care for fetal problem, unsp, third trimester|Maternal care for fetal problem, unsp, third trimester +C2908784|T046|HT|O36.93|ICD10CM|Maternal care for fetal problem, unspecified, third trimester|Maternal care for fetal problem, unspecified, third trimester +C2908785|T046|AB|O36.93X0|ICD10CM|Maternal care for fetal problem, unsp, third trimester, unsp|Maternal care for fetal problem, unsp, third trimester, unsp +C2908785|T046|PT|O36.93X0|ICD10CM|Maternal care for fetal problem, unspecified, third trimester, not applicable or unspecified|Maternal care for fetal problem, unspecified, third trimester, not applicable or unspecified +C2908786|T046|AB|O36.93X1|ICD10CM|Maternal care for fetal problem, unsp, third tri, fetus 1|Maternal care for fetal problem, unsp, third tri, fetus 1 +C2908786|T046|PT|O36.93X1|ICD10CM|Maternal care for fetal problem, unspecified, third trimester, fetus 1|Maternal care for fetal problem, unspecified, third trimester, fetus 1 +C2908787|T046|AB|O36.93X2|ICD10CM|Maternal care for fetal problem, unsp, third tri, fetus 2|Maternal care for fetal problem, unsp, third tri, fetus 2 +C2908787|T046|PT|O36.93X2|ICD10CM|Maternal care for fetal problem, unspecified, third trimester, fetus 2|Maternal care for fetal problem, unspecified, third trimester, fetus 2 +C2908788|T046|AB|O36.93X3|ICD10CM|Maternal care for fetal problem, unsp, third tri, fetus 3|Maternal care for fetal problem, unsp, third tri, fetus 3 +C2908788|T046|PT|O36.93X3|ICD10CM|Maternal care for fetal problem, unspecified, third trimester, fetus 3|Maternal care for fetal problem, unspecified, third trimester, fetus 3 +C2908789|T046|AB|O36.93X4|ICD10CM|Maternal care for fetal problem, unsp, third tri, fetus 4|Maternal care for fetal problem, unsp, third tri, fetus 4 +C2908789|T046|PT|O36.93X4|ICD10CM|Maternal care for fetal problem, unspecified, third trimester, fetus 4|Maternal care for fetal problem, unspecified, third trimester, fetus 4 +C2908790|T046|AB|O36.93X5|ICD10CM|Maternal care for fetal problem, unsp, third tri, fetus 5|Maternal care for fetal problem, unsp, third tri, fetus 5 +C2908790|T046|PT|O36.93X5|ICD10CM|Maternal care for fetal problem, unspecified, third trimester, fetus 5|Maternal care for fetal problem, unspecified, third trimester, fetus 5 +C2908791|T046|AB|O36.93X9|ICD10CM|Maternal care for fetal problem, unsp, third trimester, oth|Maternal care for fetal problem, unsp, third trimester, oth +C2908791|T046|PT|O36.93X9|ICD10CM|Maternal care for fetal problem, unspecified, third trimester, other fetus|Maternal care for fetal problem, unspecified, third trimester, other fetus +C0020224|T046|ET|O40|ICD10CM|hydramnios|hydramnios +C0020224|T046|AB|O40|ICD10CM|Polyhydramnios|Polyhydramnios +C0020224|T046|HT|O40|ICD10CM|Polyhydramnios|Polyhydramnios +C0020224|T046|PT|O40|ICD10|Polyhydramnios|Polyhydramnios +C2908792|T046|AB|O40.1|ICD10CM|Polyhydramnios, first trimester|Polyhydramnios, first trimester +C2908792|T046|HT|O40.1|ICD10CM|Polyhydramnios, first trimester|Polyhydramnios, first trimester +C2908793|T046|AB|O40.1XX0|ICD10CM|Polyhydramnios, first trimester, not applicable or unsp|Polyhydramnios, first trimester, not applicable or unsp +C2908793|T046|PT|O40.1XX0|ICD10CM|Polyhydramnios, first trimester, not applicable or unspecified|Polyhydramnios, first trimester, not applicable or unspecified +C2908794|T046|PT|O40.1XX1|ICD10CM|Polyhydramnios, first trimester, fetus 1|Polyhydramnios, first trimester, fetus 1 +C2908794|T046|AB|O40.1XX1|ICD10CM|Polyhydramnios, first trimester, fetus 1|Polyhydramnios, first trimester, fetus 1 +C2908795|T046|PT|O40.1XX2|ICD10CM|Polyhydramnios, first trimester, fetus 2|Polyhydramnios, first trimester, fetus 2 +C2908795|T046|AB|O40.1XX2|ICD10CM|Polyhydramnios, first trimester, fetus 2|Polyhydramnios, first trimester, fetus 2 +C2908796|T046|PT|O40.1XX3|ICD10CM|Polyhydramnios, first trimester, fetus 3|Polyhydramnios, first trimester, fetus 3 +C2908796|T046|AB|O40.1XX3|ICD10CM|Polyhydramnios, first trimester, fetus 3|Polyhydramnios, first trimester, fetus 3 +C2908797|T046|PT|O40.1XX4|ICD10CM|Polyhydramnios, first trimester, fetus 4|Polyhydramnios, first trimester, fetus 4 +C2908797|T046|AB|O40.1XX4|ICD10CM|Polyhydramnios, first trimester, fetus 4|Polyhydramnios, first trimester, fetus 4 +C2908798|T046|PT|O40.1XX5|ICD10CM|Polyhydramnios, first trimester, fetus 5|Polyhydramnios, first trimester, fetus 5 +C2908798|T046|AB|O40.1XX5|ICD10CM|Polyhydramnios, first trimester, fetus 5|Polyhydramnios, first trimester, fetus 5 +C2908799|T046|PT|O40.1XX9|ICD10CM|Polyhydramnios, first trimester, other fetus|Polyhydramnios, first trimester, other fetus +C2908799|T046|AB|O40.1XX9|ICD10CM|Polyhydramnios, first trimester, other fetus|Polyhydramnios, first trimester, other fetus +C2908800|T046|AB|O40.2|ICD10CM|Polyhydramnios, second trimester|Polyhydramnios, second trimester +C2908800|T046|HT|O40.2|ICD10CM|Polyhydramnios, second trimester|Polyhydramnios, second trimester +C2908801|T046|AB|O40.2XX0|ICD10CM|Polyhydramnios, second trimester, not applicable or unsp|Polyhydramnios, second trimester, not applicable or unsp +C2908801|T046|PT|O40.2XX0|ICD10CM|Polyhydramnios, second trimester, not applicable or unspecified|Polyhydramnios, second trimester, not applicable or unspecified +C2908802|T046|PT|O40.2XX1|ICD10CM|Polyhydramnios, second trimester, fetus 1|Polyhydramnios, second trimester, fetus 1 +C2908802|T046|AB|O40.2XX1|ICD10CM|Polyhydramnios, second trimester, fetus 1|Polyhydramnios, second trimester, fetus 1 +C2908803|T046|PT|O40.2XX2|ICD10CM|Polyhydramnios, second trimester, fetus 2|Polyhydramnios, second trimester, fetus 2 +C2908803|T046|AB|O40.2XX2|ICD10CM|Polyhydramnios, second trimester, fetus 2|Polyhydramnios, second trimester, fetus 2 +C2908804|T046|PT|O40.2XX3|ICD10CM|Polyhydramnios, second trimester, fetus 3|Polyhydramnios, second trimester, fetus 3 +C2908804|T046|AB|O40.2XX3|ICD10CM|Polyhydramnios, second trimester, fetus 3|Polyhydramnios, second trimester, fetus 3 +C2908805|T046|PT|O40.2XX4|ICD10CM|Polyhydramnios, second trimester, fetus 4|Polyhydramnios, second trimester, fetus 4 +C2908805|T046|AB|O40.2XX4|ICD10CM|Polyhydramnios, second trimester, fetus 4|Polyhydramnios, second trimester, fetus 4 +C2908806|T046|PT|O40.2XX5|ICD10CM|Polyhydramnios, second trimester, fetus 5|Polyhydramnios, second trimester, fetus 5 +C2908806|T046|AB|O40.2XX5|ICD10CM|Polyhydramnios, second trimester, fetus 5|Polyhydramnios, second trimester, fetus 5 +C2908807|T046|PT|O40.2XX9|ICD10CM|Polyhydramnios, second trimester, other fetus|Polyhydramnios, second trimester, other fetus +C2908807|T046|AB|O40.2XX9|ICD10CM|Polyhydramnios, second trimester, other fetus|Polyhydramnios, second trimester, other fetus +C2908808|T046|AB|O40.3|ICD10CM|Polyhydramnios, third trimester|Polyhydramnios, third trimester +C2908808|T046|HT|O40.3|ICD10CM|Polyhydramnios, third trimester|Polyhydramnios, third trimester +C2908809|T046|AB|O40.3XX0|ICD10CM|Polyhydramnios, third trimester, not applicable or unsp|Polyhydramnios, third trimester, not applicable or unsp +C2908809|T046|PT|O40.3XX0|ICD10CM|Polyhydramnios, third trimester, not applicable or unspecified|Polyhydramnios, third trimester, not applicable or unspecified +C2908810|T046|PT|O40.3XX1|ICD10CM|Polyhydramnios, third trimester, fetus 1|Polyhydramnios, third trimester, fetus 1 +C2908810|T046|AB|O40.3XX1|ICD10CM|Polyhydramnios, third trimester, fetus 1|Polyhydramnios, third trimester, fetus 1 +C2908811|T046|PT|O40.3XX2|ICD10CM|Polyhydramnios, third trimester, fetus 2|Polyhydramnios, third trimester, fetus 2 +C2908811|T046|AB|O40.3XX2|ICD10CM|Polyhydramnios, third trimester, fetus 2|Polyhydramnios, third trimester, fetus 2 +C2908812|T046|PT|O40.3XX3|ICD10CM|Polyhydramnios, third trimester, fetus 3|Polyhydramnios, third trimester, fetus 3 +C2908812|T046|AB|O40.3XX3|ICD10CM|Polyhydramnios, third trimester, fetus 3|Polyhydramnios, third trimester, fetus 3 +C2908813|T046|PT|O40.3XX4|ICD10CM|Polyhydramnios, third trimester, fetus 4|Polyhydramnios, third trimester, fetus 4 +C2908813|T046|AB|O40.3XX4|ICD10CM|Polyhydramnios, third trimester, fetus 4|Polyhydramnios, third trimester, fetus 4 +C2908814|T046|PT|O40.3XX5|ICD10CM|Polyhydramnios, third trimester, fetus 5|Polyhydramnios, third trimester, fetus 5 +C2908814|T046|AB|O40.3XX5|ICD10CM|Polyhydramnios, third trimester, fetus 5|Polyhydramnios, third trimester, fetus 5 +C2908815|T046|PT|O40.3XX9|ICD10CM|Polyhydramnios, third trimester, other fetus|Polyhydramnios, third trimester, other fetus +C2908815|T046|AB|O40.3XX9|ICD10CM|Polyhydramnios, third trimester, other fetus|Polyhydramnios, third trimester, other fetus +C2908816|T046|AB|O40.9|ICD10CM|Polyhydramnios, unspecified trimester|Polyhydramnios, unspecified trimester +C2908816|T046|HT|O40.9|ICD10CM|Polyhydramnios, unspecified trimester|Polyhydramnios, unspecified trimester +C2908817|T047|AB|O40.9XX0|ICD10CM|Polyhydramnios, unsp trimester, not applicable or unsp|Polyhydramnios, unsp trimester, not applicable or unsp +C2908817|T047|PT|O40.9XX0|ICD10CM|Polyhydramnios, unspecified trimester, not applicable or unspecified|Polyhydramnios, unspecified trimester, not applicable or unspecified +C2908818|T046|PT|O40.9XX1|ICD10CM|Polyhydramnios, unspecified trimester, fetus 1|Polyhydramnios, unspecified trimester, fetus 1 +C2908818|T046|AB|O40.9XX1|ICD10CM|Polyhydramnios, unspecified trimester, fetus 1|Polyhydramnios, unspecified trimester, fetus 1 +C2908819|T046|PT|O40.9XX2|ICD10CM|Polyhydramnios, unspecified trimester, fetus 2|Polyhydramnios, unspecified trimester, fetus 2 +C2908819|T046|AB|O40.9XX2|ICD10CM|Polyhydramnios, unspecified trimester, fetus 2|Polyhydramnios, unspecified trimester, fetus 2 +C2908820|T046|PT|O40.9XX3|ICD10CM|Polyhydramnios, unspecified trimester, fetus 3|Polyhydramnios, unspecified trimester, fetus 3 +C2908820|T046|AB|O40.9XX3|ICD10CM|Polyhydramnios, unspecified trimester, fetus 3|Polyhydramnios, unspecified trimester, fetus 3 +C2908821|T046|PT|O40.9XX4|ICD10CM|Polyhydramnios, unspecified trimester, fetus 4|Polyhydramnios, unspecified trimester, fetus 4 +C2908821|T046|AB|O40.9XX4|ICD10CM|Polyhydramnios, unspecified trimester, fetus 4|Polyhydramnios, unspecified trimester, fetus 4 +C2908822|T046|PT|O40.9XX5|ICD10CM|Polyhydramnios, unspecified trimester, fetus 5|Polyhydramnios, unspecified trimester, fetus 5 +C2908822|T046|AB|O40.9XX5|ICD10CM|Polyhydramnios, unspecified trimester, fetus 5|Polyhydramnios, unspecified trimester, fetus 5 +C2908823|T046|PT|O40.9XX9|ICD10CM|Polyhydramnios, unspecified trimester, other fetus|Polyhydramnios, unspecified trimester, other fetus +C2908823|T046|AB|O40.9XX9|ICD10CM|Polyhydramnios, unspecified trimester, other fetus|Polyhydramnios, unspecified trimester, other fetus +C0477834|T046|HT|O41|ICD10|Other disorders of amniotic fluid and membranes|Other disorders of amniotic fluid and membranes +C0477834|T046|HT|O41|ICD10CM|Other disorders of amniotic fluid and membranes|Other disorders of amniotic fluid and membranes +C0477834|T046|AB|O41|ICD10CM|Other disorders of amniotic fluid and membranes|Other disorders of amniotic fluid and membranes +C0079924|T046|PT|O41.0|ICD10|Oligohydramnios|Oligohydramnios +C0079924|T046|HT|O41.0|ICD10CM|Oligohydramnios|Oligohydramnios +C0079924|T046|AB|O41.0|ICD10CM|Oligohydramnios|Oligohydramnios +C0269798|T047|ET|O41.0|ICD10CM|Oligohydramnios without rupture of membranes|Oligohydramnios without rupture of membranes +C0079924|T046|AB|O41.00|ICD10CM|Oligohydramnios, unspecified trimester|Oligohydramnios, unspecified trimester +C0079924|T046|HT|O41.00|ICD10CM|Oligohydramnios, unspecified trimester|Oligohydramnios, unspecified trimester +C2908824|T047|AB|O41.00X0|ICD10CM|Oligohydramnios, unsp trimester, not applicable or unsp|Oligohydramnios, unsp trimester, not applicable or unsp +C2908824|T047|PT|O41.00X0|ICD10CM|Oligohydramnios, unspecified trimester, not applicable or unspecified|Oligohydramnios, unspecified trimester, not applicable or unspecified +C2908825|T046|PT|O41.00X1|ICD10CM|Oligohydramnios, unspecified trimester, fetus 1|Oligohydramnios, unspecified trimester, fetus 1 +C2908825|T046|AB|O41.00X1|ICD10CM|Oligohydramnios, unspecified trimester, fetus 1|Oligohydramnios, unspecified trimester, fetus 1 +C2908826|T046|PT|O41.00X2|ICD10CM|Oligohydramnios, unspecified trimester, fetus 2|Oligohydramnios, unspecified trimester, fetus 2 +C2908826|T046|AB|O41.00X2|ICD10CM|Oligohydramnios, unspecified trimester, fetus 2|Oligohydramnios, unspecified trimester, fetus 2 +C2908827|T046|PT|O41.00X3|ICD10CM|Oligohydramnios, unspecified trimester, fetus 3|Oligohydramnios, unspecified trimester, fetus 3 +C2908827|T046|AB|O41.00X3|ICD10CM|Oligohydramnios, unspecified trimester, fetus 3|Oligohydramnios, unspecified trimester, fetus 3 +C2908828|T046|PT|O41.00X4|ICD10CM|Oligohydramnios, unspecified trimester, fetus 4|Oligohydramnios, unspecified trimester, fetus 4 +C2908828|T046|AB|O41.00X4|ICD10CM|Oligohydramnios, unspecified trimester, fetus 4|Oligohydramnios, unspecified trimester, fetus 4 +C2908829|T046|PT|O41.00X5|ICD10CM|Oligohydramnios, unspecified trimester, fetus 5|Oligohydramnios, unspecified trimester, fetus 5 +C2908829|T046|AB|O41.00X5|ICD10CM|Oligohydramnios, unspecified trimester, fetus 5|Oligohydramnios, unspecified trimester, fetus 5 +C2908830|T046|PT|O41.00X9|ICD10CM|Oligohydramnios, unspecified trimester, other fetus|Oligohydramnios, unspecified trimester, other fetus +C2908830|T046|AB|O41.00X9|ICD10CM|Oligohydramnios, unspecified trimester, other fetus|Oligohydramnios, unspecified trimester, other fetus +C2908831|T046|AB|O41.01|ICD10CM|Oligohydramnios, first trimester|Oligohydramnios, first trimester +C2908831|T046|HT|O41.01|ICD10CM|Oligohydramnios, first trimester|Oligohydramnios, first trimester +C2908832|T046|AB|O41.01X0|ICD10CM|Oligohydramnios, first trimester, not applicable or unsp|Oligohydramnios, first trimester, not applicable or unsp +C2908832|T046|PT|O41.01X0|ICD10CM|Oligohydramnios, first trimester, not applicable or unspecified|Oligohydramnios, first trimester, not applicable or unspecified +C2908833|T046|PT|O41.01X1|ICD10CM|Oligohydramnios, first trimester, fetus 1|Oligohydramnios, first trimester, fetus 1 +C2908833|T046|AB|O41.01X1|ICD10CM|Oligohydramnios, first trimester, fetus 1|Oligohydramnios, first trimester, fetus 1 +C2908834|T046|PT|O41.01X2|ICD10CM|Oligohydramnios, first trimester, fetus 2|Oligohydramnios, first trimester, fetus 2 +C2908834|T046|AB|O41.01X2|ICD10CM|Oligohydramnios, first trimester, fetus 2|Oligohydramnios, first trimester, fetus 2 +C2908835|T046|PT|O41.01X3|ICD10CM|Oligohydramnios, first trimester, fetus 3|Oligohydramnios, first trimester, fetus 3 +C2908835|T046|AB|O41.01X3|ICD10CM|Oligohydramnios, first trimester, fetus 3|Oligohydramnios, first trimester, fetus 3 +C2908836|T046|PT|O41.01X4|ICD10CM|Oligohydramnios, first trimester, fetus 4|Oligohydramnios, first trimester, fetus 4 +C2908836|T046|AB|O41.01X4|ICD10CM|Oligohydramnios, first trimester, fetus 4|Oligohydramnios, first trimester, fetus 4 +C2908837|T046|PT|O41.01X5|ICD10CM|Oligohydramnios, first trimester, fetus 5|Oligohydramnios, first trimester, fetus 5 +C2908837|T046|AB|O41.01X5|ICD10CM|Oligohydramnios, first trimester, fetus 5|Oligohydramnios, first trimester, fetus 5 +C2908838|T046|PT|O41.01X9|ICD10CM|Oligohydramnios, first trimester, other fetus|Oligohydramnios, first trimester, other fetus +C2908838|T046|AB|O41.01X9|ICD10CM|Oligohydramnios, first trimester, other fetus|Oligohydramnios, first trimester, other fetus +C2908839|T046|AB|O41.02|ICD10CM|Oligohydramnios, second trimester|Oligohydramnios, second trimester +C2908839|T046|HT|O41.02|ICD10CM|Oligohydramnios, second trimester|Oligohydramnios, second trimester +C2908840|T046|AB|O41.02X0|ICD10CM|Oligohydramnios, second trimester, not applicable or unsp|Oligohydramnios, second trimester, not applicable or unsp +C2908840|T046|PT|O41.02X0|ICD10CM|Oligohydramnios, second trimester, not applicable or unspecified|Oligohydramnios, second trimester, not applicable or unspecified +C2908841|T046|PT|O41.02X1|ICD10CM|Oligohydramnios, second trimester, fetus 1|Oligohydramnios, second trimester, fetus 1 +C2908841|T046|AB|O41.02X1|ICD10CM|Oligohydramnios, second trimester, fetus 1|Oligohydramnios, second trimester, fetus 1 +C2908842|T046|PT|O41.02X2|ICD10CM|Oligohydramnios, second trimester, fetus 2|Oligohydramnios, second trimester, fetus 2 +C2908842|T046|AB|O41.02X2|ICD10CM|Oligohydramnios, second trimester, fetus 2|Oligohydramnios, second trimester, fetus 2 +C2908843|T046|PT|O41.02X3|ICD10CM|Oligohydramnios, second trimester, fetus 3|Oligohydramnios, second trimester, fetus 3 +C2908843|T046|AB|O41.02X3|ICD10CM|Oligohydramnios, second trimester, fetus 3|Oligohydramnios, second trimester, fetus 3 +C2908844|T046|PT|O41.02X4|ICD10CM|Oligohydramnios, second trimester, fetus 4|Oligohydramnios, second trimester, fetus 4 +C2908844|T046|AB|O41.02X4|ICD10CM|Oligohydramnios, second trimester, fetus 4|Oligohydramnios, second trimester, fetus 4 +C2908845|T046|PT|O41.02X5|ICD10CM|Oligohydramnios, second trimester, fetus 5|Oligohydramnios, second trimester, fetus 5 +C2908845|T046|AB|O41.02X5|ICD10CM|Oligohydramnios, second trimester, fetus 5|Oligohydramnios, second trimester, fetus 5 +C2908846|T046|PT|O41.02X9|ICD10CM|Oligohydramnios, second trimester, other fetus|Oligohydramnios, second trimester, other fetus +C2908846|T046|AB|O41.02X9|ICD10CM|Oligohydramnios, second trimester, other fetus|Oligohydramnios, second trimester, other fetus +C2908847|T046|AB|O41.03|ICD10CM|Oligohydramnios, third trimester|Oligohydramnios, third trimester +C2908847|T046|HT|O41.03|ICD10CM|Oligohydramnios, third trimester|Oligohydramnios, third trimester +C2908848|T046|AB|O41.03X0|ICD10CM|Oligohydramnios, third trimester, not applicable or unsp|Oligohydramnios, third trimester, not applicable or unsp +C2908848|T046|PT|O41.03X0|ICD10CM|Oligohydramnios, third trimester, not applicable or unspecified|Oligohydramnios, third trimester, not applicable or unspecified +C2908849|T046|PT|O41.03X1|ICD10CM|Oligohydramnios, third trimester, fetus 1|Oligohydramnios, third trimester, fetus 1 +C2908849|T046|AB|O41.03X1|ICD10CM|Oligohydramnios, third trimester, fetus 1|Oligohydramnios, third trimester, fetus 1 +C2908850|T046|PT|O41.03X2|ICD10CM|Oligohydramnios, third trimester, fetus 2|Oligohydramnios, third trimester, fetus 2 +C2908850|T046|AB|O41.03X2|ICD10CM|Oligohydramnios, third trimester, fetus 2|Oligohydramnios, third trimester, fetus 2 +C2908851|T046|PT|O41.03X3|ICD10CM|Oligohydramnios, third trimester, fetus 3|Oligohydramnios, third trimester, fetus 3 +C2908851|T046|AB|O41.03X3|ICD10CM|Oligohydramnios, third trimester, fetus 3|Oligohydramnios, third trimester, fetus 3 +C2908852|T046|PT|O41.03X4|ICD10CM|Oligohydramnios, third trimester, fetus 4|Oligohydramnios, third trimester, fetus 4 +C2908852|T046|AB|O41.03X4|ICD10CM|Oligohydramnios, third trimester, fetus 4|Oligohydramnios, third trimester, fetus 4 +C2908853|T046|PT|O41.03X5|ICD10CM|Oligohydramnios, third trimester, fetus 5|Oligohydramnios, third trimester, fetus 5 +C2908853|T046|AB|O41.03X5|ICD10CM|Oligohydramnios, third trimester, fetus 5|Oligohydramnios, third trimester, fetus 5 +C2908854|T046|PT|O41.03X9|ICD10CM|Oligohydramnios, third trimester, other fetus|Oligohydramnios, third trimester, other fetus +C2908854|T046|AB|O41.03X9|ICD10CM|Oligohydramnios, third trimester, other fetus|Oligohydramnios, third trimester, other fetus +C2919032|T046|HT|O41.1|ICD10CM|Infection of amniotic sac and membranes|Infection of amniotic sac and membranes +C2919032|T046|AB|O41.1|ICD10CM|Infection of amniotic sac and membranes|Infection of amniotic sac and membranes +C2919032|T046|PT|O41.1|ICD10|Infection of amniotic sac and membranes|Infection of amniotic sac and membranes +C2919032|T046|AB|O41.10|ICD10CM|Infection of amniotic sac and membranes, unspecified|Infection of amniotic sac and membranes, unspecified +C2919032|T046|HT|O41.10|ICD10CM|Infection of amniotic sac and membranes, unspecified|Infection of amniotic sac and membranes, unspecified +C2908855|T046|AB|O41.101|ICD10CM|Infct of amniotic sac and membranes, unsp, first trimester|Infct of amniotic sac and membranes, unsp, first trimester +C2908855|T046|HT|O41.101|ICD10CM|Infection of amniotic sac and membranes, unspecified, first trimester|Infection of amniotic sac and membranes, unspecified, first trimester +C2908856|T046|AB|O41.1010|ICD10CM|Infct of amniotic sac and membrns, unsp, first tri, unsp|Infct of amniotic sac and membrns, unsp, first tri, unsp +C2908856|T046|PT|O41.1010|ICD10CM|Infection of amniotic sac and membranes, unspecified, first trimester, not applicable or unspecified|Infection of amniotic sac and membranes, unspecified, first trimester, not applicable or unspecified +C2908857|T046|AB|O41.1011|ICD10CM|Infct of amniotic sac and membrns, unsp, first tri, fetus 1|Infct of amniotic sac and membrns, unsp, first tri, fetus 1 +C2908857|T046|PT|O41.1011|ICD10CM|Infection of amniotic sac and membranes, unspecified, first trimester, fetus 1|Infection of amniotic sac and membranes, unspecified, first trimester, fetus 1 +C2908858|T046|AB|O41.1012|ICD10CM|Infct of amniotic sac and membrns, unsp, first tri, fetus 2|Infct of amniotic sac and membrns, unsp, first tri, fetus 2 +C2908858|T046|PT|O41.1012|ICD10CM|Infection of amniotic sac and membranes, unspecified, first trimester, fetus 2|Infection of amniotic sac and membranes, unspecified, first trimester, fetus 2 +C2908859|T046|AB|O41.1013|ICD10CM|Infct of amniotic sac and membrns, unsp, first tri, fetus 3|Infct of amniotic sac and membrns, unsp, first tri, fetus 3 +C2908859|T046|PT|O41.1013|ICD10CM|Infection of amniotic sac and membranes, unspecified, first trimester, fetus 3|Infection of amniotic sac and membranes, unspecified, first trimester, fetus 3 +C2908860|T046|AB|O41.1014|ICD10CM|Infct of amniotic sac and membrns, unsp, first tri, fetus 4|Infct of amniotic sac and membrns, unsp, first tri, fetus 4 +C2908860|T046|PT|O41.1014|ICD10CM|Infection of amniotic sac and membranes, unspecified, first trimester, fetus 4|Infection of amniotic sac and membranes, unspecified, first trimester, fetus 4 +C2908861|T046|AB|O41.1015|ICD10CM|Infct of amniotic sac and membrns, unsp, first tri, fetus 5|Infct of amniotic sac and membrns, unsp, first tri, fetus 5 +C2908861|T046|PT|O41.1015|ICD10CM|Infection of amniotic sac and membranes, unspecified, first trimester, fetus 5|Infection of amniotic sac and membranes, unspecified, first trimester, fetus 5 +C2908862|T046|AB|O41.1019|ICD10CM|Infct of amniotic sac and membrns, unsp, first tri, oth|Infct of amniotic sac and membrns, unsp, first tri, oth +C2908862|T046|PT|O41.1019|ICD10CM|Infection of amniotic sac and membranes, unspecified, first trimester, other fetus|Infection of amniotic sac and membranes, unspecified, first trimester, other fetus +C2908863|T046|AB|O41.102|ICD10CM|Infct of amniotic sac and membranes, unsp, second trimester|Infct of amniotic sac and membranes, unsp, second trimester +C2908863|T046|HT|O41.102|ICD10CM|Infection of amniotic sac and membranes, unspecified, second trimester|Infection of amniotic sac and membranes, unspecified, second trimester +C2908864|T046|AB|O41.1020|ICD10CM|Infct of amniotic sac and membrns, unsp, second tri, unsp|Infct of amniotic sac and membrns, unsp, second tri, unsp +C2908865|T046|AB|O41.1021|ICD10CM|Infct of amniotic sac and membrns, unsp, second tri, fetus 1|Infct of amniotic sac and membrns, unsp, second tri, fetus 1 +C2908865|T046|PT|O41.1021|ICD10CM|Infection of amniotic sac and membranes, unspecified, second trimester, fetus 1|Infection of amniotic sac and membranes, unspecified, second trimester, fetus 1 +C2908866|T046|AB|O41.1022|ICD10CM|Infct of amniotic sac and membrns, unsp, second tri, fetus 2|Infct of amniotic sac and membrns, unsp, second tri, fetus 2 +C2908866|T046|PT|O41.1022|ICD10CM|Infection of amniotic sac and membranes, unspecified, second trimester, fetus 2|Infection of amniotic sac and membranes, unspecified, second trimester, fetus 2 +C2908867|T046|AB|O41.1023|ICD10CM|Infct of amniotic sac and membrns, unsp, second tri, fetus 3|Infct of amniotic sac and membrns, unsp, second tri, fetus 3 +C2908867|T046|PT|O41.1023|ICD10CM|Infection of amniotic sac and membranes, unspecified, second trimester, fetus 3|Infection of amniotic sac and membranes, unspecified, second trimester, fetus 3 +C2908868|T046|AB|O41.1024|ICD10CM|Infct of amniotic sac and membrns, unsp, second tri, fetus 4|Infct of amniotic sac and membrns, unsp, second tri, fetus 4 +C2908868|T046|PT|O41.1024|ICD10CM|Infection of amniotic sac and membranes, unspecified, second trimester, fetus 4|Infection of amniotic sac and membranes, unspecified, second trimester, fetus 4 +C2908869|T046|AB|O41.1025|ICD10CM|Infct of amniotic sac and membrns, unsp, second tri, fetus 5|Infct of amniotic sac and membrns, unsp, second tri, fetus 5 +C2908869|T046|PT|O41.1025|ICD10CM|Infection of amniotic sac and membranes, unspecified, second trimester, fetus 5|Infection of amniotic sac and membranes, unspecified, second trimester, fetus 5 +C2908870|T046|AB|O41.1029|ICD10CM|Infct of amniotic sac and membrns, unsp, second tri, oth|Infct of amniotic sac and membrns, unsp, second tri, oth +C2908870|T046|PT|O41.1029|ICD10CM|Infection of amniotic sac and membranes, unspecified, second trimester, other fetus|Infection of amniotic sac and membranes, unspecified, second trimester, other fetus +C2908871|T046|AB|O41.103|ICD10CM|Infct of amniotic sac and membranes, unsp, third trimester|Infct of amniotic sac and membranes, unsp, third trimester +C2908871|T046|HT|O41.103|ICD10CM|Infection of amniotic sac and membranes, unspecified, third trimester|Infection of amniotic sac and membranes, unspecified, third trimester +C2908872|T046|AB|O41.1030|ICD10CM|Infct of amniotic sac and membrns, unsp, third tri, unsp|Infct of amniotic sac and membrns, unsp, third tri, unsp +C2908872|T046|PT|O41.1030|ICD10CM|Infection of amniotic sac and membranes, unspecified, third trimester, not applicable or unspecified|Infection of amniotic sac and membranes, unspecified, third trimester, not applicable or unspecified +C2908873|T046|AB|O41.1031|ICD10CM|Infct of amniotic sac and membrns, unsp, third tri, fetus 1|Infct of amniotic sac and membrns, unsp, third tri, fetus 1 +C2908873|T046|PT|O41.1031|ICD10CM|Infection of amniotic sac and membranes, unspecified, third trimester, fetus 1|Infection of amniotic sac and membranes, unspecified, third trimester, fetus 1 +C2908874|T046|AB|O41.1032|ICD10CM|Infct of amniotic sac and membrns, unsp, third tri, fetus 2|Infct of amniotic sac and membrns, unsp, third tri, fetus 2 +C2908874|T046|PT|O41.1032|ICD10CM|Infection of amniotic sac and membranes, unspecified, third trimester, fetus 2|Infection of amniotic sac and membranes, unspecified, third trimester, fetus 2 +C2908875|T046|AB|O41.1033|ICD10CM|Infct of amniotic sac and membrns, unsp, third tri, fetus 3|Infct of amniotic sac and membrns, unsp, third tri, fetus 3 +C2908875|T046|PT|O41.1033|ICD10CM|Infection of amniotic sac and membranes, unspecified, third trimester, fetus 3|Infection of amniotic sac and membranes, unspecified, third trimester, fetus 3 +C2908876|T046|AB|O41.1034|ICD10CM|Infct of amniotic sac and membrns, unsp, third tri, fetus 4|Infct of amniotic sac and membrns, unsp, third tri, fetus 4 +C2908876|T046|PT|O41.1034|ICD10CM|Infection of amniotic sac and membranes, unspecified, third trimester, fetus 4|Infection of amniotic sac and membranes, unspecified, third trimester, fetus 4 +C2908877|T046|AB|O41.1035|ICD10CM|Infct of amniotic sac and membrns, unsp, third tri, fetus 5|Infct of amniotic sac and membrns, unsp, third tri, fetus 5 +C2908877|T046|PT|O41.1035|ICD10CM|Infection of amniotic sac and membranes, unspecified, third trimester, fetus 5|Infection of amniotic sac and membranes, unspecified, third trimester, fetus 5 +C2908878|T046|AB|O41.1039|ICD10CM|Infct of amniotic sac and membrns, unsp, third tri, oth|Infct of amniotic sac and membrns, unsp, third tri, oth +C2908878|T046|PT|O41.1039|ICD10CM|Infection of amniotic sac and membranes, unspecified, third trimester, other fetus|Infection of amniotic sac and membranes, unspecified, third trimester, other fetus +C2908879|T046|AB|O41.109|ICD10CM|Infct of amniotic sac and membranes, unsp, unsp trimester|Infct of amniotic sac and membranes, unsp, unsp trimester +C2908879|T046|HT|O41.109|ICD10CM|Infection of amniotic sac and membranes, unspecified, unspecified trimester|Infection of amniotic sac and membranes, unspecified, unspecified trimester +C2919032|T046|AB|O41.1090|ICD10CM|Infct of amniotic sac and membrns, unsp, unsp tri, unsp|Infct of amniotic sac and membrns, unsp, unsp tri, unsp +C2908881|T046|AB|O41.1091|ICD10CM|Infct of amniotic sac and membrns, unsp, unsp tri, fetus 1|Infct of amniotic sac and membrns, unsp, unsp tri, fetus 1 +C2908881|T046|PT|O41.1091|ICD10CM|Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 1|Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 1 +C2908882|T046|AB|O41.1092|ICD10CM|Infct of amniotic sac and membrns, unsp, unsp tri, fetus 2|Infct of amniotic sac and membrns, unsp, unsp tri, fetus 2 +C2908882|T046|PT|O41.1092|ICD10CM|Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 2|Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 2 +C2908883|T046|AB|O41.1093|ICD10CM|Infct of amniotic sac and membrns, unsp, unsp tri, fetus 3|Infct of amniotic sac and membrns, unsp, unsp tri, fetus 3 +C2908883|T046|PT|O41.1093|ICD10CM|Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 3|Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 3 +C2908884|T046|AB|O41.1094|ICD10CM|Infct of amniotic sac and membrns, unsp, unsp tri, fetus 4|Infct of amniotic sac and membrns, unsp, unsp tri, fetus 4 +C2908884|T046|PT|O41.1094|ICD10CM|Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 4|Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 4 +C2908885|T046|AB|O41.1095|ICD10CM|Infct of amniotic sac and membrns, unsp, unsp tri, fetus 5|Infct of amniotic sac and membrns, unsp, unsp tri, fetus 5 +C2908885|T046|PT|O41.1095|ICD10CM|Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 5|Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 5 +C2908886|T046|AB|O41.1099|ICD10CM|Infct of amniotic sac and membrns, unsp, unsp trimester, oth|Infct of amniotic sac and membrns, unsp, unsp trimester, oth +C2908886|T046|PT|O41.1099|ICD10CM|Infection of amniotic sac and membranes, unspecified, unspecified trimester, other fetus|Infection of amniotic sac and membranes, unspecified, unspecified trimester, other fetus +C0008495|T047|HT|O41.12|ICD10CM|Chorioamnionitis|Chorioamnionitis +C0008495|T047|AB|O41.12|ICD10CM|Chorioamnionitis|Chorioamnionitis +C2908887|T047|AB|O41.121|ICD10CM|Chorioamnionitis, first trimester|Chorioamnionitis, first trimester +C2908887|T047|HT|O41.121|ICD10CM|Chorioamnionitis, first trimester|Chorioamnionitis, first trimester +C2908888|T047|AB|O41.1210|ICD10CM|Chorioamnionitis, first trimester, not applicable or unsp|Chorioamnionitis, first trimester, not applicable or unsp +C2908888|T047|PT|O41.1210|ICD10CM|Chorioamnionitis, first trimester, not applicable or unspecified|Chorioamnionitis, first trimester, not applicable or unspecified +C2908889|T047|PT|O41.1211|ICD10CM|Chorioamnionitis, first trimester, fetus 1|Chorioamnionitis, first trimester, fetus 1 +C2908889|T047|AB|O41.1211|ICD10CM|Chorioamnionitis, first trimester, fetus 1|Chorioamnionitis, first trimester, fetus 1 +C2908890|T047|PT|O41.1212|ICD10CM|Chorioamnionitis, first trimester, fetus 2|Chorioamnionitis, first trimester, fetus 2 +C2908890|T047|AB|O41.1212|ICD10CM|Chorioamnionitis, first trimester, fetus 2|Chorioamnionitis, first trimester, fetus 2 +C2908891|T047|PT|O41.1213|ICD10CM|Chorioamnionitis, first trimester, fetus 3|Chorioamnionitis, first trimester, fetus 3 +C2908891|T047|AB|O41.1213|ICD10CM|Chorioamnionitis, first trimester, fetus 3|Chorioamnionitis, first trimester, fetus 3 +C2908892|T047|PT|O41.1214|ICD10CM|Chorioamnionitis, first trimester, fetus 4|Chorioamnionitis, first trimester, fetus 4 +C2908892|T047|AB|O41.1214|ICD10CM|Chorioamnionitis, first trimester, fetus 4|Chorioamnionitis, first trimester, fetus 4 +C2908893|T047|PT|O41.1215|ICD10CM|Chorioamnionitis, first trimester, fetus 5|Chorioamnionitis, first trimester, fetus 5 +C2908893|T047|AB|O41.1215|ICD10CM|Chorioamnionitis, first trimester, fetus 5|Chorioamnionitis, first trimester, fetus 5 +C2908894|T047|PT|O41.1219|ICD10CM|Chorioamnionitis, first trimester, other fetus|Chorioamnionitis, first trimester, other fetus +C2908894|T047|AB|O41.1219|ICD10CM|Chorioamnionitis, first trimester, other fetus|Chorioamnionitis, first trimester, other fetus +C2908895|T047|AB|O41.122|ICD10CM|Chorioamnionitis, second trimester|Chorioamnionitis, second trimester +C2908895|T047|HT|O41.122|ICD10CM|Chorioamnionitis, second trimester|Chorioamnionitis, second trimester +C2908896|T047|AB|O41.1220|ICD10CM|Chorioamnionitis, second trimester, not applicable or unsp|Chorioamnionitis, second trimester, not applicable or unsp +C2908896|T047|PT|O41.1220|ICD10CM|Chorioamnionitis, second trimester, not applicable or unspecified|Chorioamnionitis, second trimester, not applicable or unspecified +C2908897|T047|PT|O41.1221|ICD10CM|Chorioamnionitis, second trimester, fetus 1|Chorioamnionitis, second trimester, fetus 1 +C2908897|T047|AB|O41.1221|ICD10CM|Chorioamnionitis, second trimester, fetus 1|Chorioamnionitis, second trimester, fetus 1 +C2908898|T047|PT|O41.1222|ICD10CM|Chorioamnionitis, second trimester, fetus 2|Chorioamnionitis, second trimester, fetus 2 +C2908898|T047|AB|O41.1222|ICD10CM|Chorioamnionitis, second trimester, fetus 2|Chorioamnionitis, second trimester, fetus 2 +C2908899|T047|PT|O41.1223|ICD10CM|Chorioamnionitis, second trimester, fetus 3|Chorioamnionitis, second trimester, fetus 3 +C2908899|T047|AB|O41.1223|ICD10CM|Chorioamnionitis, second trimester, fetus 3|Chorioamnionitis, second trimester, fetus 3 +C2908900|T047|PT|O41.1224|ICD10CM|Chorioamnionitis, second trimester, fetus 4|Chorioamnionitis, second trimester, fetus 4 +C2908900|T047|AB|O41.1224|ICD10CM|Chorioamnionitis, second trimester, fetus 4|Chorioamnionitis, second trimester, fetus 4 +C2908901|T047|PT|O41.1225|ICD10CM|Chorioamnionitis, second trimester, fetus 5|Chorioamnionitis, second trimester, fetus 5 +C2908901|T047|AB|O41.1225|ICD10CM|Chorioamnionitis, second trimester, fetus 5|Chorioamnionitis, second trimester, fetus 5 +C2908902|T047|PT|O41.1229|ICD10CM|Chorioamnionitis, second trimester, other fetus|Chorioamnionitis, second trimester, other fetus +C2908902|T047|AB|O41.1229|ICD10CM|Chorioamnionitis, second trimester, other fetus|Chorioamnionitis, second trimester, other fetus +C2908903|T047|AB|O41.123|ICD10CM|Chorioamnionitis, third trimester|Chorioamnionitis, third trimester +C2908903|T047|HT|O41.123|ICD10CM|Chorioamnionitis, third trimester|Chorioamnionitis, third trimester +C2908904|T047|AB|O41.1230|ICD10CM|Chorioamnionitis, third trimester, not applicable or unsp|Chorioamnionitis, third trimester, not applicable or unsp +C2908904|T047|PT|O41.1230|ICD10CM|Chorioamnionitis, third trimester, not applicable or unspecified|Chorioamnionitis, third trimester, not applicable or unspecified +C2908905|T047|PT|O41.1231|ICD10CM|Chorioamnionitis, third trimester, fetus 1|Chorioamnionitis, third trimester, fetus 1 +C2908905|T047|AB|O41.1231|ICD10CM|Chorioamnionitis, third trimester, fetus 1|Chorioamnionitis, third trimester, fetus 1 +C2908906|T047|PT|O41.1232|ICD10CM|Chorioamnionitis, third trimester, fetus 2|Chorioamnionitis, third trimester, fetus 2 +C2908906|T047|AB|O41.1232|ICD10CM|Chorioamnionitis, third trimester, fetus 2|Chorioamnionitis, third trimester, fetus 2 +C2908907|T047|PT|O41.1233|ICD10CM|Chorioamnionitis, third trimester, fetus 3|Chorioamnionitis, third trimester, fetus 3 +C2908907|T047|AB|O41.1233|ICD10CM|Chorioamnionitis, third trimester, fetus 3|Chorioamnionitis, third trimester, fetus 3 +C2908908|T047|PT|O41.1234|ICD10CM|Chorioamnionitis, third trimester, fetus 4|Chorioamnionitis, third trimester, fetus 4 +C2908908|T047|AB|O41.1234|ICD10CM|Chorioamnionitis, third trimester, fetus 4|Chorioamnionitis, third trimester, fetus 4 +C2908909|T047|PT|O41.1235|ICD10CM|Chorioamnionitis, third trimester, fetus 5|Chorioamnionitis, third trimester, fetus 5 +C2908909|T047|AB|O41.1235|ICD10CM|Chorioamnionitis, third trimester, fetus 5|Chorioamnionitis, third trimester, fetus 5 +C2908910|T047|PT|O41.1239|ICD10CM|Chorioamnionitis, third trimester, other fetus|Chorioamnionitis, third trimester, other fetus +C2908910|T047|AB|O41.1239|ICD10CM|Chorioamnionitis, third trimester, other fetus|Chorioamnionitis, third trimester, other fetus +C2908911|T047|AB|O41.129|ICD10CM|Chorioamnionitis, unspecified trimester|Chorioamnionitis, unspecified trimester +C2908911|T047|HT|O41.129|ICD10CM|Chorioamnionitis, unspecified trimester|Chorioamnionitis, unspecified trimester +C0008495|T047|AB|O41.1290|ICD10CM|Chorioamnionitis, unsp trimester, not applicable or unsp|Chorioamnionitis, unsp trimester, not applicable or unsp +C0008495|T047|PT|O41.1290|ICD10CM|Chorioamnionitis, unspecified trimester, not applicable or unspecified|Chorioamnionitis, unspecified trimester, not applicable or unspecified +C2908913|T047|PT|O41.1291|ICD10CM|Chorioamnionitis, unspecified trimester, fetus 1|Chorioamnionitis, unspecified trimester, fetus 1 +C2908913|T047|AB|O41.1291|ICD10CM|Chorioamnionitis, unspecified trimester, fetus 1|Chorioamnionitis, unspecified trimester, fetus 1 +C2908914|T047|PT|O41.1292|ICD10CM|Chorioamnionitis, unspecified trimester, fetus 2|Chorioamnionitis, unspecified trimester, fetus 2 +C2908914|T047|AB|O41.1292|ICD10CM|Chorioamnionitis, unspecified trimester, fetus 2|Chorioamnionitis, unspecified trimester, fetus 2 +C2908915|T047|PT|O41.1293|ICD10CM|Chorioamnionitis, unspecified trimester, fetus 3|Chorioamnionitis, unspecified trimester, fetus 3 +C2908915|T047|AB|O41.1293|ICD10CM|Chorioamnionitis, unspecified trimester, fetus 3|Chorioamnionitis, unspecified trimester, fetus 3 +C2908916|T047|PT|O41.1294|ICD10CM|Chorioamnionitis, unspecified trimester, fetus 4|Chorioamnionitis, unspecified trimester, fetus 4 +C2908916|T047|AB|O41.1294|ICD10CM|Chorioamnionitis, unspecified trimester, fetus 4|Chorioamnionitis, unspecified trimester, fetus 4 +C2908917|T047|PT|O41.1295|ICD10CM|Chorioamnionitis, unspecified trimester, fetus 5|Chorioamnionitis, unspecified trimester, fetus 5 +C2908917|T047|AB|O41.1295|ICD10CM|Chorioamnionitis, unspecified trimester, fetus 5|Chorioamnionitis, unspecified trimester, fetus 5 +C2908918|T047|PT|O41.1299|ICD10CM|Chorioamnionitis, unspecified trimester, other fetus|Chorioamnionitis, unspecified trimester, other fetus +C2908918|T047|AB|O41.1299|ICD10CM|Chorioamnionitis, unspecified trimester, other fetus|Chorioamnionitis, unspecified trimester, other fetus +C0032059|T047|HT|O41.14|ICD10CM|Placentitis|Placentitis +C0032059|T047|AB|O41.14|ICD10CM|Placentitis|Placentitis +C2908919|T046|AB|O41.141|ICD10CM|Placentitis, first trimester|Placentitis, first trimester +C2908919|T046|HT|O41.141|ICD10CM|Placentitis, first trimester|Placentitis, first trimester +C2908920|T046|PT|O41.1410|ICD10CM|Placentitis, first trimester, not applicable or unspecified|Placentitis, first trimester, not applicable or unspecified +C2908920|T046|AB|O41.1410|ICD10CM|Placentitis, first trimester, not applicable or unspecified|Placentitis, first trimester, not applicable or unspecified +C2908921|T046|PT|O41.1411|ICD10CM|Placentitis, first trimester, fetus 1|Placentitis, first trimester, fetus 1 +C2908921|T046|AB|O41.1411|ICD10CM|Placentitis, first trimester, fetus 1|Placentitis, first trimester, fetus 1 +C2908922|T046|PT|O41.1412|ICD10CM|Placentitis, first trimester, fetus 2|Placentitis, first trimester, fetus 2 +C2908922|T046|AB|O41.1412|ICD10CM|Placentitis, first trimester, fetus 2|Placentitis, first trimester, fetus 2 +C2908923|T046|PT|O41.1413|ICD10CM|Placentitis, first trimester, fetus 3|Placentitis, first trimester, fetus 3 +C2908923|T046|AB|O41.1413|ICD10CM|Placentitis, first trimester, fetus 3|Placentitis, first trimester, fetus 3 +C2908924|T046|PT|O41.1414|ICD10CM|Placentitis, first trimester, fetus 4|Placentitis, first trimester, fetus 4 +C2908924|T046|AB|O41.1414|ICD10CM|Placentitis, first trimester, fetus 4|Placentitis, first trimester, fetus 4 +C2908925|T046|PT|O41.1415|ICD10CM|Placentitis, first trimester, fetus 5|Placentitis, first trimester, fetus 5 +C2908925|T046|AB|O41.1415|ICD10CM|Placentitis, first trimester, fetus 5|Placentitis, first trimester, fetus 5 +C2908926|T046|PT|O41.1419|ICD10CM|Placentitis, first trimester, other fetus|Placentitis, first trimester, other fetus +C2908926|T046|AB|O41.1419|ICD10CM|Placentitis, first trimester, other fetus|Placentitis, first trimester, other fetus +C2908927|T046|AB|O41.142|ICD10CM|Placentitis, second trimester|Placentitis, second trimester +C2908927|T046|HT|O41.142|ICD10CM|Placentitis, second trimester|Placentitis, second trimester +C2908928|T046|AB|O41.1420|ICD10CM|Placentitis, second trimester, not applicable or unspecified|Placentitis, second trimester, not applicable or unspecified +C2908928|T046|PT|O41.1420|ICD10CM|Placentitis, second trimester, not applicable or unspecified|Placentitis, second trimester, not applicable or unspecified +C2908929|T046|PT|O41.1421|ICD10CM|Placentitis, second trimester, fetus 1|Placentitis, second trimester, fetus 1 +C2908929|T046|AB|O41.1421|ICD10CM|Placentitis, second trimester, fetus 1|Placentitis, second trimester, fetus 1 +C2908930|T046|PT|O41.1422|ICD10CM|Placentitis, second trimester, fetus 2|Placentitis, second trimester, fetus 2 +C2908930|T046|AB|O41.1422|ICD10CM|Placentitis, second trimester, fetus 2|Placentitis, second trimester, fetus 2 +C2908931|T046|PT|O41.1423|ICD10CM|Placentitis, second trimester, fetus 3|Placentitis, second trimester, fetus 3 +C2908931|T046|AB|O41.1423|ICD10CM|Placentitis, second trimester, fetus 3|Placentitis, second trimester, fetus 3 +C2908932|T046|PT|O41.1424|ICD10CM|Placentitis, second trimester, fetus 4|Placentitis, second trimester, fetus 4 +C2908932|T046|AB|O41.1424|ICD10CM|Placentitis, second trimester, fetus 4|Placentitis, second trimester, fetus 4 +C2908933|T046|PT|O41.1425|ICD10CM|Placentitis, second trimester, fetus 5|Placentitis, second trimester, fetus 5 +C2908933|T046|AB|O41.1425|ICD10CM|Placentitis, second trimester, fetus 5|Placentitis, second trimester, fetus 5 +C2908934|T046|PT|O41.1429|ICD10CM|Placentitis, second trimester, other fetus|Placentitis, second trimester, other fetus +C2908934|T046|AB|O41.1429|ICD10CM|Placentitis, second trimester, other fetus|Placentitis, second trimester, other fetus +C2908935|T046|AB|O41.143|ICD10CM|Placentitis, third trimester|Placentitis, third trimester +C2908935|T046|HT|O41.143|ICD10CM|Placentitis, third trimester|Placentitis, third trimester +C2908936|T046|PT|O41.1430|ICD10CM|Placentitis, third trimester, not applicable or unspecified|Placentitis, third trimester, not applicable or unspecified +C2908936|T046|AB|O41.1430|ICD10CM|Placentitis, third trimester, not applicable or unspecified|Placentitis, third trimester, not applicable or unspecified +C2908937|T046|PT|O41.1431|ICD10CM|Placentitis, third trimester, fetus 1|Placentitis, third trimester, fetus 1 +C2908937|T046|AB|O41.1431|ICD10CM|Placentitis, third trimester, fetus 1|Placentitis, third trimester, fetus 1 +C2908938|T046|PT|O41.1432|ICD10CM|Placentitis, third trimester, fetus 2|Placentitis, third trimester, fetus 2 +C2908938|T046|AB|O41.1432|ICD10CM|Placentitis, third trimester, fetus 2|Placentitis, third trimester, fetus 2 +C2908939|T046|PT|O41.1433|ICD10CM|Placentitis, third trimester, fetus 3|Placentitis, third trimester, fetus 3 +C2908939|T046|AB|O41.1433|ICD10CM|Placentitis, third trimester, fetus 3|Placentitis, third trimester, fetus 3 +C2908940|T046|PT|O41.1434|ICD10CM|Placentitis, third trimester, fetus 4|Placentitis, third trimester, fetus 4 +C2908940|T046|AB|O41.1434|ICD10CM|Placentitis, third trimester, fetus 4|Placentitis, third trimester, fetus 4 +C2908941|T046|PT|O41.1435|ICD10CM|Placentitis, third trimester, fetus 5|Placentitis, third trimester, fetus 5 +C2908941|T046|AB|O41.1435|ICD10CM|Placentitis, third trimester, fetus 5|Placentitis, third trimester, fetus 5 +C2908942|T046|PT|O41.1439|ICD10CM|Placentitis, third trimester, other fetus|Placentitis, third trimester, other fetus +C2908942|T046|AB|O41.1439|ICD10CM|Placentitis, third trimester, other fetus|Placentitis, third trimester, other fetus +C0032059|T047|AB|O41.149|ICD10CM|Placentitis, unspecified trimester|Placentitis, unspecified trimester +C0032059|T047|HT|O41.149|ICD10CM|Placentitis, unspecified trimester|Placentitis, unspecified trimester +C0032059|T047|AB|O41.1490|ICD10CM|Placentitis, unsp trimester, not applicable or unspecified|Placentitis, unsp trimester, not applicable or unspecified +C0032059|T047|PT|O41.1490|ICD10CM|Placentitis, unspecified trimester, not applicable or unspecified|Placentitis, unspecified trimester, not applicable or unspecified +C2908944|T046|PT|O41.1491|ICD10CM|Placentitis, unspecified trimester, fetus 1|Placentitis, unspecified trimester, fetus 1 +C2908944|T046|AB|O41.1491|ICD10CM|Placentitis, unspecified trimester, fetus 1|Placentitis, unspecified trimester, fetus 1 +C2908945|T046|PT|O41.1492|ICD10CM|Placentitis, unspecified trimester, fetus 2|Placentitis, unspecified trimester, fetus 2 +C2908945|T046|AB|O41.1492|ICD10CM|Placentitis, unspecified trimester, fetus 2|Placentitis, unspecified trimester, fetus 2 +C2908946|T046|PT|O41.1493|ICD10CM|Placentitis, unspecified trimester, fetus 3|Placentitis, unspecified trimester, fetus 3 +C2908946|T046|AB|O41.1493|ICD10CM|Placentitis, unspecified trimester, fetus 3|Placentitis, unspecified trimester, fetus 3 +C2908947|T046|PT|O41.1494|ICD10CM|Placentitis, unspecified trimester, fetus 4|Placentitis, unspecified trimester, fetus 4 +C2908947|T046|AB|O41.1494|ICD10CM|Placentitis, unspecified trimester, fetus 4|Placentitis, unspecified trimester, fetus 4 +C2908948|T046|PT|O41.1495|ICD10CM|Placentitis, unspecified trimester, fetus 5|Placentitis, unspecified trimester, fetus 5 +C2908948|T046|AB|O41.1495|ICD10CM|Placentitis, unspecified trimester, fetus 5|Placentitis, unspecified trimester, fetus 5 +C2908949|T046|PT|O41.1499|ICD10CM|Placentitis, unspecified trimester, other fetus|Placentitis, unspecified trimester, other fetus +C2908949|T046|AB|O41.1499|ICD10CM|Placentitis, unspecified trimester, other fetus|Placentitis, unspecified trimester, other fetus +C0495243|T046|HT|O41.8|ICD10CM|Other specified disorders of amniotic fluid and membranes|Other specified disorders of amniotic fluid and membranes +C0495243|T046|AB|O41.8|ICD10CM|Other specified disorders of amniotic fluid and membranes|Other specified disorders of amniotic fluid and membranes +C0495243|T046|PT|O41.8|ICD10|Other specified disorders of amniotic fluid and membranes|Other specified disorders of amniotic fluid and membranes +C0495243|T046|HT|O41.8X|ICD10CM|Other specified disorders of amniotic fluid and membranes|Other specified disorders of amniotic fluid and membranes +C0495243|T046|AB|O41.8X|ICD10CM|Other specified disorders of amniotic fluid and membranes|Other specified disorders of amniotic fluid and membranes +C2908950|T046|AB|O41.8X1|ICD10CM|Oth disrd of amniotic fluid and membranes, first trimester|Oth disrd of amniotic fluid and membranes, first trimester +C2908950|T046|HT|O41.8X1|ICD10CM|Other specified disorders of amniotic fluid and membranes, first trimester|Other specified disorders of amniotic fluid and membranes, first trimester +C2908951|T046|AB|O41.8X10|ICD10CM|Oth disrd of amniotic fluid and membrns, first tri, unsp|Oth disrd of amniotic fluid and membrns, first tri, unsp +C2908952|T046|AB|O41.8X11|ICD10CM|Oth disrd of amniotic fluid and membrns, first tri, fetus 1|Oth disrd of amniotic fluid and membrns, first tri, fetus 1 +C2908952|T046|PT|O41.8X11|ICD10CM|Other specified disorders of amniotic fluid and membranes, first trimester, fetus 1|Other specified disorders of amniotic fluid and membranes, first trimester, fetus 1 +C2908953|T046|AB|O41.8X12|ICD10CM|Oth disrd of amniotic fluid and membrns, first tri, fetus 2|Oth disrd of amniotic fluid and membrns, first tri, fetus 2 +C2908953|T046|PT|O41.8X12|ICD10CM|Other specified disorders of amniotic fluid and membranes, first trimester, fetus 2|Other specified disorders of amniotic fluid and membranes, first trimester, fetus 2 +C2908954|T046|AB|O41.8X13|ICD10CM|Oth disrd of amniotic fluid and membrns, first tri, fetus 3|Oth disrd of amniotic fluid and membrns, first tri, fetus 3 +C2908954|T046|PT|O41.8X13|ICD10CM|Other specified disorders of amniotic fluid and membranes, first trimester, fetus 3|Other specified disorders of amniotic fluid and membranes, first trimester, fetus 3 +C2908955|T046|AB|O41.8X14|ICD10CM|Oth disrd of amniotic fluid and membrns, first tri, fetus 4|Oth disrd of amniotic fluid and membrns, first tri, fetus 4 +C2908955|T046|PT|O41.8X14|ICD10CM|Other specified disorders of amniotic fluid and membranes, first trimester, fetus 4|Other specified disorders of amniotic fluid and membranes, first trimester, fetus 4 +C2908956|T046|AB|O41.8X15|ICD10CM|Oth disrd of amniotic fluid and membrns, first tri, fetus 5|Oth disrd of amniotic fluid and membrns, first tri, fetus 5 +C2908956|T046|PT|O41.8X15|ICD10CM|Other specified disorders of amniotic fluid and membranes, first trimester, fetus 5|Other specified disorders of amniotic fluid and membranes, first trimester, fetus 5 +C2908957|T046|AB|O41.8X19|ICD10CM|Oth disrd of amniotic fluid and membrns, first tri, oth|Oth disrd of amniotic fluid and membrns, first tri, oth +C2908957|T046|PT|O41.8X19|ICD10CM|Other specified disorders of amniotic fluid and membranes, first trimester, other fetus|Other specified disorders of amniotic fluid and membranes, first trimester, other fetus +C2908958|T046|AB|O41.8X2|ICD10CM|Oth disrd of amniotic fluid and membranes, second trimester|Oth disrd of amniotic fluid and membranes, second trimester +C2908958|T046|HT|O41.8X2|ICD10CM|Other specified disorders of amniotic fluid and membranes, second trimester|Other specified disorders of amniotic fluid and membranes, second trimester +C2908959|T046|AB|O41.8X20|ICD10CM|Oth disrd of amniotic fluid and membrns, second tri, unsp|Oth disrd of amniotic fluid and membrns, second tri, unsp +C2908960|T046|AB|O41.8X21|ICD10CM|Oth disrd of amniotic fluid and membrns, second tri, fetus 1|Oth disrd of amniotic fluid and membrns, second tri, fetus 1 +C2908960|T046|PT|O41.8X21|ICD10CM|Other specified disorders of amniotic fluid and membranes, second trimester, fetus 1|Other specified disorders of amniotic fluid and membranes, second trimester, fetus 1 +C2908961|T046|AB|O41.8X22|ICD10CM|Oth disrd of amniotic fluid and membrns, second tri, fetus 2|Oth disrd of amniotic fluid and membrns, second tri, fetus 2 +C2908961|T046|PT|O41.8X22|ICD10CM|Other specified disorders of amniotic fluid and membranes, second trimester, fetus 2|Other specified disorders of amniotic fluid and membranes, second trimester, fetus 2 +C2908962|T046|AB|O41.8X23|ICD10CM|Oth disrd of amniotic fluid and membrns, second tri, fetus 3|Oth disrd of amniotic fluid and membrns, second tri, fetus 3 +C2908962|T046|PT|O41.8X23|ICD10CM|Other specified disorders of amniotic fluid and membranes, second trimester, fetus 3|Other specified disorders of amniotic fluid and membranes, second trimester, fetus 3 +C2908963|T046|AB|O41.8X24|ICD10CM|Oth disrd of amniotic fluid and membrns, second tri, fetus 4|Oth disrd of amniotic fluid and membrns, second tri, fetus 4 +C2908963|T046|PT|O41.8X24|ICD10CM|Other specified disorders of amniotic fluid and membranes, second trimester, fetus 4|Other specified disorders of amniotic fluid and membranes, second trimester, fetus 4 +C2908964|T046|AB|O41.8X25|ICD10CM|Oth disrd of amniotic fluid and membrns, second tri, fetus 5|Oth disrd of amniotic fluid and membrns, second tri, fetus 5 +C2908964|T046|PT|O41.8X25|ICD10CM|Other specified disorders of amniotic fluid and membranes, second trimester, fetus 5|Other specified disorders of amniotic fluid and membranes, second trimester, fetus 5 +C2908965|T046|AB|O41.8X29|ICD10CM|Oth disrd of amniotic fluid and membrns, second tri, oth|Oth disrd of amniotic fluid and membrns, second tri, oth +C2908965|T046|PT|O41.8X29|ICD10CM|Other specified disorders of amniotic fluid and membranes, second trimester, other fetus|Other specified disorders of amniotic fluid and membranes, second trimester, other fetus +C2908966|T046|AB|O41.8X3|ICD10CM|Oth disrd of amniotic fluid and membranes, third trimester|Oth disrd of amniotic fluid and membranes, third trimester +C2908966|T046|HT|O41.8X3|ICD10CM|Other specified disorders of amniotic fluid and membranes, third trimester|Other specified disorders of amniotic fluid and membranes, third trimester +C2908967|T046|AB|O41.8X30|ICD10CM|Oth disrd of amniotic fluid and membrns, third tri, unsp|Oth disrd of amniotic fluid and membrns, third tri, unsp +C2908968|T046|AB|O41.8X31|ICD10CM|Oth disrd of amniotic fluid and membrns, third tri, fetus 1|Oth disrd of amniotic fluid and membrns, third tri, fetus 1 +C2908968|T046|PT|O41.8X31|ICD10CM|Other specified disorders of amniotic fluid and membranes, third trimester, fetus 1|Other specified disorders of amniotic fluid and membranes, third trimester, fetus 1 +C2908969|T046|AB|O41.8X32|ICD10CM|Oth disrd of amniotic fluid and membrns, third tri, fetus 2|Oth disrd of amniotic fluid and membrns, third tri, fetus 2 +C2908969|T046|PT|O41.8X32|ICD10CM|Other specified disorders of amniotic fluid and membranes, third trimester, fetus 2|Other specified disorders of amniotic fluid and membranes, third trimester, fetus 2 +C2908970|T046|AB|O41.8X33|ICD10CM|Oth disrd of amniotic fluid and membrns, third tri, fetus 3|Oth disrd of amniotic fluid and membrns, third tri, fetus 3 +C2908970|T046|PT|O41.8X33|ICD10CM|Other specified disorders of amniotic fluid and membranes, third trimester, fetus 3|Other specified disorders of amniotic fluid and membranes, third trimester, fetus 3 +C2908971|T046|AB|O41.8X34|ICD10CM|Oth disrd of amniotic fluid and membrns, third tri, fetus 4|Oth disrd of amniotic fluid and membrns, third tri, fetus 4 +C2908971|T046|PT|O41.8X34|ICD10CM|Other specified disorders of amniotic fluid and membranes, third trimester, fetus 4|Other specified disorders of amniotic fluid and membranes, third trimester, fetus 4 +C2908972|T046|AB|O41.8X35|ICD10CM|Oth disrd of amniotic fluid and membrns, third tri, fetus 5|Oth disrd of amniotic fluid and membrns, third tri, fetus 5 +C2908972|T046|PT|O41.8X35|ICD10CM|Other specified disorders of amniotic fluid and membranes, third trimester, fetus 5|Other specified disorders of amniotic fluid and membranes, third trimester, fetus 5 +C2908973|T046|AB|O41.8X39|ICD10CM|Oth disrd of amniotic fluid and membrns, third tri, oth|Oth disrd of amniotic fluid and membrns, third tri, oth +C2908973|T046|PT|O41.8X39|ICD10CM|Other specified disorders of amniotic fluid and membranes, third trimester, other fetus|Other specified disorders of amniotic fluid and membranes, third trimester, other fetus +C0495243|T046|AB|O41.8X9|ICD10CM|Oth disrd of amniotic fluid and membranes, unsp trimester|Oth disrd of amniotic fluid and membranes, unsp trimester +C0495243|T046|HT|O41.8X9|ICD10CM|Other specified disorders of amniotic fluid and membranes, unspecified trimester|Other specified disorders of amniotic fluid and membranes, unspecified trimester +C2908974|T046|AB|O41.8X90|ICD10CM|Oth disrd of amniotic fluid and membrns, unsp tri, unsp|Oth disrd of amniotic fluid and membrns, unsp tri, unsp +C2908975|T046|AB|O41.8X91|ICD10CM|Oth disrd of amniotic fluid and membrns, unsp tri, fetus 1|Oth disrd of amniotic fluid and membrns, unsp tri, fetus 1 +C2908975|T046|PT|O41.8X91|ICD10CM|Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 1|Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 1 +C2908976|T046|AB|O41.8X92|ICD10CM|Oth disrd of amniotic fluid and membrns, unsp tri, fetus 2|Oth disrd of amniotic fluid and membrns, unsp tri, fetus 2 +C2908976|T046|PT|O41.8X92|ICD10CM|Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 2|Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 2 +C2908977|T046|AB|O41.8X93|ICD10CM|Oth disrd of amniotic fluid and membrns, unsp tri, fetus 3|Oth disrd of amniotic fluid and membrns, unsp tri, fetus 3 +C2908977|T046|PT|O41.8X93|ICD10CM|Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 3|Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 3 +C2908978|T046|AB|O41.8X94|ICD10CM|Oth disrd of amniotic fluid and membrns, unsp tri, fetus 4|Oth disrd of amniotic fluid and membrns, unsp tri, fetus 4 +C2908978|T046|PT|O41.8X94|ICD10CM|Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 4|Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 4 +C2908979|T046|AB|O41.8X95|ICD10CM|Oth disrd of amniotic fluid and membrns, unsp tri, fetus 5|Oth disrd of amniotic fluid and membrns, unsp tri, fetus 5 +C2908979|T046|PT|O41.8X95|ICD10CM|Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 5|Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 5 +C2908980|T046|AB|O41.8X99|ICD10CM|Oth disrd of amniotic fluid and membrns, unsp trimester, oth|Oth disrd of amniotic fluid and membrns, unsp trimester, oth +C2908980|T046|PT|O41.8X99|ICD10CM|Other specified disorders of amniotic fluid and membranes, unspecified trimester, other fetus|Other specified disorders of amniotic fluid and membranes, unspecified trimester, other fetus +C2919033|T046|HT|O41.9|ICD10CM|Disorder of amniotic fluid and membranes, unspecified|Disorder of amniotic fluid and membranes, unspecified +C2919033|T046|AB|O41.9|ICD10CM|Disorder of amniotic fluid and membranes, unspecified|Disorder of amniotic fluid and membranes, unspecified +C2919033|T046|PT|O41.9|ICD10|Disorder of amniotic fluid and membranes, unspecified|Disorder of amniotic fluid and membranes, unspecified +C2919033|T046|HT|O41.90|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, unspecified trimester|Disorder of amniotic fluid and membranes, unspecified, unspecified trimester +C2919033|T046|AB|O41.90|ICD10CM|Disorder of amniotic fluid and membrns, unsp, unsp trimester|Disorder of amniotic fluid and membrns, unsp, unsp trimester +C2908981|T046|AB|O41.90X0|ICD10CM|Disorder of amniotic fluid and membrns, unsp, unsp tri, unsp|Disorder of amniotic fluid and membrns, unsp, unsp tri, unsp +C2908982|T046|AB|O41.90X1|ICD10CM|Disorder of amnio fluid and membrns, unsp, unsp tri, fetus 1|Disorder of amnio fluid and membrns, unsp, unsp tri, fetus 1 +C2908982|T046|PT|O41.90X1|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 1|Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 1 +C2908983|T046|AB|O41.90X2|ICD10CM|Disorder of amnio fluid and membrns, unsp, unsp tri, fetus 2|Disorder of amnio fluid and membrns, unsp, unsp tri, fetus 2 +C2908983|T046|PT|O41.90X2|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 2|Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 2 +C2908984|T046|AB|O41.90X3|ICD10CM|Disorder of amnio fluid and membrns, unsp, unsp tri, fetus 3|Disorder of amnio fluid and membrns, unsp, unsp tri, fetus 3 +C2908984|T046|PT|O41.90X3|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 3|Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 3 +C2908985|T046|AB|O41.90X4|ICD10CM|Disorder of amnio fluid and membrns, unsp, unsp tri, fetus 4|Disorder of amnio fluid and membrns, unsp, unsp tri, fetus 4 +C2908985|T046|PT|O41.90X4|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 4|Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 4 +C2908986|T046|AB|O41.90X5|ICD10CM|Disorder of amnio fluid and membrns, unsp, unsp tri, fetus 5|Disorder of amnio fluid and membrns, unsp, unsp tri, fetus 5 +C2908986|T046|PT|O41.90X5|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 5|Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 5 +C2908987|T046|PT|O41.90X9|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, other fetus|Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, other fetus +C2908987|T046|AB|O41.90X9|ICD10CM|Disorder of amniotic fluid and membrns, unsp, unsp tri, oth|Disorder of amniotic fluid and membrns, unsp, unsp tri, oth +C2908988|T046|HT|O41.91|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, first trimester|Disorder of amniotic fluid and membranes, unspecified, first trimester +C2908988|T046|AB|O41.91|ICD10CM|Disorder of amniotic fluid and membrns, unsp, first tri|Disorder of amniotic fluid and membrns, unsp, first tri +C2908989|T046|AB|O41.91X0|ICD10CM|Disorder of amnio fluid and membrns, unsp, first tri, unsp|Disorder of amnio fluid and membrns, unsp, first tri, unsp +C2908990|T046|AB|O41.91X1|ICD10CM|Disord of amnio fluid and membrns, unsp, first tri, fetus 1|Disord of amnio fluid and membrns, unsp, first tri, fetus 1 +C2908990|T046|PT|O41.91X1|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 1|Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 1 +C2908991|T046|AB|O41.91X2|ICD10CM|Disord of amnio fluid and membrns, unsp, first tri, fetus 2|Disord of amnio fluid and membrns, unsp, first tri, fetus 2 +C2908991|T046|PT|O41.91X2|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 2|Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 2 +C2908992|T046|AB|O41.91X3|ICD10CM|Disord of amnio fluid and membrns, unsp, first tri, fetus 3|Disord of amnio fluid and membrns, unsp, first tri, fetus 3 +C2908992|T046|PT|O41.91X3|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 3|Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 3 +C2908993|T046|AB|O41.91X4|ICD10CM|Disord of amnio fluid and membrns, unsp, first tri, fetus 4|Disord of amnio fluid and membrns, unsp, first tri, fetus 4 +C2908993|T046|PT|O41.91X4|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 4|Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 4 +C2908994|T046|AB|O41.91X5|ICD10CM|Disord of amnio fluid and membrns, unsp, first tri, fetus 5|Disord of amnio fluid and membrns, unsp, first tri, fetus 5 +C2908994|T046|PT|O41.91X5|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 5|Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 5 +C2908995|T046|PT|O41.91X9|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, first trimester, other fetus|Disorder of amniotic fluid and membranes, unspecified, first trimester, other fetus +C2908995|T046|AB|O41.91X9|ICD10CM|Disorder of amniotic fluid and membrns, unsp, first tri, oth|Disorder of amniotic fluid and membrns, unsp, first tri, oth +C2908996|T046|HT|O41.92|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, second trimester|Disorder of amniotic fluid and membranes, unspecified, second trimester +C2908996|T046|AB|O41.92|ICD10CM|Disorder of amniotic fluid and membrns, unsp, second tri|Disorder of amniotic fluid and membrns, unsp, second tri +C2908997|T046|AB|O41.92X0|ICD10CM|Disorder of amnio fluid and membrns, unsp, second tri, unsp|Disorder of amnio fluid and membrns, unsp, second tri, unsp +C2908998|T046|AB|O41.92X1|ICD10CM|Disord of amnio fluid and membrns, unsp, second tri, fetus 1|Disord of amnio fluid and membrns, unsp, second tri, fetus 1 +C2908998|T046|PT|O41.92X1|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 1|Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 1 +C2908999|T046|AB|O41.92X2|ICD10CM|Disord of amnio fluid and membrns, unsp, second tri, fetus 2|Disord of amnio fluid and membrns, unsp, second tri, fetus 2 +C2908999|T046|PT|O41.92X2|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 2|Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 2 +C2909000|T046|AB|O41.92X3|ICD10CM|Disord of amnio fluid and membrns, unsp, second tri, fetus 3|Disord of amnio fluid and membrns, unsp, second tri, fetus 3 +C2909000|T046|PT|O41.92X3|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 3|Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 3 +C2909001|T046|AB|O41.92X4|ICD10CM|Disord of amnio fluid and membrns, unsp, second tri, fetus 4|Disord of amnio fluid and membrns, unsp, second tri, fetus 4 +C2909001|T046|PT|O41.92X4|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 4|Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 4 +C2909002|T046|AB|O41.92X5|ICD10CM|Disord of amnio fluid and membrns, unsp, second tri, fetus 5|Disord of amnio fluid and membrns, unsp, second tri, fetus 5 +C2909002|T046|PT|O41.92X5|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 5|Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 5 +C2909003|T046|AB|O41.92X9|ICD10CM|Disorder of amnio fluid and membrns, unsp, second tri, oth|Disorder of amnio fluid and membrns, unsp, second tri, oth +C2909003|T046|PT|O41.92X9|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, second trimester, other fetus|Disorder of amniotic fluid and membranes, unspecified, second trimester, other fetus +C2909004|T046|HT|O41.93|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, third trimester|Disorder of amniotic fluid and membranes, unspecified, third trimester +C2909004|T046|AB|O41.93|ICD10CM|Disorder of amniotic fluid and membrns, unsp, third tri|Disorder of amniotic fluid and membrns, unsp, third tri +C2909005|T046|AB|O41.93X0|ICD10CM|Disorder of amnio fluid and membrns, unsp, third tri, unsp|Disorder of amnio fluid and membrns, unsp, third tri, unsp +C2909006|T046|AB|O41.93X1|ICD10CM|Disord of amnio fluid and membrns, unsp, third tri, fetus 1|Disord of amnio fluid and membrns, unsp, third tri, fetus 1 +C2909006|T046|PT|O41.93X1|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 1|Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 1 +C2909007|T046|AB|O41.93X2|ICD10CM|Disord of amnio fluid and membrns, unsp, third tri, fetus 2|Disord of amnio fluid and membrns, unsp, third tri, fetus 2 +C2909007|T046|PT|O41.93X2|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 2|Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 2 +C2909008|T046|AB|O41.93X3|ICD10CM|Disord of amnio fluid and membrns, unsp, third tri, fetus 3|Disord of amnio fluid and membrns, unsp, third tri, fetus 3 +C2909008|T046|PT|O41.93X3|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 3|Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 3 +C2909009|T046|AB|O41.93X4|ICD10CM|Disord of amnio fluid and membrns, unsp, third tri, fetus 4|Disord of amnio fluid and membrns, unsp, third tri, fetus 4 +C2909009|T046|PT|O41.93X4|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 4|Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 4 +C2909010|T046|AB|O41.93X5|ICD10CM|Disord of amnio fluid and membrns, unsp, third tri, fetus 5|Disord of amnio fluid and membrns, unsp, third tri, fetus 5 +C2909010|T046|PT|O41.93X5|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 5|Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 5 +C2909011|T046|PT|O41.93X9|ICD10CM|Disorder of amniotic fluid and membranes, unspecified, third trimester, other fetus|Disorder of amniotic fluid and membranes, unspecified, third trimester, other fetus +C2909011|T046|AB|O41.93X9|ICD10CM|Disorder of amniotic fluid and membrns, unsp, third tri, oth|Disorder of amniotic fluid and membrns, unsp, third tri, oth +C0015944|T046|HT|O42|ICD10CM|Premature rupture of membranes|Premature rupture of membranes +C0015944|T046|AB|O42|ICD10CM|Premature rupture of membranes|Premature rupture of membranes +C0015944|T046|HT|O42|ICD10|Premature rupture of membranes|Premature rupture of membranes +C0495245|T046|AB|O42.0|ICD10CM|Premature ROM, onset of labor within 24 hours of rupture|Premature ROM, onset of labor within 24 hours of rupture +C0495245|T046|PT|O42.0|ICD10AE|Premature rupture of membranes, onset of labor within 24 hours|Premature rupture of membranes, onset of labor within 24 hours +C0495245|T046|HT|O42.0|ICD10CM|Premature rupture of membranes, onset of labor within 24 hours of rupture|Premature rupture of membranes, onset of labor within 24 hours of rupture +C0495245|T046|PT|O42.0|ICD10|Premature rupture of membranes, onset of labour within 24 hours|Premature rupture of membranes, onset of labour within 24 hours +C0495245|T046|AB|O42.00|ICD10CM|Prem ROM, onset labor w/n 24 hr of rupt, unsp weeks of gest|Prem ROM, onset labor w/n 24 hr of rupt, unsp weeks of gest +C2909024|T046|ET|O42.01|ICD10CM|Premature rupture of membranes before 37 completed weeks of gestation|Premature rupture of membranes before 37 completed weeks of gestation +C2909015|T046|AB|O42.01|ICD10CM|Preterm prem ROM, onset labor within 24 hours of rupture|Preterm prem ROM, onset labor within 24 hours of rupture +C2909015|T046|HT|O42.01|ICD10CM|Preterm premature rupture of membranes, onset of labor within 24 hours of rupture|Preterm premature rupture of membranes, onset of labor within 24 hours of rupture +C2909012|T046|PT|O42.011|ICD10CM|Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, first trimester|Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, first trimester +C2909012|T046|AB|O42.011|ICD10CM|Pretrm prem ROM, onset labor w/n 24 hours of rupt, first tri|Pretrm prem ROM, onset labor w/n 24 hours of rupt, first tri +C2909013|T046|PT|O42.012|ICD10CM|Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, second trimester|Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, second trimester +C2909013|T046|AB|O42.012|ICD10CM|Pretrm prem ROM, onset labor w/n 24 hours of rupt, 2nd tri|Pretrm prem ROM, onset labor w/n 24 hours of rupt, 2nd tri +C2909014|T046|PT|O42.013|ICD10CM|Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, third trimester|Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, third trimester +C2909014|T046|AB|O42.013|ICD10CM|Pretrm prem ROM, onset labor w/n 24 hours of rupt, third tri|Pretrm prem ROM, onset labor w/n 24 hours of rupt, third tri +C2909015|T046|AB|O42.019|ICD10CM|Pretrm prem ROM, onset labor w/n 24 hours of rupt, unsp tri|Pretrm prem ROM, onset labor w/n 24 hours of rupt, unsp tri +C2909016|T046|AB|O42.02|ICD10CM|Full-term prem ROM, onset labor within 24 hours of rupture|Full-term prem ROM, onset labor within 24 hours of rupture +C2909016|T046|PT|O42.02|ICD10CM|Full-term premature rupture of membranes, onset of labor within 24 hours of rupture|Full-term premature rupture of membranes, onset of labor within 24 hours of rupture +C2909017|T046|AB|O42.1|ICD10CM|Premature ROM, onset labor more than 24 hours fol rupture|Premature ROM, onset labor more than 24 hours fol rupture +C0495246|T046|PT|O42.1|ICD10AE|Premature rupture of membranes, onset of labor after 24 hours|Premature rupture of membranes, onset of labor after 24 hours +C2909017|T046|HT|O42.1|ICD10CM|Premature rupture of membranes, onset of labor more than 24 hours following rupture|Premature rupture of membranes, onset of labor more than 24 hours following rupture +C0495246|T046|PT|O42.1|ICD10|Premature rupture of membranes, onset of labour after 24 hours|Premature rupture of membranes, onset of labour after 24 hours +C2909017|T046|AB|O42.10|ICD10CM|Prem ROM, onset labor > 24 hr fol rupt, unsp weeks of gest|Prem ROM, onset labor > 24 hr fol rupt, unsp weeks of gest +C2909024|T046|ET|O42.11|ICD10CM|Premature rupture of membranes before 37 completed weeks of gestation|Premature rupture of membranes before 37 completed weeks of gestation +C2909018|T046|AB|O42.11|ICD10CM|Preterm premature ROM, onset labor > 24 hours fol rupture|Preterm premature ROM, onset labor > 24 hours fol rupture +C2909018|T046|HT|O42.11|ICD10CM|Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture|Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture +C2909019|T046|AB|O42.111|ICD10CM|Pretrm prem ROM, onset labor > 24 hours fol rupt, first tri|Pretrm prem ROM, onset labor > 24 hours fol rupt, first tri +C2909020|T046|AB|O42.112|ICD10CM|Pretrm prem ROM, onset labor > 24 hours fol rupt, second tri|Pretrm prem ROM, onset labor > 24 hours fol rupt, second tri +C2909021|T046|AB|O42.113|ICD10CM|Pretrm prem ROM, onset labor > 24 hours fol rupt, third tri|Pretrm prem ROM, onset labor > 24 hours fol rupt, third tri +C2909018|T046|AB|O42.119|ICD10CM|Pretrm prem ROM, onset labor > 24 hours fol rupt, unsp tri|Pretrm prem ROM, onset labor > 24 hours fol rupt, unsp tri +C2909022|T046|AB|O42.12|ICD10CM|Full-term premature ROM, onset labor > 24 hours fol rupture|Full-term premature ROM, onset labor > 24 hours fol rupture +C2909022|T046|PT|O42.12|ICD10CM|Full-term premature rupture of membranes, onset of labor more than 24 hours following rupture|Full-term premature rupture of membranes, onset of labor more than 24 hours following rupture +C0475576|T046|PT|O42.2|ICD10AE|Premature rupture of membranes, labor delayed by therapy|Premature rupture of membranes, labor delayed by therapy +C0475576|T046|PT|O42.2|ICD10|Premature rupture of membranes, labour delayed by therapy|Premature rupture of membranes, labour delayed by therapy +C2909023|T046|AB|O42.9|ICD10CM|Premature ROM, unsp time betw rupture and onset of labor|Premature ROM, unsp time betw rupture and onset of labor +C0015944|T046|PT|O42.9|ICD10|Premature rupture of membranes, unspecified|Premature rupture of membranes, unspecified +C2909023|T046|HT|O42.9|ICD10CM|Premature rupture of membranes, unspecified as to length of time between rupture and onset of labor|Premature rupture of membranes, unspecified as to length of time between rupture and onset of labor +C2909023|T046|AB|O42.90|ICD10CM|Prem ROM, 7th0 betw rupt & onst labr, unsp weeks of gest|Prem ROM, 7th0 betw rupt & onst labr, unsp weeks of gest +C2909024|T046|ET|O42.91|ICD10CM|Premature rupture of membranes before 37 completed weeks of gestation|Premature rupture of membranes before 37 completed weeks of gestation +C2909025|T046|AB|O42.91|ICD10CM|Preterm prem ROM, unsp time betw rupture and onset labor|Preterm prem ROM, unsp time betw rupture and onset labor +C2909026|T046|AB|O42.911|ICD10CM|Pretrm prem ROM, unsp time betw rupt and onset labr, 1st tri|Pretrm prem ROM, unsp time betw rupt and onset labr, 1st tri +C2909027|T046|AB|O42.912|ICD10CM|Pretrm prem ROM, unsp time betw rupt and onset labr, 2nd tri|Pretrm prem ROM, unsp time betw rupt and onset labr, 2nd tri +C2909028|T046|AB|O42.913|ICD10CM|Pretrm prem ROM, unsp time betw rupt and onst labr, 3rd tri|Pretrm prem ROM, unsp time betw rupt and onst labr, 3rd tri +C2909025|T046|AB|O42.919|ICD10CM|Pretrm prem ROM, unsp time betw rupt and onst labr, unsp tri|Pretrm prem ROM, unsp time betw rupt and onst labr, unsp tri +C2909030|T046|AB|O42.92|ICD10CM|Full-term prem ROM, unsp time betw rupture and onset labor|Full-term prem ROM, unsp time betw rupture and onset labor +C0032045|T046|HT|O43|ICD10|Placental disorders|Placental disorders +C0032045|T046|HT|O43|ICD10CM|Placental disorders|Placental disorders +C0032045|T046|AB|O43|ICD10CM|Placental disorders|Placental disorders +C0348911|T046|PT|O43.0|ICD10|Placental transfusion syndromes|Placental transfusion syndromes +C0348911|T046|HT|O43.0|ICD10CM|Placental transfusion syndromes|Placental transfusion syndromes +C0348911|T046|AB|O43.0|ICD10CM|Placental transfusion syndromes|Placental transfusion syndromes +C2909032|T046|HT|O43.01|ICD10CM|Fetomaternal placental transfusion syndrome|Fetomaternal placental transfusion syndrome +C2909032|T046|AB|O43.01|ICD10CM|Fetomaternal placental transfusion syndrome|Fetomaternal placental transfusion syndrome +C2909031|T046|ET|O43.01|ICD10CM|Maternofetal placental transfusion syndrome|Maternofetal placental transfusion syndrome +C2909033|T046|AB|O43.011|ICD10CM|Fetomaternal placental transfusion syndrome, first trimester|Fetomaternal placental transfusion syndrome, first trimester +C2909033|T046|PT|O43.011|ICD10CM|Fetomaternal placental transfusion syndrome, first trimester|Fetomaternal placental transfusion syndrome, first trimester +C2909034|T046|AB|O43.012|ICD10CM|Fetomaternal placental transfuse syndrome, second trimester|Fetomaternal placental transfuse syndrome, second trimester +C2909034|T046|PT|O43.012|ICD10CM|Fetomaternal placental transfusion syndrome, second trimester|Fetomaternal placental transfusion syndrome, second trimester +C2909035|T046|AB|O43.013|ICD10CM|Fetomaternal placental transfusion syndrome, third trimester|Fetomaternal placental transfusion syndrome, third trimester +C2909035|T046|PT|O43.013|ICD10CM|Fetomaternal placental transfusion syndrome, third trimester|Fetomaternal placental transfusion syndrome, third trimester +C2909032|T046|AB|O43.019|ICD10CM|Fetomaternal placental transfusion syndrome, unsp trimester|Fetomaternal placental transfusion syndrome, unsp trimester +C2909032|T046|PT|O43.019|ICD10CM|Fetomaternal placental transfusion syndrome, unspecified trimester|Fetomaternal placental transfusion syndrome, unspecified trimester +C2909036|T046|HT|O43.02|ICD10CM|Fetus-to-fetus placental transfusion syndrome|Fetus-to-fetus placental transfusion syndrome +C2909036|T046|AB|O43.02|ICD10CM|Fetus-to-fetus placental transfusion syndrome|Fetus-to-fetus placental transfusion syndrome +C2909037|T046|AB|O43.021|ICD10CM|Fetus-to-fetus placental transfuse syndrome, first trimester|Fetus-to-fetus placental transfuse syndrome, first trimester +C2909037|T046|PT|O43.021|ICD10CM|Fetus-to-fetus placental transfusion syndrome, first trimester|Fetus-to-fetus placental transfusion syndrome, first trimester +C2909038|T046|PT|O43.022|ICD10CM|Fetus-to-fetus placental transfusion syndrome, second trimester|Fetus-to-fetus placental transfusion syndrome, second trimester +C2909038|T046|AB|O43.022|ICD10CM|Fetus-to-fetus placntl transfuse syndrome, second trimester|Fetus-to-fetus placntl transfuse syndrome, second trimester +C2909039|T046|AB|O43.023|ICD10CM|Fetus-to-fetus placental transfuse syndrome, third trimester|Fetus-to-fetus placental transfuse syndrome, third trimester +C2909039|T046|PT|O43.023|ICD10CM|Fetus-to-fetus placental transfusion syndrome, third trimester|Fetus-to-fetus placental transfusion syndrome, third trimester +C2909036|T046|AB|O43.029|ICD10CM|Fetus-to-fetus placental transfuse syndrome, unsp trimester|Fetus-to-fetus placental transfuse syndrome, unsp trimester +C2909036|T046|PT|O43.029|ICD10CM|Fetus-to-fetus placental transfusion syndrome, unspecified trimester|Fetus-to-fetus placental transfusion syndrome, unspecified trimester +C0266746|T046|PT|O43.1|ICD10|Malformation of placenta|Malformation of placenta +C0266746|T046|HT|O43.1|ICD10CM|Malformation of placenta|Malformation of placenta +C0266746|T046|AB|O43.1|ICD10CM|Malformation of placenta|Malformation of placenta +C1306893|T046|ET|O43.10|ICD10CM|Abnormal placenta NOS|Abnormal placenta NOS +C0266746|T046|AB|O43.10|ICD10CM|Malformation of placenta, unspecified|Malformation of placenta, unspecified +C0266746|T046|HT|O43.10|ICD10CM|Malformation of placenta, unspecified|Malformation of placenta, unspecified +C2909040|T046|AB|O43.101|ICD10CM|Malformation of placenta, unspecified, first trimester|Malformation of placenta, unspecified, first trimester +C2909040|T046|PT|O43.101|ICD10CM|Malformation of placenta, unspecified, first trimester|Malformation of placenta, unspecified, first trimester +C2909041|T046|AB|O43.102|ICD10CM|Malformation of placenta, unspecified, second trimester|Malformation of placenta, unspecified, second trimester +C2909041|T046|PT|O43.102|ICD10CM|Malformation of placenta, unspecified, second trimester|Malformation of placenta, unspecified, second trimester +C2909042|T046|AB|O43.103|ICD10CM|Malformation of placenta, unspecified, third trimester|Malformation of placenta, unspecified, third trimester +C2909042|T046|PT|O43.103|ICD10CM|Malformation of placenta, unspecified, third trimester|Malformation of placenta, unspecified, third trimester +C2909043|T046|AB|O43.109|ICD10CM|Malformation of placenta, unspecified, unspecified trimester|Malformation of placenta, unspecified, unspecified trimester +C2909043|T046|PT|O43.109|ICD10CM|Malformation of placenta, unspecified, unspecified trimester|Malformation of placenta, unspecified, unspecified trimester +C0266770|T046|HT|O43.11|ICD10CM|Circumvallate placenta|Circumvallate placenta +C0266770|T046|AB|O43.11|ICD10CM|Circumvallate placenta|Circumvallate placenta +C2909044|T046|AB|O43.111|ICD10CM|Circumvallate placenta, first trimester|Circumvallate placenta, first trimester +C2909044|T046|PT|O43.111|ICD10CM|Circumvallate placenta, first trimester|Circumvallate placenta, first trimester +C2909045|T046|AB|O43.112|ICD10CM|Circumvallate placenta, second trimester|Circumvallate placenta, second trimester +C2909045|T046|PT|O43.112|ICD10CM|Circumvallate placenta, second trimester|Circumvallate placenta, second trimester +C2909046|T046|AB|O43.113|ICD10CM|Circumvallate placenta, third trimester|Circumvallate placenta, third trimester +C2909046|T046|PT|O43.113|ICD10CM|Circumvallate placenta, third trimester|Circumvallate placenta, third trimester +C2909047|T046|AB|O43.119|ICD10CM|Circumvallate placenta, unspecified trimester|Circumvallate placenta, unspecified trimester +C2909047|T046|PT|O43.119|ICD10CM|Circumvallate placenta, unspecified trimester|Circumvallate placenta, unspecified trimester +C0266789|T047|HT|O43.12|ICD10CM|Velamentous insertion of umbilical cord|Velamentous insertion of umbilical cord +C0266789|T047|AB|O43.12|ICD10CM|Velamentous insertion of umbilical cord|Velamentous insertion of umbilical cord +C2909048|T046|AB|O43.121|ICD10CM|Velamentous insertion of umbilical cord, first trimester|Velamentous insertion of umbilical cord, first trimester +C2909048|T046|PT|O43.121|ICD10CM|Velamentous insertion of umbilical cord, first trimester|Velamentous insertion of umbilical cord, first trimester +C2909049|T046|AB|O43.122|ICD10CM|Velamentous insertion of umbilical cord, second trimester|Velamentous insertion of umbilical cord, second trimester +C2909049|T046|PT|O43.122|ICD10CM|Velamentous insertion of umbilical cord, second trimester|Velamentous insertion of umbilical cord, second trimester +C2909050|T046|AB|O43.123|ICD10CM|Velamentous insertion of umbilical cord, third trimester|Velamentous insertion of umbilical cord, third trimester +C2909050|T046|PT|O43.123|ICD10CM|Velamentous insertion of umbilical cord, third trimester|Velamentous insertion of umbilical cord, third trimester +C0266789|T047|AB|O43.129|ICD10CM|Velamentous insertion of umbilical cord, unsp trimester|Velamentous insertion of umbilical cord, unsp trimester +C0266789|T047|PT|O43.129|ICD10CM|Velamentous insertion of umbilical cord, unspecified trimester|Velamentous insertion of umbilical cord, unspecified trimester +C2909054|T046|AB|O43.19|ICD10CM|Other malformation of placenta|Other malformation of placenta +C2909054|T046|HT|O43.19|ICD10CM|Other malformation of placenta|Other malformation of placenta +C2909051|T046|AB|O43.191|ICD10CM|Other malformation of placenta, first trimester|Other malformation of placenta, first trimester +C2909051|T046|PT|O43.191|ICD10CM|Other malformation of placenta, first trimester|Other malformation of placenta, first trimester +C2909052|T046|AB|O43.192|ICD10CM|Other malformation of placenta, second trimester|Other malformation of placenta, second trimester +C2909052|T046|PT|O43.192|ICD10CM|Other malformation of placenta, second trimester|Other malformation of placenta, second trimester +C2909053|T046|AB|O43.193|ICD10CM|Other malformation of placenta, third trimester|Other malformation of placenta, third trimester +C2909053|T046|PT|O43.193|ICD10CM|Other malformation of placenta, third trimester|Other malformation of placenta, third trimester +C2909054|T046|AB|O43.199|ICD10CM|Other malformation of placenta, unspecified trimester|Other malformation of placenta, unspecified trimester +C2909054|T046|PT|O43.199|ICD10CM|Other malformation of placenta, unspecified trimester|Other malformation of placenta, unspecified trimester +C0405107|T046|HT|O43.2|ICD10CM|Morbidly adherent placenta|Morbidly adherent placenta +C0405107|T046|AB|O43.2|ICD10CM|Morbidly adherent placenta|Morbidly adherent placenta +C0032044|T046|HT|O43.21|ICD10CM|Placenta accreta|Placenta accreta +C0032044|T046|AB|O43.21|ICD10CM|Placenta accreta|Placenta accreta +C2909055|T046|AB|O43.211|ICD10CM|Placenta accreta, first trimester|Placenta accreta, first trimester +C2909055|T046|PT|O43.211|ICD10CM|Placenta accreta, first trimester|Placenta accreta, first trimester +C2909056|T046|AB|O43.212|ICD10CM|Placenta accreta, second trimester|Placenta accreta, second trimester +C2909056|T046|PT|O43.212|ICD10CM|Placenta accreta, second trimester|Placenta accreta, second trimester +C2909057|T046|AB|O43.213|ICD10CM|Placenta accreta, third trimester|Placenta accreta, third trimester +C2909057|T046|PT|O43.213|ICD10CM|Placenta accreta, third trimester|Placenta accreta, third trimester +C2909058|T046|AB|O43.219|ICD10CM|Placenta accreta, unspecified trimester|Placenta accreta, unspecified trimester +C2909058|T046|PT|O43.219|ICD10CM|Placenta accreta, unspecified trimester|Placenta accreta, unspecified trimester +C0266765|T046|HT|O43.22|ICD10CM|Placenta increta|Placenta increta +C0266765|T046|AB|O43.22|ICD10CM|Placenta increta|Placenta increta +C2909059|T046|AB|O43.221|ICD10CM|Placenta increta, first trimester|Placenta increta, first trimester +C2909059|T046|PT|O43.221|ICD10CM|Placenta increta, first trimester|Placenta increta, first trimester +C2909060|T046|AB|O43.222|ICD10CM|Placenta increta, second trimester|Placenta increta, second trimester +C2909060|T046|PT|O43.222|ICD10CM|Placenta increta, second trimester|Placenta increta, second trimester +C2909061|T046|AB|O43.223|ICD10CM|Placenta increta, third trimester|Placenta increta, third trimester +C2909061|T046|PT|O43.223|ICD10CM|Placenta increta, third trimester|Placenta increta, third trimester +C2909062|T046|AB|O43.229|ICD10CM|Placenta increta, unspecified trimester|Placenta increta, unspecified trimester +C2909062|T046|PT|O43.229|ICD10CM|Placenta increta, unspecified trimester|Placenta increta, unspecified trimester +C0266766|T046|HT|O43.23|ICD10CM|Placenta percreta|Placenta percreta +C0266766|T046|AB|O43.23|ICD10CM|Placenta percreta|Placenta percreta +C2909063|T046|PT|O43.231|ICD10CM|Placenta percreta, first trimester|Placenta percreta, first trimester +C2909063|T046|AB|O43.231|ICD10CM|Placenta percreta, first trimester|Placenta percreta, first trimester +C2909064|T046|AB|O43.232|ICD10CM|Placenta percreta, second trimester|Placenta percreta, second trimester +C2909064|T046|PT|O43.232|ICD10CM|Placenta percreta, second trimester|Placenta percreta, second trimester +C2909065|T046|AB|O43.233|ICD10CM|Placenta percreta, third trimester|Placenta percreta, third trimester +C2909065|T046|PT|O43.233|ICD10CM|Placenta percreta, third trimester|Placenta percreta, third trimester +C2909066|T046|AB|O43.239|ICD10CM|Placenta percreta, unspecified trimester|Placenta percreta, unspecified trimester +C2909066|T046|PT|O43.239|ICD10CM|Placenta percreta, unspecified trimester|Placenta percreta, unspecified trimester +C0477835|T046|HT|O43.8|ICD10CM|Other placental disorders|Other placental disorders +C0477835|T046|AB|O43.8|ICD10CM|Other placental disorders|Other placental disorders +C0477835|T046|PT|O43.8|ICD10|Other placental disorders|Other placental disorders +C0554393|T046|HT|O43.81|ICD10CM|Placental infarction|Placental infarction +C0554393|T046|AB|O43.81|ICD10CM|Placental infarction|Placental infarction +C2909067|T046|AB|O43.811|ICD10CM|Placental infarction, first trimester|Placental infarction, first trimester +C2909067|T046|PT|O43.811|ICD10CM|Placental infarction, first trimester|Placental infarction, first trimester +C2909068|T046|AB|O43.812|ICD10CM|Placental infarction, second trimester|Placental infarction, second trimester +C2909068|T046|PT|O43.812|ICD10CM|Placental infarction, second trimester|Placental infarction, second trimester +C2909069|T046|AB|O43.813|ICD10CM|Placental infarction, third trimester|Placental infarction, third trimester +C2909069|T046|PT|O43.813|ICD10CM|Placental infarction, third trimester|Placental infarction, third trimester +C0554393|T046|AB|O43.819|ICD10CM|Placental infarction, unspecified trimester|Placental infarction, unspecified trimester +C0554393|T046|PT|O43.819|ICD10CM|Placental infarction, unspecified trimester|Placental infarction, unspecified trimester +C0477835|T046|HT|O43.89|ICD10CM|Other placental disorders|Other placental disorders +C0477835|T046|AB|O43.89|ICD10CM|Other placental disorders|Other placental disorders +C1395512|T047|ET|O43.89|ICD10CM|Placental dysfunction|Placental dysfunction +C2909070|T046|AB|O43.891|ICD10CM|Other placental disorders, first trimester|Other placental disorders, first trimester +C2909070|T046|PT|O43.891|ICD10CM|Other placental disorders, first trimester|Other placental disorders, first trimester +C2909071|T046|AB|O43.892|ICD10CM|Other placental disorders, second trimester|Other placental disorders, second trimester +C2909071|T046|PT|O43.892|ICD10CM|Other placental disorders, second trimester|Other placental disorders, second trimester +C2909072|T046|AB|O43.893|ICD10CM|Other placental disorders, third trimester|Other placental disorders, third trimester +C2909072|T046|PT|O43.893|ICD10CM|Other placental disorders, third trimester|Other placental disorders, third trimester +C0477835|T046|AB|O43.899|ICD10CM|Other placental disorders, unspecified trimester|Other placental disorders, unspecified trimester +C0477835|T046|PT|O43.899|ICD10CM|Other placental disorders, unspecified trimester|Other placental disorders, unspecified trimester +C0032045|T046|PT|O43.9|ICD10|Placental disorder, unspecified|Placental disorder, unspecified +C0032045|T046|AB|O43.9|ICD10CM|Unspecified placental disorder|Unspecified placental disorder +C0032045|T046|HT|O43.9|ICD10CM|Unspecified placental disorder|Unspecified placental disorder +C0032045|T046|AB|O43.90|ICD10CM|Unspecified placental disorder, unspecified trimester|Unspecified placental disorder, unspecified trimester +C0032045|T046|PT|O43.90|ICD10CM|Unspecified placental disorder, unspecified trimester|Unspecified placental disorder, unspecified trimester +C2909073|T046|AB|O43.91|ICD10CM|Unspecified placental disorder, first trimester|Unspecified placental disorder, first trimester +C2909073|T046|PT|O43.91|ICD10CM|Unspecified placental disorder, first trimester|Unspecified placental disorder, first trimester +C2909074|T046|AB|O43.92|ICD10CM|Unspecified placental disorder, second trimester|Unspecified placental disorder, second trimester +C2909074|T046|PT|O43.92|ICD10CM|Unspecified placental disorder, second trimester|Unspecified placental disorder, second trimester +C2909075|T046|AB|O43.93|ICD10CM|Unspecified placental disorder, third trimester|Unspecified placental disorder, third trimester +C2909075|T046|PT|O43.93|ICD10CM|Unspecified placental disorder, third trimester|Unspecified placental disorder, third trimester +C0032046|T046|HT|O44|ICD10|Placenta praevia|Placenta praevia +C0032046|T046|HT|O44|ICD10CM|Placenta previa|Placenta previa +C0032046|T046|AB|O44|ICD10CM|Placenta previa|Placenta previa +C4269020|T046|AB|O44.0|ICD10CM|Complete placenta previa NOS or without hemorrhage|Complete placenta previa NOS or without hemorrhage +C4269020|T046|HT|O44.0|ICD10CM|Complete placenta previa NOS or without hemorrhage|Complete placenta previa NOS or without hemorrhage +C0156617|T046|PT|O44.0|ICD10|Placenta praevia specified as without haemorrhage|Placenta praevia specified as without haemorrhage +C0156617|T046|PT|O44.0|ICD10AE|Placenta praevia specified as without hemorrhage|Placenta praevia specified as without hemorrhage +C0032046|T046|ET|O44.0|ICD10CM|Placenta previa NOS|Placenta previa NOS +C4269021|T046|AB|O44.00|ICD10CM|Complete placenta previa NOS or without hemor, unsp tri|Complete placenta previa NOS or without hemor, unsp tri +C4269021|T046|PT|O44.00|ICD10CM|Complete placenta previa NOS or without hemorrhage, unspecified trimester|Complete placenta previa NOS or without hemorrhage, unspecified trimester +C4269022|T046|AB|O44.01|ICD10CM|Complete placenta previa NOS or without hemor, first tri|Complete placenta previa NOS or without hemor, first tri +C4269022|T046|PT|O44.01|ICD10CM|Complete placenta previa NOS or without hemorrhage, first trimester|Complete placenta previa NOS or without hemorrhage, first trimester +C4269023|T046|AB|O44.02|ICD10CM|Complete placenta previa NOS or without hemor, second tri|Complete placenta previa NOS or without hemor, second tri +C4269023|T046|PT|O44.02|ICD10CM|Complete placenta previa NOS or without hemorrhage, second trimester|Complete placenta previa NOS or without hemorrhage, second trimester +C4269024|T046|AB|O44.03|ICD10CM|Complete placenta previa NOS or without hemor, third tri|Complete placenta previa NOS or without hemor, third tri +C4269024|T046|PT|O44.03|ICD10CM|Complete placenta previa NOS or without hemorrhage, third trimester|Complete placenta previa NOS or without hemorrhage, third trimester +C4269025|T046|AB|O44.1|ICD10CM|Complete placenta previa with hemorrhage|Complete placenta previa with hemorrhage +C4269025|T046|HT|O44.1|ICD10CM|Complete placenta previa with hemorrhage|Complete placenta previa with hemorrhage +C0156621|T046|PT|O44.1|ICD10|Placenta praevia with haemorrhage|Placenta praevia with haemorrhage +C0156621|T046|PT|O44.1|ICD10AE|Placenta praevia with hemorrhage|Placenta praevia with hemorrhage +C4269026|T046|AB|O44.10|ICD10CM|Complete placenta previa with hemorrhage, unsp trimester|Complete placenta previa with hemorrhage, unsp trimester +C4269026|T046|PT|O44.10|ICD10CM|Complete placenta previa with hemorrhage, unspecified trimester|Complete placenta previa with hemorrhage, unspecified trimester +C4269027|T046|AB|O44.11|ICD10CM|Complete placenta previa with hemorrhage, first trimester|Complete placenta previa with hemorrhage, first trimester +C4269027|T046|PT|O44.11|ICD10CM|Complete placenta previa with hemorrhage, first trimester|Complete placenta previa with hemorrhage, first trimester +C4269028|T046|AB|O44.12|ICD10CM|Complete placenta previa with hemorrhage, second trimester|Complete placenta previa with hemorrhage, second trimester +C4269028|T046|PT|O44.12|ICD10CM|Complete placenta previa with hemorrhage, second trimester|Complete placenta previa with hemorrhage, second trimester +C4269029|T046|AB|O44.13|ICD10CM|Complete placenta previa with hemorrhage, third trimester|Complete placenta previa with hemorrhage, third trimester +C4269029|T046|PT|O44.13|ICD10CM|Complete placenta previa with hemorrhage, third trimester|Complete placenta previa with hemorrhage, third trimester +C4269031|T046|ET|O44.2|ICD10CM|Marginal placenta previa, NOS or without hemorrhage|Marginal placenta previa, NOS or without hemorrhage +C4269030|T046|AB|O44.2|ICD10CM|Partial placenta previa without hemorrhage|Partial placenta previa without hemorrhage +C4269030|T046|HT|O44.2|ICD10CM|Partial placenta previa without hemorrhage|Partial placenta previa without hemorrhage +C4269032|T046|AB|O44.20|ICD10CM|Partial placenta previa NOS or without hemor, unsp trimester|Partial placenta previa NOS or without hemor, unsp trimester +C4269032|T046|PT|O44.20|ICD10CM|Partial placenta previa NOS or without hemorrhage, unspecified trimester|Partial placenta previa NOS or without hemorrhage, unspecified trimester +C4269033|T046|AB|O44.21|ICD10CM|Partial placenta previa NOS or without hemor, first tri|Partial placenta previa NOS or without hemor, first tri +C4269033|T046|PT|O44.21|ICD10CM|Partial placenta previa NOS or without hemorrhage, first trimester|Partial placenta previa NOS or without hemorrhage, first trimester +C4269034|T046|AB|O44.22|ICD10CM|Partial placenta previa NOS or without hemor, second tri|Partial placenta previa NOS or without hemor, second tri +C4269034|T046|PT|O44.22|ICD10CM|Partial placenta previa NOS or without hemorrhage, second trimester|Partial placenta previa NOS or without hemorrhage, second trimester +C4269035|T046|AB|O44.23|ICD10CM|Partial placenta previa NOS or without hemor, third tri|Partial placenta previa NOS or without hemor, third tri +C4269035|T046|PT|O44.23|ICD10CM|Partial placenta previa NOS or without hemorrhage, third trimester|Partial placenta previa NOS or without hemorrhage, third trimester +C4269037|T046|ET|O44.3|ICD10CM|Marginal placenta previa with hemorrhage|Marginal placenta previa with hemorrhage +C4269036|T047|HT|O44.3|ICD10CM|Partial placenta previa with hemorrhage|Partial placenta previa with hemorrhage +C4269036|T047|AB|O44.3|ICD10CM|Partial placenta previa with hemorrhage|Partial placenta previa with hemorrhage +C4269038|T046|AB|O44.30|ICD10CM|Partial placenta previa with hemorrhage, unsp trimester|Partial placenta previa with hemorrhage, unsp trimester +C4269038|T046|PT|O44.30|ICD10CM|Partial placenta previa with hemorrhage, unspecified trimester|Partial placenta previa with hemorrhage, unspecified trimester +C4269039|T046|AB|O44.31|ICD10CM|Partial placenta previa with hemorrhage, first trimester|Partial placenta previa with hemorrhage, first trimester +C4269039|T046|PT|O44.31|ICD10CM|Partial placenta previa with hemorrhage, first trimester|Partial placenta previa with hemorrhage, first trimester +C4269040|T046|AB|O44.32|ICD10CM|Partial placenta previa with hemorrhage, second trimester|Partial placenta previa with hemorrhage, second trimester +C4269040|T046|PT|O44.32|ICD10CM|Partial placenta previa with hemorrhage, second trimester|Partial placenta previa with hemorrhage, second trimester +C4269041|T046|AB|O44.33|ICD10CM|Partial placenta previa with hemorrhage, third trimester|Partial placenta previa with hemorrhage, third trimester +C4269041|T046|PT|O44.33|ICD10CM|Partial placenta previa with hemorrhage, third trimester|Partial placenta previa with hemorrhage, third trimester +C4269042|T046|ET|O44.4|ICD10CM|Low implantation of placenta NOS or without hemorrhage|Low implantation of placenta NOS or without hemorrhage +C4269042|T046|AB|O44.4|ICD10CM|Low lying placenta NOS or without hemorrhage|Low lying placenta NOS or without hemorrhage +C4269042|T046|HT|O44.4|ICD10CM|Low lying placenta NOS or without hemorrhage|Low lying placenta NOS or without hemorrhage +C4269043|T046|AB|O44.40|ICD10CM|Low lying placenta NOS or without hemorrhage, unsp trimester|Low lying placenta NOS or without hemorrhage, unsp trimester +C4269043|T046|PT|O44.40|ICD10CM|Low lying placenta NOS or without hemorrhage, unspecified trimester|Low lying placenta NOS or without hemorrhage, unspecified trimester +C4269044|T046|AB|O44.41|ICD10CM|Low lying placenta NOS or without hemor, first trimester|Low lying placenta NOS or without hemor, first trimester +C4269044|T046|PT|O44.41|ICD10CM|Low lying placenta NOS or without hemorrhage, first trimester|Low lying placenta NOS or without hemorrhage, first trimester +C4269045|T046|AB|O44.42|ICD10CM|Low lying placenta NOS or without hemor, second trimester|Low lying placenta NOS or without hemor, second trimester +C4269045|T046|PT|O44.42|ICD10CM|Low lying placenta NOS or without hemorrhage, second trimester|Low lying placenta NOS or without hemorrhage, second trimester +C4269046|T046|AB|O44.43|ICD10CM|Low lying placenta NOS or without hemor, third trimester|Low lying placenta NOS or without hemor, third trimester +C4269046|T046|PT|O44.43|ICD10CM|Low lying placenta NOS or without hemorrhage, third trimester|Low lying placenta NOS or without hemorrhage, third trimester +C4269047|T046|ET|O44.5|ICD10CM|Low implantation of placenta with hemorrhage|Low implantation of placenta with hemorrhage +C4269047|T046|AB|O44.5|ICD10CM|Low lying placenta with hemorrhage|Low lying placenta with hemorrhage +C4269047|T046|HT|O44.5|ICD10CM|Low lying placenta with hemorrhage|Low lying placenta with hemorrhage +C4269048|T046|AB|O44.50|ICD10CM|Low lying placenta with hemorrhage, unspecified trimester|Low lying placenta with hemorrhage, unspecified trimester +C4269048|T046|PT|O44.50|ICD10CM|Low lying placenta with hemorrhage, unspecified trimester|Low lying placenta with hemorrhage, unspecified trimester +C4269049|T046|AB|O44.51|ICD10CM|Low lying placenta with hemorrhage, first trimester|Low lying placenta with hemorrhage, first trimester +C4269049|T046|PT|O44.51|ICD10CM|Low lying placenta with hemorrhage, first trimester|Low lying placenta with hemorrhage, first trimester +C4269050|T046|AB|O44.52|ICD10CM|Low lying placenta with hemorrhage, second trimester|Low lying placenta with hemorrhage, second trimester +C4269050|T046|PT|O44.52|ICD10CM|Low lying placenta with hemorrhage, second trimester|Low lying placenta with hemorrhage, second trimester +C4269051|T046|AB|O44.53|ICD10CM|Low lying placenta with hemorrhage, third trimester|Low lying placenta with hemorrhage, third trimester +C4269051|T046|PT|O44.53|ICD10CM|Low lying placenta with hemorrhage, third trimester|Low lying placenta with hemorrhage, third trimester +C0000832|T046|AB|O45|ICD10CM|Premature separation of placenta [abruptio placentae]|Premature separation of placenta [abruptio placentae] +C0000832|T046|HT|O45|ICD10CM|Premature separation of placenta [abruptio placentae]|Premature separation of placenta [abruptio placentae] +C0000832|T046|HT|O45|ICD10|Premature separation of placenta [abruptio placentae]|Premature separation of placenta [abruptio placentae] +C0451794|T046|HT|O45.0|ICD10CM|Premature separation of placenta with coagulation defect|Premature separation of placenta with coagulation defect +C0451794|T046|AB|O45.0|ICD10CM|Premature separation of placenta with coagulation defect|Premature separation of placenta with coagulation defect +C0451794|T046|PT|O45.0|ICD10|Premature separation of placenta with coagulation defect|Premature separation of placenta with coagulation defect +C0451794|T046|AB|O45.00|ICD10CM|Premature separation of placenta w coagulation defect, unsp|Premature separation of placenta w coagulation defect, unsp +C0451794|T046|HT|O45.00|ICD10CM|Premature separation of placenta with coagulation defect, unspecified|Premature separation of placenta with coagulation defect, unspecified +C2909086|T046|AB|O45.001|ICD10CM|Prem separtn of placenta w coag defect, unsp, first tri|Prem separtn of placenta w coag defect, unsp, first tri +C2909086|T046|PT|O45.001|ICD10CM|Premature separation of placenta with coagulation defect, unspecified, first trimester|Premature separation of placenta with coagulation defect, unspecified, first trimester +C2909087|T046|AB|O45.002|ICD10CM|Prem separtn of placenta w coag defect, unsp, second tri|Prem separtn of placenta w coag defect, unsp, second tri +C2909087|T046|PT|O45.002|ICD10CM|Premature separation of placenta with coagulation defect, unspecified, second trimester|Premature separation of placenta with coagulation defect, unspecified, second trimester +C2909088|T046|AB|O45.003|ICD10CM|Prem separtn of placenta w coag defect, unsp, third tri|Prem separtn of placenta w coag defect, unsp, third tri +C2909088|T046|PT|O45.003|ICD10CM|Premature separation of placenta with coagulation defect, unspecified, third trimester|Premature separation of placenta with coagulation defect, unspecified, third trimester +C0451794|T046|AB|O45.009|ICD10CM|Prem separtn of placenta w coag defect, unsp, unsp trimester|Prem separtn of placenta w coag defect, unsp, unsp trimester +C0451794|T046|PT|O45.009|ICD10CM|Premature separation of placenta with coagulation defect, unspecified, unspecified trimester|Premature separation of placenta with coagulation defect, unspecified, unspecified trimester +C2909090|T046|AB|O45.01|ICD10CM|Premature separation of placenta with afibrinogenemia|Premature separation of placenta with afibrinogenemia +C2909090|T046|HT|O45.01|ICD10CM|Premature separation of placenta with afibrinogenemia|Premature separation of placenta with afibrinogenemia +C2909089|T046|ET|O45.01|ICD10CM|Premature separation of placenta with hypofibrinogenemia|Premature separation of placenta with hypofibrinogenemia +C2909091|T046|AB|O45.011|ICD10CM|Prem separtn of placenta w afibrinogenemia, first trimester|Prem separtn of placenta w afibrinogenemia, first trimester +C2909091|T046|PT|O45.011|ICD10CM|Premature separation of placenta with afibrinogenemia, first trimester|Premature separation of placenta with afibrinogenemia, first trimester +C2909092|T046|AB|O45.012|ICD10CM|Prem separtn of placenta w afibrinogenemia, second trimester|Prem separtn of placenta w afibrinogenemia, second trimester +C2909092|T046|PT|O45.012|ICD10CM|Premature separation of placenta with afibrinogenemia, second trimester|Premature separation of placenta with afibrinogenemia, second trimester +C2909093|T046|AB|O45.013|ICD10CM|Prem separtn of placenta w afibrinogenemia, third trimester|Prem separtn of placenta w afibrinogenemia, third trimester +C2909093|T046|PT|O45.013|ICD10CM|Premature separation of placenta with afibrinogenemia, third trimester|Premature separation of placenta with afibrinogenemia, third trimester +C2909090|T046|AB|O45.019|ICD10CM|Prem separtn of placenta w afibrinogenemia, unsp trimester|Prem separtn of placenta w afibrinogenemia, unsp trimester +C2909090|T046|PT|O45.019|ICD10CM|Premature separation of placenta with afibrinogenemia, unspecified trimester|Premature separation of placenta with afibrinogenemia, unspecified trimester +C2909094|T046|AB|O45.02|ICD10CM|Premature separation of placenta w dissem intravasc coag|Premature separation of placenta w dissem intravasc coag +C2909094|T046|HT|O45.02|ICD10CM|Premature separation of placenta with disseminated intravascular coagulation|Premature separation of placenta with disseminated intravascular coagulation +C2909095|T046|AB|O45.021|ICD10CM|Prem separtn of placenta w dissem intravasc coag, first tri|Prem separtn of placenta w dissem intravasc coag, first tri +C2909095|T046|PT|O45.021|ICD10CM|Premature separation of placenta with disseminated intravascular coagulation, first trimester|Premature separation of placenta with disseminated intravascular coagulation, first trimester +C2909096|T046|AB|O45.022|ICD10CM|Prem separtn of placenta w dissem intravasc coag, second tri|Prem separtn of placenta w dissem intravasc coag, second tri +C2909096|T046|PT|O45.022|ICD10CM|Premature separation of placenta with disseminated intravascular coagulation, second trimester|Premature separation of placenta with disseminated intravascular coagulation, second trimester +C2909097|T046|AB|O45.023|ICD10CM|Prem separtn of placenta w dissem intravasc coag, third tri|Prem separtn of placenta w dissem intravasc coag, third tri +C2909097|T046|PT|O45.023|ICD10CM|Premature separation of placenta with disseminated intravascular coagulation, third trimester|Premature separation of placenta with disseminated intravascular coagulation, third trimester +C2909094|T046|AB|O45.029|ICD10CM|Prem separtn of placenta w dissem intravasc coag, unsp tri|Prem separtn of placenta w dissem intravasc coag, unsp tri +C2909094|T046|PT|O45.029|ICD10CM|Premature separation of placenta with disseminated intravascular coagulation, unspecified trimester|Premature separation of placenta with disseminated intravascular coagulation, unspecified trimester +C2909098|T046|AB|O45.09|ICD10CM|Premature separation of placenta with oth coagulation defect|Premature separation of placenta with oth coagulation defect +C2909098|T046|HT|O45.09|ICD10CM|Premature separation of placenta with other coagulation defect|Premature separation of placenta with other coagulation defect +C2909099|T046|AB|O45.091|ICD10CM|Prem separtn of placenta w oth coag defect, first trimester|Prem separtn of placenta w oth coag defect, first trimester +C2909099|T046|PT|O45.091|ICD10CM|Premature separation of placenta with other coagulation defect, first trimester|Premature separation of placenta with other coagulation defect, first trimester +C2909100|T046|AB|O45.092|ICD10CM|Prem separtn of placenta w oth coag defect, second trimester|Prem separtn of placenta w oth coag defect, second trimester +C2909100|T046|PT|O45.092|ICD10CM|Premature separation of placenta with other coagulation defect, second trimester|Premature separation of placenta with other coagulation defect, second trimester +C2909101|T046|AB|O45.093|ICD10CM|Prem separtn of placenta w oth coag defect, third trimester|Prem separtn of placenta w oth coag defect, third trimester +C2909101|T046|PT|O45.093|ICD10CM|Premature separation of placenta with other coagulation defect, third trimester|Premature separation of placenta with other coagulation defect, third trimester +C2909098|T046|AB|O45.099|ICD10CM|Prem separtn of placenta w oth coag defect, unsp trimester|Prem separtn of placenta w oth coag defect, unsp trimester +C2909098|T046|PT|O45.099|ICD10CM|Premature separation of placenta with other coagulation defect, unspecified trimester|Premature separation of placenta with other coagulation defect, unspecified trimester +C0477836|T046|HT|O45.8|ICD10CM|Other premature separation of placenta|Other premature separation of placenta +C0477836|T046|AB|O45.8|ICD10CM|Other premature separation of placenta|Other premature separation of placenta +C0477836|T046|PT|O45.8|ICD10|Other premature separation of placenta|Other premature separation of placenta +C0477836|T046|HT|O45.8X|ICD10CM|Other premature separation of placenta|Other premature separation of placenta +C0477836|T046|AB|O45.8X|ICD10CM|Other premature separation of placenta|Other premature separation of placenta +C2909102|T046|AB|O45.8X1|ICD10CM|Other premature separation of placenta, first trimester|Other premature separation of placenta, first trimester +C2909102|T046|PT|O45.8X1|ICD10CM|Other premature separation of placenta, first trimester|Other premature separation of placenta, first trimester +C2909103|T046|AB|O45.8X2|ICD10CM|Other premature separation of placenta, second trimester|Other premature separation of placenta, second trimester +C2909103|T046|PT|O45.8X2|ICD10CM|Other premature separation of placenta, second trimester|Other premature separation of placenta, second trimester +C2909104|T046|AB|O45.8X3|ICD10CM|Other premature separation of placenta, third trimester|Other premature separation of placenta, third trimester +C2909104|T046|PT|O45.8X3|ICD10CM|Other premature separation of placenta, third trimester|Other premature separation of placenta, third trimester +C0477836|T046|AB|O45.8X9|ICD10CM|Other premature separation of placenta, unsp trimester|Other premature separation of placenta, unsp trimester +C0477836|T046|PT|O45.8X9|ICD10CM|Other premature separation of placenta, unspecified trimester|Other premature separation of placenta, unspecified trimester +C0000832|T046|ET|O45.9|ICD10CM|Abruptio placentae NOS|Abruptio placentae NOS +C0000832|T046|HT|O45.9|ICD10CM|Premature separation of placenta, unspecified|Premature separation of placenta, unspecified +C0000832|T046|AB|O45.9|ICD10CM|Premature separation of placenta, unspecified|Premature separation of placenta, unspecified +C0000832|T046|PT|O45.9|ICD10|Premature separation of placenta, unspecified|Premature separation of placenta, unspecified +C0000832|T046|AB|O45.90|ICD10CM|Premature separation of placenta, unsp, unsp trimester|Premature separation of placenta, unsp, unsp trimester +C0000832|T046|PT|O45.90|ICD10CM|Premature separation of placenta, unspecified, unspecified trimester|Premature separation of placenta, unspecified, unspecified trimester +C2909105|T046|AB|O45.91|ICD10CM|Premature separation of placenta, unsp, first trimester|Premature separation of placenta, unsp, first trimester +C2909105|T046|PT|O45.91|ICD10CM|Premature separation of placenta, unspecified, first trimester|Premature separation of placenta, unspecified, first trimester +C2909106|T046|AB|O45.92|ICD10CM|Premature separation of placenta, unsp, second trimester|Premature separation of placenta, unsp, second trimester +C2909106|T046|PT|O45.92|ICD10CM|Premature separation of placenta, unspecified, second trimester|Premature separation of placenta, unspecified, second trimester +C2909107|T046|AB|O45.93|ICD10CM|Premature separation of placenta, unsp, third trimester|Premature separation of placenta, unsp, third trimester +C2909107|T046|PT|O45.93|ICD10CM|Premature separation of placenta, unspecified, third trimester|Premature separation of placenta, unspecified, third trimester +C0495251|T046|HT|O46|ICD10|Antepartum haemorrhage, not elsewhere classified|Antepartum haemorrhage, not elsewhere classified +C0495251|T046|HT|O46|ICD10AE|Antepartum hemorrhage, not elsewhere classified|Antepartum hemorrhage, not elsewhere classified +C0495251|T046|AB|O46|ICD10CM|Antepartum hemorrhage, not elsewhere classified|Antepartum hemorrhage, not elsewhere classified +C0495251|T046|HT|O46|ICD10CM|Antepartum hemorrhage, not elsewhere classified|Antepartum hemorrhage, not elsewhere classified +C0156631|T046|PT|O46.0|ICD10|Antepartum haemorrhage with coagulation defect|Antepartum haemorrhage with coagulation defect +C0156631|T046|PT|O46.0|ICD10AE|Antepartum hemorrhage with coagulation defect|Antepartum hemorrhage with coagulation defect +C0156631|T046|HT|O46.0|ICD10CM|Antepartum hemorrhage with coagulation defect|Antepartum hemorrhage with coagulation defect +C0156631|T046|AB|O46.0|ICD10CM|Antepartum hemorrhage with coagulation defect|Antepartum hemorrhage with coagulation defect +C0156631|T046|AB|O46.00|ICD10CM|Antepartum hemorrhage with coagulation defect, unspecified|Antepartum hemorrhage with coagulation defect, unspecified +C0156631|T046|HT|O46.00|ICD10CM|Antepartum hemorrhage with coagulation defect, unspecified|Antepartum hemorrhage with coagulation defect, unspecified +C2909108|T046|AB|O46.001|ICD10CM|Antepartum hemorrhage w coag defect, unsp, first trimester|Antepartum hemorrhage w coag defect, unsp, first trimester +C2909108|T046|PT|O46.001|ICD10CM|Antepartum hemorrhage with coagulation defect, unspecified, first trimester|Antepartum hemorrhage with coagulation defect, unspecified, first trimester +C2909109|T046|AB|O46.002|ICD10CM|Antepartum hemorrhage w coag defect, unsp, second trimester|Antepartum hemorrhage w coag defect, unsp, second trimester +C2909109|T046|PT|O46.002|ICD10CM|Antepartum hemorrhage with coagulation defect, unspecified, second trimester|Antepartum hemorrhage with coagulation defect, unspecified, second trimester +C2909110|T046|AB|O46.003|ICD10CM|Antepartum hemorrhage w coag defect, unsp, third trimester|Antepartum hemorrhage w coag defect, unsp, third trimester +C2909110|T046|PT|O46.003|ICD10CM|Antepartum hemorrhage with coagulation defect, unspecified, third trimester|Antepartum hemorrhage with coagulation defect, unspecified, third trimester +C2909111|T046|AB|O46.009|ICD10CM|Antepartum hemorrhage w coag defect, unsp, unsp trimester|Antepartum hemorrhage w coag defect, unsp, unsp trimester +C2909111|T046|PT|O46.009|ICD10CM|Antepartum hemorrhage with coagulation defect, unspecified, unspecified trimester|Antepartum hemorrhage with coagulation defect, unspecified, unspecified trimester +C0473372|T046|HT|O46.01|ICD10CM|Antepartum hemorrhage with afibrinogenemia|Antepartum hemorrhage with afibrinogenemia +C0473372|T046|AB|O46.01|ICD10CM|Antepartum hemorrhage with afibrinogenemia|Antepartum hemorrhage with afibrinogenemia +C0473370|T047|ET|O46.01|ICD10CM|Antepartum hemorrhage with hypofibrinogenemia|Antepartum hemorrhage with hypofibrinogenemia +C2909112|T046|AB|O46.011|ICD10CM|Antepartum hemorrhage with afibrinogenemia, first trimester|Antepartum hemorrhage with afibrinogenemia, first trimester +C2909112|T046|PT|O46.011|ICD10CM|Antepartum hemorrhage with afibrinogenemia, first trimester|Antepartum hemorrhage with afibrinogenemia, first trimester +C2909113|T046|AB|O46.012|ICD10CM|Antepartum hemorrhage with afibrinogenemia, second trimester|Antepartum hemorrhage with afibrinogenemia, second trimester +C2909113|T046|PT|O46.012|ICD10CM|Antepartum hemorrhage with afibrinogenemia, second trimester|Antepartum hemorrhage with afibrinogenemia, second trimester +C2909114|T046|AB|O46.013|ICD10CM|Antepartum hemorrhage with afibrinogenemia, third trimester|Antepartum hemorrhage with afibrinogenemia, third trimester +C2909114|T046|PT|O46.013|ICD10CM|Antepartum hemorrhage with afibrinogenemia, third trimester|Antepartum hemorrhage with afibrinogenemia, third trimester +C2909115|T046|AB|O46.019|ICD10CM|Antepartum hemorrhage with afibrinogenemia, unsp trimester|Antepartum hemorrhage with afibrinogenemia, unsp trimester +C2909115|T046|PT|O46.019|ICD10CM|Antepartum hemorrhage with afibrinogenemia, unspecified trimester|Antepartum hemorrhage with afibrinogenemia, unspecified trimester +C2909116|T046|AB|O46.02|ICD10CM|Antepartum hemorrhage w disseminated intravasc coagulation|Antepartum hemorrhage w disseminated intravasc coagulation +C2909116|T046|HT|O46.02|ICD10CM|Antepartum hemorrhage with disseminated intravascular coagulation|Antepartum hemorrhage with disseminated intravascular coagulation +C2909117|T046|AB|O46.021|ICD10CM|Antepart hemorrhage w dissem intravasc coag, first trimester|Antepart hemorrhage w dissem intravasc coag, first trimester +C2909117|T046|PT|O46.021|ICD10CM|Antepartum hemorrhage with disseminated intravascular coagulation, first trimester|Antepartum hemorrhage with disseminated intravascular coagulation, first trimester +C2909118|T046|AB|O46.022|ICD10CM|Antepart hemor w dissem intravasc coag, second trimester|Antepart hemor w dissem intravasc coag, second trimester +C2909118|T046|PT|O46.022|ICD10CM|Antepartum hemorrhage with disseminated intravascular coagulation, second trimester|Antepartum hemorrhage with disseminated intravascular coagulation, second trimester +C2909119|T046|AB|O46.023|ICD10CM|Antepart hemorrhage w dissem intravasc coag, third trimester|Antepart hemorrhage w dissem intravasc coag, third trimester +C2909119|T046|PT|O46.023|ICD10CM|Antepartum hemorrhage with disseminated intravascular coagulation, third trimester|Antepartum hemorrhage with disseminated intravascular coagulation, third trimester +C2909120|T046|AB|O46.029|ICD10CM|Antepart hemorrhage w dissem intravasc coag, unsp trimester|Antepart hemorrhage w dissem intravasc coag, unsp trimester +C2909120|T046|PT|O46.029|ICD10CM|Antepartum hemorrhage with disseminated intravascular coagulation, unspecified trimester|Antepartum hemorrhage with disseminated intravascular coagulation, unspecified trimester +C2909121|T046|AB|O46.09|ICD10CM|Antepartum hemorrhage with other coagulation defect|Antepartum hemorrhage with other coagulation defect +C2909121|T046|HT|O46.09|ICD10CM|Antepartum hemorrhage with other coagulation defect|Antepartum hemorrhage with other coagulation defect +C2909122|T046|AB|O46.091|ICD10CM|Antepartum hemorrhage w oth coag defect, first trimester|Antepartum hemorrhage w oth coag defect, first trimester +C2909122|T046|PT|O46.091|ICD10CM|Antepartum hemorrhage with other coagulation defect, first trimester|Antepartum hemorrhage with other coagulation defect, first trimester +C2909123|T046|AB|O46.092|ICD10CM|Antepartum hemorrhage w oth coag defect, second trimester|Antepartum hemorrhage w oth coag defect, second trimester +C2909123|T046|PT|O46.092|ICD10CM|Antepartum hemorrhage with other coagulation defect, second trimester|Antepartum hemorrhage with other coagulation defect, second trimester +C2909124|T046|AB|O46.093|ICD10CM|Antepartum hemorrhage w oth coag defect, third trimester|Antepartum hemorrhage w oth coag defect, third trimester +C2909124|T046|PT|O46.093|ICD10CM|Antepartum hemorrhage with other coagulation defect, third trimester|Antepartum hemorrhage with other coagulation defect, third trimester +C2909125|T046|AB|O46.099|ICD10CM|Antepartum hemorrhage w oth coag defect, unsp trimester|Antepartum hemorrhage w oth coag defect, unsp trimester +C2909125|T046|PT|O46.099|ICD10CM|Antepartum hemorrhage with other coagulation defect, unspecified trimester|Antepartum hemorrhage with other coagulation defect, unspecified trimester +C0156635|T046|PT|O46.8|ICD10|Other antepartum haemorrhage|Other antepartum haemorrhage +C0156635|T046|HT|O46.8|ICD10CM|Other antepartum hemorrhage|Other antepartum hemorrhage +C0156635|T046|AB|O46.8|ICD10CM|Other antepartum hemorrhage|Other antepartum hemorrhage +C0156635|T046|PT|O46.8|ICD10AE|Other antepartum hemorrhage|Other antepartum hemorrhage +C0156635|T046|HT|O46.8X|ICD10CM|Other antepartum hemorrhage|Other antepartum hemorrhage +C0156635|T046|AB|O46.8X|ICD10CM|Other antepartum hemorrhage|Other antepartum hemorrhage +C2909126|T046|AB|O46.8X1|ICD10CM|Other antepartum hemorrhage, first trimester|Other antepartum hemorrhage, first trimester +C2909126|T046|PT|O46.8X1|ICD10CM|Other antepartum hemorrhage, first trimester|Other antepartum hemorrhage, first trimester +C2909127|T046|AB|O46.8X2|ICD10CM|Other antepartum hemorrhage, second trimester|Other antepartum hemorrhage, second trimester +C2909127|T046|PT|O46.8X2|ICD10CM|Other antepartum hemorrhage, second trimester|Other antepartum hemorrhage, second trimester +C2909128|T046|AB|O46.8X3|ICD10CM|Other antepartum hemorrhage, third trimester|Other antepartum hemorrhage, third trimester +C2909128|T046|PT|O46.8X3|ICD10CM|Other antepartum hemorrhage, third trimester|Other antepartum hemorrhage, third trimester +C0156635|T046|AB|O46.8X9|ICD10CM|Other antepartum hemorrhage, unspecified trimester|Other antepartum hemorrhage, unspecified trimester +C0156635|T046|PT|O46.8X9|ICD10CM|Other antepartum hemorrhage, unspecified trimester|Other antepartum hemorrhage, unspecified trimester +C0269608|T046|PT|O46.9|ICD10|Antepartum haemorrhage, unspecified|Antepartum haemorrhage, unspecified +C0269608|T046|HT|O46.9|ICD10CM|Antepartum hemorrhage, unspecified|Antepartum hemorrhage, unspecified +C0269608|T046|AB|O46.9|ICD10CM|Antepartum hemorrhage, unspecified|Antepartum hemorrhage, unspecified +C0269608|T046|PT|O46.9|ICD10AE|Antepartum hemorrhage, unspecified|Antepartum hemorrhage, unspecified +C2909129|T046|AB|O46.90|ICD10CM|Antepartum hemorrhage, unspecified, unspecified trimester|Antepartum hemorrhage, unspecified, unspecified trimester +C2909129|T046|PT|O46.90|ICD10CM|Antepartum hemorrhage, unspecified, unspecified trimester|Antepartum hemorrhage, unspecified, unspecified trimester +C2909130|T046|AB|O46.91|ICD10CM|Antepartum hemorrhage, unspecified, first trimester|Antepartum hemorrhage, unspecified, first trimester +C2909130|T046|PT|O46.91|ICD10CM|Antepartum hemorrhage, unspecified, first trimester|Antepartum hemorrhage, unspecified, first trimester +C2909131|T046|AB|O46.92|ICD10CM|Antepartum hemorrhage, unspecified, second trimester|Antepartum hemorrhage, unspecified, second trimester +C2909131|T046|PT|O46.92|ICD10CM|Antepartum hemorrhage, unspecified, second trimester|Antepartum hemorrhage, unspecified, second trimester +C2909132|T046|AB|O46.93|ICD10CM|Antepartum hemorrhage, unspecified, third trimester|Antepartum hemorrhage, unspecified, third trimester +C2909132|T046|PT|O46.93|ICD10CM|Antepartum hemorrhage, unspecified, third trimester|Antepartum hemorrhage, unspecified, third trimester +C0233187|T184|ET|O47|ICD10CM|Braxton Hicks contractions|Braxton Hicks contractions +C0085598|T046|HT|O47|ICD10CM|False labor|False labor +C0085598|T046|AB|O47|ICD10CM|False labor|False labor +C0085598|T046|HT|O47|ICD10AE|False labor|False labor +C0085598|T046|HT|O47|ICD10|False labour|False labour +C0152155|T046|ET|O47|ICD10CM|threatened labor|threatened labor +C0495252|T046|PT|O47.0|ICD10AE|False labor before 37 completed weeks of gestation|False labor before 37 completed weeks of gestation +C0495252|T046|HT|O47.0|ICD10CM|False labor before 37 completed weeks of gestation|False labor before 37 completed weeks of gestation +C0495252|T046|AB|O47.0|ICD10CM|False labor before 37 completed weeks of gestation|False labor before 37 completed weeks of gestation +C0495252|T046|PT|O47.0|ICD10|False labour before 37 completed weeks of gestation|False labour before 37 completed weeks of gestation +C0495252|T046|AB|O47.00|ICD10CM|False labor before 37 completed weeks of gest, unsp tri|False labor before 37 completed weeks of gest, unsp tri +C0495252|T046|PT|O47.00|ICD10CM|False labor before 37 completed weeks of gestation, unspecified trimester|False labor before 37 completed weeks of gestation, unspecified trimester +C2909133|T046|AB|O47.02|ICD10CM|False labor before 37 completed weeks of gest, second tri|False labor before 37 completed weeks of gest, second tri +C2909133|T046|PT|O47.02|ICD10CM|False labor before 37 completed weeks of gestation, second trimester|False labor before 37 completed weeks of gestation, second trimester +C2909134|T046|AB|O47.03|ICD10CM|False labor before 37 completed weeks of gest, third tri|False labor before 37 completed weeks of gest, third tri +C2909134|T046|PT|O47.03|ICD10CM|False labor before 37 completed weeks of gestation, third trimester|False labor before 37 completed weeks of gestation, third trimester +C0475549|T184|PT|O47.1|ICD10AE|False labor at or after 37 completed weeks of gestation|False labor at or after 37 completed weeks of gestation +C0475549|T184|PT|O47.1|ICD10CM|False labor at or after 37 completed weeks of gestation|False labor at or after 37 completed weeks of gestation +C0475549|T184|AB|O47.1|ICD10CM|False labor at or after 37 completed weeks of gestation|False labor at or after 37 completed weeks of gestation +C0475549|T184|PT|O47.1|ICD10|False labour at or after 37 completed weeks of gestation|False labour at or after 37 completed weeks of gestation +C0085598|T046|PT|O47.9|ICD10CM|False labor, unspecified|False labor, unspecified +C0085598|T046|AB|O47.9|ICD10CM|False labor, unspecified|False labor, unspecified +C0085598|T046|PT|O47.9|ICD10AE|False labor, unspecified|False labor, unspecified +C0085598|T046|PT|O47.9|ICD10|False labour, unspecified|False labour, unspecified +C0878751|T046|AB|O48|ICD10CM|Late pregnancy|Late pregnancy +C0878751|T046|HT|O48|ICD10CM|Late pregnancy|Late pregnancy +C0032993|T046|PT|O48|ICD10|Prolonged pregnancy|Prolonged pregnancy +C0032993|T046|PT|O48.0|ICD10CM|Post-term pregnancy|Post-term pregnancy +C0032993|T046|AB|O48.0|ICD10CM|Post-term pregnancy|Post-term pregnancy +C2909135|T046|ET|O48.0|ICD10CM|Pregnancy over 40 completed weeks to 42 completed weeks gestation|Pregnancy over 40 completed weeks to 42 completed weeks gestation +C2909136|T046|ET|O48.1|ICD10CM|Pregnancy which has advanced beyond 42 completed weeks gestation|Pregnancy which has advanced beyond 42 completed weeks gestation +C0032993|T046|PT|O48.1|ICD10CM|Prolonged pregnancy|Prolonged pregnancy +C0032993|T046|AB|O48.1|ICD10CM|Prolonged pregnancy|Prolonged pregnancy +C4290253|T046|ET|O60|ICD10CM|onset (spontaneous) of labor before 37 completed weeks of gestation|onset (spontaneous) of labor before 37 completed weeks of gestation +C0151526|T046|PT|O60|ICD10|Preterm delivery|Preterm delivery +C0022876|T046|HT|O60|ICD10CM|Preterm labor|Preterm labor +C0022876|T046|AB|O60|ICD10CM|Preterm labor|Preterm labor +C0269815|T046|HT|O60-O75.9|ICD10AE|Complications of labor and delivery|Complications of labor and delivery +C0269815|T046|HT|O60-O75.9|ICD10|Complications of labour and delivery|Complications of labour and delivery +C0269815|T046|HT|O60-O77|ICD10CM|Complications of labor and delivery (O60-O77)|Complications of labor and delivery (O60-O77) +C2909138|T046|HT|O60.0|ICD10CM|Preterm labor without delivery|Preterm labor without delivery +C2909138|T046|AB|O60.0|ICD10CM|Preterm labor without delivery|Preterm labor without delivery +C2909138|T046|AB|O60.00|ICD10CM|Preterm labor without delivery, unspecified trimester|Preterm labor without delivery, unspecified trimester +C2909138|T046|PT|O60.00|ICD10CM|Preterm labor without delivery, unspecified trimester|Preterm labor without delivery, unspecified trimester +C2909139|T046|AB|O60.02|ICD10CM|Preterm labor without delivery, second trimester|Preterm labor without delivery, second trimester +C2909139|T046|PT|O60.02|ICD10CM|Preterm labor without delivery, second trimester|Preterm labor without delivery, second trimester +C2909140|T046|AB|O60.03|ICD10CM|Preterm labor without delivery, third trimester|Preterm labor without delivery, third trimester +C2909140|T046|PT|O60.03|ICD10CM|Preterm labor without delivery, third trimester|Preterm labor without delivery, third trimester +C2909141|T046|HT|O60.1|ICD10CM|Preterm labor with preterm delivery|Preterm labor with preterm delivery +C2909141|T046|AB|O60.1|ICD10CM|Preterm labor with preterm delivery|Preterm labor with preterm delivery +C2909141|T046|ET|O60.10|ICD10CM|Preterm labor with delivery NOS|Preterm labor with delivery NOS +C2909141|T046|AB|O60.10|ICD10CM|Preterm labor with preterm delivery, unspecified trimester|Preterm labor with preterm delivery, unspecified trimester +C2909141|T046|HT|O60.10|ICD10CM|Preterm labor with preterm delivery, unspecified trimester|Preterm labor with preterm delivery, unspecified trimester +C2909142|T046|AB|O60.10X0|ICD10CM|Preterm labor w preterm delivery, unsp trimester, unsp|Preterm labor w preterm delivery, unsp trimester, unsp +C2909142|T046|PT|O60.10X0|ICD10CM|Preterm labor with preterm delivery, unspecified trimester, not applicable or unspecified|Preterm labor with preterm delivery, unspecified trimester, not applicable or unspecified +C2909143|T046|AB|O60.10X1|ICD10CM|Preterm labor with preterm delivery, unsp trimester, fetus 1|Preterm labor with preterm delivery, unsp trimester, fetus 1 +C2909143|T046|PT|O60.10X1|ICD10CM|Preterm labor with preterm delivery, unspecified trimester, fetus 1|Preterm labor with preterm delivery, unspecified trimester, fetus 1 +C2909144|T046|AB|O60.10X2|ICD10CM|Preterm labor with preterm delivery, unsp trimester, fetus 2|Preterm labor with preterm delivery, unsp trimester, fetus 2 +C2909144|T046|PT|O60.10X2|ICD10CM|Preterm labor with preterm delivery, unspecified trimester, fetus 2|Preterm labor with preterm delivery, unspecified trimester, fetus 2 +C2909145|T046|AB|O60.10X3|ICD10CM|Preterm labor with preterm delivery, unsp trimester, fetus 3|Preterm labor with preterm delivery, unsp trimester, fetus 3 +C2909145|T046|PT|O60.10X3|ICD10CM|Preterm labor with preterm delivery, unspecified trimester, fetus 3|Preterm labor with preterm delivery, unspecified trimester, fetus 3 +C2909146|T046|AB|O60.10X4|ICD10CM|Preterm labor with preterm delivery, unsp trimester, fetus 4|Preterm labor with preterm delivery, unsp trimester, fetus 4 +C2909146|T046|PT|O60.10X4|ICD10CM|Preterm labor with preterm delivery, unspecified trimester, fetus 4|Preterm labor with preterm delivery, unspecified trimester, fetus 4 +C2909147|T046|AB|O60.10X5|ICD10CM|Preterm labor with preterm delivery, unsp trimester, fetus 5|Preterm labor with preterm delivery, unsp trimester, fetus 5 +C2909147|T046|PT|O60.10X5|ICD10CM|Preterm labor with preterm delivery, unspecified trimester, fetus 5|Preterm labor with preterm delivery, unspecified trimester, fetus 5 +C2909148|T046|AB|O60.10X9|ICD10CM|Preterm labor w preterm delivery, unsp trimester, oth fetus|Preterm labor w preterm delivery, unsp trimester, oth fetus +C2909148|T046|PT|O60.10X9|ICD10CM|Preterm labor with preterm delivery, unspecified trimester, other fetus|Preterm labor with preterm delivery, unspecified trimester, other fetus +C3646587|T046|AB|O60.12|ICD10CM|Preterm labor second tri w preterm delivery second trimester|Preterm labor second tri w preterm delivery second trimester +C3646587|T046|HT|O60.12|ICD10CM|Preterm labor second trimester with preterm delivery second trimester|Preterm labor second trimester with preterm delivery second trimester +C2909150|T046|AB|O60.12X0|ICD10CM|Preterm labor second tri w preterm delivery second tri, unsp|Preterm labor second tri w preterm delivery second tri, unsp +C2909150|T046|PT|O60.12X0|ICD10CM|Preterm labor second trimester with preterm delivery second trimester, not applicable or unspecified|Preterm labor second trimester with preterm delivery second trimester, not applicable or unspecified +C2909151|T046|AB|O60.12X1|ICD10CM|Preterm labor second tri w preterm del second tri, fetus 1|Preterm labor second tri w preterm del second tri, fetus 1 +C2909151|T046|PT|O60.12X1|ICD10CM|Preterm labor second trimester with preterm delivery second trimester, fetus 1|Preterm labor second trimester with preterm delivery second trimester, fetus 1 +C2909152|T046|AB|O60.12X2|ICD10CM|Preterm labor second tri w preterm del second tri, fetus 2|Preterm labor second tri w preterm del second tri, fetus 2 +C2909152|T046|PT|O60.12X2|ICD10CM|Preterm labor second trimester with preterm delivery second trimester, fetus 2|Preterm labor second trimester with preterm delivery second trimester, fetus 2 +C2909153|T046|AB|O60.12X3|ICD10CM|Preterm labor second tri w preterm del second tri, fetus 3|Preterm labor second tri w preterm del second tri, fetus 3 +C2909153|T046|PT|O60.12X3|ICD10CM|Preterm labor second trimester with preterm delivery second trimester, fetus 3|Preterm labor second trimester with preterm delivery second trimester, fetus 3 +C2909154|T046|AB|O60.12X4|ICD10CM|Preterm labor second tri w preterm del second tri, fetus 4|Preterm labor second tri w preterm del second tri, fetus 4 +C2909154|T046|PT|O60.12X4|ICD10CM|Preterm labor second trimester with preterm delivery second trimester, fetus 4|Preterm labor second trimester with preterm delivery second trimester, fetus 4 +C2909155|T046|AB|O60.12X5|ICD10CM|Preterm labor second tri w preterm del second tri, fetus 5|Preterm labor second tri w preterm del second tri, fetus 5 +C2909155|T046|PT|O60.12X5|ICD10CM|Preterm labor second trimester with preterm delivery second trimester, fetus 5|Preterm labor second trimester with preterm delivery second trimester, fetus 5 +C2909156|T046|AB|O60.12X9|ICD10CM|Preterm labor second tri w preterm delivery second tri, oth|Preterm labor second tri w preterm delivery second tri, oth +C2909156|T046|PT|O60.12X9|ICD10CM|Preterm labor second trimester with preterm delivery second trimester, other fetus|Preterm labor second trimester with preterm delivery second trimester, other fetus +C2909157|T046|AB|O60.13|ICD10CM|Preterm labor second tri w preterm delivery third trimester|Preterm labor second tri w preterm delivery third trimester +C2909157|T046|HT|O60.13|ICD10CM|Preterm labor second trimester with preterm delivery third trimester|Preterm labor second trimester with preterm delivery third trimester +C2909158|T046|AB|O60.13X0|ICD10CM|Preterm labor second tri w preterm delivery third tri, unsp|Preterm labor second tri w preterm delivery third tri, unsp +C2909158|T046|PT|O60.13X0|ICD10CM|Preterm labor second trimester with preterm delivery third trimester, not applicable or unspecified|Preterm labor second trimester with preterm delivery third trimester, not applicable or unspecified +C2909159|T046|AB|O60.13X1|ICD10CM|Preterm labor second tri w preterm del third tri, fetus 1|Preterm labor second tri w preterm del third tri, fetus 1 +C2909159|T046|PT|O60.13X1|ICD10CM|Preterm labor second trimester with preterm delivery third trimester, fetus 1|Preterm labor second trimester with preterm delivery third trimester, fetus 1 +C2909160|T046|AB|O60.13X2|ICD10CM|Preterm labor second tri w preterm del third tri, fetus 2|Preterm labor second tri w preterm del third tri, fetus 2 +C2909160|T046|PT|O60.13X2|ICD10CM|Preterm labor second trimester with preterm delivery third trimester, fetus 2|Preterm labor second trimester with preterm delivery third trimester, fetus 2 +C2909161|T046|AB|O60.13X3|ICD10CM|Preterm labor second tri w preterm del third tri, fetus 3|Preterm labor second tri w preterm del third tri, fetus 3 +C2909161|T046|PT|O60.13X3|ICD10CM|Preterm labor second trimester with preterm delivery third trimester, fetus 3|Preterm labor second trimester with preterm delivery third trimester, fetus 3 +C2909162|T046|AB|O60.13X4|ICD10CM|Preterm labor second tri w preterm del third tri, fetus 4|Preterm labor second tri w preterm del third tri, fetus 4 +C2909162|T046|PT|O60.13X4|ICD10CM|Preterm labor second trimester with preterm delivery third trimester, fetus 4|Preterm labor second trimester with preterm delivery third trimester, fetus 4 +C2909163|T046|AB|O60.13X5|ICD10CM|Preterm labor second tri w preterm del third tri, fetus 5|Preterm labor second tri w preterm del third tri, fetus 5 +C2909163|T046|PT|O60.13X5|ICD10CM|Preterm labor second trimester with preterm delivery third trimester, fetus 5|Preterm labor second trimester with preterm delivery third trimester, fetus 5 +C2909164|T046|AB|O60.13X9|ICD10CM|Preterm labor second tri w preterm delivery third tri, oth|Preterm labor second tri w preterm delivery third tri, oth +C2909164|T046|PT|O60.13X9|ICD10CM|Preterm labor second trimester with preterm delivery third trimester, other fetus|Preterm labor second trimester with preterm delivery third trimester, other fetus +C2909165|T046|AB|O60.14|ICD10CM|Preterm labor third tri w preterm delivery third trimester|Preterm labor third tri w preterm delivery third trimester +C2909165|T046|HT|O60.14|ICD10CM|Preterm labor third trimester with preterm delivery third trimester|Preterm labor third trimester with preterm delivery third trimester +C2909166|T046|AB|O60.14X0|ICD10CM|Preterm labor third tri w preterm delivery third tri, unsp|Preterm labor third tri w preterm delivery third tri, unsp +C2909166|T046|PT|O60.14X0|ICD10CM|Preterm labor third trimester with preterm delivery third trimester, not applicable or unspecified|Preterm labor third trimester with preterm delivery third trimester, not applicable or unspecified +C2909167|T046|AB|O60.14X1|ICD10CM|Preterm labor third tri w preterm del third tri, fetus 1|Preterm labor third tri w preterm del third tri, fetus 1 +C2909167|T046|PT|O60.14X1|ICD10CM|Preterm labor third trimester with preterm delivery third trimester, fetus 1|Preterm labor third trimester with preterm delivery third trimester, fetus 1 +C2909168|T046|AB|O60.14X2|ICD10CM|Preterm labor third tri w preterm del third tri, fetus 2|Preterm labor third tri w preterm del third tri, fetus 2 +C2909168|T046|PT|O60.14X2|ICD10CM|Preterm labor third trimester with preterm delivery third trimester, fetus 2|Preterm labor third trimester with preterm delivery third trimester, fetus 2 +C2909169|T046|AB|O60.14X3|ICD10CM|Preterm labor third tri w preterm del third tri, fetus 3|Preterm labor third tri w preterm del third tri, fetus 3 +C2909169|T046|PT|O60.14X3|ICD10CM|Preterm labor third trimester with preterm delivery third trimester, fetus 3|Preterm labor third trimester with preterm delivery third trimester, fetus 3 +C2909170|T046|AB|O60.14X4|ICD10CM|Preterm labor third tri w preterm del third tri, fetus 4|Preterm labor third tri w preterm del third tri, fetus 4 +C2909170|T046|PT|O60.14X4|ICD10CM|Preterm labor third trimester with preterm delivery third trimester, fetus 4|Preterm labor third trimester with preterm delivery third trimester, fetus 4 +C2909171|T046|AB|O60.14X5|ICD10CM|Preterm labor third tri w preterm del third tri, fetus 5|Preterm labor third tri w preterm del third tri, fetus 5 +C2909171|T046|PT|O60.14X5|ICD10CM|Preterm labor third trimester with preterm delivery third trimester, fetus 5|Preterm labor third trimester with preterm delivery third trimester, fetus 5 +C2909172|T046|AB|O60.14X9|ICD10CM|Preterm labor third tri w preterm delivery third tri, oth|Preterm labor third tri w preterm delivery third tri, oth +C2909172|T046|PT|O60.14X9|ICD10CM|Preterm labor third trimester with preterm delivery third trimester, other fetus|Preterm labor third trimester with preterm delivery third trimester, other fetus +C2909173|T046|AB|O60.2|ICD10CM|Term delivery with preterm labor|Term delivery with preterm labor +C2909173|T046|HT|O60.2|ICD10CM|Term delivery with preterm labor|Term delivery with preterm labor +C2909173|T046|AB|O60.20|ICD10CM|Term delivery with preterm labor, unspecified trimester|Term delivery with preterm labor, unspecified trimester +C2909173|T046|HT|O60.20|ICD10CM|Term delivery with preterm labor, unspecified trimester|Term delivery with preterm labor, unspecified trimester +C2909174|T046|AB|O60.20X0|ICD10CM|Term delivery w preterm labor, unsp trimester, unsp|Term delivery w preterm labor, unsp trimester, unsp +C2909174|T046|PT|O60.20X0|ICD10CM|Term delivery with preterm labor, unspecified trimester, not applicable or unspecified|Term delivery with preterm labor, unspecified trimester, not applicable or unspecified +C2909175|T046|AB|O60.20X1|ICD10CM|Term delivery with preterm labor, unsp trimester, fetus 1|Term delivery with preterm labor, unsp trimester, fetus 1 +C2909175|T046|PT|O60.20X1|ICD10CM|Term delivery with preterm labor, unspecified trimester, fetus 1|Term delivery with preterm labor, unspecified trimester, fetus 1 +C2909176|T046|AB|O60.20X2|ICD10CM|Term delivery with preterm labor, unsp trimester, fetus 2|Term delivery with preterm labor, unsp trimester, fetus 2 +C2909176|T046|PT|O60.20X2|ICD10CM|Term delivery with preterm labor, unspecified trimester, fetus 2|Term delivery with preterm labor, unspecified trimester, fetus 2 +C2909177|T046|AB|O60.20X3|ICD10CM|Term delivery with preterm labor, unsp trimester, fetus 3|Term delivery with preterm labor, unsp trimester, fetus 3 +C2909177|T046|PT|O60.20X3|ICD10CM|Term delivery with preterm labor, unspecified trimester, fetus 3|Term delivery with preterm labor, unspecified trimester, fetus 3 +C2909178|T046|AB|O60.20X4|ICD10CM|Term delivery with preterm labor, unsp trimester, fetus 4|Term delivery with preterm labor, unsp trimester, fetus 4 +C2909178|T046|PT|O60.20X4|ICD10CM|Term delivery with preterm labor, unspecified trimester, fetus 4|Term delivery with preterm labor, unspecified trimester, fetus 4 +C2909179|T046|AB|O60.20X5|ICD10CM|Term delivery with preterm labor, unsp trimester, fetus 5|Term delivery with preterm labor, unsp trimester, fetus 5 +C2909179|T046|PT|O60.20X5|ICD10CM|Term delivery with preterm labor, unspecified trimester, fetus 5|Term delivery with preterm labor, unspecified trimester, fetus 5 +C2909180|T046|AB|O60.20X9|ICD10CM|Term delivery with preterm labor, unsp trimester, oth fetus|Term delivery with preterm labor, unsp trimester, oth fetus +C2909180|T046|PT|O60.20X9|ICD10CM|Term delivery with preterm labor, unspecified trimester, other fetus|Term delivery with preterm labor, unspecified trimester, other fetus +C2909181|T046|AB|O60.22|ICD10CM|Term delivery with preterm labor, second trimester|Term delivery with preterm labor, second trimester +C2909181|T046|HT|O60.22|ICD10CM|Term delivery with preterm labor, second trimester|Term delivery with preterm labor, second trimester +C2909182|T046|AB|O60.22X0|ICD10CM|Term delivery w preterm labor, second trimester, unsp|Term delivery w preterm labor, second trimester, unsp +C2909182|T046|PT|O60.22X0|ICD10CM|Term delivery with preterm labor, second trimester, not applicable or unspecified|Term delivery with preterm labor, second trimester, not applicable or unspecified +C2909183|T046|AB|O60.22X1|ICD10CM|Term delivery with preterm labor, second trimester, fetus 1|Term delivery with preterm labor, second trimester, fetus 1 +C2909183|T046|PT|O60.22X1|ICD10CM|Term delivery with preterm labor, second trimester, fetus 1|Term delivery with preterm labor, second trimester, fetus 1 +C2909184|T046|AB|O60.22X2|ICD10CM|Term delivery with preterm labor, second trimester, fetus 2|Term delivery with preterm labor, second trimester, fetus 2 +C2909184|T046|PT|O60.22X2|ICD10CM|Term delivery with preterm labor, second trimester, fetus 2|Term delivery with preterm labor, second trimester, fetus 2 +C2909185|T046|AB|O60.22X3|ICD10CM|Term delivery with preterm labor, second trimester, fetus 3|Term delivery with preterm labor, second trimester, fetus 3 +C2909185|T046|PT|O60.22X3|ICD10CM|Term delivery with preterm labor, second trimester, fetus 3|Term delivery with preterm labor, second trimester, fetus 3 +C2909186|T046|AB|O60.22X4|ICD10CM|Term delivery with preterm labor, second trimester, fetus 4|Term delivery with preterm labor, second trimester, fetus 4 +C2909186|T046|PT|O60.22X4|ICD10CM|Term delivery with preterm labor, second trimester, fetus 4|Term delivery with preterm labor, second trimester, fetus 4 +C2909187|T046|AB|O60.22X5|ICD10CM|Term delivery with preterm labor, second trimester, fetus 5|Term delivery with preterm labor, second trimester, fetus 5 +C2909187|T046|PT|O60.22X5|ICD10CM|Term delivery with preterm labor, second trimester, fetus 5|Term delivery with preterm labor, second trimester, fetus 5 +C2909188|T046|AB|O60.22X9|ICD10CM|Term delivery w preterm labor, second trimester, oth fetus|Term delivery w preterm labor, second trimester, oth fetus +C2909188|T046|PT|O60.22X9|ICD10CM|Term delivery with preterm labor, second trimester, other fetus|Term delivery with preterm labor, second trimester, other fetus +C2909189|T046|AB|O60.23|ICD10CM|Term delivery with preterm labor, third trimester|Term delivery with preterm labor, third trimester +C2909189|T046|HT|O60.23|ICD10CM|Term delivery with preterm labor, third trimester|Term delivery with preterm labor, third trimester +C2909190|T046|AB|O60.23X0|ICD10CM|Term delivery w preterm labor, third trimester, unsp|Term delivery w preterm labor, third trimester, unsp +C2909190|T046|PT|O60.23X0|ICD10CM|Term delivery with preterm labor, third trimester, not applicable or unspecified|Term delivery with preterm labor, third trimester, not applicable or unspecified +C2909191|T046|AB|O60.23X1|ICD10CM|Term delivery with preterm labor, third trimester, fetus 1|Term delivery with preterm labor, third trimester, fetus 1 +C2909191|T046|PT|O60.23X1|ICD10CM|Term delivery with preterm labor, third trimester, fetus 1|Term delivery with preterm labor, third trimester, fetus 1 +C2909192|T046|AB|O60.23X2|ICD10CM|Term delivery with preterm labor, third trimester, fetus 2|Term delivery with preterm labor, third trimester, fetus 2 +C2909192|T046|PT|O60.23X2|ICD10CM|Term delivery with preterm labor, third trimester, fetus 2|Term delivery with preterm labor, third trimester, fetus 2 +C2909193|T046|AB|O60.23X3|ICD10CM|Term delivery with preterm labor, third trimester, fetus 3|Term delivery with preterm labor, third trimester, fetus 3 +C2909193|T046|PT|O60.23X3|ICD10CM|Term delivery with preterm labor, third trimester, fetus 3|Term delivery with preterm labor, third trimester, fetus 3 +C2909194|T046|AB|O60.23X4|ICD10CM|Term delivery with preterm labor, third trimester, fetus 4|Term delivery with preterm labor, third trimester, fetus 4 +C2909194|T046|PT|O60.23X4|ICD10CM|Term delivery with preterm labor, third trimester, fetus 4|Term delivery with preterm labor, third trimester, fetus 4 +C2909195|T046|AB|O60.23X5|ICD10CM|Term delivery with preterm labor, third trimester, fetus 5|Term delivery with preterm labor, third trimester, fetus 5 +C2909195|T046|PT|O60.23X5|ICD10CM|Term delivery with preterm labor, third trimester, fetus 5|Term delivery with preterm labor, third trimester, fetus 5 +C2909196|T046|AB|O60.23X9|ICD10CM|Term delivery with preterm labor, third trimester, oth fetus|Term delivery with preterm labor, third trimester, oth fetus +C2909196|T046|PT|O60.23X9|ICD10CM|Term delivery with preterm labor, third trimester, other fetus|Term delivery with preterm labor, third trimester, other fetus +C0269806|T046|HT|O61|ICD10CM|Failed induction of labor|Failed induction of labor +C0269806|T046|AB|O61|ICD10CM|Failed induction of labor|Failed induction of labor +C0269806|T046|HT|O61|ICD10AE|Failed induction of labor|Failed induction of labor +C0269806|T046|HT|O61|ICD10|Failed induction of labour|Failed induction of labour +C2909197|T046|ET|O61.0|ICD10CM|Failed induction (of labor) by oxytocin|Failed induction (of labor) by oxytocin +C2909198|T046|ET|O61.0|ICD10CM|Failed induction (of labor) by prostaglandins|Failed induction (of labor) by prostaglandins +C0269808|T046|PT|O61.0|ICD10AE|Failed medical induction of labor|Failed medical induction of labor +C0269808|T046|PT|O61.0|ICD10CM|Failed medical induction of labor|Failed medical induction of labor +C0269808|T046|AB|O61.0|ICD10CM|Failed medical induction of labor|Failed medical induction of labor +C0269808|T046|PT|O61.0|ICD10|Failed medical induction of labour|Failed medical induction of labour +C0269807|T046|PT|O61.1|ICD10CM|Failed instrumental induction of labor|Failed instrumental induction of labor +C0269807|T046|AB|O61.1|ICD10CM|Failed instrumental induction of labor|Failed instrumental induction of labor +C0269807|T046|PT|O61.1|ICD10AE|Failed instrumental induction of labor|Failed instrumental induction of labor +C0269807|T046|PT|O61.1|ICD10|Failed instrumental induction of labour|Failed instrumental induction of labour +C0269807|T046|ET|O61.1|ICD10CM|Failed mechanical induction (of labor)|Failed mechanical induction (of labor) +C2909199|T046|ET|O61.1|ICD10CM|Failed surgical induction (of labor)|Failed surgical induction (of labor) +C0477837|T046|PT|O61.8|ICD10AE|Other failed induction of labor|Other failed induction of labor +C0477837|T046|PT|O61.8|ICD10CM|Other failed induction of labor|Other failed induction of labor +C0477837|T046|AB|O61.8|ICD10CM|Other failed induction of labor|Other failed induction of labor +C0477837|T046|PT|O61.8|ICD10|Other failed induction of labour|Other failed induction of labour +C0269806|T046|PT|O61.9|ICD10CM|Failed induction of labor, unspecified|Failed induction of labor, unspecified +C0269806|T046|AB|O61.9|ICD10CM|Failed induction of labor, unspecified|Failed induction of labor, unspecified +C0269806|T046|PT|O61.9|ICD10AE|Failed induction of labor, unspecified|Failed induction of labor, unspecified +C0269806|T046|PT|O61.9|ICD10|Failed induction of labour, unspecified|Failed induction of labour, unspecified +C0473462|T046|AB|O62|ICD10CM|Abnormalities of forces of labor|Abnormalities of forces of labor +C0473462|T046|HT|O62|ICD10CM|Abnormalities of forces of labor|Abnormalities of forces of labor +C0473462|T046|HT|O62|ICD10AE|Abnormalities of forces of labor|Abnormalities of forces of labor +C0473462|T046|HT|O62|ICD10|Abnormalities of forces of labour|Abnormalities of forces of labour +C2909200|T046|ET|O62.0|ICD10CM|Failure of cervical dilatation|Failure of cervical dilatation +C0152159|T047|ET|O62.0|ICD10CM|Primary hypotonic uterine dysfunction|Primary hypotonic uterine dysfunction +C0152159|T047|PT|O62.0|ICD10CM|Primary inadequate contractions|Primary inadequate contractions +C0152159|T047|AB|O62.0|ICD10CM|Primary inadequate contractions|Primary inadequate contractions +C0152159|T047|PT|O62.0|ICD10|Primary inadequate contractions|Primary inadequate contractions +C2909201|T046|ET|O62.0|ICD10CM|Uterine inertia during latent phase of labor|Uterine inertia during latent phase of labor +C0157259|T046|ET|O62.1|ICD10CM|Arrested active phase of labor|Arrested active phase of labor +C0405169|T046|ET|O62.1|ICD10CM|Secondary hypotonic uterine dysfunction|Secondary hypotonic uterine dysfunction +C0405169|T046|PT|O62.1|ICD10CM|Secondary uterine inertia|Secondary uterine inertia +C0405169|T046|AB|O62.1|ICD10CM|Secondary uterine inertia|Secondary uterine inertia +C0405169|T046|PT|O62.1|ICD10|Secondary uterine inertia|Secondary uterine inertia +C0042135|T046|ET|O62.2|ICD10CM|Atony of uterus NOS|Atony of uterus NOS +C1955820|T046|ET|O62.2|ICD10CM|Atony of uterus without hemorrhage|Atony of uterus without hemorrhage +C0269833|T047|ET|O62.2|ICD10CM|Desultory labor|Desultory labor +C0152159|T047|ET|O62.2|ICD10CM|Hypotonic uterine dysfunction NOS|Hypotonic uterine dysfunction NOS +C0567126|T046|ET|O62.2|ICD10CM|Irregular labor|Irregular labor +C0477838|T046|PT|O62.2|ICD10|Other uterine inertia|Other uterine inertia +C0477838|T046|PT|O62.2|ICD10CM|Other uterine inertia|Other uterine inertia +C0477838|T046|AB|O62.2|ICD10CM|Other uterine inertia|Other uterine inertia +C0042135|T046|ET|O62.2|ICD10CM|Poor contractions|Poor contractions +C0269836|T046|ET|O62.2|ICD10CM|Slow slope active phase of labor|Slow slope active phase of labor +C0042135|T046|ET|O62.2|ICD10CM|Uterine inertia NOS|Uterine inertia NOS +C0473472|T046|PT|O62.3|ICD10CM|Precipitate labor|Precipitate labor +C0473472|T046|AB|O62.3|ICD10CM|Precipitate labor|Precipitate labor +C0473472|T046|PT|O62.3|ICD10AE|Precipitate labor|Precipitate labor +C0473472|T046|PT|O62.3|ICD10|Precipitate labour|Precipitate labour +C0269837|T046|ET|O62.4|ICD10CM|Cervical spasm|Cervical spasm +C0341974|T046|ET|O62.4|ICD10CM|Contraction ring dystocia|Contraction ring dystocia +C0269839|T047|ET|O62.4|ICD10CM|Dyscoordinate labor|Dyscoordinate labor +C2909202|T046|ET|O62.4|ICD10CM|Hour-glass contraction of uterus|Hour-glass contraction of uterus +C0269842|T046|ET|O62.4|ICD10CM|Hypertonic uterine dysfunction|Hypertonic uterine dysfunction +C0495255|T046|PT|O62.4|ICD10|Hypertonic, incoordinate, and prolonged uterine contractions|Hypertonic, incoordinate, and prolonged uterine contractions +C0495255|T046|PT|O62.4|ICD10CM|Hypertonic, incoordinate, and prolonged uterine contractions|Hypertonic, incoordinate, and prolonged uterine contractions +C0495255|T046|AB|O62.4|ICD10CM|Hypertonic, incoordinate, and prolonged uterine contractions|Hypertonic, incoordinate, and prolonged uterine contractions +C0269839|T047|ET|O62.4|ICD10CM|Incoordinate uterine action|Incoordinate uterine action +C0269841|T046|ET|O62.4|ICD10CM|Tetanic contractions|Tetanic contractions +C0013420|T046|ET|O62.4|ICD10CM|Uterine dystocia NOS|Uterine dystocia NOS +C0151998|T046|ET|O62.4|ICD10CM|Uterine spasm|Uterine spasm +C0477839|T046|PT|O62.8|ICD10AE|Other abnormalities of forces of labor|Other abnormalities of forces of labor +C0477839|T046|PT|O62.8|ICD10CM|Other abnormalities of forces of labor|Other abnormalities of forces of labor +C0477839|T046|AB|O62.8|ICD10CM|Other abnormalities of forces of labor|Other abnormalities of forces of labor +C0477839|T046|PT|O62.8|ICD10|Other abnormalities of forces of labour|Other abnormalities of forces of labour +C0473462|T046|PT|O62.9|ICD10AE|Abnormality of forces of labor, unspecified|Abnormality of forces of labor, unspecified +C0473462|T046|PT|O62.9|ICD10CM|Abnormality of forces of labor, unspecified|Abnormality of forces of labor, unspecified +C0473462|T046|AB|O62.9|ICD10CM|Abnormality of forces of labor, unspecified|Abnormality of forces of labor, unspecified +C0473462|T046|PT|O62.9|ICD10|Abnormality of forces of labour, unspecified|Abnormality of forces of labour, unspecified +C0152154|T046|HT|O63|ICD10CM|Long labor|Long labor +C0152154|T046|AB|O63|ICD10CM|Long labor|Long labor +C0152154|T046|HT|O63|ICD10AE|Long labor|Long labor +C0152154|T046|HT|O63|ICD10|Long labour|Long labour +C0157259|T046|PT|O63.0|ICD10AE|Prolonged first stage (of labor)|Prolonged first stage (of labor) +C0157259|T046|PT|O63.0|ICD10CM|Prolonged first stage (of labor)|Prolonged first stage (of labor) +C0157259|T046|AB|O63.0|ICD10CM|Prolonged first stage (of labor)|Prolonged first stage (of labor) +C0157259|T046|PT|O63.0|ICD10|Prolonged first stage (of labour)|Prolonged first stage (of labour) +C0157266|T046|PT|O63.1|ICD10CM|Prolonged second stage (of labor)|Prolonged second stage (of labor) +C0157266|T046|AB|O63.1|ICD10CM|Prolonged second stage (of labor)|Prolonged second stage (of labor) +C0157266|T046|PT|O63.1|ICD10AE|Prolonged second stage (of labor)|Prolonged second stage (of labor) +C0157266|T046|PT|O63.1|ICD10|Prolonged second stage (of labour)|Prolonged second stage (of labour) +C0157270|T046|PT|O63.2|ICD10|Delayed delivery of second twin, triplet, etc.|Delayed delivery of second twin, triplet, etc. +C0157270|T046|PT|O63.2|ICD10CM|Delayed delivery of second twin, triplet, etc.|Delayed delivery of second twin, triplet, etc. +C0157270|T046|AB|O63.2|ICD10CM|Delayed delivery of second twin, triplet, etc.|Delayed delivery of second twin, triplet, etc. +C0152154|T046|PT|O63.9|ICD10CM|Long labor, unspecified|Long labor, unspecified +C0152154|T046|AB|O63.9|ICD10CM|Long labor, unspecified|Long labor, unspecified +C0152154|T046|PT|O63.9|ICD10AE|Long labor, unspecified|Long labor, unspecified +C0152154|T046|PT|O63.9|ICD10|Long labour, unspecified|Long labour, unspecified +C0152154|T046|ET|O63.9|ICD10CM|Prolonged labor NOS|Prolonged labor NOS +C0495256|T046|AB|O64|ICD10CM|Obstructed labor due to malposition and malpresent of fetus|Obstructed labor due to malposition and malpresent of fetus +C0495256|T046|HT|O64|ICD10CM|Obstructed labor due to malposition and malpresentation of fetus|Obstructed labor due to malposition and malpresentation of fetus +C0495256|T046|HT|O64|ICD10AE|Obstructed labor due to malposition and malpresentation of fetus|Obstructed labor due to malposition and malpresentation of fetus +C0495256|T046|HT|O64|ICD10|Obstructed labour due to malposition and malpresentation of fetus|Obstructed labour due to malposition and malpresentation of fetus +C0269823|T047|ET|O64.0|ICD10CM|Deep transverse arrest|Deep transverse arrest +C0495257|T046|PT|O64.0|ICD10AE|Obstructed labor due to incomplete rotation of fetal head|Obstructed labor due to incomplete rotation of fetal head +C0495257|T046|HT|O64.0|ICD10CM|Obstructed labor due to incomplete rotation of fetal head|Obstructed labor due to incomplete rotation of fetal head +C0495257|T046|AB|O64.0|ICD10CM|Obstructed labor due to incomplete rotation of fetal head|Obstructed labor due to incomplete rotation of fetal head +C2909203|T046|ET|O64.0|ICD10CM|Obstructed labor due to persistent occipitoiliac (position)|Obstructed labor due to persistent occipitoiliac (position) +C2909204|T046|ET|O64.0|ICD10CM|Obstructed labor due to persistent occipitoposterior (position)|Obstructed labor due to persistent occipitoposterior (position) +C2909205|T046|ET|O64.0|ICD10CM|Obstructed labor due to persistent occipitosacral (position)|Obstructed labor due to persistent occipitosacral (position) +C2909206|T046|ET|O64.0|ICD10CM|Obstructed labor due to persistent occipitotransverse (position)|Obstructed labor due to persistent occipitotransverse (position) +C0495257|T046|PT|O64.0|ICD10|Obstructed labour due to incomplete rotation of fetal head|Obstructed labour due to incomplete rotation of fetal head +C2909207|T046|AB|O64.0XX0|ICD10CM|Obstructed labor due to incmpl rotation of fetal head, unsp|Obstructed labor due to incmpl rotation of fetal head, unsp +C2909207|T046|PT|O64.0XX0|ICD10CM|Obstructed labor due to incomplete rotation of fetal head, not applicable or unspecified|Obstructed labor due to incomplete rotation of fetal head, not applicable or unspecified +C2909208|T046|AB|O64.0XX1|ICD10CM|Obst labor due to incmpl rotation of fetal head, fetus 1|Obst labor due to incmpl rotation of fetal head, fetus 1 +C2909208|T046|PT|O64.0XX1|ICD10CM|Obstructed labor due to incomplete rotation of fetal head, fetus 1|Obstructed labor due to incomplete rotation of fetal head, fetus 1 +C2909209|T046|AB|O64.0XX2|ICD10CM|Obst labor due to incmpl rotation of fetal head, fetus 2|Obst labor due to incmpl rotation of fetal head, fetus 2 +C2909209|T046|PT|O64.0XX2|ICD10CM|Obstructed labor due to incomplete rotation of fetal head, fetus 2|Obstructed labor due to incomplete rotation of fetal head, fetus 2 +C2909210|T046|AB|O64.0XX3|ICD10CM|Obst labor due to incmpl rotation of fetal head, fetus 3|Obst labor due to incmpl rotation of fetal head, fetus 3 +C2909210|T046|PT|O64.0XX3|ICD10CM|Obstructed labor due to incomplete rotation of fetal head, fetus 3|Obstructed labor due to incomplete rotation of fetal head, fetus 3 +C2909211|T046|AB|O64.0XX4|ICD10CM|Obst labor due to incmpl rotation of fetal head, fetus 4|Obst labor due to incmpl rotation of fetal head, fetus 4 +C2909211|T046|PT|O64.0XX4|ICD10CM|Obstructed labor due to incomplete rotation of fetal head, fetus 4|Obstructed labor due to incomplete rotation of fetal head, fetus 4 +C2909212|T046|AB|O64.0XX5|ICD10CM|Obst labor due to incmpl rotation of fetal head, fetus 5|Obst labor due to incmpl rotation of fetal head, fetus 5 +C2909212|T046|PT|O64.0XX5|ICD10CM|Obstructed labor due to incomplete rotation of fetal head, fetus 5|Obstructed labor due to incomplete rotation of fetal head, fetus 5 +C2909213|T046|AB|O64.0XX9|ICD10CM|Obstructed labor due to incmpl rotation of fetal head, oth|Obstructed labor due to incmpl rotation of fetal head, oth +C2909213|T046|PT|O64.0XX9|ICD10CM|Obstructed labor due to incomplete rotation of fetal head, other fetus|Obstructed labor due to incomplete rotation of fetal head, other fetus +C0475556|T046|HT|O64.1|ICD10CM|Obstructed labor due to breech presentation|Obstructed labor due to breech presentation +C0475556|T046|AB|O64.1|ICD10CM|Obstructed labor due to breech presentation|Obstructed labor due to breech presentation +C0475556|T046|PT|O64.1|ICD10AE|Obstructed labor due to breech presentation|Obstructed labor due to breech presentation +C2909214|T046|ET|O64.1|ICD10CM|Obstructed labor due to buttocks presentation|Obstructed labor due to buttocks presentation +C2909215|T046|ET|O64.1|ICD10CM|Obstructed labor due to complete breech presentation|Obstructed labor due to complete breech presentation +C2909216|T046|ET|O64.1|ICD10CM|Obstructed labor due to frank breech presentation|Obstructed labor due to frank breech presentation +C0475556|T046|PT|O64.1|ICD10|Obstructed labour due to breech presentation|Obstructed labour due to breech presentation +C2909217|T046|PT|O64.1XX0|ICD10CM|Obstructed labor due to breech presentation, not applicable or unspecified|Obstructed labor due to breech presentation, not applicable or unspecified +C2909217|T046|AB|O64.1XX0|ICD10CM|Obstructed labor due to breech presentation, unsp|Obstructed labor due to breech presentation, unsp +C2909218|T046|AB|O64.1XX1|ICD10CM|Obstructed labor due to breech presentation, fetus 1|Obstructed labor due to breech presentation, fetus 1 +C2909218|T046|PT|O64.1XX1|ICD10CM|Obstructed labor due to breech presentation, fetus 1|Obstructed labor due to breech presentation, fetus 1 +C2909219|T046|AB|O64.1XX2|ICD10CM|Obstructed labor due to breech presentation, fetus 2|Obstructed labor due to breech presentation, fetus 2 +C2909219|T046|PT|O64.1XX2|ICD10CM|Obstructed labor due to breech presentation, fetus 2|Obstructed labor due to breech presentation, fetus 2 +C2909220|T046|AB|O64.1XX3|ICD10CM|Obstructed labor due to breech presentation, fetus 3|Obstructed labor due to breech presentation, fetus 3 +C2909220|T046|PT|O64.1XX3|ICD10CM|Obstructed labor due to breech presentation, fetus 3|Obstructed labor due to breech presentation, fetus 3 +C2909221|T046|AB|O64.1XX4|ICD10CM|Obstructed labor due to breech presentation, fetus 4|Obstructed labor due to breech presentation, fetus 4 +C2909221|T046|PT|O64.1XX4|ICD10CM|Obstructed labor due to breech presentation, fetus 4|Obstructed labor due to breech presentation, fetus 4 +C2909222|T046|AB|O64.1XX5|ICD10CM|Obstructed labor due to breech presentation, fetus 5|Obstructed labor due to breech presentation, fetus 5 +C2909222|T046|PT|O64.1XX5|ICD10CM|Obstructed labor due to breech presentation, fetus 5|Obstructed labor due to breech presentation, fetus 5 +C2909223|T046|AB|O64.1XX9|ICD10CM|Obstructed labor due to breech presentation, other fetus|Obstructed labor due to breech presentation, other fetus +C2909223|T046|PT|O64.1XX9|ICD10CM|Obstructed labor due to breech presentation, other fetus|Obstructed labor due to breech presentation, other fetus +C2909224|T046|ET|O64.2|ICD10CM|Obstructed labor due to chin presentation|Obstructed labor due to chin presentation +C0475557|T046|PT|O64.2|ICD10AE|Obstructed labor due to face presentation|Obstructed labor due to face presentation +C0475557|T046|HT|O64.2|ICD10CM|Obstructed labor due to face presentation|Obstructed labor due to face presentation +C0475557|T046|AB|O64.2|ICD10CM|Obstructed labor due to face presentation|Obstructed labor due to face presentation +C0475557|T046|PT|O64.2|ICD10|Obstructed labour due to face presentation|Obstructed labour due to face presentation +C2909225|T046|PT|O64.2XX0|ICD10CM|Obstructed labor due to face presentation, not applicable or unspecified|Obstructed labor due to face presentation, not applicable or unspecified +C2909225|T046|AB|O64.2XX0|ICD10CM|Obstructed labor due to face presentation, unsp|Obstructed labor due to face presentation, unsp +C2909226|T046|AB|O64.2XX1|ICD10CM|Obstructed labor due to face presentation, fetus 1|Obstructed labor due to face presentation, fetus 1 +C2909226|T046|PT|O64.2XX1|ICD10CM|Obstructed labor due to face presentation, fetus 1|Obstructed labor due to face presentation, fetus 1 +C2909227|T046|AB|O64.2XX2|ICD10CM|Obstructed labor due to face presentation, fetus 2|Obstructed labor due to face presentation, fetus 2 +C2909227|T046|PT|O64.2XX2|ICD10CM|Obstructed labor due to face presentation, fetus 2|Obstructed labor due to face presentation, fetus 2 +C2909228|T046|AB|O64.2XX3|ICD10CM|Obstructed labor due to face presentation, fetus 3|Obstructed labor due to face presentation, fetus 3 +C2909228|T046|PT|O64.2XX3|ICD10CM|Obstructed labor due to face presentation, fetus 3|Obstructed labor due to face presentation, fetus 3 +C2909229|T046|AB|O64.2XX4|ICD10CM|Obstructed labor due to face presentation, fetus 4|Obstructed labor due to face presentation, fetus 4 +C2909229|T046|PT|O64.2XX4|ICD10CM|Obstructed labor due to face presentation, fetus 4|Obstructed labor due to face presentation, fetus 4 +C2909230|T046|AB|O64.2XX5|ICD10CM|Obstructed labor due to face presentation, fetus 5|Obstructed labor due to face presentation, fetus 5 +C2909230|T046|PT|O64.2XX5|ICD10CM|Obstructed labor due to face presentation, fetus 5|Obstructed labor due to face presentation, fetus 5 +C2909231|T046|AB|O64.2XX9|ICD10CM|Obstructed labor due to face presentation, other fetus|Obstructed labor due to face presentation, other fetus +C2909231|T046|PT|O64.2XX9|ICD10CM|Obstructed labor due to face presentation, other fetus|Obstructed labor due to face presentation, other fetus +C0475558|T046|HT|O64.3|ICD10CM|Obstructed labor due to brow presentation|Obstructed labor due to brow presentation +C0475558|T046|AB|O64.3|ICD10CM|Obstructed labor due to brow presentation|Obstructed labor due to brow presentation +C0475558|T046|PT|O64.3|ICD10AE|Obstructed labor due to brow presentation|Obstructed labor due to brow presentation +C0475558|T046|PT|O64.3|ICD10|Obstructed labour due to brow presentation|Obstructed labour due to brow presentation +C2909232|T033|PT|O64.3XX0|ICD10CM|Obstructed labor due to brow presentation, not applicable or unspecified|Obstructed labor due to brow presentation, not applicable or unspecified +C2909232|T033|AB|O64.3XX0|ICD10CM|Obstructed labor due to brow presentation, unsp|Obstructed labor due to brow presentation, unsp +C2909233|T033|AB|O64.3XX1|ICD10CM|Obstructed labor due to brow presentation, fetus 1|Obstructed labor due to brow presentation, fetus 1 +C2909233|T033|PT|O64.3XX1|ICD10CM|Obstructed labor due to brow presentation, fetus 1|Obstructed labor due to brow presentation, fetus 1 +C2909234|T033|AB|O64.3XX2|ICD10CM|Obstructed labor due to brow presentation, fetus 2|Obstructed labor due to brow presentation, fetus 2 +C2909234|T033|PT|O64.3XX2|ICD10CM|Obstructed labor due to brow presentation, fetus 2|Obstructed labor due to brow presentation, fetus 2 +C2909235|T033|AB|O64.3XX3|ICD10CM|Obstructed labor due to brow presentation, fetus 3|Obstructed labor due to brow presentation, fetus 3 +C2909235|T033|PT|O64.3XX3|ICD10CM|Obstructed labor due to brow presentation, fetus 3|Obstructed labor due to brow presentation, fetus 3 +C2909236|T033|AB|O64.3XX4|ICD10CM|Obstructed labor due to brow presentation, fetus 4|Obstructed labor due to brow presentation, fetus 4 +C2909236|T033|PT|O64.3XX4|ICD10CM|Obstructed labor due to brow presentation, fetus 4|Obstructed labor due to brow presentation, fetus 4 +C2909237|T033|AB|O64.3XX5|ICD10CM|Obstructed labor due to brow presentation, fetus 5|Obstructed labor due to brow presentation, fetus 5 +C2909237|T033|PT|O64.3XX5|ICD10CM|Obstructed labor due to brow presentation, fetus 5|Obstructed labor due to brow presentation, fetus 5 +C2909238|T033|AB|O64.3XX9|ICD10CM|Obstructed labor due to brow presentation, other fetus|Obstructed labor due to brow presentation, other fetus +C2909238|T033|PT|O64.3XX9|ICD10CM|Obstructed labor due to brow presentation, other fetus|Obstructed labor due to brow presentation, other fetus +C0475559|T046|PT|O64.4|ICD10AE|Obstructed labor due to shoulder presentation|Obstructed labor due to shoulder presentation +C0475559|T046|HT|O64.4|ICD10CM|Obstructed labor due to shoulder presentation|Obstructed labor due to shoulder presentation +C0475559|T046|AB|O64.4|ICD10CM|Obstructed labor due to shoulder presentation|Obstructed labor due to shoulder presentation +C0475559|T046|PT|O64.4|ICD10|Obstructed labour due to shoulder presentation|Obstructed labour due to shoulder presentation +C0426174|T033|ET|O64.4|ICD10CM|Prolapsed arm|Prolapsed arm +C2909239|T046|PT|O64.4XX0|ICD10CM|Obstructed labor due to shoulder presentation, not applicable or unspecified|Obstructed labor due to shoulder presentation, not applicable or unspecified +C2909239|T046|AB|O64.4XX0|ICD10CM|Obstructed labor due to shoulder presentation, unsp|Obstructed labor due to shoulder presentation, unsp +C2909240|T046|AB|O64.4XX1|ICD10CM|Obstructed labor due to shoulder presentation, fetus 1|Obstructed labor due to shoulder presentation, fetus 1 +C2909240|T046|PT|O64.4XX1|ICD10CM|Obstructed labor due to shoulder presentation, fetus 1|Obstructed labor due to shoulder presentation, fetus 1 +C2909241|T046|AB|O64.4XX2|ICD10CM|Obstructed labor due to shoulder presentation, fetus 2|Obstructed labor due to shoulder presentation, fetus 2 +C2909241|T046|PT|O64.4XX2|ICD10CM|Obstructed labor due to shoulder presentation, fetus 2|Obstructed labor due to shoulder presentation, fetus 2 +C2909242|T046|AB|O64.4XX3|ICD10CM|Obstructed labor due to shoulder presentation, fetus 3|Obstructed labor due to shoulder presentation, fetus 3 +C2909242|T046|PT|O64.4XX3|ICD10CM|Obstructed labor due to shoulder presentation, fetus 3|Obstructed labor due to shoulder presentation, fetus 3 +C2909243|T046|AB|O64.4XX4|ICD10CM|Obstructed labor due to shoulder presentation, fetus 4|Obstructed labor due to shoulder presentation, fetus 4 +C2909243|T046|PT|O64.4XX4|ICD10CM|Obstructed labor due to shoulder presentation, fetus 4|Obstructed labor due to shoulder presentation, fetus 4 +C2909244|T046|AB|O64.4XX5|ICD10CM|Obstructed labor due to shoulder presentation, fetus 5|Obstructed labor due to shoulder presentation, fetus 5 +C2909244|T046|PT|O64.4XX5|ICD10CM|Obstructed labor due to shoulder presentation, fetus 5|Obstructed labor due to shoulder presentation, fetus 5 +C2909245|T046|AB|O64.4XX9|ICD10CM|Obstructed labor due to shoulder presentation, other fetus|Obstructed labor due to shoulder presentation, other fetus +C2909245|T046|PT|O64.4XX9|ICD10CM|Obstructed labor due to shoulder presentation, other fetus|Obstructed labor due to shoulder presentation, other fetus +C0475560|T046|HT|O64.5|ICD10CM|Obstructed labor due to compound presentation|Obstructed labor due to compound presentation +C0475560|T046|AB|O64.5|ICD10CM|Obstructed labor due to compound presentation|Obstructed labor due to compound presentation +C0475560|T046|PT|O64.5|ICD10AE|Obstructed labor due to compound presentation|Obstructed labor due to compound presentation +C0475560|T046|PT|O64.5|ICD10|Obstructed labour due to compound presentation|Obstructed labour due to compound presentation +C2909246|T046|PT|O64.5XX0|ICD10CM|Obstructed labor due to compound presentation, not applicable or unspecified|Obstructed labor due to compound presentation, not applicable or unspecified +C2909246|T046|AB|O64.5XX0|ICD10CM|Obstructed labor due to compound presentation, unsp|Obstructed labor due to compound presentation, unsp +C2909247|T046|AB|O64.5XX1|ICD10CM|Obstructed labor due to compound presentation, fetus 1|Obstructed labor due to compound presentation, fetus 1 +C2909247|T046|PT|O64.5XX1|ICD10CM|Obstructed labor due to compound presentation, fetus 1|Obstructed labor due to compound presentation, fetus 1 +C2909248|T046|AB|O64.5XX2|ICD10CM|Obstructed labor due to compound presentation, fetus 2|Obstructed labor due to compound presentation, fetus 2 +C2909248|T046|PT|O64.5XX2|ICD10CM|Obstructed labor due to compound presentation, fetus 2|Obstructed labor due to compound presentation, fetus 2 +C2909249|T046|AB|O64.5XX3|ICD10CM|Obstructed labor due to compound presentation, fetus 3|Obstructed labor due to compound presentation, fetus 3 +C2909249|T046|PT|O64.5XX3|ICD10CM|Obstructed labor due to compound presentation, fetus 3|Obstructed labor due to compound presentation, fetus 3 +C2909250|T046|AB|O64.5XX4|ICD10CM|Obstructed labor due to compound presentation, fetus 4|Obstructed labor due to compound presentation, fetus 4 +C2909250|T046|PT|O64.5XX4|ICD10CM|Obstructed labor due to compound presentation, fetus 4|Obstructed labor due to compound presentation, fetus 4 +C2909251|T046|AB|O64.5XX5|ICD10CM|Obstructed labor due to compound presentation, fetus 5|Obstructed labor due to compound presentation, fetus 5 +C2909251|T046|PT|O64.5XX5|ICD10CM|Obstructed labor due to compound presentation, fetus 5|Obstructed labor due to compound presentation, fetus 5 +C2909252|T046|AB|O64.5XX9|ICD10CM|Obstructed labor due to compound presentation, other fetus|Obstructed labor due to compound presentation, other fetus +C2909252|T046|PT|O64.5XX9|ICD10CM|Obstructed labor due to compound presentation, other fetus|Obstructed labor due to compound presentation, other fetus +C2909253|T046|ET|O64.8|ICD10CM|Obstructed labor due to footling presentation|Obstructed labor due to footling presentation +C2909254|T046|ET|O64.8|ICD10CM|Obstructed labor due to incomplete breech presentation|Obstructed labor due to incomplete breech presentation +C0477840|T046|AB|O64.8|ICD10CM|Obstructed labor due to oth malposition and malpresentation|Obstructed labor due to oth malposition and malpresentation +C0477840|T046|HT|O64.8|ICD10CM|Obstructed labor due to other malposition and malpresentation|Obstructed labor due to other malposition and malpresentation +C0477840|T046|PT|O64.8|ICD10AE|Obstructed labor due to other malposition and malpresentation|Obstructed labor due to other malposition and malpresentation +C0477840|T046|PT|O64.8|ICD10|Obstructed labour due to other malposition and malpresentation|Obstructed labour due to other malposition and malpresentation +C2909255|T046|AB|O64.8XX0|ICD10CM|Obstructed labor due to oth malposition and malpresent, unsp|Obstructed labor due to oth malposition and malpresent, unsp +C2909255|T046|PT|O64.8XX0|ICD10CM|Obstructed labor due to other malposition and malpresentation, not applicable or unspecified|Obstructed labor due to other malposition and malpresentation, not applicable or unspecified +C2909256|T046|AB|O64.8XX1|ICD10CM|Obstructed labor due to oth malpos and malpresent, fetus 1|Obstructed labor due to oth malpos and malpresent, fetus 1 +C2909256|T046|PT|O64.8XX1|ICD10CM|Obstructed labor due to other malposition and malpresentation, fetus 1|Obstructed labor due to other malposition and malpresentation, fetus 1 +C2909257|T046|AB|O64.8XX2|ICD10CM|Obstructed labor due to oth malpos and malpresent, fetus 2|Obstructed labor due to oth malpos and malpresent, fetus 2 +C2909257|T046|PT|O64.8XX2|ICD10CM|Obstructed labor due to other malposition and malpresentation, fetus 2|Obstructed labor due to other malposition and malpresentation, fetus 2 +C2909258|T046|AB|O64.8XX3|ICD10CM|Obstructed labor due to oth malpos and malpresent, fetus 3|Obstructed labor due to oth malpos and malpresent, fetus 3 +C2909258|T046|PT|O64.8XX3|ICD10CM|Obstructed labor due to other malposition and malpresentation, fetus 3|Obstructed labor due to other malposition and malpresentation, fetus 3 +C2909259|T046|AB|O64.8XX4|ICD10CM|Obstructed labor due to oth malpos and malpresent, fetus 4|Obstructed labor due to oth malpos and malpresent, fetus 4 +C2909259|T046|PT|O64.8XX4|ICD10CM|Obstructed labor due to other malposition and malpresentation, fetus 4|Obstructed labor due to other malposition and malpresentation, fetus 4 +C2909260|T046|AB|O64.8XX5|ICD10CM|Obstructed labor due to oth malpos and malpresent, fetus 5|Obstructed labor due to oth malpos and malpresent, fetus 5 +C2909260|T046|PT|O64.8XX5|ICD10CM|Obstructed labor due to other malposition and malpresentation, fetus 5|Obstructed labor due to other malposition and malpresentation, fetus 5 +C2909261|T046|AB|O64.8XX9|ICD10CM|Obstructed labor due to oth malposition and malpresent, oth|Obstructed labor due to oth malposition and malpresent, oth +C2909261|T046|PT|O64.8XX9|ICD10CM|Obstructed labor due to other malposition and malpresentation, other fetus|Obstructed labor due to other malposition and malpresentation, other fetus +C0495258|T046|AB|O64.9|ICD10CM|Obstructed labor due to malposition and malpresent, unsp|Obstructed labor due to malposition and malpresent, unsp +C0495258|T046|HT|O64.9|ICD10CM|Obstructed labor due to malposition and malpresentation, unspecified|Obstructed labor due to malposition and malpresentation, unspecified +C0495258|T046|PT|O64.9|ICD10AE|Obstructed labor due to malposition and malpresentation, unspecified|Obstructed labor due to malposition and malpresentation, unspecified +C0495258|T046|PT|O64.9|ICD10|Obstructed labour due to malposition and malpresentation, unspecified|Obstructed labour due to malposition and malpresentation, unspecified +C2909262|T046|AB|O64.9XX0|ICD10CM|Obstructed labor due to malpos and malpresent, unsp, unsp|Obstructed labor due to malpos and malpresent, unsp, unsp +C2909262|T046|PT|O64.9XX0|ICD10CM|Obstructed labor due to malposition and malpresentation, unspecified, not applicable or unspecified|Obstructed labor due to malposition and malpresentation, unspecified, not applicable or unspecified +C2909263|T046|AB|O64.9XX1|ICD10CM|Obstructed labor due to malpos and malpresent, unsp, fetus 1|Obstructed labor due to malpos and malpresent, unsp, fetus 1 +C2909263|T046|PT|O64.9XX1|ICD10CM|Obstructed labor due to malposition and malpresentation, unspecified, fetus 1|Obstructed labor due to malposition and malpresentation, unspecified, fetus 1 +C2909264|T046|AB|O64.9XX2|ICD10CM|Obstructed labor due to malpos and malpresent, unsp, fetus 2|Obstructed labor due to malpos and malpresent, unsp, fetus 2 +C2909264|T046|PT|O64.9XX2|ICD10CM|Obstructed labor due to malposition and malpresentation, unspecified, fetus 2|Obstructed labor due to malposition and malpresentation, unspecified, fetus 2 +C2909265|T046|AB|O64.9XX3|ICD10CM|Obstructed labor due to malpos and malpresent, unsp, fetus 3|Obstructed labor due to malpos and malpresent, unsp, fetus 3 +C2909265|T046|PT|O64.9XX3|ICD10CM|Obstructed labor due to malposition and malpresentation, unspecified, fetus 3|Obstructed labor due to malposition and malpresentation, unspecified, fetus 3 +C2909266|T046|AB|O64.9XX4|ICD10CM|Obstructed labor due to malpos and malpresent, unsp, fetus 4|Obstructed labor due to malpos and malpresent, unsp, fetus 4 +C2909266|T046|PT|O64.9XX4|ICD10CM|Obstructed labor due to malposition and malpresentation, unspecified, fetus 4|Obstructed labor due to malposition and malpresentation, unspecified, fetus 4 +C2909267|T046|AB|O64.9XX5|ICD10CM|Obstructed labor due to malpos and malpresent, unsp, fetus 5|Obstructed labor due to malpos and malpresent, unsp, fetus 5 +C2909267|T046|PT|O64.9XX5|ICD10CM|Obstructed labor due to malposition and malpresentation, unspecified, fetus 5|Obstructed labor due to malposition and malpresentation, unspecified, fetus 5 +C2909268|T046|AB|O64.9XX9|ICD10CM|Obstructed labor due to malpos and malpresent, unsp, oth|Obstructed labor due to malpos and malpresent, unsp, oth +C2909268|T046|PT|O64.9XX9|ICD10CM|Obstructed labor due to malposition and malpresentation, unspecified, other fetus|Obstructed labor due to malposition and malpresentation, unspecified, other fetus +C0495259|T046|HT|O65|ICD10AE|Obstructed labor due to maternal pelvic abnormality|Obstructed labor due to maternal pelvic abnormality +C0495259|T046|HT|O65|ICD10CM|Obstructed labor due to maternal pelvic abnormality|Obstructed labor due to maternal pelvic abnormality +C0495259|T046|AB|O65|ICD10CM|Obstructed labor due to maternal pelvic abnormality|Obstructed labor due to maternal pelvic abnormality +C0495259|T046|HT|O65|ICD10|Obstructed labour due to maternal pelvic abnormality|Obstructed labour due to maternal pelvic abnormality +C0475552|T046|PT|O65.0|ICD10CM|Obstructed labor due to deformed pelvis|Obstructed labor due to deformed pelvis +C0475552|T046|AB|O65.0|ICD10CM|Obstructed labor due to deformed pelvis|Obstructed labor due to deformed pelvis +C0475552|T046|PT|O65.0|ICD10AE|Obstructed labor due to deformed pelvis|Obstructed labor due to deformed pelvis +C0475552|T046|PT|O65.0|ICD10|Obstructed labour due to deformed pelvis|Obstructed labour due to deformed pelvis +C0475553|T046|PT|O65.1|ICD10AE|Obstructed labor due to generally contracted pelvis|Obstructed labor due to generally contracted pelvis +C0475553|T046|PT|O65.1|ICD10CM|Obstructed labor due to generally contracted pelvis|Obstructed labor due to generally contracted pelvis +C0475553|T046|AB|O65.1|ICD10CM|Obstructed labor due to generally contracted pelvis|Obstructed labor due to generally contracted pelvis +C0475553|T046|PT|O65.1|ICD10|Obstructed labour due to generally contracted pelvis|Obstructed labour due to generally contracted pelvis +C0475554|T046|PT|O65.2|ICD10CM|Obstructed labor due to pelvic inlet contraction|Obstructed labor due to pelvic inlet contraction +C0475554|T046|AB|O65.2|ICD10CM|Obstructed labor due to pelvic inlet contraction|Obstructed labor due to pelvic inlet contraction +C0475554|T046|PT|O65.2|ICD10AE|Obstructed labor due to pelvic inlet contraction|Obstructed labor due to pelvic inlet contraction +C0475554|T046|PT|O65.2|ICD10|Obstructed labour due to pelvic inlet contraction|Obstructed labour due to pelvic inlet contraction +C0475555|T046|AB|O65.3|ICD10CM|Obst labor due to pelvic outlet and mid-cavity contrctn|Obst labor due to pelvic outlet and mid-cavity contrctn +C0475555|T046|PT|O65.3|ICD10CM|Obstructed labor due to pelvic outlet and mid-cavity contraction|Obstructed labor due to pelvic outlet and mid-cavity contraction +C0475555|T046|PT|O65.3|ICD10AE|Obstructed labor due to pelvic outlet and mid-cavity contraction|Obstructed labor due to pelvic outlet and mid-cavity contraction +C0475555|T046|PT|O65.3|ICD10|Obstructed labour due to pelvic outlet and mid-cavity contraction|Obstructed labour due to pelvic outlet and mid-cavity contraction +C0477853|T046|AB|O65.4|ICD10CM|Obstructed labor due to fetopelvic disproportion, unsp|Obstructed labor due to fetopelvic disproportion, unsp +C0477853|T046|PT|O65.4|ICD10CM|Obstructed labor due to fetopelvic disproportion, unspecified|Obstructed labor due to fetopelvic disproportion, unspecified +C0477853|T046|PT|O65.4|ICD10AE|Obstructed labor due to fetopelvic disproportion, unspecified|Obstructed labor due to fetopelvic disproportion, unspecified +C0477853|T046|PT|O65.4|ICD10|Obstructed labour due to fetopelvic disproportion, unspecified|Obstructed labour due to fetopelvic disproportion, unspecified +C0475551|T046|AB|O65.5|ICD10CM|Obstructed labor due to abnlt of maternal pelvic organs|Obstructed labor due to abnlt of maternal pelvic organs +C0475551|T046|PT|O65.5|ICD10CM|Obstructed labor due to abnormality of maternal pelvic organs|Obstructed labor due to abnormality of maternal pelvic organs +C0475551|T046|PT|O65.5|ICD10AE|Obstructed labor due to abnormality of maternal pelvic organs|Obstructed labor due to abnormality of maternal pelvic organs +C2909269|T046|ET|O65.5|ICD10CM|Obstructed labor due to conditions listed in O34.-|Obstructed labor due to conditions listed in O34.- +C0475551|T046|PT|O65.5|ICD10|Obstructed labour due to abnormality of maternal pelvic organs|Obstructed labour due to abnormality of maternal pelvic organs +C0477841|T046|PT|O65.8|ICD10CM|Obstructed labor due to other maternal pelvic abnormalities|Obstructed labor due to other maternal pelvic abnormalities +C0477841|T046|AB|O65.8|ICD10CM|Obstructed labor due to other maternal pelvic abnormalities|Obstructed labor due to other maternal pelvic abnormalities +C0477841|T046|PT|O65.8|ICD10AE|Obstructed labor due to other maternal pelvic abnormalities|Obstructed labor due to other maternal pelvic abnormalities +C0477841|T046|PT|O65.8|ICD10|Obstructed labour due to other maternal pelvic abnormalities|Obstructed labour due to other maternal pelvic abnormalities +C0495259|T046|AB|O65.9|ICD10CM|Obstructed labor due to maternal pelvic abnormality, unsp|Obstructed labor due to maternal pelvic abnormality, unsp +C0495259|T046|PT|O65.9|ICD10CM|Obstructed labor due to maternal pelvic abnormality, unspecified|Obstructed labor due to maternal pelvic abnormality, unspecified +C0495259|T046|PT|O65.9|ICD10AE|Obstructed labor due to maternal pelvic abnormality, unspecified|Obstructed labor due to maternal pelvic abnormality, unspecified +C0495259|T046|PT|O65.9|ICD10|Obstructed labour due to maternal pelvic abnormality, unspecified|Obstructed labour due to maternal pelvic abnormality, unspecified +C0495260|T047|AB|O66|ICD10CM|Other obstructed labor|Other obstructed labor +C0495260|T047|HT|O66|ICD10CM|Other obstructed labor|Other obstructed labor +C0495260|T047|HT|O66|ICD10AE|Other obstructed labor|Other obstructed labor +C0495260|T047|HT|O66|ICD10|Other obstructed labour|Other obstructed labour +C0269825|T046|ET|O66.0|ICD10CM|Impacted shoulders|Impacted shoulders +C4543781|T046|PT|O66.0|ICD10AE|Obstructed labor due to shoulder dystocia|Obstructed labor due to shoulder dystocia +C4543781|T046|PT|O66.0|ICD10CM|Obstructed labor due to shoulder dystocia|Obstructed labor due to shoulder dystocia +C4543781|T046|AB|O66.0|ICD10CM|Obstructed labor due to shoulder dystocia|Obstructed labor due to shoulder dystocia +C4543781|T046|PT|O66.0|ICD10|Obstructed labour due to shoulder dystocia|Obstructed labour due to shoulder dystocia +C1455730|T046|PT|O66.1|ICD10AE|Obstructed labor due to locked twins|Obstructed labor due to locked twins +C1455730|T046|PT|O66.1|ICD10CM|Obstructed labor due to locked twins|Obstructed labor due to locked twins +C1455730|T046|AB|O66.1|ICD10CM|Obstructed labor due to locked twins|Obstructed labor due to locked twins +C1455730|T046|PT|O66.1|ICD10|Obstructed labour due to locked twins|Obstructed labour due to locked twins +C0475561|T046|PT|O66.2|ICD10AE|Obstructed labor due to unusually large fetus|Obstructed labor due to unusually large fetus +C0475561|T046|PT|O66.2|ICD10CM|Obstructed labor due to unusually large fetus|Obstructed labor due to unusually large fetus +C0475561|T046|AB|O66.2|ICD10CM|Obstructed labor due to unusually large fetus|Obstructed labor due to unusually large fetus +C0475561|T046|PT|O66.2|ICD10|Obstructed labour due to unusually large fetus|Obstructed labour due to unusually large fetus +C2909270|T046|ET|O66.3|ICD10CM|Dystocia due to fetal ascites|Dystocia due to fetal ascites +C2909271|T046|ET|O66.3|ICD10CM|Dystocia due to fetal hydrops|Dystocia due to fetal hydrops +C2909272|T046|ET|O66.3|ICD10CM|Dystocia due to fetal meningomyelocele|Dystocia due to fetal meningomyelocele +C2909273|T046|ET|O66.3|ICD10CM|Dystocia due to fetal sacral teratoma|Dystocia due to fetal sacral teratoma +C2909274|T046|ET|O66.3|ICD10CM|Dystocia due to fetal tumor|Dystocia due to fetal tumor +C2909275|T046|ET|O66.3|ICD10CM|Dystocia due to hydrocephalic fetus|Dystocia due to hydrocephalic fetus +C0477842|T046|PT|O66.3|ICD10CM|Obstructed labor due to other abnormalities of fetus|Obstructed labor due to other abnormalities of fetus +C0477842|T046|AB|O66.3|ICD10CM|Obstructed labor due to other abnormalities of fetus|Obstructed labor due to other abnormalities of fetus +C0477842|T046|PT|O66.3|ICD10AE|Obstructed labor due to other abnormalities of fetus|Obstructed labor due to other abnormalities of fetus +C0477842|T046|PT|O66.3|ICD10|Obstructed labour due to other abnormalities of fetus|Obstructed labour due to other abnormalities of fetus +C0157223|T046|HT|O66.4|ICD10CM|Failed trial of labor|Failed trial of labor +C0157223|T046|AB|O66.4|ICD10CM|Failed trial of labor|Failed trial of labor +C0157223|T046|PT|O66.4|ICD10AE|Failed trial of labor, unspecified|Failed trial of labor, unspecified +C0157223|T046|PT|O66.4|ICD10|Failed trial of labour, unspecified|Failed trial of labour, unspecified +C0157223|T046|PT|O66.40|ICD10CM|Failed trial of labor, unspecified|Failed trial of labor, unspecified +C0157223|T046|AB|O66.40|ICD10CM|Failed trial of labor, unspecified|Failed trial of labor, unspecified +C2909276|T046|AB|O66.41|ICD10CM|Failed attempt vaginal birth after previous cesarean del|Failed attempt vaginal birth after previous cesarean del +C2909276|T046|PT|O66.41|ICD10CM|Failed attempted vaginal birth after previous cesarean delivery|Failed attempted vaginal birth after previous cesarean delivery +C2909278|T033|AB|O66.5|ICD10CM|Attempted application of vacuum extractor and forceps|Attempted application of vacuum extractor and forceps +C2909278|T033|PT|O66.5|ICD10CM|Attempted application of vacuum extractor and forceps|Attempted application of vacuum extractor and forceps +C2909277|T047|ET|O66.5|ICD10CM|Attempted application of vacuum or forceps, with subsequent delivery by forceps or cesarean delivery|Attempted application of vacuum or forceps, with subsequent delivery by forceps or cesarean delivery +C0495263|T046|PT|O66.5|ICD10|Failed application of vacuum extractor and forceps, unspecified|Failed application of vacuum extractor and forceps, unspecified +C2909279|T046|AB|O66.6|ICD10CM|Obstructed labor due to other multiple fetuses|Obstructed labor due to other multiple fetuses +C2909279|T046|PT|O66.6|ICD10CM|Obstructed labor due to other multiple fetuses|Obstructed labor due to other multiple fetuses +C0477843|T046|PT|O66.8|ICD10AE|Other specified obstructed labor|Other specified obstructed labor +C0477843|T046|PT|O66.8|ICD10CM|Other specified obstructed labor|Other specified obstructed labor +C0477843|T046|AB|O66.8|ICD10CM|Other specified obstructed labor|Other specified obstructed labor +C0477843|T046|PT|O66.8|ICD10|Other specified obstructed labour|Other specified obstructed labour +C0013418|T046|ET|O66.9|ICD10CM|Dystocia NOS|Dystocia NOS +C0269816|T046|ET|O66.9|ICD10CM|Fetal dystocia NOS|Fetal dystocia NOS +C0269817|T033|ET|O66.9|ICD10CM|Maternal dystocia NOS|Maternal dystocia NOS +C0152156|T046|PT|O66.9|ICD10AE|Obstructed labor, unspecified|Obstructed labor, unspecified +C0152156|T046|PT|O66.9|ICD10CM|Obstructed labor, unspecified|Obstructed labor, unspecified +C0152156|T046|AB|O66.9|ICD10CM|Obstructed labor, unspecified|Obstructed labor, unspecified +C0152156|T046|PT|O66.9|ICD10|Obstructed labour, unspecified|Obstructed labour, unspecified +C0495264|T046|AB|O67|ICD10CM|Labor and delivery comp by intrapartum hemorrhage, NEC|Labor and delivery comp by intrapartum hemorrhage, NEC +C0495264|T046|HT|O67|ICD10CM|Labor and delivery complicated by intrapartum hemorrhage, not elsewhere classified|Labor and delivery complicated by intrapartum hemorrhage, not elsewhere classified +C0495264|T046|HT|O67|ICD10AE|Labor and delivery complicated by intrapartum hemorrhage, not elsewhere classified|Labor and delivery complicated by intrapartum hemorrhage, not elsewhere classified +C0495264|T046|HT|O67|ICD10|Labour and delivery complicated by intrapartum haemorrhage, not elsewhere classified|Labour and delivery complicated by intrapartum haemorrhage, not elsewhere classified +C0475562|T046|PT|O67.0|ICD10|Intrapartum haemorrhage with coagulation defect|Intrapartum haemorrhage with coagulation defect +C2909280|T046|ET|O67.0|ICD10CM|Intrapartum hemorrhage (excessive) associated with afibrinogenemia|Intrapartum hemorrhage (excessive) associated with afibrinogenemia +C2909281|T046|ET|O67.0|ICD10CM|Intrapartum hemorrhage (excessive) associated with disseminated intravascular coagulation|Intrapartum hemorrhage (excessive) associated with disseminated intravascular coagulation +C2909282|T046|ET|O67.0|ICD10CM|Intrapartum hemorrhage (excessive) associated with hyperfibrinolysis|Intrapartum hemorrhage (excessive) associated with hyperfibrinolysis +C2909283|T046|ET|O67.0|ICD10CM|Intrapartum hemorrhage (excessive) associated with hypofibrinogenemia|Intrapartum hemorrhage (excessive) associated with hypofibrinogenemia +C0475562|T046|PT|O67.0|ICD10CM|Intrapartum hemorrhage with coagulation defect|Intrapartum hemorrhage with coagulation defect +C0475562|T046|AB|O67.0|ICD10CM|Intrapartum hemorrhage with coagulation defect|Intrapartum hemorrhage with coagulation defect +C0475562|T046|PT|O67.0|ICD10AE|Intrapartum hemorrhage with coagulation defect|Intrapartum hemorrhage with coagulation defect +C2909284|T046|ET|O67.8|ICD10CM|Excessive intrapartum hemorrhage|Excessive intrapartum hemorrhage +C0477844|T046|PT|O67.8|ICD10|Other intrapartum haemorrhage|Other intrapartum haemorrhage +C0477844|T046|PT|O67.8|ICD10AE|Other intrapartum hemorrhage|Other intrapartum hemorrhage +C0477844|T046|PT|O67.8|ICD10CM|Other intrapartum hemorrhage|Other intrapartum hemorrhage +C0477844|T046|AB|O67.8|ICD10CM|Other intrapartum hemorrhage|Other intrapartum hemorrhage +C0477854|T046|PT|O67.9|ICD10|Intrapartum haemorrhage, unspecified|Intrapartum haemorrhage, unspecified +C0477854|T046|PT|O67.9|ICD10CM|Intrapartum hemorrhage, unspecified|Intrapartum hemorrhage, unspecified +C0477854|T046|AB|O67.9|ICD10CM|Intrapartum hemorrhage, unspecified|Intrapartum hemorrhage, unspecified +C0477854|T046|PT|O67.9|ICD10AE|Intrapartum hemorrhage, unspecified|Intrapartum hemorrhage, unspecified +C2909285|T046|ET|O68|ICD10CM|Fetal acidemia complicating labor and delivery|Fetal acidemia complicating labor and delivery +C2909286|T046|ET|O68|ICD10CM|Fetal acidosis complicating labor and delivery|Fetal acidosis complicating labor and delivery +C2909287|T046|ET|O68|ICD10CM|Fetal alkalosis complicating labor and delivery|Fetal alkalosis complicating labor and delivery +C2909288|T046|ET|O68|ICD10CM|Fetal metabolic acidemia complicating labor and delivery|Fetal metabolic acidemia complicating labor and delivery +C2909289|T046|AB|O68|ICD10CM|Labor and delivery comp by abnlt of fetal acid-base balance|Labor and delivery comp by abnlt of fetal acid-base balance +C2909289|T046|PT|O68|ICD10CM|Labor and delivery complicated by abnormality of fetal acid-base balance|Labor and delivery complicated by abnormality of fetal acid-base balance +C0495265|T046|HT|O68|ICD10AE|Labor and delivery complicated by fetal stress [distress]|Labor and delivery complicated by fetal stress [distress] +C0495265|T046|HT|O68|ICD10|Labour and delivery complicated by fetal stress [distress]|Labour and delivery complicated by fetal stress [distress] +C0475563|T046|PT|O68.0|ICD10AE|Labor and delivery complicated by fetal heart rate anomaly|Labor and delivery complicated by fetal heart rate anomaly +C0475563|T046|PT|O68.0|ICD10|Labour and delivery complicated by fetal heart rate anomaly|Labour and delivery complicated by fetal heart rate anomaly +C0495266|T046|PT|O68.1|ICD10AE|Labor and delivery complicated by meconium in amniotic fluid|Labor and delivery complicated by meconium in amniotic fluid +C0495266|T046|PT|O68.1|ICD10|Labour and delivery complicated by meconium in amniotic fluid|Labour and delivery complicated by meconium in amniotic fluid +C0495267|T046|PT|O68.2|ICD10AE|Labor and delivery complicated by fetal heart rate anomaly with meconium in amniotic fluid|Labor and delivery complicated by fetal heart rate anomaly with meconium in amniotic fluid +C0495267|T046|PT|O68.2|ICD10|Labour and delivery complicated by fetal heart rate anomaly with meconium in amniotic fluid|Labour and delivery complicated by fetal heart rate anomaly with meconium in amniotic fluid +C0475566|T046|PT|O68.3|ICD10AE|Labor and delivery complicated by biochemical evidence of fetal stress|Labor and delivery complicated by biochemical evidence of fetal stress +C0475566|T046|PT|O68.3|ICD10|Labour and delivery complicated by biochemical evidence of fetal stress|Labour and delivery complicated by biochemical evidence of fetal stress +C0477845|T046|PT|O68.8|ICD10AE|Labor and delivery complicated by other evidence of fetal stress|Labor and delivery complicated by other evidence of fetal stress +C0477845|T046|PT|O68.8|ICD10|Labour and delivery complicated by other evidence of fetal stress|Labour and delivery complicated by other evidence of fetal stress +C0477855|T046|PT|O68.9|ICD10AE|Labor and delivery complicated by fetal stress, unspecified|Labor and delivery complicated by fetal stress, unspecified +C0477855|T046|PT|O68.9|ICD10|Labour and delivery complicated by fetal stress, unspecified|Labour and delivery complicated by fetal stress, unspecified +C0495269|T046|AB|O69|ICD10CM|Labor and delivery complicated by umbilical cord comp|Labor and delivery complicated by umbilical cord comp +C0495269|T046|HT|O69|ICD10CM|Labor and delivery complicated by umbilical cord complications|Labor and delivery complicated by umbilical cord complications +C0495269|T046|HT|O69|ICD10AE|Labor and delivery complicated by umbilical cord complications|Labor and delivery complicated by umbilical cord complications +C0495269|T046|HT|O69|ICD10|Labour and delivery complicated by umbilical cord complications|Labour and delivery complicated by umbilical cord complications +C0157275|T046|HT|O69.0|ICD10CM|Labor and delivery complicated by prolapse of cord|Labor and delivery complicated by prolapse of cord +C0157275|T046|AB|O69.0|ICD10CM|Labor and delivery complicated by prolapse of cord|Labor and delivery complicated by prolapse of cord +C0157275|T046|PT|O69.0|ICD10AE|Labor and delivery complicated by prolapse of cord|Labor and delivery complicated by prolapse of cord +C0157275|T046|PT|O69.0|ICD10|Labour and delivery complicated by prolapse of cord|Labour and delivery complicated by prolapse of cord +C2909290|T046|PT|O69.0XX0|ICD10CM|Labor and delivery complicated by prolapse of cord, not applicable or unspecified|Labor and delivery complicated by prolapse of cord, not applicable or unspecified +C2909290|T046|AB|O69.0XX0|ICD10CM|Labor and delivery complicated by prolapse of cord, unsp|Labor and delivery complicated by prolapse of cord, unsp +C2909291|T046|AB|O69.0XX1|ICD10CM|Labor and delivery complicated by prolapse of cord, fetus 1|Labor and delivery complicated by prolapse of cord, fetus 1 +C2909291|T046|PT|O69.0XX1|ICD10CM|Labor and delivery complicated by prolapse of cord, fetus 1|Labor and delivery complicated by prolapse of cord, fetus 1 +C2909292|T046|AB|O69.0XX2|ICD10CM|Labor and delivery complicated by prolapse of cord, fetus 2|Labor and delivery complicated by prolapse of cord, fetus 2 +C2909292|T046|PT|O69.0XX2|ICD10CM|Labor and delivery complicated by prolapse of cord, fetus 2|Labor and delivery complicated by prolapse of cord, fetus 2 +C2909293|T046|AB|O69.0XX3|ICD10CM|Labor and delivery complicated by prolapse of cord, fetus 3|Labor and delivery complicated by prolapse of cord, fetus 3 +C2909293|T046|PT|O69.0XX3|ICD10CM|Labor and delivery complicated by prolapse of cord, fetus 3|Labor and delivery complicated by prolapse of cord, fetus 3 +C2909294|T046|AB|O69.0XX4|ICD10CM|Labor and delivery complicated by prolapse of cord, fetus 4|Labor and delivery complicated by prolapse of cord, fetus 4 +C2909294|T046|PT|O69.0XX4|ICD10CM|Labor and delivery complicated by prolapse of cord, fetus 4|Labor and delivery complicated by prolapse of cord, fetus 4 +C2909295|T046|AB|O69.0XX5|ICD10CM|Labor and delivery complicated by prolapse of cord, fetus 5|Labor and delivery complicated by prolapse of cord, fetus 5 +C2909295|T046|PT|O69.0XX5|ICD10CM|Labor and delivery complicated by prolapse of cord, fetus 5|Labor and delivery complicated by prolapse of cord, fetus 5 +C2909296|T046|AB|O69.0XX9|ICD10CM|Labor and delivery complicated by prolapse of cord, oth|Labor and delivery complicated by prolapse of cord, oth +C2909296|T046|PT|O69.0XX9|ICD10CM|Labor and delivery complicated by prolapse of cord, other fetus|Labor and delivery complicated by prolapse of cord, other fetus +C0566742|T046|AB|O69.1|ICD10CM|Labor and delivery comp by cord around neck, w compression|Labor and delivery comp by cord around neck, w compression +C0566742|T046|HT|O69.1|ICD10CM|Labor and delivery complicated by cord around neck, with compression|Labor and delivery complicated by cord around neck, with compression +C0566742|T046|PT|O69.1|ICD10AE|Labor and delivery complicated by cord around neck, with compression|Labor and delivery complicated by cord around neck, with compression +C0566742|T046|PT|O69.1|ICD10|Labour and delivery complicated by cord around neck, with compression|Labour and delivery complicated by cord around neck, with compression +C2909297|T033|AB|O69.1XX0|ICD10CM|Labor and delivery comp by cord around neck, w comprsn, unsp|Labor and delivery comp by cord around neck, w comprsn, unsp +C2909297|T033|PT|O69.1XX0|ICD10CM|Labor and delivery complicated by cord around neck, with compression, not applicable or unspecified|Labor and delivery complicated by cord around neck, with compression, not applicable or unspecified +C2909298|T033|AB|O69.1XX1|ICD10CM|Labor and del comp by cord around neck, w comprsn, fetus 1|Labor and del comp by cord around neck, w comprsn, fetus 1 +C2909298|T033|PT|O69.1XX1|ICD10CM|Labor and delivery complicated by cord around neck, with compression, fetus 1|Labor and delivery complicated by cord around neck, with compression, fetus 1 +C2909299|T033|AB|O69.1XX2|ICD10CM|Labor and del comp by cord around neck, w comprsn, fetus 2|Labor and del comp by cord around neck, w comprsn, fetus 2 +C2909299|T033|PT|O69.1XX2|ICD10CM|Labor and delivery complicated by cord around neck, with compression, fetus 2|Labor and delivery complicated by cord around neck, with compression, fetus 2 +C2909300|T033|AB|O69.1XX3|ICD10CM|Labor and del comp by cord around neck, w comprsn, fetus 3|Labor and del comp by cord around neck, w comprsn, fetus 3 +C2909300|T033|PT|O69.1XX3|ICD10CM|Labor and delivery complicated by cord around neck, with compression, fetus 3|Labor and delivery complicated by cord around neck, with compression, fetus 3 +C2909301|T033|AB|O69.1XX4|ICD10CM|Labor and del comp by cord around neck, w comprsn, fetus 4|Labor and del comp by cord around neck, w comprsn, fetus 4 +C2909301|T033|PT|O69.1XX4|ICD10CM|Labor and delivery complicated by cord around neck, with compression, fetus 4|Labor and delivery complicated by cord around neck, with compression, fetus 4 +C2909302|T033|AB|O69.1XX5|ICD10CM|Labor and del comp by cord around neck, w comprsn, fetus 5|Labor and del comp by cord around neck, w comprsn, fetus 5 +C2909302|T033|PT|O69.1XX5|ICD10CM|Labor and delivery complicated by cord around neck, with compression, fetus 5|Labor and delivery complicated by cord around neck, with compression, fetus 5 +C2909303|T033|AB|O69.1XX9|ICD10CM|Labor and delivery comp by cord around neck, w comprsn, oth|Labor and delivery comp by cord around neck, w comprsn, oth +C2909303|T033|PT|O69.1XX9|ICD10CM|Labor and delivery complicated by cord around neck, with compression, other fetus|Labor and delivery complicated by cord around neck, with compression, other fetus +C2909307|T046|AB|O69.2|ICD10CM|Labor and delivery comp by oth cord entangle, w compression|Labor and delivery comp by oth cord entangle, w compression +C2909304|T046|ET|O69.2|ICD10CM|Labor and delivery complicated by compression of cord NOS|Labor and delivery complicated by compression of cord NOS +C2909305|T046|ET|O69.2|ICD10CM|Labor and delivery complicated by entanglement of cords of twins in monoamniotic sac|Labor and delivery complicated by entanglement of cords of twins in monoamniotic sac +C2909306|T046|ET|O69.2|ICD10CM|Labor and delivery complicated by knot in cord|Labor and delivery complicated by knot in cord +C0477846|T047|PT|O69.2|ICD10AE|Labor and delivery complicated by other cord entanglement|Labor and delivery complicated by other cord entanglement +C2909307|T046|HT|O69.2|ICD10CM|Labor and delivery complicated by other cord entanglement, with compression|Labor and delivery complicated by other cord entanglement, with compression +C0477846|T047|PT|O69.2|ICD10|Labour and delivery complicated by other cord entanglement|Labour and delivery complicated by other cord entanglement +C2909308|T046|AB|O69.2XX0|ICD10CM|Labor and del comp by oth cord entangle, w comprsn, unsp|Labor and del comp by oth cord entangle, w comprsn, unsp +C2909309|T046|AB|O69.2XX1|ICD10CM|Labor and del comp by oth cord entangle, w comprsn, fetus 1|Labor and del comp by oth cord entangle, w comprsn, fetus 1 +C2909309|T046|PT|O69.2XX1|ICD10CM|Labor and delivery complicated by other cord entanglement, with compression, fetus 1|Labor and delivery complicated by other cord entanglement, with compression, fetus 1 +C2909310|T046|AB|O69.2XX2|ICD10CM|Labor and del comp by oth cord entangle, w comprsn, fetus 2|Labor and del comp by oth cord entangle, w comprsn, fetus 2 +C2909310|T046|PT|O69.2XX2|ICD10CM|Labor and delivery complicated by other cord entanglement, with compression, fetus 2|Labor and delivery complicated by other cord entanglement, with compression, fetus 2 +C2909311|T046|AB|O69.2XX3|ICD10CM|Labor and del comp by oth cord entangle, w comprsn, fetus 3|Labor and del comp by oth cord entangle, w comprsn, fetus 3 +C2909311|T046|PT|O69.2XX3|ICD10CM|Labor and delivery complicated by other cord entanglement, with compression, fetus 3|Labor and delivery complicated by other cord entanglement, with compression, fetus 3 +C2909312|T046|AB|O69.2XX4|ICD10CM|Labor and del comp by oth cord entangle, w comprsn, fetus 4|Labor and del comp by oth cord entangle, w comprsn, fetus 4 +C2909312|T046|PT|O69.2XX4|ICD10CM|Labor and delivery complicated by other cord entanglement, with compression, fetus 4|Labor and delivery complicated by other cord entanglement, with compression, fetus 4 +C2909313|T046|AB|O69.2XX5|ICD10CM|Labor and del comp by oth cord entangle, w comprsn, fetus 5|Labor and del comp by oth cord entangle, w comprsn, fetus 5 +C2909313|T046|PT|O69.2XX5|ICD10CM|Labor and delivery complicated by other cord entanglement, with compression, fetus 5|Labor and delivery complicated by other cord entanglement, with compression, fetus 5 +C2909314|T046|AB|O69.2XX9|ICD10CM|Labor and delivery comp by oth cord entangle, w comprsn, oth|Labor and delivery comp by oth cord entangle, w comprsn, oth +C2909314|T046|PT|O69.2XX9|ICD10CM|Labor and delivery complicated by other cord entanglement, with compression, other fetus|Labor and delivery complicated by other cord entanglement, with compression, other fetus +C0157291|T047|PT|O69.3|ICD10AE|Labor and delivery complicated by short cord|Labor and delivery complicated by short cord +C0157291|T047|HT|O69.3|ICD10CM|Labor and delivery complicated by short cord|Labor and delivery complicated by short cord +C0157291|T047|AB|O69.3|ICD10CM|Labor and delivery complicated by short cord|Labor and delivery complicated by short cord +C0157291|T047|PT|O69.3|ICD10|Labour and delivery complicated by short cord|Labour and delivery complicated by short cord +C2909315|T046|PT|O69.3XX0|ICD10CM|Labor and delivery complicated by short cord, not applicable or unspecified|Labor and delivery complicated by short cord, not applicable or unspecified +C2909315|T046|AB|O69.3XX0|ICD10CM|Labor and delivery complicated by short cord, unsp|Labor and delivery complicated by short cord, unsp +C2909316|T046|AB|O69.3XX1|ICD10CM|Labor and delivery complicated by short cord, fetus 1|Labor and delivery complicated by short cord, fetus 1 +C2909316|T046|PT|O69.3XX1|ICD10CM|Labor and delivery complicated by short cord, fetus 1|Labor and delivery complicated by short cord, fetus 1 +C2909317|T046|AB|O69.3XX2|ICD10CM|Labor and delivery complicated by short cord, fetus 2|Labor and delivery complicated by short cord, fetus 2 +C2909317|T046|PT|O69.3XX2|ICD10CM|Labor and delivery complicated by short cord, fetus 2|Labor and delivery complicated by short cord, fetus 2 +C2909318|T046|AB|O69.3XX3|ICD10CM|Labor and delivery complicated by short cord, fetus 3|Labor and delivery complicated by short cord, fetus 3 +C2909318|T046|PT|O69.3XX3|ICD10CM|Labor and delivery complicated by short cord, fetus 3|Labor and delivery complicated by short cord, fetus 3 +C2909319|T046|AB|O69.3XX4|ICD10CM|Labor and delivery complicated by short cord, fetus 4|Labor and delivery complicated by short cord, fetus 4 +C2909319|T046|PT|O69.3XX4|ICD10CM|Labor and delivery complicated by short cord, fetus 4|Labor and delivery complicated by short cord, fetus 4 +C2909320|T046|AB|O69.3XX5|ICD10CM|Labor and delivery complicated by short cord, fetus 5|Labor and delivery complicated by short cord, fetus 5 +C2909320|T046|PT|O69.3XX5|ICD10CM|Labor and delivery complicated by short cord, fetus 5|Labor and delivery complicated by short cord, fetus 5 +C2909321|T046|AB|O69.3XX9|ICD10CM|Labor and delivery complicated by short cord, other fetus|Labor and delivery complicated by short cord, other fetus +C2909321|T046|PT|O69.3XX9|ICD10CM|Labor and delivery complicated by short cord, other fetus|Labor and delivery complicated by short cord, other fetus +C2909322|T046|ET|O69.4|ICD10CM|Labor and delivery complicated by hemorrhage from vasa previa|Labor and delivery complicated by hemorrhage from vasa previa +C0495270|T047|PT|O69.4|ICD10AE|Labor and delivery complicated by vasa praevia|Labor and delivery complicated by vasa praevia +C0495270|T047|HT|O69.4|ICD10CM|Labor and delivery complicated by vasa previa|Labor and delivery complicated by vasa previa +C0495270|T047|AB|O69.4|ICD10CM|Labor and delivery complicated by vasa previa|Labor and delivery complicated by vasa previa +C0495270|T047|PT|O69.4|ICD10|Labour and delivery complicated by vasa praevia|Labour and delivery complicated by vasa praevia +C2909323|T046|PT|O69.4XX0|ICD10CM|Labor and delivery complicated by vasa previa, not applicable or unspecified|Labor and delivery complicated by vasa previa, not applicable or unspecified +C2909323|T046|AB|O69.4XX0|ICD10CM|Labor and delivery complicated by vasa previa, unsp|Labor and delivery complicated by vasa previa, unsp +C2909324|T046|AB|O69.4XX1|ICD10CM|Labor and delivery complicated by vasa previa, fetus 1|Labor and delivery complicated by vasa previa, fetus 1 +C2909324|T046|PT|O69.4XX1|ICD10CM|Labor and delivery complicated by vasa previa, fetus 1|Labor and delivery complicated by vasa previa, fetus 1 +C2909325|T046|AB|O69.4XX2|ICD10CM|Labor and delivery complicated by vasa previa, fetus 2|Labor and delivery complicated by vasa previa, fetus 2 +C2909325|T046|PT|O69.4XX2|ICD10CM|Labor and delivery complicated by vasa previa, fetus 2|Labor and delivery complicated by vasa previa, fetus 2 +C2909326|T046|AB|O69.4XX3|ICD10CM|Labor and delivery complicated by vasa previa, fetus 3|Labor and delivery complicated by vasa previa, fetus 3 +C2909326|T046|PT|O69.4XX3|ICD10CM|Labor and delivery complicated by vasa previa, fetus 3|Labor and delivery complicated by vasa previa, fetus 3 +C2909327|T046|AB|O69.4XX4|ICD10CM|Labor and delivery complicated by vasa previa, fetus 4|Labor and delivery complicated by vasa previa, fetus 4 +C2909327|T046|PT|O69.4XX4|ICD10CM|Labor and delivery complicated by vasa previa, fetus 4|Labor and delivery complicated by vasa previa, fetus 4 +C2909328|T046|AB|O69.4XX5|ICD10CM|Labor and delivery complicated by vasa previa, fetus 5|Labor and delivery complicated by vasa previa, fetus 5 +C2909328|T046|PT|O69.4XX5|ICD10CM|Labor and delivery complicated by vasa previa, fetus 5|Labor and delivery complicated by vasa previa, fetus 5 +C2909329|T046|AB|O69.4XX9|ICD10CM|Labor and delivery complicated by vasa previa, other fetus|Labor and delivery complicated by vasa previa, other fetus +C2909329|T046|PT|O69.4XX9|ICD10CM|Labor and delivery complicated by vasa previa, other fetus|Labor and delivery complicated by vasa previa, other fetus +C2909330|T046|ET|O69.5|ICD10CM|Labor and delivery complicated by cord bruising|Labor and delivery complicated by cord bruising +C2909331|T046|ET|O69.5|ICD10CM|Labor and delivery complicated by cord hematoma|Labor and delivery complicated by cord hematoma +C2909332|T046|ET|O69.5|ICD10CM|Labor and delivery complicated by thrombosis of umbilical vessels|Labor and delivery complicated by thrombosis of umbilical vessels +C0157299|T047|HT|O69.5|ICD10CM|Labor and delivery complicated by vascular lesion of cord|Labor and delivery complicated by vascular lesion of cord +C0157299|T047|AB|O69.5|ICD10CM|Labor and delivery complicated by vascular lesion of cord|Labor and delivery complicated by vascular lesion of cord +C0157299|T047|PT|O69.5|ICD10AE|Labor and delivery complicated by vascular lesion of cord|Labor and delivery complicated by vascular lesion of cord +C0157299|T047|PT|O69.5|ICD10|Labour and delivery complicated by vascular lesion of cord|Labour and delivery complicated by vascular lesion of cord +C2909333|T046|AB|O69.5XX0|ICD10CM|Labor and delivery comp by vascular lesion of cord, unsp|Labor and delivery comp by vascular lesion of cord, unsp +C2909333|T046|PT|O69.5XX0|ICD10CM|Labor and delivery complicated by vascular lesion of cord, not applicable or unspecified|Labor and delivery complicated by vascular lesion of cord, not applicable or unspecified +C2909334|T046|AB|O69.5XX1|ICD10CM|Labor and delivery comp by vascular lesion of cord, fetus 1|Labor and delivery comp by vascular lesion of cord, fetus 1 +C2909334|T046|PT|O69.5XX1|ICD10CM|Labor and delivery complicated by vascular lesion of cord, fetus 1|Labor and delivery complicated by vascular lesion of cord, fetus 1 +C2909335|T046|AB|O69.5XX2|ICD10CM|Labor and delivery comp by vascular lesion of cord, fetus 2|Labor and delivery comp by vascular lesion of cord, fetus 2 +C2909335|T046|PT|O69.5XX2|ICD10CM|Labor and delivery complicated by vascular lesion of cord, fetus 2|Labor and delivery complicated by vascular lesion of cord, fetus 2 +C2909336|T046|AB|O69.5XX3|ICD10CM|Labor and delivery comp by vascular lesion of cord, fetus 3|Labor and delivery comp by vascular lesion of cord, fetus 3 +C2909336|T046|PT|O69.5XX3|ICD10CM|Labor and delivery complicated by vascular lesion of cord, fetus 3|Labor and delivery complicated by vascular lesion of cord, fetus 3 +C2909337|T046|AB|O69.5XX4|ICD10CM|Labor and delivery comp by vascular lesion of cord, fetus 4|Labor and delivery comp by vascular lesion of cord, fetus 4 +C2909337|T046|PT|O69.5XX4|ICD10CM|Labor and delivery complicated by vascular lesion of cord, fetus 4|Labor and delivery complicated by vascular lesion of cord, fetus 4 +C2909338|T046|AB|O69.5XX5|ICD10CM|Labor and delivery comp by vascular lesion of cord, fetus 5|Labor and delivery comp by vascular lesion of cord, fetus 5 +C2909338|T046|PT|O69.5XX5|ICD10CM|Labor and delivery complicated by vascular lesion of cord, fetus 5|Labor and delivery complicated by vascular lesion of cord, fetus 5 +C2909339|T046|AB|O69.5XX9|ICD10CM|Labor and delivery comp by vascular lesion of cord, oth|Labor and delivery comp by vascular lesion of cord, oth +C2909339|T046|PT|O69.5XX9|ICD10CM|Labor and delivery complicated by vascular lesion of cord, other fetus|Labor and delivery complicated by vascular lesion of cord, other fetus +C0477847|T046|PT|O69.8|ICD10AE|Labor and delivery complicated by other cord complications|Labor and delivery complicated by other cord complications +C0477847|T046|HT|O69.8|ICD10CM|Labor and delivery complicated by other cord complications|Labor and delivery complicated by other cord complications +C0477847|T046|AB|O69.8|ICD10CM|Labor and delivery complicated by other cord complications|Labor and delivery complicated by other cord complications +C0477847|T046|PT|O69.8|ICD10|Labour and delivery complicated by other cord complications|Labour and delivery complicated by other cord complications +C2909340|T046|AB|O69.81|ICD10CM|Labor and delivery comp by cord around neck, w/o compression|Labor and delivery comp by cord around neck, w/o compression +C2909340|T046|HT|O69.81|ICD10CM|Labor and delivery complicated by cord around neck, without compression|Labor and delivery complicated by cord around neck, without compression +C2909341|T046|AB|O69.81X0|ICD10CM|Labor and del comp by cord around neck, w/o comprsn, unsp|Labor and del comp by cord around neck, w/o comprsn, unsp +C2909342|T046|AB|O69.81X1|ICD10CM|Labor and del comp by cord around neck, w/o comprsn, fetus 1|Labor and del comp by cord around neck, w/o comprsn, fetus 1 +C2909342|T046|PT|O69.81X1|ICD10CM|Labor and delivery complicated by cord around neck, without compression, fetus 1|Labor and delivery complicated by cord around neck, without compression, fetus 1 +C2909343|T046|AB|O69.81X2|ICD10CM|Labor and del comp by cord around neck, w/o comprsn, fetus 2|Labor and del comp by cord around neck, w/o comprsn, fetus 2 +C2909343|T046|PT|O69.81X2|ICD10CM|Labor and delivery complicated by cord around neck, without compression, fetus 2|Labor and delivery complicated by cord around neck, without compression, fetus 2 +C2909344|T046|AB|O69.81X3|ICD10CM|Labor and del comp by cord around neck, w/o comprsn, fetus 3|Labor and del comp by cord around neck, w/o comprsn, fetus 3 +C2909344|T046|PT|O69.81X3|ICD10CM|Labor and delivery complicated by cord around neck, without compression, fetus 3|Labor and delivery complicated by cord around neck, without compression, fetus 3 +C2909345|T046|AB|O69.81X4|ICD10CM|Labor and del comp by cord around neck, w/o comprsn, fetus 4|Labor and del comp by cord around neck, w/o comprsn, fetus 4 +C2909345|T046|PT|O69.81X4|ICD10CM|Labor and delivery complicated by cord around neck, without compression, fetus 4|Labor and delivery complicated by cord around neck, without compression, fetus 4 +C2909346|T046|AB|O69.81X5|ICD10CM|Labor and del comp by cord around neck, w/o comprsn, fetus 5|Labor and del comp by cord around neck, w/o comprsn, fetus 5 +C2909346|T046|PT|O69.81X5|ICD10CM|Labor and delivery complicated by cord around neck, without compression, fetus 5|Labor and delivery complicated by cord around neck, without compression, fetus 5 +C2909347|T046|AB|O69.81X9|ICD10CM|Labor and del comp by cord around neck, w/o comprsn, oth|Labor and del comp by cord around neck, w/o comprsn, oth +C2909347|T046|PT|O69.81X9|ICD10CM|Labor and delivery complicated by cord around neck, without compression, other fetus|Labor and delivery complicated by cord around neck, without compression, other fetus +C2909348|T046|AB|O69.82|ICD10CM|Labor and delivery comp by oth cord entangle, w/o comprsn|Labor and delivery comp by oth cord entangle, w/o comprsn +C2909348|T046|HT|O69.82|ICD10CM|Labor and delivery complicated by other cord entanglement, without compression|Labor and delivery complicated by other cord entanglement, without compression +C2909349|T046|AB|O69.82X0|ICD10CM|Labor and del comp by oth cord entangle, w/o comprsn, unsp|Labor and del comp by oth cord entangle, w/o comprsn, unsp +C2909350|T046|AB|O69.82X1|ICD10CM|Labor and del comp by oth cord entangle, w/o comprsn, fts1|Labor and del comp by oth cord entangle, w/o comprsn, fts1 +C2909350|T046|PT|O69.82X1|ICD10CM|Labor and delivery complicated by other cord entanglement, without compression, fetus 1|Labor and delivery complicated by other cord entanglement, without compression, fetus 1 +C2909351|T046|AB|O69.82X2|ICD10CM|Labor and del comp by oth cord entangle, w/o comprsn, fts2|Labor and del comp by oth cord entangle, w/o comprsn, fts2 +C2909351|T046|PT|O69.82X2|ICD10CM|Labor and delivery complicated by other cord entanglement, without compression, fetus 2|Labor and delivery complicated by other cord entanglement, without compression, fetus 2 +C2909352|T046|AB|O69.82X3|ICD10CM|Labor and del comp by oth cord entangle, w/o comprsn, fts3|Labor and del comp by oth cord entangle, w/o comprsn, fts3 +C2909352|T046|PT|O69.82X3|ICD10CM|Labor and delivery complicated by other cord entanglement, without compression, fetus 3|Labor and delivery complicated by other cord entanglement, without compression, fetus 3 +C2909353|T046|AB|O69.82X4|ICD10CM|Labor and del comp by oth cord entangle, w/o comprsn, fts4|Labor and del comp by oth cord entangle, w/o comprsn, fts4 +C2909353|T046|PT|O69.82X4|ICD10CM|Labor and delivery complicated by other cord entanglement, without compression, fetus 4|Labor and delivery complicated by other cord entanglement, without compression, fetus 4 +C2909354|T046|AB|O69.82X5|ICD10CM|Labor and del comp by oth cord entangle, w/o comprsn, fts5|Labor and del comp by oth cord entangle, w/o comprsn, fts5 +C2909354|T046|PT|O69.82X5|ICD10CM|Labor and delivery complicated by other cord entanglement, without compression, fetus 5|Labor and delivery complicated by other cord entanglement, without compression, fetus 5 +C2909355|T046|AB|O69.82X9|ICD10CM|Labor and del comp by oth cord entangle, w/o comprsn, oth|Labor and del comp by oth cord entangle, w/o comprsn, oth +C2909355|T046|PT|O69.82X9|ICD10CM|Labor and delivery complicated by other cord entanglement, without compression, other fetus|Labor and delivery complicated by other cord entanglement, without compression, other fetus +C0477847|T046|HT|O69.89|ICD10CM|Labor and delivery complicated by other cord complications|Labor and delivery complicated by other cord complications +C0477847|T046|AB|O69.89|ICD10CM|Labor and delivery complicated by other cord complications|Labor and delivery complicated by other cord complications +C2909356|T046|AB|O69.89X0|ICD10CM|Labor and delivery complicated by oth cord comp, unsp|Labor and delivery complicated by oth cord comp, unsp +C2909356|T046|PT|O69.89X0|ICD10CM|Labor and delivery complicated by other cord complications, not applicable or unspecified|Labor and delivery complicated by other cord complications, not applicable or unspecified +C2909357|T046|AB|O69.89X1|ICD10CM|Labor and delivery complicated by oth cord comp, fetus 1|Labor and delivery complicated by oth cord comp, fetus 1 +C2909357|T046|PT|O69.89X1|ICD10CM|Labor and delivery complicated by other cord complications, fetus 1|Labor and delivery complicated by other cord complications, fetus 1 +C2909358|T046|AB|O69.89X2|ICD10CM|Labor and delivery complicated by oth cord comp, fetus 2|Labor and delivery complicated by oth cord comp, fetus 2 +C2909358|T046|PT|O69.89X2|ICD10CM|Labor and delivery complicated by other cord complications, fetus 2|Labor and delivery complicated by other cord complications, fetus 2 +C2909359|T046|AB|O69.89X3|ICD10CM|Labor and delivery complicated by oth cord comp, fetus 3|Labor and delivery complicated by oth cord comp, fetus 3 +C2909359|T046|PT|O69.89X3|ICD10CM|Labor and delivery complicated by other cord complications, fetus 3|Labor and delivery complicated by other cord complications, fetus 3 +C2909360|T046|AB|O69.89X4|ICD10CM|Labor and delivery complicated by oth cord comp, fetus 4|Labor and delivery complicated by oth cord comp, fetus 4 +C2909360|T046|PT|O69.89X4|ICD10CM|Labor and delivery complicated by other cord complications, fetus 4|Labor and delivery complicated by other cord complications, fetus 4 +C2909361|T046|AB|O69.89X5|ICD10CM|Labor and delivery complicated by oth cord comp, fetus 5|Labor and delivery complicated by oth cord comp, fetus 5 +C2909361|T046|PT|O69.89X5|ICD10CM|Labor and delivery complicated by other cord complications, fetus 5|Labor and delivery complicated by other cord complications, fetus 5 +C2909362|T046|AB|O69.89X9|ICD10CM|Labor and delivery complicated by oth cord comp, oth|Labor and delivery complicated by oth cord comp, oth +C2909362|T046|PT|O69.89X9|ICD10CM|Labor and delivery complicated by other cord complications, other fetus|Labor and delivery complicated by other cord complications, other fetus +C0495271|T046|AB|O69.9|ICD10CM|Labor and delivery complicated by cord complication, unsp|Labor and delivery complicated by cord complication, unsp +C0495271|T046|HT|O69.9|ICD10CM|Labor and delivery complicated by cord complication, unspecified|Labor and delivery complicated by cord complication, unspecified +C0495271|T046|PT|O69.9|ICD10AE|Labor and delivery complicated by cord complication, unspecified|Labor and delivery complicated by cord complication, unspecified +C0495271|T046|PT|O69.9|ICD10|Labour and delivery complicated by cord complication, unspecified|Labour and delivery complicated by cord complication, unspecified +C2909363|T046|AB|O69.9XX0|ICD10CM|Labor and delivery complicated by cord comp, unsp, unsp|Labor and delivery complicated by cord comp, unsp, unsp +C2909363|T046|PT|O69.9XX0|ICD10CM|Labor and delivery complicated by cord complication, unspecified, not applicable or unspecified|Labor and delivery complicated by cord complication, unspecified, not applicable or unspecified +C2909364|T046|AB|O69.9XX1|ICD10CM|Labor and delivery complicated by cord comp, unsp, fetus 1|Labor and delivery complicated by cord comp, unsp, fetus 1 +C2909364|T046|PT|O69.9XX1|ICD10CM|Labor and delivery complicated by cord complication, unspecified, fetus 1|Labor and delivery complicated by cord complication, unspecified, fetus 1 +C2909365|T046|AB|O69.9XX2|ICD10CM|Labor and delivery complicated by cord comp, unsp, fetus 2|Labor and delivery complicated by cord comp, unsp, fetus 2 +C2909365|T046|PT|O69.9XX2|ICD10CM|Labor and delivery complicated by cord complication, unspecified, fetus 2|Labor and delivery complicated by cord complication, unspecified, fetus 2 +C2909366|T046|AB|O69.9XX3|ICD10CM|Labor and delivery complicated by cord comp, unsp, fetus 3|Labor and delivery complicated by cord comp, unsp, fetus 3 +C2909366|T046|PT|O69.9XX3|ICD10CM|Labor and delivery complicated by cord complication, unspecified, fetus 3|Labor and delivery complicated by cord complication, unspecified, fetus 3 +C2909367|T046|AB|O69.9XX4|ICD10CM|Labor and delivery complicated by cord comp, unsp, fetus 4|Labor and delivery complicated by cord comp, unsp, fetus 4 +C2909367|T046|PT|O69.9XX4|ICD10CM|Labor and delivery complicated by cord complication, unspecified, fetus 4|Labor and delivery complicated by cord complication, unspecified, fetus 4 +C2909368|T046|AB|O69.9XX5|ICD10CM|Labor and delivery complicated by cord comp, unsp, fetus 5|Labor and delivery complicated by cord comp, unsp, fetus 5 +C2909368|T046|PT|O69.9XX5|ICD10CM|Labor and delivery complicated by cord complication, unspecified, fetus 5|Labor and delivery complicated by cord complication, unspecified, fetus 5 +C2909369|T046|AB|O69.9XX9|ICD10CM|Labor and delivery complicated by cord comp, unsp, oth|Labor and delivery complicated by cord comp, unsp, oth +C2909369|T046|PT|O69.9XX9|ICD10CM|Labor and delivery complicated by cord complication, unspecified, other fetus|Labor and delivery complicated by cord complication, unspecified, other fetus +C4290254|T046|ET|O70|ICD10CM|episiotomy extended by laceration|episiotomy extended by laceration +C0269859|T037|HT|O70|ICD10CM|Perineal laceration during delivery|Perineal laceration during delivery +C0269859|T037|AB|O70|ICD10CM|Perineal laceration during delivery|Perineal laceration during delivery +C0269859|T037|HT|O70|ICD10|Perineal laceration during delivery|Perineal laceration during delivery +C0269863|T037|PT|O70.0|ICD10|First degree perineal laceration during delivery|First degree perineal laceration during delivery +C0269863|T037|PT|O70.0|ICD10CM|First degree perineal laceration during delivery|First degree perineal laceration during delivery +C0269863|T037|AB|O70.0|ICD10CM|First degree perineal laceration during delivery|First degree perineal laceration during delivery +C2909371|T037|ET|O70.0|ICD10CM|Perineal laceration, rupture or tear involving fourchette during delivery|Perineal laceration, rupture or tear involving fourchette during delivery +C2909372|T037|ET|O70.0|ICD10CM|Perineal laceration, rupture or tear involving labia during delivery|Perineal laceration, rupture or tear involving labia during delivery +C2909373|T037|ET|O70.0|ICD10CM|Perineal laceration, rupture or tear involving skin during delivery|Perineal laceration, rupture or tear involving skin during delivery +C2909374|T037|ET|O70.0|ICD10CM|Perineal laceration, rupture or tear involving vagina during delivery|Perineal laceration, rupture or tear involving vagina during delivery +C2909375|T037|ET|O70.0|ICD10CM|Perineal laceration, rupture or tear involving vulva during delivery|Perineal laceration, rupture or tear involving vulva during delivery +C2909376|T037|ET|O70.0|ICD10CM|Slight perineal laceration, rupture or tear during delivery|Slight perineal laceration, rupture or tear during delivery +C2909377|T037|ET|O70.1|ICD10CM|Perineal laceration, rupture or tear during delivery as in O70.0, also involving pelvic floor|Perineal laceration, rupture or tear during delivery as in O70.0, also involving pelvic floor +C2909378|T037|ET|O70.1|ICD10CM|Perineal laceration, rupture or tear during delivery as in O70.0, also involving perineal muscles|Perineal laceration, rupture or tear during delivery as in O70.0, also involving perineal muscles +C2909379|T037|ET|O70.1|ICD10CM|Perineal laceration, rupture or tear during delivery as in O70.0, also involving vaginal muscles|Perineal laceration, rupture or tear during delivery as in O70.0, also involving vaginal muscles +C0269870|T037|PT|O70.1|ICD10CM|Second degree perineal laceration during delivery|Second degree perineal laceration during delivery +C0269870|T037|AB|O70.1|ICD10CM|Second degree perineal laceration during delivery|Second degree perineal laceration during delivery +C0269870|T037|PT|O70.1|ICD10|Second degree perineal laceration during delivery|Second degree perineal laceration during delivery +C2909380|T037|ET|O70.2|ICD10CM|Perineal laceration, rupture or tear during delivery as in O70.1, also involving anal sphincter|Perineal laceration, rupture or tear during delivery as in O70.1, also involving anal sphincter +C2909381|T037|ET|O70.2|ICD10CM|Perineal laceration, rupture or tear during delivery as in O70.1, also involving rectovaginal septum|Perineal laceration, rupture or tear during delivery as in O70.1, also involving rectovaginal septum +C2909382|T037|ET|O70.2|ICD10CM|Perineal laceration, rupture or tear during delivery as in O70.1, also involving sphincter NOS|Perineal laceration, rupture or tear during delivery as in O70.1, also involving sphincter NOS +C0269874|T037|PT|O70.2|ICD10|Third degree perineal laceration during delivery|Third degree perineal laceration during delivery +C0269874|T037|AB|O70.2|ICD10CM|Third degree perineal laceration during delivery|Third degree perineal laceration during delivery +C0269874|T037|HT|O70.2|ICD10CM|Third degree perineal laceration during delivery|Third degree perineal laceration during delivery +C4269052|T046|AB|O70.20|ICD10CM|Third degree perineal laceration during delivery, unsp|Third degree perineal laceration during delivery, unsp +C4269052|T046|PT|O70.20|ICD10CM|Third degree perineal laceration during delivery, unspecified|Third degree perineal laceration during delivery, unspecified +C4269053|T037|AB|O70.21|ICD10CM|Third degree perineal laceration during delivery, IIIa|Third degree perineal laceration during delivery, IIIa +C4269053|T037|PT|O70.21|ICD10CM|Third degree perineal laceration during delivery, IIIa|Third degree perineal laceration during delivery, IIIa +C4269054|T046|AB|O70.22|ICD10CM|Third degree perineal laceration during delivery, IIIb|Third degree perineal laceration during delivery, IIIb +C4269054|T046|PT|O70.22|ICD10CM|Third degree perineal laceration during delivery, IIIb|Third degree perineal laceration during delivery, IIIb +C4269055|T046|AB|O70.23|ICD10CM|Third degree perineal laceration during delivery, IIIc|Third degree perineal laceration during delivery, IIIc +C4269055|T046|PT|O70.23|ICD10CM|Third degree perineal laceration during delivery, IIIc|Third degree perineal laceration during delivery, IIIc +C1275806|T033|PT|O70.3|ICD10|Fourth degree perineal laceration during delivery|Fourth degree perineal laceration during delivery +C1275806|T033|PT|O70.3|ICD10CM|Fourth degree perineal laceration during delivery|Fourth degree perineal laceration during delivery +C1275806|T033|AB|O70.3|ICD10CM|Fourth degree perineal laceration during delivery|Fourth degree perineal laceration during delivery +C2909383|T037|ET|O70.3|ICD10CM|Perineal laceration, rupture or tear during delivery as in O70.2, also involving anal mucosa|Perineal laceration, rupture or tear during delivery as in O70.2, also involving anal mucosa +C2909384|T037|ET|O70.3|ICD10CM|Perineal laceration, rupture or tear during delivery as in O70.2, also involving rectal mucosa|Perineal laceration, rupture or tear during delivery as in O70.2, also involving rectal mucosa +C2227945|T037|AB|O70.4|ICD10CM|Anal sphincter tear comp del, not assoc w third degree lac|Anal sphincter tear comp del, not assoc w third degree lac +C2227945|T037|PT|O70.4|ICD10CM|Anal sphincter tear complicating delivery, not associated with third degree laceration|Anal sphincter tear complicating delivery, not associated with third degree laceration +C0269859|T037|PT|O70.9|ICD10CM|Perineal laceration during delivery, unspecified|Perineal laceration during delivery, unspecified +C0269859|T037|AB|O70.9|ICD10CM|Perineal laceration during delivery, unspecified|Perineal laceration during delivery, unspecified +C0269859|T037|PT|O70.9|ICD10|Perineal laceration during delivery, unspecified|Perineal laceration during delivery, unspecified +C4290255|T046|ET|O71|ICD10CM|obstetric damage from instruments|obstetric damage from instruments +C0157344|T037|HT|O71|ICD10|Other obstetric trauma|Other obstetric trauma +C0157344|T037|AB|O71|ICD10CM|Other obstetric trauma|Other obstetric trauma +C0157344|T037|HT|O71|ICD10CM|Other obstetric trauma|Other obstetric trauma +C2909386|T037|AB|O71.0|ICD10CM|Rupture of uterus (spontaneous) before onset of labor|Rupture of uterus (spontaneous) before onset of labor +C2909386|T037|HT|O71.0|ICD10CM|Rupture of uterus (spontaneous) before onset of labor|Rupture of uterus (spontaneous) before onset of labor +C0157345|T037|PT|O71.0|ICD10AE|Rupture of uterus before onset of labor|Rupture of uterus before onset of labor +C0157345|T037|PT|O71.0|ICD10|Rupture of uterus before onset of labour|Rupture of uterus before onset of labour +C2909387|T037|AB|O71.00|ICD10CM|Rupture of uterus before onset of labor, unsp trimester|Rupture of uterus before onset of labor, unsp trimester +C2909387|T037|PT|O71.00|ICD10CM|Rupture of uterus before onset of labor, unspecified trimester|Rupture of uterus before onset of labor, unspecified trimester +C2909388|T037|AB|O71.02|ICD10CM|Rupture of uterus before onset of labor, second trimester|Rupture of uterus before onset of labor, second trimester +C2909388|T037|PT|O71.02|ICD10CM|Rupture of uterus before onset of labor, second trimester|Rupture of uterus before onset of labor, second trimester +C2909389|T037|AB|O71.03|ICD10CM|Rupture of uterus before onset of labor, third trimester|Rupture of uterus before onset of labor, third trimester +C2909389|T037|PT|O71.03|ICD10CM|Rupture of uterus before onset of labor, third trimester|Rupture of uterus before onset of labor, third trimester +C3812903|T046|PT|O71.1|ICD10CM|Rupture of uterus during labor|Rupture of uterus during labor +C3812903|T046|AB|O71.1|ICD10CM|Rupture of uterus during labor|Rupture of uterus during labor +C3812903|T046|PT|O71.1|ICD10AE|Rupture of uterus during labor|Rupture of uterus during labor +C3812903|T046|PT|O71.1|ICD10|Rupture of uterus during labour|Rupture of uterus during labour +C2909390|T046|ET|O71.1|ICD10CM|Rupture of uterus not stated as occurring before onset of labor|Rupture of uterus not stated as occurring before onset of labor +C0157357|T046|PT|O71.2|ICD10CM|Postpartum inversion of uterus|Postpartum inversion of uterus +C0157357|T046|AB|O71.2|ICD10CM|Postpartum inversion of uterus|Postpartum inversion of uterus +C0157357|T046|PT|O71.2|ICD10|Postpartum inversion of uterus|Postpartum inversion of uterus +C2909391|T020|ET|O71.3|ICD10CM|Annular detachment of cervix|Annular detachment of cervix +C0157358|T037|PT|O71.3|ICD10|Obstetric laceration of cervix|Obstetric laceration of cervix +C0157358|T037|PT|O71.3|ICD10CM|Obstetric laceration of cervix|Obstetric laceration of cervix +C0157358|T037|AB|O71.3|ICD10CM|Obstetric laceration of cervix|Obstetric laceration of cervix +C2909392|T037|ET|O71.4|ICD10CM|Laceration of vaginal wall without perineal laceration|Laceration of vaginal wall without perineal laceration +C0495272|T037|PT|O71.4|ICD10|Obstetric high vaginal laceration alone|Obstetric high vaginal laceration alone +C0495272|T037|PT|O71.4|ICD10CM|Obstetric high vaginal laceration alone|Obstetric high vaginal laceration alone +C0495272|T037|AB|O71.4|ICD10CM|Obstetric high vaginal laceration alone|Obstetric high vaginal laceration alone +C0405218|T037|ET|O71.5|ICD10CM|Obstetric injury to bladder|Obstetric injury to bladder +C0269889|T037|ET|O71.5|ICD10CM|Obstetric injury to urethra|Obstetric injury to urethra +C0157366|T037|PT|O71.5|ICD10CM|Other obstetric injury to pelvic organs|Other obstetric injury to pelvic organs +C0157366|T037|AB|O71.5|ICD10CM|Other obstetric injury to pelvic organs|Other obstetric injury to pelvic organs +C0157366|T037|PT|O71.5|ICD10|Other obstetric injury to pelvic organs|Other obstetric injury to pelvic organs +C0269892|T037|ET|O71.6|ICD10CM|Obstetric avulsion of inner symphyseal cartilage|Obstetric avulsion of inner symphyseal cartilage +C0269894|T037|ET|O71.6|ICD10CM|Obstetric damage to coccyx|Obstetric damage to coccyx +C0269891|T037|PT|O71.6|ICD10CM|Obstetric damage to pelvic joints and ligaments|Obstetric damage to pelvic joints and ligaments +C0269891|T037|AB|O71.6|ICD10CM|Obstetric damage to pelvic joints and ligaments|Obstetric damage to pelvic joints and ligaments +C0269891|T037|PT|O71.6|ICD10|Obstetric damage to pelvic joints and ligaments|Obstetric damage to pelvic joints and ligaments +C2909393|T037|ET|O71.6|ICD10CM|Obstetric traumatic separation of symphysis (pubis)|Obstetric traumatic separation of symphysis (pubis) +C0269895|T046|PT|O71.7|ICD10|Obstetric haematoma of pelvis|Obstetric haematoma of pelvis +C0269895|T046|PT|O71.7|ICD10CM|Obstetric hematoma of pelvis|Obstetric hematoma of pelvis +C0269895|T046|AB|O71.7|ICD10CM|Obstetric hematoma of pelvis|Obstetric hematoma of pelvis +C0269895|T046|PT|O71.7|ICD10AE|Obstetric hematoma of pelvis|Obstetric hematoma of pelvis +C2909394|T046|ET|O71.7|ICD10CM|Obstetric hematoma of perineum|Obstetric hematoma of perineum +C0269896|T037|ET|O71.7|ICD10CM|Obstetric hematoma of vagina|Obstetric hematoma of vagina +C2909395|T046|ET|O71.7|ICD10CM|Obstetric hematoma of vulva|Obstetric hematoma of vulva +C0157379|T037|PT|O71.8|ICD10|Other specified obstetric trauma|Other specified obstetric trauma +C0157379|T037|HT|O71.8|ICD10CM|Other specified obstetric trauma|Other specified obstetric trauma +C0157379|T037|AB|O71.8|ICD10CM|Other specified obstetric trauma|Other specified obstetric trauma +C2909396|T037|AB|O71.81|ICD10CM|Laceration of uterus, not elsewhere classified|Laceration of uterus, not elsewhere classified +C2909396|T037|PT|O71.81|ICD10CM|Laceration of uterus, not elsewhere classified|Laceration of uterus, not elsewhere classified +C2977480|T037|ET|O71.82|ICD10CM|Obstetric periurethral trauma|Obstetric periurethral trauma +C2977481|T037|AB|O71.82|ICD10CM|Other specified trauma to perineum and vulva|Other specified trauma to perineum and vulva +C2977481|T037|PT|O71.82|ICD10CM|Other specified trauma to perineum and vulva|Other specified trauma to perineum and vulva +C0157379|T037|PT|O71.89|ICD10CM|Other specified obstetric trauma|Other specified obstetric trauma +C0157379|T037|AB|O71.89|ICD10CM|Other specified obstetric trauma|Other specified obstetric trauma +C0269858|T037|PT|O71.9|ICD10CM|Obstetric trauma, unspecified|Obstetric trauma, unspecified +C0269858|T037|AB|O71.9|ICD10CM|Obstetric trauma, unspecified|Obstetric trauma, unspecified +C0269858|T037|PT|O71.9|ICD10|Obstetric trauma, unspecified|Obstetric trauma, unspecified +C4290256|T046|ET|O72|ICD10CM|hemorrhage after delivery of fetus or infant|hemorrhage after delivery of fetus or infant +C0032797|T046|HT|O72|ICD10|Postpartum haemorrhage|Postpartum haemorrhage +C0032797|T046|HT|O72|ICD10CM|Postpartum hemorrhage|Postpartum hemorrhage +C0032797|T046|AB|O72|ICD10CM|Postpartum hemorrhage|Postpartum hemorrhage +C0032797|T046|HT|O72|ICD10AE|Postpartum hemorrhage|Postpartum hemorrhage +C0269898|T046|ET|O72.0|ICD10CM|Hemorrhage associated with retained, trapped or adherent placenta|Hemorrhage associated with retained, trapped or adherent placenta +C0242669|T047|ET|O72.0|ICD10CM|Retained placenta NOS|Retained placenta NOS +C0269898|T046|PT|O72.0|ICD10|Third-stage haemorrhage|Third-stage haemorrhage +C0269898|T046|PT|O72.0|ICD10CM|Third-stage hemorrhage|Third-stage hemorrhage +C0269898|T046|AB|O72.0|ICD10CM|Third-stage hemorrhage|Third-stage hemorrhage +C0269898|T046|PT|O72.0|ICD10AE|Third-stage hemorrhage|Third-stage hemorrhage +C2909398|T046|ET|O72.1|ICD10CM|Hemorrhage following delivery of placenta|Hemorrhage following delivery of placenta +C0220887|T046|PT|O72.1|ICD10|Other immediate postpartum haemorrhage|Other immediate postpartum haemorrhage +C0220887|T046|PT|O72.1|ICD10AE|Other immediate postpartum hemorrhage|Other immediate postpartum hemorrhage +C0220887|T046|PT|O72.1|ICD10CM|Other immediate postpartum hemorrhage|Other immediate postpartum hemorrhage +C0220887|T046|AB|O72.1|ICD10CM|Other immediate postpartum hemorrhage|Other immediate postpartum hemorrhage +C0269899|T046|ET|O72.1|ICD10CM|Postpartum hemorrhage (atonic) NOS|Postpartum hemorrhage (atonic) NOS +C2909399|T046|ET|O72.1|ICD10CM|Uterine atony with hemorrhage|Uterine atony with hemorrhage +C0473508|T046|PT|O72.2|ICD10|Delayed and secondary postpartum haemorrhage|Delayed and secondary postpartum haemorrhage +C0473508|T046|PT|O72.2|ICD10CM|Delayed and secondary postpartum hemorrhage|Delayed and secondary postpartum hemorrhage +C0473508|T046|AB|O72.2|ICD10CM|Delayed and secondary postpartum hemorrhage|Delayed and secondary postpartum hemorrhage +C0473508|T046|PT|O72.2|ICD10AE|Delayed and secondary postpartum hemorrhage|Delayed and secondary postpartum hemorrhage +C2919139|T046|ET|O72.2|ICD10CM|Retained products of conception NOS, following delivery|Retained products of conception NOS, following delivery +C0341976|T046|ET|O72.3|ICD10CM|Postpartum afibrinogenemia|Postpartum afibrinogenemia +C0157403|T047|PT|O72.3|ICD10|Postpartum coagulation defects|Postpartum coagulation defects +C0157403|T047|PT|O72.3|ICD10CM|Postpartum coagulation defects|Postpartum coagulation defects +C0157403|T047|AB|O72.3|ICD10CM|Postpartum coagulation defects|Postpartum coagulation defects +C0341975|T046|ET|O72.3|ICD10CM|Postpartum fibrinolysis|Postpartum fibrinolysis +C0157404|T046|HT|O73|ICD10|Retained placenta and membranes, without haemorrhage|Retained placenta and membranes, without haemorrhage +C0157404|T046|AB|O73|ICD10CM|Retained placenta and membranes, without hemorrhage|Retained placenta and membranes, without hemorrhage +C0157404|T046|HT|O73|ICD10CM|Retained placenta and membranes, without hemorrhage|Retained placenta and membranes, without hemorrhage +C0157404|T046|HT|O73|ICD10AE|Retained placenta and membranes, without hemorrhage|Retained placenta and membranes, without hemorrhage +C1386369|T047|ET|O73.0|ICD10CM|Adherent placenta, without hemorrhage|Adherent placenta, without hemorrhage +C0269905|T046|PT|O73.0|ICD10|Retained placenta without haemorrhage|Retained placenta without haemorrhage +C0269905|T046|PT|O73.0|ICD10AE|Retained placenta without hemorrhage|Retained placenta without hemorrhage +C0269905|T046|PT|O73.0|ICD10CM|Retained placenta without hemorrhage|Retained placenta without hemorrhage +C0269905|T046|AB|O73.0|ICD10CM|Retained placenta without hemorrhage|Retained placenta without hemorrhage +C1400980|T047|ET|O73.0|ICD10CM|Trapped placenta without hemorrhage|Trapped placenta without hemorrhage +C0157408|T046|AB|O73.1|ICD10CM|Retained portions of placenta and membranes, w/o hemorrhage|Retained portions of placenta and membranes, w/o hemorrhage +C0157408|T046|PT|O73.1|ICD10|Retained portions of placenta and membranes, without haemorrhage|Retained portions of placenta and membranes, without haemorrhage +C0157408|T046|PT|O73.1|ICD10CM|Retained portions of placenta and membranes, without hemorrhage|Retained portions of placenta and membranes, without hemorrhage +C0157408|T046|PT|O73.1|ICD10AE|Retained portions of placenta and membranes, without hemorrhage|Retained portions of placenta and membranes, without hemorrhage +C0157408|T046|ET|O73.1|ICD10CM|Retained products of conception following delivery, without hemorrhage|Retained products of conception following delivery, without hemorrhage +C0477856|T046|HT|O74|ICD10|Complications of anaesthesia during labour and delivery|Complications of anaesthesia during labour and delivery +C0477856|T046|HT|O74|ICD10AE|Complications of anesthesia during labor and delivery|Complications of anesthesia during labor and delivery +C0477856|T046|HT|O74|ICD10CM|Complications of anesthesia during labor and delivery|Complications of anesthesia during labor and delivery +C0477856|T046|AB|O74|ICD10CM|Complications of anesthesia during labor and delivery|Complications of anesthesia during labor and delivery +C0349357|T046|AB|O74.0|ICD10CM|Aspirat pneumonitis due to anesth during labor and delivery|Aspirat pneumonitis due to anesth during labor and delivery +C0349357|T046|PT|O74.0|ICD10|Aspiration pneumonitis due to anaesthesia during labour and delivery|Aspiration pneumonitis due to anaesthesia during labour and delivery +C0349357|T046|PT|O74.0|ICD10CM|Aspiration pneumonitis due to anesthesia during labor and delivery|Aspiration pneumonitis due to anesthesia during labor and delivery +C0349357|T046|PT|O74.0|ICD10AE|Aspiration pneumonitis due to anesthesia during labor and delivery|Aspiration pneumonitis due to anesthesia during labor and delivery +C2909402|T037|ET|O74.0|ICD10CM|Inhalation of stomach contents or secretions NOS due to anesthesia during labor and delivery|Inhalation of stomach contents or secretions NOS due to anesthesia during labor and delivery +C2909403|T046|ET|O74.0|ICD10CM|Mendelson's syndrome due to anesthesia during labor and delivery|Mendelson's syndrome due to anesthesia during labor and delivery +C0477848|T046|AB|O74.1|ICD10CM|Oth pulmonary comp of anesthesia during labor and delivery|Oth pulmonary comp of anesthesia during labor and delivery +C0477848|T046|PT|O74.1|ICD10|Other pulmonary complications of anaesthesia during labour and delivery|Other pulmonary complications of anaesthesia during labour and delivery +C0477848|T046|PT|O74.1|ICD10CM|Other pulmonary complications of anesthesia during labor and delivery|Other pulmonary complications of anesthesia during labor and delivery +C0477848|T046|PT|O74.1|ICD10AE|Other pulmonary complications of anesthesia during labor and delivery|Other pulmonary complications of anesthesia during labor and delivery +C0475582|T046|AB|O74.2|ICD10CM|Cardiac comp of anesthesia during labor and delivery|Cardiac comp of anesthesia during labor and delivery +C0475582|T046|PT|O74.2|ICD10|Cardiac complications of anaesthesia during labour and delivery|Cardiac complications of anaesthesia during labour and delivery +C0475582|T046|PT|O74.2|ICD10CM|Cardiac complications of anesthesia during labor and delivery|Cardiac complications of anesthesia during labor and delivery +C0475582|T046|PT|O74.2|ICD10AE|Cardiac complications of anesthesia during labor and delivery|Cardiac complications of anesthesia during labor and delivery +C0475583|T046|PT|O74.3|ICD10|Central nervous system complications of anaesthesia during labour and delivery|Central nervous system complications of anaesthesia during labour and delivery +C0475583|T046|PT|O74.3|ICD10AE|Central nervous system complications of anesthesia during labor and delivery|Central nervous system complications of anesthesia during labor and delivery +C0475583|T046|PT|O74.3|ICD10CM|Central nervous system complications of anesthesia during labor and delivery|Central nervous system complications of anesthesia during labor and delivery +C0475583|T046|AB|O74.3|ICD10CM|Cnsl complications of anesthesia during labor and delivery|Cnsl complications of anesthesia during labor and delivery +C0495276|T037|PT|O74.4|ICD10|Toxic reaction to local anaesthesia during labour and delivery|Toxic reaction to local anaesthesia during labour and delivery +C0495276|T037|PT|O74.4|ICD10CM|Toxic reaction to local anesthesia during labor and delivery|Toxic reaction to local anesthesia during labor and delivery +C0495276|T037|AB|O74.4|ICD10CM|Toxic reaction to local anesthesia during labor and delivery|Toxic reaction to local anesthesia during labor and delivery +C0495276|T037|PT|O74.4|ICD10AE|Toxic reaction to local anesthesia during labor and delivery|Toxic reaction to local anesthesia during labor and delivery +C0475525|T046|AB|O74.5|ICD10CM|Spinal and epidur anesthesia-induced hdache dur labr and del|Spinal and epidur anesthesia-induced hdache dur labr and del +C0475525|T046|PT|O74.5|ICD10|Spinal and epidural anaesthesia-induced headache during labour and delivery|Spinal and epidural anaesthesia-induced headache during labour and delivery +C0475525|T046|PT|O74.5|ICD10CM|Spinal and epidural anesthesia-induced headache during labor and delivery|Spinal and epidural anesthesia-induced headache during labor and delivery +C0475525|T046|PT|O74.5|ICD10AE|Spinal and epidural anesthesia-induced headache during labor and delivery|Spinal and epidural anesthesia-induced headache during labor and delivery +C0477849|T046|AB|O74.6|ICD10CM|Oth comp of spinal and epidural anesth during labor and del|Oth comp of spinal and epidural anesth during labor and del +C0477849|T046|PT|O74.6|ICD10|Other complications of spinal and epidural anaesthesia during labour and delivery|Other complications of spinal and epidural anaesthesia during labour and delivery +C0477849|T046|PT|O74.6|ICD10CM|Other complications of spinal and epidural anesthesia during labor and delivery|Other complications of spinal and epidural anesthesia during labor and delivery +C0477849|T046|PT|O74.6|ICD10AE|Other complications of spinal and epidural anesthesia during labor and delivery|Other complications of spinal and epidural anesthesia during labor and delivery +C0475584|T033|PT|O74.7|ICD10AE|Failed or difficult intubation during labor and delivery|Failed or difficult intubation during labor and delivery +C0475584|T033|PT|O74.7|ICD10|Failed or difficult intubation during labour and delivery|Failed or difficult intubation during labour and delivery +C2909404|T046|AB|O74.7|ICD10CM|Failed or difficult intubation for anesth dur labor and del|Failed or difficult intubation for anesth dur labor and del +C2909404|T046|PT|O74.7|ICD10CM|Failed or difficult intubation for anesthesia during labor and delivery|Failed or difficult intubation for anesthesia during labor and delivery +C0477850|T046|PT|O74.8|ICD10|Other complications of anaesthesia during labour and delivery|Other complications of anaesthesia during labour and delivery +C0477850|T046|PT|O74.8|ICD10AE|Other complications of anesthesia during labor and delivery|Other complications of anesthesia during labor and delivery +C0477850|T046|PT|O74.8|ICD10CM|Other complications of anesthesia during labor and delivery|Other complications of anesthesia during labor and delivery +C0477850|T046|AB|O74.8|ICD10CM|Other complications of anesthesia during labor and delivery|Other complications of anesthesia during labor and delivery +C0477856|T046|PT|O74.9|ICD10|Complication of anaesthesia during labour and delivery, unspecified|Complication of anaesthesia during labour and delivery, unspecified +C0477856|T046|AB|O74.9|ICD10CM|Complication of anesthesia during labor and delivery, unsp|Complication of anesthesia during labor and delivery, unsp +C0477856|T046|PT|O74.9|ICD10CM|Complication of anesthesia during labor and delivery, unspecified|Complication of anesthesia during labor and delivery, unspecified +C0477856|T046|PT|O74.9|ICD10AE|Complication of anesthesia during labor and delivery, unspecified|Complication of anesthesia during labor and delivery, unspecified +C0868755|T046|AB|O75|ICD10CM|Oth complications of labor and delivery, NEC|Oth complications of labor and delivery, NEC +C0868755|T046|HT|O75|ICD10CM|Other complications of labor and delivery, not elsewhere classified|Other complications of labor and delivery, not elsewhere classified +C0868755|T046|HT|O75|ICD10AE|Other complications of labor and delivery, not elsewhere classified|Other complications of labor and delivery, not elsewhere classified +C0868755|T046|HT|O75|ICD10|Other complications of labour and delivery, not elsewhere classified|Other complications of labour and delivery, not elsewhere classified +C0495277|T046|PT|O75.0|ICD10AE|Maternal distress during labor and delivery|Maternal distress during labor and delivery +C0495277|T046|PT|O75.0|ICD10CM|Maternal distress during labor and delivery|Maternal distress during labor and delivery +C0495277|T046|AB|O75.0|ICD10CM|Maternal distress during labor and delivery|Maternal distress during labor and delivery +C0495277|T046|PT|O75.0|ICD10|Maternal distress during labour and delivery|Maternal distress during labour and delivery +C2909405|T046|ET|O75.1|ICD10CM|Obstetric shock following labor and delivery|Obstetric shock following labor and delivery +C0157450|T046|PT|O75.1|ICD10AE|Shock during or following labor and delivery|Shock during or following labor and delivery +C0157450|T046|PT|O75.1|ICD10CM|Shock during or following labor and delivery|Shock during or following labor and delivery +C0157450|T046|AB|O75.1|ICD10CM|Shock during or following labor and delivery|Shock during or following labor and delivery +C0157450|T046|PT|O75.1|ICD10|Shock during or following labour and delivery|Shock during or following labour and delivery +C0495278|T047|PT|O75.2|ICD10CM|Pyrexia during labor, not elsewhere classified|Pyrexia during labor, not elsewhere classified +C0495278|T047|AB|O75.2|ICD10CM|Pyrexia during labor, not elsewhere classified|Pyrexia during labor, not elsewhere classified +C0495278|T047|PT|O75.2|ICD10AE|Pyrexia during labor, not elsewhere classified|Pyrexia during labor, not elsewhere classified +C0495278|T047|PT|O75.2|ICD10|Pyrexia during labour, not elsewhere classified|Pyrexia during labour, not elsewhere classified +C0477851|T046|PT|O75.3|ICD10CM|Other infection during labor|Other infection during labor +C0477851|T046|AB|O75.3|ICD10CM|Other infection during labor|Other infection during labor +C0477851|T046|PT|O75.3|ICD10AE|Other infection during labor|Other infection during labor +C0477851|T046|PT|O75.3|ICD10|Other infection during labour|Other infection during labour +C0269810|T046|ET|O75.3|ICD10CM|Sepsis during labor|Sepsis during labor +C2909406|T046|ET|O75.4|ICD10CM|Cardiac arrest following obstetric surgery or procedures|Cardiac arrest following obstetric surgery or procedures +C2909407|T046|ET|O75.4|ICD10CM|Cardiac failure following obstetric surgery or procedures|Cardiac failure following obstetric surgery or procedures +C2909408|T046|ET|O75.4|ICD10CM|Cerebral anoxia following obstetric surgery or procedures|Cerebral anoxia following obstetric surgery or procedures +C0157465|T046|PT|O75.4|ICD10|Other complications of obstetric surgery and procedures|Other complications of obstetric surgery and procedures +C0157465|T046|PT|O75.4|ICD10CM|Other complications of obstetric surgery and procedures|Other complications of obstetric surgery and procedures +C0157465|T046|AB|O75.4|ICD10CM|Other complications of obstetric surgery and procedures|Other complications of obstetric surgery and procedures +C2909409|T046|ET|O75.4|ICD10CM|Pulmonary edema following obstetric surgery or procedures|Pulmonary edema following obstetric surgery or procedures +C0157152|T046|PT|O75.5|ICD10CM|Delayed delivery after artificial rupture of membranes|Delayed delivery after artificial rupture of membranes +C0157152|T046|AB|O75.5|ICD10CM|Delayed delivery after artificial rupture of membranes|Delayed delivery after artificial rupture of membranes +C0157152|T046|PT|O75.5|ICD10|Delayed delivery after artificial rupture of membranes|Delayed delivery after artificial rupture of membranes +C0495246|T046|PT|O75.6|ICD10|Delayed delivery after spontaneous or unspecified rupture of membranes|Delayed delivery after spontaneous or unspecified rupture of membranes +C0477852|T046|PT|O75.8|ICD10AE|Other specified complications of labor and delivery|Other specified complications of labor and delivery +C0477852|T046|HT|O75.8|ICD10CM|Other specified complications of labor and delivery|Other specified complications of labor and delivery +C0477852|T046|AB|O75.8|ICD10CM|Other specified complications of labor and delivery|Other specified complications of labor and delivery +C0477852|T046|PT|O75.8|ICD10|Other specified complications of labour and delivery|Other specified complications of labour and delivery +C3647099|T046|PT|O75.81|ICD10CM|Maternal exhaustion complicating labor and delivery|Maternal exhaustion complicating labor and delivery +C3647099|T046|AB|O75.81|ICD10CM|Maternal exhaustion complicating labor and delivery|Maternal exhaustion complicating labor and delivery +C3161258|T033|AB|O75.82|ICD10CM|Onset labor 37-39 weeks, w del by (planned) cesarean section|Onset labor 37-39 weeks, w del by (planned) cesarean section +C0477852|T046|PT|O75.89|ICD10CM|Other specified complications of labor and delivery|Other specified complications of labor and delivery +C0477852|T046|AB|O75.89|ICD10CM|Other specified complications of labor and delivery|Other specified complications of labor and delivery +C0269815|T046|PT|O75.9|ICD10CM|Complication of labor and delivery, unspecified|Complication of labor and delivery, unspecified +C0269815|T046|AB|O75.9|ICD10CM|Complication of labor and delivery, unspecified|Complication of labor and delivery, unspecified +C0269815|T046|PT|O75.9|ICD10AE|Complication of labor and delivery, unspecified|Complication of labor and delivery, unspecified +C0269815|T046|PT|O75.9|ICD10|Complication of labour and delivery, unspecified|Complication of labour and delivery, unspecified +C2909418|T046|AB|O76|ICD10CM|Abnlt in fetal heart rate and rhythm comp labor and delivery|Abnlt in fetal heart rate and rhythm comp labor and delivery +C2909418|T046|PT|O76|ICD10CM|Abnormality in fetal heart rate and rhythm complicating labor and delivery|Abnormality in fetal heart rate and rhythm complicating labor and delivery +C2909411|T046|ET|O76|ICD10CM|Depressed fetal heart rate tones complicating labor and delivery|Depressed fetal heart rate tones complicating labor and delivery +C2909412|T046|ET|O76|ICD10CM|Fetal bradycardia complicating labor and delivery|Fetal bradycardia complicating labor and delivery +C2909413|T046|ET|O76|ICD10CM|Fetal heart rate abnormal variability complicating labor and delivery|Fetal heart rate abnormal variability complicating labor and delivery +C2909414|T046|ET|O76|ICD10CM|Fetal heart rate decelerations complicating labor and delivery|Fetal heart rate decelerations complicating labor and delivery +C2909415|T046|ET|O76|ICD10CM|Fetal heart rate irregularity complicating labor and delivery|Fetal heart rate irregularity complicating labor and delivery +C2909416|T046|ET|O76|ICD10CM|Fetal tachycardia complicating labor and delivery|Fetal tachycardia complicating labor and delivery +C2909417|T046|ET|O76|ICD10CM|Non-reassuring fetal heart rate or rhythm complicating labor and delivery|Non-reassuring fetal heart rate or rhythm complicating labor and delivery +C2909419|T046|AB|O77|ICD10CM|Other fetal stress complicating labor and delivery|Other fetal stress complicating labor and delivery +C2909419|T046|HT|O77|ICD10CM|Other fetal stress complicating labor and delivery|Other fetal stress complicating labor and delivery +C0495266|T046|PT|O77.0|ICD10CM|Labor and delivery complicated by meconium in amniotic fluid|Labor and delivery complicated by meconium in amniotic fluid +C0495266|T046|AB|O77.0|ICD10CM|Labor and delivery complicated by meconium in amniotic fluid|Labor and delivery complicated by meconium in amniotic fluid +C2909420|T046|AB|O77.1|ICD10CM|Fetal stress in labor or delivery due to drug administration|Fetal stress in labor or delivery due to drug administration +C2909420|T046|PT|O77.1|ICD10CM|Fetal stress in labor or delivery due to drug administration|Fetal stress in labor or delivery due to drug administration +C0477845|T046|AB|O77.8|ICD10CM|Labor and delivery comp by oth evidence of fetal stress|Labor and delivery comp by oth evidence of fetal stress +C2909421|T046|ET|O77.8|ICD10CM|Labor and delivery complicated by electrocardiographic evidence of fetal stress|Labor and delivery complicated by electrocardiographic evidence of fetal stress +C0477845|T046|PT|O77.8|ICD10CM|Labor and delivery complicated by other evidence of fetal stress|Labor and delivery complicated by other evidence of fetal stress +C2909422|T046|ET|O77.8|ICD10CM|Labor and delivery complicated by ultrasonic evidence of fetal stress|Labor and delivery complicated by ultrasonic evidence of fetal stress +C0477855|T046|PT|O77.9|ICD10CM|Labor and delivery complicated by fetal stress, unspecified|Labor and delivery complicated by fetal stress, unspecified +C0477855|T046|AB|O77.9|ICD10CM|Labor and delivery complicated by fetal stress, unspecified|Labor and delivery complicated by fetal stress, unspecified +C2909423|T033|AB|O80|ICD10CM|Encounter for full-term uncomplicated delivery|Encounter for full-term uncomplicated delivery +C2909423|T033|PT|O80|ICD10CM|Encounter for full-term uncomplicated delivery|Encounter for full-term uncomplicated delivery +C2977483|T033|HT|O80-O82|ICD10CM|Encounter for delivery (O80-O82)|Encounter for delivery (O80-O82) +C0677662|T033|PT|O80.0|ICD10|Spontaneous vertex delivery|Spontaneous vertex delivery +C0851255|T033|PT|O80.1|ICD10|Spontaneous breech delivery|Spontaneous breech delivery +C0495281|T033|PT|O81.2|ICD10|Mid-cavity forceps with rotation|Mid-cavity forceps with rotation +C0438443|T033|PT|O81.4|ICD10|Vacuum extractor delivery|Vacuum extractor delivery +C0452219|T033|PT|O81.5|ICD10|Delivery by combination of forceps and vacuum extractor|Delivery by combination of forceps and vacuum extractor +C2909425|T033|AB|O82|ICD10CM|Encounter for cesarean delivery without indication|Encounter for cesarean delivery without indication +C2909425|T033|PT|O82|ICD10CM|Encounter for cesarean delivery without indication|Encounter for cesarean delivery without indication +C0475602|T033|PT|O82.0|ICD10|Delivery by elective caesarean section|Delivery by elective caesarean section +C0475602|T033|PT|O82.0|ICD10AE|Delivery by elective cesarean section|Delivery by elective cesarean section +C0475603|T033|PT|O82.1|ICD10|Delivery by emergency caesarean section|Delivery by emergency caesarean section +C0475603|T033|PT|O82.1|ICD10AE|Delivery by emergency cesarean section|Delivery by emergency cesarean section +C0579081|T033|PT|O82.2|ICD10|Delivery by caesarean hysterectomy|Delivery by caesarean hysterectomy +C0579081|T033|PT|O82.2|ICD10AE|Delivery by cesarean hysterectomy|Delivery by cesarean hysterectomy +C0477861|T033|PT|O83.2|ICD10|Other manipulation-assisted delivery|Other manipulation-assisted delivery +C0451792|T033|PT|O83.3|ICD10|Delivery of viable fetus in abdominal pregnancy|Delivery of viable fetus in abdominal pregnancy +C0495285|T033|PT|O83.4|ICD10|Destructive operation for delivery|Destructive operation for delivery +C0475550|T033|PT|O84.2|ICD10|Multiple delivery, all by caesarean section|Multiple delivery, all by caesarean section +C0475550|T033|PT|O84.2|ICD10AE|Multiple delivery, all by cesarean section|Multiple delivery, all by cesarean section +C0269936|T047|ET|O85|ICD10CM|Postpartum sepsis|Postpartum sepsis +C0269935|T046|ET|O85|ICD10CM|Puerperal peritonitis|Puerperal peritonitis +C1405807|T046|ET|O85|ICD10CM|Puerperal pyemia|Puerperal pyemia +C0269936|T047|PT|O85|ICD10CM|Puerperal sepsis|Puerperal sepsis +C0269936|T047|AB|O85|ICD10CM|Puerperal sepsis|Puerperal sepsis +C0269936|T047|PT|O85|ICD10|Puerperal sepsis|Puerperal sepsis +C0477865|T047|HT|O85-O92|ICD10CM|Complications predominantly related to the puerperium (O85-O92)|Complications predominantly related to the puerperium (O85-O92) +C0477865|T047|HT|O85-O92.9|ICD10|Complications predominantly related to the puerperium|Complications predominantly related to the puerperium +C0495286|T047|HT|O86|ICD10|Other puerperal infections|Other puerperal infections +C0495286|T047|AB|O86|ICD10CM|Other puerperal infections|Other puerperal infections +C0495286|T047|HT|O86|ICD10CM|Other puerperal infections|Other puerperal infections +C2909426|T046|ET|O86.0|ICD10CM|Infected cesarean delivery wound following delivery|Infected cesarean delivery wound following delivery +C2909427|T046|ET|O86.0|ICD10CM|Infected perineal repair following delivery|Infected perineal repair following delivery +C0452167|T046|PT|O86.0|ICD10|Infection of obstetric surgical wound|Infection of obstetric surgical wound +C0452167|T046|AB|O86.0|ICD10CM|Infection of obstetric surgical wound|Infection of obstetric surgical wound +C0452167|T046|HT|O86.0|ICD10CM|Infection of obstetric surgical wound|Infection of obstetric surgical wound +C4552724|T046|AB|O86.00|ICD10CM|Infection of obstetric surgical wound, unspecified|Infection of obstetric surgical wound, unspecified +C4552724|T046|PT|O86.00|ICD10CM|Infection of obstetric surgical wound, unspecified|Infection of obstetric surgical wound, unspecified +C4703316|T046|AB|O86.01|ICD10CM|Infct of obstetric surgical wound, superfic incisional site|Infct of obstetric surgical wound, superfic incisional site +C4703316|T046|PT|O86.01|ICD10CM|Infection of obstetric surgical wound, superficial incisional site|Infection of obstetric surgical wound, superficial incisional site +C4718796|T047|ET|O86.01|ICD10CM|Stitch abscess following an obstetrical procedure|Stitch abscess following an obstetrical procedure +C4718795|T047|ET|O86.01|ICD10CM|Subcutaneous abscess following an obstetrical procedure|Subcutaneous abscess following an obstetrical procedure +C4703317|T046|PT|O86.02|ICD10CM|Infection of obstetric surgical wound, deep incisional site|Infection of obstetric surgical wound, deep incisional site +C4703317|T046|AB|O86.02|ICD10CM|Infection of obstetric surgical wound, deep incisional site|Infection of obstetric surgical wound, deep incisional site +C4718797|T046|ET|O86.02|ICD10CM|Intramuscular abscess following an obstetrical procedure|Intramuscular abscess following an obstetrical procedure +C5141163|T047|ET|O86.02|ICD10CM|Sub-fascial abscess following an obstetrical procedure|Sub-fascial abscess following an obstetrical procedure +C4703318|T046|AB|O86.03|ICD10CM|Infection of obstetric surgical wound, organ and space site|Infection of obstetric surgical wound, organ and space site +C4703318|T046|PT|O86.03|ICD10CM|Infection of obstetric surgical wound, organ and space site|Infection of obstetric surgical wound, organ and space site +C4718799|T046|ET|O86.03|ICD10CM|Intraabdominal abscess following an obstetrical procedure|Intraabdominal abscess following an obstetrical procedure +C4718842|T047|ET|O86.03|ICD10CM|Subphrenic abscess following an obstetrical procedure|Subphrenic abscess following an obstetrical procedure +C4703315|T047|PT|O86.04|ICD10CM|Sepsis following an obstetrical procedure|Sepsis following an obstetrical procedure +C4703315|T047|AB|O86.04|ICD10CM|Sepsis following an obstetrical procedure|Sepsis following an obstetrical procedure +C4703319|T046|PT|O86.09|ICD10CM|Infection of obstetric surgical wound, other surgical site|Infection of obstetric surgical wound, other surgical site +C4703319|T046|AB|O86.09|ICD10CM|Infection of obstetric surgical wound, other surgical site|Infection of obstetric surgical wound, other surgical site +C0477866|T046|HT|O86.1|ICD10CM|Other infection of genital tract following delivery|Other infection of genital tract following delivery +C0477866|T046|AB|O86.1|ICD10CM|Other infection of genital tract following delivery|Other infection of genital tract following delivery +C0477866|T046|PT|O86.1|ICD10|Other infection of genital tract following delivery|Other infection of genital tract following delivery +C0587236|T047|PT|O86.11|ICD10CM|Cervicitis following delivery|Cervicitis following delivery +C0587236|T047|AB|O86.11|ICD10CM|Cervicitis following delivery|Cervicitis following delivery +C2909428|T046|AB|O86.12|ICD10CM|Endometritis following delivery|Endometritis following delivery +C2909428|T046|PT|O86.12|ICD10CM|Endometritis following delivery|Endometritis following delivery +C0587237|T047|PT|O86.13|ICD10CM|Vaginitis following delivery|Vaginitis following delivery +C0587237|T047|AB|O86.13|ICD10CM|Vaginitis following delivery|Vaginitis following delivery +C0477866|T046|PT|O86.19|ICD10CM|Other infection of genital tract following delivery|Other infection of genital tract following delivery +C0477866|T046|AB|O86.19|ICD10CM|Other infection of genital tract following delivery|Other infection of genital tract following delivery +C0451772|T046|HT|O86.2|ICD10CM|Urinary tract infection following delivery|Urinary tract infection following delivery +C0451772|T046|AB|O86.2|ICD10CM|Urinary tract infection following delivery|Urinary tract infection following delivery +C0451772|T046|PT|O86.2|ICD10|Urinary tract infection following delivery|Urinary tract infection following delivery +C0451772|T046|ET|O86.20|ICD10CM|Puerperal urinary tract infection NOS|Puerperal urinary tract infection NOS +C0451772|T046|AB|O86.20|ICD10CM|Urinary tract infection following delivery, unspecified|Urinary tract infection following delivery, unspecified +C0451772|T046|PT|O86.20|ICD10CM|Urinary tract infection following delivery, unspecified|Urinary tract infection following delivery, unspecified +C2909429|T046|PT|O86.21|ICD10CM|Infection of kidney following delivery|Infection of kidney following delivery +C2909429|T046|AB|O86.21|ICD10CM|Infection of kidney following delivery|Infection of kidney following delivery +C2909431|T046|PT|O86.22|ICD10CM|Infection of bladder following delivery|Infection of bladder following delivery +C2909431|T046|AB|O86.22|ICD10CM|Infection of bladder following delivery|Infection of bladder following delivery +C2909430|T046|ET|O86.22|ICD10CM|Infection of urethra following delivery|Infection of urethra following delivery +C2909432|T046|AB|O86.29|ICD10CM|Other urinary tract infection following delivery|Other urinary tract infection following delivery +C2909432|T046|PT|O86.29|ICD10CM|Other urinary tract infection following delivery|Other urinary tract infection following delivery +C0477867|T047|PT|O86.3|ICD10|Other genitourinary tract infections following delivery|Other genitourinary tract infections following delivery +C2909433|T046|ET|O86.4|ICD10CM|Puerperal infection NOS following delivery|Puerperal infection NOS following delivery +C2909434|T046|ET|O86.4|ICD10CM|Puerperal pyrexia NOS following delivery|Puerperal pyrexia NOS following delivery +C0157536|T184|PT|O86.4|ICD10CM|Pyrexia of unknown origin following delivery|Pyrexia of unknown origin following delivery +C0157536|T184|AB|O86.4|ICD10CM|Pyrexia of unknown origin following delivery|Pyrexia of unknown origin following delivery +C0157536|T184|PT|O86.4|ICD10|Pyrexia of unknown origin following delivery|Pyrexia of unknown origin following delivery +C0477868|T047|PT|O86.8|ICD10|Other specified puerperal infections|Other specified puerperal infections +C0477868|T047|HT|O86.8|ICD10CM|Other specified puerperal infections|Other specified puerperal infections +C0477868|T047|AB|O86.8|ICD10CM|Other specified puerperal infections|Other specified puerperal infections +C2712615|T047|PT|O86.81|ICD10CM|Puerperal septic thrombophlebitis|Puerperal septic thrombophlebitis +C2712615|T047|AB|O86.81|ICD10CM|Puerperal septic thrombophlebitis|Puerperal septic thrombophlebitis +C0477868|T047|PT|O86.89|ICD10CM|Other specified puerperal infections|Other specified puerperal infections +C0477868|T047|AB|O86.89|ICD10CM|Other specified puerperal infections|Other specified puerperal infections +C3264525|T047|AB|O87|ICD10CM|Venous complications and hemorrhoids in the puerperium|Venous complications and hemorrhoids in the puerperium +C3264525|T047|HT|O87|ICD10CM|Venous complications and hemorrhoids in the puerperium|Venous complications and hemorrhoids in the puerperium +C4290258|T046|ET|O87|ICD10CM|venous complications in labor, delivery and the puerperium|venous complications in labor, delivery and the puerperium +C0157535|T046|HT|O87|ICD10|Venous complications in the puerperium|Venous complications in the puerperium +C1261394|T046|ET|O87.0|ICD10CM|Puerperal phlebitis NOS|Puerperal phlebitis NOS +C0701839|T047|ET|O87.0|ICD10CM|Puerperal thrombosis NOS|Puerperal thrombosis NOS +C0495289|T047|PT|O87.0|ICD10CM|Superficial thrombophlebitis in the puerperium|Superficial thrombophlebitis in the puerperium +C0495289|T047|AB|O87.0|ICD10CM|Superficial thrombophlebitis in the puerperium|Superficial thrombophlebitis in the puerperium +C0495289|T047|PT|O87.0|ICD10|Superficial thrombophlebitis in the puerperium|Superficial thrombophlebitis in the puerperium +C0342039|T047|PT|O87.1|ICD10|Deep phlebothrombosis in the puerperium|Deep phlebothrombosis in the puerperium +C0342039|T047|PT|O87.1|ICD10CM|Deep phlebothrombosis in the puerperium|Deep phlebothrombosis in the puerperium +C0342039|T047|AB|O87.1|ICD10CM|Deep phlebothrombosis in the puerperium|Deep phlebothrombosis in the puerperium +C0342039|T047|ET|O87.1|ICD10CM|Deep vein thrombosis, postpartum|Deep vein thrombosis, postpartum +C0269953|T046|ET|O87.1|ICD10CM|Pelvic thrombophlebitis, postpartum|Pelvic thrombophlebitis, postpartum +C0349072|T047|PT|O87.2|ICD10|Haemorrhoids in the puerperium|Haemorrhoids in the puerperium +C0349072|T047|PT|O87.2|ICD10CM|Hemorrhoids in the puerperium|Hemorrhoids in the puerperium +C0349072|T047|AB|O87.2|ICD10CM|Hemorrhoids in the puerperium|Hemorrhoids in the puerperium +C0349072|T047|PT|O87.2|ICD10AE|Hemorrhoids in the puerperium|Hemorrhoids in the puerperium +C0348787|T047|PT|O87.3|ICD10|Cerebral venous thrombosis in the puerperium|Cerebral venous thrombosis in the puerperium +C0348787|T047|PT|O87.3|ICD10CM|Cerebral venous thrombosis in the puerperium|Cerebral venous thrombosis in the puerperium +C0348787|T047|AB|O87.3|ICD10CM|Cerebral venous thrombosis in the puerperium|Cerebral venous thrombosis in the puerperium +C2909436|T046|ET|O87.3|ICD10CM|Cerebrovenous sinus thrombosis in the puerperium|Cerebrovenous sinus thrombosis in the puerperium +C2909437|T046|AB|O87.4|ICD10CM|Varicose veins of lower extremity in the puerperium|Varicose veins of lower extremity in the puerperium +C2909437|T046|PT|O87.4|ICD10CM|Varicose veins of lower extremity in the puerperium|Varicose veins of lower extremity in the puerperium +C0585958|T020|ET|O87.8|ICD10CM|Genital varices in the puerperium|Genital varices in the puerperium +C0477869|T047|PT|O87.8|ICD10CM|Other venous complications in the puerperium|Other venous complications in the puerperium +C0477869|T047|AB|O87.8|ICD10CM|Other venous complications in the puerperium|Other venous complications in the puerperium +C0477869|T047|PT|O87.8|ICD10|Other venous complications in the puerperium|Other venous complications in the puerperium +C1261394|T046|ET|O87.9|ICD10CM|Puerperal phlebopathy NOS|Puerperal phlebopathy NOS +C0157535|T046|PT|O87.9|ICD10|Venous complication in the puerperium, unspecified|Venous complication in the puerperium, unspecified +C0157535|T046|PT|O87.9|ICD10CM|Venous complication in the puerperium, unspecified|Venous complication in the puerperium, unspecified +C0157535|T046|AB|O87.9|ICD10CM|Venous complication in the puerperium, unspecified|Venous complication in the puerperium, unspecified +C0495292|T046|AB|O88|ICD10CM|Obstetric embolism|Obstetric embolism +C0495292|T046|HT|O88|ICD10CM|Obstetric embolism|Obstetric embolism +C0495292|T046|HT|O88|ICD10|Obstetric embolism|Obstetric embolism +C0157541|T046|HT|O88.0|ICD10CM|Obstetric air embolism|Obstetric air embolism +C0157541|T046|AB|O88.0|ICD10CM|Obstetric air embolism|Obstetric air embolism +C0157541|T046|PT|O88.0|ICD10|Obstetric air embolism|Obstetric air embolism +C2909438|T046|AB|O88.01|ICD10CM|Obstetric air embolism in pregnancy|Obstetric air embolism in pregnancy +C2909438|T046|HT|O88.01|ICD10CM|Obstetric air embolism in pregnancy|Obstetric air embolism in pregnancy +C2909439|T046|AB|O88.011|ICD10CM|Air embolism in pregnancy, first trimester|Air embolism in pregnancy, first trimester +C2909439|T046|PT|O88.011|ICD10CM|Air embolism in pregnancy, first trimester|Air embolism in pregnancy, first trimester +C2909440|T046|AB|O88.012|ICD10CM|Air embolism in pregnancy, second trimester|Air embolism in pregnancy, second trimester +C2909440|T046|PT|O88.012|ICD10CM|Air embolism in pregnancy, second trimester|Air embolism in pregnancy, second trimester +C2909441|T046|AB|O88.013|ICD10CM|Air embolism in pregnancy, third trimester|Air embolism in pregnancy, third trimester +C2909441|T046|PT|O88.013|ICD10CM|Air embolism in pregnancy, third trimester|Air embolism in pregnancy, third trimester +C2909438|T046|PT|O88.019|ICD10CM|Air embolism in pregnancy, unspecified trimester|Air embolism in pregnancy, unspecified trimester +C2909438|T046|AB|O88.019|ICD10CM|Air embolism in pregnancy, unspecified trimester|Air embolism in pregnancy, unspecified trimester +C2909442|T046|PT|O88.02|ICD10CM|Air embolism in childbirth|Air embolism in childbirth +C2909442|T046|AB|O88.02|ICD10CM|Air embolism in childbirth|Air embolism in childbirth +C1401807|T046|AB|O88.03|ICD10CM|Air embolism in the puerperium|Air embolism in the puerperium +C1401807|T046|PT|O88.03|ICD10CM|Air embolism in the puerperium|Air embolism in the puerperium +C0013927|T047|PT|O88.1|ICD10|Amniotic fluid embolism|Amniotic fluid embolism +C0013927|T047|HT|O88.1|ICD10CM|Amniotic fluid embolism|Amniotic fluid embolism +C0013927|T047|AB|O88.1|ICD10CM|Amniotic fluid embolism|Amniotic fluid embolism +C1868769|T046|ET|O88.1|ICD10CM|Anaphylactoid syndrome in pregnancy|Anaphylactoid syndrome in pregnancy +C1396353|T046|HT|O88.11|ICD10CM|Amniotic fluid embolism in pregnancy|Amniotic fluid embolism in pregnancy +C1396353|T046|AB|O88.11|ICD10CM|Amniotic fluid embolism in pregnancy|Amniotic fluid embolism in pregnancy +C2909443|T046|AB|O88.111|ICD10CM|Amniotic fluid embolism in pregnancy, first trimester|Amniotic fluid embolism in pregnancy, first trimester +C2909443|T046|PT|O88.111|ICD10CM|Amniotic fluid embolism in pregnancy, first trimester|Amniotic fluid embolism in pregnancy, first trimester +C2909444|T046|AB|O88.112|ICD10CM|Amniotic fluid embolism in pregnancy, second trimester|Amniotic fluid embolism in pregnancy, second trimester +C2909444|T046|PT|O88.112|ICD10CM|Amniotic fluid embolism in pregnancy, second trimester|Amniotic fluid embolism in pregnancy, second trimester +C2909445|T046|AB|O88.113|ICD10CM|Amniotic fluid embolism in pregnancy, third trimester|Amniotic fluid embolism in pregnancy, third trimester +C2909445|T046|PT|O88.113|ICD10CM|Amniotic fluid embolism in pregnancy, third trimester|Amniotic fluid embolism in pregnancy, third trimester +C1396353|T046|AB|O88.119|ICD10CM|Amniotic fluid embolism in pregnancy, unspecified trimester|Amniotic fluid embolism in pregnancy, unspecified trimester +C1396353|T046|PT|O88.119|ICD10CM|Amniotic fluid embolism in pregnancy, unspecified trimester|Amniotic fluid embolism in pregnancy, unspecified trimester +C2909446|T046|PT|O88.12|ICD10CM|Amniotic fluid embolism in childbirth|Amniotic fluid embolism in childbirth +C2909446|T046|AB|O88.12|ICD10CM|Amniotic fluid embolism in childbirth|Amniotic fluid embolism in childbirth +C1396310|T046|AB|O88.13|ICD10CM|Amniotic fluid embolism in the puerperium|Amniotic fluid embolism in the puerperium +C1396310|T046|PT|O88.13|ICD10CM|Amniotic fluid embolism in the puerperium|Amniotic fluid embolism in the puerperium +C0157552|T046|PT|O88.2|ICD10|Obstetric blood-clot embolism|Obstetric blood-clot embolism +C2909447|T046|HT|O88.2|ICD10CM|Obstetric thromboembolism|Obstetric thromboembolism +C2909447|T046|AB|O88.2|ICD10CM|Obstetric thromboembolism|Obstetric thromboembolism +C0157540|T046|ET|O88.21|ICD10CM|Obstetric (pulmonary) embolism NOS|Obstetric (pulmonary) embolism NOS +C2909451|T046|AB|O88.21|ICD10CM|Thromboembolism in pregnancy|Thromboembolism in pregnancy +C2909451|T046|HT|O88.21|ICD10CM|Thromboembolism in pregnancy|Thromboembolism in pregnancy +C2909448|T046|AB|O88.211|ICD10CM|Thromboembolism in pregnancy, first trimester|Thromboembolism in pregnancy, first trimester +C2909448|T046|PT|O88.211|ICD10CM|Thromboembolism in pregnancy, first trimester|Thromboembolism in pregnancy, first trimester +C2909449|T046|AB|O88.212|ICD10CM|Thromboembolism in pregnancy, second trimester|Thromboembolism in pregnancy, second trimester +C2909449|T046|PT|O88.212|ICD10CM|Thromboembolism in pregnancy, second trimester|Thromboembolism in pregnancy, second trimester +C2909450|T046|AB|O88.213|ICD10CM|Thromboembolism in pregnancy, third trimester|Thromboembolism in pregnancy, third trimester +C2909450|T046|PT|O88.213|ICD10CM|Thromboembolism in pregnancy, third trimester|Thromboembolism in pregnancy, third trimester +C2909451|T046|AB|O88.219|ICD10CM|Thromboembolism in pregnancy, unspecified trimester|Thromboembolism in pregnancy, unspecified trimester +C2909451|T046|PT|O88.219|ICD10CM|Thromboembolism in pregnancy, unspecified trimester|Thromboembolism in pregnancy, unspecified trimester +C2909452|T046|AB|O88.22|ICD10CM|Thromboembolism in childbirth|Thromboembolism in childbirth +C2909452|T046|PT|O88.22|ICD10CM|Thromboembolism in childbirth|Thromboembolism in childbirth +C0157540|T046|ET|O88.23|ICD10CM|Puerperal (pulmonary) embolism NOS|Puerperal (pulmonary) embolism NOS +C2909453|T046|AB|O88.23|ICD10CM|Thromboembolism in the puerperium|Thromboembolism in the puerperium +C2909453|T046|PT|O88.23|ICD10CM|Thromboembolism in the puerperium|Thromboembolism in the puerperium +C0269959|T046|PT|O88.3|ICD10|Obstetric pyaemic and septic embolism|Obstetric pyaemic and septic embolism +C0269959|T046|PT|O88.3|ICD10AE|Obstetric pyemic and septic embolism|Obstetric pyemic and septic embolism +C0269959|T046|HT|O88.3|ICD10CM|Obstetric pyemic and septic embolism|Obstetric pyemic and septic embolism +C0269959|T046|AB|O88.3|ICD10CM|Obstetric pyemic and septic embolism|Obstetric pyemic and septic embolism +C2909454|T046|HT|O88.31|ICD10CM|Pyemic and septic embolism in pregnancy|Pyemic and septic embolism in pregnancy +C2909454|T046|AB|O88.31|ICD10CM|Pyemic and septic embolism in pregnancy|Pyemic and septic embolism in pregnancy +C2909455|T046|AB|O88.311|ICD10CM|Pyemic and septic embolism in pregnancy, first trimester|Pyemic and septic embolism in pregnancy, first trimester +C2909455|T046|PT|O88.311|ICD10CM|Pyemic and septic embolism in pregnancy, first trimester|Pyemic and septic embolism in pregnancy, first trimester +C2909456|T046|AB|O88.312|ICD10CM|Pyemic and septic embolism in pregnancy, second trimester|Pyemic and septic embolism in pregnancy, second trimester +C2909456|T046|PT|O88.312|ICD10CM|Pyemic and septic embolism in pregnancy, second trimester|Pyemic and septic embolism in pregnancy, second trimester +C2909457|T046|AB|O88.313|ICD10CM|Pyemic and septic embolism in pregnancy, third trimester|Pyemic and septic embolism in pregnancy, third trimester +C2909457|T046|PT|O88.313|ICD10CM|Pyemic and septic embolism in pregnancy, third trimester|Pyemic and septic embolism in pregnancy, third trimester +C2909454|T046|AB|O88.319|ICD10CM|Pyemic and septic embolism in pregnancy, unsp trimester|Pyemic and septic embolism in pregnancy, unsp trimester +C2909454|T046|PT|O88.319|ICD10CM|Pyemic and septic embolism in pregnancy, unspecified trimester|Pyemic and septic embolism in pregnancy, unspecified trimester +C2909458|T046|PT|O88.32|ICD10CM|Pyemic and septic embolism in childbirth|Pyemic and septic embolism in childbirth +C2909458|T046|AB|O88.32|ICD10CM|Pyemic and septic embolism in childbirth|Pyemic and septic embolism in childbirth +C2909459|T046|AB|O88.33|ICD10CM|Pyemic and septic embolism in the puerperium|Pyemic and septic embolism in the puerperium +C2909459|T046|PT|O88.33|ICD10CM|Pyemic and septic embolism in the puerperium|Pyemic and septic embolism in the puerperium +C0341996|T046|ET|O88.8|ICD10CM|Obstetric fat embolism|Obstetric fat embolism +C0477870|T046|PT|O88.8|ICD10|Other obstetric embolism|Other obstetric embolism +C0477870|T046|HT|O88.8|ICD10CM|Other obstetric embolism|Other obstetric embolism +C0477870|T046|AB|O88.8|ICD10CM|Other obstetric embolism|Other obstetric embolism +C2909460|T046|AB|O88.81|ICD10CM|Other embolism in pregnancy|Other embolism in pregnancy +C2909460|T046|HT|O88.81|ICD10CM|Other embolism in pregnancy|Other embolism in pregnancy +C2909461|T046|AB|O88.811|ICD10CM|Other embolism in pregnancy, first trimester|Other embolism in pregnancy, first trimester +C2909461|T046|PT|O88.811|ICD10CM|Other embolism in pregnancy, first trimester|Other embolism in pregnancy, first trimester +C2909462|T046|AB|O88.812|ICD10CM|Other embolism in pregnancy, second trimester|Other embolism in pregnancy, second trimester +C2909462|T046|PT|O88.812|ICD10CM|Other embolism in pregnancy, second trimester|Other embolism in pregnancy, second trimester +C2909463|T046|AB|O88.813|ICD10CM|Other embolism in pregnancy, third trimester|Other embolism in pregnancy, third trimester +C2909463|T046|PT|O88.813|ICD10CM|Other embolism in pregnancy, third trimester|Other embolism in pregnancy, third trimester +C2909460|T046|AB|O88.819|ICD10CM|Other embolism in pregnancy, unspecified trimester|Other embolism in pregnancy, unspecified trimester +C2909460|T046|PT|O88.819|ICD10CM|Other embolism in pregnancy, unspecified trimester|Other embolism in pregnancy, unspecified trimester +C2909464|T046|AB|O88.82|ICD10CM|Other embolism in childbirth|Other embolism in childbirth +C2909464|T046|PT|O88.82|ICD10CM|Other embolism in childbirth|Other embolism in childbirth +C2909465|T046|AB|O88.83|ICD10CM|Other embolism in the puerperium|Other embolism in the puerperium +C2909465|T046|PT|O88.83|ICD10CM|Other embolism in the puerperium|Other embolism in the puerperium +C0495297|T046|HT|O89|ICD10|Complications of anaesthesia during the puerperium|Complications of anaesthesia during the puerperium +C0495297|T046|HT|O89|ICD10AE|Complications of anesthesia during the puerperium|Complications of anesthesia during the puerperium +C0495297|T046|AB|O89|ICD10CM|Complications of anesthesia during the puerperium|Complications of anesthesia during the puerperium +C0495297|T046|HT|O89|ICD10CM|Complications of anesthesia during the puerperium|Complications of anesthesia during the puerperium +C0495294|T047|PT|O89.0|ICD10|Pulmonary complications of anaesthesia during the puerperium|Pulmonary complications of anaesthesia during the puerperium +C0495294|T047|HT|O89.0|ICD10CM|Pulmonary complications of anesthesia during the puerperium|Pulmonary complications of anesthesia during the puerperium +C0495294|T047|AB|O89.0|ICD10CM|Pulmonary complications of anesthesia during the puerperium|Pulmonary complications of anesthesia during the puerperium +C0495294|T047|PT|O89.0|ICD10AE|Pulmonary complications of anesthesia during the puerperium|Pulmonary complications of anesthesia during the puerperium +C2909469|T046|AB|O89.01|ICD10CM|Aspiration pneumonitis due to anesth during the puerperium|Aspiration pneumonitis due to anesth during the puerperium +C2909469|T046|PT|O89.01|ICD10CM|Aspiration pneumonitis due to anesthesia during the puerperium|Aspiration pneumonitis due to anesthesia during the puerperium +C2909467|T046|ET|O89.01|ICD10CM|Inhalation of stomach contents or secretions NOS due to anesthesia during the puerperium|Inhalation of stomach contents or secretions NOS due to anesthesia during the puerperium +C2909468|T046|ET|O89.01|ICD10CM|Mendelson's syndrome due to anesthesia during the puerperium|Mendelson's syndrome due to anesthesia during the puerperium +C2909470|T046|AB|O89.09|ICD10CM|Oth pulmonary comp of anesthesia during the puerperium|Oth pulmonary comp of anesthesia during the puerperium +C2909470|T046|PT|O89.09|ICD10CM|Other pulmonary complications of anesthesia during the puerperium|Other pulmonary complications of anesthesia during the puerperium +C0495295|T046|PT|O89.1|ICD10|Cardiac complications of anaesthesia during the puerperium|Cardiac complications of anaesthesia during the puerperium +C0495295|T046|PT|O89.1|ICD10AE|Cardiac complications of anesthesia during the puerperium|Cardiac complications of anesthesia during the puerperium +C0495295|T046|PT|O89.1|ICD10CM|Cardiac complications of anesthesia during the puerperium|Cardiac complications of anesthesia during the puerperium +C0495295|T046|AB|O89.1|ICD10CM|Cardiac complications of anesthesia during the puerperium|Cardiac complications of anesthesia during the puerperium +C0495296|T046|PT|O89.2|ICD10|Central nervous system complications of anaesthesia during the puerperium|Central nervous system complications of anaesthesia during the puerperium +C0495296|T046|PT|O89.2|ICD10CM|Central nervous system complications of anesthesia during the puerperium|Central nervous system complications of anesthesia during the puerperium +C0495296|T046|PT|O89.2|ICD10AE|Central nervous system complications of anesthesia during the puerperium|Central nervous system complications of anesthesia during the puerperium +C0495296|T046|AB|O89.2|ICD10CM|Cnsl complications of anesthesia during the puerperium|Cnsl complications of anesthesia during the puerperium +C0475579|T046|PT|O89.3|ICD10|Toxic reaction to local anaesthesia during the puerperium|Toxic reaction to local anaesthesia during the puerperium +C0475579|T046|PT|O89.3|ICD10CM|Toxic reaction to local anesthesia during the puerperium|Toxic reaction to local anesthesia during the puerperium +C0475579|T046|AB|O89.3|ICD10CM|Toxic reaction to local anesthesia during the puerperium|Toxic reaction to local anesthesia during the puerperium +C0475579|T046|PT|O89.3|ICD10AE|Toxic reaction to local anesthesia during the puerperium|Toxic reaction to local anesthesia during the puerperium +C0475524|T046|AB|O89.4|ICD10CM|Spinal and epidur anesthesia-induced hdache during the puerp|Spinal and epidur anesthesia-induced hdache during the puerp +C0475524|T046|PT|O89.4|ICD10|Spinal and epidural anaesthesia-induced headache during the puerperium|Spinal and epidural anaesthesia-induced headache during the puerperium +C0475524|T046|PT|O89.4|ICD10CM|Spinal and epidural anesthesia-induced headache during the puerperium|Spinal and epidural anesthesia-induced headache during the puerperium +C0475524|T046|PT|O89.4|ICD10AE|Spinal and epidural anesthesia-induced headache during the puerperium|Spinal and epidural anesthesia-induced headache during the puerperium +C0477871|T046|AB|O89.5|ICD10CM|Oth comp of spinal and epidural anesth during the puerperium|Oth comp of spinal and epidural anesth during the puerperium +C0477871|T046|PT|O89.5|ICD10|Other complications of spinal and epidural anaesthesia during the puerperium|Other complications of spinal and epidural anaesthesia during the puerperium +C0477871|T046|PT|O89.5|ICD10CM|Other complications of spinal and epidural anesthesia during the puerperium|Other complications of spinal and epidural anesthesia during the puerperium +C0477871|T046|PT|O89.5|ICD10AE|Other complications of spinal and epidural anesthesia during the puerperium|Other complications of spinal and epidural anesthesia during the puerperium +C0451811|T046|PT|O89.6|ICD10|Failed or difficult intubation during the puerperium|Failed or difficult intubation during the puerperium +C2909471|T046|AB|O89.6|ICD10CM|Failed or difficult intubation for anesth during the puerp|Failed or difficult intubation for anesth during the puerp +C2909471|T046|PT|O89.6|ICD10CM|Failed or difficult intubation for anesthesia during the puerperium|Failed or difficult intubation for anesthesia during the puerperium +C0477872|T046|PT|O89.8|ICD10|Other complications of anaesthesia during the puerperium|Other complications of anaesthesia during the puerperium +C0477872|T046|PT|O89.8|ICD10AE|Other complications of anesthesia during the puerperium|Other complications of anesthesia during the puerperium +C0477872|T046|PT|O89.8|ICD10CM|Other complications of anesthesia during the puerperium|Other complications of anesthesia during the puerperium +C0477872|T046|AB|O89.8|ICD10CM|Other complications of anesthesia during the puerperium|Other complications of anesthesia during the puerperium +C0495297|T046|PT|O89.9|ICD10|Complication of anaesthesia during the puerperium, unspecified|Complication of anaesthesia during the puerperium, unspecified +C0495297|T046|AB|O89.9|ICD10CM|Complication of anesthesia during the puerperium, unsp|Complication of anesthesia during the puerperium, unsp +C0495297|T046|PT|O89.9|ICD10CM|Complication of anesthesia during the puerperium, unspecified|Complication of anesthesia during the puerperium, unspecified +C0495297|T046|PT|O89.9|ICD10AE|Complication of anesthesia during the puerperium, unspecified|Complication of anesthesia during the puerperium, unspecified +C0495298|T046|AB|O90|ICD10CM|Complications of the puerperium, not elsewhere classified|Complications of the puerperium, not elsewhere classified +C0495298|T046|HT|O90|ICD10CM|Complications of the puerperium, not elsewhere classified|Complications of the puerperium, not elsewhere classified +C0495298|T046|HT|O90|ICD10|Complications of the puerperium, not elsewhere classified|Complications of the puerperium, not elsewhere classified +C2909472|T046|ET|O90.0|ICD10CM|Dehiscence of cesarean delivery wound|Dehiscence of cesarean delivery wound +C3665608|T046|PT|O90.0|ICD10|Disruption of caesarean section wound|Disruption of caesarean section wound +C2909473|T046|AB|O90.0|ICD10CM|Disruption of cesarean delivery wound|Disruption of cesarean delivery wound +C2909473|T046|PT|O90.0|ICD10CM|Disruption of cesarean delivery wound|Disruption of cesarean delivery wound +C3665608|T046|PT|O90.0|ICD10AE|Disruption of cesarean section wound|Disruption of cesarean section wound +C3537063|T037|PT|O90.1|ICD10|Disruption of perineal obstetric wound|Disruption of perineal obstetric wound +C3537063|T037|PT|O90.1|ICD10CM|Disruption of perineal obstetric wound|Disruption of perineal obstetric wound +C3537063|T037|AB|O90.1|ICD10CM|Disruption of perineal obstetric wound|Disruption of perineal obstetric wound +C3537212|T046|ET|O90.1|ICD10CM|Disruption of wound of episiotomy|Disruption of wound of episiotomy +C3537063|T037|ET|O90.1|ICD10CM|Disruption of wound of perineal laceration|Disruption of wound of perineal laceration +C0269967|T037|ET|O90.1|ICD10CM|Secondary perineal tear|Secondary perineal tear +C0475585|T046|PT|O90.2|ICD10|Haematoma of obstetric wound|Haematoma of obstetric wound +C0475585|T046|PT|O90.2|ICD10AE|Hematoma of obstetric wound|Hematoma of obstetric wound +C0475585|T046|PT|O90.2|ICD10CM|Hematoma of obstetric wound|Hematoma of obstetric wound +C0475585|T046|AB|O90.2|ICD10CM|Hematoma of obstetric wound|Hematoma of obstetric wound +C0269972|T047|PT|O90.3|ICD10|Cardiomyopathy in the puerperium|Cardiomyopathy in the puerperium +C2909474|T047|ET|O90.3|ICD10CM|Conditions in I42.- arising during pregnancy and the puerperium|Conditions in I42.- arising during pregnancy and the puerperium +C0877208|T046|PT|O90.3|ICD10CM|Peripartum cardiomyopathy|Peripartum cardiomyopathy +C0877208|T046|AB|O90.3|ICD10CM|Peripartum cardiomyopathy|Peripartum cardiomyopathy +C2909475|T046|ET|O90.4|ICD10CM|Hepatorenal syndrome following labor and delivery|Hepatorenal syndrome following labor and delivery +C0157461|T047|AB|O90.4|ICD10CM|Postpartum acute kidney failure|Postpartum acute kidney failure +C0157461|T047|PT|O90.4|ICD10CM|Postpartum acute kidney failure|Postpartum acute kidney failure +C0157461|T047|PT|O90.4|ICD10|Postpartum acute renal failure|Postpartum acute renal failure +C0271815|T047|PT|O90.5|ICD10|Postpartum thyroiditis|Postpartum thyroiditis +C0271815|T047|PT|O90.5|ICD10CM|Postpartum thyroiditis|Postpartum thyroiditis +C0271815|T047|AB|O90.5|ICD10CM|Postpartum thyroiditis|Postpartum thyroiditis +C2909477|T048|ET|O90.6|ICD10CM|Postpartum blues|Postpartum blues +C2909478|T046|ET|O90.6|ICD10CM|Postpartum dysphoria|Postpartum dysphoria +C2909480|T046|PT|O90.6|ICD10CM|Postpartum mood disturbance|Postpartum mood disturbance +C2909480|T046|AB|O90.6|ICD10CM|Postpartum mood disturbance|Postpartum mood disturbance +C2909479|T048|ET|O90.6|ICD10CM|Postpartum sadness|Postpartum sadness +C0495300|T046|AB|O90.8|ICD10CM|Oth complications of the puerperium, NEC|Oth complications of the puerperium, NEC +C0495300|T046|HT|O90.8|ICD10CM|Other complications of the puerperium, not elsewhere classified|Other complications of the puerperium, not elsewhere classified +C0495300|T046|PT|O90.8|ICD10|Other complications of the puerperium, not elsewhere classified|Other complications of the puerperium, not elsewhere classified +C2909481|T046|AB|O90.81|ICD10CM|Anemia of the puerperium|Anemia of the puerperium +C2909481|T046|PT|O90.81|ICD10CM|Anemia of the puerperium|Anemia of the puerperium +C0156847|T047|ET|O90.81|ICD10CM|Postpartum anemia NOS|Postpartum anemia NOS +C0495300|T046|AB|O90.89|ICD10CM|Oth complications of the puerperium, NEC|Oth complications of the puerperium, NEC +C0495300|T046|PT|O90.89|ICD10CM|Other complications of the puerperium, not elsewhere classified|Other complications of the puerperium, not elsewhere classified +C0152437|T047|ET|O90.89|ICD10CM|Placental polyp|Placental polyp +C0161972|T046|PT|O90.9|ICD10CM|Complication of the puerperium, unspecified|Complication of the puerperium, unspecified +C0161972|T046|AB|O90.9|ICD10CM|Complication of the puerperium, unspecified|Complication of the puerperium, unspecified +C0161972|T046|PT|O90.9|ICD10|Complication of the puerperium, unspecified|Complication of the puerperium, unspecified +C2909482|T046|AB|O91|ICD10CM|Infect of breast assoc w pregnancy, the puerp and lactation|Infect of breast assoc w pregnancy, the puerp and lactation +C0495301|T047|HT|O91|ICD10|Infections of breast associated with childbirth|Infections of breast associated with childbirth +C2909482|T046|HT|O91|ICD10CM|Infections of breast associated with pregnancy, the puerperium and lactation|Infections of breast associated with pregnancy, the puerperium and lactation +C2909483|T046|AB|O91.0|ICD10CM|Infct of nipple assoc w pregnancy, the puerp and lactation|Infct of nipple assoc w pregnancy, the puerp and lactation +C0269979|T047|PT|O91.0|ICD10|Infection of nipple associated with childbirth|Infection of nipple associated with childbirth +C2909483|T046|HT|O91.0|ICD10CM|Infection of nipple associated with pregnancy, the puerperium and lactation|Infection of nipple associated with pregnancy, the puerperium and lactation +C2909484|T046|ET|O91.01|ICD10CM|Gestational abscess of nipple|Gestational abscess of nipple +C2909488|T046|HT|O91.01|ICD10CM|Infection of nipple associated with pregnancy|Infection of nipple associated with pregnancy +C2909488|T046|AB|O91.01|ICD10CM|Infection of nipple associated with pregnancy|Infection of nipple associated with pregnancy +C2909485|T046|AB|O91.011|ICD10CM|Infection of nipple associated w pregnancy, first trimester|Infection of nipple associated w pregnancy, first trimester +C2909485|T046|PT|O91.011|ICD10CM|Infection of nipple associated with pregnancy, first trimester|Infection of nipple associated with pregnancy, first trimester +C2909486|T046|AB|O91.012|ICD10CM|Infection of nipple associated w pregnancy, second trimester|Infection of nipple associated w pregnancy, second trimester +C2909486|T046|PT|O91.012|ICD10CM|Infection of nipple associated with pregnancy, second trimester|Infection of nipple associated with pregnancy, second trimester +C2909487|T046|AB|O91.013|ICD10CM|Infection of nipple associated w pregnancy, third trimester|Infection of nipple associated w pregnancy, third trimester +C2909487|T046|PT|O91.013|ICD10CM|Infection of nipple associated with pregnancy, third trimester|Infection of nipple associated with pregnancy, third trimester +C2909488|T046|AB|O91.019|ICD10CM|Infection of nipple associated w pregnancy, unsp trimester|Infection of nipple associated w pregnancy, unsp trimester +C2909488|T046|PT|O91.019|ICD10CM|Infection of nipple associated with pregnancy, unspecified trimester|Infection of nipple associated with pregnancy, unspecified trimester +C2909489|T046|AB|O91.02|ICD10CM|Infection of nipple associated with the puerperium|Infection of nipple associated with the puerperium +C2909489|T046|PT|O91.02|ICD10CM|Infection of nipple associated with the puerperium|Infection of nipple associated with the puerperium +C1405700|T047|ET|O91.02|ICD10CM|Puerperal abscess of nipple|Puerperal abscess of nipple +C2909490|T033|ET|O91.03|ICD10CM|Abscess of nipple associated with lactation|Abscess of nipple associated with lactation +C2909491|T047|PT|O91.03|ICD10CM|Infection of nipple associated with lactation|Infection of nipple associated with lactation +C2909491|T047|AB|O91.03|ICD10CM|Infection of nipple associated with lactation|Infection of nipple associated with lactation +C2909492|T047|AB|O91.1|ICD10CM|Abscess of breast assoc w pregnancy, the puerp and lactation|Abscess of breast assoc w pregnancy, the puerp and lactation +C0269981|T047|PT|O91.1|ICD10|Abscess of breast associated with childbirth|Abscess of breast associated with childbirth +C2909492|T047|HT|O91.1|ICD10CM|Abscess of breast associated with pregnancy, the puerperium and lactation|Abscess of breast associated with pregnancy, the puerperium and lactation +C2909496|T047|AB|O91.11|ICD10CM|Abscess of breast associated with pregnancy|Abscess of breast associated with pregnancy +C2909496|T047|HT|O91.11|ICD10CM|Abscess of breast associated with pregnancy|Abscess of breast associated with pregnancy +C0741646|T047|ET|O91.11|ICD10CM|Gestational mammary abscess|Gestational mammary abscess +C2909494|T046|ET|O91.11|ICD10CM|Gestational purulent mastitis|Gestational purulent mastitis +C2909495|T046|ET|O91.11|ICD10CM|Gestational subareolar abscess|Gestational subareolar abscess +C2909497|T047|AB|O91.111|ICD10CM|Abscess of breast associated with pregnancy, first trimester|Abscess of breast associated with pregnancy, first trimester +C2909497|T047|PT|O91.111|ICD10CM|Abscess of breast associated with pregnancy, first trimester|Abscess of breast associated with pregnancy, first trimester +C2909498|T047|AB|O91.112|ICD10CM|Abscess of breast associated w pregnancy, second trimester|Abscess of breast associated w pregnancy, second trimester +C2909498|T047|PT|O91.112|ICD10CM|Abscess of breast associated with pregnancy, second trimester|Abscess of breast associated with pregnancy, second trimester +C2909499|T047|AB|O91.113|ICD10CM|Abscess of breast associated with pregnancy, third trimester|Abscess of breast associated with pregnancy, third trimester +C2909499|T047|PT|O91.113|ICD10CM|Abscess of breast associated with pregnancy, third trimester|Abscess of breast associated with pregnancy, third trimester +C2909500|T047|AB|O91.119|ICD10CM|Abscess of breast associated with pregnancy, unsp trimester|Abscess of breast associated with pregnancy, unsp trimester +C2909500|T047|PT|O91.119|ICD10CM|Abscess of breast associated with pregnancy, unspecified trimester|Abscess of breast associated with pregnancy, unspecified trimester +C2909502|T047|AB|O91.12|ICD10CM|Abscess of breast associated with the puerperium|Abscess of breast associated with the puerperium +C2909502|T047|PT|O91.12|ICD10CM|Abscess of breast associated with the puerperium|Abscess of breast associated with the puerperium +C1405696|T047|ET|O91.12|ICD10CM|Puerperal mammary abscess|Puerperal mammary abscess +C0269986|T046|ET|O91.12|ICD10CM|Puerperal purulent mastitis|Puerperal purulent mastitis +C1405699|T047|ET|O91.12|ICD10CM|Puerperal subareolar abscess|Puerperal subareolar abscess +C2909506|T047|PT|O91.13|ICD10CM|Abscess of breast associated with lactation|Abscess of breast associated with lactation +C2909506|T047|AB|O91.13|ICD10CM|Abscess of breast associated with lactation|Abscess of breast associated with lactation +C2909503|T046|ET|O91.13|ICD10CM|Mammary abscess associated with lactation|Mammary abscess associated with lactation +C2909504|T046|ET|O91.13|ICD10CM|Purulent mastitis associated with lactation|Purulent mastitis associated with lactation +C2909505|T046|ET|O91.13|ICD10CM|Subareolar abscess associated with lactation|Subareolar abscess associated with lactation +C2909507|T046|AB|O91.2|ICD10CM|Nonpurulent mastitis assoc w preg, the puerp and lactation|Nonpurulent mastitis assoc w preg, the puerp and lactation +C0157611|T047|PT|O91.2|ICD10|Nonpurulent mastitis associated with childbirth|Nonpurulent mastitis associated with childbirth +C2909507|T046|HT|O91.2|ICD10CM|Nonpurulent mastitis associated with pregnancy, the puerperium and lactation|Nonpurulent mastitis associated with pregnancy, the puerperium and lactation +C2909508|T046|ET|O91.21|ICD10CM|Gestational interstitial mastitis|Gestational interstitial mastitis +C1411622|T047|ET|O91.21|ICD10CM|Gestational lymphangitis of breast|Gestational lymphangitis of breast +C2909509|T046|ET|O91.21|ICD10CM|Gestational mastitis NOS|Gestational mastitis NOS +C2909510|T046|ET|O91.21|ICD10CM|Gestational parenchymatous mastitis|Gestational parenchymatous mastitis +C2909514|T046|AB|O91.21|ICD10CM|Nonpurulent mastitis associated with pregnancy|Nonpurulent mastitis associated with pregnancy +C2909514|T046|HT|O91.21|ICD10CM|Nonpurulent mastitis associated with pregnancy|Nonpurulent mastitis associated with pregnancy +C2909511|T047|AB|O91.211|ICD10CM|Nonpurulent mastitis associated w pregnancy, first trimester|Nonpurulent mastitis associated w pregnancy, first trimester +C2909511|T047|PT|O91.211|ICD10CM|Nonpurulent mastitis associated with pregnancy, first trimester|Nonpurulent mastitis associated with pregnancy, first trimester +C2909512|T047|AB|O91.212|ICD10CM|Nonpurulent mastitis assoc w pregnancy, second trimester|Nonpurulent mastitis assoc w pregnancy, second trimester +C2909512|T047|PT|O91.212|ICD10CM|Nonpurulent mastitis associated with pregnancy, second trimester|Nonpurulent mastitis associated with pregnancy, second trimester +C2909513|T046|AB|O91.213|ICD10CM|Nonpurulent mastitis associated w pregnancy, third trimester|Nonpurulent mastitis associated w pregnancy, third trimester +C2909513|T046|PT|O91.213|ICD10CM|Nonpurulent mastitis associated with pregnancy, third trimester|Nonpurulent mastitis associated with pregnancy, third trimester +C2909514|T046|AB|O91.219|ICD10CM|Nonpurulent mastitis associated w pregnancy, unsp trimester|Nonpurulent mastitis associated w pregnancy, unsp trimester +C2909514|T046|PT|O91.219|ICD10CM|Nonpurulent mastitis associated with pregnancy, unspecified trimester|Nonpurulent mastitis associated with pregnancy, unspecified trimester +C2909517|T046|AB|O91.22|ICD10CM|Nonpurulent mastitis associated with the puerperium|Nonpurulent mastitis associated with the puerperium +C2909517|T046|PT|O91.22|ICD10CM|Nonpurulent mastitis associated with the puerperium|Nonpurulent mastitis associated with the puerperium +C2909515|T046|ET|O91.22|ICD10CM|Puerperal interstitial mastitis|Puerperal interstitial mastitis +C1403351|T047|ET|O91.22|ICD10CM|Puerperal lymphangitis of breast|Puerperal lymphangitis of breast +C0269985|T047|ET|O91.22|ICD10CM|Puerperal mastitis NOS|Puerperal mastitis NOS +C2909516|T046|ET|O91.22|ICD10CM|Puerperal parenchymatous mastitis|Puerperal parenchymatous mastitis +C2909518|T046|ET|O91.23|ICD10CM|Interstitial mastitis associated with lactation|Interstitial mastitis associated with lactation +C2909519|T046|ET|O91.23|ICD10CM|Lymphangitis of breast associated with lactation|Lymphangitis of breast associated with lactation +C0269985|T047|ET|O91.23|ICD10CM|Mastitis NOS associated with lactation|Mastitis NOS associated with lactation +C2909522|T047|PT|O91.23|ICD10CM|Nonpurulent mastitis associated with lactation|Nonpurulent mastitis associated with lactation +C2909522|T047|AB|O91.23|ICD10CM|Nonpurulent mastitis associated with lactation|Nonpurulent mastitis associated with lactation +C2909521|T046|ET|O91.23|ICD10CM|Parenchymatous mastitis associated with lactation|Parenchymatous mastitis associated with lactation +C2909523|T046|AB|O92|ICD10CM|Oth disord of brst/lactatn assoc w pregnancy and the puerp|Oth disord of brst/lactatn assoc w pregnancy and the puerp +C2909523|T046|HT|O92|ICD10CM|Other disorders of breast and disorders of lactation associated with pregnancy and the puerperium|Other disorders of breast and disorders of lactation associated with pregnancy and the puerperium +C0495302|T047|HT|O92|ICD10|Other disorders of breast and lactation associated with childbirth|Other disorders of breast and lactation associated with childbirth +C2909524|T046|AB|O92.0|ICD10CM|Retracted nipple assoc w pregnancy, the puerp, and lactation|Retracted nipple assoc w pregnancy, the puerp, and lactation +C0157630|T020|PT|O92.0|ICD10|Retracted nipple associated with childbirth|Retracted nipple associated with childbirth +C2909524|T046|HT|O92.0|ICD10CM|Retracted nipple associated with pregnancy, the puerperium, and lactation|Retracted nipple associated with pregnancy, the puerperium, and lactation +C2909528|T046|HT|O92.01|ICD10CM|Retracted nipple associated with pregnancy|Retracted nipple associated with pregnancy +C2909528|T046|AB|O92.01|ICD10CM|Retracted nipple associated with pregnancy|Retracted nipple associated with pregnancy +C2909525|T046|AB|O92.011|ICD10CM|Retracted nipple associated with pregnancy, first trimester|Retracted nipple associated with pregnancy, first trimester +C2909525|T046|PT|O92.011|ICD10CM|Retracted nipple associated with pregnancy, first trimester|Retracted nipple associated with pregnancy, first trimester +C2909526|T046|AB|O92.012|ICD10CM|Retracted nipple associated with pregnancy, second trimester|Retracted nipple associated with pregnancy, second trimester +C2909526|T046|PT|O92.012|ICD10CM|Retracted nipple associated with pregnancy, second trimester|Retracted nipple associated with pregnancy, second trimester +C2909527|T046|AB|O92.013|ICD10CM|Retracted nipple associated with pregnancy, third trimester|Retracted nipple associated with pregnancy, third trimester +C2909527|T046|PT|O92.013|ICD10CM|Retracted nipple associated with pregnancy, third trimester|Retracted nipple associated with pregnancy, third trimester +C2909528|T046|AB|O92.019|ICD10CM|Retracted nipple associated with pregnancy, unsp trimester|Retracted nipple associated with pregnancy, unsp trimester +C2909528|T046|PT|O92.019|ICD10CM|Retracted nipple associated with pregnancy, unspecified trimester|Retracted nipple associated with pregnancy, unspecified trimester +C2909529|T046|AB|O92.02|ICD10CM|Retracted nipple associated with the puerperium|Retracted nipple associated with the puerperium +C2909529|T046|PT|O92.02|ICD10CM|Retracted nipple associated with the puerperium|Retracted nipple associated with the puerperium +C2909530|T046|PT|O92.03|ICD10CM|Retracted nipple associated with lactation|Retracted nipple associated with lactation +C2909530|T046|AB|O92.03|ICD10CM|Retracted nipple associated with lactation|Retracted nipple associated with lactation +C2909532|T046|AB|O92.1|ICD10CM|Cracked nipple assoc w pregnancy, the puerp, and lactation|Cracked nipple assoc w pregnancy, the puerp, and lactation +C0157636|T046|PT|O92.1|ICD10|Cracked nipple associated with childbirth|Cracked nipple associated with childbirth +C2909532|T046|HT|O92.1|ICD10CM|Cracked nipple associated with pregnancy, the puerperium, and lactation|Cracked nipple associated with pregnancy, the puerperium, and lactation +C2909531|T046|ET|O92.1|ICD10CM|Fissure of nipple, gestational or puerperal|Fissure of nipple, gestational or puerperal +C2909536|T046|AB|O92.11|ICD10CM|Cracked nipple associated with pregnancy|Cracked nipple associated with pregnancy +C2909536|T046|HT|O92.11|ICD10CM|Cracked nipple associated with pregnancy|Cracked nipple associated with pregnancy +C2909533|T046|AB|O92.111|ICD10CM|Cracked nipple associated with pregnancy, first trimester|Cracked nipple associated with pregnancy, first trimester +C2909533|T046|PT|O92.111|ICD10CM|Cracked nipple associated with pregnancy, first trimester|Cracked nipple associated with pregnancy, first trimester +C2909534|T046|AB|O92.112|ICD10CM|Cracked nipple associated with pregnancy, second trimester|Cracked nipple associated with pregnancy, second trimester +C2909534|T046|PT|O92.112|ICD10CM|Cracked nipple associated with pregnancy, second trimester|Cracked nipple associated with pregnancy, second trimester +C2909535|T046|AB|O92.113|ICD10CM|Cracked nipple associated with pregnancy, third trimester|Cracked nipple associated with pregnancy, third trimester +C2909535|T046|PT|O92.113|ICD10CM|Cracked nipple associated with pregnancy, third trimester|Cracked nipple associated with pregnancy, third trimester +C2909536|T046|AB|O92.119|ICD10CM|Cracked nipple associated with pregnancy, unsp trimester|Cracked nipple associated with pregnancy, unsp trimester +C2909536|T046|PT|O92.119|ICD10CM|Cracked nipple associated with pregnancy, unspecified trimester|Cracked nipple associated with pregnancy, unspecified trimester +C2909537|T046|AB|O92.12|ICD10CM|Cracked nipple associated with the puerperium|Cracked nipple associated with the puerperium +C2909537|T046|PT|O92.12|ICD10CM|Cracked nipple associated with the puerperium|Cracked nipple associated with the puerperium +C2909538|T046|PT|O92.13|ICD10CM|Cracked nipple associated with lactation|Cracked nipple associated with lactation +C2909538|T046|AB|O92.13|ICD10CM|Cracked nipple associated with lactation|Cracked nipple associated with lactation +C2909539|T046|AB|O92.2|ICD10CM|Oth and unsp disord of breast assoc w preg and the puerp|Oth and unsp disord of breast assoc w preg and the puerp +C0157648|T047|PT|O92.2|ICD10|Other and unspecified disorders of breast associated with childbirth|Other and unspecified disorders of breast associated with childbirth +C2909539|T046|HT|O92.2|ICD10CM|Other and unspecified disorders of breast associated with pregnancy and the puerperium|Other and unspecified disorders of breast associated with pregnancy and the puerperium +C2909540|T046|AB|O92.20|ICD10CM|Unsp disorder of breast assoc w pregnancy and the puerperium|Unsp disorder of breast assoc w pregnancy and the puerperium +C2909540|T046|PT|O92.20|ICD10CM|Unspecified disorder of breast associated with pregnancy and the puerperium|Unspecified disorder of breast associated with pregnancy and the puerperium +C2909541|T046|AB|O92.29|ICD10CM|Oth disorders of breast assoc w pregnancy and the puerperium|Oth disorders of breast assoc w pregnancy and the puerperium +C2909541|T046|PT|O92.29|ICD10CM|Other disorders of breast associated with pregnancy and the puerperium|Other disorders of breast associated with pregnancy and the puerperium +C0152158|T046|PT|O92.3|ICD10|Agalactia|Agalactia +C0152158|T046|PT|O92.3|ICD10CM|Agalactia|Agalactia +C0152158|T046|AB|O92.3|ICD10CM|Agalactia|Agalactia +C2909542|T046|ET|O92.3|ICD10CM|Primary agalactia|Primary agalactia +C0020610|T047|PT|O92.4|ICD10CM|Hypogalactia|Hypogalactia +C0020610|T047|AB|O92.4|ICD10CM|Hypogalactia|Hypogalactia +C0020610|T047|PT|O92.4|ICD10|Hypogalactia|Hypogalactia +C1386921|T033|ET|O92.5|ICD10CM|Elective agalactia|Elective agalactia +C2909543|T046|ET|O92.5|ICD10CM|Secondary agalactia|Secondary agalactia +C0269993|T047|PT|O92.5|ICD10|Suppressed lactation|Suppressed lactation +C0269993|T047|PT|O92.5|ICD10CM|Suppressed lactation|Suppressed lactation +C0269993|T047|AB|O92.5|ICD10CM|Suppressed lactation|Suppressed lactation +C2909544|T046|ET|O92.5|ICD10CM|Therapeutic agalactia|Therapeutic agalactia +C0269995|T047|PT|O92.6|ICD10CM|Galactorrhea|Galactorrhea +C0269995|T047|AB|O92.6|ICD10CM|Galactorrhea|Galactorrhea +C0269995|T047|PT|O92.6|ICD10AE|Galactorrhea|Galactorrhea +C0269995|T047|PT|O92.6|ICD10|Galactorrhoea|Galactorrhoea +C0157669|T047|PT|O92.7|ICD10|Other and unspecified disorders of lactation|Other and unspecified disorders of lactation +C0157669|T047|HT|O92.7|ICD10CM|Other and unspecified disorders of lactation|Other and unspecified disorders of lactation +C0157669|T047|AB|O92.7|ICD10CM|Other and unspecified disorders of lactation|Other and unspecified disorders of lactation +C0022927|T047|AB|O92.70|ICD10CM|Unspecified disorders of lactation|Unspecified disorders of lactation +C0022927|T047|PT|O92.70|ICD10CM|Unspecified disorders of lactation|Unspecified disorders of lactation +C0157669|T047|AB|O92.79|ICD10CM|Other disorders of lactation|Other disorders of lactation +C0157669|T047|PT|O92.79|ICD10CM|Other disorders of lactation|Other disorders of lactation +C1397927|T047|ET|O92.79|ICD10CM|Puerperal galactocele|Puerperal galactocele +C2909545|T046|AB|O94|ICD10CM|Sequelae of comp of pregnancy, chldbrth, and the puerperium|Sequelae of comp of pregnancy, chldbrth, and the puerperium +C2909545|T046|PT|O94|ICD10CM|Sequelae of complication of pregnancy, childbirth, and the puerperium|Sequelae of complication of pregnancy, childbirth, and the puerperium +C0869075|T047|HT|O94-O9A|ICD10CM|Other obstetric conditions, not elsewhere classified (O94-O9A)|Other obstetric conditions, not elsewhere classified (O94-O9A) +C0405328|T046|PT|O95|ICD10|Obstetric death of unspecified cause|Obstetric death of unspecified cause +C0869075|T047|HT|O95-O99.9|ICD10|Other obstetric conditions, not elsewhere classified|Other obstetric conditions, not elsewhere classified +C0495303|T033|PT|O96|ICD10|Death from any obstetric cause occurring more than 42 days but less than one year after delivery|Death from any obstetric cause occurring more than 42 days but less than one year after delivery +C0451798|T046|PT|O97|ICD10|Death from sequelae of direct obstetric causes|Death from sequelae of direct obstetric causes +C0495304|T046|AB|O98|ICD10CM|Matern infec/parastc dis classd elsw but compl preg/chldbrth|Matern infec/parastc dis classd elsw but compl preg/chldbrth +C2909547|T047|ET|O98.0|ICD10CM|Conditions in A15-A19|Conditions in A15-A19 +C1533626|T046|AB|O98.0|ICD10CM|Tuberculosis compl preg/chldbrth|Tuberculosis compl preg/chldbrth +C1533626|T046|HT|O98.0|ICD10CM|Tuberculosis complicating pregnancy, childbirth and the puerperium|Tuberculosis complicating pregnancy, childbirth and the puerperium +C1533626|T046|PT|O98.0|ICD10|Tuberculosis complicating pregnancy, childbirth and the puerperium|Tuberculosis complicating pregnancy, childbirth and the puerperium +C1391690|T046|HT|O98.01|ICD10CM|Tuberculosis complicating pregnancy|Tuberculosis complicating pregnancy +C1391690|T046|AB|O98.01|ICD10CM|Tuberculosis complicating pregnancy|Tuberculosis complicating pregnancy +C2909548|T046|AB|O98.011|ICD10CM|Tuberculosis complicating pregnancy, first trimester|Tuberculosis complicating pregnancy, first trimester +C2909548|T046|PT|O98.011|ICD10CM|Tuberculosis complicating pregnancy, first trimester|Tuberculosis complicating pregnancy, first trimester +C2909549|T046|AB|O98.012|ICD10CM|Tuberculosis complicating pregnancy, second trimester|Tuberculosis complicating pregnancy, second trimester +C2909549|T046|PT|O98.012|ICD10CM|Tuberculosis complicating pregnancy, second trimester|Tuberculosis complicating pregnancy, second trimester +C2909550|T046|AB|O98.013|ICD10CM|Tuberculosis complicating pregnancy, third trimester|Tuberculosis complicating pregnancy, third trimester +C2909550|T046|PT|O98.013|ICD10CM|Tuberculosis complicating pregnancy, third trimester|Tuberculosis complicating pregnancy, third trimester +C1391690|T046|AB|O98.019|ICD10CM|Tuberculosis complicating pregnancy, unspecified trimester|Tuberculosis complicating pregnancy, unspecified trimester +C1391690|T046|PT|O98.019|ICD10CM|Tuberculosis complicating pregnancy, unspecified trimester|Tuberculosis complicating pregnancy, unspecified trimester +C2909551|T046|PT|O98.02|ICD10CM|Tuberculosis complicating childbirth|Tuberculosis complicating childbirth +C2909551|T046|AB|O98.02|ICD10CM|Tuberculosis complicating childbirth|Tuberculosis complicating childbirth +C2909552|T046|AB|O98.03|ICD10CM|Tuberculosis complicating the puerperium|Tuberculosis complicating the puerperium +C2909552|T046|PT|O98.03|ICD10CM|Tuberculosis complicating the puerperium|Tuberculosis complicating the puerperium +C2909553|T047|ET|O98.1|ICD10CM|Conditions in A50-A53|Conditions in A50-A53 +C0275820|T047|AB|O98.1|ICD10CM|Syphilis compl preg/chldbrth|Syphilis compl preg/chldbrth +C0275820|T047|HT|O98.1|ICD10CM|Syphilis complicating pregnancy, childbirth and the puerperium|Syphilis complicating pregnancy, childbirth and the puerperium +C0275820|T047|PT|O98.1|ICD10|Syphilis complicating pregnancy, childbirth and the puerperium|Syphilis complicating pregnancy, childbirth and the puerperium +C1391683|T046|HT|O98.11|ICD10CM|Syphilis complicating pregnancy|Syphilis complicating pregnancy +C1391683|T046|AB|O98.11|ICD10CM|Syphilis complicating pregnancy|Syphilis complicating pregnancy +C2909554|T046|AB|O98.111|ICD10CM|Syphilis complicating pregnancy, first trimester|Syphilis complicating pregnancy, first trimester +C2909554|T046|PT|O98.111|ICD10CM|Syphilis complicating pregnancy, first trimester|Syphilis complicating pregnancy, first trimester +C2909555|T046|AB|O98.112|ICD10CM|Syphilis complicating pregnancy, second trimester|Syphilis complicating pregnancy, second trimester +C2909555|T046|PT|O98.112|ICD10CM|Syphilis complicating pregnancy, second trimester|Syphilis complicating pregnancy, second trimester +C2909556|T046|AB|O98.113|ICD10CM|Syphilis complicating pregnancy, third trimester|Syphilis complicating pregnancy, third trimester +C2909556|T046|PT|O98.113|ICD10CM|Syphilis complicating pregnancy, third trimester|Syphilis complicating pregnancy, third trimester +C2909557|T046|AB|O98.119|ICD10CM|Syphilis complicating pregnancy, unspecified trimester|Syphilis complicating pregnancy, unspecified trimester +C2909557|T046|PT|O98.119|ICD10CM|Syphilis complicating pregnancy, unspecified trimester|Syphilis complicating pregnancy, unspecified trimester +C2909558|T046|PT|O98.12|ICD10CM|Syphilis complicating childbirth|Syphilis complicating childbirth +C2909558|T046|AB|O98.12|ICD10CM|Syphilis complicating childbirth|Syphilis complicating childbirth +C2909559|T046|AB|O98.13|ICD10CM|Syphilis complicating the puerperium|Syphilis complicating the puerperium +C2909559|T046|PT|O98.13|ICD10CM|Syphilis complicating the puerperium|Syphilis complicating the puerperium +C2909560|T047|ET|O98.2|ICD10CM|Conditions in A54.-|Conditions in A54.- +C0275667|T047|AB|O98.2|ICD10CM|Gonorrhea compl preg/chldbrth|Gonorrhea compl preg/chldbrth +C0275667|T047|HT|O98.2|ICD10CM|Gonorrhea complicating pregnancy, childbirth and the puerperium|Gonorrhea complicating pregnancy, childbirth and the puerperium +C0275667|T047|PT|O98.2|ICD10AE|Gonorrhea complicating pregnancy, childbirth and the puerperium|Gonorrhea complicating pregnancy, childbirth and the puerperium +C0275667|T047|PT|O98.2|ICD10|Gonorrhoea complicating pregnancy, childbirth and the puerperium|Gonorrhoea complicating pregnancy, childbirth and the puerperium +C1391521|T047|HT|O98.21|ICD10CM|Gonorrhea complicating pregnancy|Gonorrhea complicating pregnancy +C1391521|T047|AB|O98.21|ICD10CM|Gonorrhea complicating pregnancy|Gonorrhea complicating pregnancy +C2909561|T046|AB|O98.211|ICD10CM|Gonorrhea complicating pregnancy, first trimester|Gonorrhea complicating pregnancy, first trimester +C2909561|T046|PT|O98.211|ICD10CM|Gonorrhea complicating pregnancy, first trimester|Gonorrhea complicating pregnancy, first trimester +C2909562|T046|AB|O98.212|ICD10CM|Gonorrhea complicating pregnancy, second trimester|Gonorrhea complicating pregnancy, second trimester +C2909562|T046|PT|O98.212|ICD10CM|Gonorrhea complicating pregnancy, second trimester|Gonorrhea complicating pregnancy, second trimester +C2909563|T046|AB|O98.213|ICD10CM|Gonorrhea complicating pregnancy, third trimester|Gonorrhea complicating pregnancy, third trimester +C2909563|T046|PT|O98.213|ICD10CM|Gonorrhea complicating pregnancy, third trimester|Gonorrhea complicating pregnancy, third trimester +C1391521|T047|AB|O98.219|ICD10CM|Gonorrhea complicating pregnancy, unspecified trimester|Gonorrhea complicating pregnancy, unspecified trimester +C1391521|T047|PT|O98.219|ICD10CM|Gonorrhea complicating pregnancy, unspecified trimester|Gonorrhea complicating pregnancy, unspecified trimester +C2909564|T046|PT|O98.22|ICD10CM|Gonorrhea complicating childbirth|Gonorrhea complicating childbirth +C2909564|T046|AB|O98.22|ICD10CM|Gonorrhea complicating childbirth|Gonorrhea complicating childbirth +C2909565|T046|AB|O98.23|ICD10CM|Gonorrhea complicating the puerperium|Gonorrhea complicating the puerperium +C2909565|T046|PT|O98.23|ICD10CM|Gonorrhea complicating the puerperium|Gonorrhea complicating the puerperium +C2909566|T047|ET|O98.3|ICD10CM|Conditions in A55-A64|Conditions in A55-A64 +C0495308|T047|AB|O98.3|ICD10CM|Oth infections w sexl mode of transmiss compl preg/chldbrth|Oth infections w sexl mode of transmiss compl preg/chldbrth +C2909570|T046|AB|O98.31|ICD10CM|Oth infections w sexl mode of transmiss comp pregnancy|Oth infections w sexl mode of transmiss comp pregnancy +C2909570|T046|HT|O98.31|ICD10CM|Other infections with a predominantly sexual mode of transmission complicating pregnancy|Other infections with a predominantly sexual mode of transmission complicating pregnancy +C2909567|T046|AB|O98.311|ICD10CM|Oth infect w sexl mode of transmiss comp preg, first tri|Oth infect w sexl mode of transmiss comp preg, first tri +C2909568|T046|AB|O98.312|ICD10CM|Oth infect w sexl mode of transmiss comp preg, second tri|Oth infect w sexl mode of transmiss comp preg, second tri +C2909569|T046|AB|O98.313|ICD10CM|Oth infect w sexl mode of transmiss comp preg, third tri|Oth infect w sexl mode of transmiss comp preg, third tri +C2909570|T046|AB|O98.319|ICD10CM|Oth infect w sexl mode of transmiss comp preg, unsp tri|Oth infect w sexl mode of transmiss comp preg, unsp tri +C2909571|T046|AB|O98.32|ICD10CM|Oth infections w sexl mode of transmiss comp childbirth|Oth infections w sexl mode of transmiss comp childbirth +C2909571|T046|PT|O98.32|ICD10CM|Other infections with a predominantly sexual mode of transmission complicating childbirth|Other infections with a predominantly sexual mode of transmission complicating childbirth +C2909572|T046|AB|O98.33|ICD10CM|Oth infections w sexl mode of transmiss comp the puerperium|Oth infections w sexl mode of transmiss comp the puerperium +C2909572|T046|PT|O98.33|ICD10CM|Other infections with a predominantly sexual mode of transmission complicating the puerperium|Other infections with a predominantly sexual mode of transmission complicating the puerperium +C2909573|T047|ET|O98.4|ICD10CM|Conditions in B15-B19|Conditions in B15-B19 +C0451800|T047|AB|O98.4|ICD10CM|Viral hepatitis compl preg/chldbrth|Viral hepatitis compl preg/chldbrth +C0451800|T047|HT|O98.4|ICD10CM|Viral hepatitis complicating pregnancy, childbirth and the puerperium|Viral hepatitis complicating pregnancy, childbirth and the puerperium +C0451800|T047|PT|O98.4|ICD10|Viral hepatitis complicating pregnancy, childbirth and the puerperium|Viral hepatitis complicating pregnancy, childbirth and the puerperium +C2909574|T047|HT|O98.41|ICD10CM|Viral hepatitis complicating pregnancy|Viral hepatitis complicating pregnancy +C2909574|T047|AB|O98.41|ICD10CM|Viral hepatitis complicating pregnancy|Viral hepatitis complicating pregnancy +C2909575|T046|AB|O98.411|ICD10CM|Viral hepatitis complicating pregnancy, first trimester|Viral hepatitis complicating pregnancy, first trimester +C2909575|T046|PT|O98.411|ICD10CM|Viral hepatitis complicating pregnancy, first trimester|Viral hepatitis complicating pregnancy, first trimester +C2909576|T046|AB|O98.412|ICD10CM|Viral hepatitis complicating pregnancy, second trimester|Viral hepatitis complicating pregnancy, second trimester +C2909576|T046|PT|O98.412|ICD10CM|Viral hepatitis complicating pregnancy, second trimester|Viral hepatitis complicating pregnancy, second trimester +C2909577|T046|AB|O98.413|ICD10CM|Viral hepatitis complicating pregnancy, third trimester|Viral hepatitis complicating pregnancy, third trimester +C2909577|T046|PT|O98.413|ICD10CM|Viral hepatitis complicating pregnancy, third trimester|Viral hepatitis complicating pregnancy, third trimester +C2909574|T047|AB|O98.419|ICD10CM|Viral hepatitis complicating pregnancy, unsp trimester|Viral hepatitis complicating pregnancy, unsp trimester +C2909574|T047|PT|O98.419|ICD10CM|Viral hepatitis complicating pregnancy, unspecified trimester|Viral hepatitis complicating pregnancy, unspecified trimester +C2909578|T046|PT|O98.42|ICD10CM|Viral hepatitis complicating childbirth|Viral hepatitis complicating childbirth +C2909578|T046|AB|O98.42|ICD10CM|Viral hepatitis complicating childbirth|Viral hepatitis complicating childbirth +C2909579|T046|AB|O98.43|ICD10CM|Viral hepatitis complicating the puerperium|Viral hepatitis complicating the puerperium +C2909579|T046|PT|O98.43|ICD10CM|Viral hepatitis complicating the puerperium|Viral hepatitis complicating the puerperium +C2909580|T033|ET|O98.5|ICD10CM|Conditions in A80-B09, B25-B34, R87.81-, R87.82-|Conditions in A80-B09, B25-B34, R87.81-, R87.82- +C0477876|T047|AB|O98.5|ICD10CM|Oth viral diseases compl preg/chldbrth|Oth viral diseases compl preg/chldbrth +C0477876|T047|HT|O98.5|ICD10CM|Other viral diseases complicating pregnancy, childbirth and the puerperium|Other viral diseases complicating pregnancy, childbirth and the puerperium +C0477876|T047|PT|O98.5|ICD10|Other viral diseases complicating pregnancy, childbirth and the puerperium|Other viral diseases complicating pregnancy, childbirth and the puerperium +C2909584|T046|AB|O98.51|ICD10CM|Other viral diseases complicating pregnancy|Other viral diseases complicating pregnancy +C2909584|T046|HT|O98.51|ICD10CM|Other viral diseases complicating pregnancy|Other viral diseases complicating pregnancy +C2909581|T046|AB|O98.511|ICD10CM|Other viral diseases complicating pregnancy, first trimester|Other viral diseases complicating pregnancy, first trimester +C2909581|T046|PT|O98.511|ICD10CM|Other viral diseases complicating pregnancy, first trimester|Other viral diseases complicating pregnancy, first trimester +C2909582|T046|AB|O98.512|ICD10CM|Oth viral diseases complicating pregnancy, second trimester|Oth viral diseases complicating pregnancy, second trimester +C2909582|T046|PT|O98.512|ICD10CM|Other viral diseases complicating pregnancy, second trimester|Other viral diseases complicating pregnancy, second trimester +C2909583|T046|AB|O98.513|ICD10CM|Other viral diseases complicating pregnancy, third trimester|Other viral diseases complicating pregnancy, third trimester +C2909583|T046|PT|O98.513|ICD10CM|Other viral diseases complicating pregnancy, third trimester|Other viral diseases complicating pregnancy, third trimester +C2909584|T046|AB|O98.519|ICD10CM|Other viral diseases complicating pregnancy, unsp trimester|Other viral diseases complicating pregnancy, unsp trimester +C2909584|T046|PT|O98.519|ICD10CM|Other viral diseases complicating pregnancy, unspecified trimester|Other viral diseases complicating pregnancy, unspecified trimester +C2909585|T046|AB|O98.52|ICD10CM|Other viral diseases complicating childbirth|Other viral diseases complicating childbirth +C2909585|T046|PT|O98.52|ICD10CM|Other viral diseases complicating childbirth|Other viral diseases complicating childbirth +C2909586|T046|AB|O98.53|ICD10CM|Other viral diseases complicating the puerperium|Other viral diseases complicating the puerperium +C2909586|T046|PT|O98.53|ICD10CM|Other viral diseases complicating the puerperium|Other viral diseases complicating the puerperium +C2909587|T047|ET|O98.6|ICD10CM|Conditions in B50-B64|Conditions in B50-B64 +C0495309|T046|AB|O98.6|ICD10CM|Protozoal diseases compl preg/chldbrth|Protozoal diseases compl preg/chldbrth +C0495309|T046|HT|O98.6|ICD10CM|Protozoal diseases complicating pregnancy, childbirth and the puerperium|Protozoal diseases complicating pregnancy, childbirth and the puerperium +C0495309|T046|PT|O98.6|ICD10|Protozoal diseases complicating pregnancy, childbirth and the puerperium|Protozoal diseases complicating pregnancy, childbirth and the puerperium +C2909591|T047|AB|O98.61|ICD10CM|Protozoal diseases complicating pregnancy|Protozoal diseases complicating pregnancy +C2909591|T047|HT|O98.61|ICD10CM|Protozoal diseases complicating pregnancy|Protozoal diseases complicating pregnancy +C2909588|T046|AB|O98.611|ICD10CM|Protozoal diseases complicating pregnancy, first trimester|Protozoal diseases complicating pregnancy, first trimester +C2909588|T046|PT|O98.611|ICD10CM|Protozoal diseases complicating pregnancy, first trimester|Protozoal diseases complicating pregnancy, first trimester +C2909589|T046|AB|O98.612|ICD10CM|Protozoal diseases complicating pregnancy, second trimester|Protozoal diseases complicating pregnancy, second trimester +C2909589|T046|PT|O98.612|ICD10CM|Protozoal diseases complicating pregnancy, second trimester|Protozoal diseases complicating pregnancy, second trimester +C2909590|T046|AB|O98.613|ICD10CM|Protozoal diseases complicating pregnancy, third trimester|Protozoal diseases complicating pregnancy, third trimester +C2909590|T046|PT|O98.613|ICD10CM|Protozoal diseases complicating pregnancy, third trimester|Protozoal diseases complicating pregnancy, third trimester +C2909591|T047|AB|O98.619|ICD10CM|Protozoal diseases complicating pregnancy, unsp trimester|Protozoal diseases complicating pregnancy, unsp trimester +C2909591|T047|PT|O98.619|ICD10CM|Protozoal diseases complicating pregnancy, unspecified trimester|Protozoal diseases complicating pregnancy, unspecified trimester +C2909592|T046|AB|O98.62|ICD10CM|Protozoal diseases complicating childbirth|Protozoal diseases complicating childbirth +C2909592|T046|PT|O98.62|ICD10CM|Protozoal diseases complicating childbirth|Protozoal diseases complicating childbirth +C2909593|T046|AB|O98.63|ICD10CM|Protozoal diseases complicating the puerperium|Protozoal diseases complicating the puerperium +C2909593|T046|PT|O98.63|ICD10CM|Protozoal diseases complicating the puerperium|Protozoal diseases complicating the puerperium +C2909594|T046|HT|O98.7|ICD10CM|Human immunodeficiency virus [HIV] disease complicating pregnancy, childbirth and the puerperium|Human immunodeficiency virus [HIV] disease complicating pregnancy, childbirth and the puerperium +C2909594|T046|AB|O98.7|ICD10CM|Human immunodeficiency virus disease compl preg/chldbrth|Human immunodeficiency virus disease compl preg/chldbrth +C2909595|T046|HT|O98.71|ICD10CM|Human immunodeficiency virus [HIV] disease complicating pregnancy|Human immunodeficiency virus [HIV] disease complicating pregnancy +C2909595|T046|AB|O98.71|ICD10CM|Human immunodeficiency virus disease complicating pregnancy|Human immunodeficiency virus disease complicating pregnancy +C2909596|T046|AB|O98.711|ICD10CM|Human immunodef virus disease comp preg, first trimester|Human immunodef virus disease comp preg, first trimester +C2909596|T046|PT|O98.711|ICD10CM|Human immunodeficiency virus [HIV] disease complicating pregnancy, first trimester|Human immunodeficiency virus [HIV] disease complicating pregnancy, first trimester +C2909597|T046|AB|O98.712|ICD10CM|Human immunodef virus disease comp preg, second trimester|Human immunodef virus disease comp preg, second trimester +C2909597|T046|PT|O98.712|ICD10CM|Human immunodeficiency virus [HIV] disease complicating pregnancy, second trimester|Human immunodeficiency virus [HIV] disease complicating pregnancy, second trimester +C2909598|T046|AB|O98.713|ICD10CM|Human immunodef virus disease comp preg, third trimester|Human immunodef virus disease comp preg, third trimester +C2909598|T046|PT|O98.713|ICD10CM|Human immunodeficiency virus [HIV] disease complicating pregnancy, third trimester|Human immunodeficiency virus [HIV] disease complicating pregnancy, third trimester +C3264526|T046|AB|O98.719|ICD10CM|Human immunodef virus disease comp pregnancy, unsp trimester|Human immunodef virus disease comp pregnancy, unsp trimester +C3264526|T046|PT|O98.719|ICD10CM|Human immunodeficiency virus [HIV] disease complicating pregnancy, unspecified trimester|Human immunodeficiency virus [HIV] disease complicating pregnancy, unspecified trimester +C2909599|T046|PT|O98.72|ICD10CM|Human immunodeficiency virus [HIV] disease complicating childbirth|Human immunodeficiency virus [HIV] disease complicating childbirth +C2909599|T046|AB|O98.72|ICD10CM|Human immunodeficiency virus disease complicating childbirth|Human immunodeficiency virus disease complicating childbirth +C2909600|T046|AB|O98.73|ICD10CM|Human immunodef virus disease complicating the puerperium|Human immunodef virus disease complicating the puerperium +C2909600|T046|PT|O98.73|ICD10CM|Human immunodeficiency virus [HIV] disease complicating the puerperium|Human immunodeficiency virus [HIV] disease complicating the puerperium +C0495310|T046|AB|O98.8|ICD10CM|Oth maternal infec/parastc diseases compl preg/chldbrth|Oth maternal infec/parastc diseases compl preg/chldbrth +C2909601|T046|AB|O98.81|ICD10CM|Oth maternal infec/parastc diseases complicating pregnancy|Oth maternal infec/parastc diseases complicating pregnancy +C2909601|T046|HT|O98.81|ICD10CM|Other maternal infectious and parasitic diseases complicating pregnancy|Other maternal infectious and parasitic diseases complicating pregnancy +C2909602|T046|AB|O98.811|ICD10CM|Oth maternal infec/parastc diseases comp preg, first tri|Oth maternal infec/parastc diseases comp preg, first tri +C2909602|T046|PT|O98.811|ICD10CM|Other maternal infectious and parasitic diseases complicating pregnancy, first trimester|Other maternal infectious and parasitic diseases complicating pregnancy, first trimester +C2909603|T046|AB|O98.812|ICD10CM|Oth maternal infec/parastc diseases comp preg, second tri|Oth maternal infec/parastc diseases comp preg, second tri +C2909603|T046|PT|O98.812|ICD10CM|Other maternal infectious and parasitic diseases complicating pregnancy, second trimester|Other maternal infectious and parasitic diseases complicating pregnancy, second trimester +C2909604|T046|AB|O98.813|ICD10CM|Oth maternal infec/parastc diseases comp preg, third tri|Oth maternal infec/parastc diseases comp preg, third tri +C2909604|T046|PT|O98.813|ICD10CM|Other maternal infectious and parasitic diseases complicating pregnancy, third trimester|Other maternal infectious and parasitic diseases complicating pregnancy, third trimester +C2909601|T046|AB|O98.819|ICD10CM|Oth maternal infec/parastc diseases comp preg, unsp tri|Oth maternal infec/parastc diseases comp preg, unsp tri +C2909601|T046|PT|O98.819|ICD10CM|Other maternal infectious and parasitic diseases complicating pregnancy, unspecified trimester|Other maternal infectious and parasitic diseases complicating pregnancy, unspecified trimester +C2909605|T046|AB|O98.82|ICD10CM|Oth maternal infec/parastc diseases complicating childbirth|Oth maternal infec/parastc diseases complicating childbirth +C2909605|T046|PT|O98.82|ICD10CM|Other maternal infectious and parasitic diseases complicating childbirth|Other maternal infectious and parasitic diseases complicating childbirth +C2909606|T046|AB|O98.83|ICD10CM|Oth maternal infec/parastc diseases comp the puerperium|Oth maternal infec/parastc diseases comp the puerperium +C2909606|T046|PT|O98.83|ICD10CM|Other maternal infectious and parasitic diseases complicating the puerperium|Other maternal infectious and parasitic diseases complicating the puerperium +C2909607|T046|AB|O98.9|ICD10CM|Unsp maternal infec/parastc disease compl preg/chldbrth|Unsp maternal infec/parastc disease compl preg/chldbrth +C2909611|T046|AB|O98.91|ICD10CM|Unsp maternal infec/parastc disease complicating pregnancy|Unsp maternal infec/parastc disease complicating pregnancy +C2909611|T046|HT|O98.91|ICD10CM|Unspecified maternal infectious and parasitic disease complicating pregnancy|Unspecified maternal infectious and parasitic disease complicating pregnancy +C2909608|T046|AB|O98.911|ICD10CM|Unsp maternal infec/parastc disease comp preg, first tri|Unsp maternal infec/parastc disease comp preg, first tri +C2909608|T046|PT|O98.911|ICD10CM|Unspecified maternal infectious and parasitic disease complicating pregnancy, first trimester|Unspecified maternal infectious and parasitic disease complicating pregnancy, first trimester +C2909609|T046|AB|O98.912|ICD10CM|Unsp maternal infec/parastc disease comp preg, second tri|Unsp maternal infec/parastc disease comp preg, second tri +C2909609|T046|PT|O98.912|ICD10CM|Unspecified maternal infectious and parasitic disease complicating pregnancy, second trimester|Unspecified maternal infectious and parasitic disease complicating pregnancy, second trimester +C2909610|T046|AB|O98.913|ICD10CM|Unsp maternal infec/parastc disease comp preg, third tri|Unsp maternal infec/parastc disease comp preg, third tri +C2909610|T046|PT|O98.913|ICD10CM|Unspecified maternal infectious and parasitic disease complicating pregnancy, third trimester|Unspecified maternal infectious and parasitic disease complicating pregnancy, third trimester +C2909611|T046|AB|O98.919|ICD10CM|Unsp maternal infec/parastc disease comp preg, unsp tri|Unsp maternal infec/parastc disease comp preg, unsp tri +C2909611|T046|PT|O98.919|ICD10CM|Unspecified maternal infectious and parasitic disease complicating pregnancy, unspecified trimester|Unspecified maternal infectious and parasitic disease complicating pregnancy, unspecified trimester +C2909612|T046|AB|O98.92|ICD10CM|Unsp maternal infec/parastc disease complicating childbirth|Unsp maternal infec/parastc disease complicating childbirth +C2909612|T046|PT|O98.92|ICD10CM|Unspecified maternal infectious and parasitic disease complicating childbirth|Unspecified maternal infectious and parasitic disease complicating childbirth +C2909613|T046|AB|O98.93|ICD10CM|Unsp maternal infec/parastc disease comp the puerperium|Unsp maternal infec/parastc disease comp the puerperium +C2909613|T046|PT|O98.93|ICD10CM|Unspecified maternal infectious and parasitic disease complicating the puerperium|Unspecified maternal infectious and parasitic disease complicating the puerperium +C0495312|T046|AB|O99|ICD10CM|Oth maternal diseases classd elsw but compl preg/chldbrth|Oth maternal diseases classd elsw but compl preg/chldbrth +C0495313|T047|PT|O99.0|ICD10|Anaemia complicating pregnancy, childbirth and the puerperium|Anaemia complicating pregnancy, childbirth and the puerperium +C0495313|T047|PT|O99.0|ICD10AE|Anemia complicating pregnancy, childbirth and the puerperium|Anemia complicating pregnancy, childbirth and the puerperium +C0495313|T047|HT|O99.0|ICD10CM|Anemia complicating pregnancy, childbirth and the puerperium|Anemia complicating pregnancy, childbirth and the puerperium +C0495313|T047|AB|O99.0|ICD10CM|Anemia complicating pregnancy, childbirth and the puerperium|Anemia complicating pregnancy, childbirth and the puerperium +C2909614|T047|ET|O99.0|ICD10CM|Conditions in D50-D64|Conditions in D50-D64 +C1387481|T046|HT|O99.01|ICD10CM|Anemia complicating pregnancy|Anemia complicating pregnancy +C1387481|T046|AB|O99.01|ICD10CM|Anemia complicating pregnancy|Anemia complicating pregnancy +C2909615|T046|AB|O99.011|ICD10CM|Anemia complicating pregnancy, first trimester|Anemia complicating pregnancy, first trimester +C2909615|T046|PT|O99.011|ICD10CM|Anemia complicating pregnancy, first trimester|Anemia complicating pregnancy, first trimester +C2909616|T046|AB|O99.012|ICD10CM|Anemia complicating pregnancy, second trimester|Anemia complicating pregnancy, second trimester +C2909616|T046|PT|O99.012|ICD10CM|Anemia complicating pregnancy, second trimester|Anemia complicating pregnancy, second trimester +C2909617|T046|AB|O99.013|ICD10CM|Anemia complicating pregnancy, third trimester|Anemia complicating pregnancy, third trimester +C2909617|T046|PT|O99.013|ICD10CM|Anemia complicating pregnancy, third trimester|Anemia complicating pregnancy, third trimester +C1387481|T046|AB|O99.019|ICD10CM|Anemia complicating pregnancy, unspecified trimester|Anemia complicating pregnancy, unspecified trimester +C1387481|T046|PT|O99.019|ICD10CM|Anemia complicating pregnancy, unspecified trimester|Anemia complicating pregnancy, unspecified trimester +C2909618|T046|PT|O99.02|ICD10CM|Anemia complicating childbirth|Anemia complicating childbirth +C2909618|T046|AB|O99.02|ICD10CM|Anemia complicating childbirth|Anemia complicating childbirth +C2909619|T046|AB|O99.03|ICD10CM|Anemia complicating the puerperium|Anemia complicating the puerperium +C2909619|T046|PT|O99.03|ICD10CM|Anemia complicating the puerperium|Anemia complicating the puerperium +C2909620|T047|ET|O99.1|ICD10CM|Conditions in D65-D89|Conditions in D65-D89 +C0477878|T047|AB|O99.1|ICD10CM|Other dis blood/immune compl preg/childbrth|Other dis blood/immune compl preg/childbrth +C2909624|T046|AB|O99.11|ICD10CM|Oth diseases of the bld/bld-form org/immun mechnsm comp preg|Oth diseases of the bld/bld-form org/immun mechnsm comp preg +C2909621|T046|AB|O99.111|ICD10CM|Oth dis of bld/bld-form org/immun mechnsm comp preg, 1st tri|Oth dis of bld/bld-form org/immun mechnsm comp preg, 1st tri +C2909622|T046|AB|O99.112|ICD10CM|Oth dis of bld/bld-form org/immun mechnsm comp preg, 2nd tri|Oth dis of bld/bld-form org/immun mechnsm comp preg, 2nd tri +C2909623|T046|AB|O99.113|ICD10CM|Oth dis of bld/bld-form org/immun mechnsm comp preg, 3rd tri|Oth dis of bld/bld-form org/immun mechnsm comp preg, 3rd tri +C2909624|T046|AB|O99.119|ICD10CM|Oth dis of bld/bld-form org/immun mechnsm comp preg,unsp tri|Oth dis of bld/bld-form org/immun mechnsm comp preg,unsp tri +C2909625|T046|AB|O99.12|ICD10CM|Oth dis of the bld/bld-form org/immun mechnsm comp chldbrth|Oth dis of the bld/bld-form org/immun mechnsm comp chldbrth +C2909626|T046|AB|O99.13|ICD10CM|Oth dis of the bld/bld-form org/immun mechnsm comp the puerp|Oth dis of the bld/bld-form org/immun mechnsm comp the puerp +C0495314|T047|AB|O99.2|ICD10CM|Endo, nutritional and metabolic diseases compl preg/chldbrth|Endo, nutritional and metabolic diseases compl preg/chldbrth +C0495314|T047|HT|O99.2|ICD10CM|Endocrine, nutritional and metabolic diseases complicating pregnancy, childbirth and the puerperium|Endocrine, nutritional and metabolic diseases complicating pregnancy, childbirth and the puerperium +C0495314|T047|PT|O99.2|ICD10|Endocrine, nutritional and metabolic diseases complicating pregnancy, childbirth and the puerperium|Endocrine, nutritional and metabolic diseases complicating pregnancy, childbirth and the puerperium +C2909628|T046|AB|O99.21|ICD10CM|Obesity comp pregnancy, childbirth, and the puerperium|Obesity comp pregnancy, childbirth, and the puerperium +C2909628|T046|HT|O99.21|ICD10CM|Obesity complicating pregnancy, childbirth, and the puerperium|Obesity complicating pregnancy, childbirth, and the puerperium +C2909632|T046|AB|O99.210|ICD10CM|Obesity complicating pregnancy, unspecified trimester|Obesity complicating pregnancy, unspecified trimester +C2909632|T046|PT|O99.210|ICD10CM|Obesity complicating pregnancy, unspecified trimester|Obesity complicating pregnancy, unspecified trimester +C2909629|T046|AB|O99.211|ICD10CM|Obesity complicating pregnancy, first trimester|Obesity complicating pregnancy, first trimester +C2909629|T046|PT|O99.211|ICD10CM|Obesity complicating pregnancy, first trimester|Obesity complicating pregnancy, first trimester +C2909630|T046|AB|O99.212|ICD10CM|Obesity complicating pregnancy, second trimester|Obesity complicating pregnancy, second trimester +C2909630|T046|PT|O99.212|ICD10CM|Obesity complicating pregnancy, second trimester|Obesity complicating pregnancy, second trimester +C2909631|T046|AB|O99.213|ICD10CM|Obesity complicating pregnancy, third trimester|Obesity complicating pregnancy, third trimester +C2909631|T046|PT|O99.213|ICD10CM|Obesity complicating pregnancy, third trimester|Obesity complicating pregnancy, third trimester +C2909632|T046|AB|O99.214|ICD10CM|Obesity complicating childbirth|Obesity complicating childbirth +C2909632|T046|PT|O99.214|ICD10CM|Obesity complicating childbirth|Obesity complicating childbirth +C2909633|T046|AB|O99.215|ICD10CM|Obesity complicating the puerperium|Obesity complicating the puerperium +C2909633|T046|PT|O99.215|ICD10CM|Obesity complicating the puerperium|Obesity complicating the puerperium +C2909634|T046|AB|O99.28|ICD10CM|Oth endo, nutritional and metab diseases compl preg/chldbrth|Oth endo, nutritional and metab diseases compl preg/chldbrth +C2909635|T046|AB|O99.280|ICD10CM|Endo, nutritional and metab diseases comp preg, unsp tri|Endo, nutritional and metab diseases comp preg, unsp tri +C2909635|T046|PT|O99.280|ICD10CM|Endocrine, nutritional and metabolic diseases complicating pregnancy, unspecified trimester|Endocrine, nutritional and metabolic diseases complicating pregnancy, unspecified trimester +C2909636|T046|AB|O99.281|ICD10CM|Endo, nutritional and metab diseases comp preg, first tri|Endo, nutritional and metab diseases comp preg, first tri +C2909636|T046|PT|O99.281|ICD10CM|Endocrine, nutritional and metabolic diseases complicating pregnancy, first trimester|Endocrine, nutritional and metabolic diseases complicating pregnancy, first trimester +C2909637|T046|AB|O99.282|ICD10CM|Endo, nutritional and metab diseases comp preg, second tri|Endo, nutritional and metab diseases comp preg, second tri +C2909637|T046|PT|O99.282|ICD10CM|Endocrine, nutritional and metabolic diseases complicating pregnancy, second trimester|Endocrine, nutritional and metabolic diseases complicating pregnancy, second trimester +C2909638|T046|AB|O99.283|ICD10CM|Endo, nutritional and metab diseases comp preg, third tri|Endo, nutritional and metab diseases comp preg, third tri +C2909638|T046|PT|O99.283|ICD10CM|Endocrine, nutritional and metabolic diseases complicating pregnancy, third trimester|Endocrine, nutritional and metabolic diseases complicating pregnancy, third trimester +C2909639|T046|AB|O99.284|ICD10CM|Endocrine, nutritional and metabolic diseases comp chldbrth|Endocrine, nutritional and metabolic diseases comp chldbrth +C2909639|T046|PT|O99.284|ICD10CM|Endocrine, nutritional and metabolic diseases complicating childbirth|Endocrine, nutritional and metabolic diseases complicating childbirth +C2909640|T046|AB|O99.285|ICD10CM|Endocrine, nutritional and metabolic diseases comp the puerp|Endocrine, nutritional and metabolic diseases comp the puerp +C2909640|T046|PT|O99.285|ICD10CM|Endocrine, nutritional and metabolic diseases complicating the puerperium|Endocrine, nutritional and metabolic diseases complicating the puerperium +C0495315|T048|AB|O99.3|ICD10CM|Mental disord and dis of the nervous sys compl preg/chldbrth|Mental disord and dis of the nervous sys compl preg/chldbrth +C2909641|T048|AB|O99.31|ICD10CM|Alcohol use comp pregnancy, childbirth, and the puerperium|Alcohol use comp pregnancy, childbirth, and the puerperium +C2909641|T048|HT|O99.31|ICD10CM|Alcohol use complicating pregnancy, childbirth, and the puerperium|Alcohol use complicating pregnancy, childbirth, and the puerperium +C2909642|T048|AB|O99.310|ICD10CM|Alcohol use complicating pregnancy, unspecified trimester|Alcohol use complicating pregnancy, unspecified trimester +C2909642|T048|PT|O99.310|ICD10CM|Alcohol use complicating pregnancy, unspecified trimester|Alcohol use complicating pregnancy, unspecified trimester +C2909643|T048|AB|O99.311|ICD10CM|Alcohol use complicating pregnancy, first trimester|Alcohol use complicating pregnancy, first trimester +C2909643|T048|PT|O99.311|ICD10CM|Alcohol use complicating pregnancy, first trimester|Alcohol use complicating pregnancy, first trimester +C2909644|T048|AB|O99.312|ICD10CM|Alcohol use complicating pregnancy, second trimester|Alcohol use complicating pregnancy, second trimester +C2909644|T048|PT|O99.312|ICD10CM|Alcohol use complicating pregnancy, second trimester|Alcohol use complicating pregnancy, second trimester +C2909645|T048|AB|O99.313|ICD10CM|Alcohol use complicating pregnancy, third trimester|Alcohol use complicating pregnancy, third trimester +C2909645|T048|PT|O99.313|ICD10CM|Alcohol use complicating pregnancy, third trimester|Alcohol use complicating pregnancy, third trimester +C2909646|T048|AB|O99.314|ICD10CM|Alcohol use complicating childbirth|Alcohol use complicating childbirth +C2909646|T048|PT|O99.314|ICD10CM|Alcohol use complicating childbirth|Alcohol use complicating childbirth +C2909647|T048|AB|O99.315|ICD10CM|Alcohol use complicating the puerperium|Alcohol use complicating the puerperium +C2909647|T048|PT|O99.315|ICD10CM|Alcohol use complicating the puerperium|Alcohol use complicating the puerperium +C2909648|T046|AB|O99.32|ICD10CM|Drug use comp pregnancy, childbirth, and the puerperium|Drug use comp pregnancy, childbirth, and the puerperium +C2909648|T046|HT|O99.32|ICD10CM|Drug use complicating pregnancy, childbirth, and the puerperium|Drug use complicating pregnancy, childbirth, and the puerperium +C2909649|T046|AB|O99.320|ICD10CM|Drug use complicating pregnancy, unspecified trimester|Drug use complicating pregnancy, unspecified trimester +C2909649|T046|PT|O99.320|ICD10CM|Drug use complicating pregnancy, unspecified trimester|Drug use complicating pregnancy, unspecified trimester +C2909650|T046|AB|O99.321|ICD10CM|Drug use complicating pregnancy, first trimester|Drug use complicating pregnancy, first trimester +C2909650|T046|PT|O99.321|ICD10CM|Drug use complicating pregnancy, first trimester|Drug use complicating pregnancy, first trimester +C2909651|T046|AB|O99.322|ICD10CM|Drug use complicating pregnancy, second trimester|Drug use complicating pregnancy, second trimester +C2909651|T046|PT|O99.322|ICD10CM|Drug use complicating pregnancy, second trimester|Drug use complicating pregnancy, second trimester +C2909652|T046|AB|O99.323|ICD10CM|Drug use complicating pregnancy, third trimester|Drug use complicating pregnancy, third trimester +C2909652|T046|PT|O99.323|ICD10CM|Drug use complicating pregnancy, third trimester|Drug use complicating pregnancy, third trimester +C2909653|T046|AB|O99.324|ICD10CM|Drug use complicating childbirth|Drug use complicating childbirth +C2909653|T046|PT|O99.324|ICD10CM|Drug use complicating childbirth|Drug use complicating childbirth +C2909654|T046|AB|O99.325|ICD10CM|Drug use complicating the puerperium|Drug use complicating the puerperium +C2909654|T046|PT|O99.325|ICD10CM|Drug use complicating the puerperium|Drug use complicating the puerperium +C3646127|T046|ET|O99.33|ICD10CM|Smoking complicating pregnancy, childbirth, and the puerperium|Smoking complicating pregnancy, childbirth, and the puerperium +C4269056|T048|AB|O99.33|ICD10CM|Tobacco use disorder comp pregnancy, chldbrth, and the puerp|Tobacco use disorder comp pregnancy, chldbrth, and the puerp +C4269056|T048|HT|O99.33|ICD10CM|Tobacco use disorder complicating pregnancy, childbirth, and the puerperium|Tobacco use disorder complicating pregnancy, childbirth, and the puerperium +C2909656|T046|AB|O99.330|ICD10CM|Smoking (tobacco) complicating pregnancy, unsp trimester|Smoking (tobacco) complicating pregnancy, unsp trimester +C2909656|T046|PT|O99.330|ICD10CM|Smoking (tobacco) complicating pregnancy, unspecified trimester|Smoking (tobacco) complicating pregnancy, unspecified trimester +C2909657|T046|AB|O99.331|ICD10CM|Smoking (tobacco) complicating pregnancy, first trimester|Smoking (tobacco) complicating pregnancy, first trimester +C2909657|T046|PT|O99.331|ICD10CM|Smoking (tobacco) complicating pregnancy, first trimester|Smoking (tobacco) complicating pregnancy, first trimester +C2909658|T046|AB|O99.332|ICD10CM|Smoking (tobacco) complicating pregnancy, second trimester|Smoking (tobacco) complicating pregnancy, second trimester +C2909658|T046|PT|O99.332|ICD10CM|Smoking (tobacco) complicating pregnancy, second trimester|Smoking (tobacco) complicating pregnancy, second trimester +C2909659|T046|AB|O99.333|ICD10CM|Smoking (tobacco) complicating pregnancy, third trimester|Smoking (tobacco) complicating pregnancy, third trimester +C2909659|T046|PT|O99.333|ICD10CM|Smoking (tobacco) complicating pregnancy, third trimester|Smoking (tobacco) complicating pregnancy, third trimester +C2909660|T046|AB|O99.334|ICD10CM|Smoking (tobacco) complicating childbirth|Smoking (tobacco) complicating childbirth +C2909660|T046|PT|O99.334|ICD10CM|Smoking (tobacco) complicating childbirth|Smoking (tobacco) complicating childbirth +C2909661|T046|AB|O99.335|ICD10CM|Smoking (tobacco) complicating the puerperium|Smoking (tobacco) complicating the puerperium +C2909661|T046|PT|O99.335|ICD10CM|Smoking (tobacco) complicating the puerperium|Smoking (tobacco) complicating the puerperium +C2909663|T048|AB|O99.34|ICD10CM|Oth mental disorders comp pregnancy, chldbrth, and the puerp|Oth mental disorders comp pregnancy, chldbrth, and the puerp +C2909663|T048|HT|O99.34|ICD10CM|Other mental disorders complicating pregnancy, childbirth, and the puerperium|Other mental disorders complicating pregnancy, childbirth, and the puerperium +C2909664|T048|AB|O99.340|ICD10CM|Oth mental disorders complicating pregnancy, unsp trimester|Oth mental disorders complicating pregnancy, unsp trimester +C2909664|T048|PT|O99.340|ICD10CM|Other mental disorders complicating pregnancy, unspecified trimester|Other mental disorders complicating pregnancy, unspecified trimester +C2909665|T048|AB|O99.341|ICD10CM|Oth mental disorders complicating pregnancy, first trimester|Oth mental disorders complicating pregnancy, first trimester +C2909665|T048|PT|O99.341|ICD10CM|Other mental disorders complicating pregnancy, first trimester|Other mental disorders complicating pregnancy, first trimester +C2909666|T048|AB|O99.342|ICD10CM|Oth mental disorders comp pregnancy, second trimester|Oth mental disorders comp pregnancy, second trimester +C2909666|T048|PT|O99.342|ICD10CM|Other mental disorders complicating pregnancy, second trimester|Other mental disorders complicating pregnancy, second trimester +C2909667|T048|AB|O99.343|ICD10CM|Oth mental disorders complicating pregnancy, third trimester|Oth mental disorders complicating pregnancy, third trimester +C2909667|T048|PT|O99.343|ICD10CM|Other mental disorders complicating pregnancy, third trimester|Other mental disorders complicating pregnancy, third trimester +C2909668|T048|AB|O99.344|ICD10CM|Other mental disorders complicating childbirth|Other mental disorders complicating childbirth +C2909668|T048|PT|O99.344|ICD10CM|Other mental disorders complicating childbirth|Other mental disorders complicating childbirth +C2909669|T048|AB|O99.345|ICD10CM|Other mental disorders complicating the puerperium|Other mental disorders complicating the puerperium +C2909669|T048|PT|O99.345|ICD10CM|Other mental disorders complicating the puerperium|Other mental disorders complicating the puerperium +C2909670|T047|ET|O99.35|ICD10CM|Conditions in G00-G99|Conditions in G00-G99 +C0574075|T046|AB|O99.35|ICD10CM|Dis of the nervous sys comp preg, chldbrth, and the puerp|Dis of the nervous sys comp preg, chldbrth, and the puerp +C0574075|T046|HT|O99.35|ICD10CM|Diseases of the nervous system complicating pregnancy, childbirth, and the puerperium|Diseases of the nervous system complicating pregnancy, childbirth, and the puerperium +C2909671|T046|AB|O99.350|ICD10CM|Diseases of the nervous sys comp pregnancy, unsp trimester|Diseases of the nervous sys comp pregnancy, unsp trimester +C2909671|T046|PT|O99.350|ICD10CM|Diseases of the nervous system complicating pregnancy, unspecified trimester|Diseases of the nervous system complicating pregnancy, unspecified trimester +C2909672|T046|AB|O99.351|ICD10CM|Diseases of the nervous sys comp pregnancy, first trimester|Diseases of the nervous sys comp pregnancy, first trimester +C2909672|T046|PT|O99.351|ICD10CM|Diseases of the nervous system complicating pregnancy, first trimester|Diseases of the nervous system complicating pregnancy, first trimester +C2909673|T046|AB|O99.352|ICD10CM|Diseases of the nervous sys comp pregnancy, second trimester|Diseases of the nervous sys comp pregnancy, second trimester +C2909673|T046|PT|O99.352|ICD10CM|Diseases of the nervous system complicating pregnancy, second trimester|Diseases of the nervous system complicating pregnancy, second trimester +C2909674|T046|AB|O99.353|ICD10CM|Diseases of the nervous sys comp pregnancy, third trimester|Diseases of the nervous sys comp pregnancy, third trimester +C2909674|T046|PT|O99.353|ICD10CM|Diseases of the nervous system complicating pregnancy, third trimester|Diseases of the nervous system complicating pregnancy, third trimester +C2909675|T046|AB|O99.354|ICD10CM|Diseases of the nervous system complicating childbirth|Diseases of the nervous system complicating childbirth +C2909675|T046|PT|O99.354|ICD10CM|Diseases of the nervous system complicating childbirth|Diseases of the nervous system complicating childbirth +C2909676|T046|AB|O99.355|ICD10CM|Diseases of the nervous system complicating the puerperium|Diseases of the nervous system complicating the puerperium +C2909676|T046|PT|O99.355|ICD10CM|Diseases of the nervous system complicating the puerperium|Diseases of the nervous system complicating the puerperium +C2909677|T047|ET|O99.4|ICD10CM|Conditions in I00-I99|Conditions in I00-I99 +C0495316|T047|AB|O99.4|ICD10CM|Diseases of the circulatory system compl preg/chldbrth|Diseases of the circulatory system compl preg/chldbrth +C0495316|T047|HT|O99.4|ICD10CM|Diseases of the circulatory system complicating pregnancy, childbirth and the puerperium|Diseases of the circulatory system complicating pregnancy, childbirth and the puerperium +C0495316|T047|PT|O99.4|ICD10|Diseases of the circulatory system complicating pregnancy, childbirth and the puerperium|Diseases of the circulatory system complicating pregnancy, childbirth and the puerperium +C2909678|T046|AB|O99.41|ICD10CM|Diseases of the circulatory system complicating pregnancy|Diseases of the circulatory system complicating pregnancy +C2909678|T046|HT|O99.41|ICD10CM|Diseases of the circulatory system complicating pregnancy|Diseases of the circulatory system complicating pregnancy +C2909679|T046|AB|O99.411|ICD10CM|Diseases of the circ sys comp pregnancy, first trimester|Diseases of the circ sys comp pregnancy, first trimester +C2909679|T046|PT|O99.411|ICD10CM|Diseases of the circulatory system complicating pregnancy, first trimester|Diseases of the circulatory system complicating pregnancy, first trimester +C2909680|T046|AB|O99.412|ICD10CM|Diseases of the circ sys comp pregnancy, second trimester|Diseases of the circ sys comp pregnancy, second trimester +C2909680|T046|PT|O99.412|ICD10CM|Diseases of the circulatory system complicating pregnancy, second trimester|Diseases of the circulatory system complicating pregnancy, second trimester +C2909681|T046|AB|O99.413|ICD10CM|Diseases of the circ sys comp pregnancy, third trimester|Diseases of the circ sys comp pregnancy, third trimester +C2909681|T046|PT|O99.413|ICD10CM|Diseases of the circulatory system complicating pregnancy, third trimester|Diseases of the circulatory system complicating pregnancy, third trimester +C2909685|T046|AB|O99.419|ICD10CM|Diseases of the circ sys comp pregnancy, unsp trimester|Diseases of the circ sys comp pregnancy, unsp trimester +C2909685|T046|PT|O99.419|ICD10CM|Diseases of the circulatory system complicating pregnancy, unspecified trimester|Diseases of the circulatory system complicating pregnancy, unspecified trimester +C2909682|T046|AB|O99.42|ICD10CM|Diseases of the circulatory system complicating childbirth|Diseases of the circulatory system complicating childbirth +C2909682|T046|PT|O99.42|ICD10CM|Diseases of the circulatory system complicating childbirth|Diseases of the circulatory system complicating childbirth +C2909683|T046|AB|O99.43|ICD10CM|Diseases of the circ sys complicating the puerperium|Diseases of the circ sys complicating the puerperium +C2909683|T046|PT|O99.43|ICD10CM|Diseases of the circulatory system complicating the puerperium|Diseases of the circulatory system complicating the puerperium +C2909684|T047|ET|O99.5|ICD10CM|Conditions in J00-J99|Conditions in J00-J99 +C0451801|T047|AB|O99.5|ICD10CM|Diseases of the respiratory system compl preg/chldbrth|Diseases of the respiratory system compl preg/chldbrth +C0451801|T047|HT|O99.5|ICD10CM|Diseases of the respiratory system complicating pregnancy, childbirth and the puerperium|Diseases of the respiratory system complicating pregnancy, childbirth and the puerperium +C0451801|T047|PT|O99.5|ICD10|Diseases of the respiratory system complicating pregnancy, childbirth and the puerperium|Diseases of the respiratory system complicating pregnancy, childbirth and the puerperium +C4317200|T047|AB|O99.51|ICD10CM|Diseases of the respiratory system complicating pregnancy|Diseases of the respiratory system complicating pregnancy +C4317200|T047|HT|O99.51|ICD10CM|Diseases of the respiratory system complicating pregnancy|Diseases of the respiratory system complicating pregnancy +C2909686|T046|AB|O99.511|ICD10CM|Diseases of the resp sys comp pregnancy, first trimester|Diseases of the resp sys comp pregnancy, first trimester +C2909686|T046|PT|O99.511|ICD10CM|Diseases of the respiratory system complicating pregnancy, first trimester|Diseases of the respiratory system complicating pregnancy, first trimester +C2909687|T046|AB|O99.512|ICD10CM|Diseases of the resp sys comp pregnancy, second trimester|Diseases of the resp sys comp pregnancy, second trimester +C2909687|T046|PT|O99.512|ICD10CM|Diseases of the respiratory system complicating pregnancy, second trimester|Diseases of the respiratory system complicating pregnancy, second trimester +C2909688|T046|AB|O99.513|ICD10CM|Diseases of the resp sys comp pregnancy, third trimester|Diseases of the resp sys comp pregnancy, third trimester +C2909688|T046|PT|O99.513|ICD10CM|Diseases of the respiratory system complicating pregnancy, third trimester|Diseases of the respiratory system complicating pregnancy, third trimester +C2909689|T046|AB|O99.519|ICD10CM|Diseases of the resp sys comp pregnancy, unsp trimester|Diseases of the resp sys comp pregnancy, unsp trimester +C2909689|T046|PT|O99.519|ICD10CM|Diseases of the respiratory system complicating pregnancy, unspecified trimester|Diseases of the respiratory system complicating pregnancy, unspecified trimester +C2909690|T046|AB|O99.52|ICD10CM|Diseases of the respiratory system complicating childbirth|Diseases of the respiratory system complicating childbirth +C2909690|T046|PT|O99.52|ICD10CM|Diseases of the respiratory system complicating childbirth|Diseases of the respiratory system complicating childbirth +C2909691|T046|AB|O99.53|ICD10CM|Diseases of the resp sys complicating the puerperium|Diseases of the resp sys complicating the puerperium +C2909691|T046|PT|O99.53|ICD10CM|Diseases of the respiratory system complicating the puerperium|Diseases of the respiratory system complicating the puerperium +C2909692|T047|ET|O99.6|ICD10CM|Conditions in K00-K93|Conditions in K00-K93 +C0451802|T047|AB|O99.6|ICD10CM|Diseases of the digestive system compl preg/chldbrth|Diseases of the digestive system compl preg/chldbrth +C0451802|T047|HT|O99.6|ICD10CM|Diseases of the digestive system complicating pregnancy, childbirth and the puerperium|Diseases of the digestive system complicating pregnancy, childbirth and the puerperium +C0451802|T047|PT|O99.6|ICD10|Diseases of the digestive system complicating pregnancy, childbirth and the puerperium|Diseases of the digestive system complicating pregnancy, childbirth and the puerperium +C2909693|T046|AB|O99.61|ICD10CM|Diseases of the digestive system complicating pregnancy|Diseases of the digestive system complicating pregnancy +C2909693|T046|HT|O99.61|ICD10CM|Diseases of the digestive system complicating pregnancy|Diseases of the digestive system complicating pregnancy +C2909694|T046|AB|O99.611|ICD10CM|Diseases of the dgstv sys comp pregnancy, first trimester|Diseases of the dgstv sys comp pregnancy, first trimester +C2909694|T046|PT|O99.611|ICD10CM|Diseases of the digestive system complicating pregnancy, first trimester|Diseases of the digestive system complicating pregnancy, first trimester +C2909695|T046|AB|O99.612|ICD10CM|Diseases of the dgstv sys comp pregnancy, second trimester|Diseases of the dgstv sys comp pregnancy, second trimester +C2909695|T046|PT|O99.612|ICD10CM|Diseases of the digestive system complicating pregnancy, second trimester|Diseases of the digestive system complicating pregnancy, second trimester +C2909696|T046|AB|O99.613|ICD10CM|Diseases of the dgstv sys comp pregnancy, third trimester|Diseases of the dgstv sys comp pregnancy, third trimester +C2909696|T046|PT|O99.613|ICD10CM|Diseases of the digestive system complicating pregnancy, third trimester|Diseases of the digestive system complicating pregnancy, third trimester +C2909697|T046|AB|O99.619|ICD10CM|Diseases of the dgstv sys comp pregnancy, unsp trimester|Diseases of the dgstv sys comp pregnancy, unsp trimester +C2909697|T046|PT|O99.619|ICD10CM|Diseases of the digestive system complicating pregnancy, unspecified trimester|Diseases of the digestive system complicating pregnancy, unspecified trimester +C2909698|T046|AB|O99.62|ICD10CM|Diseases of the digestive system complicating childbirth|Diseases of the digestive system complicating childbirth +C2909698|T046|PT|O99.62|ICD10CM|Diseases of the digestive system complicating childbirth|Diseases of the digestive system complicating childbirth +C2909699|T046|AB|O99.63|ICD10CM|Diseases of the digestive system complicating the puerperium|Diseases of the digestive system complicating the puerperium +C2909699|T046|PT|O99.63|ICD10CM|Diseases of the digestive system complicating the puerperium|Diseases of the digestive system complicating the puerperium +C2909700|T047|ET|O99.7|ICD10CM|Conditions in L00-L99|Conditions in L00-L99 +C0451803|T047|PT|O99.7|ICD10|Diseases of the skin and subcutaneous tissue complicating pregnancy, childbirth and the puerperium|Diseases of the skin and subcutaneous tissue complicating pregnancy, childbirth and the puerperium +C0451803|T047|HT|O99.7|ICD10CM|Diseases of the skin and subcutaneous tissue complicating pregnancy, childbirth and the puerperium|Diseases of the skin and subcutaneous tissue complicating pregnancy, childbirth and the puerperium +C0451803|T047|AB|O99.7|ICD10CM|Diseases of the skin, subcu compl preg/chldbrth|Diseases of the skin, subcu compl preg/chldbrth +C2909701|T046|HT|O99.71|ICD10CM|Diseases of the skin and subcutaneous tissue complicating pregnancy|Diseases of the skin and subcutaneous tissue complicating pregnancy +C2909701|T046|AB|O99.71|ICD10CM|Diseases of the skin, subcu complicating pregnancy|Diseases of the skin, subcu complicating pregnancy +C2909702|T046|PT|O99.711|ICD10CM|Diseases of the skin and subcutaneous tissue complicating pregnancy, first trimester|Diseases of the skin and subcutaneous tissue complicating pregnancy, first trimester +C2909702|T046|AB|O99.711|ICD10CM|Diseases of the skin, subcu comp pregnancy, first trimester|Diseases of the skin, subcu comp pregnancy, first trimester +C2909703|T046|PT|O99.712|ICD10CM|Diseases of the skin and subcutaneous tissue complicating pregnancy, second trimester|Diseases of the skin and subcutaneous tissue complicating pregnancy, second trimester +C2909703|T046|AB|O99.712|ICD10CM|Diseases of the skin, subcu comp pregnancy, second trimester|Diseases of the skin, subcu comp pregnancy, second trimester +C2909704|T046|PT|O99.713|ICD10CM|Diseases of the skin and subcutaneous tissue complicating pregnancy, third trimester|Diseases of the skin and subcutaneous tissue complicating pregnancy, third trimester +C2909704|T046|AB|O99.713|ICD10CM|Diseases of the skin, subcu comp pregnancy, third trimester|Diseases of the skin, subcu comp pregnancy, third trimester +C2909705|T046|PT|O99.719|ICD10CM|Diseases of the skin and subcutaneous tissue complicating pregnancy, unspecified trimester|Diseases of the skin and subcutaneous tissue complicating pregnancy, unspecified trimester +C2909705|T046|AB|O99.719|ICD10CM|Diseases of the skin, subcu comp pregnancy, unsp trimester|Diseases of the skin, subcu comp pregnancy, unsp trimester +C2909706|T046|PT|O99.72|ICD10CM|Diseases of the skin and subcutaneous tissue complicating childbirth|Diseases of the skin and subcutaneous tissue complicating childbirth +C2909706|T046|AB|O99.72|ICD10CM|Diseases of the skin, subcu complicating childbirth|Diseases of the skin, subcu complicating childbirth +C2909707|T046|PT|O99.73|ICD10CM|Diseases of the skin and subcutaneous tissue complicating the puerperium|Diseases of the skin and subcutaneous tissue complicating the puerperium +C2909707|T046|AB|O99.73|ICD10CM|Diseases of the skin, subcu complicating the puerperium|Diseases of the skin, subcu complicating the puerperium +C2909708|T047|ET|O99.8|ICD10CM|Conditions in D00-D48, H00-H95, M00-N99, and Q00-Q99|Conditions in D00-D48, H00-H95, M00-N99, and Q00-Q99 +C0495317|T046|AB|O99.8|ICD10CM|Oth diseases and conditions compl preg/chldbrth|Oth diseases and conditions compl preg/chldbrth +C0495317|T046|HT|O99.8|ICD10CM|Other specified diseases and conditions complicating pregnancy, childbirth and the puerperium|Other specified diseases and conditions complicating pregnancy, childbirth and the puerperium +C0495317|T046|PT|O99.8|ICD10|Other specified diseases and conditions complicating pregnancy, childbirth and the puerperium|Other specified diseases and conditions complicating pregnancy, childbirth and the puerperium +C2909709|T046|AB|O99.81|ICD10CM|Abnormal glucose compl preg/chldbrth|Abnormal glucose compl preg/chldbrth +C2909709|T046|HT|O99.81|ICD10CM|Abnormal glucose complicating pregnancy, childbirth and the puerperium|Abnormal glucose complicating pregnancy, childbirth and the puerperium +C2909710|T046|PT|O99.810|ICD10CM|Abnormal glucose complicating pregnancy|Abnormal glucose complicating pregnancy +C2909710|T046|AB|O99.810|ICD10CM|Abnormal glucose complicating pregnancy|Abnormal glucose complicating pregnancy +C2909711|T046|PT|O99.814|ICD10CM|Abnormal glucose complicating childbirth|Abnormal glucose complicating childbirth +C2909711|T046|AB|O99.814|ICD10CM|Abnormal glucose complicating childbirth|Abnormal glucose complicating childbirth +C2909712|T046|AB|O99.815|ICD10CM|Abnormal glucose complicating the puerperium|Abnormal glucose complicating the puerperium +C2909712|T046|PT|O99.815|ICD10CM|Abnormal glucose complicating the puerperium|Abnormal glucose complicating the puerperium +C2909713|T046|AB|O99.82|ICD10CM|Streptococcus B carrier state compl preg/chldbrth|Streptococcus B carrier state compl preg/chldbrth +C2909713|T046|HT|O99.82|ICD10CM|Streptococcus B carrier state complicating pregnancy, childbirth and the puerperium|Streptococcus B carrier state complicating pregnancy, childbirth and the puerperium +C2909714|T046|PT|O99.820|ICD10CM|Streptococcus B carrier state complicating pregnancy|Streptococcus B carrier state complicating pregnancy +C2909714|T046|AB|O99.820|ICD10CM|Streptococcus B carrier state complicating pregnancy|Streptococcus B carrier state complicating pregnancy +C2909715|T046|PT|O99.824|ICD10CM|Streptococcus B carrier state complicating childbirth|Streptococcus B carrier state complicating childbirth +C2909715|T046|AB|O99.824|ICD10CM|Streptococcus B carrier state complicating childbirth|Streptococcus B carrier state complicating childbirth +C2909716|T046|AB|O99.825|ICD10CM|Streptococcus B carrier state complicating the puerperium|Streptococcus B carrier state complicating the puerperium +C2909716|T046|PT|O99.825|ICD10CM|Streptococcus B carrier state complicating the puerperium|Streptococcus B carrier state complicating the puerperium +C2909717|T046|AB|O99.83|ICD10CM|Oth infection carrier state compl preg/chldbrth|Oth infection carrier state compl preg/chldbrth +C2909717|T046|HT|O99.83|ICD10CM|Other infection carrier state complicating pregnancy, childbirth and the puerperium|Other infection carrier state complicating pregnancy, childbirth and the puerperium +C2909718|T046|AB|O99.830|ICD10CM|Other infection carrier state complicating pregnancy|Other infection carrier state complicating pregnancy +C2909718|T046|PT|O99.830|ICD10CM|Other infection carrier state complicating pregnancy|Other infection carrier state complicating pregnancy +C2909719|T046|AB|O99.834|ICD10CM|Other infection carrier state complicating childbirth|Other infection carrier state complicating childbirth +C2909719|T046|PT|O99.834|ICD10CM|Other infection carrier state complicating childbirth|Other infection carrier state complicating childbirth +C2909720|T046|AB|O99.835|ICD10CM|Other infection carrier state complicating the puerperium|Other infection carrier state complicating the puerperium +C2909720|T046|PT|O99.835|ICD10CM|Other infection carrier state complicating the puerperium|Other infection carrier state complicating the puerperium +C2909724|T046|AB|O99.84|ICD10CM|Bariatric surgery status compl preg/chldbrth|Bariatric surgery status compl preg/chldbrth +C2909724|T046|HT|O99.84|ICD10CM|Bariatric surgery status complicating pregnancy, childbirth and the puerperium|Bariatric surgery status complicating pregnancy, childbirth and the puerperium +C2909721|T046|ET|O99.84|ICD10CM|Gastric banding status complicating pregnancy, childbirth and the puerperium|Gastric banding status complicating pregnancy, childbirth and the puerperium +C2909722|T046|ET|O99.84|ICD10CM|Gastric bypass status for obesity complicating pregnancy, childbirth and the puerperium|Gastric bypass status for obesity complicating pregnancy, childbirth and the puerperium +C2909723|T046|ET|O99.84|ICD10CM|Obesity surgery status complicating pregnancy, childbirth and the puerperium|Obesity surgery status complicating pregnancy, childbirth and the puerperium +C2909725|T046|AB|O99.840|ICD10CM|Bariatric surgery status comp pregnancy, unsp trimester|Bariatric surgery status comp pregnancy, unsp trimester +C2909725|T046|PT|O99.840|ICD10CM|Bariatric surgery status complicating pregnancy, unspecified trimester|Bariatric surgery status complicating pregnancy, unspecified trimester +C2909726|T046|AB|O99.841|ICD10CM|Bariatric surgery status comp pregnancy, first trimester|Bariatric surgery status comp pregnancy, first trimester +C2909726|T046|PT|O99.841|ICD10CM|Bariatric surgery status complicating pregnancy, first trimester|Bariatric surgery status complicating pregnancy, first trimester +C2909727|T046|AB|O99.842|ICD10CM|Bariatric surgery status comp pregnancy, second trimester|Bariatric surgery status comp pregnancy, second trimester +C2909727|T046|PT|O99.842|ICD10CM|Bariatric surgery status complicating pregnancy, second trimester|Bariatric surgery status complicating pregnancy, second trimester +C2909728|T046|AB|O99.843|ICD10CM|Bariatric surgery status comp pregnancy, third trimester|Bariatric surgery status comp pregnancy, third trimester +C2909728|T046|PT|O99.843|ICD10CM|Bariatric surgery status complicating pregnancy, third trimester|Bariatric surgery status complicating pregnancy, third trimester +C2909729|T046|PT|O99.844|ICD10CM|Bariatric surgery status complicating childbirth|Bariatric surgery status complicating childbirth +C2909729|T046|AB|O99.844|ICD10CM|Bariatric surgery status complicating childbirth|Bariatric surgery status complicating childbirth +C2909730|T046|AB|O99.845|ICD10CM|Bariatric surgery status complicating the puerperium|Bariatric surgery status complicating the puerperium +C2909730|T046|PT|O99.845|ICD10CM|Bariatric surgery status complicating the puerperium|Bariatric surgery status complicating the puerperium +C0495317|T046|AB|O99.89|ICD10CM|Oth diseases and conditions compl preg/chldbrth|Oth diseases and conditions compl preg/chldbrth +C0495317|T046|PT|O99.89|ICD10CM|Other specified diseases and conditions complicating pregnancy, childbirth and the puerperium|Other specified diseases and conditions complicating pregnancy, childbirth and the puerperium +C2909731|T046|AB|O9A|ICD10CM|Maternl malig or injury compl preg/childbrth|Maternl malig or injury compl preg/childbrth +C2909733|T046|AB|O9A.1|ICD10CM|Malignant neoplasm compl preg/chldbrth|Malignant neoplasm compl preg/chldbrth +C2909733|T046|HT|O9A.1|ICD10CM|Malignant neoplasm complicating pregnancy, childbirth and the puerperium|Malignant neoplasm complicating pregnancy, childbirth and the puerperium +C2909734|T046|HT|O9A.11|ICD10CM|Malignant neoplasm complicating pregnancy|Malignant neoplasm complicating pregnancy +C2909734|T046|AB|O9A.11|ICD10CM|Malignant neoplasm complicating pregnancy|Malignant neoplasm complicating pregnancy +C2909735|T046|AB|O9A.111|ICD10CM|Malignant neoplasm complicating pregnancy, first trimester|Malignant neoplasm complicating pregnancy, first trimester +C2909735|T046|PT|O9A.111|ICD10CM|Malignant neoplasm complicating pregnancy, first trimester|Malignant neoplasm complicating pregnancy, first trimester +C2909736|T046|AB|O9A.112|ICD10CM|Malignant neoplasm complicating pregnancy, second trimester|Malignant neoplasm complicating pregnancy, second trimester +C2909736|T046|PT|O9A.112|ICD10CM|Malignant neoplasm complicating pregnancy, second trimester|Malignant neoplasm complicating pregnancy, second trimester +C2909737|T046|AB|O9A.113|ICD10CM|Malignant neoplasm complicating pregnancy, third trimester|Malignant neoplasm complicating pregnancy, third trimester +C2909737|T046|PT|O9A.113|ICD10CM|Malignant neoplasm complicating pregnancy, third trimester|Malignant neoplasm complicating pregnancy, third trimester +C2909738|T046|AB|O9A.119|ICD10CM|Malignant neoplasm complicating pregnancy, unsp trimester|Malignant neoplasm complicating pregnancy, unsp trimester +C2909738|T046|PT|O9A.119|ICD10CM|Malignant neoplasm complicating pregnancy, unspecified trimester|Malignant neoplasm complicating pregnancy, unspecified trimester +C2909739|T046|AB|O9A.12|ICD10CM|Malignant neoplasm complicating childbirth|Malignant neoplasm complicating childbirth +C2909739|T046|PT|O9A.12|ICD10CM|Malignant neoplasm complicating childbirth|Malignant neoplasm complicating childbirth +C2909740|T046|AB|O9A.13|ICD10CM|Malignant neoplasm complicating the puerperium|Malignant neoplasm complicating the puerperium +C2909740|T046|PT|O9A.13|ICD10CM|Malignant neoplasm complicating the puerperium|Malignant neoplasm complicating the puerperium +C2909742|T046|AB|O9A.2|ICD10CM|Inj/poisn/oth conseq of external causes compl preg/chldbrth|Inj/poisn/oth conseq of external causes compl preg/chldbrth +C2909746|T046|AB|O9A.21|ICD10CM|Inj/poisn/oth conseq of external causes comp pregnancy|Inj/poisn/oth conseq of external causes comp pregnancy +C2909746|T046|HT|O9A.21|ICD10CM|Injury, poisoning and certain other consequences of external causes complicating pregnancy|Injury, poisoning and certain other consequences of external causes complicating pregnancy +C2909743|T046|AB|O9A.211|ICD10CM|Inj/poisn/oth conseq of external causes comp preg, first tri|Inj/poisn/oth conseq of external causes comp preg, first tri +C2909744|T046|AB|O9A.212|ICD10CM|Inj/poisn/oth conseq of extrn causes comp preg, second tri|Inj/poisn/oth conseq of extrn causes comp preg, second tri +C2909745|T046|AB|O9A.213|ICD10CM|Inj/poisn/oth conseq of external causes comp preg, third tri|Inj/poisn/oth conseq of external causes comp preg, third tri +C2909746|T046|AB|O9A.219|ICD10CM|Inj/poisn/oth conseq of external causes comp preg, unsp tri|Inj/poisn/oth conseq of external causes comp preg, unsp tri +C2909747|T046|AB|O9A.22|ICD10CM|Inj/poisn/oth conseq of external causes comp childbirth|Inj/poisn/oth conseq of external causes comp childbirth +C2909747|T046|PT|O9A.22|ICD10CM|Injury, poisoning and certain other consequences of external causes complicating childbirth|Injury, poisoning and certain other consequences of external causes complicating childbirth +C2909748|T046|AB|O9A.23|ICD10CM|Inj/poisn/oth conseq of external causes comp the puerperium|Inj/poisn/oth conseq of external causes comp the puerperium +C2909748|T046|PT|O9A.23|ICD10CM|Injury, poisoning and certain other consequences of external causes complicating the puerperium|Injury, poisoning and certain other consequences of external causes complicating the puerperium +C2909749|T046|ET|O9A.3|ICD10CM|Conditions in T74.11 or T76.11|Conditions in T74.11 or T76.11 +C2909750|T046|AB|O9A.3|ICD10CM|Physical abuse compl preg/chldbrth|Physical abuse compl preg/chldbrth +C2909750|T046|HT|O9A.3|ICD10CM|Physical abuse complicating pregnancy, childbirth and the puerperium|Physical abuse complicating pregnancy, childbirth and the puerperium +C2909751|T046|HT|O9A.31|ICD10CM|Physical abuse complicating pregnancy|Physical abuse complicating pregnancy +C2909751|T046|AB|O9A.31|ICD10CM|Physical abuse complicating pregnancy|Physical abuse complicating pregnancy +C2909752|T046|AB|O9A.311|ICD10CM|Physical abuse complicating pregnancy, first trimester|Physical abuse complicating pregnancy, first trimester +C2909752|T046|PT|O9A.311|ICD10CM|Physical abuse complicating pregnancy, first trimester|Physical abuse complicating pregnancy, first trimester +C2909753|T046|AB|O9A.312|ICD10CM|Physical abuse complicating pregnancy, second trimester|Physical abuse complicating pregnancy, second trimester +C2909753|T046|PT|O9A.312|ICD10CM|Physical abuse complicating pregnancy, second trimester|Physical abuse complicating pregnancy, second trimester +C2909754|T046|AB|O9A.313|ICD10CM|Physical abuse complicating pregnancy, third trimester|Physical abuse complicating pregnancy, third trimester +C2909754|T046|PT|O9A.313|ICD10CM|Physical abuse complicating pregnancy, third trimester|Physical abuse complicating pregnancy, third trimester +C2909755|T046|AB|O9A.319|ICD10CM|Physical abuse complicating pregnancy, unspecified trimester|Physical abuse complicating pregnancy, unspecified trimester +C2909755|T046|PT|O9A.319|ICD10CM|Physical abuse complicating pregnancy, unspecified trimester|Physical abuse complicating pregnancy, unspecified trimester +C2909756|T046|PT|O9A.32|ICD10CM|Physical abuse complicating childbirth|Physical abuse complicating childbirth +C2909756|T046|AB|O9A.32|ICD10CM|Physical abuse complicating childbirth|Physical abuse complicating childbirth +C2909757|T046|AB|O9A.33|ICD10CM|Physical abuse complicating the puerperium|Physical abuse complicating the puerperium +C2909757|T046|PT|O9A.33|ICD10CM|Physical abuse complicating the puerperium|Physical abuse complicating the puerperium +C2909758|T046|ET|O9A.4|ICD10CM|Conditions in T74.21 or T76.21|Conditions in T74.21 or T76.21 +C2909759|T046|AB|O9A.4|ICD10CM|Sexual abuse compl preg/chldbrth|Sexual abuse compl preg/chldbrth +C2909759|T046|HT|O9A.4|ICD10CM|Sexual abuse complicating pregnancy, childbirth and the puerperium|Sexual abuse complicating pregnancy, childbirth and the puerperium +C2909763|T046|HT|O9A.41|ICD10CM|Sexual abuse complicating pregnancy|Sexual abuse complicating pregnancy +C2909763|T046|AB|O9A.41|ICD10CM|Sexual abuse complicating pregnancy|Sexual abuse complicating pregnancy +C2909760|T046|AB|O9A.411|ICD10CM|Sexual abuse complicating pregnancy, first trimester|Sexual abuse complicating pregnancy, first trimester +C2909760|T046|PT|O9A.411|ICD10CM|Sexual abuse complicating pregnancy, first trimester|Sexual abuse complicating pregnancy, first trimester +C2909761|T046|AB|O9A.412|ICD10CM|Sexual abuse complicating pregnancy, second trimester|Sexual abuse complicating pregnancy, second trimester +C2909761|T046|PT|O9A.412|ICD10CM|Sexual abuse complicating pregnancy, second trimester|Sexual abuse complicating pregnancy, second trimester +C2909762|T046|AB|O9A.413|ICD10CM|Sexual abuse complicating pregnancy, third trimester|Sexual abuse complicating pregnancy, third trimester +C2909762|T046|PT|O9A.413|ICD10CM|Sexual abuse complicating pregnancy, third trimester|Sexual abuse complicating pregnancy, third trimester +C2909763|T046|AB|O9A.419|ICD10CM|Sexual abuse complicating pregnancy, unspecified trimester|Sexual abuse complicating pregnancy, unspecified trimester +C2909763|T046|PT|O9A.419|ICD10CM|Sexual abuse complicating pregnancy, unspecified trimester|Sexual abuse complicating pregnancy, unspecified trimester +C2909764|T046|PT|O9A.42|ICD10CM|Sexual abuse complicating childbirth|Sexual abuse complicating childbirth +C2909764|T046|AB|O9A.42|ICD10CM|Sexual abuse complicating childbirth|Sexual abuse complicating childbirth +C2909765|T046|AB|O9A.43|ICD10CM|Sexual abuse complicating the puerperium|Sexual abuse complicating the puerperium +C2909765|T046|PT|O9A.43|ICD10CM|Sexual abuse complicating the puerperium|Sexual abuse complicating the puerperium +C2909766|T046|ET|O9A.5|ICD10CM|Conditions in T74.31 or T76.31|Conditions in T74.31 or T76.31 +C2909767|T046|AB|O9A.5|ICD10CM|Psychological abuse compl preg/chldbrth|Psychological abuse compl preg/chldbrth +C2909767|T046|HT|O9A.5|ICD10CM|Psychological abuse complicating pregnancy, childbirth and the puerperium|Psychological abuse complicating pregnancy, childbirth and the puerperium +C2909771|T046|HT|O9A.51|ICD10CM|Psychological abuse complicating pregnancy|Psychological abuse complicating pregnancy +C2909771|T046|AB|O9A.51|ICD10CM|Psychological abuse complicating pregnancy|Psychological abuse complicating pregnancy +C2909768|T046|AB|O9A.511|ICD10CM|Psychological abuse complicating pregnancy, first trimester|Psychological abuse complicating pregnancy, first trimester +C2909768|T046|PT|O9A.511|ICD10CM|Psychological abuse complicating pregnancy, first trimester|Psychological abuse complicating pregnancy, first trimester +C2909769|T046|AB|O9A.512|ICD10CM|Psychological abuse complicating pregnancy, second trimester|Psychological abuse complicating pregnancy, second trimester +C2909769|T046|PT|O9A.512|ICD10CM|Psychological abuse complicating pregnancy, second trimester|Psychological abuse complicating pregnancy, second trimester +C2909770|T046|AB|O9A.513|ICD10CM|Psychological abuse complicating pregnancy, third trimester|Psychological abuse complicating pregnancy, third trimester +C2909770|T046|PT|O9A.513|ICD10CM|Psychological abuse complicating pregnancy, third trimester|Psychological abuse complicating pregnancy, third trimester +C2909771|T046|AB|O9A.519|ICD10CM|Psychological abuse complicating pregnancy, unsp trimester|Psychological abuse complicating pregnancy, unsp trimester +C2909771|T046|PT|O9A.519|ICD10CM|Psychological abuse complicating pregnancy, unspecified trimester|Psychological abuse complicating pregnancy, unspecified trimester +C2909772|T046|PT|O9A.52|ICD10CM|Psychological abuse complicating childbirth|Psychological abuse complicating childbirth +C2909772|T046|AB|O9A.52|ICD10CM|Psychological abuse complicating childbirth|Psychological abuse complicating childbirth +C2909773|T046|AB|O9A.53|ICD10CM|Psychological abuse complicating the puerperium|Psychological abuse complicating the puerperium +C2909773|T046|PT|O9A.53|ICD10CM|Psychological abuse complicating the puerperium|Psychological abuse complicating the puerperium +C0495318|T047|HT|P00|ICD10|Fetus and newborn affected by maternal conditions that may be unrelated to present pregnancy|Fetus and newborn affected by maternal conditions that may be unrelated to present pregnancy +C4269057|T033|AB|P00|ICD10CM|NB aff by matern cond that may be unrelated to present preg|NB aff by matern cond that may be unrelated to present preg +C4269057|T033|HT|P00|ICD10CM|Newborn affected by maternal conditions that may be unrelated to present pregnancy|Newborn affected by maternal conditions that may be unrelated to present pregnancy +C0477881|T033|HT|P00-P04.9|ICD10AE|Fetus and newborn affected by maternal factors and by complications of pregnancy, labor and delivery|Fetus and newborn affected by maternal factors and by complications of pregnancy, labor and delivery +C0178307|T047|HT|P00-P96|ICD10CM|Certain conditions originating in the perinatal period (P00-P96)|Certain conditions originating in the perinatal period (P00-P96) +C0178307|T047|HT|P00-P96.9|ICD10|Certain conditions originating in the perinatal period|Certain conditions originating in the perinatal period +C0869102|T047|PT|P00.0|ICD10|Fetus and newborn affected by maternal hypertensive disorders|Fetus and newborn affected by maternal hypertensive disorders +C4269058|T033|ET|P00.0|ICD10CM|Newborn affected by maternal conditions classifiable to O10-O11, O13-O16|Newborn affected by maternal conditions classifiable to O10-O11, O13-O16 +C2909778|T033|AB|P00.0|ICD10CM|Newborn affected by maternal hypertensive disorders|Newborn affected by maternal hypertensive disorders +C2909778|T033|PT|P00.0|ICD10CM|Newborn affected by maternal hypertensive disorders|Newborn affected by maternal hypertensive disorders +C0869103|T047|PT|P00.1|ICD10|Fetus and newborn affected by maternal renal and urinary tract diseases|Fetus and newborn affected by maternal renal and urinary tract diseases +C2909780|T033|AB|P00.1|ICD10CM|Newborn aff by maternal renal and urinary tract diseases|Newborn aff by maternal renal and urinary tract diseases +C4269059|T033|ET|P00.1|ICD10CM|Newborn affected by maternal conditions classifiable to N00-N39|Newborn affected by maternal conditions classifiable to N00-N39 +C2909780|T033|PT|P00.1|ICD10CM|Newborn affected by maternal renal and urinary tract diseases|Newborn affected by maternal renal and urinary tract diseases +C0495321|T047|PT|P00.2|ICD10|Fetus and newborn affected by maternal infectious and parasitic diseases|Fetus and newborn affected by maternal infectious and parasitic diseases +C2909782|T033|AB|P00.2|ICD10CM|Newborn affected by maternal infec/parastc diseases|Newborn affected by maternal infec/parastc diseases +C2909782|T033|PT|P00.2|ICD10CM|Newborn affected by maternal infectious and parasitic diseases|Newborn affected by maternal infectious and parasitic diseases +C4269060|T033|ET|P00.2|ICD10CM|Newborn affected by maternal infectious disease classifiable to A00-B99, J09 and J10|Newborn affected by maternal infectious disease classifiable to A00-B99, J09 and J10 +C0477882|T047|PT|P00.3|ICD10|Fetus and newborn affected by other maternal circulatory and respiratory diseases|Fetus and newborn affected by other maternal circulatory and respiratory diseases +C4269061|T033|AB|P00.3|ICD10CM|Newborn affected by other maternal circ and resp diseases|Newborn affected by other maternal circ and resp diseases +C4269061|T033|PT|P00.3|ICD10CM|Newborn affected by other maternal circulatory and respiratory diseases|Newborn affected by other maternal circulatory and respiratory diseases +C0869104|T047|PT|P00.4|ICD10|Fetus and newborn affected by maternal nutritional disorders|Fetus and newborn affected by maternal nutritional disorders +C1403607|T033|ET|P00.4|ICD10CM|Maternal malnutrition NOS|Maternal malnutrition NOS +C4269063|T033|ET|P00.4|ICD10CM|Newborn affected by maternal disorders classifiable to E40-E64|Newborn affected by maternal disorders classifiable to E40-E64 +C2909786|T033|AB|P00.4|ICD10CM|Newborn affected by maternal nutritional disorders|Newborn affected by maternal nutritional disorders +C2909786|T033|PT|P00.4|ICD10CM|Newborn affected by maternal nutritional disorders|Newborn affected by maternal nutritional disorders +C0869105|T047|PT|P00.5|ICD10|Fetus and newborn affected by maternal injury|Fetus and newborn affected by maternal injury +C4269064|T033|ET|P00.5|ICD10CM|Newborn affected by maternal conditions classifiable to O9A.2-|Newborn affected by maternal conditions classifiable to O9A.2- +C3468926|T033|AB|P00.5|ICD10CM|Newborn affected by maternal injury|Newborn affected by maternal injury +C3468926|T033|PT|P00.5|ICD10CM|Newborn affected by maternal injury|Newborn affected by maternal injury +C0158806|T047|PT|P00.6|ICD10|Fetus and newborn affected by surgical procedure on mother|Fetus and newborn affected by surgical procedure on mother +C2349657|T033|ET|P00.6|ICD10CM|Newborn affected by amniocentesis|Newborn affected by amniocentesis +C2909790|T033|AB|P00.6|ICD10CM|Newborn affected by surgical procedure on mother|Newborn affected by surgical procedure on mother +C2909790|T033|PT|P00.6|ICD10CM|Newborn affected by surgical procedure on mother|Newborn affected by surgical procedure on mother +C0869076|T037|PT|P00.7|ICD10|Fetus and newborn affected by other medical procedures on mother, not elsewhere classified|Fetus and newborn affected by other medical procedures on mother, not elsewhere classified +C4269065|T033|AB|P00.7|ICD10CM|Newborn affected by other medical procedures on mother, NEC|Newborn affected by other medical procedures on mother, NEC +C4269065|T033|PT|P00.7|ICD10CM|Newborn affected by other medical procedures on mother, not elsewhere classified|Newborn affected by other medical procedures on mother, not elsewhere classified +C4269066|T033|ET|P00.7|ICD10CM|Newborn affected by radiation to mother|Newborn affected by radiation to mother +C0477884|T033|PT|P00.8|ICD10|Fetus and newborn affected by other maternal conditions|Fetus and newborn affected by other maternal conditions +C4269067|T033|HT|P00.8|ICD10CM|Newborn affected by other maternal conditions|Newborn affected by other maternal conditions +C4269067|T033|AB|P00.8|ICD10CM|Newborn affected by other maternal conditions|Newborn affected by other maternal conditions +C2909794|T033|AB|P00.81|ICD10CM|Newborn affected by periodontal disease in mother|Newborn affected by periodontal disease in mother +C2909794|T033|PT|P00.81|ICD10CM|Newborn affected by periodontal disease in mother|Newborn affected by periodontal disease in mother +C4269068|T033|ET|P00.89|ICD10CM|Newborn affected by conditions classifiable to T80-T88|Newborn affected by conditions classifiable to T80-T88 +C4269069|T033|ET|P00.89|ICD10CM|Newborn affected by maternal genital tract or other localized infections|Newborn affected by maternal genital tract or other localized infections +C4269070|T033|ET|P00.89|ICD10CM|Newborn affected by maternal systemic lupus erythematosus|Newborn affected by maternal systemic lupus erythematosus +C4269067|T033|AB|P00.89|ICD10CM|Newborn affected by other maternal conditions|Newborn affected by other maternal conditions +C4269067|T033|PT|P00.89|ICD10CM|Newborn affected by other maternal conditions|Newborn affected by other maternal conditions +C0411175|T047|PT|P00.9|ICD10|Fetus and newborn affected by unspecified maternal condition|Fetus and newborn affected by unspecified maternal condition +C4269071|T033|AB|P00.9|ICD10CM|Newborn affected by unspecified maternal condition|Newborn affected by unspecified maternal condition +C4269071|T033|PT|P00.9|ICD10CM|Newborn affected by unspecified maternal condition|Newborn affected by unspecified maternal condition +C0158816|T046|HT|P01|ICD10|Fetus and newborn affected by maternal complications of pregnancy|Fetus and newborn affected by maternal complications of pregnancy +C4269072|T033|AB|P01|ICD10CM|Newborn affected by maternal complications of pregnancy|Newborn affected by maternal complications of pregnancy +C4269072|T033|HT|P01|ICD10CM|Newborn affected by maternal complications of pregnancy|Newborn affected by maternal complications of pregnancy +C0158817|T046|PT|P01.0|ICD10|Fetus and newborn affected by incompetent cervix|Fetus and newborn affected by incompetent cervix +C3648804|T033|AB|P01.0|ICD10CM|Newborn affected by incompetent cervix|Newborn affected by incompetent cervix +C3648804|T033|PT|P01.0|ICD10CM|Newborn affected by incompetent cervix|Newborn affected by incompetent cervix +C0411160|T046|PT|P01.1|ICD10|Fetus and newborn affected by premature rupture of membranes|Fetus and newborn affected by premature rupture of membranes +C3646599|T033|AB|P01.1|ICD10CM|Newborn affected by premature rupture of membranes|Newborn affected by premature rupture of membranes +C3646599|T033|PT|P01.1|ICD10CM|Newborn affected by premature rupture of membranes|Newborn affected by premature rupture of membranes +C0158819|T046|PT|P01.2|ICD10|Fetus and newborn affected by oligohydramnios|Fetus and newborn affected by oligohydramnios +C3647229|T033|AB|P01.2|ICD10CM|Newborn affected by oligohydramnios|Newborn affected by oligohydramnios +C3647229|T033|PT|P01.2|ICD10CM|Newborn affected by oligohydramnios|Newborn affected by oligohydramnios +C0158820|T046|PT|P01.3|ICD10|Fetus and newborn affected by polyhydramnios|Fetus and newborn affected by polyhydramnios +C4269073|T033|ET|P01.3|ICD10CM|Newborn affected by hydramnios|Newborn affected by hydramnios +C3646764|T033|AB|P01.3|ICD10CM|Newborn affected by polyhydramnios|Newborn affected by polyhydramnios +C3646764|T033|PT|P01.3|ICD10CM|Newborn affected by polyhydramnios|Newborn affected by polyhydramnios +C0411164|T046|PT|P01.4|ICD10|Fetus and newborn affected by ectopic pregnancy|Fetus and newborn affected by ectopic pregnancy +C4269074|T033|ET|P01.4|ICD10CM|Newborn affected by abdominal pregnancy|Newborn affected by abdominal pregnancy +C3649282|T033|AB|P01.4|ICD10CM|Newborn affected by ectopic pregnancy|Newborn affected by ectopic pregnancy +C3649282|T033|PT|P01.4|ICD10CM|Newborn affected by ectopic pregnancy|Newborn affected by ectopic pregnancy +C0411169|T046|PT|P01.5|ICD10|Fetus and newborn affected by multiple pregnancy|Fetus and newborn affected by multiple pregnancy +C3647474|T033|AB|P01.5|ICD10CM|Newborn affected by multiple pregnancy|Newborn affected by multiple pregnancy +C3647474|T033|PT|P01.5|ICD10CM|Newborn affected by multiple pregnancy|Newborn affected by multiple pregnancy +C4269075|T033|ET|P01.5|ICD10CM|Newborn affected by triplet (pregnancy)|Newborn affected by triplet (pregnancy) +C4269076|T033|ET|P01.5|ICD10CM|Newborn affected by twin (pregnancy)|Newborn affected by twin (pregnancy) +C0158823|T046|PT|P01.6|ICD10|Fetus and newborn affected by maternal death|Fetus and newborn affected by maternal death +C3647751|T033|AB|P01.6|ICD10CM|Newborn affected by maternal death|Newborn affected by maternal death +C3647751|T033|PT|P01.6|ICD10CM|Newborn affected by maternal death|Newborn affected by maternal death +C0473867|T046|PT|P01.7|ICD10AE|Fetus and newborn affected by malpresentation before labor|Fetus and newborn affected by malpresentation before labor +C0473867|T046|PT|P01.7|ICD10|Fetus and newborn affected by malpresentation before labour|Fetus and newborn affected by malpresentation before labour +C4269077|T033|ET|P01.7|ICD10CM|Newborn affected by breech presentation before labor|Newborn affected by breech presentation before labor +C4269078|T033|ET|P01.7|ICD10CM|Newborn affected by external version before labor|Newborn affected by external version before labor +C4269079|T033|ET|P01.7|ICD10CM|Newborn affected by face presentation before labor|Newborn affected by face presentation before labor +C3647791|T033|AB|P01.7|ICD10CM|Newborn affected by malpresentation before labor|Newborn affected by malpresentation before labor +C3647791|T033|PT|P01.7|ICD10CM|Newborn affected by malpresentation before labor|Newborn affected by malpresentation before labor +C4269080|T033|ET|P01.7|ICD10CM|Newborn affected by transverse lie before labor|Newborn affected by transverse lie before labor +C4269081|T033|ET|P01.7|ICD10CM|Newborn affected by unstable lie before labor|Newborn affected by unstable lie before labor +C0477885|T033|PT|P01.8|ICD10|Fetus and newborn affected by other maternal complications of pregnancy|Fetus and newborn affected by other maternal complications of pregnancy +C4269082|T033|AB|P01.8|ICD10CM|Newborn affected by other maternal comp of pregnancy|Newborn affected by other maternal comp of pregnancy +C4269082|T033|PT|P01.8|ICD10CM|Newborn affected by other maternal complications of pregnancy|Newborn affected by other maternal complications of pregnancy +C0158816|T046|PT|P01.9|ICD10|Fetus and newborn affected by maternal complication of pregnancy, unspecified|Fetus and newborn affected by maternal complication of pregnancy, unspecified +C4269083|T033|AB|P01.9|ICD10CM|Newborn affected by maternal comp of pregnancy, unspecified|Newborn affected by maternal comp of pregnancy, unspecified +C4269083|T033|PT|P01.9|ICD10CM|Newborn affected by maternal complication of pregnancy, unspecified|Newborn affected by maternal complication of pregnancy, unspecified +C0270025|T046|HT|P02|ICD10|Fetus and newborn affected by complications of placenta, cord and membranes|Fetus and newborn affected by complications of placenta, cord and membranes +C3649662|T033|AB|P02|ICD10CM|Newborn affected by comp of placenta, cord and membranes|Newborn affected by comp of placenta, cord and membranes +C3649662|T033|HT|P02|ICD10CM|Newborn affected by complications of placenta, cord and membranes|Newborn affected by complications of placenta, cord and membranes +C3662231|T033|PT|P02.0|ICD10|Fetus and newborn affected by placenta praevia|Fetus and newborn affected by placenta praevia +C3646931|T033|AB|P02.0|ICD10CM|Newborn affected by placenta previa|Newborn affected by placenta previa +C3646931|T033|PT|P02.0|ICD10CM|Newborn affected by placenta previa|Newborn affected by placenta previa +C0477886|T033|PT|P02.1|ICD10|Fetus and newborn affected by other forms of placental separation and haemorrhage|Fetus and newborn affected by other forms of placental separation and haemorrhage +C0477886|T033|PT|P02.1|ICD10AE|Fetus and newborn affected by other forms of placental separation and hemorrhage|Fetus and newborn affected by other forms of placental separation and hemorrhage +C4269084|T033|ET|P02.1|ICD10CM|Newborn affected by abruptio placenta|Newborn affected by abruptio placenta +C4269085|T033|ET|P02.1|ICD10CM|Newborn affected by accidental hemorrhage|Newborn affected by accidental hemorrhage +C4269086|T033|ET|P02.1|ICD10CM|Newborn affected by antepartum hemorrhage|Newborn affected by antepartum hemorrhage +C4269087|T033|ET|P02.1|ICD10CM|Newborn affected by damage to placenta from amniocentesis, cesarean delivery or surgical induction|Newborn affected by damage to placenta from amniocentesis, cesarean delivery or surgical induction +C4269088|T033|ET|P02.1|ICD10CM|Newborn affected by maternal blood loss|Newborn affected by maternal blood loss +C2909827|T033|AB|P02.1|ICD10CM|Newborn affected by oth placental separation and hemorrhage|Newborn affected by oth placental separation and hemorrhage +C2909827|T033|PT|P02.1|ICD10CM|Newborn affected by other forms of placental separation and hemorrhage|Newborn affected by other forms of placental separation and hemorrhage +C4269089|T033|ET|P02.1|ICD10CM|Newborn affected by premature separation of placenta|Newborn affected by premature separation of placenta +C4269090|T033|AB|P02.2|ICD10CM|NB aff by oth and unsp morpholog and functn abnlt of plcnta|NB aff by oth and unsp morpholog and functn abnlt of plcnta +C4269090|T033|HT|P02.2|ICD10CM|Newborn affected by other and unspecified morphological and functional abnormalities of placenta|Newborn affected by other and unspecified morphological and functional abnormalities of placenta +C2909829|T033|AB|P02.20|ICD10CM|Newborn aff by unsp morpholog and functn abnlt of placenta|Newborn aff by unsp morpholog and functn abnlt of placenta +C2909829|T033|PT|P02.20|ICD10CM|Newborn affected by unspecified morphological and functional abnormalities of placenta|Newborn affected by unspecified morphological and functional abnormalities of placenta +C4269091|T033|AB|P02.29|ICD10CM|Newborn aff by other morpholog and functn abnlt of placenta|Newborn aff by other morpholog and functn abnlt of placenta +C4269091|T033|PT|P02.29|ICD10CM|Newborn affected by other morphological and functional abnormalities of placenta|Newborn affected by other morphological and functional abnormalities of placenta +C3469140|T033|ET|P02.29|ICD10CM|Newborn affected by placental dysfunction|Newborn affected by placental dysfunction +C3469141|T033|ET|P02.29|ICD10CM|Newborn affected by placental infarction|Newborn affected by placental infarction +C3469142|T033|ET|P02.29|ICD10CM|Newborn affected by placental insufficiency|Newborn affected by placental insufficiency +C0158831|T046|PT|P02.3|ICD10|Fetus and newborn affected by placental transfusion syndromes|Fetus and newborn affected by placental transfusion syndromes +C3646927|T033|AB|P02.3|ICD10CM|Newborn affected by placental transfusion syndromes|Newborn affected by placental transfusion syndromes +C3646927|T033|PT|P02.3|ICD10CM|Newborn affected by placental transfusion syndromes|Newborn affected by placental transfusion syndromes +C0158832|T046|PT|P02.4|ICD10|Fetus and newborn affected by prolapsed cord|Fetus and newborn affected by prolapsed cord +C3646534|T033|AB|P02.4|ICD10CM|Newborn affected by prolapsed cord|Newborn affected by prolapsed cord +C3646534|T033|PT|P02.4|ICD10CM|Newborn affected by prolapsed cord|Newborn affected by prolapsed cord +C0477888|T047|PT|P02.5|ICD10|Fetus and newborn affected by other compression of umbilical cord|Fetus and newborn affected by other compression of umbilical cord +C4269095|T033|ET|P02.5|ICD10CM|Newborn affected by entanglement of umbilical cord|Newborn affected by entanglement of umbilical cord +C4269096|T033|ET|P02.5|ICD10CM|Newborn affected by knot in umbilical cord|Newborn affected by knot in umbilical cord +C4269093|T033|AB|P02.5|ICD10CM|Newborn affected by other compression of umbilical cord|Newborn affected by other compression of umbilical cord +C4269093|T033|PT|P02.5|ICD10CM|Newborn affected by other compression of umbilical cord|Newborn affected by other compression of umbilical cord +C4269094|T033|ET|P02.5|ICD10CM|Newborn affected by umbilical cord (tightly) around neck|Newborn affected by umbilical cord (tightly) around neck +C0477889|T047|PT|P02.6|ICD10|Fetus and newborn affected by other and unspecified conditions of umbilical cord|Fetus and newborn affected by other and unspecified conditions of umbilical cord +C4269097|T033|AB|P02.6|ICD10CM|Newborn affected by other and unsp cond of umbilical cord|Newborn affected by other and unsp cond of umbilical cord +C4269097|T033|HT|P02.6|ICD10CM|Newborn affected by other and unspecified conditions of umbilical cord|Newborn affected by other and unspecified conditions of umbilical cord +C4269098|T033|AB|P02.60|ICD10CM|Newborn affected by unspecified conditions of umbilical cord|Newborn affected by unspecified conditions of umbilical cord +C4269098|T033|PT|P02.60|ICD10CM|Newborn affected by unspecified conditions of umbilical cord|Newborn affected by unspecified conditions of umbilical cord +C4269099|T033|AB|P02.69|ICD10CM|Newborn affected by other conditions of umbilical cord|Newborn affected by other conditions of umbilical cord +C4269099|T033|PT|P02.69|ICD10CM|Newborn affected by other conditions of umbilical cord|Newborn affected by other conditions of umbilical cord +C3469394|T033|ET|P02.69|ICD10CM|Newborn affected by short umbilical cord|Newborn affected by short umbilical cord +C3469444|T033|ET|P02.69|ICD10CM|Newborn affected by vasa previa|Newborn affected by vasa previa +C0158835|T046|PT|P02.7|ICD10|Fetus and newborn affected by chorioamnionitis|Fetus and newborn affected by chorioamnionitis +C0742403|T033|AB|P02.7|ICD10CM|Newborn affected by chorioamnionitis|Newborn affected by chorioamnionitis +C0742403|T033|HT|P02.7|ICD10CM|Newborn affected by chorioamnionitis|Newborn affected by chorioamnionitis +C4703314|T033|AB|P02.70|ICD10CM|Newborn affected by fetal inflammatory response syndrome|Newborn affected by fetal inflammatory response syndrome +C4703314|T033|PT|P02.70|ICD10CM|Newborn affected by fetal inflammatory response syndrome|Newborn affected by fetal inflammatory response syndrome +C4718800|T033|ET|P02.70|ICD10CM|Newborn affected by FIRS|Newborn affected by FIRS +C4269100|T033|ET|P02.78|ICD10CM|Newborn affected by amnionitis|Newborn affected by amnionitis +C4269101|T033|ET|P02.78|ICD10CM|Newborn affected by membranitis|Newborn affected by membranitis +C4552725|T033|AB|P02.78|ICD10CM|Newborn affected by other conditions from chorioamnionitis|Newborn affected by other conditions from chorioamnionitis +C4552725|T033|PT|P02.78|ICD10CM|Newborn affected by other conditions from chorioamnionitis|Newborn affected by other conditions from chorioamnionitis +C4269102|T033|ET|P02.78|ICD10CM|Newborn affected by placentitis|Newborn affected by placentitis +C0495341|T033|PT|P02.8|ICD10|Fetus and newborn affected by other abnormalities of membranes|Fetus and newborn affected by other abnormalities of membranes +C4269103|T033|AB|P02.8|ICD10CM|Newborn affected by other abnormalities of membranes|Newborn affected by other abnormalities of membranes +C4269103|T033|PT|P02.8|ICD10CM|Newborn affected by other abnormalities of membranes|Newborn affected by other abnormalities of membranes +C0495342|T033|PT|P02.9|ICD10|Fetus and newborn affected by abnormality of membranes, unspecified|Fetus and newborn affected by abnormality of membranes, unspecified +C4269104|T033|AB|P02.9|ICD10CM|Newborn affected by abnormality of membranes, unspecified|Newborn affected by abnormality of membranes, unspecified +C4269104|T033|PT|P02.9|ICD10CM|Newborn affected by abnormality of membranes, unspecified|Newborn affected by abnormality of membranes, unspecified +C0495343|T033|HT|P03|ICD10AE|Fetus and newborn affected by other complications of labor and delivery|Fetus and newborn affected by other complications of labor and delivery +C0495343|T033|HT|P03|ICD10|Fetus and newborn affected by other complications of labour and delivery|Fetus and newborn affected by other complications of labour and delivery +C4269105|T033|AB|P03|ICD10CM|Newborn affected by other comp of labor and delivery|Newborn affected by other comp of labor and delivery +C4269105|T033|HT|P03|ICD10CM|Newborn affected by other complications of labor and delivery|Newborn affected by other complications of labor and delivery +C0158839|T047|PT|P03.0|ICD10|Fetus and newborn affected by breech delivery and extraction|Fetus and newborn affected by breech delivery and extraction +C2909853|T033|AB|P03.0|ICD10CM|Newborn affected by breech delivery and extraction|Newborn affected by breech delivery and extraction +C2909853|T033|PT|P03.0|ICD10CM|Newborn affected by breech delivery and extraction|Newborn affected by breech delivery and extraction +C2909858|T033|AB|P03.1|ICD10CM|NB aff by oth malpresent, malpos & disproprtn dur labr & del|NB aff by oth malpresent, malpos & disproprtn dur labr & del +C4269107|T033|ET|P03.1|ICD10CM|Newborn affected by conditions classifiable to O64-O66|Newborn affected by conditions classifiable to O64-O66 +C4269106|T033|ET|P03.1|ICD10CM|Newborn affected by contracted pelvis|Newborn affected by contracted pelvis +C2909858|T033|PT|P03.1|ICD10CM|Newborn affected by other malpresentation, malposition and disproportion during labor and delivery|Newborn affected by other malpresentation, malposition and disproportion during labor and delivery +C4269108|T033|ET|P03.1|ICD10CM|Newborn affected by persistent occipitoposterior|Newborn affected by persistent occipitoposterior +C3469449|T033|ET|P03.1|ICD10CM|Newborn affected by transverse lie|Newborn affected by transverse lie +C0869107|T046|PT|P03.2|ICD10|Fetus and newborn affected by forceps delivery|Fetus and newborn affected by forceps delivery +C3649048|T033|AB|P03.2|ICD10CM|Newborn affected by forceps delivery|Newborn affected by forceps delivery +C3649048|T033|PT|P03.2|ICD10CM|Newborn affected by forceps delivery|Newborn affected by forceps delivery +C0158842|T033|PT|P03.3|ICD10|Fetus and newborn affected by delivery by vacuum extractor [ventouse]|Fetus and newborn affected by delivery by vacuum extractor [ventouse] +C4269109|T033|AB|P03.3|ICD10CM|Newborn affected by delivery by vacuum extractor [ventouse]|Newborn affected by delivery by vacuum extractor [ventouse] +C4269109|T033|PT|P03.3|ICD10CM|Newborn affected by delivery by vacuum extractor [ventouse]|Newborn affected by delivery by vacuum extractor [ventouse] +C0158843|T033|PT|P03.4|ICD10|Fetus and newborn affected by caesarean delivery|Fetus and newborn affected by caesarean delivery +C0158843|T033|PT|P03.4|ICD10AE|Fetus and newborn affected by cesarean delivery|Fetus and newborn affected by cesarean delivery +C3647369|T033|AB|P03.4|ICD10CM|Newborn affected by Cesarean delivery|Newborn affected by Cesarean delivery +C3647369|T033|PT|P03.4|ICD10CM|Newborn affected by Cesarean delivery|Newborn affected by Cesarean delivery +C0158845|T046|PT|P03.5|ICD10|Fetus and newborn affected by precipitate delivery|Fetus and newborn affected by precipitate delivery +C3647368|T033|AB|P03.5|ICD10CM|Newborn affected by precipitate delivery|Newborn affected by precipitate delivery +C3647368|T033|PT|P03.5|ICD10CM|Newborn affected by precipitate delivery|Newborn affected by precipitate delivery +C4269110|T033|ET|P03.5|ICD10CM|Newborn affected by rapid second stage|Newborn affected by rapid second stage +C0158846|T033|PT|P03.6|ICD10|Fetus and newborn affected by abnormal uterine contractions|Fetus and newborn affected by abnormal uterine contractions +C3540666|T033|AB|P03.6|ICD10CM|Newborn affected by abnormal uterine contractions|Newborn affected by abnormal uterine contractions +C3540666|T033|PT|P03.6|ICD10CM|Newborn affected by abnormal uterine contractions|Newborn affected by abnormal uterine contractions +C4269111|T033|ET|P03.6|ICD10CM|Newborn affected by conditions classifiable to O62.-, except O62.3|Newborn affected by conditions classifiable to O62.-, except O62.3 +C4269112|T033|ET|P03.6|ICD10CM|Newborn affected by hypertonic labor|Newborn affected by hypertonic labor +C4269113|T033|ET|P03.6|ICD10CM|Newborn affected by uterine inertia|Newborn affected by uterine inertia +C0270067|T033|PT|P03.8|ICD10AE|Fetus and newborn affected by other specified complications of labor and delivery|Fetus and newborn affected by other specified complications of labor and delivery +C0270067|T033|PT|P03.8|ICD10|Fetus and newborn affected by other specified complications of labour and delivery|Fetus and newborn affected by other specified complications of labour and delivery +C2909868|T033|AB|P03.8|ICD10CM|Newborn affected by oth complications of labor and delivery|Newborn affected by oth complications of labor and delivery +C2909868|T033|HT|P03.8|ICD10CM|Newborn affected by other specified complications of labor and delivery|Newborn affected by other specified complications of labor and delivery +C4269114|T033|AB|P03.81|ICD10CM|Newborn affected by abnlt in fetal heart rate or rhythm|Newborn affected by abnlt in fetal heart rate or rhythm +C4269114|T033|HT|P03.81|ICD10CM|Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm|Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm +C2909870|T033|AB|P03.810|ICD10CM|NB aff by abnlt in fetal heart rate or rhym bef onset labor|NB aff by abnlt in fetal heart rate or rhym bef onset labor +C2909871|T033|AB|P03.811|ICD10CM|NB aff by abnlt in fetal heart rate or rhythm during labor|NB aff by abnlt in fetal heart rate or rhythm during labor +C2909871|T033|PT|P03.811|ICD10CM|Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm during labor|Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm during labor +C2909872|T033|AB|P03.819|ICD10CM|NB aff by abnlt in fetal heart rate or rhym, unsp time onset|NB aff by abnlt in fetal heart rate or rhym, unsp time onset +C2909873|T033|AB|P03.82|ICD10CM|Meconium passage during delivery|Meconium passage during delivery +C2909873|T033|PT|P03.82|ICD10CM|Meconium passage during delivery|Meconium passage during delivery +C4269115|T033|ET|P03.89|ICD10CM|Newborn affected by abnormality of maternal soft tissues|Newborn affected by abnormality of maternal soft tissues +C4269117|T033|ET|P03.89|ICD10CM|Newborn affected by induction of labor|Newborn affected by induction of labor +C2909868|T033|AB|P03.89|ICD10CM|Newborn affected by oth complications of labor and delivery|Newborn affected by oth complications of labor and delivery +C2909868|T033|PT|P03.89|ICD10CM|Newborn affected by other specified complications of labor and delivery|Newborn affected by other specified complications of labor and delivery +C0495350|T033|PT|P03.9|ICD10AE|Fetus and newborn affected by complication of labor and delivery, unspecified|Fetus and newborn affected by complication of labor and delivery, unspecified +C0495350|T033|PT|P03.9|ICD10|Fetus and newborn affected by complication of labour and delivery, unspecified|Fetus and newborn affected by complication of labour and delivery, unspecified +C4269118|T033|AB|P03.9|ICD10CM|Newborn affected by comp of labor and delivery, unspecified|Newborn affected by comp of labor and delivery, unspecified +C4269118|T033|PT|P03.9|ICD10CM|Newborn affected by complication of labor and delivery, unspecified|Newborn affected by complication of labor and delivery, unspecified +C0451942|T037|HT|P04|ICD10|Fetus and newborn affected by noxious influences transmitted via placenta or breast milk|Fetus and newborn affected by noxious influences transmitted via placenta or breast milk +C4269119|T033|AB|P04|ICD10CM|NB aff by noxious substnc transmitd via plcnta or brst milk|NB aff by noxious substnc transmitd via plcnta or brst milk +C4269119|T033|HT|P04|ICD10CM|Newborn affected by noxious substances transmitted via placenta or breast milk|Newborn affected by noxious substances transmitted via placenta or breast milk +C4290262|T033|ET|P04|ICD10CM|nonteratogenic effects of substances transmitted via placenta|nonteratogenic effects of substances transmitted via placenta +C0495351|T046|PT|P04.0|ICD10|Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery|Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery +C0495351|T046|PT|P04.0|ICD10AE|Fetus and newborn affected by maternal anesthesia and analgesia in pregnancy, labor and delivery|Fetus and newborn affected by maternal anesthesia and analgesia in pregnancy, labor and delivery +C2909881|T033|AB|P04.0|ICD10CM|NB aff by matern anesth and analgesia in preg, labor and del|NB aff by matern anesth and analgesia in preg, labor and del +C2909881|T033|PT|P04.0|ICD10CM|Newborn affected by maternal anesthesia and analgesia in pregnancy, labor and delivery|Newborn affected by maternal anesthesia and analgesia in pregnancy, labor and delivery +C0477893|T037|PT|P04.1|ICD10|Fetus and newborn affected by other maternal medication|Fetus and newborn affected by other maternal medication +C4269121|T033|AB|P04.1|ICD10CM|Newborn affected by other maternal medication|Newborn affected by other maternal medication +C4269121|T033|HT|P04.1|ICD10CM|Newborn affected by other maternal medication|Newborn affected by other maternal medication +C4269122|T033|AB|P04.11|ICD10CM|Newborn affected by maternal antineoplastic chemotherapy|Newborn affected by maternal antineoplastic chemotherapy +C4269122|T033|PT|P04.11|ICD10CM|Newborn affected by maternal antineoplastic chemotherapy|Newborn affected by maternal antineoplastic chemotherapy +C4269123|T033|AB|P04.12|ICD10CM|Newborn affected by maternal cytotoxic drugs|Newborn affected by maternal cytotoxic drugs +C4269123|T033|PT|P04.12|ICD10CM|Newborn affected by maternal cytotoxic drugs|Newborn affected by maternal cytotoxic drugs +C4552726|T033|AB|P04.13|ICD10CM|Newborn affected by maternal use of anticonvulsants|Newborn affected by maternal use of anticonvulsants +C4552726|T033|PT|P04.13|ICD10CM|Newborn affected by maternal use of anticonvulsants|Newborn affected by maternal use of anticonvulsants +C4552727|T033|AB|P04.14|ICD10CM|Newborn affected by maternal use of opiates|Newborn affected by maternal use of opiates +C4552727|T033|PT|P04.14|ICD10CM|Newborn affected by maternal use of opiates|Newborn affected by maternal use of opiates +C4552728|T033|AB|P04.15|ICD10CM|Newborn affected by maternal use of antidepressants|Newborn affected by maternal use of antidepressants +C4552728|T033|PT|P04.15|ICD10CM|Newborn affected by maternal use of antidepressants|Newborn affected by maternal use of antidepressants +C4552729|T033|AB|P04.16|ICD10CM|Newborn affected by maternal use of amphetamines|Newborn affected by maternal use of amphetamines +C4552729|T033|PT|P04.16|ICD10CM|Newborn affected by maternal use of amphetamines|Newborn affected by maternal use of amphetamines +C4552730|T033|AB|P04.17|ICD10CM|Newborn affected by maternal use of sedative-hypnotics|Newborn affected by maternal use of sedative-hypnotics +C4552730|T033|PT|P04.17|ICD10CM|Newborn affected by maternal use of sedative-hypnotics|Newborn affected by maternal use of sedative-hypnotics +C4269121|T033|AB|P04.18|ICD10CM|Newborn affected by other maternal medication|Newborn affected by other maternal medication +C4269121|T033|PT|P04.18|ICD10CM|Newborn affected by other maternal medication|Newborn affected by other maternal medication +C4552732|T033|AB|P04.19|ICD10CM|Newborn affected by maternal use of unspecified medication|Newborn affected by maternal use of unspecified medication +C4552732|T033|PT|P04.19|ICD10CM|Newborn affected by maternal use of unspecified medication|Newborn affected by maternal use of unspecified medication +C4552731|T033|AB|P04.1A|ICD10CM|Newborn affected by maternal use of anxiolytics|Newborn affected by maternal use of anxiolytics +C4552731|T033|PT|P04.1A|ICD10CM|Newborn affected by maternal use of anxiolytics|Newborn affected by maternal use of anxiolytics +C0451943|T037|PT|P04.2|ICD10|Fetus and newborn affected by maternal use of tobacco|Fetus and newborn affected by maternal use of tobacco +C4269124|T033|ET|P04.2|ICD10CM|Newborn affected by exposure in utero to tobacco smoke|Newborn affected by exposure in utero to tobacco smoke +C2909886|T033|AB|P04.2|ICD10CM|Newborn affected by maternal use of tobacco|Newborn affected by maternal use of tobacco +C2909886|T033|PT|P04.2|ICD10CM|Newborn affected by maternal use of tobacco|Newborn affected by maternal use of tobacco +C3662234|T033|PT|P04.3|ICD10|Fetus and newborn affected by maternal use of alcohol|Fetus and newborn affected by maternal use of alcohol +C2909887|T033|AB|P04.3|ICD10CM|Newborn affected by maternal use of alcohol|Newborn affected by maternal use of alcohol +C2909887|T033|PT|P04.3|ICD10CM|Newborn affected by maternal use of alcohol|Newborn affected by maternal use of alcohol +C0495352|T037|PT|P04.4|ICD10|Fetus and newborn affected by maternal use of drugs of addiction|Fetus and newborn affected by maternal use of drugs of addiction +C4269125|T033|AB|P04.4|ICD10CM|Newborn affected by maternal use of drugs of addiction|Newborn affected by maternal use of drugs of addiction +C4269125|T033|HT|P04.4|ICD10CM|Newborn affected by maternal use of drugs of addiction|Newborn affected by maternal use of drugs of addiction +C4553031|T033|AB|P04.40|ICD10CM|Newborn affected by maternal use of unsp drugs of addiction|Newborn affected by maternal use of unsp drugs of addiction +C4553031|T033|PT|P04.40|ICD10CM|Newborn affected by maternal use of unspecified drugs of addiction|Newborn affected by maternal use of unspecified drugs of addiction +C2909889|T033|AB|P04.41|ICD10CM|Newborn affected by maternal use of cocaine|Newborn affected by maternal use of cocaine +C2909889|T033|PT|P04.41|ICD10CM|Newborn affected by maternal use of cocaine|Newborn affected by maternal use of cocaine +C4553032|T033|AB|P04.42|ICD10CM|Newborn affected by maternal use of hallucinogens|Newborn affected by maternal use of hallucinogens +C4553032|T033|PT|P04.42|ICD10CM|Newborn affected by maternal use of hallucinogens|Newborn affected by maternal use of hallucinogens +C4269126|T033|AB|P04.49|ICD10CM|Newborn affected by maternal use of other drugs of addiction|Newborn affected by maternal use of other drugs of addiction +C4269126|T033|PT|P04.49|ICD10CM|Newborn affected by maternal use of other drugs of addiction|Newborn affected by maternal use of other drugs of addiction +C0451944|T037|PT|P04.5|ICD10|Fetus and newborn affected by maternal use of nutritional chemical substances|Fetus and newborn affected by maternal use of nutritional chemical substances +C2909891|T033|AB|P04.5|ICD10CM|Newborn aff by maternal use of nutritional chemical substnc|Newborn aff by maternal use of nutritional chemical substnc +C2909891|T033|PT|P04.5|ICD10CM|Newborn affected by maternal use of nutritional chemical substances|Newborn affected by maternal use of nutritional chemical substances +C0451945|T037|PT|P04.6|ICD10|Fetus and newborn affected by maternal exposure to environmental chemical substances|Fetus and newborn affected by maternal exposure to environmental chemical substances +C2909892|T033|AB|P04.6|ICD10CM|Newborn aff by maternal exposure to environ chemical substnc|Newborn aff by maternal exposure to environ chemical substnc +C2909892|T033|PT|P04.6|ICD10CM|Newborn affected by maternal exposure to environmental chemical substances|Newborn affected by maternal exposure to environmental chemical substances +C0477894|T037|PT|P04.8|ICD10|Fetus and newborn affected by other maternal noxious influences|Fetus and newborn affected by other maternal noxious influences +C4269127|T033|AB|P04.8|ICD10CM|Newborn affected by other maternal noxious substances|Newborn affected by other maternal noxious substances +C4269127|T033|HT|P04.8|ICD10CM|Newborn affected by other maternal noxious substances|Newborn affected by other maternal noxious substances +C4553033|T033|AB|P04.81|ICD10CM|Newborn affected by maternal use of cannabis|Newborn affected by maternal use of cannabis +C4553033|T033|PT|P04.81|ICD10CM|Newborn affected by maternal use of cannabis|Newborn affected by maternal use of cannabis +C4269127|T033|AB|P04.89|ICD10CM|Newborn affected by other maternal noxious substances|Newborn affected by other maternal noxious substances +C4269127|T033|PT|P04.89|ICD10CM|Newborn affected by other maternal noxious substances|Newborn affected by other maternal noxious substances +C0495353|T037|PT|P04.9|ICD10|Fetus and newborn affected by maternal noxious influence, unspecified|Fetus and newborn affected by maternal noxious influence, unspecified +C4269128|T033|AB|P04.9|ICD10CM|Newborn affected by maternal noxious substance, unspecified|Newborn affected by maternal noxious substance, unspecified +C4269128|T033|PT|P04.9|ICD10CM|Newborn affected by maternal noxious substance, unspecified|Newborn affected by maternal noxious substance, unspecified +C2909895|T033|AB|P05|ICD10CM|Disord of NB related to slow fetal growth and fetal malnut|Disord of NB related to slow fetal growth and fetal malnut +C2909895|T033|HT|P05|ICD10CM|Disorders of newborn related to slow fetal growth and fetal malnutrition|Disorders of newborn related to slow fetal growth and fetal malnutrition +C0158849|T033|HT|P05|ICD10|Slow fetal growth and fetal malnutrition|Slow fetal growth and fetal malnutrition +C2909896|T033|HT|P05-P08|ICD10CM|Disorders of newborn related to length of gestation and fetal growth (P05-P08)|Disorders of newborn related to length of gestation and fetal growth (P05-P08) +C0477895|T047|HT|P05-P08.9|ICD10|Disorders related to length of gestation and fetal growth|Disorders related to length of gestation and fetal growth +C0456060|T033|PT|P05.0|ICD10|Light for gestational age|Light for gestational age +C2909897|T033|AB|P05.0|ICD10CM|Newborn light for gestational age|Newborn light for gestational age +C2909897|T033|HT|P05.0|ICD10CM|Newborn light for gestational age|Newborn light for gestational age +C0848900|T033|ET|P05.0|ICD10CM|Newborn light-for-dates|Newborn light-for-dates +C4269129|T033|ET|P05.0|ICD10CM|Weight below but length above 10th percentile for gestational age|Weight below but length above 10th percentile for gestational age +C2909898|T033|AB|P05.00|ICD10CM|Newborn light for gestational age, unspecified weight|Newborn light for gestational age, unspecified weight +C2909898|T033|PT|P05.00|ICD10CM|Newborn light for gestational age, unspecified weight|Newborn light for gestational age, unspecified weight +C2909899|T033|AB|P05.01|ICD10CM|Newborn light for gestational age, less than 500 grams|Newborn light for gestational age, less than 500 grams +C2909899|T033|PT|P05.01|ICD10CM|Newborn light for gestational age, less than 500 grams|Newborn light for gestational age, less than 500 grams +C2909900|T033|AB|P05.02|ICD10CM|Newborn light for gestational age, 500-749 grams|Newborn light for gestational age, 500-749 grams +C2909900|T033|PT|P05.02|ICD10CM|Newborn light for gestational age, 500-749 grams|Newborn light for gestational age, 500-749 grams +C2909901|T033|AB|P05.03|ICD10CM|Newborn light for gestational age, 750-999 grams|Newborn light for gestational age, 750-999 grams +C2909901|T033|PT|P05.03|ICD10CM|Newborn light for gestational age, 750-999 grams|Newborn light for gestational age, 750-999 grams +C2909902|T033|AB|P05.04|ICD10CM|Newborn light for gestational age, 1000-1249 grams|Newborn light for gestational age, 1000-1249 grams +C2909902|T033|PT|P05.04|ICD10CM|Newborn light for gestational age, 1000-1249 grams|Newborn light for gestational age, 1000-1249 grams +C2909903|T033|AB|P05.05|ICD10CM|Newborn light for gestational age, 1250-1499 grams|Newborn light for gestational age, 1250-1499 grams +C2909903|T033|PT|P05.05|ICD10CM|Newborn light for gestational age, 1250-1499 grams|Newborn light for gestational age, 1250-1499 grams +C2909904|T033|AB|P05.06|ICD10CM|Newborn light for gestational age, 1500-1749 grams|Newborn light for gestational age, 1500-1749 grams +C2909904|T033|PT|P05.06|ICD10CM|Newborn light for gestational age, 1500-1749 grams|Newborn light for gestational age, 1500-1749 grams +C2909905|T033|AB|P05.07|ICD10CM|Newborn light for gestational age, 1750-1999 grams|Newborn light for gestational age, 1750-1999 grams +C2909905|T033|PT|P05.07|ICD10CM|Newborn light for gestational age, 1750-1999 grams|Newborn light for gestational age, 1750-1999 grams +C2909906|T033|AB|P05.08|ICD10CM|Newborn light for gestational age, 2000-2499 grams|Newborn light for gestational age, 2000-2499 grams +C2909906|T033|PT|P05.08|ICD10CM|Newborn light for gestational age, 2000-2499 grams|Newborn light for gestational age, 2000-2499 grams +C4269130|T033|AB|P05.09|ICD10CM|Newborn light for gestational age, 2500 grams and over|Newborn light for gestational age, 2500 grams and over +C4269130|T033|PT|P05.09|ICD10CM|Newborn light for gestational age, 2500 grams and over|Newborn light for gestational age, 2500 grams and over +C4269131|T033|ET|P05.09|ICD10CM|Newborn light for gestational age, other|Newborn light for gestational age, other +C2909909|T033|AB|P05.1|ICD10CM|Newborn small for gestational age|Newborn small for gestational age +C2909909|T033|HT|P05.1|ICD10CM|Newborn small for gestational age|Newborn small for gestational age +C2909907|T033|ET|P05.1|ICD10CM|Newborn small-and-light-for-dates|Newborn small-and-light-for-dates +C2909908|T033|ET|P05.1|ICD10CM|Newborn small-for-dates|Newborn small-for-dates +C0235991|T033|PT|P05.1|ICD10|Small for gestational age|Small for gestational age +C4269132|T033|ET|P05.1|ICD10CM|Weight and length below 10th percentile for gestational age|Weight and length below 10th percentile for gestational age +C2909910|T033|AB|P05.10|ICD10CM|Newborn small for gestational age, unspecified weight|Newborn small for gestational age, unspecified weight +C2909910|T033|PT|P05.10|ICD10CM|Newborn small for gestational age, unspecified weight|Newborn small for gestational age, unspecified weight +C2909911|T033|AB|P05.11|ICD10CM|Newborn small for gestational age, less than 500 grams|Newborn small for gestational age, less than 500 grams +C2909911|T033|PT|P05.11|ICD10CM|Newborn small for gestational age, less than 500 grams|Newborn small for gestational age, less than 500 grams +C2909912|T033|AB|P05.12|ICD10CM|Newborn small for gestational age, 500-749 grams|Newborn small for gestational age, 500-749 grams +C2909912|T033|PT|P05.12|ICD10CM|Newborn small for gestational age, 500-749 grams|Newborn small for gestational age, 500-749 grams +C2909913|T033|AB|P05.13|ICD10CM|Newborn small for gestational age, 750-999 grams|Newborn small for gestational age, 750-999 grams +C2909913|T033|PT|P05.13|ICD10CM|Newborn small for gestational age, 750-999 grams|Newborn small for gestational age, 750-999 grams +C2909914|T033|AB|P05.14|ICD10CM|Newborn small for gestational age, 1000-1249 grams|Newborn small for gestational age, 1000-1249 grams +C2909914|T033|PT|P05.14|ICD10CM|Newborn small for gestational age, 1000-1249 grams|Newborn small for gestational age, 1000-1249 grams +C2909915|T033|AB|P05.15|ICD10CM|Newborn small for gestational age, 1250-1499 grams|Newborn small for gestational age, 1250-1499 grams +C2909915|T033|PT|P05.15|ICD10CM|Newborn small for gestational age, 1250-1499 grams|Newborn small for gestational age, 1250-1499 grams +C2909916|T033|AB|P05.16|ICD10CM|Newborn small for gestational age, 1500-1749 grams|Newborn small for gestational age, 1500-1749 grams +C2909916|T033|PT|P05.16|ICD10CM|Newborn small for gestational age, 1500-1749 grams|Newborn small for gestational age, 1500-1749 grams +C2909917|T033|AB|P05.17|ICD10CM|Newborn small for gestational age, 1750-1999 grams|Newborn small for gestational age, 1750-1999 grams +C2909917|T033|PT|P05.17|ICD10CM|Newborn small for gestational age, 1750-1999 grams|Newborn small for gestational age, 1750-1999 grams +C2909918|T033|AB|P05.18|ICD10CM|Newborn small for gestational age, 2000-2499 grams|Newborn small for gestational age, 2000-2499 grams +C2909918|T033|PT|P05.18|ICD10CM|Newborn small for gestational age, 2000-2499 grams|Newborn small for gestational age, 2000-2499 grams +C4269134|T033|ET|P05.19|ICD10CM|Newborn small for gestational age, 2500 grams and over|Newborn small for gestational age, 2500 grams and over +C4269133|T033|AB|P05.19|ICD10CM|Newborn small for gestational age, other|Newborn small for gestational age, other +C4269133|T033|PT|P05.19|ICD10CM|Newborn small for gestational age, other|Newborn small for gestational age, other +C1510504|T047|PT|P05.2|ICD10|Fetal malnutrition without mention of light or small for gestational age|Fetal malnutrition without mention of light or small for gestational age +C2909920|T033|AB|P05.2|ICD10CM|NB aff by fetal malnut not light or small for gestatnl age|NB aff by fetal malnut not light or small for gestatnl age +C2909920|T033|PT|P05.2|ICD10CM|Newborn affected by fetal (intrauterine) malnutrition not light or small for gestational age|Newborn affected by fetal (intrauterine) malnutrition not light or small for gestational age +C2909921|T046|ET|P05.9|ICD10CM|Newborn affected by fetal growth retardation NOS|Newborn affected by fetal growth retardation NOS +C2909922|T033|AB|P05.9|ICD10CM|Newborn affected by slow intrauterine growth, unspecified|Newborn affected by slow intrauterine growth, unspecified +C2909922|T033|PT|P05.9|ICD10CM|Newborn affected by slow intrauterine growth, unspecified|Newborn affected by slow intrauterine growth, unspecified +C0015934|T047|PT|P05.9|ICD10|Slow fetal growth, unspecified|Slow fetal growth, unspecified +C2909923|T047|AB|P07|ICD10CM|Disord of NB related to short gest and low birth weight, NEC|Disord of NB related to short gest and low birth weight, NEC +C2909923|T047|HT|P07|ICD10CM|Disorders of newborn related to short gestation and low birth weight, not elsewhere classified|Disorders of newborn related to short gestation and low birth weight, not elsewhere classified +C0495356|T047|HT|P07|ICD10|Disorders related to short gestation and low birth weight, not elsewhere classified|Disorders related to short gestation and low birth weight, not elsewhere classified +C0456065|T047|PT|P07.0|ICD10|Extremely low birth weight|Extremely low birth weight +C2909925|T033|AB|P07.0|ICD10CM|Extremely low birth weight newborn|Extremely low birth weight newborn +C2909925|T033|HT|P07.0|ICD10CM|Extremely low birth weight newborn|Extremely low birth weight newborn +C2909924|T033|ET|P07.0|ICD10CM|Newborn birth weight 999 g. or less|Newborn birth weight 999 g. or less +C2909926|T033|AB|P07.00|ICD10CM|Extremely low birth weight newborn, unspecified weight|Extremely low birth weight newborn, unspecified weight +C2909926|T033|PT|P07.00|ICD10CM|Extremely low birth weight newborn, unspecified weight|Extremely low birth weight newborn, unspecified weight +C2909927|T033|AB|P07.01|ICD10CM|Extremely low birth weight newborn, less than 500 grams|Extremely low birth weight newborn, less than 500 grams +C2909927|T033|PT|P07.01|ICD10CM|Extremely low birth weight newborn, less than 500 grams|Extremely low birth weight newborn, less than 500 grams +C2909928|T033|AB|P07.02|ICD10CM|Extremely low birth weight newborn, 500-749 grams|Extremely low birth weight newborn, 500-749 grams +C2909928|T033|PT|P07.02|ICD10CM|Extremely low birth weight newborn, 500-749 grams|Extremely low birth weight newborn, 500-749 grams +C2909929|T033|AB|P07.03|ICD10CM|Extremely low birth weight newborn, 750-999 grams|Extremely low birth weight newborn, 750-999 grams +C2909929|T033|PT|P07.03|ICD10CM|Extremely low birth weight newborn, 750-999 grams|Extremely low birth weight newborn, 750-999 grams +C2909930|T033|ET|P07.1|ICD10CM|Newborn birth weight 1000-2499 g.|Newborn birth weight 1000-2499 g. +C0477896|T033|PT|P07.1|ICD10|Other low birth weight|Other low birth weight +C2909931|T033|AB|P07.1|ICD10CM|Other low birth weight newborn|Other low birth weight newborn +C2909931|T033|HT|P07.1|ICD10CM|Other low birth weight newborn|Other low birth weight newborn +C2909932|T033|AB|P07.10|ICD10CM|Other low birth weight newborn, unspecified weight|Other low birth weight newborn, unspecified weight +C2909932|T033|PT|P07.10|ICD10CM|Other low birth weight newborn, unspecified weight|Other low birth weight newborn, unspecified weight +C2909933|T033|AB|P07.14|ICD10CM|Other low birth weight newborn, 1000-1249 grams|Other low birth weight newborn, 1000-1249 grams +C2909933|T033|PT|P07.14|ICD10CM|Other low birth weight newborn, 1000-1249 grams|Other low birth weight newborn, 1000-1249 grams +C2909934|T033|AB|P07.15|ICD10CM|Other low birth weight newborn, 1250-1499 grams|Other low birth weight newborn, 1250-1499 grams +C2909934|T033|PT|P07.15|ICD10CM|Other low birth weight newborn, 1250-1499 grams|Other low birth weight newborn, 1250-1499 grams +C2909935|T033|AB|P07.16|ICD10CM|Other low birth weight newborn, 1500-1749 grams|Other low birth weight newborn, 1500-1749 grams +C2909935|T033|PT|P07.16|ICD10CM|Other low birth weight newborn, 1500-1749 grams|Other low birth weight newborn, 1500-1749 grams +C2909936|T033|AB|P07.17|ICD10CM|Other low birth weight newborn, 1750-1999 grams|Other low birth weight newborn, 1750-1999 grams +C2909936|T033|PT|P07.17|ICD10CM|Other low birth weight newborn, 1750-1999 grams|Other low birth weight newborn, 1750-1999 grams +C2909937|T033|AB|P07.18|ICD10CM|Other low birth weight newborn, 2000-2499 grams|Other low birth weight newborn, 2000-2499 grams +C2909937|T033|PT|P07.18|ICD10CM|Other low birth weight newborn, 2000-2499 grams|Other low birth weight newborn, 2000-2499 grams +C0270078|T047|PT|P07.2|ICD10|Extreme immaturity|Extreme immaturity +C2909939|T033|AB|P07.2|ICD10CM|Extreme immaturity of newborn|Extreme immaturity of newborn +C2909939|T033|HT|P07.2|ICD10CM|Extreme immaturity of newborn|Extreme immaturity of newborn +C2909938|T033|ET|P07.2|ICD10CM|Less than 28 completed weeks (less than 196 completed days) of gestation.|Less than 28 completed weeks (less than 196 completed days) of gestation. +C2909940|T033|AB|P07.20|ICD10CM|Extreme immaturity of newborn, unsp weeks of gestation|Extreme immaturity of newborn, unsp weeks of gestation +C2909940|T033|PT|P07.20|ICD10CM|Extreme immaturity of newborn, unspecified weeks of gestation|Extreme immaturity of newborn, unspecified weeks of gestation +C3264529|T033|ET|P07.20|ICD10CM|Gestational age less than 28 completed weeks NOS|Gestational age less than 28 completed weeks NOS +C3264531|T033|AB|P07.21|ICD10CM|Extreme immaturity of NB, gestatnl age < 23 completed weeks|Extreme immaturity of NB, gestatnl age < 23 completed weeks +C3264531|T033|PT|P07.21|ICD10CM|Extreme immaturity of newborn, gestational age less than 23 completed weeks|Extreme immaturity of newborn, gestational age less than 23 completed weeks +C3264530|T033|ET|P07.21|ICD10CM|Extreme immaturity of newborn, gestational age less than 23 weeks, 0 days|Extreme immaturity of newborn, gestational age less than 23 weeks, 0 days +C3264533|T033|AB|P07.22|ICD10CM|Extreme immaturity of NB, gestatnl age 23 completed weeks|Extreme immaturity of NB, gestatnl age 23 completed weeks +C3264533|T033|PT|P07.22|ICD10CM|Extreme immaturity of newborn, gestational age 23 completed weeks|Extreme immaturity of newborn, gestational age 23 completed weeks +C3264532|T033|ET|P07.22|ICD10CM|Extreme immaturity of newborn, gestational age 23 weeks, 0 days through 23 weeks, 6 days|Extreme immaturity of newborn, gestational age 23 weeks, 0 days through 23 weeks, 6 days +C2909943|T033|AB|P07.23|ICD10CM|Extreme immaturity of NB, gestatnl age 24 completed weeks|Extreme immaturity of NB, gestatnl age 24 completed weeks +C2909943|T033|PT|P07.23|ICD10CM|Extreme immaturity of newborn, gestational age 24 completed weeks|Extreme immaturity of newborn, gestational age 24 completed weeks +C3264534|T033|ET|P07.23|ICD10CM|Extreme immaturity of newborn, gestational age 24 weeks, 0 days through 24 weeks, 6 days|Extreme immaturity of newborn, gestational age 24 weeks, 0 days through 24 weeks, 6 days +C3264536|T033|AB|P07.24|ICD10CM|Extreme immaturity of NB, gestatnl age 25 completed weeks|Extreme immaturity of NB, gestatnl age 25 completed weeks +C3264536|T033|PT|P07.24|ICD10CM|Extreme immaturity of newborn, gestational age 25 completed weeks|Extreme immaturity of newborn, gestational age 25 completed weeks +C3264535|T033|ET|P07.24|ICD10CM|Extreme immaturity of newborn, gestational age 25 weeks, 0 days through 25 weeks, 6 days|Extreme immaturity of newborn, gestational age 25 weeks, 0 days through 25 weeks, 6 days +C3264538|T033|AB|P07.25|ICD10CM|Extreme immaturity of NB, gestatnl age 26 completed weeks|Extreme immaturity of NB, gestatnl age 26 completed weeks +C3264538|T033|PT|P07.25|ICD10CM|Extreme immaturity of newborn, gestational age 26 completed weeks|Extreme immaturity of newborn, gestational age 26 completed weeks +C3264537|T033|ET|P07.25|ICD10CM|Extreme immaturity of newborn, gestational age 26 weeks, 0 days through 26 weeks, 6 days|Extreme immaturity of newborn, gestational age 26 weeks, 0 days through 26 weeks, 6 days +C3264540|T033|AB|P07.26|ICD10CM|Extreme immaturity of NB, gestatnl age 27 completed weeks|Extreme immaturity of NB, gestatnl age 27 completed weeks +C3264540|T033|PT|P07.26|ICD10CM|Extreme immaturity of newborn, gestational age 27 completed weeks|Extreme immaturity of newborn, gestational age 27 completed weeks +C3264539|T033|ET|P07.26|ICD10CM|Extreme immaturity of newborn, gestational age 27 weeks, 0 days through 27 weeks, 6 days|Extreme immaturity of newborn, gestational age 27 weeks, 0 days through 27 weeks, 6 days +C0029713|T047|PT|P07.3|ICD10|Other preterm infants|Other preterm infants +C0021294|T033|ET|P07.3|ICD10CM|Prematurity NOS|Prematurity NOS +C3264541|T033|AB|P07.3|ICD10CM|Preterm [premature] newborn [other]|Preterm [premature] newborn [other] +C3264541|T033|HT|P07.3|ICD10CM|Preterm [premature] newborn [other]|Preterm [premature] newborn [other] +C2909946|T033|AB|P07.30|ICD10CM|Preterm newborn, unspecified weeks of gestation|Preterm newborn, unspecified weeks of gestation +C2909946|T033|PT|P07.30|ICD10CM|Preterm newborn, unspecified weeks of gestation|Preterm newborn, unspecified weeks of gestation +C3264543|T033|AB|P07.31|ICD10CM|Preterm newborn, gestational age 28 completed weeks|Preterm newborn, gestational age 28 completed weeks +C3264543|T033|PT|P07.31|ICD10CM|Preterm newborn, gestational age 28 completed weeks|Preterm newborn, gestational age 28 completed weeks +C3264542|T033|ET|P07.31|ICD10CM|Preterm newborn, gestational age 28 weeks, 0 days through 28 weeks, 6 days|Preterm newborn, gestational age 28 weeks, 0 days through 28 weeks, 6 days +C3264545|T033|AB|P07.32|ICD10CM|Preterm newborn, gestational age 29 completed weeks|Preterm newborn, gestational age 29 completed weeks +C3264545|T033|PT|P07.32|ICD10CM|Preterm newborn, gestational age 29 completed weeks|Preterm newborn, gestational age 29 completed weeks +C3264544|T033|ET|P07.32|ICD10CM|Preterm newborn, gestational age 29 weeks, 0 days through 29 weeks, 6 days|Preterm newborn, gestational age 29 weeks, 0 days through 29 weeks, 6 days +C3264547|T033|AB|P07.33|ICD10CM|Preterm newborn, gestational age 30 completed weeks|Preterm newborn, gestational age 30 completed weeks +C3264547|T033|PT|P07.33|ICD10CM|Preterm newborn, gestational age 30 completed weeks|Preterm newborn, gestational age 30 completed weeks +C3264546|T033|ET|P07.33|ICD10CM|Preterm newborn, gestational age 30 weeks, 0 days through 30 weeks, 6 days|Preterm newborn, gestational age 30 weeks, 0 days through 30 weeks, 6 days +C3264549|T033|AB|P07.34|ICD10CM|Preterm newborn, gestational age 31 completed weeks|Preterm newborn, gestational age 31 completed weeks +C3264549|T033|PT|P07.34|ICD10CM|Preterm newborn, gestational age 31 completed weeks|Preterm newborn, gestational age 31 completed weeks +C3264548|T033|ET|P07.34|ICD10CM|Preterm newborn, gestational age 31 weeks, 0 days through 31 weeks, 6 days|Preterm newborn, gestational age 31 weeks, 0 days through 31 weeks, 6 days +C3264551|T033|AB|P07.35|ICD10CM|Preterm newborn, gestational age 32 completed weeks|Preterm newborn, gestational age 32 completed weeks +C3264551|T033|PT|P07.35|ICD10CM|Preterm newborn, gestational age 32 completed weeks|Preterm newborn, gestational age 32 completed weeks +C3264550|T033|ET|P07.35|ICD10CM|Preterm newborn, gestational age 32 weeks, 0 days through 32 weeks, 6 days|Preterm newborn, gestational age 32 weeks, 0 days through 32 weeks, 6 days +C3264553|T033|AB|P07.36|ICD10CM|Preterm newborn, gestational age 33 completed weeks|Preterm newborn, gestational age 33 completed weeks +C3264553|T033|PT|P07.36|ICD10CM|Preterm newborn, gestational age 33 completed weeks|Preterm newborn, gestational age 33 completed weeks +C3264552|T033|ET|P07.36|ICD10CM|Preterm newborn, gestational age 33 weeks, 0 days through 33 weeks, 6 days|Preterm newborn, gestational age 33 weeks, 0 days through 33 weeks, 6 days +C3264555|T033|AB|P07.37|ICD10CM|Preterm newborn, gestational age 34 completed weeks|Preterm newborn, gestational age 34 completed weeks +C3264555|T033|PT|P07.37|ICD10CM|Preterm newborn, gestational age 34 completed weeks|Preterm newborn, gestational age 34 completed weeks +C3264554|T033|ET|P07.37|ICD10CM|Preterm newborn, gestational age 34 weeks, 0 days through 34 weeks, 6 days|Preterm newborn, gestational age 34 weeks, 0 days through 34 weeks, 6 days +C3264557|T033|AB|P07.38|ICD10CM|Preterm newborn, gestational age 35 completed weeks|Preterm newborn, gestational age 35 completed weeks +C3264557|T033|PT|P07.38|ICD10CM|Preterm newborn, gestational age 35 completed weeks|Preterm newborn, gestational age 35 completed weeks +C3264556|T033|ET|P07.38|ICD10CM|Preterm newborn, gestational age 35 weeks, 0 days through 35 weeks, 6 days|Preterm newborn, gestational age 35 weeks, 0 days through 35 weeks, 6 days +C3264559|T033|AB|P07.39|ICD10CM|Preterm newborn, gestational age 36 completed weeks|Preterm newborn, gestational age 36 completed weeks +C3264559|T033|PT|P07.39|ICD10CM|Preterm newborn, gestational age 36 completed weeks|Preterm newborn, gestational age 36 completed weeks +C3264558|T033|ET|P07.39|ICD10CM|Preterm newborn, gestational age 36 weeks, 0 days through 36 weeks, 6 days|Preterm newborn, gestational age 36 weeks, 0 days through 36 weeks, 6 days +C2909950|T033|AB|P08|ICD10CM|Disord of newborn related to long gest and high birth weight|Disord of newborn related to long gest and high birth weight +C2909950|T033|HT|P08|ICD10CM|Disorders of newborn related to long gestation and high birth weight|Disorders of newborn related to long gestation and high birth weight +C0158914|T047|HT|P08|ICD10|Disorders related to long gestation and high birth weight|Disorders related to long gestation and high birth weight +C0158915|T033|PT|P08.0|ICD10|Exceptionally large baby|Exceptionally large baby +C2909952|T033|AB|P08.0|ICD10CM|Exceptionally large newborn baby|Exceptionally large newborn baby +C2909952|T033|PT|P08.0|ICD10CM|Exceptionally large newborn baby|Exceptionally large newborn baby +C2909951|T033|ET|P08.0|ICD10CM|Usually implies a birth weight of 4500 g. or more|Usually implies a birth weight of 4500 g. or more +C0477897|T047|PT|P08.1|ICD10|Other heavy for gestational age infants|Other heavy for gestational age infants +C2909955|T033|AB|P08.1|ICD10CM|Other heavy for gestational age newborn|Other heavy for gestational age newborn +C2909955|T033|PT|P08.1|ICD10CM|Other heavy for gestational age newborn|Other heavy for gestational age newborn +C2909953|T033|ET|P08.1|ICD10CM|Other newborn heavy- or large-for-dates regardless of period of gestation|Other newborn heavy- or large-for-dates regardless of period of gestation +C2909954|T033|ET|P08.1|ICD10CM|Usually implies a birth weight of 4000 g. to 4499 g.|Usually implies a birth weight of 4000 g. to 4499 g. +C2909956|T033|HT|P08.2|ICD10CM|Late newborn, not heavy for gestational age|Late newborn, not heavy for gestational age +C2909956|T033|AB|P08.2|ICD10CM|Late newborn, not heavy for gestational age|Late newborn, not heavy for gestational age +C0158917|T047|PT|P08.2|ICD10|Post-term infant, not heavy for gestational age|Post-term infant, not heavy for gestational age +C2909957|T046|ET|P08.21|ICD10CM|Newborn with gestation period over 40 completed weeks to 42 completed weeks|Newborn with gestation period over 40 completed weeks to 42 completed weeks +C2063259|T033|AB|P08.21|ICD10CM|Post-term newborn|Post-term newborn +C2063259|T033|PT|P08.21|ICD10CM|Post-term newborn|Post-term newborn +C0221007|T047|ET|P08.22|ICD10CM|Postmaturity NOS|Postmaturity NOS +C2909960|T046|AB|P08.22|ICD10CM|Prolonged gestation of newborn|Prolonged gestation of newborn +C2909960|T046|PT|P08.22|ICD10CM|Prolonged gestation of newborn|Prolonged gestation of newborn +C2909961|T033|PT|P09|ICD10CM|Abnormal findings on neonatal screening|Abnormal findings on neonatal screening +C2909961|T033|AB|P09|ICD10CM|Abnormal findings on neonatal screening|Abnormal findings on neonatal screening +C2909961|T033|HT|P09-P09|ICD10CM|Abnormal findings on neonatal screening (P09)|Abnormal findings on neonatal screening (P09) +C0495363|T037|HT|P10|ICD10|Intracranial laceration and haemorrhage due to birth injury|Intracranial laceration and haemorrhage due to birth injury +C0495363|T037|HT|P10|ICD10AE|Intracranial laceration and hemorrhage due to birth injury|Intracranial laceration and hemorrhage due to birth injury +C0495363|T037|AB|P10|ICD10CM|Intracranial laceration and hemorrhage due to birth injury|Intracranial laceration and hemorrhage due to birth injury +C0495363|T037|HT|P10|ICD10CM|Intracranial laceration and hemorrhage due to birth injury|Intracranial laceration and hemorrhage due to birth injury +C0005604|T037|HT|P10-P15|ICD10CM|Birth trauma (P10-P15)|Birth trauma (P10-P15) +C0005604|T037|HT|P10-P15.9|ICD10|Birth trauma|Birth trauma +C0473821|T037|PT|P10.0|ICD10|Subdural haemorrhage due to birth injury|Subdural haemorrhage due to birth injury +C2909962|T046|ET|P10.0|ICD10CM|Subdural hematoma (localized) due to birth injury|Subdural hematoma (localized) due to birth injury +C0473821|T037|PT|P10.0|ICD10CM|Subdural hemorrhage due to birth injury|Subdural hemorrhage due to birth injury +C0473821|T037|AB|P10.0|ICD10CM|Subdural hemorrhage due to birth injury|Subdural hemorrhage due to birth injury +C0473821|T037|PT|P10.0|ICD10AE|Subdural hemorrhage due to birth injury|Subdural hemorrhage due to birth injury +C0473819|T037|PT|P10.1|ICD10|Cerebral haemorrhage due to birth injury|Cerebral haemorrhage due to birth injury +C0473819|T037|PT|P10.1|ICD10AE|Cerebral hemorrhage due to birth injury|Cerebral hemorrhage due to birth injury +C0473819|T037|PT|P10.1|ICD10CM|Cerebral hemorrhage due to birth injury|Cerebral hemorrhage due to birth injury +C0473819|T037|AB|P10.1|ICD10CM|Cerebral hemorrhage due to birth injury|Cerebral hemorrhage due to birth injury +C0475586|T037|PT|P10.2|ICD10|Intraventricular haemorrhage due to birth injury|Intraventricular haemorrhage due to birth injury +C0475586|T037|PT|P10.2|ICD10CM|Intraventricular hemorrhage due to birth injury|Intraventricular hemorrhage due to birth injury +C0475586|T037|AB|P10.2|ICD10CM|Intraventricular hemorrhage due to birth injury|Intraventricular hemorrhage due to birth injury +C0475586|T037|PT|P10.2|ICD10AE|Intraventricular hemorrhage due to birth injury|Intraventricular hemorrhage due to birth injury +C0475592|T037|PT|P10.3|ICD10|Subarachnoid haemorrhage due to birth injury|Subarachnoid haemorrhage due to birth injury +C0475592|T037|PT|P10.3|ICD10AE|Subarachnoid hemorrhage due to birth injury|Subarachnoid hemorrhage due to birth injury +C0475592|T037|PT|P10.3|ICD10CM|Subarachnoid hemorrhage due to birth injury|Subarachnoid hemorrhage due to birth injury +C0475592|T037|AB|P10.3|ICD10CM|Subarachnoid hemorrhage due to birth injury|Subarachnoid hemorrhage due to birth injury +C0270088|T037|PT|P10.4|ICD10|Tentorial tear due to birth injury|Tentorial tear due to birth injury +C0270088|T037|PT|P10.4|ICD10CM|Tentorial tear due to birth injury|Tentorial tear due to birth injury +C0270088|T037|AB|P10.4|ICD10CM|Tentorial tear due to birth injury|Tentorial tear due to birth injury +C0477898|T037|AB|P10.8|ICD10CM|Oth intcrn lacerations and hemorrhages due to birth injury|Oth intcrn lacerations and hemorrhages due to birth injury +C0477898|T037|PT|P10.8|ICD10|Other intracranial lacerations and haemorrhages due to birth injury|Other intracranial lacerations and haemorrhages due to birth injury +C0477898|T037|PT|P10.8|ICD10CM|Other intracranial lacerations and hemorrhages due to birth injury|Other intracranial lacerations and hemorrhages due to birth injury +C0477898|T037|PT|P10.8|ICD10AE|Other intracranial lacerations and hemorrhages due to birth injury|Other intracranial lacerations and hemorrhages due to birth injury +C0495363|T037|AB|P10.9|ICD10CM|Unsp intcrn laceration and hemorrhage due to birth injury|Unsp intcrn laceration and hemorrhage due to birth injury +C0495363|T037|PT|P10.9|ICD10|Unspecified intracranial laceration and haemorrhage due to birth injury|Unspecified intracranial laceration and haemorrhage due to birth injury +C0495363|T037|PT|P10.9|ICD10CM|Unspecified intracranial laceration and hemorrhage due to birth injury|Unspecified intracranial laceration and hemorrhage due to birth injury +C0495363|T037|PT|P10.9|ICD10AE|Unspecified intracranial laceration and hemorrhage due to birth injury|Unspecified intracranial laceration and hemorrhage due to birth injury +C0495364|T037|HT|P11|ICD10|Other birth injuries to central nervous system|Other birth injuries to central nervous system +C0495364|T037|AB|P11|ICD10CM|Other birth injuries to central nervous system|Other birth injuries to central nervous system +C0495364|T037|HT|P11|ICD10CM|Other birth injuries to central nervous system|Other birth injuries to central nervous system +C0475588|T037|PT|P11.0|ICD10AE|Cerebral edema due to birth injury|Cerebral edema due to birth injury +C0475588|T037|PT|P11.0|ICD10CM|Cerebral edema due to birth injury|Cerebral edema due to birth injury +C0475588|T037|AB|P11.0|ICD10CM|Cerebral edema due to birth injury|Cerebral edema due to birth injury +C0475588|T037|PT|P11.0|ICD10|Cerebral oedema due to birth injury|Cerebral oedema due to birth injury +C0477899|T037|PT|P11.1|ICD10|Other specified brain damage due to birth injury|Other specified brain damage due to birth injury +C0477899|T037|PT|P11.1|ICD10CM|Other specified brain damage due to birth injury|Other specified brain damage due to birth injury +C0477899|T037|AB|P11.1|ICD10CM|Other specified brain damage due to birth injury|Other specified brain damage due to birth injury +C1536522|T037|PT|P11.2|ICD10|Unspecified brain damage due to birth injury|Unspecified brain damage due to birth injury +C1536522|T037|PT|P11.2|ICD10CM|Unspecified brain damage due to birth injury|Unspecified brain damage due to birth injury +C1536522|T037|AB|P11.2|ICD10CM|Unspecified brain damage due to birth injury|Unspecified brain damage due to birth injury +C0270103|T037|PT|P11.3|ICD10CM|Birth injury to facial nerve|Birth injury to facial nerve +C0270103|T037|AB|P11.3|ICD10CM|Birth injury to facial nerve|Birth injury to facial nerve +C0270103|T037|PT|P11.3|ICD10|Birth injury to facial nerve|Birth injury to facial nerve +C2909963|T033|ET|P11.3|ICD10CM|Facial palsy due to birth injury|Facial palsy due to birth injury +C0495366|T037|PT|P11.4|ICD10CM|Birth injury to other cranial nerves|Birth injury to other cranial nerves +C0495366|T037|AB|P11.4|ICD10CM|Birth injury to other cranial nerves|Birth injury to other cranial nerves +C0495366|T037|PT|P11.4|ICD10|Birth injury to other cranial nerves|Birth injury to other cranial nerves +C0411063|T037|PT|P11.5|ICD10|Birth injury to spine and spinal cord|Birth injury to spine and spinal cord +C0411063|T037|PT|P11.5|ICD10CM|Birth injury to spine and spinal cord|Birth injury to spine and spinal cord +C0411063|T037|AB|P11.5|ICD10CM|Birth injury to spine and spinal cord|Birth injury to spine and spinal cord +C2909964|T037|ET|P11.5|ICD10CM|Fracture of spine due to birth injury|Fracture of spine due to birth injury +C0477904|T037|PT|P11.9|ICD10CM|Birth injury to central nervous system, unspecified|Birth injury to central nervous system, unspecified +C0477904|T037|AB|P11.9|ICD10CM|Birth injury to central nervous system, unspecified|Birth injury to central nervous system, unspecified +C0477904|T037|PT|P11.9|ICD10|Birth injury to central nervous system, unspecified|Birth injury to central nervous system, unspecified +C0270089|T037|HT|P12|ICD10|Birth injury to scalp|Birth injury to scalp +C0270089|T037|HT|P12|ICD10CM|Birth injury to scalp|Birth injury to scalp +C0270089|T037|AB|P12|ICD10CM|Birth injury to scalp|Birth injury to scalp +C0007722|T047|PT|P12.0|ICD10|Cephalhaematoma due to birth injury|Cephalhaematoma due to birth injury +C0007722|T047|PT|P12.0|ICD10AE|Cephalhematoma due to birth injury|Cephalhematoma due to birth injury +C0007722|T047|PT|P12.0|ICD10CM|Cephalhematoma due to birth injury|Cephalhematoma due to birth injury +C0007722|T047|AB|P12.0|ICD10CM|Cephalhematoma due to birth injury|Cephalhematoma due to birth injury +C2909965|T037|AB|P12.1|ICD10CM|Chignon (from vacuum extraction) due to birth injury|Chignon (from vacuum extraction) due to birth injury +C2909965|T037|PT|P12.1|ICD10CM|Chignon (from vacuum extraction) due to birth injury|Chignon (from vacuum extraction) due to birth injury +C0495368|T037|PT|P12.1|ICD10|Chignon due to birth injury|Chignon due to birth injury +C4281682|T037|PT|P12.2|ICD10|Epicranial subaponeurotic haemorrhage due to birth injury|Epicranial subaponeurotic haemorrhage due to birth injury +C4281682|T037|PT|P12.2|ICD10AE|Epicranial subaponeurotic hemorrhage due to birth injury|Epicranial subaponeurotic hemorrhage due to birth injury +C4281682|T037|PT|P12.2|ICD10CM|Epicranial subaponeurotic hemorrhage due to birth injury|Epicranial subaponeurotic hemorrhage due to birth injury +C4281682|T037|AB|P12.2|ICD10CM|Epicranial subaponeurotic hemorrhage due to birth injury|Epicranial subaponeurotic hemorrhage due to birth injury +C0475728|T046|ET|P12.2|ICD10CM|Subgaleal hemorrhage|Subgaleal hemorrhage +C0495370|T037|PT|P12.3|ICD10|Bruising of scalp due to birth injury|Bruising of scalp due to birth injury +C0495370|T037|PT|P12.3|ICD10CM|Bruising of scalp due to birth injury|Bruising of scalp due to birth injury +C0495370|T037|AB|P12.3|ICD10CM|Bruising of scalp due to birth injury|Bruising of scalp due to birth injury +C2909968|T037|PT|P12.4|ICD10CM|Injury of scalp of newborn due to monitoring equipment|Injury of scalp of newborn due to monitoring equipment +C2909968|T037|AB|P12.4|ICD10CM|Injury of scalp of newborn due to monitoring equipment|Injury of scalp of newborn due to monitoring equipment +C0495371|T037|PT|P12.4|ICD10|Monitoring injury of scalp of newborn|Monitoring injury of scalp of newborn +C2909966|T037|ET|P12.4|ICD10CM|Sampling incision of scalp of newborn|Sampling incision of scalp of newborn +C2909967|T033|ET|P12.4|ICD10CM|Scalp clip (electrode) injury of newborn|Scalp clip (electrode) injury of newborn +C0477900|T037|PT|P12.8|ICD10|Other birth injuries to scalp|Other birth injuries to scalp +C0477900|T037|HT|P12.8|ICD10CM|Other birth injuries to scalp|Other birth injuries to scalp +C0477900|T037|AB|P12.8|ICD10CM|Other birth injuries to scalp|Other birth injuries to scalp +C0270090|T020|PT|P12.81|ICD10CM|Caput succedaneum|Caput succedaneum +C0270090|T020|AB|P12.81|ICD10CM|Caput succedaneum|Caput succedaneum +C0477900|T037|PT|P12.89|ICD10CM|Other birth injuries to scalp|Other birth injuries to scalp +C0477900|T037|AB|P12.89|ICD10CM|Other birth injuries to scalp|Other birth injuries to scalp +C0270089|T037|PT|P12.9|ICD10|Birth injury to scalp, unspecified|Birth injury to scalp, unspecified +C0270089|T037|PT|P12.9|ICD10CM|Birth injury to scalp, unspecified|Birth injury to scalp, unspecified +C0270089|T037|AB|P12.9|ICD10CM|Birth injury to scalp, unspecified|Birth injury to scalp, unspecified +C0411062|T037|AB|P13|ICD10CM|Birth injury to skeleton|Birth injury to skeleton +C0411062|T037|HT|P13|ICD10CM|Birth injury to skeleton|Birth injury to skeleton +C0411062|T037|HT|P13|ICD10|Birth injury to skeleton|Birth injury to skeleton +C0270096|T037|PT|P13.0|ICD10CM|Fracture of skull due to birth injury|Fracture of skull due to birth injury +C0270096|T037|AB|P13.0|ICD10CM|Fracture of skull due to birth injury|Fracture of skull due to birth injury +C0270096|T037|PT|P13.0|ICD10|Fracture of skull due to birth injury|Fracture of skull due to birth injury +C0477901|T037|PT|P13.1|ICD10|Other birth injuries to skull|Other birth injuries to skull +C0477901|T037|PT|P13.1|ICD10CM|Other birth injuries to skull|Other birth injuries to skull +C0477901|T037|AB|P13.1|ICD10CM|Other birth injuries to skull|Other birth injuries to skull +C0495373|T037|PT|P13.2|ICD10|Birth injury to femur|Birth injury to femur +C0495373|T037|PT|P13.2|ICD10CM|Birth injury to femur|Birth injury to femur +C0495373|T037|AB|P13.2|ICD10CM|Birth injury to femur|Birth injury to femur +C0495374|T037|PT|P13.3|ICD10CM|Birth injury to other long bones|Birth injury to other long bones +C0495374|T037|AB|P13.3|ICD10CM|Birth injury to other long bones|Birth injury to other long bones +C0495374|T037|PT|P13.3|ICD10|Birth injury to other long bones|Birth injury to other long bones +C0270094|T037|PT|P13.4|ICD10|Fracture of clavicle due to birth injury|Fracture of clavicle due to birth injury +C0270094|T037|PT|P13.4|ICD10CM|Fracture of clavicle due to birth injury|Fracture of clavicle due to birth injury +C0270094|T037|AB|P13.4|ICD10CM|Fracture of clavicle due to birth injury|Fracture of clavicle due to birth injury +C0495376|T037|PT|P13.8|ICD10|Birth injuries to other parts of skeleton|Birth injuries to other parts of skeleton +C0495376|T037|PT|P13.8|ICD10CM|Birth injuries to other parts of skeleton|Birth injuries to other parts of skeleton +C0495376|T037|AB|P13.8|ICD10CM|Birth injuries to other parts of skeleton|Birth injuries to other parts of skeleton +C0411062|T037|PT|P13.9|ICD10CM|Birth injury to skeleton, unspecified|Birth injury to skeleton, unspecified +C0411062|T037|AB|P13.9|ICD10CM|Birth injury to skeleton, unspecified|Birth injury to skeleton, unspecified +C0411062|T037|PT|P13.9|ICD10|Birth injury to skeleton, unspecified|Birth injury to skeleton, unspecified +C0270102|T037|AB|P14|ICD10CM|Birth injury to peripheral nervous system|Birth injury to peripheral nervous system +C0270102|T037|HT|P14|ICD10CM|Birth injury to peripheral nervous system|Birth injury to peripheral nervous system +C0270102|T037|HT|P14|ICD10|Birth injury to peripheral nervous system|Birth injury to peripheral nervous system +C0270107|T037|PT|P14.0|ICD10|Erb's paralysis due to birth injury|Erb's paralysis due to birth injury +C0270107|T037|PT|P14.0|ICD10CM|Erb's paralysis due to birth injury|Erb's paralysis due to birth injury +C0270107|T037|AB|P14.0|ICD10CM|Erb's paralysis due to birth injury|Erb's paralysis due to birth injury +C0270108|T037|PT|P14.1|ICD10CM|Klumpke's paralysis due to birth injury|Klumpke's paralysis due to birth injury +C0270108|T037|AB|P14.1|ICD10CM|Klumpke's paralysis due to birth injury|Klumpke's paralysis due to birth injury +C0270108|T037|PT|P14.1|ICD10|Klumpke's paralysis due to birth injury|Klumpke's paralysis due to birth injury +C0270109|T037|PT|P14.2|ICD10|Phrenic nerve paralysis due to birth injury|Phrenic nerve paralysis due to birth injury +C0270109|T037|PT|P14.2|ICD10CM|Phrenic nerve paralysis due to birth injury|Phrenic nerve paralysis due to birth injury +C0270109|T037|AB|P14.2|ICD10CM|Phrenic nerve paralysis due to birth injury|Phrenic nerve paralysis due to birth injury +C0477902|T037|PT|P14.3|ICD10|Other brachial plexus birth injuries|Other brachial plexus birth injuries +C0477902|T037|PT|P14.3|ICD10CM|Other brachial plexus birth injuries|Other brachial plexus birth injuries +C0477902|T037|AB|P14.3|ICD10CM|Other brachial plexus birth injuries|Other brachial plexus birth injuries +C0477905|T037|PT|P14.8|ICD10CM|Birth injuries to other parts of peripheral nervous system|Birth injuries to other parts of peripheral nervous system +C0477905|T037|AB|P14.8|ICD10CM|Birth injuries to other parts of peripheral nervous system|Birth injuries to other parts of peripheral nervous system +C0477905|T037|PT|P14.8|ICD10|Birth injuries to other parts of peripheral nervous system|Birth injuries to other parts of peripheral nervous system +C0270102|T037|PT|P14.9|ICD10CM|Birth injury to peripheral nervous system, unspecified|Birth injury to peripheral nervous system, unspecified +C0270102|T037|AB|P14.9|ICD10CM|Birth injury to peripheral nervous system, unspecified|Birth injury to peripheral nervous system, unspecified +C0270102|T037|PT|P14.9|ICD10|Birth injury to peripheral nervous system, unspecified|Birth injury to peripheral nervous system, unspecified +C0495381|T037|HT|P15|ICD10|Other birth injuries|Other birth injuries +C0495381|T037|AB|P15|ICD10CM|Other birth injuries|Other birth injuries +C0495381|T037|HT|P15|ICD10CM|Other birth injuries|Other birth injuries +C0391998|T037|PT|P15.0|ICD10|Birth injury to liver|Birth injury to liver +C0391998|T037|PT|P15.0|ICD10CM|Birth injury to liver|Birth injury to liver +C0391998|T037|AB|P15.0|ICD10CM|Birth injury to liver|Birth injury to liver +C2909969|T046|ET|P15.0|ICD10CM|Rupture of liver due to birth injury|Rupture of liver due to birth injury +C0701829|T037|PT|P15.1|ICD10CM|Birth injury to spleen|Birth injury to spleen +C0701829|T037|AB|P15.1|ICD10CM|Birth injury to spleen|Birth injury to spleen +C0701829|T037|PT|P15.1|ICD10|Birth injury to spleen|Birth injury to spleen +C2909970|T037|ET|P15.1|ICD10CM|Rupture of spleen due to birth injury|Rupture of spleen due to birth injury +C0452193|T037|PT|P15.2|ICD10CM|Sternomastoid injury due to birth injury|Sternomastoid injury due to birth injury +C0452193|T037|AB|P15.2|ICD10CM|Sternomastoid injury due to birth injury|Sternomastoid injury due to birth injury +C0452193|T037|PT|P15.2|ICD10|Sternomastoid injury due to birth injury|Sternomastoid injury due to birth injury +C0391997|T037|PT|P15.3|ICD10|Birth injury to eye|Birth injury to eye +C0391997|T037|PT|P15.3|ICD10CM|Birth injury to eye|Birth injury to eye +C0391997|T037|AB|P15.3|ICD10CM|Birth injury to eye|Birth injury to eye +C2909971|T046|ET|P15.3|ICD10CM|Subconjunctival hemorrhage due to birth injury|Subconjunctival hemorrhage due to birth injury +C2909972|T037|ET|P15.3|ICD10CM|Traumatic glaucoma due to birth injury|Traumatic glaucoma due to birth injury +C0495382|T037|PT|P15.4|ICD10|Birth injury to face|Birth injury to face +C0495382|T037|PT|P15.4|ICD10CM|Birth injury to face|Birth injury to face +C0495382|T037|AB|P15.4|ICD10CM|Birth injury to face|Birth injury to face +C2909973|T037|ET|P15.4|ICD10CM|Facial congestion due to birth injury|Facial congestion due to birth injury +C0495383|T037|PT|P15.5|ICD10CM|Birth injury to external genitalia|Birth injury to external genitalia +C0495383|T037|AB|P15.5|ICD10CM|Birth injury to external genitalia|Birth injury to external genitalia +C0495383|T037|PT|P15.5|ICD10|Birth injury to external genitalia|Birth injury to external genitalia +C0452195|T037|PT|P15.6|ICD10|Subcutaneous fat necrosis due to birth injury|Subcutaneous fat necrosis due to birth injury +C0452195|T037|PT|P15.6|ICD10CM|Subcutaneous fat necrosis due to birth injury|Subcutaneous fat necrosis due to birth injury +C0452195|T037|AB|P15.6|ICD10CM|Subcutaneous fat necrosis due to birth injury|Subcutaneous fat necrosis due to birth injury +C0477903|T037|PT|P15.8|ICD10CM|Other specified birth injuries|Other specified birth injuries +C0477903|T037|AB|P15.8|ICD10CM|Other specified birth injuries|Other specified birth injuries +C0477903|T037|PT|P15.8|ICD10|Other specified birth injuries|Other specified birth injuries +C0005604|T037|PT|P15.9|ICD10CM|Birth injury, unspecified|Birth injury, unspecified +C0005604|T037|AB|P15.9|ICD10CM|Birth injury, unspecified|Birth injury, unspecified +C0005604|T037|PT|P15.9|ICD10|Birth injury, unspecified|Birth injury, unspecified +C2909975|T047|HT|P19|ICD10CM|Metabolic acidemia in newborn|Metabolic acidemia in newborn +C2909975|T047|AB|P19|ICD10CM|Metabolic acidemia in newborn|Metabolic acidemia in newborn +C2909975|T047|ET|P19|ICD10CM|metabolic acidemia in newborn|metabolic acidemia in newborn +C0477906|T047|HT|P19-P29|ICD10CM|Respiratory and cardiovascular disorders specific to the perinatal period (P19-P29)|Respiratory and cardiovascular disorders specific to the perinatal period (P19-P29) +C2909976|T047|AB|P19.0|ICD10CM|Metabolic acidemia in newborn first noted before onset labor|Metabolic acidemia in newborn first noted before onset labor +C2909976|T047|PT|P19.0|ICD10CM|Metabolic acidemia in newborn first noted before onset of labor|Metabolic acidemia in newborn first noted before onset of labor +C2909977|T047|AB|P19.1|ICD10CM|Metabolic acidemia in newborn first noted during labor|Metabolic acidemia in newborn first noted during labor +C2909977|T047|PT|P19.1|ICD10CM|Metabolic acidemia in newborn first noted during labor|Metabolic acidemia in newborn first noted during labor +C2909978|T047|AB|P19.2|ICD10CM|Metabolic acidemia noted at birth|Metabolic acidemia noted at birth +C2909978|T047|PT|P19.2|ICD10CM|Metabolic acidemia noted at birth|Metabolic acidemia noted at birth +C2909979|T047|AB|P19.9|ICD10CM|Metabolic acidemia, unspecified|Metabolic acidemia, unspecified +C2909979|T047|PT|P19.9|ICD10CM|Metabolic acidemia, unspecified|Metabolic acidemia, unspecified +C0495385|T046|HT|P20|ICD10|Intrauterine hypoxia|Intrauterine hypoxia +C0477906|T047|HT|P20-P29.9|ICD10|Respiratory and cardiovascular disorders specific to the perinatal period|Respiratory and cardiovascular disorders specific to the perinatal period +C0495386|T033|PT|P20.0|ICD10AE|Intrauterine hypoxia first noted before onset of labor|Intrauterine hypoxia first noted before onset of labor +C0495386|T033|PT|P20.0|ICD10|Intrauterine hypoxia first noted before onset of labour|Intrauterine hypoxia first noted before onset of labour +C0495387|T033|PT|P20.1|ICD10AE|Intrauterine hypoxia first noted during labor and delivery|Intrauterine hypoxia first noted during labor and delivery +C0495387|T033|PT|P20.1|ICD10|Intrauterine hypoxia first noted during labour and delivery|Intrauterine hypoxia first noted during labour and delivery +C0495385|T046|PT|P20.9|ICD10|Intrauterine hypoxia, unspecified|Intrauterine hypoxia, unspecified +C0004045|T047|HT|P21|ICD10|Birth asphyxia|Birth asphyxia +C0158931|T046|PT|P21.0|ICD10|Severe birth asphyxia|Severe birth asphyxia +C0456089|T046|PT|P21.1|ICD10|Mild and moderate birth asphyxia|Mild and moderate birth asphyxia +C0004045|T047|PT|P21.9|ICD10|Birth asphyxia, unspecified|Birth asphyxia, unspecified +C0035220|T047|HT|P22|ICD10|Respiratory distress of newborn|Respiratory distress of newborn +C0035220|T047|AB|P22|ICD10CM|Respiratory distress of newborn|Respiratory distress of newborn +C0035220|T047|HT|P22|ICD10CM|Respiratory distress of newborn|Respiratory distress of newborn +C0035220|T047|ET|P22.0|ICD10CM|Cardiorespiratory distress syndrome of newborn|Cardiorespiratory distress syndrome of newborn +C0020192|T047|ET|P22.0|ICD10CM|Hyaline membrane disease|Hyaline membrane disease +C0035220|T047|ET|P22.0|ICD10CM|Idiopathic respiratory distress syndrome [IRDS or RDS] of newborn|Idiopathic respiratory distress syndrome [IRDS or RDS] of newborn +C2909980|T047|ET|P22.0|ICD10CM|Pulmonary hypoperfusion syndrome|Pulmonary hypoperfusion syndrome +C0035220|T047|PT|P22.0|ICD10CM|Respiratory distress syndrome of newborn|Respiratory distress syndrome of newborn +C0035220|T047|AB|P22.0|ICD10CM|Respiratory distress syndrome of newborn|Respiratory distress syndrome of newborn +C0035220|T047|PT|P22.0|ICD10|Respiratory distress syndrome of newborn|Respiratory distress syndrome of newborn +C2909981|T047|ET|P22.0|ICD10CM|Respiratory distress syndrome, type I|Respiratory distress syndrome, type I +C0158940|T047|ET|P22.1|ICD10CM|Idiopathic tachypnea of newborn|Idiopathic tachypnea of newborn +C0158940|T047|ET|P22.1|ICD10CM|Respiratory distress syndrome, type II|Respiratory distress syndrome, type II +C0158940|T047|PT|P22.1|ICD10CM|Transient tachypnea of newborn|Transient tachypnea of newborn +C0158940|T047|AB|P22.1|ICD10CM|Transient tachypnea of newborn|Transient tachypnea of newborn +C0158940|T047|PT|P22.1|ICD10AE|Transient tachypnea of newborn|Transient tachypnea of newborn +C0158940|T047|PT|P22.1|ICD10|Transient tachypnoea of newborn|Transient tachypnoea of newborn +C0158940|T047|ET|P22.1|ICD10CM|Wet lung syndrome|Wet lung syndrome +C0477907|T046|PT|P22.8|ICD10CM|Other respiratory distress of newborn|Other respiratory distress of newborn +C0477907|T046|AB|P22.8|ICD10CM|Other respiratory distress of newborn|Other respiratory distress of newborn +C0477907|T046|PT|P22.8|ICD10|Other respiratory distress of newborn|Other respiratory distress of newborn +C0035220|T047|PT|P22.9|ICD10CM|Respiratory distress of newborn, unspecified|Respiratory distress of newborn, unspecified +C0035220|T047|AB|P22.9|ICD10CM|Respiratory distress of newborn, unspecified|Respiratory distress of newborn, unspecified +C0035220|T047|PT|P22.9|ICD10|Respiratory distress of newborn, unspecified|Respiratory distress of newborn, unspecified +C0158935|T047|HT|P23|ICD10|Congenital pneumonia|Congenital pneumonia +C0158935|T047|HT|P23|ICD10CM|Congenital pneumonia|Congenital pneumonia +C0158935|T047|AB|P23|ICD10CM|Congenital pneumonia|Congenital pneumonia +C4290264|T047|ET|P23|ICD10CM|infective pneumonia acquired in utero or during birth|infective pneumonia acquired in utero or during birth +C0495389|T047|PT|P23.0|ICD10|Congenital pneumonia due to viral agent|Congenital pneumonia due to viral agent +C0495389|T047|PT|P23.0|ICD10CM|Congenital pneumonia due to viral agent|Congenital pneumonia due to viral agent +C0495389|T047|AB|P23.0|ICD10CM|Congenital pneumonia due to viral agent|Congenital pneumonia due to viral agent +C0349359|T019|PT|P23.1|ICD10|Congenital pneumonia due to Chlamydia|Congenital pneumonia due to Chlamydia +C0349359|T047|PT|P23.1|ICD10|Congenital pneumonia due to Chlamydia|Congenital pneumonia due to Chlamydia +C0349359|T019|PT|P23.1|ICD10CM|Congenital pneumonia due to Chlamydia|Congenital pneumonia due to Chlamydia +C0349359|T047|PT|P23.1|ICD10CM|Congenital pneumonia due to Chlamydia|Congenital pneumonia due to Chlamydia +C0349359|T019|AB|P23.1|ICD10CM|Congenital pneumonia due to Chlamydia|Congenital pneumonia due to Chlamydia +C0349359|T047|AB|P23.1|ICD10CM|Congenital pneumonia due to Chlamydia|Congenital pneumonia due to Chlamydia +C0343320|T047|PT|P23.2|ICD10|Congenital pneumonia due to staphylococcus|Congenital pneumonia due to staphylococcus +C0343320|T047|PT|P23.2|ICD10CM|Congenital pneumonia due to staphylococcus|Congenital pneumonia due to staphylococcus +C0343320|T047|AB|P23.2|ICD10CM|Congenital pneumonia due to staphylococcus|Congenital pneumonia due to staphylococcus +C0495390|T047|PT|P23.3|ICD10|Congenital pneumonia due to streptococcus, group B|Congenital pneumonia due to streptococcus, group B +C0495390|T047|PT|P23.3|ICD10CM|Congenital pneumonia due to streptococcus, group B|Congenital pneumonia due to streptococcus, group B +C0495390|T047|AB|P23.3|ICD10CM|Congenital pneumonia due to streptococcus, group B|Congenital pneumonia due to streptococcus, group B +C0343323|T047|PT|P23.4|ICD10|Congenital pneumonia due to Escherichia coli|Congenital pneumonia due to Escherichia coli +C0343323|T047|PT|P23.4|ICD10CM|Congenital pneumonia due to Escherichia coli|Congenital pneumonia due to Escherichia coli +C0343323|T047|AB|P23.4|ICD10CM|Congenital pneumonia due to Escherichia coli|Congenital pneumonia due to Escherichia coli +C0343324|T047|PT|P23.5|ICD10CM|Congenital pneumonia due to Pseudomonas|Congenital pneumonia due to Pseudomonas +C0343324|T047|AB|P23.5|ICD10CM|Congenital pneumonia due to Pseudomonas|Congenital pneumonia due to Pseudomonas +C0343324|T047|PT|P23.5|ICD10|Congenital pneumonia due to Pseudomonas|Congenital pneumonia due to Pseudomonas +C2909983|T047|ET|P23.6|ICD10CM|Congenital pneumonia due to Hemophilus influenzae|Congenital pneumonia due to Hemophilus influenzae +C2909984|T047|ET|P23.6|ICD10CM|Congenital pneumonia due to Klebsiella pneumoniae|Congenital pneumonia due to Klebsiella pneumoniae +C2909985|T047|ET|P23.6|ICD10CM|Congenital pneumonia due to Mycoplasma|Congenital pneumonia due to Mycoplasma +C0477908|T047|PT|P23.6|ICD10CM|Congenital pneumonia due to other bacterial agents|Congenital pneumonia due to other bacterial agents +C0477908|T047|AB|P23.6|ICD10CM|Congenital pneumonia due to other bacterial agents|Congenital pneumonia due to other bacterial agents +C0477908|T047|PT|P23.6|ICD10|Congenital pneumonia due to other bacterial agents|Congenital pneumonia due to other bacterial agents +C2909986|T047|ET|P23.6|ICD10CM|Congenital pneumonia due to Streptococcus, except group B|Congenital pneumonia due to Streptococcus, except group B +C0477909|T047|PT|P23.8|ICD10|Congenital pneumonia due to other organisms|Congenital pneumonia due to other organisms +C0477909|T047|PT|P23.8|ICD10CM|Congenital pneumonia due to other organisms|Congenital pneumonia due to other organisms +C0477909|T047|AB|P23.8|ICD10CM|Congenital pneumonia due to other organisms|Congenital pneumonia due to other organisms +C0158935|T047|PT|P23.9|ICD10|Congenital pneumonia, unspecified|Congenital pneumonia, unspecified +C0158935|T047|PT|P23.9|ICD10CM|Congenital pneumonia, unspecified|Congenital pneumonia, unspecified +C0158935|T047|AB|P23.9|ICD10CM|Congenital pneumonia, unspecified|Congenital pneumonia, unspecified +C4290265|T047|ET|P24|ICD10CM|aspiration in utero and during delivery|aspiration in utero and during delivery +C1142168|T047|HT|P24|ICD10CM|Neonatal aspiration|Neonatal aspiration +C1142168|T047|AB|P24|ICD10CM|Neonatal aspiration|Neonatal aspiration +C0349468|T047|HT|P24|ICD10|Neonatal aspiration syndromes|Neonatal aspiration syndromes +C0025048|T047|HT|P24.0|ICD10CM|Meconium aspiration|Meconium aspiration +C0025048|T047|AB|P24.0|ICD10CM|Meconium aspiration|Meconium aspiration +C0025048|T047|PT|P24.0|ICD10|Neonatal aspiration of meconium|Neonatal aspiration of meconium +C0025048|T047|ET|P24.00|ICD10CM|Meconium aspiration NOS|Meconium aspiration NOS +C1561792|T046|PT|P24.00|ICD10CM|Meconium aspiration without respiratory symptoms|Meconium aspiration without respiratory symptoms +C1561792|T046|AB|P24.00|ICD10CM|Meconium aspiration without respiratory symptoms|Meconium aspiration without respiratory symptoms +C1388846|T047|ET|P24.01|ICD10CM|Meconium aspiration pneumonia|Meconium aspiration pneumonia +C0270155|T047|ET|P24.01|ICD10CM|Meconium aspiration pneumonitis|Meconium aspiration pneumonitis +C0025048|T047|ET|P24.01|ICD10CM|Meconium aspiration syndrome NOS|Meconium aspiration syndrome NOS +C1561793|T046|AB|P24.01|ICD10CM|Meconium aspiration with respiratory symptoms|Meconium aspiration with respiratory symptoms +C1561793|T046|PT|P24.01|ICD10CM|Meconium aspiration with respiratory symptoms|Meconium aspiration with respiratory symptoms +C2909989|T047|AB|P24.1|ICD10CM|Neonatal aspiration of (clear) amniotic fluid and mucus|Neonatal aspiration of (clear) amniotic fluid and mucus +C2909989|T047|HT|P24.1|ICD10CM|Neonatal aspiration of (clear) amniotic fluid and mucus|Neonatal aspiration of (clear) amniotic fluid and mucus +C0495391|T033|PT|P24.1|ICD10|Neonatal aspiration of amniotic fluid and mucus|Neonatal aspiration of amniotic fluid and mucus +C2909988|T046|ET|P24.1|ICD10CM|Neonatal aspiration of liquor (amnii)|Neonatal aspiration of liquor (amnii) +C2909990|T047|AB|P24.10|ICD10CM|Neonatal aspirat of amnio fluid and mucus w/o resp symp|Neonatal aspirat of amnio fluid and mucus w/o resp symp +C2909990|T047|PT|P24.10|ICD10CM|Neonatal aspiration of (clear) amniotic fluid and mucus without respiratory symptoms|Neonatal aspiration of (clear) amniotic fluid and mucus without respiratory symptoms +C0495391|T033|ET|P24.10|ICD10CM|Neonatal aspiration of amniotic fluid and mucus NOS|Neonatal aspiration of amniotic fluid and mucus NOS +C2909993|T047|AB|P24.11|ICD10CM|Neonatal aspirat of amnio fluid and mucus w resp symp|Neonatal aspirat of amnio fluid and mucus w resp symp +C2909993|T047|PT|P24.11|ICD10CM|Neonatal aspiration of (clear) amniotic fluid and mucus with respiratory symptoms|Neonatal aspiration of (clear) amniotic fluid and mucus with respiratory symptoms +C2909991|T046|ET|P24.11|ICD10CM|Neonatal aspiration of amniotic fluid and mucus with pneumonia|Neonatal aspiration of amniotic fluid and mucus with pneumonia +C2909992|T046|ET|P24.11|ICD10CM|Neonatal aspiration of amniotic fluid and mucus with pneumonitis|Neonatal aspiration of amniotic fluid and mucus with pneumonitis +C0456015|T046|HT|P24.2|ICD10CM|Neonatal aspiration of blood|Neonatal aspiration of blood +C0456015|T046|AB|P24.2|ICD10CM|Neonatal aspiration of blood|Neonatal aspiration of blood +C0456015|T046|PT|P24.2|ICD10|Neonatal aspiration of blood|Neonatal aspiration of blood +C0456015|T046|ET|P24.20|ICD10CM|Neonatal aspiration of blood NOS|Neonatal aspiration of blood NOS +C2909994|T047|AB|P24.20|ICD10CM|Neonatal aspiration of blood without respiratory symptoms|Neonatal aspiration of blood without respiratory symptoms +C2909994|T047|PT|P24.20|ICD10CM|Neonatal aspiration of blood without respiratory symptoms|Neonatal aspiration of blood without respiratory symptoms +C2909995|T046|ET|P24.21|ICD10CM|Neonatal aspiration of blood with pneumonia|Neonatal aspiration of blood with pneumonia +C2909996|T046|ET|P24.21|ICD10CM|Neonatal aspiration of blood with pneumonitis|Neonatal aspiration of blood with pneumonitis +C2909997|T047|AB|P24.21|ICD10CM|Neonatal aspiration of blood with respiratory symptoms|Neonatal aspiration of blood with respiratory symptoms +C2909997|T047|PT|P24.21|ICD10CM|Neonatal aspiration of blood with respiratory symptoms|Neonatal aspiration of blood with respiratory symptoms +C0452196|T047|HT|P24.3|ICD10CM|Neonatal aspiration of milk and regurgitated food|Neonatal aspiration of milk and regurgitated food +C0452196|T047|AB|P24.3|ICD10CM|Neonatal aspiration of milk and regurgitated food|Neonatal aspiration of milk and regurgitated food +C0452196|T047|PT|P24.3|ICD10|Neonatal aspiration of milk and regurgitated food|Neonatal aspiration of milk and regurgitated food +C2909998|T046|ET|P24.3|ICD10CM|Neonatal aspiration of stomach contents|Neonatal aspiration of stomach contents +C2909999|T033|AB|P24.30|ICD10CM|Neonatal aspirat of milk and regurgitated food w/o resp symp|Neonatal aspirat of milk and regurgitated food w/o resp symp +C0452196|T047|ET|P24.30|ICD10CM|Neonatal aspiration of milk and regurgitated food NOS|Neonatal aspiration of milk and regurgitated food NOS +C2909999|T033|PT|P24.30|ICD10CM|Neonatal aspiration of milk and regurgitated food without respiratory symptoms|Neonatal aspiration of milk and regurgitated food without respiratory symptoms +C2910002|T033|AB|P24.31|ICD10CM|Neonatal aspirat of milk and regurgitated food w resp symp|Neonatal aspirat of milk and regurgitated food w resp symp +C2910000|T046|ET|P24.31|ICD10CM|Neonatal aspiration of milk and regurgitated food with pneumonia|Neonatal aspiration of milk and regurgitated food with pneumonia +C2910001|T046|ET|P24.31|ICD10CM|Neonatal aspiration of milk and regurgitated food with pneumonitis|Neonatal aspiration of milk and regurgitated food with pneumonitis +C2910002|T033|PT|P24.31|ICD10CM|Neonatal aspiration of milk and regurgitated food with respiratory symptoms|Neonatal aspiration of milk and regurgitated food with respiratory symptoms +C2910003|T047|AB|P24.8|ICD10CM|Other neonatal aspiration|Other neonatal aspiration +C2910003|T047|HT|P24.8|ICD10CM|Other neonatal aspiration|Other neonatal aspiration +C0477910|T047|PT|P24.8|ICD10|Other neonatal aspiration syndromes|Other neonatal aspiration syndromes +C2910004|T047|ET|P24.80|ICD10CM|Neonatal aspiration NEC|Neonatal aspiration NEC +C2910005|T047|AB|P24.80|ICD10CM|Other neonatal aspiration without respiratory symptoms|Other neonatal aspiration without respiratory symptoms +C2910005|T047|PT|P24.80|ICD10CM|Other neonatal aspiration without respiratory symptoms|Other neonatal aspiration without respiratory symptoms +C2910006|T046|ET|P24.81|ICD10CM|Neonatal aspiration pneumonia NEC|Neonatal aspiration pneumonia NEC +C0349497|T047|ET|P24.81|ICD10CM|Neonatal aspiration with pneumonia NOS|Neonatal aspiration with pneumonia NOS +C2910007|T047|ET|P24.81|ICD10CM|Neonatal aspiration with pneumonitis NEC|Neonatal aspiration with pneumonitis NEC +C1404864|T047|ET|P24.81|ICD10CM|Neonatal aspiration with pneumonitis NOS|Neonatal aspiration with pneumonitis NOS +C2910008|T047|AB|P24.81|ICD10CM|Other neonatal aspiration with respiratory symptoms|Other neonatal aspiration with respiratory symptoms +C2910008|T047|PT|P24.81|ICD10CM|Other neonatal aspiration with respiratory symptoms|Other neonatal aspiration with respiratory symptoms +C0349468|T047|PT|P24.9|ICD10|Neonatal aspiration syndrome, unspecified|Neonatal aspiration syndrome, unspecified +C1142168|T047|AB|P24.9|ICD10CM|Neonatal aspiration, unspecified|Neonatal aspiration, unspecified +C1142168|T047|PT|P24.9|ICD10CM|Neonatal aspiration, unspecified|Neonatal aspiration, unspecified +C0495393|T047|AB|P25|ICD10CM|Interstit emphysema and rel cond origin in perinat period|Interstit emphysema and rel cond origin in perinat period +C0495393|T047|HT|P25|ICD10CM|Interstitial emphysema and related conditions originating in the perinatal period|Interstitial emphysema and related conditions originating in the perinatal period +C0495393|T047|HT|P25|ICD10|Interstitial emphysema and related conditions originating in the perinatal period|Interstitial emphysema and related conditions originating in the perinatal period +C0411031|T047|PT|P25.0|ICD10|Interstitial emphysema originating in the perinatal period|Interstitial emphysema originating in the perinatal period +C0411031|T047|PT|P25.0|ICD10CM|Interstitial emphysema originating in the perinatal period|Interstitial emphysema originating in the perinatal period +C0411031|T047|AB|P25.0|ICD10CM|Interstitial emphysema originating in the perinatal period|Interstitial emphysema originating in the perinatal period +C0270159|T047|PT|P25.1|ICD10|Pneumothorax originating in the perinatal period|Pneumothorax originating in the perinatal period +C0270159|T047|PT|P25.1|ICD10CM|Pneumothorax originating in the perinatal period|Pneumothorax originating in the perinatal period +C0270159|T047|AB|P25.1|ICD10CM|Pneumothorax originating in the perinatal period|Pneumothorax originating in the perinatal period +C0270157|T046|PT|P25.2|ICD10CM|Pneumomediastinum originating in the perinatal period|Pneumomediastinum originating in the perinatal period +C0270157|T046|AB|P25.2|ICD10CM|Pneumomediastinum originating in the perinatal period|Pneumomediastinum originating in the perinatal period +C0270157|T046|PT|P25.2|ICD10|Pneumomediastinum originating in the perinatal period|Pneumomediastinum originating in the perinatal period +C0270158|T047|PT|P25.3|ICD10|Pneumopericardium originating in the perinatal period|Pneumopericardium originating in the perinatal period +C0270158|T047|PT|P25.3|ICD10CM|Pneumopericardium originating in the perinatal period|Pneumopericardium originating in the perinatal period +C0270158|T047|AB|P25.3|ICD10CM|Pneumopericardium originating in the perinatal period|Pneumopericardium originating in the perinatal period +C0477911|T046|AB|P25.8|ICD10CM|Oth cond rel to interstit emphysema origin in perinat period|Oth cond rel to interstit emphysema origin in perinat period +C0477911|T046|PT|P25.8|ICD10CM|Other conditions related to interstitial emphysema originating in the perinatal period|Other conditions related to interstitial emphysema originating in the perinatal period +C0477911|T046|PT|P25.8|ICD10|Other conditions related to interstitial emphysema originating in the perinatal period|Other conditions related to interstitial emphysema originating in the perinatal period +C0475713|T046|HT|P26|ICD10|Pulmonary haemorrhage originating in the perinatal period|Pulmonary haemorrhage originating in the perinatal period +C0475713|T046|HT|P26|ICD10AE|Pulmonary hemorrhage originating in the perinatal period|Pulmonary hemorrhage originating in the perinatal period +C0475713|T046|AB|P26|ICD10CM|Pulmonary hemorrhage originating in the perinatal period|Pulmonary hemorrhage originating in the perinatal period +C0475713|T046|HT|P26|ICD10CM|Pulmonary hemorrhage originating in the perinatal period|Pulmonary hemorrhage originating in the perinatal period +C0475604|T046|PT|P26.0|ICD10|Tracheobronchial haemorrhage originating in the perinatal period|Tracheobronchial haemorrhage originating in the perinatal period +C0475604|T046|AB|P26.0|ICD10CM|Tracheobronchial hemorrhage origin in the perinatal period|Tracheobronchial hemorrhage origin in the perinatal period +C0475604|T046|PT|P26.0|ICD10CM|Tracheobronchial hemorrhage originating in the perinatal period|Tracheobronchial hemorrhage originating in the perinatal period +C0475604|T046|PT|P26.0|ICD10AE|Tracheobronchial hemorrhage originating in the perinatal period|Tracheobronchial hemorrhage originating in the perinatal period +C0495399|T046|PT|P26.1|ICD10|Massive pulmonary haemorrhage originating in the perinatal period|Massive pulmonary haemorrhage originating in the perinatal period +C0495399|T046|AB|P26.1|ICD10CM|Massive pulmonary hemorrhage origin in the perinatal period|Massive pulmonary hemorrhage origin in the perinatal period +C0495399|T046|PT|P26.1|ICD10CM|Massive pulmonary hemorrhage originating in the perinatal period|Massive pulmonary hemorrhage originating in the perinatal period +C0495399|T046|PT|P26.1|ICD10AE|Massive pulmonary hemorrhage originating in the perinatal period|Massive pulmonary hemorrhage originating in the perinatal period +C0477912|T046|AB|P26.8|ICD10CM|Oth pulmonary hemorrhages origin in the perinatal period|Oth pulmonary hemorrhages origin in the perinatal period +C0477912|T046|PT|P26.8|ICD10|Other pulmonary haemorrhages originating in the perinatal period|Other pulmonary haemorrhages originating in the perinatal period +C0477912|T046|PT|P26.8|ICD10CM|Other pulmonary hemorrhages originating in the perinatal period|Other pulmonary hemorrhages originating in the perinatal period +C0477912|T046|PT|P26.8|ICD10AE|Other pulmonary hemorrhages originating in the perinatal period|Other pulmonary hemorrhages originating in the perinatal period +C0475713|T046|AB|P26.9|ICD10CM|Unsp pulmonary hemorrhage origin in the perinatal period|Unsp pulmonary hemorrhage origin in the perinatal period +C0475713|T046|PT|P26.9|ICD10|Unspecified pulmonary haemorrhage originating in the perinatal period|Unspecified pulmonary haemorrhage originating in the perinatal period +C0475713|T046|PT|P26.9|ICD10CM|Unspecified pulmonary hemorrhage originating in the perinatal period|Unspecified pulmonary hemorrhage originating in the perinatal period +C0475713|T046|PT|P26.9|ICD10AE|Unspecified pulmonary hemorrhage originating in the perinatal period|Unspecified pulmonary hemorrhage originating in the perinatal period +C0456017|T047|AB|P27|ICD10CM|Chronic respiratory disease origin in the perinatal period|Chronic respiratory disease origin in the perinatal period +C0456017|T047|HT|P27|ICD10CM|Chronic respiratory disease originating in the perinatal period|Chronic respiratory disease originating in the perinatal period +C0456017|T047|HT|P27|ICD10|Chronic respiratory disease originating in the perinatal period|Chronic respiratory disease originating in the perinatal period +C0270171|T047|ET|P27.0|ICD10CM|Pulmonary dysmaturity|Pulmonary dysmaturity +C0270171|T047|PT|P27.0|ICD10CM|Wilson-Mikity syndrome|Wilson-Mikity syndrome +C0270171|T047|AB|P27.0|ICD10CM|Wilson-Mikity syndrome|Wilson-Mikity syndrome +C0270171|T047|PT|P27.0|ICD10|Wilson-Mikity syndrome|Wilson-Mikity syndrome +C0495402|T047|AB|P27.1|ICD10CM|Bronchopulmonary dysplasia origin in the perinatal period|Bronchopulmonary dysplasia origin in the perinatal period +C0495402|T047|PT|P27.1|ICD10CM|Bronchopulmonary dysplasia originating in the perinatal period|Bronchopulmonary dysplasia originating in the perinatal period +C0495402|T047|PT|P27.1|ICD10|Bronchopulmonary dysplasia originating in the perinatal period|Bronchopulmonary dysplasia originating in the perinatal period +C1397339|T019|ET|P27.8|ICD10CM|Congenital pulmonary fibrosis|Congenital pulmonary fibrosis +C1397339|T047|ET|P27.8|ICD10CM|Congenital pulmonary fibrosis|Congenital pulmonary fibrosis +C0477913|T047|AB|P27.8|ICD10CM|Oth chronic resp diseases origin in the perinatal period|Oth chronic resp diseases origin in the perinatal period +C0477913|T047|PT|P27.8|ICD10CM|Other chronic respiratory diseases originating in the perinatal period|Other chronic respiratory diseases originating in the perinatal period +C0477913|T047|PT|P27.8|ICD10|Other chronic respiratory diseases originating in the perinatal period|Other chronic respiratory diseases originating in the perinatal period +C0006287|T047|ET|P27.8|ICD10CM|Ventilator lung in newborn|Ventilator lung in newborn +C0456017|T047|AB|P27.9|ICD10CM|Unsp chronic resp disease origin in the perinatal period|Unsp chronic resp disease origin in the perinatal period +C0456017|T047|PT|P27.9|ICD10CM|Unspecified chronic respiratory disease originating in the perinatal period|Unspecified chronic respiratory disease originating in the perinatal period +C0456017|T047|PT|P27.9|ICD10|Unspecified chronic respiratory disease originating in the perinatal period|Unspecified chronic respiratory disease originating in the perinatal period +C0495404|T046|AB|P28|ICD10CM|Oth respiratory conditions origin in the perinatal period|Oth respiratory conditions origin in the perinatal period +C0495404|T046|HT|P28|ICD10CM|Other respiratory conditions originating in the perinatal period|Other respiratory conditions originating in the perinatal period +C0495404|T046|HT|P28|ICD10|Other respiratory conditions originating in the perinatal period|Other respiratory conditions originating in the perinatal period +C0270163|T046|PT|P28.0|ICD10|Primary atelectasis of newborn|Primary atelectasis of newborn +C0270163|T046|PT|P28.0|ICD10CM|Primary atelectasis of newborn|Primary atelectasis of newborn +C0270163|T046|AB|P28.0|ICD10CM|Primary atelectasis of newborn|Primary atelectasis of newborn +C0270163|T046|ET|P28.0|ICD10CM|Primary failure to expand terminal respiratory units|Primary failure to expand terminal respiratory units +C0456796|T047|ET|P28.0|ICD10CM|Pulmonary hypoplasia associated with short gestation|Pulmonary hypoplasia associated with short gestation +C0270163|T046|ET|P28.0|ICD10CM|Pulmonary immaturity NOS|Pulmonary immaturity NOS +C0158939|T047|HT|P28.1|ICD10CM|Other and unspecified atelectasis of newborn|Other and unspecified atelectasis of newborn +C0158939|T047|AB|P28.1|ICD10CM|Other and unspecified atelectasis of newborn|Other and unspecified atelectasis of newborn +C0158939|T047|PT|P28.1|ICD10|Other and unspecified atelectasis of newborn|Other and unspecified atelectasis of newborn +C0270164|T019|ET|P28.10|ICD10CM|Atelectasis of newborn NOS|Atelectasis of newborn NOS +C0270164|T019|AB|P28.10|ICD10CM|Unspecified atelectasis of newborn|Unspecified atelectasis of newborn +C0270164|T019|PT|P28.10|ICD10CM|Unspecified atelectasis of newborn|Unspecified atelectasis of newborn +C2910009|T047|AB|P28.11|ICD10CM|Resorption atelectasis without respiratory distress syndrome|Resorption atelectasis without respiratory distress syndrome +C2910009|T047|PT|P28.11|ICD10CM|Resorption atelectasis without respiratory distress syndrome|Resorption atelectasis without respiratory distress syndrome +C2910011|T047|AB|P28.19|ICD10CM|Other atelectasis of newborn|Other atelectasis of newborn +C2910011|T047|PT|P28.19|ICD10CM|Other atelectasis of newborn|Other atelectasis of newborn +C1409247|T047|ET|P28.19|ICD10CM|Partial atelectasis of newborn|Partial atelectasis of newborn +C2910010|T047|ET|P28.19|ICD10CM|Secondary atelectasis of newborn|Secondary atelectasis of newborn +C0270148|T047|PT|P28.2|ICD10CM|Cyanotic attacks of newborn|Cyanotic attacks of newborn +C0270148|T047|AB|P28.2|ICD10CM|Cyanotic attacks of newborn|Cyanotic attacks of newborn +C0270148|T047|PT|P28.2|ICD10|Cyanotic attacks of newborn|Cyanotic attacks of newborn +C2977486|T046|ET|P28.3|ICD10CM|Central sleep apnea of newborn|Central sleep apnea of newborn +C2977487|T046|ET|P28.3|ICD10CM|Obstructive sleep apnea of newborn|Obstructive sleep apnea of newborn +C0475712|T046|PT|P28.3|ICD10AE|Primary sleep apnea of newborn|Primary sleep apnea of newborn +C0475712|T046|PT|P28.3|ICD10CM|Primary sleep apnea of newborn|Primary sleep apnea of newborn +C0475712|T046|AB|P28.3|ICD10CM|Primary sleep apnea of newborn|Primary sleep apnea of newborn +C0475712|T046|PT|P28.3|ICD10|Primary sleep apnoea of newborn|Primary sleep apnoea of newborn +C1135365|T047|ET|P28.3|ICD10CM|Sleep apnea of newborn NOS|Sleep apnea of newborn NOS +C0475715|T046|ET|P28.4|ICD10CM|Apnea of prematurity|Apnea of prematurity +C0475716|T046|ET|P28.4|ICD10CM|Obstructive apnea of newborn|Obstructive apnea of newborn +C0477914|T046|PT|P28.4|ICD10CM|Other apnea of newborn|Other apnea of newborn +C0477914|T046|AB|P28.4|ICD10CM|Other apnea of newborn|Other apnea of newborn +C0477914|T046|PT|P28.4|ICD10AE|Other apnea of newborn|Other apnea of newborn +C0477914|T046|PT|P28.4|ICD10|Other apnoea of newborn|Other apnoea of newborn +C0521648|T047|PT|P28.5|ICD10|Respiratory failure of newborn|Respiratory failure of newborn +C0521648|T047|PT|P28.5|ICD10CM|Respiratory failure of newborn|Respiratory failure of newborn +C0521648|T047|AB|P28.5|ICD10CM|Respiratory failure of newborn|Respiratory failure of newborn +C0477915|T047|PT|P28.8|ICD10|Other specified respiratory conditions of newborn|Other specified respiratory conditions of newborn +C0477915|T047|HT|P28.8|ICD10CM|Other specified respiratory conditions of newborn|Other specified respiratory conditions of newborn +C0477915|T047|AB|P28.8|ICD10CM|Other specified respiratory conditions of newborn|Other specified respiratory conditions of newborn +C0235065|T046|AB|P28.81|ICD10CM|Respiratory arrest of newborn|Respiratory arrest of newborn +C0235065|T046|PT|P28.81|ICD10CM|Respiratory arrest of newborn|Respiratory arrest of newborn +C0265763|T019|ET|P28.89|ICD10CM|Congenital laryngeal stridor|Congenital laryngeal stridor +C0477915|T047|PT|P28.89|ICD10CM|Other specified respiratory conditions of newborn|Other specified respiratory conditions of newborn +C0477915|T047|AB|P28.89|ICD10CM|Other specified respiratory conditions of newborn|Other specified respiratory conditions of newborn +C2910012|T184|ET|P28.89|ICD10CM|Sniffles in newborn|Sniffles in newborn +C0456018|T047|ET|P28.89|ICD10CM|Snuffles in newborn|Snuffles in newborn +C0701161|T047|PT|P28.9|ICD10CM|Respiratory condition of newborn, unspecified|Respiratory condition of newborn, unspecified +C0701161|T047|AB|P28.9|ICD10CM|Respiratory condition of newborn, unspecified|Respiratory condition of newborn, unspecified +C0701161|T047|PT|P28.9|ICD10|Respiratory condition of newborn, unspecified|Respiratory condition of newborn, unspecified +C2910013|T047|ET|P28.9|ICD10CM|Respiratory depression in newborn|Respiratory depression in newborn +C0477917|T047|HT|P29|ICD10CM|Cardiovascular disorders originating in the perinatal period|Cardiovascular disorders originating in the perinatal period +C0477917|T047|AB|P29|ICD10CM|Cardiovascular disorders originating in the perinatal period|Cardiovascular disorders originating in the perinatal period +C0477917|T047|HT|P29|ICD10|Cardiovascular disorders originating in the perinatal period|Cardiovascular disorders originating in the perinatal period +C0455993|T047|PT|P29.0|ICD10|Neonatal cardiac failure|Neonatal cardiac failure +C0455993|T047|PT|P29.0|ICD10CM|Neonatal cardiac failure|Neonatal cardiac failure +C0455993|T047|AB|P29.0|ICD10CM|Neonatal cardiac failure|Neonatal cardiac failure +C1533637|T046|PT|P29.1|ICD10|Neonatal cardiac dysrhythmia|Neonatal cardiac dysrhythmia +C1533637|T046|HT|P29.1|ICD10CM|Neonatal cardiac dysrhythmia|Neonatal cardiac dysrhythmia +C1533637|T046|AB|P29.1|ICD10CM|Neonatal cardiac dysrhythmia|Neonatal cardiac dysrhythmia +C0877308|T046|PT|P29.11|ICD10CM|Neonatal tachycardia|Neonatal tachycardia +C0877308|T046|AB|P29.11|ICD10CM|Neonatal tachycardia|Neonatal tachycardia +C1112488|T046|PT|P29.12|ICD10CM|Neonatal bradycardia|Neonatal bradycardia +C1112488|T046|AB|P29.12|ICD10CM|Neonatal bradycardia|Neonatal bradycardia +C0452204|T047|PT|P29.2|ICD10CM|Neonatal hypertension|Neonatal hypertension +C0452204|T047|AB|P29.2|ICD10CM|Neonatal hypertension|Neonatal hypertension +C0452204|T047|PT|P29.2|ICD10|Neonatal hypertension|Neonatal hypertension +C0031190|T047|PT|P29.3|ICD10|Persistent fetal circulation|Persistent fetal circulation +C0031190|T047|AB|P29.3|ICD10CM|Persistent fetal circulation|Persistent fetal circulation +C0031190|T047|HT|P29.3|ICD10CM|Persistent fetal circulation|Persistent fetal circulation +C0031190|T047|ET|P29.30|ICD10CM|Persistent pulmonary hypertension of newborn|Persistent pulmonary hypertension of newborn +C4509421|T047|AB|P29.30|ICD10CM|Pulmonary hypertension of newborn|Pulmonary hypertension of newborn +C4509421|T047|PT|P29.30|ICD10CM|Pulmonary hypertension of newborn|Pulmonary hypertension of newborn +C0431502|T019|ET|P29.38|ICD10CM|Delayed closure of ductus arteriosus|Delayed closure of ductus arteriosus +C4509422|T047|AB|P29.38|ICD10CM|Other persistent fetal circulation|Other persistent fetal circulation +C4509422|T047|PT|P29.38|ICD10CM|Other persistent fetal circulation|Other persistent fetal circulation +C0349467|T047|PT|P29.4|ICD10|Transient myocardial ischaemia of newborn|Transient myocardial ischaemia of newborn +C0349467|T047|AB|P29.4|ICD10CM|Transient myocardial ischemia in newborn|Transient myocardial ischemia in newborn +C0349467|T047|PT|P29.4|ICD10CM|Transient myocardial ischemia in newborn|Transient myocardial ischemia in newborn +C0349467|T047|PT|P29.4|ICD10AE|Transient myocardial ischemia of newborn|Transient myocardial ischemia of newborn +C0477916|T047|AB|P29.8|ICD10CM|Oth cardiovasc disorders originating in the perinatal period|Oth cardiovasc disorders originating in the perinatal period +C0477916|T047|HT|P29.8|ICD10CM|Other cardiovascular disorders originating in the perinatal period|Other cardiovascular disorders originating in the perinatal period +C0477916|T047|PT|P29.8|ICD10|Other cardiovascular disorders originating in the perinatal period|Other cardiovascular disorders originating in the perinatal period +C1410098|T046|AB|P29.81|ICD10CM|Cardiac arrest of newborn|Cardiac arrest of newborn +C1410098|T046|PT|P29.81|ICD10CM|Cardiac arrest of newborn|Cardiac arrest of newborn +C0477916|T047|AB|P29.89|ICD10CM|Oth cardiovasc disorders originating in the perinatal period|Oth cardiovasc disorders originating in the perinatal period +C0477916|T047|PT|P29.89|ICD10CM|Other cardiovascular disorders originating in the perinatal period|Other cardiovascular disorders originating in the perinatal period +C0477917|T047|AB|P29.9|ICD10CM|Cardiovasc disorder origin in the perinatal period, unsp|Cardiovasc disorder origin in the perinatal period, unsp +C0477917|T047|PT|P29.9|ICD10CM|Cardiovascular disorder originating in the perinatal period, unspecified|Cardiovascular disorder originating in the perinatal period, unspecified +C0477917|T047|PT|P29.9|ICD10|Cardiovascular disorder originating in the perinatal period, unspecified|Cardiovascular disorder originating in the perinatal period, unspecified +C0456097|T047|HT|P35|ICD10|Congenital viral diseases|Congenital viral diseases +C0456097|T047|AB|P35|ICD10CM|Congenital viral diseases|Congenital viral diseases +C0456097|T047|HT|P35|ICD10CM|Congenital viral diseases|Congenital viral diseases +C4290267|T047|ET|P35|ICD10CM|infections acquired in utero or during birth|infections acquired in utero or during birth +C0158944|T047|HT|P35-P39|ICD10CM|Infections specific to the perinatal period (P35-P39)|Infections specific to the perinatal period (P35-P39) +C0158944|T047|HT|P35-P39.9|ICD10|Infections specific to the perinatal period|Infections specific to the perinatal period +C0276305|T047|ET|P35.0|ICD10CM|Congenital rubella pneumonitis|Congenital rubella pneumonitis +C0035921|T047|PT|P35.0|ICD10|Congenital rubella syndrome|Congenital rubella syndrome +C0035921|T047|PT|P35.0|ICD10CM|Congenital rubella syndrome|Congenital rubella syndrome +C0035921|T047|AB|P35.0|ICD10CM|Congenital rubella syndrome|Congenital rubella syndrome +C0158945|T047|PT|P35.1|ICD10CM|Congenital cytomegalovirus infection|Congenital cytomegalovirus infection +C0158945|T047|AB|P35.1|ICD10CM|Congenital cytomegalovirus infection|Congenital cytomegalovirus infection +C0158945|T047|PT|P35.1|ICD10|Congenital cytomegalovirus infection|Congenital cytomegalovirus infection +C0495407|T019|PT|P35.2|ICD10|Congenital herpesviral [herpes simplex] infection|Congenital herpesviral [herpes simplex] infection +C0495407|T047|PT|P35.2|ICD10|Congenital herpesviral [herpes simplex] infection|Congenital herpesviral [herpes simplex] infection +C0495407|T019|PT|P35.2|ICD10CM|Congenital herpesviral [herpes simplex] infection|Congenital herpesviral [herpes simplex] infection +C0495407|T047|PT|P35.2|ICD10CM|Congenital herpesviral [herpes simplex] infection|Congenital herpesviral [herpes simplex] infection +C0495407|T019|AB|P35.2|ICD10CM|Congenital herpesviral [herpes simplex] infection|Congenital herpesviral [herpes simplex] infection +C0495407|T047|AB|P35.2|ICD10CM|Congenital herpesviral [herpes simplex] infection|Congenital herpesviral [herpes simplex] infection +C0411016|T019|PT|P35.3|ICD10|Congenital viral hepatitis|Congenital viral hepatitis +C0411016|T019|PT|P35.3|ICD10CM|Congenital viral hepatitis|Congenital viral hepatitis +C0411016|T019|AB|P35.3|ICD10CM|Congenital viral hepatitis|Congenital viral hepatitis +C4553034|T047|AB|P35.4|ICD10CM|Congenital Zika virus disease|Congenital Zika virus disease +C4553034|T047|PT|P35.4|ICD10CM|Congenital Zika virus disease|Congenital Zika virus disease +C2910016|T019|ET|P35.8|ICD10CM|Congenital varicella [chickenpox]|Congenital varicella [chickenpox] +C0477918|T047|PT|P35.8|ICD10CM|Other congenital viral diseases|Other congenital viral diseases +C0477918|T047|AB|P35.8|ICD10CM|Other congenital viral diseases|Other congenital viral diseases +C0477918|T047|PT|P35.8|ICD10|Other congenital viral diseases|Other congenital viral diseases +C0456097|T047|PT|P35.9|ICD10|Congenital viral disease, unspecified|Congenital viral disease, unspecified +C0456097|T047|PT|P35.9|ICD10CM|Congenital viral disease, unspecified|Congenital viral disease, unspecified +C0456097|T047|AB|P35.9|ICD10CM|Congenital viral disease, unspecified|Congenital viral disease, unspecified +C3665339|T047|HT|P36|ICD10|Bacterial sepsis of newborn|Bacterial sepsis of newborn +C3665339|T047|HT|P36|ICD10CM|Bacterial sepsis of newborn|Bacterial sepsis of newborn +C3665339|T047|AB|P36|ICD10CM|Bacterial sepsis of newborn|Bacterial sepsis of newborn +C1260896|T047|ET|P36|ICD10CM|congenital sepsis|congenital sepsis +C0495408|T047|PT|P36.0|ICD10CM|Sepsis of newborn due to streptococcus, group B|Sepsis of newborn due to streptococcus, group B +C0495408|T047|AB|P36.0|ICD10CM|Sepsis of newborn due to streptococcus, group B|Sepsis of newborn due to streptococcus, group B +C0495408|T047|PT|P36.0|ICD10|Sepsis of newborn due to streptococcus, group B|Sepsis of newborn due to streptococcus, group B +C0477924|T047|PT|P36.1|ICD10|Sepsis of newborn due to other and unspecified streptococci|Sepsis of newborn due to other and unspecified streptococci +C0477924|T047|HT|P36.1|ICD10CM|Sepsis of newborn due to other and unspecified streptococci|Sepsis of newborn due to other and unspecified streptococci +C0477924|T047|AB|P36.1|ICD10CM|Sepsis of newborn due to other and unspecified streptococci|Sepsis of newborn due to other and unspecified streptococci +C2910017|T047|AB|P36.10|ICD10CM|Sepsis of newborn due to unspecified streptococci|Sepsis of newborn due to unspecified streptococci +C2910017|T047|PT|P36.10|ICD10CM|Sepsis of newborn due to unspecified streptococci|Sepsis of newborn due to unspecified streptococci +C2910018|T047|AB|P36.19|ICD10CM|Sepsis of newborn due to other streptococci|Sepsis of newborn due to other streptococci +C2910018|T047|PT|P36.19|ICD10CM|Sepsis of newborn due to other streptococci|Sepsis of newborn due to other streptococci +C0452197|T047|PT|P36.2|ICD10CM|Sepsis of newborn due to Staphylococcus aureus|Sepsis of newborn due to Staphylococcus aureus +C0452197|T047|AB|P36.2|ICD10CM|Sepsis of newborn due to Staphylococcus aureus|Sepsis of newborn due to Staphylococcus aureus +C0452197|T047|PT|P36.2|ICD10|Sepsis of newborn due to Staphylococcus aureus|Sepsis of newborn due to Staphylococcus aureus +C0477919|T047|PT|P36.3|ICD10|Sepsis of newborn due to other and unspecified staphylococci|Sepsis of newborn due to other and unspecified staphylococci +C0477919|T047|HT|P36.3|ICD10CM|Sepsis of newborn due to other and unspecified staphylococci|Sepsis of newborn due to other and unspecified staphylococci +C0477919|T047|AB|P36.3|ICD10CM|Sepsis of newborn due to other and unspecified staphylococci|Sepsis of newborn due to other and unspecified staphylococci +C2910019|T047|AB|P36.30|ICD10CM|Sepsis of newborn due to unspecified staphylococci|Sepsis of newborn due to unspecified staphylococci +C2910019|T047|PT|P36.30|ICD10CM|Sepsis of newborn due to unspecified staphylococci|Sepsis of newborn due to unspecified staphylococci +C2910020|T047|AB|P36.39|ICD10CM|Sepsis of newborn due to other staphylococci|Sepsis of newborn due to other staphylococci +C2910020|T047|PT|P36.39|ICD10CM|Sepsis of newborn due to other staphylococci|Sepsis of newborn due to other staphylococci +C0452198|T047|PT|P36.4|ICD10CM|Sepsis of newborn due to Escherichia coli|Sepsis of newborn due to Escherichia coli +C0452198|T047|AB|P36.4|ICD10CM|Sepsis of newborn due to Escherichia coli|Sepsis of newborn due to Escherichia coli +C0452198|T047|PT|P36.4|ICD10|Sepsis of newborn due to Escherichia coli|Sepsis of newborn due to Escherichia coli +C0452199|T047|PT|P36.5|ICD10|Sepsis of newborn due to anaerobes|Sepsis of newborn due to anaerobes +C0452199|T047|PT|P36.5|ICD10CM|Sepsis of newborn due to anaerobes|Sepsis of newborn due to anaerobes +C0452199|T047|AB|P36.5|ICD10CM|Sepsis of newborn due to anaerobes|Sepsis of newborn due to anaerobes +C0477920|T047|PT|P36.8|ICD10CM|Other bacterial sepsis of newborn|Other bacterial sepsis of newborn +C0477920|T047|AB|P36.8|ICD10CM|Other bacterial sepsis of newborn|Other bacterial sepsis of newborn +C0477920|T047|PT|P36.8|ICD10|Other bacterial sepsis of newborn|Other bacterial sepsis of newborn +C3665339|T047|PT|P36.9|ICD10|Bacterial sepsis of newborn, unspecified|Bacterial sepsis of newborn, unspecified +C3665339|T047|PT|P36.9|ICD10CM|Bacterial sepsis of newborn, unspecified|Bacterial sepsis of newborn, unspecified +C3665339|T047|AB|P36.9|ICD10CM|Bacterial sepsis of newborn, unspecified|Bacterial sepsis of newborn, unspecified +C0495409|T047|HT|P37|ICD10|Other congenital infectious and parasitic diseases|Other congenital infectious and parasitic diseases +C0495409|T047|AB|P37|ICD10CM|Other congenital infectious and parasitic diseases|Other congenital infectious and parasitic diseases +C0495409|T047|HT|P37|ICD10CM|Other congenital infectious and parasitic diseases|Other congenital infectious and parasitic diseases +C0275887|T047|PT|P37.0|ICD10|Congenital tuberculosis|Congenital tuberculosis +C0275887|T047|PT|P37.0|ICD10CM|Congenital tuberculosis|Congenital tuberculosis +C0275887|T047|AB|P37.0|ICD10CM|Congenital tuberculosis|Congenital tuberculosis +C0040560|T047|PT|P37.1|ICD10|Congenital toxoplasmosis|Congenital toxoplasmosis +C0040560|T047|PT|P37.1|ICD10CM|Congenital toxoplasmosis|Congenital toxoplasmosis +C0040560|T047|AB|P37.1|ICD10CM|Congenital toxoplasmosis|Congenital toxoplasmosis +C0554616|T019|ET|P37.1|ICD10CM|Hydrocephalus due to congenital toxoplasmosis|Hydrocephalus due to congenital toxoplasmosis +C1282953|T047|PT|P37.2|ICD10|Neonatal (disseminated) listeriosis|Neonatal (disseminated) listeriosis +C1282953|T047|PT|P37.2|ICD10CM|Neonatal (disseminated) listeriosis|Neonatal (disseminated) listeriosis +C1282953|T047|AB|P37.2|ICD10CM|Neonatal (disseminated) listeriosis|Neonatal (disseminated) listeriosis +C0456106|T019|PT|P37.3|ICD10CM|Congenital falciparum malaria|Congenital falciparum malaria +C0456106|T047|PT|P37.3|ICD10CM|Congenital falciparum malaria|Congenital falciparum malaria +C0456106|T019|AB|P37.3|ICD10CM|Congenital falciparum malaria|Congenital falciparum malaria +C0456106|T047|AB|P37.3|ICD10CM|Congenital falciparum malaria|Congenital falciparum malaria +C0456106|T019|PT|P37.3|ICD10|Congenital falciparum malaria|Congenital falciparum malaria +C0456106|T047|PT|P37.3|ICD10|Congenital falciparum malaria|Congenital falciparum malaria +C0477921|T047|PT|P37.4|ICD10|Other congenital malaria|Other congenital malaria +C0477921|T047|PT|P37.4|ICD10CM|Other congenital malaria|Other congenital malaria +C0477921|T047|AB|P37.4|ICD10CM|Other congenital malaria|Other congenital malaria +C0276682|T047|PT|P37.5|ICD10|Neonatal candidiasis|Neonatal candidiasis +C0276682|T047|PT|P37.5|ICD10CM|Neonatal candidiasis|Neonatal candidiasis +C0276682|T047|AB|P37.5|ICD10CM|Neonatal candidiasis|Neonatal candidiasis +C0477922|T047|PT|P37.8|ICD10|Other specified congenital infectious and parasitic diseases|Other specified congenital infectious and parasitic diseases +C0477922|T047|PT|P37.8|ICD10CM|Other specified congenital infectious and parasitic diseases|Other specified congenital infectious and parasitic diseases +C0477922|T047|AB|P37.8|ICD10CM|Other specified congenital infectious and parasitic diseases|Other specified congenital infectious and parasitic diseases +C0477925|T047|PT|P37.9|ICD10|Congenital infectious and parasitic disease, unspecified|Congenital infectious and parasitic disease, unspecified +C2910021|T047|AB|P37.9|ICD10CM|Congenital infectious or parasitic disease, unspecified|Congenital infectious or parasitic disease, unspecified +C2910021|T047|PT|P37.9|ICD10CM|Congenital infectious or parasitic disease, unspecified|Congenital infectious or parasitic disease, unspecified +C0158947|T047|AB|P38|ICD10CM|Omphalitis of newborn|Omphalitis of newborn +C0158947|T047|HT|P38|ICD10CM|Omphalitis of newborn|Omphalitis of newborn +C0495410|T047|PT|P38|ICD10|Omphalitis of newborn with or without mild haemorrhage|Omphalitis of newborn with or without mild haemorrhage +C0495410|T047|PT|P38|ICD10AE|Omphalitis of newborn with or without mild hemorrhage|Omphalitis of newborn with or without mild hemorrhage +C2910022|T047|AB|P38.1|ICD10CM|Omphalitis with mild hemorrhage|Omphalitis with mild hemorrhage +C2910022|T047|PT|P38.1|ICD10CM|Omphalitis with mild hemorrhage|Omphalitis with mild hemorrhage +C0158947|T047|ET|P38.9|ICD10CM|Omphalitis of newborn NOS|Omphalitis of newborn NOS +C2910023|T047|AB|P38.9|ICD10CM|Omphalitis without hemorrhage|Omphalitis without hemorrhage +C2910023|T047|PT|P38.9|ICD10CM|Omphalitis without hemorrhage|Omphalitis without hemorrhage +C0158950|T046|HT|P39|ICD10CM|Other infections specific to the perinatal period|Other infections specific to the perinatal period +C0158950|T046|AB|P39|ICD10CM|Other infections specific to the perinatal period|Other infections specific to the perinatal period +C0158950|T046|HT|P39|ICD10|Other infections specific to the perinatal period|Other infections specific to the perinatal period +C0158948|T047|PT|P39.0|ICD10|Neonatal infective mastitis|Neonatal infective mastitis +C0158948|T047|PT|P39.0|ICD10CM|Neonatal infective mastitis|Neonatal infective mastitis +C0158948|T047|AB|P39.0|ICD10CM|Neonatal infective mastitis|Neonatal infective mastitis +C0343723|T047|ET|P39.1|ICD10CM|Neonatal chlamydial conjunctivitis|Neonatal chlamydial conjunctivitis +C0027611|T047|PT|P39.1|ICD10CM|Neonatal conjunctivitis and dacryocystitis|Neonatal conjunctivitis and dacryocystitis +C0027611|T047|AB|P39.1|ICD10CM|Neonatal conjunctivitis and dacryocystitis|Neonatal conjunctivitis and dacryocystitis +C0027611|T047|PT|P39.1|ICD10|Neonatal conjunctivitis and dacryocystitis|Neonatal conjunctivitis and dacryocystitis +C0029076|T047|ET|P39.1|ICD10CM|Ophthalmia neonatorum NOS|Ophthalmia neonatorum NOS +C2910024|T047|AB|P39.2|ICD10CM|Intra-amniotic infection affecting newborn, NEC|Intra-amniotic infection affecting newborn, NEC +C2910024|T047|PT|P39.2|ICD10CM|Intra-amniotic infection affecting newborn, not elsewhere classified|Intra-amniotic infection affecting newborn, not elsewhere classified +C0495411|T047|PT|P39.2|ICD10|Intra-amniotic infection of fetus, not elsewhere classified|Intra-amniotic infection of fetus, not elsewhere classified +C0235815|T047|PT|P39.3|ICD10CM|Neonatal urinary tract infection|Neonatal urinary tract infection +C0235815|T047|AB|P39.3|ICD10CM|Neonatal urinary tract infection|Neonatal urinary tract infection +C0235815|T047|PT|P39.3|ICD10|Neonatal urinary tract infection|Neonatal urinary tract infection +C0456111|T047|ET|P39.4|ICD10CM|Neonatal pyoderma|Neonatal pyoderma +C0556023|T047|PT|P39.4|ICD10|Neonatal skin infection|Neonatal skin infection +C0556023|T047|PT|P39.4|ICD10CM|Neonatal skin infection|Neonatal skin infection +C0556023|T047|AB|P39.4|ICD10CM|Neonatal skin infection|Neonatal skin infection +C0477923|T047|PT|P39.8|ICD10|Other specified infections specific to the perinatal period|Other specified infections specific to the perinatal period +C0477923|T047|PT|P39.8|ICD10CM|Other specified infections specific to the perinatal period|Other specified infections specific to the perinatal period +C0477923|T047|AB|P39.8|ICD10CM|Other specified infections specific to the perinatal period|Other specified infections specific to the perinatal period +C0158944|T047|PT|P39.9|ICD10|Infection specific to the perinatal period, unspecified|Infection specific to the perinatal period, unspecified +C0158944|T047|PT|P39.9|ICD10CM|Infection specific to the perinatal period, unspecified|Infection specific to the perinatal period, unspecified +C0158944|T047|AB|P39.9|ICD10CM|Infection specific to the perinatal period, unspecified|Infection specific to the perinatal period, unspecified +C0158951|T046|HT|P50|ICD10|Fetal blood loss|Fetal blood loss +C2910035|T033|AB|P50|ICD10CM|Newborn affected by intrauterine (fetal) blood loss|Newborn affected by intrauterine (fetal) blood loss +C2910035|T033|HT|P50|ICD10CM|Newborn affected by intrauterine (fetal) blood loss|Newborn affected by intrauterine (fetal) blood loss +C2910026|T046|HT|P50-P61|ICD10CM|Hemorrhagic and hematological disorders of newborn (P50-P61)|Hemorrhagic and hematological disorders of newborn (P50-P61) +C0477926|T047|HT|P50-P61.9|ICD10|Haemorrhagic and haematological disorders of fetus and newborn|Haemorrhagic and haematological disorders of fetus and newborn +C0477926|T047|HT|P50-P61.9|ICD10AE|Hemorrhagic and hematological disorders of fetus and newborn|Hemorrhagic and hematological disorders of fetus and newborn +C0270186|T046|PT|P50.0|ICD10|Fetal blood loss from vasa praevia|Fetal blood loss from vasa praevia +C2910027|T033|AB|P50.0|ICD10CM|Newborn aff by uterin (fetal) blood loss from vasa previa|Newborn aff by uterin (fetal) blood loss from vasa previa +C2910027|T033|PT|P50.0|ICD10CM|Newborn affected by intrauterine (fetal) blood loss from vasa previa|Newborn affected by intrauterine (fetal) blood loss from vasa previa +C0270185|T046|PT|P50.1|ICD10|Fetal blood loss from ruptured cord|Fetal blood loss from ruptured cord +C2910028|T033|AB|P50.1|ICD10CM|Newborn aff by uterin (fetal) blood loss from ruptured cord|Newborn aff by uterin (fetal) blood loss from ruptured cord +C2910028|T033|PT|P50.1|ICD10CM|Newborn affected by intrauterine (fetal) blood loss from ruptured cord|Newborn affected by intrauterine (fetal) blood loss from ruptured cord +C0270187|T046|PT|P50.2|ICD10|Fetal blood loss from placenta|Fetal blood loss from placenta +C2910029|T033|PT|P50.2|ICD10CM|Newborn affected by intrauterine (fetal) blood loss from placenta|Newborn affected by intrauterine (fetal) blood loss from placenta +C2910029|T033|AB|P50.2|ICD10CM|Newborn affected by uterin (fetal) blood loss from placenta|Newborn affected by uterin (fetal) blood loss from placenta +C2939190|T046|PT|P50.3|ICD10|Haemorrhage into co-twin|Haemorrhage into co-twin +C2939190|T046|PT|P50.3|ICD10AE|Hemorrhage into co-twin|Hemorrhage into co-twin +C2910030|T033|AB|P50.3|ICD10CM|Newborn affected by hemorrhage into co-twin|Newborn affected by hemorrhage into co-twin +C2910030|T033|PT|P50.3|ICD10CM|Newborn affected by hemorrhage into co-twin|Newborn affected by hemorrhage into co-twin +C0495414|T046|PT|P50.4|ICD10|Haemorrhage into maternal circulation|Haemorrhage into maternal circulation +C0495414|T046|PT|P50.4|ICD10AE|Hemorrhage into maternal circulation|Hemorrhage into maternal circulation +C2910031|T033|AB|P50.4|ICD10CM|Newborn affected by hemorrhage into maternal circulation|Newborn affected by hemorrhage into maternal circulation +C2910031|T033|PT|P50.4|ICD10CM|Newborn affected by hemorrhage into maternal circulation|Newborn affected by hemorrhage into maternal circulation +C0270184|T047|PT|P50.5|ICD10|Fetal blood loss from cut end of co-twin's cord|Fetal blood loss from cut end of co-twin's cord +C2910032|T033|AB|P50.5|ICD10CM|NB aff by uterin blood loss from cut end of co-twin's cord|NB aff by uterin blood loss from cut end of co-twin's cord +C2910032|T033|PT|P50.5|ICD10CM|Newborn affected by intrauterine (fetal) blood loss from cut end of co-twin's cord|Newborn affected by intrauterine (fetal) blood loss from cut end of co-twin's cord +C2910033|T033|AB|P50.8|ICD10CM|Newborn affected by other intrauterine (fetal) blood loss|Newborn affected by other intrauterine (fetal) blood loss +C2910033|T033|PT|P50.8|ICD10CM|Newborn affected by other intrauterine (fetal) blood loss|Newborn affected by other intrauterine (fetal) blood loss +C0477927|T046|PT|P50.8|ICD10|Other fetal blood loss|Other fetal blood loss +C0158951|T046|PT|P50.9|ICD10|Fetal blood loss, unspecified|Fetal blood loss, unspecified +C2910034|T046|ET|P50.9|ICD10CM|Newborn affected by fetal hemorrhage NOS|Newborn affected by fetal hemorrhage NOS +C2910035|T033|AB|P50.9|ICD10CM|Newborn affected by intrauterine (fetal) blood loss, unsp|Newborn affected by intrauterine (fetal) blood loss, unsp +C2910035|T033|PT|P50.9|ICD10CM|Newborn affected by intrauterine (fetal) blood loss, unspecified|Newborn affected by intrauterine (fetal) blood loss, unspecified +C0473789|T046|HT|P51|ICD10|Umbilical haemorrhage of newborn|Umbilical haemorrhage of newborn +C0473789|T046|HT|P51|ICD10AE|Umbilical hemorrhage of newborn|Umbilical hemorrhage of newborn +C0473789|T046|AB|P51|ICD10CM|Umbilical hemorrhage of newborn|Umbilical hemorrhage of newborn +C0473789|T046|HT|P51|ICD10CM|Umbilical hemorrhage of newborn|Umbilical hemorrhage of newborn +C0473790|T046|PT|P51.0|ICD10|Massive umbilical haemorrhage of newborn|Massive umbilical haemorrhage of newborn +C0473790|T046|PT|P51.0|ICD10CM|Massive umbilical hemorrhage of newborn|Massive umbilical hemorrhage of newborn +C0473790|T046|AB|P51.0|ICD10CM|Massive umbilical hemorrhage of newborn|Massive umbilical hemorrhage of newborn +C0473790|T046|PT|P51.0|ICD10AE|Massive umbilical hemorrhage of newborn|Massive umbilical hemorrhage of newborn +C0477928|T046|PT|P51.8|ICD10|Other umbilical haemorrhages of newborn|Other umbilical haemorrhages of newborn +C0477928|T046|PT|P51.8|ICD10AE|Other umbilical hemorrhages of newborn|Other umbilical hemorrhages of newborn +C0477928|T046|PT|P51.8|ICD10CM|Other umbilical hemorrhages of newborn|Other umbilical hemorrhages of newborn +C0477928|T046|AB|P51.8|ICD10CM|Other umbilical hemorrhages of newborn|Other umbilical hemorrhages of newborn +C0410992|T047|ET|P51.8|ICD10CM|Slipped umbilical ligature NOS|Slipped umbilical ligature NOS +C0473789|T046|PT|P51.9|ICD10|Umbilical haemorrhage of newborn, unspecified|Umbilical haemorrhage of newborn, unspecified +C0473789|T046|PT|P51.9|ICD10CM|Umbilical hemorrhage of newborn, unspecified|Umbilical hemorrhage of newborn, unspecified +C0473789|T046|AB|P51.9|ICD10CM|Umbilical hemorrhage of newborn, unspecified|Umbilical hemorrhage of newborn, unspecified +C0473789|T046|PT|P51.9|ICD10AE|Umbilical hemorrhage of newborn, unspecified|Umbilical hemorrhage of newborn, unspecified +C4290268|T047|ET|P52|ICD10CM|intracranial hemorrhage due to anoxia or hypoxia|intracranial hemorrhage due to anoxia or hypoxia +C0477941|T046|HT|P52|ICD10|Intracranial nontraumatic haemorrhage of fetus and newborn|Intracranial nontraumatic haemorrhage of fetus and newborn +C0477941|T046|HT|P52|ICD10AE|Intracranial nontraumatic hemorrhage of fetus and newborn|Intracranial nontraumatic hemorrhage of fetus and newborn +C2910037|T046|AB|P52|ICD10CM|Intracranial nontraumatic hemorrhage of newborn|Intracranial nontraumatic hemorrhage of newborn +C2910037|T046|HT|P52|ICD10CM|Intracranial nontraumatic hemorrhage of newborn|Intracranial nontraumatic hemorrhage of newborn +C0949187|T047|ET|P52.0|ICD10CM|Bleeding into germinal matrix|Bleeding into germinal matrix +C0475589|T046|PT|P52.0|ICD10|Intraventricular (nontraumatic) haemorrhage, grade 1, of fetus and newborn|Intraventricular (nontraumatic) haemorrhage, grade 1, of fetus and newborn +C0475589|T046|PT|P52.0|ICD10AE|Intraventricular (nontraumatic) hemorrhage, grade 1, of fetus and newborn|Intraventricular (nontraumatic) hemorrhage, grade 1, of fetus and newborn +C2910039|T046|PT|P52.0|ICD10CM|Intraventricular (nontraumatic) hemorrhage, grade 1, of newborn|Intraventricular (nontraumatic) hemorrhage, grade 1, of newborn +C2910039|T046|AB|P52.0|ICD10CM|Intraventricular hemorrhage, grade 1, of newborn|Intraventricular hemorrhage, grade 1, of newborn +C2910038|T046|ET|P52.0|ICD10CM|Subependymal hemorrhage (without intraventricular extension)|Subependymal hemorrhage (without intraventricular extension) +C0949188|T047|ET|P52.1|ICD10CM|Bleeding into ventricle|Bleeding into ventricle +C0475590|T047|PT|P52.1|ICD10|Intraventricular (nontraumatic) haemorrhage, grade 2, of fetus and newborn|Intraventricular (nontraumatic) haemorrhage, grade 2, of fetus and newborn +C0475590|T047|PT|P52.1|ICD10AE|Intraventricular (nontraumatic) hemorrhage, grade 2, of fetus and newborn|Intraventricular (nontraumatic) hemorrhage, grade 2, of fetus and newborn +C0475590|T047|PT|P52.1|ICD10CM|Intraventricular (nontraumatic) hemorrhage, grade 2, of newborn|Intraventricular (nontraumatic) hemorrhage, grade 2, of newborn +C0475590|T047|AB|P52.1|ICD10CM|Intraventricular hemorrhage, grade 2, of newborn|Intraventricular hemorrhage, grade 2, of newborn +C2910040|T046|ET|P52.1|ICD10CM|Subependymal hemorrhage with intraventricular extension|Subependymal hemorrhage with intraventricular extension +C0475591|T046|PT|P52.2|ICD10|Intraventricular (nontraumatic) haemorrhage, grade 3, of fetus and newborn|Intraventricular (nontraumatic) haemorrhage, grade 3, of fetus and newborn +C2910042|T046|HT|P52.2|ICD10CM|Intraventricular (nontraumatic) hemorrhage, grade 3 and grade 4, of newborn|Intraventricular (nontraumatic) hemorrhage, grade 3 and grade 4, of newborn +C0475591|T046|PT|P52.2|ICD10AE|Intraventricular (nontraumatic) hemorrhage, grade 3, of fetus and newborn|Intraventricular (nontraumatic) hemorrhage, grade 3, of fetus and newborn +C2910042|T046|AB|P52.2|ICD10CM|Intraventricular hemorrhage, grade 3 and grade 4, of newborn|Intraventricular hemorrhage, grade 3 and grade 4, of newborn +C2910044|T033|PT|P52.21|ICD10CM|Intraventricular (nontraumatic) hemorrhage, grade 3, of newborn|Intraventricular (nontraumatic) hemorrhage, grade 3, of newborn +C2910044|T033|AB|P52.21|ICD10CM|Intraventricular hemorrhage, grade 3, of newborn|Intraventricular hemorrhage, grade 3, of newborn +C2910043|T046|ET|P52.21|ICD10CM|Subependymal hemorrhage with intraventricular extension with enlargement of ventricle|Subependymal hemorrhage with intraventricular extension with enlargement of ventricle +C0949190|T047|ET|P52.22|ICD10CM|Bleeding into cerebral cortex|Bleeding into cerebral cortex +C2910046|T033|PT|P52.22|ICD10CM|Intraventricular (nontraumatic) hemorrhage, grade 4, of newborn|Intraventricular (nontraumatic) hemorrhage, grade 4, of newborn +C2910046|T033|AB|P52.22|ICD10CM|Intraventricular hemorrhage, grade 4, of newborn|Intraventricular hemorrhage, grade 4, of newborn +C2910045|T046|ET|P52.22|ICD10CM|Subependymal hemorrhage with intracerebral extension|Subependymal hemorrhage with intracerebral extension +C2910047|T033|AB|P52.3|ICD10CM|Unsp intraventricular (nontraumatic) hemorrhage of newborn|Unsp intraventricular (nontraumatic) hemorrhage of newborn +C0495415|T046|PT|P52.3|ICD10|Unspecified intraventricular (nontraumatic) haemorrhage of fetus and newborn|Unspecified intraventricular (nontraumatic) haemorrhage of fetus and newborn +C0495415|T046|PT|P52.3|ICD10AE|Unspecified intraventricular (nontraumatic) hemorrhage of fetus and newborn|Unspecified intraventricular (nontraumatic) hemorrhage of fetus and newborn +C2910047|T033|PT|P52.3|ICD10CM|Unspecified intraventricular (nontraumatic) hemorrhage of newborn|Unspecified intraventricular (nontraumatic) hemorrhage of newborn +C0475595|T046|PT|P52.4|ICD10|Intracerebral (nontraumatic) haemorrhage of fetus and newborn|Intracerebral (nontraumatic) haemorrhage of fetus and newborn +C0475595|T046|PT|P52.4|ICD10AE|Intracerebral (nontraumatic) hemorrhage of fetus and newborn|Intracerebral (nontraumatic) hemorrhage of fetus and newborn +C2910048|T033|AB|P52.4|ICD10CM|Intracerebral (nontraumatic) hemorrhage of newborn|Intracerebral (nontraumatic) hemorrhage of newborn +C2910048|T033|PT|P52.4|ICD10CM|Intracerebral (nontraumatic) hemorrhage of newborn|Intracerebral (nontraumatic) hemorrhage of newborn +C0495416|T046|PT|P52.5|ICD10|Subarachnoid (nontraumatic) haemorrhage of fetus and newborn|Subarachnoid (nontraumatic) haemorrhage of fetus and newborn +C0495416|T046|PT|P52.5|ICD10AE|Subarachnoid (nontraumatic) hemorrhage of fetus and newborn|Subarachnoid (nontraumatic) hemorrhage of fetus and newborn +C2910049|T033|AB|P52.5|ICD10CM|Subarachnoid (nontraumatic) hemorrhage of newborn|Subarachnoid (nontraumatic) hemorrhage of newborn +C2910049|T033|PT|P52.5|ICD10CM|Subarachnoid (nontraumatic) hemorrhage of newborn|Subarachnoid (nontraumatic) hemorrhage of newborn +C0475596|T046|PT|P52.6|ICD10|Cerebellar (nontraumatic) and posterior fossa haemorrhage of fetus and newborn|Cerebellar (nontraumatic) and posterior fossa haemorrhage of fetus and newborn +C0475596|T046|PT|P52.6|ICD10AE|Cerebellar (nontraumatic) and posterior fossa hemorrhage of fetus and newborn|Cerebellar (nontraumatic) and posterior fossa hemorrhage of fetus and newborn +C2910050|T033|PT|P52.6|ICD10CM|Cerebellar (nontraumatic) and posterior fossa hemorrhage of newborn|Cerebellar (nontraumatic) and posterior fossa hemorrhage of newborn +C2910050|T033|AB|P52.6|ICD10CM|Cerebellar and posterior fossa hemorrhage of newborn|Cerebellar and posterior fossa hemorrhage of newborn +C0477929|T046|PT|P52.8|ICD10|Other intracranial (nontraumatic) haemorrhages of fetus and newborn|Other intracranial (nontraumatic) haemorrhages of fetus and newborn +C0477929|T046|PT|P52.8|ICD10AE|Other intracranial (nontraumatic) hemorrhages of fetus and newborn|Other intracranial (nontraumatic) hemorrhages of fetus and newborn +C2910051|T033|AB|P52.8|ICD10CM|Other intracranial (nontraumatic) hemorrhages of newborn|Other intracranial (nontraumatic) hemorrhages of newborn +C2910051|T033|PT|P52.8|ICD10CM|Other intracranial (nontraumatic) hemorrhages of newborn|Other intracranial (nontraumatic) hemorrhages of newborn +C0477941|T046|PT|P52.9|ICD10|Intracranial (nontraumatic) haemorrhage of fetus and newborn, unspecified|Intracranial (nontraumatic) haemorrhage of fetus and newborn, unspecified +C0477941|T046|PT|P52.9|ICD10AE|Intracranial (nontraumatic) hemorrhage of fetus and newborn, unspecified|Intracranial (nontraumatic) hemorrhage of fetus and newborn, unspecified +C2910052|T033|AB|P52.9|ICD10CM|Intracranial (nontraumatic) hemorrhage of newborn, unsp|Intracranial (nontraumatic) hemorrhage of newborn, unsp +C2910052|T033|PT|P52.9|ICD10CM|Intracranial (nontraumatic) hemorrhage of newborn, unspecified|Intracranial (nontraumatic) hemorrhage of newborn, unspecified +C0495417|T047|PT|P53|ICD10|Haemorrhagic disease of fetus and newborn|Haemorrhagic disease of fetus and newborn +C0495417|T047|PT|P53|ICD10AE|Hemorrhagic disease of fetus and newborn|Hemorrhagic disease of fetus and newborn +C0019088|T047|PT|P53|ICD10CM|Hemorrhagic disease of newborn|Hemorrhagic disease of newborn +C0019088|T047|AB|P53|ICD10CM|Hemorrhagic disease of newborn|Hemorrhagic disease of newborn +C0019088|T047|ET|P53|ICD10CM|Vitamin K deficiency of newborn|Vitamin K deficiency of newborn +C0495418|T046|HT|P54|ICD10|Other neonatal haemorrhages|Other neonatal haemorrhages +C0495418|T046|AB|P54|ICD10CM|Other neonatal hemorrhages|Other neonatal hemorrhages +C0495418|T046|HT|P54|ICD10CM|Other neonatal hemorrhages|Other neonatal hemorrhages +C0495418|T046|HT|P54|ICD10AE|Other neonatal hemorrhages|Other neonatal hemorrhages +C0475597|T046|PT|P54.0|ICD10|Neonatal haematemesis|Neonatal haematemesis +C0475597|T046|PT|P54.0|ICD10AE|Neonatal hematemesis|Neonatal hematemesis +C0475597|T046|PT|P54.0|ICD10CM|Neonatal hematemesis|Neonatal hematemesis +C0475597|T046|AB|P54.0|ICD10CM|Neonatal hematemesis|Neonatal hematemesis +C0475598|T046|PT|P54.1|ICD10|Neonatal melaena|Neonatal melaena +C0475598|T046|PT|P54.1|ICD10CM|Neonatal melena|Neonatal melena +C0475598|T046|AB|P54.1|ICD10CM|Neonatal melena|Neonatal melena +C0475598|T046|PT|P54.1|ICD10AE|Neonatal melena|Neonatal melena +C0475599|T046|PT|P54.2|ICD10|Neonatal rectal haemorrhage|Neonatal rectal haemorrhage +C0475599|T046|PT|P54.2|ICD10AE|Neonatal rectal hemorrhage|Neonatal rectal hemorrhage +C0475599|T046|PT|P54.2|ICD10CM|Neonatal rectal hemorrhage|Neonatal rectal hemorrhage +C0475599|T046|AB|P54.2|ICD10CM|Neonatal rectal hemorrhage|Neonatal rectal hemorrhage +C0477930|T046|PT|P54.3|ICD10|Other neonatal gastrointestinal haemorrhage|Other neonatal gastrointestinal haemorrhage +C0477930|T046|PT|P54.3|ICD10CM|Other neonatal gastrointestinal hemorrhage|Other neonatal gastrointestinal hemorrhage +C0477930|T046|AB|P54.3|ICD10CM|Other neonatal gastrointestinal hemorrhage|Other neonatal gastrointestinal hemorrhage +C0477930|T046|PT|P54.3|ICD10AE|Other neonatal gastrointestinal hemorrhage|Other neonatal gastrointestinal hemorrhage +C0495419|T046|PT|P54.4|ICD10|Neonatal adrenal haemorrhage|Neonatal adrenal haemorrhage +C0495419|T046|PT|P54.4|ICD10AE|Neonatal adrenal hemorrhage|Neonatal adrenal hemorrhage +C0495419|T046|PT|P54.4|ICD10CM|Neonatal adrenal hemorrhage|Neonatal adrenal hemorrhage +C0495419|T046|AB|P54.4|ICD10CM|Neonatal adrenal hemorrhage|Neonatal adrenal hemorrhage +C2910053|T046|ET|P54.5|ICD10CM|Neonatal bruising|Neonatal bruising +C0495420|T046|PT|P54.5|ICD10|Neonatal cutaneous haemorrhage|Neonatal cutaneous haemorrhage +C0495420|T046|PT|P54.5|ICD10CM|Neonatal cutaneous hemorrhage|Neonatal cutaneous hemorrhage +C0495420|T046|AB|P54.5|ICD10CM|Neonatal cutaneous hemorrhage|Neonatal cutaneous hemorrhage +C0495420|T046|PT|P54.5|ICD10AE|Neonatal cutaneous hemorrhage|Neonatal cutaneous hemorrhage +C2231392|T046|ET|P54.5|ICD10CM|Neonatal ecchymoses|Neonatal ecchymoses +C2231394|T046|ET|P54.5|ICD10CM|Neonatal petechiae|Neonatal petechiae +C2231393|T046|ET|P54.5|ICD10CM|Neonatal superficial hematomata|Neonatal superficial hematomata +C2910054|T046|ET|P54.6|ICD10CM|Neonatal pseudomenses|Neonatal pseudomenses +C0475593|T046|PT|P54.6|ICD10|Neonatal vaginal haemorrhage|Neonatal vaginal haemorrhage +C0475593|T046|PT|P54.6|ICD10AE|Neonatal vaginal hemorrhage|Neonatal vaginal hemorrhage +C0475593|T046|PT|P54.6|ICD10CM|Neonatal vaginal hemorrhage|Neonatal vaginal hemorrhage +C0475593|T046|AB|P54.6|ICD10CM|Neonatal vaginal hemorrhage|Neonatal vaginal hemorrhage +C0495421|T046|PT|P54.8|ICD10|Other specified neonatal haemorrhages|Other specified neonatal haemorrhages +C0495421|T046|PT|P54.8|ICD10AE|Other specified neonatal hemorrhages|Other specified neonatal hemorrhages +C0495421|T046|PT|P54.8|ICD10CM|Other specified neonatal hemorrhages|Other specified neonatal hemorrhages +C0495421|T046|AB|P54.8|ICD10CM|Other specified neonatal hemorrhages|Other specified neonatal hemorrhages +C0270183|T046|PT|P54.9|ICD10|Neonatal haemorrhage, unspecified|Neonatal haemorrhage, unspecified +C0270183|T046|PT|P54.9|ICD10AE|Neonatal hemorrhage, unspecified|Neonatal hemorrhage, unspecified +C0270183|T046|PT|P54.9|ICD10CM|Neonatal hemorrhage, unspecified|Neonatal hemorrhage, unspecified +C0270183|T046|AB|P54.9|ICD10CM|Neonatal hemorrhage, unspecified|Neonatal hemorrhage, unspecified +C0014761|T047|HT|P55|ICD10|Haemolytic disease of fetus and newborn|Haemolytic disease of fetus and newborn +C0014761|T047|HT|P55|ICD10AE|Hemolytic disease of fetus and newborn|Hemolytic disease of fetus and newborn +C0014761|T047|HT|P55|ICD10CM|Hemolytic disease of newborn|Hemolytic disease of newborn +C0014761|T047|AB|P55|ICD10CM|Hemolytic disease of newborn|Hemolytic disease of newborn +C0869111|T047|PT|P55.0|ICD10|Rh isoimmunization of fetus and newborn|Rh isoimmunization of fetus and newborn +C0158962|T047|AB|P55.0|ICD10CM|Rh isoimmunization of newborn|Rh isoimmunization of newborn +C0158962|T047|PT|P55.0|ICD10CM|Rh isoimmunization of newborn|Rh isoimmunization of newborn +C0270202|T047|PT|P55.1|ICD10|ABO isoimmunization of fetus and newborn|ABO isoimmunization of fetus and newborn +C0270202|T047|AB|P55.1|ICD10CM|ABO isoimmunization of newborn|ABO isoimmunization of newborn +C0270202|T047|PT|P55.1|ICD10CM|ABO isoimmunization of newborn|ABO isoimmunization of newborn +C0477932|T047|PT|P55.8|ICD10|Other haemolytic diseases of fetus and newborn|Other haemolytic diseases of fetus and newborn +C0477932|T047|PT|P55.8|ICD10AE|Other hemolytic diseases of fetus and newborn|Other hemolytic diseases of fetus and newborn +C2910055|T047|AB|P55.8|ICD10CM|Other hemolytic diseases of newborn|Other hemolytic diseases of newborn +C2910055|T047|PT|P55.8|ICD10CM|Other hemolytic diseases of newborn|Other hemolytic diseases of newborn +C0014761|T047|PT|P55.9|ICD10|Haemolytic disease of fetus and newborn, unspecified|Haemolytic disease of fetus and newborn, unspecified +C0014761|T047|PT|P55.9|ICD10AE|Hemolytic disease of fetus and newborn, unspecified|Hemolytic disease of fetus and newborn, unspecified +C0014761|T047|AB|P55.9|ICD10CM|Hemolytic disease of newborn, unspecified|Hemolytic disease of newborn, unspecified +C0014761|T047|PT|P55.9|ICD10CM|Hemolytic disease of newborn, unspecified|Hemolytic disease of newborn, unspecified +C1399894|T047|HT|P56|ICD10|Hydrops fetalis due to haemolytic disease|Hydrops fetalis due to haemolytic disease +C1399894|T047|HT|P56|ICD10AE|Hydrops fetalis due to hemolytic disease|Hydrops fetalis due to hemolytic disease +C1399894|T047|HT|P56|ICD10CM|Hydrops fetalis due to hemolytic disease|Hydrops fetalis due to hemolytic disease +C1399894|T047|AB|P56|ICD10CM|Hydrops fetalis due to hemolytic disease|Hydrops fetalis due to hemolytic disease +C0455990|T047|PT|P56.0|ICD10CM|Hydrops fetalis due to isoimmunization|Hydrops fetalis due to isoimmunization +C0455990|T047|AB|P56.0|ICD10CM|Hydrops fetalis due to isoimmunization|Hydrops fetalis due to isoimmunization +C0455990|T047|PT|P56.0|ICD10|Hydrops fetalis due to isoimmunization|Hydrops fetalis due to isoimmunization +C0477933|T047|AB|P56.9|ICD10CM|Hydrops fetalis due to other and unsp hemolytic disease|Hydrops fetalis due to other and unsp hemolytic disease +C0477933|T047|PT|P56.9|ICD10|Hydrops fetalis due to other and unspecified haemolytic disease|Hydrops fetalis due to other and unspecified haemolytic disease +C0477933|T047|PT|P56.9|ICD10AE|Hydrops fetalis due to other and unspecified hemolytic disease|Hydrops fetalis due to other and unspecified hemolytic disease +C0477933|T047|HT|P56.9|ICD10CM|Hydrops fetalis due to other and unspecified hemolytic disease|Hydrops fetalis due to other and unspecified hemolytic disease +C2910056|T047|AB|P56.90|ICD10CM|Hydrops fetalis due to unspecified hemolytic disease|Hydrops fetalis due to unspecified hemolytic disease +C2910056|T047|PT|P56.90|ICD10CM|Hydrops fetalis due to unspecified hemolytic disease|Hydrops fetalis due to unspecified hemolytic disease +C2910057|T047|AB|P56.99|ICD10CM|Hydrops fetalis due to other hemolytic disease|Hydrops fetalis due to other hemolytic disease +C2910057|T047|PT|P56.99|ICD10CM|Hydrops fetalis due to other hemolytic disease|Hydrops fetalis due to other hemolytic disease +C0022610|T047|HT|P57|ICD10CM|Kernicterus|Kernicterus +C0022610|T047|AB|P57|ICD10CM|Kernicterus|Kernicterus +C0022610|T047|HT|P57|ICD10|Kernicterus|Kernicterus +C0270204|T047|PT|P57.0|ICD10|Kernicterus due to isoimmunization|Kernicterus due to isoimmunization +C0270204|T047|PT|P57.0|ICD10CM|Kernicterus due to isoimmunization|Kernicterus due to isoimmunization +C0270204|T047|AB|P57.0|ICD10CM|Kernicterus due to isoimmunization|Kernicterus due to isoimmunization +C0477934|T047|PT|P57.8|ICD10|Other specified kernicterus|Other specified kernicterus +C0477934|T047|PT|P57.8|ICD10CM|Other specified kernicterus|Other specified kernicterus +C0477934|T047|AB|P57.8|ICD10CM|Other specified kernicterus|Other specified kernicterus +C0022610|T047|PT|P57.9|ICD10|Kernicterus, unspecified|Kernicterus, unspecified +C0022610|T047|PT|P57.9|ICD10CM|Kernicterus, unspecified|Kernicterus, unspecified +C0022610|T047|AB|P57.9|ICD10CM|Kernicterus, unspecified|Kernicterus, unspecified +C0495427|T046|HT|P58|ICD10|Neonatal jaundice due to other excessive haemolysis|Neonatal jaundice due to other excessive haemolysis +C0495427|T046|AB|P58|ICD10CM|Neonatal jaundice due to other excessive hemolysis|Neonatal jaundice due to other excessive hemolysis +C0495427|T046|HT|P58|ICD10CM|Neonatal jaundice due to other excessive hemolysis|Neonatal jaundice due to other excessive hemolysis +C0495427|T046|HT|P58|ICD10AE|Neonatal jaundice due to other excessive hemolysis|Neonatal jaundice due to other excessive hemolysis +C0270208|T033|PT|P58.0|ICD10CM|Neonatal jaundice due to bruising|Neonatal jaundice due to bruising +C0270208|T033|AB|P58.0|ICD10CM|Neonatal jaundice due to bruising|Neonatal jaundice due to bruising +C0270208|T033|PT|P58.0|ICD10|Neonatal jaundice due to bruising|Neonatal jaundice due to bruising +C0495429|T033|PT|P58.1|ICD10|Neonatal jaundice due to bleeding|Neonatal jaundice due to bleeding +C0495429|T033|PT|P58.1|ICD10CM|Neonatal jaundice due to bleeding|Neonatal jaundice due to bleeding +C0495429|T033|AB|P58.1|ICD10CM|Neonatal jaundice due to bleeding|Neonatal jaundice due to bleeding +C0270211|T046|PT|P58.2|ICD10|Neonatal jaundice due to infection|Neonatal jaundice due to infection +C0270211|T046|PT|P58.2|ICD10CM|Neonatal jaundice due to infection|Neonatal jaundice due to infection +C0270211|T046|AB|P58.2|ICD10CM|Neonatal jaundice due to infection|Neonatal jaundice due to infection +C0495431|T046|PT|P58.3|ICD10|Neonatal jaundice due to polycythaemia|Neonatal jaundice due to polycythaemia +C0495431|T046|PT|P58.3|ICD10CM|Neonatal jaundice due to polycythemia|Neonatal jaundice due to polycythemia +C0495431|T046|AB|P58.3|ICD10CM|Neonatal jaundice due to polycythemia|Neonatal jaundice due to polycythemia +C0495431|T046|PT|P58.3|ICD10AE|Neonatal jaundice due to polycythemia|Neonatal jaundice due to polycythemia +C0477935|T046|HT|P58.4|ICD10CM|Neonatal jaundice due to drugs or toxins transmitted from mother or given to newborn|Neonatal jaundice due to drugs or toxins transmitted from mother or given to newborn +C0477935|T046|PT|P58.4|ICD10|Neonatal jaundice due to drugs or toxins transmitted from mother or given to newborn|Neonatal jaundice due to drugs or toxins transmitted from mother or given to newborn +C0477935|T046|AB|P58.4|ICD10CM|Neontl jaundice d/t mother drugs/toxins|Neontl jaundice d/t mother drugs/toxins +C2910058|T037|AB|P58.41|ICD10CM|NB jaund due to drugs or toxins transmitted from mother|NB jaund due to drugs or toxins transmitted from mother +C2910058|T037|PT|P58.41|ICD10CM|Neonatal jaundice due to drugs or toxins transmitted from mother|Neonatal jaundice due to drugs or toxins transmitted from mother +C2910059|T037|PT|P58.42|ICD10CM|Neonatal jaundice due to drugs or toxins given to newborn|Neonatal jaundice due to drugs or toxins given to newborn +C2910059|T037|AB|P58.42|ICD10CM|Neonatal jaundice due to drugs or toxins given to newborn|Neonatal jaundice due to drugs or toxins given to newborn +C1442746|T046|PT|P58.5|ICD10CM|Neonatal jaundice due to swallowed maternal blood|Neonatal jaundice due to swallowed maternal blood +C1442746|T046|AB|P58.5|ICD10CM|Neonatal jaundice due to swallowed maternal blood|Neonatal jaundice due to swallowed maternal blood +C1442746|T046|PT|P58.5|ICD10|Neonatal jaundice due to swallowed maternal blood|Neonatal jaundice due to swallowed maternal blood +C0477936|T046|PT|P58.8|ICD10|Neonatal jaundice due to other specified excessive haemolysis|Neonatal jaundice due to other specified excessive haemolysis +C0477936|T046|PT|P58.8|ICD10AE|Neonatal jaundice due to other specified excessive hemolysis|Neonatal jaundice due to other specified excessive hemolysis +C0477936|T046|PT|P58.8|ICD10CM|Neonatal jaundice due to other specified excessive hemolysis|Neonatal jaundice due to other specified excessive hemolysis +C0477936|T046|AB|P58.8|ICD10CM|Neonatal jaundice due to other specified excessive hemolysis|Neonatal jaundice due to other specified excessive hemolysis +C0495433|T046|PT|P58.9|ICD10|Neonatal jaundice due to excessive haemolysis, unspecified|Neonatal jaundice due to excessive haemolysis, unspecified +C0495433|T046|PT|P58.9|ICD10CM|Neonatal jaundice due to excessive hemolysis, unspecified|Neonatal jaundice due to excessive hemolysis, unspecified +C0495433|T046|AB|P58.9|ICD10CM|Neonatal jaundice due to excessive hemolysis, unspecified|Neonatal jaundice due to excessive hemolysis, unspecified +C0495433|T046|PT|P58.9|ICD10AE|Neonatal jaundice due to excessive hemolysis, unspecified|Neonatal jaundice due to excessive hemolysis, unspecified +C0158977|T047|AB|P59|ICD10CM|Neonatal jaundice from other and unspecified causes|Neonatal jaundice from other and unspecified causes +C0158977|T047|HT|P59|ICD10CM|Neonatal jaundice from other and unspecified causes|Neonatal jaundice from other and unspecified causes +C0158977|T047|HT|P59|ICD10|Neonatal jaundice from other and unspecified causes|Neonatal jaundice from other and unspecified causes +C0158971|T046|ET|P59.0|ICD10CM|Hyperbilirubinemia of prematurity|Hyperbilirubinemia of prematurity +C0158971|T046|ET|P59.0|ICD10CM|Jaundice due to delayed conjugation associated with preterm delivery|Jaundice due to delayed conjugation associated with preterm delivery +C0158971|T046|PT|P59.0|ICD10CM|Neonatal jaundice associated with preterm delivery|Neonatal jaundice associated with preterm delivery +C0158971|T046|AB|P59.0|ICD10CM|Neonatal jaundice associated with preterm delivery|Neonatal jaundice associated with preterm delivery +C0158971|T046|PT|P59.0|ICD10|Neonatal jaundice associated with preterm delivery|Neonatal jaundice associated with preterm delivery +C0270217|T047|PT|P59.1|ICD10|Inspissated bile syndrome|Inspissated bile syndrome +C0270217|T047|PT|P59.1|ICD10CM|Inspissated bile syndrome|Inspissated bile syndrome +C0270217|T047|AB|P59.1|ICD10CM|Inspissated bile syndrome|Inspissated bile syndrome +C0477937|T046|AB|P59.2|ICD10CM|Neonatal jaundice from other and unsp hepatocellular damage|Neonatal jaundice from other and unsp hepatocellular damage +C0477937|T046|HT|P59.2|ICD10CM|Neonatal jaundice from other and unspecified hepatocellular damage|Neonatal jaundice from other and unspecified hepatocellular damage +C0477937|T046|PT|P59.2|ICD10|Neonatal jaundice from other and unspecified hepatocellular damage|Neonatal jaundice from other and unspecified hepatocellular damage +C2910060|T047|AB|P59.20|ICD10CM|Neonatal jaundice from unspecified hepatocellular damage|Neonatal jaundice from unspecified hepatocellular damage +C2910060|T047|PT|P59.20|ICD10CM|Neonatal jaundice from unspecified hepatocellular damage|Neonatal jaundice from unspecified hepatocellular damage +C2910061|T047|ET|P59.29|ICD10CM|Neonatal (idiopathic) hepatitis|Neonatal (idiopathic) hepatitis +C0027613|T047|ET|P59.29|ICD10CM|Neonatal giant cell hepatitis|Neonatal giant cell hepatitis +C2910062|T047|AB|P59.29|ICD10CM|Neonatal jaundice from other hepatocellular damage|Neonatal jaundice from other hepatocellular damage +C2910062|T047|PT|P59.29|ICD10CM|Neonatal jaundice from other hepatocellular damage|Neonatal jaundice from other hepatocellular damage +C0270215|T046|PT|P59.3|ICD10CM|Neonatal jaundice from breast milk inhibitor|Neonatal jaundice from breast milk inhibitor +C0270215|T046|AB|P59.3|ICD10CM|Neonatal jaundice from breast milk inhibitor|Neonatal jaundice from breast milk inhibitor +C0270215|T046|PT|P59.3|ICD10|Neonatal jaundice from breast milk inhibitor|Neonatal jaundice from breast milk inhibitor +C0477938|T046|PT|P59.8|ICD10CM|Neonatal jaundice from other specified causes|Neonatal jaundice from other specified causes +C0477938|T046|AB|P59.8|ICD10CM|Neonatal jaundice from other specified causes|Neonatal jaundice from other specified causes +C0477938|T046|PT|P59.8|ICD10|Neonatal jaundice from other specified causes|Neonatal jaundice from other specified causes +C0022353|T047|PT|P59.9|ICD10|Neonatal jaundice, unspecified|Neonatal jaundice, unspecified +C0022353|T047|PT|P59.9|ICD10CM|Neonatal jaundice, unspecified|Neonatal jaundice, unspecified +C0022353|T047|AB|P59.9|ICD10CM|Neonatal jaundice, unspecified|Neonatal jaundice, unspecified +C2910063|T046|ET|P59.9|ICD10CM|Neonatal physiological jaundice (intense)(prolonged) NOS|Neonatal physiological jaundice (intense)(prolonged) NOS +C0158992|T047|ET|P60|ICD10CM|Defibrination syndrome of newborn|Defibrination syndrome of newborn +C0158992|T047|PT|P60|ICD10|Disseminated intravascular coagulation of fetus and newborn|Disseminated intravascular coagulation of fetus and newborn +C0158992|T047|AB|P60|ICD10CM|Disseminated intravascular coagulation of newborn|Disseminated intravascular coagulation of newborn +C0158992|T047|PT|P60|ICD10CM|Disseminated intravascular coagulation of newborn|Disseminated intravascular coagulation of newborn +C0495438|T047|HT|P61|ICD10|Other perinatal haematological disorders|Other perinatal haematological disorders +C0495438|T047|AB|P61|ICD10CM|Other perinatal hematological disorders|Other perinatal hematological disorders +C0495438|T047|HT|P61|ICD10CM|Other perinatal hematological disorders|Other perinatal hematological disorders +C0495438|T047|HT|P61|ICD10AE|Other perinatal hematological disorders|Other perinatal hematological disorders +C0270235|T046|ET|P61.0|ICD10CM|Neonatal thrombocytopenia due to exchange transfusion|Neonatal thrombocytopenia due to exchange transfusion +C0270236|T046|ET|P61.0|ICD10CM|Neonatal thrombocytopenia due to idiopathic maternal thrombocytopenia|Neonatal thrombocytopenia due to idiopathic maternal thrombocytopenia +C0270237|T046|ET|P61.0|ICD10CM|Neonatal thrombocytopenia due to isoimmunization|Neonatal thrombocytopenia due to isoimmunization +C0158991|T047|PT|P61.0|ICD10CM|Transient neonatal thrombocytopenia|Transient neonatal thrombocytopenia +C0158991|T047|AB|P61.0|ICD10CM|Transient neonatal thrombocytopenia|Transient neonatal thrombocytopenia +C0158991|T047|PT|P61.0|ICD10|Transient neonatal thrombocytopenia|Transient neonatal thrombocytopenia +C0272153|T047|PT|P61.1|ICD10|Polycythaemia neonatorum|Polycythaemia neonatorum +C0272153|T047|PT|P61.1|ICD10CM|Polycythemia neonatorum|Polycythemia neonatorum +C0272153|T047|AB|P61.1|ICD10CM|Polycythemia neonatorum|Polycythemia neonatorum +C0272153|T047|PT|P61.1|ICD10AE|Polycythemia neonatorum|Polycythemia neonatorum +C0158996|T047|PT|P61.2|ICD10|Anaemia of prematurity|Anaemia of prematurity +C0158996|T047|PT|P61.2|ICD10AE|Anemia of prematurity|Anemia of prematurity +C0158996|T047|PT|P61.2|ICD10CM|Anemia of prematurity|Anemia of prematurity +C0158996|T047|AB|P61.2|ICD10CM|Anemia of prematurity|Anemia of prematurity +C0475600|T019|PT|P61.3|ICD10|Congenital anaemia from fetal blood loss|Congenital anaemia from fetal blood loss +C0475600|T047|PT|P61.3|ICD10|Congenital anaemia from fetal blood loss|Congenital anaemia from fetal blood loss +C0475600|T019|PT|P61.3|ICD10AE|Congenital anemia from fetal blood loss|Congenital anemia from fetal blood loss +C0475600|T047|PT|P61.3|ICD10AE|Congenital anemia from fetal blood loss|Congenital anemia from fetal blood loss +C0475600|T019|PT|P61.3|ICD10CM|Congenital anemia from fetal blood loss|Congenital anemia from fetal blood loss +C0475600|T047|PT|P61.3|ICD10CM|Congenital anemia from fetal blood loss|Congenital anemia from fetal blood loss +C0475600|T019|AB|P61.3|ICD10CM|Congenital anemia from fetal blood loss|Congenital anemia from fetal blood loss +C0475600|T047|AB|P61.3|ICD10CM|Congenital anemia from fetal blood loss|Congenital anemia from fetal blood loss +C0158995|T047|ET|P61.4|ICD10CM|Congenital anemia NOS|Congenital anemia NOS +C0869077|T047|PT|P61.4|ICD10|Other congenital anaemias, not elsewhere classified|Other congenital anaemias, not elsewhere classified +C0869077|T047|PT|P61.4|ICD10AE|Other congenital anemias, not elsewhere classified|Other congenital anemias, not elsewhere classified +C0869077|T047|PT|P61.4|ICD10CM|Other congenital anemias, not elsewhere classified|Other congenital anemias, not elsewhere classified +C0869077|T047|AB|P61.4|ICD10CM|Other congenital anemias, not elsewhere classified|Other congenital anemias, not elsewhere classified +C0158997|T047|PT|P61.5|ICD10|Transient neonatal neutropenia|Transient neonatal neutropenia +C0158997|T047|PT|P61.5|ICD10CM|Transient neonatal neutropenia|Transient neonatal neutropenia +C0158997|T047|AB|P61.5|ICD10CM|Transient neonatal neutropenia|Transient neonatal neutropenia +C0158993|T047|PT|P61.6|ICD10CM|Other transient neonatal disorders of coagulation|Other transient neonatal disorders of coagulation +C0158993|T047|AB|P61.6|ICD10CM|Other transient neonatal disorders of coagulation|Other transient neonatal disorders of coagulation +C0158993|T047|PT|P61.6|ICD10|Other transient neonatal disorders of coagulation|Other transient neonatal disorders of coagulation +C0477940|T047|PT|P61.8|ICD10|Other specified perinatal haematological disorders|Other specified perinatal haematological disorders +C0477940|T047|PT|P61.8|ICD10AE|Other specified perinatal hematological disorders|Other specified perinatal hematological disorders +C0477940|T047|PT|P61.8|ICD10CM|Other specified perinatal hematological disorders|Other specified perinatal hematological disorders +C0477940|T047|AB|P61.8|ICD10CM|Other specified perinatal hematological disorders|Other specified perinatal hematological disorders +C0495439|T047|PT|P61.9|ICD10|Perinatal haematological disorder, unspecified|Perinatal haematological disorder, unspecified +C0495439|T047|PT|P61.9|ICD10AE|Perinatal hematological disorder, unspecified|Perinatal hematological disorder, unspecified +C0495439|T047|PT|P61.9|ICD10CM|Perinatal hematological disorder, unspecified|Perinatal hematological disorder, unspecified +C0495439|T047|AB|P61.9|ICD10CM|Perinatal hematological disorder, unspecified|Perinatal hematological disorder, unspecified +C2910064|T033|AB|P70|ICD10CM|Transitory disord of carbohydrate metab specific to newborn|Transitory disord of carbohydrate metab specific to newborn +C0495440|T047|HT|P70|ICD10|Transitory disorders of carbohydrate metabolism specific to fetus and newborn|Transitory disorders of carbohydrate metabolism specific to fetus and newborn +C2910064|T033|HT|P70|ICD10CM|Transitory disorders of carbohydrate metabolism specific to newborn|Transitory disorders of carbohydrate metabolism specific to newborn +C2910066|T047|HT|P70-P74|ICD10CM|Transitory endocrine and metabolic disorders specific to newborn (P70-P74)|Transitory endocrine and metabolic disorders specific to newborn (P70-P74) +C0477942|T047|HT|P70-P74.9|ICD10|Transitory endocrine and metabolic disorders specific to fetus and newborn|Transitory endocrine and metabolic disorders specific to fetus and newborn +C2910067|T046|ET|P70.0|ICD10CM|Newborn (with hypoglycemia) affected by maternal gestational diabetes|Newborn (with hypoglycemia) affected by maternal gestational diabetes +C1455664|T047|PT|P70.0|ICD10|Syndrome of infant of mother with gestational diabetes|Syndrome of infant of mother with gestational diabetes +C1455664|T047|PT|P70.0|ICD10CM|Syndrome of infant of mother with gestational diabetes|Syndrome of infant of mother with gestational diabetes +C1455664|T047|AB|P70.0|ICD10CM|Syndrome of infant of mother with gestational diabetes|Syndrome of infant of mother with gestational diabetes +C2910068|T046|ET|P70.1|ICD10CM|Newborn (with hypoglycemia) affected by maternal (pre-existing) diabetes mellitus|Newborn (with hypoglycemia) affected by maternal (pre-existing) diabetes mellitus +C0270221|T047|PT|P70.1|ICD10|Syndrome of infant of a diabetic mother|Syndrome of infant of a diabetic mother +C0270221|T047|PT|P70.1|ICD10CM|Syndrome of infant of a diabetic mother|Syndrome of infant of a diabetic mother +C0270221|T047|AB|P70.1|ICD10CM|Syndrome of infant of a diabetic mother|Syndrome of infant of a diabetic mother +C0158981|T047|PT|P70.2|ICD10|Neonatal diabetes mellitus|Neonatal diabetes mellitus +C0158981|T047|PT|P70.2|ICD10CM|Neonatal diabetes mellitus|Neonatal diabetes mellitus +C0158981|T047|AB|P70.2|ICD10CM|Neonatal diabetes mellitus|Neonatal diabetes mellitus +C0475722|T046|PT|P70.3|ICD10|Iatrogenic neonatal hypoglycaemia|Iatrogenic neonatal hypoglycaemia +C0475722|T046|PT|P70.3|ICD10AE|Iatrogenic neonatal hypoglycemia|Iatrogenic neonatal hypoglycemia +C0475722|T046|PT|P70.3|ICD10CM|Iatrogenic neonatal hypoglycemia|Iatrogenic neonatal hypoglycemia +C0475722|T046|AB|P70.3|ICD10CM|Iatrogenic neonatal hypoglycemia|Iatrogenic neonatal hypoglycemia +C0477943|T046|PT|P70.4|ICD10|Other neonatal hypoglycaemia|Other neonatal hypoglycaemia +C0477943|T046|PT|P70.4|ICD10CM|Other neonatal hypoglycemia|Other neonatal hypoglycemia +C0477943|T046|AB|P70.4|ICD10CM|Other neonatal hypoglycemia|Other neonatal hypoglycemia +C0477943|T046|PT|P70.4|ICD10AE|Other neonatal hypoglycemia|Other neonatal hypoglycemia +C0475721|T047|ET|P70.4|ICD10CM|Transitory neonatal hypoglycemia|Transitory neonatal hypoglycemia +C2910069|T033|AB|P70.8|ICD10CM|Oth transitory disorders of carbohydrate metab of newborn|Oth transitory disorders of carbohydrate metab of newborn +C0477944|T047|PT|P70.8|ICD10|Other transitory disorders of carbohydrate metabolism of fetus and newborn|Other transitory disorders of carbohydrate metabolism of fetus and newborn +C2910069|T033|PT|P70.8|ICD10CM|Other transitory disorders of carbohydrate metabolism of newborn|Other transitory disorders of carbohydrate metabolism of newborn +C2910070|T033|AB|P70.9|ICD10CM|Transitory disorder of carbohydrate metab of newborn, unsp|Transitory disorder of carbohydrate metab of newborn, unsp +C0477950|T047|PT|P70.9|ICD10|Transitory disorder of carbohydrate metabolism of fetus and newborn, unspecified|Transitory disorder of carbohydrate metabolism of fetus and newborn, unspecified +C2910070|T033|PT|P70.9|ICD10CM|Transitory disorder of carbohydrate metabolism of newborn, unspecified|Transitory disorder of carbohydrate metabolism of newborn, unspecified +C0495443|T047|AB|P71|ICD10CM|Transitory neonatal disorders of calcium and magnesium metab|Transitory neonatal disorders of calcium and magnesium metab +C0495443|T047|HT|P71|ICD10CM|Transitory neonatal disorders of calcium and magnesium metabolism|Transitory neonatal disorders of calcium and magnesium metabolism +C0495443|T047|HT|P71|ICD10|Transitory neonatal disorders of calcium and magnesium metabolism|Transitory neonatal disorders of calcium and magnesium metabolism +C0270223|T047|PT|P71.0|ICD10|Cow's milk hypocalcaemia in newborn|Cow's milk hypocalcaemia in newborn +C0270223|T047|PT|P71.0|ICD10AE|Cow's milk hypocalcemia in newborn|Cow's milk hypocalcemia in newborn +C0270223|T047|PT|P71.0|ICD10CM|Cow's milk hypocalcemia in newborn|Cow's milk hypocalcemia in newborn +C0270223|T047|AB|P71.0|ICD10CM|Cow's milk hypocalcemia in newborn|Cow's milk hypocalcemia in newborn +C0343309|T047|PT|P71.1|ICD10|Other neonatal hypocalcaemia|Other neonatal hypocalcaemia +C0343309|T047|PT|P71.1|ICD10CM|Other neonatal hypocalcemia|Other neonatal hypocalcemia +C0343309|T047|AB|P71.1|ICD10CM|Other neonatal hypocalcemia|Other neonatal hypocalcemia +C0343309|T047|PT|P71.1|ICD10AE|Other neonatal hypocalcemia|Other neonatal hypocalcemia +C0268075|T047|PT|P71.2|ICD10|Neonatal hypomagnesaemia|Neonatal hypomagnesaemia +C0268075|T047|PT|P71.2|ICD10AE|Neonatal hypomagnesemia|Neonatal hypomagnesemia +C0268075|T047|PT|P71.2|ICD10CM|Neonatal hypomagnesemia|Neonatal hypomagnesemia +C0268075|T047|AB|P71.2|ICD10CM|Neonatal hypomagnesemia|Neonatal hypomagnesemia +C0270224|T047|ET|P71.3|ICD10CM|Neonatal tetany NOS|Neonatal tetany NOS +C0410961|T033|PT|P71.3|ICD10CM|Neonatal tetany without calcium or magnesium deficiency|Neonatal tetany without calcium or magnesium deficiency +C0410961|T033|AB|P71.3|ICD10CM|Neonatal tetany without calcium or magnesium deficiency|Neonatal tetany without calcium or magnesium deficiency +C0410961|T033|PT|P71.3|ICD10|Neonatal tetany without calcium or magnesium deficiency|Neonatal tetany without calcium or magnesium deficiency +C0271863|T047|PT|P71.4|ICD10CM|Transitory neonatal hypoparathyroidism|Transitory neonatal hypoparathyroidism +C0271863|T047|AB|P71.4|ICD10CM|Transitory neonatal hypoparathyroidism|Transitory neonatal hypoparathyroidism +C0271863|T047|PT|P71.4|ICD10|Transitory neonatal hypoparathyroidism|Transitory neonatal hypoparathyroidism +C0477945|T047|AB|P71.8|ICD10CM|Oth transitory neonatal disord of calcium & magnesium metab|Oth transitory neonatal disord of calcium & magnesium metab +C0477945|T047|PT|P71.8|ICD10CM|Other transitory neonatal disorders of calcium and magnesium metabolism|Other transitory neonatal disorders of calcium and magnesium metabolism +C0477945|T047|PT|P71.8|ICD10|Other transitory neonatal disorders of calcium and magnesium metabolism|Other transitory neonatal disorders of calcium and magnesium metabolism +C0495443|T047|AB|P71.9|ICD10CM|Transitory neonatal disord of calcium & magnesium metab,unsp|Transitory neonatal disord of calcium & magnesium metab,unsp +C0495443|T047|PT|P71.9|ICD10CM|Transitory neonatal disorder of calcium and magnesium metabolism, unspecified|Transitory neonatal disorder of calcium and magnesium metabolism, unspecified +C0495443|T047|PT|P71.9|ICD10|Transitory neonatal disorder of calcium and magnesium metabolism, unspecified|Transitory neonatal disorder of calcium and magnesium metabolism, unspecified +C0495444|T047|HT|P72|ICD10|Other transitory neonatal endocrine disorders|Other transitory neonatal endocrine disorders +C0495444|T047|AB|P72|ICD10CM|Other transitory neonatal endocrine disorders|Other transitory neonatal endocrine disorders +C0495444|T047|HT|P72|ICD10CM|Other transitory neonatal endocrine disorders|Other transitory neonatal endocrine disorders +C0869079|T019|PT|P72.0|ICD10AE|Neonatal goiter, not elsewhere classified|Neonatal goiter, not elsewhere classified +C0869079|T019|PT|P72.0|ICD10CM|Neonatal goiter, not elsewhere classified|Neonatal goiter, not elsewhere classified +C0869079|T019|AB|P72.0|ICD10CM|Neonatal goiter, not elsewhere classified|Neonatal goiter, not elsewhere classified +C0869079|T019|PT|P72.0|ICD10|Neonatal goitre, not elsewhere classified|Neonatal goitre, not elsewhere classified +C2910071|T047|ET|P72.0|ICD10CM|Transitory congenital goiter with normal functioning|Transitory congenital goiter with normal functioning +C0158983|T047|ET|P72.1|ICD10CM|Neonatal thyrotoxicosis|Neonatal thyrotoxicosis +C0270222|T047|PT|P72.1|ICD10CM|Transitory neonatal hyperthyroidism|Transitory neonatal hyperthyroidism +C0270222|T047|AB|P72.1|ICD10CM|Transitory neonatal hyperthyroidism|Transitory neonatal hyperthyroidism +C0270222|T047|PT|P72.1|ICD10|Transitory neonatal hyperthyroidism|Transitory neonatal hyperthyroidism +C0869078|T047|AB|P72.2|ICD10CM|Oth transitory neonatal disorders of thyroid function, NEC|Oth transitory neonatal disorders of thyroid function, NEC +C0869078|T047|PT|P72.2|ICD10CM|Other transitory neonatal disorders of thyroid function, not elsewhere classified|Other transitory neonatal disorders of thyroid function, not elsewhere classified +C0869078|T047|PT|P72.2|ICD10|Other transitory neonatal disorders of thyroid function, not elsewhere classified|Other transitory neonatal disorders of thyroid function, not elsewhere classified +C2910072|T047|ET|P72.2|ICD10CM|Transitory neonatal hypothyroidism|Transitory neonatal hypothyroidism +C0477947|T047|PT|P72.8|ICD10|Other specified transitory neonatal endocrine disorders|Other specified transitory neonatal endocrine disorders +C0477947|T047|PT|P72.8|ICD10CM|Other specified transitory neonatal endocrine disorders|Other specified transitory neonatal endocrine disorders +C0477947|T047|AB|P72.8|ICD10CM|Other specified transitory neonatal endocrine disorders|Other specified transitory neonatal endocrine disorders +C0477953|T047|PT|P72.9|ICD10CM|Transitory neonatal endocrine disorder, unspecified|Transitory neonatal endocrine disorder, unspecified +C0477953|T047|AB|P72.9|ICD10CM|Transitory neonatal endocrine disorder, unspecified|Transitory neonatal endocrine disorder, unspecified +C0477953|T047|PT|P72.9|ICD10|Transitory neonatal endocrine disorder, unspecified|Transitory neonatal endocrine disorder, unspecified +C0495446|T047|AB|P74|ICD10CM|Oth transitory neonatal electrolyte and metabolic disturb|Oth transitory neonatal electrolyte and metabolic disturb +C0495446|T047|HT|P74|ICD10CM|Other transitory neonatal electrolyte and metabolic disturbances|Other transitory neonatal electrolyte and metabolic disturbances +C0495446|T047|HT|P74|ICD10|Other transitory neonatal electrolyte and metabolic disturbances|Other transitory neonatal electrolyte and metabolic disturbances +C0158987|T033|PT|P74.0|ICD10CM|Late metabolic acidosis of newborn|Late metabolic acidosis of newborn +C0158987|T033|AB|P74.0|ICD10CM|Late metabolic acidosis of newborn|Late metabolic acidosis of newborn +C0158987|T033|PT|P74.0|ICD10|Late metabolic acidosis of newborn|Late metabolic acidosis of newborn +C0270229|T047|PT|P74.1|ICD10|Dehydration of newborn|Dehydration of newborn +C0270229|T047|PT|P74.1|ICD10CM|Dehydration of newborn|Dehydration of newborn +C0270229|T047|AB|P74.1|ICD10CM|Dehydration of newborn|Dehydration of newborn +C0452223|T033|PT|P74.2|ICD10|Disturbances of sodium balance of newborn|Disturbances of sodium balance of newborn +C0452223|T033|AB|P74.2|ICD10CM|Disturbances of sodium balance of newborn|Disturbances of sodium balance of newborn +C0452223|T033|HT|P74.2|ICD10CM|Disturbances of sodium balance of newborn|Disturbances of sodium balance of newborn +C4703323|T047|AB|P74.21|ICD10CM|Hypernatremia of newborn|Hypernatremia of newborn +C4703323|T047|PT|P74.21|ICD10CM|Hypernatremia of newborn|Hypernatremia of newborn +C4703324|T047|PT|P74.22|ICD10CM|Hyponatremia of newborn|Hyponatremia of newborn +C4703324|T047|AB|P74.22|ICD10CM|Hyponatremia of newborn|Hyponatremia of newborn +C0452224|T033|AB|P74.3|ICD10CM|Disturbances of potassium balance of newborn|Disturbances of potassium balance of newborn +C0452224|T033|HT|P74.3|ICD10CM|Disturbances of potassium balance of newborn|Disturbances of potassium balance of newborn +C0452224|T033|PT|P74.3|ICD10|Disturbances of potassium balance of newborn|Disturbances of potassium balance of newborn +C4703325|T047|PT|P74.31|ICD10CM|Hyperkalemia of newborn|Hyperkalemia of newborn +C4703325|T047|AB|P74.31|ICD10CM|Hyperkalemia of newborn|Hyperkalemia of newborn +C4703326|T047|AB|P74.32|ICD10CM|Hypokalemia of newborn|Hypokalemia of newborn +C4703326|T047|PT|P74.32|ICD10CM|Hypokalemia of newborn|Hypokalemia of newborn +C0495447|T047|PT|P74.4|ICD10|Other transitory electrolyte disturbances of newborn|Other transitory electrolyte disturbances of newborn +C0495447|T047|AB|P74.4|ICD10CM|Other transitory electrolyte disturbances of newborn|Other transitory electrolyte disturbances of newborn +C0495447|T047|HT|P74.4|ICD10CM|Other transitory electrolyte disturbances of newborn|Other transitory electrolyte disturbances of newborn +C4703327|T046|PT|P74.41|ICD10CM|Alkalosis of newborn|Alkalosis of newborn +C4703327|T046|AB|P74.41|ICD10CM|Alkalosis of newborn|Alkalosis of newborn +C4718801|T033|ET|P74.41|ICD10CM|Hyperbicarbonatemia|Hyperbicarbonatemia +C4703328|T033|HT|P74.42|ICD10CM|Disturbances of chlorine balance of newborn|Disturbances of chlorine balance of newborn +C4703328|T033|AB|P74.42|ICD10CM|Disturbances of chlorine balance of newborn|Disturbances of chlorine balance of newborn +C4703329|T047|AB|P74.421|ICD10CM|Hyperchloremia of newborn|Hyperchloremia of newborn +C4703329|T047|PT|P74.421|ICD10CM|Hyperchloremia of newborn|Hyperchloremia of newborn +C1969073|T047|ET|P74.421|ICD10CM|Hyperchloremic metabolic acidosis|Hyperchloremic metabolic acidosis +C4703330|T047|PT|P74.422|ICD10CM|Hypochloremia of newborn|Hypochloremia of newborn +C4703330|T047|AB|P74.422|ICD10CM|Hypochloremia of newborn|Hypochloremia of newborn +C0495447|T047|AB|P74.49|ICD10CM|Other transitory electrolyte disturbance of newborn|Other transitory electrolyte disturbance of newborn +C0495447|T047|PT|P74.49|ICD10CM|Other transitory electrolyte disturbance of newborn|Other transitory electrolyte disturbance of newborn +C0268485|T047|PT|P74.5|ICD10|Transitory tyrosinaemia of newborn|Transitory tyrosinaemia of newborn +C0268485|T047|PT|P74.5|ICD10CM|Transitory tyrosinemia of newborn|Transitory tyrosinemia of newborn +C0268485|T047|AB|P74.5|ICD10CM|Transitory tyrosinemia of newborn|Transitory tyrosinemia of newborn +C0268485|T047|PT|P74.5|ICD10AE|Transitory tyrosinemia of newborn|Transitory tyrosinemia of newborn +C2910073|T047|AB|P74.6|ICD10CM|Transitory hyperammonemia of newborn|Transitory hyperammonemia of newborn +C2910073|T047|PT|P74.6|ICD10CM|Transitory hyperammonemia of newborn|Transitory hyperammonemia of newborn +C0270232|T047|ET|P74.8|ICD10CM|Amino-acid metabolic disorders described as transitory|Amino-acid metabolic disorders described as transitory +C0477949|T047|PT|P74.8|ICD10CM|Other transitory metabolic disturbances of newborn|Other transitory metabolic disturbances of newborn +C0477949|T047|AB|P74.8|ICD10CM|Other transitory metabolic disturbances of newborn|Other transitory metabolic disturbances of newborn +C0477949|T047|PT|P74.8|ICD10|Other transitory metabolic disturbances of newborn|Other transitory metabolic disturbances of newborn +C0477954|T047|PT|P74.9|ICD10|Transitory metabolic disturbance of newborn, unspecified|Transitory metabolic disturbance of newborn, unspecified +C0477954|T047|PT|P74.9|ICD10CM|Transitory metabolic disturbance of newborn, unspecified|Transitory metabolic disturbance of newborn, unspecified +C0477954|T047|AB|P74.9|ICD10CM|Transitory metabolic disturbance of newborn, unspecified|Transitory metabolic disturbance of newborn, unspecified +C2939175|T047|PT|P75|ICD10|Meconium ileus|Meconium ileus +C0477955|T047|HT|P75-P78.9|ICD10|Digestive system disorders of fetus and newborn|Digestive system disorders of fetus and newborn +C0495449|T020|HT|P76|ICD10|Other intestinal obstruction of newborn|Other intestinal obstruction of newborn +C0495449|T020|AB|P76|ICD10CM|Other intestinal obstruction of newborn|Other intestinal obstruction of newborn +C0495449|T020|HT|P76|ICD10CM|Other intestinal obstruction of newborn|Other intestinal obstruction of newborn +C2910075|T047|HT|P76-P78|ICD10CM|Digestive system disorders of newborn (P76-P78)|Digestive system disorders of newborn (P76-P78) +C2939175|T047|ET|P76.0|ICD10CM|Meconium ileus NOS|Meconium ileus NOS +C0270246|T047|PT|P76.0|ICD10CM|Meconium plug syndrome|Meconium plug syndrome +C0270246|T047|AB|P76.0|ICD10CM|Meconium plug syndrome|Meconium plug syndrome +C0270246|T047|PT|P76.0|ICD10|Meconium plug syndrome|Meconium plug syndrome +C0159004|T020|PT|P76.1|ICD10|Transitory ileus of newborn|Transitory ileus of newborn +C0159004|T020|PT|P76.1|ICD10CM|Transitory ileus of newborn|Transitory ileus of newborn +C0159004|T020|AB|P76.1|ICD10CM|Transitory ileus of newborn|Transitory ileus of newborn +C0400853|T047|PT|P76.2|ICD10CM|Intestinal obstruction due to inspissated milk|Intestinal obstruction due to inspissated milk +C0400853|T047|AB|P76.2|ICD10CM|Intestinal obstruction due to inspissated milk|Intestinal obstruction due to inspissated milk +C0400853|T047|PT|P76.2|ICD10|Intestinal obstruction due to inspissated milk|Intestinal obstruction due to inspissated milk +C0477956|T020|PT|P76.8|ICD10|Other specified intestinal obstruction of newborn|Other specified intestinal obstruction of newborn +C0477956|T020|PT|P76.8|ICD10CM|Other specified intestinal obstruction of newborn|Other specified intestinal obstruction of newborn +C0477956|T020|AB|P76.8|ICD10CM|Other specified intestinal obstruction of newborn|Other specified intestinal obstruction of newborn +C0477958|T033|PT|P76.9|ICD10CM|Intestinal obstruction of newborn, unspecified|Intestinal obstruction of newborn, unspecified +C0477958|T033|AB|P76.9|ICD10CM|Intestinal obstruction of newborn, unspecified|Intestinal obstruction of newborn, unspecified +C0477958|T033|PT|P76.9|ICD10|Intestinal obstruction of newborn, unspecified|Intestinal obstruction of newborn, unspecified +C4082937|T047|PT|P77|ICD10|Necrotizing enterocolitis of fetus and newborn|Necrotizing enterocolitis of fetus and newborn +C2349669|T047|AB|P77|ICD10CM|Necrotizing enterocolitis of newborn|Necrotizing enterocolitis of newborn +C2349669|T047|HT|P77|ICD10CM|Necrotizing enterocolitis of newborn|Necrotizing enterocolitis of newborn +C2712742|T047|ET|P77.1|ICD10CM|Necrotizing enterocolitis without pneumatosis, without perforation|Necrotizing enterocolitis without pneumatosis, without perforation +C2910076|T047|AB|P77.1|ICD10CM|Stage 1 necrotizing enterocolitis in newborn|Stage 1 necrotizing enterocolitis in newborn +C2910076|T047|PT|P77.1|ICD10CM|Stage 1 necrotizing enterocolitis in newborn|Stage 1 necrotizing enterocolitis in newborn +C2349665|T047|ET|P77.2|ICD10CM|Necrotizing enterocolitis with pneumatosis, without perforation|Necrotizing enterocolitis with pneumatosis, without perforation +C2910077|T047|AB|P77.2|ICD10CM|Stage 2 necrotizing enterocolitis in newborn|Stage 2 necrotizing enterocolitis in newborn +C2910077|T047|PT|P77.2|ICD10CM|Stage 2 necrotizing enterocolitis in newborn|Stage 2 necrotizing enterocolitis in newborn +C2349667|T047|ET|P77.3|ICD10CM|Necrotizing enterocolitis with perforation|Necrotizing enterocolitis with perforation +C2349668|T047|ET|P77.3|ICD10CM|Necrotizing enterocolitis with pneumatosis and perforation|Necrotizing enterocolitis with pneumatosis and perforation +C2910078|T047|AB|P77.3|ICD10CM|Stage 3 necrotizing enterocolitis in newborn|Stage 3 necrotizing enterocolitis in newborn +C2910078|T047|PT|P77.3|ICD10CM|Stage 3 necrotizing enterocolitis in newborn|Stage 3 necrotizing enterocolitis in newborn +C2349669|T047|ET|P77.9|ICD10CM|Necrotizing enterocolitis in newborn, NOS|Necrotizing enterocolitis in newborn, NOS +C2349662|T047|AB|P77.9|ICD10CM|Necrotizing enterocolitis in newborn, unspecified|Necrotizing enterocolitis in newborn, unspecified +C2349662|T047|PT|P77.9|ICD10CM|Necrotizing enterocolitis in newborn, unspecified|Necrotizing enterocolitis in newborn, unspecified +C0410952|T047|HT|P78|ICD10|Other perinatal digestive system disorders|Other perinatal digestive system disorders +C0410952|T047|AB|P78|ICD10CM|Other perinatal digestive system disorders|Other perinatal digestive system disorders +C0410952|T047|HT|P78|ICD10CM|Other perinatal digestive system disorders|Other perinatal digestive system disorders +C0270250|T047|ET|P78.0|ICD10CM|Meconium peritonitis|Meconium peritonitis +C0159006|T047|PT|P78.0|ICD10CM|Perinatal intestinal perforation|Perinatal intestinal perforation +C0159006|T047|AB|P78.0|ICD10CM|Perinatal intestinal perforation|Perinatal intestinal perforation +C0159006|T047|PT|P78.0|ICD10|Perinatal intestinal perforation|Perinatal intestinal perforation +C0455998|T047|ET|P78.1|ICD10CM|Neonatal peritonitis NOS|Neonatal peritonitis NOS +C0477957|T047|PT|P78.1|ICD10CM|Other neonatal peritonitis|Other neonatal peritonitis +C0477957|T047|AB|P78.1|ICD10CM|Other neonatal peritonitis|Other neonatal peritonitis +C0477957|T047|PT|P78.1|ICD10|Other neonatal peritonitis|Other neonatal peritonitis +C0270249|T046|PT|P78.2|ICD10|Neonatal haematemesis and melaena due to swallowed maternal blood|Neonatal haematemesis and melaena due to swallowed maternal blood +C0270249|T046|AB|P78.2|ICD10CM|Neonatal hematemesis and melena d/t swallowed matern blood|Neonatal hematemesis and melena d/t swallowed matern blood +C0270249|T046|PT|P78.2|ICD10CM|Neonatal hematemesis and melena due to swallowed maternal blood|Neonatal hematemesis and melena due to swallowed maternal blood +C0270249|T046|PT|P78.2|ICD10AE|Neonatal hematemesis and melena due to swallowed maternal blood|Neonatal hematemesis and melena due to swallowed maternal blood +C0235840|T047|ET|P78.3|ICD10CM|Neonatal diarrhea NOS|Neonatal diarrhea NOS +C0495452|T047|PT|P78.3|ICD10CM|Noninfective neonatal diarrhea|Noninfective neonatal diarrhea +C0495452|T047|AB|P78.3|ICD10CM|Noninfective neonatal diarrhea|Noninfective neonatal diarrhea +C0495452|T047|PT|P78.3|ICD10AE|Noninfective neonatal diarrhea|Noninfective neonatal diarrhea +C0495452|T047|PT|P78.3|ICD10|Noninfective neonatal diarrhoea|Noninfective neonatal diarrhoea +C0159007|T047|PT|P78.8|ICD10|Other specified perinatal digestive system disorders|Other specified perinatal digestive system disorders +C0159007|T047|HT|P78.8|ICD10CM|Other specified perinatal digestive system disorders|Other specified perinatal digestive system disorders +C0159007|T047|AB|P78.8|ICD10CM|Other specified perinatal digestive system disorders|Other specified perinatal digestive system disorders +C1392670|T019|AB|P78.81|ICD10CM|Congenital cirrhosis (of liver)|Congenital cirrhosis (of liver) +C1392670|T047|AB|P78.81|ICD10CM|Congenital cirrhosis (of liver)|Congenital cirrhosis (of liver) +C1392670|T019|PT|P78.81|ICD10CM|Congenital cirrhosis (of liver)|Congenital cirrhosis (of liver) +C1392670|T047|PT|P78.81|ICD10CM|Congenital cirrhosis (of liver)|Congenital cirrhosis (of liver) +C0456000|T047|PT|P78.82|ICD10CM|Peptic ulcer of newborn|Peptic ulcer of newborn +C0456000|T047|AB|P78.82|ICD10CM|Peptic ulcer of newborn|Peptic ulcer of newborn +C2910079|T047|ET|P78.83|ICD10CM|Neonatal esophageal reflux|Neonatal esophageal reflux +C2910080|T047|AB|P78.83|ICD10CM|Newborn esophageal reflux|Newborn esophageal reflux +C2910080|T047|PT|P78.83|ICD10CM|Newborn esophageal reflux|Newborn esophageal reflux +C4509423|T047|ET|P78.84|ICD10CM|GALD|GALD +C4509423|T047|PT|P78.84|ICD10CM|Gestational alloimmune liver disease|Gestational alloimmune liver disease +C4509423|T047|AB|P78.84|ICD10CM|Gestational alloimmune liver disease|Gestational alloimmune liver disease +C0268059|T047|ET|P78.84|ICD10CM|Neonatal hemochromatosis|Neonatal hemochromatosis +C0159007|T047|PT|P78.89|ICD10CM|Other specified perinatal digestive system disorders|Other specified perinatal digestive system disorders +C0159007|T047|AB|P78.89|ICD10CM|Other specified perinatal digestive system disorders|Other specified perinatal digestive system disorders +C0159000|T047|PT|P78.9|ICD10CM|Perinatal digestive system disorder, unspecified|Perinatal digestive system disorder, unspecified +C0159000|T047|AB|P78.9|ICD10CM|Perinatal digestive system disorder, unspecified|Perinatal digestive system disorder, unspecified +C0159000|T047|PT|P78.9|ICD10|Perinatal digestive system disorder, unspecified|Perinatal digestive system disorder, unspecified +C0270256|T046|HT|P80|ICD10|Hypothermia of newborn|Hypothermia of newborn +C0270256|T046|HT|P80|ICD10CM|Hypothermia of newborn|Hypothermia of newborn +C0270256|T046|AB|P80|ICD10CM|Hypothermia of newborn|Hypothermia of newborn +C2910081|T033|HT|P80-P83|ICD10CM|Conditions involving the integument and temperature regulation of newborn (P80-P83)|Conditions involving the integument and temperature regulation of newborn (P80-P83) +C0159009|T046|HT|P80-P83.9|ICD10|Conditions involving the integument and temperature regulation of fetus and newborn|Conditions involving the integument and temperature regulation of fetus and newborn +C0159011|T047|PT|P80.0|ICD10|Cold injury syndrome|Cold injury syndrome +C0159011|T047|PT|P80.0|ICD10CM|Cold injury syndrome|Cold injury syndrome +C0159011|T047|AB|P80.0|ICD10CM|Cold injury syndrome|Cold injury syndrome +C2910083|T047|ET|P80.8|ICD10CM|Mild hypothermia of newborn|Mild hypothermia of newborn +C0159012|T046|PT|P80.8|ICD10CM|Other hypothermia of newborn|Other hypothermia of newborn +C0159012|T046|AB|P80.8|ICD10CM|Other hypothermia of newborn|Other hypothermia of newborn +C0159012|T046|PT|P80.8|ICD10|Other hypothermia of newborn|Other hypothermia of newborn +C0270256|T046|PT|P80.9|ICD10|Hypothermia of newborn, unspecified|Hypothermia of newborn, unspecified +C0270256|T046|PT|P80.9|ICD10CM|Hypothermia of newborn, unspecified|Hypothermia of newborn, unspecified +C0270256|T046|AB|P80.9|ICD10CM|Hypothermia of newborn, unspecified|Hypothermia of newborn, unspecified +C0159013|T047|HT|P81|ICD10|Other disturbances of temperature regulation of newborn|Other disturbances of temperature regulation of newborn +C0159013|T047|HT|P81|ICD10CM|Other disturbances of temperature regulation of newborn|Other disturbances of temperature regulation of newborn +C0159013|T047|AB|P81|ICD10CM|Other disturbances of temperature regulation of newborn|Other disturbances of temperature regulation of newborn +C0270258|T046|PT|P81.0|ICD10|Environmental hyperthermia of newborn|Environmental hyperthermia of newborn +C0270258|T046|PT|P81.0|ICD10CM|Environmental hyperthermia of newborn|Environmental hyperthermia of newborn +C0270258|T046|AB|P81.0|ICD10CM|Environmental hyperthermia of newborn|Environmental hyperthermia of newborn +C0477959|T047|AB|P81.8|ICD10CM|Oth disturbances of temperature regulation of newborn|Oth disturbances of temperature regulation of newborn +C0477959|T047|PT|P81.8|ICD10CM|Other specified disturbances of temperature regulation of newborn|Other specified disturbances of temperature regulation of newborn +C0477959|T047|PT|P81.8|ICD10|Other specified disturbances of temperature regulation of newborn|Other specified disturbances of temperature regulation of newborn +C0495453|T047|AB|P81.9|ICD10CM|Disturbance of temperature regulation of newborn, unsp|Disturbance of temperature regulation of newborn, unsp +C0495453|T047|PT|P81.9|ICD10CM|Disturbance of temperature regulation of newborn, unspecified|Disturbance of temperature regulation of newborn, unspecified +C0495453|T047|PT|P81.9|ICD10|Disturbance of temperature regulation of newborn, unspecified|Disturbance of temperature regulation of newborn, unspecified +C0235839|T033|ET|P81.9|ICD10CM|Fever of newborn NOS|Fever of newborn NOS +C0495454|T047|HT|P83|ICD10|Other conditions of integument specific to fetus and newborn|Other conditions of integument specific to fetus and newborn +C2910084|T047|HT|P83|ICD10CM|Other conditions of integument specific to newborn|Other conditions of integument specific to newborn +C2910084|T047|AB|P83|ICD10CM|Other conditions of integument specific to newborn|Other conditions of integument specific to newborn +C0036415|T019|PT|P83.0|ICD10CM|Sclerema neonatorum|Sclerema neonatorum +C0036415|T019|AB|P83.0|ICD10CM|Sclerema neonatorum|Sclerema neonatorum +C0036415|T019|PT|P83.0|ICD10|Sclerema neonatorum|Sclerema neonatorum +C0263324|T047|PT|P83.1|ICD10|Neonatal erythema toxicum|Neonatal erythema toxicum +C0263324|T047|PT|P83.1|ICD10CM|Neonatal erythema toxicum|Neonatal erythema toxicum +C0263324|T047|AB|P83.1|ICD10CM|Neonatal erythema toxicum|Neonatal erythema toxicum +C0020305|T047|ET|P83.2|ICD10CM|Hydrops fetalis NOS|Hydrops fetalis NOS +C0495455|T047|PT|P83.2|ICD10|Hydrops fetalis not due to haemolytic disease|Hydrops fetalis not due to haemolytic disease +C0495455|T047|PT|P83.2|ICD10AE|Hydrops fetalis not due to hemolytic disease|Hydrops fetalis not due to hemolytic disease +C0495455|T047|PT|P83.2|ICD10CM|Hydrops fetalis not due to hemolytic disease|Hydrops fetalis not due to hemolytic disease +C0495455|T047|AB|P83.2|ICD10CM|Hydrops fetalis not due to hemolytic disease|Hydrops fetalis not due to hemolytic disease +C0477960|T046|PT|P83.3|ICD10AE|Other and unspecified edema specific to fetus and newborn|Other and unspecified edema specific to fetus and newborn +C2910085|T033|AB|P83.3|ICD10CM|Other and unspecified edema specific to newborn|Other and unspecified edema specific to newborn +C2910085|T033|HT|P83.3|ICD10CM|Other and unspecified edema specific to newborn|Other and unspecified edema specific to newborn +C0477960|T046|PT|P83.3|ICD10|Other and unspecified oedema specific to fetus and newborn|Other and unspecified oedema specific to fetus and newborn +C2910086|T033|AB|P83.30|ICD10CM|Unspecified edema specific to newborn|Unspecified edema specific to newborn +C2910086|T033|PT|P83.30|ICD10CM|Unspecified edema specific to newborn|Unspecified edema specific to newborn +C2910087|T033|AB|P83.39|ICD10CM|Other edema specific to newborn|Other edema specific to newborn +C2910087|T033|PT|P83.39|ICD10CM|Other edema specific to newborn|Other edema specific to newborn +C1449721|T047|PT|P83.4|ICD10CM|Breast engorgement of newborn|Breast engorgement of newborn +C1449721|T047|AB|P83.4|ICD10CM|Breast engorgement of newborn|Breast engorgement of newborn +C1449721|T047|PT|P83.4|ICD10|Breast engorgement of newborn|Breast engorgement of newborn +C0270262|T047|ET|P83.4|ICD10CM|Noninfective mastitis of newborn|Noninfective mastitis of newborn +C0159015|T019|PT|P83.5|ICD10|Congenital hydrocele|Congenital hydrocele +C0159015|T019|PT|P83.5|ICD10CM|Congenital hydrocele|Congenital hydrocele +C0159015|T019|AB|P83.5|ICD10CM|Congenital hydrocele|Congenital hydrocele +C0456072|T191|PT|P83.6|ICD10CM|Umbilical polyp of newborn|Umbilical polyp of newborn +C0456072|T191|AB|P83.6|ICD10CM|Umbilical polyp of newborn|Umbilical polyp of newborn +C0456072|T191|PT|P83.6|ICD10|Umbilical polyp of newborn|Umbilical polyp of newborn +C0477961|T047|PT|P83.8|ICD10|Other specified conditions of integument specific to fetus and newborn|Other specified conditions of integument specific to fetus and newborn +C2910089|T033|AB|P83.8|ICD10CM|Other specified conditions of integument specific to newborn|Other specified conditions of integument specific to newborn +C2910089|T033|HT|P83.8|ICD10CM|Other specified conditions of integument specific to newborn|Other specified conditions of integument specific to newborn +C0149797|T047|AB|P83.81|ICD10CM|Umbilical granuloma|Umbilical granuloma +C0149797|T047|PT|P83.81|ICD10CM|Umbilical granuloma|Umbilical granuloma +C0410946|T047|ET|P83.88|ICD10CM|Bronze baby syndrome|Bronze baby syndrome +C4509425|T047|ET|P83.88|ICD10CM|Neonatal scleroderma|Neonatal scleroderma +C2910089|T033|AB|P83.88|ICD10CM|Other specified conditions of integument specific to newborn|Other specified conditions of integument specific to newborn +C2910089|T033|PT|P83.88|ICD10CM|Other specified conditions of integument specific to newborn|Other specified conditions of integument specific to newborn +C0270263|T047|ET|P83.88|ICD10CM|Urticaria neonatorum|Urticaria neonatorum +C0495456|T047|PT|P83.9|ICD10|Condition of integument specific to fetus and newborn, unspecified|Condition of integument specific to fetus and newborn, unspecified +C2910090|T033|AB|P83.9|ICD10CM|Condition of the integument specific to newborn, unspecified|Condition of the integument specific to newborn, unspecified +C2910090|T033|PT|P83.9|ICD10CM|Condition of the integument specific to newborn, unspecified|Condition of the integument specific to newborn, unspecified +C1719630|T046|ET|P84|ICD10CM|Acidemia of newborn|Acidemia of newborn +C1719631|T046|ET|P84|ICD10CM|Acidosis of newborn|Acidosis of newborn +C0349478|T046|ET|P84|ICD10CM|Anoxia of newborn NOS|Anoxia of newborn NOS +C0004045|T047|ET|P84|ICD10CM|Asphyxia of newborn NOS|Asphyxia of newborn NOS +C2910091|T033|ET|P84|ICD10CM|Hypercapnia of newborn|Hypercapnia of newborn +C2316692|T047|ET|P84|ICD10CM|Hypoxemia of newborn|Hypoxemia of newborn +C0520599|T046|ET|P84|ICD10CM|Hypoxia of newborn NOS|Hypoxia of newborn NOS +C1719632|T046|ET|P84|ICD10CM|Mixed metabolic and respiratory acidosis of newborn|Mixed metabolic and respiratory acidosis of newborn +C2910092|T033|AB|P84|ICD10CM|Other problems with newborn|Other problems with newborn +C2910092|T033|PT|P84|ICD10CM|Other problems with newborn|Other problems with newborn +C2910092|T033|HT|P84-P84|ICD10CM|Other problems with newborn (P84)|Other problems with newborn (P84) +C0159020|T047|PT|P90|ICD10CM|Convulsions of newborn|Convulsions of newborn +C0159020|T047|AB|P90|ICD10CM|Convulsions of newborn|Convulsions of newborn +C0159020|T047|PT|P90|ICD10|Convulsions of newborn|Convulsions of newborn +C0477962|T047|HT|P90-P96|ICD10CM|Other disorders originating in the perinatal period (P90-P96)|Other disorders originating in the perinatal period (P90-P96) +C0477962|T047|HT|P90-P96.9|ICD10|Other disorders originating in the perinatal period|Other disorders originating in the perinatal period +C0495457|T047|HT|P91|ICD10|Other disturbances of cerebral status of newborn|Other disturbances of cerebral status of newborn +C0495457|T047|AB|P91|ICD10CM|Other disturbances of cerebral status of newborn|Other disturbances of cerebral status of newborn +C0495457|T047|HT|P91|ICD10CM|Other disturbances of cerebral status of newborn|Other disturbances of cerebral status of newborn +C0475601|T046|PT|P91.0|ICD10|Neonatal cerebral ischaemia|Neonatal cerebral ischaemia +C0475601|T046|PT|P91.0|ICD10CM|Neonatal cerebral ischemia|Neonatal cerebral ischemia +C0475601|T046|AB|P91.0|ICD10CM|Neonatal cerebral ischemia|Neonatal cerebral ischemia +C0475601|T046|PT|P91.0|ICD10AE|Neonatal cerebral ischemia|Neonatal cerebral ischemia +C0452202|T020|PT|P91.1|ICD10|Acquired periventricular cysts of newborn|Acquired periventricular cysts of newborn +C0452202|T020|PT|P91.1|ICD10CM|Acquired periventricular cysts of newborn|Acquired periventricular cysts of newborn +C0452202|T020|AB|P91.1|ICD10CM|Acquired periventricular cysts of newborn|Acquired periventricular cysts of newborn +C0452203|T047|PT|P91.2|ICD10CM|Neonatal cerebral leukomalacia|Neonatal cerebral leukomalacia +C0452203|T047|AB|P91.2|ICD10CM|Neonatal cerebral leukomalacia|Neonatal cerebral leukomalacia +C0452203|T047|PT|P91.2|ICD10|Neonatal cerebral leukomalacia|Neonatal cerebral leukomalacia +C0023529|T047|ET|P91.2|ICD10CM|Periventricular leukomalacia|Periventricular leukomalacia +C0270267|T047|PT|P91.3|ICD10CM|Neonatal cerebral irritability|Neonatal cerebral irritability +C0270267|T047|AB|P91.3|ICD10CM|Neonatal cerebral irritability|Neonatal cerebral irritability +C0270267|T047|PT|P91.3|ICD10|Neonatal cerebral irritability|Neonatal cerebral irritability +C0270268|T047|PT|P91.4|ICD10|Neonatal cerebral depression|Neonatal cerebral depression +C0270268|T047|PT|P91.4|ICD10CM|Neonatal cerebral depression|Neonatal cerebral depression +C0270268|T047|AB|P91.4|ICD10CM|Neonatal cerebral depression|Neonatal cerebral depression +C0270269|T047|PT|P91.5|ICD10CM|Neonatal coma|Neonatal coma +C0270269|T047|AB|P91.5|ICD10CM|Neonatal coma|Neonatal coma +C0270269|T047|PT|P91.5|ICD10|Neonatal coma|Neonatal coma +C0752304|T047|AB|P91.6|ICD10CM|Hypoxic ischemic encephalopathy [HIE]|Hypoxic ischemic encephalopathy [HIE] +C0752304|T047|HT|P91.6|ICD10CM|Hypoxic ischemic encephalopathy [HIE]|Hypoxic ischemic encephalopathy [HIE] +C0752304|T047|AB|P91.60|ICD10CM|Hypoxic ischemic encephalopathy [HIE], unspecified|Hypoxic ischemic encephalopathy [HIE], unspecified +C0752304|T047|PT|P91.60|ICD10CM|Hypoxic ischemic encephalopathy [HIE], unspecified|Hypoxic ischemic encephalopathy [HIE], unspecified +C2712358|T047|AB|P91.61|ICD10CM|Mild hypoxic ischemic encephalopathy [HIE]|Mild hypoxic ischemic encephalopathy [HIE] +C2712358|T047|PT|P91.61|ICD10CM|Mild hypoxic ischemic encephalopathy [HIE]|Mild hypoxic ischemic encephalopathy [HIE] +C2712359|T047|AB|P91.62|ICD10CM|Moderate hypoxic ischemic encephalopathy [HIE]|Moderate hypoxic ischemic encephalopathy [HIE] +C2712359|T047|PT|P91.62|ICD10CM|Moderate hypoxic ischemic encephalopathy [HIE]|Moderate hypoxic ischemic encephalopathy [HIE] +C2712360|T047|AB|P91.63|ICD10CM|Severe hypoxic ischemic encephalopathy [HIE]|Severe hypoxic ischemic encephalopathy [HIE] +C2712360|T047|PT|P91.63|ICD10CM|Severe hypoxic ischemic encephalopathy [HIE]|Severe hypoxic ischemic encephalopathy [HIE] +C0477963|T047|PT|P91.8|ICD10|Other specified disturbances of cerebral status of newborn|Other specified disturbances of cerebral status of newborn +C0477963|T047|AB|P91.8|ICD10CM|Other specified disturbances of cerebral status of newborn|Other specified disturbances of cerebral status of newborn +C0477963|T047|HT|P91.8|ICD10CM|Other specified disturbances of cerebral status of newborn|Other specified disturbances of cerebral status of newborn +C0235820|T047|HT|P91.81|ICD10CM|Neonatal encephalopathy|Neonatal encephalopathy +C0235820|T047|AB|P91.81|ICD10CM|Neonatal encephalopathy|Neonatal encephalopathy +C4509426|T047|PT|P91.811|ICD10CM|Neonatal encephalopathy in diseases classified elsewhere|Neonatal encephalopathy in diseases classified elsewhere +C4509426|T047|AB|P91.811|ICD10CM|Neonatal encephalopathy in diseases classified elsewhere|Neonatal encephalopathy in diseases classified elsewhere +C4509427|T047|AB|P91.819|ICD10CM|Neonatal encephalopathy, unspecified|Neonatal encephalopathy, unspecified +C4509427|T047|PT|P91.819|ICD10CM|Neonatal encephalopathy, unspecified|Neonatal encephalopathy, unspecified +C0477963|T047|AB|P91.88|ICD10CM|Other specified disturbances of cerebral status of newborn|Other specified disturbances of cerebral status of newborn +C0477963|T047|PT|P91.88|ICD10CM|Other specified disturbances of cerebral status of newborn|Other specified disturbances of cerebral status of newborn +C0495460|T047|PT|P91.9|ICD10CM|Disturbance of cerebral status of newborn, unspecified|Disturbance of cerebral status of newborn, unspecified +C0495460|T047|AB|P91.9|ICD10CM|Disturbance of cerebral status of newborn, unspecified|Disturbance of cerebral status of newborn, unspecified +C0495460|T047|PT|P91.9|ICD10|Disturbance of cerebral status of newborn, unspecified|Disturbance of cerebral status of newborn, unspecified +C0159023|T033|HT|P92|ICD10|Feeding problems of newborn|Feeding problems of newborn +C0159023|T033|AB|P92|ICD10CM|Feeding problems of newborn|Feeding problems of newborn +C0159023|T033|HT|P92|ICD10CM|Feeding problems of newborn|Feeding problems of newborn +C0270274|T184|PT|P92.0|ICD10|Vomiting in newborn|Vomiting in newborn +C0270274|T184|AB|P92.0|ICD10CM|Vomiting of newborn|Vomiting of newborn +C0270274|T184|HT|P92.0|ICD10CM|Vomiting of newborn|Vomiting of newborn +C2712362|T184|PT|P92.01|ICD10CM|Bilious vomiting of newborn|Bilious vomiting of newborn +C2712362|T184|AB|P92.01|ICD10CM|Bilious vomiting of newborn|Bilious vomiting of newborn +C2712363|T047|AB|P92.09|ICD10CM|Other vomiting of newborn|Other vomiting of newborn +C2712363|T047|PT|P92.09|ICD10CM|Other vomiting of newborn|Other vomiting of newborn +C0495461|T184|PT|P92.1|ICD10|Regurgitation and rumination in newborn|Regurgitation and rumination in newborn +C0495461|T184|AB|P92.1|ICD10CM|Regurgitation and rumination of newborn|Regurgitation and rumination of newborn +C0495461|T184|PT|P92.1|ICD10CM|Regurgitation and rumination of newborn|Regurgitation and rumination of newborn +C0270273|T184|PT|P92.2|ICD10|Slow feeding of newborn|Slow feeding of newborn +C0270273|T184|PT|P92.2|ICD10CM|Slow feeding of newborn|Slow feeding of newborn +C0270273|T184|AB|P92.2|ICD10CM|Slow feeding of newborn|Slow feeding of newborn +C0410924|T184|PT|P92.3|ICD10CM|Underfeeding of newborn|Underfeeding of newborn +C0410924|T184|AB|P92.3|ICD10CM|Underfeeding of newborn|Underfeeding of newborn +C0410924|T184|PT|P92.3|ICD10|Underfeeding of newborn|Underfeeding of newborn +C0410925|T184|PT|P92.4|ICD10|Overfeeding of newborn|Overfeeding of newborn +C0410925|T184|PT|P92.4|ICD10CM|Overfeeding of newborn|Overfeeding of newborn +C0410925|T184|AB|P92.4|ICD10CM|Overfeeding of newborn|Overfeeding of newborn +C0495462|T033|PT|P92.5|ICD10CM|Neonatal difficulty in feeding at breast|Neonatal difficulty in feeding at breast +C0495462|T033|AB|P92.5|ICD10CM|Neonatal difficulty in feeding at breast|Neonatal difficulty in feeding at breast +C0495462|T033|PT|P92.5|ICD10|Neonatal difficulty in feeding at breast|Neonatal difficulty in feeding at breast +C2712364|T047|PT|P92.6|ICD10CM|Failure to thrive in newborn|Failure to thrive in newborn +C2712364|T047|AB|P92.6|ICD10CM|Failure to thrive in newborn|Failure to thrive in newborn +C0477964|T184|PT|P92.8|ICD10|Other feeding problems of newborn|Other feeding problems of newborn +C0477964|T184|PT|P92.8|ICD10CM|Other feeding problems of newborn|Other feeding problems of newborn +C0477964|T184|AB|P92.8|ICD10CM|Other feeding problems of newborn|Other feeding problems of newborn +C0159023|T033|PT|P92.9|ICD10|Feeding problem of newborn, unspecified|Feeding problem of newborn, unspecified +C0159023|T033|PT|P92.9|ICD10CM|Feeding problem of newborn, unspecified|Feeding problem of newborn, unspecified +C0159023|T033|AB|P92.9|ICD10CM|Feeding problem of newborn, unspecified|Feeding problem of newborn, unspecified +C4290270|T046|ET|P93|ICD10CM|reactions and intoxications due to drugs administered to fetus affecting newborn|reactions and intoxications due to drugs administered to fetus affecting newborn +C0495463|T037|PT|P93|ICD10|Reactions and intoxications due to drugs administered to fetus and newborn|Reactions and intoxications due to drugs administered to fetus and newborn +C2910094|T047|AB|P93|ICD10CM|Reactions and intoxications due to drugs administered to NB|Reactions and intoxications due to drugs administered to NB +C2910094|T047|HT|P93|ICD10CM|Reactions and intoxications due to drugs administered to newborn|Reactions and intoxications due to drugs administered to newborn +C0270276|T047|PT|P93.0|ICD10CM|Grey baby syndrome|Grey baby syndrome +C0270276|T047|AB|P93.0|ICD10CM|Grey baby syndrome|Grey baby syndrome +C0270276|T047|ET|P93.0|ICD10CM|Grey syndrome from chloramphenicol administration in newborn|Grey syndrome from chloramphenicol administration in newborn +C2910095|T047|AB|P93.8|ICD10CM|Oth reactions and intoxications d/t drugs administered to NB|Oth reactions and intoxications d/t drugs administered to NB +C2910095|T047|PT|P93.8|ICD10CM|Other reactions and intoxications due to drugs administered to newborn|Other reactions and intoxications due to drugs administered to newborn +C0477966|T047|HT|P94|ICD10|Disorders of muscle tone of newborn|Disorders of muscle tone of newborn +C0477966|T047|AB|P94|ICD10CM|Disorders of muscle tone of newborn|Disorders of muscle tone of newborn +C0477966|T047|HT|P94|ICD10CM|Disorders of muscle tone of newborn|Disorders of muscle tone of newborn +C0495465|T047|PT|P94.0|ICD10|Transient neonatal myasthenia gravis|Transient neonatal myasthenia gravis +C0495465|T047|PT|P94.0|ICD10CM|Transient neonatal myasthenia gravis|Transient neonatal myasthenia gravis +C0495465|T047|AB|P94.0|ICD10CM|Transient neonatal myasthenia gravis|Transient neonatal myasthenia gravis +C0410934|T019|PT|P94.1|ICD10|Congenital hypertonia|Congenital hypertonia +C0410934|T047|PT|P94.1|ICD10|Congenital hypertonia|Congenital hypertonia +C0410934|T019|PT|P94.1|ICD10CM|Congenital hypertonia|Congenital hypertonia +C0410934|T047|PT|P94.1|ICD10CM|Congenital hypertonia|Congenital hypertonia +C0410934|T019|AB|P94.1|ICD10CM|Congenital hypertonia|Congenital hypertonia +C0410934|T047|AB|P94.1|ICD10CM|Congenital hypertonia|Congenital hypertonia +C0270971|T047|PT|P94.2|ICD10CM|Congenital hypotonia|Congenital hypotonia +C0270971|T047|AB|P94.2|ICD10CM|Congenital hypotonia|Congenital hypotonia +C0270971|T047|PT|P94.2|ICD10|Congenital hypotonia|Congenital hypotonia +C0270971|T047|ET|P94.2|ICD10CM|Floppy baby syndrome, unspecified|Floppy baby syndrome, unspecified +C0477965|T047|PT|P94.8|ICD10CM|Other disorders of muscle tone of newborn|Other disorders of muscle tone of newborn +C0477965|T047|AB|P94.8|ICD10CM|Other disorders of muscle tone of newborn|Other disorders of muscle tone of newborn +C0477965|T047|PT|P94.8|ICD10|Other disorders of muscle tone of newborn|Other disorders of muscle tone of newborn +C0477966|T047|PT|P94.9|ICD10|Disorder of muscle tone of newborn, unspecified|Disorder of muscle tone of newborn, unspecified +C0477966|T047|PT|P94.9|ICD10CM|Disorder of muscle tone of newborn, unspecified|Disorder of muscle tone of newborn, unspecified +C0477966|T047|AB|P94.9|ICD10CM|Disorder of muscle tone of newborn, unspecified|Disorder of muscle tone of newborn, unspecified +C0595939|T033|ET|P95|ICD10CM|Deadborn fetus NOS|Deadborn fetus NOS +C0495466|T046|ET|P95|ICD10CM|Fetal death of unspecified cause|Fetal death of unspecified cause +C0495466|T046|PT|P95|ICD10|Fetal death of unspecified cause|Fetal death of unspecified cause +C0595939|T033|PT|P95|ICD10CM|Stillbirth|Stillbirth +C0595939|T033|AB|P95|ICD10CM|Stillbirth|Stillbirth +C0595939|T033|ET|P95|ICD10CM|Stillbirth NOS|Stillbirth NOS +C0178309|T046|AB|P96|ICD10CM|Other conditions originating in the perinatal period|Other conditions originating in the perinatal period +C0178309|T046|HT|P96|ICD10CM|Other conditions originating in the perinatal period|Other conditions originating in the perinatal period +C0178309|T046|HT|P96|ICD10|Other conditions originating in the perinatal period|Other conditions originating in the perinatal period +C0410932|T019|PT|P96.0|ICD10CM|Congenital renal failure|Congenital renal failure +C0410932|T019|AB|P96.0|ICD10CM|Congenital renal failure|Congenital renal failure +C0410932|T019|PT|P96.0|ICD10|Congenital renal failure|Congenital renal failure +C1407955|T019|ET|P96.0|ICD10CM|Uremia of newborn|Uremia of newborn +C3543847|T047|ET|P96.1|ICD10CM|Drug withdrawal syndrome in infant of dependent mother|Drug withdrawal syndrome in infant of dependent mother +C0027609|T047|ET|P96.1|ICD10CM|Neonatal abstinence syndrome|Neonatal abstinence syndrome +C0452200|T047|AB|P96.1|ICD10CM|Neonatal w/drawal symp from matern use of drugs of addiction|Neonatal w/drawal symp from matern use of drugs of addiction +C0452200|T047|PT|P96.1|ICD10CM|Neonatal withdrawal symptoms from maternal use of drugs of addiction|Neonatal withdrawal symptoms from maternal use of drugs of addiction +C0452200|T047|PT|P96.1|ICD10|Neonatal withdrawal symptoms from maternal use of drugs of addiction|Neonatal withdrawal symptoms from maternal use of drugs of addiction +C0452201|T047|PT|P96.2|ICD10|Withdrawal symptoms from therapeutic use of drugs in newborn|Withdrawal symptoms from therapeutic use of drugs in newborn +C0452201|T047|PT|P96.2|ICD10CM|Withdrawal symptoms from therapeutic use of drugs in newborn|Withdrawal symptoms from therapeutic use of drugs in newborn +C0452201|T047|AB|P96.2|ICD10CM|Withdrawal symptoms from therapeutic use of drugs in newborn|Withdrawal symptoms from therapeutic use of drugs in newborn +C0392452|T019|ET|P96.3|ICD10CM|Neonatal craniotabes|Neonatal craniotabes +C0495467|T019|PT|P96.3|ICD10|Wide cranial sutures of newborn|Wide cranial sutures of newborn +C0495467|T019|PT|P96.3|ICD10CM|Wide cranial sutures of newborn|Wide cranial sutures of newborn +C0495467|T019|AB|P96.3|ICD10CM|Wide cranial sutures of newborn|Wide cranial sutures of newborn +C1704300|T033|PT|P96.4|ICD10|Termination of pregnancy, fetus and newborn|Termination of pregnancy, fetus and newborn +C2910096|T046|AB|P96.5|ICD10CM|Comp to newborn due to (fetal) intrauterine procedure|Comp to newborn due to (fetal) intrauterine procedure +C2910096|T046|PT|P96.5|ICD10CM|Complication to newborn due to (fetal) intrauterine procedure|Complication to newborn due to (fetal) intrauterine procedure +C0869080|T047|PT|P96.5|ICD10|Complications of intrauterine procedures, not elsewhere classified|Complications of intrauterine procedures, not elsewhere classified +C0159027|T047|AB|P96.8|ICD10CM|Oth conditions originating in the perinatal period|Oth conditions originating in the perinatal period +C0159027|T047|HT|P96.8|ICD10CM|Other specified conditions originating in the perinatal period|Other specified conditions originating in the perinatal period +C0159027|T047|PT|P96.8|ICD10|Other specified conditions originating in the perinatal period|Other specified conditions originating in the perinatal period +C2910097|T037|PT|P96.81|ICD10CM|Exposure to (parental) (environmental) tobacco smoke in the perinatal period|Exposure to (parental) (environmental) tobacco smoke in the perinatal period +C2910097|T037|AB|P96.81|ICD10CM|Expsr to (environmental) tobacco smoke in the perinat period|Expsr to (environmental) tobacco smoke in the perinat period +C1260438|T046|PT|P96.82|ICD10CM|Delayed separation of umbilical cord|Delayed separation of umbilical cord +C1260438|T046|AB|P96.82|ICD10CM|Delayed separation of umbilical cord|Delayed separation of umbilical cord +C1112318|T046|PT|P96.83|ICD10CM|Meconium staining|Meconium staining +C1112318|T046|AB|P96.83|ICD10CM|Meconium staining|Meconium staining +C0159027|T047|AB|P96.89|ICD10CM|Oth conditions originating in the perinatal period|Oth conditions originating in the perinatal period +C0159027|T047|PT|P96.89|ICD10CM|Other specified conditions originating in the perinatal period|Other specified conditions originating in the perinatal period +C0270075|T047|PT|P96.9|ICD10|Condition originating in the perinatal period, unspecified|Condition originating in the perinatal period, unspecified +C0270075|T047|PT|P96.9|ICD10CM|Condition originating in the perinatal period, unspecified|Condition originating in the perinatal period, unspecified +C0270075|T047|AB|P96.9|ICD10CM|Condition originating in the perinatal period, unspecified|Condition originating in the perinatal period, unspecified +C0270077|T046|ET|P96.9|ICD10CM|Congenital debility NOS|Congenital debility NOS +C0158530|T019|HT|Q00|ICD10|Anencephaly and similar malformations|Anencephaly and similar malformations +C0158530|T019|AB|Q00|ICD10CM|Anencephaly and similar malformations|Anencephaly and similar malformations +C0158530|T019|HT|Q00|ICD10CM|Anencephaly and similar malformations|Anencephaly and similar malformations +C0497552|T019|HT|Q00-Q07|ICD10CM|Congenital malformations of the nervous system (Q00-Q07)|Congenital malformations of the nervous system (Q00-Q07) +C0497552|T019|HT|Q00-Q07.9|ICD10|Congenital malformations of the nervous system|Congenital malformations of the nervous system +C0694457|T019|HT|Q00-Q99|ICD10CM|Congenital malformations, deformations and chromosomal abnormalities (Q00-Q99)|Congenital malformations, deformations and chromosomal abnormalities (Q00-Q99) +C0694457|T019|HT|Q00-Q99.9|ICD10|Congenital malformations, deformations and chromosomal abnormalities|Congenital malformations, deformations and chromosomal abnormalities +C0685896|T019|ET|Q00.0|ICD10CM|Acephaly|Acephaly +C0702169|T019|ET|Q00.0|ICD10CM|Acrania|Acrania +C0266672|T019|ET|Q00.0|ICD10CM|Amyelencephaly|Amyelencephaly +C0002902|T019|PT|Q00.0|ICD10CM|Anencephaly|Anencephaly +C0002902|T019|AB|Q00.0|ICD10CM|Anencephaly|Anencephaly +C0002902|T019|PT|Q00.0|ICD10|Anencephaly|Anencephaly +C0302356|T019|ET|Q00.0|ICD10CM|Hemianencephaly|Hemianencephaly +C0266452|T019|ET|Q00.0|ICD10CM|Hemicephaly|Hemicephaly +C0152426|T019|PT|Q00.1|ICD10|Craniorachischisis|Craniorachischisis +C0152426|T019|PT|Q00.1|ICD10CM|Craniorachischisis|Craniorachischisis +C0152426|T019|AB|Q00.1|ICD10CM|Craniorachischisis|Craniorachischisis +C0152234|T019|PT|Q00.2|ICD10CM|Iniencephaly|Iniencephaly +C0152234|T019|AB|Q00.2|ICD10CM|Iniencephaly|Iniencephaly +C0152234|T019|PT|Q00.2|ICD10|Iniencephaly|Iniencephaly +C4290271|T047|ET|Q01|ICD10CM|Arnold-Chiari syndrome, type III|Arnold-Chiari syndrome, type III +C4551722|T019|HT|Q01|ICD10CM|Encephalocele|Encephalocele +C4551722|T019|AB|Q01|ICD10CM|Encephalocele|Encephalocele +C4551722|T019|HT|Q01|ICD10|Encephalocele|Encephalocele +C0266455|T019|ET|Q01|ICD10CM|encephalocystocele|encephalocystocele +C0266454|T019|ET|Q01|ICD10CM|encephalomyelocele|encephalomyelocele +C0266455|T019|ET|Q01|ICD10CM|hydroencephalocele|hydroencephalocele +C0266459|T019|ET|Q01|ICD10CM|hydromeningocele, cranial|hydromeningocele, cranial +C0009694|T019|ET|Q01|ICD10CM|meningocele, cerebral|meningocele, cerebral +C0266456|T019|ET|Q01|ICD10CM|meningoencephalocele|meningoencephalocele +C0431289|T019|PT|Q01.0|ICD10|Frontal encephalocele|Frontal encephalocele +C0431289|T019|PT|Q01.0|ICD10CM|Frontal encephalocele|Frontal encephalocele +C0431289|T019|AB|Q01.0|ICD10CM|Frontal encephalocele|Frontal encephalocele +C0431291|T019|PT|Q01.1|ICD10CM|Nasofrontal encephalocele|Nasofrontal encephalocele +C0431291|T019|AB|Q01.1|ICD10CM|Nasofrontal encephalocele|Nasofrontal encephalocele +C0431291|T019|PT|Q01.1|ICD10|Nasofrontal encephalocele|Nasofrontal encephalocele +C0014067|T019|PT|Q01.2|ICD10CM|Occipital encephalocele|Occipital encephalocele +C0014067|T019|AB|Q01.2|ICD10CM|Occipital encephalocele|Occipital encephalocele +C0014067|T019|PT|Q01.2|ICD10|Occipital encephalocele|Occipital encephalocele +C0477969|T019|PT|Q01.8|ICD10|Encephalocele of other sites|Encephalocele of other sites +C0477969|T019|PT|Q01.8|ICD10CM|Encephalocele of other sites|Encephalocele of other sites +C0477969|T019|AB|Q01.8|ICD10CM|Encephalocele of other sites|Encephalocele of other sites +C4551722|T019|PT|Q01.9|ICD10|Encephalocele, unspecified|Encephalocele, unspecified +C4551722|T019|PT|Q01.9|ICD10CM|Encephalocele, unspecified|Encephalocele, unspecified +C4551722|T019|AB|Q01.9|ICD10CM|Encephalocele, unspecified|Encephalocele, unspecified +C0266460|T019|ET|Q02|ICD10CM|hydromicrocephaly|hydromicrocephaly +C0025958|T019|ET|Q02|ICD10CM|micrencephalon|micrencephalon +C0025958|T019|PT|Q02|ICD10CM|Microcephaly|Microcephaly +C0025958|T019|AB|Q02|ICD10CM|Microcephaly|Microcephaly +C0025958|T019|PT|Q02|ICD10|Microcephaly|Microcephaly +C0020256|T019|HT|Q03|ICD10|Congenital hydrocephalus|Congenital hydrocephalus +C0020256|T019|HT|Q03|ICD10CM|Congenital hydrocephalus|Congenital hydrocephalus +C0020256|T019|AB|Q03|ICD10CM|Congenital hydrocephalus|Congenital hydrocephalus +C0020256|T019|ET|Q03|ICD10CM|hydrocephalus in newborn|hydrocephalus in newborn +C0266474|T019|ET|Q03.0|ICD10CM|Anomaly of aqueduct of Sylvius|Anomaly of aqueduct of Sylvius +C0266474|T019|PT|Q03.0|ICD10CM|Malformations of aqueduct of Sylvius|Malformations of aqueduct of Sylvius +C0266474|T019|AB|Q03.0|ICD10CM|Malformations of aqueduct of Sylvius|Malformations of aqueduct of Sylvius +C0266474|T019|PT|Q03.0|ICD10|Malformations of aqueduct of Sylvius|Malformations of aqueduct of Sylvius +C0266475|T019|ET|Q03.0|ICD10CM|Obstruction of aqueduct of Sylvius, congenital|Obstruction of aqueduct of Sylvius, congenital +C0266476|T019|ET|Q03.0|ICD10CM|Stenosis of aqueduct of Sylvius|Stenosis of aqueduct of Sylvius +C0010964|T047|PT|Q03.1|ICD10|Atresia of foramina of Magendie and Luschka|Atresia of foramina of Magendie and Luschka +C0010964|T047|PT|Q03.1|ICD10CM|Atresia of foramina of Magendie and Luschka|Atresia of foramina of Magendie and Luschka +C0010964|T047|AB|Q03.1|ICD10CM|Atresia of foramina of Magendie and Luschka|Atresia of foramina of Magendie and Luschka +C0010964|T047|ET|Q03.1|ICD10CM|Dandy-Walker syndrome|Dandy-Walker syndrome +C0477970|T019|PT|Q03.8|ICD10|Other congenital hydrocephalus|Other congenital hydrocephalus +C0477970|T019|PT|Q03.8|ICD10CM|Other congenital hydrocephalus|Other congenital hydrocephalus +C0477970|T019|AB|Q03.8|ICD10CM|Other congenital hydrocephalus|Other congenital hydrocephalus +C0020256|T019|PT|Q03.9|ICD10CM|Congenital hydrocephalus, unspecified|Congenital hydrocephalus, unspecified +C0020256|T019|AB|Q03.9|ICD10CM|Congenital hydrocephalus, unspecified|Congenital hydrocephalus, unspecified +C0020256|T019|PT|Q03.9|ICD10|Congenital hydrocephalus, unspecified|Congenital hydrocephalus, unspecified +C0495472|T019|HT|Q04|ICD10|Other congenital malformations of brain|Other congenital malformations of brain +C0495472|T019|AB|Q04|ICD10CM|Other congenital malformations of brain|Other congenital malformations of brain +C0495472|T019|HT|Q04|ICD10CM|Other congenital malformations of brain|Other congenital malformations of brain +C0175754|T019|ET|Q04.0|ICD10CM|Agenesis of corpus callosum|Agenesis of corpus callosum +C0431366|T019|PT|Q04.0|ICD10CM|Congenital malformations of corpus callosum|Congenital malformations of corpus callosum +C0431366|T019|AB|Q04.0|ICD10CM|Congenital malformations of corpus callosum|Congenital malformations of corpus callosum +C0431366|T019|PT|Q04.0|ICD10|Congenital malformations of corpus callosum|Congenital malformations of corpus callosum +C0078982|T019|PT|Q04.1|ICD10CM|Arhinencephaly|Arhinencephaly +C0078982|T019|AB|Q04.1|ICD10CM|Arhinencephaly|Arhinencephaly +C0078982|T019|PT|Q04.1|ICD10|Arhinencephaly|Arhinencephaly +C0079541|T019|PT|Q04.2|ICD10|Holoprosencephaly|Holoprosencephaly +C0079541|T019|PT|Q04.2|ICD10CM|Holoprosencephaly|Holoprosencephaly +C0079541|T019|AB|Q04.2|ICD10CM|Holoprosencephaly|Holoprosencephaly +C0266461|T019|ET|Q04.3|ICD10CM|Absence of part of brain|Absence of part of brain +C0266461|T019|ET|Q04.3|ICD10CM|Agenesis of part of brain|Agenesis of part of brain +C1879312|T019|ET|Q04.3|ICD10CM|Agyria|Agyria +C0266461|T019|ET|Q04.3|ICD10CM|Aplasia of part of brain|Aplasia of part of brain +C0020225|T019|ET|Q04.3|ICD10CM|Hydranencephaly|Hydranencephaly +C0266462|T019|ET|Q04.3|ICD10CM|Hypoplasia of part of brain|Hypoplasia of part of brain +C0266463|T019|ET|Q04.3|ICD10CM|Lissencephaly|Lissencephaly +C2362742|T019|ET|Q04.3|ICD10CM|Microgyria|Microgyria +C0477971|T019|PT|Q04.3|ICD10CM|Other reduction deformities of brain|Other reduction deformities of brain +C0477971|T019|AB|Q04.3|ICD10CM|Other reduction deformities of brain|Other reduction deformities of brain +C0477971|T019|PT|Q04.3|ICD10|Other reduction deformities of brain|Other reduction deformities of brain +C0266483|T019|ET|Q04.3|ICD10CM|Pachygyria|Pachygyria +C0338503|T047|PT|Q04.4|ICD10|Septo-optic dysplasia|Septo-optic dysplasia +C2910099|T019|AB|Q04.4|ICD10CM|Septo-optic dysplasia of brain|Septo-optic dysplasia of brain +C2910099|T019|PT|Q04.4|ICD10CM|Septo-optic dysplasia of brain|Septo-optic dysplasia of brain +C2720434|T019|PT|Q04.5|ICD10CM|Megalencephaly|Megalencephaly +C2720434|T019|AB|Q04.5|ICD10CM|Megalencephaly|Megalencephaly +C2720434|T019|PT|Q04.5|ICD10|Megalencephaly|Megalencephaly +C0266480|T019|PT|Q04.6|ICD10|Congenital cerebral cysts|Congenital cerebral cysts +C0266480|T019|PT|Q04.6|ICD10CM|Congenital cerebral cysts|Congenital cerebral cysts +C0266480|T019|AB|Q04.6|ICD10CM|Congenital cerebral cysts|Congenital cerebral cysts +C0302892|T019|ET|Q04.6|ICD10CM|Porencephaly|Porencephaly +C0266484|T019|ET|Q04.6|ICD10CM|Schizencephaly|Schizencephaly +C2910100|T047|ET|Q04.8|ICD10CM|Arnold-Chiari syndrome, type IV|Arnold-Chiari syndrome, type IV +C0266483|T019|ET|Q04.8|ICD10CM|Macrogyria|Macrogyria +C0477972|T019|PT|Q04.8|ICD10|Other specified congenital malformations of brain|Other specified congenital malformations of brain +C0477972|T019|PT|Q04.8|ICD10CM|Other specified congenital malformations of brain|Other specified congenital malformations of brain +C0477972|T019|AB|Q04.8|ICD10CM|Other specified congenital malformations of brain|Other specified congenital malformations of brain +C0266449|T019|ET|Q04.9|ICD10CM|Congenital anomaly NOS of brain|Congenital anomaly NOS of brain +C0266449|T019|ET|Q04.9|ICD10CM|Congenital deformity NOS of brain|Congenital deformity NOS of brain +C2910101|T019|ET|Q04.9|ICD10CM|Congenital disease or lesion NOS of brain|Congenital disease or lesion NOS of brain +C0266449|T019|PT|Q04.9|ICD10CM|Congenital malformation of brain, unspecified|Congenital malformation of brain, unspecified +C0266449|T019|AB|Q04.9|ICD10CM|Congenital malformation of brain, unspecified|Congenital malformation of brain, unspecified +C0266449|T019|PT|Q04.9|ICD10|Congenital malformation of brain, unspecified|Congenital malformation of brain, unspecified +C2910102|T019|ET|Q04.9|ICD10CM|Multiple anomalies NOS of brain, congenital|Multiple anomalies NOS of brain, congenital +C0266506|T019|ET|Q05|ICD10CM|hydromeningocele (spinal)|hydromeningocele (spinal) +C0009730|T019|ET|Q05|ICD10CM|meningocele (spinal)|meningocele (spinal) +C0025312|T019|ET|Q05|ICD10CM|meningomyelocele|meningomyelocele +C0086664|T019|ET|Q05|ICD10CM|myelocele|myelocele +C0025312|T019|ET|Q05|ICD10CM|myelomeningocele|myelomeningocele +C0266508|T019|ET|Q05|ICD10CM|rachischisis|rachischisis +C0080178|T019|HT|Q05|ICD10CM|Spina bifida|Spina bifida +C0080178|T019|AB|Q05|ICD10CM|Spina bifida|Spina bifida +C0080178|T019|HT|Q05|ICD10|Spina bifida|Spina bifida +C0037917|T019|ET|Q05|ICD10CM|spina bifida (aperta)(cystica)|spina bifida (aperta)(cystica) +C0391858|T019|ET|Q05|ICD10CM|syringomyelocele|syringomyelocele +C0431321|T019|PT|Q05.0|ICD10CM|Cervical spina bifida with hydrocephalus|Cervical spina bifida with hydrocephalus +C0431321|T019|AB|Q05.0|ICD10CM|Cervical spina bifida with hydrocephalus|Cervical spina bifida with hydrocephalus +C0431321|T019|PT|Q05.0|ICD10|Cervical spina bifida with hydrocephalus|Cervical spina bifida with hydrocephalus +C1409926|T019|ET|Q05.1|ICD10CM|Dorsal spina bifida with hydrocephalus|Dorsal spina bifida with hydrocephalus +C0431320|T019|PT|Q05.1|ICD10|Thoracic spina bifida with hydrocephalus|Thoracic spina bifida with hydrocephalus +C0431320|T019|PT|Q05.1|ICD10CM|Thoracic spina bifida with hydrocephalus|Thoracic spina bifida with hydrocephalus +C0431320|T019|AB|Q05.1|ICD10CM|Thoracic spina bifida with hydrocephalus|Thoracic spina bifida with hydrocephalus +C1409928|T019|ET|Q05.1|ICD10CM|Thoracolumbar spina bifida with hydrocephalus|Thoracolumbar spina bifida with hydrocephalus +C0431319|T019|PT|Q05.2|ICD10CM|Lumbar spina bifida with hydrocephalus|Lumbar spina bifida with hydrocephalus +C0431319|T019|AB|Q05.2|ICD10CM|Lumbar spina bifida with hydrocephalus|Lumbar spina bifida with hydrocephalus +C0431319|T019|PT|Q05.2|ICD10|Lumbar spina bifida with hydrocephalus|Lumbar spina bifida with hydrocephalus +C1409927|T019|ET|Q05.2|ICD10CM|Lumbosacral spina bifida with hydrocephalus|Lumbosacral spina bifida with hydrocephalus +C0495474|T019|PT|Q05.3|ICD10|Sacral spina bifida with hydrocephalus|Sacral spina bifida with hydrocephalus +C0495474|T019|PT|Q05.3|ICD10CM|Sacral spina bifida with hydrocephalus|Sacral spina bifida with hydrocephalus +C0495474|T019|AB|Q05.3|ICD10CM|Sacral spina bifida with hydrocephalus|Sacral spina bifida with hydrocephalus +C0477973|T019|PT|Q05.4|ICD10|Unspecified spina bifida with hydrocephalus|Unspecified spina bifida with hydrocephalus +C0477973|T019|PT|Q05.4|ICD10CM|Unspecified spina bifida with hydrocephalus|Unspecified spina bifida with hydrocephalus +C0477973|T019|AB|Q05.4|ICD10CM|Unspecified spina bifida with hydrocephalus|Unspecified spina bifida with hydrocephalus +C0158535|T019|PT|Q05.5|ICD10|Cervical spina bifida without hydrocephalus|Cervical spina bifida without hydrocephalus +C0158535|T019|PT|Q05.5|ICD10CM|Cervical spina bifida without hydrocephalus|Cervical spina bifida without hydrocephalus +C0158535|T019|AB|Q05.5|ICD10CM|Cervical spina bifida without hydrocephalus|Cervical spina bifida without hydrocephalus +C0266502|T019|ET|Q05.6|ICD10CM|Dorsal spina bifida NOS|Dorsal spina bifida NOS +C0158536|T019|PT|Q05.6|ICD10CM|Thoracic spina bifida without hydrocephalus|Thoracic spina bifida without hydrocephalus +C0158536|T019|AB|Q05.6|ICD10CM|Thoracic spina bifida without hydrocephalus|Thoracic spina bifida without hydrocephalus +C0158536|T019|PT|Q05.6|ICD10|Thoracic spina bifida without hydrocephalus|Thoracic spina bifida without hydrocephalus +C1406918|T019|ET|Q05.6|ICD10CM|Thoracolumbar spina bifida NOS|Thoracolumbar spina bifida NOS +C0158537|T019|PT|Q05.7|ICD10|Lumbar spina bifida without hydrocephalus|Lumbar spina bifida without hydrocephalus +C0158537|T019|PT|Q05.7|ICD10CM|Lumbar spina bifida without hydrocephalus|Lumbar spina bifida without hydrocephalus +C0158537|T019|AB|Q05.7|ICD10CM|Lumbar spina bifida without hydrocephalus|Lumbar spina bifida without hydrocephalus +C1403241|T019|ET|Q05.7|ICD10CM|Lumbosacral spina bifida NOS|Lumbosacral spina bifida NOS +C0495478|T019|PT|Q05.8|ICD10CM|Sacral spina bifida without hydrocephalus|Sacral spina bifida without hydrocephalus +C0495478|T019|AB|Q05.8|ICD10CM|Sacral spina bifida without hydrocephalus|Sacral spina bifida without hydrocephalus +C0495478|T019|PT|Q05.8|ICD10|Sacral spina bifida without hydrocephalus|Sacral spina bifida without hydrocephalus +C0080178|T019|PT|Q05.9|ICD10CM|Spina bifida, unspecified|Spina bifida, unspecified +C0080178|T019|AB|Q05.9|ICD10CM|Spina bifida, unspecified|Spina bifida, unspecified +C0080178|T019|PT|Q05.9|ICD10|Spina bifida, unspecified|Spina bifida, unspecified +C0495479|T019|HT|Q06|ICD10|Other congenital malformations of spinal cord|Other congenital malformations of spinal cord +C0495479|T019|AB|Q06|ICD10CM|Other congenital malformations of spinal cord|Other congenital malformations of spinal cord +C0495479|T019|HT|Q06|ICD10CM|Other congenital malformations of spinal cord|Other congenital malformations of spinal cord +C0266510|T019|PT|Q06.0|ICD10|Amyelia|Amyelia +C0266510|T019|PT|Q06.0|ICD10CM|Amyelia|Amyelia +C0266510|T019|AB|Q06.0|ICD10CM|Amyelia|Amyelia +C0266511|T019|ET|Q06.1|ICD10CM|Atelomyelia|Atelomyelia +C0495480|T019|PT|Q06.1|ICD10CM|Hypoplasia and dysplasia of spinal cord|Hypoplasia and dysplasia of spinal cord +C0495480|T019|AB|Q06.1|ICD10CM|Hypoplasia and dysplasia of spinal cord|Hypoplasia and dysplasia of spinal cord +C0495480|T019|PT|Q06.1|ICD10|Hypoplasia and dysplasia of spinal cord|Hypoplasia and dysplasia of spinal cord +C0266514|T019|ET|Q06.1|ICD10CM|Myelatelia|Myelatelia +C0344479|T019|ET|Q06.1|ICD10CM|Myelodysplasia of spinal cord|Myelodysplasia of spinal cord +C0011999|T019|PT|Q06.2|ICD10CM|Diastematomyelia|Diastematomyelia +C0011999|T019|AB|Q06.2|ICD10CM|Diastematomyelia|Diastematomyelia +C0011999|T019|PT|Q06.2|ICD10|Diastematomyelia|Diastematomyelia +C0477974|T019|PT|Q06.3|ICD10|Other congenital cauda equina malformations|Other congenital cauda equina malformations +C0477974|T019|PT|Q06.3|ICD10CM|Other congenital cauda equina malformations|Other congenital cauda equina malformations +C0477974|T019|AB|Q06.3|ICD10CM|Other congenital cauda equina malformations|Other congenital cauda equina malformations +C0152444|T047|PT|Q06.4|ICD10|Hydromyelia|Hydromyelia +C0152444|T047|PT|Q06.4|ICD10CM|Hydromyelia|Hydromyelia +C0152444|T047|AB|Q06.4|ICD10CM|Hydromyelia|Hydromyelia +C0152444|T047|ET|Q06.4|ICD10CM|Hydrorachis|Hydrorachis +C0477975|T019|PT|Q06.8|ICD10CM|Other specified congenital malformations of spinal cord|Other specified congenital malformations of spinal cord +C0477975|T019|AB|Q06.8|ICD10CM|Other specified congenital malformations of spinal cord|Other specified congenital malformations of spinal cord +C0477975|T019|PT|Q06.8|ICD10|Other specified congenital malformations of spinal cord|Other specified congenital malformations of spinal cord +C0266498|T019|ET|Q06.9|ICD10CM|Congenital anomaly NOS of spinal cord|Congenital anomaly NOS of spinal cord +C0266498|T019|ET|Q06.9|ICD10CM|Congenital deformity NOS of spinal cord|Congenital deformity NOS of spinal cord +C2910104|T019|ET|Q06.9|ICD10CM|Congenital disease or lesion NOS of spinal cord|Congenital disease or lesion NOS of spinal cord +C0495481|T019|PT|Q06.9|ICD10|Congenital malformation of spinal cord, unspecified|Congenital malformation of spinal cord, unspecified +C0495481|T019|PT|Q06.9|ICD10CM|Congenital malformation of spinal cord, unspecified|Congenital malformation of spinal cord, unspecified +C0495481|T019|AB|Q06.9|ICD10CM|Congenital malformation of spinal cord, unspecified|Congenital malformation of spinal cord, unspecified +C0477976|T019|HT|Q07|ICD10|Other congenital malformations of nervous system|Other congenital malformations of nervous system +C2910105|T019|HT|Q07|ICD10CM|Other congenital malformations of nervous system|Other congenital malformations of nervous system +C2910105|T019|AB|Q07|ICD10CM|Other congenital malformations of nervous system|Other congenital malformations of nervous system +C0003803|T019|HT|Q07.0|ICD10CM|Arnold-Chiari syndrome|Arnold-Chiari syndrome +C0003803|T019|AB|Q07.0|ICD10CM|Arnold-Chiari syndrome|Arnold-Chiari syndrome +C0003803|T019|PT|Q07.0|ICD10|Arnold-Chiari syndrome|Arnold-Chiari syndrome +C0555206|T019|ET|Q07.0|ICD10CM|Arnold-Chiari syndrome, type II|Arnold-Chiari syndrome, type II +C2910106|T019|AB|Q07.00|ICD10CM|Arnold-Chiari syndrome without spina bifida or hydrocephalus|Arnold-Chiari syndrome without spina bifida or hydrocephalus +C2910106|T019|PT|Q07.00|ICD10CM|Arnold-Chiari syndrome without spina bifida or hydrocephalus|Arnold-Chiari syndrome without spina bifida or hydrocephalus +C2910107|T019|AB|Q07.01|ICD10CM|Arnold-Chiari syndrome with spina bifida|Arnold-Chiari syndrome with spina bifida +C2910107|T019|PT|Q07.01|ICD10CM|Arnold-Chiari syndrome with spina bifida|Arnold-Chiari syndrome with spina bifida +C2910108|T019|AB|Q07.02|ICD10CM|Arnold-Chiari syndrome with hydrocephalus|Arnold-Chiari syndrome with hydrocephalus +C2910108|T019|PT|Q07.02|ICD10CM|Arnold-Chiari syndrome with hydrocephalus|Arnold-Chiari syndrome with hydrocephalus +C2910109|T019|AB|Q07.03|ICD10CM|Arnold-Chiari syndrome with spina bifida and hydrocephalus|Arnold-Chiari syndrome with spina bifida and hydrocephalus +C2910109|T019|PT|Q07.03|ICD10CM|Arnold-Chiari syndrome with spina bifida and hydrocephalus|Arnold-Chiari syndrome with spina bifida and hydrocephalus +C0266518|T019|ET|Q07.8|ICD10CM|Agenesis of nerve|Agenesis of nerve +C0344495|T019|ET|Q07.8|ICD10CM|Displacement of brachial plexus|Displacement of brachial plexus +C0266521|T047|ET|Q07.8|ICD10CM|Jaw-winking syndrome|Jaw-winking syndrome +C0266521|T047|ET|Q07.8|ICD10CM|Marcus Gunn's syndrome|Marcus Gunn's syndrome +C0477976|T019|PT|Q07.8|ICD10|Other specified congenital malformations of nervous system|Other specified congenital malformations of nervous system +C0477976|T019|PT|Q07.8|ICD10CM|Other specified congenital malformations of nervous system|Other specified congenital malformations of nervous system +C0477976|T019|AB|Q07.8|ICD10CM|Other specified congenital malformations of nervous system|Other specified congenital malformations of nervous system +C0497552|T019|ET|Q07.9|ICD10CM|Congenital anomaly NOS of nervous system|Congenital anomaly NOS of nervous system +C0497552|T019|ET|Q07.9|ICD10CM|Congenital deformity NOS of nervous system|Congenital deformity NOS of nervous system +C2910110|T019|ET|Q07.9|ICD10CM|Congenital disease or lesion NOS of nervous system|Congenital disease or lesion NOS of nervous system +C0497552|T019|PT|Q07.9|ICD10CM|Congenital malformation of nervous system, unspecified|Congenital malformation of nervous system, unspecified +C0497552|T019|AB|Q07.9|ICD10CM|Congenital malformation of nervous system, unspecified|Congenital malformation of nervous system, unspecified +C0497552|T019|PT|Q07.9|ICD10|Congenital malformation of nervous system, unspecified|Congenital malformation of nervous system, unspecified +C0158572|T019|AB|Q10|ICD10CM|Congenital malform of eyelid, lacrimal apparatus and orbit|Congenital malform of eyelid, lacrimal apparatus and orbit +C0158572|T019|HT|Q10|ICD10CM|Congenital malformations of eyelid, lacrimal apparatus and orbit|Congenital malformations of eyelid, lacrimal apparatus and orbit +C0158572|T019|HT|Q10|ICD10|Congenital malformations of eyelid, lacrimal apparatus and orbit|Congenital malformations of eyelid, lacrimal apparatus and orbit +C0477977|T019|HT|Q10-Q18|ICD10CM|Congenital malformations of eye, ear, face and neck (Q10-Q18)|Congenital malformations of eye, ear, face and neck (Q10-Q18) +C0477977|T019|HT|Q10-Q18.9|ICD10|Congenital malformations of eye, ear, face and neck|Congenital malformations of eye, ear, face and neck +C0266573|T019|PT|Q10.0|ICD10|Congenital ptosis|Congenital ptosis +C0266573|T019|PT|Q10.0|ICD10CM|Congenital ptosis|Congenital ptosis +C0266573|T019|AB|Q10.0|ICD10CM|Congenital ptosis|Congenital ptosis +C0266578|T019|PT|Q10.1|ICD10CM|Congenital ectropion|Congenital ectropion +C0266578|T019|AB|Q10.1|ICD10CM|Congenital ectropion|Congenital ectropion +C0266578|T019|PT|Q10.1|ICD10|Congenital ectropion|Congenital ectropion +C0266579|T019|PT|Q10.2|ICD10|Congenital entropion|Congenital entropion +C0266579|T019|PT|Q10.2|ICD10CM|Congenital entropion|Congenital entropion +C0266579|T019|AB|Q10.2|ICD10CM|Congenital entropion|Congenital entropion +C0266574|T019|ET|Q10.3|ICD10CM|Ablepharon|Ablepharon +C0344502|T019|ET|Q10.3|ICD10CM|Blepharophimosis, congenital|Blepharophimosis, congenital +C0521573|T047|ET|Q10.3|ICD10CM|Coloboma of eyelid|Coloboma of eyelid +C2910111|T019|ET|Q10.3|ICD10CM|Congenital absence or agenesis of cilia|Congenital absence or agenesis of cilia +C2910112|T019|ET|Q10.3|ICD10CM|Congenital absence or agenesis of eyelid|Congenital absence or agenesis of eyelid +C2910113|T019|ET|Q10.3|ICD10CM|Congenital accessory eye muscle|Congenital accessory eye muscle +C2910114|T019|ET|Q10.3|ICD10CM|Congenital accessory eyelid|Congenital accessory eyelid +C0266572|T019|ET|Q10.3|ICD10CM|Congenital malformation of eyelid NOS|Congenital malformation of eyelid NOS +C0477978|T019|PT|Q10.3|ICD10|Other congenital malformations of eyelid|Other congenital malformations of eyelid +C0477978|T019|PT|Q10.3|ICD10CM|Other congenital malformations of eyelid|Other congenital malformations of eyelid +C0477978|T019|AB|Q10.3|ICD10CM|Other congenital malformations of eyelid|Other congenital malformations of eyelid +C0495485|T019|PT|Q10.4|ICD10|Absence and agenesis of lacrimal apparatus|Absence and agenesis of lacrimal apparatus +C0495485|T019|PT|Q10.4|ICD10CM|Absence and agenesis of lacrimal apparatus|Absence and agenesis of lacrimal apparatus +C0495485|T019|AB|Q10.4|ICD10CM|Absence and agenesis of lacrimal apparatus|Absence and agenesis of lacrimal apparatus +C0344509|T019|ET|Q10.4|ICD10CM|Congenital absence of punctum lacrimale|Congenital absence of punctum lacrimale +C0344512|T019|PT|Q10.5|ICD10CM|Congenital stenosis and stricture of lacrimal duct|Congenital stenosis and stricture of lacrimal duct +C0344512|T019|AB|Q10.5|ICD10CM|Congenital stenosis and stricture of lacrimal duct|Congenital stenosis and stricture of lacrimal duct +C0344512|T019|PT|Q10.5|ICD10|Congenital stenosis and stricture of lacrimal duct|Congenital stenosis and stricture of lacrimal duct +C2910115|T019|ET|Q10.6|ICD10CM|Congenital malformation of lacrimal apparatus NOS|Congenital malformation of lacrimal apparatus NOS +C0477979|T019|PT|Q10.6|ICD10|Other congenital malformations of lacrimal apparatus|Other congenital malformations of lacrimal apparatus +C0477979|T019|PT|Q10.6|ICD10CM|Other congenital malformations of lacrimal apparatus|Other congenital malformations of lacrimal apparatus +C0477979|T019|AB|Q10.6|ICD10CM|Other congenital malformations of lacrimal apparatus|Other congenital malformations of lacrimal apparatus +C0266587|T019|PT|Q10.7|ICD10CM|Congenital malformation of orbit|Congenital malformation of orbit +C0266587|T019|AB|Q10.7|ICD10CM|Congenital malformation of orbit|Congenital malformation of orbit +C0266587|T019|PT|Q10.7|ICD10|Congenital malformation of orbit|Congenital malformation of orbit +C0495488|T019|AB|Q11|ICD10CM|Anophthalmos, microphthalmos and macrophthalmos|Anophthalmos, microphthalmos and macrophthalmos +C0495488|T019|HT|Q11|ICD10CM|Anophthalmos, microphthalmos and macrophthalmos|Anophthalmos, microphthalmos and macrophthalmos +C0495488|T019|HT|Q11|ICD10|Anophthalmos, microphthalmos and macrophthalmos|Anophthalmos, microphthalmos and macrophthalmos +C0158543|T019|PT|Q11.0|ICD10|Cystic eyeball|Cystic eyeball +C0158543|T019|PT|Q11.0|ICD10CM|Cystic eyeball|Cystic eyeball +C0158543|T019|AB|Q11.0|ICD10CM|Cystic eyeball|Cystic eyeball +C0003119|T019|ET|Q11.1|ICD10CM|Agenesis of eye|Agenesis of eye +C0003119|T019|ET|Q11.1|ICD10CM|Anophthalmos NOS|Anophthalmos NOS +C0003119|T019|ET|Q11.1|ICD10CM|Aplasia of eye|Aplasia of eye +C0477980|T019|PT|Q11.1|ICD10CM|Other anophthalmos|Other anophthalmos +C0477980|T019|AB|Q11.1|ICD10CM|Other anophthalmos|Other anophthalmos +C0477980|T019|PT|Q11.1|ICD10|Other anophthalmos|Other anophthalmos +C0311249|T019|ET|Q11.2|ICD10CM|Cryptophthalmos NOS|Cryptophthalmos NOS +C0266524|T019|ET|Q11.2|ICD10CM|Dysplasia of eye|Dysplasia of eye +C0266527|T019|ET|Q11.2|ICD10CM|Hypoplasia of eye|Hypoplasia of eye +C0026010|T019|PT|Q11.2|ICD10CM|Microphthalmos|Microphthalmos +C0026010|T019|AB|Q11.2|ICD10CM|Microphthalmos|Microphthalmos +C0026010|T019|PT|Q11.2|ICD10|Microphthalmos|Microphthalmos +C0266527|T019|ET|Q11.2|ICD10CM|Rudimentary eye|Rudimentary eye +C0431451|T019|PT|Q11.3|ICD10CM|Macrophthalmos|Macrophthalmos +C0431451|T019|AB|Q11.3|ICD10CM|Macrophthalmos|Macrophthalmos +C0431451|T019|PT|Q11.3|ICD10|Macrophthalmos|Macrophthalmos +C0339350|T019|HT|Q12|ICD10CM|Congenital lens malformations|Congenital lens malformations +C0339350|T019|AB|Q12|ICD10CM|Congenital lens malformations|Congenital lens malformations +C0339350|T019|HT|Q12|ICD10|Congenital lens malformations|Congenital lens malformations +C0009691|T019|PT|Q12.0|ICD10|Congenital cataract|Congenital cataract +C0009691|T019|PT|Q12.0|ICD10CM|Congenital cataract|Congenital cataract +C0009691|T019|AB|Q12.0|ICD10CM|Congenital cataract|Congenital cataract +C0013581|T019|PT|Q12.1|ICD10CM|Congenital displaced lens|Congenital displaced lens +C0013581|T019|AB|Q12.1|ICD10CM|Congenital displaced lens|Congenital displaced lens +C0013581|T019|PT|Q12.1|ICD10|Congenital displaced lens|Congenital displaced lens +C0344516|T019|PT|Q12.2|ICD10|Coloboma of lens|Coloboma of lens +C0344516|T019|PT|Q12.2|ICD10CM|Coloboma of lens|Coloboma of lens +C0344516|T019|AB|Q12.2|ICD10CM|Coloboma of lens|Coloboma of lens +C0152422|T019|PT|Q12.3|ICD10|Congenital aphakia|Congenital aphakia +C0152422|T019|PT|Q12.3|ICD10CM|Congenital aphakia|Congenital aphakia +C0152422|T019|AB|Q12.3|ICD10CM|Congenital aphakia|Congenital aphakia +C0266542|T019|PT|Q12.4|ICD10|Spherophakia|Spherophakia +C0266542|T019|PT|Q12.4|ICD10CM|Spherophakia|Spherophakia +C0266542|T019|AB|Q12.4|ICD10CM|Spherophakia|Spherophakia +C0266541|T019|ET|Q12.8|ICD10CM|Microphakia|Microphakia +C0477981|T019|PT|Q12.8|ICD10|Other congenital lens malformations|Other congenital lens malformations +C0477981|T019|PT|Q12.8|ICD10CM|Other congenital lens malformations|Other congenital lens malformations +C0477981|T019|AB|Q12.8|ICD10CM|Other congenital lens malformations|Other congenital lens malformations +C0339350|T019|PT|Q12.9|ICD10CM|Congenital lens malformation, unspecified|Congenital lens malformation, unspecified +C0339350|T019|AB|Q12.9|ICD10CM|Congenital lens malformation, unspecified|Congenital lens malformation, unspecified +C0339350|T019|PT|Q12.9|ICD10|Congenital lens malformation, unspecified|Congenital lens malformation, unspecified +C0495493|T019|HT|Q13|ICD10|Congenital malformations of anterior segment of eye|Congenital malformations of anterior segment of eye +C0495493|T019|AB|Q13|ICD10CM|Congenital malformations of anterior segment of eye|Congenital malformations of anterior segment of eye +C0495493|T019|HT|Q13|ICD10CM|Congenital malformations of anterior segment of eye|Congenital malformations of anterior segment of eye +C0009363|T019|ET|Q13.0|ICD10CM|Coloboma NOS|Coloboma NOS +C0266551|T019|PT|Q13.0|ICD10CM|Coloboma of iris|Coloboma of iris +C0266551|T019|AB|Q13.0|ICD10CM|Coloboma of iris|Coloboma of iris +C0266551|T019|PT|Q13.0|ICD10|Coloboma of iris|Coloboma of iris +C0003076|T019|PT|Q13.1|ICD10|Absence of iris|Absence of iris +C0003076|T019|PT|Q13.1|ICD10CM|Absence of iris|Absence of iris +C0003076|T019|AB|Q13.1|ICD10CM|Absence of iris|Absence of iris +C0003076|T019|ET|Q13.1|ICD10CM|Aniridia|Aniridia +C0266549|T019|ET|Q13.2|ICD10CM|Anisocoria, congenital|Anisocoria, congenital +C0266550|T019|ET|Q13.2|ICD10CM|Atresia of pupil|Atresia of pupil +C2910116|T019|ET|Q13.2|ICD10CM|Congenital malformation of iris NOS|Congenital malformation of iris NOS +C0271135|T047|ET|Q13.2|ICD10CM|Corectopia|Corectopia +C0477982|T019|PT|Q13.2|ICD10CM|Other congenital malformations of iris|Other congenital malformations of iris +C0477982|T019|AB|Q13.2|ICD10CM|Other congenital malformations of iris|Other congenital malformations of iris +C0477982|T019|PT|Q13.2|ICD10|Other congenital malformations of iris|Other congenital malformations of iris +C0344535|T019|PT|Q13.3|ICD10CM|Congenital corneal opacity|Congenital corneal opacity +C0344535|T019|AB|Q13.3|ICD10CM|Congenital corneal opacity|Congenital corneal opacity +C0344535|T019|PT|Q13.3|ICD10|Congenital corneal opacity|Congenital corneal opacity +C2910117|T019|ET|Q13.4|ICD10CM|Congenital malformation of cornea NOS|Congenital malformation of cornea NOS +C0266544|T019|ET|Q13.4|ICD10CM|Microcornea|Microcornea +C0477983|T019|PT|Q13.4|ICD10|Other congenital corneal malformations|Other congenital corneal malformations +C0477983|T019|PT|Q13.4|ICD10CM|Other congenital corneal malformations|Other congenital corneal malformations +C0477983|T019|AB|Q13.4|ICD10CM|Other congenital corneal malformations|Other congenital corneal malformations +C0344559|T019|ET|Q13.4|ICD10CM|Peter's anomaly|Peter's anomaly +C0542514|T033|PT|Q13.5|ICD10CM|Blue sclera|Blue sclera +C0542514|T033|AB|Q13.5|ICD10CM|Blue sclera|Blue sclera +C0542514|T033|PT|Q13.5|ICD10|Blue sclera|Blue sclera +C0477984|T019|HT|Q13.8|ICD10CM|Other congenital malformations of anterior segment of eye|Other congenital malformations of anterior segment of eye +C0477984|T019|AB|Q13.8|ICD10CM|Other congenital malformations of anterior segment of eye|Other congenital malformations of anterior segment of eye +C0477984|T019|PT|Q13.8|ICD10|Other congenital malformations of anterior segment of eye|Other congenital malformations of anterior segment of eye +C0265341|T047|PT|Q13.81|ICD10CM|Rieger's anomaly|Rieger's anomaly +C0265341|T047|AB|Q13.81|ICD10CM|Rieger's anomaly|Rieger's anomaly +C0477984|T019|PT|Q13.89|ICD10CM|Other congenital malformations of anterior segment of eye|Other congenital malformations of anterior segment of eye +C0477984|T019|AB|Q13.89|ICD10CM|Other congenital malformations of anterior segment of eye|Other congenital malformations of anterior segment of eye +C0495493|T019|AB|Q13.9|ICD10CM|Congenital malformation of anterior segment of eye, unsp|Congenital malformation of anterior segment of eye, unsp +C0495493|T019|PT|Q13.9|ICD10CM|Congenital malformation of anterior segment of eye, unspecified|Congenital malformation of anterior segment of eye, unspecified +C0495493|T019|PT|Q13.9|ICD10|Congenital malformation of anterior segment of eye, unspecified|Congenital malformation of anterior segment of eye, unspecified +C0439001|T019|HT|Q14|ICD10|Congenital malformations of posterior segment of eye|Congenital malformations of posterior segment of eye +C0439001|T019|AB|Q14|ICD10CM|Congenital malformations of posterior segment of eye|Congenital malformations of posterior segment of eye +C0439001|T019|HT|Q14|ICD10CM|Congenital malformations of posterior segment of eye|Congenital malformations of posterior segment of eye +C0472503|T019|PT|Q14.0|ICD10CM|Congenital malformation of vitreous humor|Congenital malformation of vitreous humor +C0472503|T019|AB|Q14.0|ICD10CM|Congenital malformation of vitreous humor|Congenital malformation of vitreous humor +C0472503|T019|PT|Q14.0|ICD10AE|Congenital malformation of vitreous humor|Congenital malformation of vitreous humor +C0472503|T019|PT|Q14.0|ICD10|Congenital malformation of vitreous humour|Congenital malformation of vitreous humour +C0344549|T019|ET|Q14.0|ICD10CM|Congenital vitreous opacity|Congenital vitreous opacity +C0266564|T019|PT|Q14.1|ICD10CM|Congenital malformation of retina|Congenital malformation of retina +C0266564|T019|AB|Q14.1|ICD10CM|Congenital malformation of retina|Congenital malformation of retina +C0266564|T019|PT|Q14.1|ICD10|Congenital malformation of retina|Congenital malformation of retina +C0266571|T019|ET|Q14.1|ICD10CM|Congenital retinal aneurysm|Congenital retinal aneurysm +C0155299|T047|ET|Q14.2|ICD10CM|Coloboma of optic disc|Coloboma of optic disc +C0266566|T019|PT|Q14.2|ICD10CM|Congenital malformation of optic disc|Congenital malformation of optic disc +C0266566|T019|AB|Q14.2|ICD10CM|Congenital malformation of optic disc|Congenital malformation of optic disc +C0266566|T019|PT|Q14.2|ICD10|Congenital malformation of optic disc|Congenital malformation of optic disc +C0521563|T019|PT|Q14.3|ICD10|Congenital malformation of choroid|Congenital malformation of choroid +C0521563|T019|PT|Q14.3|ICD10CM|Congenital malformation of choroid|Congenital malformation of choroid +C0521563|T019|AB|Q14.3|ICD10CM|Congenital malformation of choroid|Congenital malformation of choroid +C0240896|T019|ET|Q14.8|ICD10CM|Coloboma of the fundus|Coloboma of the fundus +C0477985|T019|PT|Q14.8|ICD10CM|Other congenital malformations of posterior segment of eye|Other congenital malformations of posterior segment of eye +C0477985|T019|AB|Q14.8|ICD10CM|Other congenital malformations of posterior segment of eye|Other congenital malformations of posterior segment of eye +C0477985|T019|PT|Q14.8|ICD10|Other congenital malformations of posterior segment of eye|Other congenital malformations of posterior segment of eye +C0439001|T019|AB|Q14.9|ICD10CM|Congenital malformation of posterior segment of eye, unsp|Congenital malformation of posterior segment of eye, unsp +C0439001|T019|PT|Q14.9|ICD10CM|Congenital malformation of posterior segment of eye, unspecified|Congenital malformation of posterior segment of eye, unspecified +C0439001|T019|PT|Q14.9|ICD10|Congenital malformation of posterior segment of eye, unspecified|Congenital malformation of posterior segment of eye, unspecified +C0431440|T019|HT|Q15|ICD10|Other congenital malformations of eye|Other congenital malformations of eye +C0431440|T019|AB|Q15|ICD10CM|Other congenital malformations of eye|Other congenital malformations of eye +C0431440|T019|HT|Q15|ICD10CM|Other congenital malformations of eye|Other congenital malformations of eye +C0266548|T019|ET|Q15.0|ICD10CM|Axenfeld's anomaly|Axenfeld's anomaly +C0020302|T019|ET|Q15.0|ICD10CM|Buphthalmos|Buphthalmos +C0020302|T019|PT|Q15.0|ICD10CM|Congenital glaucoma|Congenital glaucoma +C0020302|T019|AB|Q15.0|ICD10CM|Congenital glaucoma|Congenital glaucoma +C0020302|T019|PT|Q15.0|ICD10|Congenital glaucoma|Congenital glaucoma +C2981140|T047|ET|Q15.0|ICD10CM|Glaucoma of childhood|Glaucoma of childhood +C0020302|T019|ET|Q15.0|ICD10CM|Glaucoma of newborn|Glaucoma of newborn +C0020302|T019|ET|Q15.0|ICD10CM|Hydrophthalmos|Hydrophthalmos +C1393650|T019|ET|Q15.0|ICD10CM|Keratoglobus, congenital, with glaucoma|Keratoglobus, congenital, with glaucoma +C1393650|T047|ET|Q15.0|ICD10CM|Keratoglobus, congenital, with glaucoma|Keratoglobus, congenital, with glaucoma +C1398747|T019|ET|Q15.0|ICD10CM|Macrocornea with glaucoma|Macrocornea with glaucoma +C1398747|T047|ET|Q15.0|ICD10CM|Macrocornea with glaucoma|Macrocornea with glaucoma +C1403467|T019|ET|Q15.0|ICD10CM|Macrophthalmos in congenital glaucoma|Macrophthalmos in congenital glaucoma +C1398749|T019|ET|Q15.0|ICD10CM|Megalocornea with glaucoma|Megalocornea with glaucoma +C1398749|T047|ET|Q15.0|ICD10CM|Megalocornea with glaucoma|Megalocornea with glaucoma +C0477986|T019|PT|Q15.8|ICD10CM|Other specified congenital malformations of eye|Other specified congenital malformations of eye +C0477986|T019|AB|Q15.8|ICD10CM|Other specified congenital malformations of eye|Other specified congenital malformations of eye +C0477986|T019|PT|Q15.8|ICD10|Other specified congenital malformations of eye|Other specified congenital malformations of eye +C0015393|T019|ET|Q15.9|ICD10CM|Congenital anomaly of eye|Congenital anomaly of eye +C0015393|T019|ET|Q15.9|ICD10CM|Congenital deformity of eye|Congenital deformity of eye +C0015393|T019|PT|Q15.9|ICD10CM|Congenital malformation of eye, unspecified|Congenital malformation of eye, unspecified +C0015393|T019|AB|Q15.9|ICD10CM|Congenital malformation of eye, unspecified|Congenital malformation of eye, unspecified +C0015393|T019|PT|Q15.9|ICD10|Congenital malformation of eye, unspecified|Congenital malformation of eye, unspecified +C0266592|T019|AB|Q16|ICD10CM|Congenital malform of ear causing impairment of hearing|Congenital malform of ear causing impairment of hearing +C0266592|T019|HT|Q16|ICD10CM|Congenital malformations of ear causing impairment of hearing|Congenital malformations of ear causing impairment of hearing +C0266592|T019|HT|Q16|ICD10|Congenital malformations of ear causing impairment of hearing|Congenital malformations of ear causing impairment of hearing +C0702139|T019|PT|Q16.0|ICD10CM|Congenital absence of (ear) auricle|Congenital absence of (ear) auricle +C0702139|T019|AB|Q16.0|ICD10CM|Congenital absence of (ear) auricle|Congenital absence of (ear) auricle +C0702139|T019|PT|Q16.0|ICD10|Congenital absence of (ear) auricle|Congenital absence of (ear) auricle +C0495499|T019|AB|Q16.1|ICD10CM|Congenital absence, atresia and stricture of auditory canal|Congenital absence, atresia and stricture of auditory canal +C0495499|T019|PT|Q16.1|ICD10CM|Congenital absence, atresia and stricture of auditory canal (external)|Congenital absence, atresia and stricture of auditory canal (external) +C0495499|T019|PT|Q16.1|ICD10|Congenital absence, atresia and stricture of auditory canal (external)|Congenital absence, atresia and stricture of auditory canal (external) +C2910118|T019|ET|Q16.1|ICD10CM|Congenital atresia or stricture of osseous meatus|Congenital atresia or stricture of osseous meatus +C0266616|T019|PT|Q16.2|ICD10|Absence of eustachian tube|Absence of eustachian tube +C0266616|T019|PT|Q16.2|ICD10CM|Absence of eustachian tube|Absence of eustachian tube +C0266616|T019|AB|Q16.2|ICD10CM|Absence of eustachian tube|Absence of eustachian tube +C0266602|T019|ET|Q16.3|ICD10CM|Congenital fusion of ear ossicles|Congenital fusion of ear ossicles +C0158587|T019|PT|Q16.3|ICD10CM|Congenital malformation of ear ossicles|Congenital malformation of ear ossicles +C0158587|T019|AB|Q16.3|ICD10CM|Congenital malformation of ear ossicles|Congenital malformation of ear ossicles +C0158587|T019|PT|Q16.3|ICD10|Congenital malformation of ear ossicles|Congenital malformation of ear ossicles +C2910119|T019|ET|Q16.4|ICD10CM|Congenital malformation of middle ear NOS|Congenital malformation of middle ear NOS +C0477987|T019|PT|Q16.4|ICD10|Other congenital malformations of middle ear|Other congenital malformations of middle ear +C0477987|T019|PT|Q16.4|ICD10CM|Other congenital malformations of middle ear|Other congenital malformations of middle ear +C0477987|T019|AB|Q16.4|ICD10CM|Other congenital malformations of middle ear|Other congenital malformations of middle ear +C0266605|T019|ET|Q16.5|ICD10CM|Congenital anomaly of membranous labyrinth|Congenital anomaly of membranous labyrinth +C0266608|T019|ET|Q16.5|ICD10CM|Congenital anomaly of organ of Corti|Congenital anomaly of organ of Corti +C0685874|T019|PT|Q16.5|ICD10CM|Congenital malformation of inner ear|Congenital malformation of inner ear +C0685874|T019|AB|Q16.5|ICD10CM|Congenital malformation of inner ear|Congenital malformation of inner ear +C0685874|T019|PT|Q16.5|ICD10|Congenital malformation of inner ear|Congenital malformation of inner ear +C0266592|T019|AB|Q16.9|ICD10CM|Congen malform of ear causing impairment of hearing, unsp|Congen malform of ear causing impairment of hearing, unsp +C0266590|T019|ET|Q16.9|ICD10CM|Congenital absence of ear NOS|Congenital absence of ear NOS +C0266592|T019|PT|Q16.9|ICD10CM|Congenital malformation of ear causing impairment of hearing, unspecified|Congenital malformation of ear causing impairment of hearing, unspecified +C0266592|T019|PT|Q16.9|ICD10|Congenital malformation of ear causing impairment of hearing, unspecified|Congenital malformation of ear causing impairment of hearing, unspecified +C0431479|T019|AB|Q17|ICD10CM|Other congenital malformations of ear|Other congenital malformations of ear +C0431479|T019|HT|Q17|ICD10CM|Other congenital malformations of ear|Other congenital malformations of ear +C0431479|T019|HT|Q17|ICD10|Other congenital malformations of ear|Other congenital malformations of ear +C0266611|T019|PT|Q17.0|ICD10|Accessory auricle|Accessory auricle +C0266611|T019|PT|Q17.0|ICD10CM|Accessory auricle|Accessory auricle +C0266611|T019|AB|Q17.0|ICD10CM|Accessory auricle|Accessory auricle +C0266609|T019|ET|Q17.0|ICD10CM|Accessory tragus|Accessory tragus +C0266611|T019|ET|Q17.0|ICD10CM|Polyotia|Polyotia +C2910120|T019|ET|Q17.0|ICD10CM|Preauricular appendage or tag|Preauricular appendage or tag +C0266611|T019|ET|Q17.0|ICD10CM|Supernumerary ear|Supernumerary ear +C2910121|T019|ET|Q17.0|ICD10CM|Supernumerary lobule|Supernumerary lobule +C0152421|T019|PT|Q17.1|ICD10|Macrotia|Macrotia +C0152421|T019|PT|Q17.1|ICD10CM|Macrotia|Macrotia +C0152421|T019|AB|Q17.1|ICD10CM|Macrotia|Macrotia +C0152423|T019|PT|Q17.2|ICD10CM|Microtia|Microtia +C0152423|T019|AB|Q17.2|ICD10CM|Microtia|Microtia +C0152423|T019|PT|Q17.2|ICD10|Microtia|Microtia +C0477989|T019|PT|Q17.3|ICD10|Other misshapen ear|Other misshapen ear +C0477989|T019|PT|Q17.3|ICD10CM|Other misshapen ear|Other misshapen ear +C0477989|T019|AB|Q17.3|ICD10CM|Other misshapen ear|Other misshapen ear +C0344568|T019|ET|Q17.3|ICD10CM|Pointed ear|Pointed ear +C0239234|T019|ET|Q17.4|ICD10CM|Low-set ears|Low-set ears +C0431477|T019|PT|Q17.4|ICD10CM|Misplaced ear|Misplaced ear +C0431477|T019|AB|Q17.4|ICD10CM|Misplaced ear|Misplaced ear +C0431477|T019|PT|Q17.4|ICD10|Misplaced ear|Misplaced ear +C0266614|T019|ET|Q17.5|ICD10CM|Bat ear|Bat ear +C1305420|T019|PT|Q17.5|ICD10|Prominent ear|Prominent ear +C1305420|T019|PT|Q17.5|ICD10CM|Prominent ear|Prominent ear +C1305420|T019|AB|Q17.5|ICD10CM|Prominent ear|Prominent ear +C0158591|T019|ET|Q17.8|ICD10CM|Congenital absence of lobe of ear|Congenital absence of lobe of ear +C0477990|T019|PT|Q17.8|ICD10|Other specified congenital malformations of ear|Other specified congenital malformations of ear +C0477990|T019|PT|Q17.8|ICD10CM|Other specified congenital malformations of ear|Other specified congenital malformations of ear +C0477990|T019|AB|Q17.8|ICD10CM|Other specified congenital malformations of ear|Other specified congenital malformations of ear +C0266589|T019|ET|Q17.9|ICD10CM|Congenital anomaly of ear NOS|Congenital anomaly of ear NOS +C0266589|T019|PT|Q17.9|ICD10CM|Congenital malformation of ear, unspecified|Congenital malformation of ear, unspecified +C0266589|T019|AB|Q17.9|ICD10CM|Congenital malformation of ear, unspecified|Congenital malformation of ear, unspecified +C0266589|T019|PT|Q17.9|ICD10|Congenital malformation of ear, unspecified|Congenital malformation of ear, unspecified +C0495504|T019|HT|Q18|ICD10|Other congenital malformations of face and neck|Other congenital malformations of face and neck +C0495504|T019|AB|Q18|ICD10CM|Other congenital malformations of face and neck|Other congenital malformations of face and neck +C0495504|T019|HT|Q18|ICD10CM|Other congenital malformations of face and neck|Other congenital malformations of face and neck +C0431493|T019|ET|Q18.0|ICD10CM|Branchial vestige|Branchial vestige +C0495505|T019|PT|Q18.0|ICD10CM|Sinus, fistula and cyst of branchial cleft|Sinus, fistula and cyst of branchial cleft +C0495505|T019|AB|Q18.0|ICD10CM|Sinus, fistula and cyst of branchial cleft|Sinus, fistula and cyst of branchial cleft +C0495505|T019|PT|Q18.0|ICD10|Sinus, fistula and cyst of branchial cleft|Sinus, fistula and cyst of branchial cleft +C0266627|T019|ET|Q18.1|ICD10CM|Cervicoaural fistula|Cervicoaural fistula +C0266626|T019|ET|Q18.1|ICD10CM|Fistula of auricle, congenital|Fistula of auricle, congenital +C0495506|T019|PT|Q18.1|ICD10|Preauricular sinus and cyst|Preauricular sinus and cyst +C0495506|T019|PT|Q18.1|ICD10CM|Preauricular sinus and cyst|Preauricular sinus and cyst +C0495506|T019|AB|Q18.1|ICD10CM|Preauricular sinus and cyst|Preauricular sinus and cyst +C0079037|T019|ET|Q18.2|ICD10CM|Branchial cleft malformation NOS|Branchial cleft malformation NOS +C2363280|T019|ET|Q18.2|ICD10CM|Cervical auricle|Cervical auricle +C0477991|T019|PT|Q18.2|ICD10CM|Other branchial cleft malformations|Other branchial cleft malformations +C0477991|T019|AB|Q18.2|ICD10CM|Other branchial cleft malformations|Other branchial cleft malformations +C0477991|T019|PT|Q18.2|ICD10|Other branchial cleft malformations|Other branchial cleft malformations +C0265242|T019|ET|Q18.2|ICD10CM|Otocephaly|Otocephaly +C0221217|T019|ET|Q18.3|ICD10CM|Pterygium colli|Pterygium colli +C0221217|T019|PT|Q18.3|ICD10CM|Webbing of neck|Webbing of neck +C0221217|T019|AB|Q18.3|ICD10CM|Webbing of neck|Webbing of neck +C0221217|T019|PT|Q18.3|ICD10|Webbing of neck|Webbing of neck +C0024433|T019|PT|Q18.4|ICD10|Macrostomia|Macrostomia +C0024433|T019|PT|Q18.4|ICD10CM|Macrostomia|Macrostomia +C0024433|T019|AB|Q18.4|ICD10CM|Macrostomia|Macrostomia +C0026034|T019|PT|Q18.5|ICD10CM|Microstomia|Microstomia +C0026034|T019|AB|Q18.5|ICD10CM|Microstomia|Microstomia +C0026034|T019|PT|Q18.5|ICD10|Microstomia|Microstomia +C0266094|T019|ET|Q18.6|ICD10CM|Hypertrophy of lip, congenital|Hypertrophy of lip, congenital +C0266094|T019|PT|Q18.6|ICD10CM|Macrocheilia|Macrocheilia +C0266094|T019|AB|Q18.6|ICD10CM|Macrocheilia|Macrocheilia +C0266094|T019|PT|Q18.6|ICD10|Macrocheilia|Macrocheilia +C0266095|T019|PT|Q18.7|ICD10|Microcheilia|Microcheilia +C0266095|T019|PT|Q18.7|ICD10CM|Microcheilia|Microcheilia +C0266095|T019|AB|Q18.7|ICD10CM|Microcheilia|Microcheilia +C1394371|T019|ET|Q18.8|ICD10CM|Medial cyst of face and neck|Medial cyst of face and neck +C2910122|T020|ET|Q18.8|ICD10CM|Medial fistula of face and neck|Medial fistula of face and neck +C2910123|T020|ET|Q18.8|ICD10CM|Medial sinus of face and neck|Medial sinus of face and neck +C0477992|T019|PT|Q18.8|ICD10|Other specified congenital malformations of face and neck|Other specified congenital malformations of face and neck +C0477992|T019|PT|Q18.8|ICD10CM|Other specified congenital malformations of face and neck|Other specified congenital malformations of face and neck +C0477992|T019|AB|Q18.8|ICD10CM|Other specified congenital malformations of face and neck|Other specified congenital malformations of face and neck +C2107132|T019|ET|Q18.9|ICD10CM|Congenital anomaly NOS of face and neck|Congenital anomaly NOS of face and neck +C0869095|T019|PT|Q18.9|ICD10CM|Congenital malformation of face and neck, unspecified|Congenital malformation of face and neck, unspecified +C0869095|T019|AB|Q18.9|ICD10CM|Congenital malformation of face and neck, unspecified|Congenital malformation of face and neck, unspecified +C0869095|T019|PT|Q18.9|ICD10|Congenital malformation of face and neck, unspecified|Congenital malformation of face and neck, unspecified +C0478009|T019|HT|Q20|ICD10CM|Congenital malformations of cardiac chambers and connections|Congenital malformations of cardiac chambers and connections +C0478009|T019|AB|Q20|ICD10CM|Congenital malformations of cardiac chambers and connections|Congenital malformations of cardiac chambers and connections +C0478009|T019|HT|Q20|ICD10|Congenital malformations of cardiac chambers and connections|Congenital malformations of cardiac chambers and connections +C0478013|T019|HT|Q20-Q28|ICD10CM|Congenital malformations of the circulatory system (Q20-Q28)|Congenital malformations of the circulatory system (Q20-Q28) +C0478013|T019|HT|Q20-Q28.9|ICD10|Congenital malformations of the circulatory system|Congenital malformations of the circulatory system +C0041207|T019|PT|Q20.0|ICD10CM|Common arterial trunk|Common arterial trunk +C0041207|T019|AB|Q20.0|ICD10CM|Common arterial trunk|Common arterial trunk +C0041207|T019|PT|Q20.0|ICD10|Common arterial trunk|Common arterial trunk +C0041207|T019|ET|Q20.0|ICD10CM|Persistent truncus arteriosus|Persistent truncus arteriosus +C0013069|T019|PT|Q20.1|ICD10|Double outlet right ventricle|Double outlet right ventricle +C0013069|T019|PT|Q20.1|ICD10CM|Double outlet right ventricle|Double outlet right ventricle +C0013069|T019|AB|Q20.1|ICD10CM|Double outlet right ventricle|Double outlet right ventricle +C1956413|T019|ET|Q20.1|ICD10CM|Taussig-Bing syndrome|Taussig-Bing syndrome +C0265809|T019|PT|Q20.2|ICD10CM|Double outlet left ventricle|Double outlet left ventricle +C0265809|T019|AB|Q20.2|ICD10CM|Double outlet left ventricle|Double outlet left ventricle +C0265809|T019|PT|Q20.2|ICD10|Double outlet left ventricle|Double outlet left ventricle +C3257801|T019|ET|Q20.3|ICD10CM|Dextrotransposition of aorta|Dextrotransposition of aorta +C3536741|T019|PT|Q20.3|ICD10CM|Discordant ventriculoarterial connection|Discordant ventriculoarterial connection +C3536741|T019|AB|Q20.3|ICD10CM|Discordant ventriculoarterial connection|Discordant ventriculoarterial connection +C3536741|T019|PT|Q20.3|ICD10|Discordant ventriculoarterial connection|Discordant ventriculoarterial connection +C0040761|T019|ET|Q20.3|ICD10CM|Transposition of great vessels (complete)|Transposition of great vessels (complete) +C0152424|T019|ET|Q20.4|ICD10CM|Common ventricle|Common ventricle +C0152424|T019|ET|Q20.4|ICD10CM|Cor triloculare biatriatum|Cor triloculare biatriatum +C0344620|T019|PT|Q20.4|ICD10|Double inlet ventricle|Double inlet ventricle +C0344620|T019|PT|Q20.4|ICD10CM|Double inlet ventricle|Double inlet ventricle +C0344620|T019|AB|Q20.4|ICD10CM|Double inlet ventricle|Double inlet ventricle +C0152424|T019|ET|Q20.4|ICD10CM|Single ventricle|Single ventricle +C0332941|T019|ET|Q20.5|ICD10CM|Corrected transposition|Corrected transposition +C0344615|T019|PT|Q20.5|ICD10CM|Discordant atrioventricular connection|Discordant atrioventricular connection +C0344615|T019|AB|Q20.5|ICD10CM|Discordant atrioventricular connection|Discordant atrioventricular connection +C0344615|T019|PT|Q20.5|ICD10|Discordant atrioventricular connection|Discordant atrioventricular connection +C1275809|T019|ET|Q20.5|ICD10CM|Levotransposition|Levotransposition +C0232301|T033|ET|Q20.5|ICD10CM|Ventricular inversion|Ventricular inversion +C0344692|T019|PT|Q20.6|ICD10CM|Isomerism of atrial appendages|Isomerism of atrial appendages +C0344692|T019|AB|Q20.6|ICD10CM|Isomerism of atrial appendages|Isomerism of atrial appendages +C0344692|T019|PT|Q20.6|ICD10|Isomerism of atrial appendages|Isomerism of atrial appendages +C2910124|T019|ET|Q20.6|ICD10CM|Isomerism of atrial appendages with asplenia or polysplenia|Isomerism of atrial appendages with asplenia or polysplenia +C2910125|T190|ET|Q20.8|ICD10CM|Cor binoculare|Cor binoculare +C0477994|T019|AB|Q20.8|ICD10CM|Oth congenital malform of cardiac chambers and connections|Oth congenital malform of cardiac chambers and connections +C0477994|T019|PT|Q20.8|ICD10CM|Other congenital malformations of cardiac chambers and connections|Other congenital malformations of cardiac chambers and connections +C0477994|T019|PT|Q20.8|ICD10|Other congenital malformations of cardiac chambers and connections|Other congenital malformations of cardiac chambers and connections +C0478009|T019|AB|Q20.9|ICD10CM|Congenital malform of cardiac chambers and connections, unsp|Congenital malform of cardiac chambers and connections, unsp +C0478009|T019|PT|Q20.9|ICD10CM|Congenital malformation of cardiac chambers and connections, unspecified|Congenital malformation of cardiac chambers and connections, unspecified +C0478009|T019|PT|Q20.9|ICD10|Congenital malformation of cardiac chambers and connections, unspecified|Congenital malformation of cardiac chambers and connections, unspecified +C0018816|T019|HT|Q21|ICD10|Congenital malformations of cardiac septa|Congenital malformations of cardiac septa +C0018816|T019|AB|Q21|ICD10CM|Congenital malformations of cardiac septa|Congenital malformations of cardiac septa +C0018816|T019|HT|Q21|ICD10CM|Congenital malformations of cardiac septa|Congenital malformations of cardiac septa +C0238522|T019|ET|Q21.0|ICD10CM|Roger's disease|Roger's disease +C0018818|T019|PT|Q21.0|ICD10CM|Ventricular septal defect|Ventricular septal defect +C0018818|T019|AB|Q21.0|ICD10CM|Ventricular septal defect|Ventricular septal defect +C0018818|T019|PT|Q21.0|ICD10|Ventricular septal defect|Ventricular septal defect +C0018817|T019|PT|Q21.1|ICD10|Atrial septal defect|Atrial septal defect +C0018817|T019|PT|Q21.1|ICD10CM|Atrial septal defect|Atrial septal defect +C0018817|T019|AB|Q21.1|ICD10CM|Atrial septal defect|Atrial septal defect +C1409792|T019|ET|Q21.1|ICD10CM|Coronary sinus defect|Coronary sinus defect +C0016522|T019|ET|Q21.1|ICD10CM|Patent or persistent foramen ovale|Patent or persistent foramen ovale +C2910126|T047|ET|Q21.1|ICD10CM|Patent or persistent ostium secundum defect (type II)|Patent or persistent ostium secundum defect (type II) +C2910127|T047|ET|Q21.1|ICD10CM|Patent or persistent sinus venosus defect|Patent or persistent sinus venosus defect +C1389018|T019|PT|Q21.2|ICD10CM|Atrioventricular septal defect|Atrioventricular septal defect +C1389018|T019|AB|Q21.2|ICD10CM|Atrioventricular septal defect|Atrioventricular septal defect +C1389018|T019|PT|Q21.2|ICD10|Atrioventricular septal defect|Atrioventricular septal defect +C0221215|T019|ET|Q21.2|ICD10CM|Common atrioventricular canal|Common atrioventricular canal +C0014116|T019|ET|Q21.2|ICD10CM|Endocardial cushion defect|Endocardial cushion defect +C2910128|T047|ET|Q21.2|ICD10CM|Ostium primum atrial septal defect (type I)|Ostium primum atrial septal defect (type I) +C0039685|T019|PT|Q21.3|ICD10CM|Tetralogy of Fallot|Tetralogy of Fallot +C0039685|T019|AB|Q21.3|ICD10CM|Tetralogy of Fallot|Tetralogy of Fallot +C0039685|T019|PT|Q21.3|ICD10|Tetralogy of Fallot|Tetralogy of Fallot +C0003516|T019|ET|Q21.4|ICD10CM|Aortic septal defect|Aortic septal defect +C0003516|T019|PT|Q21.4|ICD10CM|Aortopulmonary septal defect|Aortopulmonary septal defect +C0003516|T019|AB|Q21.4|ICD10CM|Aortopulmonary septal defect|Aortopulmonary septal defect +C0003516|T019|PT|Q21.4|ICD10|Aortopulmonary septal defect|Aortopulmonary septal defect +C0003516|T019|ET|Q21.4|ICD10CM|Aortopulmonary window|Aortopulmonary window +C0013743|T047|ET|Q21.8|ICD10CM|Eisenmenger's defect|Eisenmenger's defect +C0477995|T019|PT|Q21.8|ICD10CM|Other congenital malformations of cardiac septa|Other congenital malformations of cardiac septa +C0477995|T019|AB|Q21.8|ICD10CM|Other congenital malformations of cardiac septa|Other congenital malformations of cardiac septa +C0477995|T019|PT|Q21.8|ICD10|Other congenital malformations of cardiac septa|Other congenital malformations of cardiac septa +C0344883|T019|ET|Q21.8|ICD10CM|Pentalogy of Fallot|Pentalogy of Fallot +C0344883|T047|ET|Q21.8|ICD10CM|Pentalogy of Fallot|Pentalogy of Fallot +C0018816|T019|PT|Q21.9|ICD10CM|Congenital malformation of cardiac septum, unspecified|Congenital malformation of cardiac septum, unspecified +C0018816|T019|AB|Q21.9|ICD10CM|Congenital malformation of cardiac septum, unspecified|Congenital malformation of cardiac septum, unspecified +C0018816|T019|PT|Q21.9|ICD10|Congenital malformation of cardiac septum, unspecified|Congenital malformation of cardiac septum, unspecified +C0018816|T019|ET|Q21.9|ICD10CM|Septal (heart) defect NOS|Septal (heart) defect NOS +C0495511|T019|AB|Q22|ICD10CM|Congenital malformations of pulmonary and tricuspid valves|Congenital malformations of pulmonary and tricuspid valves +C0495511|T019|HT|Q22|ICD10CM|Congenital malformations of pulmonary and tricuspid valves|Congenital malformations of pulmonary and tricuspid valves +C0495511|T019|HT|Q22|ICD10|Congenital malformations of pulmonary and tricuspid valves|Congenital malformations of pulmonary and tricuspid valves +C0242855|T047|PT|Q22.0|ICD10CM|Pulmonary valve atresia|Pulmonary valve atresia +C0242855|T047|AB|Q22.0|ICD10CM|Pulmonary valve atresia|Pulmonary valve atresia +C0242855|T047|PT|Q22.0|ICD10|Pulmonary valve atresia|Pulmonary valve atresia +C0162164|T019|PT|Q22.1|ICD10|Congenital pulmonary valve stenosis|Congenital pulmonary valve stenosis +C0162164|T019|PT|Q22.1|ICD10CM|Congenital pulmonary valve stenosis|Congenital pulmonary valve stenosis +C0162164|T019|AB|Q22.1|ICD10CM|Congenital pulmonary valve stenosis|Congenital pulmonary valve stenosis +C0265833|T019|PT|Q22.2|ICD10CM|Congenital pulmonary valve insufficiency|Congenital pulmonary valve insufficiency +C0265833|T019|AB|Q22.2|ICD10CM|Congenital pulmonary valve insufficiency|Congenital pulmonary valve insufficiency +C0265833|T019|PT|Q22.2|ICD10|Congenital pulmonary valve insufficiency|Congenital pulmonary valve insufficiency +C1405852|T019|ET|Q22.2|ICD10CM|Congenital pulmonary valve regurgitation|Congenital pulmonary valve regurgitation +C0265830|T019|ET|Q22.3|ICD10CM|Congenital malformation of pulmonary valve NOS|Congenital malformation of pulmonary valve NOS +C0477996|T019|PT|Q22.3|ICD10|Other congenital malformations of pulmonary valve|Other congenital malformations of pulmonary valve +C0477996|T019|PT|Q22.3|ICD10CM|Other congenital malformations of pulmonary valve|Other congenital malformations of pulmonary valve +C0477996|T019|AB|Q22.3|ICD10CM|Other congenital malformations of pulmonary valve|Other congenital malformations of pulmonary valve +C0555211|T019|ET|Q22.3|ICD10CM|Supernumerary cusps of pulmonary valve|Supernumerary cusps of pulmonary valve +C2910131|T019|ET|Q22.4|ICD10CM|Congenital tricuspid atresia|Congenital tricuspid atresia +C2910131|T047|ET|Q22.4|ICD10CM|Congenital tricuspid atresia|Congenital tricuspid atresia +C0265836|T019|PT|Q22.4|ICD10CM|Congenital tricuspid stenosis|Congenital tricuspid stenosis +C0265836|T019|AB|Q22.4|ICD10CM|Congenital tricuspid stenosis|Congenital tricuspid stenosis +C0265836|T019|PT|Q22.4|ICD10|Congenital tricuspid stenosis|Congenital tricuspid stenosis +C0013481|T019|PT|Q22.5|ICD10|Ebstein's anomaly|Ebstein's anomaly +C0013481|T019|PT|Q22.5|ICD10CM|Ebstein's anomaly|Ebstein's anomaly +C0013481|T019|AB|Q22.5|ICD10CM|Ebstein's anomaly|Ebstein's anomaly +C0344963|T047|PT|Q22.6|ICD10|Hypoplastic right heart syndrome|Hypoplastic right heart syndrome +C0344963|T047|PT|Q22.6|ICD10CM|Hypoplastic right heart syndrome|Hypoplastic right heart syndrome +C0344963|T047|AB|Q22.6|ICD10CM|Hypoplastic right heart syndrome|Hypoplastic right heart syndrome +C0477997|T019|PT|Q22.8|ICD10CM|Other congenital malformations of tricuspid valve|Other congenital malformations of tricuspid valve +C0477997|T019|AB|Q22.8|ICD10CM|Other congenital malformations of tricuspid valve|Other congenital malformations of tricuspid valve +C0477997|T019|PT|Q22.8|ICD10|Other congenital malformations of tricuspid valve|Other congenital malformations of tricuspid valve +C0478010|T019|PT|Q22.9|ICD10|Congenital malformation of tricuspid valve, unspecified|Congenital malformation of tricuspid valve, unspecified +C0478010|T019|PT|Q22.9|ICD10CM|Congenital malformation of tricuspid valve, unspecified|Congenital malformation of tricuspid valve, unspecified +C0478010|T019|AB|Q22.9|ICD10CM|Congenital malformation of tricuspid valve, unspecified|Congenital malformation of tricuspid valve, unspecified +C0478011|T019|AB|Q23|ICD10CM|Congenital malformations of aortic and mitral valves|Congenital malformations of aortic and mitral valves +C0478011|T019|HT|Q23|ICD10CM|Congenital malformations of aortic and mitral valves|Congenital malformations of aortic and mitral valves +C0478011|T019|HT|Q23|ICD10|Congenital malformations of aortic and mitral valves|Congenital malformations of aortic and mitral valves +C0265889|T019|ET|Q23.0|ICD10CM|Congenital aortic atresia|Congenital aortic atresia +C0265890|T019|ET|Q23.0|ICD10CM|Congenital aortic stenosis NOS|Congenital aortic stenosis NOS +C0152417|T019|PT|Q23.0|ICD10|Congenital stenosis of aortic valve|Congenital stenosis of aortic valve +C0152417|T019|PT|Q23.0|ICD10CM|Congenital stenosis of aortic valve|Congenital stenosis of aortic valve +C0152417|T019|AB|Q23.0|ICD10CM|Congenital stenosis of aortic valve|Congenital stenosis of aortic valve +C0149630|T019|ET|Q23.1|ICD10CM|Bicuspid aortic valve|Bicuspid aortic valve +C0158617|T047|ET|Q23.1|ICD10CM|Congenital aortic insufficiency|Congenital aortic insufficiency +C0158617|T047|PT|Q23.1|ICD10CM|Congenital insufficiency of aortic valve|Congenital insufficiency of aortic valve +C0158617|T047|AB|Q23.1|ICD10CM|Congenital insufficiency of aortic valve|Congenital insufficiency of aortic valve +C0158617|T047|PT|Q23.1|ICD10|Congenital insufficiency of aortic valve|Congenital insufficiency of aortic valve +C2910132|T046|ET|Q23.2|ICD10CM|Congenital mitral atresia|Congenital mitral atresia +C0158618|T019|PT|Q23.2|ICD10|Congenital mitral stenosis|Congenital mitral stenosis +C0158618|T019|PT|Q23.2|ICD10CM|Congenital mitral stenosis|Congenital mitral stenosis +C0158618|T019|AB|Q23.2|ICD10CM|Congenital mitral stenosis|Congenital mitral stenosis +C0158619|T019|PT|Q23.3|ICD10CM|Congenital mitral insufficiency|Congenital mitral insufficiency +C0158619|T047|PT|Q23.3|ICD10CM|Congenital mitral insufficiency|Congenital mitral insufficiency +C0158619|T019|AB|Q23.3|ICD10CM|Congenital mitral insufficiency|Congenital mitral insufficiency +C0158619|T047|AB|Q23.3|ICD10CM|Congenital mitral insufficiency|Congenital mitral insufficiency +C0158619|T019|PT|Q23.3|ICD10|Congenital mitral insufficiency|Congenital mitral insufficiency +C0158619|T047|PT|Q23.3|ICD10|Congenital mitral insufficiency|Congenital mitral insufficiency +C0152101|T047|PT|Q23.4|ICD10|Hypoplastic left heart syndrome|Hypoplastic left heart syndrome +C0152101|T047|PT|Q23.4|ICD10CM|Hypoplastic left heart syndrome|Hypoplastic left heart syndrome +C0152101|T047|AB|Q23.4|ICD10CM|Hypoplastic left heart syndrome|Hypoplastic left heart syndrome +C0477998|T019|PT|Q23.8|ICD10|Other congenital malformations of aortic and mitral valves|Other congenital malformations of aortic and mitral valves +C0477998|T019|PT|Q23.8|ICD10CM|Other congenital malformations of aortic and mitral valves|Other congenital malformations of aortic and mitral valves +C0477998|T019|AB|Q23.8|ICD10CM|Other congenital malformations of aortic and mitral valves|Other congenital malformations of aortic and mitral valves +C0478011|T019|AB|Q23.9|ICD10CM|Congenital malformation of aortic and mitral valves, unsp|Congenital malformation of aortic and mitral valves, unsp +C0478011|T019|PT|Q23.9|ICD10CM|Congenital malformation of aortic and mitral valves, unspecified|Congenital malformation of aortic and mitral valves, unspecified +C0478011|T019|PT|Q23.9|ICD10|Congenital malformation of aortic and mitral valves, unspecified|Congenital malformation of aortic and mitral valves, unspecified +C0158611|T019|HT|Q24|ICD10|Other congenital malformations of heart|Other congenital malformations of heart +C0158611|T019|AB|Q24|ICD10CM|Other congenital malformations of heart|Other congenital malformations of heart +C0158611|T019|HT|Q24|ICD10CM|Other congenital malformations of heart|Other congenital malformations of heart +C0011813|T019|PT|Q24.0|ICD10CM|Dextrocardia|Dextrocardia +C0011813|T019|AB|Q24.0|ICD10CM|Dextrocardia|Dextrocardia +C0011813|T019|PT|Q24.0|ICD10|Dextrocardia|Dextrocardia +C0023569|T019|PT|Q24.1|ICD10|Laevocardia|Laevocardia +C0023569|T019|PT|Q24.1|ICD10AE|Levocardia|Levocardia +C0023569|T019|PT|Q24.1|ICD10CM|Levocardia|Levocardia +C0023569|T019|AB|Q24.1|ICD10CM|Levocardia|Levocardia +C0009995|T019|PT|Q24.2|ICD10CM|Cor triatriatum|Cor triatriatum +C0009995|T019|AB|Q24.2|ICD10CM|Cor triatriatum|Cor triatriatum +C0009995|T019|PT|Q24.2|ICD10|Cor triatriatum|Cor triatriatum +C0034084|T046|PT|Q24.3|ICD10|Pulmonary infundibular stenosis|Pulmonary infundibular stenosis +C0034084|T046|PT|Q24.3|ICD10CM|Pulmonary infundibular stenosis|Pulmonary infundibular stenosis +C0034084|T046|AB|Q24.3|ICD10CM|Pulmonary infundibular stenosis|Pulmonary infundibular stenosis +C0034084|T046|ET|Q24.3|ICD10CM|Subvalvular pulmonic stenosis|Subvalvular pulmonic stenosis +C0158621|T019|PT|Q24.4|ICD10CM|Congenital subaortic stenosis|Congenital subaortic stenosis +C0158621|T019|AB|Q24.4|ICD10CM|Congenital subaortic stenosis|Congenital subaortic stenosis +C0158621|T019|PT|Q24.4|ICD10|Congenital subaortic stenosis|Congenital subaortic stenosis +C2910133|T019|ET|Q24.5|ICD10CM|Congenital coronary (artery) aneurysm|Congenital coronary (artery) aneurysm +C0010074|T019|PT|Q24.5|ICD10|Malformation of coronary vessels|Malformation of coronary vessels +C0010074|T019|PT|Q24.5|ICD10CM|Malformation of coronary vessels|Malformation of coronary vessels +C0010074|T019|AB|Q24.5|ICD10CM|Malformation of coronary vessels|Malformation of coronary vessels +C0149530|T019|PT|Q24.6|ICD10CM|Congenital heart block|Congenital heart block +C0149530|T047|PT|Q24.6|ICD10CM|Congenital heart block|Congenital heart block +C0149530|T019|AB|Q24.6|ICD10CM|Congenital heart block|Congenital heart block +C0149530|T047|AB|Q24.6|ICD10CM|Congenital heart block|Congenital heart block +C0149530|T019|PT|Q24.6|ICD10|Congenital heart block|Congenital heart block +C0149530|T047|PT|Q24.6|ICD10|Congenital heart block|Congenital heart block +C0265874|T019|ET|Q24.8|ICD10CM|Congenital diverticulum of left ventricle|Congenital diverticulum of left ventricle +C2910134|T019|ET|Q24.8|ICD10CM|Congenital malformation of myocardium|Congenital malformation of myocardium +C2910135|T019|ET|Q24.8|ICD10CM|Congenital malformation of pericardium|Congenital malformation of pericardium +C0344600|T019|ET|Q24.8|ICD10CM|Malposition of heart|Malposition of heart +C0477999|T019|PT|Q24.8|ICD10CM|Other specified congenital malformations of heart|Other specified congenital malformations of heart +C0477999|T019|AB|Q24.8|ICD10CM|Other specified congenital malformations of heart|Other specified congenital malformations of heart +C0477999|T019|PT|Q24.8|ICD10|Other specified congenital malformations of heart|Other specified congenital malformations of heart +C0265857|T019|ET|Q24.8|ICD10CM|Uhl's disease|Uhl's disease +C0018798|T019|ET|Q24.9|ICD10CM|Congenital anomaly of heart|Congenital anomaly of heart +C0152021|T019|ET|Q24.9|ICD10CM|Congenital disease of heart|Congenital disease of heart +C0018798|T019|PT|Q24.9|ICD10|Congenital malformation of heart, unspecified|Congenital malformation of heart, unspecified +C0018798|T019|PT|Q24.9|ICD10CM|Congenital malformation of heart, unspecified|Congenital malformation of heart, unspecified +C0018798|T019|AB|Q24.9|ICD10CM|Congenital malformation of heart, unspecified|Congenital malformation of heart, unspecified +C0478012|T019|HT|Q25|ICD10|Congenital malformations of great arteries|Congenital malformations of great arteries +C0478012|T019|AB|Q25|ICD10CM|Congenital malformations of great arteries|Congenital malformations of great arteries +C0478012|T019|HT|Q25|ICD10CM|Congenital malformations of great arteries|Congenital malformations of great arteries +C0013274|T019|PT|Q25.0|ICD10|Patent ductus arteriosus|Patent ductus arteriosus +C0013274|T019|PT|Q25.0|ICD10CM|Patent ductus arteriosus|Patent ductus arteriosus +C0013274|T019|AB|Q25.0|ICD10CM|Patent ductus arteriosus|Patent ductus arteriosus +C2910136|T046|ET|Q25.0|ICD10CM|Patent ductus Botallo|Patent ductus Botallo +C0013274|T019|ET|Q25.0|ICD10CM|Persistent ductus arteriosus|Persistent ductus arteriosus +C0003492|T019|PT|Q25.1|ICD10CM|Coarctation of aorta|Coarctation of aorta +C0003492|T019|AB|Q25.1|ICD10CM|Coarctation of aorta|Coarctation of aorta +C0003492|T019|PT|Q25.1|ICD10|Coarctation of aorta|Coarctation of aorta +C0003492|T019|ET|Q25.1|ICD10CM|Coarctation of aorta (preductal) (postductal)|Coarctation of aorta (preductal) (postductal) +C0003507|T047|ET|Q25.1|ICD10CM|Stenosis of aorta|Stenosis of aorta +C0265889|T019|AB|Q25.2|ICD10CM|Atresia of aorta|Atresia of aorta +C0265889|T019|HT|Q25.2|ICD10CM|Atresia of aorta|Atresia of aorta +C0265889|T019|PT|Q25.2|ICD10|Atresia of aorta|Atresia of aorta +C0345091|T019|ET|Q25.21|ICD10CM|Atresia of aortic arch|Atresia of aortic arch +C0152419|T019|PT|Q25.21|ICD10CM|Interruption of aortic arch|Interruption of aortic arch +C0152419|T019|AB|Q25.21|ICD10CM|Interruption of aortic arch|Interruption of aortic arch +C0265889|T019|ET|Q25.29|ICD10CM|Atresia of aorta|Atresia of aorta +C4269135|T019|AB|Q25.29|ICD10CM|Other atresia of aorta|Other atresia of aorta +C4269135|T019|PT|Q25.29|ICD10CM|Other atresia of aorta|Other atresia of aorta +C0003507|T047|PT|Q25.3|ICD10|Stenosis of aorta|Stenosis of aorta +C0003499|T047|PT|Q25.3|ICD10CM|Supravalvular aortic stenosis|Supravalvular aortic stenosis +C0003499|T047|AB|Q25.3|ICD10CM|Supravalvular aortic stenosis|Supravalvular aortic stenosis +C0478000|T019|PT|Q25.4|ICD10|Other congenital malformations of aorta|Other congenital malformations of aorta +C0478000|T019|AB|Q25.4|ICD10CM|Other congenital malformations of aorta|Other congenital malformations of aorta +C0478000|T019|HT|Q25.4|ICD10CM|Other congenital malformations of aorta|Other congenital malformations of aorta +C4269136|T019|AB|Q25.40|ICD10CM|Congenital malformation of aorta unspecified|Congenital malformation of aorta unspecified +C4269136|T019|PT|Q25.40|ICD10CM|Congenital malformation of aorta unspecified|Congenital malformation of aorta unspecified +C4269137|T019|AB|Q25.41|ICD10CM|Absence and aplasia of aorta|Absence and aplasia of aorta +C4269137|T019|PT|Q25.41|ICD10CM|Absence and aplasia of aorta|Absence and aplasia of aorta +C0265892|T019|AB|Q25.42|ICD10CM|Hypoplasia of aorta|Hypoplasia of aorta +C0265892|T019|PT|Q25.42|ICD10CM|Hypoplasia of aorta|Hypoplasia of aorta +C0265894|T019|PT|Q25.43|ICD10CM|Congenital aneurysm of aorta|Congenital aneurysm of aorta +C0265894|T019|AB|Q25.43|ICD10CM|Congenital aneurysm of aorta|Congenital aneurysm of aorta +C4269138|T019|ET|Q25.43|ICD10CM|Congenital aneurysm of aortic root|Congenital aneurysm of aortic root +C1388174|T019|ET|Q25.43|ICD10CM|Congenital aneurysm of aortic sinus|Congenital aneurysm of aortic sinus +C0265895|T019|AB|Q25.44|ICD10CM|Congenital dilation of aorta|Congenital dilation of aorta +C0265895|T019|PT|Q25.44|ICD10CM|Congenital dilation of aorta|Congenital dilation of aorta +C0265883|T019|PT|Q25.45|ICD10CM|Double aortic arch|Double aortic arch +C0265883|T019|AB|Q25.45|ICD10CM|Double aortic arch|Double aortic arch +C0221214|T019|ET|Q25.45|ICD10CM|Vascular ring of aorta|Vascular ring of aorta +C0265887|T019|ET|Q25.46|ICD10CM|Persistent convolutions of aortic arch|Persistent convolutions of aortic arch +C4269139|T019|PT|Q25.46|ICD10CM|Tortuous aortic arch|Tortuous aortic arch +C4269139|T019|AB|Q25.46|ICD10CM|Tortuous aortic arch|Tortuous aortic arch +C0035615|T019|ET|Q25.47|ICD10CM|Persistent right aortic arch|Persistent right aortic arch +C0035615|T019|AB|Q25.47|ICD10CM|Right aortic arch|Right aortic arch +C0035615|T019|PT|Q25.47|ICD10CM|Right aortic arch|Right aortic arch +C4269140|T019|AB|Q25.48|ICD10CM|Anomalous origin of subclavian artery|Anomalous origin of subclavian artery +C4269140|T019|PT|Q25.48|ICD10CM|Anomalous origin of subclavian artery|Anomalous origin of subclavian artery +C4759703|T190|ET|Q25.49|ICD10CM|Aortic arch|Aortic arch +C3532020|T019|ET|Q25.49|ICD10CM|Bovine arch|Bovine arch +C0478000|T019|AB|Q25.49|ICD10CM|Other congenital malformations of aorta|Other congenital malformations of aorta +C0478000|T019|PT|Q25.49|ICD10CM|Other congenital malformations of aorta|Other congenital malformations of aorta +C0265908|T019|PT|Q25.5|ICD10CM|Atresia of pulmonary artery|Atresia of pulmonary artery +C0265908|T019|AB|Q25.5|ICD10CM|Atresia of pulmonary artery|Atresia of pulmonary artery +C0265908|T019|PT|Q25.5|ICD10|Atresia of pulmonary artery|Atresia of pulmonary artery +C0265911|T019|PT|Q25.6|ICD10|Stenosis of pulmonary artery|Stenosis of pulmonary artery +C0265911|T019|PT|Q25.6|ICD10CM|Stenosis of pulmonary artery|Stenosis of pulmonary artery +C0265911|T019|AB|Q25.6|ICD10CM|Stenosis of pulmonary artery|Stenosis of pulmonary artery +C2910138|T047|ET|Q25.6|ICD10CM|Supravalvular pulmonary stenosis|Supravalvular pulmonary stenosis +C0478001|T019|HT|Q25.7|ICD10CM|Other congenital malformations of pulmonary artery|Other congenital malformations of pulmonary artery +C0478001|T019|AB|Q25.7|ICD10CM|Other congenital malformations of pulmonary artery|Other congenital malformations of pulmonary artery +C0478001|T019|PT|Q25.7|ICD10|Other congenital malformations of pulmonary artery|Other congenital malformations of pulmonary artery +C0265909|T019|AB|Q25.71|ICD10CM|Coarctation of pulmonary artery|Coarctation of pulmonary artery +C0265909|T019|PT|Q25.71|ICD10CM|Coarctation of pulmonary artery|Coarctation of pulmonary artery +C1364466|T019|ET|Q25.72|ICD10CM|Congenital pulmonary arteriovenous aneurysm|Congenital pulmonary arteriovenous aneurysm +C0241790|T019|AB|Q25.72|ICD10CM|Congenital pulmonary arteriovenous malformation|Congenital pulmonary arteriovenous malformation +C0241790|T019|PT|Q25.72|ICD10CM|Congenital pulmonary arteriovenous malformation|Congenital pulmonary arteriovenous malformation +C1384813|T019|ET|Q25.79|ICD10CM|Aberrant pulmonary artery|Aberrant pulmonary artery +C0265905|T019|ET|Q25.79|ICD10CM|Agenesis of pulmonary artery|Agenesis of pulmonary artery +C0578524|T019|ET|Q25.79|ICD10CM|Congenital aneurysm of pulmonary artery|Congenital aneurysm of pulmonary artery +C0009681|T019|ET|Q25.79|ICD10CM|Congenital anomaly of pulmonary artery|Congenital anomaly of pulmonary artery +C0265910|T019|ET|Q25.79|ICD10CM|Hypoplasia of pulmonary artery|Hypoplasia of pulmonary artery +C0478001|T019|AB|Q25.79|ICD10CM|Other congenital malformations of pulmonary artery|Other congenital malformations of pulmonary artery +C0478001|T019|PT|Q25.79|ICD10CM|Other congenital malformations of pulmonary artery|Other congenital malformations of pulmonary artery +C0478002|T019|PT|Q25.8|ICD10|Other congenital malformations of great arteries|Other congenital malformations of great arteries +C2910139|T019|AB|Q25.8|ICD10CM|Other congenital malformations of other great arteries|Other congenital malformations of other great arteries +C2910139|T019|PT|Q25.8|ICD10CM|Other congenital malformations of other great arteries|Other congenital malformations of other great arteries +C0478012|T019|PT|Q25.9|ICD10|Congenital malformation of great arteries, unspecified|Congenital malformation of great arteries, unspecified +C0478012|T019|PT|Q25.9|ICD10CM|Congenital malformation of great arteries, unspecified|Congenital malformation of great arteries, unspecified +C0478012|T019|AB|Q25.9|ICD10CM|Congenital malformation of great arteries, unspecified|Congenital malformation of great arteries, unspecified +C0158632|T019|HT|Q26|ICD10|Congenital malformations of great veins|Congenital malformations of great veins +C0158632|T019|AB|Q26|ICD10CM|Congenital malformations of great veins|Congenital malformations of great veins +C0158632|T019|HT|Q26|ICD10CM|Congenital malformations of great veins|Congenital malformations of great veins +C0265927|T019|PT|Q26.0|ICD10|Congenital stenosis of vena cava|Congenital stenosis of vena cava +C0265927|T019|PT|Q26.0|ICD10CM|Congenital stenosis of vena cava|Congenital stenosis of vena cava +C0265927|T019|AB|Q26.0|ICD10CM|Congenital stenosis of vena cava|Congenital stenosis of vena cava +C2910140|T019|ET|Q26.0|ICD10CM|Congenital stenosis of vena cava (inferior)(superior)|Congenital stenosis of vena cava (inferior)(superior) +C0265931|T019|PT|Q26.1|ICD10CM|Persistent left superior vena cava|Persistent left superior vena cava +C0265931|T019|AB|Q26.1|ICD10CM|Persistent left superior vena cava|Persistent left superior vena cava +C0265931|T019|PT|Q26.1|ICD10|Persistent left superior vena cava|Persistent left superior vena cava +C4551903|T047|PT|Q26.2|ICD10|Total anomalous pulmonary venous connection|Total anomalous pulmonary venous connection +C4551903|T047|PT|Q26.2|ICD10CM|Total anomalous pulmonary venous connection|Total anomalous pulmonary venous connection +C4551903|T047|AB|Q26.2|ICD10CM|Total anomalous pulmonary venous connection|Total anomalous pulmonary venous connection +C0265921|T019|ET|Q26.2|ICD10CM|Total anomalous pulmonary venous return [TAPVR], subdiaphragmatic|Total anomalous pulmonary venous return [TAPVR], subdiaphragmatic +C0265917|T019|ET|Q26.2|ICD10CM|Total anomalous pulmonary venous return [TAPVR], supradiaphragmatic|Total anomalous pulmonary venous return [TAPVR], supradiaphragmatic +C0158634|T019|PT|Q26.3|ICD10|Partial anomalous pulmonary venous connection|Partial anomalous pulmonary venous connection +C0158634|T019|PT|Q26.3|ICD10CM|Partial anomalous pulmonary venous connection|Partial anomalous pulmonary venous connection +C0158634|T019|AB|Q26.3|ICD10CM|Partial anomalous pulmonary venous connection|Partial anomalous pulmonary venous connection +C0158634|T019|ET|Q26.3|ICD10CM|Partial anomalous pulmonary venous return|Partial anomalous pulmonary venous return +C0265916|T019|PT|Q26.4|ICD10CM|Anomalous pulmonary venous connection, unspecified|Anomalous pulmonary venous connection, unspecified +C0265916|T019|AB|Q26.4|ICD10CM|Anomalous pulmonary venous connection, unspecified|Anomalous pulmonary venous connection, unspecified +C0265916|T019|PT|Q26.4|ICD10|Anomalous pulmonary venous connection, unspecified|Anomalous pulmonary venous connection, unspecified +C0265922|T019|PT|Q26.5|ICD10|Anomalous portal venous connection|Anomalous portal venous connection +C0265922|T019|PT|Q26.5|ICD10CM|Anomalous portal venous connection|Anomalous portal venous connection +C0265922|T019|AB|Q26.5|ICD10CM|Anomalous portal venous connection|Anomalous portal venous connection +C0344650|T019|PT|Q26.6|ICD10CM|Portal vein-hepatic artery fistula|Portal vein-hepatic artery fistula +C0344650|T019|AB|Q26.6|ICD10CM|Portal vein-hepatic artery fistula|Portal vein-hepatic artery fistula +C0344650|T019|PT|Q26.6|ICD10|Portal vein-hepatic artery fistula|Portal vein-hepatic artery fistula +C2910141|T019|ET|Q26.8|ICD10CM|Absence of vena cava (inferior) (superior)|Absence of vena cava (inferior) (superior) +C1389218|T019|ET|Q26.8|ICD10CM|Azygos continuation of inferior vena cava|Azygos continuation of inferior vena cava +C0478003|T019|PT|Q26.8|ICD10|Other congenital malformations of great veins|Other congenital malformations of great veins +C0478003|T019|PT|Q26.8|ICD10CM|Other congenital malformations of great veins|Other congenital malformations of great veins +C0478003|T019|AB|Q26.8|ICD10CM|Other congenital malformations of great veins|Other congenital malformations of great veins +C0265955|T019|ET|Q26.8|ICD10CM|Persistent left posterior cardinal vein|Persistent left posterior cardinal vein +C0036400|T047|ET|Q26.8|ICD10CM|Scimitar syndrome|Scimitar syndrome +C2910142|T019|ET|Q26.9|ICD10CM|Congenital anomaly of vena cava (inferior) (superior) NOS|Congenital anomaly of vena cava (inferior) (superior) NOS +C0158632|T019|PT|Q26.9|ICD10CM|Congenital malformation of great vein, unspecified|Congenital malformation of great vein, unspecified +C0158632|T019|AB|Q26.9|ICD10CM|Congenital malformation of great vein, unspecified|Congenital malformation of great vein, unspecified +C0158632|T019|PT|Q26.9|ICD10|Congenital malformation of great vein, unspecified|Congenital malformation of great vein, unspecified +C1963536|T019|HT|Q27|ICD10|Other congenital malformations of peripheral vascular system|Other congenital malformations of peripheral vascular system +C1963536|T019|AB|Q27|ICD10CM|Other congenital malformations of peripheral vascular system|Other congenital malformations of peripheral vascular system +C1963536|T019|HT|Q27|ICD10CM|Other congenital malformations of peripheral vascular system|Other congenital malformations of peripheral vascular system +C0158635|T019|PT|Q27.0|ICD10CM|Congenital absence and hypoplasia of umbilical artery|Congenital absence and hypoplasia of umbilical artery +C0158635|T019|AB|Q27.0|ICD10CM|Congenital absence and hypoplasia of umbilical artery|Congenital absence and hypoplasia of umbilical artery +C0158635|T019|PT|Q27.0|ICD10|Congenital absence and hypoplasia of umbilical artery|Congenital absence and hypoplasia of umbilical artery +C1384670|T019|ET|Q27.0|ICD10CM|Single umbilical artery|Single umbilical artery +C0495523|T019|PT|Q27.1|ICD10|Congenital renal artery stenosis|Congenital renal artery stenosis +C0495523|T019|PT|Q27.1|ICD10CM|Congenital renal artery stenosis|Congenital renal artery stenosis +C0495523|T019|AB|Q27.1|ICD10CM|Congenital renal artery stenosis|Congenital renal artery stenosis +C2910143|T019|ET|Q27.2|ICD10CM|Congenital malformation of renal artery NOS|Congenital malformation of renal artery NOS +C0265949|T019|ET|Q27.2|ICD10CM|Multiple renal arteries|Multiple renal arteries +C0478004|T019|PT|Q27.2|ICD10|Other congenital malformations of renal artery|Other congenital malformations of renal artery +C0478004|T019|PT|Q27.2|ICD10CM|Other congenital malformations of renal artery|Other congenital malformations of renal artery +C0478004|T019|AB|Q27.2|ICD10CM|Other congenital malformations of renal artery|Other congenital malformations of renal artery +C1956223|T190|ET|Q27.3|ICD10CM|Arteriovenous aneurysm|Arteriovenous aneurysm +C0495524|T019|AB|Q27.3|ICD10CM|Arteriovenous malformation (peripheral)|Arteriovenous malformation (peripheral) +C0495524|T019|HT|Q27.3|ICD10CM|Arteriovenous malformation (peripheral)|Arteriovenous malformation (peripheral) +C0495524|T019|PT|Q27.3|ICD10|Peripheral arteriovenous malformation|Peripheral arteriovenous malformation +C2910144|T019|AB|Q27.30|ICD10CM|Arteriovenous malformation, site unspecified|Arteriovenous malformation, site unspecified +C2910144|T019|PT|Q27.30|ICD10CM|Arteriovenous malformation, site unspecified|Arteriovenous malformation, site unspecified +C2910145|T019|AB|Q27.31|ICD10CM|Arteriovenous malformation of vessel of upper limb|Arteriovenous malformation of vessel of upper limb +C2910145|T019|PT|Q27.31|ICD10CM|Arteriovenous malformation of vessel of upper limb|Arteriovenous malformation of vessel of upper limb +C2910146|T019|AB|Q27.32|ICD10CM|Arteriovenous malformation of vessel of lower limb|Arteriovenous malformation of vessel of lower limb +C2910146|T019|PT|Q27.32|ICD10CM|Arteriovenous malformation of vessel of lower limb|Arteriovenous malformation of vessel of lower limb +C2910147|T019|PT|Q27.33|ICD10CM|Arteriovenous malformation of digestive system vessel|Arteriovenous malformation of digestive system vessel +C2910147|T019|AB|Q27.33|ICD10CM|Arteriovenous malformation of digestive system vessel|Arteriovenous malformation of digestive system vessel +C2910148|T019|PT|Q27.34|ICD10CM|Arteriovenous malformation of renal vessel|Arteriovenous malformation of renal vessel +C2910148|T019|AB|Q27.34|ICD10CM|Arteriovenous malformation of renal vessel|Arteriovenous malformation of renal vessel +C2910149|T019|AB|Q27.39|ICD10CM|Arteriovenous malformation, other site|Arteriovenous malformation, other site +C2910149|T019|PT|Q27.39|ICD10CM|Arteriovenous malformation, other site|Arteriovenous malformation, other site +C0265953|T019|PT|Q27.4|ICD10|Congenital phlebectasia|Congenital phlebectasia +C0265953|T019|PT|Q27.4|ICD10CM|Congenital phlebectasia|Congenital phlebectasia +C0265953|T019|AB|Q27.4|ICD10CM|Congenital phlebectasia|Congenital phlebectasia +C2910150|T019|ET|Q27.8|ICD10CM|Absence of peripheral vascular system|Absence of peripheral vascular system +C2910151|T019|ET|Q27.8|ICD10CM|Atresia of peripheral vascular system|Atresia of peripheral vascular system +C0265941|T019|ET|Q27.8|ICD10CM|Congenital aneurysm (peripheral)|Congenital aneurysm (peripheral) +C0265938|T019|ET|Q27.8|ICD10CM|Congenital stricture, artery|Congenital stricture, artery +C2939184|T019|ET|Q27.8|ICD10CM|Congenital varix|Congenital varix +C0478005|T019|AB|Q27.8|ICD10CM|Oth congenital malformations of peripheral vascular system|Oth congenital malformations of peripheral vascular system +C0478005|T019|PT|Q27.8|ICD10CM|Other specified congenital malformations of peripheral vascular system|Other specified congenital malformations of peripheral vascular system +C0478005|T019|PT|Q27.8|ICD10|Other specified congenital malformations of peripheral vascular system|Other specified congenital malformations of peripheral vascular system +C2910152|T190|ET|Q27.9|ICD10CM|Anomaly of artery or vein NOS|Anomaly of artery or vein NOS +C0340797|T019|AB|Q27.9|ICD10CM|Congenital malformation of peripheral vascular system, unsp|Congenital malformation of peripheral vascular system, unsp +C0340797|T019|PT|Q27.9|ICD10CM|Congenital malformation of peripheral vascular system, unspecified|Congenital malformation of peripheral vascular system, unspecified +C0340797|T019|PT|Q27.9|ICD10|Congenital malformation of peripheral vascular system, unspecified|Congenital malformation of peripheral vascular system, unspecified +C0158625|T019|HT|Q28|ICD10|Other congenital malformations of circulatory system|Other congenital malformations of circulatory system +C0158625|T019|AB|Q28|ICD10CM|Other congenital malformations of circulatory system|Other congenital malformations of circulatory system +C0158625|T019|HT|Q28|ICD10CM|Other congenital malformations of circulatory system|Other congenital malformations of circulatory system +C0348887|T019|PT|Q28.0|ICD10CM|Arteriovenous malformation of precerebral vessels|Arteriovenous malformation of precerebral vessels +C0348887|T019|AB|Q28.0|ICD10CM|Arteriovenous malformation of precerebral vessels|Arteriovenous malformation of precerebral vessels +C0348887|T019|PT|Q28.0|ICD10|Arteriovenous malformation of precerebral vessels|Arteriovenous malformation of precerebral vessels +C2910153|T019|ET|Q28.0|ICD10CM|Congenital arteriovenous precerebral aneurysm (nonruptured)|Congenital arteriovenous precerebral aneurysm (nonruptured) +C2910154|T019|ET|Q28.1|ICD10CM|Congenital malformation of precerebral vessels NOS|Congenital malformation of precerebral vessels NOS +C2910155|T019|ET|Q28.1|ICD10CM|Congenital precerebral aneurysm (nonruptured)|Congenital precerebral aneurysm (nonruptured) +C0478006|T019|PT|Q28.1|ICD10|Other malformations of precerebral vessels|Other malformations of precerebral vessels +C0478006|T019|PT|Q28.1|ICD10CM|Other malformations of precerebral vessels|Other malformations of precerebral vessels +C0478006|T019|AB|Q28.1|ICD10CM|Other malformations of precerebral vessels|Other malformations of precerebral vessels +C0007772|T019|ET|Q28.2|ICD10CM|Arteriovenous malformation of brain NOS|Arteriovenous malformation of brain NOS +C0917804|T019|PT|Q28.2|ICD10|Arteriovenous malformation of cerebral vessels|Arteriovenous malformation of cerebral vessels +C0917804|T019|PT|Q28.2|ICD10CM|Arteriovenous malformation of cerebral vessels|Arteriovenous malformation of cerebral vessels +C0917804|T019|AB|Q28.2|ICD10CM|Arteriovenous malformation of cerebral vessels|Arteriovenous malformation of cerebral vessels +C2910156|T019|ET|Q28.2|ICD10CM|Congenital arteriovenous cerebral aneurysm (nonruptured)|Congenital arteriovenous cerebral aneurysm (nonruptured) +C2910157|T019|ET|Q28.3|ICD10CM|Congenital cerebral aneurysm (nonruptured)|Congenital cerebral aneurysm (nonruptured) +C2910157|T047|ET|Q28.3|ICD10CM|Congenital cerebral aneurysm (nonruptured)|Congenital cerebral aneurysm (nonruptured) +C2910158|T019|ET|Q28.3|ICD10CM|Congenital malformation of cerebral vessels NOS|Congenital malformation of cerebral vessels NOS +C1956261|T019|ET|Q28.3|ICD10CM|Developmental venous anomaly|Developmental venous anomaly +C0478007|T019|PT|Q28.3|ICD10CM|Other malformations of cerebral vessels|Other malformations of cerebral vessels +C0478007|T019|AB|Q28.3|ICD10CM|Other malformations of cerebral vessels|Other malformations of cerebral vessels +C0478007|T019|PT|Q28.3|ICD10|Other malformations of cerebral vessels|Other malformations of cerebral vessels +C2910159|T019|ET|Q28.8|ICD10CM|Congenital aneurysm, specified site NEC|Congenital aneurysm, specified site NEC +C0478008|T019|AB|Q28.8|ICD10CM|Oth congenital malformations of circulatory system|Oth congenital malformations of circulatory system +C0478008|T019|PT|Q28.8|ICD10CM|Other specified congenital malformations of circulatory system|Other specified congenital malformations of circulatory system +C0478008|T019|PT|Q28.8|ICD10|Other specified congenital malformations of circulatory system|Other specified congenital malformations of circulatory system +C0375522|T019|ET|Q28.8|ICD10CM|Spinal vessel anomaly|Spinal vessel anomaly +C0478013|T019|PT|Q28.9|ICD10CM|Congenital malformation of circulatory system, unspecified|Congenital malformation of circulatory system, unspecified +C0478013|T019|AB|Q28.9|ICD10CM|Congenital malformation of circulatory system, unspecified|Congenital malformation of circulatory system, unspecified +C0478013|T019|PT|Q28.9|ICD10|Congenital malformation of circulatory system, unspecified|Congenital malformation of circulatory system, unspecified +C0265736|T019|HT|Q30|ICD10|Congenital malformations of nose|Congenital malformations of nose +C0265736|T019|HT|Q30|ICD10CM|Congenital malformations of nose|Congenital malformations of nose +C0265736|T019|AB|Q30|ICD10CM|Congenital malformations of nose|Congenital malformations of nose +C0035238|T019|HT|Q30-Q34|ICD10CM|Congenital malformations of the respiratory system (Q30-Q34)|Congenital malformations of the respiratory system (Q30-Q34) +C0035238|T019|HT|Q30-Q34.9|ICD10|Congenital malformations of the respiratory system|Congenital malformations of the respiratory system +C2910160|T019|ET|Q30.0|ICD10CM|Atresia of nares (anterior) (posterior)|Atresia of nares (anterior) (posterior) +C0008297|T019|PT|Q30.0|ICD10|Choanal atresia|Choanal atresia +C0008297|T019|PT|Q30.0|ICD10CM|Choanal atresia|Choanal atresia +C0008297|T019|AB|Q30.0|ICD10CM|Choanal atresia|Choanal atresia +C2910161|T019|ET|Q30.0|ICD10CM|Congenital stenosis of nares (anterior) (posterior)|Congenital stenosis of nares (anterior) (posterior) +C0265740|T019|PT|Q30.1|ICD10|Agenesis and underdevelopment of nose|Agenesis and underdevelopment of nose +C0265740|T019|PT|Q30.1|ICD10CM|Agenesis and underdevelopment of nose|Agenesis and underdevelopment of nose +C0265740|T019|AB|Q30.1|ICD10CM|Agenesis and underdevelopment of nose|Agenesis and underdevelopment of nose +C2910162|T019|ET|Q30.1|ICD10CM|Congenital absent of nose|Congenital absent of nose +C0495528|T019|PT|Q30.2|ICD10|Fissured, notched and cleft nose|Fissured, notched and cleft nose +C0495528|T019|PT|Q30.2|ICD10CM|Fissured, notched and cleft nose|Fissured, notched and cleft nose +C0495528|T019|AB|Q30.2|ICD10CM|Fissured, notched and cleft nose|Fissured, notched and cleft nose +C0521547|T019|PT|Q30.3|ICD10CM|Congenital perforated nasal septum|Congenital perforated nasal septum +C0521547|T019|AB|Q30.3|ICD10CM|Congenital perforated nasal septum|Congenital perforated nasal septum +C0521547|T019|PT|Q30.3|ICD10|Congenital perforated nasal septum|Congenital perforated nasal septum +C0265741|T019|ET|Q30.8|ICD10CM|Accessory nose|Accessory nose +C2910163|T019|ET|Q30.8|ICD10CM|Congenital anomaly of nasal sinus wall|Congenital anomaly of nasal sinus wall +C0478014|T019|PT|Q30.8|ICD10|Other congenital malformations of nose|Other congenital malformations of nose +C0478014|T019|PT|Q30.8|ICD10CM|Other congenital malformations of nose|Other congenital malformations of nose +C0478014|T019|AB|Q30.8|ICD10CM|Other congenital malformations of nose|Other congenital malformations of nose +C0265736|T019|PT|Q30.9|ICD10|Congenital malformation of nose, unspecified|Congenital malformation of nose, unspecified +C0265736|T019|PT|Q30.9|ICD10CM|Congenital malformation of nose, unspecified|Congenital malformation of nose, unspecified +C0265736|T019|AB|Q30.9|ICD10CM|Congenital malformation of nose, unspecified|Congenital malformation of nose, unspecified +C0265749|T019|HT|Q31|ICD10CM|Congenital malformations of larynx|Congenital malformations of larynx +C0265749|T019|AB|Q31|ICD10CM|Congenital malformations of larynx|Congenital malformations of larynx +C0265749|T019|HT|Q31|ICD10|Congenital malformations of larynx|Congenital malformations of larynx +C0431526|T019|ET|Q31.0|ICD10CM|Glottic web of larynx|Glottic web of larynx +C0311240|T019|ET|Q31.0|ICD10CM|Subglottic web of larynx|Subglottic web of larynx +C0152416|T019|PT|Q31.0|ICD10|Web of larynx|Web of larynx +C0152416|T019|PT|Q31.0|ICD10CM|Web of larynx|Web of larynx +C0152416|T019|AB|Q31.0|ICD10CM|Web of larynx|Web of larynx +C0152416|T019|ET|Q31.0|ICD10CM|Web of larynx NOS|Web of larynx NOS +C0396051|T019|PT|Q31.1|ICD10CM|Congenital subglottic stenosis|Congenital subglottic stenosis +C0396051|T019|AB|Q31.1|ICD10CM|Congenital subglottic stenosis|Congenital subglottic stenosis +C0396051|T019|PT|Q31.1|ICD10|Congenital subglottic stenosis|Congenital subglottic stenosis +C0431527|T019|PT|Q31.2|ICD10|Laryngeal hypoplasia|Laryngeal hypoplasia +C0431527|T019|PT|Q31.2|ICD10CM|Laryngeal hypoplasia|Laryngeal hypoplasia +C0431527|T019|AB|Q31.2|ICD10CM|Laryngeal hypoplasia|Laryngeal hypoplasia +C0265761|T019|PT|Q31.3|ICD10CM|Laryngocele|Laryngocele +C0265761|T019|AB|Q31.3|ICD10CM|Laryngocele|Laryngocele +C0265761|T019|PT|Q31.3|ICD10|Laryngocele|Laryngocele +C0265763|T019|PT|Q31.4|ICD10|Congenital laryngeal stridor|Congenital laryngeal stridor +C0345160|T019|PT|Q31.5|ICD10CM|Congenital laryngomalacia|Congenital laryngomalacia +C0345160|T019|AB|Q31.5|ICD10CM|Congenital laryngomalacia|Congenital laryngomalacia +C0426543|T019|ET|Q31.8|ICD10CM|Absence of larynx|Absence of larynx +C1261566|T019|ET|Q31.8|ICD10CM|Agenesis of larynx|Agenesis of larynx +C0265756|T019|ET|Q31.8|ICD10CM|Atresia of larynx|Atresia of larynx +C0265757|T019|ET|Q31.8|ICD10CM|Congenital cleft thyroid cartilage|Congenital cleft thyroid cartilage +C0265760|T019|ET|Q31.8|ICD10CM|Congenital fissure of epiglottis|Congenital fissure of epiglottis +C2910164|T019|ET|Q31.8|ICD10CM|Congenital stenosis of larynx NEC|Congenital stenosis of larynx NEC +C0478015|T019|PT|Q31.8|ICD10CM|Other congenital malformations of larynx|Other congenital malformations of larynx +C0478015|T019|AB|Q31.8|ICD10CM|Other congenital malformations of larynx|Other congenital malformations of larynx +C0478015|T019|PT|Q31.8|ICD10|Other congenital malformations of larynx|Other congenital malformations of larynx +C0265762|T019|ET|Q31.8|ICD10CM|Posterior cleft of cricoid cartilage|Posterior cleft of cricoid cartilage +C0265749|T019|PT|Q31.9|ICD10CM|Congenital malformation of larynx, unspecified|Congenital malformation of larynx, unspecified +C0265749|T019|AB|Q31.9|ICD10CM|Congenital malformation of larynx, unspecified|Congenital malformation of larynx, unspecified +C0265749|T019|PT|Q31.9|ICD10|Congenital malformation of larynx, unspecified|Congenital malformation of larynx, unspecified +C0431530|T019|HT|Q32|ICD10|Congenital malformations of trachea and bronchus|Congenital malformations of trachea and bronchus +C0431530|T019|AB|Q32|ICD10CM|Congenital malformations of trachea and bronchus|Congenital malformations of trachea and bronchus +C0431530|T019|HT|Q32|ICD10CM|Congenital malformations of trachea and bronchus|Congenital malformations of trachea and bronchus +C0392109|T019|PT|Q32.0|ICD10CM|Congenital tracheomalacia|Congenital tracheomalacia +C0392109|T019|AB|Q32.0|ICD10CM|Congenital tracheomalacia|Congenital tracheomalacia +C0392109|T019|PT|Q32.0|ICD10|Congenital tracheomalacia|Congenital tracheomalacia +C0265766|T019|ET|Q32.1|ICD10CM|Atresia of trachea|Atresia of trachea +C0265773|T019|ET|Q32.1|ICD10CM|Congenital anomaly of tracheal cartilage|Congenital anomaly of tracheal cartilage +C0265768|T019|ET|Q32.1|ICD10CM|Congenital dilatation of trachea|Congenital dilatation of trachea +C0265764|T019|ET|Q32.1|ICD10CM|Congenital malformation of trachea|Congenital malformation of trachea +C0265767|T019|ET|Q32.1|ICD10CM|Congenital stenosis of trachea|Congenital stenosis of trachea +C0265759|T019|ET|Q32.1|ICD10CM|Congenital tracheocele|Congenital tracheocele +C0478016|T019|PT|Q32.1|ICD10|Other congenital malformations of trachea|Other congenital malformations of trachea +C0478016|T019|PT|Q32.1|ICD10CM|Other congenital malformations of trachea|Other congenital malformations of trachea +C0478016|T019|AB|Q32.1|ICD10CM|Other congenital malformations of trachea|Other congenital malformations of trachea +C0340242|T019|PT|Q32.2|ICD10|Congenital bronchomalacia|Congenital bronchomalacia +C0340242|T019|PT|Q32.2|ICD10CM|Congenital bronchomalacia|Congenital bronchomalacia +C0340242|T019|AB|Q32.2|ICD10CM|Congenital bronchomalacia|Congenital bronchomalacia +C0340239|T019|PT|Q32.3|ICD10CM|Congenital stenosis of bronchus|Congenital stenosis of bronchus +C0340239|T019|AB|Q32.3|ICD10CM|Congenital stenosis of bronchus|Congenital stenosis of bronchus +C0340239|T019|PT|Q32.3|ICD10|Congenital stenosis of bronchus|Congenital stenosis of bronchus +C0265775|T019|ET|Q32.4|ICD10CM|Absence of bronchus|Absence of bronchus +C0265775|T019|ET|Q32.4|ICD10CM|Agenesis of bronchus|Agenesis of bronchus +C0265776|T019|ET|Q32.4|ICD10CM|Atresia of bronchus|Atresia of bronchus +C0265777|T019|ET|Q32.4|ICD10CM|Congenital diverticulum of bronchus|Congenital diverticulum of bronchus +C2910165|T019|ET|Q32.4|ICD10CM|Congenital malformation of bronchus NOS|Congenital malformation of bronchus NOS +C0478017|T019|PT|Q32.4|ICD10CM|Other congenital malformations of bronchus|Other congenital malformations of bronchus +C0478017|T019|AB|Q32.4|ICD10CM|Other congenital malformations of bronchus|Other congenital malformations of bronchus +C0478017|T019|PT|Q32.4|ICD10|Other congenital malformations of bronchus|Other congenital malformations of bronchus +C0158644|T019|HT|Q33|ICD10|Congenital malformations of lung|Congenital malformations of lung +C0158644|T019|AB|Q33|ICD10CM|Congenital malformations of lung|Congenital malformations of lung +C0158644|T019|HT|Q33|ICD10CM|Congenital malformations of lung|Congenital malformations of lung +C0158641|T019|PT|Q33.0|ICD10CM|Congenital cystic lung|Congenital cystic lung +C0158641|T019|AB|Q33.0|ICD10CM|Congenital cystic lung|Congenital cystic lung +C0158641|T019|PT|Q33.0|ICD10|Congenital cystic lung|Congenital cystic lung +C0158641|T019|ET|Q33.0|ICD10CM|Congenital cystic lung disease|Congenital cystic lung disease +C0265779|T019|ET|Q33.0|ICD10CM|Congenital honeycomb lung|Congenital honeycomb lung +C0555213|T019|ET|Q33.0|ICD10CM|Congenital polycystic lung disease|Congenital polycystic lung disease +C0225773|T019|PT|Q33.1|ICD10CM|Accessory lobe of lung|Accessory lobe of lung +C0225773|T019|AB|Q33.1|ICD10CM|Accessory lobe of lung|Accessory lobe of lung +C0225773|T019|PT|Q33.1|ICD10|Accessory lobe of lung|Accessory lobe of lung +C0265794|T019|ET|Q33.1|ICD10CM|Azygos lobe (fissured), lung|Azygos lobe (fissured), lung +C0006288|T019|PT|Q33.2|ICD10CM|Sequestration of lung|Sequestration of lung +C0006288|T019|AB|Q33.2|ICD10CM|Sequestration of lung|Sequestration of lung +C0006288|T019|PT|Q33.2|ICD10|Sequestration of lung|Sequestration of lung +C0265780|T019|PT|Q33.3|ICD10|Agenesis of lung|Agenesis of lung +C0265780|T019|PT|Q33.3|ICD10CM|Agenesis of lung|Agenesis of lung +C0265780|T019|AB|Q33.3|ICD10CM|Agenesis of lung|Agenesis of lung +C0265781|T019|ET|Q33.3|ICD10CM|Congenital absence of lung (lobe)|Congenital absence of lung (lobe) +C0152239|T019|PT|Q33.4|ICD10|Congenital bronchiectasis|Congenital bronchiectasis +C0152239|T047|PT|Q33.4|ICD10|Congenital bronchiectasis|Congenital bronchiectasis +C0152239|T019|PT|Q33.4|ICD10CM|Congenital bronchiectasis|Congenital bronchiectasis +C0152239|T047|PT|Q33.4|ICD10CM|Congenital bronchiectasis|Congenital bronchiectasis +C0152239|T019|AB|Q33.4|ICD10CM|Congenital bronchiectasis|Congenital bronchiectasis +C0152239|T047|AB|Q33.4|ICD10CM|Congenital bronchiectasis|Congenital bronchiectasis +C0431541|T019|PT|Q33.5|ICD10CM|Ectopic tissue in lung|Ectopic tissue in lung +C0431541|T019|AB|Q33.5|ICD10CM|Ectopic tissue in lung|Ectopic tissue in lung +C0431541|T019|PT|Q33.5|ICD10|Ectopic tissue in lung|Ectopic tissue in lung +C2910166|T019|AB|Q33.6|ICD10CM|Congenital hypoplasia and dysplasia of lung|Congenital hypoplasia and dysplasia of lung +C2910166|T019|PT|Q33.6|ICD10CM|Congenital hypoplasia and dysplasia of lung|Congenital hypoplasia and dysplasia of lung +C0495531|T019|PT|Q33.6|ICD10|Hypoplasia and dysplasia of lung|Hypoplasia and dysplasia of lung +C0478018|T019|PT|Q33.8|ICD10|Other congenital malformations of lung|Other congenital malformations of lung +C0478018|T019|PT|Q33.8|ICD10CM|Other congenital malformations of lung|Other congenital malformations of lung +C0478018|T019|AB|Q33.8|ICD10CM|Other congenital malformations of lung|Other congenital malformations of lung +C0158644|T019|PT|Q33.9|ICD10|Congenital malformation of lung, unspecified|Congenital malformation of lung, unspecified +C0158644|T019|PT|Q33.9|ICD10CM|Congenital malformation of lung, unspecified|Congenital malformation of lung, unspecified +C0158644|T019|AB|Q33.9|ICD10CM|Congenital malformation of lung, unspecified|Congenital malformation of lung, unspecified +C0495533|T019|AB|Q34|ICD10CM|Other congenital malformations of respiratory system|Other congenital malformations of respiratory system +C0495533|T019|HT|Q34|ICD10CM|Other congenital malformations of respiratory system|Other congenital malformations of respiratory system +C0495533|T019|HT|Q34|ICD10|Other congenital malformations of respiratory system|Other congenital malformations of respiratory system +C0431544|T019|PT|Q34.0|ICD10|Anomaly of pleura|Anomaly of pleura +C0431544|T019|PT|Q34.0|ICD10CM|Anomaly of pleura|Anomaly of pleura +C0431544|T019|AB|Q34.0|ICD10CM|Anomaly of pleura|Anomaly of pleura +C0265802|T019|PT|Q34.1|ICD10CM|Congenital cyst of mediastinum|Congenital cyst of mediastinum +C0265802|T019|AB|Q34.1|ICD10CM|Congenital cyst of mediastinum|Congenital cyst of mediastinum +C0265802|T019|PT|Q34.1|ICD10|Congenital cyst of mediastinum|Congenital cyst of mediastinum +C0265747|T019|ET|Q34.8|ICD10CM|Atresia of nasopharynx|Atresia of nasopharynx +C0478019|T019|AB|Q34.8|ICD10CM|Oth congenital malformations of respiratory system|Oth congenital malformations of respiratory system +C0478019|T019|PT|Q34.8|ICD10CM|Other specified congenital malformations of respiratory system|Other specified congenital malformations of respiratory system +C0478019|T019|PT|Q34.8|ICD10|Other specified congenital malformations of respiratory system|Other specified congenital malformations of respiratory system +C2910167|T019|ET|Q34.9|ICD10CM|Congenital absence of respiratory system|Congenital absence of respiratory system +C0035238|T019|ET|Q34.9|ICD10CM|Congenital anomaly of respiratory system NOS|Congenital anomaly of respiratory system NOS +C0035238|T019|PT|Q34.9|ICD10CM|Congenital malformation of respiratory system, unspecified|Congenital malformation of respiratory system, unspecified +C0035238|T019|AB|Q34.9|ICD10CM|Congenital malformation of respiratory system, unspecified|Congenital malformation of respiratory system, unspecified +C0035238|T019|PT|Q34.9|ICD10|Congenital malformation of respiratory system, unspecified|Congenital malformation of respiratory system, unspecified +C0008925|T019|HT|Q35|ICD10|Cleft palate|Cleft palate +C0008925|T019|HT|Q35|ICD10CM|Cleft palate|Cleft palate +C0008925|T019|AB|Q35|ICD10CM|Cleft palate|Cleft palate +C1397368|T190|ET|Q35|ICD10CM|fissure of palate|fissure of palate +C0008925|T019|ET|Q35|ICD10CM|palatoschisis|palatoschisis +C0158646|T019|HT|Q35-Q37|ICD10CM|Cleft lip and cleft palate (Q35-Q37)|Cleft lip and cleft palate (Q35-Q37) +C0158646|T019|HT|Q35-Q37.9|ICD10|Cleft lip and cleft palate|Cleft lip and cleft palate +C0432090|T019|PT|Q35.1|ICD10|Cleft hard palate|Cleft hard palate +C0432090|T019|PT|Q35.1|ICD10CM|Cleft hard palate|Cleft hard palate +C0432090|T019|AB|Q35.1|ICD10CM|Cleft hard palate|Cleft hard palate +C0432098|T019|PT|Q35.3|ICD10CM|Cleft soft palate|Cleft soft palate +C0432098|T019|AB|Q35.3|ICD10CM|Cleft soft palate|Cleft soft palate +C0432098|T019|PT|Q35.3|ICD10|Cleft soft palate|Cleft soft palate +C2981150|T019|PT|Q35.5|ICD10|Cleft hard palate with cleft soft palate|Cleft hard palate with cleft soft palate +C2981150|T019|PT|Q35.5|ICD10CM|Cleft hard palate with cleft soft palate|Cleft hard palate with cleft soft palate +C2981150|T019|AB|Q35.5|ICD10CM|Cleft hard palate with cleft soft palate|Cleft hard palate with cleft soft palate +C0495536|T019|PT|Q35.6|ICD10|Cleft palate, medial|Cleft palate, medial +C0266122|T019|PT|Q35.7|ICD10CM|Cleft uvula|Cleft uvula +C0266122|T019|AB|Q35.7|ICD10CM|Cleft uvula|Cleft uvula +C0266122|T019|PT|Q35.7|ICD10|Cleft uvula|Cleft uvula +C0008925|T019|ET|Q35.9|ICD10CM|Cleft palate NOS|Cleft palate NOS +C0008925|T019|PT|Q35.9|ICD10CM|Cleft palate, unspecified|Cleft palate, unspecified +C0008925|T019|AB|Q35.9|ICD10CM|Cleft palate, unspecified|Cleft palate, unspecified +C0008925|T019|PT|Q35.9|ICD10|Cleft palate, unspecified|Cleft palate, unspecified +C0008924|T019|ET|Q36|ICD10CM|cheiloschisis|cheiloschisis +C0008924|T019|HT|Q36|ICD10CM|Cleft lip|Cleft lip +C0008924|T019|AB|Q36|ICD10CM|Cleft lip|Cleft lip +C0008924|T019|HT|Q36|ICD10|Cleft lip|Cleft lip +C0008924|T019|ET|Q36|ICD10CM|congenital fissure of lip|congenital fissure of lip +C0008924|T019|ET|Q36|ICD10CM|harelip|harelip +C0008924|T019|ET|Q36|ICD10CM|labium leporinum|labium leporinum +C0392005|T019|PT|Q36.0|ICD10CM|Cleft lip, bilateral|Cleft lip, bilateral +C0392005|T019|AB|Q36.0|ICD10CM|Cleft lip, bilateral|Cleft lip, bilateral +C0392005|T019|PT|Q36.0|ICD10|Cleft lip, bilateral|Cleft lip, bilateral +C0432079|T019|PT|Q36.1|ICD10|Cleft lip, medial|Cleft lip, medial +C1850256|T019|AB|Q36.1|ICD10CM|Cleft lip, median|Cleft lip, median +C1850256|T019|PT|Q36.1|ICD10CM|Cleft lip, median|Cleft lip, median +C0008924|T019|ET|Q36.9|ICD10CM|Cleft lip NOS|Cleft lip NOS +C0392006|T019|PT|Q36.9|ICD10|Cleft lip, unilateral|Cleft lip, unilateral +C0392006|T019|PT|Q36.9|ICD10CM|Cleft lip, unilateral|Cleft lip, unilateral +C0392006|T019|AB|Q36.9|ICD10CM|Cleft lip, unilateral|Cleft lip, unilateral +C0158646|T019|ET|Q37|ICD10CM|cheilopalatoschisis|cheilopalatoschisis +C0158646|T019|HT|Q37|ICD10CM|Cleft palate with cleft lip|Cleft palate with cleft lip +C0158646|T019|AB|Q37|ICD10CM|Cleft palate with cleft lip|Cleft palate with cleft lip +C0158646|T019|HT|Q37|ICD10|Cleft palate with cleft lip|Cleft palate with cleft lip +C0451896|T019|PT|Q37.0|ICD10|Cleft hard palate with bilateral cleft lip|Cleft hard palate with bilateral cleft lip +C0451896|T019|PT|Q37.0|ICD10CM|Cleft hard palate with bilateral cleft lip|Cleft hard palate with bilateral cleft lip +C0451896|T019|AB|Q37.0|ICD10CM|Cleft hard palate with bilateral cleft lip|Cleft hard palate with bilateral cleft lip +C1398526|T019|ET|Q37.1|ICD10CM|Cleft hard palate with cleft lip NOS|Cleft hard palate with cleft lip NOS +C0451897|T019|PT|Q37.1|ICD10CM|Cleft hard palate with unilateral cleft lip|Cleft hard palate with unilateral cleft lip +C0451897|T019|AB|Q37.1|ICD10CM|Cleft hard palate with unilateral cleft lip|Cleft hard palate with unilateral cleft lip +C0451897|T019|PT|Q37.1|ICD10|Cleft hard palate with unilateral cleft lip|Cleft hard palate with unilateral cleft lip +C0495539|T019|PT|Q37.2|ICD10|Cleft soft palate with bilateral cleft lip|Cleft soft palate with bilateral cleft lip +C0495539|T019|PT|Q37.2|ICD10CM|Cleft soft palate with bilateral cleft lip|Cleft soft palate with bilateral cleft lip +C0495539|T019|AB|Q37.2|ICD10CM|Cleft soft palate with bilateral cleft lip|Cleft soft palate with bilateral cleft lip +C1398528|T019|ET|Q37.3|ICD10CM|Cleft soft palate with cleft lip NOS|Cleft soft palate with cleft lip NOS +C0495540|T019|PT|Q37.3|ICD10CM|Cleft soft palate with unilateral cleft lip|Cleft soft palate with unilateral cleft lip +C0495540|T019|AB|Q37.3|ICD10CM|Cleft soft palate with unilateral cleft lip|Cleft soft palate with unilateral cleft lip +C0495540|T019|PT|Q37.3|ICD10|Cleft soft palate with unilateral cleft lip|Cleft soft palate with unilateral cleft lip +C0495541|T019|PT|Q37.4|ICD10|Cleft hard and soft palate with bilateral cleft lip|Cleft hard and soft palate with bilateral cleft lip +C0495541|T019|PT|Q37.4|ICD10CM|Cleft hard and soft palate with bilateral cleft lip|Cleft hard and soft palate with bilateral cleft lip +C0495541|T019|AB|Q37.4|ICD10CM|Cleft hard and soft palate with bilateral cleft lip|Cleft hard and soft palate with bilateral cleft lip +C1398527|T019|ET|Q37.5|ICD10CM|Cleft hard and soft palate with cleft lip NOS|Cleft hard and soft palate with cleft lip NOS +C0495542|T019|PT|Q37.5|ICD10CM|Cleft hard and soft palate with unilateral cleft lip|Cleft hard and soft palate with unilateral cleft lip +C0495542|T019|AB|Q37.5|ICD10CM|Cleft hard and soft palate with unilateral cleft lip|Cleft hard and soft palate with unilateral cleft lip +C0495542|T019|PT|Q37.5|ICD10|Cleft hard and soft palate with unilateral cleft lip|Cleft hard and soft palate with unilateral cleft lip +C0478022|T019|PT|Q37.8|ICD10|Unspecified cleft palate with bilateral cleft lip|Unspecified cleft palate with bilateral cleft lip +C0478022|T019|PT|Q37.8|ICD10CM|Unspecified cleft palate with bilateral cleft lip|Unspecified cleft palate with bilateral cleft lip +C0478022|T019|AB|Q37.8|ICD10CM|Unspecified cleft palate with bilateral cleft lip|Unspecified cleft palate with bilateral cleft lip +C0158646|T019|ET|Q37.9|ICD10CM|Cleft palate with cleft lip NOS|Cleft palate with cleft lip NOS +C0495543|T019|PT|Q37.9|ICD10|Unspecified cleft palate with unilateral cleft lip|Unspecified cleft palate with unilateral cleft lip +C0495543|T019|PT|Q37.9|ICD10CM|Unspecified cleft palate with unilateral cleft lip|Unspecified cleft palate with unilateral cleft lip +C0495543|T019|AB|Q37.9|ICD10CM|Unspecified cleft palate with unilateral cleft lip|Unspecified cleft palate with unilateral cleft lip +C0495544|T019|AB|Q38|ICD10CM|Other congenital malformations of tongue, mouth and pharynx|Other congenital malformations of tongue, mouth and pharynx +C0495544|T019|HT|Q38|ICD10CM|Other congenital malformations of tongue, mouth and pharynx|Other congenital malformations of tongue, mouth and pharynx +C0495544|T019|HT|Q38|ICD10|Other congenital malformations of tongue, mouth and pharynx|Other congenital malformations of tongue, mouth and pharynx +C0158678|T019|HT|Q38-Q45|ICD10CM|Other congenital malformations of the digestive system (Q38-Q45)|Other congenital malformations of the digestive system (Q38-Q45) +C0158678|T019|HT|Q38-Q45.9|ICD10|Other congenital malformations of the digestive system|Other congenital malformations of the digestive system +C0158670|T019|ET|Q38.0|ICD10CM|Congenital fistula of lip|Congenital fistula of lip +C0431561|T019|ET|Q38.0|ICD10CM|Congenital malformation of lip NOS|Congenital malformation of lip NOS +C0495545|T019|PT|Q38.0|ICD10|Congenital malformations of lips, not elsewhere classified|Congenital malformations of lips, not elsewhere classified +C0495545|T019|PT|Q38.0|ICD10CM|Congenital malformations of lips, not elsewhere classified|Congenital malformations of lips, not elsewhere classified +C0495545|T019|AB|Q38.0|ICD10CM|Congenital malformations of lips, not elsewhere classified|Congenital malformations of lips, not elsewhere classified +C0175697|T047|ET|Q38.0|ICD10CM|Van der Woude's syndrome|Van der Woude's syndrome +C0152415|T019|PT|Q38.1|ICD10|Ankyloglossia|Ankyloglossia +C0152415|T019|PT|Q38.1|ICD10CM|Ankyloglossia|Ankyloglossia +C0152415|T019|AB|Q38.1|ICD10CM|Ankyloglossia|Ankyloglossia +C0152415|T019|ET|Q38.1|ICD10CM|Tongue tie|Tongue tie +C0009677|T019|ET|Q38.2|ICD10CM|Congenital hypertrophy of tongue|Congenital hypertrophy of tongue +C0009677|T019|PT|Q38.2|ICD10CM|Macroglossia|Macroglossia +C0009677|T019|AB|Q38.2|ICD10CM|Macroglossia|Macroglossia +C0009677|T019|PT|Q38.2|ICD10|Macroglossia|Macroglossia +C0158663|T019|ET|Q38.3|ICD10CM|Aglossia|Aglossia +C0266111|T019|ET|Q38.3|ICD10CM|Bifid tongue|Bifid tongue +C0158664|T019|ET|Q38.3|ICD10CM|Congenital adhesion of tongue|Congenital adhesion of tongue +C2349953|T019|ET|Q38.3|ICD10CM|Congenital fissure of tongue|Congenital fissure of tongue +C0158662|T019|ET|Q38.3|ICD10CM|Congenital malformation of tongue NOS|Congenital malformation of tongue NOS +C0266111|T019|ET|Q38.3|ICD10CM|Double tongue|Double tongue +C0025988|T019|ET|Q38.3|ICD10CM|Hypoglossia|Hypoglossia +C0025988|T019|ET|Q38.3|ICD10CM|Hypoplasia of tongue|Hypoplasia of tongue +C0025988|T019|ET|Q38.3|ICD10CM|Microglossia|Microglossia +C0478024|T019|PT|Q38.3|ICD10|Other congenital malformations of tongue|Other congenital malformations of tongue +C0478024|T019|PT|Q38.3|ICD10CM|Other congenital malformations of tongue|Other congenital malformations of tongue +C0478024|T019|AB|Q38.3|ICD10CM|Other congenital malformations of tongue|Other congenital malformations of tongue +C2910168|T019|ET|Q38.4|ICD10CM|Atresia of salivary glands and ducts|Atresia of salivary glands and ducts +C2910169|T019|ET|Q38.4|ICD10CM|Congenital absence of salivary glands and ducts|Congenital absence of salivary glands and ducts +C2910170|T019|ET|Q38.4|ICD10CM|Congenital accessory salivary glands and ducts|Congenital accessory salivary glands and ducts +C0158669|T019|ET|Q38.4|ICD10CM|Congenital fistula of salivary gland|Congenital fistula of salivary gland +C0431566|T019|PT|Q38.4|ICD10CM|Congenital malformations of salivary glands and ducts|Congenital malformations of salivary glands and ducts +C0431566|T019|AB|Q38.4|ICD10CM|Congenital malformations of salivary glands and ducts|Congenital malformations of salivary glands and ducts +C0431566|T019|PT|Q38.4|ICD10|Congenital malformations of salivary glands and ducts|Congenital malformations of salivary glands and ducts +C0266121|T019|ET|Q38.5|ICD10CM|Congenital absence of uvula|Congenital absence of uvula +C0240635|T019|ET|Q38.5|ICD10CM|Congenital high arched palate|Congenital high arched palate +C2910171|T019|ET|Q38.5|ICD10CM|Congenital malformation of palate NOS|Congenital malformation of palate NOS +C0869081|T019|PT|Q38.5|ICD10|Congenital malformations of palate, not elsewhere classified|Congenital malformations of palate, not elsewhere classified +C0869081|T019|PT|Q38.5|ICD10CM|Congenital malformations of palate, not elsewhere classified|Congenital malformations of palate, not elsewhere classified +C0869081|T019|AB|Q38.5|ICD10CM|Congenital malformations of palate, not elsewhere classified|Congenital malformations of palate, not elsewhere classified +C0026633|T019|ET|Q38.6|ICD10CM|Congenital malformation of mouth NOS|Congenital malformation of mouth NOS +C0478026|T019|PT|Q38.6|ICD10CM|Other congenital malformations of mouth|Other congenital malformations of mouth +C0478026|T019|AB|Q38.6|ICD10CM|Other congenital malformations of mouth|Other congenital malformations of mouth +C0478026|T019|PT|Q38.6|ICD10|Other congenital malformations of mouth|Other congenital malformations of mouth +C0392485|T019|ET|Q38.7|ICD10CM|Congenital diverticulum of pharynx|Congenital diverticulum of pharynx +C0392485|T019|AB|Q38.7|ICD10CM|Congenital pharyngeal pouch|Congenital pharyngeal pouch +C0392485|T019|PT|Q38.7|ICD10CM|Congenital pharyngeal pouch|Congenital pharyngeal pouch +C0392485|T019|PT|Q38.7|ICD10|Pharyngeal pouch|Pharyngeal pouch +C0266120|T019|ET|Q38.8|ICD10CM|Congenital malformation of pharynx NOS|Congenital malformation of pharynx NOS +C0266123|T019|ET|Q38.8|ICD10CM|Imperforate pharynx|Imperforate pharynx +C0478027|T019|PT|Q38.8|ICD10|Other congenital malformations of pharynx|Other congenital malformations of pharynx +C0478027|T019|PT|Q38.8|ICD10CM|Other congenital malformations of pharynx|Other congenital malformations of pharynx +C0478027|T019|AB|Q38.8|ICD10CM|Other congenital malformations of pharynx|Other congenital malformations of pharynx +C0266126|T019|AB|Q39|ICD10CM|Congenital malformations of esophagus|Congenital malformations of esophagus +C0266126|T019|HT|Q39|ICD10CM|Congenital malformations of esophagus|Congenital malformations of esophagus +C0266126|T019|HT|Q39|ICD10AE|Congenital malformations of esophagus|Congenital malformations of esophagus +C0266126|T019|HT|Q39|ICD10|Congenital malformations of oesophagus|Congenital malformations of oesophagus +C0014850|T019|ET|Q39.0|ICD10CM|Atresia of esophagus NOS|Atresia of esophagus NOS +C0495546|T019|PT|Q39.0|ICD10AE|Atresia of esophagus without fistula|Atresia of esophagus without fistula +C0495546|T019|PT|Q39.0|ICD10CM|Atresia of esophagus without fistula|Atresia of esophagus without fistula +C0495546|T019|AB|Q39.0|ICD10CM|Atresia of esophagus without fistula|Atresia of esophagus without fistula +C0495546|T019|PT|Q39.0|ICD10|Atresia of oesophagus without fistula|Atresia of oesophagus without fistula +C1397417|T019|ET|Q39.1|ICD10CM|Atresia of esophagus with broncho-esophageal fistula|Atresia of esophagus with broncho-esophageal fistula +C0341154|T047|PT|Q39.1|ICD10AE|Atresia of esophagus with tracheo-esophageal fistula|Atresia of esophagus with tracheo-esophageal fistula +C0341154|T047|PT|Q39.1|ICD10CM|Atresia of esophagus with tracheo-esophageal fistula|Atresia of esophagus with tracheo-esophageal fistula +C0341154|T047|AB|Q39.1|ICD10CM|Atresia of esophagus with tracheo-esophageal fistula|Atresia of esophagus with tracheo-esophageal fistula +C0341154|T047|PT|Q39.1|ICD10|Atresia of oesophagus with tracheo-oesophageal fistula|Atresia of oesophagus with tracheo-oesophageal fistula +C0266138|T019|ET|Q39.2|ICD10CM|Congenital tracheo-esophageal fistula NOS|Congenital tracheo-esophageal fistula NOS +C0495547|T019|PT|Q39.2|ICD10AE|Congenital tracheo-esophageal fistula without atresia|Congenital tracheo-esophageal fistula without atresia +C0495547|T019|PT|Q39.2|ICD10CM|Congenital tracheo-esophageal fistula without atresia|Congenital tracheo-esophageal fistula without atresia +C0495547|T019|AB|Q39.2|ICD10CM|Congenital tracheo-esophageal fistula without atresia|Congenital tracheo-esophageal fistula without atresia +C0495547|T019|PT|Q39.2|ICD10|Congenital tracheo-oesophageal fistula without atresia|Congenital tracheo-oesophageal fistula without atresia +C0495548|T019|PT|Q39.3|ICD10CM|Congenital stenosis and stricture of esophagus|Congenital stenosis and stricture of esophagus +C0495548|T019|AB|Q39.3|ICD10CM|Congenital stenosis and stricture of esophagus|Congenital stenosis and stricture of esophagus +C0495548|T019|PT|Q39.3|ICD10AE|Congenital stenosis and stricture of esophagus|Congenital stenosis and stricture of esophagus +C0495548|T019|PT|Q39.3|ICD10|Congenital stenosis and stricture of oesophagus|Congenital stenosis and stricture of oesophagus +C0267080|T190|PT|Q39.4|ICD10AE|Esophageal web|Esophageal web +C0392495|T019|PT|Q39.4|ICD10CM|Esophageal web|Esophageal web +C0392495|T019|AB|Q39.4|ICD10CM|Esophageal web|Esophageal web +C0392495|T019|PT|Q39.4|ICD10|Oesophageal web|Oesophageal web +C0266143|T019|ET|Q39.5|ICD10CM|Congenital cardiospasm|Congenital cardiospasm +C0266131|T019|PT|Q39.5|ICD10CM|Congenital dilatation of esophagus|Congenital dilatation of esophagus +C0266131|T019|AB|Q39.5|ICD10CM|Congenital dilatation of esophagus|Congenital dilatation of esophagus +C0266131|T019|PT|Q39.5|ICD10AE|Congenital dilatation of esophagus|Congenital dilatation of esophagus +C0266131|T019|PT|Q39.5|ICD10|Congenital dilatation of oesophagus|Congenital dilatation of oesophagus +C0266133|T019|PT|Q39.6|ICD10CM|Congenital diverticulum of esophagus|Congenital diverticulum of esophagus +C0266133|T019|AB|Q39.6|ICD10CM|Congenital diverticulum of esophagus|Congenital diverticulum of esophagus +C0266133|T019|ET|Q39.6|ICD10CM|Congenital esophageal pouch|Congenital esophageal pouch +C0266133|T019|PT|Q39.6|ICD10AE|Diverticulum of esophagus|Diverticulum of esophagus +C0266133|T019|PT|Q39.6|ICD10|Diverticulum of oesophagus|Diverticulum of oesophagus +C0266127|T019|ET|Q39.8|ICD10CM|Congenital absence of esophagus|Congenital absence of esophagus +C0266132|T019|ET|Q39.8|ICD10CM|Congenital displacement of esophagus|Congenital displacement of esophagus +C0266135|T019|ET|Q39.8|ICD10CM|Congenital duplication of esophagus|Congenital duplication of esophagus +C0478028|T019|PT|Q39.8|ICD10CM|Other congenital malformations of esophagus|Other congenital malformations of esophagus +C0478028|T019|AB|Q39.8|ICD10CM|Other congenital malformations of esophagus|Other congenital malformations of esophagus +C0478028|T019|PT|Q39.8|ICD10AE|Other congenital malformations of esophagus|Other congenital malformations of esophagus +C0478028|T019|PT|Q39.8|ICD10|Other congenital malformations of oesophagus|Other congenital malformations of oesophagus +C0266126|T019|PT|Q39.9|ICD10CM|Congenital malformation of esophagus, unspecified|Congenital malformation of esophagus, unspecified +C0266126|T019|AB|Q39.9|ICD10CM|Congenital malformation of esophagus, unspecified|Congenital malformation of esophagus, unspecified +C0266126|T019|PT|Q39.9|ICD10AE|Congenital malformation of esophagus, unspecified|Congenital malformation of esophagus, unspecified +C0266126|T019|PT|Q39.9|ICD10|Congenital malformation of oesophagus, unspecified|Congenital malformation of oesophagus, unspecified +C2910173|T019|HT|Q40|ICD10|Other congenital malformations of upper alimentary tract|Other congenital malformations of upper alimentary tract +C2910173|T019|AB|Q40|ICD10CM|Other congenital malformations of upper alimentary tract|Other congenital malformations of upper alimentary tract +C2910173|T019|HT|Q40|ICD10CM|Other congenital malformations of upper alimentary tract|Other congenital malformations of upper alimentary tract +C0700639|T019|PT|Q40.0|ICD10|Congenital hypertrophic pyloric stenosis|Congenital hypertrophic pyloric stenosis +C0700639|T019|PT|Q40.0|ICD10CM|Congenital hypertrophic pyloric stenosis|Congenital hypertrophic pyloric stenosis +C0700639|T019|AB|Q40.0|ICD10CM|Congenital hypertrophic pyloric stenosis|Congenital hypertrophic pyloric stenosis +C2910174|T046|ET|Q40.0|ICD10CM|Congenital or infantile constriction|Congenital or infantile constriction +C2910175|T046|ET|Q40.0|ICD10CM|Congenital or infantile hypertrophy|Congenital or infantile hypertrophy +C2910176|T046|ET|Q40.0|ICD10CM|Congenital or infantile spasm|Congenital or infantile spasm +C2910177|T046|ET|Q40.0|ICD10CM|Congenital or infantile stenosis|Congenital or infantile stenosis +C2910178|T046|ET|Q40.0|ICD10CM|Congenital or infantile stricture|Congenital or infantile stricture +C0158674|T019|ET|Q40.1|ICD10CM|Congenital displacement of cardia through esophageal hiatus|Congenital displacement of cardia through esophageal hiatus +C0158674|T019|PT|Q40.1|ICD10CM|Congenital hiatus hernia|Congenital hiatus hernia +C0158674|T019|AB|Q40.1|ICD10CM|Congenital hiatus hernia|Congenital hiatus hernia +C0158674|T019|PT|Q40.1|ICD10|Congenital hiatus hernia|Congenital hiatus hernia +C0266146|T019|ET|Q40.2|ICD10CM|Congenital displacement of stomach|Congenital displacement of stomach +C0266147|T019|ET|Q40.2|ICD10CM|Congenital diverticulum of stomach|Congenital diverticulum of stomach +C0266148|T019|ET|Q40.2|ICD10CM|Congenital duplication of stomach|Congenital duplication of stomach +C0266145|T019|ET|Q40.2|ICD10CM|Congenital hourglass stomach|Congenital hourglass stomach +C0266149|T019|ET|Q40.2|ICD10CM|Megalogastria|Megalogastria +C0266150|T019|ET|Q40.2|ICD10CM|Microgastria|Microgastria +C0478029|T019|PT|Q40.2|ICD10|Other specified congenital malformations of stomach|Other specified congenital malformations of stomach +C0478029|T019|PT|Q40.2|ICD10CM|Other specified congenital malformations of stomach|Other specified congenital malformations of stomach +C0478029|T019|AB|Q40.2|ICD10CM|Other specified congenital malformations of stomach|Other specified congenital malformations of stomach +C0266142|T019|PT|Q40.3|ICD10CM|Congenital malformation of stomach, unspecified|Congenital malformation of stomach, unspecified +C0266142|T019|AB|Q40.3|ICD10CM|Congenital malformation of stomach, unspecified|Congenital malformation of stomach, unspecified +C0266142|T019|PT|Q40.3|ICD10|Congenital malformation of stomach, unspecified|Congenital malformation of stomach, unspecified +C0266021|T019|AB|Q40.8|ICD10CM|Oth congenital malformations of upper alimentary tract|Oth congenital malformations of upper alimentary tract +C0266021|T019|PT|Q40.8|ICD10CM|Other specified congenital malformations of upper alimentary tract|Other specified congenital malformations of upper alimentary tract +C0266021|T019|PT|Q40.8|ICD10|Other specified congenital malformations of upper alimentary tract|Other specified congenital malformations of upper alimentary tract +C2004465|T019|ET|Q40.9|ICD10CM|Congenital anomaly of upper alimentary tract|Congenital anomaly of upper alimentary tract +C2004465|T019|ET|Q40.9|ICD10CM|Congenital deformity of upper alimentary tract|Congenital deformity of upper alimentary tract +C2004465|T019|AB|Q40.9|ICD10CM|Congenital malformation of upper alimentary tract, unsp|Congenital malformation of upper alimentary tract, unsp +C2004465|T019|PT|Q40.9|ICD10CM|Congenital malformation of upper alimentary tract, unspecified|Congenital malformation of upper alimentary tract, unspecified +C2004465|T019|PT|Q40.9|ICD10|Congenital malformation of upper alimentary tract, unspecified|Congenital malformation of upper alimentary tract, unspecified +C0345188|T019|HT|Q41|ICD10|Congenital absence, atresia and stenosis of small intestine|Congenital absence, atresia and stenosis of small intestine +C0345188|T019|HT|Q41|ICD10CM|Congenital absence, atresia and stenosis of small intestine|Congenital absence, atresia and stenosis of small intestine +C0345188|T019|AB|Q41|ICD10CM|Congenital absence, atresia and stenosis of small intestine|Congenital absence, atresia and stenosis of small intestine +C4290272|T019|ET|Q41|ICD10CM|congenital obstruction, occlusion or stricture of small intestine or intestine NOS|congenital obstruction, occlusion or stricture of small intestine or intestine NOS +C0495553|T019|PT|Q41.0|ICD10CM|Congenital absence, atresia and stenosis of duodenum|Congenital absence, atresia and stenosis of duodenum +C0495553|T019|AB|Q41.0|ICD10CM|Congenital absence, atresia and stenosis of duodenum|Congenital absence, atresia and stenosis of duodenum +C0495553|T019|PT|Q41.0|ICD10|Congenital absence, atresia and stenosis of duodenum|Congenital absence, atresia and stenosis of duodenum +C0021828|T047|ET|Q41.1|ICD10CM|Apple peel syndrome|Apple peel syndrome +C0495554|T019|PT|Q41.1|ICD10|Congenital absence, atresia and stenosis of jejunum|Congenital absence, atresia and stenosis of jejunum +C0495554|T019|PT|Q41.1|ICD10CM|Congenital absence, atresia and stenosis of jejunum|Congenital absence, atresia and stenosis of jejunum +C0495554|T019|AB|Q41.1|ICD10CM|Congenital absence, atresia and stenosis of jejunum|Congenital absence, atresia and stenosis of jejunum +C0266175|T019|ET|Q41.1|ICD10CM|Imperforate jejunum|Imperforate jejunum +C0495555|T019|PT|Q41.2|ICD10CM|Congenital absence, atresia and stenosis of ileum|Congenital absence, atresia and stenosis of ileum +C0495555|T019|AB|Q41.2|ICD10CM|Congenital absence, atresia and stenosis of ileum|Congenital absence, atresia and stenosis of ileum +C0495555|T019|PT|Q41.2|ICD10|Congenital absence, atresia and stenosis of ileum|Congenital absence, atresia and stenosis of ileum +C0478031|T019|PT|Q41.8|ICD10|Congenital absence, atresia and stenosis of other specified parts of small intestine|Congenital absence, atresia and stenosis of other specified parts of small intestine +C0478031|T019|PT|Q41.8|ICD10CM|Congenital absence, atresia and stenosis of other specified parts of small intestine|Congenital absence, atresia and stenosis of other specified parts of small intestine +C0478031|T019|AB|Q41.8|ICD10CM|Congenital absence, atresia and stenosis of prt sm int|Congenital absence, atresia and stenosis of prt sm int +C0345188|T019|AB|Q41.9|ICD10CM|Congen absence, atresia and stenosis of sm int, part unsp|Congen absence, atresia and stenosis of sm int, part unsp +C2910180|T019|ET|Q41.9|ICD10CM|Congenital absence, atresia and stenosis of intestine NOS|Congenital absence, atresia and stenosis of intestine NOS +C0345188|T019|PT|Q41.9|ICD10CM|Congenital absence, atresia and stenosis of small intestine, part unspecified|Congenital absence, atresia and stenosis of small intestine, part unspecified +C0345188|T019|PT|Q41.9|ICD10|Congenital absence, atresia and stenosis of small intestine, part unspecified|Congenital absence, atresia and stenosis of small intestine, part unspecified +C0345201|T019|HT|Q42|ICD10|Congenital absence, atresia and stenosis of large intestine|Congenital absence, atresia and stenosis of large intestine +C0345201|T019|AB|Q42|ICD10CM|Congenital absence, atresia and stenosis of large intestine|Congenital absence, atresia and stenosis of large intestine +C0345201|T019|HT|Q42|ICD10CM|Congenital absence, atresia and stenosis of large intestine|Congenital absence, atresia and stenosis of large intestine +C4290273|T019|ET|Q42|ICD10CM|congenital obstruction, occlusion and stricture of large intestine|congenital obstruction, occlusion and stricture of large intestine +C0495556|T019|AB|Q42.0|ICD10CM|Congenital absence, atresia and stenosis of rectum w fistula|Congenital absence, atresia and stenosis of rectum w fistula +C0495556|T019|PT|Q42.0|ICD10CM|Congenital absence, atresia and stenosis of rectum with fistula|Congenital absence, atresia and stenosis of rectum with fistula +C0495556|T019|PT|Q42.0|ICD10|Congenital absence, atresia and stenosis of rectum with fistula|Congenital absence, atresia and stenosis of rectum with fistula +C0495557|T019|AB|Q42.1|ICD10CM|Congen absence, atresia and stenosis of rectum w/o fistula|Congen absence, atresia and stenosis of rectum w/o fistula +C0495557|T019|PT|Q42.1|ICD10CM|Congenital absence, atresia and stenosis of rectum without fistula|Congenital absence, atresia and stenosis of rectum without fistula +C0495557|T019|PT|Q42.1|ICD10|Congenital absence, atresia and stenosis of rectum without fistula|Congenital absence, atresia and stenosis of rectum without fistula +C0549173|T019|ET|Q42.1|ICD10CM|Imperforate rectum|Imperforate rectum +C0495558|T019|AB|Q42.2|ICD10CM|Congenital absence, atresia and stenosis of anus w fistula|Congenital absence, atresia and stenosis of anus w fistula +C0495558|T019|PT|Q42.2|ICD10CM|Congenital absence, atresia and stenosis of anus with fistula|Congenital absence, atresia and stenosis of anus with fistula +C0495558|T019|PT|Q42.2|ICD10|Congenital absence, atresia and stenosis of anus with fistula|Congenital absence, atresia and stenosis of anus with fistula +C0495559|T019|AB|Q42.3|ICD10CM|Congenital absence, atresia and stenosis of anus w/o fistula|Congenital absence, atresia and stenosis of anus w/o fistula +C0495559|T019|PT|Q42.3|ICD10CM|Congenital absence, atresia and stenosis of anus without fistula|Congenital absence, atresia and stenosis of anus without fistula +C0495559|T019|PT|Q42.3|ICD10|Congenital absence, atresia and stenosis of anus without fistula|Congenital absence, atresia and stenosis of anus without fistula +C0003466|T019|ET|Q42.3|ICD10CM|Imperforate anus|Imperforate anus +C0478032|T019|PT|Q42.8|ICD10CM|Congenital absence, atresia and stenosis of other parts of large intestine|Congenital absence, atresia and stenosis of other parts of large intestine +C0478032|T019|PT|Q42.8|ICD10|Congenital absence, atresia and stenosis of other parts of large intestine|Congenital absence, atresia and stenosis of other parts of large intestine +C0478032|T019|AB|Q42.8|ICD10CM|Congenital absence, atresia and stenosis of prt lg int|Congenital absence, atresia and stenosis of prt lg int +C0345201|T019|AB|Q42.9|ICD10CM|Congen absence, atresia and stenosis of lg int, part unsp|Congen absence, atresia and stenosis of lg int, part unsp +C0345201|T019|PT|Q42.9|ICD10CM|Congenital absence, atresia and stenosis of large intestine, part unspecified|Congenital absence, atresia and stenosis of large intestine, part unspecified +C0345201|T019|PT|Q42.9|ICD10|Congenital absence, atresia and stenosis of large intestine, part unspecified|Congenital absence, atresia and stenosis of large intestine, part unspecified +C0555219|T019|HT|Q43|ICD10|Other congenital malformations of intestine|Other congenital malformations of intestine +C0555219|T019|AB|Q43|ICD10CM|Other congenital malformations of intestine|Other congenital malformations of intestine +C0555219|T019|HT|Q43|ICD10CM|Other congenital malformations of intestine|Other congenital malformations of intestine +C0025037|T019|PT|Q43.0|ICD10|Meckel's diverticulum|Meckel's diverticulum +C2910182|T019|AB|Q43.0|ICD10CM|Meckel's diverticulum (displaced) (hypertrophic)|Meckel's diverticulum (displaced) (hypertrophic) +C2910182|T019|PT|Q43.0|ICD10CM|Meckel's diverticulum (displaced) (hypertrophic)|Meckel's diverticulum (displaced) (hypertrophic) +C0025037|T019|ET|Q43.0|ICD10CM|Persistent omphalomesenteric duct|Persistent omphalomesenteric duct +C0025037|T019|ET|Q43.0|ICD10CM|Persistent vitelline duct|Persistent vitelline duct +C0019569|T047|ET|Q43.1|ICD10CM|Aganglionosis|Aganglionosis +C0019569|T047|ET|Q43.1|ICD10CM|Congenital (aganglionic) megacolon|Congenital (aganglionic) megacolon +C0019569|T047|PT|Q43.1|ICD10CM|Hirschsprung's disease|Hirschsprung's disease +C0019569|T047|AB|Q43.1|ICD10CM|Hirschsprung's disease|Hirschsprung's disease +C0019569|T047|PT|Q43.1|ICD10|Hirschsprung's disease|Hirschsprung's disease +C0266209|T019|ET|Q43.2|ICD10CM|Congenital dilatation of colon|Congenital dilatation of colon +C0478033|T019|PT|Q43.2|ICD10CM|Other congenital functional disorders of colon|Other congenital functional disorders of colon +C0478033|T019|AB|Q43.2|ICD10CM|Other congenital functional disorders of colon|Other congenital functional disorders of colon +C0478033|T019|PT|Q43.2|ICD10|Other congenital functional disorders of colon|Other congenital functional disorders of colon +C0158679|T019|PT|Q43.3|ICD10CM|Congenital malformations of intestinal fixation|Congenital malformations of intestinal fixation +C0158679|T019|AB|Q43.3|ICD10CM|Congenital malformations of intestinal fixation|Congenital malformations of intestinal fixation +C0158679|T019|PT|Q43.3|ICD10|Congenital malformations of intestinal fixation|Congenital malformations of intestinal fixation +C2910183|T046|ET|Q43.3|ICD10CM|Congenital omental, anomalous adhesions [bands]|Congenital omental, anomalous adhesions [bands] +C2910184|T046|ET|Q43.3|ICD10CM|Congenital peritoneal adhesions [bands]|Congenital peritoneal adhesions [bands] +C2910185|T019|ET|Q43.3|ICD10CM|Incomplete rotation of cecum and colon|Incomplete rotation of cecum and colon +C2910186|T019|ET|Q43.3|ICD10CM|Insufficient rotation of cecum and colon|Insufficient rotation of cecum and colon +C0266234|T019|ET|Q43.3|ICD10CM|Jackson's membrane|Jackson's membrane +C0266196|T019|ET|Q43.3|ICD10CM|Malrotation of colon|Malrotation of colon +C2910187|T047|ET|Q43.3|ICD10CM|Rotation failure of cecum and colon|Rotation failure of cecum and colon +C0266235|T019|ET|Q43.3|ICD10CM|Universal mesentery|Universal mesentery +C0266235|T047|ET|Q43.3|ICD10CM|Universal mesentery|Universal mesentery +C0266166|T019|PT|Q43.4|ICD10CM|Duplication of intestine|Duplication of intestine +C0266166|T019|AB|Q43.4|ICD10CM|Duplication of intestine|Duplication of intestine +C0266166|T019|PT|Q43.4|ICD10|Duplication of intestine|Duplication of intestine +C0266231|T019|PT|Q43.5|ICD10|Ectopic anus|Ectopic anus +C0266231|T019|PT|Q43.5|ICD10CM|Ectopic anus|Ectopic anus +C0266231|T019|AB|Q43.5|ICD10CM|Ectopic anus|Ectopic anus +C0345279|T019|PT|Q43.6|ICD10CM|Congenital fistula of rectum and anus|Congenital fistula of rectum and anus +C0345279|T019|AB|Q43.6|ICD10CM|Congenital fistula of rectum and anus|Congenital fistula of rectum and anus +C0345279|T019|PT|Q43.6|ICD10|Congenital fistula of rectum and anus|Congenital fistula of rectum and anus +C0266225|T019|PT|Q43.7|ICD10|Persistent cloaca|Persistent cloaca +C0266225|T019|PT|Q43.7|ICD10CM|Persistent cloaca|Persistent cloaca +C0266225|T019|AB|Q43.7|ICD10CM|Persistent cloaca|Persistent cloaca +C0345261|T019|ET|Q43.8|ICD10CM|Congenital blind loop syndrome|Congenital blind loop syndrome +C2910188|T019|ET|Q43.8|ICD10CM|Congenital diverticulitis, colon|Congenital diverticulitis, colon +C0685800|T019|ET|Q43.8|ICD10CM|Congenital diverticulum, intestine|Congenital diverticulum, intestine +C0266198|T019|ET|Q43.8|ICD10CM|Dolichocolon|Dolichocolon +C0266206|T019|ET|Q43.8|ICD10CM|Megaloappendix|Megaloappendix +C0266177|T019|ET|Q43.8|ICD10CM|Megaloduodenum|Megaloduodenum +C0266200|T019|ET|Q43.8|ICD10CM|Microcolon|Microcolon +C0478034|T019|PT|Q43.8|ICD10|Other specified congenital malformations of intestine|Other specified congenital malformations of intestine +C0478034|T019|PT|Q43.8|ICD10CM|Other specified congenital malformations of intestine|Other specified congenital malformations of intestine +C0478034|T019|AB|Q43.8|ICD10CM|Other specified congenital malformations of intestine|Other specified congenital malformations of intestine +C0266207|T019|ET|Q43.8|ICD10CM|Transposition of appendix|Transposition of appendix +C0266201|T019|ET|Q43.8|ICD10CM|Transposition of colon|Transposition of colon +C0192798|T019|ET|Q43.8|ICD10CM|Transposition of intestine|Transposition of intestine +C1290601|T019|PT|Q43.9|ICD10|Congenital malformation of intestine, unspecified|Congenital malformation of intestine, unspecified +C1290601|T019|PT|Q43.9|ICD10CM|Congenital malformation of intestine, unspecified|Congenital malformation of intestine, unspecified +C1290601|T019|AB|Q43.9|ICD10CM|Congenital malformation of intestine, unspecified|Congenital malformation of intestine, unspecified +C1456424|T019|AB|Q44|ICD10CM|Congenital malform of gallbladder, bile ducts and liver|Congenital malform of gallbladder, bile ducts and liver +C1456424|T019|HT|Q44|ICD10CM|Congenital malformations of gallbladder, bile ducts and liver|Congenital malformations of gallbladder, bile ducts and liver +C1456424|T019|HT|Q44|ICD10|Congenital malformations of gallbladder, bile ducts and liver|Congenital malformations of gallbladder, bile ducts and liver +C0495561|T019|PT|Q44.0|ICD10CM|Agenesis, aplasia and hypoplasia of gallbladder|Agenesis, aplasia and hypoplasia of gallbladder +C0495561|T019|AB|Q44.0|ICD10CM|Agenesis, aplasia and hypoplasia of gallbladder|Agenesis, aplasia and hypoplasia of gallbladder +C0495561|T019|PT|Q44.0|ICD10|Agenesis, aplasia and hypoplasia of gallbladder|Agenesis, aplasia and hypoplasia of gallbladder +C0266251|T019|ET|Q44.0|ICD10CM|Congenital absence of gallbladder|Congenital absence of gallbladder +C2910189|T019|ET|Q44.1|ICD10CM|Congenital malformation of gallbladder NOS|Congenital malformation of gallbladder NOS +C0266255|T019|ET|Q44.1|ICD10CM|Intrahepatic gallbladder|Intrahepatic gallbladder +C0478035|T019|PT|Q44.1|ICD10|Other congenital malformations of gallbladder|Other congenital malformations of gallbladder +C0478035|T019|PT|Q44.1|ICD10CM|Other congenital malformations of gallbladder|Other congenital malformations of gallbladder +C0478035|T019|AB|Q44.1|ICD10CM|Other congenital malformations of gallbladder|Other congenital malformations of gallbladder +C0005411|T019|PT|Q44.2|ICD10CM|Atresia of bile ducts|Atresia of bile ducts +C0005411|T019|AB|Q44.2|ICD10CM|Atresia of bile ducts|Atresia of bile ducts +C0005411|T019|PT|Q44.2|ICD10|Atresia of bile ducts|Atresia of bile ducts +C0266245|T019|PT|Q44.3|ICD10|Congenital stenosis and stricture of bile ducts|Congenital stenosis and stricture of bile ducts +C0266245|T019|PT|Q44.3|ICD10CM|Congenital stenosis and stricture of bile ducts|Congenital stenosis and stricture of bile ducts +C0266245|T019|AB|Q44.3|ICD10CM|Congenital stenosis and stricture of bile ducts|Congenital stenosis and stricture of bile ducts +C0008340|T019|PT|Q44.4|ICD10|Choledochal cyst|Choledochal cyst +C0008340|T019|PT|Q44.4|ICD10CM|Choledochal cyst|Choledochal cyst +C0008340|T019|AB|Q44.4|ICD10CM|Choledochal cyst|Choledochal cyst +C0266260|T019|ET|Q44.5|ICD10CM|Accessory hepatic duct|Accessory hepatic duct +C0266247|T019|ET|Q44.5|ICD10CM|Biliary duct duplication|Biliary duct duplication +C2910190|T019|ET|Q44.5|ICD10CM|Congenital malformation of bile duct NOS|Congenital malformation of bile duct NOS +C0266248|T019|ET|Q44.5|ICD10CM|Cystic duct duplication|Cystic duct duplication +C0478036|T019|PT|Q44.5|ICD10CM|Other congenital malformations of bile ducts|Other congenital malformations of bile ducts +C0478036|T019|AB|Q44.5|ICD10CM|Other congenital malformations of bile ducts|Other congenital malformations of bile ducts +C0478036|T019|PT|Q44.5|ICD10|Other congenital malformations of bile ducts|Other congenital malformations of bile ducts +C4551631|T047|PT|Q44.6|ICD10|Cystic disease of liver|Cystic disease of liver +C4551631|T047|PT|Q44.6|ICD10CM|Cystic disease of liver|Cystic disease of liver +C4551631|T047|AB|Q44.6|ICD10CM|Cystic disease of liver|Cystic disease of liver +C4551631|T047|ET|Q44.6|ICD10CM|Fibrocystic disease of liver|Fibrocystic disease of liver +C2939133|T019|ET|Q44.7|ICD10CM|Accessory liver|Accessory liver +C0085280|T019|ET|Q44.7|ICD10CM|Alagille's syndrome|Alagille's syndrome +C0266258|T019|ET|Q44.7|ICD10CM|Congenital absence of liver|Congenital absence of liver +C0266263|T019|ET|Q44.7|ICD10CM|Congenital hepatomegaly|Congenital hepatomegaly +C0266257|T019|ET|Q44.7|ICD10CM|Congenital malformation of liver NOS|Congenital malformation of liver NOS +C0478037|T019|PT|Q44.7|ICD10CM|Other congenital malformations of liver|Other congenital malformations of liver +C0478037|T019|AB|Q44.7|ICD10CM|Other congenital malformations of liver|Other congenital malformations of liver +C0478037|T019|PT|Q44.7|ICD10|Other congenital malformations of liver|Other congenital malformations of liver +C0158678|T019|AB|Q45|ICD10CM|Other congenital malformations of digestive system|Other congenital malformations of digestive system +C0158678|T019|HT|Q45|ICD10CM|Other congenital malformations of digestive system|Other congenital malformations of digestive system +C0158678|T019|HT|Q45|ICD10|Other congenital malformations of digestive system|Other congenital malformations of digestive system +C0495562|T019|PT|Q45.0|ICD10|Agenesis, aplasia and hypoplasia of pancreas|Agenesis, aplasia and hypoplasia of pancreas +C0495562|T019|PT|Q45.0|ICD10CM|Agenesis, aplasia and hypoplasia of pancreas|Agenesis, aplasia and hypoplasia of pancreas +C0495562|T019|AB|Q45.0|ICD10CM|Agenesis, aplasia and hypoplasia of pancreas|Agenesis, aplasia and hypoplasia of pancreas +C0266266|T019|ET|Q45.0|ICD10CM|Congenital absence of pancreas|Congenital absence of pancreas +C0149955|T019|PT|Q45.1|ICD10|Annular pancreas|Annular pancreas +C0149955|T019|PT|Q45.1|ICD10CM|Annular pancreas|Annular pancreas +C0149955|T019|AB|Q45.1|ICD10CM|Annular pancreas|Annular pancreas +C0341480|T019|PT|Q45.2|ICD10CM|Congenital pancreatic cyst|Congenital pancreatic cyst +C0341480|T019|AB|Q45.2|ICD10CM|Congenital pancreatic cyst|Congenital pancreatic cyst +C0341480|T019|PT|Q45.2|ICD10|Congenital pancreatic cyst|Congenital pancreatic cyst +C0266268|T019|ET|Q45.3|ICD10CM|Accessory pancreas|Accessory pancreas +C2910191|T019|ET|Q45.3|ICD10CM|Congenital malformation of pancreas or pancreatic duct NOS|Congenital malformation of pancreas or pancreatic duct NOS +C0478038|T019|AB|Q45.3|ICD10CM|Oth congenital malformations of pancreas and pancreatic duct|Oth congenital malformations of pancreas and pancreatic duct +C0478038|T019|PT|Q45.3|ICD10CM|Other congenital malformations of pancreas and pancreatic duct|Other congenital malformations of pancreas and pancreatic duct +C0478038|T019|PT|Q45.3|ICD10|Other congenital malformations of pancreas and pancreatic duct|Other congenital malformations of pancreas and pancreatic duct +C2910192|T019|ET|Q45.8|ICD10CM|Absence (complete) (partial) of alimentary tract NOS|Absence (complete) (partial) of alimentary tract NOS +C0431548|T019|ET|Q45.8|ICD10CM|Duplication of digestive system|Duplication of digestive system +C0266020|T019|ET|Q45.8|ICD10CM|Malposition, congenital of digestive system|Malposition, congenital of digestive system +C0478039|T019|PT|Q45.8|ICD10CM|Other specified congenital malformations of digestive system|Other specified congenital malformations of digestive system +C0478039|T019|AB|Q45.8|ICD10CM|Other specified congenital malformations of digestive system|Other specified congenital malformations of digestive system +C0478039|T019|PT|Q45.8|ICD10|Other specified congenital malformations of digestive system|Other specified congenital malformations of digestive system +C0266015|T019|ET|Q45.9|ICD10CM|Congenital anomaly of digestive system|Congenital anomaly of digestive system +C0266015|T019|ET|Q45.9|ICD10CM|Congenital deformity of digestive system|Congenital deformity of digestive system +C0266015|T019|PT|Q45.9|ICD10CM|Congenital malformation of digestive system, unspecified|Congenital malformation of digestive system, unspecified +C0266015|T019|AB|Q45.9|ICD10CM|Congenital malformation of digestive system, unspecified|Congenital malformation of digestive system, unspecified +C0266015|T019|PT|Q45.9|ICD10|Congenital malformation of digestive system, unspecified|Congenital malformation of digestive system, unspecified +C0495564|T019|AB|Q50|ICD10CM|Congen malform of ovaries, fallopian tubes & broad ligaments|Congen malform of ovaries, fallopian tubes & broad ligaments +C0495564|T019|HT|Q50|ICD10CM|Congenital malformations of ovaries, fallopian tubes and broad ligaments|Congenital malformations of ovaries, fallopian tubes and broad ligaments +C0495564|T019|HT|Q50|ICD10|Congenital malformations of ovaries, fallopian tubes and broad ligaments|Congenital malformations of ovaries, fallopian tubes and broad ligaments +C0158687|T019|HT|Q50-Q56|ICD10CM|Congenital malformations of genital organs (Q50-Q56)|Congenital malformations of genital organs (Q50-Q56) +C0158687|T019|HT|Q50-Q56.9|ICD10|Congenital malformations of genital organs|Congenital malformations of genital organs +C0266368|T019|PT|Q50.0|ICD10|Congenital absence of ovary|Congenital absence of ovary +C0266368|T019|HT|Q50.0|ICD10CM|Congenital absence of ovary|Congenital absence of ovary +C0266368|T019|AB|Q50.0|ICD10CM|Congenital absence of ovary|Congenital absence of ovary +C2910193|T019|AB|Q50.01|ICD10CM|Congenital absence of ovary, unilateral|Congenital absence of ovary, unilateral +C2910193|T019|PT|Q50.01|ICD10CM|Congenital absence of ovary, unilateral|Congenital absence of ovary, unilateral +C2910194|T019|PT|Q50.02|ICD10CM|Congenital absence of ovary, bilateral|Congenital absence of ovary, bilateral +C2910194|T019|AB|Q50.02|ICD10CM|Congenital absence of ovary, bilateral|Congenital absence of ovary, bilateral +C0345299|T019|PT|Q50.1|ICD10CM|Developmental ovarian cyst|Developmental ovarian cyst +C0345299|T019|AB|Q50.1|ICD10CM|Developmental ovarian cyst|Developmental ovarian cyst +C0345299|T019|PT|Q50.1|ICD10|Developmental ovarian cyst|Developmental ovarian cyst +C0345300|T019|PT|Q50.2|ICD10|Congenital torsion of ovary|Congenital torsion of ovary +C0345300|T019|PT|Q50.2|ICD10CM|Congenital torsion of ovary|Congenital torsion of ovary +C0345300|T019|AB|Q50.2|ICD10CM|Congenital torsion of ovary|Congenital torsion of ovary +C0478042|T019|PT|Q50.3|ICD10|Other congenital malformations of ovary|Other congenital malformations of ovary +C0478042|T019|HT|Q50.3|ICD10CM|Other congenital malformations of ovary|Other congenital malformations of ovary +C0478042|T019|AB|Q50.3|ICD10CM|Other congenital malformations of ovary|Other congenital malformations of ovary +C0266369|T019|PT|Q50.31|ICD10CM|Accessory ovary|Accessory ovary +C0266369|T019|AB|Q50.31|ICD10CM|Accessory ovary|Accessory ovary +C2910378|T047|ET|Q50.32|ICD10CM|46, XX with streak gonads|46, XX with streak gonads +C0266371|T019|PT|Q50.32|ICD10CM|Ovarian streak|Ovarian streak +C0266371|T019|AB|Q50.32|ICD10CM|Ovarian streak|Ovarian streak +C0158688|T019|ET|Q50.39|ICD10CM|Congenital malformation of ovary NOS|Congenital malformation of ovary NOS +C0478042|T019|AB|Q50.39|ICD10CM|Other congenital malformation of ovary|Other congenital malformation of ovary +C0478042|T019|PT|Q50.39|ICD10CM|Other congenital malformation of ovary|Other congenital malformation of ovary +C0431631|T019|PT|Q50.4|ICD10CM|Embryonic cyst of fallopian tube|Embryonic cyst of fallopian tube +C0431631|T019|AB|Q50.4|ICD10CM|Embryonic cyst of fallopian tube|Embryonic cyst of fallopian tube +C0431631|T019|PT|Q50.4|ICD10|Embryonic cyst of fallopian tube|Embryonic cyst of fallopian tube +C0030584|T047|ET|Q50.4|ICD10CM|Fimbrial cyst|Fimbrial cyst +C0345303|T019|PT|Q50.5|ICD10CM|Embryonic cyst of broad ligament|Embryonic cyst of broad ligament +C0345303|T019|AB|Q50.5|ICD10CM|Embryonic cyst of broad ligament|Embryonic cyst of broad ligament +C0345303|T019|PT|Q50.5|ICD10|Embryonic cyst of broad ligament|Embryonic cyst of broad ligament +C0266381|T019|ET|Q50.5|ICD10CM|Epoophoron cyst|Epoophoron cyst +C0030584|T047|ET|Q50.5|ICD10CM|Parovarian cyst|Parovarian cyst +C2910195|T019|ET|Q50.6|ICD10CM|Absence of fallopian tube and broad ligament|Absence of fallopian tube and broad ligament +C2910196|T019|ET|Q50.6|ICD10CM|Accessory fallopian tube and broad ligament|Accessory fallopian tube and broad ligament +C2910197|T019|ET|Q50.6|ICD10CM|Atresia of fallopian tube and broad ligament|Atresia of fallopian tube and broad ligament +C2910198|T019|ET|Q50.6|ICD10CM|Congenital malformation of fallopian tube or broad ligament NOS|Congenital malformation of fallopian tube or broad ligament NOS +C0478043|T019|AB|Q50.6|ICD10CM|Oth congenital malformations of fallop and broad ligament|Oth congenital malformations of fallop and broad ligament +C0478043|T019|PT|Q50.6|ICD10CM|Other congenital malformations of fallopian tube and broad ligament|Other congenital malformations of fallopian tube and broad ligament +C0478043|T019|PT|Q50.6|ICD10|Other congenital malformations of fallopian tube and broad ligament|Other congenital malformations of fallopian tube and broad ligament +C0431633|T019|HT|Q51|ICD10|Congenital malformations of uterus and cervix|Congenital malformations of uterus and cervix +C0431633|T019|AB|Q51|ICD10CM|Congenital malformations of uterus and cervix|Congenital malformations of uterus and cervix +C0431633|T019|HT|Q51|ICD10CM|Congenital malformations of uterus and cervix|Congenital malformations of uterus and cervix +C0495565|T019|PT|Q51.0|ICD10|Agenesis and aplasia of uterus|Agenesis and aplasia of uterus +C0495565|T019|PT|Q51.0|ICD10CM|Agenesis and aplasia of uterus|Agenesis and aplasia of uterus +C0495565|T019|AB|Q51.0|ICD10CM|Agenesis and aplasia of uterus|Agenesis and aplasia of uterus +C0266384|T019|ET|Q51.0|ICD10CM|Congenital absence of uterus|Congenital absence of uterus +C0431639|T019|HT|Q51.1|ICD10CM|Doubling of uterus with doubling of cervix and vagina|Doubling of uterus with doubling of cervix and vagina +C0431639|T019|AB|Q51.1|ICD10CM|Doubling of uterus with doubling of cervix and vagina|Doubling of uterus with doubling of cervix and vagina +C0431639|T019|PT|Q51.1|ICD10|Doubling of uterus with doubling of cervix and vagina|Doubling of uterus with doubling of cervix and vagina +C2910199|T019|AB|Q51.10|ICD10CM|Doubling of uterus w doubling of cervix and vagina w/o obst|Doubling of uterus w doubling of cervix and vagina w/o obst +C0431639|T019|ET|Q51.10|ICD10CM|Doubling of uterus with doubling of cervix and vagina NOS|Doubling of uterus with doubling of cervix and vagina NOS +C2910199|T019|PT|Q51.10|ICD10CM|Doubling of uterus with doubling of cervix and vagina without obstruction|Doubling of uterus with doubling of cervix and vagina without obstruction +C3649640|T019|AB|Q51.11|ICD10CM|Doubling of uterus w doubling of cervix and vagina w obst|Doubling of uterus w doubling of cervix and vagina w obst +C3649640|T019|PT|Q51.11|ICD10CM|Doubling of uterus with doubling of cervix and vagina with obstruction|Doubling of uterus with doubling of cervix and vagina with obstruction +C0152240|T019|ET|Q51.2|ICD10CM|Doubling of uterus NOS|Doubling of uterus NOS +C0478044|T019|PT|Q51.2|ICD10|Other doubling of uterus|Other doubling of uterus +C0478044|T019|AB|Q51.2|ICD10CM|Other doubling of uterus|Other doubling of uterus +C0478044|T019|HT|Q51.2|ICD10CM|Other doubling of uterus|Other doubling of uterus +C0152240|T019|ET|Q51.2|ICD10CM|Septate uterus|Septate uterus +C4553035|T019|AB|Q51.20|ICD10CM|Other doubling of uterus, unspecified|Other doubling of uterus, unspecified +C4553035|T019|PT|Q51.20|ICD10CM|Other doubling of uterus, unspecified|Other doubling of uterus, unspecified +C4718802|T019|ET|Q51.20|ICD10CM|Septate uterus, unspecified|Septate uterus, unspecified +C2957116|T019|ET|Q51.21|ICD10CM|Complete septate uterus|Complete septate uterus +C4553036|T019|AB|Q51.21|ICD10CM|Other complete doubling of uterus|Other complete doubling of uterus +C4553036|T019|PT|Q51.21|ICD10CM|Other complete doubling of uterus|Other complete doubling of uterus +C4553037|T019|AB|Q51.22|ICD10CM|Other partial doubling of uterus|Other partial doubling of uterus +C4553037|T019|PT|Q51.22|ICD10CM|Other partial doubling of uterus|Other partial doubling of uterus +C2957117|T019|ET|Q51.22|ICD10CM|Partial septate uterus|Partial septate uterus +C4553038|T019|AB|Q51.28|ICD10CM|Other doubling of uterus, other specified|Other doubling of uterus, other specified +C4553038|T019|PT|Q51.28|ICD10CM|Other doubling of uterus, other specified|Other doubling of uterus, other specified +C4718803|T019|ET|Q51.28|ICD10CM|Septate uterus, other specified|Septate uterus, other specified +C0266387|T019|PT|Q51.3|ICD10CM|Bicornate uterus|Bicornate uterus +C0266387|T019|AB|Q51.3|ICD10CM|Bicornate uterus|Bicornate uterus +C0266387|T019|PT|Q51.3|ICD10|Bicornate uterus|Bicornate uterus +C2977488|T019|ET|Q51.3|ICD10CM|Bicornate uterus, complete or partial|Bicornate uterus, complete or partial +C0266389|T019|PT|Q51.4|ICD10|Unicornate uterus|Unicornate uterus +C0266389|T019|PT|Q51.4|ICD10CM|Unicornate uterus|Unicornate uterus +C0266389|T019|AB|Q51.4|ICD10CM|Unicornate uterus|Unicornate uterus +C2921110|T047|ET|Q51.4|ICD10CM|Unicornate uterus with or without a separate uterine horn|Unicornate uterus with or without a separate uterine horn +C0266389|T019|ET|Q51.4|ICD10CM|Uterus with only one functioning horn|Uterus with only one functioning horn +C0266404|T019|PT|Q51.5|ICD10CM|Agenesis and aplasia of cervix|Agenesis and aplasia of cervix +C0266404|T019|AB|Q51.5|ICD10CM|Agenesis and aplasia of cervix|Agenesis and aplasia of cervix +C0266404|T019|PT|Q51.5|ICD10|Agenesis and aplasia of cervix|Agenesis and aplasia of cervix +C0266404|T019|ET|Q51.5|ICD10CM|Congenital absence of cervix|Congenital absence of cervix +C0431641|T019|PT|Q51.6|ICD10CM|Embryonic cyst of cervix|Embryonic cyst of cervix +C0431641|T019|AB|Q51.6|ICD10CM|Embryonic cyst of cervix|Embryonic cyst of cervix +C0431641|T019|PT|Q51.6|ICD10|Embryonic cyst of cervix|Embryonic cyst of cervix +C0431642|T019|AB|Q51.7|ICD10CM|Congen fistulae betw uterus and digestive and urinary tracts|Congen fistulae betw uterus and digestive and urinary tracts +C0431642|T019|PT|Q51.7|ICD10CM|Congenital fistulae between uterus and digestive and urinary tracts|Congenital fistulae between uterus and digestive and urinary tracts +C0431642|T019|PT|Q51.7|ICD10|Congenital fistulae between uterus and digestive and urinary tracts|Congenital fistulae between uterus and digestive and urinary tracts +C0478045|T019|PT|Q51.8|ICD10|Other congenital malformations of uterus and cervix|Other congenital malformations of uterus and cervix +C0478045|T019|HT|Q51.8|ICD10CM|Other congenital malformations of uterus and cervix|Other congenital malformations of uterus and cervix +C0478045|T019|AB|Q51.8|ICD10CM|Other congenital malformations of uterus and cervix|Other congenital malformations of uterus and cervix +C2977489|T019|HT|Q51.81|ICD10CM|Other congenital malformations of uterus|Other congenital malformations of uterus +C2977489|T019|AB|Q51.81|ICD10CM|Other congenital malformations of uterus|Other congenital malformations of uterus +C0266385|T019|PT|Q51.810|ICD10CM|Arcuate uterus|Arcuate uterus +C0266385|T019|AB|Q51.810|ICD10CM|Arcuate uterus|Arcuate uterus +C0266385|T019|ET|Q51.810|ICD10CM|Arcuatus uterus|Arcuatus uterus +C0266399|T019|AB|Q51.811|ICD10CM|Hypoplasia of uterus|Hypoplasia of uterus +C0266399|T019|PT|Q51.811|ICD10CM|Hypoplasia of uterus|Hypoplasia of uterus +C2921113|T019|ET|Q51.818|ICD10CM|Müllerian anomaly of uterus NEC|Müllerian anomaly of uterus NEC +C2977489|T019|AB|Q51.818|ICD10CM|Other congenital malformations of uterus|Other congenital malformations of uterus +C2977489|T019|PT|Q51.818|ICD10CM|Other congenital malformations of uterus|Other congenital malformations of uterus +C2977490|T019|HT|Q51.82|ICD10CM|Other congenital malformations of cervix|Other congenital malformations of cervix +C2977490|T019|AB|Q51.82|ICD10CM|Other congenital malformations of cervix|Other congenital malformations of cervix +C2921116|T019|AB|Q51.820|ICD10CM|Cervical duplication|Cervical duplication +C2921116|T019|PT|Q51.820|ICD10CM|Cervical duplication|Cervical duplication +C1392346|T019|AB|Q51.821|ICD10CM|Hypoplasia of cervix|Hypoplasia of cervix +C1392346|T019|PT|Q51.821|ICD10CM|Hypoplasia of cervix|Hypoplasia of cervix +C2977490|T019|AB|Q51.828|ICD10CM|Other congenital malformations of cervix|Other congenital malformations of cervix +C2977490|T019|PT|Q51.828|ICD10CM|Other congenital malformations of cervix|Other congenital malformations of cervix +C0431633|T019|PT|Q51.9|ICD10CM|Congenital malformation of uterus and cervix, unspecified|Congenital malformation of uterus and cervix, unspecified +C0431633|T019|AB|Q51.9|ICD10CM|Congenital malformation of uterus and cervix, unspecified|Congenital malformation of uterus and cervix, unspecified +C0431633|T019|PT|Q51.9|ICD10|Congenital malformation of uterus and cervix, unspecified|Congenital malformation of uterus and cervix, unspecified +C0495567|T019|HT|Q52|ICD10|Other congenital malformations of female genitalia|Other congenital malformations of female genitalia +C0495567|T019|AB|Q52|ICD10CM|Other congenital malformations of female genitalia|Other congenital malformations of female genitalia +C0495567|T019|HT|Q52|ICD10CM|Other congenital malformations of female genitalia|Other congenital malformations of female genitalia +C1261251|T019|PT|Q52.0|ICD10|Congenital absence of vagina|Congenital absence of vagina +C1261251|T019|PT|Q52.0|ICD10CM|Congenital absence of vagina|Congenital absence of vagina +C1261251|T019|AB|Q52.0|ICD10CM|Congenital absence of vagina|Congenital absence of vagina +C2977491|T019|ET|Q52.0|ICD10CM|Vaginal agenesis, total or partial|Vaginal agenesis, total or partial +C0266410|T019|HT|Q52.1|ICD10CM|Doubling of vagina|Doubling of vagina +C0266410|T019|AB|Q52.1|ICD10CM|Doubling of vagina|Doubling of vagina +C0266410|T019|PT|Q52.1|ICD10|Doubling of vagina|Doubling of vagina +C0266410|T019|AB|Q52.10|ICD10CM|Doubling of vagina, unspecified|Doubling of vagina, unspecified +C0266410|T019|PT|Q52.10|ICD10CM|Doubling of vagina, unspecified|Doubling of vagina, unspecified +C0266411|T019|ET|Q52.10|ICD10CM|Septate vagina NOS|Septate vagina NOS +C1856006|T033|PT|Q52.11|ICD10CM|Transverse vaginal septum|Transverse vaginal septum +C1856006|T033|AB|Q52.11|ICD10CM|Transverse vaginal septum|Transverse vaginal septum +C1841680|T033|AB|Q52.12|ICD10CM|Longitudinal vaginal septum|Longitudinal vaginal septum +C1841680|T033|HT|Q52.12|ICD10CM|Longitudinal vaginal septum|Longitudinal vaginal septum +C4269141|T019|AB|Q52.120|ICD10CM|Longitudinal vaginal septum, nonobstructing|Longitudinal vaginal septum, nonobstructing +C4269141|T019|PT|Q52.120|ICD10CM|Longitudinal vaginal septum, nonobstructing|Longitudinal vaginal septum, nonobstructing +C4269142|T019|AB|Q52.121|ICD10CM|Longitudinal vaginal septum, obstructing, right side|Longitudinal vaginal septum, obstructing, right side +C4269142|T019|PT|Q52.121|ICD10CM|Longitudinal vaginal septum, obstructing, right side|Longitudinal vaginal septum, obstructing, right side +C4269143|T019|AB|Q52.122|ICD10CM|Longitudinal vaginal septum, obstructing, left side|Longitudinal vaginal septum, obstructing, left side +C4269143|T019|PT|Q52.122|ICD10CM|Longitudinal vaginal septum, obstructing, left side|Longitudinal vaginal septum, obstructing, left side +C4269144|T019|AB|Q52.123|ICD10CM|Longitudinal vaginal septum, microperforate, right side|Longitudinal vaginal septum, microperforate, right side +C4269144|T019|PT|Q52.123|ICD10CM|Longitudinal vaginal septum, microperforate, right side|Longitudinal vaginal septum, microperforate, right side +C4269145|T019|AB|Q52.124|ICD10CM|Longitudinal vaginal septum, microperforate, left side|Longitudinal vaginal septum, microperforate, left side +C4269145|T019|PT|Q52.124|ICD10CM|Longitudinal vaginal septum, microperforate, left side|Longitudinal vaginal septum, microperforate, left side +C4269146|T019|AB|Q52.129|ICD10CM|Other and unspecified longitudinal vaginal septum|Other and unspecified longitudinal vaginal septum +C4269146|T019|PT|Q52.129|ICD10CM|Other and unspecified longitudinal vaginal septum|Other and unspecified longitudinal vaginal septum +C0266221|T019|PT|Q52.2|ICD10CM|Congenital rectovaginal fistula|Congenital rectovaginal fistula +C0266221|T019|AB|Q52.2|ICD10CM|Congenital rectovaginal fistula|Congenital rectovaginal fistula +C0266221|T019|PT|Q52.2|ICD10|Congenital rectovaginal fistula|Congenital rectovaginal fistula +C0152436|T019|PT|Q52.3|ICD10|Imperforate hymen|Imperforate hymen +C0152436|T019|PT|Q52.3|ICD10CM|Imperforate hymen|Imperforate hymen +C0152436|T019|AB|Q52.3|ICD10CM|Imperforate hymen|Imperforate hymen +C0266417|T019|ET|Q52.4|ICD10CM|Canal of Nuck cyst, congenital|Canal of Nuck cyst, congenital +C0431643|T019|ET|Q52.4|ICD10CM|Congenital malformation of vagina NOS|Congenital malformation of vagina NOS +C0266413|T019|ET|Q52.4|ICD10CM|Embryonic vaginal cyst|Embryonic vaginal cyst +C0221366|T019|ET|Q52.4|ICD10CM|Gartner's duct cyst|Gartner's duct cyst +C0478046|T019|PT|Q52.4|ICD10|Other congenital malformations of vagina|Other congenital malformations of vagina +C0478046|T019|PT|Q52.4|ICD10CM|Other congenital malformations of vagina|Other congenital malformations of vagina +C0478046|T019|AB|Q52.4|ICD10CM|Other congenital malformations of vagina|Other congenital malformations of vagina +C0345313|T019|PT|Q52.5|ICD10CM|Fusion of labia|Fusion of labia +C0345313|T019|AB|Q52.5|ICD10CM|Fusion of labia|Fusion of labia +C0345313|T019|PT|Q52.5|ICD10|Fusion of labia|Fusion of labia +C0431656|T019|PT|Q52.6|ICD10CM|Congenital malformation of clitoris|Congenital malformation of clitoris +C0431656|T019|AB|Q52.6|ICD10CM|Congenital malformation of clitoris|Congenital malformation of clitoris +C0431656|T019|PT|Q52.6|ICD10|Congenital malformation of clitoris|Congenital malformation of clitoris +C2910201|T019|AB|Q52.7|ICD10CM|Other and unspecified congenital malformations of vulva|Other and unspecified congenital malformations of vulva +C2910201|T019|HT|Q52.7|ICD10CM|Other and unspecified congenital malformations of vulva|Other and unspecified congenital malformations of vulva +C0478047|T019|PT|Q52.7|ICD10|Other congenital malformations of vulva|Other congenital malformations of vulva +C0266415|T019|ET|Q52.70|ICD10CM|Congenital malformation of vulva NOS|Congenital malformation of vulva NOS +C2910202|T019|AB|Q52.70|ICD10CM|Unspecified congenital malformations of vulva|Unspecified congenital malformations of vulva +C2910202|T019|PT|Q52.70|ICD10CM|Unspecified congenital malformations of vulva|Unspecified congenital malformations of vulva +C0266418|T019|PT|Q52.71|ICD10CM|Congenital absence of vulva|Congenital absence of vulva +C0266418|T019|AB|Q52.71|ICD10CM|Congenital absence of vulva|Congenital absence of vulva +C0266416|T019|ET|Q52.79|ICD10CM|Congenital cyst of vulva|Congenital cyst of vulva +C0478047|T019|PT|Q52.79|ICD10CM|Other congenital malformations of vulva|Other congenital malformations of vulva +C0478047|T019|AB|Q52.79|ICD10CM|Other congenital malformations of vulva|Other congenital malformations of vulva +C0478048|T019|PT|Q52.8|ICD10CM|Other specified congenital malformations of female genitalia|Other specified congenital malformations of female genitalia +C0478048|T019|AB|Q52.8|ICD10CM|Other specified congenital malformations of female genitalia|Other specified congenital malformations of female genitalia +C0478048|T019|PT|Q52.8|ICD10|Other specified congenital malformations of female genitalia|Other specified congenital malformations of female genitalia +C0266365|T019|PT|Q52.9|ICD10|Congenital malformation of female genitalia, unspecified|Congenital malformation of female genitalia, unspecified +C0266365|T019|PT|Q52.9|ICD10CM|Congenital malformation of female genitalia, unspecified|Congenital malformation of female genitalia, unspecified +C0266365|T019|AB|Q52.9|ICD10CM|Congenital malformation of female genitalia, unspecified|Congenital malformation of female genitalia, unspecified +C2910203|T019|AB|Q53|ICD10CM|Undescended and ectopic testicle|Undescended and ectopic testicle +C2910203|T019|HT|Q53|ICD10CM|Undescended and ectopic testicle|Undescended and ectopic testicle +C0010417|T019|HT|Q53|ICD10|Undescended testicle|Undescended testicle +C0302889|T019|PT|Q53.0|ICD10|Ectopic testis|Ectopic testis +C0302889|T019|HT|Q53.0|ICD10CM|Ectopic testis|Ectopic testis +C0302889|T019|AB|Q53.0|ICD10CM|Ectopic testis|Ectopic testis +C0302889|T019|AB|Q53.00|ICD10CM|Ectopic testis, unspecified|Ectopic testis, unspecified +C0302889|T019|PT|Q53.00|ICD10CM|Ectopic testis, unspecified|Ectopic testis, unspecified +C2910204|T019|AB|Q53.01|ICD10CM|Ectopic testis, unilateral|Ectopic testis, unilateral +C2910204|T019|PT|Q53.01|ICD10CM|Ectopic testis, unilateral|Ectopic testis, unilateral +C2227369|T033|AB|Q53.02|ICD10CM|Ectopic testes, bilateral|Ectopic testes, bilateral +C2227369|T033|PT|Q53.02|ICD10CM|Ectopic testes, bilateral|Ectopic testes, bilateral +C0431664|T019|PT|Q53.1|ICD10|Undescended testicle, unilateral|Undescended testicle, unilateral +C0431664|T019|HT|Q53.1|ICD10CM|Undescended testicle, unilateral|Undescended testicle, unilateral +C0431664|T019|AB|Q53.1|ICD10CM|Undescended testicle, unilateral|Undescended testicle, unilateral +C2910205|T019|AB|Q53.10|ICD10CM|Unspecified undescended testicle, unilateral|Unspecified undescended testicle, unilateral +C2910205|T019|PT|Q53.10|ICD10CM|Unspecified undescended testicle, unilateral|Unspecified undescended testicle, unilateral +C2910206|T019|AB|Q53.11|ICD10CM|Abdominal testis, unilateral|Abdominal testis, unilateral +C2910206|T019|HT|Q53.11|ICD10CM|Abdominal testis, unilateral|Abdominal testis, unilateral +C4509589|T019|PT|Q53.111|ICD10CM|Unilateral intraabdominal testis|Unilateral intraabdominal testis +C4509589|T019|AB|Q53.111|ICD10CM|Unilateral intraabdominal testis|Unilateral intraabdominal testis +C4509428|T019|PT|Q53.112|ICD10CM|Unilateral inguinal testis|Unilateral inguinal testis +C4509428|T019|AB|Q53.112|ICD10CM|Unilateral inguinal testis|Unilateral inguinal testis +C2910207|T019|AB|Q53.12|ICD10CM|Ectopic perineal testis, unilateral|Ectopic perineal testis, unilateral +C2910207|T019|PT|Q53.12|ICD10CM|Ectopic perineal testis, unilateral|Ectopic perineal testis, unilateral +C4509429|T019|PT|Q53.13|ICD10CM|Unilateral high scrotal testis|Unilateral high scrotal testis +C4509429|T019|AB|Q53.13|ICD10CM|Unilateral high scrotal testis|Unilateral high scrotal testis +C0431663|T019|HT|Q53.2|ICD10CM|Undescended testicle, bilateral|Undescended testicle, bilateral +C0431663|T019|AB|Q53.2|ICD10CM|Undescended testicle, bilateral|Undescended testicle, bilateral +C0431663|T019|PT|Q53.2|ICD10|Undescended testicle, bilateral|Undescended testicle, bilateral +C2910208|T019|AB|Q53.20|ICD10CM|Undescended testicle, unspecified, bilateral|Undescended testicle, unspecified, bilateral +C2910208|T019|PT|Q53.20|ICD10CM|Undescended testicle, unspecified, bilateral|Undescended testicle, unspecified, bilateral +C2910209|T019|AB|Q53.21|ICD10CM|Abdominal testis, bilateral|Abdominal testis, bilateral +C2910209|T019|HT|Q53.21|ICD10CM|Abdominal testis, bilateral|Abdominal testis, bilateral +C4509430|T019|PT|Q53.211|ICD10CM|Bilateral intraabdominal testes|Bilateral intraabdominal testes +C4509430|T019|AB|Q53.211|ICD10CM|Bilateral intraabdominal testes|Bilateral intraabdominal testes +C4509431|T019|PT|Q53.212|ICD10CM|Bilateral inguinal testes|Bilateral inguinal testes +C4509431|T019|AB|Q53.212|ICD10CM|Bilateral inguinal testes|Bilateral inguinal testes +C2910210|T019|AB|Q53.22|ICD10CM|Ectopic perineal testis, bilateral|Ectopic perineal testis, bilateral +C2910210|T019|PT|Q53.22|ICD10CM|Ectopic perineal testis, bilateral|Ectopic perineal testis, bilateral +C4509432|T019|PT|Q53.23|ICD10CM|Bilateral high scrotal testes|Bilateral high scrotal testes +C4509432|T019|AB|Q53.23|ICD10CM|Bilateral high scrotal testes|Bilateral high scrotal testes +C0010417|T019|ET|Q53.9|ICD10CM|Cryptorchism NOS|Cryptorchism NOS +C0010417|T019|PT|Q53.9|ICD10CM|Undescended testicle, unspecified|Undescended testicle, unspecified +C0010417|T019|AB|Q53.9|ICD10CM|Undescended testicle, unspecified|Undescended testicle, unspecified +C0010417|T019|PT|Q53.9|ICD10|Undescended testicle, unspecified|Undescended testicle, unspecified +C0848558|T019|HT|Q54|ICD10|Hypospadias|Hypospadias +C0848558|T019|HT|Q54|ICD10CM|Hypospadias|Hypospadias +C0848558|T019|AB|Q54|ICD10CM|Hypospadias|Hypospadias +C0452168|T019|PT|Q54.0|ICD10|Hypospadias, balanic|Hypospadias, balanic +C0452168|T019|PT|Q54.0|ICD10CM|Hypospadias, balanic|Hypospadias, balanic +C0452168|T019|AB|Q54.0|ICD10CM|Hypospadias, balanic|Hypospadias, balanic +C1394030|T019|ET|Q54.0|ICD10CM|Hypospadias, coronal|Hypospadias, coronal +C0452168|T019|ET|Q54.0|ICD10CM|Hypospadias, glandular|Hypospadias, glandular +C1691215|T019|PT|Q54.1|ICD10|Hypospadias, penile|Hypospadias, penile +C1691215|T019|PT|Q54.1|ICD10CM|Hypospadias, penile|Hypospadias, penile +C1691215|T019|AB|Q54.1|ICD10CM|Hypospadias, penile|Hypospadias, penile +C0452147|T019|PT|Q54.2|ICD10CM|Hypospadias, penoscrotal|Hypospadias, penoscrotal +C0452147|T019|AB|Q54.2|ICD10CM|Hypospadias, penoscrotal|Hypospadias, penoscrotal +C0452147|T019|PT|Q54.2|ICD10|Hypospadias, penoscrotal|Hypospadias, penoscrotal +C0452148|T019|PT|Q54.3|ICD10|Hypospadias, perineal|Hypospadias, perineal +C0452148|T019|PT|Q54.3|ICD10CM|Hypospadias, perineal|Hypospadias, perineal +C0452148|T019|AB|Q54.3|ICD10CM|Hypospadias, perineal|Hypospadias, perineal +C2910211|T047|ET|Q54.4|ICD10CM|Chordee without hypospadias|Chordee without hypospadias +C0266436|T019|PT|Q54.4|ICD10CM|Congenital chordee|Congenital chordee +C0266436|T019|AB|Q54.4|ICD10CM|Congenital chordee|Congenital chordee +C0266436|T019|PT|Q54.4|ICD10|Congenital chordee|Congenital chordee +C2910212|T019|ET|Q54.8|ICD10CM|Hypospadias with intersex state|Hypospadias with intersex state +C0495571|T019|PT|Q54.8|ICD10|Other hypospadias|Other hypospadias +C0495571|T019|PT|Q54.8|ICD10CM|Other hypospadias|Other hypospadias +C0495571|T019|AB|Q54.8|ICD10CM|Other hypospadias|Other hypospadias +C0848558|T019|PT|Q54.9|ICD10|Hypospadias, unspecified|Hypospadias, unspecified +C0848558|T019|PT|Q54.9|ICD10CM|Hypospadias, unspecified|Hypospadias, unspecified +C0848558|T019|AB|Q54.9|ICD10CM|Hypospadias, unspecified|Hypospadias, unspecified +C0266421|T019|HT|Q55|ICD10|Other congenital malformations of male genital organs|Other congenital malformations of male genital organs +C0266421|T019|AB|Q55|ICD10CM|Other congenital malformations of male genital organs|Other congenital malformations of male genital organs +C0266421|T019|HT|Q55|ICD10CM|Other congenital malformations of male genital organs|Other congenital malformations of male genital organs +C0405582|T019|PT|Q55.0|ICD10CM|Absence and aplasia of testis|Absence and aplasia of testis +C0405582|T019|AB|Q55.0|ICD10CM|Absence and aplasia of testis|Absence and aplasia of testis +C0405582|T019|PT|Q55.0|ICD10|Absence and aplasia of testis|Absence and aplasia of testis +C0266429|T019|ET|Q55.0|ICD10CM|Monorchism|Monorchism +C0266428|T019|ET|Q55.1|ICD10CM|Fusion of testes|Fusion of testes +C0495574|T019|PT|Q55.1|ICD10|Hypoplasia of testis and scrotum|Hypoplasia of testis and scrotum +C0495574|T019|PT|Q55.1|ICD10CM|Hypoplasia of testis and scrotum|Hypoplasia of testis and scrotum +C0495574|T019|AB|Q55.1|ICD10CM|Hypoplasia of testis and scrotum|Hypoplasia of testis and scrotum +C2910213|T019|AB|Q55.2|ICD10CM|Oth and unsp congenital malformations of testis and scrotum|Oth and unsp congenital malformations of testis and scrotum +C2910213|T019|HT|Q55.2|ICD10CM|Other and unspecified congenital malformations of testis and scrotum|Other and unspecified congenital malformations of testis and scrotum +C0478050|T019|PT|Q55.2|ICD10|Other congenital malformations of testis and scrotum|Other congenital malformations of testis and scrotum +C2910214|T019|ET|Q55.20|ICD10CM|Congenital malformation of testis or scrotum NOS|Congenital malformation of testis or scrotum NOS +C2910215|T019|AB|Q55.20|ICD10CM|Unspecified congenital malformations of testis and scrotum|Unspecified congenital malformations of testis and scrotum +C2910215|T019|PT|Q55.20|ICD10CM|Unspecified congenital malformations of testis and scrotum|Unspecified congenital malformations of testis and scrotum +C0266430|T019|PT|Q55.21|ICD10CM|Polyorchism|Polyorchism +C0266430|T019|AB|Q55.21|ICD10CM|Polyorchism|Polyorchism +C0520578|T019|PT|Q55.22|ICD10CM|Retractile testis|Retractile testis +C0520578|T019|AB|Q55.22|ICD10CM|Retractile testis|Retractile testis +C1260432|T019|AB|Q55.23|ICD10CM|Scrotal transposition|Scrotal transposition +C1260432|T019|PT|Q55.23|ICD10CM|Scrotal transposition|Scrotal transposition +C0478050|T019|PT|Q55.29|ICD10CM|Other congenital malformations of testis and scrotum|Other congenital malformations of testis and scrotum +C0478050|T019|AB|Q55.29|ICD10CM|Other congenital malformations of testis and scrotum|Other congenital malformations of testis and scrotum +C0266445|T019|PT|Q55.3|ICD10CM|Atresia of vas deferens|Atresia of vas deferens +C0266445|T019|AB|Q55.3|ICD10CM|Atresia of vas deferens|Atresia of vas deferens +C0266445|T019|PT|Q55.3|ICD10|Atresia of vas deferens|Atresia of vas deferens +C2910216|T019|ET|Q55.4|ICD10CM|Absence or aplasia of prostate|Absence or aplasia of prostate +C2910217|T019|ET|Q55.4|ICD10CM|Absence or aplasia of spermatic cord|Absence or aplasia of spermatic cord +C2910218|T019|ET|Q55.4|ICD10CM|Congenital malformation of vas deferens, epididymis, seminal vesicles or prostate NOS|Congenital malformation of vas deferens, epididymis, seminal vesicles or prostate NOS +C0478051|T019|AB|Q55.4|ICD10CM|Oth congen malform of vas def,epidid, semnl vescl & prostate|Oth congen malform of vas def,epidid, semnl vescl & prostate +C0478051|T019|PT|Q55.4|ICD10CM|Other congenital malformations of vas deferens, epididymis, seminal vesicles and prostate|Other congenital malformations of vas deferens, epididymis, seminal vesicles and prostate +C0478051|T019|PT|Q55.4|ICD10|Other congenital malformations of vas deferens, epididymis, seminal vesicles and prostate|Other congenital malformations of vas deferens, epididymis, seminal vesicles and prostate +C4551491|T019|PT|Q55.5|ICD10|Congenital absence and aplasia of penis|Congenital absence and aplasia of penis +C4551491|T019|PT|Q55.5|ICD10CM|Congenital absence and aplasia of penis|Congenital absence and aplasia of penis +C4551491|T019|AB|Q55.5|ICD10CM|Congenital absence and aplasia of penis|Congenital absence and aplasia of penis +C0478052|T019|PT|Q55.6|ICD10|Other congenital malformations of penis|Other congenital malformations of penis +C0478052|T019|HT|Q55.6|ICD10CM|Other congenital malformations of penis|Other congenital malformations of penis +C0478052|T019|AB|Q55.6|ICD10CM|Other congenital malformations of penis|Other congenital malformations of penis +C2910219|T019|AB|Q55.61|ICD10CM|Curvature of penis (lateral)|Curvature of penis (lateral) +C2910219|T019|PT|Q55.61|ICD10CM|Curvature of penis (lateral)|Curvature of penis (lateral) +C0266435|T019|PT|Q55.62|ICD10CM|Hypoplasia of penis|Hypoplasia of penis +C0266435|T019|AB|Q55.62|ICD10CM|Hypoplasia of penis|Hypoplasia of penis +C4551492|T019|ET|Q55.62|ICD10CM|Micropenis|Micropenis +C1407020|T019|AB|Q55.63|ICD10CM|Congenital torsion of penis|Congenital torsion of penis +C1407020|T019|PT|Q55.63|ICD10CM|Congenital torsion of penis|Congenital torsion of penis +C3264562|T019|ET|Q55.64|ICD10CM|Buried penis|Buried penis +C1410832|T019|ET|Q55.64|ICD10CM|Concealed penis|Concealed penis +C0431668|T019|AB|Q55.64|ICD10CM|Hidden penis|Hidden penis +C0431668|T019|PT|Q55.64|ICD10CM|Hidden penis|Hidden penis +C2910220|T019|ET|Q55.69|ICD10CM|Congenital malformation of penis NOS|Congenital malformation of penis NOS +C0478052|T019|AB|Q55.69|ICD10CM|Other congenital malformation of penis|Other congenital malformation of penis +C0478052|T019|PT|Q55.69|ICD10CM|Other congenital malformation of penis|Other congenital malformation of penis +C2910221|T019|PT|Q55.7|ICD10CM|Congenital vasocutaneous fistula|Congenital vasocutaneous fistula +C2910221|T019|AB|Q55.7|ICD10CM|Congenital vasocutaneous fistula|Congenital vasocutaneous fistula +C0478053|T019|AB|Q55.8|ICD10CM|Oth congenital malformations of male genital organs|Oth congenital malformations of male genital organs +C0478053|T019|PT|Q55.8|ICD10CM|Other specified congenital malformations of male genital organs|Other specified congenital malformations of male genital organs +C0478053|T019|PT|Q55.8|ICD10|Other specified congenital malformations of male genital organs|Other specified congenital malformations of male genital organs +C2910222|T019|ET|Q55.9|ICD10CM|Congenital anomaly of male genital organ|Congenital anomaly of male genital organ +C0266421|T019|ET|Q55.9|ICD10CM|Congenital deformity of male genital organ|Congenital deformity of male genital organ +C0266421|T019|PT|Q55.9|ICD10CM|Congenital malformation of male genital organ, unspecified|Congenital malformation of male genital organ, unspecified +C0266421|T019|AB|Q55.9|ICD10CM|Congenital malformation of male genital organ, unspecified|Congenital malformation of male genital organ, unspecified +C0266421|T019|PT|Q55.9|ICD10|Congenital malformation of male genital organ, unspecified|Congenital malformation of male genital organ, unspecified +C0021193|T019|HT|Q56|ICD10|Indeterminate sex and pseudohermaphroditism|Indeterminate sex and pseudohermaphroditism +C0021193|T019|HT|Q56|ICD10CM|Indeterminate sex and pseudohermaphroditism|Indeterminate sex and pseudohermaphroditism +C0021193|T019|AB|Q56|ICD10CM|Indeterminate sex and pseudohermaphroditism|Indeterminate sex and pseudohermaphroditism +C0495577|T019|PT|Q56.0|ICD10|Hermaphroditism, not elsewhere classified|Hermaphroditism, not elsewhere classified +C0495577|T019|PT|Q56.0|ICD10CM|Hermaphroditism, not elsewhere classified|Hermaphroditism, not elsewhere classified +C0495577|T019|AB|Q56.0|ICD10CM|Hermaphroditism, not elsewhere classified|Hermaphroditism, not elsewhere classified +C4551490|T019|ET|Q56.0|ICD10CM|Ovotestis|Ovotestis +C2910379|T047|ET|Q56.1|ICD10CM|46, XY with streak gonads|46, XY with streak gonads +C0238395|T019|ET|Q56.1|ICD10CM|Male pseudohermaphroditism NOS|Male pseudohermaphroditism NOS +C0495578|T019|PT|Q56.1|ICD10CM|Male pseudohermaphroditism, not elsewhere classified|Male pseudohermaphroditism, not elsewhere classified +C0495578|T019|AB|Q56.1|ICD10CM|Male pseudohermaphroditism, not elsewhere classified|Male pseudohermaphroditism, not elsewhere classified +C0495578|T019|PT|Q56.1|ICD10|Male pseudohermaphroditism, not elsewhere classified|Male pseudohermaphroditism, not elsewhere classified +C0238394|T019|ET|Q56.2|ICD10CM|Female pseudohermaphroditism NOS|Female pseudohermaphroditism NOS +C0495579|T019|PT|Q56.2|ICD10|Female pseudohermaphroditism, not elsewhere classified|Female pseudohermaphroditism, not elsewhere classified +C0495579|T019|PT|Q56.2|ICD10CM|Female pseudohermaphroditism, not elsewhere classified|Female pseudohermaphroditism, not elsewhere classified +C0495579|T019|AB|Q56.2|ICD10CM|Female pseudohermaphroditism, not elsewhere classified|Female pseudohermaphroditism, not elsewhere classified +C0033804|T019|PT|Q56.3|ICD10|Pseudohermaphroditism, unspecified|Pseudohermaphroditism, unspecified +C0033804|T019|PT|Q56.3|ICD10CM|Pseudohermaphroditism, unspecified|Pseudohermaphroditism, unspecified +C0033804|T019|AB|Q56.3|ICD10CM|Pseudohermaphroditism, unspecified|Pseudohermaphroditism, unspecified +C0266362|T019|ET|Q56.4|ICD10CM|Ambiguous genitalia|Ambiguous genitalia +C0278457|T019|PT|Q56.4|ICD10CM|Indeterminate sex, unspecified|Indeterminate sex, unspecified +C0278457|T019|AB|Q56.4|ICD10CM|Indeterminate sex, unspecified|Indeterminate sex, unspecified +C0278457|T019|PT|Q56.4|ICD10|Indeterminate sex, unspecified|Indeterminate sex, unspecified +C0542519|T019|ET|Q60|ICD10CM|congenital absence of kidney|congenital absence of kidney +C0266293|T019|ET|Q60|ICD10CM|congenital atrophy of kidney|congenital atrophy of kidney +C0266293|T019|ET|Q60|ICD10CM|infantile atrophy of kidney|infantile atrophy of kidney +C0495582|T019|AB|Q60|ICD10CM|Renal agenesis and other reduction defects of kidney|Renal agenesis and other reduction defects of kidney +C0495582|T019|HT|Q60|ICD10CM|Renal agenesis and other reduction defects of kidney|Renal agenesis and other reduction defects of kidney +C0495582|T019|HT|Q60|ICD10|Renal agenesis and other reduction defects of kidney|Renal agenesis and other reduction defects of kidney +C0158698|T019|HT|Q60-Q64|ICD10CM|Congenital malformations of the urinary system (Q60-Q64)|Congenital malformations of the urinary system (Q60-Q64) +C0158698|T019|HT|Q60-Q64.9|ICD10|Congenital malformations of the urinary system|Congenital malformations of the urinary system +C0266294|T019|PT|Q60.0|ICD10|Renal agenesis, unilateral|Renal agenesis, unilateral +C0266294|T019|PT|Q60.0|ICD10CM|Renal agenesis, unilateral|Renal agenesis, unilateral +C0266294|T019|AB|Q60.0|ICD10CM|Renal agenesis, unilateral|Renal agenesis, unilateral +C1609433|T047|PT|Q60.1|ICD10|Renal agenesis, bilateral|Renal agenesis, bilateral +C1609433|T047|PT|Q60.1|ICD10CM|Renal agenesis, bilateral|Renal agenesis, bilateral +C1609433|T047|AB|Q60.1|ICD10CM|Renal agenesis, bilateral|Renal agenesis, bilateral +C0542519|T019|PT|Q60.2|ICD10|Renal agenesis, unspecified|Renal agenesis, unspecified +C0542519|T019|PT|Q60.2|ICD10CM|Renal agenesis, unspecified|Renal agenesis, unspecified +C0542519|T019|AB|Q60.2|ICD10CM|Renal agenesis, unspecified|Renal agenesis, unspecified +C0431691|T019|PT|Q60.3|ICD10|Renal hypoplasia, unilateral|Renal hypoplasia, unilateral +C0431691|T019|PT|Q60.3|ICD10CM|Renal hypoplasia, unilateral|Renal hypoplasia, unilateral +C0431691|T019|AB|Q60.3|ICD10CM|Renal hypoplasia, unilateral|Renal hypoplasia, unilateral +C0431692|T019|PT|Q60.4|ICD10CM|Renal hypoplasia, bilateral|Renal hypoplasia, bilateral +C0431692|T019|AB|Q60.4|ICD10CM|Renal hypoplasia, bilateral|Renal hypoplasia, bilateral +C0431692|T019|PT|Q60.4|ICD10|Renal hypoplasia, bilateral|Renal hypoplasia, bilateral +C0266295|T019|PT|Q60.5|ICD10|Renal hypoplasia, unspecified|Renal hypoplasia, unspecified +C0266295|T019|PT|Q60.5|ICD10CM|Renal hypoplasia, unspecified|Renal hypoplasia, unspecified +C0266295|T019|AB|Q60.5|ICD10CM|Renal hypoplasia, unspecified|Renal hypoplasia, unspecified +C0178426|T047|PT|Q60.6|ICD10CM|Potter's syndrome|Potter's syndrome +C0178426|T047|AB|Q60.6|ICD10CM|Potter's syndrome|Potter's syndrome +C0178426|T047|PT|Q60.6|ICD10|Potter's syndrome|Potter's syndrome +C1691228|T047|HT|Q61|ICD10|Cystic kidney disease|Cystic kidney disease +C1691228|T047|HT|Q61|ICD10CM|Cystic kidney disease|Cystic kidney disease +C1691228|T047|AB|Q61|ICD10CM|Cystic kidney disease|Cystic kidney disease +C3854304|T019|AB|Q61.0|ICD10CM|Congenital renal cyst|Congenital renal cyst +C3854304|T019|HT|Q61.0|ICD10CM|Congenital renal cyst|Congenital renal cyst +C3854304|T019|PT|Q61.0|ICD10|Congenital single renal cyst|Congenital single renal cyst +C3812408|T047|AB|Q61.00|ICD10CM|Congenital renal cyst, unspecified|Congenital renal cyst, unspecified +C3812408|T047|PT|Q61.00|ICD10CM|Congenital renal cyst, unspecified|Congenital renal cyst, unspecified +C3812408|T047|ET|Q61.00|ICD10CM|Cyst of kidney NOS (congenital)|Cyst of kidney NOS (congenital) +C3854304|T019|PT|Q61.01|ICD10CM|Congenital single renal cyst|Congenital single renal cyst +C3854304|T019|AB|Q61.01|ICD10CM|Congenital single renal cyst|Congenital single renal cyst +C2910223|T019|AB|Q61.02|ICD10CM|Congenital multiple renal cysts|Congenital multiple renal cysts +C2910223|T019|PT|Q61.02|ICD10CM|Congenital multiple renal cysts|Congenital multiple renal cysts +C0085548|T047|ET|Q61.1|ICD10CM|Polycystic kidney, autosomal recessive|Polycystic kidney, autosomal recessive +C0085548|T047|HT|Q61.1|ICD10CM|Polycystic kidney, infantile type|Polycystic kidney, infantile type +C0085548|T047|AB|Q61.1|ICD10CM|Polycystic kidney, infantile type|Polycystic kidney, infantile type +C0085548|T047|PT|Q61.1|ICD10|Polycystic kidney, infantile type|Polycystic kidney, infantile type +C2910224|T019|AB|Q61.11|ICD10CM|Cystic dilatation of collecting ducts|Cystic dilatation of collecting ducts +C2910224|T047|AB|Q61.11|ICD10CM|Cystic dilatation of collecting ducts|Cystic dilatation of collecting ducts +C2910224|T019|PT|Q61.11|ICD10CM|Cystic dilatation of collecting ducts|Cystic dilatation of collecting ducts +C2910224|T047|PT|Q61.11|ICD10CM|Cystic dilatation of collecting ducts|Cystic dilatation of collecting ducts +C2910225|T019|AB|Q61.19|ICD10CM|Other polycystic kidney, infantile type|Other polycystic kidney, infantile type +C2910225|T047|AB|Q61.19|ICD10CM|Other polycystic kidney, infantile type|Other polycystic kidney, infantile type +C2910225|T019|PT|Q61.19|ICD10CM|Other polycystic kidney, infantile type|Other polycystic kidney, infantile type +C2910225|T047|PT|Q61.19|ICD10CM|Other polycystic kidney, infantile type|Other polycystic kidney, infantile type +C0085413|T047|PT|Q61.2|ICD10|Polycystic kidney, adult type|Polycystic kidney, adult type +C0085413|T047|PT|Q61.2|ICD10CM|Polycystic kidney, adult type|Polycystic kidney, adult type +C0085413|T047|AB|Q61.2|ICD10CM|Polycystic kidney, adult type|Polycystic kidney, adult type +C0085413|T047|ET|Q61.2|ICD10CM|Polycystic kidney, autosomal dominant|Polycystic kidney, autosomal dominant +C0022680|T047|PT|Q61.3|ICD10CM|Polycystic kidney, unspecified|Polycystic kidney, unspecified +C0022680|T047|AB|Q61.3|ICD10CM|Polycystic kidney, unspecified|Polycystic kidney, unspecified +C0022680|T047|PT|Q61.3|ICD10|Polycystic kidney, unspecified|Polycystic kidney, unspecified +C3714581|T047|ET|Q61.4|ICD10CM|Multicystic dysplastic kidney|Multicystic dysplastic kidney +C2910226|T047|ET|Q61.4|ICD10CM|Multicystic kidney (development)|Multicystic kidney (development) +C2910227|T047|ET|Q61.4|ICD10CM|Multicystic kidney disease|Multicystic kidney disease +C3714581|T047|ET|Q61.4|ICD10CM|Multicystic renal dysplasia|Multicystic renal dysplasia +C3536714|T019|PT|Q61.4|ICD10CM|Renal dysplasia|Renal dysplasia +C3536714|T019|AB|Q61.4|ICD10CM|Renal dysplasia|Renal dysplasia +C3536714|T019|PT|Q61.4|ICD10|Renal dysplasia|Renal dysplasia +C2939174|T047|PT|Q61.5|ICD10|Medullary cystic kidney|Medullary cystic kidney +C2939174|T047|PT|Q61.5|ICD10CM|Medullary cystic kidney|Medullary cystic kidney +C2939174|T047|AB|Q61.5|ICD10CM|Medullary cystic kidney|Medullary cystic kidney +C0687120|T047|ET|Q61.5|ICD10CM|Nephronopthisis|Nephronopthisis +C0022681|T019|ET|Q61.5|ICD10CM|Sponge kidney NOS|Sponge kidney NOS +C0022681|T047|ET|Q61.5|ICD10CM|Sponge kidney NOS|Sponge kidney NOS +C1971816|T019|ET|Q61.8|ICD10CM|Fibrocystic kidney|Fibrocystic kidney +C1971816|T047|ET|Q61.8|ICD10CM|Fibrocystic kidney|Fibrocystic kidney +C1535334|T047|ET|Q61.8|ICD10CM|Fibrocystic renal degeneration or disease|Fibrocystic renal degeneration or disease +C0478055|T019|PT|Q61.8|ICD10CM|Other cystic kidney diseases|Other cystic kidney diseases +C0478055|T047|PT|Q61.8|ICD10CM|Other cystic kidney diseases|Other cystic kidney diseases +C0478055|T019|AB|Q61.8|ICD10CM|Other cystic kidney diseases|Other cystic kidney diseases +C0478055|T047|AB|Q61.8|ICD10CM|Other cystic kidney diseases|Other cystic kidney diseases +C0478055|T019|PT|Q61.8|ICD10|Other cystic kidney diseases|Other cystic kidney diseases +C0478055|T047|PT|Q61.8|ICD10|Other cystic kidney diseases|Other cystic kidney diseases +C1691228|T047|PT|Q61.9|ICD10|Cystic kidney disease, unspecified|Cystic kidney disease, unspecified +C1691228|T047|PT|Q61.9|ICD10CM|Cystic kidney disease, unspecified|Cystic kidney disease, unspecified +C1691228|T047|AB|Q61.9|ICD10CM|Cystic kidney disease, unspecified|Cystic kidney disease, unspecified +C0265215|T047|ET|Q61.9|ICD10CM|Meckel-Gruber syndrome|Meckel-Gruber syndrome +C0431681|T019|AB|Q62|ICD10CM|Congen defects of renal pelvis and congen malform of ureter|Congen defects of renal pelvis and congen malform of ureter +C0431681|T019|HT|Q62|ICD10CM|Congenital obstructive defects of renal pelvis and congenital malformations of ureter|Congenital obstructive defects of renal pelvis and congenital malformations of ureter +C0431681|T019|HT|Q62|ICD10|Congenital obstructive defects of renal pelvis and congenital malformations of ureter|Congenital obstructive defects of renal pelvis and congenital malformations of ureter +C0266316|T019|PT|Q62.0|ICD10CM|Congenital hydronephrosis|Congenital hydronephrosis +C0266316|T019|AB|Q62.0|ICD10CM|Congenital hydronephrosis|Congenital hydronephrosis +C0266316|T019|PT|Q62.0|ICD10|Congenital hydronephrosis|Congenital hydronephrosis +C0495587|T019|ET|Q62.1|ICD10CM|Atresia and stenosis of ureter|Atresia and stenosis of ureter +C0495587|T019|PT|Q62.1|ICD10|Atresia and stenosis of ureter|Atresia and stenosis of ureter +C0266321|T019|HT|Q62.1|ICD10CM|Congenital occlusion of ureter|Congenital occlusion of ureter +C0266321|T019|AB|Q62.1|ICD10CM|Congenital occlusion of ureter|Congenital occlusion of ureter +C0266321|T019|AB|Q62.10|ICD10CM|Congenital occlusion of ureter, unspecified|Congenital occlusion of ureter, unspecified +C0266321|T019|PT|Q62.10|ICD10CM|Congenital occlusion of ureter, unspecified|Congenital occlusion of ureter, unspecified +C1386675|T019|AB|Q62.11|ICD10CM|Congenital occlusion of ureteropelvic junction|Congenital occlusion of ureteropelvic junction +C1386675|T019|PT|Q62.11|ICD10CM|Congenital occlusion of ureteropelvic junction|Congenital occlusion of ureteropelvic junction +C1386671|T019|AB|Q62.12|ICD10CM|Congenital occlusion of ureterovesical orifice|Congenital occlusion of ureterovesical orifice +C1386671|T019|PT|Q62.12|ICD10CM|Congenital occlusion of ureterovesical orifice|Congenital occlusion of ureterovesical orifice +C0266324|T019|ET|Q62.2|ICD10CM|Congenital dilatation of ureter|Congenital dilatation of ureter +C0266324|T019|PT|Q62.2|ICD10|Congenital megaloureter|Congenital megaloureter +C0266324|T019|PT|Q62.2|ICD10CM|Congenital megaureter|Congenital megaureter +C0266324|T019|AB|Q62.2|ICD10CM|Congenital megaureter|Congenital megaureter +C0478056|T019|HT|Q62.3|ICD10CM|Other obstructive defects of renal pelvis and ureter|Other obstructive defects of renal pelvis and ureter +C0478056|T019|AB|Q62.3|ICD10CM|Other obstructive defects of renal pelvis and ureter|Other obstructive defects of renal pelvis and ureter +C0478056|T019|PT|Q62.3|ICD10|Other obstructive defects of renal pelvis and ureter|Other obstructive defects of renal pelvis and ureter +C2910229|T019|AB|Q62.31|ICD10CM|Congenital ureterocele, orthotopic|Congenital ureterocele, orthotopic +C2910229|T019|PT|Q62.31|ICD10CM|Congenital ureterocele, orthotopic|Congenital ureterocele, orthotopic +C2910230|T047|PT|Q62.32|ICD10CM|Cecoureterocele|Cecoureterocele +C2910230|T047|AB|Q62.32|ICD10CM|Cecoureterocele|Cecoureterocele +C0474874|T033|ET|Q62.32|ICD10CM|Ectopic ureterocele|Ectopic ureterocele +C0478056|T019|PT|Q62.39|ICD10CM|Other obstructive defects of renal pelvis and ureter|Other obstructive defects of renal pelvis and ureter +C0478056|T019|AB|Q62.39|ICD10CM|Other obstructive defects of renal pelvis and ureter|Other obstructive defects of renal pelvis and ureter +C0521619|T046|ET|Q62.39|ICD10CM|Ureteropelvic junction obstruction NOS|Ureteropelvic junction obstruction NOS +C0266326|T019|PT|Q62.4|ICD10CM|Agenesis of ureter|Agenesis of ureter +C0266326|T019|AB|Q62.4|ICD10CM|Agenesis of ureter|Agenesis of ureter +C0266326|T019|PT|Q62.4|ICD10|Agenesis of ureter|Agenesis of ureter +C0266326|T019|ET|Q62.4|ICD10CM|Congenital absence ureter|Congenital absence ureter +C0266327|T019|ET|Q62.5|ICD10CM|Accessory ureter|Accessory ureter +C0221365|T019|ET|Q62.5|ICD10CM|Double ureter|Double ureter +C0221365|T019|PT|Q62.5|ICD10CM|Duplication of ureter|Duplication of ureter +C0221365|T019|AB|Q62.5|ICD10CM|Duplication of ureter|Duplication of ureter +C0221365|T019|PT|Q62.5|ICD10|Duplication of ureter|Duplication of ureter +C0266328|T047|PT|Q62.6|ICD10|Malposition of ureter|Malposition of ureter +C0266328|T047|HT|Q62.6|ICD10CM|Malposition of ureter|Malposition of ureter +C0266328|T047|AB|Q62.6|ICD10CM|Malposition of ureter|Malposition of ureter +C0266328|T047|AB|Q62.60|ICD10CM|Malposition of ureter, unspecified|Malposition of ureter, unspecified +C0266328|T047|PT|Q62.60|ICD10CM|Malposition of ureter, unspecified|Malposition of ureter, unspecified +C0266329|T019|PT|Q62.61|ICD10CM|Deviation of ureter|Deviation of ureter +C0266329|T019|AB|Q62.61|ICD10CM|Deviation of ureter|Deviation of ureter +C1407989|T019|AB|Q62.62|ICD10CM|Displacement of ureter|Displacement of ureter +C1407989|T019|PT|Q62.62|ICD10CM|Displacement of ureter|Displacement of ureter +C0266334|T019|AB|Q62.63|ICD10CM|Anomalous implantation of ureter|Anomalous implantation of ureter +C0266334|T019|PT|Q62.63|ICD10CM|Anomalous implantation of ureter|Anomalous implantation of ureter +C0266328|T047|ET|Q62.63|ICD10CM|Ectopia of ureter|Ectopia of ureter +C0266328|T047|ET|Q62.63|ICD10CM|Ectopic ureter|Ectopic ureter +C2910231|T019|AB|Q62.69|ICD10CM|Other malposition of ureter|Other malposition of ureter +C2910231|T019|PT|Q62.69|ICD10CM|Other malposition of ureter|Other malposition of ureter +C0431736|T019|PT|Q62.7|ICD10CM|Congenital vesico-uretero-renal reflux|Congenital vesico-uretero-renal reflux +C0431736|T019|AB|Q62.7|ICD10CM|Congenital vesico-uretero-renal reflux|Congenital vesico-uretero-renal reflux +C0431736|T019|PT|Q62.7|ICD10|Congenital vesico-uretero-renal reflux|Congenital vesico-uretero-renal reflux +C0266319|T019|ET|Q62.8|ICD10CM|Anomaly of ureter NOS|Anomaly of ureter NOS +C0478057|T019|PT|Q62.8|ICD10|Other congenital malformations of ureter|Other congenital malformations of ureter +C0478057|T019|PT|Q62.8|ICD10CM|Other congenital malformations of ureter|Other congenital malformations of ureter +C0478057|T019|AB|Q62.8|ICD10CM|Other congenital malformations of ureter|Other congenital malformations of ureter +C0495588|T019|AB|Q63|ICD10CM|Other congenital malformations of kidney|Other congenital malformations of kidney +C0495588|T019|HT|Q63|ICD10CM|Other congenital malformations of kidney|Other congenital malformations of kidney +C0495588|T019|HT|Q63|ICD10|Other congenital malformations of kidney|Other congenital malformations of kidney +C0266298|T019|PT|Q63.0|ICD10|Accessory kidney|Accessory kidney +C0266298|T019|PT|Q63.0|ICD10CM|Accessory kidney|Accessory kidney +C0266298|T019|AB|Q63.0|ICD10CM|Accessory kidney|Accessory kidney +C0495589|T019|PT|Q63.1|ICD10|Lobulated, fused and horseshoe kidney|Lobulated, fused and horseshoe kidney +C0495589|T019|PT|Q63.1|ICD10CM|Lobulated, fused and horseshoe kidney|Lobulated, fused and horseshoe kidney +C0495589|T019|AB|Q63.1|ICD10CM|Lobulated, fused and horseshoe kidney|Lobulated, fused and horseshoe kidney +C0266301|T019|ET|Q63.2|ICD10CM|Congenital displaced kidney|Congenital displaced kidney +C0238207|T019|PT|Q63.2|ICD10CM|Ectopic kidney|Ectopic kidney +C0238207|T019|AB|Q63.2|ICD10CM|Ectopic kidney|Ectopic kidney +C0238207|T019|PT|Q63.2|ICD10|Ectopic kidney|Ectopic kidney +C0238210|T019|ET|Q63.2|ICD10CM|Malrotation of kidney|Malrotation of kidney +C2910232|T047|ET|Q63.3|ICD10CM|Compensatory hypertrophy of kidney|Compensatory hypertrophy of kidney +C0266306|T019|PT|Q63.3|ICD10CM|Hyperplastic and giant kidney|Hyperplastic and giant kidney +C0266306|T019|AB|Q63.3|ICD10CM|Hyperplastic and giant kidney|Hyperplastic and giant kidney +C0266306|T019|PT|Q63.3|ICD10|Hyperplastic and giant kidney|Hyperplastic and giant kidney +C0266300|T019|ET|Q63.8|ICD10CM|Congenital renal calculi|Congenital renal calculi +C0478058|T019|PT|Q63.8|ICD10CM|Other specified congenital malformations of kidney|Other specified congenital malformations of kidney +C0478058|T019|AB|Q63.8|ICD10CM|Other specified congenital malformations of kidney|Other specified congenital malformations of kidney +C0478058|T019|PT|Q63.8|ICD10|Other specified congenital malformations of kidney|Other specified congenital malformations of kidney +C4551596|T019|PT|Q63.9|ICD10|Congenital malformation of kidney, unspecified|Congenital malformation of kidney, unspecified +C4551596|T019|PT|Q63.9|ICD10CM|Congenital malformation of kidney, unspecified|Congenital malformation of kidney, unspecified +C4551596|T019|AB|Q63.9|ICD10CM|Congenital malformation of kidney, unspecified|Congenital malformation of kidney, unspecified +C0495591|T019|AB|Q64|ICD10CM|Other congenital malformations of urinary system|Other congenital malformations of urinary system +C0495591|T019|HT|Q64|ICD10CM|Other congenital malformations of urinary system|Other congenital malformations of urinary system +C0495591|T019|HT|Q64|ICD10|Other congenital malformations of urinary system|Other congenital malformations of urinary system +C0014588|T019|PT|Q64.0|ICD10CM|Epispadias|Epispadias +C0014588|T019|AB|Q64.0|ICD10CM|Epispadias|Epispadias +C0014588|T019|PT|Q64.0|ICD10|Epispadias|Epispadias +C0005689|T047|PT|Q64.1|ICD10|Exstrophy of urinary bladder|Exstrophy of urinary bladder +C0005689|T047|HT|Q64.1|ICD10CM|Exstrophy of urinary bladder|Exstrophy of urinary bladder +C0005689|T047|AB|Q64.1|ICD10CM|Exstrophy of urinary bladder|Exstrophy of urinary bladder +C0005689|T047|ET|Q64.10|ICD10CM|Ectopia vesicae|Ectopia vesicae +C0005689|T047|AB|Q64.10|ICD10CM|Exstrophy of urinary bladder, unspecified|Exstrophy of urinary bladder, unspecified +C0005689|T047|PT|Q64.10|ICD10CM|Exstrophy of urinary bladder, unspecified|Exstrophy of urinary bladder, unspecified +C2910233|T019|AB|Q64.11|ICD10CM|Supravesical fissure of urinary bladder|Supravesical fissure of urinary bladder +C2910233|T019|PT|Q64.11|ICD10CM|Supravesical fissure of urinary bladder|Supravesical fissure of urinary bladder +C4509590|T047|AB|Q64.12|ICD10CM|Cloacal exstrophy of urinary bladder|Cloacal exstrophy of urinary bladder +C4509590|T047|PT|Q64.12|ICD10CM|Cloacal exstrophy of urinary bladder|Cloacal exstrophy of urinary bladder +C0005689|T047|ET|Q64.19|ICD10CM|Extroversion of bladder|Extroversion of bladder +C2910235|T019|AB|Q64.19|ICD10CM|Other exstrophy of urinary bladder|Other exstrophy of urinary bladder +C2910235|T019|PT|Q64.19|ICD10CM|Other exstrophy of urinary bladder|Other exstrophy of urinary bladder +C0238506|T019|PT|Q64.2|ICD10CM|Congenital posterior urethral valves|Congenital posterior urethral valves +C0238506|T019|AB|Q64.2|ICD10CM|Congenital posterior urethral valves|Congenital posterior urethral valves +C0238506|T019|PT|Q64.2|ICD10|Congenital posterior urethral valves|Congenital posterior urethral valves +C0478059|T019|PT|Q64.3|ICD10|Other atresia and stenosis of urethra and bladder neck|Other atresia and stenosis of urethra and bladder neck +C0478059|T019|HT|Q64.3|ICD10CM|Other atresia and stenosis of urethra and bladder neck|Other atresia and stenosis of urethra and bladder neck +C0478059|T019|AB|Q64.3|ICD10CM|Other atresia and stenosis of urethra and bladder neck|Other atresia and stenosis of urethra and bladder neck +C0266337|T019|PT|Q64.31|ICD10CM|Congenital bladder neck obstruction|Congenital bladder neck obstruction +C0266337|T019|AB|Q64.31|ICD10CM|Congenital bladder neck obstruction|Congenital bladder neck obstruction +C2910236|T046|ET|Q64.31|ICD10CM|Congenital obstruction of vesicourethral orifice|Congenital obstruction of vesicourethral orifice +C0266344|T019|PT|Q64.32|ICD10CM|Congenital stricture of urethra|Congenital stricture of urethra +C0266344|T019|AB|Q64.32|ICD10CM|Congenital stricture of urethra|Congenital stricture of urethra +C0266351|T019|PT|Q64.33|ICD10CM|Congenital stricture of urinary meatus|Congenital stricture of urinary meatus +C0266351|T019|AB|Q64.33|ICD10CM|Congenital stricture of urinary meatus|Congenital stricture of urinary meatus +C1305964|T019|ET|Q64.39|ICD10CM|Atresia and stenosis of urethra and bladder neck NOS|Atresia and stenosis of urethra and bladder neck NOS +C0478059|T019|PT|Q64.39|ICD10CM|Other atresia and stenosis of urethra and bladder neck|Other atresia and stenosis of urethra and bladder neck +C0478059|T019|AB|Q64.39|ICD10CM|Other atresia and stenosis of urethra and bladder neck|Other atresia and stenosis of urethra and bladder neck +C0041915|T019|ET|Q64.4|ICD10CM|Cyst of urachus|Cyst of urachus +C0431741|T019|PT|Q64.4|ICD10CM|Malformation of urachus|Malformation of urachus +C0431741|T019|AB|Q64.4|ICD10CM|Malformation of urachus|Malformation of urachus +C0431741|T019|PT|Q64.4|ICD10|Malformation of urachus|Malformation of urachus +C0266357|T019|ET|Q64.4|ICD10CM|Patent urachus|Patent urachus +C1405492|T019|ET|Q64.4|ICD10CM|Prolapse of urachus|Prolapse of urachus +C0495592|T019|PT|Q64.5|ICD10|Congenital absence of bladder and urethra|Congenital absence of bladder and urethra +C0495592|T019|PT|Q64.5|ICD10CM|Congenital absence of bladder and urethra|Congenital absence of bladder and urethra +C0495592|T019|AB|Q64.5|ICD10CM|Congenital absence of bladder and urethra|Congenital absence of bladder and urethra +C0266339|T019|PT|Q64.6|ICD10|Congenital diverticulum of bladder|Congenital diverticulum of bladder +C0266339|T019|PT|Q64.6|ICD10CM|Congenital diverticulum of bladder|Congenital diverticulum of bladder +C0266339|T019|AB|Q64.6|ICD10CM|Congenital diverticulum of bladder|Congenital diverticulum of bladder +C2910237|T019|AB|Q64.7|ICD10CM|Oth and unsp congenital malformations of bladder and urethra|Oth and unsp congenital malformations of bladder and urethra +C2910237|T019|HT|Q64.7|ICD10CM|Other and unspecified congenital malformations of bladder and urethra|Other and unspecified congenital malformations of bladder and urethra +C0478060|T019|PT|Q64.7|ICD10|Other congenital malformations of bladder and urethra|Other congenital malformations of bladder and urethra +C2910238|T019|ET|Q64.70|ICD10CM|Malformation of bladder or urethra NOS|Malformation of bladder or urethra NOS +C2910239|T019|AB|Q64.70|ICD10CM|Unspecified congenital malformation of bladder and urethra|Unspecified congenital malformation of bladder and urethra +C2910239|T019|PT|Q64.70|ICD10CM|Unspecified congenital malformation of bladder and urethra|Unspecified congenital malformation of bladder and urethra +C0431756|T019|PT|Q64.71|ICD10CM|Congenital prolapse of urethra|Congenital prolapse of urethra +C0431756|T019|AB|Q64.71|ICD10CM|Congenital prolapse of urethra|Congenital prolapse of urethra +C1405490|T019|PT|Q64.72|ICD10CM|Congenital prolapse of urinary meatus|Congenital prolapse of urinary meatus +C1405490|T019|AB|Q64.72|ICD10CM|Congenital prolapse of urinary meatus|Congenital prolapse of urinary meatus +C0266354|T019|PT|Q64.73|ICD10CM|Congenital urethrorectal fistula|Congenital urethrorectal fistula +C0266354|T019|AB|Q64.73|ICD10CM|Congenital urethrorectal fistula|Congenital urethrorectal fistula +C0266348|T019|PT|Q64.74|ICD10CM|Double urethra|Double urethra +C0266348|T019|AB|Q64.74|ICD10CM|Double urethra|Double urethra +C0266353|T019|PT|Q64.75|ICD10CM|Double urinary meatus|Double urinary meatus +C0266353|T019|AB|Q64.75|ICD10CM|Double urinary meatus|Double urinary meatus +C0478060|T019|PT|Q64.79|ICD10CM|Other congenital malformations of bladder and urethra|Other congenital malformations of bladder and urethra +C0478060|T019|AB|Q64.79|ICD10CM|Other congenital malformations of bladder and urethra|Other congenital malformations of bladder and urethra +C0478061|T019|PT|Q64.8|ICD10CM|Other specified congenital malformations of urinary system|Other specified congenital malformations of urinary system +C0478061|T019|AB|Q64.8|ICD10CM|Other specified congenital malformations of urinary system|Other specified congenital malformations of urinary system +C0478061|T019|PT|Q64.8|ICD10|Other specified congenital malformations of urinary system|Other specified congenital malformations of urinary system +C0158698|T019|ET|Q64.9|ICD10CM|Congenital anomaly NOS of urinary system|Congenital anomaly NOS of urinary system +C0158698|T019|ET|Q64.9|ICD10CM|Congenital deformity NOS of urinary system|Congenital deformity NOS of urinary system +C0158698|T019|PT|Q64.9|ICD10CM|Congenital malformation of urinary system, unspecified|Congenital malformation of urinary system, unspecified +C0158698|T019|AB|Q64.9|ICD10CM|Congenital malformation of urinary system, unspecified|Congenital malformation of urinary system, unspecified +C0158698|T019|PT|Q64.9|ICD10|Congenital malformation of urinary system, unspecified|Congenital malformation of urinary system, unspecified +C0265615|T019|HT|Q65|ICD10|Congenital deformities of hip|Congenital deformities of hip +C0265615|T019|AB|Q65|ICD10CM|Congenital deformities of hip|Congenital deformities of hip +C0265615|T019|HT|Q65|ICD10CM|Congenital deformities of hip|Congenital deformities of hip +C0151491|T019|HT|Q65-Q79|ICD10CM|Congenital malformations and deformations of the musculoskeletal system (Q65-Q79)|Congenital malformations and deformations of the musculoskeletal system (Q65-Q79) +C0151491|T019|HT|Q65-Q79.9|ICD10|Congenital malformations and deformations of the musculoskeletal system|Congenital malformations and deformations of the musculoskeletal system +C0009702|T019|PT|Q65.0|ICD10|Congenital dislocation of hip, unilateral|Congenital dislocation of hip, unilateral +C0009702|T019|HT|Q65.0|ICD10CM|Congenital dislocation of hip, unilateral|Congenital dislocation of hip, unilateral +C0009702|T019|AB|Q65.0|ICD10CM|Congenital dislocation of hip, unilateral|Congenital dislocation of hip, unilateral +C0009702|T019|AB|Q65.00|ICD10CM|Congenital dislocation of unspecified hip, unilateral|Congenital dislocation of unspecified hip, unilateral +C0009702|T019|PT|Q65.00|ICD10CM|Congenital dislocation of unspecified hip, unilateral|Congenital dislocation of unspecified hip, unilateral +C2107197|T019|AB|Q65.01|ICD10CM|Congenital dislocation of right hip, unilateral|Congenital dislocation of right hip, unilateral +C2107197|T019|PT|Q65.01|ICD10CM|Congenital dislocation of right hip, unilateral|Congenital dislocation of right hip, unilateral +C2107196|T019|AB|Q65.02|ICD10CM|Congenital dislocation of left hip, unilateral|Congenital dislocation of left hip, unilateral +C2107196|T019|PT|Q65.02|ICD10CM|Congenital dislocation of left hip, unilateral|Congenital dislocation of left hip, unilateral +C0158713|T019|PT|Q65.1|ICD10|Congenital dislocation of hip, bilateral|Congenital dislocation of hip, bilateral +C0158713|T019|PT|Q65.1|ICD10CM|Congenital dislocation of hip, bilateral|Congenital dislocation of hip, bilateral +C0158713|T019|AB|Q65.1|ICD10CM|Congenital dislocation of hip, bilateral|Congenital dislocation of hip, bilateral +C0019555|T019|PT|Q65.2|ICD10CM|Congenital dislocation of hip, unspecified|Congenital dislocation of hip, unspecified +C0019555|T019|AB|Q65.2|ICD10CM|Congenital dislocation of hip, unspecified|Congenital dislocation of hip, unspecified +C0019555|T019|PT|Q65.2|ICD10|Congenital dislocation of hip, unspecified|Congenital dislocation of hip, unspecified +C2910240|T019|AB|Q65.3|ICD10CM|Congenital partial dislocation of hip, unilateral|Congenital partial dislocation of hip, unilateral +C2910240|T019|HT|Q65.3|ICD10CM|Congenital partial dislocation of hip, unilateral|Congenital partial dislocation of hip, unilateral +C1261276|T019|PT|Q65.3|ICD10|Congenital subluxation of hip, unilateral|Congenital subluxation of hip, unilateral +C2910240|T019|AB|Q65.30|ICD10CM|Congenital partial dislocation of unsp hip, unilateral|Congenital partial dislocation of unsp hip, unilateral +C2910240|T019|PT|Q65.30|ICD10CM|Congenital partial dislocation of unspecified hip, unilateral|Congenital partial dislocation of unspecified hip, unilateral +C2910241|T019|AB|Q65.31|ICD10CM|Congenital partial dislocation of right hip, unilateral|Congenital partial dislocation of right hip, unilateral +C2910241|T019|PT|Q65.31|ICD10CM|Congenital partial dislocation of right hip, unilateral|Congenital partial dislocation of right hip, unilateral +C2910242|T019|AB|Q65.32|ICD10CM|Congenital partial dislocation of left hip, unilateral|Congenital partial dislocation of left hip, unilateral +C2910242|T019|PT|Q65.32|ICD10CM|Congenital partial dislocation of left hip, unilateral|Congenital partial dislocation of left hip, unilateral +C2910243|T019|AB|Q65.4|ICD10CM|Congenital partial dislocation of hip, bilateral|Congenital partial dislocation of hip, bilateral +C2910243|T019|PT|Q65.4|ICD10CM|Congenital partial dislocation of hip, bilateral|Congenital partial dislocation of hip, bilateral +C0158715|T019|PT|Q65.4|ICD10|Congenital subluxation of hip, bilateral|Congenital subluxation of hip, bilateral +C2910244|T019|AB|Q65.5|ICD10CM|Congenital partial dislocation of hip, unspecified|Congenital partial dislocation of hip, unspecified +C2910244|T019|PT|Q65.5|ICD10CM|Congenital partial dislocation of hip, unspecified|Congenital partial dislocation of hip, unspecified +C0392478|T019|PT|Q65.5|ICD10|Congenital subluxation of hip, unspecified|Congenital subluxation of hip, unspecified +C0431957|T019|ET|Q65.6|ICD10CM|Congenital dislocatable hip|Congenital dislocatable hip +C0431954|T019|PT|Q65.6|ICD10CM|Congenital unstable hip|Congenital unstable hip +C0431954|T019|AB|Q65.6|ICD10CM|Congenital unstable hip|Congenital unstable hip +C0431954|T019|PT|Q65.6|ICD10|Unstable hip|Unstable hip +C0478063|T019|PT|Q65.8|ICD10|Other congenital deformities of hip|Other congenital deformities of hip +C0478063|T019|HT|Q65.8|ICD10CM|Other congenital deformities of hip|Other congenital deformities of hip +C0478063|T019|AB|Q65.8|ICD10CM|Other congenital deformities of hip|Other congenital deformities of hip +C0152430|T019|AB|Q65.81|ICD10CM|Congenital coxa valga|Congenital coxa valga +C0152430|T019|PT|Q65.81|ICD10CM|Congenital coxa valga|Congenital coxa valga +C0152431|T019|PT|Q65.82|ICD10CM|Congenital coxa vara|Congenital coxa vara +C0152431|T019|AB|Q65.82|ICD10CM|Congenital coxa vara|Congenital coxa vara +C3264563|T019|ET|Q65.89|ICD10CM|Anteversion of femoral neck|Anteversion of femoral neck +C0431952|T019|ET|Q65.89|ICD10CM|Congenital acetabular dysplasia|Congenital acetabular dysplasia +C3264564|T019|AB|Q65.89|ICD10CM|Other specified congenital deformities of hip|Other specified congenital deformities of hip +C3264564|T019|PT|Q65.89|ICD10CM|Other specified congenital deformities of hip|Other specified congenital deformities of hip +C0265615|T019|PT|Q65.9|ICD10|Congenital deformity of hip, unspecified|Congenital deformity of hip, unspecified +C0265615|T019|PT|Q65.9|ICD10CM|Congenital deformity of hip, unspecified|Congenital deformity of hip, unspecified +C0265615|T019|AB|Q65.9|ICD10CM|Congenital deformity of hip, unspecified|Congenital deformity of hip, unspecified +C0016508|T019|HT|Q66|ICD10|Congenital deformities of feet|Congenital deformities of feet +C0016508|T019|AB|Q66|ICD10CM|Congenital deformities of feet|Congenital deformities of feet +C0016508|T019|HT|Q66|ICD10CM|Congenital deformities of feet|Congenital deformities of feet +C0009081|T019|AB|Q66.0|ICD10CM|Congenital talipes equinovarus|Congenital talipes equinovarus +C0009081|T019|HT|Q66.0|ICD10CM|Congenital talipes equinovarus|Congenital talipes equinovarus +C0009081|T019|PT|Q66.0|ICD10|Talipes equinovarus|Talipes equinovarus +C5140871|T019|AB|Q66.00|ICD10CM|Congenital talipes equinovarus, unspecified foot|Congenital talipes equinovarus, unspecified foot +C5140871|T019|PT|Q66.00|ICD10CM|Congenital talipes equinovarus, unspecified foot|Congenital talipes equinovarus, unspecified foot +C4082019|T019|AB|Q66.01|ICD10CM|Congenital talipes equinovarus, right foot|Congenital talipes equinovarus, right foot +C4082019|T019|PT|Q66.01|ICD10CM|Congenital talipes equinovarus, right foot|Congenital talipes equinovarus, right foot +C4082018|T019|AB|Q66.02|ICD10CM|Congenital talipes equinovarus, left foot|Congenital talipes equinovarus, left foot +C4082018|T019|PT|Q66.02|ICD10CM|Congenital talipes equinovarus, left foot|Congenital talipes equinovarus, left foot +C0265646|T019|AB|Q66.1|ICD10CM|Congenital talipes calcaneovarus|Congenital talipes calcaneovarus +C0265646|T019|HT|Q66.1|ICD10CM|Congenital talipes calcaneovarus|Congenital talipes calcaneovarus +C0265646|T019|PT|Q66.1|ICD10|Talipes calcaneovarus|Talipes calcaneovarus +C5140872|T019|AB|Q66.10|ICD10CM|Congenital talipes calcaneovarus, unspecified foot|Congenital talipes calcaneovarus, unspecified foot +C5140872|T019|PT|Q66.10|ICD10CM|Congenital talipes calcaneovarus, unspecified foot|Congenital talipes calcaneovarus, unspecified foot +C5140873|T019|AB|Q66.11|ICD10CM|Congenital talipes calcaneovarus, right foot|Congenital talipes calcaneovarus, right foot +C5140873|T019|PT|Q66.11|ICD10CM|Congenital talipes calcaneovarus, right foot|Congenital talipes calcaneovarus, right foot +C5140874|T019|AB|Q66.12|ICD10CM|Congenital talipes calcaneovarus, left foot|Congenital talipes calcaneovarus, left foot +C5140874|T019|PT|Q66.12|ICD10CM|Congenital talipes calcaneovarus, left foot|Congenital talipes calcaneovarus, left foot +C0265649|T019|AB|Q66.2|ICD10CM|Congenital metatarsus (primus) varus|Congenital metatarsus (primus) varus +C0265649|T019|HT|Q66.2|ICD10CM|Congenital metatarsus (primus) varus|Congenital metatarsus (primus) varus +C0265647|T019|PT|Q66.2|ICD10|Metatarsus varus|Metatarsus varus +C0265649|T019|AB|Q66.21|ICD10CM|Congenital metatarsus primus varus|Congenital metatarsus primus varus +C0265649|T019|HT|Q66.21|ICD10CM|Congenital metatarsus primus varus|Congenital metatarsus primus varus +C5140875|T019|AB|Q66.211|ICD10CM|Congenital metatarsus primus varus, right foot|Congenital metatarsus primus varus, right foot +C5140875|T019|PT|Q66.211|ICD10CM|Congenital metatarsus primus varus, right foot|Congenital metatarsus primus varus, right foot +C5140876|T019|AB|Q66.212|ICD10CM|Congenital metatarsus primus varus, left foot|Congenital metatarsus primus varus, left foot +C5140876|T019|PT|Q66.212|ICD10CM|Congenital metatarsus primus varus, left foot|Congenital metatarsus primus varus, left foot +C5140877|T019|AB|Q66.219|ICD10CM|Congenital metatarsus primus varus, unspecified foot|Congenital metatarsus primus varus, unspecified foot +C5140877|T019|PT|Q66.219|ICD10CM|Congenital metatarsus primus varus, unspecified foot|Congenital metatarsus primus varus, unspecified foot +C0265647|T019|AB|Q66.22|ICD10CM|Congenital metatarsus adductus|Congenital metatarsus adductus +C0265647|T019|HT|Q66.22|ICD10CM|Congenital metatarsus adductus|Congenital metatarsus adductus +C0265647|T019|ET|Q66.22|ICD10CM|Congenital metatarsus varus|Congenital metatarsus varus +C5140878|T019|AB|Q66.221|ICD10CM|Congenital metatarsus adductus, right foot|Congenital metatarsus adductus, right foot +C5140878|T019|PT|Q66.221|ICD10CM|Congenital metatarsus adductus, right foot|Congenital metatarsus adductus, right foot +C5140879|T019|AB|Q66.222|ICD10CM|Congenital metatarsus adductus, left foot|Congenital metatarsus adductus, left foot +C5140879|T019|PT|Q66.222|ICD10CM|Congenital metatarsus adductus, left foot|Congenital metatarsus adductus, left foot +C5140880|T019|AB|Q66.229|ICD10CM|Congenital metatarsus adductus, unspecified foot|Congenital metatarsus adductus, unspecified foot +C5140880|T019|PT|Q66.229|ICD10CM|Congenital metatarsus adductus, unspecified foot|Congenital metatarsus adductus, unspecified foot +C0265657|T019|ET|Q66.3|ICD10CM|Hallux varus, congenital|Hallux varus, congenital +C0158725|T019|AB|Q66.3|ICD10CM|Other congenital varus deformities of feet|Other congenital varus deformities of feet +C0158725|T019|HT|Q66.3|ICD10CM|Other congenital varus deformities of feet|Other congenital varus deformities of feet +C0158725|T019|PT|Q66.3|ICD10|Other congenital varus deformities of feet|Other congenital varus deformities of feet +C5140881|T019|AB|Q66.30|ICD10CM|Other congenital varus deformities of feet, unspecified foot|Other congenital varus deformities of feet, unspecified foot +C5140881|T019|PT|Q66.30|ICD10CM|Other congenital varus deformities of feet, unspecified foot|Other congenital varus deformities of feet, unspecified foot +C5140882|T019|AB|Q66.31|ICD10CM|Other congenital varus deformities of feet, right foot|Other congenital varus deformities of feet, right foot +C5140882|T019|PT|Q66.31|ICD10CM|Other congenital varus deformities of feet, right foot|Other congenital varus deformities of feet, right foot +C5140883|T019|AB|Q66.32|ICD10CM|Other congenital varus deformities of feet, left foot|Other congenital varus deformities of feet, left foot +C5140883|T019|PT|Q66.32|ICD10CM|Other congenital varus deformities of feet, left foot|Other congenital varus deformities of feet, left foot +C4551629|T019|AB|Q66.4|ICD10CM|Congenital talipes calcaneovalgus|Congenital talipes calcaneovalgus +C4551629|T019|HT|Q66.4|ICD10CM|Congenital talipes calcaneovalgus|Congenital talipes calcaneovalgus +C4551629|T019|PT|Q66.4|ICD10|Talipes calcaneovalgus|Talipes calcaneovalgus +C5140884|T019|AB|Q66.40|ICD10CM|Congenital talipes calcaneovalgus, unspecified foot|Congenital talipes calcaneovalgus, unspecified foot +C5140884|T019|PT|Q66.40|ICD10CM|Congenital talipes calcaneovalgus, unspecified foot|Congenital talipes calcaneovalgus, unspecified foot +C5140885|T019|AB|Q66.41|ICD10CM|Congenital talipes calcaneovalgus, right foot|Congenital talipes calcaneovalgus, right foot +C5140885|T019|PT|Q66.41|ICD10CM|Congenital talipes calcaneovalgus, right foot|Congenital talipes calcaneovalgus, right foot +C5140886|T019|AB|Q66.42|ICD10CM|Congenital talipes calcaneovalgus, left foot|Congenital talipes calcaneovalgus, left foot +C5140886|T019|PT|Q66.42|ICD10CM|Congenital talipes calcaneovalgus, left foot|Congenital talipes calcaneovalgus, left foot +C0392477|T019|ET|Q66.5|ICD10CM|Congenital flat foot|Congenital flat foot +C0392477|T019|HT|Q66.5|ICD10CM|Congenital pes planus|Congenital pes planus +C0392477|T019|AB|Q66.5|ICD10CM|Congenital pes planus|Congenital pes planus +C0392477|T019|PT|Q66.5|ICD10|Congenital pes planus|Congenital pes planus +C2910246|T019|ET|Q66.5|ICD10CM|Congenital rigid flat foot|Congenital rigid flat foot +C2910247|T019|ET|Q66.5|ICD10CM|Congenital spastic (everted) flat foot|Congenital spastic (everted) flat foot +C3264565|T019|AB|Q66.50|ICD10CM|Congenital pes planus, unspecified foot|Congenital pes planus, unspecified foot +C3264565|T019|PT|Q66.50|ICD10CM|Congenital pes planus, unspecified foot|Congenital pes planus, unspecified foot +C3264566|T019|AB|Q66.51|ICD10CM|Congenital pes planus, right foot|Congenital pes planus, right foot +C3264566|T019|PT|Q66.51|ICD10CM|Congenital pes planus, right foot|Congenital pes planus, right foot +C3264567|T019|AB|Q66.52|ICD10CM|Congenital pes planus, left foot|Congenital pes planus, left foot +C3264567|T019|PT|Q66.52|ICD10CM|Congenital pes planus, left foot|Congenital pes planus, left foot +C0345368|T019|ET|Q66.6|ICD10CM|Congenital metatarsus valgus|Congenital metatarsus valgus +C0158728|T019|PT|Q66.6|ICD10|Other congenital valgus deformities of feet|Other congenital valgus deformities of feet +C0158728|T019|PT|Q66.6|ICD10CM|Other congenital valgus deformities of feet|Other congenital valgus deformities of feet +C0158728|T019|AB|Q66.6|ICD10CM|Other congenital valgus deformities of feet|Other congenital valgus deformities of feet +C0728829|T019|AB|Q66.7|ICD10CM|Congenital pes cavus|Congenital pes cavus +C0728829|T019|HT|Q66.7|ICD10CM|Congenital pes cavus|Congenital pes cavus +C0728829|T019|PT|Q66.7|ICD10|Pes cavus|Pes cavus +C5140887|T019|AB|Q66.70|ICD10CM|Congenital pes cavus, unspecified foot|Congenital pes cavus, unspecified foot +C5140887|T019|PT|Q66.70|ICD10CM|Congenital pes cavus, unspecified foot|Congenital pes cavus, unspecified foot +C4509734|T019|AB|Q66.71|ICD10CM|Congenital pes cavus, right foot|Congenital pes cavus, right foot +C4509734|T019|PT|Q66.71|ICD10CM|Congenital pes cavus, right foot|Congenital pes cavus, right foot +C4509733|T019|AB|Q66.72|ICD10CM|Congenital pes cavus, left foot|Congenital pes cavus, left foot +C4509733|T019|PT|Q66.72|ICD10CM|Congenital pes cavus, left foot|Congenital pes cavus, left foot +C0158729|T019|HT|Q66.8|ICD10CM|Other congenital deformities of feet|Other congenital deformities of feet +C0158729|T019|AB|Q66.8|ICD10CM|Other congenital deformities of feet|Other congenital deformities of feet +C0158729|T019|PT|Q66.8|ICD10|Other congenital deformities of feet|Other congenital deformities of feet +C3264568|T019|AB|Q66.80|ICD10CM|Congenital vertical talus deformity, unspecified foot|Congenital vertical talus deformity, unspecified foot +C3264568|T019|PT|Q66.80|ICD10CM|Congenital vertical talus deformity, unspecified foot|Congenital vertical talus deformity, unspecified foot +C3264569|T019|AB|Q66.81|ICD10CM|Congenital vertical talus deformity, right foot|Congenital vertical talus deformity, right foot +C3264569|T019|PT|Q66.81|ICD10CM|Congenital vertical talus deformity, right foot|Congenital vertical talus deformity, right foot +C3264570|T019|AB|Q66.82|ICD10CM|Congenital vertical talus deformity, left foot|Congenital vertical talus deformity, left foot +C3264570|T019|PT|Q66.82|ICD10CM|Congenital vertical talus deformity, left foot|Congenital vertical talus deformity, left foot +C3264571|T019|ET|Q66.89|ICD10CM|Congenital asymmetric talipes|Congenital asymmetric talipes +C0009081|T019|ET|Q66.89|ICD10CM|Congenital clubfoot NOS|Congenital clubfoot NOS +C0009081|T019|ET|Q66.89|ICD10CM|Congenital talipes NOS|Congenital talipes NOS +C3264572|T019|ET|Q66.89|ICD10CM|Congenital tarsal coalition|Congenital tarsal coalition +C0265658|T019|ET|Q66.89|ICD10CM|Hammer toe, congenital|Hammer toe, congenital +C3264573|T019|AB|Q66.89|ICD10CM|Other specified congenital deformities of feet|Other specified congenital deformities of feet +C3264573|T019|PT|Q66.89|ICD10CM|Other specified congenital deformities of feet|Other specified congenital deformities of feet +C0016508|T019|PT|Q66.9|ICD10|Congenital deformity of feet, unspecified|Congenital deformity of feet, unspecified +C0016508|T019|AB|Q66.9|ICD10CM|Congenital deformity of feet, unspecified|Congenital deformity of feet, unspecified +C0016508|T019|HT|Q66.9|ICD10CM|Congenital deformity of feet, unspecified|Congenital deformity of feet, unspecified +C5141122|T019|AB|Q66.90|ICD10CM|Congenital deformity of feet, unspecified, unspecified foot|Congenital deformity of feet, unspecified, unspecified foot +C5141122|T019|PT|Q66.90|ICD10CM|Congenital deformity of feet, unspecified, unspecified foot|Congenital deformity of feet, unspecified, unspecified foot +C5140888|T019|AB|Q66.91|ICD10CM|Congenital deformity of feet, unspecified, right foot|Congenital deformity of feet, unspecified, right foot +C5140888|T019|PT|Q66.91|ICD10CM|Congenital deformity of feet, unspecified, right foot|Congenital deformity of feet, unspecified, right foot +C5140889|T019|AB|Q66.92|ICD10CM|Congenital deformity of feet, unspecified, left foot|Congenital deformity of feet, unspecified, left foot +C5140889|T019|PT|Q66.92|ICD10CM|Congenital deformity of feet, unspecified, left foot|Congenital deformity of feet, unspecified, left foot +C0495597|T019|AB|Q67|ICD10CM|Congenital ms deformities of head, face, spine and chest|Congenital ms deformities of head, face, spine and chest +C0495597|T019|HT|Q67|ICD10CM|Congenital musculoskeletal deformities of head, face, spine and chest|Congenital musculoskeletal deformities of head, face, spine and chest +C0495597|T019|HT|Q67|ICD10|Congenital musculoskeletal deformities of head, face, spine and chest|Congenital musculoskeletal deformities of head, face, spine and chest +C0546952|T019|PT|Q67.0|ICD10CM|Congenital facial asymmetry|Congenital facial asymmetry +C0546952|T019|AB|Q67.0|ICD10CM|Congenital facial asymmetry|Congenital facial asymmetry +C0546952|T019|PT|Q67.0|ICD10|Facial asymmetry|Facial asymmetry +C2910250|T019|PT|Q67.1|ICD10|Compression facies|Compression facies +C2910250|T019|PT|Q67.1|ICD10CM|Congenital compression facies|Congenital compression facies +C2910250|T019|AB|Q67.1|ICD10CM|Congenital compression facies|Congenital compression facies +C0221358|T019|PT|Q67.2|ICD10CM|Dolichocephaly|Dolichocephaly +C0221358|T019|AB|Q67.2|ICD10CM|Dolichocephaly|Dolichocephaly +C0221358|T019|PT|Q67.2|ICD10|Dolichocephaly|Dolichocephaly +C0265529|T019|PT|Q67.3|ICD10|Plagiocephaly|Plagiocephaly +C0265529|T019|PT|Q67.3|ICD10CM|Plagiocephaly|Plagiocephaly +C0265529|T019|AB|Q67.3|ICD10CM|Plagiocephaly|Plagiocephaly +C0265528|T019|ET|Q67.4|ICD10CM|Congenital depressions in skull|Congenital depressions in skull +C2910251|T019|ET|Q67.4|ICD10CM|Congenital hemifacial atrophy or hypertrophy|Congenital hemifacial atrophy or hypertrophy +C0265743|T019|ET|Q67.4|ICD10CM|Deviation of nasal septum, congenital|Deviation of nasal septum, congenital +C0478064|T019|PT|Q67.4|ICD10|Other congenital deformities of skull, face and jaw|Other congenital deformities of skull, face and jaw +C0478064|T019|PT|Q67.4|ICD10CM|Other congenital deformities of skull, face and jaw|Other congenital deformities of skull, face and jaw +C0478064|T019|AB|Q67.4|ICD10CM|Other congenital deformities of skull, face and jaw|Other congenital deformities of skull, face and jaw +C0345153|T019|ET|Q67.4|ICD10CM|Squashed or bent nose, congenital|Squashed or bent nose, congenital +C0158775|T019|PT|Q67.5|ICD10|Congenital deformity of spine|Congenital deformity of spine +C0158775|T019|PT|Q67.5|ICD10CM|Congenital deformity of spine|Congenital deformity of spine +C0158775|T019|AB|Q67.5|ICD10CM|Congenital deformity of spine|Congenital deformity of spine +C0265675|T019|ET|Q67.5|ICD10CM|Congenital postural scoliosis|Congenital postural scoliosis +C0559260|T019|ET|Q67.5|ICD10CM|Congenital scoliosis NOS|Congenital scoliosis NOS +C0016842|T019|ET|Q67.6|ICD10CM|Congenital funnel chest|Congenital funnel chest +C0016842|T019|PT|Q67.6|ICD10CM|Pectus excavatum|Pectus excavatum +C0016842|T019|AB|Q67.6|ICD10CM|Pectus excavatum|Pectus excavatum +C0016842|T019|PT|Q67.6|ICD10|Pectus excavatum|Pectus excavatum +C0158731|T019|ET|Q67.7|ICD10CM|Congenital pigeon chest|Congenital pigeon chest +C0158731|T019|PT|Q67.7|ICD10CM|Pectus carinatum|Pectus carinatum +C0158731|T019|AB|Q67.7|ICD10CM|Pectus carinatum|Pectus carinatum +C0158731|T019|PT|Q67.7|ICD10|Pectus carinatum|Pectus carinatum +C0265697|T019|ET|Q67.8|ICD10CM|Congenital deformity of chest wall NOS|Congenital deformity of chest wall NOS +C0478065|T019|PT|Q67.8|ICD10CM|Other congenital deformities of chest|Other congenital deformities of chest +C0478065|T019|AB|Q67.8|ICD10CM|Other congenital deformities of chest|Other congenital deformities of chest +C0478065|T019|PT|Q67.8|ICD10|Other congenital deformities of chest|Other congenital deformities of chest +C0158773|T019|HT|Q68|ICD10|Other congenital musculoskeletal deformities|Other congenital musculoskeletal deformities +C0158773|T019|AB|Q68|ICD10CM|Other congenital musculoskeletal deformities|Other congenital musculoskeletal deformities +C0158773|T019|HT|Q68|ICD10CM|Other congenital musculoskeletal deformities|Other congenital musculoskeletal deformities +C0079352|T019|ET|Q68.0|ICD10CM|Congenital (sternomastoid) torticollis|Congenital (sternomastoid) torticollis +C0079352|T019|ET|Q68.0|ICD10CM|Congenital contracture of sternocleidomastoid (muscle)|Congenital contracture of sternocleidomastoid (muscle) +C0345380|T019|PT|Q68.0|ICD10CM|Congenital deformity of sternocleidomastoid muscle|Congenital deformity of sternocleidomastoid muscle +C0345380|T019|AB|Q68.0|ICD10CM|Congenital deformity of sternocleidomastoid muscle|Congenital deformity of sternocleidomastoid muscle +C0345380|T019|PT|Q68.0|ICD10|Congenital deformity of sternocleidomastoid muscle|Congenital deformity of sternocleidomastoid muscle +C0474880|T191|ET|Q68.0|ICD10CM|Sternomastoid tumor (congenital)|Sternomastoid tumor (congenital) +C2910252|T019|ET|Q68.1|ICD10CM|Congenital clubfinger|Congenital clubfinger +C2910253|T019|AB|Q68.1|ICD10CM|Congenital deformity of finger(s) and hand|Congenital deformity of finger(s) and hand +C2910253|T019|PT|Q68.1|ICD10CM|Congenital deformity of finger(s) and hand|Congenital deformity of finger(s) and hand +C0018566|T019|PT|Q68.1|ICD10|Congenital deformity of hand|Congenital deformity of hand +C0265597|T019|ET|Q68.1|ICD10CM|Spade-like hand (congenital)|Spade-like hand (congenital) +C0158767|T019|PT|Q68.2|ICD10CM|Congenital deformity of knee|Congenital deformity of knee +C0158767|T019|AB|Q68.2|ICD10CM|Congenital deformity of knee|Congenital deformity of knee +C0158767|T019|PT|Q68.2|ICD10|Congenital deformity of knee|Congenital deformity of knee +C0265669|T019|ET|Q68.2|ICD10CM|Congenital dislocation of knee|Congenital dislocation of knee +C0152235|T019|ET|Q68.2|ICD10CM|Congenital genu recurvatum|Congenital genu recurvatum +C0158719|T019|PT|Q68.3|ICD10CM|Congenital bowing of femur|Congenital bowing of femur +C0158719|T019|AB|Q68.3|ICD10CM|Congenital bowing of femur|Congenital bowing of femur +C0158719|T019|PT|Q68.3|ICD10|Congenital bowing of femur|Congenital bowing of femur +C0158720|T019|PT|Q68.4|ICD10|Congenital bowing of tibia and fibula|Congenital bowing of tibia and fibula +C0158720|T019|PT|Q68.4|ICD10CM|Congenital bowing of tibia and fibula|Congenital bowing of tibia and fibula +C0158720|T019|AB|Q68.4|ICD10CM|Congenital bowing of tibia and fibula|Congenital bowing of tibia and fibula +C0152432|T019|PT|Q68.5|ICD10CM|Congenital bowing of long bones of leg, unspecified|Congenital bowing of long bones of leg, unspecified +C0152432|T019|AB|Q68.5|ICD10CM|Congenital bowing of long bones of leg, unspecified|Congenital bowing of long bones of leg, unspecified +C0152432|T019|PT|Q68.5|ICD10|Congenital bowing of long bones of leg, unspecified|Congenital bowing of long bones of leg, unspecified +C0265671|T019|PT|Q68.6|ICD10CM|Discoid meniscus|Discoid meniscus +C0265671|T019|AB|Q68.6|ICD10CM|Discoid meniscus|Discoid meniscus +C0158760|T019|ET|Q68.8|ICD10CM|Congenital deformity of clavicle|Congenital deformity of clavicle +C1387923|T019|ET|Q68.8|ICD10CM|Congenital deformity of elbow|Congenital deformity of elbow +C1404173|T019|ET|Q68.8|ICD10CM|Congenital deformity of forearm|Congenital deformity of forearm +C0587371|T019|ET|Q68.8|ICD10CM|Congenital deformity of scapula|Congenital deformity of scapula +C0750442|T019|ET|Q68.8|ICD10CM|Congenital deformity of wrist|Congenital deformity of wrist +C0265561|T019|ET|Q68.8|ICD10CM|Congenital dislocation of elbow|Congenital dislocation of elbow +C0265562|T019|ET|Q68.8|ICD10CM|Congenital dislocation of shoulder|Congenital dislocation of shoulder +C2183058|T037|ET|Q68.8|ICD10CM|Congenital dislocation of wrist|Congenital dislocation of wrist +C0478066|T019|PT|Q68.8|ICD10|Other specified congenital musculoskeletal deformities|Other specified congenital musculoskeletal deformities +C0478066|T019|PT|Q68.8|ICD10CM|Other specified congenital musculoskeletal deformities|Other specified congenital musculoskeletal deformities +C0478066|T019|AB|Q68.8|ICD10CM|Other specified congenital musculoskeletal deformities|Other specified congenital musculoskeletal deformities +C0152427|T019|HT|Q69|ICD10CM|Polydactyly|Polydactyly +C0152427|T019|AB|Q69|ICD10CM|Polydactyly|Polydactyly +C0152427|T019|HT|Q69|ICD10|Polydactyly|Polydactyly +C0158733|T019|PT|Q69.0|ICD10|Accessory finger(s)|Accessory finger(s) +C0158733|T019|PT|Q69.0|ICD10CM|Accessory finger(s)|Accessory finger(s) +C0158733|T019|AB|Q69.0|ICD10CM|Accessory finger(s)|Accessory finger(s) +C1395852|T019|PT|Q69.1|ICD10|Accessory thumb(s)|Accessory thumb(s) +C1395852|T019|PT|Q69.1|ICD10CM|Accessory thumb(s)|Accessory thumb(s) +C1395852|T019|AB|Q69.1|ICD10CM|Accessory thumb(s)|Accessory thumb(s) +C0432036|T019|ET|Q69.2|ICD10CM|Accessory hallux|Accessory hallux +C0158734|T019|PT|Q69.2|ICD10CM|Accessory toe(s)|Accessory toe(s) +C0158734|T019|AB|Q69.2|ICD10CM|Accessory toe(s)|Accessory toe(s) +C0158734|T019|PT|Q69.2|ICD10|Accessory toe(s)|Accessory toe(s) +C0152427|T019|PT|Q69.9|ICD10|Polydactyly, unspecified|Polydactyly, unspecified +C0152427|T019|PT|Q69.9|ICD10CM|Polydactyly, unspecified|Polydactyly, unspecified +C0152427|T019|AB|Q69.9|ICD10CM|Polydactyly, unspecified|Polydactyly, unspecified +C0152427|T019|ET|Q69.9|ICD10CM|Supernumerary digit(s) NOS|Supernumerary digit(s) NOS +C0039075|T019|HT|Q70|ICD10CM|Syndactyly|Syndactyly +C0039075|T019|AB|Q70|ICD10CM|Syndactyly|Syndactyly +C0039075|T019|HT|Q70|ICD10|Syndactyly|Syndactyly +C1406673|T019|ET|Q70.0|ICD10CM|Complex syndactyly of fingers with synostosis|Complex syndactyly of fingers with synostosis +C0158736|T019|PT|Q70.0|ICD10|Fused fingers|Fused fingers +C0158736|T019|HT|Q70.0|ICD10CM|Fused fingers|Fused fingers +C0158736|T019|AB|Q70.0|ICD10CM|Fused fingers|Fused fingers +C0158736|T019|AB|Q70.00|ICD10CM|Fused fingers, unspecified hand|Fused fingers, unspecified hand +C0158736|T019|PT|Q70.00|ICD10CM|Fused fingers, unspecified hand|Fused fingers, unspecified hand +C2910254|T019|AB|Q70.01|ICD10CM|Fused fingers, right hand|Fused fingers, right hand +C2910254|T019|PT|Q70.01|ICD10CM|Fused fingers, right hand|Fused fingers, right hand +C2910255|T019|AB|Q70.02|ICD10CM|Fused fingers, left hand|Fused fingers, left hand +C2910255|T019|PT|Q70.02|ICD10CM|Fused fingers, left hand|Fused fingers, left hand +C2910256|T019|AB|Q70.03|ICD10CM|Fused fingers, bilateral|Fused fingers, bilateral +C2910256|T019|PT|Q70.03|ICD10CM|Fused fingers, bilateral|Fused fingers, bilateral +C2910257|T019|ET|Q70.1|ICD10CM|Simple syndactyly of fingers without synostosis|Simple syndactyly of fingers without synostosis +C0221352|T019|HT|Q70.1|ICD10CM|Webbed fingers|Webbed fingers +C0221352|T019|AB|Q70.1|ICD10CM|Webbed fingers|Webbed fingers +C0221352|T019|PT|Q70.1|ICD10|Webbed fingers|Webbed fingers +C0221352|T019|AB|Q70.10|ICD10CM|Webbed fingers, unspecified hand|Webbed fingers, unspecified hand +C0221352|T019|PT|Q70.10|ICD10CM|Webbed fingers, unspecified hand|Webbed fingers, unspecified hand +C2910258|T019|AB|Q70.11|ICD10CM|Webbed fingers, right hand|Webbed fingers, right hand +C2910258|T019|PT|Q70.11|ICD10CM|Webbed fingers, right hand|Webbed fingers, right hand +C2910259|T019|AB|Q70.12|ICD10CM|Webbed fingers, left hand|Webbed fingers, left hand +C2910259|T019|PT|Q70.12|ICD10CM|Webbed fingers, left hand|Webbed fingers, left hand +C2910260|T019|AB|Q70.13|ICD10CM|Webbed fingers, bilateral|Webbed fingers, bilateral +C2910260|T019|PT|Q70.13|ICD10CM|Webbed fingers, bilateral|Webbed fingers, bilateral +C1406672|T019|ET|Q70.2|ICD10CM|Complex syndactyly of toes with synostosis|Complex syndactyly of toes with synostosis +C0158738|T019|HT|Q70.2|ICD10CM|Fused toes|Fused toes +C0158738|T019|AB|Q70.2|ICD10CM|Fused toes|Fused toes +C0158738|T019|PT|Q70.2|ICD10|Fused toes|Fused toes +C2977492|T019|AB|Q70.20|ICD10CM|Fused toes, unspecified foot|Fused toes, unspecified foot +C2977492|T019|PT|Q70.20|ICD10CM|Fused toes, unspecified foot|Fused toes, unspecified foot +C2977493|T019|AB|Q70.21|ICD10CM|Fused toes, right foot|Fused toes, right foot +C2977493|T019|PT|Q70.21|ICD10CM|Fused toes, right foot|Fused toes, right foot +C2977494|T019|AB|Q70.22|ICD10CM|Fused toes, left foot|Fused toes, left foot +C2977494|T019|PT|Q70.22|ICD10CM|Fused toes, left foot|Fused toes, left foot +C2977495|T019|AB|Q70.23|ICD10CM|Fused toes, bilateral|Fused toes, bilateral +C2977495|T019|PT|Q70.23|ICD10CM|Fused toes, bilateral|Fused toes, bilateral +C2910261|T019|ET|Q70.3|ICD10CM|Simple syndactyly of toes without synostosis|Simple syndactyly of toes without synostosis +C0265660|T019|PT|Q70.3|ICD10|Webbed toes|Webbed toes +C0265660|T019|HT|Q70.3|ICD10CM|Webbed toes|Webbed toes +C0265660|T019|AB|Q70.3|ICD10CM|Webbed toes|Webbed toes +C2977496|T019|AB|Q70.30|ICD10CM|Webbed toes, unspecified foot|Webbed toes, unspecified foot +C2977496|T019|PT|Q70.30|ICD10CM|Webbed toes, unspecified foot|Webbed toes, unspecified foot +C2977497|T019|AB|Q70.31|ICD10CM|Webbed toes, right foot|Webbed toes, right foot +C2977497|T019|PT|Q70.31|ICD10CM|Webbed toes, right foot|Webbed toes, right foot +C2977498|T019|AB|Q70.32|ICD10CM|Webbed toes, left foot|Webbed toes, left foot +C2977498|T019|PT|Q70.32|ICD10CM|Webbed toes, left foot|Webbed toes, left foot +C2977499|T019|AB|Q70.33|ICD10CM|Webbed toes, bilateral|Webbed toes, bilateral +C2977499|T019|PT|Q70.33|ICD10CM|Webbed toes, bilateral|Webbed toes, bilateral +C0265553|T019|PT|Q70.4|ICD10|Polysyndactyly|Polysyndactyly +C0265553|T019|AB|Q70.4|ICD10CM|Polysyndactyly, unspecified|Polysyndactyly, unspecified +C0265553|T019|PT|Q70.4|ICD10CM|Polysyndactyly, unspecified|Polysyndactyly, unspecified +C0039075|T019|ET|Q70.9|ICD10CM|Symphalangy NOS|Symphalangy NOS +C0039075|T019|PT|Q70.9|ICD10CM|Syndactyly, unspecified|Syndactyly, unspecified +C0039075|T019|AB|Q70.9|ICD10CM|Syndactyly, unspecified|Syndactyly, unspecified +C0039075|T019|PT|Q70.9|ICD10|Syndactyly, unspecified|Syndactyly, unspecified +C0265566|T019|HT|Q71|ICD10|Reduction defects of upper limb|Reduction defects of upper limb +C0265566|T019|AB|Q71|ICD10CM|Reduction defects of upper limb|Reduction defects of upper limb +C0265566|T019|HT|Q71|ICD10CM|Reduction defects of upper limb|Reduction defects of upper limb +C0265570|T019|HT|Q71.0|ICD10CM|Congenital complete absence of upper limb|Congenital complete absence of upper limb +C0265570|T019|AB|Q71.0|ICD10CM|Congenital complete absence of upper limb|Congenital complete absence of upper limb +C0265570|T019|PT|Q71.0|ICD10|Congenital complete absence of upper limb(s)|Congenital complete absence of upper limb(s) +C0265570|T019|AB|Q71.00|ICD10CM|Congenital complete absence of unspecified upper limb|Congenital complete absence of unspecified upper limb +C0265570|T019|PT|Q71.00|ICD10CM|Congenital complete absence of unspecified upper limb|Congenital complete absence of unspecified upper limb +C2910262|T019|AB|Q71.01|ICD10CM|Congenital complete absence of right upper limb|Congenital complete absence of right upper limb +C2910262|T019|PT|Q71.01|ICD10CM|Congenital complete absence of right upper limb|Congenital complete absence of right upper limb +C2910263|T019|AB|Q71.02|ICD10CM|Congenital complete absence of left upper limb|Congenital complete absence of left upper limb +C2910263|T019|PT|Q71.02|ICD10CM|Congenital complete absence of left upper limb|Congenital complete absence of left upper limb +C2910264|T019|AB|Q71.03|ICD10CM|Congenital complete absence of upper limb, bilateral|Congenital complete absence of upper limb, bilateral +C2910264|T019|PT|Q71.03|ICD10CM|Congenital complete absence of upper limb, bilateral|Congenital complete absence of upper limb, bilateral +C0265574|T019|AB|Q71.1|ICD10CM|Congenital absence of upper arm and forearm w hand present|Congenital absence of upper arm and forearm w hand present +C0265574|T019|HT|Q71.1|ICD10CM|Congenital absence of upper arm and forearm with hand present|Congenital absence of upper arm and forearm with hand present +C0265574|T019|PT|Q71.1|ICD10|Congenital absence of upper arm and forearm with hand present|Congenital absence of upper arm and forearm with hand present +C0265574|T019|AB|Q71.10|ICD10CM|Congen absence of unsp upper arm and forearm w hand present|Congen absence of unsp upper arm and forearm w hand present +C0265574|T019|PT|Q71.10|ICD10CM|Congenital absence of unspecified upper arm and forearm with hand present|Congenital absence of unspecified upper arm and forearm with hand present +C2910265|T019|AB|Q71.11|ICD10CM|Congenital absence of r up arm and forearm w hand present|Congenital absence of r up arm and forearm w hand present +C2910265|T019|PT|Q71.11|ICD10CM|Congenital absence of right upper arm and forearm with hand present|Congenital absence of right upper arm and forearm with hand present +C2910266|T019|AB|Q71.12|ICD10CM|Congenital absence of l up arm and forearm w hand present|Congenital absence of l up arm and forearm w hand present +C2910266|T019|PT|Q71.12|ICD10CM|Congenital absence of left upper arm and forearm with hand present|Congenital absence of left upper arm and forearm with hand present +C2910267|T019|AB|Q71.13|ICD10CM|Congen absence of upper arm and forearm w hand present, bi|Congen absence of upper arm and forearm w hand present, bi +C2910267|T019|PT|Q71.13|ICD10CM|Congenital absence of upper arm and forearm with hand present, bilateral|Congenital absence of upper arm and forearm with hand present, bilateral +C1306663|T019|PT|Q71.2|ICD10|Congenital absence of both forearm and hand|Congenital absence of both forearm and hand +C1306663|T019|HT|Q71.2|ICD10CM|Congenital absence of both forearm and hand|Congenital absence of both forearm and hand +C1306663|T019|AB|Q71.2|ICD10CM|Congenital absence of both forearm and hand|Congenital absence of both forearm and hand +C3853745|T019|AB|Q71.20|ICD10CM|Congenital absence of both forearm and hand, unsp upper limb|Congenital absence of both forearm and hand, unsp upper limb +C3853745|T019|PT|Q71.20|ICD10CM|Congenital absence of both forearm and hand, unspecified upper limb|Congenital absence of both forearm and hand, unspecified upper limb +C2910268|T019|AB|Q71.21|ICD10CM|Congen absence of both forearm and hand, right upper limb|Congen absence of both forearm and hand, right upper limb +C2910268|T019|PT|Q71.21|ICD10CM|Congenital absence of both forearm and hand, right upper limb|Congenital absence of both forearm and hand, right upper limb +C2910269|T019|AB|Q71.22|ICD10CM|Congenital absence of both forearm and hand, left upper limb|Congenital absence of both forearm and hand, left upper limb +C2910269|T019|PT|Q71.22|ICD10CM|Congenital absence of both forearm and hand, left upper limb|Congenital absence of both forearm and hand, left upper limb +C2910270|T019|AB|Q71.23|ICD10CM|Congenital absence of both forearm and hand, bilateral|Congenital absence of both forearm and hand, bilateral +C2910270|T019|PT|Q71.23|ICD10CM|Congenital absence of both forearm and hand, bilateral|Congenital absence of both forearm and hand, bilateral +C0495604|T019|AB|Q71.3|ICD10CM|Congenital absence of hand and finger|Congenital absence of hand and finger +C0495604|T019|HT|Q71.3|ICD10CM|Congenital absence of hand and finger|Congenital absence of hand and finger +C0495604|T019|PT|Q71.3|ICD10|Congenital absence of hand and finger(s)|Congenital absence of hand and finger(s) +C0495604|T019|AB|Q71.30|ICD10CM|Congenital absence of unspecified hand and finger|Congenital absence of unspecified hand and finger +C0495604|T019|PT|Q71.30|ICD10CM|Congenital absence of unspecified hand and finger|Congenital absence of unspecified hand and finger +C2910271|T019|AB|Q71.31|ICD10CM|Congenital absence of right hand and finger|Congenital absence of right hand and finger +C2910271|T019|PT|Q71.31|ICD10CM|Congenital absence of right hand and finger|Congenital absence of right hand and finger +C2910272|T019|AB|Q71.32|ICD10CM|Congenital absence of left hand and finger|Congenital absence of left hand and finger +C2910272|T019|PT|Q71.32|ICD10CM|Congenital absence of left hand and finger|Congenital absence of left hand and finger +C2910273|T019|AB|Q71.33|ICD10CM|Congenital absence of hand and finger, bilateral|Congenital absence of hand and finger, bilateral +C2910273|T019|PT|Q71.33|ICD10CM|Congenital absence of hand and finger, bilateral|Congenital absence of hand and finger, bilateral +C0265596|T019|ET|Q71.4|ICD10CM|Clubhand (congenital)|Clubhand (congenital) +C0265581|T019|HT|Q71.4|ICD10CM|Longitudinal reduction defect of radius|Longitudinal reduction defect of radius +C0265581|T019|AB|Q71.4|ICD10CM|Longitudinal reduction defect of radius|Longitudinal reduction defect of radius +C0265581|T019|PT|Q71.4|ICD10|Longitudinal reduction defect of radius|Longitudinal reduction defect of radius +C0265598|T019|ET|Q71.4|ICD10CM|Radial clubhand|Radial clubhand +C0265581|T019|AB|Q71.40|ICD10CM|Longitudinal reduction defect of unspecified radius|Longitudinal reduction defect of unspecified radius +C0265581|T019|PT|Q71.40|ICD10CM|Longitudinal reduction defect of unspecified radius|Longitudinal reduction defect of unspecified radius +C2910274|T019|AB|Q71.41|ICD10CM|Longitudinal reduction defect of right radius|Longitudinal reduction defect of right radius +C2910274|T019|PT|Q71.41|ICD10CM|Longitudinal reduction defect of right radius|Longitudinal reduction defect of right radius +C2910275|T019|AB|Q71.42|ICD10CM|Longitudinal reduction defect of left radius|Longitudinal reduction defect of left radius +C2910275|T019|PT|Q71.42|ICD10CM|Longitudinal reduction defect of left radius|Longitudinal reduction defect of left radius +C2910276|T019|AB|Q71.43|ICD10CM|Longitudinal reduction defect of radius, bilateral|Longitudinal reduction defect of radius, bilateral +C2910276|T019|PT|Q71.43|ICD10CM|Longitudinal reduction defect of radius, bilateral|Longitudinal reduction defect of radius, bilateral +C0265583|T019|HT|Q71.5|ICD10CM|Longitudinal reduction defect of ulna|Longitudinal reduction defect of ulna +C0265583|T019|AB|Q71.5|ICD10CM|Longitudinal reduction defect of ulna|Longitudinal reduction defect of ulna +C0265583|T019|PT|Q71.5|ICD10|Longitudinal reduction defect of ulna|Longitudinal reduction defect of ulna +C0265583|T019|AB|Q71.50|ICD10CM|Longitudinal reduction defect of unspecified ulna|Longitudinal reduction defect of unspecified ulna +C0265583|T019|PT|Q71.50|ICD10CM|Longitudinal reduction defect of unspecified ulna|Longitudinal reduction defect of unspecified ulna +C2910277|T019|AB|Q71.51|ICD10CM|Longitudinal reduction defect of right ulna|Longitudinal reduction defect of right ulna +C2910277|T019|PT|Q71.51|ICD10CM|Longitudinal reduction defect of right ulna|Longitudinal reduction defect of right ulna +C2910278|T019|AB|Q71.52|ICD10CM|Longitudinal reduction defect of left ulna|Longitudinal reduction defect of left ulna +C2910278|T019|PT|Q71.52|ICD10CM|Longitudinal reduction defect of left ulna|Longitudinal reduction defect of left ulna +C2910279|T019|AB|Q71.53|ICD10CM|Longitudinal reduction defect of ulna, bilateral|Longitudinal reduction defect of ulna, bilateral +C2910279|T019|PT|Q71.53|ICD10CM|Longitudinal reduction defect of ulna, bilateral|Longitudinal reduction defect of ulna, bilateral +C0265554|T019|HT|Q71.6|ICD10CM|Lobster-claw hand|Lobster-claw hand +C0265554|T019|AB|Q71.6|ICD10CM|Lobster-claw hand|Lobster-claw hand +C0265554|T019|PT|Q71.6|ICD10|Lobster-claw hand|Lobster-claw hand +C0265554|T019|AB|Q71.60|ICD10CM|Lobster-claw hand, unspecified hand|Lobster-claw hand, unspecified hand +C0265554|T019|PT|Q71.60|ICD10CM|Lobster-claw hand, unspecified hand|Lobster-claw hand, unspecified hand +C2910280|T019|AB|Q71.61|ICD10CM|Lobster-claw right hand|Lobster-claw right hand +C2910280|T019|PT|Q71.61|ICD10CM|Lobster-claw right hand|Lobster-claw right hand +C2910281|T019|AB|Q71.62|ICD10CM|Lobster-claw left hand|Lobster-claw left hand +C2910281|T019|PT|Q71.62|ICD10CM|Lobster-claw left hand|Lobster-claw left hand +C2910282|T019|AB|Q71.63|ICD10CM|Lobster-claw hand, bilateral|Lobster-claw hand, bilateral +C2910282|T019|PT|Q71.63|ICD10CM|Lobster-claw hand, bilateral|Lobster-claw hand, bilateral +C0478067|T019|AB|Q71.8|ICD10CM|Other reduction defects of upper limb|Other reduction defects of upper limb +C0478067|T019|HT|Q71.8|ICD10CM|Other reduction defects of upper limb|Other reduction defects of upper limb +C0478067|T019|PT|Q71.8|ICD10|Other reduction defects of upper limb(s)|Other reduction defects of upper limb(s) +C0158742|T019|HT|Q71.81|ICD10CM|Congenital shortening of upper limb|Congenital shortening of upper limb +C0158742|T019|AB|Q71.81|ICD10CM|Congenital shortening of upper limb|Congenital shortening of upper limb +C2977501|T019|AB|Q71.811|ICD10CM|Congenital shortening of right upper limb|Congenital shortening of right upper limb +C2977501|T019|PT|Q71.811|ICD10CM|Congenital shortening of right upper limb|Congenital shortening of right upper limb +C2977502|T019|AB|Q71.812|ICD10CM|Congenital shortening of left upper limb|Congenital shortening of left upper limb +C2977502|T019|PT|Q71.812|ICD10CM|Congenital shortening of left upper limb|Congenital shortening of left upper limb +C2977503|T019|AB|Q71.813|ICD10CM|Congenital shortening of upper limb, bilateral|Congenital shortening of upper limb, bilateral +C2977503|T019|PT|Q71.813|ICD10CM|Congenital shortening of upper limb, bilateral|Congenital shortening of upper limb, bilateral +C2977504|T019|AB|Q71.819|ICD10CM|Congenital shortening of unspecified upper limb|Congenital shortening of unspecified upper limb +C2977504|T019|PT|Q71.819|ICD10CM|Congenital shortening of unspecified upper limb|Congenital shortening of unspecified upper limb +C0478067|T019|HT|Q71.89|ICD10CM|Other reduction defects of upper limb|Other reduction defects of upper limb +C0478067|T019|AB|Q71.89|ICD10CM|Other reduction defects of upper limb|Other reduction defects of upper limb +C2977505|T019|AB|Q71.891|ICD10CM|Other reduction defects of right upper limb|Other reduction defects of right upper limb +C2977505|T019|PT|Q71.891|ICD10CM|Other reduction defects of right upper limb|Other reduction defects of right upper limb +C2977506|T019|AB|Q71.892|ICD10CM|Other reduction defects of left upper limb|Other reduction defects of left upper limb +C2977506|T019|PT|Q71.892|ICD10CM|Other reduction defects of left upper limb|Other reduction defects of left upper limb +C2977507|T019|AB|Q71.893|ICD10CM|Other reduction defects of upper limb, bilateral|Other reduction defects of upper limb, bilateral +C2977507|T019|PT|Q71.893|ICD10CM|Other reduction defects of upper limb, bilateral|Other reduction defects of upper limb, bilateral +C2977508|T019|AB|Q71.899|ICD10CM|Other reduction defects of unspecified upper limb|Other reduction defects of unspecified upper limb +C2977508|T019|PT|Q71.899|ICD10CM|Other reduction defects of unspecified upper limb|Other reduction defects of unspecified upper limb +C0265566|T019|PT|Q71.9|ICD10|Reduction defect of upper limb, unspecified|Reduction defect of upper limb, unspecified +C0265566|T019|AB|Q71.9|ICD10CM|Unspecified reduction defect of upper limb|Unspecified reduction defect of upper limb +C0265566|T019|HT|Q71.9|ICD10CM|Unspecified reduction defect of upper limb|Unspecified reduction defect of upper limb +C2910287|T033|AB|Q71.90|ICD10CM|Unspecified reduction defect of unspecified upper limb|Unspecified reduction defect of unspecified upper limb +C2910287|T033|PT|Q71.90|ICD10CM|Unspecified reduction defect of unspecified upper limb|Unspecified reduction defect of unspecified upper limb +C2910288|T019|AB|Q71.91|ICD10CM|Unspecified reduction defect of right upper limb|Unspecified reduction defect of right upper limb +C2910288|T019|PT|Q71.91|ICD10CM|Unspecified reduction defect of right upper limb|Unspecified reduction defect of right upper limb +C2910289|T019|AB|Q71.92|ICD10CM|Unspecified reduction defect of left upper limb|Unspecified reduction defect of left upper limb +C2910289|T019|PT|Q71.92|ICD10CM|Unspecified reduction defect of left upper limb|Unspecified reduction defect of left upper limb +C2910290|T019|AB|Q71.93|ICD10CM|Unspecified reduction defect of upper limb, bilateral|Unspecified reduction defect of upper limb, bilateral +C2910290|T019|PT|Q71.93|ICD10CM|Unspecified reduction defect of upper limb, bilateral|Unspecified reduction defect of upper limb, bilateral +C0265618|T019|AB|Q72|ICD10CM|Reduction defects of lower limb|Reduction defects of lower limb +C0265618|T019|HT|Q72|ICD10CM|Reduction defects of lower limb|Reduction defects of lower limb +C0265618|T019|HT|Q72|ICD10|Reduction defects of lower limb|Reduction defects of lower limb +C0265621|T019|AB|Q72.0|ICD10CM|Congenital complete absence of lower limb|Congenital complete absence of lower limb +C0265621|T019|HT|Q72.0|ICD10CM|Congenital complete absence of lower limb|Congenital complete absence of lower limb +C0265621|T019|PT|Q72.0|ICD10|Congenital complete absence of lower limb(s)|Congenital complete absence of lower limb(s) +C2910291|T019|AB|Q72.00|ICD10CM|Congenital complete absence of unspecified lower limb|Congenital complete absence of unspecified lower limb +C2910291|T019|PT|Q72.00|ICD10CM|Congenital complete absence of unspecified lower limb|Congenital complete absence of unspecified lower limb +C2910292|T019|PT|Q72.01|ICD10CM|Congenital complete absence of right lower limb|Congenital complete absence of right lower limb +C2910292|T019|AB|Q72.01|ICD10CM|Congenital complete absence of right lower limb|Congenital complete absence of right lower limb +C2910293|T019|AB|Q72.02|ICD10CM|Congenital complete absence of left lower limb|Congenital complete absence of left lower limb +C2910293|T019|PT|Q72.02|ICD10CM|Congenital complete absence of left lower limb|Congenital complete absence of left lower limb +C2910294|T019|AB|Q72.03|ICD10CM|Congenital complete absence of lower limb, bilateral|Congenital complete absence of lower limb, bilateral +C2910294|T019|PT|Q72.03|ICD10CM|Congenital complete absence of lower limb, bilateral|Congenital complete absence of lower limb, bilateral +C0265626|T019|PT|Q72.1|ICD10|Congenital absence of thigh and lower leg with foot present|Congenital absence of thigh and lower leg with foot present +C0265626|T019|HT|Q72.1|ICD10CM|Congenital absence of thigh and lower leg with foot present|Congenital absence of thigh and lower leg with foot present +C0265626|T019|AB|Q72.1|ICD10CM|Congenital absence of thigh and lower leg with foot present|Congenital absence of thigh and lower leg with foot present +C0265626|T019|AB|Q72.10|ICD10CM|Congen absence of unsp thigh and lower leg w foot present|Congen absence of unsp thigh and lower leg w foot present +C0265626|T019|PT|Q72.10|ICD10CM|Congenital absence of unspecified thigh and lower leg with foot present|Congenital absence of unspecified thigh and lower leg with foot present +C2910295|T019|AB|Q72.11|ICD10CM|Congen absence of right thigh and lower leg w foot present|Congen absence of right thigh and lower leg w foot present +C2910295|T019|PT|Q72.11|ICD10CM|Congenital absence of right thigh and lower leg with foot present|Congenital absence of right thigh and lower leg with foot present +C2910296|T019|AB|Q72.12|ICD10CM|Congen absence of left thigh and lower leg w foot present|Congen absence of left thigh and lower leg w foot present +C2910296|T019|PT|Q72.12|ICD10CM|Congenital absence of left thigh and lower leg with foot present|Congenital absence of left thigh and lower leg with foot present +C2910297|T019|AB|Q72.13|ICD10CM|Congen absence of thigh and lower leg w foot present, bi|Congen absence of thigh and lower leg w foot present, bi +C2910297|T019|PT|Q72.13|ICD10CM|Congenital absence of thigh and lower leg with foot present, bilateral|Congenital absence of thigh and lower leg with foot present, bilateral +C0431991|T019|PT|Q72.2|ICD10|Congenital absence of both lower leg and foot|Congenital absence of both lower leg and foot +C0431991|T019|HT|Q72.2|ICD10CM|Congenital absence of both lower leg and foot|Congenital absence of both lower leg and foot +C0431991|T019|AB|Q72.2|ICD10CM|Congenital absence of both lower leg and foot|Congenital absence of both lower leg and foot +C0431991|T019|AB|Q72.20|ICD10CM|Congen absence of both lower leg and foot, unsp lower limb|Congen absence of both lower leg and foot, unsp lower limb +C0431991|T019|PT|Q72.20|ICD10CM|Congenital absence of both lower leg and foot, unspecified lower limb|Congenital absence of both lower leg and foot, unspecified lower limb +C2910298|T019|AB|Q72.21|ICD10CM|Congen absence of both lower leg and foot, right lower limb|Congen absence of both lower leg and foot, right lower limb +C2910298|T019|PT|Q72.21|ICD10CM|Congenital absence of both lower leg and foot, right lower limb|Congenital absence of both lower leg and foot, right lower limb +C2910299|T019|AB|Q72.22|ICD10CM|Congen absence of both lower leg and foot, left lower limb|Congen absence of both lower leg and foot, left lower limb +C2910299|T019|PT|Q72.22|ICD10CM|Congenital absence of both lower leg and foot, left lower limb|Congenital absence of both lower leg and foot, left lower limb +C2910300|T019|AB|Q72.23|ICD10CM|Congenital absence of both lower leg and foot, bilateral|Congenital absence of both lower leg and foot, bilateral +C2910300|T019|PT|Q72.23|ICD10CM|Congenital absence of both lower leg and foot, bilateral|Congenital absence of both lower leg and foot, bilateral +C0265624|T019|HT|Q72.3|ICD10CM|Congenital absence of foot and toe(s)|Congenital absence of foot and toe(s) +C0265624|T019|AB|Q72.3|ICD10CM|Congenital absence of foot and toe(s)|Congenital absence of foot and toe(s) +C0265624|T019|PT|Q72.3|ICD10|Congenital absence of foot and toe(s)|Congenital absence of foot and toe(s) +C0265624|T019|AB|Q72.30|ICD10CM|Congenital absence of unspecified foot and toe(s)|Congenital absence of unspecified foot and toe(s) +C0265624|T019|PT|Q72.30|ICD10CM|Congenital absence of unspecified foot and toe(s)|Congenital absence of unspecified foot and toe(s) +C2910301|T019|AB|Q72.31|ICD10CM|Congenital absence of right foot and toe(s)|Congenital absence of right foot and toe(s) +C2910301|T019|PT|Q72.31|ICD10CM|Congenital absence of right foot and toe(s)|Congenital absence of right foot and toe(s) +C2910302|T019|AB|Q72.32|ICD10CM|Congenital absence of left foot and toe(s)|Congenital absence of left foot and toe(s) +C2910302|T019|PT|Q72.32|ICD10CM|Congenital absence of left foot and toe(s)|Congenital absence of left foot and toe(s) +C2910303|T019|AB|Q72.33|ICD10CM|Congenital absence of foot and toe(s), bilateral|Congenital absence of foot and toe(s), bilateral +C2910303|T019|PT|Q72.33|ICD10CM|Congenital absence of foot and toe(s), bilateral|Congenital absence of foot and toe(s), bilateral +C0265628|T019|HT|Q72.4|ICD10CM|Longitudinal reduction defect of femur|Longitudinal reduction defect of femur +C0265628|T019|AB|Q72.4|ICD10CM|Longitudinal reduction defect of femur|Longitudinal reduction defect of femur +C0265628|T019|PT|Q72.4|ICD10|Longitudinal reduction defect of femur|Longitudinal reduction defect of femur +C0431996|T019|ET|Q72.4|ICD10CM|Proximal femoral focal deficiency|Proximal femoral focal deficiency +C0265628|T019|AB|Q72.40|ICD10CM|Longitudinal reduction defect of unspecified femur|Longitudinal reduction defect of unspecified femur +C0265628|T019|PT|Q72.40|ICD10CM|Longitudinal reduction defect of unspecified femur|Longitudinal reduction defect of unspecified femur +C2910304|T019|AB|Q72.41|ICD10CM|Longitudinal reduction defect of right femur|Longitudinal reduction defect of right femur +C2910304|T019|PT|Q72.41|ICD10CM|Longitudinal reduction defect of right femur|Longitudinal reduction defect of right femur +C2910305|T019|AB|Q72.42|ICD10CM|Longitudinal reduction defect of left femur|Longitudinal reduction defect of left femur +C2910305|T019|PT|Q72.42|ICD10CM|Longitudinal reduction defect of left femur|Longitudinal reduction defect of left femur +C2910306|T019|AB|Q72.43|ICD10CM|Longitudinal reduction defect of femur, bilateral|Longitudinal reduction defect of femur, bilateral +C2910306|T019|PT|Q72.43|ICD10CM|Longitudinal reduction defect of femur, bilateral|Longitudinal reduction defect of femur, bilateral +C0265632|T019|HT|Q72.5|ICD10CM|Longitudinal reduction defect of tibia|Longitudinal reduction defect of tibia +C0265632|T019|AB|Q72.5|ICD10CM|Longitudinal reduction defect of tibia|Longitudinal reduction defect of tibia +C0265632|T019|PT|Q72.5|ICD10|Longitudinal reduction defect of tibia|Longitudinal reduction defect of tibia +C0265632|T019|AB|Q72.50|ICD10CM|Longitudinal reduction defect of unspecified tibia|Longitudinal reduction defect of unspecified tibia +C0265632|T019|PT|Q72.50|ICD10CM|Longitudinal reduction defect of unspecified tibia|Longitudinal reduction defect of unspecified tibia +C2910307|T019|AB|Q72.51|ICD10CM|Longitudinal reduction defect of right tibia|Longitudinal reduction defect of right tibia +C2910307|T019|PT|Q72.51|ICD10CM|Longitudinal reduction defect of right tibia|Longitudinal reduction defect of right tibia +C2910308|T019|AB|Q72.52|ICD10CM|Longitudinal reduction defect of left tibia|Longitudinal reduction defect of left tibia +C2910308|T019|PT|Q72.52|ICD10CM|Longitudinal reduction defect of left tibia|Longitudinal reduction defect of left tibia +C2910309|T019|AB|Q72.53|ICD10CM|Longitudinal reduction defect of tibia, bilateral|Longitudinal reduction defect of tibia, bilateral +C2910309|T019|PT|Q72.53|ICD10CM|Longitudinal reduction defect of tibia, bilateral|Longitudinal reduction defect of tibia, bilateral +C0265634|T019|HT|Q72.6|ICD10CM|Longitudinal reduction defect of fibula|Longitudinal reduction defect of fibula +C0265634|T019|AB|Q72.6|ICD10CM|Longitudinal reduction defect of fibula|Longitudinal reduction defect of fibula +C0265634|T019|PT|Q72.6|ICD10|Longitudinal reduction defect of fibula|Longitudinal reduction defect of fibula +C0265634|T019|AB|Q72.60|ICD10CM|Longitudinal reduction defect of unspecified fibula|Longitudinal reduction defect of unspecified fibula +C0265634|T019|PT|Q72.60|ICD10CM|Longitudinal reduction defect of unspecified fibula|Longitudinal reduction defect of unspecified fibula +C2910310|T019|AB|Q72.61|ICD10CM|Longitudinal reduction defect of right fibula|Longitudinal reduction defect of right fibula +C2910310|T019|PT|Q72.61|ICD10CM|Longitudinal reduction defect of right fibula|Longitudinal reduction defect of right fibula +C2910311|T019|AB|Q72.62|ICD10CM|Longitudinal reduction defect of left fibula|Longitudinal reduction defect of left fibula +C2910311|T019|PT|Q72.62|ICD10CM|Longitudinal reduction defect of left fibula|Longitudinal reduction defect of left fibula +C2910312|T019|AB|Q72.63|ICD10CM|Longitudinal reduction defect of fibula, bilateral|Longitudinal reduction defect of fibula, bilateral +C2910312|T019|PT|Q72.63|ICD10CM|Longitudinal reduction defect of fibula, bilateral|Longitudinal reduction defect of fibula, bilateral +C0432028|T019|HT|Q72.7|ICD10CM|Split foot|Split foot +C0432028|T019|AB|Q72.7|ICD10CM|Split foot|Split foot +C0432028|T019|PT|Q72.7|ICD10|Split foot|Split foot +C0432028|T019|AB|Q72.70|ICD10CM|Split foot, unspecified lower limb|Split foot, unspecified lower limb +C0432028|T019|PT|Q72.70|ICD10CM|Split foot, unspecified lower limb|Split foot, unspecified lower limb +C2910313|T019|AB|Q72.71|ICD10CM|Split foot, right lower limb|Split foot, right lower limb +C2910313|T019|PT|Q72.71|ICD10CM|Split foot, right lower limb|Split foot, right lower limb +C2910314|T019|AB|Q72.72|ICD10CM|Split foot, left lower limb|Split foot, left lower limb +C2910314|T019|PT|Q72.72|ICD10CM|Split foot, left lower limb|Split foot, left lower limb +C2910315|T019|AB|Q72.73|ICD10CM|Split foot, bilateral|Split foot, bilateral +C2910315|T019|PT|Q72.73|ICD10CM|Split foot, bilateral|Split foot, bilateral +C0478068|T019|AB|Q72.8|ICD10CM|Other reduction defects of lower limb|Other reduction defects of lower limb +C0478068|T019|HT|Q72.8|ICD10CM|Other reduction defects of lower limb|Other reduction defects of lower limb +C0478068|T019|PT|Q72.8|ICD10|Other reduction defects of lower limb(s)|Other reduction defects of lower limb(s) +C2977509|T019|AB|Q72.81|ICD10CM|Congenital shortening of lower limb|Congenital shortening of lower limb +C2977509|T019|HT|Q72.81|ICD10CM|Congenital shortening of lower limb|Congenital shortening of lower limb +C2977510|T019|AB|Q72.811|ICD10CM|Congenital shortening of right lower limb|Congenital shortening of right lower limb +C2977510|T019|PT|Q72.811|ICD10CM|Congenital shortening of right lower limb|Congenital shortening of right lower limb +C2977511|T019|AB|Q72.812|ICD10CM|Congenital shortening of left lower limb|Congenital shortening of left lower limb +C2977511|T019|PT|Q72.812|ICD10CM|Congenital shortening of left lower limb|Congenital shortening of left lower limb +C2977512|T019|AB|Q72.813|ICD10CM|Congenital shortening of lower limb, bilateral|Congenital shortening of lower limb, bilateral +C2977512|T019|PT|Q72.813|ICD10CM|Congenital shortening of lower limb, bilateral|Congenital shortening of lower limb, bilateral +C2977513|T019|AB|Q72.819|ICD10CM|Congenital shortening of unspecified lower limb|Congenital shortening of unspecified lower limb +C2977513|T019|PT|Q72.819|ICD10CM|Congenital shortening of unspecified lower limb|Congenital shortening of unspecified lower limb +C0478068|T019|HT|Q72.89|ICD10CM|Other reduction defects of lower limb|Other reduction defects of lower limb +C0478068|T019|AB|Q72.89|ICD10CM|Other reduction defects of lower limb|Other reduction defects of lower limb +C2977514|T019|AB|Q72.891|ICD10CM|Other reduction defects of right lower limb|Other reduction defects of right lower limb +C2977514|T019|PT|Q72.891|ICD10CM|Other reduction defects of right lower limb|Other reduction defects of right lower limb +C2977515|T019|AB|Q72.892|ICD10CM|Other reduction defects of left lower limb|Other reduction defects of left lower limb +C2977515|T019|PT|Q72.892|ICD10CM|Other reduction defects of left lower limb|Other reduction defects of left lower limb +C2977516|T019|AB|Q72.893|ICD10CM|Other reduction defects of lower limb, bilateral|Other reduction defects of lower limb, bilateral +C2977516|T019|PT|Q72.893|ICD10CM|Other reduction defects of lower limb, bilateral|Other reduction defects of lower limb, bilateral +C2977517|T019|AB|Q72.899|ICD10CM|Other reduction defects of unspecified lower limb|Other reduction defects of unspecified lower limb +C2977517|T019|PT|Q72.899|ICD10CM|Other reduction defects of unspecified lower limb|Other reduction defects of unspecified lower limb +C0265618|T019|PT|Q72.9|ICD10|Reduction defect of lower limb, unspecified|Reduction defect of lower limb, unspecified +C0265618|T019|AB|Q72.9|ICD10CM|Unspecified reduction defect of lower limb|Unspecified reduction defect of lower limb +C0265618|T019|HT|Q72.9|ICD10CM|Unspecified reduction defect of lower limb|Unspecified reduction defect of lower limb +C0265618|T019|AB|Q72.90|ICD10CM|Unspecified reduction defect of unspecified lower limb|Unspecified reduction defect of unspecified lower limb +C0265618|T019|PT|Q72.90|ICD10CM|Unspecified reduction defect of unspecified lower limb|Unspecified reduction defect of unspecified lower limb +C2910320|T019|AB|Q72.91|ICD10CM|Unspecified reduction defect of right lower limb|Unspecified reduction defect of right lower limb +C2910320|T019|PT|Q72.91|ICD10CM|Unspecified reduction defect of right lower limb|Unspecified reduction defect of right lower limb +C2910321|T019|AB|Q72.92|ICD10CM|Unspecified reduction defect of left lower limb|Unspecified reduction defect of left lower limb +C2910321|T019|PT|Q72.92|ICD10CM|Unspecified reduction defect of left lower limb|Unspecified reduction defect of left lower limb +C2910322|T019|AB|Q72.93|ICD10CM|Unspecified reduction defect of lower limb, bilateral|Unspecified reduction defect of lower limb, bilateral +C2910322|T019|PT|Q72.93|ICD10CM|Unspecified reduction defect of lower limb, bilateral|Unspecified reduction defect of lower limb, bilateral +C0265547|T019|AB|Q73|ICD10CM|Reduction defects of unspecified limb|Reduction defects of unspecified limb +C0265547|T019|HT|Q73|ICD10CM|Reduction defects of unspecified limb|Reduction defects of unspecified limb +C0265547|T019|HT|Q73|ICD10|Reduction defects of unspecified limb|Reduction defects of unspecified limb +C0002447|T019|ET|Q73.0|ICD10CM|Amelia NOS|Amelia NOS +C0002447|T019|PT|Q73.0|ICD10CM|Congenital absence of unspecified limb(s)|Congenital absence of unspecified limb(s) +C0002447|T019|AB|Q73.0|ICD10CM|Congenital absence of unspecified limb(s)|Congenital absence of unspecified limb(s) +C0002447|T019|PT|Q73.0|ICD10|Congenital absence of unspecified limb(s)|Congenital absence of unspecified limb(s) +C0031575|T019|ET|Q73.1|ICD10CM|Phocomelia NOS|Phocomelia NOS +C0031575|T019|PT|Q73.1|ICD10CM|Phocomelia, unspecified limb(s)|Phocomelia, unspecified limb(s) +C0031575|T019|AB|Q73.1|ICD10CM|Phocomelia, unspecified limb(s)|Phocomelia, unspecified limb(s) +C0031575|T019|PT|Q73.1|ICD10|Phocomelia, unspecified limb(s)|Phocomelia, unspecified limb(s) +C2910323|T019|ET|Q73.8|ICD10CM|Ectromelia of limb NOS|Ectromelia of limb NOS +C2910324|T047|ET|Q73.8|ICD10CM|Hemimelia of limb NOS|Hemimelia of limb NOS +C0265547|T019|ET|Q73.8|ICD10CM|Longitudinal reduction deformity of unspecified limb(s)|Longitudinal reduction deformity of unspecified limb(s) +C0478069|T019|PT|Q73.8|ICD10CM|Other reduction defects of unspecified limb(s)|Other reduction defects of unspecified limb(s) +C0478069|T019|AB|Q73.8|ICD10CM|Other reduction defects of unspecified limb(s)|Other reduction defects of unspecified limb(s) +C0478069|T019|PT|Q73.8|ICD10|Other reduction defects of unspecified limb(s)|Other reduction defects of unspecified limb(s) +C0265547|T019|ET|Q73.8|ICD10CM|Reduction defect of limb NOS|Reduction defect of limb NOS +C0495612|T019|HT|Q74|ICD10|Other congenital malformations of limb(s)|Other congenital malformations of limb(s) +C0495612|T019|AB|Q74|ICD10CM|Other congenital malformations of limb(s)|Other congenital malformations of limb(s) +C0495612|T019|HT|Q74|ICD10CM|Other congenital malformations of limb(s)|Other congenital malformations of limb(s) +C0265609|T019|ET|Q74.0|ICD10CM|Accessory carpal bones|Accessory carpal bones +C0008928|T047|ET|Q74.0|ICD10CM|Cleidocranial dysostosis|Cleidocranial dysostosis +C0265565|T019|ET|Q74.0|ICD10CM|Congenital pseudarthrosis of clavicle|Congenital pseudarthrosis of clavicle +C0158763|T019|ET|Q74.0|ICD10CM|Macrodactylia (fingers)|Macrodactylia (fingers) +C0152441|T019|ET|Q74.0|ICD10CM|Madelung's deformity|Madelung's deformity +C0478070|T019|AB|Q74.0|ICD10CM|Oth congen malform of upper limb(s), inc shoulder girdle|Oth congen malform of upper limb(s), inc shoulder girdle +C0478070|T019|PT|Q74.0|ICD10CM|Other congenital malformations of upper limb(s), including shoulder girdle|Other congenital malformations of upper limb(s), including shoulder girdle +C0478070|T019|PT|Q74.0|ICD10|Other congenital malformations of upper limb(s), including shoulder girdle|Other congenital malformations of upper limb(s), including shoulder girdle +C0158761|T019|ET|Q74.0|ICD10CM|Radioulnar synostosis|Radioulnar synostosis +C0152438|T019|ET|Q74.0|ICD10CM|Sprengel's deformity|Sprengel's deformity +C0241397|T019|ET|Q74.0|ICD10CM|Triphalangeal thumb|Triphalangeal thumb +C0265667|T019|ET|Q74.1|ICD10CM|Congenital absence of patella|Congenital absence of patella +C0345360|T019|ET|Q74.1|ICD10CM|Congenital dislocation of patella|Congenital dislocation of patella +C0265668|T019|ET|Q74.1|ICD10CM|Congenital genu valgum|Congenital genu valgum +C0152432|T019|ET|Q74.1|ICD10CM|Congenital genu varum|Congenital genu varum +C0158767|T019|PT|Q74.1|ICD10CM|Congenital malformation of knee|Congenital malformation of knee +C0158767|T019|AB|Q74.1|ICD10CM|Congenital malformation of knee|Congenital malformation of knee +C0158767|T019|PT|Q74.1|ICD10|Congenital malformation of knee|Congenital malformation of knee +C4510307|T019|ET|Q74.1|ICD10CM|Rudimentary patella|Rudimentary patella +C0265685|T019|ET|Q74.2|ICD10CM|Congenital fusion of sacroiliac joint|Congenital fusion of sacroiliac joint +C2910325|T019|ET|Q74.2|ICD10CM|Congenital malformation of ankle joint|Congenital malformation of ankle joint +C2910326|T019|ET|Q74.2|ICD10CM|Congenital malformation of sacroiliac joint|Congenital malformation of sacroiliac joint +C0478071|T019|AB|Q74.2|ICD10CM|Oth congen malform of lower limb(s), including pelvic girdle|Oth congen malform of lower limb(s), including pelvic girdle +C0478071|T019|PT|Q74.2|ICD10CM|Other congenital malformations of lower limb(s), including pelvic girdle|Other congenital malformations of lower limb(s), including pelvic girdle +C0478071|T019|PT|Q74.2|ICD10|Other congenital malformations of lower limb(s), including pelvic girdle|Other congenital malformations of lower limb(s), including pelvic girdle +C0003886|T047|PT|Q74.3|ICD10CM|Arthrogryposis multiplex congenita|Arthrogryposis multiplex congenita +C0003886|T047|AB|Q74.3|ICD10CM|Arthrogryposis multiplex congenita|Arthrogryposis multiplex congenita +C0003886|T047|PT|Q74.3|ICD10|Arthrogryposis multiplex congenita|Arthrogryposis multiplex congenita +C0478072|T019|PT|Q74.8|ICD10|Other specified congenital malformations of limb(s)|Other specified congenital malformations of limb(s) +C0478072|T019|PT|Q74.8|ICD10CM|Other specified congenital malformations of limb(s)|Other specified congenital malformations of limb(s) +C0478072|T019|AB|Q74.8|ICD10CM|Other specified congenital malformations of limb(s)|Other specified congenital malformations of limb(s) +C0206762|T019|ET|Q74.9|ICD10CM|Congenital anomaly of limb(s) NOS|Congenital anomaly of limb(s) NOS +C0206762|T019|PT|Q74.9|ICD10CM|Unspecified congenital malformation of limb(s)|Unspecified congenital malformation of limb(s) +C0206762|T019|AB|Q74.9|ICD10CM|Unspecified congenital malformation of limb(s)|Unspecified congenital malformation of limb(s) +C0206762|T019|PT|Q74.9|ICD10|Unspecified congenital malformation of limb(s)|Unspecified congenital malformation of limb(s) +C0495614|T019|AB|Q75|ICD10CM|Other congenital malformations of skull and face bones|Other congenital malformations of skull and face bones +C0495614|T019|HT|Q75|ICD10CM|Other congenital malformations of skull and face bones|Other congenital malformations of skull and face bones +C0495614|T019|HT|Q75|ICD10|Other congenital malformations of skull and face bones|Other congenital malformations of skull and face bones +C0030044|T019|ET|Q75.0|ICD10CM|Acrocephaly|Acrocephaly +C0010278|T047|PT|Q75.0|ICD10CM|Craniosynostosis|Craniosynostosis +C0010278|T047|AB|Q75.0|ICD10CM|Craniosynostosis|Craniosynostosis +C0010278|T047|PT|Q75.0|ICD10|Craniosynostosis|Craniosynostosis +C0265536|T019|ET|Q75.0|ICD10CM|Imperfect fusion of skull|Imperfect fusion of skull +C4551646|T019|ET|Q75.0|ICD10CM|Oxycephaly|Oxycephaly +C0265535|T019|ET|Q75.0|ICD10CM|Trigonocephaly|Trigonocephaly +C0010273|T047|PT|Q75.1|ICD10|Craniofacial dysostosis|Craniofacial dysostosis +C0010273|T047|PT|Q75.1|ICD10CM|Craniofacial dysostosis|Craniofacial dysostosis +C0010273|T047|AB|Q75.1|ICD10CM|Craniofacial dysostosis|Craniofacial dysostosis +C0010273|T047|ET|Q75.1|ICD10CM|Crouzon's disease|Crouzon's disease +C0020534|T033|PT|Q75.2|ICD10CM|Hypertelorism|Hypertelorism +C0020534|T033|AB|Q75.2|ICD10CM|Hypertelorism|Hypertelorism +C0020534|T033|PT|Q75.2|ICD10|Hypertelorism|Hypertelorism +C0221355|T019|PT|Q75.3|ICD10|Macrocephaly|Macrocephaly +C0221355|T019|PT|Q75.3|ICD10CM|Macrocephaly|Macrocephaly +C0221355|T019|AB|Q75.3|ICD10CM|Macrocephaly|Macrocephaly +C0242387|T047|ET|Q75.4|ICD10CM|Franceschetti syndrome|Franceschetti syndrome +C0242387|T047|PT|Q75.4|ICD10CM|Mandibulofacial dysostosis|Mandibulofacial dysostosis +C0242387|T047|AB|Q75.4|ICD10CM|Mandibulofacial dysostosis|Mandibulofacial dysostosis +C0242387|T047|PT|Q75.4|ICD10|Mandibulofacial dysostosis|Mandibulofacial dysostosis +C0242387|T047|ET|Q75.4|ICD10CM|Treacher Collins syndrome|Treacher Collins syndrome +C0432076|T019|PT|Q75.5|ICD10CM|Oculomandibular dysostosis|Oculomandibular dysostosis +C0432076|T019|AB|Q75.5|ICD10CM|Oculomandibular dysostosis|Oculomandibular dysostosis +C0432076|T019|PT|Q75.5|ICD10|Oculomandibular dysostosis|Oculomandibular dysostosis +C2937218|T019|ET|Q75.8|ICD10CM|Absence of skull bone, congenital|Absence of skull bone, congenital +C0265533|T019|ET|Q75.8|ICD10CM|Congenital deformity of forehead|Congenital deformity of forehead +C0478073|T019|AB|Q75.8|ICD10CM|Oth congenital malformations of skull and face bones|Oth congenital malformations of skull and face bones +C0478073|T019|PT|Q75.8|ICD10CM|Other specified congenital malformations of skull and face bones|Other specified congenital malformations of skull and face bones +C0478073|T019|PT|Q75.8|ICD10|Other specified congenital malformations of skull and face bones|Other specified congenital malformations of skull and face bones +C0032209|T019|ET|Q75.8|ICD10CM|Platybasia|Platybasia +C0265543|T019|ET|Q75.9|ICD10CM|Congenital anomaly of face bones NOS|Congenital anomaly of face bones NOS +C0265527|T019|ET|Q75.9|ICD10CM|Congenital anomaly of skull NOS|Congenital anomaly of skull NOS +C0495615|T019|PT|Q75.9|ICD10|Congenital malformation of skull and face bones, unspecified|Congenital malformation of skull and face bones, unspecified +C0495615|T019|PT|Q75.9|ICD10CM|Congenital malformation of skull and face bones, unspecified|Congenital malformation of skull and face bones, unspecified +C0495615|T019|AB|Q75.9|ICD10CM|Congenital malformation of skull and face bones, unspecified|Congenital malformation of skull and face bones, unspecified +C0495616|T019|AB|Q76|ICD10CM|Congenital malformations of spine and bony thorax|Congenital malformations of spine and bony thorax +C0495616|T019|HT|Q76|ICD10CM|Congenital malformations of spine and bony thorax|Congenital malformations of spine and bony thorax +C0495616|T019|HT|Q76|ICD10|Congenital malformations of spine and bony thorax|Congenital malformations of spine and bony thorax +C0080174|T019|PT|Q76.0|ICD10|Spina bifida occulta|Spina bifida occulta +C0080174|T019|PT|Q76.0|ICD10CM|Spina bifida occulta|Spina bifida occulta +C0080174|T019|AB|Q76.0|ICD10CM|Spina bifida occulta|Spina bifida occulta +C0022738|T047|ET|Q76.1|ICD10CM|Cervical fusion syndrome|Cervical fusion syndrome +C0022738|T047|PT|Q76.1|ICD10CM|Klippel-Feil syndrome|Klippel-Feil syndrome +C0022738|T047|AB|Q76.1|ICD10CM|Klippel-Feil syndrome|Klippel-Feil syndrome +C0022738|T047|PT|Q76.1|ICD10|Klippel-Feil syndrome|Klippel-Feil syndrome +C0038017|T019|PT|Q76.2|ICD10|Congenital spondylolisthesis|Congenital spondylolisthesis +C0038017|T019|PT|Q76.2|ICD10CM|Congenital spondylolisthesis|Congenital spondylolisthesis +C0038017|T019|AB|Q76.2|ICD10CM|Congenital spondylolisthesis|Congenital spondylolisthesis +C0840926|T019|ET|Q76.2|ICD10CM|Congenital spondylolysis|Congenital spondylolysis +C0495617|T019|PT|Q76.3|ICD10|Congenital scoliosis due to congenital bony malformation|Congenital scoliosis due to congenital bony malformation +C0495617|T019|PT|Q76.3|ICD10CM|Congenital scoliosis due to congenital bony malformation|Congenital scoliosis due to congenital bony malformation +C0495617|T019|AB|Q76.3|ICD10CM|Congenital scoliosis due to congenital bony malformation|Congenital scoliosis due to congenital bony malformation +C2910327|T046|ET|Q76.3|ICD10CM|Hemivertebra fusion or failure of segmentation with scoliosis|Hemivertebra fusion or failure of segmentation with scoliosis +C0478074|T019|AB|Q76.4|ICD10CM|Oth congenital malform of spine, not associated w scoliosis|Oth congenital malform of spine, not associated w scoliosis +C0478074|T019|HT|Q76.4|ICD10CM|Other congenital malformations of spine, not associated with scoliosis|Other congenital malformations of spine, not associated with scoliosis +C0478074|T019|PT|Q76.4|ICD10|Other congenital malformations of spine, not associated with scoliosis|Other congenital malformations of spine, not associated with scoliosis +C0265673|T019|HT|Q76.41|ICD10CM|Congenital kyphosis|Congenital kyphosis +C0265673|T019|AB|Q76.41|ICD10CM|Congenital kyphosis|Congenital kyphosis +C2910328|T019|AB|Q76.411|ICD10CM|Congenital kyphosis, occipito-atlanto-axial region|Congenital kyphosis, occipito-atlanto-axial region +C2910328|T019|PT|Q76.411|ICD10CM|Congenital kyphosis, occipito-atlanto-axial region|Congenital kyphosis, occipito-atlanto-axial region +C2910329|T019|AB|Q76.412|ICD10CM|Congenital kyphosis, cervical region|Congenital kyphosis, cervical region +C2910329|T019|PT|Q76.412|ICD10CM|Congenital kyphosis, cervical region|Congenital kyphosis, cervical region +C2910330|T019|AB|Q76.413|ICD10CM|Congenital kyphosis, cervicothoracic region|Congenital kyphosis, cervicothoracic region +C2910330|T019|PT|Q76.413|ICD10CM|Congenital kyphosis, cervicothoracic region|Congenital kyphosis, cervicothoracic region +C2910331|T019|AB|Q76.414|ICD10CM|Congenital kyphosis, thoracic region|Congenital kyphosis, thoracic region +C2910331|T019|PT|Q76.414|ICD10CM|Congenital kyphosis, thoracic region|Congenital kyphosis, thoracic region +C2910332|T019|AB|Q76.415|ICD10CM|Congenital kyphosis, thoracolumbar region|Congenital kyphosis, thoracolumbar region +C2910332|T019|PT|Q76.415|ICD10CM|Congenital kyphosis, thoracolumbar region|Congenital kyphosis, thoracolumbar region +C2910333|T019|AB|Q76.419|ICD10CM|Congenital kyphosis, unspecified region|Congenital kyphosis, unspecified region +C2910333|T019|PT|Q76.419|ICD10CM|Congenital kyphosis, unspecified region|Congenital kyphosis, unspecified region +C0432144|T019|HT|Q76.42|ICD10CM|Congenital lordosis|Congenital lordosis +C0432144|T019|AB|Q76.42|ICD10CM|Congenital lordosis|Congenital lordosis +C2910334|T019|AB|Q76.425|ICD10CM|Congenital lordosis, thoracolumbar region|Congenital lordosis, thoracolumbar region +C2910334|T019|PT|Q76.425|ICD10CM|Congenital lordosis, thoracolumbar region|Congenital lordosis, thoracolumbar region +C2910335|T019|AB|Q76.426|ICD10CM|Congenital lordosis, lumbar region|Congenital lordosis, lumbar region +C2910335|T019|PT|Q76.426|ICD10CM|Congenital lordosis, lumbar region|Congenital lordosis, lumbar region +C2910336|T019|AB|Q76.427|ICD10CM|Congenital lordosis, lumbosacral region|Congenital lordosis, lumbosacral region +C2910336|T019|PT|Q76.427|ICD10CM|Congenital lordosis, lumbosacral region|Congenital lordosis, lumbosacral region +C2910337|T019|AB|Q76.428|ICD10CM|Congenital lordosis, sacral and sacrococcygeal region|Congenital lordosis, sacral and sacrococcygeal region +C2910337|T019|PT|Q76.428|ICD10CM|Congenital lordosis, sacral and sacrococcygeal region|Congenital lordosis, sacral and sacrococcygeal region +C2910338|T019|AB|Q76.429|ICD10CM|Congenital lordosis, unspecified region|Congenital lordosis, unspecified region +C2910338|T019|PT|Q76.429|ICD10CM|Congenital lordosis, unspecified region|Congenital lordosis, unspecified region +C0158776|T019|ET|Q76.49|ICD10CM|Congenital absence of vertebra NOS|Congenital absence of vertebra NOS +C0265678|T019|ET|Q76.49|ICD10CM|Congenital fusion of spine NOS|Congenital fusion of spine NOS +C2910339|T019|ET|Q76.49|ICD10CM|Congenital malformation of lumbosacral (joint) (region) NOS|Congenital malformation of lumbosacral (joint) (region) NOS +C0158775|T019|ET|Q76.49|ICD10CM|Congenital malformation of spine NOS|Congenital malformation of spine NOS +C0265677|T019|ET|Q76.49|ICD10CM|Hemivertebra NOS|Hemivertebra NOS +C0158775|T019|ET|Q76.49|ICD10CM|Malformation of spine NOS|Malformation of spine NOS +C0478074|T019|AB|Q76.49|ICD10CM|Oth congenital malform of spine, not associated w scoliosis|Oth congenital malform of spine, not associated w scoliosis +C0478074|T019|PT|Q76.49|ICD10CM|Other congenital malformations of spine, not associated with scoliosis|Other congenital malformations of spine, not associated with scoliosis +C1405109|T019|ET|Q76.49|ICD10CM|Platyspondylisis NOS|Platyspondylisis NOS +C0265681|T019|ET|Q76.49|ICD10CM|Supernumerary vertebra NOS|Supernumerary vertebra NOS +C0158779|T019|PT|Q76.5|ICD10CM|Cervical rib|Cervical rib +C0158779|T019|AB|Q76.5|ICD10CM|Cervical rib|Cervical rib +C0158779|T019|PT|Q76.5|ICD10|Cervical rib|Cervical rib +C0158779|T019|ET|Q76.5|ICD10CM|Supernumerary rib in cervical region|Supernumerary rib in cervical region +C0345397|T019|ET|Q76.6|ICD10CM|Accessory rib|Accessory rib +C0265692|T019|ET|Q76.6|ICD10CM|Congenital absence of rib|Congenital absence of rib +C0265695|T019|ET|Q76.6|ICD10CM|Congenital fusion of ribs|Congenital fusion of ribs +C0432172|T019|ET|Q76.6|ICD10CM|Congenital malformation of ribs NOS|Congenital malformation of ribs NOS +C0478075|T019|PT|Q76.6|ICD10CM|Other congenital malformations of ribs|Other congenital malformations of ribs +C0478075|T019|AB|Q76.6|ICD10CM|Other congenital malformations of ribs|Other congenital malformations of ribs +C0478075|T019|PT|Q76.6|ICD10|Other congenital malformations of ribs|Other congenital malformations of ribs +C1364751|T019|ET|Q76.7|ICD10CM|Congenital absence of sternum|Congenital absence of sternum +C0432176|T019|PT|Q76.7|ICD10|Congenital malformation of sternum|Congenital malformation of sternum +C0432176|T019|PT|Q76.7|ICD10CM|Congenital malformation of sternum|Congenital malformation of sternum +C0432176|T019|AB|Q76.7|ICD10CM|Congenital malformation of sternum|Congenital malformation of sternum +C2931507|T019|ET|Q76.7|ICD10CM|Sternum bifidum|Sternum bifidum +C0478076|T019|PT|Q76.8|ICD10CM|Other congenital malformations of bony thorax|Other congenital malformations of bony thorax +C0478076|T019|AB|Q76.8|ICD10CM|Other congenital malformations of bony thorax|Other congenital malformations of bony thorax +C0478076|T019|PT|Q76.8|ICD10|Other congenital malformations of bony thorax|Other congenital malformations of bony thorax +C0478081|T019|PT|Q76.9|ICD10|Congenital malformation of bony thorax, unspecified|Congenital malformation of bony thorax, unspecified +C0478081|T019|PT|Q76.9|ICD10CM|Congenital malformation of bony thorax, unspecified|Congenital malformation of bony thorax, unspecified +C0478081|T019|AB|Q76.9|ICD10CM|Congenital malformation of bony thorax, unspecified|Congenital malformation of bony thorax, unspecified +C0478082|T019|AB|Q77|ICD10CM|Osteochndrdys w defects of growth of tubular bones and spine|Osteochndrdys w defects of growth of tubular bones and spine +C0478082|T019|HT|Q77|ICD10CM|Osteochondrodysplasia with defects of growth of tubular bones and spine|Osteochondrodysplasia with defects of growth of tubular bones and spine +C0478082|T019|HT|Q77|ICD10|Osteochondrodysplasia with defects of growth of tubular bones and spine|Osteochondrodysplasia with defects of growth of tubular bones and spine +C0001079|T019|PT|Q77.0|ICD10|Achondrogenesis|Achondrogenesis +C0001079|T019|PT|Q77.0|ICD10CM|Achondrogenesis|Achondrogenesis +C0001079|T019|AB|Q77.0|ICD10CM|Achondrogenesis|Achondrogenesis +C0542428|T019|ET|Q77.0|ICD10CM|Hypochondrogenesis|Hypochondrogenesis +C0039743|T019|PT|Q77.1|ICD10CM|Thanatophoric short stature|Thanatophoric short stature +C0039743|T019|AB|Q77.1|ICD10CM|Thanatophoric short stature|Thanatophoric short stature +C0039743|T019|PT|Q77.1|ICD10|Thanatophoric short stature|Thanatophoric short stature +C2910340|T047|ET|Q77.2|ICD10CM|Asphyxiating thoracic dysplasia [Jeune]|Asphyxiating thoracic dysplasia [Jeune] +C0432195|T019|PT|Q77.2|ICD10|Short rib syndrome|Short rib syndrome +C0432195|T019|PT|Q77.2|ICD10CM|Short rib syndrome|Short rib syndrome +C0432195|T019|AB|Q77.2|ICD10CM|Short rib syndrome|Short rib syndrome +C0008445|T019|PT|Q77.3|ICD10|Chondrodysplasia punctata|Chondrodysplasia punctata +C0008445|T019|PT|Q77.3|ICD10CM|Chondrodysplasia punctata|Chondrodysplasia punctata +C0008445|T019|AB|Q77.3|ICD10CM|Chondrodysplasia punctata|Chondrodysplasia punctata +C0001080|T019|PT|Q77.4|ICD10CM|Achondroplasia|Achondroplasia +C0001080|T019|AB|Q77.4|ICD10CM|Achondroplasia|Achondroplasia +C0001080|T019|PT|Q77.4|ICD10|Achondroplasia|Achondroplasia +C0410529|T019|ET|Q77.4|ICD10CM|Hypochondroplasia|Hypochondroplasia +C0001080|T019|ET|Q77.4|ICD10CM|Osteosclerosis congenita|Osteosclerosis congenita +C0220726|T047|PT|Q77.5|ICD10CM|Diastrophic dysplasia|Diastrophic dysplasia +C0220726|T047|AB|Q77.5|ICD10CM|Diastrophic dysplasia|Diastrophic dysplasia +C0495620|T019|PT|Q77.5|ICD10|Dystrophic dysplasia|Dystrophic dysplasia +C0013903|T047|PT|Q77.6|ICD10|Chondroectodermal dysplasia|Chondroectodermal dysplasia +C0013903|T047|PT|Q77.6|ICD10CM|Chondroectodermal dysplasia|Chondroectodermal dysplasia +C0013903|T047|AB|Q77.6|ICD10CM|Chondroectodermal dysplasia|Chondroectodermal dysplasia +C0013903|T047|ET|Q77.6|ICD10CM|Ellis-van Creveld syndrome|Ellis-van Creveld syndrome +C2745959|T019|PT|Q77.7|ICD10|Spondyloepiphyseal dysplasia|Spondyloepiphyseal dysplasia +C2745959|T019|PT|Q77.7|ICD10CM|Spondyloepiphyseal dysplasia|Spondyloepiphyseal dysplasia +C2745959|T019|AB|Q77.7|ICD10CM|Spondyloepiphyseal dysplasia|Spondyloepiphyseal dysplasia +C0478077|T019|AB|Q77.8|ICD10CM|Oth osteochndrdys w defct of growth of tublr bones and spine|Oth osteochndrdys w defct of growth of tublr bones and spine +C0478077|T019|PT|Q77.8|ICD10CM|Other osteochondrodysplasia with defects of growth of tubular bones and spine|Other osteochondrodysplasia with defects of growth of tubular bones and spine +C0478077|T019|PT|Q77.8|ICD10|Other osteochondrodysplasia with defects of growth of tubular bones and spine|Other osteochondrodysplasia with defects of growth of tubular bones and spine +C0478082|T019|AB|Q77.9|ICD10CM|Osteochndrdys w defct of grth of tublr bones and spine, unsp|Osteochndrdys w defct of grth of tublr bones and spine, unsp +C0478082|T019|PT|Q77.9|ICD10CM|Osteochondrodysplasia with defects of growth of tubular bones and spine, unspecified|Osteochondrodysplasia with defects of growth of tubular bones and spine, unspecified +C0478082|T019|PT|Q77.9|ICD10|Osteochondrodysplasia with defects of growth of tubular bones and spine, unspecified|Osteochondrodysplasia with defects of growth of tubular bones and spine, unspecified +C0495621|T019|HT|Q78|ICD10|Other osteochondrodysplasias|Other osteochondrodysplasias +C0495621|T019|AB|Q78|ICD10CM|Other osteochondrodysplasias|Other osteochondrodysplasias +C0495621|T019|HT|Q78|ICD10CM|Other osteochondrodysplasias|Other osteochondrodysplasias +C0029434|T047|ET|Q78.0|ICD10CM|Fragilitas ossium|Fragilitas ossium +C0029434|T047|PT|Q78.0|ICD10CM|Osteogenesis imperfecta|Osteogenesis imperfecta +C0029434|T047|AB|Q78.0|ICD10CM|Osteogenesis imperfecta|Osteogenesis imperfecta +C0029434|T047|PT|Q78.0|ICD10|Osteogenesis imperfecta|Osteogenesis imperfecta +C0029434|T047|ET|Q78.0|ICD10CM|Osteopsathyrosis|Osteopsathyrosis +C0242292|T047|ET|Q78.1|ICD10CM|Albright(-McCune)(-Sternberg) syndrome|Albright(-McCune)(-Sternberg) syndrome +C0016065|T019|PT|Q78.1|ICD10CM|Polyostotic fibrous dysplasia|Polyostotic fibrous dysplasia +C0016065|T019|AB|Q78.1|ICD10CM|Polyostotic fibrous dysplasia|Polyostotic fibrous dysplasia +C0016065|T019|PT|Q78.1|ICD10|Polyostotic fibrous dysplasia|Polyostotic fibrous dysplasia +C0029454|T047|ET|Q78.2|ICD10CM|Albers-Schönberg syndrome|Albers-Schönberg syndrome +C0029454|T047|PT|Q78.2|ICD10CM|Osteopetrosis|Osteopetrosis +C0029454|T047|AB|Q78.2|ICD10CM|Osteopetrosis|Osteopetrosis +C0029454|T047|PT|Q78.2|ICD10|Osteopetrosis|Osteopetrosis +C0029464|T047|ET|Q78.2|ICD10CM|Osteosclerosis NOS|Osteosclerosis NOS +C0011989|T047|ET|Q78.3|ICD10CM|Camurati-Engelmann syndrome|Camurati-Engelmann syndrome +C0011989|T047|PT|Q78.3|ICD10CM|Progressive diaphyseal dysplasia|Progressive diaphyseal dysplasia +C0011989|T047|AB|Q78.3|ICD10CM|Progressive diaphyseal dysplasia|Progressive diaphyseal dysplasia +C0011989|T047|PT|Q78.3|ICD10|Progressive diaphyseal dysplasia|Progressive diaphyseal dysplasia +C0014084|T047|PT|Q78.4|ICD10|Enchondromatosis|Enchondromatosis +C0014084|T047|PT|Q78.4|ICD10CM|Enchondromatosis|Enchondromatosis +C0014084|T047|AB|Q78.4|ICD10CM|Enchondromatosis|Enchondromatosis +C0024454|T047|ET|Q78.4|ICD10CM|Maffucci's syndrome|Maffucci's syndrome +C0014084|T047|ET|Q78.4|ICD10CM|Ollier's disease|Ollier's disease +C0265294|T047|PT|Q78.5|ICD10|Metaphyseal dysplasia|Metaphyseal dysplasia +C0265294|T047|PT|Q78.5|ICD10CM|Metaphyseal dysplasia|Metaphyseal dysplasia +C0265294|T047|AB|Q78.5|ICD10CM|Metaphyseal dysplasia|Metaphyseal dysplasia +C2910341|T047|ET|Q78.5|ICD10CM|Pyle's syndrome|Pyle's syndrome +C0015306|T019|ET|Q78.6|ICD10CM|Diaphyseal aclasis|Diaphyseal aclasis +C0015306|T019|PT|Q78.6|ICD10CM|Multiple congenital exostoses|Multiple congenital exostoses +C0015306|T019|AB|Q78.6|ICD10CM|Multiple congenital exostoses|Multiple congenital exostoses +C0015306|T019|PT|Q78.6|ICD10|Multiple congenital exostoses|Multiple congenital exostoses +C0029455|T047|ET|Q78.8|ICD10CM|Osteopoikilosis|Osteopoikilosis +C0478078|T019|PT|Q78.8|ICD10|Other specified osteochondrodysplasias|Other specified osteochondrodysplasias +C0478078|T019|PT|Q78.8|ICD10CM|Other specified osteochondrodysplasias|Other specified osteochondrodysplasias +C0478078|T019|AB|Q78.8|ICD10CM|Other specified osteochondrodysplasias|Other specified osteochondrodysplasias +C0008449|T047|ET|Q78.9|ICD10CM|Chondrodystrophy NOS|Chondrodystrophy NOS +C0029422|T047|PT|Q78.9|ICD10CM|Osteochondrodysplasia, unspecified|Osteochondrodysplasia, unspecified +C0029422|T047|AB|Q78.9|ICD10CM|Osteochondrodysplasia, unspecified|Osteochondrodysplasia, unspecified +C0029422|T047|PT|Q78.9|ICD10|Osteochondrodysplasia, unspecified|Osteochondrodysplasia, unspecified +C0264009|T019|ET|Q78.9|ICD10CM|Osteodystrophy NOS|Osteodystrophy NOS +C0264009|T047|ET|Q78.9|ICD10CM|Osteodystrophy NOS|Osteodystrophy NOS +C0869494|T019|AB|Q79|ICD10CM|Congenital malformations of musculoskeletal system, NEC|Congenital malformations of musculoskeletal system, NEC +C0869494|T019|HT|Q79|ICD10CM|Congenital malformations of musculoskeletal system, not elsewhere classified|Congenital malformations of musculoskeletal system, not elsewhere classified +C0869494|T019|HT|Q79|ICD10|Congenital malformations of the musculoskeletal system, not elsewhere classified|Congenital malformations of the musculoskeletal system, not elsewhere classified +C0235833|T019|PT|Q79.0|ICD10CM|Congenital diaphragmatic hernia|Congenital diaphragmatic hernia +C0235833|T019|AB|Q79.0|ICD10CM|Congenital diaphragmatic hernia|Congenital diaphragmatic hernia +C0235833|T019|PT|Q79.0|ICD10|Congenital diaphragmatic hernia|Congenital diaphragmatic hernia +C0221360|T019|ET|Q79.1|ICD10CM|Absence of diaphragm|Absence of diaphragm +C0158782|T019|ET|Q79.1|ICD10CM|Congenital malformation of diaphragm NOS|Congenital malformation of diaphragm NOS +C0011981|T019|ET|Q79.1|ICD10CM|Eventration of diaphragm|Eventration of diaphragm +C0478079|T019|PT|Q79.1|ICD10CM|Other congenital malformations of diaphragm|Other congenital malformations of diaphragm +C0478079|T019|AB|Q79.1|ICD10CM|Other congenital malformations of diaphragm|Other congenital malformations of diaphragm +C0478079|T019|PT|Q79.1|ICD10|Other congenital malformations of diaphragm|Other congenital malformations of diaphragm +C1306503|T019|PT|Q79.2|ICD10|Exomphalos|Exomphalos +C1306503|T019|PT|Q79.2|ICD10CM|Exomphalos|Exomphalos +C1306503|T019|AB|Q79.2|ICD10CM|Exomphalos|Exomphalos +C0795690|T019|ET|Q79.2|ICD10CM|Omphalocele|Omphalocele +C0265706|T047|PT|Q79.3|ICD10|Gastroschisis|Gastroschisis +C0265706|T047|PT|Q79.3|ICD10CM|Gastroschisis|Gastroschisis +C0265706|T047|AB|Q79.3|ICD10CM|Gastroschisis|Gastroschisis +C0345342|T019|ET|Q79.4|ICD10CM|Congenital prolapse of bladder mucosa|Congenital prolapse of bladder mucosa +C0033770|T047|ET|Q79.4|ICD10CM|Eagle-Barrett syndrome|Eagle-Barrett syndrome +C0033770|T047|PT|Q79.4|ICD10CM|Prune belly syndrome|Prune belly syndrome +C0033770|T047|AB|Q79.4|ICD10CM|Prune belly syndrome|Prune belly syndrome +C0033770|T047|PT|Q79.4|ICD10|Prune belly syndrome|Prune belly syndrome +C0490010|T019|PT|Q79.5|ICD10|Other congenital malformations of abdominal wall|Other congenital malformations of abdominal wall +C0490010|T019|HT|Q79.5|ICD10CM|Other congenital malformations of abdominal wall|Other congenital malformations of abdominal wall +C0490010|T019|AB|Q79.5|ICD10CM|Other congenital malformations of abdominal wall|Other congenital malformations of abdominal wall +C0266340|T019|PT|Q79.51|ICD10CM|Congenital hernia of bladder|Congenital hernia of bladder +C0266340|T019|AB|Q79.51|ICD10CM|Congenital hernia of bladder|Congenital hernia of bladder +C0490010|T019|PT|Q79.59|ICD10CM|Other congenital malformations of abdominal wall|Other congenital malformations of abdominal wall +C0490010|T019|AB|Q79.59|ICD10CM|Other congenital malformations of abdominal wall|Other congenital malformations of abdominal wall +C0013720|T047|PT|Q79.6|ICD10|Ehlers-Danlos syndrome|Ehlers-Danlos syndrome +C0013720|T047|AB|Q79.6|ICD10CM|Ehlers-Danlos syndromes|Ehlers-Danlos syndromes +C0013720|T047|HT|Q79.6|ICD10CM|Ehlers-Danlos syndromes|Ehlers-Danlos syndromes +C0013720|T047|AB|Q79.60|ICD10CM|Ehlers-Danlos syndrome, unspecified|Ehlers-Danlos syndrome, unspecified +C0013720|T047|PT|Q79.60|ICD10CM|Ehlers-Danlos syndrome, unspecified|Ehlers-Danlos syndrome, unspecified +C5140890|T047|ET|Q79.61|ICD10CM|Classical EDS (cEDS)|Classical EDS (cEDS) +C5140890|T047|PT|Q79.61|ICD10CM|Classical Ehlers-Danlos syndrome|Classical Ehlers-Danlos syndrome +C5140890|T047|AB|Q79.61|ICD10CM|Classical Ehlers-Danlos syndrome|Classical Ehlers-Danlos syndrome +C0268337|T047|ET|Q79.62|ICD10CM|Hypermobile EDS (hEDS)|Hypermobile EDS (hEDS) +C0268337|T047|AB|Q79.62|ICD10CM|Hypermobile Ehlers-Danlos syndrome|Hypermobile Ehlers-Danlos syndrome +C0268337|T047|PT|Q79.62|ICD10CM|Hypermobile Ehlers-Danlos syndrome|Hypermobile Ehlers-Danlos syndrome +C5140891|T047|ET|Q79.63|ICD10CM|Vascular EDS (vEDS)|Vascular EDS (vEDS) +C5140891|T047|AB|Q79.63|ICD10CM|Vascular Ehlers-Danlos syndrome|Vascular Ehlers-Danlos syndrome +C5140891|T047|PT|Q79.63|ICD10CM|Vascular Ehlers-Danlos syndrome|Vascular Ehlers-Danlos syndrome +C5140892|T047|AB|Q79.69|ICD10CM|Other Ehlers-Danlos syndromes|Other Ehlers-Danlos syndromes +C5140892|T047|PT|Q79.69|ICD10CM|Other Ehlers-Danlos syndromes|Other Ehlers-Danlos syndromes +C1456418|T019|ET|Q79.8|ICD10CM|Absence of muscle|Absence of muscle +C0432186|T019|ET|Q79.8|ICD10CM|Absence of tendon|Absence of tendon +C0158784|T019|ET|Q79.8|ICD10CM|Accessory muscle|Accessory muscle +C0265520|T019|ET|Q79.8|ICD10CM|Amyotrophia congenita|Amyotrophia congenita +C0220724|T019|ET|Q79.8|ICD10CM|Congenital constricting bands|Congenital constricting bands +C0265522|T019|ET|Q79.8|ICD10CM|Congenital shortening of tendon|Congenital shortening of tendon +C0478080|T019|PT|Q79.8|ICD10CM|Other congenital malformations of musculoskeletal system|Other congenital malformations of musculoskeletal system +C0478080|T019|AB|Q79.8|ICD10CM|Other congenital malformations of musculoskeletal system|Other congenital malformations of musculoskeletal system +C0478080|T019|PT|Q79.8|ICD10|Other congenital malformations of musculoskeletal system|Other congenital malformations of musculoskeletal system +C0032357|T047|ET|Q79.8|ICD10CM|Poland syndrome|Poland syndrome +C0151491|T019|ET|Q79.9|ICD10CM|Congenital anomaly of musculoskeletal system NOS|Congenital anomaly of musculoskeletal system NOS +C0151491|T019|ET|Q79.9|ICD10CM|Congenital deformity of musculoskeletal system NOS|Congenital deformity of musculoskeletal system NOS +C0151491|T019|AB|Q79.9|ICD10CM|Congenital malformation of musculoskeletal system, unsp|Congenital malformation of musculoskeletal system, unsp +C0151491|T019|PT|Q79.9|ICD10CM|Congenital malformation of musculoskeletal system, unspecified|Congenital malformation of musculoskeletal system, unspecified +C0151491|T019|PT|Q79.9|ICD10|Congenital malformation of musculoskeletal system, unspecified|Congenital malformation of musculoskeletal system, unspecified +C0020758|T047|HT|Q80|ICD10|Congenital ichthyosis|Congenital ichthyosis +C0020758|T047|HT|Q80|ICD10CM|Congenital ichthyosis|Congenital ichthyosis +C0020758|T047|AB|Q80|ICD10CM|Congenital ichthyosis|Congenital ichthyosis +C0158795|T019|HT|Q80-Q89|ICD10CM|Other congenital malformations (Q80-Q89)|Other congenital malformations (Q80-Q89) +C0158795|T019|HT|Q80-Q89.9|ICD10|Other congenital malformations|Other congenital malformations +C0079584|T019|PT|Q80.0|ICD10|Ichthyosis vulgaris|Ichthyosis vulgaris +C0079584|T047|PT|Q80.0|ICD10|Ichthyosis vulgaris|Ichthyosis vulgaris +C0079584|T019|PT|Q80.0|ICD10CM|Ichthyosis vulgaris|Ichthyosis vulgaris +C0079584|T047|PT|Q80.0|ICD10CM|Ichthyosis vulgaris|Ichthyosis vulgaris +C0079584|T019|AB|Q80.0|ICD10CM|Ichthyosis vulgaris|Ichthyosis vulgaris +C0079584|T047|AB|Q80.0|ICD10CM|Ichthyosis vulgaris|Ichthyosis vulgaris +C0079588|T047|PT|Q80.1|ICD10CM|X-linked ichthyosis|X-linked ichthyosis +C0079588|T047|AB|Q80.1|ICD10CM|X-linked ichthyosis|X-linked ichthyosis +C0079588|T047|PT|Q80.1|ICD10|X-linked ichthyosis|X-linked ichthyosis +C0079154|T047|ET|Q80.2|ICD10CM|Collodion baby|Collodion baby +C0079154|T047|PT|Q80.2|ICD10CM|Lamellar ichthyosis|Lamellar ichthyosis +C0079154|T047|AB|Q80.2|ICD10CM|Lamellar ichthyosis|Lamellar ichthyosis +C0079154|T047|PT|Q80.2|ICD10|Lamellar ichthyosis|Lamellar ichthyosis +C0079153|T019|PT|Q80.3|ICD10|Congenital bullous ichthyosiform erythroderma|Congenital bullous ichthyosiform erythroderma +C0079153|T019|AB|Q80.3|ICD10CM|Congenital bullous ichthyosiform erythroderma|Congenital bullous ichthyosiform erythroderma +C0079153|T019|PT|Q80.3|ICD10CM|Congenital bullous ichthyosiform erythroderma|Congenital bullous ichthyosiform erythroderma +C0239849|T047|PT|Q80.4|ICD10|Harlequin fetus|Harlequin fetus +C0239849|T047|PT|Q80.4|ICD10CM|Harlequin fetus|Harlequin fetus +C0239849|T047|AB|Q80.4|ICD10CM|Harlequin fetus|Harlequin fetus +C0478084|T019|PT|Q80.8|ICD10|Other congenital ichthyosis|Other congenital ichthyosis +C0478084|T047|PT|Q80.8|ICD10|Other congenital ichthyosis|Other congenital ichthyosis +C0478084|T019|PT|Q80.8|ICD10CM|Other congenital ichthyosis|Other congenital ichthyosis +C0478084|T047|PT|Q80.8|ICD10CM|Other congenital ichthyosis|Other congenital ichthyosis +C0478084|T019|AB|Q80.8|ICD10CM|Other congenital ichthyosis|Other congenital ichthyosis +C0478084|T047|AB|Q80.8|ICD10CM|Other congenital ichthyosis|Other congenital ichthyosis +C0020758|T047|PT|Q80.9|ICD10CM|Congenital ichthyosis, unspecified|Congenital ichthyosis, unspecified +C0020758|T047|AB|Q80.9|ICD10CM|Congenital ichthyosis, unspecified|Congenital ichthyosis, unspecified +C0020758|T047|PT|Q80.9|ICD10|Congenital ichthyosis, unspecified|Congenital ichthyosis, unspecified +C0014527|T019|HT|Q81|ICD10|Epidermolysis bullosa|Epidermolysis bullosa +C0014527|T019|HT|Q81|ICD10CM|Epidermolysis bullosa|Epidermolysis bullosa +C0014527|T019|AB|Q81|ICD10CM|Epidermolysis bullosa|Epidermolysis bullosa +C0079298|T047|PT|Q81.0|ICD10|Epidermolysis bullosa simplex|Epidermolysis bullosa simplex +C0079298|T047|PT|Q81.0|ICD10CM|Epidermolysis bullosa simplex|Epidermolysis bullosa simplex +C0079298|T047|AB|Q81.0|ICD10CM|Epidermolysis bullosa simplex|Epidermolysis bullosa simplex +C0079683|T047|PT|Q81.1|ICD10CM|Epidermolysis bullosa letalis|Epidermolysis bullosa letalis +C0079683|T047|AB|Q81.1|ICD10CM|Epidermolysis bullosa letalis|Epidermolysis bullosa letalis +C0079683|T047|PT|Q81.1|ICD10|Epidermolysis bullosa letalis|Epidermolysis bullosa letalis +C0079683|T047|ET|Q81.1|ICD10CM|Herlitz' syndrome|Herlitz' syndrome +C0079294|T047|PT|Q81.2|ICD10CM|Epidermolysis bullosa dystrophica|Epidermolysis bullosa dystrophica +C0079294|T047|AB|Q81.2|ICD10CM|Epidermolysis bullosa dystrophica|Epidermolysis bullosa dystrophica +C0079294|T047|PT|Q81.2|ICD10|Epidermolysis bullosa dystrophica|Epidermolysis bullosa dystrophica +C0478085|T019|PT|Q81.8|ICD10CM|Other epidermolysis bullosa|Other epidermolysis bullosa +C0478085|T019|AB|Q81.8|ICD10CM|Other epidermolysis bullosa|Other epidermolysis bullosa +C0478085|T019|PT|Q81.8|ICD10|Other epidermolysis bullosa|Other epidermolysis bullosa +C0014527|T019|PT|Q81.9|ICD10|Epidermolysis bullosa, unspecified|Epidermolysis bullosa, unspecified +C0014527|T019|PT|Q81.9|ICD10CM|Epidermolysis bullosa, unspecified|Epidermolysis bullosa, unspecified +C0014527|T019|AB|Q81.9|ICD10CM|Epidermolysis bullosa, unspecified|Epidermolysis bullosa, unspecified +C0497389|T019|HT|Q82|ICD10|Other congenital malformations of skin|Other congenital malformations of skin +C0497389|T019|AB|Q82|ICD10CM|Other congenital malformations of skin|Other congenital malformations of skin +C0497389|T019|HT|Q82|ICD10CM|Other congenital malformations of skin|Other congenital malformations of skin +C1704423|T047|PT|Q82.0|ICD10AE|Hereditary lymphedema|Hereditary lymphedema +C1704423|T047|PT|Q82.0|ICD10CM|Hereditary lymphedema|Hereditary lymphedema +C1704423|T047|AB|Q82.0|ICD10CM|Hereditary lymphedema|Hereditary lymphedema +C1704423|T047|PT|Q82.0|ICD10|Hereditary lymphoedema|Hereditary lymphoedema +C0043346|T019|PT|Q82.1|ICD10|Xeroderma pigmentosum|Xeroderma pigmentosum +C0043346|T019|PT|Q82.1|ICD10CM|Xeroderma pigmentosum|Xeroderma pigmentosum +C0043346|T019|AB|Q82.1|ICD10CM|Xeroderma pigmentosum|Xeroderma pigmentosum +C0024899|T047|AB|Q82.2|ICD10CM|Congenital cutaneous mastocytosis|Congenital cutaneous mastocytosis +C0024899|T047|PT|Q82.2|ICD10CM|Congenital cutaneous mastocytosis|Congenital cutaneous mastocytosis +C4509433|T047|ET|Q82.2|ICD10CM|Congenital diffuse cutaneous mastocytosis|Congenital diffuse cutaneous mastocytosis +C4509595|T047|ET|Q82.2|ICD10CM|Congenital maculopapular cutaneous mastocytosis|Congenital maculopapular cutaneous mastocytosis +C4509434|T047|ET|Q82.2|ICD10CM|Congenital urticaria pigmentosa|Congenital urticaria pigmentosa +C0024899|T047|PT|Q82.2|ICD10|Mastocytosis|Mastocytosis +C0021171|T047|PT|Q82.3|ICD10|Incontinentia pigmenti|Incontinentia pigmenti +C0021171|T047|PT|Q82.3|ICD10CM|Incontinentia pigmenti|Incontinentia pigmenti +C0021171|T047|AB|Q82.3|ICD10CM|Incontinentia pigmenti|Incontinentia pigmenti +C1706004|T019|PT|Q82.4|ICD10|Ectodermal dysplasia (anhidrotic)|Ectodermal dysplasia (anhidrotic) +C1706004|T019|PT|Q82.4|ICD10CM|Ectodermal dysplasia (anhidrotic)|Ectodermal dysplasia (anhidrotic) +C1706004|T019|AB|Q82.4|ICD10CM|Ectodermal dysplasia (anhidrotic)|Ectodermal dysplasia (anhidrotic) +C0265974|T019|ET|Q82.5|ICD10CM|Birthmark NOS|Birthmark NOS +C0474891|T019|PT|Q82.5|ICD10|Congenital non-neoplastic naevus|Congenital non-neoplastic naevus +C0474891|T019|PT|Q82.5|ICD10AE|Congenital non-neoplastic nevus|Congenital non-neoplastic nevus +C0474891|T019|PT|Q82.5|ICD10CM|Congenital non-neoplastic nevus|Congenital non-neoplastic nevus +C0474891|T019|AB|Q82.5|ICD10CM|Congenital non-neoplastic nevus|Congenital non-neoplastic nevus +C0235752|T019|ET|Q82.5|ICD10CM|Flammeus Nevus|Flammeus Nevus +C0235752|T019|ET|Q82.5|ICD10CM|Portwine Nevus|Portwine Nevus +C0265973|T019|ET|Q82.5|ICD10CM|Sanguineous Nevus|Sanguineous Nevus +C0206733|T191|ET|Q82.5|ICD10CM|Strawberry Nevus|Strawberry Nevus +C0265973|T019|ET|Q82.5|ICD10CM|Vascular Nevus NOS|Vascular Nevus NOS +C0362030|T047|ET|Q82.5|ICD10CM|Verrucous Nevus|Verrucous Nevus +C1096190|T019|AB|Q82.6|ICD10CM|Congenital sacral dimple|Congenital sacral dimple +C1096190|T019|PT|Q82.6|ICD10CM|Congenital sacral dimple|Congenital sacral dimple +C0558383|T033|ET|Q82.6|ICD10CM|Parasacral dimple|Parasacral dimple +C0221199|T019|ET|Q82.8|ICD10CM|Abnormal palmar creases|Abnormal palmar creases +C0265988|T019|ET|Q82.8|ICD10CM|Accessory skin tags|Accessory skin tags +C0085106|T047|ET|Q82.8|ICD10CM|Benign familial pemphigus [Hailey-Hailey]|Benign familial pemphigus [Hailey-Hailey] +C0032339|T047|ET|Q82.8|ICD10CM|Congenital poikiloderma|Congenital poikiloderma +C0010495|T047|ET|Q82.8|ICD10CM|Cutis laxa (hyperelastica)|Cutis laxa (hyperelastica) +C0432333|T019|ET|Q82.8|ICD10CM|Dermatoglyphic anomalies|Dermatoglyphic anomalies +C2910342|T047|ET|Q82.8|ICD10CM|Inherited keratosis palmaris et plantaris|Inherited keratosis palmaris et plantaris +C2910343|T047|ET|Q82.8|ICD10CM|Keratosis follicularis [Darier-White]|Keratosis follicularis [Darier-White] +C2363246|T019|PT|Q82.8|ICD10|Other specified congenital malformations of skin|Other specified congenital malformations of skin +C2363246|T019|PT|Q82.8|ICD10CM|Other specified congenital malformations of skin|Other specified congenital malformations of skin +C2363246|T019|AB|Q82.8|ICD10CM|Other specified congenital malformations of skin|Other specified congenital malformations of skin +C0037268|T019|PT|Q82.9|ICD10CM|Congenital malformation of skin, unspecified|Congenital malformation of skin, unspecified +C0037268|T019|AB|Q82.9|ICD10CM|Congenital malformation of skin, unspecified|Congenital malformation of skin, unspecified +C0037268|T019|PT|Q82.9|ICD10|Congenital malformation of skin, unspecified|Congenital malformation of skin, unspecified +C0266008|T019|HT|Q83|ICD10|Congenital malformations of breast|Congenital malformations of breast +C0266008|T019|AB|Q83|ICD10CM|Congenital malformations of breast|Congenital malformations of breast +C0266008|T019|HT|Q83|ICD10CM|Congenital malformations of breast|Congenital malformations of breast +C0432357|T019|PT|Q83.0|ICD10CM|Congenital absence of breast with absent nipple|Congenital absence of breast with absent nipple +C0432357|T019|AB|Q83.0|ICD10CM|Congenital absence of breast with absent nipple|Congenital absence of breast with absent nipple +C0432357|T019|PT|Q83.0|ICD10|Congenital absence of breast with absent nipple|Congenital absence of breast with absent nipple +C0266010|T019|PT|Q83.1|ICD10CM|Accessory breast|Accessory breast +C0266010|T019|AB|Q83.1|ICD10CM|Accessory breast|Accessory breast +C0266010|T019|PT|Q83.1|ICD10|Accessory breast|Accessory breast +C0266010|T019|ET|Q83.1|ICD10CM|Supernumerary breast|Supernumerary breast +C0175755|T019|PT|Q83.2|ICD10CM|Absent nipple|Absent nipple +C0175755|T019|AB|Q83.2|ICD10CM|Absent nipple|Absent nipple +C0175755|T019|PT|Q83.2|ICD10|Absent nipple|Absent nipple +C0266011|T019|PT|Q83.3|ICD10|Accessory nipple|Accessory nipple +C0266011|T019|PT|Q83.3|ICD10CM|Accessory nipple|Accessory nipple +C0266011|T019|AB|Q83.3|ICD10CM|Accessory nipple|Accessory nipple +C0266011|T019|ET|Q83.3|ICD10CM|Supernumerary nipple|Supernumerary nipple +C0478087|T019|PT|Q83.8|ICD10|Other congenital malformations of breast|Other congenital malformations of breast +C0478087|T019|PT|Q83.8|ICD10CM|Other congenital malformations of breast|Other congenital malformations of breast +C0478087|T019|AB|Q83.8|ICD10CM|Other congenital malformations of breast|Other congenital malformations of breast +C0266008|T019|PT|Q83.9|ICD10CM|Congenital malformation of breast, unspecified|Congenital malformation of breast, unspecified +C0266008|T019|AB|Q83.9|ICD10CM|Congenital malformation of breast, unspecified|Congenital malformation of breast, unspecified +C0266008|T019|PT|Q83.9|ICD10|Congenital malformation of breast, unspecified|Congenital malformation of breast, unspecified +C0497389|T019|AB|Q84|ICD10CM|Other congenital malformations of integument|Other congenital malformations of integument +C0497389|T019|HT|Q84|ICD10CM|Other congenital malformations of integument|Other congenital malformations of integument +C0497389|T019|HT|Q84|ICD10|Other congenital malformations of integument|Other congenital malformations of integument +C0265992|T019|PT|Q84.0|ICD10|Congenital alopecia|Congenital alopecia +C0265992|T019|PT|Q84.0|ICD10CM|Congenital alopecia|Congenital alopecia +C0265992|T019|AB|Q84.0|ICD10CM|Congenital alopecia|Congenital alopecia +C0265992|T019|ET|Q84.0|ICD10CM|Congenital atrichosis|Congenital atrichosis +C0546966|T019|ET|Q84.1|ICD10CM|Beaded hair|Beaded hair +C0495628|T019|AB|Q84.1|ICD10CM|Congenital morphological disturbances of hair, NEC|Congenital morphological disturbances of hair, NEC +C0495628|T019|PT|Q84.1|ICD10CM|Congenital morphological disturbances of hair, not elsewhere classified|Congenital morphological disturbances of hair, not elsewhere classified +C0495628|T019|PT|Q84.1|ICD10|Congenital morphological disturbances of hair, not elsewhere classified|Congenital morphological disturbances of hair, not elsewhere classified +C0546966|T019|ET|Q84.1|ICD10CM|Monilethrix|Monilethrix +C0263489|T047|ET|Q84.1|ICD10CM|Pili annulati|Pili annulati +C2936812|T019|ET|Q84.2|ICD10CM|Congenital hypertrichosis|Congenital hypertrichosis +C0265991|T019|ET|Q84.2|ICD10CM|Congenital malformation of hair NOS|Congenital malformation of hair NOS +C0478088|T019|PT|Q84.2|ICD10|Other congenital malformations of hair|Other congenital malformations of hair +C0478088|T019|PT|Q84.2|ICD10CM|Other congenital malformations of hair|Other congenital malformations of hair +C0478088|T019|AB|Q84.2|ICD10CM|Other congenital malformations of hair|Other congenital malformations of hair +C0265994|T019|ET|Q84.2|ICD10CM|Persistent lanugo|Persistent lanugo +C0265998|T019|PT|Q84.3|ICD10CM|Anonychia|Anonychia +C0265998|T019|AB|Q84.3|ICD10CM|Anonychia|Anonychia +C0265998|T019|PT|Q84.3|ICD10|Anonychia|Anonychia +C0266001|T019|PT|Q84.4|ICD10|Congenital leukonychia|Congenital leukonychia +C0266001|T019|PT|Q84.4|ICD10CM|Congenital leukonychia|Congenital leukonychia +C0266001|T019|AB|Q84.4|ICD10CM|Congenital leukonychia|Congenital leukonychia +C0266002|T019|ET|Q84.5|ICD10CM|Congenital onychauxis|Congenital onychauxis +C0266002|T019|PT|Q84.5|ICD10CM|Enlarged and hypertrophic nails|Enlarged and hypertrophic nails +C0266002|T019|AB|Q84.5|ICD10CM|Enlarged and hypertrophic nails|Enlarged and hypertrophic nails +C0266002|T019|PT|Q84.5|ICD10|Enlarged and hypertrophic nails|Enlarged and hypertrophic nails +C0240444|T184|ET|Q84.5|ICD10CM|Pachyonychia|Pachyonychia +C0265999|T019|ET|Q84.6|ICD10CM|Congenital clubnail|Congenital clubnail +C0266000|T019|ET|Q84.6|ICD10CM|Congenital koilonychia|Congenital koilonychia +C0266000|T047|ET|Q84.6|ICD10CM|Congenital koilonychia|Congenital koilonychia +C0265997|T019|ET|Q84.6|ICD10CM|Congenital malformation of nail NOS|Congenital malformation of nail NOS +C0478089|T019|PT|Q84.6|ICD10CM|Other congenital malformations of nails|Other congenital malformations of nails +C0478089|T019|AB|Q84.6|ICD10CM|Other congenital malformations of nails|Other congenital malformations of nails +C0478089|T019|PT|Q84.6|ICD10|Other congenital malformations of nails|Other congenital malformations of nails +C0282160|T019|ET|Q84.8|ICD10CM|Aplasia cutis congenita|Aplasia cutis congenita +C0478090|T019|PT|Q84.8|ICD10|Other specified congenital malformations of integument|Other specified congenital malformations of integument +C0478090|T019|PT|Q84.8|ICD10CM|Other specified congenital malformations of integument|Other specified congenital malformations of integument +C0478090|T019|AB|Q84.8|ICD10CM|Other specified congenital malformations of integument|Other specified congenital malformations of integument +C3536895|T019|ET|Q84.9|ICD10CM|Congenital anomaly of integument NOS|Congenital anomaly of integument NOS +C3536895|T019|ET|Q84.9|ICD10CM|Congenital deformity of integument NOS|Congenital deformity of integument NOS +C3536895|T019|PT|Q84.9|ICD10CM|Congenital malformation of integument, unspecified|Congenital malformation of integument, unspecified +C3536895|T019|AB|Q84.9|ICD10CM|Congenital malformation of integument, unspecified|Congenital malformation of integument, unspecified +C3536895|T019|PT|Q84.9|ICD10|Congenital malformation of integument, unspecified|Congenital malformation of integument, unspecified +C0495631|T019|HT|Q85|ICD10|Phakomatoses, not elsewhere classified|Phakomatoses, not elsewhere classified +C0495631|T019|AB|Q85|ICD10CM|Phakomatoses, not elsewhere classified|Phakomatoses, not elsewhere classified +C0495631|T019|HT|Q85|ICD10CM|Phakomatoses, not elsewhere classified|Phakomatoses, not elsewhere classified +C0495632|T191|HT|Q85.0|ICD10CM|Neurofibromatosis (nonmalignant)|Neurofibromatosis (nonmalignant) +C0495632|T191|AB|Q85.0|ICD10CM|Neurofibromatosis (nonmalignant)|Neurofibromatosis (nonmalignant) +C0495632|T191|PT|Q85.0|ICD10|Neurofibromatosis (nonmalignant)|Neurofibromatosis (nonmalignant) +C0162678|T191|PT|Q85.00|ICD10CM|Neurofibromatosis, unspecified|Neurofibromatosis, unspecified +C0162678|T191|AB|Q85.00|ICD10CM|Neurofibromatosis, unspecified|Neurofibromatosis, unspecified +C0027831|T191|AB|Q85.01|ICD10CM|Neurofibromatosis, type 1|Neurofibromatosis, type 1 +C0027831|T191|PT|Q85.01|ICD10CM|Neurofibromatosis, type 1|Neurofibromatosis, type 1 +C0027831|T191|ET|Q85.01|ICD10CM|Von Recklinghausen disease|Von Recklinghausen disease +C0027832|T191|ET|Q85.02|ICD10CM|Acoustic neurofibromatosis|Acoustic neurofibromatosis +C0027832|T191|AB|Q85.02|ICD10CM|Neurofibromatosis, type 2|Neurofibromatosis, type 2 +C0027832|T191|PT|Q85.02|ICD10CM|Neurofibromatosis, type 2|Neurofibromatosis, type 2 +C1335929|T191|PT|Q85.03|ICD10CM|Schwannomatosis|Schwannomatosis +C1335929|T191|AB|Q85.03|ICD10CM|Schwannomatosis|Schwannomatosis +C2921012|T047|AB|Q85.09|ICD10CM|Other neurofibromatosis|Other neurofibromatosis +C2921012|T047|PT|Q85.09|ICD10CM|Other neurofibromatosis|Other neurofibromatosis +C0041341|T191|ET|Q85.1|ICD10CM|Bourneville's disease|Bourneville's disease +C0041341|T191|ET|Q85.1|ICD10CM|Epiloia|Epiloia +C0041341|T191|PT|Q85.1|ICD10CM|Tuberous sclerosis|Tuberous sclerosis +C0041341|T191|AB|Q85.1|ICD10CM|Tuberous sclerosis|Tuberous sclerosis +C0041341|T191|PT|Q85.1|ICD10|Tuberous sclerosis|Tuberous sclerosis +C0869082|T019|PT|Q85.8|ICD10|Other phakomatoses, not elsewhere classified|Other phakomatoses, not elsewhere classified +C0869082|T019|PT|Q85.8|ICD10CM|Other phakomatoses, not elsewhere classified|Other phakomatoses, not elsewhere classified +C0869082|T019|AB|Q85.8|ICD10CM|Other phakomatoses, not elsewhere classified|Other phakomatoses, not elsewhere classified +C0031269|T047|ET|Q85.8|ICD10CM|Peutz-Jeghers Syndrome|Peutz-Jeghers Syndrome +C0038505|T047|ET|Q85.8|ICD10CM|Sturge-Weber(-Dimitri) syndrome|Sturge-Weber(-Dimitri) syndrome +C0019562|T047|ET|Q85.8|ICD10CM|von Hippel-Lindau syndrome|von Hippel-Lindau syndrome +C0265315|T019|ET|Q85.9|ICD10CM|Hamartosis NOS|Hamartosis NOS +C0265316|T047|PT|Q85.9|ICD10CM|Phakomatosis, unspecified|Phakomatosis, unspecified +C0265316|T047|AB|Q85.9|ICD10CM|Phakomatosis, unspecified|Phakomatosis, unspecified +C0265316|T047|PT|Q85.9|ICD10|Phakomatosis, unspecified|Phakomatosis, unspecified +C0495634|T019|AB|Q86|ICD10CM|Congen malform syndromes due to known exogenous causes, NEC|Congen malform syndromes due to known exogenous causes, NEC +C0495634|T019|HT|Q86|ICD10CM|Congenital malformation syndromes due to known exogenous causes, not elsewhere classified|Congenital malformation syndromes due to known exogenous causes, not elsewhere classified +C0495634|T019|HT|Q86|ICD10|Congenital malformation syndromes due to known exogenous causes, not elsewhere classified|Congenital malformation syndromes due to known exogenous causes, not elsewhere classified +C0015923|T047|PT|Q86.0|ICD10CM|Fetal alcohol syndrome (dysmorphic)|Fetal alcohol syndrome (dysmorphic) +C0015923|T047|AB|Q86.0|ICD10CM|Fetal alcohol syndrome (dysmorphic)|Fetal alcohol syndrome (dysmorphic) +C0015923|T047|PT|Q86.0|ICD10|Fetal alcohol syndrome (dysmorphic)|Fetal alcohol syndrome (dysmorphic) +C0265372|T047|PT|Q86.1|ICD10|Fetal hydantoin syndrome|Fetal hydantoin syndrome +C0265372|T047|PT|Q86.1|ICD10CM|Fetal hydantoin syndrome|Fetal hydantoin syndrome +C0265372|T047|AB|Q86.1|ICD10CM|Fetal hydantoin syndrome|Fetal hydantoin syndrome +C0265372|T047|ET|Q86.1|ICD10CM|Meadow's syndrome|Meadow's syndrome +C0265374|T047|PT|Q86.2|ICD10CM|Dysmorphism due to warfarin|Dysmorphism due to warfarin +C0265374|T047|AB|Q86.2|ICD10CM|Dysmorphism due to warfarin|Dysmorphism due to warfarin +C0265374|T047|PT|Q86.2|ICD10|Dysmorphism due to warfarin|Dysmorphism due to warfarin +C0478092|T047|AB|Q86.8|ICD10CM|Oth congen malform syndromes due to known exogenous causes|Oth congen malform syndromes due to known exogenous causes +C0478092|T047|PT|Q86.8|ICD10CM|Other congenital malformation syndromes due to known exogenous causes|Other congenital malformation syndromes due to known exogenous causes +C0478092|T047|PT|Q86.8|ICD10|Other congenital malformation syndromes due to known exogenous causes|Other congenital malformation syndromes due to known exogenous causes +C0495636|T047|AB|Q87|ICD10CM|Oth congenital malform syndromes affecting multiple systems|Oth congenital malform syndromes affecting multiple systems +C0495636|T047|HT|Q87|ICD10CM|Other specified congenital malformation syndromes affecting multiple systems|Other specified congenital malformation syndromes affecting multiple systems +C0495636|T047|HT|Q87|ICD10|Other specified congenital malformation syndromes affecting multiple systems|Other specified congenital malformation syndromes affecting multiple systems +C0687154|T047|ET|Q87.0|ICD10CM|Acrocephalopolysyndactyly|Acrocephalopolysyndactyly +C0001193|T019|ET|Q87.0|ICD10CM|Acrocephalosyndactyly [Apert]|Acrocephalosyndactyly [Apert] +C0432066|T019|AB|Q87.0|ICD10CM|Congen malform syndromes predom affecting facial appearance|Congen malform syndromes predom affecting facial appearance +C0432066|T019|PT|Q87.0|ICD10CM|Congenital malformation syndromes predominantly affecting facial appearance|Congenital malformation syndromes predominantly affecting facial appearance +C0432066|T019|PT|Q87.0|ICD10|Congenital malformation syndromes predominantly affecting facial appearance|Congenital malformation syndromes predominantly affecting facial appearance +C0265233|T047|ET|Q87.0|ICD10CM|Cryptophthalmos syndrome|Cryptophthalmos syndrome +C0266667|T019|ET|Q87.0|ICD10CM|Cyclopia|Cyclopia +C0265240|T047|ET|Q87.0|ICD10CM|Goldenhar syndrome|Goldenhar syndrome +C0221060|T047|ET|Q87.0|ICD10CM|Moebius syndrome|Moebius syndrome +C0029294|T047|ET|Q87.0|ICD10CM|Oro-facial-digital syndrome|Oro-facial-digital syndrome +C0031900|T019|ET|Q87.0|ICD10CM|Robin syndrome|Robin syndrome +C0265224|T047|ET|Q87.0|ICD10CM|Whistling face|Whistling face +C0347915|T047|AB|Q87.1|ICD10CM|Congenital malform syndromes predom assoc w short stature|Congenital malform syndromes predom assoc w short stature +C0347915|T047|HT|Q87.1|ICD10CM|Congenital malformation syndromes predominantly associated with short stature|Congenital malformation syndromes predominantly associated with short stature +C0347915|T047|PT|Q87.1|ICD10|Congenital malformation syndromes predominantly associated with short stature|Congenital malformation syndromes predominantly associated with short stature +C0032897|T047|PT|Q87.11|ICD10CM|Prader-Willi syndrome|Prader-Willi syndrome +C0032897|T047|AB|Q87.11|ICD10CM|Prader-Willi syndrome|Prader-Willi syndrome +C0175701|T047|ET|Q87.19|ICD10CM|Aarskog syndrome|Aarskog syndrome +C0009207|T047|ET|Q87.19|ICD10CM|Cockayne syndrome|Cockayne syndrome +C0270972|T047|ET|Q87.19|ICD10CM|De Lange syndrome|De Lange syndrome +C0175691|T047|ET|Q87.19|ICD10CM|Dubowitz syndrome|Dubowitz syndrome +C0028326|T047|ET|Q87.19|ICD10CM|Noonan syndrome|Noonan syndrome +C5140893|T047|AB|Q87.19|ICD10CM|Other congen malform synd predom assoc with short stature|Other congen malform synd predom assoc with short stature +C5140893|T047|PT|Q87.19|ICD10CM|Other congenital malformation syndromes predominantly associated with short stature|Other congenital malformation syndromes predominantly associated with short stature +C0265205|T047|ET|Q87.19|ICD10CM|Robinow-Silverman-Smith syndrome|Robinow-Silverman-Smith syndrome +C0175693|T047|ET|Q87.19|ICD10CM|Russell-Silver syndrome|Russell-Silver syndrome +C0265202|T047|ET|Q87.19|ICD10CM|Seckel syndrome|Seckel syndrome +C0431766|T019|AB|Q87.2|ICD10CM|Congenital malformation syndromes predom involving limbs|Congenital malformation syndromes predom involving limbs +C0431766|T019|PT|Q87.2|ICD10CM|Congenital malformation syndromes predominantly involving limbs|Congenital malformation syndromes predominantly involving limbs +C0431766|T019|PT|Q87.2|ICD10|Congenital malformation syndromes predominantly involving limbs|Congenital malformation syndromes predominantly involving limbs +C0265264|T047|ET|Q87.2|ICD10CM|Holt-Oram syndrome|Holt-Oram syndrome +C0022739|T047|ET|Q87.2|ICD10CM|Klippel-Trenaunay-Weber syndrome|Klippel-Trenaunay-Weber syndrome +C0027341|T047|ET|Q87.2|ICD10CM|Nail patella syndrome|Nail patella syndrome +C0035934|T047|ET|Q87.2|ICD10CM|Rubinstein-Taybi syndrome|Rubinstein-Taybi syndrome +C1406717|T047|ET|Q87.2|ICD10CM|Sirenomelia syndrome|Sirenomelia syndrome +C0175703|T047|ET|Q87.2|ICD10CM|Thrombocytopenia with absent radius [TAR] syndrome|Thrombocytopenia with absent radius [TAR] syndrome +C0220708|T047|ET|Q87.2|ICD10CM|VATER syndrome|VATER syndrome +C0004903|T047|ET|Q87.3|ICD10CM|Beckwith-Wiedemann syndrome|Beckwith-Wiedemann syndrome +C0495640|T047|PT|Q87.3|ICD10|Congenital malformation syndromes involving early overgrowth|Congenital malformation syndromes involving early overgrowth +C0495640|T047|PT|Q87.3|ICD10CM|Congenital malformation syndromes involving early overgrowth|Congenital malformation syndromes involving early overgrowth +C0495640|T047|AB|Q87.3|ICD10CM|Congenital malformation syndromes involving early overgrowth|Congenital malformation syndromes involving early overgrowth +C0175695|T047|ET|Q87.3|ICD10CM|Sotos syndrome|Sotos syndrome +C0265210|T047|ET|Q87.3|ICD10CM|Weaver syndrome|Weaver syndrome +C0024796|T047|PT|Q87.4|ICD10|Marfan's syndrome|Marfan's syndrome +C0024796|T047|HT|Q87.4|ICD10CM|Marfan's syndrome|Marfan's syndrome +C0024796|T047|AB|Q87.4|ICD10CM|Marfan's syndrome|Marfan's syndrome +C0024796|T047|AB|Q87.40|ICD10CM|Marfan's syndrome, unspecified|Marfan's syndrome, unspecified +C0024796|T047|PT|Q87.40|ICD10CM|Marfan's syndrome, unspecified|Marfan's syndrome, unspecified +C2910344|T047|HT|Q87.41|ICD10CM|Marfan's syndrome with cardiovascular manifestations|Marfan's syndrome with cardiovascular manifestations +C2910344|T047|AB|Q87.41|ICD10CM|Marfan's syndrome with cardiovascular manifestations|Marfan's syndrome with cardiovascular manifestations +C2910345|T047|PT|Q87.410|ICD10CM|Marfan's syndrome with aortic dilation|Marfan's syndrome with aortic dilation +C2910345|T047|AB|Q87.410|ICD10CM|Marfan's syndrome with aortic dilation|Marfan's syndrome with aortic dilation +C2910346|T047|PT|Q87.418|ICD10CM|Marfan's syndrome with other cardiovascular manifestations|Marfan's syndrome with other cardiovascular manifestations +C2910346|T047|AB|Q87.418|ICD10CM|Marfan's syndrome with other cardiovascular manifestations|Marfan's syndrome with other cardiovascular manifestations +C2910347|T047|PT|Q87.42|ICD10CM|Marfan's syndrome with ocular manifestations|Marfan's syndrome with ocular manifestations +C2910347|T047|AB|Q87.42|ICD10CM|Marfan's syndrome with ocular manifestations|Marfan's syndrome with ocular manifestations +C2910348|T047|AB|Q87.43|ICD10CM|Marfan's syndrome with skeletal manifestation|Marfan's syndrome with skeletal manifestation +C2910348|T047|PT|Q87.43|ICD10CM|Marfan's syndrome with skeletal manifestation|Marfan's syndrome with skeletal manifestation +C0478093|T047|AB|Q87.5|ICD10CM|Oth congenital malformation syndromes w oth skeletal changes|Oth congenital malformation syndromes w oth skeletal changes +C0478093|T047|PT|Q87.5|ICD10CM|Other congenital malformation syndromes with other skeletal changes|Other congenital malformation syndromes with other skeletal changes +C0478093|T047|PT|Q87.5|ICD10|Other congenital malformation syndromes with other skeletal changes|Other congenital malformation syndromes with other skeletal changes +C0869083|T047|AB|Q87.8|ICD10CM|Oth congenital malformation syndromes, NEC|Oth congenital malformation syndromes, NEC +C0869083|T047|HT|Q87.8|ICD10CM|Other specified congenital malformation syndromes, not elsewhere classified|Other specified congenital malformation syndromes, not elsewhere classified +C0869083|T047|PT|Q87.8|ICD10|Other specified congenital malformation syndromes, not elsewhere classified|Other specified congenital malformation syndromes, not elsewhere classified +C1567741|T047|PT|Q87.81|ICD10CM|Alport syndrome|Alport syndrome +C1567741|T047|AB|Q87.81|ICD10CM|Alport syndrome|Alport syndrome +C1859726|T047|AB|Q87.82|ICD10CM|Arterial tortuosity syndrome|Arterial tortuosity syndrome +C1859726|T047|PT|Q87.82|ICD10CM|Arterial tortuosity syndrome|Arterial tortuosity syndrome +C0752166|T047|ET|Q87.89|ICD10CM|Laurence-Moon (-Bardet)-Biedl syndrome|Laurence-Moon (-Bardet)-Biedl syndrome +C0869083|T047|AB|Q87.89|ICD10CM|Oth congenital malformation syndromes, NEC|Oth congenital malformation syndromes, NEC +C0869083|T047|PT|Q87.89|ICD10CM|Other specified congenital malformation syndromes, not elsewhere classified|Other specified congenital malformation syndromes, not elsewhere classified +C0495641|T019|AB|Q89|ICD10CM|Other congenital malformations, not elsewhere classified|Other congenital malformations, not elsewhere classified +C0495641|T019|HT|Q89|ICD10CM|Other congenital malformations, not elsewhere classified|Other congenital malformations, not elsewhere classified +C0495641|T019|HT|Q89|ICD10|Other congenital malformations, not elsewhere classified|Other congenital malformations, not elsewhere classified +C2910349|T019|AB|Q89.0|ICD10CM|Congenital absence and malformations of spleen|Congenital absence and malformations of spleen +C2910349|T019|HT|Q89.0|ICD10CM|Congenital absence and malformations of spleen|Congenital absence and malformations of spleen +C0700587|T019|PT|Q89.0|ICD10|Congenital malformations of spleen|Congenital malformations of spleen +C0600031|T019|AB|Q89.01|ICD10CM|Asplenia (congenital)|Asplenia (congenital) +C0600031|T019|PT|Q89.01|ICD10CM|Asplenia (congenital)|Asplenia (congenital) +C0700587|T019|PT|Q89.09|ICD10CM|Congenital malformations of spleen|Congenital malformations of spleen +C0700587|T019|AB|Q89.09|ICD10CM|Congenital malformations of spleen|Congenital malformations of spleen +C0266634|T019|ET|Q89.09|ICD10CM|Congenital splenomegaly|Congenital splenomegaly +C0158797|T019|PT|Q89.1|ICD10|Congenital malformations of adrenal gland|Congenital malformations of adrenal gland +C0158797|T019|PT|Q89.1|ICD10CM|Congenital malformations of adrenal gland|Congenital malformations of adrenal gland +C0158797|T019|AB|Q89.1|ICD10CM|Congenital malformations of adrenal gland|Congenital malformations of adrenal gland +C2910350|T019|ET|Q89.2|ICD10CM|Congenital malformation of parathyroid or thyroid gland|Congenital malformation of parathyroid or thyroid gland +C0432378|T019|PT|Q89.2|ICD10|Congenital malformations of other endocrine glands|Congenital malformations of other endocrine glands +C0432378|T019|PT|Q89.2|ICD10CM|Congenital malformations of other endocrine glands|Congenital malformations of other endocrine glands +C0432378|T019|AB|Q89.2|ICD10CM|Congenital malformations of other endocrine glands|Congenital malformations of other endocrine glands +C0266286|T019|ET|Q89.2|ICD10CM|Persistent thyroglossal duct|Persistent thyroglossal duct +C0040124|T019|ET|Q89.2|ICD10CM|Thyroglossal cyst|Thyroglossal cyst +C1395317|T019|ET|Q89.3|ICD10CM|Dextrocardia with situs inversus|Dextrocardia with situs inversus +C2910351|T047|ET|Q89.3|ICD10CM|Mirror-image atrial arrangement with situs inversus|Mirror-image atrial arrangement with situs inversus +C0037221|T019|PT|Q89.3|ICD10CM|Situs inversus|Situs inversus +C0037221|T019|AB|Q89.3|ICD10CM|Situs inversus|Situs inversus +C0037221|T019|PT|Q89.3|ICD10|Situs inversus|Situs inversus +C0266644|T019|ET|Q89.3|ICD10CM|Situs inversus or transversus abdominalis|Situs inversus or transversus abdominalis +C0266645|T019|ET|Q89.3|ICD10CM|Situs inversus or transversus thoracis|Situs inversus or transversus thoracis +C0266644|T019|ET|Q89.3|ICD10CM|Transposition of abdominal viscera|Transposition of abdominal viscera +C0266645|T019|ET|Q89.3|ICD10CM|Transposition of thoracic viscera|Transposition of thoracic viscera +C0041428|T019|PT|Q89.4|ICD10|Conjoined twins|Conjoined twins +C0041428|T019|PT|Q89.4|ICD10CM|Conjoined twins|Conjoined twins +C0041428|T019|AB|Q89.4|ICD10CM|Conjoined twins|Conjoined twins +C0266692|T019|ET|Q89.4|ICD10CM|Craniopagus|Craniopagus +C0266674|T019|ET|Q89.4|ICD10CM|Dicephaly|Dicephaly +C0266711|T019|ET|Q89.4|ICD10CM|Pygopagus|Pygopagus +C0266704|T019|ET|Q89.4|ICD10CM|Thoracopagus|Thoracopagus +C0000772|T019|ET|Q89.7|ICD10CM|Multiple congenital anomalies NOS|Multiple congenital anomalies NOS +C0000772|T019|ET|Q89.7|ICD10CM|Multiple congenital deformities NOS|Multiple congenital deformities NOS +C0495643|T019|PT|Q89.7|ICD10CM|Multiple congenital malformations, not elsewhere classified|Multiple congenital malformations, not elsewhere classified +C0495643|T019|AB|Q89.7|ICD10CM|Multiple congenital malformations, not elsewhere classified|Multiple congenital malformations, not elsewhere classified +C0495643|T019|PT|Q89.7|ICD10|Multiple congenital malformations, not elsewhere classified|Multiple congenital malformations, not elsewhere classified +C0478095|T019|PT|Q89.8|ICD10|Other specified congenital malformations|Other specified congenital malformations +C0478095|T019|PT|Q89.8|ICD10CM|Other specified congenital malformations|Other specified congenital malformations +C0478095|T019|AB|Q89.8|ICD10CM|Other specified congenital malformations|Other specified congenital malformations +C0000768|T019|ET|Q89.9|ICD10CM|Congenital anomaly NOS|Congenital anomaly NOS +C0000768|T019|ET|Q89.9|ICD10CM|Congenital deformity NOS|Congenital deformity NOS +C0000768|T019|PT|Q89.9|ICD10CM|Congenital malformation, unspecified|Congenital malformation, unspecified +C0000768|T019|AB|Q89.9|ICD10CM|Congenital malformation, unspecified|Congenital malformation, unspecified +C0000768|T019|PT|Q89.9|ICD10|Congenital malformation, unspecified|Congenital malformation, unspecified +C0013080|T047|AB|Q90|ICD10CM|Down syndrome|Down syndrome +C0013080|T047|HT|Q90|ICD10CM|Down syndrome|Down syndrome +C0013080|T047|HT|Q90|ICD10|Down's syndrome|Down's syndrome +C0694458|T019|HT|Q90-Q99|ICD10CM|Chromosomal abnormalities, not elsewhere classified (Q90-Q99)|Chromosomal abnormalities, not elsewhere classified (Q90-Q99) +C0694458|T019|HT|Q90-Q99.9|ICD10|Chromosomal abnormalities, not elsewhere classified|Chromosomal abnormalities, not elsewhere classified +C0432417|T047|PT|Q90.0|ICD10|Trisomy 21, meiotic nondisjunction|Trisomy 21, meiotic nondisjunction +C2910352|T047|AB|Q90.0|ICD10CM|Trisomy 21, nonmosaicism (meiotic nondisjunction)|Trisomy 21, nonmosaicism (meiotic nondisjunction) +C2910352|T047|PT|Q90.0|ICD10CM|Trisomy 21, nonmosaicism (meiotic nondisjunction)|Trisomy 21, nonmosaicism (meiotic nondisjunction) +C0432418|T047|PT|Q90.1|ICD10|Trisomy 21, mosaicism (mitotic nondisjunction)|Trisomy 21, mosaicism (mitotic nondisjunction) +C0432418|T047|PT|Q90.1|ICD10CM|Trisomy 21, mosaicism (mitotic nondisjunction)|Trisomy 21, mosaicism (mitotic nondisjunction) +C0432418|T047|AB|Q90.1|ICD10CM|Trisomy 21, mosaicism (mitotic nondisjunction)|Trisomy 21, mosaicism (mitotic nondisjunction) +C1306720|T047|PT|Q90.2|ICD10|Trisomy 21, translocation|Trisomy 21, translocation +C1306720|T047|PT|Q90.2|ICD10CM|Trisomy 21, translocation|Trisomy 21, translocation +C1306720|T047|AB|Q90.2|ICD10CM|Trisomy 21, translocation|Trisomy 21, translocation +C0013080|T047|AB|Q90.9|ICD10CM|Down syndrome, unspecified|Down syndrome, unspecified +C0013080|T047|PT|Q90.9|ICD10CM|Down syndrome, unspecified|Down syndrome, unspecified +C0013080|T047|PT|Q90.9|ICD10|Down's syndrome, unspecified|Down's syndrome, unspecified +C0013080|T047|ET|Q90.9|ICD10CM|Trisomy 21 NOS|Trisomy 21 NOS +C0495645|T047|HT|Q91|ICD10|Edwards' syndrome and Patau's syndrome|Edwards' syndrome and Patau's syndrome +C2910353|T047|AB|Q91|ICD10CM|Trisomy 18 and Trisomy 13|Trisomy 18 and Trisomy 13 +C2910353|T047|HT|Q91|ICD10CM|Trisomy 18 and Trisomy 13|Trisomy 18 and Trisomy 13 +C0432421|T047|PT|Q91.0|ICD10|Trisomy 18, meiotic nondisjunction|Trisomy 18, meiotic nondisjunction +C2910354|T047|AB|Q91.0|ICD10CM|Trisomy 18, nonmosaicism (meiotic nondisjunction)|Trisomy 18, nonmosaicism (meiotic nondisjunction) +C2910354|T047|PT|Q91.0|ICD10CM|Trisomy 18, nonmosaicism (meiotic nondisjunction)|Trisomy 18, nonmosaicism (meiotic nondisjunction) +C0432422|T047|PT|Q91.1|ICD10|Trisomy 18, mosaicism (mitotic nondisjunction)|Trisomy 18, mosaicism (mitotic nondisjunction) +C0432422|T047|PT|Q91.1|ICD10CM|Trisomy 18, mosaicism (mitotic nondisjunction)|Trisomy 18, mosaicism (mitotic nondisjunction) +C0432422|T047|AB|Q91.1|ICD10CM|Trisomy 18, mosaicism (mitotic nondisjunction)|Trisomy 18, mosaicism (mitotic nondisjunction) +C0432420|T047|PT|Q91.2|ICD10CM|Trisomy 18, translocation|Trisomy 18, translocation +C0432420|T047|AB|Q91.2|ICD10CM|Trisomy 18, translocation|Trisomy 18, translocation +C0432420|T047|PT|Q91.2|ICD10|Trisomy 18, translocation|Trisomy 18, translocation +C0152096|T047|PT|Q91.3|ICD10|Edwards' syndrome, unspecified|Edwards' syndrome, unspecified +C4760370|T047|PT|Q91.3|ICD10CM|Trisomy 18, unspecified|Trisomy 18, unspecified +C4760370|T047|AB|Q91.3|ICD10CM|Trisomy 18, unspecified|Trisomy 18, unspecified +C0432425|T047|PT|Q91.4|ICD10|Trisomy 13, meiotic nondisjunction|Trisomy 13, meiotic nondisjunction +C2910355|T047|AB|Q91.4|ICD10CM|Trisomy 13, nonmosaicism (meiotic nondisjunction)|Trisomy 13, nonmosaicism (meiotic nondisjunction) +C2910355|T047|PT|Q91.4|ICD10CM|Trisomy 13, nonmosaicism (meiotic nondisjunction)|Trisomy 13, nonmosaicism (meiotic nondisjunction) +C0432426|T047|PT|Q91.5|ICD10|Trisomy 13, mosaicism (mitotic nondisjunction)|Trisomy 13, mosaicism (mitotic nondisjunction) +C0432426|T047|PT|Q91.5|ICD10CM|Trisomy 13, mosaicism (mitotic nondisjunction)|Trisomy 13, mosaicism (mitotic nondisjunction) +C0432426|T047|AB|Q91.5|ICD10CM|Trisomy 13, mosaicism (mitotic nondisjunction)|Trisomy 13, mosaicism (mitotic nondisjunction) +C0432424|T047|PT|Q91.6|ICD10CM|Trisomy 13, translocation|Trisomy 13, translocation +C0432424|T047|AB|Q91.6|ICD10CM|Trisomy 13, translocation|Trisomy 13, translocation +C0432424|T047|PT|Q91.6|ICD10|Trisomy 13, translocation|Trisomy 13, translocation +C0152095|T047|PT|Q91.7|ICD10|Patau's syndrome, unspecified|Patau's syndrome, unspecified +C0152095|T047|AB|Q91.7|ICD10CM|Trisomy 13, unspecified|Trisomy 13, unspecified +C0152095|T047|PT|Q91.7|ICD10CM|Trisomy 13, unspecified|Trisomy 13, unspecified +C0495648|T046|AB|Q92|ICD10CM|Oth trisomies and partial trisomies of the autosomes, NEC|Oth trisomies and partial trisomies of the autosomes, NEC +C0495648|T046|HT|Q92|ICD10CM|Other trisomies and partial trisomies of the autosomes, not elsewhere classified|Other trisomies and partial trisomies of the autosomes, not elsewhere classified +C0495648|T046|HT|Q92|ICD10|Other trisomies and partial trisomies of the autosomes, not elsewhere classified|Other trisomies and partial trisomies of the autosomes, not elsewhere classified +C0432428|T047|PT|Q92.0|ICD10|Whole chromosome trisomy, meiotic nondisjunction|Whole chromosome trisomy, meiotic nondisjunction +C2910356|T019|AB|Q92.0|ICD10CM|Whole chromosome trisomy, nonmosaic (meiotic nondisjunction)|Whole chromosome trisomy, nonmosaic (meiotic nondisjunction) +C2910356|T019|PT|Q92.0|ICD10CM|Whole chromosome trisomy, nonmosaicism (meiotic nondisjunction)|Whole chromosome trisomy, nonmosaicism (meiotic nondisjunction) +C0432429|T047|PT|Q92.1|ICD10|Whole chromosome trisomy, mosaicism (mitotic nondisjunction)|Whole chromosome trisomy, mosaicism (mitotic nondisjunction) +C0432429|T047|PT|Q92.1|ICD10CM|Whole chromosome trisomy, mosaicism (mitotic nondisjunction)|Whole chromosome trisomy, mosaicism (mitotic nondisjunction) +C0432429|T047|AB|Q92.1|ICD10CM|Whole chromosome trisomy, mosaicism (mitotic nondisjunction)|Whole chromosome trisomy, mosaicism (mitotic nondisjunction) +C2910357|T019|ET|Q92.2|ICD10CM|Less than whole arm duplicated|Less than whole arm duplicated +C1297882|T019|PT|Q92.2|ICD10CM|Partial trisomy|Partial trisomy +C1297882|T019|AB|Q92.2|ICD10CM|Partial trisomy|Partial trisomy +C2910358|T019|ET|Q92.2|ICD10CM|Whole arm or more duplicated|Whole arm or more duplicated +C0432431|T047|PT|Q92.3|ICD10|Minor partial trisomy|Minor partial trisomy +C0432433|T047|PT|Q92.5|ICD10|Duplications with other complex rearrangements|Duplications with other complex rearrangements +C0432433|T047|PT|Q92.5|ICD10CM|Duplications with other complex rearrangements|Duplications with other complex rearrangements +C0432433|T047|AB|Q92.5|ICD10CM|Duplications with other complex rearrangements|Duplications with other complex rearrangements +C2910359|T047|ET|Q92.5|ICD10CM|Partial trisomy due to unbalanced translocations|Partial trisomy due to unbalanced translocations +C0432454|T047|ET|Q92.6|ICD10CM|Individual with marker heterochromatin|Individual with marker heterochromatin +C2910360|T019|ET|Q92.6|ICD10CM|Trisomies due to dicentrics|Trisomies due to dicentrics +C2910361|T019|ET|Q92.6|ICD10CM|Trisomies due to extra rings|Trisomies due to extra rings +C2910362|T019|ET|Q92.6|ICD10CM|Trisomies due to isochromosomes|Trisomies due to isochromosomes +C2910363|T019|PT|Q92.61|ICD10CM|Marker chromosomes in normal individual|Marker chromosomes in normal individual +C2910363|T019|AB|Q92.61|ICD10CM|Marker chromosomes in normal individual|Marker chromosomes in normal individual +C2910364|T019|PT|Q92.62|ICD10CM|Marker chromosomes in abnormal individual|Marker chromosomes in abnormal individual +C2910364|T019|AB|Q92.62|ICD10CM|Marker chromosomes in abnormal individual|Marker chromosomes in abnormal individual +C0432435|T047|PT|Q92.7|ICD10CM|Triploidy and polyploidy|Triploidy and polyploidy +C0432435|T047|AB|Q92.7|ICD10CM|Triploidy and polyploidy|Triploidy and polyploidy +C0432435|T047|PT|Q92.7|ICD10|Triploidy and polyploidy|Triploidy and polyploidy +C2910365|T033|ET|Q92.8|ICD10CM|Duplications identified by fluorescence in situ hybridization (FISH)|Duplications identified by fluorescence in situ hybridization (FISH) +C2910366|T033|ET|Q92.8|ICD10CM|Duplications identified by in situ hybridization (ISH)|Duplications identified by in situ hybridization (ISH) +C0478098|T046|PT|Q92.8|ICD10|Other specified trisomies and partial trisomies of autosomes|Other specified trisomies and partial trisomies of autosomes +C0478098|T046|PT|Q92.8|ICD10CM|Other specified trisomies and partial trisomies of autosomes|Other specified trisomies and partial trisomies of autosomes +C0478098|T046|AB|Q92.8|ICD10CM|Other specified trisomies and partial trisomies of autosomes|Other specified trisomies and partial trisomies of autosomes +C0495649|T047|PT|Q92.9|ICD10|Trisomy and partial trisomy of autosomes, unspecified|Trisomy and partial trisomy of autosomes, unspecified +C0495649|T047|PT|Q92.9|ICD10CM|Trisomy and partial trisomy of autosomes, unspecified|Trisomy and partial trisomy of autosomes, unspecified +C0495649|T047|AB|Q92.9|ICD10CM|Trisomy and partial trisomy of autosomes, unspecified|Trisomy and partial trisomy of autosomes, unspecified +C0432437|T047|PT|Q93.0|ICD10|Whole chromosome monosomy, meiotic nondisjunction|Whole chromosome monosomy, meiotic nondisjunction +C2910367|T047|PT|Q93.0|ICD10CM|Whole chromosome monosomy, nonmosaicism (meiotic nondisjunction)|Whole chromosome monosomy, nonmosaicism (meiotic nondisjunction) +C2910367|T047|AB|Q93.0|ICD10CM|Whole chromosome monosomy,nonmosaic (meiotic nondisjunction)|Whole chromosome monosomy,nonmosaic (meiotic nondisjunction) +C0432438|T047|AB|Q93.1|ICD10CM|Whole chromosome monosomy, mosaic (mitotic nondisjunction)|Whole chromosome monosomy, mosaic (mitotic nondisjunction) +C0432438|T047|PT|Q93.1|ICD10CM|Whole chromosome monosomy, mosaicism (mitotic nondisjunction)|Whole chromosome monosomy, mosaicism (mitotic nondisjunction) +C0432438|T047|PT|Q93.1|ICD10|Whole chromosome monosomy, mosaicism (mitotic nondisjunction)|Whole chromosome monosomy, mosaicism (mitotic nondisjunction) +C1956097|T047|PT|Q93.3|ICD10|Deletion of short arm of chromosome 4|Deletion of short arm of chromosome 4 +C1956097|T047|PT|Q93.3|ICD10CM|Deletion of short arm of chromosome 4|Deletion of short arm of chromosome 4 +C1956097|T047|AB|Q93.3|ICD10CM|Deletion of short arm of chromosome 4|Deletion of short arm of chromosome 4 +C1956097|T047|ET|Q93.3|ICD10CM|Wolff-Hirschorn syndrome|Wolff-Hirschorn syndrome +C0010314|T047|ET|Q93.4|ICD10CM|Cri-du-chat syndrome|Cri-du-chat syndrome +C0010314|T047|PT|Q93.4|ICD10CM|Deletion of short arm of chromosome 5|Deletion of short arm of chromosome 5 +C0010314|T047|AB|Q93.4|ICD10CM|Deletion of short arm of chromosome 5|Deletion of short arm of chromosome 5 +C0010314|T047|PT|Q93.4|ICD10|Deletion of short arm of chromosome 5|Deletion of short arm of chromosome 5 +C0478099|T019|PT|Q93.5|ICD10|Other deletions of part of a chromosome|Other deletions of part of a chromosome +C0478099|T019|AB|Q93.5|ICD10CM|Other deletions of part of a chromosome|Other deletions of part of a chromosome +C0478099|T019|HT|Q93.5|ICD10CM|Other deletions of part of a chromosome|Other deletions of part of a chromosome +C0162635|T047|AB|Q93.51|ICD10CM|Angelman syndrome|Angelman syndrome +C0162635|T047|PT|Q93.51|ICD10CM|Angelman syndrome|Angelman syndrome +C0478099|T019|PT|Q93.59|ICD10CM|Other deletions of part of a chromosome|Other deletions of part of a chromosome +C0478099|T019|AB|Q93.59|ICD10CM|Other deletions of part of a chromosome|Other deletions of part of a chromosome +C0478100|T046|HT|Q93.8|ICD10CM|Other deletions from the autosomes|Other deletions from the autosomes +C0478100|T046|AB|Q93.8|ICD10CM|Other deletions from the autosomes|Other deletions from the autosomes +C0478100|T046|PT|Q93.8|ICD10|Other deletions from the autosomes|Other deletions from the autosomes +C0220704|T047|ET|Q93.81|ICD10CM|Deletion 22q11.2|Deletion 22q11.2 +C0220704|T047|PT|Q93.81|ICD10CM|Velo-cardio-facial syndrome|Velo-cardio-facial syndrome +C0220704|T047|AB|Q93.81|ICD10CM|Velo-cardio-facial syndrome|Velo-cardio-facial syndrome +C0175702|T047|AB|Q93.82|ICD10CM|Williams syndrome|Williams syndrome +C0175702|T047|PT|Q93.82|ICD10CM|Williams syndrome|Williams syndrome +C0265219|T047|ET|Q93.88|ICD10CM|Miller-Dieker syndrome|Miller-Dieker syndrome +C2910371|T047|AB|Q93.88|ICD10CM|Other microdeletions|Other microdeletions +C2910371|T047|PT|Q93.88|ICD10CM|Other microdeletions|Other microdeletions +C0795864|T047|ET|Q93.88|ICD10CM|Smith-Magenis syndrome|Smith-Magenis syndrome +C0478100|T046|PT|Q93.89|ICD10CM|Other deletions from the autosomes|Other deletions from the autosomes +C0478100|T046|AB|Q93.89|ICD10CM|Other deletions from the autosomes|Other deletions from the autosomes +C0432450|T047|PT|Q95.0|ICD10CM|Balanced translocation and insertion in normal individual|Balanced translocation and insertion in normal individual +C0432450|T047|AB|Q95.0|ICD10CM|Balanced translocation and insertion in normal individual|Balanced translocation and insertion in normal individual +C0432450|T047|PT|Q95.0|ICD10|Balanced translocation and insertion in normal individual|Balanced translocation and insertion in normal individual +C0432452|T047|PT|Q95.2|ICD10|Balanced autosomal rearrangement in abnormal individual|Balanced autosomal rearrangement in abnormal individual +C0432452|T047|PT|Q95.2|ICD10CM|Balanced autosomal rearrangement in abnormal individual|Balanced autosomal rearrangement in abnormal individual +C0432452|T047|AB|Q95.2|ICD10CM|Balanced autosomal rearrangement in abnormal individual|Balanced autosomal rearrangement in abnormal individual +C0432453|T047|PT|Q95.3|ICD10CM|Balanced sex/autosomal rearrangement in abnormal individual|Balanced sex/autosomal rearrangement in abnormal individual +C0432453|T047|AB|Q95.3|ICD10CM|Balanced sex/autosomal rearrangement in abnormal individual|Balanced sex/autosomal rearrangement in abnormal individual +C0432453|T047|PT|Q95.3|ICD10|Balanced sex/autosomal rearrangement in abnormal individual|Balanced sex/autosomal rearrangement in abnormal individual +C0432454|T047|PT|Q95.4|ICD10|Individuals with marker heterochromatin|Individuals with marker heterochromatin +C0432455|T047|PT|Q95.5|ICD10CM|Individual with autosomal fragile site|Individual with autosomal fragile site +C0432455|T047|AB|Q95.5|ICD10CM|Individual with autosomal fragile site|Individual with autosomal fragile site +C0432455|T047|PT|Q95.5|ICD10|Individuals with autosomal fragile site|Individuals with autosomal fragile site +C0478101|T046|PT|Q95.8|ICD10|Other balanced rearrangements and structural markers|Other balanced rearrangements and structural markers +C0478101|T046|PT|Q95.8|ICD10CM|Other balanced rearrangements and structural markers|Other balanced rearrangements and structural markers +C0478101|T046|AB|Q95.8|ICD10CM|Other balanced rearrangements and structural markers|Other balanced rearrangements and structural markers +C0478102|T047|PT|Q95.9|ICD10CM|Balanced rearrangement and structural marker, unspecified|Balanced rearrangement and structural marker, unspecified +C0478102|T047|AB|Q95.9|ICD10CM|Balanced rearrangement and structural marker, unspecified|Balanced rearrangement and structural marker, unspecified +C0478102|T047|PT|Q95.9|ICD10|Balanced rearrangement and structural marker, unspecified|Balanced rearrangement and structural marker, unspecified +C0041408|T047|HT|Q96|ICD10|Turner's syndrome|Turner's syndrome +C0041408|T047|HT|Q96|ICD10CM|Turner's syndrome|Turner's syndrome +C0041408|T047|AB|Q96|ICD10CM|Turner's syndrome|Turner's syndrome +C0041408|T047|AB|Q96.0|ICD10CM|Karyotype 45, X|Karyotype 45, X +C0041408|T047|PT|Q96.0|ICD10CM|Karyotype 45, X|Karyotype 45, X +C0041408|T047|PT|Q96.0|ICD10|Karyotype 45,X|Karyotype 45,X +C2910375|T047|ET|Q96.1|ICD10CM|Karyotype 46, isochromosome Xq|Karyotype 46, isochromosome Xq +C0432463|T047|PT|Q96.1|ICD10CM|Karyotype 46, X iso (Xq)|Karyotype 46, X iso (Xq) +C0432463|T047|AB|Q96.1|ICD10CM|Karyotype 46, X iso (Xq)|Karyotype 46, X iso (Xq) +C0432463|T047|PT|Q96.1|ICD10|Karyotype 46,X iso (Xq)|Karyotype 46,X iso (Xq) +C0432464|T047|AB|Q96.2|ICD10CM|Karyotype 46, X w abnormal sex chromosome, except iso (Xq)|Karyotype 46, X w abnormal sex chromosome, except iso (Xq) +C0432464|T047|PT|Q96.2|ICD10CM|Karyotype 46, X with abnormal sex chromosome, except iso (Xq)|Karyotype 46, X with abnormal sex chromosome, except iso (Xq) +C2910376|T047|ET|Q96.2|ICD10CM|Karyotype 46, X with abnormal sex chromosome, except isochromosome Xq|Karyotype 46, X with abnormal sex chromosome, except isochromosome Xq +C0432464|T047|PT|Q96.2|ICD10|Karyotype 46,X with abnormal sex chromosome, except iso (Xq)|Karyotype 46,X with abnormal sex chromosome, except iso (Xq) +C0495654|T047|AB|Q96.3|ICD10CM|Mosaicism, 45, X/46, XX or XY|Mosaicism, 45, X/46, XX or XY +C0495654|T047|PT|Q96.3|ICD10CM|Mosaicism, 45, X/46, XX or XY|Mosaicism, 45, X/46, XX or XY +C0495654|T047|PT|Q96.3|ICD10|Mosaicism, 45,X/46,XX or XY|Mosaicism, 45,X/46,XX or XY +C0432466|T047|AB|Q96.4|ICD10CM|Mosaic, 45, X/other cell line(s) w abnormal sex chromosome|Mosaic, 45, X/other cell line(s) w abnormal sex chromosome +C0432466|T047|PT|Q96.4|ICD10CM|Mosaicism, 45, X/other cell line(s) with abnormal sex chromosome|Mosaicism, 45, X/other cell line(s) with abnormal sex chromosome +C0432466|T047|PT|Q96.4|ICD10|Mosaicism, 45,X/other cell line(s) with abnormal sex chromosome|Mosaicism, 45,X/other cell line(s) with abnormal sex chromosome +C0478103|T047|PT|Q96.8|ICD10|Other variants of Turner's syndrome|Other variants of Turner's syndrome +C0478103|T047|PT|Q96.8|ICD10CM|Other variants of Turner's syndrome|Other variants of Turner's syndrome +C0478103|T047|AB|Q96.8|ICD10CM|Other variants of Turner's syndrome|Other variants of Turner's syndrome +C0041408|T047|PT|Q96.9|ICD10|Turner's syndrome, unspecified|Turner's syndrome, unspecified +C0041408|T047|PT|Q96.9|ICD10CM|Turner's syndrome, unspecified|Turner's syndrome, unspecified +C0041408|T047|AB|Q96.9|ICD10CM|Turner's syndrome, unspecified|Turner's syndrome, unspecified +C0495656|T019|AB|Q97|ICD10CM|Oth sex chromosome abnormalities, female phenotype, NEC|Oth sex chromosome abnormalities, female phenotype, NEC +C0495656|T019|HT|Q97|ICD10CM|Other sex chromosome abnormalities, female phenotype, not elsewhere classified|Other sex chromosome abnormalities, female phenotype, not elsewhere classified +C0495656|T019|HT|Q97|ICD10|Other sex chromosome abnormalities, female phenotype, not elsewhere classified|Other sex chromosome abnormalities, female phenotype, not elsewhere classified +C0221033|T047|PT|Q97.0|ICD10CM|Karyotype 47, XXX|Karyotype 47, XXX +C0221033|T047|AB|Q97.0|ICD10CM|Karyotype 47, XXX|Karyotype 47, XXX +C0221033|T047|PT|Q97.0|ICD10|Karyotype 47,XXX|Karyotype 47,XXX +C0432468|T047|PT|Q97.1|ICD10|Female with more than three X chromosomes|Female with more than three X chromosomes +C0432468|T047|PT|Q97.1|ICD10CM|Female with more than three X chromosomes|Female with more than three X chromosomes +C0432468|T047|AB|Q97.1|ICD10CM|Female with more than three X chromosomes|Female with more than three X chromosomes +C0432469|T047|PT|Q97.2|ICD10CM|Mosaicism, lines with various numbers of X chromosomes|Mosaicism, lines with various numbers of X chromosomes +C0432469|T047|AB|Q97.2|ICD10CM|Mosaicism, lines with various numbers of X chromosomes|Mosaicism, lines with various numbers of X chromosomes +C0432469|T047|PT|Q97.2|ICD10|Mosaicism, lines with various numbers of X chromosomes|Mosaicism, lines with various numbers of X chromosomes +C0432470|T047|AB|Q97.3|ICD10CM|Female with 46, XY karyotype|Female with 46, XY karyotype +C0432470|T047|PT|Q97.3|ICD10CM|Female with 46, XY karyotype|Female with 46, XY karyotype +C0432470|T047|PT|Q97.3|ICD10|Female with 46,XY karyotype|Female with 46,XY karyotype +C0478104|T047|AB|Q97.8|ICD10CM|Oth sex chromosome abnormalities, female phenotype|Oth sex chromosome abnormalities, female phenotype +C0478104|T047|PT|Q97.8|ICD10CM|Other specified sex chromosome abnormalities, female phenotype|Other specified sex chromosome abnormalities, female phenotype +C0478104|T047|PT|Q97.8|ICD10|Other specified sex chromosome abnormalities, female phenotype|Other specified sex chromosome abnormalities, female phenotype +C0432456|T047|PT|Q97.9|ICD10|Sex chromosome abnormality, female phenotype, unspecified|Sex chromosome abnormality, female phenotype, unspecified +C0432456|T047|PT|Q97.9|ICD10CM|Sex chromosome abnormality, female phenotype, unspecified|Sex chromosome abnormality, female phenotype, unspecified +C0432456|T047|AB|Q97.9|ICD10CM|Sex chromosome abnormality, female phenotype, unspecified|Sex chromosome abnormality, female phenotype, unspecified +C0495658|T019|AB|Q98|ICD10CM|Oth sex chromosome abnormalities, male phenotype, NEC|Oth sex chromosome abnormalities, male phenotype, NEC +C0495658|T019|HT|Q98|ICD10CM|Other sex chromosome abnormalities, male phenotype, not elsewhere classified|Other sex chromosome abnormalities, male phenotype, not elsewhere classified +C0495658|T019|HT|Q98|ICD10|Other sex chromosome abnormalities, male phenotype, not elsewhere classified|Other sex chromosome abnormalities, male phenotype, not elsewhere classified +C0022735|T047|AB|Q98.0|ICD10CM|Klinefelter syndrome karyotype 47, XXY|Klinefelter syndrome karyotype 47, XXY +C0022735|T047|PT|Q98.0|ICD10CM|Klinefelter syndrome karyotype 47, XXY|Klinefelter syndrome karyotype 47, XXY +C0022735|T047|PT|Q98.0|ICD10|Klinefelter's syndrome karyotype 47,XXY|Klinefelter's syndrome karyotype 47,XXY +C0432474|T019|PT|Q98.1|ICD10CM|Klinefelter syndrome, male with more than two X chromosomes|Klinefelter syndrome, male with more than two X chromosomes +C0432474|T019|AB|Q98.1|ICD10CM|Klinefelter syndrome, male with more than two X chromosomes|Klinefelter syndrome, male with more than two X chromosomes +C0432474|T019|PT|Q98.1|ICD10|Klinefelter's syndrome, male with more than two X chromosomes|Klinefelter's syndrome, male with more than two X chromosomes +C0432476|T047|PT|Q98.2|ICD10|Klinefelter's syndrome, male with 46,XX karyotype|Klinefelter's syndrome, male with 46,XX karyotype +C0478105|T047|AB|Q98.3|ICD10CM|Other male with 46, XX karyotype|Other male with 46, XX karyotype +C0478105|T047|PT|Q98.3|ICD10CM|Other male with 46, XX karyotype|Other male with 46, XX karyotype +C0478105|T047|PT|Q98.3|ICD10|Other male with 46,XX karyotype|Other male with 46,XX karyotype +C0022735|T047|AB|Q98.4|ICD10CM|Klinefelter syndrome, unspecified|Klinefelter syndrome, unspecified +C0022735|T047|PT|Q98.4|ICD10CM|Klinefelter syndrome, unspecified|Klinefelter syndrome, unspecified +C0022735|T047|PT|Q98.4|ICD10|Klinefelter's syndrome, unspecified|Klinefelter's syndrome, unspecified +C0043379|T019|AB|Q98.5|ICD10CM|Karyotype 47, XYY|Karyotype 47, XYY +C0043379|T019|PT|Q98.5|ICD10CM|Karyotype 47, XYY|Karyotype 47, XYY +C0043379|T019|PT|Q98.5|ICD10|Karyotype 47,XYY|Karyotype 47,XYY +C0432478|T047|PT|Q98.6|ICD10CM|Male with structurally abnormal sex chromosome|Male with structurally abnormal sex chromosome +C0432478|T047|AB|Q98.6|ICD10CM|Male with structurally abnormal sex chromosome|Male with structurally abnormal sex chromosome +C0432478|T047|PT|Q98.6|ICD10|Male with structurally abnormal sex chromosome|Male with structurally abnormal sex chromosome +C0432479|T047|PT|Q98.7|ICD10|Male with sex chromosome mosaicism|Male with sex chromosome mosaicism +C0432479|T047|PT|Q98.7|ICD10CM|Male with sex chromosome mosaicism|Male with sex chromosome mosaicism +C0432479|T047|AB|Q98.7|ICD10CM|Male with sex chromosome mosaicism|Male with sex chromosome mosaicism +C0478106|T047|PT|Q98.8|ICD10CM|Other specified sex chromosome abnormalities, male phenotype|Other specified sex chromosome abnormalities, male phenotype +C0478106|T047|AB|Q98.8|ICD10CM|Other specified sex chromosome abnormalities, male phenotype|Other specified sex chromosome abnormalities, male phenotype +C0478106|T047|PT|Q98.8|ICD10|Other specified sex chromosome abnormalities, male phenotype|Other specified sex chromosome abnormalities, male phenotype +C0478108|T047|PT|Q98.9|ICD10|Sex chromosome abnormality, male phenotype, unspecified|Sex chromosome abnormality, male phenotype, unspecified +C0478108|T047|PT|Q98.9|ICD10CM|Sex chromosome abnormality, male phenotype, unspecified|Sex chromosome abnormality, male phenotype, unspecified +C0478108|T047|AB|Q98.9|ICD10CM|Sex chromosome abnormality, male phenotype, unspecified|Sex chromosome abnormality, male phenotype, unspecified +C0432480|T047|PT|Q99.0|ICD10CM|Chimera 46, XX/46, XY|Chimera 46, XX/46, XY +C0432480|T047|AB|Q99.0|ICD10CM|Chimera 46, XX/46, XY|Chimera 46, XX/46, XY +C2910377|T047|ET|Q99.0|ICD10CM|Chimera 46, XX/46, XY true hermaphrodite|Chimera 46, XX/46, XY true hermaphrodite +C0432480|T047|PT|Q99.0|ICD10|Chimera 46,XX/46,XY|Chimera 46,XX/46,XY +C0432481|T047|PT|Q99.1|ICD10CM|46, XX true hermaphrodite|46, XX true hermaphrodite +C0432481|T047|AB|Q99.1|ICD10CM|46, XX true hermaphrodite|46, XX true hermaphrodite +C2910378|T047|ET|Q99.1|ICD10CM|46, XX with streak gonads|46, XX with streak gonads +C2910379|T047|ET|Q99.1|ICD10CM|46, XY with streak gonads|46, XY with streak gonads +C0432481|T047|PT|Q99.1|ICD10|46,XX true hermaphrodite|46,XX true hermaphrodite +C0687149|T019|ET|Q99.1|ICD10CM|Pure gonadal dysgenesis|Pure gonadal dysgenesis +C0432482|T019|PT|Q99.2|ICD10|Fragile X chromosome|Fragile X chromosome +C0432482|T019|PT|Q99.2|ICD10CM|Fragile X chromosome|Fragile X chromosome +C0432482|T019|AB|Q99.2|ICD10CM|Fragile X chromosome|Fragile X chromosome +C0016667|T047|ET|Q99.2|ICD10CM|Fragile X syndrome|Fragile X syndrome +C0478107|T047|PT|Q99.8|ICD10CM|Other specified chromosome abnormalities|Other specified chromosome abnormalities +C0478107|T047|AB|Q99.8|ICD10CM|Other specified chromosome abnormalities|Other specified chromosome abnormalities +C0478107|T047|PT|Q99.8|ICD10|Other specified chromosome abnormalities|Other specified chromosome abnormalities +C0008626|T019|PT|Q99.9|ICD10CM|Chromosomal abnormality, unspecified|Chromosomal abnormality, unspecified +C0008626|T019|AB|Q99.9|ICD10CM|Chromosomal abnormality, unspecified|Chromosomal abnormality, unspecified +C0008626|T019|PT|Q99.9|ICD10|Chromosomal abnormality, unspecified|Chromosomal abnormality, unspecified +C1744601|T184|HT|R00|ICD10|Abnormalities of heart beat|Abnormalities of heart beat +C1744601|T184|HT|R00|ICD10CM|Abnormalities of heart beat|Abnormalities of heart beat +C1744601|T184|AB|R00|ICD10CM|Abnormalities of heart beat|Abnormalities of heart beat +C0478110|T184|HT|R00-R09|ICD10CM|Symptoms and signs involving the circulatory and respiratory systems (R00-R09)|Symptoms and signs involving the circulatory and respiratory systems (R00-R09) +C0478110|T184|HT|R00-R09.9|ICD10|Symptoms and signs involving the circulatory and respiratory systems|Symptoms and signs involving the circulatory and respiratory systems +C0694459|T033|HT|R00-R99|ICD10CM|Symptoms, signs and abnormal clinical and laboratory findings, not elsewhere classified (R00-R99)|Symptoms, signs and abnormal clinical and laboratory findings, not elsewhere classified (R00-R99) +C0694459|T033|HT|R00-R99.9|ICD10|Symptoms, signs and abnormal clinical and laboratory findings, not elsewhere classified|Symptoms, signs and abnormal clinical and laboratory findings, not elsewhere classified +C0039231|T033|ET|R00.0|ICD10CM|Rapid heart beat|Rapid heart beat +C0340468|T047|ET|R00.0|ICD10CM|Sinoauricular tachycardia NOS|Sinoauricular tachycardia NOS +C2910380|T046|ET|R00.0|ICD10CM|Sinus [sinusal] tachycardia NOS|Sinus [sinusal] tachycardia NOS +C0039231|T033|PT|R00.0|ICD10|Tachycardia, unspecified|Tachycardia, unspecified +C0039231|T033|PT|R00.0|ICD10CM|Tachycardia, unspecified|Tachycardia, unspecified +C0039231|T033|AB|R00.0|ICD10CM|Tachycardia, unspecified|Tachycardia, unspecified +C0428977|T033|PT|R00.1|ICD10CM|Bradycardia, unspecified|Bradycardia, unspecified +C0428977|T033|AB|R00.1|ICD10CM|Bradycardia, unspecified|Bradycardia, unspecified +C0428977|T033|PT|R00.1|ICD10|Bradycardia, unspecified|Bradycardia, unspecified +C2910381|T047|ET|R00.1|ICD10CM|Sinoatrial bradycardia|Sinoatrial bradycardia +C0085610|T046|ET|R00.1|ICD10CM|Sinus bradycardia|Sinus bradycardia +C0428977|T033|ET|R00.1|ICD10CM|Slow heart beat|Slow heart beat +C0232190|T047|ET|R00.1|ICD10CM|Vagal bradycardia|Vagal bradycardia +C0476258|T184|ET|R00.2|ICD10CM|Awareness of heart beat|Awareness of heart beat +C0030252|T033|PT|R00.2|ICD10CM|Palpitations|Palpitations +C0030252|T033|AB|R00.2|ICD10CM|Palpitations|Palpitations +C0030252|T033|PT|R00.2|ICD10|Palpitations|Palpitations +C2910382|T184|AB|R00.8|ICD10CM|Other abnormalities of heart beat|Other abnormalities of heart beat +C2910382|T184|PT|R00.8|ICD10CM|Other abnormalities of heart beat|Other abnormalities of heart beat +C0478111|T184|PT|R00.8|ICD10|Other and unspecified abnormalities of heart beat|Other and unspecified abnormalities of heart beat +C1744601|T184|AB|R00.9|ICD10CM|Unspecified abnormalities of heart beat|Unspecified abnormalities of heart beat +C1744601|T184|PT|R00.9|ICD10CM|Unspecified abnormalities of heart beat|Unspecified abnormalities of heart beat +C0495661|T184|HT|R01|ICD10|Cardiac murmurs and other cardiac sounds|Cardiac murmurs and other cardiac sounds +C0495661|T184|AB|R01|ICD10CM|Cardiac murmurs and other cardiac sounds|Cardiac murmurs and other cardiac sounds +C0495661|T184|HT|R01|ICD10CM|Cardiac murmurs and other cardiac sounds|Cardiac murmurs and other cardiac sounds +C0495662|T184|PT|R01.0|ICD10CM|Benign and innocent cardiac murmurs|Benign and innocent cardiac murmurs +C0495662|T184|AB|R01.0|ICD10CM|Benign and innocent cardiac murmurs|Benign and innocent cardiac murmurs +C0495662|T184|PT|R01.0|ICD10|Benign and innocent cardiac murmurs|Benign and innocent cardiac murmurs +C0232255|T033|ET|R01.0|ICD10CM|Functional cardiac murmur|Functional cardiac murmur +C0850071|T033|ET|R01.1|ICD10CM|Cardiac bruit NOS|Cardiac bruit NOS +C0018808|T033|PT|R01.1|ICD10|Cardiac murmur, unspecified|Cardiac murmur, unspecified +C0018808|T033|PT|R01.1|ICD10CM|Cardiac murmur, unspecified|Cardiac murmur, unspecified +C0018808|T033|AB|R01.1|ICD10CM|Cardiac murmur, unspecified|Cardiac murmur, unspecified +C0018808|T033|ET|R01.1|ICD10CM|Heart murmur NOS|Heart murmur NOS +C0232257|T033|ET|R01.1|ICD10CM|Systolic murmur NOS|Systolic murmur NOS +C0866959|T033|ET|R01.2|ICD10CM|Cardiac dullness, increased or decreased|Cardiac dullness, increased or decreased +C0478112|T033|PT|R01.2|ICD10CM|Other cardiac sounds|Other cardiac sounds +C0478112|T033|AB|R01.2|ICD10CM|Other cardiac sounds|Other cardiac sounds +C0478112|T033|PT|R01.2|ICD10|Other cardiac sounds|Other cardiac sounds +C0476263|T033|ET|R01.2|ICD10CM|Precordial friction|Precordial friction +C0495663|T047|PT|R02|ICD10|Gangrene, not elsewhere classified|Gangrene, not elsewhere classified +C0495664|T033|HT|R03|ICD10|Abnormal blood-pressure reading, without diagnosis|Abnormal blood-pressure reading, without diagnosis +C0495664|T033|AB|R03|ICD10CM|Abnormal blood-pressure reading, without diagnosis|Abnormal blood-pressure reading, without diagnosis +C0495664|T033|HT|R03|ICD10CM|Abnormal blood-pressure reading, without diagnosis|Abnormal blood-pressure reading, without diagnosis +C0392682|T033|AB|R03.0|ICD10CM|Elevated blood-pressure reading, w/o diagnosis of htn|Elevated blood-pressure reading, w/o diagnosis of htn +C0392682|T033|PT|R03.0|ICD10CM|Elevated blood-pressure reading, without diagnosis of hypertension|Elevated blood-pressure reading, without diagnosis of hypertension +C0392682|T033|PT|R03.0|ICD10|Elevated blood-pressure reading, without diagnosis of hypertension|Elevated blood-pressure reading, without diagnosis of hypertension +C0476454|T033|PT|R03.1|ICD10|Nonspecific low blood-pressure reading|Nonspecific low blood-pressure reading +C0476454|T033|PT|R03.1|ICD10CM|Nonspecific low blood-pressure reading|Nonspecific low blood-pressure reading +C0476454|T033|AB|R03.1|ICD10CM|Nonspecific low blood-pressure reading|Nonspecific low blood-pressure reading +C0478116|T046|HT|R04|ICD10|Haemorrhage from respiratory passages|Haemorrhage from respiratory passages +C0478116|T046|HT|R04|ICD10AE|Hemorrhage from respiratory passages|Hemorrhage from respiratory passages +C0478116|T046|AB|R04|ICD10CM|Hemorrhage from respiratory passages|Hemorrhage from respiratory passages +C0478116|T046|HT|R04|ICD10CM|Hemorrhage from respiratory passages|Hemorrhage from respiratory passages +C0014591|T046|PT|R04.0|ICD10CM|Epistaxis|Epistaxis +C0014591|T046|AB|R04.0|ICD10CM|Epistaxis|Epistaxis +C0014591|T046|PT|R04.0|ICD10|Epistaxis|Epistaxis +C0014591|T046|ET|R04.0|ICD10CM|Hemorrhage from nose|Hemorrhage from nose +C0014591|T046|ET|R04.0|ICD10CM|Nosebleed|Nosebleed +C0576995|T046|PT|R04.1|ICD10|Haemorrhage from throat|Haemorrhage from throat +C0576995|T046|PT|R04.1|ICD10AE|Hemorrhage from throat|Hemorrhage from throat +C0576995|T046|PT|R04.1|ICD10CM|Hemorrhage from throat|Hemorrhage from throat +C0576995|T046|AB|R04.1|ICD10CM|Hemorrhage from throat|Hemorrhage from throat +C1390055|T046|ET|R04.2|ICD10CM|Blood-stained sputum|Blood-stained sputum +C0476274|T046|ET|R04.2|ICD10CM|Cough with hemorrhage|Cough with hemorrhage +C0019079|T184|PT|R04.2|ICD10|Haemoptysis|Haemoptysis +C0019079|T184|PT|R04.2|ICD10AE|Hemoptysis|Hemoptysis +C0019079|T184|PT|R04.2|ICD10CM|Hemoptysis|Hemoptysis +C0019079|T184|AB|R04.2|ICD10CM|Hemoptysis|Hemoptysis +C0478113|T046|PT|R04.8|ICD10|Haemorrhage from other sites in respiratory passages|Haemorrhage from other sites in respiratory passages +C0478113|T046|PT|R04.8|ICD10AE|Hemorrhage from other sites in respiratory passages|Hemorrhage from other sites in respiratory passages +C0478113|T046|HT|R04.8|ICD10CM|Hemorrhage from other sites in respiratory passages|Hemorrhage from other sites in respiratory passages +C0478113|T046|AB|R04.8|ICD10CM|Hemorrhage from other sites in respiratory passages|Hemorrhage from other sites in respiratory passages +C2977671|T046|ET|R04.81|ICD10CM|Acute idiopathic hemorrhage in infants over 28 days old|Acute idiopathic hemorrhage in infants over 28 days old +C2958656|T046|AB|R04.81|ICD10CM|Acute idiopathic pulmonary hemorrhage in infants|Acute idiopathic pulmonary hemorrhage in infants +C2958656|T046|PT|R04.81|ICD10CM|Acute idiopathic pulmonary hemorrhage in infants|Acute idiopathic pulmonary hemorrhage in infants +C2958656|T046|ET|R04.81|ICD10CM|AIPHI|AIPHI +C0478113|T046|PT|R04.89|ICD10CM|Hemorrhage from other sites in respiratory passages|Hemorrhage from other sites in respiratory passages +C0478113|T046|AB|R04.89|ICD10CM|Hemorrhage from other sites in respiratory passages|Hemorrhage from other sites in respiratory passages +C0151701|T046|ET|R04.89|ICD10CM|Pulmonary hemorrhage NOS|Pulmonary hemorrhage NOS +C0478116|T046|PT|R04.9|ICD10|Haemorrhage from respiratory passages, unspecified|Haemorrhage from respiratory passages, unspecified +C0478116|T046|PT|R04.9|ICD10CM|Hemorrhage from respiratory passages, unspecified|Hemorrhage from respiratory passages, unspecified +C0478116|T046|AB|R04.9|ICD10CM|Hemorrhage from respiratory passages, unspecified|Hemorrhage from respiratory passages, unspecified +C0478116|T046|PT|R04.9|ICD10AE|Hemorrhage from respiratory passages, unspecified|Hemorrhage from respiratory passages, unspecified +C0010200|T184|PT|R05|ICD10CM|Cough|Cough +C0010200|T184|AB|R05|ICD10CM|Cough|Cough +C0010200|T184|PT|R05|ICD10|Cough|Cough +C1260922|T033|HT|R06|ICD10|Abnormalities of breathing|Abnormalities of breathing +C1260922|T033|HT|R06|ICD10CM|Abnormalities of breathing|Abnormalities of breathing +C1260922|T033|AB|R06|ICD10CM|Abnormalities of breathing|Abnormalities of breathing +C0013404|T184|HT|R06.0|ICD10CM|Dyspnea|Dyspnea +C0013404|T184|AB|R06.0|ICD10CM|Dyspnea|Dyspnea +C0013404|T184|PT|R06.0|ICD10AE|Dyspnea|Dyspnea +C0013404|T184|PT|R06.0|ICD10|Dyspnoea|Dyspnoea +C0013404|T184|AB|R06.00|ICD10CM|Dyspnea, unspecified|Dyspnea, unspecified +C0013404|T184|PT|R06.00|ICD10CM|Dyspnea, unspecified|Dyspnea, unspecified +C0085619|T033|PT|R06.01|ICD10CM|Orthopnea|Orthopnea +C0085619|T033|AB|R06.01|ICD10CM|Orthopnea|Orthopnea +C0013404|T184|PT|R06.02|ICD10CM|Shortness of breath|Shortness of breath +C0013404|T184|AB|R06.02|ICD10CM|Shortness of breath|Shortness of breath +C0748355|T047|PT|R06.03|ICD10CM|Acute respiratory distress|Acute respiratory distress +C0748355|T047|AB|R06.03|ICD10CM|Acute respiratory distress|Acute respiratory distress +C2910383|T033|AB|R06.09|ICD10CM|Other forms of dyspnea|Other forms of dyspnea +C2910383|T033|PT|R06.09|ICD10CM|Other forms of dyspnea|Other forms of dyspnea +C0038450|T184|PT|R06.1|ICD10CM|Stridor|Stridor +C0038450|T184|AB|R06.1|ICD10CM|Stridor|Stridor +C0038450|T184|PT|R06.1|ICD10|Stridor|Stridor +C0043144|T184|PT|R06.2|ICD10|Wheezing|Wheezing +C0043144|T184|PT|R06.2|ICD10CM|Wheezing|Wheezing +C0043144|T184|AB|R06.2|ICD10CM|Wheezing|Wheezing +C0008039|T184|ET|R06.3|ICD10CM|Cheyne-Stokes breathing|Cheyne-Stokes breathing +C1313952|T184|PT|R06.3|ICD10|Periodic breathing|Periodic breathing +C1313952|T184|PT|R06.3|ICD10CM|Periodic breathing|Periodic breathing +C1313952|T184|AB|R06.3|ICD10CM|Periodic breathing|Periodic breathing +C0020578|T033|PT|R06.4|ICD10CM|Hyperventilation|Hyperventilation +C0020578|T033|AB|R06.4|ICD10CM|Hyperventilation|Hyperventilation +C0020578|T033|PT|R06.4|ICD10|Hyperventilation|Hyperventilation +C0026635|T033|PT|R06.5|ICD10|Mouth breathing|Mouth breathing +C0026635|T033|PT|R06.5|ICD10CM|Mouth breathing|Mouth breathing +C0026635|T033|AB|R06.5|ICD10CM|Mouth breathing|Mouth breathing +C0019521|T033|PT|R06.6|ICD10CM|Hiccough|Hiccough +C0019521|T033|AB|R06.6|ICD10CM|Hiccough|Hiccough +C0019521|T033|PT|R06.6|ICD10|Hiccough|Hiccough +C0037383|T184|PT|R06.7|ICD10|Sneezing|Sneezing +C0037383|T184|PT|R06.7|ICD10CM|Sneezing|Sneezing +C0037383|T184|AB|R06.7|ICD10CM|Sneezing|Sneezing +C2910384|T184|HT|R06.8|ICD10CM|Other abnormalities of breathing|Other abnormalities of breathing +C2910384|T184|AB|R06.8|ICD10CM|Other abnormalities of breathing|Other abnormalities of breathing +C0478114|T184|PT|R06.8|ICD10|Other and unspecified abnormalities of breathing|Other and unspecified abnormalities of breathing +C0003578|T184|ET|R06.81|ICD10CM|Apnea NOS|Apnea NOS +C2910385|T184|AB|R06.81|ICD10CM|Apnea, not elsewhere classified|Apnea, not elsewhere classified +C2910385|T184|PT|R06.81|ICD10CM|Apnea, not elsewhere classified|Apnea, not elsewhere classified +C0231835|T033|ET|R06.82|ICD10CM|Tachypnea NOS|Tachypnea NOS +C2910386|T184|AB|R06.82|ICD10CM|Tachypnea, not elsewhere classified|Tachypnea, not elsewhere classified +C2910386|T184|PT|R06.82|ICD10CM|Tachypnea, not elsewhere classified|Tachypnea, not elsewhere classified +C0037384|T184|PT|R06.83|ICD10CM|Snoring|Snoring +C0037384|T184|AB|R06.83|ICD10CM|Snoring|Snoring +C0476287|T184|ET|R06.89|ICD10CM|Breath-holding (spells)|Breath-holding (spells) +C2910384|T184|AB|R06.89|ICD10CM|Other abnormalities of breathing|Other abnormalities of breathing +C2910384|T184|PT|R06.89|ICD10CM|Other abnormalities of breathing|Other abnormalities of breathing +C0425481|T184|ET|R06.89|ICD10CM|Sighing|Sighing +C1260922|T033|AB|R06.9|ICD10CM|Unspecified abnormalities of breathing|Unspecified abnormalities of breathing +C1260922|T033|PT|R06.9|ICD10CM|Unspecified abnormalities of breathing|Unspecified abnormalities of breathing +C0495666|T184|AB|R07|ICD10CM|Pain in throat and chest|Pain in throat and chest +C0495666|T184|HT|R07|ICD10CM|Pain in throat and chest|Pain in throat and chest +C0495666|T184|HT|R07|ICD10|Pain in throat and chest|Pain in throat and chest +C0242429|T184|PT|R07.0|ICD10CM|Pain in throat|Pain in throat +C0242429|T184|AB|R07.0|ICD10CM|Pain in throat|Pain in throat +C0242429|T184|PT|R07.0|ICD10|Pain in throat|Pain in throat +C0423729|T184|PT|R07.1|ICD10CM|Chest pain on breathing|Chest pain on breathing +C0423729|T184|AB|R07.1|ICD10CM|Chest pain on breathing|Chest pain on breathing +C0423729|T184|PT|R07.1|ICD10|Chest pain on breathing|Chest pain on breathing +C0423729|T184|ET|R07.1|ICD10CM|Painful respiration|Painful respiration +C0232286|T184|PT|R07.2|ICD10|Precordial pain|Precordial pain +C0232286|T184|PT|R07.2|ICD10CM|Precordial pain|Precordial pain +C0232286|T184|AB|R07.2|ICD10CM|Precordial pain|Precordial pain +C0029537|T184|PT|R07.3|ICD10|Other chest pain|Other chest pain +C0008031|T184|PT|R07.4|ICD10|Chest pain, unspecified|Chest pain, unspecified +C0029537|T184|HT|R07.8|ICD10CM|Other chest pain|Other chest pain +C0029537|T184|AB|R07.8|ICD10CM|Other chest pain|Other chest pain +C0008033|T184|PT|R07.81|ICD10CM|Pleurodynia|Pleurodynia +C0008033|T184|AB|R07.81|ICD10CM|Pleurodynia|Pleurodynia +C0008033|T184|ET|R07.81|ICD10CM|Pleurodynia NOS|Pleurodynia NOS +C0877023|T184|PT|R07.82|ICD10CM|Intercostal pain|Intercostal pain +C0877023|T184|AB|R07.82|ICD10CM|Intercostal pain|Intercostal pain +C0476278|T184|ET|R07.89|ICD10CM|Anterior chest-wall pain NOS|Anterior chest-wall pain NOS +C0029537|T184|PT|R07.89|ICD10CM|Other chest pain|Other chest pain +C0029537|T184|AB|R07.89|ICD10CM|Other chest pain|Other chest pain +C0008031|T184|PT|R07.9|ICD10CM|Chest pain, unspecified|Chest pain, unspecified +C0008031|T184|AB|R07.9|ICD10CM|Chest pain, unspecified|Chest pain, unspecified +C0495668|T184|AB|R09|ICD10CM|Oth symptoms and signs involving the circ and resp sys|Oth symptoms and signs involving the circ and resp sys +C0495668|T184|HT|R09|ICD10CM|Other symptoms and signs involving the circulatory and respiratory system|Other symptoms and signs involving the circulatory and respiratory system +C0495668|T184|HT|R09|ICD10|Other symptoms and signs involving the circulatory and respiratory systems|Other symptoms and signs involving the circulatory and respiratory systems +C0004044|T046|PT|R09.0|ICD10|Asphyxia|Asphyxia +C1561822|T046|AB|R09.0|ICD10CM|Asphyxia and hypoxemia|Asphyxia and hypoxemia +C1561822|T046|HT|R09.0|ICD10CM|Asphyxia and hypoxemia|Asphyxia and hypoxemia +C0004044|T046|PT|R09.01|ICD10CM|Asphyxia|Asphyxia +C0004044|T046|AB|R09.01|ICD10CM|Asphyxia|Asphyxia +C0700292|T033|PT|R09.02|ICD10CM|Hypoxemia|Hypoxemia +C0700292|T033|AB|R09.02|ICD10CM|Hypoxemia|Hypoxemia +C0032231|T047|PT|R09.1|ICD10|Pleurisy|Pleurisy +C0032231|T047|PT|R09.1|ICD10CM|Pleurisy|Pleurisy +C0032231|T047|AB|R09.1|ICD10CM|Pleurisy|Pleurisy +C1444565|T046|ET|R09.2|ICD10CM|Cardiorespiratory failure|Cardiorespiratory failure +C0162297|T046|PT|R09.2|ICD10|Respiratory arrest|Respiratory arrest +C0162297|T046|PT|R09.2|ICD10CM|Respiratory arrest|Respiratory arrest +C0162297|T046|AB|R09.2|ICD10CM|Respiratory arrest|Respiratory arrest +C0476275|T184|ET|R09.3|ICD10CM|Abnormal amount of sputum|Abnormal amount of sputum +C0476276|T184|ET|R09.3|ICD10CM|Abnormal color of sputum|Abnormal color of sputum +C0476277|T184|ET|R09.3|ICD10CM|Abnormal odor of sputum|Abnormal odor of sputum +C0159054|T033|PT|R09.3|ICD10|Abnormal sputum|Abnormal sputum +C0159054|T033|PT|R09.3|ICD10CM|Abnormal sputum|Abnormal sputum +C0159054|T033|AB|R09.3|ICD10CM|Abnormal sputum|Abnormal sputum +C0235567|T033|ET|R09.3|ICD10CM|Excessive sputum|Excessive sputum +C0478115|T184|AB|R09.8|ICD10CM|Oth symptoms and signs involving the circ and resp systems|Oth symptoms and signs involving the circ and resp systems +C0478115|T184|HT|R09.8|ICD10CM|Other specified symptoms and signs involving the circulatory and respiratory systems|Other specified symptoms and signs involving the circulatory and respiratory systems +C0478115|T184|PT|R09.8|ICD10|Other specified symptoms and signs involving the circulatory and respiratory systems|Other specified symptoms and signs involving the circulatory and respiratory systems +C0027424|T184|PT|R09.81|ICD10CM|Nasal congestion|Nasal congestion +C0027424|T184|AB|R09.81|ICD10CM|Nasal congestion|Nasal congestion +C0032781|T184|PT|R09.82|ICD10CM|Postnasal drip|Postnasal drip +C0032781|T184|AB|R09.82|ICD10CM|Postnasal drip|Postnasal drip +C0476283|T033|ET|R09.89|ICD10CM|Abnormal chest percussion|Abnormal chest percussion +C0232112|T033|ET|R09.89|ICD10CM|Bruit (arterial)|Bruit (arterial) +C0476285|T184|ET|R09.89|ICD10CM|Chest tympany|Chest tympany +C0546947|T184|ET|R09.89|ICD10CM|Choking sensation|Choking sensation +C1955514|T033|ET|R09.89|ICD10CM|Feeling of foreign body in throat|Feeling of foreign body in throat +C0476284|T033|ET|R09.89|ICD10CM|Friction sounds in chest|Friction sounds in chest +C0478115|T184|AB|R09.89|ICD10CM|Oth symptoms and signs involving the circ and resp systems|Oth symptoms and signs involving the circ and resp systems +C0478115|T184|PT|R09.89|ICD10CM|Other specified symptoms and signs involving the circulatory and respiratory systems|Other specified symptoms and signs involving the circulatory and respiratory systems +C0034642|T033|ET|R09.89|ICD10CM|Rales|Rales +C0232132|T033|ET|R09.89|ICD10CM|Weak pulse|Weak pulse +C0495669|T184|AB|R10|ICD10CM|Abdominal and pelvic pain|Abdominal and pelvic pain +C0495669|T184|HT|R10|ICD10CM|Abdominal and pelvic pain|Abdominal and pelvic pain +C0495669|T184|HT|R10|ICD10|Abdominal and pelvic pain|Abdominal and pelvic pain +C0478117|T184|HT|R10-R19|ICD10CM|Symptoms and signs involving the digestive system and abdomen (R10-R19)|Symptoms and signs involving the digestive system and abdomen (R10-R19) +C0478117|T184|HT|R10-R19.9|ICD10|Symptoms and signs involving the digestive system and abdomen|Symptoms and signs involving the digestive system and abdomen +C0000727|T184|PT|R10.0|ICD10CM|Acute abdomen|Acute abdomen +C0000727|T184|AB|R10.0|ICD10CM|Acute abdomen|Acute abdomen +C0000727|T184|PT|R10.0|ICD10|Acute abdomen|Acute abdomen +C2910387|T184|ET|R10.0|ICD10CM|Severe abdominal pain (generalized) (with abdominal rigidity)|Severe abdominal pain (generalized) (with abdominal rigidity) +C0232492|T184|PT|R10.1|ICD10|Pain localized to upper abdomen|Pain localized to upper abdomen +C0232492|T184|HT|R10.1|ICD10CM|Pain localized to upper abdomen|Pain localized to upper abdomen +C0232492|T184|AB|R10.1|ICD10CM|Pain localized to upper abdomen|Pain localized to upper abdomen +C0232492|T184|AB|R10.10|ICD10CM|Upper abdominal pain, unspecified|Upper abdominal pain, unspecified +C0232492|T184|PT|R10.10|ICD10CM|Upper abdominal pain, unspecified|Upper abdominal pain, unspecified +C0235299|T184|PT|R10.11|ICD10CM|Right upper quadrant pain|Right upper quadrant pain +C0235299|T184|AB|R10.11|ICD10CM|Right upper quadrant pain|Right upper quadrant pain +C0238552|T184|PT|R10.12|ICD10CM|Left upper quadrant pain|Left upper quadrant pain +C0238552|T184|AB|R10.12|ICD10CM|Left upper quadrant pain|Left upper quadrant pain +C0013395|T184|ET|R10.13|ICD10CM|Dyspepsia|Dyspepsia +C0232493|T184|PT|R10.13|ICD10CM|Epigastric pain|Epigastric pain +C0232493|T184|AB|R10.13|ICD10CM|Epigastric pain|Epigastric pain +C0478659|T184|PT|R10.2|ICD10|Pelvic and perineal pain|Pelvic and perineal pain +C0478659|T184|PT|R10.2|ICD10CM|Pelvic and perineal pain|Pelvic and perineal pain +C0478659|T184|AB|R10.2|ICD10CM|Pelvic and perineal pain|Pelvic and perineal pain +C0478118|T184|HT|R10.3|ICD10CM|Pain localized to other parts of lower abdomen|Pain localized to other parts of lower abdomen +C0478118|T184|AB|R10.3|ICD10CM|Pain localized to other parts of lower abdomen|Pain localized to other parts of lower abdomen +C0478118|T184|PT|R10.3|ICD10|Pain localized to other parts of lower abdomen|Pain localized to other parts of lower abdomen +C0232495|T184|AB|R10.30|ICD10CM|Lower abdominal pain, unspecified|Lower abdominal pain, unspecified +C0232495|T184|PT|R10.30|ICD10CM|Lower abdominal pain, unspecified|Lower abdominal pain, unspecified +C0694551|T184|PT|R10.31|ICD10CM|Right lower quadrant pain|Right lower quadrant pain +C0694551|T184|AB|R10.31|ICD10CM|Right lower quadrant pain|Right lower quadrant pain +C0238551|T184|PT|R10.32|ICD10CM|Left lower quadrant pain|Left lower quadrant pain +C0238551|T184|AB|R10.32|ICD10CM|Left lower quadrant pain|Left lower quadrant pain +C1096624|T033|PT|R10.33|ICD10CM|Periumbilical pain|Periumbilical pain +C1096624|T033|AB|R10.33|ICD10CM|Periumbilical pain|Periumbilical pain +C0478119|T184|PT|R10.4|ICD10|Other and unspecified abdominal pain|Other and unspecified abdominal pain +C2910388|T184|AB|R10.8|ICD10CM|Other abdominal pain|Other abdominal pain +C2910388|T184|HT|R10.8|ICD10CM|Other abdominal pain|Other abdominal pain +C0232498|T184|HT|R10.81|ICD10CM|Abdominal tenderness|Abdominal tenderness +C0232498|T184|AB|R10.81|ICD10CM|Abdominal tenderness|Abdominal tenderness +C0232498|T184|ET|R10.81|ICD10CM|Abdominal tenderness NOS|Abdominal tenderness NOS +C0238571|T184|AB|R10.811|ICD10CM|Right upper quadrant abdominal tenderness|Right upper quadrant abdominal tenderness +C0238571|T184|PT|R10.811|ICD10CM|Right upper quadrant abdominal tenderness|Right upper quadrant abdominal tenderness +C0238566|T184|AB|R10.812|ICD10CM|Left upper quadrant abdominal tenderness|Left upper quadrant abdominal tenderness +C0238566|T184|PT|R10.812|ICD10CM|Left upper quadrant abdominal tenderness|Left upper quadrant abdominal tenderness +C0238570|T184|AB|R10.813|ICD10CM|Right lower quadrant abdominal tenderness|Right lower quadrant abdominal tenderness +C0238570|T184|PT|R10.813|ICD10CM|Right lower quadrant abdominal tenderness|Right lower quadrant abdominal tenderness +C2585306|T184|AB|R10.814|ICD10CM|Left lower quadrant abdominal tenderness|Left lower quadrant abdominal tenderness +C2585306|T184|PT|R10.814|ICD10CM|Left lower quadrant abdominal tenderness|Left lower quadrant abdominal tenderness +C0375573|T184|AB|R10.815|ICD10CM|Periumbilic abdominal tenderness|Periumbilic abdominal tenderness +C0375573|T184|PT|R10.815|ICD10CM|Periumbilic abdominal tenderness|Periumbilic abdominal tenderness +C0239280|T184|AB|R10.816|ICD10CM|Epigastric abdominal tenderness|Epigastric abdominal tenderness +C0239280|T184|PT|R10.816|ICD10CM|Epigastric abdominal tenderness|Epigastric abdominal tenderness +C0302540|T184|PT|R10.817|ICD10CM|Generalized abdominal tenderness|Generalized abdominal tenderness +C0302540|T184|AB|R10.817|ICD10CM|Generalized abdominal tenderness|Generalized abdominal tenderness +C0232498|T184|AB|R10.819|ICD10CM|Abdominal tenderness, unspecified site|Abdominal tenderness, unspecified site +C0232498|T184|PT|R10.819|ICD10CM|Abdominal tenderness, unspecified site|Abdominal tenderness, unspecified site +C0238569|T033|AB|R10.82|ICD10CM|Rebound abdominal tenderness|Rebound abdominal tenderness +C0238569|T033|HT|R10.82|ICD10CM|Rebound abdominal tenderness|Rebound abdominal tenderness +C2910389|T033|AB|R10.821|ICD10CM|Right upper quadrant rebound abdominal tenderness|Right upper quadrant rebound abdominal tenderness +C2910389|T033|PT|R10.821|ICD10CM|Right upper quadrant rebound abdominal tenderness|Right upper quadrant rebound abdominal tenderness +C2910390|T033|AB|R10.822|ICD10CM|Left upper quadrant rebound abdominal tenderness|Left upper quadrant rebound abdominal tenderness +C2910390|T033|PT|R10.822|ICD10CM|Left upper quadrant rebound abdominal tenderness|Left upper quadrant rebound abdominal tenderness +C2910391|T033|AB|R10.823|ICD10CM|Right lower quadrant rebound abdominal tenderness|Right lower quadrant rebound abdominal tenderness +C2910391|T033|PT|R10.823|ICD10CM|Right lower quadrant rebound abdominal tenderness|Right lower quadrant rebound abdominal tenderness +C2910392|T033|AB|R10.824|ICD10CM|Left lower quadrant rebound abdominal tenderness|Left lower quadrant rebound abdominal tenderness +C2910392|T033|PT|R10.824|ICD10CM|Left lower quadrant rebound abdominal tenderness|Left lower quadrant rebound abdominal tenderness +C2910393|T033|AB|R10.825|ICD10CM|Periumbilic rebound abdominal tenderness|Periumbilic rebound abdominal tenderness +C2910393|T033|PT|R10.825|ICD10CM|Periumbilic rebound abdominal tenderness|Periumbilic rebound abdominal tenderness +C2910394|T033|AB|R10.826|ICD10CM|Epigastric rebound abdominal tenderness|Epigastric rebound abdominal tenderness +C2910394|T033|PT|R10.826|ICD10CM|Epigastric rebound abdominal tenderness|Epigastric rebound abdominal tenderness +C2010786|T033|AB|R10.827|ICD10CM|Generalized rebound abdominal tenderness|Generalized rebound abdominal tenderness +C2010786|T033|PT|R10.827|ICD10CM|Generalized rebound abdominal tenderness|Generalized rebound abdominal tenderness +C2910395|T033|AB|R10.829|ICD10CM|Rebound abdominal tenderness, unspecified site|Rebound abdominal tenderness, unspecified site +C2910395|T033|PT|R10.829|ICD10CM|Rebound abdominal tenderness, unspecified site|Rebound abdominal tenderness, unspecified site +C0232488|T033|PT|R10.83|ICD10CM|Colic|Colic +C0232488|T033|AB|R10.83|ICD10CM|Colic|Colic +C0232488|T033|ET|R10.83|ICD10CM|Colic NOS|Colic NOS +C0266836|T184|ET|R10.83|ICD10CM|Infantile colic|Infantile colic +C0344304|T184|PT|R10.84|ICD10CM|Generalized abdominal pain|Generalized abdominal pain +C0344304|T184|AB|R10.84|ICD10CM|Generalized abdominal pain|Generalized abdominal pain +C0000737|T184|AB|R10.9|ICD10CM|Unspecified abdominal pain|Unspecified abdominal pain +C0000737|T184|PT|R10.9|ICD10CM|Unspecified abdominal pain|Unspecified abdominal pain +C0027498|T184|HT|R11|ICD10CM|Nausea and vomiting|Nausea and vomiting +C0027498|T184|AB|R11|ICD10CM|Nausea and vomiting|Nausea and vomiting +C0027498|T184|PT|R11|ICD10|Nausea and vomiting|Nausea and vomiting +C0027497|T184|PT|R11.0|ICD10CM|Nausea|Nausea +C0027497|T184|AB|R11.0|ICD10CM|Nausea|Nausea +C0027497|T184|ET|R11.0|ICD10CM|Nausea NOS|Nausea NOS +C2910396|T184|ET|R11.0|ICD10CM|Nausea without vomiting|Nausea without vomiting +C0042963|T184|HT|R11.1|ICD10CM|Vomiting|Vomiting +C0042963|T184|AB|R11.1|ICD10CM|Vomiting|Vomiting +C0042963|T184|ET|R11.10|ICD10CM|Vomiting NOS|Vomiting NOS +C0042963|T184|AB|R11.10|ICD10CM|Vomiting, unspecified|Vomiting, unspecified +C0042963|T184|PT|R11.10|ICD10CM|Vomiting, unspecified|Vomiting, unspecified +C2910398|T033|PT|R11.11|ICD10CM|Vomiting without nausea|Vomiting without nausea +C2910398|T033|AB|R11.11|ICD10CM|Vomiting without nausea|Vomiting without nausea +C0221151|T184|PT|R11.12|ICD10CM|Projectile vomiting|Projectile vomiting +C0221151|T184|AB|R11.12|ICD10CM|Projectile vomiting|Projectile vomiting +C3874311|T047|AB|R11.13|ICD10CM|Vomiting of fecal matter|Vomiting of fecal matter +C3874311|T047|PT|R11.13|ICD10CM|Vomiting of fecal matter|Vomiting of fecal matter +C0232599|T033|ET|R11.14|ICD10CM|Bilious emesis|Bilious emesis +C0232599|T033|PT|R11.14|ICD10CM|Bilious vomiting|Bilious vomiting +C0232599|T033|AB|R11.14|ICD10CM|Bilious vomiting|Bilious vomiting +C0152164|T047|ET|R11.15|ICD10CM|Cyclic vomiting syndrome NOS|Cyclic vomiting syndrome NOS +C5140894|T047|AB|R11.15|ICD10CM|Cyclical vomiting syndrome unrelated to migraine|Cyclical vomiting syndrome unrelated to migraine +C5140894|T047|PT|R11.15|ICD10CM|Cyclical vomiting syndrome unrelated to migraine|Cyclical vomiting syndrome unrelated to migraine +C0152165|T184|ET|R11.15|ICD10CM|Persistent vomiting|Persistent vomiting +C0027498|T184|AB|R11.2|ICD10CM|Nausea with vomiting, unspecified|Nausea with vomiting, unspecified +C0027498|T184|PT|R11.2|ICD10CM|Nausea with vomiting, unspecified|Nausea with vomiting, unspecified +C2910399|T184|ET|R11.2|ICD10CM|Persistent nausea with vomiting NOS|Persistent nausea with vomiting NOS +C0018834|T184|PT|R12|ICD10CM|Heartburn|Heartburn +C0018834|T184|AB|R12|ICD10CM|Heartburn|Heartburn +C0018834|T184|PT|R12|ICD10|Heartburn|Heartburn +C2910400|T184|AB|R13|ICD10CM|Aphagia and dysphagia|Aphagia and dysphagia +C2910400|T184|HT|R13|ICD10CM|Aphagia and dysphagia|Aphagia and dysphagia +C0011168|T047|PT|R13|ICD10|Dysphagia|Dysphagia +C0221470|T033|PT|R13.0|ICD10CM|Aphagia|Aphagia +C0221470|T033|AB|R13.0|ICD10CM|Aphagia|Aphagia +C0221470|T033|ET|R13.0|ICD10CM|Inability to swallow|Inability to swallow +C0011168|T047|HT|R13.1|ICD10CM|Dysphagia|Dysphagia +C0011168|T047|AB|R13.1|ICD10CM|Dysphagia|Dysphagia +C0011168|T047|ET|R13.10|ICD10CM|Difficulty in swallowing NOS|Difficulty in swallowing NOS +C0011168|T047|AB|R13.10|ICD10CM|Dysphagia, unspecified|Dysphagia, unspecified +C0011168|T047|PT|R13.10|ICD10CM|Dysphagia, unspecified|Dysphagia, unspecified +C2315800|T047|AB|R13.11|ICD10CM|Dysphagia, oral phase|Dysphagia, oral phase +C2315800|T047|PT|R13.11|ICD10CM|Dysphagia, oral phase|Dysphagia, oral phase +C0267071|T047|AB|R13.12|ICD10CM|Dysphagia, oropharyngeal phase|Dysphagia, oropharyngeal phase +C0267071|T047|PT|R13.12|ICD10CM|Dysphagia, oropharyngeal phase|Dysphagia, oropharyngeal phase +C1955516|T184|AB|R13.13|ICD10CM|Dysphagia, pharyngeal phase|Dysphagia, pharyngeal phase +C1955516|T184|PT|R13.13|ICD10CM|Dysphagia, pharyngeal phase|Dysphagia, pharyngeal phase +C1955517|T184|AB|R13.14|ICD10CM|Dysphagia, pharyngoesophageal phase|Dysphagia, pharyngoesophageal phase +C1955517|T184|PT|R13.14|ICD10CM|Dysphagia, pharyngoesophageal phase|Dysphagia, pharyngoesophageal phase +C1955519|T047|ET|R13.19|ICD10CM|Cervical dysphagia|Cervical dysphagia +C1955520|T047|ET|R13.19|ICD10CM|Neurogenic dysphagia|Neurogenic dysphagia +C1955518|T047|AB|R13.19|ICD10CM|Other dysphagia|Other dysphagia +C1955518|T047|PT|R13.19|ICD10CM|Other dysphagia|Other dysphagia +C0495671|T184|HT|R14|ICD10CM|Flatulence and related conditions|Flatulence and related conditions +C0495671|T184|AB|R14|ICD10CM|Flatulence and related conditions|Flatulence and related conditions +C0495671|T184|PT|R14|ICD10|Flatulence and related conditions|Flatulence and related conditions +C0235698|T184|AB|R14.0|ICD10CM|Abdominal distension (gaseous)|Abdominal distension (gaseous) +C0235698|T184|PT|R14.0|ICD10CM|Abdominal distension (gaseous)|Abdominal distension (gaseous) +C1291077|T184|ET|R14.0|ICD10CM|Bloating|Bloating +C2910401|T184|ET|R14.0|ICD10CM|Tympanites (abdominal) (intestinal)|Tympanites (abdominal) (intestinal) +C0476289|T184|PT|R14.1|ICD10CM|Gas pain|Gas pain +C0476289|T184|AB|R14.1|ICD10CM|Gas pain|Gas pain +C0014724|T184|PT|R14.2|ICD10CM|Eructation|Eructation +C0014724|T184|AB|R14.2|ICD10CM|Eructation|Eructation +C0016204|T184|PT|R14.3|ICD10CM|Flatulence|Flatulence +C0016204|T184|AB|R14.3|ICD10CM|Flatulence|Flatulence +C2945606|T047|ET|R15|ICD10CM|encopresis NOS|encopresis NOS +C0015732|T047|PT|R15|ICD10|Faecal incontinence|Faecal incontinence +C0015732|T047|HT|R15|ICD10CM|Fecal incontinence|Fecal incontinence +C0015732|T047|AB|R15|ICD10CM|Fecal incontinence|Fecal incontinence +C0015732|T047|PT|R15|ICD10AE|Fecal incontinence|Fecal incontinence +C0239167|T033|AB|R15.0|ICD10CM|Incomplete defecation|Incomplete defecation +C0239167|T033|PT|R15.0|ICD10CM|Incomplete defecation|Incomplete defecation +C4759678|T184|PT|R15.1|ICD10CM|Fecal smearing|Fecal smearing +C4759678|T184|AB|R15.1|ICD10CM|Fecal smearing|Fecal smearing +C2921133|T184|ET|R15.1|ICD10CM|Fecal soiling|Fecal soiling +C0426636|T184|PT|R15.2|ICD10CM|Fecal urgency|Fecal urgency +C0426636|T184|AB|R15.2|ICD10CM|Fecal urgency|Fecal urgency +C0015732|T047|ET|R15.9|ICD10CM|Fecal incontinence NOS|Fecal incontinence NOS +C2921132|T184|AB|R15.9|ICD10CM|Full incontinence of feces|Full incontinence of feces +C2921132|T184|PT|R15.9|ICD10CM|Full incontinence of feces|Full incontinence of feces +C2910402|T184|AB|R16|ICD10CM|Hepatomegaly and splenomegaly, not elsewhere classified|Hepatomegaly and splenomegaly, not elsewhere classified +C2910402|T184|HT|R16|ICD10CM|Hepatomegaly and splenomegaly, not elsewhere classified|Hepatomegaly and splenomegaly, not elsewhere classified +C0869215|T033|HT|R16|ICD10|Hepatomegaly and splenomegaly, not elsewhere classified|Hepatomegaly and splenomegaly, not elsewhere classified +C0019209|T033|ET|R16.0|ICD10CM|Hepatomegaly NOS|Hepatomegaly NOS +C0495672|T046|PT|R16.0|ICD10|Hepatomegaly, not elsewhere classified|Hepatomegaly, not elsewhere classified +C0495672|T046|PT|R16.0|ICD10CM|Hepatomegaly, not elsewhere classified|Hepatomegaly, not elsewhere classified +C0495672|T046|AB|R16.0|ICD10CM|Hepatomegaly, not elsewhere classified|Hepatomegaly, not elsewhere classified +C0038002|T033|ET|R16.1|ICD10CM|Splenomegaly NOS|Splenomegaly NOS +C0495673|T046|PT|R16.1|ICD10|Splenomegaly, not elsewhere classified|Splenomegaly, not elsewhere classified +C0495673|T046|PT|R16.1|ICD10CM|Splenomegaly, not elsewhere classified|Splenomegaly, not elsewhere classified +C0495673|T046|AB|R16.1|ICD10CM|Splenomegaly, not elsewhere classified|Splenomegaly, not elsewhere classified +C0869215|T033|PT|R16.2|ICD10|Hepatomegaly with splenomegaly, not elsewhere classified|Hepatomegaly with splenomegaly, not elsewhere classified +C0869215|T033|PT|R16.2|ICD10CM|Hepatomegaly with splenomegaly, not elsewhere classified|Hepatomegaly with splenomegaly, not elsewhere classified +C0869215|T033|AB|R16.2|ICD10CM|Hepatomegaly with splenomegaly, not elsewhere classified|Hepatomegaly with splenomegaly, not elsewhere classified +C0019214|T184|ET|R16.2|ICD10CM|Hepatosplenomegaly NOS|Hepatosplenomegaly NOS +C0022346|T184|PT|R17|ICD10CM|Unspecified jaundice|Unspecified jaundice +C0022346|T184|AB|R17|ICD10CM|Unspecified jaundice|Unspecified jaundice +C0022346|T184|PT|R17|ICD10|Unspecified jaundice|Unspecified jaundice +C0003962|T047|PT|R18|ICD10|Ascites|Ascites +C0003962|T047|AB|R18|ICD10CM|Ascites|Ascites +C0003962|T047|HT|R18|ICD10CM|Ascites|Ascites +C3665480|T033|ET|R18|ICD10CM|fluid in peritoneal cavity|fluid in peritoneal cavity +C0220656|T191|PT|R18.0|ICD10CM|Malignant ascites|Malignant ascites +C0220656|T191|AB|R18.0|ICD10CM|Malignant ascites|Malignant ascites +C0003962|T047|ET|R18.8|ICD10CM|Ascites NOS|Ascites NOS +C1955521|T047|AB|R18.8|ICD10CM|Other ascites|Other ascites +C1955521|T047|PT|R18.8|ICD10CM|Other ascites|Other ascites +C0031144|T047|ET|R18.8|ICD10CM|Peritoneal effusion (chronic)|Peritoneal effusion (chronic) +C0495675|T184|AB|R19|ICD10CM|Oth symptoms and signs involving the dgstv sys and abdomen|Oth symptoms and signs involving the dgstv sys and abdomen +C0495675|T184|HT|R19|ICD10CM|Other symptoms and signs involving the digestive system and abdomen|Other symptoms and signs involving the digestive system and abdomen +C0495675|T184|HT|R19|ICD10|Other symptoms and signs involving the digestive system and abdomen|Other symptoms and signs involving the digestive system and abdomen +C0495676|T033|PT|R19.0|ICD10|Intra-abdominal and pelvic swelling, mass and lump|Intra-abdominal and pelvic swelling, mass and lump +C0495676|T033|HT|R19.0|ICD10CM|Intra-abdominal and pelvic swelling, mass and lump|Intra-abdominal and pelvic swelling, mass and lump +C0495676|T033|AB|R19.0|ICD10CM|Intra-abdominal and pelvic swelling, mass and lump|Intra-abdominal and pelvic swelling, mass and lump +C2910403|T033|AB|R19.00|ICD10CM|Intra-abd and pelvic swelling, mass and lump, unsp site|Intra-abd and pelvic swelling, mass and lump, unsp site +C2910403|T033|PT|R19.00|ICD10CM|Intra-abdominal and pelvic swelling, mass and lump, unspecified site|Intra-abdominal and pelvic swelling, mass and lump, unspecified site +C2910404|T033|AB|R19.01|ICD10CM|Right upper quadrant abdominal swelling, mass and lump|Right upper quadrant abdominal swelling, mass and lump +C2910404|T033|PT|R19.01|ICD10CM|Right upper quadrant abdominal swelling, mass and lump|Right upper quadrant abdominal swelling, mass and lump +C2910405|T033|AB|R19.02|ICD10CM|Left upper quadrant abdominal swelling, mass and lump|Left upper quadrant abdominal swelling, mass and lump +C2910405|T033|PT|R19.02|ICD10CM|Left upper quadrant abdominal swelling, mass and lump|Left upper quadrant abdominal swelling, mass and lump +C2910406|T033|AB|R19.03|ICD10CM|Right lower quadrant abdominal swelling, mass and lump|Right lower quadrant abdominal swelling, mass and lump +C2910406|T033|PT|R19.03|ICD10CM|Right lower quadrant abdominal swelling, mass and lump|Right lower quadrant abdominal swelling, mass and lump +C2910407|T033|AB|R19.04|ICD10CM|Left lower quadrant abdominal swelling, mass and lump|Left lower quadrant abdominal swelling, mass and lump +C2910407|T033|PT|R19.04|ICD10CM|Left lower quadrant abdominal swelling, mass and lump|Left lower quadrant abdominal swelling, mass and lump +C2919116|T184|ET|R19.05|ICD10CM|Diffuse or generalized umbilical swelling or mass|Diffuse or generalized umbilical swelling or mass +C2910408|T033|AB|R19.05|ICD10CM|Periumbilic swelling, mass or lump|Periumbilic swelling, mass or lump +C2910408|T033|PT|R19.05|ICD10CM|Periumbilic swelling, mass or lump|Periumbilic swelling, mass or lump +C3650652|T033|AB|R19.06|ICD10CM|Epigastric swelling, mass or lump|Epigastric swelling, mass or lump +C3650652|T033|PT|R19.06|ICD10CM|Epigastric swelling, mass or lump|Epigastric swelling, mass or lump +C2910410|T033|ET|R19.07|ICD10CM|Diffuse or generalized intra-abdominal swelling or mass NOS|Diffuse or generalized intra-abdominal swelling or mass NOS +C2910411|T033|ET|R19.07|ICD10CM|Diffuse or generalized pelvic swelling or mass NOS|Diffuse or generalized pelvic swelling or mass NOS +C2910412|T033|AB|R19.07|ICD10CM|Generalized intra-abd and pelvic swelling, mass and lump|Generalized intra-abd and pelvic swelling, mass and lump +C2910412|T033|PT|R19.07|ICD10CM|Generalized intra-abdominal and pelvic swelling, mass and lump|Generalized intra-abdominal and pelvic swelling, mass and lump +C2910413|T033|AB|R19.09|ICD10CM|Other intra-abdominal and pelvic swelling, mass and lump|Other intra-abdominal and pelvic swelling, mass and lump +C2910413|T033|PT|R19.09|ICD10CM|Other intra-abdominal and pelvic swelling, mass and lump|Other intra-abdominal and pelvic swelling, mass and lump +C0159060|T033|HT|R19.1|ICD10CM|Abnormal bowel sounds|Abnormal bowel sounds +C0159060|T033|AB|R19.1|ICD10CM|Abnormal bowel sounds|Abnormal bowel sounds +C0159060|T033|PT|R19.1|ICD10|Abnormal bowel sounds|Abnormal bowel sounds +C0232696|T033|PT|R19.11|ICD10CM|Absent bowel sounds|Absent bowel sounds +C0232696|T033|AB|R19.11|ICD10CM|Absent bowel sounds|Absent bowel sounds +C0232694|T033|PT|R19.12|ICD10CM|Hyperactive bowel sounds|Hyperactive bowel sounds +C0232694|T033|AB|R19.12|ICD10CM|Hyperactive bowel sounds|Hyperactive bowel sounds +C0159060|T033|ET|R19.15|ICD10CM|Abnormal bowel sounds NOS|Abnormal bowel sounds NOS +C2910414|T033|AB|R19.15|ICD10CM|Other abnormal bowel sounds|Other abnormal bowel sounds +C2910414|T033|PT|R19.15|ICD10CM|Other abnormal bowel sounds|Other abnormal bowel sounds +C0232474|T033|ET|R19.2|ICD10CM|Hyperperistalsis|Hyperperistalsis +C0159059|T033|PT|R19.2|ICD10|Visible peristalsis|Visible peristalsis +C0159059|T033|PT|R19.2|ICD10CM|Visible peristalsis|Visible peristalsis +C0159059|T033|AB|R19.2|ICD10CM|Visible peristalsis|Visible peristalsis +C0159066|T184|HT|R19.3|ICD10CM|Abdominal rigidity|Abdominal rigidity +C0159066|T184|AB|R19.3|ICD10CM|Abdominal rigidity|Abdominal rigidity +C0159066|T184|PT|R19.3|ICD10|Abdominal rigidity|Abdominal rigidity +C0159066|T184|AB|R19.30|ICD10CM|Abdominal rigidity, unspecified site|Abdominal rigidity, unspecified site +C0159066|T184|PT|R19.30|ICD10CM|Abdominal rigidity, unspecified site|Abdominal rigidity, unspecified site +C0375565|T184|AB|R19.31|ICD10CM|Right upper quadrant abdominal rigidity|Right upper quadrant abdominal rigidity +C0375565|T184|PT|R19.31|ICD10CM|Right upper quadrant abdominal rigidity|Right upper quadrant abdominal rigidity +C2585165|T184|AB|R19.32|ICD10CM|Left upper quadrant abdominal rigidity|Left upper quadrant abdominal rigidity +C2585165|T184|PT|R19.32|ICD10CM|Left upper quadrant abdominal rigidity|Left upper quadrant abdominal rigidity +C2585545|T184|AB|R19.33|ICD10CM|Right lower quadrant abdominal rigidity|Right lower quadrant abdominal rigidity +C2585545|T184|PT|R19.33|ICD10CM|Right lower quadrant abdominal rigidity|Right lower quadrant abdominal rigidity +C2585546|T184|AB|R19.34|ICD10CM|Left lower quadrant abdominal rigidity|Left lower quadrant abdominal rigidity +C2585546|T184|PT|R19.34|ICD10CM|Left lower quadrant abdominal rigidity|Left lower quadrant abdominal rigidity +C2127287|T033|AB|R19.35|ICD10CM|Periumbilic abdominal rigidity|Periumbilic abdominal rigidity +C2127287|T033|PT|R19.35|ICD10CM|Periumbilic abdominal rigidity|Periumbilic abdominal rigidity +C0375570|T184|AB|R19.36|ICD10CM|Epigastric abdominal rigidity|Epigastric abdominal rigidity +C0375570|T184|PT|R19.36|ICD10CM|Epigastric abdominal rigidity|Epigastric abdominal rigidity +C0375571|T184|PT|R19.37|ICD10CM|Generalized abdominal rigidity|Generalized abdominal rigidity +C0375571|T184|AB|R19.37|ICD10CM|Generalized abdominal rigidity|Generalized abdominal rigidity +C0278008|T184|PT|R19.4|ICD10CM|Change in bowel habit|Change in bowel habit +C0278008|T184|AB|R19.4|ICD10CM|Change in bowel habit|Change in bowel habit +C0278008|T184|PT|R19.4|ICD10|Change in bowel habit|Change in bowel habit +C0237327|T033|ET|R19.5|ICD10CM|Abnormal stool color|Abnormal stool color +C0232721|T184|ET|R19.5|ICD10CM|Bulky stools|Bulky stools +C0241254|T033|ET|R19.5|ICD10CM|Mucus in stools|Mucus in stools +C0266813|T033|ET|R19.5|ICD10CM|Occult blood in feces|Occult blood in feces +C0266813|T033|ET|R19.5|ICD10CM|Occult blood in stools|Occult blood in stools +C0478120|T033|PT|R19.5|ICD10|Other faecal abnormalities|Other faecal abnormalities +C0478120|T033|PT|R19.5|ICD10CM|Other fecal abnormalities|Other fecal abnormalities +C0478120|T033|AB|R19.5|ICD10CM|Other fecal abnormalities|Other fecal abnormalities +C0478120|T033|PT|R19.5|ICD10AE|Other fecal abnormalities|Other fecal abnormalities +C0018520|T184|PT|R19.6|ICD10CM|Halitosis|Halitosis +C0018520|T184|AB|R19.6|ICD10CM|Halitosis|Halitosis +C0018520|T184|PT|R19.6|ICD10|Halitosis|Halitosis +C0011991|T184|ET|R19.7|ICD10CM|Diarrhea NOS|Diarrhea NOS +C0011991|T184|AB|R19.7|ICD10CM|Diarrhea, unspecified|Diarrhea, unspecified +C0011991|T184|PT|R19.7|ICD10CM|Diarrhea, unspecified|Diarrhea, unspecified +C0478121|T184|AB|R19.8|ICD10CM|Oth symptoms and signs involving the dgstv sys and abdomen|Oth symptoms and signs involving the dgstv sys and abdomen +C0478121|T184|PT|R19.8|ICD10CM|Other specified symptoms and signs involving the digestive system and abdomen|Other specified symptoms and signs involving the digestive system and abdomen +C0478121|T184|PT|R19.8|ICD10|Other specified symptoms and signs involving the digestive system and abdomen|Other specified symptoms and signs involving the digestive system and abdomen +C0012766|T184|AB|R20|ICD10CM|Disturbances of skin sensation|Disturbances of skin sensation +C0012766|T184|HT|R20|ICD10CM|Disturbances of skin sensation|Disturbances of skin sensation +C0012766|T184|HT|R20|ICD10|Disturbances of skin sensation|Disturbances of skin sensation +C0478122|T184|HT|R20-R23|ICD10CM|Symptoms and signs involving the skin and subcutaneous tissue (R20-R23)|Symptoms and signs involving the skin and subcutaneous tissue (R20-R23) +C0478122|T184|HT|R20-R23.9|ICD10|Symptoms and signs involving the skin and subcutaneous tissue|Symptoms and signs involving the skin and subcutaneous tissue +C0476226|T184|PT|R20.0|ICD10|Anaesthesia of skin|Anaesthesia of skin +C0476226|T184|PT|R20.0|ICD10CM|Anesthesia of skin|Anesthesia of skin +C0476226|T184|AB|R20.0|ICD10CM|Anesthesia of skin|Anesthesia of skin +C0476226|T184|PT|R20.0|ICD10AE|Anesthesia of skin|Anesthesia of skin +C0495677|T184|PT|R20.1|ICD10|Hypoaesthesia of skin|Hypoaesthesia of skin +C0495677|T184|PT|R20.1|ICD10AE|Hypoesthesia of skin|Hypoesthesia of skin +C0495677|T184|PT|R20.1|ICD10CM|Hypoesthesia of skin|Hypoesthesia of skin +C0495677|T184|AB|R20.1|ICD10CM|Hypoesthesia of skin|Hypoesthesia of skin +C0016579|T033|ET|R20.2|ICD10CM|Formication|Formication +C0235046|T184|PT|R20.2|ICD10|Paraesthesia of skin|Paraesthesia of skin +C0235046|T184|PT|R20.2|ICD10AE|Paresthesia of skin|Paresthesia of skin +C0235046|T184|PT|R20.2|ICD10CM|Paresthesia of skin|Paresthesia of skin +C0235046|T184|AB|R20.2|ICD10CM|Paresthesia of skin|Paresthesia of skin +C0423572|T184|ET|R20.2|ICD10CM|Pins and needles|Pins and needles +C0235050|T184|ET|R20.2|ICD10CM|Tingling skin|Tingling skin +C0020453|T184|PT|R20.3|ICD10|Hyperaesthesia|Hyperaesthesia +C0020453|T184|PT|R20.3|ICD10AE|Hyperesthesia|Hyperesthesia +C0020453|T184|PT|R20.3|ICD10CM|Hyperesthesia|Hyperesthesia +C0020453|T184|AB|R20.3|ICD10CM|Hyperesthesia|Hyperesthesia +C0478123|T184|PT|R20.8|ICD10|Other and unspecified disturbances of skin sensation|Other and unspecified disturbances of skin sensation +C2830313|T184|AB|R20.8|ICD10CM|Other disturbances of skin sensation|Other disturbances of skin sensation +C2830313|T184|PT|R20.8|ICD10CM|Other disturbances of skin sensation|Other disturbances of skin sensation +C2830314|T184|AB|R20.9|ICD10CM|Unspecified disturbances of skin sensation|Unspecified disturbances of skin sensation +C2830314|T184|PT|R20.9|ICD10CM|Unspecified disturbances of skin sensation|Unspecified disturbances of skin sensation +C0015230|T184|PT|R21|ICD10CM|Rash and other nonspecific skin eruption|Rash and other nonspecific skin eruption +C0015230|T184|AB|R21|ICD10CM|Rash and other nonspecific skin eruption|Rash and other nonspecific skin eruption +C0015230|T184|PT|R21|ICD10|Rash and other nonspecific skin eruption|Rash and other nonspecific skin eruption +C0015230|T184|ET|R21|ICD10CM|rash NOS|rash NOS +C0495678|T184|HT|R22|ICD10|Localized swelling, mass and lump of skin and subcutaneous tissue|Localized swelling, mass and lump of skin and subcutaneous tissue +C0495678|T184|HT|R22|ICD10CM|Localized swelling, mass and lump of skin and subcutaneous tissue|Localized swelling, mass and lump of skin and subcutaneous tissue +C0495678|T184|AB|R22|ICD10CM|Localized swelling, mass and lump of skin, subcu|Localized swelling, mass and lump of skin, subcu +C4290275|T184|ET|R22|ICD10CM|subcutaneous nodules (localized)(superficial)|subcutaneous nodules (localized)(superficial) +C0478660|T184|PT|R22.0|ICD10CM|Localized swelling, mass and lump, head|Localized swelling, mass and lump, head +C0478660|T184|AB|R22.0|ICD10CM|Localized swelling, mass and lump, head|Localized swelling, mass and lump, head +C0478660|T184|PT|R22.0|ICD10|Localized swelling, mass and lump, head|Localized swelling, mass and lump, head +C0478661|T184|PT|R22.1|ICD10|Localized swelling, mass and lump, neck|Localized swelling, mass and lump, neck +C0478661|T184|PT|R22.1|ICD10CM|Localized swelling, mass and lump, neck|Localized swelling, mass and lump, neck +C0478661|T184|AB|R22.1|ICD10CM|Localized swelling, mass and lump, neck|Localized swelling, mass and lump, neck +C0495679|T033|PT|R22.2|ICD10CM|Localized swelling, mass and lump, trunk|Localized swelling, mass and lump, trunk +C0495679|T033|AB|R22.2|ICD10CM|Localized swelling, mass and lump, trunk|Localized swelling, mass and lump, trunk +C0495679|T033|PT|R22.2|ICD10|Localized swelling, mass and lump, trunk|Localized swelling, mass and lump, trunk +C0476483|T033|PT|R22.3|ICD10|Localized swelling, mass and lump, upper limb|Localized swelling, mass and lump, upper limb +C0476483|T033|HT|R22.3|ICD10CM|Localized swelling, mass and lump, upper limb|Localized swelling, mass and lump, upper limb +C0476483|T033|AB|R22.3|ICD10CM|Localized swelling, mass and lump, upper limb|Localized swelling, mass and lump, upper limb +C2830316|T033|AB|R22.30|ICD10CM|Localized swelling, mass and lump, unspecified upper limb|Localized swelling, mass and lump, unspecified upper limb +C2830316|T033|PT|R22.30|ICD10CM|Localized swelling, mass and lump, unspecified upper limb|Localized swelling, mass and lump, unspecified upper limb +C2830317|T033|AB|R22.31|ICD10CM|Localized swelling, mass and lump, right upper limb|Localized swelling, mass and lump, right upper limb +C2830317|T033|PT|R22.31|ICD10CM|Localized swelling, mass and lump, right upper limb|Localized swelling, mass and lump, right upper limb +C2830318|T033|AB|R22.32|ICD10CM|Localized swelling, mass and lump, left upper limb|Localized swelling, mass and lump, left upper limb +C2830318|T033|PT|R22.32|ICD10CM|Localized swelling, mass and lump, left upper limb|Localized swelling, mass and lump, left upper limb +C2830319|T033|AB|R22.33|ICD10CM|Localized swelling, mass and lump, upper limb, bilateral|Localized swelling, mass and lump, upper limb, bilateral +C2830319|T033|PT|R22.33|ICD10CM|Localized swelling, mass and lump, upper limb, bilateral|Localized swelling, mass and lump, upper limb, bilateral +C0476484|T033|HT|R22.4|ICD10CM|Localized swelling, mass and lump, lower limb|Localized swelling, mass and lump, lower limb +C0476484|T033|AB|R22.4|ICD10CM|Localized swelling, mass and lump, lower limb|Localized swelling, mass and lump, lower limb +C0476484|T033|PT|R22.4|ICD10|Localized swelling, mass and lump, lower limb|Localized swelling, mass and lump, lower limb +C2830320|T033|AB|R22.40|ICD10CM|Localized swelling, mass and lump, unspecified lower limb|Localized swelling, mass and lump, unspecified lower limb +C2830320|T033|PT|R22.40|ICD10CM|Localized swelling, mass and lump, unspecified lower limb|Localized swelling, mass and lump, unspecified lower limb +C2830321|T033|AB|R22.41|ICD10CM|Localized swelling, mass and lump, right lower limb|Localized swelling, mass and lump, right lower limb +C2830321|T033|PT|R22.41|ICD10CM|Localized swelling, mass and lump, right lower limb|Localized swelling, mass and lump, right lower limb +C2830322|T033|AB|R22.42|ICD10CM|Localized swelling, mass and lump, left lower limb|Localized swelling, mass and lump, left lower limb +C2830322|T033|PT|R22.42|ICD10CM|Localized swelling, mass and lump, left lower limb|Localized swelling, mass and lump, left lower limb +C2830323|T033|AB|R22.43|ICD10CM|Localized swelling, mass and lump, lower limb, bilateral|Localized swelling, mass and lump, lower limb, bilateral +C2830323|T033|PT|R22.43|ICD10CM|Localized swelling, mass and lump, lower limb, bilateral|Localized swelling, mass and lump, lower limb, bilateral +C0476485|T033|PT|R22.7|ICD10|Localized swelling, mass and lump, multiple sites|Localized swelling, mass and lump, multiple sites +C0495680|T033|PT|R22.9|ICD10|Localized swelling, mass and lump, unspecified|Localized swelling, mass and lump, unspecified +C0495680|T033|PT|R22.9|ICD10CM|Localized swelling, mass and lump, unspecified|Localized swelling, mass and lump, unspecified +C0495680|T033|AB|R22.9|ICD10CM|Localized swelling, mass and lump, unspecified|Localized swelling, mass and lump, unspecified +C0478124|T184|HT|R23|ICD10|Other skin changes|Other skin changes +C0478124|T184|HT|R23|ICD10CM|Other skin changes|Other skin changes +C0478124|T184|AB|R23|ICD10CM|Other skin changes|Other skin changes +C0010520|T184|PT|R23.0|ICD10CM|Cyanosis|Cyanosis +C0010520|T184|AB|R23.0|ICD10CM|Cyanosis|Cyanosis +C0010520|T184|PT|R23.0|ICD10|Cyanosis|Cyanosis +C0392162|T033|ET|R23.1|ICD10CM|Clammy skin|Clammy skin +C0030232|T033|PT|R23.1|ICD10|Pallor|Pallor +C0030232|T033|PT|R23.1|ICD10CM|Pallor|Pallor +C0030232|T033|AB|R23.1|ICD10CM|Pallor|Pallor +C0476233|T033|ET|R23.2|ICD10CM|Excessive blushing|Excessive blushing +C0016382|T184|PT|R23.2|ICD10CM|Flushing|Flushing +C0016382|T184|AB|R23.2|ICD10CM|Flushing|Flushing +C0016382|T184|PT|R23.2|ICD10|Flushing|Flushing +C0031256|T047|ET|R23.3|ICD10CM|Petechiae|Petechiae +C0159039|T046|PT|R23.3|ICD10CM|Spontaneous ecchymoses|Spontaneous ecchymoses +C0159039|T046|AB|R23.3|ICD10CM|Spontaneous ecchymoses|Spontaneous ecchymoses +C0159039|T046|PT|R23.3|ICD10|Spontaneous ecchymoses|Spontaneous ecchymoses +C0159040|T184|PT|R23.4|ICD10|Changes in skin texture|Changes in skin texture +C0159040|T184|PT|R23.4|ICD10CM|Changes in skin texture|Changes in skin texture +C0159040|T184|AB|R23.4|ICD10CM|Changes in skin texture|Changes in skin texture +C0237849|T033|ET|R23.4|ICD10CM|Desquamation of skin|Desquamation of skin +C0241075|T047|ET|R23.4|ICD10CM|Induration of skin|Induration of skin +C0237849|T033|ET|R23.4|ICD10CM|Scaling of skin|Scaling of skin +C0478124|T184|PT|R23.8|ICD10|Other and unspecified skin changes|Other and unspecified skin changes +C0478124|T184|AB|R23.8|ICD10CM|Other skin changes|Other skin changes +C0478124|T184|PT|R23.8|ICD10CM|Other skin changes|Other skin changes +C1399787|T184|AB|R23.9|ICD10CM|Unspecified skin changes|Unspecified skin changes +C1399787|T184|PT|R23.9|ICD10CM|Unspecified skin changes|Unspecified skin changes +C0392702|T047|HT|R25|ICD10CM|Abnormal involuntary movements|Abnormal involuntary movements +C0392702|T047|AB|R25|ICD10CM|Abnormal involuntary movements|Abnormal involuntary movements +C0392702|T047|HT|R25|ICD10|Abnormal involuntary movements|Abnormal involuntary movements +C0478125|T184|HT|R25-R29|ICD10CM|Symptoms and signs involving the nervous and musculoskeletal systems (R25-R29)|Symptoms and signs involving the nervous and musculoskeletal systems (R25-R29) +C0478125|T184|HT|R25-R29.9|ICD10|Symptoms and signs involving the nervous and musculoskeletal systems|Symptoms and signs involving the nervous and musculoskeletal systems +C0476217|T033|PT|R25.0|ICD10|Abnormal head movements|Abnormal head movements +C0476217|T033|PT|R25.0|ICD10CM|Abnormal head movements|Abnormal head movements +C0476217|T033|AB|R25.0|ICD10CM|Abnormal head movements|Abnormal head movements +C0040822|T184|PT|R25.1|ICD10CM|Tremor, unspecified|Tremor, unspecified +C0040822|T184|AB|R25.1|ICD10CM|Tremor, unspecified|Tremor, unspecified +C0040822|T184|PT|R25.1|ICD10|Tremor, unspecified|Tremor, unspecified +C0495682|T184|PT|R25.2|ICD10CM|Cramp and spasm|Cramp and spasm +C0495682|T184|AB|R25.2|ICD10CM|Cramp and spasm|Cramp and spasm +C0495682|T184|PT|R25.2|ICD10|Cramp and spasm|Cramp and spasm +C0015644|T184|PT|R25.3|ICD10|Fasciculation|Fasciculation +C0015644|T184|AB|R25.3|ICD10CM|Fasciculation|Fasciculation +C0015644|T184|PT|R25.3|ICD10CM|Fasciculation|Fasciculation +C0231530|T033|ET|R25.3|ICD10CM|Twitching NOS|Twitching NOS +C2830324|T047|AB|R25.8|ICD10CM|Other abnormal involuntary movements|Other abnormal involuntary movements +C2830324|T047|PT|R25.8|ICD10CM|Other abnormal involuntary movements|Other abnormal involuntary movements +C0478126|T184|PT|R25.8|ICD10|Other and unspecified abnormal involuntary movements|Other and unspecified abnormal involuntary movements +C0392702|T047|AB|R25.9|ICD10CM|Unspecified abnormal involuntary movements|Unspecified abnormal involuntary movements +C0392702|T047|PT|R25.9|ICD10CM|Unspecified abnormal involuntary movements|Unspecified abnormal involuntary movements +C0495683|T184|HT|R26|ICD10|Abnormalities of gait and mobility|Abnormalities of gait and mobility +C0495683|T184|AB|R26|ICD10CM|Abnormalities of gait and mobility|Abnormalities of gait and mobility +C0495683|T184|HT|R26|ICD10CM|Abnormalities of gait and mobility|Abnormalities of gait and mobility +C0751837|T184|PT|R26.0|ICD10CM|Ataxic gait|Ataxic gait +C0751837|T184|AB|R26.0|ICD10CM|Ataxic gait|Ataxic gait +C0751837|T184|PT|R26.0|ICD10|Ataxic gait|Ataxic gait +C0701824|T184|ET|R26.0|ICD10CM|Staggering gait|Staggering gait +C0234996|T033|PT|R26.1|ICD10CM|Paralytic gait|Paralytic gait +C0234996|T033|AB|R26.1|ICD10CM|Paralytic gait|Paralytic gait +C0234996|T033|PT|R26.1|ICD10|Paralytic gait|Paralytic gait +C0231687|T033|ET|R26.1|ICD10CM|Spastic gait|Spastic gait +C0869084|T184|PT|R26.2|ICD10|Difficulty in walking, not elsewhere classified|Difficulty in walking, not elsewhere classified +C0869084|T184|PT|R26.2|ICD10CM|Difficulty in walking, not elsewhere classified|Difficulty in walking, not elsewhere classified +C0869084|T184|AB|R26.2|ICD10CM|Difficulty in walking, not elsewhere classified|Difficulty in walking, not elsewhere classified +C2830325|T184|HT|R26.8|ICD10CM|Other abnormalities of gait and mobility|Other abnormalities of gait and mobility +C2830325|T184|AB|R26.8|ICD10CM|Other abnormalities of gait and mobility|Other abnormalities of gait and mobility +C0478128|T184|PT|R26.8|ICD10|Other and unspecified abnormalities of gait and mobility|Other and unspecified abnormalities of gait and mobility +C2830326|T184|AB|R26.81|ICD10CM|Unsteadiness on feet|Unsteadiness on feet +C2830326|T184|PT|R26.81|ICD10CM|Unsteadiness on feet|Unsteadiness on feet +C2830325|T184|AB|R26.89|ICD10CM|Other abnormalities of gait and mobility|Other abnormalities of gait and mobility +C2830325|T184|PT|R26.89|ICD10CM|Other abnormalities of gait and mobility|Other abnormalities of gait and mobility +C0495683|T184|AB|R26.9|ICD10CM|Unspecified abnormalities of gait and mobility|Unspecified abnormalities of gait and mobility +C0495683|T184|PT|R26.9|ICD10CM|Unspecified abnormalities of gait and mobility|Unspecified abnormalities of gait and mobility +C0495684|T184|HT|R27|ICD10CM|Other lack of coordination|Other lack of coordination +C0495684|T184|AB|R27|ICD10CM|Other lack of coordination|Other lack of coordination +C0495684|T184|HT|R27|ICD10|Other lack of coordination|Other lack of coordination +C0004134|T184|PT|R27.0|ICD10CM|Ataxia, unspecified|Ataxia, unspecified +C0004134|T184|AB|R27.0|ICD10CM|Ataxia, unspecified|Ataxia, unspecified +C0004134|T184|PT|R27.0|ICD10|Ataxia, unspecified|Ataxia, unspecified +C0478129|T184|PT|R27.8|ICD10|Other and unspecified lack of coordination|Other and unspecified lack of coordination +C0495684|T184|AB|R27.8|ICD10CM|Other lack of coordination|Other lack of coordination +C0495684|T184|PT|R27.8|ICD10CM|Other lack of coordination|Other lack of coordination +C0520966|T033|AB|R27.9|ICD10CM|Unspecified lack of coordination|Unspecified lack of coordination +C0520966|T033|PT|R27.9|ICD10CM|Unspecified lack of coordination|Unspecified lack of coordination +C0495685|T184|AB|R29|ICD10CM|Oth symptoms and signs involving the nervous and ms systems|Oth symptoms and signs involving the nervous and ms systems +C0495685|T184|HT|R29|ICD10CM|Other symptoms and signs involving the nervous and musculoskeletal systems|Other symptoms and signs involving the nervous and musculoskeletal systems +C0495685|T184|HT|R29|ICD10|Other symptoms and signs involving the nervous and musculoskeletal systems|Other symptoms and signs involving the nervous and musculoskeletal systems +C0231785|T184|ET|R29.0|ICD10CM|Carpopedal spasm|Carpopedal spasm +C0039621|T033|PT|R29.0|ICD10|Tetany|Tetany +C0039621|T033|PT|R29.0|ICD10CM|Tetany|Tetany +C0039621|T033|AB|R29.0|ICD10CM|Tetany|Tetany +C0025287|T184|PT|R29.1|ICD10|Meningismus|Meningismus +C0025287|T184|PT|R29.1|ICD10CM|Meningismus|Meningismus +C0025287|T184|AB|R29.1|ICD10CM|Meningismus|Meningismus +C0034933|T033|PT|R29.2|ICD10|Abnormal reflex|Abnormal reflex +C0034933|T033|PT|R29.2|ICD10CM|Abnormal reflex|Abnormal reflex +C0034933|T033|AB|R29.2|ICD10CM|Abnormal reflex|Abnormal reflex +C0231471|T033|PT|R29.3|ICD10CM|Abnormal posture|Abnormal posture +C0231471|T033|AB|R29.3|ICD10CM|Abnormal posture|Abnormal posture +C0231471|T033|PT|R29.3|ICD10|Abnormal posture|Abnormal posture +C0427285|T184|PT|R29.4|ICD10CM|Clicking hip|Clicking hip +C0427285|T184|AB|R29.4|ICD10CM|Clicking hip|Clicking hip +C0427285|T184|PT|R29.4|ICD10|Clicking hip|Clicking hip +C1868914|T033|PT|R29.5|ICD10CM|Transient paralysis|Transient paralysis +C1868914|T033|AB|R29.5|ICD10CM|Transient paralysis|Transient paralysis +C0085639|T033|ET|R29.6|ICD10CM|Falling|Falling +C2830328|T184|AB|R29.6|ICD10CM|Repeated falls|Repeated falls +C2830328|T184|PT|R29.6|ICD10CM|Repeated falls|Repeated falls +C2830327|T184|ET|R29.6|ICD10CM|Tendency to fall|Tendency to fall +C4269147|T033|AB|R29.7|ICD10CM|National Institutes of Health Stroke Scale (NIHSS) score|National Institutes of Health Stroke Scale (NIHSS) score +C4269147|T033|HT|R29.7|ICD10CM|National Institutes of Health Stroke Scale (NIHSS) score|National Institutes of Health Stroke Scale (NIHSS) score +C4269148|T033|AB|R29.70|ICD10CM|NIHSS score 0-9|NIHSS score 0-9 +C4269148|T033|HT|R29.70|ICD10CM|NIHSS score 0-9|NIHSS score 0-9 +C4269149|T033|AB|R29.700|ICD10CM|NIHSS score 0|NIHSS score 0 +C4269149|T033|PT|R29.700|ICD10CM|NIHSS score 0|NIHSS score 0 +C4269150|T033|AB|R29.701|ICD10CM|NIHSS score 1|NIHSS score 1 +C4269150|T033|PT|R29.701|ICD10CM|NIHSS score 1|NIHSS score 1 +C4269151|T033|AB|R29.702|ICD10CM|NIHSS score 2|NIHSS score 2 +C4269151|T033|PT|R29.702|ICD10CM|NIHSS score 2|NIHSS score 2 +C4270816|T033|AB|R29.703|ICD10CM|NIHSS score 3|NIHSS score 3 +C4270816|T033|PT|R29.703|ICD10CM|NIHSS score 3|NIHSS score 3 +C4269152|T033|AB|R29.704|ICD10CM|NIHSS score 4|NIHSS score 4 +C4269152|T033|PT|R29.704|ICD10CM|NIHSS score 4|NIHSS score 4 +C4269153|T033|AB|R29.705|ICD10CM|NIHSS score 5|NIHSS score 5 +C4269153|T033|PT|R29.705|ICD10CM|NIHSS score 5|NIHSS score 5 +C4269154|T033|AB|R29.706|ICD10CM|NIHSS score 6|NIHSS score 6 +C4269154|T033|PT|R29.706|ICD10CM|NIHSS score 6|NIHSS score 6 +C4269155|T033|AB|R29.707|ICD10CM|NIHSS score 7|NIHSS score 7 +C4269155|T033|PT|R29.707|ICD10CM|NIHSS score 7|NIHSS score 7 +C4269156|T033|AB|R29.708|ICD10CM|NIHSS score 8|NIHSS score 8 +C4269156|T033|PT|R29.708|ICD10CM|NIHSS score 8|NIHSS score 8 +C4269157|T033|AB|R29.709|ICD10CM|NIHSS score 9|NIHSS score 9 +C4269157|T033|PT|R29.709|ICD10CM|NIHSS score 9|NIHSS score 9 +C4269158|T033|AB|R29.71|ICD10CM|NIHSS score 10-19|NIHSS score 10-19 +C4269158|T033|HT|R29.71|ICD10CM|NIHSS score 10-19|NIHSS score 10-19 +C4269159|T033|AB|R29.710|ICD10CM|NIHSS score 10|NIHSS score 10 +C4269159|T033|PT|R29.710|ICD10CM|NIHSS score 10|NIHSS score 10 +C4269160|T033|AB|R29.711|ICD10CM|NIHSS score 11|NIHSS score 11 +C4269160|T033|PT|R29.711|ICD10CM|NIHSS score 11|NIHSS score 11 +C4269161|T033|AB|R29.712|ICD10CM|NIHSS score 12|NIHSS score 12 +C4269161|T033|PT|R29.712|ICD10CM|NIHSS score 12|NIHSS score 12 +C4269162|T033|AB|R29.713|ICD10CM|NIHSS score 13|NIHSS score 13 +C4269162|T033|PT|R29.713|ICD10CM|NIHSS score 13|NIHSS score 13 +C4269163|T033|AB|R29.714|ICD10CM|NIHSS score 14|NIHSS score 14 +C4269163|T033|PT|R29.714|ICD10CM|NIHSS score 14|NIHSS score 14 +C4269164|T033|AB|R29.715|ICD10CM|NIHSS score 15|NIHSS score 15 +C4269164|T033|PT|R29.715|ICD10CM|NIHSS score 15|NIHSS score 15 +C4269165|T033|AB|R29.716|ICD10CM|NIHSS score 16|NIHSS score 16 +C4269165|T033|PT|R29.716|ICD10CM|NIHSS score 16|NIHSS score 16 +C4269166|T033|AB|R29.717|ICD10CM|NIHSS score 17|NIHSS score 17 +C4269166|T033|PT|R29.717|ICD10CM|NIHSS score 17|NIHSS score 17 +C4269167|T033|AB|R29.718|ICD10CM|NIHSS score 18|NIHSS score 18 +C4269167|T033|PT|R29.718|ICD10CM|NIHSS score 18|NIHSS score 18 +C4269168|T033|AB|R29.719|ICD10CM|NIHSS score 19|NIHSS score 19 +C4269168|T033|PT|R29.719|ICD10CM|NIHSS score 19|NIHSS score 19 +C4269169|T033|AB|R29.72|ICD10CM|NIHSS score 20-29|NIHSS score 20-29 +C4269169|T033|HT|R29.72|ICD10CM|NIHSS score 20-29|NIHSS score 20-29 +C4270817|T033|AB|R29.720|ICD10CM|NIHSS score 20|NIHSS score 20 +C4270817|T033|PT|R29.720|ICD10CM|NIHSS score 20|NIHSS score 20 +C4269170|T033|AB|R29.721|ICD10CM|NIHSS score 21|NIHSS score 21 +C4269170|T033|PT|R29.721|ICD10CM|NIHSS score 21|NIHSS score 21 +C4269171|T033|AB|R29.722|ICD10CM|NIHSS score 22|NIHSS score 22 +C4269171|T033|PT|R29.722|ICD10CM|NIHSS score 22|NIHSS score 22 +C4269172|T033|AB|R29.723|ICD10CM|NIHSS score 23|NIHSS score 23 +C4269172|T033|PT|R29.723|ICD10CM|NIHSS score 23|NIHSS score 23 +C4269173|T033|AB|R29.724|ICD10CM|NIHSS score 24|NIHSS score 24 +C4269173|T033|PT|R29.724|ICD10CM|NIHSS score 24|NIHSS score 24 +C4269174|T033|AB|R29.725|ICD10CM|NIHSS score 25|NIHSS score 25 +C4269174|T033|PT|R29.725|ICD10CM|NIHSS score 25|NIHSS score 25 +C4269175|T033|AB|R29.726|ICD10CM|NIHSS score 26|NIHSS score 26 +C4269175|T033|PT|R29.726|ICD10CM|NIHSS score 26|NIHSS score 26 +C4269176|T033|AB|R29.727|ICD10CM|NIHSS score 27|NIHSS score 27 +C4269176|T033|PT|R29.727|ICD10CM|NIHSS score 27|NIHSS score 27 +C4269177|T033|AB|R29.728|ICD10CM|NIHSS score 28|NIHSS score 28 +C4269177|T033|PT|R29.728|ICD10CM|NIHSS score 28|NIHSS score 28 +C4269178|T033|AB|R29.729|ICD10CM|NIHSS score 29|NIHSS score 29 +C4269178|T033|PT|R29.729|ICD10CM|NIHSS score 29|NIHSS score 29 +C4269179|T033|AB|R29.73|ICD10CM|NIHSS score 30-39|NIHSS score 30-39 +C4269179|T033|HT|R29.73|ICD10CM|NIHSS score 30-39|NIHSS score 30-39 +C4269180|T033|AB|R29.730|ICD10CM|NIHSS score 30|NIHSS score 30 +C4269180|T033|PT|R29.730|ICD10CM|NIHSS score 30|NIHSS score 30 +C4269181|T033|AB|R29.731|ICD10CM|NIHSS score 31|NIHSS score 31 +C4269181|T033|PT|R29.731|ICD10CM|NIHSS score 31|NIHSS score 31 +C4269182|T033|AB|R29.732|ICD10CM|NIHSS score 32|NIHSS score 32 +C4269182|T033|PT|R29.732|ICD10CM|NIHSS score 32|NIHSS score 32 +C4269183|T033|AB|R29.733|ICD10CM|NIHSS score 33|NIHSS score 33 +C4269183|T033|PT|R29.733|ICD10CM|NIHSS score 33|NIHSS score 33 +C4269184|T033|AB|R29.734|ICD10CM|NIHSS score 34|NIHSS score 34 +C4269184|T033|PT|R29.734|ICD10CM|NIHSS score 34|NIHSS score 34 +C4269185|T033|AB|R29.735|ICD10CM|NIHSS score 35|NIHSS score 35 +C4269185|T033|PT|R29.735|ICD10CM|NIHSS score 35|NIHSS score 35 +C4270818|T033|AB|R29.736|ICD10CM|NIHSS score 36|NIHSS score 36 +C4270818|T033|PT|R29.736|ICD10CM|NIHSS score 36|NIHSS score 36 +C4269186|T033|AB|R29.737|ICD10CM|NIHSS score 37|NIHSS score 37 +C4269186|T033|PT|R29.737|ICD10CM|NIHSS score 37|NIHSS score 37 +C4269187|T033|AB|R29.738|ICD10CM|NIHSS score 38|NIHSS score 38 +C4269187|T033|PT|R29.738|ICD10CM|NIHSS score 38|NIHSS score 38 +C4269188|T033|AB|R29.739|ICD10CM|NIHSS score 39|NIHSS score 39 +C4269188|T033|PT|R29.739|ICD10CM|NIHSS score 39|NIHSS score 39 +C4269189|T033|AB|R29.74|ICD10CM|NIHSS score 40-42|NIHSS score 40-42 +C4269189|T033|HT|R29.74|ICD10CM|NIHSS score 40-42|NIHSS score 40-42 +C4269190|T033|AB|R29.740|ICD10CM|NIHSS score 40|NIHSS score 40 +C4269190|T033|PT|R29.740|ICD10CM|NIHSS score 40|NIHSS score 40 +C4269191|T033|AB|R29.741|ICD10CM|NIHSS score 41|NIHSS score 41 +C4269191|T033|PT|R29.741|ICD10CM|NIHSS score 41|NIHSS score 41 +C4269192|T033|AB|R29.742|ICD10CM|NIHSS score 42|NIHSS score 42 +C4269192|T033|PT|R29.742|ICD10CM|NIHSS score 42|NIHSS score 42 +C0495685|T184|AB|R29.8|ICD10CM|Oth symptoms and signs involving the nervous and ms systems|Oth symptoms and signs involving the nervous and ms systems +C0478130|T184|PT|R29.8|ICD10|Other and unspecified symptoms and signs involving the nervous and musculoskeletal systems|Other and unspecified symptoms and signs involving the nervous and musculoskeletal systems +C0495685|T184|HT|R29.8|ICD10CM|Other symptoms and signs involving the nervous and musculoskeletal systems|Other symptoms and signs involving the nervous and musculoskeletal systems +C2830329|T184|HT|R29.81|ICD10CM|Other symptoms and signs involving the nervous system|Other symptoms and signs involving the nervous system +C2830329|T184|AB|R29.81|ICD10CM|Other symptoms and signs involving the nervous system|Other symptoms and signs involving the nervous system +C0427055|T047|ET|R29.810|ICD10CM|Facial droop|Facial droop +C0427055|T047|PT|R29.810|ICD10CM|Facial weakness|Facial weakness +C0427055|T047|AB|R29.810|ICD10CM|Facial weakness|Facial weakness +C2830329|T184|AB|R29.818|ICD10CM|Other symptoms and signs involving the nervous system|Other symptoms and signs involving the nervous system +C2830329|T184|PT|R29.818|ICD10CM|Other symptoms and signs involving the nervous system|Other symptoms and signs involving the nervous system +C2830330|T184|AB|R29.89|ICD10CM|Oth symptoms and signs involving the musculoskeletal system|Oth symptoms and signs involving the musculoskeletal system +C2830330|T184|HT|R29.89|ICD10CM|Other symptoms and signs involving the musculoskeletal system|Other symptoms and signs involving the musculoskeletal system +C0424641|T033|AB|R29.890|ICD10CM|Loss of height|Loss of height +C0424641|T033|PT|R29.890|ICD10CM|Loss of height|Loss of height +C0028856|T047|PT|R29.891|ICD10CM|Ocular torticollis|Ocular torticollis +C0028856|T047|AB|R29.891|ICD10CM|Ocular torticollis|Ocular torticollis +C2830330|T184|AB|R29.898|ICD10CM|Oth symptoms and signs involving the musculoskeletal system|Oth symptoms and signs involving the musculoskeletal system +C2830330|T184|PT|R29.898|ICD10CM|Other symptoms and signs involving the musculoskeletal system|Other symptoms and signs involving the musculoskeletal system +C2830331|T184|AB|R29.9|ICD10CM|Unsp symptoms and signs involving the nervous and ms systems|Unsp symptoms and signs involving the nervous and ms systems +C2830331|T184|HT|R29.9|ICD10CM|Unspecified symptoms and signs involving the nervous and musculoskeletal systems|Unspecified symptoms and signs involving the nervous and musculoskeletal systems +C2830332|T184|AB|R29.90|ICD10CM|Unspecified symptoms and signs involving the nervous system|Unspecified symptoms and signs involving the nervous system +C2830332|T184|PT|R29.90|ICD10CM|Unspecified symptoms and signs involving the nervous system|Unspecified symptoms and signs involving the nervous system +C2830333|T184|AB|R29.91|ICD10CM|Unsp symptoms and signs involving the musculoskeletal system|Unsp symptoms and signs involving the musculoskeletal system +C2830333|T184|PT|R29.91|ICD10CM|Unspecified symptoms and signs involving the musculoskeletal system|Unspecified symptoms and signs involving the musculoskeletal system +C0013428|T184|AB|R30|ICD10CM|Pain associated with micturition|Pain associated with micturition +C0013428|T184|HT|R30|ICD10CM|Pain associated with micturition|Pain associated with micturition +C0013428|T184|HT|R30|ICD10|Pain associated with micturition|Pain associated with micturition +C2830334|T184|HT|R30-R39|ICD10CM|Symptoms and signs involving the genitourinary system (R30-R39)|Symptoms and signs involving the genitourinary system (R30-R39) +C0478131|T184|HT|R30-R39.9|ICD10|Symptoms and signs involving the urinary system|Symptoms and signs involving the urinary system +C0013428|T184|PT|R30.0|ICD10|Dysuria|Dysuria +C0013428|T184|PT|R30.0|ICD10CM|Dysuria|Dysuria +C0013428|T184|AB|R30.0|ICD10CM|Dysuria|Dysuria +C0241705|T184|ET|R30.0|ICD10CM|Strangury|Strangury +C4759672|T184|PT|R30.1|ICD10|Vesical tenesmus|Vesical tenesmus +C4759672|T184|PT|R30.1|ICD10CM|Vesical tenesmus|Vesical tenesmus +C4759672|T184|AB|R30.1|ICD10CM|Vesical tenesmus|Vesical tenesmus +C0013428|T184|PT|R30.9|ICD10CM|Painful micturition, unspecified|Painful micturition, unspecified +C0013428|T184|AB|R30.9|ICD10CM|Painful micturition, unspecified|Painful micturition, unspecified +C0013428|T184|PT|R30.9|ICD10|Painful micturition, unspecified|Painful micturition, unspecified +C0013428|T184|ET|R30.9|ICD10CM|Painful urination NOS|Painful urination NOS +C0018965|T047|HT|R31|ICD10CM|Hematuria|Hematuria +C0018965|T047|AB|R31|ICD10CM|Hematuria|Hematuria +C0018965|T047|PT|R31|ICD10|Unspecified haematuria|Unspecified haematuria +C0018965|T047|PT|R31|ICD10AE|Unspecified hematuria|Unspecified hematuria +C0473237|T033|PT|R31.0|ICD10CM|Gross hematuria|Gross hematuria +C0473237|T033|AB|R31.0|ICD10CM|Gross hematuria|Gross hematuria +C2830335|T033|PT|R31.1|ICD10CM|Benign essential microscopic hematuria|Benign essential microscopic hematuria +C2830335|T033|AB|R31.1|ICD10CM|Benign essential microscopic hematuria|Benign essential microscopic hematuria +C2830336|T033|AB|R31.2|ICD10CM|Other microscopic hematuria|Other microscopic hematuria +C2830336|T033|HT|R31.2|ICD10CM|Other microscopic hematuria|Other microscopic hematuria +C4085344|T047|ET|R31.21|ICD10CM|AMH|AMH +C4085344|T047|PT|R31.21|ICD10CM|Asymptomatic microscopic hematuria|Asymptomatic microscopic hematuria +C4085344|T047|AB|R31.21|ICD10CM|Asymptomatic microscopic hematuria|Asymptomatic microscopic hematuria +C2830336|T033|AB|R31.29|ICD10CM|Other microscopic hematuria|Other microscopic hematuria +C2830336|T033|PT|R31.29|ICD10CM|Other microscopic hematuria|Other microscopic hematuria +C0018965|T047|AB|R31.9|ICD10CM|Hematuria, unspecified|Hematuria, unspecified +C0018965|T047|PT|R31.9|ICD10CM|Hematuria, unspecified|Hematuria, unspecified +C0014394|T047|ET|R32|ICD10CM|Enuresis NOS|Enuresis NOS +C0042024|T046|PT|R32|ICD10|Unspecified urinary incontinence|Unspecified urinary incontinence +C0042024|T046|PT|R32|ICD10CM|Unspecified urinary incontinence|Unspecified urinary incontinence +C0042024|T046|AB|R32|ICD10CM|Unspecified urinary incontinence|Unspecified urinary incontinence +C0080274|T033|HT|R33|ICD10CM|Retention of urine|Retention of urine +C0080274|T033|AB|R33|ICD10CM|Retention of urine|Retention of urine +C0080274|T033|PT|R33|ICD10|Retention of urine|Retention of urine +C2830337|T033|AB|R33.0|ICD10CM|Drug induced retention of urine|Drug induced retention of urine +C2830337|T033|PT|R33.0|ICD10CM|Drug induced retention of urine|Drug induced retention of urine +C2830338|T033|AB|R33.8|ICD10CM|Other retention of urine|Other retention of urine +C2830338|T033|PT|R33.8|ICD10CM|Other retention of urine|Other retention of urine +C0080274|T033|AB|R33.9|ICD10CM|Retention of urine, unspecified|Retention of urine, unspecified +C0080274|T033|PT|R33.9|ICD10CM|Retention of urine, unspecified|Retention of urine, unspecified +C0028962|T184|PT|R34|ICD10|Anuria and oliguria|Anuria and oliguria +C0028962|T184|PT|R34|ICD10CM|Anuria and oliguria|Anuria and oliguria +C0028962|T184|AB|R34|ICD10CM|Anuria and oliguria|Anuria and oliguria +C0032617|T184|PT|R35|ICD10|Polyuria|Polyuria +C0032617|T184|HT|R35|ICD10CM|Polyuria|Polyuria +C0032617|T184|AB|R35|ICD10CM|Polyuria|Polyuria +C0042023|T033|PT|R35.0|ICD10CM|Frequency of micturition|Frequency of micturition +C0042023|T033|AB|R35.0|ICD10CM|Frequency of micturition|Frequency of micturition +C0028734|T047|PT|R35.1|ICD10CM|Nocturia|Nocturia +C0028734|T047|AB|R35.1|ICD10CM|Nocturia|Nocturia +C2830339|T184|AB|R35.8|ICD10CM|Other polyuria|Other polyuria +C2830339|T184|PT|R35.8|ICD10CM|Other polyuria|Other polyuria +C0032617|T184|ET|R35.8|ICD10CM|Polyuria NOS|Polyuria NOS +C0152447|T184|HT|R36|ICD10CM|Urethral discharge|Urethral discharge +C0152447|T184|AB|R36|ICD10CM|Urethral discharge|Urethral discharge +C0152447|T184|PT|R36|ICD10|Urethral discharge|Urethral discharge +C2830340|T184|PT|R36.0|ICD10CM|Urethral discharge without blood|Urethral discharge without blood +C2830340|T184|AB|R36.0|ICD10CM|Urethral discharge without blood|Urethral discharge without blood +C0149707|T033|PT|R36.1|ICD10CM|Hematospermia|Hematospermia +C0149707|T033|AB|R36.1|ICD10CM|Hematospermia|Hematospermia +C0232861|T184|ET|R36.9|ICD10CM|Penile discharge NOS|Penile discharge NOS +C0152447|T184|AB|R36.9|ICD10CM|Urethral discharge, unspecified|Urethral discharge, unspecified +C0152447|T184|PT|R36.9|ICD10CM|Urethral discharge, unspecified|Urethral discharge, unspecified +C0152447|T184|ET|R36.9|ICD10CM|Urethrorrhea|Urethrorrhea +C0549622|T048|AB|R37|ICD10CM|Sexual dysfunction, unspecified|Sexual dysfunction, unspecified +C0549622|T048|PT|R37|ICD10CM|Sexual dysfunction, unspecified|Sexual dysfunction, unspecified +C2830341|T033|AB|R39|ICD10CM|Oth and unsp symptoms and signs involving the GU sys|Oth and unsp symptoms and signs involving the GU sys +C2830341|T033|HT|R39|ICD10CM|Other and unspecified symptoms and signs involving the genitourinary system|Other and unspecified symptoms and signs involving the genitourinary system +C0476302|T184|HT|R39|ICD10|Other symptoms and signs involving the urinary system|Other symptoms and signs involving the urinary system +C0152245|T046|PT|R39.0|ICD10|Extravasation of urine|Extravasation of urine +C0152245|T046|PT|R39.0|ICD10CM|Extravasation of urine|Extravasation of urine +C0152245|T046|AB|R39.0|ICD10CM|Extravasation of urine|Extravasation of urine +C0478132|T184|PT|R39.1|ICD10|Other difficulties with micturition|Other difficulties with micturition +C0478132|T184|HT|R39.1|ICD10CM|Other difficulties with micturition|Other difficulties with micturition +C0478132|T184|AB|R39.1|ICD10CM|Other difficulties with micturition|Other difficulties with micturition +C0152032|T184|PT|R39.11|ICD10CM|Hesitancy of micturition|Hesitancy of micturition +C0152032|T184|AB|R39.11|ICD10CM|Hesitancy of micturition|Hesitancy of micturition +C0455880|T184|PT|R39.12|ICD10CM|Poor urinary stream|Poor urinary stream +C0455880|T184|AB|R39.12|ICD10CM|Poor urinary stream|Poor urinary stream +C2830342|T184|ET|R39.12|ICD10CM|Weak urinary steam|Weak urinary steam +C0232855|T184|PT|R39.13|ICD10CM|Splitting of urinary stream|Splitting of urinary stream +C0232855|T184|AB|R39.13|ICD10CM|Splitting of urinary stream|Splitting of urinary stream +C2830343|T184|AB|R39.14|ICD10CM|Feeling of incomplete bladder emptying|Feeling of incomplete bladder emptying +C2830343|T184|PT|R39.14|ICD10CM|Feeling of incomplete bladder emptying|Feeling of incomplete bladder emptying +C0085606|T184|PT|R39.15|ICD10CM|Urgency of urination|Urgency of urination +C0085606|T184|AB|R39.15|ICD10CM|Urgency of urination|Urgency of urination +C2830344|T184|AB|R39.16|ICD10CM|Straining to void|Straining to void +C2830344|T184|PT|R39.16|ICD10CM|Straining to void|Straining to void +C0478132|T184|AB|R39.19|ICD10CM|Other difficulties with micturition|Other difficulties with micturition +C0478132|T184|HT|R39.19|ICD10CM|Other difficulties with micturition|Other difficulties with micturition +C4269193|T184|AB|R39.191|ICD10CM|Need to immediately re-void|Need to immediately re-void +C4269193|T184|PT|R39.191|ICD10CM|Need to immediately re-void|Need to immediately re-void +C4269194|T184|AB|R39.192|ICD10CM|Position dependent micturition|Position dependent micturition +C4269194|T184|PT|R39.192|ICD10CM|Position dependent micturition|Position dependent micturition +C0478132|T184|AB|R39.198|ICD10CM|Other difficulties with micturition|Other difficulties with micturition +C0478132|T184|PT|R39.198|ICD10CM|Other difficulties with micturition|Other difficulties with micturition +C0476303|T184|PT|R39.2|ICD10|Extrarenal uraemia|Extrarenal uraemia +C0476303|T184|PT|R39.2|ICD10AE|Extrarenal uremia|Extrarenal uremia +C0476303|T184|PT|R39.2|ICD10CM|Extrarenal uremia|Extrarenal uremia +C0476303|T184|AB|R39.2|ICD10CM|Extrarenal uremia|Extrarenal uremia +C0554309|T047|ET|R39.2|ICD10CM|Prerenal uremia|Prerenal uremia +C0478133|T184|PT|R39.8|ICD10|Other and unspecified symptoms and signs involving the urinary system|Other and unspecified symptoms and signs involving the urinary system +C2830345|T033|HT|R39.8|ICD10CM|Other symptoms and signs involving the genitourinary system|Other symptoms and signs involving the genitourinary system +C2830345|T033|AB|R39.8|ICD10CM|Other symptoms and signs involving the genitourinary system|Other symptoms and signs involving the genitourinary system +C0150042|T033|PT|R39.81|ICD10CM|Functional urinary incontinence|Functional urinary incontinence +C0150042|T033|AB|R39.81|ICD10CM|Functional urinary incontinence|Functional urinary incontinence +C2349678|T047|ET|R39.81|ICD10CM|Urinary incontinence due to cognitive impairment, or severe physical disability or immobility|Urinary incontinence due to cognitive impairment, or severe physical disability or immobility +C4269195|T184|AB|R39.82|ICD10CM|Chronic bladder pain|Chronic bladder pain +C4269195|T184|PT|R39.82|ICD10CM|Chronic bladder pain|Chronic bladder pain +C4509435|T033|AB|R39.83|ICD10CM|Unilateral non-palpable testicle|Unilateral non-palpable testicle +C4509435|T033|PT|R39.83|ICD10CM|Unilateral non-palpable testicle|Unilateral non-palpable testicle +C4509436|T033|PT|R39.84|ICD10CM|Bilateral non-palpable testicles|Bilateral non-palpable testicles +C4509436|T033|AB|R39.84|ICD10CM|Bilateral non-palpable testicles|Bilateral non-palpable testicles +C2830345|T033|AB|R39.89|ICD10CM|Other symptoms and signs involving the genitourinary system|Other symptoms and signs involving the genitourinary system +C2830345|T033|PT|R39.89|ICD10CM|Other symptoms and signs involving the genitourinary system|Other symptoms and signs involving the genitourinary system +C2830346|T033|AB|R39.9|ICD10CM|Unsp symptoms and signs involving the genitourinary system|Unsp symptoms and signs involving the genitourinary system +C2830346|T033|PT|R39.9|ICD10CM|Unspecified symptoms and signs involving the genitourinary system|Unspecified symptoms and signs involving the genitourinary system +C0495687|T033|AB|R40|ICD10CM|Somnolence, stupor and coma|Somnolence, stupor and coma +C0495687|T033|HT|R40|ICD10CM|Somnolence, stupor and coma|Somnolence, stupor and coma +C0495687|T033|HT|R40|ICD10|Somnolence, stupor and coma|Somnolence, stupor and coma +C0478134|T184|HT|R40-F46.9|ICD10AE|Symptoms and signs involving cognition, perception, emotional state and behavior|Symptoms and signs involving cognition, perception, emotional state and behavior +C0478134|T184|HT|R40-F46.9|ICD10|Symptoms and signs involving cognition, perception, emotional state and behaviour|Symptoms and signs involving cognition, perception, emotional state and behaviour +C0478134|T184|HT|R40-R46|ICD10CM|Symptoms and signs involving cognition, perception, emotional state and behavior (R40-R46)|Symptoms and signs involving cognition, perception, emotional state and behavior (R40-R46) +C2830004|T048|ET|R40.0|ICD10CM|Drowsiness|Drowsiness +C2830004|T048|PT|R40.0|ICD10CM|Somnolence|Somnolence +C2830004|T048|AB|R40.0|ICD10CM|Somnolence|Somnolence +C2830004|T048|PT|R40.0|ICD10|Somnolence|Somnolence +C0233607|T048|ET|R40.1|ICD10CM|Catatonic stupor|Catatonic stupor +C0234439|T046|ET|R40.1|ICD10CM|Semicoma|Semicoma +C0085628|T048|PT|R40.1|ICD10CM|Stupor|Stupor +C0085628|T048|AB|R40.1|ICD10CM|Stupor|Stupor +C0085628|T048|PT|R40.1|ICD10|Stupor|Stupor +C0009421|T047|HT|R40.2|ICD10CM|Coma|Coma +C0009421|T047|AB|R40.2|ICD10CM|Coma|Coma +C0009421|T047|PT|R40.2|ICD10|Coma, unspecified|Coma, unspecified +C0009421|T047|ET|R40.20|ICD10CM|Coma NOS|Coma NOS +C0041657|T033|ET|R40.20|ICD10CM|Unconsciousness NOS|Unconsciousness NOS +C0009421|T047|AB|R40.20|ICD10CM|Unspecified coma|Unspecified coma +C0009421|T047|PT|R40.20|ICD10CM|Unspecified coma|Unspecified coma +C2830347|T033|AB|R40.21|ICD10CM|Coma scale, eyes open|Coma scale, eyes open +C2830347|T033|HT|R40.21|ICD10CM|Coma scale, eyes open|Coma scale, eyes open +C4718804|T033|ET|R40.211|ICD10CM|Coma scale eye opening score of 1|Coma scale eye opening score of 1 +C2830348|T033|AB|R40.211|ICD10CM|Coma scale, eyes open, never|Coma scale, eyes open, never +C2830348|T033|HT|R40.211|ICD10CM|Coma scale, eyes open, never|Coma scale, eyes open, never +C2830349|T033|AB|R40.2110|ICD10CM|Coma scale, eyes open, never, unspecified time|Coma scale, eyes open, never, unspecified time +C2830349|T033|PT|R40.2110|ICD10CM|Coma scale, eyes open, never, unspecified time|Coma scale, eyes open, never, unspecified time +C2830350|T033|AB|R40.2111|ICD10CM|Coma scale, eyes open, never, in the field|Coma scale, eyes open, never, in the field +C2830350|T033|PT|R40.2111|ICD10CM|Coma scale, eyes open, never, in the field [EMT or ambulance]|Coma scale, eyes open, never, in the field [EMT or ambulance] +C2830351|T033|PT|R40.2112|ICD10CM|Coma scale, eyes open, never, at arrival to emergency department|Coma scale, eyes open, never, at arrival to emergency department +C2830351|T033|AB|R40.2112|ICD10CM|Coma scale, eyes open, never, EMR|Coma scale, eyes open, never, EMR +C2830352|T033|AB|R40.2113|ICD10CM|Coma scale, eyes open, never, at hospital admission|Coma scale, eyes open, never, at hospital admission +C2830352|T033|PT|R40.2113|ICD10CM|Coma scale, eyes open, never, at hospital admission|Coma scale, eyes open, never, at hospital admission +C2830353|T033|PT|R40.2114|ICD10CM|Coma scale, eyes open, never, 24 hours or more after hospital admission|Coma scale, eyes open, never, 24 hours or more after hospital admission +C2830353|T033|AB|R40.2114|ICD10CM|Coma scale, eyes open, never, 24+hrs|Coma scale, eyes open, never, 24+hrs +C4718805|T033|ET|R40.212|ICD10CM|Coma scale eye opening score of 2|Coma scale eye opening score of 2 +C2830354|T033|AB|R40.212|ICD10CM|Coma scale, eyes open, to pain|Coma scale, eyes open, to pain +C2830354|T033|HT|R40.212|ICD10CM|Coma scale, eyes open, to pain|Coma scale, eyes open, to pain +C2830355|T033|AB|R40.2120|ICD10CM|Coma scale, eyes open, to pain, unspecified time|Coma scale, eyes open, to pain, unspecified time +C2830355|T033|PT|R40.2120|ICD10CM|Coma scale, eyes open, to pain, unspecified time|Coma scale, eyes open, to pain, unspecified time +C2830356|T033|AB|R40.2121|ICD10CM|Coma scale, eyes open, to pain, in the field|Coma scale, eyes open, to pain, in the field +C2830356|T033|PT|R40.2121|ICD10CM|Coma scale, eyes open, to pain, in the field [EMT or ambulance]|Coma scale, eyes open, to pain, in the field [EMT or ambulance] +C2830357|T033|PT|R40.2122|ICD10CM|Coma scale, eyes open, to pain, at arrival to emergency department|Coma scale, eyes open, to pain, at arrival to emergency department +C2830357|T033|AB|R40.2122|ICD10CM|Coma scale, eyes open, to pain, EMR|Coma scale, eyes open, to pain, EMR +C2830358|T033|AB|R40.2123|ICD10CM|Coma scale, eyes open, to pain, at hospital admission|Coma scale, eyes open, to pain, at hospital admission +C2830358|T033|PT|R40.2123|ICD10CM|Coma scale, eyes open, to pain, at hospital admission|Coma scale, eyes open, to pain, at hospital admission +C2830359|T033|PT|R40.2124|ICD10CM|Coma scale, eyes open, to pain, 24 hours or more after hospital admission|Coma scale, eyes open, to pain, 24 hours or more after hospital admission +C2830359|T033|AB|R40.2124|ICD10CM|Coma scale, eyes open, to pain, 24+hrs|Coma scale, eyes open, to pain, 24+hrs +C4718806|T033|ET|R40.213|ICD10CM|Coma scale eye opening score of 3|Coma scale eye opening score of 3 +C2830360|T033|AB|R40.213|ICD10CM|Coma scale, eyes open, to sound|Coma scale, eyes open, to sound +C2830360|T033|HT|R40.213|ICD10CM|Coma scale, eyes open, to sound|Coma scale, eyes open, to sound +C2830361|T033|AB|R40.2130|ICD10CM|Coma scale, eyes open, to sound, unspecified time|Coma scale, eyes open, to sound, unspecified time +C2830361|T033|PT|R40.2130|ICD10CM|Coma scale, eyes open, to sound, unspecified time|Coma scale, eyes open, to sound, unspecified time +C2830362|T033|AB|R40.2131|ICD10CM|Coma scale, eyes open, to sound, in the field|Coma scale, eyes open, to sound, in the field +C2830362|T033|PT|R40.2131|ICD10CM|Coma scale, eyes open, to sound, in the field [EMT or ambulance]|Coma scale, eyes open, to sound, in the field [EMT or ambulance] +C2830363|T033|PT|R40.2132|ICD10CM|Coma scale, eyes open, to sound, at arrival to emergency department|Coma scale, eyes open, to sound, at arrival to emergency department +C2830363|T033|AB|R40.2132|ICD10CM|Coma scale, eyes open, to sound, EMR|Coma scale, eyes open, to sound, EMR +C2830364|T033|AB|R40.2133|ICD10CM|Coma scale, eyes open, to sound, at hospital admission|Coma scale, eyes open, to sound, at hospital admission +C2830364|T033|PT|R40.2133|ICD10CM|Coma scale, eyes open, to sound, at hospital admission|Coma scale, eyes open, to sound, at hospital admission +C2830365|T033|PT|R40.2134|ICD10CM|Coma scale, eyes open, to sound, 24 hours or more after hospital admission|Coma scale, eyes open, to sound, 24 hours or more after hospital admission +C2830365|T033|AB|R40.2134|ICD10CM|Coma scale, eyes open, to sound, 24+hrs|Coma scale, eyes open, to sound, 24+hrs +C4718807|T033|ET|R40.214|ICD10CM|Coma scale eye opening score of 4|Coma scale eye opening score of 4 +C2830366|T033|AB|R40.214|ICD10CM|Coma scale, eyes open, spontaneous|Coma scale, eyes open, spontaneous +C2830366|T033|HT|R40.214|ICD10CM|Coma scale, eyes open, spontaneous|Coma scale, eyes open, spontaneous +C2830367|T033|AB|R40.2140|ICD10CM|Coma scale, eyes open, spontaneous, unspecified time|Coma scale, eyes open, spontaneous, unspecified time +C2830367|T033|PT|R40.2140|ICD10CM|Coma scale, eyes open, spontaneous, unspecified time|Coma scale, eyes open, spontaneous, unspecified time +C2830368|T033|AB|R40.2141|ICD10CM|Coma scale, eyes open, spontaneous, in the field|Coma scale, eyes open, spontaneous, in the field +C2830368|T033|PT|R40.2141|ICD10CM|Coma scale, eyes open, spontaneous, in the field [EMT or ambulance]|Coma scale, eyes open, spontaneous, in the field [EMT or ambulance] +C2830369|T033|PT|R40.2142|ICD10CM|Coma scale, eyes open, spontaneous, at arrival to emergency department|Coma scale, eyes open, spontaneous, at arrival to emergency department +C2830369|T033|AB|R40.2142|ICD10CM|Coma scale, eyes open, spontaneous, EMR|Coma scale, eyes open, spontaneous, EMR +C2830370|T033|AB|R40.2143|ICD10CM|Coma scale, eyes open, spontaneous, at hospital admission|Coma scale, eyes open, spontaneous, at hospital admission +C2830370|T033|PT|R40.2143|ICD10CM|Coma scale, eyes open, spontaneous, at hospital admission|Coma scale, eyes open, spontaneous, at hospital admission +C2830371|T033|PT|R40.2144|ICD10CM|Coma scale, eyes open, spontaneous, 24 hours or more after hospital admission|Coma scale, eyes open, spontaneous, 24 hours or more after hospital admission +C2830371|T033|AB|R40.2144|ICD10CM|Coma scale, eyes open, spontaneous, 24+hrs|Coma scale, eyes open, spontaneous, 24+hrs +C2830372|T033|AB|R40.22|ICD10CM|Coma scale, best verbal response|Coma scale, best verbal response +C2830372|T033|HT|R40.22|ICD10CM|Coma scale, best verbal response|Coma scale, best verbal response +C4718808|T033|ET|R40.221|ICD10CM|Coma scale verbal score of 1|Coma scale verbal score of 1 +C2830373|T033|AB|R40.221|ICD10CM|Coma scale, best verbal response, none|Coma scale, best verbal response, none +C2830373|T033|HT|R40.221|ICD10CM|Coma scale, best verbal response, none|Coma scale, best verbal response, none +C2830374|T033|AB|R40.2210|ICD10CM|Coma scale, best verbal response, none, unspecified time|Coma scale, best verbal response, none, unspecified time +C2830374|T033|PT|R40.2210|ICD10CM|Coma scale, best verbal response, none, unspecified time|Coma scale, best verbal response, none, unspecified time +C2830375|T033|AB|R40.2211|ICD10CM|Coma scale, best verbal response, none, in the field|Coma scale, best verbal response, none, in the field +C2830375|T033|PT|R40.2211|ICD10CM|Coma scale, best verbal response, none, in the field [EMT or ambulance]|Coma scale, best verbal response, none, in the field [EMT or ambulance] +C2830376|T033|PT|R40.2212|ICD10CM|Coma scale, best verbal response, none, at arrival to emergency department|Coma scale, best verbal response, none, at arrival to emergency department +C2830376|T033|AB|R40.2212|ICD10CM|Coma scale, best verbal response, none, EMR|Coma scale, best verbal response, none, EMR +C2830377|T033|AB|R40.2213|ICD10CM|Coma scale, best verbal response, none, admit|Coma scale, best verbal response, none, admit +C2830377|T033|PT|R40.2213|ICD10CM|Coma scale, best verbal response, none, at hospital admission|Coma scale, best verbal response, none, at hospital admission +C2830378|T033|PT|R40.2214|ICD10CM|Coma scale, best verbal response, none, 24 hours or more after hospital admission|Coma scale, best verbal response, none, 24 hours or more after hospital admission +C2830378|T033|AB|R40.2214|ICD10CM|Coma scale, best verbal response, none, 24+hrs|Coma scale, best verbal response, none, 24+hrs +C4718809|T033|ET|R40.222|ICD10CM|Coma scale verbal score of 2|Coma scale verbal score of 2 +C2830379|T033|AB|R40.222|ICD10CM|Coma scale, best verbal response, incomprehensible words|Coma scale, best verbal response, incomprehensible words +C2830379|T033|HT|R40.222|ICD10CM|Coma scale, best verbal response, incomprehensible words|Coma scale, best verbal response, incomprehensible words +C4509437|T033|ET|R40.222|ICD10CM|Incomprehensible sounds (2-5 years of age)|Incomprehensible sounds (2-5 years of age) +C4509438|T033|ET|R40.222|ICD10CM|Moans/grunts to pain; restless (<2 years old)|Moans/grunts to pain; restless (<2 years old) +C2830380|T033|AB|R40.2220|ICD10CM|Coma scale, best verb, incomprehensible words, unsp time|Coma scale, best verb, incomprehensible words, unsp time +C2830380|T033|PT|R40.2220|ICD10CM|Coma scale, best verbal response, incomprehensible words, unspecified time|Coma scale, best verbal response, incomprehensible words, unspecified time +C2830381|T033|AB|R40.2221|ICD10CM|Coma scale, best verb, incomprehensible words, in the field|Coma scale, best verb, incomprehensible words, in the field +C2830381|T033|PT|R40.2221|ICD10CM|Coma scale, best verbal response, incomprehensible words, in the field [EMT or ambulance]|Coma scale, best verbal response, incomprehensible words, in the field [EMT or ambulance] +C2830382|T033|AB|R40.2222|ICD10CM|Coma scale, best verb, incomprehensible words, EMR|Coma scale, best verb, incomprehensible words, EMR +C2830382|T033|PT|R40.2222|ICD10CM|Coma scale, best verbal response, incomprehensible words, at arrival to emergency department|Coma scale, best verbal response, incomprehensible words, at arrival to emergency department +C2830383|T033|AB|R40.2223|ICD10CM|Coma scale, best verb, incomprehensible words, admit|Coma scale, best verb, incomprehensible words, admit +C2830383|T033|PT|R40.2223|ICD10CM|Coma scale, best verbal response, incomprehensible words, at hospital admission|Coma scale, best verbal response, incomprehensible words, at hospital admission +C2830384|T033|AB|R40.2224|ICD10CM|Coma scale, best verb, incomprehensible words, 24+hrs|Coma scale, best verb, incomprehensible words, 24+hrs +C2830384|T033|PT|R40.2224|ICD10CM|Coma scale, best verbal response, incomprehensible words, 24 hours or more after hospital admission|Coma scale, best verbal response, incomprehensible words, 24 hours or more after hospital admission +C4718810|T033|ET|R40.223|ICD10CM|Coma scale verbal score of 3|Coma scale verbal score of 3 +C2830385|T033|AB|R40.223|ICD10CM|Coma scale, best verbal response, inappropriate words|Coma scale, best verbal response, inappropriate words +C2830385|T033|HT|R40.223|ICD10CM|Coma scale, best verbal response, inappropriate words|Coma scale, best verbal response, inappropriate words +C4509439|T033|ET|R40.223|ICD10CM|Inappropriate crying or screaming (< 2 years of age)|Inappropriate crying or screaming (< 2 years of age) +C4509440|T033|ET|R40.223|ICD10CM|Screaming (2-5 years of age)|Screaming (2-5 years of age) +C2830386|T033|AB|R40.2230|ICD10CM|Coma scale, best verb, inappropriate words, unsp time|Coma scale, best verb, inappropriate words, unsp time +C2830386|T033|PT|R40.2230|ICD10CM|Coma scale, best verbal response, inappropriate words, unspecified time|Coma scale, best verbal response, inappropriate words, unspecified time +C2830387|T033|AB|R40.2231|ICD10CM|Coma scale, best verb, inappropriate words, in the field|Coma scale, best verb, inappropriate words, in the field +C2830387|T033|PT|R40.2231|ICD10CM|Coma scale, best verbal response, inappropriate words, in the field [EMT or ambulance]|Coma scale, best verbal response, inappropriate words, in the field [EMT or ambulance] +C2830388|T033|PT|R40.2232|ICD10CM|Coma scale, best verbal response, inappropriate words, at arrival to emergency department|Coma scale, best verbal response, inappropriate words, at arrival to emergency department +C2830388|T033|AB|R40.2232|ICD10CM|Coma scale, best verbal response, inappropriate words, EMR|Coma scale, best verbal response, inappropriate words, EMR +C2830389|T033|AB|R40.2233|ICD10CM|Coma scale, best verbal response, inappropriate words, admit|Coma scale, best verbal response, inappropriate words, admit +C2830389|T033|PT|R40.2233|ICD10CM|Coma scale, best verbal response, inappropriate words, at hospital admission|Coma scale, best verbal response, inappropriate words, at hospital admission +C2830390|T033|AB|R40.2234|ICD10CM|Coma scale, best verb, inappropriate words, 24+hrs|Coma scale, best verb, inappropriate words, 24+hrs +C2830390|T033|PT|R40.2234|ICD10CM|Coma scale, best verbal response, inappropriate words, 24 hours or more after hospital admission|Coma scale, best verbal response, inappropriate words, 24 hours or more after hospital admission +C4718811|T033|ET|R40.224|ICD10CM|Coma scale verbal score of 4|Coma scale verbal score of 4 +C2830391|T033|AB|R40.224|ICD10CM|Coma scale, best verbal response, confused conversation|Coma scale, best verbal response, confused conversation +C2830391|T033|HT|R40.224|ICD10CM|Coma scale, best verbal response, confused conversation|Coma scale, best verbal response, confused conversation +C4509441|T033|ET|R40.224|ICD10CM|Inappropriate words (2-5 years of age)|Inappropriate words (2-5 years of age) +C4509442|T033|ET|R40.224|ICD10CM|Irritable cries (< 2 years of age)|Irritable cries (< 2 years of age) +C2830392|T033|AB|R40.2240|ICD10CM|Coma scale, best verb, confused conversation, unsp time|Coma scale, best verb, confused conversation, unsp time +C2830392|T033|PT|R40.2240|ICD10CM|Coma scale, best verbal response, confused conversation, unspecified time|Coma scale, best verbal response, confused conversation, unspecified time +C2830393|T033|AB|R40.2241|ICD10CM|Coma scale, best verb, confused conversation, in the field|Coma scale, best verb, confused conversation, in the field +C2830393|T033|PT|R40.2241|ICD10CM|Coma scale, best verbal response, confused conversation, in the field [EMT or ambulance]|Coma scale, best verbal response, confused conversation, in the field [EMT or ambulance] +C2830394|T033|PT|R40.2242|ICD10CM|Coma scale, best verbal response, confused conversation, at arrival to emergency department|Coma scale, best verbal response, confused conversation, at arrival to emergency department +C2830394|T033|AB|R40.2242|ICD10CM|Coma scale, best verbal response, confused conversation, EMR|Coma scale, best verbal response, confused conversation, EMR +C2830395|T033|AB|R40.2243|ICD10CM|Coma scale, best verb, confused conversation, admit|Coma scale, best verb, confused conversation, admit +C2830395|T033|PT|R40.2243|ICD10CM|Coma scale, best verbal response, confused conversation, at hospital admission|Coma scale, best verbal response, confused conversation, at hospital admission +C2830396|T033|AB|R40.2244|ICD10CM|Coma scale, best verb, confused conversation, 24+hrs|Coma scale, best verb, confused conversation, 24+hrs +C2830396|T033|PT|R40.2244|ICD10CM|Coma scale, best verbal response, confused conversation, 24 hours or more after hospital admission|Coma scale, best verbal response, confused conversation, 24 hours or more after hospital admission +C4718812|T033|ET|R40.225|ICD10CM|Coma scale verbal score of 5|Coma scale verbal score of 5 +C2830397|T033|AB|R40.225|ICD10CM|Coma scale, best verbal response, oriented|Coma scale, best verbal response, oriented +C2830397|T033|HT|R40.225|ICD10CM|Coma scale, best verbal response, oriented|Coma scale, best verbal response, oriented +C4509443|T033|ET|R40.225|ICD10CM|Cooing or babbling or crying appropriately (< 2 years of age)|Cooing or babbling or crying appropriately (< 2 years of age) +C4509444|T033|ET|R40.225|ICD10CM|Uses appropriate words (2- 5 years of age)|Uses appropriate words (2- 5 years of age) +C2830398|T033|AB|R40.2250|ICD10CM|Coma scale, best verbal response, oriented, unspecified time|Coma scale, best verbal response, oriented, unspecified time +C2830398|T033|PT|R40.2250|ICD10CM|Coma scale, best verbal response, oriented, unspecified time|Coma scale, best verbal response, oriented, unspecified time +C2830399|T033|AB|R40.2251|ICD10CM|Coma scale, best verbal response, oriented, in the field|Coma scale, best verbal response, oriented, in the field +C2830399|T033|PT|R40.2251|ICD10CM|Coma scale, best verbal response, oriented, in the field [EMT or ambulance]|Coma scale, best verbal response, oriented, in the field [EMT or ambulance] +C2830400|T033|PT|R40.2252|ICD10CM|Coma scale, best verbal response, oriented, at arrival to emergency department|Coma scale, best verbal response, oriented, at arrival to emergency department +C2830400|T033|AB|R40.2252|ICD10CM|Coma scale, best verbal response, oriented, EMR|Coma scale, best verbal response, oriented, EMR +C2830401|T033|AB|R40.2253|ICD10CM|Coma scale, best verbal response, oriented, admit|Coma scale, best verbal response, oriented, admit +C2830401|T033|PT|R40.2253|ICD10CM|Coma scale, best verbal response, oriented, at hospital admission|Coma scale, best verbal response, oriented, at hospital admission +C2830402|T033|PT|R40.2254|ICD10CM|Coma scale, best verbal response, oriented, 24 hours or more after hospital admission|Coma scale, best verbal response, oriented, 24 hours or more after hospital admission +C2830402|T033|AB|R40.2254|ICD10CM|Coma scale, best verbal response, oriented, 24+hrs|Coma scale, best verbal response, oriented, 24+hrs +C2830403|T033|AB|R40.23|ICD10CM|Coma scale, best motor response|Coma scale, best motor response +C2830403|T033|HT|R40.23|ICD10CM|Coma scale, best motor response|Coma scale, best motor response +C4718813|T033|ET|R40.231|ICD10CM|Coma scale motor score of 1|Coma scale motor score of 1 +C2830404|T033|AB|R40.231|ICD10CM|Coma scale, best motor response, none|Coma scale, best motor response, none +C2830404|T033|HT|R40.231|ICD10CM|Coma scale, best motor response, none|Coma scale, best motor response, none +C2830405|T033|AB|R40.2310|ICD10CM|Coma scale, best motor response, none, unspecified time|Coma scale, best motor response, none, unspecified time +C2830405|T033|PT|R40.2310|ICD10CM|Coma scale, best motor response, none, unspecified time|Coma scale, best motor response, none, unspecified time +C2830406|T033|AB|R40.2311|ICD10CM|Coma scale, best motor response, none, in the field|Coma scale, best motor response, none, in the field +C2830406|T033|PT|R40.2311|ICD10CM|Coma scale, best motor response, none, in the field [EMT or ambulance]|Coma scale, best motor response, none, in the field [EMT or ambulance] +C2830407|T033|PT|R40.2312|ICD10CM|Coma scale, best motor response, none, at arrival to emergency department|Coma scale, best motor response, none, at arrival to emergency department +C2830407|T033|AB|R40.2312|ICD10CM|Coma scale, best motor response, none, EMR|Coma scale, best motor response, none, EMR +C2830408|T033|AB|R40.2313|ICD10CM|Coma scale, best motor response, none, at hospital admission|Coma scale, best motor response, none, at hospital admission +C2830408|T033|PT|R40.2313|ICD10CM|Coma scale, best motor response, none, at hospital admission|Coma scale, best motor response, none, at hospital admission +C2830409|T033|PT|R40.2314|ICD10CM|Coma scale, best motor response, none, 24 hours or more after hospital admission|Coma scale, best motor response, none, 24 hours or more after hospital admission +C2830409|T033|AB|R40.2314|ICD10CM|Coma scale, best motor response, none, 24+hrs|Coma scale, best motor response, none, 24+hrs +C4509445|T033|ET|R40.232|ICD10CM|Abnormal extensor posturing to pain or noxious stimuli (< 2 years of age)|Abnormal extensor posturing to pain or noxious stimuli (< 2 years of age) +C4718814|T033|ET|R40.232|ICD10CM|Coma scale motor score of 2|Coma scale motor score of 2 +C2830410|T033|AB|R40.232|ICD10CM|Coma scale, best motor response, extension|Coma scale, best motor response, extension +C2830410|T033|HT|R40.232|ICD10CM|Coma scale, best motor response, extension|Coma scale, best motor response, extension +C4509446|T033|ET|R40.232|ICD10CM|Extensor posturing to pain or noxious stimuli (2-5 years of age)|Extensor posturing to pain or noxious stimuli (2-5 years of age) +C2830411|T033|AB|R40.2320|ICD10CM|Coma scale, best motor response, extension, unspecified time|Coma scale, best motor response, extension, unspecified time +C2830411|T033|PT|R40.2320|ICD10CM|Coma scale, best motor response, extension, unspecified time|Coma scale, best motor response, extension, unspecified time +C2830412|T033|AB|R40.2321|ICD10CM|Coma scale, best motor response, extension, in the field|Coma scale, best motor response, extension, in the field +C2830412|T033|PT|R40.2321|ICD10CM|Coma scale, best motor response, extension, in the field [EMT or ambulance]|Coma scale, best motor response, extension, in the field [EMT or ambulance] +C2830413|T033|PT|R40.2322|ICD10CM|Coma scale, best motor response, extension, at arrival to emergency department|Coma scale, best motor response, extension, at arrival to emergency department +C2830413|T033|AB|R40.2322|ICD10CM|Coma scale, best motor response, extension, EMR|Coma scale, best motor response, extension, EMR +C2830414|T033|AB|R40.2323|ICD10CM|Coma scale, best motor response, extension, admit|Coma scale, best motor response, extension, admit +C2830414|T033|PT|R40.2323|ICD10CM|Coma scale, best motor response, extension, at hospital admission|Coma scale, best motor response, extension, at hospital admission +C2830415|T033|PT|R40.2324|ICD10CM|Coma scale, best motor response, extension, 24 hours or more after hospital admission|Coma scale, best motor response, extension, 24 hours or more after hospital admission +C2830415|T033|AB|R40.2324|ICD10CM|Coma scale, best motor response, extension, 24+hrs|Coma scale, best motor response, extension, 24+hrs +C4509447|T033|ET|R40.233|ICD10CM|Abnormal flexure posturing to pain or noxious stimuli (2-5 years of age)|Abnormal flexure posturing to pain or noxious stimuli (2-5 years of age) +C4718815|T033|ET|R40.233|ICD10CM|Coma scale motor score of 3|Coma scale motor score of 3 +C2830416|T033|AB|R40.233|ICD10CM|Coma scale, best motor response, abnormal flexion|Coma scale, best motor response, abnormal flexion +C2830416|T033|HT|R40.233|ICD10CM|Coma scale, best motor response, abnormal flexion|Coma scale, best motor response, abnormal flexion +C4509448|T033|ET|R40.233|ICD10CM|Flexion/decorticate posturing (< 2 years of age)|Flexion/decorticate posturing (< 2 years of age) +C2830417|T033|PT|R40.2330|ICD10CM|Coma scale, best motor response, abnormal flexion, unspecified time|Coma scale, best motor response, abnormal flexion, unspecified time +C2830417|T033|AB|R40.2330|ICD10CM|Coma scale, best motor, abnormal flexion, unspecified time|Coma scale, best motor, abnormal flexion, unspecified time +C2830418|T033|PT|R40.2331|ICD10CM|Coma scale, best motor response, abnormal flexion, in the field [EMT or ambulance]|Coma scale, best motor response, abnormal flexion, in the field [EMT or ambulance] +C2830418|T033|AB|R40.2331|ICD10CM|Coma scale, best motor, abnormal flexion, in the field|Coma scale, best motor, abnormal flexion, in the field +C2830419|T033|PT|R40.2332|ICD10CM|Coma scale, best motor response, abnormal flexion, at arrival to emergency department|Coma scale, best motor response, abnormal flexion, at arrival to emergency department +C2830419|T033|AB|R40.2332|ICD10CM|Coma scale, best motor response, abnormal flexion, EMR|Coma scale, best motor response, abnormal flexion, EMR +C2830420|T033|AB|R40.2333|ICD10CM|Coma scale, best motor response, abnormal flexion, admit|Coma scale, best motor response, abnormal flexion, admit +C2830420|T033|PT|R40.2333|ICD10CM|Coma scale, best motor response, abnormal flexion, at hospital admission|Coma scale, best motor response, abnormal flexion, at hospital admission +C2830421|T033|PT|R40.2334|ICD10CM|Coma scale, best motor response, abnormal flexion, 24 hours or more after hospital admission|Coma scale, best motor response, abnormal flexion, 24 hours or more after hospital admission +C2830421|T033|AB|R40.2334|ICD10CM|Coma scale, best motor response, abnormal flexion, 24+hrs|Coma scale, best motor response, abnormal flexion, 24+hrs +C4718816|T033|ET|R40.234|ICD10CM|Coma scale motor score of 4|Coma scale motor score of 4 +C2830422|T033|AB|R40.234|ICD10CM|Coma scale, best motor response, flexion withdrawal|Coma scale, best motor response, flexion withdrawal +C2830422|T033|HT|R40.234|ICD10CM|Coma scale, best motor response, flexion withdrawal|Coma scale, best motor response, flexion withdrawal +C4509449|T033|ET|R40.234|ICD10CM|Withdraws from pain or noxious stimuli (2-5 years of age)|Withdraws from pain or noxious stimuli (2-5 years of age) +C2830423|T033|PT|R40.2340|ICD10CM|Coma scale, best motor response, flexion withdrawal, unspecified time|Coma scale, best motor response, flexion withdrawal, unspecified time +C2830423|T033|AB|R40.2340|ICD10CM|Coma scale, best motor, flexion withdrawal, unsp time|Coma scale, best motor, flexion withdrawal, unsp time +C2830424|T033|PT|R40.2341|ICD10CM|Coma scale, best motor response, flexion withdrawal, in the field [EMT or ambulance]|Coma scale, best motor response, flexion withdrawal, in the field [EMT or ambulance] +C2830424|T033|AB|R40.2341|ICD10CM|Coma scale, best motor, flexion withdrawal, in the field|Coma scale, best motor, flexion withdrawal, in the field +C2830425|T033|PT|R40.2342|ICD10CM|Coma scale, best motor response, flexion withdrawal, at arrival to emergency department|Coma scale, best motor response, flexion withdrawal, at arrival to emergency department +C2830425|T033|AB|R40.2342|ICD10CM|Coma scale, best motor response, flexion withdrawal, EMR|Coma scale, best motor response, flexion withdrawal, EMR +C2830426|T033|AB|R40.2343|ICD10CM|Coma scale, best motor response, flexion withdrawal, admit|Coma scale, best motor response, flexion withdrawal, admit +C2830426|T033|PT|R40.2343|ICD10CM|Coma scale, best motor response, flexion withdrawal, at hospital admission|Coma scale, best motor response, flexion withdrawal, at hospital admission +C2830427|T033|PT|R40.2344|ICD10CM|Coma scale, best motor response, flexion withdrawal, 24 hours or more after hospital admission|Coma scale, best motor response, flexion withdrawal, 24 hours or more after hospital admission +C2830427|T033|AB|R40.2344|ICD10CM|Coma scale, best motor response, flexion withdrawal, 24+hrs|Coma scale, best motor response, flexion withdrawal, 24+hrs +C4718817|T033|ET|R40.235|ICD10CM|Coma scale motor score of 5|Coma scale motor score of 5 +C2830428|T033|AB|R40.235|ICD10CM|Coma scale, best motor response, localizes pain|Coma scale, best motor response, localizes pain +C2830428|T033|HT|R40.235|ICD10CM|Coma scale, best motor response, localizes pain|Coma scale, best motor response, localizes pain +C4509450|T033|ET|R40.235|ICD10CM|Localizes pain (2-5 years of age)|Localizes pain (2-5 years of age) +C4509451|T033|ET|R40.235|ICD10CM|Withdraws to touch (< 2 years of age)|Withdraws to touch (< 2 years of age) +C2830429|T033|AB|R40.2350|ICD10CM|Coma scale, best motor response, localizes pain, unsp time|Coma scale, best motor response, localizes pain, unsp time +C2830429|T033|PT|R40.2350|ICD10CM|Coma scale, best motor response, localizes pain, unspecified time|Coma scale, best motor response, localizes pain, unspecified time +C2830430|T033|PT|R40.2351|ICD10CM|Coma scale, best motor response, localizes pain, in the field [EMT or ambulance]|Coma scale, best motor response, localizes pain, in the field [EMT or ambulance] +C2830430|T033|AB|R40.2351|ICD10CM|Coma scale, best motor, localizes pain, in the field|Coma scale, best motor, localizes pain, in the field +C2830431|T033|PT|R40.2352|ICD10CM|Coma scale, best motor response, localizes pain, at arrival to emergency department|Coma scale, best motor response, localizes pain, at arrival to emergency department +C2830431|T033|AB|R40.2352|ICD10CM|Coma scale, best motor response, localizes pain, EMR|Coma scale, best motor response, localizes pain, EMR +C2830432|T033|AB|R40.2353|ICD10CM|Coma scale, best motor response, localizes pain, admit|Coma scale, best motor response, localizes pain, admit +C2830432|T033|PT|R40.2353|ICD10CM|Coma scale, best motor response, localizes pain, at hospital admission|Coma scale, best motor response, localizes pain, at hospital admission +C2830433|T033|PT|R40.2354|ICD10CM|Coma scale, best motor response, localizes pain, 24 hours or more after hospital admission|Coma scale, best motor response, localizes pain, 24 hours or more after hospital admission +C2830433|T033|AB|R40.2354|ICD10CM|Coma scale, best motor response, localizes pain, 24+hrs|Coma scale, best motor response, localizes pain, 24+hrs +C4718818|T033|ET|R40.236|ICD10CM|Coma scale motor score of 6|Coma scale motor score of 6 +C2830434|T033|AB|R40.236|ICD10CM|Coma scale, best motor response, obeys commands|Coma scale, best motor response, obeys commands +C2830434|T033|HT|R40.236|ICD10CM|Coma scale, best motor response, obeys commands|Coma scale, best motor response, obeys commands +C4509452|T033|ET|R40.236|ICD10CM|Normal or spontaneous movement (< 2 years of age)|Normal or spontaneous movement (< 2 years of age) +C4509453|T033|ET|R40.236|ICD10CM|Obeys commands (2-5 years of age)|Obeys commands (2-5 years of age) +C2830435|T033|AB|R40.2360|ICD10CM|Coma scale, best motor response, obeys commands, unsp time|Coma scale, best motor response, obeys commands, unsp time +C2830435|T033|PT|R40.2360|ICD10CM|Coma scale, best motor response, obeys commands, unspecified time|Coma scale, best motor response, obeys commands, unspecified time +C2830436|T033|PT|R40.2361|ICD10CM|Coma scale, best motor response, obeys commands, in the field [EMT or ambulance]|Coma scale, best motor response, obeys commands, in the field [EMT or ambulance] +C2830436|T033|AB|R40.2361|ICD10CM|Coma scale, best motor, obeys commands, in the field|Coma scale, best motor, obeys commands, in the field +C2830437|T033|PT|R40.2362|ICD10CM|Coma scale, best motor response, obeys commands, at arrival to emergency department|Coma scale, best motor response, obeys commands, at arrival to emergency department +C2830437|T033|AB|R40.2362|ICD10CM|Coma scale, best motor response, obeys commands, EMR|Coma scale, best motor response, obeys commands, EMR +C2830438|T033|AB|R40.2363|ICD10CM|Coma scale, best motor response, obeys commands, admit|Coma scale, best motor response, obeys commands, admit +C2830438|T033|PT|R40.2363|ICD10CM|Coma scale, best motor response, obeys commands, at hospital admission|Coma scale, best motor response, obeys commands, at hospital admission +C2830439|T033|PT|R40.2364|ICD10CM|Coma scale, best motor response, obeys commands, 24 hours or more after hospital admission|Coma scale, best motor response, obeys commands, 24 hours or more after hospital admission +C2830439|T033|AB|R40.2364|ICD10CM|Coma scale, best motor response, obeys commands, 24+hrs|Coma scale, best motor response, obeys commands, 24+hrs +C2012049|T033|AB|R40.24|ICD10CM|Glasgow coma scale, total score|Glasgow coma scale, total score +C2012049|T033|HT|R40.24|ICD10CM|Glasgow coma scale, total score|Glasgow coma scale, total score +C3264575|T033|AB|R40.241|ICD10CM|Glasgow coma scale score 13-15|Glasgow coma scale score 13-15 +C3264575|T033|HT|R40.241|ICD10CM|Glasgow coma scale score 13-15|Glasgow coma scale score 13-15 +C4269196|T033|AB|R40.2410|ICD10CM|Glasgow coma scale score 13-15, unspecified time|Glasgow coma scale score 13-15, unspecified time +C4269196|T033|PT|R40.2410|ICD10CM|Glasgow coma scale score 13-15, unspecified time|Glasgow coma scale score 13-15, unspecified time +C4269197|T033|AB|R40.2411|ICD10CM|Glasgow coma scale score 13-15, in the field|Glasgow coma scale score 13-15, in the field +C4269197|T033|PT|R40.2411|ICD10CM|Glasgow coma scale score 13-15, in the field [EMT or ambulance]|Glasgow coma scale score 13-15, in the field [EMT or ambulance] +C4269198|T033|PT|R40.2412|ICD10CM|Glasgow coma scale score 13-15, at arrival to emergency department|Glasgow coma scale score 13-15, at arrival to emergency department +C4269198|T033|AB|R40.2412|ICD10CM|Glasgow coma scale score 13-15, EMR|Glasgow coma scale score 13-15, EMR +C4269199|T033|AB|R40.2413|ICD10CM|Glasgow coma scale score 13-15, at hospital admission|Glasgow coma scale score 13-15, at hospital admission +C4269199|T033|PT|R40.2413|ICD10CM|Glasgow coma scale score 13-15, at hospital admission|Glasgow coma scale score 13-15, at hospital admission +C4269200|T033|PT|R40.2414|ICD10CM|Glasgow coma scale score 13-15, 24 hours or more after hospital admission|Glasgow coma scale score 13-15, 24 hours or more after hospital admission +C4269200|T033|AB|R40.2414|ICD10CM|Glasgow coma scale score 13-15, 24+hrs|Glasgow coma scale score 13-15, 24+hrs +C3264576|T033|AB|R40.242|ICD10CM|Glasgow coma scale score 9-12|Glasgow coma scale score 9-12 +C3264576|T033|HT|R40.242|ICD10CM|Glasgow coma scale score 9-12|Glasgow coma scale score 9-12 +C4269201|T033|AB|R40.2420|ICD10CM|Glasgow coma scale score 9-12, unspecified time|Glasgow coma scale score 9-12, unspecified time +C4269201|T033|PT|R40.2420|ICD10CM|Glasgow coma scale score 9-12, unspecified time|Glasgow coma scale score 9-12, unspecified time +C4269202|T033|AB|R40.2421|ICD10CM|Glasgow coma scale score 9-12, in the field|Glasgow coma scale score 9-12, in the field +C4269202|T033|PT|R40.2421|ICD10CM|Glasgow coma scale score 9-12, in the field [EMT or ambulance]|Glasgow coma scale score 9-12, in the field [EMT or ambulance] +C4269203|T033|PT|R40.2422|ICD10CM|Glasgow coma scale score 9-12, at arrival to emergency department|Glasgow coma scale score 9-12, at arrival to emergency department +C4269203|T033|AB|R40.2422|ICD10CM|Glasgow coma scale score 9-12, EMR|Glasgow coma scale score 9-12, EMR +C4269204|T033|AB|R40.2423|ICD10CM|Glasgow coma scale score 9-12, at hospital admission|Glasgow coma scale score 9-12, at hospital admission +C4269204|T033|PT|R40.2423|ICD10CM|Glasgow coma scale score 9-12, at hospital admission|Glasgow coma scale score 9-12, at hospital admission +C4269205|T033|PT|R40.2424|ICD10CM|Glasgow coma scale score 9-12, 24 hours or more after hospital admission|Glasgow coma scale score 9-12, 24 hours or more after hospital admission +C4269205|T033|AB|R40.2424|ICD10CM|Glasgow coma scale score 9-12, 24+hrs|Glasgow coma scale score 9-12, 24+hrs +C3264577|T033|AB|R40.243|ICD10CM|Glasgow coma scale score 3-8|Glasgow coma scale score 3-8 +C3264577|T033|HT|R40.243|ICD10CM|Glasgow coma scale score 3-8|Glasgow coma scale score 3-8 +C4269206|T033|AB|R40.2430|ICD10CM|Glasgow coma scale score 3-8, unspecified time|Glasgow coma scale score 3-8, unspecified time +C4269206|T033|PT|R40.2430|ICD10CM|Glasgow coma scale score 3-8, unspecified time|Glasgow coma scale score 3-8, unspecified time +C4269207|T033|AB|R40.2431|ICD10CM|Glasgow coma scale score 3-8, in the field|Glasgow coma scale score 3-8, in the field +C4269207|T033|PT|R40.2431|ICD10CM|Glasgow coma scale score 3-8, in the field [EMT or ambulance]|Glasgow coma scale score 3-8, in the field [EMT or ambulance] +C4269208|T033|PT|R40.2432|ICD10CM|Glasgow coma scale score 3-8, at arrival to emergency department|Glasgow coma scale score 3-8, at arrival to emergency department +C4269208|T033|AB|R40.2432|ICD10CM|Glasgow coma scale score 3-8, EMR|Glasgow coma scale score 3-8, EMR +C4269209|T033|AB|R40.2433|ICD10CM|Glasgow coma scale score 3-8, at hospital admission|Glasgow coma scale score 3-8, at hospital admission +C4269209|T033|PT|R40.2433|ICD10CM|Glasgow coma scale score 3-8, at hospital admission|Glasgow coma scale score 3-8, at hospital admission +C4269210|T033|PT|R40.2434|ICD10CM|Glasgow coma scale score 3-8, 24 hours or more after hospital admission|Glasgow coma scale score 3-8, 24 hours or more after hospital admission +C4269210|T033|AB|R40.2434|ICD10CM|Glasgow coma scale score 3-8, 24+hrs|Glasgow coma scale score 3-8, 24+hrs +C3264578|T033|AB|R40.244|ICD10CM|Oth coma,w/o Glasgow coma scale score,or w/part score report|Oth coma,w/o Glasgow coma scale score,or w/part score report +C3264578|T033|HT|R40.244|ICD10CM|Other coma, without documented Glasgow coma scale score, or with partial score reported|Other coma, without documented Glasgow coma scale score, or with partial score reported +C4269211|T033|AB|R40.2440|ICD10CM|Other coma, without Glasgow, or w/part score, unsp time|Other coma, without Glasgow, or w/part score, unsp time +C4269212|T033|AB|R40.2441|ICD10CM|Other coma, without Glasgow, or w/part score, in the field|Other coma, without Glasgow, or w/part score, in the field +C4269213|T033|AB|R40.2442|ICD10CM|Other coma, without documented Glasgow, or w/part score, EMR|Other coma, without documented Glasgow, or w/part score, EMR +C4269214|T033|AB|R40.2443|ICD10CM|Other coma, without Glasgow, or w/part score, admit|Other coma, without Glasgow, or w/part score, admit +C4269215|T033|AB|R40.2444|ICD10CM|Other coma, without Glasgow, or w/part score, 24+hrs|Other coma, without Glasgow, or w/part score, 24+hrs +C0242670|T047|PT|R40.3|ICD10CM|Persistent vegetative state|Persistent vegetative state +C0242670|T047|AB|R40.3|ICD10CM|Persistent vegetative state|Persistent vegetative state +C0221539|T184|PT|R40.4|ICD10CM|Transient alteration of awareness|Transient alteration of awareness +C0221539|T184|AB|R40.4|ICD10CM|Transient alteration of awareness|Transient alteration of awareness +C0495688|T184|AB|R41|ICD10CM|Oth symptoms and signs w cognitive functions and awareness|Oth symptoms and signs w cognitive functions and awareness +C0495688|T184|HT|R41|ICD10CM|Other symptoms and signs involving cognitive functions and awareness|Other symptoms and signs involving cognitive functions and awareness +C0495688|T184|HT|R41|ICD10|Other symptoms and signs involving cognitive functions and awareness|Other symptoms and signs involving cognitive functions and awareness +C0009676|T048|ET|R41.0|ICD10CM|Confusion NOS|Confusion NOS +C0011206|T048|ET|R41.0|ICD10CM|Delirium NOS|Delirium NOS +C0233407|T184|PT|R41.0|ICD10|Disorientation, unspecified|Disorientation, unspecified +C0233407|T184|PT|R41.0|ICD10CM|Disorientation, unspecified|Disorientation, unspecified +C0233407|T184|AB|R41.0|ICD10CM|Disorientation, unspecified|Disorientation, unspecified +C0233795|T048|PT|R41.1|ICD10CM|Anterograde amnesia|Anterograde amnesia +C0233795|T048|AB|R41.1|ICD10CM|Anterograde amnesia|Anterograde amnesia +C0233795|T048|PT|R41.1|ICD10|Anterograde amnesia|Anterograde amnesia +C0002624|T048|PT|R41.2|ICD10|Retrograde amnesia|Retrograde amnesia +C0002624|T048|PT|R41.2|ICD10CM|Retrograde amnesia|Retrograde amnesia +C0002624|T048|AB|R41.2|ICD10CM|Retrograde amnesia|Retrograde amnesia +C0002622|T048|ET|R41.3|ICD10CM|Amnesia NOS|Amnesia NOS +C0002622|T048|ET|R41.3|ICD10CM|Memory loss NOS|Memory loss NOS +C0478135|T184|PT|R41.3|ICD10|Other amnesia|Other amnesia +C0478135|T184|PT|R41.3|ICD10CM|Other amnesia|Other amnesia +C0478135|T184|AB|R41.3|ICD10CM|Other amnesia|Other amnesia +C0840927|T047|ET|R41.4|ICD10CM|Asomatognosia|Asomatognosia +C0866954|T047|ET|R41.4|ICD10CM|Hemi-akinesia|Hemi-akinesia +C0422887|T033|ET|R41.4|ICD10CM|Hemi-inattention|Hemi-inattention +C0751421|T048|ET|R41.4|ICD10CM|Hemispatial neglect|Hemispatial neglect +C0576479|T033|ET|R41.4|ICD10CM|Left-sided neglect|Left-sided neglect +C0840927|T047|PT|R41.4|ICD10CM|Neurologic neglect syndrome|Neurologic neglect syndrome +C0840927|T047|AB|R41.4|ICD10CM|Neurologic neglect syndrome|Neurologic neglect syndrome +C0751419|T048|ET|R41.4|ICD10CM|Sensory neglect|Sensory neglect +C0866957|T184|ET|R41.4|ICD10CM|Visuospatial neglect|Visuospatial neglect +C0495688|T184|AB|R41.8|ICD10CM|Oth symptoms and signs w cognitive functions and awareness|Oth symptoms and signs w cognitive functions and awareness +C0478136|T184|PT|R41.8|ICD10|Other and unspecified symptoms and signs involving cognitive functions and awareness|Other and unspecified symptoms and signs involving cognitive functions and awareness +C0495688|T184|HT|R41.8|ICD10CM|Other symptoms and signs involving cognitive functions and awareness|Other symptoms and signs involving cognitive functions and awareness +C0236848|T048|PT|R41.81|ICD10CM|Age-related cognitive decline|Age-related cognitive decline +C0236848|T048|AB|R41.81|ICD10CM|Age-related cognitive decline|Age-related cognitive decline +C0231337|T033|ET|R41.81|ICD10CM|Senility NOS|Senility NOS +C2830440|T184|AB|R41.82|ICD10CM|Altered mental status, unspecified|Altered mental status, unspecified +C2830440|T184|PT|R41.82|ICD10CM|Altered mental status, unspecified|Altered mental status, unspecified +C0856054|T048|ET|R41.82|ICD10CM|Change in mental status NOS|Change in mental status NOS +C0006009|T048|PT|R41.83|ICD10CM|Borderline intellectual functioning|Borderline intellectual functioning +C0006009|T048|AB|R41.83|ICD10CM|Borderline intellectual functioning|Borderline intellectual functioning +C2830441|T048|ET|R41.83|ICD10CM|IQ level 71 to 84|IQ level 71 to 84 +C2977672|T033|AB|R41.84|ICD10CM|Other specified cognitive deficit|Other specified cognitive deficit +C2977672|T033|HT|R41.84|ICD10CM|Other specified cognitive deficit|Other specified cognitive deficit +C2977673|T184|AB|R41.840|ICD10CM|Attention and concentration deficit|Attention and concentration deficit +C2977673|T184|PT|R41.840|ICD10CM|Attention and concentration deficit|Attention and concentration deficit +C2921137|T184|AB|R41.841|ICD10CM|Cognitive communication deficit|Cognitive communication deficit +C2921137|T184|PT|R41.841|ICD10CM|Cognitive communication deficit|Cognitive communication deficit +C2921138|T184|PT|R41.842|ICD10CM|Visuospatial deficit|Visuospatial deficit +C2921138|T184|AB|R41.842|ICD10CM|Visuospatial deficit|Visuospatial deficit +C2921139|T033|AB|R41.843|ICD10CM|Psychomotor deficit|Psychomotor deficit +C2921139|T033|PT|R41.843|ICD10CM|Psychomotor deficit|Psychomotor deficit +C2921140|T184|AB|R41.844|ICD10CM|Frontal lobe and executive function deficit|Frontal lobe and executive function deficit +C2921140|T184|PT|R41.844|ICD10CM|Frontal lobe and executive function deficit|Frontal lobe and executive function deficit +C0234507|T047|ET|R41.89|ICD10CM|Anosognosia|Anosognosia +C0495688|T184|AB|R41.89|ICD10CM|Oth symptoms and signs w cognitive functions and awareness|Oth symptoms and signs w cognitive functions and awareness +C0495688|T184|PT|R41.89|ICD10CM|Other symptoms and signs involving cognitive functions and awareness|Other symptoms and signs involving cognitive functions and awareness +C2830442|T184|AB|R41.9|ICD10CM|Unsp symptoms and signs w cognitive functions and awareness|Unsp symptoms and signs w cognitive functions and awareness +C4237473|T048|ET|R41.9|ICD10CM|Unspecified neurocognitive disorder|Unspecified neurocognitive disorder +C2830442|T184|PT|R41.9|ICD10CM|Unspecified symptoms and signs involving cognitive functions and awareness|Unspecified symptoms and signs involving cognitive functions and awareness +C0476206|T184|PT|R42|ICD10CM|Dizziness and giddiness|Dizziness and giddiness +C0476206|T184|AB|R42|ICD10CM|Dizziness and giddiness|Dizziness and giddiness +C0476206|T184|PT|R42|ICD10|Dizziness and giddiness|Dizziness and giddiness +C0220870|T184|ET|R42|ICD10CM|Light-headedness|Light-headedness +C0042571|T184|ET|R42|ICD10CM|Vertigo NOS|Vertigo NOS +C0495689|T033|HT|R43|ICD10CM|Disturbances of smell and taste|Disturbances of smell and taste +C0495689|T033|AB|R43|ICD10CM|Disturbances of smell and taste|Disturbances of smell and taste +C0495689|T033|HT|R43|ICD10|Disturbances of smell and taste|Disturbances of smell and taste +C0003126|T033|PT|R43.0|ICD10CM|Anosmia|Anosmia +C0003126|T033|AB|R43.0|ICD10CM|Anosmia|Anosmia +C0003126|T033|PT|R43.0|ICD10|Anosmia|Anosmia +C1510410|T033|PT|R43.1|ICD10|Parosmia|Parosmia +C1510410|T033|PT|R43.1|ICD10CM|Parosmia|Parosmia +C1510410|T033|AB|R43.1|ICD10CM|Parosmia|Parosmia +C0013378|T033|PT|R43.2|ICD10CM|Parageusia|Parageusia +C0013378|T033|AB|R43.2|ICD10CM|Parageusia|Parageusia +C0013378|T033|PT|R43.2|ICD10|Parageusia|Parageusia +C2830443|T184|ET|R43.8|ICD10CM|Mixed disturbance of smell and taste|Mixed disturbance of smell and taste +C0478137|T184|PT|R43.8|ICD10|Other and unspecified disturbances of smell and taste|Other and unspecified disturbances of smell and taste +C2830444|T033|AB|R43.8|ICD10CM|Other disturbances of smell and taste|Other disturbances of smell and taste +C2830444|T033|PT|R43.8|ICD10CM|Other disturbances of smell and taste|Other disturbances of smell and taste +C0495689|T033|AB|R43.9|ICD10CM|Unspecified disturbances of smell and taste|Unspecified disturbances of smell and taste +C0495689|T033|PT|R43.9|ICD10CM|Unspecified disturbances of smell and taste|Unspecified disturbances of smell and taste +C0495690|T184|AB|R44|ICD10CM|Oth symptoms and signs w general sensations and perceptions|Oth symptoms and signs w general sensations and perceptions +C0495690|T184|HT|R44|ICD10CM|Other symptoms and signs involving general sensations and perceptions|Other symptoms and signs involving general sensations and perceptions +C0495690|T184|HT|R44|ICD10|Other symptoms and signs involving general sensations and perceptions|Other symptoms and signs involving general sensations and perceptions +C0233762|T184|PT|R44.0|ICD10|Auditory hallucinations|Auditory hallucinations +C0233762|T184|PT|R44.0|ICD10CM|Auditory hallucinations|Auditory hallucinations +C0233762|T184|AB|R44.0|ICD10CM|Auditory hallucinations|Auditory hallucinations +C0233763|T184|PT|R44.1|ICD10CM|Visual hallucinations|Visual hallucinations +C0233763|T184|AB|R44.1|ICD10CM|Visual hallucinations|Visual hallucinations +C0233763|T184|PT|R44.1|ICD10|Visual hallucinations|Visual hallucinations +C0478138|T184|PT|R44.2|ICD10|Other hallucinations|Other hallucinations +C0478138|T184|PT|R44.2|ICD10CM|Other hallucinations|Other hallucinations +C0478138|T184|AB|R44.2|ICD10CM|Other hallucinations|Other hallucinations +C0018524|T048|PT|R44.3|ICD10|Hallucinations, unspecified|Hallucinations, unspecified +C0018524|T048|PT|R44.3|ICD10CM|Hallucinations, unspecified|Hallucinations, unspecified +C0018524|T048|AB|R44.3|ICD10CM|Hallucinations, unspecified|Hallucinations, unspecified +C0495690|T184|AB|R44.8|ICD10CM|Oth symptoms and signs w general sensations and perceptions|Oth symptoms and signs w general sensations and perceptions +C0478139|T184|PT|R44.8|ICD10|Other and unspecified symptoms and signs involving general sensations and perceptions|Other and unspecified symptoms and signs involving general sensations and perceptions +C0495690|T184|PT|R44.8|ICD10CM|Other symptoms and signs involving general sensations and perceptions|Other symptoms and signs involving general sensations and perceptions +C2830445|T184|AB|R44.9|ICD10CM|Unsp symptoms and signs w general sensations and perceptions|Unsp symptoms and signs w general sensations and perceptions +C2830445|T184|PT|R44.9|ICD10CM|Unspecified symptoms and signs involving general sensations and perceptions|Unspecified symptoms and signs involving general sensations and perceptions +C0495691|T184|AB|R45|ICD10CM|Symptoms and signs involving emotional state|Symptoms and signs involving emotional state +C0495691|T184|HT|R45|ICD10CM|Symptoms and signs involving emotional state|Symptoms and signs involving emotional state +C0495691|T184|HT|R45|ICD10|Symptoms and signs involving emotional state|Symptoms and signs involving emotional state +C1827478|T033|ET|R45.0|ICD10CM|Nervous tension|Nervous tension +C0027769|T184|PT|R45.0|ICD10|Nervousness|Nervousness +C0027769|T184|PT|R45.0|ICD10CM|Nervousness|Nervousness +C0027769|T184|AB|R45.0|ICD10CM|Nervousness|Nervousness +C0476482|T184|PT|R45.1|ICD10|Restlessness and agitation|Restlessness and agitation +C0476482|T184|PT|R45.1|ICD10CM|Restlessness and agitation|Restlessness and agitation +C0476482|T184|AB|R45.1|ICD10CM|Restlessness and agitation|Restlessness and agitation +C0476478|T184|PT|R45.3|ICD10CM|Demoralization and apathy|Demoralization and apathy +C0476478|T184|AB|R45.3|ICD10CM|Demoralization and apathy|Demoralization and apathy +C0476478|T184|PT|R45.3|ICD10|Demoralization and apathy|Demoralization and apathy +C0476479|T184|PT|R45.4|ICD10|Irritability and anger|Irritability and anger +C0476479|T184|PT|R45.4|ICD10CM|Irritability and anger|Irritability and anger +C0476479|T184|AB|R45.4|ICD10CM|Irritability and anger|Irritability and anger +C0476480|T048|PT|R45.6|ICD10|Physical violence|Physical violence +C0424323|T033|PT|R45.6|ICD10CM|Violent behavior|Violent behavior +C0424323|T033|AB|R45.6|ICD10CM|Violent behavior|Violent behavior +C0478142|T184|PT|R45.7|ICD10CM|State of emotional shock and stress, unspecified|State of emotional shock and stress, unspecified +C0478142|T184|AB|R45.7|ICD10CM|State of emotional shock and stress, unspecified|State of emotional shock and stress, unspecified +C0478142|T184|PT|R45.7|ICD10|State of emotional shock and stress, unspecified|State of emotional shock and stress, unspecified +C0478140|T184|PT|R45.8|ICD10|Other symptoms and signs involving emotional state|Other symptoms and signs involving emotional state +C0478140|T184|HT|R45.8|ICD10CM|Other symptoms and signs involving emotional state|Other symptoms and signs involving emotional state +C0478140|T184|AB|R45.8|ICD10CM|Other symptoms and signs involving emotional state|Other symptoms and signs involving emotional state +C0679136|T033|PT|R45.81|ICD10CM|Low self-esteem|Low self-esteem +C0679136|T033|AB|R45.81|ICD10CM|Low self-esteem|Low self-esteem +C0233481|T033|AB|R45.82|ICD10CM|Worries|Worries +C0233481|T033|PT|R45.82|ICD10CM|Worries|Worries +C1719639|T033|AB|R45.83|ICD10CM|Excessive crying of child, adolescent or adult|Excessive crying of child, adolescent or adult +C1719639|T033|PT|R45.83|ICD10CM|Excessive crying of child, adolescent or adult|Excessive crying of child, adolescent or adult +C0178417|T048|PT|R45.84|ICD10CM|Anhedonia|Anhedonia +C0178417|T048|AB|R45.84|ICD10CM|Anhedonia|Anhedonia +C2977674|T033|AB|R45.85|ICD10CM|Homicidal and suicidal ideations|Homicidal and suicidal ideations +C2977674|T033|HT|R45.85|ICD10CM|Homicidal and suicidal ideations|Homicidal and suicidal ideations +C0455204|T033|AB|R45.850|ICD10CM|Homicidal ideations|Homicidal ideations +C0455204|T033|PT|R45.850|ICD10CM|Homicidal ideations|Homicidal ideations +C0424000|T033|AB|R45.851|ICD10CM|Suicidal ideations|Suicidal ideations +C0424000|T033|PT|R45.851|ICD10CM|Suicidal ideations|Suicidal ideations +C0085633|T048|PT|R45.86|ICD10CM|Emotional lability|Emotional lability +C0085633|T048|AB|R45.86|ICD10CM|Emotional lability|Emotional lability +C0564567|T048|PT|R45.87|ICD10CM|Impulsiveness|Impulsiveness +C0564567|T048|AB|R45.87|ICD10CM|Impulsiveness|Impulsiveness +C0478140|T184|PT|R45.89|ICD10CM|Other symptoms and signs involving emotional state|Other symptoms and signs involving emotional state +C0478140|T184|AB|R45.89|ICD10CM|Other symptoms and signs involving emotional state|Other symptoms and signs involving emotional state +C0476543|T184|HT|R46|ICD10CM|Symptoms and signs involving appearance and behavior|Symptoms and signs involving appearance and behavior +C0476543|T184|AB|R46|ICD10CM|Symptoms and signs involving appearance and behavior|Symptoms and signs involving appearance and behavior +C0476543|T184|HT|R46|ICD10AE|Symptoms and signs involving appearance and behavior|Symptoms and signs involving appearance and behavior +C0476543|T184|HT|R46|ICD10|Symptoms and signs involving appearance and behaviour|Symptoms and signs involving appearance and behaviour +C0476544|T033|PT|R46.0|ICD10|Very low level of personal hygiene|Very low level of personal hygiene +C0476544|T033|PT|R46.0|ICD10CM|Very low level of personal hygiene|Very low level of personal hygiene +C0476544|T033|AB|R46.0|ICD10CM|Very low level of personal hygiene|Very low level of personal hygiene +C0476545|T033|PT|R46.1|ICD10CM|Bizarre personal appearance|Bizarre personal appearance +C0476545|T033|AB|R46.1|ICD10CM|Bizarre personal appearance|Bizarre personal appearance +C0476545|T033|PT|R46.1|ICD10|Bizarre personal appearance|Bizarre personal appearance +C0476546|T033|PT|R46.2|ICD10CM|Strange and inexplicable behavior|Strange and inexplicable behavior +C0476546|T033|AB|R46.2|ICD10CM|Strange and inexplicable behavior|Strange and inexplicable behavior +C0476546|T033|PT|R46.2|ICD10AE|Strange and inexplicable behavior|Strange and inexplicable behavior +C0476546|T033|PT|R46.2|ICD10|Strange and inexplicable behaviour|Strange and inexplicable behaviour +C1536696|T033|PT|R46.3|ICD10|Overactivity|Overactivity +C1536696|T033|PT|R46.3|ICD10CM|Overactivity|Overactivity +C1536696|T033|AB|R46.3|ICD10CM|Overactivity|Overactivity +C0478662|T184|PT|R46.4|ICD10|Slowness and poor responsiveness|Slowness and poor responsiveness +C0478662|T184|PT|R46.4|ICD10CM|Slowness and poor responsiveness|Slowness and poor responsiveness +C0478662|T184|AB|R46.4|ICD10CM|Slowness and poor responsiveness|Slowness and poor responsiveness +C0476547|T033|PT|R46.5|ICD10|Suspiciousness and marked evasiveness|Suspiciousness and marked evasiveness +C0476547|T033|PT|R46.5|ICD10CM|Suspiciousness and marked evasiveness|Suspiciousness and marked evasiveness +C0476547|T033|AB|R46.5|ICD10CM|Suspiciousness and marked evasiveness|Suspiciousness and marked evasiveness +C0476548|T033|PT|R46.6|ICD10CM|Undue concern and preoccupation with stressful events|Undue concern and preoccupation with stressful events +C0476548|T033|AB|R46.6|ICD10CM|Undue concern and preoccupation with stressful events|Undue concern and preoccupation with stressful events +C0476548|T033|PT|R46.6|ICD10|Undue concern and preoccupation with stressful events|Undue concern and preoccupation with stressful events +C0478663|T033|PT|R46.7|ICD10|Verbosity and circumstantial detail obscuring reason for contact|Verbosity and circumstantial detail obscuring reason for contact +C0478663|T033|PT|R46.7|ICD10CM|Verbosity and circumstantial detail obscuring reason for contact|Verbosity and circumstantial detail obscuring reason for contact +C0478663|T033|AB|R46.7|ICD10CM|Verbosity and circumstantial detail obscuring rsn for cntct|Verbosity and circumstantial detail obscuring rsn for cntct +C0478141|T184|HT|R46.8|ICD10CM|Other symptoms and signs involving appearance and behavior|Other symptoms and signs involving appearance and behavior +C0478141|T184|AB|R46.8|ICD10CM|Other symptoms and signs involving appearance and behavior|Other symptoms and signs involving appearance and behavior +C0478141|T184|PT|R46.8|ICD10AE|Other symptoms and signs involving appearance and behavior|Other symptoms and signs involving appearance and behavior +C0478141|T184|PT|R46.8|ICD10|Other symptoms and signs involving appearance and behaviour|Other symptoms and signs involving appearance and behaviour +C0600104|T048|PT|R46.81|ICD10CM|Obsessive-compulsive behavior|Obsessive-compulsive behavior +C0600104|T048|AB|R46.81|ICD10CM|Obsessive-compulsive behavior|Obsessive-compulsive behavior +C0478141|T184|PT|R46.89|ICD10CM|Other symptoms and signs involving appearance and behavior|Other symptoms and signs involving appearance and behavior +C0478141|T184|AB|R46.89|ICD10CM|Other symptoms and signs involving appearance and behavior|Other symptoms and signs involving appearance and behavior +C0869217|T048|HT|R47|ICD10|Speech disturbances, not elsewhere classified|Speech disturbances, not elsewhere classified +C0869217|T048|AB|R47|ICD10CM|Speech disturbances, not elsewhere classified|Speech disturbances, not elsewhere classified +C0869217|T048|HT|R47|ICD10CM|Speech disturbances, not elsewhere classified|Speech disturbances, not elsewhere classified +C0478143|T184|HT|R47-R49|ICD10CM|Symptoms and signs involving speech and voice (R47-R49)|Symptoms and signs involving speech and voice (R47-R49) +C0478143|T184|HT|R47-R49.9|ICD10|Symptoms and signs involving speech and voice|Symptoms and signs involving speech and voice +C1313975|T048|PT|R47.0|ICD10|Dysphasia and aphasia|Dysphasia and aphasia +C1313975|T048|HT|R47.0|ICD10CM|Dysphasia and aphasia|Dysphasia and aphasia +C1313975|T048|AB|R47.0|ICD10CM|Dysphasia and aphasia|Dysphasia and aphasia +C0003537|T048|PT|R47.01|ICD10CM|Aphasia|Aphasia +C0003537|T048|AB|R47.01|ICD10CM|Aphasia|Aphasia +C0973461|T047|PT|R47.02|ICD10CM|Dysphasia|Dysphasia +C0973461|T047|AB|R47.02|ICD10CM|Dysphasia|Dysphasia +C0495694|T184|PT|R47.1|ICD10|Dysarthria and anarthria|Dysarthria and anarthria +C0495694|T184|PT|R47.1|ICD10CM|Dysarthria and anarthria|Dysarthria and anarthria +C0495694|T184|AB|R47.1|ICD10CM|Dysarthria and anarthria|Dysarthria and anarthria +C0478144|T184|PT|R47.8|ICD10|Other and unspecified speech disturbances|Other and unspecified speech disturbances +C2712367|T184|HT|R47.8|ICD10CM|Other speech disturbances|Other speech disturbances +C2712367|T184|AB|R47.8|ICD10CM|Other speech disturbances|Other speech disturbances +C0234518|T033|PT|R47.81|ICD10CM|Slurred speech|Slurred speech +C0234518|T033|AB|R47.81|ICD10CM|Slurred speech|Slurred speech +C2921127|T047|PT|R47.82|ICD10CM|Fluency disorder in conditions classified elsewhere|Fluency disorder in conditions classified elsewhere +C2921127|T047|AB|R47.82|ICD10CM|Fluency disorder in conditions classified elsewhere|Fluency disorder in conditions classified elsewhere +C2921128|T047|ET|R47.82|ICD10CM|Stuttering in conditions classified elsewhere|Stuttering in conditions classified elsewhere +C2712367|T184|PT|R47.89|ICD10CM|Other speech disturbances|Other speech disturbances +C2712367|T184|AB|R47.89|ICD10CM|Other speech disturbances|Other speech disturbances +C0233715|T033|AB|R47.9|ICD10CM|Unspecified speech disturbances|Unspecified speech disturbances +C0233715|T033|PT|R47.9|ICD10CM|Unspecified speech disturbances|Unspecified speech disturbances +C0495695|T184|AB|R48|ICD10CM|Dyslexia and oth symbolic dysfunctions, NEC|Dyslexia and oth symbolic dysfunctions, NEC +C0495695|T184|HT|R48|ICD10CM|Dyslexia and other symbolic dysfunctions, not elsewhere classified|Dyslexia and other symbolic dysfunctions, not elsewhere classified +C0495695|T184|HT|R48|ICD10|Dyslexia and other symbolic dysfunctions, not elsewhere classified|Dyslexia and other symbolic dysfunctions, not elsewhere classified +C0002019|T048|PT|R48.0|ICD10CM|Dyslexia and alexia|Dyslexia and alexia +C0002019|T048|AB|R48.0|ICD10CM|Dyslexia and alexia|Dyslexia and alexia +C0002019|T048|PT|R48.0|ICD10|Dyslexia and alexia|Dyslexia and alexia +C0001816|T048|PT|R48.1|ICD10|Agnosia|Agnosia +C0001816|T048|PT|R48.1|ICD10CM|Agnosia|Agnosia +C0001816|T048|AB|R48.1|ICD10CM|Agnosia|Agnosia +C2830446|T047|ET|R48.1|ICD10CM|Astereognosia (astereognosis)|Astereognosia (astereognosis) +C0234511|T048|ET|R48.1|ICD10CM|Autotopagnosia|Autotopagnosia +C0003635|T048|PT|R48.2|ICD10CM|Apraxia|Apraxia +C0003635|T048|AB|R48.2|ICD10CM|Apraxia|Apraxia +C0003635|T048|PT|R48.2|ICD10|Apraxia|Apraxia +C0234512|T048|ET|R48.3|ICD10CM|Prosopagnosia|Prosopagnosia +C3264579|T033|ET|R48.3|ICD10CM|Simultanagnosia (asimultagnosia)|Simultanagnosia (asimultagnosia) +C0234502|T184|PT|R48.3|ICD10CM|Visual agnosia|Visual agnosia +C0234502|T184|AB|R48.3|ICD10CM|Visual agnosia|Visual agnosia +C0869474|T048|ET|R48.8|ICD10CM|Acalculia|Acalculia +C0001825|T048|ET|R48.8|ICD10CM|Agraphia|Agraphia +C0478145|T184|PT|R48.8|ICD10|Other and unspecified symbolic dysfunctions|Other and unspecified symbolic dysfunctions +C0478145|T184|AB|R48.8|ICD10CM|Other symbolic dysfunctions|Other symbolic dysfunctions +C0478145|T184|PT|R48.8|ICD10CM|Other symbolic dysfunctions|Other symbolic dysfunctions +C0159047|T048|AB|R48.9|ICD10CM|Unspecified symbolic dysfunctions|Unspecified symbolic dysfunctions +C0159047|T048|PT|R48.9|ICD10CM|Unspecified symbolic dysfunctions|Unspecified symbolic dysfunctions +C2712707|T046|AB|R49|ICD10CM|Voice and resonance disorders|Voice and resonance disorders +C2712707|T046|HT|R49|ICD10CM|Voice and resonance disorders|Voice and resonance disorders +C1527340|T033|HT|R49|ICD10|Voice disturbances|Voice disturbances +C1527344|T048|PT|R49.0|ICD10|Dysphonia|Dysphonia +C1527344|T048|PT|R49.0|ICD10CM|Dysphonia|Dysphonia +C1527344|T048|AB|R49.0|ICD10CM|Dysphonia|Dysphonia +C0019825|T184|ET|R49.0|ICD10CM|Hoarseness|Hoarseness +C0003564|T184|PT|R49.1|ICD10CM|Aphonia|Aphonia +C0003564|T184|AB|R49.1|ICD10CM|Aphonia|Aphonia +C0003564|T184|PT|R49.1|ICD10|Aphonia|Aphonia +C0003564|T184|ET|R49.1|ICD10CM|Loss of voice|Loss of voice +C0495696|T184|PT|R49.2|ICD10|Hypernasality and hyponasality|Hypernasality and hyponasality +C0495696|T184|HT|R49.2|ICD10CM|Hypernasality and hyponasality|Hypernasality and hyponasality +C0495696|T184|AB|R49.2|ICD10CM|Hypernasality and hyponasality|Hypernasality and hyponasality +C0264614|T047|PT|R49.21|ICD10CM|Hypernasality|Hypernasality +C0264614|T047|AB|R49.21|ICD10CM|Hypernasality|Hypernasality +C0264618|T047|PT|R49.22|ICD10CM|Hyponasality|Hyponasality +C0264618|T047|AB|R49.22|ICD10CM|Hyponasality|Hyponasality +C0478146|T184|PT|R49.8|ICD10|Other and unspecified voice disturbances|Other and unspecified voice disturbances +C2712366|T184|AB|R49.8|ICD10CM|Other voice and resonance disorders|Other voice and resonance disorders +C2712366|T184|PT|R49.8|ICD10CM|Other voice and resonance disorders|Other voice and resonance disorders +C0518179|T184|ET|R49.9|ICD10CM|Change in voice NOS|Change in voice NOS +C0860616|T048|ET|R49.9|ICD10CM|Resonance disorder NOS|Resonance disorder NOS +C2712365|T046|AB|R49.9|ICD10CM|Unspecified voice and resonance disorder|Unspecified voice and resonance disorder +C2712365|T046|PT|R49.9|ICD10CM|Unspecified voice and resonance disorder|Unspecified voice and resonance disorder +C2830447|T184|AB|R50|ICD10CM|Fever of other and unknown origin|Fever of other and unknown origin +C2830447|T184|HT|R50|ICD10CM|Fever of other and unknown origin|Fever of other and unknown origin +C0015970|T184|HT|R50|ICD10|Fever of unknown origin|Fever of unknown origin +C0478147|T184|HT|R50-R69|ICD10CM|General symptoms and signs (R50-R69)|General symptoms and signs (R50-R69) +C0478147|T184|HT|R50-R69.9|ICD10|General symptoms and signs|General symptoms and signs +C0085594|T184|PT|R50.0|ICD10|Fever with chills|Fever with chills +C0476474|T046|PT|R50.1|ICD10|Persistent fever|Persistent fever +C2830448|T046|AB|R50.2|ICD10CM|Drug induced fever|Drug induced fever +C2830448|T046|PT|R50.2|ICD10CM|Drug induced fever|Drug induced fever +C2830449|T184|AB|R50.8|ICD10CM|Other specified fever|Other specified fever +C2830449|T184|HT|R50.8|ICD10CM|Other specified fever|Other specified fever +C2349670|T047|AB|R50.81|ICD10CM|Fever presenting with conditions classified elsewhere|Fever presenting with conditions classified elsewhere +C2349670|T047|PT|R50.81|ICD10CM|Fever presenting with conditions classified elsewhere|Fever presenting with conditions classified elsewhere +C2349671|T046|PT|R50.82|ICD10CM|Postprocedural fever|Postprocedural fever +C2349671|T046|AB|R50.82|ICD10CM|Postprocedural fever|Postprocedural fever +C2349673|T046|ET|R50.83|ICD10CM|Postimmunization fever|Postimmunization fever +C2349672|T046|PT|R50.83|ICD10CM|Postvaccination fever|Postvaccination fever +C2349672|T046|AB|R50.83|ICD10CM|Postvaccination fever|Postvaccination fever +C1739123|T046|PT|R50.84|ICD10CM|Febrile nonhemolytic transfusion reaction|Febrile nonhemolytic transfusion reaction +C1739123|T046|AB|R50.84|ICD10CM|Febrile nonhemolytic transfusion reaction|Febrile nonhemolytic transfusion reaction +C1739123|T046|ET|R50.84|ICD10CM|FNHTR|FNHTR +C2921126|T046|ET|R50.84|ICD10CM|Posttransfusion fever|Posttransfusion fever +C0015967|T184|ET|R50.9|ICD10CM|Fever NOS|Fever NOS +C0015970|T184|ET|R50.9|ICD10CM|Fever of unknown origin [FUO]|Fever of unknown origin [FUO] +C0085594|T184|ET|R50.9|ICD10CM|Fever with chills|Fever with chills +C2830450|T033|ET|R50.9|ICD10CM|Fever with rigors|Fever with rigors +C0015967|T184|PT|R50.9|ICD10CM|Fever, unspecified|Fever, unspecified +C0015967|T184|AB|R50.9|ICD10CM|Fever, unspecified|Fever, unspecified +C0015967|T184|PT|R50.9|ICD10|Fever, unspecified|Fever, unspecified +C0392676|T046|ET|R50.9|ICD10CM|Hyperpyrexia NOS|Hyperpyrexia NOS +C0476474|T046|ET|R50.9|ICD10CM|Persistent fever|Persistent fever +C0015967|T184|ET|R50.9|ICD10CM|Pyrexia NOS|Pyrexia NOS +C0015468|T184|ET|R51|ICD10CM|Facial pain NOS|Facial pain NOS +C0018681|T184|PT|R51|ICD10CM|Headache|Headache +C0018681|T184|AB|R51|ICD10CM|Headache|Headache +C0018681|T184|PT|R51|ICD10|Headache|Headache +C0184567|T184|ET|R52|ICD10CM|Acute pain NOS|Acute pain NOS +C0281856|T184|ET|R52|ICD10CM|Generalized pain NOS|Generalized pain NOS +C0030193|T184|ET|R52|ICD10CM|Pain NOS|Pain NOS +C0995154|T184|HT|R52|ICD10|Pain, not elsewhere classified|Pain, not elsewhere classified +C0030193|T184|PT|R52|ICD10CM|Pain, unspecified|Pain, unspecified +C0030193|T184|AB|R52|ICD10CM|Pain, unspecified|Pain, unspecified +C0184567|T184|PT|R52.0|ICD10|Acute pain|Acute pain +C0476481|T184|PT|R52.1|ICD10|Chronic intractable pain|Chronic intractable pain +C0478148|T184|PT|R52.2|ICD10|Other chronic pain|Other chronic pain +C0030193|T184|PT|R52.9|ICD10|Pain, unspecified|Pain, unspecified +C0024528|T184|PT|R53|ICD10|Malaise and fatigue|Malaise and fatigue +C0024528|T184|HT|R53|ICD10CM|Malaise and fatigue|Malaise and fatigue +C0024528|T184|AB|R53|ICD10CM|Malaise and fatigue|Malaise and fatigue +C2830451|T184|AB|R53.0|ICD10CM|Neoplastic (malignant) related fatigue|Neoplastic (malignant) related fatigue +C2830451|T184|PT|R53.0|ICD10CM|Neoplastic (malignant) related fatigue|Neoplastic (malignant) related fatigue +C0004093|T184|ET|R53.1|ICD10CM|Asthenia NOS|Asthenia NOS +C3714552|T184|PT|R53.1|ICD10CM|Weakness|Weakness +C3714552|T184|AB|R53.1|ICD10CM|Weakness|Weakness +C2349677|T046|ET|R53.2|ICD10CM|Complete immobility due to severe physical disability or frailty|Complete immobility due to severe physical disability or frailty +C3543852|T047|PT|R53.2|ICD10CM|Functional quadriplegia|Functional quadriplegia +C3543852|T047|AB|R53.2|ICD10CM|Functional quadriplegia|Functional quadriplegia +C0695252|T184|HT|R53.8|ICD10CM|Other malaise and fatigue|Other malaise and fatigue +C0695252|T184|AB|R53.8|ICD10CM|Other malaise and fatigue|Other malaise and fatigue +C2830452|T184|ET|R53.81|ICD10CM|Chronic debility|Chronic debility +C3714552|T184|ET|R53.81|ICD10CM|Debility NOS|Debility NOS +C1386058|T184|ET|R53.81|ICD10CM|General physical deterioration|General physical deterioration +C0231218|T184|ET|R53.81|ICD10CM|Malaise NOS|Malaise NOS +C0027804|T048|ET|R53.81|ICD10CM|Nervous debility|Nervous debility +C2830453|T184|AB|R53.81|ICD10CM|Other malaise|Other malaise +C2830453|T184|PT|R53.81|ICD10CM|Other malaise|Other malaise +C0015674|T047|ET|R53.82|ICD10CM|Chronic fatigue syndrome NOS|Chronic fatigue syndrome NOS +C0015674|T047|AB|R53.82|ICD10CM|Chronic fatigue, unspecified|Chronic fatigue, unspecified +C0015674|T047|PT|R53.82|ICD10CM|Chronic fatigue, unspecified|Chronic fatigue, unspecified +C0015672|T184|ET|R53.83|ICD10CM|Fatigue NOS|Fatigue NOS +C0015672|T184|ET|R53.83|ICD10CM|Lack of energy|Lack of energy +C0023380|T184|ET|R53.83|ICD10CM|Lethargy|Lethargy +C2830454|T184|AB|R53.83|ICD10CM|Other fatigue|Other fatigue +C2830454|T184|PT|R53.83|ICD10CM|Other fatigue|Other fatigue +C0015672|T184|ET|R53.83|ICD10CM|Tiredness|Tiredness +C2830455|T184|PT|R54|ICD10CM|Age-related physical debility|Age-related physical debility +C2830455|T184|AB|R54|ICD10CM|Age-related physical debility|Age-related physical debility +C0424594|T033|ET|R54|ICD10CM|Frailty|Frailty +C0231337|T033|ET|R54|ICD10CM|Old age|Old age +C0231337|T033|ET|R54|ICD10CM|Senescence|Senescence +C0231234|T184|ET|R54|ICD10CM|Senile asthenia|Senile asthenia +C0476457|T184|ET|R54|ICD10CM|Senile debility|Senile debility +C0231337|T033|PT|R54|ICD10|Senility|Senility +C0312422|T184|ET|R55|ICD10CM|Blackout|Blackout +C0039070|T184|ET|R55|ICD10CM|Fainting|Fainting +C0039070|T184|PT|R55|ICD10CM|Syncope and collapse|Syncope and collapse +C0039070|T184|AB|R55|ICD10CM|Syncope and collapse|Syncope and collapse +C0039070|T184|PT|R55|ICD10|Syncope and collapse|Syncope and collapse +C0042420|T047|ET|R55|ICD10CM|Vasovagal attack|Vasovagal attack +C0495698|T046|HT|R56|ICD10|Convulsions, not elsewhere classified|Convulsions, not elsewhere classified +C0495698|T046|AB|R56|ICD10CM|Convulsions, not elsewhere classified|Convulsions, not elsewhere classified +C0495698|T046|HT|R56|ICD10CM|Convulsions, not elsewhere classified|Convulsions, not elsewhere classified +C0009952|T047|PT|R56.0|ICD10|Febrile convulsions|Febrile convulsions +C0009952|T047|HT|R56.0|ICD10CM|Febrile convulsions|Febrile convulsions +C0009952|T047|AB|R56.0|ICD10CM|Febrile convulsions|Febrile convulsions +C0009952|T047|ET|R56.00|ICD10CM|Febrile convulsion NOS|Febrile convulsion NOS +C0009952|T047|ET|R56.00|ICD10CM|Febrile seizure NOS|Febrile seizure NOS +C0149886|T047|AB|R56.00|ICD10CM|Simple febrile convulsions|Simple febrile convulsions +C0149886|T047|PT|R56.00|ICD10CM|Simple febrile convulsions|Simple febrile convulsions +C1719636|T047|ET|R56.01|ICD10CM|Atypical febrile seizure|Atypical febrile seizure +C0751057|T047|AB|R56.01|ICD10CM|Complex febrile convulsions|Complex febrile convulsions +C0751057|T047|PT|R56.01|ICD10CM|Complex febrile convulsions|Complex febrile convulsions +C0751057|T047|ET|R56.01|ICD10CM|Complex febrile seizure|Complex febrile seizure +C1719637|T047|ET|R56.01|ICD10CM|Complicated febrile seizure|Complicated febrile seizure +C2921125|T047|AB|R56.1|ICD10CM|Post traumatic seizures|Post traumatic seizures +C2921125|T047|PT|R56.1|ICD10CM|Post traumatic seizures|Post traumatic seizures +C0478149|T033|PT|R56.8|ICD10|Other and unspecified convulsions|Other and unspecified convulsions +C0234972|T047|ET|R56.9|ICD10CM|Convulsion disorder|Convulsion disorder +C4048158|T184|ET|R56.9|ICD10CM|Fit NOS|Fit NOS +C1719638|T046|ET|R56.9|ICD10CM|Recurrent convulsions|Recurrent convulsions +C0751494|T184|ET|R56.9|ICD10CM|Seizure(s) (convulsive) NOS|Seizure(s) (convulsive) NOS +C4048158|T184|AB|R56.9|ICD10CM|Unspecified convulsions|Unspecified convulsions +C4048158|T184|PT|R56.9|ICD10CM|Unspecified convulsions|Unspecified convulsions +C0495699|T046|AB|R57|ICD10CM|Shock, not elsewhere classified|Shock, not elsewhere classified +C0495699|T046|HT|R57|ICD10CM|Shock, not elsewhere classified|Shock, not elsewhere classified +C0495699|T046|HT|R57|ICD10|Shock, not elsewhere classified|Shock, not elsewhere classified +C0036980|T046|PT|R57.0|ICD10CM|Cardiogenic shock|Cardiogenic shock +C0036980|T046|AB|R57.0|ICD10CM|Cardiogenic shock|Cardiogenic shock +C0036980|T046|PT|R57.0|ICD10|Cardiogenic shock|Cardiogenic shock +C0020683|T046|PT|R57.1|ICD10|Hypovolaemic shock|Hypovolaemic shock +C0020683|T046|PT|R57.1|ICD10AE|Hypovolemic shock|Hypovolemic shock +C0020683|T046|PT|R57.1|ICD10CM|Hypovolemic shock|Hypovolemic shock +C0020683|T046|AB|R57.1|ICD10CM|Hypovolemic shock|Hypovolemic shock +C0478150|T184|PT|R57.8|ICD10|Other shock|Other shock +C0478150|T184|PT|R57.8|ICD10CM|Other shock|Other shock +C0478150|T184|AB|R57.8|ICD10CM|Other shock|Other shock +C0036974|T046|ET|R57.9|ICD10CM|Failure of peripheral circulation NOS|Failure of peripheral circulation NOS +C0036974|T046|PT|R57.9|ICD10CM|Shock, unspecified|Shock, unspecified +C0036974|T046|AB|R57.9|ICD10CM|Shock, unspecified|Shock, unspecified +C0036974|T046|PT|R57.9|ICD10|Shock, unspecified|Shock, unspecified +C0869085|T033|PT|R58|ICD10|Haemorrhage, not elsewhere classified|Haemorrhage, not elsewhere classified +C0019080|T046|ET|R58|ICD10CM|Hemorrhage NOS|Hemorrhage NOS +C0869085|T033|PT|R58|ICD10AE|Hemorrhage, not elsewhere classified|Hemorrhage, not elsewhere classified +C0869085|T033|PT|R58|ICD10CM|Hemorrhage, not elsewhere classified|Hemorrhage, not elsewhere classified +C0869085|T033|AB|R58|ICD10CM|Hemorrhage, not elsewhere classified|Hemorrhage, not elsewhere classified +C4282165|T033|HT|R59|ICD10CM|Enlarged lymph nodes|Enlarged lymph nodes +C4282165|T033|AB|R59|ICD10CM|Enlarged lymph nodes|Enlarged lymph nodes +C4282165|T033|HT|R59|ICD10|Enlarged lymph nodes|Enlarged lymph nodes +C4282165|T033|ET|R59|ICD10CM|swollen glands|swollen glands +C0478664|T046|PT|R59.0|ICD10CM|Localized enlarged lymph nodes|Localized enlarged lymph nodes +C0478664|T046|AB|R59.0|ICD10CM|Localized enlarged lymph nodes|Localized enlarged lymph nodes +C0478664|T046|PT|R59.0|ICD10|Localized enlarged lymph nodes|Localized enlarged lymph nodes +C0476486|T047|PT|R59.1|ICD10|Generalized enlarged lymph nodes|Generalized enlarged lymph nodes +C0476486|T047|PT|R59.1|ICD10CM|Generalized enlarged lymph nodes|Generalized enlarged lymph nodes +C0476486|T047|AB|R59.1|ICD10CM|Generalized enlarged lymph nodes|Generalized enlarged lymph nodes +C0497156|T047|ET|R59.1|ICD10CM|Lymphadenopathy NOS|Lymphadenopathy NOS +C4282165|T033|PT|R59.9|ICD10|Enlarged lymph nodes, unspecified|Enlarged lymph nodes, unspecified +C4282165|T033|PT|R59.9|ICD10CM|Enlarged lymph nodes, unspecified|Enlarged lymph nodes, unspecified +C4282165|T033|AB|R59.9|ICD10CM|Enlarged lymph nodes, unspecified|Enlarged lymph nodes, unspecified +C0495700|T046|HT|R60|ICD10AE|Edema, not elsewhere classified|Edema, not elsewhere classified +C0495700|T046|AB|R60|ICD10CM|Edema, not elsewhere classified|Edema, not elsewhere classified +C0495700|T046|HT|R60|ICD10CM|Edema, not elsewhere classified|Edema, not elsewhere classified +C0495700|T046|HT|R60|ICD10|Oedema, not elsewhere classified|Oedema, not elsewhere classified +C0013609|T046|PT|R60.0|ICD10AE|Localized edema|Localized edema +C0013609|T046|PT|R60.0|ICD10CM|Localized edema|Localized edema +C0013609|T046|AB|R60.0|ICD10CM|Localized edema|Localized edema +C0013609|T046|PT|R60.0|ICD10|Localized oedema|Localized oedema +C1850534|T046|PT|R60.1|ICD10AE|Generalized edema|Generalized edema +C1850534|T046|PT|R60.1|ICD10CM|Generalized edema|Generalized edema +C1850534|T046|AB|R60.1|ICD10CM|Generalized edema|Generalized edema +C1850534|T046|PT|R60.1|ICD10|Generalized oedema|Generalized oedema +C0013604|T046|PT|R60.9|ICD10CM|Edema, unspecified|Edema, unspecified +C0013604|T046|AB|R60.9|ICD10CM|Edema, unspecified|Edema, unspecified +C0013604|T046|PT|R60.9|ICD10AE|Edema, unspecified|Edema, unspecified +C0268000|T046|ET|R60.9|ICD10CM|Fluid retention NOS|Fluid retention NOS +C0013604|T046|PT|R60.9|ICD10|Oedema, unspecified|Oedema, unspecified +C0700590|T033|ET|R61|ICD10CM|Excessive sweating|Excessive sweating +C0476476|T033|PT|R61|ICD10CM|Generalized hyperhidrosis|Generalized hyperhidrosis +C0476476|T033|AB|R61|ICD10CM|Generalized hyperhidrosis|Generalized hyperhidrosis +C0020458|T033|HT|R61|ICD10|Hyperhidrosis|Hyperhidrosis +C0028081|T184|ET|R61|ICD10CM|Night sweats|Night sweats +C1455874|T046|ET|R61|ICD10CM|Secondary hyperhidrosis|Secondary hyperhidrosis +C0476475|T033|PT|R61.0|ICD10|Localized hyperhidrosis|Localized hyperhidrosis +C0476476|T033|PT|R61.1|ICD10|Generalized hyperhidrosis|Generalized hyperhidrosis +C0020458|T033|PT|R61.9|ICD10|Hyperhidrosis, unspecified|Hyperhidrosis, unspecified +C2830456|T184|AB|R62|ICD10CM|Lack of expected normal physiol dev in childhood and adults|Lack of expected normal physiol dev in childhood and adults +C0022900|T033|HT|R62|ICD10|Lack of expected normal physiological development|Lack of expected normal physiological development +C2830456|T184|HT|R62|ICD10CM|Lack of expected normal physiological development in childhood and adults|Lack of expected normal physiological development in childhood and adults +C2830457|T033|ET|R62.0|ICD10CM|Delayed attainment of expected physiological developmental stage|Delayed attainment of expected physiological developmental stage +C0476241|T033|PT|R62.0|ICD10|Delayed milestone|Delayed milestone +C2830458|T184|AB|R62.0|ICD10CM|Delayed milestone in childhood|Delayed milestone in childhood +C2830458|T184|PT|R62.0|ICD10CM|Delayed milestone in childhood|Delayed milestone in childhood +C0878785|T033|ET|R62.0|ICD10CM|Late talker|Late talker +C0878786|T033|ET|R62.0|ICD10CM|Late walker|Late walker +C2830459|T184|AB|R62.5|ICD10CM|Oth and unsp lack of expected normal physiol dev in chldhd|Oth and unsp lack of expected normal physiol dev in chldhd +C2830459|T184|HT|R62.5|ICD10CM|Other and unspecified lack of expected normal physiological development in childhood|Other and unspecified lack of expected normal physiological development in childhood +C0175948|T047|ET|R62.50|ICD10CM|Infantilism NOS|Infantilism NOS +C0878753|T184|AB|R62.50|ICD10CM|Unsp lack of expected normal physiol dev in childhood|Unsp lack of expected normal physiol dev in childhood +C0878753|T184|PT|R62.50|ICD10CM|Unspecified lack of expected normal physiological development in childhood|Unspecified lack of expected normal physiological development in childhood +C0231246|T033|ET|R62.51|ICD10CM|Failure to gain weight|Failure to gain weight +C3887638|T047|AB|R62.51|ICD10CM|Failure to thrive (child)|Failure to thrive (child) +C3887638|T047|PT|R62.51|ICD10CM|Failure to thrive (child)|Failure to thrive (child) +C1442754|T033|ET|R62.52|ICD10CM|Lack of growth|Lack of growth +C0476243|T033|ET|R62.52|ICD10CM|Physical retardation|Physical retardation +C2830460|T184|PT|R62.52|ICD10CM|Short stature (child)|Short stature (child) +C2830460|T184|AB|R62.52|ICD10CM|Short stature (child)|Short stature (child) +C0349588|T033|ET|R62.52|ICD10CM|Short stature NOS|Short stature NOS +C2830461|T184|AB|R62.59|ICD10CM|Oth lack of expected normal physiol development in childhood|Oth lack of expected normal physiol development in childhood +C2830461|T184|PT|R62.59|ICD10CM|Other lack of expected normal physiological development in childhood|Other lack of expected normal physiological development in childhood +C1998978|T047|PT|R62.7|ICD10CM|Adult failure to thrive|Adult failure to thrive +C1998978|T047|AB|R62.7|ICD10CM|Adult failure to thrive|Adult failure to thrive +C0478152|T033|PT|R62.8|ICD10|Other lack of expected normal physiological development|Other lack of expected normal physiological development +C0022900|T033|PT|R62.9|ICD10|Lack of expected normal physiological development, unspecified|Lack of expected normal physiological development, unspecified +C3646024|T184|HT|R63|ICD10|Symptoms and signs concerning food and fluid intake|Symptoms and signs concerning food and fluid intake +C3646024|T184|HT|R63|ICD10CM|Symptoms and signs concerning food and fluid intake|Symptoms and signs concerning food and fluid intake +C3646024|T184|AB|R63|ICD10CM|Symptoms and signs concerning food and fluid intake|Symptoms and signs concerning food and fluid intake +C0003123|T047|PT|R63.0|ICD10CM|Anorexia|Anorexia +C0003123|T047|AB|R63.0|ICD10CM|Anorexia|Anorexia +C0003123|T047|PT|R63.0|ICD10|Anorexia|Anorexia +C0003123|T047|ET|R63.0|ICD10CM|Loss of appetite|Loss of appetite +C0085602|T184|ET|R63.1|ICD10CM|Excessive thirst|Excessive thirst +C0085602|T184|PT|R63.1|ICD10CM|Polydipsia|Polydipsia +C0085602|T184|AB|R63.1|ICD10CM|Polydipsia|Polydipsia +C0085602|T184|PT|R63.1|ICD10|Polydipsia|Polydipsia +C0020505|T033|ET|R63.2|ICD10CM|Excessive eating|Excessive eating +C0020505|T033|ET|R63.2|ICD10CM|Hyperalimentation NOS|Hyperalimentation NOS +C0020505|T033|PT|R63.2|ICD10CM|Polyphagia|Polyphagia +C0020505|T033|AB|R63.2|ICD10CM|Polyphagia|Polyphagia +C0020505|T033|PT|R63.2|ICD10|Polyphagia|Polyphagia +C0232466|T033|PT|R63.3|ICD10CM|Feeding difficulties|Feeding difficulties +C0232466|T033|AB|R63.3|ICD10CM|Feeding difficulties|Feeding difficulties +C0699815|T033|PT|R63.3|ICD10|Feeding difficulties and mismanagement|Feeding difficulties and mismanagement +C2830462|T033|ET|R63.3|ICD10CM|Feeding problem (elderly) (infant) NOS|Feeding problem (elderly) (infant) NOS +C2243038|T033|ET|R63.3|ICD10CM|Picky eater|Picky eater +C0936227|T033|PT|R63.4|ICD10CM|Abnormal weight loss|Abnormal weight loss +C0936227|T033|AB|R63.4|ICD10CM|Abnormal weight loss|Abnormal weight loss +C0936227|T033|PT|R63.4|ICD10|Abnormal weight loss|Abnormal weight loss +C0332544|T184|PT|R63.5|ICD10CM|Abnormal weight gain|Abnormal weight gain +C0332544|T184|AB|R63.5|ICD10CM|Abnormal weight gain|Abnormal weight gain +C0332544|T184|PT|R63.5|ICD10|Abnormal weight gain|Abnormal weight gain +C0041667|T033|PT|R63.6|ICD10CM|Underweight|Underweight +C0041667|T033|AB|R63.6|ICD10CM|Underweight|Underweight +C0478153|T184|PT|R63.8|ICD10CM|Other symptoms and signs concerning food and fluid intake|Other symptoms and signs concerning food and fluid intake +C0478153|T184|AB|R63.8|ICD10CM|Other symptoms and signs concerning food and fluid intake|Other symptoms and signs concerning food and fluid intake +C0478153|T184|PT|R63.8|ICD10|Other symptoms and signs concerning food and fluid intake|Other symptoms and signs concerning food and fluid intake +C0006625|T184|PT|R64|ICD10CM|Cachexia|Cachexia +C0006625|T184|AB|R64|ICD10CM|Cachexia|Cachexia +C0006625|T184|PT|R64|ICD10|Cachexia|Cachexia +C0043046|T047|ET|R64|ICD10CM|Wasting syndrome|Wasting syndrome +C2830463|T184|AB|R65|ICD10CM|Symp and signs specifically assoc w sys inflam and infct|Symp and signs specifically assoc w sys inflam and infct +C2830463|T184|HT|R65|ICD10CM|Symptoms and signs specifically associated with systemic inflammation and infection|Symptoms and signs specifically associated with systemic inflammation and infection +C2830464|T184|AB|R65.1|ICD10CM|SIRS of non-infectious origin|SIRS of non-infectious origin +C2830464|T184|HT|R65.1|ICD10CM|Systemic inflammatory response syndrome (SIRS) of non-infectious origin|Systemic inflammatory response syndrome (SIRS) of non-infectious origin +C2830465|T184|AB|R65.10|ICD10CM|SIRS of non-infectious origin w/o acute organ dysfunction|SIRS of non-infectious origin w/o acute organ dysfunction +C0242966|T047|ET|R65.10|ICD10CM|Systemic inflammatory response syndrome (SIRS) NOS|Systemic inflammatory response syndrome (SIRS) NOS +C2830466|T184|AB|R65.11|ICD10CM|SIRS of non-infectious origin w acute organ dysfunction|SIRS of non-infectious origin w acute organ dysfunction +C2830466|T184|PT|R65.11|ICD10CM|Systemic inflammatory response syndrome (SIRS) of non-infectious origin with acute organ dysfunction|Systemic inflammatory response syndrome (SIRS) of non-infectious origin with acute organ dysfunction +C2830467|T047|ET|R65.2|ICD10CM|Infection with associated acute organ dysfunction|Infection with associated acute organ dysfunction +C1719673|T047|ET|R65.2|ICD10CM|Sepsis with acute organ dysfunction|Sepsis with acute organ dysfunction +C2830468|T046|ET|R65.2|ICD10CM|Sepsis with multiple organ dysfunction|Sepsis with multiple organ dysfunction +C1719672|T047|HT|R65.2|ICD10CM|Severe sepsis|Severe sepsis +C1719672|T047|AB|R65.2|ICD10CM|Severe sepsis|Severe sepsis +C1719675|T047|ET|R65.2|ICD10CM|Systemic inflammatory response syndrome due to infectious process with acute organ dysfunction|Systemic inflammatory response syndrome due to infectious process with acute organ dysfunction +C1719672|T047|ET|R65.20|ICD10CM|Severe sepsis NOS|Severe sepsis NOS +C2830469|T047|PT|R65.20|ICD10CM|Severe sepsis without septic shock|Severe sepsis without septic shock +C2830469|T047|AB|R65.20|ICD10CM|Severe sepsis without septic shock|Severe sepsis without septic shock +C2830470|T047|PT|R65.21|ICD10CM|Severe sepsis with septic shock|Severe sepsis with septic shock +C2830470|T047|AB|R65.21|ICD10CM|Severe sepsis with septic shock|Severe sepsis with septic shock +C0495702|T184|HT|R68|ICD10|Other general symptoms and signs|Other general symptoms and signs +C0495702|T184|HT|R68|ICD10CM|Other general symptoms and signs|Other general symptoms and signs +C0495702|T184|AB|R68|ICD10CM|Other general symptoms and signs|Other general symptoms and signs +C3542020|T033|AB|R68.0|ICD10CM|Hypothermia, not associated w low environmental temperature|Hypothermia, not associated w low environmental temperature +C3542020|T033|PT|R68.0|ICD10CM|Hypothermia, not associated with low environmental temperature|Hypothermia, not associated with low environmental temperature +C3542020|T033|PT|R68.0|ICD10|Hypothermia, not associated with low environmental temperature|Hypothermia, not associated with low environmental temperature +C0478154|T184|PT|R68.1|ICD10|Nonspecific symptoms peculiar to infancy|Nonspecific symptoms peculiar to infancy +C0478154|T184|HT|R68.1|ICD10CM|Nonspecific symptoms peculiar to infancy|Nonspecific symptoms peculiar to infancy +C0478154|T184|AB|R68.1|ICD10CM|Nonspecific symptoms peculiar to infancy|Nonspecific symptoms peculiar to infancy +C0497134|T033|AB|R68.11|ICD10CM|Excessive crying of infant (baby)|Excessive crying of infant (baby) +C0497134|T033|PT|R68.11|ICD10CM|Excessive crying of infant (baby)|Excessive crying of infant (baby) +C1135254|T047|AB|R68.12|ICD10CM|Fussy infant (baby)|Fussy infant (baby) +C1135254|T047|PT|R68.12|ICD10CM|Fussy infant (baby)|Fussy infant (baby) +C0497135|T184|ET|R68.12|ICD10CM|Irritable infant|Irritable infant +C2712370|T047|AB|R68.13|ICD10CM|Apparent life threatening event in infant (ALTE)|Apparent life threatening event in infant (ALTE) +C2712370|T047|PT|R68.13|ICD10CM|Apparent life threatening event in infant (ALTE)|Apparent life threatening event in infant (ALTE) +C2729123|T047|ET|R68.13|ICD10CM|Apparent life threatening event in newborn|Apparent life threatening event in newborn +C4303743|T033|ET|R68.13|ICD10CM|Brief resolved unexplained event (BRUE)|Brief resolved unexplained event (BRUE) +C2830472|T184|AB|R68.19|ICD10CM|Other nonspecific symptoms peculiar to infancy|Other nonspecific symptoms peculiar to infancy +C2830472|T184|PT|R68.19|ICD10CM|Other nonspecific symptoms peculiar to infancy|Other nonspecific symptoms peculiar to infancy +C0478155|T184|PT|R68.2|ICD10CM|Dry mouth, unspecified|Dry mouth, unspecified +C0478155|T184|AB|R68.2|ICD10CM|Dry mouth, unspecified|Dry mouth, unspecified +C0478155|T184|PT|R68.2|ICD10|Dry mouth, unspecified|Dry mouth, unspecified +C0009080|T190|PT|R68.3|ICD10|Clubbing of fingers|Clubbing of fingers +C0009080|T190|PT|R68.3|ICD10CM|Clubbing of fingers|Clubbing of fingers +C0009080|T190|AB|R68.3|ICD10CM|Clubbing of fingers|Clubbing of fingers +C0263538|T184|ET|R68.3|ICD10CM|Clubbing of nails|Clubbing of nails +C0495702|T184|HT|R68.8|ICD10CM|Other general symptoms and signs|Other general symptoms and signs +C0495702|T184|AB|R68.8|ICD10CM|Other general symptoms and signs|Other general symptoms and signs +C0478156|T184|PT|R68.8|ICD10|Other specified general symptoms and signs|Other specified general symptoms and signs +C0239233|T184|PT|R68.81|ICD10CM|Early satiety|Early satiety +C0239233|T184|AB|R68.81|ICD10CM|Early satiety|Early satiety +C0011124|T033|PT|R68.82|ICD10CM|Decreased libido|Decreased libido +C0011124|T033|AB|R68.82|ICD10CM|Decreased libido|Decreased libido +C0011124|T033|ET|R68.82|ICD10CM|Decreased sexual desire|Decreased sexual desire +C2349674|T184|AB|R68.83|ICD10CM|Chills (without fever)|Chills (without fever) +C2349674|T184|PT|R68.83|ICD10CM|Chills (without fever)|Chills (without fever) +C0085593|T184|ET|R68.83|ICD10CM|Chills NOS|Chills NOS +C0236000|T184|PT|R68.84|ICD10CM|Jaw pain|Jaw pain +C0236000|T184|AB|R68.84|ICD10CM|Jaw pain|Jaw pain +C4552061|T184|ET|R68.84|ICD10CM|Mandibular pain|Mandibular pain +C0746434|T184|ET|R68.84|ICD10CM|Maxilla pain|Maxilla pain +C0495702|T184|AB|R68.89|ICD10CM|Other general symptoms and signs|Other general symptoms and signs +C0495702|T184|PT|R68.89|ICD10CM|Other general symptoms and signs|Other general symptoms and signs +C0221423|T184|AB|R69|ICD10CM|Illness, unspecified|Illness, unspecified +C0221423|T184|PT|R69|ICD10CM|Illness, unspecified|Illness, unspecified +C2830473|T033|ET|R69|ICD10CM|Unknown and unspecified cases of morbidity|Unknown and unspecified cases of morbidity +C0478157|T033|PT|R69|ICD10|Unknown and unspecified causes of morbidity|Unknown and unspecified causes of morbidity +C0495704|T033|AB|R70|ICD10CM|Elev erythro sedim and abnormality of plasma viscosity|Elev erythro sedim and abnormality of plasma viscosity +C0495704|T033|HT|R70|ICD10CM|Elevated erythrocyte sedimentation rate and abnormality of plasma viscosity|Elevated erythrocyte sedimentation rate and abnormality of plasma viscosity +C0495704|T033|HT|R70|ICD10|Elevated erythrocyte sedimentation rate and abnormality of plasma viscosity|Elevated erythrocyte sedimentation rate and abnormality of plasma viscosity +C0478158|T033|HT|R70-R79|ICD10CM|Abnormal findings on examination of blood, without diagnosis (R70-R79)|Abnormal findings on examination of blood, without diagnosis (R70-R79) +C0478158|T033|HT|R70-R79.9|ICD10|Abnormal findings on examination of blood, without diagnosis|Abnormal findings on examination of blood, without diagnosis +C0151632|T033|PT|R70.0|ICD10CM|Elevated erythrocyte sedimentation rate|Elevated erythrocyte sedimentation rate +C0151632|T033|AB|R70.0|ICD10CM|Elevated erythrocyte sedimentation rate|Elevated erythrocyte sedimentation rate +C0151632|T033|PT|R70.0|ICD10|Elevated erythrocyte sedimentation rate|Elevated erythrocyte sedimentation rate +C0476490|T033|PT|R70.1|ICD10|Abnormal plasma viscosity|Abnormal plasma viscosity +C0476490|T033|PT|R70.1|ICD10CM|Abnormal plasma viscosity|Abnormal plasma viscosity +C0476490|T033|AB|R70.1|ICD10CM|Abnormal plasma viscosity|Abnormal plasma viscosity +C0391870|T033|HT|R71|ICD10CM|Abnormality of red blood cells|Abnormality of red blood cells +C0391870|T033|AB|R71|ICD10CM|Abnormality of red blood cells|Abnormality of red blood cells +C0391870|T033|PT|R71|ICD10|Abnormality of red blood cells|Abnormality of red blood cells +C2729121|T047|ET|R71.0|ICD10CM|Drop (precipitous) in hemoglobin|Drop (precipitous) in hemoglobin +C0744727|T033|ET|R71.0|ICD10CM|Drop in hematocrit|Drop in hematocrit +C0878707|T184|PT|R71.0|ICD10CM|Precipitous drop in hematocrit|Precipitous drop in hematocrit +C0878707|T184|AB|R71.0|ICD10CM|Precipitous drop in hematocrit|Precipitous drop in hematocrit +C0476320|T033|ET|R71.8|ICD10CM|Abnormal red-cell morphology NOS|Abnormal red-cell morphology NOS +C0853655|T033|ET|R71.8|ICD10CM|Abnormal red-cell volume NOS|Abnormal red-cell volume NOS +C0221278|T033|ET|R71.8|ICD10CM|Anisocytosis|Anisocytosis +C0878708|T033|AB|R71.8|ICD10CM|Other abnormality of red blood cells|Other abnormality of red blood cells +C0878708|T033|PT|R71.8|ICD10CM|Other abnormality of red blood cells|Other abnormality of red blood cells +C0221281|T033|ET|R71.8|ICD10CM|Poikilocytosis|Poikilocytosis +C0495706|T033|HT|R73|ICD10|Elevated blood glucose level|Elevated blood glucose level +C0495706|T033|AB|R73|ICD10CM|Elevated blood glucose level|Elevated blood glucose level +C0495706|T033|HT|R73|ICD10CM|Elevated blood glucose level|Elevated blood glucose level +C0580546|T033|AB|R73.0|ICD10CM|Abnormal glucose|Abnormal glucose +C0580546|T033|HT|R73.0|ICD10CM|Abnormal glucose|Abnormal glucose +C1260439|T033|ET|R73.01|ICD10CM|Elevated fasting glucose|Elevated fasting glucose +C1272092|T033|PT|R73.01|ICD10CM|Impaired fasting glucose|Impaired fasting glucose +C1272092|T033|AB|R73.01|ICD10CM|Impaired fasting glucose|Impaired fasting glucose +C2830474|T033|ET|R73.02|ICD10CM|Elevated glucose tolerance|Elevated glucose tolerance +C2830475|T033|AB|R73.02|ICD10CM|Impaired glucose tolerance (oral)|Impaired glucose tolerance (oral) +C2830475|T033|PT|R73.02|ICD10CM|Impaired glucose tolerance (oral)|Impaired glucose tolerance (oral) +C0271650|T047|ET|R73.03|ICD10CM|Latent diabetes|Latent diabetes +C0362046|T047|PT|R73.03|ICD10CM|Prediabetes|Prediabetes +C0362046|T047|AB|R73.03|ICD10CM|Prediabetes|Prediabetes +C0580546|T033|ET|R73.09|ICD10CM|Abnormal glucose NOS|Abnormal glucose NOS +C2830476|T033|ET|R73.09|ICD10CM|Abnormal non-fasting glucose tolerance|Abnormal non-fasting glucose tolerance +C1260443|T033|AB|R73.09|ICD10CM|Other abnormal glucose|Other abnormal glucose +C1260443|T033|PT|R73.09|ICD10CM|Other abnormal glucose|Other abnormal glucose +C0020456|T047|PT|R73.9|ICD10|Hyperglycaemia, unspecified|Hyperglycaemia, unspecified +C0020456|T047|PT|R73.9|ICD10AE|Hyperglycemia, unspecified|Hyperglycemia, unspecified +C0020456|T047|PT|R73.9|ICD10CM|Hyperglycemia, unspecified|Hyperglycemia, unspecified +C0020456|T047|AB|R73.9|ICD10CM|Hyperglycemia, unspecified|Hyperglycemia, unspecified +C0495710|T033|AB|R74|ICD10CM|Abnormal serum enzyme levels|Abnormal serum enzyme levels +C0495710|T033|HT|R74|ICD10CM|Abnormal serum enzyme levels|Abnormal serum enzyme levels +C0495710|T033|HT|R74|ICD10|Abnormal serum enzyme levels|Abnormal serum enzyme levels +C2830477|T033|AB|R74.0|ICD10CM|Nonspec elev of levels of transamns & lactic acid dehydrgnse|Nonspec elev of levels of transamns & lactic acid dehydrgnse +C2830477|T033|PT|R74.0|ICD10CM|Nonspecific elevation of levels of transaminase and lactic acid dehydrogenase [LDH]|Nonspecific elevation of levels of transaminase and lactic acid dehydrogenase [LDH] +C2830478|T033|ET|R74.8|ICD10CM|Abnormal level of acid phosphatase|Abnormal level of acid phosphatase +C2830479|T033|ET|R74.8|ICD10CM|Abnormal level of alkaline phosphatase|Abnormal level of alkaline phosphatase +C2830480|T033|ET|R74.8|ICD10CM|Abnormal level of amylase|Abnormal level of amylase +C2830481|T033|ET|R74.8|ICD10CM|Abnormal level of lipase [triacylglycerol lipase]|Abnormal level of lipase [triacylglycerol lipase] +C0495709|T033|PT|R74.8|ICD10|Abnormal levels of other serum enzymes|Abnormal levels of other serum enzymes +C0495709|T033|PT|R74.8|ICD10CM|Abnormal levels of other serum enzymes|Abnormal levels of other serum enzymes +C0495709|T033|AB|R74.8|ICD10CM|Abnormal levels of other serum enzymes|Abnormal levels of other serum enzymes +C0495710|T033|PT|R74.9|ICD10|Abnormal level of unspecified serum enzyme|Abnormal level of unspecified serum enzyme +C0495710|T033|AB|R74.9|ICD10CM|Abnormal serum enzyme level, unspecified|Abnormal serum enzyme level, unspecified +C0495710|T033|PT|R74.9|ICD10CM|Abnormal serum enzyme level, unspecified|Abnormal serum enzyme level, unspecified +C2830483|T033|AB|R75|ICD10CM|Inconclusive laboratory evidence of human immunodef virus|Inconclusive laboratory evidence of human immunodef virus +C2830483|T033|PT|R75|ICD10CM|Inconclusive laboratory evidence of human immunodeficiency virus [HIV]|Inconclusive laboratory evidence of human immunodeficiency virus [HIV] +C0476491|T033|PT|R75|ICD10|Laboratory evidence of human immunodeficiency virus [HIV]|Laboratory evidence of human immunodeficiency virus [HIV] +C2830482|T033|ET|R75|ICD10CM|Nonconclusive HIV-test finding in infants|Nonconclusive HIV-test finding in infants +C0495712|T033|HT|R76|ICD10|Other abnormal immunological findings in serum|Other abnormal immunological findings in serum +C0495712|T033|AB|R76|ICD10CM|Other abnormal immunological findings in serum|Other abnormal immunological findings in serum +C0495712|T033|HT|R76|ICD10CM|Other abnormal immunological findings in serum|Other abnormal immunological findings in serum +C0476442|T033|PT|R76.0|ICD10AE|Raised antibody titer|Raised antibody titer +C0476442|T033|PT|R76.0|ICD10CM|Raised antibody titer|Raised antibody titer +C0476442|T033|AB|R76.0|ICD10CM|Raised antibody titer|Raised antibody titer +C0476442|T033|PT|R76.0|ICD10|Raised antibody titre|Raised antibody titre +C0495713|T033|PT|R76.1|ICD10|Abnormal reaction to tuberculin test|Abnormal reaction to tuberculin test +C3161127|T033|HT|R76.1|ICD10CM|Nonspecific reaction to test for tuberculosis|Nonspecific reaction to test for tuberculosis +C3161127|T033|AB|R76.1|ICD10CM|Nonspecific reaction to test for tuberculosis|Nonspecific reaction to test for tuberculosis +C0476439|T033|ET|R76.11|ICD10CM|Abnormal result of Mantoux test|Abnormal result of Mantoux test +C3161127|T033|AB|R76.11|ICD10CM|Nonspecific reaction to skin test w/o active tuberculosis|Nonspecific reaction to skin test w/o active tuberculosis +C3161127|T033|PT|R76.11|ICD10CM|Nonspecific reaction to tuberculin skin test without active tuberculosis|Nonspecific reaction to tuberculin skin test without active tuberculosis +C3161220|T047|ET|R76.11|ICD10CM|Tuberculin (skin test) positive|Tuberculin (skin test) positive +C3161221|T047|ET|R76.11|ICD10CM|Tuberculin (skin test) reactor|Tuberculin (skin test) reactor +C3161128|T033|AB|R76.12|ICD10CM|Nonspec reaction to gamma intrfrn respns w/o actv tubrclosis|Nonspec reaction to gamma intrfrn respns w/o actv tubrclosis +C3161222|T033|ET|R76.12|ICD10CM|Nonspecific reaction to QuantiFERON-TB test (QFT) without active tuberculosis|Nonspecific reaction to QuantiFERON-TB test (QFT) without active tuberculosis +C0159128|T033|PT|R76.2|ICD10|False-positive serological test for syphilis|False-positive serological test for syphilis +C0495714|T033|PT|R76.8|ICD10CM|Other specified abnormal immunological findings in serum|Other specified abnormal immunological findings in serum +C0495714|T033|AB|R76.8|ICD10CM|Other specified abnormal immunological findings in serum|Other specified abnormal immunological findings in serum +C0495714|T033|PT|R76.8|ICD10|Other specified abnormal immunological findings in serum|Other specified abnormal immunological findings in serum +C2048011|T033|ET|R76.8|ICD10CM|Raised level of immunoglobulins NOS|Raised level of immunoglobulins NOS +C0478161|T033|PT|R76.9|ICD10|Abnormal immunological finding in serum, unspecified|Abnormal immunological finding in serum, unspecified +C0478161|T033|PT|R76.9|ICD10CM|Abnormal immunological finding in serum, unspecified|Abnormal immunological finding in serum, unspecified +C0478161|T033|AB|R76.9|ICD10CM|Abnormal immunological finding in serum, unspecified|Abnormal immunological finding in serum, unspecified +C0495715|T033|HT|R77|ICD10|Other abnormalities of plasma proteins|Other abnormalities of plasma proteins +C0495715|T033|AB|R77|ICD10CM|Other abnormalities of plasma proteins|Other abnormalities of plasma proteins +C0495715|T033|HT|R77|ICD10CM|Other abnormalities of plasma proteins|Other abnormalities of plasma proteins +C0476487|T033|PT|R77.0|ICD10|Abnormality of albumin|Abnormality of albumin +C0476487|T033|PT|R77.0|ICD10CM|Abnormality of albumin|Abnormality of albumin +C0476487|T033|AB|R77.0|ICD10CM|Abnormality of albumin|Abnormality of albumin +C0476488|T033|PT|R77.1|ICD10CM|Abnormality of globulin|Abnormality of globulin +C0476488|T033|AB|R77.1|ICD10CM|Abnormality of globulin|Abnormality of globulin +C0476488|T033|PT|R77.1|ICD10|Abnormality of globulin|Abnormality of globulin +C1306857|T033|ET|R77.1|ICD10CM|Hyperglobulinemia NOS|Hyperglobulinemia NOS +C0476489|T033|PT|R77.2|ICD10|Abnormality of alphafetoprotein|Abnormality of alphafetoprotein +C0476489|T033|PT|R77.2|ICD10CM|Abnormality of alphafetoprotein|Abnormality of alphafetoprotein +C0476489|T033|AB|R77.2|ICD10CM|Abnormality of alphafetoprotein|Abnormality of alphafetoprotein +C0495716|T033|PT|R77.8|ICD10|Other specified abnormalities of plasma proteins|Other specified abnormalities of plasma proteins +C0495716|T033|PT|R77.8|ICD10CM|Other specified abnormalities of plasma proteins|Other specified abnormalities of plasma proteins +C0495716|T033|AB|R77.8|ICD10CM|Other specified abnormalities of plasma proteins|Other specified abnormalities of plasma proteins +C0478163|T033|PT|R77.9|ICD10|Abnormality of plasma protein, unspecified|Abnormality of plasma protein, unspecified +C0478163|T033|PT|R77.9|ICD10CM|Abnormality of plasma protein, unspecified|Abnormality of plasma protein, unspecified +C0478163|T033|AB|R77.9|ICD10CM|Abnormality of plasma protein, unspecified|Abnormality of plasma protein, unspecified +C0476493|T033|AB|R78|ICD10CM|Find of drugs and oth substnc, not normally found in blood|Find of drugs and oth substnc, not normally found in blood +C0476493|T033|HT|R78|ICD10CM|Findings of drugs and other substances, not normally found in blood|Findings of drugs and other substances, not normally found in blood +C0476493|T033|HT|R78|ICD10|Findings of drugs and other substances, not normally found in blood|Findings of drugs and other substances, not normally found in blood +C0495718|T033|PT|R78.0|ICD10|Finding of alcohol in blood|Finding of alcohol in blood +C0495718|T033|PT|R78.0|ICD10CM|Finding of alcohol in blood|Finding of alcohol in blood +C0495718|T033|AB|R78.0|ICD10CM|Finding of alcohol in blood|Finding of alcohol in blood +C0478665|T033|PT|R78.1|ICD10CM|Finding of opiate drug in blood|Finding of opiate drug in blood +C0478665|T033|AB|R78.1|ICD10CM|Finding of opiate drug in blood|Finding of opiate drug in blood +C0478665|T033|PT|R78.1|ICD10|Finding of opiate drug in blood|Finding of opiate drug in blood +C0476494|T033|PT|R78.2|ICD10|Finding of cocaine in blood|Finding of cocaine in blood +C0476494|T033|PT|R78.2|ICD10CM|Finding of cocaine in blood|Finding of cocaine in blood +C0476494|T033|AB|R78.2|ICD10CM|Finding of cocaine in blood|Finding of cocaine in blood +C0476495|T033|PT|R78.3|ICD10CM|Finding of hallucinogen in blood|Finding of hallucinogen in blood +C0476495|T033|AB|R78.3|ICD10CM|Finding of hallucinogen in blood|Finding of hallucinogen in blood +C0476495|T033|PT|R78.3|ICD10|Finding of hallucinogen in blood|Finding of hallucinogen in blood +C0478164|T033|PT|R78.4|ICD10|Finding of other drugs of addictive potential in blood|Finding of other drugs of addictive potential in blood +C0478164|T033|PT|R78.4|ICD10CM|Finding of other drugs of addictive potential in blood|Finding of other drugs of addictive potential in blood +C0478164|T033|AB|R78.4|ICD10CM|Finding of other drugs of addictive potential in blood|Finding of other drugs of addictive potential in blood +C2830484|T033|AB|R78.5|ICD10CM|Finding of other psychotropic drug in blood|Finding of other psychotropic drug in blood +C2830484|T033|PT|R78.5|ICD10CM|Finding of other psychotropic drug in blood|Finding of other psychotropic drug in blood +C0476496|T033|PT|R78.5|ICD10|Finding of psychotropic drug in blood|Finding of psychotropic drug in blood +C0476497|T033|PT|R78.6|ICD10|Finding of steroid agent in blood|Finding of steroid agent in blood +C0476497|T033|PT|R78.6|ICD10CM|Finding of steroid agent in blood|Finding of steroid agent in blood +C0476497|T033|AB|R78.6|ICD10CM|Finding of steroid agent in blood|Finding of steroid agent in blood +C0495719|T033|PT|R78.7|ICD10|Finding of abnormal level of heavy metals in blood|Finding of abnormal level of heavy metals in blood +C0495719|T033|HT|R78.7|ICD10CM|Finding of abnormal level of heavy metals in blood|Finding of abnormal level of heavy metals in blood +C0495719|T033|AB|R78.7|ICD10CM|Finding of abnormal level of heavy metals in blood|Finding of abnormal level of heavy metals in blood +C1719641|T033|AB|R78.71|ICD10CM|Abnormal lead level in blood|Abnormal lead level in blood +C1719641|T033|PT|R78.71|ICD10CM|Abnormal lead level in blood|Abnormal lead level in blood +C0495719|T033|PT|R78.79|ICD10CM|Finding of abnormal level of heavy metals in blood|Finding of abnormal level of heavy metals in blood +C0495719|T033|AB|R78.79|ICD10CM|Finding of abnormal level of heavy metals in blood|Finding of abnormal level of heavy metals in blood +C0495720|T033|AB|R78.8|ICD10CM|Finding of oth substances, not normally found in blood|Finding of oth substances, not normally found in blood +C0495720|T033|HT|R78.8|ICD10CM|Finding of other specified substances, not normally found in blood|Finding of other specified substances, not normally found in blood +C0495720|T033|PT|R78.8|ICD10|Finding of other specified substances, not normally found in blood|Finding of other specified substances, not normally found in blood +C0004610|T047|PT|R78.81|ICD10CM|Bacteremia|Bacteremia +C0004610|T047|AB|R78.81|ICD10CM|Bacteremia|Bacteremia +C2830485|T033|ET|R78.89|ICD10CM|Finding of abnormal level of lithium in blood|Finding of abnormal level of lithium in blood +C0495720|T033|AB|R78.89|ICD10CM|Finding of oth substances, not normally found in blood|Finding of oth substances, not normally found in blood +C0495720|T033|PT|R78.89|ICD10CM|Finding of other specified substances, not normally found in blood|Finding of other specified substances, not normally found in blood +C0495721|T033|AB|R78.9|ICD10CM|Finding of unsp substance, not normally found in blood|Finding of unsp substance, not normally found in blood +C0495721|T033|PT|R78.9|ICD10CM|Finding of unspecified substance, not normally found in blood|Finding of unspecified substance, not normally found in blood +C0495721|T033|PT|R78.9|ICD10|Finding of unspecified substance, not normally found in blood|Finding of unspecified substance, not normally found in blood +C0495722|T033|HT|R79|ICD10|Other abnormal findings of blood chemistry|Other abnormal findings of blood chemistry +C0495722|T033|AB|R79|ICD10CM|Other abnormal findings of blood chemistry|Other abnormal findings of blood chemistry +C0495722|T033|HT|R79|ICD10CM|Other abnormal findings of blood chemistry|Other abnormal findings of blood chemistry +C2711004|T033|ET|R79.0|ICD10CM|Abnormal blood level of cobalt|Abnormal blood level of cobalt +C0476330|T046|ET|R79.0|ICD10CM|Abnormal blood level of copper|Abnormal blood level of copper +C0476331|T046|ET|R79.0|ICD10CM|Abnormal blood level of iron|Abnormal blood level of iron +C0476333|T046|ET|R79.0|ICD10CM|Abnormal blood level of magnesium|Abnormal blood level of magnesium +C2830486|T033|ET|R79.0|ICD10CM|Abnormal blood level of mineral NEC|Abnormal blood level of mineral NEC +C0476335|T033|ET|R79.0|ICD10CM|Abnormal blood level of zinc|Abnormal blood level of zinc +C0476334|T033|PT|R79.0|ICD10CM|Abnormal level of blood mineral|Abnormal level of blood mineral +C0476334|T033|AB|R79.0|ICD10CM|Abnormal level of blood mineral|Abnormal level of blood mineral +C0476334|T033|PT|R79.0|ICD10|Abnormal level of blood mineral|Abnormal level of blood mineral +C0375576|T033|PT|R79.1|ICD10CM|Abnormal coagulation profile|Abnormal coagulation profile +C0375576|T033|AB|R79.1|ICD10CM|Abnormal coagulation profile|Abnormal coagulation profile +C0151529|T033|ET|R79.1|ICD10CM|Abnormal or prolonged bleeding time|Abnormal or prolonged bleeding time +C0151563|T033|ET|R79.1|ICD10CM|Abnormal or prolonged coagulation time|Abnormal or prolonged coagulation time +C2830487|T033|ET|R79.1|ICD10CM|Abnormal or prolonged partial thromboplastin time [PTT]|Abnormal or prolonged partial thromboplastin time [PTT] +C2830488|T033|ET|R79.1|ICD10CM|Abnormal or prolonged prothrombin time [PT]|Abnormal or prolonged prothrombin time [PT] +C0478166|T033|PT|R79.8|ICD10|Other specified abnormal findings of blood chemistry|Other specified abnormal findings of blood chemistry +C0478166|T033|HT|R79.8|ICD10CM|Other specified abnormal findings of blood chemistry|Other specified abnormal findings of blood chemistry +C0478166|T033|AB|R79.8|ICD10CM|Other specified abnormal findings of blood chemistry|Other specified abnormal findings of blood chemistry +C0476337|T033|AB|R79.81|ICD10CM|Abnormal blood-gas level|Abnormal blood-gas level +C0476337|T033|PT|R79.81|ICD10CM|Abnormal blood-gas level|Abnormal blood-gas level +C1455884|T033|AB|R79.82|ICD10CM|Elevated C-reactive protein (CRP)|Elevated C-reactive protein (CRP) +C1455884|T033|PT|R79.82|ICD10CM|Elevated C-reactive protein (CRP)|Elevated C-reactive protein (CRP) +C0478166|T033|PT|R79.89|ICD10CM|Other specified abnormal findings of blood chemistry|Other specified abnormal findings of blood chemistry +C0478166|T033|AB|R79.89|ICD10CM|Other specified abnormal findings of blood chemistry|Other specified abnormal findings of blood chemistry +C0438258|T033|PT|R79.9|ICD10CM|Abnormal finding of blood chemistry, unspecified|Abnormal finding of blood chemistry, unspecified +C0438258|T033|AB|R79.9|ICD10CM|Abnormal finding of blood chemistry, unspecified|Abnormal finding of blood chemistry, unspecified +C0438258|T033|PT|R79.9|ICD10|Abnormal finding of blood chemistry, unspecified|Abnormal finding of blood chemistry, unspecified +C0495723|T033|PT|R80|ICD10|Isolated proteinuria|Isolated proteinuria +C0033687|T033|HT|R80|ICD10CM|Proteinuria|Proteinuria +C0033687|T033|AB|R80|ICD10CM|Proteinuria|Proteinuria +C0478169|T033|HT|R80-R82|ICD10CM|Abnormal findings on examination of urine, without diagnosis (R80-R82)|Abnormal findings on examination of urine, without diagnosis (R80-R82) +C0478169|T033|HT|R80-R82.9|ICD10|Abnormal findings on examination of urine, without diagnosis|Abnormal findings on examination of urine, without diagnosis +C2830489|T033|ET|R80.0|ICD10CM|Idiopathic proteinuria|Idiopathic proteinuria +C0495723|T033|PT|R80.0|ICD10CM|Isolated proteinuria|Isolated proteinuria +C0495723|T033|AB|R80.0|ICD10CM|Isolated proteinuria|Isolated proteinuria +C0477762|T033|PT|R80.1|ICD10CM|Persistent proteinuria, unspecified|Persistent proteinuria, unspecified +C0477762|T033|AB|R80.1|ICD10CM|Persistent proteinuria, unspecified|Persistent proteinuria, unspecified +C0232867|T047|PT|R80.2|ICD10CM|Orthostatic proteinuria, unspecified|Orthostatic proteinuria, unspecified +C0232867|T047|AB|R80.2|ICD10CM|Orthostatic proteinuria, unspecified|Orthostatic proteinuria, unspecified +C0232867|T047|ET|R80.2|ICD10CM|Postural proteinuria|Postural proteinuria +C0004968|T033|PT|R80.3|ICD10CM|Bence Jones proteinuria|Bence Jones proteinuria +C0004968|T033|AB|R80.3|ICD10CM|Bence Jones proteinuria|Bence Jones proteinuria +C2830490|T033|AB|R80.8|ICD10CM|Other proteinuria|Other proteinuria +C2830490|T033|PT|R80.8|ICD10CM|Other proteinuria|Other proteinuria +C0001925|T033|ET|R80.9|ICD10CM|Albuminuria NOS|Albuminuria NOS +C0033687|T033|AB|R80.9|ICD10CM|Proteinuria, unspecified|Proteinuria, unspecified +C0033687|T033|PT|R80.9|ICD10CM|Proteinuria, unspecified|Proteinuria, unspecified +C0017979|T033|PT|R81|ICD10|Glycosuria|Glycosuria +C0017979|T033|PT|R81|ICD10CM|Glycosuria|Glycosuria +C0017979|T033|AB|R81|ICD10CM|Glycosuria|Glycosuria +C2830491|T033|ET|R82|ICD10CM|chromoabnormalities in urine|chromoabnormalities in urine +C0478170|T033|HT|R82|ICD10|Other abnormal findings in urine|Other abnormal findings in urine +C0478170|T033|HT|R82|ICD10CM|Other and unspecified abnormal findings in urine|Other and unspecified abnormal findings in urine +C0478170|T033|AB|R82|ICD10CM|Other and unspecified abnormal findings in urine|Other and unspecified abnormal findings in urine +C0159075|T184|PT|R82.0|ICD10CM|Chyluria|Chyluria +C0159075|T184|AB|R82.0|ICD10CM|Chyluria|Chyluria +C0159075|T184|PT|R82.0|ICD10|Chyluria|Chyluria +C0027080|T033|PT|R82.1|ICD10|Myoglobinuria|Myoglobinuria +C0027080|T033|PT|R82.1|ICD10CM|Myoglobinuria|Myoglobinuria +C0027080|T033|AB|R82.1|ICD10CM|Myoglobinuria|Myoglobinuria +C0159076|T033|PT|R82.2|ICD10|Biliuria|Biliuria +C0159076|T033|PT|R82.2|ICD10CM|Biliuria|Biliuria +C0159076|T033|AB|R82.2|ICD10CM|Biliuria|Biliuria +C0019048|T033|PT|R82.3|ICD10|Haemoglobinuria|Haemoglobinuria +C0019048|T033|PT|R82.3|ICD10CM|Hemoglobinuria|Hemoglobinuria +C0019048|T033|AB|R82.3|ICD10CM|Hemoglobinuria|Hemoglobinuria +C0019048|T033|PT|R82.3|ICD10AE|Hemoglobinuria|Hemoglobinuria +C0162275|T047|PT|R82.4|ICD10|Acetonuria|Acetonuria +C0162275|T047|PT|R82.4|ICD10CM|Acetonuria|Acetonuria +C0162275|T047|AB|R82.4|ICD10CM|Acetonuria|Acetonuria +C0162275|T047|ET|R82.4|ICD10CM|Ketonuria|Ketonuria +C1384702|T033|ET|R82.5|ICD10CM|Elevated urine levels of 17-ketosteroids|Elevated urine levels of 17-ketosteroids +C0241577|T033|ET|R82.5|ICD10CM|Elevated urine levels of catecholamines|Elevated urine levels of catecholamines +C0495724|T033|AB|R82.5|ICD10CM|Elevated urine levels of drug/meds/biol subst|Elevated urine levels of drug/meds/biol subst +C0495724|T033|PT|R82.5|ICD10CM|Elevated urine levels of drugs, medicaments and biological substances|Elevated urine levels of drugs, medicaments and biological substances +C0495724|T033|PT|R82.5|ICD10|Elevated urine levels of drugs, medicaments and biological substances|Elevated urine levels of drugs, medicaments and biological substances +C0476343|T033|ET|R82.5|ICD10CM|Elevated urine levels of indoleacetic acid|Elevated urine levels of indoleacetic acid +C1410858|T033|ET|R82.5|ICD10CM|Elevated urine levels of steroids|Elevated urine levels of steroids +C0476447|T033|ET|R82.6|ICD10CM|Abnormal urine level of heavy metals|Abnormal urine level of heavy metals +C0495725|T033|AB|R82.6|ICD10CM|Abnormal urine levels of substances chiefly nonmed source|Abnormal urine levels of substances chiefly nonmed source +C0495725|T033|PT|R82.6|ICD10CM|Abnormal urine levels of substances chiefly nonmedicinal as to source|Abnormal urine levels of substances chiefly nonmedicinal as to source +C0495725|T033|PT|R82.6|ICD10|Abnormal urine levels of substances chiefly nonmedicinal as to source|Abnormal urine levels of substances chiefly nonmedicinal as to source +C0476498|T033|PT|R82.7|ICD10|Abnormal findings on microbiological examination of urine|Abnormal findings on microbiological examination of urine +C0476498|T033|AB|R82.7|ICD10CM|Abnormal findings on microbiological examination of urine|Abnormal findings on microbiological examination of urine +C0476498|T033|HT|R82.7|ICD10CM|Abnormal findings on microbiological examination of urine|Abnormal findings on microbiological examination of urine +C0004659|T047|PT|R82.71|ICD10CM|Bacteriuria|Bacteriuria +C0004659|T047|AB|R82.71|ICD10CM|Bacteriuria|Bacteriuria +C4269216|T033|AB|R82.79|ICD10CM|Other abnormal findings on microbiolog examination of urine|Other abnormal findings on microbiolog examination of urine +C4269216|T033|PT|R82.79|ICD10CM|Other abnormal findings on microbiological examination of urine|Other abnormal findings on microbiological examination of urine +C4269217|T033|ET|R82.79|ICD10CM|Positive culture findings of urine|Positive culture findings of urine +C0476499|T033|AB|R82.8|ICD10CM|Abnormal findings on cytolog and histolog exam of urine|Abnormal findings on cytolog and histolog exam of urine +C0476499|T033|HT|R82.8|ICD10CM|Abnormal findings on cytological and histological examination of urine|Abnormal findings on cytological and histological examination of urine +C0476499|T033|PT|R82.8|ICD10|Abnormal findings on cytological and histological examination of urine|Abnormal findings on cytological and histological examination of urine +C0034359|T033|PT|R82.81|ICD10CM|Pyuria|Pyuria +C0034359|T033|AB|R82.81|ICD10CM|Pyuria|Pyuria +C0281986|T033|ET|R82.81|ICD10CM|Sterile pyuria|Sterile pyuria +C5140895|T033|AB|R82.89|ICD10CM|Other abn findings on cytolog and histolog exam of urine|Other abn findings on cytolog and histolog exam of urine +C5140895|T033|PT|R82.89|ICD10CM|Other abnormal findings on cytological and histological examination of urine|Other abnormal findings on cytological and histological examination of urine +C0478170|T033|HT|R82.9|ICD10CM|Other and unspecified abnormal findings in urine|Other and unspecified abnormal findings in urine +C0478170|T033|AB|R82.9|ICD10CM|Other and unspecified abnormal findings in urine|Other and unspecified abnormal findings in urine +C0478170|T033|PT|R82.9|ICD10|Other and unspecified abnormal findings in urine|Other and unspecified abnormal findings in urine +C2830493|T033|AB|R82.90|ICD10CM|Unspecified abnormal findings in urine|Unspecified abnormal findings in urine +C2830493|T033|PT|R82.90|ICD10CM|Unspecified abnormal findings in urine|Unspecified abnormal findings in urine +C2830494|T033|ET|R82.91|ICD10CM|Chromoconversion (dipstick)|Chromoconversion (dipstick) +C2830495|T033|ET|R82.91|ICD10CM|Idiopathic dipstick converts positive for blood with no cellular forms in sediment|Idiopathic dipstick converts positive for blood with no cellular forms in sediment +C2830496|T033|AB|R82.91|ICD10CM|Other chromoabnormalities of urine|Other chromoabnormalities of urine +C2830496|T033|PT|R82.91|ICD10CM|Other chromoabnormalities of urine|Other chromoabnormalities of urine +C0478170|T033|AB|R82.99|ICD10CM|Other abnormal findings in urine|Other abnormal findings in urine +C0478170|T033|HT|R82.99|ICD10CM|Other abnormal findings in urine|Other abnormal findings in urine +C2673444|T033|AB|R82.991|ICD10CM|Hypocitraturia|Hypocitraturia +C2673444|T033|PT|R82.991|ICD10CM|Hypocitraturia|Hypocitraturia +C0020500|T047|PT|R82.992|ICD10CM|Hyperoxaluria|Hyperoxaluria +C0020500|T047|AB|R82.992|ICD10CM|Hyperoxaluria|Hyperoxaluria +C0948643|T033|PT|R82.993|ICD10CM|Hyperuricosuria|Hyperuricosuria +C0948643|T033|AB|R82.993|ICD10CM|Hyperuricosuria|Hyperuricosuria +C0020438|T033|AB|R82.994|ICD10CM|Hypercalciuria|Hypercalciuria +C0020438|T033|PT|R82.994|ICD10CM|Hypercalciuria|Hypercalciuria +C0543800|T047|ET|R82.994|ICD10CM|Idiopathic hypercalciuria|Idiopathic hypercalciuria +C0476339|T033|ET|R82.998|ICD10CM|Cells and casts in urine|Cells and casts in urine +C0151579|T033|ET|R82.998|ICD10CM|Crystalluria|Crystalluria +C0232893|T033|ET|R82.998|ICD10CM|Melanuria|Melanuria +C0478170|T033|AB|R82.998|ICD10CM|Other abnormal findings in urine|Other abnormal findings in urine +C0478170|T033|PT|R82.998|ICD10CM|Other abnormal findings in urine|Other abnormal findings in urine +C0151583|T033|AB|R83|ICD10CM|Abnormal findings in cerebrospinal fluid|Abnormal findings in cerebrospinal fluid +C0151583|T033|HT|R83|ICD10CM|Abnormal findings in cerebrospinal fluid|Abnormal findings in cerebrospinal fluid +C0151583|T033|HT|R83|ICD10|Abnormal findings in cerebrospinal fluid|Abnormal findings in cerebrospinal fluid +C0478171|T033|HT|R83-R89.9|ICD10|Abnormal findings on examination of other body fluids, substances and tissues, without diagnosis|Abnormal findings on examination of other body fluids, substances and tissues, without diagnosis +C0476500|T033|PT|R83.0|ICD10|Abnormal findings in cerebrospinal fluid, abnormal level of enzymes|Abnormal findings in cerebrospinal fluid, abnormal level of enzymes +C0476500|T033|AB|R83.0|ICD10CM|Abnormal level of enzymes in cerebrospinal fluid|Abnormal level of enzymes in cerebrospinal fluid +C0476500|T033|PT|R83.0|ICD10CM|Abnormal level of enzymes in cerebrospinal fluid|Abnormal level of enzymes in cerebrospinal fluid +C0476501|T033|PT|R83.1|ICD10|Abnormal findings in cerebrospinal fluid, abnormal level of hormones|Abnormal findings in cerebrospinal fluid, abnormal level of hormones +C0476501|T033|AB|R83.1|ICD10CM|Abnormal level of hormones in cerebrospinal fluid|Abnormal level of hormones in cerebrospinal fluid +C0476501|T033|PT|R83.1|ICD10CM|Abnormal level of hormones in cerebrospinal fluid|Abnormal level of hormones in cerebrospinal fluid +C0476502|T033|AB|R83.2|ICD10CM|Abn lev drug/meds/biol subst in cerebrospinal fluid|Abn lev drug/meds/biol subst in cerebrospinal fluid +C0476502|T033|PT|R83.2|ICD10CM|Abnormal level of other drugs, medicaments and biological substances in cerebrospinal fluid|Abnormal level of other drugs, medicaments and biological substances in cerebrospinal fluid +C2830497|T033|AB|R83.3|ICD10CM|Abn lev substances chiefly nonmedicinal as to source in CSF|Abn lev substances chiefly nonmedicinal as to source in CSF +C2830497|T033|PT|R83.3|ICD10CM|Abnormal level of substances chiefly nonmedicinal as to source in cerebrospinal fluid|Abnormal level of substances chiefly nonmedicinal as to source in cerebrospinal fluid +C0476504|T033|PT|R83.4|ICD10|Abnormal findings in cerebrospinal fluid, abnormal immunological findings|Abnormal findings in cerebrospinal fluid, abnormal immunological findings +C0476504|T033|PT|R83.4|ICD10CM|Abnormal immunological findings in cerebrospinal fluid|Abnormal immunological findings in cerebrospinal fluid +C0476504|T033|AB|R83.4|ICD10CM|Abnormal immunological findings in cerebrospinal fluid|Abnormal immunological findings in cerebrospinal fluid +C0495732|T033|PT|R83.5|ICD10|Abnormal findings in cerebrospinal fluid, abnormal microbiological findings|Abnormal findings in cerebrospinal fluid, abnormal microbiological findings +C0558776|T033|AB|R83.5|ICD10CM|Abnormal microbiological findings in cerebrospinal fluid|Abnormal microbiological findings in cerebrospinal fluid +C0558776|T033|PT|R83.5|ICD10CM|Abnormal microbiological findings in cerebrospinal fluid|Abnormal microbiological findings in cerebrospinal fluid +C2830498|T033|ET|R83.5|ICD10CM|Positive culture findings in cerebrospinal fluid|Positive culture findings in cerebrospinal fluid +C0476506|T033|PT|R83.6|ICD10CM|Abnormal cytological findings in cerebrospinal fluid|Abnormal cytological findings in cerebrospinal fluid +C0476506|T033|AB|R83.6|ICD10CM|Abnormal cytological findings in cerebrospinal fluid|Abnormal cytological findings in cerebrospinal fluid +C0476506|T033|PT|R83.6|ICD10|Abnormal findings in cerebrospinal fluid, abnormal cytological findings|Abnormal findings in cerebrospinal fluid, abnormal cytological findings +C0476507|T033|PT|R83.7|ICD10|Abnormal findings in cerebrospinal fluid, abnormal histological findings|Abnormal findings in cerebrospinal fluid, abnormal histological findings +C2830499|T033|ET|R83.8|ICD10CM|Abnormal chromosomal findings in cerebrospinal fluid|Abnormal chromosomal findings in cerebrospinal fluid +C0478172|T033|PT|R83.8|ICD10|Abnormal findings in cerebrospinal fluid, other abnormal findings|Abnormal findings in cerebrospinal fluid, other abnormal findings +C0478172|T033|AB|R83.8|ICD10CM|Other abnormal findings in cerebrospinal fluid|Other abnormal findings in cerebrospinal fluid +C0478172|T033|PT|R83.8|ICD10CM|Other abnormal findings in cerebrospinal fluid|Other abnormal findings in cerebrospinal fluid +C0151583|T033|PT|R83.9|ICD10|Abnormal findings in cerebrospinal fluid, unspecified abnormal finding|Abnormal findings in cerebrospinal fluid, unspecified abnormal finding +C2830500|T033|AB|R83.9|ICD10CM|Unspecified abnormal finding in cerebrospinal fluid|Unspecified abnormal finding in cerebrospinal fluid +C2830500|T033|PT|R83.9|ICD10CM|Unspecified abnormal finding in cerebrospinal fluid|Unspecified abnormal finding in cerebrospinal fluid +C4290276|T033|ET|R84|ICD10CM|abnormal findings in bronchial washings|abnormal findings in bronchial washings +C4290277|T033|ET|R84|ICD10CM|abnormal findings in nasal secretions|abnormal findings in nasal secretions +C4290278|T033|ET|R84|ICD10CM|abnormal findings in pleural fluid|abnormal findings in pleural fluid +C0476508|T033|AB|R84|ICD10CM|Abnormal findings in specimens from resp org/thrx|Abnormal findings in specimens from resp org/thrx +C0476508|T033|HT|R84|ICD10CM|Abnormal findings in specimens from respiratory organs and thorax|Abnormal findings in specimens from respiratory organs and thorax +C0476508|T033|HT|R84|ICD10|Abnormal findings in specimens from respiratory organs and thorax|Abnormal findings in specimens from respiratory organs and thorax +C0159054|T033|ET|R84|ICD10CM|abnormal findings in sputum|abnormal findings in sputum +C4290279|T033|ET|R84|ICD10CM|abnormal findings in throat scrapings|abnormal findings in throat scrapings +C0476509|T033|PT|R84.0|ICD10|Abnormal findings in specimens from respiratory organs and thorax, abnormal level of enzymes|Abnormal findings in specimens from respiratory organs and thorax, abnormal level of enzymes +C0476509|T033|AB|R84.0|ICD10CM|Abnormal level of enzymes in specimens from resp org/thrx|Abnormal level of enzymes in specimens from resp org/thrx +C0476509|T033|PT|R84.0|ICD10CM|Abnormal level of enzymes in specimens from respiratory organs and thorax|Abnormal level of enzymes in specimens from respiratory organs and thorax +C0476510|T033|PT|R84.1|ICD10|Abnormal findings in specimens from respiratory organs and thorax, abnormal level of hormones|Abnormal findings in specimens from respiratory organs and thorax, abnormal level of hormones +C0476510|T033|AB|R84.1|ICD10CM|Abnormal level of hormones in specimens from resp org/thrx|Abnormal level of hormones in specimens from resp org/thrx +C0476510|T033|PT|R84.1|ICD10CM|Abnormal level of hormones in specimens from respiratory organs and thorax|Abnormal level of hormones in specimens from respiratory organs and thorax +C1261365|T033|AB|R84.2|ICD10CM|Abn lev drug/meds/biol subst in specimens from resp org/thrx|Abn lev drug/meds/biol subst in specimens from resp org/thrx +C2830505|T033|AB|R84.3|ICD10CM|Abn lev substnc nonmed source in specmn from resp org/thrx|Abn lev substnc nonmed source in specmn from resp org/thrx +C0476513|T033|PT|R84.4|ICD10|Abnormal findings in specimens from respiratory organs and thorax, abnormal immunological findings|Abnormal findings in specimens from respiratory organs and thorax, abnormal immunological findings +C0476513|T033|AB|R84.4|ICD10CM|Abnormal immunolog findings in specimens from resp org/thrx|Abnormal immunolog findings in specimens from resp org/thrx +C0476513|T033|PT|R84.4|ICD10CM|Abnormal immunological findings in specimens from respiratory organs and thorax|Abnormal immunological findings in specimens from respiratory organs and thorax +C0495741|T033|PT|R84.5|ICD10|Abnormal findings in specimens from respiratory organs and thorax, abnormal microbiological findings|Abnormal findings in specimens from respiratory organs and thorax, abnormal microbiological findings +C0558775|T033|AB|R84.5|ICD10CM|Abnormal microbiolog findings in specmn from resp org/thrx|Abnormal microbiolog findings in specmn from resp org/thrx +C0558775|T033|PT|R84.5|ICD10CM|Abnormal microbiological findings in specimens from respiratory organs and thorax|Abnormal microbiological findings in specimens from respiratory organs and thorax +C2830506|T033|ET|R84.5|ICD10CM|Positive culture findings in specimens from respiratory organs and thorax|Positive culture findings in specimens from respiratory organs and thorax +C0476514|T033|AB|R84.6|ICD10CM|Abnormal cytolog findings in specimens from resp org/thrx|Abnormal cytolog findings in specimens from resp org/thrx +C0476514|T033|PT|R84.6|ICD10CM|Abnormal cytological findings in specimens from respiratory organs and thorax|Abnormal cytological findings in specimens from respiratory organs and thorax +C0476514|T033|PT|R84.6|ICD10|Abnormal findings in specimens from respiratory organs and thorax, abnormal cytological findings|Abnormal findings in specimens from respiratory organs and thorax, abnormal cytological findings +C0476515|T033|PT|R84.7|ICD10|Abnormal findings in specimens from respiratory organs and thorax, abnormal histological findings|Abnormal findings in specimens from respiratory organs and thorax, abnormal histological findings +C0476515|T033|AB|R84.7|ICD10CM|Abnormal histolog findings in specimens from resp org/thrx|Abnormal histolog findings in specimens from resp org/thrx +C0476515|T033|PT|R84.7|ICD10CM|Abnormal histological findings in specimens from respiratory organs and thorax|Abnormal histological findings in specimens from respiratory organs and thorax +C2830507|T033|ET|R84.8|ICD10CM|Abnormal chromosomal findings in specimens from respiratory organs and thorax|Abnormal chromosomal findings in specimens from respiratory organs and thorax +C0478173|T033|PT|R84.8|ICD10|Abnormal findings in specimens from respiratory organs and thorax, other abnormal findings|Abnormal findings in specimens from respiratory organs and thorax, other abnormal findings +C0478173|T033|AB|R84.8|ICD10CM|Oth abnormal findings in specimens from resp org/thrx|Oth abnormal findings in specimens from resp org/thrx +C0478173|T033|PT|R84.8|ICD10CM|Other abnormal findings in specimens from respiratory organs and thorax|Other abnormal findings in specimens from respiratory organs and thorax +C0476508|T033|PT|R84.9|ICD10|Abnormal findings in specimens from respiratory organs and thorax, unspecified abnormal finding|Abnormal findings in specimens from respiratory organs and thorax, unspecified abnormal finding +C0476508|T033|AB|R84.9|ICD10CM|Unsp abnormal finding in specimens from resp org/thrx|Unsp abnormal finding in specimens from resp org/thrx +C0476508|T033|PT|R84.9|ICD10CM|Unspecified abnormal finding in specimens from respiratory organs and thorax|Unspecified abnormal finding in specimens from respiratory organs and thorax +C0476351|T033|ET|R85|ICD10CM|abnormal findings in peritoneal fluid|abnormal findings in peritoneal fluid +C0476350|T033|ET|R85|ICD10CM|abnormal findings in saliva|abnormal findings in saliva +C0476516|T033|AB|R85|ICD10CM|Abnormal findings in specimens from dgstv org/abd cav|Abnormal findings in specimens from dgstv org/abd cav +C0476516|T033|HT|R85|ICD10CM|Abnormal findings in specimens from digestive organs and abdominal cavity|Abnormal findings in specimens from digestive organs and abdominal cavity +C0476516|T033|HT|R85|ICD10|Abnormal findings in specimens from digestive organs and abdominal cavity|Abnormal findings in specimens from digestive organs and abdominal cavity +C0476517|T033|AB|R85.0|ICD10CM|Abn lev enzymes in specimens from dgstv org/abd cav|Abn lev enzymes in specimens from dgstv org/abd cav +C0476517|T033|PT|R85.0|ICD10|Abnormal findings in specimens from digestive organs and abdominal cavity, abnormal level of enzymes|Abnormal findings in specimens from digestive organs and abdominal cavity, abnormal level of enzymes +C0476517|T033|PT|R85.0|ICD10CM|Abnormal level of enzymes in specimens from digestive organs and abdominal cavity|Abnormal level of enzymes in specimens from digestive organs and abdominal cavity +C0476518|T033|AB|R85.1|ICD10CM|Abn lev hormones in specimens from dgstv org/abd cav|Abn lev hormones in specimens from dgstv org/abd cav +C0476518|T033|PT|R85.1|ICD10CM|Abnormal level of hormones in specimens from digestive organs and abdominal cavity|Abnormal level of hormones in specimens from digestive organs and abdominal cavity +C1536761|T033|AB|R85.2|ICD10CM|Abn lev drug/meds/biol subst in specmn fr dgstv org/abd cav|Abn lev drug/meds/biol subst in specmn fr dgstv org/abd cav +C2830508|T033|AB|R85.3|ICD10CM|Abn lev substnc nonmed source in specmn fr dgstv org/abd cav|Abn lev substnc nonmed source in specmn fr dgstv org/abd cav +C0476521|T033|AB|R85.4|ICD10CM|Abnormal immunolog findings in specmn from dgstv org/abd cav|Abnormal immunolog findings in specmn from dgstv org/abd cav +C0476521|T033|PT|R85.4|ICD10CM|Abnormal immunological findings in specimens from digestive organs and abdominal cavity|Abnormal immunological findings in specimens from digestive organs and abdominal cavity +C0476522|T033|AB|R85.5|ICD10CM|Abn microbiolog findings in specmn from dgstv org/abd cav|Abn microbiolog findings in specmn from dgstv org/abd cav +C0476522|T033|PT|R85.5|ICD10CM|Abnormal microbiological findings in specimens from digestive organs and abdominal cavity|Abnormal microbiological findings in specimens from digestive organs and abdominal cavity +C2830509|T033|ET|R85.5|ICD10CM|Positive culture findings in specimens from digestive organs and abdominal cavity|Positive culture findings in specimens from digestive organs and abdominal cavity +C0476523|T033|AB|R85.6|ICD10CM|Abnormal cytolog findings in specmn from dgstv org/abd cav|Abnormal cytolog findings in specmn from dgstv org/abd cav +C0476523|T033|HT|R85.6|ICD10CM|Abnormal cytological findings in specimens from digestive organs and abdominal cavity|Abnormal cytological findings in specimens from digestive organs and abdominal cavity +C2830510|T033|AB|R85.61|ICD10CM|Abnormal cytologic smear of anus|Abnormal cytologic smear of anus +C2830510|T033|HT|R85.61|ICD10CM|Abnormal cytologic smear of anus|Abnormal cytologic smear of anus +C2830511|T033|AB|R85.610|ICD10CM|Atyp squam cell of undet signfc cyto smr anus (ASC-US)|Atyp squam cell of undet signfc cyto smr anus (ASC-US) +C2830511|T033|PT|R85.610|ICD10CM|Atypical squamous cells of undetermined significance on cytologic smear of anus (ASC-US)|Atypical squamous cells of undetermined significance on cytologic smear of anus (ASC-US) +C2830512|T033|AB|R85.611|ICD10CM|Atyp squam cell not excl hi grd intrepith lesn cyto smr anus|Atyp squam cell not excl hi grd intrepith lesn cyto smr anus +C2830513|T033|AB|R85.612|ICD10CM|Low grade intrepith lesion cyto smr anus (LGSIL)|Low grade intrepith lesion cyto smr anus (LGSIL) +C2830513|T033|PT|R85.612|ICD10CM|Low grade squamous intraepithelial lesion on cytologic smear of anus (LGSIL)|Low grade squamous intraepithelial lesion on cytologic smear of anus (LGSIL) +C2830514|T033|AB|R85.613|ICD10CM|High grade intrepith lesion cyto smr anus (HGSIL)|High grade intrepith lesion cyto smr anus (HGSIL) +C2830514|T033|PT|R85.613|ICD10CM|High grade squamous intraepithelial lesion on cytologic smear of anus (HGSIL)|High grade squamous intraepithelial lesion on cytologic smear of anus (HGSIL) +C2830515|T033|AB|R85.614|ICD10CM|Cytologic evidence of malignancy on smear of anus|Cytologic evidence of malignancy on smear of anus +C2830515|T033|PT|R85.614|ICD10CM|Cytologic evidence of malignancy on smear of anus|Cytologic evidence of malignancy on smear of anus +C2830516|T033|ET|R85.615|ICD10CM|Inadequate sample of cytologic smear of anus|Inadequate sample of cytologic smear of anus +C2830517|T033|AB|R85.615|ICD10CM|Unsatisfactory cytologic smear of anus|Unsatisfactory cytologic smear of anus +C2830517|T033|PT|R85.615|ICD10CM|Unsatisfactory cytologic smear of anus|Unsatisfactory cytologic smear of anus +C2349707|T033|AB|R85.616|ICD10CM|Satisfactory anal smear but lacking transformation zone|Satisfactory anal smear but lacking transformation zone +C2349707|T033|PT|R85.616|ICD10CM|Satisfactory anal smear but lacking transformation zone|Satisfactory anal smear but lacking transformation zone +C2830518|T033|AB|R85.618|ICD10CM|Other abnormal cytological findings on specimens from anus|Other abnormal cytological findings on specimens from anus +C2830518|T033|PT|R85.618|ICD10CM|Other abnormal cytological findings on specimens from anus|Other abnormal cytological findings on specimens from anus +C2830519|T033|ET|R85.619|ICD10CM|Abnormal anal cytology NOS|Abnormal anal cytology NOS +C2830520|T033|ET|R85.619|ICD10CM|Atypical glandular cells of anus NOS|Atypical glandular cells of anus NOS +C2830521|T033|AB|R85.619|ICD10CM|Unsp abnormal cytological findings in specimens from anus|Unsp abnormal cytological findings in specimens from anus +C2830521|T033|PT|R85.619|ICD10CM|Unspecified abnormal cytological findings in specimens from anus|Unspecified abnormal cytological findings in specimens from anus +C2830522|T033|AB|R85.69|ICD10CM|Abn cytolog findings in specmn from oth dgstv org/abd cav|Abn cytolog findings in specmn from oth dgstv org/abd cav +C2830522|T033|PT|R85.69|ICD10CM|Abnormal cytological findings in specimens from other digestive organs and abdominal cavity|Abnormal cytological findings in specimens from other digestive organs and abdominal cavity +C0476524|T033|AB|R85.7|ICD10CM|Abnormal histolog findings in specmn from dgstv org/abd cav|Abnormal histolog findings in specmn from dgstv org/abd cav +C0476524|T033|PT|R85.7|ICD10CM|Abnormal histological findings in specimens from digestive organs and abdominal cavity|Abnormal histological findings in specimens from digestive organs and abdominal cavity +C0478174|T033|PT|R85.8|ICD10|Abnormal findings in specimens from digestive organs and abdominal cavity, other abnormal findings|Abnormal findings in specimens from digestive organs and abdominal cavity, other abnormal findings +C0478174|T033|AB|R85.8|ICD10CM|Oth abnormal findings in specimens from dgstv org/abd cav|Oth abnormal findings in specimens from dgstv org/abd cav +C0478174|T033|HT|R85.8|ICD10CM|Other abnormal findings in specimens from digestive organs and abdominal cavity|Other abnormal findings in specimens from digestive organs and abdominal cavity +C2349705|T033|AB|R85.81|ICD10CM|Anal high risk human papillomavirus (HPV) DNA test positive|Anal high risk human papillomavirus (HPV) DNA test positive +C2349705|T033|PT|R85.81|ICD10CM|Anal high risk human papillomavirus (HPV) DNA test positive|Anal high risk human papillomavirus (HPV) DNA test positive +C2830523|T033|AB|R85.82|ICD10CM|Anal low risk human papillomavirus (HPV) DNA test positive|Anal low risk human papillomavirus (HPV) DNA test positive +C2830523|T033|PT|R85.82|ICD10CM|Anal low risk human papillomavirus (HPV) DNA test positive|Anal low risk human papillomavirus (HPV) DNA test positive +C2830524|T033|ET|R85.89|ICD10CM|Abnormal chromosomal findings in specimens from digestive organs and abdominal cavity|Abnormal chromosomal findings in specimens from digestive organs and abdominal cavity +C0478174|T033|AB|R85.89|ICD10CM|Oth abnormal findings in specimens from dgstv org/abd cav|Oth abnormal findings in specimens from dgstv org/abd cav +C0478174|T033|PT|R85.89|ICD10CM|Other abnormal findings in specimens from digestive organs and abdominal cavity|Other abnormal findings in specimens from digestive organs and abdominal cavity +C0476516|T033|AB|R85.9|ICD10CM|Unsp abnormal finding in specimens from dgstv org/abd cav|Unsp abnormal finding in specimens from dgstv org/abd cav +C0476516|T033|PT|R85.9|ICD10CM|Unspecified abnormal finding in specimens from digestive organs and abdominal cavity|Unspecified abnormal finding in specimens from digestive organs and abdominal cavity +C4290280|T033|ET|R86|ICD10CM|abnormal findings in prostatic secretions|abnormal findings in prostatic secretions +C4290281|T033|ET|R86|ICD10CM|abnormal findings in semen, seminal fluid|abnormal findings in semen, seminal fluid +C0476525|T033|AB|R86|ICD10CM|Abnormal findings in specimens from male genital organs|Abnormal findings in specimens from male genital organs +C0476525|T033|HT|R86|ICD10CM|Abnormal findings in specimens from male genital organs|Abnormal findings in specimens from male genital organs +C0476525|T033|HT|R86|ICD10|Abnormal findings in specimens from male genital organs|Abnormal findings in specimens from male genital organs +C0541896|T033|ET|R86|ICD10CM|abnormal spermatozoa|abnormal spermatozoa +C0476526|T033|AB|R86.0|ICD10CM|Abn lev enzymes in specimens from male genital organs|Abn lev enzymes in specimens from male genital organs +C0476526|T033|PT|R86.0|ICD10|Abnormal findings in specimens from male genital organs, abnormal level of enzymes|Abnormal findings in specimens from male genital organs, abnormal level of enzymes +C0476526|T033|PT|R86.0|ICD10CM|Abnormal level of enzymes in specimens from male genital organs|Abnormal level of enzymes in specimens from male genital organs +C0558875|T033|AB|R86.1|ICD10CM|Abn lev hormones in specimens from male genital organs|Abn lev hormones in specimens from male genital organs +C0558875|T033|PT|R86.1|ICD10|Abnormal findings in specimens from male genital organs, abnormal level of hormones|Abnormal findings in specimens from male genital organs, abnormal level of hormones +C0558875|T033|PT|R86.1|ICD10CM|Abnormal level of hormones in specimens from male genital organs|Abnormal level of hormones in specimens from male genital organs +C0476528|T033|AB|R86.2|ICD10CM|Abn lev drug/meds/biol subst in specmn from male gntl organs|Abn lev drug/meds/biol subst in specmn from male gntl organs +C2830527|T033|AB|R86.3|ICD10CM|Abn lev substnc nonmed source in specmn from male gntl org|Abn lev substnc nonmed source in specmn from male gntl org +C2830527|T033|PT|R86.3|ICD10CM|Abnormal level of substances chiefly nonmedicinal as to source in specimens from male genital organs|Abnormal level of substances chiefly nonmedicinal as to source in specimens from male genital organs +C0476530|T033|AB|R86.4|ICD10CM|Abn immunolog findings in specmn from male genital organs|Abn immunolog findings in specmn from male genital organs +C0476530|T033|PT|R86.4|ICD10|Abnormal findings in specimens from male genital organs, abnormal immunological findings|Abnormal findings in specimens from male genital organs, abnormal immunological findings +C0476530|T033|PT|R86.4|ICD10CM|Abnormal immunological findings in specimens from male genital organs|Abnormal immunological findings in specimens from male genital organs +C0476531|T033|AB|R86.5|ICD10CM|Abn microbiolog findings in specmn from male genital organs|Abn microbiolog findings in specmn from male genital organs +C0476531|T033|PT|R86.5|ICD10|Abnormal findings in specimens from male genital organs, abnormal microbiological findings|Abnormal findings in specimens from male genital organs, abnormal microbiological findings +C0476531|T033|PT|R86.5|ICD10CM|Abnormal microbiological findings in specimens from male genital organs|Abnormal microbiological findings in specimens from male genital organs +C2830528|T033|ET|R86.5|ICD10CM|Positive culture findings in specimens from male genital organs|Positive culture findings in specimens from male genital organs +C0476532|T033|AB|R86.6|ICD10CM|Abnormal cytolog findings in specmn from male genital organs|Abnormal cytolog findings in specmn from male genital organs +C0476532|T033|PT|R86.6|ICD10CM|Abnormal cytological findings in specimens from male genital organs|Abnormal cytological findings in specimens from male genital organs +C0476532|T033|PT|R86.6|ICD10|Abnormal findings in specimens from male genital organs, abnormal cytological findings|Abnormal findings in specimens from male genital organs, abnormal cytological findings +C0476533|T033|AB|R86.7|ICD10CM|Abn histolog findings in specmn from male genital organs|Abn histolog findings in specmn from male genital organs +C0476533|T033|PT|R86.7|ICD10|Abnormal findings in specimens from male genital organs, abnormal histological findings|Abnormal findings in specimens from male genital organs, abnormal histological findings +C0476533|T033|PT|R86.7|ICD10CM|Abnormal histological findings in specimens from male genital organs|Abnormal histological findings in specimens from male genital organs +C2830529|T033|ET|R86.8|ICD10CM|Abnormal chromosomal findings in specimens from male genital organs|Abnormal chromosomal findings in specimens from male genital organs +C0478175|T033|PT|R86.8|ICD10|Abnormal findings in specimens from male genital organs, other abnormal findings|Abnormal findings in specimens from male genital organs, other abnormal findings +C0478175|T033|AB|R86.8|ICD10CM|Oth abnormal findings in specimens from male genital organs|Oth abnormal findings in specimens from male genital organs +C0478175|T033|PT|R86.8|ICD10CM|Other abnormal findings in specimens from male genital organs|Other abnormal findings in specimens from male genital organs +C0476525|T033|PT|R86.9|ICD10|Abnormal findings in specimens from male genital organs, unspecified abnormal finding|Abnormal findings in specimens from male genital organs, unspecified abnormal finding +C0476525|T033|AB|R86.9|ICD10CM|Unsp abnormal finding in specimens from male genital organs|Unsp abnormal finding in specimens from male genital organs +C0476525|T033|PT|R86.9|ICD10CM|Unspecified abnormal finding in specimens from male genital organs|Unspecified abnormal finding in specimens from male genital organs +C4290282|T033|ET|R87|ICD10CM|abnormal findings in secretion and smears from cervix uteri|abnormal findings in secretion and smears from cervix uteri +C4290283|T033|ET|R87|ICD10CM|abnormal findings in secretion and smears from vagina|abnormal findings in secretion and smears from vagina +C4290284|T033|ET|R87|ICD10CM|abnormal findings in secretion and smears from vulva|abnormal findings in secretion and smears from vulva +C0495772|T033|AB|R87|ICD10CM|Abnormal findings in specimens from female genital organs|Abnormal findings in specimens from female genital organs +C0495772|T033|HT|R87|ICD10CM|Abnormal findings in specimens from female genital organs|Abnormal findings in specimens from female genital organs +C0495772|T033|HT|R87|ICD10|Abnormal findings in specimens from female genital organs|Abnormal findings in specimens from female genital organs +C2711673|T033|AB|R87.0|ICD10CM|Abn lev enzymes in specimens from female genital organs|Abn lev enzymes in specimens from female genital organs +C2711673|T033|PT|R87.0|ICD10|Abnormal findings in specimens from female genital organs, abnormal level of enzymes|Abnormal findings in specimens from female genital organs, abnormal level of enzymes +C2711673|T033|PT|R87.0|ICD10CM|Abnormal level of enzymes in specimens from female genital organs|Abnormal level of enzymes in specimens from female genital organs +C0476535|T033|AB|R87.1|ICD10CM|Abn lev hormones in specimens from female genital organs|Abn lev hormones in specimens from female genital organs +C0476535|T033|PT|R87.1|ICD10|Abnormal findings in specimens from female genital organs, abnormal level of hormones|Abnormal findings in specimens from female genital organs, abnormal level of hormones +C0476535|T033|PT|R87.1|ICD10CM|Abnormal level of hormones in specimens from female genital organs|Abnormal level of hormones in specimens from female genital organs +C0476536|T033|AB|R87.2|ICD10CM|Abn lev drug/meds/biol subst in specmn from fem gntl organs|Abn lev drug/meds/biol subst in specmn from fem gntl organs +C2830533|T033|AB|R87.3|ICD10CM|Abn lev substnc nonmed source in specmn from fem gntl organs|Abn lev substnc nonmed source in specmn from fem gntl organs +C0476538|T033|AB|R87.4|ICD10CM|Abn immunolog findings in specmn from female genital organs|Abn immunolog findings in specmn from female genital organs +C0476538|T033|PT|R87.4|ICD10|Abnormal findings in specimens from female genital organs, abnormal immunological findings|Abnormal findings in specimens from female genital organs, abnormal immunological findings +C0476538|T033|PT|R87.4|ICD10CM|Abnormal immunological findings in specimens from female genital organs|Abnormal immunological findings in specimens from female genital organs +C0476539|T033|AB|R87.5|ICD10CM|Abn microbiolog find in specmn from female genital organs|Abn microbiolog find in specmn from female genital organs +C0476539|T033|PT|R87.5|ICD10|Abnormal findings in specimens from female genital organs, abnormal microbiological findings|Abnormal findings in specimens from female genital organs, abnormal microbiological findings +C0476539|T033|PT|R87.5|ICD10CM|Abnormal microbiological findings in specimens from female genital organs|Abnormal microbiological findings in specimens from female genital organs +C2830534|T033|ET|R87.5|ICD10CM|Positive culture findings in specimens from female genital organs|Positive culture findings in specimens from female genital organs +C0558782|T033|AB|R87.6|ICD10CM|Abn cytolog findings in specmn from female genital organs|Abn cytolog findings in specmn from female genital organs +C0558782|T033|HT|R87.6|ICD10CM|Abnormal cytological findings in specimens from female genital organs|Abnormal cytological findings in specimens from female genital organs +C0495769|T033|PT|R87.6|ICD10|Abnormal findings in specimens from female genital organs, abnormal cytological findings|Abnormal findings in specimens from female genital organs, abnormal cytological findings +C2830535|T033|AB|R87.61|ICD10CM|Abnormal cytological findings in specimens from cervix uteri|Abnormal cytological findings in specimens from cervix uteri +C2830535|T033|HT|R87.61|ICD10CM|Abnormal cytological findings in specimens from cervix uteri|Abnormal cytological findings in specimens from cervix uteri +C2830536|T033|AB|R87.610|ICD10CM|Atyp squam cell of undet signfc cyto smr crvx (ASC-US)|Atyp squam cell of undet signfc cyto smr crvx (ASC-US) +C2830536|T033|PT|R87.610|ICD10CM|Atypical squamous cells of undetermined significance on cytologic smear of cervix (ASC-US)|Atypical squamous cells of undetermined significance on cytologic smear of cervix (ASC-US) +C2830537|T033|AB|R87.611|ICD10CM|Atyp squam cell not excl hi grd intrepith lesn cyto smr crvx|Atyp squam cell not excl hi grd intrepith lesn cyto smr crvx +C2830538|T033|AB|R87.612|ICD10CM|Low grade intrepith lesion cyto smr crvx (LGSIL)|Low grade intrepith lesion cyto smr crvx (LGSIL) +C2830538|T033|PT|R87.612|ICD10CM|Low grade squamous intraepithelial lesion on cytologic smear of cervix (LGSIL)|Low grade squamous intraepithelial lesion on cytologic smear of cervix (LGSIL) +C2830539|T033|AB|R87.613|ICD10CM|High grade intrepith lesion cyto smr crvx (HGSIL)|High grade intrepith lesion cyto smr crvx (HGSIL) +C2830539|T033|PT|R87.613|ICD10CM|High grade squamous intraepithelial lesion on cytologic smear of cervix (HGSIL)|High grade squamous intraepithelial lesion on cytologic smear of cervix (HGSIL) +C2830540|T033|AB|R87.614|ICD10CM|Cytologic evidence of malignancy on smear of cervix|Cytologic evidence of malignancy on smear of cervix +C2830540|T033|PT|R87.614|ICD10CM|Cytologic evidence of malignancy on smear of cervix|Cytologic evidence of malignancy on smear of cervix +C2830541|T033|ET|R87.615|ICD10CM|Inadequate sample of cytologic smear of cervix|Inadequate sample of cytologic smear of cervix +C2830542|T033|AB|R87.615|ICD10CM|Unsatisfactory cytologic smear of cervix|Unsatisfactory cytologic smear of cervix +C2830542|T033|PT|R87.615|ICD10CM|Unsatisfactory cytologic smear of cervix|Unsatisfactory cytologic smear of cervix +C2349680|T033|AB|R87.616|ICD10CM|Satisfactory cervical smear but lacking transformation zone|Satisfactory cervical smear but lacking transformation zone +C2349680|T033|PT|R87.616|ICD10CM|Satisfactory cervical smear but lacking transformation zone|Satisfactory cervical smear but lacking transformation zone +C2830543|T033|AB|R87.618|ICD10CM|Oth abnormal cytolog findings on specimens from cervix uteri|Oth abnormal cytolog findings on specimens from cervix uteri +C2830543|T033|PT|R87.618|ICD10CM|Other abnormal cytological findings on specimens from cervix uteri|Other abnormal cytological findings on specimens from cervix uteri +C1455900|T033|ET|R87.619|ICD10CM|Abnormal cervical cytology NOS|Abnormal cervical cytology NOS +C0476427|T033|ET|R87.619|ICD10CM|Abnormal Papanicolaou smear of cervix NOS|Abnormal Papanicolaou smear of cervix NOS +C1455901|T033|ET|R87.619|ICD10CM|Abnormal thin preparation smear of cervix NOS|Abnormal thin preparation smear of cervix NOS +C2830544|T033|ET|R87.619|ICD10CM|Atypical endocervial cells of cervix NOS|Atypical endocervial cells of cervix NOS +C2830545|T033|ET|R87.619|ICD10CM|Atypical endometrial cells of cervix NOS|Atypical endometrial cells of cervix NOS +C2830546|T033|ET|R87.619|ICD10CM|Atypical glandular cells of cervix NOS|Atypical glandular cells of cervix NOS +C2830547|T033|AB|R87.619|ICD10CM|Unsp abnormal cytolog findings in specmn from cervix uteri|Unsp abnormal cytolog findings in specmn from cervix uteri +C2830547|T033|PT|R87.619|ICD10CM|Unspecified abnormal cytological findings in specimens from cervix uteri|Unspecified abnormal cytological findings in specimens from cervix uteri +C2830548|T033|AB|R87.62|ICD10CM|Abnormal cytological findings in specimens from vagina|Abnormal cytological findings in specimens from vagina +C2830548|T033|HT|R87.62|ICD10CM|Abnormal cytological findings in specimens from vagina|Abnormal cytological findings in specimens from vagina +C2830549|T033|AB|R87.620|ICD10CM|Atyp squam cell of undet signfc cyto smr vagn (ASC-US)|Atyp squam cell of undet signfc cyto smr vagn (ASC-US) +C2830549|T033|PT|R87.620|ICD10CM|Atypical squamous cells of undetermined significance on cytologic smear of vagina (ASC-US)|Atypical squamous cells of undetermined significance on cytologic smear of vagina (ASC-US) +C2830550|T033|AB|R87.621|ICD10CM|Atyp squam cell not excl hi grd intrepith lesn cyto smr vagn|Atyp squam cell not excl hi grd intrepith lesn cyto smr vagn +C2830551|T033|AB|R87.622|ICD10CM|Low grade intrepith lesion cyto smr vagn (LGSIL)|Low grade intrepith lesion cyto smr vagn (LGSIL) +C2830551|T033|PT|R87.622|ICD10CM|Low grade squamous intraepithelial lesion on cytologic smear of vagina (LGSIL)|Low grade squamous intraepithelial lesion on cytologic smear of vagina (LGSIL) +C2830552|T033|AB|R87.623|ICD10CM|High grade intrepith lesion cyto smr vagn (HGSIL)|High grade intrepith lesion cyto smr vagn (HGSIL) +C2830552|T033|PT|R87.623|ICD10CM|High grade squamous intraepithelial lesion on cytologic smear of vagina (HGSIL)|High grade squamous intraepithelial lesion on cytologic smear of vagina (HGSIL) +C2830553|T033|AB|R87.624|ICD10CM|Cytologic evidence of malignancy on smear of vagina|Cytologic evidence of malignancy on smear of vagina +C2830553|T033|PT|R87.624|ICD10CM|Cytologic evidence of malignancy on smear of vagina|Cytologic evidence of malignancy on smear of vagina +C2830554|T033|ET|R87.625|ICD10CM|Inadequate sample of cytologic smear of vagina|Inadequate sample of cytologic smear of vagina +C2830555|T033|AB|R87.625|ICD10CM|Unsatisfactory cytologic smear of vagina|Unsatisfactory cytologic smear of vagina +C2830555|T033|PT|R87.625|ICD10CM|Unsatisfactory cytologic smear of vagina|Unsatisfactory cytologic smear of vagina +C2830556|T033|AB|R87.628|ICD10CM|Other abnormal cytological findings on specimens from vagina|Other abnormal cytological findings on specimens from vagina +C2830556|T033|PT|R87.628|ICD10CM|Other abnormal cytological findings on specimens from vagina|Other abnormal cytological findings on specimens from vagina +C2830557|T033|ET|R87.629|ICD10CM|Abnormal Papanicolaou smear of vagina NOS|Abnormal Papanicolaou smear of vagina NOS +C2349697|T033|ET|R87.629|ICD10CM|Abnormal thin preparation smear of vagina NOS|Abnormal thin preparation smear of vagina NOS +C2349698|T033|ET|R87.629|ICD10CM|Abnormal vaginal cytology NOS|Abnormal vaginal cytology NOS +C2830558|T033|ET|R87.629|ICD10CM|Atypical endocervical cells of vagina NOS|Atypical endocervical cells of vagina NOS +C2830559|T033|ET|R87.629|ICD10CM|Atypical endometrial cells of vagina NOS|Atypical endometrial cells of vagina NOS +C2830560|T033|ET|R87.629|ICD10CM|Atypical glandular cells of vagina NOS|Atypical glandular cells of vagina NOS +C2830561|T033|AB|R87.629|ICD10CM|Unsp abnormal cytological findings in specimens from vagina|Unsp abnormal cytological findings in specimens from vagina +C2830561|T033|PT|R87.629|ICD10CM|Unspecified abnormal cytological findings in specimens from vagina|Unspecified abnormal cytological findings in specimens from vagina +C2830562|T033|AB|R87.69|ICD10CM|Abn cytolog find in specmn from oth female genital organs|Abn cytolog find in specmn from oth female genital organs +C0558782|T033|ET|R87.69|ICD10CM|Abnormal cytological findings in specimens from female genital organs NOS|Abnormal cytological findings in specimens from female genital organs NOS +C2830562|T033|PT|R87.69|ICD10CM|Abnormal cytological findings in specimens from other female genital organs|Abnormal cytological findings in specimens from other female genital organs +C0476540|T033|AB|R87.7|ICD10CM|Abn histolog findings in specmn from female genital organs|Abn histolog findings in specmn from female genital organs +C0476540|T033|PT|R87.7|ICD10|Abnormal findings in specimens from female genital organs, abnormal histological findings|Abnormal findings in specimens from female genital organs, abnormal histological findings +C0476540|T033|PT|R87.7|ICD10CM|Abnormal histological findings in specimens from female genital organs|Abnormal histological findings in specimens from female genital organs +C0478176|T033|PT|R87.8|ICD10|Abnormal findings in specimens from female genital organs, other abnormal findings|Abnormal findings in specimens from female genital organs, other abnormal findings +C0478176|T033|AB|R87.8|ICD10CM|Oth abnormal findings in specmn from female genital organs|Oth abnormal findings in specmn from female genital organs +C0478176|T033|HT|R87.8|ICD10CM|Other abnormal findings in specimens from female genital organs|Other abnormal findings in specimens from female genital organs +C2830563|T033|AB|R87.81|ICD10CM|High risk HPV DNA test positive from female genital organs|High risk HPV DNA test positive from female genital organs +C2830563|T033|HT|R87.81|ICD10CM|High risk human papillomavirus (HPV) DNA test positive from female genital organs|High risk human papillomavirus (HPV) DNA test positive from female genital organs +C1455894|T033|AB|R87.810|ICD10CM|Cervical high risk HPV DNA test positive|Cervical high risk HPV DNA test positive +C1455894|T033|PT|R87.810|ICD10CM|Cervical high risk human papillomavirus (HPV) DNA test positive|Cervical high risk human papillomavirus (HPV) DNA test positive +C2349689|T033|AB|R87.811|ICD10CM|Vaginal high risk HPV DNA test positive|Vaginal high risk HPV DNA test positive +C2349689|T033|PT|R87.811|ICD10CM|Vaginal high risk human papillomavirus (HPV) DNA test positive|Vaginal high risk human papillomavirus (HPV) DNA test positive +C2830564|T033|AB|R87.82|ICD10CM|Low risk HPV DNA test positive from female genital organs|Low risk HPV DNA test positive from female genital organs +C2830564|T033|HT|R87.82|ICD10CM|Low risk human papillomavirus (HPV) DNA test positive from female genital organs|Low risk human papillomavirus (HPV) DNA test positive from female genital organs +C2830565|T033|AB|R87.820|ICD10CM|Cervical low risk HPV DNA test positive|Cervical low risk HPV DNA test positive +C2830565|T033|PT|R87.820|ICD10CM|Cervical low risk human papillomavirus (HPV) DNA test positive|Cervical low risk human papillomavirus (HPV) DNA test positive +C2830566|T033|AB|R87.821|ICD10CM|Vaginal low risk HPV DNA test positive|Vaginal low risk HPV DNA test positive +C2830566|T033|PT|R87.821|ICD10CM|Vaginal low risk human papillomavirus (HPV) DNA test positive|Vaginal low risk human papillomavirus (HPV) DNA test positive +C2830567|T033|ET|R87.89|ICD10CM|Abnormal chromosomal findings in specimens from female genital organs|Abnormal chromosomal findings in specimens from female genital organs +C0478176|T033|AB|R87.89|ICD10CM|Oth abnormal findings in specmn from female genital organs|Oth abnormal findings in specmn from female genital organs +C0478176|T033|PT|R87.89|ICD10CM|Other abnormal findings in specimens from female genital organs|Other abnormal findings in specimens from female genital organs +C0495772|T033|PT|R87.9|ICD10|Abnormal findings in specimens from female genital organs, unspecified abnormal finding|Abnormal findings in specimens from female genital organs, unspecified abnormal finding +C0495772|T033|AB|R87.9|ICD10CM|Unsp abnormal finding in specmn from female genital organs|Unsp abnormal finding in specmn from female genital organs +C0495772|T033|PT|R87.9|ICD10CM|Unspecified abnormal finding in specimens from female genital organs|Unspecified abnormal finding in specimens from female genital organs +C2830568|T033|HT|R88|ICD10CM|Abnormal findings in other body fluids and substances|Abnormal findings in other body fluids and substances +C2830568|T033|AB|R88|ICD10CM|Abnormal findings in other body fluids and substances|Abnormal findings in other body fluids and substances +C0878709|T184|AB|R88.0|ICD10CM|Cloudy (hemodialysis) (peritoneal) dialysis effluent|Cloudy (hemodialysis) (peritoneal) dialysis effluent +C0878709|T184|PT|R88.0|ICD10CM|Cloudy (hemodialysis) (peritoneal) dialysis effluent|Cloudy (hemodialysis) (peritoneal) dialysis effluent +C2830568|T033|AB|R88.8|ICD10CM|Abnormal findings in other body fluids and substances|Abnormal findings in other body fluids and substances +C2830568|T033|PT|R88.8|ICD10CM|Abnormal findings in other body fluids and substances|Abnormal findings in other body fluids and substances +C4290285|T033|ET|R89|ICD10CM|abnormal findings in nipple discharge|abnormal findings in nipple discharge +C0495773|T033|AB|R89|ICD10CM|Abnormal findings in specimens from oth org/tiss|Abnormal findings in specimens from oth org/tiss +C0495773|T033|HT|R89|ICD10CM|Abnormal findings in specimens from other organs, systems and tissues|Abnormal findings in specimens from other organs, systems and tissues +C0495773|T033|HT|R89|ICD10|Abnormal findings in specimens from other organs, systems and tissues|Abnormal findings in specimens from other organs, systems and tissues +C4290286|T033|ET|R89|ICD10CM|abnormal findings in synovial fluid|abnormal findings in synovial fluid +C4290287|T033|ET|R89|ICD10CM|abnormal findings in wound secretions|abnormal findings in wound secretions +C0478177|T033|PT|R89.0|ICD10|Abnormal findings in specimens from other organs, abnormal level of enzymes|Abnormal findings in specimens from other organs, abnormal level of enzymes +C0478177|T033|AB|R89.0|ICD10CM|Abnormal level of enzymes in specimens from oth org/tiss|Abnormal level of enzymes in specimens from oth org/tiss +C0478177|T033|PT|R89.0|ICD10CM|Abnormal level of enzymes in specimens from other organs, systems and tissues|Abnormal level of enzymes in specimens from other organs, systems and tissues +C0478178|T033|PT|R89.1|ICD10|Abnormal findings in specimens from other organs, abnormal level of hormones|Abnormal findings in specimens from other organs, abnormal level of hormones +C0478178|T033|AB|R89.1|ICD10CM|Abnormal level of hormones in specimens from oth org/tiss|Abnormal level of hormones in specimens from oth org/tiss +C0478178|T033|PT|R89.1|ICD10CM|Abnormal level of hormones in specimens from other organs, systems and tissues|Abnormal level of hormones in specimens from other organs, systems and tissues +C2830572|T033|AB|R89.2|ICD10CM|Abn lev drug/meds/biol subst in specimens from oth org/tiss|Abn lev drug/meds/biol subst in specimens from oth org/tiss +C2830573|T033|AB|R89.3|ICD10CM|Abn lev substnc nonmed source in specmn from oth org/tiss|Abn lev substnc nonmed source in specmn from oth org/tiss +C0478181|T033|PT|R89.4|ICD10|Abnormal findings in specimens from other organs, abnormal immunological findings|Abnormal findings in specimens from other organs, abnormal immunological findings +C0478181|T033|AB|R89.4|ICD10CM|Abnormal immunolog findings in specimens from oth org/tiss|Abnormal immunolog findings in specimens from oth org/tiss +C0478181|T033|PT|R89.4|ICD10CM|Abnormal immunological findings in specimens from other organs, systems and tissues|Abnormal immunological findings in specimens from other organs, systems and tissues +C0478182|T033|PT|R89.5|ICD10|Abnormal findings in specimens from other organs, abnormal microbiological findings|Abnormal findings in specimens from other organs, abnormal microbiological findings +C0478182|T033|AB|R89.5|ICD10CM|Abnormal microbiolog findings in specimens from oth org/tiss|Abnormal microbiolog findings in specimens from oth org/tiss +C0478182|T033|PT|R89.5|ICD10CM|Abnormal microbiological findings in specimens from other organs, systems and tissues|Abnormal microbiological findings in specimens from other organs, systems and tissues +C2830574|T033|ET|R89.5|ICD10CM|Positive culture findings in specimens from other organs, systems and tissues|Positive culture findings in specimens from other organs, systems and tissues +C0478183|T033|AB|R89.6|ICD10CM|Abnormal cytological findings in specimens from oth org/tiss|Abnormal cytological findings in specimens from oth org/tiss +C0478183|T033|PT|R89.6|ICD10CM|Abnormal cytological findings in specimens from other organs, systems and tissues|Abnormal cytological findings in specimens from other organs, systems and tissues +C0478183|T033|PT|R89.6|ICD10|Abnormal findings in specimens from other organs, abnormal cytological findings|Abnormal findings in specimens from other organs, abnormal cytological findings +C0478184|T033|PT|R89.7|ICD10|Abnormal findings in specimens from other organs, abnormal histological findings|Abnormal findings in specimens from other organs, abnormal histological findings +C0478184|T033|AB|R89.7|ICD10CM|Abnormal histolog findings in specimens from oth org/tiss|Abnormal histolog findings in specimens from oth org/tiss +C0478184|T033|PT|R89.7|ICD10CM|Abnormal histological findings in specimens from other organs, systems and tissues|Abnormal histological findings in specimens from other organs, systems and tissues +C2830575|T033|ET|R89.8|ICD10CM|Abnormal chromosomal findings in specimens from other organs, systems and tissues|Abnormal chromosomal findings in specimens from other organs, systems and tissues +C0478185|T033|PT|R89.8|ICD10|Abnormal findings in specimens from other organs, other abnormal findings|Abnormal findings in specimens from other organs, other abnormal findings +C0478185|T033|AB|R89.8|ICD10CM|Oth abnormal findings in specimens from oth org/tiss|Oth abnormal findings in specimens from oth org/tiss +C0478185|T033|PT|R89.8|ICD10CM|Other abnormal findings in specimens from other organs, systems and tissues|Other abnormal findings in specimens from other organs, systems and tissues +C0495783|T033|PT|R89.9|ICD10|Abnormal findings in specimens from other organs, unspecified abnormal finding|Abnormal findings in specimens from other organs, unspecified abnormal finding +C2830576|T033|AB|R89.9|ICD10CM|Unsp abnormal finding in specimens from oth org/tiss|Unsp abnormal finding in specimens from oth org/tiss +C2830576|T033|PT|R89.9|ICD10CM|Unspecified abnormal finding in specimens from other organs, systems and tissues|Unspecified abnormal finding in specimens from other organs, systems and tissues +C0495784|T033|HT|R90|ICD10|Abnormal findings on diagnostic imaging of central nervous system|Abnormal findings on diagnostic imaging of central nervous system +C0495784|T033|HT|R90|ICD10CM|Abnormal findings on diagnostic imaging of central nervous system|Abnormal findings on diagnostic imaging of central nervous system +C0495784|T033|AB|R90|ICD10CM|Abnormal findings on diagnostic imaging of cnsl|Abnormal findings on diagnostic imaging of cnsl +C0478186|T033|HT|R90-F94.9|ICD10|Abnormal findings on diagnostic imaging and in function studies, without diagnosis|Abnormal findings on diagnostic imaging and in function studies, without diagnosis +C0478186|T033|HT|R90-R94|ICD10CM|Abnormal findings on diagnostic imaging and in function studies, without diagnosis (R90-R94)|Abnormal findings on diagnostic imaging and in function studies, without diagnosis (R90-R94) +C4290288|T033|ET|R90-R94|ICD10CM|nonspecific abnormal findings on diagnostic imaging by computerized axial tomography [CAT scan]|nonspecific abnormal findings on diagnostic imaging by computerized axial tomography [CAT scan] +C4290289|T033|ET|R90-R94|ICD10CM|nonspecific abnormal findings on diagnostic imaging by magnetic resonance imaging [MRI][NMR]|nonspecific abnormal findings on diagnostic imaging by magnetic resonance imaging [MRI][NMR] +C4290290|T033|ET|R90-R94|ICD10CM|nonspecific abnormal findings on diagnostic imaging by positron emission tomography [PET scan]|nonspecific abnormal findings on diagnostic imaging by positron emission tomography [PET scan] +C4290291|T033|ET|R90-R94|ICD10CM|nonspecific abnormal findings on diagnostic imaging by thermography|nonspecific abnormal findings on diagnostic imaging by thermography +C4290292|T033|ET|R90-R94|ICD10CM|nonspecific abnormal findings on diagnostic imaging by ultrasound [echogram]|nonspecific abnormal findings on diagnostic imaging by ultrasound [echogram] +C4290293|T033|ET|R90-R94|ICD10CM|nonspecific abnormal findings on diagnostic imaging by X-ray examination|nonspecific abnormal findings on diagnostic imaging by X-ray examination +C2830583|T033|AB|R90.0|ICD10CM|Intcrn space-occupying lesion found on dx imaging of cnsl|Intcrn space-occupying lesion found on dx imaging of cnsl +C0495785|T033|PT|R90.0|ICD10|Intracranial space-occupying lesion|Intracranial space-occupying lesion +C2830583|T033|PT|R90.0|ICD10CM|Intracranial space-occupying lesion found on diagnostic imaging of central nervous system|Intracranial space-occupying lesion found on diagnostic imaging of central nervous system +C0478187|T033|AB|R90.8|ICD10CM|Oth abnormal findings on diagnostic imaging of cnsl|Oth abnormal findings on diagnostic imaging of cnsl +C0478187|T033|HT|R90.8|ICD10CM|Other abnormal findings on diagnostic imaging of central nervous system|Other abnormal findings on diagnostic imaging of central nervous system +C0478187|T033|PT|R90.8|ICD10|Other abnormal findings on diagnostic imaging of central nervous system|Other abnormal findings on diagnostic imaging of central nervous system +C0476391|T033|AB|R90.81|ICD10CM|Abnormal echoencephalogram|Abnormal echoencephalogram +C0476391|T033|PT|R90.81|ICD10CM|Abnormal echoencephalogram|Abnormal echoencephalogram +C2830584|T033|AB|R90.82|ICD10CM|White matter disease, unspecified|White matter disease, unspecified +C2830584|T033|PT|R90.82|ICD10CM|White matter disease, unspecified|White matter disease, unspecified +C0478187|T033|AB|R90.89|ICD10CM|Oth abnormal findings on diagnostic imaging of cnsl|Oth abnormal findings on diagnostic imaging of cnsl +C0478187|T033|PT|R90.89|ICD10CM|Other abnormal findings on diagnostic imaging of central nervous system|Other abnormal findings on diagnostic imaging of central nervous system +C2830585|T033|ET|R90.89|ICD10CM|Other cerebrovascular abnormality found on diagnostic imaging of central nervous system|Other cerebrovascular abnormality found on diagnostic imaging of central nervous system +C0495786|T033|PT|R91|ICD10|Abnormal findings on diagnostic imaging of lung|Abnormal findings on diagnostic imaging of lung +C0495786|T033|HT|R91|ICD10CM|Abnormal findings on diagnostic imaging of lung|Abnormal findings on diagnostic imaging of lung +C0495786|T033|AB|R91|ICD10CM|Abnormal findings on diagnostic imaging of lung|Abnormal findings on diagnostic imaging of lung +C0009250|T047|ET|R91.1|ICD10CM|Coin lesion lung|Coin lesion lung +C2350019|T191|AB|R91.1|ICD10CM|Solitary pulmonary nodule|Solitary pulmonary nodule +C2350019|T191|PT|R91.1|ICD10CM|Solitary pulmonary nodule|Solitary pulmonary nodule +C3161219|T047|ET|R91.1|ICD10CM|Solitary pulmonary nodule, subsegmental branch of the bronchial tree|Solitary pulmonary nodule, subsegmental branch of the bronchial tree +C3264580|T033|ET|R91.8|ICD10CM|Lung mass NOS found on diagnostic imaging of lung|Lung mass NOS found on diagnostic imaging of lung +C3161126|T033|AB|R91.8|ICD10CM|Other nonspecific abnormal finding of lung field|Other nonspecific abnormal finding of lung field +C3161126|T033|PT|R91.8|ICD10CM|Other nonspecific abnormal finding of lung field|Other nonspecific abnormal finding of lung field +C0235896|T033|ET|R91.8|ICD10CM|Pulmonary infiltrate NOS|Pulmonary infiltrate NOS +C0476367|T033|ET|R91.8|ICD10CM|Shadow, lung|Shadow, lung +C2830588|T033|HT|R92|ICD10CM|Abnormal and inconclusive findings on diagnostic imaging of breast|Abnormal and inconclusive findings on diagnostic imaging of breast +C2830588|T033|AB|R92|ICD10CM|Abnormal and inconclusive findings on dx imaging of breast|Abnormal and inconclusive findings on dx imaging of breast +C0495787|T033|PT|R92|ICD10|Abnormal findings on diagnostic imaging of breast|Abnormal findings on diagnostic imaging of breast +C2830589|T033|PT|R92.0|ICD10CM|Mammographic microcalcification found on diagnostic imaging of breast|Mammographic microcalcification found on diagnostic imaging of breast +C2830589|T033|AB|R92.0|ICD10CM|Mammographic microcalcification found on dx imaging of brst|Mammographic microcalcification found on dx imaging of brst +C2830590|T033|AB|R92.1|ICD10CM|Mammographic calcifcn found on diagnostic imaging of breast|Mammographic calcifcn found on diagnostic imaging of breast +C2830590|T033|PT|R92.1|ICD10CM|Mammographic calcification found on diagnostic imaging of breast|Mammographic calcification found on diagnostic imaging of breast +C2830590|T033|ET|R92.1|ICD10CM|Mammographic calculus found on diagnostic imaging of breast|Mammographic calculus found on diagnostic imaging of breast +C2712715|T033|ET|R92.2|ICD10CM|Dense breasts NOS|Dense breasts NOS +C2712369|T033|AB|R92.2|ICD10CM|Inconclusive mammogram|Inconclusive mammogram +C2712369|T033|PT|R92.2|ICD10CM|Inconclusive mammogram|Inconclusive mammogram +C2712716|T033|ET|R92.2|ICD10CM|Inconclusive mammogram NEC|Inconclusive mammogram NEC +C2712717|T033|ET|R92.2|ICD10CM|Inconclusive mammography due to dense breasts|Inconclusive mammography due to dense breasts +C2712718|T033|ET|R92.2|ICD10CM|Inconclusive mammography NEC|Inconclusive mammography NEC +C2830591|T033|AB|R92.8|ICD10CM|Oth abn and inconclusive findings on dx imaging of breast|Oth abn and inconclusive findings on dx imaging of breast +C2830591|T033|PT|R92.8|ICD10CM|Other abnormal and inconclusive findings on diagnostic imaging of breast|Other abnormal and inconclusive findings on diagnostic imaging of breast +C0495788|T033|AB|R93|ICD10CM|Abnormal findings on diagnostic imaging of body structures|Abnormal findings on diagnostic imaging of body structures +C0495788|T033|HT|R93|ICD10CM|Abnormal findings on diagnostic imaging of other body structures|Abnormal findings on diagnostic imaging of other body structures +C0495788|T033|HT|R93|ICD10|Abnormal findings on diagnostic imaging of other body structures|Abnormal findings on diagnostic imaging of other body structures +C1742883|T033|PT|R93.0|ICD10|Abnormal findings on diagnostic imaging of skull and head, not elsewhere classified|Abnormal findings on diagnostic imaging of skull and head, not elsewhere classified +C1742883|T033|PT|R93.0|ICD10CM|Abnormal findings on diagnostic imaging of skull and head, not elsewhere classified|Abnormal findings on diagnostic imaging of skull and head, not elsewhere classified +C1742883|T033|AB|R93.0|ICD10CM|Abnormal findings on dx imaging of skull and head, NEC|Abnormal findings on dx imaging of skull and head, NEC +C0476369|T033|ET|R93.1|ICD10CM|Abnormal echocardiogram NOS|Abnormal echocardiogram NOS +C0495789|T033|PT|R93.1|ICD10|Abnormal findings on diagnostic imaging of heart and coronary circulation|Abnormal findings on diagnostic imaging of heart and coronary circulation +C0495789|T033|PT|R93.1|ICD10CM|Abnormal findings on diagnostic imaging of heart and coronary circulation|Abnormal findings on diagnostic imaging of heart and coronary circulation +C0495789|T033|AB|R93.1|ICD10CM|Abnormal findings on dx imaging of heart and cor circ|Abnormal findings on dx imaging of heart and cor circ +C0476370|T033|ET|R93.1|ICD10CM|Abnormal heart shadow|Abnormal heart shadow +C0495790|T033|PT|R93.2|ICD10CM|Abnormal findings on diagnostic imaging of liver and biliary tract|Abnormal findings on diagnostic imaging of liver and biliary tract +C0495790|T033|PT|R93.2|ICD10|Abnormal findings on diagnostic imaging of liver and biliary tract|Abnormal findings on diagnostic imaging of liver and biliary tract +C0495790|T033|AB|R93.2|ICD10CM|Abnormal findings on dx imaging of liver and biliary tract|Abnormal findings on dx imaging of liver and biliary tract +C0347946|T033|ET|R93.2|ICD10CM|Nonvisualization of gallbladder|Nonvisualization of gallbladder +C0478189|T033|PT|R93.3|ICD10|Abnormal findings on diagnostic imaging of other parts of digestive tract|Abnormal findings on diagnostic imaging of other parts of digestive tract +C0478189|T033|PT|R93.3|ICD10CM|Abnormal findings on diagnostic imaging of other parts of digestive tract|Abnormal findings on diagnostic imaging of other parts of digestive tract +C0478189|T033|AB|R93.3|ICD10CM|Abnormal findings on dx imaging of prt digestive tract|Abnormal findings on dx imaging of prt digestive tract +C0495791|T033|PT|R93.4|ICD10|Abnormal findings on diagnostic imaging of urinary organs|Abnormal findings on diagnostic imaging of urinary organs +C0495791|T033|AB|R93.4|ICD10CM|Abnormal findings on diagnostic imaging of urinary organs|Abnormal findings on diagnostic imaging of urinary organs +C0495791|T033|HT|R93.4|ICD10CM|Abnormal findings on diagnostic imaging of urinary organs|Abnormal findings on diagnostic imaging of urinary organs +C4269218|T033|AB|R93.41|ICD10CM|Abn radlgc find on dx imaging renal pelv, ureter, or blddr|Abn radlgc find on dx imaging renal pelv, ureter, or blddr +C4269218|T033|PT|R93.41|ICD10CM|Abnormal radiologic findings on diagnostic imaging of renal pelvis, ureter, or bladder|Abnormal radiologic findings on diagnostic imaging of renal pelvis, ureter, or bladder +C4269219|T033|ET|R93.41|ICD10CM|Filling defect of bladder found on diagnostic imaging|Filling defect of bladder found on diagnostic imaging +C4269220|T033|ET|R93.41|ICD10CM|Filling defect of renal pelvis found on diagnostic imaging|Filling defect of renal pelvis found on diagnostic imaging +C4269221|T033|ET|R93.41|ICD10CM|Filling defect of ureter found on diagnostic imaging|Filling defect of ureter found on diagnostic imaging +C4269222|T033|AB|R93.42|ICD10CM|Abnormal radiologic findings on diagnostic imaging of kidney|Abnormal radiologic findings on diagnostic imaging of kidney +C4269222|T033|HT|R93.42|ICD10CM|Abnormal radiologic findings on diagnostic imaging of kidney|Abnormal radiologic findings on diagnostic imaging of kidney +C4269223|T033|PT|R93.421|ICD10CM|Abnormal radiologic findings on diagnostic imaging of right kidney|Abnormal radiologic findings on diagnostic imaging of right kidney +C4269223|T033|AB|R93.421|ICD10CM|Abnormal radiologic findings on dx imaging of r kidney|Abnormal radiologic findings on dx imaging of r kidney +C4269224|T033|PT|R93.422|ICD10CM|Abnormal radiologic findings on diagnostic imaging of left kidney|Abnormal radiologic findings on diagnostic imaging of left kidney +C4269224|T033|AB|R93.422|ICD10CM|Abnormal radiologic findings on dx imaging of left kidney|Abnormal radiologic findings on dx imaging of left kidney +C4269225|T033|PT|R93.429|ICD10CM|Abnormal radiologic findings on diagnostic imaging of unspecified kidney|Abnormal radiologic findings on diagnostic imaging of unspecified kidney +C4269225|T033|AB|R93.429|ICD10CM|Abnormal radiologic findings on dx imaging of unsp kidney|Abnormal radiologic findings on dx imaging of unsp kidney +C4269226|T033|AB|R93.49|ICD10CM|Abn radlgc findings on dx imaging of other urinary organs|Abn radlgc findings on dx imaging of other urinary organs +C4269226|T033|PT|R93.49|ICD10CM|Abnormal radiologic findings on diagnostic imaging of other urinary organs|Abnormal radiologic findings on diagnostic imaging of other urinary organs +C0478190|T033|AB|R93.5|ICD10CM|Abn findings on dx imaging of abd regions, inc retroperiton|Abn findings on dx imaging of abd regions, inc retroperiton +C0478190|T033|PT|R93.5|ICD10CM|Abnormal findings on diagnostic imaging of other abdominal regions, including retroperitoneum|Abnormal findings on diagnostic imaging of other abdominal regions, including retroperitoneum +C0478190|T033|PT|R93.5|ICD10|Abnormal findings on diagnostic imaging of other abdominal regions, including retroperitoneum|Abnormal findings on diagnostic imaging of other abdominal regions, including retroperitoneum +C0476541|T033|PT|R93.6|ICD10|Abnormal findings on diagnostic imaging of limbs|Abnormal findings on diagnostic imaging of limbs +C0476541|T033|PT|R93.6|ICD10CM|Abnormal findings on diagnostic imaging of limbs|Abnormal findings on diagnostic imaging of limbs +C0476541|T033|AB|R93.6|ICD10CM|Abnormal findings on diagnostic imaging of limbs|Abnormal findings on diagnostic imaging of limbs +C0478191|T033|PT|R93.7|ICD10CM|Abnormal findings on diagnostic imaging of other parts of musculoskeletal system|Abnormal findings on diagnostic imaging of other parts of musculoskeletal system +C0478191|T033|PT|R93.7|ICD10|Abnormal findings on diagnostic imaging of other parts of musculoskeletal system|Abnormal findings on diagnostic imaging of other parts of musculoskeletal system +C0478191|T033|AB|R93.7|ICD10CM|Abnormal findings on diagnostic imaging of prt ms sys|Abnormal findings on diagnostic imaging of prt ms sys +C0495792|T033|AB|R93.8|ICD10CM|Abnormal findings on diagnostic imaging of body structures|Abnormal findings on diagnostic imaging of body structures +C0495792|T033|HT|R93.8|ICD10CM|Abnormal findings on diagnostic imaging of other specified body structures|Abnormal findings on diagnostic imaging of other specified body structures +C0495792|T033|PT|R93.8|ICD10|Abnormal findings on diagnostic imaging of other specified body structures|Abnormal findings on diagnostic imaging of other specified body structures +C4703238|T033|HT|R93.81|ICD10CM|Abnormal radiologic findings on diagnostic imaging of testis|Abnormal radiologic findings on diagnostic imaging of testis +C4703238|T033|AB|R93.81|ICD10CM|Abnormal radiologic findings on diagnostic imaging of testis|Abnormal radiologic findings on diagnostic imaging of testis +C4553040|T033|PT|R93.811|ICD10CM|Abnormal radiologic findings on diagnostic imaging of right testicle|Abnormal radiologic findings on diagnostic imaging of right testicle +C4553040|T033|AB|R93.811|ICD10CM|Abnormal radiologic findings on dx imaging of right testicle|Abnormal radiologic findings on dx imaging of right testicle +C4553041|T033|PT|R93.812|ICD10CM|Abnormal radiologic findings on diagnostic imaging of left testicle|Abnormal radiologic findings on diagnostic imaging of left testicle +C4553041|T033|AB|R93.812|ICD10CM|Abnormal radiologic findings on dx imaging of left testicle|Abnormal radiologic findings on dx imaging of left testicle +C4553042|T033|PT|R93.813|ICD10CM|Abnormal radiologic findings on diagnostic imaging of testicles, bilateral|Abnormal radiologic findings on diagnostic imaging of testicles, bilateral +C4553042|T033|AB|R93.813|ICD10CM|Abnormal radlgc findings on dx imaging of testicles, bi|Abnormal radlgc findings on dx imaging of testicles, bi +C4553043|T033|PT|R93.819|ICD10CM|Abnormal radiologic findings on diagnostic imaging of unspecified testicle|Abnormal radiologic findings on diagnostic imaging of unspecified testicle +C4553043|T033|AB|R93.819|ICD10CM|Abnormal radiologic findings on dx imaging of unsp testicle|Abnormal radiologic findings on dx imaging of unsp testicle +C2830595|T033|ET|R93.89|ICD10CM|Abnormal finding by radioisotope localization of placenta|Abnormal finding by radioisotope localization of placenta +C0495792|T033|PT|R93.89|ICD10CM|Abnormal findings on diagnostic imaging of other specified body structures|Abnormal findings on diagnostic imaging of other specified body structures +C0495792|T033|AB|R93.89|ICD10CM|Abnormal findings on dx imaging of oth body structures|Abnormal findings on dx imaging of oth body structures +C1719647|T033|ET|R93.89|ICD10CM|Abnormal radiological finding in skin and subcutaneous tissue|Abnormal radiological finding in skin and subcutaneous tissue +C0264576|T033|ET|R93.89|ICD10CM|Mediastinal shift|Mediastinal shift +C2830596|T033|PT|R93.9|ICD10CM|Diagnostic imaging inconclusive due to excess body fat of patient|Diagnostic imaging inconclusive due to excess body fat of patient +C2830596|T033|AB|R93.9|ICD10CM|Dx imaging inconclusive due to excess body fat of patient|Dx imaging inconclusive due to excess body fat of patient +C0476388|T033|AB|R94|ICD10CM|Abnormal results of function studies|Abnormal results of function studies +C0476388|T033|HT|R94|ICD10CM|Abnormal results of function studies|Abnormal results of function studies +C0476388|T033|HT|R94|ICD10|Abnormal results of function studies|Abnormal results of function studies +C4290294|T033|ET|R94|ICD10CM|abnormal results of radionuclide [radioisotope] uptake studies|abnormal results of radionuclide [radioisotope] uptake studies +C4290295|T033|ET|R94|ICD10CM|abnormal results of scintigraphy|abnormal results of scintigraphy +C0476389|T033|PT|R94.0|ICD10|Abnormal results of function studies of central nervous system|Abnormal results of function studies of central nervous system +C0476389|T033|HT|R94.0|ICD10CM|Abnormal results of function studies of central nervous system|Abnormal results of function studies of central nervous system +C0476389|T033|AB|R94.0|ICD10CM|Abnormal results of function studies of cnsl|Abnormal results of function studies of cnsl +C0151611|T033|AB|R94.01|ICD10CM|Abnormal electroencephalogram [EEG]|Abnormal electroencephalogram [EEG] +C0151611|T033|PT|R94.01|ICD10CM|Abnormal electroencephalogram [EEG]|Abnormal electroencephalogram [EEG] +C0476393|T033|AB|R94.02|ICD10CM|Abnormal brain scan|Abnormal brain scan +C0476393|T033|PT|R94.02|ICD10CM|Abnormal brain scan|Abnormal brain scan +C2830599|T033|AB|R94.09|ICD10CM|Abnormal results of function studies of cnsl|Abnormal results of function studies of cnsl +C2830599|T033|PT|R94.09|ICD10CM|Abnormal results of other function studies of central nervous system|Abnormal results of other function studies of central nervous system +C0495795|T033|AB|R94.1|ICD10CM|Abn results of functn studies of prph nrv sys & specl senses|Abn results of functn studies of prph nrv sys & specl senses +C0495795|T033|HT|R94.1|ICD10CM|Abnormal results of function studies of peripheral nervous system and special senses|Abnormal results of function studies of peripheral nervous system and special senses +C0495795|T033|PT|R94.1|ICD10|Abnormal results of function studies of peripheral nervous system and special senses|Abnormal results of function studies of peripheral nervous system and special senses +C2830600|T033|AB|R94.11|ICD10CM|Abnormal results of function studies of eye|Abnormal results of function studies of eye +C2830600|T033|HT|R94.11|ICD10CM|Abnormal results of function studies of eye|Abnormal results of function studies of eye +C0159104|T033|AB|R94.110|ICD10CM|Abnormal electro-oculogram [EOG]|Abnormal electro-oculogram [EOG] +C0159104|T033|PT|R94.110|ICD10CM|Abnormal electro-oculogram [EOG]|Abnormal electro-oculogram [EOG] +C0476397|T033|AB|R94.111|ICD10CM|Abnormal electroretinogram [ERG]|Abnormal electroretinogram [ERG] +C0476397|T033|PT|R94.111|ICD10CM|Abnormal electroretinogram [ERG]|Abnormal electroretinogram [ERG] +C0476396|T033|ET|R94.111|ICD10CM|Abnormal retinal function study|Abnormal retinal function study +C0522214|T033|AB|R94.112|ICD10CM|Abnormal visually evoked potential [VEP]|Abnormal visually evoked potential [VEP] +C0522214|T033|PT|R94.112|ICD10CM|Abnormal visually evoked potential [VEP]|Abnormal visually evoked potential [VEP] +C0159106|T033|AB|R94.113|ICD10CM|Abnormal oculomotor study|Abnormal oculomotor study +C0159106|T033|PT|R94.113|ICD10CM|Abnormal oculomotor study|Abnormal oculomotor study +C2830603|T033|AB|R94.118|ICD10CM|Abnormal results of other function studies of eye|Abnormal results of other function studies of eye +C2830603|T033|PT|R94.118|ICD10CM|Abnormal results of other function studies of eye|Abnormal results of other function studies of eye +C2830605|T033|AB|R94.12|ICD10CM|Abn results of function studies of ear and oth sp senses|Abn results of function studies of ear and oth sp senses +C2830605|T033|HT|R94.12|ICD10CM|Abnormal results of function studies of ear and other special senses|Abnormal results of function studies of ear and other special senses +C0476401|T033|PT|R94.120|ICD10CM|Abnormal auditory function study|Abnormal auditory function study +C0476401|T033|AB|R94.120|ICD10CM|Abnormal auditory function study|Abnormal auditory function study +C0476402|T033|AB|R94.121|ICD10CM|Abnormal vestibular function study|Abnormal vestibular function study +C0476402|T033|PT|R94.121|ICD10CM|Abnormal vestibular function study|Abnormal vestibular function study +C2830605|T033|AB|R94.128|ICD10CM|Abn results of function studies of ear and oth sp senses|Abn results of function studies of ear and oth sp senses +C2830605|T033|PT|R94.128|ICD10CM|Abnormal results of other function studies of ear and other special senses|Abnormal results of other function studies of ear and other special senses +C2830608|T033|HT|R94.13|ICD10CM|Abnormal results of function studies of peripheral nervous system|Abnormal results of function studies of peripheral nervous system +C2830608|T033|AB|R94.13|ICD10CM|Abnormal results of function studies of prph nervous sys|Abnormal results of function studies of prph nervous sys +C0159102|T033|AB|R94.130|ICD10CM|Abnormal response to nerve stimulation, unspecified|Abnormal response to nerve stimulation, unspecified +C0159102|T033|PT|R94.130|ICD10CM|Abnormal response to nerve stimulation, unspecified|Abnormal response to nerve stimulation, unspecified +C0476403|T033|AB|R94.131|ICD10CM|Abnormal electromyogram [EMG]|Abnormal electromyogram [EMG] +C0476403|T033|PT|R94.131|ICD10CM|Abnormal electromyogram [EMG]|Abnormal electromyogram [EMG] +C2830608|T033|AB|R94.138|ICD10CM|Abnormal results of function studies of prph nervous sys|Abnormal results of function studies of prph nervous sys +C2830608|T033|PT|R94.138|ICD10CM|Abnormal results of other function studies of peripheral nervous system|Abnormal results of other function studies of peripheral nervous system +C0476405|T033|PT|R94.2|ICD10CM|Abnormal results of pulmonary function studies|Abnormal results of pulmonary function studies +C0476405|T033|AB|R94.2|ICD10CM|Abnormal results of pulmonary function studies|Abnormal results of pulmonary function studies +C0476405|T033|PT|R94.2|ICD10|Abnormal results of pulmonary function studies|Abnormal results of pulmonary function studies +C0476407|T033|ET|R94.2|ICD10CM|Reduced ventilatory capacity|Reduced ventilatory capacity +C0476408|T033|ET|R94.2|ICD10CM|Reduced vital capacity|Reduced vital capacity +C0476409|T033|HT|R94.3|ICD10CM|Abnormal results of cardiovascular function studies|Abnormal results of cardiovascular function studies +C0476409|T033|AB|R94.3|ICD10CM|Abnormal results of cardiovascular function studies|Abnormal results of cardiovascular function studies +C0476409|T033|PT|R94.3|ICD10|Abnormal results of cardiovascular function studies|Abnormal results of cardiovascular function studies +C2830609|T033|AB|R94.30|ICD10CM|Abnormal result of cardiovascular function study, unsp|Abnormal result of cardiovascular function study, unsp +C2830609|T033|PT|R94.30|ICD10CM|Abnormal result of cardiovascular function study, unspecified|Abnormal result of cardiovascular function study, unspecified +C2830610|T033|AB|R94.31|ICD10CM|Abnormal electrocardiogram [ECG] [EKG]|Abnormal electrocardiogram [ECG] [EKG] +C2830610|T033|PT|R94.31|ICD10CM|Abnormal electrocardiogram [ECG] [EKG]|Abnormal electrocardiogram [ECG] [EKG] +C1385737|T033|ET|R94.39|ICD10CM|Abnormal electrophysiological intracardiac studies|Abnormal electrophysiological intracardiac studies +C0476412|T033|ET|R94.39|ICD10CM|Abnormal phonocardiogram|Abnormal phonocardiogram +C2830611|T033|AB|R94.39|ICD10CM|Abnormal result of other cardiovascular function study|Abnormal result of other cardiovascular function study +C2830611|T033|PT|R94.39|ICD10CM|Abnormal result of other cardiovascular function study|Abnormal result of other cardiovascular function study +C0476413|T033|ET|R94.39|ICD10CM|Abnormal vectorcardiogram|Abnormal vectorcardiogram +C0236151|T033|ET|R94.4|ICD10CM|Abnormal renal function test|Abnormal renal function test +C0236151|T033|PT|R94.4|ICD10CM|Abnormal results of kidney function studies|Abnormal results of kidney function studies +C0236151|T033|AB|R94.4|ICD10CM|Abnormal results of kidney function studies|Abnormal results of kidney function studies +C0236151|T033|PT|R94.4|ICD10|Abnormal results of kidney function studies|Abnormal results of kidney function studies +C0151766|T033|PT|R94.5|ICD10|Abnormal results of liver function studies|Abnormal results of liver function studies +C0151766|T033|PT|R94.5|ICD10CM|Abnormal results of liver function studies|Abnormal results of liver function studies +C0151766|T033|AB|R94.5|ICD10CM|Abnormal results of liver function studies|Abnormal results of liver function studies +C0476414|T033|PT|R94.6|ICD10CM|Abnormal results of thyroid function studies|Abnormal results of thyroid function studies +C0476414|T033|AB|R94.6|ICD10CM|Abnormal results of thyroid function studies|Abnormal results of thyroid function studies +C0476414|T033|PT|R94.6|ICD10|Abnormal results of thyroid function studies|Abnormal results of thyroid function studies +C0478193|T033|PT|R94.7|ICD10|Abnormal results of other endocrine function studies|Abnormal results of other endocrine function studies +C0478193|T033|PT|R94.7|ICD10CM|Abnormal results of other endocrine function studies|Abnormal results of other endocrine function studies +C0478193|T033|AB|R94.7|ICD10CM|Abnormal results of other endocrine function studies|Abnormal results of other endocrine function studies +C0476418|T033|ET|R94.8|ICD10CM|Abnormal basal metabolic rate [BMR]|Abnormal basal metabolic rate [BMR] +C1313882|T033|ET|R94.8|ICD10CM|Abnormal bladder function test|Abnormal bladder function test +C0478194|T033|AB|R94.8|ICD10CM|Abnormal results of function studies of organs and systems|Abnormal results of function studies of organs and systems +C0478194|T033|PT|R94.8|ICD10CM|Abnormal results of function studies of other organs and systems|Abnormal results of function studies of other organs and systems +C0478194|T033|PT|R94.8|ICD10|Abnormal results of function studies of other organs and systems|Abnormal results of function studies of other organs and systems +C0476423|T033|ET|R94.8|ICD10CM|Abnormal splenic function test|Abnormal splenic function test +C0038644|T047|PT|R95|ICD10|Sudden infant death syndrome|Sudden infant death syndrome +C0478195|T033|HT|R95-R99.9|ICD10|Ill-defined and unknown causes of mortality|Ill-defined and unknown causes of mortality +C0478196|T046|HT|R96|ICD10|Other sudden death, cause unknown|Other sudden death, cause unknown +C0021614|T046|PT|R96.0|ICD10|Instantaneous death|Instantaneous death +C0277590|T033|PT|R96.1|ICD10|Death occurring less than 24 hours from onset of symptoms, not otherwise explained|Death occurring less than 24 hours from onset of symptoms, not otherwise explained +C1719651|T033|AB|R97|ICD10CM|Abnormal tumor markers|Abnormal tumor markers +C1719651|T033|HT|R97|ICD10CM|Abnormal tumor markers|Abnormal tumor markers +C1719731|T033|ET|R97|ICD10CM|Elevated tumor associated antigens [TAA]|Elevated tumor associated antigens [TAA] +C1719652|T033|ET|R97|ICD10CM|Elevated tumor specific antigens [TSA]|Elevated tumor specific antigens [TSA] +C1719651|T033|HT|R97-R97|ICD10CM|Abnormal tumor markers (R97)|Abnormal tumor markers (R97) +C1719649|T033|AB|R97.0|ICD10CM|Elevated carcinoembryonic antigen [CEA]|Elevated carcinoembryonic antigen [CEA] +C1719649|T033|PT|R97.0|ICD10CM|Elevated carcinoembryonic antigen [CEA]|Elevated carcinoembryonic antigen [CEA] +C0238875|T033|AB|R97.1|ICD10CM|Elevated cancer antigen 125 [CA 125]|Elevated cancer antigen 125 [CA 125] +C0238875|T033|PT|R97.1|ICD10CM|Elevated cancer antigen 125 [CA 125]|Elevated cancer antigen 125 [CA 125] +C0178415|T033|AB|R97.2|ICD10CM|Elevated prostate specific antigen [PSA]|Elevated prostate specific antigen [PSA] +C0178415|T033|HT|R97.2|ICD10CM|Elevated prostate specific antigen [PSA]|Elevated prostate specific antigen [PSA] +C0178415|T033|PT|R97.20|ICD10CM|Elevated prostate specific antigen [PSA]|Elevated prostate specific antigen [PSA] +C0178415|T033|AB|R97.20|ICD10CM|Elevated prostate specific antigen [PSA]|Elevated prostate specific antigen [PSA] +C4269227|T033|AB|R97.21|ICD10CM|Rising PSA fol treatment for malignant neoplasm of prostate|Rising PSA fol treatment for malignant neoplasm of prostate +C4269227|T033|PT|R97.21|ICD10CM|Rising PSA following treatment for malignant neoplasm of prostate|Rising PSA following treatment for malignant neoplasm of prostate +C1719650|T033|AB|R97.8|ICD10CM|Other abnormal tumor markers|Other abnormal tumor markers +C1719650|T033|PT|R97.8|ICD10CM|Other abnormal tumor markers|Other abnormal tumor markers +C0152229|T033|PT|R98|ICD10|Unattended death|Unattended death +C0277589|T033|ET|R99|ICD10CM|Death (unexplained) NOS|Death (unexplained) NOS +C0478195|T033|AB|R99|ICD10CM|Ill-defined and unknown cause of mortality|Ill-defined and unknown cause of mortality +C0478195|T033|PT|R99|ICD10CM|Ill-defined and unknown cause of mortality|Ill-defined and unknown cause of mortality +C0495801|T033|PT|R99|ICD10|Other ill-defined and unspecified causes of mortality|Other ill-defined and unspecified causes of mortality +C1408354|T033|ET|R99|ICD10CM|Unspecified cause of mortality|Unspecified cause of mortality +C0478195|T033|HT|R99-R99|ICD10CM|Ill-defined and unknown cause of mortality (R99)|Ill-defined and unknown cause of mortality (R99) +C0347536|T037|HT|S00|ICD10|Superficial injury of head|Superficial injury of head +C0347536|T037|HT|S00|ICD10CM|Superficial injury of head|Superficial injury of head +C0347536|T037|AB|S00|ICD10CM|Superficial injury of head|Superficial injury of head +C0272423|T037|ET|S00-S09|ICD10CM|injuries of ear|injuries of ear +C0015408|T037|ET|S00-S09|ICD10CM|injuries of eye|injuries of eye +C4290296|T037|ET|S00-S09|ICD10CM|injuries of face [any part]|injuries of face [any part] +C0560621|T037|ET|S00-S09|ICD10CM|injuries of gum|injuries of gum +C3714622|T037|ET|S00-S09|ICD10CM|injuries of jaw|injuries of jaw +C0272426|T037|ET|S00-S09|ICD10CM|injuries of oral cavity|injuries of oral cavity +C1398313|T037|ET|S00-S09|ICD10CM|injuries of palate|injuries of palate +C4290297|T037|ET|S00-S09|ICD10CM|injuries of periocular area|injuries of periocular area +C0581310|T037|ET|S00-S09|ICD10CM|injuries of scalp|injuries of scalp +C4290298|T037|ET|S00-S09|ICD10CM|injuries of temporomandibular joint area|injuries of temporomandibular joint area +C0542525|T037|ET|S00-S09|ICD10CM|injuries of tongue|injuries of tongue +C0242891|T037|ET|S00-S09|ICD10CM|injuries of tooth|injuries of tooth +C0018674|T037|HT|S00-S09|ICD10CM|Injuries to the head (S00-S09)|Injuries to the head (S00-S09) +C0018674|T037|HT|S00-S09.9|ICD10|Injuries to the head|Injuries to the head +C2977675|T037|HT|S00-T88|ICD10CM|Injury, poisoning and certain other consequences of external causes (S00-T88)|Injury, poisoning and certain other consequences of external causes (S00-T88) +C0694460|T037|HT|S00-T98.9|ICD10|Injury, poisoning and certain other consequences of external causes|Injury, poisoning and certain other consequences of external causes +C0347539|T037|HT|S00.0|ICD10CM|Superficial injury of scalp|Superficial injury of scalp +C0347539|T037|AB|S00.0|ICD10CM|Superficial injury of scalp|Superficial injury of scalp +C0347539|T037|PT|S00.0|ICD10|Superficial injury of scalp|Superficial injury of scalp +C0347539|T037|AB|S00.00|ICD10CM|Unspecified superficial injury of scalp|Unspecified superficial injury of scalp +C0347539|T037|HT|S00.00|ICD10CM|Unspecified superficial injury of scalp|Unspecified superficial injury of scalp +C2830616|T037|AB|S00.00XA|ICD10CM|Unspecified superficial injury of scalp, initial encounter|Unspecified superficial injury of scalp, initial encounter +C2830616|T037|PT|S00.00XA|ICD10CM|Unspecified superficial injury of scalp, initial encounter|Unspecified superficial injury of scalp, initial encounter +C2830617|T037|AB|S00.00XD|ICD10CM|Unspecified superficial injury of scalp, subs encntr|Unspecified superficial injury of scalp, subs encntr +C2830617|T037|PT|S00.00XD|ICD10CM|Unspecified superficial injury of scalp, subsequent encounter|Unspecified superficial injury of scalp, subsequent encounter +C2830618|T037|AB|S00.00XS|ICD10CM|Unspecified superficial injury of scalp, sequela|Unspecified superficial injury of scalp, sequela +C2830618|T037|PT|S00.00XS|ICD10CM|Unspecified superficial injury of scalp, sequela|Unspecified superficial injury of scalp, sequela +C0432796|T037|HT|S00.01|ICD10CM|Abrasion of scalp|Abrasion of scalp +C0432796|T037|AB|S00.01|ICD10CM|Abrasion of scalp|Abrasion of scalp +C2830619|T037|PT|S00.01XA|ICD10CM|Abrasion of scalp, initial encounter|Abrasion of scalp, initial encounter +C2830619|T037|AB|S00.01XA|ICD10CM|Abrasion of scalp, initial encounter|Abrasion of scalp, initial encounter +C2830620|T037|PT|S00.01XD|ICD10CM|Abrasion of scalp, subsequent encounter|Abrasion of scalp, subsequent encounter +C2830620|T037|AB|S00.01XD|ICD10CM|Abrasion of scalp, subsequent encounter|Abrasion of scalp, subsequent encounter +C2830621|T037|PT|S00.01XS|ICD10CM|Abrasion of scalp, sequela|Abrasion of scalp, sequela +C2830621|T037|AB|S00.01XS|ICD10CM|Abrasion of scalp, sequela|Abrasion of scalp, sequela +C2830622|T037|AB|S00.02|ICD10CM|Blister (nonthermal) of scalp|Blister (nonthermal) of scalp +C2830622|T037|HT|S00.02|ICD10CM|Blister (nonthermal) of scalp|Blister (nonthermal) of scalp +C2830623|T037|AB|S00.02XA|ICD10CM|Blister (nonthermal) of scalp, initial encounter|Blister (nonthermal) of scalp, initial encounter +C2830623|T037|PT|S00.02XA|ICD10CM|Blister (nonthermal) of scalp, initial encounter|Blister (nonthermal) of scalp, initial encounter +C2830624|T037|AB|S00.02XD|ICD10CM|Blister (nonthermal) of scalp, subsequent encounter|Blister (nonthermal) of scalp, subsequent encounter +C2830624|T037|PT|S00.02XD|ICD10CM|Blister (nonthermal) of scalp, subsequent encounter|Blister (nonthermal) of scalp, subsequent encounter +C2830625|T037|AB|S00.02XS|ICD10CM|Blister (nonthermal) of scalp, sequela|Blister (nonthermal) of scalp, sequela +C2830625|T037|PT|S00.02XS|ICD10CM|Blister (nonthermal) of scalp, sequela|Blister (nonthermal) of scalp, sequela +C2830626|T033|ET|S00.03|ICD10CM|Bruise of scalp|Bruise of scalp +C0274214|T037|HT|S00.03|ICD10CM|Contusion of scalp|Contusion of scalp +C0274214|T037|AB|S00.03|ICD10CM|Contusion of scalp|Contusion of scalp +C2585082|T046|ET|S00.03|ICD10CM|Hematoma of scalp|Hematoma of scalp +C2830627|T037|PT|S00.03XA|ICD10CM|Contusion of scalp, initial encounter|Contusion of scalp, initial encounter +C2830627|T037|AB|S00.03XA|ICD10CM|Contusion of scalp, initial encounter|Contusion of scalp, initial encounter +C2830628|T037|PT|S00.03XD|ICD10CM|Contusion of scalp, subsequent encounter|Contusion of scalp, subsequent encounter +C2830628|T037|AB|S00.03XD|ICD10CM|Contusion of scalp, subsequent encounter|Contusion of scalp, subsequent encounter +C2830629|T037|PT|S00.03XS|ICD10CM|Contusion of scalp, sequela|Contusion of scalp, sequela +C2830629|T037|AB|S00.03XS|ICD10CM|Contusion of scalp, sequela|Contusion of scalp, sequela +C2830630|T037|AB|S00.04|ICD10CM|External constriction of part of scalp|External constriction of part of scalp +C2830630|T037|HT|S00.04|ICD10CM|External constriction of part of scalp|External constriction of part of scalp +C2830631|T037|AB|S00.04XA|ICD10CM|External constriction of part of scalp, initial encounter|External constriction of part of scalp, initial encounter +C2830631|T037|PT|S00.04XA|ICD10CM|External constriction of part of scalp, initial encounter|External constriction of part of scalp, initial encounter +C2830632|T037|AB|S00.04XD|ICD10CM|External constriction of part of scalp, subsequent encounter|External constriction of part of scalp, subsequent encounter +C2830632|T037|PT|S00.04XD|ICD10CM|External constriction of part of scalp, subsequent encounter|External constriction of part of scalp, subsequent encounter +C2830633|T037|AB|S00.04XS|ICD10CM|External constriction of part of scalp, sequela|External constriction of part of scalp, sequela +C2830633|T037|PT|S00.04XS|ICD10CM|External constriction of part of scalp, sequela|External constriction of part of scalp, sequela +C0564867|T037|ET|S00.05|ICD10CM|Splinter in the scalp|Splinter in the scalp +C2830634|T037|HT|S00.05|ICD10CM|Superficial foreign body of scalp|Superficial foreign body of scalp +C2830634|T037|AB|S00.05|ICD10CM|Superficial foreign body of scalp|Superficial foreign body of scalp +C2830635|T037|AB|S00.05XA|ICD10CM|Superficial foreign body of scalp, initial encounter|Superficial foreign body of scalp, initial encounter +C2830635|T037|PT|S00.05XA|ICD10CM|Superficial foreign body of scalp, initial encounter|Superficial foreign body of scalp, initial encounter +C2830636|T037|AB|S00.05XD|ICD10CM|Superficial foreign body of scalp, subsequent encounter|Superficial foreign body of scalp, subsequent encounter +C2830636|T037|PT|S00.05XD|ICD10CM|Superficial foreign body of scalp, subsequent encounter|Superficial foreign body of scalp, subsequent encounter +C2830637|T037|AB|S00.05XS|ICD10CM|Superficial foreign body of scalp, sequela|Superficial foreign body of scalp, sequela +C2830637|T037|PT|S00.05XS|ICD10CM|Superficial foreign body of scalp, sequela|Superficial foreign body of scalp, sequela +C0433011|T037|AB|S00.06|ICD10CM|Insect bite (nonvenomous) of scalp|Insect bite (nonvenomous) of scalp +C0433011|T037|HT|S00.06|ICD10CM|Insect bite (nonvenomous) of scalp|Insect bite (nonvenomous) of scalp +C2830638|T037|AB|S00.06XA|ICD10CM|Insect bite (nonvenomous) of scalp, initial encounter|Insect bite (nonvenomous) of scalp, initial encounter +C2830638|T037|PT|S00.06XA|ICD10CM|Insect bite (nonvenomous) of scalp, initial encounter|Insect bite (nonvenomous) of scalp, initial encounter +C2830639|T037|AB|S00.06XD|ICD10CM|Insect bite (nonvenomous) of scalp, subsequent encounter|Insect bite (nonvenomous) of scalp, subsequent encounter +C2830639|T037|PT|S00.06XD|ICD10CM|Insect bite (nonvenomous) of scalp, subsequent encounter|Insect bite (nonvenomous) of scalp, subsequent encounter +C2830640|T037|AB|S00.06XS|ICD10CM|Insect bite (nonvenomous) of scalp, sequela|Insect bite (nonvenomous) of scalp, sequela +C2830640|T037|PT|S00.06XS|ICD10CM|Insect bite (nonvenomous) of scalp, sequela|Insect bite (nonvenomous) of scalp, sequela +C2830641|T037|AB|S00.07|ICD10CM|Other superficial bite of scalp|Other superficial bite of scalp +C2830641|T037|HT|S00.07|ICD10CM|Other superficial bite of scalp|Other superficial bite of scalp +C2830642|T037|AB|S00.07XA|ICD10CM|Other superficial bite of scalp, initial encounter|Other superficial bite of scalp, initial encounter +C2830642|T037|PT|S00.07XA|ICD10CM|Other superficial bite of scalp, initial encounter|Other superficial bite of scalp, initial encounter +C2830643|T037|AB|S00.07XD|ICD10CM|Other superficial bite of scalp, subsequent encounter|Other superficial bite of scalp, subsequent encounter +C2830643|T037|PT|S00.07XD|ICD10CM|Other superficial bite of scalp, subsequent encounter|Other superficial bite of scalp, subsequent encounter +C2830644|T037|AB|S00.07XS|ICD10CM|Other superficial bite of scalp, sequela|Other superficial bite of scalp, sequela +C2830644|T037|PT|S00.07XS|ICD10CM|Other superficial bite of scalp, sequela|Other superficial bite of scalp, sequela +C1442861|T033|ET|S00.1|ICD10CM|Black eye|Black eye +C0160920|T037|HT|S00.1|ICD10CM|Contusion of eyelid and periocular area|Contusion of eyelid and periocular area +C0160920|T037|AB|S00.1|ICD10CM|Contusion of eyelid and periocular area|Contusion of eyelid and periocular area +C0160920|T037|PT|S00.1|ICD10|Contusion of eyelid and periocular area|Contusion of eyelid and periocular area +C2830645|T037|AB|S00.10|ICD10CM|Contusion of unspecified eyelid and periocular area|Contusion of unspecified eyelid and periocular area +C2830645|T037|HT|S00.10|ICD10CM|Contusion of unspecified eyelid and periocular area|Contusion of unspecified eyelid and periocular area +C2830646|T037|AB|S00.10XA|ICD10CM|Contusion of unsp eyelid and periocular area, init encntr|Contusion of unsp eyelid and periocular area, init encntr +C2830646|T037|PT|S00.10XA|ICD10CM|Contusion of unspecified eyelid and periocular area, initial encounter|Contusion of unspecified eyelid and periocular area, initial encounter +C2830647|T037|AB|S00.10XD|ICD10CM|Contusion of unsp eyelid and periocular area, subs encntr|Contusion of unsp eyelid and periocular area, subs encntr +C2830647|T037|PT|S00.10XD|ICD10CM|Contusion of unspecified eyelid and periocular area, subsequent encounter|Contusion of unspecified eyelid and periocular area, subsequent encounter +C2830648|T037|AB|S00.10XS|ICD10CM|Contusion of unspecified eyelid and periocular area, sequela|Contusion of unspecified eyelid and periocular area, sequela +C2830648|T037|PT|S00.10XS|ICD10CM|Contusion of unspecified eyelid and periocular area, sequela|Contusion of unspecified eyelid and periocular area, sequela +C2830649|T037|AB|S00.11|ICD10CM|Contusion of right eyelid and periocular area|Contusion of right eyelid and periocular area +C2830649|T037|HT|S00.11|ICD10CM|Contusion of right eyelid and periocular area|Contusion of right eyelid and periocular area +C2830650|T037|AB|S00.11XA|ICD10CM|Contusion of right eyelid and periocular area, init encntr|Contusion of right eyelid and periocular area, init encntr +C2830650|T037|PT|S00.11XA|ICD10CM|Contusion of right eyelid and periocular area, initial encounter|Contusion of right eyelid and periocular area, initial encounter +C2830651|T037|AB|S00.11XD|ICD10CM|Contusion of right eyelid and periocular area, subs encntr|Contusion of right eyelid and periocular area, subs encntr +C2830651|T037|PT|S00.11XD|ICD10CM|Contusion of right eyelid and periocular area, subsequent encounter|Contusion of right eyelid and periocular area, subsequent encounter +C2830652|T037|PT|S00.11XS|ICD10CM|Contusion of right eyelid and periocular area, sequela|Contusion of right eyelid and periocular area, sequela +C2830652|T037|AB|S00.11XS|ICD10CM|Contusion of right eyelid and periocular area, sequela|Contusion of right eyelid and periocular area, sequela +C2830653|T037|AB|S00.12|ICD10CM|Contusion of left eyelid and periocular area|Contusion of left eyelid and periocular area +C2830653|T037|HT|S00.12|ICD10CM|Contusion of left eyelid and periocular area|Contusion of left eyelid and periocular area +C2830654|T037|AB|S00.12XA|ICD10CM|Contusion of left eyelid and periocular area, init encntr|Contusion of left eyelid and periocular area, init encntr +C2830654|T037|PT|S00.12XA|ICD10CM|Contusion of left eyelid and periocular area, initial encounter|Contusion of left eyelid and periocular area, initial encounter +C2830655|T037|AB|S00.12XD|ICD10CM|Contusion of left eyelid and periocular area, subs encntr|Contusion of left eyelid and periocular area, subs encntr +C2830655|T037|PT|S00.12XD|ICD10CM|Contusion of left eyelid and periocular area, subsequent encounter|Contusion of left eyelid and periocular area, subsequent encounter +C2830656|T037|PT|S00.12XS|ICD10CM|Contusion of left eyelid and periocular area, sequela|Contusion of left eyelid and periocular area, sequela +C2830656|T037|AB|S00.12XS|ICD10CM|Contusion of left eyelid and periocular area, sequela|Contusion of left eyelid and periocular area, sequela +C0478199|T037|AB|S00.2|ICD10CM|Oth and unsp superfic injuries of eyelid and periocular area|Oth and unsp superfic injuries of eyelid and periocular area +C0478199|T037|HT|S00.2|ICD10CM|Other and unspecified superficial injuries of eyelid and periocular area|Other and unspecified superficial injuries of eyelid and periocular area +C0478199|T037|PT|S00.2|ICD10|Other superficial injuries of eyelid and periocular area|Other superficial injuries of eyelid and periocular area +C2830657|T037|AB|S00.20|ICD10CM|Unspecified superficial injury of eyelid and periocular area|Unspecified superficial injury of eyelid and periocular area +C2830657|T037|HT|S00.20|ICD10CM|Unspecified superficial injury of eyelid and periocular area|Unspecified superficial injury of eyelid and periocular area +C2830658|T037|AB|S00.201|ICD10CM|Unsp superficial injury of right eyelid and periocular area|Unsp superficial injury of right eyelid and periocular area +C2830658|T037|HT|S00.201|ICD10CM|Unspecified superficial injury of right eyelid and periocular area|Unspecified superficial injury of right eyelid and periocular area +C2830659|T037|AB|S00.201A|ICD10CM|Unsp superfic inj right eyelid and perioculr area, init|Unsp superfic inj right eyelid and perioculr area, init +C2830659|T037|PT|S00.201A|ICD10CM|Unspecified superficial injury of right eyelid and periocular area, initial encounter|Unspecified superficial injury of right eyelid and periocular area, initial encounter +C2830660|T037|AB|S00.201D|ICD10CM|Unsp superfic inj right eyelid and perioculr area, subs|Unsp superfic inj right eyelid and perioculr area, subs +C2830660|T037|PT|S00.201D|ICD10CM|Unspecified superficial injury of right eyelid and periocular area, subsequent encounter|Unspecified superficial injury of right eyelid and periocular area, subsequent encounter +C2830661|T037|AB|S00.201S|ICD10CM|Unsp superfic inj right eyelid and perioculr area, sequela|Unsp superfic inj right eyelid and perioculr area, sequela +C2830661|T037|PT|S00.201S|ICD10CM|Unspecified superficial injury of right eyelid and periocular area, sequela|Unspecified superficial injury of right eyelid and periocular area, sequela +C2830662|T037|AB|S00.202|ICD10CM|Unsp superficial injury of left eyelid and periocular area|Unsp superficial injury of left eyelid and periocular area +C2830662|T037|HT|S00.202|ICD10CM|Unspecified superficial injury of left eyelid and periocular area|Unspecified superficial injury of left eyelid and periocular area +C2830663|T037|AB|S00.202A|ICD10CM|Unsp superfic injury of left eyelid and perioculr area, init|Unsp superfic injury of left eyelid and perioculr area, init +C2830663|T037|PT|S00.202A|ICD10CM|Unspecified superficial injury of left eyelid and periocular area, initial encounter|Unspecified superficial injury of left eyelid and periocular area, initial encounter +C2830664|T037|AB|S00.202D|ICD10CM|Unsp superfic injury of left eyelid and perioculr area, subs|Unsp superfic injury of left eyelid and perioculr area, subs +C2830664|T037|PT|S00.202D|ICD10CM|Unspecified superficial injury of left eyelid and periocular area, subsequent encounter|Unspecified superficial injury of left eyelid and periocular area, subsequent encounter +C2830665|T037|AB|S00.202S|ICD10CM|Unsp superfic inj left eyelid and perioculr area, sequela|Unsp superfic inj left eyelid and perioculr area, sequela +C2830665|T037|PT|S00.202S|ICD10CM|Unspecified superficial injury of left eyelid and periocular area, sequela|Unspecified superficial injury of left eyelid and periocular area, sequela +C2830666|T037|AB|S00.209|ICD10CM|Unsp superficial injury of unsp eyelid and periocular area|Unsp superficial injury of unsp eyelid and periocular area +C2830666|T037|HT|S00.209|ICD10CM|Unspecified superficial injury of unspecified eyelid and periocular area|Unspecified superficial injury of unspecified eyelid and periocular area +C2830667|T037|AB|S00.209A|ICD10CM|Unsp superfic injury of unsp eyelid and perioculr area, init|Unsp superfic injury of unsp eyelid and perioculr area, init +C2830667|T037|PT|S00.209A|ICD10CM|Unspecified superficial injury of unspecified eyelid and periocular area, initial encounter|Unspecified superficial injury of unspecified eyelid and periocular area, initial encounter +C2830668|T037|AB|S00.209D|ICD10CM|Unsp superfic injury of unsp eyelid and perioculr area, subs|Unsp superfic injury of unsp eyelid and perioculr area, subs +C2830668|T037|PT|S00.209D|ICD10CM|Unspecified superficial injury of unspecified eyelid and periocular area, subsequent encounter|Unspecified superficial injury of unspecified eyelid and periocular area, subsequent encounter +C2830669|T037|AB|S00.209S|ICD10CM|Unsp superfic inj unsp eyelid and perioculr area, sequela|Unsp superfic inj unsp eyelid and perioculr area, sequela +C2830669|T037|PT|S00.209S|ICD10CM|Unspecified superficial injury of unspecified eyelid and periocular area, sequela|Unspecified superficial injury of unspecified eyelid and periocular area, sequela +C0867190|T037|AB|S00.21|ICD10CM|Abrasion of eyelid and periocular area|Abrasion of eyelid and periocular area +C0867190|T037|HT|S00.21|ICD10CM|Abrasion of eyelid and periocular area|Abrasion of eyelid and periocular area +C2830670|T037|AB|S00.211|ICD10CM|Abrasion of right eyelid and periocular area|Abrasion of right eyelid and periocular area +C2830670|T037|HT|S00.211|ICD10CM|Abrasion of right eyelid and periocular area|Abrasion of right eyelid and periocular area +C2830671|T037|AB|S00.211A|ICD10CM|Abrasion of right eyelid and periocular area, init encntr|Abrasion of right eyelid and periocular area, init encntr +C2830671|T037|PT|S00.211A|ICD10CM|Abrasion of right eyelid and periocular area, initial encounter|Abrasion of right eyelid and periocular area, initial encounter +C2830672|T037|AB|S00.211D|ICD10CM|Abrasion of right eyelid and periocular area, subs encntr|Abrasion of right eyelid and periocular area, subs encntr +C2830672|T037|PT|S00.211D|ICD10CM|Abrasion of right eyelid and periocular area, subsequent encounter|Abrasion of right eyelid and periocular area, subsequent encounter +C2830673|T037|PT|S00.211S|ICD10CM|Abrasion of right eyelid and periocular area, sequela|Abrasion of right eyelid and periocular area, sequela +C2830673|T037|AB|S00.211S|ICD10CM|Abrasion of right eyelid and periocular area, sequela|Abrasion of right eyelid and periocular area, sequela +C2830674|T037|AB|S00.212|ICD10CM|Abrasion of left eyelid and periocular area|Abrasion of left eyelid and periocular area +C2830674|T037|HT|S00.212|ICD10CM|Abrasion of left eyelid and periocular area|Abrasion of left eyelid and periocular area +C2830675|T037|AB|S00.212A|ICD10CM|Abrasion of left eyelid and periocular area, init encntr|Abrasion of left eyelid and periocular area, init encntr +C2830675|T037|PT|S00.212A|ICD10CM|Abrasion of left eyelid and periocular area, initial encounter|Abrasion of left eyelid and periocular area, initial encounter +C2830676|T037|AB|S00.212D|ICD10CM|Abrasion of left eyelid and periocular area, subs encntr|Abrasion of left eyelid and periocular area, subs encntr +C2830676|T037|PT|S00.212D|ICD10CM|Abrasion of left eyelid and periocular area, subsequent encounter|Abrasion of left eyelid and periocular area, subsequent encounter +C2830677|T037|PT|S00.212S|ICD10CM|Abrasion of left eyelid and periocular area, sequela|Abrasion of left eyelid and periocular area, sequela +C2830677|T037|AB|S00.212S|ICD10CM|Abrasion of left eyelid and periocular area, sequela|Abrasion of left eyelid and periocular area, sequela +C2830678|T037|AB|S00.219|ICD10CM|Abrasion of unspecified eyelid and periocular area|Abrasion of unspecified eyelid and periocular area +C2830678|T037|HT|S00.219|ICD10CM|Abrasion of unspecified eyelid and periocular area|Abrasion of unspecified eyelid and periocular area +C2830679|T037|AB|S00.219A|ICD10CM|Abrasion of unsp eyelid and periocular area, init encntr|Abrasion of unsp eyelid and periocular area, init encntr +C2830679|T037|PT|S00.219A|ICD10CM|Abrasion of unspecified eyelid and periocular area, initial encounter|Abrasion of unspecified eyelid and periocular area, initial encounter +C2830680|T037|AB|S00.219D|ICD10CM|Abrasion of unsp eyelid and periocular area, subs encntr|Abrasion of unsp eyelid and periocular area, subs encntr +C2830680|T037|PT|S00.219D|ICD10CM|Abrasion of unspecified eyelid and periocular area, subsequent encounter|Abrasion of unspecified eyelid and periocular area, subsequent encounter +C2830681|T037|PT|S00.219S|ICD10CM|Abrasion of unspecified eyelid and periocular area, sequela|Abrasion of unspecified eyelid and periocular area, sequela +C2830681|T037|AB|S00.219S|ICD10CM|Abrasion of unspecified eyelid and periocular area, sequela|Abrasion of unspecified eyelid and periocular area, sequela +C2830682|T037|AB|S00.22|ICD10CM|Blister (nonthermal) of eyelid and periocular area|Blister (nonthermal) of eyelid and periocular area +C2830682|T037|HT|S00.22|ICD10CM|Blister (nonthermal) of eyelid and periocular area|Blister (nonthermal) of eyelid and periocular area +C2830683|T037|AB|S00.221|ICD10CM|Blister (nonthermal) of right eyelid and periocular area|Blister (nonthermal) of right eyelid and periocular area +C2830683|T037|HT|S00.221|ICD10CM|Blister (nonthermal) of right eyelid and periocular area|Blister (nonthermal) of right eyelid and periocular area +C2830684|T037|PT|S00.221A|ICD10CM|Blister (nonthermal) of right eyelid and periocular area, initial encounter|Blister (nonthermal) of right eyelid and periocular area, initial encounter +C2830684|T037|AB|S00.221A|ICD10CM|Blister of right eyelid and periocular area, init|Blister of right eyelid and periocular area, init +C2830685|T037|PT|S00.221D|ICD10CM|Blister (nonthermal) of right eyelid and periocular area, subsequent encounter|Blister (nonthermal) of right eyelid and periocular area, subsequent encounter +C2830685|T037|AB|S00.221D|ICD10CM|Blister of right eyelid and periocular area, subs|Blister of right eyelid and periocular area, subs +C2830686|T037|PT|S00.221S|ICD10CM|Blister (nonthermal) of right eyelid and periocular area, sequela|Blister (nonthermal) of right eyelid and periocular area, sequela +C2830686|T037|AB|S00.221S|ICD10CM|Blister of right eyelid and periocular area, sequela|Blister of right eyelid and periocular area, sequela +C2830687|T037|AB|S00.222|ICD10CM|Blister (nonthermal) of left eyelid and periocular area|Blister (nonthermal) of left eyelid and periocular area +C2830687|T037|HT|S00.222|ICD10CM|Blister (nonthermal) of left eyelid and periocular area|Blister (nonthermal) of left eyelid and periocular area +C2830688|T037|PT|S00.222A|ICD10CM|Blister (nonthermal) of left eyelid and periocular area, initial encounter|Blister (nonthermal) of left eyelid and periocular area, initial encounter +C2830688|T037|AB|S00.222A|ICD10CM|Blister of left eyelid and periocular area, init|Blister of left eyelid and periocular area, init +C2830689|T037|PT|S00.222D|ICD10CM|Blister (nonthermal) of left eyelid and periocular area, subsequent encounter|Blister (nonthermal) of left eyelid and periocular area, subsequent encounter +C2830689|T037|AB|S00.222D|ICD10CM|Blister of left eyelid and periocular area, subs|Blister of left eyelid and periocular area, subs +C2830690|T037|PT|S00.222S|ICD10CM|Blister (nonthermal) of left eyelid and periocular area, sequela|Blister (nonthermal) of left eyelid and periocular area, sequela +C2830690|T037|AB|S00.222S|ICD10CM|Blister of left eyelid and periocular area, sequela|Blister of left eyelid and periocular area, sequela +C2830691|T037|AB|S00.229|ICD10CM|Blister (nonthermal) of unsp eyelid and periocular area|Blister (nonthermal) of unsp eyelid and periocular area +C2830691|T037|HT|S00.229|ICD10CM|Blister (nonthermal) of unspecified eyelid and periocular area|Blister (nonthermal) of unspecified eyelid and periocular area +C2830692|T037|PT|S00.229A|ICD10CM|Blister (nonthermal) of unspecified eyelid and periocular area, initial encounter|Blister (nonthermal) of unspecified eyelid and periocular area, initial encounter +C2830692|T037|AB|S00.229A|ICD10CM|Blister of unsp eyelid and periocular area, init|Blister of unsp eyelid and periocular area, init +C2830693|T037|PT|S00.229D|ICD10CM|Blister (nonthermal) of unspecified eyelid and periocular area, subsequent encounter|Blister (nonthermal) of unspecified eyelid and periocular area, subsequent encounter +C2830693|T037|AB|S00.229D|ICD10CM|Blister of unsp eyelid and periocular area, subs|Blister of unsp eyelid and periocular area, subs +C2830694|T037|PT|S00.229S|ICD10CM|Blister (nonthermal) of unspecified eyelid and periocular area, sequela|Blister (nonthermal) of unspecified eyelid and periocular area, sequela +C2830694|T037|AB|S00.229S|ICD10CM|Blister of unsp eyelid and periocular area, sequela|Blister of unsp eyelid and periocular area, sequela +C2830695|T037|AB|S00.24|ICD10CM|External constriction of eyelid and periocular area|External constriction of eyelid and periocular area +C2830695|T037|HT|S00.24|ICD10CM|External constriction of eyelid and periocular area|External constriction of eyelid and periocular area +C2830696|T037|AB|S00.241|ICD10CM|External constriction of right eyelid and periocular area|External constriction of right eyelid and periocular area +C2830696|T037|HT|S00.241|ICD10CM|External constriction of right eyelid and periocular area|External constriction of right eyelid and periocular area +C2830697|T037|AB|S00.241A|ICD10CM|External constrict of right eyelid and periocular area, init|External constrict of right eyelid and periocular area, init +C2830697|T037|PT|S00.241A|ICD10CM|External constriction of right eyelid and periocular area, initial encounter|External constriction of right eyelid and periocular area, initial encounter +C2830698|T037|AB|S00.241D|ICD10CM|External constrict of right eyelid and periocular area, subs|External constrict of right eyelid and periocular area, subs +C2830698|T037|PT|S00.241D|ICD10CM|External constriction of right eyelid and periocular area, subsequent encounter|External constriction of right eyelid and periocular area, subsequent encounter +C2830699|T037|PT|S00.241S|ICD10CM|External constriction of right eyelid and periocular area, sequela|External constriction of right eyelid and periocular area, sequela +C2830699|T037|AB|S00.241S|ICD10CM|Extrn constrict of right eyelid and perioculr area, sequela|Extrn constrict of right eyelid and perioculr area, sequela +C2830700|T037|AB|S00.242|ICD10CM|External constriction of left eyelid and periocular area|External constriction of left eyelid and periocular area +C2830700|T037|HT|S00.242|ICD10CM|External constriction of left eyelid and periocular area|External constriction of left eyelid and periocular area +C2830701|T037|AB|S00.242A|ICD10CM|External constrict of left eyelid and periocular area, init|External constrict of left eyelid and periocular area, init +C2830701|T037|PT|S00.242A|ICD10CM|External constriction of left eyelid and periocular area, initial encounter|External constriction of left eyelid and periocular area, initial encounter +C2830702|T037|AB|S00.242D|ICD10CM|External constrict of left eyelid and periocular area, subs|External constrict of left eyelid and periocular area, subs +C2830702|T037|PT|S00.242D|ICD10CM|External constriction of left eyelid and periocular area, subsequent encounter|External constriction of left eyelid and periocular area, subsequent encounter +C2830703|T037|PT|S00.242S|ICD10CM|External constriction of left eyelid and periocular area, sequela|External constriction of left eyelid and periocular area, sequela +C2830703|T037|AB|S00.242S|ICD10CM|Extrn constrict of left eyelid and perioculr area, sequela|Extrn constrict of left eyelid and perioculr area, sequela +C2830704|T037|AB|S00.249|ICD10CM|External constriction of unsp eyelid and periocular area|External constriction of unsp eyelid and periocular area +C2830704|T037|HT|S00.249|ICD10CM|External constriction of unspecified eyelid and periocular area|External constriction of unspecified eyelid and periocular area +C2830705|T037|AB|S00.249A|ICD10CM|External constrict of unsp eyelid and periocular area, init|External constrict of unsp eyelid and periocular area, init +C2830705|T037|PT|S00.249A|ICD10CM|External constriction of unspecified eyelid and periocular area, initial encounter|External constriction of unspecified eyelid and periocular area, initial encounter +C2830706|T037|AB|S00.249D|ICD10CM|External constrict of unsp eyelid and periocular area, subs|External constrict of unsp eyelid and periocular area, subs +C2830706|T037|PT|S00.249D|ICD10CM|External constriction of unspecified eyelid and periocular area, subsequent encounter|External constriction of unspecified eyelid and periocular area, subsequent encounter +C2830707|T037|PT|S00.249S|ICD10CM|External constriction of unspecified eyelid and periocular area, sequela|External constriction of unspecified eyelid and periocular area, sequela +C2830707|T037|AB|S00.249S|ICD10CM|Extrn constrict of unsp eyelid and perioculr area, sequela|Extrn constrict of unsp eyelid and perioculr area, sequela +C0339098|T037|ET|S00.25|ICD10CM|Splinter of eyelid and periocular area|Splinter of eyelid and periocular area +C0867191|T037|AB|S00.25|ICD10CM|Superficial foreign body of eyelid and periocular area|Superficial foreign body of eyelid and periocular area +C0867191|T037|HT|S00.25|ICD10CM|Superficial foreign body of eyelid and periocular area|Superficial foreign body of eyelid and periocular area +C2830708|T037|AB|S00.251|ICD10CM|Superficial foreign body of right eyelid and periocular area|Superficial foreign body of right eyelid and periocular area +C2830708|T037|HT|S00.251|ICD10CM|Superficial foreign body of right eyelid and periocular area|Superficial foreign body of right eyelid and periocular area +C2830709|T037|AB|S00.251A|ICD10CM|Superficial fb of right eyelid and periocular area, init|Superficial fb of right eyelid and periocular area, init +C2830709|T037|PT|S00.251A|ICD10CM|Superficial foreign body of right eyelid and periocular area, initial encounter|Superficial foreign body of right eyelid and periocular area, initial encounter +C2830710|T037|AB|S00.251D|ICD10CM|Superficial fb of right eyelid and periocular area, subs|Superficial fb of right eyelid and periocular area, subs +C2830710|T037|PT|S00.251D|ICD10CM|Superficial foreign body of right eyelid and periocular area, subsequent encounter|Superficial foreign body of right eyelid and periocular area, subsequent encounter +C2830711|T037|AB|S00.251S|ICD10CM|Superficial fb of right eyelid and periocular area, sequela|Superficial fb of right eyelid and periocular area, sequela +C2830711|T037|PT|S00.251S|ICD10CM|Superficial foreign body of right eyelid and periocular area, sequela|Superficial foreign body of right eyelid and periocular area, sequela +C2830712|T037|AB|S00.252|ICD10CM|Superficial foreign body of left eyelid and periocular area|Superficial foreign body of left eyelid and periocular area +C2830712|T037|HT|S00.252|ICD10CM|Superficial foreign body of left eyelid and periocular area|Superficial foreign body of left eyelid and periocular area +C2830713|T037|AB|S00.252A|ICD10CM|Superficial fb of left eyelid and periocular area, init|Superficial fb of left eyelid and periocular area, init +C2830713|T037|PT|S00.252A|ICD10CM|Superficial foreign body of left eyelid and periocular area, initial encounter|Superficial foreign body of left eyelid and periocular area, initial encounter +C2830714|T037|AB|S00.252D|ICD10CM|Superficial fb of left eyelid and periocular area, subs|Superficial fb of left eyelid and periocular area, subs +C2830714|T037|PT|S00.252D|ICD10CM|Superficial foreign body of left eyelid and periocular area, subsequent encounter|Superficial foreign body of left eyelid and periocular area, subsequent encounter +C2830715|T037|AB|S00.252S|ICD10CM|Superficial fb of left eyelid and periocular area, sequela|Superficial fb of left eyelid and periocular area, sequela +C2830715|T037|PT|S00.252S|ICD10CM|Superficial foreign body of left eyelid and periocular area, sequela|Superficial foreign body of left eyelid and periocular area, sequela +C2830716|T037|AB|S00.259|ICD10CM|Superficial foreign body of unsp eyelid and periocular area|Superficial foreign body of unsp eyelid and periocular area +C2830716|T037|HT|S00.259|ICD10CM|Superficial foreign body of unspecified eyelid and periocular area|Superficial foreign body of unspecified eyelid and periocular area +C2830717|T037|AB|S00.259A|ICD10CM|Superficial fb of unsp eyelid and periocular area, init|Superficial fb of unsp eyelid and periocular area, init +C2830717|T037|PT|S00.259A|ICD10CM|Superficial foreign body of unspecified eyelid and periocular area, initial encounter|Superficial foreign body of unspecified eyelid and periocular area, initial encounter +C2830718|T037|AB|S00.259D|ICD10CM|Superficial fb of unsp eyelid and periocular area, subs|Superficial fb of unsp eyelid and periocular area, subs +C2830718|T037|PT|S00.259D|ICD10CM|Superficial foreign body of unspecified eyelid and periocular area, subsequent encounter|Superficial foreign body of unspecified eyelid and periocular area, subsequent encounter +C2830719|T037|AB|S00.259S|ICD10CM|Superficial fb of unsp eyelid and periocular area, sequela|Superficial fb of unsp eyelid and periocular area, sequela +C2830719|T037|PT|S00.259S|ICD10CM|Superficial foreign body of unspecified eyelid and periocular area, sequela|Superficial foreign body of unspecified eyelid and periocular area, sequela +C2830720|T037|AB|S00.26|ICD10CM|Insect bite (nonvenomous) of eyelid and periocular area|Insect bite (nonvenomous) of eyelid and periocular area +C2830720|T037|HT|S00.26|ICD10CM|Insect bite (nonvenomous) of eyelid and periocular area|Insect bite (nonvenomous) of eyelid and periocular area +C2830721|T037|HT|S00.261|ICD10CM|Insect bite (nonvenomous) of right eyelid and periocular area|Insect bite (nonvenomous) of right eyelid and periocular area +C2830721|T037|AB|S00.261|ICD10CM|Insect bite of right eyelid and periocular area|Insect bite of right eyelid and periocular area +C2830722|T037|PT|S00.261A|ICD10CM|Insect bite (nonvenomous) of right eyelid and periocular area, initial encounter|Insect bite (nonvenomous) of right eyelid and periocular area, initial encounter +C2830722|T037|AB|S00.261A|ICD10CM|Insect bite of right eyelid and periocular area, init|Insect bite of right eyelid and periocular area, init +C2830723|T037|PT|S00.261D|ICD10CM|Insect bite (nonvenomous) of right eyelid and periocular area, subsequent encounter|Insect bite (nonvenomous) of right eyelid and periocular area, subsequent encounter +C2830723|T037|AB|S00.261D|ICD10CM|Insect bite of right eyelid and periocular area, subs|Insect bite of right eyelid and periocular area, subs +C2830724|T037|PT|S00.261S|ICD10CM|Insect bite (nonvenomous) of right eyelid and periocular area, sequela|Insect bite (nonvenomous) of right eyelid and periocular area, sequela +C2830724|T037|AB|S00.261S|ICD10CM|Insect bite of right eyelid and periocular area, sequela|Insect bite of right eyelid and periocular area, sequela +C2830725|T037|AB|S00.262|ICD10CM|Insect bite (nonvenomous) of left eyelid and periocular area|Insect bite (nonvenomous) of left eyelid and periocular area +C2830725|T037|HT|S00.262|ICD10CM|Insect bite (nonvenomous) of left eyelid and periocular area|Insect bite (nonvenomous) of left eyelid and periocular area +C2830726|T037|PT|S00.262A|ICD10CM|Insect bite (nonvenomous) of left eyelid and periocular area, initial encounter|Insect bite (nonvenomous) of left eyelid and periocular area, initial encounter +C2830726|T037|AB|S00.262A|ICD10CM|Insect bite of left eyelid and periocular area, init|Insect bite of left eyelid and periocular area, init +C2830727|T037|PT|S00.262D|ICD10CM|Insect bite (nonvenomous) of left eyelid and periocular area, subsequent encounter|Insect bite (nonvenomous) of left eyelid and periocular area, subsequent encounter +C2830727|T037|AB|S00.262D|ICD10CM|Insect bite of left eyelid and periocular area, subs|Insect bite of left eyelid and periocular area, subs +C2830728|T037|PT|S00.262S|ICD10CM|Insect bite (nonvenomous) of left eyelid and periocular area, sequela|Insect bite (nonvenomous) of left eyelid and periocular area, sequela +C2830728|T037|AB|S00.262S|ICD10CM|Insect bite of left eyelid and periocular area, sequela|Insect bite of left eyelid and periocular area, sequela +C2830729|T037|AB|S00.269|ICD10CM|Insect bite (nonvenomous) of unsp eyelid and periocular area|Insect bite (nonvenomous) of unsp eyelid and periocular area +C2830729|T037|HT|S00.269|ICD10CM|Insect bite (nonvenomous) of unspecified eyelid and periocular area|Insect bite (nonvenomous) of unspecified eyelid and periocular area +C2830730|T037|PT|S00.269A|ICD10CM|Insect bite (nonvenomous) of unspecified eyelid and periocular area, initial encounter|Insect bite (nonvenomous) of unspecified eyelid and periocular area, initial encounter +C2830730|T037|AB|S00.269A|ICD10CM|Insect bite of unsp eyelid and periocular area, init|Insect bite of unsp eyelid and periocular area, init +C2830731|T037|PT|S00.269D|ICD10CM|Insect bite (nonvenomous) of unspecified eyelid and periocular area, subsequent encounter|Insect bite (nonvenomous) of unspecified eyelid and periocular area, subsequent encounter +C2830731|T037|AB|S00.269D|ICD10CM|Insect bite of unsp eyelid and periocular area, subs|Insect bite of unsp eyelid and periocular area, subs +C2830732|T037|PT|S00.269S|ICD10CM|Insect bite (nonvenomous) of unspecified eyelid and periocular area, sequela|Insect bite (nonvenomous) of unspecified eyelid and periocular area, sequela +C2830732|T037|AB|S00.269S|ICD10CM|Insect bite of unsp eyelid and periocular area, sequela|Insect bite of unsp eyelid and periocular area, sequela +C2830733|T037|AB|S00.27|ICD10CM|Other superficial bite of eyelid and periocular area|Other superficial bite of eyelid and periocular area +C2830733|T037|HT|S00.27|ICD10CM|Other superficial bite of eyelid and periocular area|Other superficial bite of eyelid and periocular area +C2830734|T037|AB|S00.271|ICD10CM|Other superficial bite of right eyelid and periocular area|Other superficial bite of right eyelid and periocular area +C2830734|T037|HT|S00.271|ICD10CM|Other superficial bite of right eyelid and periocular area|Other superficial bite of right eyelid and periocular area +C2830735|T037|AB|S00.271A|ICD10CM|Oth superfic bite of right eyelid and periocular area, init|Oth superfic bite of right eyelid and periocular area, init +C2830735|T037|PT|S00.271A|ICD10CM|Other superficial bite of right eyelid and periocular area, initial encounter|Other superficial bite of right eyelid and periocular area, initial encounter +C2830736|T037|AB|S00.271D|ICD10CM|Oth superfic bite of right eyelid and periocular area, subs|Oth superfic bite of right eyelid and periocular area, subs +C2830736|T037|PT|S00.271D|ICD10CM|Other superficial bite of right eyelid and periocular area, subsequent encounter|Other superficial bite of right eyelid and periocular area, subsequent encounter +C2830737|T037|AB|S00.271S|ICD10CM|Oth superfic bite of right eyelid and perioculr area, sqla|Oth superfic bite of right eyelid and perioculr area, sqla +C2830737|T037|PT|S00.271S|ICD10CM|Other superficial bite of right eyelid and periocular area, sequela|Other superficial bite of right eyelid and periocular area, sequela +C2830738|T037|AB|S00.272|ICD10CM|Other superficial bite of left eyelid and periocular area|Other superficial bite of left eyelid and periocular area +C2830738|T037|HT|S00.272|ICD10CM|Other superficial bite of left eyelid and periocular area|Other superficial bite of left eyelid and periocular area +C2830739|T037|AB|S00.272A|ICD10CM|Oth superfic bite of left eyelid and periocular area, init|Oth superfic bite of left eyelid and periocular area, init +C2830739|T037|PT|S00.272A|ICD10CM|Other superficial bite of left eyelid and periocular area, initial encounter|Other superficial bite of left eyelid and periocular area, initial encounter +C2830740|T037|AB|S00.272D|ICD10CM|Oth superfic bite of left eyelid and periocular area, subs|Oth superfic bite of left eyelid and periocular area, subs +C2830740|T037|PT|S00.272D|ICD10CM|Other superficial bite of left eyelid and periocular area, subsequent encounter|Other superficial bite of left eyelid and periocular area, subsequent encounter +C2830741|T037|AB|S00.272S|ICD10CM|Oth superfic bite of left eyelid and perioculr area, sequela|Oth superfic bite of left eyelid and perioculr area, sequela +C2830741|T037|PT|S00.272S|ICD10CM|Other superficial bite of left eyelid and periocular area, sequela|Other superficial bite of left eyelid and periocular area, sequela +C2830742|T037|AB|S00.279|ICD10CM|Other superficial bite of unsp eyelid and periocular area|Other superficial bite of unsp eyelid and periocular area +C2830742|T037|HT|S00.279|ICD10CM|Other superficial bite of unspecified eyelid and periocular area|Other superficial bite of unspecified eyelid and periocular area +C2830743|T037|AB|S00.279A|ICD10CM|Oth superfic bite of unsp eyelid and periocular area, init|Oth superfic bite of unsp eyelid and periocular area, init +C2830743|T037|PT|S00.279A|ICD10CM|Other superficial bite of unspecified eyelid and periocular area, initial encounter|Other superficial bite of unspecified eyelid and periocular area, initial encounter +C2830744|T037|AB|S00.279D|ICD10CM|Oth superfic bite of unsp eyelid and periocular area, subs|Oth superfic bite of unsp eyelid and periocular area, subs +C2830744|T037|PT|S00.279D|ICD10CM|Other superficial bite of unspecified eyelid and periocular area, subsequent encounter|Other superficial bite of unspecified eyelid and periocular area, subsequent encounter +C2830745|T037|AB|S00.279S|ICD10CM|Oth superfic bite of unsp eyelid and perioculr area, sequela|Oth superfic bite of unsp eyelid and perioculr area, sequela +C2830745|T037|PT|S00.279S|ICD10CM|Other superficial bite of unspecified eyelid and periocular area, sequela|Other superficial bite of unspecified eyelid and periocular area, sequela +C0392046|T037|PT|S00.3|ICD10|Superficial injury of nose|Superficial injury of nose +C0392046|T037|HT|S00.3|ICD10CM|Superficial injury of nose|Superficial injury of nose +C0392046|T037|AB|S00.3|ICD10CM|Superficial injury of nose|Superficial injury of nose +C0392046|T037|AB|S00.30|ICD10CM|Unspecified superficial injury of nose|Unspecified superficial injury of nose +C0392046|T037|HT|S00.30|ICD10CM|Unspecified superficial injury of nose|Unspecified superficial injury of nose +C2830746|T037|AB|S00.30XA|ICD10CM|Unspecified superficial injury of nose, initial encounter|Unspecified superficial injury of nose, initial encounter +C2830746|T037|PT|S00.30XA|ICD10CM|Unspecified superficial injury of nose, initial encounter|Unspecified superficial injury of nose, initial encounter +C2830747|T037|AB|S00.30XD|ICD10CM|Unspecified superficial injury of nose, subsequent encounter|Unspecified superficial injury of nose, subsequent encounter +C2830747|T037|PT|S00.30XD|ICD10CM|Unspecified superficial injury of nose, subsequent encounter|Unspecified superficial injury of nose, subsequent encounter +C2830748|T037|AB|S00.30XS|ICD10CM|Unspecified superficial injury of nose, sequela|Unspecified superficial injury of nose, sequela +C2830748|T037|PT|S00.30XS|ICD10CM|Unspecified superficial injury of nose, sequela|Unspecified superficial injury of nose, sequela +C0560950|T037|HT|S00.31|ICD10CM|Abrasion of nose|Abrasion of nose +C0560950|T037|AB|S00.31|ICD10CM|Abrasion of nose|Abrasion of nose +C2830749|T037|PT|S00.31XA|ICD10CM|Abrasion of nose, initial encounter|Abrasion of nose, initial encounter +C2830749|T037|AB|S00.31XA|ICD10CM|Abrasion of nose, initial encounter|Abrasion of nose, initial encounter +C2830750|T037|PT|S00.31XD|ICD10CM|Abrasion of nose, subsequent encounter|Abrasion of nose, subsequent encounter +C2830750|T037|AB|S00.31XD|ICD10CM|Abrasion of nose, subsequent encounter|Abrasion of nose, subsequent encounter +C2830751|T037|PT|S00.31XS|ICD10CM|Abrasion of nose, sequela|Abrasion of nose, sequela +C2830751|T037|AB|S00.31XS|ICD10CM|Abrasion of nose, sequela|Abrasion of nose, sequela +C2830752|T037|AB|S00.32|ICD10CM|Blister (nonthermal) of nose|Blister (nonthermal) of nose +C2830752|T037|HT|S00.32|ICD10CM|Blister (nonthermal) of nose|Blister (nonthermal) of nose +C2830753|T037|AB|S00.32XA|ICD10CM|Blister (nonthermal) of nose, initial encounter|Blister (nonthermal) of nose, initial encounter +C2830753|T037|PT|S00.32XA|ICD10CM|Blister (nonthermal) of nose, initial encounter|Blister (nonthermal) of nose, initial encounter +C2830754|T037|AB|S00.32XD|ICD10CM|Blister (nonthermal) of nose, subsequent encounter|Blister (nonthermal) of nose, subsequent encounter +C2830754|T037|PT|S00.32XD|ICD10CM|Blister (nonthermal) of nose, subsequent encounter|Blister (nonthermal) of nose, subsequent encounter +C2830755|T037|AB|S00.32XS|ICD10CM|Blister (nonthermal) of nose, sequela|Blister (nonthermal) of nose, sequela +C2830755|T037|PT|S00.32XS|ICD10CM|Blister (nonthermal) of nose, sequela|Blister (nonthermal) of nose, sequela +C0274210|T037|ET|S00.33|ICD10CM|Bruise of nose|Bruise of nose +C0274210|T037|AB|S00.33|ICD10CM|Contusion of nose|Contusion of nose +C0274210|T037|HT|S00.33|ICD10CM|Contusion of nose|Contusion of nose +C2830756|T046|ET|S00.33|ICD10CM|Hematoma of nose|Hematoma of nose +C2830757|T037|PT|S00.33XA|ICD10CM|Contusion of nose, initial encounter|Contusion of nose, initial encounter +C2830757|T037|AB|S00.33XA|ICD10CM|Contusion of nose, initial encounter|Contusion of nose, initial encounter +C2830758|T037|PT|S00.33XD|ICD10CM|Contusion of nose, subsequent encounter|Contusion of nose, subsequent encounter +C2830758|T037|AB|S00.33XD|ICD10CM|Contusion of nose, subsequent encounter|Contusion of nose, subsequent encounter +C2830759|T037|PT|S00.33XS|ICD10CM|Contusion of nose, sequela|Contusion of nose, sequela +C2830759|T037|AB|S00.33XS|ICD10CM|Contusion of nose, sequela|Contusion of nose, sequela +C2830760|T037|AB|S00.34|ICD10CM|External constriction of nose|External constriction of nose +C2830760|T037|HT|S00.34|ICD10CM|External constriction of nose|External constriction of nose +C2830761|T037|AB|S00.34XA|ICD10CM|External constriction of nose, initial encounter|External constriction of nose, initial encounter +C2830761|T037|PT|S00.34XA|ICD10CM|External constriction of nose, initial encounter|External constriction of nose, initial encounter +C2830762|T037|AB|S00.34XD|ICD10CM|External constriction of nose, subsequent encounter|External constriction of nose, subsequent encounter +C2830762|T037|PT|S00.34XD|ICD10CM|External constriction of nose, subsequent encounter|External constriction of nose, subsequent encounter +C2830763|T037|AB|S00.34XS|ICD10CM|External constriction of nose, sequela|External constriction of nose, sequela +C2830763|T037|PT|S00.34XS|ICD10CM|External constriction of nose, sequela|External constriction of nose, sequela +C2018845|T037|ET|S00.35|ICD10CM|Splinter in the nose|Splinter in the nose +C2830764|T037|AB|S00.35|ICD10CM|Superficial foreign body of nose|Superficial foreign body of nose +C2830764|T037|HT|S00.35|ICD10CM|Superficial foreign body of nose|Superficial foreign body of nose +C2830765|T037|AB|S00.35XA|ICD10CM|Superficial foreign body of nose, initial encounter|Superficial foreign body of nose, initial encounter +C2830765|T037|PT|S00.35XA|ICD10CM|Superficial foreign body of nose, initial encounter|Superficial foreign body of nose, initial encounter +C2830766|T037|AB|S00.35XD|ICD10CM|Superficial foreign body of nose, subsequent encounter|Superficial foreign body of nose, subsequent encounter +C2830766|T037|PT|S00.35XD|ICD10CM|Superficial foreign body of nose, subsequent encounter|Superficial foreign body of nose, subsequent encounter +C2830767|T037|AB|S00.35XS|ICD10CM|Superficial foreign body of nose, sequela|Superficial foreign body of nose, sequela +C2830767|T037|PT|S00.35XS|ICD10CM|Superficial foreign body of nose, sequela|Superficial foreign body of nose, sequela +C2231494|T037|AB|S00.36|ICD10CM|Insect bite (nonvenomous) of nose|Insect bite (nonvenomous) of nose +C2231494|T037|HT|S00.36|ICD10CM|Insect bite (nonvenomous) of nose|Insect bite (nonvenomous) of nose +C2830768|T037|AB|S00.36XA|ICD10CM|Insect bite (nonvenomous) of nose, initial encounter|Insect bite (nonvenomous) of nose, initial encounter +C2830768|T037|PT|S00.36XA|ICD10CM|Insect bite (nonvenomous) of nose, initial encounter|Insect bite (nonvenomous) of nose, initial encounter +C2830769|T037|AB|S00.36XD|ICD10CM|Insect bite (nonvenomous) of nose, subsequent encounter|Insect bite (nonvenomous) of nose, subsequent encounter +C2830769|T037|PT|S00.36XD|ICD10CM|Insect bite (nonvenomous) of nose, subsequent encounter|Insect bite (nonvenomous) of nose, subsequent encounter +C2830770|T037|AB|S00.36XS|ICD10CM|Insect bite (nonvenomous) of nose, sequela|Insect bite (nonvenomous) of nose, sequela +C2830770|T037|PT|S00.36XS|ICD10CM|Insect bite (nonvenomous) of nose, sequela|Insect bite (nonvenomous) of nose, sequela +C2830771|T037|AB|S00.37|ICD10CM|Other superficial bite of nose|Other superficial bite of nose +C2830771|T037|HT|S00.37|ICD10CM|Other superficial bite of nose|Other superficial bite of nose +C2830772|T037|AB|S00.37XA|ICD10CM|Other superficial bite of nose, initial encounter|Other superficial bite of nose, initial encounter +C2830772|T037|PT|S00.37XA|ICD10CM|Other superficial bite of nose, initial encounter|Other superficial bite of nose, initial encounter +C2830773|T037|AB|S00.37XD|ICD10CM|Other superficial bite of nose, subsequent encounter|Other superficial bite of nose, subsequent encounter +C2830773|T037|PT|S00.37XD|ICD10CM|Other superficial bite of nose, subsequent encounter|Other superficial bite of nose, subsequent encounter +C2830774|T037|AB|S00.37XS|ICD10CM|Other superficial bite of nose, sequela|Other superficial bite of nose, sequela +C2830774|T037|PT|S00.37XS|ICD10CM|Other superficial bite of nose, sequela|Other superficial bite of nose, sequela +C0392045|T037|HT|S00.4|ICD10CM|Superficial injury of ear|Superficial injury of ear +C0392045|T037|AB|S00.4|ICD10CM|Superficial injury of ear|Superficial injury of ear +C0392045|T037|PT|S00.4|ICD10|Superficial injury of ear|Superficial injury of ear +C0392045|T037|AB|S00.40|ICD10CM|Unspecified superficial injury of ear|Unspecified superficial injury of ear +C0392045|T037|HT|S00.40|ICD10CM|Unspecified superficial injury of ear|Unspecified superficial injury of ear +C2830775|T037|AB|S00.401|ICD10CM|Unspecified superficial injury of right ear|Unspecified superficial injury of right ear +C2830775|T037|HT|S00.401|ICD10CM|Unspecified superficial injury of right ear|Unspecified superficial injury of right ear +C2830776|T037|AB|S00.401A|ICD10CM|Unspecified superficial injury of right ear, init encntr|Unspecified superficial injury of right ear, init encntr +C2830776|T037|PT|S00.401A|ICD10CM|Unspecified superficial injury of right ear, initial encounter|Unspecified superficial injury of right ear, initial encounter +C2830777|T037|AB|S00.401D|ICD10CM|Unspecified superficial injury of right ear, subs encntr|Unspecified superficial injury of right ear, subs encntr +C2830777|T037|PT|S00.401D|ICD10CM|Unspecified superficial injury of right ear, subsequent encounter|Unspecified superficial injury of right ear, subsequent encounter +C2830778|T037|AB|S00.401S|ICD10CM|Unspecified superficial injury of right ear, sequela|Unspecified superficial injury of right ear, sequela +C2830778|T037|PT|S00.401S|ICD10CM|Unspecified superficial injury of right ear, sequela|Unspecified superficial injury of right ear, sequela +C2830779|T037|AB|S00.402|ICD10CM|Unspecified superficial injury of left ear|Unspecified superficial injury of left ear +C2830779|T037|HT|S00.402|ICD10CM|Unspecified superficial injury of left ear|Unspecified superficial injury of left ear +C2830780|T037|AB|S00.402A|ICD10CM|Unspecified superficial injury of left ear, init encntr|Unspecified superficial injury of left ear, init encntr +C2830780|T037|PT|S00.402A|ICD10CM|Unspecified superficial injury of left ear, initial encounter|Unspecified superficial injury of left ear, initial encounter +C2830781|T037|AB|S00.402D|ICD10CM|Unspecified superficial injury of left ear, subs encntr|Unspecified superficial injury of left ear, subs encntr +C2830781|T037|PT|S00.402D|ICD10CM|Unspecified superficial injury of left ear, subsequent encounter|Unspecified superficial injury of left ear, subsequent encounter +C2830782|T037|AB|S00.402S|ICD10CM|Unspecified superficial injury of left ear, sequela|Unspecified superficial injury of left ear, sequela +C2830782|T037|PT|S00.402S|ICD10CM|Unspecified superficial injury of left ear, sequela|Unspecified superficial injury of left ear, sequela +C2830783|T037|AB|S00.409|ICD10CM|Unspecified superficial injury of unspecified ear|Unspecified superficial injury of unspecified ear +C2830783|T037|HT|S00.409|ICD10CM|Unspecified superficial injury of unspecified ear|Unspecified superficial injury of unspecified ear +C2830784|T037|AB|S00.409A|ICD10CM|Unsp superficial injury of unspecified ear, init encntr|Unsp superficial injury of unspecified ear, init encntr +C2830784|T037|PT|S00.409A|ICD10CM|Unspecified superficial injury of unspecified ear, initial encounter|Unspecified superficial injury of unspecified ear, initial encounter +C2830785|T037|AB|S00.409D|ICD10CM|Unsp superficial injury of unspecified ear, subs encntr|Unsp superficial injury of unspecified ear, subs encntr +C2830785|T037|PT|S00.409D|ICD10CM|Unspecified superficial injury of unspecified ear, subsequent encounter|Unspecified superficial injury of unspecified ear, subsequent encounter +C2830786|T037|AB|S00.409S|ICD10CM|Unspecified superficial injury of unspecified ear, sequela|Unspecified superficial injury of unspecified ear, sequela +C2830786|T037|PT|S00.409S|ICD10CM|Unspecified superficial injury of unspecified ear, sequela|Unspecified superficial injury of unspecified ear, sequela +C0948401|T037|AB|S00.41|ICD10CM|Abrasion of ear|Abrasion of ear +C0948401|T037|HT|S00.41|ICD10CM|Abrasion of ear|Abrasion of ear +C2041967|T037|AB|S00.411|ICD10CM|Abrasion of right ear|Abrasion of right ear +C2041967|T037|HT|S00.411|ICD10CM|Abrasion of right ear|Abrasion of right ear +C2830787|T037|PT|S00.411A|ICD10CM|Abrasion of right ear, initial encounter|Abrasion of right ear, initial encounter +C2830787|T037|AB|S00.411A|ICD10CM|Abrasion of right ear, initial encounter|Abrasion of right ear, initial encounter +C2830788|T037|PT|S00.411D|ICD10CM|Abrasion of right ear, subsequent encounter|Abrasion of right ear, subsequent encounter +C2830788|T037|AB|S00.411D|ICD10CM|Abrasion of right ear, subsequent encounter|Abrasion of right ear, subsequent encounter +C2830789|T037|PT|S00.411S|ICD10CM|Abrasion of right ear, sequela|Abrasion of right ear, sequela +C2830789|T037|AB|S00.411S|ICD10CM|Abrasion of right ear, sequela|Abrasion of right ear, sequela +C2004752|T037|AB|S00.412|ICD10CM|Abrasion of left ear|Abrasion of left ear +C2004752|T037|HT|S00.412|ICD10CM|Abrasion of left ear|Abrasion of left ear +C2830790|T037|PT|S00.412A|ICD10CM|Abrasion of left ear, initial encounter|Abrasion of left ear, initial encounter +C2830790|T037|AB|S00.412A|ICD10CM|Abrasion of left ear, initial encounter|Abrasion of left ear, initial encounter +C2830791|T037|PT|S00.412D|ICD10CM|Abrasion of left ear, subsequent encounter|Abrasion of left ear, subsequent encounter +C2830791|T037|AB|S00.412D|ICD10CM|Abrasion of left ear, subsequent encounter|Abrasion of left ear, subsequent encounter +C2830792|T037|PT|S00.412S|ICD10CM|Abrasion of left ear, sequela|Abrasion of left ear, sequela +C2830792|T037|AB|S00.412S|ICD10CM|Abrasion of left ear, sequela|Abrasion of left ear, sequela +C2830793|T037|AB|S00.419|ICD10CM|Abrasion of unspecified ear|Abrasion of unspecified ear +C2830793|T037|HT|S00.419|ICD10CM|Abrasion of unspecified ear|Abrasion of unspecified ear +C2830794|T037|PT|S00.419A|ICD10CM|Abrasion of unspecified ear, initial encounter|Abrasion of unspecified ear, initial encounter +C2830794|T037|AB|S00.419A|ICD10CM|Abrasion of unspecified ear, initial encounter|Abrasion of unspecified ear, initial encounter +C2830795|T037|PT|S00.419D|ICD10CM|Abrasion of unspecified ear, subsequent encounter|Abrasion of unspecified ear, subsequent encounter +C2830795|T037|AB|S00.419D|ICD10CM|Abrasion of unspecified ear, subsequent encounter|Abrasion of unspecified ear, subsequent encounter +C2830796|T037|PT|S00.419S|ICD10CM|Abrasion of unspecified ear, sequela|Abrasion of unspecified ear, sequela +C2830796|T037|AB|S00.419S|ICD10CM|Abrasion of unspecified ear, sequela|Abrasion of unspecified ear, sequela +C2830797|T037|AB|S00.42|ICD10CM|Blister (nonthermal) of ear|Blister (nonthermal) of ear +C2830797|T037|HT|S00.42|ICD10CM|Blister (nonthermal) of ear|Blister (nonthermal) of ear +C2830798|T037|AB|S00.421|ICD10CM|Blister (nonthermal) of right ear|Blister (nonthermal) of right ear +C2830798|T037|HT|S00.421|ICD10CM|Blister (nonthermal) of right ear|Blister (nonthermal) of right ear +C2830799|T037|AB|S00.421A|ICD10CM|Blister (nonthermal) of right ear, initial encounter|Blister (nonthermal) of right ear, initial encounter +C2830799|T037|PT|S00.421A|ICD10CM|Blister (nonthermal) of right ear, initial encounter|Blister (nonthermal) of right ear, initial encounter +C2830800|T037|AB|S00.421D|ICD10CM|Blister (nonthermal) of right ear, subsequent encounter|Blister (nonthermal) of right ear, subsequent encounter +C2830800|T037|PT|S00.421D|ICD10CM|Blister (nonthermal) of right ear, subsequent encounter|Blister (nonthermal) of right ear, subsequent encounter +C2830801|T037|AB|S00.421S|ICD10CM|Blister (nonthermal) of right ear, sequela|Blister (nonthermal) of right ear, sequela +C2830801|T037|PT|S00.421S|ICD10CM|Blister (nonthermal) of right ear, sequela|Blister (nonthermal) of right ear, sequela +C2830802|T037|AB|S00.422|ICD10CM|Blister (nonthermal) of left ear|Blister (nonthermal) of left ear +C2830802|T037|HT|S00.422|ICD10CM|Blister (nonthermal) of left ear|Blister (nonthermal) of left ear +C2830803|T037|AB|S00.422A|ICD10CM|Blister (nonthermal) of left ear, initial encounter|Blister (nonthermal) of left ear, initial encounter +C2830803|T037|PT|S00.422A|ICD10CM|Blister (nonthermal) of left ear, initial encounter|Blister (nonthermal) of left ear, initial encounter +C2830804|T037|AB|S00.422D|ICD10CM|Blister (nonthermal) of left ear, subsequent encounter|Blister (nonthermal) of left ear, subsequent encounter +C2830804|T037|PT|S00.422D|ICD10CM|Blister (nonthermal) of left ear, subsequent encounter|Blister (nonthermal) of left ear, subsequent encounter +C2830805|T037|AB|S00.422S|ICD10CM|Blister (nonthermal) of left ear, sequela|Blister (nonthermal) of left ear, sequela +C2830805|T037|PT|S00.422S|ICD10CM|Blister (nonthermal) of left ear, sequela|Blister (nonthermal) of left ear, sequela +C2830806|T037|AB|S00.429|ICD10CM|Blister (nonthermal) of unspecified ear|Blister (nonthermal) of unspecified ear +C2830806|T037|HT|S00.429|ICD10CM|Blister (nonthermal) of unspecified ear|Blister (nonthermal) of unspecified ear +C2830807|T037|AB|S00.429A|ICD10CM|Blister (nonthermal) of unspecified ear, initial encounter|Blister (nonthermal) of unspecified ear, initial encounter +C2830807|T037|PT|S00.429A|ICD10CM|Blister (nonthermal) of unspecified ear, initial encounter|Blister (nonthermal) of unspecified ear, initial encounter +C2830808|T037|AB|S00.429D|ICD10CM|Blister (nonthermal) of unspecified ear, subs encntr|Blister (nonthermal) of unspecified ear, subs encntr +C2830808|T037|PT|S00.429D|ICD10CM|Blister (nonthermal) of unspecified ear, subsequent encounter|Blister (nonthermal) of unspecified ear, subsequent encounter +C2830809|T037|AB|S00.429S|ICD10CM|Blister (nonthermal) of unspecified ear, sequela|Blister (nonthermal) of unspecified ear, sequela +C2830809|T037|PT|S00.429S|ICD10CM|Blister (nonthermal) of unspecified ear, sequela|Blister (nonthermal) of unspecified ear, sequela +C0274209|T037|ET|S00.43|ICD10CM|Bruise of ear|Bruise of ear +C0274209|T037|HT|S00.43|ICD10CM|Contusion of ear|Contusion of ear +C0274209|T037|AB|S00.43|ICD10CM|Contusion of ear|Contusion of ear +C2830810|T046|ET|S00.43|ICD10CM|Hematoma of ear|Hematoma of ear +C2201286|T037|HT|S00.431|ICD10CM|Contusion of right ear|Contusion of right ear +C2201286|T037|AB|S00.431|ICD10CM|Contusion of right ear|Contusion of right ear +C2830811|T037|PT|S00.431A|ICD10CM|Contusion of right ear, initial encounter|Contusion of right ear, initial encounter +C2830811|T037|AB|S00.431A|ICD10CM|Contusion of right ear, initial encounter|Contusion of right ear, initial encounter +C2830812|T037|PT|S00.431D|ICD10CM|Contusion of right ear, subsequent encounter|Contusion of right ear, subsequent encounter +C2830812|T037|AB|S00.431D|ICD10CM|Contusion of right ear, subsequent encounter|Contusion of right ear, subsequent encounter +C2830813|T037|PT|S00.431S|ICD10CM|Contusion of right ear, sequela|Contusion of right ear, sequela +C2830813|T037|AB|S00.431S|ICD10CM|Contusion of right ear, sequela|Contusion of right ear, sequela +C2140637|T037|HT|S00.432|ICD10CM|Contusion of left ear|Contusion of left ear +C2140637|T037|AB|S00.432|ICD10CM|Contusion of left ear|Contusion of left ear +C2830814|T037|PT|S00.432A|ICD10CM|Contusion of left ear, initial encounter|Contusion of left ear, initial encounter +C2830814|T037|AB|S00.432A|ICD10CM|Contusion of left ear, initial encounter|Contusion of left ear, initial encounter +C2830815|T037|PT|S00.432D|ICD10CM|Contusion of left ear, subsequent encounter|Contusion of left ear, subsequent encounter +C2830815|T037|AB|S00.432D|ICD10CM|Contusion of left ear, subsequent encounter|Contusion of left ear, subsequent encounter +C2830816|T037|PT|S00.432S|ICD10CM|Contusion of left ear, sequela|Contusion of left ear, sequela +C2830816|T037|AB|S00.432S|ICD10CM|Contusion of left ear, sequela|Contusion of left ear, sequela +C2830817|T037|AB|S00.439|ICD10CM|Contusion of unspecified ear|Contusion of unspecified ear +C2830817|T037|HT|S00.439|ICD10CM|Contusion of unspecified ear|Contusion of unspecified ear +C2830818|T037|PT|S00.439A|ICD10CM|Contusion of unspecified ear, initial encounter|Contusion of unspecified ear, initial encounter +C2830818|T037|AB|S00.439A|ICD10CM|Contusion of unspecified ear, initial encounter|Contusion of unspecified ear, initial encounter +C2830819|T037|PT|S00.439D|ICD10CM|Contusion of unspecified ear, subsequent encounter|Contusion of unspecified ear, subsequent encounter +C2830819|T037|AB|S00.439D|ICD10CM|Contusion of unspecified ear, subsequent encounter|Contusion of unspecified ear, subsequent encounter +C2830820|T037|PT|S00.439S|ICD10CM|Contusion of unspecified ear, sequela|Contusion of unspecified ear, sequela +C2830820|T037|AB|S00.439S|ICD10CM|Contusion of unspecified ear, sequela|Contusion of unspecified ear, sequela +C2830821|T037|AB|S00.44|ICD10CM|External constriction of ear|External constriction of ear +C2830821|T037|HT|S00.44|ICD10CM|External constriction of ear|External constriction of ear +C2830822|T037|AB|S00.441|ICD10CM|External constriction of right ear|External constriction of right ear +C2830822|T037|HT|S00.441|ICD10CM|External constriction of right ear|External constriction of right ear +C2830823|T037|AB|S00.441A|ICD10CM|External constriction of right ear, initial encounter|External constriction of right ear, initial encounter +C2830823|T037|PT|S00.441A|ICD10CM|External constriction of right ear, initial encounter|External constriction of right ear, initial encounter +C2830824|T037|AB|S00.441D|ICD10CM|External constriction of right ear, subsequent encounter|External constriction of right ear, subsequent encounter +C2830824|T037|PT|S00.441D|ICD10CM|External constriction of right ear, subsequent encounter|External constriction of right ear, subsequent encounter +C2830825|T037|AB|S00.441S|ICD10CM|External constriction of right ear, sequela|External constriction of right ear, sequela +C2830825|T037|PT|S00.441S|ICD10CM|External constriction of right ear, sequela|External constriction of right ear, sequela +C2830826|T037|AB|S00.442|ICD10CM|External constriction of left ear|External constriction of left ear +C2830826|T037|HT|S00.442|ICD10CM|External constriction of left ear|External constriction of left ear +C2830827|T037|AB|S00.442A|ICD10CM|External constriction of left ear, initial encounter|External constriction of left ear, initial encounter +C2830827|T037|PT|S00.442A|ICD10CM|External constriction of left ear, initial encounter|External constriction of left ear, initial encounter +C2830828|T037|AB|S00.442D|ICD10CM|External constriction of left ear, subsequent encounter|External constriction of left ear, subsequent encounter +C2830828|T037|PT|S00.442D|ICD10CM|External constriction of left ear, subsequent encounter|External constriction of left ear, subsequent encounter +C2830829|T037|AB|S00.442S|ICD10CM|External constriction of left ear, sequela|External constriction of left ear, sequela +C2830829|T037|PT|S00.442S|ICD10CM|External constriction of left ear, sequela|External constriction of left ear, sequela +C2830830|T037|AB|S00.449|ICD10CM|External constriction of unspecified ear|External constriction of unspecified ear +C2830830|T037|HT|S00.449|ICD10CM|External constriction of unspecified ear|External constriction of unspecified ear +C2830831|T037|AB|S00.449A|ICD10CM|External constriction of unspecified ear, initial encounter|External constriction of unspecified ear, initial encounter +C2830831|T037|PT|S00.449A|ICD10CM|External constriction of unspecified ear, initial encounter|External constriction of unspecified ear, initial encounter +C2830832|T037|AB|S00.449D|ICD10CM|External constriction of unspecified ear, subs encntr|External constriction of unspecified ear, subs encntr +C2830832|T037|PT|S00.449D|ICD10CM|External constriction of unspecified ear, subsequent encounter|External constriction of unspecified ear, subsequent encounter +C2830833|T037|AB|S00.449S|ICD10CM|External constriction of unspecified ear, sequela|External constriction of unspecified ear, sequela +C2830833|T037|PT|S00.449S|ICD10CM|External constriction of unspecified ear, sequela|External constriction of unspecified ear, sequela +C2018800|T037|ET|S00.45|ICD10CM|Splinter in the ear|Splinter in the ear +C2830834|T037|HT|S00.45|ICD10CM|Superficial foreign body of ear|Superficial foreign body of ear +C2830834|T037|AB|S00.45|ICD10CM|Superficial foreign body of ear|Superficial foreign body of ear +C2830835|T037|AB|S00.451|ICD10CM|Superficial foreign body of right ear|Superficial foreign body of right ear +C2830835|T037|HT|S00.451|ICD10CM|Superficial foreign body of right ear|Superficial foreign body of right ear +C2830836|T037|AB|S00.451A|ICD10CM|Superficial foreign body of right ear, initial encounter|Superficial foreign body of right ear, initial encounter +C2830836|T037|PT|S00.451A|ICD10CM|Superficial foreign body of right ear, initial encounter|Superficial foreign body of right ear, initial encounter +C2830837|T037|AB|S00.451D|ICD10CM|Superficial foreign body of right ear, subsequent encounter|Superficial foreign body of right ear, subsequent encounter +C2830837|T037|PT|S00.451D|ICD10CM|Superficial foreign body of right ear, subsequent encounter|Superficial foreign body of right ear, subsequent encounter +C2830838|T037|AB|S00.451S|ICD10CM|Superficial foreign body of right ear, sequela|Superficial foreign body of right ear, sequela +C2830838|T037|PT|S00.451S|ICD10CM|Superficial foreign body of right ear, sequela|Superficial foreign body of right ear, sequela +C2830839|T037|AB|S00.452|ICD10CM|Superficial foreign body of left ear|Superficial foreign body of left ear +C2830839|T037|HT|S00.452|ICD10CM|Superficial foreign body of left ear|Superficial foreign body of left ear +C2830840|T037|AB|S00.452A|ICD10CM|Superficial foreign body of left ear, initial encounter|Superficial foreign body of left ear, initial encounter +C2830840|T037|PT|S00.452A|ICD10CM|Superficial foreign body of left ear, initial encounter|Superficial foreign body of left ear, initial encounter +C2830841|T037|AB|S00.452D|ICD10CM|Superficial foreign body of left ear, subsequent encounter|Superficial foreign body of left ear, subsequent encounter +C2830841|T037|PT|S00.452D|ICD10CM|Superficial foreign body of left ear, subsequent encounter|Superficial foreign body of left ear, subsequent encounter +C2830842|T037|AB|S00.452S|ICD10CM|Superficial foreign body of left ear, sequela|Superficial foreign body of left ear, sequela +C2830842|T037|PT|S00.452S|ICD10CM|Superficial foreign body of left ear, sequela|Superficial foreign body of left ear, sequela +C2830843|T037|AB|S00.459|ICD10CM|Superficial foreign body of unspecified ear|Superficial foreign body of unspecified ear +C2830843|T037|HT|S00.459|ICD10CM|Superficial foreign body of unspecified ear|Superficial foreign body of unspecified ear +C2830844|T037|AB|S00.459A|ICD10CM|Superficial foreign body of unspecified ear, init encntr|Superficial foreign body of unspecified ear, init encntr +C2830844|T037|PT|S00.459A|ICD10CM|Superficial foreign body of unspecified ear, initial encounter|Superficial foreign body of unspecified ear, initial encounter +C2830845|T037|AB|S00.459D|ICD10CM|Superficial foreign body of unspecified ear, subs encntr|Superficial foreign body of unspecified ear, subs encntr +C2830845|T037|PT|S00.459D|ICD10CM|Superficial foreign body of unspecified ear, subsequent encounter|Superficial foreign body of unspecified ear, subsequent encounter +C2830846|T037|AB|S00.459S|ICD10CM|Superficial foreign body of unspecified ear, sequela|Superficial foreign body of unspecified ear, sequela +C2830846|T037|PT|S00.459S|ICD10CM|Superficial foreign body of unspecified ear, sequela|Superficial foreign body of unspecified ear, sequela +C2231485|T037|AB|S00.46|ICD10CM|Insect bite (nonvenomous) of ear|Insect bite (nonvenomous) of ear +C2231485|T037|HT|S00.46|ICD10CM|Insect bite (nonvenomous) of ear|Insect bite (nonvenomous) of ear +C2231486|T037|AB|S00.461|ICD10CM|Insect bite (nonvenomous) of right ear|Insect bite (nonvenomous) of right ear +C2231486|T037|HT|S00.461|ICD10CM|Insect bite (nonvenomous) of right ear|Insect bite (nonvenomous) of right ear +C2830847|T037|AB|S00.461A|ICD10CM|Insect bite (nonvenomous) of right ear, initial encounter|Insect bite (nonvenomous) of right ear, initial encounter +C2830847|T037|PT|S00.461A|ICD10CM|Insect bite (nonvenomous) of right ear, initial encounter|Insect bite (nonvenomous) of right ear, initial encounter +C2830848|T037|AB|S00.461D|ICD10CM|Insect bite (nonvenomous) of right ear, subsequent encounter|Insect bite (nonvenomous) of right ear, subsequent encounter +C2830848|T037|PT|S00.461D|ICD10CM|Insect bite (nonvenomous) of right ear, subsequent encounter|Insect bite (nonvenomous) of right ear, subsequent encounter +C2830849|T037|AB|S00.461S|ICD10CM|Insect bite (nonvenomous) of right ear, sequela|Insect bite (nonvenomous) of right ear, sequela +C2830849|T037|PT|S00.461S|ICD10CM|Insect bite (nonvenomous) of right ear, sequela|Insect bite (nonvenomous) of right ear, sequela +C2231487|T037|AB|S00.462|ICD10CM|Insect bite (nonvenomous) of left ear|Insect bite (nonvenomous) of left ear +C2231487|T037|HT|S00.462|ICD10CM|Insect bite (nonvenomous) of left ear|Insect bite (nonvenomous) of left ear +C2830850|T037|AB|S00.462A|ICD10CM|Insect bite (nonvenomous) of left ear, initial encounter|Insect bite (nonvenomous) of left ear, initial encounter +C2830850|T037|PT|S00.462A|ICD10CM|Insect bite (nonvenomous) of left ear, initial encounter|Insect bite (nonvenomous) of left ear, initial encounter +C2830851|T037|AB|S00.462D|ICD10CM|Insect bite (nonvenomous) of left ear, subsequent encounter|Insect bite (nonvenomous) of left ear, subsequent encounter +C2830851|T037|PT|S00.462D|ICD10CM|Insect bite (nonvenomous) of left ear, subsequent encounter|Insect bite (nonvenomous) of left ear, subsequent encounter +C2830852|T037|AB|S00.462S|ICD10CM|Insect bite (nonvenomous) of left ear, sequela|Insect bite (nonvenomous) of left ear, sequela +C2830852|T037|PT|S00.462S|ICD10CM|Insect bite (nonvenomous) of left ear, sequela|Insect bite (nonvenomous) of left ear, sequela +C2830853|T037|AB|S00.469|ICD10CM|Insect bite (nonvenomous) of unspecified ear|Insect bite (nonvenomous) of unspecified ear +C2830853|T037|HT|S00.469|ICD10CM|Insect bite (nonvenomous) of unspecified ear|Insect bite (nonvenomous) of unspecified ear +C2830854|T037|AB|S00.469A|ICD10CM|Insect bite (nonvenomous) of unspecified ear, init encntr|Insect bite (nonvenomous) of unspecified ear, init encntr +C2830854|T037|PT|S00.469A|ICD10CM|Insect bite (nonvenomous) of unspecified ear, initial encounter|Insect bite (nonvenomous) of unspecified ear, initial encounter +C2830855|T037|AB|S00.469D|ICD10CM|Insect bite (nonvenomous) of unspecified ear, subs encntr|Insect bite (nonvenomous) of unspecified ear, subs encntr +C2830855|T037|PT|S00.469D|ICD10CM|Insect bite (nonvenomous) of unspecified ear, subsequent encounter|Insect bite (nonvenomous) of unspecified ear, subsequent encounter +C2830856|T037|AB|S00.469S|ICD10CM|Insect bite (nonvenomous) of unspecified ear, sequela|Insect bite (nonvenomous) of unspecified ear, sequela +C2830856|T037|PT|S00.469S|ICD10CM|Insect bite (nonvenomous) of unspecified ear, sequela|Insect bite (nonvenomous) of unspecified ear, sequela +C2830857|T037|AB|S00.47|ICD10CM|Other superficial bite of ear|Other superficial bite of ear +C2830857|T037|HT|S00.47|ICD10CM|Other superficial bite of ear|Other superficial bite of ear +C2830858|T037|AB|S00.471|ICD10CM|Other superficial bite of right ear|Other superficial bite of right ear +C2830858|T037|HT|S00.471|ICD10CM|Other superficial bite of right ear|Other superficial bite of right ear +C2830859|T037|AB|S00.471A|ICD10CM|Other superficial bite of right ear, initial encounter|Other superficial bite of right ear, initial encounter +C2830859|T037|PT|S00.471A|ICD10CM|Other superficial bite of right ear, initial encounter|Other superficial bite of right ear, initial encounter +C2830860|T037|AB|S00.471D|ICD10CM|Other superficial bite of right ear, subsequent encounter|Other superficial bite of right ear, subsequent encounter +C2830860|T037|PT|S00.471D|ICD10CM|Other superficial bite of right ear, subsequent encounter|Other superficial bite of right ear, subsequent encounter +C2830861|T037|AB|S00.471S|ICD10CM|Other superficial bite of right ear, sequela|Other superficial bite of right ear, sequela +C2830861|T037|PT|S00.471S|ICD10CM|Other superficial bite of right ear, sequela|Other superficial bite of right ear, sequela +C2830862|T037|AB|S00.472|ICD10CM|Other superficial bite of left ear|Other superficial bite of left ear +C2830862|T037|HT|S00.472|ICD10CM|Other superficial bite of left ear|Other superficial bite of left ear +C2830863|T037|AB|S00.472A|ICD10CM|Other superficial bite of left ear, initial encounter|Other superficial bite of left ear, initial encounter +C2830863|T037|PT|S00.472A|ICD10CM|Other superficial bite of left ear, initial encounter|Other superficial bite of left ear, initial encounter +C2830864|T037|AB|S00.472D|ICD10CM|Other superficial bite of left ear, subsequent encounter|Other superficial bite of left ear, subsequent encounter +C2830864|T037|PT|S00.472D|ICD10CM|Other superficial bite of left ear, subsequent encounter|Other superficial bite of left ear, subsequent encounter +C2830865|T037|AB|S00.472S|ICD10CM|Other superficial bite of left ear, sequela|Other superficial bite of left ear, sequela +C2830865|T037|PT|S00.472S|ICD10CM|Other superficial bite of left ear, sequela|Other superficial bite of left ear, sequela +C2830866|T037|AB|S00.479|ICD10CM|Other superficial bite of unspecified ear|Other superficial bite of unspecified ear +C2830866|T037|HT|S00.479|ICD10CM|Other superficial bite of unspecified ear|Other superficial bite of unspecified ear +C2830867|T037|AB|S00.479A|ICD10CM|Other superficial bite of unspecified ear, initial encounter|Other superficial bite of unspecified ear, initial encounter +C2830867|T037|PT|S00.479A|ICD10CM|Other superficial bite of unspecified ear, initial encounter|Other superficial bite of unspecified ear, initial encounter +C2830868|T037|AB|S00.479D|ICD10CM|Other superficial bite of unspecified ear, subs encntr|Other superficial bite of unspecified ear, subs encntr +C2830868|T037|PT|S00.479D|ICD10CM|Other superficial bite of unspecified ear, subsequent encounter|Other superficial bite of unspecified ear, subsequent encounter +C2830869|T037|AB|S00.479S|ICD10CM|Other superficial bite of unspecified ear, sequela|Other superficial bite of unspecified ear, sequela +C2830869|T037|PT|S00.479S|ICD10CM|Other superficial bite of unspecified ear, sequela|Other superficial bite of unspecified ear, sequela +C0495802|T037|PT|S00.5|ICD10|Superficial injury of lip and oral cavity|Superficial injury of lip and oral cavity +C0495802|T037|HT|S00.5|ICD10CM|Superficial injury of lip and oral cavity|Superficial injury of lip and oral cavity +C0495802|T037|AB|S00.5|ICD10CM|Superficial injury of lip and oral cavity|Superficial injury of lip and oral cavity +C0495802|T037|AB|S00.50|ICD10CM|Unspecified superficial injury of lip and oral cavity|Unspecified superficial injury of lip and oral cavity +C0495802|T037|HT|S00.50|ICD10CM|Unspecified superficial injury of lip and oral cavity|Unspecified superficial injury of lip and oral cavity +C2830870|T037|AB|S00.501|ICD10CM|Unspecified superficial injury of lip|Unspecified superficial injury of lip +C2830870|T037|HT|S00.501|ICD10CM|Unspecified superficial injury of lip|Unspecified superficial injury of lip +C2830871|T037|AB|S00.501A|ICD10CM|Unspecified superficial injury of lip, initial encounter|Unspecified superficial injury of lip, initial encounter +C2830871|T037|PT|S00.501A|ICD10CM|Unspecified superficial injury of lip, initial encounter|Unspecified superficial injury of lip, initial encounter +C2830872|T037|AB|S00.501D|ICD10CM|Unspecified superficial injury of lip, subsequent encounter|Unspecified superficial injury of lip, subsequent encounter +C2830872|T037|PT|S00.501D|ICD10CM|Unspecified superficial injury of lip, subsequent encounter|Unspecified superficial injury of lip, subsequent encounter +C2830873|T037|AB|S00.501S|ICD10CM|Unspecified superficial injury of lip, sequela|Unspecified superficial injury of lip, sequela +C2830873|T037|PT|S00.501S|ICD10CM|Unspecified superficial injury of lip, sequela|Unspecified superficial injury of lip, sequela +C2830874|T037|AB|S00.502|ICD10CM|Unspecified superficial injury of oral cavity|Unspecified superficial injury of oral cavity +C2830874|T037|HT|S00.502|ICD10CM|Unspecified superficial injury of oral cavity|Unspecified superficial injury of oral cavity +C2830875|T037|AB|S00.502A|ICD10CM|Unspecified superficial injury of oral cavity, init encntr|Unspecified superficial injury of oral cavity, init encntr +C2830875|T037|PT|S00.502A|ICD10CM|Unspecified superficial injury of oral cavity, initial encounter|Unspecified superficial injury of oral cavity, initial encounter +C2830876|T037|AB|S00.502D|ICD10CM|Unspecified superficial injury of oral cavity, subs encntr|Unspecified superficial injury of oral cavity, subs encntr +C2830876|T037|PT|S00.502D|ICD10CM|Unspecified superficial injury of oral cavity, subsequent encounter|Unspecified superficial injury of oral cavity, subsequent encounter +C2830877|T037|AB|S00.502S|ICD10CM|Unspecified superficial injury of oral cavity, sequela|Unspecified superficial injury of oral cavity, sequela +C2830877|T037|PT|S00.502S|ICD10CM|Unspecified superficial injury of oral cavity, sequela|Unspecified superficial injury of oral cavity, sequela +C2830878|T037|AB|S00.51|ICD10CM|Abrasion of lip and oral cavity|Abrasion of lip and oral cavity +C2830878|T037|HT|S00.51|ICD10CM|Abrasion of lip and oral cavity|Abrasion of lip and oral cavity +C2004792|T037|AB|S00.511|ICD10CM|Abrasion of lip|Abrasion of lip +C2004792|T037|HT|S00.511|ICD10CM|Abrasion of lip|Abrasion of lip +C2830879|T037|PT|S00.511A|ICD10CM|Abrasion of lip, initial encounter|Abrasion of lip, initial encounter +C2830879|T037|AB|S00.511A|ICD10CM|Abrasion of lip, initial encounter|Abrasion of lip, initial encounter +C2830880|T037|PT|S00.511D|ICD10CM|Abrasion of lip, subsequent encounter|Abrasion of lip, subsequent encounter +C2830880|T037|AB|S00.511D|ICD10CM|Abrasion of lip, subsequent encounter|Abrasion of lip, subsequent encounter +C2830881|T037|PT|S00.511S|ICD10CM|Abrasion of lip, sequela|Abrasion of lip, sequela +C2830881|T037|AB|S00.511S|ICD10CM|Abrasion of lip, sequela|Abrasion of lip, sequela +C0560952|T037|AB|S00.512|ICD10CM|Abrasion of oral cavity|Abrasion of oral cavity +C0560952|T037|HT|S00.512|ICD10CM|Abrasion of oral cavity|Abrasion of oral cavity +C2830882|T037|PT|S00.512A|ICD10CM|Abrasion of oral cavity, initial encounter|Abrasion of oral cavity, initial encounter +C2830882|T037|AB|S00.512A|ICD10CM|Abrasion of oral cavity, initial encounter|Abrasion of oral cavity, initial encounter +C2830883|T037|PT|S00.512D|ICD10CM|Abrasion of oral cavity, subsequent encounter|Abrasion of oral cavity, subsequent encounter +C2830883|T037|AB|S00.512D|ICD10CM|Abrasion of oral cavity, subsequent encounter|Abrasion of oral cavity, subsequent encounter +C2830884|T037|PT|S00.512S|ICD10CM|Abrasion of oral cavity, sequela|Abrasion of oral cavity, sequela +C2830884|T037|AB|S00.512S|ICD10CM|Abrasion of oral cavity, sequela|Abrasion of oral cavity, sequela +C2830885|T037|AB|S00.52|ICD10CM|Blister (nonthermal) of lip and oral cavity|Blister (nonthermal) of lip and oral cavity +C2830885|T037|HT|S00.52|ICD10CM|Blister (nonthermal) of lip and oral cavity|Blister (nonthermal) of lip and oral cavity +C2830886|T037|AB|S00.521|ICD10CM|Blister (nonthermal) of lip|Blister (nonthermal) of lip +C2830886|T037|HT|S00.521|ICD10CM|Blister (nonthermal) of lip|Blister (nonthermal) of lip +C2830887|T037|AB|S00.521A|ICD10CM|Blister (nonthermal) of lip, initial encounter|Blister (nonthermal) of lip, initial encounter +C2830887|T037|PT|S00.521A|ICD10CM|Blister (nonthermal) of lip, initial encounter|Blister (nonthermal) of lip, initial encounter +C2830888|T037|AB|S00.521D|ICD10CM|Blister (nonthermal) of lip, subsequent encounter|Blister (nonthermal) of lip, subsequent encounter +C2830888|T037|PT|S00.521D|ICD10CM|Blister (nonthermal) of lip, subsequent encounter|Blister (nonthermal) of lip, subsequent encounter +C2830889|T037|AB|S00.521S|ICD10CM|Blister (nonthermal) of lip, sequela|Blister (nonthermal) of lip, sequela +C2830889|T037|PT|S00.521S|ICD10CM|Blister (nonthermal) of lip, sequela|Blister (nonthermal) of lip, sequela +C2830890|T037|AB|S00.522|ICD10CM|Blister (nonthermal) of oral cavity|Blister (nonthermal) of oral cavity +C2830890|T037|HT|S00.522|ICD10CM|Blister (nonthermal) of oral cavity|Blister (nonthermal) of oral cavity +C2830891|T037|AB|S00.522A|ICD10CM|Blister (nonthermal) of oral cavity, initial encounter|Blister (nonthermal) of oral cavity, initial encounter +C2830891|T037|PT|S00.522A|ICD10CM|Blister (nonthermal) of oral cavity, initial encounter|Blister (nonthermal) of oral cavity, initial encounter +C2830892|T037|AB|S00.522D|ICD10CM|Blister (nonthermal) of oral cavity, subsequent encounter|Blister (nonthermal) of oral cavity, subsequent encounter +C2830892|T037|PT|S00.522D|ICD10CM|Blister (nonthermal) of oral cavity, subsequent encounter|Blister (nonthermal) of oral cavity, subsequent encounter +C2830893|T037|AB|S00.522S|ICD10CM|Blister (nonthermal) of oral cavity, sequela|Blister (nonthermal) of oral cavity, sequela +C2830893|T037|PT|S00.522S|ICD10CM|Blister (nonthermal) of oral cavity, sequela|Blister (nonthermal) of oral cavity, sequela +C2830894|T037|AB|S00.53|ICD10CM|Contusion of lip and oral cavity|Contusion of lip and oral cavity +C2830894|T037|HT|S00.53|ICD10CM|Contusion of lip and oral cavity|Contusion of lip and oral cavity +C2830898|T037|ET|S00.531|ICD10CM|Bruise of lip|Bruise of lip +C0274211|T037|HT|S00.531|ICD10CM|Contusion of lip|Contusion of lip +C0274211|T037|AB|S00.531|ICD10CM|Contusion of lip|Contusion of lip +C1736138|T046|ET|S00.531|ICD10CM|Hematoma of lip|Hematoma of lip +C2830895|T037|PT|S00.531A|ICD10CM|Contusion of lip, initial encounter|Contusion of lip, initial encounter +C2830895|T037|AB|S00.531A|ICD10CM|Contusion of lip, initial encounter|Contusion of lip, initial encounter +C2830896|T037|PT|S00.531D|ICD10CM|Contusion of lip, subsequent encounter|Contusion of lip, subsequent encounter +C2830896|T037|AB|S00.531D|ICD10CM|Contusion of lip, subsequent encounter|Contusion of lip, subsequent encounter +C2830897|T037|PT|S00.531S|ICD10CM|Contusion of lip, sequela|Contusion of lip, sequela +C2830897|T037|AB|S00.531S|ICD10CM|Contusion of lip, sequela|Contusion of lip, sequela +C0433709|T037|ET|S00.532|ICD10CM|Bruise of oral cavity|Bruise of oral cavity +C0433709|T037|HT|S00.532|ICD10CM|Contusion of oral cavity|Contusion of oral cavity +C0433709|T037|AB|S00.532|ICD10CM|Contusion of oral cavity|Contusion of oral cavity +C0474980|T046|ET|S00.532|ICD10CM|Hematoma of oral cavity|Hematoma of oral cavity +C2830899|T037|PT|S00.532A|ICD10CM|Contusion of oral cavity, initial encounter|Contusion of oral cavity, initial encounter +C2830899|T037|AB|S00.532A|ICD10CM|Contusion of oral cavity, initial encounter|Contusion of oral cavity, initial encounter +C2830900|T037|PT|S00.532D|ICD10CM|Contusion of oral cavity, subsequent encounter|Contusion of oral cavity, subsequent encounter +C2830900|T037|AB|S00.532D|ICD10CM|Contusion of oral cavity, subsequent encounter|Contusion of oral cavity, subsequent encounter +C2830901|T037|PT|S00.532S|ICD10CM|Contusion of oral cavity, sequela|Contusion of oral cavity, sequela +C2830901|T037|AB|S00.532S|ICD10CM|Contusion of oral cavity, sequela|Contusion of oral cavity, sequela +C2830902|T037|AB|S00.54|ICD10CM|External constriction of lip and oral cavity|External constriction of lip and oral cavity +C2830902|T037|HT|S00.54|ICD10CM|External constriction of lip and oral cavity|External constriction of lip and oral cavity +C2830903|T037|AB|S00.541|ICD10CM|External constriction of lip|External constriction of lip +C2830903|T037|HT|S00.541|ICD10CM|External constriction of lip|External constriction of lip +C2830904|T037|AB|S00.541A|ICD10CM|External constriction of lip, initial encounter|External constriction of lip, initial encounter +C2830904|T037|PT|S00.541A|ICD10CM|External constriction of lip, initial encounter|External constriction of lip, initial encounter +C2830905|T037|AB|S00.541D|ICD10CM|External constriction of lip, subsequent encounter|External constriction of lip, subsequent encounter +C2830905|T037|PT|S00.541D|ICD10CM|External constriction of lip, subsequent encounter|External constriction of lip, subsequent encounter +C2830906|T037|AB|S00.541S|ICD10CM|External constriction of lip, sequela|External constriction of lip, sequela +C2830906|T037|PT|S00.541S|ICD10CM|External constriction of lip, sequela|External constriction of lip, sequela +C2830907|T037|AB|S00.542|ICD10CM|External constriction of oral cavity|External constriction of oral cavity +C2830907|T037|HT|S00.542|ICD10CM|External constriction of oral cavity|External constriction of oral cavity +C2830908|T037|AB|S00.542A|ICD10CM|External constriction of oral cavity, initial encounter|External constriction of oral cavity, initial encounter +C2830908|T037|PT|S00.542A|ICD10CM|External constriction of oral cavity, initial encounter|External constriction of oral cavity, initial encounter +C2830909|T037|AB|S00.542D|ICD10CM|External constriction of oral cavity, subsequent encounter|External constriction of oral cavity, subsequent encounter +C2830909|T037|PT|S00.542D|ICD10CM|External constriction of oral cavity, subsequent encounter|External constriction of oral cavity, subsequent encounter +C2830910|T037|AB|S00.542S|ICD10CM|External constriction of oral cavity, sequela|External constriction of oral cavity, sequela +C2830910|T037|PT|S00.542S|ICD10CM|External constriction of oral cavity, sequela|External constriction of oral cavity, sequela +C2830911|T037|AB|S00.55|ICD10CM|Superficial foreign body of lip and oral cavity|Superficial foreign body of lip and oral cavity +C2830911|T037|HT|S00.55|ICD10CM|Superficial foreign body of lip and oral cavity|Superficial foreign body of lip and oral cavity +C2830916|T037|ET|S00.551|ICD10CM|Splinter of lip and oral cavity|Splinter of lip and oral cavity +C2830912|T037|HT|S00.551|ICD10CM|Superficial foreign body of lip|Superficial foreign body of lip +C2830912|T037|AB|S00.551|ICD10CM|Superficial foreign body of lip|Superficial foreign body of lip +C2830913|T037|AB|S00.551A|ICD10CM|Superficial foreign body of lip, initial encounter|Superficial foreign body of lip, initial encounter +C2830913|T037|PT|S00.551A|ICD10CM|Superficial foreign body of lip, initial encounter|Superficial foreign body of lip, initial encounter +C2830914|T037|AB|S00.551D|ICD10CM|Superficial foreign body of lip, subsequent encounter|Superficial foreign body of lip, subsequent encounter +C2830914|T037|PT|S00.551D|ICD10CM|Superficial foreign body of lip, subsequent encounter|Superficial foreign body of lip, subsequent encounter +C2830915|T037|AB|S00.551S|ICD10CM|Superficial foreign body of lip, sequela|Superficial foreign body of lip, sequela +C2830915|T037|PT|S00.551S|ICD10CM|Superficial foreign body of lip, sequela|Superficial foreign body of lip, sequela +C2830916|T037|ET|S00.552|ICD10CM|Splinter of lip and oral cavity|Splinter of lip and oral cavity +C2830917|T037|AB|S00.552|ICD10CM|Superficial foreign body of oral cavity|Superficial foreign body of oral cavity +C2830917|T037|HT|S00.552|ICD10CM|Superficial foreign body of oral cavity|Superficial foreign body of oral cavity +C2830918|T037|AB|S00.552A|ICD10CM|Superficial foreign body of oral cavity, initial encounter|Superficial foreign body of oral cavity, initial encounter +C2830918|T037|PT|S00.552A|ICD10CM|Superficial foreign body of oral cavity, initial encounter|Superficial foreign body of oral cavity, initial encounter +C2830919|T037|AB|S00.552D|ICD10CM|Superficial foreign body of oral cavity, subs encntr|Superficial foreign body of oral cavity, subs encntr +C2830919|T037|PT|S00.552D|ICD10CM|Superficial foreign body of oral cavity, subsequent encounter|Superficial foreign body of oral cavity, subsequent encounter +C2830920|T037|AB|S00.552S|ICD10CM|Superficial foreign body of oral cavity, sequela|Superficial foreign body of oral cavity, sequela +C2830920|T037|PT|S00.552S|ICD10CM|Superficial foreign body of oral cavity, sequela|Superficial foreign body of oral cavity, sequela +C2830921|T037|AB|S00.56|ICD10CM|Insect bite (nonvenomous) of lip and oral cavity|Insect bite (nonvenomous) of lip and oral cavity +C2830921|T037|HT|S00.56|ICD10CM|Insect bite (nonvenomous) of lip and oral cavity|Insect bite (nonvenomous) of lip and oral cavity +C2231495|T037|AB|S00.561|ICD10CM|Insect bite (nonvenomous) of lip|Insect bite (nonvenomous) of lip +C2231495|T037|HT|S00.561|ICD10CM|Insect bite (nonvenomous) of lip|Insect bite (nonvenomous) of lip +C2830922|T037|AB|S00.561A|ICD10CM|Insect bite (nonvenomous) of lip, initial encounter|Insect bite (nonvenomous) of lip, initial encounter +C2830922|T037|PT|S00.561A|ICD10CM|Insect bite (nonvenomous) of lip, initial encounter|Insect bite (nonvenomous) of lip, initial encounter +C2830923|T037|AB|S00.561D|ICD10CM|Insect bite (nonvenomous) of lip, subsequent encounter|Insect bite (nonvenomous) of lip, subsequent encounter +C2830923|T037|PT|S00.561D|ICD10CM|Insect bite (nonvenomous) of lip, subsequent encounter|Insect bite (nonvenomous) of lip, subsequent encounter +C2830924|T037|AB|S00.561S|ICD10CM|Insect bite (nonvenomous) of lip, sequela|Insect bite (nonvenomous) of lip, sequela +C2830924|T037|PT|S00.561S|ICD10CM|Insect bite (nonvenomous) of lip, sequela|Insect bite (nonvenomous) of lip, sequela +C2830925|T037|AB|S00.562|ICD10CM|Insect bite (nonvenomous) of oral cavity|Insect bite (nonvenomous) of oral cavity +C2830925|T037|HT|S00.562|ICD10CM|Insect bite (nonvenomous) of oral cavity|Insect bite (nonvenomous) of oral cavity +C2830926|T037|AB|S00.562A|ICD10CM|Insect bite (nonvenomous) of oral cavity, initial encounter|Insect bite (nonvenomous) of oral cavity, initial encounter +C2830926|T037|PT|S00.562A|ICD10CM|Insect bite (nonvenomous) of oral cavity, initial encounter|Insect bite (nonvenomous) of oral cavity, initial encounter +C2830927|T037|AB|S00.562D|ICD10CM|Insect bite (nonvenomous) of oral cavity, subs encntr|Insect bite (nonvenomous) of oral cavity, subs encntr +C2830927|T037|PT|S00.562D|ICD10CM|Insect bite (nonvenomous) of oral cavity, subsequent encounter|Insect bite (nonvenomous) of oral cavity, subsequent encounter +C2830928|T037|AB|S00.562S|ICD10CM|Insect bite (nonvenomous) of oral cavity, sequela|Insect bite (nonvenomous) of oral cavity, sequela +C2830928|T037|PT|S00.562S|ICD10CM|Insect bite (nonvenomous) of oral cavity, sequela|Insect bite (nonvenomous) of oral cavity, sequela +C2830929|T037|AB|S00.57|ICD10CM|Other superficial bite of lip and oral cavity|Other superficial bite of lip and oral cavity +C2830929|T037|HT|S00.57|ICD10CM|Other superficial bite of lip and oral cavity|Other superficial bite of lip and oral cavity +C2830930|T037|AB|S00.571|ICD10CM|Other superficial bite of lip|Other superficial bite of lip +C2830930|T037|HT|S00.571|ICD10CM|Other superficial bite of lip|Other superficial bite of lip +C2830931|T037|AB|S00.571A|ICD10CM|Other superficial bite of lip, initial encounter|Other superficial bite of lip, initial encounter +C2830931|T037|PT|S00.571A|ICD10CM|Other superficial bite of lip, initial encounter|Other superficial bite of lip, initial encounter +C2830932|T037|AB|S00.571D|ICD10CM|Other superficial bite of lip, subsequent encounter|Other superficial bite of lip, subsequent encounter +C2830932|T037|PT|S00.571D|ICD10CM|Other superficial bite of lip, subsequent encounter|Other superficial bite of lip, subsequent encounter +C2830933|T037|AB|S00.571S|ICD10CM|Other superficial bite of lip, sequela|Other superficial bite of lip, sequela +C2830933|T037|PT|S00.571S|ICD10CM|Other superficial bite of lip, sequela|Other superficial bite of lip, sequela +C2830934|T037|AB|S00.572|ICD10CM|Other superficial bite of oral cavity|Other superficial bite of oral cavity +C2830934|T037|HT|S00.572|ICD10CM|Other superficial bite of oral cavity|Other superficial bite of oral cavity +C2830935|T037|AB|S00.572A|ICD10CM|Other superficial bite of oral cavity, initial encounter|Other superficial bite of oral cavity, initial encounter +C2830935|T037|PT|S00.572A|ICD10CM|Other superficial bite of oral cavity, initial encounter|Other superficial bite of oral cavity, initial encounter +C2830936|T037|AB|S00.572D|ICD10CM|Other superficial bite of oral cavity, subsequent encounter|Other superficial bite of oral cavity, subsequent encounter +C2830936|T037|PT|S00.572D|ICD10CM|Other superficial bite of oral cavity, subsequent encounter|Other superficial bite of oral cavity, subsequent encounter +C2830937|T037|AB|S00.572S|ICD10CM|Other superficial bite of oral cavity, sequela|Other superficial bite of oral cavity, sequela +C2830937|T037|PT|S00.572S|ICD10CM|Other superficial bite of oral cavity, sequela|Other superficial bite of oral cavity, sequela +C0451949|T037|PT|S00.7|ICD10|Multiple superficial injuries of head|Multiple superficial injuries of head +C4269228|T037|ET|S00.8|ICD10CM|Superficial injuries of face [any part]|Superficial injuries of face [any part] +C0478200|T037|PT|S00.8|ICD10|Superficial injury of other parts of head|Superficial injury of other parts of head +C0478200|T037|HT|S00.8|ICD10CM|Superficial injury of other parts of head|Superficial injury of other parts of head +C0478200|T037|AB|S00.8|ICD10CM|Superficial injury of other parts of head|Superficial injury of other parts of head +C0478200|T037|AB|S00.80|ICD10CM|Unspecified superficial injury of other part of head|Unspecified superficial injury of other part of head +C0478200|T037|HT|S00.80|ICD10CM|Unspecified superficial injury of other part of head|Unspecified superficial injury of other part of head +C2830938|T037|AB|S00.80XA|ICD10CM|Unsp superficial injury of other part of head, init encntr|Unsp superficial injury of other part of head, init encntr +C2830938|T037|PT|S00.80XA|ICD10CM|Unspecified superficial injury of other part of head, initial encounter|Unspecified superficial injury of other part of head, initial encounter +C2830939|T037|AB|S00.80XD|ICD10CM|Unsp superficial injury of other part of head, subs encntr|Unsp superficial injury of other part of head, subs encntr +C2830939|T037|PT|S00.80XD|ICD10CM|Unspecified superficial injury of other part of head, subsequent encounter|Unspecified superficial injury of other part of head, subsequent encounter +C2830940|T037|AB|S00.80XS|ICD10CM|Unsp superficial injury of other part of head, sequela|Unsp superficial injury of other part of head, sequela +C2830940|T037|PT|S00.80XS|ICD10CM|Unspecified superficial injury of other part of head, sequela|Unspecified superficial injury of other part of head, sequela +C2830941|T037|HT|S00.81|ICD10CM|Abrasion of other part of head|Abrasion of other part of head +C2830941|T037|AB|S00.81|ICD10CM|Abrasion of other part of head|Abrasion of other part of head +C2830942|T037|PT|S00.81XA|ICD10CM|Abrasion of other part of head, initial encounter|Abrasion of other part of head, initial encounter +C2830942|T037|AB|S00.81XA|ICD10CM|Abrasion of other part of head, initial encounter|Abrasion of other part of head, initial encounter +C2830943|T037|PT|S00.81XD|ICD10CM|Abrasion of other part of head, subsequent encounter|Abrasion of other part of head, subsequent encounter +C2830943|T037|AB|S00.81XD|ICD10CM|Abrasion of other part of head, subsequent encounter|Abrasion of other part of head, subsequent encounter +C2830944|T037|PT|S00.81XS|ICD10CM|Abrasion of other part of head, sequela|Abrasion of other part of head, sequela +C2830944|T037|AB|S00.81XS|ICD10CM|Abrasion of other part of head, sequela|Abrasion of other part of head, sequela +C2830945|T037|AB|S00.82|ICD10CM|Blister (nonthermal) of other part of head|Blister (nonthermal) of other part of head +C2830945|T037|HT|S00.82|ICD10CM|Blister (nonthermal) of other part of head|Blister (nonthermal) of other part of head +C2830946|T037|AB|S00.82XA|ICD10CM|Blister (nonthermal) of other part of head, init encntr|Blister (nonthermal) of other part of head, init encntr +C2830946|T037|PT|S00.82XA|ICD10CM|Blister (nonthermal) of other part of head, initial encounter|Blister (nonthermal) of other part of head, initial encounter +C2830947|T037|AB|S00.82XD|ICD10CM|Blister (nonthermal) of other part of head, subs encntr|Blister (nonthermal) of other part of head, subs encntr +C2830947|T037|PT|S00.82XD|ICD10CM|Blister (nonthermal) of other part of head, subsequent encounter|Blister (nonthermal) of other part of head, subsequent encounter +C2830948|T037|AB|S00.82XS|ICD10CM|Blister (nonthermal) of other part of head, sequela|Blister (nonthermal) of other part of head, sequela +C2830948|T037|PT|S00.82XS|ICD10CM|Blister (nonthermal) of other part of head, sequela|Blister (nonthermal) of other part of head, sequela +C2830949|T037|ET|S00.83|ICD10CM|Bruise of other part of head|Bruise of other part of head +C2830951|T037|AB|S00.83|ICD10CM|Contusion of other part of head|Contusion of other part of head +C2830951|T037|HT|S00.83|ICD10CM|Contusion of other part of head|Contusion of other part of head +C2830950|T046|ET|S00.83|ICD10CM|Hematoma of other part of head|Hematoma of other part of head +C2830952|T037|PT|S00.83XA|ICD10CM|Contusion of other part of head, initial encounter|Contusion of other part of head, initial encounter +C2830952|T037|AB|S00.83XA|ICD10CM|Contusion of other part of head, initial encounter|Contusion of other part of head, initial encounter +C2830953|T037|PT|S00.83XD|ICD10CM|Contusion of other part of head, subsequent encounter|Contusion of other part of head, subsequent encounter +C2830953|T037|AB|S00.83XD|ICD10CM|Contusion of other part of head, subsequent encounter|Contusion of other part of head, subsequent encounter +C2830954|T037|PT|S00.83XS|ICD10CM|Contusion of other part of head, sequela|Contusion of other part of head, sequela +C2830954|T037|AB|S00.83XS|ICD10CM|Contusion of other part of head, sequela|Contusion of other part of head, sequela +C2830955|T037|AB|S00.84|ICD10CM|External constriction of other part of head|External constriction of other part of head +C2830955|T037|HT|S00.84|ICD10CM|External constriction of other part of head|External constriction of other part of head +C2830956|T037|AB|S00.84XA|ICD10CM|External constriction of other part of head, init encntr|External constriction of other part of head, init encntr +C2830956|T037|PT|S00.84XA|ICD10CM|External constriction of other part of head, initial encounter|External constriction of other part of head, initial encounter +C2830957|T037|AB|S00.84XD|ICD10CM|External constriction of other part of head, subs encntr|External constriction of other part of head, subs encntr +C2830957|T037|PT|S00.84XD|ICD10CM|External constriction of other part of head, subsequent encounter|External constriction of other part of head, subsequent encounter +C2830958|T037|AB|S00.84XS|ICD10CM|External constriction of other part of head, sequela|External constriction of other part of head, sequela +C2830958|T037|PT|S00.84XS|ICD10CM|External constriction of other part of head, sequela|External constriction of other part of head, sequela +C2830959|T037|ET|S00.85|ICD10CM|Splinter in other part of head|Splinter in other part of head +C2830960|T037|AB|S00.85|ICD10CM|Superficial foreign body of other part of head|Superficial foreign body of other part of head +C2830960|T037|HT|S00.85|ICD10CM|Superficial foreign body of other part of head|Superficial foreign body of other part of head +C2830961|T037|AB|S00.85XA|ICD10CM|Superficial foreign body of other part of head, init encntr|Superficial foreign body of other part of head, init encntr +C2830961|T037|PT|S00.85XA|ICD10CM|Superficial foreign body of other part of head, initial encounter|Superficial foreign body of other part of head, initial encounter +C2830962|T037|AB|S00.85XD|ICD10CM|Superficial foreign body of other part of head, subs encntr|Superficial foreign body of other part of head, subs encntr +C2830962|T037|PT|S00.85XD|ICD10CM|Superficial foreign body of other part of head, subsequent encounter|Superficial foreign body of other part of head, subsequent encounter +C2830963|T037|AB|S00.85XS|ICD10CM|Superficial foreign body of other part of head, sequela|Superficial foreign body of other part of head, sequela +C2830963|T037|PT|S00.85XS|ICD10CM|Superficial foreign body of other part of head, sequela|Superficial foreign body of other part of head, sequela +C2830964|T037|AB|S00.86|ICD10CM|Insect bite (nonvenomous) of other part of head|Insect bite (nonvenomous) of other part of head +C2830964|T037|HT|S00.86|ICD10CM|Insect bite (nonvenomous) of other part of head|Insect bite (nonvenomous) of other part of head +C2830965|T037|AB|S00.86XA|ICD10CM|Insect bite (nonvenomous) of other part of head, init encntr|Insect bite (nonvenomous) of other part of head, init encntr +C2830965|T037|PT|S00.86XA|ICD10CM|Insect bite (nonvenomous) of other part of head, initial encounter|Insect bite (nonvenomous) of other part of head, initial encounter +C2830966|T037|AB|S00.86XD|ICD10CM|Insect bite (nonvenomous) of other part of head, subs encntr|Insect bite (nonvenomous) of other part of head, subs encntr +C2830966|T037|PT|S00.86XD|ICD10CM|Insect bite (nonvenomous) of other part of head, subsequent encounter|Insect bite (nonvenomous) of other part of head, subsequent encounter +C2830967|T037|AB|S00.86XS|ICD10CM|Insect bite (nonvenomous) of other part of head, sequela|Insect bite (nonvenomous) of other part of head, sequela +C2830967|T037|PT|S00.86XS|ICD10CM|Insect bite (nonvenomous) of other part of head, sequela|Insect bite (nonvenomous) of other part of head, sequela +C2830968|T037|AB|S00.87|ICD10CM|Other superficial bite of other part of head|Other superficial bite of other part of head +C2830968|T037|HT|S00.87|ICD10CM|Other superficial bite of other part of head|Other superficial bite of other part of head +C2830969|T037|AB|S00.87XA|ICD10CM|Other superficial bite of other part of head, init encntr|Other superficial bite of other part of head, init encntr +C2830969|T037|PT|S00.87XA|ICD10CM|Other superficial bite of other part of head, initial encounter|Other superficial bite of other part of head, initial encounter +C2830970|T037|AB|S00.87XD|ICD10CM|Other superficial bite of other part of head, subs encntr|Other superficial bite of other part of head, subs encntr +C2830970|T037|PT|S00.87XD|ICD10CM|Other superficial bite of other part of head, subsequent encounter|Other superficial bite of other part of head, subsequent encounter +C2830971|T037|AB|S00.87XS|ICD10CM|Other superficial bite of other part of head, sequela|Other superficial bite of other part of head, sequela +C2830971|T037|PT|S00.87XS|ICD10CM|Other superficial bite of other part of head, sequela|Other superficial bite of other part of head, sequela +C0347536|T037|PT|S00.9|ICD10|Superficial injury of head, part unspecified|Superficial injury of head, part unspecified +C0347536|T037|AB|S00.9|ICD10CM|Superficial injury of unspecified part of head|Superficial injury of unspecified part of head +C0347536|T037|HT|S00.9|ICD10CM|Superficial injury of unspecified part of head|Superficial injury of unspecified part of head +C0347536|T037|AB|S00.90|ICD10CM|Unspecified superficial injury of unspecified part of head|Unspecified superficial injury of unspecified part of head +C0347536|T037|HT|S00.90|ICD10CM|Unspecified superficial injury of unspecified part of head|Unspecified superficial injury of unspecified part of head +C2830972|T037|AB|S00.90XA|ICD10CM|Unsp superficial injury of unsp part of head, init encntr|Unsp superficial injury of unsp part of head, init encntr +C2830972|T037|PT|S00.90XA|ICD10CM|Unspecified superficial injury of unspecified part of head, initial encounter|Unspecified superficial injury of unspecified part of head, initial encounter +C2830973|T037|AB|S00.90XD|ICD10CM|Unsp superficial injury of unsp part of head, subs encntr|Unsp superficial injury of unsp part of head, subs encntr +C2830973|T037|PT|S00.90XD|ICD10CM|Unspecified superficial injury of unspecified part of head, subsequent encounter|Unspecified superficial injury of unspecified part of head, subsequent encounter +C2830974|T037|AB|S00.90XS|ICD10CM|Unsp superficial injury of unspecified part of head, sequela|Unsp superficial injury of unspecified part of head, sequela +C2830974|T037|PT|S00.90XS|ICD10CM|Unspecified superficial injury of unspecified part of head, sequela|Unspecified superficial injury of unspecified part of head, sequela +C2830975|T037|AB|S00.91|ICD10CM|Abrasion of unspecified part of head|Abrasion of unspecified part of head +C2830975|T037|HT|S00.91|ICD10CM|Abrasion of unspecified part of head|Abrasion of unspecified part of head +C2830976|T037|PT|S00.91XA|ICD10CM|Abrasion of unspecified part of head, initial encounter|Abrasion of unspecified part of head, initial encounter +C2830976|T037|AB|S00.91XA|ICD10CM|Abrasion of unspecified part of head, initial encounter|Abrasion of unspecified part of head, initial encounter +C2830977|T037|PT|S00.91XD|ICD10CM|Abrasion of unspecified part of head, subsequent encounter|Abrasion of unspecified part of head, subsequent encounter +C2830977|T037|AB|S00.91XD|ICD10CM|Abrasion of unspecified part of head, subsequent encounter|Abrasion of unspecified part of head, subsequent encounter +C2830978|T037|PT|S00.91XS|ICD10CM|Abrasion of unspecified part of head, sequela|Abrasion of unspecified part of head, sequela +C2830978|T037|AB|S00.91XS|ICD10CM|Abrasion of unspecified part of head, sequela|Abrasion of unspecified part of head, sequela +C2830979|T037|AB|S00.92|ICD10CM|Blister (nonthermal) of unspecified part of head|Blister (nonthermal) of unspecified part of head +C2830979|T037|HT|S00.92|ICD10CM|Blister (nonthermal) of unspecified part of head|Blister (nonthermal) of unspecified part of head +C2830980|T037|AB|S00.92XA|ICD10CM|Blister (nonthermal) of unsp part of head, init encntr|Blister (nonthermal) of unsp part of head, init encntr +C2830980|T037|PT|S00.92XA|ICD10CM|Blister (nonthermal) of unspecified part of head, initial encounter|Blister (nonthermal) of unspecified part of head, initial encounter +C2830981|T037|AB|S00.92XD|ICD10CM|Blister (nonthermal) of unsp part of head, subs encntr|Blister (nonthermal) of unsp part of head, subs encntr +C2830981|T037|PT|S00.92XD|ICD10CM|Blister (nonthermal) of unspecified part of head, subsequent encounter|Blister (nonthermal) of unspecified part of head, subsequent encounter +C2830982|T037|AB|S00.92XS|ICD10CM|Blister (nonthermal) of unspecified part of head, sequela|Blister (nonthermal) of unspecified part of head, sequela +C2830982|T037|PT|S00.92XS|ICD10CM|Blister (nonthermal) of unspecified part of head, sequela|Blister (nonthermal) of unspecified part of head, sequela +C2108211|T037|ET|S00.93|ICD10CM|Bruise of head|Bruise of head +C2830984|T037|AB|S00.93|ICD10CM|Contusion of unspecified part of head|Contusion of unspecified part of head +C2830984|T037|HT|S00.93|ICD10CM|Contusion of unspecified part of head|Contusion of unspecified part of head +C2830983|T046|ET|S00.93|ICD10CM|Hematoma of head|Hematoma of head +C2830985|T037|PT|S00.93XA|ICD10CM|Contusion of unspecified part of head, initial encounter|Contusion of unspecified part of head, initial encounter +C2830985|T037|AB|S00.93XA|ICD10CM|Contusion of unspecified part of head, initial encounter|Contusion of unspecified part of head, initial encounter +C2830986|T037|PT|S00.93XD|ICD10CM|Contusion of unspecified part of head, subsequent encounter|Contusion of unspecified part of head, subsequent encounter +C2830986|T037|AB|S00.93XD|ICD10CM|Contusion of unspecified part of head, subsequent encounter|Contusion of unspecified part of head, subsequent encounter +C2830987|T037|PT|S00.93XS|ICD10CM|Contusion of unspecified part of head, sequela|Contusion of unspecified part of head, sequela +C2830987|T037|AB|S00.93XS|ICD10CM|Contusion of unspecified part of head, sequela|Contusion of unspecified part of head, sequela +C2830988|T037|AB|S00.94|ICD10CM|External constriction of unspecified part of head|External constriction of unspecified part of head +C2830988|T037|HT|S00.94|ICD10CM|External constriction of unspecified part of head|External constriction of unspecified part of head +C2830989|T037|AB|S00.94XA|ICD10CM|External constriction of unsp part of head, init encntr|External constriction of unsp part of head, init encntr +C2830989|T037|PT|S00.94XA|ICD10CM|External constriction of unspecified part of head, initial encounter|External constriction of unspecified part of head, initial encounter +C2830990|T037|AB|S00.94XD|ICD10CM|External constriction of unsp part of head, subs encntr|External constriction of unsp part of head, subs encntr +C2830990|T037|PT|S00.94XD|ICD10CM|External constriction of unspecified part of head, subsequent encounter|External constriction of unspecified part of head, subsequent encounter +C2830991|T037|AB|S00.94XS|ICD10CM|External constriction of unspecified part of head, sequela|External constriction of unspecified part of head, sequela +C2830991|T037|PT|S00.94XS|ICD10CM|External constriction of unspecified part of head, sequela|External constriction of unspecified part of head, sequela +C2830992|T037|ET|S00.95|ICD10CM|Splinter of head|Splinter of head +C2830993|T037|AB|S00.95|ICD10CM|Superficial foreign body of unspecified part of head|Superficial foreign body of unspecified part of head +C2830993|T037|HT|S00.95|ICD10CM|Superficial foreign body of unspecified part of head|Superficial foreign body of unspecified part of head +C2830994|T037|AB|S00.95XA|ICD10CM|Superficial foreign body of unsp part of head, init encntr|Superficial foreign body of unsp part of head, init encntr +C2830994|T037|PT|S00.95XA|ICD10CM|Superficial foreign body of unspecified part of head, initial encounter|Superficial foreign body of unspecified part of head, initial encounter +C2830995|T037|AB|S00.95XD|ICD10CM|Superficial foreign body of unsp part of head, subs encntr|Superficial foreign body of unsp part of head, subs encntr +C2830995|T037|PT|S00.95XD|ICD10CM|Superficial foreign body of unspecified part of head, subsequent encounter|Superficial foreign body of unspecified part of head, subsequent encounter +C2830996|T037|AB|S00.95XS|ICD10CM|Superficial foreign body of unsp part of head, sequela|Superficial foreign body of unsp part of head, sequela +C2830996|T037|PT|S00.95XS|ICD10CM|Superficial foreign body of unspecified part of head, sequela|Superficial foreign body of unspecified part of head, sequela +C2830997|T037|AB|S00.96|ICD10CM|Insect bite (nonvenomous) of unspecified part of head|Insect bite (nonvenomous) of unspecified part of head +C2830997|T037|HT|S00.96|ICD10CM|Insect bite (nonvenomous) of unspecified part of head|Insect bite (nonvenomous) of unspecified part of head +C2830998|T037|AB|S00.96XA|ICD10CM|Insect bite (nonvenomous) of unsp part of head, init encntr|Insect bite (nonvenomous) of unsp part of head, init encntr +C2830998|T037|PT|S00.96XA|ICD10CM|Insect bite (nonvenomous) of unspecified part of head, initial encounter|Insect bite (nonvenomous) of unspecified part of head, initial encounter +C2830999|T037|AB|S00.96XD|ICD10CM|Insect bite (nonvenomous) of unsp part of head, subs encntr|Insect bite (nonvenomous) of unsp part of head, subs encntr +C2830999|T037|PT|S00.96XD|ICD10CM|Insect bite (nonvenomous) of unspecified part of head, subsequent encounter|Insect bite (nonvenomous) of unspecified part of head, subsequent encounter +C2831000|T037|AB|S00.96XS|ICD10CM|Insect bite (nonvenomous) of unsp part of head, sequela|Insect bite (nonvenomous) of unsp part of head, sequela +C2831000|T037|PT|S00.96XS|ICD10CM|Insect bite (nonvenomous) of unspecified part of head, sequela|Insect bite (nonvenomous) of unspecified part of head, sequela +C2831001|T037|AB|S00.97|ICD10CM|Other superficial bite of unspecified part of head|Other superficial bite of unspecified part of head +C2831001|T037|HT|S00.97|ICD10CM|Other superficial bite of unspecified part of head|Other superficial bite of unspecified part of head +C2831002|T037|AB|S00.97XA|ICD10CM|Other superficial bite of unsp part of head, init encntr|Other superficial bite of unsp part of head, init encntr +C2831002|T037|PT|S00.97XA|ICD10CM|Other superficial bite of unspecified part of head, initial encounter|Other superficial bite of unspecified part of head, initial encounter +C2831003|T037|AB|S00.97XD|ICD10CM|Other superficial bite of unsp part of head, subs encntr|Other superficial bite of unsp part of head, subs encntr +C2831003|T037|PT|S00.97XD|ICD10CM|Other superficial bite of unspecified part of head, subsequent encounter|Other superficial bite of unspecified part of head, subsequent encounter +C2831004|T037|AB|S00.97XS|ICD10CM|Other superficial bite of unspecified part of head, sequela|Other superficial bite of unspecified part of head, sequela +C2831004|T037|PT|S00.97XS|ICD10CM|Other superficial bite of unspecified part of head, sequela|Other superficial bite of unspecified part of head, sequela +C0273239|T037|HT|S01|ICD10CM|Open wound of head|Open wound of head +C0273239|T037|AB|S01|ICD10CM|Open wound of head|Open wound of head +C0273239|T037|HT|S01|ICD10|Open wound of head|Open wound of head +C0392120|T037|HT|S01.0|ICD10CM|Open wound of scalp|Open wound of scalp +C0392120|T037|AB|S01.0|ICD10CM|Open wound of scalp|Open wound of scalp +C0392120|T037|PT|S01.0|ICD10|Open wound of scalp|Open wound of scalp +C2831005|T037|AB|S01.00|ICD10CM|Unspecified open wound of scalp|Unspecified open wound of scalp +C2831005|T037|HT|S01.00|ICD10CM|Unspecified open wound of scalp|Unspecified open wound of scalp +C2831006|T037|AB|S01.00XA|ICD10CM|Unspecified open wound of scalp, initial encounter|Unspecified open wound of scalp, initial encounter +C2831006|T037|PT|S01.00XA|ICD10CM|Unspecified open wound of scalp, initial encounter|Unspecified open wound of scalp, initial encounter +C2831007|T037|AB|S01.00XD|ICD10CM|Unspecified open wound of scalp, subsequent encounter|Unspecified open wound of scalp, subsequent encounter +C2831007|T037|PT|S01.00XD|ICD10CM|Unspecified open wound of scalp, subsequent encounter|Unspecified open wound of scalp, subsequent encounter +C2831008|T037|AB|S01.00XS|ICD10CM|Unspecified open wound of scalp, sequela|Unspecified open wound of scalp, sequela +C2831008|T037|PT|S01.00XS|ICD10CM|Unspecified open wound of scalp, sequela|Unspecified open wound of scalp, sequela +C2831009|T037|AB|S01.01|ICD10CM|Laceration without foreign body of scalp|Laceration without foreign body of scalp +C2831009|T037|HT|S01.01|ICD10CM|Laceration without foreign body of scalp|Laceration without foreign body of scalp +C2831010|T037|AB|S01.01XA|ICD10CM|Laceration without foreign body of scalp, initial encounter|Laceration without foreign body of scalp, initial encounter +C2831010|T037|PT|S01.01XA|ICD10CM|Laceration without foreign body of scalp, initial encounter|Laceration without foreign body of scalp, initial encounter +C2831011|T037|AB|S01.01XD|ICD10CM|Laceration without foreign body of scalp, subs encntr|Laceration without foreign body of scalp, subs encntr +C2831011|T037|PT|S01.01XD|ICD10CM|Laceration without foreign body of scalp, subsequent encounter|Laceration without foreign body of scalp, subsequent encounter +C2831012|T037|AB|S01.01XS|ICD10CM|Laceration without foreign body of scalp, sequela|Laceration without foreign body of scalp, sequela +C2831012|T037|PT|S01.01XS|ICD10CM|Laceration without foreign body of scalp, sequela|Laceration without foreign body of scalp, sequela +C2831013|T037|AB|S01.02|ICD10CM|Laceration with foreign body of scalp|Laceration with foreign body of scalp +C2831013|T037|HT|S01.02|ICD10CM|Laceration with foreign body of scalp|Laceration with foreign body of scalp +C2831014|T037|AB|S01.02XA|ICD10CM|Laceration with foreign body of scalp, initial encounter|Laceration with foreign body of scalp, initial encounter +C2831014|T037|PT|S01.02XA|ICD10CM|Laceration with foreign body of scalp, initial encounter|Laceration with foreign body of scalp, initial encounter +C2831015|T037|AB|S01.02XD|ICD10CM|Laceration with foreign body of scalp, subsequent encounter|Laceration with foreign body of scalp, subsequent encounter +C2831015|T037|PT|S01.02XD|ICD10CM|Laceration with foreign body of scalp, subsequent encounter|Laceration with foreign body of scalp, subsequent encounter +C2831016|T037|AB|S01.02XS|ICD10CM|Laceration with foreign body of scalp, sequela|Laceration with foreign body of scalp, sequela +C2831016|T037|PT|S01.02XS|ICD10CM|Laceration with foreign body of scalp, sequela|Laceration with foreign body of scalp, sequela +C2831017|T037|AB|S01.03|ICD10CM|Puncture wound without foreign body of scalp|Puncture wound without foreign body of scalp +C2831017|T037|HT|S01.03|ICD10CM|Puncture wound without foreign body of scalp|Puncture wound without foreign body of scalp +C2831018|T037|AB|S01.03XA|ICD10CM|Puncture wound without foreign body of scalp, init encntr|Puncture wound without foreign body of scalp, init encntr +C2831018|T037|PT|S01.03XA|ICD10CM|Puncture wound without foreign body of scalp, initial encounter|Puncture wound without foreign body of scalp, initial encounter +C2831019|T037|AB|S01.03XD|ICD10CM|Puncture wound without foreign body of scalp, subs encntr|Puncture wound without foreign body of scalp, subs encntr +C2831019|T037|PT|S01.03XD|ICD10CM|Puncture wound without foreign body of scalp, subsequent encounter|Puncture wound without foreign body of scalp, subsequent encounter +C2831020|T037|AB|S01.03XS|ICD10CM|Puncture wound without foreign body of scalp, sequela|Puncture wound without foreign body of scalp, sequela +C2831020|T037|PT|S01.03XS|ICD10CM|Puncture wound without foreign body of scalp, sequela|Puncture wound without foreign body of scalp, sequela +C2831021|T037|AB|S01.04|ICD10CM|Puncture wound with foreign body of scalp|Puncture wound with foreign body of scalp +C2831021|T037|HT|S01.04|ICD10CM|Puncture wound with foreign body of scalp|Puncture wound with foreign body of scalp +C2831022|T037|AB|S01.04XA|ICD10CM|Puncture wound with foreign body of scalp, initial encounter|Puncture wound with foreign body of scalp, initial encounter +C2831022|T037|PT|S01.04XA|ICD10CM|Puncture wound with foreign body of scalp, initial encounter|Puncture wound with foreign body of scalp, initial encounter +C2831023|T037|AB|S01.04XD|ICD10CM|Puncture wound with foreign body of scalp, subs encntr|Puncture wound with foreign body of scalp, subs encntr +C2831023|T037|PT|S01.04XD|ICD10CM|Puncture wound with foreign body of scalp, subsequent encounter|Puncture wound with foreign body of scalp, subsequent encounter +C2831024|T037|AB|S01.04XS|ICD10CM|Puncture wound with foreign body of scalp, sequela|Puncture wound with foreign body of scalp, sequela +C2831024|T037|PT|S01.04XS|ICD10CM|Puncture wound with foreign body of scalp, sequela|Puncture wound with foreign body of scalp, sequela +C2219602|T037|ET|S01.05|ICD10CM|Bite of scalp NOS|Bite of scalp NOS +C2831025|T037|HT|S01.05|ICD10CM|Open bite of scalp|Open bite of scalp +C2831025|T037|AB|S01.05|ICD10CM|Open bite of scalp|Open bite of scalp +C2831026|T037|AB|S01.05XA|ICD10CM|Open bite of scalp, initial encounter|Open bite of scalp, initial encounter +C2831026|T037|PT|S01.05XA|ICD10CM|Open bite of scalp, initial encounter|Open bite of scalp, initial encounter +C2831027|T037|AB|S01.05XD|ICD10CM|Open bite of scalp, subsequent encounter|Open bite of scalp, subsequent encounter +C2831027|T037|PT|S01.05XD|ICD10CM|Open bite of scalp, subsequent encounter|Open bite of scalp, subsequent encounter +C2831028|T037|AB|S01.05XS|ICD10CM|Open bite of scalp, sequela|Open bite of scalp, sequela +C2831028|T037|PT|S01.05XS|ICD10CM|Open bite of scalp, sequela|Open bite of scalp, sequela +C0495803|T037|PT|S01.1|ICD10|Open wound of eyelid and periocular area|Open wound of eyelid and periocular area +C0495803|T037|HT|S01.1|ICD10CM|Open wound of eyelid and periocular area|Open wound of eyelid and periocular area +C0495803|T037|AB|S01.1|ICD10CM|Open wound of eyelid and periocular area|Open wound of eyelid and periocular area +C2831029|T037|ET|S01.1|ICD10CM|Open wound of eyelid and periocular area with or without involvement of lacrimal passages|Open wound of eyelid and periocular area with or without involvement of lacrimal passages +C2831030|T037|AB|S01.10|ICD10CM|Unspecified open wound of eyelid and periocular area|Unspecified open wound of eyelid and periocular area +C2831030|T037|HT|S01.10|ICD10CM|Unspecified open wound of eyelid and periocular area|Unspecified open wound of eyelid and periocular area +C2831031|T037|AB|S01.101|ICD10CM|Unspecified open wound of right eyelid and periocular area|Unspecified open wound of right eyelid and periocular area +C2831031|T037|HT|S01.101|ICD10CM|Unspecified open wound of right eyelid and periocular area|Unspecified open wound of right eyelid and periocular area +C2831032|T037|AB|S01.101A|ICD10CM|Unsp open wound of right eyelid and periocular area, init|Unsp open wound of right eyelid and periocular area, init +C2831032|T037|PT|S01.101A|ICD10CM|Unspecified open wound of right eyelid and periocular area, initial encounter|Unspecified open wound of right eyelid and periocular area, initial encounter +C2831033|T037|AB|S01.101D|ICD10CM|Unsp open wound of right eyelid and periocular area, subs|Unsp open wound of right eyelid and periocular area, subs +C2831033|T037|PT|S01.101D|ICD10CM|Unspecified open wound of right eyelid and periocular area, subsequent encounter|Unspecified open wound of right eyelid and periocular area, subsequent encounter +C2831034|T037|AB|S01.101S|ICD10CM|Unsp open wound of right eyelid and periocular area, sequela|Unsp open wound of right eyelid and periocular area, sequela +C2831034|T037|PT|S01.101S|ICD10CM|Unspecified open wound of right eyelid and periocular area, sequela|Unspecified open wound of right eyelid and periocular area, sequela +C2831035|T037|AB|S01.102|ICD10CM|Unspecified open wound of left eyelid and periocular area|Unspecified open wound of left eyelid and periocular area +C2831035|T037|HT|S01.102|ICD10CM|Unspecified open wound of left eyelid and periocular area|Unspecified open wound of left eyelid and periocular area +C2831036|T037|AB|S01.102A|ICD10CM|Unsp open wound of left eyelid and periocular area, init|Unsp open wound of left eyelid and periocular area, init +C2831036|T037|PT|S01.102A|ICD10CM|Unspecified open wound of left eyelid and periocular area, initial encounter|Unspecified open wound of left eyelid and periocular area, initial encounter +C2831037|T037|AB|S01.102D|ICD10CM|Unsp open wound of left eyelid and periocular area, subs|Unsp open wound of left eyelid and periocular area, subs +C2831037|T037|PT|S01.102D|ICD10CM|Unspecified open wound of left eyelid and periocular area, subsequent encounter|Unspecified open wound of left eyelid and periocular area, subsequent encounter +C2831038|T037|AB|S01.102S|ICD10CM|Unsp open wound of left eyelid and periocular area, sequela|Unsp open wound of left eyelid and periocular area, sequela +C2831038|T037|PT|S01.102S|ICD10CM|Unspecified open wound of left eyelid and periocular area, sequela|Unspecified open wound of left eyelid and periocular area, sequela +C2831039|T037|AB|S01.109|ICD10CM|Unsp open wound of unspecified eyelid and periocular area|Unsp open wound of unspecified eyelid and periocular area +C2831039|T037|HT|S01.109|ICD10CM|Unspecified open wound of unspecified eyelid and periocular area|Unspecified open wound of unspecified eyelid and periocular area +C2831040|T037|AB|S01.109A|ICD10CM|Unsp open wound of unsp eyelid and periocular area, init|Unsp open wound of unsp eyelid and periocular area, init +C2831040|T037|PT|S01.109A|ICD10CM|Unspecified open wound of unspecified eyelid and periocular area, initial encounter|Unspecified open wound of unspecified eyelid and periocular area, initial encounter +C2831041|T037|AB|S01.109D|ICD10CM|Unsp open wound of unsp eyelid and periocular area, subs|Unsp open wound of unsp eyelid and periocular area, subs +C2831041|T037|PT|S01.109D|ICD10CM|Unspecified open wound of unspecified eyelid and periocular area, subsequent encounter|Unspecified open wound of unspecified eyelid and periocular area, subsequent encounter +C2831042|T037|AB|S01.109S|ICD10CM|Unsp open wound of unsp eyelid and periocular area, sequela|Unsp open wound of unsp eyelid and periocular area, sequela +C2831042|T037|PT|S01.109S|ICD10CM|Unspecified open wound of unspecified eyelid and periocular area, sequela|Unspecified open wound of unspecified eyelid and periocular area, sequela +C2831043|T037|AB|S01.11|ICD10CM|Laceration w/o foreign body of eyelid and periocular area|Laceration w/o foreign body of eyelid and periocular area +C2831043|T037|HT|S01.11|ICD10CM|Laceration without foreign body of eyelid and periocular area|Laceration without foreign body of eyelid and periocular area +C2831044|T037|AB|S01.111|ICD10CM|Laceration w/o fb of right eyelid and periocular area|Laceration w/o fb of right eyelid and periocular area +C2831044|T037|HT|S01.111|ICD10CM|Laceration without foreign body of right eyelid and periocular area|Laceration without foreign body of right eyelid and periocular area +C2831045|T037|AB|S01.111A|ICD10CM|Laceration w/o fb of right eyelid and periocular area, init|Laceration w/o fb of right eyelid and periocular area, init +C2831045|T037|PT|S01.111A|ICD10CM|Laceration without foreign body of right eyelid and periocular area, initial encounter|Laceration without foreign body of right eyelid and periocular area, initial encounter +C2831046|T037|AB|S01.111D|ICD10CM|Laceration w/o fb of right eyelid and periocular area, subs|Laceration w/o fb of right eyelid and periocular area, subs +C2831046|T037|PT|S01.111D|ICD10CM|Laceration without foreign body of right eyelid and periocular area, subsequent encounter|Laceration without foreign body of right eyelid and periocular area, subsequent encounter +C2831047|T037|AB|S01.111S|ICD10CM|Lac w/o fb of right eyelid and periocular area, sequela|Lac w/o fb of right eyelid and periocular area, sequela +C2831047|T037|PT|S01.111S|ICD10CM|Laceration without foreign body of right eyelid and periocular area, sequela|Laceration without foreign body of right eyelid and periocular area, sequela +C2831048|T037|AB|S01.112|ICD10CM|Laceration w/o fb of left eyelid and periocular area|Laceration w/o fb of left eyelid and periocular area +C2831048|T037|HT|S01.112|ICD10CM|Laceration without foreign body of left eyelid and periocular area|Laceration without foreign body of left eyelid and periocular area +C2831049|T037|AB|S01.112A|ICD10CM|Laceration w/o fb of left eyelid and periocular area, init|Laceration w/o fb of left eyelid and periocular area, init +C2831049|T037|PT|S01.112A|ICD10CM|Laceration without foreign body of left eyelid and periocular area, initial encounter|Laceration without foreign body of left eyelid and periocular area, initial encounter +C2831050|T037|AB|S01.112D|ICD10CM|Laceration w/o fb of left eyelid and periocular area, subs|Laceration w/o fb of left eyelid and periocular area, subs +C2831050|T037|PT|S01.112D|ICD10CM|Laceration without foreign body of left eyelid and periocular area, subsequent encounter|Laceration without foreign body of left eyelid and periocular area, subsequent encounter +C2831051|T037|AB|S01.112S|ICD10CM|Lac w/o fb of left eyelid and periocular area, sequela|Lac w/o fb of left eyelid and periocular area, sequela +C2831051|T037|PT|S01.112S|ICD10CM|Laceration without foreign body of left eyelid and periocular area, sequela|Laceration without foreign body of left eyelid and periocular area, sequela +C2831052|T037|AB|S01.119|ICD10CM|Laceration w/o fb of unsp eyelid and periocular area|Laceration w/o fb of unsp eyelid and periocular area +C2831052|T037|HT|S01.119|ICD10CM|Laceration without foreign body of unspecified eyelid and periocular area|Laceration without foreign body of unspecified eyelid and periocular area +C2831053|T037|AB|S01.119A|ICD10CM|Laceration w/o fb of unsp eyelid and periocular area, init|Laceration w/o fb of unsp eyelid and periocular area, init +C2831053|T037|PT|S01.119A|ICD10CM|Laceration without foreign body of unspecified eyelid and periocular area, initial encounter|Laceration without foreign body of unspecified eyelid and periocular area, initial encounter +C2831054|T037|AB|S01.119D|ICD10CM|Laceration w/o fb of unsp eyelid and periocular area, subs|Laceration w/o fb of unsp eyelid and periocular area, subs +C2831054|T037|PT|S01.119D|ICD10CM|Laceration without foreign body of unspecified eyelid and periocular area, subsequent encounter|Laceration without foreign body of unspecified eyelid and periocular area, subsequent encounter +C2831055|T037|AB|S01.119S|ICD10CM|Lac w/o fb of unsp eyelid and periocular area, sequela|Lac w/o fb of unsp eyelid and periocular area, sequela +C2831055|T037|PT|S01.119S|ICD10CM|Laceration without foreign body of unspecified eyelid and periocular area, sequela|Laceration without foreign body of unspecified eyelid and periocular area, sequela +C2831056|T037|AB|S01.12|ICD10CM|Laceration with foreign body of eyelid and periocular area|Laceration with foreign body of eyelid and periocular area +C2831056|T037|HT|S01.12|ICD10CM|Laceration with foreign body of eyelid and periocular area|Laceration with foreign body of eyelid and periocular area +C2831057|T037|AB|S01.121|ICD10CM|Laceration w fb of right eyelid and periocular area|Laceration w fb of right eyelid and periocular area +C2831057|T037|HT|S01.121|ICD10CM|Laceration with foreign body of right eyelid and periocular area|Laceration with foreign body of right eyelid and periocular area +C2831058|T037|AB|S01.121A|ICD10CM|Laceration w fb of right eyelid and periocular area, init|Laceration w fb of right eyelid and periocular area, init +C2831058|T037|PT|S01.121A|ICD10CM|Laceration with foreign body of right eyelid and periocular area, initial encounter|Laceration with foreign body of right eyelid and periocular area, initial encounter +C2831059|T037|AB|S01.121D|ICD10CM|Laceration w fb of right eyelid and periocular area, subs|Laceration w fb of right eyelid and periocular area, subs +C2831059|T037|PT|S01.121D|ICD10CM|Laceration with foreign body of right eyelid and periocular area, subsequent encounter|Laceration with foreign body of right eyelid and periocular area, subsequent encounter +C2831060|T037|AB|S01.121S|ICD10CM|Laceration w fb of right eyelid and periocular area, sequela|Laceration w fb of right eyelid and periocular area, sequela +C2831060|T037|PT|S01.121S|ICD10CM|Laceration with foreign body of right eyelid and periocular area, sequela|Laceration with foreign body of right eyelid and periocular area, sequela +C2831061|T037|AB|S01.122|ICD10CM|Laceration w foreign body of left eyelid and periocular area|Laceration w foreign body of left eyelid and periocular area +C2831061|T037|HT|S01.122|ICD10CM|Laceration with foreign body of left eyelid and periocular area|Laceration with foreign body of left eyelid and periocular area +C2831062|T037|AB|S01.122A|ICD10CM|Laceration w fb of left eyelid and periocular area, init|Laceration w fb of left eyelid and periocular area, init +C2831062|T037|PT|S01.122A|ICD10CM|Laceration with foreign body of left eyelid and periocular area, initial encounter|Laceration with foreign body of left eyelid and periocular area, initial encounter +C2831063|T037|AB|S01.122D|ICD10CM|Laceration w fb of left eyelid and periocular area, subs|Laceration w fb of left eyelid and periocular area, subs +C2831063|T037|PT|S01.122D|ICD10CM|Laceration with foreign body of left eyelid and periocular area, subsequent encounter|Laceration with foreign body of left eyelid and periocular area, subsequent encounter +C2831064|T037|AB|S01.122S|ICD10CM|Laceration w fb of left eyelid and periocular area, sequela|Laceration w fb of left eyelid and periocular area, sequela +C2831064|T037|PT|S01.122S|ICD10CM|Laceration with foreign body of left eyelid and periocular area, sequela|Laceration with foreign body of left eyelid and periocular area, sequela +C2831065|T037|AB|S01.129|ICD10CM|Laceration w foreign body of unsp eyelid and periocular area|Laceration w foreign body of unsp eyelid and periocular area +C2831065|T037|HT|S01.129|ICD10CM|Laceration with foreign body of unspecified eyelid and periocular area|Laceration with foreign body of unspecified eyelid and periocular area +C2831066|T037|AB|S01.129A|ICD10CM|Laceration w fb of unsp eyelid and periocular area, init|Laceration w fb of unsp eyelid and periocular area, init +C2831066|T037|PT|S01.129A|ICD10CM|Laceration with foreign body of unspecified eyelid and periocular area, initial encounter|Laceration with foreign body of unspecified eyelid and periocular area, initial encounter +C2831067|T037|AB|S01.129D|ICD10CM|Laceration w fb of unsp eyelid and periocular area, subs|Laceration w fb of unsp eyelid and periocular area, subs +C2831067|T037|PT|S01.129D|ICD10CM|Laceration with foreign body of unspecified eyelid and periocular area, subsequent encounter|Laceration with foreign body of unspecified eyelid and periocular area, subsequent encounter +C2831068|T037|AB|S01.129S|ICD10CM|Laceration w fb of unsp eyelid and periocular area, sequela|Laceration w fb of unsp eyelid and periocular area, sequela +C2831068|T037|PT|S01.129S|ICD10CM|Laceration with foreign body of unspecified eyelid and periocular area, sequela|Laceration with foreign body of unspecified eyelid and periocular area, sequela +C2831069|T037|AB|S01.13|ICD10CM|Pnctr w/o foreign body of eyelid and periocular area|Pnctr w/o foreign body of eyelid and periocular area +C2831069|T037|HT|S01.13|ICD10CM|Puncture wound without foreign body of eyelid and periocular area|Puncture wound without foreign body of eyelid and periocular area +C2831070|T037|AB|S01.131|ICD10CM|Pnctr w/o foreign body of right eyelid and periocular area|Pnctr w/o foreign body of right eyelid and periocular area +C2831070|T037|HT|S01.131|ICD10CM|Puncture wound without foreign body of right eyelid and periocular area|Puncture wound without foreign body of right eyelid and periocular area +C2831071|T037|AB|S01.131A|ICD10CM|Pnctr w/o fb of right eyelid and periocular area, init|Pnctr w/o fb of right eyelid and periocular area, init +C2831071|T037|PT|S01.131A|ICD10CM|Puncture wound without foreign body of right eyelid and periocular area, initial encounter|Puncture wound without foreign body of right eyelid and periocular area, initial encounter +C2831072|T037|AB|S01.131D|ICD10CM|Pnctr w/o fb of right eyelid and periocular area, subs|Pnctr w/o fb of right eyelid and periocular area, subs +C2831072|T037|PT|S01.131D|ICD10CM|Puncture wound without foreign body of right eyelid and periocular area, subsequent encounter|Puncture wound without foreign body of right eyelid and periocular area, subsequent encounter +C2831073|T037|AB|S01.131S|ICD10CM|Pnctr w/o fb of right eyelid and periocular area, sequela|Pnctr w/o fb of right eyelid and periocular area, sequela +C2831073|T037|PT|S01.131S|ICD10CM|Puncture wound without foreign body of right eyelid and periocular area, sequela|Puncture wound without foreign body of right eyelid and periocular area, sequela +C2831074|T037|AB|S01.132|ICD10CM|Pnctr w/o foreign body of left eyelid and periocular area|Pnctr w/o foreign body of left eyelid and periocular area +C2831074|T037|HT|S01.132|ICD10CM|Puncture wound without foreign body of left eyelid and periocular area|Puncture wound without foreign body of left eyelid and periocular area +C2831075|T037|AB|S01.132A|ICD10CM|Pnctr w/o fb of left eyelid and periocular area, init|Pnctr w/o fb of left eyelid and periocular area, init +C2831075|T037|PT|S01.132A|ICD10CM|Puncture wound without foreign body of left eyelid and periocular area, initial encounter|Puncture wound without foreign body of left eyelid and periocular area, initial encounter +C2831076|T037|AB|S01.132D|ICD10CM|Pnctr w/o fb of left eyelid and periocular area, subs|Pnctr w/o fb of left eyelid and periocular area, subs +C2831076|T037|PT|S01.132D|ICD10CM|Puncture wound without foreign body of left eyelid and periocular area, subsequent encounter|Puncture wound without foreign body of left eyelid and periocular area, subsequent encounter +C2831077|T037|AB|S01.132S|ICD10CM|Pnctr w/o fb of left eyelid and periocular area, sequela|Pnctr w/o fb of left eyelid and periocular area, sequela +C2831077|T037|PT|S01.132S|ICD10CM|Puncture wound without foreign body of left eyelid and periocular area, sequela|Puncture wound without foreign body of left eyelid and periocular area, sequela +C2831078|T037|AB|S01.139|ICD10CM|Pnctr w/o foreign body of unsp eyelid and periocular area|Pnctr w/o foreign body of unsp eyelid and periocular area +C2831078|T037|HT|S01.139|ICD10CM|Puncture wound without foreign body of unspecified eyelid and periocular area|Puncture wound without foreign body of unspecified eyelid and periocular area +C2831079|T037|AB|S01.139A|ICD10CM|Pnctr w/o fb of unsp eyelid and periocular area, init|Pnctr w/o fb of unsp eyelid and periocular area, init +C2831079|T037|PT|S01.139A|ICD10CM|Puncture wound without foreign body of unspecified eyelid and periocular area, initial encounter|Puncture wound without foreign body of unspecified eyelid and periocular area, initial encounter +C2831080|T037|AB|S01.139D|ICD10CM|Pnctr w/o fb of unsp eyelid and periocular area, subs|Pnctr w/o fb of unsp eyelid and periocular area, subs +C2831080|T037|PT|S01.139D|ICD10CM|Puncture wound without foreign body of unspecified eyelid and periocular area, subsequent encounter|Puncture wound without foreign body of unspecified eyelid and periocular area, subsequent encounter +C2831081|T037|AB|S01.139S|ICD10CM|Pnctr w/o fb of unsp eyelid and periocular area, sequela|Pnctr w/o fb of unsp eyelid and periocular area, sequela +C2831081|T037|PT|S01.139S|ICD10CM|Puncture wound without foreign body of unspecified eyelid and periocular area, sequela|Puncture wound without foreign body of unspecified eyelid and periocular area, sequela +C2831082|T037|AB|S01.14|ICD10CM|Puncture wound w foreign body of eyelid and periocular area|Puncture wound w foreign body of eyelid and periocular area +C2831082|T037|HT|S01.14|ICD10CM|Puncture wound with foreign body of eyelid and periocular area|Puncture wound with foreign body of eyelid and periocular area +C2831083|T037|AB|S01.141|ICD10CM|Pnctr w foreign body of right eyelid and periocular area|Pnctr w foreign body of right eyelid and periocular area +C2831083|T037|HT|S01.141|ICD10CM|Puncture wound with foreign body of right eyelid and periocular area|Puncture wound with foreign body of right eyelid and periocular area +C2831084|T037|AB|S01.141A|ICD10CM|Pnctr w fb of right eyelid and periocular area, init|Pnctr w fb of right eyelid and periocular area, init +C2831084|T037|PT|S01.141A|ICD10CM|Puncture wound with foreign body of right eyelid and periocular area, initial encounter|Puncture wound with foreign body of right eyelid and periocular area, initial encounter +C2831085|T037|AB|S01.141D|ICD10CM|Pnctr w fb of right eyelid and periocular area, subs|Pnctr w fb of right eyelid and periocular area, subs +C2831085|T037|PT|S01.141D|ICD10CM|Puncture wound with foreign body of right eyelid and periocular area, subsequent encounter|Puncture wound with foreign body of right eyelid and periocular area, subsequent encounter +C2831086|T037|AB|S01.141S|ICD10CM|Pnctr w fb of right eyelid and periocular area, sequela|Pnctr w fb of right eyelid and periocular area, sequela +C2831086|T037|PT|S01.141S|ICD10CM|Puncture wound with foreign body of right eyelid and periocular area, sequela|Puncture wound with foreign body of right eyelid and periocular area, sequela +C2831087|T037|AB|S01.142|ICD10CM|Pnctr w foreign body of left eyelid and periocular area|Pnctr w foreign body of left eyelid and periocular area +C2831087|T037|HT|S01.142|ICD10CM|Puncture wound with foreign body of left eyelid and periocular area|Puncture wound with foreign body of left eyelid and periocular area +C2831088|T037|AB|S01.142A|ICD10CM|Pnctr w fb of left eyelid and periocular area, init|Pnctr w fb of left eyelid and periocular area, init +C2831088|T037|PT|S01.142A|ICD10CM|Puncture wound with foreign body of left eyelid and periocular area, initial encounter|Puncture wound with foreign body of left eyelid and periocular area, initial encounter +C2831089|T037|AB|S01.142D|ICD10CM|Pnctr w fb of left eyelid and periocular area, subs|Pnctr w fb of left eyelid and periocular area, subs +C2831089|T037|PT|S01.142D|ICD10CM|Puncture wound with foreign body of left eyelid and periocular area, subsequent encounter|Puncture wound with foreign body of left eyelid and periocular area, subsequent encounter +C2831090|T037|AB|S01.142S|ICD10CM|Pnctr w fb of left eyelid and periocular area, sequela|Pnctr w fb of left eyelid and periocular area, sequela +C2831090|T037|PT|S01.142S|ICD10CM|Puncture wound with foreign body of left eyelid and periocular area, sequela|Puncture wound with foreign body of left eyelid and periocular area, sequela +C2831091|T037|AB|S01.149|ICD10CM|Pnctr w foreign body of unsp eyelid and periocular area|Pnctr w foreign body of unsp eyelid and periocular area +C2831091|T037|HT|S01.149|ICD10CM|Puncture wound with foreign body of unspecified eyelid and periocular area|Puncture wound with foreign body of unspecified eyelid and periocular area +C2831092|T037|AB|S01.149A|ICD10CM|Pnctr w fb of unsp eyelid and periocular area, init|Pnctr w fb of unsp eyelid and periocular area, init +C2831092|T037|PT|S01.149A|ICD10CM|Puncture wound with foreign body of unspecified eyelid and periocular area, initial encounter|Puncture wound with foreign body of unspecified eyelid and periocular area, initial encounter +C2831093|T037|AB|S01.149D|ICD10CM|Pnctr w fb of unsp eyelid and periocular area, subs|Pnctr w fb of unsp eyelid and periocular area, subs +C2831093|T037|PT|S01.149D|ICD10CM|Puncture wound with foreign body of unspecified eyelid and periocular area, subsequent encounter|Puncture wound with foreign body of unspecified eyelid and periocular area, subsequent encounter +C2831094|T037|AB|S01.149S|ICD10CM|Pnctr w fb of unsp eyelid and periocular area, sequela|Pnctr w fb of unsp eyelid and periocular area, sequela +C2831094|T037|PT|S01.149S|ICD10CM|Puncture wound with foreign body of unspecified eyelid and periocular area, sequela|Puncture wound with foreign body of unspecified eyelid and periocular area, sequela +C2831095|T037|ET|S01.15|ICD10CM|Bite of eyelid and periocular area NOS|Bite of eyelid and periocular area NOS +C2831096|T037|AB|S01.15|ICD10CM|Open bite of eyelid and periocular area|Open bite of eyelid and periocular area +C2831096|T037|HT|S01.15|ICD10CM|Open bite of eyelid and periocular area|Open bite of eyelid and periocular area +C2831097|T037|AB|S01.151|ICD10CM|Open bite of right eyelid and periocular area|Open bite of right eyelid and periocular area +C2831097|T037|HT|S01.151|ICD10CM|Open bite of right eyelid and periocular area|Open bite of right eyelid and periocular area +C2831098|T037|AB|S01.151A|ICD10CM|Open bite of right eyelid and periocular area, init encntr|Open bite of right eyelid and periocular area, init encntr +C2831098|T037|PT|S01.151A|ICD10CM|Open bite of right eyelid and periocular area, initial encounter|Open bite of right eyelid and periocular area, initial encounter +C2831099|T037|AB|S01.151D|ICD10CM|Open bite of right eyelid and periocular area, subs encntr|Open bite of right eyelid and periocular area, subs encntr +C2831099|T037|PT|S01.151D|ICD10CM|Open bite of right eyelid and periocular area, subsequent encounter|Open bite of right eyelid and periocular area, subsequent encounter +C2831100|T037|AB|S01.151S|ICD10CM|Open bite of right eyelid and periocular area, sequela|Open bite of right eyelid and periocular area, sequela +C2831100|T037|PT|S01.151S|ICD10CM|Open bite of right eyelid and periocular area, sequela|Open bite of right eyelid and periocular area, sequela +C2831101|T037|AB|S01.152|ICD10CM|Open bite of left eyelid and periocular area|Open bite of left eyelid and periocular area +C2831101|T037|HT|S01.152|ICD10CM|Open bite of left eyelid and periocular area|Open bite of left eyelid and periocular area +C2831102|T037|AB|S01.152A|ICD10CM|Open bite of left eyelid and periocular area, init encntr|Open bite of left eyelid and periocular area, init encntr +C2831102|T037|PT|S01.152A|ICD10CM|Open bite of left eyelid and periocular area, initial encounter|Open bite of left eyelid and periocular area, initial encounter +C2831103|T037|AB|S01.152D|ICD10CM|Open bite of left eyelid and periocular area, subs encntr|Open bite of left eyelid and periocular area, subs encntr +C2831103|T037|PT|S01.152D|ICD10CM|Open bite of left eyelid and periocular area, subsequent encounter|Open bite of left eyelid and periocular area, subsequent encounter +C2831104|T037|AB|S01.152S|ICD10CM|Open bite of left eyelid and periocular area, sequela|Open bite of left eyelid and periocular area, sequela +C2831104|T037|PT|S01.152S|ICD10CM|Open bite of left eyelid and periocular area, sequela|Open bite of left eyelid and periocular area, sequela +C2831105|T037|AB|S01.159|ICD10CM|Open bite of unspecified eyelid and periocular area|Open bite of unspecified eyelid and periocular area +C2831105|T037|HT|S01.159|ICD10CM|Open bite of unspecified eyelid and periocular area|Open bite of unspecified eyelid and periocular area +C2831106|T037|AB|S01.159A|ICD10CM|Open bite of unsp eyelid and periocular area, init encntr|Open bite of unsp eyelid and periocular area, init encntr +C2831106|T037|PT|S01.159A|ICD10CM|Open bite of unspecified eyelid and periocular area, initial encounter|Open bite of unspecified eyelid and periocular area, initial encounter +C2831107|T037|AB|S01.159D|ICD10CM|Open bite of unsp eyelid and periocular area, subs encntr|Open bite of unsp eyelid and periocular area, subs encntr +C2831107|T037|PT|S01.159D|ICD10CM|Open bite of unspecified eyelid and periocular area, subsequent encounter|Open bite of unspecified eyelid and periocular area, subsequent encounter +C2831108|T037|AB|S01.159S|ICD10CM|Open bite of unspecified eyelid and periocular area, sequela|Open bite of unspecified eyelid and periocular area, sequela +C2831108|T037|PT|S01.159S|ICD10CM|Open bite of unspecified eyelid and periocular area, sequela|Open bite of unspecified eyelid and periocular area, sequela +C0160500|T037|PT|S01.2|ICD10|Open wound of nose|Open wound of nose +C0160500|T037|HT|S01.2|ICD10CM|Open wound of nose|Open wound of nose +C0160500|T037|AB|S01.2|ICD10CM|Open wound of nose|Open wound of nose +C0160500|T037|AB|S01.20|ICD10CM|Unspecified open wound of nose|Unspecified open wound of nose +C0160500|T037|HT|S01.20|ICD10CM|Unspecified open wound of nose|Unspecified open wound of nose +C2831109|T037|AB|S01.20XA|ICD10CM|Unspecified open wound of nose, initial encounter|Unspecified open wound of nose, initial encounter +C2831109|T037|PT|S01.20XA|ICD10CM|Unspecified open wound of nose, initial encounter|Unspecified open wound of nose, initial encounter +C2831110|T037|AB|S01.20XD|ICD10CM|Unspecified open wound of nose, subsequent encounter|Unspecified open wound of nose, subsequent encounter +C2831110|T037|PT|S01.20XD|ICD10CM|Unspecified open wound of nose, subsequent encounter|Unspecified open wound of nose, subsequent encounter +C2831111|T037|AB|S01.20XS|ICD10CM|Unspecified open wound of nose, sequela|Unspecified open wound of nose, sequela +C2831111|T037|PT|S01.20XS|ICD10CM|Unspecified open wound of nose, sequela|Unspecified open wound of nose, sequela +C2831112|T037|AB|S01.21|ICD10CM|Laceration without foreign body of nose|Laceration without foreign body of nose +C2831112|T037|HT|S01.21|ICD10CM|Laceration without foreign body of nose|Laceration without foreign body of nose +C2831113|T037|AB|S01.21XA|ICD10CM|Laceration without foreign body of nose, initial encounter|Laceration without foreign body of nose, initial encounter +C2831113|T037|PT|S01.21XA|ICD10CM|Laceration without foreign body of nose, initial encounter|Laceration without foreign body of nose, initial encounter +C2831114|T037|AB|S01.21XD|ICD10CM|Laceration without foreign body of nose, subs encntr|Laceration without foreign body of nose, subs encntr +C2831114|T037|PT|S01.21XD|ICD10CM|Laceration without foreign body of nose, subsequent encounter|Laceration without foreign body of nose, subsequent encounter +C2831115|T037|AB|S01.21XS|ICD10CM|Laceration without foreign body of nose, sequela|Laceration without foreign body of nose, sequela +C2831115|T037|PT|S01.21XS|ICD10CM|Laceration without foreign body of nose, sequela|Laceration without foreign body of nose, sequela +C2831116|T037|AB|S01.22|ICD10CM|Laceration with foreign body of nose|Laceration with foreign body of nose +C2831116|T037|HT|S01.22|ICD10CM|Laceration with foreign body of nose|Laceration with foreign body of nose +C2831117|T037|AB|S01.22XA|ICD10CM|Laceration with foreign body of nose, initial encounter|Laceration with foreign body of nose, initial encounter +C2831117|T037|PT|S01.22XA|ICD10CM|Laceration with foreign body of nose, initial encounter|Laceration with foreign body of nose, initial encounter +C2831118|T037|AB|S01.22XD|ICD10CM|Laceration with foreign body of nose, subsequent encounter|Laceration with foreign body of nose, subsequent encounter +C2831118|T037|PT|S01.22XD|ICD10CM|Laceration with foreign body of nose, subsequent encounter|Laceration with foreign body of nose, subsequent encounter +C2831119|T037|AB|S01.22XS|ICD10CM|Laceration with foreign body of nose, sequela|Laceration with foreign body of nose, sequela +C2831119|T037|PT|S01.22XS|ICD10CM|Laceration with foreign body of nose, sequela|Laceration with foreign body of nose, sequela +C2831120|T037|AB|S01.23|ICD10CM|Puncture wound without foreign body of nose|Puncture wound without foreign body of nose +C2831120|T037|HT|S01.23|ICD10CM|Puncture wound without foreign body of nose|Puncture wound without foreign body of nose +C2831121|T037|AB|S01.23XA|ICD10CM|Puncture wound without foreign body of nose, init encntr|Puncture wound without foreign body of nose, init encntr +C2831121|T037|PT|S01.23XA|ICD10CM|Puncture wound without foreign body of nose, initial encounter|Puncture wound without foreign body of nose, initial encounter +C2831122|T037|AB|S01.23XD|ICD10CM|Puncture wound without foreign body of nose, subs encntr|Puncture wound without foreign body of nose, subs encntr +C2831122|T037|PT|S01.23XD|ICD10CM|Puncture wound without foreign body of nose, subsequent encounter|Puncture wound without foreign body of nose, subsequent encounter +C2831123|T037|AB|S01.23XS|ICD10CM|Puncture wound without foreign body of nose, sequela|Puncture wound without foreign body of nose, sequela +C2831123|T037|PT|S01.23XS|ICD10CM|Puncture wound without foreign body of nose, sequela|Puncture wound without foreign body of nose, sequela +C2831124|T037|AB|S01.24|ICD10CM|Puncture wound with foreign body of nose|Puncture wound with foreign body of nose +C2831124|T037|HT|S01.24|ICD10CM|Puncture wound with foreign body of nose|Puncture wound with foreign body of nose +C2831125|T037|AB|S01.24XA|ICD10CM|Puncture wound with foreign body of nose, initial encounter|Puncture wound with foreign body of nose, initial encounter +C2831125|T037|PT|S01.24XA|ICD10CM|Puncture wound with foreign body of nose, initial encounter|Puncture wound with foreign body of nose, initial encounter +C2831126|T037|AB|S01.24XD|ICD10CM|Puncture wound with foreign body of nose, subs encntr|Puncture wound with foreign body of nose, subs encntr +C2831126|T037|PT|S01.24XD|ICD10CM|Puncture wound with foreign body of nose, subsequent encounter|Puncture wound with foreign body of nose, subsequent encounter +C2831127|T037|AB|S01.24XS|ICD10CM|Puncture wound with foreign body of nose, sequela|Puncture wound with foreign body of nose, sequela +C2831127|T037|PT|S01.24XS|ICD10CM|Puncture wound with foreign body of nose, sequela|Puncture wound with foreign body of nose, sequela +C2831128|T037|ET|S01.25|ICD10CM|Bite of nose NOS|Bite of nose NOS +C2831128|T037|HT|S01.25|ICD10CM|Open bite of nose|Open bite of nose +C2831128|T037|AB|S01.25|ICD10CM|Open bite of nose|Open bite of nose +C2831129|T037|AB|S01.25XA|ICD10CM|Open bite of nose, initial encounter|Open bite of nose, initial encounter +C2831129|T037|PT|S01.25XA|ICD10CM|Open bite of nose, initial encounter|Open bite of nose, initial encounter +C2831130|T037|AB|S01.25XD|ICD10CM|Open bite of nose, subsequent encounter|Open bite of nose, subsequent encounter +C2831130|T037|PT|S01.25XD|ICD10CM|Open bite of nose, subsequent encounter|Open bite of nose, subsequent encounter +C2831131|T037|AB|S01.25XS|ICD10CM|Open bite of nose, sequela|Open bite of nose, sequela +C2831131|T037|PT|S01.25XS|ICD10CM|Open bite of nose, sequela|Open bite of nose, sequela +C0160475|T037|HT|S01.3|ICD10CM|Open wound of ear|Open wound of ear +C0160475|T037|AB|S01.3|ICD10CM|Open wound of ear|Open wound of ear +C0160475|T037|PT|S01.3|ICD10|Open wound of ear|Open wound of ear +C2831132|T037|AB|S01.30|ICD10CM|Unspecified open wound of ear|Unspecified open wound of ear +C2831132|T037|HT|S01.30|ICD10CM|Unspecified open wound of ear|Unspecified open wound of ear +C2831133|T037|AB|S01.301|ICD10CM|Unspecified open wound of right ear|Unspecified open wound of right ear +C2831133|T037|HT|S01.301|ICD10CM|Unspecified open wound of right ear|Unspecified open wound of right ear +C2831134|T037|AB|S01.301A|ICD10CM|Unspecified open wound of right ear, initial encounter|Unspecified open wound of right ear, initial encounter +C2831134|T037|PT|S01.301A|ICD10CM|Unspecified open wound of right ear, initial encounter|Unspecified open wound of right ear, initial encounter +C2831135|T037|AB|S01.301D|ICD10CM|Unspecified open wound of right ear, subsequent encounter|Unspecified open wound of right ear, subsequent encounter +C2831135|T037|PT|S01.301D|ICD10CM|Unspecified open wound of right ear, subsequent encounter|Unspecified open wound of right ear, subsequent encounter +C2831136|T037|AB|S01.301S|ICD10CM|Unspecified open wound of right ear, sequela|Unspecified open wound of right ear, sequela +C2831136|T037|PT|S01.301S|ICD10CM|Unspecified open wound of right ear, sequela|Unspecified open wound of right ear, sequela +C2831137|T037|AB|S01.302|ICD10CM|Unspecified open wound of left ear|Unspecified open wound of left ear +C2831137|T037|HT|S01.302|ICD10CM|Unspecified open wound of left ear|Unspecified open wound of left ear +C2831138|T037|AB|S01.302A|ICD10CM|Unspecified open wound of left ear, initial encounter|Unspecified open wound of left ear, initial encounter +C2831138|T037|PT|S01.302A|ICD10CM|Unspecified open wound of left ear, initial encounter|Unspecified open wound of left ear, initial encounter +C2831139|T037|AB|S01.302D|ICD10CM|Unspecified open wound of left ear, subsequent encounter|Unspecified open wound of left ear, subsequent encounter +C2831139|T037|PT|S01.302D|ICD10CM|Unspecified open wound of left ear, subsequent encounter|Unspecified open wound of left ear, subsequent encounter +C2831140|T037|AB|S01.302S|ICD10CM|Unspecified open wound of left ear, sequela|Unspecified open wound of left ear, sequela +C2831140|T037|PT|S01.302S|ICD10CM|Unspecified open wound of left ear, sequela|Unspecified open wound of left ear, sequela +C2831141|T037|AB|S01.309|ICD10CM|Unspecified open wound of unspecified ear|Unspecified open wound of unspecified ear +C2831141|T037|HT|S01.309|ICD10CM|Unspecified open wound of unspecified ear|Unspecified open wound of unspecified ear +C2831142|T037|AB|S01.309A|ICD10CM|Unspecified open wound of unspecified ear, initial encounter|Unspecified open wound of unspecified ear, initial encounter +C2831142|T037|PT|S01.309A|ICD10CM|Unspecified open wound of unspecified ear, initial encounter|Unspecified open wound of unspecified ear, initial encounter +C2831143|T037|AB|S01.309D|ICD10CM|Unspecified open wound of unspecified ear, subs encntr|Unspecified open wound of unspecified ear, subs encntr +C2831143|T037|PT|S01.309D|ICD10CM|Unspecified open wound of unspecified ear, subsequent encounter|Unspecified open wound of unspecified ear, subsequent encounter +C2831144|T037|AB|S01.309S|ICD10CM|Unspecified open wound of unspecified ear, sequela|Unspecified open wound of unspecified ear, sequela +C2831144|T037|PT|S01.309S|ICD10CM|Unspecified open wound of unspecified ear, sequela|Unspecified open wound of unspecified ear, sequela +C2831145|T037|AB|S01.31|ICD10CM|Laceration without foreign body of ear|Laceration without foreign body of ear +C2831145|T037|HT|S01.31|ICD10CM|Laceration without foreign body of ear|Laceration without foreign body of ear +C2831146|T037|AB|S01.311|ICD10CM|Laceration without foreign body of right ear|Laceration without foreign body of right ear +C2831146|T037|HT|S01.311|ICD10CM|Laceration without foreign body of right ear|Laceration without foreign body of right ear +C2831147|T037|AB|S01.311A|ICD10CM|Laceration without foreign body of right ear, init encntr|Laceration without foreign body of right ear, init encntr +C2831147|T037|PT|S01.311A|ICD10CM|Laceration without foreign body of right ear, initial encounter|Laceration without foreign body of right ear, initial encounter +C2831148|T037|AB|S01.311D|ICD10CM|Laceration without foreign body of right ear, subs encntr|Laceration without foreign body of right ear, subs encntr +C2831148|T037|PT|S01.311D|ICD10CM|Laceration without foreign body of right ear, subsequent encounter|Laceration without foreign body of right ear, subsequent encounter +C2831149|T037|AB|S01.311S|ICD10CM|Laceration without foreign body of right ear, sequela|Laceration without foreign body of right ear, sequela +C2831149|T037|PT|S01.311S|ICD10CM|Laceration without foreign body of right ear, sequela|Laceration without foreign body of right ear, sequela +C2831150|T037|AB|S01.312|ICD10CM|Laceration without foreign body of left ear|Laceration without foreign body of left ear +C2831150|T037|HT|S01.312|ICD10CM|Laceration without foreign body of left ear|Laceration without foreign body of left ear +C2831151|T037|AB|S01.312A|ICD10CM|Laceration without foreign body of left ear, init encntr|Laceration without foreign body of left ear, init encntr +C2831151|T037|PT|S01.312A|ICD10CM|Laceration without foreign body of left ear, initial encounter|Laceration without foreign body of left ear, initial encounter +C2831152|T037|AB|S01.312D|ICD10CM|Laceration without foreign body of left ear, subs encntr|Laceration without foreign body of left ear, subs encntr +C2831152|T037|PT|S01.312D|ICD10CM|Laceration without foreign body of left ear, subsequent encounter|Laceration without foreign body of left ear, subsequent encounter +C2831153|T037|AB|S01.312S|ICD10CM|Laceration without foreign body of left ear, sequela|Laceration without foreign body of left ear, sequela +C2831153|T037|PT|S01.312S|ICD10CM|Laceration without foreign body of left ear, sequela|Laceration without foreign body of left ear, sequela +C2831154|T037|AB|S01.319|ICD10CM|Laceration without foreign body of unspecified ear|Laceration without foreign body of unspecified ear +C2831154|T037|HT|S01.319|ICD10CM|Laceration without foreign body of unspecified ear|Laceration without foreign body of unspecified ear +C2831155|T037|AB|S01.319A|ICD10CM|Laceration without foreign body of unsp ear, init encntr|Laceration without foreign body of unsp ear, init encntr +C2831155|T037|PT|S01.319A|ICD10CM|Laceration without foreign body of unspecified ear, initial encounter|Laceration without foreign body of unspecified ear, initial encounter +C2831156|T037|AB|S01.319D|ICD10CM|Laceration without foreign body of unsp ear, subs encntr|Laceration without foreign body of unsp ear, subs encntr +C2831156|T037|PT|S01.319D|ICD10CM|Laceration without foreign body of unspecified ear, subsequent encounter|Laceration without foreign body of unspecified ear, subsequent encounter +C2831157|T037|AB|S01.319S|ICD10CM|Laceration without foreign body of unspecified ear, sequela|Laceration without foreign body of unspecified ear, sequela +C2831157|T037|PT|S01.319S|ICD10CM|Laceration without foreign body of unspecified ear, sequela|Laceration without foreign body of unspecified ear, sequela +C2831158|T037|AB|S01.32|ICD10CM|Laceration with foreign body of ear|Laceration with foreign body of ear +C2831158|T037|HT|S01.32|ICD10CM|Laceration with foreign body of ear|Laceration with foreign body of ear +C2831159|T037|AB|S01.321|ICD10CM|Laceration with foreign body of right ear|Laceration with foreign body of right ear +C2831159|T037|HT|S01.321|ICD10CM|Laceration with foreign body of right ear|Laceration with foreign body of right ear +C2831160|T037|AB|S01.321A|ICD10CM|Laceration with foreign body of right ear, initial encounter|Laceration with foreign body of right ear, initial encounter +C2831160|T037|PT|S01.321A|ICD10CM|Laceration with foreign body of right ear, initial encounter|Laceration with foreign body of right ear, initial encounter +C2831161|T037|AB|S01.321D|ICD10CM|Laceration with foreign body of right ear, subs encntr|Laceration with foreign body of right ear, subs encntr +C2831161|T037|PT|S01.321D|ICD10CM|Laceration with foreign body of right ear, subsequent encounter|Laceration with foreign body of right ear, subsequent encounter +C2831162|T037|AB|S01.321S|ICD10CM|Laceration with foreign body of right ear, sequela|Laceration with foreign body of right ear, sequela +C2831162|T037|PT|S01.321S|ICD10CM|Laceration with foreign body of right ear, sequela|Laceration with foreign body of right ear, sequela +C2831163|T037|AB|S01.322|ICD10CM|Laceration with foreign body of left ear|Laceration with foreign body of left ear +C2831163|T037|HT|S01.322|ICD10CM|Laceration with foreign body of left ear|Laceration with foreign body of left ear +C2831164|T037|AB|S01.322A|ICD10CM|Laceration with foreign body of left ear, initial encounter|Laceration with foreign body of left ear, initial encounter +C2831164|T037|PT|S01.322A|ICD10CM|Laceration with foreign body of left ear, initial encounter|Laceration with foreign body of left ear, initial encounter +C2831165|T037|AB|S01.322D|ICD10CM|Laceration with foreign body of left ear, subs encntr|Laceration with foreign body of left ear, subs encntr +C2831165|T037|PT|S01.322D|ICD10CM|Laceration with foreign body of left ear, subsequent encounter|Laceration with foreign body of left ear, subsequent encounter +C2831166|T037|AB|S01.322S|ICD10CM|Laceration with foreign body of left ear, sequela|Laceration with foreign body of left ear, sequela +C2831166|T037|PT|S01.322S|ICD10CM|Laceration with foreign body of left ear, sequela|Laceration with foreign body of left ear, sequela +C2831167|T037|AB|S01.329|ICD10CM|Laceration with foreign body of unspecified ear|Laceration with foreign body of unspecified ear +C2831167|T037|HT|S01.329|ICD10CM|Laceration with foreign body of unspecified ear|Laceration with foreign body of unspecified ear +C2831168|T037|AB|S01.329A|ICD10CM|Laceration with foreign body of unspecified ear, init encntr|Laceration with foreign body of unspecified ear, init encntr +C2831168|T037|PT|S01.329A|ICD10CM|Laceration with foreign body of unspecified ear, initial encounter|Laceration with foreign body of unspecified ear, initial encounter +C2831169|T037|AB|S01.329D|ICD10CM|Laceration with foreign body of unspecified ear, subs encntr|Laceration with foreign body of unspecified ear, subs encntr +C2831169|T037|PT|S01.329D|ICD10CM|Laceration with foreign body of unspecified ear, subsequent encounter|Laceration with foreign body of unspecified ear, subsequent encounter +C2831170|T037|AB|S01.329S|ICD10CM|Laceration with foreign body of unspecified ear, sequela|Laceration with foreign body of unspecified ear, sequela +C2831170|T037|PT|S01.329S|ICD10CM|Laceration with foreign body of unspecified ear, sequela|Laceration with foreign body of unspecified ear, sequela +C2831171|T037|AB|S01.33|ICD10CM|Puncture wound without foreign body of ear|Puncture wound without foreign body of ear +C2831171|T037|HT|S01.33|ICD10CM|Puncture wound without foreign body of ear|Puncture wound without foreign body of ear +C2831172|T037|AB|S01.331|ICD10CM|Puncture wound without foreign body of right ear|Puncture wound without foreign body of right ear +C2831172|T037|HT|S01.331|ICD10CM|Puncture wound without foreign body of right ear|Puncture wound without foreign body of right ear +C2831173|T037|AB|S01.331A|ICD10CM|Puncture wound w/o foreign body of right ear, init encntr|Puncture wound w/o foreign body of right ear, init encntr +C2831173|T037|PT|S01.331A|ICD10CM|Puncture wound without foreign body of right ear, initial encounter|Puncture wound without foreign body of right ear, initial encounter +C2831174|T037|AB|S01.331D|ICD10CM|Puncture wound w/o foreign body of right ear, subs encntr|Puncture wound w/o foreign body of right ear, subs encntr +C2831174|T037|PT|S01.331D|ICD10CM|Puncture wound without foreign body of right ear, subsequent encounter|Puncture wound without foreign body of right ear, subsequent encounter +C2831175|T037|AB|S01.331S|ICD10CM|Puncture wound without foreign body of right ear, sequela|Puncture wound without foreign body of right ear, sequela +C2831175|T037|PT|S01.331S|ICD10CM|Puncture wound without foreign body of right ear, sequela|Puncture wound without foreign body of right ear, sequela +C2831176|T037|AB|S01.332|ICD10CM|Puncture wound without foreign body of left ear|Puncture wound without foreign body of left ear +C2831176|T037|HT|S01.332|ICD10CM|Puncture wound without foreign body of left ear|Puncture wound without foreign body of left ear +C2831177|T037|AB|S01.332A|ICD10CM|Puncture wound without foreign body of left ear, init encntr|Puncture wound without foreign body of left ear, init encntr +C2831177|T037|PT|S01.332A|ICD10CM|Puncture wound without foreign body of left ear, initial encounter|Puncture wound without foreign body of left ear, initial encounter +C2831178|T037|AB|S01.332D|ICD10CM|Puncture wound without foreign body of left ear, subs encntr|Puncture wound without foreign body of left ear, subs encntr +C2831178|T037|PT|S01.332D|ICD10CM|Puncture wound without foreign body of left ear, subsequent encounter|Puncture wound without foreign body of left ear, subsequent encounter +C2831179|T037|AB|S01.332S|ICD10CM|Puncture wound without foreign body of left ear, sequela|Puncture wound without foreign body of left ear, sequela +C2831179|T037|PT|S01.332S|ICD10CM|Puncture wound without foreign body of left ear, sequela|Puncture wound without foreign body of left ear, sequela +C2831180|T037|AB|S01.339|ICD10CM|Puncture wound without foreign body of unspecified ear|Puncture wound without foreign body of unspecified ear +C2831180|T037|HT|S01.339|ICD10CM|Puncture wound without foreign body of unspecified ear|Puncture wound without foreign body of unspecified ear +C2831181|T037|AB|S01.339A|ICD10CM|Puncture wound without foreign body of unsp ear, init encntr|Puncture wound without foreign body of unsp ear, init encntr +C2831181|T037|PT|S01.339A|ICD10CM|Puncture wound without foreign body of unspecified ear, initial encounter|Puncture wound without foreign body of unspecified ear, initial encounter +C2831182|T037|AB|S01.339D|ICD10CM|Puncture wound without foreign body of unsp ear, subs encntr|Puncture wound without foreign body of unsp ear, subs encntr +C2831182|T037|PT|S01.339D|ICD10CM|Puncture wound without foreign body of unspecified ear, subsequent encounter|Puncture wound without foreign body of unspecified ear, subsequent encounter +C2831183|T037|AB|S01.339S|ICD10CM|Puncture wound without foreign body of unsp ear, sequela|Puncture wound without foreign body of unsp ear, sequela +C2831183|T037|PT|S01.339S|ICD10CM|Puncture wound without foreign body of unspecified ear, sequela|Puncture wound without foreign body of unspecified ear, sequela +C2831184|T037|AB|S01.34|ICD10CM|Puncture wound with foreign body of ear|Puncture wound with foreign body of ear +C2831184|T037|HT|S01.34|ICD10CM|Puncture wound with foreign body of ear|Puncture wound with foreign body of ear +C2831185|T037|AB|S01.341|ICD10CM|Puncture wound with foreign body of right ear|Puncture wound with foreign body of right ear +C2831185|T037|HT|S01.341|ICD10CM|Puncture wound with foreign body of right ear|Puncture wound with foreign body of right ear +C2831186|T037|AB|S01.341A|ICD10CM|Puncture wound with foreign body of right ear, init encntr|Puncture wound with foreign body of right ear, init encntr +C2831186|T037|PT|S01.341A|ICD10CM|Puncture wound with foreign body of right ear, initial encounter|Puncture wound with foreign body of right ear, initial encounter +C2831187|T037|AB|S01.341D|ICD10CM|Puncture wound with foreign body of right ear, subs encntr|Puncture wound with foreign body of right ear, subs encntr +C2831187|T037|PT|S01.341D|ICD10CM|Puncture wound with foreign body of right ear, subsequent encounter|Puncture wound with foreign body of right ear, subsequent encounter +C2831188|T037|AB|S01.341S|ICD10CM|Puncture wound with foreign body of right ear, sequela|Puncture wound with foreign body of right ear, sequela +C2831188|T037|PT|S01.341S|ICD10CM|Puncture wound with foreign body of right ear, sequela|Puncture wound with foreign body of right ear, sequela +C2831189|T037|AB|S01.342|ICD10CM|Puncture wound with foreign body of left ear|Puncture wound with foreign body of left ear +C2831189|T037|HT|S01.342|ICD10CM|Puncture wound with foreign body of left ear|Puncture wound with foreign body of left ear +C2831190|T037|AB|S01.342A|ICD10CM|Puncture wound with foreign body of left ear, init encntr|Puncture wound with foreign body of left ear, init encntr +C2831190|T037|PT|S01.342A|ICD10CM|Puncture wound with foreign body of left ear, initial encounter|Puncture wound with foreign body of left ear, initial encounter +C2831191|T037|AB|S01.342D|ICD10CM|Puncture wound with foreign body of left ear, subs encntr|Puncture wound with foreign body of left ear, subs encntr +C2831191|T037|PT|S01.342D|ICD10CM|Puncture wound with foreign body of left ear, subsequent encounter|Puncture wound with foreign body of left ear, subsequent encounter +C2831192|T037|AB|S01.342S|ICD10CM|Puncture wound with foreign body of left ear, sequela|Puncture wound with foreign body of left ear, sequela +C2831192|T037|PT|S01.342S|ICD10CM|Puncture wound with foreign body of left ear, sequela|Puncture wound with foreign body of left ear, sequela +C2831193|T037|AB|S01.349|ICD10CM|Puncture wound with foreign body of unspecified ear|Puncture wound with foreign body of unspecified ear +C2831193|T037|HT|S01.349|ICD10CM|Puncture wound with foreign body of unspecified ear|Puncture wound with foreign body of unspecified ear +C2831194|T037|AB|S01.349A|ICD10CM|Puncture wound with foreign body of unsp ear, init encntr|Puncture wound with foreign body of unsp ear, init encntr +C2831194|T037|PT|S01.349A|ICD10CM|Puncture wound with foreign body of unspecified ear, initial encounter|Puncture wound with foreign body of unspecified ear, initial encounter +C2831195|T037|AB|S01.349D|ICD10CM|Puncture wound with foreign body of unsp ear, subs encntr|Puncture wound with foreign body of unsp ear, subs encntr +C2831195|T037|PT|S01.349D|ICD10CM|Puncture wound with foreign body of unspecified ear, subsequent encounter|Puncture wound with foreign body of unspecified ear, subsequent encounter +C2831196|T037|AB|S01.349S|ICD10CM|Puncture wound with foreign body of unspecified ear, sequela|Puncture wound with foreign body of unspecified ear, sequela +C2831196|T037|PT|S01.349S|ICD10CM|Puncture wound with foreign body of unspecified ear, sequela|Puncture wound with foreign body of unspecified ear, sequela +C2831197|T037|ET|S01.35|ICD10CM|Bite of ear NOS|Bite of ear NOS +C2831198|T037|HT|S01.35|ICD10CM|Open bite of ear|Open bite of ear +C2831198|T037|AB|S01.35|ICD10CM|Open bite of ear|Open bite of ear +C2831199|T037|AB|S01.351|ICD10CM|Open bite of right ear|Open bite of right ear +C2831199|T037|HT|S01.351|ICD10CM|Open bite of right ear|Open bite of right ear +C2831200|T037|AB|S01.351A|ICD10CM|Open bite of right ear, initial encounter|Open bite of right ear, initial encounter +C2831200|T037|PT|S01.351A|ICD10CM|Open bite of right ear, initial encounter|Open bite of right ear, initial encounter +C2831201|T037|AB|S01.351D|ICD10CM|Open bite of right ear, subsequent encounter|Open bite of right ear, subsequent encounter +C2831201|T037|PT|S01.351D|ICD10CM|Open bite of right ear, subsequent encounter|Open bite of right ear, subsequent encounter +C2831202|T037|AB|S01.351S|ICD10CM|Open bite of right ear, sequela|Open bite of right ear, sequela +C2831202|T037|PT|S01.351S|ICD10CM|Open bite of right ear, sequela|Open bite of right ear, sequela +C2831203|T037|AB|S01.352|ICD10CM|Open bite of left ear|Open bite of left ear +C2831203|T037|HT|S01.352|ICD10CM|Open bite of left ear|Open bite of left ear +C2831204|T037|AB|S01.352A|ICD10CM|Open bite of left ear, initial encounter|Open bite of left ear, initial encounter +C2831204|T037|PT|S01.352A|ICD10CM|Open bite of left ear, initial encounter|Open bite of left ear, initial encounter +C2831205|T037|AB|S01.352D|ICD10CM|Open bite of left ear, subsequent encounter|Open bite of left ear, subsequent encounter +C2831205|T037|PT|S01.352D|ICD10CM|Open bite of left ear, subsequent encounter|Open bite of left ear, subsequent encounter +C2831206|T037|AB|S01.352S|ICD10CM|Open bite of left ear, sequela|Open bite of left ear, sequela +C2831206|T037|PT|S01.352S|ICD10CM|Open bite of left ear, sequela|Open bite of left ear, sequela +C2831207|T037|AB|S01.359|ICD10CM|Open bite of unspecified ear|Open bite of unspecified ear +C2831207|T037|HT|S01.359|ICD10CM|Open bite of unspecified ear|Open bite of unspecified ear +C2831208|T037|AB|S01.359A|ICD10CM|Open bite of unspecified ear, initial encounter|Open bite of unspecified ear, initial encounter +C2831208|T037|PT|S01.359A|ICD10CM|Open bite of unspecified ear, initial encounter|Open bite of unspecified ear, initial encounter +C2831209|T037|AB|S01.359D|ICD10CM|Open bite of unspecified ear, subsequent encounter|Open bite of unspecified ear, subsequent encounter +C2831209|T037|PT|S01.359D|ICD10CM|Open bite of unspecified ear, subsequent encounter|Open bite of unspecified ear, subsequent encounter +C2831210|T037|AB|S01.359S|ICD10CM|Open bite of unspecified ear, sequela|Open bite of unspecified ear, sequela +C2831210|T037|PT|S01.359S|ICD10CM|Open bite of unspecified ear, sequela|Open bite of unspecified ear, sequela +C0495804|T037|HT|S01.4|ICD10CM|Open wound of cheek and temporomandibular area|Open wound of cheek and temporomandibular area +C0495804|T037|AB|S01.4|ICD10CM|Open wound of cheek and temporomandibular area|Open wound of cheek and temporomandibular area +C0495804|T037|PT|S01.4|ICD10|Open wound of cheek and temporomandibular area|Open wound of cheek and temporomandibular area +C2831211|T037|AB|S01.40|ICD10CM|Unspecified open wound of cheek and temporomandibular area|Unspecified open wound of cheek and temporomandibular area +C2831211|T037|HT|S01.40|ICD10CM|Unspecified open wound of cheek and temporomandibular area|Unspecified open wound of cheek and temporomandibular area +C2831212|T037|AB|S01.401|ICD10CM|Unsp open wound of right cheek and temporomandibular area|Unsp open wound of right cheek and temporomandibular area +C2831212|T037|HT|S01.401|ICD10CM|Unspecified open wound of right cheek and temporomandibular area|Unspecified open wound of right cheek and temporomandibular area +C2831213|T037|AB|S01.401A|ICD10CM|Unsp open wound of right cheek and TMJ area, init|Unsp open wound of right cheek and TMJ area, init +C2831213|T037|PT|S01.401A|ICD10CM|Unspecified open wound of right cheek and temporomandibular area, initial encounter|Unspecified open wound of right cheek and temporomandibular area, initial encounter +C2831214|T037|AB|S01.401D|ICD10CM|Unsp open wound of right cheek and TMJ area, subs|Unsp open wound of right cheek and TMJ area, subs +C2831214|T037|PT|S01.401D|ICD10CM|Unspecified open wound of right cheek and temporomandibular area, subsequent encounter|Unspecified open wound of right cheek and temporomandibular area, subsequent encounter +C2831215|T037|AB|S01.401S|ICD10CM|Unsp open wound of right cheek and TMJ area, sequela|Unsp open wound of right cheek and TMJ area, sequela +C2831215|T037|PT|S01.401S|ICD10CM|Unspecified open wound of right cheek and temporomandibular area, sequela|Unspecified open wound of right cheek and temporomandibular area, sequela +C2831216|T037|AB|S01.402|ICD10CM|Unsp open wound of left cheek and temporomandibular area|Unsp open wound of left cheek and temporomandibular area +C2831216|T037|HT|S01.402|ICD10CM|Unspecified open wound of left cheek and temporomandibular area|Unspecified open wound of left cheek and temporomandibular area +C2831217|T037|AB|S01.402A|ICD10CM|Unsp open wound of left cheek and TMJ area, init|Unsp open wound of left cheek and TMJ area, init +C2831217|T037|PT|S01.402A|ICD10CM|Unspecified open wound of left cheek and temporomandibular area, initial encounter|Unspecified open wound of left cheek and temporomandibular area, initial encounter +C2831218|T037|AB|S01.402D|ICD10CM|Unsp open wound of left cheek and TMJ area, subs|Unsp open wound of left cheek and TMJ area, subs +C2831218|T037|PT|S01.402D|ICD10CM|Unspecified open wound of left cheek and temporomandibular area, subsequent encounter|Unspecified open wound of left cheek and temporomandibular area, subsequent encounter +C2831219|T037|AB|S01.402S|ICD10CM|Unsp open wound of left cheek and TMJ area, sequela|Unsp open wound of left cheek and TMJ area, sequela +C2831219|T037|PT|S01.402S|ICD10CM|Unspecified open wound of left cheek and temporomandibular area, sequela|Unspecified open wound of left cheek and temporomandibular area, sequela +C2831220|T037|AB|S01.409|ICD10CM|Unsp open wound of unsp cheek and temporomandibular area|Unsp open wound of unsp cheek and temporomandibular area +C2831220|T037|HT|S01.409|ICD10CM|Unspecified open wound of unspecified cheek and temporomandibular area|Unspecified open wound of unspecified cheek and temporomandibular area +C2831221|T037|AB|S01.409A|ICD10CM|Unsp open wound of unsp cheek and TMJ area, init|Unsp open wound of unsp cheek and TMJ area, init +C2831221|T037|PT|S01.409A|ICD10CM|Unspecified open wound of unspecified cheek and temporomandibular area, initial encounter|Unspecified open wound of unspecified cheek and temporomandibular area, initial encounter +C2831222|T037|AB|S01.409D|ICD10CM|Unsp open wound of unsp cheek and TMJ area, subs|Unsp open wound of unsp cheek and TMJ area, subs +C2831222|T037|PT|S01.409D|ICD10CM|Unspecified open wound of unspecified cheek and temporomandibular area, subsequent encounter|Unspecified open wound of unspecified cheek and temporomandibular area, subsequent encounter +C2831223|T037|AB|S01.409S|ICD10CM|Unsp open wound of unsp cheek and TMJ area, sequela|Unsp open wound of unsp cheek and TMJ area, sequela +C2831223|T037|PT|S01.409S|ICD10CM|Unspecified open wound of unspecified cheek and temporomandibular area, sequela|Unspecified open wound of unspecified cheek and temporomandibular area, sequela +C2831224|T037|AB|S01.41|ICD10CM|Laceration w/o foreign body of cheek and TMJ area|Laceration w/o foreign body of cheek and TMJ area +C2831224|T037|HT|S01.41|ICD10CM|Laceration without foreign body of cheek and temporomandibular area|Laceration without foreign body of cheek and temporomandibular area +C2831225|T037|AB|S01.411|ICD10CM|Laceration w/o foreign body of right cheek and TMJ area|Laceration w/o foreign body of right cheek and TMJ area +C2831225|T037|HT|S01.411|ICD10CM|Laceration without foreign body of right cheek and temporomandibular area|Laceration without foreign body of right cheek and temporomandibular area +C2831226|T037|AB|S01.411A|ICD10CM|Laceration w/o fb of right cheek and TMJ area, init|Laceration w/o fb of right cheek and TMJ area, init +C2831226|T037|PT|S01.411A|ICD10CM|Laceration without foreign body of right cheek and temporomandibular area, initial encounter|Laceration without foreign body of right cheek and temporomandibular area, initial encounter +C2831227|T037|AB|S01.411D|ICD10CM|Laceration w/o fb of right cheek and TMJ area, subs|Laceration w/o fb of right cheek and TMJ area, subs +C2831227|T037|PT|S01.411D|ICD10CM|Laceration without foreign body of right cheek and temporomandibular area, subsequent encounter|Laceration without foreign body of right cheek and temporomandibular area, subsequent encounter +C2831228|T037|AB|S01.411S|ICD10CM|Laceration w/o fb of right cheek and TMJ area, sequela|Laceration w/o fb of right cheek and TMJ area, sequela +C2831228|T037|PT|S01.411S|ICD10CM|Laceration without foreign body of right cheek and temporomandibular area, sequela|Laceration without foreign body of right cheek and temporomandibular area, sequela +C2831229|T037|AB|S01.412|ICD10CM|Laceration w/o foreign body of left cheek and TMJ area|Laceration w/o foreign body of left cheek and TMJ area +C2831229|T037|HT|S01.412|ICD10CM|Laceration without foreign body of left cheek and temporomandibular area|Laceration without foreign body of left cheek and temporomandibular area +C2831230|T037|AB|S01.412A|ICD10CM|Laceration w/o foreign body of left cheek and TMJ area, init|Laceration w/o foreign body of left cheek and TMJ area, init +C2831230|T037|PT|S01.412A|ICD10CM|Laceration without foreign body of left cheek and temporomandibular area, initial encounter|Laceration without foreign body of left cheek and temporomandibular area, initial encounter +C2831231|T037|AB|S01.412D|ICD10CM|Laceration w/o foreign body of left cheek and TMJ area, subs|Laceration w/o foreign body of left cheek and TMJ area, subs +C2831231|T037|PT|S01.412D|ICD10CM|Laceration without foreign body of left cheek and temporomandibular area, subsequent encounter|Laceration without foreign body of left cheek and temporomandibular area, subsequent encounter +C2831232|T037|AB|S01.412S|ICD10CM|Laceration w/o fb of left cheek and TMJ area, sequela|Laceration w/o fb of left cheek and TMJ area, sequela +C2831232|T037|PT|S01.412S|ICD10CM|Laceration without foreign body of left cheek and temporomandibular area, sequela|Laceration without foreign body of left cheek and temporomandibular area, sequela +C2831233|T037|AB|S01.419|ICD10CM|Laceration w/o foreign body of unsp cheek and TMJ area|Laceration w/o foreign body of unsp cheek and TMJ area +C2831233|T037|HT|S01.419|ICD10CM|Laceration without foreign body of unspecified cheek and temporomandibular area|Laceration without foreign body of unspecified cheek and temporomandibular area +C2831234|T037|AB|S01.419A|ICD10CM|Laceration w/o foreign body of unsp cheek and TMJ area, init|Laceration w/o foreign body of unsp cheek and TMJ area, init +C2831234|T037|PT|S01.419A|ICD10CM|Laceration without foreign body of unspecified cheek and temporomandibular area, initial encounter|Laceration without foreign body of unspecified cheek and temporomandibular area, initial encounter +C2831235|T037|AB|S01.419D|ICD10CM|Laceration w/o foreign body of unsp cheek and TMJ area, subs|Laceration w/o foreign body of unsp cheek and TMJ area, subs +C2831236|T037|AB|S01.419S|ICD10CM|Laceration w/o fb of unsp cheek and TMJ area, sequela|Laceration w/o fb of unsp cheek and TMJ area, sequela +C2831236|T037|PT|S01.419S|ICD10CM|Laceration without foreign body of unspecified cheek and temporomandibular area, sequela|Laceration without foreign body of unspecified cheek and temporomandibular area, sequela +C2831237|T037|AB|S01.42|ICD10CM|Laceration w foreign body of cheek and TMJ area|Laceration w foreign body of cheek and TMJ area +C2831237|T037|HT|S01.42|ICD10CM|Laceration with foreign body of cheek and temporomandibular area|Laceration with foreign body of cheek and temporomandibular area +C2831238|T037|AB|S01.421|ICD10CM|Laceration w foreign body of right cheek and TMJ area|Laceration w foreign body of right cheek and TMJ area +C2831238|T037|HT|S01.421|ICD10CM|Laceration with foreign body of right cheek and temporomandibular area|Laceration with foreign body of right cheek and temporomandibular area +C2831239|T037|AB|S01.421A|ICD10CM|Laceration w foreign body of right cheek and TMJ area, init|Laceration w foreign body of right cheek and TMJ area, init +C2831239|T037|PT|S01.421A|ICD10CM|Laceration with foreign body of right cheek and temporomandibular area, initial encounter|Laceration with foreign body of right cheek and temporomandibular area, initial encounter +C2831240|T037|AB|S01.421D|ICD10CM|Laceration w foreign body of right cheek and TMJ area, subs|Laceration w foreign body of right cheek and TMJ area, subs +C2831240|T037|PT|S01.421D|ICD10CM|Laceration with foreign body of right cheek and temporomandibular area, subsequent encounter|Laceration with foreign body of right cheek and temporomandibular area, subsequent encounter +C2831241|T037|AB|S01.421S|ICD10CM|Laceration w fb of right cheek and TMJ area, sequela|Laceration w fb of right cheek and TMJ area, sequela +C2831241|T037|PT|S01.421S|ICD10CM|Laceration with foreign body of right cheek and temporomandibular area, sequela|Laceration with foreign body of right cheek and temporomandibular area, sequela +C2831242|T037|AB|S01.422|ICD10CM|Laceration w foreign body of left cheek and TMJ area|Laceration w foreign body of left cheek and TMJ area +C2831242|T037|HT|S01.422|ICD10CM|Laceration with foreign body of left cheek and temporomandibular area|Laceration with foreign body of left cheek and temporomandibular area +C2831243|T037|AB|S01.422A|ICD10CM|Laceration w foreign body of left cheek and TMJ area, init|Laceration w foreign body of left cheek and TMJ area, init +C2831243|T037|PT|S01.422A|ICD10CM|Laceration with foreign body of left cheek and temporomandibular area, initial encounter|Laceration with foreign body of left cheek and temporomandibular area, initial encounter +C2831244|T037|AB|S01.422D|ICD10CM|Laceration w foreign body of left cheek and TMJ area, subs|Laceration w foreign body of left cheek and TMJ area, subs +C2831244|T037|PT|S01.422D|ICD10CM|Laceration with foreign body of left cheek and temporomandibular area, subsequent encounter|Laceration with foreign body of left cheek and temporomandibular area, subsequent encounter +C2831245|T037|AB|S01.422S|ICD10CM|Laceration w fb of left cheek and TMJ area, sequela|Laceration w fb of left cheek and TMJ area, sequela +C2831245|T037|PT|S01.422S|ICD10CM|Laceration with foreign body of left cheek and temporomandibular area, sequela|Laceration with foreign body of left cheek and temporomandibular area, sequela +C2831246|T037|AB|S01.429|ICD10CM|Laceration w foreign body of unsp cheek and TMJ area|Laceration w foreign body of unsp cheek and TMJ area +C2831246|T037|HT|S01.429|ICD10CM|Laceration with foreign body of unspecified cheek and temporomandibular area|Laceration with foreign body of unspecified cheek and temporomandibular area +C2831247|T037|AB|S01.429A|ICD10CM|Laceration w foreign body of unsp cheek and TMJ area, init|Laceration w foreign body of unsp cheek and TMJ area, init +C2831247|T037|PT|S01.429A|ICD10CM|Laceration with foreign body of unspecified cheek and temporomandibular area, initial encounter|Laceration with foreign body of unspecified cheek and temporomandibular area, initial encounter +C2831248|T037|AB|S01.429D|ICD10CM|Laceration w foreign body of unsp cheek and TMJ area, subs|Laceration w foreign body of unsp cheek and TMJ area, subs +C2831248|T037|PT|S01.429D|ICD10CM|Laceration with foreign body of unspecified cheek and temporomandibular area, subsequent encounter|Laceration with foreign body of unspecified cheek and temporomandibular area, subsequent encounter +C2831249|T037|AB|S01.429S|ICD10CM|Laceration w fb of unsp cheek and TMJ area, sequela|Laceration w fb of unsp cheek and TMJ area, sequela +C2831249|T037|PT|S01.429S|ICD10CM|Laceration with foreign body of unspecified cheek and temporomandibular area, sequela|Laceration with foreign body of unspecified cheek and temporomandibular area, sequela +C2831250|T037|AB|S01.43|ICD10CM|Puncture wound w/o foreign body of cheek and TMJ area|Puncture wound w/o foreign body of cheek and TMJ area +C2831250|T037|HT|S01.43|ICD10CM|Puncture wound without foreign body of cheek and temporomandibular area|Puncture wound without foreign body of cheek and temporomandibular area +C2831251|T037|AB|S01.431|ICD10CM|Puncture wound w/o foreign body of right cheek and TMJ area|Puncture wound w/o foreign body of right cheek and TMJ area +C2831251|T037|HT|S01.431|ICD10CM|Puncture wound without foreign body of right cheek and temporomandibular area|Puncture wound without foreign body of right cheek and temporomandibular area +C2831252|T037|AB|S01.431A|ICD10CM|Pnctr w/o foreign body of right cheek and TMJ area, init|Pnctr w/o foreign body of right cheek and TMJ area, init +C2831252|T037|PT|S01.431A|ICD10CM|Puncture wound without foreign body of right cheek and temporomandibular area, initial encounter|Puncture wound without foreign body of right cheek and temporomandibular area, initial encounter +C2831253|T037|AB|S01.431D|ICD10CM|Pnctr w/o foreign body of right cheek and TMJ area, subs|Pnctr w/o foreign body of right cheek and TMJ area, subs +C2831253|T037|PT|S01.431D|ICD10CM|Puncture wound without foreign body of right cheek and temporomandibular area, subsequent encounter|Puncture wound without foreign body of right cheek and temporomandibular area, subsequent encounter +C2831254|T037|AB|S01.431S|ICD10CM|Pnctr w/o foreign body of right cheek and TMJ area, sequela|Pnctr w/o foreign body of right cheek and TMJ area, sequela +C2831254|T037|PT|S01.431S|ICD10CM|Puncture wound without foreign body of right cheek and temporomandibular area, sequela|Puncture wound without foreign body of right cheek and temporomandibular area, sequela +C2831255|T037|AB|S01.432|ICD10CM|Puncture wound w/o foreign body of left cheek and TMJ area|Puncture wound w/o foreign body of left cheek and TMJ area +C2831255|T037|HT|S01.432|ICD10CM|Puncture wound without foreign body of left cheek and temporomandibular area|Puncture wound without foreign body of left cheek and temporomandibular area +C2831256|T037|AB|S01.432A|ICD10CM|Pnctr w/o foreign body of left cheek and TMJ area, init|Pnctr w/o foreign body of left cheek and TMJ area, init +C2831256|T037|PT|S01.432A|ICD10CM|Puncture wound without foreign body of left cheek and temporomandibular area, initial encounter|Puncture wound without foreign body of left cheek and temporomandibular area, initial encounter +C2831257|T037|AB|S01.432D|ICD10CM|Pnctr w/o foreign body of left cheek and TMJ area, subs|Pnctr w/o foreign body of left cheek and TMJ area, subs +C2831257|T037|PT|S01.432D|ICD10CM|Puncture wound without foreign body of left cheek and temporomandibular area, subsequent encounter|Puncture wound without foreign body of left cheek and temporomandibular area, subsequent encounter +C2831258|T037|AB|S01.432S|ICD10CM|Pnctr w/o foreign body of left cheek and TMJ area, sequela|Pnctr w/o foreign body of left cheek and TMJ area, sequela +C2831258|T037|PT|S01.432S|ICD10CM|Puncture wound without foreign body of left cheek and temporomandibular area, sequela|Puncture wound without foreign body of left cheek and temporomandibular area, sequela +C2831259|T037|AB|S01.439|ICD10CM|Puncture wound w/o foreign body of unsp cheek and TMJ area|Puncture wound w/o foreign body of unsp cheek and TMJ area +C2831259|T037|HT|S01.439|ICD10CM|Puncture wound without foreign body of unspecified cheek and temporomandibular area|Puncture wound without foreign body of unspecified cheek and temporomandibular area +C2831260|T037|AB|S01.439A|ICD10CM|Pnctr w/o foreign body of unsp cheek and TMJ area, init|Pnctr w/o foreign body of unsp cheek and TMJ area, init +C2831261|T037|AB|S01.439D|ICD10CM|Pnctr w/o foreign body of unsp cheek and TMJ area, subs|Pnctr w/o foreign body of unsp cheek and TMJ area, subs +C2831262|T037|AB|S01.439S|ICD10CM|Pnctr w/o foreign body of unsp cheek and TMJ area, sequela|Pnctr w/o foreign body of unsp cheek and TMJ area, sequela +C2831262|T037|PT|S01.439S|ICD10CM|Puncture wound without foreign body of unspecified cheek and temporomandibular area, sequela|Puncture wound without foreign body of unspecified cheek and temporomandibular area, sequela +C2831263|T037|AB|S01.44|ICD10CM|Puncture wound w foreign body of cheek and TMJ area|Puncture wound w foreign body of cheek and TMJ area +C2831263|T037|HT|S01.44|ICD10CM|Puncture wound with foreign body of cheek and temporomandibular area|Puncture wound with foreign body of cheek and temporomandibular area +C2831264|T037|AB|S01.441|ICD10CM|Puncture wound w foreign body of right cheek and TMJ area|Puncture wound w foreign body of right cheek and TMJ area +C2831264|T037|HT|S01.441|ICD10CM|Puncture wound with foreign body of right cheek and temporomandibular area|Puncture wound with foreign body of right cheek and temporomandibular area +C2831265|T037|AB|S01.441A|ICD10CM|Pnctr w foreign body of right cheek and TMJ area, init|Pnctr w foreign body of right cheek and TMJ area, init +C2831265|T037|PT|S01.441A|ICD10CM|Puncture wound with foreign body of right cheek and temporomandibular area, initial encounter|Puncture wound with foreign body of right cheek and temporomandibular area, initial encounter +C2831266|T037|AB|S01.441D|ICD10CM|Pnctr w foreign body of right cheek and TMJ area, subs|Pnctr w foreign body of right cheek and TMJ area, subs +C2831266|T037|PT|S01.441D|ICD10CM|Puncture wound with foreign body of right cheek and temporomandibular area, subsequent encounter|Puncture wound with foreign body of right cheek and temporomandibular area, subsequent encounter +C2831267|T037|AB|S01.441S|ICD10CM|Pnctr w foreign body of right cheek and TMJ area, sequela|Pnctr w foreign body of right cheek and TMJ area, sequela +C2831267|T037|PT|S01.441S|ICD10CM|Puncture wound with foreign body of right cheek and temporomandibular area, sequela|Puncture wound with foreign body of right cheek and temporomandibular area, sequela +C2831268|T037|AB|S01.442|ICD10CM|Puncture wound w foreign body of left cheek and TMJ area|Puncture wound w foreign body of left cheek and TMJ area +C2831268|T037|HT|S01.442|ICD10CM|Puncture wound with foreign body of left cheek and temporomandibular area|Puncture wound with foreign body of left cheek and temporomandibular area +C2831269|T037|AB|S01.442A|ICD10CM|Pnctr w foreign body of left cheek and TMJ area, init|Pnctr w foreign body of left cheek and TMJ area, init +C2831269|T037|PT|S01.442A|ICD10CM|Puncture wound with foreign body of left cheek and temporomandibular area, initial encounter|Puncture wound with foreign body of left cheek and temporomandibular area, initial encounter +C2831270|T037|AB|S01.442D|ICD10CM|Pnctr w foreign body of left cheek and TMJ area, subs|Pnctr w foreign body of left cheek and TMJ area, subs +C2831270|T037|PT|S01.442D|ICD10CM|Puncture wound with foreign body of left cheek and temporomandibular area, subsequent encounter|Puncture wound with foreign body of left cheek and temporomandibular area, subsequent encounter +C2831271|T037|AB|S01.442S|ICD10CM|Pnctr w foreign body of left cheek and TMJ area, sequela|Pnctr w foreign body of left cheek and TMJ area, sequela +C2831271|T037|PT|S01.442S|ICD10CM|Puncture wound with foreign body of left cheek and temporomandibular area, sequela|Puncture wound with foreign body of left cheek and temporomandibular area, sequela +C2831272|T037|AB|S01.449|ICD10CM|Puncture wound w foreign body of unsp cheek and TMJ area|Puncture wound w foreign body of unsp cheek and TMJ area +C2831272|T037|HT|S01.449|ICD10CM|Puncture wound with foreign body of unspecified cheek and temporomandibular area|Puncture wound with foreign body of unspecified cheek and temporomandibular area +C2831273|T037|AB|S01.449A|ICD10CM|Pnctr w foreign body of unsp cheek and TMJ area, init|Pnctr w foreign body of unsp cheek and TMJ area, init +C2831273|T037|PT|S01.449A|ICD10CM|Puncture wound with foreign body of unspecified cheek and temporomandibular area, initial encounter|Puncture wound with foreign body of unspecified cheek and temporomandibular area, initial encounter +C2831274|T037|AB|S01.449D|ICD10CM|Pnctr w foreign body of unsp cheek and TMJ area, subs|Pnctr w foreign body of unsp cheek and TMJ area, subs +C2831275|T037|AB|S01.449S|ICD10CM|Pnctr w foreign body of unsp cheek and TMJ area, sequela|Pnctr w foreign body of unsp cheek and TMJ area, sequela +C2831275|T037|PT|S01.449S|ICD10CM|Puncture wound with foreign body of unspecified cheek and temporomandibular area, sequela|Puncture wound with foreign body of unspecified cheek and temporomandibular area, sequela +C2831276|T037|ET|S01.45|ICD10CM|Bite of cheek and temporomandibular area NOS|Bite of cheek and temporomandibular area NOS +C2831277|T037|AB|S01.45|ICD10CM|Open bite of cheek and temporomandibular area|Open bite of cheek and temporomandibular area +C2831277|T037|HT|S01.45|ICD10CM|Open bite of cheek and temporomandibular area|Open bite of cheek and temporomandibular area +C2831278|T037|AB|S01.451|ICD10CM|Open bite of right cheek and temporomandibular area|Open bite of right cheek and temporomandibular area +C2831278|T037|HT|S01.451|ICD10CM|Open bite of right cheek and temporomandibular area|Open bite of right cheek and temporomandibular area +C2831279|T037|AB|S01.451A|ICD10CM|Open bite of right cheek and temporomandibular area, init|Open bite of right cheek and temporomandibular area, init +C2831279|T037|PT|S01.451A|ICD10CM|Open bite of right cheek and temporomandibular area, initial encounter|Open bite of right cheek and temporomandibular area, initial encounter +C2831280|T037|AB|S01.451D|ICD10CM|Open bite of right cheek and temporomandibular area, subs|Open bite of right cheek and temporomandibular area, subs +C2831280|T037|PT|S01.451D|ICD10CM|Open bite of right cheek and temporomandibular area, subsequent encounter|Open bite of right cheek and temporomandibular area, subsequent encounter +C2831281|T037|AB|S01.451S|ICD10CM|Open bite of right cheek and temporomandibular area, sequela|Open bite of right cheek and temporomandibular area, sequela +C2831281|T037|PT|S01.451S|ICD10CM|Open bite of right cheek and temporomandibular area, sequela|Open bite of right cheek and temporomandibular area, sequela +C2831282|T037|AB|S01.452|ICD10CM|Open bite of left cheek and temporomandibular area|Open bite of left cheek and temporomandibular area +C2831282|T037|HT|S01.452|ICD10CM|Open bite of left cheek and temporomandibular area|Open bite of left cheek and temporomandibular area +C2831283|T037|AB|S01.452A|ICD10CM|Open bite of left cheek and temporomandibular area, init|Open bite of left cheek and temporomandibular area, init +C2831283|T037|PT|S01.452A|ICD10CM|Open bite of left cheek and temporomandibular area, initial encounter|Open bite of left cheek and temporomandibular area, initial encounter +C2831284|T037|AB|S01.452D|ICD10CM|Open bite of left cheek and temporomandibular area, subs|Open bite of left cheek and temporomandibular area, subs +C2831284|T037|PT|S01.452D|ICD10CM|Open bite of left cheek and temporomandibular area, subsequent encounter|Open bite of left cheek and temporomandibular area, subsequent encounter +C2831285|T037|AB|S01.452S|ICD10CM|Open bite of left cheek and temporomandibular area, sequela|Open bite of left cheek and temporomandibular area, sequela +C2831285|T037|PT|S01.452S|ICD10CM|Open bite of left cheek and temporomandibular area, sequela|Open bite of left cheek and temporomandibular area, sequela +C2831286|T037|AB|S01.459|ICD10CM|Open bite of unspecified cheek and temporomandibular area|Open bite of unspecified cheek and temporomandibular area +C2831286|T037|HT|S01.459|ICD10CM|Open bite of unspecified cheek and temporomandibular area|Open bite of unspecified cheek and temporomandibular area +C2831287|T037|AB|S01.459A|ICD10CM|Open bite of unsp cheek and temporomandibular area, init|Open bite of unsp cheek and temporomandibular area, init +C2831287|T037|PT|S01.459A|ICD10CM|Open bite of unspecified cheek and temporomandibular area, initial encounter|Open bite of unspecified cheek and temporomandibular area, initial encounter +C2831288|T037|AB|S01.459D|ICD10CM|Open bite of unsp cheek and temporomandibular area, subs|Open bite of unsp cheek and temporomandibular area, subs +C2831288|T037|PT|S01.459D|ICD10CM|Open bite of unspecified cheek and temporomandibular area, subsequent encounter|Open bite of unspecified cheek and temporomandibular area, subsequent encounter +C2831289|T037|AB|S01.459S|ICD10CM|Open bite of unsp cheek and temporomandibular area, sequela|Open bite of unsp cheek and temporomandibular area, sequela +C2831289|T037|PT|S01.459S|ICD10CM|Open bite of unspecified cheek and temporomandibular area, sequela|Open bite of unspecified cheek and temporomandibular area, sequela +C0495805|T037|PT|S01.5|ICD10|Open wound of lip and oral cavity|Open wound of lip and oral cavity +C0495805|T037|HT|S01.5|ICD10CM|Open wound of lip and oral cavity|Open wound of lip and oral cavity +C0495805|T037|AB|S01.5|ICD10CM|Open wound of lip and oral cavity|Open wound of lip and oral cavity +C2831290|T037|AB|S01.50|ICD10CM|Unspecified open wound of lip and oral cavity|Unspecified open wound of lip and oral cavity +C2831290|T037|HT|S01.50|ICD10CM|Unspecified open wound of lip and oral cavity|Unspecified open wound of lip and oral cavity +C2831291|T037|AB|S01.501|ICD10CM|Unspecified open wound of lip|Unspecified open wound of lip +C2831291|T037|HT|S01.501|ICD10CM|Unspecified open wound of lip|Unspecified open wound of lip +C2831292|T037|AB|S01.501A|ICD10CM|Unspecified open wound of lip, initial encounter|Unspecified open wound of lip, initial encounter +C2831292|T037|PT|S01.501A|ICD10CM|Unspecified open wound of lip, initial encounter|Unspecified open wound of lip, initial encounter +C2831293|T037|AB|S01.501D|ICD10CM|Unspecified open wound of lip, subsequent encounter|Unspecified open wound of lip, subsequent encounter +C2831293|T037|PT|S01.501D|ICD10CM|Unspecified open wound of lip, subsequent encounter|Unspecified open wound of lip, subsequent encounter +C2831294|T037|AB|S01.501S|ICD10CM|Unspecified open wound of lip, sequela|Unspecified open wound of lip, sequela +C2831294|T037|PT|S01.501S|ICD10CM|Unspecified open wound of lip, sequela|Unspecified open wound of lip, sequela +C2831295|T037|AB|S01.502|ICD10CM|Unspecified open wound of oral cavity|Unspecified open wound of oral cavity +C2831295|T037|HT|S01.502|ICD10CM|Unspecified open wound of oral cavity|Unspecified open wound of oral cavity +C2831296|T037|AB|S01.502A|ICD10CM|Unspecified open wound of oral cavity, initial encounter|Unspecified open wound of oral cavity, initial encounter +C2831296|T037|PT|S01.502A|ICD10CM|Unspecified open wound of oral cavity, initial encounter|Unspecified open wound of oral cavity, initial encounter +C2831297|T037|AB|S01.502D|ICD10CM|Unspecified open wound of oral cavity, subsequent encounter|Unspecified open wound of oral cavity, subsequent encounter +C2831297|T037|PT|S01.502D|ICD10CM|Unspecified open wound of oral cavity, subsequent encounter|Unspecified open wound of oral cavity, subsequent encounter +C2831298|T037|AB|S01.502S|ICD10CM|Unspecified open wound of oral cavity, sequela|Unspecified open wound of oral cavity, sequela +C2831298|T037|PT|S01.502S|ICD10CM|Unspecified open wound of oral cavity, sequela|Unspecified open wound of oral cavity, sequela +C2831299|T037|AB|S01.51|ICD10CM|Laceration of lip and oral cavity without foreign body|Laceration of lip and oral cavity without foreign body +C2831299|T037|HT|S01.51|ICD10CM|Laceration of lip and oral cavity without foreign body|Laceration of lip and oral cavity without foreign body +C2831300|T037|AB|S01.511|ICD10CM|Laceration without foreign body of lip|Laceration without foreign body of lip +C2831300|T037|HT|S01.511|ICD10CM|Laceration without foreign body of lip|Laceration without foreign body of lip +C2831301|T037|AB|S01.511A|ICD10CM|Laceration without foreign body of lip, initial encounter|Laceration without foreign body of lip, initial encounter +C2831301|T037|PT|S01.511A|ICD10CM|Laceration without foreign body of lip, initial encounter|Laceration without foreign body of lip, initial encounter +C2831302|T037|AB|S01.511D|ICD10CM|Laceration without foreign body of lip, subsequent encounter|Laceration without foreign body of lip, subsequent encounter +C2831302|T037|PT|S01.511D|ICD10CM|Laceration without foreign body of lip, subsequent encounter|Laceration without foreign body of lip, subsequent encounter +C2831303|T037|AB|S01.511S|ICD10CM|Laceration without foreign body of lip, sequela|Laceration without foreign body of lip, sequela +C2831303|T037|PT|S01.511S|ICD10CM|Laceration without foreign body of lip, sequela|Laceration without foreign body of lip, sequela +C2831304|T037|AB|S01.512|ICD10CM|Laceration without foreign body of oral cavity|Laceration without foreign body of oral cavity +C2831304|T037|HT|S01.512|ICD10CM|Laceration without foreign body of oral cavity|Laceration without foreign body of oral cavity +C2831305|T037|AB|S01.512A|ICD10CM|Laceration without foreign body of oral cavity, init encntr|Laceration without foreign body of oral cavity, init encntr +C2831305|T037|PT|S01.512A|ICD10CM|Laceration without foreign body of oral cavity, initial encounter|Laceration without foreign body of oral cavity, initial encounter +C2831306|T037|AB|S01.512D|ICD10CM|Laceration without foreign body of oral cavity, subs encntr|Laceration without foreign body of oral cavity, subs encntr +C2831306|T037|PT|S01.512D|ICD10CM|Laceration without foreign body of oral cavity, subsequent encounter|Laceration without foreign body of oral cavity, subsequent encounter +C2831307|T037|AB|S01.512S|ICD10CM|Laceration without foreign body of oral cavity, sequela|Laceration without foreign body of oral cavity, sequela +C2831307|T037|PT|S01.512S|ICD10CM|Laceration without foreign body of oral cavity, sequela|Laceration without foreign body of oral cavity, sequela +C2831308|T037|AB|S01.52|ICD10CM|Laceration of lip and oral cavity with foreign body|Laceration of lip and oral cavity with foreign body +C2831308|T037|HT|S01.52|ICD10CM|Laceration of lip and oral cavity with foreign body|Laceration of lip and oral cavity with foreign body +C2831309|T037|AB|S01.521|ICD10CM|Laceration with foreign body of lip|Laceration with foreign body of lip +C2831309|T037|HT|S01.521|ICD10CM|Laceration with foreign body of lip|Laceration with foreign body of lip +C2831310|T037|AB|S01.521A|ICD10CM|Laceration with foreign body of lip, initial encounter|Laceration with foreign body of lip, initial encounter +C2831310|T037|PT|S01.521A|ICD10CM|Laceration with foreign body of lip, initial encounter|Laceration with foreign body of lip, initial encounter +C2831311|T037|AB|S01.521D|ICD10CM|Laceration with foreign body of lip, subsequent encounter|Laceration with foreign body of lip, subsequent encounter +C2831311|T037|PT|S01.521D|ICD10CM|Laceration with foreign body of lip, subsequent encounter|Laceration with foreign body of lip, subsequent encounter +C2831312|T037|AB|S01.521S|ICD10CM|Laceration with foreign body of lip, sequela|Laceration with foreign body of lip, sequela +C2831312|T037|PT|S01.521S|ICD10CM|Laceration with foreign body of lip, sequela|Laceration with foreign body of lip, sequela +C2831313|T037|AB|S01.522|ICD10CM|Laceration with foreign body of oral cavity|Laceration with foreign body of oral cavity +C2831313|T037|HT|S01.522|ICD10CM|Laceration with foreign body of oral cavity|Laceration with foreign body of oral cavity +C2831314|T037|AB|S01.522A|ICD10CM|Laceration with foreign body of oral cavity, init encntr|Laceration with foreign body of oral cavity, init encntr +C2831314|T037|PT|S01.522A|ICD10CM|Laceration with foreign body of oral cavity, initial encounter|Laceration with foreign body of oral cavity, initial encounter +C2831315|T037|AB|S01.522D|ICD10CM|Laceration with foreign body of oral cavity, subs encntr|Laceration with foreign body of oral cavity, subs encntr +C2831315|T037|PT|S01.522D|ICD10CM|Laceration with foreign body of oral cavity, subsequent encounter|Laceration with foreign body of oral cavity, subsequent encounter +C2831316|T037|AB|S01.522S|ICD10CM|Laceration with foreign body of oral cavity, sequela|Laceration with foreign body of oral cavity, sequela +C2831316|T037|PT|S01.522S|ICD10CM|Laceration with foreign body of oral cavity, sequela|Laceration with foreign body of oral cavity, sequela +C2831317|T037|AB|S01.53|ICD10CM|Puncture wound of lip and oral cavity without foreign body|Puncture wound of lip and oral cavity without foreign body +C2831317|T037|HT|S01.53|ICD10CM|Puncture wound of lip and oral cavity without foreign body|Puncture wound of lip and oral cavity without foreign body +C2831318|T037|AB|S01.531|ICD10CM|Puncture wound without foreign body of lip|Puncture wound without foreign body of lip +C2831318|T037|HT|S01.531|ICD10CM|Puncture wound without foreign body of lip|Puncture wound without foreign body of lip +C2831319|T037|AB|S01.531A|ICD10CM|Puncture wound without foreign body of lip, init encntr|Puncture wound without foreign body of lip, init encntr +C2831319|T037|PT|S01.531A|ICD10CM|Puncture wound without foreign body of lip, initial encounter|Puncture wound without foreign body of lip, initial encounter +C2831320|T037|AB|S01.531D|ICD10CM|Puncture wound without foreign body of lip, subs encntr|Puncture wound without foreign body of lip, subs encntr +C2831320|T037|PT|S01.531D|ICD10CM|Puncture wound without foreign body of lip, subsequent encounter|Puncture wound without foreign body of lip, subsequent encounter +C2831321|T037|AB|S01.531S|ICD10CM|Puncture wound without foreign body of lip, sequela|Puncture wound without foreign body of lip, sequela +C2831321|T037|PT|S01.531S|ICD10CM|Puncture wound without foreign body of lip, sequela|Puncture wound without foreign body of lip, sequela +C2831322|T037|AB|S01.532|ICD10CM|Puncture wound without foreign body of oral cavity|Puncture wound without foreign body of oral cavity +C2831322|T037|HT|S01.532|ICD10CM|Puncture wound without foreign body of oral cavity|Puncture wound without foreign body of oral cavity +C2831323|T037|AB|S01.532A|ICD10CM|Puncture wound w/o foreign body of oral cavity, init encntr|Puncture wound w/o foreign body of oral cavity, init encntr +C2831323|T037|PT|S01.532A|ICD10CM|Puncture wound without foreign body of oral cavity, initial encounter|Puncture wound without foreign body of oral cavity, initial encounter +C2831324|T037|AB|S01.532D|ICD10CM|Puncture wound w/o foreign body of oral cavity, subs encntr|Puncture wound w/o foreign body of oral cavity, subs encntr +C2831324|T037|PT|S01.532D|ICD10CM|Puncture wound without foreign body of oral cavity, subsequent encounter|Puncture wound without foreign body of oral cavity, subsequent encounter +C2831325|T037|AB|S01.532S|ICD10CM|Puncture wound without foreign body of oral cavity, sequela|Puncture wound without foreign body of oral cavity, sequela +C2831325|T037|PT|S01.532S|ICD10CM|Puncture wound without foreign body of oral cavity, sequela|Puncture wound without foreign body of oral cavity, sequela +C2831326|T037|AB|S01.54|ICD10CM|Puncture wound of lip and oral cavity with foreign body|Puncture wound of lip and oral cavity with foreign body +C2831326|T037|HT|S01.54|ICD10CM|Puncture wound of lip and oral cavity with foreign body|Puncture wound of lip and oral cavity with foreign body +C2831327|T037|AB|S01.541|ICD10CM|Puncture wound with foreign body of lip|Puncture wound with foreign body of lip +C2831327|T037|HT|S01.541|ICD10CM|Puncture wound with foreign body of lip|Puncture wound with foreign body of lip +C2831328|T037|AB|S01.541A|ICD10CM|Puncture wound with foreign body of lip, initial encounter|Puncture wound with foreign body of lip, initial encounter +C2831328|T037|PT|S01.541A|ICD10CM|Puncture wound with foreign body of lip, initial encounter|Puncture wound with foreign body of lip, initial encounter +C2831329|T037|AB|S01.541D|ICD10CM|Puncture wound with foreign body of lip, subs encntr|Puncture wound with foreign body of lip, subs encntr +C2831329|T037|PT|S01.541D|ICD10CM|Puncture wound with foreign body of lip, subsequent encounter|Puncture wound with foreign body of lip, subsequent encounter +C2831330|T037|AB|S01.541S|ICD10CM|Puncture wound with foreign body of lip, sequela|Puncture wound with foreign body of lip, sequela +C2831330|T037|PT|S01.541S|ICD10CM|Puncture wound with foreign body of lip, sequela|Puncture wound with foreign body of lip, sequela +C2831331|T037|AB|S01.542|ICD10CM|Puncture wound with foreign body of oral cavity|Puncture wound with foreign body of oral cavity +C2831331|T037|HT|S01.542|ICD10CM|Puncture wound with foreign body of oral cavity|Puncture wound with foreign body of oral cavity +C2831332|T037|AB|S01.542A|ICD10CM|Puncture wound with foreign body of oral cavity, init encntr|Puncture wound with foreign body of oral cavity, init encntr +C2831332|T037|PT|S01.542A|ICD10CM|Puncture wound with foreign body of oral cavity, initial encounter|Puncture wound with foreign body of oral cavity, initial encounter +C2831333|T037|AB|S01.542D|ICD10CM|Puncture wound with foreign body of oral cavity, subs encntr|Puncture wound with foreign body of oral cavity, subs encntr +C2831333|T037|PT|S01.542D|ICD10CM|Puncture wound with foreign body of oral cavity, subsequent encounter|Puncture wound with foreign body of oral cavity, subsequent encounter +C2831334|T037|AB|S01.542S|ICD10CM|Puncture wound with foreign body of oral cavity, sequela|Puncture wound with foreign body of oral cavity, sequela +C2831334|T037|PT|S01.542S|ICD10CM|Puncture wound with foreign body of oral cavity, sequela|Puncture wound with foreign body of oral cavity, sequela +C2831335|T037|AB|S01.55|ICD10CM|Open bite of lip and oral cavity|Open bite of lip and oral cavity +C2831335|T037|HT|S01.55|ICD10CM|Open bite of lip and oral cavity|Open bite of lip and oral cavity +C2227501|T033|ET|S01.551|ICD10CM|Bite of lip NOS|Bite of lip NOS +C2831336|T037|HT|S01.551|ICD10CM|Open bite of lip|Open bite of lip +C2831336|T037|AB|S01.551|ICD10CM|Open bite of lip|Open bite of lip +C2831337|T037|AB|S01.551A|ICD10CM|Open bite of lip, initial encounter|Open bite of lip, initial encounter +C2831337|T037|PT|S01.551A|ICD10CM|Open bite of lip, initial encounter|Open bite of lip, initial encounter +C2831338|T037|AB|S01.551D|ICD10CM|Open bite of lip, subsequent encounter|Open bite of lip, subsequent encounter +C2831338|T037|PT|S01.551D|ICD10CM|Open bite of lip, subsequent encounter|Open bite of lip, subsequent encounter +C2831339|T037|AB|S01.551S|ICD10CM|Open bite of lip, sequela|Open bite of lip, sequela +C2831339|T037|PT|S01.551S|ICD10CM|Open bite of lip, sequela|Open bite of lip, sequela +C2831340|T037|ET|S01.552|ICD10CM|Bite of oral cavity NOS|Bite of oral cavity NOS +C2831341|T037|HT|S01.552|ICD10CM|Open bite of oral cavity|Open bite of oral cavity +C2831341|T037|AB|S01.552|ICD10CM|Open bite of oral cavity|Open bite of oral cavity +C2831342|T037|AB|S01.552A|ICD10CM|Open bite of oral cavity, initial encounter|Open bite of oral cavity, initial encounter +C2831342|T037|PT|S01.552A|ICD10CM|Open bite of oral cavity, initial encounter|Open bite of oral cavity, initial encounter +C2831343|T037|AB|S01.552D|ICD10CM|Open bite of oral cavity, subsequent encounter|Open bite of oral cavity, subsequent encounter +C2831343|T037|PT|S01.552D|ICD10CM|Open bite of oral cavity, subsequent encounter|Open bite of oral cavity, subsequent encounter +C2831344|T037|AB|S01.552S|ICD10CM|Open bite of oral cavity, sequela|Open bite of oral cavity, sequela +C2831344|T037|PT|S01.552S|ICD10CM|Open bite of oral cavity, sequela|Open bite of oral cavity, sequela +C0495806|T037|PT|S01.7|ICD10|Multiple open wounds of head|Multiple open wounds of head +C0478201|T037|PT|S01.8|ICD10|Open wound of other parts of head|Open wound of other parts of head +C0478201|T037|HT|S01.8|ICD10CM|Open wound of other parts of head|Open wound of other parts of head +C0478201|T037|AB|S01.8|ICD10CM|Open wound of other parts of head|Open wound of other parts of head +C2831345|T037|AB|S01.80|ICD10CM|Unspecified open wound of other part of head|Unspecified open wound of other part of head +C2831345|T037|HT|S01.80|ICD10CM|Unspecified open wound of other part of head|Unspecified open wound of other part of head +C2831346|T037|AB|S01.80XA|ICD10CM|Unspecified open wound of other part of head, init encntr|Unspecified open wound of other part of head, init encntr +C2831346|T037|PT|S01.80XA|ICD10CM|Unspecified open wound of other part of head, initial encounter|Unspecified open wound of other part of head, initial encounter +C2831347|T037|AB|S01.80XD|ICD10CM|Unspecified open wound of other part of head, subs encntr|Unspecified open wound of other part of head, subs encntr +C2831347|T037|PT|S01.80XD|ICD10CM|Unspecified open wound of other part of head, subsequent encounter|Unspecified open wound of other part of head, subsequent encounter +C2831348|T037|AB|S01.80XS|ICD10CM|Unspecified open wound of other part of head, sequela|Unspecified open wound of other part of head, sequela +C2831348|T037|PT|S01.80XS|ICD10CM|Unspecified open wound of other part of head, sequela|Unspecified open wound of other part of head, sequela +C2831349|T037|AB|S01.81|ICD10CM|Laceration without foreign body of other part of head|Laceration without foreign body of other part of head +C2831349|T037|HT|S01.81|ICD10CM|Laceration without foreign body of other part of head|Laceration without foreign body of other part of head +C2831350|T037|AB|S01.81XA|ICD10CM|Laceration w/o foreign body of oth part of head, init encntr|Laceration w/o foreign body of oth part of head, init encntr +C2831350|T037|PT|S01.81XA|ICD10CM|Laceration without foreign body of other part of head, initial encounter|Laceration without foreign body of other part of head, initial encounter +C2831351|T037|AB|S01.81XD|ICD10CM|Laceration w/o foreign body of oth part of head, subs encntr|Laceration w/o foreign body of oth part of head, subs encntr +C2831351|T037|PT|S01.81XD|ICD10CM|Laceration without foreign body of other part of head, subsequent encounter|Laceration without foreign body of other part of head, subsequent encounter +C2831352|T037|AB|S01.81XS|ICD10CM|Laceration w/o foreign body of other part of head, sequela|Laceration w/o foreign body of other part of head, sequela +C2831352|T037|PT|S01.81XS|ICD10CM|Laceration without foreign body of other part of head, sequela|Laceration without foreign body of other part of head, sequela +C2831353|T037|AB|S01.82|ICD10CM|Laceration with foreign body of other part of head|Laceration with foreign body of other part of head +C2831353|T037|HT|S01.82|ICD10CM|Laceration with foreign body of other part of head|Laceration with foreign body of other part of head +C2831354|T037|AB|S01.82XA|ICD10CM|Laceration w foreign body of oth part of head, init encntr|Laceration w foreign body of oth part of head, init encntr +C2831354|T037|PT|S01.82XA|ICD10CM|Laceration with foreign body of other part of head, initial encounter|Laceration with foreign body of other part of head, initial encounter +C2831355|T037|AB|S01.82XD|ICD10CM|Laceration w foreign body of oth part of head, subs encntr|Laceration w foreign body of oth part of head, subs encntr +C2831355|T037|PT|S01.82XD|ICD10CM|Laceration with foreign body of other part of head, subsequent encounter|Laceration with foreign body of other part of head, subsequent encounter +C2831356|T037|AB|S01.82XS|ICD10CM|Laceration with foreign body of other part of head, sequela|Laceration with foreign body of other part of head, sequela +C2831356|T037|PT|S01.82XS|ICD10CM|Laceration with foreign body of other part of head, sequela|Laceration with foreign body of other part of head, sequela +C2831357|T037|AB|S01.83|ICD10CM|Puncture wound without foreign body of other part of head|Puncture wound without foreign body of other part of head +C2831357|T037|HT|S01.83|ICD10CM|Puncture wound without foreign body of other part of head|Puncture wound without foreign body of other part of head +C2831358|T037|AB|S01.83XA|ICD10CM|Puncture wound w/o foreign body oth prt head, init encntr|Puncture wound w/o foreign body oth prt head, init encntr +C2831358|T037|PT|S01.83XA|ICD10CM|Puncture wound without foreign body of other part of head, initial encounter|Puncture wound without foreign body of other part of head, initial encounter +C2831359|T037|AB|S01.83XD|ICD10CM|Puncture wound w/o foreign body oth prt head, subs encntr|Puncture wound w/o foreign body oth prt head, subs encntr +C2831359|T037|PT|S01.83XD|ICD10CM|Puncture wound without foreign body of other part of head, subsequent encounter|Puncture wound without foreign body of other part of head, subsequent encounter +C2831360|T037|AB|S01.83XS|ICD10CM|Puncture wound w/o foreign body of oth part of head, sequela|Puncture wound w/o foreign body of oth part of head, sequela +C2831360|T037|PT|S01.83XS|ICD10CM|Puncture wound without foreign body of other part of head, sequela|Puncture wound without foreign body of other part of head, sequela +C2831361|T037|AB|S01.84|ICD10CM|Puncture wound with foreign body of other part of head|Puncture wound with foreign body of other part of head +C2831361|T037|HT|S01.84|ICD10CM|Puncture wound with foreign body of other part of head|Puncture wound with foreign body of other part of head +C2831362|T037|AB|S01.84XA|ICD10CM|Puncture wound w foreign body oth prt head, init encntr|Puncture wound w foreign body oth prt head, init encntr +C2831362|T037|PT|S01.84XA|ICD10CM|Puncture wound with foreign body of other part of head, initial encounter|Puncture wound with foreign body of other part of head, initial encounter +C2831363|T037|AB|S01.84XD|ICD10CM|Puncture wound w foreign body oth prt head, subs encntr|Puncture wound w foreign body oth prt head, subs encntr +C2831363|T037|PT|S01.84XD|ICD10CM|Puncture wound with foreign body of other part of head, subsequent encounter|Puncture wound with foreign body of other part of head, subsequent encounter +C2831364|T037|AB|S01.84XS|ICD10CM|Puncture wound w foreign body of oth part of head, sequela|Puncture wound w foreign body of oth part of head, sequela +C2831364|T037|PT|S01.84XS|ICD10CM|Puncture wound with foreign body of other part of head, sequela|Puncture wound with foreign body of other part of head, sequela +C2831365|T037|ET|S01.85|ICD10CM|Bite of other part of head NOS|Bite of other part of head NOS +C2831366|T037|AB|S01.85|ICD10CM|Open bite of other part of head|Open bite of other part of head +C2831366|T037|HT|S01.85|ICD10CM|Open bite of other part of head|Open bite of other part of head +C2831367|T037|AB|S01.85XA|ICD10CM|Open bite of other part of head, initial encounter|Open bite of other part of head, initial encounter +C2831367|T037|PT|S01.85XA|ICD10CM|Open bite of other part of head, initial encounter|Open bite of other part of head, initial encounter +C2831368|T037|AB|S01.85XD|ICD10CM|Open bite of other part of head, subsequent encounter|Open bite of other part of head, subsequent encounter +C2831368|T037|PT|S01.85XD|ICD10CM|Open bite of other part of head, subsequent encounter|Open bite of other part of head, subsequent encounter +C2831369|T037|AB|S01.85XS|ICD10CM|Open bite of other part of head, sequela|Open bite of other part of head, sequela +C2831369|T037|PT|S01.85XS|ICD10CM|Open bite of other part of head, sequela|Open bite of other part of head, sequela +C0273239|T037|PT|S01.9|ICD10|Open wound of head, part unspecified|Open wound of head, part unspecified +C0273239|T037|AB|S01.9|ICD10CM|Open wound of unspecified part of head|Open wound of unspecified part of head +C0273239|T037|HT|S01.9|ICD10CM|Open wound of unspecified part of head|Open wound of unspecified part of head +C2831370|T037|AB|S01.90|ICD10CM|Unspecified open wound of unspecified part of head|Unspecified open wound of unspecified part of head +C2831370|T037|HT|S01.90|ICD10CM|Unspecified open wound of unspecified part of head|Unspecified open wound of unspecified part of head +C2831371|T037|AB|S01.90XA|ICD10CM|Unsp open wound of unspecified part of head, init encntr|Unsp open wound of unspecified part of head, init encntr +C2831371|T037|PT|S01.90XA|ICD10CM|Unspecified open wound of unspecified part of head, initial encounter|Unspecified open wound of unspecified part of head, initial encounter +C2831372|T037|AB|S01.90XD|ICD10CM|Unsp open wound of unspecified part of head, subs encntr|Unsp open wound of unspecified part of head, subs encntr +C2831372|T037|PT|S01.90XD|ICD10CM|Unspecified open wound of unspecified part of head, subsequent encounter|Unspecified open wound of unspecified part of head, subsequent encounter +C2831373|T037|AB|S01.90XS|ICD10CM|Unspecified open wound of unspecified part of head, sequela|Unspecified open wound of unspecified part of head, sequela +C2831373|T037|PT|S01.90XS|ICD10CM|Unspecified open wound of unspecified part of head, sequela|Unspecified open wound of unspecified part of head, sequela +C2831374|T037|AB|S01.91|ICD10CM|Laceration without foreign body of unspecified part of head|Laceration without foreign body of unspecified part of head +C2831374|T037|HT|S01.91|ICD10CM|Laceration without foreign body of unspecified part of head|Laceration without foreign body of unspecified part of head +C2831375|T037|AB|S01.91XA|ICD10CM|Laceration w/o foreign body of unsp part of head, init|Laceration w/o foreign body of unsp part of head, init +C2831375|T037|PT|S01.91XA|ICD10CM|Laceration without foreign body of unspecified part of head, initial encounter|Laceration without foreign body of unspecified part of head, initial encounter +C2831376|T037|AB|S01.91XD|ICD10CM|Laceration w/o foreign body of unsp part of head, subs|Laceration w/o foreign body of unsp part of head, subs +C2831376|T037|PT|S01.91XD|ICD10CM|Laceration without foreign body of unspecified part of head, subsequent encounter|Laceration without foreign body of unspecified part of head, subsequent encounter +C2831377|T037|AB|S01.91XS|ICD10CM|Laceration w/o foreign body of unsp part of head, sequela|Laceration w/o foreign body of unsp part of head, sequela +C2831377|T037|PT|S01.91XS|ICD10CM|Laceration without foreign body of unspecified part of head, sequela|Laceration without foreign body of unspecified part of head, sequela +C2831378|T037|AB|S01.92|ICD10CM|Laceration with foreign body of unspecified part of head|Laceration with foreign body of unspecified part of head +C2831378|T037|HT|S01.92|ICD10CM|Laceration with foreign body of unspecified part of head|Laceration with foreign body of unspecified part of head +C2831379|T037|AB|S01.92XA|ICD10CM|Laceration w foreign body of unsp part of head, init encntr|Laceration w foreign body of unsp part of head, init encntr +C2831379|T037|PT|S01.92XA|ICD10CM|Laceration with foreign body of unspecified part of head, initial encounter|Laceration with foreign body of unspecified part of head, initial encounter +C2831380|T037|AB|S01.92XD|ICD10CM|Laceration w foreign body of unsp part of head, subs encntr|Laceration w foreign body of unsp part of head, subs encntr +C2831380|T037|PT|S01.92XD|ICD10CM|Laceration with foreign body of unspecified part of head, subsequent encounter|Laceration with foreign body of unspecified part of head, subsequent encounter +C2831381|T037|AB|S01.92XS|ICD10CM|Laceration with foreign body of unsp part of head, sequela|Laceration with foreign body of unsp part of head, sequela +C2831381|T037|PT|S01.92XS|ICD10CM|Laceration with foreign body of unspecified part of head, sequela|Laceration with foreign body of unspecified part of head, sequela +C2831382|T037|AB|S01.93|ICD10CM|Puncture wound without foreign body of unsp part of head|Puncture wound without foreign body of unsp part of head +C2831382|T037|HT|S01.93|ICD10CM|Puncture wound without foreign body of unspecified part of head|Puncture wound without foreign body of unspecified part of head +C2831383|T037|AB|S01.93XA|ICD10CM|Puncture wound w/o foreign body of unsp part of head, init|Puncture wound w/o foreign body of unsp part of head, init +C2831383|T037|PT|S01.93XA|ICD10CM|Puncture wound without foreign body of unspecified part of head, initial encounter|Puncture wound without foreign body of unspecified part of head, initial encounter +C2831384|T037|AB|S01.93XD|ICD10CM|Puncture wound w/o foreign body of unsp part of head, subs|Puncture wound w/o foreign body of unsp part of head, subs +C2831384|T037|PT|S01.93XD|ICD10CM|Puncture wound without foreign body of unspecified part of head, subsequent encounter|Puncture wound without foreign body of unspecified part of head, subsequent encounter +C2831385|T037|AB|S01.93XS|ICD10CM|Pnctr w/o foreign body of unsp part of head, sequela|Pnctr w/o foreign body of unsp part of head, sequela +C2831385|T037|PT|S01.93XS|ICD10CM|Puncture wound without foreign body of unspecified part of head, sequela|Puncture wound without foreign body of unspecified part of head, sequela +C2831386|T037|AB|S01.94|ICD10CM|Puncture wound with foreign body of unspecified part of head|Puncture wound with foreign body of unspecified part of head +C2831386|T037|HT|S01.94|ICD10CM|Puncture wound with foreign body of unspecified part of head|Puncture wound with foreign body of unspecified part of head +C2831387|T037|AB|S01.94XA|ICD10CM|Puncture wound w foreign body of unsp part of head, init|Puncture wound w foreign body of unsp part of head, init +C2831387|T037|PT|S01.94XA|ICD10CM|Puncture wound with foreign body of unspecified part of head, initial encounter|Puncture wound with foreign body of unspecified part of head, initial encounter +C2831388|T037|AB|S01.94XD|ICD10CM|Puncture wound w foreign body of unsp part of head, subs|Puncture wound w foreign body of unsp part of head, subs +C2831388|T037|PT|S01.94XD|ICD10CM|Puncture wound with foreign body of unspecified part of head, subsequent encounter|Puncture wound with foreign body of unspecified part of head, subsequent encounter +C2831389|T037|AB|S01.94XS|ICD10CM|Puncture wound w foreign body of unsp part of head, sequela|Puncture wound w foreign body of unsp part of head, sequela +C2831389|T037|PT|S01.94XS|ICD10CM|Puncture wound with foreign body of unspecified part of head, sequela|Puncture wound with foreign body of unspecified part of head, sequela +C2831390|T037|ET|S01.95|ICD10CM|Bite of head NOS|Bite of head NOS +C2831390|T037|AB|S01.95|ICD10CM|Open bite of unspecified part of head|Open bite of unspecified part of head +C2831390|T037|HT|S01.95|ICD10CM|Open bite of unspecified part of head|Open bite of unspecified part of head +C2831391|T037|AB|S01.95XA|ICD10CM|Open bite of unspecified part of head, initial encounter|Open bite of unspecified part of head, initial encounter +C2831391|T037|PT|S01.95XA|ICD10CM|Open bite of unspecified part of head, initial encounter|Open bite of unspecified part of head, initial encounter +C2831392|T037|AB|S01.95XD|ICD10CM|Open bite of unspecified part of head, subsequent encounter|Open bite of unspecified part of head, subsequent encounter +C2831392|T037|PT|S01.95XD|ICD10CM|Open bite of unspecified part of head, subsequent encounter|Open bite of unspecified part of head, subsequent encounter +C2831393|T037|AB|S01.95XS|ICD10CM|Open bite of unspecified part of head, sequela|Open bite of unspecified part of head, sequela +C2831393|T037|PT|S01.95XS|ICD10CM|Open bite of unspecified part of head, sequela|Open bite of unspecified part of head, sequela +C0452077|T037|HT|S02|ICD10CM|Fracture of skull and facial bones|Fracture of skull and facial bones +C0452077|T037|AB|S02|ICD10CM|Fracture of skull and facial bones|Fracture of skull and facial bones +C0452077|T037|HT|S02|ICD10|Fracture of skull and facial bones|Fracture of skull and facial bones +C0272450|T037|ET|S02.0|ICD10CM|Fracture of frontal bone|Fracture of frontal bone +C0272451|T037|ET|S02.0|ICD10CM|Fracture of parietal bone|Fracture of parietal bone +C0159139|T037|PT|S02.0|ICD10|Fracture of vault of skull|Fracture of vault of skull +C0159139|T037|HT|S02.0|ICD10CM|Fracture of vault of skull|Fracture of vault of skull +C0159139|T037|AB|S02.0|ICD10CM|Fracture of vault of skull|Fracture of vault of skull +C2831394|T037|AB|S02.0XXA|ICD10CM|Fracture of vault of skull, init encntr for closed fracture|Fracture of vault of skull, init encntr for closed fracture +C2831394|T037|PT|S02.0XXA|ICD10CM|Fracture of vault of skull, initial encounter for closed fracture|Fracture of vault of skull, initial encounter for closed fracture +C2831395|T037|AB|S02.0XXB|ICD10CM|Fracture of vault of skull, init encntr for open fracture|Fracture of vault of skull, init encntr for open fracture +C2831395|T037|PT|S02.0XXB|ICD10CM|Fracture of vault of skull, initial encounter for open fracture|Fracture of vault of skull, initial encounter for open fracture +C2831396|T037|AB|S02.0XXD|ICD10CM|Fracture of vault of skull, subs for fx w routn heal|Fracture of vault of skull, subs for fx w routn heal +C2831396|T037|PT|S02.0XXD|ICD10CM|Fracture of vault of skull, subsequent encounter for fracture with routine healing|Fracture of vault of skull, subsequent encounter for fracture with routine healing +C2831397|T037|AB|S02.0XXG|ICD10CM|Fracture of vault of skull, subs for fx w delay heal|Fracture of vault of skull, subs for fx w delay heal +C2831397|T037|PT|S02.0XXG|ICD10CM|Fracture of vault of skull, subsequent encounter for fracture with delayed healing|Fracture of vault of skull, subsequent encounter for fracture with delayed healing +C2831398|T037|AB|S02.0XXK|ICD10CM|Fracture of vault of skull, subs for fx w nonunion|Fracture of vault of skull, subs for fx w nonunion +C2831398|T037|PT|S02.0XXK|ICD10CM|Fracture of vault of skull, subsequent encounter for fracture with nonunion|Fracture of vault of skull, subsequent encounter for fracture with nonunion +C2831399|T037|AB|S02.0XXS|ICD10CM|Fracture of vault of skull, sequela|Fracture of vault of skull, sequela +C2831399|T037|PT|S02.0XXS|ICD10CM|Fracture of vault of skull, sequela|Fracture of vault of skull, sequela +C0748830|T037|PT|S02.1|ICD10|Fracture of base of skull|Fracture of base of skull +C0748830|T037|HT|S02.1|ICD10CM|Fracture of base of skull|Fracture of base of skull +C0748830|T037|AB|S02.1|ICD10CM|Fracture of base of skull|Fracture of base of skull +C2831400|T037|AB|S02.10|ICD10CM|Unspecified fracture of base of skull|Unspecified fracture of base of skull +C2831400|T037|HT|S02.10|ICD10CM|Unspecified fracture of base of skull|Unspecified fracture of base of skull +C4269229|T037|AB|S02.101|ICD10CM|Fracture of base of skull, right side|Fracture of base of skull, right side +C4269229|T037|HT|S02.101|ICD10CM|Fracture of base of skull, right side|Fracture of base of skull, right side +C4269230|T037|AB|S02.101A|ICD10CM|Fracture of base of skull, right side, init|Fracture of base of skull, right side, init +C4269230|T037|PT|S02.101A|ICD10CM|Fracture of base of skull, right side, initial encounter for closed fracture|Fracture of base of skull, right side, initial encounter for closed fracture +C4269231|T037|AB|S02.101B|ICD10CM|Fracture of base of skull, right side, 7thB|Fracture of base of skull, right side, 7thB +C4269231|T037|PT|S02.101B|ICD10CM|Fracture of base of skull, right side, initial encounter for open fracture|Fracture of base of skull, right side, initial encounter for open fracture +C4269232|T037|AB|S02.101D|ICD10CM|Fracture of base of skull, right side, 7thD|Fracture of base of skull, right side, 7thD +C4269232|T037|PT|S02.101D|ICD10CM|Fracture of base of skull, right side, subsequent encounter for fracture with routine healing|Fracture of base of skull, right side, subsequent encounter for fracture with routine healing +C4269233|T037|AB|S02.101G|ICD10CM|Fracture of base of skull, right side, 7thG|Fracture of base of skull, right side, 7thG +C4269233|T037|PT|S02.101G|ICD10CM|Fracture of base of skull, right side, subsequent encounter for fracture with delayed healing|Fracture of base of skull, right side, subsequent encounter for fracture with delayed healing +C4269234|T037|AB|S02.101K|ICD10CM|Fracture of base of skull, right side, 7thK|Fracture of base of skull, right side, 7thK +C4269234|T037|PT|S02.101K|ICD10CM|Fracture of base of skull, right side, subsequent encounter for fracture with nonunion|Fracture of base of skull, right side, subsequent encounter for fracture with nonunion +C4269235|T037|AB|S02.101S|ICD10CM|Fracture of base of skull, right side, sequela|Fracture of base of skull, right side, sequela +C4269235|T037|PT|S02.101S|ICD10CM|Fracture of base of skull, right side, sequela|Fracture of base of skull, right side, sequela +C4269236|T037|AB|S02.102|ICD10CM|Fracture of base of skull, left side|Fracture of base of skull, left side +C4269236|T037|HT|S02.102|ICD10CM|Fracture of base of skull, left side|Fracture of base of skull, left side +C4269237|T037|AB|S02.102A|ICD10CM|Fracture of base of skull, left side, init|Fracture of base of skull, left side, init +C4269237|T037|PT|S02.102A|ICD10CM|Fracture of base of skull, left side, initial encounter for closed fracture|Fracture of base of skull, left side, initial encounter for closed fracture +C4269238|T037|AB|S02.102B|ICD10CM|Fracture of base of skull, left side, 7thB|Fracture of base of skull, left side, 7thB +C4269238|T037|PT|S02.102B|ICD10CM|Fracture of base of skull, left side, initial encounter for open fracture|Fracture of base of skull, left side, initial encounter for open fracture +C4269239|T037|AB|S02.102D|ICD10CM|Fracture of base of skull, left side, 7thD|Fracture of base of skull, left side, 7thD +C4269239|T037|PT|S02.102D|ICD10CM|Fracture of base of skull, left side, subsequent encounter for fracture with routine healing|Fracture of base of skull, left side, subsequent encounter for fracture with routine healing +C4269240|T037|AB|S02.102G|ICD10CM|Fracture of base of skull, left side, 7thG|Fracture of base of skull, left side, 7thG +C4269240|T037|PT|S02.102G|ICD10CM|Fracture of base of skull, left side, subsequent encounter for fracture with delayed healing|Fracture of base of skull, left side, subsequent encounter for fracture with delayed healing +C4269241|T037|AB|S02.102K|ICD10CM|Fracture of base of skull, left side, 7thK|Fracture of base of skull, left side, 7thK +C4269241|T037|PT|S02.102K|ICD10CM|Fracture of base of skull, left side, subsequent encounter for fracture with nonunion|Fracture of base of skull, left side, subsequent encounter for fracture with nonunion +C4269242|T037|AB|S02.102S|ICD10CM|Fracture of base of skull, left side, sequela|Fracture of base of skull, left side, sequela +C4269242|T037|PT|S02.102S|ICD10CM|Fracture of base of skull, left side, sequela|Fracture of base of skull, left side, sequela +C4269243|T037|AB|S02.109|ICD10CM|Fracture of base of skull, unspecified side|Fracture of base of skull, unspecified side +C4269243|T037|HT|S02.109|ICD10CM|Fracture of base of skull, unspecified side|Fracture of base of skull, unspecified side +C4269244|T037|AB|S02.109A|ICD10CM|Fracture of base of skull, unspecified side, init|Fracture of base of skull, unspecified side, init +C4269244|T037|PT|S02.109A|ICD10CM|Fracture of base of skull, unspecified side, initial encounter for closed fracture|Fracture of base of skull, unspecified side, initial encounter for closed fracture +C4269245|T037|AB|S02.109B|ICD10CM|Fracture of base of skull, unspecified side, 7thB|Fracture of base of skull, unspecified side, 7thB +C4269245|T037|PT|S02.109B|ICD10CM|Fracture of base of skull, unspecified side, initial encounter for open fracture|Fracture of base of skull, unspecified side, initial encounter for open fracture +C4269246|T037|AB|S02.109D|ICD10CM|Fracture of base of skull, unspecified side, 7thD|Fracture of base of skull, unspecified side, 7thD +C4269246|T037|PT|S02.109D|ICD10CM|Fracture of base of skull, unspecified side, subsequent encounter for fracture with routine healing|Fracture of base of skull, unspecified side, subsequent encounter for fracture with routine healing +C4269247|T037|AB|S02.109G|ICD10CM|Fracture of base of skull, unspecified side, 7thG|Fracture of base of skull, unspecified side, 7thG +C4269247|T037|PT|S02.109G|ICD10CM|Fracture of base of skull, unspecified side, subsequent encounter for fracture with delayed healing|Fracture of base of skull, unspecified side, subsequent encounter for fracture with delayed healing +C4269248|T037|AB|S02.109K|ICD10CM|Fracture of base of skull, unspecified side, 7thK|Fracture of base of skull, unspecified side, 7thK +C4269248|T037|PT|S02.109K|ICD10CM|Fracture of base of skull, unspecified side, subsequent encounter for fracture with nonunion|Fracture of base of skull, unspecified side, subsequent encounter for fracture with nonunion +C4269249|T037|AB|S02.109S|ICD10CM|Fracture of base of skull, unspecified side, sequela|Fracture of base of skull, unspecified side, sequela +C4269249|T037|PT|S02.109S|ICD10CM|Fracture of base of skull, unspecified side, sequela|Fracture of base of skull, unspecified side, sequela +C1397756|T037|AB|S02.11|ICD10CM|Fracture of occiput|Fracture of occiput +C1397756|T037|HT|S02.11|ICD10CM|Fracture of occiput|Fracture of occiput +C4269250|T037|AB|S02.110|ICD10CM|Type I occipital condyle fracture, unspecified side|Type I occipital condyle fracture, unspecified side +C4269250|T037|HT|S02.110|ICD10CM|Type I occipital condyle fracture, unspecified side|Type I occipital condyle fracture, unspecified side +C4269251|T037|AB|S02.110A|ICD10CM|Type I occipital condyle fracture, unspecified side, init|Type I occipital condyle fracture, unspecified side, init +C4269251|T037|PT|S02.110A|ICD10CM|Type I occipital condyle fracture, unspecified side, initial encounter for closed fracture|Type I occipital condyle fracture, unspecified side, initial encounter for closed fracture +C4269252|T037|AB|S02.110B|ICD10CM|Type I occipital condyle fracture, unspecified side, 7thB|Type I occipital condyle fracture, unspecified side, 7thB +C4269252|T037|PT|S02.110B|ICD10CM|Type I occipital condyle fracture, unspecified side, initial encounter for open fracture|Type I occipital condyle fracture, unspecified side, initial encounter for open fracture +C4269253|T037|AB|S02.110D|ICD10CM|Type I occipital condyle fracture, unspecified side, 7thD|Type I occipital condyle fracture, unspecified side, 7thD +C4269254|T037|AB|S02.110G|ICD10CM|Type I occipital condyle fracture, unspecified side, 7thG|Type I occipital condyle fracture, unspecified side, 7thG +C4269255|T037|AB|S02.110K|ICD10CM|Type I occipital condyle fracture, unspecified side, 7thK|Type I occipital condyle fracture, unspecified side, 7thK +C4269255|T037|PT|S02.110K|ICD10CM|Type I occipital condyle fracture, unspecified side, subsequent encounter for fracture with nonunion|Type I occipital condyle fracture, unspecified side, subsequent encounter for fracture with nonunion +C4269256|T037|AB|S02.110S|ICD10CM|Type I occipital condyle fracture, unspecified side, sequela|Type I occipital condyle fracture, unspecified side, sequela +C4269256|T037|PT|S02.110S|ICD10CM|Type I occipital condyle fracture, unspecified side, sequela|Type I occipital condyle fracture, unspecified side, sequela +C4269257|T037|AB|S02.111|ICD10CM|Type II occipital condyle fracture, unspecified side|Type II occipital condyle fracture, unspecified side +C4269257|T037|HT|S02.111|ICD10CM|Type II occipital condyle fracture, unspecified side|Type II occipital condyle fracture, unspecified side +C4269258|T037|AB|S02.111A|ICD10CM|Type II occipital condyle fracture, unspecified side, init|Type II occipital condyle fracture, unspecified side, init +C4269258|T037|PT|S02.111A|ICD10CM|Type II occipital condyle fracture, unspecified side, initial encounter for closed fracture|Type II occipital condyle fracture, unspecified side, initial encounter for closed fracture +C4269259|T037|AB|S02.111B|ICD10CM|Type II occipital condyle fracture, unspecified side, 7thB|Type II occipital condyle fracture, unspecified side, 7thB +C4269259|T037|PT|S02.111B|ICD10CM|Type II occipital condyle fracture, unspecified side, initial encounter for open fracture|Type II occipital condyle fracture, unspecified side, initial encounter for open fracture +C4269260|T037|AB|S02.111D|ICD10CM|Type II occipital condyle fracture, unspecified side, 7thD|Type II occipital condyle fracture, unspecified side, 7thD +C4269261|T037|AB|S02.111G|ICD10CM|Type II occipital condyle fracture, unspecified side, 7thG|Type II occipital condyle fracture, unspecified side, 7thG +C4269262|T037|AB|S02.111K|ICD10CM|Type II occipital condyle fracture, unspecified side, 7thK|Type II occipital condyle fracture, unspecified side, 7thK +C4269263|T037|AB|S02.111S|ICD10CM|Type II occipital condyle fracture, unsp side, sequela|Type II occipital condyle fracture, unsp side, sequela +C4269263|T037|PT|S02.111S|ICD10CM|Type II occipital condyle fracture, unspecified side, sequela|Type II occipital condyle fracture, unspecified side, sequela +C4269264|T037|AB|S02.112|ICD10CM|Type III occipital condyle fracture, unspecified side|Type III occipital condyle fracture, unspecified side +C4269264|T037|HT|S02.112|ICD10CM|Type III occipital condyle fracture, unspecified side|Type III occipital condyle fracture, unspecified side +C4269265|T037|AB|S02.112A|ICD10CM|Type III occipital condyle fracture, unspecified side, init|Type III occipital condyle fracture, unspecified side, init +C4269265|T037|PT|S02.112A|ICD10CM|Type III occipital condyle fracture, unspecified side, initial encounter for closed fracture|Type III occipital condyle fracture, unspecified side, initial encounter for closed fracture +C4269266|T037|AB|S02.112B|ICD10CM|Type III occipital condyle fracture, unspecified side, 7thB|Type III occipital condyle fracture, unspecified side, 7thB +C4269266|T037|PT|S02.112B|ICD10CM|Type III occipital condyle fracture, unspecified side, initial encounter for open fracture|Type III occipital condyle fracture, unspecified side, initial encounter for open fracture +C4269267|T037|AB|S02.112D|ICD10CM|Type III occipital condyle fracture, unspecified side, 7thD|Type III occipital condyle fracture, unspecified side, 7thD +C4269268|T037|AB|S02.112G|ICD10CM|Type III occipital condyle fracture, unspecified side, 7thG|Type III occipital condyle fracture, unspecified side, 7thG +C4269269|T037|AB|S02.112K|ICD10CM|Type III occipital condyle fracture, unspecified side, 7thK|Type III occipital condyle fracture, unspecified side, 7thK +C4269270|T037|AB|S02.112S|ICD10CM|Type III occipital condyle fracture, unsp side, sequela|Type III occipital condyle fracture, unsp side, sequela +C4269270|T037|PT|S02.112S|ICD10CM|Type III occipital condyle fracture, unspecified side, sequela|Type III occipital condyle fracture, unspecified side, sequela +C2831428|T037|AB|S02.113|ICD10CM|Unspecified occipital condyle fracture|Unspecified occipital condyle fracture +C2831428|T037|HT|S02.113|ICD10CM|Unspecified occipital condyle fracture|Unspecified occipital condyle fracture +C2831429|T037|AB|S02.113A|ICD10CM|Unsp occipital condyle fracture, init for clos fx|Unsp occipital condyle fracture, init for clos fx +C2831429|T037|PT|S02.113A|ICD10CM|Unspecified occipital condyle fracture, initial encounter for closed fracture|Unspecified occipital condyle fracture, initial encounter for closed fracture +C2831430|T037|AB|S02.113B|ICD10CM|Unsp occipital condyle fracture, init for opn fx|Unsp occipital condyle fracture, init for opn fx +C2831430|T037|PT|S02.113B|ICD10CM|Unspecified occipital condyle fracture, initial encounter for open fracture|Unspecified occipital condyle fracture, initial encounter for open fracture +C2831431|T037|AB|S02.113D|ICD10CM|Unsp occipital condyle fracture, subs for fx w routn heal|Unsp occipital condyle fracture, subs for fx w routn heal +C2831431|T037|PT|S02.113D|ICD10CM|Unspecified occipital condyle fracture, subsequent encounter for fracture with routine healing|Unspecified occipital condyle fracture, subsequent encounter for fracture with routine healing +C2831432|T037|AB|S02.113G|ICD10CM|Unsp occipital condyle fracture, subs for fx w delay heal|Unsp occipital condyle fracture, subs for fx w delay heal +C2831432|T037|PT|S02.113G|ICD10CM|Unspecified occipital condyle fracture, subsequent encounter for fracture with delayed healing|Unspecified occipital condyle fracture, subsequent encounter for fracture with delayed healing +C2831433|T037|AB|S02.113K|ICD10CM|Unsp occipital condyle fracture, subs for fx w nonunion|Unsp occipital condyle fracture, subs for fx w nonunion +C2831433|T037|PT|S02.113K|ICD10CM|Unspecified occipital condyle fracture, subsequent encounter for fracture with nonunion|Unspecified occipital condyle fracture, subsequent encounter for fracture with nonunion +C2831434|T037|AB|S02.113S|ICD10CM|Unspecified occipital condyle fracture, sequela|Unspecified occipital condyle fracture, sequela +C2831434|T037|PT|S02.113S|ICD10CM|Unspecified occipital condyle fracture, sequela|Unspecified occipital condyle fracture, sequela +C4269271|T037|AB|S02.118|ICD10CM|Other fracture of occiput, unspecified side|Other fracture of occiput, unspecified side +C4269271|T037|HT|S02.118|ICD10CM|Other fracture of occiput, unspecified side|Other fracture of occiput, unspecified side +C4269272|T037|AB|S02.118A|ICD10CM|Other fracture of occiput, unspecified side, init|Other fracture of occiput, unspecified side, init +C4269272|T037|PT|S02.118A|ICD10CM|Other fracture of occiput, unspecified side, initial encounter for closed fracture|Other fracture of occiput, unspecified side, initial encounter for closed fracture +C4269273|T037|AB|S02.118B|ICD10CM|Other fracture of occiput, unspecified side, 7thB|Other fracture of occiput, unspecified side, 7thB +C4269273|T037|PT|S02.118B|ICD10CM|Other fracture of occiput, unspecified side, initial encounter for open fracture|Other fracture of occiput, unspecified side, initial encounter for open fracture +C4269274|T037|AB|S02.118D|ICD10CM|Other fracture of occiput, unspecified side, 7thD|Other fracture of occiput, unspecified side, 7thD +C4269274|T037|PT|S02.118D|ICD10CM|Other fracture of occiput, unspecified side, subsequent encounter for fracture with routine healing|Other fracture of occiput, unspecified side, subsequent encounter for fracture with routine healing +C4269275|T037|AB|S02.118G|ICD10CM|Other fracture of occiput, unspecified side, 7thG|Other fracture of occiput, unspecified side, 7thG +C4269275|T037|PT|S02.118G|ICD10CM|Other fracture of occiput, unspecified side, subsequent encounter for fracture with delayed healing|Other fracture of occiput, unspecified side, subsequent encounter for fracture with delayed healing +C4269276|T037|AB|S02.118K|ICD10CM|Other fracture of occiput, unspecified side, 7thK|Other fracture of occiput, unspecified side, 7thK +C4269276|T037|PT|S02.118K|ICD10CM|Other fracture of occiput, unspecified side, subsequent encounter for fracture with nonunion|Other fracture of occiput, unspecified side, subsequent encounter for fracture with nonunion +C4269277|T037|AB|S02.118S|ICD10CM|Other fracture of occiput, unspecified side, sequela|Other fracture of occiput, unspecified side, sequela +C4269277|T037|PT|S02.118S|ICD10CM|Other fracture of occiput, unspecified side, sequela|Other fracture of occiput, unspecified side, sequela +C2831442|T037|AB|S02.119|ICD10CM|Unspecified fracture of occiput|Unspecified fracture of occiput +C2831442|T037|HT|S02.119|ICD10CM|Unspecified fracture of occiput|Unspecified fracture of occiput +C2831443|T037|AB|S02.119A|ICD10CM|Unsp fracture of occiput, init encntr for closed fracture|Unsp fracture of occiput, init encntr for closed fracture +C2831443|T037|PT|S02.119A|ICD10CM|Unspecified fracture of occiput, initial encounter for closed fracture|Unspecified fracture of occiput, initial encounter for closed fracture +C2831444|T037|AB|S02.119B|ICD10CM|Unsp fracture of occiput, init encntr for open fracture|Unsp fracture of occiput, init encntr for open fracture +C2831444|T037|PT|S02.119B|ICD10CM|Unspecified fracture of occiput, initial encounter for open fracture|Unspecified fracture of occiput, initial encounter for open fracture +C2831445|T037|AB|S02.119D|ICD10CM|Unsp fracture of occiput, subs for fx w routn heal|Unsp fracture of occiput, subs for fx w routn heal +C2831445|T037|PT|S02.119D|ICD10CM|Unspecified fracture of occiput, subsequent encounter for fracture with routine healing|Unspecified fracture of occiput, subsequent encounter for fracture with routine healing +C2831446|T037|AB|S02.119G|ICD10CM|Unsp fracture of occiput, subs for fx w delay heal|Unsp fracture of occiput, subs for fx w delay heal +C2831446|T037|PT|S02.119G|ICD10CM|Unspecified fracture of occiput, subsequent encounter for fracture with delayed healing|Unspecified fracture of occiput, subsequent encounter for fracture with delayed healing +C2831447|T037|AB|S02.119K|ICD10CM|Unsp fracture of occiput, subs for fx w nonunion|Unsp fracture of occiput, subs for fx w nonunion +C2831447|T037|PT|S02.119K|ICD10CM|Unspecified fracture of occiput, subsequent encounter for fracture with nonunion|Unspecified fracture of occiput, subsequent encounter for fracture with nonunion +C2831448|T037|AB|S02.119S|ICD10CM|Unspecified fracture of occiput, sequela|Unspecified fracture of occiput, sequela +C2831448|T037|PT|S02.119S|ICD10CM|Unspecified fracture of occiput, sequela|Unspecified fracture of occiput, sequela +C4269278|T037|AB|S02.11A|ICD10CM|Type I occipital condyle fracture, right side|Type I occipital condyle fracture, right side +C4269278|T037|HT|S02.11A|ICD10CM|Type I occipital condyle fracture, right side|Type I occipital condyle fracture, right side +C4269279|T037|AB|S02.11AA|ICD10CM|Type I occipital condyle fracture, right side, init|Type I occipital condyle fracture, right side, init +C4269279|T037|PT|S02.11AA|ICD10CM|Type I occipital condyle fracture, right side, initial encounter for closed fracture|Type I occipital condyle fracture, right side, initial encounter for closed fracture +C4269280|T037|AB|S02.11AB|ICD10CM|Type I occipital condyle fracture, right side, 7thB|Type I occipital condyle fracture, right side, 7thB +C4269280|T037|PT|S02.11AB|ICD10CM|Type I occipital condyle fracture, right side, initial encounter for open fracture|Type I occipital condyle fracture, right side, initial encounter for open fracture +C4269281|T037|AB|S02.11AD|ICD10CM|Type I occipital condyle fracture, right side, 7thD|Type I occipital condyle fracture, right side, 7thD +C4269282|T037|AB|S02.11AG|ICD10CM|Type I occipital condyle fracture, right side, 7thG|Type I occipital condyle fracture, right side, 7thG +C4269283|T037|AB|S02.11AK|ICD10CM|Type I occipital condyle fracture, right side, 7thK|Type I occipital condyle fracture, right side, 7thK +C4269283|T037|PT|S02.11AK|ICD10CM|Type I occipital condyle fracture, right side, subsequent encounter for fracture with nonunion|Type I occipital condyle fracture, right side, subsequent encounter for fracture with nonunion +C4269284|T037|AB|S02.11AS|ICD10CM|Type I occipital condyle fracture, right side, sequela|Type I occipital condyle fracture, right side, sequela +C4269284|T037|PT|S02.11AS|ICD10CM|Type I occipital condyle fracture, right side, sequela|Type I occipital condyle fracture, right side, sequela +C4269285|T037|AB|S02.11B|ICD10CM|Type I occipital condyle fracture, left side|Type I occipital condyle fracture, left side +C4269285|T037|HT|S02.11B|ICD10CM|Type I occipital condyle fracture, left side|Type I occipital condyle fracture, left side +C4269286|T037|AB|S02.11BA|ICD10CM|Type I occipital condyle fracture, left side, init|Type I occipital condyle fracture, left side, init +C4269286|T037|PT|S02.11BA|ICD10CM|Type I occipital condyle fracture, left side, initial encounter for closed fracture|Type I occipital condyle fracture, left side, initial encounter for closed fracture +C4269287|T037|AB|S02.11BB|ICD10CM|Type I occipital condyle fracture, left side, 7thB|Type I occipital condyle fracture, left side, 7thB +C4269287|T037|PT|S02.11BB|ICD10CM|Type I occipital condyle fracture, left side, initial encounter for open fracture|Type I occipital condyle fracture, left side, initial encounter for open fracture +C4269288|T037|AB|S02.11BD|ICD10CM|Type I occipital condyle fracture, left side, 7thD|Type I occipital condyle fracture, left side, 7thD +C4269288|T037|PT|S02.11BD|ICD10CM|Type I occipital condyle fracture, left side, subsequent encounter for fracture with routine healing|Type I occipital condyle fracture, left side, subsequent encounter for fracture with routine healing +C4269289|T037|AB|S02.11BG|ICD10CM|Type I occipital condyle fracture, left side, 7thG|Type I occipital condyle fracture, left side, 7thG +C4269289|T037|PT|S02.11BG|ICD10CM|Type I occipital condyle fracture, left side, subsequent encounter for fracture with delayed healing|Type I occipital condyle fracture, left side, subsequent encounter for fracture with delayed healing +C4269290|T037|AB|S02.11BK|ICD10CM|Type I occipital condyle fracture, left side, 7thK|Type I occipital condyle fracture, left side, 7thK +C4269290|T037|PT|S02.11BK|ICD10CM|Type I occipital condyle fracture, left side, subsequent encounter for fracture with nonunion|Type I occipital condyle fracture, left side, subsequent encounter for fracture with nonunion +C4269291|T037|AB|S02.11BS|ICD10CM|Type I occipital condyle fracture, left side, sequela|Type I occipital condyle fracture, left side, sequela +C4269291|T037|PT|S02.11BS|ICD10CM|Type I occipital condyle fracture, left side, sequela|Type I occipital condyle fracture, left side, sequela +C4269292|T037|AB|S02.11C|ICD10CM|Type II occipital condyle fracture, right side|Type II occipital condyle fracture, right side +C4269292|T037|HT|S02.11C|ICD10CM|Type II occipital condyle fracture, right side|Type II occipital condyle fracture, right side +C4269293|T037|AB|S02.11CA|ICD10CM|Type II occipital condyle fracture, right side, init|Type II occipital condyle fracture, right side, init +C4269293|T037|PT|S02.11CA|ICD10CM|Type II occipital condyle fracture, right side, initial encounter for closed fracture|Type II occipital condyle fracture, right side, initial encounter for closed fracture +C4269294|T037|AB|S02.11CB|ICD10CM|Type II occipital condyle fracture, right side, 7thB|Type II occipital condyle fracture, right side, 7thB +C4269294|T037|PT|S02.11CB|ICD10CM|Type II occipital condyle fracture, right side, initial encounter for open fracture|Type II occipital condyle fracture, right side, initial encounter for open fracture +C4269295|T037|AB|S02.11CD|ICD10CM|Type II occipital condyle fracture, right side, 7thD|Type II occipital condyle fracture, right side, 7thD +C4269296|T037|AB|S02.11CG|ICD10CM|Type II occipital condyle fracture, right side, 7thG|Type II occipital condyle fracture, right side, 7thG +C4269297|T037|AB|S02.11CK|ICD10CM|Type II occipital condyle fracture, right side, 7thK|Type II occipital condyle fracture, right side, 7thK +C4269297|T037|PT|S02.11CK|ICD10CM|Type II occipital condyle fracture, right side, subsequent encounter for fracture with nonunion|Type II occipital condyle fracture, right side, subsequent encounter for fracture with nonunion +C4269298|T037|AB|S02.11CS|ICD10CM|Type II occipital condyle fracture, right side, sequela|Type II occipital condyle fracture, right side, sequela +C4269298|T037|PT|S02.11CS|ICD10CM|Type II occipital condyle fracture, right side, sequela|Type II occipital condyle fracture, right side, sequela +C4269299|T037|AB|S02.11D|ICD10CM|Type II occipital condyle fracture, left side|Type II occipital condyle fracture, left side +C4269299|T037|HT|S02.11D|ICD10CM|Type II occipital condyle fracture, left side|Type II occipital condyle fracture, left side +C4269300|T037|AB|S02.11DA|ICD10CM|Type II occipital condyle fracture, left side, init|Type II occipital condyle fracture, left side, init +C4269300|T037|PT|S02.11DA|ICD10CM|Type II occipital condyle fracture, left side, initial encounter for closed fracture|Type II occipital condyle fracture, left side, initial encounter for closed fracture +C4269301|T037|AB|S02.11DB|ICD10CM|Type II occipital condyle fracture, left side, 7thB|Type II occipital condyle fracture, left side, 7thB +C4269301|T037|PT|S02.11DB|ICD10CM|Type II occipital condyle fracture, left side, initial encounter for open fracture|Type II occipital condyle fracture, left side, initial encounter for open fracture +C4269302|T037|AB|S02.11DD|ICD10CM|Type II occipital condyle fracture, left side, 7thD|Type II occipital condyle fracture, left side, 7thD +C4269303|T037|AB|S02.11DG|ICD10CM|Type II occipital condyle fracture, left side, 7thG|Type II occipital condyle fracture, left side, 7thG +C4269304|T037|AB|S02.11DK|ICD10CM|Type II occipital condyle fracture, left side, 7thK|Type II occipital condyle fracture, left side, 7thK +C4269304|T037|PT|S02.11DK|ICD10CM|Type II occipital condyle fracture, left side, subsequent encounter for fracture with nonunion|Type II occipital condyle fracture, left side, subsequent encounter for fracture with nonunion +C4269305|T037|AB|S02.11DS|ICD10CM|Type II occipital condyle fracture, left side, sequela|Type II occipital condyle fracture, left side, sequela +C4269305|T037|PT|S02.11DS|ICD10CM|Type II occipital condyle fracture, left side, sequela|Type II occipital condyle fracture, left side, sequela +C4269306|T037|AB|S02.11E|ICD10CM|Type III occipital condyle fracture, right side|Type III occipital condyle fracture, right side +C4269306|T037|HT|S02.11E|ICD10CM|Type III occipital condyle fracture, right side|Type III occipital condyle fracture, right side +C4269307|T037|AB|S02.11EA|ICD10CM|Type III occipital condyle fracture, right side, init|Type III occipital condyle fracture, right side, init +C4269307|T037|PT|S02.11EA|ICD10CM|Type III occipital condyle fracture, right side, initial encounter for closed fracture|Type III occipital condyle fracture, right side, initial encounter for closed fracture +C4269308|T037|AB|S02.11EB|ICD10CM|Type III occipital condyle fracture, right side, 7thB|Type III occipital condyle fracture, right side, 7thB +C4269308|T037|PT|S02.11EB|ICD10CM|Type III occipital condyle fracture, right side, initial encounter for open fracture|Type III occipital condyle fracture, right side, initial encounter for open fracture +C4269309|T037|AB|S02.11ED|ICD10CM|Type III occipital condyle fracture, right side, 7thD|Type III occipital condyle fracture, right side, 7thD +C4269310|T037|AB|S02.11EG|ICD10CM|Type III occipital condyle fracture, right side, 7thG|Type III occipital condyle fracture, right side, 7thG +C4269311|T037|AB|S02.11EK|ICD10CM|Type III occipital condyle fracture, right side, 7thK|Type III occipital condyle fracture, right side, 7thK +C4269311|T037|PT|S02.11EK|ICD10CM|Type III occipital condyle fracture, right side, subsequent encounter for fracture with nonunion|Type III occipital condyle fracture, right side, subsequent encounter for fracture with nonunion +C4269312|T037|AB|S02.11ES|ICD10CM|Type III occipital condyle fracture, right side, sequela|Type III occipital condyle fracture, right side, sequela +C4269312|T037|PT|S02.11ES|ICD10CM|Type III occipital condyle fracture, right side, sequela|Type III occipital condyle fracture, right side, sequela +C4269313|T037|AB|S02.11F|ICD10CM|Type III occipital condyle fracture, left side|Type III occipital condyle fracture, left side +C4269313|T037|HT|S02.11F|ICD10CM|Type III occipital condyle fracture, left side|Type III occipital condyle fracture, left side +C4269314|T037|AB|S02.11FA|ICD10CM|Type III occipital condyle fracture, left side, init|Type III occipital condyle fracture, left side, init +C4269314|T037|PT|S02.11FA|ICD10CM|Type III occipital condyle fracture, left side, initial encounter for closed fracture|Type III occipital condyle fracture, left side, initial encounter for closed fracture +C4269315|T037|AB|S02.11FB|ICD10CM|Type III occipital condyle fracture, left side, 7thB|Type III occipital condyle fracture, left side, 7thB +C4269315|T037|PT|S02.11FB|ICD10CM|Type III occipital condyle fracture, left side, initial encounter for open fracture|Type III occipital condyle fracture, left side, initial encounter for open fracture +C4269316|T037|AB|S02.11FD|ICD10CM|Type III occipital condyle fracture, left side, 7thD|Type III occipital condyle fracture, left side, 7thD +C4269317|T037|AB|S02.11FG|ICD10CM|Type III occipital condyle fracture, left side, 7thG|Type III occipital condyle fracture, left side, 7thG +C4269318|T037|AB|S02.11FK|ICD10CM|Type III occipital condyle fracture, left side, 7thK|Type III occipital condyle fracture, left side, 7thK +C4269318|T037|PT|S02.11FK|ICD10CM|Type III occipital condyle fracture, left side, subsequent encounter for fracture with nonunion|Type III occipital condyle fracture, left side, subsequent encounter for fracture with nonunion +C4269319|T037|AB|S02.11FS|ICD10CM|Type III occipital condyle fracture, left side, sequela|Type III occipital condyle fracture, left side, sequela +C4269319|T037|PT|S02.11FS|ICD10CM|Type III occipital condyle fracture, left side, sequela|Type III occipital condyle fracture, left side, sequela +C4269320|T037|AB|S02.11G|ICD10CM|Other fracture of occiput, right side|Other fracture of occiput, right side +C4269320|T037|HT|S02.11G|ICD10CM|Other fracture of occiput, right side|Other fracture of occiput, right side +C4269321|T037|AB|S02.11GA|ICD10CM|Other fracture of occiput, right side, init|Other fracture of occiput, right side, init +C4269321|T037|PT|S02.11GA|ICD10CM|Other fracture of occiput, right side, initial encounter for closed fracture|Other fracture of occiput, right side, initial encounter for closed fracture +C4269322|T037|AB|S02.11GB|ICD10CM|Other fracture of occiput, right side, 7thB|Other fracture of occiput, right side, 7thB +C4269322|T037|PT|S02.11GB|ICD10CM|Other fracture of occiput, right side, initial encounter for open fracture|Other fracture of occiput, right side, initial encounter for open fracture +C4269323|T037|AB|S02.11GD|ICD10CM|Other fracture of occiput, right side, 7thD|Other fracture of occiput, right side, 7thD +C4269323|T037|PT|S02.11GD|ICD10CM|Other fracture of occiput, right side, subsequent encounter for fracture with routine healing|Other fracture of occiput, right side, subsequent encounter for fracture with routine healing +C4269324|T037|AB|S02.11GG|ICD10CM|Other fracture of occiput, right side, 7thG|Other fracture of occiput, right side, 7thG +C4269324|T037|PT|S02.11GG|ICD10CM|Other fracture of occiput, right side, subsequent encounter for fracture with delayed healing|Other fracture of occiput, right side, subsequent encounter for fracture with delayed healing +C4269325|T037|AB|S02.11GK|ICD10CM|Other fracture of occiput, right side, 7thK|Other fracture of occiput, right side, 7thK +C4269325|T037|PT|S02.11GK|ICD10CM|Other fracture of occiput, right side, subsequent encounter for fracture with nonunion|Other fracture of occiput, right side, subsequent encounter for fracture with nonunion +C4269326|T037|AB|S02.11GS|ICD10CM|Other fracture of occiput, right side, sequela|Other fracture of occiput, right side, sequela +C4269326|T037|PT|S02.11GS|ICD10CM|Other fracture of occiput, right side, sequela|Other fracture of occiput, right side, sequela +C4269327|T037|AB|S02.11H|ICD10CM|Other fracture of occiput, left side|Other fracture of occiput, left side +C4269327|T037|HT|S02.11H|ICD10CM|Other fracture of occiput, left side|Other fracture of occiput, left side +C4269328|T037|AB|S02.11HA|ICD10CM|Other fracture of occiput, left side, init|Other fracture of occiput, left side, init +C4269328|T037|PT|S02.11HA|ICD10CM|Other fracture of occiput, left side, initial encounter for closed fracture|Other fracture of occiput, left side, initial encounter for closed fracture +C4269329|T037|AB|S02.11HB|ICD10CM|Other fracture of occiput, left side, 7thB|Other fracture of occiput, left side, 7thB +C4269329|T037|PT|S02.11HB|ICD10CM|Other fracture of occiput, left side, initial encounter for open fracture|Other fracture of occiput, left side, initial encounter for open fracture +C4269330|T037|AB|S02.11HD|ICD10CM|Other fracture of occiput, left side, 7thD|Other fracture of occiput, left side, 7thD +C4269330|T037|PT|S02.11HD|ICD10CM|Other fracture of occiput, left side, subsequent encounter for fracture with routine healing|Other fracture of occiput, left side, subsequent encounter for fracture with routine healing +C4269331|T037|AB|S02.11HG|ICD10CM|Other fracture of occiput, left side, 7thG|Other fracture of occiput, left side, 7thG +C4269331|T037|PT|S02.11HG|ICD10CM|Other fracture of occiput, left side, subsequent encounter for fracture with delayed healing|Other fracture of occiput, left side, subsequent encounter for fracture with delayed healing +C4269332|T037|AB|S02.11HK|ICD10CM|Other fracture of occiput, left side, 7thK|Other fracture of occiput, left side, 7thK +C4269332|T037|PT|S02.11HK|ICD10CM|Other fracture of occiput, left side, subsequent encounter for fracture with nonunion|Other fracture of occiput, left side, subsequent encounter for fracture with nonunion +C4269333|T037|AB|S02.11HS|ICD10CM|Other fracture of occiput, left side, sequela|Other fracture of occiput, left side, sequela +C4269333|T037|PT|S02.11HS|ICD10CM|Other fracture of occiput, left side, sequela|Other fracture of occiput, left side, sequela +C0272458|T037|HT|S02.12|ICD10CM|Fracture of orbital roof|Fracture of orbital roof +C0272458|T037|AB|S02.12|ICD10CM|Fracture of orbital roof|Fracture of orbital roof +C5140896|T037|AB|S02.121|ICD10CM|Fracture of orbital roof, right side|Fracture of orbital roof, right side +C5140896|T037|HT|S02.121|ICD10CM|Fracture of orbital roof, right side|Fracture of orbital roof, right side +C5140897|T037|AB|S02.121A|ICD10CM|Fracture of orbital roof, right side, init|Fracture of orbital roof, right side, init +C5140897|T037|PT|S02.121A|ICD10CM|Fracture of orbital roof, right side, initial encounter for closed fracture|Fracture of orbital roof, right side, initial encounter for closed fracture +C5140898|T037|AB|S02.121B|ICD10CM|Fracture of orbital roof, right side, 7thB|Fracture of orbital roof, right side, 7thB +C5140898|T037|PT|S02.121B|ICD10CM|Fracture of orbital roof, right side, initial encounter for open fracture|Fracture of orbital roof, right side, initial encounter for open fracture +C5140899|T037|AB|S02.121D|ICD10CM|Fracture of orbital roof, right side, 7thD|Fracture of orbital roof, right side, 7thD +C5140899|T037|PT|S02.121D|ICD10CM|Fracture of orbital roof, right side, subsequent encounter for fracture with routine healing|Fracture of orbital roof, right side, subsequent encounter for fracture with routine healing +C5140900|T037|AB|S02.121G|ICD10CM|Fracture of orbital roof, right side, 7thG|Fracture of orbital roof, right side, 7thG +C5140900|T037|PT|S02.121G|ICD10CM|Fracture of orbital roof, right side, subsequent encounter for fracture with delayed healing|Fracture of orbital roof, right side, subsequent encounter for fracture with delayed healing +C5140901|T037|AB|S02.121K|ICD10CM|Fracture of orbital roof, right side, 7thK|Fracture of orbital roof, right side, 7thK +C5140901|T037|PT|S02.121K|ICD10CM|Fracture of orbital roof, right side, subsequent encounter for fracture with nonunion|Fracture of orbital roof, right side, subsequent encounter for fracture with nonunion +C5140902|T037|AB|S02.121S|ICD10CM|Fracture of orbital roof, right side, sequela|Fracture of orbital roof, right side, sequela +C5140902|T037|PT|S02.121S|ICD10CM|Fracture of orbital roof, right side, sequela|Fracture of orbital roof, right side, sequela +C5140903|T037|AB|S02.122|ICD10CM|Fracture of orbital roof, left side|Fracture of orbital roof, left side +C5140903|T037|HT|S02.122|ICD10CM|Fracture of orbital roof, left side|Fracture of orbital roof, left side +C5140904|T037|AB|S02.122A|ICD10CM|Fracture of orbital roof, left side, init|Fracture of orbital roof, left side, init +C5140904|T037|PT|S02.122A|ICD10CM|Fracture of orbital roof, left side, initial encounter for closed fracture|Fracture of orbital roof, left side, initial encounter for closed fracture +C5140905|T037|AB|S02.122B|ICD10CM|Fracture of orbital roof, left side, 7thB|Fracture of orbital roof, left side, 7thB +C5140905|T037|PT|S02.122B|ICD10CM|Fracture of orbital roof, left side, initial encounter for open fracture|Fracture of orbital roof, left side, initial encounter for open fracture +C5140906|T037|AB|S02.122D|ICD10CM|Fracture of orbital roof, left side, 7thD|Fracture of orbital roof, left side, 7thD +C5140906|T037|PT|S02.122D|ICD10CM|Fracture of orbital roof, left side, subsequent encounter for fracture with routine healing|Fracture of orbital roof, left side, subsequent encounter for fracture with routine healing +C5140907|T037|AB|S02.122G|ICD10CM|Fracture of orbital roof, left side, 7thG|Fracture of orbital roof, left side, 7thG +C5140907|T037|PT|S02.122G|ICD10CM|Fracture of orbital roof, left side, subsequent encounter for fracture with delayed healing|Fracture of orbital roof, left side, subsequent encounter for fracture with delayed healing +C5140908|T037|AB|S02.122K|ICD10CM|Fracture of orbital roof, left side, 7thK|Fracture of orbital roof, left side, 7thK +C5140908|T037|PT|S02.122K|ICD10CM|Fracture of orbital roof, left side, subsequent encounter for fracture with nonunion|Fracture of orbital roof, left side, subsequent encounter for fracture with nonunion +C5140909|T037|AB|S02.122S|ICD10CM|Fracture of orbital roof, left side, sequela|Fracture of orbital roof, left side, sequela +C5140909|T037|PT|S02.122S|ICD10CM|Fracture of orbital roof, left side, sequela|Fracture of orbital roof, left side, sequela +C5140910|T037|AB|S02.129|ICD10CM|Fracture of orbital roof, unspecified side|Fracture of orbital roof, unspecified side +C5140910|T037|HT|S02.129|ICD10CM|Fracture of orbital roof, unspecified side|Fracture of orbital roof, unspecified side +C5140911|T037|AB|S02.129A|ICD10CM|Fracture of orbital roof, unspecified side, init|Fracture of orbital roof, unspecified side, init +C5140911|T037|PT|S02.129A|ICD10CM|Fracture of orbital roof, unspecified side, initial encounter for closed fracture|Fracture of orbital roof, unspecified side, initial encounter for closed fracture +C5140912|T037|AB|S02.129B|ICD10CM|Fracture of orbital roof, unspecified side, 7thB|Fracture of orbital roof, unspecified side, 7thB +C5140912|T037|PT|S02.129B|ICD10CM|Fracture of orbital roof, unspecified side, initial encounter for open fracture|Fracture of orbital roof, unspecified side, initial encounter for open fracture +C5140913|T037|AB|S02.129D|ICD10CM|Fracture of orbital roof, unspecified side, 7thD|Fracture of orbital roof, unspecified side, 7thD +C5140913|T037|PT|S02.129D|ICD10CM|Fracture of orbital roof, unspecified side, subsequent encounter for fracture with routine healing|Fracture of orbital roof, unspecified side, subsequent encounter for fracture with routine healing +C5140914|T037|AB|S02.129G|ICD10CM|Fracture of orbital roof, unspecified side, 7thG|Fracture of orbital roof, unspecified side, 7thG +C5140914|T037|PT|S02.129G|ICD10CM|Fracture of orbital roof, unspecified side, subsequent encounter for fracture with delayed healing|Fracture of orbital roof, unspecified side, subsequent encounter for fracture with delayed healing +C5140915|T037|AB|S02.129K|ICD10CM|Fracture of orbital roof, unspecified side, 7thK|Fracture of orbital roof, unspecified side, 7thK +C5140915|T037|PT|S02.129K|ICD10CM|Fracture of orbital roof, unspecified side, subsequent encounter for fracture with nonunion|Fracture of orbital roof, unspecified side, subsequent encounter for fracture with nonunion +C5140916|T037|AB|S02.129S|ICD10CM|Fracture of orbital roof, unspecified side, sequela|Fracture of orbital roof, unspecified side, sequela +C5140916|T037|PT|S02.129S|ICD10CM|Fracture of orbital roof, unspecified side, sequela|Fracture of orbital roof, unspecified side, sequela +C2831449|T037|ET|S02.19|ICD10CM|Fracture of anterior fossa of base of skull|Fracture of anterior fossa of base of skull +C0272459|T037|ET|S02.19|ICD10CM|Fracture of ethmoid sinus|Fracture of ethmoid sinus +C0272460|T037|ET|S02.19|ICD10CM|Fracture of frontal sinus|Fracture of frontal sinus +C2831450|T037|ET|S02.19|ICD10CM|Fracture of middle fossa of base of skull|Fracture of middle fossa of base of skull +C2831451|T037|ET|S02.19|ICD10CM|Fracture of posterior fossa of base of skull|Fracture of posterior fossa of base of skull +C0272462|T037|ET|S02.19|ICD10CM|Fracture of sphenoid|Fracture of sphenoid +C0272461|T037|ET|S02.19|ICD10CM|Fracture of temporal bone|Fracture of temporal bone +C2831452|T037|AB|S02.19|ICD10CM|Other fracture of base of skull|Other fracture of base of skull +C2831452|T037|HT|S02.19|ICD10CM|Other fracture of base of skull|Other fracture of base of skull +C2831453|T037|AB|S02.19XA|ICD10CM|Oth fracture of base of skull, init for clos fx|Oth fracture of base of skull, init for clos fx +C2831453|T037|PT|S02.19XA|ICD10CM|Other fracture of base of skull, initial encounter for closed fracture|Other fracture of base of skull, initial encounter for closed fracture +C2831454|T037|AB|S02.19XB|ICD10CM|Oth fracture of base of skull, init encntr for open fracture|Oth fracture of base of skull, init encntr for open fracture +C2831454|T037|PT|S02.19XB|ICD10CM|Other fracture of base of skull, initial encounter for open fracture|Other fracture of base of skull, initial encounter for open fracture +C2831455|T037|AB|S02.19XD|ICD10CM|Oth fracture of base of skull, subs for fx w routn heal|Oth fracture of base of skull, subs for fx w routn heal +C2831455|T037|PT|S02.19XD|ICD10CM|Other fracture of base of skull, subsequent encounter for fracture with routine healing|Other fracture of base of skull, subsequent encounter for fracture with routine healing +C2831456|T037|AB|S02.19XG|ICD10CM|Oth fracture of base of skull, subs for fx w delay heal|Oth fracture of base of skull, subs for fx w delay heal +C2831456|T037|PT|S02.19XG|ICD10CM|Other fracture of base of skull, subsequent encounter for fracture with delayed healing|Other fracture of base of skull, subsequent encounter for fracture with delayed healing +C2831457|T037|AB|S02.19XK|ICD10CM|Oth fracture of base of skull, subs for fx w nonunion|Oth fracture of base of skull, subs for fx w nonunion +C2831457|T037|PT|S02.19XK|ICD10CM|Other fracture of base of skull, subsequent encounter for fracture with nonunion|Other fracture of base of skull, subsequent encounter for fracture with nonunion +C2831458|T037|AB|S02.19XS|ICD10CM|Other fracture of base of skull, sequela|Other fracture of base of skull, sequela +C2831458|T037|PT|S02.19XS|ICD10CM|Other fracture of base of skull, sequela|Other fracture of base of skull, sequela +C0339848|T037|HT|S02.2|ICD10CM|Fracture of nasal bones|Fracture of nasal bones +C0339848|T037|AB|S02.2|ICD10CM|Fracture of nasal bones|Fracture of nasal bones +C0339848|T037|PT|S02.2|ICD10|Fracture of nasal bones|Fracture of nasal bones +C2831459|T037|AB|S02.2XXA|ICD10CM|Fracture of nasal bones, init encntr for closed fracture|Fracture of nasal bones, init encntr for closed fracture +C2831459|T037|PT|S02.2XXA|ICD10CM|Fracture of nasal bones, initial encounter for closed fracture|Fracture of nasal bones, initial encounter for closed fracture +C2831460|T037|AB|S02.2XXB|ICD10CM|Fracture of nasal bones, initial encounter for open fracture|Fracture of nasal bones, initial encounter for open fracture +C2831460|T037|PT|S02.2XXB|ICD10CM|Fracture of nasal bones, initial encounter for open fracture|Fracture of nasal bones, initial encounter for open fracture +C2831461|T037|AB|S02.2XXD|ICD10CM|Fracture of nasal bones, subs for fx w routn heal|Fracture of nasal bones, subs for fx w routn heal +C2831461|T037|PT|S02.2XXD|ICD10CM|Fracture of nasal bones, subsequent encounter for fracture with routine healing|Fracture of nasal bones, subsequent encounter for fracture with routine healing +C2831462|T037|AB|S02.2XXG|ICD10CM|Fracture of nasal bones, subs for fx w delay heal|Fracture of nasal bones, subs for fx w delay heal +C2831462|T037|PT|S02.2XXG|ICD10CM|Fracture of nasal bones, subsequent encounter for fracture with delayed healing|Fracture of nasal bones, subsequent encounter for fracture with delayed healing +C2831463|T037|AB|S02.2XXK|ICD10CM|Fracture of nasal bones, subs encntr for fracture w nonunion|Fracture of nasal bones, subs encntr for fracture w nonunion +C2831463|T037|PT|S02.2XXK|ICD10CM|Fracture of nasal bones, subsequent encounter for fracture with nonunion|Fracture of nasal bones, subsequent encounter for fracture with nonunion +C2831464|T037|AB|S02.2XXS|ICD10CM|Fracture of nasal bones, sequela|Fracture of nasal bones, sequela +C2831464|T037|PT|S02.2XXS|ICD10CM|Fracture of nasal bones, sequela|Fracture of nasal bones, sequela +C5141164|T037|ET|S02.3|ICD10CM|Fracture of inferior orbital wall|Fracture of inferior orbital wall +C0149944|T037|PT|S02.3|ICD10|Fracture of orbital floor|Fracture of orbital floor +C0149944|T037|HT|S02.3|ICD10CM|Fracture of orbital floor|Fracture of orbital floor +C0149944|T037|AB|S02.3|ICD10CM|Fracture of orbital floor|Fracture of orbital floor +C4269334|T037|AB|S02.30|ICD10CM|Fracture of orbital floor, unspecified side|Fracture of orbital floor, unspecified side +C4269334|T037|HT|S02.30|ICD10CM|Fracture of orbital floor, unspecified side|Fracture of orbital floor, unspecified side +C4269335|T037|AB|S02.30XA|ICD10CM|Fracture of orbital floor, unspecified side, init|Fracture of orbital floor, unspecified side, init +C4269335|T037|PT|S02.30XA|ICD10CM|Fracture of orbital floor, unspecified side, initial encounter for closed fracture|Fracture of orbital floor, unspecified side, initial encounter for closed fracture +C4269336|T037|AB|S02.30XB|ICD10CM|Fracture of orbital floor, unspecified side, 7thB|Fracture of orbital floor, unspecified side, 7thB +C4269336|T037|PT|S02.30XB|ICD10CM|Fracture of orbital floor, unspecified side, initial encounter for open fracture|Fracture of orbital floor, unspecified side, initial encounter for open fracture +C4269337|T037|AB|S02.30XD|ICD10CM|Fracture of orbital floor, unspecified side, 7thD|Fracture of orbital floor, unspecified side, 7thD +C4269337|T037|PT|S02.30XD|ICD10CM|Fracture of orbital floor, unspecified side, subsequent encounter for fracture with routine healing|Fracture of orbital floor, unspecified side, subsequent encounter for fracture with routine healing +C4269338|T037|AB|S02.30XG|ICD10CM|Fracture of orbital floor, unspecified side, 7thG|Fracture of orbital floor, unspecified side, 7thG +C4269338|T037|PT|S02.30XG|ICD10CM|Fracture of orbital floor, unspecified side, subsequent encounter for fracture with delayed healing|Fracture of orbital floor, unspecified side, subsequent encounter for fracture with delayed healing +C4269339|T037|AB|S02.30XK|ICD10CM|Fracture of orbital floor, unspecified side, 7thK|Fracture of orbital floor, unspecified side, 7thK +C4269339|T037|PT|S02.30XK|ICD10CM|Fracture of orbital floor, unspecified side, subsequent encounter for fracture with nonunion|Fracture of orbital floor, unspecified side, subsequent encounter for fracture with nonunion +C4269340|T037|AB|S02.30XS|ICD10CM|Fracture of orbital floor, unspecified side, sequela|Fracture of orbital floor, unspecified side, sequela +C4269340|T037|PT|S02.30XS|ICD10CM|Fracture of orbital floor, unspecified side, sequela|Fracture of orbital floor, unspecified side, sequela +C4269341|T037|AB|S02.31|ICD10CM|Fracture of orbital floor, right side|Fracture of orbital floor, right side +C4269341|T037|HT|S02.31|ICD10CM|Fracture of orbital floor, right side|Fracture of orbital floor, right side +C4269342|T037|AB|S02.31XA|ICD10CM|Fracture of orbital floor, right side, init|Fracture of orbital floor, right side, init +C4269342|T037|PT|S02.31XA|ICD10CM|Fracture of orbital floor, right side, initial encounter for closed fracture|Fracture of orbital floor, right side, initial encounter for closed fracture +C4269343|T037|AB|S02.31XB|ICD10CM|Fracture of orbital floor, right side, 7thB|Fracture of orbital floor, right side, 7thB +C4269343|T037|PT|S02.31XB|ICD10CM|Fracture of orbital floor, right side, initial encounter for open fracture|Fracture of orbital floor, right side, initial encounter for open fracture +C4269344|T037|AB|S02.31XD|ICD10CM|Fracture of orbital floor, right side, 7thD|Fracture of orbital floor, right side, 7thD +C4269344|T037|PT|S02.31XD|ICD10CM|Fracture of orbital floor, right side, subsequent encounter for fracture with routine healing|Fracture of orbital floor, right side, subsequent encounter for fracture with routine healing +C4269345|T037|AB|S02.31XG|ICD10CM|Fracture of orbital floor, right side, 7thG|Fracture of orbital floor, right side, 7thG +C4269345|T037|PT|S02.31XG|ICD10CM|Fracture of orbital floor, right side, subsequent encounter for fracture with delayed healing|Fracture of orbital floor, right side, subsequent encounter for fracture with delayed healing +C4269346|T037|AB|S02.31XK|ICD10CM|Fracture of orbital floor, right side, 7thK|Fracture of orbital floor, right side, 7thK +C4269346|T037|PT|S02.31XK|ICD10CM|Fracture of orbital floor, right side, subsequent encounter for fracture with nonunion|Fracture of orbital floor, right side, subsequent encounter for fracture with nonunion +C4269347|T037|AB|S02.31XS|ICD10CM|Fracture of orbital floor, right side, sequela|Fracture of orbital floor, right side, sequela +C4269347|T037|PT|S02.31XS|ICD10CM|Fracture of orbital floor, right side, sequela|Fracture of orbital floor, right side, sequela +C4269348|T037|AB|S02.32|ICD10CM|Fracture of orbital floor, left side|Fracture of orbital floor, left side +C4269348|T037|HT|S02.32|ICD10CM|Fracture of orbital floor, left side|Fracture of orbital floor, left side +C4269349|T037|AB|S02.32XA|ICD10CM|Fracture of orbital floor, left side, init|Fracture of orbital floor, left side, init +C4269349|T037|PT|S02.32XA|ICD10CM|Fracture of orbital floor, left side, initial encounter for closed fracture|Fracture of orbital floor, left side, initial encounter for closed fracture +C4269350|T037|AB|S02.32XB|ICD10CM|Fracture of orbital floor, left side, 7thB|Fracture of orbital floor, left side, 7thB +C4269350|T037|PT|S02.32XB|ICD10CM|Fracture of orbital floor, left side, initial encounter for open fracture|Fracture of orbital floor, left side, initial encounter for open fracture +C4269351|T037|AB|S02.32XD|ICD10CM|Fracture of orbital floor, left side, 7thD|Fracture of orbital floor, left side, 7thD +C4269351|T037|PT|S02.32XD|ICD10CM|Fracture of orbital floor, left side, subsequent encounter for fracture with routine healing|Fracture of orbital floor, left side, subsequent encounter for fracture with routine healing +C4269352|T037|AB|S02.32XG|ICD10CM|Fracture of orbital floor, left side, 7thG|Fracture of orbital floor, left side, 7thG +C4269352|T037|PT|S02.32XG|ICD10CM|Fracture of orbital floor, left side, subsequent encounter for fracture with delayed healing|Fracture of orbital floor, left side, subsequent encounter for fracture with delayed healing +C4269353|T037|AB|S02.32XK|ICD10CM|Fracture of orbital floor, left side, 7thK|Fracture of orbital floor, left side, 7thK +C4269353|T037|PT|S02.32XK|ICD10CM|Fracture of orbital floor, left side, subsequent encounter for fracture with nonunion|Fracture of orbital floor, left side, subsequent encounter for fracture with nonunion +C4269354|T037|AB|S02.32XS|ICD10CM|Fracture of orbital floor, left side, sequela|Fracture of orbital floor, left side, sequela +C4269354|T037|PT|S02.32XS|ICD10CM|Fracture of orbital floor, left side, sequela|Fracture of orbital floor, left side, sequela +C0452078|T037|PT|S02.4|ICD10|Fracture of malar and maxillary bones|Fracture of malar and maxillary bones +C2831475|T037|AB|S02.4|ICD10CM|Fracture of malar, maxillary and zygoma bones|Fracture of malar, maxillary and zygoma bones +C2831475|T037|HT|S02.4|ICD10CM|Fracture of malar, maxillary and zygoma bones|Fracture of malar, maxillary and zygoma bones +C2831471|T037|ET|S02.4|ICD10CM|Fracture of superior maxilla|Fracture of superior maxilla +C2831472|T037|ET|S02.4|ICD10CM|Fracture of upper jaw (bone)|Fracture of upper jaw (bone) +C2831473|T037|ET|S02.4|ICD10CM|Fracture of zygomatic process of temporal bone|Fracture of zygomatic process of temporal bone +C2831475|T037|AB|S02.40|ICD10CM|Fracture of malar, maxillary and zygoma bones, unspecified|Fracture of malar, maxillary and zygoma bones, unspecified +C2831475|T037|HT|S02.40|ICD10CM|Fracture of malar, maxillary and zygoma bones, unspecified|Fracture of malar, maxillary and zygoma bones, unspecified +C4269355|T037|AB|S02.400|ICD10CM|Malar fracture, unspecified side|Malar fracture, unspecified side +C4269355|T037|HT|S02.400|ICD10CM|Malar fracture, unspecified side|Malar fracture, unspecified side +C4269356|T037|AB|S02.400A|ICD10CM|Malar fracture, unspecified side, init|Malar fracture, unspecified side, init +C4269356|T037|PT|S02.400A|ICD10CM|Malar fracture, unspecified side, initial encounter for closed fracture|Malar fracture, unspecified side, initial encounter for closed fracture +C4269357|T037|AB|S02.400B|ICD10CM|Malar fracture, unspecified side, 7thB|Malar fracture, unspecified side, 7thB +C4269357|T037|PT|S02.400B|ICD10CM|Malar fracture, unspecified side, initial encounter for open fracture|Malar fracture, unspecified side, initial encounter for open fracture +C4269358|T037|AB|S02.400D|ICD10CM|Malar fracture, unspecified side, 7thD|Malar fracture, unspecified side, 7thD +C4269358|T037|PT|S02.400D|ICD10CM|Malar fracture, unspecified side, subsequent encounter for fracture with routine healing|Malar fracture, unspecified side, subsequent encounter for fracture with routine healing +C4269359|T037|AB|S02.400G|ICD10CM|Malar fracture, unspecified side, 7thG|Malar fracture, unspecified side, 7thG +C4269359|T037|PT|S02.400G|ICD10CM|Malar fracture, unspecified side, subsequent encounter for fracture with delayed healing|Malar fracture, unspecified side, subsequent encounter for fracture with delayed healing +C4269360|T037|AB|S02.400K|ICD10CM|Malar fracture, unspecified side, 7thK|Malar fracture, unspecified side, 7thK +C4269360|T037|PT|S02.400K|ICD10CM|Malar fracture, unspecified side, subsequent encounter for fracture with nonunion|Malar fracture, unspecified side, subsequent encounter for fracture with nonunion +C4269361|T037|AB|S02.400S|ICD10CM|Malar fracture, unspecified side, sequela|Malar fracture, unspecified side, sequela +C4269361|T037|PT|S02.400S|ICD10CM|Malar fracture, unspecified side, sequela|Malar fracture, unspecified side, sequela +C4269362|T037|AB|S02.401|ICD10CM|Maxillary fracture, unspecified side|Maxillary fracture, unspecified side +C4269362|T037|HT|S02.401|ICD10CM|Maxillary fracture, unspecified side|Maxillary fracture, unspecified side +C4269363|T037|AB|S02.401A|ICD10CM|Maxillary fracture, unspecified side, init|Maxillary fracture, unspecified side, init +C4269363|T037|PT|S02.401A|ICD10CM|Maxillary fracture, unspecified side, initial encounter for closed fracture|Maxillary fracture, unspecified side, initial encounter for closed fracture +C4269364|T037|AB|S02.401B|ICD10CM|Maxillary fracture, unspecified side, 7thB|Maxillary fracture, unspecified side, 7thB +C4269364|T037|PT|S02.401B|ICD10CM|Maxillary fracture, unspecified side, initial encounter for open fracture|Maxillary fracture, unspecified side, initial encounter for open fracture +C4269365|T037|AB|S02.401D|ICD10CM|Maxillary fracture, unspecified side, 7thD|Maxillary fracture, unspecified side, 7thD +C4269365|T037|PT|S02.401D|ICD10CM|Maxillary fracture, unspecified side, subsequent encounter for fracture with routine healing|Maxillary fracture, unspecified side, subsequent encounter for fracture with routine healing +C4269366|T037|AB|S02.401G|ICD10CM|Maxillary fracture, unspecified side, 7thG|Maxillary fracture, unspecified side, 7thG +C4269366|T037|PT|S02.401G|ICD10CM|Maxillary fracture, unspecified side, subsequent encounter for fracture with delayed healing|Maxillary fracture, unspecified side, subsequent encounter for fracture with delayed healing +C4269367|T037|AB|S02.401K|ICD10CM|Maxillary fracture, unspecified side, 7thK|Maxillary fracture, unspecified side, 7thK +C4269367|T037|PT|S02.401K|ICD10CM|Maxillary fracture, unspecified side, subsequent encounter for fracture with nonunion|Maxillary fracture, unspecified side, subsequent encounter for fracture with nonunion +C4269368|T037|AB|S02.401S|ICD10CM|Maxillary fracture, unspecified side, sequela|Maxillary fracture, unspecified side, sequela +C4269368|T037|PT|S02.401S|ICD10CM|Maxillary fracture, unspecified side, sequela|Maxillary fracture, unspecified side, sequela +C4269369|T037|AB|S02.402|ICD10CM|Zygomatic fracture, unspecified side|Zygomatic fracture, unspecified side +C4269369|T037|HT|S02.402|ICD10CM|Zygomatic fracture, unspecified side|Zygomatic fracture, unspecified side +C4269370|T037|AB|S02.402A|ICD10CM|Zygomatic fracture, unspecified side, init|Zygomatic fracture, unspecified side, init +C4269370|T037|PT|S02.402A|ICD10CM|Zygomatic fracture, unspecified side, initial encounter for closed fracture|Zygomatic fracture, unspecified side, initial encounter for closed fracture +C4269371|T037|AB|S02.402B|ICD10CM|Zygomatic fracture, unspecified side, 7thB|Zygomatic fracture, unspecified side, 7thB +C4269371|T037|PT|S02.402B|ICD10CM|Zygomatic fracture, unspecified side, initial encounter for open fracture|Zygomatic fracture, unspecified side, initial encounter for open fracture +C4269372|T037|AB|S02.402D|ICD10CM|Zygomatic fracture, unspecified side, 7thD|Zygomatic fracture, unspecified side, 7thD +C4269372|T037|PT|S02.402D|ICD10CM|Zygomatic fracture, unspecified side, subsequent encounter for fracture with routine healing|Zygomatic fracture, unspecified side, subsequent encounter for fracture with routine healing +C4269373|T037|AB|S02.402G|ICD10CM|Zygomatic fracture, unspecified side, 7thG|Zygomatic fracture, unspecified side, 7thG +C4269373|T037|PT|S02.402G|ICD10CM|Zygomatic fracture, unspecified side, subsequent encounter for fracture with delayed healing|Zygomatic fracture, unspecified side, subsequent encounter for fracture with delayed healing +C4269374|T037|AB|S02.402K|ICD10CM|Zygomatic fracture, unspecified side, 7thK|Zygomatic fracture, unspecified side, 7thK +C4269374|T037|PT|S02.402K|ICD10CM|Zygomatic fracture, unspecified side, subsequent encounter for fracture with nonunion|Zygomatic fracture, unspecified side, subsequent encounter for fracture with nonunion +C4269375|T037|PT|S02.402S|ICD10CM|Zygomatic fracture, unspecified side, sequela|Zygomatic fracture, unspecified side, sequela +C4269375|T037|AB|S02.402S|ICD10CM|Zygomatic fracture, unspecified side, sequela|Zygomatic fracture, unspecified side, sequela +C4269376|T037|AB|S02.40A|ICD10CM|Malar fracture, right side|Malar fracture, right side +C4269376|T037|HT|S02.40A|ICD10CM|Malar fracture, right side|Malar fracture, right side +C4269377|T037|AB|S02.40AA|ICD10CM|Malar fracture, right side, init|Malar fracture, right side, init +C4269377|T037|PT|S02.40AA|ICD10CM|Malar fracture, right side, initial encounter for closed fracture|Malar fracture, right side, initial encounter for closed fracture +C4269378|T037|AB|S02.40AB|ICD10CM|Malar fracture, right side, 7thB|Malar fracture, right side, 7thB +C4269378|T037|PT|S02.40AB|ICD10CM|Malar fracture, right side, initial encounter for open fracture|Malar fracture, right side, initial encounter for open fracture +C4269379|T037|AB|S02.40AD|ICD10CM|Malar fracture, right side, 7thD|Malar fracture, right side, 7thD +C4269379|T037|PT|S02.40AD|ICD10CM|Malar fracture, right side, subsequent encounter for fracture with routine healing|Malar fracture, right side, subsequent encounter for fracture with routine healing +C4269380|T037|AB|S02.40AG|ICD10CM|Malar fracture, right side, 7thG|Malar fracture, right side, 7thG +C4269380|T037|PT|S02.40AG|ICD10CM|Malar fracture, right side, subsequent encounter for fracture with delayed healing|Malar fracture, right side, subsequent encounter for fracture with delayed healing +C4269381|T037|AB|S02.40AK|ICD10CM|Malar fracture, right side, 7thK|Malar fracture, right side, 7thK +C4269381|T037|PT|S02.40AK|ICD10CM|Malar fracture, right side, subsequent encounter for fracture with nonunion|Malar fracture, right side, subsequent encounter for fracture with nonunion +C4269382|T037|PT|S02.40AS|ICD10CM|Malar fracture, right side, sequela|Malar fracture, right side, sequela +C4269382|T037|AB|S02.40AS|ICD10CM|Malar fracture, right side, sequela|Malar fracture, right side, sequela +C4269383|T037|AB|S02.40B|ICD10CM|Malar fracture, left side|Malar fracture, left side +C4269383|T037|HT|S02.40B|ICD10CM|Malar fracture, left side|Malar fracture, left side +C4269384|T037|AB|S02.40BA|ICD10CM|Malar fracture, left side, init|Malar fracture, left side, init +C4269384|T037|PT|S02.40BA|ICD10CM|Malar fracture, left side, initial encounter for closed fracture|Malar fracture, left side, initial encounter for closed fracture +C4269385|T037|AB|S02.40BB|ICD10CM|Malar fracture, left side, 7thB|Malar fracture, left side, 7thB +C4269385|T037|PT|S02.40BB|ICD10CM|Malar fracture, left side, initial encounter for open fracture|Malar fracture, left side, initial encounter for open fracture +C4269386|T037|AB|S02.40BD|ICD10CM|Malar fracture, left side, 7thD|Malar fracture, left side, 7thD +C4269386|T037|PT|S02.40BD|ICD10CM|Malar fracture, left side, subsequent encounter for fracture with routine healing|Malar fracture, left side, subsequent encounter for fracture with routine healing +C4269387|T037|AB|S02.40BG|ICD10CM|Malar fracture, left side, 7thG|Malar fracture, left side, 7thG +C4269387|T037|PT|S02.40BG|ICD10CM|Malar fracture, left side, subsequent encounter for fracture with delayed healing|Malar fracture, left side, subsequent encounter for fracture with delayed healing +C4269388|T037|AB|S02.40BK|ICD10CM|Malar fracture, left side, 7thK|Malar fracture, left side, 7thK +C4269388|T037|PT|S02.40BK|ICD10CM|Malar fracture, left side, subsequent encounter for fracture with nonunion|Malar fracture, left side, subsequent encounter for fracture with nonunion +C4269389|T037|AB|S02.40BS|ICD10CM|Malar fracture, left side, sequela|Malar fracture, left side, sequela +C4269389|T037|PT|S02.40BS|ICD10CM|Malar fracture, left side, sequela|Malar fracture, left side, sequela +C4269390|T037|AB|S02.40C|ICD10CM|Maxillary fracture, right side|Maxillary fracture, right side +C4269390|T037|HT|S02.40C|ICD10CM|Maxillary fracture, right side|Maxillary fracture, right side +C4269391|T037|AB|S02.40CA|ICD10CM|Maxillary fracture, right side, init|Maxillary fracture, right side, init +C4269391|T037|PT|S02.40CA|ICD10CM|Maxillary fracture, right side, initial encounter for closed fracture|Maxillary fracture, right side, initial encounter for closed fracture +C4269392|T037|AB|S02.40CB|ICD10CM|Maxillary fracture, right side, 7thB|Maxillary fracture, right side, 7thB +C4269392|T037|PT|S02.40CB|ICD10CM|Maxillary fracture, right side, initial encounter for open fracture|Maxillary fracture, right side, initial encounter for open fracture +C4269393|T037|AB|S02.40CD|ICD10CM|Maxillary fracture, right side, 7thD|Maxillary fracture, right side, 7thD +C4269393|T037|PT|S02.40CD|ICD10CM|Maxillary fracture, right side, subsequent encounter for fracture with routine healing|Maxillary fracture, right side, subsequent encounter for fracture with routine healing +C4269394|T037|AB|S02.40CG|ICD10CM|Maxillary fracture, right side, 7thG|Maxillary fracture, right side, 7thG +C4269394|T037|PT|S02.40CG|ICD10CM|Maxillary fracture, right side, subsequent encounter for fracture with delayed healing|Maxillary fracture, right side, subsequent encounter for fracture with delayed healing +C4269395|T037|AB|S02.40CK|ICD10CM|Maxillary fracture, right side, 7thK|Maxillary fracture, right side, 7thK +C4269395|T037|PT|S02.40CK|ICD10CM|Maxillary fracture, right side, subsequent encounter for fracture with nonunion|Maxillary fracture, right side, subsequent encounter for fracture with nonunion +C4269396|T037|AB|S02.40CS|ICD10CM|Maxillary fracture, right side, sequela|Maxillary fracture, right side, sequela +C4269396|T037|PT|S02.40CS|ICD10CM|Maxillary fracture, right side, sequela|Maxillary fracture, right side, sequela +C4269397|T037|AB|S02.40D|ICD10CM|Maxillary fracture, left side|Maxillary fracture, left side +C4269397|T037|HT|S02.40D|ICD10CM|Maxillary fracture, left side|Maxillary fracture, left side +C4269398|T037|AB|S02.40DA|ICD10CM|Maxillary fracture, left side, init|Maxillary fracture, left side, init +C4269398|T037|PT|S02.40DA|ICD10CM|Maxillary fracture, left side, initial encounter for closed fracture|Maxillary fracture, left side, initial encounter for closed fracture +C4269399|T037|AB|S02.40DB|ICD10CM|Maxillary fracture, left side, 7thB|Maxillary fracture, left side, 7thB +C4269399|T037|PT|S02.40DB|ICD10CM|Maxillary fracture, left side, initial encounter for open fracture|Maxillary fracture, left side, initial encounter for open fracture +C4269400|T037|AB|S02.40DD|ICD10CM|Maxillary fracture, left side, 7thD|Maxillary fracture, left side, 7thD +C4269400|T037|PT|S02.40DD|ICD10CM|Maxillary fracture, left side, subsequent encounter for fracture with routine healing|Maxillary fracture, left side, subsequent encounter for fracture with routine healing +C4269401|T037|AB|S02.40DG|ICD10CM|Maxillary fracture, left side, 7thG|Maxillary fracture, left side, 7thG +C4269401|T037|PT|S02.40DG|ICD10CM|Maxillary fracture, left side, subsequent encounter for fracture with delayed healing|Maxillary fracture, left side, subsequent encounter for fracture with delayed healing +C4269402|T037|AB|S02.40DK|ICD10CM|Maxillary fracture, left side, 7thK|Maxillary fracture, left side, 7thK +C4269402|T037|PT|S02.40DK|ICD10CM|Maxillary fracture, left side, subsequent encounter for fracture with nonunion|Maxillary fracture, left side, subsequent encounter for fracture with nonunion +C4269403|T037|AB|S02.40DS|ICD10CM|Maxillary fracture, left side, sequela|Maxillary fracture, left side, sequela +C4269403|T037|PT|S02.40DS|ICD10CM|Maxillary fracture, left side, sequela|Maxillary fracture, left side, sequela +C4269404|T037|AB|S02.40E|ICD10CM|Zygomatic fracture, right side|Zygomatic fracture, right side +C4269404|T037|HT|S02.40E|ICD10CM|Zygomatic fracture, right side|Zygomatic fracture, right side +C4269405|T037|AB|S02.40EA|ICD10CM|Zygomatic fracture, right side, init|Zygomatic fracture, right side, init +C4269405|T037|PT|S02.40EA|ICD10CM|Zygomatic fracture, right side, initial encounter for closed fracture|Zygomatic fracture, right side, initial encounter for closed fracture +C4269406|T037|AB|S02.40EB|ICD10CM|Zygomatic fracture, right side, 7thB|Zygomatic fracture, right side, 7thB +C4269406|T037|PT|S02.40EB|ICD10CM|Zygomatic fracture, right side, initial encounter for open fracture|Zygomatic fracture, right side, initial encounter for open fracture +C4269407|T037|AB|S02.40ED|ICD10CM|Zygomatic fracture, right side, 7thD|Zygomatic fracture, right side, 7thD +C4269407|T037|PT|S02.40ED|ICD10CM|Zygomatic fracture, right side, subsequent encounter for fracture with routine healing|Zygomatic fracture, right side, subsequent encounter for fracture with routine healing +C4269408|T037|AB|S02.40EG|ICD10CM|Zygomatic fracture, right side, 7thG|Zygomatic fracture, right side, 7thG +C4269408|T037|PT|S02.40EG|ICD10CM|Zygomatic fracture, right side, subsequent encounter for fracture with delayed healing|Zygomatic fracture, right side, subsequent encounter for fracture with delayed healing +C4269409|T037|AB|S02.40EK|ICD10CM|Zygomatic fracture, right side, 7thK|Zygomatic fracture, right side, 7thK +C4269409|T037|PT|S02.40EK|ICD10CM|Zygomatic fracture, right side, subsequent encounter for fracture with nonunion|Zygomatic fracture, right side, subsequent encounter for fracture with nonunion +C4269410|T037|PT|S02.40ES|ICD10CM|Zygomatic fracture, right side, sequela|Zygomatic fracture, right side, sequela +C4269410|T037|AB|S02.40ES|ICD10CM|Zygomatic fracture, right side, sequela|Zygomatic fracture, right side, sequela +C4269411|T037|AB|S02.40F|ICD10CM|Zygomatic fracture, left side|Zygomatic fracture, left side +C4269411|T037|HT|S02.40F|ICD10CM|Zygomatic fracture, left side|Zygomatic fracture, left side +C4269412|T037|AB|S02.40FA|ICD10CM|Zygomatic fracture, left side, init|Zygomatic fracture, left side, init +C4269412|T037|PT|S02.40FA|ICD10CM|Zygomatic fracture, left side, initial encounter for closed fracture|Zygomatic fracture, left side, initial encounter for closed fracture +C4269413|T037|AB|S02.40FB|ICD10CM|Zygomatic fracture, left side, 7thB|Zygomatic fracture, left side, 7thB +C4269413|T037|PT|S02.40FB|ICD10CM|Zygomatic fracture, left side, initial encounter for open fracture|Zygomatic fracture, left side, initial encounter for open fracture +C4269414|T037|AB|S02.40FD|ICD10CM|Zygomatic fracture, left side, 7thD|Zygomatic fracture, left side, 7thD +C4269414|T037|PT|S02.40FD|ICD10CM|Zygomatic fracture, left side, subsequent encounter for fracture with routine healing|Zygomatic fracture, left side, subsequent encounter for fracture with routine healing +C4269415|T037|AB|S02.40FG|ICD10CM|Zygomatic fracture, left side, 7thG|Zygomatic fracture, left side, 7thG +C4269415|T037|PT|S02.40FG|ICD10CM|Zygomatic fracture, left side, subsequent encounter for fracture with delayed healing|Zygomatic fracture, left side, subsequent encounter for fracture with delayed healing +C4269416|T037|AB|S02.40FK|ICD10CM|Zygomatic fracture, left side, 7thK|Zygomatic fracture, left side, 7thK +C4269416|T037|PT|S02.40FK|ICD10CM|Zygomatic fracture, left side, subsequent encounter for fracture with nonunion|Zygomatic fracture, left side, subsequent encounter for fracture with nonunion +C4269417|T037|AB|S02.40FS|ICD10CM|Zygomatic fracture, left side, sequela|Zygomatic fracture, left side, sequela +C4269417|T037|PT|S02.40FS|ICD10CM|Zygomatic fracture, left side, sequela|Zygomatic fracture, left side, sequela +C0272464|T037|HT|S02.41|ICD10CM|LeFort fracture|LeFort fracture +C0272464|T037|AB|S02.41|ICD10CM|LeFort fracture|LeFort fracture +C0435328|T037|HT|S02.411|ICD10CM|LeFort I fracture|LeFort I fracture +C0435328|T037|AB|S02.411|ICD10CM|LeFort I fracture|LeFort I fracture +C2831484|T037|AB|S02.411A|ICD10CM|LeFort I fracture, initial encounter for closed fracture|LeFort I fracture, initial encounter for closed fracture +C2831484|T037|PT|S02.411A|ICD10CM|LeFort I fracture, initial encounter for closed fracture|LeFort I fracture, initial encounter for closed fracture +C2831485|T037|AB|S02.411B|ICD10CM|LeFort I fracture, initial encounter for open fracture|LeFort I fracture, initial encounter for open fracture +C2831485|T037|PT|S02.411B|ICD10CM|LeFort I fracture, initial encounter for open fracture|LeFort I fracture, initial encounter for open fracture +C2831486|T037|AB|S02.411D|ICD10CM|LeFort I fracture, subs for fx w routn heal|LeFort I fracture, subs for fx w routn heal +C2831486|T037|PT|S02.411D|ICD10CM|LeFort I fracture, subsequent encounter for fracture with routine healing|LeFort I fracture, subsequent encounter for fracture with routine healing +C2831487|T037|AB|S02.411G|ICD10CM|LeFort I fracture, subs for fx w delay heal|LeFort I fracture, subs for fx w delay heal +C2831487|T037|PT|S02.411G|ICD10CM|LeFort I fracture, subsequent encounter for fracture with delayed healing|LeFort I fracture, subsequent encounter for fracture with delayed healing +C2831488|T037|AB|S02.411K|ICD10CM|LeFort I fracture, subs encntr for fracture with nonunion|LeFort I fracture, subs encntr for fracture with nonunion +C2831488|T037|PT|S02.411K|ICD10CM|LeFort I fracture, subsequent encounter for fracture with nonunion|LeFort I fracture, subsequent encounter for fracture with nonunion +C2831489|T037|AB|S02.411S|ICD10CM|LeFort I fracture, sequela|LeFort I fracture, sequela +C2831489|T037|PT|S02.411S|ICD10CM|LeFort I fracture, sequela|LeFort I fracture, sequela +C0435329|T037|HT|S02.412|ICD10CM|LeFort II fracture|LeFort II fracture +C0435329|T037|AB|S02.412|ICD10CM|LeFort II fracture|LeFort II fracture +C2831491|T037|AB|S02.412A|ICD10CM|LeFort II fracture, initial encounter for closed fracture|LeFort II fracture, initial encounter for closed fracture +C2831491|T037|PT|S02.412A|ICD10CM|LeFort II fracture, initial encounter for closed fracture|LeFort II fracture, initial encounter for closed fracture +C2831492|T037|AB|S02.412B|ICD10CM|LeFort II fracture, initial encounter for open fracture|LeFort II fracture, initial encounter for open fracture +C2831492|T037|PT|S02.412B|ICD10CM|LeFort II fracture, initial encounter for open fracture|LeFort II fracture, initial encounter for open fracture +C2831493|T037|AB|S02.412D|ICD10CM|LeFort II fracture, subs for fx w routn heal|LeFort II fracture, subs for fx w routn heal +C2831493|T037|PT|S02.412D|ICD10CM|LeFort II fracture, subsequent encounter for fracture with routine healing|LeFort II fracture, subsequent encounter for fracture with routine healing +C2831494|T037|AB|S02.412G|ICD10CM|LeFort II fracture, subs for fx w delay heal|LeFort II fracture, subs for fx w delay heal +C2831494|T037|PT|S02.412G|ICD10CM|LeFort II fracture, subsequent encounter for fracture with delayed healing|LeFort II fracture, subsequent encounter for fracture with delayed healing +C2831495|T037|AB|S02.412K|ICD10CM|LeFort II fracture, subs encntr for fracture with nonunion|LeFort II fracture, subs encntr for fracture with nonunion +C2831495|T037|PT|S02.412K|ICD10CM|LeFort II fracture, subsequent encounter for fracture with nonunion|LeFort II fracture, subsequent encounter for fracture with nonunion +C2831496|T037|AB|S02.412S|ICD10CM|LeFort II fracture, sequela|LeFort II fracture, sequela +C2831496|T037|PT|S02.412S|ICD10CM|LeFort II fracture, sequela|LeFort II fracture, sequela +C1402218|T037|HT|S02.413|ICD10CM|LeFort III fracture|LeFort III fracture +C1402218|T037|AB|S02.413|ICD10CM|LeFort III fracture|LeFort III fracture +C2831498|T037|AB|S02.413A|ICD10CM|LeFort III fracture, initial encounter for closed fracture|LeFort III fracture, initial encounter for closed fracture +C2831498|T037|PT|S02.413A|ICD10CM|LeFort III fracture, initial encounter for closed fracture|LeFort III fracture, initial encounter for closed fracture +C2831499|T037|AB|S02.413B|ICD10CM|LeFort III fracture, initial encounter for open fracture|LeFort III fracture, initial encounter for open fracture +C2831499|T037|PT|S02.413B|ICD10CM|LeFort III fracture, initial encounter for open fracture|LeFort III fracture, initial encounter for open fracture +C2831500|T037|AB|S02.413D|ICD10CM|LeFort III fracture, subs for fx w routn heal|LeFort III fracture, subs for fx w routn heal +C2831500|T037|PT|S02.413D|ICD10CM|LeFort III fracture, subsequent encounter for fracture with routine healing|LeFort III fracture, subsequent encounter for fracture with routine healing +C2831501|T037|AB|S02.413G|ICD10CM|LeFort III fracture, subs for fx w delay heal|LeFort III fracture, subs for fx w delay heal +C2831501|T037|PT|S02.413G|ICD10CM|LeFort III fracture, subsequent encounter for fracture with delayed healing|LeFort III fracture, subsequent encounter for fracture with delayed healing +C2831502|T037|AB|S02.413K|ICD10CM|LeFort III fracture, subs encntr for fracture with nonunion|LeFort III fracture, subs encntr for fracture with nonunion +C2831502|T037|PT|S02.413K|ICD10CM|LeFort III fracture, subsequent encounter for fracture with nonunion|LeFort III fracture, subsequent encounter for fracture with nonunion +C2831503|T037|AB|S02.413S|ICD10CM|LeFort III fracture, sequela|LeFort III fracture, sequela +C2831503|T037|PT|S02.413S|ICD10CM|LeFort III fracture, sequela|LeFort III fracture, sequela +C2977697|T037|AB|S02.42|ICD10CM|Fracture of alveolus of maxilla|Fracture of alveolus of maxilla +C2977697|T037|HT|S02.42|ICD10CM|Fracture of alveolus of maxilla|Fracture of alveolus of maxilla +C2977698|T037|AB|S02.42XA|ICD10CM|Fracture of alveolus of maxilla, init for clos fx|Fracture of alveolus of maxilla, init for clos fx +C2977698|T037|PT|S02.42XA|ICD10CM|Fracture of alveolus of maxilla, initial encounter for closed fracture|Fracture of alveolus of maxilla, initial encounter for closed fracture +C2977699|T037|AB|S02.42XB|ICD10CM|Fracture of alveolus of maxilla, init for opn fx|Fracture of alveolus of maxilla, init for opn fx +C2977699|T037|PT|S02.42XB|ICD10CM|Fracture of alveolus of maxilla, initial encounter for open fracture|Fracture of alveolus of maxilla, initial encounter for open fracture +C2977700|T037|AB|S02.42XD|ICD10CM|Fracture of alveolus of maxilla, subs for fx w routn heal|Fracture of alveolus of maxilla, subs for fx w routn heal +C2977700|T037|PT|S02.42XD|ICD10CM|Fracture of alveolus of maxilla, subsequent encounter for fracture with routine healing|Fracture of alveolus of maxilla, subsequent encounter for fracture with routine healing +C2977701|T037|AB|S02.42XG|ICD10CM|Fracture of alveolus of maxilla, subs for fx w delay heal|Fracture of alveolus of maxilla, subs for fx w delay heal +C2977701|T037|PT|S02.42XG|ICD10CM|Fracture of alveolus of maxilla, subsequent encounter for fracture with delayed healing|Fracture of alveolus of maxilla, subsequent encounter for fracture with delayed healing +C2977702|T037|AB|S02.42XK|ICD10CM|Fracture of alveolus of maxilla, subs for fx w nonunion|Fracture of alveolus of maxilla, subs for fx w nonunion +C2977702|T037|PT|S02.42XK|ICD10CM|Fracture of alveolus of maxilla, subsequent encounter for fracture with nonunion|Fracture of alveolus of maxilla, subsequent encounter for fracture with nonunion +C2977703|T037|AB|S02.42XS|ICD10CM|Fracture of alveolus of maxilla, sequela|Fracture of alveolus of maxilla, sequela +C2977703|T037|PT|S02.42XS|ICD10CM|Fracture of alveolus of maxilla, sequela|Fracture of alveolus of maxilla, sequela +C0040441|T037|ET|S02.5|ICD10CM|Broken tooth|Broken tooth +C0040441|T037|PT|S02.5|ICD10|Fracture of tooth|Fracture of tooth +C2831510|T037|AB|S02.5|ICD10CM|Fracture of tooth (traumatic)|Fracture of tooth (traumatic) +C2831510|T037|HT|S02.5|ICD10CM|Fracture of tooth (traumatic)|Fracture of tooth (traumatic) +C2831511|T037|AB|S02.5XXA|ICD10CM|Fracture of tooth (traumatic), init for clos fx|Fracture of tooth (traumatic), init for clos fx +C2831511|T037|PT|S02.5XXA|ICD10CM|Fracture of tooth (traumatic), initial encounter for closed fracture|Fracture of tooth (traumatic), initial encounter for closed fracture +C2831512|T037|AB|S02.5XXB|ICD10CM|Fracture of tooth (traumatic), init encntr for open fracture|Fracture of tooth (traumatic), init encntr for open fracture +C2831512|T037|PT|S02.5XXB|ICD10CM|Fracture of tooth (traumatic), initial encounter for open fracture|Fracture of tooth (traumatic), initial encounter for open fracture +C2831513|T037|AB|S02.5XXD|ICD10CM|Fracture of tooth (traumatic), subs for fx w routn heal|Fracture of tooth (traumatic), subs for fx w routn heal +C2831513|T037|PT|S02.5XXD|ICD10CM|Fracture of tooth (traumatic), subsequent encounter for fracture with routine healing|Fracture of tooth (traumatic), subsequent encounter for fracture with routine healing +C2831514|T037|AB|S02.5XXG|ICD10CM|Fracture of tooth (traumatic), subs for fx w delay heal|Fracture of tooth (traumatic), subs for fx w delay heal +C2831514|T037|PT|S02.5XXG|ICD10CM|Fracture of tooth (traumatic), subsequent encounter for fracture with delayed healing|Fracture of tooth (traumatic), subsequent encounter for fracture with delayed healing +C2831515|T037|AB|S02.5XXK|ICD10CM|Fracture of tooth (traumatic), subs for fx w nonunion|Fracture of tooth (traumatic), subs for fx w nonunion +C2831515|T037|PT|S02.5XXK|ICD10CM|Fracture of tooth (traumatic), subsequent encounter for fracture with nonunion|Fracture of tooth (traumatic), subsequent encounter for fracture with nonunion +C2831516|T037|AB|S02.5XXS|ICD10CM|Fracture of tooth (traumatic), sequela|Fracture of tooth (traumatic), sequela +C2831516|T037|PT|S02.5XXS|ICD10CM|Fracture of tooth (traumatic), sequela|Fracture of tooth (traumatic), sequela +C2831517|T037|ET|S02.6|ICD10CM|Fracture of lower jaw (bone)|Fracture of lower jaw (bone) +C0024692|T037|PT|S02.6|ICD10|Fracture of mandible|Fracture of mandible +C0024692|T037|HT|S02.6|ICD10CM|Fracture of mandible|Fracture of mandible +C0024692|T037|AB|S02.6|ICD10CM|Fracture of mandible|Fracture of mandible +C0024692|T037|HT|S02.60|ICD10CM|Fracture of mandible, unspecified|Fracture of mandible, unspecified +C0024692|T037|AB|S02.60|ICD10CM|Fracture of mandible, unspecified|Fracture of mandible, unspecified +C4269418|T037|HT|S02.600|ICD10CM|Fracture of unspecified part of body of mandible, unspecified side|Fracture of unspecified part of body of mandible, unspecified side +C4269418|T037|AB|S02.600|ICD10CM|Fx unspecified part of body of mandible, unspecified side|Fx unspecified part of body of mandible, unspecified side +C4269419|T037|AB|S02.600A|ICD10CM|Fx unsp part of body of mandible, unspecified side, init|Fx unsp part of body of mandible, unspecified side, init +C4269420|T037|AB|S02.600B|ICD10CM|Fx unsp part of body of mandible, unspecified side, 7thB|Fx unsp part of body of mandible, unspecified side, 7thB +C4269421|T037|AB|S02.600D|ICD10CM|Fx unsp part of body of mandible, unspecified side, 7thD|Fx unsp part of body of mandible, unspecified side, 7thD +C4269422|T037|AB|S02.600G|ICD10CM|Fx unsp part of body of mandible, unspecified side, 7thG|Fx unsp part of body of mandible, unspecified side, 7thG +C4269423|T037|AB|S02.600K|ICD10CM|Fx unsp part of body of mandible, unspecified side, 7thK|Fx unsp part of body of mandible, unspecified side, 7thK +C4269424|T037|PT|S02.600S|ICD10CM|Fracture of unspecified part of body of mandible, unspecified side, sequela|Fracture of unspecified part of body of mandible, unspecified side, sequela +C4269424|T037|AB|S02.600S|ICD10CM|Fx unsp part of body of mandible, unspecified side, sequela|Fx unsp part of body of mandible, unspecified side, sequela +C4269425|T037|AB|S02.601|ICD10CM|Fracture of unspecified part of body of right mandible|Fracture of unspecified part of body of right mandible +C4269425|T037|HT|S02.601|ICD10CM|Fracture of unspecified part of body of right mandible|Fracture of unspecified part of body of right mandible +C4269426|T037|AB|S02.601A|ICD10CM|Fracture of unspecified part of body of right mandible, init|Fracture of unspecified part of body of right mandible, init +C4269426|T037|PT|S02.601A|ICD10CM|Fracture of unspecified part of body of right mandible, initial encounter for closed fracture|Fracture of unspecified part of body of right mandible, initial encounter for closed fracture +C4269427|T037|AB|S02.601B|ICD10CM|Fracture of unspecified part of body of right mandible, 7thB|Fracture of unspecified part of body of right mandible, 7thB +C4269427|T037|PT|S02.601B|ICD10CM|Fracture of unspecified part of body of right mandible, initial encounter for open fracture|Fracture of unspecified part of body of right mandible, initial encounter for open fracture +C4269428|T037|AB|S02.601D|ICD10CM|Fracture of unspecified part of body of right mandible, 7thD|Fracture of unspecified part of body of right mandible, 7thD +C4269429|T037|AB|S02.601G|ICD10CM|Fracture of unspecified part of body of right mandible, 7thG|Fracture of unspecified part of body of right mandible, 7thG +C4269430|T037|AB|S02.601K|ICD10CM|Fracture of unspecified part of body of right mandible, 7thK|Fracture of unspecified part of body of right mandible, 7thK +C4269431|T037|PT|S02.601S|ICD10CM|Fracture of unspecified part of body of right mandible, sequela|Fracture of unspecified part of body of right mandible, sequela +C4269431|T037|AB|S02.601S|ICD10CM|Fx unspecified part of body of right mandible, sequela|Fx unspecified part of body of right mandible, sequela +C4269432|T037|AB|S02.602|ICD10CM|Fracture of unspecified part of body of left mandible|Fracture of unspecified part of body of left mandible +C4269432|T037|HT|S02.602|ICD10CM|Fracture of unspecified part of body of left mandible|Fracture of unspecified part of body of left mandible +C4269433|T037|AB|S02.602A|ICD10CM|Fracture of unspecified part of body of left mandible, init|Fracture of unspecified part of body of left mandible, init +C4269433|T037|PT|S02.602A|ICD10CM|Fracture of unspecified part of body of left mandible, initial encounter for closed fracture|Fracture of unspecified part of body of left mandible, initial encounter for closed fracture +C4269434|T037|AB|S02.602B|ICD10CM|Fracture of unspecified part of body of left mandible, 7thB|Fracture of unspecified part of body of left mandible, 7thB +C4269434|T037|PT|S02.602B|ICD10CM|Fracture of unspecified part of body of left mandible, initial encounter for open fracture|Fracture of unspecified part of body of left mandible, initial encounter for open fracture +C4269435|T037|AB|S02.602D|ICD10CM|Fracture of unspecified part of body of left mandible, 7thD|Fracture of unspecified part of body of left mandible, 7thD +C4269436|T037|AB|S02.602G|ICD10CM|Fracture of unspecified part of body of left mandible, 7thG|Fracture of unspecified part of body of left mandible, 7thG +C4269437|T037|AB|S02.602K|ICD10CM|Fracture of unspecified part of body of left mandible, 7thK|Fracture of unspecified part of body of left mandible, 7thK +C4269438|T037|PT|S02.602S|ICD10CM|Fracture of unspecified part of body of left mandible, sequela|Fracture of unspecified part of body of left mandible, sequela +C4269438|T037|AB|S02.602S|ICD10CM|Fx unspecified part of body of left mandible, sequela|Fx unspecified part of body of left mandible, sequela +C0024692|T037|AB|S02.609|ICD10CM|Fracture of mandible, unspecified|Fracture of mandible, unspecified +C0024692|T037|HT|S02.609|ICD10CM|Fracture of mandible, unspecified|Fracture of mandible, unspecified +C2977710|T037|AB|S02.609A|ICD10CM|Fracture of mandible, unsp, init encntr for closed fracture|Fracture of mandible, unsp, init encntr for closed fracture +C2977710|T037|PT|S02.609A|ICD10CM|Fracture of mandible, unspecified, initial encounter for closed fracture|Fracture of mandible, unspecified, initial encounter for closed fracture +C2977711|T037|AB|S02.609B|ICD10CM|Fracture of mandible, unsp, init encntr for open fracture|Fracture of mandible, unsp, init encntr for open fracture +C2977711|T037|PT|S02.609B|ICD10CM|Fracture of mandible, unspecified, initial encounter for open fracture|Fracture of mandible, unspecified, initial encounter for open fracture +C2977712|T037|AB|S02.609D|ICD10CM|Fracture of mandible, unsp, subs for fx w routn heal|Fracture of mandible, unsp, subs for fx w routn heal +C2977712|T037|PT|S02.609D|ICD10CM|Fracture of mandible, unspecified, subsequent encounter for fracture with routine healing|Fracture of mandible, unspecified, subsequent encounter for fracture with routine healing +C2977713|T037|AB|S02.609G|ICD10CM|Fracture of mandible, unsp, subs for fx w delay heal|Fracture of mandible, unsp, subs for fx w delay heal +C2977713|T037|PT|S02.609G|ICD10CM|Fracture of mandible, unspecified, subsequent encounter for fracture with delayed healing|Fracture of mandible, unspecified, subsequent encounter for fracture with delayed healing +C2977714|T037|AB|S02.609K|ICD10CM|Fracture of mandible, unsp, subs for fx w nonunion|Fracture of mandible, unsp, subs for fx w nonunion +C2977714|T037|PT|S02.609K|ICD10CM|Fracture of mandible, unspecified, subsequent encounter for fracture with nonunion|Fracture of mandible, unspecified, subsequent encounter for fracture with nonunion +C2977715|T037|AB|S02.609S|ICD10CM|Fracture of mandible, unspecified, sequela|Fracture of mandible, unspecified, sequela +C2977715|T037|PT|S02.609S|ICD10CM|Fracture of mandible, unspecified, sequela|Fracture of mandible, unspecified, sequela +C2831525|T037|HT|S02.61|ICD10CM|Fracture of condylar process of mandible|Fracture of condylar process of mandible +C2831525|T037|AB|S02.61|ICD10CM|Fracture of condylar process of mandible|Fracture of condylar process of mandible +C4269439|T037|AB|S02.610|ICD10CM|Fracture of condylar process of mandible, unspecified side|Fracture of condylar process of mandible, unspecified side +C4269439|T037|HT|S02.610|ICD10CM|Fracture of condylar process of mandible, unspecified side|Fracture of condylar process of mandible, unspecified side +C4269440|T037|PT|S02.610A|ICD10CM|Fracture of condylar process of mandible, unspecified side, initial encounter for closed fracture|Fracture of condylar process of mandible, unspecified side, initial encounter for closed fracture +C4269440|T037|AB|S02.610A|ICD10CM|Fx condylar process of mandible, unspecified side, init|Fx condylar process of mandible, unspecified side, init +C4269441|T037|PT|S02.610B|ICD10CM|Fracture of condylar process of mandible, unspecified side, initial encounter for open fracture|Fracture of condylar process of mandible, unspecified side, initial encounter for open fracture +C4269441|T037|AB|S02.610B|ICD10CM|Fx condylar process of mandible, unspecified side, 7thB|Fx condylar process of mandible, unspecified side, 7thB +C4269442|T037|AB|S02.610D|ICD10CM|Fx condylar process of mandible, unspecified side, 7thD|Fx condylar process of mandible, unspecified side, 7thD +C4269443|T037|AB|S02.610G|ICD10CM|Fx condylar process of mandible, unspecified side, 7thG|Fx condylar process of mandible, unspecified side, 7thG +C4269444|T037|AB|S02.610K|ICD10CM|Fx condylar process of mandible, unspecified side, 7thK|Fx condylar process of mandible, unspecified side, 7thK +C4269445|T037|PT|S02.610S|ICD10CM|Fracture of condylar process of mandible, unspecified side, sequela|Fracture of condylar process of mandible, unspecified side, sequela +C4269445|T037|AB|S02.610S|ICD10CM|Fx condylar process of mandible, unspecified side, sequela|Fx condylar process of mandible, unspecified side, sequela +C4269446|T037|AB|S02.611|ICD10CM|Fracture of condylar process of right mandible|Fracture of condylar process of right mandible +C4269446|T037|HT|S02.611|ICD10CM|Fracture of condylar process of right mandible|Fracture of condylar process of right mandible +C4269447|T037|AB|S02.611A|ICD10CM|Fracture of condylar process of right mandible, init|Fracture of condylar process of right mandible, init +C4269447|T037|PT|S02.611A|ICD10CM|Fracture of condylar process of right mandible, initial encounter for closed fracture|Fracture of condylar process of right mandible, initial encounter for closed fracture +C4269448|T037|AB|S02.611B|ICD10CM|Fracture of condylar process of right mandible, 7thB|Fracture of condylar process of right mandible, 7thB +C4269448|T037|PT|S02.611B|ICD10CM|Fracture of condylar process of right mandible, initial encounter for open fracture|Fracture of condylar process of right mandible, initial encounter for open fracture +C4269449|T037|AB|S02.611D|ICD10CM|Fracture of condylar process of right mandible, 7thD|Fracture of condylar process of right mandible, 7thD +C4269450|T037|AB|S02.611G|ICD10CM|Fracture of condylar process of right mandible, 7thG|Fracture of condylar process of right mandible, 7thG +C4269451|T037|AB|S02.611K|ICD10CM|Fracture of condylar process of right mandible, 7thK|Fracture of condylar process of right mandible, 7thK +C4269451|T037|PT|S02.611K|ICD10CM|Fracture of condylar process of right mandible, subsequent encounter for fracture with nonunion|Fracture of condylar process of right mandible, subsequent encounter for fracture with nonunion +C4269452|T037|AB|S02.611S|ICD10CM|Fracture of condylar process of right mandible, sequela|Fracture of condylar process of right mandible, sequela +C4269452|T037|PT|S02.611S|ICD10CM|Fracture of condylar process of right mandible, sequela|Fracture of condylar process of right mandible, sequela +C4269453|T037|AB|S02.612|ICD10CM|Fracture of condylar process of left mandible|Fracture of condylar process of left mandible +C4269453|T037|HT|S02.612|ICD10CM|Fracture of condylar process of left mandible|Fracture of condylar process of left mandible +C4269454|T037|AB|S02.612A|ICD10CM|Fracture of condylar process of left mandible, init|Fracture of condylar process of left mandible, init +C4269454|T037|PT|S02.612A|ICD10CM|Fracture of condylar process of left mandible, initial encounter for closed fracture|Fracture of condylar process of left mandible, initial encounter for closed fracture +C4269455|T037|AB|S02.612B|ICD10CM|Fracture of condylar process of left mandible, 7thB|Fracture of condylar process of left mandible, 7thB +C4269455|T037|PT|S02.612B|ICD10CM|Fracture of condylar process of left mandible, initial encounter for open fracture|Fracture of condylar process of left mandible, initial encounter for open fracture +C4269456|T037|AB|S02.612D|ICD10CM|Fracture of condylar process of left mandible, 7thD|Fracture of condylar process of left mandible, 7thD +C4269457|T037|AB|S02.612G|ICD10CM|Fracture of condylar process of left mandible, 7thG|Fracture of condylar process of left mandible, 7thG +C4269458|T037|AB|S02.612K|ICD10CM|Fracture of condylar process of left mandible, 7thK|Fracture of condylar process of left mandible, 7thK +C4269458|T037|PT|S02.612K|ICD10CM|Fracture of condylar process of left mandible, subsequent encounter for fracture with nonunion|Fracture of condylar process of left mandible, subsequent encounter for fracture with nonunion +C4269459|T037|AB|S02.612S|ICD10CM|Fracture of condylar process of left mandible, sequela|Fracture of condylar process of left mandible, sequela +C4269459|T037|PT|S02.612S|ICD10CM|Fracture of condylar process of left mandible, sequela|Fracture of condylar process of left mandible, sequela +C2831532|T037|HT|S02.62|ICD10CM|Fracture of subcondylar process of mandible|Fracture of subcondylar process of mandible +C2831532|T037|AB|S02.62|ICD10CM|Fracture of subcondylar process of mandible|Fracture of subcondylar process of mandible +C4269460|T037|HT|S02.620|ICD10CM|Fracture of subcondylar process of mandible, unspecified side|Fracture of subcondylar process of mandible, unspecified side +C4269460|T037|AB|S02.620|ICD10CM|Fx subcondylar process of mandible, unspecified side|Fx subcondylar process of mandible, unspecified side +C4269461|T037|PT|S02.620A|ICD10CM|Fracture of subcondylar process of mandible, unspecified side, initial encounter for closed fracture|Fracture of subcondylar process of mandible, unspecified side, initial encounter for closed fracture +C4269461|T037|AB|S02.620A|ICD10CM|Fx subcondylar process of mandible, unspecified side, init|Fx subcondylar process of mandible, unspecified side, init +C4269462|T037|PT|S02.620B|ICD10CM|Fracture of subcondylar process of mandible, unspecified side, initial encounter for open fracture|Fracture of subcondylar process of mandible, unspecified side, initial encounter for open fracture +C4269462|T037|AB|S02.620B|ICD10CM|Fx subcondylar process of mandible, unspecified side, 7thB|Fx subcondylar process of mandible, unspecified side, 7thB +C4269463|T037|AB|S02.620D|ICD10CM|Fx subcondylar process of mandible, unspecified side, 7thD|Fx subcondylar process of mandible, unspecified side, 7thD +C4269464|T037|AB|S02.620G|ICD10CM|Fx subcondylar process of mandible, unspecified side, 7thG|Fx subcondylar process of mandible, unspecified side, 7thG +C4269465|T037|AB|S02.620K|ICD10CM|Fx subcondylar process of mandible, unspecified side, 7thK|Fx subcondylar process of mandible, unspecified side, 7thK +C4269466|T037|PT|S02.620S|ICD10CM|Fracture of subcondylar process of mandible, unspecified side, sequela|Fracture of subcondylar process of mandible, unspecified side, sequela +C4269466|T037|AB|S02.620S|ICD10CM|Fx subcondylar process of mandible, unsp side, sequela|Fx subcondylar process of mandible, unsp side, sequela +C4269467|T037|AB|S02.621|ICD10CM|Fracture of subcondylar process of right mandible|Fracture of subcondylar process of right mandible +C4269467|T037|HT|S02.621|ICD10CM|Fracture of subcondylar process of right mandible|Fracture of subcondylar process of right mandible +C4269468|T037|AB|S02.621A|ICD10CM|Fracture of subcondylar process of right mandible, init|Fracture of subcondylar process of right mandible, init +C4269468|T037|PT|S02.621A|ICD10CM|Fracture of subcondylar process of right mandible, initial encounter for closed fracture|Fracture of subcondylar process of right mandible, initial encounter for closed fracture +C4269469|T037|AB|S02.621B|ICD10CM|Fracture of subcondylar process of right mandible, 7thB|Fracture of subcondylar process of right mandible, 7thB +C4269469|T037|PT|S02.621B|ICD10CM|Fracture of subcondylar process of right mandible, initial encounter for open fracture|Fracture of subcondylar process of right mandible, initial encounter for open fracture +C4269470|T037|AB|S02.621D|ICD10CM|Fracture of subcondylar process of right mandible, 7thD|Fracture of subcondylar process of right mandible, 7thD +C4269471|T037|AB|S02.621G|ICD10CM|Fracture of subcondylar process of right mandible, 7thG|Fracture of subcondylar process of right mandible, 7thG +C4269472|T037|AB|S02.621K|ICD10CM|Fracture of subcondylar process of right mandible, 7thK|Fracture of subcondylar process of right mandible, 7thK +C4269472|T037|PT|S02.621K|ICD10CM|Fracture of subcondylar process of right mandible, subsequent encounter for fracture with nonunion|Fracture of subcondylar process of right mandible, subsequent encounter for fracture with nonunion +C4269473|T037|AB|S02.621S|ICD10CM|Fracture of subcondylar process of right mandible, sequela|Fracture of subcondylar process of right mandible, sequela +C4269473|T037|PT|S02.621S|ICD10CM|Fracture of subcondylar process of right mandible, sequela|Fracture of subcondylar process of right mandible, sequela +C4269474|T037|AB|S02.622|ICD10CM|Fracture of subcondylar process of left mandible|Fracture of subcondylar process of left mandible +C4269474|T037|HT|S02.622|ICD10CM|Fracture of subcondylar process of left mandible|Fracture of subcondylar process of left mandible +C4269475|T037|AB|S02.622A|ICD10CM|Fracture of subcondylar process of left mandible, init|Fracture of subcondylar process of left mandible, init +C4269475|T037|PT|S02.622A|ICD10CM|Fracture of subcondylar process of left mandible, initial encounter for closed fracture|Fracture of subcondylar process of left mandible, initial encounter for closed fracture +C4269476|T037|AB|S02.622B|ICD10CM|Fracture of subcondylar process of left mandible, 7thB|Fracture of subcondylar process of left mandible, 7thB +C4269476|T037|PT|S02.622B|ICD10CM|Fracture of subcondylar process of left mandible, initial encounter for open fracture|Fracture of subcondylar process of left mandible, initial encounter for open fracture +C4269477|T037|AB|S02.622D|ICD10CM|Fracture of subcondylar process of left mandible, 7thD|Fracture of subcondylar process of left mandible, 7thD +C4269478|T037|AB|S02.622G|ICD10CM|Fracture of subcondylar process of left mandible, 7thG|Fracture of subcondylar process of left mandible, 7thG +C4269479|T037|AB|S02.622K|ICD10CM|Fracture of subcondylar process of left mandible, 7thK|Fracture of subcondylar process of left mandible, 7thK +C4269479|T037|PT|S02.622K|ICD10CM|Fracture of subcondylar process of left mandible, subsequent encounter for fracture with nonunion|Fracture of subcondylar process of left mandible, subsequent encounter for fracture with nonunion +C4269480|T037|AB|S02.622S|ICD10CM|Fracture of subcondylar process of left mandible, sequela|Fracture of subcondylar process of left mandible, sequela +C4269480|T037|PT|S02.622S|ICD10CM|Fracture of subcondylar process of left mandible, sequela|Fracture of subcondylar process of left mandible, sequela +C2831539|T037|HT|S02.63|ICD10CM|Fracture of coronoid process of mandible|Fracture of coronoid process of mandible +C2831539|T037|AB|S02.63|ICD10CM|Fracture of coronoid process of mandible|Fracture of coronoid process of mandible +C4269481|T037|AB|S02.630|ICD10CM|Fracture of coronoid process of mandible, unspecified side|Fracture of coronoid process of mandible, unspecified side +C4269481|T037|HT|S02.630|ICD10CM|Fracture of coronoid process of mandible, unspecified side|Fracture of coronoid process of mandible, unspecified side +C4269482|T037|PT|S02.630A|ICD10CM|Fracture of coronoid process of mandible, unspecified side, initial encounter for closed fracture|Fracture of coronoid process of mandible, unspecified side, initial encounter for closed fracture +C4269482|T037|AB|S02.630A|ICD10CM|Fx coronoid process of mandible, unspecified side, init|Fx coronoid process of mandible, unspecified side, init +C4269483|T037|PT|S02.630B|ICD10CM|Fracture of coronoid process of mandible, unspecified side, initial encounter for open fracture|Fracture of coronoid process of mandible, unspecified side, initial encounter for open fracture +C4269483|T037|AB|S02.630B|ICD10CM|Fx coronoid process of mandible, unspecified side, 7thB|Fx coronoid process of mandible, unspecified side, 7thB +C4269484|T037|AB|S02.630D|ICD10CM|Fx coronoid process of mandible, unspecified side, 7thD|Fx coronoid process of mandible, unspecified side, 7thD +C4269485|T037|AB|S02.630G|ICD10CM|Fx coronoid process of mandible, unspecified side, 7thG|Fx coronoid process of mandible, unspecified side, 7thG +C4269486|T037|AB|S02.630K|ICD10CM|Fx coronoid process of mandible, unspecified side, 7thK|Fx coronoid process of mandible, unspecified side, 7thK +C4269487|T037|PT|S02.630S|ICD10CM|Fracture of coronoid process of mandible, unspecified side, sequela|Fracture of coronoid process of mandible, unspecified side, sequela +C4269487|T037|AB|S02.630S|ICD10CM|Fx coronoid process of mandible, unspecified side, sequela|Fx coronoid process of mandible, unspecified side, sequela +C4269488|T037|AB|S02.631|ICD10CM|Fracture of coronoid process of right mandible|Fracture of coronoid process of right mandible +C4269488|T037|HT|S02.631|ICD10CM|Fracture of coronoid process of right mandible|Fracture of coronoid process of right mandible +C4269489|T037|AB|S02.631A|ICD10CM|Fracture of coronoid process of right mandible, init|Fracture of coronoid process of right mandible, init +C4269489|T037|PT|S02.631A|ICD10CM|Fracture of coronoid process of right mandible, initial encounter for closed fracture|Fracture of coronoid process of right mandible, initial encounter for closed fracture +C4269490|T037|AB|S02.631B|ICD10CM|Fracture of coronoid process of right mandible, 7thB|Fracture of coronoid process of right mandible, 7thB +C4269490|T037|PT|S02.631B|ICD10CM|Fracture of coronoid process of right mandible, initial encounter for open fracture|Fracture of coronoid process of right mandible, initial encounter for open fracture +C4269491|T037|AB|S02.631D|ICD10CM|Fracture of coronoid process of right mandible, 7thD|Fracture of coronoid process of right mandible, 7thD +C4269492|T037|AB|S02.631G|ICD10CM|Fracture of coronoid process of right mandible, 7thG|Fracture of coronoid process of right mandible, 7thG +C4269493|T037|AB|S02.631K|ICD10CM|Fracture of coronoid process of right mandible, 7thK|Fracture of coronoid process of right mandible, 7thK +C4269493|T037|PT|S02.631K|ICD10CM|Fracture of coronoid process of right mandible, subsequent encounter for fracture with nonunion|Fracture of coronoid process of right mandible, subsequent encounter for fracture with nonunion +C4269494|T037|AB|S02.631S|ICD10CM|Fracture of coronoid process of right mandible, sequela|Fracture of coronoid process of right mandible, sequela +C4269494|T037|PT|S02.631S|ICD10CM|Fracture of coronoid process of right mandible, sequela|Fracture of coronoid process of right mandible, sequela +C4269495|T037|AB|S02.632|ICD10CM|Fracture of coronoid process of left mandible|Fracture of coronoid process of left mandible +C4269495|T037|HT|S02.632|ICD10CM|Fracture of coronoid process of left mandible|Fracture of coronoid process of left mandible +C4269496|T037|AB|S02.632A|ICD10CM|Fracture of coronoid process of left mandible, init|Fracture of coronoid process of left mandible, init +C4269496|T037|PT|S02.632A|ICD10CM|Fracture of coronoid process of left mandible, initial encounter for closed fracture|Fracture of coronoid process of left mandible, initial encounter for closed fracture +C4269497|T037|AB|S02.632B|ICD10CM|Fracture of coronoid process of left mandible, 7thB|Fracture of coronoid process of left mandible, 7thB +C4269497|T037|PT|S02.632B|ICD10CM|Fracture of coronoid process of left mandible, initial encounter for open fracture|Fracture of coronoid process of left mandible, initial encounter for open fracture +C4269498|T037|AB|S02.632D|ICD10CM|Fracture of coronoid process of left mandible, 7thD|Fracture of coronoid process of left mandible, 7thD +C4269499|T037|AB|S02.632G|ICD10CM|Fracture of coronoid process of left mandible, 7thG|Fracture of coronoid process of left mandible, 7thG +C4269500|T037|AB|S02.632K|ICD10CM|Fracture of coronoid process of left mandible, 7thK|Fracture of coronoid process of left mandible, 7thK +C4269500|T037|PT|S02.632K|ICD10CM|Fracture of coronoid process of left mandible, subsequent encounter for fracture with nonunion|Fracture of coronoid process of left mandible, subsequent encounter for fracture with nonunion +C4269501|T037|AB|S02.632S|ICD10CM|Fracture of coronoid process of left mandible, sequela|Fracture of coronoid process of left mandible, sequela +C4269501|T037|PT|S02.632S|ICD10CM|Fracture of coronoid process of left mandible, sequela|Fracture of coronoid process of left mandible, sequela +C1405991|T037|HT|S02.64|ICD10CM|Fracture of ramus of mandible|Fracture of ramus of mandible +C1405991|T037|AB|S02.64|ICD10CM|Fracture of ramus of mandible|Fracture of ramus of mandible +C4269502|T037|AB|S02.640|ICD10CM|Fracture of ramus of mandible, unspecified side|Fracture of ramus of mandible, unspecified side +C4269502|T037|HT|S02.640|ICD10CM|Fracture of ramus of mandible, unspecified side|Fracture of ramus of mandible, unspecified side +C4269503|T037|AB|S02.640A|ICD10CM|Fracture of ramus of mandible, unspecified side, init|Fracture of ramus of mandible, unspecified side, init +C4269503|T037|PT|S02.640A|ICD10CM|Fracture of ramus of mandible, unspecified side, initial encounter for closed fracture|Fracture of ramus of mandible, unspecified side, initial encounter for closed fracture +C4269504|T037|AB|S02.640B|ICD10CM|Fracture of ramus of mandible, unspecified side, 7thB|Fracture of ramus of mandible, unspecified side, 7thB +C4269504|T037|PT|S02.640B|ICD10CM|Fracture of ramus of mandible, unspecified side, initial encounter for open fracture|Fracture of ramus of mandible, unspecified side, initial encounter for open fracture +C4269505|T037|AB|S02.640D|ICD10CM|Fracture of ramus of mandible, unspecified side, 7thD|Fracture of ramus of mandible, unspecified side, 7thD +C4269506|T037|AB|S02.640G|ICD10CM|Fracture of ramus of mandible, unspecified side, 7thG|Fracture of ramus of mandible, unspecified side, 7thG +C4269507|T037|AB|S02.640K|ICD10CM|Fracture of ramus of mandible, unspecified side, 7thK|Fracture of ramus of mandible, unspecified side, 7thK +C4269507|T037|PT|S02.640K|ICD10CM|Fracture of ramus of mandible, unspecified side, subsequent encounter for fracture with nonunion|Fracture of ramus of mandible, unspecified side, subsequent encounter for fracture with nonunion +C4269508|T037|AB|S02.640S|ICD10CM|Fracture of ramus of mandible, unspecified side, sequela|Fracture of ramus of mandible, unspecified side, sequela +C4269508|T037|PT|S02.640S|ICD10CM|Fracture of ramus of mandible, unspecified side, sequela|Fracture of ramus of mandible, unspecified side, sequela +C4269509|T037|AB|S02.641|ICD10CM|Fracture of ramus of right mandible|Fracture of ramus of right mandible +C4269509|T037|HT|S02.641|ICD10CM|Fracture of ramus of right mandible|Fracture of ramus of right mandible +C4269510|T037|AB|S02.641A|ICD10CM|Fracture of ramus of right mandible, init|Fracture of ramus of right mandible, init +C4269510|T037|PT|S02.641A|ICD10CM|Fracture of ramus of right mandible, initial encounter for closed fracture|Fracture of ramus of right mandible, initial encounter for closed fracture +C4269511|T037|AB|S02.641B|ICD10CM|Fracture of ramus of right mandible, 7thB|Fracture of ramus of right mandible, 7thB +C4269511|T037|PT|S02.641B|ICD10CM|Fracture of ramus of right mandible, initial encounter for open fracture|Fracture of ramus of right mandible, initial encounter for open fracture +C4269512|T037|AB|S02.641D|ICD10CM|Fracture of ramus of right mandible, 7thD|Fracture of ramus of right mandible, 7thD +C4269512|T037|PT|S02.641D|ICD10CM|Fracture of ramus of right mandible, subsequent encounter for fracture with routine healing|Fracture of ramus of right mandible, subsequent encounter for fracture with routine healing +C4269513|T037|AB|S02.641G|ICD10CM|Fracture of ramus of right mandible, 7thG|Fracture of ramus of right mandible, 7thG +C4269513|T037|PT|S02.641G|ICD10CM|Fracture of ramus of right mandible, subsequent encounter for fracture with delayed healing|Fracture of ramus of right mandible, subsequent encounter for fracture with delayed healing +C4269514|T037|AB|S02.641K|ICD10CM|Fracture of ramus of right mandible, 7thK|Fracture of ramus of right mandible, 7thK +C4269514|T037|PT|S02.641K|ICD10CM|Fracture of ramus of right mandible, subsequent encounter for fracture with nonunion|Fracture of ramus of right mandible, subsequent encounter for fracture with nonunion +C4269515|T037|AB|S02.641S|ICD10CM|Fracture of ramus of right mandible, sequela|Fracture of ramus of right mandible, sequela +C4269515|T037|PT|S02.641S|ICD10CM|Fracture of ramus of right mandible, sequela|Fracture of ramus of right mandible, sequela +C4269516|T037|AB|S02.642|ICD10CM|Fracture of ramus of left mandible|Fracture of ramus of left mandible +C4269516|T037|HT|S02.642|ICD10CM|Fracture of ramus of left mandible|Fracture of ramus of left mandible +C4269517|T037|AB|S02.642A|ICD10CM|Fracture of ramus of left mandible, init|Fracture of ramus of left mandible, init +C4269517|T037|PT|S02.642A|ICD10CM|Fracture of ramus of left mandible, initial encounter for closed fracture|Fracture of ramus of left mandible, initial encounter for closed fracture +C4269518|T037|AB|S02.642B|ICD10CM|Fracture of ramus of left mandible, 7thB|Fracture of ramus of left mandible, 7thB +C4269518|T037|PT|S02.642B|ICD10CM|Fracture of ramus of left mandible, initial encounter for open fracture|Fracture of ramus of left mandible, initial encounter for open fracture +C4269519|T037|AB|S02.642D|ICD10CM|Fracture of ramus of left mandible, 7thD|Fracture of ramus of left mandible, 7thD +C4269519|T037|PT|S02.642D|ICD10CM|Fracture of ramus of left mandible, subsequent encounter for fracture with routine healing|Fracture of ramus of left mandible, subsequent encounter for fracture with routine healing +C4269520|T037|AB|S02.642G|ICD10CM|Fracture of ramus of left mandible, 7thG|Fracture of ramus of left mandible, 7thG +C4269520|T037|PT|S02.642G|ICD10CM|Fracture of ramus of left mandible, subsequent encounter for fracture with delayed healing|Fracture of ramus of left mandible, subsequent encounter for fracture with delayed healing +C4269521|T037|AB|S02.642K|ICD10CM|Fracture of ramus of left mandible, 7thK|Fracture of ramus of left mandible, 7thK +C4269521|T037|PT|S02.642K|ICD10CM|Fracture of ramus of left mandible, subsequent encounter for fracture with nonunion|Fracture of ramus of left mandible, subsequent encounter for fracture with nonunion +C4269522|T037|AB|S02.642S|ICD10CM|Fracture of ramus of left mandible, sequela|Fracture of ramus of left mandible, sequela +C4269522|T037|PT|S02.642S|ICD10CM|Fracture of ramus of left mandible, sequela|Fracture of ramus of left mandible, sequela +C0746383|T037|HT|S02.65|ICD10CM|Fracture of angle of mandible|Fracture of angle of mandible +C0746383|T037|AB|S02.65|ICD10CM|Fracture of angle of mandible|Fracture of angle of mandible +C4269523|T037|AB|S02.650|ICD10CM|Fracture of angle of mandible, unspecified side|Fracture of angle of mandible, unspecified side +C4269523|T037|HT|S02.650|ICD10CM|Fracture of angle of mandible, unspecified side|Fracture of angle of mandible, unspecified side +C4269524|T037|AB|S02.650A|ICD10CM|Fracture of angle of mandible, unspecified side, init|Fracture of angle of mandible, unspecified side, init +C4269524|T037|PT|S02.650A|ICD10CM|Fracture of angle of mandible, unspecified side, initial encounter for closed fracture|Fracture of angle of mandible, unspecified side, initial encounter for closed fracture +C4269525|T037|AB|S02.650B|ICD10CM|Fracture of angle of mandible, unspecified side, 7thB|Fracture of angle of mandible, unspecified side, 7thB +C4269525|T037|PT|S02.650B|ICD10CM|Fracture of angle of mandible, unspecified side, initial encounter for open fracture|Fracture of angle of mandible, unspecified side, initial encounter for open fracture +C4269526|T037|AB|S02.650D|ICD10CM|Fracture of angle of mandible, unspecified side, 7thD|Fracture of angle of mandible, unspecified side, 7thD +C4269527|T037|AB|S02.650G|ICD10CM|Fracture of angle of mandible, unspecified side, 7thG|Fracture of angle of mandible, unspecified side, 7thG +C4269528|T037|AB|S02.650K|ICD10CM|Fracture of angle of mandible, unspecified side, 7thK|Fracture of angle of mandible, unspecified side, 7thK +C4269528|T037|PT|S02.650K|ICD10CM|Fracture of angle of mandible, unspecified side, subsequent encounter for fracture with nonunion|Fracture of angle of mandible, unspecified side, subsequent encounter for fracture with nonunion +C4269529|T037|AB|S02.650S|ICD10CM|Fracture of angle of mandible, unspecified side, sequela|Fracture of angle of mandible, unspecified side, sequela +C4269529|T037|PT|S02.650S|ICD10CM|Fracture of angle of mandible, unspecified side, sequela|Fracture of angle of mandible, unspecified side, sequela +C4269530|T037|AB|S02.651|ICD10CM|Fracture of angle of right mandible|Fracture of angle of right mandible +C4269530|T037|HT|S02.651|ICD10CM|Fracture of angle of right mandible|Fracture of angle of right mandible +C4269531|T037|AB|S02.651A|ICD10CM|Fracture of angle of right mandible, init|Fracture of angle of right mandible, init +C4269531|T037|PT|S02.651A|ICD10CM|Fracture of angle of right mandible, initial encounter for closed fracture|Fracture of angle of right mandible, initial encounter for closed fracture +C4269532|T037|AB|S02.651B|ICD10CM|Fracture of angle of right mandible, 7thB|Fracture of angle of right mandible, 7thB +C4269532|T037|PT|S02.651B|ICD10CM|Fracture of angle of right mandible, initial encounter for open fracture|Fracture of angle of right mandible, initial encounter for open fracture +C4269533|T037|AB|S02.651D|ICD10CM|Fracture of angle of right mandible, 7thD|Fracture of angle of right mandible, 7thD +C4269533|T037|PT|S02.651D|ICD10CM|Fracture of angle of right mandible, subsequent encounter for fracture with routine healing|Fracture of angle of right mandible, subsequent encounter for fracture with routine healing +C4269534|T037|AB|S02.651G|ICD10CM|Fracture of angle of right mandible, 7thG|Fracture of angle of right mandible, 7thG +C4269534|T037|PT|S02.651G|ICD10CM|Fracture of angle of right mandible, subsequent encounter for fracture with delayed healing|Fracture of angle of right mandible, subsequent encounter for fracture with delayed healing +C4269535|T037|AB|S02.651K|ICD10CM|Fracture of angle of right mandible, 7thK|Fracture of angle of right mandible, 7thK +C4269535|T037|PT|S02.651K|ICD10CM|Fracture of angle of right mandible, subsequent encounter for fracture with nonunion|Fracture of angle of right mandible, subsequent encounter for fracture with nonunion +C4269536|T037|AB|S02.651S|ICD10CM|Fracture of angle of right mandible, sequela|Fracture of angle of right mandible, sequela +C4269536|T037|PT|S02.651S|ICD10CM|Fracture of angle of right mandible, sequela|Fracture of angle of right mandible, sequela +C4269537|T037|AB|S02.652|ICD10CM|Fracture of angle of left mandible|Fracture of angle of left mandible +C4269537|T037|HT|S02.652|ICD10CM|Fracture of angle of left mandible|Fracture of angle of left mandible +C4269538|T037|AB|S02.652A|ICD10CM|Fracture of angle of left mandible, init|Fracture of angle of left mandible, init +C4269538|T037|PT|S02.652A|ICD10CM|Fracture of angle of left mandible, initial encounter for closed fracture|Fracture of angle of left mandible, initial encounter for closed fracture +C4269539|T037|AB|S02.652B|ICD10CM|Fracture of angle of left mandible, 7thB|Fracture of angle of left mandible, 7thB +C4269539|T037|PT|S02.652B|ICD10CM|Fracture of angle of left mandible, initial encounter for open fracture|Fracture of angle of left mandible, initial encounter for open fracture +C4269540|T037|AB|S02.652D|ICD10CM|Fracture of angle of left mandible, 7thD|Fracture of angle of left mandible, 7thD +C4269540|T037|PT|S02.652D|ICD10CM|Fracture of angle of left mandible, subsequent encounter for fracture with routine healing|Fracture of angle of left mandible, subsequent encounter for fracture with routine healing +C4269541|T037|AB|S02.652G|ICD10CM|Fracture of angle of left mandible, 7thG|Fracture of angle of left mandible, 7thG +C4269541|T037|PT|S02.652G|ICD10CM|Fracture of angle of left mandible, subsequent encounter for fracture with delayed healing|Fracture of angle of left mandible, subsequent encounter for fracture with delayed healing +C4269542|T037|AB|S02.652K|ICD10CM|Fracture of angle of left mandible, 7thK|Fracture of angle of left mandible, 7thK +C4269542|T037|PT|S02.652K|ICD10CM|Fracture of angle of left mandible, subsequent encounter for fracture with nonunion|Fracture of angle of left mandible, subsequent encounter for fracture with nonunion +C4269543|T037|AB|S02.652S|ICD10CM|Fracture of angle of left mandible, sequela|Fracture of angle of left mandible, sequela +C4269543|T037|PT|S02.652S|ICD10CM|Fracture of angle of left mandible, sequela|Fracture of angle of left mandible, sequela +C2831558|T037|HT|S02.66|ICD10CM|Fracture of symphysis of mandible|Fracture of symphysis of mandible +C2831558|T037|AB|S02.66|ICD10CM|Fracture of symphysis of mandible|Fracture of symphysis of mandible +C2831559|T037|AB|S02.66XA|ICD10CM|Fracture of symphysis of mandible, init for clos fx|Fracture of symphysis of mandible, init for clos fx +C2831559|T037|PT|S02.66XA|ICD10CM|Fracture of symphysis of mandible, initial encounter for closed fracture|Fracture of symphysis of mandible, initial encounter for closed fracture +C2831560|T037|AB|S02.66XB|ICD10CM|Fracture of symphysis of mandible, init for opn fx|Fracture of symphysis of mandible, init for opn fx +C2831560|T037|PT|S02.66XB|ICD10CM|Fracture of symphysis of mandible, initial encounter for open fracture|Fracture of symphysis of mandible, initial encounter for open fracture +C2831561|T037|AB|S02.66XD|ICD10CM|Fracture of symphysis of mandible, subs for fx w routn heal|Fracture of symphysis of mandible, subs for fx w routn heal +C2831561|T037|PT|S02.66XD|ICD10CM|Fracture of symphysis of mandible, subsequent encounter for fracture with routine healing|Fracture of symphysis of mandible, subsequent encounter for fracture with routine healing +C2831562|T037|AB|S02.66XG|ICD10CM|Fracture of symphysis of mandible, subs for fx w delay heal|Fracture of symphysis of mandible, subs for fx w delay heal +C2831562|T037|PT|S02.66XG|ICD10CM|Fracture of symphysis of mandible, subsequent encounter for fracture with delayed healing|Fracture of symphysis of mandible, subsequent encounter for fracture with delayed healing +C2831563|T037|AB|S02.66XK|ICD10CM|Fracture of symphysis of mandible, subs for fx w nonunion|Fracture of symphysis of mandible, subs for fx w nonunion +C2831563|T037|PT|S02.66XK|ICD10CM|Fracture of symphysis of mandible, subsequent encounter for fracture with nonunion|Fracture of symphysis of mandible, subsequent encounter for fracture with nonunion +C2831564|T037|AB|S02.66XS|ICD10CM|Fracture of symphysis of mandible, sequela|Fracture of symphysis of mandible, sequela +C2831564|T037|PT|S02.66XS|ICD10CM|Fracture of symphysis of mandible, sequela|Fracture of symphysis of mandible, sequela +C2977716|T037|AB|S02.67|ICD10CM|Fracture of alveolus of mandible|Fracture of alveolus of mandible +C2977716|T037|HT|S02.67|ICD10CM|Fracture of alveolus of mandible|Fracture of alveolus of mandible +C4269544|T037|AB|S02.670|ICD10CM|Fracture of alveolus of mandible, unspecified side|Fracture of alveolus of mandible, unspecified side +C4269544|T037|HT|S02.670|ICD10CM|Fracture of alveolus of mandible, unspecified side|Fracture of alveolus of mandible, unspecified side +C4269545|T037|AB|S02.670A|ICD10CM|Fracture of alveolus of mandible, unspecified side, init|Fracture of alveolus of mandible, unspecified side, init +C4269545|T037|PT|S02.670A|ICD10CM|Fracture of alveolus of mandible, unspecified side, initial encounter for closed fracture|Fracture of alveolus of mandible, unspecified side, initial encounter for closed fracture +C4269546|T037|AB|S02.670B|ICD10CM|Fracture of alveolus of mandible, unspecified side, 7thB|Fracture of alveolus of mandible, unspecified side, 7thB +C4269546|T037|PT|S02.670B|ICD10CM|Fracture of alveolus of mandible, unspecified side, initial encounter for open fracture|Fracture of alveolus of mandible, unspecified side, initial encounter for open fracture +C4269547|T037|AB|S02.670D|ICD10CM|Fracture of alveolus of mandible, unspecified side, 7thD|Fracture of alveolus of mandible, unspecified side, 7thD +C4269548|T037|AB|S02.670G|ICD10CM|Fracture of alveolus of mandible, unspecified side, 7thG|Fracture of alveolus of mandible, unspecified side, 7thG +C4269549|T037|AB|S02.670K|ICD10CM|Fracture of alveolus of mandible, unspecified side, 7thK|Fracture of alveolus of mandible, unspecified side, 7thK +C4269549|T037|PT|S02.670K|ICD10CM|Fracture of alveolus of mandible, unspecified side, subsequent encounter for fracture with nonunion|Fracture of alveolus of mandible, unspecified side, subsequent encounter for fracture with nonunion +C4269550|T037|AB|S02.670S|ICD10CM|Fracture of alveolus of mandible, unspecified side, sequela|Fracture of alveolus of mandible, unspecified side, sequela +C4269550|T037|PT|S02.670S|ICD10CM|Fracture of alveolus of mandible, unspecified side, sequela|Fracture of alveolus of mandible, unspecified side, sequela +C4269551|T037|AB|S02.671|ICD10CM|Fracture of alveolus of right mandible|Fracture of alveolus of right mandible +C4269551|T037|HT|S02.671|ICD10CM|Fracture of alveolus of right mandible|Fracture of alveolus of right mandible +C4269552|T037|AB|S02.671A|ICD10CM|Fracture of alveolus of right mandible, init|Fracture of alveolus of right mandible, init +C4269552|T037|PT|S02.671A|ICD10CM|Fracture of alveolus of right mandible, initial encounter for closed fracture|Fracture of alveolus of right mandible, initial encounter for closed fracture +C4269553|T037|AB|S02.671B|ICD10CM|Fracture of alveolus of right mandible, 7thB|Fracture of alveolus of right mandible, 7thB +C4269553|T037|PT|S02.671B|ICD10CM|Fracture of alveolus of right mandible, initial encounter for open fracture|Fracture of alveolus of right mandible, initial encounter for open fracture +C4269554|T037|AB|S02.671D|ICD10CM|Fracture of alveolus of right mandible, 7thD|Fracture of alveolus of right mandible, 7thD +C4269554|T037|PT|S02.671D|ICD10CM|Fracture of alveolus of right mandible, subsequent encounter for fracture with routine healing|Fracture of alveolus of right mandible, subsequent encounter for fracture with routine healing +C4269555|T037|AB|S02.671G|ICD10CM|Fracture of alveolus of right mandible, 7thG|Fracture of alveolus of right mandible, 7thG +C4269555|T037|PT|S02.671G|ICD10CM|Fracture of alveolus of right mandible, subsequent encounter for fracture with delayed healing|Fracture of alveolus of right mandible, subsequent encounter for fracture with delayed healing +C4269556|T037|AB|S02.671K|ICD10CM|Fracture of alveolus of right mandible, 7thK|Fracture of alveolus of right mandible, 7thK +C4269556|T037|PT|S02.671K|ICD10CM|Fracture of alveolus of right mandible, subsequent encounter for fracture with nonunion|Fracture of alveolus of right mandible, subsequent encounter for fracture with nonunion +C4269557|T037|AB|S02.671S|ICD10CM|Fracture of alveolus of right mandible, sequela|Fracture of alveolus of right mandible, sequela +C4269557|T037|PT|S02.671S|ICD10CM|Fracture of alveolus of right mandible, sequela|Fracture of alveolus of right mandible, sequela +C4269558|T037|AB|S02.672|ICD10CM|Fracture of alveolus of left mandible|Fracture of alveolus of left mandible +C4269558|T037|HT|S02.672|ICD10CM|Fracture of alveolus of left mandible|Fracture of alveolus of left mandible +C4269559|T037|AB|S02.672A|ICD10CM|Fracture of alveolus of left mandible, init|Fracture of alveolus of left mandible, init +C4269559|T037|PT|S02.672A|ICD10CM|Fracture of alveolus of left mandible, initial encounter for closed fracture|Fracture of alveolus of left mandible, initial encounter for closed fracture +C4269560|T037|AB|S02.672B|ICD10CM|Fracture of alveolus of left mandible, 7thB|Fracture of alveolus of left mandible, 7thB +C4269560|T037|PT|S02.672B|ICD10CM|Fracture of alveolus of left mandible, initial encounter for open fracture|Fracture of alveolus of left mandible, initial encounter for open fracture +C4269561|T037|AB|S02.672D|ICD10CM|Fracture of alveolus of left mandible, 7thD|Fracture of alveolus of left mandible, 7thD +C4269561|T037|PT|S02.672D|ICD10CM|Fracture of alveolus of left mandible, subsequent encounter for fracture with routine healing|Fracture of alveolus of left mandible, subsequent encounter for fracture with routine healing +C4269562|T037|AB|S02.672G|ICD10CM|Fracture of alveolus of left mandible, 7thG|Fracture of alveolus of left mandible, 7thG +C4269562|T037|PT|S02.672G|ICD10CM|Fracture of alveolus of left mandible, subsequent encounter for fracture with delayed healing|Fracture of alveolus of left mandible, subsequent encounter for fracture with delayed healing +C4269563|T037|AB|S02.672K|ICD10CM|Fracture of alveolus of left mandible, 7thK|Fracture of alveolus of left mandible, 7thK +C4269563|T037|PT|S02.672K|ICD10CM|Fracture of alveolus of left mandible, subsequent encounter for fracture with nonunion|Fracture of alveolus of left mandible, subsequent encounter for fracture with nonunion +C4269564|T037|AB|S02.672S|ICD10CM|Fracture of alveolus of left mandible, sequela|Fracture of alveolus of left mandible, sequela +C4269564|T037|PT|S02.672S|ICD10CM|Fracture of alveolus of left mandible, sequela|Fracture of alveolus of left mandible, sequela +C2831572|T037|AB|S02.69|ICD10CM|Fracture of mandible of other specified site|Fracture of mandible of other specified site +C2831572|T037|HT|S02.69|ICD10CM|Fracture of mandible of other specified site|Fracture of mandible of other specified site +C2977723|T037|AB|S02.69XA|ICD10CM|Fracture of mandible of oth site, init for clos fx|Fracture of mandible of oth site, init for clos fx +C2977723|T037|PT|S02.69XA|ICD10CM|Fracture of mandible of other specified site, initial encounter for closed fracture|Fracture of mandible of other specified site, initial encounter for closed fracture +C2977724|T037|AB|S02.69XB|ICD10CM|Fracture of mandible of oth site, init for opn fx|Fracture of mandible of oth site, init for opn fx +C2977724|T037|PT|S02.69XB|ICD10CM|Fracture of mandible of other specified site, initial encounter for open fracture|Fracture of mandible of other specified site, initial encounter for open fracture +C2977725|T037|AB|S02.69XD|ICD10CM|Fracture of mandible of oth site, subs for fx w routn heal|Fracture of mandible of oth site, subs for fx w routn heal +C2977725|T037|PT|S02.69XD|ICD10CM|Fracture of mandible of other specified site, subsequent encounter for fracture with routine healing|Fracture of mandible of other specified site, subsequent encounter for fracture with routine healing +C2977726|T037|AB|S02.69XG|ICD10CM|Fracture of mandible of oth site, subs for fx w delay heal|Fracture of mandible of oth site, subs for fx w delay heal +C2977726|T037|PT|S02.69XG|ICD10CM|Fracture of mandible of other specified site, subsequent encounter for fracture with delayed healing|Fracture of mandible of other specified site, subsequent encounter for fracture with delayed healing +C2977727|T037|AB|S02.69XK|ICD10CM|Fracture of mandible of oth site, subs for fx w nonunion|Fracture of mandible of oth site, subs for fx w nonunion +C2977727|T037|PT|S02.69XK|ICD10CM|Fracture of mandible of other specified site, subsequent encounter for fracture with nonunion|Fracture of mandible of other specified site, subsequent encounter for fracture with nonunion +C2977728|T037|AB|S02.69XS|ICD10CM|Fracture of mandible of other specified site, sequela|Fracture of mandible of other specified site, sequela +C2977728|T037|PT|S02.69XS|ICD10CM|Fracture of mandible of other specified site, sequela|Fracture of mandible of other specified site, sequela +C0452079|T037|PT|S02.7|ICD10|Multiple fractures involving skull and facial bones|Multiple fractures involving skull and facial bones +C0347771|T037|ET|S02.8|ICD10CM|Fracture of palate|Fracture of palate +C0478202|T037|PT|S02.8|ICD10|Fractures of other skull and facial bones|Fractures of other skull and facial bones +C0478202|T037|AB|S02.8|ICD10CM|Fractures of other specified skull and facial bones|Fractures of other specified skull and facial bones +C0478202|T037|HT|S02.8|ICD10CM|Fractures of other specified skull and facial bones|Fractures of other specified skull and facial bones +C4269565|T037|AB|S02.80|ICD10CM|Fracture of oth skull and facial bones, unspecified side|Fracture of oth skull and facial bones, unspecified side +C4269565|T037|HT|S02.80|ICD10CM|Fracture of other specified skull and facial bones, unspecified side|Fracture of other specified skull and facial bones, unspecified side +C4269566|T037|AB|S02.80XA|ICD10CM|Fx oth skull and facial bones, unspecified side, init|Fx oth skull and facial bones, unspecified side, init +C4269567|T037|AB|S02.80XB|ICD10CM|Fx oth skull and facial bones, unspecified side, 7thB|Fx oth skull and facial bones, unspecified side, 7thB +C4269568|T037|AB|S02.80XD|ICD10CM|Fx oth skull and facial bones, unspecified side, 7thD|Fx oth skull and facial bones, unspecified side, 7thD +C4269569|T037|AB|S02.80XG|ICD10CM|Fx oth skull and facial bones, unspecified side, 7thG|Fx oth skull and facial bones, unspecified side, 7thG +C4269570|T037|AB|S02.80XK|ICD10CM|Fx oth skull and facial bones, unspecified side, 7thK|Fx oth skull and facial bones, unspecified side, 7thK +C4269571|T037|PT|S02.80XS|ICD10CM|Fracture of other specified skull and facial bones, unspecified side, sequela|Fracture of other specified skull and facial bones, unspecified side, sequela +C4269571|T037|AB|S02.80XS|ICD10CM|Fx oth skull and facial bones, unspecified side, sequela|Fx oth skull and facial bones, unspecified side, sequela +C4269572|T037|AB|S02.81|ICD10CM|Fracture of oth skull and facial bones, right side|Fracture of oth skull and facial bones, right side +C4269572|T037|HT|S02.81|ICD10CM|Fracture of other specified skull and facial bones, right side|Fracture of other specified skull and facial bones, right side +C4269573|T037|AB|S02.81XA|ICD10CM|Fracture of oth skull and facial bones, right side, init|Fracture of oth skull and facial bones, right side, init +C4269574|T037|AB|S02.81XB|ICD10CM|Fracture of oth skull and facial bones, right side, 7thB|Fracture of oth skull and facial bones, right side, 7thB +C4269574|T037|PT|S02.81XB|ICD10CM|Fracture of other specified skull and facial bones, right side, initial encounter for open fracture|Fracture of other specified skull and facial bones, right side, initial encounter for open fracture +C4269575|T037|AB|S02.81XD|ICD10CM|Fracture of oth skull and facial bones, right side, 7thD|Fracture of oth skull and facial bones, right side, 7thD +C4269576|T037|AB|S02.81XG|ICD10CM|Fracture of oth skull and facial bones, right side, 7thG|Fracture of oth skull and facial bones, right side, 7thG +C4269577|T037|AB|S02.81XK|ICD10CM|Fracture of oth skull and facial bones, right side, 7thK|Fracture of oth skull and facial bones, right side, 7thK +C4269578|T037|AB|S02.81XS|ICD10CM|Fracture of oth skull and facial bones, right side, sequela|Fracture of oth skull and facial bones, right side, sequela +C4269578|T037|PT|S02.81XS|ICD10CM|Fracture of other specified skull and facial bones, right side, sequela|Fracture of other specified skull and facial bones, right side, sequela +C4269579|T037|AB|S02.82|ICD10CM|Fracture of oth skull and facial bones, left side|Fracture of oth skull and facial bones, left side +C4269579|T037|HT|S02.82|ICD10CM|Fracture of other specified skull and facial bones, left side|Fracture of other specified skull and facial bones, left side +C4269580|T037|AB|S02.82XA|ICD10CM|Fracture of oth skull and facial bones, left side, init|Fracture of oth skull and facial bones, left side, init +C4269580|T037|PT|S02.82XA|ICD10CM|Fracture of other specified skull and facial bones, left side, initial encounter for closed fracture|Fracture of other specified skull and facial bones, left side, initial encounter for closed fracture +C4269581|T037|AB|S02.82XB|ICD10CM|Fracture of oth skull and facial bones, left side, 7thB|Fracture of oth skull and facial bones, left side, 7thB +C4269581|T037|PT|S02.82XB|ICD10CM|Fracture of other specified skull and facial bones, left side, initial encounter for open fracture|Fracture of other specified skull and facial bones, left side, initial encounter for open fracture +C4269582|T037|AB|S02.82XD|ICD10CM|Fracture of oth skull and facial bones, left side, 7thD|Fracture of oth skull and facial bones, left side, 7thD +C4269583|T037|AB|S02.82XG|ICD10CM|Fracture of oth skull and facial bones, left side, 7thG|Fracture of oth skull and facial bones, left side, 7thG +C4269584|T037|AB|S02.82XK|ICD10CM|Fracture of oth skull and facial bones, left side, 7thK|Fracture of oth skull and facial bones, left side, 7thK +C4269585|T037|AB|S02.82XS|ICD10CM|Fracture of oth skull and facial bones, left side, sequela|Fracture of oth skull and facial bones, left side, sequela +C4269585|T037|PT|S02.82XS|ICD10CM|Fracture of other specified skull and facial bones, left side, sequela|Fracture of other specified skull and facial bones, left side, sequela +C0347776|T037|AB|S02.83|ICD10CM|Fracture of medial orbital wall|Fracture of medial orbital wall +C0347776|T037|HT|S02.83|ICD10CM|Fracture of medial orbital wall|Fracture of medial orbital wall +C5140917|T037|AB|S02.831|ICD10CM|Fracture of medial orbital wall, right side|Fracture of medial orbital wall, right side +C5140917|T037|HT|S02.831|ICD10CM|Fracture of medial orbital wall, right side|Fracture of medial orbital wall, right side +C5140918|T037|AB|S02.831A|ICD10CM|Fracture of medial orbital wall, right side, init|Fracture of medial orbital wall, right side, init +C5140918|T037|PT|S02.831A|ICD10CM|Fracture of medial orbital wall, right side, initial encounter for closed fracture|Fracture of medial orbital wall, right side, initial encounter for closed fracture +C5140919|T037|AB|S02.831B|ICD10CM|Fracture of medial orbital wall, right side, 7thB|Fracture of medial orbital wall, right side, 7thB +C5140919|T037|PT|S02.831B|ICD10CM|Fracture of medial orbital wall, right side, initial encounter for open fracture|Fracture of medial orbital wall, right side, initial encounter for open fracture +C5140920|T037|AB|S02.831D|ICD10CM|Fracture of medial orbital wall, right side, 7thD|Fracture of medial orbital wall, right side, 7thD +C5140920|T037|PT|S02.831D|ICD10CM|Fracture of medial orbital wall, right side, subsequent encounter for fracture with routine healing|Fracture of medial orbital wall, right side, subsequent encounter for fracture with routine healing +C5140921|T037|AB|S02.831G|ICD10CM|Fracture of medial orbital wall, right side, 7thG|Fracture of medial orbital wall, right side, 7thG +C5140921|T037|PT|S02.831G|ICD10CM|Fracture of medial orbital wall, right side, subsequent encounter for fracture with delayed healing|Fracture of medial orbital wall, right side, subsequent encounter for fracture with delayed healing +C5140922|T037|AB|S02.831K|ICD10CM|Fracture of medial orbital wall, right side, 7thK|Fracture of medial orbital wall, right side, 7thK +C5140922|T037|PT|S02.831K|ICD10CM|Fracture of medial orbital wall, right side, subsequent encounter for fracture with nonunion|Fracture of medial orbital wall, right side, subsequent encounter for fracture with nonunion +C5140923|T037|AB|S02.831S|ICD10CM|Fracture of medial orbital wall, right side, sequela|Fracture of medial orbital wall, right side, sequela +C5140923|T037|PT|S02.831S|ICD10CM|Fracture of medial orbital wall, right side, sequela|Fracture of medial orbital wall, right side, sequela +C5140924|T037|AB|S02.832|ICD10CM|Fracture of medial orbital wall, left side|Fracture of medial orbital wall, left side +C5140924|T037|HT|S02.832|ICD10CM|Fracture of medial orbital wall, left side|Fracture of medial orbital wall, left side +C5140925|T037|AB|S02.832A|ICD10CM|Fracture of medial orbital wall, left side, init|Fracture of medial orbital wall, left side, init +C5140925|T037|PT|S02.832A|ICD10CM|Fracture of medial orbital wall, left side, initial encounter for closed fracture|Fracture of medial orbital wall, left side, initial encounter for closed fracture +C5140926|T037|AB|S02.832B|ICD10CM|Fracture of medial orbital wall, left side, 7thB|Fracture of medial orbital wall, left side, 7thB +C5140926|T037|PT|S02.832B|ICD10CM|Fracture of medial orbital wall, left side, initial encounter for open fracture|Fracture of medial orbital wall, left side, initial encounter for open fracture +C5140927|T037|AB|S02.832D|ICD10CM|Fracture of medial orbital wall, left side, 7thD|Fracture of medial orbital wall, left side, 7thD +C5140927|T037|PT|S02.832D|ICD10CM|Fracture of medial orbital wall, left side, subsequent encounter for fracture with routine healing|Fracture of medial orbital wall, left side, subsequent encounter for fracture with routine healing +C5140928|T037|AB|S02.832G|ICD10CM|Fracture of medial orbital wall, left side, 7thG|Fracture of medial orbital wall, left side, 7thG +C5140928|T037|PT|S02.832G|ICD10CM|Fracture of medial orbital wall, left side, subsequent encounter for fracture with delayed healing|Fracture of medial orbital wall, left side, subsequent encounter for fracture with delayed healing +C5140929|T037|AB|S02.832K|ICD10CM|Fracture of medial orbital wall, left side, 7thK|Fracture of medial orbital wall, left side, 7thK +C5140929|T037|PT|S02.832K|ICD10CM|Fracture of medial orbital wall, left side, subsequent encounter for fracture with nonunion|Fracture of medial orbital wall, left side, subsequent encounter for fracture with nonunion +C5140930|T037|AB|S02.832S|ICD10CM|Fracture of medial orbital wall, left side, sequela|Fracture of medial orbital wall, left side, sequela +C5140930|T037|PT|S02.832S|ICD10CM|Fracture of medial orbital wall, left side, sequela|Fracture of medial orbital wall, left side, sequela +C5140931|T037|AB|S02.839|ICD10CM|Fracture of medial orbital wall, unspecified side|Fracture of medial orbital wall, unspecified side +C5140931|T037|HT|S02.839|ICD10CM|Fracture of medial orbital wall, unspecified side|Fracture of medial orbital wall, unspecified side +C5140932|T037|AB|S02.839A|ICD10CM|Fracture of medial orbital wall, unspecified side, init|Fracture of medial orbital wall, unspecified side, init +C5140932|T037|PT|S02.839A|ICD10CM|Fracture of medial orbital wall, unspecified side, initial encounter for closed fracture|Fracture of medial orbital wall, unspecified side, initial encounter for closed fracture +C5140933|T037|AB|S02.839B|ICD10CM|Fracture of medial orbital wall, unspecified side, 7thB|Fracture of medial orbital wall, unspecified side, 7thB +C5140933|T037|PT|S02.839B|ICD10CM|Fracture of medial orbital wall, unspecified side, initial encounter for open fracture|Fracture of medial orbital wall, unspecified side, initial encounter for open fracture +C5140934|T037|AB|S02.839D|ICD10CM|Fracture of medial orbital wall, unspecified side, 7thD|Fracture of medial orbital wall, unspecified side, 7thD +C5140935|T037|AB|S02.839G|ICD10CM|Fracture of medial orbital wall, unspecified side, 7thG|Fracture of medial orbital wall, unspecified side, 7thG +C5140936|T037|AB|S02.839K|ICD10CM|Fracture of medial orbital wall, unspecified side, 7thK|Fracture of medial orbital wall, unspecified side, 7thK +C5140936|T037|PT|S02.839K|ICD10CM|Fracture of medial orbital wall, unspecified side, subsequent encounter for fracture with nonunion|Fracture of medial orbital wall, unspecified side, subsequent encounter for fracture with nonunion +C5140937|T037|AB|S02.839S|ICD10CM|Fracture of medial orbital wall, unspecified side, sequela|Fracture of medial orbital wall, unspecified side, sequela +C5140937|T037|PT|S02.839S|ICD10CM|Fracture of medial orbital wall, unspecified side, sequela|Fracture of medial orbital wall, unspecified side, sequela +C0347777|T037|AB|S02.84|ICD10CM|Fracture of lateral orbital wall|Fracture of lateral orbital wall +C0347777|T037|HT|S02.84|ICD10CM|Fracture of lateral orbital wall|Fracture of lateral orbital wall +C5140938|T037|AB|S02.841|ICD10CM|Fracture of lateral orbital wall, right side|Fracture of lateral orbital wall, right side +C5140938|T037|HT|S02.841|ICD10CM|Fracture of lateral orbital wall, right side|Fracture of lateral orbital wall, right side +C5140939|T037|AB|S02.841A|ICD10CM|Fracture of lateral orbital wall, right side, init|Fracture of lateral orbital wall, right side, init +C5140939|T037|PT|S02.841A|ICD10CM|Fracture of lateral orbital wall, right side, initial encounter for closed fracture|Fracture of lateral orbital wall, right side, initial encounter for closed fracture +C5140940|T037|AB|S02.841B|ICD10CM|Fracture of lateral orbital wall, right side, 7thB|Fracture of lateral orbital wall, right side, 7thB +C5140940|T037|PT|S02.841B|ICD10CM|Fracture of lateral orbital wall, right side, initial encounter for open fracture|Fracture of lateral orbital wall, right side, initial encounter for open fracture +C5140941|T037|AB|S02.841D|ICD10CM|Fracture of lateral orbital wall, right side, 7thD|Fracture of lateral orbital wall, right side, 7thD +C5140941|T037|PT|S02.841D|ICD10CM|Fracture of lateral orbital wall, right side, subsequent encounter for fracture with routine healing|Fracture of lateral orbital wall, right side, subsequent encounter for fracture with routine healing +C5140942|T037|AB|S02.841G|ICD10CM|Fracture of lateral orbital wall, right side, 7thG|Fracture of lateral orbital wall, right side, 7thG +C5140942|T037|PT|S02.841G|ICD10CM|Fracture of lateral orbital wall, right side, subsequent encounter for fracture with delayed healing|Fracture of lateral orbital wall, right side, subsequent encounter for fracture with delayed healing +C5140943|T037|AB|S02.841K|ICD10CM|Fracture of lateral orbital wall, right side, 7thK|Fracture of lateral orbital wall, right side, 7thK +C5140943|T037|PT|S02.841K|ICD10CM|Fracture of lateral orbital wall, right side, subsequent encounter for fracture with nonunion|Fracture of lateral orbital wall, right side, subsequent encounter for fracture with nonunion +C5140944|T037|AB|S02.841S|ICD10CM|Fracture of lateral orbital wall, right side, sequela|Fracture of lateral orbital wall, right side, sequela +C5140944|T037|PT|S02.841S|ICD10CM|Fracture of lateral orbital wall, right side, sequela|Fracture of lateral orbital wall, right side, sequela +C5140945|T037|AB|S02.842|ICD10CM|Fracture of lateral orbital wall, left side|Fracture of lateral orbital wall, left side +C5140945|T037|HT|S02.842|ICD10CM|Fracture of lateral orbital wall, left side|Fracture of lateral orbital wall, left side +C5140946|T037|AB|S02.842A|ICD10CM|Fracture of lateral orbital wall, left side, init|Fracture of lateral orbital wall, left side, init +C5140946|T037|PT|S02.842A|ICD10CM|Fracture of lateral orbital wall, left side, initial encounter for closed fracture|Fracture of lateral orbital wall, left side, initial encounter for closed fracture +C5140947|T037|AB|S02.842B|ICD10CM|Fracture of lateral orbital wall, left side, 7thB|Fracture of lateral orbital wall, left side, 7thB +C5140947|T037|PT|S02.842B|ICD10CM|Fracture of lateral orbital wall, left side, initial encounter for open fracture|Fracture of lateral orbital wall, left side, initial encounter for open fracture +C5140948|T037|AB|S02.842D|ICD10CM|Fracture of lateral orbital wall, left side, 7thD|Fracture of lateral orbital wall, left side, 7thD +C5140948|T037|PT|S02.842D|ICD10CM|Fracture of lateral orbital wall, left side, subsequent encounter for fracture with routine healing|Fracture of lateral orbital wall, left side, subsequent encounter for fracture with routine healing +C5140949|T037|AB|S02.842G|ICD10CM|Fracture of lateral orbital wall, left side, 7thG|Fracture of lateral orbital wall, left side, 7thG +C5140949|T037|PT|S02.842G|ICD10CM|Fracture of lateral orbital wall, left side, subsequent encounter for fracture with delayed healing|Fracture of lateral orbital wall, left side, subsequent encounter for fracture with delayed healing +C5140950|T037|AB|S02.842K|ICD10CM|Fracture of lateral orbital wall, left side, 7thK|Fracture of lateral orbital wall, left side, 7thK +C5140950|T037|PT|S02.842K|ICD10CM|Fracture of lateral orbital wall, left side, subsequent encounter for fracture with nonunion|Fracture of lateral orbital wall, left side, subsequent encounter for fracture with nonunion +C5140951|T037|AB|S02.842S|ICD10CM|Fracture of lateral orbital wall, left side, sequela|Fracture of lateral orbital wall, left side, sequela +C5140951|T037|PT|S02.842S|ICD10CM|Fracture of lateral orbital wall, left side, sequela|Fracture of lateral orbital wall, left side, sequela +C5140952|T037|AB|S02.849|ICD10CM|Fracture of lateral orbital wall, unspecified side|Fracture of lateral orbital wall, unspecified side +C5140952|T037|HT|S02.849|ICD10CM|Fracture of lateral orbital wall, unspecified side|Fracture of lateral orbital wall, unspecified side +C5140953|T037|AB|S02.849A|ICD10CM|Fracture of lateral orbital wall, unspecified side, init|Fracture of lateral orbital wall, unspecified side, init +C5140953|T037|PT|S02.849A|ICD10CM|Fracture of lateral orbital wall, unspecified side, initial encounter for closed fracture|Fracture of lateral orbital wall, unspecified side, initial encounter for closed fracture +C5140954|T037|AB|S02.849B|ICD10CM|Fracture of lateral orbital wall, unspecified side, 7thB|Fracture of lateral orbital wall, unspecified side, 7thB +C5140954|T037|PT|S02.849B|ICD10CM|Fracture of lateral orbital wall, unspecified side, initial encounter for open fracture|Fracture of lateral orbital wall, unspecified side, initial encounter for open fracture +C5140955|T037|AB|S02.849D|ICD10CM|Fracture of lateral orbital wall, unspecified side, 7thD|Fracture of lateral orbital wall, unspecified side, 7thD +C5140956|T037|AB|S02.849G|ICD10CM|Fracture of lateral orbital wall, unspecified side, 7thG|Fracture of lateral orbital wall, unspecified side, 7thG +C5140957|T037|AB|S02.849K|ICD10CM|Fracture of lateral orbital wall, unspecified side, 7thK|Fracture of lateral orbital wall, unspecified side, 7thK +C5140957|T037|PT|S02.849K|ICD10CM|Fracture of lateral orbital wall, unspecified side, subsequent encounter for fracture with nonunion|Fracture of lateral orbital wall, unspecified side, subsequent encounter for fracture with nonunion +C5140958|T037|AB|S02.849S|ICD10CM|Fracture of lateral orbital wall, unspecified side, sequela|Fracture of lateral orbital wall, unspecified side, sequela +C5140958|T037|PT|S02.849S|ICD10CM|Fracture of lateral orbital wall, unspecified side, sequela|Fracture of lateral orbital wall, unspecified side, sequela +C0029184|T037|ET|S02.85|ICD10CM|Fracture of orbit NOS|Fracture of orbit NOS +C5141165|T037|ET|S02.85|ICD10CM|Fracture of orbit wall NOS|Fracture of orbit wall NOS +C0029184|T037|AB|S02.85|ICD10CM|Fracture of orbit, unspecified|Fracture of orbit, unspecified +C0029184|T037|HT|S02.85|ICD10CM|Fracture of orbit, unspecified|Fracture of orbit, unspecified +C5140959|T037|AB|S02.85XA|ICD10CM|Fracture of orbit, unspecified, init|Fracture of orbit, unspecified, init +C5140959|T037|PT|S02.85XA|ICD10CM|Fracture of orbit, unspecified, initial encounter for closed fracture|Fracture of orbit, unspecified, initial encounter for closed fracture +C5140960|T037|AB|S02.85XB|ICD10CM|Fracture of orbit, unspecified, 7thB|Fracture of orbit, unspecified, 7thB +C5140960|T037|PT|S02.85XB|ICD10CM|Fracture of orbit, unspecified, initial encounter for open fracture|Fracture of orbit, unspecified, initial encounter for open fracture +C5140961|T037|AB|S02.85XD|ICD10CM|Fracture of orbit, unspecified, 7thD|Fracture of orbit, unspecified, 7thD +C5140961|T037|PT|S02.85XD|ICD10CM|Fracture of orbit, unspecified, subsequent encounter for fracture with routine healing|Fracture of orbit, unspecified, subsequent encounter for fracture with routine healing +C5140962|T037|AB|S02.85XG|ICD10CM|Fracture of orbit, unspecified, 7thG|Fracture of orbit, unspecified, 7thG +C5140962|T037|PT|S02.85XG|ICD10CM|Fracture of orbit, unspecified, subsequent encounter for fracture with delayed healing|Fracture of orbit, unspecified, subsequent encounter for fracture with delayed healing +C5140963|T037|AB|S02.85XK|ICD10CM|Fracture of orbit, unspecified, 7thK|Fracture of orbit, unspecified, 7thK +C5140963|T037|PT|S02.85XK|ICD10CM|Fracture of orbit, unspecified, subsequent encounter for fracture with nonunion|Fracture of orbit, unspecified, subsequent encounter for fracture with nonunion +C5140964|T037|AB|S02.85XS|ICD10CM|Fracture of orbit, unspecified, sequela|Fracture of orbit, unspecified, sequela +C5140964|T037|PT|S02.85XS|ICD10CM|Fracture of orbit, unspecified, sequela|Fracture of orbit, unspecified, sequela +C0452077|T037|PT|S02.9|ICD10|Fracture of skull and facial bones, part unspecified|Fracture of skull and facial bones, part unspecified +C2831606|T037|AB|S02.9|ICD10CM|Fracture of unspecified skull and facial bones|Fracture of unspecified skull and facial bones +C2831606|T037|HT|S02.9|ICD10CM|Fracture of unspecified skull and facial bones|Fracture of unspecified skull and facial bones +C2831607|T037|AB|S02.91|ICD10CM|Unspecified fracture of skull|Unspecified fracture of skull +C2831607|T037|HT|S02.91|ICD10CM|Unspecified fracture of skull|Unspecified fracture of skull +C2831608|T037|AB|S02.91XA|ICD10CM|Unsp fracture of skull, init encntr for closed fracture|Unsp fracture of skull, init encntr for closed fracture +C2831608|T037|PT|S02.91XA|ICD10CM|Unspecified fracture of skull, initial encounter for closed fracture|Unspecified fracture of skull, initial encounter for closed fracture +C2831609|T037|AB|S02.91XB|ICD10CM|Unspecified fracture of skull, init encntr for open fracture|Unspecified fracture of skull, init encntr for open fracture +C2831609|T037|PT|S02.91XB|ICD10CM|Unspecified fracture of skull, initial encounter for open fracture|Unspecified fracture of skull, initial encounter for open fracture +C2831610|T037|AB|S02.91XD|ICD10CM|Unsp fracture of skull, subs for fx w routn heal|Unsp fracture of skull, subs for fx w routn heal +C2831610|T037|PT|S02.91XD|ICD10CM|Unspecified fracture of skull, subsequent encounter for fracture with routine healing|Unspecified fracture of skull, subsequent encounter for fracture with routine healing +C2831611|T037|AB|S02.91XG|ICD10CM|Unsp fracture of skull, subs for fx w delay heal|Unsp fracture of skull, subs for fx w delay heal +C2831611|T037|PT|S02.91XG|ICD10CM|Unspecified fracture of skull, subsequent encounter for fracture with delayed healing|Unspecified fracture of skull, subsequent encounter for fracture with delayed healing +C2831612|T037|AB|S02.91XK|ICD10CM|Unsp fracture of skull, subs encntr for fracture w nonunion|Unsp fracture of skull, subs encntr for fracture w nonunion +C2831612|T037|PT|S02.91XK|ICD10CM|Unspecified fracture of skull, subsequent encounter for fracture with nonunion|Unspecified fracture of skull, subsequent encounter for fracture with nonunion +C2831613|T037|AB|S02.91XS|ICD10CM|Unspecified fracture of skull, sequela|Unspecified fracture of skull, sequela +C2831613|T037|PT|S02.91XS|ICD10CM|Unspecified fracture of skull, sequela|Unspecified fracture of skull, sequela +C2831614|T037|AB|S02.92|ICD10CM|Unspecified fracture of facial bones|Unspecified fracture of facial bones +C2831614|T037|HT|S02.92|ICD10CM|Unspecified fracture of facial bones|Unspecified fracture of facial bones +C2831615|T037|AB|S02.92XA|ICD10CM|Unsp fracture of facial bones, init for clos fx|Unsp fracture of facial bones, init for clos fx +C2831615|T037|PT|S02.92XA|ICD10CM|Unspecified fracture of facial bones, initial encounter for closed fracture|Unspecified fracture of facial bones, initial encounter for closed fracture +C2831616|T037|AB|S02.92XB|ICD10CM|Unsp fracture of facial bones, init encntr for open fracture|Unsp fracture of facial bones, init encntr for open fracture +C2831616|T037|PT|S02.92XB|ICD10CM|Unspecified fracture of facial bones, initial encounter for open fracture|Unspecified fracture of facial bones, initial encounter for open fracture +C2831617|T037|AB|S02.92XD|ICD10CM|Unsp fracture of facial bones, subs for fx w routn heal|Unsp fracture of facial bones, subs for fx w routn heal +C2831617|T037|PT|S02.92XD|ICD10CM|Unspecified fracture of facial bones, subsequent encounter for fracture with routine healing|Unspecified fracture of facial bones, subsequent encounter for fracture with routine healing +C2831618|T037|AB|S02.92XG|ICD10CM|Unsp fracture of facial bones, subs for fx w delay heal|Unsp fracture of facial bones, subs for fx w delay heal +C2831618|T037|PT|S02.92XG|ICD10CM|Unspecified fracture of facial bones, subsequent encounter for fracture with delayed healing|Unspecified fracture of facial bones, subsequent encounter for fracture with delayed healing +C2831619|T037|AB|S02.92XK|ICD10CM|Unsp fracture of facial bones, subs for fx w nonunion|Unsp fracture of facial bones, subs for fx w nonunion +C2831619|T037|PT|S02.92XK|ICD10CM|Unspecified fracture of facial bones, subsequent encounter for fracture with nonunion|Unspecified fracture of facial bones, subsequent encounter for fracture with nonunion +C2831620|T037|AB|S02.92XS|ICD10CM|Unspecified fracture of facial bones, sequela|Unspecified fracture of facial bones, sequela +C2831620|T037|PT|S02.92XS|ICD10CM|Unspecified fracture of facial bones, sequela|Unspecified fracture of facial bones, sequela +C4290299|T037|ET|S03|ICD10CM|avulsion of joint (capsule) or ligament of head|avulsion of joint (capsule) or ligament of head +C2831628|T037|AB|S03|ICD10CM|Dislocation and sprain of joints and ligaments of head|Dislocation and sprain of joints and ligaments of head +C2831628|T037|HT|S03|ICD10CM|Dislocation and sprain of joints and ligaments of head|Dislocation and sprain of joints and ligaments of head +C0495807|T037|HT|S03|ICD10|Dislocation, sprain and strain of joints and ligaments of head|Dislocation, sprain and strain of joints and ligaments of head +C4290300|T037|ET|S03|ICD10CM|laceration of cartilage, joint (capsule) or ligament of head|laceration of cartilage, joint (capsule) or ligament of head +C4290301|T037|ET|S03|ICD10CM|sprain of cartilage, joint (capsule) or ligament of head|sprain of cartilage, joint (capsule) or ligament of head +C4290302|T037|ET|S03|ICD10CM|traumatic hemarthrosis of joint or ligament of head|traumatic hemarthrosis of joint or ligament of head +C4290303|T037|ET|S03|ICD10CM|traumatic rupture of joint or ligament of head|traumatic rupture of joint or ligament of head +C4290304|T037|ET|S03|ICD10CM|traumatic subluxation of joint or ligament of head|traumatic subluxation of joint or ligament of head +C4290305|T037|ET|S03|ICD10CM|traumatic tear of joint or ligament of head|traumatic tear of joint or ligament of head +C0159914|T037|HT|S03.0|ICD10CM|Dislocation of jaw|Dislocation of jaw +C0159914|T037|AB|S03.0|ICD10CM|Dislocation of jaw|Dislocation of jaw +C0159914|T037|PT|S03.0|ICD10|Dislocation of jaw|Dislocation of jaw +C2831629|T037|ET|S03.0|ICD10CM|Dislocation of jaw (cartilage) (meniscus)|Dislocation of jaw (cartilage) (meniscus) +C0159914|T037|ET|S03.0|ICD10CM|Dislocation of mandible|Dislocation of mandible +C0159914|T037|ET|S03.0|ICD10CM|Dislocation of temporomandibular (joint)|Dislocation of temporomandibular (joint) +C4269586|T037|AB|S03.00|ICD10CM|Dislocation of jaw, unspecified side|Dislocation of jaw, unspecified side +C4269586|T037|HT|S03.00|ICD10CM|Dislocation of jaw, unspecified side|Dislocation of jaw, unspecified side +C4269587|T037|AB|S03.00XA|ICD10CM|Dislocation of jaw, unspecified side, initial encounter|Dislocation of jaw, unspecified side, initial encounter +C4269587|T037|PT|S03.00XA|ICD10CM|Dislocation of jaw, unspecified side, initial encounter|Dislocation of jaw, unspecified side, initial encounter +C4269588|T037|AB|S03.00XD|ICD10CM|Dislocation of jaw, unspecified side, subsequent encounter|Dislocation of jaw, unspecified side, subsequent encounter +C4269588|T037|PT|S03.00XD|ICD10CM|Dislocation of jaw, unspecified side, subsequent encounter|Dislocation of jaw, unspecified side, subsequent encounter +C4269589|T037|AB|S03.00XS|ICD10CM|Dislocation of jaw, unspecified side, sequela|Dislocation of jaw, unspecified side, sequela +C4269589|T037|PT|S03.00XS|ICD10CM|Dislocation of jaw, unspecified side, sequela|Dislocation of jaw, unspecified side, sequela +C4269590|T037|AB|S03.01|ICD10CM|Dislocation of jaw, right side|Dislocation of jaw, right side +C4269590|T037|HT|S03.01|ICD10CM|Dislocation of jaw, right side|Dislocation of jaw, right side +C4269591|T037|PT|S03.01XA|ICD10CM|Dislocation of jaw, right side, initial encounter|Dislocation of jaw, right side, initial encounter +C4269591|T037|AB|S03.01XA|ICD10CM|Dislocation of jaw, right side, initial encounter|Dislocation of jaw, right side, initial encounter +C4269592|T037|AB|S03.01XD|ICD10CM|Dislocation of jaw, right side, subsequent encounter|Dislocation of jaw, right side, subsequent encounter +C4269592|T037|PT|S03.01XD|ICD10CM|Dislocation of jaw, right side, subsequent encounter|Dislocation of jaw, right side, subsequent encounter +C4269593|T037|PT|S03.01XS|ICD10CM|Dislocation of jaw, right side, sequela|Dislocation of jaw, right side, sequela +C4269593|T037|AB|S03.01XS|ICD10CM|Dislocation of jaw, right side, sequela|Dislocation of jaw, right side, sequela +C4269594|T037|AB|S03.02|ICD10CM|Dislocation of jaw, left side|Dislocation of jaw, left side +C4269594|T037|HT|S03.02|ICD10CM|Dislocation of jaw, left side|Dislocation of jaw, left side +C4269595|T037|PT|S03.02XA|ICD10CM|Dislocation of jaw, left side, initial encounter|Dislocation of jaw, left side, initial encounter +C4269595|T037|AB|S03.02XA|ICD10CM|Dislocation of jaw, left side, initial encounter|Dislocation of jaw, left side, initial encounter +C4269596|T037|AB|S03.02XD|ICD10CM|Dislocation of jaw, left side, subsequent encounter|Dislocation of jaw, left side, subsequent encounter +C4269596|T037|PT|S03.02XD|ICD10CM|Dislocation of jaw, left side, subsequent encounter|Dislocation of jaw, left side, subsequent encounter +C4269597|T037|PT|S03.02XS|ICD10CM|Dislocation of jaw, left side, sequela|Dislocation of jaw, left side, sequela +C4269597|T037|AB|S03.02XS|ICD10CM|Dislocation of jaw, left side, sequela|Dislocation of jaw, left side, sequela +C4269598|T037|AB|S03.03|ICD10CM|Dislocation of jaw, bilateral|Dislocation of jaw, bilateral +C4269598|T037|HT|S03.03|ICD10CM|Dislocation of jaw, bilateral|Dislocation of jaw, bilateral +C4269599|T037|PT|S03.03XA|ICD10CM|Dislocation of jaw, bilateral, initial encounter|Dislocation of jaw, bilateral, initial encounter +C4269599|T037|AB|S03.03XA|ICD10CM|Dislocation of jaw, bilateral, initial encounter|Dislocation of jaw, bilateral, initial encounter +C4269600|T037|AB|S03.03XD|ICD10CM|Dislocation of jaw, bilateral, subsequent encounter|Dislocation of jaw, bilateral, subsequent encounter +C4269600|T037|PT|S03.03XD|ICD10CM|Dislocation of jaw, bilateral, subsequent encounter|Dislocation of jaw, bilateral, subsequent encounter +C4269601|T037|PT|S03.03XS|ICD10CM|Dislocation of jaw, bilateral, sequela|Dislocation of jaw, bilateral, sequela +C4269601|T037|AB|S03.03XS|ICD10CM|Dislocation of jaw, bilateral, sequela|Dislocation of jaw, bilateral, sequela +C0426459|T037|PT|S03.1|ICD10|Dislocation of septal cartilage of nose|Dislocation of septal cartilage of nose +C0426459|T037|HT|S03.1|ICD10CM|Dislocation of septal cartilage of nose|Dislocation of septal cartilage of nose +C0426459|T037|AB|S03.1|ICD10CM|Dislocation of septal cartilage of nose|Dislocation of septal cartilage of nose +C2831632|T037|AB|S03.1XXA|ICD10CM|Dislocation of septal cartilage of nose, initial encounter|Dislocation of septal cartilage of nose, initial encounter +C2831632|T037|PT|S03.1XXA|ICD10CM|Dislocation of septal cartilage of nose, initial encounter|Dislocation of septal cartilage of nose, initial encounter +C2831633|T037|AB|S03.1XXD|ICD10CM|Dislocation of septal cartilage of nose, subs encntr|Dislocation of septal cartilage of nose, subs encntr +C2831633|T037|PT|S03.1XXD|ICD10CM|Dislocation of septal cartilage of nose, subsequent encounter|Dislocation of septal cartilage of nose, subsequent encounter +C2831634|T037|AB|S03.1XXS|ICD10CM|Dislocation of septal cartilage of nose, sequela|Dislocation of septal cartilage of nose, sequela +C2831634|T037|PT|S03.1XXS|ICD10CM|Dislocation of septal cartilage of nose, sequela|Dislocation of septal cartilage of nose, sequela +C0266949|T037|HT|S03.2|ICD10CM|Dislocation of tooth|Dislocation of tooth +C0266949|T037|AB|S03.2|ICD10CM|Dislocation of tooth|Dislocation of tooth +C0266949|T037|PT|S03.2|ICD10|Dislocation of tooth|Dislocation of tooth +C2831635|T037|AB|S03.2XXA|ICD10CM|Dislocation of tooth, initial encounter|Dislocation of tooth, initial encounter +C2831635|T037|PT|S03.2XXA|ICD10CM|Dislocation of tooth, initial encounter|Dislocation of tooth, initial encounter +C2831636|T037|AB|S03.2XXD|ICD10CM|Dislocation of tooth, subsequent encounter|Dislocation of tooth, subsequent encounter +C2831636|T037|PT|S03.2XXD|ICD10CM|Dislocation of tooth, subsequent encounter|Dislocation of tooth, subsequent encounter +C2831637|T037|AB|S03.2XXS|ICD10CM|Dislocation of tooth, sequela|Dislocation of tooth, sequela +C2831637|T037|PT|S03.2XXS|ICD10CM|Dislocation of tooth, sequela|Dislocation of tooth, sequela +C0478203|T037|PT|S03.3|ICD10|Dislocation of other and unspecified parts of head|Dislocation of other and unspecified parts of head +C0392085|T037|PT|S03.4|ICD10|Sprain and strain of jaw|Sprain and strain of jaw +C0160113|T037|HT|S03.4|ICD10CM|Sprain of jaw|Sprain of jaw +C0160113|T037|AB|S03.4|ICD10CM|Sprain of jaw|Sprain of jaw +C2831638|T037|ET|S03.4|ICD10CM|Sprain of temporomandibular (joint) (ligament)|Sprain of temporomandibular (joint) (ligament) +C4269602|T037|AB|S03.40|ICD10CM|Sprain of jaw, unspecified side|Sprain of jaw, unspecified side +C4269602|T037|HT|S03.40|ICD10CM|Sprain of jaw, unspecified side|Sprain of jaw, unspecified side +C4269603|T037|PT|S03.40XA|ICD10CM|Sprain of jaw, unspecified side, initial encounter|Sprain of jaw, unspecified side, initial encounter +C4269603|T037|AB|S03.40XA|ICD10CM|Sprain of jaw, unspecified side, initial encounter|Sprain of jaw, unspecified side, initial encounter +C4269604|T037|PT|S03.40XD|ICD10CM|Sprain of jaw, unspecified side, subsequent encounter|Sprain of jaw, unspecified side, subsequent encounter +C4269604|T037|AB|S03.40XD|ICD10CM|Sprain of jaw, unspecified side, subsequent encounter|Sprain of jaw, unspecified side, subsequent encounter +C4269605|T037|PT|S03.40XS|ICD10CM|Sprain of jaw, unspecified side, sequela|Sprain of jaw, unspecified side, sequela +C4269605|T037|AB|S03.40XS|ICD10CM|Sprain of jaw, unspecified side, sequela|Sprain of jaw, unspecified side, sequela +C4269606|T037|AB|S03.41|ICD10CM|Sprain of jaw, right side|Sprain of jaw, right side +C4269606|T037|HT|S03.41|ICD10CM|Sprain of jaw, right side|Sprain of jaw, right side +C4269607|T037|PT|S03.41XA|ICD10CM|Sprain of jaw, right side, initial encounter|Sprain of jaw, right side, initial encounter +C4269607|T037|AB|S03.41XA|ICD10CM|Sprain of jaw, right side, initial encounter|Sprain of jaw, right side, initial encounter +C4269608|T037|PT|S03.41XD|ICD10CM|Sprain of jaw, right side, subsequent encounter|Sprain of jaw, right side, subsequent encounter +C4269608|T037|AB|S03.41XD|ICD10CM|Sprain of jaw, right side, subsequent encounter|Sprain of jaw, right side, subsequent encounter +C4269609|T037|PT|S03.41XS|ICD10CM|Sprain of jaw, right side, sequela|Sprain of jaw, right side, sequela +C4269609|T037|AB|S03.41XS|ICD10CM|Sprain of jaw, right side, sequela|Sprain of jaw, right side, sequela +C4269610|T037|AB|S03.42|ICD10CM|Sprain of jaw, left side|Sprain of jaw, left side +C4269610|T037|HT|S03.42|ICD10CM|Sprain of jaw, left side|Sprain of jaw, left side +C4269611|T037|PT|S03.42XA|ICD10CM|Sprain of jaw, left side, initial encounter|Sprain of jaw, left side, initial encounter +C4269611|T037|AB|S03.42XA|ICD10CM|Sprain of jaw, left side, initial encounter|Sprain of jaw, left side, initial encounter +C4269612|T037|PT|S03.42XD|ICD10CM|Sprain of jaw, left side, subsequent encounter|Sprain of jaw, left side, subsequent encounter +C4269612|T037|AB|S03.42XD|ICD10CM|Sprain of jaw, left side, subsequent encounter|Sprain of jaw, left side, subsequent encounter +C4269613|T037|PT|S03.42XS|ICD10CM|Sprain of jaw, left side, sequela|Sprain of jaw, left side, sequela +C4269613|T037|AB|S03.42XS|ICD10CM|Sprain of jaw, left side, sequela|Sprain of jaw, left side, sequela +C4269614|T037|AB|S03.43|ICD10CM|Sprain of jaw, bilateral|Sprain of jaw, bilateral +C4269614|T037|HT|S03.43|ICD10CM|Sprain of jaw, bilateral|Sprain of jaw, bilateral +C4269615|T037|PT|S03.43XA|ICD10CM|Sprain of jaw, bilateral, initial encounter|Sprain of jaw, bilateral, initial encounter +C4269615|T037|AB|S03.43XA|ICD10CM|Sprain of jaw, bilateral, initial encounter|Sprain of jaw, bilateral, initial encounter +C4269616|T037|AB|S03.43XD|ICD10CM|Sprain of jaw, bilateral, subsequent encounter|Sprain of jaw, bilateral, subsequent encounter +C4269616|T037|PT|S03.43XD|ICD10CM|Sprain of jaw, bilateral, subsequent encounter|Sprain of jaw, bilateral, subsequent encounter +C4269617|T037|PT|S03.43XS|ICD10CM|Sprain of jaw, bilateral, sequela|Sprain of jaw, bilateral, sequela +C4269617|T037|AB|S03.43XS|ICD10CM|Sprain of jaw, bilateral, sequela|Sprain of jaw, bilateral, sequela +C0478204|T037|PT|S03.5|ICD10|Sprain and strain of joints and ligaments of other and unspecified parts of head|Sprain and strain of joints and ligaments of other and unspecified parts of head +C2831642|T037|AB|S03.8|ICD10CM|Sprain of joints and ligaments of other parts of head|Sprain of joints and ligaments of other parts of head +C2831642|T037|HT|S03.8|ICD10CM|Sprain of joints and ligaments of other parts of head|Sprain of joints and ligaments of other parts of head +C2831643|T037|AB|S03.8XXA|ICD10CM|Sprain of joints and ligaments of oth prt head, init encntr|Sprain of joints and ligaments of oth prt head, init encntr +C2831643|T037|PT|S03.8XXA|ICD10CM|Sprain of joints and ligaments of other parts of head, initial encounter|Sprain of joints and ligaments of other parts of head, initial encounter +C2831644|T037|AB|S03.8XXD|ICD10CM|Sprain of joints and ligaments of oth prt head, subs encntr|Sprain of joints and ligaments of oth prt head, subs encntr +C2831644|T037|PT|S03.8XXD|ICD10CM|Sprain of joints and ligaments of other parts of head, subsequent encounter|Sprain of joints and ligaments of other parts of head, subsequent encounter +C2831645|T037|AB|S03.8XXS|ICD10CM|Sprain of joints and ligaments of oth parts of head, sequela|Sprain of joints and ligaments of oth parts of head, sequela +C2831645|T037|PT|S03.8XXS|ICD10CM|Sprain of joints and ligaments of other parts of head, sequela|Sprain of joints and ligaments of other parts of head, sequela +C2831646|T037|AB|S03.9|ICD10CM|Sprain of joints and ligaments of unspecified parts of head|Sprain of joints and ligaments of unspecified parts of head +C2831646|T037|HT|S03.9|ICD10CM|Sprain of joints and ligaments of unspecified parts of head|Sprain of joints and ligaments of unspecified parts of head +C2831647|T037|AB|S03.9XXA|ICD10CM|Sprain of joints and ligaments of unsp parts of head, init|Sprain of joints and ligaments of unsp parts of head, init +C2831647|T037|PT|S03.9XXA|ICD10CM|Sprain of joints and ligaments of unspecified parts of head, initial encounter|Sprain of joints and ligaments of unspecified parts of head, initial encounter +C2831648|T037|AB|S03.9XXD|ICD10CM|Sprain of joints and ligaments of unsp parts of head, subs|Sprain of joints and ligaments of unsp parts of head, subs +C2831648|T037|PT|S03.9XXD|ICD10CM|Sprain of joints and ligaments of unspecified parts of head, subsequent encounter|Sprain of joints and ligaments of unspecified parts of head, subsequent encounter +C2831649|T037|AB|S03.9XXS|ICD10CM|Sprain of joints and ligaments of unsp parts of head, sqla|Sprain of joints and ligaments of unsp parts of head, sqla +C2831649|T037|PT|S03.9XXS|ICD10CM|Sprain of joints and ligaments of unspecified parts of head, sequela|Sprain of joints and ligaments of unspecified parts of head, sequela +C0273483|T037|HT|S04|ICD10CM|Injury of cranial nerve|Injury of cranial nerve +C0273483|T037|AB|S04|ICD10CM|Injury of cranial nerve|Injury of cranial nerve +C0273483|T037|HT|S04|ICD10|Injury of cranial nerves|Injury of cranial nerves +C0161397|T037|PT|S04.0|ICD10|Injury of optic nerve and pathways|Injury of optic nerve and pathways +C0161397|T037|HT|S04.0|ICD10CM|Injury of optic nerve and pathways|Injury of optic nerve and pathways +C0161397|T037|AB|S04.0|ICD10CM|Injury of optic nerve and pathways|Injury of optic nerve and pathways +C2831650|T037|ET|S04.01|ICD10CM|Injury of 2nd cranial nerve|Injury of 2nd cranial nerve +C0161398|T037|AB|S04.01|ICD10CM|Injury of optic nerve|Injury of optic nerve +C0161398|T037|HT|S04.01|ICD10CM|Injury of optic nerve|Injury of optic nerve +C2831651|T037|AB|S04.011|ICD10CM|Injury of optic nerve, right eye|Injury of optic nerve, right eye +C2831651|T037|HT|S04.011|ICD10CM|Injury of optic nerve, right eye|Injury of optic nerve, right eye +C2831652|T037|AB|S04.011A|ICD10CM|Injury of optic nerve, right eye, initial encounter|Injury of optic nerve, right eye, initial encounter +C2831652|T037|PT|S04.011A|ICD10CM|Injury of optic nerve, right eye, initial encounter|Injury of optic nerve, right eye, initial encounter +C2831653|T037|AB|S04.011D|ICD10CM|Injury of optic nerve, right eye, subsequent encounter|Injury of optic nerve, right eye, subsequent encounter +C2831653|T037|PT|S04.011D|ICD10CM|Injury of optic nerve, right eye, subsequent encounter|Injury of optic nerve, right eye, subsequent encounter +C2831654|T037|AB|S04.011S|ICD10CM|Injury of optic nerve, right eye, sequela|Injury of optic nerve, right eye, sequela +C2831654|T037|PT|S04.011S|ICD10CM|Injury of optic nerve, right eye, sequela|Injury of optic nerve, right eye, sequela +C2831655|T037|AB|S04.012|ICD10CM|Injury of optic nerve, left eye|Injury of optic nerve, left eye +C2831655|T037|HT|S04.012|ICD10CM|Injury of optic nerve, left eye|Injury of optic nerve, left eye +C2831656|T037|AB|S04.012A|ICD10CM|Injury of optic nerve, left eye, initial encounter|Injury of optic nerve, left eye, initial encounter +C2831656|T037|PT|S04.012A|ICD10CM|Injury of optic nerve, left eye, initial encounter|Injury of optic nerve, left eye, initial encounter +C2831657|T037|AB|S04.012D|ICD10CM|Injury of optic nerve, left eye, subsequent encounter|Injury of optic nerve, left eye, subsequent encounter +C2831657|T037|PT|S04.012D|ICD10CM|Injury of optic nerve, left eye, subsequent encounter|Injury of optic nerve, left eye, subsequent encounter +C2831658|T037|AB|S04.012S|ICD10CM|Injury of optic nerve, left eye, sequela|Injury of optic nerve, left eye, sequela +C2831658|T037|PT|S04.012S|ICD10CM|Injury of optic nerve, left eye, sequela|Injury of optic nerve, left eye, sequela +C0161398|T037|ET|S04.019|ICD10CM|Injury of optic nerve NOS|Injury of optic nerve NOS +C2831659|T037|AB|S04.019|ICD10CM|Injury of optic nerve, unspecified eye|Injury of optic nerve, unspecified eye +C2831659|T037|HT|S04.019|ICD10CM|Injury of optic nerve, unspecified eye|Injury of optic nerve, unspecified eye +C2831660|T037|AB|S04.019A|ICD10CM|Injury of optic nerve, unspecified eye, initial encounter|Injury of optic nerve, unspecified eye, initial encounter +C2831660|T037|PT|S04.019A|ICD10CM|Injury of optic nerve, unspecified eye, initial encounter|Injury of optic nerve, unspecified eye, initial encounter +C2831661|T037|AB|S04.019D|ICD10CM|Injury of optic nerve, unspecified eye, subsequent encounter|Injury of optic nerve, unspecified eye, subsequent encounter +C2831661|T037|PT|S04.019D|ICD10CM|Injury of optic nerve, unspecified eye, subsequent encounter|Injury of optic nerve, unspecified eye, subsequent encounter +C2831662|T037|AB|S04.019S|ICD10CM|Injury of optic nerve, unspecified eye, sequela|Injury of optic nerve, unspecified eye, sequela +C2831662|T037|PT|S04.019S|ICD10CM|Injury of optic nerve, unspecified eye, sequela|Injury of optic nerve, unspecified eye, sequela +C0161399|T037|HT|S04.02|ICD10CM|Injury of optic chiasm|Injury of optic chiasm +C0161399|T037|AB|S04.02|ICD10CM|Injury of optic chiasm|Injury of optic chiasm +C2831663|T037|AB|S04.02XA|ICD10CM|Injury of optic chiasm, initial encounter|Injury of optic chiasm, initial encounter +C2831663|T037|PT|S04.02XA|ICD10CM|Injury of optic chiasm, initial encounter|Injury of optic chiasm, initial encounter +C2831664|T037|AB|S04.02XD|ICD10CM|Injury of optic chiasm, subsequent encounter|Injury of optic chiasm, subsequent encounter +C2831664|T037|PT|S04.02XD|ICD10CM|Injury of optic chiasm, subsequent encounter|Injury of optic chiasm, subsequent encounter +C2831665|T037|AB|S04.02XS|ICD10CM|Injury of optic chiasm, sequela|Injury of optic chiasm, sequela +C2831665|T037|PT|S04.02XS|ICD10CM|Injury of optic chiasm, sequela|Injury of optic chiasm, sequela +C0338527|T047|ET|S04.03|ICD10CM|Injury of optic radiation|Injury of optic radiation +C2831674|T037|AB|S04.03|ICD10CM|Injury of optic tract and pathways|Injury of optic tract and pathways +C2831674|T037|HT|S04.03|ICD10CM|Injury of optic tract and pathways|Injury of optic tract and pathways +C2831666|T037|AB|S04.031|ICD10CM|Injury of optic tract and pathways, right side|Injury of optic tract and pathways, right side +C2831666|T037|HT|S04.031|ICD10CM|Injury of optic tract and pathways, right side|Injury of optic tract and pathways, right side +C2831667|T037|AB|S04.031A|ICD10CM|Injury of optic tract and pathways, right side, init|Injury of optic tract and pathways, right side, init +C2831667|T037|PT|S04.031A|ICD10CM|Injury of optic tract and pathways, right side, initial encounter|Injury of optic tract and pathways, right side, initial encounter +C2831668|T037|AB|S04.031D|ICD10CM|Injury of optic tract and pathways, right side, subs|Injury of optic tract and pathways, right side, subs +C2831668|T037|PT|S04.031D|ICD10CM|Injury of optic tract and pathways, right side, subsequent encounter|Injury of optic tract and pathways, right side, subsequent encounter +C2831669|T037|AB|S04.031S|ICD10CM|Injury of optic tract and pathways, right side, sequela|Injury of optic tract and pathways, right side, sequela +C2831669|T037|PT|S04.031S|ICD10CM|Injury of optic tract and pathways, right side, sequela|Injury of optic tract and pathways, right side, sequela +C2831670|T037|AB|S04.032|ICD10CM|Injury of optic tract and pathways, left side|Injury of optic tract and pathways, left side +C2831670|T037|HT|S04.032|ICD10CM|Injury of optic tract and pathways, left side|Injury of optic tract and pathways, left side +C2831671|T037|AB|S04.032A|ICD10CM|Injury of optic tract and pathways, left side, init|Injury of optic tract and pathways, left side, init +C2831671|T037|PT|S04.032A|ICD10CM|Injury of optic tract and pathways, left side, initial encounter|Injury of optic tract and pathways, left side, initial encounter +C2831672|T037|AB|S04.032D|ICD10CM|Injury of optic tract and pathways, left side, subs|Injury of optic tract and pathways, left side, subs +C2831672|T037|PT|S04.032D|ICD10CM|Injury of optic tract and pathways, left side, subsequent encounter|Injury of optic tract and pathways, left side, subsequent encounter +C2831673|T037|AB|S04.032S|ICD10CM|Injury of optic tract and pathways, left side, sequela|Injury of optic tract and pathways, left side, sequela +C2831673|T037|PT|S04.032S|ICD10CM|Injury of optic tract and pathways, left side, sequela|Injury of optic tract and pathways, left side, sequela +C2831674|T037|ET|S04.039|ICD10CM|Injury of optic tract and pathways NOS|Injury of optic tract and pathways NOS +C2831675|T037|AB|S04.039|ICD10CM|Injury of optic tract and pathways, unspecified side|Injury of optic tract and pathways, unspecified side +C2831675|T037|HT|S04.039|ICD10CM|Injury of optic tract and pathways, unspecified side|Injury of optic tract and pathways, unspecified side +C2831676|T037|AB|S04.039A|ICD10CM|Injury of optic tract and pathways, unspecified side, init|Injury of optic tract and pathways, unspecified side, init +C2831676|T037|PT|S04.039A|ICD10CM|Injury of optic tract and pathways, unspecified side, initial encounter|Injury of optic tract and pathways, unspecified side, initial encounter +C2831677|T037|AB|S04.039D|ICD10CM|Injury of optic tract and pathways, unspecified side, subs|Injury of optic tract and pathways, unspecified side, subs +C2831677|T037|PT|S04.039D|ICD10CM|Injury of optic tract and pathways, unspecified side, subsequent encounter|Injury of optic tract and pathways, unspecified side, subsequent encounter +C2831678|T037|AB|S04.039S|ICD10CM|Injury of optic tract and pathways, unsp side, sequela|Injury of optic tract and pathways, unsp side, sequela +C2831678|T037|PT|S04.039S|ICD10CM|Injury of optic tract and pathways, unspecified side, sequela|Injury of optic tract and pathways, unspecified side, sequela +C0161401|T037|AB|S04.04|ICD10CM|Injury of visual cortex|Injury of visual cortex +C0161401|T037|HT|S04.04|ICD10CM|Injury of visual cortex|Injury of visual cortex +C2831679|T037|AB|S04.041|ICD10CM|Injury of visual cortex, right side|Injury of visual cortex, right side +C2831679|T037|HT|S04.041|ICD10CM|Injury of visual cortex, right side|Injury of visual cortex, right side +C2831680|T037|AB|S04.041A|ICD10CM|Injury of visual cortex, right side, initial encounter|Injury of visual cortex, right side, initial encounter +C2831680|T037|PT|S04.041A|ICD10CM|Injury of visual cortex, right side, initial encounter|Injury of visual cortex, right side, initial encounter +C2831681|T037|AB|S04.041D|ICD10CM|Injury of visual cortex, right side, subsequent encounter|Injury of visual cortex, right side, subsequent encounter +C2831681|T037|PT|S04.041D|ICD10CM|Injury of visual cortex, right side, subsequent encounter|Injury of visual cortex, right side, subsequent encounter +C2831682|T037|AB|S04.041S|ICD10CM|Injury of visual cortex, right side, sequela|Injury of visual cortex, right side, sequela +C2831682|T037|PT|S04.041S|ICD10CM|Injury of visual cortex, right side, sequela|Injury of visual cortex, right side, sequela +C2831683|T037|AB|S04.042|ICD10CM|Injury of visual cortex, left side|Injury of visual cortex, left side +C2831683|T037|HT|S04.042|ICD10CM|Injury of visual cortex, left side|Injury of visual cortex, left side +C2831684|T037|AB|S04.042A|ICD10CM|Injury of visual cortex, left side, initial encounter|Injury of visual cortex, left side, initial encounter +C2831684|T037|PT|S04.042A|ICD10CM|Injury of visual cortex, left side, initial encounter|Injury of visual cortex, left side, initial encounter +C2831685|T037|AB|S04.042D|ICD10CM|Injury of visual cortex, left side, subsequent encounter|Injury of visual cortex, left side, subsequent encounter +C2831685|T037|PT|S04.042D|ICD10CM|Injury of visual cortex, left side, subsequent encounter|Injury of visual cortex, left side, subsequent encounter +C2831686|T037|AB|S04.042S|ICD10CM|Injury of visual cortex, left side, sequela|Injury of visual cortex, left side, sequela +C2831686|T037|PT|S04.042S|ICD10CM|Injury of visual cortex, left side, sequela|Injury of visual cortex, left side, sequela +C0161401|T037|ET|S04.049|ICD10CM|Injury of visual cortex NOS|Injury of visual cortex NOS +C2831687|T037|AB|S04.049|ICD10CM|Injury of visual cortex, unspecified side|Injury of visual cortex, unspecified side +C2831687|T037|HT|S04.049|ICD10CM|Injury of visual cortex, unspecified side|Injury of visual cortex, unspecified side +C2831688|T037|AB|S04.049A|ICD10CM|Injury of visual cortex, unspecified side, initial encounter|Injury of visual cortex, unspecified side, initial encounter +C2831688|T037|PT|S04.049A|ICD10CM|Injury of visual cortex, unspecified side, initial encounter|Injury of visual cortex, unspecified side, initial encounter +C2831689|T037|AB|S04.049D|ICD10CM|Injury of visual cortex, unspecified side, subs|Injury of visual cortex, unspecified side, subs +C2831689|T037|PT|S04.049D|ICD10CM|Injury of visual cortex, unspecified side, subsequent encounter|Injury of visual cortex, unspecified side, subsequent encounter +C2831690|T037|AB|S04.049S|ICD10CM|Injury of visual cortex, unspecified side, sequela|Injury of visual cortex, unspecified side, sequela +C2831690|T037|PT|S04.049S|ICD10CM|Injury of visual cortex, unspecified side, sequela|Injury of visual cortex, unspecified side, sequela +C2831691|T037|ET|S04.1|ICD10CM|Injury of 3rd cranial nerve|Injury of 3rd cranial nerve +C1321926|T037|HT|S04.1|ICD10CM|Injury of oculomotor nerve|Injury of oculomotor nerve +C1321926|T037|AB|S04.1|ICD10CM|Injury of oculomotor nerve|Injury of oculomotor nerve +C1321926|T037|PT|S04.1|ICD10|Injury of oculomotor nerve|Injury of oculomotor nerve +C2831692|T037|AB|S04.10|ICD10CM|Injury of oculomotor nerve, unspecified side|Injury of oculomotor nerve, unspecified side +C2831692|T037|HT|S04.10|ICD10CM|Injury of oculomotor nerve, unspecified side|Injury of oculomotor nerve, unspecified side +C2831693|T037|AB|S04.10XA|ICD10CM|Injury of oculomotor nerve, unspecified side, init encntr|Injury of oculomotor nerve, unspecified side, init encntr +C2831693|T037|PT|S04.10XA|ICD10CM|Injury of oculomotor nerve, unspecified side, initial encounter|Injury of oculomotor nerve, unspecified side, initial encounter +C2831694|T037|AB|S04.10XD|ICD10CM|Injury of oculomotor nerve, unspecified side, subs encntr|Injury of oculomotor nerve, unspecified side, subs encntr +C2831694|T037|PT|S04.10XD|ICD10CM|Injury of oculomotor nerve, unspecified side, subsequent encounter|Injury of oculomotor nerve, unspecified side, subsequent encounter +C2831695|T037|AB|S04.10XS|ICD10CM|Injury of oculomotor nerve, unspecified side, sequela|Injury of oculomotor nerve, unspecified side, sequela +C2831695|T037|PT|S04.10XS|ICD10CM|Injury of oculomotor nerve, unspecified side, sequela|Injury of oculomotor nerve, unspecified side, sequela +C2831696|T037|AB|S04.11|ICD10CM|Injury of oculomotor nerve, right side|Injury of oculomotor nerve, right side +C2831696|T037|HT|S04.11|ICD10CM|Injury of oculomotor nerve, right side|Injury of oculomotor nerve, right side +C2831697|T037|AB|S04.11XA|ICD10CM|Injury of oculomotor nerve, right side, initial encounter|Injury of oculomotor nerve, right side, initial encounter +C2831697|T037|PT|S04.11XA|ICD10CM|Injury of oculomotor nerve, right side, initial encounter|Injury of oculomotor nerve, right side, initial encounter +C2831698|T037|AB|S04.11XD|ICD10CM|Injury of oculomotor nerve, right side, subsequent encounter|Injury of oculomotor nerve, right side, subsequent encounter +C2831698|T037|PT|S04.11XD|ICD10CM|Injury of oculomotor nerve, right side, subsequent encounter|Injury of oculomotor nerve, right side, subsequent encounter +C2831699|T037|AB|S04.11XS|ICD10CM|Injury of oculomotor nerve, right side, sequela|Injury of oculomotor nerve, right side, sequela +C2831699|T037|PT|S04.11XS|ICD10CM|Injury of oculomotor nerve, right side, sequela|Injury of oculomotor nerve, right side, sequela +C2831700|T037|AB|S04.12|ICD10CM|Injury of oculomotor nerve, left side|Injury of oculomotor nerve, left side +C2831700|T037|HT|S04.12|ICD10CM|Injury of oculomotor nerve, left side|Injury of oculomotor nerve, left side +C2831701|T037|AB|S04.12XA|ICD10CM|Injury of oculomotor nerve, left side, initial encounter|Injury of oculomotor nerve, left side, initial encounter +C2831701|T037|PT|S04.12XA|ICD10CM|Injury of oculomotor nerve, left side, initial encounter|Injury of oculomotor nerve, left side, initial encounter +C2831702|T037|AB|S04.12XD|ICD10CM|Injury of oculomotor nerve, left side, subsequent encounter|Injury of oculomotor nerve, left side, subsequent encounter +C2831702|T037|PT|S04.12XD|ICD10CM|Injury of oculomotor nerve, left side, subsequent encounter|Injury of oculomotor nerve, left side, subsequent encounter +C2831703|T037|AB|S04.12XS|ICD10CM|Injury of oculomotor nerve, left side, sequela|Injury of oculomotor nerve, left side, sequela +C2831703|T037|PT|S04.12XS|ICD10CM|Injury of oculomotor nerve, left side, sequela|Injury of oculomotor nerve, left side, sequela +C2831704|T037|ET|S04.2|ICD10CM|Injury of 4th cranial nerve|Injury of 4th cranial nerve +C0161405|T037|HT|S04.2|ICD10CM|Injury of trochlear nerve|Injury of trochlear nerve +C0161405|T037|AB|S04.2|ICD10CM|Injury of trochlear nerve|Injury of trochlear nerve +C0161405|T037|PT|S04.2|ICD10|Injury of trochlear nerve|Injury of trochlear nerve +C2831705|T037|AB|S04.20|ICD10CM|Injury of trochlear nerve, unspecified side|Injury of trochlear nerve, unspecified side +C2831705|T037|HT|S04.20|ICD10CM|Injury of trochlear nerve, unspecified side|Injury of trochlear nerve, unspecified side +C2831706|T037|AB|S04.20XA|ICD10CM|Injury of trochlear nerve, unspecified side, init encntr|Injury of trochlear nerve, unspecified side, init encntr +C2831706|T037|PT|S04.20XA|ICD10CM|Injury of trochlear nerve, unspecified side, initial encounter|Injury of trochlear nerve, unspecified side, initial encounter +C2831707|T037|AB|S04.20XD|ICD10CM|Injury of trochlear nerve, unspecified side, subs encntr|Injury of trochlear nerve, unspecified side, subs encntr +C2831707|T037|PT|S04.20XD|ICD10CM|Injury of trochlear nerve, unspecified side, subsequent encounter|Injury of trochlear nerve, unspecified side, subsequent encounter +C2831708|T037|AB|S04.20XS|ICD10CM|Injury of trochlear nerve, unspecified side, sequela|Injury of trochlear nerve, unspecified side, sequela +C2831708|T037|PT|S04.20XS|ICD10CM|Injury of trochlear nerve, unspecified side, sequela|Injury of trochlear nerve, unspecified side, sequela +C2831709|T037|AB|S04.21|ICD10CM|Injury of trochlear nerve, right side|Injury of trochlear nerve, right side +C2831709|T037|HT|S04.21|ICD10CM|Injury of trochlear nerve, right side|Injury of trochlear nerve, right side +C2831710|T037|AB|S04.21XA|ICD10CM|Injury of trochlear nerve, right side, initial encounter|Injury of trochlear nerve, right side, initial encounter +C2831710|T037|PT|S04.21XA|ICD10CM|Injury of trochlear nerve, right side, initial encounter|Injury of trochlear nerve, right side, initial encounter +C2831711|T037|AB|S04.21XD|ICD10CM|Injury of trochlear nerve, right side, subsequent encounter|Injury of trochlear nerve, right side, subsequent encounter +C2831711|T037|PT|S04.21XD|ICD10CM|Injury of trochlear nerve, right side, subsequent encounter|Injury of trochlear nerve, right side, subsequent encounter +C2831712|T037|AB|S04.21XS|ICD10CM|Injury of trochlear nerve, right side, sequela|Injury of trochlear nerve, right side, sequela +C2831712|T037|PT|S04.21XS|ICD10CM|Injury of trochlear nerve, right side, sequela|Injury of trochlear nerve, right side, sequela +C2831713|T037|AB|S04.22|ICD10CM|Injury of trochlear nerve, left side|Injury of trochlear nerve, left side +C2831713|T037|HT|S04.22|ICD10CM|Injury of trochlear nerve, left side|Injury of trochlear nerve, left side +C2831714|T037|AB|S04.22XA|ICD10CM|Injury of trochlear nerve, left side, initial encounter|Injury of trochlear nerve, left side, initial encounter +C2831714|T037|PT|S04.22XA|ICD10CM|Injury of trochlear nerve, left side, initial encounter|Injury of trochlear nerve, left side, initial encounter +C2831715|T037|AB|S04.22XD|ICD10CM|Injury of trochlear nerve, left side, subsequent encounter|Injury of trochlear nerve, left side, subsequent encounter +C2831715|T037|PT|S04.22XD|ICD10CM|Injury of trochlear nerve, left side, subsequent encounter|Injury of trochlear nerve, left side, subsequent encounter +C2831716|T037|AB|S04.22XS|ICD10CM|Injury of trochlear nerve, left side, sequela|Injury of trochlear nerve, left side, sequela +C2831716|T037|PT|S04.22XS|ICD10CM|Injury of trochlear nerve, left side, sequela|Injury of trochlear nerve, left side, sequela +C2831717|T037|ET|S04.3|ICD10CM|Injury of 5th cranial nerve|Injury of 5th cranial nerve +C0161406|T037|PT|S04.3|ICD10|Injury of trigeminal nerve|Injury of trigeminal nerve +C0161406|T037|HT|S04.3|ICD10CM|Injury of trigeminal nerve|Injury of trigeminal nerve +C0161406|T037|AB|S04.3|ICD10CM|Injury of trigeminal nerve|Injury of trigeminal nerve +C2831718|T037|AB|S04.30|ICD10CM|Injury of trigeminal nerve, unspecified side|Injury of trigeminal nerve, unspecified side +C2831718|T037|HT|S04.30|ICD10CM|Injury of trigeminal nerve, unspecified side|Injury of trigeminal nerve, unspecified side +C2831719|T037|AB|S04.30XA|ICD10CM|Injury of trigeminal nerve, unspecified side, init encntr|Injury of trigeminal nerve, unspecified side, init encntr +C2831719|T037|PT|S04.30XA|ICD10CM|Injury of trigeminal nerve, unspecified side, initial encounter|Injury of trigeminal nerve, unspecified side, initial encounter +C2831720|T037|AB|S04.30XD|ICD10CM|Injury of trigeminal nerve, unspecified side, subs encntr|Injury of trigeminal nerve, unspecified side, subs encntr +C2831720|T037|PT|S04.30XD|ICD10CM|Injury of trigeminal nerve, unspecified side, subsequent encounter|Injury of trigeminal nerve, unspecified side, subsequent encounter +C2831721|T037|AB|S04.30XS|ICD10CM|Injury of trigeminal nerve, unspecified side, sequela|Injury of trigeminal nerve, unspecified side, sequela +C2831721|T037|PT|S04.30XS|ICD10CM|Injury of trigeminal nerve, unspecified side, sequela|Injury of trigeminal nerve, unspecified side, sequela +C2831722|T037|AB|S04.31|ICD10CM|Injury of trigeminal nerve, right side|Injury of trigeminal nerve, right side +C2831722|T037|HT|S04.31|ICD10CM|Injury of trigeminal nerve, right side|Injury of trigeminal nerve, right side +C2831723|T037|AB|S04.31XA|ICD10CM|Injury of trigeminal nerve, right side, initial encounter|Injury of trigeminal nerve, right side, initial encounter +C2831723|T037|PT|S04.31XA|ICD10CM|Injury of trigeminal nerve, right side, initial encounter|Injury of trigeminal nerve, right side, initial encounter +C2831724|T037|AB|S04.31XD|ICD10CM|Injury of trigeminal nerve, right side, subsequent encounter|Injury of trigeminal nerve, right side, subsequent encounter +C2831724|T037|PT|S04.31XD|ICD10CM|Injury of trigeminal nerve, right side, subsequent encounter|Injury of trigeminal nerve, right side, subsequent encounter +C2831725|T037|AB|S04.31XS|ICD10CM|Injury of trigeminal nerve, right side, sequela|Injury of trigeminal nerve, right side, sequela +C2831725|T037|PT|S04.31XS|ICD10CM|Injury of trigeminal nerve, right side, sequela|Injury of trigeminal nerve, right side, sequela +C2831726|T037|AB|S04.32|ICD10CM|Injury of trigeminal nerve, left side|Injury of trigeminal nerve, left side +C2831726|T037|HT|S04.32|ICD10CM|Injury of trigeminal nerve, left side|Injury of trigeminal nerve, left side +C2831727|T037|AB|S04.32XA|ICD10CM|Injury of trigeminal nerve, left side, initial encounter|Injury of trigeminal nerve, left side, initial encounter +C2831727|T037|PT|S04.32XA|ICD10CM|Injury of trigeminal nerve, left side, initial encounter|Injury of trigeminal nerve, left side, initial encounter +C2831728|T037|AB|S04.32XD|ICD10CM|Injury of trigeminal nerve, left side, subsequent encounter|Injury of trigeminal nerve, left side, subsequent encounter +C2831728|T037|PT|S04.32XD|ICD10CM|Injury of trigeminal nerve, left side, subsequent encounter|Injury of trigeminal nerve, left side, subsequent encounter +C2831729|T037|AB|S04.32XS|ICD10CM|Injury of trigeminal nerve, left side, sequela|Injury of trigeminal nerve, left side, sequela +C2831729|T037|PT|S04.32XS|ICD10CM|Injury of trigeminal nerve, left side, sequela|Injury of trigeminal nerve, left side, sequela +C2831730|T037|ET|S04.4|ICD10CM|Injury of 6th cranial nerve|Injury of 6th cranial nerve +C0161407|T037|HT|S04.4|ICD10CM|Injury of abducent nerve|Injury of abducent nerve +C0161407|T037|AB|S04.4|ICD10CM|Injury of abducent nerve|Injury of abducent nerve +C0161407|T037|PT|S04.4|ICD10|Injury of abducent nerve|Injury of abducent nerve +C2831731|T037|AB|S04.40|ICD10CM|Injury of abducent nerve, unspecified side|Injury of abducent nerve, unspecified side +C2831731|T037|HT|S04.40|ICD10CM|Injury of abducent nerve, unspecified side|Injury of abducent nerve, unspecified side +C2831732|T037|AB|S04.40XA|ICD10CM|Injury of abducent nerve, unspecified side, init encntr|Injury of abducent nerve, unspecified side, init encntr +C2831732|T037|PT|S04.40XA|ICD10CM|Injury of abducent nerve, unspecified side, initial encounter|Injury of abducent nerve, unspecified side, initial encounter +C2831733|T037|AB|S04.40XD|ICD10CM|Injury of abducent nerve, unspecified side, subs encntr|Injury of abducent nerve, unspecified side, subs encntr +C2831733|T037|PT|S04.40XD|ICD10CM|Injury of abducent nerve, unspecified side, subsequent encounter|Injury of abducent nerve, unspecified side, subsequent encounter +C2831734|T037|AB|S04.40XS|ICD10CM|Injury of abducent nerve, unspecified side, sequela|Injury of abducent nerve, unspecified side, sequela +C2831734|T037|PT|S04.40XS|ICD10CM|Injury of abducent nerve, unspecified side, sequela|Injury of abducent nerve, unspecified side, sequela +C2831735|T037|AB|S04.41|ICD10CM|Injury of abducent nerve, right side|Injury of abducent nerve, right side +C2831735|T037|HT|S04.41|ICD10CM|Injury of abducent nerve, right side|Injury of abducent nerve, right side +C2831736|T037|AB|S04.41XA|ICD10CM|Injury of abducent nerve, right side, initial encounter|Injury of abducent nerve, right side, initial encounter +C2831736|T037|PT|S04.41XA|ICD10CM|Injury of abducent nerve, right side, initial encounter|Injury of abducent nerve, right side, initial encounter +C2831737|T037|AB|S04.41XD|ICD10CM|Injury of abducent nerve, right side, subsequent encounter|Injury of abducent nerve, right side, subsequent encounter +C2831737|T037|PT|S04.41XD|ICD10CM|Injury of abducent nerve, right side, subsequent encounter|Injury of abducent nerve, right side, subsequent encounter +C2831738|T037|AB|S04.41XS|ICD10CM|Injury of abducent nerve, right side, sequela|Injury of abducent nerve, right side, sequela +C2831738|T037|PT|S04.41XS|ICD10CM|Injury of abducent nerve, right side, sequela|Injury of abducent nerve, right side, sequela +C2831739|T037|AB|S04.42|ICD10CM|Injury of abducent nerve, left side|Injury of abducent nerve, left side +C2831739|T037|HT|S04.42|ICD10CM|Injury of abducent nerve, left side|Injury of abducent nerve, left side +C2831740|T037|AB|S04.42XA|ICD10CM|Injury of abducent nerve, left side, initial encounter|Injury of abducent nerve, left side, initial encounter +C2831740|T037|PT|S04.42XA|ICD10CM|Injury of abducent nerve, left side, initial encounter|Injury of abducent nerve, left side, initial encounter +C2831741|T037|AB|S04.42XD|ICD10CM|Injury of abducent nerve, left side, subsequent encounter|Injury of abducent nerve, left side, subsequent encounter +C2831741|T037|PT|S04.42XD|ICD10CM|Injury of abducent nerve, left side, subsequent encounter|Injury of abducent nerve, left side, subsequent encounter +C2831742|T037|AB|S04.42XS|ICD10CM|Injury of abducent nerve, left side, sequela|Injury of abducent nerve, left side, sequela +C2831742|T037|PT|S04.42XS|ICD10CM|Injury of abducent nerve, left side, sequela|Injury of abducent nerve, left side, sequela +C2831743|T037|ET|S04.5|ICD10CM|Injury of 7th cranial nerve|Injury of 7th cranial nerve +C0161408|T037|PT|S04.5|ICD10|Injury of facial nerve|Injury of facial nerve +C0161408|T037|HT|S04.5|ICD10CM|Injury of facial nerve|Injury of facial nerve +C0161408|T037|AB|S04.5|ICD10CM|Injury of facial nerve|Injury of facial nerve +C2831744|T037|AB|S04.50|ICD10CM|Injury of facial nerve, unspecified side|Injury of facial nerve, unspecified side +C2831744|T037|HT|S04.50|ICD10CM|Injury of facial nerve, unspecified side|Injury of facial nerve, unspecified side +C2831745|T037|AB|S04.50XA|ICD10CM|Injury of facial nerve, unspecified side, initial encounter|Injury of facial nerve, unspecified side, initial encounter +C2831745|T037|PT|S04.50XA|ICD10CM|Injury of facial nerve, unspecified side, initial encounter|Injury of facial nerve, unspecified side, initial encounter +C2831746|T037|AB|S04.50XD|ICD10CM|Injury of facial nerve, unspecified side, subs encntr|Injury of facial nerve, unspecified side, subs encntr +C2831746|T037|PT|S04.50XD|ICD10CM|Injury of facial nerve, unspecified side, subsequent encounter|Injury of facial nerve, unspecified side, subsequent encounter +C2831747|T037|AB|S04.50XS|ICD10CM|Injury of facial nerve, unspecified side, sequela|Injury of facial nerve, unspecified side, sequela +C2831747|T037|PT|S04.50XS|ICD10CM|Injury of facial nerve, unspecified side, sequela|Injury of facial nerve, unspecified side, sequela +C2831748|T037|AB|S04.51|ICD10CM|Injury of facial nerve, right side|Injury of facial nerve, right side +C2831748|T037|HT|S04.51|ICD10CM|Injury of facial nerve, right side|Injury of facial nerve, right side +C2831749|T037|AB|S04.51XA|ICD10CM|Injury of facial nerve, right side, initial encounter|Injury of facial nerve, right side, initial encounter +C2831749|T037|PT|S04.51XA|ICD10CM|Injury of facial nerve, right side, initial encounter|Injury of facial nerve, right side, initial encounter +C2831750|T037|AB|S04.51XD|ICD10CM|Injury of facial nerve, right side, subsequent encounter|Injury of facial nerve, right side, subsequent encounter +C2831750|T037|PT|S04.51XD|ICD10CM|Injury of facial nerve, right side, subsequent encounter|Injury of facial nerve, right side, subsequent encounter +C2831751|T037|AB|S04.51XS|ICD10CM|Injury of facial nerve, right side, sequela|Injury of facial nerve, right side, sequela +C2831751|T037|PT|S04.51XS|ICD10CM|Injury of facial nerve, right side, sequela|Injury of facial nerve, right side, sequela +C2831752|T037|AB|S04.52|ICD10CM|Injury of facial nerve, left side|Injury of facial nerve, left side +C2831752|T037|HT|S04.52|ICD10CM|Injury of facial nerve, left side|Injury of facial nerve, left side +C2831753|T037|AB|S04.52XA|ICD10CM|Injury of facial nerve, left side, initial encounter|Injury of facial nerve, left side, initial encounter +C2831753|T037|PT|S04.52XA|ICD10CM|Injury of facial nerve, left side, initial encounter|Injury of facial nerve, left side, initial encounter +C2831754|T037|AB|S04.52XD|ICD10CM|Injury of facial nerve, left side, subsequent encounter|Injury of facial nerve, left side, subsequent encounter +C2831754|T037|PT|S04.52XD|ICD10CM|Injury of facial nerve, left side, subsequent encounter|Injury of facial nerve, left side, subsequent encounter +C2831755|T037|AB|S04.52XS|ICD10CM|Injury of facial nerve, left side, sequela|Injury of facial nerve, left side, sequela +C2831755|T037|PT|S04.52XS|ICD10CM|Injury of facial nerve, left side, sequela|Injury of facial nerve, left side, sequela +C0161409|T037|ET|S04.6|ICD10CM|Injury of 8th cranial nerve|Injury of 8th cranial nerve +C0161409|T037|HT|S04.6|ICD10CM|Injury of acoustic nerve|Injury of acoustic nerve +C0161409|T037|AB|S04.6|ICD10CM|Injury of acoustic nerve|Injury of acoustic nerve +C0161409|T037|PT|S04.6|ICD10|Injury of acoustic nerve|Injury of acoustic nerve +C0161409|T037|ET|S04.6|ICD10CM|Injury of auditory nerve|Injury of auditory nerve +C2831757|T037|AB|S04.60|ICD10CM|Injury of acoustic nerve, unspecified side|Injury of acoustic nerve, unspecified side +C2831757|T037|HT|S04.60|ICD10CM|Injury of acoustic nerve, unspecified side|Injury of acoustic nerve, unspecified side +C2831758|T037|AB|S04.60XA|ICD10CM|Injury of acoustic nerve, unspecified side, init encntr|Injury of acoustic nerve, unspecified side, init encntr +C2831758|T037|PT|S04.60XA|ICD10CM|Injury of acoustic nerve, unspecified side, initial encounter|Injury of acoustic nerve, unspecified side, initial encounter +C2831759|T037|AB|S04.60XD|ICD10CM|Injury of acoustic nerve, unspecified side, subs encntr|Injury of acoustic nerve, unspecified side, subs encntr +C2831759|T037|PT|S04.60XD|ICD10CM|Injury of acoustic nerve, unspecified side, subsequent encounter|Injury of acoustic nerve, unspecified side, subsequent encounter +C2831760|T037|AB|S04.60XS|ICD10CM|Injury of acoustic nerve, unspecified side, sequela|Injury of acoustic nerve, unspecified side, sequela +C2831760|T037|PT|S04.60XS|ICD10CM|Injury of acoustic nerve, unspecified side, sequela|Injury of acoustic nerve, unspecified side, sequela +C2831761|T037|AB|S04.61|ICD10CM|Injury of acoustic nerve, right side|Injury of acoustic nerve, right side +C2831761|T037|HT|S04.61|ICD10CM|Injury of acoustic nerve, right side|Injury of acoustic nerve, right side +C2831762|T037|AB|S04.61XA|ICD10CM|Injury of acoustic nerve, right side, initial encounter|Injury of acoustic nerve, right side, initial encounter +C2831762|T037|PT|S04.61XA|ICD10CM|Injury of acoustic nerve, right side, initial encounter|Injury of acoustic nerve, right side, initial encounter +C2831763|T037|AB|S04.61XD|ICD10CM|Injury of acoustic nerve, right side, subsequent encounter|Injury of acoustic nerve, right side, subsequent encounter +C2831763|T037|PT|S04.61XD|ICD10CM|Injury of acoustic nerve, right side, subsequent encounter|Injury of acoustic nerve, right side, subsequent encounter +C2831764|T037|AB|S04.61XS|ICD10CM|Injury of acoustic nerve, right side, sequela|Injury of acoustic nerve, right side, sequela +C2831764|T037|PT|S04.61XS|ICD10CM|Injury of acoustic nerve, right side, sequela|Injury of acoustic nerve, right side, sequela +C2831765|T037|AB|S04.62|ICD10CM|Injury of acoustic nerve, left side|Injury of acoustic nerve, left side +C2831765|T037|HT|S04.62|ICD10CM|Injury of acoustic nerve, left side|Injury of acoustic nerve, left side +C2831766|T037|AB|S04.62XA|ICD10CM|Injury of acoustic nerve, left side, initial encounter|Injury of acoustic nerve, left side, initial encounter +C2831766|T037|PT|S04.62XA|ICD10CM|Injury of acoustic nerve, left side, initial encounter|Injury of acoustic nerve, left side, initial encounter +C2831767|T037|AB|S04.62XD|ICD10CM|Injury of acoustic nerve, left side, subsequent encounter|Injury of acoustic nerve, left side, subsequent encounter +C2831767|T037|PT|S04.62XD|ICD10CM|Injury of acoustic nerve, left side, subsequent encounter|Injury of acoustic nerve, left side, subsequent encounter +C2831768|T037|AB|S04.62XS|ICD10CM|Injury of acoustic nerve, left side, sequela|Injury of acoustic nerve, left side, sequela +C2831768|T037|PT|S04.62XS|ICD10CM|Injury of acoustic nerve, left side, sequela|Injury of acoustic nerve, left side, sequela +C0161410|T037|ET|S04.7|ICD10CM|Injury of 11th cranial nerve|Injury of 11th cranial nerve +C0161410|T037|HT|S04.7|ICD10CM|Injury of accessory nerve|Injury of accessory nerve +C0161410|T037|AB|S04.7|ICD10CM|Injury of accessory nerve|Injury of accessory nerve +C0161410|T037|PT|S04.7|ICD10|Injury of accessory nerve|Injury of accessory nerve +C2831770|T037|AB|S04.70|ICD10CM|Injury of accessory nerve, unspecified side|Injury of accessory nerve, unspecified side +C2831770|T037|HT|S04.70|ICD10CM|Injury of accessory nerve, unspecified side|Injury of accessory nerve, unspecified side +C2831771|T037|AB|S04.70XA|ICD10CM|Injury of accessory nerve, unspecified side, init encntr|Injury of accessory nerve, unspecified side, init encntr +C2831771|T037|PT|S04.70XA|ICD10CM|Injury of accessory nerve, unspecified side, initial encounter|Injury of accessory nerve, unspecified side, initial encounter +C2831772|T037|AB|S04.70XD|ICD10CM|Injury of accessory nerve, unspecified side, subs encntr|Injury of accessory nerve, unspecified side, subs encntr +C2831772|T037|PT|S04.70XD|ICD10CM|Injury of accessory nerve, unspecified side, subsequent encounter|Injury of accessory nerve, unspecified side, subsequent encounter +C2831773|T037|AB|S04.70XS|ICD10CM|Injury of accessory nerve, unspecified side, sequela|Injury of accessory nerve, unspecified side, sequela +C2831773|T037|PT|S04.70XS|ICD10CM|Injury of accessory nerve, unspecified side, sequela|Injury of accessory nerve, unspecified side, sequela +C2831774|T037|AB|S04.71|ICD10CM|Injury of accessory nerve, right side|Injury of accessory nerve, right side +C2831774|T037|HT|S04.71|ICD10CM|Injury of accessory nerve, right side|Injury of accessory nerve, right side +C2831775|T037|AB|S04.71XA|ICD10CM|Injury of accessory nerve, right side, initial encounter|Injury of accessory nerve, right side, initial encounter +C2831775|T037|PT|S04.71XA|ICD10CM|Injury of accessory nerve, right side, initial encounter|Injury of accessory nerve, right side, initial encounter +C2831776|T037|AB|S04.71XD|ICD10CM|Injury of accessory nerve, right side, subsequent encounter|Injury of accessory nerve, right side, subsequent encounter +C2831776|T037|PT|S04.71XD|ICD10CM|Injury of accessory nerve, right side, subsequent encounter|Injury of accessory nerve, right side, subsequent encounter +C2831777|T037|AB|S04.71XS|ICD10CM|Injury of accessory nerve, right side, sequela|Injury of accessory nerve, right side, sequela +C2831777|T037|PT|S04.71XS|ICD10CM|Injury of accessory nerve, right side, sequela|Injury of accessory nerve, right side, sequela +C2831778|T037|AB|S04.72|ICD10CM|Injury of accessory nerve, left side|Injury of accessory nerve, left side +C2831778|T037|HT|S04.72|ICD10CM|Injury of accessory nerve, left side|Injury of accessory nerve, left side +C2831779|T037|AB|S04.72XA|ICD10CM|Injury of accessory nerve, left side, initial encounter|Injury of accessory nerve, left side, initial encounter +C2831779|T037|PT|S04.72XA|ICD10CM|Injury of accessory nerve, left side, initial encounter|Injury of accessory nerve, left side, initial encounter +C2831780|T037|AB|S04.72XD|ICD10CM|Injury of accessory nerve, left side, subsequent encounter|Injury of accessory nerve, left side, subsequent encounter +C2831780|T037|PT|S04.72XD|ICD10CM|Injury of accessory nerve, left side, subsequent encounter|Injury of accessory nerve, left side, subsequent encounter +C2831781|T037|AB|S04.72XS|ICD10CM|Injury of accessory nerve, left side, sequela|Injury of accessory nerve, left side, sequela +C2831781|T037|PT|S04.72XS|ICD10CM|Injury of accessory nerve, left side, sequela|Injury of accessory nerve, left side, sequela +C0478205|T037|HT|S04.8|ICD10CM|Injury of other cranial nerves|Injury of other cranial nerves +C0478205|T037|AB|S04.8|ICD10CM|Injury of other cranial nerves|Injury of other cranial nerves +C0478205|T037|PT|S04.8|ICD10|Injury of other cranial nerves|Injury of other cranial nerves +C0273487|T037|AB|S04.81|ICD10CM|Injury of olfactory [1st ] nerve|Injury of olfactory [1st ] nerve +C0273487|T037|HT|S04.81|ICD10CM|Injury of olfactory [1st ] nerve|Injury of olfactory [1st ] nerve +C2831782|T037|AB|S04.811|ICD10CM|Injury of olfactory [1st ] nerve, right side|Injury of olfactory [1st ] nerve, right side +C2831782|T037|HT|S04.811|ICD10CM|Injury of olfactory [1st ] nerve, right side|Injury of olfactory [1st ] nerve, right side +C2831783|T037|PT|S04.811A|ICD10CM|Injury of olfactory [1st ] nerve, right side, initial encounter|Injury of olfactory [1st ] nerve, right side, initial encounter +C2831783|T037|AB|S04.811A|ICD10CM|Injury of olfactory nerve, right side, initial encounter|Injury of olfactory nerve, right side, initial encounter +C2831784|T037|PT|S04.811D|ICD10CM|Injury of olfactory [1st ] nerve, right side, subsequent encounter|Injury of olfactory [1st ] nerve, right side, subsequent encounter +C2831784|T037|AB|S04.811D|ICD10CM|Injury of olfactory nerve, right side, subsequent encounter|Injury of olfactory nerve, right side, subsequent encounter +C2831785|T037|AB|S04.811S|ICD10CM|Injury of olfactory [1st ] nerve, right side, sequela|Injury of olfactory [1st ] nerve, right side, sequela +C2831785|T037|PT|S04.811S|ICD10CM|Injury of olfactory [1st ] nerve, right side, sequela|Injury of olfactory [1st ] nerve, right side, sequela +C2831786|T037|AB|S04.812|ICD10CM|Injury of olfactory [1st ] nerve, left side|Injury of olfactory [1st ] nerve, left side +C2831786|T037|HT|S04.812|ICD10CM|Injury of olfactory [1st ] nerve, left side|Injury of olfactory [1st ] nerve, left side +C2831787|T037|PT|S04.812A|ICD10CM|Injury of olfactory [1st ] nerve, left side, initial encounter|Injury of olfactory [1st ] nerve, left side, initial encounter +C2831787|T037|AB|S04.812A|ICD10CM|Injury of olfactory nerve, left side, initial encounter|Injury of olfactory nerve, left side, initial encounter +C2831788|T037|PT|S04.812D|ICD10CM|Injury of olfactory [1st ] nerve, left side, subsequent encounter|Injury of olfactory [1st ] nerve, left side, subsequent encounter +C2831788|T037|AB|S04.812D|ICD10CM|Injury of olfactory nerve, left side, subsequent encounter|Injury of olfactory nerve, left side, subsequent encounter +C2831789|T037|AB|S04.812S|ICD10CM|Injury of olfactory [1st ] nerve, left side, sequela|Injury of olfactory [1st ] nerve, left side, sequela +C2831789|T037|PT|S04.812S|ICD10CM|Injury of olfactory [1st ] nerve, left side, sequela|Injury of olfactory [1st ] nerve, left side, sequela +C2831790|T037|AB|S04.819|ICD10CM|Injury of olfactory [1st ] nerve, unspecified side|Injury of olfactory [1st ] nerve, unspecified side +C2831790|T037|HT|S04.819|ICD10CM|Injury of olfactory [1st ] nerve, unspecified side|Injury of olfactory [1st ] nerve, unspecified side +C2831791|T037|PT|S04.819A|ICD10CM|Injury of olfactory [1st ] nerve, unspecified side, initial encounter|Injury of olfactory [1st ] nerve, unspecified side, initial encounter +C2831791|T037|AB|S04.819A|ICD10CM|Injury of olfactory nerve, unspecified side, init encntr|Injury of olfactory nerve, unspecified side, init encntr +C2831792|T037|PT|S04.819D|ICD10CM|Injury of olfactory [1st ] nerve, unspecified side, subsequent encounter|Injury of olfactory [1st ] nerve, unspecified side, subsequent encounter +C2831792|T037|AB|S04.819D|ICD10CM|Injury of olfactory nerve, unspecified side, subs encntr|Injury of olfactory nerve, unspecified side, subs encntr +C2831793|T037|AB|S04.819S|ICD10CM|Injury of olfactory [1st ] nerve, unspecified side, sequela|Injury of olfactory [1st ] nerve, unspecified side, sequela +C2831793|T037|PT|S04.819S|ICD10CM|Injury of olfactory [1st ] nerve, unspecified side, sequela|Injury of olfactory [1st ] nerve, unspecified side, sequela +C0478205|T037|HT|S04.89|ICD10CM|Injury of other cranial nerves|Injury of other cranial nerves +C0478205|T037|AB|S04.89|ICD10CM|Injury of other cranial nerves|Injury of other cranial nerves +C0273486|T037|ET|S04.89|ICD10CM|Injury of vagus [10th] nerve|Injury of vagus [10th] nerve +C2831794|T037|AB|S04.891|ICD10CM|Injury of other cranial nerves, right side|Injury of other cranial nerves, right side +C2831794|T037|HT|S04.891|ICD10CM|Injury of other cranial nerves, right side|Injury of other cranial nerves, right side +C2831795|T037|AB|S04.891A|ICD10CM|Injury of other cranial nerves, right side, init encntr|Injury of other cranial nerves, right side, init encntr +C2831795|T037|PT|S04.891A|ICD10CM|Injury of other cranial nerves, right side, initial encounter|Injury of other cranial nerves, right side, initial encounter +C2831796|T037|AB|S04.891D|ICD10CM|Injury of other cranial nerves, right side, subs encntr|Injury of other cranial nerves, right side, subs encntr +C2831796|T037|PT|S04.891D|ICD10CM|Injury of other cranial nerves, right side, subsequent encounter|Injury of other cranial nerves, right side, subsequent encounter +C2831797|T037|AB|S04.891S|ICD10CM|Injury of other cranial nerves, right side, sequela|Injury of other cranial nerves, right side, sequela +C2831797|T037|PT|S04.891S|ICD10CM|Injury of other cranial nerves, right side, sequela|Injury of other cranial nerves, right side, sequela +C2831798|T037|AB|S04.892|ICD10CM|Injury of other cranial nerves, left side|Injury of other cranial nerves, left side +C2831798|T037|HT|S04.892|ICD10CM|Injury of other cranial nerves, left side|Injury of other cranial nerves, left side +C2831799|T037|AB|S04.892A|ICD10CM|Injury of other cranial nerves, left side, initial encounter|Injury of other cranial nerves, left side, initial encounter +C2831799|T037|PT|S04.892A|ICD10CM|Injury of other cranial nerves, left side, initial encounter|Injury of other cranial nerves, left side, initial encounter +C2831800|T037|AB|S04.892D|ICD10CM|Injury of other cranial nerves, left side, subs encntr|Injury of other cranial nerves, left side, subs encntr +C2831800|T037|PT|S04.892D|ICD10CM|Injury of other cranial nerves, left side, subsequent encounter|Injury of other cranial nerves, left side, subsequent encounter +C2831801|T037|AB|S04.892S|ICD10CM|Injury of other cranial nerves, left side, sequela|Injury of other cranial nerves, left side, sequela +C2831801|T037|PT|S04.892S|ICD10CM|Injury of other cranial nerves, left side, sequela|Injury of other cranial nerves, left side, sequela +C2831802|T037|AB|S04.899|ICD10CM|Injury of other cranial nerves, unspecified side|Injury of other cranial nerves, unspecified side +C2831802|T037|HT|S04.899|ICD10CM|Injury of other cranial nerves, unspecified side|Injury of other cranial nerves, unspecified side +C2831803|T037|AB|S04.899A|ICD10CM|Injury of other cranial nerves, unsp side, init encntr|Injury of other cranial nerves, unsp side, init encntr +C2831803|T037|PT|S04.899A|ICD10CM|Injury of other cranial nerves, unspecified side, initial encounter|Injury of other cranial nerves, unspecified side, initial encounter +C2831804|T037|AB|S04.899D|ICD10CM|Injury of other cranial nerves, unsp side, subs encntr|Injury of other cranial nerves, unsp side, subs encntr +C2831804|T037|PT|S04.899D|ICD10CM|Injury of other cranial nerves, unspecified side, subsequent encounter|Injury of other cranial nerves, unspecified side, subsequent encounter +C2831805|T037|AB|S04.899S|ICD10CM|Injury of other cranial nerves, unspecified side, sequela|Injury of other cranial nerves, unspecified side, sequela +C2831805|T037|PT|S04.899S|ICD10CM|Injury of other cranial nerves, unspecified side, sequela|Injury of other cranial nerves, unspecified side, sequela +C0273483|T037|HT|S04.9|ICD10CM|Injury of unspecified cranial nerve|Injury of unspecified cranial nerve +C0273483|T037|AB|S04.9|ICD10CM|Injury of unspecified cranial nerve|Injury of unspecified cranial nerve +C0273483|T037|PT|S04.9|ICD10|Injury of unspecified cranial nerve|Injury of unspecified cranial nerve +C2831806|T037|AB|S04.9XXA|ICD10CM|Injury of unspecified cranial nerve, initial encounter|Injury of unspecified cranial nerve, initial encounter +C2831806|T037|PT|S04.9XXA|ICD10CM|Injury of unspecified cranial nerve, initial encounter|Injury of unspecified cranial nerve, initial encounter +C2831807|T037|AB|S04.9XXD|ICD10CM|Injury of unspecified cranial nerve, subsequent encounter|Injury of unspecified cranial nerve, subsequent encounter +C2831807|T037|PT|S04.9XXD|ICD10CM|Injury of unspecified cranial nerve, subsequent encounter|Injury of unspecified cranial nerve, subsequent encounter +C2831808|T037|AB|S04.9XXS|ICD10CM|Injury of unspecified cranial nerve, sequela|Injury of unspecified cranial nerve, sequela +C2831808|T037|PT|S04.9XXS|ICD10CM|Injury of unspecified cranial nerve, sequela|Injury of unspecified cranial nerve, sequela +C0478210|T037|AB|S05|ICD10CM|Injury of eye and orbit|Injury of eye and orbit +C0478210|T037|HT|S05|ICD10CM|Injury of eye and orbit|Injury of eye and orbit +C0478210|T037|HT|S05|ICD10|Injury of eye and orbit|Injury of eye and orbit +C4290306|T037|ET|S05|ICD10CM|open wound of eye and orbit|open wound of eye and orbit +C2831810|T037|AB|S05.0|ICD10CM|Injury of conjunctiva and corneal abrasion w/o foreign body|Injury of conjunctiva and corneal abrasion w/o foreign body +C2831810|T037|HT|S05.0|ICD10CM|Injury of conjunctiva and corneal abrasion without foreign body|Injury of conjunctiva and corneal abrasion without foreign body +C0481417|T037|PT|S05.0|ICD10|Injury of conjunctiva and corneal abrasion without mention of foreign body|Injury of conjunctiva and corneal abrasion without mention of foreign body +C2831811|T037|AB|S05.00|ICD10CM|Injury of conjunctiva and corneal abrasion w/o fb, unsp eye|Injury of conjunctiva and corneal abrasion w/o fb, unsp eye +C2831811|T037|HT|S05.00|ICD10CM|Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye|Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye +C2831812|T037|AB|S05.00XA|ICD10CM|Inj conjunctiva and corneal abrasion w/o fb, unsp eye, init|Inj conjunctiva and corneal abrasion w/o fb, unsp eye, init +C2831812|T037|PT|S05.00XA|ICD10CM|Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye, initial encounter|Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye, initial encounter +C2831813|T037|AB|S05.00XD|ICD10CM|Inj conjunctiva and corneal abrasion w/o fb, unsp eye, subs|Inj conjunctiva and corneal abrasion w/o fb, unsp eye, subs +C2831814|T037|AB|S05.00XS|ICD10CM|Inj conjunctiva and corneal abras w/o fb, unsp eye, sequela|Inj conjunctiva and corneal abras w/o fb, unsp eye, sequela +C2831814|T037|PT|S05.00XS|ICD10CM|Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye, sequela|Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye, sequela +C2831815|T037|AB|S05.01|ICD10CM|Injury of conjunctiva and corneal abrasion w/o fb, right eye|Injury of conjunctiva and corneal abrasion w/o fb, right eye +C2831815|T037|HT|S05.01|ICD10CM|Injury of conjunctiva and corneal abrasion without foreign body, right eye|Injury of conjunctiva and corneal abrasion without foreign body, right eye +C2831816|T037|AB|S05.01XA|ICD10CM|Inj conjunctiva and corneal abrasion w/o fb, right eye, init|Inj conjunctiva and corneal abrasion w/o fb, right eye, init +C2831816|T037|PT|S05.01XA|ICD10CM|Injury of conjunctiva and corneal abrasion without foreign body, right eye, initial encounter|Injury of conjunctiva and corneal abrasion without foreign body, right eye, initial encounter +C2831817|T037|AB|S05.01XD|ICD10CM|Inj conjunctiva and corneal abrasion w/o fb, right eye, subs|Inj conjunctiva and corneal abrasion w/o fb, right eye, subs +C2831817|T037|PT|S05.01XD|ICD10CM|Injury of conjunctiva and corneal abrasion without foreign body, right eye, subsequent encounter|Injury of conjunctiva and corneal abrasion without foreign body, right eye, subsequent encounter +C2831818|T037|AB|S05.01XS|ICD10CM|Inj conjunctiva and corneal abrasion w/o fb, r eye, sequela|Inj conjunctiva and corneal abrasion w/o fb, r eye, sequela +C2831818|T037|PT|S05.01XS|ICD10CM|Injury of conjunctiva and corneal abrasion without foreign body, right eye, sequela|Injury of conjunctiva and corneal abrasion without foreign body, right eye, sequela +C2831819|T037|AB|S05.02|ICD10CM|Injury of conjunctiva and corneal abrasion w/o fb, left eye|Injury of conjunctiva and corneal abrasion w/o fb, left eye +C2831819|T037|HT|S05.02|ICD10CM|Injury of conjunctiva and corneal abrasion without foreign body, left eye|Injury of conjunctiva and corneal abrasion without foreign body, left eye +C2831820|T037|AB|S05.02XA|ICD10CM|Inj conjunctiva and corneal abrasion w/o fb, left eye, init|Inj conjunctiva and corneal abrasion w/o fb, left eye, init +C2831820|T037|PT|S05.02XA|ICD10CM|Injury of conjunctiva and corneal abrasion without foreign body, left eye, initial encounter|Injury of conjunctiva and corneal abrasion without foreign body, left eye, initial encounter +C2831821|T037|AB|S05.02XD|ICD10CM|Inj conjunctiva and corneal abrasion w/o fb, left eye, subs|Inj conjunctiva and corneal abrasion w/o fb, left eye, subs +C2831821|T037|PT|S05.02XD|ICD10CM|Injury of conjunctiva and corneal abrasion without foreign body, left eye, subsequent encounter|Injury of conjunctiva and corneal abrasion without foreign body, left eye, subsequent encounter +C2831822|T037|AB|S05.02XS|ICD10CM|Inj conjunctiva and corneal abras w/o fb, left eye, sequela|Inj conjunctiva and corneal abras w/o fb, left eye, sequela +C2831822|T037|PT|S05.02XS|ICD10CM|Injury of conjunctiva and corneal abrasion without foreign body, left eye, sequela|Injury of conjunctiva and corneal abrasion without foreign body, left eye, sequela +C0495808|T037|PT|S05.1|ICD10|Contusion of eyeball and orbital tissues|Contusion of eyeball and orbital tissues +C0495808|T037|HT|S05.1|ICD10CM|Contusion of eyeball and orbital tissues|Contusion of eyeball and orbital tissues +C0495808|T037|AB|S05.1|ICD10CM|Contusion of eyeball and orbital tissues|Contusion of eyeball and orbital tissues +C0339335|T037|ET|S05.1|ICD10CM|Traumatic hyphema|Traumatic hyphema +C2831823|T037|AB|S05.10|ICD10CM|Contusion of eyeball and orbital tissues, unspecified eye|Contusion of eyeball and orbital tissues, unspecified eye +C2831823|T037|HT|S05.10|ICD10CM|Contusion of eyeball and orbital tissues, unspecified eye|Contusion of eyeball and orbital tissues, unspecified eye +C2831824|T037|AB|S05.10XA|ICD10CM|Contusion of eyeball and orbital tissues, unsp eye, init|Contusion of eyeball and orbital tissues, unsp eye, init +C2831824|T037|PT|S05.10XA|ICD10CM|Contusion of eyeball and orbital tissues, unspecified eye, initial encounter|Contusion of eyeball and orbital tissues, unspecified eye, initial encounter +C2831825|T037|AB|S05.10XD|ICD10CM|Contusion of eyeball and orbital tissues, unsp eye, subs|Contusion of eyeball and orbital tissues, unsp eye, subs +C2831825|T037|PT|S05.10XD|ICD10CM|Contusion of eyeball and orbital tissues, unspecified eye, subsequent encounter|Contusion of eyeball and orbital tissues, unspecified eye, subsequent encounter +C2831826|T037|AB|S05.10XS|ICD10CM|Contusion of eyeball and orbital tissues, unsp eye, sequela|Contusion of eyeball and orbital tissues, unsp eye, sequela +C2831826|T037|PT|S05.10XS|ICD10CM|Contusion of eyeball and orbital tissues, unspecified eye, sequela|Contusion of eyeball and orbital tissues, unspecified eye, sequela +C2831827|T037|AB|S05.11|ICD10CM|Contusion of eyeball and orbital tissues, right eye|Contusion of eyeball and orbital tissues, right eye +C2831827|T037|HT|S05.11|ICD10CM|Contusion of eyeball and orbital tissues, right eye|Contusion of eyeball and orbital tissues, right eye +C2831828|T037|AB|S05.11XA|ICD10CM|Contusion of eyeball and orbital tissues, right eye, init|Contusion of eyeball and orbital tissues, right eye, init +C2831828|T037|PT|S05.11XA|ICD10CM|Contusion of eyeball and orbital tissues, right eye, initial encounter|Contusion of eyeball and orbital tissues, right eye, initial encounter +C2831829|T037|AB|S05.11XD|ICD10CM|Contusion of eyeball and orbital tissues, right eye, subs|Contusion of eyeball and orbital tissues, right eye, subs +C2831829|T037|PT|S05.11XD|ICD10CM|Contusion of eyeball and orbital tissues, right eye, subsequent encounter|Contusion of eyeball and orbital tissues, right eye, subsequent encounter +C2831830|T037|AB|S05.11XS|ICD10CM|Contusion of eyeball and orbital tissues, right eye, sequela|Contusion of eyeball and orbital tissues, right eye, sequela +C2831830|T037|PT|S05.11XS|ICD10CM|Contusion of eyeball and orbital tissues, right eye, sequela|Contusion of eyeball and orbital tissues, right eye, sequela +C2831831|T037|AB|S05.12|ICD10CM|Contusion of eyeball and orbital tissues, left eye|Contusion of eyeball and orbital tissues, left eye +C2831831|T037|HT|S05.12|ICD10CM|Contusion of eyeball and orbital tissues, left eye|Contusion of eyeball and orbital tissues, left eye +C2831832|T037|AB|S05.12XA|ICD10CM|Contusion of eyeball and orbital tissues, left eye, init|Contusion of eyeball and orbital tissues, left eye, init +C2831832|T037|PT|S05.12XA|ICD10CM|Contusion of eyeball and orbital tissues, left eye, initial encounter|Contusion of eyeball and orbital tissues, left eye, initial encounter +C2831833|T037|AB|S05.12XD|ICD10CM|Contusion of eyeball and orbital tissues, left eye, subs|Contusion of eyeball and orbital tissues, left eye, subs +C2831833|T037|PT|S05.12XD|ICD10CM|Contusion of eyeball and orbital tissues, left eye, subsequent encounter|Contusion of eyeball and orbital tissues, left eye, subsequent encounter +C2831834|T037|AB|S05.12XS|ICD10CM|Contusion of eyeball and orbital tissues, left eye, sequela|Contusion of eyeball and orbital tissues, left eye, sequela +C2831834|T037|PT|S05.12XS|ICD10CM|Contusion of eyeball and orbital tissues, left eye, sequela|Contusion of eyeball and orbital tissues, left eye, sequela +C3536765|T037|AB|S05.2|ICD10CM|Ocular lac/rupt w prolapse or loss of intraocular tissue|Ocular lac/rupt w prolapse or loss of intraocular tissue +C3536765|T037|HT|S05.2|ICD10CM|Ocular laceration and rupture with prolapse or loss of intraocular tissue|Ocular laceration and rupture with prolapse or loss of intraocular tissue +C3536765|T037|PT|S05.2|ICD10|Ocular laceration and rupture with prolapse or loss of intraocular tissue|Ocular laceration and rupture with prolapse or loss of intraocular tissue +C2831835|T037|AB|S05.20|ICD10CM|Ocular lac/rupt w prolaps/loss of intraoc tissue, unsp eye|Ocular lac/rupt w prolaps/loss of intraoc tissue, unsp eye +C2831835|T037|HT|S05.20|ICD10CM|Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye|Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye +C2831836|T037|AB|S05.20XA|ICD10CM|Oclr lac/rupt w prolaps/loss of intraoc tiss, unsp eye, init|Oclr lac/rupt w prolaps/loss of intraoc tiss, unsp eye, init +C2831837|T037|AB|S05.20XD|ICD10CM|Oclr lac/rupt w prolaps/loss of intraoc tiss, unsp eye, subs|Oclr lac/rupt w prolaps/loss of intraoc tiss, unsp eye, subs +C2831838|T037|AB|S05.20XS|ICD10CM|Oclr lac/rupt w prolaps/loss of intraoc tiss, unsp eye, sqla|Oclr lac/rupt w prolaps/loss of intraoc tiss, unsp eye, sqla +C2831838|T037|PT|S05.20XS|ICD10CM|Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye, sequela|Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye, sequela +C2831839|T037|AB|S05.21|ICD10CM|Ocular lac/rupt w prolaps/loss of intraoc tissue, right eye|Ocular lac/rupt w prolaps/loss of intraoc tissue, right eye +C2831839|T037|HT|S05.21|ICD10CM|Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye|Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye +C2831840|T037|AB|S05.21XA|ICD10CM|Oclr lac/rupt w prolaps/loss of intraoc tissue, r eye, init|Oclr lac/rupt w prolaps/loss of intraoc tissue, r eye, init +C2831841|T037|AB|S05.21XD|ICD10CM|Oclr lac/rupt w prolaps/loss of intraoc tissue, r eye, subs|Oclr lac/rupt w prolaps/loss of intraoc tissue, r eye, subs +C2831842|T037|AB|S05.21XS|ICD10CM|Oclr lac/rupt w prolaps/loss of intraoc tissue, r eye, sqla|Oclr lac/rupt w prolaps/loss of intraoc tissue, r eye, sqla +C2831842|T037|PT|S05.21XS|ICD10CM|Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye, sequela|Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye, sequela +C2831843|T037|AB|S05.22|ICD10CM|Ocular lac/rupt w prolaps/loss of intraoc tissue, left eye|Ocular lac/rupt w prolaps/loss of intraoc tissue, left eye +C2831843|T037|HT|S05.22|ICD10CM|Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye|Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye +C2831844|T037|AB|S05.22XA|ICD10CM|Oclr lac/rupt w prolaps/loss of intraoc tissue, l eye, init|Oclr lac/rupt w prolaps/loss of intraoc tissue, l eye, init +C2831845|T037|AB|S05.22XD|ICD10CM|Oclr lac/rupt w prolaps/loss of intraoc tissue, l eye, subs|Oclr lac/rupt w prolaps/loss of intraoc tissue, l eye, subs +C2831846|T037|AB|S05.22XS|ICD10CM|Oclr lac/rupt w prolaps/loss of intraoc tissue, l eye, sqla|Oclr lac/rupt w prolaps/loss of intraoc tissue, l eye, sqla +C2831846|T037|PT|S05.22XS|ICD10CM|Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye, sequela|Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye, sequela +C0160470|T037|ET|S05.3|ICD10CM|Laceration of eye NOS|Laceration of eye NOS +C0478207|T037|AB|S05.3|ICD10CM|Ocular laceration w/o prolapse or loss of intraocular tissue|Ocular laceration w/o prolapse or loss of intraocular tissue +C0478207|T037|HT|S05.3|ICD10CM|Ocular laceration without prolapse or loss of intraocular tissue|Ocular laceration without prolapse or loss of intraocular tissue +C0478207|T037|PT|S05.3|ICD10|Ocular laceration without prolapse or loss of intraocular tissue|Ocular laceration without prolapse or loss of intraocular tissue +C2831847|T037|AB|S05.30|ICD10CM|Ocular lac w/o prolaps/loss of intraoc tissue, unsp eye|Ocular lac w/o prolaps/loss of intraoc tissue, unsp eye +C2831847|T037|HT|S05.30|ICD10CM|Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye|Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye +C2831848|T037|AB|S05.30XA|ICD10CM|Oclr lac w/o prolaps/loss of intraoc tissue, unsp eye, init|Oclr lac w/o prolaps/loss of intraoc tissue, unsp eye, init +C2831848|T037|PT|S05.30XA|ICD10CM|Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye, initial encounter|Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye, initial encounter +C2831849|T037|AB|S05.30XD|ICD10CM|Oclr lac w/o prolaps/loss of intraoc tissue, unsp eye, subs|Oclr lac w/o prolaps/loss of intraoc tissue, unsp eye, subs +C2831850|T037|AB|S05.30XS|ICD10CM|Oclr lac w/o prolaps/loss of intraoc tissue, unsp eye, sqla|Oclr lac w/o prolaps/loss of intraoc tissue, unsp eye, sqla +C2831850|T037|PT|S05.30XS|ICD10CM|Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye, sequela|Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye, sequela +C2831851|T037|AB|S05.31|ICD10CM|Ocular lac w/o prolaps/loss of intraoc tissue, right eye|Ocular lac w/o prolaps/loss of intraoc tissue, right eye +C2831851|T037|HT|S05.31|ICD10CM|Ocular laceration without prolapse or loss of intraocular tissue, right eye|Ocular laceration without prolapse or loss of intraocular tissue, right eye +C2831852|T037|AB|S05.31XA|ICD10CM|Ocular lac w/o prolaps/loss of intraoc tissue, r eye, init|Ocular lac w/o prolaps/loss of intraoc tissue, r eye, init +C2831852|T037|PT|S05.31XA|ICD10CM|Ocular laceration without prolapse or loss of intraocular tissue, right eye, initial encounter|Ocular laceration without prolapse or loss of intraocular tissue, right eye, initial encounter +C2831853|T037|AB|S05.31XD|ICD10CM|Ocular lac w/o prolaps/loss of intraoc tissue, r eye, subs|Ocular lac w/o prolaps/loss of intraoc tissue, r eye, subs +C2831853|T037|PT|S05.31XD|ICD10CM|Ocular laceration without prolapse or loss of intraocular tissue, right eye, subsequent encounter|Ocular laceration without prolapse or loss of intraocular tissue, right eye, subsequent encounter +C2831854|T037|AB|S05.31XS|ICD10CM|Ocular lac w/o prolaps/loss of intraoc tissue, r eye, sqla|Ocular lac w/o prolaps/loss of intraoc tissue, r eye, sqla +C2831854|T037|PT|S05.31XS|ICD10CM|Ocular laceration without prolapse or loss of intraocular tissue, right eye, sequela|Ocular laceration without prolapse or loss of intraocular tissue, right eye, sequela +C2831855|T037|AB|S05.32|ICD10CM|Ocular lac w/o prolaps/loss of intraoc tissue, left eye|Ocular lac w/o prolaps/loss of intraoc tissue, left eye +C2831855|T037|HT|S05.32|ICD10CM|Ocular laceration without prolapse or loss of intraocular tissue, left eye|Ocular laceration without prolapse or loss of intraocular tissue, left eye +C2831856|T037|AB|S05.32XA|ICD10CM|Ocular lac w/o prolaps/loss of intraoc tissue, l eye, init|Ocular lac w/o prolaps/loss of intraoc tissue, l eye, init +C2831856|T037|PT|S05.32XA|ICD10CM|Ocular laceration without prolapse or loss of intraocular tissue, left eye, initial encounter|Ocular laceration without prolapse or loss of intraocular tissue, left eye, initial encounter +C2831857|T037|AB|S05.32XD|ICD10CM|Ocular lac w/o prolaps/loss of intraoc tissue, l eye, subs|Ocular lac w/o prolaps/loss of intraoc tissue, l eye, subs +C2831857|T037|PT|S05.32XD|ICD10CM|Ocular laceration without prolapse or loss of intraocular tissue, left eye, subsequent encounter|Ocular laceration without prolapse or loss of intraocular tissue, left eye, subsequent encounter +C2831858|T037|AB|S05.32XS|ICD10CM|Ocular lac w/o prolaps/loss of intraoc tissue, l eye, sqla|Ocular lac w/o prolaps/loss of intraoc tissue, l eye, sqla +C2831858|T037|PT|S05.32XS|ICD10CM|Ocular laceration without prolapse or loss of intraocular tissue, left eye, sequela|Ocular laceration without prolapse or loss of intraocular tissue, left eye, sequela +C0478208|T037|PT|S05.4|ICD10|Penetrating wound of orbit with or without foreign body|Penetrating wound of orbit with or without foreign body +C0478208|T037|HT|S05.4|ICD10CM|Penetrating wound of orbit with or without foreign body|Penetrating wound of orbit with or without foreign body +C0478208|T037|AB|S05.4|ICD10CM|Penetrating wound of orbit with or without foreign body|Penetrating wound of orbit with or without foreign body +C2831859|T037|AB|S05.40|ICD10CM|Penetrating wound of orbit w or w/o foreign body, unsp eye|Penetrating wound of orbit w or w/o foreign body, unsp eye +C2831859|T037|HT|S05.40|ICD10CM|Penetrating wound of orbit with or without foreign body, unspecified eye|Penetrating wound of orbit with or without foreign body, unspecified eye +C2831860|T037|AB|S05.40XA|ICD10CM|Penetrating wound of orbit w or w/o fb, unsp eye, init|Penetrating wound of orbit w or w/o fb, unsp eye, init +C2831860|T037|PT|S05.40XA|ICD10CM|Penetrating wound of orbit with or without foreign body, unspecified eye, initial encounter|Penetrating wound of orbit with or without foreign body, unspecified eye, initial encounter +C2831861|T037|AB|S05.40XD|ICD10CM|Penetrating wound of orbit w or w/o fb, unsp eye, subs|Penetrating wound of orbit w or w/o fb, unsp eye, subs +C2831861|T037|PT|S05.40XD|ICD10CM|Penetrating wound of orbit with or without foreign body, unspecified eye, subsequent encounter|Penetrating wound of orbit with or without foreign body, unspecified eye, subsequent encounter +C2831862|T037|AB|S05.40XS|ICD10CM|Penetrating wound of orbit w or w/o fb, unsp eye, sequela|Penetrating wound of orbit w or w/o fb, unsp eye, sequela +C2831862|T037|PT|S05.40XS|ICD10CM|Penetrating wound of orbit with or without foreign body, unspecified eye, sequela|Penetrating wound of orbit with or without foreign body, unspecified eye, sequela +C2831863|T037|AB|S05.41|ICD10CM|Penetrating wound of orbit w or w/o foreign body, right eye|Penetrating wound of orbit w or w/o foreign body, right eye +C2831863|T037|HT|S05.41|ICD10CM|Penetrating wound of orbit with or without foreign body, right eye|Penetrating wound of orbit with or without foreign body, right eye +C2831864|T037|AB|S05.41XA|ICD10CM|Penetrating wound of orbit w or w/o fb, right eye, init|Penetrating wound of orbit w or w/o fb, right eye, init +C2831864|T037|PT|S05.41XA|ICD10CM|Penetrating wound of orbit with or without foreign body, right eye, initial encounter|Penetrating wound of orbit with or without foreign body, right eye, initial encounter +C2831865|T037|AB|S05.41XD|ICD10CM|Penetrating wound of orbit w or w/o fb, right eye, subs|Penetrating wound of orbit w or w/o fb, right eye, subs +C2831865|T037|PT|S05.41XD|ICD10CM|Penetrating wound of orbit with or without foreign body, right eye, subsequent encounter|Penetrating wound of orbit with or without foreign body, right eye, subsequent encounter +C2831866|T037|AB|S05.41XS|ICD10CM|Penetrating wound of orbit w or w/o fb, right eye, sequela|Penetrating wound of orbit w or w/o fb, right eye, sequela +C2831866|T037|PT|S05.41XS|ICD10CM|Penetrating wound of orbit with or without foreign body, right eye, sequela|Penetrating wound of orbit with or without foreign body, right eye, sequela +C2831867|T037|AB|S05.42|ICD10CM|Penetrating wound of orbit w or w/o foreign body, left eye|Penetrating wound of orbit w or w/o foreign body, left eye +C2831867|T037|HT|S05.42|ICD10CM|Penetrating wound of orbit with or without foreign body, left eye|Penetrating wound of orbit with or without foreign body, left eye +C2831868|T037|AB|S05.42XA|ICD10CM|Penetrating wound of orbit w or w/o fb, left eye, init|Penetrating wound of orbit w or w/o fb, left eye, init +C2831868|T037|PT|S05.42XA|ICD10CM|Penetrating wound of orbit with or without foreign body, left eye, initial encounter|Penetrating wound of orbit with or without foreign body, left eye, initial encounter +C2831869|T037|AB|S05.42XD|ICD10CM|Penetrating wound of orbit w or w/o fb, left eye, subs|Penetrating wound of orbit w or w/o fb, left eye, subs +C2831869|T037|PT|S05.42XD|ICD10CM|Penetrating wound of orbit with or without foreign body, left eye, subsequent encounter|Penetrating wound of orbit with or without foreign body, left eye, subsequent encounter +C2831870|T037|AB|S05.42XS|ICD10CM|Penetrating wound of orbit w or w/o fb, left eye, sequela|Penetrating wound of orbit w or w/o fb, left eye, sequela +C2831870|T037|PT|S05.42XS|ICD10CM|Penetrating wound of orbit with or without foreign body, left eye, sequela|Penetrating wound of orbit with or without foreign body, left eye, sequela +C0495809|T037|PT|S05.5|ICD10|Penetrating wound of eyeball with foreign body|Penetrating wound of eyeball with foreign body +C0495809|T037|AB|S05.5|ICD10CM|Penetrating wound with foreign body of eyeball|Penetrating wound with foreign body of eyeball +C0495809|T037|HT|S05.5|ICD10CM|Penetrating wound with foreign body of eyeball|Penetrating wound with foreign body of eyeball +C2831871|T037|AB|S05.50|ICD10CM|Penetrating wound with foreign body of unspecified eyeball|Penetrating wound with foreign body of unspecified eyeball +C2831871|T037|HT|S05.50|ICD10CM|Penetrating wound with foreign body of unspecified eyeball|Penetrating wound with foreign body of unspecified eyeball +C2831872|T037|AB|S05.50XA|ICD10CM|Penetrating wound w foreign body of unsp eyeball, init|Penetrating wound w foreign body of unsp eyeball, init +C2831872|T037|PT|S05.50XA|ICD10CM|Penetrating wound with foreign body of unspecified eyeball, initial encounter|Penetrating wound with foreign body of unspecified eyeball, initial encounter +C2831873|T037|AB|S05.50XD|ICD10CM|Penetrating wound w foreign body of unsp eyeball, subs|Penetrating wound w foreign body of unsp eyeball, subs +C2831873|T037|PT|S05.50XD|ICD10CM|Penetrating wound with foreign body of unspecified eyeball, subsequent encounter|Penetrating wound with foreign body of unspecified eyeball, subsequent encounter +C2831874|T037|AB|S05.50XS|ICD10CM|Penetrating wound with foreign body of unsp eyeball, sequela|Penetrating wound with foreign body of unsp eyeball, sequela +C2831874|T037|PT|S05.50XS|ICD10CM|Penetrating wound with foreign body of unspecified eyeball, sequela|Penetrating wound with foreign body of unspecified eyeball, sequela +C2831875|T037|AB|S05.51|ICD10CM|Penetrating wound with foreign body of right eyeball|Penetrating wound with foreign body of right eyeball +C2831875|T037|HT|S05.51|ICD10CM|Penetrating wound with foreign body of right eyeball|Penetrating wound with foreign body of right eyeball +C2831876|T037|AB|S05.51XA|ICD10CM|Penetrating wound w foreign body of right eyeball, init|Penetrating wound w foreign body of right eyeball, init +C2831876|T037|PT|S05.51XA|ICD10CM|Penetrating wound with foreign body of right eyeball, initial encounter|Penetrating wound with foreign body of right eyeball, initial encounter +C2831877|T037|AB|S05.51XD|ICD10CM|Penetrating wound w foreign body of right eyeball, subs|Penetrating wound w foreign body of right eyeball, subs +C2831877|T037|PT|S05.51XD|ICD10CM|Penetrating wound with foreign body of right eyeball, subsequent encounter|Penetrating wound with foreign body of right eyeball, subsequent encounter +C2831878|T037|AB|S05.51XS|ICD10CM|Penetrating wound w foreign body of right eyeball, sequela|Penetrating wound w foreign body of right eyeball, sequela +C2831878|T037|PT|S05.51XS|ICD10CM|Penetrating wound with foreign body of right eyeball, sequela|Penetrating wound with foreign body of right eyeball, sequela +C2831879|T037|AB|S05.52|ICD10CM|Penetrating wound with foreign body of left eyeball|Penetrating wound with foreign body of left eyeball +C2831879|T037|HT|S05.52|ICD10CM|Penetrating wound with foreign body of left eyeball|Penetrating wound with foreign body of left eyeball +C2831880|T037|AB|S05.52XA|ICD10CM|Penetrating wound w foreign body of left eyeball, init|Penetrating wound w foreign body of left eyeball, init +C2831880|T037|PT|S05.52XA|ICD10CM|Penetrating wound with foreign body of left eyeball, initial encounter|Penetrating wound with foreign body of left eyeball, initial encounter +C2831881|T037|AB|S05.52XD|ICD10CM|Penetrating wound w foreign body of left eyeball, subs|Penetrating wound w foreign body of left eyeball, subs +C2831881|T037|PT|S05.52XD|ICD10CM|Penetrating wound with foreign body of left eyeball, subsequent encounter|Penetrating wound with foreign body of left eyeball, subsequent encounter +C2831882|T037|AB|S05.52XS|ICD10CM|Penetrating wound with foreign body of left eyeball, sequela|Penetrating wound with foreign body of left eyeball, sequela +C2831882|T037|PT|S05.52XS|ICD10CM|Penetrating wound with foreign body of left eyeball, sequela|Penetrating wound with foreign body of left eyeball, sequela +C0015409|T037|ET|S05.6|ICD10CM|Ocular penetration NOS|Ocular penetration NOS +C0495810|T037|PT|S05.6|ICD10|Penetrating wound of eyeball without foreign body|Penetrating wound of eyeball without foreign body +C0495810|T037|AB|S05.6|ICD10CM|Penetrating wound without foreign body of eyeball|Penetrating wound without foreign body of eyeball +C0495810|T037|HT|S05.6|ICD10CM|Penetrating wound without foreign body of eyeball|Penetrating wound without foreign body of eyeball +C2831883|T037|AB|S05.60|ICD10CM|Penetrating wound without foreign body of unsp eyeball|Penetrating wound without foreign body of unsp eyeball +C2831883|T037|HT|S05.60|ICD10CM|Penetrating wound without foreign body of unspecified eyeball|Penetrating wound without foreign body of unspecified eyeball +C2831884|T037|AB|S05.60XA|ICD10CM|Penetrating wound w/o foreign body of unsp eyeball, init|Penetrating wound w/o foreign body of unsp eyeball, init +C2831884|T037|PT|S05.60XA|ICD10CM|Penetrating wound without foreign body of unspecified eyeball, initial encounter|Penetrating wound without foreign body of unspecified eyeball, initial encounter +C2831885|T037|AB|S05.60XD|ICD10CM|Penetrating wound w/o foreign body of unsp eyeball, subs|Penetrating wound w/o foreign body of unsp eyeball, subs +C2831885|T037|PT|S05.60XD|ICD10CM|Penetrating wound without foreign body of unspecified eyeball, subsequent encounter|Penetrating wound without foreign body of unspecified eyeball, subsequent encounter +C2831886|T037|AB|S05.60XS|ICD10CM|Penetrating wound w/o foreign body of unsp eyeball, sequela|Penetrating wound w/o foreign body of unsp eyeball, sequela +C2831886|T037|PT|S05.60XS|ICD10CM|Penetrating wound without foreign body of unspecified eyeball, sequela|Penetrating wound without foreign body of unspecified eyeball, sequela +C2831887|T037|AB|S05.61|ICD10CM|Penetrating wound without foreign body of right eyeball|Penetrating wound without foreign body of right eyeball +C2831887|T037|HT|S05.61|ICD10CM|Penetrating wound without foreign body of right eyeball|Penetrating wound without foreign body of right eyeball +C2831888|T037|AB|S05.61XA|ICD10CM|Penetrating wound w/o foreign body of right eyeball, init|Penetrating wound w/o foreign body of right eyeball, init +C2831888|T037|PT|S05.61XA|ICD10CM|Penetrating wound without foreign body of right eyeball, initial encounter|Penetrating wound without foreign body of right eyeball, initial encounter +C2831889|T037|AB|S05.61XD|ICD10CM|Penetrating wound w/o foreign body of right eyeball, subs|Penetrating wound w/o foreign body of right eyeball, subs +C2831889|T037|PT|S05.61XD|ICD10CM|Penetrating wound without foreign body of right eyeball, subsequent encounter|Penetrating wound without foreign body of right eyeball, subsequent encounter +C2831890|T037|AB|S05.61XS|ICD10CM|Penetrating wound w/o foreign body of right eyeball, sequela|Penetrating wound w/o foreign body of right eyeball, sequela +C2831890|T037|PT|S05.61XS|ICD10CM|Penetrating wound without foreign body of right eyeball, sequela|Penetrating wound without foreign body of right eyeball, sequela +C2831891|T037|AB|S05.62|ICD10CM|Penetrating wound without foreign body of left eyeball|Penetrating wound without foreign body of left eyeball +C2831891|T037|HT|S05.62|ICD10CM|Penetrating wound without foreign body of left eyeball|Penetrating wound without foreign body of left eyeball +C2831892|T037|AB|S05.62XA|ICD10CM|Penetrating wound w/o foreign body of left eyeball, init|Penetrating wound w/o foreign body of left eyeball, init +C2831892|T037|PT|S05.62XA|ICD10CM|Penetrating wound without foreign body of left eyeball, initial encounter|Penetrating wound without foreign body of left eyeball, initial encounter +C2831893|T037|AB|S05.62XD|ICD10CM|Penetrating wound w/o foreign body of left eyeball, subs|Penetrating wound w/o foreign body of left eyeball, subs +C2831893|T037|PT|S05.62XD|ICD10CM|Penetrating wound without foreign body of left eyeball, subsequent encounter|Penetrating wound without foreign body of left eyeball, subsequent encounter +C2831894|T037|AB|S05.62XS|ICD10CM|Penetrating wound w/o foreign body of left eyeball, sequela|Penetrating wound w/o foreign body of left eyeball, sequela +C2831894|T037|PT|S05.62XS|ICD10CM|Penetrating wound without foreign body of left eyeball, sequela|Penetrating wound without foreign body of left eyeball, sequela +C0004445|T037|HT|S05.7|ICD10CM|Avulsion of eye|Avulsion of eye +C0004445|T037|AB|S05.7|ICD10CM|Avulsion of eye|Avulsion of eye +C0004445|T037|PT|S05.7|ICD10|Avulsion of eye|Avulsion of eye +C0004445|T037|ET|S05.7|ICD10CM|Traumatic enucleation|Traumatic enucleation +C2831895|T037|AB|S05.70|ICD10CM|Avulsion of unspecified eye|Avulsion of unspecified eye +C2831895|T037|HT|S05.70|ICD10CM|Avulsion of unspecified eye|Avulsion of unspecified eye +C2831896|T037|AB|S05.70XA|ICD10CM|Avulsion of unspecified eye, initial encounter|Avulsion of unspecified eye, initial encounter +C2831896|T037|PT|S05.70XA|ICD10CM|Avulsion of unspecified eye, initial encounter|Avulsion of unspecified eye, initial encounter +C2831897|T037|AB|S05.70XD|ICD10CM|Avulsion of unspecified eye, subsequent encounter|Avulsion of unspecified eye, subsequent encounter +C2831897|T037|PT|S05.70XD|ICD10CM|Avulsion of unspecified eye, subsequent encounter|Avulsion of unspecified eye, subsequent encounter +C2831898|T037|AB|S05.70XS|ICD10CM|Avulsion of unspecified eye, sequela|Avulsion of unspecified eye, sequela +C2831898|T037|PT|S05.70XS|ICD10CM|Avulsion of unspecified eye, sequela|Avulsion of unspecified eye, sequela +C2831899|T037|AB|S05.71|ICD10CM|Avulsion of right eye|Avulsion of right eye +C2831899|T037|HT|S05.71|ICD10CM|Avulsion of right eye|Avulsion of right eye +C2831900|T037|AB|S05.71XA|ICD10CM|Avulsion of right eye, initial encounter|Avulsion of right eye, initial encounter +C2831900|T037|PT|S05.71XA|ICD10CM|Avulsion of right eye, initial encounter|Avulsion of right eye, initial encounter +C2831901|T037|AB|S05.71XD|ICD10CM|Avulsion of right eye, subsequent encounter|Avulsion of right eye, subsequent encounter +C2831901|T037|PT|S05.71XD|ICD10CM|Avulsion of right eye, subsequent encounter|Avulsion of right eye, subsequent encounter +C2831902|T037|AB|S05.71XS|ICD10CM|Avulsion of right eye, sequela|Avulsion of right eye, sequela +C2831902|T037|PT|S05.71XS|ICD10CM|Avulsion of right eye, sequela|Avulsion of right eye, sequela +C2831903|T037|AB|S05.72|ICD10CM|Avulsion of left eye|Avulsion of left eye +C2831903|T037|HT|S05.72|ICD10CM|Avulsion of left eye|Avulsion of left eye +C2831904|T037|AB|S05.72XA|ICD10CM|Avulsion of left eye, initial encounter|Avulsion of left eye, initial encounter +C2831904|T037|PT|S05.72XA|ICD10CM|Avulsion of left eye, initial encounter|Avulsion of left eye, initial encounter +C2831905|T037|AB|S05.72XD|ICD10CM|Avulsion of left eye, subsequent encounter|Avulsion of left eye, subsequent encounter +C2831905|T037|PT|S05.72XD|ICD10CM|Avulsion of left eye, subsequent encounter|Avulsion of left eye, subsequent encounter +C2831906|T037|AB|S05.72XS|ICD10CM|Avulsion of left eye, sequela|Avulsion of left eye, sequela +C2831906|T037|PT|S05.72XS|ICD10CM|Avulsion of left eye, sequela|Avulsion of left eye, sequela +C0347599|T037|ET|S05.8|ICD10CM|Lacrimal duct injury|Lacrimal duct injury +C0478209|T037|PT|S05.8|ICD10|Other injuries of eye and orbit|Other injuries of eye and orbit +C0478209|T037|HT|S05.8|ICD10CM|Other injuries of eye and orbit|Other injuries of eye and orbit +C0478209|T037|AB|S05.8|ICD10CM|Other injuries of eye and orbit|Other injuries of eye and orbit +C0478209|T037|HT|S05.8X|ICD10CM|Other injuries of eye and orbit|Other injuries of eye and orbit +C0478209|T037|AB|S05.8X|ICD10CM|Other injuries of eye and orbit|Other injuries of eye and orbit +C2831907|T037|AB|S05.8X1|ICD10CM|Other injuries of right eye and orbit|Other injuries of right eye and orbit +C2831907|T037|HT|S05.8X1|ICD10CM|Other injuries of right eye and orbit|Other injuries of right eye and orbit +C2831908|T037|AB|S05.8X1A|ICD10CM|Other injuries of right eye and orbit, initial encounter|Other injuries of right eye and orbit, initial encounter +C2831908|T037|PT|S05.8X1A|ICD10CM|Other injuries of right eye and orbit, initial encounter|Other injuries of right eye and orbit, initial encounter +C2831909|T037|AB|S05.8X1D|ICD10CM|Other injuries of right eye and orbit, subsequent encounter|Other injuries of right eye and orbit, subsequent encounter +C2831909|T037|PT|S05.8X1D|ICD10CM|Other injuries of right eye and orbit, subsequent encounter|Other injuries of right eye and orbit, subsequent encounter +C2831910|T037|AB|S05.8X1S|ICD10CM|Other injuries of right eye and orbit, sequela|Other injuries of right eye and orbit, sequela +C2831910|T037|PT|S05.8X1S|ICD10CM|Other injuries of right eye and orbit, sequela|Other injuries of right eye and orbit, sequela +C2831911|T037|AB|S05.8X2|ICD10CM|Other injuries of left eye and orbit|Other injuries of left eye and orbit +C2831911|T037|HT|S05.8X2|ICD10CM|Other injuries of left eye and orbit|Other injuries of left eye and orbit +C2831912|T037|AB|S05.8X2A|ICD10CM|Other injuries of left eye and orbit, initial encounter|Other injuries of left eye and orbit, initial encounter +C2831912|T037|PT|S05.8X2A|ICD10CM|Other injuries of left eye and orbit, initial encounter|Other injuries of left eye and orbit, initial encounter +C2831913|T037|AB|S05.8X2D|ICD10CM|Other injuries of left eye and orbit, subsequent encounter|Other injuries of left eye and orbit, subsequent encounter +C2831913|T037|PT|S05.8X2D|ICD10CM|Other injuries of left eye and orbit, subsequent encounter|Other injuries of left eye and orbit, subsequent encounter +C2831914|T037|AB|S05.8X2S|ICD10CM|Other injuries of left eye and orbit, sequela|Other injuries of left eye and orbit, sequela +C2831914|T037|PT|S05.8X2S|ICD10CM|Other injuries of left eye and orbit, sequela|Other injuries of left eye and orbit, sequela +C2831915|T037|AB|S05.8X9|ICD10CM|Other injuries of unspecified eye and orbit|Other injuries of unspecified eye and orbit +C2831915|T037|HT|S05.8X9|ICD10CM|Other injuries of unspecified eye and orbit|Other injuries of unspecified eye and orbit +C2831916|T037|AB|S05.8X9A|ICD10CM|Other injuries of unspecified eye and orbit, init encntr|Other injuries of unspecified eye and orbit, init encntr +C2831916|T037|PT|S05.8X9A|ICD10CM|Other injuries of unspecified eye and orbit, initial encounter|Other injuries of unspecified eye and orbit, initial encounter +C2831917|T037|AB|S05.8X9D|ICD10CM|Other injuries of unspecified eye and orbit, subs encntr|Other injuries of unspecified eye and orbit, subs encntr +C2831917|T037|PT|S05.8X9D|ICD10CM|Other injuries of unspecified eye and orbit, subsequent encounter|Other injuries of unspecified eye and orbit, subsequent encounter +C2831918|T037|AB|S05.8X9S|ICD10CM|Other injuries of unspecified eye and orbit, sequela|Other injuries of unspecified eye and orbit, sequela +C2831918|T037|PT|S05.8X9S|ICD10CM|Other injuries of unspecified eye and orbit, sequela|Other injuries of unspecified eye and orbit, sequela +C0478210|T037|PT|S05.9|ICD10|Injury of eye and orbit, part unspecified|Injury of eye and orbit, part unspecified +C0015408|T037|ET|S05.9|ICD10CM|Injury of eye NOS|Injury of eye NOS +C2831919|T037|AB|S05.9|ICD10CM|Unspecified injury of eye and orbit|Unspecified injury of eye and orbit +C2831919|T037|HT|S05.9|ICD10CM|Unspecified injury of eye and orbit|Unspecified injury of eye and orbit +C2831920|T037|AB|S05.90|ICD10CM|Unspecified injury of unspecified eye and orbit|Unspecified injury of unspecified eye and orbit +C2831920|T037|HT|S05.90|ICD10CM|Unspecified injury of unspecified eye and orbit|Unspecified injury of unspecified eye and orbit +C2831921|T037|AB|S05.90XA|ICD10CM|Unspecified injury of unspecified eye and orbit, init encntr|Unspecified injury of unspecified eye and orbit, init encntr +C2831921|T037|PT|S05.90XA|ICD10CM|Unspecified injury of unspecified eye and orbit, initial encounter|Unspecified injury of unspecified eye and orbit, initial encounter +C2831922|T037|AB|S05.90XD|ICD10CM|Unspecified injury of unspecified eye and orbit, subs encntr|Unspecified injury of unspecified eye and orbit, subs encntr +C2831922|T037|PT|S05.90XD|ICD10CM|Unspecified injury of unspecified eye and orbit, subsequent encounter|Unspecified injury of unspecified eye and orbit, subsequent encounter +C2831923|T037|AB|S05.90XS|ICD10CM|Unspecified injury of unspecified eye and orbit, sequela|Unspecified injury of unspecified eye and orbit, sequela +C2831923|T037|PT|S05.90XS|ICD10CM|Unspecified injury of unspecified eye and orbit, sequela|Unspecified injury of unspecified eye and orbit, sequela +C2831924|T037|AB|S05.91|ICD10CM|Unspecified injury of right eye and orbit|Unspecified injury of right eye and orbit +C2831924|T037|HT|S05.91|ICD10CM|Unspecified injury of right eye and orbit|Unspecified injury of right eye and orbit +C2831925|T037|AB|S05.91XA|ICD10CM|Unspecified injury of right eye and orbit, initial encounter|Unspecified injury of right eye and orbit, initial encounter +C2831925|T037|PT|S05.91XA|ICD10CM|Unspecified injury of right eye and orbit, initial encounter|Unspecified injury of right eye and orbit, initial encounter +C2831926|T037|AB|S05.91XD|ICD10CM|Unspecified injury of right eye and orbit, subs encntr|Unspecified injury of right eye and orbit, subs encntr +C2831926|T037|PT|S05.91XD|ICD10CM|Unspecified injury of right eye and orbit, subsequent encounter|Unspecified injury of right eye and orbit, subsequent encounter +C2831927|T037|AB|S05.91XS|ICD10CM|Unspecified injury of right eye and orbit, sequela|Unspecified injury of right eye and orbit, sequela +C2831927|T037|PT|S05.91XS|ICD10CM|Unspecified injury of right eye and orbit, sequela|Unspecified injury of right eye and orbit, sequela +C2831928|T037|AB|S05.92|ICD10CM|Unspecified injury of left eye and orbit|Unspecified injury of left eye and orbit +C2831928|T037|HT|S05.92|ICD10CM|Unspecified injury of left eye and orbit|Unspecified injury of left eye and orbit +C2831929|T037|AB|S05.92XA|ICD10CM|Unspecified injury of left eye and orbit, initial encounter|Unspecified injury of left eye and orbit, initial encounter +C2831929|T037|PT|S05.92XA|ICD10CM|Unspecified injury of left eye and orbit, initial encounter|Unspecified injury of left eye and orbit, initial encounter +C2831930|T037|AB|S05.92XD|ICD10CM|Unspecified injury of left eye and orbit, subs encntr|Unspecified injury of left eye and orbit, subs encntr +C2831930|T037|PT|S05.92XD|ICD10CM|Unspecified injury of left eye and orbit, subsequent encounter|Unspecified injury of left eye and orbit, subsequent encounter +C2831931|T037|AB|S05.92XS|ICD10CM|Unspecified injury of left eye and orbit, sequela|Unspecified injury of left eye and orbit, sequela +C2831931|T037|PT|S05.92XS|ICD10CM|Unspecified injury of left eye and orbit, sequela|Unspecified injury of left eye and orbit, sequela +C0347535|T037|HT|S06|ICD10CM|Intracranial injury|Intracranial injury +C0347535|T037|AB|S06|ICD10CM|Intracranial injury|Intracranial injury +C0347535|T037|HT|S06|ICD10|Intracranial injury|Intracranial injury +C0876926|T037|ET|S06|ICD10CM|traumatic brain injury|traumatic brain injury +C0006107|T037|ET|S06.0|ICD10CM|Commotio cerebri|Commotio cerebri +C0006107|T037|HT|S06.0|ICD10CM|Concussion|Concussion +C0006107|T037|AB|S06.0|ICD10CM|Concussion|Concussion +C0006107|T037|PT|S06.0|ICD10|Concussion|Concussion +C0006107|T037|HT|S06.0X|ICD10CM|Concussion|Concussion +C0006107|T037|AB|S06.0X|ICD10CM|Concussion|Concussion +C2831932|T037|AB|S06.0X0|ICD10CM|Concussion without loss of consciousness|Concussion without loss of consciousness +C2831932|T037|HT|S06.0X0|ICD10CM|Concussion without loss of consciousness|Concussion without loss of consciousness +C2831933|T037|AB|S06.0X0A|ICD10CM|Concussion without loss of consciousness, initial encounter|Concussion without loss of consciousness, initial encounter +C2831933|T037|PT|S06.0X0A|ICD10CM|Concussion without loss of consciousness, initial encounter|Concussion without loss of consciousness, initial encounter +C2831934|T037|AB|S06.0X0D|ICD10CM|Concussion without loss of consciousness, subs encntr|Concussion without loss of consciousness, subs encntr +C2831934|T037|PT|S06.0X0D|ICD10CM|Concussion without loss of consciousness, subsequent encounter|Concussion without loss of consciousness, subsequent encounter +C2831935|T037|AB|S06.0X0S|ICD10CM|Concussion without loss of consciousness, sequela|Concussion without loss of consciousness, sequela +C2831935|T037|PT|S06.0X0S|ICD10CM|Concussion without loss of consciousness, sequela|Concussion without loss of consciousness, sequela +C1260444|T037|AB|S06.0X1|ICD10CM|Concussion with loss of consciousness of 30 minutes or less|Concussion with loss of consciousness of 30 minutes or less +C1260444|T037|HT|S06.0X1|ICD10CM|Concussion with loss of consciousness of 30 minutes or less|Concussion with loss of consciousness of 30 minutes or less +C2831936|T037|AB|S06.0X1A|ICD10CM|Concussion w LOC of 30 minutes or less, init|Concussion w LOC of 30 minutes or less, init +C2831936|T037|PT|S06.0X1A|ICD10CM|Concussion with loss of consciousness of 30 minutes or less, initial encounter|Concussion with loss of consciousness of 30 minutes or less, initial encounter +C2831937|T037|AB|S06.0X1D|ICD10CM|Concussion w LOC of 30 minutes or less, subs|Concussion w LOC of 30 minutes or less, subs +C2831937|T037|PT|S06.0X1D|ICD10CM|Concussion with loss of consciousness of 30 minutes or less, subsequent encounter|Concussion with loss of consciousness of 30 minutes or less, subsequent encounter +C2831938|T037|AB|S06.0X1S|ICD10CM|Concussion w LOC of 30 minutes or less, sequela|Concussion w LOC of 30 minutes or less, sequela +C2831938|T037|PT|S06.0X1S|ICD10CM|Concussion with loss of consciousness of 30 minutes or less, sequela|Concussion with loss of consciousness of 30 minutes or less, sequela +C0006107|T037|ET|S06.0X9|ICD10CM|Concussion NOS|Concussion NOS +C0160126|T037|AB|S06.0X9|ICD10CM|Concussion with loss of consciousness of unsp duration|Concussion with loss of consciousness of unsp duration +C0160126|T037|HT|S06.0X9|ICD10CM|Concussion with loss of consciousness of unspecified duration|Concussion with loss of consciousness of unspecified duration +C2831967|T037|AB|S06.0X9A|ICD10CM|Concussion w loss of consciousness of unsp duration, init|Concussion w loss of consciousness of unsp duration, init +C2831967|T037|PT|S06.0X9A|ICD10CM|Concussion with loss of consciousness of unspecified duration, initial encounter|Concussion with loss of consciousness of unspecified duration, initial encounter +C2831968|T037|AB|S06.0X9D|ICD10CM|Concussion w loss of consciousness of unsp duration, subs|Concussion w loss of consciousness of unsp duration, subs +C2831968|T037|PT|S06.0X9D|ICD10CM|Concussion with loss of consciousness of unspecified duration, subsequent encounter|Concussion with loss of consciousness of unspecified duration, subsequent encounter +C2831969|T037|AB|S06.0X9S|ICD10CM|Concussion w loss of consciousness of unsp duration, sequela|Concussion w loss of consciousness of unsp duration, sequela +C2831969|T037|PT|S06.0X9S|ICD10CM|Concussion with loss of consciousness of unspecified duration, sequela|Concussion with loss of consciousness of unspecified duration, sequela +C2831970|T047|ET|S06.1|ICD10CM|Diffuse traumatic cerebral edema|Diffuse traumatic cerebral edema +C0474990|T037|ET|S06.1|ICD10CM|Focal traumatic cerebral edema|Focal traumatic cerebral edema +C0472391|T037|HT|S06.1|ICD10CM|Traumatic cerebral edema|Traumatic cerebral edema +C0472391|T037|AB|S06.1|ICD10CM|Traumatic cerebral edema|Traumatic cerebral edema +C0472391|T037|PT|S06.1|ICD10AE|Traumatic cerebral edema|Traumatic cerebral edema +C0472391|T037|PT|S06.1|ICD10|Traumatic cerebral oedema|Traumatic cerebral oedema +C0472391|T037|HT|S06.1X|ICD10CM|Traumatic cerebral edema|Traumatic cerebral edema +C0472391|T037|AB|S06.1X|ICD10CM|Traumatic cerebral edema|Traumatic cerebral edema +C2831971|T037|AB|S06.1X0|ICD10CM|Traumatic cerebral edema without loss of consciousness|Traumatic cerebral edema without loss of consciousness +C2831971|T037|HT|S06.1X0|ICD10CM|Traumatic cerebral edema without loss of consciousness|Traumatic cerebral edema without loss of consciousness +C2831972|T037|AB|S06.1X0A|ICD10CM|Traumatic cerebral edema w/o loss of consciousness, init|Traumatic cerebral edema w/o loss of consciousness, init +C2831972|T037|PT|S06.1X0A|ICD10CM|Traumatic cerebral edema without loss of consciousness, initial encounter|Traumatic cerebral edema without loss of consciousness, initial encounter +C2831973|T037|AB|S06.1X0D|ICD10CM|Traumatic cerebral edema w/o loss of consciousness, subs|Traumatic cerebral edema w/o loss of consciousness, subs +C2831973|T037|PT|S06.1X0D|ICD10CM|Traumatic cerebral edema without loss of consciousness, subsequent encounter|Traumatic cerebral edema without loss of consciousness, subsequent encounter +C2831974|T037|AB|S06.1X0S|ICD10CM|Traumatic cerebral edema w/o loss of consciousness, sequela|Traumatic cerebral edema w/o loss of consciousness, sequela +C2831974|T037|PT|S06.1X0S|ICD10CM|Traumatic cerebral edema without loss of consciousness, sequela|Traumatic cerebral edema without loss of consciousness, sequela +C2831975|T037|AB|S06.1X1|ICD10CM|Traumatic cerebral edema w LOC of 30 minutes or less|Traumatic cerebral edema w LOC of 30 minutes or less +C2831975|T037|HT|S06.1X1|ICD10CM|Traumatic cerebral edema with loss of consciousness of 30 minutes or less|Traumatic cerebral edema with loss of consciousness of 30 minutes or less +C2831976|T037|AB|S06.1X1A|ICD10CM|Traumatic cerebral edema w LOC of 30 minutes or less, init|Traumatic cerebral edema w LOC of 30 minutes or less, init +C2831976|T037|PT|S06.1X1A|ICD10CM|Traumatic cerebral edema with loss of consciousness of 30 minutes or less, initial encounter|Traumatic cerebral edema with loss of consciousness of 30 minutes or less, initial encounter +C2831977|T037|AB|S06.1X1D|ICD10CM|Traumatic cerebral edema w LOC of 30 minutes or less, subs|Traumatic cerebral edema w LOC of 30 minutes or less, subs +C2831977|T037|PT|S06.1X1D|ICD10CM|Traumatic cerebral edema with loss of consciousness of 30 minutes or less, subsequent encounter|Traumatic cerebral edema with loss of consciousness of 30 minutes or less, subsequent encounter +C2831978|T037|AB|S06.1X1S|ICD10CM|Traum cerebral edema w LOC of 30 minutes or less, sequela|Traum cerebral edema w LOC of 30 minutes or less, sequela +C2831978|T037|PT|S06.1X1S|ICD10CM|Traumatic cerebral edema with loss of consciousness of 30 minutes or less, sequela|Traumatic cerebral edema with loss of consciousness of 30 minutes or less, sequela +C2831979|T037|AB|S06.1X2|ICD10CM|Traumatic cerebral edema w LOC of 31-59 min|Traumatic cerebral edema w LOC of 31-59 min +C2831979|T037|HT|S06.1X2|ICD10CM|Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes|Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes +C2831980|T037|AB|S06.1X2A|ICD10CM|Traumatic cerebral edema w LOC of 31-59 min, init|Traumatic cerebral edema w LOC of 31-59 min, init +C2831980|T037|PT|S06.1X2A|ICD10CM|Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes, initial encounter|Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes, initial encounter +C2831981|T037|AB|S06.1X2D|ICD10CM|Traumatic cerebral edema w LOC of 31-59 min, subs|Traumatic cerebral edema w LOC of 31-59 min, subs +C2831982|T037|AB|S06.1X2S|ICD10CM|Traumatic cerebral edema w LOC of 31-59 min, sequela|Traumatic cerebral edema w LOC of 31-59 min, sequela +C2831982|T037|PT|S06.1X2S|ICD10CM|Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes, sequela|Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes, sequela +C2831983|T037|AB|S06.1X3|ICD10CM|Traumatic cerebral edema w LOC of 1-5 hrs 59 min|Traumatic cerebral edema w LOC of 1-5 hrs 59 min +C2831983|T037|HT|S06.1X3|ICD10CM|Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes|Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes +C2831984|T037|AB|S06.1X3A|ICD10CM|Traumatic cerebral edema w LOC of 1-5 hrs 59 min, init|Traumatic cerebral edema w LOC of 1-5 hrs 59 min, init +C2831985|T037|AB|S06.1X3D|ICD10CM|Traumatic cerebral edema w LOC of 1-5 hrs 59 min, subs|Traumatic cerebral edema w LOC of 1-5 hrs 59 min, subs +C2831986|T037|AB|S06.1X3S|ICD10CM|Traumatic cerebral edema w LOC of 1-5 hrs 59 min, sequela|Traumatic cerebral edema w LOC of 1-5 hrs 59 min, sequela +C2831986|T037|PT|S06.1X3S|ICD10CM|Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela|Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +C2831987|T037|AB|S06.1X4|ICD10CM|Traumatic cerebral edema w LOC of 6 hours to 24 hours|Traumatic cerebral edema w LOC of 6 hours to 24 hours +C2831987|T037|HT|S06.1X4|ICD10CM|Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours|Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours +C2831988|T037|AB|S06.1X4A|ICD10CM|Traumatic cerebral edema w LOC of 6 hours to 24 hours, init|Traumatic cerebral edema w LOC of 6 hours to 24 hours, init +C2831988|T037|PT|S06.1X4A|ICD10CM|Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, initial encounter|Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, initial encounter +C2831989|T037|AB|S06.1X4D|ICD10CM|Traumatic cerebral edema w LOC of 6 hours to 24 hours, subs|Traumatic cerebral edema w LOC of 6 hours to 24 hours, subs +C2831989|T037|PT|S06.1X4D|ICD10CM|Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, subsequent encounter|Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, subsequent encounter +C2831990|T037|AB|S06.1X4S|ICD10CM|Traumatic cerebral edema w LOC of 6-24 hrs, sequela|Traumatic cerebral edema w LOC of 6-24 hrs, sequela +C2831990|T037|PT|S06.1X4S|ICD10CM|Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, sequela|Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, sequela +C2831991|T037|AB|S06.1X5|ICD10CM|Traumatic cerebral edema w LOC >24 hr w ret consc lev|Traumatic cerebral edema w LOC >24 hr w ret consc lev +C2831992|T037|AB|S06.1X5A|ICD10CM|Traumatic cerebral edema w LOC >24 hr w ret consc lev, init|Traumatic cerebral edema w LOC >24 hr w ret consc lev, init +C2831993|T037|AB|S06.1X5D|ICD10CM|Traumatic cerebral edema w LOC >24 hr w ret consc lev, subs|Traumatic cerebral edema w LOC >24 hr w ret consc lev, subs +C2831994|T037|AB|S06.1X5S|ICD10CM|Traum cerebral edema w LOC >24 hr w ret consc lev, sequela|Traum cerebral edema w LOC >24 hr w ret consc lev, sequela +C2831995|T037|AB|S06.1X6|ICD10CM|Traumatic cerebral edema w LOC >24 hr w/o ret consc w surv|Traumatic cerebral edema w LOC >24 hr w/o ret consc w surv +C2831996|T037|AB|S06.1X6A|ICD10CM|Traum cerebral edema w LOC >24 hr w/o ret consc w surv, init|Traum cerebral edema w LOC >24 hr w/o ret consc w surv, init +C2831997|T037|AB|S06.1X6D|ICD10CM|Traum cerebral edema w LOC >24 hr w/o ret consc w surv, subs|Traum cerebral edema w LOC >24 hr w/o ret consc w surv, subs +C2831998|T037|AB|S06.1X6S|ICD10CM|Traum cereb edema w LOC >24 hr w/o ret consc w surv, sequela|Traum cereb edema w LOC >24 hr w/o ret consc w surv, sequela +C2831999|T037|AB|S06.1X7|ICD10CM|Traum cereb edema w LOC w death due to brain injury bf consc|Traum cereb edema w LOC w death due to brain injury bf consc +C2832000|T037|AB|S06.1X7A|ICD10CM|Traum cereb edema w LOC w death d/t brain inj bf consc, init|Traum cereb edema w LOC w death d/t brain inj bf consc, init +C2832003|T037|AB|S06.1X8|ICD10CM|Traum cerebral edema w LOC w death due to oth cause bf consc|Traum cerebral edema w LOC w death due to oth cause bf consc +C2832004|T037|AB|S06.1X8A|ICD10CM|Traum cereb edema w LOC w death d/t oth cause bf consc, init|Traum cereb edema w LOC w death d/t oth cause bf consc, init +C0472391|T037|ET|S06.1X9|ICD10CM|Traumatic cerebral edema NOS|Traumatic cerebral edema NOS +C2832007|T037|AB|S06.1X9|ICD10CM|Traumatic cerebral edema w LOC of unsp duration|Traumatic cerebral edema w LOC of unsp duration +C2832007|T037|HT|S06.1X9|ICD10CM|Traumatic cerebral edema with loss of consciousness of unspecified duration|Traumatic cerebral edema with loss of consciousness of unspecified duration +C2832008|T037|AB|S06.1X9A|ICD10CM|Traumatic cerebral edema w LOC of unsp duration, init|Traumatic cerebral edema w LOC of unsp duration, init +C2832008|T037|PT|S06.1X9A|ICD10CM|Traumatic cerebral edema with loss of consciousness of unspecified duration, initial encounter|Traumatic cerebral edema with loss of consciousness of unspecified duration, initial encounter +C2832009|T037|AB|S06.1X9D|ICD10CM|Traumatic cerebral edema w LOC of unsp duration, subs|Traumatic cerebral edema w LOC of unsp duration, subs +C2832009|T037|PT|S06.1X9D|ICD10CM|Traumatic cerebral edema with loss of consciousness of unspecified duration, subsequent encounter|Traumatic cerebral edema with loss of consciousness of unspecified duration, subsequent encounter +C2832010|T037|AB|S06.1X9S|ICD10CM|Traumatic cerebral edema w LOC of unsp duration, sequela|Traumatic cerebral edema w LOC of unsp duration, sequela +C2832010|T037|PT|S06.1X9S|ICD10CM|Traumatic cerebral edema with loss of consciousness of unspecified duration, sequela|Traumatic cerebral edema with loss of consciousness of unspecified duration, sequela +C0433856|T037|ET|S06.2|ICD10CM|Diffuse axonal brain injury|Diffuse axonal brain injury +C0433856|T037|PT|S06.2|ICD10|Diffuse brain injury|Diffuse brain injury +C2832047|T037|AB|S06.2|ICD10CM|Diffuse traumatic brain injury|Diffuse traumatic brain injury +C2832047|T037|HT|S06.2|ICD10CM|Diffuse traumatic brain injury|Diffuse traumatic brain injury +C2832047|T037|HT|S06.2X|ICD10CM|Diffuse traumatic brain injury|Diffuse traumatic brain injury +C2832047|T037|AB|S06.2X|ICD10CM|Diffuse traumatic brain injury|Diffuse traumatic brain injury +C2832011|T037|AB|S06.2X0|ICD10CM|Diffuse traumatic brain injury without loss of consciousness|Diffuse traumatic brain injury without loss of consciousness +C2832011|T037|HT|S06.2X0|ICD10CM|Diffuse traumatic brain injury without loss of consciousness|Diffuse traumatic brain injury without loss of consciousness +C2832012|T037|AB|S06.2X0A|ICD10CM|Diffuse TBI w/o loss of consciousness, init|Diffuse TBI w/o loss of consciousness, init +C2832012|T037|PT|S06.2X0A|ICD10CM|Diffuse traumatic brain injury without loss of consciousness, initial encounter|Diffuse traumatic brain injury without loss of consciousness, initial encounter +C2832013|T037|AB|S06.2X0D|ICD10CM|Diffuse TBI w/o loss of consciousness, subs|Diffuse TBI w/o loss of consciousness, subs +C2832013|T037|PT|S06.2X0D|ICD10CM|Diffuse traumatic brain injury without loss of consciousness, subsequent encounter|Diffuse traumatic brain injury without loss of consciousness, subsequent encounter +C2832014|T037|AB|S06.2X0S|ICD10CM|Diffuse TBI w/o loss of consciousness, sequela|Diffuse TBI w/o loss of consciousness, sequela +C2832014|T037|PT|S06.2X0S|ICD10CM|Diffuse traumatic brain injury without loss of consciousness, sequela|Diffuse traumatic brain injury without loss of consciousness, sequela +C2832015|T037|AB|S06.2X1|ICD10CM|Diffuse TBI w loss of consciousness of 30 minutes or less|Diffuse TBI w loss of consciousness of 30 minutes or less +C2832015|T037|HT|S06.2X1|ICD10CM|Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less|Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less +C2832016|T037|AB|S06.2X1A|ICD10CM|Diffuse TBI w LOC of 30 minutes or less, init|Diffuse TBI w LOC of 30 minutes or less, init +C2832016|T037|PT|S06.2X1A|ICD10CM|Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less, initial encounter|Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less, initial encounter +C2832017|T037|AB|S06.2X1D|ICD10CM|Diffuse TBI w LOC of 30 minutes or less, subs|Diffuse TBI w LOC of 30 minutes or less, subs +C2832018|T037|AB|S06.2X1S|ICD10CM|Diffuse TBI w LOC of 30 minutes or less, sequela|Diffuse TBI w LOC of 30 minutes or less, sequela +C2832018|T037|PT|S06.2X1S|ICD10CM|Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less, sequela|Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less, sequela +C2832019|T037|AB|S06.2X2|ICD10CM|Diffuse TBI w loss of consciousness of 31-59 min|Diffuse TBI w loss of consciousness of 31-59 min +C2832019|T037|HT|S06.2X2|ICD10CM|Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes|Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes +C2832020|T037|AB|S06.2X2A|ICD10CM|Diffuse TBI w loss of consciousness of 31-59 min, init|Diffuse TBI w loss of consciousness of 31-59 min, init +C2832021|T037|AB|S06.2X2D|ICD10CM|Diffuse TBI w loss of consciousness of 31-59 min, subs|Diffuse TBI w loss of consciousness of 31-59 min, subs +C2832022|T037|AB|S06.2X2S|ICD10CM|Diffuse TBI w loss of consciousness of 31-59 min, sequela|Diffuse TBI w loss of consciousness of 31-59 min, sequela +C2832022|T037|PT|S06.2X2S|ICD10CM|Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, sequela|Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, sequela +C2832023|T037|AB|S06.2X3|ICD10CM|Diffuse TBI w loss of consciousness of 1-5 hrs 59 min|Diffuse TBI w loss of consciousness of 1-5 hrs 59 min +C2832023|T037|HT|S06.2X3|ICD10CM|Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes|Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes +C2832024|T037|AB|S06.2X3A|ICD10CM|Diffuse TBI w loss of consciousness of 1-5 hrs 59 min, init|Diffuse TBI w loss of consciousness of 1-5 hrs 59 min, init +C2832025|T037|AB|S06.2X3D|ICD10CM|Diffuse TBI w loss of consciousness of 1-5 hrs 59 min, subs|Diffuse TBI w loss of consciousness of 1-5 hrs 59 min, subs +C2832026|T037|AB|S06.2X3S|ICD10CM|Diffuse TBI w LOC of 1-5 hrs 59 min, sequela|Diffuse TBI w LOC of 1-5 hrs 59 min, sequela +C2832026|T037|PT|S06.2X3S|ICD10CM|Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela|Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +C2832027|T037|AB|S06.2X4|ICD10CM|Diffuse TBI w loss of consciousness of 6 hours to 24 hours|Diffuse TBI w loss of consciousness of 6 hours to 24 hours +C2832027|T037|HT|S06.2X4|ICD10CM|Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours|Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours +C2832028|T037|AB|S06.2X4A|ICD10CM|Diffuse TBI w LOC of 6 hours to 24 hours, init|Diffuse TBI w LOC of 6 hours to 24 hours, init +C2832028|T037|PT|S06.2X4A|ICD10CM|Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours, initial encounter|Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours, initial encounter +C2832029|T037|AB|S06.2X4D|ICD10CM|Diffuse TBI w LOC of 6 hours to 24 hours, subs|Diffuse TBI w LOC of 6 hours to 24 hours, subs +C2832030|T037|AB|S06.2X4S|ICD10CM|Diffuse TBI w LOC of 6 hours to 24 hours, sequela|Diffuse TBI w LOC of 6 hours to 24 hours, sequela +C2832030|T037|PT|S06.2X4S|ICD10CM|Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours, sequela|Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours, sequela +C2832031|T037|AB|S06.2X5|ICD10CM|Diffuse TBI w LOC >24 hr w return to conscious levels|Diffuse TBI w LOC >24 hr w return to conscious levels +C2832032|T037|AB|S06.2X5A|ICD10CM|Diffuse TBI w LOC >24 hr w return to conscious levels, init|Diffuse TBI w LOC >24 hr w return to conscious levels, init +C2832033|T037|AB|S06.2X5D|ICD10CM|Diffuse TBI w LOC >24 hr w return to conscious levels, subs|Diffuse TBI w LOC >24 hr w return to conscious levels, subs +C2832034|T037|AB|S06.2X5S|ICD10CM|Diffuse TBI w LOC >24 hr w return to consc levels, sequela|Diffuse TBI w LOC >24 hr w return to consc levels, sequela +C2832035|T037|AB|S06.2X6|ICD10CM|Diffuse TBI w LOC >24 hr w/o ret consc w surv|Diffuse TBI w LOC >24 hr w/o ret consc w surv +C2832036|T037|AB|S06.2X6A|ICD10CM|Diffuse TBI w LOC >24 hr w/o ret consc w surv, init|Diffuse TBI w LOC >24 hr w/o ret consc w surv, init +C2832037|T037|AB|S06.2X6D|ICD10CM|Diffuse TBI w LOC >24 hr w/o ret consc w surv, subs|Diffuse TBI w LOC >24 hr w/o ret consc w surv, subs +C2832038|T037|AB|S06.2X6S|ICD10CM|Diffuse TBI w LOC >24 hr w/o ret consc w surv, sequela|Diffuse TBI w LOC >24 hr w/o ret consc w surv, sequela +C2832039|T037|AB|S06.2X7|ICD10CM|Diffuse TBI w LOC w death due to brain injury bf consc|Diffuse TBI w LOC w death due to brain injury bf consc +C2832040|T037|AB|S06.2X7A|ICD10CM|Diffuse TBI w LOC w death due to brain injury bf consc, init|Diffuse TBI w LOC w death due to brain injury bf consc, init +C2832043|T037|AB|S06.2X8|ICD10CM|Diffuse TBI w LOC w death due to oth cause bf consc|Diffuse TBI w LOC w death due to oth cause bf consc +C2832044|T037|AB|S06.2X8A|ICD10CM|Diffuse TBI w LOC w death due to oth cause bf consc, init|Diffuse TBI w LOC w death due to oth cause bf consc, init +C2832048|T037|AB|S06.2X9|ICD10CM|Diffuse TBI w loss of consciousness of unsp duration|Diffuse TBI w loss of consciousness of unsp duration +C2832047|T037|ET|S06.2X9|ICD10CM|Diffuse traumatic brain injury NOS|Diffuse traumatic brain injury NOS +C2832048|T037|HT|S06.2X9|ICD10CM|Diffuse traumatic brain injury with loss of consciousness of unspecified duration|Diffuse traumatic brain injury with loss of consciousness of unspecified duration +C2832049|T037|AB|S06.2X9A|ICD10CM|Diffuse TBI w loss of consciousness of unsp duration, init|Diffuse TBI w loss of consciousness of unsp duration, init +C2832049|T037|PT|S06.2X9A|ICD10CM|Diffuse traumatic brain injury with loss of consciousness of unspecified duration, initial encounter|Diffuse traumatic brain injury with loss of consciousness of unspecified duration, initial encounter +C2832050|T037|AB|S06.2X9D|ICD10CM|Diffuse TBI w loss of consciousness of unsp duration, subs|Diffuse TBI w loss of consciousness of unsp duration, subs +C2832051|T037|AB|S06.2X9S|ICD10CM|Diffuse TBI w LOC of unsp duration, sequela|Diffuse TBI w LOC of unsp duration, sequela +C2832051|T037|PT|S06.2X9S|ICD10CM|Diffuse traumatic brain injury with loss of consciousness of unspecified duration, sequela|Diffuse traumatic brain injury with loss of consciousness of unspecified duration, sequela +C0452047|T037|PT|S06.3|ICD10|Focal brain injury|Focal brain injury +C2832052|T037|AB|S06.3|ICD10CM|Focal traumatic brain injury|Focal traumatic brain injury +C2832052|T037|HT|S06.3|ICD10CM|Focal traumatic brain injury|Focal traumatic brain injury +C2832089|T037|AB|S06.30|ICD10CM|Unspecified focal traumatic brain injury|Unspecified focal traumatic brain injury +C2832089|T037|HT|S06.30|ICD10CM|Unspecified focal traumatic brain injury|Unspecified focal traumatic brain injury +C2832053|T037|AB|S06.300|ICD10CM|Unsp focal traumatic brain injury w/o loss of consciousness|Unsp focal traumatic brain injury w/o loss of consciousness +C2832053|T037|HT|S06.300|ICD10CM|Unspecified focal traumatic brain injury without loss of consciousness|Unspecified focal traumatic brain injury without loss of consciousness +C2832054|T037|AB|S06.300A|ICD10CM|Unsp focal TBI w/o loss of consciousness, init|Unsp focal TBI w/o loss of consciousness, init +C2832054|T037|PT|S06.300A|ICD10CM|Unspecified focal traumatic brain injury without loss of consciousness, initial encounter|Unspecified focal traumatic brain injury without loss of consciousness, initial encounter +C2832055|T037|AB|S06.300D|ICD10CM|Unsp focal TBI w/o loss of consciousness, subs|Unsp focal TBI w/o loss of consciousness, subs +C2832055|T037|PT|S06.300D|ICD10CM|Unspecified focal traumatic brain injury without loss of consciousness, subsequent encounter|Unspecified focal traumatic brain injury without loss of consciousness, subsequent encounter +C2832056|T037|AB|S06.300S|ICD10CM|Unsp focal TBI w/o loss of consciousness, sequela|Unsp focal TBI w/o loss of consciousness, sequela +C2832056|T037|PT|S06.300S|ICD10CM|Unspecified focal traumatic brain injury without loss of consciousness, sequela|Unspecified focal traumatic brain injury without loss of consciousness, sequela +C2832057|T037|AB|S06.301|ICD10CM|Unsp focal TBI w loss of consciousness of 30 minutes or less|Unsp focal TBI w loss of consciousness of 30 minutes or less +C2832057|T037|HT|S06.301|ICD10CM|Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less|Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less +C2832058|T037|AB|S06.301A|ICD10CM|Unsp focal TBI w LOC of 30 minutes or less, init|Unsp focal TBI w LOC of 30 minutes or less, init +C2832059|T037|AB|S06.301D|ICD10CM|Unsp focal TBI w LOC of 30 minutes or less, subs|Unsp focal TBI w LOC of 30 minutes or less, subs +C2832060|T037|AB|S06.301S|ICD10CM|Unsp focal TBI w LOC of 30 minutes or less, sequela|Unsp focal TBI w LOC of 30 minutes or less, sequela +C2832060|T037|PT|S06.301S|ICD10CM|Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less, sequela|Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less, sequela +C2832061|T037|AB|S06.302|ICD10CM|Unsp focal TBI w loss of consciousness of 31-59 min|Unsp focal TBI w loss of consciousness of 31-59 min +C2832061|T037|HT|S06.302|ICD10CM|Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes|Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes +C2832062|T037|AB|S06.302A|ICD10CM|Unsp focal TBI w loss of consciousness of 31-59 min, init|Unsp focal TBI w loss of consciousness of 31-59 min, init +C2832063|T037|AB|S06.302D|ICD10CM|Unsp focal TBI w loss of consciousness of 31-59 min, subs|Unsp focal TBI w loss of consciousness of 31-59 min, subs +C2832064|T037|AB|S06.302S|ICD10CM|Unsp focal TBI w loss of consciousness of 31-59 min, sequela|Unsp focal TBI w loss of consciousness of 31-59 min, sequela +C2832065|T037|AB|S06.303|ICD10CM|Unsp focal TBI w loss of consciousness of 1-5 hrs 59 min|Unsp focal TBI w loss of consciousness of 1-5 hrs 59 min +C2832065|T037|HT|S06.303|ICD10CM|Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes|Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes +C2832066|T037|AB|S06.303A|ICD10CM|Unsp focal TBI w LOC of 1-5 hrs 59 min, init|Unsp focal TBI w LOC of 1-5 hrs 59 min, init +C2832067|T037|AB|S06.303D|ICD10CM|Unsp focal TBI w LOC of 1-5 hrs 59 min, subs|Unsp focal TBI w LOC of 1-5 hrs 59 min, subs +C2832068|T037|AB|S06.303S|ICD10CM|Unsp focal TBI w LOC of 1-5 hrs 59 min, sequela|Unsp focal TBI w LOC of 1-5 hrs 59 min, sequela +C2832069|T037|AB|S06.304|ICD10CM|Unsp focal TBI w LOC of 6 hours to 24 hours|Unsp focal TBI w LOC of 6 hours to 24 hours +C2832069|T037|HT|S06.304|ICD10CM|Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours|Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours +C2832070|T037|AB|S06.304A|ICD10CM|Unsp focal TBI w LOC of 6 hours to 24 hours, init|Unsp focal TBI w LOC of 6 hours to 24 hours, init +C2832071|T037|AB|S06.304D|ICD10CM|Unsp focal TBI w LOC of 6 hours to 24 hours, subs|Unsp focal TBI w LOC of 6 hours to 24 hours, subs +C2832072|T037|AB|S06.304S|ICD10CM|Unsp focal TBI w LOC of 6 hours to 24 hours, sequela|Unsp focal TBI w LOC of 6 hours to 24 hours, sequela +C2832072|T037|PT|S06.304S|ICD10CM|Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours, sequela|Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours, sequela +C2832073|T037|AB|S06.305|ICD10CM|Unsp focal TBI w LOC >24 hr w ret consc lev|Unsp focal TBI w LOC >24 hr w ret consc lev +C2832074|T037|AB|S06.305A|ICD10CM|Unsp focal TBI w LOC >24 hr w ret consc lev, init|Unsp focal TBI w LOC >24 hr w ret consc lev, init +C2832075|T037|AB|S06.305D|ICD10CM|Unsp focal TBI w LOC >24 hr w ret consc lev, subs|Unsp focal TBI w LOC >24 hr w ret consc lev, subs +C2832076|T037|AB|S06.305S|ICD10CM|Unsp focal TBI w LOC >24 hr w ret consc lev, sequela|Unsp focal TBI w LOC >24 hr w ret consc lev, sequela +C2832077|T037|AB|S06.306|ICD10CM|Unsp focal TBI w LOC >24 hr w/o ret consc w surv|Unsp focal TBI w LOC >24 hr w/o ret consc w surv +C2832078|T037|AB|S06.306A|ICD10CM|Unsp focal TBI w LOC >24 hr w/o ret consc w surv, init|Unsp focal TBI w LOC >24 hr w/o ret consc w surv, init +C2832079|T037|AB|S06.306D|ICD10CM|Unsp focal TBI w LOC >24 hr w/o ret consc w surv, subs|Unsp focal TBI w LOC >24 hr w/o ret consc w surv, subs +C2832080|T037|AB|S06.306S|ICD10CM|Unsp focal TBI w LOC >24 hr w/o ret consc w surv, sequela|Unsp focal TBI w LOC >24 hr w/o ret consc w surv, sequela +C2832081|T037|AB|S06.307|ICD10CM|Unsp focal TBI w LOC w death due to brain injury bf consc|Unsp focal TBI w LOC w death due to brain injury bf consc +C2832082|T037|AB|S06.307A|ICD10CM|Unsp focal TBI w LOC w death d/t brain injury bf consc, init|Unsp focal TBI w LOC w death d/t brain injury bf consc, init +C2832085|T037|AB|S06.308|ICD10CM|Unsp focal TBI w LOC w death due to oth cause bf consc|Unsp focal TBI w LOC w death due to oth cause bf consc +C2832086|T037|AB|S06.308A|ICD10CM|Unsp focal TBI w LOC w death due to oth cause bf consc, init|Unsp focal TBI w LOC w death due to oth cause bf consc, init +C2832090|T037|AB|S06.309|ICD10CM|Unsp focal TBI w loss of consciousness of unsp duration|Unsp focal TBI w loss of consciousness of unsp duration +C2832089|T037|ET|S06.309|ICD10CM|Unspecified focal traumatic brain injury NOS|Unspecified focal traumatic brain injury NOS +C2832090|T037|HT|S06.309|ICD10CM|Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration|Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration +C2832091|T037|AB|S06.309A|ICD10CM|Unsp focal TBI w LOC of unsp duration, init|Unsp focal TBI w LOC of unsp duration, init +C2832092|T037|AB|S06.309D|ICD10CM|Unsp focal TBI w LOC of unsp duration, subs|Unsp focal TBI w LOC of unsp duration, subs +C2832093|T037|AB|S06.309S|ICD10CM|Unsp focal TBI w LOC of unsp duration, sequela|Unsp focal TBI w LOC of unsp duration, sequela +C2832093|T037|PT|S06.309S|ICD10CM|Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration, sequela|Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration, sequela +C2832130|T037|AB|S06.31|ICD10CM|Contusion and laceration of right cerebrum|Contusion and laceration of right cerebrum +C2832130|T037|HT|S06.31|ICD10CM|Contusion and laceration of right cerebrum|Contusion and laceration of right cerebrum +C2832094|T037|AB|S06.310|ICD10CM|Contus/lac right cerebrum w/o loss of consciousness|Contus/lac right cerebrum w/o loss of consciousness +C2832094|T037|HT|S06.310|ICD10CM|Contusion and laceration of right cerebrum without loss of consciousness|Contusion and laceration of right cerebrum without loss of consciousness +C2832095|T037|AB|S06.310A|ICD10CM|Contus/lac right cerebrum w/o loss of consciousness, init|Contus/lac right cerebrum w/o loss of consciousness, init +C2832095|T037|PT|S06.310A|ICD10CM|Contusion and laceration of right cerebrum without loss of consciousness, initial encounter|Contusion and laceration of right cerebrum without loss of consciousness, initial encounter +C2832096|T037|AB|S06.310D|ICD10CM|Contus/lac right cerebrum w/o loss of consciousness, subs|Contus/lac right cerebrum w/o loss of consciousness, subs +C2832096|T037|PT|S06.310D|ICD10CM|Contusion and laceration of right cerebrum without loss of consciousness, subsequent encounter|Contusion and laceration of right cerebrum without loss of consciousness, subsequent encounter +C2832097|T037|AB|S06.310S|ICD10CM|Contus/lac right cerebrum w/o loss of consciousness, sequela|Contus/lac right cerebrum w/o loss of consciousness, sequela +C2832097|T037|PT|S06.310S|ICD10CM|Contusion and laceration of right cerebrum without loss of consciousness, sequela|Contusion and laceration of right cerebrum without loss of consciousness, sequela +C2832098|T037|AB|S06.311|ICD10CM|Contus/lac right cerebrum w LOC of 30 minutes or less|Contus/lac right cerebrum w LOC of 30 minutes or less +C2832098|T037|HT|S06.311|ICD10CM|Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less|Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less +C2832099|T037|AB|S06.311A|ICD10CM|Contus/lac right cerebrum w LOC of 30 minutes or less, init|Contus/lac right cerebrum w LOC of 30 minutes or less, init +C2832100|T037|AB|S06.311D|ICD10CM|Contus/lac right cerebrum w LOC of 30 minutes or less, subs|Contus/lac right cerebrum w LOC of 30 minutes or less, subs +C2832101|T037|AB|S06.311S|ICD10CM|Contus/lac r cereb w LOC of 30 minutes or less, sequela|Contus/lac r cereb w LOC of 30 minutes or less, sequela +C2832101|T037|PT|S06.311S|ICD10CM|Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less, sequela|Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less, sequela +C2832102|T037|AB|S06.312|ICD10CM|Contus/lac right cerebrum w LOC of 31-59 min|Contus/lac right cerebrum w LOC of 31-59 min +C2832102|T037|HT|S06.312|ICD10CM|Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes|Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes +C2832103|T037|AB|S06.312A|ICD10CM|Contus/lac right cerebrum w LOC of 31-59 min, init|Contus/lac right cerebrum w LOC of 31-59 min, init +C2832104|T037|AB|S06.312D|ICD10CM|Contus/lac right cerebrum w LOC of 31-59 min, subs|Contus/lac right cerebrum w LOC of 31-59 min, subs +C2832105|T037|AB|S06.312S|ICD10CM|Contus/lac right cerebrum w LOC of 31-59 min, sequela|Contus/lac right cerebrum w LOC of 31-59 min, sequela +C2832106|T037|AB|S06.313|ICD10CM|Contus/lac right cerebrum w LOC of 1-5 hrs 59 min|Contus/lac right cerebrum w LOC of 1-5 hrs 59 min +C2832107|T037|AB|S06.313A|ICD10CM|Contus/lac right cerebrum w LOC of 1-5 hrs 59 min, init|Contus/lac right cerebrum w LOC of 1-5 hrs 59 min, init +C2832108|T037|AB|S06.313D|ICD10CM|Contus/lac right cerebrum w LOC of 1-5 hrs 59 min, subs|Contus/lac right cerebrum w LOC of 1-5 hrs 59 min, subs +C2832109|T037|AB|S06.313S|ICD10CM|Contus/lac right cerebrum w LOC of 1-5 hrs 59 min, sequela|Contus/lac right cerebrum w LOC of 1-5 hrs 59 min, sequela +C2832110|T037|AB|S06.314|ICD10CM|Contus/lac right cerebrum w LOC of 6 hours to 24 hours|Contus/lac right cerebrum w LOC of 6 hours to 24 hours +C2832110|T037|HT|S06.314|ICD10CM|Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours|Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours +C2832111|T037|AB|S06.314A|ICD10CM|Contus/lac right cerebrum w LOC of 6 hours to 24 hours, init|Contus/lac right cerebrum w LOC of 6 hours to 24 hours, init +C2832112|T037|AB|S06.314D|ICD10CM|Contus/lac right cerebrum w LOC of 6 hours to 24 hours, subs|Contus/lac right cerebrum w LOC of 6 hours to 24 hours, subs +C2832113|T037|AB|S06.314S|ICD10CM|Contus/lac right cerebrum w LOC of 6-24 hrs, sequela|Contus/lac right cerebrum w LOC of 6-24 hrs, sequela +C2832114|T037|AB|S06.315|ICD10CM|Contus/lac right cerebrum w LOC >24 hr w ret consc lev|Contus/lac right cerebrum w LOC >24 hr w ret consc lev +C2832115|T037|AB|S06.315A|ICD10CM|Contus/lac right cerebrum w LOC >24 hr w ret consc lev, init|Contus/lac right cerebrum w LOC >24 hr w ret consc lev, init +C2832116|T037|AB|S06.315D|ICD10CM|Contus/lac right cerebrum w LOC >24 hr w ret consc lev, subs|Contus/lac right cerebrum w LOC >24 hr w ret consc lev, subs +C2832117|T037|AB|S06.315S|ICD10CM|Contus/lac r cereb w LOC >24 hr w ret consc lev, sequela|Contus/lac r cereb w LOC >24 hr w ret consc lev, sequela +C2832118|T037|AB|S06.316|ICD10CM|Contus/lac right cerebrum w LOC >24 hr w/o ret consc w surv|Contus/lac right cerebrum w LOC >24 hr w/o ret consc w surv +C2832119|T037|AB|S06.316A|ICD10CM|Contus/lac r cereb w LOC >24 hr w/o ret consc w surv, init|Contus/lac r cereb w LOC >24 hr w/o ret consc w surv, init +C2832120|T037|AB|S06.316D|ICD10CM|Contus/lac r cereb w LOC >24 hr w/o ret consc w surv, subs|Contus/lac r cereb w LOC >24 hr w/o ret consc w surv, subs +C2832121|T037|AB|S06.316S|ICD10CM|Contus/lac r cereb w LOC >24 hr w/o ret consc w surv, sqla|Contus/lac r cereb w LOC >24 hr w/o ret consc w surv, sqla +C2832122|T037|AB|S06.317|ICD10CM|Contus/lac r cereb w LOC w death d/t brain injury bf consc|Contus/lac r cereb w LOC w death d/t brain injury bf consc +C2832123|T037|AB|S06.317A|ICD10CM|Contus/lac r cereb w LOC w dth d/t brain inj bf consc, init|Contus/lac r cereb w LOC w dth d/t brain inj bf consc, init +C2832126|T037|AB|S06.318|ICD10CM|Contus/lac r cereb w LOC w death due to oth cause bf consc|Contus/lac r cereb w LOC w death due to oth cause bf consc +C2832127|T037|AB|S06.318A|ICD10CM|Contus/lac r cereb w LOC w dth d/t oth cause bf consc, init|Contus/lac r cereb w LOC w dth d/t oth cause bf consc, init +C2832131|T037|AB|S06.319|ICD10CM|Contus/lac right cerebrum w LOC of unsp duration|Contus/lac right cerebrum w LOC of unsp duration +C2832130|T037|ET|S06.319|ICD10CM|Contusion and laceration of right cerebrum NOS|Contusion and laceration of right cerebrum NOS +C2832131|T037|HT|S06.319|ICD10CM|Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration|Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration +C2832132|T037|AB|S06.319A|ICD10CM|Contus/lac right cerebrum w LOC of unsp duration, init|Contus/lac right cerebrum w LOC of unsp duration, init +C2832133|T037|AB|S06.319D|ICD10CM|Contus/lac right cerebrum w LOC of unsp duration, subs|Contus/lac right cerebrum w LOC of unsp duration, subs +C2832134|T037|AB|S06.319S|ICD10CM|Contus/lac right cerebrum w LOC of unsp duration, sequela|Contus/lac right cerebrum w LOC of unsp duration, sequela +C2832171|T037|AB|S06.32|ICD10CM|Contusion and laceration of left cerebrum|Contusion and laceration of left cerebrum +C2832171|T037|HT|S06.32|ICD10CM|Contusion and laceration of left cerebrum|Contusion and laceration of left cerebrum +C2832135|T037|AB|S06.320|ICD10CM|Contus/lac left cerebrum w/o loss of consciousness|Contus/lac left cerebrum w/o loss of consciousness +C2832135|T037|HT|S06.320|ICD10CM|Contusion and laceration of left cerebrum without loss of consciousness|Contusion and laceration of left cerebrum without loss of consciousness +C2832136|T037|AB|S06.320A|ICD10CM|Contus/lac left cerebrum w/o loss of consciousness, init|Contus/lac left cerebrum w/o loss of consciousness, init +C2832136|T037|PT|S06.320A|ICD10CM|Contusion and laceration of left cerebrum without loss of consciousness, initial encounter|Contusion and laceration of left cerebrum without loss of consciousness, initial encounter +C2832137|T037|AB|S06.320D|ICD10CM|Contus/lac left cerebrum w/o loss of consciousness, subs|Contus/lac left cerebrum w/o loss of consciousness, subs +C2832137|T037|PT|S06.320D|ICD10CM|Contusion and laceration of left cerebrum without loss of consciousness, subsequent encounter|Contusion and laceration of left cerebrum without loss of consciousness, subsequent encounter +C2832138|T037|AB|S06.320S|ICD10CM|Contus/lac left cerebrum w/o loss of consciousness, sequela|Contus/lac left cerebrum w/o loss of consciousness, sequela +C2832138|T037|PT|S06.320S|ICD10CM|Contusion and laceration of left cerebrum without loss of consciousness, sequela|Contusion and laceration of left cerebrum without loss of consciousness, sequela +C2832139|T037|AB|S06.321|ICD10CM|Contus/lac left cerebrum w LOC of 30 minutes or less|Contus/lac left cerebrum w LOC of 30 minutes or less +C2832139|T037|HT|S06.321|ICD10CM|Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less|Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less +C2832140|T037|AB|S06.321A|ICD10CM|Contus/lac left cerebrum w LOC of 30 minutes or less, init|Contus/lac left cerebrum w LOC of 30 minutes or less, init +C2832141|T037|AB|S06.321D|ICD10CM|Contus/lac left cerebrum w LOC of 30 minutes or less, subs|Contus/lac left cerebrum w LOC of 30 minutes or less, subs +C2832142|T037|AB|S06.321S|ICD10CM|Contus/lac l cereb w LOC of 30 minutes or less, sequela|Contus/lac l cereb w LOC of 30 minutes or less, sequela +C2832142|T037|PT|S06.321S|ICD10CM|Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less, sequela|Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less, sequela +C2832143|T037|AB|S06.322|ICD10CM|Contus/lac left cerebrum w LOC of 31-59 min|Contus/lac left cerebrum w LOC of 31-59 min +C2832143|T037|HT|S06.322|ICD10CM|Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes|Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes +C2832144|T037|AB|S06.322A|ICD10CM|Contus/lac left cerebrum w LOC of 31-59 min, init|Contus/lac left cerebrum w LOC of 31-59 min, init +C2832145|T037|AB|S06.322D|ICD10CM|Contus/lac left cerebrum w LOC of 31-59 min, subs|Contus/lac left cerebrum w LOC of 31-59 min, subs +C2832146|T037|AB|S06.322S|ICD10CM|Contus/lac left cerebrum w LOC of 31-59 min, sequela|Contus/lac left cerebrum w LOC of 31-59 min, sequela +C2832147|T037|AB|S06.323|ICD10CM|Contus/lac left cerebrum w LOC of 1-5 hrs 59 min|Contus/lac left cerebrum w LOC of 1-5 hrs 59 min +C2832147|T037|HT|S06.323|ICD10CM|Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes|Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes +C2832148|T037|AB|S06.323A|ICD10CM|Contus/lac left cerebrum w LOC of 1-5 hrs 59 min, init|Contus/lac left cerebrum w LOC of 1-5 hrs 59 min, init +C2832149|T037|AB|S06.323D|ICD10CM|Contus/lac left cerebrum w LOC of 1-5 hrs 59 min, subs|Contus/lac left cerebrum w LOC of 1-5 hrs 59 min, subs +C2832150|T037|AB|S06.323S|ICD10CM|Contus/lac left cerebrum w LOC of 1-5 hrs 59 min, sequela|Contus/lac left cerebrum w LOC of 1-5 hrs 59 min, sequela +C2832151|T037|AB|S06.324|ICD10CM|Contus/lac left cerebrum w LOC of 6 hours to 24 hours|Contus/lac left cerebrum w LOC of 6 hours to 24 hours +C2832151|T037|HT|S06.324|ICD10CM|Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours|Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours +C2832152|T037|AB|S06.324A|ICD10CM|Contus/lac left cerebrum w LOC of 6 hours to 24 hours, init|Contus/lac left cerebrum w LOC of 6 hours to 24 hours, init +C2832153|T037|AB|S06.324D|ICD10CM|Contus/lac left cerebrum w LOC of 6 hours to 24 hours, subs|Contus/lac left cerebrum w LOC of 6 hours to 24 hours, subs +C2832154|T037|AB|S06.324S|ICD10CM|Contus/lac left cerebrum w LOC of 6-24 hrs, sequela|Contus/lac left cerebrum w LOC of 6-24 hrs, sequela +C2832154|T037|PT|S06.324S|ICD10CM|Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours, sequela|Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours, sequela +C2832155|T037|AB|S06.325|ICD10CM|Contus/lac left cerebrum w LOC >24 hr w ret consc lev|Contus/lac left cerebrum w LOC >24 hr w ret consc lev +C2832156|T037|AB|S06.325A|ICD10CM|Contus/lac left cerebrum w LOC >24 hr w ret consc lev, init|Contus/lac left cerebrum w LOC >24 hr w ret consc lev, init +C2832157|T037|AB|S06.325D|ICD10CM|Contus/lac left cerebrum w LOC >24 hr w ret consc lev, subs|Contus/lac left cerebrum w LOC >24 hr w ret consc lev, subs +C2832158|T037|AB|S06.325S|ICD10CM|Contus/lac l cereb w LOC >24 hr w ret consc lev, sequela|Contus/lac l cereb w LOC >24 hr w ret consc lev, sequela +C2832159|T037|AB|S06.326|ICD10CM|Contus/lac left cerebrum w LOC >24 hr w/o ret consc w surv|Contus/lac left cerebrum w LOC >24 hr w/o ret consc w surv +C2832160|T037|AB|S06.326A|ICD10CM|Contus/lac l cereb w LOC >24 hr w/o ret consc w surv, init|Contus/lac l cereb w LOC >24 hr w/o ret consc w surv, init +C2832161|T037|AB|S06.326D|ICD10CM|Contus/lac l cereb w LOC >24 hr w/o ret consc w surv, subs|Contus/lac l cereb w LOC >24 hr w/o ret consc w surv, subs +C2832162|T037|AB|S06.326S|ICD10CM|Contus/lac l cereb w LOC >24 hr w/o ret consc w surv, sqla|Contus/lac l cereb w LOC >24 hr w/o ret consc w surv, sqla +C2832163|T037|AB|S06.327|ICD10CM|Contus/lac l cereb w LOC w death d/t brain injury bf consc|Contus/lac l cereb w LOC w death d/t brain injury bf consc +C2832164|T037|AB|S06.327A|ICD10CM|Contus/lac l cereb w LOC w dth d/t brain inj bf consc, init|Contus/lac l cereb w LOC w dth d/t brain inj bf consc, init +C2832167|T037|AB|S06.328|ICD10CM|Contus/lac l cereb w LOC w death due to oth cause bf consc|Contus/lac l cereb w LOC w death due to oth cause bf consc +C2832168|T037|AB|S06.328A|ICD10CM|Contus/lac l cereb w LOC w dth d/t oth cause bf consc, init|Contus/lac l cereb w LOC w dth d/t oth cause bf consc, init +C2832172|T037|AB|S06.329|ICD10CM|Contus/lac left cerebrum w LOC of unsp duration|Contus/lac left cerebrum w LOC of unsp duration +C2832171|T037|ET|S06.329|ICD10CM|Contusion and laceration of left cerebrum NOS|Contusion and laceration of left cerebrum NOS +C2832172|T037|HT|S06.329|ICD10CM|Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration|Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration +C2832173|T037|AB|S06.329A|ICD10CM|Contus/lac left cerebrum w LOC of unsp duration, init|Contus/lac left cerebrum w LOC of unsp duration, init +C2832174|T037|AB|S06.329D|ICD10CM|Contus/lac left cerebrum w LOC of unsp duration, subs|Contus/lac left cerebrum w LOC of unsp duration, subs +C2832175|T037|AB|S06.329S|ICD10CM|Contus/lac left cerebrum w LOC of unsp duration, sequela|Contus/lac left cerebrum w LOC of unsp duration, sequela +C2832176|T037|AB|S06.33|ICD10CM|Contusion and laceration of cerebrum, unspecified|Contusion and laceration of cerebrum, unspecified +C2832176|T037|HT|S06.33|ICD10CM|Contusion and laceration of cerebrum, unspecified|Contusion and laceration of cerebrum, unspecified +C2832177|T037|AB|S06.330|ICD10CM|Contusion and laceration of cereb, w/o loss of consciousness|Contusion and laceration of cereb, w/o loss of consciousness +C2832177|T037|HT|S06.330|ICD10CM|Contusion and laceration of cerebrum, unspecified, without loss of consciousness|Contusion and laceration of cerebrum, unspecified, without loss of consciousness +C2832178|T037|AB|S06.330A|ICD10CM|Contus/lac cereb, w/o loss of consciousness, init|Contus/lac cereb, w/o loss of consciousness, init +C2832178|T037|PT|S06.330A|ICD10CM|Contusion and laceration of cerebrum, unspecified, without loss of consciousness, initial encounter|Contusion and laceration of cerebrum, unspecified, without loss of consciousness, initial encounter +C2832179|T037|AB|S06.330D|ICD10CM|Contus/lac cereb, w/o loss of consciousness, subs|Contus/lac cereb, w/o loss of consciousness, subs +C2832180|T037|AB|S06.330S|ICD10CM|Contus/lac cereb, w/o loss of consciousness, sequela|Contus/lac cereb, w/o loss of consciousness, sequela +C2832180|T037|PT|S06.330S|ICD10CM|Contusion and laceration of cerebrum, unspecified, without loss of consciousness, sequela|Contusion and laceration of cerebrum, unspecified, without loss of consciousness, sequela +C2832181|T037|AB|S06.331|ICD10CM|Contus/lac cereb, w LOC of 30 minutes or less|Contus/lac cereb, w LOC of 30 minutes or less +C2832181|T037|HT|S06.331|ICD10CM|Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less|Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less +C2832182|T037|AB|S06.331A|ICD10CM|Contus/lac cereb, w LOC of 30 minutes or less, init|Contus/lac cereb, w LOC of 30 minutes or less, init +C2832183|T037|AB|S06.331D|ICD10CM|Contus/lac cereb, w LOC of 30 minutes or less, subs|Contus/lac cereb, w LOC of 30 minutes or less, subs +C2832184|T037|AB|S06.331S|ICD10CM|Contus/lac cereb, w LOC of 30 minutes or less, sequela|Contus/lac cereb, w LOC of 30 minutes or less, sequela +C2832185|T037|AB|S06.332|ICD10CM|Contus/lac cereb, w loss of consciousness of 31-59 min|Contus/lac cereb, w loss of consciousness of 31-59 min +C2832186|T037|AB|S06.332A|ICD10CM|Contus/lac cereb, w loss of consciousness of 31-59 min, init|Contus/lac cereb, w loss of consciousness of 31-59 min, init +C2832187|T037|AB|S06.332D|ICD10CM|Contus/lac cereb, w loss of consciousness of 31-59 min, subs|Contus/lac cereb, w loss of consciousness of 31-59 min, subs +C2832188|T037|AB|S06.332S|ICD10CM|Contus/lac cereb, w LOC of 31-59 min, sequela|Contus/lac cereb, w LOC of 31-59 min, sequela +C2832189|T037|AB|S06.333|ICD10CM|Contus/lac cereb, w loss of consciousness of 1-5 hrs 59 min|Contus/lac cereb, w loss of consciousness of 1-5 hrs 59 min +C2832190|T037|AB|S06.333A|ICD10CM|Contus/lac cereb, w LOC of 1-5 hrs 59 min, init|Contus/lac cereb, w LOC of 1-5 hrs 59 min, init +C2832191|T037|AB|S06.333D|ICD10CM|Contus/lac cereb, w LOC of 1-5 hrs 59 min, subs|Contus/lac cereb, w LOC of 1-5 hrs 59 min, subs +C2832192|T037|AB|S06.333S|ICD10CM|Contus/lac cereb, w LOC of 1-5 hrs 59 min, sequela|Contus/lac cereb, w LOC of 1-5 hrs 59 min, sequela +C2832193|T037|AB|S06.334|ICD10CM|Contus/lac cereb, w LOC of 6 hours to 24 hours|Contus/lac cereb, w LOC of 6 hours to 24 hours +C2832193|T037|HT|S06.334|ICD10CM|Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours|Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours +C2832194|T037|AB|S06.334A|ICD10CM|Contus/lac cereb, w LOC of 6 hours to 24 hours, init|Contus/lac cereb, w LOC of 6 hours to 24 hours, init +C2832195|T037|AB|S06.334D|ICD10CM|Contus/lac cereb, w LOC of 6 hours to 24 hours, subs|Contus/lac cereb, w LOC of 6 hours to 24 hours, subs +C2832196|T037|AB|S06.334S|ICD10CM|Contus/lac cereb, w LOC of 6 hours to 24 hours, sequela|Contus/lac cereb, w LOC of 6 hours to 24 hours, sequela +C2832197|T037|AB|S06.335|ICD10CM|Contus/lac cereb, w LOC >24 hr w ret consc lev|Contus/lac cereb, w LOC >24 hr w ret consc lev +C2832198|T037|AB|S06.335A|ICD10CM|Contus/lac cereb, w LOC >24 hr w ret consc lev, init|Contus/lac cereb, w LOC >24 hr w ret consc lev, init +C2832199|T037|AB|S06.335D|ICD10CM|Contus/lac cereb, w LOC >24 hr w ret consc lev, subs|Contus/lac cereb, w LOC >24 hr w ret consc lev, subs +C2832200|T037|AB|S06.335S|ICD10CM|Contus/lac cereb, w LOC >24 hr w ret consc lev, sequela|Contus/lac cereb, w LOC >24 hr w ret consc lev, sequela +C2832201|T037|AB|S06.336|ICD10CM|Contus/lac cereb, w LOC >24 hr w/o ret consc w surv|Contus/lac cereb, w LOC >24 hr w/o ret consc w surv +C2832202|T037|AB|S06.336A|ICD10CM|Contus/lac cereb, w LOC >24 hr w/o ret consc w surv, init|Contus/lac cereb, w LOC >24 hr w/o ret consc w surv, init +C2832203|T037|AB|S06.336D|ICD10CM|Contus/lac cereb, w LOC >24 hr w/o ret consc w surv, subs|Contus/lac cereb, w LOC >24 hr w/o ret consc w surv, subs +C2832204|T037|AB|S06.336S|ICD10CM|Contus/lac cereb, w LOC >24 hr w/o ret consc w surv, sequela|Contus/lac cereb, w LOC >24 hr w/o ret consc w surv, sequela +C2832205|T037|AB|S06.337|ICD10CM|Contus/lac cereb, w LOC w death due to brain injury bf consc|Contus/lac cereb, w LOC w death due to brain injury bf consc +C2832206|T037|AB|S06.337A|ICD10CM|Contus/lac cereb, w LOC w death d/t brain inj bf consc, init|Contus/lac cereb, w LOC w death d/t brain inj bf consc, init +C2832209|T037|AB|S06.338|ICD10CM|Contus/lac cereb, w LOC w death due to oth cause bf consc|Contus/lac cereb, w LOC w death due to oth cause bf consc +C2832210|T037|AB|S06.338A|ICD10CM|Contus/lac cereb, w LOC w death d/t oth cause bf consc, init|Contus/lac cereb, w LOC w death d/t oth cause bf consc, init +C2832214|T037|AB|S06.339|ICD10CM|Contus/lac cereb, w loss of consciousness of unsp duration|Contus/lac cereb, w loss of consciousness of unsp duration +C2832213|T037|ET|S06.339|ICD10CM|Contusion and laceration of cerebrum NOS|Contusion and laceration of cerebrum NOS +C2832215|T037|AB|S06.339A|ICD10CM|Contus/lac cereb, w LOC of unsp duration, init|Contus/lac cereb, w LOC of unsp duration, init +C2832216|T037|AB|S06.339D|ICD10CM|Contus/lac cereb, w LOC of unsp duration, subs|Contus/lac cereb, w LOC of unsp duration, subs +C2832217|T037|AB|S06.339S|ICD10CM|Contus/lac cereb, w LOC of unsp duration, sequela|Contus/lac cereb, w LOC of unsp duration, sequela +C2832255|T037|AB|S06.34|ICD10CM|Traumatic hemorrhage of right cerebrum|Traumatic hemorrhage of right cerebrum +C2832255|T037|HT|S06.34|ICD10CM|Traumatic hemorrhage of right cerebrum|Traumatic hemorrhage of right cerebrum +C2832218|T037|ET|S06.34|ICD10CM|Traumatic intracerebral hemorrhage and hematoma of right cerebrum|Traumatic intracerebral hemorrhage and hematoma of right cerebrum +C2832219|T037|AB|S06.340|ICD10CM|Traum hemor right cerebrum w/o loss of consciousness|Traum hemor right cerebrum w/o loss of consciousness +C2832219|T037|HT|S06.340|ICD10CM|Traumatic hemorrhage of right cerebrum without loss of consciousness|Traumatic hemorrhage of right cerebrum without loss of consciousness +C2832220|T037|AB|S06.340A|ICD10CM|Traum hemor right cerebrum w/o loss of consciousness, init|Traum hemor right cerebrum w/o loss of consciousness, init +C2832220|T037|PT|S06.340A|ICD10CM|Traumatic hemorrhage of right cerebrum without loss of consciousness, initial encounter|Traumatic hemorrhage of right cerebrum without loss of consciousness, initial encounter +C2832221|T037|AB|S06.340D|ICD10CM|Traum hemor right cerebrum w/o loss of consciousness, subs|Traum hemor right cerebrum w/o loss of consciousness, subs +C2832221|T037|PT|S06.340D|ICD10CM|Traumatic hemorrhage of right cerebrum without loss of consciousness, subsequent encounter|Traumatic hemorrhage of right cerebrum without loss of consciousness, subsequent encounter +C2832222|T037|AB|S06.340S|ICD10CM|Traum hemor right cerebrum w/o LOC, sequela|Traum hemor right cerebrum w/o LOC, sequela +C2832222|T037|PT|S06.340S|ICD10CM|Traumatic hemorrhage of right cerebrum without loss of consciousness, sequela|Traumatic hemorrhage of right cerebrum without loss of consciousness, sequela +C2832223|T037|AB|S06.341|ICD10CM|Traum hemor right cerebrum w LOC of 30 minutes or less|Traum hemor right cerebrum w LOC of 30 minutes or less +C2832223|T037|HT|S06.341|ICD10CM|Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less|Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less +C2832224|T037|AB|S06.341A|ICD10CM|Traum hemor right cerebrum w LOC of 30 minutes or less, init|Traum hemor right cerebrum w LOC of 30 minutes or less, init +C2832225|T037|AB|S06.341D|ICD10CM|Traum hemor right cerebrum w LOC of 30 minutes or less, subs|Traum hemor right cerebrum w LOC of 30 minutes or less, subs +C2832226|T037|AB|S06.341S|ICD10CM|Traum hemor r cereb w LOC of 30 minutes or less, sequela|Traum hemor r cereb w LOC of 30 minutes or less, sequela +C2832226|T037|PT|S06.341S|ICD10CM|Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less, sequela|Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less, sequela +C2832227|T037|AB|S06.342|ICD10CM|Traum hemor right cerebrum w LOC of 31-59 min|Traum hemor right cerebrum w LOC of 31-59 min +C2832227|T037|HT|S06.342|ICD10CM|Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes|Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes +C2832228|T037|AB|S06.342A|ICD10CM|Traum hemor right cerebrum w LOC of 31-59 min, init|Traum hemor right cerebrum w LOC of 31-59 min, init +C2832229|T037|AB|S06.342D|ICD10CM|Traum hemor right cerebrum w LOC of 31-59 min, subs|Traum hemor right cerebrum w LOC of 31-59 min, subs +C2832230|T037|AB|S06.342S|ICD10CM|Traum hemor right cerebrum w LOC of 31-59 min, sequela|Traum hemor right cerebrum w LOC of 31-59 min, sequela +C2832231|T037|AB|S06.343|ICD10CM|Traum hemor right cerebrum w LOC of 1-5 hrs 59 minutes|Traum hemor right cerebrum w LOC of 1-5 hrs 59 minutes +C2832231|T037|HT|S06.343|ICD10CM|Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes|Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes +C2832232|T037|AB|S06.343A|ICD10CM|Traum hemor right cerebrum w LOC of 1-5 hrs 59 minutes, init|Traum hemor right cerebrum w LOC of 1-5 hrs 59 minutes, init +C2832233|T037|AB|S06.343D|ICD10CM|Traum hemor right cerebrum w LOC of 1-5 hrs 59 minutes, subs|Traum hemor right cerebrum w LOC of 1-5 hrs 59 minutes, subs +C2832234|T037|AB|S06.343S|ICD10CM|Traum hemor r cereb w LOC of 1-5 hrs 59 minutes, sequela|Traum hemor r cereb w LOC of 1-5 hrs 59 minutes, sequela +C2832235|T037|AB|S06.344|ICD10CM|Traum hemor right cerebrum w LOC of 6 hours to 24 hours|Traum hemor right cerebrum w LOC of 6 hours to 24 hours +C2832235|T037|HT|S06.344|ICD10CM|Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours|Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours +C2832236|T037|AB|S06.344A|ICD10CM|Traum hemor right cerebrum w LOC of 6-24 hrs, init|Traum hemor right cerebrum w LOC of 6-24 hrs, init +C2832237|T037|AB|S06.344D|ICD10CM|Traum hemor right cerebrum w LOC of 6-24 hrs, subs|Traum hemor right cerebrum w LOC of 6-24 hrs, subs +C2832238|T037|AB|S06.344S|ICD10CM|Traum hemor right cerebrum w LOC of 6-24 hrs, sequela|Traum hemor right cerebrum w LOC of 6-24 hrs, sequela +C2832238|T037|PT|S06.344S|ICD10CM|Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours, sequela|Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours, sequela +C2832239|T037|AB|S06.345|ICD10CM|Traum hemor right cerebrum w LOC >24 hr w ret consc lev|Traum hemor right cerebrum w LOC >24 hr w ret consc lev +C2832240|T037|AB|S06.345A|ICD10CM|Traum hemor r cereb w LOC >24 hr w ret consc lev, init|Traum hemor r cereb w LOC >24 hr w ret consc lev, init +C2832241|T037|AB|S06.345D|ICD10CM|Traum hemor r cereb w LOC >24 hr w ret consc lev, subs|Traum hemor r cereb w LOC >24 hr w ret consc lev, subs +C2832242|T037|AB|S06.345S|ICD10CM|Traum hemor r cereb w LOC >24 hr w ret consc lev, sequela|Traum hemor r cereb w LOC >24 hr w ret consc lev, sequela +C2832243|T037|AB|S06.346|ICD10CM|Traum hemor right cerebrum w LOC >24 hr w/o ret consc w surv|Traum hemor right cerebrum w LOC >24 hr w/o ret consc w surv +C2832244|T037|AB|S06.346A|ICD10CM|Traum hemor r cereb w LOC >24 hr w/o ret consc w surv, init|Traum hemor r cereb w LOC >24 hr w/o ret consc w surv, init +C2832245|T037|AB|S06.346D|ICD10CM|Traum hemor r cereb w LOC >24 hr w/o ret consc w surv, subs|Traum hemor r cereb w LOC >24 hr w/o ret consc w surv, subs +C2832246|T037|AB|S06.346S|ICD10CM|Traum hemor r cereb w LOC >24 hr w/o ret consc w surv, sqla|Traum hemor r cereb w LOC >24 hr w/o ret consc w surv, sqla +C2832247|T037|AB|S06.347|ICD10CM|Traum hemor r cereb w LOC w death d/t brain injury bf consc|Traum hemor r cereb w LOC w death d/t brain injury bf consc +C2832248|T037|AB|S06.347A|ICD10CM|Traum hemor r cereb w LOC w dth d/t brain inj bf consc, init|Traum hemor r cereb w LOC w dth d/t brain inj bf consc, init +C2832251|T037|AB|S06.348|ICD10CM|Traum hemor r cereb w LOC w death due to oth cause bf consc|Traum hemor r cereb w LOC w death due to oth cause bf consc +C2832252|T037|AB|S06.348A|ICD10CM|Traum hemor r cereb w LOC w dth d/t oth cause bf consc, init|Traum hemor r cereb w LOC w dth d/t oth cause bf consc, init +C2832256|T037|AB|S06.349|ICD10CM|Traum hemor right cerebrum w LOC of unsp duration|Traum hemor right cerebrum w LOC of unsp duration +C2832255|T037|ET|S06.349|ICD10CM|Traumatic hemorrhage of right cerebrum NOS|Traumatic hemorrhage of right cerebrum NOS +C2832256|T037|HT|S06.349|ICD10CM|Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration|Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration +C2832257|T037|AB|S06.349A|ICD10CM|Traum hemor right cerebrum w LOC of unsp duration, init|Traum hemor right cerebrum w LOC of unsp duration, init +C2832258|T037|AB|S06.349D|ICD10CM|Traum hemor right cerebrum w LOC of unsp duration, subs|Traum hemor right cerebrum w LOC of unsp duration, subs +C2832259|T037|AB|S06.349S|ICD10CM|Traum hemor right cerebrum w LOC of unsp duration, sequela|Traum hemor right cerebrum w LOC of unsp duration, sequela +C2832259|T037|PT|S06.349S|ICD10CM|Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration, sequela|Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration, sequela +C2832297|T037|AB|S06.35|ICD10CM|Traumatic hemorrhage of left cerebrum|Traumatic hemorrhage of left cerebrum +C2832297|T037|HT|S06.35|ICD10CM|Traumatic hemorrhage of left cerebrum|Traumatic hemorrhage of left cerebrum +C2832260|T037|ET|S06.35|ICD10CM|Traumatic intracerebral hemorrhage and hematoma of left cerebrum|Traumatic intracerebral hemorrhage and hematoma of left cerebrum +C2832261|T037|AB|S06.350|ICD10CM|Traum hemor left cerebrum w/o loss of consciousness|Traum hemor left cerebrum w/o loss of consciousness +C2832261|T037|HT|S06.350|ICD10CM|Traumatic hemorrhage of left cerebrum without loss of consciousness|Traumatic hemorrhage of left cerebrum without loss of consciousness +C2832262|T037|AB|S06.350A|ICD10CM|Traum hemor left cerebrum w/o loss of consciousness, init|Traum hemor left cerebrum w/o loss of consciousness, init +C2832262|T037|PT|S06.350A|ICD10CM|Traumatic hemorrhage of left cerebrum without loss of consciousness, initial encounter|Traumatic hemorrhage of left cerebrum without loss of consciousness, initial encounter +C2832263|T037|AB|S06.350D|ICD10CM|Traum hemor left cerebrum w/o loss of consciousness, subs|Traum hemor left cerebrum w/o loss of consciousness, subs +C2832263|T037|PT|S06.350D|ICD10CM|Traumatic hemorrhage of left cerebrum without loss of consciousness, subsequent encounter|Traumatic hemorrhage of left cerebrum without loss of consciousness, subsequent encounter +C2832264|T037|AB|S06.350S|ICD10CM|Traum hemor left cerebrum w/o loss of consciousness, sequela|Traum hemor left cerebrum w/o loss of consciousness, sequela +C2832264|T037|PT|S06.350S|ICD10CM|Traumatic hemorrhage of left cerebrum without loss of consciousness, sequela|Traumatic hemorrhage of left cerebrum without loss of consciousness, sequela +C2832265|T037|AB|S06.351|ICD10CM|Traum hemor left cerebrum w LOC of 30 minutes or less|Traum hemor left cerebrum w LOC of 30 minutes or less +C2832265|T037|HT|S06.351|ICD10CM|Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less|Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less +C2832266|T037|AB|S06.351A|ICD10CM|Traum hemor left cerebrum w LOC of 30 minutes or less, init|Traum hemor left cerebrum w LOC of 30 minutes or less, init +C2832267|T037|AB|S06.351D|ICD10CM|Traum hemor left cerebrum w LOC of 30 minutes or less, subs|Traum hemor left cerebrum w LOC of 30 minutes or less, subs +C2832268|T037|AB|S06.351S|ICD10CM|Traum hemor l cereb w LOC of 30 minutes or less, sequela|Traum hemor l cereb w LOC of 30 minutes or less, sequela +C2832268|T037|PT|S06.351S|ICD10CM|Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less, sequela|Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less, sequela +C2832269|T037|AB|S06.352|ICD10CM|Traum hemor left cerebrum w LOC of 31-59 min|Traum hemor left cerebrum w LOC of 31-59 min +C2832269|T037|HT|S06.352|ICD10CM|Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes|Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes +C2832270|T037|AB|S06.352A|ICD10CM|Traum hemor left cerebrum w LOC of 31-59 min, init|Traum hemor left cerebrum w LOC of 31-59 min, init +C2832271|T037|AB|S06.352D|ICD10CM|Traum hemor left cerebrum w LOC of 31-59 min, subs|Traum hemor left cerebrum w LOC of 31-59 min, subs +C2832272|T037|AB|S06.352S|ICD10CM|Traum hemor left cerebrum w LOC of 31-59 min, sequela|Traum hemor left cerebrum w LOC of 31-59 min, sequela +C2832273|T037|AB|S06.353|ICD10CM|Traum hemor left cerebrum w LOC of 1-5 hrs 59 minutes|Traum hemor left cerebrum w LOC of 1-5 hrs 59 minutes +C2832273|T037|HT|S06.353|ICD10CM|Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes|Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes +C2832274|T037|AB|S06.353A|ICD10CM|Traum hemor left cerebrum w LOC of 1-5 hrs 59 minutes, init|Traum hemor left cerebrum w LOC of 1-5 hrs 59 minutes, init +C2832275|T037|AB|S06.353D|ICD10CM|Traum hemor left cerebrum w LOC of 1-5 hrs 59 minutes, subs|Traum hemor left cerebrum w LOC of 1-5 hrs 59 minutes, subs +C2832276|T037|AB|S06.353S|ICD10CM|Traum hemor l cereb w LOC of 1-5 hrs 59 minutes, sequela|Traum hemor l cereb w LOC of 1-5 hrs 59 minutes, sequela +C2832277|T037|AB|S06.354|ICD10CM|Traum hemor left cerebrum w LOC of 6 hours to 24 hours|Traum hemor left cerebrum w LOC of 6 hours to 24 hours +C2832277|T037|HT|S06.354|ICD10CM|Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours|Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours +C2832278|T037|AB|S06.354A|ICD10CM|Traum hemor left cerebrum w LOC of 6 hours to 24 hours, init|Traum hemor left cerebrum w LOC of 6 hours to 24 hours, init +C2832279|T037|AB|S06.354D|ICD10CM|Traum hemor left cerebrum w LOC of 6 hours to 24 hours, subs|Traum hemor left cerebrum w LOC of 6 hours to 24 hours, subs +C2832280|T037|AB|S06.354S|ICD10CM|Traum hemor left cerebrum w LOC of 6-24 hrs, sequela|Traum hemor left cerebrum w LOC of 6-24 hrs, sequela +C2832280|T037|PT|S06.354S|ICD10CM|Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours, sequela|Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours, sequela +C2832281|T037|AB|S06.355|ICD10CM|Traum hemor left cerebrum w LOC >24 hr w ret consc lev|Traum hemor left cerebrum w LOC >24 hr w ret consc lev +C2832282|T037|AB|S06.355A|ICD10CM|Traum hemor left cerebrum w LOC >24 hr w ret consc lev, init|Traum hemor left cerebrum w LOC >24 hr w ret consc lev, init +C2832283|T037|AB|S06.355D|ICD10CM|Traum hemor left cerebrum w LOC >24 hr w ret consc lev, subs|Traum hemor left cerebrum w LOC >24 hr w ret consc lev, subs +C2832284|T037|AB|S06.355S|ICD10CM|Traum hemor l cereb w LOC >24 hr w ret consc lev, sequela|Traum hemor l cereb w LOC >24 hr w ret consc lev, sequela +C2832285|T037|AB|S06.356|ICD10CM|Traum hemor left cerebrum w LOC >24 hr w/o ret consc w surv|Traum hemor left cerebrum w LOC >24 hr w/o ret consc w surv +C2832286|T037|AB|S06.356A|ICD10CM|Traum hemor l cereb w LOC >24 hr w/o ret consc w surv, init|Traum hemor l cereb w LOC >24 hr w/o ret consc w surv, init +C2832287|T037|AB|S06.356D|ICD10CM|Traum hemor l cereb w LOC >24 hr w/o ret consc w surv, subs|Traum hemor l cereb w LOC >24 hr w/o ret consc w surv, subs +C2832288|T037|AB|S06.356S|ICD10CM|Traum hemor l cereb w LOC >24 hr w/o ret consc w surv, sqla|Traum hemor l cereb w LOC >24 hr w/o ret consc w surv, sqla +C2832289|T037|AB|S06.357|ICD10CM|Traum hemor l cereb w LOC w death d/t brain injury bf consc|Traum hemor l cereb w LOC w death d/t brain injury bf consc +C2832290|T037|AB|S06.357A|ICD10CM|Traum hemor l cereb w LOC w dth d/t brain inj bf consc, init|Traum hemor l cereb w LOC w dth d/t brain inj bf consc, init +C2832293|T037|AB|S06.358|ICD10CM|Traum hemor l cereb w LOC w death due to oth cause bf consc|Traum hemor l cereb w LOC w death due to oth cause bf consc +C2832294|T037|AB|S06.358A|ICD10CM|Traum hemor l cereb w LOC w dth d/t oth cause bf consc, init|Traum hemor l cereb w LOC w dth d/t oth cause bf consc, init +C2832298|T037|AB|S06.359|ICD10CM|Traum hemor left cerebrum w LOC of unsp duration|Traum hemor left cerebrum w LOC of unsp duration +C2832297|T037|ET|S06.359|ICD10CM|Traumatic hemorrhage of left cerebrum NOS|Traumatic hemorrhage of left cerebrum NOS +C2832298|T037|HT|S06.359|ICD10CM|Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration|Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration +C2832299|T037|AB|S06.359A|ICD10CM|Traum hemor left cerebrum w LOC of unsp duration, init|Traum hemor left cerebrum w LOC of unsp duration, init +C2832300|T037|AB|S06.359D|ICD10CM|Traum hemor left cerebrum w LOC of unsp duration, subs|Traum hemor left cerebrum w LOC of unsp duration, subs +C2832301|T037|AB|S06.359S|ICD10CM|Traum hemor left cerebrum w LOC of unsp duration, sequela|Traum hemor left cerebrum w LOC of unsp duration, sequela +C2832301|T037|PT|S06.359S|ICD10CM|Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration, sequela|Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration, sequela +C2832303|T037|AB|S06.36|ICD10CM|Traumatic hemorrhage of cerebrum, unspecified|Traumatic hemorrhage of cerebrum, unspecified +C2832303|T037|HT|S06.36|ICD10CM|Traumatic hemorrhage of cerebrum, unspecified|Traumatic hemorrhage of cerebrum, unspecified +C2832302|T037|ET|S06.36|ICD10CM|Traumatic intracerebral hemorrhage and hematoma, unspecified|Traumatic intracerebral hemorrhage and hematoma, unspecified +C2832304|T037|AB|S06.360|ICD10CM|Traumatic hemorrhage of cereb, w/o loss of consciousness|Traumatic hemorrhage of cereb, w/o loss of consciousness +C2832304|T037|HT|S06.360|ICD10CM|Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness|Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness +C2832305|T037|AB|S06.360A|ICD10CM|Traum hemor cereb, w/o loss of consciousness, init|Traum hemor cereb, w/o loss of consciousness, init +C2832305|T037|PT|S06.360A|ICD10CM|Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, initial encounter|Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, initial encounter +C2832306|T037|AB|S06.360D|ICD10CM|Traum hemor cereb, w/o loss of consciousness, subs|Traum hemor cereb, w/o loss of consciousness, subs +C2832306|T037|PT|S06.360D|ICD10CM|Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, subsequent encounter|Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, subsequent encounter +C2832307|T037|AB|S06.360S|ICD10CM|Traum hemor cereb, w/o loss of consciousness, sequela|Traum hemor cereb, w/o loss of consciousness, sequela +C2832307|T037|PT|S06.360S|ICD10CM|Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, sequela|Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, sequela +C2832308|T037|AB|S06.361|ICD10CM|Traum hemor cereb, w LOC of 30 minutes or less|Traum hemor cereb, w LOC of 30 minutes or less +C2832308|T037|HT|S06.361|ICD10CM|Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less|Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less +C2832309|T037|AB|S06.361A|ICD10CM|Traum hemor cereb, w LOC of 30 minutes or less, init|Traum hemor cereb, w LOC of 30 minutes or less, init +C2832310|T037|AB|S06.361D|ICD10CM|Traum hemor cereb, w LOC of 30 minutes or less, subs|Traum hemor cereb, w LOC of 30 minutes or less, subs +C2832311|T037|AB|S06.361S|ICD10CM|Traum hemor cereb, w LOC of 30 minutes or less, sequela|Traum hemor cereb, w LOC of 30 minutes or less, sequela +C2832312|T037|AB|S06.362|ICD10CM|Traum hemor cereb, w loss of consciousness of 31-59 min|Traum hemor cereb, w loss of consciousness of 31-59 min +C2832313|T037|AB|S06.362A|ICD10CM|Traum hemor cereb, w LOC of 31-59 min, init|Traum hemor cereb, w LOC of 31-59 min, init +C2832314|T037|AB|S06.362D|ICD10CM|Traum hemor cereb, w LOC of 31-59 min, subs|Traum hemor cereb, w LOC of 31-59 min, subs +C2832315|T037|AB|S06.362S|ICD10CM|Traum hemor cereb, w LOC of 31-59 min, sequela|Traum hemor cereb, w LOC of 31-59 min, sequela +C2832316|T037|AB|S06.363|ICD10CM|Traum hemor cereb, w LOC of 1 hours to 5 hours 59 minutes|Traum hemor cereb, w LOC of 1 hours to 5 hours 59 minutes +C2832317|T037|AB|S06.363A|ICD10CM|Traum hemor cereb, w LOC of 1-5 hrs 59 minutes, init|Traum hemor cereb, w LOC of 1-5 hrs 59 minutes, init +C2832318|T037|AB|S06.363D|ICD10CM|Traum hemor cereb, w LOC of 1-5 hrs 59 minutes, subs|Traum hemor cereb, w LOC of 1-5 hrs 59 minutes, subs +C2832319|T037|AB|S06.363S|ICD10CM|Traum hemor cereb, w LOC of 1-5 hrs 59 minutes, sequela|Traum hemor cereb, w LOC of 1-5 hrs 59 minutes, sequela +C2832320|T037|AB|S06.364|ICD10CM|Traum hemor cereb, w LOC of 6 hours to 24 hours|Traum hemor cereb, w LOC of 6 hours to 24 hours +C2832320|T037|HT|S06.364|ICD10CM|Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours|Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours +C2832321|T037|AB|S06.364A|ICD10CM|Traum hemor cereb, w LOC of 6 hours to 24 hours, init|Traum hemor cereb, w LOC of 6 hours to 24 hours, init +C2832322|T037|AB|S06.364D|ICD10CM|Traum hemor cereb, w LOC of 6 hours to 24 hours, subs|Traum hemor cereb, w LOC of 6 hours to 24 hours, subs +C2832323|T037|AB|S06.364S|ICD10CM|Traum hemor cereb, w LOC of 6 hours to 24 hours, sequela|Traum hemor cereb, w LOC of 6 hours to 24 hours, sequela +C2832324|T037|AB|S06.365|ICD10CM|Traum hemor cereb, w LOC >24 hr w ret consc lev|Traum hemor cereb, w LOC >24 hr w ret consc lev +C2832325|T037|AB|S06.365A|ICD10CM|Traum hemor cereb, w LOC >24 hr w ret consc lev, init|Traum hemor cereb, w LOC >24 hr w ret consc lev, init +C2832326|T037|AB|S06.365D|ICD10CM|Traum hemor cereb, w LOC >24 hr w ret consc lev, subs|Traum hemor cereb, w LOC >24 hr w ret consc lev, subs +C2832327|T037|AB|S06.365S|ICD10CM|Traum hemor cereb, w LOC >24 hr w ret consc lev, sequela|Traum hemor cereb, w LOC >24 hr w ret consc lev, sequela +C2832328|T037|AB|S06.366|ICD10CM|Traum hemor cereb, w LOC >24 hr w/o ret consc w surv|Traum hemor cereb, w LOC >24 hr w/o ret consc w surv +C2832329|T037|AB|S06.366A|ICD10CM|Traum hemor cereb, w LOC >24 hr w/o ret consc w surv, init|Traum hemor cereb, w LOC >24 hr w/o ret consc w surv, init +C2832330|T037|AB|S06.366D|ICD10CM|Traum hemor cereb, w LOC >24 hr w/o ret consc w surv, subs|Traum hemor cereb, w LOC >24 hr w/o ret consc w surv, subs +C2832331|T037|AB|S06.366S|ICD10CM|Traum hemor cereb, w LOC >24 hr w/o ret consc w surv, sqla|Traum hemor cereb, w LOC >24 hr w/o ret consc w surv, sqla +C2832332|T037|AB|S06.367|ICD10CM|Traum hemor cereb, w LOC w death d/t brain injury bf consc|Traum hemor cereb, w LOC w death d/t brain injury bf consc +C2832333|T037|AB|S06.367A|ICD10CM|Traum hemor cereb, w LOC w dth d/t brain inj bf consc, init|Traum hemor cereb, w LOC w dth d/t brain inj bf consc, init +C2832336|T037|AB|S06.368|ICD10CM|Traum hemor cereb, w LOC w death due to oth cause bf consc|Traum hemor cereb, w LOC w death due to oth cause bf consc +C2832337|T037|AB|S06.368A|ICD10CM|Traum hemor cereb, w LOC w dth d/t oth cause bf consc, init|Traum hemor cereb, w LOC w dth d/t oth cause bf consc, init +C2832341|T037|AB|S06.369|ICD10CM|Traum hemor cereb, w loss of consciousness of unsp duration|Traum hemor cereb, w loss of consciousness of unsp duration +C2832340|T037|ET|S06.369|ICD10CM|Traumatic hemorrhage of cerebrum NOS|Traumatic hemorrhage of cerebrum NOS +C2832341|T037|HT|S06.369|ICD10CM|Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration|Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration +C2832342|T037|AB|S06.369A|ICD10CM|Traum hemor cereb, w LOC of unsp duration, init|Traum hemor cereb, w LOC of unsp duration, init +C2832343|T037|AB|S06.369D|ICD10CM|Traum hemor cereb, w LOC of unsp duration, subs|Traum hemor cereb, w LOC of unsp duration, subs +C2832344|T037|AB|S06.369S|ICD10CM|Traum hemor cereb, w LOC of unsp duration, sequela|Traum hemor cereb, w LOC of unsp duration, sequela +C2832381|T037|AB|S06.37|ICD10CM|Contusion, laceration, and hemorrhage of cerebellum|Contusion, laceration, and hemorrhage of cerebellum +C2832381|T037|HT|S06.37|ICD10CM|Contusion, laceration, and hemorrhage of cerebellum|Contusion, laceration, and hemorrhage of cerebellum +C2832345|T037|AB|S06.370|ICD10CM|Contus/lac/hem crblm w/o loss of consciousness|Contus/lac/hem crblm w/o loss of consciousness +C2832345|T037|HT|S06.370|ICD10CM|Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness|Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness +C2832346|T037|AB|S06.370A|ICD10CM|Contus/lac/hem crblm w/o loss of consciousness, init|Contus/lac/hem crblm w/o loss of consciousness, init +C2832346|T037|PT|S06.370A|ICD10CM|Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness, initial encounter|Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness, initial encounter +C2832347|T037|AB|S06.370D|ICD10CM|Contus/lac/hem crblm w/o loss of consciousness, subs|Contus/lac/hem crblm w/o loss of consciousness, subs +C2832348|T037|AB|S06.370S|ICD10CM|Contus/lac/hem crblm w/o loss of consciousness, sequela|Contus/lac/hem crblm w/o loss of consciousness, sequela +C2832348|T037|PT|S06.370S|ICD10CM|Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness, sequela|Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness, sequela +C2832349|T037|AB|S06.371|ICD10CM|Contus/lac/hem crblm w LOC of 30 minutes or less|Contus/lac/hem crblm w LOC of 30 minutes or less +C2832349|T037|HT|S06.371|ICD10CM|Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less|Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less +C2832350|T037|AB|S06.371A|ICD10CM|Contus/lac/hem crblm w LOC of 30 minutes or less, init|Contus/lac/hem crblm w LOC of 30 minutes or less, init +C2832351|T037|AB|S06.371D|ICD10CM|Contus/lac/hem crblm w LOC of 30 minutes or less, subs|Contus/lac/hem crblm w LOC of 30 minutes or less, subs +C2832352|T037|AB|S06.371S|ICD10CM|Contus/lac/hem crblm w LOC of 30 minutes or less, sequela|Contus/lac/hem crblm w LOC of 30 minutes or less, sequela +C2832353|T037|AB|S06.372|ICD10CM|Contus/lac/hem crblm w loss of consciousness of 31-59 min|Contus/lac/hem crblm w loss of consciousness of 31-59 min +C2832354|T037|AB|S06.372A|ICD10CM|Contus/lac/hem crblm w LOC of 31-59 min, init|Contus/lac/hem crblm w LOC of 31-59 min, init +C2832355|T037|AB|S06.372D|ICD10CM|Contus/lac/hem crblm w LOC of 31-59 min, subs|Contus/lac/hem crblm w LOC of 31-59 min, subs +C2832356|T037|AB|S06.372S|ICD10CM|Contus/lac/hem crblm w LOC of 31-59 min, sequela|Contus/lac/hem crblm w LOC of 31-59 min, sequela +C2832357|T037|AB|S06.373|ICD10CM|Contus/lac/hem crblm w LOC of 1-5 hrs 59 min|Contus/lac/hem crblm w LOC of 1-5 hrs 59 min +C2832358|T037|AB|S06.373A|ICD10CM|Contus/lac/hem crblm w LOC of 1-5 hrs 59 min, init|Contus/lac/hem crblm w LOC of 1-5 hrs 59 min, init +C2832359|T037|AB|S06.373D|ICD10CM|Contus/lac/hem crblm w LOC of 1-5 hrs 59 min, subs|Contus/lac/hem crblm w LOC of 1-5 hrs 59 min, subs +C2832360|T037|AB|S06.373S|ICD10CM|Contus/lac/hem crblm w LOC of 1-5 hrs 59 min, sequela|Contus/lac/hem crblm w LOC of 1-5 hrs 59 min, sequela +C2832361|T037|AB|S06.374|ICD10CM|Contus/lac/hem crblm w LOC of 6 hours to 24 hours|Contus/lac/hem crblm w LOC of 6 hours to 24 hours +C2832362|T037|AB|S06.374A|ICD10CM|Contus/lac/hem crblm w LOC of 6 hours to 24 hours, init|Contus/lac/hem crblm w LOC of 6 hours to 24 hours, init +C2832363|T037|AB|S06.374D|ICD10CM|Contus/lac/hem crblm w LOC of 6 hours to 24 hours, subs|Contus/lac/hem crblm w LOC of 6 hours to 24 hours, subs +C2832364|T037|AB|S06.374S|ICD10CM|Contus/lac/hem crblm w LOC of 6 hours to 24 hours, sequela|Contus/lac/hem crblm w LOC of 6 hours to 24 hours, sequela +C2832365|T037|AB|S06.375|ICD10CM|Contus/lac/hem crblm w LOC >24 hr w ret consc lev|Contus/lac/hem crblm w LOC >24 hr w ret consc lev +C2832366|T037|AB|S06.375A|ICD10CM|Contus/lac/hem crblm w LOC >24 hr w ret consc lev, init|Contus/lac/hem crblm w LOC >24 hr w ret consc lev, init +C2832367|T037|AB|S06.375D|ICD10CM|Contus/lac/hem crblm w LOC >24 hr w ret consc lev, subs|Contus/lac/hem crblm w LOC >24 hr w ret consc lev, subs +C2832368|T037|AB|S06.375S|ICD10CM|Contus/lac/hem crblm w LOC >24 hr w ret consc lev, sequela|Contus/lac/hem crblm w LOC >24 hr w ret consc lev, sequela +C2832369|T037|AB|S06.376|ICD10CM|Contus/lac/hem crblm w LOC >24 hr w/o ret consc w surv|Contus/lac/hem crblm w LOC >24 hr w/o ret consc w surv +C2832370|T037|AB|S06.376A|ICD10CM|Contus/lac/hem crblm w LOC >24 hr w/o ret consc w surv, init|Contus/lac/hem crblm w LOC >24 hr w/o ret consc w surv, init +C2832371|T037|AB|S06.376D|ICD10CM|Contus/lac/hem crblm w LOC >24 hr w/o ret consc w surv, subs|Contus/lac/hem crblm w LOC >24 hr w/o ret consc w surv, subs +C2832372|T037|AB|S06.376S|ICD10CM|Contus/lac/hem crblm w LOC >24 hr w/o ret consc w surv, sqla|Contus/lac/hem crblm w LOC >24 hr w/o ret consc w surv, sqla +C2832373|T037|AB|S06.377|ICD10CM|Contus/lac/hem crblm w LOC w death d/t brain injury bf consc|Contus/lac/hem crblm w LOC w death d/t brain injury bf consc +C2832374|T037|AB|S06.377A|ICD10CM|Contus/lac/hem crblm w LOC w dth d/t brain inj bf consc,init|Contus/lac/hem crblm w LOC w dth d/t brain inj bf consc,init +C2832377|T037|AB|S06.378|ICD10CM|Contus/lac/hem crblm w LOC w death due to oth cause bf consc|Contus/lac/hem crblm w LOC w death due to oth cause bf consc +C2832378|T037|AB|S06.378A|ICD10CM|Contus/lac/hem crblm w LOC w dth d/t oth cause bf consc,init|Contus/lac/hem crblm w LOC w dth d/t oth cause bf consc,init +C2832382|T037|AB|S06.379|ICD10CM|Contus/lac/hem crblm w LOC of unsp duration|Contus/lac/hem crblm w LOC of unsp duration +C2832381|T037|ET|S06.379|ICD10CM|Contusion, laceration, and hemorrhage of cerebellum NOS|Contusion, laceration, and hemorrhage of cerebellum NOS +C2832383|T037|AB|S06.379A|ICD10CM|Contus/lac/hem crblm w LOC of unsp duration, init|Contus/lac/hem crblm w LOC of unsp duration, init +C2832384|T037|AB|S06.379D|ICD10CM|Contus/lac/hem crblm w LOC of unsp duration, subs|Contus/lac/hem crblm w LOC of unsp duration, subs +C2832385|T037|AB|S06.379S|ICD10CM|Contus/lac/hem crblm w LOC of unsp duration, sequela|Contus/lac/hem crblm w LOC of unsp duration, sequela +C2832422|T037|AB|S06.38|ICD10CM|Contusion, laceration, and hemorrhage of brainstem|Contusion, laceration, and hemorrhage of brainstem +C2832422|T037|HT|S06.38|ICD10CM|Contusion, laceration, and hemorrhage of brainstem|Contusion, laceration, and hemorrhage of brainstem +C2832386|T037|AB|S06.380|ICD10CM|Contus/lac/hem brainstem w/o loss of consciousness|Contus/lac/hem brainstem w/o loss of consciousness +C2832386|T037|HT|S06.380|ICD10CM|Contusion, laceration, and hemorrhage of brainstem without loss of consciousness|Contusion, laceration, and hemorrhage of brainstem without loss of consciousness +C2832387|T037|AB|S06.380A|ICD10CM|Contus/lac/hem brainstem w/o loss of consciousness, init|Contus/lac/hem brainstem w/o loss of consciousness, init +C2832387|T037|PT|S06.380A|ICD10CM|Contusion, laceration, and hemorrhage of brainstem without loss of consciousness, initial encounter|Contusion, laceration, and hemorrhage of brainstem without loss of consciousness, initial encounter +C2832388|T037|AB|S06.380D|ICD10CM|Contus/lac/hem brainstem w/o loss of consciousness, subs|Contus/lac/hem brainstem w/o loss of consciousness, subs +C2832389|T037|AB|S06.380S|ICD10CM|Contus/lac/hem brainstem w/o loss of consciousness, sequela|Contus/lac/hem brainstem w/o loss of consciousness, sequela +C2832389|T037|PT|S06.380S|ICD10CM|Contusion, laceration, and hemorrhage of brainstem without loss of consciousness, sequela|Contusion, laceration, and hemorrhage of brainstem without loss of consciousness, sequela +C2832390|T037|AB|S06.381|ICD10CM|Contus/lac/hem brainstem w LOC of 30 minutes or less|Contus/lac/hem brainstem w LOC of 30 minutes or less +C2832390|T037|HT|S06.381|ICD10CM|Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less|Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less +C2832391|T037|AB|S06.381A|ICD10CM|Contus/lac/hem brainstem w LOC of 30 minutes or less, init|Contus/lac/hem brainstem w LOC of 30 minutes or less, init +C2832392|T037|AB|S06.381D|ICD10CM|Contus/lac/hem brainstem w LOC of 30 minutes or less, subs|Contus/lac/hem brainstem w LOC of 30 minutes or less, subs +C2832393|T037|AB|S06.381S|ICD10CM|Contus/lac/hem brnst w LOC of 30 minutes or less, sequela|Contus/lac/hem brnst w LOC of 30 minutes or less, sequela +C2832394|T037|AB|S06.382|ICD10CM|Contus/lac/hem brainstem w LOC of 31-59 min|Contus/lac/hem brainstem w LOC of 31-59 min +C2832395|T037|AB|S06.382A|ICD10CM|Contus/lac/hem brainstem w LOC of 31-59 min, init|Contus/lac/hem brainstem w LOC of 31-59 min, init +C2832396|T037|AB|S06.382D|ICD10CM|Contus/lac/hem brainstem w LOC of 31-59 min, subs|Contus/lac/hem brainstem w LOC of 31-59 min, subs +C2832397|T037|AB|S06.382S|ICD10CM|Contus/lac/hem brainstem w LOC of 31-59 min, sequela|Contus/lac/hem brainstem w LOC of 31-59 min, sequela +C2832398|T037|AB|S06.383|ICD10CM|Contus/lac/hem brainstem w LOC of 1-5 hrs 59 min|Contus/lac/hem brainstem w LOC of 1-5 hrs 59 min +C2832399|T037|AB|S06.383A|ICD10CM|Contus/lac/hem brainstem w LOC of 1-5 hrs 59 min, init|Contus/lac/hem brainstem w LOC of 1-5 hrs 59 min, init +C2832400|T037|AB|S06.383D|ICD10CM|Contus/lac/hem brainstem w LOC of 1-5 hrs 59 min, subs|Contus/lac/hem brainstem w LOC of 1-5 hrs 59 min, subs +C2832401|T037|AB|S06.383S|ICD10CM|Contus/lac/hem brainstem w LOC of 1-5 hrs 59 min, sequela|Contus/lac/hem brainstem w LOC of 1-5 hrs 59 min, sequela +C2832402|T037|AB|S06.384|ICD10CM|Contus/lac/hem brainstem w LOC of 6 hours to 24 hours|Contus/lac/hem brainstem w LOC of 6 hours to 24 hours +C2832402|T037|HT|S06.384|ICD10CM|Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours|Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours +C2832403|T037|AB|S06.384A|ICD10CM|Contus/lac/hem brainstem w LOC of 6 hours to 24 hours, init|Contus/lac/hem brainstem w LOC of 6 hours to 24 hours, init +C2832404|T037|AB|S06.384D|ICD10CM|Contus/lac/hem brainstem w LOC of 6 hours to 24 hours, subs|Contus/lac/hem brainstem w LOC of 6 hours to 24 hours, subs +C2832405|T037|AB|S06.384S|ICD10CM|Contus/lac/hem brainstem w LOC of 6-24 hrs, sequela|Contus/lac/hem brainstem w LOC of 6-24 hrs, sequela +C2832406|T037|AB|S06.385|ICD10CM|Contus/lac/hem brainstem w LOC >24 hr w ret consc lev|Contus/lac/hem brainstem w LOC >24 hr w ret consc lev +C2832407|T037|AB|S06.385A|ICD10CM|Contus/lac/hem brainstem w LOC >24 hr w ret consc lev, init|Contus/lac/hem brainstem w LOC >24 hr w ret consc lev, init +C2832408|T037|AB|S06.385D|ICD10CM|Contus/lac/hem brainstem w LOC >24 hr w ret consc lev, subs|Contus/lac/hem brainstem w LOC >24 hr w ret consc lev, subs +C2832409|T037|AB|S06.385S|ICD10CM|Contus/lac/hem brnst w LOC >24 hr w ret consc lev, sequela|Contus/lac/hem brnst w LOC >24 hr w ret consc lev, sequela +C2832410|T037|AB|S06.386|ICD10CM|Contus/lac/hem brainstem w LOC >24 hr w/o ret consc w surv|Contus/lac/hem brainstem w LOC >24 hr w/o ret consc w surv +C2832411|T037|AB|S06.386A|ICD10CM|Contus/lac/hem brnst w LOC >24 hr w/o ret consc w surv, init|Contus/lac/hem brnst w LOC >24 hr w/o ret consc w surv, init +C2832412|T037|AB|S06.386D|ICD10CM|Contus/lac/hem brnst w LOC >24 hr w/o ret consc w surv, subs|Contus/lac/hem brnst w LOC >24 hr w/o ret consc w surv, subs +C2832413|T037|AB|S06.386S|ICD10CM|Contus/lac/hem brnst w LOC >24 hr w/o ret consc w surv, sqla|Contus/lac/hem brnst w LOC >24 hr w/o ret consc w surv, sqla +C2832414|T037|AB|S06.387|ICD10CM|Contus/lac/hem brnst w LOC w death d/t brain injury bf consc|Contus/lac/hem brnst w LOC w death d/t brain injury bf consc +C2832415|T037|AB|S06.387A|ICD10CM|Contus/lac/hem brnst w LOC w dth d/t brain inj bf consc,init|Contus/lac/hem brnst w LOC w dth d/t brain inj bf consc,init +C2832418|T037|AB|S06.388|ICD10CM|Contus/lac/hem brnst w LOC w death due to oth cause bf consc|Contus/lac/hem brnst w LOC w death due to oth cause bf consc +C2832419|T037|AB|S06.388A|ICD10CM|Contus/lac/hem brnst w LOC w dth d/t oth cause bf consc,init|Contus/lac/hem brnst w LOC w dth d/t oth cause bf consc,init +C2832423|T037|AB|S06.389|ICD10CM|Contus/lac/hem brainstem w LOC of unsp duration|Contus/lac/hem brainstem w LOC of unsp duration +C2832422|T037|ET|S06.389|ICD10CM|Contusion, laceration, and hemorrhage of brainstem NOS|Contusion, laceration, and hemorrhage of brainstem NOS +C2832424|T037|AB|S06.389A|ICD10CM|Contus/lac/hem brainstem w LOC of unsp duration, init|Contus/lac/hem brainstem w LOC of unsp duration, init +C2832425|T037|AB|S06.389D|ICD10CM|Contus/lac/hem brainstem w LOC of unsp duration, subs|Contus/lac/hem brainstem w LOC of unsp duration, subs +C2832426|T037|AB|S06.389S|ICD10CM|Contus/lac/hem brainstem w LOC of unsp duration, sequela|Contus/lac/hem brainstem w LOC of unsp duration, sequela +C0238154|T046|PT|S06.4|ICD10|Epidural haemorrhage|Epidural haemorrhage +C0238154|T046|PT|S06.4|ICD10AE|Epidural hemorrhage|Epidural hemorrhage +C0238154|T046|HT|S06.4|ICD10CM|Epidural hemorrhage|Epidural hemorrhage +C0238154|T046|AB|S06.4|ICD10CM|Epidural hemorrhage|Epidural hemorrhage +C2832427|T037|ET|S06.4|ICD10CM|Extradural hemorrhage (traumatic)|Extradural hemorrhage (traumatic) +C0238154|T046|ET|S06.4|ICD10CM|Extradural hemorrhage NOS|Extradural hemorrhage NOS +C0238154|T046|HT|S06.4X|ICD10CM|Epidural hemorrhage|Epidural hemorrhage +C0238154|T046|AB|S06.4X|ICD10CM|Epidural hemorrhage|Epidural hemorrhage +C2832428|T037|AB|S06.4X0|ICD10CM|Epidural hemorrhage without loss of consciousness|Epidural hemorrhage without loss of consciousness +C2832428|T037|HT|S06.4X0|ICD10CM|Epidural hemorrhage without loss of consciousness|Epidural hemorrhage without loss of consciousness +C2832429|T037|AB|S06.4X0A|ICD10CM|Epidural hemorrhage w/o loss of consciousness, init encntr|Epidural hemorrhage w/o loss of consciousness, init encntr +C2832429|T037|PT|S06.4X0A|ICD10CM|Epidural hemorrhage without loss of consciousness, initial encounter|Epidural hemorrhage without loss of consciousness, initial encounter +C2832430|T037|AB|S06.4X0D|ICD10CM|Epidural hemorrhage w/o loss of consciousness, subs encntr|Epidural hemorrhage w/o loss of consciousness, subs encntr +C2832430|T037|PT|S06.4X0D|ICD10CM|Epidural hemorrhage without loss of consciousness, subsequent encounter|Epidural hemorrhage without loss of consciousness, subsequent encounter +C2832431|T037|AB|S06.4X0S|ICD10CM|Epidural hemorrhage without loss of consciousness, sequela|Epidural hemorrhage without loss of consciousness, sequela +C2832431|T037|PT|S06.4X0S|ICD10CM|Epidural hemorrhage without loss of consciousness, sequela|Epidural hemorrhage without loss of consciousness, sequela +C2832432|T037|AB|S06.4X1|ICD10CM|Epidural hemorrhage w LOC of 30 minutes or less|Epidural hemorrhage w LOC of 30 minutes or less +C2832432|T037|HT|S06.4X1|ICD10CM|Epidural hemorrhage with loss of consciousness of 30 minutes or less|Epidural hemorrhage with loss of consciousness of 30 minutes or less +C2832433|T037|AB|S06.4X1A|ICD10CM|Epidural hemorrhage w LOC of 30 minutes or less, init|Epidural hemorrhage w LOC of 30 minutes or less, init +C2832433|T037|PT|S06.4X1A|ICD10CM|Epidural hemorrhage with loss of consciousness of 30 minutes or less, initial encounter|Epidural hemorrhage with loss of consciousness of 30 minutes or less, initial encounter +C2832434|T037|AB|S06.4X1D|ICD10CM|Epidural hemorrhage w LOC of 30 minutes or less, subs|Epidural hemorrhage w LOC of 30 minutes or less, subs +C2832434|T037|PT|S06.4X1D|ICD10CM|Epidural hemorrhage with loss of consciousness of 30 minutes or less, subsequent encounter|Epidural hemorrhage with loss of consciousness of 30 minutes or less, subsequent encounter +C2832435|T037|AB|S06.4X1S|ICD10CM|Epidural hemorrhage w LOC of 30 minutes or less, sequela|Epidural hemorrhage w LOC of 30 minutes or less, sequela +C2832435|T037|PT|S06.4X1S|ICD10CM|Epidural hemorrhage with loss of consciousness of 30 minutes or less, sequela|Epidural hemorrhage with loss of consciousness of 30 minutes or less, sequela +C2832436|T037|AB|S06.4X2|ICD10CM|Epidural hemorrhage w loss of consciousness of 31-59 min|Epidural hemorrhage w loss of consciousness of 31-59 min +C2832436|T037|HT|S06.4X2|ICD10CM|Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes|Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes +C2832437|T037|AB|S06.4X2A|ICD10CM|Epidural hemorrhage w LOC of 31-59 min, init|Epidural hemorrhage w LOC of 31-59 min, init +C2832437|T037|PT|S06.4X2A|ICD10CM|Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter|Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter +C2832438|T037|AB|S06.4X2D|ICD10CM|Epidural hemorrhage w LOC of 31-59 min, subs|Epidural hemorrhage w LOC of 31-59 min, subs +C2832438|T037|PT|S06.4X2D|ICD10CM|Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter|Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter +C2832439|T037|AB|S06.4X2S|ICD10CM|Epidural hemorrhage w LOC of 31-59 min, sequela|Epidural hemorrhage w LOC of 31-59 min, sequela +C2832439|T037|PT|S06.4X2S|ICD10CM|Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, sequela|Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, sequela +C2832440|T037|AB|S06.4X3|ICD10CM|Epidural hemorrhage w LOC of 1-5 hrs 59 min|Epidural hemorrhage w LOC of 1-5 hrs 59 min +C2832440|T037|HT|S06.4X3|ICD10CM|Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes|Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes +C2832441|T037|AB|S06.4X3A|ICD10CM|Epidural hemorrhage w LOC of 1-5 hrs 59 min, init|Epidural hemorrhage w LOC of 1-5 hrs 59 min, init +C2832441|T037|PT|S06.4X3A|ICD10CM|Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter|Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter +C2832442|T037|AB|S06.4X3D|ICD10CM|Epidural hemorrhage w LOC of 1-5 hrs 59 min, subs|Epidural hemorrhage w LOC of 1-5 hrs 59 min, subs +C2832442|T037|PT|S06.4X3D|ICD10CM|Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter|Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter +C2832443|T037|AB|S06.4X3S|ICD10CM|Epidural hemorrhage w LOC of 1-5 hrs 59 min, sequela|Epidural hemorrhage w LOC of 1-5 hrs 59 min, sequela +C2832443|T037|PT|S06.4X3S|ICD10CM|Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela|Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +C2832444|T037|AB|S06.4X4|ICD10CM|Epidural hemorrhage w LOC of 6 hours to 24 hours|Epidural hemorrhage w LOC of 6 hours to 24 hours +C2832444|T037|HT|S06.4X4|ICD10CM|Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours|Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours +C2832445|T037|AB|S06.4X4A|ICD10CM|Epidural hemorrhage w LOC of 6 hours to 24 hours, init|Epidural hemorrhage w LOC of 6 hours to 24 hours, init +C2832445|T037|PT|S06.4X4A|ICD10CM|Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter|Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter +C2832446|T037|AB|S06.4X4D|ICD10CM|Epidural hemorrhage w LOC of 6 hours to 24 hours, subs|Epidural hemorrhage w LOC of 6 hours to 24 hours, subs +C2832446|T037|PT|S06.4X4D|ICD10CM|Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, subsequent encounter|Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, subsequent encounter +C2832447|T037|AB|S06.4X4S|ICD10CM|Epidural hemorrhage w LOC of 6 hours to 24 hours, sequela|Epidural hemorrhage w LOC of 6 hours to 24 hours, sequela +C2832447|T037|PT|S06.4X4S|ICD10CM|Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, sequela|Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, sequela +C2832448|T037|AB|S06.4X5|ICD10CM|Epidural hemorrhage w LOC >24 hr w ret consc lev|Epidural hemorrhage w LOC >24 hr w ret consc lev +C2832449|T037|AB|S06.4X5A|ICD10CM|Epidural hemorrhage w LOC >24 hr w ret consc lev, init|Epidural hemorrhage w LOC >24 hr w ret consc lev, init +C2832450|T037|AB|S06.4X5D|ICD10CM|Epidural hemorrhage w LOC >24 hr w ret consc lev, subs|Epidural hemorrhage w LOC >24 hr w ret consc lev, subs +C2832451|T037|AB|S06.4X5S|ICD10CM|Epidural hemorrhage w LOC >24 hr w ret consc lev, sequela|Epidural hemorrhage w LOC >24 hr w ret consc lev, sequela +C2832452|T037|AB|S06.4X6|ICD10CM|Epidural hemorrhage w LOC >24 hr w/o ret consc w surv|Epidural hemorrhage w LOC >24 hr w/o ret consc w surv +C2832453|T037|AB|S06.4X6A|ICD10CM|Epidural hemorrhage w LOC >24 hr w/o ret consc w surv, init|Epidural hemorrhage w LOC >24 hr w/o ret consc w surv, init +C2832454|T037|AB|S06.4X6D|ICD10CM|Epidural hemorrhage w LOC >24 hr w/o ret consc w surv, subs|Epidural hemorrhage w LOC >24 hr w/o ret consc w surv, subs +C2832455|T037|AB|S06.4X6S|ICD10CM|Epidural hemor w LOC >24 hr w/o ret consc w surv, sequela|Epidural hemor w LOC >24 hr w/o ret consc w surv, sequela +C2832456|T037|AB|S06.4X7|ICD10CM|Epidural hemor w LOC w death due to brain injury bf consc|Epidural hemor w LOC w death due to brain injury bf consc +C2832457|T037|AB|S06.4X7A|ICD10CM|Epidur hemor w LOC w death d/t brain injury bf consc, init|Epidur hemor w LOC w death d/t brain injury bf consc, init +C2832460|T037|AB|S06.4X8|ICD10CM|Epidural hemorrhage w LOC w death due to oth causes bf consc|Epidural hemorrhage w LOC w death due to oth causes bf consc +C2832461|T037|AB|S06.4X8A|ICD10CM|Epidur hemor w LOC w death due to oth causes bf consc, init|Epidur hemor w LOC w death due to oth causes bf consc, init +C0238154|T046|ET|S06.4X9|ICD10CM|Epidural hemorrhage NOS|Epidural hemorrhage NOS +C2832464|T037|AB|S06.4X9|ICD10CM|Epidural hemorrhage w loss of consciousness of unsp duration|Epidural hemorrhage w loss of consciousness of unsp duration +C2832464|T037|HT|S06.4X9|ICD10CM|Epidural hemorrhage with loss of consciousness of unspecified duration|Epidural hemorrhage with loss of consciousness of unspecified duration +C2832465|T037|AB|S06.4X9A|ICD10CM|Epidural hemorrhage w LOC of unsp duration, init|Epidural hemorrhage w LOC of unsp duration, init +C2832465|T037|PT|S06.4X9A|ICD10CM|Epidural hemorrhage with loss of consciousness of unspecified duration, initial encounter|Epidural hemorrhage with loss of consciousness of unspecified duration, initial encounter +C2832466|T037|AB|S06.4X9D|ICD10CM|Epidural hemorrhage w LOC of unsp duration, subs|Epidural hemorrhage w LOC of unsp duration, subs +C2832466|T037|PT|S06.4X9D|ICD10CM|Epidural hemorrhage with loss of consciousness of unspecified duration, subsequent encounter|Epidural hemorrhage with loss of consciousness of unspecified duration, subsequent encounter +C2832467|T037|AB|S06.4X9S|ICD10CM|Epidural hemorrhage w LOC of unsp duration, sequela|Epidural hemorrhage w LOC of unsp duration, sequela +C2832467|T037|PT|S06.4X9S|ICD10CM|Epidural hemorrhage with loss of consciousness of unspecified duration, sequela|Epidural hemorrhage with loss of consciousness of unspecified duration, sequela +C1367166|T037|PT|S06.5|ICD10|Traumatic subdural haemorrhage|Traumatic subdural haemorrhage +C1367166|T037|PT|S06.5|ICD10AE|Traumatic subdural hemorrhage|Traumatic subdural hemorrhage +C1367166|T037|HT|S06.5|ICD10CM|Traumatic subdural hemorrhage|Traumatic subdural hemorrhage +C1367166|T037|AB|S06.5|ICD10CM|Traumatic subdural hemorrhage|Traumatic subdural hemorrhage +C1367166|T037|HT|S06.5X|ICD10CM|Traumatic subdural hemorrhage|Traumatic subdural hemorrhage +C1367166|T037|AB|S06.5X|ICD10CM|Traumatic subdural hemorrhage|Traumatic subdural hemorrhage +C2832468|T037|AB|S06.5X0|ICD10CM|Traumatic subdural hemorrhage without loss of consciousness|Traumatic subdural hemorrhage without loss of consciousness +C2832468|T037|HT|S06.5X0|ICD10CM|Traumatic subdural hemorrhage without loss of consciousness|Traumatic subdural hemorrhage without loss of consciousness +C2832469|T037|AB|S06.5X0A|ICD10CM|Traum subdr hem w/o loss of consciousness, init|Traum subdr hem w/o loss of consciousness, init +C2832469|T037|PT|S06.5X0A|ICD10CM|Traumatic subdural hemorrhage without loss of consciousness, initial encounter|Traumatic subdural hemorrhage without loss of consciousness, initial encounter +C2832470|T037|AB|S06.5X0D|ICD10CM|Traum subdr hem w/o loss of consciousness, subs|Traum subdr hem w/o loss of consciousness, subs +C2832470|T037|PT|S06.5X0D|ICD10CM|Traumatic subdural hemorrhage without loss of consciousness, subsequent encounter|Traumatic subdural hemorrhage without loss of consciousness, subsequent encounter +C2832471|T037|AB|S06.5X0S|ICD10CM|Traum subdr hem w/o loss of consciousness, sequela|Traum subdr hem w/o loss of consciousness, sequela +C2832471|T037|PT|S06.5X0S|ICD10CM|Traumatic subdural hemorrhage without loss of consciousness, sequela|Traumatic subdural hemorrhage without loss of consciousness, sequela +C2832472|T037|AB|S06.5X1|ICD10CM|Traum subdr hem w LOC of 30 minutes or less|Traum subdr hem w LOC of 30 minutes or less +C2832472|T037|HT|S06.5X1|ICD10CM|Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less|Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less +C2832473|T037|AB|S06.5X1A|ICD10CM|Traum subdr hem w LOC of 30 minutes or less, init|Traum subdr hem w LOC of 30 minutes or less, init +C2832473|T037|PT|S06.5X1A|ICD10CM|Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, initial encounter|Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, initial encounter +C2832474|T037|AB|S06.5X1D|ICD10CM|Traum subdr hem w LOC of 30 minutes or less, subs|Traum subdr hem w LOC of 30 minutes or less, subs +C2832474|T037|PT|S06.5X1D|ICD10CM|Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, subsequent encounter|Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, subsequent encounter +C2832475|T037|AB|S06.5X1S|ICD10CM|Traum subdr hem w LOC of 30 minutes or less, sequela|Traum subdr hem w LOC of 30 minutes or less, sequela +C2832475|T037|PT|S06.5X1S|ICD10CM|Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, sequela|Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, sequela +C2832476|T037|AB|S06.5X2|ICD10CM|Traum subdr hem w loss of consciousness of 31-59 min|Traum subdr hem w loss of consciousness of 31-59 min +C2832476|T037|HT|S06.5X2|ICD10CM|Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes|Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes +C2832477|T037|AB|S06.5X2A|ICD10CM|Traum subdr hem w loss of consciousness of 31-59 min, init|Traum subdr hem w loss of consciousness of 31-59 min, init +C2832478|T037|AB|S06.5X2D|ICD10CM|Traum subdr hem w loss of consciousness of 31-59 min, subs|Traum subdr hem w loss of consciousness of 31-59 min, subs +C2832479|T037|AB|S06.5X2S|ICD10CM|Traum subdr hem w LOC of 31-59 min, sequela|Traum subdr hem w LOC of 31-59 min, sequela +C2832479|T037|PT|S06.5X2S|ICD10CM|Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, sequela|Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, sequela +C2832480|T037|AB|S06.5X3|ICD10CM|Traum subdr hem w loss of consciousness of 1-5 hrs 59 min|Traum subdr hem w loss of consciousness of 1-5 hrs 59 min +C2832480|T037|HT|S06.5X3|ICD10CM|Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes|Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes +C2832481|T037|AB|S06.5X3A|ICD10CM|Traum subdr hem w LOC of 1-5 hrs 59 min, init|Traum subdr hem w LOC of 1-5 hrs 59 min, init +C2832482|T037|AB|S06.5X3D|ICD10CM|Traum subdr hem w LOC of 1-5 hrs 59 min, subs|Traum subdr hem w LOC of 1-5 hrs 59 min, subs +C2832483|T037|AB|S06.5X3S|ICD10CM|Traum subdr hem w LOC of 1-5 hrs 59 min, sequela|Traum subdr hem w LOC of 1-5 hrs 59 min, sequela +C2832483|T037|PT|S06.5X3S|ICD10CM|Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela|Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +C2832484|T037|AB|S06.5X4|ICD10CM|Traum subdr hem w LOC of 6 hours to 24 hours|Traum subdr hem w LOC of 6 hours to 24 hours +C2832484|T037|HT|S06.5X4|ICD10CM|Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours|Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours +C2832485|T037|AB|S06.5X4A|ICD10CM|Traum subdr hem w LOC of 6 hours to 24 hours, init|Traum subdr hem w LOC of 6 hours to 24 hours, init +C2832485|T037|PT|S06.5X4A|ICD10CM|Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter|Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter +C2832486|T037|AB|S06.5X4D|ICD10CM|Traum subdr hem w LOC of 6 hours to 24 hours, subs|Traum subdr hem w LOC of 6 hours to 24 hours, subs +C2832487|T037|AB|S06.5X4S|ICD10CM|Traum subdr hem w LOC of 6 hours to 24 hours, sequela|Traum subdr hem w LOC of 6 hours to 24 hours, sequela +C2832487|T037|PT|S06.5X4S|ICD10CM|Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours, sequela|Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours, sequela +C2832488|T037|AB|S06.5X5|ICD10CM|Traum subdr hem w LOC >24 hr w ret consc lev|Traum subdr hem w LOC >24 hr w ret consc lev +C2832489|T037|AB|S06.5X5A|ICD10CM|Traum subdr hem w LOC >24 hr w ret consc lev, init|Traum subdr hem w LOC >24 hr w ret consc lev, init +C2832490|T037|AB|S06.5X5D|ICD10CM|Traum subdr hem w LOC >24 hr w ret consc lev, subs|Traum subdr hem w LOC >24 hr w ret consc lev, subs +C2832491|T037|AB|S06.5X5S|ICD10CM|Traum subdr hem w LOC >24 hr w ret consc lev, sequela|Traum subdr hem w LOC >24 hr w ret consc lev, sequela +C2832492|T037|AB|S06.5X6|ICD10CM|Traum subdr hem w LOC >24 hr w/o ret consc w surv|Traum subdr hem w LOC >24 hr w/o ret consc w surv +C2832493|T037|AB|S06.5X6A|ICD10CM|Traum subdr hem w LOC >24 hr w/o ret consc w surv, init|Traum subdr hem w LOC >24 hr w/o ret consc w surv, init +C2832494|T037|AB|S06.5X6D|ICD10CM|Traum subdr hem w LOC >24 hr w/o ret consc w surv, subs|Traum subdr hem w LOC >24 hr w/o ret consc w surv, subs +C2832495|T037|AB|S06.5X6S|ICD10CM|Traum subdr hem w LOC >24 hr w/o ret consc w surv, sequela|Traum subdr hem w LOC >24 hr w/o ret consc w surv, sequela +C2832496|T037|AB|S06.5X7|ICD10CM|Traum subdr hem w LOC w death d/t brain injury bef reg consc|Traum subdr hem w LOC w death d/t brain injury bef reg consc +C2832497|T037|AB|S06.5X7A|ICD10CM|Traum subdr hem w LOC w dth d/t brain inj bef reg consc,init|Traum subdr hem w LOC w dth d/t brain inj bef reg consc,init +C2832500|T037|AB|S06.5X8|ICD10CM|Traum subdr hem w LOC w death due to oth cause bef reg consc|Traum subdr hem w LOC w death due to oth cause bef reg consc +C2832501|T037|AB|S06.5X8A|ICD10CM|Traum subdr hem w LOC w dth d/t oth cause bef reg consc,init|Traum subdr hem w LOC w dth d/t oth cause bef reg consc,init +C2832504|T037|AB|S06.5X9|ICD10CM|Traum subdr hem w loss of consciousness of unsp duration|Traum subdr hem w loss of consciousness of unsp duration +C1367166|T037|ET|S06.5X9|ICD10CM|Traumatic subdural hemorrhage NOS|Traumatic subdural hemorrhage NOS +C2832504|T037|HT|S06.5X9|ICD10CM|Traumatic subdural hemorrhage with loss of consciousness of unspecified duration|Traumatic subdural hemorrhage with loss of consciousness of unspecified duration +C2832505|T037|AB|S06.5X9A|ICD10CM|Traum subdr hem w LOC of unsp duration, init|Traum subdr hem w LOC of unsp duration, init +C2832505|T037|PT|S06.5X9A|ICD10CM|Traumatic subdural hemorrhage with loss of consciousness of unspecified duration, initial encounter|Traumatic subdural hemorrhage with loss of consciousness of unspecified duration, initial encounter +C2832506|T037|AB|S06.5X9D|ICD10CM|Traum subdr hem w LOC of unsp duration, subs|Traum subdr hem w LOC of unsp duration, subs +C2832507|T037|AB|S06.5X9S|ICD10CM|Traum subdr hem w LOC of unsp duration, sequela|Traum subdr hem w LOC of unsp duration, sequela +C2832507|T037|PT|S06.5X9S|ICD10CM|Traumatic subdural hemorrhage with loss of consciousness of unspecified duration, sequela|Traumatic subdural hemorrhage with loss of consciousness of unspecified duration, sequela +C0475073|T037|PT|S06.6|ICD10|Traumatic subarachnoid haemorrhage|Traumatic subarachnoid haemorrhage +C0475073|T037|PT|S06.6|ICD10AE|Traumatic subarachnoid hemorrhage|Traumatic subarachnoid hemorrhage +C0475073|T037|HT|S06.6|ICD10CM|Traumatic subarachnoid hemorrhage|Traumatic subarachnoid hemorrhage +C0475073|T037|AB|S06.6|ICD10CM|Traumatic subarachnoid hemorrhage|Traumatic subarachnoid hemorrhage +C0475073|T037|HT|S06.6X|ICD10CM|Traumatic subarachnoid hemorrhage|Traumatic subarachnoid hemorrhage +C0475073|T037|AB|S06.6X|ICD10CM|Traumatic subarachnoid hemorrhage|Traumatic subarachnoid hemorrhage +C2832508|T037|AB|S06.6X0|ICD10CM|Traumatic subarachnoid hemorrhage w/o loss of consciousness|Traumatic subarachnoid hemorrhage w/o loss of consciousness +C2832508|T037|HT|S06.6X0|ICD10CM|Traumatic subarachnoid hemorrhage without loss of consciousness|Traumatic subarachnoid hemorrhage without loss of consciousness +C2832509|T037|AB|S06.6X0A|ICD10CM|Traum subrac hem w/o loss of consciousness, init|Traum subrac hem w/o loss of consciousness, init +C2832509|T037|PT|S06.6X0A|ICD10CM|Traumatic subarachnoid hemorrhage without loss of consciousness, initial encounter|Traumatic subarachnoid hemorrhage without loss of consciousness, initial encounter +C2832510|T037|AB|S06.6X0D|ICD10CM|Traum subrac hem w/o loss of consciousness, subs|Traum subrac hem w/o loss of consciousness, subs +C2832510|T037|PT|S06.6X0D|ICD10CM|Traumatic subarachnoid hemorrhage without loss of consciousness, subsequent encounter|Traumatic subarachnoid hemorrhage without loss of consciousness, subsequent encounter +C2832511|T037|AB|S06.6X0S|ICD10CM|Traum subrac hem w/o loss of consciousness, sequela|Traum subrac hem w/o loss of consciousness, sequela +C2832511|T037|PT|S06.6X0S|ICD10CM|Traumatic subarachnoid hemorrhage without loss of consciousness, sequela|Traumatic subarachnoid hemorrhage without loss of consciousness, sequela +C2832512|T037|AB|S06.6X1|ICD10CM|Traum subrac hem w LOC of 30 minutes or less|Traum subrac hem w LOC of 30 minutes or less +C2832512|T037|HT|S06.6X1|ICD10CM|Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less|Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less +C2832513|T037|AB|S06.6X1A|ICD10CM|Traum subrac hem w LOC of 30 minutes or less, init|Traum subrac hem w LOC of 30 minutes or less, init +C2832514|T037|AB|S06.6X1D|ICD10CM|Traum subrac hem w LOC of 30 minutes or less, subs|Traum subrac hem w LOC of 30 minutes or less, subs +C2832515|T037|AB|S06.6X1S|ICD10CM|Traum subrac hem w LOC of 30 minutes or less, sequela|Traum subrac hem w LOC of 30 minutes or less, sequela +C2832515|T037|PT|S06.6X1S|ICD10CM|Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less, sequela|Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less, sequela +C2832516|T037|AB|S06.6X2|ICD10CM|Traum subrac hem w loss of consciousness of 31-59 min|Traum subrac hem w loss of consciousness of 31-59 min +C2832516|T037|HT|S06.6X2|ICD10CM|Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes|Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes +C2832517|T037|AB|S06.6X2A|ICD10CM|Traum subrac hem w loss of consciousness of 31-59 min, init|Traum subrac hem w loss of consciousness of 31-59 min, init +C2832518|T037|AB|S06.6X2D|ICD10CM|Traum subrac hem w loss of consciousness of 31-59 min, subs|Traum subrac hem w loss of consciousness of 31-59 min, subs +C2832519|T037|AB|S06.6X2S|ICD10CM|Traum subrac hem w LOC of 31-59 min, sequela|Traum subrac hem w LOC of 31-59 min, sequela +C2832519|T037|PT|S06.6X2S|ICD10CM|Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes, sequela|Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes, sequela +C2832520|T037|AB|S06.6X3|ICD10CM|Traum subrac hem w loss of consciousness of 1-5 hrs 59 min|Traum subrac hem w loss of consciousness of 1-5 hrs 59 min +C2832520|T037|HT|S06.6X3|ICD10CM|Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes|Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes +C2832521|T037|AB|S06.6X3A|ICD10CM|Traum subrac hem w LOC of 1-5 hrs 59 min, init|Traum subrac hem w LOC of 1-5 hrs 59 min, init +C2832522|T037|AB|S06.6X3D|ICD10CM|Traum subrac hem w LOC of 1-5 hrs 59 min, subs|Traum subrac hem w LOC of 1-5 hrs 59 min, subs +C2832523|T037|AB|S06.6X3S|ICD10CM|Traum subrac hem w LOC of 1-5 hrs 59 min, sequela|Traum subrac hem w LOC of 1-5 hrs 59 min, sequela +C2832524|T037|AB|S06.6X4|ICD10CM|Traum subrac hem w LOC of 6 hours to 24 hours|Traum subrac hem w LOC of 6 hours to 24 hours +C2832524|T037|HT|S06.6X4|ICD10CM|Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours|Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours +C2832525|T037|AB|S06.6X4A|ICD10CM|Traum subrac hem w LOC of 6 hours to 24 hours, init|Traum subrac hem w LOC of 6 hours to 24 hours, init +C2832526|T037|AB|S06.6X4D|ICD10CM|Traum subrac hem w LOC of 6 hours to 24 hours, subs|Traum subrac hem w LOC of 6 hours to 24 hours, subs +C2832527|T037|AB|S06.6X4S|ICD10CM|Traum subrac hem w LOC of 6 hours to 24 hours, sequela|Traum subrac hem w LOC of 6 hours to 24 hours, sequela +C2832527|T037|PT|S06.6X4S|ICD10CM|Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours, sequela|Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours, sequela +C2832528|T037|AB|S06.6X5|ICD10CM|Traum subrac hem w LOC >24 hr w ret consc lev|Traum subrac hem w LOC >24 hr w ret consc lev +C2832529|T037|AB|S06.6X5A|ICD10CM|Traum subrac hem w LOC >24 hr w ret consc lev, init|Traum subrac hem w LOC >24 hr w ret consc lev, init +C2832530|T037|AB|S06.6X5D|ICD10CM|Traum subrac hem w LOC >24 hr w ret consc lev, subs|Traum subrac hem w LOC >24 hr w ret consc lev, subs +C2832531|T037|AB|S06.6X5S|ICD10CM|Traum subrac hem w LOC >24 hr w ret consc lev, sequela|Traum subrac hem w LOC >24 hr w ret consc lev, sequela +C2832532|T037|AB|S06.6X6|ICD10CM|Traum subrac hem w LOC >24 hr w/o ret consc w surv|Traum subrac hem w LOC >24 hr w/o ret consc w surv +C2832533|T037|AB|S06.6X6A|ICD10CM|Traum subrac hem w LOC >24 hr w/o ret consc w surv, init|Traum subrac hem w LOC >24 hr w/o ret consc w surv, init +C2832534|T037|AB|S06.6X6D|ICD10CM|Traum subrac hem w LOC >24 hr w/o ret consc w surv, subs|Traum subrac hem w LOC >24 hr w/o ret consc w surv, subs +C2832535|T037|AB|S06.6X6S|ICD10CM|Traum subrac hem w LOC >24 hr w/o ret consc w surv, sequela|Traum subrac hem w LOC >24 hr w/o ret consc w surv, sequela +C2832536|T037|AB|S06.6X7|ICD10CM|Traum subrac hem w LOC w death due to brain injury bf consc|Traum subrac hem w LOC w death due to brain injury bf consc +C2832537|T037|AB|S06.6X7A|ICD10CM|Traum subrac hem w LOC w death d/t brain inj bf consc, init|Traum subrac hem w LOC w death d/t brain inj bf consc, init +C2832540|T037|AB|S06.6X8|ICD10CM|Traum subrac hem w LOC w death due to oth cause bf consc|Traum subrac hem w LOC w death due to oth cause bf consc +C2832541|T037|AB|S06.6X8A|ICD10CM|Traum subrac hem w LOC w death d/t oth cause bf consc, init|Traum subrac hem w LOC w death d/t oth cause bf consc, init +C2832544|T037|AB|S06.6X9|ICD10CM|Traum subrac hem w loss of consciousness of unsp duration|Traum subrac hem w loss of consciousness of unsp duration +C0475073|T037|ET|S06.6X9|ICD10CM|Traumatic subarachnoid hemorrhage NOS|Traumatic subarachnoid hemorrhage NOS +C2832544|T037|HT|S06.6X9|ICD10CM|Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration|Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration +C2832545|T037|AB|S06.6X9A|ICD10CM|Traum subrac hem w LOC of unsp duration, init|Traum subrac hem w LOC of unsp duration, init +C2832546|T037|AB|S06.6X9D|ICD10CM|Traum subrac hem w LOC of unsp duration, subs|Traum subrac hem w LOC of unsp duration, subs +C2832547|T037|AB|S06.6X9S|ICD10CM|Traum subrac hem w LOC of unsp duration, sequela|Traum subrac hem w LOC of unsp duration, sequela +C2832547|T037|PT|S06.6X9S|ICD10CM|Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration, sequela|Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration, sequela +C0452048|T037|PT|S06.7|ICD10|Intracranial injury with prolonged coma|Intracranial injury with prolonged coma +C0478211|T037|PT|S06.8|ICD10|Other intracranial injuries|Other intracranial injuries +C2977736|T037|AB|S06.8|ICD10CM|Other specified intracranial injuries|Other specified intracranial injuries +C2977736|T037|HT|S06.8|ICD10CM|Other specified intracranial injuries|Other specified intracranial injuries +C2832584|T037|AB|S06.81|ICD10CM|Injury of right internal carotid artery, intcr|Injury of right internal carotid artery, intcr +C2832584|T037|HT|S06.81|ICD10CM|Injury of right internal carotid artery, intracranial portion, not elsewhere classified|Injury of right internal carotid artery, intracranial portion, not elsewhere classified +C2832548|T037|AB|S06.810|ICD10CM|Injury of r int carotid, intcr w/o loss of consciousness|Injury of r int carotid, intcr w/o loss of consciousness +C2832549|T037|AB|S06.810A|ICD10CM|Injury of r int carotid, intcr w/o LOC, init|Injury of r int carotid, intcr w/o LOC, init +C2832550|T037|AB|S06.810D|ICD10CM|Injury of r int carotid, intcr w/o LOC, subs|Injury of r int carotid, intcr w/o LOC, subs +C2832551|T037|AB|S06.810S|ICD10CM|Injury of r int carotid, intcr w/o LOC, sequela|Injury of r int carotid, intcr w/o LOC, sequela +C2832552|T037|AB|S06.811|ICD10CM|Injury of r int carotid, intcr w LOC of 30 minutes or less|Injury of r int carotid, intcr w LOC of 30 minutes or less +C2832553|T037|AB|S06.811A|ICD10CM|Inj r int carotid, intcr w LOC of 30 minutes or less, init|Inj r int carotid, intcr w LOC of 30 minutes or less, init +C2832554|T037|AB|S06.811D|ICD10CM|Inj r int carotid, intcr w LOC of 30 minutes or less, subs|Inj r int carotid, intcr w LOC of 30 minutes or less, subs +C2832555|T037|AB|S06.811S|ICD10CM|Inj r int crtd, intcr w LOC of 30 minutes or less, sequela|Inj r int crtd, intcr w LOC of 30 minutes or less, sequela +C2832556|T037|AB|S06.812|ICD10CM|Injury of r int carotid, intcr w LOC of 31-59 min|Injury of r int carotid, intcr w LOC of 31-59 min +C2832557|T037|AB|S06.812A|ICD10CM|Injury of r int carotid, intcr w LOC of 31-59 min, init|Injury of r int carotid, intcr w LOC of 31-59 min, init +C2832558|T037|AB|S06.812D|ICD10CM|Injury of r int carotid, intcr w LOC of 31-59 min, subs|Injury of r int carotid, intcr w LOC of 31-59 min, subs +C2832559|T037|AB|S06.812S|ICD10CM|Injury of r int carotid, intcr w LOC of 31-59 min, sequela|Injury of r int carotid, intcr w LOC of 31-59 min, sequela +C2832560|T037|AB|S06.813|ICD10CM|Injury of r int carotid, intcr w LOC of 1-5 hrs 59 min|Injury of r int carotid, intcr w LOC of 1-5 hrs 59 min +C2832561|T037|AB|S06.813A|ICD10CM|Injury of r int carotid, intcr w LOC of 1-5 hrs 59 min, init|Injury of r int carotid, intcr w LOC of 1-5 hrs 59 min, init +C2832562|T037|AB|S06.813D|ICD10CM|Injury of r int carotid, intcr w LOC of 1-5 hrs 59 min, subs|Injury of r int carotid, intcr w LOC of 1-5 hrs 59 min, subs +C2832563|T037|AB|S06.813S|ICD10CM|Inj r int carotid, intcr w LOC of 1-5 hrs 59 min, sequela|Inj r int carotid, intcr w LOC of 1-5 hrs 59 min, sequela +C2832564|T037|AB|S06.814|ICD10CM|Injury of r int carotid, intcr w LOC of 6 hours to 24 hours|Injury of r int carotid, intcr w LOC of 6 hours to 24 hours +C2832565|T037|AB|S06.814A|ICD10CM|Injury of r int carotid, intcr w LOC of 6-24 hrs, init|Injury of r int carotid, intcr w LOC of 6-24 hrs, init +C2832566|T037|AB|S06.814D|ICD10CM|Injury of r int carotid, intcr w LOC of 6-24 hrs, subs|Injury of r int carotid, intcr w LOC of 6-24 hrs, subs +C2832567|T037|AB|S06.814S|ICD10CM|Injury of r int carotid, intcr w LOC of 6-24 hrs, sequela|Injury of r int carotid, intcr w LOC of 6-24 hrs, sequela +C2832568|T037|AB|S06.815|ICD10CM|Injury of r int carotid, intcr w LOC >24 hr w ret consc lev|Injury of r int carotid, intcr w LOC >24 hr w ret consc lev +C2832569|T037|AB|S06.815A|ICD10CM|Inj r int carotid, intcr w LOC >24 hr w ret consc lev, init|Inj r int carotid, intcr w LOC >24 hr w ret consc lev, init +C2832570|T037|AB|S06.815D|ICD10CM|Inj r int carotid, intcr w LOC >24 hr w ret consc lev, subs|Inj r int carotid, intcr w LOC >24 hr w ret consc lev, subs +C2832571|T037|AB|S06.815S|ICD10CM|Inj r int crtd, intcr w LOC >24 hr w ret consc lev, sequela|Inj r int crtd, intcr w LOC >24 hr w ret consc lev, sequela +C2832572|T037|AB|S06.816|ICD10CM|Inj r int carotid, intcr w LOC >24 hr w/o ret consc w surv|Inj r int carotid, intcr w LOC >24 hr w/o ret consc w surv +C2832573|T037|AB|S06.816A|ICD10CM|Inj r int crtd,intcr w LOC >24 hr w/o ret consc w surv, init|Inj r int crtd,intcr w LOC >24 hr w/o ret consc w surv, init +C2832574|T037|AB|S06.816D|ICD10CM|Inj r int crtd,intcr w LOC >24 hr w/o ret consc w surv, subs|Inj r int crtd,intcr w LOC >24 hr w/o ret consc w surv, subs +C2832575|T037|AB|S06.816S|ICD10CM|Inj r int crtd,intcr w LOC >24 hr w/o ret consc w surv, sqla|Inj r int crtd,intcr w LOC >24 hr w/o ret consc w surv, sqla +C2832576|T037|AB|S06.817|ICD10CM|Inj r int crtd, intcr w LOC w death d/t brain inj bf consc|Inj r int crtd, intcr w LOC w death d/t brain inj bf consc +C2832577|T037|AB|S06.817A|ICD10CM|Inj r int crtd,intcr w LOC w dth d/t brain inj bf consc,init|Inj r int crtd,intcr w LOC w dth d/t brain inj bf consc,init +C2832580|T037|AB|S06.818|ICD10CM|Inj r int crtd, intcr w LOC w death d/t oth cause bf consc|Inj r int crtd, intcr w LOC w death d/t oth cause bf consc +C2832581|T037|AB|S06.818A|ICD10CM|Inj r int crtd,intcr w LOC w dth d/t oth cause bf consc,init|Inj r int crtd,intcr w LOC w dth d/t oth cause bf consc,init +C2832585|T037|AB|S06.819|ICD10CM|Injury of r int carotid, intcr w LOC of unsp duration|Injury of r int carotid, intcr w LOC of unsp duration +C2832584|T037|ET|S06.819|ICD10CM|Injury of right internal carotid artery, intracranial portion, not elsewhere classified NOS|Injury of right internal carotid artery, intracranial portion, not elsewhere classified NOS +C2832586|T037|AB|S06.819A|ICD10CM|Injury of r int carotid, intcr w LOC of unsp duration, init|Injury of r int carotid, intcr w LOC of unsp duration, init +C2832587|T037|AB|S06.819D|ICD10CM|Injury of r int carotid, intcr w LOC of unsp duration, subs|Injury of r int carotid, intcr w LOC of unsp duration, subs +C2832588|T037|AB|S06.819S|ICD10CM|Inj r int carotid, intcr w LOC of unsp duration, sequela|Inj r int carotid, intcr w LOC of unsp duration, sequela +C2832625|T037|AB|S06.82|ICD10CM|Injury of left internal carotid artery, intcr|Injury of left internal carotid artery, intcr +C2832625|T037|HT|S06.82|ICD10CM|Injury of left internal carotid artery, intracranial portion, not elsewhere classified|Injury of left internal carotid artery, intracranial portion, not elsewhere classified +C2832589|T037|AB|S06.820|ICD10CM|Injury of l int carotid, intcr w/o loss of consciousness|Injury of l int carotid, intcr w/o loss of consciousness +C2832590|T037|AB|S06.820A|ICD10CM|Injury of l int carotid, intcr w/o LOC, init|Injury of l int carotid, intcr w/o LOC, init +C2832591|T037|AB|S06.820D|ICD10CM|Injury of l int carotid, intcr w/o LOC, subs|Injury of l int carotid, intcr w/o LOC, subs +C2832592|T037|AB|S06.820S|ICD10CM|Injury of l int carotid, intcr w/o LOC, sequela|Injury of l int carotid, intcr w/o LOC, sequela +C2832593|T037|AB|S06.821|ICD10CM|Injury of l int carotid, intcr w LOC of 30 minutes or less|Injury of l int carotid, intcr w LOC of 30 minutes or less +C2832594|T037|AB|S06.821A|ICD10CM|Inj l int carotid, intcr w LOC of 30 minutes or less, init|Inj l int carotid, intcr w LOC of 30 minutes or less, init +C2832595|T037|AB|S06.821D|ICD10CM|Inj l int carotid, intcr w LOC of 30 minutes or less, subs|Inj l int carotid, intcr w LOC of 30 minutes or less, subs +C2832596|T037|AB|S06.821S|ICD10CM|Inj l int crtd, intcr w LOC of 30 minutes or less, sequela|Inj l int crtd, intcr w LOC of 30 minutes or less, sequela +C2832597|T037|AB|S06.822|ICD10CM|Injury of l int carotid, intcr w LOC of 31-59 min|Injury of l int carotid, intcr w LOC of 31-59 min +C2832598|T037|AB|S06.822A|ICD10CM|Injury of l int carotid, intcr w LOC of 31-59 min, init|Injury of l int carotid, intcr w LOC of 31-59 min, init +C2832599|T037|AB|S06.822D|ICD10CM|Injury of l int carotid, intcr w LOC of 31-59 min, subs|Injury of l int carotid, intcr w LOC of 31-59 min, subs +C2832600|T037|AB|S06.822S|ICD10CM|Injury of l int carotid, intcr w LOC of 31-59 min, sequela|Injury of l int carotid, intcr w LOC of 31-59 min, sequela +C2832601|T037|AB|S06.823|ICD10CM|Injury of l int carotid, intcr w LOC of 1-5 hrs 59 min|Injury of l int carotid, intcr w LOC of 1-5 hrs 59 min +C2832602|T037|AB|S06.823A|ICD10CM|Injury of l int carotid, intcr w LOC of 1-5 hrs 59 min, init|Injury of l int carotid, intcr w LOC of 1-5 hrs 59 min, init +C2832603|T037|AB|S06.823D|ICD10CM|Injury of l int carotid, intcr w LOC of 1-5 hrs 59 min, subs|Injury of l int carotid, intcr w LOC of 1-5 hrs 59 min, subs +C2832604|T037|AB|S06.823S|ICD10CM|Inj l int carotid, intcr w LOC of 1-5 hrs 59 min, sequela|Inj l int carotid, intcr w LOC of 1-5 hrs 59 min, sequela +C2832605|T037|AB|S06.824|ICD10CM|Injury of l int carotid, intcr w LOC of 6 hours to 24 hours|Injury of l int carotid, intcr w LOC of 6 hours to 24 hours +C2832606|T037|AB|S06.824A|ICD10CM|Injury of l int carotid, intcr w LOC of 6-24 hrs, init|Injury of l int carotid, intcr w LOC of 6-24 hrs, init +C2832607|T037|AB|S06.824D|ICD10CM|Injury of l int carotid, intcr w LOC of 6-24 hrs, subs|Injury of l int carotid, intcr w LOC of 6-24 hrs, subs +C2832608|T037|AB|S06.824S|ICD10CM|Injury of l int carotid, intcr w LOC of 6-24 hrs, sequela|Injury of l int carotid, intcr w LOC of 6-24 hrs, sequela +C2832609|T037|AB|S06.825|ICD10CM|Injury of l int carotid, intcr w LOC >24 hr w ret consc lev|Injury of l int carotid, intcr w LOC >24 hr w ret consc lev +C2832610|T037|AB|S06.825A|ICD10CM|Inj l int carotid, intcr w LOC >24 hr w ret consc lev, init|Inj l int carotid, intcr w LOC >24 hr w ret consc lev, init +C2832611|T037|AB|S06.825D|ICD10CM|Inj l int carotid, intcr w LOC >24 hr w ret consc lev, subs|Inj l int carotid, intcr w LOC >24 hr w ret consc lev, subs +C2832612|T037|AB|S06.825S|ICD10CM|Inj l int crtd, intcr w LOC >24 hr w ret consc lev, sequela|Inj l int crtd, intcr w LOC >24 hr w ret consc lev, sequela +C2832613|T037|AB|S06.826|ICD10CM|Inj l int carotid, intcr w LOC >24 hr w/o ret consc w surv|Inj l int carotid, intcr w LOC >24 hr w/o ret consc w surv +C2832614|T037|AB|S06.826A|ICD10CM|Inj l int crtd,intcr w LOC >24 hr w/o ret consc w surv, init|Inj l int crtd,intcr w LOC >24 hr w/o ret consc w surv, init +C2832615|T037|AB|S06.826D|ICD10CM|Inj l int crtd,intcr w LOC >24 hr w/o ret consc w surv, subs|Inj l int crtd,intcr w LOC >24 hr w/o ret consc w surv, subs +C2832616|T037|AB|S06.826S|ICD10CM|Inj l int crtd,intcr w LOC >24 hr w/o ret consc w surv, sqla|Inj l int crtd,intcr w LOC >24 hr w/o ret consc w surv, sqla +C2832617|T037|AB|S06.827|ICD10CM|Inj l int crtd, intcr w LOC w death d/t brain inj bf consc|Inj l int crtd, intcr w LOC w death d/t brain inj bf consc +C2832618|T037|AB|S06.827A|ICD10CM|Inj l int crtd,intcr w LOC w dth d/t brain inj bf consc,init|Inj l int crtd,intcr w LOC w dth d/t brain inj bf consc,init +C2832621|T037|AB|S06.828|ICD10CM|Inj l int crtd, intcr w LOC w death d/t oth cause bf consc|Inj l int crtd, intcr w LOC w death d/t oth cause bf consc +C2832622|T037|AB|S06.828A|ICD10CM|Inj l int crtd,intcr w LOC w dth d/t oth cause bf consc,init|Inj l int crtd,intcr w LOC w dth d/t oth cause bf consc,init +C2832626|T037|AB|S06.829|ICD10CM|Injury of l int carotid, intcr w LOC of unsp duration|Injury of l int carotid, intcr w LOC of unsp duration +C2832625|T037|ET|S06.829|ICD10CM|Injury of left internal carotid artery, intracranial portion, not elsewhere classified NOS|Injury of left internal carotid artery, intracranial portion, not elsewhere classified NOS +C2832627|T037|AB|S06.829A|ICD10CM|Injury of l int carotid, intcr w LOC of unsp duration, init|Injury of l int carotid, intcr w LOC of unsp duration, init +C2832628|T037|AB|S06.829D|ICD10CM|Injury of l int carotid, intcr w LOC of unsp duration, subs|Injury of l int carotid, intcr w LOC of unsp duration, subs +C2832629|T037|AB|S06.829S|ICD10CM|Inj l int carotid, intcr w LOC of unsp duration, sequela|Inj l int carotid, intcr w LOC of unsp duration, sequela +C2979943|T037|AB|S06.89|ICD10CM|Other specified intracranial injury|Other specified intracranial injury +C2979943|T037|HT|S06.89|ICD10CM|Other specified intracranial injury|Other specified intracranial injury +C2832630|T037|AB|S06.890|ICD10CM|Oth intracranial injury without loss of consciousness|Oth intracranial injury without loss of consciousness +C2832630|T037|HT|S06.890|ICD10CM|Other specified intracranial injury without loss of consciousness|Other specified intracranial injury without loss of consciousness +C2832631|T037|AB|S06.890A|ICD10CM|Intcran inj w/o loss of consciousness, init encntr|Intcran inj w/o loss of consciousness, init encntr +C2832631|T037|PT|S06.890A|ICD10CM|Other specified intracranial injury without loss of consciousness, initial encounter|Other specified intracranial injury without loss of consciousness, initial encounter +C2832632|T037|AB|S06.890D|ICD10CM|Intcran inj w/o loss of consciousness, subs encntr|Intcran inj w/o loss of consciousness, subs encntr +C2832632|T037|PT|S06.890D|ICD10CM|Other specified intracranial injury without loss of consciousness, subsequent encounter|Other specified intracranial injury without loss of consciousness, subsequent encounter +C2832633|T037|AB|S06.890S|ICD10CM|Oth intracranial injury w/o loss of consciousness, sequela|Oth intracranial injury w/o loss of consciousness, sequela +C2832633|T037|PT|S06.890S|ICD10CM|Other specified intracranial injury without loss of consciousness, sequela|Other specified intracranial injury without loss of consciousness, sequela +C2832634|T037|AB|S06.891|ICD10CM|Intcran inj w loss of consciousness of 30 minutes or less|Intcran inj w loss of consciousness of 30 minutes or less +C2832634|T037|HT|S06.891|ICD10CM|Other specified intracranial injury with loss of consciousness of 30 minutes or less|Other specified intracranial injury with loss of consciousness of 30 minutes or less +C2832635|T037|AB|S06.891A|ICD10CM|Intcran inj w LOC of 30 minutes or less, init|Intcran inj w LOC of 30 minutes or less, init +C2832636|T037|AB|S06.891D|ICD10CM|Intcran inj w LOC of 30 minutes or less, subs|Intcran inj w LOC of 30 minutes or less, subs +C2832637|T037|AB|S06.891S|ICD10CM|Intcran inj w LOC of 30 minutes or less, sequela|Intcran inj w LOC of 30 minutes or less, sequela +C2832637|T037|PT|S06.891S|ICD10CM|Other specified intracranial injury with loss of consciousness of 30 minutes or less, sequela|Other specified intracranial injury with loss of consciousness of 30 minutes or less, sequela +C2832638|T037|AB|S06.892|ICD10CM|Intcran inj w loss of consciousness of 31-59 min|Intcran inj w loss of consciousness of 31-59 min +C2832638|T037|HT|S06.892|ICD10CM|Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes|Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes +C2832639|T037|AB|S06.892A|ICD10CM|Intcran inj w loss of consciousness of 31-59 min, init|Intcran inj w loss of consciousness of 31-59 min, init +C2832640|T037|AB|S06.892D|ICD10CM|Intcran inj w loss of consciousness of 31-59 min, subs|Intcran inj w loss of consciousness of 31-59 min, subs +C2832641|T037|AB|S06.892S|ICD10CM|Intcran inj w loss of consciousness of 31-59 min, sequela|Intcran inj w loss of consciousness of 31-59 min, sequela +C2832641|T037|PT|S06.892S|ICD10CM|Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, sequela|Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, sequela +C2832642|T037|AB|S06.893|ICD10CM|Intcran inj w loss of consciousness of 1-5 hrs 59 min|Intcran inj w loss of consciousness of 1-5 hrs 59 min +C2832642|T037|HT|S06.893|ICD10CM|Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes|Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes +C2832643|T037|AB|S06.893A|ICD10CM|Intcran inj w loss of consciousness of 1-5 hrs 59 min, init|Intcran inj w loss of consciousness of 1-5 hrs 59 min, init +C2832644|T037|AB|S06.893D|ICD10CM|Intcran inj w loss of consciousness of 1-5 hrs 59 min, subs|Intcran inj w loss of consciousness of 1-5 hrs 59 min, subs +C2832645|T037|AB|S06.893S|ICD10CM|Intcran inj w LOC of 1-5 hrs 59 min, sequela|Intcran inj w LOC of 1-5 hrs 59 min, sequela +C2832646|T037|AB|S06.894|ICD10CM|Intcran inj w loss of consciousness of 6 hours to 24 hours|Intcran inj w loss of consciousness of 6 hours to 24 hours +C2832646|T037|HT|S06.894|ICD10CM|Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours|Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours +C2832647|T037|AB|S06.894A|ICD10CM|Intcran inj w LOC of 6 hours to 24 hours, init|Intcran inj w LOC of 6 hours to 24 hours, init +C2832648|T037|AB|S06.894D|ICD10CM|Intcran inj w LOC of 6 hours to 24 hours, subs|Intcran inj w LOC of 6 hours to 24 hours, subs +C2832649|T037|AB|S06.894S|ICD10CM|Intcran inj w LOC of 6 hours to 24 hours, sequela|Intcran inj w LOC of 6 hours to 24 hours, sequela +C2832649|T037|PT|S06.894S|ICD10CM|Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours, sequela|Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours, sequela +C2832650|T037|AB|S06.895|ICD10CM|Intcran inj w loss of consciousness >24 hr w ret consc lev|Intcran inj w loss of consciousness >24 hr w ret consc lev +C2832651|T037|AB|S06.895A|ICD10CM|Intcran inj w LOC >24 hr w ret consc lev, init|Intcran inj w LOC >24 hr w ret consc lev, init +C2832652|T037|AB|S06.895D|ICD10CM|Intcran inj w LOC >24 hr w ret consc lev, subs|Intcran inj w LOC >24 hr w ret consc lev, subs +C2832653|T037|AB|S06.895S|ICD10CM|Intcran inj w LOC >24 hr w ret consc lev, sequela|Intcran inj w LOC >24 hr w ret consc lev, sequela +C2832654|T037|AB|S06.896|ICD10CM|Intcran inj w LOC >24 hr w/o ret consc w surv|Intcran inj w LOC >24 hr w/o ret consc w surv +C2832655|T037|AB|S06.896A|ICD10CM|Intcran inj w LOC >24 hr w/o ret consc w surv, init|Intcran inj w LOC >24 hr w/o ret consc w surv, init +C2832656|T037|AB|S06.896D|ICD10CM|Intcran inj w LOC >24 hr w/o ret consc w surv, subs|Intcran inj w LOC >24 hr w/o ret consc w surv, subs +C2832657|T037|AB|S06.896S|ICD10CM|Intcran inj w LOC >24 hr w/o ret consc w surv, sequela|Intcran inj w LOC >24 hr w/o ret consc w surv, sequela +C2832658|T037|AB|S06.897|ICD10CM|Intcran inj w LOC w death due to brain injury bf consc|Intcran inj w LOC w death due to brain injury bf consc +C2832659|T037|AB|S06.897A|ICD10CM|Intcran inj w LOC w death due to brain injury bf consc, init|Intcran inj w LOC w death due to brain injury bf consc, init +C2832662|T037|AB|S06.898|ICD10CM|Intcran inj w LOC w death due to oth cause bf consc|Intcran inj w LOC w death due to oth cause bf consc +C2832663|T037|AB|S06.898A|ICD10CM|Intcran inj w LOC w death due to oth cause bf consc, init|Intcran inj w LOC w death due to oth cause bf consc, init +C2832666|T037|AB|S06.899|ICD10CM|Intcran inj w loss of consciousness of unsp duration|Intcran inj w loss of consciousness of unsp duration +C2832666|T037|HT|S06.899|ICD10CM|Other specified intracranial injury with loss of consciousness of unspecified duration|Other specified intracranial injury with loss of consciousness of unspecified duration +C2832667|T037|AB|S06.899A|ICD10CM|Intcran inj w loss of consciousness of unsp duration, init|Intcran inj w loss of consciousness of unsp duration, init +C2832668|T037|AB|S06.899D|ICD10CM|Intcran inj w loss of consciousness of unsp duration, subs|Intcran inj w loss of consciousness of unsp duration, subs +C2832669|T037|AB|S06.899S|ICD10CM|Intcran inj w LOC of unsp duration, sequela|Intcran inj w LOC of unsp duration, sequela +C2832669|T037|PT|S06.899S|ICD10CM|Other specified intracranial injury with loss of consciousness of unspecified duration, sequela|Other specified intracranial injury with loss of consciousness of unspecified duration, sequela +C0270611|T037|ET|S06.9|ICD10CM|Brain injury NOS|Brain injury NOS +C2832670|T037|ET|S06.9|ICD10CM|Head injury NOS with loss of consciousness|Head injury NOS with loss of consciousness +C0347535|T037|PT|S06.9|ICD10|Intracranial injury, unspecified|Intracranial injury, unspecified +C0876926|T037|ET|S06.9|ICD10CM|Traumatic brain injury NOS|Traumatic brain injury NOS +C0347535|T037|AB|S06.9|ICD10CM|Unspecified intracranial injury|Unspecified intracranial injury +C0347535|T037|HT|S06.9|ICD10CM|Unspecified intracranial injury|Unspecified intracranial injury +C0347535|T037|HT|S06.9X|ICD10CM|Unspecified intracranial injury|Unspecified intracranial injury +C0347535|T037|AB|S06.9X|ICD10CM|Unspecified intracranial injury|Unspecified intracranial injury +C2832671|T037|AB|S06.9X0|ICD10CM|Unsp intracranial injury without loss of consciousness|Unsp intracranial injury without loss of consciousness +C2832671|T037|HT|S06.9X0|ICD10CM|Unspecified intracranial injury without loss of consciousness|Unspecified intracranial injury without loss of consciousness +C2832672|T037|AB|S06.9X0A|ICD10CM|Unsp intracranial injury w/o loss of consciousness, init|Unsp intracranial injury w/o loss of consciousness, init +C2832672|T037|PT|S06.9X0A|ICD10CM|Unspecified intracranial injury without loss of consciousness, initial encounter|Unspecified intracranial injury without loss of consciousness, initial encounter +C2832673|T037|AB|S06.9X0D|ICD10CM|Unsp intracranial injury w/o loss of consciousness, subs|Unsp intracranial injury w/o loss of consciousness, subs +C2832673|T037|PT|S06.9X0D|ICD10CM|Unspecified intracranial injury without loss of consciousness, subsequent encounter|Unspecified intracranial injury without loss of consciousness, subsequent encounter +C2832674|T037|AB|S06.9X0S|ICD10CM|Unsp intracranial injury w/o loss of consciousness, sequela|Unsp intracranial injury w/o loss of consciousness, sequela +C2832674|T037|PT|S06.9X0S|ICD10CM|Unspecified intracranial injury without loss of consciousness, sequela|Unspecified intracranial injury without loss of consciousness, sequela +C2832675|T037|AB|S06.9X1|ICD10CM|Unsp intracranial injury w LOC of 30 minutes or less|Unsp intracranial injury w LOC of 30 minutes or less +C2832675|T037|HT|S06.9X1|ICD10CM|Unspecified intracranial injury with loss of consciousness of 30 minutes or less|Unspecified intracranial injury with loss of consciousness of 30 minutes or less +C2832676|T037|AB|S06.9X1A|ICD10CM|Unsp intracranial injury w LOC of 30 minutes or less, init|Unsp intracranial injury w LOC of 30 minutes or less, init +C2832676|T037|PT|S06.9X1A|ICD10CM|Unspecified intracranial injury with loss of consciousness of 30 minutes or less, initial encounter|Unspecified intracranial injury with loss of consciousness of 30 minutes or less, initial encounter +C2832677|T037|AB|S06.9X1D|ICD10CM|Unsp intracranial injury w LOC of 30 minutes or less, subs|Unsp intracranial injury w LOC of 30 minutes or less, subs +C2832678|T037|AB|S06.9X1S|ICD10CM|Unsp intcrn injury w LOC of 30 minutes or less, sequela|Unsp intcrn injury w LOC of 30 minutes or less, sequela +C2832678|T037|PT|S06.9X1S|ICD10CM|Unspecified intracranial injury with loss of consciousness of 30 minutes or less, sequela|Unspecified intracranial injury with loss of consciousness of 30 minutes or less, sequela +C2832679|T037|AB|S06.9X2|ICD10CM|Unsp intracranial injury w LOC of 31-59 min|Unsp intracranial injury w LOC of 31-59 min +C2832679|T037|HT|S06.9X2|ICD10CM|Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes|Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes +C2832680|T037|AB|S06.9X2A|ICD10CM|Unsp intracranial injury w LOC of 31-59 min, init|Unsp intracranial injury w LOC of 31-59 min, init +C2832681|T037|AB|S06.9X2D|ICD10CM|Unsp intracranial injury w LOC of 31-59 min, subs|Unsp intracranial injury w LOC of 31-59 min, subs +C2832682|T037|AB|S06.9X2S|ICD10CM|Unsp intracranial injury w LOC of 31-59 min, sequela|Unsp intracranial injury w LOC of 31-59 min, sequela +C2832682|T037|PT|S06.9X2S|ICD10CM|Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, sequela|Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, sequela +C2832683|T037|AB|S06.9X3|ICD10CM|Unsp intracranial injury w LOC of 1-5 hrs 59 min|Unsp intracranial injury w LOC of 1-5 hrs 59 min +C2832683|T037|HT|S06.9X3|ICD10CM|Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes|Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes +C2832684|T037|AB|S06.9X3A|ICD10CM|Unsp intracranial injury w LOC of 1-5 hrs 59 min, init|Unsp intracranial injury w LOC of 1-5 hrs 59 min, init +C2832685|T037|AB|S06.9X3D|ICD10CM|Unsp intracranial injury w LOC of 1-5 hrs 59 min, subs|Unsp intracranial injury w LOC of 1-5 hrs 59 min, subs +C2832686|T037|AB|S06.9X3S|ICD10CM|Unsp intracranial injury w LOC of 1-5 hrs 59 min, sequela|Unsp intracranial injury w LOC of 1-5 hrs 59 min, sequela +C2832686|T037|PT|S06.9X3S|ICD10CM|Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela|Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela +C2832687|T037|AB|S06.9X4|ICD10CM|Unsp intracranial injury w LOC of 6 hours to 24 hours|Unsp intracranial injury w LOC of 6 hours to 24 hours +C2832687|T037|HT|S06.9X4|ICD10CM|Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours|Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours +C2832688|T037|AB|S06.9X4A|ICD10CM|Unsp intracranial injury w LOC of 6 hours to 24 hours, init|Unsp intracranial injury w LOC of 6 hours to 24 hours, init +C2832688|T037|PT|S06.9X4A|ICD10CM|Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours, initial encounter|Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours, initial encounter +C2832689|T037|AB|S06.9X4D|ICD10CM|Unsp intracranial injury w LOC of 6 hours to 24 hours, subs|Unsp intracranial injury w LOC of 6 hours to 24 hours, subs +C2832690|T037|AB|S06.9X4S|ICD10CM|Unsp intracranial injury w LOC of 6-24 hrs, sequela|Unsp intracranial injury w LOC of 6-24 hrs, sequela +C2832690|T037|PT|S06.9X4S|ICD10CM|Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours, sequela|Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours, sequela +C2832691|T037|AB|S06.9X5|ICD10CM|Unsp intracranial injury w LOC >24 hr w ret consc lev|Unsp intracranial injury w LOC >24 hr w ret consc lev +C2832692|T037|AB|S06.9X5A|ICD10CM|Unsp intracranial injury w LOC >24 hr w ret consc lev, init|Unsp intracranial injury w LOC >24 hr w ret consc lev, init +C2832693|T037|AB|S06.9X5D|ICD10CM|Unsp intracranial injury w LOC >24 hr w ret consc lev, subs|Unsp intracranial injury w LOC >24 hr w ret consc lev, subs +C2832694|T037|AB|S06.9X5S|ICD10CM|Unsp intcrn injury w LOC >24 hr w ret consc lev, sequela|Unsp intcrn injury w LOC >24 hr w ret consc lev, sequela +C2832695|T037|AB|S06.9X6|ICD10CM|Unsp intracranial injury w LOC >24 hr w/o ret consc w surv|Unsp intracranial injury w LOC >24 hr w/o ret consc w surv +C2832696|T037|AB|S06.9X6A|ICD10CM|Unsp intcrn injury w LOC >24 hr w/o ret consc w surv, init|Unsp intcrn injury w LOC >24 hr w/o ret consc w surv, init +C2832697|T037|AB|S06.9X6D|ICD10CM|Unsp intcrn injury w LOC >24 hr w/o ret consc w surv, subs|Unsp intcrn injury w LOC >24 hr w/o ret consc w surv, subs +C2832698|T037|AB|S06.9X6S|ICD10CM|Unsp intcrn injury w LOC >24 hr w/o ret consc w surv, sqla|Unsp intcrn injury w LOC >24 hr w/o ret consc w surv, sqla +C2832699|T037|AB|S06.9X7|ICD10CM|Unsp intcrn injury w LOC w death d/t brain injury bf consc|Unsp intcrn injury w LOC w death d/t brain injury bf consc +C2832700|T037|AB|S06.9X7A|ICD10CM|Unsp intcrn inj w LOC w death d/t brain inj bf consc, init|Unsp intcrn inj w LOC w death d/t brain inj bf consc, init +C2832703|T037|AB|S06.9X8|ICD10CM|Unsp intcrn injury w LOC w death due to oth cause bf consc|Unsp intcrn injury w LOC w death due to oth cause bf consc +C2832704|T037|AB|S06.9X8A|ICD10CM|Unsp intcrn inj w LOC w death d/t oth cause bf consc, init|Unsp intcrn inj w LOC w death d/t oth cause bf consc, init +C2832707|T037|AB|S06.9X9|ICD10CM|Unsp intracranial injury w LOC of unsp duration|Unsp intracranial injury w LOC of unsp duration +C2832707|T037|HT|S06.9X9|ICD10CM|Unspecified intracranial injury with loss of consciousness of unspecified duration|Unspecified intracranial injury with loss of consciousness of unspecified duration +C2832708|T037|AB|S06.9X9A|ICD10CM|Unsp intracranial injury w LOC of unsp duration, init|Unsp intracranial injury w LOC of unsp duration, init +C2832709|T037|AB|S06.9X9D|ICD10CM|Unsp intracranial injury w LOC of unsp duration, subs|Unsp intracranial injury w LOC of unsp duration, subs +C2832710|T037|AB|S06.9X9S|ICD10CM|Unsp intracranial injury w LOC of unsp duration, sequela|Unsp intracranial injury w LOC of unsp duration, sequela +C2832710|T037|PT|S06.9X9S|ICD10CM|Unspecified intracranial injury with loss of consciousness of unspecified duration, sequela|Unspecified intracranial injury with loss of consciousness of unspecified duration, sequela +C0433070|T037|AB|S07|ICD10CM|Crushing injury of head|Crushing injury of head +C0433070|T037|HT|S07|ICD10CM|Crushing injury of head|Crushing injury of head +C0433070|T037|HT|S07|ICD10|Crushing injury of head|Crushing injury of head +C0273429|T037|HT|S07.0|ICD10CM|Crushing injury of face|Crushing injury of face +C0273429|T037|AB|S07.0|ICD10CM|Crushing injury of face|Crushing injury of face +C0273429|T037|PT|S07.0|ICD10|Crushing injury of face|Crushing injury of face +C2832711|T037|PT|S07.0XXA|ICD10CM|Crushing injury of face, initial encounter|Crushing injury of face, initial encounter +C2832711|T037|AB|S07.0XXA|ICD10CM|Crushing injury of face, initial encounter|Crushing injury of face, initial encounter +C2832712|T037|PT|S07.0XXD|ICD10CM|Crushing injury of face, subsequent encounter|Crushing injury of face, subsequent encounter +C2832712|T037|AB|S07.0XXD|ICD10CM|Crushing injury of face, subsequent encounter|Crushing injury of face, subsequent encounter +C1401933|T046|PT|S07.0XXS|ICD10CM|Crushing injury of face, sequela|Crushing injury of face, sequela +C1401933|T046|AB|S07.0XXS|ICD10CM|Crushing injury of face, sequela|Crushing injury of face, sequela +C0451981|T037|PT|S07.1|ICD10|Crushing injury of skull|Crushing injury of skull +C0451981|T037|HT|S07.1|ICD10CM|Crushing injury of skull|Crushing injury of skull +C0451981|T037|AB|S07.1|ICD10CM|Crushing injury of skull|Crushing injury of skull +C2832713|T037|AB|S07.1XXA|ICD10CM|Crushing injury of skull, initial encounter|Crushing injury of skull, initial encounter +C2832713|T037|PT|S07.1XXA|ICD10CM|Crushing injury of skull, initial encounter|Crushing injury of skull, initial encounter +C2832714|T037|AB|S07.1XXD|ICD10CM|Crushing injury of skull, subsequent encounter|Crushing injury of skull, subsequent encounter +C2832714|T037|PT|S07.1XXD|ICD10CM|Crushing injury of skull, subsequent encounter|Crushing injury of skull, subsequent encounter +C2832715|T037|AB|S07.1XXS|ICD10CM|Crushing injury of skull, sequela|Crushing injury of skull, sequela +C2832715|T037|PT|S07.1XXS|ICD10CM|Crushing injury of skull, sequela|Crushing injury of skull, sequela +C0478212|T037|HT|S07.8|ICD10CM|Crushing injury of other parts of head|Crushing injury of other parts of head +C0478212|T037|AB|S07.8|ICD10CM|Crushing injury of other parts of head|Crushing injury of other parts of head +C0478212|T037|PT|S07.8|ICD10|Crushing injury of other parts of head|Crushing injury of other parts of head +C2832716|T037|AB|S07.8XXA|ICD10CM|Crushing injury of other parts of head, initial encounter|Crushing injury of other parts of head, initial encounter +C2832716|T037|PT|S07.8XXA|ICD10CM|Crushing injury of other parts of head, initial encounter|Crushing injury of other parts of head, initial encounter +C2832717|T037|AB|S07.8XXD|ICD10CM|Crushing injury of other parts of head, subsequent encounter|Crushing injury of other parts of head, subsequent encounter +C2832717|T037|PT|S07.8XXD|ICD10CM|Crushing injury of other parts of head, subsequent encounter|Crushing injury of other parts of head, subsequent encounter +C2832718|T037|AB|S07.8XXS|ICD10CM|Crushing injury of other parts of head, sequela|Crushing injury of other parts of head, sequela +C2832718|T037|PT|S07.8XXS|ICD10CM|Crushing injury of other parts of head, sequela|Crushing injury of other parts of head, sequela +C0433070|T037|PT|S07.9|ICD10|Crushing injury of head, part unspecified|Crushing injury of head, part unspecified +C0433070|T037|HT|S07.9|ICD10CM|Crushing injury of head, part unspecified|Crushing injury of head, part unspecified +C0433070|T037|AB|S07.9|ICD10CM|Crushing injury of head, part unspecified|Crushing injury of head, part unspecified +C2832719|T037|AB|S07.9XXA|ICD10CM|Crushing injury of head, part unspecified, initial encounter|Crushing injury of head, part unspecified, initial encounter +C2832719|T037|PT|S07.9XXA|ICD10CM|Crushing injury of head, part unspecified, initial encounter|Crushing injury of head, part unspecified, initial encounter +C2832720|T037|AB|S07.9XXD|ICD10CM|Crushing injury of head, part unspecified, subs encntr|Crushing injury of head, part unspecified, subs encntr +C2832720|T037|PT|S07.9XXD|ICD10CM|Crushing injury of head, part unspecified, subsequent encounter|Crushing injury of head, part unspecified, subsequent encounter +C2832721|T037|AB|S07.9XXS|ICD10CM|Crushing injury of head, part unspecified, sequela|Crushing injury of head, part unspecified, sequela +C2832721|T037|PT|S07.9XXS|ICD10CM|Crushing injury of head, part unspecified, sequela|Crushing injury of head, part unspecified, sequela +C2977737|T033|ET|S08|ICD10CM|An amputation not identified as partial or complete should be coded to complete|An amputation not identified as partial or complete should be coded to complete +C2832722|T037|AB|S08|ICD10CM|Avulsion and traumatic amputation of part of head|Avulsion and traumatic amputation of part of head +C2832722|T037|HT|S08|ICD10CM|Avulsion and traumatic amputation of part of head|Avulsion and traumatic amputation of part of head +C0478214|T037|HT|S08|ICD10|Traumatic amputation of part of head|Traumatic amputation of part of head +C0451920|T037|PT|S08.0|ICD10|Avulsion of scalp|Avulsion of scalp +C0451920|T037|HT|S08.0|ICD10CM|Avulsion of scalp|Avulsion of scalp +C0451920|T037|AB|S08.0|ICD10CM|Avulsion of scalp|Avulsion of scalp +C2832723|T037|PT|S08.0XXA|ICD10CM|Avulsion of scalp, initial encounter|Avulsion of scalp, initial encounter +C2832723|T037|AB|S08.0XXA|ICD10CM|Avulsion of scalp, initial encounter|Avulsion of scalp, initial encounter +C2832724|T037|PT|S08.0XXD|ICD10CM|Avulsion of scalp, subsequent encounter|Avulsion of scalp, subsequent encounter +C2832724|T037|AB|S08.0XXD|ICD10CM|Avulsion of scalp, subsequent encounter|Avulsion of scalp, subsequent encounter +C2832725|T037|PT|S08.0XXS|ICD10CM|Avulsion of scalp, sequela|Avulsion of scalp, sequela +C2832725|T037|AB|S08.0XXS|ICD10CM|Avulsion of scalp, sequela|Avulsion of scalp, sequela +C0452053|T037|HT|S08.1|ICD10CM|Traumatic amputation of ear|Traumatic amputation of ear +C0452053|T037|AB|S08.1|ICD10CM|Traumatic amputation of ear|Traumatic amputation of ear +C0452053|T037|PT|S08.1|ICD10|Traumatic amputation of ear|Traumatic amputation of ear +C2832726|T037|HT|S08.11|ICD10CM|Complete traumatic amputation of ear|Complete traumatic amputation of ear +C2832726|T037|AB|S08.11|ICD10CM|Complete traumatic amputation of ear|Complete traumatic amputation of ear +C2832727|T037|AB|S08.111|ICD10CM|Complete traumatic amputation of right ear|Complete traumatic amputation of right ear +C2832727|T037|HT|S08.111|ICD10CM|Complete traumatic amputation of right ear|Complete traumatic amputation of right ear +C2832728|T037|AB|S08.111A|ICD10CM|Complete traumatic amputation of right ear, init encntr|Complete traumatic amputation of right ear, init encntr +C2832728|T037|PT|S08.111A|ICD10CM|Complete traumatic amputation of right ear, initial encounter|Complete traumatic amputation of right ear, initial encounter +C2832729|T037|AB|S08.111D|ICD10CM|Complete traumatic amputation of right ear, subs encntr|Complete traumatic amputation of right ear, subs encntr +C2832729|T037|PT|S08.111D|ICD10CM|Complete traumatic amputation of right ear, subsequent encounter|Complete traumatic amputation of right ear, subsequent encounter +C2832730|T037|PT|S08.111S|ICD10CM|Complete traumatic amputation of right ear, sequela|Complete traumatic amputation of right ear, sequela +C2832730|T037|AB|S08.111S|ICD10CM|Complete traumatic amputation of right ear, sequela|Complete traumatic amputation of right ear, sequela +C2832731|T037|AB|S08.112|ICD10CM|Complete traumatic amputation of left ear|Complete traumatic amputation of left ear +C2832731|T037|HT|S08.112|ICD10CM|Complete traumatic amputation of left ear|Complete traumatic amputation of left ear +C2832732|T037|AB|S08.112A|ICD10CM|Complete traumatic amputation of left ear, initial encounter|Complete traumatic amputation of left ear, initial encounter +C2832732|T037|PT|S08.112A|ICD10CM|Complete traumatic amputation of left ear, initial encounter|Complete traumatic amputation of left ear, initial encounter +C2832733|T037|AB|S08.112D|ICD10CM|Complete traumatic amputation of left ear, subs encntr|Complete traumatic amputation of left ear, subs encntr +C2832733|T037|PT|S08.112D|ICD10CM|Complete traumatic amputation of left ear, subsequent encounter|Complete traumatic amputation of left ear, subsequent encounter +C2832734|T037|PT|S08.112S|ICD10CM|Complete traumatic amputation of left ear, sequela|Complete traumatic amputation of left ear, sequela +C2832734|T037|AB|S08.112S|ICD10CM|Complete traumatic amputation of left ear, sequela|Complete traumatic amputation of left ear, sequela +C2832735|T037|AB|S08.119|ICD10CM|Complete traumatic amputation of unspecified ear|Complete traumatic amputation of unspecified ear +C2832735|T037|HT|S08.119|ICD10CM|Complete traumatic amputation of unspecified ear|Complete traumatic amputation of unspecified ear +C2832736|T037|AB|S08.119A|ICD10CM|Complete traumatic amputation of unsp ear, init encntr|Complete traumatic amputation of unsp ear, init encntr +C2832736|T037|PT|S08.119A|ICD10CM|Complete traumatic amputation of unspecified ear, initial encounter|Complete traumatic amputation of unspecified ear, initial encounter +C2832737|T037|AB|S08.119D|ICD10CM|Complete traumatic amputation of unsp ear, subs encntr|Complete traumatic amputation of unsp ear, subs encntr +C2832737|T037|PT|S08.119D|ICD10CM|Complete traumatic amputation of unspecified ear, subsequent encounter|Complete traumatic amputation of unspecified ear, subsequent encounter +C2832738|T037|PT|S08.119S|ICD10CM|Complete traumatic amputation of unspecified ear, sequela|Complete traumatic amputation of unspecified ear, sequela +C2832738|T037|AB|S08.119S|ICD10CM|Complete traumatic amputation of unspecified ear, sequela|Complete traumatic amputation of unspecified ear, sequela +C2832739|T037|HT|S08.12|ICD10CM|Partial traumatic amputation of ear|Partial traumatic amputation of ear +C2832739|T037|AB|S08.12|ICD10CM|Partial traumatic amputation of ear|Partial traumatic amputation of ear +C2832740|T037|AB|S08.121|ICD10CM|Partial traumatic amputation of right ear|Partial traumatic amputation of right ear +C2832740|T037|HT|S08.121|ICD10CM|Partial traumatic amputation of right ear|Partial traumatic amputation of right ear +C2832741|T037|AB|S08.121A|ICD10CM|Partial traumatic amputation of right ear, initial encounter|Partial traumatic amputation of right ear, initial encounter +C2832741|T037|PT|S08.121A|ICD10CM|Partial traumatic amputation of right ear, initial encounter|Partial traumatic amputation of right ear, initial encounter +C2832742|T037|AB|S08.121D|ICD10CM|Partial traumatic amputation of right ear, subs encntr|Partial traumatic amputation of right ear, subs encntr +C2832742|T037|PT|S08.121D|ICD10CM|Partial traumatic amputation of right ear, subsequent encounter|Partial traumatic amputation of right ear, subsequent encounter +C2832743|T037|PT|S08.121S|ICD10CM|Partial traumatic amputation of right ear, sequela|Partial traumatic amputation of right ear, sequela +C2832743|T037|AB|S08.121S|ICD10CM|Partial traumatic amputation of right ear, sequela|Partial traumatic amputation of right ear, sequela +C2832744|T037|AB|S08.122|ICD10CM|Partial traumatic amputation of left ear|Partial traumatic amputation of left ear +C2832744|T037|HT|S08.122|ICD10CM|Partial traumatic amputation of left ear|Partial traumatic amputation of left ear +C2832745|T037|AB|S08.122A|ICD10CM|Partial traumatic amputation of left ear, initial encounter|Partial traumatic amputation of left ear, initial encounter +C2832745|T037|PT|S08.122A|ICD10CM|Partial traumatic amputation of left ear, initial encounter|Partial traumatic amputation of left ear, initial encounter +C2832746|T037|AB|S08.122D|ICD10CM|Partial traumatic amputation of left ear, subs encntr|Partial traumatic amputation of left ear, subs encntr +C2832746|T037|PT|S08.122D|ICD10CM|Partial traumatic amputation of left ear, subsequent encounter|Partial traumatic amputation of left ear, subsequent encounter +C2832747|T037|PT|S08.122S|ICD10CM|Partial traumatic amputation of left ear, sequela|Partial traumatic amputation of left ear, sequela +C2832747|T037|AB|S08.122S|ICD10CM|Partial traumatic amputation of left ear, sequela|Partial traumatic amputation of left ear, sequela +C2832748|T037|AB|S08.129|ICD10CM|Partial traumatic amputation of unspecified ear|Partial traumatic amputation of unspecified ear +C2832748|T037|HT|S08.129|ICD10CM|Partial traumatic amputation of unspecified ear|Partial traumatic amputation of unspecified ear +C2832749|T037|AB|S08.129A|ICD10CM|Partial traumatic amputation of unspecified ear, init encntr|Partial traumatic amputation of unspecified ear, init encntr +C2832749|T037|PT|S08.129A|ICD10CM|Partial traumatic amputation of unspecified ear, initial encounter|Partial traumatic amputation of unspecified ear, initial encounter +C2832750|T037|AB|S08.129D|ICD10CM|Partial traumatic amputation of unspecified ear, subs encntr|Partial traumatic amputation of unspecified ear, subs encntr +C2832750|T037|PT|S08.129D|ICD10CM|Partial traumatic amputation of unspecified ear, subsequent encounter|Partial traumatic amputation of unspecified ear, subsequent encounter +C2832751|T037|PT|S08.129S|ICD10CM|Partial traumatic amputation of unspecified ear, sequela|Partial traumatic amputation of unspecified ear, sequela +C2832751|T037|AB|S08.129S|ICD10CM|Partial traumatic amputation of unspecified ear, sequela|Partial traumatic amputation of unspecified ear, sequela +C0478213|T037|PT|S08.8|ICD10|Traumatic amputation of other parts of head|Traumatic amputation of other parts of head +C0478213|T037|HT|S08.8|ICD10CM|Traumatic amputation of other parts of head|Traumatic amputation of other parts of head +C0478213|T037|AB|S08.8|ICD10CM|Traumatic amputation of other parts of head|Traumatic amputation of other parts of head +C1387280|T037|HT|S08.81|ICD10CM|Traumatic amputation of nose|Traumatic amputation of nose +C1387280|T037|AB|S08.81|ICD10CM|Traumatic amputation of nose|Traumatic amputation of nose +C2832752|T037|HT|S08.811|ICD10CM|Complete traumatic amputation of nose|Complete traumatic amputation of nose +C2832752|T037|AB|S08.811|ICD10CM|Complete traumatic amputation of nose|Complete traumatic amputation of nose +C2832753|T037|PT|S08.811A|ICD10CM|Complete traumatic amputation of nose, initial encounter|Complete traumatic amputation of nose, initial encounter +C2832753|T037|AB|S08.811A|ICD10CM|Complete traumatic amputation of nose, initial encounter|Complete traumatic amputation of nose, initial encounter +C2832754|T037|PT|S08.811D|ICD10CM|Complete traumatic amputation of nose, subsequent encounter|Complete traumatic amputation of nose, subsequent encounter +C2832754|T037|AB|S08.811D|ICD10CM|Complete traumatic amputation of nose, subsequent encounter|Complete traumatic amputation of nose, subsequent encounter +C2832755|T037|PT|S08.811S|ICD10CM|Complete traumatic amputation of nose, sequela|Complete traumatic amputation of nose, sequela +C2832755|T037|AB|S08.811S|ICD10CM|Complete traumatic amputation of nose, sequela|Complete traumatic amputation of nose, sequela +C2832756|T037|HT|S08.812|ICD10CM|Partial traumatic amputation of nose|Partial traumatic amputation of nose +C2832756|T037|AB|S08.812|ICD10CM|Partial traumatic amputation of nose|Partial traumatic amputation of nose +C2832757|T037|PT|S08.812A|ICD10CM|Partial traumatic amputation of nose, initial encounter|Partial traumatic amputation of nose, initial encounter +C2832757|T037|AB|S08.812A|ICD10CM|Partial traumatic amputation of nose, initial encounter|Partial traumatic amputation of nose, initial encounter +C2832758|T037|PT|S08.812D|ICD10CM|Partial traumatic amputation of nose, subsequent encounter|Partial traumatic amputation of nose, subsequent encounter +C2832758|T037|AB|S08.812D|ICD10CM|Partial traumatic amputation of nose, subsequent encounter|Partial traumatic amputation of nose, subsequent encounter +C2832759|T037|PT|S08.812S|ICD10CM|Partial traumatic amputation of nose, sequela|Partial traumatic amputation of nose, sequela +C2832759|T037|AB|S08.812S|ICD10CM|Partial traumatic amputation of nose, sequela|Partial traumatic amputation of nose, sequela +C0478213|T037|HT|S08.89|ICD10CM|Traumatic amputation of other parts of head|Traumatic amputation of other parts of head +C0478213|T037|AB|S08.89|ICD10CM|Traumatic amputation of other parts of head|Traumatic amputation of other parts of head +C2832760|T037|AB|S08.89XA|ICD10CM|Traumatic amputation of other parts of head, init encntr|Traumatic amputation of other parts of head, init encntr +C2832760|T037|PT|S08.89XA|ICD10CM|Traumatic amputation of other parts of head, initial encounter|Traumatic amputation of other parts of head, initial encounter +C2832761|T037|AB|S08.89XD|ICD10CM|Traumatic amputation of other parts of head, subs encntr|Traumatic amputation of other parts of head, subs encntr +C2832761|T037|PT|S08.89XD|ICD10CM|Traumatic amputation of other parts of head, subsequent encounter|Traumatic amputation of other parts of head, subsequent encounter +C2832762|T037|AB|S08.89XS|ICD10CM|Traumatic amputation of other parts of head, sequela|Traumatic amputation of other parts of head, sequela +C2832762|T037|PT|S08.89XS|ICD10CM|Traumatic amputation of other parts of head, sequela|Traumatic amputation of other parts of head, sequela +C0478214|T037|PT|S08.9|ICD10|Traumatic amputation of unspecified part of head|Traumatic amputation of unspecified part of head +C0495811|T037|HT|S09|ICD10|Other and unspecified injuries of head|Other and unspecified injuries of head +C0495811|T037|AB|S09|ICD10CM|Other and unspecified injuries of head|Other and unspecified injuries of head +C0495811|T037|HT|S09|ICD10CM|Other and unspecified injuries of head|Other and unspecified injuries of head +C0869087|T037|PT|S09.0|ICD10|Injury of blood vessels of head, not elsewhere classified|Injury of blood vessels of head, not elsewhere classified +C0869087|T037|HT|S09.0|ICD10CM|Injury of blood vessels of head, not elsewhere classified|Injury of blood vessels of head, not elsewhere classified +C0869087|T037|AB|S09.0|ICD10CM|Injury of blood vessels of head, not elsewhere classified|Injury of blood vessels of head, not elsewhere classified +C2832763|T037|AB|S09.0XXA|ICD10CM|Injury of blood vessels of head, NEC, init|Injury of blood vessels of head, NEC, init +C2832763|T037|PT|S09.0XXA|ICD10CM|Injury of blood vessels of head, not elsewhere classified, initial encounter|Injury of blood vessels of head, not elsewhere classified, initial encounter +C2832764|T037|AB|S09.0XXD|ICD10CM|Injury of blood vessels of head, NEC, subs|Injury of blood vessels of head, NEC, subs +C2832764|T037|PT|S09.0XXD|ICD10CM|Injury of blood vessels of head, not elsewhere classified, subsequent encounter|Injury of blood vessels of head, not elsewhere classified, subsequent encounter +C2832765|T037|AB|S09.0XXS|ICD10CM|Injury of blood vessels of head, NEC, sequela|Injury of blood vessels of head, NEC, sequela +C2832765|T037|PT|S09.0XXS|ICD10CM|Injury of blood vessels of head, not elsewhere classified, sequela|Injury of blood vessels of head, not elsewhere classified, sequela +C0451849|T037|PT|S09.1|ICD10|Injury of muscle and tendon of head|Injury of muscle and tendon of head +C0451849|T037|HT|S09.1|ICD10CM|Injury of muscle and tendon of head|Injury of muscle and tendon of head +C0451849|T037|AB|S09.1|ICD10CM|Injury of muscle and tendon of head|Injury of muscle and tendon of head +C0451849|T037|ET|S09.10|ICD10CM|Injury of muscle and tendon of head NOS|Injury of muscle and tendon of head NOS +C2832766|T037|AB|S09.10|ICD10CM|Unspecified injury of muscle and tendon of head|Unspecified injury of muscle and tendon of head +C2832766|T037|HT|S09.10|ICD10CM|Unspecified injury of muscle and tendon of head|Unspecified injury of muscle and tendon of head +C2832767|T037|AB|S09.10XA|ICD10CM|Unspecified injury of muscle and tendon of head, init encntr|Unspecified injury of muscle and tendon of head, init encntr +C2832767|T037|PT|S09.10XA|ICD10CM|Unspecified injury of muscle and tendon of head, initial encounter|Unspecified injury of muscle and tendon of head, initial encounter +C2832768|T037|AB|S09.10XD|ICD10CM|Unspecified injury of muscle and tendon of head, subs encntr|Unspecified injury of muscle and tendon of head, subs encntr +C2832768|T037|PT|S09.10XD|ICD10CM|Unspecified injury of muscle and tendon of head, subsequent encounter|Unspecified injury of muscle and tendon of head, subsequent encounter +C2832769|T037|AB|S09.10XS|ICD10CM|Unspecified injury of muscle and tendon of head, sequela|Unspecified injury of muscle and tendon of head, sequela +C2832769|T037|PT|S09.10XS|ICD10CM|Unspecified injury of muscle and tendon of head, sequela|Unspecified injury of muscle and tendon of head, sequela +C2832770|T037|AB|S09.11|ICD10CM|Strain of muscle and tendon of head|Strain of muscle and tendon of head +C2832770|T037|HT|S09.11|ICD10CM|Strain of muscle and tendon of head|Strain of muscle and tendon of head +C2832771|T037|PT|S09.11XA|ICD10CM|Strain of muscle and tendon of head, initial encounter|Strain of muscle and tendon of head, initial encounter +C2832771|T037|AB|S09.11XA|ICD10CM|Strain of muscle and tendon of head, initial encounter|Strain of muscle and tendon of head, initial encounter +C2832772|T037|PT|S09.11XD|ICD10CM|Strain of muscle and tendon of head, subsequent encounter|Strain of muscle and tendon of head, subsequent encounter +C2832772|T037|AB|S09.11XD|ICD10CM|Strain of muscle and tendon of head, subsequent encounter|Strain of muscle and tendon of head, subsequent encounter +C2832773|T037|PT|S09.11XS|ICD10CM|Strain of muscle and tendon of head, sequela|Strain of muscle and tendon of head, sequela +C2832773|T037|AB|S09.11XS|ICD10CM|Strain of muscle and tendon of head, sequela|Strain of muscle and tendon of head, sequela +C2832774|T037|AB|S09.12|ICD10CM|Laceration of muscle and tendon of head|Laceration of muscle and tendon of head +C2832774|T037|HT|S09.12|ICD10CM|Laceration of muscle and tendon of head|Laceration of muscle and tendon of head +C2832775|T037|PT|S09.12XA|ICD10CM|Laceration of muscle and tendon of head, initial encounter|Laceration of muscle and tendon of head, initial encounter +C2832775|T037|AB|S09.12XA|ICD10CM|Laceration of muscle and tendon of head, initial encounter|Laceration of muscle and tendon of head, initial encounter +C2832776|T037|AB|S09.12XD|ICD10CM|Laceration of muscle and tendon of head, subs encntr|Laceration of muscle and tendon of head, subs encntr +C2832776|T037|PT|S09.12XD|ICD10CM|Laceration of muscle and tendon of head, subsequent encounter|Laceration of muscle and tendon of head, subsequent encounter +C2832777|T037|PT|S09.12XS|ICD10CM|Laceration of muscle and tendon of head, sequela|Laceration of muscle and tendon of head, sequela +C2832777|T037|AB|S09.12XS|ICD10CM|Laceration of muscle and tendon of head, sequela|Laceration of muscle and tendon of head, sequela +C2832778|T037|AB|S09.19|ICD10CM|Other specified injury of muscle and tendon of head|Other specified injury of muscle and tendon of head +C2832778|T037|HT|S09.19|ICD10CM|Other specified injury of muscle and tendon of head|Other specified injury of muscle and tendon of head +C2977738|T037|AB|S09.19XA|ICD10CM|Oth injury of muscle and tendon of head, init encntr|Oth injury of muscle and tendon of head, init encntr +C2977738|T037|PT|S09.19XA|ICD10CM|Other specified injury of muscle and tendon of head, initial encounter|Other specified injury of muscle and tendon of head, initial encounter +C2977739|T037|AB|S09.19XD|ICD10CM|Oth injury of muscle and tendon of head, subs encntr|Oth injury of muscle and tendon of head, subs encntr +C2977739|T037|PT|S09.19XD|ICD10CM|Other specified injury of muscle and tendon of head, subsequent encounter|Other specified injury of muscle and tendon of head, subsequent encounter +C2977740|T037|AB|S09.19XS|ICD10CM|Other specified injury of muscle and tendon of head, sequela|Other specified injury of muscle and tendon of head, sequela +C2977740|T037|PT|S09.19XS|ICD10CM|Other specified injury of muscle and tendon of head, sequela|Other specified injury of muscle and tendon of head, sequela +C0495812|T037|PT|S09.2|ICD10|Traumatic rupture of ear drum|Traumatic rupture of ear drum +C0495812|T037|HT|S09.2|ICD10CM|Traumatic rupture of ear drum|Traumatic rupture of ear drum +C0495812|T037|AB|S09.2|ICD10CM|Traumatic rupture of ear drum|Traumatic rupture of ear drum +C2832782|T037|AB|S09.20|ICD10CM|Traumatic rupture of unspecified ear drum|Traumatic rupture of unspecified ear drum +C2832782|T037|HT|S09.20|ICD10CM|Traumatic rupture of unspecified ear drum|Traumatic rupture of unspecified ear drum +C2832783|T037|AB|S09.20XA|ICD10CM|Traumatic rupture of unspecified ear drum, initial encounter|Traumatic rupture of unspecified ear drum, initial encounter +C2832783|T037|PT|S09.20XA|ICD10CM|Traumatic rupture of unspecified ear drum, initial encounter|Traumatic rupture of unspecified ear drum, initial encounter +C2832784|T037|AB|S09.20XD|ICD10CM|Traumatic rupture of unspecified ear drum, subs encntr|Traumatic rupture of unspecified ear drum, subs encntr +C2832784|T037|PT|S09.20XD|ICD10CM|Traumatic rupture of unspecified ear drum, subsequent encounter|Traumatic rupture of unspecified ear drum, subsequent encounter +C2832785|T037|AB|S09.20XS|ICD10CM|Traumatic rupture of unspecified ear drum, sequela|Traumatic rupture of unspecified ear drum, sequela +C2832785|T037|PT|S09.20XS|ICD10CM|Traumatic rupture of unspecified ear drum, sequela|Traumatic rupture of unspecified ear drum, sequela +C2832786|T037|AB|S09.21|ICD10CM|Traumatic rupture of right ear drum|Traumatic rupture of right ear drum +C2832786|T037|HT|S09.21|ICD10CM|Traumatic rupture of right ear drum|Traumatic rupture of right ear drum +C2832787|T037|AB|S09.21XA|ICD10CM|Traumatic rupture of right ear drum, initial encounter|Traumatic rupture of right ear drum, initial encounter +C2832787|T037|PT|S09.21XA|ICD10CM|Traumatic rupture of right ear drum, initial encounter|Traumatic rupture of right ear drum, initial encounter +C2832788|T037|AB|S09.21XD|ICD10CM|Traumatic rupture of right ear drum, subsequent encounter|Traumatic rupture of right ear drum, subsequent encounter +C2832788|T037|PT|S09.21XD|ICD10CM|Traumatic rupture of right ear drum, subsequent encounter|Traumatic rupture of right ear drum, subsequent encounter +C2832789|T037|AB|S09.21XS|ICD10CM|Traumatic rupture of right ear drum, sequela|Traumatic rupture of right ear drum, sequela +C2832789|T037|PT|S09.21XS|ICD10CM|Traumatic rupture of right ear drum, sequela|Traumatic rupture of right ear drum, sequela +C2832790|T037|AB|S09.22|ICD10CM|Traumatic rupture of left ear drum|Traumatic rupture of left ear drum +C2832790|T037|HT|S09.22|ICD10CM|Traumatic rupture of left ear drum|Traumatic rupture of left ear drum +C2832791|T037|AB|S09.22XA|ICD10CM|Traumatic rupture of left ear drum, initial encounter|Traumatic rupture of left ear drum, initial encounter +C2832791|T037|PT|S09.22XA|ICD10CM|Traumatic rupture of left ear drum, initial encounter|Traumatic rupture of left ear drum, initial encounter +C2832792|T037|AB|S09.22XD|ICD10CM|Traumatic rupture of left ear drum, subsequent encounter|Traumatic rupture of left ear drum, subsequent encounter +C2832792|T037|PT|S09.22XD|ICD10CM|Traumatic rupture of left ear drum, subsequent encounter|Traumatic rupture of left ear drum, subsequent encounter +C2832793|T037|AB|S09.22XS|ICD10CM|Traumatic rupture of left ear drum, sequela|Traumatic rupture of left ear drum, sequela +C2832793|T037|PT|S09.22XS|ICD10CM|Traumatic rupture of left ear drum, sequela|Traumatic rupture of left ear drum, sequela +C2832794|T037|AB|S09.3|ICD10CM|Oth and unspecified injury of middle and inner ear|Oth and unspecified injury of middle and inner ear +C2832794|T037|HT|S09.3|ICD10CM|Other specified and unspecified injury of middle and inner ear|Other specified and unspecified injury of middle and inner ear +C2832795|T037|AB|S09.30|ICD10CM|Unspecified injury of middle and inner ear|Unspecified injury of middle and inner ear +C2832795|T037|HT|S09.30|ICD10CM|Unspecified injury of middle and inner ear|Unspecified injury of middle and inner ear +C2832796|T037|AB|S09.301|ICD10CM|Unspecified injury of right middle and inner ear|Unspecified injury of right middle and inner ear +C2832796|T037|HT|S09.301|ICD10CM|Unspecified injury of right middle and inner ear|Unspecified injury of right middle and inner ear +C2832797|T037|AB|S09.301A|ICD10CM|Unsp injury of right middle and inner ear, init encntr|Unsp injury of right middle and inner ear, init encntr +C2832797|T037|PT|S09.301A|ICD10CM|Unspecified injury of right middle and inner ear, initial encounter|Unspecified injury of right middle and inner ear, initial encounter +C2832798|T037|AB|S09.301D|ICD10CM|Unsp injury of right middle and inner ear, subs encntr|Unsp injury of right middle and inner ear, subs encntr +C2832798|T037|PT|S09.301D|ICD10CM|Unspecified injury of right middle and inner ear, subsequent encounter|Unspecified injury of right middle and inner ear, subsequent encounter +C2832799|T037|AB|S09.301S|ICD10CM|Unspecified injury of right middle and inner ear, sequela|Unspecified injury of right middle and inner ear, sequela +C2832799|T037|PT|S09.301S|ICD10CM|Unspecified injury of right middle and inner ear, sequela|Unspecified injury of right middle and inner ear, sequela +C2832800|T037|AB|S09.302|ICD10CM|Unspecified injury of left middle and inner ear|Unspecified injury of left middle and inner ear +C2832800|T037|HT|S09.302|ICD10CM|Unspecified injury of left middle and inner ear|Unspecified injury of left middle and inner ear +C2832801|T037|AB|S09.302A|ICD10CM|Unspecified injury of left middle and inner ear, init encntr|Unspecified injury of left middle and inner ear, init encntr +C2832801|T037|PT|S09.302A|ICD10CM|Unspecified injury of left middle and inner ear, initial encounter|Unspecified injury of left middle and inner ear, initial encounter +C2832802|T037|AB|S09.302D|ICD10CM|Unspecified injury of left middle and inner ear, subs encntr|Unspecified injury of left middle and inner ear, subs encntr +C2832802|T037|PT|S09.302D|ICD10CM|Unspecified injury of left middle and inner ear, subsequent encounter|Unspecified injury of left middle and inner ear, subsequent encounter +C2832803|T037|AB|S09.302S|ICD10CM|Unspecified injury of left middle and inner ear, sequela|Unspecified injury of left middle and inner ear, sequela +C2832803|T037|PT|S09.302S|ICD10CM|Unspecified injury of left middle and inner ear, sequela|Unspecified injury of left middle and inner ear, sequela +C2832804|T037|AB|S09.309|ICD10CM|Unspecified injury of unspecified middle and inner ear|Unspecified injury of unspecified middle and inner ear +C2832804|T037|HT|S09.309|ICD10CM|Unspecified injury of unspecified middle and inner ear|Unspecified injury of unspecified middle and inner ear +C2832805|T037|AB|S09.309A|ICD10CM|Unsp injury of unspecified middle and inner ear, init encntr|Unsp injury of unspecified middle and inner ear, init encntr +C2832805|T037|PT|S09.309A|ICD10CM|Unspecified injury of unspecified middle and inner ear, initial encounter|Unspecified injury of unspecified middle and inner ear, initial encounter +C2832806|T037|AB|S09.309D|ICD10CM|Unsp injury of unspecified middle and inner ear, subs encntr|Unsp injury of unspecified middle and inner ear, subs encntr +C2832806|T037|PT|S09.309D|ICD10CM|Unspecified injury of unspecified middle and inner ear, subsequent encounter|Unspecified injury of unspecified middle and inner ear, subsequent encounter +C2832807|T037|AB|S09.309S|ICD10CM|Unsp injury of unspecified middle and inner ear, sequela|Unsp injury of unspecified middle and inner ear, sequela +C2832807|T037|PT|S09.309S|ICD10CM|Unspecified injury of unspecified middle and inner ear, sequela|Unspecified injury of unspecified middle and inner ear, sequela +C0344193|T037|ET|S09.31|ICD10CM|Blast injury of ear NOS|Blast injury of ear NOS +C2832808|T037|AB|S09.31|ICD10CM|Primary blast injury of ear|Primary blast injury of ear +C2832808|T037|HT|S09.31|ICD10CM|Primary blast injury of ear|Primary blast injury of ear +C2832809|T037|HT|S09.311|ICD10CM|Primary blast injury of right ear|Primary blast injury of right ear +C2832809|T037|AB|S09.311|ICD10CM|Primary blast injury of right ear|Primary blast injury of right ear +C2832810|T037|AB|S09.311A|ICD10CM|Primary blast injury of right ear, initial encounter|Primary blast injury of right ear, initial encounter +C2832810|T037|PT|S09.311A|ICD10CM|Primary blast injury of right ear, initial encounter|Primary blast injury of right ear, initial encounter +C2832811|T037|AB|S09.311D|ICD10CM|Primary blast injury of right ear, subsequent encounter|Primary blast injury of right ear, subsequent encounter +C2832811|T037|PT|S09.311D|ICD10CM|Primary blast injury of right ear, subsequent encounter|Primary blast injury of right ear, subsequent encounter +C2832812|T037|AB|S09.311S|ICD10CM|Primary blast injury of right ear, sequela|Primary blast injury of right ear, sequela +C2832812|T037|PT|S09.311S|ICD10CM|Primary blast injury of right ear, sequela|Primary blast injury of right ear, sequela +C2832813|T037|HT|S09.312|ICD10CM|Primary blast injury of left ear|Primary blast injury of left ear +C2832813|T037|AB|S09.312|ICD10CM|Primary blast injury of left ear|Primary blast injury of left ear +C2832814|T037|AB|S09.312A|ICD10CM|Primary blast injury of left ear, initial encounter|Primary blast injury of left ear, initial encounter +C2832814|T037|PT|S09.312A|ICD10CM|Primary blast injury of left ear, initial encounter|Primary blast injury of left ear, initial encounter +C2832815|T037|AB|S09.312D|ICD10CM|Primary blast injury of left ear, subsequent encounter|Primary blast injury of left ear, subsequent encounter +C2832815|T037|PT|S09.312D|ICD10CM|Primary blast injury of left ear, subsequent encounter|Primary blast injury of left ear, subsequent encounter +C2832816|T037|AB|S09.312S|ICD10CM|Primary blast injury of left ear, sequela|Primary blast injury of left ear, sequela +C2832816|T037|PT|S09.312S|ICD10CM|Primary blast injury of left ear, sequela|Primary blast injury of left ear, sequela +C2832817|T037|AB|S09.313|ICD10CM|Primary blast injury of ear, bilateral|Primary blast injury of ear, bilateral +C2832817|T037|HT|S09.313|ICD10CM|Primary blast injury of ear, bilateral|Primary blast injury of ear, bilateral +C2832818|T037|AB|S09.313A|ICD10CM|Primary blast injury of ear, bilateral, initial encounter|Primary blast injury of ear, bilateral, initial encounter +C2832818|T037|PT|S09.313A|ICD10CM|Primary blast injury of ear, bilateral, initial encounter|Primary blast injury of ear, bilateral, initial encounter +C2832819|T037|AB|S09.313D|ICD10CM|Primary blast injury of ear, bilateral, subsequent encounter|Primary blast injury of ear, bilateral, subsequent encounter +C2832819|T037|PT|S09.313D|ICD10CM|Primary blast injury of ear, bilateral, subsequent encounter|Primary blast injury of ear, bilateral, subsequent encounter +C2832820|T037|AB|S09.313S|ICD10CM|Primary blast injury of ear, bilateral, sequela|Primary blast injury of ear, bilateral, sequela +C2832820|T037|PT|S09.313S|ICD10CM|Primary blast injury of ear, bilateral, sequela|Primary blast injury of ear, bilateral, sequela +C2832821|T037|AB|S09.319|ICD10CM|Primary blast injury of unspecified ear|Primary blast injury of unspecified ear +C2832821|T037|HT|S09.319|ICD10CM|Primary blast injury of unspecified ear|Primary blast injury of unspecified ear +C2832822|T037|AB|S09.319A|ICD10CM|Primary blast injury of unspecified ear, initial encounter|Primary blast injury of unspecified ear, initial encounter +C2832822|T037|PT|S09.319A|ICD10CM|Primary blast injury of unspecified ear, initial encounter|Primary blast injury of unspecified ear, initial encounter +C2832823|T037|AB|S09.319D|ICD10CM|Primary blast injury of unspecified ear, subs encntr|Primary blast injury of unspecified ear, subs encntr +C2832823|T037|PT|S09.319D|ICD10CM|Primary blast injury of unspecified ear, subsequent encounter|Primary blast injury of unspecified ear, subsequent encounter +C2832824|T037|AB|S09.319S|ICD10CM|Primary blast injury of unspecified ear, sequela|Primary blast injury of unspecified ear, sequela +C2832824|T037|PT|S09.319S|ICD10CM|Primary blast injury of unspecified ear, sequela|Primary blast injury of unspecified ear, sequela +C2832826|T037|AB|S09.39|ICD10CM|Other specified injury of middle and inner ear|Other specified injury of middle and inner ear +C2832826|T037|HT|S09.39|ICD10CM|Other specified injury of middle and inner ear|Other specified injury of middle and inner ear +C2832825|T037|ET|S09.39|ICD10CM|Secondary blast injury to ear|Secondary blast injury to ear +C2832827|T037|AB|S09.391|ICD10CM|Other specified injury of right middle and inner ear|Other specified injury of right middle and inner ear +C2832827|T037|HT|S09.391|ICD10CM|Other specified injury of right middle and inner ear|Other specified injury of right middle and inner ear +C2832828|T037|AB|S09.391A|ICD10CM|Oth injury of right middle and inner ear, init encntr|Oth injury of right middle and inner ear, init encntr +C2832828|T037|PT|S09.391A|ICD10CM|Other specified injury of right middle and inner ear, initial encounter|Other specified injury of right middle and inner ear, initial encounter +C2832829|T037|AB|S09.391D|ICD10CM|Oth injury of right middle and inner ear, subs encntr|Oth injury of right middle and inner ear, subs encntr +C2832829|T037|PT|S09.391D|ICD10CM|Other specified injury of right middle and inner ear, subsequent encounter|Other specified injury of right middle and inner ear, subsequent encounter +C2832830|T037|AB|S09.391S|ICD10CM|Oth injury of right middle and inner ear, sequela|Oth injury of right middle and inner ear, sequela +C2832830|T037|PT|S09.391S|ICD10CM|Other specified injury of right middle and inner ear, sequela|Other specified injury of right middle and inner ear, sequela +C2832831|T037|AB|S09.392|ICD10CM|Other specified injury of left middle and inner ear|Other specified injury of left middle and inner ear +C2832831|T037|HT|S09.392|ICD10CM|Other specified injury of left middle and inner ear|Other specified injury of left middle and inner ear +C2832832|T037|AB|S09.392A|ICD10CM|Oth injury of left middle and inner ear, init encntr|Oth injury of left middle and inner ear, init encntr +C2832832|T037|PT|S09.392A|ICD10CM|Other specified injury of left middle and inner ear, initial encounter|Other specified injury of left middle and inner ear, initial encounter +C2832833|T037|AB|S09.392D|ICD10CM|Oth injury of left middle and inner ear, subs encntr|Oth injury of left middle and inner ear, subs encntr +C2832833|T037|PT|S09.392D|ICD10CM|Other specified injury of left middle and inner ear, subsequent encounter|Other specified injury of left middle and inner ear, subsequent encounter +C2832834|T037|AB|S09.392S|ICD10CM|Other specified injury of left middle and inner ear, sequela|Other specified injury of left middle and inner ear, sequela +C2832834|T037|PT|S09.392S|ICD10CM|Other specified injury of left middle and inner ear, sequela|Other specified injury of left middle and inner ear, sequela +C2832835|T037|AB|S09.399|ICD10CM|Other specified injury of unspecified middle and inner ear|Other specified injury of unspecified middle and inner ear +C2832835|T037|HT|S09.399|ICD10CM|Other specified injury of unspecified middle and inner ear|Other specified injury of unspecified middle and inner ear +C2832836|T037|AB|S09.399A|ICD10CM|Oth injury of unspecified middle and inner ear, init encntr|Oth injury of unspecified middle and inner ear, init encntr +C2832836|T037|PT|S09.399A|ICD10CM|Other specified injury of unspecified middle and inner ear, initial encounter|Other specified injury of unspecified middle and inner ear, initial encounter +C2832837|T037|AB|S09.399D|ICD10CM|Oth injury of unspecified middle and inner ear, subs encntr|Oth injury of unspecified middle and inner ear, subs encntr +C2832837|T037|PT|S09.399D|ICD10CM|Other specified injury of unspecified middle and inner ear, subsequent encounter|Other specified injury of unspecified middle and inner ear, subsequent encounter +C2832838|T037|AB|S09.399S|ICD10CM|Oth injury of unspecified middle and inner ear, sequela|Oth injury of unspecified middle and inner ear, sequela +C2832838|T037|PT|S09.399S|ICD10CM|Other specified injury of unspecified middle and inner ear, sequela|Other specified injury of unspecified middle and inner ear, sequela +C0451948|T037|PT|S09.7|ICD10|Multiple injuries of head|Multiple injuries of head +C0478216|T037|PT|S09.8|ICD10|Other specified injuries of head|Other specified injuries of head +C0478216|T037|HT|S09.8|ICD10CM|Other specified injuries of head|Other specified injuries of head +C0478216|T037|AB|S09.8|ICD10CM|Other specified injuries of head|Other specified injuries of head +C2832839|T037|AB|S09.8XXA|ICD10CM|Other specified injuries of head, initial encounter|Other specified injuries of head, initial encounter +C2832839|T037|PT|S09.8XXA|ICD10CM|Other specified injuries of head, initial encounter|Other specified injuries of head, initial encounter +C2832840|T037|AB|S09.8XXD|ICD10CM|Other specified injuries of head, subsequent encounter|Other specified injuries of head, subsequent encounter +C2832840|T037|PT|S09.8XXD|ICD10CM|Other specified injuries of head, subsequent encounter|Other specified injuries of head, subsequent encounter +C0478508|T046|AB|S09.8XXS|ICD10CM|Other specified injuries of head, sequela|Other specified injuries of head, sequela +C0478508|T046|PT|S09.8XXS|ICD10CM|Other specified injuries of head, sequela|Other specified injuries of head, sequela +C2832841|T037|AB|S09.9|ICD10CM|Unspecified injury of face and head|Unspecified injury of face and head +C2832841|T037|HT|S09.9|ICD10CM|Unspecified injury of face and head|Unspecified injury of face and head +C0018674|T037|PT|S09.9|ICD10|Unspecified injury of head|Unspecified injury of head +C0018674|T037|ET|S09.90|ICD10CM|Head injury NOS|Head injury NOS +C0018674|T037|HT|S09.90|ICD10CM|Unspecified injury of head|Unspecified injury of head +C0018674|T037|AB|S09.90|ICD10CM|Unspecified injury of head|Unspecified injury of head +C2832842|T037|AB|S09.90XA|ICD10CM|Unspecified injury of head, initial encounter|Unspecified injury of head, initial encounter +C2832842|T037|PT|S09.90XA|ICD10CM|Unspecified injury of head, initial encounter|Unspecified injury of head, initial encounter +C2832843|T037|AB|S09.90XD|ICD10CM|Unspecified injury of head, subsequent encounter|Unspecified injury of head, subsequent encounter +C2832843|T037|PT|S09.90XD|ICD10CM|Unspecified injury of head, subsequent encounter|Unspecified injury of head, subsequent encounter +C0496161|T046|AB|S09.90XS|ICD10CM|Unspecified injury of head, sequela|Unspecified injury of head, sequela +C0496161|T046|PT|S09.90XS|ICD10CM|Unspecified injury of head, sequela|Unspecified injury of head, sequela +C0272423|T037|ET|S09.91|ICD10CM|Injury of ear NOS|Injury of ear NOS +C2832844|T037|AB|S09.91|ICD10CM|Unspecified injury of ear|Unspecified injury of ear +C2832844|T037|HT|S09.91|ICD10CM|Unspecified injury of ear|Unspecified injury of ear +C2832845|T037|AB|S09.91XA|ICD10CM|Unspecified injury of ear, initial encounter|Unspecified injury of ear, initial encounter +C2832845|T037|PT|S09.91XA|ICD10CM|Unspecified injury of ear, initial encounter|Unspecified injury of ear, initial encounter +C2832846|T037|AB|S09.91XD|ICD10CM|Unspecified injury of ear, subsequent encounter|Unspecified injury of ear, subsequent encounter +C2832846|T037|PT|S09.91XD|ICD10CM|Unspecified injury of ear, subsequent encounter|Unspecified injury of ear, subsequent encounter +C2832847|T037|AB|S09.91XS|ICD10CM|Unspecified injury of ear, sequela|Unspecified injury of ear, sequela +C2832847|T037|PT|S09.91XS|ICD10CM|Unspecified injury of ear, sequela|Unspecified injury of ear, sequela +C0272427|T037|ET|S09.92|ICD10CM|Injury of nose NOS|Injury of nose NOS +C2832848|T037|AB|S09.92|ICD10CM|Unspecified injury of nose|Unspecified injury of nose +C2832848|T037|HT|S09.92|ICD10CM|Unspecified injury of nose|Unspecified injury of nose +C2832849|T037|AB|S09.92XA|ICD10CM|Unspecified injury of nose, initial encounter|Unspecified injury of nose, initial encounter +C2832849|T037|PT|S09.92XA|ICD10CM|Unspecified injury of nose, initial encounter|Unspecified injury of nose, initial encounter +C2832850|T037|AB|S09.92XD|ICD10CM|Unspecified injury of nose, subsequent encounter|Unspecified injury of nose, subsequent encounter +C2832850|T037|PT|S09.92XD|ICD10CM|Unspecified injury of nose, subsequent encounter|Unspecified injury of nose, subsequent encounter +C2832851|T037|AB|S09.92XS|ICD10CM|Unspecified injury of nose, sequela|Unspecified injury of nose, sequela +C2832851|T037|PT|S09.92XS|ICD10CM|Unspecified injury of nose, sequela|Unspecified injury of nose, sequela +C0015459|T037|ET|S09.93|ICD10CM|Injury of face NOS|Injury of face NOS +C2832852|T037|AB|S09.93|ICD10CM|Unspecified injury of face|Unspecified injury of face +C2832852|T037|HT|S09.93|ICD10CM|Unspecified injury of face|Unspecified injury of face +C2832853|T037|PT|S09.93XA|ICD10CM|Unspecified injury of face, initial encounter|Unspecified injury of face, initial encounter +C2832853|T037|AB|S09.93XA|ICD10CM|Unspecified injury of face, initial encounter|Unspecified injury of face, initial encounter +C2832854|T037|PT|S09.93XD|ICD10CM|Unspecified injury of face, subsequent encounter|Unspecified injury of face, subsequent encounter +C2832854|T037|AB|S09.93XD|ICD10CM|Unspecified injury of face, subsequent encounter|Unspecified injury of face, subsequent encounter +C2832855|T037|PT|S09.93XS|ICD10CM|Unspecified injury of face, sequela|Unspecified injury of face, sequela +C2832855|T037|AB|S09.93XS|ICD10CM|Unspecified injury of face, sequela|Unspecified injury of face, sequela +C0347538|T037|HT|S10|ICD10CM|Superficial injury of neck|Superficial injury of neck +C0347538|T037|AB|S10|ICD10CM|Superficial injury of neck|Superficial injury of neck +C0347538|T037|HT|S10|ICD10|Superficial injury of neck|Superficial injury of neck +C4290307|T037|ET|S10-S19|ICD10CM|injuries of nape|injuries of nape +C4290308|T037|ET|S10-S19|ICD10CM|injuries of supraclavicular region|injuries of supraclavicular region +C0272428|T037|ET|S10-S19|ICD10CM|injuries of throat|injuries of throat +C0027531|T037|HT|S10-S19|ICD10CM|Injuries to the neck (S10-S19)|Injuries to the neck (S10-S19) +C0027531|T037|HT|S10-S19.9|ICD10|Injuries to the neck|Injuries to the neck +C1393908|T037|ET|S10.0|ICD10CM|Contusion of cervical esophagus|Contusion of cervical esophagus +C0347593|T037|ET|S10.0|ICD10CM|Contusion of larynx|Contusion of larynx +C0560323|T037|ET|S10.0|ICD10CM|Contusion of pharynx|Contusion of pharynx +C0274216|T037|PT|S10.0|ICD10|Contusion of throat|Contusion of throat +C0274216|T037|HT|S10.0|ICD10CM|Contusion of throat|Contusion of throat +C0274216|T037|AB|S10.0|ICD10CM|Contusion of throat|Contusion of throat +C0433744|T037|ET|S10.0|ICD10CM|Contusion of trachea|Contusion of trachea +C2832858|T037|PT|S10.0XXA|ICD10CM|Contusion of throat, initial encounter|Contusion of throat, initial encounter +C2832858|T037|AB|S10.0XXA|ICD10CM|Contusion of throat, initial encounter|Contusion of throat, initial encounter +C2832859|T037|PT|S10.0XXD|ICD10CM|Contusion of throat, subsequent encounter|Contusion of throat, subsequent encounter +C2832859|T037|AB|S10.0XXD|ICD10CM|Contusion of throat, subsequent encounter|Contusion of throat, subsequent encounter +C2832860|T037|PT|S10.0XXS|ICD10CM|Contusion of throat, sequela|Contusion of throat, sequela +C2832860|T037|AB|S10.0XXS|ICD10CM|Contusion of throat, sequela|Contusion of throat, sequela +C0478217|T037|HT|S10.1|ICD10CM|Other and unspecified superficial injuries of throat|Other and unspecified superficial injuries of throat +C0478217|T037|AB|S10.1|ICD10CM|Other and unspecified superficial injuries of throat|Other and unspecified superficial injuries of throat +C0478217|T037|PT|S10.1|ICD10|Other and unspecified superficial injuries of throat|Other and unspecified superficial injuries of throat +C2832861|T037|AB|S10.10|ICD10CM|Unspecified superficial injuries of throat|Unspecified superficial injuries of throat +C2832861|T037|HT|S10.10|ICD10CM|Unspecified superficial injuries of throat|Unspecified superficial injuries of throat +C2832862|T037|AB|S10.10XA|ICD10CM|Unspecified superficial injuries of throat, init encntr|Unspecified superficial injuries of throat, init encntr +C2832862|T037|PT|S10.10XA|ICD10CM|Unspecified superficial injuries of throat, initial encounter|Unspecified superficial injuries of throat, initial encounter +C2832863|T037|AB|S10.10XD|ICD10CM|Unspecified superficial injuries of throat, subs encntr|Unspecified superficial injuries of throat, subs encntr +C2832863|T037|PT|S10.10XD|ICD10CM|Unspecified superficial injuries of throat, subsequent encounter|Unspecified superficial injuries of throat, subsequent encounter +C2832864|T037|AB|S10.10XS|ICD10CM|Unspecified superficial injuries of throat, sequela|Unspecified superficial injuries of throat, sequela +C2832864|T037|PT|S10.10XS|ICD10CM|Unspecified superficial injuries of throat, sequela|Unspecified superficial injuries of throat, sequela +C0560954|T037|HT|S10.11|ICD10CM|Abrasion of throat|Abrasion of throat +C0560954|T037|AB|S10.11|ICD10CM|Abrasion of throat|Abrasion of throat +C2832865|T037|PT|S10.11XA|ICD10CM|Abrasion of throat, initial encounter|Abrasion of throat, initial encounter +C2832865|T037|AB|S10.11XA|ICD10CM|Abrasion of throat, initial encounter|Abrasion of throat, initial encounter +C2832866|T037|PT|S10.11XD|ICD10CM|Abrasion of throat, subsequent encounter|Abrasion of throat, subsequent encounter +C2832866|T037|AB|S10.11XD|ICD10CM|Abrasion of throat, subsequent encounter|Abrasion of throat, subsequent encounter +C2832867|T037|PT|S10.11XS|ICD10CM|Abrasion of throat, sequela|Abrasion of throat, sequela +C2832867|T037|AB|S10.11XS|ICD10CM|Abrasion of throat, sequela|Abrasion of throat, sequela +C2832868|T037|AB|S10.12|ICD10CM|Blister (nonthermal) of throat|Blister (nonthermal) of throat +C2832868|T037|HT|S10.12|ICD10CM|Blister (nonthermal) of throat|Blister (nonthermal) of throat +C2832869|T037|AB|S10.12XA|ICD10CM|Blister (nonthermal) of throat, initial encounter|Blister (nonthermal) of throat, initial encounter +C2832869|T037|PT|S10.12XA|ICD10CM|Blister (nonthermal) of throat, initial encounter|Blister (nonthermal) of throat, initial encounter +C2832870|T037|AB|S10.12XD|ICD10CM|Blister (nonthermal) of throat, subsequent encounter|Blister (nonthermal) of throat, subsequent encounter +C2832870|T037|PT|S10.12XD|ICD10CM|Blister (nonthermal) of throat, subsequent encounter|Blister (nonthermal) of throat, subsequent encounter +C2832871|T037|AB|S10.12XS|ICD10CM|Blister (nonthermal) of throat, sequela|Blister (nonthermal) of throat, sequela +C2832871|T037|PT|S10.12XS|ICD10CM|Blister (nonthermal) of throat, sequela|Blister (nonthermal) of throat, sequela +C2832872|T037|AB|S10.14|ICD10CM|External constriction of part of throat|External constriction of part of throat +C2832872|T037|HT|S10.14|ICD10CM|External constriction of part of throat|External constriction of part of throat +C2832873|T037|AB|S10.14XA|ICD10CM|External constriction of part of throat, initial encounter|External constriction of part of throat, initial encounter +C2832873|T037|PT|S10.14XA|ICD10CM|External constriction of part of throat, initial encounter|External constriction of part of throat, initial encounter +C2832874|T037|AB|S10.14XD|ICD10CM|External constriction of part of throat, subs encntr|External constriction of part of throat, subs encntr +C2832874|T037|PT|S10.14XD|ICD10CM|External constriction of part of throat, subsequent encounter|External constriction of part of throat, subsequent encounter +C2832875|T037|AB|S10.14XS|ICD10CM|External constriction of part of throat, sequela|External constriction of part of throat, sequela +C2832875|T037|PT|S10.14XS|ICD10CM|External constriction of part of throat, sequela|External constriction of part of throat, sequela +C2018879|T037|ET|S10.15|ICD10CM|Splinter in the throat|Splinter in the throat +C2832876|T037|HT|S10.15|ICD10CM|Superficial foreign body of throat|Superficial foreign body of throat +C2832876|T037|AB|S10.15|ICD10CM|Superficial foreign body of throat|Superficial foreign body of throat +C2832877|T037|AB|S10.15XA|ICD10CM|Superficial foreign body of throat, initial encounter|Superficial foreign body of throat, initial encounter +C2832877|T037|PT|S10.15XA|ICD10CM|Superficial foreign body of throat, initial encounter|Superficial foreign body of throat, initial encounter +C2832878|T037|AB|S10.15XD|ICD10CM|Superficial foreign body of throat, subsequent encounter|Superficial foreign body of throat, subsequent encounter +C2832878|T037|PT|S10.15XD|ICD10CM|Superficial foreign body of throat, subsequent encounter|Superficial foreign body of throat, subsequent encounter +C2832879|T037|AB|S10.15XS|ICD10CM|Superficial foreign body of throat, sequela|Superficial foreign body of throat, sequela +C2832879|T037|PT|S10.15XS|ICD10CM|Superficial foreign body of throat, sequela|Superficial foreign body of throat, sequela +C2231501|T037|AB|S10.16|ICD10CM|Insect bite (nonvenomous) of throat|Insect bite (nonvenomous) of throat +C2231501|T037|HT|S10.16|ICD10CM|Insect bite (nonvenomous) of throat|Insect bite (nonvenomous) of throat +C2832880|T037|AB|S10.16XA|ICD10CM|Insect bite (nonvenomous) of throat, initial encounter|Insect bite (nonvenomous) of throat, initial encounter +C2832880|T037|PT|S10.16XA|ICD10CM|Insect bite (nonvenomous) of throat, initial encounter|Insect bite (nonvenomous) of throat, initial encounter +C2832881|T037|AB|S10.16XD|ICD10CM|Insect bite (nonvenomous) of throat, subsequent encounter|Insect bite (nonvenomous) of throat, subsequent encounter +C2832881|T037|PT|S10.16XD|ICD10CM|Insect bite (nonvenomous) of throat, subsequent encounter|Insect bite (nonvenomous) of throat, subsequent encounter +C2832882|T037|AB|S10.16XS|ICD10CM|Insect bite (nonvenomous) of throat, sequela|Insect bite (nonvenomous) of throat, sequela +C2832882|T037|PT|S10.16XS|ICD10CM|Insect bite (nonvenomous) of throat, sequela|Insect bite (nonvenomous) of throat, sequela +C2832883|T037|AB|S10.17|ICD10CM|Other superficial bite of throat|Other superficial bite of throat +C2832883|T037|HT|S10.17|ICD10CM|Other superficial bite of throat|Other superficial bite of throat +C2832884|T037|AB|S10.17XA|ICD10CM|Other superficial bite of throat, initial encounter|Other superficial bite of throat, initial encounter +C2832884|T037|PT|S10.17XA|ICD10CM|Other superficial bite of throat, initial encounter|Other superficial bite of throat, initial encounter +C2832885|T037|AB|S10.17XD|ICD10CM|Other superficial bite of throat, subsequent encounter|Other superficial bite of throat, subsequent encounter +C2832885|T037|PT|S10.17XD|ICD10CM|Other superficial bite of throat, subsequent encounter|Other superficial bite of throat, subsequent encounter +C2832886|T037|AB|S10.17XS|ICD10CM|Other superficial bite of throat, sequela|Other superficial bite of throat, sequela +C2832886|T037|PT|S10.17XS|ICD10CM|Other superficial bite of throat, sequela|Other superficial bite of throat, sequela +C0451951|T037|PT|S10.7|ICD10|Multiple superficial injuries of neck|Multiple superficial injuries of neck +C0478218|T037|PT|S10.8|ICD10|Superficial injury of other parts of neck|Superficial injury of other parts of neck +C2977741|T037|AB|S10.8|ICD10CM|Superficial injury of other specified parts of neck|Superficial injury of other specified parts of neck +C2977741|T037|HT|S10.8|ICD10CM|Superficial injury of other specified parts of neck|Superficial injury of other specified parts of neck +C2977742|T037|AB|S10.80|ICD10CM|Unspecified superficial injury of oth part of neck|Unspecified superficial injury of oth part of neck +C2977742|T037|HT|S10.80|ICD10CM|Unspecified superficial injury of other specified part of neck|Unspecified superficial injury of other specified part of neck +C2977743|T037|AB|S10.80XA|ICD10CM|Unsp superficial injury of oth part of neck, init encntr|Unsp superficial injury of oth part of neck, init encntr +C2977743|T037|PT|S10.80XA|ICD10CM|Unspecified superficial injury of other specified part of neck, initial encounter|Unspecified superficial injury of other specified part of neck, initial encounter +C2977744|T037|AB|S10.80XD|ICD10CM|Unsp superficial injury of oth part of neck, subs encntr|Unsp superficial injury of oth part of neck, subs encntr +C2977744|T037|PT|S10.80XD|ICD10CM|Unspecified superficial injury of other specified part of neck, subsequent encounter|Unspecified superficial injury of other specified part of neck, subsequent encounter +C2977745|T037|AB|S10.80XS|ICD10CM|Unspecified superficial injury of oth part of neck, sequela|Unspecified superficial injury of oth part of neck, sequela +C2977745|T037|PT|S10.80XS|ICD10CM|Unspecified superficial injury of other specified part of neck, sequela|Unspecified superficial injury of other specified part of neck, sequela +C2832890|T037|AB|S10.81|ICD10CM|Abrasion of other specified part of neck|Abrasion of other specified part of neck +C2832890|T037|HT|S10.81|ICD10CM|Abrasion of other specified part of neck|Abrasion of other specified part of neck +C2977746|T037|AB|S10.81XA|ICD10CM|Abrasion of other specified part of neck, initial encounter|Abrasion of other specified part of neck, initial encounter +C2977746|T037|PT|S10.81XA|ICD10CM|Abrasion of other specified part of neck, initial encounter|Abrasion of other specified part of neck, initial encounter +C2977747|T037|AB|S10.81XD|ICD10CM|Abrasion of other specified part of neck, subs encntr|Abrasion of other specified part of neck, subs encntr +C2977747|T037|PT|S10.81XD|ICD10CM|Abrasion of other specified part of neck, subsequent encounter|Abrasion of other specified part of neck, subsequent encounter +C2977748|T037|PT|S10.81XS|ICD10CM|Abrasion of other specified part of neck, sequela|Abrasion of other specified part of neck, sequela +C2977748|T037|AB|S10.81XS|ICD10CM|Abrasion of other specified part of neck, sequela|Abrasion of other specified part of neck, sequela +C2832894|T037|AB|S10.82|ICD10CM|Blister (nonthermal) of other specified part of neck|Blister (nonthermal) of other specified part of neck +C2832894|T037|HT|S10.82|ICD10CM|Blister (nonthermal) of other specified part of neck|Blister (nonthermal) of other specified part of neck +C2977749|T037|AB|S10.82XA|ICD10CM|Blister (nonthermal) of oth part of neck, init encntr|Blister (nonthermal) of oth part of neck, init encntr +C2977749|T037|PT|S10.82XA|ICD10CM|Blister (nonthermal) of other specified part of neck, initial encounter|Blister (nonthermal) of other specified part of neck, initial encounter +C2977750|T037|AB|S10.82XD|ICD10CM|Blister (nonthermal) of oth part of neck, subs encntr|Blister (nonthermal) of oth part of neck, subs encntr +C2977750|T037|PT|S10.82XD|ICD10CM|Blister (nonthermal) of other specified part of neck, subsequent encounter|Blister (nonthermal) of other specified part of neck, subsequent encounter +C2977751|T037|AB|S10.82XS|ICD10CM|Blister (nonthermal) of oth part of neck, sequela|Blister (nonthermal) of oth part of neck, sequela +C2977751|T037|PT|S10.82XS|ICD10CM|Blister (nonthermal) of other specified part of neck, sequela|Blister (nonthermal) of other specified part of neck, sequela +C2832898|T037|AB|S10.83|ICD10CM|Contusion of other specified part of neck|Contusion of other specified part of neck +C2832898|T037|HT|S10.83|ICD10CM|Contusion of other specified part of neck|Contusion of other specified part of neck +C2977752|T037|AB|S10.83XA|ICD10CM|Contusion of other specified part of neck, initial encounter|Contusion of other specified part of neck, initial encounter +C2977752|T037|PT|S10.83XA|ICD10CM|Contusion of other specified part of neck, initial encounter|Contusion of other specified part of neck, initial encounter +C2977753|T037|AB|S10.83XD|ICD10CM|Contusion of other specified part of neck, subs encntr|Contusion of other specified part of neck, subs encntr +C2977753|T037|PT|S10.83XD|ICD10CM|Contusion of other specified part of neck, subsequent encounter|Contusion of other specified part of neck, subsequent encounter +C2977754|T037|PT|S10.83XS|ICD10CM|Contusion of other specified part of neck, sequela|Contusion of other specified part of neck, sequela +C2977754|T037|AB|S10.83XS|ICD10CM|Contusion of other specified part of neck, sequela|Contusion of other specified part of neck, sequela +C2832902|T037|AB|S10.84|ICD10CM|External constriction of other specified part of neck|External constriction of other specified part of neck +C2832902|T037|HT|S10.84|ICD10CM|External constriction of other specified part of neck|External constriction of other specified part of neck +C2977755|T037|AB|S10.84XA|ICD10CM|External constriction of oth part of neck, init encntr|External constriction of oth part of neck, init encntr +C2977755|T037|PT|S10.84XA|ICD10CM|External constriction of other specified part of neck, initial encounter|External constriction of other specified part of neck, initial encounter +C2977756|T037|AB|S10.84XD|ICD10CM|External constriction of oth part of neck, subs encntr|External constriction of oth part of neck, subs encntr +C2977756|T037|PT|S10.84XD|ICD10CM|External constriction of other specified part of neck, subsequent encounter|External constriction of other specified part of neck, subsequent encounter +C2977757|T037|AB|S10.84XS|ICD10CM|External constriction of oth part of neck, sequela|External constriction of oth part of neck, sequela +C2977757|T037|PT|S10.84XS|ICD10CM|External constriction of other specified part of neck, sequela|External constriction of other specified part of neck, sequela +C2832906|T037|ET|S10.85|ICD10CM|Splinter in other specified part of neck|Splinter in other specified part of neck +C2832907|T037|AB|S10.85|ICD10CM|Superficial foreign body of other specified part of neck|Superficial foreign body of other specified part of neck +C2832907|T037|HT|S10.85|ICD10CM|Superficial foreign body of other specified part of neck|Superficial foreign body of other specified part of neck +C2977758|T037|AB|S10.85XA|ICD10CM|Superficial foreign body of oth part of neck, init encntr|Superficial foreign body of oth part of neck, init encntr +C2977758|T037|PT|S10.85XA|ICD10CM|Superficial foreign body of other specified part of neck, initial encounter|Superficial foreign body of other specified part of neck, initial encounter +C2977759|T037|AB|S10.85XD|ICD10CM|Superficial foreign body of oth part of neck, subs encntr|Superficial foreign body of oth part of neck, subs encntr +C2977759|T037|PT|S10.85XD|ICD10CM|Superficial foreign body of other specified part of neck, subsequent encounter|Superficial foreign body of other specified part of neck, subsequent encounter +C2977760|T037|AB|S10.85XS|ICD10CM|Superficial foreign body of oth part of neck, sequela|Superficial foreign body of oth part of neck, sequela +C2977760|T037|PT|S10.85XS|ICD10CM|Superficial foreign body of other specified part of neck, sequela|Superficial foreign body of other specified part of neck, sequela +C2832911|T037|AB|S10.86|ICD10CM|Insect bite of other specified part of neck|Insect bite of other specified part of neck +C2832911|T037|HT|S10.86|ICD10CM|Insect bite of other specified part of neck|Insect bite of other specified part of neck +C2977761|T037|AB|S10.86XA|ICD10CM|Insect bite of other specified part of neck, init encntr|Insect bite of other specified part of neck, init encntr +C2977761|T037|PT|S10.86XA|ICD10CM|Insect bite of other specified part of neck, initial encounter|Insect bite of other specified part of neck, initial encounter +C2977762|T037|AB|S10.86XD|ICD10CM|Insect bite of other specified part of neck, subs encntr|Insect bite of other specified part of neck, subs encntr +C2977762|T037|PT|S10.86XD|ICD10CM|Insect bite of other specified part of neck, subsequent encounter|Insect bite of other specified part of neck, subsequent encounter +C2977763|T037|PT|S10.86XS|ICD10CM|Insect bite of other specified part of neck, sequela|Insect bite of other specified part of neck, sequela +C2977763|T037|AB|S10.86XS|ICD10CM|Insect bite of other specified part of neck, sequela|Insect bite of other specified part of neck, sequela +C2832915|T037|AB|S10.87|ICD10CM|Other superficial bite of other specified part of neck|Other superficial bite of other specified part of neck +C2832915|T037|HT|S10.87|ICD10CM|Other superficial bite of other specified part of neck|Other superficial bite of other specified part of neck +C2977764|T037|AB|S10.87XA|ICD10CM|Other superficial bite of oth part of neck, init encntr|Other superficial bite of oth part of neck, init encntr +C2977764|T037|PT|S10.87XA|ICD10CM|Other superficial bite of other specified part of neck, initial encounter|Other superficial bite of other specified part of neck, initial encounter +C2977765|T037|AB|S10.87XD|ICD10CM|Other superficial bite of oth part of neck, subs encntr|Other superficial bite of oth part of neck, subs encntr +C2977765|T037|PT|S10.87XD|ICD10CM|Other superficial bite of other specified part of neck, subsequent encounter|Other superficial bite of other specified part of neck, subsequent encounter +C2977766|T037|AB|S10.87XS|ICD10CM|Other superficial bite of oth part of neck, sequela|Other superficial bite of oth part of neck, sequela +C2977766|T037|PT|S10.87XS|ICD10CM|Other superficial bite of other specified part of neck, sequela|Other superficial bite of other specified part of neck, sequela +C0347538|T037|PT|S10.9|ICD10|Superficial injury of neck, part unspecified|Superficial injury of neck, part unspecified +C0347538|T037|AB|S10.9|ICD10CM|Superficial injury of unspecified part of neck|Superficial injury of unspecified part of neck +C0347538|T037|HT|S10.9|ICD10CM|Superficial injury of unspecified part of neck|Superficial injury of unspecified part of neck +C0347538|T037|AB|S10.90|ICD10CM|Unspecified superficial injury of unspecified part of neck|Unspecified superficial injury of unspecified part of neck +C0347538|T037|HT|S10.90|ICD10CM|Unspecified superficial injury of unspecified part of neck|Unspecified superficial injury of unspecified part of neck +C2832919|T037|AB|S10.90XA|ICD10CM|Unsp superficial injury of unsp part of neck, init encntr|Unsp superficial injury of unsp part of neck, init encntr +C2832919|T037|PT|S10.90XA|ICD10CM|Unspecified superficial injury of unspecified part of neck, initial encounter|Unspecified superficial injury of unspecified part of neck, initial encounter +C2832920|T037|AB|S10.90XD|ICD10CM|Unsp superficial injury of unsp part of neck, subs encntr|Unsp superficial injury of unsp part of neck, subs encntr +C2832920|T037|PT|S10.90XD|ICD10CM|Unspecified superficial injury of unspecified part of neck, subsequent encounter|Unspecified superficial injury of unspecified part of neck, subsequent encounter +C2832921|T037|AB|S10.90XS|ICD10CM|Unsp superficial injury of unspecified part of neck, sequela|Unsp superficial injury of unspecified part of neck, sequela +C2832921|T037|PT|S10.90XS|ICD10CM|Unspecified superficial injury of unspecified part of neck, sequela|Unspecified superficial injury of unspecified part of neck, sequela +C2832922|T037|AB|S10.91|ICD10CM|Abrasion of unspecified part of neck|Abrasion of unspecified part of neck +C2832922|T037|HT|S10.91|ICD10CM|Abrasion of unspecified part of neck|Abrasion of unspecified part of neck +C2832923|T037|PT|S10.91XA|ICD10CM|Abrasion of unspecified part of neck, initial encounter|Abrasion of unspecified part of neck, initial encounter +C2832923|T037|AB|S10.91XA|ICD10CM|Abrasion of unspecified part of neck, initial encounter|Abrasion of unspecified part of neck, initial encounter +C2832924|T037|PT|S10.91XD|ICD10CM|Abrasion of unspecified part of neck, subsequent encounter|Abrasion of unspecified part of neck, subsequent encounter +C2832924|T037|AB|S10.91XD|ICD10CM|Abrasion of unspecified part of neck, subsequent encounter|Abrasion of unspecified part of neck, subsequent encounter +C2832925|T037|PT|S10.91XS|ICD10CM|Abrasion of unspecified part of neck, sequela|Abrasion of unspecified part of neck, sequela +C2832925|T037|AB|S10.91XS|ICD10CM|Abrasion of unspecified part of neck, sequela|Abrasion of unspecified part of neck, sequela +C2832926|T037|AB|S10.92|ICD10CM|Blister (nonthermal) of unspecified part of neck|Blister (nonthermal) of unspecified part of neck +C2832926|T037|HT|S10.92|ICD10CM|Blister (nonthermal) of unspecified part of neck|Blister (nonthermal) of unspecified part of neck +C2832927|T037|AB|S10.92XA|ICD10CM|Blister (nonthermal) of unsp part of neck, init encntr|Blister (nonthermal) of unsp part of neck, init encntr +C2832927|T037|PT|S10.92XA|ICD10CM|Blister (nonthermal) of unspecified part of neck, initial encounter|Blister (nonthermal) of unspecified part of neck, initial encounter +C2832928|T037|AB|S10.92XD|ICD10CM|Blister (nonthermal) of unsp part of neck, subs encntr|Blister (nonthermal) of unsp part of neck, subs encntr +C2832928|T037|PT|S10.92XD|ICD10CM|Blister (nonthermal) of unspecified part of neck, subsequent encounter|Blister (nonthermal) of unspecified part of neck, subsequent encounter +C2832929|T037|AB|S10.92XS|ICD10CM|Blister (nonthermal) of unspecified part of neck, sequela|Blister (nonthermal) of unspecified part of neck, sequela +C2832929|T037|PT|S10.92XS|ICD10CM|Blister (nonthermal) of unspecified part of neck, sequela|Blister (nonthermal) of unspecified part of neck, sequela +C2832930|T037|AB|S10.93|ICD10CM|Contusion of unspecified part of neck|Contusion of unspecified part of neck +C2832930|T037|HT|S10.93|ICD10CM|Contusion of unspecified part of neck|Contusion of unspecified part of neck +C2832931|T037|PT|S10.93XA|ICD10CM|Contusion of unspecified part of neck, initial encounter|Contusion of unspecified part of neck, initial encounter +C2832931|T037|AB|S10.93XA|ICD10CM|Contusion of unspecified part of neck, initial encounter|Contusion of unspecified part of neck, initial encounter +C2832932|T037|PT|S10.93XD|ICD10CM|Contusion of unspecified part of neck, subsequent encounter|Contusion of unspecified part of neck, subsequent encounter +C2832932|T037|AB|S10.93XD|ICD10CM|Contusion of unspecified part of neck, subsequent encounter|Contusion of unspecified part of neck, subsequent encounter +C2832933|T037|PT|S10.93XS|ICD10CM|Contusion of unspecified part of neck, sequela|Contusion of unspecified part of neck, sequela +C2832933|T037|AB|S10.93XS|ICD10CM|Contusion of unspecified part of neck, sequela|Contusion of unspecified part of neck, sequela +C2832934|T037|AB|S10.94|ICD10CM|External constriction of unspecified part of neck|External constriction of unspecified part of neck +C2832934|T037|HT|S10.94|ICD10CM|External constriction of unspecified part of neck|External constriction of unspecified part of neck +C2832935|T037|AB|S10.94XA|ICD10CM|External constriction of unsp part of neck, init encntr|External constriction of unsp part of neck, init encntr +C2832935|T037|PT|S10.94XA|ICD10CM|External constriction of unspecified part of neck, initial encounter|External constriction of unspecified part of neck, initial encounter +C2832936|T037|AB|S10.94XD|ICD10CM|External constriction of unsp part of neck, subs encntr|External constriction of unsp part of neck, subs encntr +C2832936|T037|PT|S10.94XD|ICD10CM|External constriction of unspecified part of neck, subsequent encounter|External constriction of unspecified part of neck, subsequent encounter +C2832937|T037|AB|S10.94XS|ICD10CM|External constriction of unspecified part of neck, sequela|External constriction of unspecified part of neck, sequela +C2832937|T037|PT|S10.94XS|ICD10CM|External constriction of unspecified part of neck, sequela|External constriction of unspecified part of neck, sequela +C2832938|T037|AB|S10.95|ICD10CM|Superficial foreign body of unspecified part of neck|Superficial foreign body of unspecified part of neck +C2832938|T037|HT|S10.95|ICD10CM|Superficial foreign body of unspecified part of neck|Superficial foreign body of unspecified part of neck +C2832939|T037|AB|S10.95XA|ICD10CM|Superficial foreign body of unsp part of neck, init encntr|Superficial foreign body of unsp part of neck, init encntr +C2832939|T037|PT|S10.95XA|ICD10CM|Superficial foreign body of unspecified part of neck, initial encounter|Superficial foreign body of unspecified part of neck, initial encounter +C2832940|T037|AB|S10.95XD|ICD10CM|Superficial foreign body of unsp part of neck, subs encntr|Superficial foreign body of unsp part of neck, subs encntr +C2832940|T037|PT|S10.95XD|ICD10CM|Superficial foreign body of unspecified part of neck, subsequent encounter|Superficial foreign body of unspecified part of neck, subsequent encounter +C2832941|T037|AB|S10.95XS|ICD10CM|Superficial foreign body of unsp part of neck, sequela|Superficial foreign body of unsp part of neck, sequela +C2832941|T037|PT|S10.95XS|ICD10CM|Superficial foreign body of unspecified part of neck, sequela|Superficial foreign body of unspecified part of neck, sequela +C2832942|T037|AB|S10.96|ICD10CM|Insect bite of unspecified part of neck|Insect bite of unspecified part of neck +C2832942|T037|HT|S10.96|ICD10CM|Insect bite of unspecified part of neck|Insect bite of unspecified part of neck +C2832943|T037|PT|S10.96XA|ICD10CM|Insect bite of unspecified part of neck, initial encounter|Insect bite of unspecified part of neck, initial encounter +C2832943|T037|AB|S10.96XA|ICD10CM|Insect bite of unspecified part of neck, initial encounter|Insect bite of unspecified part of neck, initial encounter +C2832944|T037|AB|S10.96XD|ICD10CM|Insect bite of unspecified part of neck, subs encntr|Insect bite of unspecified part of neck, subs encntr +C2832944|T037|PT|S10.96XD|ICD10CM|Insect bite of unspecified part of neck, subsequent encounter|Insect bite of unspecified part of neck, subsequent encounter +C2832945|T037|PT|S10.96XS|ICD10CM|Insect bite of unspecified part of neck, sequela|Insect bite of unspecified part of neck, sequela +C2832945|T037|AB|S10.96XS|ICD10CM|Insect bite of unspecified part of neck, sequela|Insect bite of unspecified part of neck, sequela +C2832946|T037|AB|S10.97|ICD10CM|Other superficial bite of unspecified part of neck|Other superficial bite of unspecified part of neck +C2832946|T037|HT|S10.97|ICD10CM|Other superficial bite of unspecified part of neck|Other superficial bite of unspecified part of neck +C2832947|T037|AB|S10.97XA|ICD10CM|Other superficial bite of unsp part of neck, init encntr|Other superficial bite of unsp part of neck, init encntr +C2832947|T037|PT|S10.97XA|ICD10CM|Other superficial bite of unspecified part of neck, initial encounter|Other superficial bite of unspecified part of neck, initial encounter +C2832948|T037|AB|S10.97XD|ICD10CM|Other superficial bite of unsp part of neck, subs encntr|Other superficial bite of unsp part of neck, subs encntr +C2832948|T037|PT|S10.97XD|ICD10CM|Other superficial bite of unspecified part of neck, subsequent encounter|Other superficial bite of unspecified part of neck, subsequent encounter +C2832949|T037|AB|S10.97XS|ICD10CM|Other superficial bite of unspecified part of neck, sequela|Other superficial bite of unspecified part of neck, sequela +C2832949|T037|PT|S10.97XS|ICD10CM|Other superficial bite of unspecified part of neck, sequela|Other superficial bite of unspecified part of neck, sequela +C0160538|T037|HT|S11|ICD10|Open wound of neck|Open wound of neck +C0160538|T037|HT|S11|ICD10CM|Open wound of neck|Open wound of neck +C0160538|T037|AB|S11|ICD10CM|Open wound of neck|Open wound of neck +C0160540|T037|PT|S11.0|ICD10|Open wound involving larynx and trachea|Open wound involving larynx and trachea +C0160540|T037|HT|S11.0|ICD10CM|Open wound of larynx and trachea|Open wound of larynx and trachea +C0160540|T037|AB|S11.0|ICD10CM|Open wound of larynx and trachea|Open wound of larynx and trachea +C0160541|T037|HT|S11.01|ICD10CM|Open wound of larynx|Open wound of larynx +C0160541|T037|AB|S11.01|ICD10CM|Open wound of larynx|Open wound of larynx +C2832950|T037|AB|S11.011|ICD10CM|Laceration without foreign body of larynx|Laceration without foreign body of larynx +C2832950|T037|HT|S11.011|ICD10CM|Laceration without foreign body of larynx|Laceration without foreign body of larynx +C2832951|T037|AB|S11.011A|ICD10CM|Laceration without foreign body of larynx, initial encounter|Laceration without foreign body of larynx, initial encounter +C2832951|T037|PT|S11.011A|ICD10CM|Laceration without foreign body of larynx, initial encounter|Laceration without foreign body of larynx, initial encounter +C2832952|T037|AB|S11.011D|ICD10CM|Laceration without foreign body of larynx, subs encntr|Laceration without foreign body of larynx, subs encntr +C2832952|T037|PT|S11.011D|ICD10CM|Laceration without foreign body of larynx, subsequent encounter|Laceration without foreign body of larynx, subsequent encounter +C2832953|T037|AB|S11.011S|ICD10CM|Laceration without foreign body of larynx, sequela|Laceration without foreign body of larynx, sequela +C2832953|T037|PT|S11.011S|ICD10CM|Laceration without foreign body of larynx, sequela|Laceration without foreign body of larynx, sequela +C2832954|T037|AB|S11.012|ICD10CM|Laceration with foreign body of larynx|Laceration with foreign body of larynx +C2832954|T037|HT|S11.012|ICD10CM|Laceration with foreign body of larynx|Laceration with foreign body of larynx +C2832955|T037|AB|S11.012A|ICD10CM|Laceration with foreign body of larynx, initial encounter|Laceration with foreign body of larynx, initial encounter +C2832955|T037|PT|S11.012A|ICD10CM|Laceration with foreign body of larynx, initial encounter|Laceration with foreign body of larynx, initial encounter +C2832956|T037|AB|S11.012D|ICD10CM|Laceration with foreign body of larynx, subsequent encounter|Laceration with foreign body of larynx, subsequent encounter +C2832956|T037|PT|S11.012D|ICD10CM|Laceration with foreign body of larynx, subsequent encounter|Laceration with foreign body of larynx, subsequent encounter +C2832957|T037|AB|S11.012S|ICD10CM|Laceration with foreign body of larynx, sequela|Laceration with foreign body of larynx, sequela +C2832957|T037|PT|S11.012S|ICD10CM|Laceration with foreign body of larynx, sequela|Laceration with foreign body of larynx, sequela +C2832958|T037|AB|S11.013|ICD10CM|Puncture wound without foreign body of larynx|Puncture wound without foreign body of larynx +C2832958|T037|HT|S11.013|ICD10CM|Puncture wound without foreign body of larynx|Puncture wound without foreign body of larynx +C2832959|T037|AB|S11.013A|ICD10CM|Puncture wound without foreign body of larynx, init encntr|Puncture wound without foreign body of larynx, init encntr +C2832959|T037|PT|S11.013A|ICD10CM|Puncture wound without foreign body of larynx, initial encounter|Puncture wound without foreign body of larynx, initial encounter +C2832960|T037|AB|S11.013D|ICD10CM|Puncture wound without foreign body of larynx, subs encntr|Puncture wound without foreign body of larynx, subs encntr +C2832960|T037|PT|S11.013D|ICD10CM|Puncture wound without foreign body of larynx, subsequent encounter|Puncture wound without foreign body of larynx, subsequent encounter +C2832961|T037|AB|S11.013S|ICD10CM|Puncture wound without foreign body of larynx, sequela|Puncture wound without foreign body of larynx, sequela +C2832961|T037|PT|S11.013S|ICD10CM|Puncture wound without foreign body of larynx, sequela|Puncture wound without foreign body of larynx, sequela +C2832962|T037|AB|S11.014|ICD10CM|Puncture wound with foreign body of larynx|Puncture wound with foreign body of larynx +C2832962|T037|HT|S11.014|ICD10CM|Puncture wound with foreign body of larynx|Puncture wound with foreign body of larynx +C2832963|T037|AB|S11.014A|ICD10CM|Puncture wound with foreign body of larynx, init encntr|Puncture wound with foreign body of larynx, init encntr +C2832963|T037|PT|S11.014A|ICD10CM|Puncture wound with foreign body of larynx, initial encounter|Puncture wound with foreign body of larynx, initial encounter +C2832964|T037|AB|S11.014D|ICD10CM|Puncture wound with foreign body of larynx, subs encntr|Puncture wound with foreign body of larynx, subs encntr +C2832964|T037|PT|S11.014D|ICD10CM|Puncture wound with foreign body of larynx, subsequent encounter|Puncture wound with foreign body of larynx, subsequent encounter +C2832965|T037|AB|S11.014S|ICD10CM|Puncture wound with foreign body of larynx, sequela|Puncture wound with foreign body of larynx, sequela +C2832965|T037|PT|S11.014S|ICD10CM|Puncture wound with foreign body of larynx, sequela|Puncture wound with foreign body of larynx, sequela +C2832966|T037|ET|S11.015|ICD10CM|Bite of larynx NOS|Bite of larynx NOS +C2832967|T037|HT|S11.015|ICD10CM|Open bite of larynx|Open bite of larynx +C2832967|T037|AB|S11.015|ICD10CM|Open bite of larynx|Open bite of larynx +C2832968|T037|AB|S11.015A|ICD10CM|Open bite of larynx, initial encounter|Open bite of larynx, initial encounter +C2832968|T037|PT|S11.015A|ICD10CM|Open bite of larynx, initial encounter|Open bite of larynx, initial encounter +C2832969|T037|AB|S11.015D|ICD10CM|Open bite of larynx, subsequent encounter|Open bite of larynx, subsequent encounter +C2832969|T037|PT|S11.015D|ICD10CM|Open bite of larynx, subsequent encounter|Open bite of larynx, subsequent encounter +C2832970|T037|AB|S11.015S|ICD10CM|Open bite of larynx, sequela|Open bite of larynx, sequela +C2832970|T037|PT|S11.015S|ICD10CM|Open bite of larynx, sequela|Open bite of larynx, sequela +C2832971|T037|AB|S11.019|ICD10CM|Unspecified open wound of larynx|Unspecified open wound of larynx +C2832971|T037|HT|S11.019|ICD10CM|Unspecified open wound of larynx|Unspecified open wound of larynx +C2832972|T037|AB|S11.019A|ICD10CM|Unspecified open wound of larynx, initial encounter|Unspecified open wound of larynx, initial encounter +C2832972|T037|PT|S11.019A|ICD10CM|Unspecified open wound of larynx, initial encounter|Unspecified open wound of larynx, initial encounter +C2832973|T037|AB|S11.019D|ICD10CM|Unspecified open wound of larynx, subsequent encounter|Unspecified open wound of larynx, subsequent encounter +C2832973|T037|PT|S11.019D|ICD10CM|Unspecified open wound of larynx, subsequent encounter|Unspecified open wound of larynx, subsequent encounter +C2832974|T037|AB|S11.019S|ICD10CM|Unspecified open wound of larynx, sequela|Unspecified open wound of larynx, sequela +C2832974|T037|PT|S11.019S|ICD10CM|Unspecified open wound of larynx, sequela|Unspecified open wound of larynx, sequela +C2832975|T037|ET|S11.02|ICD10CM|Open wound of cervical trachea|Open wound of cervical trachea +C0160542|T037|HT|S11.02|ICD10CM|Open wound of trachea|Open wound of trachea +C0160542|T037|AB|S11.02|ICD10CM|Open wound of trachea|Open wound of trachea +C0160542|T037|ET|S11.02|ICD10CM|Open wound of trachea NOS|Open wound of trachea NOS +C2832976|T037|AB|S11.021|ICD10CM|Laceration without foreign body of trachea|Laceration without foreign body of trachea +C2832976|T037|HT|S11.021|ICD10CM|Laceration without foreign body of trachea|Laceration without foreign body of trachea +C2832977|T037|AB|S11.021A|ICD10CM|Laceration without foreign body of trachea, init encntr|Laceration without foreign body of trachea, init encntr +C2832977|T037|PT|S11.021A|ICD10CM|Laceration without foreign body of trachea, initial encounter|Laceration without foreign body of trachea, initial encounter +C2832978|T037|AB|S11.021D|ICD10CM|Laceration without foreign body of trachea, subs encntr|Laceration without foreign body of trachea, subs encntr +C2832978|T037|PT|S11.021D|ICD10CM|Laceration without foreign body of trachea, subsequent encounter|Laceration without foreign body of trachea, subsequent encounter +C2832979|T037|AB|S11.021S|ICD10CM|Laceration without foreign body of trachea, sequela|Laceration without foreign body of trachea, sequela +C2832979|T037|PT|S11.021S|ICD10CM|Laceration without foreign body of trachea, sequela|Laceration without foreign body of trachea, sequela +C2832980|T037|AB|S11.022|ICD10CM|Laceration with foreign body of trachea|Laceration with foreign body of trachea +C2832980|T037|HT|S11.022|ICD10CM|Laceration with foreign body of trachea|Laceration with foreign body of trachea +C2832981|T037|AB|S11.022A|ICD10CM|Laceration with foreign body of trachea, initial encounter|Laceration with foreign body of trachea, initial encounter +C2832981|T037|PT|S11.022A|ICD10CM|Laceration with foreign body of trachea, initial encounter|Laceration with foreign body of trachea, initial encounter +C2832982|T037|AB|S11.022D|ICD10CM|Laceration with foreign body of trachea, subs encntr|Laceration with foreign body of trachea, subs encntr +C2832982|T037|PT|S11.022D|ICD10CM|Laceration with foreign body of trachea, subsequent encounter|Laceration with foreign body of trachea, subsequent encounter +C2832983|T037|AB|S11.022S|ICD10CM|Laceration with foreign body of trachea, sequela|Laceration with foreign body of trachea, sequela +C2832983|T037|PT|S11.022S|ICD10CM|Laceration with foreign body of trachea, sequela|Laceration with foreign body of trachea, sequela +C2832984|T037|AB|S11.023|ICD10CM|Puncture wound without foreign body of trachea|Puncture wound without foreign body of trachea +C2832984|T037|HT|S11.023|ICD10CM|Puncture wound without foreign body of trachea|Puncture wound without foreign body of trachea +C2832985|T037|AB|S11.023A|ICD10CM|Puncture wound without foreign body of trachea, init encntr|Puncture wound without foreign body of trachea, init encntr +C2832985|T037|PT|S11.023A|ICD10CM|Puncture wound without foreign body of trachea, initial encounter|Puncture wound without foreign body of trachea, initial encounter +C2832986|T037|AB|S11.023D|ICD10CM|Puncture wound without foreign body of trachea, subs encntr|Puncture wound without foreign body of trachea, subs encntr +C2832986|T037|PT|S11.023D|ICD10CM|Puncture wound without foreign body of trachea, subsequent encounter|Puncture wound without foreign body of trachea, subsequent encounter +C2832987|T037|AB|S11.023S|ICD10CM|Puncture wound without foreign body of trachea, sequela|Puncture wound without foreign body of trachea, sequela +C2832987|T037|PT|S11.023S|ICD10CM|Puncture wound without foreign body of trachea, sequela|Puncture wound without foreign body of trachea, sequela +C2832988|T037|AB|S11.024|ICD10CM|Puncture wound with foreign body of trachea|Puncture wound with foreign body of trachea +C2832988|T037|HT|S11.024|ICD10CM|Puncture wound with foreign body of trachea|Puncture wound with foreign body of trachea +C2832989|T037|AB|S11.024A|ICD10CM|Puncture wound with foreign body of trachea, init encntr|Puncture wound with foreign body of trachea, init encntr +C2832989|T037|PT|S11.024A|ICD10CM|Puncture wound with foreign body of trachea, initial encounter|Puncture wound with foreign body of trachea, initial encounter +C2832990|T037|AB|S11.024D|ICD10CM|Puncture wound with foreign body of trachea, subs encntr|Puncture wound with foreign body of trachea, subs encntr +C2832990|T037|PT|S11.024D|ICD10CM|Puncture wound with foreign body of trachea, subsequent encounter|Puncture wound with foreign body of trachea, subsequent encounter +C2832991|T037|AB|S11.024S|ICD10CM|Puncture wound with foreign body of trachea, sequela|Puncture wound with foreign body of trachea, sequela +C2832991|T037|PT|S11.024S|ICD10CM|Puncture wound with foreign body of trachea, sequela|Puncture wound with foreign body of trachea, sequela +C2832992|T037|ET|S11.025|ICD10CM|Bite of trachea NOS|Bite of trachea NOS +C2832993|T037|HT|S11.025|ICD10CM|Open bite of trachea|Open bite of trachea +C2832993|T037|AB|S11.025|ICD10CM|Open bite of trachea|Open bite of trachea +C2832994|T037|AB|S11.025A|ICD10CM|Open bite of trachea, initial encounter|Open bite of trachea, initial encounter +C2832994|T037|PT|S11.025A|ICD10CM|Open bite of trachea, initial encounter|Open bite of trachea, initial encounter +C2832995|T037|AB|S11.025D|ICD10CM|Open bite of trachea, subsequent encounter|Open bite of trachea, subsequent encounter +C2832995|T037|PT|S11.025D|ICD10CM|Open bite of trachea, subsequent encounter|Open bite of trachea, subsequent encounter +C2832996|T037|AB|S11.025S|ICD10CM|Open bite of trachea, sequela|Open bite of trachea, sequela +C2832996|T037|PT|S11.025S|ICD10CM|Open bite of trachea, sequela|Open bite of trachea, sequela +C2832997|T037|AB|S11.029|ICD10CM|Unspecified open wound of trachea|Unspecified open wound of trachea +C2832997|T037|HT|S11.029|ICD10CM|Unspecified open wound of trachea|Unspecified open wound of trachea +C2832998|T037|AB|S11.029A|ICD10CM|Unspecified open wound of trachea, initial encounter|Unspecified open wound of trachea, initial encounter +C2832998|T037|PT|S11.029A|ICD10CM|Unspecified open wound of trachea, initial encounter|Unspecified open wound of trachea, initial encounter +C2832999|T037|AB|S11.029D|ICD10CM|Unspecified open wound of trachea, subsequent encounter|Unspecified open wound of trachea, subsequent encounter +C2832999|T037|PT|S11.029D|ICD10CM|Unspecified open wound of trachea, subsequent encounter|Unspecified open wound of trachea, subsequent encounter +C2833000|T037|AB|S11.029S|ICD10CM|Unspecified open wound of trachea, sequela|Unspecified open wound of trachea, sequela +C2833000|T037|PT|S11.029S|ICD10CM|Unspecified open wound of trachea, sequela|Unspecified open wound of trachea, sequela +C3508582|T037|HT|S11.03|ICD10CM|Open wound of vocal cord|Open wound of vocal cord +C3508582|T037|AB|S11.03|ICD10CM|Open wound of vocal cord|Open wound of vocal cord +C2833002|T037|AB|S11.031|ICD10CM|Laceration without foreign body of vocal cord|Laceration without foreign body of vocal cord +C2833002|T037|HT|S11.031|ICD10CM|Laceration without foreign body of vocal cord|Laceration without foreign body of vocal cord +C2833003|T037|AB|S11.031A|ICD10CM|Laceration without foreign body of vocal cord, init encntr|Laceration without foreign body of vocal cord, init encntr +C2833003|T037|PT|S11.031A|ICD10CM|Laceration without foreign body of vocal cord, initial encounter|Laceration without foreign body of vocal cord, initial encounter +C2833004|T037|AB|S11.031D|ICD10CM|Laceration without foreign body of vocal cord, subs encntr|Laceration without foreign body of vocal cord, subs encntr +C2833004|T037|PT|S11.031D|ICD10CM|Laceration without foreign body of vocal cord, subsequent encounter|Laceration without foreign body of vocal cord, subsequent encounter +C2833005|T037|AB|S11.031S|ICD10CM|Laceration without foreign body of vocal cord, sequela|Laceration without foreign body of vocal cord, sequela +C2833005|T037|PT|S11.031S|ICD10CM|Laceration without foreign body of vocal cord, sequela|Laceration without foreign body of vocal cord, sequela +C2833006|T037|AB|S11.032|ICD10CM|Laceration with foreign body of vocal cord|Laceration with foreign body of vocal cord +C2833006|T037|HT|S11.032|ICD10CM|Laceration with foreign body of vocal cord|Laceration with foreign body of vocal cord +C2833007|T037|AB|S11.032A|ICD10CM|Laceration with foreign body of vocal cord, init encntr|Laceration with foreign body of vocal cord, init encntr +C2833007|T037|PT|S11.032A|ICD10CM|Laceration with foreign body of vocal cord, initial encounter|Laceration with foreign body of vocal cord, initial encounter +C2833008|T037|AB|S11.032D|ICD10CM|Laceration with foreign body of vocal cord, subs encntr|Laceration with foreign body of vocal cord, subs encntr +C2833008|T037|PT|S11.032D|ICD10CM|Laceration with foreign body of vocal cord, subsequent encounter|Laceration with foreign body of vocal cord, subsequent encounter +C2833009|T037|AB|S11.032S|ICD10CM|Laceration with foreign body of vocal cord, sequela|Laceration with foreign body of vocal cord, sequela +C2833009|T037|PT|S11.032S|ICD10CM|Laceration with foreign body of vocal cord, sequela|Laceration with foreign body of vocal cord, sequela +C2833010|T037|AB|S11.033|ICD10CM|Puncture wound without foreign body of vocal cord|Puncture wound without foreign body of vocal cord +C2833010|T037|HT|S11.033|ICD10CM|Puncture wound without foreign body of vocal cord|Puncture wound without foreign body of vocal cord +C2833011|T037|AB|S11.033A|ICD10CM|Puncture wound w/o foreign body of vocal cord, init encntr|Puncture wound w/o foreign body of vocal cord, init encntr +C2833011|T037|PT|S11.033A|ICD10CM|Puncture wound without foreign body of vocal cord, initial encounter|Puncture wound without foreign body of vocal cord, initial encounter +C2833012|T037|AB|S11.033D|ICD10CM|Puncture wound w/o foreign body of vocal cord, subs encntr|Puncture wound w/o foreign body of vocal cord, subs encntr +C2833012|T037|PT|S11.033D|ICD10CM|Puncture wound without foreign body of vocal cord, subsequent encounter|Puncture wound without foreign body of vocal cord, subsequent encounter +C2833013|T037|AB|S11.033S|ICD10CM|Puncture wound without foreign body of vocal cord, sequela|Puncture wound without foreign body of vocal cord, sequela +C2833013|T037|PT|S11.033S|ICD10CM|Puncture wound without foreign body of vocal cord, sequela|Puncture wound without foreign body of vocal cord, sequela +C2833014|T037|AB|S11.034|ICD10CM|Puncture wound with foreign body of vocal cord|Puncture wound with foreign body of vocal cord +C2833014|T037|HT|S11.034|ICD10CM|Puncture wound with foreign body of vocal cord|Puncture wound with foreign body of vocal cord +C2833015|T037|AB|S11.034A|ICD10CM|Puncture wound with foreign body of vocal cord, init encntr|Puncture wound with foreign body of vocal cord, init encntr +C2833015|T037|PT|S11.034A|ICD10CM|Puncture wound with foreign body of vocal cord, initial encounter|Puncture wound with foreign body of vocal cord, initial encounter +C2833016|T037|AB|S11.034D|ICD10CM|Puncture wound with foreign body of vocal cord, subs encntr|Puncture wound with foreign body of vocal cord, subs encntr +C2833016|T037|PT|S11.034D|ICD10CM|Puncture wound with foreign body of vocal cord, subsequent encounter|Puncture wound with foreign body of vocal cord, subsequent encounter +C2833017|T037|AB|S11.034S|ICD10CM|Puncture wound with foreign body of vocal cord, sequela|Puncture wound with foreign body of vocal cord, sequela +C2833017|T037|PT|S11.034S|ICD10CM|Puncture wound with foreign body of vocal cord, sequela|Puncture wound with foreign body of vocal cord, sequela +C2833018|T037|ET|S11.035|ICD10CM|Bite of vocal cord NOS|Bite of vocal cord NOS +C2833019|T037|HT|S11.035|ICD10CM|Open bite of vocal cord|Open bite of vocal cord +C2833019|T037|AB|S11.035|ICD10CM|Open bite of vocal cord|Open bite of vocal cord +C2833020|T037|AB|S11.035A|ICD10CM|Open bite of vocal cord, initial encounter|Open bite of vocal cord, initial encounter +C2833020|T037|PT|S11.035A|ICD10CM|Open bite of vocal cord, initial encounter|Open bite of vocal cord, initial encounter +C2833021|T037|AB|S11.035D|ICD10CM|Open bite of vocal cord, subsequent encounter|Open bite of vocal cord, subsequent encounter +C2833021|T037|PT|S11.035D|ICD10CM|Open bite of vocal cord, subsequent encounter|Open bite of vocal cord, subsequent encounter +C2833022|T037|AB|S11.035S|ICD10CM|Open bite of vocal cord, sequela|Open bite of vocal cord, sequela +C2833022|T037|PT|S11.035S|ICD10CM|Open bite of vocal cord, sequela|Open bite of vocal cord, sequela +C2833023|T037|AB|S11.039|ICD10CM|Unspecified open wound of vocal cord|Unspecified open wound of vocal cord +C2833023|T037|HT|S11.039|ICD10CM|Unspecified open wound of vocal cord|Unspecified open wound of vocal cord +C2833024|T037|AB|S11.039A|ICD10CM|Unspecified open wound of vocal cord, initial encounter|Unspecified open wound of vocal cord, initial encounter +C2833024|T037|PT|S11.039A|ICD10CM|Unspecified open wound of vocal cord, initial encounter|Unspecified open wound of vocal cord, initial encounter +C2833025|T037|AB|S11.039D|ICD10CM|Unspecified open wound of vocal cord, subsequent encounter|Unspecified open wound of vocal cord, subsequent encounter +C2833025|T037|PT|S11.039D|ICD10CM|Unspecified open wound of vocal cord, subsequent encounter|Unspecified open wound of vocal cord, subsequent encounter +C2833026|T037|AB|S11.039S|ICD10CM|Unspecified open wound of vocal cord, sequela|Unspecified open wound of vocal cord, sequela +C2833026|T037|PT|S11.039S|ICD10CM|Unspecified open wound of vocal cord, sequela|Unspecified open wound of vocal cord, sequela +C0495814|T037|PT|S11.1|ICD10|Open wound involving thyroid gland|Open wound involving thyroid gland +C0580010|T037|AB|S11.1|ICD10CM|Open wound of thyroid gland|Open wound of thyroid gland +C0580010|T037|HT|S11.1|ICD10CM|Open wound of thyroid gland|Open wound of thyroid gland +C2833027|T037|AB|S11.10|ICD10CM|Unspecified open wound of thyroid gland|Unspecified open wound of thyroid gland +C2833027|T037|HT|S11.10|ICD10CM|Unspecified open wound of thyroid gland|Unspecified open wound of thyroid gland +C2833028|T037|AB|S11.10XA|ICD10CM|Unspecified open wound of thyroid gland, initial encounter|Unspecified open wound of thyroid gland, initial encounter +C2833028|T037|PT|S11.10XA|ICD10CM|Unspecified open wound of thyroid gland, initial encounter|Unspecified open wound of thyroid gland, initial encounter +C2833029|T037|AB|S11.10XD|ICD10CM|Unspecified open wound of thyroid gland, subs encntr|Unspecified open wound of thyroid gland, subs encntr +C2833029|T037|PT|S11.10XD|ICD10CM|Unspecified open wound of thyroid gland, subsequent encounter|Unspecified open wound of thyroid gland, subsequent encounter +C2833030|T037|AB|S11.10XS|ICD10CM|Unspecified open wound of thyroid gland, sequela|Unspecified open wound of thyroid gland, sequela +C2833030|T037|PT|S11.10XS|ICD10CM|Unspecified open wound of thyroid gland, sequela|Unspecified open wound of thyroid gland, sequela +C2833031|T037|AB|S11.11|ICD10CM|Laceration without foreign body of thyroid gland|Laceration without foreign body of thyroid gland +C2833031|T037|HT|S11.11|ICD10CM|Laceration without foreign body of thyroid gland|Laceration without foreign body of thyroid gland +C2833032|T037|AB|S11.11XA|ICD10CM|Laceration w/o foreign body of thyroid gland, init encntr|Laceration w/o foreign body of thyroid gland, init encntr +C2833032|T037|PT|S11.11XA|ICD10CM|Laceration without foreign body of thyroid gland, initial encounter|Laceration without foreign body of thyroid gland, initial encounter +C2833033|T037|AB|S11.11XD|ICD10CM|Laceration w/o foreign body of thyroid gland, subs encntr|Laceration w/o foreign body of thyroid gland, subs encntr +C2833033|T037|PT|S11.11XD|ICD10CM|Laceration without foreign body of thyroid gland, subsequent encounter|Laceration without foreign body of thyroid gland, subsequent encounter +C2833034|T037|AB|S11.11XS|ICD10CM|Laceration without foreign body of thyroid gland, sequela|Laceration without foreign body of thyroid gland, sequela +C2833034|T037|PT|S11.11XS|ICD10CM|Laceration without foreign body of thyroid gland, sequela|Laceration without foreign body of thyroid gland, sequela +C2833035|T037|AB|S11.12|ICD10CM|Laceration with foreign body of thyroid gland|Laceration with foreign body of thyroid gland +C2833035|T037|HT|S11.12|ICD10CM|Laceration with foreign body of thyroid gland|Laceration with foreign body of thyroid gland +C2833036|T037|AB|S11.12XA|ICD10CM|Laceration with foreign body of thyroid gland, init encntr|Laceration with foreign body of thyroid gland, init encntr +C2833036|T037|PT|S11.12XA|ICD10CM|Laceration with foreign body of thyroid gland, initial encounter|Laceration with foreign body of thyroid gland, initial encounter +C2833037|T037|AB|S11.12XD|ICD10CM|Laceration with foreign body of thyroid gland, subs encntr|Laceration with foreign body of thyroid gland, subs encntr +C2833037|T037|PT|S11.12XD|ICD10CM|Laceration with foreign body of thyroid gland, subsequent encounter|Laceration with foreign body of thyroid gland, subsequent encounter +C2833038|T037|AB|S11.12XS|ICD10CM|Laceration with foreign body of thyroid gland, sequela|Laceration with foreign body of thyroid gland, sequela +C2833038|T037|PT|S11.12XS|ICD10CM|Laceration with foreign body of thyroid gland, sequela|Laceration with foreign body of thyroid gland, sequela +C2833039|T037|AB|S11.13|ICD10CM|Puncture wound without foreign body of thyroid gland|Puncture wound without foreign body of thyroid gland +C2833039|T037|HT|S11.13|ICD10CM|Puncture wound without foreign body of thyroid gland|Puncture wound without foreign body of thyroid gland +C2833040|T037|AB|S11.13XA|ICD10CM|Puncture wound w/o foreign body of thyroid gland, init|Puncture wound w/o foreign body of thyroid gland, init +C2833040|T037|PT|S11.13XA|ICD10CM|Puncture wound without foreign body of thyroid gland, initial encounter|Puncture wound without foreign body of thyroid gland, initial encounter +C2833041|T037|AB|S11.13XD|ICD10CM|Puncture wound w/o foreign body of thyroid gland, subs|Puncture wound w/o foreign body of thyroid gland, subs +C2833041|T037|PT|S11.13XD|ICD10CM|Puncture wound without foreign body of thyroid gland, subsequent encounter|Puncture wound without foreign body of thyroid gland, subsequent encounter +C2833042|T037|AB|S11.13XS|ICD10CM|Puncture wound w/o foreign body of thyroid gland, sequela|Puncture wound w/o foreign body of thyroid gland, sequela +C2833042|T037|PT|S11.13XS|ICD10CM|Puncture wound without foreign body of thyroid gland, sequela|Puncture wound without foreign body of thyroid gland, sequela +C2833043|T037|AB|S11.14|ICD10CM|Puncture wound with foreign body of thyroid gland|Puncture wound with foreign body of thyroid gland +C2833043|T037|HT|S11.14|ICD10CM|Puncture wound with foreign body of thyroid gland|Puncture wound with foreign body of thyroid gland +C2833044|T037|AB|S11.14XA|ICD10CM|Puncture wound w foreign body of thyroid gland, init encntr|Puncture wound w foreign body of thyroid gland, init encntr +C2833044|T037|PT|S11.14XA|ICD10CM|Puncture wound with foreign body of thyroid gland, initial encounter|Puncture wound with foreign body of thyroid gland, initial encounter +C2833045|T037|AB|S11.14XD|ICD10CM|Puncture wound w foreign body of thyroid gland, subs encntr|Puncture wound w foreign body of thyroid gland, subs encntr +C2833045|T037|PT|S11.14XD|ICD10CM|Puncture wound with foreign body of thyroid gland, subsequent encounter|Puncture wound with foreign body of thyroid gland, subsequent encounter +C2833046|T037|AB|S11.14XS|ICD10CM|Puncture wound with foreign body of thyroid gland, sequela|Puncture wound with foreign body of thyroid gland, sequela +C2833046|T037|PT|S11.14XS|ICD10CM|Puncture wound with foreign body of thyroid gland, sequela|Puncture wound with foreign body of thyroid gland, sequela +C2833047|T037|ET|S11.15|ICD10CM|Bite of thyroid gland NOS|Bite of thyroid gland NOS +C2833048|T037|HT|S11.15|ICD10CM|Open bite of thyroid gland|Open bite of thyroid gland +C2833048|T037|AB|S11.15|ICD10CM|Open bite of thyroid gland|Open bite of thyroid gland +C2833049|T037|AB|S11.15XA|ICD10CM|Open bite of thyroid gland, initial encounter|Open bite of thyroid gland, initial encounter +C2833049|T037|PT|S11.15XA|ICD10CM|Open bite of thyroid gland, initial encounter|Open bite of thyroid gland, initial encounter +C2833050|T037|AB|S11.15XD|ICD10CM|Open bite of thyroid gland, subsequent encounter|Open bite of thyroid gland, subsequent encounter +C2833050|T037|PT|S11.15XD|ICD10CM|Open bite of thyroid gland, subsequent encounter|Open bite of thyroid gland, subsequent encounter +C2833051|T037|AB|S11.15XS|ICD10CM|Open bite of thyroid gland, sequela|Open bite of thyroid gland, sequela +C2833051|T037|PT|S11.15XS|ICD10CM|Open bite of thyroid gland, sequela|Open bite of thyroid gland, sequela +C0495815|T037|PT|S11.2|ICD10AE|Open wound involving pharynx and cervical esophagus|Open wound involving pharynx and cervical esophagus +C0495815|T037|PT|S11.2|ICD10|Open wound involving pharynx and cervical oesophagus|Open wound involving pharynx and cervical oesophagus +C3508579|T037|AB|S11.2|ICD10CM|Open wound of pharynx and cervical esophagus|Open wound of pharynx and cervical esophagus +C3508579|T037|HT|S11.2|ICD10CM|Open wound of pharynx and cervical esophagus|Open wound of pharynx and cervical esophagus +C2833053|T037|AB|S11.20|ICD10CM|Unspecified open wound of pharynx and cervical esophagus|Unspecified open wound of pharynx and cervical esophagus +C2833053|T037|HT|S11.20|ICD10CM|Unspecified open wound of pharynx and cervical esophagus|Unspecified open wound of pharynx and cervical esophagus +C2833054|T037|AB|S11.20XA|ICD10CM|Unsp open wound of pharynx and cervical esophagus, init|Unsp open wound of pharynx and cervical esophagus, init +C2833054|T037|PT|S11.20XA|ICD10CM|Unspecified open wound of pharynx and cervical esophagus, initial encounter|Unspecified open wound of pharynx and cervical esophagus, initial encounter +C2833055|T037|AB|S11.20XD|ICD10CM|Unsp open wound of pharynx and cervical esophagus, subs|Unsp open wound of pharynx and cervical esophagus, subs +C2833055|T037|PT|S11.20XD|ICD10CM|Unspecified open wound of pharynx and cervical esophagus, subsequent encounter|Unspecified open wound of pharynx and cervical esophagus, subsequent encounter +C2833056|T037|AB|S11.20XS|ICD10CM|Unsp open wound of pharynx and cervical esophagus, sequela|Unsp open wound of pharynx and cervical esophagus, sequela +C2833056|T037|PT|S11.20XS|ICD10CM|Unspecified open wound of pharynx and cervical esophagus, sequela|Unspecified open wound of pharynx and cervical esophagus, sequela +C2833057|T037|AB|S11.21|ICD10CM|Laceration w/o fb of pharynx and cervical esophagus|Laceration w/o fb of pharynx and cervical esophagus +C2833057|T037|HT|S11.21|ICD10CM|Laceration without foreign body of pharynx and cervical esophagus|Laceration without foreign body of pharynx and cervical esophagus +C2833058|T037|AB|S11.21XA|ICD10CM|Laceration w/o fb of pharynx and cervical esophagus, init|Laceration w/o fb of pharynx and cervical esophagus, init +C2833058|T037|PT|S11.21XA|ICD10CM|Laceration without foreign body of pharynx and cervical esophagus, initial encounter|Laceration without foreign body of pharynx and cervical esophagus, initial encounter +C2833059|T037|AB|S11.21XD|ICD10CM|Laceration w/o fb of pharynx and cervical esophagus, subs|Laceration w/o fb of pharynx and cervical esophagus, subs +C2833059|T037|PT|S11.21XD|ICD10CM|Laceration without foreign body of pharynx and cervical esophagus, subsequent encounter|Laceration without foreign body of pharynx and cervical esophagus, subsequent encounter +C2833060|T037|AB|S11.21XS|ICD10CM|Laceration w/o fb of pharynx and cervical esophagus, sequela|Laceration w/o fb of pharynx and cervical esophagus, sequela +C2833060|T037|PT|S11.21XS|ICD10CM|Laceration without foreign body of pharynx and cervical esophagus, sequela|Laceration without foreign body of pharynx and cervical esophagus, sequela +C2833061|T037|AB|S11.22|ICD10CM|Laceration w foreign body of pharynx and cervical esophagus|Laceration w foreign body of pharynx and cervical esophagus +C2833061|T037|HT|S11.22|ICD10CM|Laceration with foreign body of pharynx and cervical esophagus|Laceration with foreign body of pharynx and cervical esophagus +C2833062|T037|AB|S11.22XA|ICD10CM|Laceration w fb of pharynx and cervical esophagus, init|Laceration w fb of pharynx and cervical esophagus, init +C2833062|T037|PT|S11.22XA|ICD10CM|Laceration with foreign body of pharynx and cervical esophagus, initial encounter|Laceration with foreign body of pharynx and cervical esophagus, initial encounter +C2833063|T037|AB|S11.22XD|ICD10CM|Laceration w fb of pharynx and cervical esophagus, subs|Laceration w fb of pharynx and cervical esophagus, subs +C2833063|T037|PT|S11.22XD|ICD10CM|Laceration with foreign body of pharynx and cervical esophagus, subsequent encounter|Laceration with foreign body of pharynx and cervical esophagus, subsequent encounter +C2833064|T037|AB|S11.22XS|ICD10CM|Laceration w fb of pharynx and cervical esophagus, sequela|Laceration w fb of pharynx and cervical esophagus, sequela +C2833064|T037|PT|S11.22XS|ICD10CM|Laceration with foreign body of pharynx and cervical esophagus, sequela|Laceration with foreign body of pharynx and cervical esophagus, sequela +C2833065|T037|AB|S11.23|ICD10CM|Pnctr w/o foreign body of pharynx and cervical esophagus|Pnctr w/o foreign body of pharynx and cervical esophagus +C2833065|T037|HT|S11.23|ICD10CM|Puncture wound without foreign body of pharynx and cervical esophagus|Puncture wound without foreign body of pharynx and cervical esophagus +C2833066|T037|AB|S11.23XA|ICD10CM|Pnctr w/o fb of pharynx and cervical esophagus, init|Pnctr w/o fb of pharynx and cervical esophagus, init +C2833066|T037|PT|S11.23XA|ICD10CM|Puncture wound without foreign body of pharynx and cervical esophagus, initial encounter|Puncture wound without foreign body of pharynx and cervical esophagus, initial encounter +C2833067|T037|AB|S11.23XD|ICD10CM|Pnctr w/o fb of pharynx and cervical esophagus, subs|Pnctr w/o fb of pharynx and cervical esophagus, subs +C2833067|T037|PT|S11.23XD|ICD10CM|Puncture wound without foreign body of pharynx and cervical esophagus, subsequent encounter|Puncture wound without foreign body of pharynx and cervical esophagus, subsequent encounter +C2833068|T037|AB|S11.23XS|ICD10CM|Pnctr w/o fb of pharynx and cervical esophagus, sequela|Pnctr w/o fb of pharynx and cervical esophagus, sequela +C2833068|T037|PT|S11.23XS|ICD10CM|Puncture wound without foreign body of pharynx and cervical esophagus, sequela|Puncture wound without foreign body of pharynx and cervical esophagus, sequela +C2833069|T037|AB|S11.24|ICD10CM|Pnctr w foreign body of pharynx and cervical esophagus|Pnctr w foreign body of pharynx and cervical esophagus +C2833069|T037|HT|S11.24|ICD10CM|Puncture wound with foreign body of pharynx and cervical esophagus|Puncture wound with foreign body of pharynx and cervical esophagus +C2833070|T037|AB|S11.24XA|ICD10CM|Pnctr w foreign body of pharynx and cervical esophagus, init|Pnctr w foreign body of pharynx and cervical esophagus, init +C2833070|T037|PT|S11.24XA|ICD10CM|Puncture wound with foreign body of pharynx and cervical esophagus, initial encounter|Puncture wound with foreign body of pharynx and cervical esophagus, initial encounter +C2833071|T037|AB|S11.24XD|ICD10CM|Pnctr w foreign body of pharynx and cervical esophagus, subs|Pnctr w foreign body of pharynx and cervical esophagus, subs +C2833071|T037|PT|S11.24XD|ICD10CM|Puncture wound with foreign body of pharynx and cervical esophagus, subsequent encounter|Puncture wound with foreign body of pharynx and cervical esophagus, subsequent encounter +C2833072|T037|AB|S11.24XS|ICD10CM|Pnctr w fb of pharynx and cervical esophagus, sequela|Pnctr w fb of pharynx and cervical esophagus, sequela +C2833072|T037|PT|S11.24XS|ICD10CM|Puncture wound with foreign body of pharynx and cervical esophagus, sequela|Puncture wound with foreign body of pharynx and cervical esophagus, sequela +C2833073|T037|ET|S11.25|ICD10CM|Bite of pharynx and cervical esophagus NOS|Bite of pharynx and cervical esophagus NOS +C2833074|T037|AB|S11.25|ICD10CM|Open bite of pharynx and cervical esophagus|Open bite of pharynx and cervical esophagus +C2833074|T037|HT|S11.25|ICD10CM|Open bite of pharynx and cervical esophagus|Open bite of pharynx and cervical esophagus +C2833075|T037|AB|S11.25XA|ICD10CM|Open bite of pharynx and cervical esophagus, init encntr|Open bite of pharynx and cervical esophagus, init encntr +C2833075|T037|PT|S11.25XA|ICD10CM|Open bite of pharynx and cervical esophagus, initial encounter|Open bite of pharynx and cervical esophagus, initial encounter +C2833076|T037|AB|S11.25XD|ICD10CM|Open bite of pharynx and cervical esophagus, subs encntr|Open bite of pharynx and cervical esophagus, subs encntr +C2833076|T037|PT|S11.25XD|ICD10CM|Open bite of pharynx and cervical esophagus, subsequent encounter|Open bite of pharynx and cervical esophagus, subsequent encounter +C2833077|T037|AB|S11.25XS|ICD10CM|Open bite of pharynx and cervical esophagus, sequela|Open bite of pharynx and cervical esophagus, sequela +C2833077|T037|PT|S11.25XS|ICD10CM|Open bite of pharynx and cervical esophagus, sequela|Open bite of pharynx and cervical esophagus, sequela +C0451952|T037|PT|S11.7|ICD10|Multiple open wounds of neck|Multiple open wounds of neck +C0478219|T037|PT|S11.8|ICD10|Open wound of other parts of neck|Open wound of other parts of neck +C0478219|T037|AB|S11.8|ICD10CM|Open wound of other specified parts of neck|Open wound of other specified parts of neck +C0478219|T037|HT|S11.8|ICD10CM|Open wound of other specified parts of neck|Open wound of other specified parts of neck +C2833078|T037|AB|S11.80|ICD10CM|Unspecified open wound of other specified part of neck|Unspecified open wound of other specified part of neck +C2833078|T037|HT|S11.80|ICD10CM|Unspecified open wound of other specified part of neck|Unspecified open wound of other specified part of neck +C2977767|T037|AB|S11.80XA|ICD10CM|Unspecified open wound of oth part of neck, init encntr|Unspecified open wound of oth part of neck, init encntr +C2977767|T037|PT|S11.80XA|ICD10CM|Unspecified open wound of other specified part of neck, initial encounter|Unspecified open wound of other specified part of neck, initial encounter +C2977768|T037|AB|S11.80XD|ICD10CM|Unspecified open wound of oth part of neck, subs encntr|Unspecified open wound of oth part of neck, subs encntr +C2977768|T037|PT|S11.80XD|ICD10CM|Unspecified open wound of other specified part of neck, subsequent encounter|Unspecified open wound of other specified part of neck, subsequent encounter +C2977769|T037|AB|S11.80XS|ICD10CM|Unspecified open wound of oth part of neck, sequela|Unspecified open wound of oth part of neck, sequela +C2977769|T037|PT|S11.80XS|ICD10CM|Unspecified open wound of other specified part of neck, sequela|Unspecified open wound of other specified part of neck, sequela +C2833082|T037|AB|S11.81|ICD10CM|Laceration without foreign body of oth part of neck|Laceration without foreign body of oth part of neck +C2833082|T037|HT|S11.81|ICD10CM|Laceration without foreign body of other specified part of neck|Laceration without foreign body of other specified part of neck +C2977770|T037|AB|S11.81XA|ICD10CM|Laceration w/o foreign body of oth part of neck, init encntr|Laceration w/o foreign body of oth part of neck, init encntr +C2977770|T037|PT|S11.81XA|ICD10CM|Laceration without foreign body of other specified part of neck, initial encounter|Laceration without foreign body of other specified part of neck, initial encounter +C2977771|T037|AB|S11.81XD|ICD10CM|Laceration w/o foreign body of oth part of neck, subs encntr|Laceration w/o foreign body of oth part of neck, subs encntr +C2977771|T037|PT|S11.81XD|ICD10CM|Laceration without foreign body of other specified part of neck, subsequent encounter|Laceration without foreign body of other specified part of neck, subsequent encounter +C2977772|T037|AB|S11.81XS|ICD10CM|Laceration without foreign body of oth part of neck, sequela|Laceration without foreign body of oth part of neck, sequela +C2977772|T037|PT|S11.81XS|ICD10CM|Laceration without foreign body of other specified part of neck, sequela|Laceration without foreign body of other specified part of neck, sequela +C2833086|T037|AB|S11.82|ICD10CM|Laceration with foreign body of other specified part of neck|Laceration with foreign body of other specified part of neck +C2833086|T037|HT|S11.82|ICD10CM|Laceration with foreign body of other specified part of neck|Laceration with foreign body of other specified part of neck +C2977773|T037|AB|S11.82XA|ICD10CM|Laceration w foreign body of oth part of neck, init encntr|Laceration w foreign body of oth part of neck, init encntr +C2977773|T037|PT|S11.82XA|ICD10CM|Laceration with foreign body of other specified part of neck, initial encounter|Laceration with foreign body of other specified part of neck, initial encounter +C2977774|T037|AB|S11.82XD|ICD10CM|Laceration w foreign body of oth part of neck, subs encntr|Laceration w foreign body of oth part of neck, subs encntr +C2977774|T037|PT|S11.82XD|ICD10CM|Laceration with foreign body of other specified part of neck, subsequent encounter|Laceration with foreign body of other specified part of neck, subsequent encounter +C2977775|T037|AB|S11.82XS|ICD10CM|Laceration with foreign body of oth part of neck, sequela|Laceration with foreign body of oth part of neck, sequela +C2977775|T037|PT|S11.82XS|ICD10CM|Laceration with foreign body of other specified part of neck, sequela|Laceration with foreign body of other specified part of neck, sequela +C2833090|T037|AB|S11.83|ICD10CM|Puncture wound without foreign body of oth part of neck|Puncture wound without foreign body of oth part of neck +C2833090|T037|HT|S11.83|ICD10CM|Puncture wound without foreign body of other specified part of neck|Puncture wound without foreign body of other specified part of neck +C2977776|T037|AB|S11.83XA|ICD10CM|Puncture wound w/o foreign body oth prt neck, init encntr|Puncture wound w/o foreign body oth prt neck, init encntr +C2977776|T037|PT|S11.83XA|ICD10CM|Puncture wound without foreign body of other specified part of neck, initial encounter|Puncture wound without foreign body of other specified part of neck, initial encounter +C2977777|T037|AB|S11.83XD|ICD10CM|Puncture wound w/o foreign body oth prt neck, subs encntr|Puncture wound w/o foreign body oth prt neck, subs encntr +C2977777|T037|PT|S11.83XD|ICD10CM|Puncture wound without foreign body of other specified part of neck, subsequent encounter|Puncture wound without foreign body of other specified part of neck, subsequent encounter +C2977778|T037|AB|S11.83XS|ICD10CM|Puncture wound w/o foreign body of oth part of neck, sequela|Puncture wound w/o foreign body of oth part of neck, sequela +C2977778|T037|PT|S11.83XS|ICD10CM|Puncture wound without foreign body of other specified part of neck, sequela|Puncture wound without foreign body of other specified part of neck, sequela +C2833094|T037|AB|S11.84|ICD10CM|Puncture wound with foreign body of oth part of neck|Puncture wound with foreign body of oth part of neck +C2833094|T037|HT|S11.84|ICD10CM|Puncture wound with foreign body of other specified part of neck|Puncture wound with foreign body of other specified part of neck +C2977779|T037|AB|S11.84XA|ICD10CM|Puncture wound w foreign body oth prt neck, init encntr|Puncture wound w foreign body oth prt neck, init encntr +C2977779|T037|PT|S11.84XA|ICD10CM|Puncture wound with foreign body of other specified part of neck, initial encounter|Puncture wound with foreign body of other specified part of neck, initial encounter +C2977780|T037|AB|S11.84XD|ICD10CM|Puncture wound w foreign body oth prt neck, subs encntr|Puncture wound w foreign body oth prt neck, subs encntr +C2977780|T037|PT|S11.84XD|ICD10CM|Puncture wound with foreign body of other specified part of neck, subsequent encounter|Puncture wound with foreign body of other specified part of neck, subsequent encounter +C2977781|T037|AB|S11.84XS|ICD10CM|Puncture wound w foreign body of oth part of neck, sequela|Puncture wound w foreign body of oth part of neck, sequela +C2977781|T037|PT|S11.84XS|ICD10CM|Puncture wound with foreign body of other specified part of neck, sequela|Puncture wound with foreign body of other specified part of neck, sequela +C2833098|T037|ET|S11.85|ICD10CM|Bite of other specified part of neck NOS|Bite of other specified part of neck NOS +C2833099|T037|AB|S11.85|ICD10CM|Open bite of other specified part of neck|Open bite of other specified part of neck +C2833099|T037|HT|S11.85|ICD10CM|Open bite of other specified part of neck|Open bite of other specified part of neck +C2977782|T037|AB|S11.85XA|ICD10CM|Open bite of other specified part of neck, initial encounter|Open bite of other specified part of neck, initial encounter +C2977782|T037|PT|S11.85XA|ICD10CM|Open bite of other specified part of neck, initial encounter|Open bite of other specified part of neck, initial encounter +C2977783|T037|AB|S11.85XD|ICD10CM|Open bite of other specified part of neck, subs encntr|Open bite of other specified part of neck, subs encntr +C2977783|T037|PT|S11.85XD|ICD10CM|Open bite of other specified part of neck, subsequent encounter|Open bite of other specified part of neck, subsequent encounter +C2977784|T037|PT|S11.85XS|ICD10CM|Open bite of other specified part of neck, sequela|Open bite of other specified part of neck, sequela +C2977784|T037|AB|S11.85XS|ICD10CM|Open bite of other specified part of neck, sequela|Open bite of other specified part of neck, sequela +C2833103|T037|AB|S11.89|ICD10CM|Other open wound of other specified part of neck|Other open wound of other specified part of neck +C2833103|T037|HT|S11.89|ICD10CM|Other open wound of other specified part of neck|Other open wound of other specified part of neck +C2977785|T037|AB|S11.89XA|ICD10CM|Other open wound of oth part of neck, init encntr|Other open wound of oth part of neck, init encntr +C2977785|T037|PT|S11.89XA|ICD10CM|Other open wound of other specified part of neck, initial encounter|Other open wound of other specified part of neck, initial encounter +C2977786|T037|AB|S11.89XD|ICD10CM|Other open wound of oth part of neck, subs encntr|Other open wound of oth part of neck, subs encntr +C2977786|T037|PT|S11.89XD|ICD10CM|Other open wound of other specified part of neck, subsequent encounter|Other open wound of other specified part of neck, subsequent encounter +C2977787|T037|PT|S11.89XS|ICD10CM|Other open wound of other specified part of neck, sequela|Other open wound of other specified part of neck, sequela +C2977787|T037|AB|S11.89XS|ICD10CM|Other open wound of other specified part of neck, sequela|Other open wound of other specified part of neck, sequela +C0160538|T037|PT|S11.9|ICD10|Open wound of neck, part unspecified|Open wound of neck, part unspecified +C0160538|T037|AB|S11.9|ICD10CM|Open wound of unspecified part of neck|Open wound of unspecified part of neck +C0160538|T037|HT|S11.9|ICD10CM|Open wound of unspecified part of neck|Open wound of unspecified part of neck +C2833107|T037|AB|S11.90|ICD10CM|Unspecified open wound of unspecified part of neck|Unspecified open wound of unspecified part of neck +C2833107|T037|HT|S11.90|ICD10CM|Unspecified open wound of unspecified part of neck|Unspecified open wound of unspecified part of neck +C2833108|T037|AB|S11.90XA|ICD10CM|Unsp open wound of unspecified part of neck, init encntr|Unsp open wound of unspecified part of neck, init encntr +C2833108|T037|PT|S11.90XA|ICD10CM|Unspecified open wound of unspecified part of neck, initial encounter|Unspecified open wound of unspecified part of neck, initial encounter +C2833109|T037|AB|S11.90XD|ICD10CM|Unsp open wound of unspecified part of neck, subs encntr|Unsp open wound of unspecified part of neck, subs encntr +C2833109|T037|PT|S11.90XD|ICD10CM|Unspecified open wound of unspecified part of neck, subsequent encounter|Unspecified open wound of unspecified part of neck, subsequent encounter +C2833110|T037|AB|S11.90XS|ICD10CM|Unspecified open wound of unspecified part of neck, sequela|Unspecified open wound of unspecified part of neck, sequela +C2833110|T037|PT|S11.90XS|ICD10CM|Unspecified open wound of unspecified part of neck, sequela|Unspecified open wound of unspecified part of neck, sequela +C2833111|T037|AB|S11.91|ICD10CM|Laceration without foreign body of unspecified part of neck|Laceration without foreign body of unspecified part of neck +C2833111|T037|HT|S11.91|ICD10CM|Laceration without foreign body of unspecified part of neck|Laceration without foreign body of unspecified part of neck +C2833112|T037|AB|S11.91XA|ICD10CM|Laceration w/o foreign body of unsp part of neck, init|Laceration w/o foreign body of unsp part of neck, init +C2833112|T037|PT|S11.91XA|ICD10CM|Laceration without foreign body of unspecified part of neck, initial encounter|Laceration without foreign body of unspecified part of neck, initial encounter +C2833113|T037|AB|S11.91XD|ICD10CM|Laceration w/o foreign body of unsp part of neck, subs|Laceration w/o foreign body of unsp part of neck, subs +C2833113|T037|PT|S11.91XD|ICD10CM|Laceration without foreign body of unspecified part of neck, subsequent encounter|Laceration without foreign body of unspecified part of neck, subsequent encounter +C2833114|T037|AB|S11.91XS|ICD10CM|Laceration w/o foreign body of unsp part of neck, sequela|Laceration w/o foreign body of unsp part of neck, sequela +C2833114|T037|PT|S11.91XS|ICD10CM|Laceration without foreign body of unspecified part of neck, sequela|Laceration without foreign body of unspecified part of neck, sequela +C2833115|T037|AB|S11.92|ICD10CM|Laceration with foreign body of unspecified part of neck|Laceration with foreign body of unspecified part of neck +C2833115|T037|HT|S11.92|ICD10CM|Laceration with foreign body of unspecified part of neck|Laceration with foreign body of unspecified part of neck +C2833116|T037|AB|S11.92XA|ICD10CM|Laceration w foreign body of unsp part of neck, init encntr|Laceration w foreign body of unsp part of neck, init encntr +C2833116|T037|PT|S11.92XA|ICD10CM|Laceration with foreign body of unspecified part of neck, initial encounter|Laceration with foreign body of unspecified part of neck, initial encounter +C2833117|T037|AB|S11.92XD|ICD10CM|Laceration w foreign body of unsp part of neck, subs encntr|Laceration w foreign body of unsp part of neck, subs encntr +C2833117|T037|PT|S11.92XD|ICD10CM|Laceration with foreign body of unspecified part of neck, subsequent encounter|Laceration with foreign body of unspecified part of neck, subsequent encounter +C2833118|T037|AB|S11.92XS|ICD10CM|Laceration with foreign body of unsp part of neck, sequela|Laceration with foreign body of unsp part of neck, sequela +C2833118|T037|PT|S11.92XS|ICD10CM|Laceration with foreign body of unspecified part of neck, sequela|Laceration with foreign body of unspecified part of neck, sequela +C2833119|T037|AB|S11.93|ICD10CM|Puncture wound without foreign body of unsp part of neck|Puncture wound without foreign body of unsp part of neck +C2833119|T037|HT|S11.93|ICD10CM|Puncture wound without foreign body of unspecified part of neck|Puncture wound without foreign body of unspecified part of neck +C2833120|T037|AB|S11.93XA|ICD10CM|Puncture wound w/o foreign body of unsp part of neck, init|Puncture wound w/o foreign body of unsp part of neck, init +C2833120|T037|PT|S11.93XA|ICD10CM|Puncture wound without foreign body of unspecified part of neck, initial encounter|Puncture wound without foreign body of unspecified part of neck, initial encounter +C2833121|T037|AB|S11.93XD|ICD10CM|Puncture wound w/o foreign body of unsp part of neck, subs|Puncture wound w/o foreign body of unsp part of neck, subs +C2833121|T037|PT|S11.93XD|ICD10CM|Puncture wound without foreign body of unspecified part of neck, subsequent encounter|Puncture wound without foreign body of unspecified part of neck, subsequent encounter +C2833122|T037|AB|S11.93XS|ICD10CM|Pnctr w/o foreign body of unsp part of neck, sequela|Pnctr w/o foreign body of unsp part of neck, sequela +C2833122|T037|PT|S11.93XS|ICD10CM|Puncture wound without foreign body of unspecified part of neck, sequela|Puncture wound without foreign body of unspecified part of neck, sequela +C2833123|T037|AB|S11.94|ICD10CM|Puncture wound with foreign body of unspecified part of neck|Puncture wound with foreign body of unspecified part of neck +C2833123|T037|HT|S11.94|ICD10CM|Puncture wound with foreign body of unspecified part of neck|Puncture wound with foreign body of unspecified part of neck +C2833124|T037|AB|S11.94XA|ICD10CM|Puncture wound w foreign body of unsp part of neck, init|Puncture wound w foreign body of unsp part of neck, init +C2833124|T037|PT|S11.94XA|ICD10CM|Puncture wound with foreign body of unspecified part of neck, initial encounter|Puncture wound with foreign body of unspecified part of neck, initial encounter +C2833125|T037|AB|S11.94XD|ICD10CM|Puncture wound w foreign body of unsp part of neck, subs|Puncture wound w foreign body of unsp part of neck, subs +C2833125|T037|PT|S11.94XD|ICD10CM|Puncture wound with foreign body of unspecified part of neck, subsequent encounter|Puncture wound with foreign body of unspecified part of neck, subsequent encounter +C2833126|T037|AB|S11.94XS|ICD10CM|Puncture wound w foreign body of unsp part of neck, sequela|Puncture wound w foreign body of unsp part of neck, sequela +C2833126|T037|PT|S11.94XS|ICD10CM|Puncture wound with foreign body of unspecified part of neck, sequela|Puncture wound with foreign body of unspecified part of neck, sequela +C2833127|T037|ET|S11.95|ICD10CM|Bite of neck NOS|Bite of neck NOS +C2833127|T037|HT|S11.95|ICD10CM|Open bite of unspecified part of neck|Open bite of unspecified part of neck +C2833127|T037|AB|S11.95|ICD10CM|Open bite of unspecified part of neck|Open bite of unspecified part of neck +C2833128|T037|PT|S11.95XA|ICD10CM|Open bite of unspecified part of neck, initial encounter|Open bite of unspecified part of neck, initial encounter +C2833128|T037|AB|S11.95XA|ICD10CM|Open bite of unspecified part of neck, initial encounter|Open bite of unspecified part of neck, initial encounter +C2833129|T037|PT|S11.95XD|ICD10CM|Open bite of unspecified part of neck, subsequent encounter|Open bite of unspecified part of neck, subsequent encounter +C2833129|T037|AB|S11.95XD|ICD10CM|Open bite of unspecified part of neck, subsequent encounter|Open bite of unspecified part of neck, subsequent encounter +C2833130|T037|PT|S11.95XS|ICD10CM|Open bite of unspecified part of neck, sequela|Open bite of unspecified part of neck, sequela +C2833130|T037|AB|S11.95XS|ICD10CM|Open bite of unspecified part of neck, sequela|Open bite of unspecified part of neck, sequela +C4290309|T037|ET|S12|ICD10CM|fracture of cervical neural arch|fracture of cervical neural arch +C0262414|T037|ET|S12|ICD10CM|fracture of cervical spine|fracture of cervical spine +C4290310|T037|ET|S12|ICD10CM|fracture of cervical spinous process|fracture of cervical spinous process +C4290311|T037|ET|S12|ICD10CM|fracture of cervical transverse process|fracture of cervical transverse process +C2833135|T037|AB|S12|ICD10CM|Fracture of cervical vertebra and other parts of neck|Fracture of cervical vertebra and other parts of neck +C2833135|T037|HT|S12|ICD10CM|Fracture of cervical vertebra and other parts of neck|Fracture of cervical vertebra and other parts of neck +C4290312|T037|ET|S12|ICD10CM|fracture of cervical vertebral arch|fracture of cervical vertebral arch +C0262414|T037|ET|S12|ICD10CM|fracture of neck|fracture of neck +C0262414|T037|HT|S12|ICD10|Fracture of neck|Fracture of neck +C0349012|T037|ET|S12.0|ICD10CM|Atlas|Atlas +C0349012|T037|HT|S12.0|ICD10CM|Fracture of first cervical vertebra|Fracture of first cervical vertebra +C0349012|T037|AB|S12.0|ICD10CM|Fracture of first cervical vertebra|Fracture of first cervical vertebra +C0349012|T037|PT|S12.0|ICD10|Fracture of first cervical vertebra|Fracture of first cervical vertebra +C2833136|T037|AB|S12.00|ICD10CM|Unspecified fracture of first cervical vertebra|Unspecified fracture of first cervical vertebra +C2833136|T037|HT|S12.00|ICD10CM|Unspecified fracture of first cervical vertebra|Unspecified fracture of first cervical vertebra +C2833137|T037|AB|S12.000|ICD10CM|Unspecified displaced fracture of first cervical vertebra|Unspecified displaced fracture of first cervical vertebra +C2833137|T037|HT|S12.000|ICD10CM|Unspecified displaced fracture of first cervical vertebra|Unspecified displaced fracture of first cervical vertebra +C2833138|T037|AB|S12.000A|ICD10CM|Unsp disp fx of first cervical vertebra, init for clos fx|Unsp disp fx of first cervical vertebra, init for clos fx +C2833138|T037|PT|S12.000A|ICD10CM|Unspecified displaced fracture of first cervical vertebra, initial encounter for closed fracture|Unspecified displaced fracture of first cervical vertebra, initial encounter for closed fracture +C2833139|T037|AB|S12.000B|ICD10CM|Unsp disp fx of first cervical vertebra, init for opn fx|Unsp disp fx of first cervical vertebra, init for opn fx +C2833139|T037|PT|S12.000B|ICD10CM|Unspecified displaced fracture of first cervical vertebra, initial encounter for open fracture|Unspecified displaced fracture of first cervical vertebra, initial encounter for open fracture +C2833140|T037|AB|S12.000D|ICD10CM|Unsp disp fx of first cervcal vert, subs for fx w routn heal|Unsp disp fx of first cervcal vert, subs for fx w routn heal +C2833141|T037|AB|S12.000G|ICD10CM|Unsp disp fx of first cervcal vert, subs for fx w delay heal|Unsp disp fx of first cervcal vert, subs for fx w delay heal +C2833142|T037|AB|S12.000K|ICD10CM|Unsp disp fx of first cervcal vert, subs for fx w nonunion|Unsp disp fx of first cervcal vert, subs for fx w nonunion +C2833143|T037|AB|S12.000S|ICD10CM|Unspecified disp fx of first cervical vertebra, sequela|Unspecified disp fx of first cervical vertebra, sequela +C2833143|T037|PT|S12.000S|ICD10CM|Unspecified displaced fracture of first cervical vertebra, sequela|Unspecified displaced fracture of first cervical vertebra, sequela +C2833144|T037|AB|S12.001|ICD10CM|Unspecified nondisplaced fracture of first cervical vertebra|Unspecified nondisplaced fracture of first cervical vertebra +C2833144|T037|HT|S12.001|ICD10CM|Unspecified nondisplaced fracture of first cervical vertebra|Unspecified nondisplaced fracture of first cervical vertebra +C2833145|T037|AB|S12.001A|ICD10CM|Unsp nondisp fx of first cervical vertebra, init for clos fx|Unsp nondisp fx of first cervical vertebra, init for clos fx +C2833145|T037|PT|S12.001A|ICD10CM|Unspecified nondisplaced fracture of first cervical vertebra, initial encounter for closed fracture|Unspecified nondisplaced fracture of first cervical vertebra, initial encounter for closed fracture +C2833146|T037|AB|S12.001B|ICD10CM|Unsp nondisp fx of first cervical vertebra, init for opn fx|Unsp nondisp fx of first cervical vertebra, init for opn fx +C2833146|T037|PT|S12.001B|ICD10CM|Unspecified nondisplaced fracture of first cervical vertebra, initial encounter for open fracture|Unspecified nondisplaced fracture of first cervical vertebra, initial encounter for open fracture +C2833147|T037|AB|S12.001D|ICD10CM|Unsp nondisp fx of 1st cervcal vert, 7thD|Unsp nondisp fx of 1st cervcal vert, 7thD +C2833148|T037|AB|S12.001G|ICD10CM|Unsp nondisp fx of 1st cervcal vert, 7thG|Unsp nondisp fx of 1st cervcal vert, 7thG +C2833149|T037|AB|S12.001K|ICD10CM|Unsp nondisp fx of 1st cervcal vert, subs for fx w nonunion|Unsp nondisp fx of 1st cervcal vert, subs for fx w nonunion +C2833150|T037|AB|S12.001S|ICD10CM|Unspecified nondisp fx of first cervical vertebra, sequela|Unspecified nondisp fx of first cervical vertebra, sequela +C2833150|T037|PT|S12.001S|ICD10CM|Unspecified nondisplaced fracture of first cervical vertebra, sequela|Unspecified nondisplaced fracture of first cervical vertebra, sequela +C2833151|T037|HT|S12.01|ICD10CM|Stable burst fracture of first cervical vertebra|Stable burst fracture of first cervical vertebra +C2833151|T037|AB|S12.01|ICD10CM|Stable burst fracture of first cervical vertebra|Stable burst fracture of first cervical vertebra +C2833152|T037|AB|S12.01XA|ICD10CM|Stable burst fracture of first cervical vertebra, init|Stable burst fracture of first cervical vertebra, init +C2833152|T037|PT|S12.01XA|ICD10CM|Stable burst fracture of first cervical vertebra, initial encounter for closed fracture|Stable burst fracture of first cervical vertebra, initial encounter for closed fracture +C2833153|T037|PT|S12.01XB|ICD10CM|Stable burst fracture of first cervical vertebra, initial encounter for open fracture|Stable burst fracture of first cervical vertebra, initial encounter for open fracture +C2833153|T037|AB|S12.01XB|ICD10CM|Stable burst fx first cervcal vertebra, init for opn fx|Stable burst fx first cervcal vertebra, init for opn fx +C2833154|T037|AB|S12.01XD|ICD10CM|Stable burst fx first cervcal vert, subs for fx w routn heal|Stable burst fx first cervcal vert, subs for fx w routn heal +C2833155|T037|AB|S12.01XG|ICD10CM|Stable burst fx first cervcal vert, subs for fx w delay heal|Stable burst fx first cervcal vert, subs for fx w delay heal +C2833156|T037|PT|S12.01XK|ICD10CM|Stable burst fracture of first cervical vertebra, subsequent encounter for fracture with nonunion|Stable burst fracture of first cervical vertebra, subsequent encounter for fracture with nonunion +C2833156|T037|AB|S12.01XK|ICD10CM|Stable burst fx first cervcal vert, subs for fx w nonunion|Stable burst fx first cervcal vert, subs for fx w nonunion +C2833157|T037|PT|S12.01XS|ICD10CM|Stable burst fracture of first cervical vertebra, sequela|Stable burst fracture of first cervical vertebra, sequela +C2833157|T037|AB|S12.01XS|ICD10CM|Stable burst fracture of first cervical vertebra, sequela|Stable burst fracture of first cervical vertebra, sequela +C2833158|T037|HT|S12.02|ICD10CM|Unstable burst fracture of first cervical vertebra|Unstable burst fracture of first cervical vertebra +C2833158|T037|AB|S12.02|ICD10CM|Unstable burst fracture of first cervical vertebra|Unstable burst fracture of first cervical vertebra +C2833159|T037|AB|S12.02XA|ICD10CM|Unstable burst fracture of first cervical vertebra, init|Unstable burst fracture of first cervical vertebra, init +C2833159|T037|PT|S12.02XA|ICD10CM|Unstable burst fracture of first cervical vertebra, initial encounter for closed fracture|Unstable burst fracture of first cervical vertebra, initial encounter for closed fracture +C2833160|T037|PT|S12.02XB|ICD10CM|Unstable burst fracture of first cervical vertebra, initial encounter for open fracture|Unstable burst fracture of first cervical vertebra, initial encounter for open fracture +C2833160|T037|AB|S12.02XB|ICD10CM|Unstable burst fx first cervcal vertebra, init for opn fx|Unstable burst fx first cervcal vertebra, init for opn fx +C2833161|T037|AB|S12.02XD|ICD10CM|Unstbl burst fx first cervcal vert, subs for fx w routn heal|Unstbl burst fx first cervcal vert, subs for fx w routn heal +C2833162|T037|AB|S12.02XG|ICD10CM|Unstbl burst fx first cervcal vert, subs for fx w delay heal|Unstbl burst fx first cervcal vert, subs for fx w delay heal +C2833163|T037|PT|S12.02XK|ICD10CM|Unstable burst fracture of first cervical vertebra, subsequent encounter for fracture with nonunion|Unstable burst fracture of first cervical vertebra, subsequent encounter for fracture with nonunion +C2833163|T037|AB|S12.02XK|ICD10CM|Unstbl burst fx first cervcal vert, subs for fx w nonunion|Unstbl burst fx first cervcal vert, subs for fx w nonunion +C2833164|T037|PT|S12.02XS|ICD10CM|Unstable burst fracture of first cervical vertebra, sequela|Unstable burst fracture of first cervical vertebra, sequela +C2833164|T037|AB|S12.02XS|ICD10CM|Unstable burst fracture of first cervical vertebra, sequela|Unstable burst fracture of first cervical vertebra, sequela +C2833165|T037|AB|S12.03|ICD10CM|Posterior arch fracture of first cervical vertebra|Posterior arch fracture of first cervical vertebra +C2833165|T037|HT|S12.03|ICD10CM|Posterior arch fracture of first cervical vertebra|Posterior arch fracture of first cervical vertebra +C2833166|T037|AB|S12.030|ICD10CM|Displaced posterior arch fracture of first cervical vertebra|Displaced posterior arch fracture of first cervical vertebra +C2833166|T037|HT|S12.030|ICD10CM|Displaced posterior arch fracture of first cervical vertebra|Displaced posterior arch fracture of first cervical vertebra +C2833167|T037|PT|S12.030A|ICD10CM|Displaced posterior arch fracture of first cervical vertebra, initial encounter for closed fracture|Displaced posterior arch fracture of first cervical vertebra, initial encounter for closed fracture +C2833167|T037|AB|S12.030A|ICD10CM|Displaced posterior arch fx first cervcal vertebra, init|Displaced posterior arch fx first cervcal vertebra, init +C2833168|T037|AB|S12.030B|ICD10CM|Displ post arch fx first cervcal vertebra, init for opn fx|Displ post arch fx first cervcal vertebra, init for opn fx +C2833168|T037|PT|S12.030B|ICD10CM|Displaced posterior arch fracture of first cervical vertebra, initial encounter for open fracture|Displaced posterior arch fracture of first cervical vertebra, initial encounter for open fracture +C2833169|T037|AB|S12.030D|ICD10CM|Displ post arch fx 1st cervcal vert, 7thD|Displ post arch fx 1st cervcal vert, 7thD +C2833170|T037|AB|S12.030G|ICD10CM|Displ post arch fx 1st cervcal vert, 7thG|Displ post arch fx 1st cervcal vert, 7thG +C2833171|T037|AB|S12.030K|ICD10CM|Displ post arch fx 1st cervcal vert, subs for fx w nonunion|Displ post arch fx 1st cervcal vert, subs for fx w nonunion +C2833172|T037|PT|S12.030S|ICD10CM|Displaced posterior arch fracture of first cervical vertebra, sequela|Displaced posterior arch fracture of first cervical vertebra, sequela +C2833172|T037|AB|S12.030S|ICD10CM|Displaced posterior arch fx first cervcal vertebra, sequela|Displaced posterior arch fx first cervcal vertebra, sequela +C2833173|T037|AB|S12.031|ICD10CM|Nondisp posterior arch fracture of first cervcal vertebra|Nondisp posterior arch fracture of first cervcal vertebra +C2833173|T037|HT|S12.031|ICD10CM|Nondisplaced posterior arch fracture of first cervical vertebra|Nondisplaced posterior arch fracture of first cervical vertebra +C2833174|T037|AB|S12.031A|ICD10CM|Nondisp posterior arch fx first cervcal vertebra, init|Nondisp posterior arch fx first cervcal vertebra, init +C2833175|T037|AB|S12.031B|ICD10CM|Nondisp post arch fx first cervcal vertebra, init for opn fx|Nondisp post arch fx first cervcal vertebra, init for opn fx +C2833175|T037|PT|S12.031B|ICD10CM|Nondisplaced posterior arch fracture of first cervical vertebra, initial encounter for open fracture|Nondisplaced posterior arch fracture of first cervical vertebra, initial encounter for open fracture +C2833176|T037|AB|S12.031D|ICD10CM|Nondisp post arch fx 1st cervcal vert, 7thD|Nondisp post arch fx 1st cervcal vert, 7thD +C2833177|T037|AB|S12.031G|ICD10CM|Nondisp post arch fx 1st cervcal vert, 7thG|Nondisp post arch fx 1st cervcal vert, 7thG +C2833178|T037|AB|S12.031K|ICD10CM|Nondisp post arch fx 1st cervcal vert, 7thK|Nondisp post arch fx 1st cervcal vert, 7thK +C2833179|T037|AB|S12.031S|ICD10CM|Nondisp posterior arch fx first cervcal vertebra, sequela|Nondisp posterior arch fx first cervcal vertebra, sequela +C2833179|T037|PT|S12.031S|ICD10CM|Nondisplaced posterior arch fracture of first cervical vertebra, sequela|Nondisplaced posterior arch fracture of first cervical vertebra, sequela +C2833180|T037|AB|S12.04|ICD10CM|Lateral mass fracture of first cervical vertebra|Lateral mass fracture of first cervical vertebra +C2833180|T037|HT|S12.04|ICD10CM|Lateral mass fracture of first cervical vertebra|Lateral mass fracture of first cervical vertebra +C2833181|T037|AB|S12.040|ICD10CM|Displaced lateral mass fracture of first cervical vertebra|Displaced lateral mass fracture of first cervical vertebra +C2833181|T037|HT|S12.040|ICD10CM|Displaced lateral mass fracture of first cervical vertebra|Displaced lateral mass fracture of first cervical vertebra +C2833182|T037|PT|S12.040A|ICD10CM|Displaced lateral mass fracture of first cervical vertebra, initial encounter for closed fracture|Displaced lateral mass fracture of first cervical vertebra, initial encounter for closed fracture +C2833182|T037|AB|S12.040A|ICD10CM|Displaced lateral mass fx first cervcal vertebra, init|Displaced lateral mass fx first cervcal vertebra, init +C2833183|T037|AB|S12.040B|ICD10CM|Displ lateral mass fx first cervcal vert, init for opn fx|Displ lateral mass fx first cervcal vert, init for opn fx +C2833183|T037|PT|S12.040B|ICD10CM|Displaced lateral mass fracture of first cervical vertebra, initial encounter for open fracture|Displaced lateral mass fracture of first cervical vertebra, initial encounter for open fracture +C2833184|T037|AB|S12.040D|ICD10CM|Displ lateral mass fx 1st cervcal vert, 7thD|Displ lateral mass fx 1st cervcal vert, 7thD +C2833185|T037|AB|S12.040G|ICD10CM|Displ lateral mass fx 1st cervcal vert, 7thG|Displ lateral mass fx 1st cervcal vert, 7thG +C2833186|T037|AB|S12.040K|ICD10CM|Displ lateral mass fx 1st cervcal vert, 7thK|Displ lateral mass fx 1st cervcal vert, 7thK +C2833187|T037|PT|S12.040S|ICD10CM|Displaced lateral mass fracture of first cervical vertebra, sequela|Displaced lateral mass fracture of first cervical vertebra, sequela +C2833187|T037|AB|S12.040S|ICD10CM|Displaced lateral mass fx first cervcal vertebra, sequela|Displaced lateral mass fx first cervcal vertebra, sequela +C2833188|T037|AB|S12.041|ICD10CM|Nondisplaced lateral mass fracture of first cervcal vertebra|Nondisplaced lateral mass fracture of first cervcal vertebra +C2833188|T037|HT|S12.041|ICD10CM|Nondisplaced lateral mass fracture of first cervical vertebra|Nondisplaced lateral mass fracture of first cervical vertebra +C2833189|T037|AB|S12.041A|ICD10CM|Nondisp lateral mass fx first cervcal vertebra, init|Nondisp lateral mass fx first cervcal vertebra, init +C2833189|T037|PT|S12.041A|ICD10CM|Nondisplaced lateral mass fracture of first cervical vertebra, initial encounter for closed fracture|Nondisplaced lateral mass fracture of first cervical vertebra, initial encounter for closed fracture +C2833190|T037|AB|S12.041B|ICD10CM|Nondisp lateral mass fx first cervcal vert, init for opn fx|Nondisp lateral mass fx first cervcal vert, init for opn fx +C2833190|T037|PT|S12.041B|ICD10CM|Nondisplaced lateral mass fracture of first cervical vertebra, initial encounter for open fracture|Nondisplaced lateral mass fracture of first cervical vertebra, initial encounter for open fracture +C2833191|T037|AB|S12.041D|ICD10CM|Nondisp lateral mass fx 1st cervcal vert, 7thD|Nondisp lateral mass fx 1st cervcal vert, 7thD +C2833192|T037|AB|S12.041G|ICD10CM|Nondisp lateral mass fx 1st cervcal vert, 7thG|Nondisp lateral mass fx 1st cervcal vert, 7thG +C2833193|T037|AB|S12.041K|ICD10CM|Nondisp lateral mass fx 1st cervcal vert, 7thK|Nondisp lateral mass fx 1st cervcal vert, 7thK +C2833194|T037|AB|S12.041S|ICD10CM|Nondisp lateral mass fx first cervcal vertebra, sequela|Nondisp lateral mass fx first cervcal vertebra, sequela +C2833194|T037|PT|S12.041S|ICD10CM|Nondisplaced lateral mass fracture of first cervical vertebra, sequela|Nondisplaced lateral mass fracture of first cervical vertebra, sequela +C2833195|T037|AB|S12.09|ICD10CM|Other fracture of first cervical vertebra|Other fracture of first cervical vertebra +C2833195|T037|HT|S12.09|ICD10CM|Other fracture of first cervical vertebra|Other fracture of first cervical vertebra +C2833196|T037|AB|S12.090|ICD10CM|Other displaced fracture of first cervical vertebra|Other displaced fracture of first cervical vertebra +C2833196|T037|HT|S12.090|ICD10CM|Other displaced fracture of first cervical vertebra|Other displaced fracture of first cervical vertebra +C2833197|T037|AB|S12.090A|ICD10CM|Oth disp fx of first cervical vertebra, init for clos fx|Oth disp fx of first cervical vertebra, init for clos fx +C2833197|T037|PT|S12.090A|ICD10CM|Other displaced fracture of first cervical vertebra, initial encounter for closed fracture|Other displaced fracture of first cervical vertebra, initial encounter for closed fracture +C2833198|T037|AB|S12.090B|ICD10CM|Oth disp fx of first cervical vertebra, init for opn fx|Oth disp fx of first cervical vertebra, init for opn fx +C2833198|T037|PT|S12.090B|ICD10CM|Other displaced fracture of first cervical vertebra, initial encounter for open fracture|Other displaced fracture of first cervical vertebra, initial encounter for open fracture +C2833199|T037|AB|S12.090D|ICD10CM|Oth disp fx of first cervcal vert, subs for fx w routn heal|Oth disp fx of first cervcal vert, subs for fx w routn heal +C2833200|T037|AB|S12.090G|ICD10CM|Oth disp fx of first cervcal vert, subs for fx w delay heal|Oth disp fx of first cervcal vert, subs for fx w delay heal +C2833201|T037|AB|S12.090K|ICD10CM|Oth disp fx of first cervcal vert, subs for fx w nonunion|Oth disp fx of first cervcal vert, subs for fx w nonunion +C2833201|T037|PT|S12.090K|ICD10CM|Other displaced fracture of first cervical vertebra, subsequent encounter for fracture with nonunion|Other displaced fracture of first cervical vertebra, subsequent encounter for fracture with nonunion +C2833202|T037|AB|S12.090S|ICD10CM|Other displaced fracture of first cervical vertebra, sequela|Other displaced fracture of first cervical vertebra, sequela +C2833202|T037|PT|S12.090S|ICD10CM|Other displaced fracture of first cervical vertebra, sequela|Other displaced fracture of first cervical vertebra, sequela +C2833203|T037|AB|S12.091|ICD10CM|Other nondisplaced fracture of first cervical vertebra|Other nondisplaced fracture of first cervical vertebra +C2833203|T037|HT|S12.091|ICD10CM|Other nondisplaced fracture of first cervical vertebra|Other nondisplaced fracture of first cervical vertebra +C2833204|T037|AB|S12.091A|ICD10CM|Oth nondisp fx of first cervical vertebra, init for clos fx|Oth nondisp fx of first cervical vertebra, init for clos fx +C2833204|T037|PT|S12.091A|ICD10CM|Other nondisplaced fracture of first cervical vertebra, initial encounter for closed fracture|Other nondisplaced fracture of first cervical vertebra, initial encounter for closed fracture +C2833205|T037|AB|S12.091B|ICD10CM|Oth nondisp fx of first cervical vertebra, init for opn fx|Oth nondisp fx of first cervical vertebra, init for opn fx +C2833205|T037|PT|S12.091B|ICD10CM|Other nondisplaced fracture of first cervical vertebra, initial encounter for open fracture|Other nondisplaced fracture of first cervical vertebra, initial encounter for open fracture +C2833206|T037|AB|S12.091D|ICD10CM|Oth nondisp fx of 1st cervcal vert, subs for fx w routn heal|Oth nondisp fx of 1st cervcal vert, subs for fx w routn heal +C2833207|T037|AB|S12.091G|ICD10CM|Oth nondisp fx of 1st cervcal vert, subs for fx w delay heal|Oth nondisp fx of 1st cervcal vert, subs for fx w delay heal +C2833208|T037|AB|S12.091K|ICD10CM|Oth nondisp fx of first cervcal vert, subs for fx w nonunion|Oth nondisp fx of first cervcal vert, subs for fx w nonunion +C2833209|T037|AB|S12.091S|ICD10CM|Other nondisp fx of first cervical vertebra, sequela|Other nondisp fx of first cervical vertebra, sequela +C2833209|T037|PT|S12.091S|ICD10CM|Other nondisplaced fracture of first cervical vertebra, sequela|Other nondisplaced fracture of first cervical vertebra, sequela +C0349013|T037|ET|S12.1|ICD10CM|Axis|Axis +C0349013|T037|HT|S12.1|ICD10CM|Fracture of second cervical vertebra|Fracture of second cervical vertebra +C0349013|T037|AB|S12.1|ICD10CM|Fracture of second cervical vertebra|Fracture of second cervical vertebra +C0349013|T037|PT|S12.1|ICD10|Fracture of second cervical vertebra|Fracture of second cervical vertebra +C2833210|T037|AB|S12.10|ICD10CM|Unspecified fracture of second cervical vertebra|Unspecified fracture of second cervical vertebra +C2833210|T037|HT|S12.10|ICD10CM|Unspecified fracture of second cervical vertebra|Unspecified fracture of second cervical vertebra +C2833211|T037|AB|S12.100|ICD10CM|Unspecified displaced fracture of second cervical vertebra|Unspecified displaced fracture of second cervical vertebra +C2833211|T037|HT|S12.100|ICD10CM|Unspecified displaced fracture of second cervical vertebra|Unspecified displaced fracture of second cervical vertebra +C2833212|T037|AB|S12.100A|ICD10CM|Unsp disp fx of second cervical vertebra, init for clos fx|Unsp disp fx of second cervical vertebra, init for clos fx +C2833212|T037|PT|S12.100A|ICD10CM|Unspecified displaced fracture of second cervical vertebra, initial encounter for closed fracture|Unspecified displaced fracture of second cervical vertebra, initial encounter for closed fracture +C2833213|T037|AB|S12.100B|ICD10CM|Unsp disp fx of second cervical vertebra, init for opn fx|Unsp disp fx of second cervical vertebra, init for opn fx +C2833213|T037|PT|S12.100B|ICD10CM|Unspecified displaced fracture of second cervical vertebra, initial encounter for open fracture|Unspecified displaced fracture of second cervical vertebra, initial encounter for open fracture +C2833214|T037|AB|S12.100D|ICD10CM|Unsp disp fx of 2nd cervcal vert, subs for fx w routn heal|Unsp disp fx of 2nd cervcal vert, subs for fx w routn heal +C2833215|T037|AB|S12.100G|ICD10CM|Unsp disp fx of 2nd cervcal vert, subs for fx w delay heal|Unsp disp fx of 2nd cervcal vert, subs for fx w delay heal +C2833216|T037|AB|S12.100K|ICD10CM|Unsp disp fx of second cervcal vert, subs for fx w nonunion|Unsp disp fx of second cervcal vert, subs for fx w nonunion +C2833217|T037|AB|S12.100S|ICD10CM|Unspecified disp fx of second cervical vertebra, sequela|Unspecified disp fx of second cervical vertebra, sequela +C2833217|T037|PT|S12.100S|ICD10CM|Unspecified displaced fracture of second cervical vertebra, sequela|Unspecified displaced fracture of second cervical vertebra, sequela +C2833218|T037|AB|S12.101|ICD10CM|Unspecified nondisp fx of second cervical vertebra|Unspecified nondisp fx of second cervical vertebra +C2833218|T037|HT|S12.101|ICD10CM|Unspecified nondisplaced fracture of second cervical vertebra|Unspecified nondisplaced fracture of second cervical vertebra +C2833219|T037|AB|S12.101A|ICD10CM|Unsp nondisp fx of second cervical vertebra, init|Unsp nondisp fx of second cervical vertebra, init +C2833219|T037|PT|S12.101A|ICD10CM|Unspecified nondisplaced fracture of second cervical vertebra, initial encounter for closed fracture|Unspecified nondisplaced fracture of second cervical vertebra, initial encounter for closed fracture +C2833220|T037|AB|S12.101B|ICD10CM|Unsp nondisp fx of second cervical vertebra, init for opn fx|Unsp nondisp fx of second cervical vertebra, init for opn fx +C2833220|T037|PT|S12.101B|ICD10CM|Unspecified nondisplaced fracture of second cervical vertebra, initial encounter for open fracture|Unspecified nondisplaced fracture of second cervical vertebra, initial encounter for open fracture +C2833221|T037|AB|S12.101D|ICD10CM|Unsp nondisp fx of 2nd cervcal vert, 7thD|Unsp nondisp fx of 2nd cervcal vert, 7thD +C2833222|T037|AB|S12.101G|ICD10CM|Unsp nondisp fx of 2nd cervcal vert, 7thG|Unsp nondisp fx of 2nd cervcal vert, 7thG +C2833223|T037|AB|S12.101K|ICD10CM|Unsp nondisp fx of 2nd cervcal vert, subs for fx w nonunion|Unsp nondisp fx of 2nd cervcal vert, subs for fx w nonunion +C2833224|T037|AB|S12.101S|ICD10CM|Unspecified nondisp fx of second cervical vertebra, sequela|Unspecified nondisp fx of second cervical vertebra, sequela +C2833224|T037|PT|S12.101S|ICD10CM|Unspecified nondisplaced fracture of second cervical vertebra, sequela|Unspecified nondisplaced fracture of second cervical vertebra, sequela +C2833225|T037|AB|S12.11|ICD10CM|Type II dens fracture|Type II dens fracture +C2833225|T037|HT|S12.11|ICD10CM|Type II dens fracture|Type II dens fracture +C2833226|T037|AB|S12.110|ICD10CM|Anterior displaced Type II dens fracture|Anterior displaced Type II dens fracture +C2833226|T037|HT|S12.110|ICD10CM|Anterior displaced Type II dens fracture|Anterior displaced Type II dens fracture +C2833227|T037|AB|S12.110A|ICD10CM|Anterior displaced Type II dens fracture, init for clos fx|Anterior displaced Type II dens fracture, init for clos fx +C2833227|T037|PT|S12.110A|ICD10CM|Anterior displaced Type II dens fracture, initial encounter for closed fracture|Anterior displaced Type II dens fracture, initial encounter for closed fracture +C2833228|T037|AB|S12.110B|ICD10CM|Anterior displaced Type II dens fracture, init for opn fx|Anterior displaced Type II dens fracture, init for opn fx +C2833228|T037|PT|S12.110B|ICD10CM|Anterior displaced Type II dens fracture, initial encounter for open fracture|Anterior displaced Type II dens fracture, initial encounter for open fracture +C2833229|T037|AB|S12.110D|ICD10CM|Ant displ Type II dens fracture, subs for fx w routn heal|Ant displ Type II dens fracture, subs for fx w routn heal +C2833229|T037|PT|S12.110D|ICD10CM|Anterior displaced Type II dens fracture, subsequent encounter for fracture with routine healing|Anterior displaced Type II dens fracture, subsequent encounter for fracture with routine healing +C2833230|T037|AB|S12.110G|ICD10CM|Ant displ Type II dens fracture, subs for fx w delay heal|Ant displ Type II dens fracture, subs for fx w delay heal +C2833230|T037|PT|S12.110G|ICD10CM|Anterior displaced Type II dens fracture, subsequent encounter for fracture with delayed healing|Anterior displaced Type II dens fracture, subsequent encounter for fracture with delayed healing +C2833231|T037|AB|S12.110K|ICD10CM|Anterior displ Type II dens fracture, subs for fx w nonunion|Anterior displ Type II dens fracture, subs for fx w nonunion +C2833231|T037|PT|S12.110K|ICD10CM|Anterior displaced Type II dens fracture, subsequent encounter for fracture with nonunion|Anterior displaced Type II dens fracture, subsequent encounter for fracture with nonunion +C2833232|T037|PT|S12.110S|ICD10CM|Anterior displaced Type II dens fracture, sequela|Anterior displaced Type II dens fracture, sequela +C2833232|T037|AB|S12.110S|ICD10CM|Anterior displaced Type II dens fracture, sequela|Anterior displaced Type II dens fracture, sequela +C2833233|T037|AB|S12.111|ICD10CM|Posterior displaced Type II dens fracture|Posterior displaced Type II dens fracture +C2833233|T037|HT|S12.111|ICD10CM|Posterior displaced Type II dens fracture|Posterior displaced Type II dens fracture +C2833234|T037|AB|S12.111A|ICD10CM|Posterior displaced Type II dens fracture, init for clos fx|Posterior displaced Type II dens fracture, init for clos fx +C2833234|T037|PT|S12.111A|ICD10CM|Posterior displaced Type II dens fracture, initial encounter for closed fracture|Posterior displaced Type II dens fracture, initial encounter for closed fracture +C2833235|T037|AB|S12.111B|ICD10CM|Posterior displaced Type II dens fracture, init for opn fx|Posterior displaced Type II dens fracture, init for opn fx +C2833235|T037|PT|S12.111B|ICD10CM|Posterior displaced Type II dens fracture, initial encounter for open fracture|Posterior displaced Type II dens fracture, initial encounter for open fracture +C2833236|T037|AB|S12.111D|ICD10CM|Post displ Type II dens fracture, subs for fx w routn heal|Post displ Type II dens fracture, subs for fx w routn heal +C2833236|T037|PT|S12.111D|ICD10CM|Posterior displaced Type II dens fracture, subsequent encounter for fracture with routine healing|Posterior displaced Type II dens fracture, subsequent encounter for fracture with routine healing +C2833237|T037|AB|S12.111G|ICD10CM|Post displ Type II dens fracture, subs for fx w delay heal|Post displ Type II dens fracture, subs for fx w delay heal +C2833237|T037|PT|S12.111G|ICD10CM|Posterior displaced Type II dens fracture, subsequent encounter for fracture with delayed healing|Posterior displaced Type II dens fracture, subsequent encounter for fracture with delayed healing +C2833238|T037|AB|S12.111K|ICD10CM|Post displ Type II dens fracture, subs for fx w nonunion|Post displ Type II dens fracture, subs for fx w nonunion +C2833238|T037|PT|S12.111K|ICD10CM|Posterior displaced Type II dens fracture, subsequent encounter for fracture with nonunion|Posterior displaced Type II dens fracture, subsequent encounter for fracture with nonunion +C2833239|T037|PT|S12.111S|ICD10CM|Posterior displaced Type II dens fracture, sequela|Posterior displaced Type II dens fracture, sequela +C2833239|T037|AB|S12.111S|ICD10CM|Posterior displaced Type II dens fracture, sequela|Posterior displaced Type II dens fracture, sequela +C2833240|T037|AB|S12.112|ICD10CM|Nondisplaced Type II dens fracture|Nondisplaced Type II dens fracture +C2833240|T037|HT|S12.112|ICD10CM|Nondisplaced Type II dens fracture|Nondisplaced Type II dens fracture +C2833241|T037|AB|S12.112A|ICD10CM|Nondisplaced Type II dens fracture, init for clos fx|Nondisplaced Type II dens fracture, init for clos fx +C2833241|T037|PT|S12.112A|ICD10CM|Nondisplaced Type II dens fracture, initial encounter for closed fracture|Nondisplaced Type II dens fracture, initial encounter for closed fracture +C2833242|T037|AB|S12.112B|ICD10CM|Nondisplaced Type II dens fracture, init for opn fx|Nondisplaced Type II dens fracture, init for opn fx +C2833242|T037|PT|S12.112B|ICD10CM|Nondisplaced Type II dens fracture, initial encounter for open fracture|Nondisplaced Type II dens fracture, initial encounter for open fracture +C2833243|T037|AB|S12.112D|ICD10CM|Nondisplaced Type II dens fracture, subs for fx w routn heal|Nondisplaced Type II dens fracture, subs for fx w routn heal +C2833243|T037|PT|S12.112D|ICD10CM|Nondisplaced Type II dens fracture, subsequent encounter for fracture with routine healing|Nondisplaced Type II dens fracture, subsequent encounter for fracture with routine healing +C2833244|T037|AB|S12.112G|ICD10CM|Nondisplaced Type II dens fracture, subs for fx w delay heal|Nondisplaced Type II dens fracture, subs for fx w delay heal +C2833244|T037|PT|S12.112G|ICD10CM|Nondisplaced Type II dens fracture, subsequent encounter for fracture with delayed healing|Nondisplaced Type II dens fracture, subsequent encounter for fracture with delayed healing +C2833245|T037|AB|S12.112K|ICD10CM|Nondisplaced Type II dens fracture, subs for fx w nonunion|Nondisplaced Type II dens fracture, subs for fx w nonunion +C2833245|T037|PT|S12.112K|ICD10CM|Nondisplaced Type II dens fracture, subsequent encounter for fracture with nonunion|Nondisplaced Type II dens fracture, subsequent encounter for fracture with nonunion +C2833246|T037|AB|S12.112S|ICD10CM|Nondisplaced Type II dens fracture, sequela|Nondisplaced Type II dens fracture, sequela +C2833246|T037|PT|S12.112S|ICD10CM|Nondisplaced Type II dens fracture, sequela|Nondisplaced Type II dens fracture, sequela +C2833247|T037|AB|S12.12|ICD10CM|Other dens fracture|Other dens fracture +C2833247|T037|HT|S12.12|ICD10CM|Other dens fracture|Other dens fracture +C2833248|T037|AB|S12.120|ICD10CM|Other displaced dens fracture|Other displaced dens fracture +C2833248|T037|HT|S12.120|ICD10CM|Other displaced dens fracture|Other displaced dens fracture +C2833249|T037|AB|S12.120A|ICD10CM|Oth displaced dens fracture, init encntr for closed fracture|Oth displaced dens fracture, init encntr for closed fracture +C2833249|T037|PT|S12.120A|ICD10CM|Other displaced dens fracture, initial encounter for closed fracture|Other displaced dens fracture, initial encounter for closed fracture +C2833250|T037|AB|S12.120B|ICD10CM|Other displaced dens fracture, init encntr for open fracture|Other displaced dens fracture, init encntr for open fracture +C2833250|T037|PT|S12.120B|ICD10CM|Other displaced dens fracture, initial encounter for open fracture|Other displaced dens fracture, initial encounter for open fracture +C2833251|T037|AB|S12.120D|ICD10CM|Oth displaced dens fracture, subs for fx w routn heal|Oth displaced dens fracture, subs for fx w routn heal +C2833251|T037|PT|S12.120D|ICD10CM|Other displaced dens fracture, subsequent encounter for fracture with routine healing|Other displaced dens fracture, subsequent encounter for fracture with routine healing +C2833252|T037|AB|S12.120G|ICD10CM|Oth displaced dens fracture, subs for fx w delay heal|Oth displaced dens fracture, subs for fx w delay heal +C2833252|T037|PT|S12.120G|ICD10CM|Other displaced dens fracture, subsequent encounter for fracture with delayed healing|Other displaced dens fracture, subsequent encounter for fracture with delayed healing +C2833253|T037|AB|S12.120K|ICD10CM|Oth displaced dens fracture, subs for fx w nonunion|Oth displaced dens fracture, subs for fx w nonunion +C2833253|T037|PT|S12.120K|ICD10CM|Other displaced dens fracture, subsequent encounter for fracture with nonunion|Other displaced dens fracture, subsequent encounter for fracture with nonunion +C2833254|T037|AB|S12.120S|ICD10CM|Other displaced dens fracture, sequela|Other displaced dens fracture, sequela +C2833254|T037|PT|S12.120S|ICD10CM|Other displaced dens fracture, sequela|Other displaced dens fracture, sequela +C2833255|T037|AB|S12.121|ICD10CM|Other nondisplaced dens fracture|Other nondisplaced dens fracture +C2833255|T037|HT|S12.121|ICD10CM|Other nondisplaced dens fracture|Other nondisplaced dens fracture +C2833256|T037|AB|S12.121A|ICD10CM|Oth nondisplaced dens fracture, init for clos fx|Oth nondisplaced dens fracture, init for clos fx +C2833256|T037|PT|S12.121A|ICD10CM|Other nondisplaced dens fracture, initial encounter for closed fracture|Other nondisplaced dens fracture, initial encounter for closed fracture +C2833257|T037|AB|S12.121B|ICD10CM|Oth nondisplaced dens fracture, init for opn fx|Oth nondisplaced dens fracture, init for opn fx +C2833257|T037|PT|S12.121B|ICD10CM|Other nondisplaced dens fracture, initial encounter for open fracture|Other nondisplaced dens fracture, initial encounter for open fracture +C2833258|T037|AB|S12.121D|ICD10CM|Oth nondisplaced dens fracture, subs for fx w routn heal|Oth nondisplaced dens fracture, subs for fx w routn heal +C2833258|T037|PT|S12.121D|ICD10CM|Other nondisplaced dens fracture, subsequent encounter for fracture with routine healing|Other nondisplaced dens fracture, subsequent encounter for fracture with routine healing +C2833259|T037|AB|S12.121G|ICD10CM|Oth nondisplaced dens fracture, subs for fx w delay heal|Oth nondisplaced dens fracture, subs for fx w delay heal +C2833259|T037|PT|S12.121G|ICD10CM|Other nondisplaced dens fracture, subsequent encounter for fracture with delayed healing|Other nondisplaced dens fracture, subsequent encounter for fracture with delayed healing +C2833260|T037|AB|S12.121K|ICD10CM|Oth nondisplaced dens fracture, subs for fx w nonunion|Oth nondisplaced dens fracture, subs for fx w nonunion +C2833260|T037|PT|S12.121K|ICD10CM|Other nondisplaced dens fracture, subsequent encounter for fracture with nonunion|Other nondisplaced dens fracture, subsequent encounter for fracture with nonunion +C2833261|T037|AB|S12.121S|ICD10CM|Other nondisplaced dens fracture, sequela|Other nondisplaced dens fracture, sequela +C2833261|T037|PT|S12.121S|ICD10CM|Other nondisplaced dens fracture, sequela|Other nondisplaced dens fracture, sequela +C2833262|T037|AB|S12.13|ICD10CM|Unsp traumatic spondylolisthesis of second cervical vertebra|Unsp traumatic spondylolisthesis of second cervical vertebra +C2833262|T037|HT|S12.13|ICD10CM|Unspecified traumatic spondylolisthesis of second cervical vertebra|Unspecified traumatic spondylolisthesis of second cervical vertebra +C2833263|T037|AB|S12.130|ICD10CM|Unsp traum displ spondylolysis of second cervcal vertebra|Unsp traum displ spondylolysis of second cervcal vertebra +C2833263|T037|HT|S12.130|ICD10CM|Unspecified traumatic displaced spondylolisthesis of second cervical vertebra|Unspecified traumatic displaced spondylolisthesis of second cervical vertebra +C2833264|T037|AB|S12.130A|ICD10CM|Unsp traum displ spondylolysis of second cervcal vert, init|Unsp traum displ spondylolysis of second cervcal vert, init +C2833265|T037|AB|S12.130B|ICD10CM|Unsp traum displ spondylolysis of 2nd cervcal vert, 7thB|Unsp traum displ spondylolysis of 2nd cervcal vert, 7thB +C2833266|T037|AB|S12.130D|ICD10CM|Unsp traum displ spondylolysis of 2nd cervcal vert, 7thD|Unsp traum displ spondylolysis of 2nd cervcal vert, 7thD +C2833267|T037|AB|S12.130G|ICD10CM|Unsp traum displ spondylolysis of 2nd cervcal vert, 7thG|Unsp traum displ spondylolysis of 2nd cervcal vert, 7thG +C2833268|T037|AB|S12.130K|ICD10CM|Unsp traum displ spondylolysis of 2nd cervcal vert, 7thK|Unsp traum displ spondylolysis of 2nd cervcal vert, 7thK +C2833269|T037|AB|S12.130S|ICD10CM|Unsp traum displ spondylolysis of second cervcal vert, sqla|Unsp traum displ spondylolysis of second cervcal vert, sqla +C2833269|T037|PT|S12.130S|ICD10CM|Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, sequela|Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, sequela +C2833270|T037|AB|S12.131|ICD10CM|Unsp traum nondisp spondylolysis of second cervcal vertebra|Unsp traum nondisp spondylolysis of second cervcal vertebra +C2833270|T037|HT|S12.131|ICD10CM|Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra|Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra +C2833271|T037|AB|S12.131A|ICD10CM|Unsp traum nondisp spondylolysis of 2nd cervcal vert, init|Unsp traum nondisp spondylolysis of 2nd cervcal vert, init +C2833272|T037|AB|S12.131B|ICD10CM|Unsp traum nondisp spondylolysis of 2nd cervcal vert, 7thB|Unsp traum nondisp spondylolysis of 2nd cervcal vert, 7thB +C2833273|T037|AB|S12.131D|ICD10CM|Unsp traum nondisp spondylolysis of 2nd cervcal vert, 7thD|Unsp traum nondisp spondylolysis of 2nd cervcal vert, 7thD +C2833274|T037|AB|S12.131G|ICD10CM|Unsp traum nondisp spondylolysis of 2nd cervcal vert, 7thG|Unsp traum nondisp spondylolysis of 2nd cervcal vert, 7thG +C2833275|T037|AB|S12.131K|ICD10CM|Unsp traum nondisp spondylolysis of 2nd cervcal vert, 7thK|Unsp traum nondisp spondylolysis of 2nd cervcal vert, 7thK +C2833276|T037|AB|S12.131S|ICD10CM|Unsp traum nondisp spondylolysis of 2nd cervcal vert, sqla|Unsp traum nondisp spondylolysis of 2nd cervcal vert, sqla +C2833276|T037|PT|S12.131S|ICD10CM|Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, sequela|Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, sequela +C2833277|T037|HT|S12.14|ICD10CM|Type III traumatic spondylolisthesis of second cervical vertebra|Type III traumatic spondylolisthesis of second cervical vertebra +C2833277|T037|AB|S12.14|ICD10CM|Type III traumatic spondylolysis of second cervcal vertebra|Type III traumatic spondylolysis of second cervcal vertebra +C2833278|T037|AB|S12.14XA|ICD10CM|Type III traum spondylolysis of second cervcal vert, init|Type III traum spondylolysis of second cervcal vert, init +C2833279|T037|AB|S12.14XB|ICD10CM|Type III traum spondylolysis of 2nd cervcal vert, 7thB|Type III traum spondylolysis of 2nd cervcal vert, 7thB +C2833280|T037|AB|S12.14XD|ICD10CM|Type III traum spondylolysis of 2nd cervcal vert, 7thD|Type III traum spondylolysis of 2nd cervcal vert, 7thD +C2833281|T037|AB|S12.14XG|ICD10CM|Type III traum spondylolysis of 2nd cervcal vert, 7thG|Type III traum spondylolysis of 2nd cervcal vert, 7thG +C2833282|T037|AB|S12.14XK|ICD10CM|Type III traum spondylolysis of 2nd cervcal vert, 7thK|Type III traum spondylolysis of 2nd cervcal vert, 7thK +C2833283|T037|AB|S12.14XS|ICD10CM|Type III traum spondylolysis of second cervcal vert, sequela|Type III traum spondylolysis of second cervcal vert, sequela +C2833283|T037|PT|S12.14XS|ICD10CM|Type III traumatic spondylolisthesis of second cervical vertebra, sequela|Type III traumatic spondylolisthesis of second cervical vertebra, sequela +C2833284|T037|AB|S12.15|ICD10CM|Oth traumatic spondylolisthesis of second cervical vertebra|Oth traumatic spondylolisthesis of second cervical vertebra +C2833284|T037|HT|S12.15|ICD10CM|Other traumatic spondylolisthesis of second cervical vertebra|Other traumatic spondylolisthesis of second cervical vertebra +C2833285|T037|AB|S12.150|ICD10CM|Oth traumatic displ spondylolysis of second cervcal vertebra|Oth traumatic displ spondylolysis of second cervcal vertebra +C2833285|T037|HT|S12.150|ICD10CM|Other traumatic displaced spondylolisthesis of second cervical vertebra|Other traumatic displaced spondylolisthesis of second cervical vertebra +C2833286|T037|AB|S12.150A|ICD10CM|Oth traum displ spondylolysis of second cervcal vert, init|Oth traum displ spondylolysis of second cervcal vert, init +C2833287|T037|AB|S12.150B|ICD10CM|Oth traum displ spondylolysis of 2nd cervcal vert, 7thB|Oth traum displ spondylolysis of 2nd cervcal vert, 7thB +C2833288|T037|AB|S12.150D|ICD10CM|Oth traum displ spondylolysis of 2nd cervcal vert, 7thD|Oth traum displ spondylolysis of 2nd cervcal vert, 7thD +C2833289|T037|AB|S12.150G|ICD10CM|Oth traum displ spondylolysis of 2nd cervcal vert, 7thG|Oth traum displ spondylolysis of 2nd cervcal vert, 7thG +C2833290|T037|AB|S12.150K|ICD10CM|Oth traum displ spondylolysis of 2nd cervcal vert, 7thK|Oth traum displ spondylolysis of 2nd cervcal vert, 7thK +C2833291|T037|AB|S12.150S|ICD10CM|Oth traum displ spondylolysis of second cervcal vert, sqla|Oth traum displ spondylolysis of second cervcal vert, sqla +C2833291|T037|PT|S12.150S|ICD10CM|Other traumatic displaced spondylolisthesis of second cervical vertebra, sequela|Other traumatic displaced spondylolisthesis of second cervical vertebra, sequela +C2833292|T037|AB|S12.151|ICD10CM|Oth traum nondisp spondylolysis of second cervcal vertebra|Oth traum nondisp spondylolysis of second cervcal vertebra +C2833292|T037|HT|S12.151|ICD10CM|Other traumatic nondisplaced spondylolisthesis of second cervical vertebra|Other traumatic nondisplaced spondylolisthesis of second cervical vertebra +C2833293|T037|AB|S12.151A|ICD10CM|Oth traum nondisp spondylolysis of second cervcal vert, init|Oth traum nondisp spondylolysis of second cervcal vert, init +C2833294|T037|AB|S12.151B|ICD10CM|Oth traum nondisp spondylolysis of 2nd cervcal vert, 7thB|Oth traum nondisp spondylolysis of 2nd cervcal vert, 7thB +C2833295|T037|AB|S12.151D|ICD10CM|Oth traum nondisp spondylolysis of 2nd cervcal vert, 7thD|Oth traum nondisp spondylolysis of 2nd cervcal vert, 7thD +C2833296|T037|AB|S12.151G|ICD10CM|Oth traum nondisp spondylolysis of 2nd cervcal vert, 7thG|Oth traum nondisp spondylolysis of 2nd cervcal vert, 7thG +C2833297|T037|AB|S12.151K|ICD10CM|Oth traum nondisp spondylolysis of 2nd cervcal vert, 7thK|Oth traum nondisp spondylolysis of 2nd cervcal vert, 7thK +C2833298|T037|AB|S12.151S|ICD10CM|Oth traum nondisp spondylolysis of second cervcal vert, sqla|Oth traum nondisp spondylolysis of second cervcal vert, sqla +C2833298|T037|PT|S12.151S|ICD10CM|Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, sequela|Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, sequela +C2833299|T037|AB|S12.19|ICD10CM|Other fracture of second cervical vertebra|Other fracture of second cervical vertebra +C2833299|T037|HT|S12.19|ICD10CM|Other fracture of second cervical vertebra|Other fracture of second cervical vertebra +C2833300|T037|AB|S12.190|ICD10CM|Other displaced fracture of second cervical vertebra|Other displaced fracture of second cervical vertebra +C2833300|T037|HT|S12.190|ICD10CM|Other displaced fracture of second cervical vertebra|Other displaced fracture of second cervical vertebra +C2833301|T037|AB|S12.190A|ICD10CM|Oth disp fx of second cervical vertebra, init for clos fx|Oth disp fx of second cervical vertebra, init for clos fx +C2833301|T037|PT|S12.190A|ICD10CM|Other displaced fracture of second cervical vertebra, initial encounter for closed fracture|Other displaced fracture of second cervical vertebra, initial encounter for closed fracture +C2833302|T037|AB|S12.190B|ICD10CM|Oth disp fx of second cervical vertebra, init for opn fx|Oth disp fx of second cervical vertebra, init for opn fx +C2833302|T037|PT|S12.190B|ICD10CM|Other displaced fracture of second cervical vertebra, initial encounter for open fracture|Other displaced fracture of second cervical vertebra, initial encounter for open fracture +C2833303|T037|AB|S12.190D|ICD10CM|Oth disp fx of second cervcal vert, subs for fx w routn heal|Oth disp fx of second cervcal vert, subs for fx w routn heal +C2833304|T037|AB|S12.190G|ICD10CM|Oth disp fx of second cervcal vert, subs for fx w delay heal|Oth disp fx of second cervcal vert, subs for fx w delay heal +C2833305|T037|AB|S12.190K|ICD10CM|Oth disp fx of second cervcal vert, subs for fx w nonunion|Oth disp fx of second cervcal vert, subs for fx w nonunion +C2833306|T037|AB|S12.190S|ICD10CM|Other disp fx of second cervical vertebra, sequela|Other disp fx of second cervical vertebra, sequela +C2833306|T037|PT|S12.190S|ICD10CM|Other displaced fracture of second cervical vertebra, sequela|Other displaced fracture of second cervical vertebra, sequela +C2833307|T037|AB|S12.191|ICD10CM|Other nondisplaced fracture of second cervical vertebra|Other nondisplaced fracture of second cervical vertebra +C2833307|T037|HT|S12.191|ICD10CM|Other nondisplaced fracture of second cervical vertebra|Other nondisplaced fracture of second cervical vertebra +C2833308|T037|AB|S12.191A|ICD10CM|Oth nondisp fx of second cervical vertebra, init for clos fx|Oth nondisp fx of second cervical vertebra, init for clos fx +C2833308|T037|PT|S12.191A|ICD10CM|Other nondisplaced fracture of second cervical vertebra, initial encounter for closed fracture|Other nondisplaced fracture of second cervical vertebra, initial encounter for closed fracture +C2833309|T037|AB|S12.191B|ICD10CM|Oth nondisp fx of second cervical vertebra, init for opn fx|Oth nondisp fx of second cervical vertebra, init for opn fx +C2833309|T037|PT|S12.191B|ICD10CM|Other nondisplaced fracture of second cervical vertebra, initial encounter for open fracture|Other nondisplaced fracture of second cervical vertebra, initial encounter for open fracture +C2833310|T037|AB|S12.191D|ICD10CM|Oth nondisp fx of 2nd cervcal vert, subs for fx w routn heal|Oth nondisp fx of 2nd cervcal vert, subs for fx w routn heal +C2833311|T037|AB|S12.191G|ICD10CM|Oth nondisp fx of 2nd cervcal vert, subs for fx w delay heal|Oth nondisp fx of 2nd cervcal vert, subs for fx w delay heal +C2833312|T037|AB|S12.191K|ICD10CM|Oth nondisp fx of 2nd cervcal vert, subs for fx w nonunion|Oth nondisp fx of 2nd cervcal vert, subs for fx w nonunion +C2833313|T037|AB|S12.191S|ICD10CM|Other nondisp fx of second cervical vertebra, sequela|Other nondisp fx of second cervical vertebra, sequela +C2833313|T037|PT|S12.191S|ICD10CM|Other nondisplaced fracture of second cervical vertebra, sequela|Other nondisplaced fracture of second cervical vertebra, sequela +C0478220|T037|PT|S12.2|ICD10|Fracture of other specified cervical vertebra|Fracture of other specified cervical vertebra +C0840400|T037|HT|S12.2|ICD10CM|Fracture of third cervical vertebra|Fracture of third cervical vertebra +C0840400|T037|AB|S12.2|ICD10CM|Fracture of third cervical vertebra|Fracture of third cervical vertebra +C2833314|T037|AB|S12.20|ICD10CM|Unspecified fracture of third cervical vertebra|Unspecified fracture of third cervical vertebra +C2833314|T037|HT|S12.20|ICD10CM|Unspecified fracture of third cervical vertebra|Unspecified fracture of third cervical vertebra +C2833315|T037|AB|S12.200|ICD10CM|Unspecified displaced fracture of third cervical vertebra|Unspecified displaced fracture of third cervical vertebra +C2833315|T037|HT|S12.200|ICD10CM|Unspecified displaced fracture of third cervical vertebra|Unspecified displaced fracture of third cervical vertebra +C2833316|T037|AB|S12.200A|ICD10CM|Unsp disp fx of third cervical vertebra, init for clos fx|Unsp disp fx of third cervical vertebra, init for clos fx +C2833316|T037|PT|S12.200A|ICD10CM|Unspecified displaced fracture of third cervical vertebra, initial encounter for closed fracture|Unspecified displaced fracture of third cervical vertebra, initial encounter for closed fracture +C2833317|T037|AB|S12.200B|ICD10CM|Unsp disp fx of third cervical vertebra, init for opn fx|Unsp disp fx of third cervical vertebra, init for opn fx +C2833317|T037|PT|S12.200B|ICD10CM|Unspecified displaced fracture of third cervical vertebra, initial encounter for open fracture|Unspecified displaced fracture of third cervical vertebra, initial encounter for open fracture +C2833318|T037|AB|S12.200D|ICD10CM|Unsp disp fx of third cervcal vert, subs for fx w routn heal|Unsp disp fx of third cervcal vert, subs for fx w routn heal +C2833319|T037|AB|S12.200G|ICD10CM|Unsp disp fx of third cervcal vert, subs for fx w delay heal|Unsp disp fx of third cervcal vert, subs for fx w delay heal +C2833320|T037|AB|S12.200K|ICD10CM|Unsp disp fx of third cervcal vert, subs for fx w nonunion|Unsp disp fx of third cervcal vert, subs for fx w nonunion +C2833321|T037|AB|S12.200S|ICD10CM|Unspecified disp fx of third cervical vertebra, sequela|Unspecified disp fx of third cervical vertebra, sequela +C2833321|T037|PT|S12.200S|ICD10CM|Unspecified displaced fracture of third cervical vertebra, sequela|Unspecified displaced fracture of third cervical vertebra, sequela +C2833322|T037|AB|S12.201|ICD10CM|Unspecified nondisplaced fracture of third cervical vertebra|Unspecified nondisplaced fracture of third cervical vertebra +C2833322|T037|HT|S12.201|ICD10CM|Unspecified nondisplaced fracture of third cervical vertebra|Unspecified nondisplaced fracture of third cervical vertebra +C2833323|T037|AB|S12.201A|ICD10CM|Unsp nondisp fx of third cervical vertebra, init for clos fx|Unsp nondisp fx of third cervical vertebra, init for clos fx +C2833323|T037|PT|S12.201A|ICD10CM|Unspecified nondisplaced fracture of third cervical vertebra, initial encounter for closed fracture|Unspecified nondisplaced fracture of third cervical vertebra, initial encounter for closed fracture +C2833324|T037|AB|S12.201B|ICD10CM|Unsp nondisp fx of third cervical vertebra, init for opn fx|Unsp nondisp fx of third cervical vertebra, init for opn fx +C2833324|T037|PT|S12.201B|ICD10CM|Unspecified nondisplaced fracture of third cervical vertebra, initial encounter for open fracture|Unspecified nondisplaced fracture of third cervical vertebra, initial encounter for open fracture +C2833325|T037|AB|S12.201D|ICD10CM|Unsp nondisp fx of 3rd cervcal vert, 7thD|Unsp nondisp fx of 3rd cervcal vert, 7thD +C2833326|T037|AB|S12.201G|ICD10CM|Unsp nondisp fx of 3rd cervcal vert, 7thG|Unsp nondisp fx of 3rd cervcal vert, 7thG +C2833327|T037|AB|S12.201K|ICD10CM|Unsp nondisp fx of 3rd cervcal vert, subs for fx w nonunion|Unsp nondisp fx of 3rd cervcal vert, subs for fx w nonunion +C2833328|T037|AB|S12.201S|ICD10CM|Unspecified nondisp fx of third cervical vertebra, sequela|Unspecified nondisp fx of third cervical vertebra, sequela +C2833328|T037|PT|S12.201S|ICD10CM|Unspecified nondisplaced fracture of third cervical vertebra, sequela|Unspecified nondisplaced fracture of third cervical vertebra, sequela +C2833329|T037|AB|S12.23|ICD10CM|Unsp traumatic spondylolisthesis of third cervical vertebra|Unsp traumatic spondylolisthesis of third cervical vertebra +C2833329|T037|HT|S12.23|ICD10CM|Unspecified traumatic spondylolisthesis of third cervical vertebra|Unspecified traumatic spondylolisthesis of third cervical vertebra +C2833330|T037|AB|S12.230|ICD10CM|Unsp traumatic displ spondylolysis of third cervcal vertebra|Unsp traumatic displ spondylolysis of third cervcal vertebra +C2833330|T037|HT|S12.230|ICD10CM|Unspecified traumatic displaced spondylolisthesis of third cervical vertebra|Unspecified traumatic displaced spondylolisthesis of third cervical vertebra +C2833331|T037|AB|S12.230A|ICD10CM|Unsp traum displ spondylolysis of third cervcal vert, init|Unsp traum displ spondylolysis of third cervcal vert, init +C2833332|T037|AB|S12.230B|ICD10CM|Unsp traum displ spondylolysis of 3rd cervcal vert, 7thB|Unsp traum displ spondylolysis of 3rd cervcal vert, 7thB +C2833333|T037|AB|S12.230D|ICD10CM|Unsp traum displ spondylolysis of 3rd cervcal vert, 7thD|Unsp traum displ spondylolysis of 3rd cervcal vert, 7thD +C2833334|T037|AB|S12.230G|ICD10CM|Unsp traum displ spondylolysis of 3rd cervcal vert, 7thG|Unsp traum displ spondylolysis of 3rd cervcal vert, 7thG +C2833335|T037|AB|S12.230K|ICD10CM|Unsp traum displ spondylolysis of 3rd cervcal vert, 7thK|Unsp traum displ spondylolysis of 3rd cervcal vert, 7thK +C2833336|T037|AB|S12.230S|ICD10CM|Unsp traum displ spondylolysis of third cervcal vert, sqla|Unsp traum displ spondylolysis of third cervcal vert, sqla +C2833336|T037|PT|S12.230S|ICD10CM|Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, sequela|Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, sequela +C2833337|T037|AB|S12.231|ICD10CM|Unsp traum nondisp spondylolysis of third cervcal vertebra|Unsp traum nondisp spondylolysis of third cervcal vertebra +C2833337|T037|HT|S12.231|ICD10CM|Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra|Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra +C2833338|T037|AB|S12.231A|ICD10CM|Unsp traum nondisp spondylolysis of third cervcal vert, init|Unsp traum nondisp spondylolysis of third cervcal vert, init +C2833339|T037|AB|S12.231B|ICD10CM|Unsp traum nondisp spondylolysis of 3rd cervcal vert, 7thB|Unsp traum nondisp spondylolysis of 3rd cervcal vert, 7thB +C2833340|T037|AB|S12.231D|ICD10CM|Unsp traum nondisp spondylolysis of 3rd cervcal vert, 7thD|Unsp traum nondisp spondylolysis of 3rd cervcal vert, 7thD +C2833341|T037|AB|S12.231G|ICD10CM|Unsp traum nondisp spondylolysis of 3rd cervcal vert, 7thG|Unsp traum nondisp spondylolysis of 3rd cervcal vert, 7thG +C2833342|T037|AB|S12.231K|ICD10CM|Unsp traum nondisp spondylolysis of 3rd cervcal vert, 7thK|Unsp traum nondisp spondylolysis of 3rd cervcal vert, 7thK +C2833343|T037|AB|S12.231S|ICD10CM|Unsp traum nondisp spondylolysis of third cervcal vert, sqla|Unsp traum nondisp spondylolysis of third cervcal vert, sqla +C2833343|T037|PT|S12.231S|ICD10CM|Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, sequela|Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, sequela +C2833344|T037|HT|S12.24|ICD10CM|Type III traumatic spondylolisthesis of third cervical vertebra|Type III traumatic spondylolisthesis of third cervical vertebra +C2833344|T037|AB|S12.24|ICD10CM|Type III traumatic spondylolysis of third cervcal vertebra|Type III traumatic spondylolysis of third cervcal vertebra +C2833345|T037|AB|S12.24XA|ICD10CM|Type III traum spondylolysis of third cervcal vertebra, init|Type III traum spondylolysis of third cervcal vertebra, init +C2833346|T037|AB|S12.24XB|ICD10CM|Type III traum spondylolysis of 3rd cervcal vert, 7thB|Type III traum spondylolysis of 3rd cervcal vert, 7thB +C2833346|T037|PT|S12.24XB|ICD10CM|Type III traumatic spondylolisthesis of third cervical vertebra, initial encounter for open fracture|Type III traumatic spondylolisthesis of third cervical vertebra, initial encounter for open fracture +C2833347|T037|AB|S12.24XD|ICD10CM|Type III traum spondylolysis of 3rd cervcal vert, 7thD|Type III traum spondylolysis of 3rd cervcal vert, 7thD +C2833348|T037|AB|S12.24XG|ICD10CM|Type III traum spondylolysis of 3rd cervcal vert, 7thG|Type III traum spondylolysis of 3rd cervcal vert, 7thG +C2833349|T037|AB|S12.24XK|ICD10CM|Type III traum spondylolysis of 3rd cervcal vert, 7thK|Type III traum spondylolysis of 3rd cervcal vert, 7thK +C2833350|T037|AB|S12.24XS|ICD10CM|Type III traum spondylolysis of third cervcal vert, sequela|Type III traum spondylolysis of third cervcal vert, sequela +C2833350|T037|PT|S12.24XS|ICD10CM|Type III traumatic spondylolisthesis of third cervical vertebra, sequela|Type III traumatic spondylolisthesis of third cervical vertebra, sequela +C2833351|T037|AB|S12.25|ICD10CM|Other traumatic spondylolisthesis of third cervical vertebra|Other traumatic spondylolisthesis of third cervical vertebra +C2833351|T037|HT|S12.25|ICD10CM|Other traumatic spondylolisthesis of third cervical vertebra|Other traumatic spondylolisthesis of third cervical vertebra +C2833352|T037|AB|S12.250|ICD10CM|Oth traumatic displ spondylolysis of third cervcal vertebra|Oth traumatic displ spondylolysis of third cervcal vertebra +C2833352|T037|HT|S12.250|ICD10CM|Other traumatic displaced spondylolisthesis of third cervical vertebra|Other traumatic displaced spondylolisthesis of third cervical vertebra +C2833353|T037|AB|S12.250A|ICD10CM|Oth traum displ spondylolysis of third cervcal vert, init|Oth traum displ spondylolysis of third cervcal vert, init +C2833354|T037|AB|S12.250B|ICD10CM|Oth traum displ spondylolysis of 3rd cervcal vert, 7thB|Oth traum displ spondylolysis of 3rd cervcal vert, 7thB +C2833355|T037|AB|S12.250D|ICD10CM|Oth traum displ spondylolysis of 3rd cervcal vert, 7thD|Oth traum displ spondylolysis of 3rd cervcal vert, 7thD +C2833356|T037|AB|S12.250G|ICD10CM|Oth traum displ spondylolysis of 3rd cervcal vert, 7thG|Oth traum displ spondylolysis of 3rd cervcal vert, 7thG +C2833357|T037|AB|S12.250K|ICD10CM|Oth traum displ spondylolysis of 3rd cervcal vert, 7thK|Oth traum displ spondylolysis of 3rd cervcal vert, 7thK +C2833358|T037|AB|S12.250S|ICD10CM|Oth traum displ spondylolysis of third cervcal vert, sequela|Oth traum displ spondylolysis of third cervcal vert, sequela +C2833358|T037|PT|S12.250S|ICD10CM|Other traumatic displaced spondylolisthesis of third cervical vertebra, sequela|Other traumatic displaced spondylolisthesis of third cervical vertebra, sequela +C2833359|T037|AB|S12.251|ICD10CM|Oth traum nondisp spondylolysis of third cervcal vertebra|Oth traum nondisp spondylolysis of third cervcal vertebra +C2833359|T037|HT|S12.251|ICD10CM|Other traumatic nondisplaced spondylolisthesis of third cervical vertebra|Other traumatic nondisplaced spondylolisthesis of third cervical vertebra +C2833360|T037|AB|S12.251A|ICD10CM|Oth traum nondisp spondylolysis of third cervcal vert, init|Oth traum nondisp spondylolysis of third cervcal vert, init +C2833361|T037|AB|S12.251B|ICD10CM|Oth traum nondisp spondylolysis of 3rd cervcal vert, 7thB|Oth traum nondisp spondylolysis of 3rd cervcal vert, 7thB +C2833362|T037|AB|S12.251D|ICD10CM|Oth traum nondisp spondylolysis of 3rd cervcal vert, 7thD|Oth traum nondisp spondylolysis of 3rd cervcal vert, 7thD +C2833363|T037|AB|S12.251G|ICD10CM|Oth traum nondisp spondylolysis of 3rd cervcal vert, 7thG|Oth traum nondisp spondylolysis of 3rd cervcal vert, 7thG +C2833364|T037|AB|S12.251K|ICD10CM|Oth traum nondisp spondylolysis of 3rd cervcal vert, 7thK|Oth traum nondisp spondylolysis of 3rd cervcal vert, 7thK +C2833365|T037|AB|S12.251S|ICD10CM|Oth traum nondisp spondylolysis of third cervcal vert, sqla|Oth traum nondisp spondylolysis of third cervcal vert, sqla +C2833365|T037|PT|S12.251S|ICD10CM|Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, sequela|Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, sequela +C2833366|T037|AB|S12.29|ICD10CM|Other fracture of third cervical vertebra|Other fracture of third cervical vertebra +C2833366|T037|HT|S12.29|ICD10CM|Other fracture of third cervical vertebra|Other fracture of third cervical vertebra +C2833367|T037|AB|S12.290|ICD10CM|Other displaced fracture of third cervical vertebra|Other displaced fracture of third cervical vertebra +C2833367|T037|HT|S12.290|ICD10CM|Other displaced fracture of third cervical vertebra|Other displaced fracture of third cervical vertebra +C2833368|T037|AB|S12.290A|ICD10CM|Oth disp fx of third cervical vertebra, init for clos fx|Oth disp fx of third cervical vertebra, init for clos fx +C2833368|T037|PT|S12.290A|ICD10CM|Other displaced fracture of third cervical vertebra, initial encounter for closed fracture|Other displaced fracture of third cervical vertebra, initial encounter for closed fracture +C2833369|T037|AB|S12.290B|ICD10CM|Oth disp fx of third cervical vertebra, init for opn fx|Oth disp fx of third cervical vertebra, init for opn fx +C2833369|T037|PT|S12.290B|ICD10CM|Other displaced fracture of third cervical vertebra, initial encounter for open fracture|Other displaced fracture of third cervical vertebra, initial encounter for open fracture +C2833370|T037|AB|S12.290D|ICD10CM|Oth disp fx of third cervcal vert, subs for fx w routn heal|Oth disp fx of third cervcal vert, subs for fx w routn heal +C2833371|T037|AB|S12.290G|ICD10CM|Oth disp fx of third cervcal vert, subs for fx w delay heal|Oth disp fx of third cervcal vert, subs for fx w delay heal +C2833372|T037|AB|S12.290K|ICD10CM|Oth disp fx of third cervcal vert, subs for fx w nonunion|Oth disp fx of third cervcal vert, subs for fx w nonunion +C2833372|T037|PT|S12.290K|ICD10CM|Other displaced fracture of third cervical vertebra, subsequent encounter for fracture with nonunion|Other displaced fracture of third cervical vertebra, subsequent encounter for fracture with nonunion +C2833373|T037|AB|S12.290S|ICD10CM|Other displaced fracture of third cervical vertebra, sequela|Other displaced fracture of third cervical vertebra, sequela +C2833373|T037|PT|S12.290S|ICD10CM|Other displaced fracture of third cervical vertebra, sequela|Other displaced fracture of third cervical vertebra, sequela +C2833374|T037|AB|S12.291|ICD10CM|Other nondisplaced fracture of third cervical vertebra|Other nondisplaced fracture of third cervical vertebra +C2833374|T037|HT|S12.291|ICD10CM|Other nondisplaced fracture of third cervical vertebra|Other nondisplaced fracture of third cervical vertebra +C2833375|T037|AB|S12.291A|ICD10CM|Oth nondisp fx of third cervical vertebra, init for clos fx|Oth nondisp fx of third cervical vertebra, init for clos fx +C2833375|T037|PT|S12.291A|ICD10CM|Other nondisplaced fracture of third cervical vertebra, initial encounter for closed fracture|Other nondisplaced fracture of third cervical vertebra, initial encounter for closed fracture +C2833376|T037|AB|S12.291B|ICD10CM|Oth nondisp fx of third cervical vertebra, init for opn fx|Oth nondisp fx of third cervical vertebra, init for opn fx +C2833376|T037|PT|S12.291B|ICD10CM|Other nondisplaced fracture of third cervical vertebra, initial encounter for open fracture|Other nondisplaced fracture of third cervical vertebra, initial encounter for open fracture +C2833377|T037|AB|S12.291D|ICD10CM|Oth nondisp fx of 3rd cervcal vert, subs for fx w routn heal|Oth nondisp fx of 3rd cervcal vert, subs for fx w routn heal +C2833378|T037|AB|S12.291G|ICD10CM|Oth nondisp fx of 3rd cervcal vert, subs for fx w delay heal|Oth nondisp fx of 3rd cervcal vert, subs for fx w delay heal +C2833379|T037|AB|S12.291K|ICD10CM|Oth nondisp fx of third cervcal vert, subs for fx w nonunion|Oth nondisp fx of third cervcal vert, subs for fx w nonunion +C2833380|T037|AB|S12.291S|ICD10CM|Other nondisp fx of third cervical vertebra, sequela|Other nondisp fx of third cervical vertebra, sequela +C2833380|T037|PT|S12.291S|ICD10CM|Other nondisplaced fracture of third cervical vertebra, sequela|Other nondisplaced fracture of third cervical vertebra, sequela +C0840401|T037|HT|S12.3|ICD10CM|Fracture of fourth cervical vertebra|Fracture of fourth cervical vertebra +C0840401|T037|AB|S12.3|ICD10CM|Fracture of fourth cervical vertebra|Fracture of fourth cervical vertebra +C2833381|T037|AB|S12.30|ICD10CM|Unspecified fracture of fourth cervical vertebra|Unspecified fracture of fourth cervical vertebra +C2833381|T037|HT|S12.30|ICD10CM|Unspecified fracture of fourth cervical vertebra|Unspecified fracture of fourth cervical vertebra +C2833382|T037|AB|S12.300|ICD10CM|Unspecified displaced fracture of fourth cervical vertebra|Unspecified displaced fracture of fourth cervical vertebra +C2833382|T037|HT|S12.300|ICD10CM|Unspecified displaced fracture of fourth cervical vertebra|Unspecified displaced fracture of fourth cervical vertebra +C2833383|T037|AB|S12.300A|ICD10CM|Unsp disp fx of fourth cervical vertebra, init for clos fx|Unsp disp fx of fourth cervical vertebra, init for clos fx +C2833383|T037|PT|S12.300A|ICD10CM|Unspecified displaced fracture of fourth cervical vertebra, initial encounter for closed fracture|Unspecified displaced fracture of fourth cervical vertebra, initial encounter for closed fracture +C2833384|T037|AB|S12.300B|ICD10CM|Unsp disp fx of fourth cervical vertebra, init for opn fx|Unsp disp fx of fourth cervical vertebra, init for opn fx +C2833384|T037|PT|S12.300B|ICD10CM|Unspecified displaced fracture of fourth cervical vertebra, initial encounter for open fracture|Unspecified displaced fracture of fourth cervical vertebra, initial encounter for open fracture +C2833385|T037|AB|S12.300D|ICD10CM|Unsp disp fx of 4th cervcal vert, subs for fx w routn heal|Unsp disp fx of 4th cervcal vert, subs for fx w routn heal +C2833386|T037|AB|S12.300G|ICD10CM|Unsp disp fx of 4th cervcal vert, subs for fx w delay heal|Unsp disp fx of 4th cervcal vert, subs for fx w delay heal +C2833387|T037|AB|S12.300K|ICD10CM|Unsp disp fx of fourth cervcal vert, subs for fx w nonunion|Unsp disp fx of fourth cervcal vert, subs for fx w nonunion +C2833388|T037|AB|S12.300S|ICD10CM|Unspecified disp fx of fourth cervical vertebra, sequela|Unspecified disp fx of fourth cervical vertebra, sequela +C2833388|T037|PT|S12.300S|ICD10CM|Unspecified displaced fracture of fourth cervical vertebra, sequela|Unspecified displaced fracture of fourth cervical vertebra, sequela +C2833389|T037|AB|S12.301|ICD10CM|Unspecified nondisp fx of fourth cervical vertebra|Unspecified nondisp fx of fourth cervical vertebra +C2833389|T037|HT|S12.301|ICD10CM|Unspecified nondisplaced fracture of fourth cervical vertebra|Unspecified nondisplaced fracture of fourth cervical vertebra +C2833390|T037|AB|S12.301A|ICD10CM|Unsp nondisp fx of fourth cervical vertebra, init|Unsp nondisp fx of fourth cervical vertebra, init +C2833390|T037|PT|S12.301A|ICD10CM|Unspecified nondisplaced fracture of fourth cervical vertebra, initial encounter for closed fracture|Unspecified nondisplaced fracture of fourth cervical vertebra, initial encounter for closed fracture +C2833391|T037|AB|S12.301B|ICD10CM|Unsp nondisp fx of fourth cervical vertebra, init for opn fx|Unsp nondisp fx of fourth cervical vertebra, init for opn fx +C2833391|T037|PT|S12.301B|ICD10CM|Unspecified nondisplaced fracture of fourth cervical vertebra, initial encounter for open fracture|Unspecified nondisplaced fracture of fourth cervical vertebra, initial encounter for open fracture +C2833392|T037|AB|S12.301D|ICD10CM|Unsp nondisp fx of 4th cervcal vert, 7thD|Unsp nondisp fx of 4th cervcal vert, 7thD +C2833393|T037|AB|S12.301G|ICD10CM|Unsp nondisp fx of 4th cervcal vert, 7thG|Unsp nondisp fx of 4th cervcal vert, 7thG +C2833394|T037|AB|S12.301K|ICD10CM|Unsp nondisp fx of 4th cervcal vert, subs for fx w nonunion|Unsp nondisp fx of 4th cervcal vert, subs for fx w nonunion +C2833395|T037|AB|S12.301S|ICD10CM|Unspecified nondisp fx of fourth cervical vertebra, sequela|Unspecified nondisp fx of fourth cervical vertebra, sequela +C2833395|T037|PT|S12.301S|ICD10CM|Unspecified nondisplaced fracture of fourth cervical vertebra, sequela|Unspecified nondisplaced fracture of fourth cervical vertebra, sequela +C2833396|T037|AB|S12.33|ICD10CM|Unsp traumatic spondylolisthesis of fourth cervical vertebra|Unsp traumatic spondylolisthesis of fourth cervical vertebra +C2833396|T037|HT|S12.33|ICD10CM|Unspecified traumatic spondylolisthesis of fourth cervical vertebra|Unspecified traumatic spondylolisthesis of fourth cervical vertebra +C2833397|T037|AB|S12.330|ICD10CM|Unsp traum displ spondylolysis of fourth cervcal vertebra|Unsp traum displ spondylolysis of fourth cervcal vertebra +C2833397|T037|HT|S12.330|ICD10CM|Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra|Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra +C2833398|T037|AB|S12.330A|ICD10CM|Unsp traum displ spondylolysis of fourth cervcal vert, init|Unsp traum displ spondylolysis of fourth cervcal vert, init +C2833399|T037|AB|S12.330B|ICD10CM|Unsp traum displ spondylolysis of 4th cervcal vert, 7thB|Unsp traum displ spondylolysis of 4th cervcal vert, 7thB +C2833400|T037|AB|S12.330D|ICD10CM|Unsp traum displ spondylolysis of 4th cervcal vert, 7thD|Unsp traum displ spondylolysis of 4th cervcal vert, 7thD +C2833401|T037|AB|S12.330G|ICD10CM|Unsp traum displ spondylolysis of 4th cervcal vert, 7thG|Unsp traum displ spondylolysis of 4th cervcal vert, 7thG +C2833402|T037|AB|S12.330K|ICD10CM|Unsp traum displ spondylolysis of 4th cervcal vert, 7thK|Unsp traum displ spondylolysis of 4th cervcal vert, 7thK +C2833403|T037|AB|S12.330S|ICD10CM|Unsp traum displ spondylolysis of fourth cervcal vert, sqla|Unsp traum displ spondylolysis of fourth cervcal vert, sqla +C2833403|T037|PT|S12.330S|ICD10CM|Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, sequela|Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, sequela +C2833404|T037|AB|S12.331|ICD10CM|Unsp traum nondisp spondylolysis of fourth cervcal vertebra|Unsp traum nondisp spondylolysis of fourth cervcal vertebra +C2833404|T037|HT|S12.331|ICD10CM|Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra|Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra +C2833405|T037|AB|S12.331A|ICD10CM|Unsp traum nondisp spondylolysis of 4th cervcal vert, init|Unsp traum nondisp spondylolysis of 4th cervcal vert, init +C2833406|T037|AB|S12.331B|ICD10CM|Unsp traum nondisp spondylolysis of 4th cervcal vert, 7thB|Unsp traum nondisp spondylolysis of 4th cervcal vert, 7thB +C2833407|T037|AB|S12.331D|ICD10CM|Unsp traum nondisp spondylolysis of 4th cervcal vert, 7thD|Unsp traum nondisp spondylolysis of 4th cervcal vert, 7thD +C2833408|T037|AB|S12.331G|ICD10CM|Unsp traum nondisp spondylolysis of 4th cervcal vert, 7thG|Unsp traum nondisp spondylolysis of 4th cervcal vert, 7thG +C2833409|T037|AB|S12.331K|ICD10CM|Unsp traum nondisp spondylolysis of 4th cervcal vert, 7thK|Unsp traum nondisp spondylolysis of 4th cervcal vert, 7thK +C2833410|T037|AB|S12.331S|ICD10CM|Unsp traum nondisp spondylolysis of 4th cervcal vert, sqla|Unsp traum nondisp spondylolysis of 4th cervcal vert, sqla +C2833410|T037|PT|S12.331S|ICD10CM|Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, sequela|Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, sequela +C2833411|T037|HT|S12.34|ICD10CM|Type III traumatic spondylolisthesis of fourth cervical vertebra|Type III traumatic spondylolisthesis of fourth cervical vertebra +C2833411|T037|AB|S12.34|ICD10CM|Type III traumatic spondylolysis of fourth cervcal vertebra|Type III traumatic spondylolysis of fourth cervcal vertebra +C2833412|T037|AB|S12.34XA|ICD10CM|Type III traum spondylolysis of fourth cervcal vert, init|Type III traum spondylolysis of fourth cervcal vert, init +C2833413|T037|AB|S12.34XB|ICD10CM|Type III traum spondylolysis of 4th cervcal vert, 7thB|Type III traum spondylolysis of 4th cervcal vert, 7thB +C2833414|T037|AB|S12.34XD|ICD10CM|Type III traum spondylolysis of 4th cervcal vert, 7thD|Type III traum spondylolysis of 4th cervcal vert, 7thD +C2833415|T037|AB|S12.34XG|ICD10CM|Type III traum spondylolysis of 4th cervcal vert, 7thG|Type III traum spondylolysis of 4th cervcal vert, 7thG +C2833416|T037|AB|S12.34XK|ICD10CM|Type III traum spondylolysis of 4th cervcal vert, 7thK|Type III traum spondylolysis of 4th cervcal vert, 7thK +C2833417|T037|AB|S12.34XS|ICD10CM|Type III traum spondylolysis of fourth cervcal vert, sequela|Type III traum spondylolysis of fourth cervcal vert, sequela +C2833417|T037|PT|S12.34XS|ICD10CM|Type III traumatic spondylolisthesis of fourth cervical vertebra, sequela|Type III traumatic spondylolisthesis of fourth cervical vertebra, sequela +C2833418|T037|AB|S12.35|ICD10CM|Oth traumatic spondylolisthesis of fourth cervical vertebra|Oth traumatic spondylolisthesis of fourth cervical vertebra +C2833418|T037|HT|S12.35|ICD10CM|Other traumatic spondylolisthesis of fourth cervical vertebra|Other traumatic spondylolisthesis of fourth cervical vertebra +C2833419|T037|AB|S12.350|ICD10CM|Oth traumatic displ spondylolysis of fourth cervcal vertebra|Oth traumatic displ spondylolysis of fourth cervcal vertebra +C2833419|T037|HT|S12.350|ICD10CM|Other traumatic displaced spondylolisthesis of fourth cervical vertebra|Other traumatic displaced spondylolisthesis of fourth cervical vertebra +C2833420|T037|AB|S12.350A|ICD10CM|Oth traum displ spondylolysis of fourth cervcal vert, init|Oth traum displ spondylolysis of fourth cervcal vert, init +C2833421|T037|AB|S12.350B|ICD10CM|Oth traum displ spondylolysis of 4th cervcal vert, 7thB|Oth traum displ spondylolysis of 4th cervcal vert, 7thB +C2833422|T037|AB|S12.350D|ICD10CM|Oth traum displ spondylolysis of 4th cervcal vert, 7thD|Oth traum displ spondylolysis of 4th cervcal vert, 7thD +C2833423|T037|AB|S12.350G|ICD10CM|Oth traum displ spondylolysis of 4th cervcal vert, 7thG|Oth traum displ spondylolysis of 4th cervcal vert, 7thG +C2833424|T037|AB|S12.350K|ICD10CM|Oth traum displ spondylolysis of 4th cervcal vert, 7thK|Oth traum displ spondylolysis of 4th cervcal vert, 7thK +C2833425|T037|AB|S12.350S|ICD10CM|Oth traum displ spondylolysis of fourth cervcal vert, sqla|Oth traum displ spondylolysis of fourth cervcal vert, sqla +C2833425|T037|PT|S12.350S|ICD10CM|Other traumatic displaced spondylolisthesis of fourth cervical vertebra, sequela|Other traumatic displaced spondylolisthesis of fourth cervical vertebra, sequela +C2833426|T037|AB|S12.351|ICD10CM|Oth traum nondisp spondylolysis of fourth cervcal vertebra|Oth traum nondisp spondylolysis of fourth cervcal vertebra +C2833426|T037|HT|S12.351|ICD10CM|Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra|Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra +C2833427|T037|AB|S12.351A|ICD10CM|Oth traum nondisp spondylolysis of fourth cervcal vert, init|Oth traum nondisp spondylolysis of fourth cervcal vert, init +C2833428|T037|AB|S12.351B|ICD10CM|Oth traum nondisp spondylolysis of 4th cervcal vert, 7thB|Oth traum nondisp spondylolysis of 4th cervcal vert, 7thB +C2833429|T037|AB|S12.351D|ICD10CM|Oth traum nondisp spondylolysis of 4th cervcal vert, 7thD|Oth traum nondisp spondylolysis of 4th cervcal vert, 7thD +C2833430|T037|AB|S12.351G|ICD10CM|Oth traum nondisp spondylolysis of 4th cervcal vert, 7thG|Oth traum nondisp spondylolysis of 4th cervcal vert, 7thG +C2833431|T037|AB|S12.351K|ICD10CM|Oth traum nondisp spondylolysis of 4th cervcal vert, 7thK|Oth traum nondisp spondylolysis of 4th cervcal vert, 7thK +C2833432|T037|AB|S12.351S|ICD10CM|Oth traum nondisp spondylolysis of fourth cervcal vert, sqla|Oth traum nondisp spondylolysis of fourth cervcal vert, sqla +C2833432|T037|PT|S12.351S|ICD10CM|Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, sequela|Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, sequela +C2833433|T037|AB|S12.39|ICD10CM|Other fracture of fourth cervical vertebra|Other fracture of fourth cervical vertebra +C2833433|T037|HT|S12.39|ICD10CM|Other fracture of fourth cervical vertebra|Other fracture of fourth cervical vertebra +C2833434|T037|AB|S12.390|ICD10CM|Other displaced fracture of fourth cervical vertebra|Other displaced fracture of fourth cervical vertebra +C2833434|T037|HT|S12.390|ICD10CM|Other displaced fracture of fourth cervical vertebra|Other displaced fracture of fourth cervical vertebra +C2833435|T037|AB|S12.390A|ICD10CM|Oth disp fx of fourth cervical vertebra, init for clos fx|Oth disp fx of fourth cervical vertebra, init for clos fx +C2833435|T037|PT|S12.390A|ICD10CM|Other displaced fracture of fourth cervical vertebra, initial encounter for closed fracture|Other displaced fracture of fourth cervical vertebra, initial encounter for closed fracture +C2833436|T037|AB|S12.390B|ICD10CM|Oth disp fx of fourth cervical vertebra, init for opn fx|Oth disp fx of fourth cervical vertebra, init for opn fx +C2833436|T037|PT|S12.390B|ICD10CM|Other displaced fracture of fourth cervical vertebra, initial encounter for open fracture|Other displaced fracture of fourth cervical vertebra, initial encounter for open fracture +C2833437|T037|AB|S12.390D|ICD10CM|Oth disp fx of fourth cervcal vert, subs for fx w routn heal|Oth disp fx of fourth cervcal vert, subs for fx w routn heal +C2833438|T037|AB|S12.390G|ICD10CM|Oth disp fx of fourth cervcal vert, subs for fx w delay heal|Oth disp fx of fourth cervcal vert, subs for fx w delay heal +C2833439|T037|AB|S12.390K|ICD10CM|Oth disp fx of fourth cervcal vert, subs for fx w nonunion|Oth disp fx of fourth cervcal vert, subs for fx w nonunion +C2833440|T037|AB|S12.390S|ICD10CM|Other disp fx of fourth cervical vertebra, sequela|Other disp fx of fourth cervical vertebra, sequela +C2833440|T037|PT|S12.390S|ICD10CM|Other displaced fracture of fourth cervical vertebra, sequela|Other displaced fracture of fourth cervical vertebra, sequela +C2833441|T037|AB|S12.391|ICD10CM|Other nondisplaced fracture of fourth cervical vertebra|Other nondisplaced fracture of fourth cervical vertebra +C2833441|T037|HT|S12.391|ICD10CM|Other nondisplaced fracture of fourth cervical vertebra|Other nondisplaced fracture of fourth cervical vertebra +C2833442|T037|AB|S12.391A|ICD10CM|Oth nondisp fx of fourth cervical vertebra, init for clos fx|Oth nondisp fx of fourth cervical vertebra, init for clos fx +C2833442|T037|PT|S12.391A|ICD10CM|Other nondisplaced fracture of fourth cervical vertebra, initial encounter for closed fracture|Other nondisplaced fracture of fourth cervical vertebra, initial encounter for closed fracture +C2833443|T037|AB|S12.391B|ICD10CM|Oth nondisp fx of fourth cervical vertebra, init for opn fx|Oth nondisp fx of fourth cervical vertebra, init for opn fx +C2833443|T037|PT|S12.391B|ICD10CM|Other nondisplaced fracture of fourth cervical vertebra, initial encounter for open fracture|Other nondisplaced fracture of fourth cervical vertebra, initial encounter for open fracture +C2833444|T037|AB|S12.391D|ICD10CM|Oth nondisp fx of 4th cervcal vert, subs for fx w routn heal|Oth nondisp fx of 4th cervcal vert, subs for fx w routn heal +C2833445|T037|AB|S12.391G|ICD10CM|Oth nondisp fx of 4th cervcal vert, subs for fx w delay heal|Oth nondisp fx of 4th cervcal vert, subs for fx w delay heal +C2833446|T037|AB|S12.391K|ICD10CM|Oth nondisp fx of 4th cervcal vert, subs for fx w nonunion|Oth nondisp fx of 4th cervcal vert, subs for fx w nonunion +C2833447|T037|AB|S12.391S|ICD10CM|Other nondisp fx of fourth cervical vertebra, sequela|Other nondisp fx of fourth cervical vertebra, sequela +C2833447|T037|PT|S12.391S|ICD10CM|Other nondisplaced fracture of fourth cervical vertebra, sequela|Other nondisplaced fracture of fourth cervical vertebra, sequela +C0840402|T037|HT|S12.4|ICD10CM|Fracture of fifth cervical vertebra|Fracture of fifth cervical vertebra +C0840402|T037|AB|S12.4|ICD10CM|Fracture of fifth cervical vertebra|Fracture of fifth cervical vertebra +C2833448|T037|AB|S12.40|ICD10CM|Unspecified fracture of fifth cervical vertebra|Unspecified fracture of fifth cervical vertebra +C2833448|T037|HT|S12.40|ICD10CM|Unspecified fracture of fifth cervical vertebra|Unspecified fracture of fifth cervical vertebra +C2833449|T037|AB|S12.400|ICD10CM|Unspecified displaced fracture of fifth cervical vertebra|Unspecified displaced fracture of fifth cervical vertebra +C2833449|T037|HT|S12.400|ICD10CM|Unspecified displaced fracture of fifth cervical vertebra|Unspecified displaced fracture of fifth cervical vertebra +C2833450|T037|AB|S12.400A|ICD10CM|Unsp disp fx of fifth cervical vertebra, init for clos fx|Unsp disp fx of fifth cervical vertebra, init for clos fx +C2833450|T037|PT|S12.400A|ICD10CM|Unspecified displaced fracture of fifth cervical vertebra, initial encounter for closed fracture|Unspecified displaced fracture of fifth cervical vertebra, initial encounter for closed fracture +C2833451|T037|AB|S12.400B|ICD10CM|Unsp disp fx of fifth cervical vertebra, init for opn fx|Unsp disp fx of fifth cervical vertebra, init for opn fx +C2833451|T037|PT|S12.400B|ICD10CM|Unspecified displaced fracture of fifth cervical vertebra, initial encounter for open fracture|Unspecified displaced fracture of fifth cervical vertebra, initial encounter for open fracture +C2833452|T037|AB|S12.400D|ICD10CM|Unsp disp fx of fifth cervcal vert, subs for fx w routn heal|Unsp disp fx of fifth cervcal vert, subs for fx w routn heal +C2833453|T037|AB|S12.400G|ICD10CM|Unsp disp fx of fifth cervcal vert, subs for fx w delay heal|Unsp disp fx of fifth cervcal vert, subs for fx w delay heal +C2833454|T037|AB|S12.400K|ICD10CM|Unsp disp fx of fifth cervcal vert, subs for fx w nonunion|Unsp disp fx of fifth cervcal vert, subs for fx w nonunion +C2833455|T037|AB|S12.400S|ICD10CM|Unspecified disp fx of fifth cervical vertebra, sequela|Unspecified disp fx of fifth cervical vertebra, sequela +C2833455|T037|PT|S12.400S|ICD10CM|Unspecified displaced fracture of fifth cervical vertebra, sequela|Unspecified displaced fracture of fifth cervical vertebra, sequela +C2833456|T037|AB|S12.401|ICD10CM|Unspecified nondisplaced fracture of fifth cervical vertebra|Unspecified nondisplaced fracture of fifth cervical vertebra +C2833456|T037|HT|S12.401|ICD10CM|Unspecified nondisplaced fracture of fifth cervical vertebra|Unspecified nondisplaced fracture of fifth cervical vertebra +C2833457|T037|AB|S12.401A|ICD10CM|Unsp nondisp fx of fifth cervical vertebra, init for clos fx|Unsp nondisp fx of fifth cervical vertebra, init for clos fx +C2833457|T037|PT|S12.401A|ICD10CM|Unspecified nondisplaced fracture of fifth cervical vertebra, initial encounter for closed fracture|Unspecified nondisplaced fracture of fifth cervical vertebra, initial encounter for closed fracture +C2833458|T037|AB|S12.401B|ICD10CM|Unsp nondisp fx of fifth cervical vertebra, init for opn fx|Unsp nondisp fx of fifth cervical vertebra, init for opn fx +C2833458|T037|PT|S12.401B|ICD10CM|Unspecified nondisplaced fracture of fifth cervical vertebra, initial encounter for open fracture|Unspecified nondisplaced fracture of fifth cervical vertebra, initial encounter for open fracture +C2833459|T037|AB|S12.401D|ICD10CM|Unsp nondisp fx of 5th cervcal vert, 7thD|Unsp nondisp fx of 5th cervcal vert, 7thD +C2833460|T037|AB|S12.401G|ICD10CM|Unsp nondisp fx of 5th cervcal vert, 7thG|Unsp nondisp fx of 5th cervcal vert, 7thG +C2833461|T037|AB|S12.401K|ICD10CM|Unsp nondisp fx of 5th cervcal vert, subs for fx w nonunion|Unsp nondisp fx of 5th cervcal vert, subs for fx w nonunion +C2833462|T037|AB|S12.401S|ICD10CM|Unspecified nondisp fx of fifth cervical vertebra, sequela|Unspecified nondisp fx of fifth cervical vertebra, sequela +C2833462|T037|PT|S12.401S|ICD10CM|Unspecified nondisplaced fracture of fifth cervical vertebra, sequela|Unspecified nondisplaced fracture of fifth cervical vertebra, sequela +C2833463|T037|AB|S12.43|ICD10CM|Unsp traumatic spondylolisthesis of fifth cervical vertebra|Unsp traumatic spondylolisthesis of fifth cervical vertebra +C2833463|T037|HT|S12.43|ICD10CM|Unspecified traumatic spondylolisthesis of fifth cervical vertebra|Unspecified traumatic spondylolisthesis of fifth cervical vertebra +C2833464|T037|AB|S12.430|ICD10CM|Unsp traumatic displ spondylolysis of fifth cervcal vertebra|Unsp traumatic displ spondylolysis of fifth cervcal vertebra +C2833464|T037|HT|S12.430|ICD10CM|Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra|Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra +C2833465|T037|AB|S12.430A|ICD10CM|Unsp traum displ spondylolysis of fifth cervcal vert, init|Unsp traum displ spondylolysis of fifth cervcal vert, init +C2833466|T037|AB|S12.430B|ICD10CM|Unsp traum displ spondylolysis of 5th cervcal vert, 7thB|Unsp traum displ spondylolysis of 5th cervcal vert, 7thB +C2833467|T037|AB|S12.430D|ICD10CM|Unsp traum displ spondylolysis of 5th cervcal vert, 7thD|Unsp traum displ spondylolysis of 5th cervcal vert, 7thD +C2833468|T037|AB|S12.430G|ICD10CM|Unsp traum displ spondylolysis of 5th cervcal vert, 7thG|Unsp traum displ spondylolysis of 5th cervcal vert, 7thG +C2833469|T037|AB|S12.430K|ICD10CM|Unsp traum displ spondylolysis of 5th cervcal vert, 7thK|Unsp traum displ spondylolysis of 5th cervcal vert, 7thK +C2833470|T037|AB|S12.430S|ICD10CM|Unsp traum displ spondylolysis of fifth cervcal vert, sqla|Unsp traum displ spondylolysis of fifth cervcal vert, sqla +C2833470|T037|PT|S12.430S|ICD10CM|Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, sequela|Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, sequela +C2833471|T037|AB|S12.431|ICD10CM|Unsp traum nondisp spondylolysis of fifth cervcal vertebra|Unsp traum nondisp spondylolysis of fifth cervcal vertebra +C2833471|T037|HT|S12.431|ICD10CM|Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra|Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra +C2833472|T037|AB|S12.431A|ICD10CM|Unsp traum nondisp spondylolysis of fifth cervcal vert, init|Unsp traum nondisp spondylolysis of fifth cervcal vert, init +C2833473|T037|AB|S12.431B|ICD10CM|Unsp traum nondisp spondylolysis of 5th cervcal vert, 7thB|Unsp traum nondisp spondylolysis of 5th cervcal vert, 7thB +C2833474|T037|AB|S12.431D|ICD10CM|Unsp traum nondisp spondylolysis of 5th cervcal vert, 7thD|Unsp traum nondisp spondylolysis of 5th cervcal vert, 7thD +C2833475|T037|AB|S12.431G|ICD10CM|Unsp traum nondisp spondylolysis of 5th cervcal vert, 7thG|Unsp traum nondisp spondylolysis of 5th cervcal vert, 7thG +C2833476|T037|AB|S12.431K|ICD10CM|Unsp traum nondisp spondylolysis of 5th cervcal vert, 7thK|Unsp traum nondisp spondylolysis of 5th cervcal vert, 7thK +C2833477|T037|AB|S12.431S|ICD10CM|Unsp traum nondisp spondylolysis of fifth cervcal vert, sqla|Unsp traum nondisp spondylolysis of fifth cervcal vert, sqla +C2833477|T037|PT|S12.431S|ICD10CM|Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, sequela|Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, sequela +C2833478|T037|HT|S12.44|ICD10CM|Type III traumatic spondylolisthesis of fifth cervical vertebra|Type III traumatic spondylolisthesis of fifth cervical vertebra +C2833478|T037|AB|S12.44|ICD10CM|Type III traumatic spondylolysis of fifth cervcal vertebra|Type III traumatic spondylolysis of fifth cervcal vertebra +C2833479|T037|AB|S12.44XA|ICD10CM|Type III traum spondylolysis of fifth cervcal vertebra, init|Type III traum spondylolysis of fifth cervcal vertebra, init +C2833480|T037|AB|S12.44XB|ICD10CM|Type III traum spondylolysis of 5th cervcal vert, 7thB|Type III traum spondylolysis of 5th cervcal vert, 7thB +C2833480|T037|PT|S12.44XB|ICD10CM|Type III traumatic spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture|Type III traumatic spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture +C2833481|T037|AB|S12.44XD|ICD10CM|Type III traum spondylolysis of 5th cervcal vert, 7thD|Type III traum spondylolysis of 5th cervcal vert, 7thD +C2833482|T037|AB|S12.44XG|ICD10CM|Type III traum spondylolysis of 5th cervcal vert, 7thG|Type III traum spondylolysis of 5th cervcal vert, 7thG +C2833483|T037|AB|S12.44XK|ICD10CM|Type III traum spondylolysis of 5th cervcal vert, 7thK|Type III traum spondylolysis of 5th cervcal vert, 7thK +C2833484|T037|AB|S12.44XS|ICD10CM|Type III traum spondylolysis of fifth cervcal vert, sequela|Type III traum spondylolysis of fifth cervcal vert, sequela +C2833484|T037|PT|S12.44XS|ICD10CM|Type III traumatic spondylolisthesis of fifth cervical vertebra, sequela|Type III traumatic spondylolisthesis of fifth cervical vertebra, sequela +C2833485|T037|AB|S12.45|ICD10CM|Other traumatic spondylolisthesis of fifth cervical vertebra|Other traumatic spondylolisthesis of fifth cervical vertebra +C2833485|T037|HT|S12.45|ICD10CM|Other traumatic spondylolisthesis of fifth cervical vertebra|Other traumatic spondylolisthesis of fifth cervical vertebra +C2833486|T037|AB|S12.450|ICD10CM|Oth traumatic displ spondylolysis of fifth cervcal vertebra|Oth traumatic displ spondylolysis of fifth cervcal vertebra +C2833486|T037|HT|S12.450|ICD10CM|Other traumatic displaced spondylolisthesis of fifth cervical vertebra|Other traumatic displaced spondylolisthesis of fifth cervical vertebra +C2833487|T037|AB|S12.450A|ICD10CM|Oth traum displ spondylolysis of fifth cervcal vert, init|Oth traum displ spondylolysis of fifth cervcal vert, init +C2833488|T037|AB|S12.450B|ICD10CM|Oth traum displ spondylolysis of 5th cervcal vert, 7thB|Oth traum displ spondylolysis of 5th cervcal vert, 7thB +C2833489|T037|AB|S12.450D|ICD10CM|Oth traum displ spondylolysis of 5th cervcal vert, 7thD|Oth traum displ spondylolysis of 5th cervcal vert, 7thD +C2833490|T037|AB|S12.450G|ICD10CM|Oth traum displ spondylolysis of 5th cervcal vert, 7thG|Oth traum displ spondylolysis of 5th cervcal vert, 7thG +C2833491|T037|AB|S12.450K|ICD10CM|Oth traum displ spondylolysis of 5th cervcal vert, 7thK|Oth traum displ spondylolysis of 5th cervcal vert, 7thK +C2833492|T037|AB|S12.450S|ICD10CM|Oth traum displ spondylolysis of fifth cervcal vert, sequela|Oth traum displ spondylolysis of fifth cervcal vert, sequela +C2833492|T037|PT|S12.450S|ICD10CM|Other traumatic displaced spondylolisthesis of fifth cervical vertebra, sequela|Other traumatic displaced spondylolisthesis of fifth cervical vertebra, sequela +C2833493|T037|AB|S12.451|ICD10CM|Oth traum nondisp spondylolysis of fifth cervcal vertebra|Oth traum nondisp spondylolysis of fifth cervcal vertebra +C2833493|T037|HT|S12.451|ICD10CM|Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra|Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra +C2833494|T037|AB|S12.451A|ICD10CM|Oth traum nondisp spondylolysis of fifth cervcal vert, init|Oth traum nondisp spondylolysis of fifth cervcal vert, init +C2833495|T037|AB|S12.451B|ICD10CM|Oth traum nondisp spondylolysis of 5th cervcal vert, 7thB|Oth traum nondisp spondylolysis of 5th cervcal vert, 7thB +C2833496|T037|AB|S12.451D|ICD10CM|Oth traum nondisp spondylolysis of 5th cervcal vert, 7thD|Oth traum nondisp spondylolysis of 5th cervcal vert, 7thD +C2833497|T037|AB|S12.451G|ICD10CM|Oth traum nondisp spondylolysis of 5th cervcal vert, 7thG|Oth traum nondisp spondylolysis of 5th cervcal vert, 7thG +C2833498|T037|AB|S12.451K|ICD10CM|Oth traum nondisp spondylolysis of 5th cervcal vert, 7thK|Oth traum nondisp spondylolysis of 5th cervcal vert, 7thK +C2833499|T037|AB|S12.451S|ICD10CM|Oth traum nondisp spondylolysis of fifth cervcal vert, sqla|Oth traum nondisp spondylolysis of fifth cervcal vert, sqla +C2833499|T037|PT|S12.451S|ICD10CM|Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, sequela|Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, sequela +C2833500|T037|AB|S12.49|ICD10CM|Other fracture of fifth cervical vertebra|Other fracture of fifth cervical vertebra +C2833500|T037|HT|S12.49|ICD10CM|Other fracture of fifth cervical vertebra|Other fracture of fifth cervical vertebra +C2833501|T037|AB|S12.490|ICD10CM|Other displaced fracture of fifth cervical vertebra|Other displaced fracture of fifth cervical vertebra +C2833501|T037|HT|S12.490|ICD10CM|Other displaced fracture of fifth cervical vertebra|Other displaced fracture of fifth cervical vertebra +C2833502|T037|AB|S12.490A|ICD10CM|Oth disp fx of fifth cervical vertebra, init for clos fx|Oth disp fx of fifth cervical vertebra, init for clos fx +C2833502|T037|PT|S12.490A|ICD10CM|Other displaced fracture of fifth cervical vertebra, initial encounter for closed fracture|Other displaced fracture of fifth cervical vertebra, initial encounter for closed fracture +C2833503|T037|AB|S12.490B|ICD10CM|Oth disp fx of fifth cervical vertebra, init for opn fx|Oth disp fx of fifth cervical vertebra, init for opn fx +C2833503|T037|PT|S12.490B|ICD10CM|Other displaced fracture of fifth cervical vertebra, initial encounter for open fracture|Other displaced fracture of fifth cervical vertebra, initial encounter for open fracture +C2833504|T037|AB|S12.490D|ICD10CM|Oth disp fx of fifth cervcal vert, subs for fx w routn heal|Oth disp fx of fifth cervcal vert, subs for fx w routn heal +C2833505|T037|AB|S12.490G|ICD10CM|Oth disp fx of fifth cervcal vert, subs for fx w delay heal|Oth disp fx of fifth cervcal vert, subs for fx w delay heal +C2833506|T037|AB|S12.490K|ICD10CM|Oth disp fx of fifth cervcal vert, subs for fx w nonunion|Oth disp fx of fifth cervcal vert, subs for fx w nonunion +C2833506|T037|PT|S12.490K|ICD10CM|Other displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with nonunion|Other displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with nonunion +C2833507|T037|AB|S12.490S|ICD10CM|Other displaced fracture of fifth cervical vertebra, sequela|Other displaced fracture of fifth cervical vertebra, sequela +C2833507|T037|PT|S12.490S|ICD10CM|Other displaced fracture of fifth cervical vertebra, sequela|Other displaced fracture of fifth cervical vertebra, sequela +C2833508|T037|AB|S12.491|ICD10CM|Other nondisplaced fracture of fifth cervical vertebra|Other nondisplaced fracture of fifth cervical vertebra +C2833508|T037|HT|S12.491|ICD10CM|Other nondisplaced fracture of fifth cervical vertebra|Other nondisplaced fracture of fifth cervical vertebra +C2833509|T037|AB|S12.491A|ICD10CM|Oth nondisp fx of fifth cervical vertebra, init for clos fx|Oth nondisp fx of fifth cervical vertebra, init for clos fx +C2833509|T037|PT|S12.491A|ICD10CM|Other nondisplaced fracture of fifth cervical vertebra, initial encounter for closed fracture|Other nondisplaced fracture of fifth cervical vertebra, initial encounter for closed fracture +C2833510|T037|AB|S12.491B|ICD10CM|Oth nondisp fx of fifth cervical vertebra, init for opn fx|Oth nondisp fx of fifth cervical vertebra, init for opn fx +C2833510|T037|PT|S12.491B|ICD10CM|Other nondisplaced fracture of fifth cervical vertebra, initial encounter for open fracture|Other nondisplaced fracture of fifth cervical vertebra, initial encounter for open fracture +C2833511|T037|AB|S12.491D|ICD10CM|Oth nondisp fx of 5th cervcal vert, subs for fx w routn heal|Oth nondisp fx of 5th cervcal vert, subs for fx w routn heal +C2833512|T037|AB|S12.491G|ICD10CM|Oth nondisp fx of 5th cervcal vert, subs for fx w delay heal|Oth nondisp fx of 5th cervcal vert, subs for fx w delay heal +C2833513|T037|AB|S12.491K|ICD10CM|Oth nondisp fx of fifth cervcal vert, subs for fx w nonunion|Oth nondisp fx of fifth cervcal vert, subs for fx w nonunion +C2833514|T037|AB|S12.491S|ICD10CM|Other nondisp fx of fifth cervical vertebra, sequela|Other nondisp fx of fifth cervical vertebra, sequela +C2833514|T037|PT|S12.491S|ICD10CM|Other nondisplaced fracture of fifth cervical vertebra, sequela|Other nondisplaced fracture of fifth cervical vertebra, sequela +C0840403|T037|HT|S12.5|ICD10CM|Fracture of sixth cervical vertebra|Fracture of sixth cervical vertebra +C0840403|T037|AB|S12.5|ICD10CM|Fracture of sixth cervical vertebra|Fracture of sixth cervical vertebra +C2833515|T037|AB|S12.50|ICD10CM|Unspecified fracture of sixth cervical vertebra|Unspecified fracture of sixth cervical vertebra +C2833515|T037|HT|S12.50|ICD10CM|Unspecified fracture of sixth cervical vertebra|Unspecified fracture of sixth cervical vertebra +C2833516|T037|AB|S12.500|ICD10CM|Unspecified displaced fracture of sixth cervical vertebra|Unspecified displaced fracture of sixth cervical vertebra +C2833516|T037|HT|S12.500|ICD10CM|Unspecified displaced fracture of sixth cervical vertebra|Unspecified displaced fracture of sixth cervical vertebra +C2833517|T037|AB|S12.500A|ICD10CM|Unsp disp fx of sixth cervical vertebra, init for clos fx|Unsp disp fx of sixth cervical vertebra, init for clos fx +C2833517|T037|PT|S12.500A|ICD10CM|Unspecified displaced fracture of sixth cervical vertebra, initial encounter for closed fracture|Unspecified displaced fracture of sixth cervical vertebra, initial encounter for closed fracture +C2833518|T037|AB|S12.500B|ICD10CM|Unsp disp fx of sixth cervical vertebra, init for opn fx|Unsp disp fx of sixth cervical vertebra, init for opn fx +C2833518|T037|PT|S12.500B|ICD10CM|Unspecified displaced fracture of sixth cervical vertebra, initial encounter for open fracture|Unspecified displaced fracture of sixth cervical vertebra, initial encounter for open fracture +C2833519|T037|AB|S12.500D|ICD10CM|Unsp disp fx of sixth cervcal vert, subs for fx w routn heal|Unsp disp fx of sixth cervcal vert, subs for fx w routn heal +C2833520|T037|AB|S12.500G|ICD10CM|Unsp disp fx of sixth cervcal vert, subs for fx w delay heal|Unsp disp fx of sixth cervcal vert, subs for fx w delay heal +C2833521|T037|AB|S12.500K|ICD10CM|Unsp disp fx of sixth cervcal vert, subs for fx w nonunion|Unsp disp fx of sixth cervcal vert, subs for fx w nonunion +C2833522|T037|AB|S12.500S|ICD10CM|Unspecified disp fx of sixth cervical vertebra, sequela|Unspecified disp fx of sixth cervical vertebra, sequela +C2833522|T037|PT|S12.500S|ICD10CM|Unspecified displaced fracture of sixth cervical vertebra, sequela|Unspecified displaced fracture of sixth cervical vertebra, sequela +C2833523|T037|AB|S12.501|ICD10CM|Unspecified nondisplaced fracture of sixth cervical vertebra|Unspecified nondisplaced fracture of sixth cervical vertebra +C2833523|T037|HT|S12.501|ICD10CM|Unspecified nondisplaced fracture of sixth cervical vertebra|Unspecified nondisplaced fracture of sixth cervical vertebra +C2833524|T037|AB|S12.501A|ICD10CM|Unsp nondisp fx of sixth cervical vertebra, init for clos fx|Unsp nondisp fx of sixth cervical vertebra, init for clos fx +C2833524|T037|PT|S12.501A|ICD10CM|Unspecified nondisplaced fracture of sixth cervical vertebra, initial encounter for closed fracture|Unspecified nondisplaced fracture of sixth cervical vertebra, initial encounter for closed fracture +C2833525|T037|AB|S12.501B|ICD10CM|Unsp nondisp fx of sixth cervical vertebra, init for opn fx|Unsp nondisp fx of sixth cervical vertebra, init for opn fx +C2833525|T037|PT|S12.501B|ICD10CM|Unspecified nondisplaced fracture of sixth cervical vertebra, initial encounter for open fracture|Unspecified nondisplaced fracture of sixth cervical vertebra, initial encounter for open fracture +C2833526|T037|AB|S12.501D|ICD10CM|Unsp nondisp fx of sixth cervcal vert, 7thD|Unsp nondisp fx of sixth cervcal vert, 7thD +C2833527|T037|AB|S12.501G|ICD10CM|Unsp nondisp fx of sixth cervcal vert, 7thG|Unsp nondisp fx of sixth cervcal vert, 7thG +C2833528|T037|AB|S12.501K|ICD10CM|Unsp nondisp fx of sixth cervcal vert, 7thK|Unsp nondisp fx of sixth cervcal vert, 7thK +C2833529|T037|AB|S12.501S|ICD10CM|Unspecified nondisp fx of sixth cervical vertebra, sequela|Unspecified nondisp fx of sixth cervical vertebra, sequela +C2833529|T037|PT|S12.501S|ICD10CM|Unspecified nondisplaced fracture of sixth cervical vertebra, sequela|Unspecified nondisplaced fracture of sixth cervical vertebra, sequela +C2833530|T037|AB|S12.53|ICD10CM|Unsp traumatic spondylolisthesis of sixth cervical vertebra|Unsp traumatic spondylolisthesis of sixth cervical vertebra +C2833530|T037|HT|S12.53|ICD10CM|Unspecified traumatic spondylolisthesis of sixth cervical vertebra|Unspecified traumatic spondylolisthesis of sixth cervical vertebra +C2833531|T037|AB|S12.530|ICD10CM|Unsp traumatic displ spondylolysis of sixth cervcal vertebra|Unsp traumatic displ spondylolysis of sixth cervcal vertebra +C2833531|T037|HT|S12.530|ICD10CM|Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra|Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra +C2833532|T037|AB|S12.530A|ICD10CM|Unsp traum displ spondylolysis of sixth cervcal vert, init|Unsp traum displ spondylolysis of sixth cervcal vert, init +C2833533|T037|AB|S12.530B|ICD10CM|Unsp traum displ spondylolysis of sixth cervcal vert, 7thB|Unsp traum displ spondylolysis of sixth cervcal vert, 7thB +C2833534|T037|AB|S12.530D|ICD10CM|Unsp traum displ spondylolysis of sixth cervcal vert, 7thD|Unsp traum displ spondylolysis of sixth cervcal vert, 7thD +C2833535|T037|AB|S12.530G|ICD10CM|Unsp traum displ spondylolysis of sixth cervcal vert, 7thG|Unsp traum displ spondylolysis of sixth cervcal vert, 7thG +C2833536|T037|AB|S12.530K|ICD10CM|Unsp traum displ spondylolysis of sixth cervcal vert, 7thK|Unsp traum displ spondylolysis of sixth cervcal vert, 7thK +C2833537|T037|AB|S12.530S|ICD10CM|Unsp traum displ spondylolysis of sixth cervcal vert, sqla|Unsp traum displ spondylolysis of sixth cervcal vert, sqla +C2833537|T037|PT|S12.530S|ICD10CM|Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, sequela|Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, sequela +C2833538|T037|AB|S12.531|ICD10CM|Unsp traum nondisp spondylolysis of sixth cervcal vertebra|Unsp traum nondisp spondylolysis of sixth cervcal vertebra +C2833538|T037|HT|S12.531|ICD10CM|Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra|Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra +C2833539|T037|AB|S12.531A|ICD10CM|Unsp traum nondisp spondylolysis of sixth cervcal vert, init|Unsp traum nondisp spondylolysis of sixth cervcal vert, init +C2833540|T037|AB|S12.531B|ICD10CM|Unsp traum nondisp spondylolysis of sixth cervcal vert, 7thB|Unsp traum nondisp spondylolysis of sixth cervcal vert, 7thB +C2833541|T037|AB|S12.531D|ICD10CM|Unsp traum nondisp spondylolysis of sixth cervcal vert, 7thD|Unsp traum nondisp spondylolysis of sixth cervcal vert, 7thD +C2833542|T037|AB|S12.531G|ICD10CM|Unsp traum nondisp spondylolysis of sixth cervcal vert, 7thG|Unsp traum nondisp spondylolysis of sixth cervcal vert, 7thG +C2833543|T037|AB|S12.531K|ICD10CM|Unsp traum nondisp spondylolysis of sixth cervcal vert, 7thK|Unsp traum nondisp spondylolysis of sixth cervcal vert, 7thK +C2833544|T037|AB|S12.531S|ICD10CM|Unsp traum nondisp spondylolysis of sixth cervcal vert, sqla|Unsp traum nondisp spondylolysis of sixth cervcal vert, sqla +C2833544|T037|PT|S12.531S|ICD10CM|Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, sequela|Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, sequela +C2833545|T037|HT|S12.54|ICD10CM|Type III traumatic spondylolisthesis of sixth cervical vertebra|Type III traumatic spondylolisthesis of sixth cervical vertebra +C2833545|T037|AB|S12.54|ICD10CM|Type III traumatic spondylolysis of sixth cervcal vertebra|Type III traumatic spondylolysis of sixth cervcal vertebra +C2833546|T037|AB|S12.54XA|ICD10CM|Type III traum spondylolysis of sixth cervcal vertebra, init|Type III traum spondylolysis of sixth cervcal vertebra, init +C2833547|T037|AB|S12.54XB|ICD10CM|Type III traum spondylolysis of sixth cervcal vert, 7thB|Type III traum spondylolysis of sixth cervcal vert, 7thB +C2833547|T037|PT|S12.54XB|ICD10CM|Type III traumatic spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture|Type III traumatic spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture +C2833548|T037|AB|S12.54XD|ICD10CM|Type III traum spondylolysis of sixth cervcal vert, 7thD|Type III traum spondylolysis of sixth cervcal vert, 7thD +C2833549|T037|AB|S12.54XG|ICD10CM|Type III traum spondylolysis of sixth cervcal vert, 7thG|Type III traum spondylolysis of sixth cervcal vert, 7thG +C2833550|T037|AB|S12.54XK|ICD10CM|Type III traum spondylolysis of sixth cervcal vert, 7thK|Type III traum spondylolysis of sixth cervcal vert, 7thK +C2833551|T037|AB|S12.54XS|ICD10CM|Type III traum spondylolysis of sixth cervcal vert, sequela|Type III traum spondylolysis of sixth cervcal vert, sequela +C2833551|T037|PT|S12.54XS|ICD10CM|Type III traumatic spondylolisthesis of sixth cervical vertebra, sequela|Type III traumatic spondylolisthesis of sixth cervical vertebra, sequela +C2833552|T037|AB|S12.55|ICD10CM|Other traumatic spondylolisthesis of sixth cervical vertebra|Other traumatic spondylolisthesis of sixth cervical vertebra +C2833552|T037|HT|S12.55|ICD10CM|Other traumatic spondylolisthesis of sixth cervical vertebra|Other traumatic spondylolisthesis of sixth cervical vertebra +C2833553|T037|AB|S12.550|ICD10CM|Oth traumatic displ spondylolysis of sixth cervcal vertebra|Oth traumatic displ spondylolysis of sixth cervcal vertebra +C2833553|T037|HT|S12.550|ICD10CM|Other traumatic displaced spondylolisthesis of sixth cervical vertebra|Other traumatic displaced spondylolisthesis of sixth cervical vertebra +C2833554|T037|AB|S12.550A|ICD10CM|Oth traum displ spondylolysis of sixth cervcal vert, init|Oth traum displ spondylolysis of sixth cervcal vert, init +C2833555|T037|AB|S12.550B|ICD10CM|Oth traum displ spondylolysis of sixth cervcal vert, 7thB|Oth traum displ spondylolysis of sixth cervcal vert, 7thB +C2833556|T037|AB|S12.550D|ICD10CM|Oth traum displ spondylolysis of sixth cervcal vert, 7thD|Oth traum displ spondylolysis of sixth cervcal vert, 7thD +C2833557|T037|AB|S12.550G|ICD10CM|Oth traum displ spondylolysis of sixth cervcal vert, 7thG|Oth traum displ spondylolysis of sixth cervcal vert, 7thG +C2833558|T037|AB|S12.550K|ICD10CM|Oth traum displ spondylolysis of sixth cervcal vert, 7thK|Oth traum displ spondylolysis of sixth cervcal vert, 7thK +C2833559|T037|AB|S12.550S|ICD10CM|Oth traum displ spondylolysis of sixth cervcal vert, sequela|Oth traum displ spondylolysis of sixth cervcal vert, sequela +C2833559|T037|PT|S12.550S|ICD10CM|Other traumatic displaced spondylolisthesis of sixth cervical vertebra, sequela|Other traumatic displaced spondylolisthesis of sixth cervical vertebra, sequela +C2833560|T037|AB|S12.551|ICD10CM|Oth traum nondisp spondylolysis of sixth cervcal vertebra|Oth traum nondisp spondylolysis of sixth cervcal vertebra +C2833560|T037|HT|S12.551|ICD10CM|Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra|Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra +C2833561|T037|AB|S12.551A|ICD10CM|Oth traum nondisp spondylolysis of sixth cervcal vert, init|Oth traum nondisp spondylolysis of sixth cervcal vert, init +C2833562|T037|AB|S12.551B|ICD10CM|Oth traum nondisp spondylolysis of sixth cervcal vert, 7thB|Oth traum nondisp spondylolysis of sixth cervcal vert, 7thB +C2833563|T037|AB|S12.551D|ICD10CM|Oth traum nondisp spondylolysis of sixth cervcal vert, 7thD|Oth traum nondisp spondylolysis of sixth cervcal vert, 7thD +C2833564|T037|AB|S12.551G|ICD10CM|Oth traum nondisp spondylolysis of sixth cervcal vert, 7thG|Oth traum nondisp spondylolysis of sixth cervcal vert, 7thG +C2833565|T037|AB|S12.551K|ICD10CM|Oth traum nondisp spondylolysis of sixth cervcal vert, 7thK|Oth traum nondisp spondylolysis of sixth cervcal vert, 7thK +C2833566|T037|AB|S12.551S|ICD10CM|Oth traum nondisp spondylolysis of sixth cervcal vert, sqla|Oth traum nondisp spondylolysis of sixth cervcal vert, sqla +C2833566|T037|PT|S12.551S|ICD10CM|Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, sequela|Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, sequela +C2833567|T037|AB|S12.59|ICD10CM|Other fracture of sixth cervical vertebra|Other fracture of sixth cervical vertebra +C2833567|T037|HT|S12.59|ICD10CM|Other fracture of sixth cervical vertebra|Other fracture of sixth cervical vertebra +C2833568|T037|AB|S12.590|ICD10CM|Other displaced fracture of sixth cervical vertebra|Other displaced fracture of sixth cervical vertebra +C2833568|T037|HT|S12.590|ICD10CM|Other displaced fracture of sixth cervical vertebra|Other displaced fracture of sixth cervical vertebra +C2833569|T037|AB|S12.590A|ICD10CM|Oth disp fx of sixth cervical vertebra, init for clos fx|Oth disp fx of sixth cervical vertebra, init for clos fx +C2833569|T037|PT|S12.590A|ICD10CM|Other displaced fracture of sixth cervical vertebra, initial encounter for closed fracture|Other displaced fracture of sixth cervical vertebra, initial encounter for closed fracture +C2833570|T037|AB|S12.590B|ICD10CM|Oth disp fx of sixth cervical vertebra, init for opn fx|Oth disp fx of sixth cervical vertebra, init for opn fx +C2833570|T037|PT|S12.590B|ICD10CM|Other displaced fracture of sixth cervical vertebra, initial encounter for open fracture|Other displaced fracture of sixth cervical vertebra, initial encounter for open fracture +C2833571|T037|AB|S12.590D|ICD10CM|Oth disp fx of sixth cervcal vert, subs for fx w routn heal|Oth disp fx of sixth cervcal vert, subs for fx w routn heal +C2833572|T037|AB|S12.590G|ICD10CM|Oth disp fx of sixth cervcal vert, subs for fx w delay heal|Oth disp fx of sixth cervcal vert, subs for fx w delay heal +C2833573|T037|AB|S12.590K|ICD10CM|Oth disp fx of sixth cervcal vert, subs for fx w nonunion|Oth disp fx of sixth cervcal vert, subs for fx w nonunion +C2833573|T037|PT|S12.590K|ICD10CM|Other displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with nonunion|Other displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with nonunion +C2833574|T037|AB|S12.590S|ICD10CM|Other displaced fracture of sixth cervical vertebra, sequela|Other displaced fracture of sixth cervical vertebra, sequela +C2833574|T037|PT|S12.590S|ICD10CM|Other displaced fracture of sixth cervical vertebra, sequela|Other displaced fracture of sixth cervical vertebra, sequela +C2833575|T037|AB|S12.591|ICD10CM|Other nondisplaced fracture of sixth cervical vertebra|Other nondisplaced fracture of sixth cervical vertebra +C2833575|T037|HT|S12.591|ICD10CM|Other nondisplaced fracture of sixth cervical vertebra|Other nondisplaced fracture of sixth cervical vertebra +C2833576|T037|AB|S12.591A|ICD10CM|Oth nondisp fx of sixth cervical vertebra, init for clos fx|Oth nondisp fx of sixth cervical vertebra, init for clos fx +C2833576|T037|PT|S12.591A|ICD10CM|Other nondisplaced fracture of sixth cervical vertebra, initial encounter for closed fracture|Other nondisplaced fracture of sixth cervical vertebra, initial encounter for closed fracture +C2833577|T037|AB|S12.591B|ICD10CM|Oth nondisp fx of sixth cervical vertebra, init for opn fx|Oth nondisp fx of sixth cervical vertebra, init for opn fx +C2833577|T037|PT|S12.591B|ICD10CM|Other nondisplaced fracture of sixth cervical vertebra, initial encounter for open fracture|Other nondisplaced fracture of sixth cervical vertebra, initial encounter for open fracture +C2833578|T037|AB|S12.591D|ICD10CM|Oth nondisp fx of sixth cervcal vert, 7thD|Oth nondisp fx of sixth cervcal vert, 7thD +C2833579|T037|AB|S12.591G|ICD10CM|Oth nondisp fx of sixth cervcal vert, 7thG|Oth nondisp fx of sixth cervcal vert, 7thG +C2833580|T037|AB|S12.591K|ICD10CM|Oth nondisp fx of sixth cervcal vert, subs for fx w nonunion|Oth nondisp fx of sixth cervcal vert, subs for fx w nonunion +C2833581|T037|AB|S12.591S|ICD10CM|Other nondisp fx of sixth cervical vertebra, sequela|Other nondisp fx of sixth cervical vertebra, sequela +C2833581|T037|PT|S12.591S|ICD10CM|Other nondisplaced fracture of sixth cervical vertebra, sequela|Other nondisplaced fracture of sixth cervical vertebra, sequela +C0840404|T037|HT|S12.6|ICD10CM|Fracture of seventh cervical vertebra|Fracture of seventh cervical vertebra +C0840404|T037|AB|S12.6|ICD10CM|Fracture of seventh cervical vertebra|Fracture of seventh cervical vertebra +C2833582|T037|AB|S12.60|ICD10CM|Unspecified fracture of seventh cervical vertebra|Unspecified fracture of seventh cervical vertebra +C2833582|T037|HT|S12.60|ICD10CM|Unspecified fracture of seventh cervical vertebra|Unspecified fracture of seventh cervical vertebra +C2833583|T037|AB|S12.600|ICD10CM|Unspecified displaced fracture of seventh cervical vertebra|Unspecified displaced fracture of seventh cervical vertebra +C2833583|T037|HT|S12.600|ICD10CM|Unspecified displaced fracture of seventh cervical vertebra|Unspecified displaced fracture of seventh cervical vertebra +C2833584|T037|AB|S12.600A|ICD10CM|Unsp disp fx of seventh cervical vertebra, init for clos fx|Unsp disp fx of seventh cervical vertebra, init for clos fx +C2833584|T037|PT|S12.600A|ICD10CM|Unspecified displaced fracture of seventh cervical vertebra, initial encounter for closed fracture|Unspecified displaced fracture of seventh cervical vertebra, initial encounter for closed fracture +C2833585|T037|AB|S12.600B|ICD10CM|Unsp disp fx of seventh cervical vertebra, init for opn fx|Unsp disp fx of seventh cervical vertebra, init for opn fx +C2833585|T037|PT|S12.600B|ICD10CM|Unspecified displaced fracture of seventh cervical vertebra, initial encounter for open fracture|Unspecified displaced fracture of seventh cervical vertebra, initial encounter for open fracture +C2833586|T037|AB|S12.600D|ICD10CM|Unsp disp fx of 7th cervcal vert, subs for fx w routn heal|Unsp disp fx of 7th cervcal vert, subs for fx w routn heal +C2833587|T037|AB|S12.600G|ICD10CM|Unsp disp fx of 7th cervcal vert, subs for fx w delay heal|Unsp disp fx of 7th cervcal vert, subs for fx w delay heal +C2833588|T037|AB|S12.600K|ICD10CM|Unsp disp fx of seventh cervcal vert, subs for fx w nonunion|Unsp disp fx of seventh cervcal vert, subs for fx w nonunion +C2833589|T037|AB|S12.600S|ICD10CM|Unspecified disp fx of seventh cervical vertebra, sequela|Unspecified disp fx of seventh cervical vertebra, sequela +C2833589|T037|PT|S12.600S|ICD10CM|Unspecified displaced fracture of seventh cervical vertebra, sequela|Unspecified displaced fracture of seventh cervical vertebra, sequela +C2833590|T037|AB|S12.601|ICD10CM|Unspecified nondisp fx of seventh cervical vertebra|Unspecified nondisp fx of seventh cervical vertebra +C2833590|T037|HT|S12.601|ICD10CM|Unspecified nondisplaced fracture of seventh cervical vertebra|Unspecified nondisplaced fracture of seventh cervical vertebra +C2833591|T037|AB|S12.601A|ICD10CM|Unsp nondisp fx of seventh cervical vertebra, init|Unsp nondisp fx of seventh cervical vertebra, init +C2833592|T037|AB|S12.601B|ICD10CM|Unsp nondisp fx of seventh cervcal vertebra, init for opn fx|Unsp nondisp fx of seventh cervcal vertebra, init for opn fx +C2833592|T037|PT|S12.601B|ICD10CM|Unspecified nondisplaced fracture of seventh cervical vertebra, initial encounter for open fracture|Unspecified nondisplaced fracture of seventh cervical vertebra, initial encounter for open fracture +C2833593|T037|AB|S12.601D|ICD10CM|Unsp nondisp fx of 7th cervcal vert, 7thD|Unsp nondisp fx of 7th cervcal vert, 7thD +C2833594|T037|AB|S12.601G|ICD10CM|Unsp nondisp fx of 7th cervcal vert, 7thG|Unsp nondisp fx of 7th cervcal vert, 7thG +C2833595|T037|AB|S12.601K|ICD10CM|Unsp nondisp fx of 7th cervcal vert, subs for fx w nonunion|Unsp nondisp fx of 7th cervcal vert, subs for fx w nonunion +C2833596|T037|AB|S12.601S|ICD10CM|Unspecified nondisp fx of seventh cervical vertebra, sequela|Unspecified nondisp fx of seventh cervical vertebra, sequela +C2833596|T037|PT|S12.601S|ICD10CM|Unspecified nondisplaced fracture of seventh cervical vertebra, sequela|Unspecified nondisplaced fracture of seventh cervical vertebra, sequela +C2833597|T037|AB|S12.63|ICD10CM|Unsp traumatic spondylolisthesis of seventh cervcal vertebra|Unsp traumatic spondylolisthesis of seventh cervcal vertebra +C2833597|T037|HT|S12.63|ICD10CM|Unspecified traumatic spondylolisthesis of seventh cervical vertebra|Unspecified traumatic spondylolisthesis of seventh cervical vertebra +C2833598|T037|AB|S12.630|ICD10CM|Unsp traum displ spondylolysis of seventh cervcal vertebra|Unsp traum displ spondylolysis of seventh cervcal vertebra +C2833598|T037|HT|S12.630|ICD10CM|Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra|Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra +C2833599|T037|AB|S12.630A|ICD10CM|Unsp traum displ spondylolysis of seventh cervcal vert, init|Unsp traum displ spondylolysis of seventh cervcal vert, init +C2833600|T037|AB|S12.630B|ICD10CM|Unsp traum displ spondylolysis of 7th cervcal vert, 7thB|Unsp traum displ spondylolysis of 7th cervcal vert, 7thB +C2833601|T037|AB|S12.630D|ICD10CM|Unsp traum displ spondylolysis of 7th cervcal vert, 7thD|Unsp traum displ spondylolysis of 7th cervcal vert, 7thD +C2833602|T037|AB|S12.630G|ICD10CM|Unsp traum displ spondylolysis of 7th cervcal vert, 7thG|Unsp traum displ spondylolysis of 7th cervcal vert, 7thG +C2833603|T037|AB|S12.630K|ICD10CM|Unsp traum displ spondylolysis of 7th cervcal vert, 7thK|Unsp traum displ spondylolysis of 7th cervcal vert, 7thK +C2833604|T037|AB|S12.630S|ICD10CM|Unsp traum displ spondylolysis of seventh cervcal vert, sqla|Unsp traum displ spondylolysis of seventh cervcal vert, sqla +C2833604|T037|PT|S12.630S|ICD10CM|Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, sequela|Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, sequela +C2833605|T037|AB|S12.631|ICD10CM|Unsp traum nondisp spondylolysis of seventh cervcal vertebra|Unsp traum nondisp spondylolysis of seventh cervcal vertebra +C2833605|T037|HT|S12.631|ICD10CM|Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra|Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra +C2833606|T037|AB|S12.631A|ICD10CM|Unsp traum nondisp spondylolysis of 7th cervcal vert, init|Unsp traum nondisp spondylolysis of 7th cervcal vert, init +C2833607|T037|AB|S12.631B|ICD10CM|Unsp traum nondisp spondylolysis of 7th cervcal vert, 7thB|Unsp traum nondisp spondylolysis of 7th cervcal vert, 7thB +C2833608|T037|AB|S12.631D|ICD10CM|Unsp traum nondisp spondylolysis of 7th cervcal vert, 7thD|Unsp traum nondisp spondylolysis of 7th cervcal vert, 7thD +C2833609|T037|AB|S12.631G|ICD10CM|Unsp traum nondisp spondylolysis of 7th cervcal vert, 7thG|Unsp traum nondisp spondylolysis of 7th cervcal vert, 7thG +C2833610|T037|AB|S12.631K|ICD10CM|Unsp traum nondisp spondylolysis of 7th cervcal vert, 7thK|Unsp traum nondisp spondylolysis of 7th cervcal vert, 7thK +C2833611|T037|AB|S12.631S|ICD10CM|Unsp traum nondisp spondylolysis of 7th cervcal vert, sqla|Unsp traum nondisp spondylolysis of 7th cervcal vert, sqla +C2833611|T037|PT|S12.631S|ICD10CM|Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, sequela|Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, sequela +C2833612|T037|HT|S12.64|ICD10CM|Type III traumatic spondylolisthesis of seventh cervical vertebra|Type III traumatic spondylolisthesis of seventh cervical vertebra +C2833612|T037|AB|S12.64|ICD10CM|Type III traumatic spondylolysis of seventh cervcal vertebra|Type III traumatic spondylolysis of seventh cervcal vertebra +C2833613|T037|AB|S12.64XA|ICD10CM|Type III traum spondylolysis of seventh cervcal vert, init|Type III traum spondylolysis of seventh cervcal vert, init +C2833614|T037|AB|S12.64XB|ICD10CM|Type III traum spondylolysis of 7th cervcal vert, 7thB|Type III traum spondylolysis of 7th cervcal vert, 7thB +C2833615|T037|AB|S12.64XD|ICD10CM|Type III traum spondylolysis of 7th cervcal vert, 7thD|Type III traum spondylolysis of 7th cervcal vert, 7thD +C2833616|T037|AB|S12.64XG|ICD10CM|Type III traum spondylolysis of 7th cervcal vert, 7thG|Type III traum spondylolysis of 7th cervcal vert, 7thG +C2833617|T037|AB|S12.64XK|ICD10CM|Type III traum spondylolysis of 7th cervcal vert, 7thK|Type III traum spondylolysis of 7th cervcal vert, 7thK +C2833618|T037|AB|S12.64XS|ICD10CM|Type III traum spondylolysis of seventh cervcal vert, sqla|Type III traum spondylolysis of seventh cervcal vert, sqla +C2833618|T037|PT|S12.64XS|ICD10CM|Type III traumatic spondylolisthesis of seventh cervical vertebra, sequela|Type III traumatic spondylolisthesis of seventh cervical vertebra, sequela +C2833619|T037|AB|S12.65|ICD10CM|Oth traumatic spondylolisthesis of seventh cervical vertebra|Oth traumatic spondylolisthesis of seventh cervical vertebra +C2833619|T037|HT|S12.65|ICD10CM|Other traumatic spondylolisthesis of seventh cervical vertebra|Other traumatic spondylolisthesis of seventh cervical vertebra +C2833620|T037|AB|S12.650|ICD10CM|Oth traum displ spondylolysis of seventh cervcal vertebra|Oth traum displ spondylolysis of seventh cervcal vertebra +C2833620|T037|HT|S12.650|ICD10CM|Other traumatic displaced spondylolisthesis of seventh cervical vertebra|Other traumatic displaced spondylolisthesis of seventh cervical vertebra +C2833621|T037|AB|S12.650A|ICD10CM|Oth traum displ spondylolysis of seventh cervcal vert, init|Oth traum displ spondylolysis of seventh cervcal vert, init +C2833622|T037|AB|S12.650B|ICD10CM|Oth traum displ spondylolysis of 7th cervcal vert, 7thB|Oth traum displ spondylolysis of 7th cervcal vert, 7thB +C2833623|T037|AB|S12.650D|ICD10CM|Oth traum displ spondylolysis of 7th cervcal vert, 7thD|Oth traum displ spondylolysis of 7th cervcal vert, 7thD +C2833624|T037|AB|S12.650G|ICD10CM|Oth traum displ spondylolysis of 7th cervcal vert, 7thG|Oth traum displ spondylolysis of 7th cervcal vert, 7thG +C2833625|T037|AB|S12.650K|ICD10CM|Oth traum displ spondylolysis of 7th cervcal vert, 7thK|Oth traum displ spondylolysis of 7th cervcal vert, 7thK +C2833626|T037|AB|S12.650S|ICD10CM|Oth traum displ spondylolysis of seventh cervcal vert, sqla|Oth traum displ spondylolysis of seventh cervcal vert, sqla +C2833626|T037|PT|S12.650S|ICD10CM|Other traumatic displaced spondylolisthesis of seventh cervical vertebra, sequela|Other traumatic displaced spondylolisthesis of seventh cervical vertebra, sequela +C2833627|T037|AB|S12.651|ICD10CM|Oth traum nondisp spondylolysis of seventh cervcal vertebra|Oth traum nondisp spondylolysis of seventh cervcal vertebra +C2833627|T037|HT|S12.651|ICD10CM|Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra|Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra +C2833628|T037|AB|S12.651A|ICD10CM|Oth traum nondisp spondylolysis of 7th cervcal vert, init|Oth traum nondisp spondylolysis of 7th cervcal vert, init +C2833629|T037|AB|S12.651B|ICD10CM|Oth traum nondisp spondylolysis of 7th cervcal vert, 7thB|Oth traum nondisp spondylolysis of 7th cervcal vert, 7thB +C2833630|T037|AB|S12.651D|ICD10CM|Oth traum nondisp spondylolysis of 7th cervcal vert, 7thD|Oth traum nondisp spondylolysis of 7th cervcal vert, 7thD +C2833631|T037|AB|S12.651G|ICD10CM|Oth traum nondisp spondylolysis of 7th cervcal vert, 7thG|Oth traum nondisp spondylolysis of 7th cervcal vert, 7thG +C2833632|T037|AB|S12.651K|ICD10CM|Oth traum nondisp spondylolysis of 7th cervcal vert, 7thK|Oth traum nondisp spondylolysis of 7th cervcal vert, 7thK +C2833633|T037|AB|S12.651S|ICD10CM|Oth traum nondisp spondylolysis of 7th cervcal vert, sqla|Oth traum nondisp spondylolysis of 7th cervcal vert, sqla +C2833633|T037|PT|S12.651S|ICD10CM|Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, sequela|Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, sequela +C2833634|T037|AB|S12.69|ICD10CM|Other fracture of seventh cervical vertebra|Other fracture of seventh cervical vertebra +C2833634|T037|HT|S12.69|ICD10CM|Other fracture of seventh cervical vertebra|Other fracture of seventh cervical vertebra +C2833635|T037|AB|S12.690|ICD10CM|Other displaced fracture of seventh cervical vertebra|Other displaced fracture of seventh cervical vertebra +C2833635|T037|HT|S12.690|ICD10CM|Other displaced fracture of seventh cervical vertebra|Other displaced fracture of seventh cervical vertebra +C2833636|T037|AB|S12.690A|ICD10CM|Oth disp fx of seventh cervical vertebra, init for clos fx|Oth disp fx of seventh cervical vertebra, init for clos fx +C2833636|T037|PT|S12.690A|ICD10CM|Other displaced fracture of seventh cervical vertebra, initial encounter for closed fracture|Other displaced fracture of seventh cervical vertebra, initial encounter for closed fracture +C2833637|T037|AB|S12.690B|ICD10CM|Oth disp fx of seventh cervical vertebra, init for opn fx|Oth disp fx of seventh cervical vertebra, init for opn fx +C2833637|T037|PT|S12.690B|ICD10CM|Other displaced fracture of seventh cervical vertebra, initial encounter for open fracture|Other displaced fracture of seventh cervical vertebra, initial encounter for open fracture +C2833638|T037|AB|S12.690D|ICD10CM|Oth disp fx of 7th cervcal vert, subs for fx w routn heal|Oth disp fx of 7th cervcal vert, subs for fx w routn heal +C2833639|T037|AB|S12.690G|ICD10CM|Oth disp fx of 7th cervcal vert, subs for fx w delay heal|Oth disp fx of 7th cervcal vert, subs for fx w delay heal +C2833640|T037|AB|S12.690K|ICD10CM|Oth disp fx of seventh cervcal vert, subs for fx w nonunion|Oth disp fx of seventh cervcal vert, subs for fx w nonunion +C2833641|T037|AB|S12.690S|ICD10CM|Other disp fx of seventh cervical vertebra, sequela|Other disp fx of seventh cervical vertebra, sequela +C2833641|T037|PT|S12.690S|ICD10CM|Other displaced fracture of seventh cervical vertebra, sequela|Other displaced fracture of seventh cervical vertebra, sequela +C2833642|T037|AB|S12.691|ICD10CM|Other nondisplaced fracture of seventh cervical vertebra|Other nondisplaced fracture of seventh cervical vertebra +C2833642|T037|HT|S12.691|ICD10CM|Other nondisplaced fracture of seventh cervical vertebra|Other nondisplaced fracture of seventh cervical vertebra +C2833643|T037|AB|S12.691A|ICD10CM|Oth nondisp fx of seventh cervical vertebra, init|Oth nondisp fx of seventh cervical vertebra, init +C2833643|T037|PT|S12.691A|ICD10CM|Other nondisplaced fracture of seventh cervical vertebra, initial encounter for closed fracture|Other nondisplaced fracture of seventh cervical vertebra, initial encounter for closed fracture +C2833644|T037|AB|S12.691B|ICD10CM|Oth nondisp fx of seventh cervical vertebra, init for opn fx|Oth nondisp fx of seventh cervical vertebra, init for opn fx +C2833644|T037|PT|S12.691B|ICD10CM|Other nondisplaced fracture of seventh cervical vertebra, initial encounter for open fracture|Other nondisplaced fracture of seventh cervical vertebra, initial encounter for open fracture +C2833645|T037|AB|S12.691D|ICD10CM|Oth nondisp fx of 7th cervcal vert, subs for fx w routn heal|Oth nondisp fx of 7th cervcal vert, subs for fx w routn heal +C2833646|T037|AB|S12.691G|ICD10CM|Oth nondisp fx of 7th cervcal vert, subs for fx w delay heal|Oth nondisp fx of 7th cervcal vert, subs for fx w delay heal +C2833647|T037|AB|S12.691K|ICD10CM|Oth nondisp fx of 7th cervcal vert, subs for fx w nonunion|Oth nondisp fx of 7th cervcal vert, subs for fx w nonunion +C2833648|T037|AB|S12.691S|ICD10CM|Other nondisp fx of seventh cervical vertebra, sequela|Other nondisp fx of seventh cervical vertebra, sequela +C2833648|T037|PT|S12.691S|ICD10CM|Other nondisplaced fracture of seventh cervical vertebra, sequela|Other nondisplaced fracture of seventh cervical vertebra, sequela +C0452080|T037|PT|S12.7|ICD10|Multiple fractures of cervical spine|Multiple fractures of cervical spine +C0478221|T037|PT|S12.8|ICD10|Fracture of other parts of neck|Fracture of other parts of neck +C0478221|T037|HT|S12.8|ICD10CM|Fracture of other parts of neck|Fracture of other parts of neck +C0478221|T037|AB|S12.8|ICD10CM|Fracture of other parts of neck|Fracture of other parts of neck +C0347591|T037|ET|S12.8|ICD10CM|Hyoid bone|Hyoid bone +C0023051|T047|ET|S12.8|ICD10CM|Larynx|Larynx +C1392091|T037|ET|S12.8|ICD10CM|Thyroid cartilage|Thyroid cartilage +C0040580|T047|ET|S12.8|ICD10CM|Trachea|Trachea +C2833649|T037|PT|S12.8XXA|ICD10CM|Fracture of other parts of neck, initial encounter|Fracture of other parts of neck, initial encounter +C2833649|T037|AB|S12.8XXA|ICD10CM|Fracture of other parts of neck, initial encounter|Fracture of other parts of neck, initial encounter +C2833650|T037|PT|S12.8XXD|ICD10CM|Fracture of other parts of neck, subsequent encounter|Fracture of other parts of neck, subsequent encounter +C2833650|T037|AB|S12.8XXD|ICD10CM|Fracture of other parts of neck, subsequent encounter|Fracture of other parts of neck, subsequent encounter +C2833651|T037|PT|S12.8XXS|ICD10CM|Fracture of other parts of neck, sequela|Fracture of other parts of neck, sequela +C2833651|T037|AB|S12.8XXS|ICD10CM|Fracture of other parts of neck, sequela|Fracture of other parts of neck, sequela +C0262414|T037|ET|S12.9|ICD10CM|Fracture of cervical spine NOS|Fracture of cervical spine NOS +C0262414|T037|ET|S12.9|ICD10CM|Fracture of cervical vertebra NOS|Fracture of cervical vertebra NOS +C0262414|T037|ET|S12.9|ICD10CM|Fracture of neck NOS|Fracture of neck NOS +C0262414|T037|PT|S12.9|ICD10|Fracture of neck, part unspecified|Fracture of neck, part unspecified +C2833652|T037|AB|S12.9|ICD10CM|Fracture of neck, unspecified|Fracture of neck, unspecified +C2833652|T037|HT|S12.9|ICD10CM|Fracture of neck, unspecified|Fracture of neck, unspecified +C2833653|T037|AB|S12.9XXA|ICD10CM|Fracture of neck, unspecified, initial encounter|Fracture of neck, unspecified, initial encounter +C2833653|T037|PT|S12.9XXA|ICD10CM|Fracture of neck, unspecified, initial encounter|Fracture of neck, unspecified, initial encounter +C2833654|T037|AB|S12.9XXD|ICD10CM|Fracture of neck, unspecified, subsequent encounter|Fracture of neck, unspecified, subsequent encounter +C2833654|T037|PT|S12.9XXD|ICD10CM|Fracture of neck, unspecified, subsequent encounter|Fracture of neck, unspecified, subsequent encounter +C2833655|T037|AB|S12.9XXS|ICD10CM|Fracture of neck, unspecified, sequela|Fracture of neck, unspecified, sequela +C2833655|T037|PT|S12.9XXS|ICD10CM|Fracture of neck, unspecified, sequela|Fracture of neck, unspecified, sequela +C4290313|T037|ET|S13|ICD10CM|avulsion of joint or ligament at neck level|avulsion of joint or ligament at neck level +C2833663|T037|AB|S13|ICD10CM|Dislocation and sprain of joints and ligaments at neck level|Dislocation and sprain of joints and ligaments at neck level +C2833663|T037|HT|S13|ICD10CM|Dislocation and sprain of joints and ligaments at neck level|Dislocation and sprain of joints and ligaments at neck level +C0495816|T037|HT|S13|ICD10|Dislocation, sprain and strain of joints and ligaments at neck level|Dislocation, sprain and strain of joints and ligaments at neck level +C4290314|T037|ET|S13|ICD10CM|laceration of cartilage, joint or ligament at neck level|laceration of cartilage, joint or ligament at neck level +C4290315|T037|ET|S13|ICD10CM|sprain of cartilage, joint or ligament at neck level|sprain of cartilage, joint or ligament at neck level +C4290316|T037|ET|S13|ICD10CM|traumatic hemarthrosis of joint or ligament at neck level|traumatic hemarthrosis of joint or ligament at neck level +C4290317|T037|ET|S13|ICD10CM|traumatic rupture of joint or ligament at neck level|traumatic rupture of joint or ligament at neck level +C4290318|T037|ET|S13|ICD10CM|traumatic subluxation of joint or ligament at neck level|traumatic subluxation of joint or ligament at neck level +C4290319|T037|ET|S13|ICD10CM|traumatic tear of joint or ligament at neck level|traumatic tear of joint or ligament at neck level +C0495817|T037|PT|S13.0|ICD10|Traumatic rupture of cervical intervertebral disc|Traumatic rupture of cervical intervertebral disc +C0495817|T037|HT|S13.0|ICD10CM|Traumatic rupture of cervical intervertebral disc|Traumatic rupture of cervical intervertebral disc +C0495817|T037|AB|S13.0|ICD10CM|Traumatic rupture of cervical intervertebral disc|Traumatic rupture of cervical intervertebral disc +C2833664|T037|AB|S13.0XXA|ICD10CM|Traumatic rupture of cervical intervertebral disc, init|Traumatic rupture of cervical intervertebral disc, init +C2833664|T037|PT|S13.0XXA|ICD10CM|Traumatic rupture of cervical intervertebral disc, initial encounter|Traumatic rupture of cervical intervertebral disc, initial encounter +C2833665|T037|AB|S13.0XXD|ICD10CM|Traumatic rupture of cervical intervertebral disc, subs|Traumatic rupture of cervical intervertebral disc, subs +C2833665|T037|PT|S13.0XXD|ICD10CM|Traumatic rupture of cervical intervertebral disc, subsequent encounter|Traumatic rupture of cervical intervertebral disc, subsequent encounter +C2833666|T037|AB|S13.0XXS|ICD10CM|Traumatic rupture of cervical intervertebral disc, sequela|Traumatic rupture of cervical intervertebral disc, sequela +C2833666|T037|PT|S13.0XXS|ICD10CM|Traumatic rupture of cervical intervertebral disc, sequela|Traumatic rupture of cervical intervertebral disc, sequela +C0272806|T037|PT|S13.1|ICD10|Dislocation of cervical vertebra|Dislocation of cervical vertebra +C2833667|T037|AB|S13.1|ICD10CM|Subluxation and dislocation of cervical vertebrae|Subluxation and dislocation of cervical vertebrae +C2833667|T037|HT|S13.1|ICD10CM|Subluxation and dislocation of cervical vertebrae|Subluxation and dislocation of cervical vertebrae +C2833668|T037|AB|S13.10|ICD10CM|Subluxation and dislocation of unsp cervical vertebrae|Subluxation and dislocation of unsp cervical vertebrae +C2833668|T037|HT|S13.10|ICD10CM|Subluxation and dislocation of unspecified cervical vertebrae|Subluxation and dislocation of unspecified cervical vertebrae +C2833669|T037|AB|S13.100|ICD10CM|Subluxation of unspecified cervical vertebrae|Subluxation of unspecified cervical vertebrae +C2833669|T037|HT|S13.100|ICD10CM|Subluxation of unspecified cervical vertebrae|Subluxation of unspecified cervical vertebrae +C2833670|T037|AB|S13.100A|ICD10CM|Subluxation of unspecified cervical vertebrae, init encntr|Subluxation of unspecified cervical vertebrae, init encntr +C2833670|T037|PT|S13.100A|ICD10CM|Subluxation of unspecified cervical vertebrae, initial encounter|Subluxation of unspecified cervical vertebrae, initial encounter +C2833671|T037|AB|S13.100D|ICD10CM|Subluxation of unspecified cervical vertebrae, subs encntr|Subluxation of unspecified cervical vertebrae, subs encntr +C2833671|T037|PT|S13.100D|ICD10CM|Subluxation of unspecified cervical vertebrae, subsequent encounter|Subluxation of unspecified cervical vertebrae, subsequent encounter +C2833672|T037|PT|S13.100S|ICD10CM|Subluxation of unspecified cervical vertebrae, sequela|Subluxation of unspecified cervical vertebrae, sequela +C2833672|T037|AB|S13.100S|ICD10CM|Subluxation of unspecified cervical vertebrae, sequela|Subluxation of unspecified cervical vertebrae, sequela +C2833673|T037|AB|S13.101|ICD10CM|Dislocation of unspecified cervical vertebrae|Dislocation of unspecified cervical vertebrae +C2833673|T037|HT|S13.101|ICD10CM|Dislocation of unspecified cervical vertebrae|Dislocation of unspecified cervical vertebrae +C2833674|T037|AB|S13.101A|ICD10CM|Dislocation of unspecified cervical vertebrae, init encntr|Dislocation of unspecified cervical vertebrae, init encntr +C2833674|T037|PT|S13.101A|ICD10CM|Dislocation of unspecified cervical vertebrae, initial encounter|Dislocation of unspecified cervical vertebrae, initial encounter +C2833675|T037|AB|S13.101D|ICD10CM|Dislocation of unspecified cervical vertebrae, subs encntr|Dislocation of unspecified cervical vertebrae, subs encntr +C2833675|T037|PT|S13.101D|ICD10CM|Dislocation of unspecified cervical vertebrae, subsequent encounter|Dislocation of unspecified cervical vertebrae, subsequent encounter +C2833676|T037|PT|S13.101S|ICD10CM|Dislocation of unspecified cervical vertebrae, sequela|Dislocation of unspecified cervical vertebrae, sequela +C2833676|T037|AB|S13.101S|ICD10CM|Dislocation of unspecified cervical vertebrae, sequela|Dislocation of unspecified cervical vertebrae, sequela +C2833677|T037|ET|S13.11|ICD10CM|Subluxation and dislocation of atlantooccipital joint|Subluxation and dislocation of atlantooccipital joint +C2833678|T037|ET|S13.11|ICD10CM|Subluxation and dislocation of atloidooccipital joint|Subluxation and dislocation of atloidooccipital joint +C2833680|T037|AB|S13.11|ICD10CM|Subluxation and dislocation of C0/C1 cervical vertebrae|Subluxation and dislocation of C0/C1 cervical vertebrae +C2833680|T037|HT|S13.11|ICD10CM|Subluxation and dislocation of C0/C1 cervical vertebrae|Subluxation and dislocation of C0/C1 cervical vertebrae +C2833679|T037|ET|S13.11|ICD10CM|Subluxation and dislocation of occipitoatloid joint|Subluxation and dislocation of occipitoatloid joint +C2833681|T037|AB|S13.110|ICD10CM|Subluxation of C0/C1 cervical vertebrae|Subluxation of C0/C1 cervical vertebrae +C2833681|T037|HT|S13.110|ICD10CM|Subluxation of C0/C1 cervical vertebrae|Subluxation of C0/C1 cervical vertebrae +C2833682|T037|PT|S13.110A|ICD10CM|Subluxation of C0/C1 cervical vertebrae, initial encounter|Subluxation of C0/C1 cervical vertebrae, initial encounter +C2833682|T037|AB|S13.110A|ICD10CM|Subluxation of C0/C1 cervical vertebrae, initial encounter|Subluxation of C0/C1 cervical vertebrae, initial encounter +C2833683|T037|AB|S13.110D|ICD10CM|Subluxation of C0/C1 cervical vertebrae, subs encntr|Subluxation of C0/C1 cervical vertebrae, subs encntr +C2833683|T037|PT|S13.110D|ICD10CM|Subluxation of C0/C1 cervical vertebrae, subsequent encounter|Subluxation of C0/C1 cervical vertebrae, subsequent encounter +C2833684|T037|PT|S13.110S|ICD10CM|Subluxation of C0/C1 cervical vertebrae, sequela|Subluxation of C0/C1 cervical vertebrae, sequela +C2833684|T037|AB|S13.110S|ICD10CM|Subluxation of C0/C1 cervical vertebrae, sequela|Subluxation of C0/C1 cervical vertebrae, sequela +C2833685|T037|AB|S13.111|ICD10CM|Dislocation of C0/C1 cervical vertebrae|Dislocation of C0/C1 cervical vertebrae +C2833685|T037|HT|S13.111|ICD10CM|Dislocation of C0/C1 cervical vertebrae|Dislocation of C0/C1 cervical vertebrae +C2833686|T037|PT|S13.111A|ICD10CM|Dislocation of C0/C1 cervical vertebrae, initial encounter|Dislocation of C0/C1 cervical vertebrae, initial encounter +C2833686|T037|AB|S13.111A|ICD10CM|Dislocation of C0/C1 cervical vertebrae, initial encounter|Dislocation of C0/C1 cervical vertebrae, initial encounter +C2833687|T037|AB|S13.111D|ICD10CM|Dislocation of C0/C1 cervical vertebrae, subs encntr|Dislocation of C0/C1 cervical vertebrae, subs encntr +C2833687|T037|PT|S13.111D|ICD10CM|Dislocation of C0/C1 cervical vertebrae, subsequent encounter|Dislocation of C0/C1 cervical vertebrae, subsequent encounter +C2833688|T037|PT|S13.111S|ICD10CM|Dislocation of C0/C1 cervical vertebrae, sequela|Dislocation of C0/C1 cervical vertebrae, sequela +C2833688|T037|AB|S13.111S|ICD10CM|Dislocation of C0/C1 cervical vertebrae, sequela|Dislocation of C0/C1 cervical vertebrae, sequela +C2833689|T037|ET|S13.12|ICD10CM|Subluxation and dislocation of atlantoaxial joint|Subluxation and dislocation of atlantoaxial joint +C2833690|T037|AB|S13.12|ICD10CM|Subluxation and dislocation of C1/C2 cervical vertebrae|Subluxation and dislocation of C1/C2 cervical vertebrae +C2833690|T037|HT|S13.12|ICD10CM|Subluxation and dislocation of C1/C2 cervical vertebrae|Subluxation and dislocation of C1/C2 cervical vertebrae +C2833691|T037|AB|S13.120|ICD10CM|Subluxation of C1/C2 cervical vertebrae|Subluxation of C1/C2 cervical vertebrae +C2833691|T037|HT|S13.120|ICD10CM|Subluxation of C1/C2 cervical vertebrae|Subluxation of C1/C2 cervical vertebrae +C2833692|T037|PT|S13.120A|ICD10CM|Subluxation of C1/C2 cervical vertebrae, initial encounter|Subluxation of C1/C2 cervical vertebrae, initial encounter +C2833692|T037|AB|S13.120A|ICD10CM|Subluxation of C1/C2 cervical vertebrae, initial encounter|Subluxation of C1/C2 cervical vertebrae, initial encounter +C2833693|T037|AB|S13.120D|ICD10CM|Subluxation of C1/C2 cervical vertebrae, subs encntr|Subluxation of C1/C2 cervical vertebrae, subs encntr +C2833693|T037|PT|S13.120D|ICD10CM|Subluxation of C1/C2 cervical vertebrae, subsequent encounter|Subluxation of C1/C2 cervical vertebrae, subsequent encounter +C2833694|T037|PT|S13.120S|ICD10CM|Subluxation of C1/C2 cervical vertebrae, sequela|Subluxation of C1/C2 cervical vertebrae, sequela +C2833694|T037|AB|S13.120S|ICD10CM|Subluxation of C1/C2 cervical vertebrae, sequela|Subluxation of C1/C2 cervical vertebrae, sequela +C0434544|T037|HT|S13.121|ICD10CM|Dislocation of C1/C2 cervical vertebrae|Dislocation of C1/C2 cervical vertebrae +C0434544|T037|AB|S13.121|ICD10CM|Dislocation of C1/C2 cervical vertebrae|Dislocation of C1/C2 cervical vertebrae +C2833695|T037|PT|S13.121A|ICD10CM|Dislocation of C1/C2 cervical vertebrae, initial encounter|Dislocation of C1/C2 cervical vertebrae, initial encounter +C2833695|T037|AB|S13.121A|ICD10CM|Dislocation of C1/C2 cervical vertebrae, initial encounter|Dislocation of C1/C2 cervical vertebrae, initial encounter +C2833696|T037|AB|S13.121D|ICD10CM|Dislocation of C1/C2 cervical vertebrae, subs encntr|Dislocation of C1/C2 cervical vertebrae, subs encntr +C2833696|T037|PT|S13.121D|ICD10CM|Dislocation of C1/C2 cervical vertebrae, subsequent encounter|Dislocation of C1/C2 cervical vertebrae, subsequent encounter +C2833697|T037|PT|S13.121S|ICD10CM|Dislocation of C1/C2 cervical vertebrae, sequela|Dislocation of C1/C2 cervical vertebrae, sequela +C2833697|T037|AB|S13.121S|ICD10CM|Dislocation of C1/C2 cervical vertebrae, sequela|Dislocation of C1/C2 cervical vertebrae, sequela +C2833698|T037|AB|S13.13|ICD10CM|Subluxation and dislocation of C2/C3 cervical vertebrae|Subluxation and dislocation of C2/C3 cervical vertebrae +C2833698|T037|HT|S13.13|ICD10CM|Subluxation and dislocation of C2/C3 cervical vertebrae|Subluxation and dislocation of C2/C3 cervical vertebrae +C2833699|T037|AB|S13.130|ICD10CM|Subluxation of C2/C3 cervical vertebrae|Subluxation of C2/C3 cervical vertebrae +C2833699|T037|HT|S13.130|ICD10CM|Subluxation of C2/C3 cervical vertebrae|Subluxation of C2/C3 cervical vertebrae +C2833700|T037|PT|S13.130A|ICD10CM|Subluxation of C2/C3 cervical vertebrae, initial encounter|Subluxation of C2/C3 cervical vertebrae, initial encounter +C2833700|T037|AB|S13.130A|ICD10CM|Subluxation of C2/C3 cervical vertebrae, initial encounter|Subluxation of C2/C3 cervical vertebrae, initial encounter +C2833701|T037|AB|S13.130D|ICD10CM|Subluxation of C2/C3 cervical vertebrae, subs encntr|Subluxation of C2/C3 cervical vertebrae, subs encntr +C2833701|T037|PT|S13.130D|ICD10CM|Subluxation of C2/C3 cervical vertebrae, subsequent encounter|Subluxation of C2/C3 cervical vertebrae, subsequent encounter +C2833702|T037|PT|S13.130S|ICD10CM|Subluxation of C2/C3 cervical vertebrae, sequela|Subluxation of C2/C3 cervical vertebrae, sequela +C2833702|T037|AB|S13.130S|ICD10CM|Subluxation of C2/C3 cervical vertebrae, sequela|Subluxation of C2/C3 cervical vertebrae, sequela +C0840407|T037|HT|S13.131|ICD10CM|Dislocation of C2/C3 cervical vertebrae|Dislocation of C2/C3 cervical vertebrae +C0840407|T037|AB|S13.131|ICD10CM|Dislocation of C2/C3 cervical vertebrae|Dislocation of C2/C3 cervical vertebrae +C2833703|T037|PT|S13.131A|ICD10CM|Dislocation of C2/C3 cervical vertebrae, initial encounter|Dislocation of C2/C3 cervical vertebrae, initial encounter +C2833703|T037|AB|S13.131A|ICD10CM|Dislocation of C2/C3 cervical vertebrae, initial encounter|Dislocation of C2/C3 cervical vertebrae, initial encounter +C2833704|T037|AB|S13.131D|ICD10CM|Dislocation of C2/C3 cervical vertebrae, subs encntr|Dislocation of C2/C3 cervical vertebrae, subs encntr +C2833704|T037|PT|S13.131D|ICD10CM|Dislocation of C2/C3 cervical vertebrae, subsequent encounter|Dislocation of C2/C3 cervical vertebrae, subsequent encounter +C2833705|T037|PT|S13.131S|ICD10CM|Dislocation of C2/C3 cervical vertebrae, sequela|Dislocation of C2/C3 cervical vertebrae, sequela +C2833705|T037|AB|S13.131S|ICD10CM|Dislocation of C2/C3 cervical vertebrae, sequela|Dislocation of C2/C3 cervical vertebrae, sequela +C2833706|T037|AB|S13.14|ICD10CM|Subluxation and dislocation of C3/C4 cervical vertebrae|Subluxation and dislocation of C3/C4 cervical vertebrae +C2833706|T037|HT|S13.14|ICD10CM|Subluxation and dislocation of C3/C4 cervical vertebrae|Subluxation and dislocation of C3/C4 cervical vertebrae +C2833707|T037|AB|S13.140|ICD10CM|Subluxation of C3/C4 cervical vertebrae|Subluxation of C3/C4 cervical vertebrae +C2833707|T037|HT|S13.140|ICD10CM|Subluxation of C3/C4 cervical vertebrae|Subluxation of C3/C4 cervical vertebrae +C2833708|T037|PT|S13.140A|ICD10CM|Subluxation of C3/C4 cervical vertebrae, initial encounter|Subluxation of C3/C4 cervical vertebrae, initial encounter +C2833708|T037|AB|S13.140A|ICD10CM|Subluxation of C3/C4 cervical vertebrae, initial encounter|Subluxation of C3/C4 cervical vertebrae, initial encounter +C2833709|T037|AB|S13.140D|ICD10CM|Subluxation of C3/C4 cervical vertebrae, subs encntr|Subluxation of C3/C4 cervical vertebrae, subs encntr +C2833709|T037|PT|S13.140D|ICD10CM|Subluxation of C3/C4 cervical vertebrae, subsequent encounter|Subluxation of C3/C4 cervical vertebrae, subsequent encounter +C2833710|T037|PT|S13.140S|ICD10CM|Subluxation of C3/C4 cervical vertebrae, sequela|Subluxation of C3/C4 cervical vertebrae, sequela +C2833710|T037|AB|S13.140S|ICD10CM|Subluxation of C3/C4 cervical vertebrae, sequela|Subluxation of C3/C4 cervical vertebrae, sequela +C0840408|T037|HT|S13.141|ICD10CM|Dislocation of C3/C4 cervical vertebrae|Dislocation of C3/C4 cervical vertebrae +C0840408|T037|AB|S13.141|ICD10CM|Dislocation of C3/C4 cervical vertebrae|Dislocation of C3/C4 cervical vertebrae +C2833711|T037|PT|S13.141A|ICD10CM|Dislocation of C3/C4 cervical vertebrae, initial encounter|Dislocation of C3/C4 cervical vertebrae, initial encounter +C2833711|T037|AB|S13.141A|ICD10CM|Dislocation of C3/C4 cervical vertebrae, initial encounter|Dislocation of C3/C4 cervical vertebrae, initial encounter +C2833712|T037|AB|S13.141D|ICD10CM|Dislocation of C3/C4 cervical vertebrae, subs encntr|Dislocation of C3/C4 cervical vertebrae, subs encntr +C2833712|T037|PT|S13.141D|ICD10CM|Dislocation of C3/C4 cervical vertebrae, subsequent encounter|Dislocation of C3/C4 cervical vertebrae, subsequent encounter +C2833713|T037|PT|S13.141S|ICD10CM|Dislocation of C3/C4 cervical vertebrae, sequela|Dislocation of C3/C4 cervical vertebrae, sequela +C2833713|T037|AB|S13.141S|ICD10CM|Dislocation of C3/C4 cervical vertebrae, sequela|Dislocation of C3/C4 cervical vertebrae, sequela +C2833714|T037|AB|S13.15|ICD10CM|Subluxation and dislocation of C4/C5 cervical vertebrae|Subluxation and dislocation of C4/C5 cervical vertebrae +C2833714|T037|HT|S13.15|ICD10CM|Subluxation and dislocation of C4/C5 cervical vertebrae|Subluxation and dislocation of C4/C5 cervical vertebrae +C2833715|T037|AB|S13.150|ICD10CM|Subluxation of C4/C5 cervical vertebrae|Subluxation of C4/C5 cervical vertebrae +C2833715|T037|HT|S13.150|ICD10CM|Subluxation of C4/C5 cervical vertebrae|Subluxation of C4/C5 cervical vertebrae +C2833716|T037|PT|S13.150A|ICD10CM|Subluxation of C4/C5 cervical vertebrae, initial encounter|Subluxation of C4/C5 cervical vertebrae, initial encounter +C2833716|T037|AB|S13.150A|ICD10CM|Subluxation of C4/C5 cervical vertebrae, initial encounter|Subluxation of C4/C5 cervical vertebrae, initial encounter +C2833717|T037|AB|S13.150D|ICD10CM|Subluxation of C4/C5 cervical vertebrae, subs encntr|Subluxation of C4/C5 cervical vertebrae, subs encntr +C2833717|T037|PT|S13.150D|ICD10CM|Subluxation of C4/C5 cervical vertebrae, subsequent encounter|Subluxation of C4/C5 cervical vertebrae, subsequent encounter +C2833718|T037|PT|S13.150S|ICD10CM|Subluxation of C4/C5 cervical vertebrae, sequela|Subluxation of C4/C5 cervical vertebrae, sequela +C2833718|T037|AB|S13.150S|ICD10CM|Subluxation of C4/C5 cervical vertebrae, sequela|Subluxation of C4/C5 cervical vertebrae, sequela +C0840409|T037|HT|S13.151|ICD10CM|Dislocation of C4/C5 cervical vertebrae|Dislocation of C4/C5 cervical vertebrae +C0840409|T037|AB|S13.151|ICD10CM|Dislocation of C4/C5 cervical vertebrae|Dislocation of C4/C5 cervical vertebrae +C2833719|T037|PT|S13.151A|ICD10CM|Dislocation of C4/C5 cervical vertebrae, initial encounter|Dislocation of C4/C5 cervical vertebrae, initial encounter +C2833719|T037|AB|S13.151A|ICD10CM|Dislocation of C4/C5 cervical vertebrae, initial encounter|Dislocation of C4/C5 cervical vertebrae, initial encounter +C2833720|T037|AB|S13.151D|ICD10CM|Dislocation of C4/C5 cervical vertebrae, subs encntr|Dislocation of C4/C5 cervical vertebrae, subs encntr +C2833720|T037|PT|S13.151D|ICD10CM|Dislocation of C4/C5 cervical vertebrae, subsequent encounter|Dislocation of C4/C5 cervical vertebrae, subsequent encounter +C2833721|T037|PT|S13.151S|ICD10CM|Dislocation of C4/C5 cervical vertebrae, sequela|Dislocation of C4/C5 cervical vertebrae, sequela +C2833721|T037|AB|S13.151S|ICD10CM|Dislocation of C4/C5 cervical vertebrae, sequela|Dislocation of C4/C5 cervical vertebrae, sequela +C2833722|T037|AB|S13.16|ICD10CM|Subluxation and dislocation of C5/C6 cervical vertebrae|Subluxation and dislocation of C5/C6 cervical vertebrae +C2833722|T037|HT|S13.16|ICD10CM|Subluxation and dislocation of C5/C6 cervical vertebrae|Subluxation and dislocation of C5/C6 cervical vertebrae +C2833723|T037|AB|S13.160|ICD10CM|Subluxation of C5/C6 cervical vertebrae|Subluxation of C5/C6 cervical vertebrae +C2833723|T037|HT|S13.160|ICD10CM|Subluxation of C5/C6 cervical vertebrae|Subluxation of C5/C6 cervical vertebrae +C2833724|T037|PT|S13.160A|ICD10CM|Subluxation of C5/C6 cervical vertebrae, initial encounter|Subluxation of C5/C6 cervical vertebrae, initial encounter +C2833724|T037|AB|S13.160A|ICD10CM|Subluxation of C5/C6 cervical vertebrae, initial encounter|Subluxation of C5/C6 cervical vertebrae, initial encounter +C2833725|T037|AB|S13.160D|ICD10CM|Subluxation of C5/C6 cervical vertebrae, subs encntr|Subluxation of C5/C6 cervical vertebrae, subs encntr +C2833725|T037|PT|S13.160D|ICD10CM|Subluxation of C5/C6 cervical vertebrae, subsequent encounter|Subluxation of C5/C6 cervical vertebrae, subsequent encounter +C2833726|T037|PT|S13.160S|ICD10CM|Subluxation of C5/C6 cervical vertebrae, sequela|Subluxation of C5/C6 cervical vertebrae, sequela +C2833726|T037|AB|S13.160S|ICD10CM|Subluxation of C5/C6 cervical vertebrae, sequela|Subluxation of C5/C6 cervical vertebrae, sequela +C0840410|T037|HT|S13.161|ICD10CM|Dislocation of C5/C6 cervical vertebrae|Dislocation of C5/C6 cervical vertebrae +C0840410|T037|AB|S13.161|ICD10CM|Dislocation of C5/C6 cervical vertebrae|Dislocation of C5/C6 cervical vertebrae +C2833727|T037|PT|S13.161A|ICD10CM|Dislocation of C5/C6 cervical vertebrae, initial encounter|Dislocation of C5/C6 cervical vertebrae, initial encounter +C2833727|T037|AB|S13.161A|ICD10CM|Dislocation of C5/C6 cervical vertebrae, initial encounter|Dislocation of C5/C6 cervical vertebrae, initial encounter +C2833728|T037|AB|S13.161D|ICD10CM|Dislocation of C5/C6 cervical vertebrae, subs encntr|Dislocation of C5/C6 cervical vertebrae, subs encntr +C2833728|T037|PT|S13.161D|ICD10CM|Dislocation of C5/C6 cervical vertebrae, subsequent encounter|Dislocation of C5/C6 cervical vertebrae, subsequent encounter +C2833729|T037|PT|S13.161S|ICD10CM|Dislocation of C5/C6 cervical vertebrae, sequela|Dislocation of C5/C6 cervical vertebrae, sequela +C2833729|T037|AB|S13.161S|ICD10CM|Dislocation of C5/C6 cervical vertebrae, sequela|Dislocation of C5/C6 cervical vertebrae, sequela +C2833730|T037|AB|S13.17|ICD10CM|Subluxation and dislocation of C6/C7 cervical vertebrae|Subluxation and dislocation of C6/C7 cervical vertebrae +C2833730|T037|HT|S13.17|ICD10CM|Subluxation and dislocation of C6/C7 cervical vertebrae|Subluxation and dislocation of C6/C7 cervical vertebrae +C2833731|T037|AB|S13.170|ICD10CM|Subluxation of C6/C7 cervical vertebrae|Subluxation of C6/C7 cervical vertebrae +C2833731|T037|HT|S13.170|ICD10CM|Subluxation of C6/C7 cervical vertebrae|Subluxation of C6/C7 cervical vertebrae +C2833732|T037|PT|S13.170A|ICD10CM|Subluxation of C6/C7 cervical vertebrae, initial encounter|Subluxation of C6/C7 cervical vertebrae, initial encounter +C2833732|T037|AB|S13.170A|ICD10CM|Subluxation of C6/C7 cervical vertebrae, initial encounter|Subluxation of C6/C7 cervical vertebrae, initial encounter +C2833733|T037|AB|S13.170D|ICD10CM|Subluxation of C6/C7 cervical vertebrae, subs encntr|Subluxation of C6/C7 cervical vertebrae, subs encntr +C2833733|T037|PT|S13.170D|ICD10CM|Subluxation of C6/C7 cervical vertebrae, subsequent encounter|Subluxation of C6/C7 cervical vertebrae, subsequent encounter +C2833734|T037|PT|S13.170S|ICD10CM|Subluxation of C6/C7 cervical vertebrae, sequela|Subluxation of C6/C7 cervical vertebrae, sequela +C2833734|T037|AB|S13.170S|ICD10CM|Subluxation of C6/C7 cervical vertebrae, sequela|Subluxation of C6/C7 cervical vertebrae, sequela +C0840411|T037|HT|S13.171|ICD10CM|Dislocation of C6/C7 cervical vertebrae|Dislocation of C6/C7 cervical vertebrae +C0840411|T037|AB|S13.171|ICD10CM|Dislocation of C6/C7 cervical vertebrae|Dislocation of C6/C7 cervical vertebrae +C2833735|T037|PT|S13.171A|ICD10CM|Dislocation of C6/C7 cervical vertebrae, initial encounter|Dislocation of C6/C7 cervical vertebrae, initial encounter +C2833735|T037|AB|S13.171A|ICD10CM|Dislocation of C6/C7 cervical vertebrae, initial encounter|Dislocation of C6/C7 cervical vertebrae, initial encounter +C2833736|T037|AB|S13.171D|ICD10CM|Dislocation of C6/C7 cervical vertebrae, subs encntr|Dislocation of C6/C7 cervical vertebrae, subs encntr +C2833736|T037|PT|S13.171D|ICD10CM|Dislocation of C6/C7 cervical vertebrae, subsequent encounter|Dislocation of C6/C7 cervical vertebrae, subsequent encounter +C2833737|T037|PT|S13.171S|ICD10CM|Dislocation of C6/C7 cervical vertebrae, sequela|Dislocation of C6/C7 cervical vertebrae, sequela +C2833737|T037|AB|S13.171S|ICD10CM|Dislocation of C6/C7 cervical vertebrae, sequela|Dislocation of C6/C7 cervical vertebrae, sequela +C2833738|T037|AB|S13.18|ICD10CM|Subluxation and dislocation of C7/T1 cervical vertebrae|Subluxation and dislocation of C7/T1 cervical vertebrae +C2833738|T037|HT|S13.18|ICD10CM|Subluxation and dislocation of C7/T1 cervical vertebrae|Subluxation and dislocation of C7/T1 cervical vertebrae +C2833739|T037|AB|S13.180|ICD10CM|Subluxation of C7/T1 cervical vertebrae|Subluxation of C7/T1 cervical vertebrae +C2833739|T037|HT|S13.180|ICD10CM|Subluxation of C7/T1 cervical vertebrae|Subluxation of C7/T1 cervical vertebrae +C2833740|T037|PT|S13.180A|ICD10CM|Subluxation of C7/T1 cervical vertebrae, initial encounter|Subluxation of C7/T1 cervical vertebrae, initial encounter +C2833740|T037|AB|S13.180A|ICD10CM|Subluxation of C7/T1 cervical vertebrae, initial encounter|Subluxation of C7/T1 cervical vertebrae, initial encounter +C2833741|T037|AB|S13.180D|ICD10CM|Subluxation of C7/T1 cervical vertebrae, subs encntr|Subluxation of C7/T1 cervical vertebrae, subs encntr +C2833741|T037|PT|S13.180D|ICD10CM|Subluxation of C7/T1 cervical vertebrae, subsequent encounter|Subluxation of C7/T1 cervical vertebrae, subsequent encounter +C2833742|T037|PT|S13.180S|ICD10CM|Subluxation of C7/T1 cervical vertebrae, sequela|Subluxation of C7/T1 cervical vertebrae, sequela +C2833742|T037|AB|S13.180S|ICD10CM|Subluxation of C7/T1 cervical vertebrae, sequela|Subluxation of C7/T1 cervical vertebrae, sequela +C2833743|T037|AB|S13.181|ICD10CM|Dislocation of C7/T1 cervical vertebrae|Dislocation of C7/T1 cervical vertebrae +C2833743|T037|HT|S13.181|ICD10CM|Dislocation of C7/T1 cervical vertebrae|Dislocation of C7/T1 cervical vertebrae +C2833744|T037|PT|S13.181A|ICD10CM|Dislocation of C7/T1 cervical vertebrae, initial encounter|Dislocation of C7/T1 cervical vertebrae, initial encounter +C2833744|T037|AB|S13.181A|ICD10CM|Dislocation of C7/T1 cervical vertebrae, initial encounter|Dislocation of C7/T1 cervical vertebrae, initial encounter +C2833745|T037|AB|S13.181D|ICD10CM|Dislocation of C7/T1 cervical vertebrae, subs encntr|Dislocation of C7/T1 cervical vertebrae, subs encntr +C2833745|T037|PT|S13.181D|ICD10CM|Dislocation of C7/T1 cervical vertebrae, subsequent encounter|Dislocation of C7/T1 cervical vertebrae, subsequent encounter +C2833746|T037|PT|S13.181S|ICD10CM|Dislocation of C7/T1 cervical vertebrae, sequela|Dislocation of C7/T1 cervical vertebrae, sequela +C2833746|T037|AB|S13.181S|ICD10CM|Dislocation of C7/T1 cervical vertebrae, sequela|Dislocation of C7/T1 cervical vertebrae, sequela +C0478222|T037|PT|S13.2|ICD10|Dislocation of other and unspecified parts of neck|Dislocation of other and unspecified parts of neck +C0478222|T037|HT|S13.2|ICD10CM|Dislocation of other and unspecified parts of neck|Dislocation of other and unspecified parts of neck +C0478222|T037|AB|S13.2|ICD10CM|Dislocation of other and unspecified parts of neck|Dislocation of other and unspecified parts of neck +C2833747|T037|AB|S13.20|ICD10CM|Dislocation of unspecified parts of neck|Dislocation of unspecified parts of neck +C2833747|T037|HT|S13.20|ICD10CM|Dislocation of unspecified parts of neck|Dislocation of unspecified parts of neck +C2833748|T037|AB|S13.20XA|ICD10CM|Dislocation of unspecified parts of neck, initial encounter|Dislocation of unspecified parts of neck, initial encounter +C2833748|T037|PT|S13.20XA|ICD10CM|Dislocation of unspecified parts of neck, initial encounter|Dislocation of unspecified parts of neck, initial encounter +C2833749|T037|AB|S13.20XD|ICD10CM|Dislocation of unspecified parts of neck, subs encntr|Dislocation of unspecified parts of neck, subs encntr +C2833749|T037|PT|S13.20XD|ICD10CM|Dislocation of unspecified parts of neck, subsequent encounter|Dislocation of unspecified parts of neck, subsequent encounter +C2833750|T037|AB|S13.20XS|ICD10CM|Dislocation of unspecified parts of neck, sequela|Dislocation of unspecified parts of neck, sequela +C2833750|T037|PT|S13.20XS|ICD10CM|Dislocation of unspecified parts of neck, sequela|Dislocation of unspecified parts of neck, sequela +C2833751|T037|AB|S13.29|ICD10CM|Dislocation of other parts of neck|Dislocation of other parts of neck +C2833751|T037|HT|S13.29|ICD10CM|Dislocation of other parts of neck|Dislocation of other parts of neck +C2833752|T037|PT|S13.29XA|ICD10CM|Dislocation of other parts of neck, initial encounter|Dislocation of other parts of neck, initial encounter +C2833752|T037|AB|S13.29XA|ICD10CM|Dislocation of other parts of neck, initial encounter|Dislocation of other parts of neck, initial encounter +C2833753|T037|PT|S13.29XD|ICD10CM|Dislocation of other parts of neck, subsequent encounter|Dislocation of other parts of neck, subsequent encounter +C2833753|T037|AB|S13.29XD|ICD10CM|Dislocation of other parts of neck, subsequent encounter|Dislocation of other parts of neck, subsequent encounter +C2833754|T037|PT|S13.29XS|ICD10CM|Dislocation of other parts of neck, sequela|Dislocation of other parts of neck, sequela +C2833754|T037|AB|S13.29XS|ICD10CM|Dislocation of other parts of neck, sequela|Dislocation of other parts of neck, sequela +C0495818|T037|PT|S13.3|ICD10|Multiple dislocations of neck|Multiple dislocations of neck +C0392088|T037|PT|S13.4|ICD10|Sprain and strain of cervical spine|Sprain and strain of cervical spine +C0435023|T037|ET|S13.4|ICD10CM|Sprain of anterior longitudinal (ligament), cervical|Sprain of anterior longitudinal (ligament), cervical +C0272908|T037|ET|S13.4|ICD10CM|Sprain of atlanto-axial (joints)|Sprain of atlanto-axial (joints) +C0272909|T037|ET|S13.4|ICD10CM|Sprain of atlanto-occipital (joints)|Sprain of atlanto-occipital (joints) +C2833756|T037|HT|S13.4|ICD10CM|Sprain of ligaments of cervical spine|Sprain of ligaments of cervical spine +C2833756|T037|AB|S13.4|ICD10CM|Sprain of ligaments of cervical spine|Sprain of ligaments of cervical spine +C2833755|T037|ET|S13.4|ICD10CM|Whiplash injury of cervical spine|Whiplash injury of cervical spine +C2833757|T037|AB|S13.4XXA|ICD10CM|Sprain of ligaments of cervical spine, initial encounter|Sprain of ligaments of cervical spine, initial encounter +C2833757|T037|PT|S13.4XXA|ICD10CM|Sprain of ligaments of cervical spine, initial encounter|Sprain of ligaments of cervical spine, initial encounter +C2833758|T037|AB|S13.4XXD|ICD10CM|Sprain of ligaments of cervical spine, subsequent encounter|Sprain of ligaments of cervical spine, subsequent encounter +C2833758|T037|PT|S13.4XXD|ICD10CM|Sprain of ligaments of cervical spine, subsequent encounter|Sprain of ligaments of cervical spine, subsequent encounter +C2833759|T037|AB|S13.4XXS|ICD10CM|Sprain of ligaments of cervical spine, sequela|Sprain of ligaments of cervical spine, sequela +C2833759|T037|PT|S13.4XXS|ICD10CM|Sprain of ligaments of cervical spine, sequela|Sprain of ligaments of cervical spine, sequela +C0495819|T037|PT|S13.5|ICD10|Sprain and strain of thyroid region|Sprain and strain of thyroid region +C0272916|T037|ET|S13.5|ICD10CM|Sprain of cricoarytenoid (joint) (ligament)|Sprain of cricoarytenoid (joint) (ligament) +C0272917|T037|ET|S13.5|ICD10CM|Sprain of cricothyroid (joint) (ligament)|Sprain of cricothyroid (joint) (ligament) +C0272918|T037|ET|S13.5|ICD10CM|Sprain of thyroid cartilage|Sprain of thyroid cartilage +C0160114|T037|HT|S13.5|ICD10CM|Sprain of thyroid region|Sprain of thyroid region +C0160114|T037|AB|S13.5|ICD10CM|Sprain of thyroid region|Sprain of thyroid region +C2833760|T037|AB|S13.5XXA|ICD10CM|Sprain of thyroid region, initial encounter|Sprain of thyroid region, initial encounter +C2833760|T037|PT|S13.5XXA|ICD10CM|Sprain of thyroid region, initial encounter|Sprain of thyroid region, initial encounter +C2833761|T037|AB|S13.5XXD|ICD10CM|Sprain of thyroid region, subsequent encounter|Sprain of thyroid region, subsequent encounter +C2833761|T037|PT|S13.5XXD|ICD10CM|Sprain of thyroid region, subsequent encounter|Sprain of thyroid region, subsequent encounter +C2833762|T037|AB|S13.5XXS|ICD10CM|Sprain of thyroid region, sequela|Sprain of thyroid region, sequela +C2833762|T037|PT|S13.5XXS|ICD10CM|Sprain of thyroid region, sequela|Sprain of thyroid region, sequela +C0478223|T037|PT|S13.6|ICD10|Sprain and strain of joints and ligaments of other and unspecified parts of neck|Sprain and strain of joints and ligaments of other and unspecified parts of neck +C2833763|T037|AB|S13.8|ICD10CM|Sprain of joints and ligaments of other parts of neck|Sprain of joints and ligaments of other parts of neck +C2833763|T037|HT|S13.8|ICD10CM|Sprain of joints and ligaments of other parts of neck|Sprain of joints and ligaments of other parts of neck +C2833764|T037|AB|S13.8XXA|ICD10CM|Sprain of joints and ligaments of oth prt neck, init encntr|Sprain of joints and ligaments of oth prt neck, init encntr +C2833764|T037|PT|S13.8XXA|ICD10CM|Sprain of joints and ligaments of other parts of neck, initial encounter|Sprain of joints and ligaments of other parts of neck, initial encounter +C2833765|T037|AB|S13.8XXD|ICD10CM|Sprain of joints and ligaments of oth prt neck, subs encntr|Sprain of joints and ligaments of oth prt neck, subs encntr +C2833765|T037|PT|S13.8XXD|ICD10CM|Sprain of joints and ligaments of other parts of neck, subsequent encounter|Sprain of joints and ligaments of other parts of neck, subsequent encounter +C2833766|T037|AB|S13.8XXS|ICD10CM|Sprain of joints and ligaments of oth parts of neck, sequela|Sprain of joints and ligaments of oth parts of neck, sequela +C2833766|T037|PT|S13.8XXS|ICD10CM|Sprain of joints and ligaments of other parts of neck, sequela|Sprain of joints and ligaments of other parts of neck, sequela +C2833767|T037|AB|S13.9|ICD10CM|Sprain of joints and ligaments of unspecified parts of neck|Sprain of joints and ligaments of unspecified parts of neck +C2833767|T037|HT|S13.9|ICD10CM|Sprain of joints and ligaments of unspecified parts of neck|Sprain of joints and ligaments of unspecified parts of neck +C2833768|T037|AB|S13.9XXA|ICD10CM|Sprain of joints and ligaments of unsp parts of neck, init|Sprain of joints and ligaments of unsp parts of neck, init +C2833768|T037|PT|S13.9XXA|ICD10CM|Sprain of joints and ligaments of unspecified parts of neck, initial encounter|Sprain of joints and ligaments of unspecified parts of neck, initial encounter +C2833769|T037|AB|S13.9XXD|ICD10CM|Sprain of joints and ligaments of unsp parts of neck, subs|Sprain of joints and ligaments of unsp parts of neck, subs +C2833769|T037|PT|S13.9XXD|ICD10CM|Sprain of joints and ligaments of unspecified parts of neck, subsequent encounter|Sprain of joints and ligaments of unspecified parts of neck, subsequent encounter +C2833770|T037|AB|S13.9XXS|ICD10CM|Sprain of joints and ligaments of unsp parts of neck, sqla|Sprain of joints and ligaments of unsp parts of neck, sqla +C2833770|T037|PT|S13.9XXS|ICD10CM|Sprain of joints and ligaments of unspecified parts of neck, sequela|Sprain of joints and ligaments of unspecified parts of neck, sequela +C0452049|T037|HT|S14|ICD10|Injury of nerves and spinal cord at neck level|Injury of nerves and spinal cord at neck level +C0452049|T037|HT|S14|ICD10CM|Injury of nerves and spinal cord at neck level|Injury of nerves and spinal cord at neck level +C0452049|T037|AB|S14|ICD10CM|Injury of nerves and spinal cord at neck level|Injury of nerves and spinal cord at neck level +C0475570|T037|HT|S14.0|ICD10CM|Concussion and edema of cervical spinal cord|Concussion and edema of cervical spinal cord +C0475570|T037|AB|S14.0|ICD10CM|Concussion and edema of cervical spinal cord|Concussion and edema of cervical spinal cord +C0475570|T037|PT|S14.0|ICD10AE|Concussion and edema of cervical spinal cord|Concussion and edema of cervical spinal cord +C0475570|T037|PT|S14.0|ICD10|Concussion and oedema of cervical spinal cord|Concussion and oedema of cervical spinal cord +C2833771|T037|AB|S14.0XXA|ICD10CM|Concussion and edema of cervical spinal cord, init encntr|Concussion and edema of cervical spinal cord, init encntr +C2833771|T037|PT|S14.0XXA|ICD10CM|Concussion and edema of cervical spinal cord, initial encounter|Concussion and edema of cervical spinal cord, initial encounter +C2833772|T037|AB|S14.0XXD|ICD10CM|Concussion and edema of cervical spinal cord, subs encntr|Concussion and edema of cervical spinal cord, subs encntr +C2833772|T037|PT|S14.0XXD|ICD10CM|Concussion and edema of cervical spinal cord, subsequent encounter|Concussion and edema of cervical spinal cord, subsequent encounter +C2833773|T037|AB|S14.0XXS|ICD10CM|Concussion and edema of cervical spinal cord, sequela|Concussion and edema of cervical spinal cord, sequela +C2833773|T037|PT|S14.0XXS|ICD10CM|Concussion and edema of cervical spinal cord, sequela|Concussion and edema of cervical spinal cord, sequela +C0478224|T037|PT|S14.1|ICD10|Other and unspecified injuries of cervical spinal cord|Other and unspecified injuries of cervical spinal cord +C0478224|T037|HT|S14.1|ICD10CM|Other and unspecified injuries of cervical spinal cord|Other and unspecified injuries of cervical spinal cord +C0478224|T037|AB|S14.1|ICD10CM|Other and unspecified injuries of cervical spinal cord|Other and unspecified injuries of cervical spinal cord +C0840414|T037|AB|S14.10|ICD10CM|Unspecified injury of cervical spinal cord|Unspecified injury of cervical spinal cord +C0840414|T037|HT|S14.10|ICD10CM|Unspecified injury of cervical spinal cord|Unspecified injury of cervical spinal cord +C2833774|T037|AB|S14.101|ICD10CM|Unspecified injury at C1 level of cervical spinal cord|Unspecified injury at C1 level of cervical spinal cord +C2833774|T037|HT|S14.101|ICD10CM|Unspecified injury at C1 level of cervical spinal cord|Unspecified injury at C1 level of cervical spinal cord +C2833775|T037|AB|S14.101A|ICD10CM|Unsp injury at C1 level of cervical spinal cord, init encntr|Unsp injury at C1 level of cervical spinal cord, init encntr +C2833775|T037|PT|S14.101A|ICD10CM|Unspecified injury at C1 level of cervical spinal cord, initial encounter|Unspecified injury at C1 level of cervical spinal cord, initial encounter +C2833776|T037|AB|S14.101D|ICD10CM|Unsp injury at C1 level of cervical spinal cord, subs encntr|Unsp injury at C1 level of cervical spinal cord, subs encntr +C2833776|T037|PT|S14.101D|ICD10CM|Unspecified injury at C1 level of cervical spinal cord, subsequent encounter|Unspecified injury at C1 level of cervical spinal cord, subsequent encounter +C2833777|T037|AB|S14.101S|ICD10CM|Unsp injury at C1 level of cervical spinal cord, sequela|Unsp injury at C1 level of cervical spinal cord, sequela +C2833777|T037|PT|S14.101S|ICD10CM|Unspecified injury at C1 level of cervical spinal cord, sequela|Unspecified injury at C1 level of cervical spinal cord, sequela +C2833778|T037|AB|S14.102|ICD10CM|Unspecified injury at C2 level of cervical spinal cord|Unspecified injury at C2 level of cervical spinal cord +C2833778|T037|HT|S14.102|ICD10CM|Unspecified injury at C2 level of cervical spinal cord|Unspecified injury at C2 level of cervical spinal cord +C2833779|T037|AB|S14.102A|ICD10CM|Unsp injury at C2 level of cervical spinal cord, init encntr|Unsp injury at C2 level of cervical spinal cord, init encntr +C2833779|T037|PT|S14.102A|ICD10CM|Unspecified injury at C2 level of cervical spinal cord, initial encounter|Unspecified injury at C2 level of cervical spinal cord, initial encounter +C2833851|T037|AB|S14.102D|ICD10CM|Unsp injury at C2 level of cervical spinal cord, subs encntr|Unsp injury at C2 level of cervical spinal cord, subs encntr +C2833851|T037|PT|S14.102D|ICD10CM|Unspecified injury at C2 level of cervical spinal cord, subsequent encounter|Unspecified injury at C2 level of cervical spinal cord, subsequent encounter +C2833852|T037|AB|S14.102S|ICD10CM|Unsp injury at C2 level of cervical spinal cord, sequela|Unsp injury at C2 level of cervical spinal cord, sequela +C2833852|T037|PT|S14.102S|ICD10CM|Unspecified injury at C2 level of cervical spinal cord, sequela|Unspecified injury at C2 level of cervical spinal cord, sequela +C2833853|T037|AB|S14.103|ICD10CM|Unspecified injury at C3 level of cervical spinal cord|Unspecified injury at C3 level of cervical spinal cord +C2833853|T037|HT|S14.103|ICD10CM|Unspecified injury at C3 level of cervical spinal cord|Unspecified injury at C3 level of cervical spinal cord +C2833854|T037|AB|S14.103A|ICD10CM|Unsp injury at C3 level of cervical spinal cord, init encntr|Unsp injury at C3 level of cervical spinal cord, init encntr +C2833854|T037|PT|S14.103A|ICD10CM|Unspecified injury at C3 level of cervical spinal cord, initial encounter|Unspecified injury at C3 level of cervical spinal cord, initial encounter +C2833855|T037|AB|S14.103D|ICD10CM|Unsp injury at C3 level of cervical spinal cord, subs encntr|Unsp injury at C3 level of cervical spinal cord, subs encntr +C2833855|T037|PT|S14.103D|ICD10CM|Unspecified injury at C3 level of cervical spinal cord, subsequent encounter|Unspecified injury at C3 level of cervical spinal cord, subsequent encounter +C2833856|T037|AB|S14.103S|ICD10CM|Unsp injury at C3 level of cervical spinal cord, sequela|Unsp injury at C3 level of cervical spinal cord, sequela +C2833856|T037|PT|S14.103S|ICD10CM|Unspecified injury at C3 level of cervical spinal cord, sequela|Unspecified injury at C3 level of cervical spinal cord, sequela +C2833857|T037|AB|S14.104|ICD10CM|Unspecified injury at C4 level of cervical spinal cord|Unspecified injury at C4 level of cervical spinal cord +C2833857|T037|HT|S14.104|ICD10CM|Unspecified injury at C4 level of cervical spinal cord|Unspecified injury at C4 level of cervical spinal cord +C2833858|T037|AB|S14.104A|ICD10CM|Unsp injury at C4 level of cervical spinal cord, init encntr|Unsp injury at C4 level of cervical spinal cord, init encntr +C2833858|T037|PT|S14.104A|ICD10CM|Unspecified injury at C4 level of cervical spinal cord, initial encounter|Unspecified injury at C4 level of cervical spinal cord, initial encounter +C2833859|T037|AB|S14.104D|ICD10CM|Unsp injury at C4 level of cervical spinal cord, subs encntr|Unsp injury at C4 level of cervical spinal cord, subs encntr +C2833859|T037|PT|S14.104D|ICD10CM|Unspecified injury at C4 level of cervical spinal cord, subsequent encounter|Unspecified injury at C4 level of cervical spinal cord, subsequent encounter +C2833860|T037|AB|S14.104S|ICD10CM|Unsp injury at C4 level of cervical spinal cord, sequela|Unsp injury at C4 level of cervical spinal cord, sequela +C2833860|T037|PT|S14.104S|ICD10CM|Unspecified injury at C4 level of cervical spinal cord, sequela|Unspecified injury at C4 level of cervical spinal cord, sequela +C2833861|T037|AB|S14.105|ICD10CM|Unspecified injury at C5 level of cervical spinal cord|Unspecified injury at C5 level of cervical spinal cord +C2833861|T037|HT|S14.105|ICD10CM|Unspecified injury at C5 level of cervical spinal cord|Unspecified injury at C5 level of cervical spinal cord +C2833862|T037|AB|S14.105A|ICD10CM|Unsp injury at C5 level of cervical spinal cord, init encntr|Unsp injury at C5 level of cervical spinal cord, init encntr +C2833862|T037|PT|S14.105A|ICD10CM|Unspecified injury at C5 level of cervical spinal cord, initial encounter|Unspecified injury at C5 level of cervical spinal cord, initial encounter +C2833863|T037|AB|S14.105D|ICD10CM|Unsp injury at C5 level of cervical spinal cord, subs encntr|Unsp injury at C5 level of cervical spinal cord, subs encntr +C2833863|T037|PT|S14.105D|ICD10CM|Unspecified injury at C5 level of cervical spinal cord, subsequent encounter|Unspecified injury at C5 level of cervical spinal cord, subsequent encounter +C2833864|T037|AB|S14.105S|ICD10CM|Unsp injury at C5 level of cervical spinal cord, sequela|Unsp injury at C5 level of cervical spinal cord, sequela +C2833864|T037|PT|S14.105S|ICD10CM|Unspecified injury at C5 level of cervical spinal cord, sequela|Unspecified injury at C5 level of cervical spinal cord, sequela +C2833865|T037|AB|S14.106|ICD10CM|Unspecified injury at C6 level of cervical spinal cord|Unspecified injury at C6 level of cervical spinal cord +C2833865|T037|HT|S14.106|ICD10CM|Unspecified injury at C6 level of cervical spinal cord|Unspecified injury at C6 level of cervical spinal cord +C2833866|T037|AB|S14.106A|ICD10CM|Unsp injury at C6 level of cervical spinal cord, init encntr|Unsp injury at C6 level of cervical spinal cord, init encntr +C2833866|T037|PT|S14.106A|ICD10CM|Unspecified injury at C6 level of cervical spinal cord, initial encounter|Unspecified injury at C6 level of cervical spinal cord, initial encounter +C2833867|T037|AB|S14.106D|ICD10CM|Unsp injury at C6 level of cervical spinal cord, subs encntr|Unsp injury at C6 level of cervical spinal cord, subs encntr +C2833867|T037|PT|S14.106D|ICD10CM|Unspecified injury at C6 level of cervical spinal cord, subsequent encounter|Unspecified injury at C6 level of cervical spinal cord, subsequent encounter +C2833868|T037|AB|S14.106S|ICD10CM|Unsp injury at C6 level of cervical spinal cord, sequela|Unsp injury at C6 level of cervical spinal cord, sequela +C2833868|T037|PT|S14.106S|ICD10CM|Unspecified injury at C6 level of cervical spinal cord, sequela|Unspecified injury at C6 level of cervical spinal cord, sequela +C2833869|T037|AB|S14.107|ICD10CM|Unspecified injury at C7 level of cervical spinal cord|Unspecified injury at C7 level of cervical spinal cord +C2833869|T037|HT|S14.107|ICD10CM|Unspecified injury at C7 level of cervical spinal cord|Unspecified injury at C7 level of cervical spinal cord +C2833870|T037|AB|S14.107A|ICD10CM|Unsp injury at C7 level of cervical spinal cord, init encntr|Unsp injury at C7 level of cervical spinal cord, init encntr +C2833870|T037|PT|S14.107A|ICD10CM|Unspecified injury at C7 level of cervical spinal cord, initial encounter|Unspecified injury at C7 level of cervical spinal cord, initial encounter +C2833871|T037|AB|S14.107D|ICD10CM|Unsp injury at C7 level of cervical spinal cord, subs encntr|Unsp injury at C7 level of cervical spinal cord, subs encntr +C2833871|T037|PT|S14.107D|ICD10CM|Unspecified injury at C7 level of cervical spinal cord, subsequent encounter|Unspecified injury at C7 level of cervical spinal cord, subsequent encounter +C2833872|T037|AB|S14.107S|ICD10CM|Unsp injury at C7 level of cervical spinal cord, sequela|Unsp injury at C7 level of cervical spinal cord, sequela +C2833872|T037|PT|S14.107S|ICD10CM|Unspecified injury at C7 level of cervical spinal cord, sequela|Unspecified injury at C7 level of cervical spinal cord, sequela +C2833873|T037|AB|S14.108|ICD10CM|Unspecified injury at C8 level of cervical spinal cord|Unspecified injury at C8 level of cervical spinal cord +C2833873|T037|HT|S14.108|ICD10CM|Unspecified injury at C8 level of cervical spinal cord|Unspecified injury at C8 level of cervical spinal cord +C2833874|T037|AB|S14.108A|ICD10CM|Unsp injury at C8 level of cervical spinal cord, init encntr|Unsp injury at C8 level of cervical spinal cord, init encntr +C2833874|T037|PT|S14.108A|ICD10CM|Unspecified injury at C8 level of cervical spinal cord, initial encounter|Unspecified injury at C8 level of cervical spinal cord, initial encounter +C2833875|T037|AB|S14.108D|ICD10CM|Unsp injury at C8 level of cervical spinal cord, subs encntr|Unsp injury at C8 level of cervical spinal cord, subs encntr +C2833875|T037|PT|S14.108D|ICD10CM|Unspecified injury at C8 level of cervical spinal cord, subsequent encounter|Unspecified injury at C8 level of cervical spinal cord, subsequent encounter +C2833876|T037|AB|S14.108S|ICD10CM|Unsp injury at C8 level of cervical spinal cord, sequela|Unsp injury at C8 level of cervical spinal cord, sequela +C2833876|T037|PT|S14.108S|ICD10CM|Unspecified injury at C8 level of cervical spinal cord, sequela|Unspecified injury at C8 level of cervical spinal cord, sequela +C0840414|T037|ET|S14.109|ICD10CM|Injury of cervical spinal cord NOS|Injury of cervical spinal cord NOS +C2833877|T037|AB|S14.109|ICD10CM|Unsp injury at unspecified level of cervical spinal cord|Unsp injury at unspecified level of cervical spinal cord +C2833877|T037|HT|S14.109|ICD10CM|Unspecified injury at unspecified level of cervical spinal cord|Unspecified injury at unspecified level of cervical spinal cord +C2833878|T037|AB|S14.109A|ICD10CM|Unsp injury at unsp level of cervical spinal cord, init|Unsp injury at unsp level of cervical spinal cord, init +C2833878|T037|PT|S14.109A|ICD10CM|Unspecified injury at unspecified level of cervical spinal cord, initial encounter|Unspecified injury at unspecified level of cervical spinal cord, initial encounter +C2833879|T037|AB|S14.109D|ICD10CM|Unsp injury at unsp level of cervical spinal cord, subs|Unsp injury at unsp level of cervical spinal cord, subs +C2833879|T037|PT|S14.109D|ICD10CM|Unspecified injury at unspecified level of cervical spinal cord, subsequent encounter|Unspecified injury at unspecified level of cervical spinal cord, subsequent encounter +C2833880|T037|AB|S14.109S|ICD10CM|Unsp injury at unsp level of cervical spinal cord, sequela|Unsp injury at unsp level of cervical spinal cord, sequela +C2833880|T037|PT|S14.109S|ICD10CM|Unspecified injury at unspecified level of cervical spinal cord, sequela|Unspecified injury at unspecified level of cervical spinal cord, sequela +C0840415|T037|HT|S14.11|ICD10CM|Complete lesion of cervical spinal cord|Complete lesion of cervical spinal cord +C0840415|T037|AB|S14.11|ICD10CM|Complete lesion of cervical spinal cord|Complete lesion of cervical spinal cord +C2833881|T037|AB|S14.111|ICD10CM|Complete lesion at C1 level of cervical spinal cord|Complete lesion at C1 level of cervical spinal cord +C2833881|T037|HT|S14.111|ICD10CM|Complete lesion at C1 level of cervical spinal cord|Complete lesion at C1 level of cervical spinal cord +C2833882|T037|AB|S14.111A|ICD10CM|Complete lesion at C1 level of cervical spinal cord, init|Complete lesion at C1 level of cervical spinal cord, init +C2833882|T037|PT|S14.111A|ICD10CM|Complete lesion at C1 level of cervical spinal cord, initial encounter|Complete lesion at C1 level of cervical spinal cord, initial encounter +C2833883|T037|AB|S14.111D|ICD10CM|Complete lesion at C1 level of cervical spinal cord, subs|Complete lesion at C1 level of cervical spinal cord, subs +C2833883|T037|PT|S14.111D|ICD10CM|Complete lesion at C1 level of cervical spinal cord, subsequent encounter|Complete lesion at C1 level of cervical spinal cord, subsequent encounter +C2833884|T037|AB|S14.111S|ICD10CM|Complete lesion at C1 level of cervical spinal cord, sequela|Complete lesion at C1 level of cervical spinal cord, sequela +C2833884|T037|PT|S14.111S|ICD10CM|Complete lesion at C1 level of cervical spinal cord, sequela|Complete lesion at C1 level of cervical spinal cord, sequela +C2833885|T037|AB|S14.112|ICD10CM|Complete lesion at C2 level of cervical spinal cord|Complete lesion at C2 level of cervical spinal cord +C2833885|T037|HT|S14.112|ICD10CM|Complete lesion at C2 level of cervical spinal cord|Complete lesion at C2 level of cervical spinal cord +C2833886|T037|AB|S14.112A|ICD10CM|Complete lesion at C2 level of cervical spinal cord, init|Complete lesion at C2 level of cervical spinal cord, init +C2833886|T037|PT|S14.112A|ICD10CM|Complete lesion at C2 level of cervical spinal cord, initial encounter|Complete lesion at C2 level of cervical spinal cord, initial encounter +C2833887|T037|AB|S14.112D|ICD10CM|Complete lesion at C2 level of cervical spinal cord, subs|Complete lesion at C2 level of cervical spinal cord, subs +C2833887|T037|PT|S14.112D|ICD10CM|Complete lesion at C2 level of cervical spinal cord, subsequent encounter|Complete lesion at C2 level of cervical spinal cord, subsequent encounter +C2833888|T037|AB|S14.112S|ICD10CM|Complete lesion at C2 level of cervical spinal cord, sequela|Complete lesion at C2 level of cervical spinal cord, sequela +C2833888|T037|PT|S14.112S|ICD10CM|Complete lesion at C2 level of cervical spinal cord, sequela|Complete lesion at C2 level of cervical spinal cord, sequela +C2833889|T037|AB|S14.113|ICD10CM|Complete lesion at C3 level of cervical spinal cord|Complete lesion at C3 level of cervical spinal cord +C2833889|T037|HT|S14.113|ICD10CM|Complete lesion at C3 level of cervical spinal cord|Complete lesion at C3 level of cervical spinal cord +C2833890|T037|AB|S14.113A|ICD10CM|Complete lesion at C3 level of cervical spinal cord, init|Complete lesion at C3 level of cervical spinal cord, init +C2833890|T037|PT|S14.113A|ICD10CM|Complete lesion at C3 level of cervical spinal cord, initial encounter|Complete lesion at C3 level of cervical spinal cord, initial encounter +C2833891|T037|AB|S14.113D|ICD10CM|Complete lesion at C3 level of cervical spinal cord, subs|Complete lesion at C3 level of cervical spinal cord, subs +C2833891|T037|PT|S14.113D|ICD10CM|Complete lesion at C3 level of cervical spinal cord, subsequent encounter|Complete lesion at C3 level of cervical spinal cord, subsequent encounter +C2833892|T037|AB|S14.113S|ICD10CM|Complete lesion at C3 level of cervical spinal cord, sequela|Complete lesion at C3 level of cervical spinal cord, sequela +C2833892|T037|PT|S14.113S|ICD10CM|Complete lesion at C3 level of cervical spinal cord, sequela|Complete lesion at C3 level of cervical spinal cord, sequela +C2833893|T037|AB|S14.114|ICD10CM|Complete lesion at C4 level of cervical spinal cord|Complete lesion at C4 level of cervical spinal cord +C2833893|T037|HT|S14.114|ICD10CM|Complete lesion at C4 level of cervical spinal cord|Complete lesion at C4 level of cervical spinal cord +C2833894|T037|AB|S14.114A|ICD10CM|Complete lesion at C4 level of cervical spinal cord, init|Complete lesion at C4 level of cervical spinal cord, init +C2833894|T037|PT|S14.114A|ICD10CM|Complete lesion at C4 level of cervical spinal cord, initial encounter|Complete lesion at C4 level of cervical spinal cord, initial encounter +C2833895|T037|AB|S14.114D|ICD10CM|Complete lesion at C4 level of cervical spinal cord, subs|Complete lesion at C4 level of cervical spinal cord, subs +C2833895|T037|PT|S14.114D|ICD10CM|Complete lesion at C4 level of cervical spinal cord, subsequent encounter|Complete lesion at C4 level of cervical spinal cord, subsequent encounter +C2833896|T037|AB|S14.114S|ICD10CM|Complete lesion at C4 level of cervical spinal cord, sequela|Complete lesion at C4 level of cervical spinal cord, sequela +C2833896|T037|PT|S14.114S|ICD10CM|Complete lesion at C4 level of cervical spinal cord, sequela|Complete lesion at C4 level of cervical spinal cord, sequela +C2833897|T037|AB|S14.115|ICD10CM|Complete lesion at C5 level of cervical spinal cord|Complete lesion at C5 level of cervical spinal cord +C2833897|T037|HT|S14.115|ICD10CM|Complete lesion at C5 level of cervical spinal cord|Complete lesion at C5 level of cervical spinal cord +C2833898|T037|AB|S14.115A|ICD10CM|Complete lesion at C5 level of cervical spinal cord, init|Complete lesion at C5 level of cervical spinal cord, init +C2833898|T037|PT|S14.115A|ICD10CM|Complete lesion at C5 level of cervical spinal cord, initial encounter|Complete lesion at C5 level of cervical spinal cord, initial encounter +C2833899|T037|AB|S14.115D|ICD10CM|Complete lesion at C5 level of cervical spinal cord, subs|Complete lesion at C5 level of cervical spinal cord, subs +C2833899|T037|PT|S14.115D|ICD10CM|Complete lesion at C5 level of cervical spinal cord, subsequent encounter|Complete lesion at C5 level of cervical spinal cord, subsequent encounter +C2833900|T037|AB|S14.115S|ICD10CM|Complete lesion at C5 level of cervical spinal cord, sequela|Complete lesion at C5 level of cervical spinal cord, sequela +C2833900|T037|PT|S14.115S|ICD10CM|Complete lesion at C5 level of cervical spinal cord, sequela|Complete lesion at C5 level of cervical spinal cord, sequela +C2833901|T037|AB|S14.116|ICD10CM|Complete lesion at C6 level of cervical spinal cord|Complete lesion at C6 level of cervical spinal cord +C2833901|T037|HT|S14.116|ICD10CM|Complete lesion at C6 level of cervical spinal cord|Complete lesion at C6 level of cervical spinal cord +C2833902|T037|AB|S14.116A|ICD10CM|Complete lesion at C6 level of cervical spinal cord, init|Complete lesion at C6 level of cervical spinal cord, init +C2833902|T037|PT|S14.116A|ICD10CM|Complete lesion at C6 level of cervical spinal cord, initial encounter|Complete lesion at C6 level of cervical spinal cord, initial encounter +C2833903|T037|AB|S14.116D|ICD10CM|Complete lesion at C6 level of cervical spinal cord, subs|Complete lesion at C6 level of cervical spinal cord, subs +C2833903|T037|PT|S14.116D|ICD10CM|Complete lesion at C6 level of cervical spinal cord, subsequent encounter|Complete lesion at C6 level of cervical spinal cord, subsequent encounter +C2833904|T037|AB|S14.116S|ICD10CM|Complete lesion at C6 level of cervical spinal cord, sequela|Complete lesion at C6 level of cervical spinal cord, sequela +C2833904|T037|PT|S14.116S|ICD10CM|Complete lesion at C6 level of cervical spinal cord, sequela|Complete lesion at C6 level of cervical spinal cord, sequela +C2833905|T037|AB|S14.117|ICD10CM|Complete lesion at C7 level of cervical spinal cord|Complete lesion at C7 level of cervical spinal cord +C2833905|T037|HT|S14.117|ICD10CM|Complete lesion at C7 level of cervical spinal cord|Complete lesion at C7 level of cervical spinal cord +C2833906|T037|AB|S14.117A|ICD10CM|Complete lesion at C7 level of cervical spinal cord, init|Complete lesion at C7 level of cervical spinal cord, init +C2833906|T037|PT|S14.117A|ICD10CM|Complete lesion at C7 level of cervical spinal cord, initial encounter|Complete lesion at C7 level of cervical spinal cord, initial encounter +C2833907|T037|AB|S14.117D|ICD10CM|Complete lesion at C7 level of cervical spinal cord, subs|Complete lesion at C7 level of cervical spinal cord, subs +C2833907|T037|PT|S14.117D|ICD10CM|Complete lesion at C7 level of cervical spinal cord, subsequent encounter|Complete lesion at C7 level of cervical spinal cord, subsequent encounter +C2833908|T037|AB|S14.117S|ICD10CM|Complete lesion at C7 level of cervical spinal cord, sequela|Complete lesion at C7 level of cervical spinal cord, sequela +C2833908|T037|PT|S14.117S|ICD10CM|Complete lesion at C7 level of cervical spinal cord, sequela|Complete lesion at C7 level of cervical spinal cord, sequela +C2833909|T037|AB|S14.118|ICD10CM|Complete lesion at C8 level of cervical spinal cord|Complete lesion at C8 level of cervical spinal cord +C2833909|T037|HT|S14.118|ICD10CM|Complete lesion at C8 level of cervical spinal cord|Complete lesion at C8 level of cervical spinal cord +C2833910|T037|AB|S14.118A|ICD10CM|Complete lesion at C8 level of cervical spinal cord, init|Complete lesion at C8 level of cervical spinal cord, init +C2833910|T037|PT|S14.118A|ICD10CM|Complete lesion at C8 level of cervical spinal cord, initial encounter|Complete lesion at C8 level of cervical spinal cord, initial encounter +C2833911|T037|AB|S14.118D|ICD10CM|Complete lesion at C8 level of cervical spinal cord, subs|Complete lesion at C8 level of cervical spinal cord, subs +C2833911|T037|PT|S14.118D|ICD10CM|Complete lesion at C8 level of cervical spinal cord, subsequent encounter|Complete lesion at C8 level of cervical spinal cord, subsequent encounter +C2833912|T037|AB|S14.118S|ICD10CM|Complete lesion at C8 level of cervical spinal cord, sequela|Complete lesion at C8 level of cervical spinal cord, sequela +C2833912|T037|PT|S14.118S|ICD10CM|Complete lesion at C8 level of cervical spinal cord, sequela|Complete lesion at C8 level of cervical spinal cord, sequela +C2833913|T037|AB|S14.119|ICD10CM|Complete lesion at unspecified level of cervical spinal cord|Complete lesion at unspecified level of cervical spinal cord +C2833913|T037|HT|S14.119|ICD10CM|Complete lesion at unspecified level of cervical spinal cord|Complete lesion at unspecified level of cervical spinal cord +C2833914|T037|AB|S14.119A|ICD10CM|Complete lesion at unsp level of cervical spinal cord, init|Complete lesion at unsp level of cervical spinal cord, init +C2833914|T037|PT|S14.119A|ICD10CM|Complete lesion at unspecified level of cervical spinal cord, initial encounter|Complete lesion at unspecified level of cervical spinal cord, initial encounter +C2833915|T037|AB|S14.119D|ICD10CM|Complete lesion at unsp level of cervical spinal cord, subs|Complete lesion at unsp level of cervical spinal cord, subs +C2833915|T037|PT|S14.119D|ICD10CM|Complete lesion at unspecified level of cervical spinal cord, subsequent encounter|Complete lesion at unspecified level of cervical spinal cord, subsequent encounter +C2833916|T037|AB|S14.119S|ICD10CM|Complete lesion at unsp level of cerv spinal cord, sequela|Complete lesion at unsp level of cerv spinal cord, sequela +C2833916|T037|PT|S14.119S|ICD10CM|Complete lesion at unspecified level of cervical spinal cord, sequela|Complete lesion at unspecified level of cervical spinal cord, sequela +C2833917|T047|HT|S14.12|ICD10CM|Central cord syndrome of cervical spinal cord|Central cord syndrome of cervical spinal cord +C2833917|T047|AB|S14.12|ICD10CM|Central cord syndrome of cervical spinal cord|Central cord syndrome of cervical spinal cord +C2833918|T047|AB|S14.121|ICD10CM|Central cord syndrome at C1 level of cervical spinal cord|Central cord syndrome at C1 level of cervical spinal cord +C2833918|T047|HT|S14.121|ICD10CM|Central cord syndrome at C1 level of cervical spinal cord|Central cord syndrome at C1 level of cervical spinal cord +C2833919|T037|PT|S14.121A|ICD10CM|Central cord syndrome at C1 level of cervical spinal cord, initial encounter|Central cord syndrome at C1 level of cervical spinal cord, initial encounter +C2833919|T037|AB|S14.121A|ICD10CM|Central cord syndrome at C1, init|Central cord syndrome at C1, init +C2833920|T037|PT|S14.121D|ICD10CM|Central cord syndrome at C1 level of cervical spinal cord, subsequent encounter|Central cord syndrome at C1 level of cervical spinal cord, subsequent encounter +C2833920|T037|AB|S14.121D|ICD10CM|Central cord syndrome at C1, subs|Central cord syndrome at C1, subs +C2833921|T037|PT|S14.121S|ICD10CM|Central cord syndrome at C1 level of cervical spinal cord, sequela|Central cord syndrome at C1 level of cervical spinal cord, sequela +C2833921|T037|AB|S14.121S|ICD10CM|Central cord syndrome at C1, sequela|Central cord syndrome at C1, sequela +C2833922|T047|AB|S14.122|ICD10CM|Central cord syndrome at C2 level of cervical spinal cord|Central cord syndrome at C2 level of cervical spinal cord +C2833922|T047|HT|S14.122|ICD10CM|Central cord syndrome at C2 level of cervical spinal cord|Central cord syndrome at C2 level of cervical spinal cord +C2833923|T037|PT|S14.122A|ICD10CM|Central cord syndrome at C2 level of cervical spinal cord, initial encounter|Central cord syndrome at C2 level of cervical spinal cord, initial encounter +C2833923|T037|AB|S14.122A|ICD10CM|Central cord syndrome at C2, init|Central cord syndrome at C2, init +C2833924|T037|PT|S14.122D|ICD10CM|Central cord syndrome at C2 level of cervical spinal cord, subsequent encounter|Central cord syndrome at C2 level of cervical spinal cord, subsequent encounter +C2833924|T037|AB|S14.122D|ICD10CM|Central cord syndrome at C2, subs|Central cord syndrome at C2, subs +C2833925|T037|PT|S14.122S|ICD10CM|Central cord syndrome at C2 level of cervical spinal cord, sequela|Central cord syndrome at C2 level of cervical spinal cord, sequela +C2833925|T037|AB|S14.122S|ICD10CM|Central cord syndrome at C2, sequela|Central cord syndrome at C2, sequela +C2833926|T047|AB|S14.123|ICD10CM|Central cord syndrome at C3 level of cervical spinal cord|Central cord syndrome at C3 level of cervical spinal cord +C2833926|T047|HT|S14.123|ICD10CM|Central cord syndrome at C3 level of cervical spinal cord|Central cord syndrome at C3 level of cervical spinal cord +C2833927|T037|PT|S14.123A|ICD10CM|Central cord syndrome at C3 level of cervical spinal cord, initial encounter|Central cord syndrome at C3 level of cervical spinal cord, initial encounter +C2833927|T037|AB|S14.123A|ICD10CM|Central cord syndrome at C3, init|Central cord syndrome at C3, init +C2833928|T037|PT|S14.123D|ICD10CM|Central cord syndrome at C3 level of cervical spinal cord, subsequent encounter|Central cord syndrome at C3 level of cervical spinal cord, subsequent encounter +C2833928|T037|AB|S14.123D|ICD10CM|Central cord syndrome at C3, subs|Central cord syndrome at C3, subs +C2833929|T037|PT|S14.123S|ICD10CM|Central cord syndrome at C3 level of cervical spinal cord, sequela|Central cord syndrome at C3 level of cervical spinal cord, sequela +C2833929|T037|AB|S14.123S|ICD10CM|Central cord syndrome at C3, sequela|Central cord syndrome at C3, sequela +C2833930|T047|AB|S14.124|ICD10CM|Central cord syndrome at C4 level of cervical spinal cord|Central cord syndrome at C4 level of cervical spinal cord +C2833930|T047|HT|S14.124|ICD10CM|Central cord syndrome at C4 level of cervical spinal cord|Central cord syndrome at C4 level of cervical spinal cord +C2833931|T037|PT|S14.124A|ICD10CM|Central cord syndrome at C4 level of cervical spinal cord, initial encounter|Central cord syndrome at C4 level of cervical spinal cord, initial encounter +C2833931|T037|AB|S14.124A|ICD10CM|Central cord syndrome at C4, init|Central cord syndrome at C4, init +C2833932|T037|PT|S14.124D|ICD10CM|Central cord syndrome at C4 level of cervical spinal cord, subsequent encounter|Central cord syndrome at C4 level of cervical spinal cord, subsequent encounter +C2833932|T037|AB|S14.124D|ICD10CM|Central cord syndrome at C4, subs|Central cord syndrome at C4, subs +C2833933|T037|PT|S14.124S|ICD10CM|Central cord syndrome at C4 level of cervical spinal cord, sequela|Central cord syndrome at C4 level of cervical spinal cord, sequela +C2833933|T037|AB|S14.124S|ICD10CM|Central cord syndrome at C4, sequela|Central cord syndrome at C4, sequela +C2833934|T047|AB|S14.125|ICD10CM|Central cord syndrome at C5 level of cervical spinal cord|Central cord syndrome at C5 level of cervical spinal cord +C2833934|T047|HT|S14.125|ICD10CM|Central cord syndrome at C5 level of cervical spinal cord|Central cord syndrome at C5 level of cervical spinal cord +C2833935|T037|PT|S14.125A|ICD10CM|Central cord syndrome at C5 level of cervical spinal cord, initial encounter|Central cord syndrome at C5 level of cervical spinal cord, initial encounter +C2833935|T037|AB|S14.125A|ICD10CM|Central cord syndrome at C5, init|Central cord syndrome at C5, init +C2833936|T037|PT|S14.125D|ICD10CM|Central cord syndrome at C5 level of cervical spinal cord, subsequent encounter|Central cord syndrome at C5 level of cervical spinal cord, subsequent encounter +C2833936|T037|AB|S14.125D|ICD10CM|Central cord syndrome at C5, subs|Central cord syndrome at C5, subs +C2833937|T037|PT|S14.125S|ICD10CM|Central cord syndrome at C5 level of cervical spinal cord, sequela|Central cord syndrome at C5 level of cervical spinal cord, sequela +C2833937|T037|AB|S14.125S|ICD10CM|Central cord syndrome at C5, sequela|Central cord syndrome at C5, sequela +C2833938|T047|AB|S14.126|ICD10CM|Central cord syndrome at C6 level of cervical spinal cord|Central cord syndrome at C6 level of cervical spinal cord +C2833938|T047|HT|S14.126|ICD10CM|Central cord syndrome at C6 level of cervical spinal cord|Central cord syndrome at C6 level of cervical spinal cord +C2833939|T037|PT|S14.126A|ICD10CM|Central cord syndrome at C6 level of cervical spinal cord, initial encounter|Central cord syndrome at C6 level of cervical spinal cord, initial encounter +C2833939|T037|AB|S14.126A|ICD10CM|Central cord syndrome at C6, init|Central cord syndrome at C6, init +C2833940|T037|PT|S14.126D|ICD10CM|Central cord syndrome at C6 level of cervical spinal cord, subsequent encounter|Central cord syndrome at C6 level of cervical spinal cord, subsequent encounter +C2833940|T037|AB|S14.126D|ICD10CM|Central cord syndrome at C6, subs|Central cord syndrome at C6, subs +C2833941|T037|PT|S14.126S|ICD10CM|Central cord syndrome at C6 level of cervical spinal cord, sequela|Central cord syndrome at C6 level of cervical spinal cord, sequela +C2833941|T037|AB|S14.126S|ICD10CM|Central cord syndrome at C6, sequela|Central cord syndrome at C6, sequela +C2833942|T047|AB|S14.127|ICD10CM|Central cord syndrome at C7 level of cervical spinal cord|Central cord syndrome at C7 level of cervical spinal cord +C2833942|T047|HT|S14.127|ICD10CM|Central cord syndrome at C7 level of cervical spinal cord|Central cord syndrome at C7 level of cervical spinal cord +C2833943|T037|PT|S14.127A|ICD10CM|Central cord syndrome at C7 level of cervical spinal cord, initial encounter|Central cord syndrome at C7 level of cervical spinal cord, initial encounter +C2833943|T037|AB|S14.127A|ICD10CM|Central cord syndrome at C7, init|Central cord syndrome at C7, init +C2833944|T037|PT|S14.127D|ICD10CM|Central cord syndrome at C7 level of cervical spinal cord, subsequent encounter|Central cord syndrome at C7 level of cervical spinal cord, subsequent encounter +C2833944|T037|AB|S14.127D|ICD10CM|Central cord syndrome at C7, subs|Central cord syndrome at C7, subs +C2833945|T037|PT|S14.127S|ICD10CM|Central cord syndrome at C7 level of cervical spinal cord, sequela|Central cord syndrome at C7 level of cervical spinal cord, sequela +C2833945|T037|AB|S14.127S|ICD10CM|Central cord syndrome at C7, sequela|Central cord syndrome at C7, sequela +C2833946|T047|AB|S14.128|ICD10CM|Central cord syndrome at C8 level of cervical spinal cord|Central cord syndrome at C8 level of cervical spinal cord +C2833946|T047|HT|S14.128|ICD10CM|Central cord syndrome at C8 level of cervical spinal cord|Central cord syndrome at C8 level of cervical spinal cord +C2833947|T037|PT|S14.128A|ICD10CM|Central cord syndrome at C8 level of cervical spinal cord, initial encounter|Central cord syndrome at C8 level of cervical spinal cord, initial encounter +C2833947|T037|AB|S14.128A|ICD10CM|Central cord syndrome at C8, init|Central cord syndrome at C8, init +C2833948|T037|PT|S14.128D|ICD10CM|Central cord syndrome at C8 level of cervical spinal cord, subsequent encounter|Central cord syndrome at C8 level of cervical spinal cord, subsequent encounter +C2833948|T037|AB|S14.128D|ICD10CM|Central cord syndrome at C8, subs|Central cord syndrome at C8, subs +C2833949|T037|PT|S14.128S|ICD10CM|Central cord syndrome at C8 level of cervical spinal cord, sequela|Central cord syndrome at C8 level of cervical spinal cord, sequela +C2833949|T037|AB|S14.128S|ICD10CM|Central cord syndrome at C8, sequela|Central cord syndrome at C8, sequela +C2833950|T037|AB|S14.129|ICD10CM|Central cord syndrome at unsp level of cervical spinal cord|Central cord syndrome at unsp level of cervical spinal cord +C2833950|T037|HT|S14.129|ICD10CM|Central cord syndrome at unspecified level of cervical spinal cord|Central cord syndrome at unspecified level of cervical spinal cord +C2833951|T037|AB|S14.129A|ICD10CM|Central cord synd at unsp level of cerv spinal cord, init|Central cord synd at unsp level of cerv spinal cord, init +C2833951|T037|PT|S14.129A|ICD10CM|Central cord syndrome at unspecified level of cervical spinal cord, initial encounter|Central cord syndrome at unspecified level of cervical spinal cord, initial encounter +C2833952|T037|AB|S14.129D|ICD10CM|Central cord synd at unsp level of cerv spinal cord, subs|Central cord synd at unsp level of cerv spinal cord, subs +C2833952|T037|PT|S14.129D|ICD10CM|Central cord syndrome at unspecified level of cervical spinal cord, subsequent encounter|Central cord syndrome at unspecified level of cervical spinal cord, subsequent encounter +C2833953|T037|AB|S14.129S|ICD10CM|Central cord synd at unsp level of cerv spinal cord, sequela|Central cord synd at unsp level of cerv spinal cord, sequela +C2833953|T037|PT|S14.129S|ICD10CM|Central cord syndrome at unspecified level of cervical spinal cord, sequela|Central cord syndrome at unspecified level of cervical spinal cord, sequela +C2833954|T047|HT|S14.13|ICD10CM|Anterior cord syndrome of cervical spinal cord|Anterior cord syndrome of cervical spinal cord +C2833954|T047|AB|S14.13|ICD10CM|Anterior cord syndrome of cervical spinal cord|Anterior cord syndrome of cervical spinal cord +C2833955|T047|AB|S14.131|ICD10CM|Anterior cord syndrome at C1 level of cervical spinal cord|Anterior cord syndrome at C1 level of cervical spinal cord +C2833955|T047|HT|S14.131|ICD10CM|Anterior cord syndrome at C1 level of cervical spinal cord|Anterior cord syndrome at C1 level of cervical spinal cord +C2833956|T037|PT|S14.131A|ICD10CM|Anterior cord syndrome at C1 level of cervical spinal cord, initial encounter|Anterior cord syndrome at C1 level of cervical spinal cord, initial encounter +C2833956|T037|AB|S14.131A|ICD10CM|Anterior cord syndrome at C1, init|Anterior cord syndrome at C1, init +C2833957|T037|PT|S14.131D|ICD10CM|Anterior cord syndrome at C1 level of cervical spinal cord, subsequent encounter|Anterior cord syndrome at C1 level of cervical spinal cord, subsequent encounter +C2833957|T037|AB|S14.131D|ICD10CM|Anterior cord syndrome at C1, subs|Anterior cord syndrome at C1, subs +C2833958|T037|PT|S14.131S|ICD10CM|Anterior cord syndrome at C1 level of cervical spinal cord, sequela|Anterior cord syndrome at C1 level of cervical spinal cord, sequela +C2833958|T037|AB|S14.131S|ICD10CM|Anterior cord syndrome at C1, sequela|Anterior cord syndrome at C1, sequela +C2833959|T047|AB|S14.132|ICD10CM|Anterior cord syndrome at C2 level of cervical spinal cord|Anterior cord syndrome at C2 level of cervical spinal cord +C2833959|T047|HT|S14.132|ICD10CM|Anterior cord syndrome at C2 level of cervical spinal cord|Anterior cord syndrome at C2 level of cervical spinal cord +C2833960|T037|PT|S14.132A|ICD10CM|Anterior cord syndrome at C2 level of cervical spinal cord, initial encounter|Anterior cord syndrome at C2 level of cervical spinal cord, initial encounter +C2833960|T037|AB|S14.132A|ICD10CM|Anterior cord syndrome at C2, init|Anterior cord syndrome at C2, init +C2833961|T037|PT|S14.132D|ICD10CM|Anterior cord syndrome at C2 level of cervical spinal cord, subsequent encounter|Anterior cord syndrome at C2 level of cervical spinal cord, subsequent encounter +C2833961|T037|AB|S14.132D|ICD10CM|Anterior cord syndrome at C2, subs|Anterior cord syndrome at C2, subs +C2833962|T037|PT|S14.132S|ICD10CM|Anterior cord syndrome at C2 level of cervical spinal cord, sequela|Anterior cord syndrome at C2 level of cervical spinal cord, sequela +C2833962|T037|AB|S14.132S|ICD10CM|Anterior cord syndrome at C2, sequela|Anterior cord syndrome at C2, sequela +C2833963|T047|AB|S14.133|ICD10CM|Anterior cord syndrome at C3 level of cervical spinal cord|Anterior cord syndrome at C3 level of cervical spinal cord +C2833963|T047|HT|S14.133|ICD10CM|Anterior cord syndrome at C3 level of cervical spinal cord|Anterior cord syndrome at C3 level of cervical spinal cord +C2833964|T037|PT|S14.133A|ICD10CM|Anterior cord syndrome at C3 level of cervical spinal cord, initial encounter|Anterior cord syndrome at C3 level of cervical spinal cord, initial encounter +C2833964|T037|AB|S14.133A|ICD10CM|Anterior cord syndrome at C3, init|Anterior cord syndrome at C3, init +C2833965|T037|PT|S14.133D|ICD10CM|Anterior cord syndrome at C3 level of cervical spinal cord, subsequent encounter|Anterior cord syndrome at C3 level of cervical spinal cord, subsequent encounter +C2833965|T037|AB|S14.133D|ICD10CM|Anterior cord syndrome at C3, subs|Anterior cord syndrome at C3, subs +C2833966|T037|PT|S14.133S|ICD10CM|Anterior cord syndrome at C3 level of cervical spinal cord, sequela|Anterior cord syndrome at C3 level of cervical spinal cord, sequela +C2833966|T037|AB|S14.133S|ICD10CM|Anterior cord syndrome at C3, sequela|Anterior cord syndrome at C3, sequela +C2833967|T047|AB|S14.134|ICD10CM|Anterior cord syndrome at C4 level of cervical spinal cord|Anterior cord syndrome at C4 level of cervical spinal cord +C2833967|T047|HT|S14.134|ICD10CM|Anterior cord syndrome at C4 level of cervical spinal cord|Anterior cord syndrome at C4 level of cervical spinal cord +C2833968|T037|PT|S14.134A|ICD10CM|Anterior cord syndrome at C4 level of cervical spinal cord, initial encounter|Anterior cord syndrome at C4 level of cervical spinal cord, initial encounter +C2833968|T037|AB|S14.134A|ICD10CM|Anterior cord syndrome at C4, init|Anterior cord syndrome at C4, init +C2833969|T037|PT|S14.134D|ICD10CM|Anterior cord syndrome at C4 level of cervical spinal cord, subsequent encounter|Anterior cord syndrome at C4 level of cervical spinal cord, subsequent encounter +C2833969|T037|AB|S14.134D|ICD10CM|Anterior cord syndrome at C4, subs|Anterior cord syndrome at C4, subs +C2833970|T037|PT|S14.134S|ICD10CM|Anterior cord syndrome at C4 level of cervical spinal cord, sequela|Anterior cord syndrome at C4 level of cervical spinal cord, sequela +C2833970|T037|AB|S14.134S|ICD10CM|Anterior cord syndrome at C4, sequela|Anterior cord syndrome at C4, sequela +C2833971|T047|AB|S14.135|ICD10CM|Anterior cord syndrome at C5 level of cervical spinal cord|Anterior cord syndrome at C5 level of cervical spinal cord +C2833971|T047|HT|S14.135|ICD10CM|Anterior cord syndrome at C5 level of cervical spinal cord|Anterior cord syndrome at C5 level of cervical spinal cord +C2833972|T037|PT|S14.135A|ICD10CM|Anterior cord syndrome at C5 level of cervical spinal cord, initial encounter|Anterior cord syndrome at C5 level of cervical spinal cord, initial encounter +C2833972|T037|AB|S14.135A|ICD10CM|Anterior cord syndrome at C5, init|Anterior cord syndrome at C5, init +C2833973|T037|PT|S14.135D|ICD10CM|Anterior cord syndrome at C5 level of cervical spinal cord, subsequent encounter|Anterior cord syndrome at C5 level of cervical spinal cord, subsequent encounter +C2833973|T037|AB|S14.135D|ICD10CM|Anterior cord syndrome at C5, subs|Anterior cord syndrome at C5, subs +C2833974|T037|PT|S14.135S|ICD10CM|Anterior cord syndrome at C5 level of cervical spinal cord, sequela|Anterior cord syndrome at C5 level of cervical spinal cord, sequela +C2833974|T037|AB|S14.135S|ICD10CM|Anterior cord syndrome at C5, sequela|Anterior cord syndrome at C5, sequela +C2833975|T047|AB|S14.136|ICD10CM|Anterior cord syndrome at C6 level of cervical spinal cord|Anterior cord syndrome at C6 level of cervical spinal cord +C2833975|T047|HT|S14.136|ICD10CM|Anterior cord syndrome at C6 level of cervical spinal cord|Anterior cord syndrome at C6 level of cervical spinal cord +C2833976|T037|PT|S14.136A|ICD10CM|Anterior cord syndrome at C6 level of cervical spinal cord, initial encounter|Anterior cord syndrome at C6 level of cervical spinal cord, initial encounter +C2833976|T037|AB|S14.136A|ICD10CM|Anterior cord syndrome at C6, init|Anterior cord syndrome at C6, init +C2833977|T037|PT|S14.136D|ICD10CM|Anterior cord syndrome at C6 level of cervical spinal cord, subsequent encounter|Anterior cord syndrome at C6 level of cervical spinal cord, subsequent encounter +C2833977|T037|AB|S14.136D|ICD10CM|Anterior cord syndrome at C6, subs|Anterior cord syndrome at C6, subs +C2833978|T037|PT|S14.136S|ICD10CM|Anterior cord syndrome at C6 level of cervical spinal cord, sequela|Anterior cord syndrome at C6 level of cervical spinal cord, sequela +C2833978|T037|AB|S14.136S|ICD10CM|Anterior cord syndrome at C6, sequela|Anterior cord syndrome at C6, sequela +C2833979|T047|AB|S14.137|ICD10CM|Anterior cord syndrome at C7 level of cervical spinal cord|Anterior cord syndrome at C7 level of cervical spinal cord +C2833979|T047|HT|S14.137|ICD10CM|Anterior cord syndrome at C7 level of cervical spinal cord|Anterior cord syndrome at C7 level of cervical spinal cord +C2833980|T037|PT|S14.137A|ICD10CM|Anterior cord syndrome at C7 level of cervical spinal cord, initial encounter|Anterior cord syndrome at C7 level of cervical spinal cord, initial encounter +C2833980|T037|AB|S14.137A|ICD10CM|Anterior cord syndrome at C7, init|Anterior cord syndrome at C7, init +C2833981|T037|PT|S14.137D|ICD10CM|Anterior cord syndrome at C7 level of cervical spinal cord, subsequent encounter|Anterior cord syndrome at C7 level of cervical spinal cord, subsequent encounter +C2833981|T037|AB|S14.137D|ICD10CM|Anterior cord syndrome at C7, subs|Anterior cord syndrome at C7, subs +C2833982|T037|PT|S14.137S|ICD10CM|Anterior cord syndrome at C7 level of cervical spinal cord, sequela|Anterior cord syndrome at C7 level of cervical spinal cord, sequela +C2833982|T037|AB|S14.137S|ICD10CM|Anterior cord syndrome at C7, sequela|Anterior cord syndrome at C7, sequela +C2833983|T047|AB|S14.138|ICD10CM|Anterior cord syndrome at C8 level of cervical spinal cord|Anterior cord syndrome at C8 level of cervical spinal cord +C2833983|T047|HT|S14.138|ICD10CM|Anterior cord syndrome at C8 level of cervical spinal cord|Anterior cord syndrome at C8 level of cervical spinal cord +C2833984|T037|PT|S14.138A|ICD10CM|Anterior cord syndrome at C8 level of cervical spinal cord, initial encounter|Anterior cord syndrome at C8 level of cervical spinal cord, initial encounter +C2833984|T037|AB|S14.138A|ICD10CM|Anterior cord syndrome at C8, init|Anterior cord syndrome at C8, init +C2833985|T037|PT|S14.138D|ICD10CM|Anterior cord syndrome at C8 level of cervical spinal cord, subsequent encounter|Anterior cord syndrome at C8 level of cervical spinal cord, subsequent encounter +C2833985|T037|AB|S14.138D|ICD10CM|Anterior cord syndrome at C8, subs|Anterior cord syndrome at C8, subs +C2833986|T037|PT|S14.138S|ICD10CM|Anterior cord syndrome at C8 level of cervical spinal cord, sequela|Anterior cord syndrome at C8 level of cervical spinal cord, sequela +C2833986|T037|AB|S14.138S|ICD10CM|Anterior cord syndrome at C8, sequela|Anterior cord syndrome at C8, sequela +C2833987|T037|AB|S14.139|ICD10CM|Anterior cord syndrome at unsp level of cervical spinal cord|Anterior cord syndrome at unsp level of cervical spinal cord +C2833987|T037|HT|S14.139|ICD10CM|Anterior cord syndrome at unspecified level of cervical spinal cord|Anterior cord syndrome at unspecified level of cervical spinal cord +C2833988|T037|AB|S14.139A|ICD10CM|Ant cord syndrome at unsp level of cerv spinal cord, init|Ant cord syndrome at unsp level of cerv spinal cord, init +C2833988|T037|PT|S14.139A|ICD10CM|Anterior cord syndrome at unspecified level of cervical spinal cord, initial encounter|Anterior cord syndrome at unspecified level of cervical spinal cord, initial encounter +C2833989|T037|AB|S14.139D|ICD10CM|Ant cord syndrome at unsp level of cerv spinal cord, subs|Ant cord syndrome at unsp level of cerv spinal cord, subs +C2833989|T037|PT|S14.139D|ICD10CM|Anterior cord syndrome at unspecified level of cervical spinal cord, subsequent encounter|Anterior cord syndrome at unspecified level of cervical spinal cord, subsequent encounter +C2833990|T037|AB|S14.139S|ICD10CM|Ant cord syndrome at unsp level of cerv spinal cord, sequela|Ant cord syndrome at unsp level of cerv spinal cord, sequela +C2833990|T037|PT|S14.139S|ICD10CM|Anterior cord syndrome at unspecified level of cervical spinal cord, sequela|Anterior cord syndrome at unspecified level of cervical spinal cord, sequela +C2833991|T047|AB|S14.14|ICD10CM|Brown-Sequard syndrome of cervical spinal cord|Brown-Sequard syndrome of cervical spinal cord +C2833991|T047|HT|S14.14|ICD10CM|Brown-Séquard syndrome of cervical spinal cord|Brown-Séquard syndrome of cervical spinal cord +C2833992|T037|AB|S14.141|ICD10CM|Brown-Sequard syndrome at C1 level of cervical spinal cord|Brown-Sequard syndrome at C1 level of cervical spinal cord +C2833992|T037|HT|S14.141|ICD10CM|Brown-Séquard syndrome at C1 level of cervical spinal cord|Brown-Séquard syndrome at C1 level of cervical spinal cord +C2833993|T037|PT|S14.141A|ICD10CM|Brown-Séquard syndrome at C1 level of cervical spinal cord, initial encounter|Brown-Séquard syndrome at C1 level of cervical spinal cord, initial encounter +C2833993|T037|AB|S14.141A|ICD10CM|Brown-Sequard syndrome at C1, init|Brown-Sequard syndrome at C1, init +C2833994|T037|PT|S14.141D|ICD10CM|Brown-Séquard syndrome at C1 level of cervical spinal cord, subsequent encounter|Brown-Séquard syndrome at C1 level of cervical spinal cord, subsequent encounter +C2833994|T037|AB|S14.141D|ICD10CM|Brown-Sequard syndrome at C1, subs|Brown-Sequard syndrome at C1, subs +C2833995|T037|PT|S14.141S|ICD10CM|Brown-Séquard syndrome at C1 level of cervical spinal cord, sequela|Brown-Séquard syndrome at C1 level of cervical spinal cord, sequela +C2833995|T037|AB|S14.141S|ICD10CM|Brown-Sequard syndrome at C1, sequela|Brown-Sequard syndrome at C1, sequela +C2833996|T037|AB|S14.142|ICD10CM|Brown-Sequard syndrome at C2 level of cervical spinal cord|Brown-Sequard syndrome at C2 level of cervical spinal cord +C2833996|T037|HT|S14.142|ICD10CM|Brown-Séquard syndrome at C2 level of cervical spinal cord|Brown-Séquard syndrome at C2 level of cervical spinal cord +C2833997|T037|PT|S14.142A|ICD10CM|Brown-Séquard syndrome at C2 level of cervical spinal cord, initial encounter|Brown-Séquard syndrome at C2 level of cervical spinal cord, initial encounter +C2833997|T037|AB|S14.142A|ICD10CM|Brown-Sequard syndrome at C2, init|Brown-Sequard syndrome at C2, init +C2833998|T037|PT|S14.142D|ICD10CM|Brown-Séquard syndrome at C2 level of cervical spinal cord, subsequent encounter|Brown-Séquard syndrome at C2 level of cervical spinal cord, subsequent encounter +C2833998|T037|AB|S14.142D|ICD10CM|Brown-Sequard syndrome at C2, subs|Brown-Sequard syndrome at C2, subs +C2833999|T037|PT|S14.142S|ICD10CM|Brown-Séquard syndrome at C2 level of cervical spinal cord, sequela|Brown-Séquard syndrome at C2 level of cervical spinal cord, sequela +C2833999|T037|AB|S14.142S|ICD10CM|Brown-Sequard syndrome at C2, sequela|Brown-Sequard syndrome at C2, sequela +C2834000|T037|AB|S14.143|ICD10CM|Brown-Sequard syndrome at C3 level of cervical spinal cord|Brown-Sequard syndrome at C3 level of cervical spinal cord +C2834000|T037|HT|S14.143|ICD10CM|Brown-Séquard syndrome at C3 level of cervical spinal cord|Brown-Séquard syndrome at C3 level of cervical spinal cord +C2834001|T037|PT|S14.143A|ICD10CM|Brown-Séquard syndrome at C3 level of cervical spinal cord, initial encounter|Brown-Séquard syndrome at C3 level of cervical spinal cord, initial encounter +C2834001|T037|AB|S14.143A|ICD10CM|Brown-Sequard syndrome at C3, init|Brown-Sequard syndrome at C3, init +C2834002|T037|PT|S14.143D|ICD10CM|Brown-Séquard syndrome at C3 level of cervical spinal cord, subsequent encounter|Brown-Séquard syndrome at C3 level of cervical spinal cord, subsequent encounter +C2834002|T037|AB|S14.143D|ICD10CM|Brown-Sequard syndrome at C3, subs|Brown-Sequard syndrome at C3, subs +C2834003|T037|PT|S14.143S|ICD10CM|Brown-Séquard syndrome at C3 level of cervical spinal cord, sequela|Brown-Séquard syndrome at C3 level of cervical spinal cord, sequela +C2834003|T037|AB|S14.143S|ICD10CM|Brown-Sequard syndrome at C3, sequela|Brown-Sequard syndrome at C3, sequela +C2834004|T037|AB|S14.144|ICD10CM|Brown-Sequard syndrome at C4 level of cervical spinal cord|Brown-Sequard syndrome at C4 level of cervical spinal cord +C2834004|T037|HT|S14.144|ICD10CM|Brown-Séquard syndrome at C4 level of cervical spinal cord|Brown-Séquard syndrome at C4 level of cervical spinal cord +C2834005|T037|PT|S14.144A|ICD10CM|Brown-Séquard syndrome at C4 level of cervical spinal cord, initial encounter|Brown-Séquard syndrome at C4 level of cervical spinal cord, initial encounter +C2834005|T037|AB|S14.144A|ICD10CM|Brown-Sequard syndrome at C4, init|Brown-Sequard syndrome at C4, init +C2834006|T037|PT|S14.144D|ICD10CM|Brown-Séquard syndrome at C4 level of cervical spinal cord, subsequent encounter|Brown-Séquard syndrome at C4 level of cervical spinal cord, subsequent encounter +C2834006|T037|AB|S14.144D|ICD10CM|Brown-Sequard syndrome at C4, subs|Brown-Sequard syndrome at C4, subs +C2834007|T037|PT|S14.144S|ICD10CM|Brown-Séquard syndrome at C4 level of cervical spinal cord, sequela|Brown-Séquard syndrome at C4 level of cervical spinal cord, sequela +C2834007|T037|AB|S14.144S|ICD10CM|Brown-Sequard syndrome at C4, sequela|Brown-Sequard syndrome at C4, sequela +C2834008|T037|AB|S14.145|ICD10CM|Brown-Sequard syndrome at C5 level of cervical spinal cord|Brown-Sequard syndrome at C5 level of cervical spinal cord +C2834008|T037|HT|S14.145|ICD10CM|Brown-Séquard syndrome at C5 level of cervical spinal cord|Brown-Séquard syndrome at C5 level of cervical spinal cord +C2834009|T037|PT|S14.145A|ICD10CM|Brown-Séquard syndrome at C5 level of cervical spinal cord, initial encounter|Brown-Séquard syndrome at C5 level of cervical spinal cord, initial encounter +C2834009|T037|AB|S14.145A|ICD10CM|Brown-Sequard syndrome at C5, init|Brown-Sequard syndrome at C5, init +C2834010|T037|PT|S14.145D|ICD10CM|Brown-Séquard syndrome at C5 level of cervical spinal cord, subsequent encounter|Brown-Séquard syndrome at C5 level of cervical spinal cord, subsequent encounter +C2834010|T037|AB|S14.145D|ICD10CM|Brown-Sequard syndrome at C5, subs|Brown-Sequard syndrome at C5, subs +C2834011|T037|PT|S14.145S|ICD10CM|Brown-Séquard syndrome at C5 level of cervical spinal cord, sequela|Brown-Séquard syndrome at C5 level of cervical spinal cord, sequela +C2834011|T037|AB|S14.145S|ICD10CM|Brown-Sequard syndrome at C5, sequela|Brown-Sequard syndrome at C5, sequela +C2834012|T037|AB|S14.146|ICD10CM|Brown-Sequard syndrome at C6 level of cervical spinal cord|Brown-Sequard syndrome at C6 level of cervical spinal cord +C2834012|T037|HT|S14.146|ICD10CM|Brown-Séquard syndrome at C6 level of cervical spinal cord|Brown-Séquard syndrome at C6 level of cervical spinal cord +C2834013|T037|PT|S14.146A|ICD10CM|Brown-Séquard syndrome at C6 level of cervical spinal cord, initial encounter|Brown-Séquard syndrome at C6 level of cervical spinal cord, initial encounter +C2834013|T037|AB|S14.146A|ICD10CM|Brown-Sequard syndrome at C6, init|Brown-Sequard syndrome at C6, init +C2834014|T037|PT|S14.146D|ICD10CM|Brown-Séquard syndrome at C6 level of cervical spinal cord, subsequent encounter|Brown-Séquard syndrome at C6 level of cervical spinal cord, subsequent encounter +C2834014|T037|AB|S14.146D|ICD10CM|Brown-Sequard syndrome at C6, subs|Brown-Sequard syndrome at C6, subs +C2834015|T037|PT|S14.146S|ICD10CM|Brown-Séquard syndrome at C6 level of cervical spinal cord, sequela|Brown-Séquard syndrome at C6 level of cervical spinal cord, sequela +C2834015|T037|AB|S14.146S|ICD10CM|Brown-Sequard syndrome at C6, sequela|Brown-Sequard syndrome at C6, sequela +C2834016|T037|AB|S14.147|ICD10CM|Brown-Sequard syndrome at C7 level of cervical spinal cord|Brown-Sequard syndrome at C7 level of cervical spinal cord +C2834016|T037|HT|S14.147|ICD10CM|Brown-Séquard syndrome at C7 level of cervical spinal cord|Brown-Séquard syndrome at C7 level of cervical spinal cord +C2834017|T037|PT|S14.147A|ICD10CM|Brown-Séquard syndrome at C7 level of cervical spinal cord, initial encounter|Brown-Séquard syndrome at C7 level of cervical spinal cord, initial encounter +C2834017|T037|AB|S14.147A|ICD10CM|Brown-Sequard syndrome at C7, init|Brown-Sequard syndrome at C7, init +C2834018|T037|PT|S14.147D|ICD10CM|Brown-Séquard syndrome at C7 level of cervical spinal cord, subsequent encounter|Brown-Séquard syndrome at C7 level of cervical spinal cord, subsequent encounter +C2834018|T037|AB|S14.147D|ICD10CM|Brown-Sequard syndrome at C7, subs|Brown-Sequard syndrome at C7, subs +C2834019|T037|PT|S14.147S|ICD10CM|Brown-Séquard syndrome at C7 level of cervical spinal cord, sequela|Brown-Séquard syndrome at C7 level of cervical spinal cord, sequela +C2834019|T037|AB|S14.147S|ICD10CM|Brown-Sequard syndrome at C7, sequela|Brown-Sequard syndrome at C7, sequela +C2834020|T037|AB|S14.148|ICD10CM|Brown-Sequard syndrome at C8 level of cervical spinal cord|Brown-Sequard syndrome at C8 level of cervical spinal cord +C2834020|T037|HT|S14.148|ICD10CM|Brown-Séquard syndrome at C8 level of cervical spinal cord|Brown-Séquard syndrome at C8 level of cervical spinal cord +C2834021|T037|PT|S14.148A|ICD10CM|Brown-Séquard syndrome at C8 level of cervical spinal cord, initial encounter|Brown-Séquard syndrome at C8 level of cervical spinal cord, initial encounter +C2834021|T037|AB|S14.148A|ICD10CM|Brown-Sequard syndrome at C8, init|Brown-Sequard syndrome at C8, init +C2834022|T037|PT|S14.148D|ICD10CM|Brown-Séquard syndrome at C8 level of cervical spinal cord, subsequent encounter|Brown-Séquard syndrome at C8 level of cervical spinal cord, subsequent encounter +C2834022|T037|AB|S14.148D|ICD10CM|Brown-Sequard syndrome at C8, subs|Brown-Sequard syndrome at C8, subs +C2834023|T037|PT|S14.148S|ICD10CM|Brown-Séquard syndrome at C8 level of cervical spinal cord, sequela|Brown-Séquard syndrome at C8 level of cervical spinal cord, sequela +C2834023|T037|AB|S14.148S|ICD10CM|Brown-Sequard syndrome at C8, sequela|Brown-Sequard syndrome at C8, sequela +C2834024|T037|AB|S14.149|ICD10CM|Brown-Sequard syndrome at unsp level of cervical spinal cord|Brown-Sequard syndrome at unsp level of cervical spinal cord +C2834024|T037|HT|S14.149|ICD10CM|Brown-Séquard syndrome at unspecified level of cervical spinal cord|Brown-Séquard syndrome at unspecified level of cervical spinal cord +C2834025|T037|AB|S14.149A|ICD10CM|Brown-Sequard synd at unsp level of cerv spinal cord, init|Brown-Sequard synd at unsp level of cerv spinal cord, init +C2834025|T037|PT|S14.149A|ICD10CM|Brown-Séquard syndrome at unspecified level of cervical spinal cord, initial encounter|Brown-Séquard syndrome at unspecified level of cervical spinal cord, initial encounter +C2834026|T037|AB|S14.149D|ICD10CM|Brown-Sequard synd at unsp level of cerv spinal cord, subs|Brown-Sequard synd at unsp level of cerv spinal cord, subs +C2834026|T037|PT|S14.149D|ICD10CM|Brown-Séquard syndrome at unspecified level of cervical spinal cord, subsequent encounter|Brown-Séquard syndrome at unspecified level of cervical spinal cord, subsequent encounter +C2834027|T037|AB|S14.149S|ICD10CM|Brown-Sequard synd at unsp level of cerv spinal cord, sqla|Brown-Sequard synd at unsp level of cerv spinal cord, sqla +C2834027|T037|PT|S14.149S|ICD10CM|Brown-Séquard syndrome at unspecified level of cervical spinal cord, sequela|Brown-Séquard syndrome at unspecified level of cervical spinal cord, sequela +C2834028|T020|ET|S14.15|ICD10CM|Incomplete lesion of cervical spinal cord NOS|Incomplete lesion of cervical spinal cord NOS +C2834030|T037|AB|S14.15|ICD10CM|Other incomplete lesions of cervical spinal cord|Other incomplete lesions of cervical spinal cord +C2834030|T037|HT|S14.15|ICD10CM|Other incomplete lesions of cervical spinal cord|Other incomplete lesions of cervical spinal cord +C2834029|T047|ET|S14.15|ICD10CM|Posterior cord syndrome of cervical spinal cord|Posterior cord syndrome of cervical spinal cord +C2834031|T037|AB|S14.151|ICD10CM|Other incomplete lesion at C1 level of cervical spinal cord|Other incomplete lesion at C1 level of cervical spinal cord +C2834031|T037|HT|S14.151|ICD10CM|Other incomplete lesion at C1 level of cervical spinal cord|Other incomplete lesion at C1 level of cervical spinal cord +C2834032|T037|AB|S14.151A|ICD10CM|Oth incomplete lesion at C1, init|Oth incomplete lesion at C1, init +C2834032|T037|PT|S14.151A|ICD10CM|Other incomplete lesion at C1 level of cervical spinal cord, initial encounter|Other incomplete lesion at C1 level of cervical spinal cord, initial encounter +C2834033|T037|AB|S14.151D|ICD10CM|Oth incomplete lesion at C1, subs|Oth incomplete lesion at C1, subs +C2834033|T037|PT|S14.151D|ICD10CM|Other incomplete lesion at C1 level of cervical spinal cord, subsequent encounter|Other incomplete lesion at C1 level of cervical spinal cord, subsequent encounter +C2834034|T037|AB|S14.151S|ICD10CM|Oth incomplete lesion at C1, sequela|Oth incomplete lesion at C1, sequela +C2834034|T037|PT|S14.151S|ICD10CM|Other incomplete lesion at C1 level of cervical spinal cord, sequela|Other incomplete lesion at C1 level of cervical spinal cord, sequela +C2834035|T037|AB|S14.152|ICD10CM|Other incomplete lesion at C2 level of cervical spinal cord|Other incomplete lesion at C2 level of cervical spinal cord +C2834035|T037|HT|S14.152|ICD10CM|Other incomplete lesion at C2 level of cervical spinal cord|Other incomplete lesion at C2 level of cervical spinal cord +C2834036|T037|AB|S14.152A|ICD10CM|Oth incomplete lesion at C2, init|Oth incomplete lesion at C2, init +C2834036|T037|PT|S14.152A|ICD10CM|Other incomplete lesion at C2 level of cervical spinal cord, initial encounter|Other incomplete lesion at C2 level of cervical spinal cord, initial encounter +C2834037|T037|AB|S14.152D|ICD10CM|Oth incomplete lesion at C2, subs|Oth incomplete lesion at C2, subs +C2834037|T037|PT|S14.152D|ICD10CM|Other incomplete lesion at C2 level of cervical spinal cord, subsequent encounter|Other incomplete lesion at C2 level of cervical spinal cord, subsequent encounter +C2834038|T037|AB|S14.152S|ICD10CM|Oth incomplete lesion at C2, sequela|Oth incomplete lesion at C2, sequela +C2834038|T037|PT|S14.152S|ICD10CM|Other incomplete lesion at C2 level of cervical spinal cord, sequela|Other incomplete lesion at C2 level of cervical spinal cord, sequela +C2834039|T037|AB|S14.153|ICD10CM|Other incomplete lesion at C3 level of cervical spinal cord|Other incomplete lesion at C3 level of cervical spinal cord +C2834039|T037|HT|S14.153|ICD10CM|Other incomplete lesion at C3 level of cervical spinal cord|Other incomplete lesion at C3 level of cervical spinal cord +C2834040|T037|AB|S14.153A|ICD10CM|Oth incomplete lesion at C3, init|Oth incomplete lesion at C3, init +C2834040|T037|PT|S14.153A|ICD10CM|Other incomplete lesion at C3 level of cervical spinal cord, initial encounter|Other incomplete lesion at C3 level of cervical spinal cord, initial encounter +C2834041|T037|AB|S14.153D|ICD10CM|Oth incomplete lesion at C3, subs|Oth incomplete lesion at C3, subs +C2834041|T037|PT|S14.153D|ICD10CM|Other incomplete lesion at C3 level of cervical spinal cord, subsequent encounter|Other incomplete lesion at C3 level of cervical spinal cord, subsequent encounter +C2834042|T037|AB|S14.153S|ICD10CM|Oth incomplete lesion at C3, sequela|Oth incomplete lesion at C3, sequela +C2834042|T037|PT|S14.153S|ICD10CM|Other incomplete lesion at C3 level of cervical spinal cord, sequela|Other incomplete lesion at C3 level of cervical spinal cord, sequela +C2834043|T037|AB|S14.154|ICD10CM|Other incomplete lesion at C4 level of cervical spinal cord|Other incomplete lesion at C4 level of cervical spinal cord +C2834043|T037|HT|S14.154|ICD10CM|Other incomplete lesion at C4 level of cervical spinal cord|Other incomplete lesion at C4 level of cervical spinal cord +C2834044|T037|AB|S14.154A|ICD10CM|Oth incomplete lesion at C4, init|Oth incomplete lesion at C4, init +C2834044|T037|PT|S14.154A|ICD10CM|Other incomplete lesion at C4 level of cervical spinal cord, initial encounter|Other incomplete lesion at C4 level of cervical spinal cord, initial encounter +C2834045|T037|AB|S14.154D|ICD10CM|Oth incomplete lesion at C4, subs|Oth incomplete lesion at C4, subs +C2834045|T037|PT|S14.154D|ICD10CM|Other incomplete lesion at C4 level of cervical spinal cord, subsequent encounter|Other incomplete lesion at C4 level of cervical spinal cord, subsequent encounter +C2834046|T037|AB|S14.154S|ICD10CM|Oth incomplete lesion at C4, sequela|Oth incomplete lesion at C4, sequela +C2834046|T037|PT|S14.154S|ICD10CM|Other incomplete lesion at C4 level of cervical spinal cord, sequela|Other incomplete lesion at C4 level of cervical spinal cord, sequela +C2834047|T037|AB|S14.155|ICD10CM|Other incomplete lesion at C5 level of cervical spinal cord|Other incomplete lesion at C5 level of cervical spinal cord +C2834047|T037|HT|S14.155|ICD10CM|Other incomplete lesion at C5 level of cervical spinal cord|Other incomplete lesion at C5 level of cervical spinal cord +C2834048|T037|AB|S14.155A|ICD10CM|Oth incomplete lesion at C5, init|Oth incomplete lesion at C5, init +C2834048|T037|PT|S14.155A|ICD10CM|Other incomplete lesion at C5 level of cervical spinal cord, initial encounter|Other incomplete lesion at C5 level of cervical spinal cord, initial encounter +C2834049|T037|AB|S14.155D|ICD10CM|Oth incomplete lesion at C5, subs|Oth incomplete lesion at C5, subs +C2834049|T037|PT|S14.155D|ICD10CM|Other incomplete lesion at C5 level of cervical spinal cord, subsequent encounter|Other incomplete lesion at C5 level of cervical spinal cord, subsequent encounter +C2834050|T037|AB|S14.155S|ICD10CM|Oth incomplete lesion at C5, sequela|Oth incomplete lesion at C5, sequela +C2834050|T037|PT|S14.155S|ICD10CM|Other incomplete lesion at C5 level of cervical spinal cord, sequela|Other incomplete lesion at C5 level of cervical spinal cord, sequela +C2834051|T037|AB|S14.156|ICD10CM|Other incomplete lesion at C6 level of cervical spinal cord|Other incomplete lesion at C6 level of cervical spinal cord +C2834051|T037|HT|S14.156|ICD10CM|Other incomplete lesion at C6 level of cervical spinal cord|Other incomplete lesion at C6 level of cervical spinal cord +C2834052|T037|AB|S14.156A|ICD10CM|Oth incomplete lesion at C6, init|Oth incomplete lesion at C6, init +C2834052|T037|PT|S14.156A|ICD10CM|Other incomplete lesion at C6 level of cervical spinal cord, initial encounter|Other incomplete lesion at C6 level of cervical spinal cord, initial encounter +C2834053|T037|AB|S14.156D|ICD10CM|Oth incomplete lesion at C6, subs|Oth incomplete lesion at C6, subs +C2834053|T037|PT|S14.156D|ICD10CM|Other incomplete lesion at C6 level of cervical spinal cord, subsequent encounter|Other incomplete lesion at C6 level of cervical spinal cord, subsequent encounter +C2834054|T037|AB|S14.156S|ICD10CM|Oth incomplete lesion at C6, sequela|Oth incomplete lesion at C6, sequela +C2834054|T037|PT|S14.156S|ICD10CM|Other incomplete lesion at C6 level of cervical spinal cord, sequela|Other incomplete lesion at C6 level of cervical spinal cord, sequela +C2834055|T037|AB|S14.157|ICD10CM|Other incomplete lesion at C7 level of cervical spinal cord|Other incomplete lesion at C7 level of cervical spinal cord +C2834055|T037|HT|S14.157|ICD10CM|Other incomplete lesion at C7 level of cervical spinal cord|Other incomplete lesion at C7 level of cervical spinal cord +C2834056|T037|AB|S14.157A|ICD10CM|Oth incomplete lesion at C7, init|Oth incomplete lesion at C7, init +C2834056|T037|PT|S14.157A|ICD10CM|Other incomplete lesion at C7 level of cervical spinal cord, initial encounter|Other incomplete lesion at C7 level of cervical spinal cord, initial encounter +C2834057|T037|AB|S14.157D|ICD10CM|Oth incomplete lesion at C7, subs|Oth incomplete lesion at C7, subs +C2834057|T037|PT|S14.157D|ICD10CM|Other incomplete lesion at C7 level of cervical spinal cord, subsequent encounter|Other incomplete lesion at C7 level of cervical spinal cord, subsequent encounter +C2834058|T037|AB|S14.157S|ICD10CM|Oth incomplete lesion at C7, sequela|Oth incomplete lesion at C7, sequela +C2834058|T037|PT|S14.157S|ICD10CM|Other incomplete lesion at C7 level of cervical spinal cord, sequela|Other incomplete lesion at C7 level of cervical spinal cord, sequela +C2834059|T037|AB|S14.158|ICD10CM|Other incomplete lesion at C8 level of cervical spinal cord|Other incomplete lesion at C8 level of cervical spinal cord +C2834059|T037|HT|S14.158|ICD10CM|Other incomplete lesion at C8 level of cervical spinal cord|Other incomplete lesion at C8 level of cervical spinal cord +C2834060|T037|AB|S14.158A|ICD10CM|Oth incomplete lesion at C8, init|Oth incomplete lesion at C8, init +C2834060|T037|PT|S14.158A|ICD10CM|Other incomplete lesion at C8 level of cervical spinal cord, initial encounter|Other incomplete lesion at C8 level of cervical spinal cord, initial encounter +C2834061|T037|AB|S14.158D|ICD10CM|Oth incomplete lesion at C8, subs|Oth incomplete lesion at C8, subs +C2834061|T037|PT|S14.158D|ICD10CM|Other incomplete lesion at C8 level of cervical spinal cord, subsequent encounter|Other incomplete lesion at C8 level of cervical spinal cord, subsequent encounter +C2834062|T037|AB|S14.158S|ICD10CM|Oth incomplete lesion at C8, sequela|Oth incomplete lesion at C8, sequela +C2834062|T037|PT|S14.158S|ICD10CM|Other incomplete lesion at C8 level of cervical spinal cord, sequela|Other incomplete lesion at C8 level of cervical spinal cord, sequela +C2834063|T037|AB|S14.159|ICD10CM|Oth incomplete lesion at unsp level of cervical spinal cord|Oth incomplete lesion at unsp level of cervical spinal cord +C2834063|T037|HT|S14.159|ICD10CM|Other incomplete lesion at unspecified level of cervical spinal cord|Other incomplete lesion at unspecified level of cervical spinal cord +C2834064|T037|AB|S14.159A|ICD10CM|Oth incmpl lesion at unsp level of cerv spinal cord, init|Oth incmpl lesion at unsp level of cerv spinal cord, init +C2834064|T037|PT|S14.159A|ICD10CM|Other incomplete lesion at unspecified level of cervical spinal cord, initial encounter|Other incomplete lesion at unspecified level of cervical spinal cord, initial encounter +C2834065|T037|AB|S14.159D|ICD10CM|Oth incmpl lesion at unsp level of cerv spinal cord, subs|Oth incmpl lesion at unsp level of cerv spinal cord, subs +C2834065|T037|PT|S14.159D|ICD10CM|Other incomplete lesion at unspecified level of cervical spinal cord, subsequent encounter|Other incomplete lesion at unspecified level of cervical spinal cord, subsequent encounter +C2834066|T037|AB|S14.159S|ICD10CM|Oth incmpl lesion at unsp level of cerv spinal cord, sequela|Oth incmpl lesion at unsp level of cerv spinal cord, sequela +C2834066|T037|PT|S14.159S|ICD10CM|Other incomplete lesion at unspecified level of cervical spinal cord, sequela|Other incomplete lesion at unspecified level of cervical spinal cord, sequela +C0161442|T037|HT|S14.2|ICD10CM|Injury of nerve root of cervical spine|Injury of nerve root of cervical spine +C0161442|T037|AB|S14.2|ICD10CM|Injury of nerve root of cervical spine|Injury of nerve root of cervical spine +C0161442|T037|PT|S14.2|ICD10|Injury of nerve root of cervical spine|Injury of nerve root of cervical spine +C2834067|T037|AB|S14.2XXA|ICD10CM|Injury of nerve root of cervical spine, initial encounter|Injury of nerve root of cervical spine, initial encounter +C2834067|T037|PT|S14.2XXA|ICD10CM|Injury of nerve root of cervical spine, initial encounter|Injury of nerve root of cervical spine, initial encounter +C2834068|T037|AB|S14.2XXD|ICD10CM|Injury of nerve root of cervical spine, subsequent encounter|Injury of nerve root of cervical spine, subsequent encounter +C2834068|T037|PT|S14.2XXD|ICD10CM|Injury of nerve root of cervical spine, subsequent encounter|Injury of nerve root of cervical spine, subsequent encounter +C2834069|T037|AB|S14.2XXS|ICD10CM|Injury of nerve root of cervical spine, sequela|Injury of nerve root of cervical spine, sequela +C2834069|T037|PT|S14.2XXS|ICD10CM|Injury of nerve root of cervical spine, sequela|Injury of nerve root of cervical spine, sequela +C0161446|T037|PT|S14.3|ICD10|Injury of brachial plexus|Injury of brachial plexus +C0161446|T037|HT|S14.3|ICD10CM|Injury of brachial plexus|Injury of brachial plexus +C0161446|T037|AB|S14.3|ICD10CM|Injury of brachial plexus|Injury of brachial plexus +C2834070|T037|AB|S14.3XXA|ICD10CM|Injury of brachial plexus, initial encounter|Injury of brachial plexus, initial encounter +C2834070|T037|PT|S14.3XXA|ICD10CM|Injury of brachial plexus, initial encounter|Injury of brachial plexus, initial encounter +C2834071|T037|AB|S14.3XXD|ICD10CM|Injury of brachial plexus, subsequent encounter|Injury of brachial plexus, subsequent encounter +C2834071|T037|PT|S14.3XXD|ICD10CM|Injury of brachial plexus, subsequent encounter|Injury of brachial plexus, subsequent encounter +C2834072|T037|AB|S14.3XXS|ICD10CM|Injury of brachial plexus, sequela|Injury of brachial plexus, sequela +C2834072|T037|PT|S14.3XXS|ICD10CM|Injury of brachial plexus, sequela|Injury of brachial plexus, sequela +C0451662|T037|HT|S14.4|ICD10CM|Injury of peripheral nerves of neck|Injury of peripheral nerves of neck +C0451662|T037|AB|S14.4|ICD10CM|Injury of peripheral nerves of neck|Injury of peripheral nerves of neck +C0451662|T037|PT|S14.4|ICD10|Injury of peripheral nerves of neck|Injury of peripheral nerves of neck +C2834073|T037|AB|S14.4XXA|ICD10CM|Injury of peripheral nerves of neck, initial encounter|Injury of peripheral nerves of neck, initial encounter +C2834073|T037|PT|S14.4XXA|ICD10CM|Injury of peripheral nerves of neck, initial encounter|Injury of peripheral nerves of neck, initial encounter +C2834074|T037|AB|S14.4XXD|ICD10CM|Injury of peripheral nerves of neck, subsequent encounter|Injury of peripheral nerves of neck, subsequent encounter +C2834074|T037|PT|S14.4XXD|ICD10CM|Injury of peripheral nerves of neck, subsequent encounter|Injury of peripheral nerves of neck, subsequent encounter +C2834075|T037|AB|S14.4XXS|ICD10CM|Injury of peripheral nerves of neck, sequela|Injury of peripheral nerves of neck, sequela +C2834075|T037|PT|S14.4XXS|ICD10CM|Injury of peripheral nerves of neck, sequela|Injury of peripheral nerves of neck, sequela +C0273524|T037|HT|S14.5|ICD10CM|Injury of cervical sympathetic nerves|Injury of cervical sympathetic nerves +C0273524|T037|AB|S14.5|ICD10CM|Injury of cervical sympathetic nerves|Injury of cervical sympathetic nerves +C0273524|T037|PT|S14.5|ICD10|Injury of cervical sympathetic nerves|Injury of cervical sympathetic nerves +C2834076|T037|AB|S14.5XXA|ICD10CM|Injury of cervical sympathetic nerves, initial encounter|Injury of cervical sympathetic nerves, initial encounter +C2834076|T037|PT|S14.5XXA|ICD10CM|Injury of cervical sympathetic nerves, initial encounter|Injury of cervical sympathetic nerves, initial encounter +C2834077|T037|AB|S14.5XXD|ICD10CM|Injury of cervical sympathetic nerves, subsequent encounter|Injury of cervical sympathetic nerves, subsequent encounter +C2834077|T037|PT|S14.5XXD|ICD10CM|Injury of cervical sympathetic nerves, subsequent encounter|Injury of cervical sympathetic nerves, subsequent encounter +C2834078|T037|AB|S14.5XXS|ICD10CM|Injury of cervical sympathetic nerves, sequela|Injury of cervical sympathetic nerves, sequela +C2834078|T037|PT|S14.5XXS|ICD10CM|Injury of cervical sympathetic nerves, sequela|Injury of cervical sympathetic nerves, sequela +C0478225|T037|PT|S14.6|ICD10|Injury of other and unspecified nerves of neck|Injury of other and unspecified nerves of neck +C2834079|T037|AB|S14.8|ICD10CM|Injury of other specified nerves of neck|Injury of other specified nerves of neck +C2834079|T037|HT|S14.8|ICD10CM|Injury of other specified nerves of neck|Injury of other specified nerves of neck +C2977789|T037|AB|S14.8XXA|ICD10CM|Injury of other specified nerves of neck, initial encounter|Injury of other specified nerves of neck, initial encounter +C2977789|T037|PT|S14.8XXA|ICD10CM|Injury of other specified nerves of neck, initial encounter|Injury of other specified nerves of neck, initial encounter +C2977790|T037|AB|S14.8XXD|ICD10CM|Injury of other specified nerves of neck, subs encntr|Injury of other specified nerves of neck, subs encntr +C2977790|T037|PT|S14.8XXD|ICD10CM|Injury of other specified nerves of neck, subsequent encounter|Injury of other specified nerves of neck, subsequent encounter +C2977791|T037|AB|S14.8XXS|ICD10CM|Injury of other specified nerves of neck, sequela|Injury of other specified nerves of neck, sequela +C2977791|T037|PT|S14.8XXS|ICD10CM|Injury of other specified nerves of neck, sequela|Injury of other specified nerves of neck, sequela +C2834083|T037|AB|S14.9|ICD10CM|Injury of unspecified nerves of neck|Injury of unspecified nerves of neck +C2834083|T037|HT|S14.9|ICD10CM|Injury of unspecified nerves of neck|Injury of unspecified nerves of neck +C2834084|T037|AB|S14.9XXA|ICD10CM|Injury of unspecified nerves of neck, initial encounter|Injury of unspecified nerves of neck, initial encounter +C2834084|T037|PT|S14.9XXA|ICD10CM|Injury of unspecified nerves of neck, initial encounter|Injury of unspecified nerves of neck, initial encounter +C2834085|T037|AB|S14.9XXD|ICD10CM|Injury of unspecified nerves of neck, subsequent encounter|Injury of unspecified nerves of neck, subsequent encounter +C2834085|T037|PT|S14.9XXD|ICD10CM|Injury of unspecified nerves of neck, subsequent encounter|Injury of unspecified nerves of neck, subsequent encounter +C2834086|T037|AB|S14.9XXS|ICD10CM|Injury of unspecified nerves of neck, sequela|Injury of unspecified nerves of neck, sequela +C2834086|T037|PT|S14.9XXS|ICD10CM|Injury of unspecified nerves of neck, sequela|Injury of unspecified nerves of neck, sequela +C0347663|T037|HT|S15|ICD10|Injury of blood vessels at neck level|Injury of blood vessels at neck level +C0347663|T037|AB|S15|ICD10CM|Injury of blood vessels at neck level|Injury of blood vessels at neck level +C0347663|T037|HT|S15|ICD10CM|Injury of blood vessels at neck level|Injury of blood vessels at neck level +C0160680|T037|PT|S15.0|ICD10|Injury of carotid artery|Injury of carotid artery +C2834087|T037|ET|S15.0|ICD10CM|Injury of carotid artery (common) (external) (internal, extracranial portion)|Injury of carotid artery (common) (external) (internal, extracranial portion) +C0160680|T037|ET|S15.0|ICD10CM|Injury of carotid artery NOS|Injury of carotid artery NOS +C2834088|T037|AB|S15.0|ICD10CM|Injury of carotid artery of neck|Injury of carotid artery of neck +C2834088|T037|HT|S15.0|ICD10CM|Injury of carotid artery of neck|Injury of carotid artery of neck +C0160680|T037|AB|S15.00|ICD10CM|Unspecified injury of carotid artery|Unspecified injury of carotid artery +C0160680|T037|HT|S15.00|ICD10CM|Unspecified injury of carotid artery|Unspecified injury of carotid artery +C2834089|T037|AB|S15.001|ICD10CM|Unspecified injury of right carotid artery|Unspecified injury of right carotid artery +C2834089|T037|HT|S15.001|ICD10CM|Unspecified injury of right carotid artery|Unspecified injury of right carotid artery +C2834090|T037|AB|S15.001A|ICD10CM|Unspecified injury of right carotid artery, init encntr|Unspecified injury of right carotid artery, init encntr +C2834090|T037|PT|S15.001A|ICD10CM|Unspecified injury of right carotid artery, initial encounter|Unspecified injury of right carotid artery, initial encounter +C2834091|T037|AB|S15.001D|ICD10CM|Unspecified injury of right carotid artery, subs encntr|Unspecified injury of right carotid artery, subs encntr +C2834091|T037|PT|S15.001D|ICD10CM|Unspecified injury of right carotid artery, subsequent encounter|Unspecified injury of right carotid artery, subsequent encounter +C2834092|T037|AB|S15.001S|ICD10CM|Unspecified injury of right carotid artery, sequela|Unspecified injury of right carotid artery, sequela +C2834092|T037|PT|S15.001S|ICD10CM|Unspecified injury of right carotid artery, sequela|Unspecified injury of right carotid artery, sequela +C2834093|T037|AB|S15.002|ICD10CM|Unspecified injury of left carotid artery|Unspecified injury of left carotid artery +C2834093|T037|HT|S15.002|ICD10CM|Unspecified injury of left carotid artery|Unspecified injury of left carotid artery +C2834094|T037|AB|S15.002A|ICD10CM|Unspecified injury of left carotid artery, initial encounter|Unspecified injury of left carotid artery, initial encounter +C2834094|T037|PT|S15.002A|ICD10CM|Unspecified injury of left carotid artery, initial encounter|Unspecified injury of left carotid artery, initial encounter +C2834095|T037|AB|S15.002D|ICD10CM|Unspecified injury of left carotid artery, subs encntr|Unspecified injury of left carotid artery, subs encntr +C2834095|T037|PT|S15.002D|ICD10CM|Unspecified injury of left carotid artery, subsequent encounter|Unspecified injury of left carotid artery, subsequent encounter +C2834096|T037|AB|S15.002S|ICD10CM|Unspecified injury of left carotid artery, sequela|Unspecified injury of left carotid artery, sequela +C2834096|T037|PT|S15.002S|ICD10CM|Unspecified injury of left carotid artery, sequela|Unspecified injury of left carotid artery, sequela +C2834097|T037|AB|S15.009|ICD10CM|Unspecified injury of unspecified carotid artery|Unspecified injury of unspecified carotid artery +C2834097|T037|HT|S15.009|ICD10CM|Unspecified injury of unspecified carotid artery|Unspecified injury of unspecified carotid artery +C2834098|T037|AB|S15.009A|ICD10CM|Unsp injury of unspecified carotid artery, init encntr|Unsp injury of unspecified carotid artery, init encntr +C2834098|T037|PT|S15.009A|ICD10CM|Unspecified injury of unspecified carotid artery, initial encounter|Unspecified injury of unspecified carotid artery, initial encounter +C2834099|T037|AB|S15.009D|ICD10CM|Unsp injury of unspecified carotid artery, subs encntr|Unsp injury of unspecified carotid artery, subs encntr +C2834099|T037|PT|S15.009D|ICD10CM|Unspecified injury of unspecified carotid artery, subsequent encounter|Unspecified injury of unspecified carotid artery, subsequent encounter +C2834100|T037|AB|S15.009S|ICD10CM|Unspecified injury of unspecified carotid artery, sequela|Unspecified injury of unspecified carotid artery, sequela +C2834100|T037|PT|S15.009S|ICD10CM|Unspecified injury of unspecified carotid artery, sequela|Unspecified injury of unspecified carotid artery, sequela +C2834101|T037|ET|S15.01|ICD10CM|Incomplete transection of carotid artery|Incomplete transection of carotid artery +C2834102|T037|ET|S15.01|ICD10CM|Laceration of carotid artery NOS|Laceration of carotid artery NOS +C2834104|T037|HT|S15.01|ICD10CM|Minor laceration of carotid artery|Minor laceration of carotid artery +C2834104|T037|AB|S15.01|ICD10CM|Minor laceration of carotid artery|Minor laceration of carotid artery +C2834103|T037|ET|S15.01|ICD10CM|Superficial laceration of carotid artery|Superficial laceration of carotid artery +C2834105|T037|AB|S15.011|ICD10CM|Minor laceration of right carotid artery|Minor laceration of right carotid artery +C2834105|T037|HT|S15.011|ICD10CM|Minor laceration of right carotid artery|Minor laceration of right carotid artery +C2834106|T037|PT|S15.011A|ICD10CM|Minor laceration of right carotid artery, initial encounter|Minor laceration of right carotid artery, initial encounter +C2834106|T037|AB|S15.011A|ICD10CM|Minor laceration of right carotid artery, initial encounter|Minor laceration of right carotid artery, initial encounter +C2834107|T037|AB|S15.011D|ICD10CM|Minor laceration of right carotid artery, subs encntr|Minor laceration of right carotid artery, subs encntr +C2834107|T037|PT|S15.011D|ICD10CM|Minor laceration of right carotid artery, subsequent encounter|Minor laceration of right carotid artery, subsequent encounter +C2834108|T037|PT|S15.011S|ICD10CM|Minor laceration of right carotid artery, sequela|Minor laceration of right carotid artery, sequela +C2834108|T037|AB|S15.011S|ICD10CM|Minor laceration of right carotid artery, sequela|Minor laceration of right carotid artery, sequela +C2834109|T037|AB|S15.012|ICD10CM|Minor laceration of left carotid artery|Minor laceration of left carotid artery +C2834109|T037|HT|S15.012|ICD10CM|Minor laceration of left carotid artery|Minor laceration of left carotid artery +C2834110|T037|PT|S15.012A|ICD10CM|Minor laceration of left carotid artery, initial encounter|Minor laceration of left carotid artery, initial encounter +C2834110|T037|AB|S15.012A|ICD10CM|Minor laceration of left carotid artery, initial encounter|Minor laceration of left carotid artery, initial encounter +C2834111|T037|AB|S15.012D|ICD10CM|Minor laceration of left carotid artery, subs encntr|Minor laceration of left carotid artery, subs encntr +C2834111|T037|PT|S15.012D|ICD10CM|Minor laceration of left carotid artery, subsequent encounter|Minor laceration of left carotid artery, subsequent encounter +C2834112|T037|PT|S15.012S|ICD10CM|Minor laceration of left carotid artery, sequela|Minor laceration of left carotid artery, sequela +C2834112|T037|AB|S15.012S|ICD10CM|Minor laceration of left carotid artery, sequela|Minor laceration of left carotid artery, sequela +C2834113|T037|AB|S15.019|ICD10CM|Minor laceration of unspecified carotid artery|Minor laceration of unspecified carotid artery +C2834113|T037|HT|S15.019|ICD10CM|Minor laceration of unspecified carotid artery|Minor laceration of unspecified carotid artery +C2834114|T037|AB|S15.019A|ICD10CM|Minor laceration of unspecified carotid artery, init encntr|Minor laceration of unspecified carotid artery, init encntr +C2834114|T037|PT|S15.019A|ICD10CM|Minor laceration of unspecified carotid artery, initial encounter|Minor laceration of unspecified carotid artery, initial encounter +C2834115|T037|AB|S15.019D|ICD10CM|Minor laceration of unspecified carotid artery, subs encntr|Minor laceration of unspecified carotid artery, subs encntr +C2834115|T037|PT|S15.019D|ICD10CM|Minor laceration of unspecified carotid artery, subsequent encounter|Minor laceration of unspecified carotid artery, subsequent encounter +C2834116|T037|PT|S15.019S|ICD10CM|Minor laceration of unspecified carotid artery, sequela|Minor laceration of unspecified carotid artery, sequela +C2834116|T037|AB|S15.019S|ICD10CM|Minor laceration of unspecified carotid artery, sequela|Minor laceration of unspecified carotid artery, sequela +C2834117|T037|ET|S15.02|ICD10CM|Complete transection of carotid artery|Complete transection of carotid artery +C2834119|T037|HT|S15.02|ICD10CM|Major laceration of carotid artery|Major laceration of carotid artery +C2834119|T037|AB|S15.02|ICD10CM|Major laceration of carotid artery|Major laceration of carotid artery +C2834118|T037|ET|S15.02|ICD10CM|Traumatic rupture of carotid artery|Traumatic rupture of carotid artery +C2834120|T037|AB|S15.021|ICD10CM|Major laceration of right carotid artery|Major laceration of right carotid artery +C2834120|T037|HT|S15.021|ICD10CM|Major laceration of right carotid artery|Major laceration of right carotid artery +C2834121|T037|PT|S15.021A|ICD10CM|Major laceration of right carotid artery, initial encounter|Major laceration of right carotid artery, initial encounter +C2834121|T037|AB|S15.021A|ICD10CM|Major laceration of right carotid artery, initial encounter|Major laceration of right carotid artery, initial encounter +C2834122|T037|AB|S15.021D|ICD10CM|Major laceration of right carotid artery, subs encntr|Major laceration of right carotid artery, subs encntr +C2834122|T037|PT|S15.021D|ICD10CM|Major laceration of right carotid artery, subsequent encounter|Major laceration of right carotid artery, subsequent encounter +C2834123|T037|PT|S15.021S|ICD10CM|Major laceration of right carotid artery, sequela|Major laceration of right carotid artery, sequela +C2834123|T037|AB|S15.021S|ICD10CM|Major laceration of right carotid artery, sequela|Major laceration of right carotid artery, sequela +C2834124|T037|AB|S15.022|ICD10CM|Major laceration of left carotid artery|Major laceration of left carotid artery +C2834124|T037|HT|S15.022|ICD10CM|Major laceration of left carotid artery|Major laceration of left carotid artery +C2834125|T037|PT|S15.022A|ICD10CM|Major laceration of left carotid artery, initial encounter|Major laceration of left carotid artery, initial encounter +C2834125|T037|AB|S15.022A|ICD10CM|Major laceration of left carotid artery, initial encounter|Major laceration of left carotid artery, initial encounter +C2834126|T037|AB|S15.022D|ICD10CM|Major laceration of left carotid artery, subs encntr|Major laceration of left carotid artery, subs encntr +C2834126|T037|PT|S15.022D|ICD10CM|Major laceration of left carotid artery, subsequent encounter|Major laceration of left carotid artery, subsequent encounter +C2834127|T037|PT|S15.022S|ICD10CM|Major laceration of left carotid artery, sequela|Major laceration of left carotid artery, sequela +C2834127|T037|AB|S15.022S|ICD10CM|Major laceration of left carotid artery, sequela|Major laceration of left carotid artery, sequela +C2834128|T037|AB|S15.029|ICD10CM|Major laceration of unspecified carotid artery|Major laceration of unspecified carotid artery +C2834128|T037|HT|S15.029|ICD10CM|Major laceration of unspecified carotid artery|Major laceration of unspecified carotid artery +C2834129|T037|AB|S15.029A|ICD10CM|Major laceration of unspecified carotid artery, init encntr|Major laceration of unspecified carotid artery, init encntr +C2834129|T037|PT|S15.029A|ICD10CM|Major laceration of unspecified carotid artery, initial encounter|Major laceration of unspecified carotid artery, initial encounter +C2834130|T037|AB|S15.029D|ICD10CM|Major laceration of unspecified carotid artery, subs encntr|Major laceration of unspecified carotid artery, subs encntr +C2834130|T037|PT|S15.029D|ICD10CM|Major laceration of unspecified carotid artery, subsequent encounter|Major laceration of unspecified carotid artery, subsequent encounter +C2834131|T037|PT|S15.029S|ICD10CM|Major laceration of unspecified carotid artery, sequela|Major laceration of unspecified carotid artery, sequela +C2834131|T037|AB|S15.029S|ICD10CM|Major laceration of unspecified carotid artery, sequela|Major laceration of unspecified carotid artery, sequela +C2834132|T037|AB|S15.09|ICD10CM|Other specified injury of carotid artery|Other specified injury of carotid artery +C2834132|T037|HT|S15.09|ICD10CM|Other specified injury of carotid artery|Other specified injury of carotid artery +C2834133|T037|AB|S15.091|ICD10CM|Other specified injury of right carotid artery|Other specified injury of right carotid artery +C2834133|T037|HT|S15.091|ICD10CM|Other specified injury of right carotid artery|Other specified injury of right carotid artery +C2834134|T037|AB|S15.091A|ICD10CM|Other specified injury of right carotid artery, init encntr|Other specified injury of right carotid artery, init encntr +C2834134|T037|PT|S15.091A|ICD10CM|Other specified injury of right carotid artery, initial encounter|Other specified injury of right carotid artery, initial encounter +C2834135|T037|AB|S15.091D|ICD10CM|Other specified injury of right carotid artery, subs encntr|Other specified injury of right carotid artery, subs encntr +C2834135|T037|PT|S15.091D|ICD10CM|Other specified injury of right carotid artery, subsequent encounter|Other specified injury of right carotid artery, subsequent encounter +C2834136|T037|AB|S15.091S|ICD10CM|Other specified injury of right carotid artery, sequela|Other specified injury of right carotid artery, sequela +C2834136|T037|PT|S15.091S|ICD10CM|Other specified injury of right carotid artery, sequela|Other specified injury of right carotid artery, sequela +C2834137|T037|AB|S15.092|ICD10CM|Other specified injury of left carotid artery|Other specified injury of left carotid artery +C2834137|T037|HT|S15.092|ICD10CM|Other specified injury of left carotid artery|Other specified injury of left carotid artery +C2834138|T037|AB|S15.092A|ICD10CM|Other specified injury of left carotid artery, init encntr|Other specified injury of left carotid artery, init encntr +C2834138|T037|PT|S15.092A|ICD10CM|Other specified injury of left carotid artery, initial encounter|Other specified injury of left carotid artery, initial encounter +C2834139|T037|AB|S15.092D|ICD10CM|Other specified injury of left carotid artery, subs encntr|Other specified injury of left carotid artery, subs encntr +C2834139|T037|PT|S15.092D|ICD10CM|Other specified injury of left carotid artery, subsequent encounter|Other specified injury of left carotid artery, subsequent encounter +C2834140|T037|AB|S15.092S|ICD10CM|Other specified injury of left carotid artery, sequela|Other specified injury of left carotid artery, sequela +C2834140|T037|PT|S15.092S|ICD10CM|Other specified injury of left carotid artery, sequela|Other specified injury of left carotid artery, sequela +C2834141|T037|AB|S15.099|ICD10CM|Other specified injury of unspecified carotid artery|Other specified injury of unspecified carotid artery +C2834141|T037|HT|S15.099|ICD10CM|Other specified injury of unspecified carotid artery|Other specified injury of unspecified carotid artery +C2834142|T037|AB|S15.099A|ICD10CM|Oth injury of unspecified carotid artery, init encntr|Oth injury of unspecified carotid artery, init encntr +C2834142|T037|PT|S15.099A|ICD10CM|Other specified injury of unspecified carotid artery, initial encounter|Other specified injury of unspecified carotid artery, initial encounter +C2834143|T037|AB|S15.099D|ICD10CM|Oth injury of unspecified carotid artery, subs encntr|Oth injury of unspecified carotid artery, subs encntr +C2834143|T037|PT|S15.099D|ICD10CM|Other specified injury of unspecified carotid artery, subsequent encounter|Other specified injury of unspecified carotid artery, subsequent encounter +C2834144|T037|AB|S15.099S|ICD10CM|Oth injury of unspecified carotid artery, sequela|Oth injury of unspecified carotid artery, sequela +C2834144|T037|PT|S15.099S|ICD10CM|Other specified injury of unspecified carotid artery, sequela|Other specified injury of unspecified carotid artery, sequela +C0433912|T037|PT|S15.1|ICD10|Injury of vertebral artery|Injury of vertebral artery +C0433912|T037|HT|S15.1|ICD10CM|Injury of vertebral artery|Injury of vertebral artery +C0433912|T037|AB|S15.1|ICD10CM|Injury of vertebral artery|Injury of vertebral artery +C2834145|T037|AB|S15.10|ICD10CM|Unspecified injury of vertebral artery|Unspecified injury of vertebral artery +C2834145|T037|HT|S15.10|ICD10CM|Unspecified injury of vertebral artery|Unspecified injury of vertebral artery +C2834146|T037|AB|S15.101|ICD10CM|Unspecified injury of right vertebral artery|Unspecified injury of right vertebral artery +C2834146|T037|HT|S15.101|ICD10CM|Unspecified injury of right vertebral artery|Unspecified injury of right vertebral artery +C2834147|T037|AB|S15.101A|ICD10CM|Unspecified injury of right vertebral artery, init encntr|Unspecified injury of right vertebral artery, init encntr +C2834147|T037|PT|S15.101A|ICD10CM|Unspecified injury of right vertebral artery, initial encounter|Unspecified injury of right vertebral artery, initial encounter +C2834148|T037|AB|S15.101D|ICD10CM|Unspecified injury of right vertebral artery, subs encntr|Unspecified injury of right vertebral artery, subs encntr +C2834148|T037|PT|S15.101D|ICD10CM|Unspecified injury of right vertebral artery, subsequent encounter|Unspecified injury of right vertebral artery, subsequent encounter +C2834149|T037|AB|S15.101S|ICD10CM|Unspecified injury of right vertebral artery, sequela|Unspecified injury of right vertebral artery, sequela +C2834149|T037|PT|S15.101S|ICD10CM|Unspecified injury of right vertebral artery, sequela|Unspecified injury of right vertebral artery, sequela +C2834150|T037|AB|S15.102|ICD10CM|Unspecified injury of left vertebral artery|Unspecified injury of left vertebral artery +C2834150|T037|HT|S15.102|ICD10CM|Unspecified injury of left vertebral artery|Unspecified injury of left vertebral artery +C2834151|T037|AB|S15.102A|ICD10CM|Unspecified injury of left vertebral artery, init encntr|Unspecified injury of left vertebral artery, init encntr +C2834151|T037|PT|S15.102A|ICD10CM|Unspecified injury of left vertebral artery, initial encounter|Unspecified injury of left vertebral artery, initial encounter +C2834152|T037|AB|S15.102D|ICD10CM|Unspecified injury of left vertebral artery, subs encntr|Unspecified injury of left vertebral artery, subs encntr +C2834152|T037|PT|S15.102D|ICD10CM|Unspecified injury of left vertebral artery, subsequent encounter|Unspecified injury of left vertebral artery, subsequent encounter +C2834153|T037|AB|S15.102S|ICD10CM|Unspecified injury of left vertebral artery, sequela|Unspecified injury of left vertebral artery, sequela +C2834153|T037|PT|S15.102S|ICD10CM|Unspecified injury of left vertebral artery, sequela|Unspecified injury of left vertebral artery, sequela +C2834154|T037|AB|S15.109|ICD10CM|Unspecified injury of unspecified vertebral artery|Unspecified injury of unspecified vertebral artery +C2834154|T037|HT|S15.109|ICD10CM|Unspecified injury of unspecified vertebral artery|Unspecified injury of unspecified vertebral artery +C2834155|T037|AB|S15.109A|ICD10CM|Unsp injury of unspecified vertebral artery, init encntr|Unsp injury of unspecified vertebral artery, init encntr +C2834155|T037|PT|S15.109A|ICD10CM|Unspecified injury of unspecified vertebral artery, initial encounter|Unspecified injury of unspecified vertebral artery, initial encounter +C2834156|T037|AB|S15.109D|ICD10CM|Unsp injury of unspecified vertebral artery, subs encntr|Unsp injury of unspecified vertebral artery, subs encntr +C2834156|T037|PT|S15.109D|ICD10CM|Unspecified injury of unspecified vertebral artery, subsequent encounter|Unspecified injury of unspecified vertebral artery, subsequent encounter +C2834157|T037|AB|S15.109S|ICD10CM|Unspecified injury of unspecified vertebral artery, sequela|Unspecified injury of unspecified vertebral artery, sequela +C2834157|T037|PT|S15.109S|ICD10CM|Unspecified injury of unspecified vertebral artery, sequela|Unspecified injury of unspecified vertebral artery, sequela +C2834158|T037|ET|S15.11|ICD10CM|Incomplete transection of vertebral artery|Incomplete transection of vertebral artery +C2834159|T037|ET|S15.11|ICD10CM|Laceration of vertebral artery NOS|Laceration of vertebral artery NOS +C2834161|T037|HT|S15.11|ICD10CM|Minor laceration of vertebral artery|Minor laceration of vertebral artery +C2834161|T037|AB|S15.11|ICD10CM|Minor laceration of vertebral artery|Minor laceration of vertebral artery +C2834160|T037|ET|S15.11|ICD10CM|Superficial laceration of vertebral artery|Superficial laceration of vertebral artery +C2834162|T037|AB|S15.111|ICD10CM|Minor laceration of right vertebral artery|Minor laceration of right vertebral artery +C2834162|T037|HT|S15.111|ICD10CM|Minor laceration of right vertebral artery|Minor laceration of right vertebral artery +C2834163|T037|AB|S15.111A|ICD10CM|Minor laceration of right vertebral artery, init encntr|Minor laceration of right vertebral artery, init encntr +C2834163|T037|PT|S15.111A|ICD10CM|Minor laceration of right vertebral artery, initial encounter|Minor laceration of right vertebral artery, initial encounter +C2834164|T037|AB|S15.111D|ICD10CM|Minor laceration of right vertebral artery, subs encntr|Minor laceration of right vertebral artery, subs encntr +C2834164|T037|PT|S15.111D|ICD10CM|Minor laceration of right vertebral artery, subsequent encounter|Minor laceration of right vertebral artery, subsequent encounter +C2834165|T037|PT|S15.111S|ICD10CM|Minor laceration of right vertebral artery, sequela|Minor laceration of right vertebral artery, sequela +C2834165|T037|AB|S15.111S|ICD10CM|Minor laceration of right vertebral artery, sequela|Minor laceration of right vertebral artery, sequela +C2834166|T037|AB|S15.112|ICD10CM|Minor laceration of left vertebral artery|Minor laceration of left vertebral artery +C2834166|T037|HT|S15.112|ICD10CM|Minor laceration of left vertebral artery|Minor laceration of left vertebral artery +C2834167|T037|AB|S15.112A|ICD10CM|Minor laceration of left vertebral artery, initial encounter|Minor laceration of left vertebral artery, initial encounter +C2834167|T037|PT|S15.112A|ICD10CM|Minor laceration of left vertebral artery, initial encounter|Minor laceration of left vertebral artery, initial encounter +C2834168|T037|AB|S15.112D|ICD10CM|Minor laceration of left vertebral artery, subs encntr|Minor laceration of left vertebral artery, subs encntr +C2834168|T037|PT|S15.112D|ICD10CM|Minor laceration of left vertebral artery, subsequent encounter|Minor laceration of left vertebral artery, subsequent encounter +C2834169|T037|PT|S15.112S|ICD10CM|Minor laceration of left vertebral artery, sequela|Minor laceration of left vertebral artery, sequela +C2834169|T037|AB|S15.112S|ICD10CM|Minor laceration of left vertebral artery, sequela|Minor laceration of left vertebral artery, sequela +C2834170|T037|AB|S15.119|ICD10CM|Minor laceration of unspecified vertebral artery|Minor laceration of unspecified vertebral artery +C2834170|T037|HT|S15.119|ICD10CM|Minor laceration of unspecified vertebral artery|Minor laceration of unspecified vertebral artery +C2834171|T037|AB|S15.119A|ICD10CM|Minor laceration of unsp vertebral artery, init encntr|Minor laceration of unsp vertebral artery, init encntr +C2834171|T037|PT|S15.119A|ICD10CM|Minor laceration of unspecified vertebral artery, initial encounter|Minor laceration of unspecified vertebral artery, initial encounter +C2834172|T037|AB|S15.119D|ICD10CM|Minor laceration of unsp vertebral artery, subs encntr|Minor laceration of unsp vertebral artery, subs encntr +C2834172|T037|PT|S15.119D|ICD10CM|Minor laceration of unspecified vertebral artery, subsequent encounter|Minor laceration of unspecified vertebral artery, subsequent encounter +C2834173|T037|PT|S15.119S|ICD10CM|Minor laceration of unspecified vertebral artery, sequela|Minor laceration of unspecified vertebral artery, sequela +C2834173|T037|AB|S15.119S|ICD10CM|Minor laceration of unspecified vertebral artery, sequela|Minor laceration of unspecified vertebral artery, sequela +C2834174|T037|ET|S15.12|ICD10CM|Complete transection of vertebral artery|Complete transection of vertebral artery +C2834176|T037|HT|S15.12|ICD10CM|Major laceration of vertebral artery|Major laceration of vertebral artery +C2834176|T037|AB|S15.12|ICD10CM|Major laceration of vertebral artery|Major laceration of vertebral artery +C2834175|T037|ET|S15.12|ICD10CM|Traumatic rupture of vertebral artery|Traumatic rupture of vertebral artery +C2834177|T037|AB|S15.121|ICD10CM|Major laceration of right vertebral artery|Major laceration of right vertebral artery +C2834177|T037|HT|S15.121|ICD10CM|Major laceration of right vertebral artery|Major laceration of right vertebral artery +C2834178|T037|AB|S15.121A|ICD10CM|Major laceration of right vertebral artery, init encntr|Major laceration of right vertebral artery, init encntr +C2834178|T037|PT|S15.121A|ICD10CM|Major laceration of right vertebral artery, initial encounter|Major laceration of right vertebral artery, initial encounter +C2834179|T037|AB|S15.121D|ICD10CM|Major laceration of right vertebral artery, subs encntr|Major laceration of right vertebral artery, subs encntr +C2834179|T037|PT|S15.121D|ICD10CM|Major laceration of right vertebral artery, subsequent encounter|Major laceration of right vertebral artery, subsequent encounter +C2834180|T037|PT|S15.121S|ICD10CM|Major laceration of right vertebral artery, sequela|Major laceration of right vertebral artery, sequela +C2834180|T037|AB|S15.121S|ICD10CM|Major laceration of right vertebral artery, sequela|Major laceration of right vertebral artery, sequela +C2834181|T037|AB|S15.122|ICD10CM|Major laceration of left vertebral artery|Major laceration of left vertebral artery +C2834181|T037|HT|S15.122|ICD10CM|Major laceration of left vertebral artery|Major laceration of left vertebral artery +C2834182|T037|AB|S15.122A|ICD10CM|Major laceration of left vertebral artery, initial encounter|Major laceration of left vertebral artery, initial encounter +C2834182|T037|PT|S15.122A|ICD10CM|Major laceration of left vertebral artery, initial encounter|Major laceration of left vertebral artery, initial encounter +C2834183|T037|AB|S15.122D|ICD10CM|Major laceration of left vertebral artery, subs encntr|Major laceration of left vertebral artery, subs encntr +C2834183|T037|PT|S15.122D|ICD10CM|Major laceration of left vertebral artery, subsequent encounter|Major laceration of left vertebral artery, subsequent encounter +C2834184|T037|PT|S15.122S|ICD10CM|Major laceration of left vertebral artery, sequela|Major laceration of left vertebral artery, sequela +C2834184|T037|AB|S15.122S|ICD10CM|Major laceration of left vertebral artery, sequela|Major laceration of left vertebral artery, sequela +C2834185|T037|AB|S15.129|ICD10CM|Major laceration of unspecified vertebral artery|Major laceration of unspecified vertebral artery +C2834185|T037|HT|S15.129|ICD10CM|Major laceration of unspecified vertebral artery|Major laceration of unspecified vertebral artery +C2834186|T037|AB|S15.129A|ICD10CM|Major laceration of unsp vertebral artery, init encntr|Major laceration of unsp vertebral artery, init encntr +C2834186|T037|PT|S15.129A|ICD10CM|Major laceration of unspecified vertebral artery, initial encounter|Major laceration of unspecified vertebral artery, initial encounter +C2834187|T037|AB|S15.129D|ICD10CM|Major laceration of unsp vertebral artery, subs encntr|Major laceration of unsp vertebral artery, subs encntr +C2834187|T037|PT|S15.129D|ICD10CM|Major laceration of unspecified vertebral artery, subsequent encounter|Major laceration of unspecified vertebral artery, subsequent encounter +C2834188|T037|PT|S15.129S|ICD10CM|Major laceration of unspecified vertebral artery, sequela|Major laceration of unspecified vertebral artery, sequela +C2834188|T037|AB|S15.129S|ICD10CM|Major laceration of unspecified vertebral artery, sequela|Major laceration of unspecified vertebral artery, sequela +C2834189|T037|AB|S15.19|ICD10CM|Other specified injury of vertebral artery|Other specified injury of vertebral artery +C2834189|T037|HT|S15.19|ICD10CM|Other specified injury of vertebral artery|Other specified injury of vertebral artery +C2834190|T037|AB|S15.191|ICD10CM|Other specified injury of right vertebral artery|Other specified injury of right vertebral artery +C2834190|T037|HT|S15.191|ICD10CM|Other specified injury of right vertebral artery|Other specified injury of right vertebral artery +C2834191|T037|AB|S15.191A|ICD10CM|Oth injury of right vertebral artery, init encntr|Oth injury of right vertebral artery, init encntr +C2834191|T037|PT|S15.191A|ICD10CM|Other specified injury of right vertebral artery, initial encounter|Other specified injury of right vertebral artery, initial encounter +C2834192|T037|AB|S15.191D|ICD10CM|Oth injury of right vertebral artery, subs encntr|Oth injury of right vertebral artery, subs encntr +C2834192|T037|PT|S15.191D|ICD10CM|Other specified injury of right vertebral artery, subsequent encounter|Other specified injury of right vertebral artery, subsequent encounter +C2834193|T037|AB|S15.191S|ICD10CM|Other specified injury of right vertebral artery, sequela|Other specified injury of right vertebral artery, sequela +C2834193|T037|PT|S15.191S|ICD10CM|Other specified injury of right vertebral artery, sequela|Other specified injury of right vertebral artery, sequela +C2834194|T037|AB|S15.192|ICD10CM|Other specified injury of left vertebral artery|Other specified injury of left vertebral artery +C2834194|T037|HT|S15.192|ICD10CM|Other specified injury of left vertebral artery|Other specified injury of left vertebral artery +C2834195|T037|AB|S15.192A|ICD10CM|Other specified injury of left vertebral artery, init encntr|Other specified injury of left vertebral artery, init encntr +C2834195|T037|PT|S15.192A|ICD10CM|Other specified injury of left vertebral artery, initial encounter|Other specified injury of left vertebral artery, initial encounter +C2834196|T037|AB|S15.192D|ICD10CM|Other specified injury of left vertebral artery, subs encntr|Other specified injury of left vertebral artery, subs encntr +C2834196|T037|PT|S15.192D|ICD10CM|Other specified injury of left vertebral artery, subsequent encounter|Other specified injury of left vertebral artery, subsequent encounter +C2834197|T037|AB|S15.192S|ICD10CM|Other specified injury of left vertebral artery, sequela|Other specified injury of left vertebral artery, sequela +C2834197|T037|PT|S15.192S|ICD10CM|Other specified injury of left vertebral artery, sequela|Other specified injury of left vertebral artery, sequela +C2834198|T037|AB|S15.199|ICD10CM|Other specified injury of unspecified vertebral artery|Other specified injury of unspecified vertebral artery +C2834198|T037|HT|S15.199|ICD10CM|Other specified injury of unspecified vertebral artery|Other specified injury of unspecified vertebral artery +C2834199|T037|AB|S15.199A|ICD10CM|Oth injury of unspecified vertebral artery, init encntr|Oth injury of unspecified vertebral artery, init encntr +C2834199|T037|PT|S15.199A|ICD10CM|Other specified injury of unspecified vertebral artery, initial encounter|Other specified injury of unspecified vertebral artery, initial encounter +C2834200|T037|AB|S15.199D|ICD10CM|Oth injury of unspecified vertebral artery, subs encntr|Oth injury of unspecified vertebral artery, subs encntr +C2834200|T037|PT|S15.199D|ICD10CM|Other specified injury of unspecified vertebral artery, subsequent encounter|Other specified injury of unspecified vertebral artery, subsequent encounter +C2834201|T037|AB|S15.199S|ICD10CM|Oth injury of unspecified vertebral artery, sequela|Oth injury of unspecified vertebral artery, sequela +C2834201|T037|PT|S15.199S|ICD10CM|Other specified injury of unspecified vertebral artery, sequela|Other specified injury of unspecified vertebral artery, sequela +C0160686|T037|HT|S15.2|ICD10CM|Injury of external jugular vein|Injury of external jugular vein +C0160686|T037|AB|S15.2|ICD10CM|Injury of external jugular vein|Injury of external jugular vein +C0160686|T037|PT|S15.2|ICD10|Injury of external jugular vein|Injury of external jugular vein +C2834202|T037|AB|S15.20|ICD10CM|Unspecified injury of external jugular vein|Unspecified injury of external jugular vein +C2834202|T037|HT|S15.20|ICD10CM|Unspecified injury of external jugular vein|Unspecified injury of external jugular vein +C2834203|T037|AB|S15.201|ICD10CM|Unspecified injury of right external jugular vein|Unspecified injury of right external jugular vein +C2834203|T037|HT|S15.201|ICD10CM|Unspecified injury of right external jugular vein|Unspecified injury of right external jugular vein +C2834204|T037|AB|S15.201A|ICD10CM|Unsp injury of right external jugular vein, init encntr|Unsp injury of right external jugular vein, init encntr +C2834204|T037|PT|S15.201A|ICD10CM|Unspecified injury of right external jugular vein, initial encounter|Unspecified injury of right external jugular vein, initial encounter +C2834205|T037|AB|S15.201D|ICD10CM|Unsp injury of right external jugular vein, subs encntr|Unsp injury of right external jugular vein, subs encntr +C2834205|T037|PT|S15.201D|ICD10CM|Unspecified injury of right external jugular vein, subsequent encounter|Unspecified injury of right external jugular vein, subsequent encounter +C2834206|T037|AB|S15.201S|ICD10CM|Unspecified injury of right external jugular vein, sequela|Unspecified injury of right external jugular vein, sequela +C2834206|T037|PT|S15.201S|ICD10CM|Unspecified injury of right external jugular vein, sequela|Unspecified injury of right external jugular vein, sequela +C2834207|T037|AB|S15.202|ICD10CM|Unspecified injury of left external jugular vein|Unspecified injury of left external jugular vein +C2834207|T037|HT|S15.202|ICD10CM|Unspecified injury of left external jugular vein|Unspecified injury of left external jugular vein +C2834208|T037|AB|S15.202A|ICD10CM|Unsp injury of left external jugular vein, init encntr|Unsp injury of left external jugular vein, init encntr +C2834208|T037|PT|S15.202A|ICD10CM|Unspecified injury of left external jugular vein, initial encounter|Unspecified injury of left external jugular vein, initial encounter +C2834209|T037|AB|S15.202D|ICD10CM|Unsp injury of left external jugular vein, subs encntr|Unsp injury of left external jugular vein, subs encntr +C2834209|T037|PT|S15.202D|ICD10CM|Unspecified injury of left external jugular vein, subsequent encounter|Unspecified injury of left external jugular vein, subsequent encounter +C2834210|T037|AB|S15.202S|ICD10CM|Unspecified injury of left external jugular vein, sequela|Unspecified injury of left external jugular vein, sequela +C2834210|T037|PT|S15.202S|ICD10CM|Unspecified injury of left external jugular vein, sequela|Unspecified injury of left external jugular vein, sequela +C2834211|T037|AB|S15.209|ICD10CM|Unspecified injury of unspecified external jugular vein|Unspecified injury of unspecified external jugular vein +C2834211|T037|HT|S15.209|ICD10CM|Unspecified injury of unspecified external jugular vein|Unspecified injury of unspecified external jugular vein +C2834212|T037|AB|S15.209A|ICD10CM|Unsp injury of unsp external jugular vein, init encntr|Unsp injury of unsp external jugular vein, init encntr +C2834212|T037|PT|S15.209A|ICD10CM|Unspecified injury of unspecified external jugular vein, initial encounter|Unspecified injury of unspecified external jugular vein, initial encounter +C2834213|T037|AB|S15.209D|ICD10CM|Unsp injury of unsp external jugular vein, subs encntr|Unsp injury of unsp external jugular vein, subs encntr +C2834213|T037|PT|S15.209D|ICD10CM|Unspecified injury of unspecified external jugular vein, subsequent encounter|Unspecified injury of unspecified external jugular vein, subsequent encounter +C2834214|T037|AB|S15.209S|ICD10CM|Unsp injury of unspecified external jugular vein, sequela|Unsp injury of unspecified external jugular vein, sequela +C2834214|T037|PT|S15.209S|ICD10CM|Unspecified injury of unspecified external jugular vein, sequela|Unspecified injury of unspecified external jugular vein, sequela +C2834215|T037|ET|S15.21|ICD10CM|Incomplete transection of external jugular vein|Incomplete transection of external jugular vein +C2834216|T037|ET|S15.21|ICD10CM|Laceration of external jugular vein NOS|Laceration of external jugular vein NOS +C2834218|T037|HT|S15.21|ICD10CM|Minor laceration of external jugular vein|Minor laceration of external jugular vein +C2834218|T037|AB|S15.21|ICD10CM|Minor laceration of external jugular vein|Minor laceration of external jugular vein +C2834217|T037|ET|S15.21|ICD10CM|Superficial laceration of external jugular vein|Superficial laceration of external jugular vein +C2834219|T037|AB|S15.211|ICD10CM|Minor laceration of right external jugular vein|Minor laceration of right external jugular vein +C2834219|T037|HT|S15.211|ICD10CM|Minor laceration of right external jugular vein|Minor laceration of right external jugular vein +C2834220|T037|AB|S15.211A|ICD10CM|Minor laceration of right external jugular vein, init encntr|Minor laceration of right external jugular vein, init encntr +C2834220|T037|PT|S15.211A|ICD10CM|Minor laceration of right external jugular vein, initial encounter|Minor laceration of right external jugular vein, initial encounter +C2834221|T037|AB|S15.211D|ICD10CM|Minor laceration of right external jugular vein, subs encntr|Minor laceration of right external jugular vein, subs encntr +C2834221|T037|PT|S15.211D|ICD10CM|Minor laceration of right external jugular vein, subsequent encounter|Minor laceration of right external jugular vein, subsequent encounter +C2834222|T037|PT|S15.211S|ICD10CM|Minor laceration of right external jugular vein, sequela|Minor laceration of right external jugular vein, sequela +C2834222|T037|AB|S15.211S|ICD10CM|Minor laceration of right external jugular vein, sequela|Minor laceration of right external jugular vein, sequela +C2834223|T037|AB|S15.212|ICD10CM|Minor laceration of left external jugular vein|Minor laceration of left external jugular vein +C2834223|T037|HT|S15.212|ICD10CM|Minor laceration of left external jugular vein|Minor laceration of left external jugular vein +C2834224|T037|AB|S15.212A|ICD10CM|Minor laceration of left external jugular vein, init encntr|Minor laceration of left external jugular vein, init encntr +C2834224|T037|PT|S15.212A|ICD10CM|Minor laceration of left external jugular vein, initial encounter|Minor laceration of left external jugular vein, initial encounter +C2834225|T037|AB|S15.212D|ICD10CM|Minor laceration of left external jugular vein, subs encntr|Minor laceration of left external jugular vein, subs encntr +C2834225|T037|PT|S15.212D|ICD10CM|Minor laceration of left external jugular vein, subsequent encounter|Minor laceration of left external jugular vein, subsequent encounter +C2834226|T037|PT|S15.212S|ICD10CM|Minor laceration of left external jugular vein, sequela|Minor laceration of left external jugular vein, sequela +C2834226|T037|AB|S15.212S|ICD10CM|Minor laceration of left external jugular vein, sequela|Minor laceration of left external jugular vein, sequela +C2834227|T037|AB|S15.219|ICD10CM|Minor laceration of unspecified external jugular vein|Minor laceration of unspecified external jugular vein +C2834227|T037|HT|S15.219|ICD10CM|Minor laceration of unspecified external jugular vein|Minor laceration of unspecified external jugular vein +C2834228|T037|AB|S15.219A|ICD10CM|Minor laceration of unsp external jugular vein, init encntr|Minor laceration of unsp external jugular vein, init encntr +C2834228|T037|PT|S15.219A|ICD10CM|Minor laceration of unspecified external jugular vein, initial encounter|Minor laceration of unspecified external jugular vein, initial encounter +C2834229|T037|AB|S15.219D|ICD10CM|Minor laceration of unsp external jugular vein, subs encntr|Minor laceration of unsp external jugular vein, subs encntr +C2834229|T037|PT|S15.219D|ICD10CM|Minor laceration of unspecified external jugular vein, subsequent encounter|Minor laceration of unspecified external jugular vein, subsequent encounter +C2834230|T037|AB|S15.219S|ICD10CM|Minor laceration of unsp external jugular vein, sequela|Minor laceration of unsp external jugular vein, sequela +C2834230|T037|PT|S15.219S|ICD10CM|Minor laceration of unspecified external jugular vein, sequela|Minor laceration of unspecified external jugular vein, sequela +C2834231|T037|ET|S15.22|ICD10CM|Complete transection of external jugular vein|Complete transection of external jugular vein +C2834233|T037|HT|S15.22|ICD10CM|Major laceration of external jugular vein|Major laceration of external jugular vein +C2834233|T037|AB|S15.22|ICD10CM|Major laceration of external jugular vein|Major laceration of external jugular vein +C2834232|T037|ET|S15.22|ICD10CM|Traumatic rupture of external jugular vein|Traumatic rupture of external jugular vein +C2834234|T037|AB|S15.221|ICD10CM|Major laceration of right external jugular vein|Major laceration of right external jugular vein +C2834234|T037|HT|S15.221|ICD10CM|Major laceration of right external jugular vein|Major laceration of right external jugular vein +C2834235|T037|AB|S15.221A|ICD10CM|Major laceration of right external jugular vein, init encntr|Major laceration of right external jugular vein, init encntr +C2834235|T037|PT|S15.221A|ICD10CM|Major laceration of right external jugular vein, initial encounter|Major laceration of right external jugular vein, initial encounter +C2834236|T037|AB|S15.221D|ICD10CM|Major laceration of right external jugular vein, subs encntr|Major laceration of right external jugular vein, subs encntr +C2834236|T037|PT|S15.221D|ICD10CM|Major laceration of right external jugular vein, subsequent encounter|Major laceration of right external jugular vein, subsequent encounter +C2834237|T037|PT|S15.221S|ICD10CM|Major laceration of right external jugular vein, sequela|Major laceration of right external jugular vein, sequela +C2834237|T037|AB|S15.221S|ICD10CM|Major laceration of right external jugular vein, sequela|Major laceration of right external jugular vein, sequela +C2834238|T037|AB|S15.222|ICD10CM|Major laceration of left external jugular vein|Major laceration of left external jugular vein +C2834238|T037|HT|S15.222|ICD10CM|Major laceration of left external jugular vein|Major laceration of left external jugular vein +C2834239|T037|AB|S15.222A|ICD10CM|Major laceration of left external jugular vein, init encntr|Major laceration of left external jugular vein, init encntr +C2834239|T037|PT|S15.222A|ICD10CM|Major laceration of left external jugular vein, initial encounter|Major laceration of left external jugular vein, initial encounter +C2834240|T037|AB|S15.222D|ICD10CM|Major laceration of left external jugular vein, subs encntr|Major laceration of left external jugular vein, subs encntr +C2834240|T037|PT|S15.222D|ICD10CM|Major laceration of left external jugular vein, subsequent encounter|Major laceration of left external jugular vein, subsequent encounter +C2834241|T037|PT|S15.222S|ICD10CM|Major laceration of left external jugular vein, sequela|Major laceration of left external jugular vein, sequela +C2834241|T037|AB|S15.222S|ICD10CM|Major laceration of left external jugular vein, sequela|Major laceration of left external jugular vein, sequela +C2834242|T037|AB|S15.229|ICD10CM|Major laceration of unspecified external jugular vein|Major laceration of unspecified external jugular vein +C2834242|T037|HT|S15.229|ICD10CM|Major laceration of unspecified external jugular vein|Major laceration of unspecified external jugular vein +C2834243|T037|AB|S15.229A|ICD10CM|Major laceration of unsp external jugular vein, init encntr|Major laceration of unsp external jugular vein, init encntr +C2834243|T037|PT|S15.229A|ICD10CM|Major laceration of unspecified external jugular vein, initial encounter|Major laceration of unspecified external jugular vein, initial encounter +C2834244|T037|AB|S15.229D|ICD10CM|Major laceration of unsp external jugular vein, subs encntr|Major laceration of unsp external jugular vein, subs encntr +C2834244|T037|PT|S15.229D|ICD10CM|Major laceration of unspecified external jugular vein, subsequent encounter|Major laceration of unspecified external jugular vein, subsequent encounter +C2834245|T037|AB|S15.229S|ICD10CM|Major laceration of unsp external jugular vein, sequela|Major laceration of unsp external jugular vein, sequela +C2834245|T037|PT|S15.229S|ICD10CM|Major laceration of unspecified external jugular vein, sequela|Major laceration of unspecified external jugular vein, sequela +C2834246|T037|AB|S15.29|ICD10CM|Other specified injury of external jugular vein|Other specified injury of external jugular vein +C2834246|T037|HT|S15.29|ICD10CM|Other specified injury of external jugular vein|Other specified injury of external jugular vein +C2834247|T037|AB|S15.291|ICD10CM|Other specified injury of right external jugular vein|Other specified injury of right external jugular vein +C2834247|T037|HT|S15.291|ICD10CM|Other specified injury of right external jugular vein|Other specified injury of right external jugular vein +C2834248|T037|AB|S15.291A|ICD10CM|Oth injury of right external jugular vein, init encntr|Oth injury of right external jugular vein, init encntr +C2834248|T037|PT|S15.291A|ICD10CM|Other specified injury of right external jugular vein, initial encounter|Other specified injury of right external jugular vein, initial encounter +C2834249|T037|AB|S15.291D|ICD10CM|Oth injury of right external jugular vein, subs encntr|Oth injury of right external jugular vein, subs encntr +C2834249|T037|PT|S15.291D|ICD10CM|Other specified injury of right external jugular vein, subsequent encounter|Other specified injury of right external jugular vein, subsequent encounter +C2834250|T037|AB|S15.291S|ICD10CM|Oth injury of right external jugular vein, sequela|Oth injury of right external jugular vein, sequela +C2834250|T037|PT|S15.291S|ICD10CM|Other specified injury of right external jugular vein, sequela|Other specified injury of right external jugular vein, sequela +C2834251|T037|AB|S15.292|ICD10CM|Other specified injury of left external jugular vein|Other specified injury of left external jugular vein +C2834251|T037|HT|S15.292|ICD10CM|Other specified injury of left external jugular vein|Other specified injury of left external jugular vein +C2834252|T037|AB|S15.292A|ICD10CM|Oth injury of left external jugular vein, init encntr|Oth injury of left external jugular vein, init encntr +C2834252|T037|PT|S15.292A|ICD10CM|Other specified injury of left external jugular vein, initial encounter|Other specified injury of left external jugular vein, initial encounter +C2834253|T037|AB|S15.292D|ICD10CM|Oth injury of left external jugular vein, subs encntr|Oth injury of left external jugular vein, subs encntr +C2834253|T037|PT|S15.292D|ICD10CM|Other specified injury of left external jugular vein, subsequent encounter|Other specified injury of left external jugular vein, subsequent encounter +C2834254|T037|AB|S15.292S|ICD10CM|Oth injury of left external jugular vein, sequela|Oth injury of left external jugular vein, sequela +C2834254|T037|PT|S15.292S|ICD10CM|Other specified injury of left external jugular vein, sequela|Other specified injury of left external jugular vein, sequela +C2834255|T037|AB|S15.299|ICD10CM|Other specified injury of unspecified external jugular vein|Other specified injury of unspecified external jugular vein +C2834255|T037|HT|S15.299|ICD10CM|Other specified injury of unspecified external jugular vein|Other specified injury of unspecified external jugular vein +C2834256|T037|AB|S15.299A|ICD10CM|Oth injury of unspecified external jugular vein, init encntr|Oth injury of unspecified external jugular vein, init encntr +C2834256|T037|PT|S15.299A|ICD10CM|Other specified injury of unspecified external jugular vein, initial encounter|Other specified injury of unspecified external jugular vein, initial encounter +C2834257|T037|AB|S15.299D|ICD10CM|Oth injury of unspecified external jugular vein, subs encntr|Oth injury of unspecified external jugular vein, subs encntr +C2834257|T037|PT|S15.299D|ICD10CM|Other specified injury of unspecified external jugular vein, subsequent encounter|Other specified injury of unspecified external jugular vein, subsequent encounter +C2834258|T037|AB|S15.299S|ICD10CM|Oth injury of unspecified external jugular vein, sequela|Oth injury of unspecified external jugular vein, sequela +C2834258|T037|PT|S15.299S|ICD10CM|Other specified injury of unspecified external jugular vein, sequela|Other specified injury of unspecified external jugular vein, sequela +C0160684|T037|PT|S15.3|ICD10|Injury of internal jugular vein|Injury of internal jugular vein +C0160684|T037|HT|S15.3|ICD10CM|Injury of internal jugular vein|Injury of internal jugular vein +C0160684|T037|AB|S15.3|ICD10CM|Injury of internal jugular vein|Injury of internal jugular vein +C2834259|T037|AB|S15.30|ICD10CM|Unspecified injury of internal jugular vein|Unspecified injury of internal jugular vein +C2834259|T037|HT|S15.30|ICD10CM|Unspecified injury of internal jugular vein|Unspecified injury of internal jugular vein +C2834260|T037|AB|S15.301|ICD10CM|Unspecified injury of right internal jugular vein|Unspecified injury of right internal jugular vein +C2834260|T037|HT|S15.301|ICD10CM|Unspecified injury of right internal jugular vein|Unspecified injury of right internal jugular vein +C2834261|T037|AB|S15.301A|ICD10CM|Unsp injury of right internal jugular vein, init encntr|Unsp injury of right internal jugular vein, init encntr +C2834261|T037|PT|S15.301A|ICD10CM|Unspecified injury of right internal jugular vein, initial encounter|Unspecified injury of right internal jugular vein, initial encounter +C2834262|T037|AB|S15.301D|ICD10CM|Unsp injury of right internal jugular vein, subs encntr|Unsp injury of right internal jugular vein, subs encntr +C2834262|T037|PT|S15.301D|ICD10CM|Unspecified injury of right internal jugular vein, subsequent encounter|Unspecified injury of right internal jugular vein, subsequent encounter +C2834263|T037|AB|S15.301S|ICD10CM|Unspecified injury of right internal jugular vein, sequela|Unspecified injury of right internal jugular vein, sequela +C2834263|T037|PT|S15.301S|ICD10CM|Unspecified injury of right internal jugular vein, sequela|Unspecified injury of right internal jugular vein, sequela +C2834264|T037|AB|S15.302|ICD10CM|Unspecified injury of left internal jugular vein|Unspecified injury of left internal jugular vein +C2834264|T037|HT|S15.302|ICD10CM|Unspecified injury of left internal jugular vein|Unspecified injury of left internal jugular vein +C2834265|T037|AB|S15.302A|ICD10CM|Unsp injury of left internal jugular vein, init encntr|Unsp injury of left internal jugular vein, init encntr +C2834265|T037|PT|S15.302A|ICD10CM|Unspecified injury of left internal jugular vein, initial encounter|Unspecified injury of left internal jugular vein, initial encounter +C2834266|T037|AB|S15.302D|ICD10CM|Unsp injury of left internal jugular vein, subs encntr|Unsp injury of left internal jugular vein, subs encntr +C2834266|T037|PT|S15.302D|ICD10CM|Unspecified injury of left internal jugular vein, subsequent encounter|Unspecified injury of left internal jugular vein, subsequent encounter +C2834267|T037|AB|S15.302S|ICD10CM|Unspecified injury of left internal jugular vein, sequela|Unspecified injury of left internal jugular vein, sequela +C2834267|T037|PT|S15.302S|ICD10CM|Unspecified injury of left internal jugular vein, sequela|Unspecified injury of left internal jugular vein, sequela +C2834268|T037|AB|S15.309|ICD10CM|Unspecified injury of unspecified internal jugular vein|Unspecified injury of unspecified internal jugular vein +C2834268|T037|HT|S15.309|ICD10CM|Unspecified injury of unspecified internal jugular vein|Unspecified injury of unspecified internal jugular vein +C2834269|T037|AB|S15.309A|ICD10CM|Unsp injury of unsp internal jugular vein, init encntr|Unsp injury of unsp internal jugular vein, init encntr +C2834269|T037|PT|S15.309A|ICD10CM|Unspecified injury of unspecified internal jugular vein, initial encounter|Unspecified injury of unspecified internal jugular vein, initial encounter +C2834270|T037|AB|S15.309D|ICD10CM|Unsp injury of unsp internal jugular vein, subs encntr|Unsp injury of unsp internal jugular vein, subs encntr +C2834270|T037|PT|S15.309D|ICD10CM|Unspecified injury of unspecified internal jugular vein, subsequent encounter|Unspecified injury of unspecified internal jugular vein, subsequent encounter +C2834271|T037|AB|S15.309S|ICD10CM|Unsp injury of unspecified internal jugular vein, sequela|Unsp injury of unspecified internal jugular vein, sequela +C2834271|T037|PT|S15.309S|ICD10CM|Unspecified injury of unspecified internal jugular vein, sequela|Unspecified injury of unspecified internal jugular vein, sequela +C2834272|T037|ET|S15.31|ICD10CM|Incomplete transection of internal jugular vein|Incomplete transection of internal jugular vein +C2834273|T037|ET|S15.31|ICD10CM|Laceration of internal jugular vein NOS|Laceration of internal jugular vein NOS +C2834275|T037|HT|S15.31|ICD10CM|Minor laceration of internal jugular vein|Minor laceration of internal jugular vein +C2834275|T037|AB|S15.31|ICD10CM|Minor laceration of internal jugular vein|Minor laceration of internal jugular vein +C2834274|T037|ET|S15.31|ICD10CM|Superficial laceration of internal jugular vein|Superficial laceration of internal jugular vein +C2834276|T037|AB|S15.311|ICD10CM|Minor laceration of right internal jugular vein|Minor laceration of right internal jugular vein +C2834276|T037|HT|S15.311|ICD10CM|Minor laceration of right internal jugular vein|Minor laceration of right internal jugular vein +C2834277|T037|AB|S15.311A|ICD10CM|Minor laceration of right internal jugular vein, init encntr|Minor laceration of right internal jugular vein, init encntr +C2834277|T037|PT|S15.311A|ICD10CM|Minor laceration of right internal jugular vein, initial encounter|Minor laceration of right internal jugular vein, initial encounter +C2834278|T037|AB|S15.311D|ICD10CM|Minor laceration of right internal jugular vein, subs encntr|Minor laceration of right internal jugular vein, subs encntr +C2834278|T037|PT|S15.311D|ICD10CM|Minor laceration of right internal jugular vein, subsequent encounter|Minor laceration of right internal jugular vein, subsequent encounter +C2834279|T037|PT|S15.311S|ICD10CM|Minor laceration of right internal jugular vein, sequela|Minor laceration of right internal jugular vein, sequela +C2834279|T037|AB|S15.311S|ICD10CM|Minor laceration of right internal jugular vein, sequela|Minor laceration of right internal jugular vein, sequela +C2834280|T037|AB|S15.312|ICD10CM|Minor laceration of left internal jugular vein|Minor laceration of left internal jugular vein +C2834280|T037|HT|S15.312|ICD10CM|Minor laceration of left internal jugular vein|Minor laceration of left internal jugular vein +C2834281|T037|AB|S15.312A|ICD10CM|Minor laceration of left internal jugular vein, init encntr|Minor laceration of left internal jugular vein, init encntr +C2834281|T037|PT|S15.312A|ICD10CM|Minor laceration of left internal jugular vein, initial encounter|Minor laceration of left internal jugular vein, initial encounter +C2834282|T037|AB|S15.312D|ICD10CM|Minor laceration of left internal jugular vein, subs encntr|Minor laceration of left internal jugular vein, subs encntr +C2834282|T037|PT|S15.312D|ICD10CM|Minor laceration of left internal jugular vein, subsequent encounter|Minor laceration of left internal jugular vein, subsequent encounter +C2834283|T037|PT|S15.312S|ICD10CM|Minor laceration of left internal jugular vein, sequela|Minor laceration of left internal jugular vein, sequela +C2834283|T037|AB|S15.312S|ICD10CM|Minor laceration of left internal jugular vein, sequela|Minor laceration of left internal jugular vein, sequela +C2834284|T037|AB|S15.319|ICD10CM|Minor laceration of unspecified internal jugular vein|Minor laceration of unspecified internal jugular vein +C2834284|T037|HT|S15.319|ICD10CM|Minor laceration of unspecified internal jugular vein|Minor laceration of unspecified internal jugular vein +C2834285|T037|AB|S15.319A|ICD10CM|Minor laceration of unsp internal jugular vein, init encntr|Minor laceration of unsp internal jugular vein, init encntr +C2834285|T037|PT|S15.319A|ICD10CM|Minor laceration of unspecified internal jugular vein, initial encounter|Minor laceration of unspecified internal jugular vein, initial encounter +C2834286|T037|AB|S15.319D|ICD10CM|Minor laceration of unsp internal jugular vein, subs encntr|Minor laceration of unsp internal jugular vein, subs encntr +C2834286|T037|PT|S15.319D|ICD10CM|Minor laceration of unspecified internal jugular vein, subsequent encounter|Minor laceration of unspecified internal jugular vein, subsequent encounter +C2834287|T037|AB|S15.319S|ICD10CM|Minor laceration of unsp internal jugular vein, sequela|Minor laceration of unsp internal jugular vein, sequela +C2834287|T037|PT|S15.319S|ICD10CM|Minor laceration of unspecified internal jugular vein, sequela|Minor laceration of unspecified internal jugular vein, sequela +C2834288|T037|ET|S15.32|ICD10CM|Complete transection of internal jugular vein|Complete transection of internal jugular vein +C2834290|T037|HT|S15.32|ICD10CM|Major laceration of internal jugular vein|Major laceration of internal jugular vein +C2834290|T037|AB|S15.32|ICD10CM|Major laceration of internal jugular vein|Major laceration of internal jugular vein +C2834289|T037|ET|S15.32|ICD10CM|Traumatic rupture of internal jugular vein|Traumatic rupture of internal jugular vein +C2834291|T037|AB|S15.321|ICD10CM|Major laceration of right internal jugular vein|Major laceration of right internal jugular vein +C2834291|T037|HT|S15.321|ICD10CM|Major laceration of right internal jugular vein|Major laceration of right internal jugular vein +C2834292|T037|AB|S15.321A|ICD10CM|Major laceration of right internal jugular vein, init encntr|Major laceration of right internal jugular vein, init encntr +C2834292|T037|PT|S15.321A|ICD10CM|Major laceration of right internal jugular vein, initial encounter|Major laceration of right internal jugular vein, initial encounter +C2834293|T037|AB|S15.321D|ICD10CM|Major laceration of right internal jugular vein, subs encntr|Major laceration of right internal jugular vein, subs encntr +C2834293|T037|PT|S15.321D|ICD10CM|Major laceration of right internal jugular vein, subsequent encounter|Major laceration of right internal jugular vein, subsequent encounter +C2834294|T037|PT|S15.321S|ICD10CM|Major laceration of right internal jugular vein, sequela|Major laceration of right internal jugular vein, sequela +C2834294|T037|AB|S15.321S|ICD10CM|Major laceration of right internal jugular vein, sequela|Major laceration of right internal jugular vein, sequela +C2834295|T037|AB|S15.322|ICD10CM|Major laceration of left internal jugular vein|Major laceration of left internal jugular vein +C2834295|T037|HT|S15.322|ICD10CM|Major laceration of left internal jugular vein|Major laceration of left internal jugular vein +C2834296|T037|AB|S15.322A|ICD10CM|Major laceration of left internal jugular vein, init encntr|Major laceration of left internal jugular vein, init encntr +C2834296|T037|PT|S15.322A|ICD10CM|Major laceration of left internal jugular vein, initial encounter|Major laceration of left internal jugular vein, initial encounter +C2834297|T037|AB|S15.322D|ICD10CM|Major laceration of left internal jugular vein, subs encntr|Major laceration of left internal jugular vein, subs encntr +C2834297|T037|PT|S15.322D|ICD10CM|Major laceration of left internal jugular vein, subsequent encounter|Major laceration of left internal jugular vein, subsequent encounter +C2834298|T037|PT|S15.322S|ICD10CM|Major laceration of left internal jugular vein, sequela|Major laceration of left internal jugular vein, sequela +C2834298|T037|AB|S15.322S|ICD10CM|Major laceration of left internal jugular vein, sequela|Major laceration of left internal jugular vein, sequela +C2834299|T037|AB|S15.329|ICD10CM|Major laceration of unspecified internal jugular vein|Major laceration of unspecified internal jugular vein +C2834299|T037|HT|S15.329|ICD10CM|Major laceration of unspecified internal jugular vein|Major laceration of unspecified internal jugular vein +C2834300|T037|AB|S15.329A|ICD10CM|Major laceration of unsp internal jugular vein, init encntr|Major laceration of unsp internal jugular vein, init encntr +C2834300|T037|PT|S15.329A|ICD10CM|Major laceration of unspecified internal jugular vein, initial encounter|Major laceration of unspecified internal jugular vein, initial encounter +C2834301|T037|AB|S15.329D|ICD10CM|Major laceration of unsp internal jugular vein, subs encntr|Major laceration of unsp internal jugular vein, subs encntr +C2834301|T037|PT|S15.329D|ICD10CM|Major laceration of unspecified internal jugular vein, subsequent encounter|Major laceration of unspecified internal jugular vein, subsequent encounter +C2834302|T037|AB|S15.329S|ICD10CM|Major laceration of unsp internal jugular vein, sequela|Major laceration of unsp internal jugular vein, sequela +C2834302|T037|PT|S15.329S|ICD10CM|Major laceration of unspecified internal jugular vein, sequela|Major laceration of unspecified internal jugular vein, sequela +C2834303|T037|AB|S15.39|ICD10CM|Other specified injury of internal jugular vein|Other specified injury of internal jugular vein +C2834303|T037|HT|S15.39|ICD10CM|Other specified injury of internal jugular vein|Other specified injury of internal jugular vein +C2834304|T037|AB|S15.391|ICD10CM|Other specified injury of right internal jugular vein|Other specified injury of right internal jugular vein +C2834304|T037|HT|S15.391|ICD10CM|Other specified injury of right internal jugular vein|Other specified injury of right internal jugular vein +C2834305|T037|AB|S15.391A|ICD10CM|Oth injury of right internal jugular vein, init encntr|Oth injury of right internal jugular vein, init encntr +C2834305|T037|PT|S15.391A|ICD10CM|Other specified injury of right internal jugular vein, initial encounter|Other specified injury of right internal jugular vein, initial encounter +C2834306|T037|AB|S15.391D|ICD10CM|Oth injury of right internal jugular vein, subs encntr|Oth injury of right internal jugular vein, subs encntr +C2834306|T037|PT|S15.391D|ICD10CM|Other specified injury of right internal jugular vein, subsequent encounter|Other specified injury of right internal jugular vein, subsequent encounter +C2834307|T037|AB|S15.391S|ICD10CM|Oth injury of right internal jugular vein, sequela|Oth injury of right internal jugular vein, sequela +C2834307|T037|PT|S15.391S|ICD10CM|Other specified injury of right internal jugular vein, sequela|Other specified injury of right internal jugular vein, sequela +C2834308|T037|AB|S15.392|ICD10CM|Other specified injury of left internal jugular vein|Other specified injury of left internal jugular vein +C2834308|T037|HT|S15.392|ICD10CM|Other specified injury of left internal jugular vein|Other specified injury of left internal jugular vein +C2834309|T037|AB|S15.392A|ICD10CM|Oth injury of left internal jugular vein, init encntr|Oth injury of left internal jugular vein, init encntr +C2834309|T037|PT|S15.392A|ICD10CM|Other specified injury of left internal jugular vein, initial encounter|Other specified injury of left internal jugular vein, initial encounter +C2834310|T037|AB|S15.392D|ICD10CM|Oth injury of left internal jugular vein, subs encntr|Oth injury of left internal jugular vein, subs encntr +C2834310|T037|PT|S15.392D|ICD10CM|Other specified injury of left internal jugular vein, subsequent encounter|Other specified injury of left internal jugular vein, subsequent encounter +C2834311|T037|AB|S15.392S|ICD10CM|Oth injury of left internal jugular vein, sequela|Oth injury of left internal jugular vein, sequela +C2834311|T037|PT|S15.392S|ICD10CM|Other specified injury of left internal jugular vein, sequela|Other specified injury of left internal jugular vein, sequela +C2834312|T037|AB|S15.399|ICD10CM|Other specified injury of unspecified internal jugular vein|Other specified injury of unspecified internal jugular vein +C2834312|T037|HT|S15.399|ICD10CM|Other specified injury of unspecified internal jugular vein|Other specified injury of unspecified internal jugular vein +C2834313|T037|AB|S15.399A|ICD10CM|Oth injury of unspecified internal jugular vein, init encntr|Oth injury of unspecified internal jugular vein, init encntr +C2834313|T037|PT|S15.399A|ICD10CM|Other specified injury of unspecified internal jugular vein, initial encounter|Other specified injury of unspecified internal jugular vein, initial encounter +C2834314|T037|AB|S15.399D|ICD10CM|Oth injury of unspecified internal jugular vein, subs encntr|Oth injury of unspecified internal jugular vein, subs encntr +C2834314|T037|PT|S15.399D|ICD10CM|Other specified injury of unspecified internal jugular vein, subsequent encounter|Other specified injury of unspecified internal jugular vein, subsequent encounter +C2834315|T037|AB|S15.399S|ICD10CM|Oth injury of unspecified internal jugular vein, sequela|Oth injury of unspecified internal jugular vein, sequela +C2834315|T037|PT|S15.399S|ICD10CM|Other specified injury of unspecified internal jugular vein, sequela|Other specified injury of unspecified internal jugular vein, sequela +C0452058|T037|PT|S15.7|ICD10|Injury of multiple blood vessels at neck level|Injury of multiple blood vessels at neck level +C0495822|T037|PT|S15.8|ICD10|Injury of other blood vessels at neck level|Injury of other blood vessels at neck level +C0495822|T037|AB|S15.8|ICD10CM|Injury of other specified blood vessels at neck level|Injury of other specified blood vessels at neck level +C0495822|T037|HT|S15.8|ICD10CM|Injury of other specified blood vessels at neck level|Injury of other specified blood vessels at neck level +C2977792|T037|AB|S15.8XXA|ICD10CM|Injury of oth blood vessels at neck level, init encntr|Injury of oth blood vessels at neck level, init encntr +C2977792|T037|PT|S15.8XXA|ICD10CM|Injury of other specified blood vessels at neck level, initial encounter|Injury of other specified blood vessels at neck level, initial encounter +C2977793|T037|AB|S15.8XXD|ICD10CM|Injury of oth blood vessels at neck level, subs encntr|Injury of oth blood vessels at neck level, subs encntr +C2977793|T037|PT|S15.8XXD|ICD10CM|Injury of other specified blood vessels at neck level, subsequent encounter|Injury of other specified blood vessels at neck level, subsequent encounter +C2977794|T037|AB|S15.8XXS|ICD10CM|Injury of oth blood vessels at neck level, sequela|Injury of oth blood vessels at neck level, sequela +C2977794|T037|PT|S15.8XXS|ICD10CM|Injury of other specified blood vessels at neck level, sequela|Injury of other specified blood vessels at neck level, sequela +C0347663|T037|PT|S15.9|ICD10|Injury of unspecified blood vessel at neck level|Injury of unspecified blood vessel at neck level +C0347663|T037|HT|S15.9|ICD10CM|Injury of unspecified blood vessel at neck level|Injury of unspecified blood vessel at neck level +C0347663|T037|AB|S15.9|ICD10CM|Injury of unspecified blood vessel at neck level|Injury of unspecified blood vessel at neck level +C2834319|T037|AB|S15.9XXA|ICD10CM|Injury of unsp blood vessel at neck level, init encntr|Injury of unsp blood vessel at neck level, init encntr +C2834319|T037|PT|S15.9XXA|ICD10CM|Injury of unspecified blood vessel at neck level, initial encounter|Injury of unspecified blood vessel at neck level, initial encounter +C2834320|T037|AB|S15.9XXD|ICD10CM|Injury of unsp blood vessel at neck level, subs encntr|Injury of unsp blood vessel at neck level, subs encntr +C2834320|T037|PT|S15.9XXD|ICD10CM|Injury of unspecified blood vessel at neck level, subsequent encounter|Injury of unspecified blood vessel at neck level, subsequent encounter +C2834321|T037|AB|S15.9XXS|ICD10CM|Injury of unspecified blood vessel at neck level, sequela|Injury of unspecified blood vessel at neck level, sequela +C2834321|T037|PT|S15.9XXS|ICD10CM|Injury of unspecified blood vessel at neck level, sequela|Injury of unspecified blood vessel at neck level, sequela +C0451847|T037|PT|S16|ICD10|Injury of muscle and tendon at neck level|Injury of muscle and tendon at neck level +C2834322|T037|AB|S16|ICD10CM|Injury of muscle, fascia and tendon at neck level|Injury of muscle, fascia and tendon at neck level +C2834322|T037|HT|S16|ICD10CM|Injury of muscle, fascia and tendon at neck level|Injury of muscle, fascia and tendon at neck level +C2834323|T037|AB|S16.1|ICD10CM|Strain of muscle, fascia and tendon at neck level|Strain of muscle, fascia and tendon at neck level +C2834323|T037|HT|S16.1|ICD10CM|Strain of muscle, fascia and tendon at neck level|Strain of muscle, fascia and tendon at neck level +C2834324|T037|AB|S16.1XXA|ICD10CM|Strain of muscle, fascia and tendon at neck level, init|Strain of muscle, fascia and tendon at neck level, init +C2834324|T037|PT|S16.1XXA|ICD10CM|Strain of muscle, fascia and tendon at neck level, initial encounter|Strain of muscle, fascia and tendon at neck level, initial encounter +C2834325|T037|AB|S16.1XXD|ICD10CM|Strain of muscle, fascia and tendon at neck level, subs|Strain of muscle, fascia and tendon at neck level, subs +C2834325|T037|PT|S16.1XXD|ICD10CM|Strain of muscle, fascia and tendon at neck level, subsequent encounter|Strain of muscle, fascia and tendon at neck level, subsequent encounter +C2834326|T037|PT|S16.1XXS|ICD10CM|Strain of muscle, fascia and tendon at neck level, sequela|Strain of muscle, fascia and tendon at neck level, sequela +C2834326|T037|AB|S16.1XXS|ICD10CM|Strain of muscle, fascia and tendon at neck level, sequela|Strain of muscle, fascia and tendon at neck level, sequela +C2834327|T037|AB|S16.2|ICD10CM|Laceration of muscle, fascia and tendon at neck level|Laceration of muscle, fascia and tendon at neck level +C2834327|T037|HT|S16.2|ICD10CM|Laceration of muscle, fascia and tendon at neck level|Laceration of muscle, fascia and tendon at neck level +C2834328|T037|AB|S16.2XXA|ICD10CM|Laceration of muscle, fascia and tendon at neck level, init|Laceration of muscle, fascia and tendon at neck level, init +C2834328|T037|PT|S16.2XXA|ICD10CM|Laceration of muscle, fascia and tendon at neck level, initial encounter|Laceration of muscle, fascia and tendon at neck level, initial encounter +C2834329|T037|AB|S16.2XXD|ICD10CM|Laceration of muscle, fascia and tendon at neck level, subs|Laceration of muscle, fascia and tendon at neck level, subs +C2834329|T037|PT|S16.2XXD|ICD10CM|Laceration of muscle, fascia and tendon at neck level, subsequent encounter|Laceration of muscle, fascia and tendon at neck level, subsequent encounter +C2834330|T037|AB|S16.2XXS|ICD10CM|Laceration of musc/fasc/tend at neck level, sequela|Laceration of musc/fasc/tend at neck level, sequela +C2834330|T037|PT|S16.2XXS|ICD10CM|Laceration of muscle, fascia and tendon at neck level, sequela|Laceration of muscle, fascia and tendon at neck level, sequela +C2834331|T037|AB|S16.8|ICD10CM|Oth injury of muscle, fascia and tendon at neck level|Oth injury of muscle, fascia and tendon at neck level +C2834331|T037|HT|S16.8|ICD10CM|Other specified injury of muscle, fascia and tendon at neck level|Other specified injury of muscle, fascia and tendon at neck level +C2977795|T037|AB|S16.8XXA|ICD10CM|Inj muscle, fascia and tendon at neck level, init encntr|Inj muscle, fascia and tendon at neck level, init encntr +C2977795|T037|PT|S16.8XXA|ICD10CM|Other specified injury of muscle, fascia and tendon at neck level, initial encounter|Other specified injury of muscle, fascia and tendon at neck level, initial encounter +C2977796|T037|AB|S16.8XXD|ICD10CM|Inj muscle, fascia and tendon at neck level, subs encntr|Inj muscle, fascia and tendon at neck level, subs encntr +C2977796|T037|PT|S16.8XXD|ICD10CM|Other specified injury of muscle, fascia and tendon at neck level, subsequent encounter|Other specified injury of muscle, fascia and tendon at neck level, subsequent encounter +C2977797|T037|AB|S16.8XXS|ICD10CM|Inj muscle, fascia and tendon at neck level, sequela|Inj muscle, fascia and tendon at neck level, sequela +C2977797|T037|PT|S16.8XXS|ICD10CM|Other specified injury of muscle, fascia and tendon at neck level, sequela|Other specified injury of muscle, fascia and tendon at neck level, sequela +C2834335|T037|AB|S16.9|ICD10CM|Unsp injury of muscle, fascia and tendon at neck level|Unsp injury of muscle, fascia and tendon at neck level +C2834335|T037|HT|S16.9|ICD10CM|Unspecified injury of muscle, fascia and tendon at neck level|Unspecified injury of muscle, fascia and tendon at neck level +C2834336|T037|AB|S16.9XXA|ICD10CM|Unsp injury of muscle, fascia and tendon at neck level, init|Unsp injury of muscle, fascia and tendon at neck level, init +C2834336|T037|PT|S16.9XXA|ICD10CM|Unspecified injury of muscle, fascia and tendon at neck level, initial encounter|Unspecified injury of muscle, fascia and tendon at neck level, initial encounter +C2834337|T037|AB|S16.9XXD|ICD10CM|Unsp injury of muscle, fascia and tendon at neck level, subs|Unsp injury of muscle, fascia and tendon at neck level, subs +C2834337|T037|PT|S16.9XXD|ICD10CM|Unspecified injury of muscle, fascia and tendon at neck level, subsequent encounter|Unspecified injury of muscle, fascia and tendon at neck level, subsequent encounter +C2834338|T037|AB|S16.9XXS|ICD10CM|Unsp injury of musc/fasc/tend at neck level, sequela|Unsp injury of musc/fasc/tend at neck level, sequela +C2834338|T037|PT|S16.9XXS|ICD10CM|Unspecified injury of muscle, fascia and tendon at neck level, sequela|Unspecified injury of muscle, fascia and tendon at neck level, sequela +C0273433|T037|HT|S17|ICD10CM|Crushing injury of neck|Crushing injury of neck +C0273433|T037|AB|S17|ICD10CM|Crushing injury of neck|Crushing injury of neck +C0273433|T037|HT|S17|ICD10|Crushing injury of neck|Crushing injury of neck +C0495824|T037|PT|S17.0|ICD10|Crushing injury of larynx and trachea|Crushing injury of larynx and trachea +C0495824|T037|HT|S17.0|ICD10CM|Crushing injury of larynx and trachea|Crushing injury of larynx and trachea +C0495824|T037|AB|S17.0|ICD10CM|Crushing injury of larynx and trachea|Crushing injury of larynx and trachea +C2834339|T037|AB|S17.0XXA|ICD10CM|Crushing injury of larynx and trachea, initial encounter|Crushing injury of larynx and trachea, initial encounter +C2834339|T037|PT|S17.0XXA|ICD10CM|Crushing injury of larynx and trachea, initial encounter|Crushing injury of larynx and trachea, initial encounter +C2834340|T037|AB|S17.0XXD|ICD10CM|Crushing injury of larynx and trachea, subsequent encounter|Crushing injury of larynx and trachea, subsequent encounter +C2834340|T037|PT|S17.0XXD|ICD10CM|Crushing injury of larynx and trachea, subsequent encounter|Crushing injury of larynx and trachea, subsequent encounter +C2834341|T037|AB|S17.0XXS|ICD10CM|Crushing injury of larynx and trachea, sequela|Crushing injury of larynx and trachea, sequela +C2834341|T037|PT|S17.0XXS|ICD10CM|Crushing injury of larynx and trachea, sequela|Crushing injury of larynx and trachea, sequela +C0478228|T037|PT|S17.8|ICD10|Crushing injury of other parts of neck|Crushing injury of other parts of neck +C0478228|T037|AB|S17.8|ICD10CM|Crushing injury of other specified parts of neck|Crushing injury of other specified parts of neck +C0478228|T037|HT|S17.8|ICD10CM|Crushing injury of other specified parts of neck|Crushing injury of other specified parts of neck +C2977798|T037|AB|S17.8XXA|ICD10CM|Crushing injury of oth parts of neck, init encntr|Crushing injury of oth parts of neck, init encntr +C2977798|T037|PT|S17.8XXA|ICD10CM|Crushing injury of other specified parts of neck, initial encounter|Crushing injury of other specified parts of neck, initial encounter +C2977799|T037|AB|S17.8XXD|ICD10CM|Crushing injury of oth parts of neck, subs encntr|Crushing injury of oth parts of neck, subs encntr +C2977799|T037|PT|S17.8XXD|ICD10CM|Crushing injury of other specified parts of neck, subsequent encounter|Crushing injury of other specified parts of neck, subsequent encounter +C2977800|T037|AB|S17.8XXS|ICD10CM|Crushing injury of other specified parts of neck, sequela|Crushing injury of other specified parts of neck, sequela +C2977800|T037|PT|S17.8XXS|ICD10CM|Crushing injury of other specified parts of neck, sequela|Crushing injury of other specified parts of neck, sequela +C0273433|T037|PT|S17.9|ICD10|Crushing injury of neck, part unspecified|Crushing injury of neck, part unspecified +C0273433|T037|HT|S17.9|ICD10CM|Crushing injury of neck, part unspecified|Crushing injury of neck, part unspecified +C0273433|T037|AB|S17.9|ICD10CM|Crushing injury of neck, part unspecified|Crushing injury of neck, part unspecified +C2834345|T037|AB|S17.9XXA|ICD10CM|Crushing injury of neck, part unspecified, initial encounter|Crushing injury of neck, part unspecified, initial encounter +C2834345|T037|PT|S17.9XXA|ICD10CM|Crushing injury of neck, part unspecified, initial encounter|Crushing injury of neck, part unspecified, initial encounter +C2834346|T037|AB|S17.9XXD|ICD10CM|Crushing injury of neck, part unspecified, subs encntr|Crushing injury of neck, part unspecified, subs encntr +C2834346|T037|PT|S17.9XXD|ICD10CM|Crushing injury of neck, part unspecified, subsequent encounter|Crushing injury of neck, part unspecified, subsequent encounter +C2834347|T037|AB|S17.9XXS|ICD10CM|Crushing injury of neck, part unspecified, sequela|Crushing injury of neck, part unspecified, sequela +C2834347|T037|PT|S17.9XXS|ICD10CM|Crushing injury of neck, part unspecified, sequela|Crushing injury of neck, part unspecified, sequela +C0413398|T037|PT|S18|ICD10|Traumatic amputation at neck level|Traumatic amputation at neck level +C0495825|T037|HT|S19|ICD10|Other and unspecified injuries of neck|Other and unspecified injuries of neck +C0495825|T037|AB|S19|ICD10CM|Other specified and unspecified injuries of neck|Other specified and unspecified injuries of neck +C0495825|T037|HT|S19|ICD10CM|Other specified and unspecified injuries of neck|Other specified and unspecified injuries of neck +C0451950|T037|PT|S19.7|ICD10|Multiple injuries of neck|Multiple injuries of neck +C0478229|T037|PT|S19.8|ICD10|Other specified injuries of neck|Other specified injuries of neck +C0478229|T037|HT|S19.8|ICD10CM|Other specified injuries of neck|Other specified injuries of neck +C0478229|T037|AB|S19.8|ICD10CM|Other specified injuries of neck|Other specified injuries of neck +C2834348|T037|AB|S19.80|ICD10CM|Other specified injuries of unspecified part of neck|Other specified injuries of unspecified part of neck +C2834348|T037|HT|S19.80|ICD10CM|Other specified injuries of unspecified part of neck|Other specified injuries of unspecified part of neck +C2834349|T037|AB|S19.80XA|ICD10CM|Oth injuries of unspecified part of neck, init encntr|Oth injuries of unspecified part of neck, init encntr +C2834349|T037|PT|S19.80XA|ICD10CM|Other specified injuries of unspecified part of neck, initial encounter|Other specified injuries of unspecified part of neck, initial encounter +C2834350|T037|AB|S19.80XD|ICD10CM|Oth injuries of unspecified part of neck, subs encntr|Oth injuries of unspecified part of neck, subs encntr +C2834350|T037|PT|S19.80XD|ICD10CM|Other specified injuries of unspecified part of neck, subsequent encounter|Other specified injuries of unspecified part of neck, subsequent encounter +C2834351|T037|AB|S19.80XS|ICD10CM|Oth injuries of unspecified part of neck, sequela|Oth injuries of unspecified part of neck, sequela +C2834351|T037|PT|S19.80XS|ICD10CM|Other specified injuries of unspecified part of neck, sequela|Other specified injuries of unspecified part of neck, sequela +C2834352|T037|AB|S19.81|ICD10CM|Other specified injuries of larynx|Other specified injuries of larynx +C2834352|T037|HT|S19.81|ICD10CM|Other specified injuries of larynx|Other specified injuries of larynx +C2834353|T037|AB|S19.81XA|ICD10CM|Other specified injuries of larynx, initial encounter|Other specified injuries of larynx, initial encounter +C2834353|T037|PT|S19.81XA|ICD10CM|Other specified injuries of larynx, initial encounter|Other specified injuries of larynx, initial encounter +C2834354|T037|AB|S19.81XD|ICD10CM|Other specified injuries of larynx, subsequent encounter|Other specified injuries of larynx, subsequent encounter +C2834354|T037|PT|S19.81XD|ICD10CM|Other specified injuries of larynx, subsequent encounter|Other specified injuries of larynx, subsequent encounter +C2834355|T037|AB|S19.81XS|ICD10CM|Other specified injuries of larynx, sequela|Other specified injuries of larynx, sequela +C2834355|T037|PT|S19.81XS|ICD10CM|Other specified injuries of larynx, sequela|Other specified injuries of larynx, sequela +C2834356|T037|AB|S19.82|ICD10CM|Other specified injuries of cervical trachea|Other specified injuries of cervical trachea +C2834356|T037|HT|S19.82|ICD10CM|Other specified injuries of cervical trachea|Other specified injuries of cervical trachea +C2834357|T037|AB|S19.82XA|ICD10CM|Other specified injuries of cervical trachea, init encntr|Other specified injuries of cervical trachea, init encntr +C2834357|T037|PT|S19.82XA|ICD10CM|Other specified injuries of cervical trachea, initial encounter|Other specified injuries of cervical trachea, initial encounter +C2834358|T037|AB|S19.82XD|ICD10CM|Other specified injuries of cervical trachea, subs encntr|Other specified injuries of cervical trachea, subs encntr +C2834358|T037|PT|S19.82XD|ICD10CM|Other specified injuries of cervical trachea, subsequent encounter|Other specified injuries of cervical trachea, subsequent encounter +C2834359|T037|AB|S19.82XS|ICD10CM|Other specified injuries of cervical trachea, sequela|Other specified injuries of cervical trachea, sequela +C2834359|T037|PT|S19.82XS|ICD10CM|Other specified injuries of cervical trachea, sequela|Other specified injuries of cervical trachea, sequela +C2834360|T037|AB|S19.83|ICD10CM|Other specified injuries of vocal cord|Other specified injuries of vocal cord +C2834360|T037|HT|S19.83|ICD10CM|Other specified injuries of vocal cord|Other specified injuries of vocal cord +C2834361|T037|AB|S19.83XA|ICD10CM|Other specified injuries of vocal cord, initial encounter|Other specified injuries of vocal cord, initial encounter +C2834361|T037|PT|S19.83XA|ICD10CM|Other specified injuries of vocal cord, initial encounter|Other specified injuries of vocal cord, initial encounter +C2834362|T037|AB|S19.83XD|ICD10CM|Other specified injuries of vocal cord, subsequent encounter|Other specified injuries of vocal cord, subsequent encounter +C2834362|T037|PT|S19.83XD|ICD10CM|Other specified injuries of vocal cord, subsequent encounter|Other specified injuries of vocal cord, subsequent encounter +C2834363|T037|AB|S19.83XS|ICD10CM|Other specified injuries of vocal cord, sequela|Other specified injuries of vocal cord, sequela +C2834363|T037|PT|S19.83XS|ICD10CM|Other specified injuries of vocal cord, sequela|Other specified injuries of vocal cord, sequela +C2834364|T037|AB|S19.84|ICD10CM|Other specified injuries of thyroid gland|Other specified injuries of thyroid gland +C2834364|T037|HT|S19.84|ICD10CM|Other specified injuries of thyroid gland|Other specified injuries of thyroid gland +C2834365|T037|AB|S19.84XA|ICD10CM|Other specified injuries of thyroid gland, initial encounter|Other specified injuries of thyroid gland, initial encounter +C2834365|T037|PT|S19.84XA|ICD10CM|Other specified injuries of thyroid gland, initial encounter|Other specified injuries of thyroid gland, initial encounter +C2834366|T037|AB|S19.84XD|ICD10CM|Other specified injuries of thyroid gland, subs encntr|Other specified injuries of thyroid gland, subs encntr +C2834366|T037|PT|S19.84XD|ICD10CM|Other specified injuries of thyroid gland, subsequent encounter|Other specified injuries of thyroid gland, subsequent encounter +C2834367|T037|AB|S19.84XS|ICD10CM|Other specified injuries of thyroid gland, sequela|Other specified injuries of thyroid gland, sequela +C2834367|T037|PT|S19.84XS|ICD10CM|Other specified injuries of thyroid gland, sequela|Other specified injuries of thyroid gland, sequela +C2834368|T037|AB|S19.85|ICD10CM|Other specified injuries of pharynx and cervical esophagus|Other specified injuries of pharynx and cervical esophagus +C2834368|T037|HT|S19.85|ICD10CM|Other specified injuries of pharynx and cervical esophagus|Other specified injuries of pharynx and cervical esophagus +C2834369|T037|AB|S19.85XA|ICD10CM|Oth injuries of pharynx and cervical esophagus, init encntr|Oth injuries of pharynx and cervical esophagus, init encntr +C2834369|T037|PT|S19.85XA|ICD10CM|Other specified injuries of pharynx and cervical esophagus, initial encounter|Other specified injuries of pharynx and cervical esophagus, initial encounter +C2834370|T037|AB|S19.85XD|ICD10CM|Oth injuries of pharynx and cervical esophagus, subs encntr|Oth injuries of pharynx and cervical esophagus, subs encntr +C2834370|T037|PT|S19.85XD|ICD10CM|Other specified injuries of pharynx and cervical esophagus, subsequent encounter|Other specified injuries of pharynx and cervical esophagus, subsequent encounter +C2834371|T037|AB|S19.85XS|ICD10CM|Oth injuries of pharynx and cervical esophagus, sequela|Oth injuries of pharynx and cervical esophagus, sequela +C2834371|T037|PT|S19.85XS|ICD10CM|Other specified injuries of pharynx and cervical esophagus, sequela|Other specified injuries of pharynx and cervical esophagus, sequela +C2834372|T037|AB|S19.89|ICD10CM|Other specified injuries of other specified part of neck|Other specified injuries of other specified part of neck +C2834372|T037|HT|S19.89|ICD10CM|Other specified injuries of other specified part of neck|Other specified injuries of other specified part of neck +C2977801|T037|AB|S19.89XA|ICD10CM|Oth injuries of other specified part of neck, init encntr|Oth injuries of other specified part of neck, init encntr +C2977801|T037|PT|S19.89XA|ICD10CM|Other specified injuries of other specified part of neck, initial encounter|Other specified injuries of other specified part of neck, initial encounter +C2977802|T037|AB|S19.89XD|ICD10CM|Oth injuries of other specified part of neck, subs encntr|Oth injuries of other specified part of neck, subs encntr +C2977802|T037|PT|S19.89XD|ICD10CM|Other specified injuries of other specified part of neck, subsequent encounter|Other specified injuries of other specified part of neck, subsequent encounter +C2977803|T037|AB|S19.89XS|ICD10CM|Oth injuries of other specified part of neck, sequela|Oth injuries of other specified part of neck, sequela +C2977803|T037|PT|S19.89XS|ICD10CM|Other specified injuries of other specified part of neck, sequela|Other specified injuries of other specified part of neck, sequela +C0027531|T037|HT|S19.9|ICD10CM|Unspecified injury of neck|Unspecified injury of neck +C0027531|T037|AB|S19.9|ICD10CM|Unspecified injury of neck|Unspecified injury of neck +C0027531|T037|PT|S19.9|ICD10|Unspecified injury of neck|Unspecified injury of neck +C2834376|T037|AB|S19.9XXA|ICD10CM|Unspecified injury of neck, initial encounter|Unspecified injury of neck, initial encounter +C2834376|T037|PT|S19.9XXA|ICD10CM|Unspecified injury of neck, initial encounter|Unspecified injury of neck, initial encounter +C2834377|T037|AB|S19.9XXD|ICD10CM|Unspecified injury of neck, subsequent encounter|Unspecified injury of neck, subsequent encounter +C2834377|T037|PT|S19.9XXD|ICD10CM|Unspecified injury of neck, subsequent encounter|Unspecified injury of neck, subsequent encounter +C2834378|T037|AB|S19.9XXS|ICD10CM|Unspecified injury of neck, sequela|Unspecified injury of neck, sequela +C2834378|T037|PT|S19.9XXS|ICD10CM|Unspecified injury of neck, sequela|Unspecified injury of neck, sequela +C1439255|T037|AB|S20|ICD10CM|Superficial injury of thorax|Superficial injury of thorax +C1439255|T037|HT|S20|ICD10CM|Superficial injury of thorax|Superficial injury of thorax +C1439255|T037|HT|S20|ICD10|Superficial injury of thorax|Superficial injury of thorax +C0272433|T037|ET|S20-S29|ICD10CM|injuries of breast|injuries of breast +C0272434|T037|ET|S20-S29|ICD10CM|injuries of chest (wall)|injuries of chest (wall) +C4290320|T037|ET|S20-S29|ICD10CM|injuries of interscapular area|injuries of interscapular area +C0039980|T037|HT|S20-S29|ICD10CM|Injuries to the thorax (S20-S29)|Injuries to the thorax (S20-S29) +C0039980|T037|HT|S20-S29.9|ICD10|Injuries to the thorax|Injuries to the thorax +C0160924|T037|PT|S20.0|ICD10|Contusion of breast|Contusion of breast +C0160924|T037|HT|S20.0|ICD10CM|Contusion of breast|Contusion of breast +C0160924|T037|AB|S20.0|ICD10CM|Contusion of breast|Contusion of breast +C2834380|T037|AB|S20.00|ICD10CM|Contusion of breast, unspecified breast|Contusion of breast, unspecified breast +C2834380|T037|HT|S20.00|ICD10CM|Contusion of breast, unspecified breast|Contusion of breast, unspecified breast +C2834381|T037|PT|S20.00XA|ICD10CM|Contusion of breast, unspecified breast, initial encounter|Contusion of breast, unspecified breast, initial encounter +C2834381|T037|AB|S20.00XA|ICD10CM|Contusion of breast, unspecified breast, initial encounter|Contusion of breast, unspecified breast, initial encounter +C2834382|T037|AB|S20.00XD|ICD10CM|Contusion of breast, unspecified breast, subs encntr|Contusion of breast, unspecified breast, subs encntr +C2834382|T037|PT|S20.00XD|ICD10CM|Contusion of breast, unspecified breast, subsequent encounter|Contusion of breast, unspecified breast, subsequent encounter +C2834383|T037|PT|S20.00XS|ICD10CM|Contusion of breast, unspecified breast, sequela|Contusion of breast, unspecified breast, sequela +C2834383|T037|AB|S20.00XS|ICD10CM|Contusion of breast, unspecified breast, sequela|Contusion of breast, unspecified breast, sequela +C2200981|T037|HT|S20.01|ICD10CM|Contusion of right breast|Contusion of right breast +C2200981|T037|AB|S20.01|ICD10CM|Contusion of right breast|Contusion of right breast +C2834384|T037|AB|S20.01XA|ICD10CM|Contusion of right breast, initial encounter|Contusion of right breast, initial encounter +C2834384|T037|PT|S20.01XA|ICD10CM|Contusion of right breast, initial encounter|Contusion of right breast, initial encounter +C2834385|T037|AB|S20.01XD|ICD10CM|Contusion of right breast, subsequent encounter|Contusion of right breast, subsequent encounter +C2834385|T037|PT|S20.01XD|ICD10CM|Contusion of right breast, subsequent encounter|Contusion of right breast, subsequent encounter +C2834386|T037|AB|S20.01XS|ICD10CM|Contusion of right breast, sequela|Contusion of right breast, sequela +C2834386|T037|PT|S20.01XS|ICD10CM|Contusion of right breast, sequela|Contusion of right breast, sequela +C2140289|T037|HT|S20.02|ICD10CM|Contusion of left breast|Contusion of left breast +C2140289|T037|AB|S20.02|ICD10CM|Contusion of left breast|Contusion of left breast +C2834387|T037|AB|S20.02XA|ICD10CM|Contusion of left breast, initial encounter|Contusion of left breast, initial encounter +C2834387|T037|PT|S20.02XA|ICD10CM|Contusion of left breast, initial encounter|Contusion of left breast, initial encounter +C2834388|T037|AB|S20.02XD|ICD10CM|Contusion of left breast, subsequent encounter|Contusion of left breast, subsequent encounter +C2834388|T037|PT|S20.02XD|ICD10CM|Contusion of left breast, subsequent encounter|Contusion of left breast, subsequent encounter +C2834389|T037|AB|S20.02XS|ICD10CM|Contusion of left breast, sequela|Contusion of left breast, sequela +C2834389|T037|PT|S20.02XS|ICD10CM|Contusion of left breast, sequela|Contusion of left breast, sequela +C0478230|T037|PT|S20.1|ICD10|Other and unspecified superficial injuries of breast|Other and unspecified superficial injuries of breast +C0478230|T037|HT|S20.1|ICD10CM|Other and unspecified superficial injuries of breast|Other and unspecified superficial injuries of breast +C0478230|T037|AB|S20.1|ICD10CM|Other and unspecified superficial injuries of breast|Other and unspecified superficial injuries of breast +C2834390|T037|AB|S20.10|ICD10CM|Unspecified superficial injuries of breast|Unspecified superficial injuries of breast +C2834390|T037|HT|S20.10|ICD10CM|Unspecified superficial injuries of breast|Unspecified superficial injuries of breast +C2834391|T037|AB|S20.101|ICD10CM|Unspecified superficial injuries of breast, right breast|Unspecified superficial injuries of breast, right breast +C2834391|T037|HT|S20.101|ICD10CM|Unspecified superficial injuries of breast, right breast|Unspecified superficial injuries of breast, right breast +C2834392|T037|AB|S20.101A|ICD10CM|Unsp superficial injuries of breast, right breast, init|Unsp superficial injuries of breast, right breast, init +C2834392|T037|PT|S20.101A|ICD10CM|Unspecified superficial injuries of breast, right breast, initial encounter|Unspecified superficial injuries of breast, right breast, initial encounter +C2834393|T037|AB|S20.101D|ICD10CM|Unsp superficial injuries of breast, right breast, subs|Unsp superficial injuries of breast, right breast, subs +C2834393|T037|PT|S20.101D|ICD10CM|Unspecified superficial injuries of breast, right breast, subsequent encounter|Unspecified superficial injuries of breast, right breast, subsequent encounter +C2834394|T037|AB|S20.101S|ICD10CM|Unsp superficial injuries of breast, right breast, sequela|Unsp superficial injuries of breast, right breast, sequela +C2834394|T037|PT|S20.101S|ICD10CM|Unspecified superficial injuries of breast, right breast, sequela|Unspecified superficial injuries of breast, right breast, sequela +C2834395|T037|AB|S20.102|ICD10CM|Unspecified superficial injuries of breast, left breast|Unspecified superficial injuries of breast, left breast +C2834395|T037|HT|S20.102|ICD10CM|Unspecified superficial injuries of breast, left breast|Unspecified superficial injuries of breast, left breast +C2834396|T037|AB|S20.102A|ICD10CM|Unsp superficial injuries of breast, left breast, init|Unsp superficial injuries of breast, left breast, init +C2834396|T037|PT|S20.102A|ICD10CM|Unspecified superficial injuries of breast, left breast, initial encounter|Unspecified superficial injuries of breast, left breast, initial encounter +C2834397|T037|AB|S20.102D|ICD10CM|Unsp superficial injuries of breast, left breast, subs|Unsp superficial injuries of breast, left breast, subs +C2834397|T037|PT|S20.102D|ICD10CM|Unspecified superficial injuries of breast, left breast, subsequent encounter|Unspecified superficial injuries of breast, left breast, subsequent encounter +C2834398|T037|AB|S20.102S|ICD10CM|Unsp superficial injuries of breast, left breast, sequela|Unsp superficial injuries of breast, left breast, sequela +C2834398|T037|PT|S20.102S|ICD10CM|Unspecified superficial injuries of breast, left breast, sequela|Unspecified superficial injuries of breast, left breast, sequela +C2834399|T037|AB|S20.109|ICD10CM|Unsp superficial injuries of breast, unspecified breast|Unsp superficial injuries of breast, unspecified breast +C2834399|T037|HT|S20.109|ICD10CM|Unspecified superficial injuries of breast, unspecified breast|Unspecified superficial injuries of breast, unspecified breast +C2834400|T037|AB|S20.109A|ICD10CM|Unsp superficial injuries of breast, unsp breast, init|Unsp superficial injuries of breast, unsp breast, init +C2834400|T037|PT|S20.109A|ICD10CM|Unspecified superficial injuries of breast, unspecified breast, initial encounter|Unspecified superficial injuries of breast, unspecified breast, initial encounter +C2834401|T037|AB|S20.109D|ICD10CM|Unsp superficial injuries of breast, unsp breast, subs|Unsp superficial injuries of breast, unsp breast, subs +C2834401|T037|PT|S20.109D|ICD10CM|Unspecified superficial injuries of breast, unspecified breast, subsequent encounter|Unspecified superficial injuries of breast, unspecified breast, subsequent encounter +C2834402|T037|AB|S20.109S|ICD10CM|Unsp superficial injuries of breast, unsp breast, sequela|Unsp superficial injuries of breast, unsp breast, sequela +C2834402|T037|PT|S20.109S|ICD10CM|Unspecified superficial injuries of breast, unspecified breast, sequela|Unspecified superficial injuries of breast, unspecified breast, sequela +C0432805|T037|AB|S20.11|ICD10CM|Abrasion of breast|Abrasion of breast +C0432805|T037|HT|S20.11|ICD10CM|Abrasion of breast|Abrasion of breast +C2834403|T037|AB|S20.111|ICD10CM|Abrasion of breast, right breast|Abrasion of breast, right breast +C2834403|T037|HT|S20.111|ICD10CM|Abrasion of breast, right breast|Abrasion of breast, right breast +C2834404|T037|AB|S20.111A|ICD10CM|Abrasion of breast, right breast, initial encounter|Abrasion of breast, right breast, initial encounter +C2834404|T037|PT|S20.111A|ICD10CM|Abrasion of breast, right breast, initial encounter|Abrasion of breast, right breast, initial encounter +C2834405|T037|AB|S20.111D|ICD10CM|Abrasion of breast, right breast, subsequent encounter|Abrasion of breast, right breast, subsequent encounter +C2834405|T037|PT|S20.111D|ICD10CM|Abrasion of breast, right breast, subsequent encounter|Abrasion of breast, right breast, subsequent encounter +C2834406|T037|AB|S20.111S|ICD10CM|Abrasion of breast, right breast, sequela|Abrasion of breast, right breast, sequela +C2834406|T037|PT|S20.111S|ICD10CM|Abrasion of breast, right breast, sequela|Abrasion of breast, right breast, sequela +C2834407|T037|AB|S20.112|ICD10CM|Abrasion of breast, left breast|Abrasion of breast, left breast +C2834407|T037|HT|S20.112|ICD10CM|Abrasion of breast, left breast|Abrasion of breast, left breast +C2834408|T037|AB|S20.112A|ICD10CM|Abrasion of breast, left breast, initial encounter|Abrasion of breast, left breast, initial encounter +C2834408|T037|PT|S20.112A|ICD10CM|Abrasion of breast, left breast, initial encounter|Abrasion of breast, left breast, initial encounter +C2834409|T037|AB|S20.112D|ICD10CM|Abrasion of breast, left breast, subsequent encounter|Abrasion of breast, left breast, subsequent encounter +C2834409|T037|PT|S20.112D|ICD10CM|Abrasion of breast, left breast, subsequent encounter|Abrasion of breast, left breast, subsequent encounter +C2834410|T037|AB|S20.112S|ICD10CM|Abrasion of breast, left breast, sequela|Abrasion of breast, left breast, sequela +C2834410|T037|PT|S20.112S|ICD10CM|Abrasion of breast, left breast, sequela|Abrasion of breast, left breast, sequela +C2834411|T037|AB|S20.119|ICD10CM|Abrasion of breast, unspecified breast|Abrasion of breast, unspecified breast +C2834411|T037|HT|S20.119|ICD10CM|Abrasion of breast, unspecified breast|Abrasion of breast, unspecified breast +C2834412|T037|PT|S20.119A|ICD10CM|Abrasion of breast, unspecified breast, initial encounter|Abrasion of breast, unspecified breast, initial encounter +C2834412|T037|AB|S20.119A|ICD10CM|Abrasion of breast, unspecified breast, initial encounter|Abrasion of breast, unspecified breast, initial encounter +C2834413|T037|AB|S20.119D|ICD10CM|Abrasion of breast, unspecified breast, subsequent encounter|Abrasion of breast, unspecified breast, subsequent encounter +C2834413|T037|PT|S20.119D|ICD10CM|Abrasion of breast, unspecified breast, subsequent encounter|Abrasion of breast, unspecified breast, subsequent encounter +C2834414|T037|PT|S20.119S|ICD10CM|Abrasion of breast, unspecified breast, sequela|Abrasion of breast, unspecified breast, sequela +C2834414|T037|AB|S20.119S|ICD10CM|Abrasion of breast, unspecified breast, sequela|Abrasion of breast, unspecified breast, sequela +C2834415|T037|AB|S20.12|ICD10CM|Blister (nonthermal) of breast|Blister (nonthermal) of breast +C2834415|T037|HT|S20.12|ICD10CM|Blister (nonthermal) of breast|Blister (nonthermal) of breast +C2834416|T037|AB|S20.121|ICD10CM|Blister (nonthermal) of breast, right breast|Blister (nonthermal) of breast, right breast +C2834416|T037|HT|S20.121|ICD10CM|Blister (nonthermal) of breast, right breast|Blister (nonthermal) of breast, right breast +C2834417|T037|AB|S20.121A|ICD10CM|Blister (nonthermal) of breast, right breast, init encntr|Blister (nonthermal) of breast, right breast, init encntr +C2834417|T037|PT|S20.121A|ICD10CM|Blister (nonthermal) of breast, right breast, initial encounter|Blister (nonthermal) of breast, right breast, initial encounter +C2834418|T037|AB|S20.121D|ICD10CM|Blister (nonthermal) of breast, right breast, subs encntr|Blister (nonthermal) of breast, right breast, subs encntr +C2834418|T037|PT|S20.121D|ICD10CM|Blister (nonthermal) of breast, right breast, subsequent encounter|Blister (nonthermal) of breast, right breast, subsequent encounter +C2834419|T037|AB|S20.121S|ICD10CM|Blister (nonthermal) of breast, right breast, sequela|Blister (nonthermal) of breast, right breast, sequela +C2834419|T037|PT|S20.121S|ICD10CM|Blister (nonthermal) of breast, right breast, sequela|Blister (nonthermal) of breast, right breast, sequela +C2834420|T037|AB|S20.122|ICD10CM|Blister (nonthermal) of breast, left breast|Blister (nonthermal) of breast, left breast +C2834420|T037|HT|S20.122|ICD10CM|Blister (nonthermal) of breast, left breast|Blister (nonthermal) of breast, left breast +C2834421|T037|AB|S20.122A|ICD10CM|Blister (nonthermal) of breast, left breast, init encntr|Blister (nonthermal) of breast, left breast, init encntr +C2834421|T037|PT|S20.122A|ICD10CM|Blister (nonthermal) of breast, left breast, initial encounter|Blister (nonthermal) of breast, left breast, initial encounter +C2834422|T037|AB|S20.122D|ICD10CM|Blister (nonthermal) of breast, left breast, subs encntr|Blister (nonthermal) of breast, left breast, subs encntr +C2834422|T037|PT|S20.122D|ICD10CM|Blister (nonthermal) of breast, left breast, subsequent encounter|Blister (nonthermal) of breast, left breast, subsequent encounter +C2834423|T037|AB|S20.122S|ICD10CM|Blister (nonthermal) of breast, left breast, sequela|Blister (nonthermal) of breast, left breast, sequela +C2834423|T037|PT|S20.122S|ICD10CM|Blister (nonthermal) of breast, left breast, sequela|Blister (nonthermal) of breast, left breast, sequela +C2834424|T037|AB|S20.129|ICD10CM|Blister (nonthermal) of breast, unspecified breast|Blister (nonthermal) of breast, unspecified breast +C2834424|T037|HT|S20.129|ICD10CM|Blister (nonthermal) of breast, unspecified breast|Blister (nonthermal) of breast, unspecified breast +C2834425|T037|AB|S20.129A|ICD10CM|Blister (nonthermal) of breast, unsp breast, init encntr|Blister (nonthermal) of breast, unsp breast, init encntr +C2834425|T037|PT|S20.129A|ICD10CM|Blister (nonthermal) of breast, unspecified breast, initial encounter|Blister (nonthermal) of breast, unspecified breast, initial encounter +C2834426|T037|AB|S20.129D|ICD10CM|Blister (nonthermal) of breast, unsp breast, subs encntr|Blister (nonthermal) of breast, unsp breast, subs encntr +C2834426|T037|PT|S20.129D|ICD10CM|Blister (nonthermal) of breast, unspecified breast, subsequent encounter|Blister (nonthermal) of breast, unspecified breast, subsequent encounter +C2834427|T037|AB|S20.129S|ICD10CM|Blister (nonthermal) of breast, unspecified breast, sequela|Blister (nonthermal) of breast, unspecified breast, sequela +C2834427|T037|PT|S20.129S|ICD10CM|Blister (nonthermal) of breast, unspecified breast, sequela|Blister (nonthermal) of breast, unspecified breast, sequela +C2834428|T037|AB|S20.14|ICD10CM|External constriction of part of breast|External constriction of part of breast +C2834428|T037|HT|S20.14|ICD10CM|External constriction of part of breast|External constriction of part of breast +C2834429|T037|AB|S20.141|ICD10CM|External constriction of part of breast, right breast|External constriction of part of breast, right breast +C2834429|T037|HT|S20.141|ICD10CM|External constriction of part of breast, right breast|External constriction of part of breast, right breast +C2834430|T037|AB|S20.141A|ICD10CM|External constriction of part of breast, right breast, init|External constriction of part of breast, right breast, init +C2834430|T037|PT|S20.141A|ICD10CM|External constriction of part of breast, right breast, initial encounter|External constriction of part of breast, right breast, initial encounter +C2834431|T037|AB|S20.141D|ICD10CM|External constriction of part of breast, right breast, subs|External constriction of part of breast, right breast, subs +C2834431|T037|PT|S20.141D|ICD10CM|External constriction of part of breast, right breast, subsequent encounter|External constriction of part of breast, right breast, subsequent encounter +C2834432|T037|AB|S20.141S|ICD10CM|External constrict of part of breast, right breast, sequela|External constrict of part of breast, right breast, sequela +C2834432|T037|PT|S20.141S|ICD10CM|External constriction of part of breast, right breast, sequela|External constriction of part of breast, right breast, sequela +C2834433|T037|AB|S20.142|ICD10CM|External constriction of part of breast, left breast|External constriction of part of breast, left breast +C2834433|T037|HT|S20.142|ICD10CM|External constriction of part of breast, left breast|External constriction of part of breast, left breast +C2834434|T037|AB|S20.142A|ICD10CM|External constriction of part of breast, left breast, init|External constriction of part of breast, left breast, init +C2834434|T037|PT|S20.142A|ICD10CM|External constriction of part of breast, left breast, initial encounter|External constriction of part of breast, left breast, initial encounter +C2834435|T037|AB|S20.142D|ICD10CM|External constriction of part of breast, left breast, subs|External constriction of part of breast, left breast, subs +C2834435|T037|PT|S20.142D|ICD10CM|External constriction of part of breast, left breast, subsequent encounter|External constriction of part of breast, left breast, subsequent encounter +C2834436|T037|AB|S20.142S|ICD10CM|External constrict of part of breast, left breast, sequela|External constrict of part of breast, left breast, sequela +C2834436|T037|PT|S20.142S|ICD10CM|External constriction of part of breast, left breast, sequela|External constriction of part of breast, left breast, sequela +C2834437|T037|AB|S20.149|ICD10CM|External constriction of part of breast, unspecified breast|External constriction of part of breast, unspecified breast +C2834437|T037|HT|S20.149|ICD10CM|External constriction of part of breast, unspecified breast|External constriction of part of breast, unspecified breast +C2834438|T037|AB|S20.149A|ICD10CM|External constriction of part of breast, unsp breast, init|External constriction of part of breast, unsp breast, init +C2834438|T037|PT|S20.149A|ICD10CM|External constriction of part of breast, unspecified breast, initial encounter|External constriction of part of breast, unspecified breast, initial encounter +C2834439|T037|AB|S20.149D|ICD10CM|External constriction of part of breast, unsp breast, subs|External constriction of part of breast, unsp breast, subs +C2834439|T037|PT|S20.149D|ICD10CM|External constriction of part of breast, unspecified breast, subsequent encounter|External constriction of part of breast, unspecified breast, subsequent encounter +C2834440|T037|AB|S20.149S|ICD10CM|External constrict of part of breast, unsp breast, sequela|External constrict of part of breast, unsp breast, sequela +C2834440|T037|PT|S20.149S|ICD10CM|External constriction of part of breast, unspecified breast, sequela|External constriction of part of breast, unspecified breast, sequela +C2018796|T037|ET|S20.15|ICD10CM|Splinter in the breast|Splinter in the breast +C2834441|T037|HT|S20.15|ICD10CM|Superficial foreign body of breast|Superficial foreign body of breast +C2834441|T037|AB|S20.15|ICD10CM|Superficial foreign body of breast|Superficial foreign body of breast +C2834442|T037|AB|S20.151|ICD10CM|Superficial foreign body of breast, right breast|Superficial foreign body of breast, right breast +C2834442|T037|HT|S20.151|ICD10CM|Superficial foreign body of breast, right breast|Superficial foreign body of breast, right breast +C2834443|T037|AB|S20.151A|ICD10CM|Superficial foreign body of breast, right breast, init|Superficial foreign body of breast, right breast, init +C2834443|T037|PT|S20.151A|ICD10CM|Superficial foreign body of breast, right breast, initial encounter|Superficial foreign body of breast, right breast, initial encounter +C2834444|T037|AB|S20.151D|ICD10CM|Superficial foreign body of breast, right breast, subs|Superficial foreign body of breast, right breast, subs +C2834444|T037|PT|S20.151D|ICD10CM|Superficial foreign body of breast, right breast, subsequent encounter|Superficial foreign body of breast, right breast, subsequent encounter +C2834445|T037|AB|S20.151S|ICD10CM|Superficial foreign body of breast, right breast, sequela|Superficial foreign body of breast, right breast, sequela +C2834445|T037|PT|S20.151S|ICD10CM|Superficial foreign body of breast, right breast, sequela|Superficial foreign body of breast, right breast, sequela +C2834446|T037|AB|S20.152|ICD10CM|Superficial foreign body of breast, left breast|Superficial foreign body of breast, left breast +C2834446|T037|HT|S20.152|ICD10CM|Superficial foreign body of breast, left breast|Superficial foreign body of breast, left breast +C2834447|T037|AB|S20.152A|ICD10CM|Superficial foreign body of breast, left breast, init encntr|Superficial foreign body of breast, left breast, init encntr +C2834447|T037|PT|S20.152A|ICD10CM|Superficial foreign body of breast, left breast, initial encounter|Superficial foreign body of breast, left breast, initial encounter +C2834448|T037|AB|S20.152D|ICD10CM|Superficial foreign body of breast, left breast, subs encntr|Superficial foreign body of breast, left breast, subs encntr +C2834448|T037|PT|S20.152D|ICD10CM|Superficial foreign body of breast, left breast, subsequent encounter|Superficial foreign body of breast, left breast, subsequent encounter +C2834449|T037|AB|S20.152S|ICD10CM|Superficial foreign body of breast, left breast, sequela|Superficial foreign body of breast, left breast, sequela +C2834449|T037|PT|S20.152S|ICD10CM|Superficial foreign body of breast, left breast, sequela|Superficial foreign body of breast, left breast, sequela +C2834450|T037|AB|S20.159|ICD10CM|Superficial foreign body of breast, unspecified breast|Superficial foreign body of breast, unspecified breast +C2834450|T037|HT|S20.159|ICD10CM|Superficial foreign body of breast, unspecified breast|Superficial foreign body of breast, unspecified breast +C2834451|T037|AB|S20.159A|ICD10CM|Superficial foreign body of breast, unsp breast, init encntr|Superficial foreign body of breast, unsp breast, init encntr +C2834451|T037|PT|S20.159A|ICD10CM|Superficial foreign body of breast, unspecified breast, initial encounter|Superficial foreign body of breast, unspecified breast, initial encounter +C2834452|T037|AB|S20.159D|ICD10CM|Superficial foreign body of breast, unsp breast, subs encntr|Superficial foreign body of breast, unsp breast, subs encntr +C2834452|T037|PT|S20.159D|ICD10CM|Superficial foreign body of breast, unspecified breast, subsequent encounter|Superficial foreign body of breast, unspecified breast, subsequent encounter +C2834453|T037|AB|S20.159S|ICD10CM|Superficial foreign body of breast, unsp breast, sequela|Superficial foreign body of breast, unsp breast, sequela +C2834453|T037|PT|S20.159S|ICD10CM|Superficial foreign body of breast, unspecified breast, sequela|Superficial foreign body of breast, unspecified breast, sequela +C0433014|T037|AB|S20.16|ICD10CM|Insect bite (nonvenomous) of breast|Insect bite (nonvenomous) of breast +C0433014|T037|HT|S20.16|ICD10CM|Insect bite (nonvenomous) of breast|Insect bite (nonvenomous) of breast +C2834454|T037|AB|S20.161|ICD10CM|Insect bite (nonvenomous) of breast, right breast|Insect bite (nonvenomous) of breast, right breast +C2834454|T037|HT|S20.161|ICD10CM|Insect bite (nonvenomous) of breast, right breast|Insect bite (nonvenomous) of breast, right breast +C2834455|T037|AB|S20.161A|ICD10CM|Insect bite (nonvenomous) of breast, right breast, init|Insect bite (nonvenomous) of breast, right breast, init +C2834455|T037|PT|S20.161A|ICD10CM|Insect bite (nonvenomous) of breast, right breast, initial encounter|Insect bite (nonvenomous) of breast, right breast, initial encounter +C2834456|T037|AB|S20.161D|ICD10CM|Insect bite (nonvenomous) of breast, right breast, subs|Insect bite (nonvenomous) of breast, right breast, subs +C2834456|T037|PT|S20.161D|ICD10CM|Insect bite (nonvenomous) of breast, right breast, subsequent encounter|Insect bite (nonvenomous) of breast, right breast, subsequent encounter +C2834457|T037|AB|S20.161S|ICD10CM|Insect bite (nonvenomous) of breast, right breast, sequela|Insect bite (nonvenomous) of breast, right breast, sequela +C2834457|T037|PT|S20.161S|ICD10CM|Insect bite (nonvenomous) of breast, right breast, sequela|Insect bite (nonvenomous) of breast, right breast, sequela +C2834458|T037|AB|S20.162|ICD10CM|Insect bite (nonvenomous) of breast, left breast|Insect bite (nonvenomous) of breast, left breast +C2834458|T037|HT|S20.162|ICD10CM|Insect bite (nonvenomous) of breast, left breast|Insect bite (nonvenomous) of breast, left breast +C2834459|T037|AB|S20.162A|ICD10CM|Insect bite (nonvenomous) of breast, left breast, init|Insect bite (nonvenomous) of breast, left breast, init +C2834459|T037|PT|S20.162A|ICD10CM|Insect bite (nonvenomous) of breast, left breast, initial encounter|Insect bite (nonvenomous) of breast, left breast, initial encounter +C2834460|T037|AB|S20.162D|ICD10CM|Insect bite (nonvenomous) of breast, left breast, subs|Insect bite (nonvenomous) of breast, left breast, subs +C2834460|T037|PT|S20.162D|ICD10CM|Insect bite (nonvenomous) of breast, left breast, subsequent encounter|Insect bite (nonvenomous) of breast, left breast, subsequent encounter +C2834461|T037|AB|S20.162S|ICD10CM|Insect bite (nonvenomous) of breast, left breast, sequela|Insect bite (nonvenomous) of breast, left breast, sequela +C2834461|T037|PT|S20.162S|ICD10CM|Insect bite (nonvenomous) of breast, left breast, sequela|Insect bite (nonvenomous) of breast, left breast, sequela +C2834462|T037|AB|S20.169|ICD10CM|Insect bite (nonvenomous) of breast, unspecified breast|Insect bite (nonvenomous) of breast, unspecified breast +C2834462|T037|HT|S20.169|ICD10CM|Insect bite (nonvenomous) of breast, unspecified breast|Insect bite (nonvenomous) of breast, unspecified breast +C2834463|T037|AB|S20.169A|ICD10CM|Insect bite (nonvenomous) of breast, unsp breast, init|Insect bite (nonvenomous) of breast, unsp breast, init +C2834463|T037|PT|S20.169A|ICD10CM|Insect bite (nonvenomous) of breast, unspecified breast, initial encounter|Insect bite (nonvenomous) of breast, unspecified breast, initial encounter +C2834464|T037|AB|S20.169D|ICD10CM|Insect bite (nonvenomous) of breast, unsp breast, subs|Insect bite (nonvenomous) of breast, unsp breast, subs +C2834464|T037|PT|S20.169D|ICD10CM|Insect bite (nonvenomous) of breast, unspecified breast, subsequent encounter|Insect bite (nonvenomous) of breast, unspecified breast, subsequent encounter +C2834465|T037|AB|S20.169S|ICD10CM|Insect bite (nonvenomous) of breast, unsp breast, sequela|Insect bite (nonvenomous) of breast, unsp breast, sequela +C2834465|T037|PT|S20.169S|ICD10CM|Insect bite (nonvenomous) of breast, unspecified breast, sequela|Insect bite (nonvenomous) of breast, unspecified breast, sequela +C2834466|T037|AB|S20.17|ICD10CM|Other superficial bite of breast|Other superficial bite of breast +C2834466|T037|HT|S20.17|ICD10CM|Other superficial bite of breast|Other superficial bite of breast +C2834467|T037|AB|S20.171|ICD10CM|Other superficial bite of breast, right breast|Other superficial bite of breast, right breast +C2834467|T037|HT|S20.171|ICD10CM|Other superficial bite of breast, right breast|Other superficial bite of breast, right breast +C2834468|T037|AB|S20.171A|ICD10CM|Other superficial bite of breast, right breast, init encntr|Other superficial bite of breast, right breast, init encntr +C2834468|T037|PT|S20.171A|ICD10CM|Other superficial bite of breast, right breast, initial encounter|Other superficial bite of breast, right breast, initial encounter +C2834469|T037|AB|S20.171D|ICD10CM|Other superficial bite of breast, right breast, subs encntr|Other superficial bite of breast, right breast, subs encntr +C2834469|T037|PT|S20.171D|ICD10CM|Other superficial bite of breast, right breast, subsequent encounter|Other superficial bite of breast, right breast, subsequent encounter +C2834470|T037|AB|S20.171S|ICD10CM|Other superficial bite of breast, right breast, sequela|Other superficial bite of breast, right breast, sequela +C2834470|T037|PT|S20.171S|ICD10CM|Other superficial bite of breast, right breast, sequela|Other superficial bite of breast, right breast, sequela +C2834471|T037|AB|S20.172|ICD10CM|Other superficial bite of breast, left breast|Other superficial bite of breast, left breast +C2834471|T037|HT|S20.172|ICD10CM|Other superficial bite of breast, left breast|Other superficial bite of breast, left breast +C2834472|T037|AB|S20.172A|ICD10CM|Other superficial bite of breast, left breast, init encntr|Other superficial bite of breast, left breast, init encntr +C2834472|T037|PT|S20.172A|ICD10CM|Other superficial bite of breast, left breast, initial encounter|Other superficial bite of breast, left breast, initial encounter +C2834473|T037|AB|S20.172D|ICD10CM|Other superficial bite of breast, left breast, subs encntr|Other superficial bite of breast, left breast, subs encntr +C2834473|T037|PT|S20.172D|ICD10CM|Other superficial bite of breast, left breast, subsequent encounter|Other superficial bite of breast, left breast, subsequent encounter +C2834474|T037|AB|S20.172S|ICD10CM|Other superficial bite of breast, left breast, sequela|Other superficial bite of breast, left breast, sequela +C2834474|T037|PT|S20.172S|ICD10CM|Other superficial bite of breast, left breast, sequela|Other superficial bite of breast, left breast, sequela +C2834475|T037|AB|S20.179|ICD10CM|Other superficial bite of breast, unspecified breast|Other superficial bite of breast, unspecified breast +C2834475|T037|HT|S20.179|ICD10CM|Other superficial bite of breast, unspecified breast|Other superficial bite of breast, unspecified breast +C2834476|T037|AB|S20.179A|ICD10CM|Other superficial bite of breast, unsp breast, init encntr|Other superficial bite of breast, unsp breast, init encntr +C2834476|T037|PT|S20.179A|ICD10CM|Other superficial bite of breast, unspecified breast, initial encounter|Other superficial bite of breast, unspecified breast, initial encounter +C2834477|T037|AB|S20.179D|ICD10CM|Other superficial bite of breast, unsp breast, subs encntr|Other superficial bite of breast, unsp breast, subs encntr +C2834477|T037|PT|S20.179D|ICD10CM|Other superficial bite of breast, unspecified breast, subsequent encounter|Other superficial bite of breast, unspecified breast, subsequent encounter +C2834478|T037|AB|S20.179S|ICD10CM|Other superficial bite of breast, unsp breast, sequela|Other superficial bite of breast, unsp breast, sequela +C2834478|T037|PT|S20.179S|ICD10CM|Other superficial bite of breast, unspecified breast, sequela|Other superficial bite of breast, unspecified breast, sequela +C1439254|T037|HT|S20.2|ICD10CM|Contusion of thorax|Contusion of thorax +C1439254|T037|AB|S20.2|ICD10CM|Contusion of thorax|Contusion of thorax +C1439254|T037|PT|S20.2|ICD10|Contusion of thorax|Contusion of thorax +C1439254|T037|AB|S20.20|ICD10CM|Contusion of thorax, unspecified|Contusion of thorax, unspecified +C1439254|T037|HT|S20.20|ICD10CM|Contusion of thorax, unspecified|Contusion of thorax, unspecified +C2834480|T037|AB|S20.20XA|ICD10CM|Contusion of thorax, unspecified, initial encounter|Contusion of thorax, unspecified, initial encounter +C2834480|T037|PT|S20.20XA|ICD10CM|Contusion of thorax, unspecified, initial encounter|Contusion of thorax, unspecified, initial encounter +C2834481|T037|AB|S20.20XD|ICD10CM|Contusion of thorax, unspecified, subsequent encounter|Contusion of thorax, unspecified, subsequent encounter +C2834481|T037|PT|S20.20XD|ICD10CM|Contusion of thorax, unspecified, subsequent encounter|Contusion of thorax, unspecified, subsequent encounter +C2834482|T037|AB|S20.20XS|ICD10CM|Contusion of thorax, unspecified, sequela|Contusion of thorax, unspecified, sequela +C2834482|T037|PT|S20.20XS|ICD10CM|Contusion of thorax, unspecified, sequela|Contusion of thorax, unspecified, sequela +C2834483|T037|AB|S20.21|ICD10CM|Contusion of front wall of thorax|Contusion of front wall of thorax +C2834483|T037|HT|S20.21|ICD10CM|Contusion of front wall of thorax|Contusion of front wall of thorax +C2834484|T037|AB|S20.211|ICD10CM|Contusion of right front wall of thorax|Contusion of right front wall of thorax +C2834484|T037|HT|S20.211|ICD10CM|Contusion of right front wall of thorax|Contusion of right front wall of thorax +C2834485|T037|PT|S20.211A|ICD10CM|Contusion of right front wall of thorax, initial encounter|Contusion of right front wall of thorax, initial encounter +C2834485|T037|AB|S20.211A|ICD10CM|Contusion of right front wall of thorax, initial encounter|Contusion of right front wall of thorax, initial encounter +C2834486|T037|AB|S20.211D|ICD10CM|Contusion of right front wall of thorax, subs encntr|Contusion of right front wall of thorax, subs encntr +C2834486|T037|PT|S20.211D|ICD10CM|Contusion of right front wall of thorax, subsequent encounter|Contusion of right front wall of thorax, subsequent encounter +C2834487|T037|PT|S20.211S|ICD10CM|Contusion of right front wall of thorax, sequela|Contusion of right front wall of thorax, sequela +C2834487|T037|AB|S20.211S|ICD10CM|Contusion of right front wall of thorax, sequela|Contusion of right front wall of thorax, sequela +C2834488|T037|AB|S20.212|ICD10CM|Contusion of left front wall of thorax|Contusion of left front wall of thorax +C2834488|T037|HT|S20.212|ICD10CM|Contusion of left front wall of thorax|Contusion of left front wall of thorax +C2834489|T037|PT|S20.212A|ICD10CM|Contusion of left front wall of thorax, initial encounter|Contusion of left front wall of thorax, initial encounter +C2834489|T037|AB|S20.212A|ICD10CM|Contusion of left front wall of thorax, initial encounter|Contusion of left front wall of thorax, initial encounter +C2834490|T037|AB|S20.212D|ICD10CM|Contusion of left front wall of thorax, subsequent encounter|Contusion of left front wall of thorax, subsequent encounter +C2834490|T037|PT|S20.212D|ICD10CM|Contusion of left front wall of thorax, subsequent encounter|Contusion of left front wall of thorax, subsequent encounter +C2834491|T037|PT|S20.212S|ICD10CM|Contusion of left front wall of thorax, sequela|Contusion of left front wall of thorax, sequela +C2834491|T037|AB|S20.212S|ICD10CM|Contusion of left front wall of thorax, sequela|Contusion of left front wall of thorax, sequela +C2834492|T037|AB|S20.219|ICD10CM|Contusion of unspecified front wall of thorax|Contusion of unspecified front wall of thorax +C2834492|T037|HT|S20.219|ICD10CM|Contusion of unspecified front wall of thorax|Contusion of unspecified front wall of thorax +C2834493|T037|AB|S20.219A|ICD10CM|Contusion of unspecified front wall of thorax, init encntr|Contusion of unspecified front wall of thorax, init encntr +C2834493|T037|PT|S20.219A|ICD10CM|Contusion of unspecified front wall of thorax, initial encounter|Contusion of unspecified front wall of thorax, initial encounter +C2834494|T037|AB|S20.219D|ICD10CM|Contusion of unspecified front wall of thorax, subs encntr|Contusion of unspecified front wall of thorax, subs encntr +C2834494|T037|PT|S20.219D|ICD10CM|Contusion of unspecified front wall of thorax, subsequent encounter|Contusion of unspecified front wall of thorax, subsequent encounter +C2834495|T037|PT|S20.219S|ICD10CM|Contusion of unspecified front wall of thorax, sequela|Contusion of unspecified front wall of thorax, sequela +C2834495|T037|AB|S20.219S|ICD10CM|Contusion of unspecified front wall of thorax, sequela|Contusion of unspecified front wall of thorax, sequela +C2834496|T037|AB|S20.22|ICD10CM|Contusion of back wall of thorax|Contusion of back wall of thorax +C2834496|T037|HT|S20.22|ICD10CM|Contusion of back wall of thorax|Contusion of back wall of thorax +C2834497|T037|AB|S20.221|ICD10CM|Contusion of right back wall of thorax|Contusion of right back wall of thorax +C2834497|T037|HT|S20.221|ICD10CM|Contusion of right back wall of thorax|Contusion of right back wall of thorax +C2834498|T037|PT|S20.221A|ICD10CM|Contusion of right back wall of thorax, initial encounter|Contusion of right back wall of thorax, initial encounter +C2834498|T037|AB|S20.221A|ICD10CM|Contusion of right back wall of thorax, initial encounter|Contusion of right back wall of thorax, initial encounter +C2834499|T037|AB|S20.221D|ICD10CM|Contusion of right back wall of thorax, subsequent encounter|Contusion of right back wall of thorax, subsequent encounter +C2834499|T037|PT|S20.221D|ICD10CM|Contusion of right back wall of thorax, subsequent encounter|Contusion of right back wall of thorax, subsequent encounter +C2834500|T037|PT|S20.221S|ICD10CM|Contusion of right back wall of thorax, sequela|Contusion of right back wall of thorax, sequela +C2834500|T037|AB|S20.221S|ICD10CM|Contusion of right back wall of thorax, sequela|Contusion of right back wall of thorax, sequela +C2834501|T037|AB|S20.222|ICD10CM|Contusion of left back wall of thorax|Contusion of left back wall of thorax +C2834501|T037|HT|S20.222|ICD10CM|Contusion of left back wall of thorax|Contusion of left back wall of thorax +C2834502|T037|PT|S20.222A|ICD10CM|Contusion of left back wall of thorax, initial encounter|Contusion of left back wall of thorax, initial encounter +C2834502|T037|AB|S20.222A|ICD10CM|Contusion of left back wall of thorax, initial encounter|Contusion of left back wall of thorax, initial encounter +C2834503|T037|PT|S20.222D|ICD10CM|Contusion of left back wall of thorax, subsequent encounter|Contusion of left back wall of thorax, subsequent encounter +C2834503|T037|AB|S20.222D|ICD10CM|Contusion of left back wall of thorax, subsequent encounter|Contusion of left back wall of thorax, subsequent encounter +C2834504|T037|PT|S20.222S|ICD10CM|Contusion of left back wall of thorax, sequela|Contusion of left back wall of thorax, sequela +C2834504|T037|AB|S20.222S|ICD10CM|Contusion of left back wall of thorax, sequela|Contusion of left back wall of thorax, sequela +C2834505|T037|AB|S20.229|ICD10CM|Contusion of unspecified back wall of thorax|Contusion of unspecified back wall of thorax +C2834505|T037|HT|S20.229|ICD10CM|Contusion of unspecified back wall of thorax|Contusion of unspecified back wall of thorax +C2834506|T037|AB|S20.229A|ICD10CM|Contusion of unspecified back wall of thorax, init encntr|Contusion of unspecified back wall of thorax, init encntr +C2834506|T037|PT|S20.229A|ICD10CM|Contusion of unspecified back wall of thorax, initial encounter|Contusion of unspecified back wall of thorax, initial encounter +C2834507|T037|AB|S20.229D|ICD10CM|Contusion of unspecified back wall of thorax, subs encntr|Contusion of unspecified back wall of thorax, subs encntr +C2834507|T037|PT|S20.229D|ICD10CM|Contusion of unspecified back wall of thorax, subsequent encounter|Contusion of unspecified back wall of thorax, subsequent encounter +C2834508|T037|PT|S20.229S|ICD10CM|Contusion of unspecified back wall of thorax, sequela|Contusion of unspecified back wall of thorax, sequela +C2834508|T037|AB|S20.229S|ICD10CM|Contusion of unspecified back wall of thorax, sequela|Contusion of unspecified back wall of thorax, sequela +C0478231|T037|AB|S20.3|ICD10CM|Other and unsp superficial injuries of front wall of thorax|Other and unsp superficial injuries of front wall of thorax +C0478231|T037|HT|S20.3|ICD10CM|Other and unspecified superficial injuries of front wall of thorax|Other and unspecified superficial injuries of front wall of thorax +C0478231|T037|PT|S20.3|ICD10|Other superficial injuries of front wall of thorax|Other superficial injuries of front wall of thorax +C2834509|T037|AB|S20.30|ICD10CM|Unspecified superficial injuries of front wall of thorax|Unspecified superficial injuries of front wall of thorax +C2834509|T037|HT|S20.30|ICD10CM|Unspecified superficial injuries of front wall of thorax|Unspecified superficial injuries of front wall of thorax +C2834510|T037|AB|S20.301|ICD10CM|Unsp superficial injuries of right front wall of thorax|Unsp superficial injuries of right front wall of thorax +C2834510|T037|HT|S20.301|ICD10CM|Unspecified superficial injuries of right front wall of thorax|Unspecified superficial injuries of right front wall of thorax +C2834511|T037|AB|S20.301A|ICD10CM|Unsp superficial injuries of r frnt wl of thorax, init|Unsp superficial injuries of r frnt wl of thorax, init +C2834511|T037|PT|S20.301A|ICD10CM|Unspecified superficial injuries of right front wall of thorax, initial encounter|Unspecified superficial injuries of right front wall of thorax, initial encounter +C2834512|T037|AB|S20.301D|ICD10CM|Unsp superficial injuries of r frnt wl of thorax, subs|Unsp superficial injuries of r frnt wl of thorax, subs +C2834512|T037|PT|S20.301D|ICD10CM|Unspecified superficial injuries of right front wall of thorax, subsequent encounter|Unspecified superficial injuries of right front wall of thorax, subsequent encounter +C2834513|T037|AB|S20.301S|ICD10CM|Unsp superficial injuries of r frnt wl of thorax, sequela|Unsp superficial injuries of r frnt wl of thorax, sequela +C2834513|T037|PT|S20.301S|ICD10CM|Unspecified superficial injuries of right front wall of thorax, sequela|Unspecified superficial injuries of right front wall of thorax, sequela +C2834514|T037|AB|S20.302|ICD10CM|Unsp superficial injuries of left front wall of thorax|Unsp superficial injuries of left front wall of thorax +C2834514|T037|HT|S20.302|ICD10CM|Unspecified superficial injuries of left front wall of thorax|Unspecified superficial injuries of left front wall of thorax +C2834515|T037|AB|S20.302A|ICD10CM|Unsp superficial injuries of left front wall of thorax, init|Unsp superficial injuries of left front wall of thorax, init +C2834515|T037|PT|S20.302A|ICD10CM|Unspecified superficial injuries of left front wall of thorax, initial encounter|Unspecified superficial injuries of left front wall of thorax, initial encounter +C2834516|T037|AB|S20.302D|ICD10CM|Unsp superficial injuries of left front wall of thorax, subs|Unsp superficial injuries of left front wall of thorax, subs +C2834516|T037|PT|S20.302D|ICD10CM|Unspecified superficial injuries of left front wall of thorax, subsequent encounter|Unspecified superficial injuries of left front wall of thorax, subsequent encounter +C2834517|T037|AB|S20.302S|ICD10CM|Unsp superficial injuries of l frnt wl of thorax, sequela|Unsp superficial injuries of l frnt wl of thorax, sequela +C2834517|T037|PT|S20.302S|ICD10CM|Unspecified superficial injuries of left front wall of thorax, sequela|Unspecified superficial injuries of left front wall of thorax, sequela +C2834518|T037|AB|S20.309|ICD10CM|Unsp superficial injuries of unsp front wall of thorax|Unsp superficial injuries of unsp front wall of thorax +C2834518|T037|HT|S20.309|ICD10CM|Unspecified superficial injuries of unspecified front wall of thorax|Unspecified superficial injuries of unspecified front wall of thorax +C2834519|T037|AB|S20.309A|ICD10CM|Unsp superficial injuries of unsp front wall of thorax, init|Unsp superficial injuries of unsp front wall of thorax, init +C2834519|T037|PT|S20.309A|ICD10CM|Unspecified superficial injuries of unspecified front wall of thorax, initial encounter|Unspecified superficial injuries of unspecified front wall of thorax, initial encounter +C2834520|T037|AB|S20.309D|ICD10CM|Unsp superficial injuries of unsp front wall of thorax, subs|Unsp superficial injuries of unsp front wall of thorax, subs +C2834520|T037|PT|S20.309D|ICD10CM|Unspecified superficial injuries of unspecified front wall of thorax, subsequent encounter|Unspecified superficial injuries of unspecified front wall of thorax, subsequent encounter +C2834521|T037|AB|S20.309S|ICD10CM|Unsp superfic injuries of unsp front wall of thorax, sequela|Unsp superfic injuries of unsp front wall of thorax, sequela +C2834521|T037|PT|S20.309S|ICD10CM|Unspecified superficial injuries of unspecified front wall of thorax, sequela|Unspecified superficial injuries of unspecified front wall of thorax, sequela +C2834522|T037|AB|S20.31|ICD10CM|Abrasion of front wall of thorax|Abrasion of front wall of thorax +C2834522|T037|HT|S20.31|ICD10CM|Abrasion of front wall of thorax|Abrasion of front wall of thorax +C2834523|T037|AB|S20.311|ICD10CM|Abrasion of right front wall of thorax|Abrasion of right front wall of thorax +C2834523|T037|HT|S20.311|ICD10CM|Abrasion of right front wall of thorax|Abrasion of right front wall of thorax +C2834524|T037|PT|S20.311A|ICD10CM|Abrasion of right front wall of thorax, initial encounter|Abrasion of right front wall of thorax, initial encounter +C2834524|T037|AB|S20.311A|ICD10CM|Abrasion of right front wall of thorax, initial encounter|Abrasion of right front wall of thorax, initial encounter +C2834525|T037|AB|S20.311D|ICD10CM|Abrasion of right front wall of thorax, subsequent encounter|Abrasion of right front wall of thorax, subsequent encounter +C2834525|T037|PT|S20.311D|ICD10CM|Abrasion of right front wall of thorax, subsequent encounter|Abrasion of right front wall of thorax, subsequent encounter +C2834526|T037|PT|S20.311S|ICD10CM|Abrasion of right front wall of thorax, sequela|Abrasion of right front wall of thorax, sequela +C2834526|T037|AB|S20.311S|ICD10CM|Abrasion of right front wall of thorax, sequela|Abrasion of right front wall of thorax, sequela +C2834527|T037|AB|S20.312|ICD10CM|Abrasion of left front wall of thorax|Abrasion of left front wall of thorax +C2834527|T037|HT|S20.312|ICD10CM|Abrasion of left front wall of thorax|Abrasion of left front wall of thorax +C2834528|T037|PT|S20.312A|ICD10CM|Abrasion of left front wall of thorax, initial encounter|Abrasion of left front wall of thorax, initial encounter +C2834528|T037|AB|S20.312A|ICD10CM|Abrasion of left front wall of thorax, initial encounter|Abrasion of left front wall of thorax, initial encounter +C2834529|T037|AB|S20.312D|ICD10CM|Abrasion of left front wall of thorax, subsequent encounter|Abrasion of left front wall of thorax, subsequent encounter +C2834529|T037|PT|S20.312D|ICD10CM|Abrasion of left front wall of thorax, subsequent encounter|Abrasion of left front wall of thorax, subsequent encounter +C2834530|T037|PT|S20.312S|ICD10CM|Abrasion of left front wall of thorax, sequela|Abrasion of left front wall of thorax, sequela +C2834530|T037|AB|S20.312S|ICD10CM|Abrasion of left front wall of thorax, sequela|Abrasion of left front wall of thorax, sequela +C2834531|T037|AB|S20.319|ICD10CM|Abrasion of unspecified front wall of thorax|Abrasion of unspecified front wall of thorax +C2834531|T037|HT|S20.319|ICD10CM|Abrasion of unspecified front wall of thorax|Abrasion of unspecified front wall of thorax +C2834532|T037|AB|S20.319A|ICD10CM|Abrasion of unspecified front wall of thorax, init encntr|Abrasion of unspecified front wall of thorax, init encntr +C2834532|T037|PT|S20.319A|ICD10CM|Abrasion of unspecified front wall of thorax, initial encounter|Abrasion of unspecified front wall of thorax, initial encounter +C2834533|T037|AB|S20.319D|ICD10CM|Abrasion of unspecified front wall of thorax, subs encntr|Abrasion of unspecified front wall of thorax, subs encntr +C2834533|T037|PT|S20.319D|ICD10CM|Abrasion of unspecified front wall of thorax, subsequent encounter|Abrasion of unspecified front wall of thorax, subsequent encounter +C2834534|T037|PT|S20.319S|ICD10CM|Abrasion of unspecified front wall of thorax, sequela|Abrasion of unspecified front wall of thorax, sequela +C2834534|T037|AB|S20.319S|ICD10CM|Abrasion of unspecified front wall of thorax, sequela|Abrasion of unspecified front wall of thorax, sequela +C2834535|T037|AB|S20.32|ICD10CM|Blister (nonthermal) of front wall of thorax|Blister (nonthermal) of front wall of thorax +C2834535|T037|HT|S20.32|ICD10CM|Blister (nonthermal) of front wall of thorax|Blister (nonthermal) of front wall of thorax +C2834536|T037|AB|S20.321|ICD10CM|Blister (nonthermal) of right front wall of thorax|Blister (nonthermal) of right front wall of thorax +C2834536|T037|HT|S20.321|ICD10CM|Blister (nonthermal) of right front wall of thorax|Blister (nonthermal) of right front wall of thorax +C2834537|T037|AB|S20.321A|ICD10CM|Blister (nonthermal) of right front wall of thorax, init|Blister (nonthermal) of right front wall of thorax, init +C2834537|T037|PT|S20.321A|ICD10CM|Blister (nonthermal) of right front wall of thorax, initial encounter|Blister (nonthermal) of right front wall of thorax, initial encounter +C2834538|T037|AB|S20.321D|ICD10CM|Blister (nonthermal) of right front wall of thorax, subs|Blister (nonthermal) of right front wall of thorax, subs +C2834538|T037|PT|S20.321D|ICD10CM|Blister (nonthermal) of right front wall of thorax, subsequent encounter|Blister (nonthermal) of right front wall of thorax, subsequent encounter +C2834539|T037|AB|S20.321S|ICD10CM|Blister (nonthermal) of right front wall of thorax, sequela|Blister (nonthermal) of right front wall of thorax, sequela +C2834539|T037|PT|S20.321S|ICD10CM|Blister (nonthermal) of right front wall of thorax, sequela|Blister (nonthermal) of right front wall of thorax, sequela +C2834540|T037|AB|S20.322|ICD10CM|Blister (nonthermal) of left front wall of thorax|Blister (nonthermal) of left front wall of thorax +C2834540|T037|HT|S20.322|ICD10CM|Blister (nonthermal) of left front wall of thorax|Blister (nonthermal) of left front wall of thorax +C2834541|T037|AB|S20.322A|ICD10CM|Blister (nonthermal) of left front wall of thorax, init|Blister (nonthermal) of left front wall of thorax, init +C2834541|T037|PT|S20.322A|ICD10CM|Blister (nonthermal) of left front wall of thorax, initial encounter|Blister (nonthermal) of left front wall of thorax, initial encounter +C2834542|T037|AB|S20.322D|ICD10CM|Blister (nonthermal) of left front wall of thorax, subs|Blister (nonthermal) of left front wall of thorax, subs +C2834542|T037|PT|S20.322D|ICD10CM|Blister (nonthermal) of left front wall of thorax, subsequent encounter|Blister (nonthermal) of left front wall of thorax, subsequent encounter +C2834543|T037|AB|S20.322S|ICD10CM|Blister (nonthermal) of left front wall of thorax, sequela|Blister (nonthermal) of left front wall of thorax, sequela +C2834543|T037|PT|S20.322S|ICD10CM|Blister (nonthermal) of left front wall of thorax, sequela|Blister (nonthermal) of left front wall of thorax, sequela +C2834544|T037|AB|S20.329|ICD10CM|Blister (nonthermal) of unspecified front wall of thorax|Blister (nonthermal) of unspecified front wall of thorax +C2834544|T037|HT|S20.329|ICD10CM|Blister (nonthermal) of unspecified front wall of thorax|Blister (nonthermal) of unspecified front wall of thorax +C2834545|T037|AB|S20.329A|ICD10CM|Blister (nonthermal) of unsp front wall of thorax, init|Blister (nonthermal) of unsp front wall of thorax, init +C2834545|T037|PT|S20.329A|ICD10CM|Blister (nonthermal) of unspecified front wall of thorax, initial encounter|Blister (nonthermal) of unspecified front wall of thorax, initial encounter +C2834546|T037|AB|S20.329D|ICD10CM|Blister (nonthermal) of unsp front wall of thorax, subs|Blister (nonthermal) of unsp front wall of thorax, subs +C2834546|T037|PT|S20.329D|ICD10CM|Blister (nonthermal) of unspecified front wall of thorax, subsequent encounter|Blister (nonthermal) of unspecified front wall of thorax, subsequent encounter +C2834547|T037|AB|S20.329S|ICD10CM|Blister (nonthermal) of unsp front wall of thorax, sequela|Blister (nonthermal) of unsp front wall of thorax, sequela +C2834547|T037|PT|S20.329S|ICD10CM|Blister (nonthermal) of unspecified front wall of thorax, sequela|Blister (nonthermal) of unspecified front wall of thorax, sequela +C2834548|T037|AB|S20.34|ICD10CM|External constriction of front wall of thorax|External constriction of front wall of thorax +C2834548|T037|HT|S20.34|ICD10CM|External constriction of front wall of thorax|External constriction of front wall of thorax +C2834549|T037|AB|S20.341|ICD10CM|External constriction of right front wall of thorax|External constriction of right front wall of thorax +C2834549|T037|HT|S20.341|ICD10CM|External constriction of right front wall of thorax|External constriction of right front wall of thorax +C2834550|T037|AB|S20.341A|ICD10CM|External constriction of right front wall of thorax, init|External constriction of right front wall of thorax, init +C2834550|T037|PT|S20.341A|ICD10CM|External constriction of right front wall of thorax, initial encounter|External constriction of right front wall of thorax, initial encounter +C2834551|T037|AB|S20.341D|ICD10CM|External constriction of right front wall of thorax, subs|External constriction of right front wall of thorax, subs +C2834551|T037|PT|S20.341D|ICD10CM|External constriction of right front wall of thorax, subsequent encounter|External constriction of right front wall of thorax, subsequent encounter +C2834552|T037|AB|S20.341S|ICD10CM|External constriction of right front wall of thorax, sequela|External constriction of right front wall of thorax, sequela +C2834552|T037|PT|S20.341S|ICD10CM|External constriction of right front wall of thorax, sequela|External constriction of right front wall of thorax, sequela +C2834553|T037|AB|S20.342|ICD10CM|External constriction of left front wall of thorax|External constriction of left front wall of thorax +C2834553|T037|HT|S20.342|ICD10CM|External constriction of left front wall of thorax|External constriction of left front wall of thorax +C2834554|T037|AB|S20.342A|ICD10CM|External constriction of left front wall of thorax, init|External constriction of left front wall of thorax, init +C2834554|T037|PT|S20.342A|ICD10CM|External constriction of left front wall of thorax, initial encounter|External constriction of left front wall of thorax, initial encounter +C2834555|T037|AB|S20.342D|ICD10CM|External constriction of left front wall of thorax, subs|External constriction of left front wall of thorax, subs +C2834555|T037|PT|S20.342D|ICD10CM|External constriction of left front wall of thorax, subsequent encounter|External constriction of left front wall of thorax, subsequent encounter +C2834556|T037|AB|S20.342S|ICD10CM|External constriction of left front wall of thorax, sequela|External constriction of left front wall of thorax, sequela +C2834556|T037|PT|S20.342S|ICD10CM|External constriction of left front wall of thorax, sequela|External constriction of left front wall of thorax, sequela +C2834557|T037|AB|S20.349|ICD10CM|External constriction of unspecified front wall of thorax|External constriction of unspecified front wall of thorax +C2834557|T037|HT|S20.349|ICD10CM|External constriction of unspecified front wall of thorax|External constriction of unspecified front wall of thorax +C2834558|T037|AB|S20.349A|ICD10CM|External constriction of unsp front wall of thorax, init|External constriction of unsp front wall of thorax, init +C2834558|T037|PT|S20.349A|ICD10CM|External constriction of unspecified front wall of thorax, initial encounter|External constriction of unspecified front wall of thorax, initial encounter +C2834559|T037|AB|S20.349D|ICD10CM|External constriction of unsp front wall of thorax, subs|External constriction of unsp front wall of thorax, subs +C2834559|T037|PT|S20.349D|ICD10CM|External constriction of unspecified front wall of thorax, subsequent encounter|External constriction of unspecified front wall of thorax, subsequent encounter +C2834560|T037|AB|S20.349S|ICD10CM|External constriction of unsp front wall of thorax, sequela|External constriction of unsp front wall of thorax, sequela +C2834560|T037|PT|S20.349S|ICD10CM|External constriction of unspecified front wall of thorax, sequela|External constriction of unspecified front wall of thorax, sequela +C2834561|T037|ET|S20.35|ICD10CM|Splinter in front wall of thorax|Splinter in front wall of thorax +C2834562|T037|AB|S20.35|ICD10CM|Superficial foreign body of front wall of thorax|Superficial foreign body of front wall of thorax +C2834562|T037|HT|S20.35|ICD10CM|Superficial foreign body of front wall of thorax|Superficial foreign body of front wall of thorax +C2834563|T037|AB|S20.351|ICD10CM|Superficial foreign body of right front wall of thorax|Superficial foreign body of right front wall of thorax +C2834563|T037|HT|S20.351|ICD10CM|Superficial foreign body of right front wall of thorax|Superficial foreign body of right front wall of thorax +C2834564|T037|AB|S20.351A|ICD10CM|Superficial foreign body of right front wall of thorax, init|Superficial foreign body of right front wall of thorax, init +C2834564|T037|PT|S20.351A|ICD10CM|Superficial foreign body of right front wall of thorax, initial encounter|Superficial foreign body of right front wall of thorax, initial encounter +C2834565|T037|AB|S20.351D|ICD10CM|Superficial foreign body of right front wall of thorax, subs|Superficial foreign body of right front wall of thorax, subs +C2834565|T037|PT|S20.351D|ICD10CM|Superficial foreign body of right front wall of thorax, subsequent encounter|Superficial foreign body of right front wall of thorax, subsequent encounter +C2834566|T037|AB|S20.351S|ICD10CM|Superficial foreign body of r frnt wl of thorax, sequela|Superficial foreign body of r frnt wl of thorax, sequela +C2834566|T037|PT|S20.351S|ICD10CM|Superficial foreign body of right front wall of thorax, sequela|Superficial foreign body of right front wall of thorax, sequela +C2834567|T037|AB|S20.352|ICD10CM|Superficial foreign body of left front wall of thorax|Superficial foreign body of left front wall of thorax +C2834567|T037|HT|S20.352|ICD10CM|Superficial foreign body of left front wall of thorax|Superficial foreign body of left front wall of thorax +C2834568|T037|AB|S20.352A|ICD10CM|Superficial foreign body of left front wall of thorax, init|Superficial foreign body of left front wall of thorax, init +C2834568|T037|PT|S20.352A|ICD10CM|Superficial foreign body of left front wall of thorax, initial encounter|Superficial foreign body of left front wall of thorax, initial encounter +C2834569|T037|AB|S20.352D|ICD10CM|Superficial foreign body of left front wall of thorax, subs|Superficial foreign body of left front wall of thorax, subs +C2834569|T037|PT|S20.352D|ICD10CM|Superficial foreign body of left front wall of thorax, subsequent encounter|Superficial foreign body of left front wall of thorax, subsequent encounter +C2834570|T037|AB|S20.352S|ICD10CM|Superficial foreign body of l frnt wl of thorax, sequela|Superficial foreign body of l frnt wl of thorax, sequela +C2834570|T037|PT|S20.352S|ICD10CM|Superficial foreign body of left front wall of thorax, sequela|Superficial foreign body of left front wall of thorax, sequela +C2834571|T037|AB|S20.359|ICD10CM|Superficial foreign body of unspecified front wall of thorax|Superficial foreign body of unspecified front wall of thorax +C2834571|T037|HT|S20.359|ICD10CM|Superficial foreign body of unspecified front wall of thorax|Superficial foreign body of unspecified front wall of thorax +C2834572|T037|AB|S20.359A|ICD10CM|Superficial foreign body of unsp front wall of thorax, init|Superficial foreign body of unsp front wall of thorax, init +C2834572|T037|PT|S20.359A|ICD10CM|Superficial foreign body of unspecified front wall of thorax, initial encounter|Superficial foreign body of unspecified front wall of thorax, initial encounter +C2834573|T037|AB|S20.359D|ICD10CM|Superficial foreign body of unsp front wall of thorax, subs|Superficial foreign body of unsp front wall of thorax, subs +C2834573|T037|PT|S20.359D|ICD10CM|Superficial foreign body of unspecified front wall of thorax, subsequent encounter|Superficial foreign body of unspecified front wall of thorax, subsequent encounter +C2834574|T037|AB|S20.359S|ICD10CM|Superficial fb of unsp front wall of thorax, sequela|Superficial fb of unsp front wall of thorax, sequela +C2834574|T037|PT|S20.359S|ICD10CM|Superficial foreign body of unspecified front wall of thorax, sequela|Superficial foreign body of unspecified front wall of thorax, sequela +C2834575|T037|AB|S20.36|ICD10CM|Insect bite (nonvenomous) of front wall of thorax|Insect bite (nonvenomous) of front wall of thorax +C2834575|T037|HT|S20.36|ICD10CM|Insect bite (nonvenomous) of front wall of thorax|Insect bite (nonvenomous) of front wall of thorax +C2834576|T037|AB|S20.361|ICD10CM|Insect bite (nonvenomous) of right front wall of thorax|Insect bite (nonvenomous) of right front wall of thorax +C2834576|T037|HT|S20.361|ICD10CM|Insect bite (nonvenomous) of right front wall of thorax|Insect bite (nonvenomous) of right front wall of thorax +C2834577|T037|AB|S20.361A|ICD10CM|Insect bite (nonvenomous) of r frnt wl of thorax, init|Insect bite (nonvenomous) of r frnt wl of thorax, init +C2834577|T037|PT|S20.361A|ICD10CM|Insect bite (nonvenomous) of right front wall of thorax, initial encounter|Insect bite (nonvenomous) of right front wall of thorax, initial encounter +C2834578|T037|AB|S20.361D|ICD10CM|Insect bite (nonvenomous) of r frnt wl of thorax, subs|Insect bite (nonvenomous) of r frnt wl of thorax, subs +C2834578|T037|PT|S20.361D|ICD10CM|Insect bite (nonvenomous) of right front wall of thorax, subsequent encounter|Insect bite (nonvenomous) of right front wall of thorax, subsequent encounter +C2834579|T037|AB|S20.361S|ICD10CM|Insect bite (nonvenomous) of r frnt wl of thorax, sequela|Insect bite (nonvenomous) of r frnt wl of thorax, sequela +C2834579|T037|PT|S20.361S|ICD10CM|Insect bite (nonvenomous) of right front wall of thorax, sequela|Insect bite (nonvenomous) of right front wall of thorax, sequela +C2834580|T037|AB|S20.362|ICD10CM|Insect bite (nonvenomous) of left front wall of thorax|Insect bite (nonvenomous) of left front wall of thorax +C2834580|T037|HT|S20.362|ICD10CM|Insect bite (nonvenomous) of left front wall of thorax|Insect bite (nonvenomous) of left front wall of thorax +C2834581|T037|AB|S20.362A|ICD10CM|Insect bite (nonvenomous) of left front wall of thorax, init|Insect bite (nonvenomous) of left front wall of thorax, init +C2834581|T037|PT|S20.362A|ICD10CM|Insect bite (nonvenomous) of left front wall of thorax, initial encounter|Insect bite (nonvenomous) of left front wall of thorax, initial encounter +C2834582|T037|AB|S20.362D|ICD10CM|Insect bite (nonvenomous) of left front wall of thorax, subs|Insect bite (nonvenomous) of left front wall of thorax, subs +C2834582|T037|PT|S20.362D|ICD10CM|Insect bite (nonvenomous) of left front wall of thorax, subsequent encounter|Insect bite (nonvenomous) of left front wall of thorax, subsequent encounter +C2834583|T037|AB|S20.362S|ICD10CM|Insect bite (nonvenomous) of l frnt wl of thorax, sequela|Insect bite (nonvenomous) of l frnt wl of thorax, sequela +C2834583|T037|PT|S20.362S|ICD10CM|Insect bite (nonvenomous) of left front wall of thorax, sequela|Insect bite (nonvenomous) of left front wall of thorax, sequela +C2834584|T037|AB|S20.369|ICD10CM|Insect bite (nonvenomous) of unsp front wall of thorax|Insect bite (nonvenomous) of unsp front wall of thorax +C2834584|T037|HT|S20.369|ICD10CM|Insect bite (nonvenomous) of unspecified front wall of thorax|Insect bite (nonvenomous) of unspecified front wall of thorax +C2834585|T037|AB|S20.369A|ICD10CM|Insect bite (nonvenomous) of unsp front wall of thorax, init|Insect bite (nonvenomous) of unsp front wall of thorax, init +C2834585|T037|PT|S20.369A|ICD10CM|Insect bite (nonvenomous) of unspecified front wall of thorax, initial encounter|Insect bite (nonvenomous) of unspecified front wall of thorax, initial encounter +C2834586|T037|AB|S20.369D|ICD10CM|Insect bite (nonvenomous) of unsp front wall of thorax, subs|Insect bite (nonvenomous) of unsp front wall of thorax, subs +C2834586|T037|PT|S20.369D|ICD10CM|Insect bite (nonvenomous) of unspecified front wall of thorax, subsequent encounter|Insect bite (nonvenomous) of unspecified front wall of thorax, subsequent encounter +C2834587|T037|PT|S20.369S|ICD10CM|Insect bite (nonvenomous) of unspecified front wall of thorax, sequela|Insect bite (nonvenomous) of unspecified front wall of thorax, sequela +C2834587|T037|AB|S20.369S|ICD10CM|Insect bite of unsp front wall of thorax, sequela|Insect bite of unsp front wall of thorax, sequela +C2834588|T037|AB|S20.37|ICD10CM|Other superficial bite of front wall of thorax|Other superficial bite of front wall of thorax +C2834588|T037|HT|S20.37|ICD10CM|Other superficial bite of front wall of thorax|Other superficial bite of front wall of thorax +C2834589|T037|AB|S20.371|ICD10CM|Other superficial bite of right front wall of thorax|Other superficial bite of right front wall of thorax +C2834589|T037|HT|S20.371|ICD10CM|Other superficial bite of right front wall of thorax|Other superficial bite of right front wall of thorax +C2834590|T037|AB|S20.371A|ICD10CM|Oth superficial bite of right front wall of thorax, init|Oth superficial bite of right front wall of thorax, init +C2834590|T037|PT|S20.371A|ICD10CM|Other superficial bite of right front wall of thorax, initial encounter|Other superficial bite of right front wall of thorax, initial encounter +C2834591|T037|AB|S20.371D|ICD10CM|Oth superficial bite of right front wall of thorax, subs|Oth superficial bite of right front wall of thorax, subs +C2834591|T037|PT|S20.371D|ICD10CM|Other superficial bite of right front wall of thorax, subsequent encounter|Other superficial bite of right front wall of thorax, subsequent encounter +C2834592|T037|AB|S20.371S|ICD10CM|Oth superficial bite of right front wall of thorax, sequela|Oth superficial bite of right front wall of thorax, sequela +C2834592|T037|PT|S20.371S|ICD10CM|Other superficial bite of right front wall of thorax, sequela|Other superficial bite of right front wall of thorax, sequela +C2834593|T037|AB|S20.372|ICD10CM|Other superficial bite of left front wall of thorax|Other superficial bite of left front wall of thorax +C2834593|T037|HT|S20.372|ICD10CM|Other superficial bite of left front wall of thorax|Other superficial bite of left front wall of thorax +C2834594|T037|AB|S20.372A|ICD10CM|Oth superficial bite of left front wall of thorax, init|Oth superficial bite of left front wall of thorax, init +C2834594|T037|PT|S20.372A|ICD10CM|Other superficial bite of left front wall of thorax, initial encounter|Other superficial bite of left front wall of thorax, initial encounter +C2834595|T037|AB|S20.372D|ICD10CM|Oth superficial bite of left front wall of thorax, subs|Oth superficial bite of left front wall of thorax, subs +C2834595|T037|PT|S20.372D|ICD10CM|Other superficial bite of left front wall of thorax, subsequent encounter|Other superficial bite of left front wall of thorax, subsequent encounter +C2834596|T037|AB|S20.372S|ICD10CM|Other superficial bite of left front wall of thorax, sequela|Other superficial bite of left front wall of thorax, sequela +C2834596|T037|PT|S20.372S|ICD10CM|Other superficial bite of left front wall of thorax, sequela|Other superficial bite of left front wall of thorax, sequela +C2834597|T037|AB|S20.379|ICD10CM|Other superficial bite of unspecified front wall of thorax|Other superficial bite of unspecified front wall of thorax +C2834597|T037|HT|S20.379|ICD10CM|Other superficial bite of unspecified front wall of thorax|Other superficial bite of unspecified front wall of thorax +C2834598|T037|AB|S20.379A|ICD10CM|Oth superficial bite of unsp front wall of thorax, init|Oth superficial bite of unsp front wall of thorax, init +C2834598|T037|PT|S20.379A|ICD10CM|Other superficial bite of unspecified front wall of thorax, initial encounter|Other superficial bite of unspecified front wall of thorax, initial encounter +C2834599|T037|AB|S20.379D|ICD10CM|Oth superficial bite of unsp front wall of thorax, subs|Oth superficial bite of unsp front wall of thorax, subs +C2834599|T037|PT|S20.379D|ICD10CM|Other superficial bite of unspecified front wall of thorax, subsequent encounter|Other superficial bite of unspecified front wall of thorax, subsequent encounter +C2834600|T037|AB|S20.379S|ICD10CM|Other superficial bite of unsp front wall of thorax, sequela|Other superficial bite of unsp front wall of thorax, sequela +C2834600|T037|PT|S20.379S|ICD10CM|Other superficial bite of unspecified front wall of thorax, sequela|Other superficial bite of unspecified front wall of thorax, sequela +C0478232|T037|AB|S20.4|ICD10CM|Other and unsp superficial injuries of back wall of thorax|Other and unsp superficial injuries of back wall of thorax +C0478232|T037|HT|S20.4|ICD10CM|Other and unspecified superficial injuries of back wall of thorax|Other and unspecified superficial injuries of back wall of thorax +C0478232|T037|PT|S20.4|ICD10|Other superficial injuries of back wall of thorax|Other superficial injuries of back wall of thorax +C2834601|T037|AB|S20.40|ICD10CM|Unspecified superficial injuries of back wall of thorax|Unspecified superficial injuries of back wall of thorax +C2834601|T037|HT|S20.40|ICD10CM|Unspecified superficial injuries of back wall of thorax|Unspecified superficial injuries of back wall of thorax +C2834602|T037|AB|S20.401|ICD10CM|Unsp superficial injuries of right back wall of thorax|Unsp superficial injuries of right back wall of thorax +C2834602|T037|HT|S20.401|ICD10CM|Unspecified superficial injuries of right back wall of thorax|Unspecified superficial injuries of right back wall of thorax +C2834603|T037|AB|S20.401A|ICD10CM|Unsp superficial injuries of right back wall of thorax, init|Unsp superficial injuries of right back wall of thorax, init +C2834603|T037|PT|S20.401A|ICD10CM|Unspecified superficial injuries of right back wall of thorax, initial encounter|Unspecified superficial injuries of right back wall of thorax, initial encounter +C2834604|T037|AB|S20.401D|ICD10CM|Unsp superficial injuries of right back wall of thorax, subs|Unsp superficial injuries of right back wall of thorax, subs +C2834604|T037|PT|S20.401D|ICD10CM|Unspecified superficial injuries of right back wall of thorax, subsequent encounter|Unspecified superficial injuries of right back wall of thorax, subsequent encounter +C2834605|T037|AB|S20.401S|ICD10CM|Unsp superficial injuries of r bk wl of thorax, sequela|Unsp superficial injuries of r bk wl of thorax, sequela +C2834605|T037|PT|S20.401S|ICD10CM|Unspecified superficial injuries of right back wall of thorax, sequela|Unspecified superficial injuries of right back wall of thorax, sequela +C2834606|T037|AB|S20.402|ICD10CM|Unspecified superficial injuries of left back wall of thorax|Unspecified superficial injuries of left back wall of thorax +C2834606|T037|HT|S20.402|ICD10CM|Unspecified superficial injuries of left back wall of thorax|Unspecified superficial injuries of left back wall of thorax +C2834607|T037|AB|S20.402A|ICD10CM|Unsp superficial injuries of left back wall of thorax, init|Unsp superficial injuries of left back wall of thorax, init +C2834607|T037|PT|S20.402A|ICD10CM|Unspecified superficial injuries of left back wall of thorax, initial encounter|Unspecified superficial injuries of left back wall of thorax, initial encounter +C2834608|T037|AB|S20.402D|ICD10CM|Unsp superficial injuries of left back wall of thorax, subs|Unsp superficial injuries of left back wall of thorax, subs +C2834608|T037|PT|S20.402D|ICD10CM|Unspecified superficial injuries of left back wall of thorax, subsequent encounter|Unspecified superficial injuries of left back wall of thorax, subsequent encounter +C2834609|T037|AB|S20.402S|ICD10CM|Unsp superficial injuries of l bk wl of thorax, sequela|Unsp superficial injuries of l bk wl of thorax, sequela +C2834609|T037|PT|S20.402S|ICD10CM|Unspecified superficial injuries of left back wall of thorax, sequela|Unspecified superficial injuries of left back wall of thorax, sequela +C2834610|T037|AB|S20.409|ICD10CM|Unsp superficial injuries of unspecified back wall of thorax|Unsp superficial injuries of unspecified back wall of thorax +C2834610|T037|HT|S20.409|ICD10CM|Unspecified superficial injuries of unspecified back wall of thorax|Unspecified superficial injuries of unspecified back wall of thorax +C2834611|T037|AB|S20.409A|ICD10CM|Unsp superficial injuries of unsp back wall of thorax, init|Unsp superficial injuries of unsp back wall of thorax, init +C2834611|T037|PT|S20.409A|ICD10CM|Unspecified superficial injuries of unspecified back wall of thorax, initial encounter|Unspecified superficial injuries of unspecified back wall of thorax, initial encounter +C2834612|T037|AB|S20.409D|ICD10CM|Unsp superficial injuries of unsp back wall of thorax, subs|Unsp superficial injuries of unsp back wall of thorax, subs +C2834612|T037|PT|S20.409D|ICD10CM|Unspecified superficial injuries of unspecified back wall of thorax, subsequent encounter|Unspecified superficial injuries of unspecified back wall of thorax, subsequent encounter +C2834613|T037|AB|S20.409S|ICD10CM|Unsp superfic injuries of unsp back wall of thorax, sequela|Unsp superfic injuries of unsp back wall of thorax, sequela +C2834613|T037|PT|S20.409S|ICD10CM|Unspecified superficial injuries of unspecified back wall of thorax, sequela|Unspecified superficial injuries of unspecified back wall of thorax, sequela +C2834614|T037|AB|S20.41|ICD10CM|Abrasion of back wall of thorax|Abrasion of back wall of thorax +C2834614|T037|HT|S20.41|ICD10CM|Abrasion of back wall of thorax|Abrasion of back wall of thorax +C2834615|T037|AB|S20.411|ICD10CM|Abrasion of right back wall of thorax|Abrasion of right back wall of thorax +C2834615|T037|HT|S20.411|ICD10CM|Abrasion of right back wall of thorax|Abrasion of right back wall of thorax +C2834616|T037|PT|S20.411A|ICD10CM|Abrasion of right back wall of thorax, initial encounter|Abrasion of right back wall of thorax, initial encounter +C2834616|T037|AB|S20.411A|ICD10CM|Abrasion of right back wall of thorax, initial encounter|Abrasion of right back wall of thorax, initial encounter +C2834617|T037|AB|S20.411D|ICD10CM|Abrasion of right back wall of thorax, subsequent encounter|Abrasion of right back wall of thorax, subsequent encounter +C2834617|T037|PT|S20.411D|ICD10CM|Abrasion of right back wall of thorax, subsequent encounter|Abrasion of right back wall of thorax, subsequent encounter +C2834618|T037|PT|S20.411S|ICD10CM|Abrasion of right back wall of thorax, sequela|Abrasion of right back wall of thorax, sequela +C2834618|T037|AB|S20.411S|ICD10CM|Abrasion of right back wall of thorax, sequela|Abrasion of right back wall of thorax, sequela +C2834619|T037|AB|S20.412|ICD10CM|Abrasion of left back wall of thorax|Abrasion of left back wall of thorax +C2834619|T037|HT|S20.412|ICD10CM|Abrasion of left back wall of thorax|Abrasion of left back wall of thorax +C2834620|T037|PT|S20.412A|ICD10CM|Abrasion of left back wall of thorax, initial encounter|Abrasion of left back wall of thorax, initial encounter +C2834620|T037|AB|S20.412A|ICD10CM|Abrasion of left back wall of thorax, initial encounter|Abrasion of left back wall of thorax, initial encounter +C2834621|T037|PT|S20.412D|ICD10CM|Abrasion of left back wall of thorax, subsequent encounter|Abrasion of left back wall of thorax, subsequent encounter +C2834621|T037|AB|S20.412D|ICD10CM|Abrasion of left back wall of thorax, subsequent encounter|Abrasion of left back wall of thorax, subsequent encounter +C2834622|T037|PT|S20.412S|ICD10CM|Abrasion of left back wall of thorax, sequela|Abrasion of left back wall of thorax, sequela +C2834622|T037|AB|S20.412S|ICD10CM|Abrasion of left back wall of thorax, sequela|Abrasion of left back wall of thorax, sequela +C2834623|T037|AB|S20.419|ICD10CM|Abrasion of unspecified back wall of thorax|Abrasion of unspecified back wall of thorax +C2834623|T037|HT|S20.419|ICD10CM|Abrasion of unspecified back wall of thorax|Abrasion of unspecified back wall of thorax +C2834624|T037|AB|S20.419A|ICD10CM|Abrasion of unspecified back wall of thorax, init encntr|Abrasion of unspecified back wall of thorax, init encntr +C2834624|T037|PT|S20.419A|ICD10CM|Abrasion of unspecified back wall of thorax, initial encounter|Abrasion of unspecified back wall of thorax, initial encounter +C2834625|T037|AB|S20.419D|ICD10CM|Abrasion of unspecified back wall of thorax, subs encntr|Abrasion of unspecified back wall of thorax, subs encntr +C2834625|T037|PT|S20.419D|ICD10CM|Abrasion of unspecified back wall of thorax, subsequent encounter|Abrasion of unspecified back wall of thorax, subsequent encounter +C2834626|T037|PT|S20.419S|ICD10CM|Abrasion of unspecified back wall of thorax, sequela|Abrasion of unspecified back wall of thorax, sequela +C2834626|T037|AB|S20.419S|ICD10CM|Abrasion of unspecified back wall of thorax, sequela|Abrasion of unspecified back wall of thorax, sequela +C2834627|T037|AB|S20.42|ICD10CM|Blister (nonthermal) of back wall of thorax|Blister (nonthermal) of back wall of thorax +C2834627|T037|HT|S20.42|ICD10CM|Blister (nonthermal) of back wall of thorax|Blister (nonthermal) of back wall of thorax +C2834628|T037|AB|S20.421|ICD10CM|Blister (nonthermal) of right back wall of thorax|Blister (nonthermal) of right back wall of thorax +C2834628|T037|HT|S20.421|ICD10CM|Blister (nonthermal) of right back wall of thorax|Blister (nonthermal) of right back wall of thorax +C2834629|T037|AB|S20.421A|ICD10CM|Blister (nonthermal) of right back wall of thorax, init|Blister (nonthermal) of right back wall of thorax, init +C2834629|T037|PT|S20.421A|ICD10CM|Blister (nonthermal) of right back wall of thorax, initial encounter|Blister (nonthermal) of right back wall of thorax, initial encounter +C2834630|T037|AB|S20.421D|ICD10CM|Blister (nonthermal) of right back wall of thorax, subs|Blister (nonthermal) of right back wall of thorax, subs +C2834630|T037|PT|S20.421D|ICD10CM|Blister (nonthermal) of right back wall of thorax, subsequent encounter|Blister (nonthermal) of right back wall of thorax, subsequent encounter +C2834631|T037|AB|S20.421S|ICD10CM|Blister (nonthermal) of right back wall of thorax, sequela|Blister (nonthermal) of right back wall of thorax, sequela +C2834631|T037|PT|S20.421S|ICD10CM|Blister (nonthermal) of right back wall of thorax, sequela|Blister (nonthermal) of right back wall of thorax, sequela +C2834632|T037|AB|S20.422|ICD10CM|Blister (nonthermal) of left back wall of thorax|Blister (nonthermal) of left back wall of thorax +C2834632|T037|HT|S20.422|ICD10CM|Blister (nonthermal) of left back wall of thorax|Blister (nonthermal) of left back wall of thorax +C2834633|T037|AB|S20.422A|ICD10CM|Blister (nonthermal) of left back wall of thorax, init|Blister (nonthermal) of left back wall of thorax, init +C2834633|T037|PT|S20.422A|ICD10CM|Blister (nonthermal) of left back wall of thorax, initial encounter|Blister (nonthermal) of left back wall of thorax, initial encounter +C2834634|T037|AB|S20.422D|ICD10CM|Blister (nonthermal) of left back wall of thorax, subs|Blister (nonthermal) of left back wall of thorax, subs +C2834634|T037|PT|S20.422D|ICD10CM|Blister (nonthermal) of left back wall of thorax, subsequent encounter|Blister (nonthermal) of left back wall of thorax, subsequent encounter +C2834635|T037|AB|S20.422S|ICD10CM|Blister (nonthermal) of left back wall of thorax, sequela|Blister (nonthermal) of left back wall of thorax, sequela +C2834635|T037|PT|S20.422S|ICD10CM|Blister (nonthermal) of left back wall of thorax, sequela|Blister (nonthermal) of left back wall of thorax, sequela +C2834636|T037|AB|S20.429|ICD10CM|Blister (nonthermal) of unspecified back wall of thorax|Blister (nonthermal) of unspecified back wall of thorax +C2834636|T037|HT|S20.429|ICD10CM|Blister (nonthermal) of unspecified back wall of thorax|Blister (nonthermal) of unspecified back wall of thorax +C2834637|T037|AB|S20.429A|ICD10CM|Blister (nonthermal) of unsp back wall of thorax, init|Blister (nonthermal) of unsp back wall of thorax, init +C2834637|T037|PT|S20.429A|ICD10CM|Blister (nonthermal) of unspecified back wall of thorax, initial encounter|Blister (nonthermal) of unspecified back wall of thorax, initial encounter +C2834638|T037|AB|S20.429D|ICD10CM|Blister (nonthermal) of unsp back wall of thorax, subs|Blister (nonthermal) of unsp back wall of thorax, subs +C2834638|T037|PT|S20.429D|ICD10CM|Blister (nonthermal) of unspecified back wall of thorax, subsequent encounter|Blister (nonthermal) of unspecified back wall of thorax, subsequent encounter +C2834639|T037|AB|S20.429S|ICD10CM|Blister (nonthermal) of unsp back wall of thorax, sequela|Blister (nonthermal) of unsp back wall of thorax, sequela +C2834639|T037|PT|S20.429S|ICD10CM|Blister (nonthermal) of unspecified back wall of thorax, sequela|Blister (nonthermal) of unspecified back wall of thorax, sequela +C2834640|T037|AB|S20.44|ICD10CM|External constriction of back wall of thorax|External constriction of back wall of thorax +C2834640|T037|HT|S20.44|ICD10CM|External constriction of back wall of thorax|External constriction of back wall of thorax +C2834641|T037|AB|S20.441|ICD10CM|External constriction of right back wall of thorax|External constriction of right back wall of thorax +C2834641|T037|HT|S20.441|ICD10CM|External constriction of right back wall of thorax|External constriction of right back wall of thorax +C2834642|T037|AB|S20.441A|ICD10CM|External constriction of right back wall of thorax, init|External constriction of right back wall of thorax, init +C2834642|T037|PT|S20.441A|ICD10CM|External constriction of right back wall of thorax, initial encounter|External constriction of right back wall of thorax, initial encounter +C2834643|T037|AB|S20.441D|ICD10CM|External constriction of right back wall of thorax, subs|External constriction of right back wall of thorax, subs +C2834643|T037|PT|S20.441D|ICD10CM|External constriction of right back wall of thorax, subsequent encounter|External constriction of right back wall of thorax, subsequent encounter +C2834644|T037|AB|S20.441S|ICD10CM|External constriction of right back wall of thorax, sequela|External constriction of right back wall of thorax, sequela +C2834644|T037|PT|S20.441S|ICD10CM|External constriction of right back wall of thorax, sequela|External constriction of right back wall of thorax, sequela +C2834645|T037|AB|S20.442|ICD10CM|External constriction of left back wall of thorax|External constriction of left back wall of thorax +C2834645|T037|HT|S20.442|ICD10CM|External constriction of left back wall of thorax|External constriction of left back wall of thorax +C2834646|T037|AB|S20.442A|ICD10CM|External constriction of left back wall of thorax, init|External constriction of left back wall of thorax, init +C2834646|T037|PT|S20.442A|ICD10CM|External constriction of left back wall of thorax, initial encounter|External constriction of left back wall of thorax, initial encounter +C2834647|T037|AB|S20.442D|ICD10CM|External constriction of left back wall of thorax, subs|External constriction of left back wall of thorax, subs +C2834647|T037|PT|S20.442D|ICD10CM|External constriction of left back wall of thorax, subsequent encounter|External constriction of left back wall of thorax, subsequent encounter +C2834648|T037|AB|S20.442S|ICD10CM|External constriction of left back wall of thorax, sequela|External constriction of left back wall of thorax, sequela +C2834648|T037|PT|S20.442S|ICD10CM|External constriction of left back wall of thorax, sequela|External constriction of left back wall of thorax, sequela +C2834649|T037|AB|S20.449|ICD10CM|External constriction of unspecified back wall of thorax|External constriction of unspecified back wall of thorax +C2834649|T037|HT|S20.449|ICD10CM|External constriction of unspecified back wall of thorax|External constriction of unspecified back wall of thorax +C2834650|T037|AB|S20.449A|ICD10CM|External constriction of unsp back wall of thorax, init|External constriction of unsp back wall of thorax, init +C2834650|T037|PT|S20.449A|ICD10CM|External constriction of unspecified back wall of thorax, initial encounter|External constriction of unspecified back wall of thorax, initial encounter +C2834651|T037|AB|S20.449D|ICD10CM|External constriction of unsp back wall of thorax, subs|External constriction of unsp back wall of thorax, subs +C2834651|T037|PT|S20.449D|ICD10CM|External constriction of unspecified back wall of thorax, subsequent encounter|External constriction of unspecified back wall of thorax, subsequent encounter +C2834652|T037|AB|S20.449S|ICD10CM|External constriction of unsp back wall of thorax, sequela|External constriction of unsp back wall of thorax, sequela +C2834652|T037|PT|S20.449S|ICD10CM|External constriction of unspecified back wall of thorax, sequela|External constriction of unspecified back wall of thorax, sequela +C2834653|T037|ET|S20.45|ICD10CM|Splinter of back wall of thorax|Splinter of back wall of thorax +C2834654|T037|AB|S20.45|ICD10CM|Superficial foreign body of back wall of thorax|Superficial foreign body of back wall of thorax +C2834654|T037|HT|S20.45|ICD10CM|Superficial foreign body of back wall of thorax|Superficial foreign body of back wall of thorax +C2834655|T037|AB|S20.451|ICD10CM|Superficial foreign body of right back wall of thorax|Superficial foreign body of right back wall of thorax +C2834655|T037|HT|S20.451|ICD10CM|Superficial foreign body of right back wall of thorax|Superficial foreign body of right back wall of thorax +C2834656|T037|AB|S20.451A|ICD10CM|Superficial foreign body of right back wall of thorax, init|Superficial foreign body of right back wall of thorax, init +C2834656|T037|PT|S20.451A|ICD10CM|Superficial foreign body of right back wall of thorax, initial encounter|Superficial foreign body of right back wall of thorax, initial encounter +C2834657|T037|AB|S20.451D|ICD10CM|Superficial foreign body of right back wall of thorax, subs|Superficial foreign body of right back wall of thorax, subs +C2834657|T037|PT|S20.451D|ICD10CM|Superficial foreign body of right back wall of thorax, subsequent encounter|Superficial foreign body of right back wall of thorax, subsequent encounter +C2834658|T037|AB|S20.451S|ICD10CM|Superficial foreign body of r bk wl of thorax, sequela|Superficial foreign body of r bk wl of thorax, sequela +C2834658|T037|PT|S20.451S|ICD10CM|Superficial foreign body of right back wall of thorax, sequela|Superficial foreign body of right back wall of thorax, sequela +C2834659|T037|AB|S20.452|ICD10CM|Superficial foreign body of left back wall of thorax|Superficial foreign body of left back wall of thorax +C2834659|T037|HT|S20.452|ICD10CM|Superficial foreign body of left back wall of thorax|Superficial foreign body of left back wall of thorax +C2834660|T037|AB|S20.452A|ICD10CM|Superficial foreign body of left back wall of thorax, init|Superficial foreign body of left back wall of thorax, init +C2834660|T037|PT|S20.452A|ICD10CM|Superficial foreign body of left back wall of thorax, initial encounter|Superficial foreign body of left back wall of thorax, initial encounter +C2834661|T037|AB|S20.452D|ICD10CM|Superficial foreign body of left back wall of thorax, subs|Superficial foreign body of left back wall of thorax, subs +C2834661|T037|PT|S20.452D|ICD10CM|Superficial foreign body of left back wall of thorax, subsequent encounter|Superficial foreign body of left back wall of thorax, subsequent encounter +C2834662|T037|AB|S20.452S|ICD10CM|Superficial foreign body of l bk wl of thorax, sequela|Superficial foreign body of l bk wl of thorax, sequela +C2834662|T037|PT|S20.452S|ICD10CM|Superficial foreign body of left back wall of thorax, sequela|Superficial foreign body of left back wall of thorax, sequela +C2834663|T037|AB|S20.459|ICD10CM|Superficial foreign body of unspecified back wall of thorax|Superficial foreign body of unspecified back wall of thorax +C2834663|T037|HT|S20.459|ICD10CM|Superficial foreign body of unspecified back wall of thorax|Superficial foreign body of unspecified back wall of thorax +C2834664|T037|AB|S20.459A|ICD10CM|Superficial foreign body of unsp back wall of thorax, init|Superficial foreign body of unsp back wall of thorax, init +C2834664|T037|PT|S20.459A|ICD10CM|Superficial foreign body of unspecified back wall of thorax, initial encounter|Superficial foreign body of unspecified back wall of thorax, initial encounter +C2834665|T037|AB|S20.459D|ICD10CM|Superficial foreign body of unsp back wall of thorax, subs|Superficial foreign body of unsp back wall of thorax, subs +C2834665|T037|PT|S20.459D|ICD10CM|Superficial foreign body of unspecified back wall of thorax, subsequent encounter|Superficial foreign body of unspecified back wall of thorax, subsequent encounter +C2834666|T037|AB|S20.459S|ICD10CM|Superficial fb of unsp back wall of thorax, sequela|Superficial fb of unsp back wall of thorax, sequela +C2834666|T037|PT|S20.459S|ICD10CM|Superficial foreign body of unspecified back wall of thorax, sequela|Superficial foreign body of unspecified back wall of thorax, sequela +C2834667|T037|AB|S20.46|ICD10CM|Insect bite (nonvenomous) of back wall of thorax|Insect bite (nonvenomous) of back wall of thorax +C2834667|T037|HT|S20.46|ICD10CM|Insect bite (nonvenomous) of back wall of thorax|Insect bite (nonvenomous) of back wall of thorax +C2834668|T037|AB|S20.461|ICD10CM|Insect bite (nonvenomous) of right back wall of thorax|Insect bite (nonvenomous) of right back wall of thorax +C2834668|T037|HT|S20.461|ICD10CM|Insect bite (nonvenomous) of right back wall of thorax|Insect bite (nonvenomous) of right back wall of thorax +C2834669|T037|AB|S20.461A|ICD10CM|Insect bite (nonvenomous) of right back wall of thorax, init|Insect bite (nonvenomous) of right back wall of thorax, init +C2834669|T037|PT|S20.461A|ICD10CM|Insect bite (nonvenomous) of right back wall of thorax, initial encounter|Insect bite (nonvenomous) of right back wall of thorax, initial encounter +C2834670|T037|AB|S20.461D|ICD10CM|Insect bite (nonvenomous) of right back wall of thorax, subs|Insect bite (nonvenomous) of right back wall of thorax, subs +C2834670|T037|PT|S20.461D|ICD10CM|Insect bite (nonvenomous) of right back wall of thorax, subsequent encounter|Insect bite (nonvenomous) of right back wall of thorax, subsequent encounter +C2834671|T037|AB|S20.461S|ICD10CM|Insect bite (nonvenomous) of r bk wl of thorax, sequela|Insect bite (nonvenomous) of r bk wl of thorax, sequela +C2834671|T037|PT|S20.461S|ICD10CM|Insect bite (nonvenomous) of right back wall of thorax, sequela|Insect bite (nonvenomous) of right back wall of thorax, sequela +C2834672|T037|AB|S20.462|ICD10CM|Insect bite (nonvenomous) of left back wall of thorax|Insect bite (nonvenomous) of left back wall of thorax +C2834672|T037|HT|S20.462|ICD10CM|Insect bite (nonvenomous) of left back wall of thorax|Insect bite (nonvenomous) of left back wall of thorax +C2834673|T037|AB|S20.462A|ICD10CM|Insect bite (nonvenomous) of left back wall of thorax, init|Insect bite (nonvenomous) of left back wall of thorax, init +C2834673|T037|PT|S20.462A|ICD10CM|Insect bite (nonvenomous) of left back wall of thorax, initial encounter|Insect bite (nonvenomous) of left back wall of thorax, initial encounter +C2834674|T037|AB|S20.462D|ICD10CM|Insect bite (nonvenomous) of left back wall of thorax, subs|Insect bite (nonvenomous) of left back wall of thorax, subs +C2834674|T037|PT|S20.462D|ICD10CM|Insect bite (nonvenomous) of left back wall of thorax, subsequent encounter|Insect bite (nonvenomous) of left back wall of thorax, subsequent encounter +C2834675|T037|AB|S20.462S|ICD10CM|Insect bite (nonvenomous) of l bk wl of thorax, sequela|Insect bite (nonvenomous) of l bk wl of thorax, sequela +C2834675|T037|PT|S20.462S|ICD10CM|Insect bite (nonvenomous) of left back wall of thorax, sequela|Insect bite (nonvenomous) of left back wall of thorax, sequela +C2834676|T037|AB|S20.469|ICD10CM|Insect bite (nonvenomous) of unspecified back wall of thorax|Insect bite (nonvenomous) of unspecified back wall of thorax +C2834676|T037|HT|S20.469|ICD10CM|Insect bite (nonvenomous) of unspecified back wall of thorax|Insect bite (nonvenomous) of unspecified back wall of thorax +C2834677|T037|AB|S20.469A|ICD10CM|Insect bite (nonvenomous) of unsp back wall of thorax, init|Insect bite (nonvenomous) of unsp back wall of thorax, init +C2834677|T037|PT|S20.469A|ICD10CM|Insect bite (nonvenomous) of unspecified back wall of thorax, initial encounter|Insect bite (nonvenomous) of unspecified back wall of thorax, initial encounter +C2834678|T037|AB|S20.469D|ICD10CM|Insect bite (nonvenomous) of unsp back wall of thorax, subs|Insect bite (nonvenomous) of unsp back wall of thorax, subs +C2834678|T037|PT|S20.469D|ICD10CM|Insect bite (nonvenomous) of unspecified back wall of thorax, subsequent encounter|Insect bite (nonvenomous) of unspecified back wall of thorax, subsequent encounter +C2834679|T037|PT|S20.469S|ICD10CM|Insect bite (nonvenomous) of unspecified back wall of thorax, sequela|Insect bite (nonvenomous) of unspecified back wall of thorax, sequela +C2834679|T037|AB|S20.469S|ICD10CM|Insect bite of unsp back wall of thorax, sequela|Insect bite of unsp back wall of thorax, sequela +C2834680|T037|AB|S20.47|ICD10CM|Other superficial bite of back wall of thorax|Other superficial bite of back wall of thorax +C2834680|T037|HT|S20.47|ICD10CM|Other superficial bite of back wall of thorax|Other superficial bite of back wall of thorax +C2834681|T037|AB|S20.471|ICD10CM|Other superficial bite of right back wall of thorax|Other superficial bite of right back wall of thorax +C2834681|T037|HT|S20.471|ICD10CM|Other superficial bite of right back wall of thorax|Other superficial bite of right back wall of thorax +C2834682|T037|AB|S20.471A|ICD10CM|Oth superficial bite of right back wall of thorax, init|Oth superficial bite of right back wall of thorax, init +C2834682|T037|PT|S20.471A|ICD10CM|Other superficial bite of right back wall of thorax, initial encounter|Other superficial bite of right back wall of thorax, initial encounter +C2834683|T037|AB|S20.471D|ICD10CM|Oth superficial bite of right back wall of thorax, subs|Oth superficial bite of right back wall of thorax, subs +C2834683|T037|PT|S20.471D|ICD10CM|Other superficial bite of right back wall of thorax, subsequent encounter|Other superficial bite of right back wall of thorax, subsequent encounter +C2834684|T037|AB|S20.471S|ICD10CM|Other superficial bite of right back wall of thorax, sequela|Other superficial bite of right back wall of thorax, sequela +C2834684|T037|PT|S20.471S|ICD10CM|Other superficial bite of right back wall of thorax, sequela|Other superficial bite of right back wall of thorax, sequela +C2834685|T037|AB|S20.472|ICD10CM|Other superficial bite of left back wall of thorax|Other superficial bite of left back wall of thorax +C2834685|T037|HT|S20.472|ICD10CM|Other superficial bite of left back wall of thorax|Other superficial bite of left back wall of thorax +C2834686|T037|AB|S20.472A|ICD10CM|Oth superficial bite of left back wall of thorax, init|Oth superficial bite of left back wall of thorax, init +C2834686|T037|PT|S20.472A|ICD10CM|Other superficial bite of left back wall of thorax, initial encounter|Other superficial bite of left back wall of thorax, initial encounter +C2834687|T037|AB|S20.472D|ICD10CM|Oth superficial bite of left back wall of thorax, subs|Oth superficial bite of left back wall of thorax, subs +C2834687|T037|PT|S20.472D|ICD10CM|Other superficial bite of left back wall of thorax, subsequent encounter|Other superficial bite of left back wall of thorax, subsequent encounter +C2834688|T037|AB|S20.472S|ICD10CM|Other superficial bite of left back wall of thorax, sequela|Other superficial bite of left back wall of thorax, sequela +C2834688|T037|PT|S20.472S|ICD10CM|Other superficial bite of left back wall of thorax, sequela|Other superficial bite of left back wall of thorax, sequela +C2834689|T037|AB|S20.479|ICD10CM|Other superficial bite of unspecified back wall of thorax|Other superficial bite of unspecified back wall of thorax +C2834689|T037|HT|S20.479|ICD10CM|Other superficial bite of unspecified back wall of thorax|Other superficial bite of unspecified back wall of thorax +C2834690|T037|AB|S20.479A|ICD10CM|Oth superficial bite of unsp back wall of thorax, init|Oth superficial bite of unsp back wall of thorax, init +C2834690|T037|PT|S20.479A|ICD10CM|Other superficial bite of unspecified back wall of thorax, initial encounter|Other superficial bite of unspecified back wall of thorax, initial encounter +C2834691|T037|AB|S20.479D|ICD10CM|Oth superficial bite of unsp back wall of thorax, subs|Oth superficial bite of unsp back wall of thorax, subs +C2834691|T037|PT|S20.479D|ICD10CM|Other superficial bite of unspecified back wall of thorax, subsequent encounter|Other superficial bite of unspecified back wall of thorax, subsequent encounter +C2834692|T037|AB|S20.479S|ICD10CM|Other superficial bite of unsp back wall of thorax, sequela|Other superficial bite of unsp back wall of thorax, sequela +C2834692|T037|PT|S20.479S|ICD10CM|Other superficial bite of unspecified back wall of thorax, sequela|Other superficial bite of unspecified back wall of thorax, sequela +C0451955|T037|PT|S20.7|ICD10|Multiple superficial injuries of thorax|Multiple superficial injuries of thorax +C0478233|T037|PT|S20.8|ICD10|Superficial injury of other and unspecified parts of thorax|Superficial injury of other and unspecified parts of thorax +C2834693|T037|AB|S20.9|ICD10CM|Superficial injury of unspecified parts of thorax|Superficial injury of unspecified parts of thorax +C2834693|T037|HT|S20.9|ICD10CM|Superficial injury of unspecified parts of thorax|Superficial injury of unspecified parts of thorax +C2834694|T037|ET|S20.90|ICD10CM|Superficial injury of thoracic wall NOS|Superficial injury of thoracic wall NOS +C2834695|T037|AB|S20.90|ICD10CM|Unsp superficial injury of unspecified parts of thorax|Unsp superficial injury of unspecified parts of thorax +C2834695|T037|HT|S20.90|ICD10CM|Unspecified superficial injury of unspecified parts of thorax|Unspecified superficial injury of unspecified parts of thorax +C2834696|T037|AB|S20.90XA|ICD10CM|Unsp superficial injury of unsp parts of thorax, init encntr|Unsp superficial injury of unsp parts of thorax, init encntr +C2834696|T037|PT|S20.90XA|ICD10CM|Unspecified superficial injury of unspecified parts of thorax, initial encounter|Unspecified superficial injury of unspecified parts of thorax, initial encounter +C2834697|T037|AB|S20.90XD|ICD10CM|Unsp superficial injury of unsp parts of thorax, subs encntr|Unsp superficial injury of unsp parts of thorax, subs encntr +C2834697|T037|PT|S20.90XD|ICD10CM|Unspecified superficial injury of unspecified parts of thorax, subsequent encounter|Unspecified superficial injury of unspecified parts of thorax, subsequent encounter +C2834698|T037|AB|S20.90XS|ICD10CM|Unsp superficial injury of unsp parts of thorax, sequela|Unsp superficial injury of unsp parts of thorax, sequela +C2834698|T037|PT|S20.90XS|ICD10CM|Unspecified superficial injury of unspecified parts of thorax, sequela|Unspecified superficial injury of unspecified parts of thorax, sequela +C2834699|T037|AB|S20.91|ICD10CM|Abrasion of unspecified parts of thorax|Abrasion of unspecified parts of thorax +C2834699|T037|HT|S20.91|ICD10CM|Abrasion of unspecified parts of thorax|Abrasion of unspecified parts of thorax +C2834700|T037|PT|S20.91XA|ICD10CM|Abrasion of unspecified parts of thorax, initial encounter|Abrasion of unspecified parts of thorax, initial encounter +C2834700|T037|AB|S20.91XA|ICD10CM|Abrasion of unspecified parts of thorax, initial encounter|Abrasion of unspecified parts of thorax, initial encounter +C2834701|T037|AB|S20.91XD|ICD10CM|Abrasion of unspecified parts of thorax, subs encntr|Abrasion of unspecified parts of thorax, subs encntr +C2834701|T037|PT|S20.91XD|ICD10CM|Abrasion of unspecified parts of thorax, subsequent encounter|Abrasion of unspecified parts of thorax, subsequent encounter +C2834702|T037|PT|S20.91XS|ICD10CM|Abrasion of unspecified parts of thorax, sequela|Abrasion of unspecified parts of thorax, sequela +C2834702|T037|AB|S20.91XS|ICD10CM|Abrasion of unspecified parts of thorax, sequela|Abrasion of unspecified parts of thorax, sequela +C2834703|T037|AB|S20.92|ICD10CM|Blister (nonthermal) of unspecified parts of thorax|Blister (nonthermal) of unspecified parts of thorax +C2834703|T037|HT|S20.92|ICD10CM|Blister (nonthermal) of unspecified parts of thorax|Blister (nonthermal) of unspecified parts of thorax +C2834704|T037|AB|S20.92XA|ICD10CM|Blister (nonthermal) of unsp parts of thorax, init encntr|Blister (nonthermal) of unsp parts of thorax, init encntr +C2834704|T037|PT|S20.92XA|ICD10CM|Blister (nonthermal) of unspecified parts of thorax, initial encounter|Blister (nonthermal) of unspecified parts of thorax, initial encounter +C2834705|T037|AB|S20.92XD|ICD10CM|Blister (nonthermal) of unsp parts of thorax, subs encntr|Blister (nonthermal) of unsp parts of thorax, subs encntr +C2834705|T037|PT|S20.92XD|ICD10CM|Blister (nonthermal) of unspecified parts of thorax, subsequent encounter|Blister (nonthermal) of unspecified parts of thorax, subsequent encounter +C2834706|T037|AB|S20.92XS|ICD10CM|Blister (nonthermal) of unspecified parts of thorax, sequela|Blister (nonthermal) of unspecified parts of thorax, sequela +C2834706|T037|PT|S20.92XS|ICD10CM|Blister (nonthermal) of unspecified parts of thorax, sequela|Blister (nonthermal) of unspecified parts of thorax, sequela +C2834707|T037|AB|S20.94|ICD10CM|External constriction of unspecified parts of thorax|External constriction of unspecified parts of thorax +C2834707|T037|HT|S20.94|ICD10CM|External constriction of unspecified parts of thorax|External constriction of unspecified parts of thorax +C2834708|T037|AB|S20.94XA|ICD10CM|External constriction of unsp parts of thorax, init encntr|External constriction of unsp parts of thorax, init encntr +C2834708|T037|PT|S20.94XA|ICD10CM|External constriction of unspecified parts of thorax, initial encounter|External constriction of unspecified parts of thorax, initial encounter +C2834709|T037|AB|S20.94XD|ICD10CM|External constriction of unsp parts of thorax, subs encntr|External constriction of unsp parts of thorax, subs encntr +C2834709|T037|PT|S20.94XD|ICD10CM|External constriction of unspecified parts of thorax, subsequent encounter|External constriction of unspecified parts of thorax, subsequent encounter +C2834710|T037|AB|S20.94XS|ICD10CM|External constriction of unsp parts of thorax, sequela|External constriction of unsp parts of thorax, sequela +C2834710|T037|PT|S20.94XS|ICD10CM|External constriction of unspecified parts of thorax, sequela|External constriction of unspecified parts of thorax, sequela +C2834711|T037|ET|S20.95|ICD10CM|Splinter in thorax NOS|Splinter in thorax NOS +C2834712|T037|AB|S20.95|ICD10CM|Superficial foreign body of unspecified parts of thorax|Superficial foreign body of unspecified parts of thorax +C2834712|T037|HT|S20.95|ICD10CM|Superficial foreign body of unspecified parts of thorax|Superficial foreign body of unspecified parts of thorax +C2834713|T037|AB|S20.95XA|ICD10CM|Superficial foreign body of unsp parts of thorax, init|Superficial foreign body of unsp parts of thorax, init +C2834713|T037|PT|S20.95XA|ICD10CM|Superficial foreign body of unspecified parts of thorax, initial encounter|Superficial foreign body of unspecified parts of thorax, initial encounter +C2834714|T037|AB|S20.95XD|ICD10CM|Superficial foreign body of unsp parts of thorax, subs|Superficial foreign body of unsp parts of thorax, subs +C2834714|T037|PT|S20.95XD|ICD10CM|Superficial foreign body of unspecified parts of thorax, subsequent encounter|Superficial foreign body of unspecified parts of thorax, subsequent encounter +C2834715|T037|AB|S20.95XS|ICD10CM|Superficial foreign body of unsp parts of thorax, sequela|Superficial foreign body of unsp parts of thorax, sequela +C2834715|T037|PT|S20.95XS|ICD10CM|Superficial foreign body of unspecified parts of thorax, sequela|Superficial foreign body of unspecified parts of thorax, sequela +C2834716|T037|AB|S20.96|ICD10CM|Insect bite (nonvenomous) of unspecified parts of thorax|Insect bite (nonvenomous) of unspecified parts of thorax +C2834716|T037|HT|S20.96|ICD10CM|Insect bite (nonvenomous) of unspecified parts of thorax|Insect bite (nonvenomous) of unspecified parts of thorax +C2834717|T037|AB|S20.96XA|ICD10CM|Insect bite (nonvenomous) of unsp parts of thorax, init|Insect bite (nonvenomous) of unsp parts of thorax, init +C2834717|T037|PT|S20.96XA|ICD10CM|Insect bite (nonvenomous) of unspecified parts of thorax, initial encounter|Insect bite (nonvenomous) of unspecified parts of thorax, initial encounter +C2834718|T037|AB|S20.96XD|ICD10CM|Insect bite (nonvenomous) of unsp parts of thorax, subs|Insect bite (nonvenomous) of unsp parts of thorax, subs +C2834718|T037|PT|S20.96XD|ICD10CM|Insect bite (nonvenomous) of unspecified parts of thorax, subsequent encounter|Insect bite (nonvenomous) of unspecified parts of thorax, subsequent encounter +C2834719|T037|AB|S20.96XS|ICD10CM|Insect bite (nonvenomous) of unsp parts of thorax, sequela|Insect bite (nonvenomous) of unsp parts of thorax, sequela +C2834719|T037|PT|S20.96XS|ICD10CM|Insect bite (nonvenomous) of unspecified parts of thorax, sequela|Insect bite (nonvenomous) of unspecified parts of thorax, sequela +C2834720|T037|AB|S20.97|ICD10CM|Other superficial bite of unspecified parts of thorax|Other superficial bite of unspecified parts of thorax +C2834720|T037|HT|S20.97|ICD10CM|Other superficial bite of unspecified parts of thorax|Other superficial bite of unspecified parts of thorax +C2834721|T037|AB|S20.97XA|ICD10CM|Other superficial bite of unsp parts of thorax, init encntr|Other superficial bite of unsp parts of thorax, init encntr +C2834721|T037|PT|S20.97XA|ICD10CM|Other superficial bite of unspecified parts of thorax, initial encounter|Other superficial bite of unspecified parts of thorax, initial encounter +C2834722|T037|AB|S20.97XD|ICD10CM|Other superficial bite of unsp parts of thorax, subs encntr|Other superficial bite of unsp parts of thorax, subs encntr +C2834722|T037|PT|S20.97XD|ICD10CM|Other superficial bite of unspecified parts of thorax, subsequent encounter|Other superficial bite of unspecified parts of thorax, subsequent encounter +C2834723|T037|AB|S20.97XS|ICD10CM|Other superficial bite of unsp parts of thorax, sequela|Other superficial bite of unsp parts of thorax, sequela +C2834723|T037|PT|S20.97XS|ICD10CM|Other superficial bite of unspecified parts of thorax, sequela|Other superficial bite of unspecified parts of thorax, sequela +C0478235|T037|HT|S21|ICD10|Open wound of thorax|Open wound of thorax +C0478235|T037|HT|S21|ICD10CM|Open wound of thorax|Open wound of thorax +C0478235|T037|AB|S21|ICD10CM|Open wound of thorax|Open wound of thorax +C0347564|T037|HT|S21.0|ICD10CM|Open wound of breast|Open wound of breast +C0347564|T037|AB|S21.0|ICD10CM|Open wound of breast|Open wound of breast +C0347564|T037|PT|S21.0|ICD10|Open wound of breast|Open wound of breast +C2834724|T037|AB|S21.00|ICD10CM|Unspecified open wound of breast|Unspecified open wound of breast +C2834724|T037|HT|S21.00|ICD10CM|Unspecified open wound of breast|Unspecified open wound of breast +C2834725|T037|AB|S21.001|ICD10CM|Unspecified open wound of right breast|Unspecified open wound of right breast +C2834725|T037|HT|S21.001|ICD10CM|Unspecified open wound of right breast|Unspecified open wound of right breast +C2834726|T037|AB|S21.001A|ICD10CM|Unspecified open wound of right breast, initial encounter|Unspecified open wound of right breast, initial encounter +C2834726|T037|PT|S21.001A|ICD10CM|Unspecified open wound of right breast, initial encounter|Unspecified open wound of right breast, initial encounter +C2834727|T037|AB|S21.001D|ICD10CM|Unspecified open wound of right breast, subsequent encounter|Unspecified open wound of right breast, subsequent encounter +C2834727|T037|PT|S21.001D|ICD10CM|Unspecified open wound of right breast, subsequent encounter|Unspecified open wound of right breast, subsequent encounter +C2834728|T037|AB|S21.001S|ICD10CM|Unspecified open wound of right breast, sequela|Unspecified open wound of right breast, sequela +C2834728|T037|PT|S21.001S|ICD10CM|Unspecified open wound of right breast, sequela|Unspecified open wound of right breast, sequela +C2834729|T037|AB|S21.002|ICD10CM|Unspecified open wound of left breast|Unspecified open wound of left breast +C2834729|T037|HT|S21.002|ICD10CM|Unspecified open wound of left breast|Unspecified open wound of left breast +C2834730|T037|AB|S21.002A|ICD10CM|Unspecified open wound of left breast, initial encounter|Unspecified open wound of left breast, initial encounter +C2834730|T037|PT|S21.002A|ICD10CM|Unspecified open wound of left breast, initial encounter|Unspecified open wound of left breast, initial encounter +C2834731|T037|AB|S21.002D|ICD10CM|Unspecified open wound of left breast, subsequent encounter|Unspecified open wound of left breast, subsequent encounter +C2834731|T037|PT|S21.002D|ICD10CM|Unspecified open wound of left breast, subsequent encounter|Unspecified open wound of left breast, subsequent encounter +C2834732|T037|AB|S21.002S|ICD10CM|Unspecified open wound of left breast, sequela|Unspecified open wound of left breast, sequela +C2834732|T037|PT|S21.002S|ICD10CM|Unspecified open wound of left breast, sequela|Unspecified open wound of left breast, sequela +C2834733|T037|AB|S21.009|ICD10CM|Unspecified open wound of unspecified breast|Unspecified open wound of unspecified breast +C2834733|T037|HT|S21.009|ICD10CM|Unspecified open wound of unspecified breast|Unspecified open wound of unspecified breast +C2834734|T037|AB|S21.009A|ICD10CM|Unspecified open wound of unspecified breast, init encntr|Unspecified open wound of unspecified breast, init encntr +C2834734|T037|PT|S21.009A|ICD10CM|Unspecified open wound of unspecified breast, initial encounter|Unspecified open wound of unspecified breast, initial encounter +C2834735|T037|AB|S21.009D|ICD10CM|Unspecified open wound of unspecified breast, subs encntr|Unspecified open wound of unspecified breast, subs encntr +C2834735|T037|PT|S21.009D|ICD10CM|Unspecified open wound of unspecified breast, subsequent encounter|Unspecified open wound of unspecified breast, subsequent encounter +C2834736|T037|AB|S21.009S|ICD10CM|Unspecified open wound of unspecified breast, sequela|Unspecified open wound of unspecified breast, sequela +C2834736|T037|PT|S21.009S|ICD10CM|Unspecified open wound of unspecified breast, sequela|Unspecified open wound of unspecified breast, sequela +C2834737|T037|AB|S21.01|ICD10CM|Laceration without foreign body of breast|Laceration without foreign body of breast +C2834737|T037|HT|S21.01|ICD10CM|Laceration without foreign body of breast|Laceration without foreign body of breast +C2834738|T037|AB|S21.011|ICD10CM|Laceration without foreign body of right breast|Laceration without foreign body of right breast +C2834738|T037|HT|S21.011|ICD10CM|Laceration without foreign body of right breast|Laceration without foreign body of right breast +C2834739|T037|AB|S21.011A|ICD10CM|Laceration without foreign body of right breast, init encntr|Laceration without foreign body of right breast, init encntr +C2834739|T037|PT|S21.011A|ICD10CM|Laceration without foreign body of right breast, initial encounter|Laceration without foreign body of right breast, initial encounter +C2834740|T037|AB|S21.011D|ICD10CM|Laceration without foreign body of right breast, subs encntr|Laceration without foreign body of right breast, subs encntr +C2834740|T037|PT|S21.011D|ICD10CM|Laceration without foreign body of right breast, subsequent encounter|Laceration without foreign body of right breast, subsequent encounter +C2834741|T037|AB|S21.011S|ICD10CM|Laceration without foreign body of right breast, sequela|Laceration without foreign body of right breast, sequela +C2834741|T037|PT|S21.011S|ICD10CM|Laceration without foreign body of right breast, sequela|Laceration without foreign body of right breast, sequela +C2834742|T037|AB|S21.012|ICD10CM|Laceration without foreign body of left breast|Laceration without foreign body of left breast +C2834742|T037|HT|S21.012|ICD10CM|Laceration without foreign body of left breast|Laceration without foreign body of left breast +C2834743|T037|AB|S21.012A|ICD10CM|Laceration without foreign body of left breast, init encntr|Laceration without foreign body of left breast, init encntr +C2834743|T037|PT|S21.012A|ICD10CM|Laceration without foreign body of left breast, initial encounter|Laceration without foreign body of left breast, initial encounter +C2834744|T037|AB|S21.012D|ICD10CM|Laceration without foreign body of left breast, subs encntr|Laceration without foreign body of left breast, subs encntr +C2834744|T037|PT|S21.012D|ICD10CM|Laceration without foreign body of left breast, subsequent encounter|Laceration without foreign body of left breast, subsequent encounter +C2834745|T037|AB|S21.012S|ICD10CM|Laceration without foreign body of left breast, sequela|Laceration without foreign body of left breast, sequela +C2834745|T037|PT|S21.012S|ICD10CM|Laceration without foreign body of left breast, sequela|Laceration without foreign body of left breast, sequela +C2834746|T037|AB|S21.019|ICD10CM|Laceration without foreign body of unspecified breast|Laceration without foreign body of unspecified breast +C2834746|T037|HT|S21.019|ICD10CM|Laceration without foreign body of unspecified breast|Laceration without foreign body of unspecified breast +C2834747|T037|AB|S21.019A|ICD10CM|Laceration without foreign body of unsp breast, init encntr|Laceration without foreign body of unsp breast, init encntr +C2834747|T037|PT|S21.019A|ICD10CM|Laceration without foreign body of unspecified breast, initial encounter|Laceration without foreign body of unspecified breast, initial encounter +C2834748|T037|AB|S21.019D|ICD10CM|Laceration without foreign body of unsp breast, subs encntr|Laceration without foreign body of unsp breast, subs encntr +C2834748|T037|PT|S21.019D|ICD10CM|Laceration without foreign body of unspecified breast, subsequent encounter|Laceration without foreign body of unspecified breast, subsequent encounter +C2834749|T037|AB|S21.019S|ICD10CM|Laceration without foreign body of unsp breast, sequela|Laceration without foreign body of unsp breast, sequela +C2834749|T037|PT|S21.019S|ICD10CM|Laceration without foreign body of unspecified breast, sequela|Laceration without foreign body of unspecified breast, sequela +C2834750|T037|AB|S21.02|ICD10CM|Laceration with foreign body of breast|Laceration with foreign body of breast +C2834750|T037|HT|S21.02|ICD10CM|Laceration with foreign body of breast|Laceration with foreign body of breast +C2834751|T037|AB|S21.021|ICD10CM|Laceration with foreign body of right breast|Laceration with foreign body of right breast +C2834751|T037|HT|S21.021|ICD10CM|Laceration with foreign body of right breast|Laceration with foreign body of right breast +C2834752|T037|AB|S21.021A|ICD10CM|Laceration with foreign body of right breast, init encntr|Laceration with foreign body of right breast, init encntr +C2834752|T037|PT|S21.021A|ICD10CM|Laceration with foreign body of right breast, initial encounter|Laceration with foreign body of right breast, initial encounter +C2834753|T037|AB|S21.021D|ICD10CM|Laceration with foreign body of right breast, subs encntr|Laceration with foreign body of right breast, subs encntr +C2834753|T037|PT|S21.021D|ICD10CM|Laceration with foreign body of right breast, subsequent encounter|Laceration with foreign body of right breast, subsequent encounter +C2834754|T037|AB|S21.021S|ICD10CM|Laceration with foreign body of right breast, sequela|Laceration with foreign body of right breast, sequela +C2834754|T037|PT|S21.021S|ICD10CM|Laceration with foreign body of right breast, sequela|Laceration with foreign body of right breast, sequela +C2834755|T037|AB|S21.022|ICD10CM|Laceration with foreign body of left breast|Laceration with foreign body of left breast +C2834755|T037|HT|S21.022|ICD10CM|Laceration with foreign body of left breast|Laceration with foreign body of left breast +C2834756|T037|AB|S21.022A|ICD10CM|Laceration with foreign body of left breast, init encntr|Laceration with foreign body of left breast, init encntr +C2834756|T037|PT|S21.022A|ICD10CM|Laceration with foreign body of left breast, initial encounter|Laceration with foreign body of left breast, initial encounter +C2834757|T037|AB|S21.022D|ICD10CM|Laceration with foreign body of left breast, subs encntr|Laceration with foreign body of left breast, subs encntr +C2834757|T037|PT|S21.022D|ICD10CM|Laceration with foreign body of left breast, subsequent encounter|Laceration with foreign body of left breast, subsequent encounter +C2834758|T037|AB|S21.022S|ICD10CM|Laceration with foreign body of left breast, sequela|Laceration with foreign body of left breast, sequela +C2834758|T037|PT|S21.022S|ICD10CM|Laceration with foreign body of left breast, sequela|Laceration with foreign body of left breast, sequela +C2834759|T037|AB|S21.029|ICD10CM|Laceration with foreign body of unspecified breast|Laceration with foreign body of unspecified breast +C2834759|T037|HT|S21.029|ICD10CM|Laceration with foreign body of unspecified breast|Laceration with foreign body of unspecified breast +C2834760|T037|AB|S21.029A|ICD10CM|Laceration with foreign body of unsp breast, init encntr|Laceration with foreign body of unsp breast, init encntr +C2834760|T037|PT|S21.029A|ICD10CM|Laceration with foreign body of unspecified breast, initial encounter|Laceration with foreign body of unspecified breast, initial encounter +C2834761|T037|AB|S21.029D|ICD10CM|Laceration with foreign body of unsp breast, subs encntr|Laceration with foreign body of unsp breast, subs encntr +C2834761|T037|PT|S21.029D|ICD10CM|Laceration with foreign body of unspecified breast, subsequent encounter|Laceration with foreign body of unspecified breast, subsequent encounter +C2834762|T037|AB|S21.029S|ICD10CM|Laceration with foreign body of unspecified breast, sequela|Laceration with foreign body of unspecified breast, sequela +C2834762|T037|PT|S21.029S|ICD10CM|Laceration with foreign body of unspecified breast, sequela|Laceration with foreign body of unspecified breast, sequela +C2834763|T037|AB|S21.03|ICD10CM|Puncture wound without foreign body of breast|Puncture wound without foreign body of breast +C2834763|T037|HT|S21.03|ICD10CM|Puncture wound without foreign body of breast|Puncture wound without foreign body of breast +C2834764|T037|AB|S21.031|ICD10CM|Puncture wound without foreign body of right breast|Puncture wound without foreign body of right breast +C2834764|T037|HT|S21.031|ICD10CM|Puncture wound without foreign body of right breast|Puncture wound without foreign body of right breast +C2834765|T037|AB|S21.031A|ICD10CM|Puncture wound w/o foreign body of right breast, init encntr|Puncture wound w/o foreign body of right breast, init encntr +C2834765|T037|PT|S21.031A|ICD10CM|Puncture wound without foreign body of right breast, initial encounter|Puncture wound without foreign body of right breast, initial encounter +C2834766|T037|AB|S21.031D|ICD10CM|Puncture wound w/o foreign body of right breast, subs encntr|Puncture wound w/o foreign body of right breast, subs encntr +C2834766|T037|PT|S21.031D|ICD10CM|Puncture wound without foreign body of right breast, subsequent encounter|Puncture wound without foreign body of right breast, subsequent encounter +C2834767|T037|AB|S21.031S|ICD10CM|Puncture wound without foreign body of right breast, sequela|Puncture wound without foreign body of right breast, sequela +C2834767|T037|PT|S21.031S|ICD10CM|Puncture wound without foreign body of right breast, sequela|Puncture wound without foreign body of right breast, sequela +C2834768|T037|AB|S21.032|ICD10CM|Puncture wound without foreign body of left breast|Puncture wound without foreign body of left breast +C2834768|T037|HT|S21.032|ICD10CM|Puncture wound without foreign body of left breast|Puncture wound without foreign body of left breast +C2834769|T037|AB|S21.032A|ICD10CM|Puncture wound w/o foreign body of left breast, init encntr|Puncture wound w/o foreign body of left breast, init encntr +C2834769|T037|PT|S21.032A|ICD10CM|Puncture wound without foreign body of left breast, initial encounter|Puncture wound without foreign body of left breast, initial encounter +C2834770|T037|AB|S21.032D|ICD10CM|Puncture wound w/o foreign body of left breast, subs encntr|Puncture wound w/o foreign body of left breast, subs encntr +C2834770|T037|PT|S21.032D|ICD10CM|Puncture wound without foreign body of left breast, subsequent encounter|Puncture wound without foreign body of left breast, subsequent encounter +C2834771|T037|AB|S21.032S|ICD10CM|Puncture wound without foreign body of left breast, sequela|Puncture wound without foreign body of left breast, sequela +C2834771|T037|PT|S21.032S|ICD10CM|Puncture wound without foreign body of left breast, sequela|Puncture wound without foreign body of left breast, sequela +C2834772|T037|AB|S21.039|ICD10CM|Puncture wound without foreign body of unspecified breast|Puncture wound without foreign body of unspecified breast +C2834772|T037|HT|S21.039|ICD10CM|Puncture wound without foreign body of unspecified breast|Puncture wound without foreign body of unspecified breast +C2834773|T037|AB|S21.039A|ICD10CM|Puncture wound w/o foreign body of unsp breast, init encntr|Puncture wound w/o foreign body of unsp breast, init encntr +C2834773|T037|PT|S21.039A|ICD10CM|Puncture wound without foreign body of unspecified breast, initial encounter|Puncture wound without foreign body of unspecified breast, initial encounter +C2834774|T037|AB|S21.039D|ICD10CM|Puncture wound w/o foreign body of unsp breast, subs encntr|Puncture wound w/o foreign body of unsp breast, subs encntr +C2834774|T037|PT|S21.039D|ICD10CM|Puncture wound without foreign body of unspecified breast, subsequent encounter|Puncture wound without foreign body of unspecified breast, subsequent encounter +C2834775|T037|AB|S21.039S|ICD10CM|Puncture wound without foreign body of unsp breast, sequela|Puncture wound without foreign body of unsp breast, sequela +C2834775|T037|PT|S21.039S|ICD10CM|Puncture wound without foreign body of unspecified breast, sequela|Puncture wound without foreign body of unspecified breast, sequela +C2834776|T037|AB|S21.04|ICD10CM|Puncture wound with foreign body of breast|Puncture wound with foreign body of breast +C2834776|T037|HT|S21.04|ICD10CM|Puncture wound with foreign body of breast|Puncture wound with foreign body of breast +C2834777|T037|AB|S21.041|ICD10CM|Puncture wound with foreign body of right breast|Puncture wound with foreign body of right breast +C2834777|T037|HT|S21.041|ICD10CM|Puncture wound with foreign body of right breast|Puncture wound with foreign body of right breast +C2834778|T037|AB|S21.041A|ICD10CM|Puncture wound w foreign body of right breast, init encntr|Puncture wound w foreign body of right breast, init encntr +C2834778|T037|PT|S21.041A|ICD10CM|Puncture wound with foreign body of right breast, initial encounter|Puncture wound with foreign body of right breast, initial encounter +C2834779|T037|AB|S21.041D|ICD10CM|Puncture wound w foreign body of right breast, subs encntr|Puncture wound w foreign body of right breast, subs encntr +C2834779|T037|PT|S21.041D|ICD10CM|Puncture wound with foreign body of right breast, subsequent encounter|Puncture wound with foreign body of right breast, subsequent encounter +C2834780|T037|AB|S21.041S|ICD10CM|Puncture wound with foreign body of right breast, sequela|Puncture wound with foreign body of right breast, sequela +C2834780|T037|PT|S21.041S|ICD10CM|Puncture wound with foreign body of right breast, sequela|Puncture wound with foreign body of right breast, sequela +C2834781|T037|AB|S21.042|ICD10CM|Puncture wound with foreign body of left breast|Puncture wound with foreign body of left breast +C2834781|T037|HT|S21.042|ICD10CM|Puncture wound with foreign body of left breast|Puncture wound with foreign body of left breast +C2834782|T037|AB|S21.042A|ICD10CM|Puncture wound with foreign body of left breast, init encntr|Puncture wound with foreign body of left breast, init encntr +C2834782|T037|PT|S21.042A|ICD10CM|Puncture wound with foreign body of left breast, initial encounter|Puncture wound with foreign body of left breast, initial encounter +C2834783|T037|AB|S21.042D|ICD10CM|Puncture wound with foreign body of left breast, subs encntr|Puncture wound with foreign body of left breast, subs encntr +C2834783|T037|PT|S21.042D|ICD10CM|Puncture wound with foreign body of left breast, subsequent encounter|Puncture wound with foreign body of left breast, subsequent encounter +C2834784|T037|AB|S21.042S|ICD10CM|Puncture wound with foreign body of left breast, sequela|Puncture wound with foreign body of left breast, sequela +C2834784|T037|PT|S21.042S|ICD10CM|Puncture wound with foreign body of left breast, sequela|Puncture wound with foreign body of left breast, sequela +C2834785|T037|AB|S21.049|ICD10CM|Puncture wound with foreign body of unspecified breast|Puncture wound with foreign body of unspecified breast +C2834785|T037|HT|S21.049|ICD10CM|Puncture wound with foreign body of unspecified breast|Puncture wound with foreign body of unspecified breast +C2834786|T037|AB|S21.049A|ICD10CM|Puncture wound with foreign body of unsp breast, init encntr|Puncture wound with foreign body of unsp breast, init encntr +C2834786|T037|PT|S21.049A|ICD10CM|Puncture wound with foreign body of unspecified breast, initial encounter|Puncture wound with foreign body of unspecified breast, initial encounter +C2834787|T037|AB|S21.049D|ICD10CM|Puncture wound with foreign body of unsp breast, subs encntr|Puncture wound with foreign body of unsp breast, subs encntr +C2834787|T037|PT|S21.049D|ICD10CM|Puncture wound with foreign body of unspecified breast, subsequent encounter|Puncture wound with foreign body of unspecified breast, subsequent encounter +C2834788|T037|AB|S21.049S|ICD10CM|Puncture wound with foreign body of unsp breast, sequela|Puncture wound with foreign body of unsp breast, sequela +C2834788|T037|PT|S21.049S|ICD10CM|Puncture wound with foreign body of unspecified breast, sequela|Puncture wound with foreign body of unspecified breast, sequela +C2834789|T037|ET|S21.05|ICD10CM|Bite of breast NOS|Bite of breast NOS +C2834790|T037|HT|S21.05|ICD10CM|Open bite of breast|Open bite of breast +C2834790|T037|AB|S21.05|ICD10CM|Open bite of breast|Open bite of breast +C2834791|T037|AB|S21.051|ICD10CM|Open bite of right breast|Open bite of right breast +C2834791|T037|HT|S21.051|ICD10CM|Open bite of right breast|Open bite of right breast +C2834792|T037|AB|S21.051A|ICD10CM|Open bite of right breast, initial encounter|Open bite of right breast, initial encounter +C2834792|T037|PT|S21.051A|ICD10CM|Open bite of right breast, initial encounter|Open bite of right breast, initial encounter +C2834793|T037|AB|S21.051D|ICD10CM|Open bite of right breast, subsequent encounter|Open bite of right breast, subsequent encounter +C2834793|T037|PT|S21.051D|ICD10CM|Open bite of right breast, subsequent encounter|Open bite of right breast, subsequent encounter +C2834794|T037|AB|S21.051S|ICD10CM|Open bite of right breast, sequela|Open bite of right breast, sequela +C2834794|T037|PT|S21.051S|ICD10CM|Open bite of right breast, sequela|Open bite of right breast, sequela +C2834795|T037|AB|S21.052|ICD10CM|Open bite of left breast|Open bite of left breast +C2834795|T037|HT|S21.052|ICD10CM|Open bite of left breast|Open bite of left breast +C2834796|T037|AB|S21.052A|ICD10CM|Open bite of left breast, initial encounter|Open bite of left breast, initial encounter +C2834796|T037|PT|S21.052A|ICD10CM|Open bite of left breast, initial encounter|Open bite of left breast, initial encounter +C2834797|T037|AB|S21.052D|ICD10CM|Open bite of left breast, subsequent encounter|Open bite of left breast, subsequent encounter +C2834797|T037|PT|S21.052D|ICD10CM|Open bite of left breast, subsequent encounter|Open bite of left breast, subsequent encounter +C2834798|T037|AB|S21.052S|ICD10CM|Open bite of left breast, sequela|Open bite of left breast, sequela +C2834798|T037|PT|S21.052S|ICD10CM|Open bite of left breast, sequela|Open bite of left breast, sequela +C2834799|T037|AB|S21.059|ICD10CM|Open bite of unspecified breast|Open bite of unspecified breast +C2834799|T037|HT|S21.059|ICD10CM|Open bite of unspecified breast|Open bite of unspecified breast +C2834800|T037|AB|S21.059A|ICD10CM|Open bite of unspecified breast, initial encounter|Open bite of unspecified breast, initial encounter +C2834800|T037|PT|S21.059A|ICD10CM|Open bite of unspecified breast, initial encounter|Open bite of unspecified breast, initial encounter +C2834801|T037|AB|S21.059D|ICD10CM|Open bite of unspecified breast, subsequent encounter|Open bite of unspecified breast, subsequent encounter +C2834801|T037|PT|S21.059D|ICD10CM|Open bite of unspecified breast, subsequent encounter|Open bite of unspecified breast, subsequent encounter +C2834802|T037|AB|S21.059S|ICD10CM|Open bite of unspecified breast, sequela|Open bite of unspecified breast, sequela +C2834802|T037|PT|S21.059S|ICD10CM|Open bite of unspecified breast, sequela|Open bite of unspecified breast, sequela +C2834803|T037|ET|S21.1|ICD10CM|Open wound of chest without penetration into thoracic cavity|Open wound of chest without penetration into thoracic cavity +C0451973|T037|PT|S21.1|ICD10|Open wound of front wall of thorax|Open wound of front wall of thorax +C2834804|T037|AB|S21.1|ICD10CM|Open wound of front wall of thorax w/o penet thoracic cavity|Open wound of front wall of thorax w/o penet thoracic cavity +C2834804|T037|HT|S21.1|ICD10CM|Open wound of front wall of thorax without penetration into thoracic cavity|Open wound of front wall of thorax without penetration into thoracic cavity +C2834805|T037|AB|S21.10|ICD10CM|Unsp opn wnd front wall of thorax w/o penet thoracic cavity|Unsp opn wnd front wall of thorax w/o penet thoracic cavity +C2834805|T037|HT|S21.10|ICD10CM|Unspecified open wound of front wall of thorax without penetration into thoracic cavity|Unspecified open wound of front wall of thorax without penetration into thoracic cavity +C2834806|T037|AB|S21.101|ICD10CM|Unsp opn wnd r frnt wl of thorax w/o penet thoracic cavity|Unsp opn wnd r frnt wl of thorax w/o penet thoracic cavity +C2834806|T037|HT|S21.101|ICD10CM|Unspecified open wound of right front wall of thorax without penetration into thoracic cavity|Unspecified open wound of right front wall of thorax without penetration into thoracic cavity +C2834807|T037|AB|S21.101A|ICD10CM|Unsp opn wnd r frnt wl of thorax w/o penet thor cavity, init|Unsp opn wnd r frnt wl of thorax w/o penet thor cavity, init +C2834808|T037|AB|S21.101D|ICD10CM|Unsp opn wnd r frnt wl of thorax w/o penet thor cavity, subs|Unsp opn wnd r frnt wl of thorax w/o penet thor cavity, subs +C2834809|T037|AB|S21.101S|ICD10CM|Unsp opn wnd r frnt wl of thorax w/o penet thor cavity, sqla|Unsp opn wnd r frnt wl of thorax w/o penet thor cavity, sqla +C2834810|T037|AB|S21.102|ICD10CM|Unsp opn wnd l frnt wl of thorax w/o penet thoracic cavity|Unsp opn wnd l frnt wl of thorax w/o penet thoracic cavity +C2834810|T037|HT|S21.102|ICD10CM|Unspecified open wound of left front wall of thorax without penetration into thoracic cavity|Unspecified open wound of left front wall of thorax without penetration into thoracic cavity +C2834811|T037|AB|S21.102A|ICD10CM|Unsp opn wnd l frnt wl of thorax w/o penet thor cavity, init|Unsp opn wnd l frnt wl of thorax w/o penet thor cavity, init +C2834812|T037|AB|S21.102D|ICD10CM|Unsp opn wnd l frnt wl of thorax w/o penet thor cavity, subs|Unsp opn wnd l frnt wl of thorax w/o penet thor cavity, subs +C2834813|T037|AB|S21.102S|ICD10CM|Unsp opn wnd l frnt wl of thorax w/o penet thor cavity, sqla|Unsp opn wnd l frnt wl of thorax w/o penet thor cavity, sqla +C2834814|T037|AB|S21.109|ICD10CM|Unsp opn wnd unsp front wall of thorax w/o penet thor cavity|Unsp opn wnd unsp front wall of thorax w/o penet thor cavity +C2834814|T037|HT|S21.109|ICD10CM|Unspecified open wound of unspecified front wall of thorax without penetration into thoracic cavity|Unspecified open wound of unspecified front wall of thorax without penetration into thoracic cavity +C2834815|T037|AB|S21.109A|ICD10CM|Unsp opn wnd unsp frnt wall of thrx w/o penet thor cav, init|Unsp opn wnd unsp frnt wall of thrx w/o penet thor cav, init +C2834816|T037|AB|S21.109D|ICD10CM|Unsp opn wnd unsp frnt wall of thrx w/o penet thor cav, subs|Unsp opn wnd unsp frnt wall of thrx w/o penet thor cav, subs +C2834817|T037|AB|S21.109S|ICD10CM|Unsp opn wnd unsp frnt wall of thrx w/o penet thor cav, sqla|Unsp opn wnd unsp frnt wall of thrx w/o penet thor cav, sqla +C2834818|T037|AB|S21.11|ICD10CM|Lac w/o fb of front wall of thorax w/o penet thoracic cavity|Lac w/o fb of front wall of thorax w/o penet thoracic cavity +C2834818|T037|HT|S21.11|ICD10CM|Laceration without foreign body of front wall of thorax without penetration into thoracic cavity|Laceration without foreign body of front wall of thorax without penetration into thoracic cavity +C2834819|T037|AB|S21.111|ICD10CM|Lac w/o fb of r frnt wl of thorax w/o penet thoracic cavity|Lac w/o fb of r frnt wl of thorax w/o penet thoracic cavity +C2834820|T037|AB|S21.111A|ICD10CM|Lac w/o fb of r frnt wl of thorax w/o penet thor cav, init|Lac w/o fb of r frnt wl of thorax w/o penet thor cav, init +C2834821|T037|AB|S21.111D|ICD10CM|Lac w/o fb of r frnt wl of thorax w/o penet thor cav, subs|Lac w/o fb of r frnt wl of thorax w/o penet thor cav, subs +C2834822|T037|AB|S21.111S|ICD10CM|Lac w/o fb of r frnt wl of thorax w/o penet thor cav, sqla|Lac w/o fb of r frnt wl of thorax w/o penet thor cav, sqla +C2834823|T037|AB|S21.112|ICD10CM|Lac w/o fb of l frnt wl of thorax w/o penet thoracic cavity|Lac w/o fb of l frnt wl of thorax w/o penet thoracic cavity +C2834824|T037|AB|S21.112A|ICD10CM|Lac w/o fb of l frnt wl of thorax w/o penet thor cav, init|Lac w/o fb of l frnt wl of thorax w/o penet thor cav, init +C2834825|T037|AB|S21.112D|ICD10CM|Lac w/o fb of l frnt wl of thorax w/o penet thor cav, subs|Lac w/o fb of l frnt wl of thorax w/o penet thor cav, subs +C2834826|T037|AB|S21.112S|ICD10CM|Lac w/o fb of l frnt wl of thorax w/o penet thor cav, sqla|Lac w/o fb of l frnt wl of thorax w/o penet thor cav, sqla +C2834827|T037|AB|S21.119|ICD10CM|Lac w/o fb of unsp front wall of thorax w/o penet thor cav|Lac w/o fb of unsp front wall of thorax w/o penet thor cav +C2834828|T037|AB|S21.119A|ICD10CM|Lac w/o fb of unsp frnt wl of thrx w/o penet thor cav, init|Lac w/o fb of unsp frnt wl of thrx w/o penet thor cav, init +C2834829|T037|AB|S21.119D|ICD10CM|Lac w/o fb of unsp frnt wl of thrx w/o penet thor cav, subs|Lac w/o fb of unsp frnt wl of thrx w/o penet thor cav, subs +C2834830|T037|AB|S21.119S|ICD10CM|Lac w/o fb of unsp frnt wl of thrx w/o penet thor cav, sqla|Lac w/o fb of unsp frnt wl of thrx w/o penet thor cav, sqla +C2834831|T037|AB|S21.12|ICD10CM|Lac w fb of front wall of thorax w/o penet thoracic cavity|Lac w fb of front wall of thorax w/o penet thoracic cavity +C2834831|T037|HT|S21.12|ICD10CM|Laceration with foreign body of front wall of thorax without penetration into thoracic cavity|Laceration with foreign body of front wall of thorax without penetration into thoracic cavity +C2834832|T037|AB|S21.121|ICD10CM|Lac w fb of r frnt wl of thorax w/o penet thoracic cavity|Lac w fb of r frnt wl of thorax w/o penet thoracic cavity +C2834832|T037|HT|S21.121|ICD10CM|Laceration with foreign body of right front wall of thorax without penetration into thoracic cavity|Laceration with foreign body of right front wall of thorax without penetration into thoracic cavity +C2834833|T037|AB|S21.121A|ICD10CM|Lac w fb of r frnt wl of thorax w/o penet thor cavity, init|Lac w fb of r frnt wl of thorax w/o penet thor cavity, init +C2834834|T037|AB|S21.121D|ICD10CM|Lac w fb of r frnt wl of thorax w/o penet thor cavity, subs|Lac w fb of r frnt wl of thorax w/o penet thor cavity, subs +C2834835|T037|AB|S21.121S|ICD10CM|Lac w fb of r frnt wl of thorax w/o penet thor cavity, sqla|Lac w fb of r frnt wl of thorax w/o penet thor cavity, sqla +C2834836|T037|AB|S21.122|ICD10CM|Lac w fb of l frnt wl of thorax w/o penet thoracic cavity|Lac w fb of l frnt wl of thorax w/o penet thoracic cavity +C2834836|T037|HT|S21.122|ICD10CM|Laceration with foreign body of left front wall of thorax without penetration into thoracic cavity|Laceration with foreign body of left front wall of thorax without penetration into thoracic cavity +C2834837|T037|AB|S21.122A|ICD10CM|Lac w fb of l frnt wl of thorax w/o penet thor cavity, init|Lac w fb of l frnt wl of thorax w/o penet thor cavity, init +C2834838|T037|AB|S21.122D|ICD10CM|Lac w fb of l frnt wl of thorax w/o penet thor cavity, subs|Lac w fb of l frnt wl of thorax w/o penet thor cavity, subs +C2834839|T037|AB|S21.122S|ICD10CM|Lac w fb of l frnt wl of thorax w/o penet thor cavity, sqla|Lac w fb of l frnt wl of thorax w/o penet thor cavity, sqla +C2834840|T037|AB|S21.129|ICD10CM|Lac w fb of unsp front wall of thorax w/o penet thor cavity|Lac w fb of unsp front wall of thorax w/o penet thor cavity +C2834841|T037|AB|S21.129A|ICD10CM|Lac w fb of unsp front wall of thrx w/o penet thor cav, init|Lac w fb of unsp front wall of thrx w/o penet thor cav, init +C2834842|T037|AB|S21.129D|ICD10CM|Lac w fb of unsp front wall of thrx w/o penet thor cav, subs|Lac w fb of unsp front wall of thrx w/o penet thor cav, subs +C2834843|T037|AB|S21.129S|ICD10CM|Lac w fb of unsp front wall of thrx w/o penet thor cav, sqla|Lac w fb of unsp front wall of thrx w/o penet thor cav, sqla +C2834844|T037|AB|S21.13|ICD10CM|Pnctr w/o fb of front wall of thorax w/o penet thor cavity|Pnctr w/o fb of front wall of thorax w/o penet thor cavity +C2834844|T037|HT|S21.13|ICD10CM|Puncture wound without foreign body of front wall of thorax without penetration into thoracic cavity|Puncture wound without foreign body of front wall of thorax without penetration into thoracic cavity +C2834845|T037|AB|S21.131|ICD10CM|Pnctr w/o fb of r frnt wl of thorax w/o penet thor cavity|Pnctr w/o fb of r frnt wl of thorax w/o penet thor cavity +C2834846|T037|AB|S21.131A|ICD10CM|Pnctr w/o fb of r frnt wl of thorax w/o penet thor cav, init|Pnctr w/o fb of r frnt wl of thorax w/o penet thor cav, init +C2834847|T037|AB|S21.131D|ICD10CM|Pnctr w/o fb of r frnt wl of thorax w/o penet thor cav, subs|Pnctr w/o fb of r frnt wl of thorax w/o penet thor cav, subs +C2834848|T037|AB|S21.131S|ICD10CM|Pnctr w/o fb of r frnt wl of thorax w/o penet thor cav, sqla|Pnctr w/o fb of r frnt wl of thorax w/o penet thor cav, sqla +C2834849|T037|AB|S21.132|ICD10CM|Pnctr w/o fb of l frnt wl of thorax w/o penet thor cavity|Pnctr w/o fb of l frnt wl of thorax w/o penet thor cavity +C2834850|T037|AB|S21.132A|ICD10CM|Pnctr w/o fb of l frnt wl of thorax w/o penet thor cav, init|Pnctr w/o fb of l frnt wl of thorax w/o penet thor cav, init +C2834851|T037|AB|S21.132D|ICD10CM|Pnctr w/o fb of l frnt wl of thorax w/o penet thor cav, subs|Pnctr w/o fb of l frnt wl of thorax w/o penet thor cav, subs +C2834852|T037|AB|S21.132S|ICD10CM|Pnctr w/o fb of l frnt wl of thorax w/o penet thor cav, sqla|Pnctr w/o fb of l frnt wl of thorax w/o penet thor cav, sqla +C2834853|T037|AB|S21.139|ICD10CM|Pnctr w/o fb of unsp front wall of thorax w/o penet thor cav|Pnctr w/o fb of unsp front wall of thorax w/o penet thor cav +C2834854|T037|AB|S21.139A|ICD10CM|Pnctr w/o fb of unsp frnt wl of thrx w/o penet thor cav,init|Pnctr w/o fb of unsp frnt wl of thrx w/o penet thor cav,init +C2834855|T037|AB|S21.139D|ICD10CM|Pnctr w/o fb of unsp frnt wl of thrx w/o penet thor cav,subs|Pnctr w/o fb of unsp frnt wl of thrx w/o penet thor cav,subs +C2834856|T037|AB|S21.139S|ICD10CM|Pnctr w/o fb of unsp frnt wl of thrx w/o penet thor cav,sqla|Pnctr w/o fb of unsp frnt wl of thrx w/o penet thor cav,sqla +C2834857|T037|AB|S21.14|ICD10CM|Pnctr w fb of front wall of thorax w/o penet thoracic cavity|Pnctr w fb of front wall of thorax w/o penet thoracic cavity +C2834857|T037|HT|S21.14|ICD10CM|Puncture wound with foreign body of front wall of thorax without penetration into thoracic cavity|Puncture wound with foreign body of front wall of thorax without penetration into thoracic cavity +C2834858|T037|AB|S21.141|ICD10CM|Pnctr w fb of r frnt wl of thorax w/o penet thoracic cavity|Pnctr w fb of r frnt wl of thorax w/o penet thoracic cavity +C2834859|T037|AB|S21.141A|ICD10CM|Pnctr w fb of r frnt wl of thorax w/o penet thor cav, init|Pnctr w fb of r frnt wl of thorax w/o penet thor cav, init +C2834860|T037|AB|S21.141D|ICD10CM|Pnctr w fb of r frnt wl of thorax w/o penet thor cav, subs|Pnctr w fb of r frnt wl of thorax w/o penet thor cav, subs +C2834861|T037|AB|S21.141S|ICD10CM|Pnctr w fb of r frnt wl of thorax w/o penet thor cav, sqla|Pnctr w fb of r frnt wl of thorax w/o penet thor cav, sqla +C2834862|T037|AB|S21.142|ICD10CM|Pnctr w fb of l frnt wl of thorax w/o penet thoracic cavity|Pnctr w fb of l frnt wl of thorax w/o penet thoracic cavity +C2834863|T037|AB|S21.142A|ICD10CM|Pnctr w fb of l frnt wl of thorax w/o penet thor cav, init|Pnctr w fb of l frnt wl of thorax w/o penet thor cav, init +C2834864|T037|AB|S21.142D|ICD10CM|Pnctr w fb of l frnt wl of thorax w/o penet thor cav, subs|Pnctr w fb of l frnt wl of thorax w/o penet thor cav, subs +C2834865|T037|AB|S21.142S|ICD10CM|Pnctr w fb of l frnt wl of thorax w/o penet thor cav, sqla|Pnctr w fb of l frnt wl of thorax w/o penet thor cav, sqla +C2834866|T037|AB|S21.149|ICD10CM|Pnctr w fb of unsp front wall of thorax w/o penet thor cav|Pnctr w fb of unsp front wall of thorax w/o penet thor cav +C2834867|T037|AB|S21.149A|ICD10CM|Pnctr w fb of unsp frnt wl of thrx w/o penet thor cav, init|Pnctr w fb of unsp frnt wl of thrx w/o penet thor cav, init +C2834868|T037|AB|S21.149D|ICD10CM|Pnctr w fb of unsp frnt wl of thrx w/o penet thor cav, subs|Pnctr w fb of unsp frnt wl of thrx w/o penet thor cav, subs +C2834869|T037|AB|S21.149S|ICD10CM|Pnctr w fb of unsp frnt wl of thrx w/o penet thor cav, sqla|Pnctr w fb of unsp frnt wl of thrx w/o penet thor cav, sqla +C2834870|T037|ET|S21.15|ICD10CM|Bite of front wall of thorax NOS|Bite of front wall of thorax NOS +C2834871|T037|AB|S21.15|ICD10CM|Open bite of front wall of thorax w/o penet thoracic cavity|Open bite of front wall of thorax w/o penet thoracic cavity +C2834871|T037|HT|S21.15|ICD10CM|Open bite of front wall of thorax without penetration into thoracic cavity|Open bite of front wall of thorax without penetration into thoracic cavity +C2834872|T037|AB|S21.151|ICD10CM|Open bite of r frnt wl of thorax w/o penet thoracic cavity|Open bite of r frnt wl of thorax w/o penet thoracic cavity +C2834872|T037|HT|S21.151|ICD10CM|Open bite of right front wall of thorax without penetration into thoracic cavity|Open bite of right front wall of thorax without penetration into thoracic cavity +C2834873|T037|AB|S21.151A|ICD10CM|Open bite of r frnt wl of thorax w/o penet thor cavity, init|Open bite of r frnt wl of thorax w/o penet thor cavity, init +C2834873|T037|PT|S21.151A|ICD10CM|Open bite of right front wall of thorax without penetration into thoracic cavity, initial encounter|Open bite of right front wall of thorax without penetration into thoracic cavity, initial encounter +C2834874|T037|AB|S21.151D|ICD10CM|Open bite of r frnt wl of thorax w/o penet thor cavity, subs|Open bite of r frnt wl of thorax w/o penet thor cavity, subs +C2834875|T037|AB|S21.151S|ICD10CM|Open bite of r frnt wl of thorax w/o penet thor cavity, sqla|Open bite of r frnt wl of thorax w/o penet thor cavity, sqla +C2834875|T037|PT|S21.151S|ICD10CM|Open bite of right front wall of thorax without penetration into thoracic cavity, sequela|Open bite of right front wall of thorax without penetration into thoracic cavity, sequela +C2834876|T037|AB|S21.152|ICD10CM|Open bite of l frnt wl of thorax w/o penet thoracic cavity|Open bite of l frnt wl of thorax w/o penet thoracic cavity +C2834876|T037|HT|S21.152|ICD10CM|Open bite of left front wall of thorax without penetration into thoracic cavity|Open bite of left front wall of thorax without penetration into thoracic cavity +C2834877|T037|AB|S21.152A|ICD10CM|Open bite of l frnt wl of thorax w/o penet thor cavity, init|Open bite of l frnt wl of thorax w/o penet thor cavity, init +C2834877|T037|PT|S21.152A|ICD10CM|Open bite of left front wall of thorax without penetration into thoracic cavity, initial encounter|Open bite of left front wall of thorax without penetration into thoracic cavity, initial encounter +C2834878|T037|AB|S21.152D|ICD10CM|Open bite of l frnt wl of thorax w/o penet thor cavity, subs|Open bite of l frnt wl of thorax w/o penet thor cavity, subs +C2834879|T037|AB|S21.152S|ICD10CM|Open bite of l frnt wl of thorax w/o penet thor cavity, sqla|Open bite of l frnt wl of thorax w/o penet thor cavity, sqla +C2834879|T037|PT|S21.152S|ICD10CM|Open bite of left front wall of thorax without penetration into thoracic cavity, sequela|Open bite of left front wall of thorax without penetration into thoracic cavity, sequela +C2834880|T037|AB|S21.159|ICD10CM|Open bite of unsp front wall of thorax w/o penet thor cavity|Open bite of unsp front wall of thorax w/o penet thor cavity +C2834880|T037|HT|S21.159|ICD10CM|Open bite of unspecified front wall of thorax without penetration into thoracic cavity|Open bite of unspecified front wall of thorax without penetration into thoracic cavity +C2834881|T037|AB|S21.159A|ICD10CM|Open bite of unsp frnt wall of thrx w/o penet thor cav, init|Open bite of unsp frnt wall of thrx w/o penet thor cav, init +C2834882|T037|AB|S21.159D|ICD10CM|Open bite of unsp frnt wall of thrx w/o penet thor cav, subs|Open bite of unsp frnt wall of thrx w/o penet thor cav, subs +C2834883|T037|AB|S21.159S|ICD10CM|Open bite of unsp frnt wall of thrx w/o penet thor cav, sqla|Open bite of unsp frnt wall of thrx w/o penet thor cav, sqla +C2834883|T037|PT|S21.159S|ICD10CM|Open bite of unspecified front wall of thorax without penetration into thoracic cavity, sequela|Open bite of unspecified front wall of thorax without penetration into thoracic cavity, sequela +C0495827|T037|PT|S21.2|ICD10|Open wound of back wall of thorax|Open wound of back wall of thorax +C2834884|T037|AB|S21.2|ICD10CM|Open wound of back wall of thorax w/o penet thoracic cavity|Open wound of back wall of thorax w/o penet thoracic cavity +C2834884|T037|HT|S21.2|ICD10CM|Open wound of back wall of thorax without penetration into thoracic cavity|Open wound of back wall of thorax without penetration into thoracic cavity +C2834885|T037|AB|S21.20|ICD10CM|Unsp opn wnd back wall of thorax w/o penet thoracic cavity|Unsp opn wnd back wall of thorax w/o penet thoracic cavity +C2834885|T037|HT|S21.20|ICD10CM|Unspecified open wound of back wall of thorax without penetration into thoracic cavity|Unspecified open wound of back wall of thorax without penetration into thoracic cavity +C2834886|T037|AB|S21.201|ICD10CM|Unsp opn wnd r bk wl of thorax w/o penet thoracic cavity|Unsp opn wnd r bk wl of thorax w/o penet thoracic cavity +C2834886|T037|HT|S21.201|ICD10CM|Unspecified open wound of right back wall of thorax without penetration into thoracic cavity|Unspecified open wound of right back wall of thorax without penetration into thoracic cavity +C2834887|T037|AB|S21.201A|ICD10CM|Unsp opn wnd r bk wl of thorax w/o penet thor cavity, init|Unsp opn wnd r bk wl of thorax w/o penet thor cavity, init +C2834888|T037|AB|S21.201D|ICD10CM|Unsp opn wnd r bk wl of thorax w/o penet thor cavity, subs|Unsp opn wnd r bk wl of thorax w/o penet thor cavity, subs +C2834889|T037|AB|S21.201S|ICD10CM|Unsp opn wnd r bk wl of thorax w/o penet thor cavity, sqla|Unsp opn wnd r bk wl of thorax w/o penet thor cavity, sqla +C2834890|T037|AB|S21.202|ICD10CM|Unsp opn wnd l bk wl of thorax w/o penet thoracic cavity|Unsp opn wnd l bk wl of thorax w/o penet thoracic cavity +C2834890|T037|HT|S21.202|ICD10CM|Unspecified open wound of left back wall of thorax without penetration into thoracic cavity|Unspecified open wound of left back wall of thorax without penetration into thoracic cavity +C2834891|T037|AB|S21.202A|ICD10CM|Unsp opn wnd l bk wl of thorax w/o penet thor cavity, init|Unsp opn wnd l bk wl of thorax w/o penet thor cavity, init +C2834892|T037|AB|S21.202D|ICD10CM|Unsp opn wnd l bk wl of thorax w/o penet thor cavity, subs|Unsp opn wnd l bk wl of thorax w/o penet thor cavity, subs +C2834893|T037|AB|S21.202S|ICD10CM|Unsp opn wnd l bk wl of thorax w/o penet thor cavity, sqla|Unsp opn wnd l bk wl of thorax w/o penet thor cavity, sqla +C2834893|T037|PT|S21.202S|ICD10CM|Unspecified open wound of left back wall of thorax without penetration into thoracic cavity, sequela|Unspecified open wound of left back wall of thorax without penetration into thoracic cavity, sequela +C2834894|T037|AB|S21.209|ICD10CM|Unsp opn wnd unsp bk wl of thorax w/o penet thoracic cavity|Unsp opn wnd unsp bk wl of thorax w/o penet thoracic cavity +C2834894|T037|HT|S21.209|ICD10CM|Unspecified open wound of unspecified back wall of thorax without penetration into thoracic cavity|Unspecified open wound of unspecified back wall of thorax without penetration into thoracic cavity +C2834895|T037|AB|S21.209A|ICD10CM|Unsp opn wnd unsp bk wl of thorax w/o penet thor cav, init|Unsp opn wnd unsp bk wl of thorax w/o penet thor cav, init +C2834896|T037|AB|S21.209D|ICD10CM|Unsp opn wnd unsp bk wl of thorax w/o penet thor cav, subs|Unsp opn wnd unsp bk wl of thorax w/o penet thor cav, subs +C2834897|T037|AB|S21.209S|ICD10CM|Unsp opn wnd unsp bk wl of thorax w/o penet thor cav, sqla|Unsp opn wnd unsp bk wl of thorax w/o penet thor cav, sqla +C2834898|T037|AB|S21.21|ICD10CM|Lac w/o fb of back wall of thorax w/o penet thoracic cavity|Lac w/o fb of back wall of thorax w/o penet thoracic cavity +C2834898|T037|HT|S21.21|ICD10CM|Laceration without foreign body of back wall of thorax without penetration into thoracic cavity|Laceration without foreign body of back wall of thorax without penetration into thoracic cavity +C2834899|T037|AB|S21.211|ICD10CM|Lac w/o fb of r bk wl of thorax w/o penet thoracic cavity|Lac w/o fb of r bk wl of thorax w/o penet thoracic cavity +C2834900|T037|AB|S21.211A|ICD10CM|Lac w/o fb of r bk wl of thorax w/o penet thor cavity, init|Lac w/o fb of r bk wl of thorax w/o penet thor cavity, init +C2834901|T037|AB|S21.211D|ICD10CM|Lac w/o fb of r bk wl of thorax w/o penet thor cavity, subs|Lac w/o fb of r bk wl of thorax w/o penet thor cavity, subs +C2834902|T037|AB|S21.211S|ICD10CM|Lac w/o fb of r bk wl of thorax w/o penet thor cavity, sqla|Lac w/o fb of r bk wl of thorax w/o penet thor cavity, sqla +C2834903|T037|AB|S21.212|ICD10CM|Lac w/o fb of l bk wl of thorax w/o penet thoracic cavity|Lac w/o fb of l bk wl of thorax w/o penet thoracic cavity +C2834903|T037|HT|S21.212|ICD10CM|Laceration without foreign body of left back wall of thorax without penetration into thoracic cavity|Laceration without foreign body of left back wall of thorax without penetration into thoracic cavity +C2834904|T037|AB|S21.212A|ICD10CM|Lac w/o fb of l bk wl of thorax w/o penet thor cavity, init|Lac w/o fb of l bk wl of thorax w/o penet thor cavity, init +C2834905|T037|AB|S21.212D|ICD10CM|Lac w/o fb of l bk wl of thorax w/o penet thor cavity, subs|Lac w/o fb of l bk wl of thorax w/o penet thor cavity, subs +C2834906|T037|AB|S21.212S|ICD10CM|Lac w/o fb of l bk wl of thorax w/o penet thor cavity, sqla|Lac w/o fb of l bk wl of thorax w/o penet thor cavity, sqla +C2834907|T037|AB|S21.219|ICD10CM|Lac w/o fb of unsp bk wl of thorax w/o penet thoracic cavity|Lac w/o fb of unsp bk wl of thorax w/o penet thoracic cavity +C2834908|T037|AB|S21.219A|ICD10CM|Lac w/o fb of unsp bk wl of thorax w/o penet thor cav, init|Lac w/o fb of unsp bk wl of thorax w/o penet thor cav, init +C2834909|T037|AB|S21.219D|ICD10CM|Lac w/o fb of unsp bk wl of thorax w/o penet thor cav, subs|Lac w/o fb of unsp bk wl of thorax w/o penet thor cav, subs +C2834910|T037|AB|S21.219S|ICD10CM|Lac w/o fb of unsp bk wl of thorax w/o penet thor cav, sqla|Lac w/o fb of unsp bk wl of thorax w/o penet thor cav, sqla +C2834911|T037|AB|S21.22|ICD10CM|Lac w fb of back wall of thorax w/o penet thoracic cavity|Lac w fb of back wall of thorax w/o penet thoracic cavity +C2834911|T037|HT|S21.22|ICD10CM|Laceration with foreign body of back wall of thorax without penetration into thoracic cavity|Laceration with foreign body of back wall of thorax without penetration into thoracic cavity +C2834912|T037|AB|S21.221|ICD10CM|Lac w fb of r bk wl of thorax w/o penet thoracic cavity|Lac w fb of r bk wl of thorax w/o penet thoracic cavity +C2834912|T037|HT|S21.221|ICD10CM|Laceration with foreign body of right back wall of thorax without penetration into thoracic cavity|Laceration with foreign body of right back wall of thorax without penetration into thoracic cavity +C2834913|T037|AB|S21.221A|ICD10CM|Lac w fb of r bk wl of thorax w/o penet thor cavity, init|Lac w fb of r bk wl of thorax w/o penet thor cavity, init +C2834914|T037|AB|S21.221D|ICD10CM|Lac w fb of r bk wl of thorax w/o penet thor cavity, subs|Lac w fb of r bk wl of thorax w/o penet thor cavity, subs +C2834915|T037|AB|S21.221S|ICD10CM|Lac w fb of r bk wl of thorax w/o penet thor cavity, sequela|Lac w fb of r bk wl of thorax w/o penet thor cavity, sequela +C2834916|T037|AB|S21.222|ICD10CM|Lac w fb of l bk wl of thorax w/o penet thoracic cavity|Lac w fb of l bk wl of thorax w/o penet thoracic cavity +C2834916|T037|HT|S21.222|ICD10CM|Laceration with foreign body of left back wall of thorax without penetration into thoracic cavity|Laceration with foreign body of left back wall of thorax without penetration into thoracic cavity +C2834917|T037|AB|S21.222A|ICD10CM|Lac w fb of l bk wl of thorax w/o penet thor cavity, init|Lac w fb of l bk wl of thorax w/o penet thor cavity, init +C2834918|T037|AB|S21.222D|ICD10CM|Lac w fb of l bk wl of thorax w/o penet thor cavity, subs|Lac w fb of l bk wl of thorax w/o penet thor cavity, subs +C2834919|T037|AB|S21.222S|ICD10CM|Lac w fb of l bk wl of thorax w/o penet thor cavity, sequela|Lac w fb of l bk wl of thorax w/o penet thor cavity, sequela +C2834920|T037|AB|S21.229|ICD10CM|Lac w fb of unsp bk wl of thorax w/o penet thoracic cavity|Lac w fb of unsp bk wl of thorax w/o penet thoracic cavity +C2834921|T037|AB|S21.229A|ICD10CM|Lac w fb of unsp bk wl of thorax w/o penet thor cavity, init|Lac w fb of unsp bk wl of thorax w/o penet thor cavity, init +C2834922|T037|AB|S21.229D|ICD10CM|Lac w fb of unsp bk wl of thorax w/o penet thor cavity, subs|Lac w fb of unsp bk wl of thorax w/o penet thor cavity, subs +C2834923|T037|AB|S21.229S|ICD10CM|Lac w fb of unsp bk wl of thorax w/o penet thor cavity, sqla|Lac w fb of unsp bk wl of thorax w/o penet thor cavity, sqla +C2834924|T037|AB|S21.23|ICD10CM|Pnctr w/o fb of bk wl of thorax w/o penet thoracic cavity|Pnctr w/o fb of bk wl of thorax w/o penet thoracic cavity +C2834924|T037|HT|S21.23|ICD10CM|Puncture wound without foreign body of back wall of thorax without penetration into thoracic cavity|Puncture wound without foreign body of back wall of thorax without penetration into thoracic cavity +C2834925|T037|AB|S21.231|ICD10CM|Pnctr w/o fb of r bk wl of thorax w/o penet thoracic cavity|Pnctr w/o fb of r bk wl of thorax w/o penet thoracic cavity +C2834926|T037|AB|S21.231A|ICD10CM|Pnctr w/o fb of r bk wl of thorax w/o penet thor cav, init|Pnctr w/o fb of r bk wl of thorax w/o penet thor cav, init +C2834927|T037|AB|S21.231D|ICD10CM|Pnctr w/o fb of r bk wl of thorax w/o penet thor cav, subs|Pnctr w/o fb of r bk wl of thorax w/o penet thor cav, subs +C2834928|T037|AB|S21.231S|ICD10CM|Pnctr w/o fb of r bk wl of thorax w/o penet thor cav, sqla|Pnctr w/o fb of r bk wl of thorax w/o penet thor cav, sqla +C2834929|T037|AB|S21.232|ICD10CM|Pnctr w/o fb of l bk wl of thorax w/o penet thoracic cavity|Pnctr w/o fb of l bk wl of thorax w/o penet thoracic cavity +C2834930|T037|AB|S21.232A|ICD10CM|Pnctr w/o fb of l bk wl of thorax w/o penet thor cav, init|Pnctr w/o fb of l bk wl of thorax w/o penet thor cav, init +C2834931|T037|AB|S21.232D|ICD10CM|Pnctr w/o fb of l bk wl of thorax w/o penet thor cav, subs|Pnctr w/o fb of l bk wl of thorax w/o penet thor cav, subs +C2834932|T037|AB|S21.232S|ICD10CM|Pnctr w/o fb of l bk wl of thorax w/o penet thor cav, sqla|Pnctr w/o fb of l bk wl of thorax w/o penet thor cav, sqla +C2834933|T037|AB|S21.239|ICD10CM|Pnctr w/o fb of unsp bk wl of thorax w/o penet thor cavity|Pnctr w/o fb of unsp bk wl of thorax w/o penet thor cavity +C2834934|T037|AB|S21.239A|ICD10CM|Pnctr w/o fb of unsp bk wl of thrx w/o penet thor cav, init|Pnctr w/o fb of unsp bk wl of thrx w/o penet thor cav, init +C2834935|T037|AB|S21.239D|ICD10CM|Pnctr w/o fb of unsp bk wl of thrx w/o penet thor cav, subs|Pnctr w/o fb of unsp bk wl of thrx w/o penet thor cav, subs +C2834936|T037|AB|S21.239S|ICD10CM|Pnctr w/o fb of unsp bk wl of thrx w/o penet thor cav, sqla|Pnctr w/o fb of unsp bk wl of thrx w/o penet thor cav, sqla +C2834937|T037|AB|S21.24|ICD10CM|Pnctr w fb of back wall of thorax w/o penet thoracic cavity|Pnctr w fb of back wall of thorax w/o penet thoracic cavity +C2834937|T037|HT|S21.24|ICD10CM|Puncture wound with foreign body of back wall of thorax without penetration into thoracic cavity|Puncture wound with foreign body of back wall of thorax without penetration into thoracic cavity +C2834938|T037|AB|S21.241|ICD10CM|Pnctr w fb of r bk wl of thorax w/o penet thoracic cavity|Pnctr w fb of r bk wl of thorax w/o penet thoracic cavity +C2834939|T037|AB|S21.241A|ICD10CM|Pnctr w fb of r bk wl of thorax w/o penet thor cavity, init|Pnctr w fb of r bk wl of thorax w/o penet thor cavity, init +C2834940|T037|AB|S21.241D|ICD10CM|Pnctr w fb of r bk wl of thorax w/o penet thor cavity, subs|Pnctr w fb of r bk wl of thorax w/o penet thor cavity, subs +C2834941|T037|AB|S21.241S|ICD10CM|Pnctr w fb of r bk wl of thorax w/o penet thor cavity, sqla|Pnctr w fb of r bk wl of thorax w/o penet thor cavity, sqla +C2834942|T037|AB|S21.242|ICD10CM|Pnctr w fb of l bk wl of thorax w/o penet thoracic cavity|Pnctr w fb of l bk wl of thorax w/o penet thoracic cavity +C2834943|T037|AB|S21.242A|ICD10CM|Pnctr w fb of l bk wl of thorax w/o penet thor cavity, init|Pnctr w fb of l bk wl of thorax w/o penet thor cavity, init +C2834944|T037|AB|S21.242D|ICD10CM|Pnctr w fb of l bk wl of thorax w/o penet thor cavity, subs|Pnctr w fb of l bk wl of thorax w/o penet thor cavity, subs +C2834945|T037|AB|S21.242S|ICD10CM|Pnctr w fb of l bk wl of thorax w/o penet thor cavity, sqla|Pnctr w fb of l bk wl of thorax w/o penet thor cavity, sqla +C2834946|T037|AB|S21.249|ICD10CM|Pnctr w fb of unsp bk wl of thorax w/o penet thoracic cavity|Pnctr w fb of unsp bk wl of thorax w/o penet thoracic cavity +C2834947|T037|AB|S21.249A|ICD10CM|Pnctr w fb of unsp bk wl of thorax w/o penet thor cav, init|Pnctr w fb of unsp bk wl of thorax w/o penet thor cav, init +C2834948|T037|AB|S21.249D|ICD10CM|Pnctr w fb of unsp bk wl of thorax w/o penet thor cav, subs|Pnctr w fb of unsp bk wl of thorax w/o penet thor cav, subs +C2834949|T037|AB|S21.249S|ICD10CM|Pnctr w fb of unsp bk wl of thorax w/o penet thor cav, sqla|Pnctr w fb of unsp bk wl of thorax w/o penet thor cav, sqla +C2835109|T037|ET|S21.25|ICD10CM|Bite of back wall of thorax NOS|Bite of back wall of thorax NOS +C2834950|T037|AB|S21.25|ICD10CM|Open bite of back wall of thorax w/o penet thoracic cavity|Open bite of back wall of thorax w/o penet thoracic cavity +C2834950|T037|HT|S21.25|ICD10CM|Open bite of back wall of thorax without penetration into thoracic cavity|Open bite of back wall of thorax without penetration into thoracic cavity +C2834951|T037|AB|S21.251|ICD10CM|Open bite of r bk wl of thorax w/o penet thoracic cavity|Open bite of r bk wl of thorax w/o penet thoracic cavity +C2834951|T037|HT|S21.251|ICD10CM|Open bite of right back wall of thorax without penetration into thoracic cavity|Open bite of right back wall of thorax without penetration into thoracic cavity +C2834952|T037|AB|S21.251A|ICD10CM|Open bite of r bk wl of thorax w/o penet thor cavity, init|Open bite of r bk wl of thorax w/o penet thor cavity, init +C2834952|T037|PT|S21.251A|ICD10CM|Open bite of right back wall of thorax without penetration into thoracic cavity, initial encounter|Open bite of right back wall of thorax without penetration into thoracic cavity, initial encounter +C2834953|T037|AB|S21.251D|ICD10CM|Open bite of r bk wl of thorax w/o penet thor cavity, subs|Open bite of r bk wl of thorax w/o penet thor cavity, subs +C2834954|T037|AB|S21.251S|ICD10CM|Open bite of r bk wl of thorax w/o penet thor cavity, sqla|Open bite of r bk wl of thorax w/o penet thor cavity, sqla +C2834954|T037|PT|S21.251S|ICD10CM|Open bite of right back wall of thorax without penetration into thoracic cavity, sequela|Open bite of right back wall of thorax without penetration into thoracic cavity, sequela +C2834955|T037|AB|S21.252|ICD10CM|Open bite of l bk wl of thorax w/o penet thoracic cavity|Open bite of l bk wl of thorax w/o penet thoracic cavity +C2834955|T037|HT|S21.252|ICD10CM|Open bite of left back wall of thorax without penetration into thoracic cavity|Open bite of left back wall of thorax without penetration into thoracic cavity +C2834956|T037|AB|S21.252A|ICD10CM|Open bite of l bk wl of thorax w/o penet thor cavity, init|Open bite of l bk wl of thorax w/o penet thor cavity, init +C2834956|T037|PT|S21.252A|ICD10CM|Open bite of left back wall of thorax without penetration into thoracic cavity, initial encounter|Open bite of left back wall of thorax without penetration into thoracic cavity, initial encounter +C2834957|T037|AB|S21.252D|ICD10CM|Open bite of l bk wl of thorax w/o penet thor cavity, subs|Open bite of l bk wl of thorax w/o penet thor cavity, subs +C2834957|T037|PT|S21.252D|ICD10CM|Open bite of left back wall of thorax without penetration into thoracic cavity, subsequent encounter|Open bite of left back wall of thorax without penetration into thoracic cavity, subsequent encounter +C2834958|T037|AB|S21.252S|ICD10CM|Open bite of l bk wl of thorax w/o penet thor cavity, sqla|Open bite of l bk wl of thorax w/o penet thor cavity, sqla +C2834958|T037|PT|S21.252S|ICD10CM|Open bite of left back wall of thorax without penetration into thoracic cavity, sequela|Open bite of left back wall of thorax without penetration into thoracic cavity, sequela +C2834959|T037|AB|S21.259|ICD10CM|Open bite of unsp bk wl of thorax w/o penet thoracic cavity|Open bite of unsp bk wl of thorax w/o penet thoracic cavity +C2834959|T037|HT|S21.259|ICD10CM|Open bite of unspecified back wall of thorax without penetration into thoracic cavity|Open bite of unspecified back wall of thorax without penetration into thoracic cavity +C2834960|T037|AB|S21.259A|ICD10CM|Open bite of unsp bk wl of thorax w/o penet thor cav, init|Open bite of unsp bk wl of thorax w/o penet thor cav, init +C2834961|T037|AB|S21.259D|ICD10CM|Open bite of unsp bk wl of thorax w/o penet thor cav, subs|Open bite of unsp bk wl of thorax w/o penet thor cav, subs +C2834962|T037|AB|S21.259S|ICD10CM|Open bite of unsp bk wl of thorax w/o penet thor cav, sqla|Open bite of unsp bk wl of thorax w/o penet thor cav, sqla +C2834962|T037|PT|S21.259S|ICD10CM|Open bite of unspecified back wall of thorax without penetration into thoracic cavity, sequela|Open bite of unspecified back wall of thorax without penetration into thoracic cavity, sequela +C2834963|T037|ET|S21.3|ICD10CM|Open wound of chest with penetration into thoracic cavity|Open wound of chest with penetration into thoracic cavity +C2834964|T037|AB|S21.3|ICD10CM|Open wound of front wall of thorax w penet thoracic cavity|Open wound of front wall of thorax w penet thoracic cavity +C2834964|T037|HT|S21.3|ICD10CM|Open wound of front wall of thorax with penetration into thoracic cavity|Open wound of front wall of thorax with penetration into thoracic cavity +C2834965|T037|AB|S21.30|ICD10CM|Unsp opn wnd front wall of thorax w penet thoracic cavity|Unsp opn wnd front wall of thorax w penet thoracic cavity +C2834965|T037|HT|S21.30|ICD10CM|Unspecified open wound of front wall of thorax with penetration into thoracic cavity|Unspecified open wound of front wall of thorax with penetration into thoracic cavity +C2834966|T037|AB|S21.301|ICD10CM|Unsp opn wnd r frnt wl of thorax w penet thoracic cavity|Unsp opn wnd r frnt wl of thorax w penet thoracic cavity +C2834966|T037|HT|S21.301|ICD10CM|Unspecified open wound of right front wall of thorax with penetration into thoracic cavity|Unspecified open wound of right front wall of thorax with penetration into thoracic cavity +C2834967|T037|AB|S21.301A|ICD10CM|Unsp opn wnd r frnt wl of thorax w penet thor cavity, init|Unsp opn wnd r frnt wl of thorax w penet thor cavity, init +C2834968|T037|AB|S21.301D|ICD10CM|Unsp opn wnd r frnt wl of thorax w penet thor cavity, subs|Unsp opn wnd r frnt wl of thorax w penet thor cavity, subs +C2834969|T037|AB|S21.301S|ICD10CM|Unsp opn wnd r frnt wl of thorax w penet thor cavity, sqla|Unsp opn wnd r frnt wl of thorax w penet thor cavity, sqla +C2834969|T037|PT|S21.301S|ICD10CM|Unspecified open wound of right front wall of thorax with penetration into thoracic cavity, sequela|Unspecified open wound of right front wall of thorax with penetration into thoracic cavity, sequela +C2834970|T037|AB|S21.302|ICD10CM|Unsp opn wnd l frnt wl of thorax w penet thoracic cavity|Unsp opn wnd l frnt wl of thorax w penet thoracic cavity +C2834970|T037|HT|S21.302|ICD10CM|Unspecified open wound of left front wall of thorax with penetration into thoracic cavity|Unspecified open wound of left front wall of thorax with penetration into thoracic cavity +C2834971|T037|AB|S21.302A|ICD10CM|Unsp opn wnd l frnt wl of thorax w penet thor cavity, init|Unsp opn wnd l frnt wl of thorax w penet thor cavity, init +C2834972|T037|AB|S21.302D|ICD10CM|Unsp opn wnd l frnt wl of thorax w penet thor cavity, subs|Unsp opn wnd l frnt wl of thorax w penet thor cavity, subs +C2834973|T037|AB|S21.302S|ICD10CM|Unsp opn wnd l frnt wl of thorax w penet thor cavity, sqla|Unsp opn wnd l frnt wl of thorax w penet thor cavity, sqla +C2834973|T037|PT|S21.302S|ICD10CM|Unspecified open wound of left front wall of thorax with penetration into thoracic cavity, sequela|Unspecified open wound of left front wall of thorax with penetration into thoracic cavity, sequela +C2834974|T037|AB|S21.309|ICD10CM|Unsp opn wnd unsp front wall of thorax w penet thor cavity|Unsp opn wnd unsp front wall of thorax w penet thor cavity +C2834974|T037|HT|S21.309|ICD10CM|Unspecified open wound of unspecified front wall of thorax with penetration into thoracic cavity|Unspecified open wound of unspecified front wall of thorax with penetration into thoracic cavity +C2834975|T037|AB|S21.309A|ICD10CM|Unsp opn wnd unsp front wall of thrx w penet thor cav, init|Unsp opn wnd unsp front wall of thrx w penet thor cav, init +C2834976|T037|AB|S21.309D|ICD10CM|Unsp opn wnd unsp front wall of thrx w penet thor cav, subs|Unsp opn wnd unsp front wall of thrx w penet thor cav, subs +C2834977|T037|AB|S21.309S|ICD10CM|Unsp opn wnd unsp front wall of thrx w penet thor cav, sqla|Unsp opn wnd unsp front wall of thrx w penet thor cav, sqla +C2834978|T037|AB|S21.31|ICD10CM|Lac w/o fb of front wall of thorax w penet thoracic cavity|Lac w/o fb of front wall of thorax w penet thoracic cavity +C2834978|T037|HT|S21.31|ICD10CM|Laceration without foreign body of front wall of thorax with penetration into thoracic cavity|Laceration without foreign body of front wall of thorax with penetration into thoracic cavity +C2834979|T037|AB|S21.311|ICD10CM|Lac w/o fb of r frnt wl of thorax w penet thoracic cavity|Lac w/o fb of r frnt wl of thorax w penet thoracic cavity +C2834979|T037|HT|S21.311|ICD10CM|Laceration without foreign body of right front wall of thorax with penetration into thoracic cavity|Laceration without foreign body of right front wall of thorax with penetration into thoracic cavity +C2834980|T037|AB|S21.311A|ICD10CM|Lac w/o fb of r frnt wl of thorax w penet thor cavity, init|Lac w/o fb of r frnt wl of thorax w penet thor cavity, init +C2834981|T037|AB|S21.311D|ICD10CM|Lac w/o fb of r frnt wl of thorax w penet thor cavity, subs|Lac w/o fb of r frnt wl of thorax w penet thor cavity, subs +C2834982|T037|AB|S21.311S|ICD10CM|Lac w/o fb of r frnt wl of thorax w penet thor cavity, sqla|Lac w/o fb of r frnt wl of thorax w penet thor cavity, sqla +C2834983|T037|AB|S21.312|ICD10CM|Lac w/o fb of l frnt wl of thorax w penet thoracic cavity|Lac w/o fb of l frnt wl of thorax w penet thoracic cavity +C2834983|T037|HT|S21.312|ICD10CM|Laceration without foreign body of left front wall of thorax with penetration into thoracic cavity|Laceration without foreign body of left front wall of thorax with penetration into thoracic cavity +C2834984|T037|AB|S21.312A|ICD10CM|Lac w/o fb of l frnt wl of thorax w penet thor cavity, init|Lac w/o fb of l frnt wl of thorax w penet thor cavity, init +C2834985|T037|AB|S21.312D|ICD10CM|Lac w/o fb of l frnt wl of thorax w penet thor cavity, subs|Lac w/o fb of l frnt wl of thorax w penet thor cavity, subs +C2834986|T037|AB|S21.312S|ICD10CM|Lac w/o fb of l frnt wl of thorax w penet thor cavity, sqla|Lac w/o fb of l frnt wl of thorax w penet thor cavity, sqla +C2834987|T037|AB|S21.319|ICD10CM|Lac w/o fb of unsp front wall of thorax w penet thor cavity|Lac w/o fb of unsp front wall of thorax w penet thor cavity +C2834988|T037|AB|S21.319A|ICD10CM|Lac w/o fb of unsp front wall of thrx w penet thor cav, init|Lac w/o fb of unsp front wall of thrx w penet thor cav, init +C2834989|T037|AB|S21.319D|ICD10CM|Lac w/o fb of unsp front wall of thrx w penet thor cav, subs|Lac w/o fb of unsp front wall of thrx w penet thor cav, subs +C2834990|T037|AB|S21.319S|ICD10CM|Lac w/o fb of unsp front wall of thrx w penet thor cav, sqla|Lac w/o fb of unsp front wall of thrx w penet thor cav, sqla +C2834991|T037|AB|S21.32|ICD10CM|Lac w fb of front wall of thorax w penet thoracic cavity|Lac w fb of front wall of thorax w penet thoracic cavity +C2834991|T037|HT|S21.32|ICD10CM|Laceration with foreign body of front wall of thorax with penetration into thoracic cavity|Laceration with foreign body of front wall of thorax with penetration into thoracic cavity +C2834992|T037|AB|S21.321|ICD10CM|Lac w fb of r frnt wl of thorax w penet thoracic cavity|Lac w fb of r frnt wl of thorax w penet thoracic cavity +C2834992|T037|HT|S21.321|ICD10CM|Laceration with foreign body of right front wall of thorax with penetration into thoracic cavity|Laceration with foreign body of right front wall of thorax with penetration into thoracic cavity +C2834993|T037|AB|S21.321A|ICD10CM|Lac w fb of r frnt wl of thorax w penet thor cavity, init|Lac w fb of r frnt wl of thorax w penet thor cavity, init +C2834994|T037|AB|S21.321D|ICD10CM|Lac w fb of r frnt wl of thorax w penet thor cavity, subs|Lac w fb of r frnt wl of thorax w penet thor cavity, subs +C2834995|T037|AB|S21.321S|ICD10CM|Lac w fb of r frnt wl of thorax w penet thor cavity, sequela|Lac w fb of r frnt wl of thorax w penet thor cavity, sequela +C2834996|T037|AB|S21.322|ICD10CM|Lac w fb of l frnt wl of thorax w penet thoracic cavity|Lac w fb of l frnt wl of thorax w penet thoracic cavity +C2834996|T037|HT|S21.322|ICD10CM|Laceration with foreign body of left front wall of thorax with penetration into thoracic cavity|Laceration with foreign body of left front wall of thorax with penetration into thoracic cavity +C2834997|T037|AB|S21.322A|ICD10CM|Lac w fb of l frnt wl of thorax w penet thor cavity, init|Lac w fb of l frnt wl of thorax w penet thor cavity, init +C2834998|T037|AB|S21.322D|ICD10CM|Lac w fb of l frnt wl of thorax w penet thor cavity, subs|Lac w fb of l frnt wl of thorax w penet thor cavity, subs +C2834999|T037|AB|S21.322S|ICD10CM|Lac w fb of l frnt wl of thorax w penet thor cavity, sequela|Lac w fb of l frnt wl of thorax w penet thor cavity, sequela +C2835000|T037|AB|S21.329|ICD10CM|Lac w fb of unsp front wall of thorax w penet thor cavity|Lac w fb of unsp front wall of thorax w penet thor cavity +C2835001|T037|AB|S21.329A|ICD10CM|Lac w fb of unsp front wall of thorax w penet thor cav, init|Lac w fb of unsp front wall of thorax w penet thor cav, init +C2835002|T037|AB|S21.329D|ICD10CM|Lac w fb of unsp front wall of thorax w penet thor cav, subs|Lac w fb of unsp front wall of thorax w penet thor cav, subs +C2835003|T037|AB|S21.329S|ICD10CM|Lac w fb of unsp front wall of thorax w penet thor cav, sqla|Lac w fb of unsp front wall of thorax w penet thor cav, sqla +C2835004|T037|AB|S21.33|ICD10CM|Pnctr w/o fb of front wall of thorax w penet thoracic cavity|Pnctr w/o fb of front wall of thorax w penet thoracic cavity +C2835004|T037|HT|S21.33|ICD10CM|Puncture wound without foreign body of front wall of thorax with penetration into thoracic cavity|Puncture wound without foreign body of front wall of thorax with penetration into thoracic cavity +C2835005|T037|AB|S21.331|ICD10CM|Pnctr w/o fb of r frnt wl of thorax w penet thoracic cavity|Pnctr w/o fb of r frnt wl of thorax w penet thoracic cavity +C2835006|T037|AB|S21.331A|ICD10CM|Pnctr w/o fb of r frnt wl of thorax w penet thor cav, init|Pnctr w/o fb of r frnt wl of thorax w penet thor cav, init +C2835007|T037|AB|S21.331D|ICD10CM|Pnctr w/o fb of r frnt wl of thorax w penet thor cav, subs|Pnctr w/o fb of r frnt wl of thorax w penet thor cav, subs +C2835008|T037|AB|S21.331S|ICD10CM|Pnctr w/o fb of r frnt wl of thorax w penet thor cav, sqla|Pnctr w/o fb of r frnt wl of thorax w penet thor cav, sqla +C2835009|T037|AB|S21.332|ICD10CM|Pnctr w/o fb of l frnt wl of thorax w penet thoracic cavity|Pnctr w/o fb of l frnt wl of thorax w penet thoracic cavity +C2835010|T037|AB|S21.332A|ICD10CM|Pnctr w/o fb of l frnt wl of thorax w penet thor cav, init|Pnctr w/o fb of l frnt wl of thorax w penet thor cav, init +C2835011|T037|AB|S21.332D|ICD10CM|Pnctr w/o fb of l frnt wl of thorax w penet thor cav, subs|Pnctr w/o fb of l frnt wl of thorax w penet thor cav, subs +C2835012|T037|AB|S21.332S|ICD10CM|Pnctr w/o fb of l frnt wl of thorax w penet thor cav, sqla|Pnctr w/o fb of l frnt wl of thorax w penet thor cav, sqla +C2835013|T037|AB|S21.339|ICD10CM|Pnctr w/o fb of unsp front wall of thorax w penet thor cav|Pnctr w/o fb of unsp front wall of thorax w penet thor cav +C2835014|T037|AB|S21.339A|ICD10CM|Pnctr w/o fb of unsp frnt wl of thrx w penet thor cav, init|Pnctr w/o fb of unsp frnt wl of thrx w penet thor cav, init +C2835015|T037|AB|S21.339D|ICD10CM|Pnctr w/o fb of unsp frnt wl of thrx w penet thor cav, subs|Pnctr w/o fb of unsp frnt wl of thrx w penet thor cav, subs +C2835016|T037|AB|S21.339S|ICD10CM|Pnctr w/o fb of unsp frnt wl of thrx w penet thor cav, sqla|Pnctr w/o fb of unsp frnt wl of thrx w penet thor cav, sqla +C2835017|T037|AB|S21.34|ICD10CM|Pnctr w fb of front wall of thorax w penet thoracic cavity|Pnctr w fb of front wall of thorax w penet thoracic cavity +C2835017|T037|HT|S21.34|ICD10CM|Puncture wound with foreign body of front wall of thorax with penetration into thoracic cavity|Puncture wound with foreign body of front wall of thorax with penetration into thoracic cavity +C2835018|T037|AB|S21.341|ICD10CM|Pnctr w fb of r frnt wl of thorax w penet thoracic cavity|Pnctr w fb of r frnt wl of thorax w penet thoracic cavity +C2835018|T037|HT|S21.341|ICD10CM|Puncture wound with foreign body of right front wall of thorax with penetration into thoracic cavity|Puncture wound with foreign body of right front wall of thorax with penetration into thoracic cavity +C2835019|T037|AB|S21.341A|ICD10CM|Pnctr w fb of r frnt wl of thorax w penet thor cavity, init|Pnctr w fb of r frnt wl of thorax w penet thor cavity, init +C2835020|T037|AB|S21.341D|ICD10CM|Pnctr w fb of r frnt wl of thorax w penet thor cavity, subs|Pnctr w fb of r frnt wl of thorax w penet thor cavity, subs +C2835021|T037|AB|S21.341S|ICD10CM|Pnctr w fb of r frnt wl of thorax w penet thor cavity, sqla|Pnctr w fb of r frnt wl of thorax w penet thor cavity, sqla +C2835022|T037|AB|S21.342|ICD10CM|Pnctr w fb of l frnt wl of thorax w penet thoracic cavity|Pnctr w fb of l frnt wl of thorax w penet thoracic cavity +C2835022|T037|HT|S21.342|ICD10CM|Puncture wound with foreign body of left front wall of thorax with penetration into thoracic cavity|Puncture wound with foreign body of left front wall of thorax with penetration into thoracic cavity +C2835023|T037|AB|S21.342A|ICD10CM|Pnctr w fb of l frnt wl of thorax w penet thor cavity, init|Pnctr w fb of l frnt wl of thorax w penet thor cavity, init +C2835024|T037|AB|S21.342D|ICD10CM|Pnctr w fb of l frnt wl of thorax w penet thor cavity, subs|Pnctr w fb of l frnt wl of thorax w penet thor cavity, subs +C2835025|T037|AB|S21.342S|ICD10CM|Pnctr w fb of l frnt wl of thorax w penet thor cavity, sqla|Pnctr w fb of l frnt wl of thorax w penet thor cavity, sqla +C2835026|T037|AB|S21.349|ICD10CM|Pnctr w fb of unsp front wall of thorax w penet thor cavity|Pnctr w fb of unsp front wall of thorax w penet thor cavity +C2835027|T037|AB|S21.349A|ICD10CM|Pnctr w fb of unsp front wall of thrx w penet thor cav, init|Pnctr w fb of unsp front wall of thrx w penet thor cav, init +C2835028|T037|AB|S21.349D|ICD10CM|Pnctr w fb of unsp front wall of thrx w penet thor cav, subs|Pnctr w fb of unsp front wall of thrx w penet thor cav, subs +C2835029|T037|AB|S21.349S|ICD10CM|Pnctr w fb of unsp front wall of thrx w penet thor cav, sqla|Pnctr w fb of unsp front wall of thrx w penet thor cav, sqla +C2835030|T037|AB|S21.35|ICD10CM|Open bite of front wall of thorax w penet thoracic cavity|Open bite of front wall of thorax w penet thoracic cavity +C2835030|T037|HT|S21.35|ICD10CM|Open bite of front wall of thorax with penetration into thoracic cavity|Open bite of front wall of thorax with penetration into thoracic cavity +C2835031|T037|AB|S21.351|ICD10CM|Open bite of r frnt wl of thorax w penet thoracic cavity|Open bite of r frnt wl of thorax w penet thoracic cavity +C2835031|T037|HT|S21.351|ICD10CM|Open bite of right front wall of thorax with penetration into thoracic cavity|Open bite of right front wall of thorax with penetration into thoracic cavity +C2835032|T037|AB|S21.351A|ICD10CM|Open bite of r frnt wl of thorax w penet thor cavity, init|Open bite of r frnt wl of thorax w penet thor cavity, init +C2835032|T037|PT|S21.351A|ICD10CM|Open bite of right front wall of thorax with penetration into thoracic cavity, initial encounter|Open bite of right front wall of thorax with penetration into thoracic cavity, initial encounter +C2835033|T037|AB|S21.351D|ICD10CM|Open bite of r frnt wl of thorax w penet thor cavity, subs|Open bite of r frnt wl of thorax w penet thor cavity, subs +C2835033|T037|PT|S21.351D|ICD10CM|Open bite of right front wall of thorax with penetration into thoracic cavity, subsequent encounter|Open bite of right front wall of thorax with penetration into thoracic cavity, subsequent encounter +C2835034|T037|AB|S21.351S|ICD10CM|Open bite of r frnt wl of thorax w penet thor cavity, sqla|Open bite of r frnt wl of thorax w penet thor cavity, sqla +C2835034|T037|PT|S21.351S|ICD10CM|Open bite of right front wall of thorax with penetration into thoracic cavity, sequela|Open bite of right front wall of thorax with penetration into thoracic cavity, sequela +C2835035|T037|AB|S21.352|ICD10CM|Open bite of l frnt wl of thorax w penet thoracic cavity|Open bite of l frnt wl of thorax w penet thoracic cavity +C2835035|T037|HT|S21.352|ICD10CM|Open bite of left front wall of thorax with penetration into thoracic cavity|Open bite of left front wall of thorax with penetration into thoracic cavity +C2835036|T037|AB|S21.352A|ICD10CM|Open bite of l frnt wl of thorax w penet thor cavity, init|Open bite of l frnt wl of thorax w penet thor cavity, init +C2835036|T037|PT|S21.352A|ICD10CM|Open bite of left front wall of thorax with penetration into thoracic cavity, initial encounter|Open bite of left front wall of thorax with penetration into thoracic cavity, initial encounter +C2835037|T037|AB|S21.352D|ICD10CM|Open bite of l frnt wl of thorax w penet thor cavity, subs|Open bite of l frnt wl of thorax w penet thor cavity, subs +C2835037|T037|PT|S21.352D|ICD10CM|Open bite of left front wall of thorax with penetration into thoracic cavity, subsequent encounter|Open bite of left front wall of thorax with penetration into thoracic cavity, subsequent encounter +C2835038|T037|AB|S21.352S|ICD10CM|Open bite of l frnt wl of thorax w penet thor cavity, sqla|Open bite of l frnt wl of thorax w penet thor cavity, sqla +C2835038|T037|PT|S21.352S|ICD10CM|Open bite of left front wall of thorax with penetration into thoracic cavity, sequela|Open bite of left front wall of thorax with penetration into thoracic cavity, sequela +C2835039|T037|AB|S21.359|ICD10CM|Open bite of unsp front wall of thorax w penet thor cavity|Open bite of unsp front wall of thorax w penet thor cavity +C2835039|T037|HT|S21.359|ICD10CM|Open bite of unspecified front wall of thorax with penetration into thoracic cavity|Open bite of unspecified front wall of thorax with penetration into thoracic cavity +C2835040|T037|AB|S21.359A|ICD10CM|Open bite of unsp front wall of thrx w penet thor cav, init|Open bite of unsp front wall of thrx w penet thor cav, init +C2835041|T037|AB|S21.359D|ICD10CM|Open bite of unsp front wall of thrx w penet thor cav, subs|Open bite of unsp front wall of thrx w penet thor cav, subs +C2835042|T037|AB|S21.359S|ICD10CM|Open bite of unsp front wall of thrx w penet thor cav, sqla|Open bite of unsp front wall of thrx w penet thor cav, sqla +C2835042|T037|PT|S21.359S|ICD10CM|Open bite of unspecified front wall of thorax with penetration into thoracic cavity, sequela|Open bite of unspecified front wall of thorax with penetration into thoracic cavity, sequela +C2835043|T037|AB|S21.4|ICD10CM|Open wound of back wall of thorax w penet thoracic cavity|Open wound of back wall of thorax w penet thoracic cavity +C2835043|T037|HT|S21.4|ICD10CM|Open wound of back wall of thorax with penetration into thoracic cavity|Open wound of back wall of thorax with penetration into thoracic cavity +C2835044|T037|AB|S21.40|ICD10CM|Unsp opn wnd back wall of thorax w penet thoracic cavity|Unsp opn wnd back wall of thorax w penet thoracic cavity +C2835044|T037|HT|S21.40|ICD10CM|Unspecified open wound of back wall of thorax with penetration into thoracic cavity|Unspecified open wound of back wall of thorax with penetration into thoracic cavity +C2835045|T037|AB|S21.401|ICD10CM|Unsp open wound of r bk wl of thorax w penet thoracic cavity|Unsp open wound of r bk wl of thorax w penet thoracic cavity +C2835045|T037|HT|S21.401|ICD10CM|Unspecified open wound of right back wall of thorax with penetration into thoracic cavity|Unspecified open wound of right back wall of thorax with penetration into thoracic cavity +C2835046|T037|AB|S21.401A|ICD10CM|Unsp opn wnd r bk wl of thorax w penet thoracic cavity, init|Unsp opn wnd r bk wl of thorax w penet thoracic cavity, init +C2835047|T037|AB|S21.401D|ICD10CM|Unsp opn wnd r bk wl of thorax w penet thoracic cavity, subs|Unsp opn wnd r bk wl of thorax w penet thoracic cavity, subs +C2835048|T037|AB|S21.401S|ICD10CM|Unsp opn wnd r bk wl of thorax w penet thor cavity, sequela|Unsp opn wnd r bk wl of thorax w penet thor cavity, sequela +C2835048|T037|PT|S21.401S|ICD10CM|Unspecified open wound of right back wall of thorax with penetration into thoracic cavity, sequela|Unspecified open wound of right back wall of thorax with penetration into thoracic cavity, sequela +C2835049|T037|AB|S21.402|ICD10CM|Unsp open wound of l bk wl of thorax w penet thoracic cavity|Unsp open wound of l bk wl of thorax w penet thoracic cavity +C2835049|T037|HT|S21.402|ICD10CM|Unspecified open wound of left back wall of thorax with penetration into thoracic cavity|Unspecified open wound of left back wall of thorax with penetration into thoracic cavity +C2835050|T037|AB|S21.402A|ICD10CM|Unsp opn wnd l bk wl of thorax w penet thoracic cavity, init|Unsp opn wnd l bk wl of thorax w penet thoracic cavity, init +C2835051|T037|AB|S21.402D|ICD10CM|Unsp opn wnd l bk wl of thorax w penet thoracic cavity, subs|Unsp opn wnd l bk wl of thorax w penet thoracic cavity, subs +C2835052|T037|AB|S21.402S|ICD10CM|Unsp opn wnd l bk wl of thorax w penet thor cavity, sequela|Unsp opn wnd l bk wl of thorax w penet thor cavity, sequela +C2835052|T037|PT|S21.402S|ICD10CM|Unspecified open wound of left back wall of thorax with penetration into thoracic cavity, sequela|Unspecified open wound of left back wall of thorax with penetration into thoracic cavity, sequela +C2835053|T037|AB|S21.409|ICD10CM|Unsp opn wnd unsp bk wl of thorax w penet thoracic cavity|Unsp opn wnd unsp bk wl of thorax w penet thoracic cavity +C2835053|T037|HT|S21.409|ICD10CM|Unspecified open wound of unspecified back wall of thorax with penetration into thoracic cavity|Unspecified open wound of unspecified back wall of thorax with penetration into thoracic cavity +C2835054|T037|AB|S21.409A|ICD10CM|Unsp opn wnd unsp bk wl of thorax w penet thor cavity, init|Unsp opn wnd unsp bk wl of thorax w penet thor cavity, init +C2835055|T037|AB|S21.409D|ICD10CM|Unsp opn wnd unsp bk wl of thorax w penet thor cavity, subs|Unsp opn wnd unsp bk wl of thorax w penet thor cavity, subs +C2835056|T037|AB|S21.409S|ICD10CM|Unsp opn wnd unsp bk wl of thorax w penet thor cavity, sqla|Unsp opn wnd unsp bk wl of thorax w penet thor cavity, sqla +C2835057|T037|AB|S21.41|ICD10CM|Lac w/o fb of back wall of thorax w penet thoracic cavity|Lac w/o fb of back wall of thorax w penet thoracic cavity +C2835057|T037|HT|S21.41|ICD10CM|Laceration without foreign body of back wall of thorax with penetration into thoracic cavity|Laceration without foreign body of back wall of thorax with penetration into thoracic cavity +C2835058|T037|AB|S21.411|ICD10CM|Lac w/o fb of r bk wl of thorax w penet thoracic cavity|Lac w/o fb of r bk wl of thorax w penet thoracic cavity +C2835058|T037|HT|S21.411|ICD10CM|Laceration without foreign body of right back wall of thorax with penetration into thoracic cavity|Laceration without foreign body of right back wall of thorax with penetration into thoracic cavity +C2835059|T037|AB|S21.411A|ICD10CM|Lac w/o fb of r bk wl of thorax w penet thor cavity, init|Lac w/o fb of r bk wl of thorax w penet thor cavity, init +C2835060|T037|AB|S21.411D|ICD10CM|Lac w/o fb of r bk wl of thorax w penet thor cavity, subs|Lac w/o fb of r bk wl of thorax w penet thor cavity, subs +C2835061|T037|AB|S21.411S|ICD10CM|Lac w/o fb of r bk wl of thorax w penet thor cavity, sequela|Lac w/o fb of r bk wl of thorax w penet thor cavity, sequela +C2835062|T037|AB|S21.412|ICD10CM|Lac w/o fb of l bk wl of thorax w penet thoracic cavity|Lac w/o fb of l bk wl of thorax w penet thoracic cavity +C2835062|T037|HT|S21.412|ICD10CM|Laceration without foreign body of left back wall of thorax with penetration into thoracic cavity|Laceration without foreign body of left back wall of thorax with penetration into thoracic cavity +C2835063|T037|AB|S21.412A|ICD10CM|Lac w/o fb of l bk wl of thorax w penet thor cavity, init|Lac w/o fb of l bk wl of thorax w penet thor cavity, init +C2835064|T037|AB|S21.412D|ICD10CM|Lac w/o fb of l bk wl of thorax w penet thor cavity, subs|Lac w/o fb of l bk wl of thorax w penet thor cavity, subs +C2835065|T037|AB|S21.412S|ICD10CM|Lac w/o fb of l bk wl of thorax w penet thor cavity, sequela|Lac w/o fb of l bk wl of thorax w penet thor cavity, sequela +C2835066|T037|AB|S21.419|ICD10CM|Lac w/o fb of unsp bk wl of thorax w penet thoracic cavity|Lac w/o fb of unsp bk wl of thorax w penet thoracic cavity +C2835067|T037|AB|S21.419A|ICD10CM|Lac w/o fb of unsp bk wl of thorax w penet thor cavity, init|Lac w/o fb of unsp bk wl of thorax w penet thor cavity, init +C2835068|T037|AB|S21.419D|ICD10CM|Lac w/o fb of unsp bk wl of thorax w penet thor cavity, subs|Lac w/o fb of unsp bk wl of thorax w penet thor cavity, subs +C2835069|T037|AB|S21.419S|ICD10CM|Lac w/o fb of unsp bk wl of thorax w penet thor cavity, sqla|Lac w/o fb of unsp bk wl of thorax w penet thor cavity, sqla +C2835070|T037|AB|S21.42|ICD10CM|Lac w fb of back wall of thorax w penet thoracic cavity|Lac w fb of back wall of thorax w penet thoracic cavity +C2835070|T037|HT|S21.42|ICD10CM|Laceration with foreign body of back wall of thorax with penetration into thoracic cavity|Laceration with foreign body of back wall of thorax with penetration into thoracic cavity +C2835071|T037|AB|S21.421|ICD10CM|Laceration w fb of r bk wl of thorax w penet thoracic cavity|Laceration w fb of r bk wl of thorax w penet thoracic cavity +C2835071|T037|HT|S21.421|ICD10CM|Laceration with foreign body of right back wall of thorax with penetration into thoracic cavity|Laceration with foreign body of right back wall of thorax with penetration into thoracic cavity +C2835072|T037|AB|S21.421A|ICD10CM|Lac w fb of r bk wl of thorax w penet thoracic cavity, init|Lac w fb of r bk wl of thorax w penet thoracic cavity, init +C2835073|T037|AB|S21.421D|ICD10CM|Lac w fb of r bk wl of thorax w penet thoracic cavity, subs|Lac w fb of r bk wl of thorax w penet thoracic cavity, subs +C2835074|T037|AB|S21.421S|ICD10CM|Lac w fb of r bk wl of thorax w penet thor cavity, sequela|Lac w fb of r bk wl of thorax w penet thor cavity, sequela +C2835075|T037|AB|S21.422|ICD10CM|Laceration w fb of l bk wl of thorax w penet thoracic cavity|Laceration w fb of l bk wl of thorax w penet thoracic cavity +C2835075|T037|HT|S21.422|ICD10CM|Laceration with foreign body of left back wall of thorax with penetration into thoracic cavity|Laceration with foreign body of left back wall of thorax with penetration into thoracic cavity +C2835076|T037|AB|S21.422A|ICD10CM|Lac w fb of l bk wl of thorax w penet thoracic cavity, init|Lac w fb of l bk wl of thorax w penet thoracic cavity, init +C2835077|T037|AB|S21.422D|ICD10CM|Lac w fb of l bk wl of thorax w penet thoracic cavity, subs|Lac w fb of l bk wl of thorax w penet thoracic cavity, subs +C2835078|T037|AB|S21.422S|ICD10CM|Lac w fb of l bk wl of thorax w penet thor cavity, sequela|Lac w fb of l bk wl of thorax w penet thor cavity, sequela +C2835079|T037|AB|S21.429|ICD10CM|Lac w fb of unsp back wall of thorax w penet thoracic cavity|Lac w fb of unsp back wall of thorax w penet thoracic cavity +C2835080|T037|AB|S21.429A|ICD10CM|Lac w fb of unsp bk wl of thorax w penet thor cavity, init|Lac w fb of unsp bk wl of thorax w penet thor cavity, init +C2835081|T037|AB|S21.429D|ICD10CM|Lac w fb of unsp bk wl of thorax w penet thor cavity, subs|Lac w fb of unsp bk wl of thorax w penet thor cavity, subs +C2835082|T037|AB|S21.429S|ICD10CM|Lac w fb of unsp bk wl of thorax w penet thor cavity, sqla|Lac w fb of unsp bk wl of thorax w penet thor cavity, sqla +C2835083|T037|AB|S21.43|ICD10CM|Pnctr w/o fb of back wall of thorax w penet thoracic cavity|Pnctr w/o fb of back wall of thorax w penet thoracic cavity +C2835083|T037|HT|S21.43|ICD10CM|Puncture wound without foreign body of back wall of thorax with penetration into thoracic cavity|Puncture wound without foreign body of back wall of thorax with penetration into thoracic cavity +C2835084|T037|AB|S21.431|ICD10CM|Pnctr w/o fb of r bk wl of thorax w penet thoracic cavity|Pnctr w/o fb of r bk wl of thorax w penet thoracic cavity +C2835085|T037|AB|S21.431A|ICD10CM|Pnctr w/o fb of r bk wl of thorax w penet thor cavity, init|Pnctr w/o fb of r bk wl of thorax w penet thor cavity, init +C2835086|T037|AB|S21.431D|ICD10CM|Pnctr w/o fb of r bk wl of thorax w penet thor cavity, subs|Pnctr w/o fb of r bk wl of thorax w penet thor cavity, subs +C2835087|T037|AB|S21.431S|ICD10CM|Pnctr w/o fb of r bk wl of thorax w penet thor cavity, sqla|Pnctr w/o fb of r bk wl of thorax w penet thor cavity, sqla +C2835088|T037|AB|S21.432|ICD10CM|Pnctr w/o fb of l bk wl of thorax w penet thoracic cavity|Pnctr w/o fb of l bk wl of thorax w penet thoracic cavity +C2835089|T037|AB|S21.432A|ICD10CM|Pnctr w/o fb of l bk wl of thorax w penet thor cavity, init|Pnctr w/o fb of l bk wl of thorax w penet thor cavity, init +C2835090|T037|AB|S21.432D|ICD10CM|Pnctr w/o fb of l bk wl of thorax w penet thor cavity, subs|Pnctr w/o fb of l bk wl of thorax w penet thor cavity, subs +C2835091|T037|AB|S21.432S|ICD10CM|Pnctr w/o fb of l bk wl of thorax w penet thor cavity, sqla|Pnctr w/o fb of l bk wl of thorax w penet thor cavity, sqla +C2835092|T037|AB|S21.439|ICD10CM|Pnctr w/o fb of unsp bk wl of thorax w penet thoracic cavity|Pnctr w/o fb of unsp bk wl of thorax w penet thoracic cavity +C2835093|T037|AB|S21.439A|ICD10CM|Pnctr w/o fb of unsp bk wl of thorax w penet thor cav, init|Pnctr w/o fb of unsp bk wl of thorax w penet thor cav, init +C2835094|T037|AB|S21.439D|ICD10CM|Pnctr w/o fb of unsp bk wl of thorax w penet thor cav, subs|Pnctr w/o fb of unsp bk wl of thorax w penet thor cav, subs +C2835095|T037|AB|S21.439S|ICD10CM|Pnctr w/o fb of unsp bk wl of thorax w penet thor cav, sqla|Pnctr w/o fb of unsp bk wl of thorax w penet thor cav, sqla +C2835096|T037|AB|S21.44|ICD10CM|Pnctr w fb of back wall of thorax w penet thoracic cavity|Pnctr w fb of back wall of thorax w penet thoracic cavity +C2835096|T037|HT|S21.44|ICD10CM|Puncture wound with foreign body of back wall of thorax with penetration into thoracic cavity|Puncture wound with foreign body of back wall of thorax with penetration into thoracic cavity +C2835097|T037|AB|S21.441|ICD10CM|Pnctr w fb of r bk wl of thorax w penet thoracic cavity|Pnctr w fb of r bk wl of thorax w penet thoracic cavity +C2835097|T037|HT|S21.441|ICD10CM|Puncture wound with foreign body of right back wall of thorax with penetration into thoracic cavity|Puncture wound with foreign body of right back wall of thorax with penetration into thoracic cavity +C2835098|T037|AB|S21.441A|ICD10CM|Pnctr w fb of r bk wl of thorax w penet thor cavity, init|Pnctr w fb of r bk wl of thorax w penet thor cavity, init +C2835099|T037|AB|S21.441D|ICD10CM|Pnctr w fb of r bk wl of thorax w penet thor cavity, subs|Pnctr w fb of r bk wl of thorax w penet thor cavity, subs +C2835100|T037|AB|S21.441S|ICD10CM|Pnctr w fb of r bk wl of thorax w penet thor cavity, sequela|Pnctr w fb of r bk wl of thorax w penet thor cavity, sequela +C2835101|T037|AB|S21.442|ICD10CM|Pnctr w fb of l bk wl of thorax w penet thoracic cavity|Pnctr w fb of l bk wl of thorax w penet thoracic cavity +C2835101|T037|HT|S21.442|ICD10CM|Puncture wound with foreign body of left back wall of thorax with penetration into thoracic cavity|Puncture wound with foreign body of left back wall of thorax with penetration into thoracic cavity +C2835102|T037|AB|S21.442A|ICD10CM|Pnctr w fb of l bk wl of thorax w penet thor cavity, init|Pnctr w fb of l bk wl of thorax w penet thor cavity, init +C2835103|T037|AB|S21.442D|ICD10CM|Pnctr w fb of l bk wl of thorax w penet thor cavity, subs|Pnctr w fb of l bk wl of thorax w penet thor cavity, subs +C2835104|T037|AB|S21.442S|ICD10CM|Pnctr w fb of l bk wl of thorax w penet thor cavity, sequela|Pnctr w fb of l bk wl of thorax w penet thor cavity, sequela +C2835105|T037|AB|S21.449|ICD10CM|Pnctr w fb of unsp bk wl of thorax w penet thoracic cavity|Pnctr w fb of unsp bk wl of thorax w penet thoracic cavity +C2835106|T037|AB|S21.449A|ICD10CM|Pnctr w fb of unsp bk wl of thorax w penet thor cavity, init|Pnctr w fb of unsp bk wl of thorax w penet thor cavity, init +C2835107|T037|AB|S21.449D|ICD10CM|Pnctr w fb of unsp bk wl of thorax w penet thor cavity, subs|Pnctr w fb of unsp bk wl of thorax w penet thor cavity, subs +C2835108|T037|AB|S21.449S|ICD10CM|Pnctr w fb of unsp bk wl of thorax w penet thor cavity, sqla|Pnctr w fb of unsp bk wl of thorax w penet thor cavity, sqla +C2835109|T037|ET|S21.45|ICD10CM|Bite of back wall of thorax NOS|Bite of back wall of thorax NOS +C2835110|T037|AB|S21.45|ICD10CM|Open bite of back wall of thorax w penet thoracic cavity|Open bite of back wall of thorax w penet thoracic cavity +C2835110|T037|HT|S21.45|ICD10CM|Open bite of back wall of thorax with penetration into thoracic cavity|Open bite of back wall of thorax with penetration into thoracic cavity +C2835111|T037|AB|S21.451|ICD10CM|Open bite of r bk wl of thorax w penet thoracic cavity|Open bite of r bk wl of thorax w penet thoracic cavity +C2835111|T037|HT|S21.451|ICD10CM|Open bite of right back wall of thorax with penetration into thoracic cavity|Open bite of right back wall of thorax with penetration into thoracic cavity +C2835112|T037|AB|S21.451A|ICD10CM|Open bite of r bk wl of thorax w penet thoracic cavity, init|Open bite of r bk wl of thorax w penet thoracic cavity, init +C2835112|T037|PT|S21.451A|ICD10CM|Open bite of right back wall of thorax with penetration into thoracic cavity, initial encounter|Open bite of right back wall of thorax with penetration into thoracic cavity, initial encounter +C2835113|T037|AB|S21.451D|ICD10CM|Open bite of r bk wl of thorax w penet thoracic cavity, subs|Open bite of r bk wl of thorax w penet thoracic cavity, subs +C2835113|T037|PT|S21.451D|ICD10CM|Open bite of right back wall of thorax with penetration into thoracic cavity, subsequent encounter|Open bite of right back wall of thorax with penetration into thoracic cavity, subsequent encounter +C2835114|T037|AB|S21.451S|ICD10CM|Open bite of r bk wl of thorax w penet thor cavity, sequela|Open bite of r bk wl of thorax w penet thor cavity, sequela +C2835114|T037|PT|S21.451S|ICD10CM|Open bite of right back wall of thorax with penetration into thoracic cavity, sequela|Open bite of right back wall of thorax with penetration into thoracic cavity, sequela +C2835115|T037|AB|S21.452|ICD10CM|Open bite of l bk wl of thorax w penet thoracic cavity|Open bite of l bk wl of thorax w penet thoracic cavity +C2835115|T037|HT|S21.452|ICD10CM|Open bite of left back wall of thorax with penetration into thoracic cavity|Open bite of left back wall of thorax with penetration into thoracic cavity +C2835116|T037|AB|S21.452A|ICD10CM|Open bite of l bk wl of thorax w penet thoracic cavity, init|Open bite of l bk wl of thorax w penet thoracic cavity, init +C2835116|T037|PT|S21.452A|ICD10CM|Open bite of left back wall of thorax with penetration into thoracic cavity, initial encounter|Open bite of left back wall of thorax with penetration into thoracic cavity, initial encounter +C2835117|T037|AB|S21.452D|ICD10CM|Open bite of l bk wl of thorax w penet thoracic cavity, subs|Open bite of l bk wl of thorax w penet thoracic cavity, subs +C2835117|T037|PT|S21.452D|ICD10CM|Open bite of left back wall of thorax with penetration into thoracic cavity, subsequent encounter|Open bite of left back wall of thorax with penetration into thoracic cavity, subsequent encounter +C2835118|T037|AB|S21.452S|ICD10CM|Open bite of l bk wl of thorax w penet thor cavity, sequela|Open bite of l bk wl of thorax w penet thor cavity, sequela +C2835118|T037|PT|S21.452S|ICD10CM|Open bite of left back wall of thorax with penetration into thoracic cavity, sequela|Open bite of left back wall of thorax with penetration into thoracic cavity, sequela +C2835119|T037|AB|S21.459|ICD10CM|Open bite of unsp bk wl of thorax w penet thoracic cavity|Open bite of unsp bk wl of thorax w penet thoracic cavity +C2835119|T037|HT|S21.459|ICD10CM|Open bite of unspecified back wall of thorax with penetration into thoracic cavity|Open bite of unspecified back wall of thorax with penetration into thoracic cavity +C2835120|T037|AB|S21.459A|ICD10CM|Open bite of unsp bk wl of thorax w penet thor cavity, init|Open bite of unsp bk wl of thorax w penet thor cavity, init +C2835121|T037|AB|S21.459D|ICD10CM|Open bite of unsp bk wl of thorax w penet thor cavity, subs|Open bite of unsp bk wl of thorax w penet thor cavity, subs +C2835122|T037|AB|S21.459S|ICD10CM|Open bite of unsp bk wl of thorax w penet thor cavity, sqla|Open bite of unsp bk wl of thorax w penet thor cavity, sqla +C2835122|T037|PT|S21.459S|ICD10CM|Open bite of unspecified back wall of thorax with penetration into thoracic cavity, sequela|Open bite of unspecified back wall of thorax with penetration into thoracic cavity, sequela +C0451974|T037|PT|S21.7|ICD10|Multiple open wounds of thoracic wall|Multiple open wounds of thoracic wall +C0478234|T037|PT|S21.8|ICD10|Open wound of other parts of thorax|Open wound of other parts of thorax +C2835123|T037|ET|S21.9|ICD10CM|Open wound of thoracic wall NOS|Open wound of thoracic wall NOS +C0478235|T037|PT|S21.9|ICD10|Open wound of thorax, part unspecified|Open wound of thorax, part unspecified +C0478235|T037|AB|S21.9|ICD10CM|Open wound of unspecified part of thorax|Open wound of unspecified part of thorax +C0478235|T037|HT|S21.9|ICD10CM|Open wound of unspecified part of thorax|Open wound of unspecified part of thorax +C2835124|T037|AB|S21.90|ICD10CM|Unspecified open wound of unspecified part of thorax|Unspecified open wound of unspecified part of thorax +C2835124|T037|HT|S21.90|ICD10CM|Unspecified open wound of unspecified part of thorax|Unspecified open wound of unspecified part of thorax +C2835125|T037|AB|S21.90XA|ICD10CM|Unsp open wound of unspecified part of thorax, init encntr|Unsp open wound of unspecified part of thorax, init encntr +C2835125|T037|PT|S21.90XA|ICD10CM|Unspecified open wound of unspecified part of thorax, initial encounter|Unspecified open wound of unspecified part of thorax, initial encounter +C2835126|T037|AB|S21.90XD|ICD10CM|Unsp open wound of unspecified part of thorax, subs encntr|Unsp open wound of unspecified part of thorax, subs encntr +C2835126|T037|PT|S21.90XD|ICD10CM|Unspecified open wound of unspecified part of thorax, subsequent encounter|Unspecified open wound of unspecified part of thorax, subsequent encounter +C2835127|T037|AB|S21.90XS|ICD10CM|Unsp open wound of unspecified part of thorax, sequela|Unsp open wound of unspecified part of thorax, sequela +C2835127|T037|PT|S21.90XS|ICD10CM|Unspecified open wound of unspecified part of thorax, sequela|Unspecified open wound of unspecified part of thorax, sequela +C2835128|T037|AB|S21.91|ICD10CM|Laceration without foreign body of unsp part of thorax|Laceration without foreign body of unsp part of thorax +C2835128|T037|HT|S21.91|ICD10CM|Laceration without foreign body of unspecified part of thorax|Laceration without foreign body of unspecified part of thorax +C2835129|T037|AB|S21.91XA|ICD10CM|Laceration w/o foreign body of unsp part of thorax, init|Laceration w/o foreign body of unsp part of thorax, init +C2835129|T037|PT|S21.91XA|ICD10CM|Laceration without foreign body of unspecified part of thorax, initial encounter|Laceration without foreign body of unspecified part of thorax, initial encounter +C2835130|T037|AB|S21.91XD|ICD10CM|Laceration w/o foreign body of unsp part of thorax, subs|Laceration w/o foreign body of unsp part of thorax, subs +C2835130|T037|PT|S21.91XD|ICD10CM|Laceration without foreign body of unspecified part of thorax, subsequent encounter|Laceration without foreign body of unspecified part of thorax, subsequent encounter +C2835131|T037|AB|S21.91XS|ICD10CM|Laceration w/o foreign body of unsp part of thorax, sequela|Laceration w/o foreign body of unsp part of thorax, sequela +C2835131|T037|PT|S21.91XS|ICD10CM|Laceration without foreign body of unspecified part of thorax, sequela|Laceration without foreign body of unspecified part of thorax, sequela +C2835132|T037|AB|S21.92|ICD10CM|Laceration with foreign body of unspecified part of thorax|Laceration with foreign body of unspecified part of thorax +C2835132|T037|HT|S21.92|ICD10CM|Laceration with foreign body of unspecified part of thorax|Laceration with foreign body of unspecified part of thorax +C2835133|T037|AB|S21.92XA|ICD10CM|Laceration w foreign body of unsp part of thorax, init|Laceration w foreign body of unsp part of thorax, init +C2835133|T037|PT|S21.92XA|ICD10CM|Laceration with foreign body of unspecified part of thorax, initial encounter|Laceration with foreign body of unspecified part of thorax, initial encounter +C2835134|T037|AB|S21.92XD|ICD10CM|Laceration w foreign body of unsp part of thorax, subs|Laceration w foreign body of unsp part of thorax, subs +C2835134|T037|PT|S21.92XD|ICD10CM|Laceration with foreign body of unspecified part of thorax, subsequent encounter|Laceration with foreign body of unspecified part of thorax, subsequent encounter +C2835135|T037|AB|S21.92XS|ICD10CM|Laceration with foreign body of unsp part of thorax, sequela|Laceration with foreign body of unsp part of thorax, sequela +C2835135|T037|PT|S21.92XS|ICD10CM|Laceration with foreign body of unspecified part of thorax, sequela|Laceration with foreign body of unspecified part of thorax, sequela +C2835136|T037|AB|S21.93|ICD10CM|Puncture wound without foreign body of unsp part of thorax|Puncture wound without foreign body of unsp part of thorax +C2835136|T037|HT|S21.93|ICD10CM|Puncture wound without foreign body of unspecified part of thorax|Puncture wound without foreign body of unspecified part of thorax +C2835137|T037|AB|S21.93XA|ICD10CM|Puncture wound w/o foreign body of unsp part of thorax, init|Puncture wound w/o foreign body of unsp part of thorax, init +C2835137|T037|PT|S21.93XA|ICD10CM|Puncture wound without foreign body of unspecified part of thorax, initial encounter|Puncture wound without foreign body of unspecified part of thorax, initial encounter +C2835138|T037|AB|S21.93XD|ICD10CM|Puncture wound w/o foreign body of unsp part of thorax, subs|Puncture wound w/o foreign body of unsp part of thorax, subs +C2835138|T037|PT|S21.93XD|ICD10CM|Puncture wound without foreign body of unspecified part of thorax, subsequent encounter|Puncture wound without foreign body of unspecified part of thorax, subsequent encounter +C2835139|T037|AB|S21.93XS|ICD10CM|Pnctr w/o foreign body of unsp part of thorax, sequela|Pnctr w/o foreign body of unsp part of thorax, sequela +C2835139|T037|PT|S21.93XS|ICD10CM|Puncture wound without foreign body of unspecified part of thorax, sequela|Puncture wound without foreign body of unspecified part of thorax, sequela +C2835140|T037|AB|S21.94|ICD10CM|Puncture wound with foreign body of unsp part of thorax|Puncture wound with foreign body of unsp part of thorax +C2835140|T037|HT|S21.94|ICD10CM|Puncture wound with foreign body of unspecified part of thorax|Puncture wound with foreign body of unspecified part of thorax +C2835141|T037|AB|S21.94XA|ICD10CM|Puncture wound w foreign body of unsp part of thorax, init|Puncture wound w foreign body of unsp part of thorax, init +C2835141|T037|PT|S21.94XA|ICD10CM|Puncture wound with foreign body of unspecified part of thorax, initial encounter|Puncture wound with foreign body of unspecified part of thorax, initial encounter +C2835142|T037|AB|S21.94XD|ICD10CM|Puncture wound w foreign body of unsp part of thorax, subs|Puncture wound w foreign body of unsp part of thorax, subs +C2835142|T037|PT|S21.94XD|ICD10CM|Puncture wound with foreign body of unspecified part of thorax, subsequent encounter|Puncture wound with foreign body of unspecified part of thorax, subsequent encounter +C2835143|T037|AB|S21.94XS|ICD10CM|Pnctr w foreign body of unsp part of thorax, sequela|Pnctr w foreign body of unsp part of thorax, sequela +C2835143|T037|PT|S21.94XS|ICD10CM|Puncture wound with foreign body of unspecified part of thorax, sequela|Puncture wound with foreign body of unspecified part of thorax, sequela +C2835144|T037|AB|S21.95|ICD10CM|Open bite of unspecified part of thorax|Open bite of unspecified part of thorax +C2835144|T037|HT|S21.95|ICD10CM|Open bite of unspecified part of thorax|Open bite of unspecified part of thorax +C2835145|T037|AB|S21.95XA|ICD10CM|Open bite of unspecified part of thorax, initial encounter|Open bite of unspecified part of thorax, initial encounter +C2835145|T037|PT|S21.95XA|ICD10CM|Open bite of unspecified part of thorax, initial encounter|Open bite of unspecified part of thorax, initial encounter +C2835146|T037|AB|S21.95XD|ICD10CM|Open bite of unspecified part of thorax, subs encntr|Open bite of unspecified part of thorax, subs encntr +C2835146|T037|PT|S21.95XD|ICD10CM|Open bite of unspecified part of thorax, subsequent encounter|Open bite of unspecified part of thorax, subsequent encounter +C2835147|T037|AB|S21.95XS|ICD10CM|Open bite of unspecified part of thorax, sequela|Open bite of unspecified part of thorax, sequela +C2835147|T037|PT|S21.95XS|ICD10CM|Open bite of unspecified part of thorax, sequela|Open bite of unspecified part of thorax, sequela +C0495828|T037|HT|S22|ICD10|Fracture of rib(s), sternum and thoracic spine|Fracture of rib(s), sternum and thoracic spine +C0495828|T037|AB|S22|ICD10CM|Fracture of rib(s), sternum and thoracic spine|Fracture of rib(s), sternum and thoracic spine +C0495828|T037|HT|S22|ICD10CM|Fracture of rib(s), sternum and thoracic spine|Fracture of rib(s), sternum and thoracic spine +C4290321|T037|ET|S22|ICD10CM|fracture of thoracic neural arch|fracture of thoracic neural arch +C4290322|T037|ET|S22|ICD10CM|fracture of thoracic spinous process|fracture of thoracic spinous process +C4290323|T037|ET|S22|ICD10CM|fracture of thoracic transverse process|fracture of thoracic transverse process +C0347780|T037|ET|S22|ICD10CM|fracture of thoracic vertebra|fracture of thoracic vertebra +C4290324|T037|ET|S22|ICD10CM|fracture of thoracic vertebral arch|fracture of thoracic vertebral arch +C0347780|T037|HT|S22.0|ICD10CM|Fracture of thoracic vertebra|Fracture of thoracic vertebra +C0347780|T037|AB|S22.0|ICD10CM|Fracture of thoracic vertebra|Fracture of thoracic vertebra +C0347780|T037|PT|S22.0|ICD10|Fracture of thoracic vertebra|Fracture of thoracic vertebra +C2835152|T037|AB|S22.00|ICD10CM|Fracture of unspecified thoracic vertebra|Fracture of unspecified thoracic vertebra +C2835152|T037|HT|S22.00|ICD10CM|Fracture of unspecified thoracic vertebra|Fracture of unspecified thoracic vertebra +C2835153|T037|AB|S22.000|ICD10CM|Wedge compression fracture of unspecified thoracic vertebra|Wedge compression fracture of unspecified thoracic vertebra +C2835153|T037|HT|S22.000|ICD10CM|Wedge compression fracture of unspecified thoracic vertebra|Wedge compression fracture of unspecified thoracic vertebra +C2835154|T037|AB|S22.000A|ICD10CM|Wedge compression fracture of unsp thoracic vertebra, init|Wedge compression fracture of unsp thoracic vertebra, init +C2835154|T037|PT|S22.000A|ICD10CM|Wedge compression fracture of unspecified thoracic vertebra, initial encounter for closed fracture|Wedge compression fracture of unspecified thoracic vertebra, initial encounter for closed fracture +C2835155|T037|PT|S22.000B|ICD10CM|Wedge compression fracture of unspecified thoracic vertebra, initial encounter for open fracture|Wedge compression fracture of unspecified thoracic vertebra, initial encounter for open fracture +C2835155|T037|AB|S22.000B|ICD10CM|Wedge comprsn fx unsp thor vertebra, init for opn fx|Wedge comprsn fx unsp thor vertebra, init for opn fx +C2835156|T037|AB|S22.000D|ICD10CM|Wedge comprsn fx unsp thor vert, subs for fx w routn heal|Wedge comprsn fx unsp thor vert, subs for fx w routn heal +C2835157|T037|AB|S22.000G|ICD10CM|Wedge comprsn fx unsp thor vert, subs for fx w delay heal|Wedge comprsn fx unsp thor vert, subs for fx w delay heal +C2835158|T037|AB|S22.000K|ICD10CM|Wedge comprsn fx unsp thor vertebra, subs for fx w nonunion|Wedge comprsn fx unsp thor vertebra, subs for fx w nonunion +C2835159|T037|AB|S22.000S|ICD10CM|Wedge compression fracture of unsp thor vertebra, sequela|Wedge compression fracture of unsp thor vertebra, sequela +C2835159|T037|PT|S22.000S|ICD10CM|Wedge compression fracture of unspecified thoracic vertebra, sequela|Wedge compression fracture of unspecified thoracic vertebra, sequela +C2835160|T037|AB|S22.001|ICD10CM|Stable burst fracture of unspecified thoracic vertebra|Stable burst fracture of unspecified thoracic vertebra +C2835160|T037|HT|S22.001|ICD10CM|Stable burst fracture of unspecified thoracic vertebra|Stable burst fracture of unspecified thoracic vertebra +C2835161|T037|AB|S22.001A|ICD10CM|Stable burst fracture of unsp thoracic vertebra, init|Stable burst fracture of unsp thoracic vertebra, init +C2835161|T037|PT|S22.001A|ICD10CM|Stable burst fracture of unspecified thoracic vertebra, initial encounter for closed fracture|Stable burst fracture of unspecified thoracic vertebra, initial encounter for closed fracture +C2835162|T037|AB|S22.001B|ICD10CM|Stable burst fracture of unsp thor vertebra, init for opn fx|Stable burst fracture of unsp thor vertebra, init for opn fx +C2835162|T037|PT|S22.001B|ICD10CM|Stable burst fracture of unspecified thoracic vertebra, initial encounter for open fracture|Stable burst fracture of unspecified thoracic vertebra, initial encounter for open fracture +C2835163|T037|AB|S22.001D|ICD10CM|Stable burst fx unsp thor vertebra, subs for fx w routn heal|Stable burst fx unsp thor vertebra, subs for fx w routn heal +C2835164|T037|AB|S22.001G|ICD10CM|Stable burst fx unsp thor vertebra, subs for fx w delay heal|Stable burst fx unsp thor vertebra, subs for fx w delay heal +C2835165|T037|AB|S22.001K|ICD10CM|Stable burst fx unsp thor vertebra, subs for fx w nonunion|Stable burst fx unsp thor vertebra, subs for fx w nonunion +C2835166|T037|AB|S22.001S|ICD10CM|Stable burst fracture of unsp thoracic vertebra, sequela|Stable burst fracture of unsp thoracic vertebra, sequela +C2835166|T037|PT|S22.001S|ICD10CM|Stable burst fracture of unspecified thoracic vertebra, sequela|Stable burst fracture of unspecified thoracic vertebra, sequela +C2835167|T037|AB|S22.002|ICD10CM|Unstable burst fracture of unspecified thoracic vertebra|Unstable burst fracture of unspecified thoracic vertebra +C2835167|T037|HT|S22.002|ICD10CM|Unstable burst fracture of unspecified thoracic vertebra|Unstable burst fracture of unspecified thoracic vertebra +C2835168|T037|AB|S22.002A|ICD10CM|Unstable burst fracture of unsp thoracic vertebra, init|Unstable burst fracture of unsp thoracic vertebra, init +C2835168|T037|PT|S22.002A|ICD10CM|Unstable burst fracture of unspecified thoracic vertebra, initial encounter for closed fracture|Unstable burst fracture of unspecified thoracic vertebra, initial encounter for closed fracture +C2835169|T037|PT|S22.002B|ICD10CM|Unstable burst fracture of unspecified thoracic vertebra, initial encounter for open fracture|Unstable burst fracture of unspecified thoracic vertebra, initial encounter for open fracture +C2835169|T037|AB|S22.002B|ICD10CM|Unstable burst fx unsp thor vertebra, init for opn fx|Unstable burst fx unsp thor vertebra, init for opn fx +C2835170|T037|AB|S22.002D|ICD10CM|Unstbl burst fx unsp thor vertebra, subs for fx w routn heal|Unstbl burst fx unsp thor vertebra, subs for fx w routn heal +C2835171|T037|AB|S22.002G|ICD10CM|Unstbl burst fx unsp thor vertebra, subs for fx w delay heal|Unstbl burst fx unsp thor vertebra, subs for fx w delay heal +C2835172|T037|AB|S22.002K|ICD10CM|Unstable burst fx unsp thor vertebra, subs for fx w nonunion|Unstable burst fx unsp thor vertebra, subs for fx w nonunion +C2835173|T037|AB|S22.002S|ICD10CM|Unstable burst fracture of unsp thoracic vertebra, sequela|Unstable burst fracture of unsp thoracic vertebra, sequela +C2835173|T037|PT|S22.002S|ICD10CM|Unstable burst fracture of unspecified thoracic vertebra, sequela|Unstable burst fracture of unspecified thoracic vertebra, sequela +C2835174|T037|AB|S22.008|ICD10CM|Other fracture of unspecified thoracic vertebra|Other fracture of unspecified thoracic vertebra +C2835174|T037|HT|S22.008|ICD10CM|Other fracture of unspecified thoracic vertebra|Other fracture of unspecified thoracic vertebra +C2835175|T037|AB|S22.008A|ICD10CM|Oth fracture of unsp thoracic vertebra, init for clos fx|Oth fracture of unsp thoracic vertebra, init for clos fx +C2835175|T037|PT|S22.008A|ICD10CM|Other fracture of unspecified thoracic vertebra, initial encounter for closed fracture|Other fracture of unspecified thoracic vertebra, initial encounter for closed fracture +C2835176|T037|AB|S22.008B|ICD10CM|Oth fracture of unsp thoracic vertebra, init for opn fx|Oth fracture of unsp thoracic vertebra, init for opn fx +C2835176|T037|PT|S22.008B|ICD10CM|Other fracture of unspecified thoracic vertebra, initial encounter for open fracture|Other fracture of unspecified thoracic vertebra, initial encounter for open fracture +C2835177|T037|AB|S22.008D|ICD10CM|Oth fracture of unsp thor vertebra, subs for fx w routn heal|Oth fracture of unsp thor vertebra, subs for fx w routn heal +C2835178|T037|AB|S22.008G|ICD10CM|Oth fracture of unsp thor vertebra, subs for fx w delay heal|Oth fracture of unsp thor vertebra, subs for fx w delay heal +C2835179|T037|AB|S22.008K|ICD10CM|Oth fracture of unsp thor vertebra, subs for fx w nonunion|Oth fracture of unsp thor vertebra, subs for fx w nonunion +C2835179|T037|PT|S22.008K|ICD10CM|Other fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion|Other fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion +C2835180|T037|PT|S22.008S|ICD10CM|Other fracture of unspecified thoracic vertebra, sequela|Other fracture of unspecified thoracic vertebra, sequela +C2835180|T037|AB|S22.008S|ICD10CM|Other fracture of unspecified thoracic vertebra, sequela|Other fracture of unspecified thoracic vertebra, sequela +C2835181|T037|AB|S22.009|ICD10CM|Unspecified fracture of unspecified thoracic vertebra|Unspecified fracture of unspecified thoracic vertebra +C2835181|T037|HT|S22.009|ICD10CM|Unspecified fracture of unspecified thoracic vertebra|Unspecified fracture of unspecified thoracic vertebra +C2835182|T037|AB|S22.009A|ICD10CM|Unsp fracture of unsp thoracic vertebra, init for clos fx|Unsp fracture of unsp thoracic vertebra, init for clos fx +C2835182|T037|PT|S22.009A|ICD10CM|Unspecified fracture of unspecified thoracic vertebra, initial encounter for closed fracture|Unspecified fracture of unspecified thoracic vertebra, initial encounter for closed fracture +C2835183|T037|AB|S22.009B|ICD10CM|Unsp fracture of unsp thoracic vertebra, init for opn fx|Unsp fracture of unsp thoracic vertebra, init for opn fx +C2835183|T037|PT|S22.009B|ICD10CM|Unspecified fracture of unspecified thoracic vertebra, initial encounter for open fracture|Unspecified fracture of unspecified thoracic vertebra, initial encounter for open fracture +C2835184|T037|AB|S22.009D|ICD10CM|Unsp fx unsp thor vertebra, subs for fx w routn heal|Unsp fx unsp thor vertebra, subs for fx w routn heal +C2835185|T037|AB|S22.009G|ICD10CM|Unsp fx unsp thor vertebra, subs for fx w delay heal|Unsp fx unsp thor vertebra, subs for fx w delay heal +C2835186|T037|AB|S22.009K|ICD10CM|Unsp fracture of unsp thor vertebra, subs for fx w nonunion|Unsp fracture of unsp thor vertebra, subs for fx w nonunion +C2835187|T037|AB|S22.009S|ICD10CM|Unsp fracture of unspecified thoracic vertebra, sequela|Unsp fracture of unspecified thoracic vertebra, sequela +C2835187|T037|PT|S22.009S|ICD10CM|Unspecified fracture of unspecified thoracic vertebra, sequela|Unspecified fracture of unspecified thoracic vertebra, sequela +C2835188|T037|HT|S22.01|ICD10CM|Fracture of first thoracic vertebra|Fracture of first thoracic vertebra +C2835188|T037|AB|S22.01|ICD10CM|Fracture of first thoracic vertebra|Fracture of first thoracic vertebra +C2835189|T037|AB|S22.010|ICD10CM|Wedge compression fracture of first thoracic vertebra|Wedge compression fracture of first thoracic vertebra +C2835189|T037|HT|S22.010|ICD10CM|Wedge compression fracture of first thoracic vertebra|Wedge compression fracture of first thoracic vertebra +C2835190|T037|AB|S22.010A|ICD10CM|Wedge compression fracture of first thoracic vertebra, init|Wedge compression fracture of first thoracic vertebra, init +C2835190|T037|PT|S22.010A|ICD10CM|Wedge compression fracture of first thoracic vertebra, initial encounter for closed fracture|Wedge compression fracture of first thoracic vertebra, initial encounter for closed fracture +C2835191|T037|PT|S22.010B|ICD10CM|Wedge compression fracture of first thoracic vertebra, initial encounter for open fracture|Wedge compression fracture of first thoracic vertebra, initial encounter for open fracture +C2835191|T037|AB|S22.010B|ICD10CM|Wedge comprsn fx first thor vertebra, init for opn fx|Wedge comprsn fx first thor vertebra, init for opn fx +C2835192|T037|AB|S22.010D|ICD10CM|Wedge comprsn fx first thor vert, subs for fx w routn heal|Wedge comprsn fx first thor vert, subs for fx w routn heal +C2835193|T037|AB|S22.010G|ICD10CM|Wedge comprsn fx first thor vert, subs for fx w delay heal|Wedge comprsn fx first thor vert, subs for fx w delay heal +C2835194|T037|AB|S22.010K|ICD10CM|Wedge comprsn fx first thor vertebra, subs for fx w nonunion|Wedge comprsn fx first thor vertebra, subs for fx w nonunion +C2835195|T037|AB|S22.010S|ICD10CM|Wedge compression fracture of first thor vertebra, sequela|Wedge compression fracture of first thor vertebra, sequela +C2835195|T037|PT|S22.010S|ICD10CM|Wedge compression fracture of first thoracic vertebra, sequela|Wedge compression fracture of first thoracic vertebra, sequela +C2835196|T037|AB|S22.011|ICD10CM|Stable burst fracture of first thoracic vertebra|Stable burst fracture of first thoracic vertebra +C2835196|T037|HT|S22.011|ICD10CM|Stable burst fracture of first thoracic vertebra|Stable burst fracture of first thoracic vertebra +C2835197|T037|AB|S22.011A|ICD10CM|Stable burst fracture of first thoracic vertebra, init|Stable burst fracture of first thoracic vertebra, init +C2835197|T037|PT|S22.011A|ICD10CM|Stable burst fracture of first thoracic vertebra, initial encounter for closed fracture|Stable burst fracture of first thoracic vertebra, initial encounter for closed fracture +C2835198|T037|PT|S22.011B|ICD10CM|Stable burst fracture of first thoracic vertebra, initial encounter for open fracture|Stable burst fracture of first thoracic vertebra, initial encounter for open fracture +C2835198|T037|AB|S22.011B|ICD10CM|Stable burst fx first thor vertebra, init for opn fx|Stable burst fx first thor vertebra, init for opn fx +C2835199|T037|AB|S22.011D|ICD10CM|Stable burst fx first thor vert, subs for fx w routn heal|Stable burst fx first thor vert, subs for fx w routn heal +C2835200|T037|AB|S22.011G|ICD10CM|Stable burst fx first thor vert, subs for fx w delay heal|Stable burst fx first thor vert, subs for fx w delay heal +C2835201|T037|PT|S22.011K|ICD10CM|Stable burst fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion|Stable burst fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion +C2835201|T037|AB|S22.011K|ICD10CM|Stable burst fx first thor vertebra, subs for fx w nonunion|Stable burst fx first thor vertebra, subs for fx w nonunion +C2835202|T037|PT|S22.011S|ICD10CM|Stable burst fracture of first thoracic vertebra, sequela|Stable burst fracture of first thoracic vertebra, sequela +C2835202|T037|AB|S22.011S|ICD10CM|Stable burst fracture of first thoracic vertebra, sequela|Stable burst fracture of first thoracic vertebra, sequela +C2835203|T037|AB|S22.012|ICD10CM|Unstable burst fracture of first thoracic vertebra|Unstable burst fracture of first thoracic vertebra +C2835203|T037|HT|S22.012|ICD10CM|Unstable burst fracture of first thoracic vertebra|Unstable burst fracture of first thoracic vertebra +C2835204|T037|AB|S22.012A|ICD10CM|Unstable burst fracture of first thoracic vertebra, init|Unstable burst fracture of first thoracic vertebra, init +C2835204|T037|PT|S22.012A|ICD10CM|Unstable burst fracture of first thoracic vertebra, initial encounter for closed fracture|Unstable burst fracture of first thoracic vertebra, initial encounter for closed fracture +C2835205|T037|PT|S22.012B|ICD10CM|Unstable burst fracture of first thoracic vertebra, initial encounter for open fracture|Unstable burst fracture of first thoracic vertebra, initial encounter for open fracture +C2835205|T037|AB|S22.012B|ICD10CM|Unstable burst fx first thor vertebra, init for opn fx|Unstable burst fx first thor vertebra, init for opn fx +C2835206|T037|AB|S22.012D|ICD10CM|Unstbl burst fx first thor vert, subs for fx w routn heal|Unstbl burst fx first thor vert, subs for fx w routn heal +C2835207|T037|AB|S22.012G|ICD10CM|Unstbl burst fx first thor vert, subs for fx w delay heal|Unstbl burst fx first thor vert, subs for fx w delay heal +C2835208|T037|PT|S22.012K|ICD10CM|Unstable burst fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion|Unstable burst fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion +C2835208|T037|AB|S22.012K|ICD10CM|Unstbl burst fx first thor vertebra, subs for fx w nonunion|Unstbl burst fx first thor vertebra, subs for fx w nonunion +C2835209|T037|PT|S22.012S|ICD10CM|Unstable burst fracture of first thoracic vertebra, sequela|Unstable burst fracture of first thoracic vertebra, sequela +C2835209|T037|AB|S22.012S|ICD10CM|Unstable burst fracture of first thoracic vertebra, sequela|Unstable burst fracture of first thoracic vertebra, sequela +C2835210|T037|AB|S22.018|ICD10CM|Other fracture of first thoracic vertebra|Other fracture of first thoracic vertebra +C2835210|T037|HT|S22.018|ICD10CM|Other fracture of first thoracic vertebra|Other fracture of first thoracic vertebra +C2835211|T037|AB|S22.018A|ICD10CM|Oth fracture of first thoracic vertebra, init for clos fx|Oth fracture of first thoracic vertebra, init for clos fx +C2835211|T037|PT|S22.018A|ICD10CM|Other fracture of first thoracic vertebra, initial encounter for closed fracture|Other fracture of first thoracic vertebra, initial encounter for closed fracture +C2835212|T037|AB|S22.018B|ICD10CM|Oth fracture of first thoracic vertebra, init for opn fx|Oth fracture of first thoracic vertebra, init for opn fx +C2835212|T037|PT|S22.018B|ICD10CM|Other fracture of first thoracic vertebra, initial encounter for open fracture|Other fracture of first thoracic vertebra, initial encounter for open fracture +C2835213|T037|AB|S22.018D|ICD10CM|Oth fx first thor vertebra, subs for fx w routn heal|Oth fx first thor vertebra, subs for fx w routn heal +C2835213|T037|PT|S22.018D|ICD10CM|Other fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing|Other fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing +C2835214|T037|AB|S22.018G|ICD10CM|Oth fx first thor vertebra, subs for fx w delay heal|Oth fx first thor vertebra, subs for fx w delay heal +C2835214|T037|PT|S22.018G|ICD10CM|Other fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing|Other fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing +C2835215|T037|AB|S22.018K|ICD10CM|Oth fracture of first thor vertebra, subs for fx w nonunion|Oth fracture of first thor vertebra, subs for fx w nonunion +C2835215|T037|PT|S22.018K|ICD10CM|Other fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion|Other fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion +C2835216|T037|PT|S22.018S|ICD10CM|Other fracture of first thoracic vertebra, sequela|Other fracture of first thoracic vertebra, sequela +C2835216|T037|AB|S22.018S|ICD10CM|Other fracture of first thoracic vertebra, sequela|Other fracture of first thoracic vertebra, sequela +C2835217|T037|AB|S22.019|ICD10CM|Unspecified fracture of first thoracic vertebra|Unspecified fracture of first thoracic vertebra +C2835217|T037|HT|S22.019|ICD10CM|Unspecified fracture of first thoracic vertebra|Unspecified fracture of first thoracic vertebra +C2835218|T037|AB|S22.019A|ICD10CM|Unsp fracture of first thoracic vertebra, init for clos fx|Unsp fracture of first thoracic vertebra, init for clos fx +C2835218|T037|PT|S22.019A|ICD10CM|Unspecified fracture of first thoracic vertebra, initial encounter for closed fracture|Unspecified fracture of first thoracic vertebra, initial encounter for closed fracture +C2835219|T037|AB|S22.019B|ICD10CM|Unsp fracture of first thoracic vertebra, init for opn fx|Unsp fracture of first thoracic vertebra, init for opn fx +C2835219|T037|PT|S22.019B|ICD10CM|Unspecified fracture of first thoracic vertebra, initial encounter for open fracture|Unspecified fracture of first thoracic vertebra, initial encounter for open fracture +C2835220|T037|AB|S22.019D|ICD10CM|Unsp fx first thor vertebra, subs for fx w routn heal|Unsp fx first thor vertebra, subs for fx w routn heal +C2835221|T037|AB|S22.019G|ICD10CM|Unsp fx first thor vertebra, subs for fx w delay heal|Unsp fx first thor vertebra, subs for fx w delay heal +C2835222|T037|AB|S22.019K|ICD10CM|Unsp fracture of first thor vertebra, subs for fx w nonunion|Unsp fracture of first thor vertebra, subs for fx w nonunion +C2835222|T037|PT|S22.019K|ICD10CM|Unspecified fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion|Unspecified fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion +C2835223|T037|PT|S22.019S|ICD10CM|Unspecified fracture of first thoracic vertebra, sequela|Unspecified fracture of first thoracic vertebra, sequela +C2835223|T037|AB|S22.019S|ICD10CM|Unspecified fracture of first thoracic vertebra, sequela|Unspecified fracture of first thoracic vertebra, sequela +C2835224|T037|HT|S22.02|ICD10CM|Fracture of second thoracic vertebra|Fracture of second thoracic vertebra +C2835224|T037|AB|S22.02|ICD10CM|Fracture of second thoracic vertebra|Fracture of second thoracic vertebra +C2835225|T037|AB|S22.020|ICD10CM|Wedge compression fracture of second thoracic vertebra|Wedge compression fracture of second thoracic vertebra +C2835225|T037|HT|S22.020|ICD10CM|Wedge compression fracture of second thoracic vertebra|Wedge compression fracture of second thoracic vertebra +C2835226|T037|AB|S22.020A|ICD10CM|Wedge compression fracture of second thoracic vertebra, init|Wedge compression fracture of second thoracic vertebra, init +C2835226|T037|PT|S22.020A|ICD10CM|Wedge compression fracture of second thoracic vertebra, initial encounter for closed fracture|Wedge compression fracture of second thoracic vertebra, initial encounter for closed fracture +C2835227|T037|PT|S22.020B|ICD10CM|Wedge compression fracture of second thoracic vertebra, initial encounter for open fracture|Wedge compression fracture of second thoracic vertebra, initial encounter for open fracture +C2835227|T037|AB|S22.020B|ICD10CM|Wedge comprsn fx second thor vertebra, init for opn fx|Wedge comprsn fx second thor vertebra, init for opn fx +C2835228|T037|AB|S22.020D|ICD10CM|Wedge comprsn fx second thor vert, subs for fx w routn heal|Wedge comprsn fx second thor vert, subs for fx w routn heal +C2835229|T037|AB|S22.020G|ICD10CM|Wedge comprsn fx second thor vert, subs for fx w delay heal|Wedge comprsn fx second thor vert, subs for fx w delay heal +C2835230|T037|AB|S22.020K|ICD10CM|Wedge comprsn fx second thor vert, subs for fx w nonunion|Wedge comprsn fx second thor vert, subs for fx w nonunion +C2835231|T037|AB|S22.020S|ICD10CM|Wedge compression fracture of second thor vertebra, sequela|Wedge compression fracture of second thor vertebra, sequela +C2835231|T037|PT|S22.020S|ICD10CM|Wedge compression fracture of second thoracic vertebra, sequela|Wedge compression fracture of second thoracic vertebra, sequela +C2835232|T037|AB|S22.021|ICD10CM|Stable burst fracture of second thoracic vertebra|Stable burst fracture of second thoracic vertebra +C2835232|T037|HT|S22.021|ICD10CM|Stable burst fracture of second thoracic vertebra|Stable burst fracture of second thoracic vertebra +C2835233|T037|AB|S22.021A|ICD10CM|Stable burst fracture of second thoracic vertebra, init|Stable burst fracture of second thoracic vertebra, init +C2835233|T037|PT|S22.021A|ICD10CM|Stable burst fracture of second thoracic vertebra, initial encounter for closed fracture|Stable burst fracture of second thoracic vertebra, initial encounter for closed fracture +C2835234|T037|PT|S22.021B|ICD10CM|Stable burst fracture of second thoracic vertebra, initial encounter for open fracture|Stable burst fracture of second thoracic vertebra, initial encounter for open fracture +C2835234|T037|AB|S22.021B|ICD10CM|Stable burst fx second thor vertebra, init for opn fx|Stable burst fx second thor vertebra, init for opn fx +C2835235|T037|AB|S22.021D|ICD10CM|Stable burst fx second thor vert, subs for fx w routn heal|Stable burst fx second thor vert, subs for fx w routn heal +C2835236|T037|AB|S22.021G|ICD10CM|Stable burst fx second thor vert, subs for fx w delay heal|Stable burst fx second thor vert, subs for fx w delay heal +C2835237|T037|PT|S22.021K|ICD10CM|Stable burst fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion|Stable burst fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion +C2835237|T037|AB|S22.021K|ICD10CM|Stable burst fx second thor vertebra, subs for fx w nonunion|Stable burst fx second thor vertebra, subs for fx w nonunion +C2835238|T037|AB|S22.021S|ICD10CM|Stable burst fracture of second thoracic vertebra, sequela|Stable burst fracture of second thoracic vertebra, sequela +C2835238|T037|PT|S22.021S|ICD10CM|Stable burst fracture of second thoracic vertebra, sequela|Stable burst fracture of second thoracic vertebra, sequela +C2835239|T037|AB|S22.022|ICD10CM|Unstable burst fracture of second thoracic vertebra|Unstable burst fracture of second thoracic vertebra +C2835239|T037|HT|S22.022|ICD10CM|Unstable burst fracture of second thoracic vertebra|Unstable burst fracture of second thoracic vertebra +C2835240|T037|AB|S22.022A|ICD10CM|Unstable burst fracture of second thoracic vertebra, init|Unstable burst fracture of second thoracic vertebra, init +C2835240|T037|PT|S22.022A|ICD10CM|Unstable burst fracture of second thoracic vertebra, initial encounter for closed fracture|Unstable burst fracture of second thoracic vertebra, initial encounter for closed fracture +C2835241|T037|PT|S22.022B|ICD10CM|Unstable burst fracture of second thoracic vertebra, initial encounter for open fracture|Unstable burst fracture of second thoracic vertebra, initial encounter for open fracture +C2835241|T037|AB|S22.022B|ICD10CM|Unstable burst fx second thor vertebra, init for opn fx|Unstable burst fx second thor vertebra, init for opn fx +C2835242|T037|AB|S22.022D|ICD10CM|Unstbl burst fx second thor vert, subs for fx w routn heal|Unstbl burst fx second thor vert, subs for fx w routn heal +C2835243|T037|AB|S22.022G|ICD10CM|Unstbl burst fx second thor vert, subs for fx w delay heal|Unstbl burst fx second thor vert, subs for fx w delay heal +C2835244|T037|PT|S22.022K|ICD10CM|Unstable burst fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion|Unstable burst fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion +C2835244|T037|AB|S22.022K|ICD10CM|Unstbl burst fx second thor vertebra, subs for fx w nonunion|Unstbl burst fx second thor vertebra, subs for fx w nonunion +C2835245|T037|AB|S22.022S|ICD10CM|Unstable burst fracture of second thoracic vertebra, sequela|Unstable burst fracture of second thoracic vertebra, sequela +C2835245|T037|PT|S22.022S|ICD10CM|Unstable burst fracture of second thoracic vertebra, sequela|Unstable burst fracture of second thoracic vertebra, sequela +C2835246|T037|AB|S22.028|ICD10CM|Other fracture of second thoracic vertebra|Other fracture of second thoracic vertebra +C2835246|T037|HT|S22.028|ICD10CM|Other fracture of second thoracic vertebra|Other fracture of second thoracic vertebra +C2835247|T037|AB|S22.028A|ICD10CM|Oth fracture of second thoracic vertebra, init for clos fx|Oth fracture of second thoracic vertebra, init for clos fx +C2835247|T037|PT|S22.028A|ICD10CM|Other fracture of second thoracic vertebra, initial encounter for closed fracture|Other fracture of second thoracic vertebra, initial encounter for closed fracture +C2835248|T037|AB|S22.028B|ICD10CM|Oth fracture of second thoracic vertebra, init for opn fx|Oth fracture of second thoracic vertebra, init for opn fx +C2835248|T037|PT|S22.028B|ICD10CM|Other fracture of second thoracic vertebra, initial encounter for open fracture|Other fracture of second thoracic vertebra, initial encounter for open fracture +C2835249|T037|AB|S22.028D|ICD10CM|Oth fx second thor vertebra, subs for fx w routn heal|Oth fx second thor vertebra, subs for fx w routn heal +C2835249|T037|PT|S22.028D|ICD10CM|Other fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing|Other fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing +C2835250|T037|AB|S22.028G|ICD10CM|Oth fx second thor vertebra, subs for fx w delay heal|Oth fx second thor vertebra, subs for fx w delay heal +C2835250|T037|PT|S22.028G|ICD10CM|Other fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing|Other fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing +C2835251|T037|AB|S22.028K|ICD10CM|Oth fracture of second thor vertebra, subs for fx w nonunion|Oth fracture of second thor vertebra, subs for fx w nonunion +C2835251|T037|PT|S22.028K|ICD10CM|Other fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion|Other fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion +C2835252|T037|PT|S22.028S|ICD10CM|Other fracture of second thoracic vertebra, sequela|Other fracture of second thoracic vertebra, sequela +C2835252|T037|AB|S22.028S|ICD10CM|Other fracture of second thoracic vertebra, sequela|Other fracture of second thoracic vertebra, sequela +C2835253|T037|AB|S22.029|ICD10CM|Unspecified fracture of second thoracic vertebra|Unspecified fracture of second thoracic vertebra +C2835253|T037|HT|S22.029|ICD10CM|Unspecified fracture of second thoracic vertebra|Unspecified fracture of second thoracic vertebra +C2835254|T037|AB|S22.029A|ICD10CM|Unsp fracture of second thoracic vertebra, init for clos fx|Unsp fracture of second thoracic vertebra, init for clos fx +C2835254|T037|PT|S22.029A|ICD10CM|Unspecified fracture of second thoracic vertebra, initial encounter for closed fracture|Unspecified fracture of second thoracic vertebra, initial encounter for closed fracture +C2835255|T037|AB|S22.029B|ICD10CM|Unsp fracture of second thoracic vertebra, init for opn fx|Unsp fracture of second thoracic vertebra, init for opn fx +C2835255|T037|PT|S22.029B|ICD10CM|Unspecified fracture of second thoracic vertebra, initial encounter for open fracture|Unspecified fracture of second thoracic vertebra, initial encounter for open fracture +C2835256|T037|AB|S22.029D|ICD10CM|Unsp fx second thor vertebra, subs for fx w routn heal|Unsp fx second thor vertebra, subs for fx w routn heal +C2835257|T037|AB|S22.029G|ICD10CM|Unsp fx second thor vertebra, subs for fx w delay heal|Unsp fx second thor vertebra, subs for fx w delay heal +C2835258|T037|AB|S22.029K|ICD10CM|Unsp fx second thor vertebra, subs for fx w nonunion|Unsp fx second thor vertebra, subs for fx w nonunion +C2835258|T037|PT|S22.029K|ICD10CM|Unspecified fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion|Unspecified fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion +C2835259|T037|PT|S22.029S|ICD10CM|Unspecified fracture of second thoracic vertebra, sequela|Unspecified fracture of second thoracic vertebra, sequela +C2835259|T037|AB|S22.029S|ICD10CM|Unspecified fracture of second thoracic vertebra, sequela|Unspecified fracture of second thoracic vertebra, sequela +C2835260|T037|HT|S22.03|ICD10CM|Fracture of third thoracic vertebra|Fracture of third thoracic vertebra +C2835260|T037|AB|S22.03|ICD10CM|Fracture of third thoracic vertebra|Fracture of third thoracic vertebra +C2835261|T037|AB|S22.030|ICD10CM|Wedge compression fracture of third thoracic vertebra|Wedge compression fracture of third thoracic vertebra +C2835261|T037|HT|S22.030|ICD10CM|Wedge compression fracture of third thoracic vertebra|Wedge compression fracture of third thoracic vertebra +C2835262|T037|AB|S22.030A|ICD10CM|Wedge compression fracture of third thoracic vertebra, init|Wedge compression fracture of third thoracic vertebra, init +C2835262|T037|PT|S22.030A|ICD10CM|Wedge compression fracture of third thoracic vertebra, initial encounter for closed fracture|Wedge compression fracture of third thoracic vertebra, initial encounter for closed fracture +C2835263|T037|PT|S22.030B|ICD10CM|Wedge compression fracture of third thoracic vertebra, initial encounter for open fracture|Wedge compression fracture of third thoracic vertebra, initial encounter for open fracture +C2835263|T037|AB|S22.030B|ICD10CM|Wedge comprsn fx third thor vertebra, init for opn fx|Wedge comprsn fx third thor vertebra, init for opn fx +C2835264|T037|AB|S22.030D|ICD10CM|Wedge comprsn fx third thor vert, subs for fx w routn heal|Wedge comprsn fx third thor vert, subs for fx w routn heal +C2835265|T037|AB|S22.030G|ICD10CM|Wedge comprsn fx third thor vert, subs for fx w delay heal|Wedge comprsn fx third thor vert, subs for fx w delay heal +C2835266|T037|AB|S22.030K|ICD10CM|Wedge comprsn fx third thor vertebra, subs for fx w nonunion|Wedge comprsn fx third thor vertebra, subs for fx w nonunion +C2835267|T037|AB|S22.030S|ICD10CM|Wedge compression fracture of third thor vertebra, sequela|Wedge compression fracture of third thor vertebra, sequela +C2835267|T037|PT|S22.030S|ICD10CM|Wedge compression fracture of third thoracic vertebra, sequela|Wedge compression fracture of third thoracic vertebra, sequela +C2835268|T037|AB|S22.031|ICD10CM|Stable burst fracture of third thoracic vertebra|Stable burst fracture of third thoracic vertebra +C2835268|T037|HT|S22.031|ICD10CM|Stable burst fracture of third thoracic vertebra|Stable burst fracture of third thoracic vertebra +C2835269|T037|AB|S22.031A|ICD10CM|Stable burst fracture of third thoracic vertebra, init|Stable burst fracture of third thoracic vertebra, init +C2835269|T037|PT|S22.031A|ICD10CM|Stable burst fracture of third thoracic vertebra, initial encounter for closed fracture|Stable burst fracture of third thoracic vertebra, initial encounter for closed fracture +C2835270|T037|PT|S22.031B|ICD10CM|Stable burst fracture of third thoracic vertebra, initial encounter for open fracture|Stable burst fracture of third thoracic vertebra, initial encounter for open fracture +C2835270|T037|AB|S22.031B|ICD10CM|Stable burst fx third thor vertebra, init for opn fx|Stable burst fx third thor vertebra, init for opn fx +C2835271|T037|AB|S22.031D|ICD10CM|Stable burst fx third thor vert, subs for fx w routn heal|Stable burst fx third thor vert, subs for fx w routn heal +C2835272|T037|AB|S22.031G|ICD10CM|Stable burst fx third thor vert, subs for fx w delay heal|Stable burst fx third thor vert, subs for fx w delay heal +C2835273|T037|PT|S22.031K|ICD10CM|Stable burst fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion|Stable burst fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion +C2835273|T037|AB|S22.031K|ICD10CM|Stable burst fx third thor vertebra, subs for fx w nonunion|Stable burst fx third thor vertebra, subs for fx w nonunion +C2835274|T037|PT|S22.031S|ICD10CM|Stable burst fracture of third thoracic vertebra, sequela|Stable burst fracture of third thoracic vertebra, sequela +C2835274|T037|AB|S22.031S|ICD10CM|Stable burst fracture of third thoracic vertebra, sequela|Stable burst fracture of third thoracic vertebra, sequela +C2835275|T037|AB|S22.032|ICD10CM|Unstable burst fracture of third thoracic vertebra|Unstable burst fracture of third thoracic vertebra +C2835275|T037|HT|S22.032|ICD10CM|Unstable burst fracture of third thoracic vertebra|Unstable burst fracture of third thoracic vertebra +C2835276|T037|AB|S22.032A|ICD10CM|Unstable burst fracture of third thoracic vertebra, init|Unstable burst fracture of third thoracic vertebra, init +C2835276|T037|PT|S22.032A|ICD10CM|Unstable burst fracture of third thoracic vertebra, initial encounter for closed fracture|Unstable burst fracture of third thoracic vertebra, initial encounter for closed fracture +C2835277|T037|PT|S22.032B|ICD10CM|Unstable burst fracture of third thoracic vertebra, initial encounter for open fracture|Unstable burst fracture of third thoracic vertebra, initial encounter for open fracture +C2835277|T037|AB|S22.032B|ICD10CM|Unstable burst fx third thor vertebra, init for opn fx|Unstable burst fx third thor vertebra, init for opn fx +C2835278|T037|AB|S22.032D|ICD10CM|Unstbl burst fx third thor vert, subs for fx w routn heal|Unstbl burst fx third thor vert, subs for fx w routn heal +C2835279|T037|AB|S22.032G|ICD10CM|Unstbl burst fx third thor vert, subs for fx w delay heal|Unstbl burst fx third thor vert, subs for fx w delay heal +C2835280|T037|PT|S22.032K|ICD10CM|Unstable burst fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion|Unstable burst fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion +C2835280|T037|AB|S22.032K|ICD10CM|Unstbl burst fx third thor vertebra, subs for fx w nonunion|Unstbl burst fx third thor vertebra, subs for fx w nonunion +C2835281|T037|PT|S22.032S|ICD10CM|Unstable burst fracture of third thoracic vertebra, sequela|Unstable burst fracture of third thoracic vertebra, sequela +C2835281|T037|AB|S22.032S|ICD10CM|Unstable burst fracture of third thoracic vertebra, sequela|Unstable burst fracture of third thoracic vertebra, sequela +C2835282|T037|AB|S22.038|ICD10CM|Other fracture of third thoracic vertebra|Other fracture of third thoracic vertebra +C2835282|T037|HT|S22.038|ICD10CM|Other fracture of third thoracic vertebra|Other fracture of third thoracic vertebra +C2835283|T037|AB|S22.038A|ICD10CM|Oth fracture of third thoracic vertebra, init for clos fx|Oth fracture of third thoracic vertebra, init for clos fx +C2835283|T037|PT|S22.038A|ICD10CM|Other fracture of third thoracic vertebra, initial encounter for closed fracture|Other fracture of third thoracic vertebra, initial encounter for closed fracture +C2835284|T037|AB|S22.038B|ICD10CM|Oth fracture of third thoracic vertebra, init for opn fx|Oth fracture of third thoracic vertebra, init for opn fx +C2835284|T037|PT|S22.038B|ICD10CM|Other fracture of third thoracic vertebra, initial encounter for open fracture|Other fracture of third thoracic vertebra, initial encounter for open fracture +C2835285|T037|AB|S22.038D|ICD10CM|Oth fx third thor vertebra, subs for fx w routn heal|Oth fx third thor vertebra, subs for fx w routn heal +C2835285|T037|PT|S22.038D|ICD10CM|Other fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing|Other fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing +C2835286|T037|AB|S22.038G|ICD10CM|Oth fx third thor vertebra, subs for fx w delay heal|Oth fx third thor vertebra, subs for fx w delay heal +C2835286|T037|PT|S22.038G|ICD10CM|Other fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing|Other fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing +C2835287|T037|AB|S22.038K|ICD10CM|Oth fracture of third thor vertebra, subs for fx w nonunion|Oth fracture of third thor vertebra, subs for fx w nonunion +C2835287|T037|PT|S22.038K|ICD10CM|Other fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion|Other fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion +C2835288|T037|PT|S22.038S|ICD10CM|Other fracture of third thoracic vertebra, sequela|Other fracture of third thoracic vertebra, sequela +C2835288|T037|AB|S22.038S|ICD10CM|Other fracture of third thoracic vertebra, sequela|Other fracture of third thoracic vertebra, sequela +C2835289|T037|AB|S22.039|ICD10CM|Unspecified fracture of third thoracic vertebra|Unspecified fracture of third thoracic vertebra +C2835289|T037|HT|S22.039|ICD10CM|Unspecified fracture of third thoracic vertebra|Unspecified fracture of third thoracic vertebra +C2835290|T037|AB|S22.039A|ICD10CM|Unsp fracture of third thoracic vertebra, init for clos fx|Unsp fracture of third thoracic vertebra, init for clos fx +C2835290|T037|PT|S22.039A|ICD10CM|Unspecified fracture of third thoracic vertebra, initial encounter for closed fracture|Unspecified fracture of third thoracic vertebra, initial encounter for closed fracture +C2835291|T037|AB|S22.039B|ICD10CM|Unsp fracture of third thoracic vertebra, init for opn fx|Unsp fracture of third thoracic vertebra, init for opn fx +C2835291|T037|PT|S22.039B|ICD10CM|Unspecified fracture of third thoracic vertebra, initial encounter for open fracture|Unspecified fracture of third thoracic vertebra, initial encounter for open fracture +C2835292|T037|AB|S22.039D|ICD10CM|Unsp fx third thor vertebra, subs for fx w routn heal|Unsp fx third thor vertebra, subs for fx w routn heal +C2835293|T037|AB|S22.039G|ICD10CM|Unsp fx third thor vertebra, subs for fx w delay heal|Unsp fx third thor vertebra, subs for fx w delay heal +C2835294|T037|AB|S22.039K|ICD10CM|Unsp fracture of third thor vertebra, subs for fx w nonunion|Unsp fracture of third thor vertebra, subs for fx w nonunion +C2835294|T037|PT|S22.039K|ICD10CM|Unspecified fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion|Unspecified fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion +C2835295|T037|PT|S22.039S|ICD10CM|Unspecified fracture of third thoracic vertebra, sequela|Unspecified fracture of third thoracic vertebra, sequela +C2835295|T037|AB|S22.039S|ICD10CM|Unspecified fracture of third thoracic vertebra, sequela|Unspecified fracture of third thoracic vertebra, sequela +C2835296|T037|HT|S22.04|ICD10CM|Fracture of fourth thoracic vertebra|Fracture of fourth thoracic vertebra +C2835296|T037|AB|S22.04|ICD10CM|Fracture of fourth thoracic vertebra|Fracture of fourth thoracic vertebra +C2835297|T037|AB|S22.040|ICD10CM|Wedge compression fracture of fourth thoracic vertebra|Wedge compression fracture of fourth thoracic vertebra +C2835297|T037|HT|S22.040|ICD10CM|Wedge compression fracture of fourth thoracic vertebra|Wedge compression fracture of fourth thoracic vertebra +C2835298|T037|AB|S22.040A|ICD10CM|Wedge compression fracture of fourth thoracic vertebra, init|Wedge compression fracture of fourth thoracic vertebra, init +C2835298|T037|PT|S22.040A|ICD10CM|Wedge compression fracture of fourth thoracic vertebra, initial encounter for closed fracture|Wedge compression fracture of fourth thoracic vertebra, initial encounter for closed fracture +C2835299|T037|PT|S22.040B|ICD10CM|Wedge compression fracture of fourth thoracic vertebra, initial encounter for open fracture|Wedge compression fracture of fourth thoracic vertebra, initial encounter for open fracture +C2835299|T037|AB|S22.040B|ICD10CM|Wedge comprsn fx fourth thor vertebra, init for opn fx|Wedge comprsn fx fourth thor vertebra, init for opn fx +C2835300|T037|AB|S22.040D|ICD10CM|Wedge comprsn fx fourth thor vert, subs for fx w routn heal|Wedge comprsn fx fourth thor vert, subs for fx w routn heal +C2835301|T037|AB|S22.040G|ICD10CM|Wedge comprsn fx fourth thor vert, subs for fx w delay heal|Wedge comprsn fx fourth thor vert, subs for fx w delay heal +C2835302|T037|AB|S22.040K|ICD10CM|Wedge comprsn fx fourth thor vert, subs for fx w nonunion|Wedge comprsn fx fourth thor vert, subs for fx w nonunion +C2835303|T037|AB|S22.040S|ICD10CM|Wedge compression fracture of fourth thor vertebra, sequela|Wedge compression fracture of fourth thor vertebra, sequela +C2835303|T037|PT|S22.040S|ICD10CM|Wedge compression fracture of fourth thoracic vertebra, sequela|Wedge compression fracture of fourth thoracic vertebra, sequela +C2835304|T037|AB|S22.041|ICD10CM|Stable burst fracture of fourth thoracic vertebra|Stable burst fracture of fourth thoracic vertebra +C2835304|T037|HT|S22.041|ICD10CM|Stable burst fracture of fourth thoracic vertebra|Stable burst fracture of fourth thoracic vertebra +C2835305|T037|AB|S22.041A|ICD10CM|Stable burst fracture of fourth thoracic vertebra, init|Stable burst fracture of fourth thoracic vertebra, init +C2835305|T037|PT|S22.041A|ICD10CM|Stable burst fracture of fourth thoracic vertebra, initial encounter for closed fracture|Stable burst fracture of fourth thoracic vertebra, initial encounter for closed fracture +C2835306|T037|PT|S22.041B|ICD10CM|Stable burst fracture of fourth thoracic vertebra, initial encounter for open fracture|Stable burst fracture of fourth thoracic vertebra, initial encounter for open fracture +C2835306|T037|AB|S22.041B|ICD10CM|Stable burst fx fourth thor vertebra, init for opn fx|Stable burst fx fourth thor vertebra, init for opn fx +C2835307|T037|AB|S22.041D|ICD10CM|Stable burst fx fourth thor vert, subs for fx w routn heal|Stable burst fx fourth thor vert, subs for fx w routn heal +C2835308|T037|AB|S22.041G|ICD10CM|Stable burst fx fourth thor vert, subs for fx w delay heal|Stable burst fx fourth thor vert, subs for fx w delay heal +C2835309|T037|PT|S22.041K|ICD10CM|Stable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion|Stable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion +C2835309|T037|AB|S22.041K|ICD10CM|Stable burst fx fourth thor vertebra, subs for fx w nonunion|Stable burst fx fourth thor vertebra, subs for fx w nonunion +C2835310|T037|AB|S22.041S|ICD10CM|Stable burst fracture of fourth thoracic vertebra, sequela|Stable burst fracture of fourth thoracic vertebra, sequela +C2835310|T037|PT|S22.041S|ICD10CM|Stable burst fracture of fourth thoracic vertebra, sequela|Stable burst fracture of fourth thoracic vertebra, sequela +C2835311|T037|AB|S22.042|ICD10CM|Unstable burst fracture of fourth thoracic vertebra|Unstable burst fracture of fourth thoracic vertebra +C2835311|T037|HT|S22.042|ICD10CM|Unstable burst fracture of fourth thoracic vertebra|Unstable burst fracture of fourth thoracic vertebra +C2835312|T037|AB|S22.042A|ICD10CM|Unstable burst fracture of fourth thoracic vertebra, init|Unstable burst fracture of fourth thoracic vertebra, init +C2835312|T037|PT|S22.042A|ICD10CM|Unstable burst fracture of fourth thoracic vertebra, initial encounter for closed fracture|Unstable burst fracture of fourth thoracic vertebra, initial encounter for closed fracture +C2835313|T037|PT|S22.042B|ICD10CM|Unstable burst fracture of fourth thoracic vertebra, initial encounter for open fracture|Unstable burst fracture of fourth thoracic vertebra, initial encounter for open fracture +C2835313|T037|AB|S22.042B|ICD10CM|Unstable burst fx fourth thor vertebra, init for opn fx|Unstable burst fx fourth thor vertebra, init for opn fx +C2835314|T037|AB|S22.042D|ICD10CM|Unstbl burst fx fourth thor vert, subs for fx w routn heal|Unstbl burst fx fourth thor vert, subs for fx w routn heal +C2835315|T037|AB|S22.042G|ICD10CM|Unstbl burst fx fourth thor vert, subs for fx w delay heal|Unstbl burst fx fourth thor vert, subs for fx w delay heal +C2835316|T037|PT|S22.042K|ICD10CM|Unstable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion|Unstable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion +C2835316|T037|AB|S22.042K|ICD10CM|Unstbl burst fx fourth thor vertebra, subs for fx w nonunion|Unstbl burst fx fourth thor vertebra, subs for fx w nonunion +C2835317|T037|AB|S22.042S|ICD10CM|Unstable burst fracture of fourth thoracic vertebra, sequela|Unstable burst fracture of fourth thoracic vertebra, sequela +C2835317|T037|PT|S22.042S|ICD10CM|Unstable burst fracture of fourth thoracic vertebra, sequela|Unstable burst fracture of fourth thoracic vertebra, sequela +C2835318|T037|AB|S22.048|ICD10CM|Other fracture of fourth thoracic vertebra|Other fracture of fourth thoracic vertebra +C2835318|T037|HT|S22.048|ICD10CM|Other fracture of fourth thoracic vertebra|Other fracture of fourth thoracic vertebra +C2835319|T037|AB|S22.048A|ICD10CM|Oth fracture of fourth thoracic vertebra, init for clos fx|Oth fracture of fourth thoracic vertebra, init for clos fx +C2835319|T037|PT|S22.048A|ICD10CM|Other fracture of fourth thoracic vertebra, initial encounter for closed fracture|Other fracture of fourth thoracic vertebra, initial encounter for closed fracture +C2835320|T037|AB|S22.048B|ICD10CM|Oth fracture of fourth thoracic vertebra, init for opn fx|Oth fracture of fourth thoracic vertebra, init for opn fx +C2835320|T037|PT|S22.048B|ICD10CM|Other fracture of fourth thoracic vertebra, initial encounter for open fracture|Other fracture of fourth thoracic vertebra, initial encounter for open fracture +C2835321|T037|AB|S22.048D|ICD10CM|Oth fx fourth thor vertebra, subs for fx w routn heal|Oth fx fourth thor vertebra, subs for fx w routn heal +C2835321|T037|PT|S22.048D|ICD10CM|Other fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing|Other fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing +C2835322|T037|AB|S22.048G|ICD10CM|Oth fx fourth thor vertebra, subs for fx w delay heal|Oth fx fourth thor vertebra, subs for fx w delay heal +C2835322|T037|PT|S22.048G|ICD10CM|Other fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing|Other fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing +C2835323|T037|AB|S22.048K|ICD10CM|Oth fracture of fourth thor vertebra, subs for fx w nonunion|Oth fracture of fourth thor vertebra, subs for fx w nonunion +C2835323|T037|PT|S22.048K|ICD10CM|Other fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion|Other fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion +C2835324|T037|PT|S22.048S|ICD10CM|Other fracture of fourth thoracic vertebra, sequela|Other fracture of fourth thoracic vertebra, sequela +C2835324|T037|AB|S22.048S|ICD10CM|Other fracture of fourth thoracic vertebra, sequela|Other fracture of fourth thoracic vertebra, sequela +C2835325|T037|AB|S22.049|ICD10CM|Unspecified fracture of fourth thoracic vertebra|Unspecified fracture of fourth thoracic vertebra +C2835325|T037|HT|S22.049|ICD10CM|Unspecified fracture of fourth thoracic vertebra|Unspecified fracture of fourth thoracic vertebra +C2835326|T037|AB|S22.049A|ICD10CM|Unsp fracture of fourth thoracic vertebra, init for clos fx|Unsp fracture of fourth thoracic vertebra, init for clos fx +C2835326|T037|PT|S22.049A|ICD10CM|Unspecified fracture of fourth thoracic vertebra, initial encounter for closed fracture|Unspecified fracture of fourth thoracic vertebra, initial encounter for closed fracture +C2835327|T037|AB|S22.049B|ICD10CM|Unsp fracture of fourth thoracic vertebra, init for opn fx|Unsp fracture of fourth thoracic vertebra, init for opn fx +C2835327|T037|PT|S22.049B|ICD10CM|Unspecified fracture of fourth thoracic vertebra, initial encounter for open fracture|Unspecified fracture of fourth thoracic vertebra, initial encounter for open fracture +C2835328|T037|AB|S22.049D|ICD10CM|Unsp fx fourth thor vertebra, subs for fx w routn heal|Unsp fx fourth thor vertebra, subs for fx w routn heal +C2835329|T037|AB|S22.049G|ICD10CM|Unsp fx fourth thor vertebra, subs for fx w delay heal|Unsp fx fourth thor vertebra, subs for fx w delay heal +C2835330|T037|AB|S22.049K|ICD10CM|Unsp fx fourth thor vertebra, subs for fx w nonunion|Unsp fx fourth thor vertebra, subs for fx w nonunion +C2835330|T037|PT|S22.049K|ICD10CM|Unspecified fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion|Unspecified fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion +C2835331|T037|PT|S22.049S|ICD10CM|Unspecified fracture of fourth thoracic vertebra, sequela|Unspecified fracture of fourth thoracic vertebra, sequela +C2835331|T037|AB|S22.049S|ICD10CM|Unspecified fracture of fourth thoracic vertebra, sequela|Unspecified fracture of fourth thoracic vertebra, sequela +C2835332|T037|AB|S22.05|ICD10CM|Fracture of T5-T6 vertebra|Fracture of T5-T6 vertebra +C2835332|T037|HT|S22.05|ICD10CM|Fracture of T5-T6 vertebra|Fracture of T5-T6 vertebra +C2835333|T037|AB|S22.050|ICD10CM|Wedge compression fracture of T5-T6 vertebra|Wedge compression fracture of T5-T6 vertebra +C2835333|T037|HT|S22.050|ICD10CM|Wedge compression fracture of T5-T6 vertebra|Wedge compression fracture of T5-T6 vertebra +C2835334|T037|AB|S22.050A|ICD10CM|Wedge compression fracture of T5-T6 vertebra, init|Wedge compression fracture of T5-T6 vertebra, init +C2835334|T037|PT|S22.050A|ICD10CM|Wedge compression fracture of T5-T6 vertebra, initial encounter for closed fracture|Wedge compression fracture of T5-T6 vertebra, initial encounter for closed fracture +C2835335|T037|PT|S22.050B|ICD10CM|Wedge compression fracture of T5-T6 vertebra, initial encounter for open fracture|Wedge compression fracture of T5-T6 vertebra, initial encounter for open fracture +C2835335|T037|AB|S22.050B|ICD10CM|Wedge comprsn fracture of T5-T6 vertebra, init for opn fx|Wedge comprsn fracture of T5-T6 vertebra, init for opn fx +C2835336|T037|PT|S22.050D|ICD10CM|Wedge compression fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing|Wedge compression fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing +C2835336|T037|AB|S22.050D|ICD10CM|Wedge comprsn fx T5-T6 vertebra, subs for fx w routn heal|Wedge comprsn fx T5-T6 vertebra, subs for fx w routn heal +C2835337|T037|PT|S22.050G|ICD10CM|Wedge compression fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing|Wedge compression fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing +C2835337|T037|AB|S22.050G|ICD10CM|Wedge comprsn fx T5-T6 vertebra, subs for fx w delay heal|Wedge comprsn fx T5-T6 vertebra, subs for fx w delay heal +C2835338|T037|PT|S22.050K|ICD10CM|Wedge compression fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion|Wedge compression fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion +C2835338|T037|AB|S22.050K|ICD10CM|Wedge comprsn fx T5-T6 vertebra, subs for fx w nonunion|Wedge comprsn fx T5-T6 vertebra, subs for fx w nonunion +C2835339|T037|AB|S22.050S|ICD10CM|Wedge compression fracture of T5-T6 vertebra, sequela|Wedge compression fracture of T5-T6 vertebra, sequela +C2835339|T037|PT|S22.050S|ICD10CM|Wedge compression fracture of T5-T6 vertebra, sequela|Wedge compression fracture of T5-T6 vertebra, sequela +C2835340|T037|AB|S22.051|ICD10CM|Stable burst fracture of T5-T6 vertebra|Stable burst fracture of T5-T6 vertebra +C2835340|T037|HT|S22.051|ICD10CM|Stable burst fracture of T5-T6 vertebra|Stable burst fracture of T5-T6 vertebra +C2835341|T037|AB|S22.051A|ICD10CM|Stable burst fracture of T5-T6 vertebra, init for clos fx|Stable burst fracture of T5-T6 vertebra, init for clos fx +C2835341|T037|PT|S22.051A|ICD10CM|Stable burst fracture of T5-T6 vertebra, initial encounter for closed fracture|Stable burst fracture of T5-T6 vertebra, initial encounter for closed fracture +C2835342|T037|AB|S22.051B|ICD10CM|Stable burst fracture of T5-T6 vertebra, init for opn fx|Stable burst fracture of T5-T6 vertebra, init for opn fx +C2835342|T037|PT|S22.051B|ICD10CM|Stable burst fracture of T5-T6 vertebra, initial encounter for open fracture|Stable burst fracture of T5-T6 vertebra, initial encounter for open fracture +C2835343|T037|PT|S22.051D|ICD10CM|Stable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing|Stable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing +C2835343|T037|AB|S22.051D|ICD10CM|Stable burst fx T5-T6 vertebra, subs for fx w routn heal|Stable burst fx T5-T6 vertebra, subs for fx w routn heal +C2835344|T037|PT|S22.051G|ICD10CM|Stable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing|Stable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing +C2835344|T037|AB|S22.051G|ICD10CM|Stable burst fx T5-T6 vertebra, subs for fx w delay heal|Stable burst fx T5-T6 vertebra, subs for fx w delay heal +C2835345|T037|PT|S22.051K|ICD10CM|Stable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion|Stable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion +C2835345|T037|AB|S22.051K|ICD10CM|Stable burst fx T5-T6 vertebra, subs for fx w nonunion|Stable burst fx T5-T6 vertebra, subs for fx w nonunion +C2835346|T037|PT|S22.051S|ICD10CM|Stable burst fracture of T5-T6 vertebra, sequela|Stable burst fracture of T5-T6 vertebra, sequela +C2835346|T037|AB|S22.051S|ICD10CM|Stable burst fracture of T5-T6 vertebra, sequela|Stable burst fracture of T5-T6 vertebra, sequela +C2835347|T037|AB|S22.052|ICD10CM|Unstable burst fracture of T5-T6 vertebra|Unstable burst fracture of T5-T6 vertebra +C2835347|T037|HT|S22.052|ICD10CM|Unstable burst fracture of T5-T6 vertebra|Unstable burst fracture of T5-T6 vertebra +C2835348|T037|AB|S22.052A|ICD10CM|Unstable burst fracture of T5-T6 vertebra, init for clos fx|Unstable burst fracture of T5-T6 vertebra, init for clos fx +C2835348|T037|PT|S22.052A|ICD10CM|Unstable burst fracture of T5-T6 vertebra, initial encounter for closed fracture|Unstable burst fracture of T5-T6 vertebra, initial encounter for closed fracture +C2835349|T037|AB|S22.052B|ICD10CM|Unstable burst fracture of T5-T6 vertebra, init for opn fx|Unstable burst fracture of T5-T6 vertebra, init for opn fx +C2835349|T037|PT|S22.052B|ICD10CM|Unstable burst fracture of T5-T6 vertebra, initial encounter for open fracture|Unstable burst fracture of T5-T6 vertebra, initial encounter for open fracture +C2835350|T037|PT|S22.052D|ICD10CM|Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing|Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing +C2835350|T037|AB|S22.052D|ICD10CM|Unstable burst fx T5-T6 vertebra, subs for fx w routn heal|Unstable burst fx T5-T6 vertebra, subs for fx w routn heal +C2835351|T037|PT|S22.052G|ICD10CM|Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing|Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing +C2835351|T037|AB|S22.052G|ICD10CM|Unstable burst fx T5-T6 vertebra, subs for fx w delay heal|Unstable burst fx T5-T6 vertebra, subs for fx w delay heal +C2835352|T037|PT|S22.052K|ICD10CM|Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion|Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion +C2835352|T037|AB|S22.052K|ICD10CM|Unstable burst fx T5-T6 vertebra, subs for fx w nonunion|Unstable burst fx T5-T6 vertebra, subs for fx w nonunion +C2835353|T037|PT|S22.052S|ICD10CM|Unstable burst fracture of T5-T6 vertebra, sequela|Unstable burst fracture of T5-T6 vertebra, sequela +C2835353|T037|AB|S22.052S|ICD10CM|Unstable burst fracture of T5-T6 vertebra, sequela|Unstable burst fracture of T5-T6 vertebra, sequela +C2835354|T037|AB|S22.058|ICD10CM|Other fracture of T5-T6 vertebra|Other fracture of T5-T6 vertebra +C2835354|T037|HT|S22.058|ICD10CM|Other fracture of T5-T6 vertebra|Other fracture of T5-T6 vertebra +C2835355|T037|AB|S22.058A|ICD10CM|Oth fracture of T5-T6 vertebra, init for clos fx|Oth fracture of T5-T6 vertebra, init for clos fx +C2835355|T037|PT|S22.058A|ICD10CM|Other fracture of T5-T6 vertebra, initial encounter for closed fracture|Other fracture of T5-T6 vertebra, initial encounter for closed fracture +C2835356|T037|AB|S22.058B|ICD10CM|Oth fracture of T5-T6 vertebra, init for opn fx|Oth fracture of T5-T6 vertebra, init for opn fx +C2835356|T037|PT|S22.058B|ICD10CM|Other fracture of T5-T6 vertebra, initial encounter for open fracture|Other fracture of T5-T6 vertebra, initial encounter for open fracture +C2835357|T037|AB|S22.058D|ICD10CM|Oth fracture of T5-T6 vertebra, subs for fx w routn heal|Oth fracture of T5-T6 vertebra, subs for fx w routn heal +C2835357|T037|PT|S22.058D|ICD10CM|Other fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing|Other fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing +C2835358|T037|AB|S22.058G|ICD10CM|Oth fracture of T5-T6 vertebra, subs for fx w delay heal|Oth fracture of T5-T6 vertebra, subs for fx w delay heal +C2835358|T037|PT|S22.058G|ICD10CM|Other fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing|Other fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing +C2835359|T037|AB|S22.058K|ICD10CM|Oth fracture of T5-T6 vertebra, subs for fx w nonunion|Oth fracture of T5-T6 vertebra, subs for fx w nonunion +C2835359|T037|PT|S22.058K|ICD10CM|Other fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion|Other fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion +C2835360|T037|PT|S22.058S|ICD10CM|Other fracture of T5-T6 vertebra, sequela|Other fracture of T5-T6 vertebra, sequela +C2835360|T037|AB|S22.058S|ICD10CM|Other fracture of T5-T6 vertebra, sequela|Other fracture of T5-T6 vertebra, sequela +C2835361|T037|AB|S22.059|ICD10CM|Unspecified fracture of T5-T6 vertebra|Unspecified fracture of T5-T6 vertebra +C2835361|T037|HT|S22.059|ICD10CM|Unspecified fracture of T5-T6 vertebra|Unspecified fracture of T5-T6 vertebra +C2835362|T037|AB|S22.059A|ICD10CM|Unsp fracture of T5-T6 vertebra, init for clos fx|Unsp fracture of T5-T6 vertebra, init for clos fx +C2835362|T037|PT|S22.059A|ICD10CM|Unspecified fracture of T5-T6 vertebra, initial encounter for closed fracture|Unspecified fracture of T5-T6 vertebra, initial encounter for closed fracture +C2835363|T037|AB|S22.059B|ICD10CM|Unsp fracture of T5-T6 vertebra, init for opn fx|Unsp fracture of T5-T6 vertebra, init for opn fx +C2835363|T037|PT|S22.059B|ICD10CM|Unspecified fracture of T5-T6 vertebra, initial encounter for open fracture|Unspecified fracture of T5-T6 vertebra, initial encounter for open fracture +C2835364|T037|AB|S22.059D|ICD10CM|Unsp fracture of T5-T6 vertebra, subs for fx w routn heal|Unsp fracture of T5-T6 vertebra, subs for fx w routn heal +C2835364|T037|PT|S22.059D|ICD10CM|Unspecified fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing|Unspecified fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing +C2835365|T037|AB|S22.059G|ICD10CM|Unsp fracture of T5-T6 vertebra, subs for fx w delay heal|Unsp fracture of T5-T6 vertebra, subs for fx w delay heal +C2835365|T037|PT|S22.059G|ICD10CM|Unspecified fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing|Unspecified fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing +C2835366|T037|AB|S22.059K|ICD10CM|Unsp fracture of T5-T6 vertebra, subs for fx w nonunion|Unsp fracture of T5-T6 vertebra, subs for fx w nonunion +C2835366|T037|PT|S22.059K|ICD10CM|Unspecified fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion|Unspecified fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion +C2835367|T037|PT|S22.059S|ICD10CM|Unspecified fracture of T5-T6 vertebra, sequela|Unspecified fracture of T5-T6 vertebra, sequela +C2835367|T037|AB|S22.059S|ICD10CM|Unspecified fracture of T5-T6 vertebra, sequela|Unspecified fracture of T5-T6 vertebra, sequela +C2835368|T037|AB|S22.06|ICD10CM|Fracture of T7-T8 vertebra|Fracture of T7-T8 vertebra +C2835368|T037|HT|S22.06|ICD10CM|Fracture of T7-T8 vertebra|Fracture of T7-T8 vertebra +C2835369|T037|AB|S22.060|ICD10CM|Wedge compression fracture of T7-T8 vertebra|Wedge compression fracture of T7-T8 vertebra +C2835369|T037|HT|S22.060|ICD10CM|Wedge compression fracture of T7-T8 vertebra|Wedge compression fracture of T7-T8 vertebra +C2835370|T037|AB|S22.060A|ICD10CM|Wedge compression fracture of T7-T8 vertebra, init|Wedge compression fracture of T7-T8 vertebra, init +C2835370|T037|PT|S22.060A|ICD10CM|Wedge compression fracture of T7-T8 vertebra, initial encounter for closed fracture|Wedge compression fracture of T7-T8 vertebra, initial encounter for closed fracture +C2835371|T037|PT|S22.060B|ICD10CM|Wedge compression fracture of T7-T8 vertebra, initial encounter for open fracture|Wedge compression fracture of T7-T8 vertebra, initial encounter for open fracture +C2835371|T037|AB|S22.060B|ICD10CM|Wedge comprsn fracture of T7-T8 vertebra, init for opn fx|Wedge comprsn fracture of T7-T8 vertebra, init for opn fx +C2835372|T037|PT|S22.060D|ICD10CM|Wedge compression fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing|Wedge compression fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing +C2835372|T037|AB|S22.060D|ICD10CM|Wedge comprsn fx T7-T8 vertebra, subs for fx w routn heal|Wedge comprsn fx T7-T8 vertebra, subs for fx w routn heal +C2835373|T037|PT|S22.060G|ICD10CM|Wedge compression fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing|Wedge compression fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing +C2835373|T037|AB|S22.060G|ICD10CM|Wedge comprsn fx T7-T8 vertebra, subs for fx w delay heal|Wedge comprsn fx T7-T8 vertebra, subs for fx w delay heal +C2835374|T037|PT|S22.060K|ICD10CM|Wedge compression fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion|Wedge compression fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion +C2835374|T037|AB|S22.060K|ICD10CM|Wedge comprsn fx T7-T8 vertebra, subs for fx w nonunion|Wedge comprsn fx T7-T8 vertebra, subs for fx w nonunion +C2835375|T037|AB|S22.060S|ICD10CM|Wedge compression fracture of T7-T8 vertebra, sequela|Wedge compression fracture of T7-T8 vertebra, sequela +C2835375|T037|PT|S22.060S|ICD10CM|Wedge compression fracture of T7-T8 vertebra, sequela|Wedge compression fracture of T7-T8 vertebra, sequela +C2835376|T037|AB|S22.061|ICD10CM|Stable burst fracture of T7-T8 vertebra|Stable burst fracture of T7-T8 vertebra +C2835376|T037|HT|S22.061|ICD10CM|Stable burst fracture of T7-T8 vertebra|Stable burst fracture of T7-T8 vertebra +C2835377|T037|AB|S22.061A|ICD10CM|Stable burst fracture of T7-T8 vertebra, init for clos fx|Stable burst fracture of T7-T8 vertebra, init for clos fx +C2835377|T037|PT|S22.061A|ICD10CM|Stable burst fracture of T7-T8 vertebra, initial encounter for closed fracture|Stable burst fracture of T7-T8 vertebra, initial encounter for closed fracture +C2835378|T037|AB|S22.061B|ICD10CM|Stable burst fracture of T7-T8 vertebra, init for opn fx|Stable burst fracture of T7-T8 vertebra, init for opn fx +C2835378|T037|PT|S22.061B|ICD10CM|Stable burst fracture of T7-T8 vertebra, initial encounter for open fracture|Stable burst fracture of T7-T8 vertebra, initial encounter for open fracture +C2835379|T037|PT|S22.061D|ICD10CM|Stable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing|Stable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing +C2835379|T037|AB|S22.061D|ICD10CM|Stable burst fx T7-T8 vertebra, subs for fx w routn heal|Stable burst fx T7-T8 vertebra, subs for fx w routn heal +C2835380|T037|PT|S22.061G|ICD10CM|Stable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing|Stable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing +C2835380|T037|AB|S22.061G|ICD10CM|Stable burst fx T7-T8 vertebra, subs for fx w delay heal|Stable burst fx T7-T8 vertebra, subs for fx w delay heal +C2835381|T037|PT|S22.061K|ICD10CM|Stable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion|Stable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion +C2835381|T037|AB|S22.061K|ICD10CM|Stable burst fx T7-T8 vertebra, subs for fx w nonunion|Stable burst fx T7-T8 vertebra, subs for fx w nonunion +C2835382|T037|PT|S22.061S|ICD10CM|Stable burst fracture of T7-T8 vertebra, sequela|Stable burst fracture of T7-T8 vertebra, sequela +C2835382|T037|AB|S22.061S|ICD10CM|Stable burst fracture of T7-T8 vertebra, sequela|Stable burst fracture of T7-T8 vertebra, sequela +C2835383|T037|AB|S22.062|ICD10CM|Unstable burst fracture of T7-T8 vertebra|Unstable burst fracture of T7-T8 vertebra +C2835383|T037|HT|S22.062|ICD10CM|Unstable burst fracture of T7-T8 vertebra|Unstable burst fracture of T7-T8 vertebra +C2835384|T037|AB|S22.062A|ICD10CM|Unstable burst fracture of T7-T8 vertebra, init for clos fx|Unstable burst fracture of T7-T8 vertebra, init for clos fx +C2835384|T037|PT|S22.062A|ICD10CM|Unstable burst fracture of T7-T8 vertebra, initial encounter for closed fracture|Unstable burst fracture of T7-T8 vertebra, initial encounter for closed fracture +C2835385|T037|AB|S22.062B|ICD10CM|Unstable burst fracture of T7-T8 vertebra, init for opn fx|Unstable burst fracture of T7-T8 vertebra, init for opn fx +C2835385|T037|PT|S22.062B|ICD10CM|Unstable burst fracture of T7-T8 vertebra, initial encounter for open fracture|Unstable burst fracture of T7-T8 vertebra, initial encounter for open fracture +C2835386|T037|PT|S22.062D|ICD10CM|Unstable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing|Unstable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing +C2835386|T037|AB|S22.062D|ICD10CM|Unstable burst fx T7-T8 vertebra, subs for fx w routn heal|Unstable burst fx T7-T8 vertebra, subs for fx w routn heal +C2835387|T037|PT|S22.062G|ICD10CM|Unstable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing|Unstable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing +C2835387|T037|AB|S22.062G|ICD10CM|Unstable burst fx T7-T8 vertebra, subs for fx w delay heal|Unstable burst fx T7-T8 vertebra, subs for fx w delay heal +C2835388|T037|PT|S22.062K|ICD10CM|Unstable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion|Unstable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion +C2835388|T037|AB|S22.062K|ICD10CM|Unstable burst fx T7-T8 vertebra, subs for fx w nonunion|Unstable burst fx T7-T8 vertebra, subs for fx w nonunion +C2835389|T037|PT|S22.062S|ICD10CM|Unstable burst fracture of T7-T8 vertebra, sequela|Unstable burst fracture of T7-T8 vertebra, sequela +C2835389|T037|AB|S22.062S|ICD10CM|Unstable burst fracture of T7-T8 vertebra, sequela|Unstable burst fracture of T7-T8 vertebra, sequela +C2835390|T037|AB|S22.068|ICD10CM|Other fracture of T7-T8 thoracic vertebra|Other fracture of T7-T8 thoracic vertebra +C2835390|T037|HT|S22.068|ICD10CM|Other fracture of T7-T8 thoracic vertebra|Other fracture of T7-T8 thoracic vertebra +C2835391|T037|AB|S22.068A|ICD10CM|Oth fracture of T7-T8 thoracic vertebra, init for clos fx|Oth fracture of T7-T8 thoracic vertebra, init for clos fx +C2835391|T037|PT|S22.068A|ICD10CM|Other fracture of T7-T8 thoracic vertebra, initial encounter for closed fracture|Other fracture of T7-T8 thoracic vertebra, initial encounter for closed fracture +C2835392|T037|AB|S22.068B|ICD10CM|Oth fracture of T7-T8 thoracic vertebra, init for opn fx|Oth fracture of T7-T8 thoracic vertebra, init for opn fx +C2835392|T037|PT|S22.068B|ICD10CM|Other fracture of T7-T8 thoracic vertebra, initial encounter for open fracture|Other fracture of T7-T8 thoracic vertebra, initial encounter for open fracture +C2835393|T037|AB|S22.068D|ICD10CM|Oth fx T7-T8 thor vertebra, subs for fx w routn heal|Oth fx T7-T8 thor vertebra, subs for fx w routn heal +C2835393|T037|PT|S22.068D|ICD10CM|Other fracture of T7-T8 thoracic vertebra, subsequent encounter for fracture with routine healing|Other fracture of T7-T8 thoracic vertebra, subsequent encounter for fracture with routine healing +C2835394|T037|AB|S22.068G|ICD10CM|Oth fx T7-T8 thor vertebra, subs for fx w delay heal|Oth fx T7-T8 thor vertebra, subs for fx w delay heal +C2835394|T037|PT|S22.068G|ICD10CM|Other fracture of T7-T8 thoracic vertebra, subsequent encounter for fracture with delayed healing|Other fracture of T7-T8 thoracic vertebra, subsequent encounter for fracture with delayed healing +C2835395|T037|AB|S22.068K|ICD10CM|Oth fracture of T7-T8 thor vertebra, subs for fx w nonunion|Oth fracture of T7-T8 thor vertebra, subs for fx w nonunion +C2835395|T037|PT|S22.068K|ICD10CM|Other fracture of T7-T8 thoracic vertebra, subsequent encounter for fracture with nonunion|Other fracture of T7-T8 thoracic vertebra, subsequent encounter for fracture with nonunion +C2835396|T037|AB|S22.068S|ICD10CM|Other fracture of T7-T8 thoracic vertebra, sequela|Other fracture of T7-T8 thoracic vertebra, sequela +C2835396|T037|PT|S22.068S|ICD10CM|Other fracture of T7-T8 thoracic vertebra, sequela|Other fracture of T7-T8 thoracic vertebra, sequela +C2835397|T037|AB|S22.069|ICD10CM|Unspecified fracture of T7-T8 vertebra|Unspecified fracture of T7-T8 vertebra +C2835397|T037|HT|S22.069|ICD10CM|Unspecified fracture of T7-T8 vertebra|Unspecified fracture of T7-T8 vertebra +C2835398|T037|AB|S22.069A|ICD10CM|Unsp fracture of T7-T8 vertebra, init for clos fx|Unsp fracture of T7-T8 vertebra, init for clos fx +C2835398|T037|PT|S22.069A|ICD10CM|Unspecified fracture of T7-T8 vertebra, initial encounter for closed fracture|Unspecified fracture of T7-T8 vertebra, initial encounter for closed fracture +C2835399|T037|AB|S22.069B|ICD10CM|Unsp fracture of T7-T8 vertebra, init for opn fx|Unsp fracture of T7-T8 vertebra, init for opn fx +C2835399|T037|PT|S22.069B|ICD10CM|Unspecified fracture of T7-T8 vertebra, initial encounter for open fracture|Unspecified fracture of T7-T8 vertebra, initial encounter for open fracture +C2835400|T037|AB|S22.069D|ICD10CM|Unsp fracture of T7-T8 vertebra, subs for fx w routn heal|Unsp fracture of T7-T8 vertebra, subs for fx w routn heal +C2835400|T037|PT|S22.069D|ICD10CM|Unspecified fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing|Unspecified fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing +C2835401|T037|AB|S22.069G|ICD10CM|Unsp fracture of T7-T8 vertebra, subs for fx w delay heal|Unsp fracture of T7-T8 vertebra, subs for fx w delay heal +C2835401|T037|PT|S22.069G|ICD10CM|Unspecified fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing|Unspecified fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing +C2835402|T037|AB|S22.069K|ICD10CM|Unsp fracture of T7-T8 vertebra, subs for fx w nonunion|Unsp fracture of T7-T8 vertebra, subs for fx w nonunion +C2835402|T037|PT|S22.069K|ICD10CM|Unspecified fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion|Unspecified fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion +C2835403|T037|AB|S22.069S|ICD10CM|Unspecified fracture of T7-T8 vertebra, sequela|Unspecified fracture of T7-T8 vertebra, sequela +C2835403|T037|PT|S22.069S|ICD10CM|Unspecified fracture of T7-T8 vertebra, sequela|Unspecified fracture of T7-T8 vertebra, sequela +C2835404|T037|AB|S22.07|ICD10CM|Fracture of T9-T10 vertebra|Fracture of T9-T10 vertebra +C2835404|T037|HT|S22.07|ICD10CM|Fracture of T9-T10 vertebra|Fracture of T9-T10 vertebra +C2835405|T037|AB|S22.070|ICD10CM|Wedge compression fracture of T9-T10 vertebra|Wedge compression fracture of T9-T10 vertebra +C2835405|T037|HT|S22.070|ICD10CM|Wedge compression fracture of T9-T10 vertebra|Wedge compression fracture of T9-T10 vertebra +C2835406|T037|AB|S22.070A|ICD10CM|Wedge compression fracture of T9-T10 vertebra, init|Wedge compression fracture of T9-T10 vertebra, init +C2835406|T037|PT|S22.070A|ICD10CM|Wedge compression fracture of T9-T10 vertebra, initial encounter for closed fracture|Wedge compression fracture of T9-T10 vertebra, initial encounter for closed fracture +C2835407|T037|PT|S22.070B|ICD10CM|Wedge compression fracture of T9-T10 vertebra, initial encounter for open fracture|Wedge compression fracture of T9-T10 vertebra, initial encounter for open fracture +C2835407|T037|AB|S22.070B|ICD10CM|Wedge comprsn fracture of T9-T10 vertebra, init for opn fx|Wedge comprsn fracture of T9-T10 vertebra, init for opn fx +C2835408|T037|AB|S22.070D|ICD10CM|Wedge comprsn fx T9-T10 vertebra, subs for fx w routn heal|Wedge comprsn fx T9-T10 vertebra, subs for fx w routn heal +C2835409|T037|AB|S22.070G|ICD10CM|Wedge comprsn fx T9-T10 vertebra, subs for fx w delay heal|Wedge comprsn fx T9-T10 vertebra, subs for fx w delay heal +C2835410|T037|PT|S22.070K|ICD10CM|Wedge compression fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion|Wedge compression fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion +C2835410|T037|AB|S22.070K|ICD10CM|Wedge comprsn fx T9-T10 vertebra, subs for fx w nonunion|Wedge comprsn fx T9-T10 vertebra, subs for fx w nonunion +C2835411|T037|AB|S22.070S|ICD10CM|Wedge compression fracture of T9-T10 vertebra, sequela|Wedge compression fracture of T9-T10 vertebra, sequela +C2835411|T037|PT|S22.070S|ICD10CM|Wedge compression fracture of T9-T10 vertebra, sequela|Wedge compression fracture of T9-T10 vertebra, sequela +C2835412|T037|AB|S22.071|ICD10CM|Stable burst fracture of T9-T10 vertebra|Stable burst fracture of T9-T10 vertebra +C2835412|T037|HT|S22.071|ICD10CM|Stable burst fracture of T9-T10 vertebra|Stable burst fracture of T9-T10 vertebra +C2835413|T037|AB|S22.071A|ICD10CM|Stable burst fracture of T9-T10 vertebra, init for clos fx|Stable burst fracture of T9-T10 vertebra, init for clos fx +C2835413|T037|PT|S22.071A|ICD10CM|Stable burst fracture of T9-T10 vertebra, initial encounter for closed fracture|Stable burst fracture of T9-T10 vertebra, initial encounter for closed fracture +C2835414|T037|AB|S22.071B|ICD10CM|Stable burst fracture of T9-T10 vertebra, init for opn fx|Stable burst fracture of T9-T10 vertebra, init for opn fx +C2835414|T037|PT|S22.071B|ICD10CM|Stable burst fracture of T9-T10 vertebra, initial encounter for open fracture|Stable burst fracture of T9-T10 vertebra, initial encounter for open fracture +C2835415|T037|PT|S22.071D|ICD10CM|Stable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing|Stable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing +C2835415|T037|AB|S22.071D|ICD10CM|Stable burst fx T9-T10 vertebra, subs for fx w routn heal|Stable burst fx T9-T10 vertebra, subs for fx w routn heal +C2835416|T037|PT|S22.071G|ICD10CM|Stable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing|Stable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing +C2835416|T037|AB|S22.071G|ICD10CM|Stable burst fx T9-T10 vertebra, subs for fx w delay heal|Stable burst fx T9-T10 vertebra, subs for fx w delay heal +C2835417|T037|PT|S22.071K|ICD10CM|Stable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion|Stable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion +C2835417|T037|AB|S22.071K|ICD10CM|Stable burst fx T9-T10 vertebra, subs for fx w nonunion|Stable burst fx T9-T10 vertebra, subs for fx w nonunion +C2835418|T037|PT|S22.071S|ICD10CM|Stable burst fracture of T9-T10 vertebra, sequela|Stable burst fracture of T9-T10 vertebra, sequela +C2835418|T037|AB|S22.071S|ICD10CM|Stable burst fracture of T9-T10 vertebra, sequela|Stable burst fracture of T9-T10 vertebra, sequela +C2835419|T037|AB|S22.072|ICD10CM|Unstable burst fracture of T9-T10 vertebra|Unstable burst fracture of T9-T10 vertebra +C2835419|T037|HT|S22.072|ICD10CM|Unstable burst fracture of T9-T10 vertebra|Unstable burst fracture of T9-T10 vertebra +C2835420|T037|AB|S22.072A|ICD10CM|Unstable burst fracture of T9-T10 vertebra, init for clos fx|Unstable burst fracture of T9-T10 vertebra, init for clos fx +C2835420|T037|PT|S22.072A|ICD10CM|Unstable burst fracture of T9-T10 vertebra, initial encounter for closed fracture|Unstable burst fracture of T9-T10 vertebra, initial encounter for closed fracture +C2835421|T037|AB|S22.072B|ICD10CM|Unstable burst fracture of T9-T10 vertebra, init for opn fx|Unstable burst fracture of T9-T10 vertebra, init for opn fx +C2835421|T037|PT|S22.072B|ICD10CM|Unstable burst fracture of T9-T10 vertebra, initial encounter for open fracture|Unstable burst fracture of T9-T10 vertebra, initial encounter for open fracture +C2835422|T037|PT|S22.072D|ICD10CM|Unstable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing|Unstable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing +C2835422|T037|AB|S22.072D|ICD10CM|Unstable burst fx T9-T10 vertebra, subs for fx w routn heal|Unstable burst fx T9-T10 vertebra, subs for fx w routn heal +C2835423|T037|PT|S22.072G|ICD10CM|Unstable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing|Unstable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing +C2835423|T037|AB|S22.072G|ICD10CM|Unstable burst fx T9-T10 vertebra, subs for fx w delay heal|Unstable burst fx T9-T10 vertebra, subs for fx w delay heal +C2835424|T037|PT|S22.072K|ICD10CM|Unstable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion|Unstable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion +C2835424|T037|AB|S22.072K|ICD10CM|Unstable burst fx T9-T10 vertebra, subs for fx w nonunion|Unstable burst fx T9-T10 vertebra, subs for fx w nonunion +C2835425|T037|PT|S22.072S|ICD10CM|Unstable burst fracture of T9-T10 vertebra, sequela|Unstable burst fracture of T9-T10 vertebra, sequela +C2835425|T037|AB|S22.072S|ICD10CM|Unstable burst fracture of T9-T10 vertebra, sequela|Unstable burst fracture of T9-T10 vertebra, sequela +C2835426|T037|AB|S22.078|ICD10CM|Other fracture of T9-T10 vertebra|Other fracture of T9-T10 vertebra +C2835426|T037|HT|S22.078|ICD10CM|Other fracture of T9-T10 vertebra|Other fracture of T9-T10 vertebra +C2835427|T037|AB|S22.078A|ICD10CM|Oth fracture of T9-T10 vertebra, init for clos fx|Oth fracture of T9-T10 vertebra, init for clos fx +C2835427|T037|PT|S22.078A|ICD10CM|Other fracture of T9-T10 vertebra, initial encounter for closed fracture|Other fracture of T9-T10 vertebra, initial encounter for closed fracture +C2835428|T037|AB|S22.078B|ICD10CM|Oth fracture of T9-T10 vertebra, init for opn fx|Oth fracture of T9-T10 vertebra, init for opn fx +C2835428|T037|PT|S22.078B|ICD10CM|Other fracture of T9-T10 vertebra, initial encounter for open fracture|Other fracture of T9-T10 vertebra, initial encounter for open fracture +C2835429|T037|AB|S22.078D|ICD10CM|Oth fracture of T9-T10 vertebra, subs for fx w routn heal|Oth fracture of T9-T10 vertebra, subs for fx w routn heal +C2835429|T037|PT|S22.078D|ICD10CM|Other fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing|Other fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing +C2835430|T037|AB|S22.078G|ICD10CM|Oth fracture of T9-T10 vertebra, subs for fx w delay heal|Oth fracture of T9-T10 vertebra, subs for fx w delay heal +C2835430|T037|PT|S22.078G|ICD10CM|Other fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing|Other fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing +C2835431|T037|AB|S22.078K|ICD10CM|Oth fracture of T9-T10 vertebra, subs for fx w nonunion|Oth fracture of T9-T10 vertebra, subs for fx w nonunion +C2835431|T037|PT|S22.078K|ICD10CM|Other fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion|Other fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion +C2835432|T037|PT|S22.078S|ICD10CM|Other fracture of T9-T10 vertebra, sequela|Other fracture of T9-T10 vertebra, sequela +C2835432|T037|AB|S22.078S|ICD10CM|Other fracture of T9-T10 vertebra, sequela|Other fracture of T9-T10 vertebra, sequela +C2835433|T037|AB|S22.079|ICD10CM|Unspecified fracture of T9-T10 vertebra|Unspecified fracture of T9-T10 vertebra +C2835433|T037|HT|S22.079|ICD10CM|Unspecified fracture of T9-T10 vertebra|Unspecified fracture of T9-T10 vertebra +C2835434|T037|AB|S22.079A|ICD10CM|Unsp fracture of T9-T10 vertebra, init for clos fx|Unsp fracture of T9-T10 vertebra, init for clos fx +C2835434|T037|PT|S22.079A|ICD10CM|Unspecified fracture of T9-T10 vertebra, initial encounter for closed fracture|Unspecified fracture of T9-T10 vertebra, initial encounter for closed fracture +C2835435|T037|AB|S22.079B|ICD10CM|Unsp fracture of T9-T10 vertebra, init for opn fx|Unsp fracture of T9-T10 vertebra, init for opn fx +C2835435|T037|PT|S22.079B|ICD10CM|Unspecified fracture of T9-T10 vertebra, initial encounter for open fracture|Unspecified fracture of T9-T10 vertebra, initial encounter for open fracture +C2835436|T037|AB|S22.079D|ICD10CM|Unsp fracture of T9-T10 vertebra, subs for fx w routn heal|Unsp fracture of T9-T10 vertebra, subs for fx w routn heal +C2835436|T037|PT|S22.079D|ICD10CM|Unspecified fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing|Unspecified fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing +C2835437|T037|AB|S22.079G|ICD10CM|Unsp fracture of T9-T10 vertebra, subs for fx w delay heal|Unsp fracture of T9-T10 vertebra, subs for fx w delay heal +C2835437|T037|PT|S22.079G|ICD10CM|Unspecified fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing|Unspecified fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing +C2835438|T037|AB|S22.079K|ICD10CM|Unsp fracture of T9-T10 vertebra, subs for fx w nonunion|Unsp fracture of T9-T10 vertebra, subs for fx w nonunion +C2835438|T037|PT|S22.079K|ICD10CM|Unspecified fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion|Unspecified fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion +C2835439|T037|PT|S22.079S|ICD10CM|Unspecified fracture of T9-T10 vertebra, sequela|Unspecified fracture of T9-T10 vertebra, sequela +C2835439|T037|AB|S22.079S|ICD10CM|Unspecified fracture of T9-T10 vertebra, sequela|Unspecified fracture of T9-T10 vertebra, sequela +C2835440|T037|AB|S22.08|ICD10CM|Fracture of T11-T12 vertebra|Fracture of T11-T12 vertebra +C2835440|T037|HT|S22.08|ICD10CM|Fracture of T11-T12 vertebra|Fracture of T11-T12 vertebra +C2835441|T037|AB|S22.080|ICD10CM|Wedge compression fracture of T11-T12 vertebra|Wedge compression fracture of T11-T12 vertebra +C2835441|T037|HT|S22.080|ICD10CM|Wedge compression fracture of T11-T12 vertebra|Wedge compression fracture of T11-T12 vertebra +C2835442|T037|AB|S22.080A|ICD10CM|Wedge compression fracture of T11-T12 vertebra, init|Wedge compression fracture of T11-T12 vertebra, init +C2835442|T037|PT|S22.080A|ICD10CM|Wedge compression fracture of T11-T12 vertebra, initial encounter for closed fracture|Wedge compression fracture of T11-T12 vertebra, initial encounter for closed fracture +C2835443|T037|PT|S22.080B|ICD10CM|Wedge compression fracture of T11-T12 vertebra, initial encounter for open fracture|Wedge compression fracture of T11-T12 vertebra, initial encounter for open fracture +C2835443|T037|AB|S22.080B|ICD10CM|Wedge comprsn fracture of T11-T12 vertebra, init for opn fx|Wedge comprsn fracture of T11-T12 vertebra, init for opn fx +C2835444|T037|AB|S22.080D|ICD10CM|Wedge comprsn fx T11-T12 vertebra, subs for fx w routn heal|Wedge comprsn fx T11-T12 vertebra, subs for fx w routn heal +C2835445|T037|AB|S22.080G|ICD10CM|Wedge comprsn fx T11-T12 vertebra, subs for fx w delay heal|Wedge comprsn fx T11-T12 vertebra, subs for fx w delay heal +C2835446|T037|PT|S22.080K|ICD10CM|Wedge compression fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion|Wedge compression fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion +C2835446|T037|AB|S22.080K|ICD10CM|Wedge comprsn fx T11-T12 vertebra, subs for fx w nonunion|Wedge comprsn fx T11-T12 vertebra, subs for fx w nonunion +C2835447|T037|AB|S22.080S|ICD10CM|Wedge compression fracture of T11-T12 vertebra, sequela|Wedge compression fracture of T11-T12 vertebra, sequela +C2835447|T037|PT|S22.080S|ICD10CM|Wedge compression fracture of T11-T12 vertebra, sequela|Wedge compression fracture of T11-T12 vertebra, sequela +C2835448|T037|AB|S22.081|ICD10CM|Stable burst fracture of T11-T12 vertebra|Stable burst fracture of T11-T12 vertebra +C2835448|T037|HT|S22.081|ICD10CM|Stable burst fracture of T11-T12 vertebra|Stable burst fracture of T11-T12 vertebra +C2835449|T037|AB|S22.081A|ICD10CM|Stable burst fracture of T11-T12 vertebra, init for clos fx|Stable burst fracture of T11-T12 vertebra, init for clos fx +C2835449|T037|PT|S22.081A|ICD10CM|Stable burst fracture of T11-T12 vertebra, initial encounter for closed fracture|Stable burst fracture of T11-T12 vertebra, initial encounter for closed fracture +C2835450|T037|AB|S22.081B|ICD10CM|Stable burst fracture of T11-T12 vertebra, init for opn fx|Stable burst fracture of T11-T12 vertebra, init for opn fx +C2835450|T037|PT|S22.081B|ICD10CM|Stable burst fracture of T11-T12 vertebra, initial encounter for open fracture|Stable burst fracture of T11-T12 vertebra, initial encounter for open fracture +C2835451|T037|PT|S22.081D|ICD10CM|Stable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing|Stable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing +C2835451|T037|AB|S22.081D|ICD10CM|Stable burst fx T11-T12 vertebra, subs for fx w routn heal|Stable burst fx T11-T12 vertebra, subs for fx w routn heal +C2835452|T037|PT|S22.081G|ICD10CM|Stable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing|Stable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing +C2835452|T037|AB|S22.081G|ICD10CM|Stable burst fx T11-T12 vertebra, subs for fx w delay heal|Stable burst fx T11-T12 vertebra, subs for fx w delay heal +C2835453|T037|PT|S22.081K|ICD10CM|Stable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion|Stable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion +C2835453|T037|AB|S22.081K|ICD10CM|Stable burst fx T11-T12 vertebra, subs for fx w nonunion|Stable burst fx T11-T12 vertebra, subs for fx w nonunion +C2835454|T037|PT|S22.081S|ICD10CM|Stable burst fracture of T11-T12 vertebra, sequela|Stable burst fracture of T11-T12 vertebra, sequela +C2835454|T037|AB|S22.081S|ICD10CM|Stable burst fracture of T11-T12 vertebra, sequela|Stable burst fracture of T11-T12 vertebra, sequela +C2835455|T037|AB|S22.082|ICD10CM|Unstable burst fracture of T11-T12 vertebra|Unstable burst fracture of T11-T12 vertebra +C2835455|T037|HT|S22.082|ICD10CM|Unstable burst fracture of T11-T12 vertebra|Unstable burst fracture of T11-T12 vertebra +C2835456|T037|AB|S22.082A|ICD10CM|Unstable burst fracture of T11-T12 vertebra, init|Unstable burst fracture of T11-T12 vertebra, init +C2835456|T037|PT|S22.082A|ICD10CM|Unstable burst fracture of T11-T12 vertebra, initial encounter for closed fracture|Unstable burst fracture of T11-T12 vertebra, initial encounter for closed fracture +C2835457|T037|AB|S22.082B|ICD10CM|Unstable burst fracture of T11-T12 vertebra, init for opn fx|Unstable burst fracture of T11-T12 vertebra, init for opn fx +C2835457|T037|PT|S22.082B|ICD10CM|Unstable burst fracture of T11-T12 vertebra, initial encounter for open fracture|Unstable burst fracture of T11-T12 vertebra, initial encounter for open fracture +C2835458|T037|PT|S22.082D|ICD10CM|Unstable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing|Unstable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing +C2835458|T037|AB|S22.082D|ICD10CM|Unstable burst fx T11-T12 vertebra, subs for fx w routn heal|Unstable burst fx T11-T12 vertebra, subs for fx w routn heal +C2835459|T037|PT|S22.082G|ICD10CM|Unstable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing|Unstable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing +C2835459|T037|AB|S22.082G|ICD10CM|Unstable burst fx T11-T12 vertebra, subs for fx w delay heal|Unstable burst fx T11-T12 vertebra, subs for fx w delay heal +C2835460|T037|PT|S22.082K|ICD10CM|Unstable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion|Unstable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion +C2835460|T037|AB|S22.082K|ICD10CM|Unstable burst fx T11-T12 vertebra, subs for fx w nonunion|Unstable burst fx T11-T12 vertebra, subs for fx w nonunion +C2835461|T037|PT|S22.082S|ICD10CM|Unstable burst fracture of T11-T12 vertebra, sequela|Unstable burst fracture of T11-T12 vertebra, sequela +C2835461|T037|AB|S22.082S|ICD10CM|Unstable burst fracture of T11-T12 vertebra, sequela|Unstable burst fracture of T11-T12 vertebra, sequela +C2835462|T037|AB|S22.088|ICD10CM|Other fracture of T11-T12 vertebra|Other fracture of T11-T12 vertebra +C2835462|T037|HT|S22.088|ICD10CM|Other fracture of T11-T12 vertebra|Other fracture of T11-T12 vertebra +C2835463|T037|AB|S22.088A|ICD10CM|Oth fracture of T11-T12 vertebra, init for clos fx|Oth fracture of T11-T12 vertebra, init for clos fx +C2835463|T037|PT|S22.088A|ICD10CM|Other fracture of T11-T12 vertebra, initial encounter for closed fracture|Other fracture of T11-T12 vertebra, initial encounter for closed fracture +C2835464|T037|AB|S22.088B|ICD10CM|Oth fracture of T11-T12 vertebra, init for opn fx|Oth fracture of T11-T12 vertebra, init for opn fx +C2835464|T037|PT|S22.088B|ICD10CM|Other fracture of T11-T12 vertebra, initial encounter for open fracture|Other fracture of T11-T12 vertebra, initial encounter for open fracture +C2835465|T037|AB|S22.088D|ICD10CM|Oth fracture of T11-T12 vertebra, subs for fx w routn heal|Oth fracture of T11-T12 vertebra, subs for fx w routn heal +C2835465|T037|PT|S22.088D|ICD10CM|Other fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing|Other fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing +C2835466|T037|AB|S22.088G|ICD10CM|Oth fracture of T11-T12 vertebra, subs for fx w delay heal|Oth fracture of T11-T12 vertebra, subs for fx w delay heal +C2835466|T037|PT|S22.088G|ICD10CM|Other fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing|Other fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing +C2835467|T037|AB|S22.088K|ICD10CM|Oth fracture of T11-T12 vertebra, subs for fx w nonunion|Oth fracture of T11-T12 vertebra, subs for fx w nonunion +C2835467|T037|PT|S22.088K|ICD10CM|Other fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion|Other fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion +C2835468|T037|PT|S22.088S|ICD10CM|Other fracture of T11-T12 vertebra, sequela|Other fracture of T11-T12 vertebra, sequela +C2835468|T037|AB|S22.088S|ICD10CM|Other fracture of T11-T12 vertebra, sequela|Other fracture of T11-T12 vertebra, sequela +C2835469|T037|AB|S22.089|ICD10CM|Unspecified fracture of T11-T12 vertebra|Unspecified fracture of T11-T12 vertebra +C2835469|T037|HT|S22.089|ICD10CM|Unspecified fracture of T11-T12 vertebra|Unspecified fracture of T11-T12 vertebra +C2835470|T037|AB|S22.089A|ICD10CM|Unsp fracture of T11-T12 vertebra, init for clos fx|Unsp fracture of T11-T12 vertebra, init for clos fx +C2835470|T037|PT|S22.089A|ICD10CM|Unspecified fracture of T11-T12 vertebra, initial encounter for closed fracture|Unspecified fracture of T11-T12 vertebra, initial encounter for closed fracture +C2835471|T037|AB|S22.089B|ICD10CM|Unsp fracture of T11-T12 vertebra, init for opn fx|Unsp fracture of T11-T12 vertebra, init for opn fx +C2835471|T037|PT|S22.089B|ICD10CM|Unspecified fracture of T11-T12 vertebra, initial encounter for open fracture|Unspecified fracture of T11-T12 vertebra, initial encounter for open fracture +C2835472|T037|AB|S22.089D|ICD10CM|Unsp fracture of T11-T12 vertebra, subs for fx w routn heal|Unsp fracture of T11-T12 vertebra, subs for fx w routn heal +C2835472|T037|PT|S22.089D|ICD10CM|Unspecified fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing|Unspecified fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing +C2835473|T037|AB|S22.089G|ICD10CM|Unsp fracture of T11-T12 vertebra, subs for fx w delay heal|Unsp fracture of T11-T12 vertebra, subs for fx w delay heal +C2835473|T037|PT|S22.089G|ICD10CM|Unspecified fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing|Unspecified fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing +C2835474|T037|AB|S22.089K|ICD10CM|Unsp fracture of T11-T12 vertebra, subs for fx w nonunion|Unsp fracture of T11-T12 vertebra, subs for fx w nonunion +C2835474|T037|PT|S22.089K|ICD10CM|Unspecified fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion|Unspecified fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion +C2835475|T037|PT|S22.089S|ICD10CM|Unspecified fracture of T11-T12 vertebra, sequela|Unspecified fracture of T11-T12 vertebra, sequela +C2835475|T037|AB|S22.089S|ICD10CM|Unspecified fracture of T11-T12 vertebra, sequela|Unspecified fracture of T11-T12 vertebra, sequela +C0452081|T037|PT|S22.1|ICD10|Multiple fractures of thoracic spine|Multiple fractures of thoracic spine +C0238436|T037|PT|S22.2|ICD10|Fracture of sternum|Fracture of sternum +C0238436|T037|HT|S22.2|ICD10CM|Fracture of sternum|Fracture of sternum +C0238436|T037|AB|S22.2|ICD10CM|Fracture of sternum|Fracture of sternum +C2835476|T037|AB|S22.20|ICD10CM|Unspecified fracture of sternum|Unspecified fracture of sternum +C2835476|T037|HT|S22.20|ICD10CM|Unspecified fracture of sternum|Unspecified fracture of sternum +C2835477|T037|AB|S22.20XA|ICD10CM|Unsp fracture of sternum, init encntr for closed fracture|Unsp fracture of sternum, init encntr for closed fracture +C2835477|T037|PT|S22.20XA|ICD10CM|Unspecified fracture of sternum, initial encounter for closed fracture|Unspecified fracture of sternum, initial encounter for closed fracture +C2835478|T037|AB|S22.20XB|ICD10CM|Unsp fracture of sternum, init encntr for open fracture|Unsp fracture of sternum, init encntr for open fracture +C2835478|T037|PT|S22.20XB|ICD10CM|Unspecified fracture of sternum, initial encounter for open fracture|Unspecified fracture of sternum, initial encounter for open fracture +C2835479|T037|AB|S22.20XD|ICD10CM|Unsp fracture of sternum, subs for fx w routn heal|Unsp fracture of sternum, subs for fx w routn heal +C2835479|T037|PT|S22.20XD|ICD10CM|Unspecified fracture of sternum, subsequent encounter for fracture with routine healing|Unspecified fracture of sternum, subsequent encounter for fracture with routine healing +C2835480|T037|AB|S22.20XG|ICD10CM|Unsp fracture of sternum, subs for fx w delay heal|Unsp fracture of sternum, subs for fx w delay heal +C2835480|T037|PT|S22.20XG|ICD10CM|Unspecified fracture of sternum, subsequent encounter for fracture with delayed healing|Unspecified fracture of sternum, subsequent encounter for fracture with delayed healing +C2835481|T037|AB|S22.20XK|ICD10CM|Unsp fracture of sternum, subs for fx w nonunion|Unsp fracture of sternum, subs for fx w nonunion +C2835481|T037|PT|S22.20XK|ICD10CM|Unspecified fracture of sternum, subsequent encounter for fracture with nonunion|Unspecified fracture of sternum, subsequent encounter for fracture with nonunion +C2835482|T037|AB|S22.20XS|ICD10CM|Unspecified fracture of sternum, sequela|Unspecified fracture of sternum, sequela +C2835482|T037|PT|S22.20XS|ICD10CM|Unspecified fracture of sternum, sequela|Unspecified fracture of sternum, sequela +C1397724|T037|AB|S22.21|ICD10CM|Fracture of manubrium|Fracture of manubrium +C1397724|T037|HT|S22.21|ICD10CM|Fracture of manubrium|Fracture of manubrium +C2835483|T037|AB|S22.21XA|ICD10CM|Fracture of manubrium, initial encounter for closed fracture|Fracture of manubrium, initial encounter for closed fracture +C2835483|T037|PT|S22.21XA|ICD10CM|Fracture of manubrium, initial encounter for closed fracture|Fracture of manubrium, initial encounter for closed fracture +C2835484|T037|AB|S22.21XB|ICD10CM|Fracture of manubrium, initial encounter for open fracture|Fracture of manubrium, initial encounter for open fracture +C2835484|T037|PT|S22.21XB|ICD10CM|Fracture of manubrium, initial encounter for open fracture|Fracture of manubrium, initial encounter for open fracture +C2835485|T037|AB|S22.21XD|ICD10CM|Fracture of manubrium, subs for fx w routn heal|Fracture of manubrium, subs for fx w routn heal +C2835485|T037|PT|S22.21XD|ICD10CM|Fracture of manubrium, subsequent encounter for fracture with routine healing|Fracture of manubrium, subsequent encounter for fracture with routine healing +C2835486|T037|AB|S22.21XG|ICD10CM|Fracture of manubrium, subs for fx w delay heal|Fracture of manubrium, subs for fx w delay heal +C2835486|T037|PT|S22.21XG|ICD10CM|Fracture of manubrium, subsequent encounter for fracture with delayed healing|Fracture of manubrium, subsequent encounter for fracture with delayed healing +C2835487|T037|AB|S22.21XK|ICD10CM|Fracture of manubrium, subs encntr for fracture w nonunion|Fracture of manubrium, subs encntr for fracture w nonunion +C2835487|T037|PT|S22.21XK|ICD10CM|Fracture of manubrium, subsequent encounter for fracture with nonunion|Fracture of manubrium, subsequent encounter for fracture with nonunion +C2835488|T037|AB|S22.21XS|ICD10CM|Fracture of manubrium, sequela|Fracture of manubrium, sequela +C2835488|T037|PT|S22.21XS|ICD10CM|Fracture of manubrium, sequela|Fracture of manubrium, sequela +C2835489|T037|AB|S22.22|ICD10CM|Fracture of body of sternum|Fracture of body of sternum +C2835489|T037|HT|S22.22|ICD10CM|Fracture of body of sternum|Fracture of body of sternum +C2835490|T037|AB|S22.22XA|ICD10CM|Fracture of body of sternum, init encntr for closed fracture|Fracture of body of sternum, init encntr for closed fracture +C2835490|T037|PT|S22.22XA|ICD10CM|Fracture of body of sternum, initial encounter for closed fracture|Fracture of body of sternum, initial encounter for closed fracture +C2835491|T037|AB|S22.22XB|ICD10CM|Fracture of body of sternum, init encntr for open fracture|Fracture of body of sternum, init encntr for open fracture +C2835491|T037|PT|S22.22XB|ICD10CM|Fracture of body of sternum, initial encounter for open fracture|Fracture of body of sternum, initial encounter for open fracture +C2835492|T037|AB|S22.22XD|ICD10CM|Fracture of body of sternum, subs for fx w routn heal|Fracture of body of sternum, subs for fx w routn heal +C2835492|T037|PT|S22.22XD|ICD10CM|Fracture of body of sternum, subsequent encounter for fracture with routine healing|Fracture of body of sternum, subsequent encounter for fracture with routine healing +C2835493|T037|AB|S22.22XG|ICD10CM|Fracture of body of sternum, subs for fx w delay heal|Fracture of body of sternum, subs for fx w delay heal +C2835493|T037|PT|S22.22XG|ICD10CM|Fracture of body of sternum, subsequent encounter for fracture with delayed healing|Fracture of body of sternum, subsequent encounter for fracture with delayed healing +C2835494|T037|AB|S22.22XK|ICD10CM|Fracture of body of sternum, subs for fx w nonunion|Fracture of body of sternum, subs for fx w nonunion +C2835494|T037|PT|S22.22XK|ICD10CM|Fracture of body of sternum, subsequent encounter for fracture with nonunion|Fracture of body of sternum, subsequent encounter for fracture with nonunion +C2835495|T037|AB|S22.22XS|ICD10CM|Fracture of body of sternum, sequela|Fracture of body of sternum, sequela +C2835495|T037|PT|S22.22XS|ICD10CM|Fracture of body of sternum, sequela|Fracture of body of sternum, sequela +C2835496|T037|AB|S22.23|ICD10CM|Sternal manubrial dissociation|Sternal manubrial dissociation +C2835496|T037|HT|S22.23|ICD10CM|Sternal manubrial dissociation|Sternal manubrial dissociation +C2835497|T037|AB|S22.23XA|ICD10CM|Sternal manubrial dissociation, init for clos fx|Sternal manubrial dissociation, init for clos fx +C2835497|T037|PT|S22.23XA|ICD10CM|Sternal manubrial dissociation, initial encounter for closed fracture|Sternal manubrial dissociation, initial encounter for closed fracture +C2835498|T037|AB|S22.23XB|ICD10CM|Sternal manubrial dissociation, init for opn fx|Sternal manubrial dissociation, init for opn fx +C2835498|T037|PT|S22.23XB|ICD10CM|Sternal manubrial dissociation, initial encounter for open fracture|Sternal manubrial dissociation, initial encounter for open fracture +C2835499|T037|AB|S22.23XD|ICD10CM|Sternal manubrial dissociation, subs for fx w routn heal|Sternal manubrial dissociation, subs for fx w routn heal +C2835499|T037|PT|S22.23XD|ICD10CM|Sternal manubrial dissociation, subsequent encounter for fracture with routine healing|Sternal manubrial dissociation, subsequent encounter for fracture with routine healing +C2835500|T037|AB|S22.23XG|ICD10CM|Sternal manubrial dissociation, subs for fx w delay heal|Sternal manubrial dissociation, subs for fx w delay heal +C2835500|T037|PT|S22.23XG|ICD10CM|Sternal manubrial dissociation, subsequent encounter for fracture with delayed healing|Sternal manubrial dissociation, subsequent encounter for fracture with delayed healing +C2835501|T037|AB|S22.23XK|ICD10CM|Sternal manubrial dissociation, subs for fx w nonunion|Sternal manubrial dissociation, subs for fx w nonunion +C2835501|T037|PT|S22.23XK|ICD10CM|Sternal manubrial dissociation, subsequent encounter for fracture with nonunion|Sternal manubrial dissociation, subsequent encounter for fracture with nonunion +C2835502|T037|AB|S22.23XS|ICD10CM|Sternal manubrial dissociation, sequela|Sternal manubrial dissociation, sequela +C2835502|T037|PT|S22.23XS|ICD10CM|Sternal manubrial dissociation, sequela|Sternal manubrial dissociation, sequela +C1397798|T037|AB|S22.24|ICD10CM|Fracture of xiphoid process|Fracture of xiphoid process +C1397798|T037|HT|S22.24|ICD10CM|Fracture of xiphoid process|Fracture of xiphoid process +C2835503|T037|AB|S22.24XA|ICD10CM|Fracture of xiphoid process, init encntr for closed fracture|Fracture of xiphoid process, init encntr for closed fracture +C2835503|T037|PT|S22.24XA|ICD10CM|Fracture of xiphoid process, initial encounter for closed fracture|Fracture of xiphoid process, initial encounter for closed fracture +C2835504|T037|AB|S22.24XB|ICD10CM|Fracture of xiphoid process, init encntr for open fracture|Fracture of xiphoid process, init encntr for open fracture +C2835504|T037|PT|S22.24XB|ICD10CM|Fracture of xiphoid process, initial encounter for open fracture|Fracture of xiphoid process, initial encounter for open fracture +C2835505|T037|AB|S22.24XD|ICD10CM|Fracture of xiphoid process, subs for fx w routn heal|Fracture of xiphoid process, subs for fx w routn heal +C2835505|T037|PT|S22.24XD|ICD10CM|Fracture of xiphoid process, subsequent encounter for fracture with routine healing|Fracture of xiphoid process, subsequent encounter for fracture with routine healing +C2835506|T037|AB|S22.24XG|ICD10CM|Fracture of xiphoid process, subs for fx w delay heal|Fracture of xiphoid process, subs for fx w delay heal +C2835506|T037|PT|S22.24XG|ICD10CM|Fracture of xiphoid process, subsequent encounter for fracture with delayed healing|Fracture of xiphoid process, subsequent encounter for fracture with delayed healing +C2835507|T037|AB|S22.24XK|ICD10CM|Fracture of xiphoid process, subs for fx w nonunion|Fracture of xiphoid process, subs for fx w nonunion +C2835507|T037|PT|S22.24XK|ICD10CM|Fracture of xiphoid process, subsequent encounter for fracture with nonunion|Fracture of xiphoid process, subsequent encounter for fracture with nonunion +C2835508|T037|AB|S22.24XS|ICD10CM|Fracture of xiphoid process, sequela|Fracture of xiphoid process, sequela +C2835508|T037|PT|S22.24XS|ICD10CM|Fracture of xiphoid process, sequela|Fracture of xiphoid process, sequela +C0272559|T037|HT|S22.3|ICD10CM|Fracture of one rib|Fracture of one rib +C0272559|T037|AB|S22.3|ICD10CM|Fracture of one rib|Fracture of one rib +C0035522|T037|PT|S22.3|ICD10|Fracture of rib|Fracture of rib +C2835509|T037|AB|S22.31|ICD10CM|Fracture of one rib, right side|Fracture of one rib, right side +C2835509|T037|HT|S22.31|ICD10CM|Fracture of one rib, right side|Fracture of one rib, right side +C2977804|T037|AB|S22.31XA|ICD10CM|Fracture of one rib, right side, init for clos fx|Fracture of one rib, right side, init for clos fx +C2977804|T037|PT|S22.31XA|ICD10CM|Fracture of one rib, right side, initial encounter for closed fracture|Fracture of one rib, right side, initial encounter for closed fracture +C2977805|T037|AB|S22.31XB|ICD10CM|Fracture of one rib, right side, init for opn fx|Fracture of one rib, right side, init for opn fx +C2977805|T037|PT|S22.31XB|ICD10CM|Fracture of one rib, right side, initial encounter for open fracture|Fracture of one rib, right side, initial encounter for open fracture +C2977806|T037|AB|S22.31XD|ICD10CM|Fracture of one rib, right side, subs for fx w routn heal|Fracture of one rib, right side, subs for fx w routn heal +C2977806|T037|PT|S22.31XD|ICD10CM|Fracture of one rib, right side, subsequent encounter for fracture with routine healing|Fracture of one rib, right side, subsequent encounter for fracture with routine healing +C2977807|T037|AB|S22.31XG|ICD10CM|Fracture of one rib, right side, subs for fx w delay heal|Fracture of one rib, right side, subs for fx w delay heal +C2977807|T037|PT|S22.31XG|ICD10CM|Fracture of one rib, right side, subsequent encounter for fracture with delayed healing|Fracture of one rib, right side, subsequent encounter for fracture with delayed healing +C2977808|T037|AB|S22.31XK|ICD10CM|Fracture of one rib, right side, subs for fx w nonunion|Fracture of one rib, right side, subs for fx w nonunion +C2977808|T037|PT|S22.31XK|ICD10CM|Fracture of one rib, right side, subsequent encounter for fracture with nonunion|Fracture of one rib, right side, subsequent encounter for fracture with nonunion +C2977809|T037|AB|S22.31XS|ICD10CM|Fracture of one rib, right side, sequela|Fracture of one rib, right side, sequela +C2977809|T037|PT|S22.31XS|ICD10CM|Fracture of one rib, right side, sequela|Fracture of one rib, right side, sequela +C2835516|T037|AB|S22.32|ICD10CM|Fracture of one rib, left side|Fracture of one rib, left side +C2835516|T037|HT|S22.32|ICD10CM|Fracture of one rib, left side|Fracture of one rib, left side +C2977810|T037|AB|S22.32XA|ICD10CM|Fracture of one rib, left side, init for clos fx|Fracture of one rib, left side, init for clos fx +C2977810|T037|PT|S22.32XA|ICD10CM|Fracture of one rib, left side, initial encounter for closed fracture|Fracture of one rib, left side, initial encounter for closed fracture +C2977811|T037|AB|S22.32XB|ICD10CM|Fracture of one rib, left side, init for opn fx|Fracture of one rib, left side, init for opn fx +C2977811|T037|PT|S22.32XB|ICD10CM|Fracture of one rib, left side, initial encounter for open fracture|Fracture of one rib, left side, initial encounter for open fracture +C2977812|T037|AB|S22.32XD|ICD10CM|Fracture of one rib, left side, subs for fx w routn heal|Fracture of one rib, left side, subs for fx w routn heal +C2977812|T037|PT|S22.32XD|ICD10CM|Fracture of one rib, left side, subsequent encounter for fracture with routine healing|Fracture of one rib, left side, subsequent encounter for fracture with routine healing +C2977813|T037|AB|S22.32XG|ICD10CM|Fracture of one rib, left side, subs for fx w delay heal|Fracture of one rib, left side, subs for fx w delay heal +C2977813|T037|PT|S22.32XG|ICD10CM|Fracture of one rib, left side, subsequent encounter for fracture with delayed healing|Fracture of one rib, left side, subsequent encounter for fracture with delayed healing +C2977814|T037|AB|S22.32XK|ICD10CM|Fracture of one rib, left side, subs for fx w nonunion|Fracture of one rib, left side, subs for fx w nonunion +C2977814|T037|PT|S22.32XK|ICD10CM|Fracture of one rib, left side, subsequent encounter for fracture with nonunion|Fracture of one rib, left side, subsequent encounter for fracture with nonunion +C2977815|T037|AB|S22.32XS|ICD10CM|Fracture of one rib, left side, sequela|Fracture of one rib, left side, sequela +C2977815|T037|PT|S22.32XS|ICD10CM|Fracture of one rib, left side, sequela|Fracture of one rib, left side, sequela +C2835523|T037|AB|S22.39|ICD10CM|Fracture of one rib, unspecified side|Fracture of one rib, unspecified side +C2835523|T037|HT|S22.39|ICD10CM|Fracture of one rib, unspecified side|Fracture of one rib, unspecified side +C2977816|T037|AB|S22.39XA|ICD10CM|Fracture of one rib, unsp side, init for clos fx|Fracture of one rib, unsp side, init for clos fx +C2977816|T037|PT|S22.39XA|ICD10CM|Fracture of one rib, unspecified side, initial encounter for closed fracture|Fracture of one rib, unspecified side, initial encounter for closed fracture +C2977817|T037|AB|S22.39XB|ICD10CM|Fracture of one rib, unsp side, init for opn fx|Fracture of one rib, unsp side, init for opn fx +C2977817|T037|PT|S22.39XB|ICD10CM|Fracture of one rib, unspecified side, initial encounter for open fracture|Fracture of one rib, unspecified side, initial encounter for open fracture +C2977818|T037|AB|S22.39XD|ICD10CM|Fracture of one rib, unsp side, subs for fx w routn heal|Fracture of one rib, unsp side, subs for fx w routn heal +C2977818|T037|PT|S22.39XD|ICD10CM|Fracture of one rib, unspecified side, subsequent encounter for fracture with routine healing|Fracture of one rib, unspecified side, subsequent encounter for fracture with routine healing +C2977819|T037|AB|S22.39XG|ICD10CM|Fracture of one rib, unsp side, subs for fx w delay heal|Fracture of one rib, unsp side, subs for fx w delay heal +C2977819|T037|PT|S22.39XG|ICD10CM|Fracture of one rib, unspecified side, subsequent encounter for fracture with delayed healing|Fracture of one rib, unspecified side, subsequent encounter for fracture with delayed healing +C2977820|T037|AB|S22.39XK|ICD10CM|Fracture of one rib, unsp side, subs for fx w nonunion|Fracture of one rib, unsp side, subs for fx w nonunion +C2977820|T037|PT|S22.39XK|ICD10CM|Fracture of one rib, unspecified side, subsequent encounter for fracture with nonunion|Fracture of one rib, unspecified side, subsequent encounter for fracture with nonunion +C2977821|T037|AB|S22.39XS|ICD10CM|Fracture of one rib, unspecified side, sequela|Fracture of one rib, unspecified side, sequela +C2977821|T037|PT|S22.39XS|ICD10CM|Fracture of one rib, unspecified side, sequela|Fracture of one rib, unspecified side, sequela +C2835530|T037|ET|S22.4|ICD10CM|Fractures of two or more ribs|Fractures of two or more ribs +C0272567|T037|PT|S22.4|ICD10|Multiple fractures of ribs|Multiple fractures of ribs +C0272567|T037|HT|S22.4|ICD10CM|Multiple fractures of ribs|Multiple fractures of ribs +C0272567|T037|AB|S22.4|ICD10CM|Multiple fractures of ribs|Multiple fractures of ribs +C2835531|T037|AB|S22.41|ICD10CM|Multiple fractures of ribs, right side|Multiple fractures of ribs, right side +C2835531|T037|HT|S22.41|ICD10CM|Multiple fractures of ribs, right side|Multiple fractures of ribs, right side +C2835532|T037|AB|S22.41XA|ICD10CM|Multiple fractures of ribs, right side, init for clos fx|Multiple fractures of ribs, right side, init for clos fx +C2835532|T037|PT|S22.41XA|ICD10CM|Multiple fractures of ribs, right side, initial encounter for closed fracture|Multiple fractures of ribs, right side, initial encounter for closed fracture +C2835533|T037|AB|S22.41XB|ICD10CM|Multiple fractures of ribs, right side, init for opn fx|Multiple fractures of ribs, right side, init for opn fx +C2835533|T037|PT|S22.41XB|ICD10CM|Multiple fractures of ribs, right side, initial encounter for open fracture|Multiple fractures of ribs, right side, initial encounter for open fracture +C2835534|T037|PT|S22.41XD|ICD10CM|Multiple fractures of ribs, right side, subsequent encounter for fracture with routine healing|Multiple fractures of ribs, right side, subsequent encounter for fracture with routine healing +C2835534|T037|AB|S22.41XD|ICD10CM|Multiple fx of ribs, right side, subs for fx w routn heal|Multiple fx of ribs, right side, subs for fx w routn heal +C2835535|T037|PT|S22.41XG|ICD10CM|Multiple fractures of ribs, right side, subsequent encounter for fracture with delayed healing|Multiple fractures of ribs, right side, subsequent encounter for fracture with delayed healing +C2835535|T037|AB|S22.41XG|ICD10CM|Multiple fx of ribs, right side, subs for fx w delay heal|Multiple fx of ribs, right side, subs for fx w delay heal +C2835536|T037|PT|S22.41XK|ICD10CM|Multiple fractures of ribs, right side, subsequent encounter for fracture with nonunion|Multiple fractures of ribs, right side, subsequent encounter for fracture with nonunion +C2835536|T037|AB|S22.41XK|ICD10CM|Multiple fx of ribs, right side, subs for fx w nonunion|Multiple fx of ribs, right side, subs for fx w nonunion +C2835537|T037|AB|S22.41XS|ICD10CM|Multiple fractures of ribs, right side, sequela|Multiple fractures of ribs, right side, sequela +C2835537|T037|PT|S22.41XS|ICD10CM|Multiple fractures of ribs, right side, sequela|Multiple fractures of ribs, right side, sequela +C2835538|T037|AB|S22.42|ICD10CM|Multiple fractures of ribs, left side|Multiple fractures of ribs, left side +C2835538|T037|HT|S22.42|ICD10CM|Multiple fractures of ribs, left side|Multiple fractures of ribs, left side +C2835539|T037|AB|S22.42XA|ICD10CM|Multiple fractures of ribs, left side, init for clos fx|Multiple fractures of ribs, left side, init for clos fx +C2835539|T037|PT|S22.42XA|ICD10CM|Multiple fractures of ribs, left side, initial encounter for closed fracture|Multiple fractures of ribs, left side, initial encounter for closed fracture +C2835540|T037|AB|S22.42XB|ICD10CM|Multiple fractures of ribs, left side, init for opn fx|Multiple fractures of ribs, left side, init for opn fx +C2835540|T037|PT|S22.42XB|ICD10CM|Multiple fractures of ribs, left side, initial encounter for open fracture|Multiple fractures of ribs, left side, initial encounter for open fracture +C2835541|T037|PT|S22.42XD|ICD10CM|Multiple fractures of ribs, left side, subsequent encounter for fracture with routine healing|Multiple fractures of ribs, left side, subsequent encounter for fracture with routine healing +C2835541|T037|AB|S22.42XD|ICD10CM|Multiple fx of ribs, left side, subs for fx w routn heal|Multiple fx of ribs, left side, subs for fx w routn heal +C2835542|T037|PT|S22.42XG|ICD10CM|Multiple fractures of ribs, left side, subsequent encounter for fracture with delayed healing|Multiple fractures of ribs, left side, subsequent encounter for fracture with delayed healing +C2835542|T037|AB|S22.42XG|ICD10CM|Multiple fx of ribs, left side, subs for fx w delay heal|Multiple fx of ribs, left side, subs for fx w delay heal +C2835543|T037|PT|S22.42XK|ICD10CM|Multiple fractures of ribs, left side, subsequent encounter for fracture with nonunion|Multiple fractures of ribs, left side, subsequent encounter for fracture with nonunion +C2835543|T037|AB|S22.42XK|ICD10CM|Multiple fx of ribs, left side, subs for fx w nonunion|Multiple fx of ribs, left side, subs for fx w nonunion +C2835544|T037|AB|S22.42XS|ICD10CM|Multiple fractures of ribs, left side, sequela|Multiple fractures of ribs, left side, sequela +C2835544|T037|PT|S22.42XS|ICD10CM|Multiple fractures of ribs, left side, sequela|Multiple fractures of ribs, left side, sequela +C2835545|T037|AB|S22.43|ICD10CM|Multiple fractures of ribs, bilateral|Multiple fractures of ribs, bilateral +C2835545|T037|HT|S22.43|ICD10CM|Multiple fractures of ribs, bilateral|Multiple fractures of ribs, bilateral +C2835546|T037|AB|S22.43XA|ICD10CM|Multiple fractures of ribs, bilateral, init for clos fx|Multiple fractures of ribs, bilateral, init for clos fx +C2835546|T037|PT|S22.43XA|ICD10CM|Multiple fractures of ribs, bilateral, initial encounter for closed fracture|Multiple fractures of ribs, bilateral, initial encounter for closed fracture +C2835547|T037|AB|S22.43XB|ICD10CM|Multiple fractures of ribs, bilateral, init for opn fx|Multiple fractures of ribs, bilateral, init for opn fx +C2835547|T037|PT|S22.43XB|ICD10CM|Multiple fractures of ribs, bilateral, initial encounter for open fracture|Multiple fractures of ribs, bilateral, initial encounter for open fracture +C2835548|T037|AB|S22.43XD|ICD10CM|Multiple fractures of ribs, bi, subs for fx w routn heal|Multiple fractures of ribs, bi, subs for fx w routn heal +C2835548|T037|PT|S22.43XD|ICD10CM|Multiple fractures of ribs, bilateral, subsequent encounter for fracture with routine healing|Multiple fractures of ribs, bilateral, subsequent encounter for fracture with routine healing +C2835549|T037|AB|S22.43XG|ICD10CM|Multiple fractures of ribs, bi, subs for fx w delay heal|Multiple fractures of ribs, bi, subs for fx w delay heal +C2835549|T037|PT|S22.43XG|ICD10CM|Multiple fractures of ribs, bilateral, subsequent encounter for fracture with delayed healing|Multiple fractures of ribs, bilateral, subsequent encounter for fracture with delayed healing +C2835550|T037|AB|S22.43XK|ICD10CM|Multiple fractures of ribs, bi, subs for fx w nonunion|Multiple fractures of ribs, bi, subs for fx w nonunion +C2835550|T037|PT|S22.43XK|ICD10CM|Multiple fractures of ribs, bilateral, subsequent encounter for fracture with nonunion|Multiple fractures of ribs, bilateral, subsequent encounter for fracture with nonunion +C2835551|T037|AB|S22.43XS|ICD10CM|Multiple fractures of ribs, bilateral, sequela|Multiple fractures of ribs, bilateral, sequela +C2835551|T037|PT|S22.43XS|ICD10CM|Multiple fractures of ribs, bilateral, sequela|Multiple fractures of ribs, bilateral, sequela +C2835552|T037|AB|S22.49|ICD10CM|Multiple fractures of ribs, unspecified side|Multiple fractures of ribs, unspecified side +C2835552|T037|HT|S22.49|ICD10CM|Multiple fractures of ribs, unspecified side|Multiple fractures of ribs, unspecified side +C2835553|T037|AB|S22.49XA|ICD10CM|Multiple fractures of ribs, unsp side, init for clos fx|Multiple fractures of ribs, unsp side, init for clos fx +C2835553|T037|PT|S22.49XA|ICD10CM|Multiple fractures of ribs, unspecified side, initial encounter for closed fracture|Multiple fractures of ribs, unspecified side, initial encounter for closed fracture +C2835554|T037|AB|S22.49XB|ICD10CM|Multiple fractures of ribs, unsp side, init for opn fx|Multiple fractures of ribs, unsp side, init for opn fx +C2835554|T037|PT|S22.49XB|ICD10CM|Multiple fractures of ribs, unspecified side, initial encounter for open fracture|Multiple fractures of ribs, unspecified side, initial encounter for open fracture +C2835555|T037|PT|S22.49XD|ICD10CM|Multiple fractures of ribs, unspecified side, subsequent encounter for fracture with routine healing|Multiple fractures of ribs, unspecified side, subsequent encounter for fracture with routine healing +C2835555|T037|AB|S22.49XD|ICD10CM|Multiple fx of ribs, unsp side, subs for fx w routn heal|Multiple fx of ribs, unsp side, subs for fx w routn heal +C2835556|T037|PT|S22.49XG|ICD10CM|Multiple fractures of ribs, unspecified side, subsequent encounter for fracture with delayed healing|Multiple fractures of ribs, unspecified side, subsequent encounter for fracture with delayed healing +C2835556|T037|AB|S22.49XG|ICD10CM|Multiple fx of ribs, unsp side, subs for fx w delay heal|Multiple fx of ribs, unsp side, subs for fx w delay heal +C2835557|T037|PT|S22.49XK|ICD10CM|Multiple fractures of ribs, unspecified side, subsequent encounter for fracture with nonunion|Multiple fractures of ribs, unspecified side, subsequent encounter for fracture with nonunion +C2835557|T037|AB|S22.49XK|ICD10CM|Multiple fx of ribs, unsp side, subs for fx w nonunion|Multiple fx of ribs, unsp side, subs for fx w nonunion +C2835558|T037|AB|S22.49XS|ICD10CM|Multiple fractures of ribs, unspecified side, sequela|Multiple fractures of ribs, unspecified side, sequela +C2835558|T037|PT|S22.49XS|ICD10CM|Multiple fractures of ribs, unspecified side, sequela|Multiple fractures of ribs, unspecified side, sequela +C0016196|T037|HT|S22.5|ICD10CM|Flail chest|Flail chest +C0016196|T037|AB|S22.5|ICD10CM|Flail chest|Flail chest +C0016196|T037|PT|S22.5|ICD10|Flail chest|Flail chest +C2977822|T047|AB|S22.5XXA|ICD10CM|Flail chest, initial encounter for closed fracture|Flail chest, initial encounter for closed fracture +C2977822|T047|PT|S22.5XXA|ICD10CM|Flail chest, initial encounter for closed fracture|Flail chest, initial encounter for closed fracture +C2977823|T047|AB|S22.5XXB|ICD10CM|Flail chest, initial encounter for open fracture|Flail chest, initial encounter for open fracture +C2977823|T047|PT|S22.5XXB|ICD10CM|Flail chest, initial encounter for open fracture|Flail chest, initial encounter for open fracture +C2977824|T047|AB|S22.5XXD|ICD10CM|Flail chest, subs encntr for fracture with routine healing|Flail chest, subs encntr for fracture with routine healing +C2977824|T047|PT|S22.5XXD|ICD10CM|Flail chest, subsequent encounter for fracture with routine healing|Flail chest, subsequent encounter for fracture with routine healing +C2977825|T047|AB|S22.5XXG|ICD10CM|Flail chest, subs encntr for fracture with delayed healing|Flail chest, subs encntr for fracture with delayed healing +C2977825|T047|PT|S22.5XXG|ICD10CM|Flail chest, subsequent encounter for fracture with delayed healing|Flail chest, subsequent encounter for fracture with delayed healing +C2977826|T047|AB|S22.5XXK|ICD10CM|Flail chest, subsequent encounter for fracture with nonunion|Flail chest, subsequent encounter for fracture with nonunion +C2977826|T047|PT|S22.5XXK|ICD10CM|Flail chest, subsequent encounter for fracture with nonunion|Flail chest, subsequent encounter for fracture with nonunion +C2977827|T047|PT|S22.5XXS|ICD10CM|Flail chest, sequela|Flail chest, sequela +C2977827|T047|AB|S22.5XXS|ICD10CM|Flail chest, sequela|Flail chest, sequela +C0478236|T037|PT|S22.8|ICD10|Fracture of other parts of bony thorax|Fracture of other parts of bony thorax +C0478237|T037|PT|S22.9|ICD10|Fracture of bony thorax, part unspecified|Fracture of bony thorax, part unspecified +C0478237|T037|HT|S22.9|ICD10CM|Fracture of bony thorax, part unspecified|Fracture of bony thorax, part unspecified +C0478237|T037|AB|S22.9|ICD10CM|Fracture of bony thorax, part unspecified|Fracture of bony thorax, part unspecified +C2835587|T037|AB|S22.9XXA|ICD10CM|Fracture of bony thorax, part unsp, init for clos fx|Fracture of bony thorax, part unsp, init for clos fx +C2835587|T037|PT|S22.9XXA|ICD10CM|Fracture of bony thorax, part unspecified, initial encounter for closed fracture|Fracture of bony thorax, part unspecified, initial encounter for closed fracture +C2835588|T037|AB|S22.9XXB|ICD10CM|Fracture of bony thorax, part unsp, init for opn fx|Fracture of bony thorax, part unsp, init for opn fx +C2835588|T037|PT|S22.9XXB|ICD10CM|Fracture of bony thorax, part unspecified, initial encounter for open fracture|Fracture of bony thorax, part unspecified, initial encounter for open fracture +C2835589|T037|AB|S22.9XXD|ICD10CM|Fracture of bony thorax, part unsp, subs for fx w routn heal|Fracture of bony thorax, part unsp, subs for fx w routn heal +C2835589|T037|PT|S22.9XXD|ICD10CM|Fracture of bony thorax, part unspecified, subsequent encounter for fracture with routine healing|Fracture of bony thorax, part unspecified, subsequent encounter for fracture with routine healing +C2835590|T037|AB|S22.9XXG|ICD10CM|Fracture of bony thorax, part unsp, subs for fx w delay heal|Fracture of bony thorax, part unsp, subs for fx w delay heal +C2835590|T037|PT|S22.9XXG|ICD10CM|Fracture of bony thorax, part unspecified, subsequent encounter for fracture with delayed healing|Fracture of bony thorax, part unspecified, subsequent encounter for fracture with delayed healing +C2835591|T037|AB|S22.9XXK|ICD10CM|Fracture of bony thorax, part unsp, subs for fx w nonunion|Fracture of bony thorax, part unsp, subs for fx w nonunion +C2835591|T037|PT|S22.9XXK|ICD10CM|Fracture of bony thorax, part unspecified, subsequent encounter for fracture with nonunion|Fracture of bony thorax, part unspecified, subsequent encounter for fracture with nonunion +C2835592|T037|AB|S22.9XXS|ICD10CM|Fracture of bony thorax, part unspecified, sequela|Fracture of bony thorax, part unspecified, sequela +C2835592|T037|PT|S22.9XXS|ICD10CM|Fracture of bony thorax, part unspecified, sequela|Fracture of bony thorax, part unspecified, sequela +C4290325|T037|ET|S23|ICD10CM|avulsion of joint or ligament of thorax|avulsion of joint or ligament of thorax +C2835600|T037|AB|S23|ICD10CM|Dislocation and sprain of joints and ligaments of thorax|Dislocation and sprain of joints and ligaments of thorax +C2835600|T037|HT|S23|ICD10CM|Dislocation and sprain of joints and ligaments of thorax|Dislocation and sprain of joints and ligaments of thorax +C0495829|T037|HT|S23|ICD10|Dislocation, sprain and strain of joints and ligaments of thorax|Dislocation, sprain and strain of joints and ligaments of thorax +C4290326|T037|ET|S23|ICD10CM|laceration of cartilage, joint or ligament of thorax|laceration of cartilage, joint or ligament of thorax +C4290327|T037|ET|S23|ICD10CM|sprain of cartilage, joint or ligament of thorax|sprain of cartilage, joint or ligament of thorax +C4290328|T037|ET|S23|ICD10CM|traumatic hemarthrosis of joint or ligament of thorax|traumatic hemarthrosis of joint or ligament of thorax +C4290329|T037|ET|S23|ICD10CM|traumatic rupture of joint or ligament of thorax|traumatic rupture of joint or ligament of thorax +C4290330|T037|ET|S23|ICD10CM|traumatic subluxation of joint or ligament of thorax|traumatic subluxation of joint or ligament of thorax +C4290331|T037|ET|S23|ICD10CM|traumatic tear of joint or ligament of thorax|traumatic tear of joint or ligament of thorax +C0451890|T037|PT|S23.0|ICD10|Traumatic rupture of thoracic intervertebral disc|Traumatic rupture of thoracic intervertebral disc +C0451890|T037|HT|S23.0|ICD10CM|Traumatic rupture of thoracic intervertebral disc|Traumatic rupture of thoracic intervertebral disc +C0451890|T037|AB|S23.0|ICD10CM|Traumatic rupture of thoracic intervertebral disc|Traumatic rupture of thoracic intervertebral disc +C2835601|T037|AB|S23.0XXA|ICD10CM|Traumatic rupture of thoracic intervertebral disc, init|Traumatic rupture of thoracic intervertebral disc, init +C2835601|T037|PT|S23.0XXA|ICD10CM|Traumatic rupture of thoracic intervertebral disc, initial encounter|Traumatic rupture of thoracic intervertebral disc, initial encounter +C2835602|T037|AB|S23.0XXD|ICD10CM|Traumatic rupture of thoracic intervertebral disc, subs|Traumatic rupture of thoracic intervertebral disc, subs +C2835602|T037|PT|S23.0XXD|ICD10CM|Traumatic rupture of thoracic intervertebral disc, subsequent encounter|Traumatic rupture of thoracic intervertebral disc, subsequent encounter +C2835603|T037|AB|S23.0XXS|ICD10CM|Traumatic rupture of thoracic intervertebral disc, sequela|Traumatic rupture of thoracic intervertebral disc, sequela +C2835603|T037|PT|S23.0XXS|ICD10CM|Traumatic rupture of thoracic intervertebral disc, sequela|Traumatic rupture of thoracic intervertebral disc, sequela +C0434545|T037|PT|S23.1|ICD10|Dislocation of thoracic vertebra|Dislocation of thoracic vertebra +C2835604|T037|AB|S23.1|ICD10CM|Subluxation and dislocation of thoracic vertebra|Subluxation and dislocation of thoracic vertebra +C2835604|T037|HT|S23.1|ICD10CM|Subluxation and dislocation of thoracic vertebra|Subluxation and dislocation of thoracic vertebra +C2835605|T037|AB|S23.10|ICD10CM|Subluxation and dislocation of unspecified thoracic vertebra|Subluxation and dislocation of unspecified thoracic vertebra +C2835605|T037|HT|S23.10|ICD10CM|Subluxation and dislocation of unspecified thoracic vertebra|Subluxation and dislocation of unspecified thoracic vertebra +C2835606|T037|AB|S23.100|ICD10CM|Subluxation of unspecified thoracic vertebra|Subluxation of unspecified thoracic vertebra +C2835606|T037|HT|S23.100|ICD10CM|Subluxation of unspecified thoracic vertebra|Subluxation of unspecified thoracic vertebra +C2835607|T037|AB|S23.100A|ICD10CM|Subluxation of unspecified thoracic vertebra, init encntr|Subluxation of unspecified thoracic vertebra, init encntr +C2835607|T037|PT|S23.100A|ICD10CM|Subluxation of unspecified thoracic vertebra, initial encounter|Subluxation of unspecified thoracic vertebra, initial encounter +C2835608|T037|AB|S23.100D|ICD10CM|Subluxation of unspecified thoracic vertebra, subs encntr|Subluxation of unspecified thoracic vertebra, subs encntr +C2835608|T037|PT|S23.100D|ICD10CM|Subluxation of unspecified thoracic vertebra, subsequent encounter|Subluxation of unspecified thoracic vertebra, subsequent encounter +C2835609|T037|PT|S23.100S|ICD10CM|Subluxation of unspecified thoracic vertebra, sequela|Subluxation of unspecified thoracic vertebra, sequela +C2835609|T037|AB|S23.100S|ICD10CM|Subluxation of unspecified thoracic vertebra, sequela|Subluxation of unspecified thoracic vertebra, sequela +C2835610|T037|AB|S23.101|ICD10CM|Dislocation of unspecified thoracic vertebra|Dislocation of unspecified thoracic vertebra +C2835610|T037|HT|S23.101|ICD10CM|Dislocation of unspecified thoracic vertebra|Dislocation of unspecified thoracic vertebra +C2835611|T037|AB|S23.101A|ICD10CM|Dislocation of unspecified thoracic vertebra, init encntr|Dislocation of unspecified thoracic vertebra, init encntr +C2835611|T037|PT|S23.101A|ICD10CM|Dislocation of unspecified thoracic vertebra, initial encounter|Dislocation of unspecified thoracic vertebra, initial encounter +C2835612|T037|AB|S23.101D|ICD10CM|Dislocation of unspecified thoracic vertebra, subs encntr|Dislocation of unspecified thoracic vertebra, subs encntr +C2835612|T037|PT|S23.101D|ICD10CM|Dislocation of unspecified thoracic vertebra, subsequent encounter|Dislocation of unspecified thoracic vertebra, subsequent encounter +C2835613|T037|PT|S23.101S|ICD10CM|Dislocation of unspecified thoracic vertebra, sequela|Dislocation of unspecified thoracic vertebra, sequela +C2835613|T037|AB|S23.101S|ICD10CM|Dislocation of unspecified thoracic vertebra, sequela|Dislocation of unspecified thoracic vertebra, sequela +C2835614|T037|AB|S23.11|ICD10CM|Subluxation and dislocation of T1/T2 thoracic vertebra|Subluxation and dislocation of T1/T2 thoracic vertebra +C2835614|T037|HT|S23.11|ICD10CM|Subluxation and dislocation of T1/T2 thoracic vertebra|Subluxation and dislocation of T1/T2 thoracic vertebra +C2835615|T037|AB|S23.110|ICD10CM|Subluxation of T1/T2 thoracic vertebra|Subluxation of T1/T2 thoracic vertebra +C2835615|T037|HT|S23.110|ICD10CM|Subluxation of T1/T2 thoracic vertebra|Subluxation of T1/T2 thoracic vertebra +C2835616|T037|PT|S23.110A|ICD10CM|Subluxation of T1/T2 thoracic vertebra, initial encounter|Subluxation of T1/T2 thoracic vertebra, initial encounter +C2835616|T037|AB|S23.110A|ICD10CM|Subluxation of T1/T2 thoracic vertebra, initial encounter|Subluxation of T1/T2 thoracic vertebra, initial encounter +C2835617|T037|AB|S23.110D|ICD10CM|Subluxation of T1/T2 thoracic vertebra, subsequent encounter|Subluxation of T1/T2 thoracic vertebra, subsequent encounter +C2835617|T037|PT|S23.110D|ICD10CM|Subluxation of T1/T2 thoracic vertebra, subsequent encounter|Subluxation of T1/T2 thoracic vertebra, subsequent encounter +C2835618|T037|PT|S23.110S|ICD10CM|Subluxation of T1/T2 thoracic vertebra, sequela|Subluxation of T1/T2 thoracic vertebra, sequela +C2835618|T037|AB|S23.110S|ICD10CM|Subluxation of T1/T2 thoracic vertebra, sequela|Subluxation of T1/T2 thoracic vertebra, sequela +C2835619|T037|AB|S23.111|ICD10CM|Dislocation of T1/T2 thoracic vertebra|Dislocation of T1/T2 thoracic vertebra +C2835619|T037|HT|S23.111|ICD10CM|Dislocation of T1/T2 thoracic vertebra|Dislocation of T1/T2 thoracic vertebra +C2835620|T037|PT|S23.111A|ICD10CM|Dislocation of T1/T2 thoracic vertebra, initial encounter|Dislocation of T1/T2 thoracic vertebra, initial encounter +C2835620|T037|AB|S23.111A|ICD10CM|Dislocation of T1/T2 thoracic vertebra, initial encounter|Dislocation of T1/T2 thoracic vertebra, initial encounter +C2835621|T037|AB|S23.111D|ICD10CM|Dislocation of T1/T2 thoracic vertebra, subsequent encounter|Dislocation of T1/T2 thoracic vertebra, subsequent encounter +C2835621|T037|PT|S23.111D|ICD10CM|Dislocation of T1/T2 thoracic vertebra, subsequent encounter|Dislocation of T1/T2 thoracic vertebra, subsequent encounter +C2835622|T037|PT|S23.111S|ICD10CM|Dislocation of T1/T2 thoracic vertebra, sequela|Dislocation of T1/T2 thoracic vertebra, sequela +C2835622|T037|AB|S23.111S|ICD10CM|Dislocation of T1/T2 thoracic vertebra, sequela|Dislocation of T1/T2 thoracic vertebra, sequela +C2835623|T037|AB|S23.12|ICD10CM|Subluxation and dislocation of T2/T3-T3/T4 thoracic vertebra|Subluxation and dislocation of T2/T3-T3/T4 thoracic vertebra +C2835623|T037|HT|S23.12|ICD10CM|Subluxation and dislocation of T2/T3-T3/T4 thoracic vertebra|Subluxation and dislocation of T2/T3-T3/T4 thoracic vertebra +C2835624|T037|AB|S23.120|ICD10CM|Subluxation of T2/T3 thoracic vertebra|Subluxation of T2/T3 thoracic vertebra +C2835624|T037|HT|S23.120|ICD10CM|Subluxation of T2/T3 thoracic vertebra|Subluxation of T2/T3 thoracic vertebra +C2835625|T037|PT|S23.120A|ICD10CM|Subluxation of T2/T3 thoracic vertebra, initial encounter|Subluxation of T2/T3 thoracic vertebra, initial encounter +C2835625|T037|AB|S23.120A|ICD10CM|Subluxation of T2/T3 thoracic vertebra, initial encounter|Subluxation of T2/T3 thoracic vertebra, initial encounter +C2835626|T037|AB|S23.120D|ICD10CM|Subluxation of T2/T3 thoracic vertebra, subsequent encounter|Subluxation of T2/T3 thoracic vertebra, subsequent encounter +C2835626|T037|PT|S23.120D|ICD10CM|Subluxation of T2/T3 thoracic vertebra, subsequent encounter|Subluxation of T2/T3 thoracic vertebra, subsequent encounter +C2835627|T037|PT|S23.120S|ICD10CM|Subluxation of T2/T3 thoracic vertebra, sequela|Subluxation of T2/T3 thoracic vertebra, sequela +C2835627|T037|AB|S23.120S|ICD10CM|Subluxation of T2/T3 thoracic vertebra, sequela|Subluxation of T2/T3 thoracic vertebra, sequela +C2835628|T037|AB|S23.121|ICD10CM|Dislocation of T2/T3 thoracic vertebra|Dislocation of T2/T3 thoracic vertebra +C2835628|T037|HT|S23.121|ICD10CM|Dislocation of T2/T3 thoracic vertebra|Dislocation of T2/T3 thoracic vertebra +C2835629|T037|PT|S23.121A|ICD10CM|Dislocation of T2/T3 thoracic vertebra, initial encounter|Dislocation of T2/T3 thoracic vertebra, initial encounter +C2835629|T037|AB|S23.121A|ICD10CM|Dislocation of T2/T3 thoracic vertebra, initial encounter|Dislocation of T2/T3 thoracic vertebra, initial encounter +C2835630|T037|AB|S23.121D|ICD10CM|Dislocation of T2/T3 thoracic vertebra, subsequent encounter|Dislocation of T2/T3 thoracic vertebra, subsequent encounter +C2835630|T037|PT|S23.121D|ICD10CM|Dislocation of T2/T3 thoracic vertebra, subsequent encounter|Dislocation of T2/T3 thoracic vertebra, subsequent encounter +C2835631|T037|PT|S23.121S|ICD10CM|Dislocation of T2/T3 thoracic vertebra, sequela|Dislocation of T2/T3 thoracic vertebra, sequela +C2835631|T037|AB|S23.121S|ICD10CM|Dislocation of T2/T3 thoracic vertebra, sequela|Dislocation of T2/T3 thoracic vertebra, sequela +C2835632|T037|AB|S23.122|ICD10CM|Subluxation of T3/T4 thoracic vertebra|Subluxation of T3/T4 thoracic vertebra +C2835632|T037|HT|S23.122|ICD10CM|Subluxation of T3/T4 thoracic vertebra|Subluxation of T3/T4 thoracic vertebra +C2835633|T037|PT|S23.122A|ICD10CM|Subluxation of T3/T4 thoracic vertebra, initial encounter|Subluxation of T3/T4 thoracic vertebra, initial encounter +C2835633|T037|AB|S23.122A|ICD10CM|Subluxation of T3/T4 thoracic vertebra, initial encounter|Subluxation of T3/T4 thoracic vertebra, initial encounter +C2835634|T037|AB|S23.122D|ICD10CM|Subluxation of T3/T4 thoracic vertebra, subsequent encounter|Subluxation of T3/T4 thoracic vertebra, subsequent encounter +C2835634|T037|PT|S23.122D|ICD10CM|Subluxation of T3/T4 thoracic vertebra, subsequent encounter|Subluxation of T3/T4 thoracic vertebra, subsequent encounter +C2835635|T037|PT|S23.122S|ICD10CM|Subluxation of T3/T4 thoracic vertebra, sequela|Subluxation of T3/T4 thoracic vertebra, sequela +C2835635|T037|AB|S23.122S|ICD10CM|Subluxation of T3/T4 thoracic vertebra, sequela|Subluxation of T3/T4 thoracic vertebra, sequela +C2835636|T037|AB|S23.123|ICD10CM|Dislocation of T3/T4 thoracic vertebra|Dislocation of T3/T4 thoracic vertebra +C2835636|T037|HT|S23.123|ICD10CM|Dislocation of T3/T4 thoracic vertebra|Dislocation of T3/T4 thoracic vertebra +C2835637|T037|PT|S23.123A|ICD10CM|Dislocation of T3/T4 thoracic vertebra, initial encounter|Dislocation of T3/T4 thoracic vertebra, initial encounter +C2835637|T037|AB|S23.123A|ICD10CM|Dislocation of T3/T4 thoracic vertebra, initial encounter|Dislocation of T3/T4 thoracic vertebra, initial encounter +C2835638|T037|AB|S23.123D|ICD10CM|Dislocation of T3/T4 thoracic vertebra, subsequent encounter|Dislocation of T3/T4 thoracic vertebra, subsequent encounter +C2835638|T037|PT|S23.123D|ICD10CM|Dislocation of T3/T4 thoracic vertebra, subsequent encounter|Dislocation of T3/T4 thoracic vertebra, subsequent encounter +C2835639|T037|PT|S23.123S|ICD10CM|Dislocation of T3/T4 thoracic vertebra, sequela|Dislocation of T3/T4 thoracic vertebra, sequela +C2835639|T037|AB|S23.123S|ICD10CM|Dislocation of T3/T4 thoracic vertebra, sequela|Dislocation of T3/T4 thoracic vertebra, sequela +C2835640|T037|AB|S23.13|ICD10CM|Subluxation and dislocation of T4/T5-T5/T6 thoracic vertebra|Subluxation and dislocation of T4/T5-T5/T6 thoracic vertebra +C2835640|T037|HT|S23.13|ICD10CM|Subluxation and dislocation of T4/T5-T5/T6 thoracic vertebra|Subluxation and dislocation of T4/T5-T5/T6 thoracic vertebra +C2835641|T037|AB|S23.130|ICD10CM|Subluxation of T4/T5 thoracic vertebra|Subluxation of T4/T5 thoracic vertebra +C2835641|T037|HT|S23.130|ICD10CM|Subluxation of T4/T5 thoracic vertebra|Subluxation of T4/T5 thoracic vertebra +C2835642|T037|PT|S23.130A|ICD10CM|Subluxation of T4/T5 thoracic vertebra, initial encounter|Subluxation of T4/T5 thoracic vertebra, initial encounter +C2835642|T037|AB|S23.130A|ICD10CM|Subluxation of T4/T5 thoracic vertebra, initial encounter|Subluxation of T4/T5 thoracic vertebra, initial encounter +C2835643|T037|AB|S23.130D|ICD10CM|Subluxation of T4/T5 thoracic vertebra, subsequent encounter|Subluxation of T4/T5 thoracic vertebra, subsequent encounter +C2835643|T037|PT|S23.130D|ICD10CM|Subluxation of T4/T5 thoracic vertebra, subsequent encounter|Subluxation of T4/T5 thoracic vertebra, subsequent encounter +C2835644|T037|PT|S23.130S|ICD10CM|Subluxation of T4/T5 thoracic vertebra, sequela|Subluxation of T4/T5 thoracic vertebra, sequela +C2835644|T037|AB|S23.130S|ICD10CM|Subluxation of T4/T5 thoracic vertebra, sequela|Subluxation of T4/T5 thoracic vertebra, sequela +C2835645|T037|AB|S23.131|ICD10CM|Dislocation of T4/T5 thoracic vertebra|Dislocation of T4/T5 thoracic vertebra +C2835645|T037|HT|S23.131|ICD10CM|Dislocation of T4/T5 thoracic vertebra|Dislocation of T4/T5 thoracic vertebra +C2835646|T037|PT|S23.131A|ICD10CM|Dislocation of T4/T5 thoracic vertebra, initial encounter|Dislocation of T4/T5 thoracic vertebra, initial encounter +C2835646|T037|AB|S23.131A|ICD10CM|Dislocation of T4/T5 thoracic vertebra, initial encounter|Dislocation of T4/T5 thoracic vertebra, initial encounter +C2835647|T037|AB|S23.131D|ICD10CM|Dislocation of T4/T5 thoracic vertebra, subsequent encounter|Dislocation of T4/T5 thoracic vertebra, subsequent encounter +C2835647|T037|PT|S23.131D|ICD10CM|Dislocation of T4/T5 thoracic vertebra, subsequent encounter|Dislocation of T4/T5 thoracic vertebra, subsequent encounter +C2835648|T037|PT|S23.131S|ICD10CM|Dislocation of T4/T5 thoracic vertebra, sequela|Dislocation of T4/T5 thoracic vertebra, sequela +C2835648|T037|AB|S23.131S|ICD10CM|Dislocation of T4/T5 thoracic vertebra, sequela|Dislocation of T4/T5 thoracic vertebra, sequela +C2835649|T037|AB|S23.132|ICD10CM|Subluxation of T5/T6 thoracic vertebra|Subluxation of T5/T6 thoracic vertebra +C2835649|T037|HT|S23.132|ICD10CM|Subluxation of T5/T6 thoracic vertebra|Subluxation of T5/T6 thoracic vertebra +C2835650|T037|PT|S23.132A|ICD10CM|Subluxation of T5/T6 thoracic vertebra, initial encounter|Subluxation of T5/T6 thoracic vertebra, initial encounter +C2835650|T037|AB|S23.132A|ICD10CM|Subluxation of T5/T6 thoracic vertebra, initial encounter|Subluxation of T5/T6 thoracic vertebra, initial encounter +C2835651|T037|AB|S23.132D|ICD10CM|Subluxation of T5/T6 thoracic vertebra, subsequent encounter|Subluxation of T5/T6 thoracic vertebra, subsequent encounter +C2835651|T037|PT|S23.132D|ICD10CM|Subluxation of T5/T6 thoracic vertebra, subsequent encounter|Subluxation of T5/T6 thoracic vertebra, subsequent encounter +C2835652|T037|PT|S23.132S|ICD10CM|Subluxation of T5/T6 thoracic vertebra, sequela|Subluxation of T5/T6 thoracic vertebra, sequela +C2835652|T037|AB|S23.132S|ICD10CM|Subluxation of T5/T6 thoracic vertebra, sequela|Subluxation of T5/T6 thoracic vertebra, sequela +C2835653|T037|AB|S23.133|ICD10CM|Dislocation of T5/T6 thoracic vertebra|Dislocation of T5/T6 thoracic vertebra +C2835653|T037|HT|S23.133|ICD10CM|Dislocation of T5/T6 thoracic vertebra|Dislocation of T5/T6 thoracic vertebra +C2835654|T037|PT|S23.133A|ICD10CM|Dislocation of T5/T6 thoracic vertebra, initial encounter|Dislocation of T5/T6 thoracic vertebra, initial encounter +C2835654|T037|AB|S23.133A|ICD10CM|Dislocation of T5/T6 thoracic vertebra, initial encounter|Dislocation of T5/T6 thoracic vertebra, initial encounter +C2835655|T037|AB|S23.133D|ICD10CM|Dislocation of T5/T6 thoracic vertebra, subsequent encounter|Dislocation of T5/T6 thoracic vertebra, subsequent encounter +C2835655|T037|PT|S23.133D|ICD10CM|Dislocation of T5/T6 thoracic vertebra, subsequent encounter|Dislocation of T5/T6 thoracic vertebra, subsequent encounter +C2835656|T037|PT|S23.133S|ICD10CM|Dislocation of T5/T6 thoracic vertebra, sequela|Dislocation of T5/T6 thoracic vertebra, sequela +C2835656|T037|AB|S23.133S|ICD10CM|Dislocation of T5/T6 thoracic vertebra, sequela|Dislocation of T5/T6 thoracic vertebra, sequela +C2835657|T037|AB|S23.14|ICD10CM|Subluxation and dislocation of T6/T7-T7/T8 thoracic vertebra|Subluxation and dislocation of T6/T7-T7/T8 thoracic vertebra +C2835657|T037|HT|S23.14|ICD10CM|Subluxation and dislocation of T6/T7-T7/T8 thoracic vertebra|Subluxation and dislocation of T6/T7-T7/T8 thoracic vertebra +C2835658|T037|AB|S23.140|ICD10CM|Subluxation of T6/T7 thoracic vertebra|Subluxation of T6/T7 thoracic vertebra +C2835658|T037|HT|S23.140|ICD10CM|Subluxation of T6/T7 thoracic vertebra|Subluxation of T6/T7 thoracic vertebra +C2835659|T037|PT|S23.140A|ICD10CM|Subluxation of T6/T7 thoracic vertebra, initial encounter|Subluxation of T6/T7 thoracic vertebra, initial encounter +C2835659|T037|AB|S23.140A|ICD10CM|Subluxation of T6/T7 thoracic vertebra, initial encounter|Subluxation of T6/T7 thoracic vertebra, initial encounter +C2835660|T037|AB|S23.140D|ICD10CM|Subluxation of T6/T7 thoracic vertebra, subsequent encounter|Subluxation of T6/T7 thoracic vertebra, subsequent encounter +C2835660|T037|PT|S23.140D|ICD10CM|Subluxation of T6/T7 thoracic vertebra, subsequent encounter|Subluxation of T6/T7 thoracic vertebra, subsequent encounter +C2835661|T037|PT|S23.140S|ICD10CM|Subluxation of T6/T7 thoracic vertebra, sequela|Subluxation of T6/T7 thoracic vertebra, sequela +C2835661|T037|AB|S23.140S|ICD10CM|Subluxation of T6/T7 thoracic vertebra, sequela|Subluxation of T6/T7 thoracic vertebra, sequela +C2835662|T037|AB|S23.141|ICD10CM|Dislocation of T6/T7 thoracic vertebra|Dislocation of T6/T7 thoracic vertebra +C2835662|T037|HT|S23.141|ICD10CM|Dislocation of T6/T7 thoracic vertebra|Dislocation of T6/T7 thoracic vertebra +C2835663|T037|PT|S23.141A|ICD10CM|Dislocation of T6/T7 thoracic vertebra, initial encounter|Dislocation of T6/T7 thoracic vertebra, initial encounter +C2835663|T037|AB|S23.141A|ICD10CM|Dislocation of T6/T7 thoracic vertebra, initial encounter|Dislocation of T6/T7 thoracic vertebra, initial encounter +C2835664|T037|AB|S23.141D|ICD10CM|Dislocation of T6/T7 thoracic vertebra, subsequent encounter|Dislocation of T6/T7 thoracic vertebra, subsequent encounter +C2835664|T037|PT|S23.141D|ICD10CM|Dislocation of T6/T7 thoracic vertebra, subsequent encounter|Dislocation of T6/T7 thoracic vertebra, subsequent encounter +C2835665|T037|PT|S23.141S|ICD10CM|Dislocation of T6/T7 thoracic vertebra, sequela|Dislocation of T6/T7 thoracic vertebra, sequela +C2835665|T037|AB|S23.141S|ICD10CM|Dislocation of T6/T7 thoracic vertebra, sequela|Dislocation of T6/T7 thoracic vertebra, sequela +C2835666|T037|AB|S23.142|ICD10CM|Subluxation of T7/T8 thoracic vertebra|Subluxation of T7/T8 thoracic vertebra +C2835666|T037|HT|S23.142|ICD10CM|Subluxation of T7/T8 thoracic vertebra|Subluxation of T7/T8 thoracic vertebra +C2835667|T037|PT|S23.142A|ICD10CM|Subluxation of T7/T8 thoracic vertebra, initial encounter|Subluxation of T7/T8 thoracic vertebra, initial encounter +C2835667|T037|AB|S23.142A|ICD10CM|Subluxation of T7/T8 thoracic vertebra, initial encounter|Subluxation of T7/T8 thoracic vertebra, initial encounter +C2835668|T037|AB|S23.142D|ICD10CM|Subluxation of T7/T8 thoracic vertebra, subsequent encounter|Subluxation of T7/T8 thoracic vertebra, subsequent encounter +C2835668|T037|PT|S23.142D|ICD10CM|Subluxation of T7/T8 thoracic vertebra, subsequent encounter|Subluxation of T7/T8 thoracic vertebra, subsequent encounter +C2835669|T037|PT|S23.142S|ICD10CM|Subluxation of T7/T8 thoracic vertebra, sequela|Subluxation of T7/T8 thoracic vertebra, sequela +C2835669|T037|AB|S23.142S|ICD10CM|Subluxation of T7/T8 thoracic vertebra, sequela|Subluxation of T7/T8 thoracic vertebra, sequela +C2835670|T037|AB|S23.143|ICD10CM|Dislocation of T7/T8 thoracic vertebra|Dislocation of T7/T8 thoracic vertebra +C2835670|T037|HT|S23.143|ICD10CM|Dislocation of T7/T8 thoracic vertebra|Dislocation of T7/T8 thoracic vertebra +C2835671|T037|PT|S23.143A|ICD10CM|Dislocation of T7/T8 thoracic vertebra, initial encounter|Dislocation of T7/T8 thoracic vertebra, initial encounter +C2835671|T037|AB|S23.143A|ICD10CM|Dislocation of T7/T8 thoracic vertebra, initial encounter|Dislocation of T7/T8 thoracic vertebra, initial encounter +C2835672|T037|AB|S23.143D|ICD10CM|Dislocation of T7/T8 thoracic vertebra, subsequent encounter|Dislocation of T7/T8 thoracic vertebra, subsequent encounter +C2835672|T037|PT|S23.143D|ICD10CM|Dislocation of T7/T8 thoracic vertebra, subsequent encounter|Dislocation of T7/T8 thoracic vertebra, subsequent encounter +C2835673|T037|PT|S23.143S|ICD10CM|Dislocation of T7/T8 thoracic vertebra, sequela|Dislocation of T7/T8 thoracic vertebra, sequela +C2835673|T037|AB|S23.143S|ICD10CM|Dislocation of T7/T8 thoracic vertebra, sequela|Dislocation of T7/T8 thoracic vertebra, sequela +C2835674|T037|AB|S23.15|ICD10CM|Subluxation and dislocation of T8/T9-T9/T10 thor vertebra|Subluxation and dislocation of T8/T9-T9/T10 thor vertebra +C2835674|T037|HT|S23.15|ICD10CM|Subluxation and dislocation of T8/T9-T9/T10 thoracic vertebra|Subluxation and dislocation of T8/T9-T9/T10 thoracic vertebra +C2835675|T037|AB|S23.150|ICD10CM|Subluxation of T8/T9 thoracic vertebra|Subluxation of T8/T9 thoracic vertebra +C2835675|T037|HT|S23.150|ICD10CM|Subluxation of T8/T9 thoracic vertebra|Subluxation of T8/T9 thoracic vertebra +C2835676|T037|PT|S23.150A|ICD10CM|Subluxation of T8/T9 thoracic vertebra, initial encounter|Subluxation of T8/T9 thoracic vertebra, initial encounter +C2835676|T037|AB|S23.150A|ICD10CM|Subluxation of T8/T9 thoracic vertebra, initial encounter|Subluxation of T8/T9 thoracic vertebra, initial encounter +C2835677|T037|AB|S23.150D|ICD10CM|Subluxation of T8/T9 thoracic vertebra, subsequent encounter|Subluxation of T8/T9 thoracic vertebra, subsequent encounter +C2835677|T037|PT|S23.150D|ICD10CM|Subluxation of T8/T9 thoracic vertebra, subsequent encounter|Subluxation of T8/T9 thoracic vertebra, subsequent encounter +C2835678|T037|PT|S23.150S|ICD10CM|Subluxation of T8/T9 thoracic vertebra, sequela|Subluxation of T8/T9 thoracic vertebra, sequela +C2835678|T037|AB|S23.150S|ICD10CM|Subluxation of T8/T9 thoracic vertebra, sequela|Subluxation of T8/T9 thoracic vertebra, sequela +C2835679|T037|AB|S23.151|ICD10CM|Dislocation of T8/T9 thoracic vertebra|Dislocation of T8/T9 thoracic vertebra +C2835679|T037|HT|S23.151|ICD10CM|Dislocation of T8/T9 thoracic vertebra|Dislocation of T8/T9 thoracic vertebra +C2835680|T037|PT|S23.151A|ICD10CM|Dislocation of T8/T9 thoracic vertebra, initial encounter|Dislocation of T8/T9 thoracic vertebra, initial encounter +C2835680|T037|AB|S23.151A|ICD10CM|Dislocation of T8/T9 thoracic vertebra, initial encounter|Dislocation of T8/T9 thoracic vertebra, initial encounter +C2835681|T037|AB|S23.151D|ICD10CM|Dislocation of T8/T9 thoracic vertebra, subsequent encounter|Dislocation of T8/T9 thoracic vertebra, subsequent encounter +C2835681|T037|PT|S23.151D|ICD10CM|Dislocation of T8/T9 thoracic vertebra, subsequent encounter|Dislocation of T8/T9 thoracic vertebra, subsequent encounter +C2835682|T037|PT|S23.151S|ICD10CM|Dislocation of T8/T9 thoracic vertebra, sequela|Dislocation of T8/T9 thoracic vertebra, sequela +C2835682|T037|AB|S23.151S|ICD10CM|Dislocation of T8/T9 thoracic vertebra, sequela|Dislocation of T8/T9 thoracic vertebra, sequela +C2835683|T037|AB|S23.152|ICD10CM|Subluxation of T9/T10 thoracic vertebra|Subluxation of T9/T10 thoracic vertebra +C2835683|T037|HT|S23.152|ICD10CM|Subluxation of T9/T10 thoracic vertebra|Subluxation of T9/T10 thoracic vertebra +C2835684|T037|PT|S23.152A|ICD10CM|Subluxation of T9/T10 thoracic vertebra, initial encounter|Subluxation of T9/T10 thoracic vertebra, initial encounter +C2835684|T037|AB|S23.152A|ICD10CM|Subluxation of T9/T10 thoracic vertebra, initial encounter|Subluxation of T9/T10 thoracic vertebra, initial encounter +C2835685|T037|AB|S23.152D|ICD10CM|Subluxation of T9/T10 thoracic vertebra, subs encntr|Subluxation of T9/T10 thoracic vertebra, subs encntr +C2835685|T037|PT|S23.152D|ICD10CM|Subluxation of T9/T10 thoracic vertebra, subsequent encounter|Subluxation of T9/T10 thoracic vertebra, subsequent encounter +C2835686|T037|PT|S23.152S|ICD10CM|Subluxation of T9/T10 thoracic vertebra, sequela|Subluxation of T9/T10 thoracic vertebra, sequela +C2835686|T037|AB|S23.152S|ICD10CM|Subluxation of T9/T10 thoracic vertebra, sequela|Subluxation of T9/T10 thoracic vertebra, sequela +C2835687|T037|AB|S23.153|ICD10CM|Dislocation of T9/T10 thoracic vertebra|Dislocation of T9/T10 thoracic vertebra +C2835687|T037|HT|S23.153|ICD10CM|Dislocation of T9/T10 thoracic vertebra|Dislocation of T9/T10 thoracic vertebra +C2835688|T037|PT|S23.153A|ICD10CM|Dislocation of T9/T10 thoracic vertebra, initial encounter|Dislocation of T9/T10 thoracic vertebra, initial encounter +C2835688|T037|AB|S23.153A|ICD10CM|Dislocation of T9/T10 thoracic vertebra, initial encounter|Dislocation of T9/T10 thoracic vertebra, initial encounter +C2835689|T037|AB|S23.153D|ICD10CM|Dislocation of T9/T10 thoracic vertebra, subs encntr|Dislocation of T9/T10 thoracic vertebra, subs encntr +C2835689|T037|PT|S23.153D|ICD10CM|Dislocation of T9/T10 thoracic vertebra, subsequent encounter|Dislocation of T9/T10 thoracic vertebra, subsequent encounter +C2835690|T037|PT|S23.153S|ICD10CM|Dislocation of T9/T10 thoracic vertebra, sequela|Dislocation of T9/T10 thoracic vertebra, sequela +C2835690|T037|AB|S23.153S|ICD10CM|Dislocation of T9/T10 thoracic vertebra, sequela|Dislocation of T9/T10 thoracic vertebra, sequela +C2835691|T037|AB|S23.16|ICD10CM|Subluxation and dislocation of T10/T11-T11/T12 thor vertebra|Subluxation and dislocation of T10/T11-T11/T12 thor vertebra +C2835691|T037|HT|S23.16|ICD10CM|Subluxation and dislocation of T10/T11-T11/T12 thoracic vertebra|Subluxation and dislocation of T10/T11-T11/T12 thoracic vertebra +C2835692|T037|AB|S23.160|ICD10CM|Subluxation of T10/T11 thoracic vertebra|Subluxation of T10/T11 thoracic vertebra +C2835692|T037|HT|S23.160|ICD10CM|Subluxation of T10/T11 thoracic vertebra|Subluxation of T10/T11 thoracic vertebra +C2835693|T037|PT|S23.160A|ICD10CM|Subluxation of T10/T11 thoracic vertebra, initial encounter|Subluxation of T10/T11 thoracic vertebra, initial encounter +C2835693|T037|AB|S23.160A|ICD10CM|Subluxation of T10/T11 thoracic vertebra, initial encounter|Subluxation of T10/T11 thoracic vertebra, initial encounter +C2835694|T037|AB|S23.160D|ICD10CM|Subluxation of T10/T11 thoracic vertebra, subs encntr|Subluxation of T10/T11 thoracic vertebra, subs encntr +C2835694|T037|PT|S23.160D|ICD10CM|Subluxation of T10/T11 thoracic vertebra, subsequent encounter|Subluxation of T10/T11 thoracic vertebra, subsequent encounter +C2835695|T037|PT|S23.160S|ICD10CM|Subluxation of T10/T11 thoracic vertebra, sequela|Subluxation of T10/T11 thoracic vertebra, sequela +C2835695|T037|AB|S23.160S|ICD10CM|Subluxation of T10/T11 thoracic vertebra, sequela|Subluxation of T10/T11 thoracic vertebra, sequela +C2835696|T037|AB|S23.161|ICD10CM|Dislocation of T10/T11 thoracic vertebra|Dislocation of T10/T11 thoracic vertebra +C2835696|T037|HT|S23.161|ICD10CM|Dislocation of T10/T11 thoracic vertebra|Dislocation of T10/T11 thoracic vertebra +C2835697|T037|PT|S23.161A|ICD10CM|Dislocation of T10/T11 thoracic vertebra, initial encounter|Dislocation of T10/T11 thoracic vertebra, initial encounter +C2835697|T037|AB|S23.161A|ICD10CM|Dislocation of T10/T11 thoracic vertebra, initial encounter|Dislocation of T10/T11 thoracic vertebra, initial encounter +C2835698|T037|AB|S23.161D|ICD10CM|Dislocation of T10/T11 thoracic vertebra, subs encntr|Dislocation of T10/T11 thoracic vertebra, subs encntr +C2835698|T037|PT|S23.161D|ICD10CM|Dislocation of T10/T11 thoracic vertebra, subsequent encounter|Dislocation of T10/T11 thoracic vertebra, subsequent encounter +C2835699|T037|PT|S23.161S|ICD10CM|Dislocation of T10/T11 thoracic vertebra, sequela|Dislocation of T10/T11 thoracic vertebra, sequela +C2835699|T037|AB|S23.161S|ICD10CM|Dislocation of T10/T11 thoracic vertebra, sequela|Dislocation of T10/T11 thoracic vertebra, sequela +C2835700|T037|AB|S23.162|ICD10CM|Subluxation of T11/T12 thoracic vertebra|Subluxation of T11/T12 thoracic vertebra +C2835700|T037|HT|S23.162|ICD10CM|Subluxation of T11/T12 thoracic vertebra|Subluxation of T11/T12 thoracic vertebra +C2835701|T037|PT|S23.162A|ICD10CM|Subluxation of T11/T12 thoracic vertebra, initial encounter|Subluxation of T11/T12 thoracic vertebra, initial encounter +C2835701|T037|AB|S23.162A|ICD10CM|Subluxation of T11/T12 thoracic vertebra, initial encounter|Subluxation of T11/T12 thoracic vertebra, initial encounter +C2835702|T037|AB|S23.162D|ICD10CM|Subluxation of T11/T12 thoracic vertebra, subs encntr|Subluxation of T11/T12 thoracic vertebra, subs encntr +C2835702|T037|PT|S23.162D|ICD10CM|Subluxation of T11/T12 thoracic vertebra, subsequent encounter|Subluxation of T11/T12 thoracic vertebra, subsequent encounter +C2835703|T037|PT|S23.162S|ICD10CM|Subluxation of T11/T12 thoracic vertebra, sequela|Subluxation of T11/T12 thoracic vertebra, sequela +C2835703|T037|AB|S23.162S|ICD10CM|Subluxation of T11/T12 thoracic vertebra, sequela|Subluxation of T11/T12 thoracic vertebra, sequela +C0840475|T037|AB|S23.163|ICD10CM|Dislocation of T11/T12 thoracic vertebra|Dislocation of T11/T12 thoracic vertebra +C0840475|T037|HT|S23.163|ICD10CM|Dislocation of T11/T12 thoracic vertebra|Dislocation of T11/T12 thoracic vertebra +C2835704|T037|PT|S23.163A|ICD10CM|Dislocation of T11/T12 thoracic vertebra, initial encounter|Dislocation of T11/T12 thoracic vertebra, initial encounter +C2835704|T037|AB|S23.163A|ICD10CM|Dislocation of T11/T12 thoracic vertebra, initial encounter|Dislocation of T11/T12 thoracic vertebra, initial encounter +C2835705|T037|AB|S23.163D|ICD10CM|Dislocation of T11/T12 thoracic vertebra, subs encntr|Dislocation of T11/T12 thoracic vertebra, subs encntr +C2835705|T037|PT|S23.163D|ICD10CM|Dislocation of T11/T12 thoracic vertebra, subsequent encounter|Dislocation of T11/T12 thoracic vertebra, subsequent encounter +C2835706|T037|PT|S23.163S|ICD10CM|Dislocation of T11/T12 thoracic vertebra, sequela|Dislocation of T11/T12 thoracic vertebra, sequela +C2835706|T037|AB|S23.163S|ICD10CM|Dislocation of T11/T12 thoracic vertebra, sequela|Dislocation of T11/T12 thoracic vertebra, sequela +C2835707|T037|AB|S23.17|ICD10CM|Subluxation and dislocation of T12/L1 thoracic vertebra|Subluxation and dislocation of T12/L1 thoracic vertebra +C2835707|T037|HT|S23.17|ICD10CM|Subluxation and dislocation of T12/L1 thoracic vertebra|Subluxation and dislocation of T12/L1 thoracic vertebra +C2835708|T037|AB|S23.170|ICD10CM|Subluxation of T12/L1 thoracic vertebra|Subluxation of T12/L1 thoracic vertebra +C2835708|T037|HT|S23.170|ICD10CM|Subluxation of T12/L1 thoracic vertebra|Subluxation of T12/L1 thoracic vertebra +C2835709|T037|PT|S23.170A|ICD10CM|Subluxation of T12/L1 thoracic vertebra, initial encounter|Subluxation of T12/L1 thoracic vertebra, initial encounter +C2835709|T037|AB|S23.170A|ICD10CM|Subluxation of T12/L1 thoracic vertebra, initial encounter|Subluxation of T12/L1 thoracic vertebra, initial encounter +C2835710|T037|AB|S23.170D|ICD10CM|Subluxation of T12/L1 thoracic vertebra, subs encntr|Subluxation of T12/L1 thoracic vertebra, subs encntr +C2835710|T037|PT|S23.170D|ICD10CM|Subluxation of T12/L1 thoracic vertebra, subsequent encounter|Subluxation of T12/L1 thoracic vertebra, subsequent encounter +C2835711|T037|PT|S23.170S|ICD10CM|Subluxation of T12/L1 thoracic vertebra, sequela|Subluxation of T12/L1 thoracic vertebra, sequela +C2835711|T037|AB|S23.170S|ICD10CM|Subluxation of T12/L1 thoracic vertebra, sequela|Subluxation of T12/L1 thoracic vertebra, sequela +C2835712|T037|AB|S23.171|ICD10CM|Dislocation of T12/L1 thoracic vertebra|Dislocation of T12/L1 thoracic vertebra +C2835712|T037|HT|S23.171|ICD10CM|Dislocation of T12/L1 thoracic vertebra|Dislocation of T12/L1 thoracic vertebra +C2835713|T037|PT|S23.171A|ICD10CM|Dislocation of T12/L1 thoracic vertebra, initial encounter|Dislocation of T12/L1 thoracic vertebra, initial encounter +C2835713|T037|AB|S23.171A|ICD10CM|Dislocation of T12/L1 thoracic vertebra, initial encounter|Dislocation of T12/L1 thoracic vertebra, initial encounter +C2835714|T037|AB|S23.171D|ICD10CM|Dislocation of T12/L1 thoracic vertebra, subs encntr|Dislocation of T12/L1 thoracic vertebra, subs encntr +C2835714|T037|PT|S23.171D|ICD10CM|Dislocation of T12/L1 thoracic vertebra, subsequent encounter|Dislocation of T12/L1 thoracic vertebra, subsequent encounter +C2835715|T037|PT|S23.171S|ICD10CM|Dislocation of T12/L1 thoracic vertebra, sequela|Dislocation of T12/L1 thoracic vertebra, sequela +C2835715|T037|AB|S23.171S|ICD10CM|Dislocation of T12/L1 thoracic vertebra, sequela|Dislocation of T12/L1 thoracic vertebra, sequela +C0478238|T037|HT|S23.2|ICD10CM|Dislocation of other and unspecified parts of thorax|Dislocation of other and unspecified parts of thorax +C0478238|T037|AB|S23.2|ICD10CM|Dislocation of other and unspecified parts of thorax|Dislocation of other and unspecified parts of thorax +C0478238|T037|PT|S23.2|ICD10|Dislocation of other and unspecified parts of thorax|Dislocation of other and unspecified parts of thorax +C2835716|T037|AB|S23.20|ICD10CM|Dislocation of unspecified part of thorax|Dislocation of unspecified part of thorax +C2835716|T037|HT|S23.20|ICD10CM|Dislocation of unspecified part of thorax|Dislocation of unspecified part of thorax +C2835717|T037|AB|S23.20XA|ICD10CM|Dislocation of unspecified part of thorax, initial encounter|Dislocation of unspecified part of thorax, initial encounter +C2835717|T037|PT|S23.20XA|ICD10CM|Dislocation of unspecified part of thorax, initial encounter|Dislocation of unspecified part of thorax, initial encounter +C2835718|T037|AB|S23.20XD|ICD10CM|Dislocation of unspecified part of thorax, subs encntr|Dislocation of unspecified part of thorax, subs encntr +C2835718|T037|PT|S23.20XD|ICD10CM|Dislocation of unspecified part of thorax, subsequent encounter|Dislocation of unspecified part of thorax, subsequent encounter +C2835719|T037|AB|S23.20XS|ICD10CM|Dislocation of unspecified part of thorax, sequela|Dislocation of unspecified part of thorax, sequela +C2835719|T037|PT|S23.20XS|ICD10CM|Dislocation of unspecified part of thorax, sequela|Dislocation of unspecified part of thorax, sequela +C2835720|T037|AB|S23.29|ICD10CM|Dislocation of other parts of thorax|Dislocation of other parts of thorax +C2835720|T037|HT|S23.29|ICD10CM|Dislocation of other parts of thorax|Dislocation of other parts of thorax +C2835721|T037|AB|S23.29XA|ICD10CM|Dislocation of other parts of thorax, initial encounter|Dislocation of other parts of thorax, initial encounter +C2835721|T037|PT|S23.29XA|ICD10CM|Dislocation of other parts of thorax, initial encounter|Dislocation of other parts of thorax, initial encounter +C2835722|T037|AB|S23.29XD|ICD10CM|Dislocation of other parts of thorax, subsequent encounter|Dislocation of other parts of thorax, subsequent encounter +C2835722|T037|PT|S23.29XD|ICD10CM|Dislocation of other parts of thorax, subsequent encounter|Dislocation of other parts of thorax, subsequent encounter +C2835723|T037|AB|S23.29XS|ICD10CM|Dislocation of other parts of thorax, sequela|Dislocation of other parts of thorax, sequela +C2835723|T037|PT|S23.29XS|ICD10CM|Dislocation of other parts of thorax, sequela|Dislocation of other parts of thorax, sequela +C0392090|T037|PT|S23.3|ICD10|Sprain and strain of thoracic spine|Sprain and strain of thoracic spine +C2835724|T037|AB|S23.3|ICD10CM|Sprain of ligaments of thoracic spine|Sprain of ligaments of thoracic spine +C2835724|T037|HT|S23.3|ICD10CM|Sprain of ligaments of thoracic spine|Sprain of ligaments of thoracic spine +C2835725|T037|AB|S23.3XXA|ICD10CM|Sprain of ligaments of thoracic spine, initial encounter|Sprain of ligaments of thoracic spine, initial encounter +C2835725|T037|PT|S23.3XXA|ICD10CM|Sprain of ligaments of thoracic spine, initial encounter|Sprain of ligaments of thoracic spine, initial encounter +C2835726|T037|AB|S23.3XXD|ICD10CM|Sprain of ligaments of thoracic spine, subsequent encounter|Sprain of ligaments of thoracic spine, subsequent encounter +C2835726|T037|PT|S23.3XXD|ICD10CM|Sprain of ligaments of thoracic spine, subsequent encounter|Sprain of ligaments of thoracic spine, subsequent encounter +C2835727|T037|AB|S23.3XXS|ICD10CM|Sprain of ligaments of thoracic spine, sequela|Sprain of ligaments of thoracic spine, sequela +C2835727|T037|PT|S23.3XXS|ICD10CM|Sprain of ligaments of thoracic spine, sequela|Sprain of ligaments of thoracic spine, sequela +C0495830|T037|PT|S23.4|ICD10|Sprain and strain of ribs and sternum|Sprain and strain of ribs and sternum +C2835728|T037|AB|S23.4|ICD10CM|Sprain of ribs and sternum|Sprain of ribs and sternum +C2835728|T037|HT|S23.4|ICD10CM|Sprain of ribs and sternum|Sprain of ribs and sternum +C0160115|T037|HT|S23.41|ICD10CM|Sprain of ribs|Sprain of ribs +C0160115|T037|AB|S23.41|ICD10CM|Sprain of ribs|Sprain of ribs +C2835729|T037|AB|S23.41XA|ICD10CM|Sprain of ribs, initial encounter|Sprain of ribs, initial encounter +C2835729|T037|PT|S23.41XA|ICD10CM|Sprain of ribs, initial encounter|Sprain of ribs, initial encounter +C2835730|T037|AB|S23.41XD|ICD10CM|Sprain of ribs, subsequent encounter|Sprain of ribs, subsequent encounter +C2835730|T037|PT|S23.41XD|ICD10CM|Sprain of ribs, subsequent encounter|Sprain of ribs, subsequent encounter +C2835731|T037|AB|S23.41XS|ICD10CM|Sprain of ribs, sequela|Sprain of ribs, sequela +C2835731|T037|PT|S23.41XS|ICD10CM|Sprain of ribs, sequela|Sprain of ribs, sequela +C0434411|T037|HT|S23.42|ICD10CM|Sprain of sternum|Sprain of sternum +C0434411|T037|AB|S23.42|ICD10CM|Sprain of sternum|Sprain of sternum +C0272920|T037|HT|S23.420|ICD10CM|Sprain of sternoclavicular (joint) (ligament)|Sprain of sternoclavicular (joint) (ligament) +C0272920|T037|AB|S23.420|ICD10CM|Sprain of sternoclavicular (joint) (ligament)|Sprain of sternoclavicular (joint) (ligament) +C2835732|T037|AB|S23.420A|ICD10CM|Sprain of sternoclavicular (joint) (ligament), init encntr|Sprain of sternoclavicular (joint) (ligament), init encntr +C2835732|T037|PT|S23.420A|ICD10CM|Sprain of sternoclavicular (joint) (ligament), initial encounter|Sprain of sternoclavicular (joint) (ligament), initial encounter +C2835733|T037|AB|S23.420D|ICD10CM|Sprain of sternoclavicular (joint) (ligament), subs encntr|Sprain of sternoclavicular (joint) (ligament), subs encntr +C2835733|T037|PT|S23.420D|ICD10CM|Sprain of sternoclavicular (joint) (ligament), subsequent encounter|Sprain of sternoclavicular (joint) (ligament), subsequent encounter +C2835734|T037|AB|S23.420S|ICD10CM|Sprain of sternoclavicular (joint) (ligament), sequela|Sprain of sternoclavicular (joint) (ligament), sequela +C2835734|T037|PT|S23.420S|ICD10CM|Sprain of sternoclavicular (joint) (ligament), sequela|Sprain of sternoclavicular (joint) (ligament), sequela +C0160118|T037|HT|S23.421|ICD10CM|Sprain of chondrosternal joint|Sprain of chondrosternal joint +C0160118|T037|AB|S23.421|ICD10CM|Sprain of chondrosternal joint|Sprain of chondrosternal joint +C2835735|T037|AB|S23.421A|ICD10CM|Sprain of chondrosternal joint, initial encounter|Sprain of chondrosternal joint, initial encounter +C2835735|T037|PT|S23.421A|ICD10CM|Sprain of chondrosternal joint, initial encounter|Sprain of chondrosternal joint, initial encounter +C2835736|T037|AB|S23.421D|ICD10CM|Sprain of chondrosternal joint, subsequent encounter|Sprain of chondrosternal joint, subsequent encounter +C2835736|T037|PT|S23.421D|ICD10CM|Sprain of chondrosternal joint, subsequent encounter|Sprain of chondrosternal joint, subsequent encounter +C2835737|T037|AB|S23.421S|ICD10CM|Sprain of chondrosternal joint, sequela|Sprain of chondrosternal joint, sequela +C2835737|T037|PT|S23.421S|ICD10CM|Sprain of chondrosternal joint, sequela|Sprain of chondrosternal joint, sequela +C0160119|T037|HT|S23.428|ICD10CM|Other sprain of sternum|Other sprain of sternum +C0160119|T037|AB|S23.428|ICD10CM|Other sprain of sternum|Other sprain of sternum +C2835738|T037|PT|S23.428A|ICD10CM|Other sprain of sternum, initial encounter|Other sprain of sternum, initial encounter +C2835738|T037|AB|S23.428A|ICD10CM|Other sprain of sternum, initial encounter|Other sprain of sternum, initial encounter +C2835739|T037|PT|S23.428D|ICD10CM|Other sprain of sternum, subsequent encounter|Other sprain of sternum, subsequent encounter +C2835739|T037|AB|S23.428D|ICD10CM|Other sprain of sternum, subsequent encounter|Other sprain of sternum, subsequent encounter +C2835740|T037|PT|S23.428S|ICD10CM|Other sprain of sternum, sequela|Other sprain of sternum, sequela +C2835740|T037|AB|S23.428S|ICD10CM|Other sprain of sternum, sequela|Other sprain of sternum, sequela +C0434411|T037|AB|S23.429|ICD10CM|Unspecified sprain of sternum|Unspecified sprain of sternum +C0434411|T037|HT|S23.429|ICD10CM|Unspecified sprain of sternum|Unspecified sprain of sternum +C2835741|T037|PT|S23.429A|ICD10CM|Unspecified sprain of sternum, initial encounter|Unspecified sprain of sternum, initial encounter +C2835741|T037|AB|S23.429A|ICD10CM|Unspecified sprain of sternum, initial encounter|Unspecified sprain of sternum, initial encounter +C2835742|T037|PT|S23.429D|ICD10CM|Unspecified sprain of sternum, subsequent encounter|Unspecified sprain of sternum, subsequent encounter +C2835742|T037|AB|S23.429D|ICD10CM|Unspecified sprain of sternum, subsequent encounter|Unspecified sprain of sternum, subsequent encounter +C2835743|T037|PT|S23.429S|ICD10CM|Unspecified sprain of sternum, sequela|Unspecified sprain of sternum, sequela +C2835743|T037|AB|S23.429S|ICD10CM|Unspecified sprain of sternum, sequela|Unspecified sprain of sternum, sequela +C0478239|T037|PT|S23.5|ICD10|Sprain and strain of other and unspecified parts of thorax|Sprain and strain of other and unspecified parts of thorax +C2835744|T037|AB|S23.8|ICD10CM|Sprain of other specified parts of thorax|Sprain of other specified parts of thorax +C2835744|T037|HT|S23.8|ICD10CM|Sprain of other specified parts of thorax|Sprain of other specified parts of thorax +C2977828|T037|AB|S23.8XXA|ICD10CM|Sprain of other specified parts of thorax, initial encounter|Sprain of other specified parts of thorax, initial encounter +C2977828|T037|PT|S23.8XXA|ICD10CM|Sprain of other specified parts of thorax, initial encounter|Sprain of other specified parts of thorax, initial encounter +C2977829|T037|AB|S23.8XXD|ICD10CM|Sprain of other specified parts of thorax, subs encntr|Sprain of other specified parts of thorax, subs encntr +C2977829|T037|PT|S23.8XXD|ICD10CM|Sprain of other specified parts of thorax, subsequent encounter|Sprain of other specified parts of thorax, subsequent encounter +C2977830|T037|AB|S23.8XXS|ICD10CM|Sprain of other specified parts of thorax, sequela|Sprain of other specified parts of thorax, sequela +C2977830|T037|PT|S23.8XXS|ICD10CM|Sprain of other specified parts of thorax, sequela|Sprain of other specified parts of thorax, sequela +C2835748|T037|AB|S23.9|ICD10CM|Sprain of unspecified parts of thorax|Sprain of unspecified parts of thorax +C2835748|T037|HT|S23.9|ICD10CM|Sprain of unspecified parts of thorax|Sprain of unspecified parts of thorax +C2835749|T037|PT|S23.9XXA|ICD10CM|Sprain of unspecified parts of thorax, initial encounter|Sprain of unspecified parts of thorax, initial encounter +C2835749|T037|AB|S23.9XXA|ICD10CM|Sprain of unspecified parts of thorax, initial encounter|Sprain of unspecified parts of thorax, initial encounter +C2835750|T037|PT|S23.9XXD|ICD10CM|Sprain of unspecified parts of thorax, subsequent encounter|Sprain of unspecified parts of thorax, subsequent encounter +C2835750|T037|AB|S23.9XXD|ICD10CM|Sprain of unspecified parts of thorax, subsequent encounter|Sprain of unspecified parts of thorax, subsequent encounter +C2835751|T037|PT|S23.9XXS|ICD10CM|Sprain of unspecified parts of thorax, sequela|Sprain of unspecified parts of thorax, sequela +C2835751|T037|AB|S23.9XXS|ICD10CM|Sprain of unspecified parts of thorax, sequela|Sprain of unspecified parts of thorax, sequela +C0452050|T037|HT|S24|ICD10|Injury of nerves and spinal cord at thorax level|Injury of nerves and spinal cord at thorax level +C0452050|T037|HT|S24|ICD10CM|Injury of nerves and spinal cord at thorax level|Injury of nerves and spinal cord at thorax level +C0452050|T037|AB|S24|ICD10CM|Injury of nerves and spinal cord at thorax level|Injury of nerves and spinal cord at thorax level +C0475571|T037|HT|S24.0|ICD10CM|Concussion and edema of thoracic spinal cord|Concussion and edema of thoracic spinal cord +C0475571|T037|AB|S24.0|ICD10CM|Concussion and edema of thoracic spinal cord|Concussion and edema of thoracic spinal cord +C0475571|T037|PT|S24.0|ICD10AE|Concussion and edema of thoracic spinal cord|Concussion and edema of thoracic spinal cord +C0475571|T037|PT|S24.0|ICD10|Concussion and oedema of thoracic spinal cord|Concussion and oedema of thoracic spinal cord +C2835752|T037|AB|S24.0XXA|ICD10CM|Concussion and edema of thoracic spinal cord, init encntr|Concussion and edema of thoracic spinal cord, init encntr +C2835752|T037|PT|S24.0XXA|ICD10CM|Concussion and edema of thoracic spinal cord, initial encounter|Concussion and edema of thoracic spinal cord, initial encounter +C2835753|T037|AB|S24.0XXD|ICD10CM|Concussion and edema of thoracic spinal cord, subs encntr|Concussion and edema of thoracic spinal cord, subs encntr +C2835753|T037|PT|S24.0XXD|ICD10CM|Concussion and edema of thoracic spinal cord, subsequent encounter|Concussion and edema of thoracic spinal cord, subsequent encounter +C2835754|T037|AB|S24.0XXS|ICD10CM|Concussion and edema of thoracic spinal cord, sequela|Concussion and edema of thoracic spinal cord, sequela +C2835754|T037|PT|S24.0XXS|ICD10CM|Concussion and edema of thoracic spinal cord, sequela|Concussion and edema of thoracic spinal cord, sequela +C0478240|T037|PT|S24.1|ICD10|Other and unspecified injuries of thoracic spinal cord|Other and unspecified injuries of thoracic spinal cord +C0478240|T037|HT|S24.1|ICD10CM|Other and unspecified injuries of thoracic spinal cord|Other and unspecified injuries of thoracic spinal cord +C0478240|T037|AB|S24.1|ICD10CM|Other and unspecified injuries of thoracic spinal cord|Other and unspecified injuries of thoracic spinal cord +C0840477|T037|AB|S24.10|ICD10CM|Unspecified injury of thoracic spinal cord|Unspecified injury of thoracic spinal cord +C0840477|T037|HT|S24.10|ICD10CM|Unspecified injury of thoracic spinal cord|Unspecified injury of thoracic spinal cord +C2835755|T037|AB|S24.101|ICD10CM|Unspecified injury at T1 level of thoracic spinal cord|Unspecified injury at T1 level of thoracic spinal cord +C2835755|T037|HT|S24.101|ICD10CM|Unspecified injury at T1 level of thoracic spinal cord|Unspecified injury at T1 level of thoracic spinal cord +C2835756|T037|AB|S24.101A|ICD10CM|Unsp injury at T1 level of thoracic spinal cord, init encntr|Unsp injury at T1 level of thoracic spinal cord, init encntr +C2835756|T037|PT|S24.101A|ICD10CM|Unspecified injury at T1 level of thoracic spinal cord, initial encounter|Unspecified injury at T1 level of thoracic spinal cord, initial encounter +C2835757|T037|AB|S24.101D|ICD10CM|Unsp injury at T1 level of thoracic spinal cord, subs encntr|Unsp injury at T1 level of thoracic spinal cord, subs encntr +C2835757|T037|PT|S24.101D|ICD10CM|Unspecified injury at T1 level of thoracic spinal cord, subsequent encounter|Unspecified injury at T1 level of thoracic spinal cord, subsequent encounter +C2835758|T037|AB|S24.101S|ICD10CM|Unsp injury at T1 level of thoracic spinal cord, sequela|Unsp injury at T1 level of thoracic spinal cord, sequela +C2835758|T037|PT|S24.101S|ICD10CM|Unspecified injury at T1 level of thoracic spinal cord, sequela|Unspecified injury at T1 level of thoracic spinal cord, sequela +C2835759|T037|AB|S24.102|ICD10CM|Unspecified injury at T2-T6 level of thoracic spinal cord|Unspecified injury at T2-T6 level of thoracic spinal cord +C2835759|T037|HT|S24.102|ICD10CM|Unspecified injury at T2-T6 level of thoracic spinal cord|Unspecified injury at T2-T6 level of thoracic spinal cord +C2835760|T037|AB|S24.102A|ICD10CM|Unsp injury at T2-T6 level of thoracic spinal cord, init|Unsp injury at T2-T6 level of thoracic spinal cord, init +C2835760|T037|PT|S24.102A|ICD10CM|Unspecified injury at T2-T6 level of thoracic spinal cord, initial encounter|Unspecified injury at T2-T6 level of thoracic spinal cord, initial encounter +C2835761|T037|AB|S24.102D|ICD10CM|Unsp injury at T2-T6 level of thoracic spinal cord, subs|Unsp injury at T2-T6 level of thoracic spinal cord, subs +C2835761|T037|PT|S24.102D|ICD10CM|Unspecified injury at T2-T6 level of thoracic spinal cord, subsequent encounter|Unspecified injury at T2-T6 level of thoracic spinal cord, subsequent encounter +C2835762|T037|AB|S24.102S|ICD10CM|Unsp injury at T2-T6 level of thoracic spinal cord, sequela|Unsp injury at T2-T6 level of thoracic spinal cord, sequela +C2835762|T037|PT|S24.102S|ICD10CM|Unspecified injury at T2-T6 level of thoracic spinal cord, sequela|Unspecified injury at T2-T6 level of thoracic spinal cord, sequela +C2835763|T037|AB|S24.103|ICD10CM|Unspecified injury at T7-T10 level of thoracic spinal cord|Unspecified injury at T7-T10 level of thoracic spinal cord +C2835763|T037|HT|S24.103|ICD10CM|Unspecified injury at T7-T10 level of thoracic spinal cord|Unspecified injury at T7-T10 level of thoracic spinal cord +C2835764|T037|AB|S24.103A|ICD10CM|Unsp injury at T7-T10 level of thoracic spinal cord, init|Unsp injury at T7-T10 level of thoracic spinal cord, init +C2835764|T037|PT|S24.103A|ICD10CM|Unspecified injury at T7-T10 level of thoracic spinal cord, initial encounter|Unspecified injury at T7-T10 level of thoracic spinal cord, initial encounter +C2835765|T037|AB|S24.103D|ICD10CM|Unsp injury at T7-T10 level of thoracic spinal cord, subs|Unsp injury at T7-T10 level of thoracic spinal cord, subs +C2835765|T037|PT|S24.103D|ICD10CM|Unspecified injury at T7-T10 level of thoracic spinal cord, subsequent encounter|Unspecified injury at T7-T10 level of thoracic spinal cord, subsequent encounter +C2835766|T037|AB|S24.103S|ICD10CM|Unsp injury at T7-T10 level of thoracic spinal cord, sequela|Unsp injury at T7-T10 level of thoracic spinal cord, sequela +C2835766|T037|PT|S24.103S|ICD10CM|Unspecified injury at T7-T10 level of thoracic spinal cord, sequela|Unspecified injury at T7-T10 level of thoracic spinal cord, sequela +C2835767|T037|AB|S24.104|ICD10CM|Unspecified injury at T11-T12 level of thoracic spinal cord|Unspecified injury at T11-T12 level of thoracic spinal cord +C2835767|T037|HT|S24.104|ICD10CM|Unspecified injury at T11-T12 level of thoracic spinal cord|Unspecified injury at T11-T12 level of thoracic spinal cord +C2835768|T037|AB|S24.104A|ICD10CM|Unsp injury at T11-T12 level of thoracic spinal cord, init|Unsp injury at T11-T12 level of thoracic spinal cord, init +C2835768|T037|PT|S24.104A|ICD10CM|Unspecified injury at T11-T12 level of thoracic spinal cord, initial encounter|Unspecified injury at T11-T12 level of thoracic spinal cord, initial encounter +C2835769|T037|AB|S24.104D|ICD10CM|Unsp injury at T11-T12 level of thoracic spinal cord, subs|Unsp injury at T11-T12 level of thoracic spinal cord, subs +C2835769|T037|PT|S24.104D|ICD10CM|Unspecified injury at T11-T12 level of thoracic spinal cord, subsequent encounter|Unspecified injury at T11-T12 level of thoracic spinal cord, subsequent encounter +C2835770|T037|AB|S24.104S|ICD10CM|Unsp injury at T11-T12, sequela|Unsp injury at T11-T12, sequela +C2835770|T037|PT|S24.104S|ICD10CM|Unspecified injury at T11-T12 level of thoracic spinal cord, sequela|Unspecified injury at T11-T12 level of thoracic spinal cord, sequela +C0840477|T037|ET|S24.109|ICD10CM|Injury of thoracic spinal cord NOS|Injury of thoracic spinal cord NOS +C2835771|T037|AB|S24.109|ICD10CM|Unsp injury at unspecified level of thoracic spinal cord|Unsp injury at unspecified level of thoracic spinal cord +C2835771|T037|HT|S24.109|ICD10CM|Unspecified injury at unspecified level of thoracic spinal cord|Unspecified injury at unspecified level of thoracic spinal cord +C2835772|T037|AB|S24.109A|ICD10CM|Unsp injury at unsp level of thoracic spinal cord, init|Unsp injury at unsp level of thoracic spinal cord, init +C2835772|T037|PT|S24.109A|ICD10CM|Unspecified injury at unspecified level of thoracic spinal cord, initial encounter|Unspecified injury at unspecified level of thoracic spinal cord, initial encounter +C2835773|T037|AB|S24.109D|ICD10CM|Unsp injury at unsp level of thoracic spinal cord, subs|Unsp injury at unsp level of thoracic spinal cord, subs +C2835773|T037|PT|S24.109D|ICD10CM|Unspecified injury at unspecified level of thoracic spinal cord, subsequent encounter|Unspecified injury at unspecified level of thoracic spinal cord, subsequent encounter +C2835774|T037|AB|S24.109S|ICD10CM|Unsp injury at unsp level of thoracic spinal cord, sequela|Unsp injury at unsp level of thoracic spinal cord, sequela +C2835774|T037|PT|S24.109S|ICD10CM|Unspecified injury at unspecified level of thoracic spinal cord, sequela|Unspecified injury at unspecified level of thoracic spinal cord, sequela +C0840478|T037|HT|S24.11|ICD10CM|Complete lesion of thoracic spinal cord|Complete lesion of thoracic spinal cord +C0840478|T037|AB|S24.11|ICD10CM|Complete lesion of thoracic spinal cord|Complete lesion of thoracic spinal cord +C2835775|T037|AB|S24.111|ICD10CM|Complete lesion at T1 level of thoracic spinal cord|Complete lesion at T1 level of thoracic spinal cord +C2835775|T037|HT|S24.111|ICD10CM|Complete lesion at T1 level of thoracic spinal cord|Complete lesion at T1 level of thoracic spinal cord +C2835776|T037|AB|S24.111A|ICD10CM|Complete lesion at T1 level of thoracic spinal cord, init|Complete lesion at T1 level of thoracic spinal cord, init +C2835776|T037|PT|S24.111A|ICD10CM|Complete lesion at T1 level of thoracic spinal cord, initial encounter|Complete lesion at T1 level of thoracic spinal cord, initial encounter +C2835777|T037|AB|S24.111D|ICD10CM|Complete lesion at T1 level of thoracic spinal cord, subs|Complete lesion at T1 level of thoracic spinal cord, subs +C2835777|T037|PT|S24.111D|ICD10CM|Complete lesion at T1 level of thoracic spinal cord, subsequent encounter|Complete lesion at T1 level of thoracic spinal cord, subsequent encounter +C2835778|T037|AB|S24.111S|ICD10CM|Complete lesion at T1 level of thoracic spinal cord, sequela|Complete lesion at T1 level of thoracic spinal cord, sequela +C2835778|T037|PT|S24.111S|ICD10CM|Complete lesion at T1 level of thoracic spinal cord, sequela|Complete lesion at T1 level of thoracic spinal cord, sequela +C2835779|T037|AB|S24.112|ICD10CM|Complete lesion at T2-T6 level of thoracic spinal cord|Complete lesion at T2-T6 level of thoracic spinal cord +C2835779|T037|HT|S24.112|ICD10CM|Complete lesion at T2-T6 level of thoracic spinal cord|Complete lesion at T2-T6 level of thoracic spinal cord +C2835780|T037|AB|S24.112A|ICD10CM|Complete lesion at T2-T6 level of thoracic spinal cord, init|Complete lesion at T2-T6 level of thoracic spinal cord, init +C2835780|T037|PT|S24.112A|ICD10CM|Complete lesion at T2-T6 level of thoracic spinal cord, initial encounter|Complete lesion at T2-T6 level of thoracic spinal cord, initial encounter +C2835781|T037|AB|S24.112D|ICD10CM|Complete lesion at T2-T6 level of thoracic spinal cord, subs|Complete lesion at T2-T6 level of thoracic spinal cord, subs +C2835781|T037|PT|S24.112D|ICD10CM|Complete lesion at T2-T6 level of thoracic spinal cord, subsequent encounter|Complete lesion at T2-T6 level of thoracic spinal cord, subsequent encounter +C2835782|T037|PT|S24.112S|ICD10CM|Complete lesion at T2-T6 level of thoracic spinal cord, sequela|Complete lesion at T2-T6 level of thoracic spinal cord, sequela +C2835782|T037|AB|S24.112S|ICD10CM|Complete lesion at T2-T6, sequela|Complete lesion at T2-T6, sequela +C2835783|T037|AB|S24.113|ICD10CM|Complete lesion at T7-T10 level of thoracic spinal cord|Complete lesion at T7-T10 level of thoracic spinal cord +C2835783|T037|HT|S24.113|ICD10CM|Complete lesion at T7-T10 level of thoracic spinal cord|Complete lesion at T7-T10 level of thoracic spinal cord +C2835784|T037|PT|S24.113A|ICD10CM|Complete lesion at T7-T10 level of thoracic spinal cord, initial encounter|Complete lesion at T7-T10 level of thoracic spinal cord, initial encounter +C2835784|T037|AB|S24.113A|ICD10CM|Complete lesion at T7-T10, init|Complete lesion at T7-T10, init +C2835785|T037|PT|S24.113D|ICD10CM|Complete lesion at T7-T10 level of thoracic spinal cord, subsequent encounter|Complete lesion at T7-T10 level of thoracic spinal cord, subsequent encounter +C2835785|T037|AB|S24.113D|ICD10CM|Complete lesion at T7-T10, subs|Complete lesion at T7-T10, subs +C2835786|T037|PT|S24.113S|ICD10CM|Complete lesion at T7-T10 level of thoracic spinal cord, sequela|Complete lesion at T7-T10 level of thoracic spinal cord, sequela +C2835786|T037|AB|S24.113S|ICD10CM|Complete lesion at T7-T10, sequela|Complete lesion at T7-T10, sequela +C2835787|T037|AB|S24.114|ICD10CM|Complete lesion at T11-T12 level of thoracic spinal cord|Complete lesion at T11-T12 level of thoracic spinal cord +C2835787|T037|HT|S24.114|ICD10CM|Complete lesion at T11-T12 level of thoracic spinal cord|Complete lesion at T11-T12 level of thoracic spinal cord +C2835788|T037|PT|S24.114A|ICD10CM|Complete lesion at T11-T12 level of thoracic spinal cord, initial encounter|Complete lesion at T11-T12 level of thoracic spinal cord, initial encounter +C2835788|T037|AB|S24.114A|ICD10CM|Complete lesion at T11-T12, init|Complete lesion at T11-T12, init +C2835789|T037|PT|S24.114D|ICD10CM|Complete lesion at T11-T12 level of thoracic spinal cord, subsequent encounter|Complete lesion at T11-T12 level of thoracic spinal cord, subsequent encounter +C2835789|T037|AB|S24.114D|ICD10CM|Complete lesion at T11-T12, subs|Complete lesion at T11-T12, subs +C2835790|T037|PT|S24.114S|ICD10CM|Complete lesion at T11-T12 level of thoracic spinal cord, sequela|Complete lesion at T11-T12 level of thoracic spinal cord, sequela +C2835790|T037|AB|S24.114S|ICD10CM|Complete lesion at T11-T12, sequela|Complete lesion at T11-T12, sequela +C2835791|T037|AB|S24.119|ICD10CM|Complete lesion at unspecified level of thoracic spinal cord|Complete lesion at unspecified level of thoracic spinal cord +C2835791|T037|HT|S24.119|ICD10CM|Complete lesion at unspecified level of thoracic spinal cord|Complete lesion at unspecified level of thoracic spinal cord +C2835792|T037|AB|S24.119A|ICD10CM|Complete lesion at unsp level of thoracic spinal cord, init|Complete lesion at unsp level of thoracic spinal cord, init +C2835792|T037|PT|S24.119A|ICD10CM|Complete lesion at unspecified level of thoracic spinal cord, initial encounter|Complete lesion at unspecified level of thoracic spinal cord, initial encounter +C2835793|T037|AB|S24.119D|ICD10CM|Complete lesion at unsp level of thoracic spinal cord, subs|Complete lesion at unsp level of thoracic spinal cord, subs +C2835793|T037|PT|S24.119D|ICD10CM|Complete lesion at unspecified level of thoracic spinal cord, subsequent encounter|Complete lesion at unspecified level of thoracic spinal cord, subsequent encounter +C2835794|T037|AB|S24.119S|ICD10CM|Complete lesion at unsp level of thor spinal cord, sequela|Complete lesion at unsp level of thor spinal cord, sequela +C2835794|T037|PT|S24.119S|ICD10CM|Complete lesion at unspecified level of thoracic spinal cord, sequela|Complete lesion at unspecified level of thoracic spinal cord, sequela +C2835795|T047|HT|S24.13|ICD10CM|Anterior cord syndrome of thoracic spinal cord|Anterior cord syndrome of thoracic spinal cord +C2835795|T047|AB|S24.13|ICD10CM|Anterior cord syndrome of thoracic spinal cord|Anterior cord syndrome of thoracic spinal cord +C2835796|T047|AB|S24.131|ICD10CM|Anterior cord syndrome at T1 level of thoracic spinal cord|Anterior cord syndrome at T1 level of thoracic spinal cord +C2835796|T047|HT|S24.131|ICD10CM|Anterior cord syndrome at T1 level of thoracic spinal cord|Anterior cord syndrome at T1 level of thoracic spinal cord +C2835797|T037|PT|S24.131A|ICD10CM|Anterior cord syndrome at T1 level of thoracic spinal cord, initial encounter|Anterior cord syndrome at T1 level of thoracic spinal cord, initial encounter +C2835797|T037|AB|S24.131A|ICD10CM|Anterior cord syndrome at T1, init|Anterior cord syndrome at T1, init +C2835798|T037|PT|S24.131D|ICD10CM|Anterior cord syndrome at T1 level of thoracic spinal cord, subsequent encounter|Anterior cord syndrome at T1 level of thoracic spinal cord, subsequent encounter +C2835798|T037|AB|S24.131D|ICD10CM|Anterior cord syndrome at T1, subs|Anterior cord syndrome at T1, subs +C2835799|T037|PT|S24.131S|ICD10CM|Anterior cord syndrome at T1 level of thoracic spinal cord, sequela|Anterior cord syndrome at T1 level of thoracic spinal cord, sequela +C2835799|T037|AB|S24.131S|ICD10CM|Anterior cord syndrome at T1, sequela|Anterior cord syndrome at T1, sequela +C2835800|T037|AB|S24.132|ICD10CM|Anterior cord syndrome at T2-T6|Anterior cord syndrome at T2-T6 +C2835800|T037|HT|S24.132|ICD10CM|Anterior cord syndrome at T2-T6 level of thoracic spinal cord|Anterior cord syndrome at T2-T6 level of thoracic spinal cord +C2835801|T037|PT|S24.132A|ICD10CM|Anterior cord syndrome at T2-T6 level of thoracic spinal cord, initial encounter|Anterior cord syndrome at T2-T6 level of thoracic spinal cord, initial encounter +C2835801|T037|AB|S24.132A|ICD10CM|Anterior cord syndrome at T2-T6, init|Anterior cord syndrome at T2-T6, init +C2835802|T037|PT|S24.132D|ICD10CM|Anterior cord syndrome at T2-T6 level of thoracic spinal cord, subsequent encounter|Anterior cord syndrome at T2-T6 level of thoracic spinal cord, subsequent encounter +C2835802|T037|AB|S24.132D|ICD10CM|Anterior cord syndrome at T2-T6, subs|Anterior cord syndrome at T2-T6, subs +C2835803|T037|PT|S24.132S|ICD10CM|Anterior cord syndrome at T2-T6 level of thoracic spinal cord, sequela|Anterior cord syndrome at T2-T6 level of thoracic spinal cord, sequela +C2835803|T037|AB|S24.132S|ICD10CM|Anterior cord syndrome at T2-T6, sequela|Anterior cord syndrome at T2-T6, sequela +C2835804|T037|AB|S24.133|ICD10CM|Anterior cord syndrome at T7-T10|Anterior cord syndrome at T7-T10 +C2835804|T037|HT|S24.133|ICD10CM|Anterior cord syndrome at T7-T10 level of thoracic spinal cord|Anterior cord syndrome at T7-T10 level of thoracic spinal cord +C2835805|T037|PT|S24.133A|ICD10CM|Anterior cord syndrome at T7-T10 level of thoracic spinal cord, initial encounter|Anterior cord syndrome at T7-T10 level of thoracic spinal cord, initial encounter +C2835805|T037|AB|S24.133A|ICD10CM|Anterior cord syndrome at T7-T10, init|Anterior cord syndrome at T7-T10, init +C2835806|T037|PT|S24.133D|ICD10CM|Anterior cord syndrome at T7-T10 level of thoracic spinal cord, subsequent encounter|Anterior cord syndrome at T7-T10 level of thoracic spinal cord, subsequent encounter +C2835806|T037|AB|S24.133D|ICD10CM|Anterior cord syndrome at T7-T10, subs|Anterior cord syndrome at T7-T10, subs +C2835807|T037|PT|S24.133S|ICD10CM|Anterior cord syndrome at T7-T10 level of thoracic spinal cord, sequela|Anterior cord syndrome at T7-T10 level of thoracic spinal cord, sequela +C2835807|T037|AB|S24.133S|ICD10CM|Anterior cord syndrome at T7-T10, sequela|Anterior cord syndrome at T7-T10, sequela +C2835808|T037|AB|S24.134|ICD10CM|Anterior cord syndrome at T11-T12|Anterior cord syndrome at T11-T12 +C2835808|T037|HT|S24.134|ICD10CM|Anterior cord syndrome at T11-T12 level of thoracic spinal cord|Anterior cord syndrome at T11-T12 level of thoracic spinal cord +C2835809|T037|PT|S24.134A|ICD10CM|Anterior cord syndrome at T11-T12 level of thoracic spinal cord, initial encounter|Anterior cord syndrome at T11-T12 level of thoracic spinal cord, initial encounter +C2835809|T037|AB|S24.134A|ICD10CM|Anterior cord syndrome at T11-T12, init|Anterior cord syndrome at T11-T12, init +C2835810|T037|PT|S24.134D|ICD10CM|Anterior cord syndrome at T11-T12 level of thoracic spinal cord, subsequent encounter|Anterior cord syndrome at T11-T12 level of thoracic spinal cord, subsequent encounter +C2835810|T037|AB|S24.134D|ICD10CM|Anterior cord syndrome at T11-T12, subs|Anterior cord syndrome at T11-T12, subs +C2835811|T037|PT|S24.134S|ICD10CM|Anterior cord syndrome at T11-T12 level of thoracic spinal cord, sequela|Anterior cord syndrome at T11-T12 level of thoracic spinal cord, sequela +C2835811|T037|AB|S24.134S|ICD10CM|Anterior cord syndrome at T11-T12, sequela|Anterior cord syndrome at T11-T12, sequela +C2835812|T037|AB|S24.139|ICD10CM|Anterior cord syndrome at unsp level of thoracic spinal cord|Anterior cord syndrome at unsp level of thoracic spinal cord +C2835812|T037|HT|S24.139|ICD10CM|Anterior cord syndrome at unspecified level of thoracic spinal cord|Anterior cord syndrome at unspecified level of thoracic spinal cord +C2835813|T037|AB|S24.139A|ICD10CM|Ant cord syndrome at unsp level of thor spinal cord, init|Ant cord syndrome at unsp level of thor spinal cord, init +C2835813|T037|PT|S24.139A|ICD10CM|Anterior cord syndrome at unspecified level of thoracic spinal cord, initial encounter|Anterior cord syndrome at unspecified level of thoracic spinal cord, initial encounter +C2835814|T037|AB|S24.139D|ICD10CM|Ant cord syndrome at unsp level of thor spinal cord, subs|Ant cord syndrome at unsp level of thor spinal cord, subs +C2835814|T037|PT|S24.139D|ICD10CM|Anterior cord syndrome at unspecified level of thoracic spinal cord, subsequent encounter|Anterior cord syndrome at unspecified level of thoracic spinal cord, subsequent encounter +C2835815|T037|AB|S24.139S|ICD10CM|Ant cord syndrome at unsp level of thor spinal cord, sequela|Ant cord syndrome at unsp level of thor spinal cord, sequela +C2835815|T037|PT|S24.139S|ICD10CM|Anterior cord syndrome at unspecified level of thoracic spinal cord, sequela|Anterior cord syndrome at unspecified level of thoracic spinal cord, sequela +C2835816|T047|HT|S24.14|ICD10CM|Brown-Séquard syndrome of thoracic spinal cord|Brown-Séquard syndrome of thoracic spinal cord +C2835816|T047|AB|S24.14|ICD10CM|Brown-Sequard syndrome of thoracic spinal cord|Brown-Sequard syndrome of thoracic spinal cord +C2835817|T037|HT|S24.141|ICD10CM|Brown-Séquard syndrome at T1 level of thoracic spinal cord|Brown-Séquard syndrome at T1 level of thoracic spinal cord +C2835817|T037|AB|S24.141|ICD10CM|Brown-Sequard syndrome at T1 level of thoracic spinal cord|Brown-Sequard syndrome at T1 level of thoracic spinal cord +C2835818|T037|PT|S24.141A|ICD10CM|Brown-Séquard syndrome at T1 level of thoracic spinal cord, initial encounter|Brown-Séquard syndrome at T1 level of thoracic spinal cord, initial encounter +C2835818|T037|AB|S24.141A|ICD10CM|Brown-Sequard syndrome at T1, init|Brown-Sequard syndrome at T1, init +C2835819|T037|PT|S24.141D|ICD10CM|Brown-Séquard syndrome at T1 level of thoracic spinal cord, subsequent encounter|Brown-Séquard syndrome at T1 level of thoracic spinal cord, subsequent encounter +C2835819|T037|AB|S24.141D|ICD10CM|Brown-Sequard syndrome at T1, subs|Brown-Sequard syndrome at T1, subs +C2835820|T037|PT|S24.141S|ICD10CM|Brown-Séquard syndrome at T1 level of thoracic spinal cord, sequela|Brown-Séquard syndrome at T1 level of thoracic spinal cord, sequela +C2835820|T037|AB|S24.141S|ICD10CM|Brown-Sequard syndrome at T1, sequela|Brown-Sequard syndrome at T1, sequela +C2835821|T037|AB|S24.142|ICD10CM|Brown-Sequard syndrome at T2-T6|Brown-Sequard syndrome at T2-T6 +C2835821|T037|HT|S24.142|ICD10CM|Brown-Séquard syndrome at T2-T6 level of thoracic spinal cord|Brown-Séquard syndrome at T2-T6 level of thoracic spinal cord +C2835822|T037|PT|S24.142A|ICD10CM|Brown-Séquard syndrome at T2-T6 level of thoracic spinal cord, initial encounter|Brown-Séquard syndrome at T2-T6 level of thoracic spinal cord, initial encounter +C2835822|T037|AB|S24.142A|ICD10CM|Brown-Sequard syndrome at T2-T6, init|Brown-Sequard syndrome at T2-T6, init +C2835823|T037|PT|S24.142D|ICD10CM|Brown-Séquard syndrome at T2-T6 level of thoracic spinal cord, subsequent encounter|Brown-Séquard syndrome at T2-T6 level of thoracic spinal cord, subsequent encounter +C2835823|T037|AB|S24.142D|ICD10CM|Brown-Sequard syndrome at T2-T6, subs|Brown-Sequard syndrome at T2-T6, subs +C2835824|T037|PT|S24.142S|ICD10CM|Brown-Séquard syndrome at T2-T6 level of thoracic spinal cord, sequela|Brown-Séquard syndrome at T2-T6 level of thoracic spinal cord, sequela +C2835824|T037|AB|S24.142S|ICD10CM|Brown-Sequard syndrome at T2-T6, sequela|Brown-Sequard syndrome at T2-T6, sequela +C2835825|T037|AB|S24.143|ICD10CM|Brown-Sequard syndrome at T7-T10|Brown-Sequard syndrome at T7-T10 +C2835825|T037|HT|S24.143|ICD10CM|Brown-Séquard syndrome at T7-T10 level of thoracic spinal cord|Brown-Séquard syndrome at T7-T10 level of thoracic spinal cord +C2835826|T037|PT|S24.143A|ICD10CM|Brown-Séquard syndrome at T7-T10 level of thoracic spinal cord, initial encounter|Brown-Séquard syndrome at T7-T10 level of thoracic spinal cord, initial encounter +C2835826|T037|AB|S24.143A|ICD10CM|Brown-Sequard syndrome at T7-T10, init|Brown-Sequard syndrome at T7-T10, init +C2835827|T037|PT|S24.143D|ICD10CM|Brown-Séquard syndrome at T7-T10 level of thoracic spinal cord, subsequent encounter|Brown-Séquard syndrome at T7-T10 level of thoracic spinal cord, subsequent encounter +C2835827|T037|AB|S24.143D|ICD10CM|Brown-Sequard syndrome at T7-T10, subs|Brown-Sequard syndrome at T7-T10, subs +C2835828|T037|PT|S24.143S|ICD10CM|Brown-Séquard syndrome at T7-T10 level of thoracic spinal cord, sequela|Brown-Séquard syndrome at T7-T10 level of thoracic spinal cord, sequela +C2835828|T037|AB|S24.143S|ICD10CM|Brown-Sequard syndrome at T7-T10, sequela|Brown-Sequard syndrome at T7-T10, sequela +C2835829|T037|AB|S24.144|ICD10CM|Brown-Sequard syndrome at T11-T12|Brown-Sequard syndrome at T11-T12 +C2835829|T037|HT|S24.144|ICD10CM|Brown-Séquard syndrome at T11-T12 level of thoracic spinal cord|Brown-Séquard syndrome at T11-T12 level of thoracic spinal cord +C2835830|T037|PT|S24.144A|ICD10CM|Brown-Séquard syndrome at T11-T12 level of thoracic spinal cord, initial encounter|Brown-Séquard syndrome at T11-T12 level of thoracic spinal cord, initial encounter +C2835830|T037|AB|S24.144A|ICD10CM|Brown-Sequard syndrome at T11-T12, init|Brown-Sequard syndrome at T11-T12, init +C2835831|T037|PT|S24.144D|ICD10CM|Brown-Séquard syndrome at T11-T12 level of thoracic spinal cord, subsequent encounter|Brown-Séquard syndrome at T11-T12 level of thoracic spinal cord, subsequent encounter +C2835831|T037|AB|S24.144D|ICD10CM|Brown-Sequard syndrome at T11-T12, subs|Brown-Sequard syndrome at T11-T12, subs +C2835832|T037|PT|S24.144S|ICD10CM|Brown-Séquard syndrome at T11-T12 level of thoracic spinal cord, sequela|Brown-Séquard syndrome at T11-T12 level of thoracic spinal cord, sequela +C2835832|T037|AB|S24.144S|ICD10CM|Brown-Sequard syndrome at T11-T12, sequela|Brown-Sequard syndrome at T11-T12, sequela +C2835833|T037|AB|S24.149|ICD10CM|Brown-Sequard syndrome at unsp level of thoracic spinal cord|Brown-Sequard syndrome at unsp level of thoracic spinal cord +C2835833|T037|HT|S24.149|ICD10CM|Brown-Séquard syndrome at unspecified level of thoracic spinal cord|Brown-Séquard syndrome at unspecified level of thoracic spinal cord +C2835834|T037|AB|S24.149A|ICD10CM|Brown-Sequard synd at unsp level of thor spinal cord, init|Brown-Sequard synd at unsp level of thor spinal cord, init +C2835834|T037|PT|S24.149A|ICD10CM|Brown-Séquard syndrome at unspecified level of thoracic spinal cord, initial encounter|Brown-Séquard syndrome at unspecified level of thoracic spinal cord, initial encounter +C2835835|T037|AB|S24.149D|ICD10CM|Brown-Sequard synd at unsp level of thor spinal cord, subs|Brown-Sequard synd at unsp level of thor spinal cord, subs +C2835835|T037|PT|S24.149D|ICD10CM|Brown-Séquard syndrome at unspecified level of thoracic spinal cord, subsequent encounter|Brown-Séquard syndrome at unspecified level of thoracic spinal cord, subsequent encounter +C2835836|T037|AB|S24.149S|ICD10CM|Brown-Sequard synd at unsp level of thor spinal cord, sqla|Brown-Sequard synd at unsp level of thor spinal cord, sqla +C2835836|T037|PT|S24.149S|ICD10CM|Brown-Séquard syndrome at unspecified level of thoracic spinal cord, sequela|Brown-Séquard syndrome at unspecified level of thoracic spinal cord, sequela +C2835837|T020|ET|S24.15|ICD10CM|Incomplete lesion of thoracic spinal cord NOS|Incomplete lesion of thoracic spinal cord NOS +C2835839|T037|AB|S24.15|ICD10CM|Other incomplete lesions of thoracic spinal cord|Other incomplete lesions of thoracic spinal cord +C2835839|T037|HT|S24.15|ICD10CM|Other incomplete lesions of thoracic spinal cord|Other incomplete lesions of thoracic spinal cord +C2835838|T047|ET|S24.15|ICD10CM|Posterior cord syndrome of thoracic spinal cord|Posterior cord syndrome of thoracic spinal cord +C2835840|T037|AB|S24.151|ICD10CM|Other incomplete lesion at T1 level of thoracic spinal cord|Other incomplete lesion at T1 level of thoracic spinal cord +C2835840|T037|HT|S24.151|ICD10CM|Other incomplete lesion at T1 level of thoracic spinal cord|Other incomplete lesion at T1 level of thoracic spinal cord +C2835841|T037|AB|S24.151A|ICD10CM|Oth incomplete lesion at T1, init|Oth incomplete lesion at T1, init +C2835841|T037|PT|S24.151A|ICD10CM|Other incomplete lesion at T1 level of thoracic spinal cord, initial encounter|Other incomplete lesion at T1 level of thoracic spinal cord, initial encounter +C2835842|T037|AB|S24.151D|ICD10CM|Oth incomplete lesion at T1, subs|Oth incomplete lesion at T1, subs +C2835842|T037|PT|S24.151D|ICD10CM|Other incomplete lesion at T1 level of thoracic spinal cord, subsequent encounter|Other incomplete lesion at T1 level of thoracic spinal cord, subsequent encounter +C2835843|T037|AB|S24.151S|ICD10CM|Oth incomplete lesion at T1, sequela|Oth incomplete lesion at T1, sequela +C2835843|T037|PT|S24.151S|ICD10CM|Other incomplete lesion at T1 level of thoracic spinal cord, sequela|Other incomplete lesion at T1 level of thoracic spinal cord, sequela +C2835844|T037|AB|S24.152|ICD10CM|Oth incomplete lesion at T2-T6 level of thoracic spinal cord|Oth incomplete lesion at T2-T6 level of thoracic spinal cord +C2835844|T037|HT|S24.152|ICD10CM|Other incomplete lesion at T2-T6 level of thoracic spinal cord|Other incomplete lesion at T2-T6 level of thoracic spinal cord +C2835845|T037|AB|S24.152A|ICD10CM|Oth incomplete lesion at T2-T6, init|Oth incomplete lesion at T2-T6, init +C2835845|T037|PT|S24.152A|ICD10CM|Other incomplete lesion at T2-T6 level of thoracic spinal cord, initial encounter|Other incomplete lesion at T2-T6 level of thoracic spinal cord, initial encounter +C2835846|T037|AB|S24.152D|ICD10CM|Oth incomplete lesion at T2-T6, subs|Oth incomplete lesion at T2-T6, subs +C2835846|T037|PT|S24.152D|ICD10CM|Other incomplete lesion at T2-T6 level of thoracic spinal cord, subsequent encounter|Other incomplete lesion at T2-T6 level of thoracic spinal cord, subsequent encounter +C2835847|T037|AB|S24.152S|ICD10CM|Oth incomplete lesion at T2-T6, sequela|Oth incomplete lesion at T2-T6, sequela +C2835847|T037|PT|S24.152S|ICD10CM|Other incomplete lesion at T2-T6 level of thoracic spinal cord, sequela|Other incomplete lesion at T2-T6 level of thoracic spinal cord, sequela +C2835848|T037|AB|S24.153|ICD10CM|Oth incomplete lesion at T7-T10|Oth incomplete lesion at T7-T10 +C2835848|T037|HT|S24.153|ICD10CM|Other incomplete lesion at T7-T10 level of thoracic spinal cord|Other incomplete lesion at T7-T10 level of thoracic spinal cord +C2835849|T037|AB|S24.153A|ICD10CM|Oth incomplete lesion at T7-T10, init|Oth incomplete lesion at T7-T10, init +C2835849|T037|PT|S24.153A|ICD10CM|Other incomplete lesion at T7-T10 level of thoracic spinal cord, initial encounter|Other incomplete lesion at T7-T10 level of thoracic spinal cord, initial encounter +C2835850|T037|AB|S24.153D|ICD10CM|Oth incomplete lesion at T7-T10, subs|Oth incomplete lesion at T7-T10, subs +C2835850|T037|PT|S24.153D|ICD10CM|Other incomplete lesion at T7-T10 level of thoracic spinal cord, subsequent encounter|Other incomplete lesion at T7-T10 level of thoracic spinal cord, subsequent encounter +C2835851|T037|AB|S24.153S|ICD10CM|Oth incomplete lesion at T7-T10, sequela|Oth incomplete lesion at T7-T10, sequela +C2835851|T037|PT|S24.153S|ICD10CM|Other incomplete lesion at T7-T10 level of thoracic spinal cord, sequela|Other incomplete lesion at T7-T10 level of thoracic spinal cord, sequela +C2835852|T037|AB|S24.154|ICD10CM|Oth incomplete lesion at T11-T12|Oth incomplete lesion at T11-T12 +C2835852|T037|HT|S24.154|ICD10CM|Other incomplete lesion at T11-T12 level of thoracic spinal cord|Other incomplete lesion at T11-T12 level of thoracic spinal cord +C2835853|T037|AB|S24.154A|ICD10CM|Oth incomplete lesion at T11-T12, init|Oth incomplete lesion at T11-T12, init +C2835853|T037|PT|S24.154A|ICD10CM|Other incomplete lesion at T11-T12 level of thoracic spinal cord, initial encounter|Other incomplete lesion at T11-T12 level of thoracic spinal cord, initial encounter +C2835854|T037|AB|S24.154D|ICD10CM|Oth incomplete lesion at T11-T12, subs|Oth incomplete lesion at T11-T12, subs +C2835854|T037|PT|S24.154D|ICD10CM|Other incomplete lesion at T11-T12 level of thoracic spinal cord, subsequent encounter|Other incomplete lesion at T11-T12 level of thoracic spinal cord, subsequent encounter +C2835855|T037|AB|S24.154S|ICD10CM|Oth incomplete lesion at T11-T12, sequela|Oth incomplete lesion at T11-T12, sequela +C2835855|T037|PT|S24.154S|ICD10CM|Other incomplete lesion at T11-T12 level of thoracic spinal cord, sequela|Other incomplete lesion at T11-T12 level of thoracic spinal cord, sequela +C2835856|T037|AB|S24.159|ICD10CM|Oth incomplete lesion at unsp level of thoracic spinal cord|Oth incomplete lesion at unsp level of thoracic spinal cord +C2835856|T037|HT|S24.159|ICD10CM|Other incomplete lesion at unspecified level of thoracic spinal cord|Other incomplete lesion at unspecified level of thoracic spinal cord +C2835857|T037|AB|S24.159A|ICD10CM|Oth incmpl lesion at unsp level of thor spinal cord, init|Oth incmpl lesion at unsp level of thor spinal cord, init +C2835857|T037|PT|S24.159A|ICD10CM|Other incomplete lesion at unspecified level of thoracic spinal cord, initial encounter|Other incomplete lesion at unspecified level of thoracic spinal cord, initial encounter +C2835858|T037|AB|S24.159D|ICD10CM|Oth incmpl lesion at unsp level of thor spinal cord, subs|Oth incmpl lesion at unsp level of thor spinal cord, subs +C2835858|T037|PT|S24.159D|ICD10CM|Other incomplete lesion at unspecified level of thoracic spinal cord, subsequent encounter|Other incomplete lesion at unspecified level of thoracic spinal cord, subsequent encounter +C2835859|T037|AB|S24.159S|ICD10CM|Oth incmpl lesion at unsp level of thor spinal cord, sequela|Oth incmpl lesion at unsp level of thor spinal cord, sequela +C2835859|T037|PT|S24.159S|ICD10CM|Other incomplete lesion at unspecified level of thoracic spinal cord, sequela|Other incomplete lesion at unspecified level of thoracic spinal cord, sequela +C0161443|T037|PT|S24.2|ICD10|Injury of nerve root of thoracic spine|Injury of nerve root of thoracic spine +C0161443|T037|HT|S24.2|ICD10CM|Injury of nerve root of thoracic spine|Injury of nerve root of thoracic spine +C0161443|T037|AB|S24.2|ICD10CM|Injury of nerve root of thoracic spine|Injury of nerve root of thoracic spine +C2835860|T037|AB|S24.2XXA|ICD10CM|Injury of nerve root of thoracic spine, initial encounter|Injury of nerve root of thoracic spine, initial encounter +C2835860|T037|PT|S24.2XXA|ICD10CM|Injury of nerve root of thoracic spine, initial encounter|Injury of nerve root of thoracic spine, initial encounter +C2835861|T037|AB|S24.2XXD|ICD10CM|Injury of nerve root of thoracic spine, subsequent encounter|Injury of nerve root of thoracic spine, subsequent encounter +C2835861|T037|PT|S24.2XXD|ICD10CM|Injury of nerve root of thoracic spine, subsequent encounter|Injury of nerve root of thoracic spine, subsequent encounter +C2835862|T037|AB|S24.2XXS|ICD10CM|Injury of nerve root of thoracic spine, sequela|Injury of nerve root of thoracic spine, sequela +C2835862|T037|PT|S24.2XXS|ICD10CM|Injury of nerve root of thoracic spine, sequela|Injury of nerve root of thoracic spine, sequela +C0495832|T037|PT|S24.3|ICD10|Injury of peripheral nerves of thorax|Injury of peripheral nerves of thorax +C0495832|T037|HT|S24.3|ICD10CM|Injury of peripheral nerves of thorax|Injury of peripheral nerves of thorax +C0495832|T037|AB|S24.3|ICD10CM|Injury of peripheral nerves of thorax|Injury of peripheral nerves of thorax +C2835863|T037|AB|S24.3XXA|ICD10CM|Injury of peripheral nerves of thorax, initial encounter|Injury of peripheral nerves of thorax, initial encounter +C2835863|T037|PT|S24.3XXA|ICD10CM|Injury of peripheral nerves of thorax, initial encounter|Injury of peripheral nerves of thorax, initial encounter +C2835864|T037|AB|S24.3XXD|ICD10CM|Injury of peripheral nerves of thorax, subsequent encounter|Injury of peripheral nerves of thorax, subsequent encounter +C2835864|T037|PT|S24.3XXD|ICD10CM|Injury of peripheral nerves of thorax, subsequent encounter|Injury of peripheral nerves of thorax, subsequent encounter +C2835865|T037|AB|S24.3XXS|ICD10CM|Injury of peripheral nerves of thorax, sequela|Injury of peripheral nerves of thorax, sequela +C2835865|T037|PT|S24.3XXS|ICD10CM|Injury of peripheral nerves of thorax, sequela|Injury of peripheral nerves of thorax, sequela +C1402589|T037|ET|S24.4|ICD10CM|Injury of cardiac plexus|Injury of cardiac plexus +C1405170|T037|ET|S24.4|ICD10CM|Injury of esophageal plexus|Injury of esophageal plexus +C1405171|T037|ET|S24.4|ICD10CM|Injury of pulmonary plexus|Injury of pulmonary plexus +C0273528|T037|ET|S24.4|ICD10CM|Injury of stellate ganglion|Injury of stellate ganglion +C1397982|T037|ET|S24.4|ICD10CM|Injury of thoracic sympathetic ganglion|Injury of thoracic sympathetic ganglion +C0452076|T037|PT|S24.4|ICD10|Injury of thoracic sympathetic nerves|Injury of thoracic sympathetic nerves +C2835866|T037|AB|S24.4|ICD10CM|Injury of thoracic sympathetic nervous system|Injury of thoracic sympathetic nervous system +C2835866|T037|HT|S24.4|ICD10CM|Injury of thoracic sympathetic nervous system|Injury of thoracic sympathetic nervous system +C2835867|T037|AB|S24.4XXA|ICD10CM|Injury of thoracic sympathetic nervous system, init encntr|Injury of thoracic sympathetic nervous system, init encntr +C2835867|T037|PT|S24.4XXA|ICD10CM|Injury of thoracic sympathetic nervous system, initial encounter|Injury of thoracic sympathetic nervous system, initial encounter +C2835868|T037|AB|S24.4XXD|ICD10CM|Injury of thoracic sympathetic nervous system, subs encntr|Injury of thoracic sympathetic nervous system, subs encntr +C2835868|T037|PT|S24.4XXD|ICD10CM|Injury of thoracic sympathetic nervous system, subsequent encounter|Injury of thoracic sympathetic nervous system, subsequent encounter +C2835869|T037|AB|S24.4XXS|ICD10CM|Injury of thoracic sympathetic nervous system, sequela|Injury of thoracic sympathetic nervous system, sequela +C2835869|T037|PT|S24.4XXS|ICD10CM|Injury of thoracic sympathetic nervous system, sequela|Injury of thoracic sympathetic nervous system, sequela +C0478241|T037|PT|S24.5|ICD10|Injury of other nerves of thorax|Injury of other nerves of thorax +C0478242|T037|PT|S24.6|ICD10|Injury of unspecified nerve of thorax|Injury of unspecified nerve of thorax +C0478241|T037|AB|S24.8|ICD10CM|Injury of other specified nerves of thorax|Injury of other specified nerves of thorax +C0478241|T037|HT|S24.8|ICD10CM|Injury of other specified nerves of thorax|Injury of other specified nerves of thorax +C2977831|T037|AB|S24.8XXA|ICD10CM|Injury of other specified nerves of thorax, init encntr|Injury of other specified nerves of thorax, init encntr +C2977831|T037|PT|S24.8XXA|ICD10CM|Injury of other specified nerves of thorax, initial encounter|Injury of other specified nerves of thorax, initial encounter +C2977832|T037|AB|S24.8XXD|ICD10CM|Injury of other specified nerves of thorax, subs encntr|Injury of other specified nerves of thorax, subs encntr +C2977832|T037|PT|S24.8XXD|ICD10CM|Injury of other specified nerves of thorax, subsequent encounter|Injury of other specified nerves of thorax, subsequent encounter +C2977833|T037|AB|S24.8XXS|ICD10CM|Injury of other specified nerves of thorax, sequela|Injury of other specified nerves of thorax, sequela +C2977833|T037|PT|S24.8XXS|ICD10CM|Injury of other specified nerves of thorax, sequela|Injury of other specified nerves of thorax, sequela +C0478242|T037|HT|S24.9|ICD10CM|Injury of unspecified nerve of thorax|Injury of unspecified nerve of thorax +C0478242|T037|AB|S24.9|ICD10CM|Injury of unspecified nerve of thorax|Injury of unspecified nerve of thorax +C2835873|T037|AB|S24.9XXA|ICD10CM|Injury of unspecified nerve of thorax, initial encounter|Injury of unspecified nerve of thorax, initial encounter +C2835873|T037|PT|S24.9XXA|ICD10CM|Injury of unspecified nerve of thorax, initial encounter|Injury of unspecified nerve of thorax, initial encounter +C2835874|T037|AB|S24.9XXD|ICD10CM|Injury of unspecified nerve of thorax, subsequent encounter|Injury of unspecified nerve of thorax, subsequent encounter +C2835874|T037|PT|S24.9XXD|ICD10CM|Injury of unspecified nerve of thorax, subsequent encounter|Injury of unspecified nerve of thorax, subsequent encounter +C2835875|T037|AB|S24.9XXS|ICD10CM|Injury of unspecified nerve of thorax, sequela|Injury of unspecified nerve of thorax, sequela +C2835875|T037|PT|S24.9XXS|ICD10CM|Injury of unspecified nerve of thorax, sequela|Injury of unspecified nerve of thorax, sequela +C0160689|T037|HT|S25|ICD10CM|Injury of blood vessels of thorax|Injury of blood vessels of thorax +C0160689|T037|AB|S25|ICD10CM|Injury of blood vessels of thorax|Injury of blood vessels of thorax +C0160689|T037|HT|S25|ICD10|Injury of blood vessels of thorax|Injury of blood vessels of thorax +C0854391|T037|ET|S25.0|ICD10CM|Injury of aorta NOS|Injury of aorta NOS +C0160690|T037|PT|S25.0|ICD10|Injury of thoracic aorta|Injury of thoracic aorta +C0160690|T037|HT|S25.0|ICD10CM|Injury of thoracic aorta|Injury of thoracic aorta +C0160690|T037|AB|S25.0|ICD10CM|Injury of thoracic aorta|Injury of thoracic aorta +C2835876|T037|AB|S25.00|ICD10CM|Unspecified injury of thoracic aorta|Unspecified injury of thoracic aorta +C2835876|T037|HT|S25.00|ICD10CM|Unspecified injury of thoracic aorta|Unspecified injury of thoracic aorta +C2835877|T037|AB|S25.00XA|ICD10CM|Unspecified injury of thoracic aorta, initial encounter|Unspecified injury of thoracic aorta, initial encounter +C2835877|T037|PT|S25.00XA|ICD10CM|Unspecified injury of thoracic aorta, initial encounter|Unspecified injury of thoracic aorta, initial encounter +C2835878|T037|AB|S25.00XD|ICD10CM|Unspecified injury of thoracic aorta, subsequent encounter|Unspecified injury of thoracic aorta, subsequent encounter +C2835878|T037|PT|S25.00XD|ICD10CM|Unspecified injury of thoracic aorta, subsequent encounter|Unspecified injury of thoracic aorta, subsequent encounter +C2835879|T037|AB|S25.00XS|ICD10CM|Unspecified injury of thoracic aorta, sequela|Unspecified injury of thoracic aorta, sequela +C2835879|T037|PT|S25.00XS|ICD10CM|Unspecified injury of thoracic aorta, sequela|Unspecified injury of thoracic aorta, sequela +C2835880|T037|ET|S25.01|ICD10CM|Incomplete transection of thoracic aorta|Incomplete transection of thoracic aorta +C2835881|T037|ET|S25.01|ICD10CM|Laceration of thoracic aorta NOS|Laceration of thoracic aorta NOS +C2835883|T037|AB|S25.01|ICD10CM|Minor laceration of thoracic aorta|Minor laceration of thoracic aorta +C2835883|T037|HT|S25.01|ICD10CM|Minor laceration of thoracic aorta|Minor laceration of thoracic aorta +C2835882|T037|ET|S25.01|ICD10CM|Superficial laceration of thoracic aorta|Superficial laceration of thoracic aorta +C2835884|T037|PT|S25.01XA|ICD10CM|Minor laceration of thoracic aorta, initial encounter|Minor laceration of thoracic aorta, initial encounter +C2835884|T037|AB|S25.01XA|ICD10CM|Minor laceration of thoracic aorta, initial encounter|Minor laceration of thoracic aorta, initial encounter +C2835885|T037|PT|S25.01XD|ICD10CM|Minor laceration of thoracic aorta, subsequent encounter|Minor laceration of thoracic aorta, subsequent encounter +C2835885|T037|AB|S25.01XD|ICD10CM|Minor laceration of thoracic aorta, subsequent encounter|Minor laceration of thoracic aorta, subsequent encounter +C2835886|T037|PT|S25.01XS|ICD10CM|Minor laceration of thoracic aorta, sequela|Minor laceration of thoracic aorta, sequela +C2835886|T037|AB|S25.01XS|ICD10CM|Minor laceration of thoracic aorta, sequela|Minor laceration of thoracic aorta, sequela +C2835887|T037|ET|S25.02|ICD10CM|Complete transection of thoracic aorta|Complete transection of thoracic aorta +C2835888|T037|AB|S25.02|ICD10CM|Major laceration of thoracic aorta|Major laceration of thoracic aorta +C2835888|T037|HT|S25.02|ICD10CM|Major laceration of thoracic aorta|Major laceration of thoracic aorta +C1406436|T037|ET|S25.02|ICD10CM|Traumatic rupture of thoracic aorta|Traumatic rupture of thoracic aorta +C2835889|T037|PT|S25.02XA|ICD10CM|Major laceration of thoracic aorta, initial encounter|Major laceration of thoracic aorta, initial encounter +C2835889|T037|AB|S25.02XA|ICD10CM|Major laceration of thoracic aorta, initial encounter|Major laceration of thoracic aorta, initial encounter +C2835890|T037|PT|S25.02XD|ICD10CM|Major laceration of thoracic aorta, subsequent encounter|Major laceration of thoracic aorta, subsequent encounter +C2835890|T037|AB|S25.02XD|ICD10CM|Major laceration of thoracic aorta, subsequent encounter|Major laceration of thoracic aorta, subsequent encounter +C2835891|T037|PT|S25.02XS|ICD10CM|Major laceration of thoracic aorta, sequela|Major laceration of thoracic aorta, sequela +C2835891|T037|AB|S25.02XS|ICD10CM|Major laceration of thoracic aorta, sequela|Major laceration of thoracic aorta, sequela +C2835892|T037|AB|S25.09|ICD10CM|Other specified injury of thoracic aorta|Other specified injury of thoracic aorta +C2835892|T037|HT|S25.09|ICD10CM|Other specified injury of thoracic aorta|Other specified injury of thoracic aorta +C2977834|T037|AB|S25.09XA|ICD10CM|Other specified injury of thoracic aorta, initial encounter|Other specified injury of thoracic aorta, initial encounter +C2977834|T037|PT|S25.09XA|ICD10CM|Other specified injury of thoracic aorta, initial encounter|Other specified injury of thoracic aorta, initial encounter +C2977835|T037|AB|S25.09XD|ICD10CM|Other specified injury of thoracic aorta, subs encntr|Other specified injury of thoracic aorta, subs encntr +C2977835|T037|PT|S25.09XD|ICD10CM|Other specified injury of thoracic aorta, subsequent encounter|Other specified injury of thoracic aorta, subsequent encounter +C2977836|T037|AB|S25.09XS|ICD10CM|Other specified injury of thoracic aorta, sequela|Other specified injury of thoracic aorta, sequela +C2977836|T037|PT|S25.09XS|ICD10CM|Other specified injury of thoracic aorta, sequela|Other specified injury of thoracic aorta, sequela +C0495833|T037|PT|S25.1|ICD10|Injury of innominate or subclavian artery|Injury of innominate or subclavian artery +C0495833|T037|HT|S25.1|ICD10CM|Injury of innominate or subclavian artery|Injury of innominate or subclavian artery +C0495833|T037|AB|S25.1|ICD10CM|Injury of innominate or subclavian artery|Injury of innominate or subclavian artery +C2835896|T037|AB|S25.10|ICD10CM|Unspecified injury of innominate or subclavian artery|Unspecified injury of innominate or subclavian artery +C2835896|T037|HT|S25.10|ICD10CM|Unspecified injury of innominate or subclavian artery|Unspecified injury of innominate or subclavian artery +C2835897|T037|AB|S25.101|ICD10CM|Unspecified injury of right innominate or subclavian artery|Unspecified injury of right innominate or subclavian artery +C2835897|T037|HT|S25.101|ICD10CM|Unspecified injury of right innominate or subclavian artery|Unspecified injury of right innominate or subclavian artery +C2835898|T037|AB|S25.101A|ICD10CM|Unsp injury of right innominate or subclavian artery, init|Unsp injury of right innominate or subclavian artery, init +C2835898|T037|PT|S25.101A|ICD10CM|Unspecified injury of right innominate or subclavian artery, initial encounter|Unspecified injury of right innominate or subclavian artery, initial encounter +C2835899|T037|AB|S25.101D|ICD10CM|Unsp injury of right innominate or subclavian artery, subs|Unsp injury of right innominate or subclavian artery, subs +C2835899|T037|PT|S25.101D|ICD10CM|Unspecified injury of right innominate or subclavian artery, subsequent encounter|Unspecified injury of right innominate or subclavian artery, subsequent encounter +C2835900|T037|AB|S25.101S|ICD10CM|Unsp injury of right innominate or subclav art, sequela|Unsp injury of right innominate or subclav art, sequela +C2835900|T037|PT|S25.101S|ICD10CM|Unspecified injury of right innominate or subclavian artery, sequela|Unspecified injury of right innominate or subclavian artery, sequela +C2835901|T037|AB|S25.102|ICD10CM|Unspecified injury of left innominate or subclavian artery|Unspecified injury of left innominate or subclavian artery +C2835901|T037|HT|S25.102|ICD10CM|Unspecified injury of left innominate or subclavian artery|Unspecified injury of left innominate or subclavian artery +C2835902|T037|AB|S25.102A|ICD10CM|Unsp injury of left innominate or subclavian artery, init|Unsp injury of left innominate or subclavian artery, init +C2835902|T037|PT|S25.102A|ICD10CM|Unspecified injury of left innominate or subclavian artery, initial encounter|Unspecified injury of left innominate or subclavian artery, initial encounter +C2835903|T037|AB|S25.102D|ICD10CM|Unsp injury of left innominate or subclavian artery, subs|Unsp injury of left innominate or subclavian artery, subs +C2835903|T037|PT|S25.102D|ICD10CM|Unspecified injury of left innominate or subclavian artery, subsequent encounter|Unspecified injury of left innominate or subclavian artery, subsequent encounter +C2835904|T037|AB|S25.102S|ICD10CM|Unsp injury of left innominate or subclavian artery, sequela|Unsp injury of left innominate or subclavian artery, sequela +C2835904|T037|PT|S25.102S|ICD10CM|Unspecified injury of left innominate or subclavian artery, sequela|Unspecified injury of left innominate or subclavian artery, sequela +C2835905|T037|AB|S25.109|ICD10CM|Unsp injury of unspecified innominate or subclavian artery|Unsp injury of unspecified innominate or subclavian artery +C2835905|T037|HT|S25.109|ICD10CM|Unspecified injury of unspecified innominate or subclavian artery|Unspecified injury of unspecified innominate or subclavian artery +C2835906|T037|AB|S25.109A|ICD10CM|Unsp injury of unsp innominate or subclavian artery, init|Unsp injury of unsp innominate or subclavian artery, init +C2835906|T037|PT|S25.109A|ICD10CM|Unspecified injury of unspecified innominate or subclavian artery, initial encounter|Unspecified injury of unspecified innominate or subclavian artery, initial encounter +C2835907|T037|AB|S25.109D|ICD10CM|Unsp injury of unsp innominate or subclavian artery, subs|Unsp injury of unsp innominate or subclavian artery, subs +C2835907|T037|PT|S25.109D|ICD10CM|Unspecified injury of unspecified innominate or subclavian artery, subsequent encounter|Unspecified injury of unspecified innominate or subclavian artery, subsequent encounter +C2835908|T037|AB|S25.109S|ICD10CM|Unsp injury of unsp innominate or subclavian artery, sequela|Unsp injury of unsp innominate or subclavian artery, sequela +C2835908|T037|PT|S25.109S|ICD10CM|Unspecified injury of unspecified innominate or subclavian artery, sequela|Unspecified injury of unspecified innominate or subclavian artery, sequela +C2835909|T037|ET|S25.11|ICD10CM|Incomplete transection of innominate or subclavian artery|Incomplete transection of innominate or subclavian artery +C2835910|T037|ET|S25.11|ICD10CM|Laceration of innominate or subclavian artery NOS|Laceration of innominate or subclavian artery NOS +C2835912|T037|AB|S25.11|ICD10CM|Minor laceration of innominate or subclavian artery|Minor laceration of innominate or subclavian artery +C2835912|T037|HT|S25.11|ICD10CM|Minor laceration of innominate or subclavian artery|Minor laceration of innominate or subclavian artery +C2835911|T037|ET|S25.11|ICD10CM|Superficial laceration of innominate or subclavian artery|Superficial laceration of innominate or subclavian artery +C2835913|T037|AB|S25.111|ICD10CM|Minor laceration of right innominate or subclavian artery|Minor laceration of right innominate or subclavian artery +C2835913|T037|HT|S25.111|ICD10CM|Minor laceration of right innominate or subclavian artery|Minor laceration of right innominate or subclavian artery +C2835914|T037|AB|S25.111A|ICD10CM|Minor laceration of right innominate or subclav art, init|Minor laceration of right innominate or subclav art, init +C2835914|T037|PT|S25.111A|ICD10CM|Minor laceration of right innominate or subclavian artery, initial encounter|Minor laceration of right innominate or subclavian artery, initial encounter +C2835915|T037|AB|S25.111D|ICD10CM|Minor laceration of right innominate or subclav art, subs|Minor laceration of right innominate or subclav art, subs +C2835915|T037|PT|S25.111D|ICD10CM|Minor laceration of right innominate or subclavian artery, subsequent encounter|Minor laceration of right innominate or subclavian artery, subsequent encounter +C2835916|T037|AB|S25.111S|ICD10CM|Minor laceration of right innominate or subclav art, sequela|Minor laceration of right innominate or subclav art, sequela +C2835916|T037|PT|S25.111S|ICD10CM|Minor laceration of right innominate or subclavian artery, sequela|Minor laceration of right innominate or subclavian artery, sequela +C2835917|T037|AB|S25.112|ICD10CM|Minor laceration of left innominate or subclavian artery|Minor laceration of left innominate or subclavian artery +C2835917|T037|HT|S25.112|ICD10CM|Minor laceration of left innominate or subclavian artery|Minor laceration of left innominate or subclavian artery +C2835918|T037|AB|S25.112A|ICD10CM|Minor laceration of left innominate or subclav art, init|Minor laceration of left innominate or subclav art, init +C2835918|T037|PT|S25.112A|ICD10CM|Minor laceration of left innominate or subclavian artery, initial encounter|Minor laceration of left innominate or subclavian artery, initial encounter +C2835919|T037|AB|S25.112D|ICD10CM|Minor laceration of left innominate or subclav art, subs|Minor laceration of left innominate or subclav art, subs +C2835919|T037|PT|S25.112D|ICD10CM|Minor laceration of left innominate or subclavian artery, subsequent encounter|Minor laceration of left innominate or subclavian artery, subsequent encounter +C2835920|T037|AB|S25.112S|ICD10CM|Minor laceration of left innominate or subclav art, sequela|Minor laceration of left innominate or subclav art, sequela +C2835920|T037|PT|S25.112S|ICD10CM|Minor laceration of left innominate or subclavian artery, sequela|Minor laceration of left innominate or subclavian artery, sequela +C2835921|T037|AB|S25.119|ICD10CM|Minor laceration of unsp innominate or subclavian artery|Minor laceration of unsp innominate or subclavian artery +C2835921|T037|HT|S25.119|ICD10CM|Minor laceration of unspecified innominate or subclavian artery|Minor laceration of unspecified innominate or subclavian artery +C2835922|T037|AB|S25.119A|ICD10CM|Minor laceration of unsp innominate or subclav art, init|Minor laceration of unsp innominate or subclav art, init +C2835922|T037|PT|S25.119A|ICD10CM|Minor laceration of unspecified innominate or subclavian artery, initial encounter|Minor laceration of unspecified innominate or subclavian artery, initial encounter +C2835923|T037|AB|S25.119D|ICD10CM|Minor laceration of unsp innominate or subclav art, subs|Minor laceration of unsp innominate or subclav art, subs +C2835923|T037|PT|S25.119D|ICD10CM|Minor laceration of unspecified innominate or subclavian artery, subsequent encounter|Minor laceration of unspecified innominate or subclavian artery, subsequent encounter +C2835924|T037|AB|S25.119S|ICD10CM|Minor laceration of unsp innominate or subclav art, sequela|Minor laceration of unsp innominate or subclav art, sequela +C2835924|T037|PT|S25.119S|ICD10CM|Minor laceration of unspecified innominate or subclavian artery, sequela|Minor laceration of unspecified innominate or subclavian artery, sequela +C2835925|T037|ET|S25.12|ICD10CM|Complete transection of innominate or subclavian artery|Complete transection of innominate or subclavian artery +C2835927|T037|AB|S25.12|ICD10CM|Major laceration of innominate or subclavian artery|Major laceration of innominate or subclavian artery +C2835927|T037|HT|S25.12|ICD10CM|Major laceration of innominate or subclavian artery|Major laceration of innominate or subclavian artery +C2835926|T037|ET|S25.12|ICD10CM|Traumatic rupture of innominate or subclavian artery|Traumatic rupture of innominate or subclavian artery +C2835928|T037|AB|S25.121|ICD10CM|Major laceration of right innominate or subclavian artery|Major laceration of right innominate or subclavian artery +C2835928|T037|HT|S25.121|ICD10CM|Major laceration of right innominate or subclavian artery|Major laceration of right innominate or subclavian artery +C2835929|T037|AB|S25.121A|ICD10CM|Major laceration of right innominate or subclav art, init|Major laceration of right innominate or subclav art, init +C2835929|T037|PT|S25.121A|ICD10CM|Major laceration of right innominate or subclavian artery, initial encounter|Major laceration of right innominate or subclavian artery, initial encounter +C2835930|T037|AB|S25.121D|ICD10CM|Major laceration of right innominate or subclav art, subs|Major laceration of right innominate or subclav art, subs +C2835930|T037|PT|S25.121D|ICD10CM|Major laceration of right innominate or subclavian artery, subsequent encounter|Major laceration of right innominate or subclavian artery, subsequent encounter +C2835931|T037|AB|S25.121S|ICD10CM|Major laceration of right innominate or subclav art, sequela|Major laceration of right innominate or subclav art, sequela +C2835931|T037|PT|S25.121S|ICD10CM|Major laceration of right innominate or subclavian artery, sequela|Major laceration of right innominate or subclavian artery, sequela +C2835932|T037|AB|S25.122|ICD10CM|Major laceration of left innominate or subclavian artery|Major laceration of left innominate or subclavian artery +C2835932|T037|HT|S25.122|ICD10CM|Major laceration of left innominate or subclavian artery|Major laceration of left innominate or subclavian artery +C2835933|T037|AB|S25.122A|ICD10CM|Major laceration of left innominate or subclav art, init|Major laceration of left innominate or subclav art, init +C2835933|T037|PT|S25.122A|ICD10CM|Major laceration of left innominate or subclavian artery, initial encounter|Major laceration of left innominate or subclavian artery, initial encounter +C2835934|T037|AB|S25.122D|ICD10CM|Major laceration of left innominate or subclav art, subs|Major laceration of left innominate or subclav art, subs +C2835934|T037|PT|S25.122D|ICD10CM|Major laceration of left innominate or subclavian artery, subsequent encounter|Major laceration of left innominate or subclavian artery, subsequent encounter +C2835935|T037|AB|S25.122S|ICD10CM|Major laceration of left innominate or subclav art, sequela|Major laceration of left innominate or subclav art, sequela +C2835935|T037|PT|S25.122S|ICD10CM|Major laceration of left innominate or subclavian artery, sequela|Major laceration of left innominate or subclavian artery, sequela +C2835936|T037|AB|S25.129|ICD10CM|Major laceration of unsp innominate or subclavian artery|Major laceration of unsp innominate or subclavian artery +C2835936|T037|HT|S25.129|ICD10CM|Major laceration of unspecified innominate or subclavian artery|Major laceration of unspecified innominate or subclavian artery +C2835937|T037|AB|S25.129A|ICD10CM|Major laceration of unsp innominate or subclav art, init|Major laceration of unsp innominate or subclav art, init +C2835937|T037|PT|S25.129A|ICD10CM|Major laceration of unspecified innominate or subclavian artery, initial encounter|Major laceration of unspecified innominate or subclavian artery, initial encounter +C2835938|T037|AB|S25.129D|ICD10CM|Major laceration of unsp innominate or subclav art, subs|Major laceration of unsp innominate or subclav art, subs +C2835938|T037|PT|S25.129D|ICD10CM|Major laceration of unspecified innominate or subclavian artery, subsequent encounter|Major laceration of unspecified innominate or subclavian artery, subsequent encounter +C2835939|T037|AB|S25.129S|ICD10CM|Major laceration of unsp innominate or subclav art, sequela|Major laceration of unsp innominate or subclav art, sequela +C2835939|T037|PT|S25.129S|ICD10CM|Major laceration of unspecified innominate or subclavian artery, sequela|Major laceration of unspecified innominate or subclavian artery, sequela +C2835940|T037|AB|S25.19|ICD10CM|Other specified injury of innominate or subclavian artery|Other specified injury of innominate or subclavian artery +C2835940|T037|HT|S25.19|ICD10CM|Other specified injury of innominate or subclavian artery|Other specified injury of innominate or subclavian artery +C2835941|T037|AB|S25.191|ICD10CM|Oth injury of right innominate or subclavian artery|Oth injury of right innominate or subclavian artery +C2835941|T037|HT|S25.191|ICD10CM|Other specified injury of right innominate or subclavian artery|Other specified injury of right innominate or subclavian artery +C2835942|T037|AB|S25.191A|ICD10CM|Inj right innominate or subclavian artery, init encntr|Inj right innominate or subclavian artery, init encntr +C2835942|T037|PT|S25.191A|ICD10CM|Other specified injury of right innominate or subclavian artery, initial encounter|Other specified injury of right innominate or subclavian artery, initial encounter +C2835943|T037|AB|S25.191D|ICD10CM|Inj right innominate or subclavian artery, subs encntr|Inj right innominate or subclavian artery, subs encntr +C2835943|T037|PT|S25.191D|ICD10CM|Other specified injury of right innominate or subclavian artery, subsequent encounter|Other specified injury of right innominate or subclavian artery, subsequent encounter +C2835944|T037|AB|S25.191S|ICD10CM|Oth injury of right innominate or subclavian artery, sequela|Oth injury of right innominate or subclavian artery, sequela +C2835944|T037|PT|S25.191S|ICD10CM|Other specified injury of right innominate or subclavian artery, sequela|Other specified injury of right innominate or subclavian artery, sequela +C2835945|T037|AB|S25.192|ICD10CM|Oth injury of left innominate or subclavian artery|Oth injury of left innominate or subclavian artery +C2835945|T037|HT|S25.192|ICD10CM|Other specified injury of left innominate or subclavian artery|Other specified injury of left innominate or subclavian artery +C2835946|T037|AB|S25.192A|ICD10CM|Inj left innominate or subclavian artery, init encntr|Inj left innominate or subclavian artery, init encntr +C2835946|T037|PT|S25.192A|ICD10CM|Other specified injury of left innominate or subclavian artery, initial encounter|Other specified injury of left innominate or subclavian artery, initial encounter +C2835947|T037|AB|S25.192D|ICD10CM|Inj left innominate or subclavian artery, subs encntr|Inj left innominate or subclavian artery, subs encntr +C2835947|T037|PT|S25.192D|ICD10CM|Other specified injury of left innominate or subclavian artery, subsequent encounter|Other specified injury of left innominate or subclavian artery, subsequent encounter +C2835948|T037|AB|S25.192S|ICD10CM|Oth injury of left innominate or subclavian artery, sequela|Oth injury of left innominate or subclavian artery, sequela +C2835948|T037|PT|S25.192S|ICD10CM|Other specified injury of left innominate or subclavian artery, sequela|Other specified injury of left innominate or subclavian artery, sequela +C2835949|T037|AB|S25.199|ICD10CM|Oth injury of unspecified innominate or subclavian artery|Oth injury of unspecified innominate or subclavian artery +C2835949|T037|HT|S25.199|ICD10CM|Other specified injury of unspecified innominate or subclavian artery|Other specified injury of unspecified innominate or subclavian artery +C2835950|T037|AB|S25.199A|ICD10CM|Inj unsp innominate or subclavian artery, init encntr|Inj unsp innominate or subclavian artery, init encntr +C2835950|T037|PT|S25.199A|ICD10CM|Other specified injury of unspecified innominate or subclavian artery, initial encounter|Other specified injury of unspecified innominate or subclavian artery, initial encounter +C2835951|T037|AB|S25.199D|ICD10CM|Inj unsp innominate or subclavian artery, subs encntr|Inj unsp innominate or subclavian artery, subs encntr +C2835951|T037|PT|S25.199D|ICD10CM|Other specified injury of unspecified innominate or subclavian artery, subsequent encounter|Other specified injury of unspecified innominate or subclavian artery, subsequent encounter +C2835952|T037|AB|S25.199S|ICD10CM|Oth injury of unsp innominate or subclavian artery, sequela|Oth injury of unsp innominate or subclavian artery, sequela +C2835952|T037|PT|S25.199S|ICD10CM|Other specified injury of unspecified innominate or subclavian artery, sequela|Other specified injury of unspecified innominate or subclavian artery, sequela +C0160692|T037|HT|S25.2|ICD10CM|Injury of superior vena cava|Injury of superior vena cava +C0160692|T037|AB|S25.2|ICD10CM|Injury of superior vena cava|Injury of superior vena cava +C0160692|T037|PT|S25.2|ICD10|Injury of superior vena cava|Injury of superior vena cava +C0854392|T037|ET|S25.2|ICD10CM|Injury of vena cava NOS|Injury of vena cava NOS +C2835953|T037|AB|S25.20|ICD10CM|Unspecified injury of superior vena cava|Unspecified injury of superior vena cava +C2835953|T037|HT|S25.20|ICD10CM|Unspecified injury of superior vena cava|Unspecified injury of superior vena cava +C2835954|T037|AB|S25.20XA|ICD10CM|Unspecified injury of superior vena cava, initial encounter|Unspecified injury of superior vena cava, initial encounter +C2835954|T037|PT|S25.20XA|ICD10CM|Unspecified injury of superior vena cava, initial encounter|Unspecified injury of superior vena cava, initial encounter +C2835955|T037|AB|S25.20XD|ICD10CM|Unspecified injury of superior vena cava, subs encntr|Unspecified injury of superior vena cava, subs encntr +C2835955|T037|PT|S25.20XD|ICD10CM|Unspecified injury of superior vena cava, subsequent encounter|Unspecified injury of superior vena cava, subsequent encounter +C2835956|T037|AB|S25.20XS|ICD10CM|Unspecified injury of superior vena cava, sequela|Unspecified injury of superior vena cava, sequela +C2835956|T037|PT|S25.20XS|ICD10CM|Unspecified injury of superior vena cava, sequela|Unspecified injury of superior vena cava, sequela +C2835957|T037|ET|S25.21|ICD10CM|Incomplete transection of superior vena cava|Incomplete transection of superior vena cava +C2835958|T037|ET|S25.21|ICD10CM|Laceration of superior vena cava NOS|Laceration of superior vena cava NOS +C2835960|T037|AB|S25.21|ICD10CM|Minor laceration of superior vena cava|Minor laceration of superior vena cava +C2835960|T037|HT|S25.21|ICD10CM|Minor laceration of superior vena cava|Minor laceration of superior vena cava +C2835959|T037|ET|S25.21|ICD10CM|Superficial laceration of superior vena cava|Superficial laceration of superior vena cava +C2835961|T037|PT|S25.21XA|ICD10CM|Minor laceration of superior vena cava, initial encounter|Minor laceration of superior vena cava, initial encounter +C2835961|T037|AB|S25.21XA|ICD10CM|Minor laceration of superior vena cava, initial encounter|Minor laceration of superior vena cava, initial encounter +C2835962|T037|AB|S25.21XD|ICD10CM|Minor laceration of superior vena cava, subsequent encounter|Minor laceration of superior vena cava, subsequent encounter +C2835962|T037|PT|S25.21XD|ICD10CM|Minor laceration of superior vena cava, subsequent encounter|Minor laceration of superior vena cava, subsequent encounter +C2835963|T037|PT|S25.21XS|ICD10CM|Minor laceration of superior vena cava, sequela|Minor laceration of superior vena cava, sequela +C2835963|T037|AB|S25.21XS|ICD10CM|Minor laceration of superior vena cava, sequela|Minor laceration of superior vena cava, sequela +C2835964|T037|ET|S25.22|ICD10CM|Complete transection of superior vena cava|Complete transection of superior vena cava +C2835966|T037|AB|S25.22|ICD10CM|Major laceration of superior vena cava|Major laceration of superior vena cava +C2835966|T037|HT|S25.22|ICD10CM|Major laceration of superior vena cava|Major laceration of superior vena cava +C2835965|T037|ET|S25.22|ICD10CM|Traumatic rupture of superior vena cava|Traumatic rupture of superior vena cava +C2835967|T037|PT|S25.22XA|ICD10CM|Major laceration of superior vena cava, initial encounter|Major laceration of superior vena cava, initial encounter +C2835967|T037|AB|S25.22XA|ICD10CM|Major laceration of superior vena cava, initial encounter|Major laceration of superior vena cava, initial encounter +C2835968|T037|AB|S25.22XD|ICD10CM|Major laceration of superior vena cava, subsequent encounter|Major laceration of superior vena cava, subsequent encounter +C2835968|T037|PT|S25.22XD|ICD10CM|Major laceration of superior vena cava, subsequent encounter|Major laceration of superior vena cava, subsequent encounter +C2835969|T037|PT|S25.22XS|ICD10CM|Major laceration of superior vena cava, sequela|Major laceration of superior vena cava, sequela +C2835969|T037|AB|S25.22XS|ICD10CM|Major laceration of superior vena cava, sequela|Major laceration of superior vena cava, sequela +C2835970|T037|AB|S25.29|ICD10CM|Other specified injury of superior vena cava|Other specified injury of superior vena cava +C2835970|T037|HT|S25.29|ICD10CM|Other specified injury of superior vena cava|Other specified injury of superior vena cava +C2835971|T037|AB|S25.29XA|ICD10CM|Other specified injury of superior vena cava, init encntr|Other specified injury of superior vena cava, init encntr +C2835971|T037|PT|S25.29XA|ICD10CM|Other specified injury of superior vena cava, initial encounter|Other specified injury of superior vena cava, initial encounter +C2835972|T037|AB|S25.29XD|ICD10CM|Other specified injury of superior vena cava, subs encntr|Other specified injury of superior vena cava, subs encntr +C2835972|T037|PT|S25.29XD|ICD10CM|Other specified injury of superior vena cava, subsequent encounter|Other specified injury of superior vena cava, subsequent encounter +C2835973|T037|AB|S25.29XS|ICD10CM|Other specified injury of superior vena cava, sequela|Other specified injury of superior vena cava, sequela +C2835973|T037|PT|S25.29XS|ICD10CM|Other specified injury of superior vena cava, sequela|Other specified injury of superior vena cava, sequela +C0495834|T037|HT|S25.3|ICD10CM|Injury of innominate or subclavian vein|Injury of innominate or subclavian vein +C0495834|T037|AB|S25.3|ICD10CM|Injury of innominate or subclavian vein|Injury of innominate or subclavian vein +C0495834|T037|PT|S25.3|ICD10|Injury of innominate or subclavian vein|Injury of innominate or subclavian vein +C2835974|T037|AB|S25.30|ICD10CM|Unspecified injury of innominate or subclavian vein|Unspecified injury of innominate or subclavian vein +C2835974|T037|HT|S25.30|ICD10CM|Unspecified injury of innominate or subclavian vein|Unspecified injury of innominate or subclavian vein +C2835975|T037|AB|S25.301|ICD10CM|Unspecified injury of right innominate or subclavian vein|Unspecified injury of right innominate or subclavian vein +C2835975|T037|HT|S25.301|ICD10CM|Unspecified injury of right innominate or subclavian vein|Unspecified injury of right innominate or subclavian vein +C2835976|T037|AB|S25.301A|ICD10CM|Unsp injury of right innominate or subclavian vein, init|Unsp injury of right innominate or subclavian vein, init +C2835976|T037|PT|S25.301A|ICD10CM|Unspecified injury of right innominate or subclavian vein, initial encounter|Unspecified injury of right innominate or subclavian vein, initial encounter +C2835977|T037|AB|S25.301D|ICD10CM|Unsp injury of right innominate or subclavian vein, subs|Unsp injury of right innominate or subclavian vein, subs +C2835977|T037|PT|S25.301D|ICD10CM|Unspecified injury of right innominate or subclavian vein, subsequent encounter|Unspecified injury of right innominate or subclavian vein, subsequent encounter +C2835978|T037|AB|S25.301S|ICD10CM|Unsp injury of right innominate or subclavian vein, sequela|Unsp injury of right innominate or subclavian vein, sequela +C2835978|T037|PT|S25.301S|ICD10CM|Unspecified injury of right innominate or subclavian vein, sequela|Unspecified injury of right innominate or subclavian vein, sequela +C2835979|T037|AB|S25.302|ICD10CM|Unspecified injury of left innominate or subclavian vein|Unspecified injury of left innominate or subclavian vein +C2835979|T037|HT|S25.302|ICD10CM|Unspecified injury of left innominate or subclavian vein|Unspecified injury of left innominate or subclavian vein +C2835980|T037|AB|S25.302A|ICD10CM|Unsp injury of left innominate or subclavian vein, init|Unsp injury of left innominate or subclavian vein, init +C2835980|T037|PT|S25.302A|ICD10CM|Unspecified injury of left innominate or subclavian vein, initial encounter|Unspecified injury of left innominate or subclavian vein, initial encounter +C2835981|T037|AB|S25.302D|ICD10CM|Unsp injury of left innominate or subclavian vein, subs|Unsp injury of left innominate or subclavian vein, subs +C2835981|T037|PT|S25.302D|ICD10CM|Unspecified injury of left innominate or subclavian vein, subsequent encounter|Unspecified injury of left innominate or subclavian vein, subsequent encounter +C2835982|T037|AB|S25.302S|ICD10CM|Unsp injury of left innominate or subclavian vein, sequela|Unsp injury of left innominate or subclavian vein, sequela +C2835982|T037|PT|S25.302S|ICD10CM|Unspecified injury of left innominate or subclavian vein, sequela|Unspecified injury of left innominate or subclavian vein, sequela +C2835983|T037|AB|S25.309|ICD10CM|Unsp injury of unspecified innominate or subclavian vein|Unsp injury of unspecified innominate or subclavian vein +C2835983|T037|HT|S25.309|ICD10CM|Unspecified injury of unspecified innominate or subclavian vein|Unspecified injury of unspecified innominate or subclavian vein +C2835984|T037|AB|S25.309A|ICD10CM|Unsp injury of unsp innominate or subclavian vein, init|Unsp injury of unsp innominate or subclavian vein, init +C2835984|T037|PT|S25.309A|ICD10CM|Unspecified injury of unspecified innominate or subclavian vein, initial encounter|Unspecified injury of unspecified innominate or subclavian vein, initial encounter +C2835985|T037|AB|S25.309D|ICD10CM|Unsp injury of unsp innominate or subclavian vein, subs|Unsp injury of unsp innominate or subclavian vein, subs +C2835985|T037|PT|S25.309D|ICD10CM|Unspecified injury of unspecified innominate or subclavian vein, subsequent encounter|Unspecified injury of unspecified innominate or subclavian vein, subsequent encounter +C2835986|T037|AB|S25.309S|ICD10CM|Unsp injury of unsp innominate or subclavian vein, sequela|Unsp injury of unsp innominate or subclavian vein, sequela +C2835986|T037|PT|S25.309S|ICD10CM|Unspecified injury of unspecified innominate or subclavian vein, sequela|Unspecified injury of unspecified innominate or subclavian vein, sequela +C2835987|T037|ET|S25.31|ICD10CM|Incomplete transection of innominate or subclavian vein|Incomplete transection of innominate or subclavian vein +C2835988|T037|ET|S25.31|ICD10CM|Laceration of innominate or subclavian vein NOS|Laceration of innominate or subclavian vein NOS +C2835990|T037|AB|S25.31|ICD10CM|Minor laceration of innominate or subclavian vein|Minor laceration of innominate or subclavian vein +C2835990|T037|HT|S25.31|ICD10CM|Minor laceration of innominate or subclavian vein|Minor laceration of innominate or subclavian vein +C2835989|T037|ET|S25.31|ICD10CM|Superficial laceration of innominate or subclavian vein|Superficial laceration of innominate or subclavian vein +C2835991|T037|AB|S25.311|ICD10CM|Minor laceration of right innominate or subclavian vein|Minor laceration of right innominate or subclavian vein +C2835991|T037|HT|S25.311|ICD10CM|Minor laceration of right innominate or subclavian vein|Minor laceration of right innominate or subclavian vein +C2835992|T037|AB|S25.311A|ICD10CM|Minor laceration of right innominate or subclav vein, init|Minor laceration of right innominate or subclav vein, init +C2835992|T037|PT|S25.311A|ICD10CM|Minor laceration of right innominate or subclavian vein, initial encounter|Minor laceration of right innominate or subclavian vein, initial encounter +C2835993|T037|AB|S25.311D|ICD10CM|Minor laceration of right innominate or subclav vein, subs|Minor laceration of right innominate or subclav vein, subs +C2835993|T037|PT|S25.311D|ICD10CM|Minor laceration of right innominate or subclavian vein, subsequent encounter|Minor laceration of right innominate or subclavian vein, subsequent encounter +C2835994|T037|AB|S25.311S|ICD10CM|Minor lacerat right innominate or subclav vein, sequela|Minor lacerat right innominate or subclav vein, sequela +C2835994|T037|PT|S25.311S|ICD10CM|Minor laceration of right innominate or subclavian vein, sequela|Minor laceration of right innominate or subclavian vein, sequela +C2835995|T037|AB|S25.312|ICD10CM|Minor laceration of left innominate or subclavian vein|Minor laceration of left innominate or subclavian vein +C2835995|T037|HT|S25.312|ICD10CM|Minor laceration of left innominate or subclavian vein|Minor laceration of left innominate or subclavian vein +C2835996|T037|AB|S25.312A|ICD10CM|Minor laceration of left innominate or subclavian vein, init|Minor laceration of left innominate or subclavian vein, init +C2835996|T037|PT|S25.312A|ICD10CM|Minor laceration of left innominate or subclavian vein, initial encounter|Minor laceration of left innominate or subclavian vein, initial encounter +C2835997|T037|AB|S25.312D|ICD10CM|Minor laceration of left innominate or subclavian vein, subs|Minor laceration of left innominate or subclavian vein, subs +C2835997|T037|PT|S25.312D|ICD10CM|Minor laceration of left innominate or subclavian vein, subsequent encounter|Minor laceration of left innominate or subclavian vein, subsequent encounter +C2835998|T037|AB|S25.312S|ICD10CM|Minor laceration of left innominate or subclav vein, sequela|Minor laceration of left innominate or subclav vein, sequela +C2835998|T037|PT|S25.312S|ICD10CM|Minor laceration of left innominate or subclavian vein, sequela|Minor laceration of left innominate or subclavian vein, sequela +C2835999|T037|AB|S25.319|ICD10CM|Minor laceration of unsp innominate or subclavian vein|Minor laceration of unsp innominate or subclavian vein +C2835999|T037|HT|S25.319|ICD10CM|Minor laceration of unspecified innominate or subclavian vein|Minor laceration of unspecified innominate or subclavian vein +C2836000|T037|AB|S25.319A|ICD10CM|Minor laceration of unsp innominate or subclavian vein, init|Minor laceration of unsp innominate or subclavian vein, init +C2836000|T037|PT|S25.319A|ICD10CM|Minor laceration of unspecified innominate or subclavian vein, initial encounter|Minor laceration of unspecified innominate or subclavian vein, initial encounter +C2836001|T037|AB|S25.319D|ICD10CM|Minor laceration of unsp innominate or subclavian vein, subs|Minor laceration of unsp innominate or subclavian vein, subs +C2836001|T037|PT|S25.319D|ICD10CM|Minor laceration of unspecified innominate or subclavian vein, subsequent encounter|Minor laceration of unspecified innominate or subclavian vein, subsequent encounter +C2836002|T037|AB|S25.319S|ICD10CM|Minor laceration of unsp innominate or subclav vein, sequela|Minor laceration of unsp innominate or subclav vein, sequela +C2836002|T037|PT|S25.319S|ICD10CM|Minor laceration of unspecified innominate or subclavian vein, sequela|Minor laceration of unspecified innominate or subclavian vein, sequela +C2836003|T037|ET|S25.32|ICD10CM|Complete transection of innominate or subclavian vein|Complete transection of innominate or subclavian vein +C2836005|T037|AB|S25.32|ICD10CM|Major laceration of innominate or subclavian vein|Major laceration of innominate or subclavian vein +C2836005|T037|HT|S25.32|ICD10CM|Major laceration of innominate or subclavian vein|Major laceration of innominate or subclavian vein +C2836004|T037|ET|S25.32|ICD10CM|Traumatic rupture of innominate or subclavian vein|Traumatic rupture of innominate or subclavian vein +C2836006|T037|AB|S25.321|ICD10CM|Major laceration of right innominate or subclavian vein|Major laceration of right innominate or subclavian vein +C2836006|T037|HT|S25.321|ICD10CM|Major laceration of right innominate or subclavian vein|Major laceration of right innominate or subclavian vein +C2836007|T037|AB|S25.321A|ICD10CM|Major laceration of right innominate or subclav vein, init|Major laceration of right innominate or subclav vein, init +C2836007|T037|PT|S25.321A|ICD10CM|Major laceration of right innominate or subclavian vein, initial encounter|Major laceration of right innominate or subclavian vein, initial encounter +C2836008|T037|AB|S25.321D|ICD10CM|Major laceration of right innominate or subclav vein, subs|Major laceration of right innominate or subclav vein, subs +C2836008|T037|PT|S25.321D|ICD10CM|Major laceration of right innominate or subclavian vein, subsequent encounter|Major laceration of right innominate or subclavian vein, subsequent encounter +C2836009|T037|AB|S25.321S|ICD10CM|Major lacerat right innominate or subclav vein, sequela|Major lacerat right innominate or subclav vein, sequela +C2836009|T037|PT|S25.321S|ICD10CM|Major laceration of right innominate or subclavian vein, sequela|Major laceration of right innominate or subclavian vein, sequela +C2836010|T037|AB|S25.322|ICD10CM|Major laceration of left innominate or subclavian vein|Major laceration of left innominate or subclavian vein +C2836010|T037|HT|S25.322|ICD10CM|Major laceration of left innominate or subclavian vein|Major laceration of left innominate or subclavian vein +C2836011|T037|AB|S25.322A|ICD10CM|Major laceration of left innominate or subclavian vein, init|Major laceration of left innominate or subclavian vein, init +C2836011|T037|PT|S25.322A|ICD10CM|Major laceration of left innominate or subclavian vein, initial encounter|Major laceration of left innominate or subclavian vein, initial encounter +C2836012|T037|AB|S25.322D|ICD10CM|Major laceration of left innominate or subclavian vein, subs|Major laceration of left innominate or subclavian vein, subs +C2836012|T037|PT|S25.322D|ICD10CM|Major laceration of left innominate or subclavian vein, subsequent encounter|Major laceration of left innominate or subclavian vein, subsequent encounter +C2836013|T037|AB|S25.322S|ICD10CM|Major laceration of left innominate or subclav vein, sequela|Major laceration of left innominate or subclav vein, sequela +C2836013|T037|PT|S25.322S|ICD10CM|Major laceration of left innominate or subclavian vein, sequela|Major laceration of left innominate or subclavian vein, sequela +C2836014|T037|AB|S25.329|ICD10CM|Major laceration of unsp innominate or subclavian vein|Major laceration of unsp innominate or subclavian vein +C2836014|T037|HT|S25.329|ICD10CM|Major laceration of unspecified innominate or subclavian vein|Major laceration of unspecified innominate or subclavian vein +C2836015|T037|AB|S25.329A|ICD10CM|Major laceration of unsp innominate or subclavian vein, init|Major laceration of unsp innominate or subclavian vein, init +C2836015|T037|PT|S25.329A|ICD10CM|Major laceration of unspecified innominate or subclavian vein, initial encounter|Major laceration of unspecified innominate or subclavian vein, initial encounter +C2836016|T037|AB|S25.329D|ICD10CM|Major laceration of unsp innominate or subclavian vein, subs|Major laceration of unsp innominate or subclavian vein, subs +C2836016|T037|PT|S25.329D|ICD10CM|Major laceration of unspecified innominate or subclavian vein, subsequent encounter|Major laceration of unspecified innominate or subclavian vein, subsequent encounter +C2836017|T037|AB|S25.329S|ICD10CM|Major laceration of unsp innominate or subclav vein, sequela|Major laceration of unsp innominate or subclav vein, sequela +C2836017|T037|PT|S25.329S|ICD10CM|Major laceration of unspecified innominate or subclavian vein, sequela|Major laceration of unspecified innominate or subclavian vein, sequela +C2836018|T037|AB|S25.39|ICD10CM|Other specified injury of innominate or subclavian vein|Other specified injury of innominate or subclavian vein +C2836018|T037|HT|S25.39|ICD10CM|Other specified injury of innominate or subclavian vein|Other specified injury of innominate or subclavian vein +C2836019|T037|AB|S25.391|ICD10CM|Oth injury of right innominate or subclavian vein|Oth injury of right innominate or subclavian vein +C2836019|T037|HT|S25.391|ICD10CM|Other specified injury of right innominate or subclavian vein|Other specified injury of right innominate or subclavian vein +C2836020|T037|AB|S25.391A|ICD10CM|Inj right innominate or subclavian vein, init encntr|Inj right innominate or subclavian vein, init encntr +C2836020|T037|PT|S25.391A|ICD10CM|Other specified injury of right innominate or subclavian vein, initial encounter|Other specified injury of right innominate or subclavian vein, initial encounter +C2836021|T037|AB|S25.391D|ICD10CM|Inj right innominate or subclavian vein, subs encntr|Inj right innominate or subclavian vein, subs encntr +C2836021|T037|PT|S25.391D|ICD10CM|Other specified injury of right innominate or subclavian vein, subsequent encounter|Other specified injury of right innominate or subclavian vein, subsequent encounter +C2836022|T037|AB|S25.391S|ICD10CM|Oth injury of right innominate or subclavian vein, sequela|Oth injury of right innominate or subclavian vein, sequela +C2836022|T037|PT|S25.391S|ICD10CM|Other specified injury of right innominate or subclavian vein, sequela|Other specified injury of right innominate or subclavian vein, sequela +C2836023|T037|AB|S25.392|ICD10CM|Other specified injury of left innominate or subclavian vein|Other specified injury of left innominate or subclavian vein +C2836023|T037|HT|S25.392|ICD10CM|Other specified injury of left innominate or subclavian vein|Other specified injury of left innominate or subclavian vein +C2836024|T037|AB|S25.392A|ICD10CM|Inj left innominate or subclavian vein, init encntr|Inj left innominate or subclavian vein, init encntr +C2836024|T037|PT|S25.392A|ICD10CM|Other specified injury of left innominate or subclavian vein, initial encounter|Other specified injury of left innominate or subclavian vein, initial encounter +C2836025|T037|AB|S25.392D|ICD10CM|Inj left innominate or subclavian vein, subs encntr|Inj left innominate or subclavian vein, subs encntr +C2836025|T037|PT|S25.392D|ICD10CM|Other specified injury of left innominate or subclavian vein, subsequent encounter|Other specified injury of left innominate or subclavian vein, subsequent encounter +C2836026|T037|AB|S25.392S|ICD10CM|Oth injury of left innominate or subclavian vein, sequela|Oth injury of left innominate or subclavian vein, sequela +C2836026|T037|PT|S25.392S|ICD10CM|Other specified injury of left innominate or subclavian vein, sequela|Other specified injury of left innominate or subclavian vein, sequela +C2836027|T037|AB|S25.399|ICD10CM|Oth injury of unspecified innominate or subclavian vein|Oth injury of unspecified innominate or subclavian vein +C2836027|T037|HT|S25.399|ICD10CM|Other specified injury of unspecified innominate or subclavian vein|Other specified injury of unspecified innominate or subclavian vein +C2836028|T037|AB|S25.399A|ICD10CM|Inj unsp innominate or subclavian vein, init encntr|Inj unsp innominate or subclavian vein, init encntr +C2836028|T037|PT|S25.399A|ICD10CM|Other specified injury of unspecified innominate or subclavian vein, initial encounter|Other specified injury of unspecified innominate or subclavian vein, initial encounter +C2836029|T037|AB|S25.399D|ICD10CM|Inj unsp innominate or subclavian vein, subs encntr|Inj unsp innominate or subclavian vein, subs encntr +C2836029|T037|PT|S25.399D|ICD10CM|Other specified injury of unspecified innominate or subclavian vein, subsequent encounter|Other specified injury of unspecified innominate or subclavian vein, subsequent encounter +C2836030|T037|AB|S25.399S|ICD10CM|Oth injury of unsp innominate or subclavian vein, sequela|Oth injury of unsp innominate or subclavian vein, sequela +C2836030|T037|PT|S25.399S|ICD10CM|Other specified injury of unspecified innominate or subclavian vein, sequela|Other specified injury of unspecified innominate or subclavian vein, sequela +C0273454|T037|PT|S25.4|ICD10|Injury of pulmonary blood vessels|Injury of pulmonary blood vessels +C0273454|T037|HT|S25.4|ICD10CM|Injury of pulmonary blood vessels|Injury of pulmonary blood vessels +C0273454|T037|AB|S25.4|ICD10CM|Injury of pulmonary blood vessels|Injury of pulmonary blood vessels +C2836031|T037|AB|S25.40|ICD10CM|Unspecified injury of pulmonary blood vessels|Unspecified injury of pulmonary blood vessels +C2836031|T037|HT|S25.40|ICD10CM|Unspecified injury of pulmonary blood vessels|Unspecified injury of pulmonary blood vessels +C2836032|T037|AB|S25.401|ICD10CM|Unspecified injury of right pulmonary blood vessels|Unspecified injury of right pulmonary blood vessels +C2836032|T037|HT|S25.401|ICD10CM|Unspecified injury of right pulmonary blood vessels|Unspecified injury of right pulmonary blood vessels +C2836033|T037|AB|S25.401A|ICD10CM|Unsp injury of right pulmonary blood vessels, init encntr|Unsp injury of right pulmonary blood vessels, init encntr +C2836033|T037|PT|S25.401A|ICD10CM|Unspecified injury of right pulmonary blood vessels, initial encounter|Unspecified injury of right pulmonary blood vessels, initial encounter +C2836034|T037|AB|S25.401D|ICD10CM|Unsp injury of right pulmonary blood vessels, subs encntr|Unsp injury of right pulmonary blood vessels, subs encntr +C2836034|T037|PT|S25.401D|ICD10CM|Unspecified injury of right pulmonary blood vessels, subsequent encounter|Unspecified injury of right pulmonary blood vessels, subsequent encounter +C2836035|T037|AB|S25.401S|ICD10CM|Unspecified injury of right pulmonary blood vessels, sequela|Unspecified injury of right pulmonary blood vessels, sequela +C2836035|T037|PT|S25.401S|ICD10CM|Unspecified injury of right pulmonary blood vessels, sequela|Unspecified injury of right pulmonary blood vessels, sequela +C2836036|T037|AB|S25.402|ICD10CM|Unspecified injury of left pulmonary blood vessels|Unspecified injury of left pulmonary blood vessels +C2836036|T037|HT|S25.402|ICD10CM|Unspecified injury of left pulmonary blood vessels|Unspecified injury of left pulmonary blood vessels +C2836037|T037|AB|S25.402A|ICD10CM|Unsp injury of left pulmonary blood vessels, init encntr|Unsp injury of left pulmonary blood vessels, init encntr +C2836037|T037|PT|S25.402A|ICD10CM|Unspecified injury of left pulmonary blood vessels, initial encounter|Unspecified injury of left pulmonary blood vessels, initial encounter +C2836038|T037|AB|S25.402D|ICD10CM|Unsp injury of left pulmonary blood vessels, subs encntr|Unsp injury of left pulmonary blood vessels, subs encntr +C2836038|T037|PT|S25.402D|ICD10CM|Unspecified injury of left pulmonary blood vessels, subsequent encounter|Unspecified injury of left pulmonary blood vessels, subsequent encounter +C2836039|T037|AB|S25.402S|ICD10CM|Unspecified injury of left pulmonary blood vessels, sequela|Unspecified injury of left pulmonary blood vessels, sequela +C2836039|T037|PT|S25.402S|ICD10CM|Unspecified injury of left pulmonary blood vessels, sequela|Unspecified injury of left pulmonary blood vessels, sequela +C2836040|T037|AB|S25.409|ICD10CM|Unspecified injury of unspecified pulmonary blood vessels|Unspecified injury of unspecified pulmonary blood vessels +C2836040|T037|HT|S25.409|ICD10CM|Unspecified injury of unspecified pulmonary blood vessels|Unspecified injury of unspecified pulmonary blood vessels +C2836041|T037|AB|S25.409A|ICD10CM|Unsp injury of unsp pulmonary blood vessels, init encntr|Unsp injury of unsp pulmonary blood vessels, init encntr +C2836041|T037|PT|S25.409A|ICD10CM|Unspecified injury of unspecified pulmonary blood vessels, initial encounter|Unspecified injury of unspecified pulmonary blood vessels, initial encounter +C2836042|T037|AB|S25.409D|ICD10CM|Unsp injury of unsp pulmonary blood vessels, subs encntr|Unsp injury of unsp pulmonary blood vessels, subs encntr +C2836042|T037|PT|S25.409D|ICD10CM|Unspecified injury of unspecified pulmonary blood vessels, subsequent encounter|Unspecified injury of unspecified pulmonary blood vessels, subsequent encounter +C2836043|T037|AB|S25.409S|ICD10CM|Unsp injury of unspecified pulmonary blood vessels, sequela|Unsp injury of unspecified pulmonary blood vessels, sequela +C2836043|T037|PT|S25.409S|ICD10CM|Unspecified injury of unspecified pulmonary blood vessels, sequela|Unspecified injury of unspecified pulmonary blood vessels, sequela +C2836044|T037|ET|S25.41|ICD10CM|Incomplete transection of pulmonary blood vessels|Incomplete transection of pulmonary blood vessels +C2836045|T037|ET|S25.41|ICD10CM|Laceration of pulmonary blood vessels NOS|Laceration of pulmonary blood vessels NOS +C2836047|T037|AB|S25.41|ICD10CM|Minor laceration of pulmonary blood vessels|Minor laceration of pulmonary blood vessels +C2836047|T037|HT|S25.41|ICD10CM|Minor laceration of pulmonary blood vessels|Minor laceration of pulmonary blood vessels +C2836046|T037|ET|S25.41|ICD10CM|Superficial laceration of pulmonary blood vessels|Superficial laceration of pulmonary blood vessels +C2836048|T037|AB|S25.411|ICD10CM|Minor laceration of right pulmonary blood vessels|Minor laceration of right pulmonary blood vessels +C2836048|T037|HT|S25.411|ICD10CM|Minor laceration of right pulmonary blood vessels|Minor laceration of right pulmonary blood vessels +C2836049|T037|AB|S25.411A|ICD10CM|Minor laceration of right pulmonary blood vessels, init|Minor laceration of right pulmonary blood vessels, init +C2836049|T037|PT|S25.411A|ICD10CM|Minor laceration of right pulmonary blood vessels, initial encounter|Minor laceration of right pulmonary blood vessels, initial encounter +C2836050|T037|AB|S25.411D|ICD10CM|Minor laceration of right pulmonary blood vessels, subs|Minor laceration of right pulmonary blood vessels, subs +C2836050|T037|PT|S25.411D|ICD10CM|Minor laceration of right pulmonary blood vessels, subsequent encounter|Minor laceration of right pulmonary blood vessels, subsequent encounter +C2836051|T037|PT|S25.411S|ICD10CM|Minor laceration of right pulmonary blood vessels, sequela|Minor laceration of right pulmonary blood vessels, sequela +C2836051|T037|AB|S25.411S|ICD10CM|Minor laceration of right pulmonary blood vessels, sequela|Minor laceration of right pulmonary blood vessels, sequela +C2836052|T037|AB|S25.412|ICD10CM|Minor laceration of left pulmonary blood vessels|Minor laceration of left pulmonary blood vessels +C2836052|T037|HT|S25.412|ICD10CM|Minor laceration of left pulmonary blood vessels|Minor laceration of left pulmonary blood vessels +C2836053|T037|AB|S25.412A|ICD10CM|Minor laceration of left pulmonary blood vessels, init|Minor laceration of left pulmonary blood vessels, init +C2836053|T037|PT|S25.412A|ICD10CM|Minor laceration of left pulmonary blood vessels, initial encounter|Minor laceration of left pulmonary blood vessels, initial encounter +C2836054|T037|AB|S25.412D|ICD10CM|Minor laceration of left pulmonary blood vessels, subs|Minor laceration of left pulmonary blood vessels, subs +C2836054|T037|PT|S25.412D|ICD10CM|Minor laceration of left pulmonary blood vessels, subsequent encounter|Minor laceration of left pulmonary blood vessels, subsequent encounter +C2836055|T037|PT|S25.412S|ICD10CM|Minor laceration of left pulmonary blood vessels, sequela|Minor laceration of left pulmonary blood vessels, sequela +C2836055|T037|AB|S25.412S|ICD10CM|Minor laceration of left pulmonary blood vessels, sequela|Minor laceration of left pulmonary blood vessels, sequela +C2836056|T037|AB|S25.419|ICD10CM|Minor laceration of unspecified pulmonary blood vessels|Minor laceration of unspecified pulmonary blood vessels +C2836056|T037|HT|S25.419|ICD10CM|Minor laceration of unspecified pulmonary blood vessels|Minor laceration of unspecified pulmonary blood vessels +C2836057|T037|AB|S25.419A|ICD10CM|Minor laceration of unsp pulmonary blood vessels, init|Minor laceration of unsp pulmonary blood vessels, init +C2836057|T037|PT|S25.419A|ICD10CM|Minor laceration of unspecified pulmonary blood vessels, initial encounter|Minor laceration of unspecified pulmonary blood vessels, initial encounter +C2836058|T037|AB|S25.419D|ICD10CM|Minor laceration of unsp pulmonary blood vessels, subs|Minor laceration of unsp pulmonary blood vessels, subs +C2836058|T037|PT|S25.419D|ICD10CM|Minor laceration of unspecified pulmonary blood vessels, subsequent encounter|Minor laceration of unspecified pulmonary blood vessels, subsequent encounter +C2836059|T037|AB|S25.419S|ICD10CM|Minor laceration of unsp pulmonary blood vessels, sequela|Minor laceration of unsp pulmonary blood vessels, sequela +C2836059|T037|PT|S25.419S|ICD10CM|Minor laceration of unspecified pulmonary blood vessels, sequela|Minor laceration of unspecified pulmonary blood vessels, sequela +C2836060|T037|ET|S25.42|ICD10CM|Complete transection of pulmonary blood vessels|Complete transection of pulmonary blood vessels +C2836062|T037|AB|S25.42|ICD10CM|Major laceration of pulmonary blood vessels|Major laceration of pulmonary blood vessels +C2836062|T037|HT|S25.42|ICD10CM|Major laceration of pulmonary blood vessels|Major laceration of pulmonary blood vessels +C2836061|T037|ET|S25.42|ICD10CM|Traumatic rupture of pulmonary blood vessels|Traumatic rupture of pulmonary blood vessels +C2836063|T037|AB|S25.421|ICD10CM|Major laceration of right pulmonary blood vessels|Major laceration of right pulmonary blood vessels +C2836063|T037|HT|S25.421|ICD10CM|Major laceration of right pulmonary blood vessels|Major laceration of right pulmonary blood vessels +C2836064|T037|AB|S25.421A|ICD10CM|Major laceration of right pulmonary blood vessels, init|Major laceration of right pulmonary blood vessels, init +C2836064|T037|PT|S25.421A|ICD10CM|Major laceration of right pulmonary blood vessels, initial encounter|Major laceration of right pulmonary blood vessels, initial encounter +C2836065|T037|AB|S25.421D|ICD10CM|Major laceration of right pulmonary blood vessels, subs|Major laceration of right pulmonary blood vessels, subs +C2836065|T037|PT|S25.421D|ICD10CM|Major laceration of right pulmonary blood vessels, subsequent encounter|Major laceration of right pulmonary blood vessels, subsequent encounter +C2836066|T037|PT|S25.421S|ICD10CM|Major laceration of right pulmonary blood vessels, sequela|Major laceration of right pulmonary blood vessels, sequela +C2836066|T037|AB|S25.421S|ICD10CM|Major laceration of right pulmonary blood vessels, sequela|Major laceration of right pulmonary blood vessels, sequela +C2836067|T037|AB|S25.422|ICD10CM|Major laceration of left pulmonary blood vessels|Major laceration of left pulmonary blood vessels +C2836067|T037|HT|S25.422|ICD10CM|Major laceration of left pulmonary blood vessels|Major laceration of left pulmonary blood vessels +C2836068|T037|AB|S25.422A|ICD10CM|Major laceration of left pulmonary blood vessels, init|Major laceration of left pulmonary blood vessels, init +C2836068|T037|PT|S25.422A|ICD10CM|Major laceration of left pulmonary blood vessels, initial encounter|Major laceration of left pulmonary blood vessels, initial encounter +C2836069|T037|AB|S25.422D|ICD10CM|Major laceration of left pulmonary blood vessels, subs|Major laceration of left pulmonary blood vessels, subs +C2836069|T037|PT|S25.422D|ICD10CM|Major laceration of left pulmonary blood vessels, subsequent encounter|Major laceration of left pulmonary blood vessels, subsequent encounter +C2836070|T037|PT|S25.422S|ICD10CM|Major laceration of left pulmonary blood vessels, sequela|Major laceration of left pulmonary blood vessels, sequela +C2836070|T037|AB|S25.422S|ICD10CM|Major laceration of left pulmonary blood vessels, sequela|Major laceration of left pulmonary blood vessels, sequela +C2836071|T037|AB|S25.429|ICD10CM|Major laceration of unspecified pulmonary blood vessels|Major laceration of unspecified pulmonary blood vessels +C2836071|T037|HT|S25.429|ICD10CM|Major laceration of unspecified pulmonary blood vessels|Major laceration of unspecified pulmonary blood vessels +C2836072|T037|AB|S25.429A|ICD10CM|Major laceration of unsp pulmonary blood vessels, init|Major laceration of unsp pulmonary blood vessels, init +C2836072|T037|PT|S25.429A|ICD10CM|Major laceration of unspecified pulmonary blood vessels, initial encounter|Major laceration of unspecified pulmonary blood vessels, initial encounter +C2836073|T037|AB|S25.429D|ICD10CM|Major laceration of unsp pulmonary blood vessels, subs|Major laceration of unsp pulmonary blood vessels, subs +C2836073|T037|PT|S25.429D|ICD10CM|Major laceration of unspecified pulmonary blood vessels, subsequent encounter|Major laceration of unspecified pulmonary blood vessels, subsequent encounter +C2836074|T037|AB|S25.429S|ICD10CM|Major laceration of unsp pulmonary blood vessels, sequela|Major laceration of unsp pulmonary blood vessels, sequela +C2836074|T037|PT|S25.429S|ICD10CM|Major laceration of unspecified pulmonary blood vessels, sequela|Major laceration of unspecified pulmonary blood vessels, sequela +C2836075|T037|AB|S25.49|ICD10CM|Other specified injury of pulmonary blood vessels|Other specified injury of pulmonary blood vessels +C2836075|T037|HT|S25.49|ICD10CM|Other specified injury of pulmonary blood vessels|Other specified injury of pulmonary blood vessels +C2836076|T037|AB|S25.491|ICD10CM|Other specified injury of right pulmonary blood vessels|Other specified injury of right pulmonary blood vessels +C2836076|T037|HT|S25.491|ICD10CM|Other specified injury of right pulmonary blood vessels|Other specified injury of right pulmonary blood vessels +C2836077|T037|AB|S25.491A|ICD10CM|Oth injury of right pulmonary blood vessels, init encntr|Oth injury of right pulmonary blood vessels, init encntr +C2836077|T037|PT|S25.491A|ICD10CM|Other specified injury of right pulmonary blood vessels, initial encounter|Other specified injury of right pulmonary blood vessels, initial encounter +C2836078|T037|AB|S25.491D|ICD10CM|Oth injury of right pulmonary blood vessels, subs encntr|Oth injury of right pulmonary blood vessels, subs encntr +C2836078|T037|PT|S25.491D|ICD10CM|Other specified injury of right pulmonary blood vessels, subsequent encounter|Other specified injury of right pulmonary blood vessels, subsequent encounter +C2836079|T037|AB|S25.491S|ICD10CM|Oth injury of right pulmonary blood vessels, sequela|Oth injury of right pulmonary blood vessels, sequela +C2836079|T037|PT|S25.491S|ICD10CM|Other specified injury of right pulmonary blood vessels, sequela|Other specified injury of right pulmonary blood vessels, sequela +C2836080|T037|AB|S25.492|ICD10CM|Other specified injury of left pulmonary blood vessels|Other specified injury of left pulmonary blood vessels +C2836080|T037|HT|S25.492|ICD10CM|Other specified injury of left pulmonary blood vessels|Other specified injury of left pulmonary blood vessels +C2836081|T037|AB|S25.492A|ICD10CM|Oth injury of left pulmonary blood vessels, init encntr|Oth injury of left pulmonary blood vessels, init encntr +C2836081|T037|PT|S25.492A|ICD10CM|Other specified injury of left pulmonary blood vessels, initial encounter|Other specified injury of left pulmonary blood vessels, initial encounter +C2836082|T037|AB|S25.492D|ICD10CM|Oth injury of left pulmonary blood vessels, subs encntr|Oth injury of left pulmonary blood vessels, subs encntr +C2836082|T037|PT|S25.492D|ICD10CM|Other specified injury of left pulmonary blood vessels, subsequent encounter|Other specified injury of left pulmonary blood vessels, subsequent encounter +C2836083|T037|AB|S25.492S|ICD10CM|Oth injury of left pulmonary blood vessels, sequela|Oth injury of left pulmonary blood vessels, sequela +C2836083|T037|PT|S25.492S|ICD10CM|Other specified injury of left pulmonary blood vessels, sequela|Other specified injury of left pulmonary blood vessels, sequela +C2836084|T037|AB|S25.499|ICD10CM|Oth injury of unspecified pulmonary blood vessels|Oth injury of unspecified pulmonary blood vessels +C2836084|T037|HT|S25.499|ICD10CM|Other specified injury of unspecified pulmonary blood vessels|Other specified injury of unspecified pulmonary blood vessels +C2836085|T037|AB|S25.499A|ICD10CM|Oth injury of unsp pulmonary blood vessels, init encntr|Oth injury of unsp pulmonary blood vessels, init encntr +C2836085|T037|PT|S25.499A|ICD10CM|Other specified injury of unspecified pulmonary blood vessels, initial encounter|Other specified injury of unspecified pulmonary blood vessels, initial encounter +C2836086|T037|AB|S25.499D|ICD10CM|Oth injury of unsp pulmonary blood vessels, subs encntr|Oth injury of unsp pulmonary blood vessels, subs encntr +C2836086|T037|PT|S25.499D|ICD10CM|Other specified injury of unspecified pulmonary blood vessels, subsequent encounter|Other specified injury of unspecified pulmonary blood vessels, subsequent encounter +C2836087|T037|AB|S25.499S|ICD10CM|Oth injury of unspecified pulmonary blood vessels, sequela|Oth injury of unspecified pulmonary blood vessels, sequela +C2836087|T037|PT|S25.499S|ICD10CM|Other specified injury of unspecified pulmonary blood vessels, sequela|Other specified injury of unspecified pulmonary blood vessels, sequela +C0392044|T037|PT|S25.5|ICD10|Injury of intercostal blood vessels|Injury of intercostal blood vessels +C0392044|T037|HT|S25.5|ICD10CM|Injury of intercostal blood vessels|Injury of intercostal blood vessels +C0392044|T037|AB|S25.5|ICD10CM|Injury of intercostal blood vessels|Injury of intercostal blood vessels +C2836088|T037|AB|S25.50|ICD10CM|Unspecified injury of intercostal blood vessels|Unspecified injury of intercostal blood vessels +C2836088|T037|HT|S25.50|ICD10CM|Unspecified injury of intercostal blood vessels|Unspecified injury of intercostal blood vessels +C2836089|T037|AB|S25.501|ICD10CM|Unspecified injury of intercostal blood vessels, right side|Unspecified injury of intercostal blood vessels, right side +C2836089|T037|HT|S25.501|ICD10CM|Unspecified injury of intercostal blood vessels, right side|Unspecified injury of intercostal blood vessels, right side +C2836090|T037|AB|S25.501A|ICD10CM|Unsp injury of intercostal blood vessels, right side, init|Unsp injury of intercostal blood vessels, right side, init +C2836090|T037|PT|S25.501A|ICD10CM|Unspecified injury of intercostal blood vessels, right side, initial encounter|Unspecified injury of intercostal blood vessels, right side, initial encounter +C2836091|T037|AB|S25.501D|ICD10CM|Unsp injury of intercostal blood vessels, right side, subs|Unsp injury of intercostal blood vessels, right side, subs +C2836091|T037|PT|S25.501D|ICD10CM|Unspecified injury of intercostal blood vessels, right side, subsequent encounter|Unspecified injury of intercostal blood vessels, right side, subsequent encounter +C2836092|T037|AB|S25.501S|ICD10CM|Unsp injury of intercostl blood vessels, right side, sequela|Unsp injury of intercostl blood vessels, right side, sequela +C2836092|T037|PT|S25.501S|ICD10CM|Unspecified injury of intercostal blood vessels, right side, sequela|Unspecified injury of intercostal blood vessels, right side, sequela +C2836093|T037|AB|S25.502|ICD10CM|Unspecified injury of intercostal blood vessels, left side|Unspecified injury of intercostal blood vessels, left side +C2836093|T037|HT|S25.502|ICD10CM|Unspecified injury of intercostal blood vessels, left side|Unspecified injury of intercostal blood vessels, left side +C2836094|T037|AB|S25.502A|ICD10CM|Unsp injury of intercostal blood vessels, left side, init|Unsp injury of intercostal blood vessels, left side, init +C2836094|T037|PT|S25.502A|ICD10CM|Unspecified injury of intercostal blood vessels, left side, initial encounter|Unspecified injury of intercostal blood vessels, left side, initial encounter +C2836095|T037|AB|S25.502D|ICD10CM|Unsp injury of intercostal blood vessels, left side, subs|Unsp injury of intercostal blood vessels, left side, subs +C2836095|T037|PT|S25.502D|ICD10CM|Unspecified injury of intercostal blood vessels, left side, subsequent encounter|Unspecified injury of intercostal blood vessels, left side, subsequent encounter +C2836096|T037|AB|S25.502S|ICD10CM|Unsp injury of intercostal blood vessels, left side, sequela|Unsp injury of intercostal blood vessels, left side, sequela +C2836096|T037|PT|S25.502S|ICD10CM|Unspecified injury of intercostal blood vessels, left side, sequela|Unspecified injury of intercostal blood vessels, left side, sequela +C2836097|T037|AB|S25.509|ICD10CM|Unsp injury of intercostal blood vessels, unspecified side|Unsp injury of intercostal blood vessels, unspecified side +C2836097|T037|HT|S25.509|ICD10CM|Unspecified injury of intercostal blood vessels, unspecified side|Unspecified injury of intercostal blood vessels, unspecified side +C2836098|T037|AB|S25.509A|ICD10CM|Unsp injury of intercostal blood vessels, unsp side, init|Unsp injury of intercostal blood vessels, unsp side, init +C2836098|T037|PT|S25.509A|ICD10CM|Unspecified injury of intercostal blood vessels, unspecified side, initial encounter|Unspecified injury of intercostal blood vessels, unspecified side, initial encounter +C2836099|T037|AB|S25.509D|ICD10CM|Unsp injury of intercostal blood vessels, unsp side, subs|Unsp injury of intercostal blood vessels, unsp side, subs +C2836099|T037|PT|S25.509D|ICD10CM|Unspecified injury of intercostal blood vessels, unspecified side, subsequent encounter|Unspecified injury of intercostal blood vessels, unspecified side, subsequent encounter +C2836100|T037|AB|S25.509S|ICD10CM|Unsp injury of intercostal blood vessels, unsp side, sequela|Unsp injury of intercostal blood vessels, unsp side, sequela +C2836100|T037|PT|S25.509S|ICD10CM|Unspecified injury of intercostal blood vessels, unspecified side, sequela|Unspecified injury of intercostal blood vessels, unspecified side, sequela +C2836101|T037|AB|S25.51|ICD10CM|Laceration of intercostal blood vessels|Laceration of intercostal blood vessels +C2836101|T037|HT|S25.51|ICD10CM|Laceration of intercostal blood vessels|Laceration of intercostal blood vessels +C2836102|T037|AB|S25.511|ICD10CM|Laceration of intercostal blood vessels, right side|Laceration of intercostal blood vessels, right side +C2836102|T037|HT|S25.511|ICD10CM|Laceration of intercostal blood vessels, right side|Laceration of intercostal blood vessels, right side +C2836103|T037|AB|S25.511A|ICD10CM|Laceration of intercostal blood vessels, right side, init|Laceration of intercostal blood vessels, right side, init +C2836103|T037|PT|S25.511A|ICD10CM|Laceration of intercostal blood vessels, right side, initial encounter|Laceration of intercostal blood vessels, right side, initial encounter +C2836104|T037|AB|S25.511D|ICD10CM|Laceration of intercostal blood vessels, right side, subs|Laceration of intercostal blood vessels, right side, subs +C2836104|T037|PT|S25.511D|ICD10CM|Laceration of intercostal blood vessels, right side, subsequent encounter|Laceration of intercostal blood vessels, right side, subsequent encounter +C2836105|T037|AB|S25.511S|ICD10CM|Laceration of intercostal blood vessels, right side, sequela|Laceration of intercostal blood vessels, right side, sequela +C2836105|T037|PT|S25.511S|ICD10CM|Laceration of intercostal blood vessels, right side, sequela|Laceration of intercostal blood vessels, right side, sequela +C2836106|T037|AB|S25.512|ICD10CM|Laceration of intercostal blood vessels, left side|Laceration of intercostal blood vessels, left side +C2836106|T037|HT|S25.512|ICD10CM|Laceration of intercostal blood vessels, left side|Laceration of intercostal blood vessels, left side +C2836107|T037|AB|S25.512A|ICD10CM|Laceration of intercostal blood vessels, left side, init|Laceration of intercostal blood vessels, left side, init +C2836107|T037|PT|S25.512A|ICD10CM|Laceration of intercostal blood vessels, left side, initial encounter|Laceration of intercostal blood vessels, left side, initial encounter +C2836108|T037|AB|S25.512D|ICD10CM|Laceration of intercostal blood vessels, left side, subs|Laceration of intercostal blood vessels, left side, subs +C2836108|T037|PT|S25.512D|ICD10CM|Laceration of intercostal blood vessels, left side, subsequent encounter|Laceration of intercostal blood vessels, left side, subsequent encounter +C2836109|T037|AB|S25.512S|ICD10CM|Laceration of intercostal blood vessels, left side, sequela|Laceration of intercostal blood vessels, left side, sequela +C2836109|T037|PT|S25.512S|ICD10CM|Laceration of intercostal blood vessels, left side, sequela|Laceration of intercostal blood vessels, left side, sequela +C2836110|T037|AB|S25.519|ICD10CM|Laceration of intercostal blood vessels, unspecified side|Laceration of intercostal blood vessels, unspecified side +C2836110|T037|HT|S25.519|ICD10CM|Laceration of intercostal blood vessels, unspecified side|Laceration of intercostal blood vessels, unspecified side +C2836111|T037|AB|S25.519A|ICD10CM|Laceration of intercostal blood vessels, unsp side, init|Laceration of intercostal blood vessels, unsp side, init +C2836111|T037|PT|S25.519A|ICD10CM|Laceration of intercostal blood vessels, unspecified side, initial encounter|Laceration of intercostal blood vessels, unspecified side, initial encounter +C2836112|T037|AB|S25.519D|ICD10CM|Laceration of intercostal blood vessels, unsp side, subs|Laceration of intercostal blood vessels, unsp side, subs +C2836112|T037|PT|S25.519D|ICD10CM|Laceration of intercostal blood vessels, unspecified side, subsequent encounter|Laceration of intercostal blood vessels, unspecified side, subsequent encounter +C2836113|T037|AB|S25.519S|ICD10CM|Laceration of intercostal blood vessels, unsp side, sequela|Laceration of intercostal blood vessels, unsp side, sequela +C2836113|T037|PT|S25.519S|ICD10CM|Laceration of intercostal blood vessels, unspecified side, sequela|Laceration of intercostal blood vessels, unspecified side, sequela +C2836114|T037|AB|S25.59|ICD10CM|Other specified injury of intercostal blood vessels|Other specified injury of intercostal blood vessels +C2836114|T037|HT|S25.59|ICD10CM|Other specified injury of intercostal blood vessels|Other specified injury of intercostal blood vessels +C2836115|T037|AB|S25.591|ICD10CM|Oth injury of intercostal blood vessels, right side|Oth injury of intercostal blood vessels, right side +C2836115|T037|HT|S25.591|ICD10CM|Other specified injury of intercostal blood vessels, right side|Other specified injury of intercostal blood vessels, right side +C2836116|T037|AB|S25.591A|ICD10CM|Inj intercostal blood vessels, right side, init encntr|Inj intercostal blood vessels, right side, init encntr +C2836116|T037|PT|S25.591A|ICD10CM|Other specified injury of intercostal blood vessels, right side, initial encounter|Other specified injury of intercostal blood vessels, right side, initial encounter +C2836117|T037|AB|S25.591D|ICD10CM|Inj intercostal blood vessels, right side, subs encntr|Inj intercostal blood vessels, right side, subs encntr +C2836117|T037|PT|S25.591D|ICD10CM|Other specified injury of intercostal blood vessels, right side, subsequent encounter|Other specified injury of intercostal blood vessels, right side, subsequent encounter +C2836118|T037|AB|S25.591S|ICD10CM|Oth injury of intercostal blood vessels, right side, sequela|Oth injury of intercostal blood vessels, right side, sequela +C2836118|T037|PT|S25.591S|ICD10CM|Other specified injury of intercostal blood vessels, right side, sequela|Other specified injury of intercostal blood vessels, right side, sequela +C2836119|T037|AB|S25.592|ICD10CM|Oth injury of intercostal blood vessels, left side|Oth injury of intercostal blood vessels, left side +C2836119|T037|HT|S25.592|ICD10CM|Other specified injury of intercostal blood vessels, left side|Other specified injury of intercostal blood vessels, left side +C2836120|T037|AB|S25.592A|ICD10CM|Inj intercostal blood vessels, left side, init encntr|Inj intercostal blood vessels, left side, init encntr +C2836120|T037|PT|S25.592A|ICD10CM|Other specified injury of intercostal blood vessels, left side, initial encounter|Other specified injury of intercostal blood vessels, left side, initial encounter +C2836121|T037|AB|S25.592D|ICD10CM|Inj intercostal blood vessels, left side, subs encntr|Inj intercostal blood vessels, left side, subs encntr +C2836121|T037|PT|S25.592D|ICD10CM|Other specified injury of intercostal blood vessels, left side, subsequent encounter|Other specified injury of intercostal blood vessels, left side, subsequent encounter +C2836122|T037|AB|S25.592S|ICD10CM|Oth injury of intercostal blood vessels, left side, sequela|Oth injury of intercostal blood vessels, left side, sequela +C2836122|T037|PT|S25.592S|ICD10CM|Other specified injury of intercostal blood vessels, left side, sequela|Other specified injury of intercostal blood vessels, left side, sequela +C2836123|T037|AB|S25.599|ICD10CM|Oth injury of intercostal blood vessels, unspecified side|Oth injury of intercostal blood vessels, unspecified side +C2836123|T037|HT|S25.599|ICD10CM|Other specified injury of intercostal blood vessels, unspecified side|Other specified injury of intercostal blood vessels, unspecified side +C2836124|T037|AB|S25.599A|ICD10CM|Inj intercostal blood vessels, unsp side, init encntr|Inj intercostal blood vessels, unsp side, init encntr +C2836124|T037|PT|S25.599A|ICD10CM|Other specified injury of intercostal blood vessels, unspecified side, initial encounter|Other specified injury of intercostal blood vessels, unspecified side, initial encounter +C2836125|T037|AB|S25.599D|ICD10CM|Inj intercostal blood vessels, unsp side, subs encntr|Inj intercostal blood vessels, unsp side, subs encntr +C2836125|T037|PT|S25.599D|ICD10CM|Other specified injury of intercostal blood vessels, unspecified side, subsequent encounter|Other specified injury of intercostal blood vessels, unspecified side, subsequent encounter +C2836126|T037|AB|S25.599S|ICD10CM|Oth injury of intercostal blood vessels, unsp side, sequela|Oth injury of intercostal blood vessels, unsp side, sequela +C2836126|T037|PT|S25.599S|ICD10CM|Other specified injury of intercostal blood vessels, unspecified side, sequela|Other specified injury of intercostal blood vessels, unspecified side, sequela +C0160701|T037|PT|S25.7|ICD10|Injury of multiple blood vessels of thorax|Injury of multiple blood vessels of thorax +C0273459|T037|ET|S25.8|ICD10CM|Injury of azygos vein|Injury of azygos vein +C2836127|T037|ET|S25.8|ICD10CM|Injury of mammary artery or vein|Injury of mammary artery or vein +C0478243|T037|PT|S25.8|ICD10|Injury of other blood vessels of thorax|Injury of other blood vessels of thorax +C0478243|T037|HT|S25.8|ICD10CM|Injury of other blood vessels of thorax|Injury of other blood vessels of thorax +C0478243|T037|AB|S25.8|ICD10CM|Injury of other blood vessels of thorax|Injury of other blood vessels of thorax +C2836128|T037|AB|S25.80|ICD10CM|Unspecified injury of other blood vessels of thorax|Unspecified injury of other blood vessels of thorax +C2836128|T037|HT|S25.80|ICD10CM|Unspecified injury of other blood vessels of thorax|Unspecified injury of other blood vessels of thorax +C2836129|T037|AB|S25.801|ICD10CM|Unsp injury of other blood vessels of thorax, right side|Unsp injury of other blood vessels of thorax, right side +C2836129|T037|HT|S25.801|ICD10CM|Unspecified injury of other blood vessels of thorax, right side|Unspecified injury of other blood vessels of thorax, right side +C2836130|T037|AB|S25.801A|ICD10CM|Unsp injury of oth blood vessels of thorax, right side, init|Unsp injury of oth blood vessels of thorax, right side, init +C2836130|T037|PT|S25.801A|ICD10CM|Unspecified injury of other blood vessels of thorax, right side, initial encounter|Unspecified injury of other blood vessels of thorax, right side, initial encounter +C2836131|T037|AB|S25.801D|ICD10CM|Unsp injury of oth blood vessels of thorax, right side, subs|Unsp injury of oth blood vessels of thorax, right side, subs +C2836131|T037|PT|S25.801D|ICD10CM|Unspecified injury of other blood vessels of thorax, right side, subsequent encounter|Unspecified injury of other blood vessels of thorax, right side, subsequent encounter +C2836132|T037|AB|S25.801S|ICD10CM|Unsp injury of blood vessels of thorax, right side, sequela|Unsp injury of blood vessels of thorax, right side, sequela +C2836132|T037|PT|S25.801S|ICD10CM|Unspecified injury of other blood vessels of thorax, right side, sequela|Unspecified injury of other blood vessels of thorax, right side, sequela +C2836133|T037|AB|S25.802|ICD10CM|Unsp injury of other blood vessels of thorax, left side|Unsp injury of other blood vessels of thorax, left side +C2836133|T037|HT|S25.802|ICD10CM|Unspecified injury of other blood vessels of thorax, left side|Unspecified injury of other blood vessels of thorax, left side +C2836134|T037|AB|S25.802A|ICD10CM|Unsp injury of oth blood vessels of thorax, left side, init|Unsp injury of oth blood vessels of thorax, left side, init +C2836134|T037|PT|S25.802A|ICD10CM|Unspecified injury of other blood vessels of thorax, left side, initial encounter|Unspecified injury of other blood vessels of thorax, left side, initial encounter +C2836135|T037|AB|S25.802D|ICD10CM|Unsp injury of oth blood vessels of thorax, left side, subs|Unsp injury of oth blood vessels of thorax, left side, subs +C2836135|T037|PT|S25.802D|ICD10CM|Unspecified injury of other blood vessels of thorax, left side, subsequent encounter|Unspecified injury of other blood vessels of thorax, left side, subsequent encounter +C2836136|T037|AB|S25.802S|ICD10CM|Unsp injury of blood vessels of thorax, left side, sequela|Unsp injury of blood vessels of thorax, left side, sequela +C2836136|T037|PT|S25.802S|ICD10CM|Unspecified injury of other blood vessels of thorax, left side, sequela|Unspecified injury of other blood vessels of thorax, left side, sequela +C2836137|T037|AB|S25.809|ICD10CM|Unsp injury of other blood vessels of thorax, unsp side|Unsp injury of other blood vessels of thorax, unsp side +C2836137|T037|HT|S25.809|ICD10CM|Unspecified injury of other blood vessels of thorax, unspecified side|Unspecified injury of other blood vessels of thorax, unspecified side +C2836138|T037|AB|S25.809A|ICD10CM|Unsp injury of oth blood vessels of thorax, unsp side, init|Unsp injury of oth blood vessels of thorax, unsp side, init +C2836138|T037|PT|S25.809A|ICD10CM|Unspecified injury of other blood vessels of thorax, unspecified side, initial encounter|Unspecified injury of other blood vessels of thorax, unspecified side, initial encounter +C2836139|T037|AB|S25.809D|ICD10CM|Unsp injury of oth blood vessels of thorax, unsp side, subs|Unsp injury of oth blood vessels of thorax, unsp side, subs +C2836139|T037|PT|S25.809D|ICD10CM|Unspecified injury of other blood vessels of thorax, unspecified side, subsequent encounter|Unspecified injury of other blood vessels of thorax, unspecified side, subsequent encounter +C2836140|T037|AB|S25.809S|ICD10CM|Unsp injury of blood vessels of thorax, unsp side, sequela|Unsp injury of blood vessels of thorax, unsp side, sequela +C2836140|T037|PT|S25.809S|ICD10CM|Unspecified injury of other blood vessels of thorax, unspecified side, sequela|Unspecified injury of other blood vessels of thorax, unspecified side, sequela +C2836141|T037|AB|S25.81|ICD10CM|Laceration of other blood vessels of thorax|Laceration of other blood vessels of thorax +C2836141|T037|HT|S25.81|ICD10CM|Laceration of other blood vessels of thorax|Laceration of other blood vessels of thorax +C2836142|T037|AB|S25.811|ICD10CM|Laceration of other blood vessels of thorax, right side|Laceration of other blood vessels of thorax, right side +C2836142|T037|HT|S25.811|ICD10CM|Laceration of other blood vessels of thorax, right side|Laceration of other blood vessels of thorax, right side +C2836143|T037|AB|S25.811A|ICD10CM|Laceration of oth blood vessels of thorax, right side, init|Laceration of oth blood vessels of thorax, right side, init +C2836143|T037|PT|S25.811A|ICD10CM|Laceration of other blood vessels of thorax, right side, initial encounter|Laceration of other blood vessels of thorax, right side, initial encounter +C2836144|T037|AB|S25.811D|ICD10CM|Laceration of oth blood vessels of thorax, right side, subs|Laceration of oth blood vessels of thorax, right side, subs +C2836144|T037|PT|S25.811D|ICD10CM|Laceration of other blood vessels of thorax, right side, subsequent encounter|Laceration of other blood vessels of thorax, right side, subsequent encounter +C2836145|T037|AB|S25.811S|ICD10CM|Laceration of blood vessels of thorax, right side, sequela|Laceration of blood vessels of thorax, right side, sequela +C2836145|T037|PT|S25.811S|ICD10CM|Laceration of other blood vessels of thorax, right side, sequela|Laceration of other blood vessels of thorax, right side, sequela +C2836146|T037|AB|S25.812|ICD10CM|Laceration of other blood vessels of thorax, left side|Laceration of other blood vessels of thorax, left side +C2836146|T037|HT|S25.812|ICD10CM|Laceration of other blood vessels of thorax, left side|Laceration of other blood vessels of thorax, left side +C2836147|T037|AB|S25.812A|ICD10CM|Laceration of oth blood vessels of thorax, left side, init|Laceration of oth blood vessels of thorax, left side, init +C2836147|T037|PT|S25.812A|ICD10CM|Laceration of other blood vessels of thorax, left side, initial encounter|Laceration of other blood vessels of thorax, left side, initial encounter +C2836148|T037|AB|S25.812D|ICD10CM|Laceration of oth blood vessels of thorax, left side, subs|Laceration of oth blood vessels of thorax, left side, subs +C2836148|T037|PT|S25.812D|ICD10CM|Laceration of other blood vessels of thorax, left side, subsequent encounter|Laceration of other blood vessels of thorax, left side, subsequent encounter +C2836149|T037|AB|S25.812S|ICD10CM|Laceration of blood vessels of thorax, left side, sequela|Laceration of blood vessels of thorax, left side, sequela +C2836149|T037|PT|S25.812S|ICD10CM|Laceration of other blood vessels of thorax, left side, sequela|Laceration of other blood vessels of thorax, left side, sequela +C2836150|T037|AB|S25.819|ICD10CM|Laceration of other blood vessels of thorax, unsp side|Laceration of other blood vessels of thorax, unsp side +C2836150|T037|HT|S25.819|ICD10CM|Laceration of other blood vessels of thorax, unspecified side|Laceration of other blood vessels of thorax, unspecified side +C2836151|T037|AB|S25.819A|ICD10CM|Laceration of oth blood vessels of thorax, unsp side, init|Laceration of oth blood vessels of thorax, unsp side, init +C2836151|T037|PT|S25.819A|ICD10CM|Laceration of other blood vessels of thorax, unspecified side, initial encounter|Laceration of other blood vessels of thorax, unspecified side, initial encounter +C2836152|T037|AB|S25.819D|ICD10CM|Laceration of oth blood vessels of thorax, unsp side, subs|Laceration of oth blood vessels of thorax, unsp side, subs +C2836152|T037|PT|S25.819D|ICD10CM|Laceration of other blood vessels of thorax, unspecified side, subsequent encounter|Laceration of other blood vessels of thorax, unspecified side, subsequent encounter +C2836153|T037|AB|S25.819S|ICD10CM|Laceration of blood vessels of thorax, unsp side, sequela|Laceration of blood vessels of thorax, unsp side, sequela +C2836153|T037|PT|S25.819S|ICD10CM|Laceration of other blood vessels of thorax, unspecified side, sequela|Laceration of other blood vessels of thorax, unspecified side, sequela +C2836154|T037|AB|S25.89|ICD10CM|Other specified injury of other blood vessels of thorax|Other specified injury of other blood vessels of thorax +C2836154|T037|HT|S25.89|ICD10CM|Other specified injury of other blood vessels of thorax|Other specified injury of other blood vessels of thorax +C2836155|T037|AB|S25.891|ICD10CM|Oth injury of other blood vessels of thorax, right side|Oth injury of other blood vessels of thorax, right side +C2836155|T037|HT|S25.891|ICD10CM|Other specified injury of other blood vessels of thorax, right side|Other specified injury of other blood vessels of thorax, right side +C2836156|T037|AB|S25.891A|ICD10CM|Inj oth blood vessels of thorax, right side, init encntr|Inj oth blood vessels of thorax, right side, init encntr +C2836156|T037|PT|S25.891A|ICD10CM|Other specified injury of other blood vessels of thorax, right side, initial encounter|Other specified injury of other blood vessels of thorax, right side, initial encounter +C2836157|T037|AB|S25.891D|ICD10CM|Inj oth blood vessels of thorax, right side, subs encntr|Inj oth blood vessels of thorax, right side, subs encntr +C2836157|T037|PT|S25.891D|ICD10CM|Other specified injury of other blood vessels of thorax, right side, subsequent encounter|Other specified injury of other blood vessels of thorax, right side, subsequent encounter +C2836158|T037|AB|S25.891S|ICD10CM|Inj oth blood vessels of thorax, right side, sequela|Inj oth blood vessels of thorax, right side, sequela +C2836158|T037|PT|S25.891S|ICD10CM|Other specified injury of other blood vessels of thorax, right side, sequela|Other specified injury of other blood vessels of thorax, right side, sequela +C2836159|T037|AB|S25.892|ICD10CM|Oth injury of other blood vessels of thorax, left side|Oth injury of other blood vessels of thorax, left side +C2836159|T037|HT|S25.892|ICD10CM|Other specified injury of other blood vessels of thorax, left side|Other specified injury of other blood vessels of thorax, left side +C2836160|T037|AB|S25.892A|ICD10CM|Inj oth blood vessels of thorax, left side, init encntr|Inj oth blood vessels of thorax, left side, init encntr +C2836160|T037|PT|S25.892A|ICD10CM|Other specified injury of other blood vessels of thorax, left side, initial encounter|Other specified injury of other blood vessels of thorax, left side, initial encounter +C2836161|T037|AB|S25.892D|ICD10CM|Inj oth blood vessels of thorax, left side, subs encntr|Inj oth blood vessels of thorax, left side, subs encntr +C2836161|T037|PT|S25.892D|ICD10CM|Other specified injury of other blood vessels of thorax, left side, subsequent encounter|Other specified injury of other blood vessels of thorax, left side, subsequent encounter +C2836162|T037|AB|S25.892S|ICD10CM|Inj oth blood vessels of thorax, left side, sequela|Inj oth blood vessels of thorax, left side, sequela +C2836162|T037|PT|S25.892S|ICD10CM|Other specified injury of other blood vessels of thorax, left side, sequela|Other specified injury of other blood vessels of thorax, left side, sequela +C2836163|T037|AB|S25.899|ICD10CM|Oth injury of other blood vessels of thorax, unsp side|Oth injury of other blood vessels of thorax, unsp side +C2836163|T037|HT|S25.899|ICD10CM|Other specified injury of other blood vessels of thorax, unspecified side|Other specified injury of other blood vessels of thorax, unspecified side +C2836164|T037|AB|S25.899A|ICD10CM|Inj oth blood vessels of thorax, unsp side, init encntr|Inj oth blood vessels of thorax, unsp side, init encntr +C2836164|T037|PT|S25.899A|ICD10CM|Other specified injury of other blood vessels of thorax, unspecified side, initial encounter|Other specified injury of other blood vessels of thorax, unspecified side, initial encounter +C2836165|T037|AB|S25.899D|ICD10CM|Inj oth blood vessels of thorax, unsp side, subs encntr|Inj oth blood vessels of thorax, unsp side, subs encntr +C2836165|T037|PT|S25.899D|ICD10CM|Other specified injury of other blood vessels of thorax, unspecified side, subsequent encounter|Other specified injury of other blood vessels of thorax, unspecified side, subsequent encounter +C2836166|T037|AB|S25.899S|ICD10CM|Inj oth blood vessels of thorax, unsp side, sequela|Inj oth blood vessels of thorax, unsp side, sequela +C2836166|T037|PT|S25.899S|ICD10CM|Other specified injury of other blood vessels of thorax, unspecified side, sequela|Other specified injury of other blood vessels of thorax, unspecified side, sequela +C0160689|T037|PT|S25.9|ICD10|Injury of unspecified blood vessel of thorax|Injury of unspecified blood vessel of thorax +C0160689|T037|HT|S25.9|ICD10CM|Injury of unspecified blood vessel of thorax|Injury of unspecified blood vessel of thorax +C0160689|T037|AB|S25.9|ICD10CM|Injury of unspecified blood vessel of thorax|Injury of unspecified blood vessel of thorax +C2836167|T037|AB|S25.90|ICD10CM|Unspecified injury of unspecified blood vessel of thorax|Unspecified injury of unspecified blood vessel of thorax +C2836167|T037|HT|S25.90|ICD10CM|Unspecified injury of unspecified blood vessel of thorax|Unspecified injury of unspecified blood vessel of thorax +C2836168|T037|AB|S25.90XA|ICD10CM|Unsp injury of unsp blood vessel of thorax, init encntr|Unsp injury of unsp blood vessel of thorax, init encntr +C2836168|T037|PT|S25.90XA|ICD10CM|Unspecified injury of unspecified blood vessel of thorax, initial encounter|Unspecified injury of unspecified blood vessel of thorax, initial encounter +C2836169|T037|AB|S25.90XD|ICD10CM|Unsp injury of unsp blood vessel of thorax, subs encntr|Unsp injury of unsp blood vessel of thorax, subs encntr +C2836169|T037|PT|S25.90XD|ICD10CM|Unspecified injury of unspecified blood vessel of thorax, subsequent encounter|Unspecified injury of unspecified blood vessel of thorax, subsequent encounter +C2836170|T037|AB|S25.90XS|ICD10CM|Unsp injury of unspecified blood vessel of thorax, sequela|Unsp injury of unspecified blood vessel of thorax, sequela +C2836170|T037|PT|S25.90XS|ICD10CM|Unspecified injury of unspecified blood vessel of thorax, sequela|Unspecified injury of unspecified blood vessel of thorax, sequela +C2836171|T037|AB|S25.91|ICD10CM|Laceration of unspecified blood vessel of thorax|Laceration of unspecified blood vessel of thorax +C2836171|T037|HT|S25.91|ICD10CM|Laceration of unspecified blood vessel of thorax|Laceration of unspecified blood vessel of thorax +C2836172|T037|AB|S25.91XA|ICD10CM|Laceration of unsp blood vessel of thorax, init encntr|Laceration of unsp blood vessel of thorax, init encntr +C2836172|T037|PT|S25.91XA|ICD10CM|Laceration of unspecified blood vessel of thorax, initial encounter|Laceration of unspecified blood vessel of thorax, initial encounter +C2836173|T037|AB|S25.91XD|ICD10CM|Laceration of unsp blood vessel of thorax, subs encntr|Laceration of unsp blood vessel of thorax, subs encntr +C2836173|T037|PT|S25.91XD|ICD10CM|Laceration of unspecified blood vessel of thorax, subsequent encounter|Laceration of unspecified blood vessel of thorax, subsequent encounter +C2836174|T037|AB|S25.91XS|ICD10CM|Laceration of unspecified blood vessel of thorax, sequela|Laceration of unspecified blood vessel of thorax, sequela +C2836174|T037|PT|S25.91XS|ICD10CM|Laceration of unspecified blood vessel of thorax, sequela|Laceration of unspecified blood vessel of thorax, sequela +C2836175|T037|AB|S25.99|ICD10CM|Other specified injury of unspecified blood vessel of thorax|Other specified injury of unspecified blood vessel of thorax +C2836175|T037|HT|S25.99|ICD10CM|Other specified injury of unspecified blood vessel of thorax|Other specified injury of unspecified blood vessel of thorax +C2836176|T037|AB|S25.99XA|ICD10CM|Oth injury of unsp blood vessel of thorax, init encntr|Oth injury of unsp blood vessel of thorax, init encntr +C2836176|T037|PT|S25.99XA|ICD10CM|Other specified injury of unspecified blood vessel of thorax, initial encounter|Other specified injury of unspecified blood vessel of thorax, initial encounter +C2836177|T037|AB|S25.99XD|ICD10CM|Oth injury of unsp blood vessel of thorax, subs encntr|Oth injury of unsp blood vessel of thorax, subs encntr +C2836177|T037|PT|S25.99XD|ICD10CM|Other specified injury of unspecified blood vessel of thorax, subsequent encounter|Other specified injury of unspecified blood vessel of thorax, subsequent encounter +C2836178|T037|AB|S25.99XS|ICD10CM|Oth injury of unspecified blood vessel of thorax, sequela|Oth injury of unspecified blood vessel of thorax, sequela +C2836178|T037|PT|S25.99XS|ICD10CM|Other specified injury of unspecified blood vessel of thorax, sequela|Other specified injury of unspecified blood vessel of thorax, sequela +C0018805|T037|HT|S26|ICD10CM|Injury of heart|Injury of heart +C0018805|T037|AB|S26|ICD10CM|Injury of heart|Injury of heart +C0018805|T037|HT|S26|ICD10|Injury of heart|Injury of heart +C0475573|T037|PT|S26.0|ICD10|Injury of heart with haemopericardium|Injury of heart with haemopericardium +C0475573|T037|HT|S26.0|ICD10CM|Injury of heart with hemopericardium|Injury of heart with hemopericardium +C0475573|T037|AB|S26.0|ICD10CM|Injury of heart with hemopericardium|Injury of heart with hemopericardium +C0475573|T037|PT|S26.0|ICD10AE|Injury of heart with hemopericardium|Injury of heart with hemopericardium +C2836179|T037|AB|S26.00|ICD10CM|Unspecified injury of heart with hemopericardium|Unspecified injury of heart with hemopericardium +C2836179|T037|HT|S26.00|ICD10CM|Unspecified injury of heart with hemopericardium|Unspecified injury of heart with hemopericardium +C2836180|T037|AB|S26.00XA|ICD10CM|Unsp injury of heart with hemopericardium, init encntr|Unsp injury of heart with hemopericardium, init encntr +C2836180|T037|PT|S26.00XA|ICD10CM|Unspecified injury of heart with hemopericardium, initial encounter|Unspecified injury of heart with hemopericardium, initial encounter +C2836181|T037|AB|S26.00XD|ICD10CM|Unsp injury of heart with hemopericardium, subs encntr|Unsp injury of heart with hemopericardium, subs encntr +C2836181|T037|PT|S26.00XD|ICD10CM|Unspecified injury of heart with hemopericardium, subsequent encounter|Unspecified injury of heart with hemopericardium, subsequent encounter +C2836182|T037|PT|S26.00XS|ICD10CM|Unspecified injury of heart with hemopericardium, sequela|Unspecified injury of heart with hemopericardium, sequela +C2836182|T037|AB|S26.00XS|ICD10CM|Unspecified injury of heart with hemopericardium, sequela|Unspecified injury of heart with hemopericardium, sequela +C2836183|T037|AB|S26.01|ICD10CM|Contusion of heart with hemopericardium|Contusion of heart with hemopericardium +C2836183|T037|HT|S26.01|ICD10CM|Contusion of heart with hemopericardium|Contusion of heart with hemopericardium +C2836184|T037|AB|S26.01XA|ICD10CM|Contusion of heart with hemopericardium, initial encounter|Contusion of heart with hemopericardium, initial encounter +C2836184|T037|PT|S26.01XA|ICD10CM|Contusion of heart with hemopericardium, initial encounter|Contusion of heart with hemopericardium, initial encounter +C2836185|T037|AB|S26.01XD|ICD10CM|Contusion of heart with hemopericardium, subs encntr|Contusion of heart with hemopericardium, subs encntr +C2836185|T037|PT|S26.01XD|ICD10CM|Contusion of heart with hemopericardium, subsequent encounter|Contusion of heart with hemopericardium, subsequent encounter +C2836186|T037|AB|S26.01XS|ICD10CM|Contusion of heart with hemopericardium, sequela|Contusion of heart with hemopericardium, sequela +C2836186|T037|PT|S26.01XS|ICD10CM|Contusion of heart with hemopericardium, sequela|Contusion of heart with hemopericardium, sequela +C1399172|T037|HT|S26.02|ICD10CM|Laceration of heart with hemopericardium|Laceration of heart with hemopericardium +C1399172|T037|AB|S26.02|ICD10CM|Laceration of heart with hemopericardium|Laceration of heart with hemopericardium +C0273113|T037|ET|S26.020|ICD10CM|Laceration of heart without penetration of heart chamber|Laceration of heart without penetration of heart chamber +C2836187|T037|HT|S26.020|ICD10CM|Mild laceration of heart with hemopericardium|Mild laceration of heart with hemopericardium +C2836187|T037|AB|S26.020|ICD10CM|Mild laceration of heart with hemopericardium|Mild laceration of heart with hemopericardium +C2836188|T037|AB|S26.020A|ICD10CM|Mild laceration of heart with hemopericardium, init encntr|Mild laceration of heart with hemopericardium, init encntr +C2836188|T037|PT|S26.020A|ICD10CM|Mild laceration of heart with hemopericardium, initial encounter|Mild laceration of heart with hemopericardium, initial encounter +C2836189|T037|AB|S26.020D|ICD10CM|Mild laceration of heart with hemopericardium, subs encntr|Mild laceration of heart with hemopericardium, subs encntr +C2836189|T037|PT|S26.020D|ICD10CM|Mild laceration of heart with hemopericardium, subsequent encounter|Mild laceration of heart with hemopericardium, subsequent encounter +C2836190|T037|PT|S26.020S|ICD10CM|Mild laceration of heart with hemopericardium, sequela|Mild laceration of heart with hemopericardium, sequela +C2836190|T037|AB|S26.020S|ICD10CM|Mild laceration of heart with hemopericardium, sequela|Mild laceration of heart with hemopericardium, sequela +C0273114|T037|ET|S26.021|ICD10CM|Laceration of heart with penetration of heart chamber|Laceration of heart with penetration of heart chamber +C2836191|T037|HT|S26.021|ICD10CM|Moderate laceration of heart with hemopericardium|Moderate laceration of heart with hemopericardium +C2836191|T037|AB|S26.021|ICD10CM|Moderate laceration of heart with hemopericardium|Moderate laceration of heart with hemopericardium +C2836192|T037|AB|S26.021A|ICD10CM|Moderate laceration of heart w hemopericardium, init encntr|Moderate laceration of heart w hemopericardium, init encntr +C2836192|T037|PT|S26.021A|ICD10CM|Moderate laceration of heart with hemopericardium, initial encounter|Moderate laceration of heart with hemopericardium, initial encounter +C2836193|T037|AB|S26.021D|ICD10CM|Moderate laceration of heart w hemopericardium, subs encntr|Moderate laceration of heart w hemopericardium, subs encntr +C2836193|T037|PT|S26.021D|ICD10CM|Moderate laceration of heart with hemopericardium, subsequent encounter|Moderate laceration of heart with hemopericardium, subsequent encounter +C2836194|T037|PT|S26.021S|ICD10CM|Moderate laceration of heart with hemopericardium, sequela|Moderate laceration of heart with hemopericardium, sequela +C2836194|T037|AB|S26.021S|ICD10CM|Moderate laceration of heart with hemopericardium, sequela|Moderate laceration of heart with hemopericardium, sequela +C2836195|T037|ET|S26.022|ICD10CM|Laceration of heart with penetration of multiple heart chambers|Laceration of heart with penetration of multiple heart chambers +C2836196|T037|HT|S26.022|ICD10CM|Major laceration of heart with hemopericardium|Major laceration of heart with hemopericardium +C2836196|T037|AB|S26.022|ICD10CM|Major laceration of heart with hemopericardium|Major laceration of heart with hemopericardium +C2836197|T037|AB|S26.022A|ICD10CM|Major laceration of heart with hemopericardium, init encntr|Major laceration of heart with hemopericardium, init encntr +C2836197|T037|PT|S26.022A|ICD10CM|Major laceration of heart with hemopericardium, initial encounter|Major laceration of heart with hemopericardium, initial encounter +C2836198|T037|AB|S26.022D|ICD10CM|Major laceration of heart with hemopericardium, subs encntr|Major laceration of heart with hemopericardium, subs encntr +C2836198|T037|PT|S26.022D|ICD10CM|Major laceration of heart with hemopericardium, subsequent encounter|Major laceration of heart with hemopericardium, subsequent encounter +C2836199|T037|PT|S26.022S|ICD10CM|Major laceration of heart with hemopericardium, sequela|Major laceration of heart with hemopericardium, sequela +C2836199|T037|AB|S26.022S|ICD10CM|Major laceration of heart with hemopericardium, sequela|Major laceration of heart with hemopericardium, sequela +C2836200|T037|AB|S26.09|ICD10CM|Other injury of heart with hemopericardium|Other injury of heart with hemopericardium +C2836200|T037|HT|S26.09|ICD10CM|Other injury of heart with hemopericardium|Other injury of heart with hemopericardium +C2836201|T037|AB|S26.09XA|ICD10CM|Other injury of heart with hemopericardium, init encntr|Other injury of heart with hemopericardium, init encntr +C2836201|T037|PT|S26.09XA|ICD10CM|Other injury of heart with hemopericardium, initial encounter|Other injury of heart with hemopericardium, initial encounter +C2836202|T037|AB|S26.09XD|ICD10CM|Other injury of heart with hemopericardium, subs encntr|Other injury of heart with hemopericardium, subs encntr +C2836202|T037|PT|S26.09XD|ICD10CM|Other injury of heart with hemopericardium, subsequent encounter|Other injury of heart with hemopericardium, subsequent encounter +C2836203|T037|PT|S26.09XS|ICD10CM|Other injury of heart with hemopericardium, sequela|Other injury of heart with hemopericardium, sequela +C2836203|T037|AB|S26.09XS|ICD10CM|Other injury of heart with hemopericardium, sequela|Other injury of heart with hemopericardium, sequela +C2836204|T037|HT|S26.1|ICD10CM|Injury of heart without hemopericardium|Injury of heart without hemopericardium +C2836204|T037|AB|S26.1|ICD10CM|Injury of heart without hemopericardium|Injury of heart without hemopericardium +C2836205|T037|AB|S26.10|ICD10CM|Unspecified injury of heart without hemopericardium|Unspecified injury of heart without hemopericardium +C2836205|T037|HT|S26.10|ICD10CM|Unspecified injury of heart without hemopericardium|Unspecified injury of heart without hemopericardium +C2836206|T037|AB|S26.10XA|ICD10CM|Unsp injury of heart without hemopericardium, init encntr|Unsp injury of heart without hemopericardium, init encntr +C2836206|T037|PT|S26.10XA|ICD10CM|Unspecified injury of heart without hemopericardium, initial encounter|Unspecified injury of heart without hemopericardium, initial encounter +C2836207|T037|AB|S26.10XD|ICD10CM|Unsp injury of heart without hemopericardium, subs encntr|Unsp injury of heart without hemopericardium, subs encntr +C2836207|T037|PT|S26.10XD|ICD10CM|Unspecified injury of heart without hemopericardium, subsequent encounter|Unspecified injury of heart without hemopericardium, subsequent encounter +C2836208|T037|AB|S26.10XS|ICD10CM|Unspecified injury of heart without hemopericardium, sequela|Unspecified injury of heart without hemopericardium, sequela +C2836208|T037|PT|S26.10XS|ICD10CM|Unspecified injury of heart without hemopericardium, sequela|Unspecified injury of heart without hemopericardium, sequela +C2836209|T037|HT|S26.11|ICD10CM|Contusion of heart without hemopericardium|Contusion of heart without hemopericardium +C2836209|T037|AB|S26.11|ICD10CM|Contusion of heart without hemopericardium|Contusion of heart without hemopericardium +C2836210|T037|AB|S26.11XA|ICD10CM|Contusion of heart without hemopericardium, init encntr|Contusion of heart without hemopericardium, init encntr +C2836210|T037|PT|S26.11XA|ICD10CM|Contusion of heart without hemopericardium, initial encounter|Contusion of heart without hemopericardium, initial encounter +C2836211|T037|AB|S26.11XD|ICD10CM|Contusion of heart without hemopericardium, subs encntr|Contusion of heart without hemopericardium, subs encntr +C2836211|T037|PT|S26.11XD|ICD10CM|Contusion of heart without hemopericardium, subsequent encounter|Contusion of heart without hemopericardium, subsequent encounter +C2836212|T037|PT|S26.11XS|ICD10CM|Contusion of heart without hemopericardium, sequela|Contusion of heart without hemopericardium, sequela +C2836212|T037|AB|S26.11XS|ICD10CM|Contusion of heart without hemopericardium, sequela|Contusion of heart without hemopericardium, sequela +C2836213|T037|HT|S26.12|ICD10CM|Laceration of heart without hemopericardium|Laceration of heart without hemopericardium +C2836213|T037|AB|S26.12|ICD10CM|Laceration of heart without hemopericardium|Laceration of heart without hemopericardium +C2836214|T037|AB|S26.12XA|ICD10CM|Laceration of heart without hemopericardium, init encntr|Laceration of heart without hemopericardium, init encntr +C2836214|T037|PT|S26.12XA|ICD10CM|Laceration of heart without hemopericardium, initial encounter|Laceration of heart without hemopericardium, initial encounter +C2836215|T037|AB|S26.12XD|ICD10CM|Laceration of heart without hemopericardium, subs encntr|Laceration of heart without hemopericardium, subs encntr +C2836215|T037|PT|S26.12XD|ICD10CM|Laceration of heart without hemopericardium, subsequent encounter|Laceration of heart without hemopericardium, subsequent encounter +C2836216|T037|PT|S26.12XS|ICD10CM|Laceration of heart without hemopericardium, sequela|Laceration of heart without hemopericardium, sequela +C2836216|T037|AB|S26.12XS|ICD10CM|Laceration of heart without hemopericardium, sequela|Laceration of heart without hemopericardium, sequela +C2836217|T037|AB|S26.19|ICD10CM|Other injury of heart without hemopericardium|Other injury of heart without hemopericardium +C2836217|T037|HT|S26.19|ICD10CM|Other injury of heart without hemopericardium|Other injury of heart without hemopericardium +C2836218|T037|AB|S26.19XA|ICD10CM|Other injury of heart without hemopericardium, init encntr|Other injury of heart without hemopericardium, init encntr +C2836218|T037|PT|S26.19XA|ICD10CM|Other injury of heart without hemopericardium, initial encounter|Other injury of heart without hemopericardium, initial encounter +C2836219|T037|AB|S26.19XD|ICD10CM|Other injury of heart without hemopericardium, subs encntr|Other injury of heart without hemopericardium, subs encntr +C2836219|T037|PT|S26.19XD|ICD10CM|Other injury of heart without hemopericardium, subsequent encounter|Other injury of heart without hemopericardium, subsequent encounter +C2836220|T037|AB|S26.19XS|ICD10CM|Other injury of heart without hemopericardium, sequela|Other injury of heart without hemopericardium, sequela +C2836220|T037|PT|S26.19XS|ICD10CM|Other injury of heart without hemopericardium, sequela|Other injury of heart without hemopericardium, sequela +C0478244|T037|PT|S26.8|ICD10|Other injuries of heart|Other injuries of heart +C0018805|T037|PT|S26.9|ICD10|Injury of heart, unspecified|Injury of heart, unspecified +C2836221|T037|AB|S26.9|ICD10CM|Injury of heart, unspecified with or without hemopericardium|Injury of heart, unspecified with or without hemopericardium +C2836221|T037|HT|S26.9|ICD10CM|Injury of heart, unspecified with or without hemopericardium|Injury of heart, unspecified with or without hemopericardium +C2836222|T037|AB|S26.90|ICD10CM|Unsp injury of heart, unsp with or without hemopericardium|Unsp injury of heart, unsp with or without hemopericardium +C2836222|T037|HT|S26.90|ICD10CM|Unspecified injury of heart, unspecified with or without hemopericardium|Unspecified injury of heart, unspecified with or without hemopericardium +C2836223|T037|AB|S26.90XA|ICD10CM|Unsp injury of heart, unsp w or w/o hemopericardium, init|Unsp injury of heart, unsp w or w/o hemopericardium, init +C2836223|T037|PT|S26.90XA|ICD10CM|Unspecified injury of heart, unspecified with or without hemopericardium, initial encounter|Unspecified injury of heart, unspecified with or without hemopericardium, initial encounter +C2836224|T037|AB|S26.90XD|ICD10CM|Unsp injury of heart, unsp w or w/o hemopericardium, subs|Unsp injury of heart, unsp w or w/o hemopericardium, subs +C2836224|T037|PT|S26.90XD|ICD10CM|Unspecified injury of heart, unspecified with or without hemopericardium, subsequent encounter|Unspecified injury of heart, unspecified with or without hemopericardium, subsequent encounter +C2836225|T037|AB|S26.90XS|ICD10CM|Unsp injury of heart, unsp w or w/o hemopericardium, sequela|Unsp injury of heart, unsp w or w/o hemopericardium, sequela +C2836225|T037|PT|S26.90XS|ICD10CM|Unspecified injury of heart, unspecified with or without hemopericardium, sequela|Unspecified injury of heart, unspecified with or without hemopericardium, sequela +C2836226|T037|AB|S26.91|ICD10CM|Contusion of heart, unsp with or without hemopericardium|Contusion of heart, unsp with or without hemopericardium +C2836226|T037|HT|S26.91|ICD10CM|Contusion of heart, unspecified with or without hemopericardium|Contusion of heart, unspecified with or without hemopericardium +C2836227|T037|AB|S26.91XA|ICD10CM|Contusion of heart, unsp w or w/o hemopericardium, init|Contusion of heart, unsp w or w/o hemopericardium, init +C2836227|T037|PT|S26.91XA|ICD10CM|Contusion of heart, unspecified with or without hemopericardium, initial encounter|Contusion of heart, unspecified with or without hemopericardium, initial encounter +C2836228|T037|AB|S26.91XD|ICD10CM|Contusion of heart, unsp w or w/o hemopericardium, subs|Contusion of heart, unsp w or w/o hemopericardium, subs +C2836228|T037|PT|S26.91XD|ICD10CM|Contusion of heart, unspecified with or without hemopericardium, subsequent encounter|Contusion of heart, unspecified with or without hemopericardium, subsequent encounter +C2836229|T037|AB|S26.91XS|ICD10CM|Contusion of heart, unsp w or w/o hemopericardium, sequela|Contusion of heart, unsp w or w/o hemopericardium, sequela +C2836229|T037|PT|S26.91XS|ICD10CM|Contusion of heart, unspecified with or without hemopericardium, sequela|Contusion of heart, unspecified with or without hemopericardium, sequela +C0347618|T037|ET|S26.92|ICD10CM|Laceration of heart NOS|Laceration of heart NOS +C2836230|T037|AB|S26.92|ICD10CM|Laceration of heart, unsp with or without hemopericardium|Laceration of heart, unsp with or without hemopericardium +C2836230|T037|HT|S26.92|ICD10CM|Laceration of heart, unspecified with or without hemopericardium|Laceration of heart, unspecified with or without hemopericardium +C2836231|T037|AB|S26.92XA|ICD10CM|Laceration of heart, unsp w or w/o hemopericardium, init|Laceration of heart, unsp w or w/o hemopericardium, init +C2836231|T037|PT|S26.92XA|ICD10CM|Laceration of heart, unspecified with or without hemopericardium, initial encounter|Laceration of heart, unspecified with or without hemopericardium, initial encounter +C2836232|T037|AB|S26.92XD|ICD10CM|Laceration of heart, unsp w or w/o hemopericardium, subs|Laceration of heart, unsp w or w/o hemopericardium, subs +C2836232|T037|PT|S26.92XD|ICD10CM|Laceration of heart, unspecified with or without hemopericardium, subsequent encounter|Laceration of heart, unspecified with or without hemopericardium, subsequent encounter +C2836233|T037|AB|S26.92XS|ICD10CM|Laceration of heart, unsp w or w/o hemopericardium, sequela|Laceration of heart, unsp w or w/o hemopericardium, sequela +C2836233|T037|PT|S26.92XS|ICD10CM|Laceration of heart, unspecified with or without hemopericardium, sequela|Laceration of heart, unspecified with or without hemopericardium, sequela +C2836234|T037|AB|S26.99|ICD10CM|Other injury of heart, unsp with or without hemopericardium|Other injury of heart, unsp with or without hemopericardium +C2836234|T037|HT|S26.99|ICD10CM|Other injury of heart, unspecified with or without hemopericardium|Other injury of heart, unspecified with or without hemopericardium +C2836235|T037|AB|S26.99XA|ICD10CM|Inj heart, unsp w or w/o hemopericardium, init encntr|Inj heart, unsp w or w/o hemopericardium, init encntr +C2836235|T037|PT|S26.99XA|ICD10CM|Other injury of heart, unspecified with or without hemopericardium, initial encounter|Other injury of heart, unspecified with or without hemopericardium, initial encounter +C2836236|T037|AB|S26.99XD|ICD10CM|Inj heart, unsp w or w/o hemopericardium, subs encntr|Inj heart, unsp w or w/o hemopericardium, subs encntr +C2836236|T037|PT|S26.99XD|ICD10CM|Other injury of heart, unspecified with or without hemopericardium, subsequent encounter|Other injury of heart, unspecified with or without hemopericardium, subsequent encounter +C2836237|T037|AB|S26.99XS|ICD10CM|Oth injury of heart, unsp w or w/o hemopericardium, sequela|Oth injury of heart, unsp w or w/o hemopericardium, sequela +C2836237|T037|PT|S26.99XS|ICD10CM|Other injury of heart, unspecified with or without hemopericardium, sequela|Other injury of heart, unspecified with or without hemopericardium, sequela +C0160335|T037|HT|S27|ICD10|Injury of other and unspecified intrathoracic organs|Injury of other and unspecified intrathoracic organs +C0160335|T037|AB|S27|ICD10CM|Injury of other and unspecified intrathoracic organs|Injury of other and unspecified intrathoracic organs +C0160335|T037|HT|S27|ICD10CM|Injury of other and unspecified intrathoracic organs|Injury of other and unspecified intrathoracic organs +C0282015|T037|PT|S27.0|ICD10|Traumatic pneumothorax|Traumatic pneumothorax +C0282015|T037|HT|S27.0|ICD10CM|Traumatic pneumothorax|Traumatic pneumothorax +C0282015|T037|AB|S27.0|ICD10CM|Traumatic pneumothorax|Traumatic pneumothorax +C2836238|T037|AB|S27.0XXA|ICD10CM|Traumatic pneumothorax, initial encounter|Traumatic pneumothorax, initial encounter +C2836238|T037|PT|S27.0XXA|ICD10CM|Traumatic pneumothorax, initial encounter|Traumatic pneumothorax, initial encounter +C2836239|T037|AB|S27.0XXD|ICD10CM|Traumatic pneumothorax, subsequent encounter|Traumatic pneumothorax, subsequent encounter +C2836239|T037|PT|S27.0XXD|ICD10CM|Traumatic pneumothorax, subsequent encounter|Traumatic pneumothorax, subsequent encounter +C2836240|T037|AB|S27.0XXS|ICD10CM|Traumatic pneumothorax, sequela|Traumatic pneumothorax, sequela +C2836240|T037|PT|S27.0XXS|ICD10CM|Traumatic pneumothorax, sequela|Traumatic pneumothorax, sequela +C0340006|T037|PT|S27.1|ICD10|Traumatic haemothorax|Traumatic haemothorax +C0340006|T037|HT|S27.1|ICD10CM|Traumatic hemothorax|Traumatic hemothorax +C0340006|T037|AB|S27.1|ICD10CM|Traumatic hemothorax|Traumatic hemothorax +C0340006|T037|PT|S27.1|ICD10AE|Traumatic hemothorax|Traumatic hemothorax +C2836241|T037|AB|S27.1XXA|ICD10CM|Traumatic hemothorax, initial encounter|Traumatic hemothorax, initial encounter +C2836241|T037|PT|S27.1XXA|ICD10CM|Traumatic hemothorax, initial encounter|Traumatic hemothorax, initial encounter +C2836242|T037|AB|S27.1XXD|ICD10CM|Traumatic hemothorax, subsequent encounter|Traumatic hemothorax, subsequent encounter +C2836242|T037|PT|S27.1XXD|ICD10CM|Traumatic hemothorax, subsequent encounter|Traumatic hemothorax, subsequent encounter +C2836243|T037|AB|S27.1XXS|ICD10CM|Traumatic hemothorax, sequela|Traumatic hemothorax, sequela +C2836243|T037|PT|S27.1XXS|ICD10CM|Traumatic hemothorax, sequela|Traumatic hemothorax, sequela +C0340008|T037|PT|S27.2|ICD10|Traumatic haemopneumothorax|Traumatic haemopneumothorax +C0340008|T037|PT|S27.2|ICD10AE|Traumatic hemopneumothorax|Traumatic hemopneumothorax +C0340008|T037|HT|S27.2|ICD10CM|Traumatic hemopneumothorax|Traumatic hemopneumothorax +C0340008|T037|AB|S27.2|ICD10CM|Traumatic hemopneumothorax|Traumatic hemopneumothorax +C2836244|T037|AB|S27.2XXA|ICD10CM|Traumatic hemopneumothorax, initial encounter|Traumatic hemopneumothorax, initial encounter +C2836244|T037|PT|S27.2XXA|ICD10CM|Traumatic hemopneumothorax, initial encounter|Traumatic hemopneumothorax, initial encounter +C2836245|T037|AB|S27.2XXD|ICD10CM|Traumatic hemopneumothorax, subsequent encounter|Traumatic hemopneumothorax, subsequent encounter +C2836245|T037|PT|S27.2XXD|ICD10CM|Traumatic hemopneumothorax, subsequent encounter|Traumatic hemopneumothorax, subsequent encounter +C2836246|T037|AB|S27.2XXS|ICD10CM|Traumatic hemopneumothorax, sequela|Traumatic hemopneumothorax, sequela +C2836246|T037|PT|S27.2XXS|ICD10CM|Traumatic hemopneumothorax, sequela|Traumatic hemopneumothorax, sequela +C0840492|T037|HT|S27.3|ICD10CM|Other and unspecified injuries of lung|Other and unspecified injuries of lung +C0840492|T037|AB|S27.3|ICD10CM|Other and unspecified injuries of lung|Other and unspecified injuries of lung +C0478245|T037|PT|S27.3|ICD10|Other injuries of lung|Other injuries of lung +C0273115|T037|AB|S27.30|ICD10CM|Unspecified injury of lung|Unspecified injury of lung +C0273115|T037|HT|S27.30|ICD10CM|Unspecified injury of lung|Unspecified injury of lung +C2836247|T037|AB|S27.301|ICD10CM|Unspecified injury of lung, unilateral|Unspecified injury of lung, unilateral +C2836247|T037|HT|S27.301|ICD10CM|Unspecified injury of lung, unilateral|Unspecified injury of lung, unilateral +C2836248|T037|AB|S27.301A|ICD10CM|Unspecified injury of lung, unilateral, initial encounter|Unspecified injury of lung, unilateral, initial encounter +C2836248|T037|PT|S27.301A|ICD10CM|Unspecified injury of lung, unilateral, initial encounter|Unspecified injury of lung, unilateral, initial encounter +C2836249|T037|AB|S27.301D|ICD10CM|Unspecified injury of lung, unilateral, subsequent encounter|Unspecified injury of lung, unilateral, subsequent encounter +C2836249|T037|PT|S27.301D|ICD10CM|Unspecified injury of lung, unilateral, subsequent encounter|Unspecified injury of lung, unilateral, subsequent encounter +C2836250|T037|AB|S27.301S|ICD10CM|Unspecified injury of lung, unilateral, sequela|Unspecified injury of lung, unilateral, sequela +C2836250|T037|PT|S27.301S|ICD10CM|Unspecified injury of lung, unilateral, sequela|Unspecified injury of lung, unilateral, sequela +C2836251|T037|AB|S27.302|ICD10CM|Unspecified injury of lung, bilateral|Unspecified injury of lung, bilateral +C2836251|T037|HT|S27.302|ICD10CM|Unspecified injury of lung, bilateral|Unspecified injury of lung, bilateral +C2836252|T037|AB|S27.302A|ICD10CM|Unspecified injury of lung, bilateral, initial encounter|Unspecified injury of lung, bilateral, initial encounter +C2836252|T037|PT|S27.302A|ICD10CM|Unspecified injury of lung, bilateral, initial encounter|Unspecified injury of lung, bilateral, initial encounter +C2836253|T037|AB|S27.302D|ICD10CM|Unspecified injury of lung, bilateral, subsequent encounter|Unspecified injury of lung, bilateral, subsequent encounter +C2836253|T037|PT|S27.302D|ICD10CM|Unspecified injury of lung, bilateral, subsequent encounter|Unspecified injury of lung, bilateral, subsequent encounter +C2836254|T037|AB|S27.302S|ICD10CM|Unspecified injury of lung, bilateral, sequela|Unspecified injury of lung, bilateral, sequela +C2836254|T037|PT|S27.302S|ICD10CM|Unspecified injury of lung, bilateral, sequela|Unspecified injury of lung, bilateral, sequela +C0273115|T037|AB|S27.309|ICD10CM|Unspecified injury of lung, unspecified|Unspecified injury of lung, unspecified +C0273115|T037|HT|S27.309|ICD10CM|Unspecified injury of lung, unspecified|Unspecified injury of lung, unspecified +C2836256|T037|AB|S27.309A|ICD10CM|Unspecified injury of lung, unspecified, initial encounter|Unspecified injury of lung, unspecified, initial encounter +C2836256|T037|PT|S27.309A|ICD10CM|Unspecified injury of lung, unspecified, initial encounter|Unspecified injury of lung, unspecified, initial encounter +C2836257|T037|AB|S27.309D|ICD10CM|Unspecified injury of lung, unspecified, subs encntr|Unspecified injury of lung, unspecified, subs encntr +C2836257|T037|PT|S27.309D|ICD10CM|Unspecified injury of lung, unspecified, subsequent encounter|Unspecified injury of lung, unspecified, subsequent encounter +C2836258|T037|AB|S27.309S|ICD10CM|Unspecified injury of lung, unspecified, sequela|Unspecified injury of lung, unspecified, sequela +C2836258|T037|PT|S27.309S|ICD10CM|Unspecified injury of lung, unspecified, sequela|Unspecified injury of lung, unspecified, sequela +C0349512|T037|ET|S27.31|ICD10CM|Blast injury of lung NOS|Blast injury of lung NOS +C2836268|T037|AB|S27.31|ICD10CM|Primary blast injury of lung|Primary blast injury of lung +C2836268|T037|HT|S27.31|ICD10CM|Primary blast injury of lung|Primary blast injury of lung +C2836260|T037|AB|S27.311|ICD10CM|Primary blast injury of lung, unilateral|Primary blast injury of lung, unilateral +C2836260|T037|HT|S27.311|ICD10CM|Primary blast injury of lung, unilateral|Primary blast injury of lung, unilateral +C2836261|T037|AB|S27.311A|ICD10CM|Primary blast injury of lung, unilateral, initial encounter|Primary blast injury of lung, unilateral, initial encounter +C2836261|T037|PT|S27.311A|ICD10CM|Primary blast injury of lung, unilateral, initial encounter|Primary blast injury of lung, unilateral, initial encounter +C2836262|T037|AB|S27.311D|ICD10CM|Primary blast injury of lung, unilateral, subs encntr|Primary blast injury of lung, unilateral, subs encntr +C2836262|T037|PT|S27.311D|ICD10CM|Primary blast injury of lung, unilateral, subsequent encounter|Primary blast injury of lung, unilateral, subsequent encounter +C2836263|T037|AB|S27.311S|ICD10CM|Primary blast injury of lung, unilateral, sequela|Primary blast injury of lung, unilateral, sequela +C2836263|T037|PT|S27.311S|ICD10CM|Primary blast injury of lung, unilateral, sequela|Primary blast injury of lung, unilateral, sequela +C2836264|T037|AB|S27.312|ICD10CM|Primary blast injury of lung, bilateral|Primary blast injury of lung, bilateral +C2836264|T037|HT|S27.312|ICD10CM|Primary blast injury of lung, bilateral|Primary blast injury of lung, bilateral +C2836265|T037|AB|S27.312A|ICD10CM|Primary blast injury of lung, bilateral, initial encounter|Primary blast injury of lung, bilateral, initial encounter +C2836265|T037|PT|S27.312A|ICD10CM|Primary blast injury of lung, bilateral, initial encounter|Primary blast injury of lung, bilateral, initial encounter +C2836266|T037|AB|S27.312D|ICD10CM|Primary blast injury of lung, bilateral, subs encntr|Primary blast injury of lung, bilateral, subs encntr +C2836266|T037|PT|S27.312D|ICD10CM|Primary blast injury of lung, bilateral, subsequent encounter|Primary blast injury of lung, bilateral, subsequent encounter +C2836267|T037|AB|S27.312S|ICD10CM|Primary blast injury of lung, bilateral, sequela|Primary blast injury of lung, bilateral, sequela +C2836267|T037|PT|S27.312S|ICD10CM|Primary blast injury of lung, bilateral, sequela|Primary blast injury of lung, bilateral, sequela +C2836268|T037|AB|S27.319|ICD10CM|Primary blast injury of lung, unspecified|Primary blast injury of lung, unspecified +C2836268|T037|HT|S27.319|ICD10CM|Primary blast injury of lung, unspecified|Primary blast injury of lung, unspecified +C2836269|T037|AB|S27.319A|ICD10CM|Primary blast injury of lung, unspecified, initial encounter|Primary blast injury of lung, unspecified, initial encounter +C2836269|T037|PT|S27.319A|ICD10CM|Primary blast injury of lung, unspecified, initial encounter|Primary blast injury of lung, unspecified, initial encounter +C2836270|T037|AB|S27.319D|ICD10CM|Primary blast injury of lung, unspecified, subs encntr|Primary blast injury of lung, unspecified, subs encntr +C2836270|T037|PT|S27.319D|ICD10CM|Primary blast injury of lung, unspecified, subsequent encounter|Primary blast injury of lung, unspecified, subsequent encounter +C2836271|T037|AB|S27.319S|ICD10CM|Primary blast injury of lung, unspecified, sequela|Primary blast injury of lung, unspecified, sequela +C2836271|T037|PT|S27.319S|ICD10CM|Primary blast injury of lung, unspecified, sequela|Primary blast injury of lung, unspecified, sequela +C0347625|T037|HT|S27.32|ICD10CM|Contusion of lung|Contusion of lung +C0347625|T037|AB|S27.32|ICD10CM|Contusion of lung|Contusion of lung +C2836272|T037|AB|S27.321|ICD10CM|Contusion of lung, unilateral|Contusion of lung, unilateral +C2836272|T037|HT|S27.321|ICD10CM|Contusion of lung, unilateral|Contusion of lung, unilateral +C2836273|T037|PT|S27.321A|ICD10CM|Contusion of lung, unilateral, initial encounter|Contusion of lung, unilateral, initial encounter +C2836273|T037|AB|S27.321A|ICD10CM|Contusion of lung, unilateral, initial encounter|Contusion of lung, unilateral, initial encounter +C2836274|T037|PT|S27.321D|ICD10CM|Contusion of lung, unilateral, subsequent encounter|Contusion of lung, unilateral, subsequent encounter +C2836274|T037|AB|S27.321D|ICD10CM|Contusion of lung, unilateral, subsequent encounter|Contusion of lung, unilateral, subsequent encounter +C2836275|T037|PT|S27.321S|ICD10CM|Contusion of lung, unilateral, sequela|Contusion of lung, unilateral, sequela +C2836275|T037|AB|S27.321S|ICD10CM|Contusion of lung, unilateral, sequela|Contusion of lung, unilateral, sequela +C2836276|T037|AB|S27.322|ICD10CM|Contusion of lung, bilateral|Contusion of lung, bilateral +C2836276|T037|HT|S27.322|ICD10CM|Contusion of lung, bilateral|Contusion of lung, bilateral +C2836277|T037|PT|S27.322A|ICD10CM|Contusion of lung, bilateral, initial encounter|Contusion of lung, bilateral, initial encounter +C2836277|T037|AB|S27.322A|ICD10CM|Contusion of lung, bilateral, initial encounter|Contusion of lung, bilateral, initial encounter +C2836278|T037|PT|S27.322D|ICD10CM|Contusion of lung, bilateral, subsequent encounter|Contusion of lung, bilateral, subsequent encounter +C2836278|T037|AB|S27.322D|ICD10CM|Contusion of lung, bilateral, subsequent encounter|Contusion of lung, bilateral, subsequent encounter +C2836279|T037|PT|S27.322S|ICD10CM|Contusion of lung, bilateral, sequela|Contusion of lung, bilateral, sequela +C2836279|T037|AB|S27.322S|ICD10CM|Contusion of lung, bilateral, sequela|Contusion of lung, bilateral, sequela +C0347625|T037|AB|S27.329|ICD10CM|Contusion of lung, unspecified|Contusion of lung, unspecified +C0347625|T037|HT|S27.329|ICD10CM|Contusion of lung, unspecified|Contusion of lung, unspecified +C2836281|T037|PT|S27.329A|ICD10CM|Contusion of lung, unspecified, initial encounter|Contusion of lung, unspecified, initial encounter +C2836281|T037|AB|S27.329A|ICD10CM|Contusion of lung, unspecified, initial encounter|Contusion of lung, unspecified, initial encounter +C2836282|T037|PT|S27.329D|ICD10CM|Contusion of lung, unspecified, subsequent encounter|Contusion of lung, unspecified, subsequent encounter +C2836282|T037|AB|S27.329D|ICD10CM|Contusion of lung, unspecified, subsequent encounter|Contusion of lung, unspecified, subsequent encounter +C2836283|T037|PT|S27.329S|ICD10CM|Contusion of lung, unspecified, sequela|Contusion of lung, unspecified, sequela +C2836283|T037|AB|S27.329S|ICD10CM|Contusion of lung, unspecified, sequela|Contusion of lung, unspecified, sequela +C0347627|T037|HT|S27.33|ICD10CM|Laceration of lung|Laceration of lung +C0347627|T037|AB|S27.33|ICD10CM|Laceration of lung|Laceration of lung +C2836284|T037|AB|S27.331|ICD10CM|Laceration of lung, unilateral|Laceration of lung, unilateral +C2836284|T037|HT|S27.331|ICD10CM|Laceration of lung, unilateral|Laceration of lung, unilateral +C2836285|T037|PT|S27.331A|ICD10CM|Laceration of lung, unilateral, initial encounter|Laceration of lung, unilateral, initial encounter +C2836285|T037|AB|S27.331A|ICD10CM|Laceration of lung, unilateral, initial encounter|Laceration of lung, unilateral, initial encounter +C2836286|T037|PT|S27.331D|ICD10CM|Laceration of lung, unilateral, subsequent encounter|Laceration of lung, unilateral, subsequent encounter +C2836286|T037|AB|S27.331D|ICD10CM|Laceration of lung, unilateral, subsequent encounter|Laceration of lung, unilateral, subsequent encounter +C2836287|T037|PT|S27.331S|ICD10CM|Laceration of lung, unilateral, sequela|Laceration of lung, unilateral, sequela +C2836287|T037|AB|S27.331S|ICD10CM|Laceration of lung, unilateral, sequela|Laceration of lung, unilateral, sequela +C2836288|T037|AB|S27.332|ICD10CM|Laceration of lung, bilateral|Laceration of lung, bilateral +C2836288|T037|HT|S27.332|ICD10CM|Laceration of lung, bilateral|Laceration of lung, bilateral +C2836289|T037|PT|S27.332A|ICD10CM|Laceration of lung, bilateral, initial encounter|Laceration of lung, bilateral, initial encounter +C2836289|T037|AB|S27.332A|ICD10CM|Laceration of lung, bilateral, initial encounter|Laceration of lung, bilateral, initial encounter +C2836290|T037|PT|S27.332D|ICD10CM|Laceration of lung, bilateral, subsequent encounter|Laceration of lung, bilateral, subsequent encounter +C2836290|T037|AB|S27.332D|ICD10CM|Laceration of lung, bilateral, subsequent encounter|Laceration of lung, bilateral, subsequent encounter +C2836291|T037|PT|S27.332S|ICD10CM|Laceration of lung, bilateral, sequela|Laceration of lung, bilateral, sequela +C2836291|T037|AB|S27.332S|ICD10CM|Laceration of lung, bilateral, sequela|Laceration of lung, bilateral, sequela +C0347627|T037|AB|S27.339|ICD10CM|Laceration of lung, unspecified|Laceration of lung, unspecified +C0347627|T037|HT|S27.339|ICD10CM|Laceration of lung, unspecified|Laceration of lung, unspecified +C2836293|T037|PT|S27.339A|ICD10CM|Laceration of lung, unspecified, initial encounter|Laceration of lung, unspecified, initial encounter +C2836293|T037|AB|S27.339A|ICD10CM|Laceration of lung, unspecified, initial encounter|Laceration of lung, unspecified, initial encounter +C2836294|T037|PT|S27.339D|ICD10CM|Laceration of lung, unspecified, subsequent encounter|Laceration of lung, unspecified, subsequent encounter +C2836294|T037|AB|S27.339D|ICD10CM|Laceration of lung, unspecified, subsequent encounter|Laceration of lung, unspecified, subsequent encounter +C2836295|T037|PT|S27.339S|ICD10CM|Laceration of lung, unspecified, sequela|Laceration of lung, unspecified, sequela +C2836295|T037|AB|S27.339S|ICD10CM|Laceration of lung, unspecified, sequela|Laceration of lung, unspecified, sequela +C0478245|T037|HT|S27.39|ICD10CM|Other injuries of lung|Other injuries of lung +C0478245|T037|AB|S27.39|ICD10CM|Other injuries of lung|Other injuries of lung +C2836296|T037|ET|S27.39|ICD10CM|Secondary blast injury of lung|Secondary blast injury of lung +C2836297|T037|AB|S27.391|ICD10CM|Other injuries of lung, unilateral|Other injuries of lung, unilateral +C2836297|T037|HT|S27.391|ICD10CM|Other injuries of lung, unilateral|Other injuries of lung, unilateral +C2836298|T037|AB|S27.391A|ICD10CM|Other injuries of lung, unilateral, initial encounter|Other injuries of lung, unilateral, initial encounter +C2836298|T037|PT|S27.391A|ICD10CM|Other injuries of lung, unilateral, initial encounter|Other injuries of lung, unilateral, initial encounter +C2836299|T037|AB|S27.391D|ICD10CM|Other injuries of lung, unilateral, subsequent encounter|Other injuries of lung, unilateral, subsequent encounter +C2836299|T037|PT|S27.391D|ICD10CM|Other injuries of lung, unilateral, subsequent encounter|Other injuries of lung, unilateral, subsequent encounter +C2836300|T037|AB|S27.391S|ICD10CM|Other injuries of lung, unilateral, sequela|Other injuries of lung, unilateral, sequela +C2836300|T037|PT|S27.391S|ICD10CM|Other injuries of lung, unilateral, sequela|Other injuries of lung, unilateral, sequela +C2836301|T037|AB|S27.392|ICD10CM|Other injuries of lung, bilateral|Other injuries of lung, bilateral +C2836301|T037|HT|S27.392|ICD10CM|Other injuries of lung, bilateral|Other injuries of lung, bilateral +C2836302|T037|AB|S27.392A|ICD10CM|Other injuries of lung, bilateral, initial encounter|Other injuries of lung, bilateral, initial encounter +C2836302|T037|PT|S27.392A|ICD10CM|Other injuries of lung, bilateral, initial encounter|Other injuries of lung, bilateral, initial encounter +C2836303|T037|AB|S27.392D|ICD10CM|Other injuries of lung, bilateral, subsequent encounter|Other injuries of lung, bilateral, subsequent encounter +C2836303|T037|PT|S27.392D|ICD10CM|Other injuries of lung, bilateral, subsequent encounter|Other injuries of lung, bilateral, subsequent encounter +C2836304|T037|AB|S27.392S|ICD10CM|Other injuries of lung, bilateral, sequela|Other injuries of lung, bilateral, sequela +C2836304|T037|PT|S27.392S|ICD10CM|Other injuries of lung, bilateral, sequela|Other injuries of lung, bilateral, sequela +C0840492|T037|AB|S27.399|ICD10CM|Other injuries of lung, unspecified|Other injuries of lung, unspecified +C0840492|T037|HT|S27.399|ICD10CM|Other injuries of lung, unspecified|Other injuries of lung, unspecified +C2836305|T037|AB|S27.399A|ICD10CM|Other injuries of lung, unspecified, initial encounter|Other injuries of lung, unspecified, initial encounter +C2836305|T037|PT|S27.399A|ICD10CM|Other injuries of lung, unspecified, initial encounter|Other injuries of lung, unspecified, initial encounter +C2836306|T037|AB|S27.399D|ICD10CM|Other injuries of lung, unspecified, subsequent encounter|Other injuries of lung, unspecified, subsequent encounter +C2836306|T037|PT|S27.399D|ICD10CM|Other injuries of lung, unspecified, subsequent encounter|Other injuries of lung, unspecified, subsequent encounter +C2836307|T037|AB|S27.399S|ICD10CM|Other injuries of lung, unspecified, sequela|Other injuries of lung, unspecified, sequela +C2836307|T037|PT|S27.399S|ICD10CM|Other injuries of lung, unspecified, sequela|Other injuries of lung, unspecified, sequela +C0434010|T037|HT|S27.4|ICD10CM|Injury of bronchus|Injury of bronchus +C0434010|T037|AB|S27.4|ICD10CM|Injury of bronchus|Injury of bronchus +C0434010|T037|PT|S27.4|ICD10|Injury of bronchus|Injury of bronchus +C2836317|T037|AB|S27.40|ICD10CM|Unspecified injury of bronchus|Unspecified injury of bronchus +C2836317|T037|HT|S27.40|ICD10CM|Unspecified injury of bronchus|Unspecified injury of bronchus +C2836309|T037|AB|S27.401|ICD10CM|Unspecified injury of bronchus, unilateral|Unspecified injury of bronchus, unilateral +C2836309|T037|HT|S27.401|ICD10CM|Unspecified injury of bronchus, unilateral|Unspecified injury of bronchus, unilateral +C2836310|T037|AB|S27.401A|ICD10CM|Unspecified injury of bronchus, unilateral, init encntr|Unspecified injury of bronchus, unilateral, init encntr +C2836310|T037|PT|S27.401A|ICD10CM|Unspecified injury of bronchus, unilateral, initial encounter|Unspecified injury of bronchus, unilateral, initial encounter +C2836311|T037|AB|S27.401D|ICD10CM|Unspecified injury of bronchus, unilateral, subs encntr|Unspecified injury of bronchus, unilateral, subs encntr +C2836311|T037|PT|S27.401D|ICD10CM|Unspecified injury of bronchus, unilateral, subsequent encounter|Unspecified injury of bronchus, unilateral, subsequent encounter +C2836312|T037|PT|S27.401S|ICD10CM|Unspecified injury of bronchus, unilateral, sequela|Unspecified injury of bronchus, unilateral, sequela +C2836312|T037|AB|S27.401S|ICD10CM|Unspecified injury of bronchus, unilateral, sequela|Unspecified injury of bronchus, unilateral, sequela +C2836313|T037|AB|S27.402|ICD10CM|Unspecified injury of bronchus, bilateral|Unspecified injury of bronchus, bilateral +C2836313|T037|HT|S27.402|ICD10CM|Unspecified injury of bronchus, bilateral|Unspecified injury of bronchus, bilateral +C2836314|T037|AB|S27.402A|ICD10CM|Unspecified injury of bronchus, bilateral, initial encounter|Unspecified injury of bronchus, bilateral, initial encounter +C2836314|T037|PT|S27.402A|ICD10CM|Unspecified injury of bronchus, bilateral, initial encounter|Unspecified injury of bronchus, bilateral, initial encounter +C2836315|T037|AB|S27.402D|ICD10CM|Unspecified injury of bronchus, bilateral, subs encntr|Unspecified injury of bronchus, bilateral, subs encntr +C2836315|T037|PT|S27.402D|ICD10CM|Unspecified injury of bronchus, bilateral, subsequent encounter|Unspecified injury of bronchus, bilateral, subsequent encounter +C2836316|T037|PT|S27.402S|ICD10CM|Unspecified injury of bronchus, bilateral, sequela|Unspecified injury of bronchus, bilateral, sequela +C2836316|T037|AB|S27.402S|ICD10CM|Unspecified injury of bronchus, bilateral, sequela|Unspecified injury of bronchus, bilateral, sequela +C2836317|T037|AB|S27.409|ICD10CM|Unspecified injury of bronchus, unspecified|Unspecified injury of bronchus, unspecified +C2836317|T037|HT|S27.409|ICD10CM|Unspecified injury of bronchus, unspecified|Unspecified injury of bronchus, unspecified +C2836318|T037|AB|S27.409A|ICD10CM|Unspecified injury of bronchus, unspecified, init encntr|Unspecified injury of bronchus, unspecified, init encntr +C2836318|T037|PT|S27.409A|ICD10CM|Unspecified injury of bronchus, unspecified, initial encounter|Unspecified injury of bronchus, unspecified, initial encounter +C2836319|T037|AB|S27.409D|ICD10CM|Unspecified injury of bronchus, unspecified, subs encntr|Unspecified injury of bronchus, unspecified, subs encntr +C2836319|T037|PT|S27.409D|ICD10CM|Unspecified injury of bronchus, unspecified, subsequent encounter|Unspecified injury of bronchus, unspecified, subsequent encounter +C2836320|T037|PT|S27.409S|ICD10CM|Unspecified injury of bronchus, unspecified, sequela|Unspecified injury of bronchus, unspecified, sequela +C2836320|T037|AB|S27.409S|ICD10CM|Unspecified injury of bronchus, unspecified, sequela|Unspecified injury of bronchus, unspecified, sequela +C2836321|T037|ET|S27.41|ICD10CM|Blast injury of bronchus NOS|Blast injury of bronchus NOS +C2836331|T037|AB|S27.41|ICD10CM|Primary blast injury of bronchus|Primary blast injury of bronchus +C2836331|T037|HT|S27.41|ICD10CM|Primary blast injury of bronchus|Primary blast injury of bronchus +C2836323|T037|AB|S27.411|ICD10CM|Primary blast injury of bronchus, unilateral|Primary blast injury of bronchus, unilateral +C2836323|T037|HT|S27.411|ICD10CM|Primary blast injury of bronchus, unilateral|Primary blast injury of bronchus, unilateral +C2836324|T037|AB|S27.411A|ICD10CM|Primary blast injury of bronchus, unilateral, init encntr|Primary blast injury of bronchus, unilateral, init encntr +C2836324|T037|PT|S27.411A|ICD10CM|Primary blast injury of bronchus, unilateral, initial encounter|Primary blast injury of bronchus, unilateral, initial encounter +C2836325|T037|AB|S27.411D|ICD10CM|Primary blast injury of bronchus, unilateral, subs encntr|Primary blast injury of bronchus, unilateral, subs encntr +C2836325|T037|PT|S27.411D|ICD10CM|Primary blast injury of bronchus, unilateral, subsequent encounter|Primary blast injury of bronchus, unilateral, subsequent encounter +C2836326|T037|AB|S27.411S|ICD10CM|Primary blast injury of bronchus, unilateral, sequela|Primary blast injury of bronchus, unilateral, sequela +C2836326|T037|PT|S27.411S|ICD10CM|Primary blast injury of bronchus, unilateral, sequela|Primary blast injury of bronchus, unilateral, sequela +C2836327|T037|AB|S27.412|ICD10CM|Primary blast injury of bronchus, bilateral|Primary blast injury of bronchus, bilateral +C2836327|T037|HT|S27.412|ICD10CM|Primary blast injury of bronchus, bilateral|Primary blast injury of bronchus, bilateral +C2836328|T037|AB|S27.412A|ICD10CM|Primary blast injury of bronchus, bilateral, init encntr|Primary blast injury of bronchus, bilateral, init encntr +C2836328|T037|PT|S27.412A|ICD10CM|Primary blast injury of bronchus, bilateral, initial encounter|Primary blast injury of bronchus, bilateral, initial encounter +C2836329|T037|AB|S27.412D|ICD10CM|Primary blast injury of bronchus, bilateral, subs encntr|Primary blast injury of bronchus, bilateral, subs encntr +C2836329|T037|PT|S27.412D|ICD10CM|Primary blast injury of bronchus, bilateral, subsequent encounter|Primary blast injury of bronchus, bilateral, subsequent encounter +C2836330|T037|AB|S27.412S|ICD10CM|Primary blast injury of bronchus, bilateral, sequela|Primary blast injury of bronchus, bilateral, sequela +C2836330|T037|PT|S27.412S|ICD10CM|Primary blast injury of bronchus, bilateral, sequela|Primary blast injury of bronchus, bilateral, sequela +C2836331|T037|AB|S27.419|ICD10CM|Primary blast injury of bronchus, unspecified|Primary blast injury of bronchus, unspecified +C2836331|T037|HT|S27.419|ICD10CM|Primary blast injury of bronchus, unspecified|Primary blast injury of bronchus, unspecified +C2836332|T037|AB|S27.419A|ICD10CM|Primary blast injury of bronchus, unspecified, init encntr|Primary blast injury of bronchus, unspecified, init encntr +C2836332|T037|PT|S27.419A|ICD10CM|Primary blast injury of bronchus, unspecified, initial encounter|Primary blast injury of bronchus, unspecified, initial encounter +C2836333|T037|AB|S27.419D|ICD10CM|Primary blast injury of bronchus, unspecified, subs encntr|Primary blast injury of bronchus, unspecified, subs encntr +C2836333|T037|PT|S27.419D|ICD10CM|Primary blast injury of bronchus, unspecified, subsequent encounter|Primary blast injury of bronchus, unspecified, subsequent encounter +C2836334|T037|AB|S27.419S|ICD10CM|Primary blast injury of bronchus, unspecified, sequela|Primary blast injury of bronchus, unspecified, sequela +C2836334|T037|PT|S27.419S|ICD10CM|Primary blast injury of bronchus, unspecified, sequela|Primary blast injury of bronchus, unspecified, sequela +C0560565|T037|HT|S27.42|ICD10CM|Contusion of bronchus|Contusion of bronchus +C0560565|T037|AB|S27.42|ICD10CM|Contusion of bronchus|Contusion of bronchus +C2836335|T037|AB|S27.421|ICD10CM|Contusion of bronchus, unilateral|Contusion of bronchus, unilateral +C2836335|T037|HT|S27.421|ICD10CM|Contusion of bronchus, unilateral|Contusion of bronchus, unilateral +C2836336|T037|PT|S27.421A|ICD10CM|Contusion of bronchus, unilateral, initial encounter|Contusion of bronchus, unilateral, initial encounter +C2836336|T037|AB|S27.421A|ICD10CM|Contusion of bronchus, unilateral, initial encounter|Contusion of bronchus, unilateral, initial encounter +C2836337|T037|PT|S27.421D|ICD10CM|Contusion of bronchus, unilateral, subsequent encounter|Contusion of bronchus, unilateral, subsequent encounter +C2836337|T037|AB|S27.421D|ICD10CM|Contusion of bronchus, unilateral, subsequent encounter|Contusion of bronchus, unilateral, subsequent encounter +C2836338|T037|PT|S27.421S|ICD10CM|Contusion of bronchus, unilateral, sequela|Contusion of bronchus, unilateral, sequela +C2836338|T037|AB|S27.421S|ICD10CM|Contusion of bronchus, unilateral, sequela|Contusion of bronchus, unilateral, sequela +C2836339|T037|AB|S27.422|ICD10CM|Contusion of bronchus, bilateral|Contusion of bronchus, bilateral +C2836339|T037|HT|S27.422|ICD10CM|Contusion of bronchus, bilateral|Contusion of bronchus, bilateral +C2836340|T037|PT|S27.422A|ICD10CM|Contusion of bronchus, bilateral, initial encounter|Contusion of bronchus, bilateral, initial encounter +C2836340|T037|AB|S27.422A|ICD10CM|Contusion of bronchus, bilateral, initial encounter|Contusion of bronchus, bilateral, initial encounter +C2836341|T037|PT|S27.422D|ICD10CM|Contusion of bronchus, bilateral, subsequent encounter|Contusion of bronchus, bilateral, subsequent encounter +C2836341|T037|AB|S27.422D|ICD10CM|Contusion of bronchus, bilateral, subsequent encounter|Contusion of bronchus, bilateral, subsequent encounter +C2836342|T037|PT|S27.422S|ICD10CM|Contusion of bronchus, bilateral, sequela|Contusion of bronchus, bilateral, sequela +C2836342|T037|AB|S27.422S|ICD10CM|Contusion of bronchus, bilateral, sequela|Contusion of bronchus, bilateral, sequela +C0560565|T037|AB|S27.429|ICD10CM|Contusion of bronchus, unspecified|Contusion of bronchus, unspecified +C0560565|T037|HT|S27.429|ICD10CM|Contusion of bronchus, unspecified|Contusion of bronchus, unspecified +C2836344|T037|PT|S27.429A|ICD10CM|Contusion of bronchus, unspecified, initial encounter|Contusion of bronchus, unspecified, initial encounter +C2836344|T037|AB|S27.429A|ICD10CM|Contusion of bronchus, unspecified, initial encounter|Contusion of bronchus, unspecified, initial encounter +C2836345|T037|PT|S27.429D|ICD10CM|Contusion of bronchus, unspecified, subsequent encounter|Contusion of bronchus, unspecified, subsequent encounter +C2836345|T037|AB|S27.429D|ICD10CM|Contusion of bronchus, unspecified, subsequent encounter|Contusion of bronchus, unspecified, subsequent encounter +C2836346|T037|PT|S27.429S|ICD10CM|Contusion of bronchus, unspecified, sequela|Contusion of bronchus, unspecified, sequela +C2836346|T037|AB|S27.429S|ICD10CM|Contusion of bronchus, unspecified, sequela|Contusion of bronchus, unspecified, sequela +C0560332|T037|HT|S27.43|ICD10CM|Laceration of bronchus|Laceration of bronchus +C0560332|T037|AB|S27.43|ICD10CM|Laceration of bronchus|Laceration of bronchus +C2836347|T037|AB|S27.431|ICD10CM|Laceration of bronchus, unilateral|Laceration of bronchus, unilateral +C2836347|T037|HT|S27.431|ICD10CM|Laceration of bronchus, unilateral|Laceration of bronchus, unilateral +C2836348|T037|PT|S27.431A|ICD10CM|Laceration of bronchus, unilateral, initial encounter|Laceration of bronchus, unilateral, initial encounter +C2836348|T037|AB|S27.431A|ICD10CM|Laceration of bronchus, unilateral, initial encounter|Laceration of bronchus, unilateral, initial encounter +C2836349|T037|PT|S27.431D|ICD10CM|Laceration of bronchus, unilateral, subsequent encounter|Laceration of bronchus, unilateral, subsequent encounter +C2836349|T037|AB|S27.431D|ICD10CM|Laceration of bronchus, unilateral, subsequent encounter|Laceration of bronchus, unilateral, subsequent encounter +C2836350|T037|PT|S27.431S|ICD10CM|Laceration of bronchus, unilateral, sequela|Laceration of bronchus, unilateral, sequela +C2836350|T037|AB|S27.431S|ICD10CM|Laceration of bronchus, unilateral, sequela|Laceration of bronchus, unilateral, sequela +C2836351|T037|AB|S27.432|ICD10CM|Laceration of bronchus, bilateral|Laceration of bronchus, bilateral +C2836351|T037|HT|S27.432|ICD10CM|Laceration of bronchus, bilateral|Laceration of bronchus, bilateral +C2836352|T037|PT|S27.432A|ICD10CM|Laceration of bronchus, bilateral, initial encounter|Laceration of bronchus, bilateral, initial encounter +C2836352|T037|AB|S27.432A|ICD10CM|Laceration of bronchus, bilateral, initial encounter|Laceration of bronchus, bilateral, initial encounter +C2836353|T037|PT|S27.432D|ICD10CM|Laceration of bronchus, bilateral, subsequent encounter|Laceration of bronchus, bilateral, subsequent encounter +C2836353|T037|AB|S27.432D|ICD10CM|Laceration of bronchus, bilateral, subsequent encounter|Laceration of bronchus, bilateral, subsequent encounter +C2836354|T037|PT|S27.432S|ICD10CM|Laceration of bronchus, bilateral, sequela|Laceration of bronchus, bilateral, sequela +C2836354|T037|AB|S27.432S|ICD10CM|Laceration of bronchus, bilateral, sequela|Laceration of bronchus, bilateral, sequela +C0560332|T037|AB|S27.439|ICD10CM|Laceration of bronchus, unspecified|Laceration of bronchus, unspecified +C0560332|T037|HT|S27.439|ICD10CM|Laceration of bronchus, unspecified|Laceration of bronchus, unspecified +C2836356|T037|PT|S27.439A|ICD10CM|Laceration of bronchus, unspecified, initial encounter|Laceration of bronchus, unspecified, initial encounter +C2836356|T037|AB|S27.439A|ICD10CM|Laceration of bronchus, unspecified, initial encounter|Laceration of bronchus, unspecified, initial encounter +C2836357|T037|PT|S27.439D|ICD10CM|Laceration of bronchus, unspecified, subsequent encounter|Laceration of bronchus, unspecified, subsequent encounter +C2836357|T037|AB|S27.439D|ICD10CM|Laceration of bronchus, unspecified, subsequent encounter|Laceration of bronchus, unspecified, subsequent encounter +C2836358|T037|PT|S27.439S|ICD10CM|Laceration of bronchus, unspecified, sequela|Laceration of bronchus, unspecified, sequela +C2836358|T037|AB|S27.439S|ICD10CM|Laceration of bronchus, unspecified, sequela|Laceration of bronchus, unspecified, sequela +C2836369|T037|AB|S27.49|ICD10CM|Other injury of bronchus|Other injury of bronchus +C2836369|T037|HT|S27.49|ICD10CM|Other injury of bronchus|Other injury of bronchus +C2836359|T037|ET|S27.49|ICD10CM|Secondary blast injury of bronchus|Secondary blast injury of bronchus +C2836361|T037|AB|S27.491|ICD10CM|Other injury of bronchus, unilateral|Other injury of bronchus, unilateral +C2836361|T037|HT|S27.491|ICD10CM|Other injury of bronchus, unilateral|Other injury of bronchus, unilateral +C2836362|T037|PT|S27.491A|ICD10CM|Other injury of bronchus, unilateral, initial encounter|Other injury of bronchus, unilateral, initial encounter +C2836362|T037|AB|S27.491A|ICD10CM|Other injury of bronchus, unilateral, initial encounter|Other injury of bronchus, unilateral, initial encounter +C2836363|T037|PT|S27.491D|ICD10CM|Other injury of bronchus, unilateral, subsequent encounter|Other injury of bronchus, unilateral, subsequent encounter +C2836363|T037|AB|S27.491D|ICD10CM|Other injury of bronchus, unilateral, subsequent encounter|Other injury of bronchus, unilateral, subsequent encounter +C2836364|T037|PT|S27.491S|ICD10CM|Other injury of bronchus, unilateral, sequela|Other injury of bronchus, unilateral, sequela +C2836364|T037|AB|S27.491S|ICD10CM|Other injury of bronchus, unilateral, sequela|Other injury of bronchus, unilateral, sequela +C2836365|T037|AB|S27.492|ICD10CM|Other injury of bronchus, bilateral|Other injury of bronchus, bilateral +C2836365|T037|HT|S27.492|ICD10CM|Other injury of bronchus, bilateral|Other injury of bronchus, bilateral +C2836366|T037|AB|S27.492A|ICD10CM|Other injury of bronchus, bilateral, initial encounter|Other injury of bronchus, bilateral, initial encounter +C2836366|T037|PT|S27.492A|ICD10CM|Other injury of bronchus, bilateral, initial encounter|Other injury of bronchus, bilateral, initial encounter +C2836367|T037|PT|S27.492D|ICD10CM|Other injury of bronchus, bilateral, subsequent encounter|Other injury of bronchus, bilateral, subsequent encounter +C2836367|T037|AB|S27.492D|ICD10CM|Other injury of bronchus, bilateral, subsequent encounter|Other injury of bronchus, bilateral, subsequent encounter +C2836368|T037|PT|S27.492S|ICD10CM|Other injury of bronchus, bilateral, sequela|Other injury of bronchus, bilateral, sequela +C2836368|T037|AB|S27.492S|ICD10CM|Other injury of bronchus, bilateral, sequela|Other injury of bronchus, bilateral, sequela +C2836369|T037|AB|S27.499|ICD10CM|Other injury of bronchus, unspecified|Other injury of bronchus, unspecified +C2836369|T037|HT|S27.499|ICD10CM|Other injury of bronchus, unspecified|Other injury of bronchus, unspecified +C2836370|T037|PT|S27.499A|ICD10CM|Other injury of bronchus, unspecified, initial encounter|Other injury of bronchus, unspecified, initial encounter +C2836370|T037|AB|S27.499A|ICD10CM|Other injury of bronchus, unspecified, initial encounter|Other injury of bronchus, unspecified, initial encounter +C2836371|T037|PT|S27.499D|ICD10CM|Other injury of bronchus, unspecified, subsequent encounter|Other injury of bronchus, unspecified, subsequent encounter +C2836371|T037|AB|S27.499D|ICD10CM|Other injury of bronchus, unspecified, subsequent encounter|Other injury of bronchus, unspecified, subsequent encounter +C2836372|T037|PT|S27.499S|ICD10CM|Other injury of bronchus, unspecified, sequela|Other injury of bronchus, unspecified, sequela +C2836372|T037|AB|S27.499S|ICD10CM|Other injury of bronchus, unspecified, sequela|Other injury of bronchus, unspecified, sequela +C0452046|T037|PT|S27.5|ICD10|Injury of thoracic trachea|Injury of thoracic trachea +C0452046|T037|HT|S27.5|ICD10CM|Injury of thoracic trachea|Injury of thoracic trachea +C0452046|T037|AB|S27.5|ICD10CM|Injury of thoracic trachea|Injury of thoracic trachea +C2836373|T037|AB|S27.50|ICD10CM|Unspecified injury of thoracic trachea|Unspecified injury of thoracic trachea +C2836373|T037|HT|S27.50|ICD10CM|Unspecified injury of thoracic trachea|Unspecified injury of thoracic trachea +C2836374|T037|PT|S27.50XA|ICD10CM|Unspecified injury of thoracic trachea, initial encounter|Unspecified injury of thoracic trachea, initial encounter +C2836374|T037|AB|S27.50XA|ICD10CM|Unspecified injury of thoracic trachea, initial encounter|Unspecified injury of thoracic trachea, initial encounter +C2836375|T037|AB|S27.50XD|ICD10CM|Unspecified injury of thoracic trachea, subsequent encounter|Unspecified injury of thoracic trachea, subsequent encounter +C2836375|T037|PT|S27.50XD|ICD10CM|Unspecified injury of thoracic trachea, subsequent encounter|Unspecified injury of thoracic trachea, subsequent encounter +C2836376|T037|PT|S27.50XS|ICD10CM|Unspecified injury of thoracic trachea, sequela|Unspecified injury of thoracic trachea, sequela +C2836376|T037|AB|S27.50XS|ICD10CM|Unspecified injury of thoracic trachea, sequela|Unspecified injury of thoracic trachea, sequela +C2836377|T037|ET|S27.51|ICD10CM|Blast injury of thoracic trachea NOS|Blast injury of thoracic trachea NOS +C2836378|T037|AB|S27.51|ICD10CM|Primary blast injury of thoracic trachea|Primary blast injury of thoracic trachea +C2836378|T037|HT|S27.51|ICD10CM|Primary blast injury of thoracic trachea|Primary blast injury of thoracic trachea +C2836379|T037|AB|S27.51XA|ICD10CM|Primary blast injury of thoracic trachea, initial encounter|Primary blast injury of thoracic trachea, initial encounter +C2836379|T037|PT|S27.51XA|ICD10CM|Primary blast injury of thoracic trachea, initial encounter|Primary blast injury of thoracic trachea, initial encounter +C2836380|T037|AB|S27.51XD|ICD10CM|Primary blast injury of thoracic trachea, subs encntr|Primary blast injury of thoracic trachea, subs encntr +C2836380|T037|PT|S27.51XD|ICD10CM|Primary blast injury of thoracic trachea, subsequent encounter|Primary blast injury of thoracic trachea, subsequent encounter +C2836381|T037|AB|S27.51XS|ICD10CM|Primary blast injury of thoracic trachea, sequela|Primary blast injury of thoracic trachea, sequela +C2836381|T037|PT|S27.51XS|ICD10CM|Primary blast injury of thoracic trachea, sequela|Primary blast injury of thoracic trachea, sequela +C1393930|T037|HT|S27.52|ICD10CM|Contusion of thoracic trachea|Contusion of thoracic trachea +C1393930|T037|AB|S27.52|ICD10CM|Contusion of thoracic trachea|Contusion of thoracic trachea +C2836382|T037|PT|S27.52XA|ICD10CM|Contusion of thoracic trachea, initial encounter|Contusion of thoracic trachea, initial encounter +C2836382|T037|AB|S27.52XA|ICD10CM|Contusion of thoracic trachea, initial encounter|Contusion of thoracic trachea, initial encounter +C2836383|T037|PT|S27.52XD|ICD10CM|Contusion of thoracic trachea, subsequent encounter|Contusion of thoracic trachea, subsequent encounter +C2836383|T037|AB|S27.52XD|ICD10CM|Contusion of thoracic trachea, subsequent encounter|Contusion of thoracic trachea, subsequent encounter +C2836384|T037|PT|S27.52XS|ICD10CM|Contusion of thoracic trachea, sequela|Contusion of thoracic trachea, sequela +C2836384|T037|AB|S27.52XS|ICD10CM|Contusion of thoracic trachea, sequela|Contusion of thoracic trachea, sequela +C2836385|T037|AB|S27.53|ICD10CM|Laceration of thoracic trachea|Laceration of thoracic trachea +C2836385|T037|HT|S27.53|ICD10CM|Laceration of thoracic trachea|Laceration of thoracic trachea +C2836386|T037|PT|S27.53XA|ICD10CM|Laceration of thoracic trachea, initial encounter|Laceration of thoracic trachea, initial encounter +C2836386|T037|AB|S27.53XA|ICD10CM|Laceration of thoracic trachea, initial encounter|Laceration of thoracic trachea, initial encounter +C2836387|T037|PT|S27.53XD|ICD10CM|Laceration of thoracic trachea, subsequent encounter|Laceration of thoracic trachea, subsequent encounter +C2836387|T037|AB|S27.53XD|ICD10CM|Laceration of thoracic trachea, subsequent encounter|Laceration of thoracic trachea, subsequent encounter +C2836388|T037|PT|S27.53XS|ICD10CM|Laceration of thoracic trachea, sequela|Laceration of thoracic trachea, sequela +C2836388|T037|AB|S27.53XS|ICD10CM|Laceration of thoracic trachea, sequela|Laceration of thoracic trachea, sequela +C2836390|T037|AB|S27.59|ICD10CM|Other injury of thoracic trachea|Other injury of thoracic trachea +C2836390|T037|HT|S27.59|ICD10CM|Other injury of thoracic trachea|Other injury of thoracic trachea +C2836389|T037|ET|S27.59|ICD10CM|Secondary blast injury of thoracic trachea|Secondary blast injury of thoracic trachea +C2836391|T037|PT|S27.59XA|ICD10CM|Other injury of thoracic trachea, initial encounter|Other injury of thoracic trachea, initial encounter +C2836391|T037|AB|S27.59XA|ICD10CM|Other injury of thoracic trachea, initial encounter|Other injury of thoracic trachea, initial encounter +C2836392|T037|AB|S27.59XD|ICD10CM|Other injury of thoracic trachea, subsequent encounter|Other injury of thoracic trachea, subsequent encounter +C2836392|T037|PT|S27.59XD|ICD10CM|Other injury of thoracic trachea, subsequent encounter|Other injury of thoracic trachea, subsequent encounter +C2836393|T037|PT|S27.59XS|ICD10CM|Other injury of thoracic trachea, sequela|Other injury of thoracic trachea, sequela +C2836393|T037|AB|S27.59XS|ICD10CM|Other injury of thoracic trachea, sequela|Other injury of thoracic trachea, sequela +C0273117|T037|PT|S27.6|ICD10|Injury of pleura|Injury of pleura +C0273117|T037|HT|S27.6|ICD10CM|Injury of pleura|Injury of pleura +C0273117|T037|AB|S27.6|ICD10CM|Injury of pleura|Injury of pleura +C2836394|T037|AB|S27.60|ICD10CM|Unspecified injury of pleura|Unspecified injury of pleura +C2836394|T037|HT|S27.60|ICD10CM|Unspecified injury of pleura|Unspecified injury of pleura +C2836395|T037|PT|S27.60XA|ICD10CM|Unspecified injury of pleura, initial encounter|Unspecified injury of pleura, initial encounter +C2836395|T037|AB|S27.60XA|ICD10CM|Unspecified injury of pleura, initial encounter|Unspecified injury of pleura, initial encounter +C2836396|T037|PT|S27.60XD|ICD10CM|Unspecified injury of pleura, subsequent encounter|Unspecified injury of pleura, subsequent encounter +C2836396|T037|AB|S27.60XD|ICD10CM|Unspecified injury of pleura, subsequent encounter|Unspecified injury of pleura, subsequent encounter +C2836397|T037|PT|S27.60XS|ICD10CM|Unspecified injury of pleura, sequela|Unspecified injury of pleura, sequela +C2836397|T037|AB|S27.60XS|ICD10CM|Unspecified injury of pleura, sequela|Unspecified injury of pleura, sequela +C2836398|T037|HT|S27.63|ICD10CM|Laceration of pleura|Laceration of pleura +C2836398|T037|AB|S27.63|ICD10CM|Laceration of pleura|Laceration of pleura +C2836399|T037|AB|S27.63XA|ICD10CM|Laceration of pleura, initial encounter|Laceration of pleura, initial encounter +C2836399|T037|PT|S27.63XA|ICD10CM|Laceration of pleura, initial encounter|Laceration of pleura, initial encounter +C2836400|T037|AB|S27.63XD|ICD10CM|Laceration of pleura, subsequent encounter|Laceration of pleura, subsequent encounter +C2836400|T037|PT|S27.63XD|ICD10CM|Laceration of pleura, subsequent encounter|Laceration of pleura, subsequent encounter +C2836401|T037|AB|S27.63XS|ICD10CM|Laceration of pleura, sequela|Laceration of pleura, sequela +C2836401|T037|PT|S27.63XS|ICD10CM|Laceration of pleura, sequela|Laceration of pleura, sequela +C2836402|T037|AB|S27.69|ICD10CM|Other injury of pleura|Other injury of pleura +C2836402|T037|HT|S27.69|ICD10CM|Other injury of pleura|Other injury of pleura +C2836403|T037|PT|S27.69XA|ICD10CM|Other injury of pleura, initial encounter|Other injury of pleura, initial encounter +C2836403|T037|AB|S27.69XA|ICD10CM|Other injury of pleura, initial encounter|Other injury of pleura, initial encounter +C2836404|T037|PT|S27.69XD|ICD10CM|Other injury of pleura, subsequent encounter|Other injury of pleura, subsequent encounter +C2836404|T037|AB|S27.69XD|ICD10CM|Other injury of pleura, subsequent encounter|Other injury of pleura, subsequent encounter +C2836405|T037|PT|S27.69XS|ICD10CM|Other injury of pleura, sequela|Other injury of pleura, sequela +C2836405|T037|AB|S27.69XS|ICD10CM|Other injury of pleura, sequela|Other injury of pleura, sequela +C0452055|T037|PT|S27.7|ICD10|Multiple injuries of intrathoracic organs|Multiple injuries of intrathoracic organs +C0478246|T037|PT|S27.8|ICD10|Injury of other specified intrathoracic organs|Injury of other specified intrathoracic organs +C0478246|T037|HT|S27.8|ICD10CM|Injury of other specified intrathoracic organs|Injury of other specified intrathoracic organs +C0478246|T037|AB|S27.8|ICD10CM|Injury of other specified intrathoracic organs|Injury of other specified intrathoracic organs +C0434014|T037|HT|S27.80|ICD10CM|Injury of diaphragm|Injury of diaphragm +C0434014|T037|AB|S27.80|ICD10CM|Injury of diaphragm|Injury of diaphragm +C2836406|T037|AB|S27.802|ICD10CM|Contusion of diaphragm|Contusion of diaphragm +C2836406|T037|HT|S27.802|ICD10CM|Contusion of diaphragm|Contusion of diaphragm +C2836407|T037|PT|S27.802A|ICD10CM|Contusion of diaphragm, initial encounter|Contusion of diaphragm, initial encounter +C2836407|T037|AB|S27.802A|ICD10CM|Contusion of diaphragm, initial encounter|Contusion of diaphragm, initial encounter +C2836408|T037|PT|S27.802D|ICD10CM|Contusion of diaphragm, subsequent encounter|Contusion of diaphragm, subsequent encounter +C2836408|T037|AB|S27.802D|ICD10CM|Contusion of diaphragm, subsequent encounter|Contusion of diaphragm, subsequent encounter +C2836409|T037|PT|S27.802S|ICD10CM|Contusion of diaphragm, sequela|Contusion of diaphragm, sequela +C2836409|T037|AB|S27.802S|ICD10CM|Contusion of diaphragm, sequela|Contusion of diaphragm, sequela +C0743170|T037|HT|S27.803|ICD10CM|Laceration of diaphragm|Laceration of diaphragm +C0743170|T037|AB|S27.803|ICD10CM|Laceration of diaphragm|Laceration of diaphragm +C2836410|T037|PT|S27.803A|ICD10CM|Laceration of diaphragm, initial encounter|Laceration of diaphragm, initial encounter +C2836410|T037|AB|S27.803A|ICD10CM|Laceration of diaphragm, initial encounter|Laceration of diaphragm, initial encounter +C2836411|T037|PT|S27.803D|ICD10CM|Laceration of diaphragm, subsequent encounter|Laceration of diaphragm, subsequent encounter +C2836411|T037|AB|S27.803D|ICD10CM|Laceration of diaphragm, subsequent encounter|Laceration of diaphragm, subsequent encounter +C2836412|T037|PT|S27.803S|ICD10CM|Laceration of diaphragm, sequela|Laceration of diaphragm, sequela +C2836412|T037|AB|S27.803S|ICD10CM|Laceration of diaphragm, sequela|Laceration of diaphragm, sequela +C2836413|T037|AB|S27.808|ICD10CM|Other injury of diaphragm|Other injury of diaphragm +C2836413|T037|HT|S27.808|ICD10CM|Other injury of diaphragm|Other injury of diaphragm +C2836414|T037|PT|S27.808A|ICD10CM|Other injury of diaphragm, initial encounter|Other injury of diaphragm, initial encounter +C2836414|T037|AB|S27.808A|ICD10CM|Other injury of diaphragm, initial encounter|Other injury of diaphragm, initial encounter +C2836415|T037|PT|S27.808D|ICD10CM|Other injury of diaphragm, subsequent encounter|Other injury of diaphragm, subsequent encounter +C2836415|T037|AB|S27.808D|ICD10CM|Other injury of diaphragm, subsequent encounter|Other injury of diaphragm, subsequent encounter +C2836416|T037|PT|S27.808S|ICD10CM|Other injury of diaphragm, sequela|Other injury of diaphragm, sequela +C2836416|T037|AB|S27.808S|ICD10CM|Other injury of diaphragm, sequela|Other injury of diaphragm, sequela +C2836417|T037|AB|S27.809|ICD10CM|Unspecified injury of diaphragm|Unspecified injury of diaphragm +C2836417|T037|HT|S27.809|ICD10CM|Unspecified injury of diaphragm|Unspecified injury of diaphragm +C2836418|T037|PT|S27.809A|ICD10CM|Unspecified injury of diaphragm, initial encounter|Unspecified injury of diaphragm, initial encounter +C2836418|T037|AB|S27.809A|ICD10CM|Unspecified injury of diaphragm, initial encounter|Unspecified injury of diaphragm, initial encounter +C2836419|T037|PT|S27.809D|ICD10CM|Unspecified injury of diaphragm, subsequent encounter|Unspecified injury of diaphragm, subsequent encounter +C2836419|T037|AB|S27.809D|ICD10CM|Unspecified injury of diaphragm, subsequent encounter|Unspecified injury of diaphragm, subsequent encounter +C2836420|T037|PT|S27.809S|ICD10CM|Unspecified injury of diaphragm, sequela|Unspecified injury of diaphragm, sequela +C2836420|T037|AB|S27.809S|ICD10CM|Unspecified injury of diaphragm, sequela|Unspecified injury of diaphragm, sequela +C0840494|T037|HT|S27.81|ICD10CM|Injury of esophagus (thoracic part)|Injury of esophagus (thoracic part) +C0840494|T037|AB|S27.81|ICD10CM|Injury of esophagus (thoracic part)|Injury of esophagus (thoracic part) +C2836421|T037|AB|S27.812|ICD10CM|Contusion of esophagus (thoracic part)|Contusion of esophagus (thoracic part) +C2836421|T037|HT|S27.812|ICD10CM|Contusion of esophagus (thoracic part)|Contusion of esophagus (thoracic part) +C2836422|T037|PT|S27.812A|ICD10CM|Contusion of esophagus (thoracic part), initial encounter|Contusion of esophagus (thoracic part), initial encounter +C2836422|T037|AB|S27.812A|ICD10CM|Contusion of esophagus (thoracic part), initial encounter|Contusion of esophagus (thoracic part), initial encounter +C2836423|T037|AB|S27.812D|ICD10CM|Contusion of esophagus (thoracic part), subsequent encounter|Contusion of esophagus (thoracic part), subsequent encounter +C2836423|T037|PT|S27.812D|ICD10CM|Contusion of esophagus (thoracic part), subsequent encounter|Contusion of esophagus (thoracic part), subsequent encounter +C2836424|T037|PT|S27.812S|ICD10CM|Contusion of esophagus (thoracic part), sequela|Contusion of esophagus (thoracic part), sequela +C2836424|T037|AB|S27.812S|ICD10CM|Contusion of esophagus (thoracic part), sequela|Contusion of esophagus (thoracic part), sequela +C2836425|T037|AB|S27.813|ICD10CM|Laceration of esophagus (thoracic part)|Laceration of esophagus (thoracic part) +C2836425|T037|HT|S27.813|ICD10CM|Laceration of esophagus (thoracic part)|Laceration of esophagus (thoracic part) +C2836426|T037|PT|S27.813A|ICD10CM|Laceration of esophagus (thoracic part), initial encounter|Laceration of esophagus (thoracic part), initial encounter +C2836426|T037|AB|S27.813A|ICD10CM|Laceration of esophagus (thoracic part), initial encounter|Laceration of esophagus (thoracic part), initial encounter +C2836427|T037|AB|S27.813D|ICD10CM|Laceration of esophagus (thoracic part), subs encntr|Laceration of esophagus (thoracic part), subs encntr +C2836427|T037|PT|S27.813D|ICD10CM|Laceration of esophagus (thoracic part), subsequent encounter|Laceration of esophagus (thoracic part), subsequent encounter +C2836428|T037|PT|S27.813S|ICD10CM|Laceration of esophagus (thoracic part), sequela|Laceration of esophagus (thoracic part), sequela +C2836428|T037|AB|S27.813S|ICD10CM|Laceration of esophagus (thoracic part), sequela|Laceration of esophagus (thoracic part), sequela +C2836429|T037|AB|S27.818|ICD10CM|Other injury of esophagus (thoracic part)|Other injury of esophagus (thoracic part) +C2836429|T037|HT|S27.818|ICD10CM|Other injury of esophagus (thoracic part)|Other injury of esophagus (thoracic part) +C2836430|T037|AB|S27.818A|ICD10CM|Other injury of esophagus (thoracic part), initial encounter|Other injury of esophagus (thoracic part), initial encounter +C2836430|T037|PT|S27.818A|ICD10CM|Other injury of esophagus (thoracic part), initial encounter|Other injury of esophagus (thoracic part), initial encounter +C2836431|T037|AB|S27.818D|ICD10CM|Other injury of esophagus (thoracic part), subs encntr|Other injury of esophagus (thoracic part), subs encntr +C2836431|T037|PT|S27.818D|ICD10CM|Other injury of esophagus (thoracic part), subsequent encounter|Other injury of esophagus (thoracic part), subsequent encounter +C2836432|T037|PT|S27.818S|ICD10CM|Other injury of esophagus (thoracic part), sequela|Other injury of esophagus (thoracic part), sequela +C2836432|T037|AB|S27.818S|ICD10CM|Other injury of esophagus (thoracic part), sequela|Other injury of esophagus (thoracic part), sequela +C2836433|T037|AB|S27.819|ICD10CM|Unspecified injury of esophagus (thoracic part)|Unspecified injury of esophagus (thoracic part) +C2836433|T037|HT|S27.819|ICD10CM|Unspecified injury of esophagus (thoracic part)|Unspecified injury of esophagus (thoracic part) +C2836434|T037|AB|S27.819A|ICD10CM|Unspecified injury of esophagus (thoracic part), init encntr|Unspecified injury of esophagus (thoracic part), init encntr +C2836434|T037|PT|S27.819A|ICD10CM|Unspecified injury of esophagus (thoracic part), initial encounter|Unspecified injury of esophagus (thoracic part), initial encounter +C2836435|T037|AB|S27.819D|ICD10CM|Unspecified injury of esophagus (thoracic part), subs encntr|Unspecified injury of esophagus (thoracic part), subs encntr +C2836435|T037|PT|S27.819D|ICD10CM|Unspecified injury of esophagus (thoracic part), subsequent encounter|Unspecified injury of esophagus (thoracic part), subsequent encounter +C2836436|T037|PT|S27.819S|ICD10CM|Unspecified injury of esophagus (thoracic part), sequela|Unspecified injury of esophagus (thoracic part), sequela +C2836436|T037|AB|S27.819S|ICD10CM|Unspecified injury of esophagus (thoracic part), sequela|Unspecified injury of esophagus (thoracic part), sequela +C0840493|T037|ET|S27.89|ICD10CM|Injury of lymphatic thoracic duct|Injury of lymphatic thoracic duct +C0478246|T037|HT|S27.89|ICD10CM|Injury of other specified intrathoracic organs|Injury of other specified intrathoracic organs +C0478246|T037|AB|S27.89|ICD10CM|Injury of other specified intrathoracic organs|Injury of other specified intrathoracic organs +C0273123|T037|ET|S27.89|ICD10CM|Injury of thymus gland|Injury of thymus gland +C2836437|T037|AB|S27.892|ICD10CM|Contusion of other specified intrathoracic organs|Contusion of other specified intrathoracic organs +C2836437|T037|HT|S27.892|ICD10CM|Contusion of other specified intrathoracic organs|Contusion of other specified intrathoracic organs +C2836438|T037|AB|S27.892A|ICD10CM|Contusion of oth intrathoracic organs, init encntr|Contusion of oth intrathoracic organs, init encntr +C2836438|T037|PT|S27.892A|ICD10CM|Contusion of other specified intrathoracic organs, initial encounter|Contusion of other specified intrathoracic organs, initial encounter +C2836439|T037|AB|S27.892D|ICD10CM|Contusion of oth intrathoracic organs, subs encntr|Contusion of oth intrathoracic organs, subs encntr +C2836439|T037|PT|S27.892D|ICD10CM|Contusion of other specified intrathoracic organs, subsequent encounter|Contusion of other specified intrathoracic organs, subsequent encounter +C2836440|T037|PT|S27.892S|ICD10CM|Contusion of other specified intrathoracic organs, sequela|Contusion of other specified intrathoracic organs, sequela +C2836440|T037|AB|S27.892S|ICD10CM|Contusion of other specified intrathoracic organs, sequela|Contusion of other specified intrathoracic organs, sequela +C2836441|T037|AB|S27.893|ICD10CM|Laceration of other specified intrathoracic organs|Laceration of other specified intrathoracic organs +C2836441|T037|HT|S27.893|ICD10CM|Laceration of other specified intrathoracic organs|Laceration of other specified intrathoracic organs +C2836442|T037|AB|S27.893A|ICD10CM|Laceration of oth intrathoracic organs, init encntr|Laceration of oth intrathoracic organs, init encntr +C2836442|T037|PT|S27.893A|ICD10CM|Laceration of other specified intrathoracic organs, initial encounter|Laceration of other specified intrathoracic organs, initial encounter +C2836443|T037|AB|S27.893D|ICD10CM|Laceration of oth intrathoracic organs, subs encntr|Laceration of oth intrathoracic organs, subs encntr +C2836443|T037|PT|S27.893D|ICD10CM|Laceration of other specified intrathoracic organs, subsequent encounter|Laceration of other specified intrathoracic organs, subsequent encounter +C2836444|T037|PT|S27.893S|ICD10CM|Laceration of other specified intrathoracic organs, sequela|Laceration of other specified intrathoracic organs, sequela +C2836444|T037|AB|S27.893S|ICD10CM|Laceration of other specified intrathoracic organs, sequela|Laceration of other specified intrathoracic organs, sequela +C2836445|T037|AB|S27.898|ICD10CM|Other injury of other specified intrathoracic organs|Other injury of other specified intrathoracic organs +C2836445|T037|HT|S27.898|ICD10CM|Other injury of other specified intrathoracic organs|Other injury of other specified intrathoracic organs +C2836446|T037|AB|S27.898A|ICD10CM|Other injury of oth intrathoracic organs, init encntr|Other injury of oth intrathoracic organs, init encntr +C2836446|T037|PT|S27.898A|ICD10CM|Other injury of other specified intrathoracic organs, initial encounter|Other injury of other specified intrathoracic organs, initial encounter +C2836447|T037|AB|S27.898D|ICD10CM|Other injury of oth intrathoracic organs, subs encntr|Other injury of oth intrathoracic organs, subs encntr +C2836447|T037|PT|S27.898D|ICD10CM|Other injury of other specified intrathoracic organs, subsequent encounter|Other injury of other specified intrathoracic organs, subsequent encounter +C2836448|T037|AB|S27.898S|ICD10CM|Other injury of oth intrathoracic organs, sequela|Other injury of oth intrathoracic organs, sequela +C2836448|T037|PT|S27.898S|ICD10CM|Other injury of other specified intrathoracic organs, sequela|Other injury of other specified intrathoracic organs, sequela +C2836449|T037|AB|S27.899|ICD10CM|Unspecified injury of other specified intrathoracic organs|Unspecified injury of other specified intrathoracic organs +C2836449|T037|HT|S27.899|ICD10CM|Unspecified injury of other specified intrathoracic organs|Unspecified injury of other specified intrathoracic organs +C2836450|T037|AB|S27.899A|ICD10CM|Unspecified injury of oth intrathoracic organs, init encntr|Unspecified injury of oth intrathoracic organs, init encntr +C2836450|T037|PT|S27.899A|ICD10CM|Unspecified injury of other specified intrathoracic organs, initial encounter|Unspecified injury of other specified intrathoracic organs, initial encounter +C2836451|T037|AB|S27.899D|ICD10CM|Unspecified injury of oth intrathoracic organs, subs encntr|Unspecified injury of oth intrathoracic organs, subs encntr +C2836451|T037|PT|S27.899D|ICD10CM|Unspecified injury of other specified intrathoracic organs, subsequent encounter|Unspecified injury of other specified intrathoracic organs, subsequent encounter +C2836452|T037|AB|S27.899S|ICD10CM|Unspecified injury of oth intrathoracic organs, sequela|Unspecified injury of oth intrathoracic organs, sequela +C2836452|T037|PT|S27.899S|ICD10CM|Unspecified injury of other specified intrathoracic organs, sequela|Unspecified injury of other specified intrathoracic organs, sequela +C0478247|T037|PT|S27.9|ICD10|Injury of unspecified intrathoracic organ|Injury of unspecified intrathoracic organ +C0478247|T037|HT|S27.9|ICD10CM|Injury of unspecified intrathoracic organ|Injury of unspecified intrathoracic organ +C0478247|T037|AB|S27.9|ICD10CM|Injury of unspecified intrathoracic organ|Injury of unspecified intrathoracic organ +C2836453|T037|AB|S27.9XXA|ICD10CM|Injury of unspecified intrathoracic organ, initial encounter|Injury of unspecified intrathoracic organ, initial encounter +C2836453|T037|PT|S27.9XXA|ICD10CM|Injury of unspecified intrathoracic organ, initial encounter|Injury of unspecified intrathoracic organ, initial encounter +C2836454|T037|AB|S27.9XXD|ICD10CM|Injury of unspecified intrathoracic organ, subs encntr|Injury of unspecified intrathoracic organ, subs encntr +C2836454|T037|PT|S27.9XXD|ICD10CM|Injury of unspecified intrathoracic organ, subsequent encounter|Injury of unspecified intrathoracic organ, subsequent encounter +C2836455|T037|AB|S27.9XXS|ICD10CM|Injury of unspecified intrathoracic organ, sequela|Injury of unspecified intrathoracic organ, sequela +C2836455|T037|PT|S27.9XXS|ICD10CM|Injury of unspecified intrathoracic organ, sequela|Injury of unspecified intrathoracic organ, sequela +C0495835|T037|AB|S28|ICD10CM|Crushing inj thorax, and traumatic amp of part of thorax|Crushing inj thorax, and traumatic amp of part of thorax +C0495835|T037|HT|S28|ICD10|Crushing injury of thorax and traumatic amputation of part of thorax|Crushing injury of thorax and traumatic amputation of part of thorax +C0495835|T037|HT|S28|ICD10CM|Crushing injury of thorax, and traumatic amputation of part of thorax|Crushing injury of thorax, and traumatic amputation of part of thorax +C0433071|T037|PT|S28.0|ICD10|Crushed chest|Crushed chest +C0433071|T037|HT|S28.0|ICD10CM|Crushed chest|Crushed chest +C0433071|T037|AB|S28.0|ICD10CM|Crushed chest|Crushed chest +C2836456|T037|AB|S28.0XXA|ICD10CM|Crushed chest, initial encounter|Crushed chest, initial encounter +C2836456|T037|PT|S28.0XXA|ICD10CM|Crushed chest, initial encounter|Crushed chest, initial encounter +C2836457|T037|AB|S28.0XXD|ICD10CM|Crushed chest, subsequent encounter|Crushed chest, subsequent encounter +C2836457|T037|PT|S28.0XXD|ICD10CM|Crushed chest, subsequent encounter|Crushed chest, subsequent encounter +C2836458|T037|PT|S28.0XXS|ICD10CM|Crushed chest, sequela|Crushed chest, sequela +C2836458|T037|AB|S28.0XXS|ICD10CM|Crushed chest, sequela|Crushed chest, sequela +C2836459|T037|AB|S28.1|ICD10CM|Traumatic amp (partial) of part of thorax, except breast|Traumatic amp (partial) of part of thorax, except breast +C2836459|T037|HT|S28.1|ICD10CM|Traumatic amputation (partial) of part of thorax, except breast|Traumatic amputation (partial) of part of thorax, except breast +C0452039|T037|PT|S28.1|ICD10|Traumatic amputation of part of thorax|Traumatic amputation of part of thorax +C2836460|T037|AB|S28.1XXA|ICD10CM|Traumatic amp of part of thorax, except breast, init|Traumatic amp of part of thorax, except breast, init +C2836460|T037|PT|S28.1XXA|ICD10CM|Traumatic amputation (partial) of part of thorax, except breast, initial encounter|Traumatic amputation (partial) of part of thorax, except breast, initial encounter +C2836461|T037|AB|S28.1XXD|ICD10CM|Traumatic amp of part of thorax, except breast, subs|Traumatic amp of part of thorax, except breast, subs +C2836461|T037|PT|S28.1XXD|ICD10CM|Traumatic amputation (partial) of part of thorax, except breast, subsequent encounter|Traumatic amputation (partial) of part of thorax, except breast, subsequent encounter +C2836462|T037|AB|S28.1XXS|ICD10CM|Traumatic amp of part of thorax, except breast, sequela|Traumatic amp of part of thorax, except breast, sequela +C2836462|T037|PT|S28.1XXS|ICD10CM|Traumatic amputation (partial) of part of thorax, except breast, sequela|Traumatic amputation (partial) of part of thorax, except breast, sequela +C2836463|T037|HT|S28.2|ICD10CM|Traumatic amputation of breast|Traumatic amputation of breast +C2836463|T037|AB|S28.2|ICD10CM|Traumatic amputation of breast|Traumatic amputation of breast +C2836464|T037|HT|S28.21|ICD10CM|Complete traumatic amputation of breast|Complete traumatic amputation of breast +C2836464|T037|AB|S28.21|ICD10CM|Complete traumatic amputation of breast|Complete traumatic amputation of breast +C2836463|T037|ET|S28.21|ICD10CM|Traumatic amputation of breast NOS|Traumatic amputation of breast NOS +C2836465|T037|HT|S28.211|ICD10CM|Complete traumatic amputation of right breast|Complete traumatic amputation of right breast +C2836465|T037|AB|S28.211|ICD10CM|Complete traumatic amputation of right breast|Complete traumatic amputation of right breast +C2836466|T037|AB|S28.211A|ICD10CM|Complete traumatic amputation of right breast, init encntr|Complete traumatic amputation of right breast, init encntr +C2836466|T037|PT|S28.211A|ICD10CM|Complete traumatic amputation of right breast, initial encounter|Complete traumatic amputation of right breast, initial encounter +C2836467|T037|AB|S28.211D|ICD10CM|Complete traumatic amputation of right breast, subs encntr|Complete traumatic amputation of right breast, subs encntr +C2836467|T037|PT|S28.211D|ICD10CM|Complete traumatic amputation of right breast, subsequent encounter|Complete traumatic amputation of right breast, subsequent encounter +C2836468|T037|PT|S28.211S|ICD10CM|Complete traumatic amputation of right breast, sequela|Complete traumatic amputation of right breast, sequela +C2836468|T037|AB|S28.211S|ICD10CM|Complete traumatic amputation of right breast, sequela|Complete traumatic amputation of right breast, sequela +C2836469|T037|HT|S28.212|ICD10CM|Complete traumatic amputation of left breast|Complete traumatic amputation of left breast +C2836469|T037|AB|S28.212|ICD10CM|Complete traumatic amputation of left breast|Complete traumatic amputation of left breast +C2836470|T037|AB|S28.212A|ICD10CM|Complete traumatic amputation of left breast, init encntr|Complete traumatic amputation of left breast, init encntr +C2836470|T037|PT|S28.212A|ICD10CM|Complete traumatic amputation of left breast, initial encounter|Complete traumatic amputation of left breast, initial encounter +C2836471|T037|AB|S28.212D|ICD10CM|Complete traumatic amputation of left breast, subs encntr|Complete traumatic amputation of left breast, subs encntr +C2836471|T037|PT|S28.212D|ICD10CM|Complete traumatic amputation of left breast, subsequent encounter|Complete traumatic amputation of left breast, subsequent encounter +C2836472|T037|PT|S28.212S|ICD10CM|Complete traumatic amputation of left breast, sequela|Complete traumatic amputation of left breast, sequela +C2836472|T037|AB|S28.212S|ICD10CM|Complete traumatic amputation of left breast, sequela|Complete traumatic amputation of left breast, sequela +C2836473|T037|AB|S28.219|ICD10CM|Complete traumatic amputation of unspecified breast|Complete traumatic amputation of unspecified breast +C2836473|T037|HT|S28.219|ICD10CM|Complete traumatic amputation of unspecified breast|Complete traumatic amputation of unspecified breast +C2836474|T037|AB|S28.219A|ICD10CM|Complete traumatic amputation of unsp breast, init encntr|Complete traumatic amputation of unsp breast, init encntr +C2836474|T037|PT|S28.219A|ICD10CM|Complete traumatic amputation of unspecified breast, initial encounter|Complete traumatic amputation of unspecified breast, initial encounter +C2836475|T037|AB|S28.219D|ICD10CM|Complete traumatic amputation of unsp breast, subs encntr|Complete traumatic amputation of unsp breast, subs encntr +C2836475|T037|PT|S28.219D|ICD10CM|Complete traumatic amputation of unspecified breast, subsequent encounter|Complete traumatic amputation of unspecified breast, subsequent encounter +C2836476|T037|AB|S28.219S|ICD10CM|Complete traumatic amputation of unspecified breast, sequela|Complete traumatic amputation of unspecified breast, sequela +C2836476|T037|PT|S28.219S|ICD10CM|Complete traumatic amputation of unspecified breast, sequela|Complete traumatic amputation of unspecified breast, sequela +C2836477|T037|HT|S28.22|ICD10CM|Partial traumatic amputation of breast|Partial traumatic amputation of breast +C2836477|T037|AB|S28.22|ICD10CM|Partial traumatic amputation of breast|Partial traumatic amputation of breast +C2836478|T037|HT|S28.221|ICD10CM|Partial traumatic amputation of right breast|Partial traumatic amputation of right breast +C2836478|T037|AB|S28.221|ICD10CM|Partial traumatic amputation of right breast|Partial traumatic amputation of right breast +C2836479|T037|AB|S28.221A|ICD10CM|Partial traumatic amputation of right breast, init encntr|Partial traumatic amputation of right breast, init encntr +C2836479|T037|PT|S28.221A|ICD10CM|Partial traumatic amputation of right breast, initial encounter|Partial traumatic amputation of right breast, initial encounter +C2836480|T037|AB|S28.221D|ICD10CM|Partial traumatic amputation of right breast, subs encntr|Partial traumatic amputation of right breast, subs encntr +C2836480|T037|PT|S28.221D|ICD10CM|Partial traumatic amputation of right breast, subsequent encounter|Partial traumatic amputation of right breast, subsequent encounter +C2836481|T037|PT|S28.221S|ICD10CM|Partial traumatic amputation of right breast, sequela|Partial traumatic amputation of right breast, sequela +C2836481|T037|AB|S28.221S|ICD10CM|Partial traumatic amputation of right breast, sequela|Partial traumatic amputation of right breast, sequela +C2836482|T037|HT|S28.222|ICD10CM|Partial traumatic amputation of left breast|Partial traumatic amputation of left breast +C2836482|T037|AB|S28.222|ICD10CM|Partial traumatic amputation of left breast|Partial traumatic amputation of left breast +C2836483|T037|AB|S28.222A|ICD10CM|Partial traumatic amputation of left breast, init encntr|Partial traumatic amputation of left breast, init encntr +C2836483|T037|PT|S28.222A|ICD10CM|Partial traumatic amputation of left breast, initial encounter|Partial traumatic amputation of left breast, initial encounter +C2836484|T037|AB|S28.222D|ICD10CM|Partial traumatic amputation of left breast, subs encntr|Partial traumatic amputation of left breast, subs encntr +C2836484|T037|PT|S28.222D|ICD10CM|Partial traumatic amputation of left breast, subsequent encounter|Partial traumatic amputation of left breast, subsequent encounter +C2836485|T037|PT|S28.222S|ICD10CM|Partial traumatic amputation of left breast, sequela|Partial traumatic amputation of left breast, sequela +C2836485|T037|AB|S28.222S|ICD10CM|Partial traumatic amputation of left breast, sequela|Partial traumatic amputation of left breast, sequela +C2836486|T037|AB|S28.229|ICD10CM|Partial traumatic amputation of unspecified breast|Partial traumatic amputation of unspecified breast +C2836486|T037|HT|S28.229|ICD10CM|Partial traumatic amputation of unspecified breast|Partial traumatic amputation of unspecified breast +C2836487|T037|AB|S28.229A|ICD10CM|Partial traumatic amputation of unsp breast, init encntr|Partial traumatic amputation of unsp breast, init encntr +C2836487|T037|PT|S28.229A|ICD10CM|Partial traumatic amputation of unspecified breast, initial encounter|Partial traumatic amputation of unspecified breast, initial encounter +C2836488|T037|AB|S28.229D|ICD10CM|Partial traumatic amputation of unsp breast, subs encntr|Partial traumatic amputation of unsp breast, subs encntr +C2836488|T037|PT|S28.229D|ICD10CM|Partial traumatic amputation of unspecified breast, subsequent encounter|Partial traumatic amputation of unspecified breast, subsequent encounter +C2836489|T037|AB|S28.229S|ICD10CM|Partial traumatic amputation of unspecified breast, sequela|Partial traumatic amputation of unspecified breast, sequela +C2836489|T037|PT|S28.229S|ICD10CM|Partial traumatic amputation of unspecified breast, sequela|Partial traumatic amputation of unspecified breast, sequela +C0495836|T037|HT|S29|ICD10|Other and unspecified injuries of thorax|Other and unspecified injuries of thorax +C0495836|T037|AB|S29|ICD10CM|Other and unspecified injuries of thorax|Other and unspecified injuries of thorax +C0495836|T037|HT|S29|ICD10CM|Other and unspecified injuries of thorax|Other and unspecified injuries of thorax +C0451850|T037|PT|S29.0|ICD10|Injury of muscle and tendon at thorax level|Injury of muscle and tendon at thorax level +C0451850|T037|HT|S29.0|ICD10CM|Injury of muscle and tendon at thorax level|Injury of muscle and tendon at thorax level +C0451850|T037|AB|S29.0|ICD10CM|Injury of muscle and tendon at thorax level|Injury of muscle and tendon at thorax level +C2836490|T037|AB|S29.00|ICD10CM|Unspecified injury of muscle and tendon of thorax|Unspecified injury of muscle and tendon of thorax +C2836490|T037|HT|S29.00|ICD10CM|Unspecified injury of muscle and tendon of thorax|Unspecified injury of muscle and tendon of thorax +C2836491|T037|AB|S29.001|ICD10CM|Unsp injury of muscle and tendon of front wall of thorax|Unsp injury of muscle and tendon of front wall of thorax +C2836491|T037|HT|S29.001|ICD10CM|Unspecified injury of muscle and tendon of front wall of thorax|Unspecified injury of muscle and tendon of front wall of thorax +C2836492|T037|AB|S29.001A|ICD10CM|Unsp injury of msl/tnd of front wall of thorax, init|Unsp injury of msl/tnd of front wall of thorax, init +C2836492|T037|PT|S29.001A|ICD10CM|Unspecified injury of muscle and tendon of front wall of thorax, initial encounter|Unspecified injury of muscle and tendon of front wall of thorax, initial encounter +C2836493|T037|AB|S29.001D|ICD10CM|Unsp injury of msl/tnd of front wall of thorax, subs|Unsp injury of msl/tnd of front wall of thorax, subs +C2836493|T037|PT|S29.001D|ICD10CM|Unspecified injury of muscle and tendon of front wall of thorax, subsequent encounter|Unspecified injury of muscle and tendon of front wall of thorax, subsequent encounter +C2836494|T037|AB|S29.001S|ICD10CM|Unsp injury of msl/tnd of front wall of thorax, sequela|Unsp injury of msl/tnd of front wall of thorax, sequela +C2836494|T037|PT|S29.001S|ICD10CM|Unspecified injury of muscle and tendon of front wall of thorax, sequela|Unspecified injury of muscle and tendon of front wall of thorax, sequela +C2836495|T037|AB|S29.002|ICD10CM|Unsp injury of muscle and tendon of back wall of thorax|Unsp injury of muscle and tendon of back wall of thorax +C2836495|T037|HT|S29.002|ICD10CM|Unspecified injury of muscle and tendon of back wall of thorax|Unspecified injury of muscle and tendon of back wall of thorax +C2836496|T037|AB|S29.002A|ICD10CM|Unsp injury of msl/tnd of back wall of thorax, init|Unsp injury of msl/tnd of back wall of thorax, init +C2836496|T037|PT|S29.002A|ICD10CM|Unspecified injury of muscle and tendon of back wall of thorax, initial encounter|Unspecified injury of muscle and tendon of back wall of thorax, initial encounter +C2836497|T037|AB|S29.002D|ICD10CM|Unsp injury of msl/tnd of back wall of thorax, subs|Unsp injury of msl/tnd of back wall of thorax, subs +C2836497|T037|PT|S29.002D|ICD10CM|Unspecified injury of muscle and tendon of back wall of thorax, subsequent encounter|Unspecified injury of muscle and tendon of back wall of thorax, subsequent encounter +C2836498|T037|AB|S29.002S|ICD10CM|Unsp injury of msl/tnd of back wall of thorax, sequela|Unsp injury of msl/tnd of back wall of thorax, sequela +C2836498|T037|PT|S29.002S|ICD10CM|Unspecified injury of muscle and tendon of back wall of thorax, sequela|Unspecified injury of muscle and tendon of back wall of thorax, sequela +C2836499|T037|AB|S29.009|ICD10CM|Unsp injury of muscle and tendon of unsp wall of thorax|Unsp injury of muscle and tendon of unsp wall of thorax +C2836499|T037|HT|S29.009|ICD10CM|Unspecified injury of muscle and tendon of unspecified wall of thorax|Unspecified injury of muscle and tendon of unspecified wall of thorax +C2836500|T037|AB|S29.009A|ICD10CM|Unsp injury of msl/tnd of unsp wall of thorax, init|Unsp injury of msl/tnd of unsp wall of thorax, init +C2836500|T037|PT|S29.009A|ICD10CM|Unspecified injury of muscle and tendon of unspecified wall of thorax, initial encounter|Unspecified injury of muscle and tendon of unspecified wall of thorax, initial encounter +C2836501|T037|AB|S29.009D|ICD10CM|Unsp injury of msl/tnd of unsp wall of thorax, subs|Unsp injury of msl/tnd of unsp wall of thorax, subs +C2836501|T037|PT|S29.009D|ICD10CM|Unspecified injury of muscle and tendon of unspecified wall of thorax, subsequent encounter|Unspecified injury of muscle and tendon of unspecified wall of thorax, subsequent encounter +C2836502|T037|AB|S29.009S|ICD10CM|Unsp injury of msl/tnd of unsp wall of thorax, sequela|Unsp injury of msl/tnd of unsp wall of thorax, sequela +C2836502|T037|PT|S29.009S|ICD10CM|Unspecified injury of muscle and tendon of unspecified wall of thorax, sequela|Unspecified injury of muscle and tendon of unspecified wall of thorax, sequela +C2836503|T037|AB|S29.01|ICD10CM|Strain of muscle and tendon of thorax|Strain of muscle and tendon of thorax +C2836503|T037|HT|S29.01|ICD10CM|Strain of muscle and tendon of thorax|Strain of muscle and tendon of thorax +C2836504|T037|AB|S29.011|ICD10CM|Strain of muscle and tendon of front wall of thorax|Strain of muscle and tendon of front wall of thorax +C2836504|T037|HT|S29.011|ICD10CM|Strain of muscle and tendon of front wall of thorax|Strain of muscle and tendon of front wall of thorax +C2836505|T037|AB|S29.011A|ICD10CM|Strain of muscle and tendon of front wall of thorax, init|Strain of muscle and tendon of front wall of thorax, init +C2836505|T037|PT|S29.011A|ICD10CM|Strain of muscle and tendon of front wall of thorax, initial encounter|Strain of muscle and tendon of front wall of thorax, initial encounter +C2836506|T037|AB|S29.011D|ICD10CM|Strain of muscle and tendon of front wall of thorax, subs|Strain of muscle and tendon of front wall of thorax, subs +C2836506|T037|PT|S29.011D|ICD10CM|Strain of muscle and tendon of front wall of thorax, subsequent encounter|Strain of muscle and tendon of front wall of thorax, subsequent encounter +C2836507|T037|AB|S29.011S|ICD10CM|Strain of muscle and tendon of front wall of thorax, sequela|Strain of muscle and tendon of front wall of thorax, sequela +C2836507|T037|PT|S29.011S|ICD10CM|Strain of muscle and tendon of front wall of thorax, sequela|Strain of muscle and tendon of front wall of thorax, sequela +C2836508|T037|AB|S29.012|ICD10CM|Strain of muscle and tendon of back wall of thorax|Strain of muscle and tendon of back wall of thorax +C2836508|T037|HT|S29.012|ICD10CM|Strain of muscle and tendon of back wall of thorax|Strain of muscle and tendon of back wall of thorax +C2836509|T037|AB|S29.012A|ICD10CM|Strain of muscle and tendon of back wall of thorax, init|Strain of muscle and tendon of back wall of thorax, init +C2836509|T037|PT|S29.012A|ICD10CM|Strain of muscle and tendon of back wall of thorax, initial encounter|Strain of muscle and tendon of back wall of thorax, initial encounter +C2836510|T037|AB|S29.012D|ICD10CM|Strain of muscle and tendon of back wall of thorax, subs|Strain of muscle and tendon of back wall of thorax, subs +C2836510|T037|PT|S29.012D|ICD10CM|Strain of muscle and tendon of back wall of thorax, subsequent encounter|Strain of muscle and tendon of back wall of thorax, subsequent encounter +C2836511|T037|PT|S29.012S|ICD10CM|Strain of muscle and tendon of back wall of thorax, sequela|Strain of muscle and tendon of back wall of thorax, sequela +C2836511|T037|AB|S29.012S|ICD10CM|Strain of muscle and tendon of back wall of thorax, sequela|Strain of muscle and tendon of back wall of thorax, sequela +C2836512|T037|AB|S29.019|ICD10CM|Strain of muscle and tendon of unspecified wall of thorax|Strain of muscle and tendon of unspecified wall of thorax +C2836512|T037|HT|S29.019|ICD10CM|Strain of muscle and tendon of unspecified wall of thorax|Strain of muscle and tendon of unspecified wall of thorax +C2836513|T037|AB|S29.019A|ICD10CM|Strain of muscle and tendon of unsp wall of thorax, init|Strain of muscle and tendon of unsp wall of thorax, init +C2836513|T037|PT|S29.019A|ICD10CM|Strain of muscle and tendon of unspecified wall of thorax, initial encounter|Strain of muscle and tendon of unspecified wall of thorax, initial encounter +C2836514|T037|AB|S29.019D|ICD10CM|Strain of muscle and tendon of unsp wall of thorax, subs|Strain of muscle and tendon of unsp wall of thorax, subs +C2836514|T037|PT|S29.019D|ICD10CM|Strain of muscle and tendon of unspecified wall of thorax, subsequent encounter|Strain of muscle and tendon of unspecified wall of thorax, subsequent encounter +C2836515|T037|AB|S29.019S|ICD10CM|Strain of muscle and tendon of unsp wall of thorax, sequela|Strain of muscle and tendon of unsp wall of thorax, sequela +C2836515|T037|PT|S29.019S|ICD10CM|Strain of muscle and tendon of unspecified wall of thorax, sequela|Strain of muscle and tendon of unspecified wall of thorax, sequela +C2836516|T037|HT|S29.02|ICD10CM|Laceration of muscle and tendon of thorax|Laceration of muscle and tendon of thorax +C2836516|T037|AB|S29.02|ICD10CM|Laceration of muscle and tendon of thorax|Laceration of muscle and tendon of thorax +C2836517|T037|AB|S29.021|ICD10CM|Laceration of muscle and tendon of front wall of thorax|Laceration of muscle and tendon of front wall of thorax +C2836517|T037|HT|S29.021|ICD10CM|Laceration of muscle and tendon of front wall of thorax|Laceration of muscle and tendon of front wall of thorax +C2836518|T037|AB|S29.021A|ICD10CM|Laceration of msl/tnd of front wall of thorax, init|Laceration of msl/tnd of front wall of thorax, init +C2836518|T037|PT|S29.021A|ICD10CM|Laceration of muscle and tendon of front wall of thorax, initial encounter|Laceration of muscle and tendon of front wall of thorax, initial encounter +C2836519|T037|AB|S29.021D|ICD10CM|Laceration of msl/tnd of front wall of thorax, subs|Laceration of msl/tnd of front wall of thorax, subs +C2836519|T037|PT|S29.021D|ICD10CM|Laceration of muscle and tendon of front wall of thorax, subsequent encounter|Laceration of muscle and tendon of front wall of thorax, subsequent encounter +C2836520|T037|AB|S29.021S|ICD10CM|Laceration of msl/tnd of front wall of thorax, sequela|Laceration of msl/tnd of front wall of thorax, sequela +C2836520|T037|PT|S29.021S|ICD10CM|Laceration of muscle and tendon of front wall of thorax, sequela|Laceration of muscle and tendon of front wall of thorax, sequela +C2836521|T037|AB|S29.022|ICD10CM|Laceration of muscle and tendon of back wall of thorax|Laceration of muscle and tendon of back wall of thorax +C2836521|T037|HT|S29.022|ICD10CM|Laceration of muscle and tendon of back wall of thorax|Laceration of muscle and tendon of back wall of thorax +C2836522|T037|AB|S29.022A|ICD10CM|Laceration of muscle and tendon of back wall of thorax, init|Laceration of muscle and tendon of back wall of thorax, init +C2836522|T037|PT|S29.022A|ICD10CM|Laceration of muscle and tendon of back wall of thorax, initial encounter|Laceration of muscle and tendon of back wall of thorax, initial encounter +C2836523|T037|AB|S29.022D|ICD10CM|Laceration of muscle and tendon of back wall of thorax, subs|Laceration of muscle and tendon of back wall of thorax, subs +C2836523|T037|PT|S29.022D|ICD10CM|Laceration of muscle and tendon of back wall of thorax, subsequent encounter|Laceration of muscle and tendon of back wall of thorax, subsequent encounter +C2836524|T037|AB|S29.022S|ICD10CM|Laceration of msl/tnd of back wall of thorax, sequela|Laceration of msl/tnd of back wall of thorax, sequela +C2836524|T037|PT|S29.022S|ICD10CM|Laceration of muscle and tendon of back wall of thorax, sequela|Laceration of muscle and tendon of back wall of thorax, sequela +C2836525|T037|AB|S29.029|ICD10CM|Laceration of muscle and tendon of unsp wall of thorax|Laceration of muscle and tendon of unsp wall of thorax +C2836525|T037|HT|S29.029|ICD10CM|Laceration of muscle and tendon of unspecified wall of thorax|Laceration of muscle and tendon of unspecified wall of thorax +C2836526|T037|AB|S29.029A|ICD10CM|Laceration of muscle and tendon of unsp wall of thorax, init|Laceration of muscle and tendon of unsp wall of thorax, init +C2836526|T037|PT|S29.029A|ICD10CM|Laceration of muscle and tendon of unspecified wall of thorax, initial encounter|Laceration of muscle and tendon of unspecified wall of thorax, initial encounter +C2836527|T037|AB|S29.029D|ICD10CM|Laceration of muscle and tendon of unsp wall of thorax, subs|Laceration of muscle and tendon of unsp wall of thorax, subs +C2836527|T037|PT|S29.029D|ICD10CM|Laceration of muscle and tendon of unspecified wall of thorax, subsequent encounter|Laceration of muscle and tendon of unspecified wall of thorax, subsequent encounter +C2836528|T037|AB|S29.029S|ICD10CM|Laceration of msl/tnd of unsp wall of thorax, sequela|Laceration of msl/tnd of unsp wall of thorax, sequela +C2836528|T037|PT|S29.029S|ICD10CM|Laceration of muscle and tendon of unspecified wall of thorax, sequela|Laceration of muscle and tendon of unspecified wall of thorax, sequela +C2836529|T037|AB|S29.09|ICD10CM|Other injury of muscle and tendon of thorax|Other injury of muscle and tendon of thorax +C2836529|T037|HT|S29.09|ICD10CM|Other injury of muscle and tendon of thorax|Other injury of muscle and tendon of thorax +C2836530|T037|AB|S29.091|ICD10CM|Other injury of muscle and tendon of front wall of thorax|Other injury of muscle and tendon of front wall of thorax +C2836530|T037|HT|S29.091|ICD10CM|Other injury of muscle and tendon of front wall of thorax|Other injury of muscle and tendon of front wall of thorax +C2836531|T037|AB|S29.091A|ICD10CM|Inj muscle and tendon of front wall of thorax, init encntr|Inj muscle and tendon of front wall of thorax, init encntr +C2836531|T037|PT|S29.091A|ICD10CM|Other injury of muscle and tendon of front wall of thorax, initial encounter|Other injury of muscle and tendon of front wall of thorax, initial encounter +C2836532|T037|AB|S29.091D|ICD10CM|Inj muscle and tendon of front wall of thorax, subs encntr|Inj muscle and tendon of front wall of thorax, subs encntr +C2836532|T037|PT|S29.091D|ICD10CM|Other injury of muscle and tendon of front wall of thorax, subsequent encounter|Other injury of muscle and tendon of front wall of thorax, subsequent encounter +C2836533|T037|AB|S29.091S|ICD10CM|Inj muscle and tendon of front wall of thorax, sequela|Inj muscle and tendon of front wall of thorax, sequela +C2836533|T037|PT|S29.091S|ICD10CM|Other injury of muscle and tendon of front wall of thorax, sequela|Other injury of muscle and tendon of front wall of thorax, sequela +C2836534|T037|AB|S29.092|ICD10CM|Other injury of muscle and tendon of back wall of thorax|Other injury of muscle and tendon of back wall of thorax +C2836534|T037|HT|S29.092|ICD10CM|Other injury of muscle and tendon of back wall of thorax|Other injury of muscle and tendon of back wall of thorax +C2836535|T037|AB|S29.092A|ICD10CM|Inj muscle and tendon of back wall of thorax, init encntr|Inj muscle and tendon of back wall of thorax, init encntr +C2836535|T037|PT|S29.092A|ICD10CM|Other injury of muscle and tendon of back wall of thorax, initial encounter|Other injury of muscle and tendon of back wall of thorax, initial encounter +C2836536|T037|AB|S29.092D|ICD10CM|Inj muscle and tendon of back wall of thorax, subs encntr|Inj muscle and tendon of back wall of thorax, subs encntr +C2836536|T037|PT|S29.092D|ICD10CM|Other injury of muscle and tendon of back wall of thorax, subsequent encounter|Other injury of muscle and tendon of back wall of thorax, subsequent encounter +C2836537|T037|AB|S29.092S|ICD10CM|Inj muscle and tendon of back wall of thorax, sequela|Inj muscle and tendon of back wall of thorax, sequela +C2836537|T037|PT|S29.092S|ICD10CM|Other injury of muscle and tendon of back wall of thorax, sequela|Other injury of muscle and tendon of back wall of thorax, sequela +C2836538|T037|AB|S29.099|ICD10CM|Other injury of muscle and tendon of unsp wall of thorax|Other injury of muscle and tendon of unsp wall of thorax +C2836538|T037|HT|S29.099|ICD10CM|Other injury of muscle and tendon of unspecified wall of thorax|Other injury of muscle and tendon of unspecified wall of thorax +C2836539|T037|AB|S29.099A|ICD10CM|Inj muscle and tendon of unsp wall of thorax, init encntr|Inj muscle and tendon of unsp wall of thorax, init encntr +C2836539|T037|PT|S29.099A|ICD10CM|Other injury of muscle and tendon of unspecified wall of thorax, initial encounter|Other injury of muscle and tendon of unspecified wall of thorax, initial encounter +C2836540|T037|AB|S29.099D|ICD10CM|Inj muscle and tendon of unsp wall of thorax, subs encntr|Inj muscle and tendon of unsp wall of thorax, subs encntr +C2836540|T037|PT|S29.099D|ICD10CM|Other injury of muscle and tendon of unspecified wall of thorax, subsequent encounter|Other injury of muscle and tendon of unspecified wall of thorax, subsequent encounter +C2836541|T037|AB|S29.099S|ICD10CM|Inj muscle and tendon of unsp wall of thorax, sequela|Inj muscle and tendon of unsp wall of thorax, sequela +C2836541|T037|PT|S29.099S|ICD10CM|Other injury of muscle and tendon of unspecified wall of thorax, sequela|Other injury of muscle and tendon of unspecified wall of thorax, sequela +C0451953|T037|PT|S29.7|ICD10|Multiple injuries of thorax|Multiple injuries of thorax +C0478248|T037|PT|S29.8|ICD10|Other specified injuries of thorax|Other specified injuries of thorax +C0478248|T037|HT|S29.8|ICD10CM|Other specified injuries of thorax|Other specified injuries of thorax +C0478248|T037|AB|S29.8|ICD10CM|Other specified injuries of thorax|Other specified injuries of thorax +C2836542|T037|AB|S29.8XXA|ICD10CM|Other specified injuries of thorax, initial encounter|Other specified injuries of thorax, initial encounter +C2836542|T037|PT|S29.8XXA|ICD10CM|Other specified injuries of thorax, initial encounter|Other specified injuries of thorax, initial encounter +C2836543|T037|AB|S29.8XXD|ICD10CM|Other specified injuries of thorax, subsequent encounter|Other specified injuries of thorax, subsequent encounter +C2836543|T037|PT|S29.8XXD|ICD10CM|Other specified injuries of thorax, subsequent encounter|Other specified injuries of thorax, subsequent encounter +C2836544|T037|AB|S29.8XXS|ICD10CM|Other specified injuries of thorax, sequela|Other specified injuries of thorax, sequela +C2836544|T037|PT|S29.8XXS|ICD10CM|Other specified injuries of thorax, sequela|Other specified injuries of thorax, sequela +C0039980|T037|HT|S29.9|ICD10CM|Unspecified injury of thorax|Unspecified injury of thorax +C0039980|T037|AB|S29.9|ICD10CM|Unspecified injury of thorax|Unspecified injury of thorax +C0039980|T037|PT|S29.9|ICD10|Unspecified injury of thorax|Unspecified injury of thorax +C2836545|T037|AB|S29.9XXA|ICD10CM|Unspecified injury of thorax, initial encounter|Unspecified injury of thorax, initial encounter +C2836545|T037|PT|S29.9XXA|ICD10CM|Unspecified injury of thorax, initial encounter|Unspecified injury of thorax, initial encounter +C2836546|T037|AB|S29.9XXD|ICD10CM|Unspecified injury of thorax, subsequent encounter|Unspecified injury of thorax, subsequent encounter +C2836546|T037|PT|S29.9XXD|ICD10CM|Unspecified injury of thorax, subsequent encounter|Unspecified injury of thorax, subsequent encounter +C2836547|T037|AB|S29.9XXS|ICD10CM|Unspecified injury of thorax, sequela|Unspecified injury of thorax, sequela +C2836547|T037|PT|S29.9XXS|ICD10CM|Unspecified injury of thorax, sequela|Unspecified injury of thorax, sequela +C2836767|T037|AB|S30|ICD10CM|Superfic inj abdomen, low back, pelvis and external genitals|Superfic inj abdomen, low back, pelvis and external genitals +C0478251|T037|HT|S30|ICD10|Superficial injury of abdomen, lower back and pelvis|Superficial injury of abdomen, lower back and pelvis +C2836767|T037|HT|S30|ICD10CM|Superficial injury of abdomen, lower back, pelvis and external genitals|Superficial injury of abdomen, lower back, pelvis and external genitals +C2836548|T037|HT|S30-S39|ICD10CM|Injuries to the abdomen, lower back, lumbar spine, pelvis and external genitals (S30-S39)|Injuries to the abdomen, lower back, lumbar spine, pelvis and external genitals (S30-S39) +C0272430|T037|ET|S30-S39|ICD10CM|injuries to the abdominal wall|injuries to the abdominal wall +C2226910|T037|ET|S30-S39|ICD10CM|injuries to the anus|injuries to the anus +C0272431|T037|ET|S30-S39|ICD10CM|injuries to the buttock|injuries to the buttock +C2077189|T037|ET|S30-S39|ICD10CM|injuries to the external genitalia|injuries to the external genitalia +C0272437|T037|ET|S30-S39|ICD10CM|injuries to the flank|injuries to the flank +C0272438|T037|ET|S30-S39|ICD10CM|injuries to the groin|injuries to the groin +C0478249|T037|HT|S30-S39.9|ICD10|Injuries to the abdomen, lower back, lumbar spine and pelvis|Injuries to the abdomen, lower back, lumbar spine and pelvis +C0274220|T037|ET|S30.0|ICD10CM|Contusion of buttock|Contusion of buttock +C0495838|T037|PT|S30.0|ICD10|Contusion of lower back and pelvis|Contusion of lower back and pelvis +C0495838|T037|HT|S30.0|ICD10CM|Contusion of lower back and pelvis|Contusion of lower back and pelvis +C0495838|T037|AB|S30.0|ICD10CM|Contusion of lower back and pelvis|Contusion of lower back and pelvis +C2836549|T037|PT|S30.0XXA|ICD10CM|Contusion of lower back and pelvis, initial encounter|Contusion of lower back and pelvis, initial encounter +C2836549|T037|AB|S30.0XXA|ICD10CM|Contusion of lower back and pelvis, initial encounter|Contusion of lower back and pelvis, initial encounter +C2836550|T037|PT|S30.0XXD|ICD10CM|Contusion of lower back and pelvis, subsequent encounter|Contusion of lower back and pelvis, subsequent encounter +C2836550|T037|AB|S30.0XXD|ICD10CM|Contusion of lower back and pelvis, subsequent encounter|Contusion of lower back and pelvis, subsequent encounter +C2836551|T037|PT|S30.0XXS|ICD10CM|Contusion of lower back and pelvis, sequela|Contusion of lower back and pelvis, sequela +C2836551|T037|AB|S30.0XXS|ICD10CM|Contusion of lower back and pelvis, sequela|Contusion of lower back and pelvis, sequela +C0160926|T037|HT|S30.1|ICD10CM|Contusion of abdominal wall|Contusion of abdominal wall +C0160926|T037|AB|S30.1|ICD10CM|Contusion of abdominal wall|Contusion of abdominal wall +C0160926|T037|PT|S30.1|ICD10|Contusion of abdominal wall|Contusion of abdominal wall +C0274218|T037|ET|S30.1|ICD10CM|Contusion of flank|Contusion of flank +C0274219|T037|ET|S30.1|ICD10CM|Contusion of groin|Contusion of groin +C2836552|T037|PT|S30.1XXA|ICD10CM|Contusion of abdominal wall, initial encounter|Contusion of abdominal wall, initial encounter +C2836552|T037|AB|S30.1XXA|ICD10CM|Contusion of abdominal wall, initial encounter|Contusion of abdominal wall, initial encounter +C2836553|T037|PT|S30.1XXD|ICD10CM|Contusion of abdominal wall, subsequent encounter|Contusion of abdominal wall, subsequent encounter +C2836553|T037|AB|S30.1XXD|ICD10CM|Contusion of abdominal wall, subsequent encounter|Contusion of abdominal wall, subsequent encounter +C2836554|T037|PT|S30.1XXS|ICD10CM|Contusion of abdominal wall, sequela|Contusion of abdominal wall, sequela +C2836554|T037|AB|S30.1XXS|ICD10CM|Contusion of abdominal wall, sequela|Contusion of abdominal wall, sequela +C0160928|T037|PT|S30.2|ICD10|Contusion of external genital organs|Contusion of external genital organs +C0160928|T037|HT|S30.2|ICD10CM|Contusion of external genital organs|Contusion of external genital organs +C0160928|T037|AB|S30.2|ICD10CM|Contusion of external genital organs|Contusion of external genital organs +C2836555|T037|AB|S30.20|ICD10CM|Contusion of unspecified external genital organ|Contusion of unspecified external genital organ +C2836555|T037|HT|S30.20|ICD10CM|Contusion of unspecified external genital organ|Contusion of unspecified external genital organ +C2836556|T037|AB|S30.201|ICD10CM|Contusion of unspecified external genital organ, male|Contusion of unspecified external genital organ, male +C2836556|T037|HT|S30.201|ICD10CM|Contusion of unspecified external genital organ, male|Contusion of unspecified external genital organ, male +C2836557|T037|AB|S30.201A|ICD10CM|Contusion of unsp external genital organ, male, init encntr|Contusion of unsp external genital organ, male, init encntr +C2836557|T037|PT|S30.201A|ICD10CM|Contusion of unspecified external genital organ, male, initial encounter|Contusion of unspecified external genital organ, male, initial encounter +C2836558|T037|AB|S30.201D|ICD10CM|Contusion of unsp external genital organ, male, subs encntr|Contusion of unsp external genital organ, male, subs encntr +C2836558|T037|PT|S30.201D|ICD10CM|Contusion of unspecified external genital organ, male, subsequent encounter|Contusion of unspecified external genital organ, male, subsequent encounter +C2836559|T037|AB|S30.201S|ICD10CM|Contusion of unsp external genital organ, male, sequela|Contusion of unsp external genital organ, male, sequela +C2836559|T037|PT|S30.201S|ICD10CM|Contusion of unspecified external genital organ, male, sequela|Contusion of unspecified external genital organ, male, sequela +C2836560|T037|AB|S30.202|ICD10CM|Contusion of unspecified external genital organ, female|Contusion of unspecified external genital organ, female +C2836560|T037|HT|S30.202|ICD10CM|Contusion of unspecified external genital organ, female|Contusion of unspecified external genital organ, female +C2836561|T037|AB|S30.202A|ICD10CM|Contusion of unsp external genital organ, female, init|Contusion of unsp external genital organ, female, init +C2836561|T037|PT|S30.202A|ICD10CM|Contusion of unspecified external genital organ, female, initial encounter|Contusion of unspecified external genital organ, female, initial encounter +C2836562|T037|AB|S30.202D|ICD10CM|Contusion of unsp external genital organ, female, subs|Contusion of unsp external genital organ, female, subs +C2836562|T037|PT|S30.202D|ICD10CM|Contusion of unspecified external genital organ, female, subsequent encounter|Contusion of unspecified external genital organ, female, subsequent encounter +C2836563|T037|AB|S30.202S|ICD10CM|Contusion of unsp external genital organ, female, sequela|Contusion of unsp external genital organ, female, sequela +C2836563|T037|PT|S30.202S|ICD10CM|Contusion of unspecified external genital organ, female, sequela|Contusion of unspecified external genital organ, female, sequela +C0274223|T037|HT|S30.21|ICD10CM|Contusion of penis|Contusion of penis +C0274223|T037|AB|S30.21|ICD10CM|Contusion of penis|Contusion of penis +C2836564|T037|PT|S30.21XA|ICD10CM|Contusion of penis, initial encounter|Contusion of penis, initial encounter +C2836564|T037|AB|S30.21XA|ICD10CM|Contusion of penis, initial encounter|Contusion of penis, initial encounter +C2836565|T037|PT|S30.21XD|ICD10CM|Contusion of penis, subsequent encounter|Contusion of penis, subsequent encounter +C2836565|T037|AB|S30.21XD|ICD10CM|Contusion of penis, subsequent encounter|Contusion of penis, subsequent encounter +C2836566|T037|PT|S30.21XS|ICD10CM|Contusion of penis, sequela|Contusion of penis, sequela +C2836566|T037|AB|S30.21XS|ICD10CM|Contusion of penis, sequela|Contusion of penis, sequela +C2836567|T037|AB|S30.22|ICD10CM|Contusion of scrotum and testes|Contusion of scrotum and testes +C2836567|T037|HT|S30.22|ICD10CM|Contusion of scrotum and testes|Contusion of scrotum and testes +C2836568|T037|PT|S30.22XA|ICD10CM|Contusion of scrotum and testes, initial encounter|Contusion of scrotum and testes, initial encounter +C2836568|T037|AB|S30.22XA|ICD10CM|Contusion of scrotum and testes, initial encounter|Contusion of scrotum and testes, initial encounter +C2836569|T037|PT|S30.22XD|ICD10CM|Contusion of scrotum and testes, subsequent encounter|Contusion of scrotum and testes, subsequent encounter +C2836569|T037|AB|S30.22XD|ICD10CM|Contusion of scrotum and testes, subsequent encounter|Contusion of scrotum and testes, subsequent encounter +C2836570|T037|PT|S30.22XS|ICD10CM|Contusion of scrotum and testes, sequela|Contusion of scrotum and testes, sequela +C2836570|T037|AB|S30.22XS|ICD10CM|Contusion of scrotum and testes, sequela|Contusion of scrotum and testes, sequela +C2836571|T037|AB|S30.23|ICD10CM|Contusion of vagina and vulva|Contusion of vagina and vulva +C2836571|T037|HT|S30.23|ICD10CM|Contusion of vagina and vulva|Contusion of vagina and vulva +C2836572|T037|PT|S30.23XA|ICD10CM|Contusion of vagina and vulva, initial encounter|Contusion of vagina and vulva, initial encounter +C2836572|T037|AB|S30.23XA|ICD10CM|Contusion of vagina and vulva, initial encounter|Contusion of vagina and vulva, initial encounter +C2836573|T037|PT|S30.23XD|ICD10CM|Contusion of vagina and vulva, subsequent encounter|Contusion of vagina and vulva, subsequent encounter +C2836573|T037|AB|S30.23XD|ICD10CM|Contusion of vagina and vulva, subsequent encounter|Contusion of vagina and vulva, subsequent encounter +C2836574|T037|PT|S30.23XS|ICD10CM|Contusion of vagina and vulva, sequela|Contusion of vagina and vulva, sequela +C2836574|T037|AB|S30.23XS|ICD10CM|Contusion of vagina and vulva, sequela|Contusion of vagina and vulva, sequela +C0559945|T037|HT|S30.3|ICD10CM|Contusion of anus|Contusion of anus +C0559945|T037|AB|S30.3|ICD10CM|Contusion of anus|Contusion of anus +C2836575|T037|PT|S30.3XXA|ICD10CM|Contusion of anus, initial encounter|Contusion of anus, initial encounter +C2836575|T037|AB|S30.3XXA|ICD10CM|Contusion of anus, initial encounter|Contusion of anus, initial encounter +C2836576|T037|PT|S30.3XXD|ICD10CM|Contusion of anus, subsequent encounter|Contusion of anus, subsequent encounter +C2836576|T037|AB|S30.3XXD|ICD10CM|Contusion of anus, subsequent encounter|Contusion of anus, subsequent encounter +C2836577|T037|PT|S30.3XXS|ICD10CM|Contusion of anus, sequela|Contusion of anus, sequela +C2836577|T037|AB|S30.3XXS|ICD10CM|Contusion of anus, sequela|Contusion of anus, sequela +C0451966|T037|PT|S30.7|ICD10|Multiple superficial injuries of abdomen, lower back and pelvis|Multiple superficial injuries of abdomen, lower back and pelvis +C2836578|T037|AB|S30.8|ICD10CM|Oth superfic injuries of abd,low back, pelv & extrn genitals|Oth superfic injuries of abd,low back, pelv & extrn genitals +C0478250|T037|PT|S30.8|ICD10|Other superficial injuries of abdomen, lower back and pelvis|Other superficial injuries of abdomen, lower back and pelvis +C2836578|T037|HT|S30.8|ICD10CM|Other superficial injuries of abdomen, lower back, pelvis and external genitals|Other superficial injuries of abdomen, lower back, pelvis and external genitals +C2836579|T037|AB|S30.81|ICD10CM|Abrasion of abdomen, low back, pelvis and external genitals|Abrasion of abdomen, low back, pelvis and external genitals +C2836579|T037|HT|S30.81|ICD10CM|Abrasion of abdomen, lower back, pelvis and external genitals|Abrasion of abdomen, lower back, pelvis and external genitals +C2836580|T037|AB|S30.810|ICD10CM|Abrasion of lower back and pelvis|Abrasion of lower back and pelvis +C2836580|T037|HT|S30.810|ICD10CM|Abrasion of lower back and pelvis|Abrasion of lower back and pelvis +C2836581|T037|PT|S30.810A|ICD10CM|Abrasion of lower back and pelvis, initial encounter|Abrasion of lower back and pelvis, initial encounter +C2836581|T037|AB|S30.810A|ICD10CM|Abrasion of lower back and pelvis, initial encounter|Abrasion of lower back and pelvis, initial encounter +C2836582|T037|PT|S30.810D|ICD10CM|Abrasion of lower back and pelvis, subsequent encounter|Abrasion of lower back and pelvis, subsequent encounter +C2836582|T037|AB|S30.810D|ICD10CM|Abrasion of lower back and pelvis, subsequent encounter|Abrasion of lower back and pelvis, subsequent encounter +C2836583|T037|PT|S30.810S|ICD10CM|Abrasion of lower back and pelvis, sequela|Abrasion of lower back and pelvis, sequela +C2836583|T037|AB|S30.810S|ICD10CM|Abrasion of lower back and pelvis, sequela|Abrasion of lower back and pelvis, sequela +C0432806|T037|AB|S30.811|ICD10CM|Abrasion of abdominal wall|Abrasion of abdominal wall +C0432806|T037|HT|S30.811|ICD10CM|Abrasion of abdominal wall|Abrasion of abdominal wall +C2836584|T037|PT|S30.811A|ICD10CM|Abrasion of abdominal wall, initial encounter|Abrasion of abdominal wall, initial encounter +C2836584|T037|AB|S30.811A|ICD10CM|Abrasion of abdominal wall, initial encounter|Abrasion of abdominal wall, initial encounter +C2836585|T037|PT|S30.811D|ICD10CM|Abrasion of abdominal wall, subsequent encounter|Abrasion of abdominal wall, subsequent encounter +C2836585|T037|AB|S30.811D|ICD10CM|Abrasion of abdominal wall, subsequent encounter|Abrasion of abdominal wall, subsequent encounter +C2836586|T037|PT|S30.811S|ICD10CM|Abrasion of abdominal wall, sequela|Abrasion of abdominal wall, sequela +C2836586|T037|AB|S30.811S|ICD10CM|Abrasion of abdominal wall, sequela|Abrasion of abdominal wall, sequela +C0432813|T037|AB|S30.812|ICD10CM|Abrasion of penis|Abrasion of penis +C0432813|T037|HT|S30.812|ICD10CM|Abrasion of penis|Abrasion of penis +C2836587|T037|PT|S30.812A|ICD10CM|Abrasion of penis, initial encounter|Abrasion of penis, initial encounter +C2836587|T037|AB|S30.812A|ICD10CM|Abrasion of penis, initial encounter|Abrasion of penis, initial encounter +C2836588|T037|PT|S30.812D|ICD10CM|Abrasion of penis, subsequent encounter|Abrasion of penis, subsequent encounter +C2836588|T037|AB|S30.812D|ICD10CM|Abrasion of penis, subsequent encounter|Abrasion of penis, subsequent encounter +C2836589|T037|PT|S30.812S|ICD10CM|Abrasion of penis, sequela|Abrasion of penis, sequela +C2836589|T037|AB|S30.812S|ICD10CM|Abrasion of penis, sequela|Abrasion of penis, sequela +C0432814|T037|AB|S30.813|ICD10CM|Abrasion of scrotum and testes|Abrasion of scrotum and testes +C0432814|T037|HT|S30.813|ICD10CM|Abrasion of scrotum and testes|Abrasion of scrotum and testes +C2836590|T037|PT|S30.813A|ICD10CM|Abrasion of scrotum and testes, initial encounter|Abrasion of scrotum and testes, initial encounter +C2836590|T037|AB|S30.813A|ICD10CM|Abrasion of scrotum and testes, initial encounter|Abrasion of scrotum and testes, initial encounter +C2836591|T037|PT|S30.813D|ICD10CM|Abrasion of scrotum and testes, subsequent encounter|Abrasion of scrotum and testes, subsequent encounter +C2836591|T037|AB|S30.813D|ICD10CM|Abrasion of scrotum and testes, subsequent encounter|Abrasion of scrotum and testes, subsequent encounter +C2836592|T037|PT|S30.813S|ICD10CM|Abrasion of scrotum and testes, sequela|Abrasion of scrotum and testes, sequela +C2836592|T037|AB|S30.813S|ICD10CM|Abrasion of scrotum and testes, sequela|Abrasion of scrotum and testes, sequela +C2836593|T037|AB|S30.814|ICD10CM|Abrasion of vagina and vulva|Abrasion of vagina and vulva +C2836593|T037|HT|S30.814|ICD10CM|Abrasion of vagina and vulva|Abrasion of vagina and vulva +C2836594|T037|PT|S30.814A|ICD10CM|Abrasion of vagina and vulva, initial encounter|Abrasion of vagina and vulva, initial encounter +C2836594|T037|AB|S30.814A|ICD10CM|Abrasion of vagina and vulva, initial encounter|Abrasion of vagina and vulva, initial encounter +C2836595|T037|PT|S30.814D|ICD10CM|Abrasion of vagina and vulva, subsequent encounter|Abrasion of vagina and vulva, subsequent encounter +C2836595|T037|AB|S30.814D|ICD10CM|Abrasion of vagina and vulva, subsequent encounter|Abrasion of vagina and vulva, subsequent encounter +C2836596|T037|PT|S30.814S|ICD10CM|Abrasion of vagina and vulva, sequela|Abrasion of vagina and vulva, sequela +C2836596|T037|AB|S30.814S|ICD10CM|Abrasion of vagina and vulva, sequela|Abrasion of vagina and vulva, sequela +C2836597|T037|AB|S30.815|ICD10CM|Abrasion of unspecified external genital organs, male|Abrasion of unspecified external genital organs, male +C2836597|T037|HT|S30.815|ICD10CM|Abrasion of unspecified external genital organs, male|Abrasion of unspecified external genital organs, male +C2836598|T037|AB|S30.815A|ICD10CM|Abrasion of unsp external genital organs, male, init encntr|Abrasion of unsp external genital organs, male, init encntr +C2836598|T037|PT|S30.815A|ICD10CM|Abrasion of unspecified external genital organs, male, initial encounter|Abrasion of unspecified external genital organs, male, initial encounter +C2836599|T037|AB|S30.815D|ICD10CM|Abrasion of unsp external genital organs, male, subs encntr|Abrasion of unsp external genital organs, male, subs encntr +C2836599|T037|PT|S30.815D|ICD10CM|Abrasion of unspecified external genital organs, male, subsequent encounter|Abrasion of unspecified external genital organs, male, subsequent encounter +C2836600|T037|AB|S30.815S|ICD10CM|Abrasion of unsp external genital organs, male, sequela|Abrasion of unsp external genital organs, male, sequela +C2836600|T037|PT|S30.815S|ICD10CM|Abrasion of unspecified external genital organs, male, sequela|Abrasion of unspecified external genital organs, male, sequela +C2836601|T037|AB|S30.816|ICD10CM|Abrasion of unspecified external genital organs, female|Abrasion of unspecified external genital organs, female +C2836601|T037|HT|S30.816|ICD10CM|Abrasion of unspecified external genital organs, female|Abrasion of unspecified external genital organs, female +C2836602|T037|AB|S30.816A|ICD10CM|Abrasion of unsp external genital organs, female, init|Abrasion of unsp external genital organs, female, init +C2836602|T037|PT|S30.816A|ICD10CM|Abrasion of unspecified external genital organs, female, initial encounter|Abrasion of unspecified external genital organs, female, initial encounter +C2836603|T037|AB|S30.816D|ICD10CM|Abrasion of unsp external genital organs, female, subs|Abrasion of unsp external genital organs, female, subs +C2836603|T037|PT|S30.816D|ICD10CM|Abrasion of unspecified external genital organs, female, subsequent encounter|Abrasion of unspecified external genital organs, female, subsequent encounter +C2836604|T037|AB|S30.816S|ICD10CM|Abrasion of unsp external genital organs, female, sequela|Abrasion of unsp external genital organs, female, sequela +C2836604|T037|PT|S30.816S|ICD10CM|Abrasion of unspecified external genital organs, female, sequela|Abrasion of unspecified external genital organs, female, sequela +C0432809|T037|AB|S30.817|ICD10CM|Abrasion of anus|Abrasion of anus +C0432809|T037|HT|S30.817|ICD10CM|Abrasion of anus|Abrasion of anus +C2836605|T037|PT|S30.817A|ICD10CM|Abrasion of anus, initial encounter|Abrasion of anus, initial encounter +C2836605|T037|AB|S30.817A|ICD10CM|Abrasion of anus, initial encounter|Abrasion of anus, initial encounter +C2836606|T037|PT|S30.817D|ICD10CM|Abrasion of anus, subsequent encounter|Abrasion of anus, subsequent encounter +C2836606|T037|AB|S30.817D|ICD10CM|Abrasion of anus, subsequent encounter|Abrasion of anus, subsequent encounter +C2836607|T037|PT|S30.817S|ICD10CM|Abrasion of anus, sequela|Abrasion of anus, sequela +C2836607|T037|AB|S30.817S|ICD10CM|Abrasion of anus, sequela|Abrasion of anus, sequela +C2836608|T037|HT|S30.82|ICD10CM|Blister (nonthermal) of abdomen, lower back, pelvis and external genitals|Blister (nonthermal) of abdomen, lower back, pelvis and external genitals +C2836608|T037|AB|S30.82|ICD10CM|Blister of abdomen, lower back, pelvis and external genitals|Blister of abdomen, lower back, pelvis and external genitals +C2836609|T037|AB|S30.820|ICD10CM|Blister (nonthermal) of lower back and pelvis|Blister (nonthermal) of lower back and pelvis +C2836609|T037|HT|S30.820|ICD10CM|Blister (nonthermal) of lower back and pelvis|Blister (nonthermal) of lower back and pelvis +C2836610|T037|AB|S30.820A|ICD10CM|Blister (nonthermal) of lower back and pelvis, init encntr|Blister (nonthermal) of lower back and pelvis, init encntr +C2836610|T037|PT|S30.820A|ICD10CM|Blister (nonthermal) of lower back and pelvis, initial encounter|Blister (nonthermal) of lower back and pelvis, initial encounter +C2836611|T037|AB|S30.820D|ICD10CM|Blister (nonthermal) of lower back and pelvis, subs encntr|Blister (nonthermal) of lower back and pelvis, subs encntr +C2836611|T037|PT|S30.820D|ICD10CM|Blister (nonthermal) of lower back and pelvis, subsequent encounter|Blister (nonthermal) of lower back and pelvis, subsequent encounter +C2836612|T037|AB|S30.820S|ICD10CM|Blister (nonthermal) of lower back and pelvis, sequela|Blister (nonthermal) of lower back and pelvis, sequela +C2836612|T037|PT|S30.820S|ICD10CM|Blister (nonthermal) of lower back and pelvis, sequela|Blister (nonthermal) of lower back and pelvis, sequela +C2836613|T037|AB|S30.821|ICD10CM|Blister (nonthermal) of abdominal wall|Blister (nonthermal) of abdominal wall +C2836613|T037|HT|S30.821|ICD10CM|Blister (nonthermal) of abdominal wall|Blister (nonthermal) of abdominal wall +C2836614|T037|AB|S30.821A|ICD10CM|Blister (nonthermal) of abdominal wall, initial encounter|Blister (nonthermal) of abdominal wall, initial encounter +C2836614|T037|PT|S30.821A|ICD10CM|Blister (nonthermal) of abdominal wall, initial encounter|Blister (nonthermal) of abdominal wall, initial encounter +C2836615|T037|AB|S30.821D|ICD10CM|Blister (nonthermal) of abdominal wall, subsequent encounter|Blister (nonthermal) of abdominal wall, subsequent encounter +C2836615|T037|PT|S30.821D|ICD10CM|Blister (nonthermal) of abdominal wall, subsequent encounter|Blister (nonthermal) of abdominal wall, subsequent encounter +C2836616|T037|AB|S30.821S|ICD10CM|Blister (nonthermal) of abdominal wall, sequela|Blister (nonthermal) of abdominal wall, sequela +C2836616|T037|PT|S30.821S|ICD10CM|Blister (nonthermal) of abdominal wall, sequela|Blister (nonthermal) of abdominal wall, sequela +C2836617|T037|AB|S30.822|ICD10CM|Blister (nonthermal) of penis|Blister (nonthermal) of penis +C2836617|T037|HT|S30.822|ICD10CM|Blister (nonthermal) of penis|Blister (nonthermal) of penis +C2836618|T037|AB|S30.822A|ICD10CM|Blister (nonthermal) of penis, initial encounter|Blister (nonthermal) of penis, initial encounter +C2836618|T037|PT|S30.822A|ICD10CM|Blister (nonthermal) of penis, initial encounter|Blister (nonthermal) of penis, initial encounter +C2836619|T037|AB|S30.822D|ICD10CM|Blister (nonthermal) of penis, subsequent encounter|Blister (nonthermal) of penis, subsequent encounter +C2836619|T037|PT|S30.822D|ICD10CM|Blister (nonthermal) of penis, subsequent encounter|Blister (nonthermal) of penis, subsequent encounter +C2836620|T037|AB|S30.822S|ICD10CM|Blister (nonthermal) of penis, sequela|Blister (nonthermal) of penis, sequela +C2836620|T037|PT|S30.822S|ICD10CM|Blister (nonthermal) of penis, sequela|Blister (nonthermal) of penis, sequela +C2836621|T037|AB|S30.823|ICD10CM|Blister (nonthermal) of scrotum and testes|Blister (nonthermal) of scrotum and testes +C2836621|T037|HT|S30.823|ICD10CM|Blister (nonthermal) of scrotum and testes|Blister (nonthermal) of scrotum and testes +C2836622|T037|AB|S30.823A|ICD10CM|Blister (nonthermal) of scrotum and testes, init encntr|Blister (nonthermal) of scrotum and testes, init encntr +C2836622|T037|PT|S30.823A|ICD10CM|Blister (nonthermal) of scrotum and testes, initial encounter|Blister (nonthermal) of scrotum and testes, initial encounter +C2836623|T037|AB|S30.823D|ICD10CM|Blister (nonthermal) of scrotum and testes, subs encntr|Blister (nonthermal) of scrotum and testes, subs encntr +C2836623|T037|PT|S30.823D|ICD10CM|Blister (nonthermal) of scrotum and testes, subsequent encounter|Blister (nonthermal) of scrotum and testes, subsequent encounter +C2836624|T037|AB|S30.823S|ICD10CM|Blister (nonthermal) of scrotum and testes, sequela|Blister (nonthermal) of scrotum and testes, sequela +C2836624|T037|PT|S30.823S|ICD10CM|Blister (nonthermal) of scrotum and testes, sequela|Blister (nonthermal) of scrotum and testes, sequela +C2836625|T037|AB|S30.824|ICD10CM|Blister (nonthermal) of vagina and vulva|Blister (nonthermal) of vagina and vulva +C2836625|T037|HT|S30.824|ICD10CM|Blister (nonthermal) of vagina and vulva|Blister (nonthermal) of vagina and vulva +C2836626|T037|AB|S30.824A|ICD10CM|Blister (nonthermal) of vagina and vulva, initial encounter|Blister (nonthermal) of vagina and vulva, initial encounter +C2836626|T037|PT|S30.824A|ICD10CM|Blister (nonthermal) of vagina and vulva, initial encounter|Blister (nonthermal) of vagina and vulva, initial encounter +C2836627|T037|AB|S30.824D|ICD10CM|Blister (nonthermal) of vagina and vulva, subs encntr|Blister (nonthermal) of vagina and vulva, subs encntr +C2836627|T037|PT|S30.824D|ICD10CM|Blister (nonthermal) of vagina and vulva, subsequent encounter|Blister (nonthermal) of vagina and vulva, subsequent encounter +C2836628|T037|AB|S30.824S|ICD10CM|Blister (nonthermal) of vagina and vulva, sequela|Blister (nonthermal) of vagina and vulva, sequela +C2836628|T037|PT|S30.824S|ICD10CM|Blister (nonthermal) of vagina and vulva, sequela|Blister (nonthermal) of vagina and vulva, sequela +C2836629|T037|AB|S30.825|ICD10CM|Blister (nonthermal) of unsp external genital organs, male|Blister (nonthermal) of unsp external genital organs, male +C2836629|T037|HT|S30.825|ICD10CM|Blister (nonthermal) of unspecified external genital organs, male|Blister (nonthermal) of unspecified external genital organs, male +C2836630|T037|PT|S30.825A|ICD10CM|Blister (nonthermal) of unspecified external genital organs, male, initial encounter|Blister (nonthermal) of unspecified external genital organs, male, initial encounter +C2836630|T037|AB|S30.825A|ICD10CM|Blister of unsp external genital organs, male, init|Blister of unsp external genital organs, male, init +C2836631|T037|PT|S30.825D|ICD10CM|Blister (nonthermal) of unspecified external genital organs, male, subsequent encounter|Blister (nonthermal) of unspecified external genital organs, male, subsequent encounter +C2836631|T037|AB|S30.825D|ICD10CM|Blister of unsp external genital organs, male, subs|Blister of unsp external genital organs, male, subs +C2836632|T037|PT|S30.825S|ICD10CM|Blister (nonthermal) of unspecified external genital organs, male, sequela|Blister (nonthermal) of unspecified external genital organs, male, sequela +C2836632|T037|AB|S30.825S|ICD10CM|Blister of unsp external genital organs, male, sequela|Blister of unsp external genital organs, male, sequela +C2836633|T037|AB|S30.826|ICD10CM|Blister (nonthermal) of unsp external genital organs, female|Blister (nonthermal) of unsp external genital organs, female +C2836633|T037|HT|S30.826|ICD10CM|Blister (nonthermal) of unspecified external genital organs, female|Blister (nonthermal) of unspecified external genital organs, female +C2836634|T037|PT|S30.826A|ICD10CM|Blister (nonthermal) of unspecified external genital organs, female, initial encounter|Blister (nonthermal) of unspecified external genital organs, female, initial encounter +C2836634|T037|AB|S30.826A|ICD10CM|Blister of unsp external genital organs, female, init|Blister of unsp external genital organs, female, init +C2836635|T037|PT|S30.826D|ICD10CM|Blister (nonthermal) of unspecified external genital organs, female, subsequent encounter|Blister (nonthermal) of unspecified external genital organs, female, subsequent encounter +C2836635|T037|AB|S30.826D|ICD10CM|Blister of unsp external genital organs, female, subs|Blister of unsp external genital organs, female, subs +C2836636|T037|PT|S30.826S|ICD10CM|Blister (nonthermal) of unspecified external genital organs, female, sequela|Blister (nonthermal) of unspecified external genital organs, female, sequela +C2836636|T037|AB|S30.826S|ICD10CM|Blister of unsp external genital organs, female, sequela|Blister of unsp external genital organs, female, sequela +C2836637|T037|AB|S30.827|ICD10CM|Blister (nonthermal) of anus|Blister (nonthermal) of anus +C2836637|T037|HT|S30.827|ICD10CM|Blister (nonthermal) of anus|Blister (nonthermal) of anus +C2836638|T037|AB|S30.827A|ICD10CM|Blister (nonthermal) of anus, initial encounter|Blister (nonthermal) of anus, initial encounter +C2836638|T037|PT|S30.827A|ICD10CM|Blister (nonthermal) of anus, initial encounter|Blister (nonthermal) of anus, initial encounter +C2836639|T037|AB|S30.827D|ICD10CM|Blister (nonthermal) of anus, subsequent encounter|Blister (nonthermal) of anus, subsequent encounter +C2836639|T037|PT|S30.827D|ICD10CM|Blister (nonthermal) of anus, subsequent encounter|Blister (nonthermal) of anus, subsequent encounter +C2836640|T037|AB|S30.827S|ICD10CM|Blister (nonthermal) of anus, sequela|Blister (nonthermal) of anus, sequela +C2836640|T037|PT|S30.827S|ICD10CM|Blister (nonthermal) of anus, sequela|Blister (nonthermal) of anus, sequela +C2836641|T037|HT|S30.84|ICD10CM|External constriction of abdomen, lower back, pelvis and external genitals|External constriction of abdomen, lower back, pelvis and external genitals +C2836641|T037|AB|S30.84|ICD10CM|Extrn constrict of abd, low back, pelvis and extrn genitals|Extrn constrict of abd, low back, pelvis and extrn genitals +C2836642|T037|AB|S30.840|ICD10CM|External constriction of lower back and pelvis|External constriction of lower back and pelvis +C2836642|T037|HT|S30.840|ICD10CM|External constriction of lower back and pelvis|External constriction of lower back and pelvis +C2836643|T037|AB|S30.840A|ICD10CM|External constriction of lower back and pelvis, init encntr|External constriction of lower back and pelvis, init encntr +C2836643|T037|PT|S30.840A|ICD10CM|External constriction of lower back and pelvis, initial encounter|External constriction of lower back and pelvis, initial encounter +C2836644|T037|AB|S30.840D|ICD10CM|External constriction of lower back and pelvis, subs encntr|External constriction of lower back and pelvis, subs encntr +C2836644|T037|PT|S30.840D|ICD10CM|External constriction of lower back and pelvis, subsequent encounter|External constriction of lower back and pelvis, subsequent encounter +C2836645|T037|AB|S30.840S|ICD10CM|External constriction of lower back and pelvis, sequela|External constriction of lower back and pelvis, sequela +C2836645|T037|PT|S30.840S|ICD10CM|External constriction of lower back and pelvis, sequela|External constriction of lower back and pelvis, sequela +C2836646|T037|AB|S30.841|ICD10CM|External constriction of abdominal wall|External constriction of abdominal wall +C2836646|T037|HT|S30.841|ICD10CM|External constriction of abdominal wall|External constriction of abdominal wall +C2836647|T037|AB|S30.841A|ICD10CM|External constriction of abdominal wall, initial encounter|External constriction of abdominal wall, initial encounter +C2836647|T037|PT|S30.841A|ICD10CM|External constriction of abdominal wall, initial encounter|External constriction of abdominal wall, initial encounter +C2836648|T037|AB|S30.841D|ICD10CM|External constriction of abdominal wall, subs encntr|External constriction of abdominal wall, subs encntr +C2836648|T037|PT|S30.841D|ICD10CM|External constriction of abdominal wall, subsequent encounter|External constriction of abdominal wall, subsequent encounter +C2836649|T037|AB|S30.841S|ICD10CM|External constriction of abdominal wall, sequela|External constriction of abdominal wall, sequela +C2836649|T037|PT|S30.841S|ICD10CM|External constriction of abdominal wall, sequela|External constriction of abdominal wall, sequela +C2836651|T037|AB|S30.842|ICD10CM|External constriction of penis|External constriction of penis +C2836651|T037|HT|S30.842|ICD10CM|External constriction of penis|External constriction of penis +C2836650|T037|ET|S30.842|ICD10CM|Hair tourniquet syndrome of penis|Hair tourniquet syndrome of penis +C2836652|T037|AB|S30.842A|ICD10CM|External constriction of penis, initial encounter|External constriction of penis, initial encounter +C2836652|T037|PT|S30.842A|ICD10CM|External constriction of penis, initial encounter|External constriction of penis, initial encounter +C2836653|T037|AB|S30.842D|ICD10CM|External constriction of penis, subsequent encounter|External constriction of penis, subsequent encounter +C2836653|T037|PT|S30.842D|ICD10CM|External constriction of penis, subsequent encounter|External constriction of penis, subsequent encounter +C2836654|T037|AB|S30.842S|ICD10CM|External constriction of penis, sequela|External constriction of penis, sequela +C2836654|T037|PT|S30.842S|ICD10CM|External constriction of penis, sequela|External constriction of penis, sequela +C2836655|T037|AB|S30.843|ICD10CM|External constriction of scrotum and testes|External constriction of scrotum and testes +C2836655|T037|HT|S30.843|ICD10CM|External constriction of scrotum and testes|External constriction of scrotum and testes +C2836656|T037|AB|S30.843A|ICD10CM|External constriction of scrotum and testes, init encntr|External constriction of scrotum and testes, init encntr +C2836656|T037|PT|S30.843A|ICD10CM|External constriction of scrotum and testes, initial encounter|External constriction of scrotum and testes, initial encounter +C2836657|T037|AB|S30.843D|ICD10CM|External constriction of scrotum and testes, subs encntr|External constriction of scrotum and testes, subs encntr +C2836657|T037|PT|S30.843D|ICD10CM|External constriction of scrotum and testes, subsequent encounter|External constriction of scrotum and testes, subsequent encounter +C2836658|T037|AB|S30.843S|ICD10CM|External constriction of scrotum and testes, sequela|External constriction of scrotum and testes, sequela +C2836658|T037|PT|S30.843S|ICD10CM|External constriction of scrotum and testes, sequela|External constriction of scrotum and testes, sequela +C2836659|T037|AB|S30.844|ICD10CM|External constriction of vagina and vulva|External constriction of vagina and vulva +C2836659|T037|HT|S30.844|ICD10CM|External constriction of vagina and vulva|External constriction of vagina and vulva +C2836660|T037|AB|S30.844A|ICD10CM|External constriction of vagina and vulva, initial encounter|External constriction of vagina and vulva, initial encounter +C2836660|T037|PT|S30.844A|ICD10CM|External constriction of vagina and vulva, initial encounter|External constriction of vagina and vulva, initial encounter +C2836661|T037|AB|S30.844D|ICD10CM|External constriction of vagina and vulva, subs encntr|External constriction of vagina and vulva, subs encntr +C2836661|T037|PT|S30.844D|ICD10CM|External constriction of vagina and vulva, subsequent encounter|External constriction of vagina and vulva, subsequent encounter +C2836662|T037|AB|S30.844S|ICD10CM|External constriction of vagina and vulva, sequela|External constriction of vagina and vulva, sequela +C2836662|T037|PT|S30.844S|ICD10CM|External constriction of vagina and vulva, sequela|External constriction of vagina and vulva, sequela +C2836663|T037|AB|S30.845|ICD10CM|External constriction of unsp external genital organs, male|External constriction of unsp external genital organs, male +C2836663|T037|HT|S30.845|ICD10CM|External constriction of unspecified external genital organs, male|External constriction of unspecified external genital organs, male +C2836664|T037|PT|S30.845A|ICD10CM|External constriction of unspecified external genital organs, male, initial encounter|External constriction of unspecified external genital organs, male, initial encounter +C2836664|T037|AB|S30.845A|ICD10CM|Extrn constrict of unsp external genital organs, male, init|Extrn constrict of unsp external genital organs, male, init +C2836665|T037|PT|S30.845D|ICD10CM|External constriction of unspecified external genital organs, male, subsequent encounter|External constriction of unspecified external genital organs, male, subsequent encounter +C2836665|T037|AB|S30.845D|ICD10CM|Extrn constrict of unsp external genital organs, male, subs|Extrn constrict of unsp external genital organs, male, subs +C2836666|T037|PT|S30.845S|ICD10CM|External constriction of unspecified external genital organs, male, sequela|External constriction of unspecified external genital organs, male, sequela +C2836666|T037|AB|S30.845S|ICD10CM|Extrn constrict of unsp extrn genital organs, male, sequela|Extrn constrict of unsp extrn genital organs, male, sequela +C2836667|T037|AB|S30.846|ICD10CM|External constrict of unsp external genital organs, female|External constrict of unsp external genital organs, female +C2836667|T037|HT|S30.846|ICD10CM|External constriction of unspecified external genital organs, female|External constriction of unspecified external genital organs, female +C2836668|T037|PT|S30.846A|ICD10CM|External constriction of unspecified external genital organs, female, initial encounter|External constriction of unspecified external genital organs, female, initial encounter +C2836668|T037|AB|S30.846A|ICD10CM|Extrn constrict of unsp extrn genital organs, female, init|Extrn constrict of unsp extrn genital organs, female, init +C2836669|T037|PT|S30.846D|ICD10CM|External constriction of unspecified external genital organs, female, subsequent encounter|External constriction of unspecified external genital organs, female, subsequent encounter +C2836669|T037|AB|S30.846D|ICD10CM|Extrn constrict of unsp extrn genital organs, female, subs|Extrn constrict of unsp extrn genital organs, female, subs +C2836670|T037|PT|S30.846S|ICD10CM|External constriction of unspecified external genital organs, female, sequela|External constriction of unspecified external genital organs, female, sequela +C2836670|T037|AB|S30.846S|ICD10CM|Extrn constrict of unsp extrn gntl organs, female, sequela|Extrn constrict of unsp extrn gntl organs, female, sequela +C2836671|T037|ET|S30.85|ICD10CM|Splinter in the abdomen, lower back, pelvis and external genitals|Splinter in the abdomen, lower back, pelvis and external genitals +C2836672|T037|AB|S30.85|ICD10CM|Superfic fb of abdomen, low back, pelvis and extrn genitals|Superfic fb of abdomen, low back, pelvis and extrn genitals +C2836672|T037|HT|S30.85|ICD10CM|Superficial foreign body of abdomen, lower back, pelvis and external genitals|Superficial foreign body of abdomen, lower back, pelvis and external genitals +C2836673|T037|AB|S30.850|ICD10CM|Superficial foreign body of lower back and pelvis|Superficial foreign body of lower back and pelvis +C2836673|T037|HT|S30.850|ICD10CM|Superficial foreign body of lower back and pelvis|Superficial foreign body of lower back and pelvis +C2836674|T037|AB|S30.850A|ICD10CM|Superficial foreign body of lower back and pelvis, init|Superficial foreign body of lower back and pelvis, init +C2836674|T037|PT|S30.850A|ICD10CM|Superficial foreign body of lower back and pelvis, initial encounter|Superficial foreign body of lower back and pelvis, initial encounter +C2836675|T037|AB|S30.850D|ICD10CM|Superficial foreign body of lower back and pelvis, subs|Superficial foreign body of lower back and pelvis, subs +C2836675|T037|PT|S30.850D|ICD10CM|Superficial foreign body of lower back and pelvis, subsequent encounter|Superficial foreign body of lower back and pelvis, subsequent encounter +C2836676|T037|AB|S30.850S|ICD10CM|Superficial foreign body of lower back and pelvis, sequela|Superficial foreign body of lower back and pelvis, sequela +C2836676|T037|PT|S30.850S|ICD10CM|Superficial foreign body of lower back and pelvis, sequela|Superficial foreign body of lower back and pelvis, sequela +C2836677|T037|HT|S30.851|ICD10CM|Superficial foreign body of abdominal wall|Superficial foreign body of abdominal wall +C2836677|T037|AB|S30.851|ICD10CM|Superficial foreign body of abdominal wall|Superficial foreign body of abdominal wall +C2836678|T037|AB|S30.851A|ICD10CM|Superficial foreign body of abdominal wall, init encntr|Superficial foreign body of abdominal wall, init encntr +C2836678|T037|PT|S30.851A|ICD10CM|Superficial foreign body of abdominal wall, initial encounter|Superficial foreign body of abdominal wall, initial encounter +C2836679|T037|AB|S30.851D|ICD10CM|Superficial foreign body of abdominal wall, subs encntr|Superficial foreign body of abdominal wall, subs encntr +C2836679|T037|PT|S30.851D|ICD10CM|Superficial foreign body of abdominal wall, subsequent encounter|Superficial foreign body of abdominal wall, subsequent encounter +C2836680|T037|AB|S30.851S|ICD10CM|Superficial foreign body of abdominal wall, sequela|Superficial foreign body of abdominal wall, sequela +C2836680|T037|PT|S30.851S|ICD10CM|Superficial foreign body of abdominal wall, sequela|Superficial foreign body of abdominal wall, sequela +C2836681|T037|HT|S30.852|ICD10CM|Superficial foreign body of penis|Superficial foreign body of penis +C2836681|T037|AB|S30.852|ICD10CM|Superficial foreign body of penis|Superficial foreign body of penis +C2836682|T037|AB|S30.852A|ICD10CM|Superficial foreign body of penis, initial encounter|Superficial foreign body of penis, initial encounter +C2836682|T037|PT|S30.852A|ICD10CM|Superficial foreign body of penis, initial encounter|Superficial foreign body of penis, initial encounter +C2836683|T037|AB|S30.852D|ICD10CM|Superficial foreign body of penis, subsequent encounter|Superficial foreign body of penis, subsequent encounter +C2836683|T037|PT|S30.852D|ICD10CM|Superficial foreign body of penis, subsequent encounter|Superficial foreign body of penis, subsequent encounter +C2836684|T037|AB|S30.852S|ICD10CM|Superficial foreign body of penis, sequela|Superficial foreign body of penis, sequela +C2836684|T037|PT|S30.852S|ICD10CM|Superficial foreign body of penis, sequela|Superficial foreign body of penis, sequela +C2836685|T037|AB|S30.853|ICD10CM|Superficial foreign body of scrotum and testes|Superficial foreign body of scrotum and testes +C2836685|T037|HT|S30.853|ICD10CM|Superficial foreign body of scrotum and testes|Superficial foreign body of scrotum and testes +C2836686|T037|AB|S30.853A|ICD10CM|Superficial foreign body of scrotum and testes, init encntr|Superficial foreign body of scrotum and testes, init encntr +C2836686|T037|PT|S30.853A|ICD10CM|Superficial foreign body of scrotum and testes, initial encounter|Superficial foreign body of scrotum and testes, initial encounter +C2836687|T037|AB|S30.853D|ICD10CM|Superficial foreign body of scrotum and testes, subs encntr|Superficial foreign body of scrotum and testes, subs encntr +C2836687|T037|PT|S30.853D|ICD10CM|Superficial foreign body of scrotum and testes, subsequent encounter|Superficial foreign body of scrotum and testes, subsequent encounter +C2836688|T037|AB|S30.853S|ICD10CM|Superficial foreign body of scrotum and testes, sequela|Superficial foreign body of scrotum and testes, sequela +C2836688|T037|PT|S30.853S|ICD10CM|Superficial foreign body of scrotum and testes, sequela|Superficial foreign body of scrotum and testes, sequela +C2836689|T037|AB|S30.854|ICD10CM|Superficial foreign body of vagina and vulva|Superficial foreign body of vagina and vulva +C2836689|T037|HT|S30.854|ICD10CM|Superficial foreign body of vagina and vulva|Superficial foreign body of vagina and vulva +C2836690|T037|AB|S30.854A|ICD10CM|Superficial foreign body of vagina and vulva, init encntr|Superficial foreign body of vagina and vulva, init encntr +C2836690|T037|PT|S30.854A|ICD10CM|Superficial foreign body of vagina and vulva, initial encounter|Superficial foreign body of vagina and vulva, initial encounter +C2836691|T037|AB|S30.854D|ICD10CM|Superficial foreign body of vagina and vulva, subs encntr|Superficial foreign body of vagina and vulva, subs encntr +C2836691|T037|PT|S30.854D|ICD10CM|Superficial foreign body of vagina and vulva, subsequent encounter|Superficial foreign body of vagina and vulva, subsequent encounter +C2836692|T037|AB|S30.854S|ICD10CM|Superficial foreign body of vagina and vulva, sequela|Superficial foreign body of vagina and vulva, sequela +C2836692|T037|PT|S30.854S|ICD10CM|Superficial foreign body of vagina and vulva, sequela|Superficial foreign body of vagina and vulva, sequela +C2836693|T037|AB|S30.855|ICD10CM|Superficial fb of unsp external genital organs, male|Superficial fb of unsp external genital organs, male +C2836693|T037|HT|S30.855|ICD10CM|Superficial foreign body of unspecified external genital organs, male|Superficial foreign body of unspecified external genital organs, male +C2836694|T037|AB|S30.855A|ICD10CM|Superficial fb of unsp external genital organs, male, init|Superficial fb of unsp external genital organs, male, init +C2836694|T037|PT|S30.855A|ICD10CM|Superficial foreign body of unspecified external genital organs, male, initial encounter|Superficial foreign body of unspecified external genital organs, male, initial encounter +C2836695|T037|AB|S30.855D|ICD10CM|Superficial fb of unsp external genital organs, male, subs|Superficial fb of unsp external genital organs, male, subs +C2836695|T037|PT|S30.855D|ICD10CM|Superficial foreign body of unspecified external genital organs, male, subsequent encounter|Superficial foreign body of unspecified external genital organs, male, subsequent encounter +C2836696|T037|AB|S30.855S|ICD10CM|Superfic fb of unsp external genital organs, male, sequela|Superfic fb of unsp external genital organs, male, sequela +C2836696|T037|PT|S30.855S|ICD10CM|Superficial foreign body of unspecified external genital organs, male, sequela|Superficial foreign body of unspecified external genital organs, male, sequela +C2836697|T037|AB|S30.856|ICD10CM|Superficial fb of unsp external genital organs, female|Superficial fb of unsp external genital organs, female +C2836697|T037|HT|S30.856|ICD10CM|Superficial foreign body of unspecified external genital organs, female|Superficial foreign body of unspecified external genital organs, female +C2836698|T037|AB|S30.856A|ICD10CM|Superficial fb of unsp external genital organs, female, init|Superficial fb of unsp external genital organs, female, init +C2836698|T037|PT|S30.856A|ICD10CM|Superficial foreign body of unspecified external genital organs, female, initial encounter|Superficial foreign body of unspecified external genital organs, female, initial encounter +C2836699|T037|AB|S30.856D|ICD10CM|Superficial fb of unsp external genital organs, female, subs|Superficial fb of unsp external genital organs, female, subs +C2836699|T037|PT|S30.856D|ICD10CM|Superficial foreign body of unspecified external genital organs, female, subsequent encounter|Superficial foreign body of unspecified external genital organs, female, subsequent encounter +C2836700|T037|AB|S30.856S|ICD10CM|Superfic fb of unsp external genital organs, female, sequela|Superfic fb of unsp external genital organs, female, sequela +C2836700|T037|PT|S30.856S|ICD10CM|Superficial foreign body of unspecified external genital organs, female, sequela|Superficial foreign body of unspecified external genital organs, female, sequela +C2836701|T037|HT|S30.857|ICD10CM|Superficial foreign body of anus|Superficial foreign body of anus +C2836701|T037|AB|S30.857|ICD10CM|Superficial foreign body of anus|Superficial foreign body of anus +C2836702|T037|AB|S30.857A|ICD10CM|Superficial foreign body of anus, initial encounter|Superficial foreign body of anus, initial encounter +C2836702|T037|PT|S30.857A|ICD10CM|Superficial foreign body of anus, initial encounter|Superficial foreign body of anus, initial encounter +C2836703|T037|AB|S30.857D|ICD10CM|Superficial foreign body of anus, subsequent encounter|Superficial foreign body of anus, subsequent encounter +C2836703|T037|PT|S30.857D|ICD10CM|Superficial foreign body of anus, subsequent encounter|Superficial foreign body of anus, subsequent encounter +C2836704|T037|AB|S30.857S|ICD10CM|Superficial foreign body of anus, sequela|Superficial foreign body of anus, sequela +C2836704|T037|PT|S30.857S|ICD10CM|Superficial foreign body of anus, sequela|Superficial foreign body of anus, sequela +C2836705|T037|HT|S30.86|ICD10CM|Insect bite (nonvenomous) of abdomen, lower back, pelvis and external genitals|Insect bite (nonvenomous) of abdomen, lower back, pelvis and external genitals +C2836705|T037|AB|S30.86|ICD10CM|Insect bite of abdomen, low back, pelvis and extrn genitals|Insect bite of abdomen, low back, pelvis and extrn genitals +C2836706|T037|AB|S30.860|ICD10CM|Insect bite (nonvenomous) of lower back and pelvis|Insect bite (nonvenomous) of lower back and pelvis +C2836706|T037|HT|S30.860|ICD10CM|Insect bite (nonvenomous) of lower back and pelvis|Insect bite (nonvenomous) of lower back and pelvis +C2836707|T037|AB|S30.860A|ICD10CM|Insect bite (nonvenomous) of lower back and pelvis, init|Insect bite (nonvenomous) of lower back and pelvis, init +C2836707|T037|PT|S30.860A|ICD10CM|Insect bite (nonvenomous) of lower back and pelvis, initial encounter|Insect bite (nonvenomous) of lower back and pelvis, initial encounter +C2836708|T037|AB|S30.860D|ICD10CM|Insect bite (nonvenomous) of lower back and pelvis, subs|Insect bite (nonvenomous) of lower back and pelvis, subs +C2836708|T037|PT|S30.860D|ICD10CM|Insect bite (nonvenomous) of lower back and pelvis, subsequent encounter|Insect bite (nonvenomous) of lower back and pelvis, subsequent encounter +C2836709|T037|AB|S30.860S|ICD10CM|Insect bite (nonvenomous) of lower back and pelvis, sequela|Insect bite (nonvenomous) of lower back and pelvis, sequela +C2836709|T037|PT|S30.860S|ICD10CM|Insect bite (nonvenomous) of lower back and pelvis, sequela|Insect bite (nonvenomous) of lower back and pelvis, sequela +C0433015|T037|AB|S30.861|ICD10CM|Insect bite (nonvenomous) of abdominal wall|Insect bite (nonvenomous) of abdominal wall +C0433015|T037|HT|S30.861|ICD10CM|Insect bite (nonvenomous) of abdominal wall|Insect bite (nonvenomous) of abdominal wall +C2836710|T037|AB|S30.861A|ICD10CM|Insect bite (nonvenomous) of abdominal wall, init encntr|Insect bite (nonvenomous) of abdominal wall, init encntr +C2836710|T037|PT|S30.861A|ICD10CM|Insect bite (nonvenomous) of abdominal wall, initial encounter|Insect bite (nonvenomous) of abdominal wall, initial encounter +C2836711|T037|AB|S30.861D|ICD10CM|Insect bite (nonvenomous) of abdominal wall, subs encntr|Insect bite (nonvenomous) of abdominal wall, subs encntr +C2836711|T037|PT|S30.861D|ICD10CM|Insect bite (nonvenomous) of abdominal wall, subsequent encounter|Insect bite (nonvenomous) of abdominal wall, subsequent encounter +C2836712|T037|AB|S30.861S|ICD10CM|Insect bite (nonvenomous) of abdominal wall, sequela|Insect bite (nonvenomous) of abdominal wall, sequela +C2836712|T037|PT|S30.861S|ICD10CM|Insect bite (nonvenomous) of abdominal wall, sequela|Insect bite (nonvenomous) of abdominal wall, sequela +C0433022|T037|AB|S30.862|ICD10CM|Insect bite (nonvenomous) of penis|Insect bite (nonvenomous) of penis +C0433022|T037|HT|S30.862|ICD10CM|Insect bite (nonvenomous) of penis|Insect bite (nonvenomous) of penis +C2836713|T037|AB|S30.862A|ICD10CM|Insect bite (nonvenomous) of penis, initial encounter|Insect bite (nonvenomous) of penis, initial encounter +C2836713|T037|PT|S30.862A|ICD10CM|Insect bite (nonvenomous) of penis, initial encounter|Insect bite (nonvenomous) of penis, initial encounter +C2836714|T037|AB|S30.862D|ICD10CM|Insect bite (nonvenomous) of penis, subsequent encounter|Insect bite (nonvenomous) of penis, subsequent encounter +C2836714|T037|PT|S30.862D|ICD10CM|Insect bite (nonvenomous) of penis, subsequent encounter|Insect bite (nonvenomous) of penis, subsequent encounter +C2836715|T037|AB|S30.862S|ICD10CM|Insect bite (nonvenomous) of penis, sequela|Insect bite (nonvenomous) of penis, sequela +C2836715|T037|PT|S30.862S|ICD10CM|Insect bite (nonvenomous) of penis, sequela|Insect bite (nonvenomous) of penis, sequela +C0433023|T037|AB|S30.863|ICD10CM|Insect bite (nonvenomous) of scrotum and testes|Insect bite (nonvenomous) of scrotum and testes +C0433023|T037|HT|S30.863|ICD10CM|Insect bite (nonvenomous) of scrotum and testes|Insect bite (nonvenomous) of scrotum and testes +C2836716|T037|AB|S30.863A|ICD10CM|Insect bite (nonvenomous) of scrotum and testes, init encntr|Insect bite (nonvenomous) of scrotum and testes, init encntr +C2836716|T037|PT|S30.863A|ICD10CM|Insect bite (nonvenomous) of scrotum and testes, initial encounter|Insect bite (nonvenomous) of scrotum and testes, initial encounter +C2836717|T037|AB|S30.863D|ICD10CM|Insect bite (nonvenomous) of scrotum and testes, subs encntr|Insect bite (nonvenomous) of scrotum and testes, subs encntr +C2836717|T037|PT|S30.863D|ICD10CM|Insect bite (nonvenomous) of scrotum and testes, subsequent encounter|Insect bite (nonvenomous) of scrotum and testes, subsequent encounter +C2836718|T037|AB|S30.863S|ICD10CM|Insect bite (nonvenomous) of scrotum and testes, sequela|Insect bite (nonvenomous) of scrotum and testes, sequela +C2836718|T037|PT|S30.863S|ICD10CM|Insect bite (nonvenomous) of scrotum and testes, sequela|Insect bite (nonvenomous) of scrotum and testes, sequela +C2836719|T037|AB|S30.864|ICD10CM|Insect bite (nonvenomous) of vagina and vulva|Insect bite (nonvenomous) of vagina and vulva +C2836719|T037|HT|S30.864|ICD10CM|Insect bite (nonvenomous) of vagina and vulva|Insect bite (nonvenomous) of vagina and vulva +C2836720|T037|AB|S30.864A|ICD10CM|Insect bite (nonvenomous) of vagina and vulva, init encntr|Insect bite (nonvenomous) of vagina and vulva, init encntr +C2836720|T037|PT|S30.864A|ICD10CM|Insect bite (nonvenomous) of vagina and vulva, initial encounter|Insect bite (nonvenomous) of vagina and vulva, initial encounter +C2836721|T037|AB|S30.864D|ICD10CM|Insect bite (nonvenomous) of vagina and vulva, subs encntr|Insect bite (nonvenomous) of vagina and vulva, subs encntr +C2836721|T037|PT|S30.864D|ICD10CM|Insect bite (nonvenomous) of vagina and vulva, subsequent encounter|Insect bite (nonvenomous) of vagina and vulva, subsequent encounter +C2836722|T037|AB|S30.864S|ICD10CM|Insect bite (nonvenomous) of vagina and vulva, sequela|Insect bite (nonvenomous) of vagina and vulva, sequela +C2836722|T037|PT|S30.864S|ICD10CM|Insect bite (nonvenomous) of vagina and vulva, sequela|Insect bite (nonvenomous) of vagina and vulva, sequela +C2836723|T037|HT|S30.865|ICD10CM|Insect bite (nonvenomous) of unspecified external genital organs, male|Insect bite (nonvenomous) of unspecified external genital organs, male +C2836723|T037|AB|S30.865|ICD10CM|Insect bite of unsp external genital organs, male|Insect bite of unsp external genital organs, male +C2836724|T037|PT|S30.865A|ICD10CM|Insect bite (nonvenomous) of unspecified external genital organs, male, initial encounter|Insect bite (nonvenomous) of unspecified external genital organs, male, initial encounter +C2836724|T037|AB|S30.865A|ICD10CM|Insect bite of unsp external genital organs, male, init|Insect bite of unsp external genital organs, male, init +C2836725|T037|PT|S30.865D|ICD10CM|Insect bite (nonvenomous) of unspecified external genital organs, male, subsequent encounter|Insect bite (nonvenomous) of unspecified external genital organs, male, subsequent encounter +C2836725|T037|AB|S30.865D|ICD10CM|Insect bite of unsp external genital organs, male, subs|Insect bite of unsp external genital organs, male, subs +C2836726|T037|PT|S30.865S|ICD10CM|Insect bite (nonvenomous) of unspecified external genital organs, male, sequela|Insect bite (nonvenomous) of unspecified external genital organs, male, sequela +C2836726|T037|AB|S30.865S|ICD10CM|Insect bite of unsp external genital organs, male, sequela|Insect bite of unsp external genital organs, male, sequela +C2836727|T037|HT|S30.866|ICD10CM|Insect bite (nonvenomous) of unspecified external genital organs, female|Insect bite (nonvenomous) of unspecified external genital organs, female +C2836727|T037|AB|S30.866|ICD10CM|Insect bite of unsp external genital organs, female|Insect bite of unsp external genital organs, female +C2836728|T037|PT|S30.866A|ICD10CM|Insect bite (nonvenomous) of unspecified external genital organs, female, initial encounter|Insect bite (nonvenomous) of unspecified external genital organs, female, initial encounter +C2836728|T037|AB|S30.866A|ICD10CM|Insect bite of unsp external genital organs, female, init|Insect bite of unsp external genital organs, female, init +C2836729|T037|PT|S30.866D|ICD10CM|Insect bite (nonvenomous) of unspecified external genital organs, female, subsequent encounter|Insect bite (nonvenomous) of unspecified external genital organs, female, subsequent encounter +C2836729|T037|AB|S30.866D|ICD10CM|Insect bite of unsp external genital organs, female, subs|Insect bite of unsp external genital organs, female, subs +C2836730|T037|PT|S30.866S|ICD10CM|Insect bite (nonvenomous) of unspecified external genital organs, female, sequela|Insect bite (nonvenomous) of unspecified external genital organs, female, sequela +C2836730|T037|AB|S30.866S|ICD10CM|Insect bite of unsp external genital organs, female, sequela|Insect bite of unsp external genital organs, female, sequela +C0433018|T037|AB|S30.867|ICD10CM|Insect bite (nonvenomous) of anus|Insect bite (nonvenomous) of anus +C0433018|T037|HT|S30.867|ICD10CM|Insect bite (nonvenomous) of anus|Insect bite (nonvenomous) of anus +C2836731|T037|AB|S30.867A|ICD10CM|Insect bite (nonvenomous) of anus, initial encounter|Insect bite (nonvenomous) of anus, initial encounter +C2836731|T037|PT|S30.867A|ICD10CM|Insect bite (nonvenomous) of anus, initial encounter|Insect bite (nonvenomous) of anus, initial encounter +C2836732|T037|AB|S30.867D|ICD10CM|Insect bite (nonvenomous) of anus, subsequent encounter|Insect bite (nonvenomous) of anus, subsequent encounter +C2836732|T037|PT|S30.867D|ICD10CM|Insect bite (nonvenomous) of anus, subsequent encounter|Insect bite (nonvenomous) of anus, subsequent encounter +C2836733|T037|AB|S30.867S|ICD10CM|Insect bite (nonvenomous) of anus, sequela|Insect bite (nonvenomous) of anus, sequela +C2836733|T037|PT|S30.867S|ICD10CM|Insect bite (nonvenomous) of anus, sequela|Insect bite (nonvenomous) of anus, sequela +C2836734|T037|AB|S30.87|ICD10CM|Oth superfic bite of abd, low back, pelv and extrn genitals|Oth superfic bite of abd, low back, pelv and extrn genitals +C2836734|T037|HT|S30.87|ICD10CM|Other superficial bite of abdomen, lower back, pelvis and external genitals|Other superficial bite of abdomen, lower back, pelvis and external genitals +C2836735|T037|AB|S30.870|ICD10CM|Other superficial bite of lower back and pelvis|Other superficial bite of lower back and pelvis +C2836735|T037|HT|S30.870|ICD10CM|Other superficial bite of lower back and pelvis|Other superficial bite of lower back and pelvis +C2836736|T037|AB|S30.870A|ICD10CM|Other superficial bite of lower back and pelvis, init encntr|Other superficial bite of lower back and pelvis, init encntr +C2836736|T037|PT|S30.870A|ICD10CM|Other superficial bite of lower back and pelvis, initial encounter|Other superficial bite of lower back and pelvis, initial encounter +C2836737|T037|AB|S30.870D|ICD10CM|Other superficial bite of lower back and pelvis, subs encntr|Other superficial bite of lower back and pelvis, subs encntr +C2836737|T037|PT|S30.870D|ICD10CM|Other superficial bite of lower back and pelvis, subsequent encounter|Other superficial bite of lower back and pelvis, subsequent encounter +C2836738|T037|AB|S30.870S|ICD10CM|Other superficial bite of lower back and pelvis, sequela|Other superficial bite of lower back and pelvis, sequela +C2836738|T037|PT|S30.870S|ICD10CM|Other superficial bite of lower back and pelvis, sequela|Other superficial bite of lower back and pelvis, sequela +C2836739|T037|AB|S30.871|ICD10CM|Other superficial bite of abdominal wall|Other superficial bite of abdominal wall +C2836739|T037|HT|S30.871|ICD10CM|Other superficial bite of abdominal wall|Other superficial bite of abdominal wall +C2836740|T037|AB|S30.871A|ICD10CM|Other superficial bite of abdominal wall, initial encounter|Other superficial bite of abdominal wall, initial encounter +C2836740|T037|PT|S30.871A|ICD10CM|Other superficial bite of abdominal wall, initial encounter|Other superficial bite of abdominal wall, initial encounter +C2836741|T037|AB|S30.871D|ICD10CM|Other superficial bite of abdominal wall, subs encntr|Other superficial bite of abdominal wall, subs encntr +C2836741|T037|PT|S30.871D|ICD10CM|Other superficial bite of abdominal wall, subsequent encounter|Other superficial bite of abdominal wall, subsequent encounter +C2836742|T037|AB|S30.871S|ICD10CM|Other superficial bite of abdominal wall, sequela|Other superficial bite of abdominal wall, sequela +C2836742|T037|PT|S30.871S|ICD10CM|Other superficial bite of abdominal wall, sequela|Other superficial bite of abdominal wall, sequela +C2836743|T037|AB|S30.872|ICD10CM|Other superficial bite of penis|Other superficial bite of penis +C2836743|T037|HT|S30.872|ICD10CM|Other superficial bite of penis|Other superficial bite of penis +C2836744|T037|AB|S30.872A|ICD10CM|Other superficial bite of penis, initial encounter|Other superficial bite of penis, initial encounter +C2836744|T037|PT|S30.872A|ICD10CM|Other superficial bite of penis, initial encounter|Other superficial bite of penis, initial encounter +C2836745|T037|AB|S30.872D|ICD10CM|Other superficial bite of penis, subsequent encounter|Other superficial bite of penis, subsequent encounter +C2836745|T037|PT|S30.872D|ICD10CM|Other superficial bite of penis, subsequent encounter|Other superficial bite of penis, subsequent encounter +C2836746|T037|AB|S30.872S|ICD10CM|Other superficial bite of penis, sequela|Other superficial bite of penis, sequela +C2836746|T037|PT|S30.872S|ICD10CM|Other superficial bite of penis, sequela|Other superficial bite of penis, sequela +C2836747|T037|AB|S30.873|ICD10CM|Other superficial bite of scrotum and testes|Other superficial bite of scrotum and testes +C2836747|T037|HT|S30.873|ICD10CM|Other superficial bite of scrotum and testes|Other superficial bite of scrotum and testes +C2836748|T037|AB|S30.873A|ICD10CM|Other superficial bite of scrotum and testes, init encntr|Other superficial bite of scrotum and testes, init encntr +C2836748|T037|PT|S30.873A|ICD10CM|Other superficial bite of scrotum and testes, initial encounter|Other superficial bite of scrotum and testes, initial encounter +C2836749|T037|AB|S30.873D|ICD10CM|Other superficial bite of scrotum and testes, subs encntr|Other superficial bite of scrotum and testes, subs encntr +C2836749|T037|PT|S30.873D|ICD10CM|Other superficial bite of scrotum and testes, subsequent encounter|Other superficial bite of scrotum and testes, subsequent encounter +C2836750|T037|AB|S30.873S|ICD10CM|Other superficial bite of scrotum and testes, sequela|Other superficial bite of scrotum and testes, sequela +C2836750|T037|PT|S30.873S|ICD10CM|Other superficial bite of scrotum and testes, sequela|Other superficial bite of scrotum and testes, sequela +C2836751|T037|AB|S30.874|ICD10CM|Other superficial bite of vagina and vulva|Other superficial bite of vagina and vulva +C2836751|T037|HT|S30.874|ICD10CM|Other superficial bite of vagina and vulva|Other superficial bite of vagina and vulva +C2836752|T037|AB|S30.874A|ICD10CM|Other superficial bite of vagina and vulva, init encntr|Other superficial bite of vagina and vulva, init encntr +C2836752|T037|PT|S30.874A|ICD10CM|Other superficial bite of vagina and vulva, initial encounter|Other superficial bite of vagina and vulva, initial encounter +C2836753|T037|AB|S30.874D|ICD10CM|Other superficial bite of vagina and vulva, subs encntr|Other superficial bite of vagina and vulva, subs encntr +C2836753|T037|PT|S30.874D|ICD10CM|Other superficial bite of vagina and vulva, subsequent encounter|Other superficial bite of vagina and vulva, subsequent encounter +C2836754|T037|AB|S30.874S|ICD10CM|Other superficial bite of vagina and vulva, sequela|Other superficial bite of vagina and vulva, sequela +C2836754|T037|PT|S30.874S|ICD10CM|Other superficial bite of vagina and vulva, sequela|Other superficial bite of vagina and vulva, sequela +C2836755|T037|AB|S30.875|ICD10CM|Other superficial bite of unsp external genital organs, male|Other superficial bite of unsp external genital organs, male +C2836755|T037|HT|S30.875|ICD10CM|Other superficial bite of unspecified external genital organs, male|Other superficial bite of unspecified external genital organs, male +C2836756|T037|AB|S30.875A|ICD10CM|Oth superfic bite of unsp extrn genital organs, male, init|Oth superfic bite of unsp extrn genital organs, male, init +C2836756|T037|PT|S30.875A|ICD10CM|Other superficial bite of unspecified external genital organs, male, initial encounter|Other superficial bite of unspecified external genital organs, male, initial encounter +C2836757|T037|AB|S30.875D|ICD10CM|Oth superfic bite of unsp extrn genital organs, male, subs|Oth superfic bite of unsp extrn genital organs, male, subs +C2836757|T037|PT|S30.875D|ICD10CM|Other superficial bite of unspecified external genital organs, male, subsequent encounter|Other superficial bite of unspecified external genital organs, male, subsequent encounter +C2836758|T037|AB|S30.875S|ICD10CM|Oth superfic bite of unsp extrn gntl organs, male, sequela|Oth superfic bite of unsp extrn gntl organs, male, sequela +C2836758|T037|PT|S30.875S|ICD10CM|Other superficial bite of unspecified external genital organs, male, sequela|Other superficial bite of unspecified external genital organs, male, sequela +C2836759|T037|AB|S30.876|ICD10CM|Oth superficial bite of unsp external genital organs, female|Oth superficial bite of unsp external genital organs, female +C2836759|T037|HT|S30.876|ICD10CM|Other superficial bite of unspecified external genital organs, female|Other superficial bite of unspecified external genital organs, female +C2836760|T037|AB|S30.876A|ICD10CM|Oth superfic bite of unsp extrn genital organs, female, init|Oth superfic bite of unsp extrn genital organs, female, init +C2836760|T037|PT|S30.876A|ICD10CM|Other superficial bite of unspecified external genital organs, female, initial encounter|Other superficial bite of unspecified external genital organs, female, initial encounter +C2836761|T037|AB|S30.876D|ICD10CM|Oth superfic bite of unsp extrn genital organs, female, subs|Oth superfic bite of unsp extrn genital organs, female, subs +C2836761|T037|PT|S30.876D|ICD10CM|Other superficial bite of unspecified external genital organs, female, subsequent encounter|Other superficial bite of unspecified external genital organs, female, subsequent encounter +C2836762|T037|AB|S30.876S|ICD10CM|Oth superfic bite of unsp extrn gntl organs, female, sequela|Oth superfic bite of unsp extrn gntl organs, female, sequela +C2836762|T037|PT|S30.876S|ICD10CM|Other superficial bite of unspecified external genital organs, female, sequela|Other superficial bite of unspecified external genital organs, female, sequela +C2836763|T037|AB|S30.877|ICD10CM|Other superficial bite of anus|Other superficial bite of anus +C2836763|T037|HT|S30.877|ICD10CM|Other superficial bite of anus|Other superficial bite of anus +C2836764|T037|AB|S30.877A|ICD10CM|Other superficial bite of anus, initial encounter|Other superficial bite of anus, initial encounter +C2836764|T037|PT|S30.877A|ICD10CM|Other superficial bite of anus, initial encounter|Other superficial bite of anus, initial encounter +C2836765|T037|AB|S30.877D|ICD10CM|Other superficial bite of anus, subsequent encounter|Other superficial bite of anus, subsequent encounter +C2836765|T037|PT|S30.877D|ICD10CM|Other superficial bite of anus, subsequent encounter|Other superficial bite of anus, subsequent encounter +C2836766|T037|AB|S30.877S|ICD10CM|Other superficial bite of anus, sequela|Other superficial bite of anus, sequela +C2836766|T037|PT|S30.877S|ICD10CM|Other superficial bite of anus, sequela|Other superficial bite of anus, sequela +C0478251|T037|PT|S30.9|ICD10|Superficial injury of abdomen, lower back and pelvis, part unspecified|Superficial injury of abdomen, lower back and pelvis, part unspecified +C2836767|T037|AB|S30.9|ICD10CM|Unsp superfic inj abd, low back, pelvis and extrn genitals|Unsp superfic inj abd, low back, pelvis and extrn genitals +C2836767|T037|HT|S30.9|ICD10CM|Unspecified superficial injury of abdomen, lower back, pelvis and external genitals|Unspecified superficial injury of abdomen, lower back, pelvis and external genitals +C2836768|T037|AB|S30.91|ICD10CM|Unspecified superficial injury of lower back and pelvis|Unspecified superficial injury of lower back and pelvis +C2836768|T037|HT|S30.91|ICD10CM|Unspecified superficial injury of lower back and pelvis|Unspecified superficial injury of lower back and pelvis +C2836769|T037|AB|S30.91XA|ICD10CM|Unsp superficial injury of lower back and pelvis, init|Unsp superficial injury of lower back and pelvis, init +C2836769|T037|PT|S30.91XA|ICD10CM|Unspecified superficial injury of lower back and pelvis, initial encounter|Unspecified superficial injury of lower back and pelvis, initial encounter +C2836770|T037|AB|S30.91XD|ICD10CM|Unsp superficial injury of lower back and pelvis, subs|Unsp superficial injury of lower back and pelvis, subs +C2836770|T037|PT|S30.91XD|ICD10CM|Unspecified superficial injury of lower back and pelvis, subsequent encounter|Unspecified superficial injury of lower back and pelvis, subsequent encounter +C2836771|T037|AB|S30.91XS|ICD10CM|Unsp superficial injury of lower back and pelvis, sequela|Unsp superficial injury of lower back and pelvis, sequela +C2836771|T037|PT|S30.91XS|ICD10CM|Unspecified superficial injury of lower back and pelvis, sequela|Unspecified superficial injury of lower back and pelvis, sequela +C2836772|T037|AB|S30.92|ICD10CM|Unspecified superficial injury of abdominal wall|Unspecified superficial injury of abdominal wall +C2836772|T037|HT|S30.92|ICD10CM|Unspecified superficial injury of abdominal wall|Unspecified superficial injury of abdominal wall +C2836773|T037|AB|S30.92XA|ICD10CM|Unsp superficial injury of abdominal wall, init encntr|Unsp superficial injury of abdominal wall, init encntr +C2836773|T037|PT|S30.92XA|ICD10CM|Unspecified superficial injury of abdominal wall, initial encounter|Unspecified superficial injury of abdominal wall, initial encounter +C2836774|T037|AB|S30.92XD|ICD10CM|Unsp superficial injury of abdominal wall, subs encntr|Unsp superficial injury of abdominal wall, subs encntr +C2836774|T037|PT|S30.92XD|ICD10CM|Unspecified superficial injury of abdominal wall, subsequent encounter|Unspecified superficial injury of abdominal wall, subsequent encounter +C2836775|T037|AB|S30.92XS|ICD10CM|Unspecified superficial injury of abdominal wall, sequela|Unspecified superficial injury of abdominal wall, sequela +C2836775|T037|PT|S30.92XS|ICD10CM|Unspecified superficial injury of abdominal wall, sequela|Unspecified superficial injury of abdominal wall, sequela +C2836776|T037|AB|S30.93|ICD10CM|Unspecified superficial injury of penis|Unspecified superficial injury of penis +C2836776|T037|HT|S30.93|ICD10CM|Unspecified superficial injury of penis|Unspecified superficial injury of penis +C2836777|T037|AB|S30.93XA|ICD10CM|Unspecified superficial injury of penis, initial encounter|Unspecified superficial injury of penis, initial encounter +C2836777|T037|PT|S30.93XA|ICD10CM|Unspecified superficial injury of penis, initial encounter|Unspecified superficial injury of penis, initial encounter +C2836778|T037|AB|S30.93XD|ICD10CM|Unspecified superficial injury of penis, subs encntr|Unspecified superficial injury of penis, subs encntr +C2836778|T037|PT|S30.93XD|ICD10CM|Unspecified superficial injury of penis, subsequent encounter|Unspecified superficial injury of penis, subsequent encounter +C2836779|T037|AB|S30.93XS|ICD10CM|Unspecified superficial injury of penis, sequela|Unspecified superficial injury of penis, sequela +C2836779|T037|PT|S30.93XS|ICD10CM|Unspecified superficial injury of penis, sequela|Unspecified superficial injury of penis, sequela +C2836780|T037|AB|S30.94|ICD10CM|Unspecified superficial injury of scrotum and testes|Unspecified superficial injury of scrotum and testes +C2836780|T037|HT|S30.94|ICD10CM|Unspecified superficial injury of scrotum and testes|Unspecified superficial injury of scrotum and testes +C2836781|T037|AB|S30.94XA|ICD10CM|Unsp superficial injury of scrotum and testes, init encntr|Unsp superficial injury of scrotum and testes, init encntr +C2836781|T037|PT|S30.94XA|ICD10CM|Unspecified superficial injury of scrotum and testes, initial encounter|Unspecified superficial injury of scrotum and testes, initial encounter +C2836782|T037|AB|S30.94XD|ICD10CM|Unsp superficial injury of scrotum and testes, subs encntr|Unsp superficial injury of scrotum and testes, subs encntr +C2836782|T037|PT|S30.94XD|ICD10CM|Unspecified superficial injury of scrotum and testes, subsequent encounter|Unspecified superficial injury of scrotum and testes, subsequent encounter +C2836783|T037|AB|S30.94XS|ICD10CM|Unsp superficial injury of scrotum and testes, sequela|Unsp superficial injury of scrotum and testes, sequela +C2836783|T037|PT|S30.94XS|ICD10CM|Unspecified superficial injury of scrotum and testes, sequela|Unspecified superficial injury of scrotum and testes, sequela +C2836784|T037|AB|S30.95|ICD10CM|Unspecified superficial injury of vagina and vulva|Unspecified superficial injury of vagina and vulva +C2836784|T037|HT|S30.95|ICD10CM|Unspecified superficial injury of vagina and vulva|Unspecified superficial injury of vagina and vulva +C2836785|T037|AB|S30.95XA|ICD10CM|Unsp superficial injury of vagina and vulva, init encntr|Unsp superficial injury of vagina and vulva, init encntr +C2836785|T037|PT|S30.95XA|ICD10CM|Unspecified superficial injury of vagina and vulva, initial encounter|Unspecified superficial injury of vagina and vulva, initial encounter +C2836786|T037|AB|S30.95XD|ICD10CM|Unsp superficial injury of vagina and vulva, subs encntr|Unsp superficial injury of vagina and vulva, subs encntr +C2836786|T037|PT|S30.95XD|ICD10CM|Unspecified superficial injury of vagina and vulva, subsequent encounter|Unspecified superficial injury of vagina and vulva, subsequent encounter +C2836787|T037|AB|S30.95XS|ICD10CM|Unspecified superficial injury of vagina and vulva, sequela|Unspecified superficial injury of vagina and vulva, sequela +C2836787|T037|PT|S30.95XS|ICD10CM|Unspecified superficial injury of vagina and vulva, sequela|Unspecified superficial injury of vagina and vulva, sequela +C2836788|T037|AB|S30.96|ICD10CM|Unsp superfic injury of unsp external genital organs, male|Unsp superfic injury of unsp external genital organs, male +C2836788|T037|HT|S30.96|ICD10CM|Unspecified superficial injury of unspecified external genital organs, male|Unspecified superficial injury of unspecified external genital organs, male +C2836789|T037|AB|S30.96XA|ICD10CM|Unsp superfic inj unsp external genital organs, male, init|Unsp superfic inj unsp external genital organs, male, init +C2836789|T037|PT|S30.96XA|ICD10CM|Unspecified superficial injury of unspecified external genital organs, male, initial encounter|Unspecified superficial injury of unspecified external genital organs, male, initial encounter +C2836790|T037|AB|S30.96XD|ICD10CM|Unsp superfic inj unsp external genital organs, male, subs|Unsp superfic inj unsp external genital organs, male, subs +C2836790|T037|PT|S30.96XD|ICD10CM|Unspecified superficial injury of unspecified external genital organs, male, subsequent encounter|Unspecified superficial injury of unspecified external genital organs, male, subsequent encounter +C2836791|T037|AB|S30.96XS|ICD10CM|Unsp superfic inj unsp extrn genital organs, male, sequela|Unsp superfic inj unsp extrn genital organs, male, sequela +C2836791|T037|PT|S30.96XS|ICD10CM|Unspecified superficial injury of unspecified external genital organs, male, sequela|Unspecified superficial injury of unspecified external genital organs, male, sequela +C2836792|T037|AB|S30.97|ICD10CM|Unsp superfic injury of unsp external genital organs, female|Unsp superfic injury of unsp external genital organs, female +C2836792|T037|HT|S30.97|ICD10CM|Unspecified superficial injury of unspecified external genital organs, female|Unspecified superficial injury of unspecified external genital organs, female +C2836793|T037|AB|S30.97XA|ICD10CM|Unsp superfic inj unsp external genital organs, female, init|Unsp superfic inj unsp external genital organs, female, init +C2836793|T037|PT|S30.97XA|ICD10CM|Unspecified superficial injury of unspecified external genital organs, female, initial encounter|Unspecified superficial injury of unspecified external genital organs, female, initial encounter +C2836794|T037|AB|S30.97XD|ICD10CM|Unsp superfic inj unsp external genital organs, female, subs|Unsp superfic inj unsp external genital organs, female, subs +C2836794|T037|PT|S30.97XD|ICD10CM|Unspecified superficial injury of unspecified external genital organs, female, subsequent encounter|Unspecified superficial injury of unspecified external genital organs, female, subsequent encounter +C2836795|T037|AB|S30.97XS|ICD10CM|Unsp superfic inj unsp extrn genital organs, female, sequela|Unsp superfic inj unsp extrn genital organs, female, sequela +C2836795|T037|PT|S30.97XS|ICD10CM|Unspecified superficial injury of unspecified external genital organs, female, sequela|Unspecified superficial injury of unspecified external genital organs, female, sequela +C2836796|T037|AB|S30.98|ICD10CM|Unspecified superficial injury of anus|Unspecified superficial injury of anus +C2836796|T037|HT|S30.98|ICD10CM|Unspecified superficial injury of anus|Unspecified superficial injury of anus +C2836797|T037|AB|S30.98XA|ICD10CM|Unspecified superficial injury of anus, initial encounter|Unspecified superficial injury of anus, initial encounter +C2836797|T037|PT|S30.98XA|ICD10CM|Unspecified superficial injury of anus, initial encounter|Unspecified superficial injury of anus, initial encounter +C2836798|T037|AB|S30.98XD|ICD10CM|Unspecified superficial injury of anus, subsequent encounter|Unspecified superficial injury of anus, subsequent encounter +C2836798|T037|PT|S30.98XD|ICD10CM|Unspecified superficial injury of anus, subsequent encounter|Unspecified superficial injury of anus, subsequent encounter +C2836799|T037|AB|S30.98XS|ICD10CM|Unspecified superficial injury of anus, sequela|Unspecified superficial injury of anus, sequela +C2836799|T037|PT|S30.98XS|ICD10CM|Unspecified superficial injury of anus, sequela|Unspecified superficial injury of anus, sequela +C0495839|T037|HT|S31|ICD10|Open wound of abdomen, lower back and pelvis|Open wound of abdomen, lower back and pelvis +C2836800|T037|HT|S31|ICD10CM|Open wound of abdomen, lower back, pelvis and external genitals|Open wound of abdomen, lower back, pelvis and external genitals +C2836800|T037|AB|S31|ICD10CM|Opn wnd abdomen, lower back, pelvis and external genitals|Opn wnd abdomen, lower back, pelvis and external genitals +C0495840|T037|PT|S31.0|ICD10|Open wound of lower back and pelvis|Open wound of lower back and pelvis +C0495840|T037|HT|S31.0|ICD10CM|Open wound of lower back and pelvis|Open wound of lower back and pelvis +C0495840|T037|AB|S31.0|ICD10CM|Open wound of lower back and pelvis|Open wound of lower back and pelvis +C2836801|T037|AB|S31.00|ICD10CM|Unspecified open wound of lower back and pelvis|Unspecified open wound of lower back and pelvis +C2836801|T037|HT|S31.00|ICD10CM|Unspecified open wound of lower back and pelvis|Unspecified open wound of lower back and pelvis +C2836802|T037|AB|S31.000|ICD10CM|Unsp opn wnd lower back and pelvis w/o penet retroperiton|Unsp opn wnd lower back and pelvis w/o penet retroperiton +C2836801|T037|ET|S31.000|ICD10CM|Unspecified open wound of lower back and pelvis NOS|Unspecified open wound of lower back and pelvis NOS +C2836802|T037|HT|S31.000|ICD10CM|Unspecified open wound of lower back and pelvis without penetration into retroperitoneum|Unspecified open wound of lower back and pelvis without penetration into retroperitoneum +C2836803|T037|AB|S31.000A|ICD10CM|Unsp opn wnd low back and pelv w/o penet retroperiton, init|Unsp opn wnd low back and pelv w/o penet retroperiton, init +C2836804|T037|AB|S31.000D|ICD10CM|Unsp opn wnd low back and pelv w/o penet retroperiton, subs|Unsp opn wnd low back and pelv w/o penet retroperiton, subs +C2836805|T037|AB|S31.000S|ICD10CM|Unsp opn wnd low back and pelv w/o penet retroperiton, sqla|Unsp opn wnd low back and pelv w/o penet retroperiton, sqla +C2836805|T037|PT|S31.000S|ICD10CM|Unspecified open wound of lower back and pelvis without penetration into retroperitoneum, sequela|Unspecified open wound of lower back and pelvis without penetration into retroperitoneum, sequela +C2836806|T037|AB|S31.001|ICD10CM|Unsp opn wnd lower back and pelvis w penet retroperiton|Unsp opn wnd lower back and pelvis w penet retroperiton +C2836806|T037|HT|S31.001|ICD10CM|Unspecified open wound of lower back and pelvis with penetration into retroperitoneum|Unspecified open wound of lower back and pelvis with penetration into retroperitoneum +C2836807|T037|AB|S31.001A|ICD10CM|Unsp opn wnd low back and pelvis w penet retroperiton, init|Unsp opn wnd low back and pelvis w penet retroperiton, init +C2836808|T037|AB|S31.001D|ICD10CM|Unsp opn wnd low back and pelvis w penet retroperiton, subs|Unsp opn wnd low back and pelvis w penet retroperiton, subs +C2836809|T037|AB|S31.001S|ICD10CM|Unsp opn wnd low back and pelvis w penet retroperiton, sqla|Unsp opn wnd low back and pelvis w penet retroperiton, sqla +C2836809|T037|PT|S31.001S|ICD10CM|Unspecified open wound of lower back and pelvis with penetration into retroperitoneum, sequela|Unspecified open wound of lower back and pelvis with penetration into retroperitoneum, sequela +C2836810|T037|AB|S31.01|ICD10CM|Laceration without foreign body of lower back and pelvis|Laceration without foreign body of lower back and pelvis +C2836810|T037|HT|S31.01|ICD10CM|Laceration without foreign body of lower back and pelvis|Laceration without foreign body of lower back and pelvis +C2836811|T037|AB|S31.010|ICD10CM|Lac w/o fb of lower back and pelvis w/o penet retroperiton|Lac w/o fb of lower back and pelvis w/o penet retroperiton +C2836810|T037|ET|S31.010|ICD10CM|Laceration without foreign body of lower back and pelvis NOS|Laceration without foreign body of lower back and pelvis NOS +C2836811|T037|HT|S31.010|ICD10CM|Laceration without foreign body of lower back and pelvis without penetration into retroperitoneum|Laceration without foreign body of lower back and pelvis without penetration into retroperitoneum +C2836812|T037|AB|S31.010A|ICD10CM|Lac w/o fb of low back and pelv w/o penet retroperiton, init|Lac w/o fb of low back and pelv w/o penet retroperiton, init +C2836813|T037|AB|S31.010D|ICD10CM|Lac w/o fb of low back and pelv w/o penet retroperiton, subs|Lac w/o fb of low back and pelv w/o penet retroperiton, subs +C2836814|T037|AB|S31.010S|ICD10CM|Lac w/o fb of low back and pelv w/o penet retroperiton, sqla|Lac w/o fb of low back and pelv w/o penet retroperiton, sqla +C2836815|T037|AB|S31.011|ICD10CM|Lac w/o fb of lower back and pelvis w penet retroperiton|Lac w/o fb of lower back and pelvis w penet retroperiton +C2836815|T037|HT|S31.011|ICD10CM|Laceration without foreign body of lower back and pelvis with penetration into retroperitoneum|Laceration without foreign body of lower back and pelvis with penetration into retroperitoneum +C2836816|T037|AB|S31.011A|ICD10CM|Lac w/o fb of low back and pelvis w penet retroperiton, init|Lac w/o fb of low back and pelvis w penet retroperiton, init +C2836817|T037|AB|S31.011D|ICD10CM|Lac w/o fb of low back and pelvis w penet retroperiton, subs|Lac w/o fb of low back and pelvis w penet retroperiton, subs +C2836818|T037|AB|S31.011S|ICD10CM|Lac w/o fb of low back and pelvis w penet retroperiton, sqla|Lac w/o fb of low back and pelvis w penet retroperiton, sqla +C2836819|T037|AB|S31.02|ICD10CM|Laceration with foreign body of lower back and pelvis|Laceration with foreign body of lower back and pelvis +C2836819|T037|HT|S31.02|ICD10CM|Laceration with foreign body of lower back and pelvis|Laceration with foreign body of lower back and pelvis +C2836820|T037|AB|S31.020|ICD10CM|Lac w fb of lower back and pelvis w/o penet retroperiton|Lac w fb of lower back and pelvis w/o penet retroperiton +C2836819|T037|ET|S31.020|ICD10CM|Laceration with foreign body of lower back and pelvis NOS|Laceration with foreign body of lower back and pelvis NOS +C2836820|T037|HT|S31.020|ICD10CM|Laceration with foreign body of lower back and pelvis without penetration into retroperitoneum|Laceration with foreign body of lower back and pelvis without penetration into retroperitoneum +C2836821|T037|AB|S31.020A|ICD10CM|Lac w fb of low back and pelvis w/o penet retroperiton, init|Lac w fb of low back and pelvis w/o penet retroperiton, init +C2836822|T037|AB|S31.020D|ICD10CM|Lac w fb of low back and pelvis w/o penet retroperiton, subs|Lac w fb of low back and pelvis w/o penet retroperiton, subs +C2836823|T037|AB|S31.020S|ICD10CM|Lac w fb of low back and pelvis w/o penet retroperiton, sqla|Lac w fb of low back and pelvis w/o penet retroperiton, sqla +C2836824|T037|AB|S31.021|ICD10CM|Lac w fb of lower back and pelvis w penet retroperiton|Lac w fb of lower back and pelvis w penet retroperiton +C2836824|T037|HT|S31.021|ICD10CM|Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum|Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum +C2836825|T037|AB|S31.021A|ICD10CM|Lac w fb of lower back and pelvis w penet retroperiton, init|Lac w fb of lower back and pelvis w penet retroperiton, init +C2836826|T037|AB|S31.021D|ICD10CM|Lac w fb of lower back and pelvis w penet retroperiton, subs|Lac w fb of lower back and pelvis w penet retroperiton, subs +C2836827|T037|AB|S31.021S|ICD10CM|Lac w fb of low back and pelvis w penet retroperiton, sqla|Lac w fb of low back and pelvis w penet retroperiton, sqla +C2836827|T037|PT|S31.021S|ICD10CM|Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum, sequela|Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum, sequela +C2836828|T037|AB|S31.03|ICD10CM|Puncture wound without foreign body of lower back and pelvis|Puncture wound without foreign body of lower back and pelvis +C2836828|T037|HT|S31.03|ICD10CM|Puncture wound without foreign body of lower back and pelvis|Puncture wound without foreign body of lower back and pelvis +C2836829|T037|AB|S31.030|ICD10CM|Pnctr w/o fb of lower back and pelvis w/o penet retroperiton|Pnctr w/o fb of lower back and pelvis w/o penet retroperiton +C2836828|T037|ET|S31.030|ICD10CM|Puncture wound without foreign body of lower back and pelvis NOS|Puncture wound without foreign body of lower back and pelvis NOS +C2836830|T037|AB|S31.030A|ICD10CM|Pnctr w/o fb of low back & pelv w/o penet retroperiton, init|Pnctr w/o fb of low back & pelv w/o penet retroperiton, init +C2836831|T037|AB|S31.030D|ICD10CM|Pnctr w/o fb of low back & pelv w/o penet retroperiton, subs|Pnctr w/o fb of low back & pelv w/o penet retroperiton, subs +C2836832|T037|AB|S31.030S|ICD10CM|Pnctr w/o fb of low back & pelv w/o penet retroperiton, sqla|Pnctr w/o fb of low back & pelv w/o penet retroperiton, sqla +C2836833|T037|AB|S31.031|ICD10CM|Pnctr w/o fb of lower back and pelvis w penet retroperiton|Pnctr w/o fb of lower back and pelvis w penet retroperiton +C2836833|T037|HT|S31.031|ICD10CM|Puncture wound without foreign body of lower back and pelvis with penetration into retroperitoneum|Puncture wound without foreign body of lower back and pelvis with penetration into retroperitoneum +C2836834|T037|AB|S31.031A|ICD10CM|Pnctr w/o fb of low back and pelv w penet retroperiton, init|Pnctr w/o fb of low back and pelv w penet retroperiton, init +C2836835|T037|AB|S31.031D|ICD10CM|Pnctr w/o fb of low back and pelv w penet retroperiton, subs|Pnctr w/o fb of low back and pelv w penet retroperiton, subs +C2836836|T037|AB|S31.031S|ICD10CM|Pnctr w/o fb of low back and pelv w penet retroperiton, sqla|Pnctr w/o fb of low back and pelv w penet retroperiton, sqla +C2836837|T037|AB|S31.04|ICD10CM|Puncture wound with foreign body of lower back and pelvis|Puncture wound with foreign body of lower back and pelvis +C2836837|T037|HT|S31.04|ICD10CM|Puncture wound with foreign body of lower back and pelvis|Puncture wound with foreign body of lower back and pelvis +C2836838|T037|AB|S31.040|ICD10CM|Pnctr w fb of lower back and pelvis w/o penet retroperiton|Pnctr w fb of lower back and pelvis w/o penet retroperiton +C2836837|T037|ET|S31.040|ICD10CM|Puncture wound with foreign body of lower back and pelvis NOS|Puncture wound with foreign body of lower back and pelvis NOS +C2836838|T037|HT|S31.040|ICD10CM|Puncture wound with foreign body of lower back and pelvis without penetration into retroperitoneum|Puncture wound with foreign body of lower back and pelvis without penetration into retroperitoneum +C2836839|T037|AB|S31.040A|ICD10CM|Pnctr w fb of low back and pelv w/o penet retroperiton, init|Pnctr w fb of low back and pelv w/o penet retroperiton, init +C2836840|T037|AB|S31.040D|ICD10CM|Pnctr w fb of low back and pelv w/o penet retroperiton, subs|Pnctr w fb of low back and pelv w/o penet retroperiton, subs +C2836841|T037|AB|S31.040S|ICD10CM|Pnctr w fb of low back and pelv w/o penet retroperiton, sqla|Pnctr w fb of low back and pelv w/o penet retroperiton, sqla +C2836842|T037|AB|S31.041|ICD10CM|Pnctr w fb of lower back and pelvis w penet retroperiton|Pnctr w fb of lower back and pelvis w penet retroperiton +C2836842|T037|HT|S31.041|ICD10CM|Puncture wound with foreign body of lower back and pelvis with penetration into retroperitoneum|Puncture wound with foreign body of lower back and pelvis with penetration into retroperitoneum +C2836843|T037|AB|S31.041A|ICD10CM|Pnctr w fb of low back and pelvis w penet retroperiton, init|Pnctr w fb of low back and pelvis w penet retroperiton, init +C2836844|T037|AB|S31.041D|ICD10CM|Pnctr w fb of low back and pelvis w penet retroperiton, subs|Pnctr w fb of low back and pelvis w penet retroperiton, subs +C2836845|T037|AB|S31.041S|ICD10CM|Pnctr w fb of low back and pelvis w penet retroperiton, sqla|Pnctr w fb of low back and pelvis w penet retroperiton, sqla +C2836846|T037|ET|S31.05|ICD10CM|Bite of lower back and pelvis NOS|Bite of lower back and pelvis NOS +C2836847|T037|AB|S31.05|ICD10CM|Open bite of lower back and pelvis|Open bite of lower back and pelvis +C2836847|T037|HT|S31.05|ICD10CM|Open bite of lower back and pelvis|Open bite of lower back and pelvis +C2836847|T037|ET|S31.050|ICD10CM|Open bite of lower back and pelvis NOS|Open bite of lower back and pelvis NOS +C2836848|T037|AB|S31.050|ICD10CM|Open bite of lower back and pelvis w/o penet retroperitoneum|Open bite of lower back and pelvis w/o penet retroperitoneum +C2836848|T037|HT|S31.050|ICD10CM|Open bite of lower back and pelvis without penetration into retroperitoneum|Open bite of lower back and pelvis without penetration into retroperitoneum +C2836849|T037|AB|S31.050A|ICD10CM|Open bite of low back and pelv w/o penet retroperiton, init|Open bite of low back and pelv w/o penet retroperiton, init +C2836849|T037|PT|S31.050A|ICD10CM|Open bite of lower back and pelvis without penetration into retroperitoneum, initial encounter|Open bite of lower back and pelvis without penetration into retroperitoneum, initial encounter +C2836850|T037|AB|S31.050D|ICD10CM|Open bite of low back and pelv w/o penet retroperiton, subs|Open bite of low back and pelv w/o penet retroperiton, subs +C2836850|T037|PT|S31.050D|ICD10CM|Open bite of lower back and pelvis without penetration into retroperitoneum, subsequent encounter|Open bite of lower back and pelvis without penetration into retroperitoneum, subsequent encounter +C2836851|T037|AB|S31.050S|ICD10CM|Open bite of low back and pelv w/o penet retroperiton, sqla|Open bite of low back and pelv w/o penet retroperiton, sqla +C2836851|T037|PT|S31.050S|ICD10CM|Open bite of lower back and pelvis without penetration into retroperitoneum, sequela|Open bite of lower back and pelvis without penetration into retroperitoneum, sequela +C2836852|T037|AB|S31.051|ICD10CM|Open bite of lower back and pelvis w penet retroperitoneum|Open bite of lower back and pelvis w penet retroperitoneum +C2836852|T037|HT|S31.051|ICD10CM|Open bite of lower back and pelvis with penetration into retroperitoneum|Open bite of lower back and pelvis with penetration into retroperitoneum +C2836853|T037|AB|S31.051A|ICD10CM|Open bite of low back and pelvis w penet retroperiton, init|Open bite of low back and pelvis w penet retroperiton, init +C2836853|T037|PT|S31.051A|ICD10CM|Open bite of lower back and pelvis with penetration into retroperitoneum, initial encounter|Open bite of lower back and pelvis with penetration into retroperitoneum, initial encounter +C2836854|T037|AB|S31.051D|ICD10CM|Open bite of low back and pelvis w penet retroperiton, subs|Open bite of low back and pelvis w penet retroperiton, subs +C2836854|T037|PT|S31.051D|ICD10CM|Open bite of lower back and pelvis with penetration into retroperitoneum, subsequent encounter|Open bite of lower back and pelvis with penetration into retroperitoneum, subsequent encounter +C2836855|T037|AB|S31.051S|ICD10CM|Open bite of low back and pelvis w penet retroperiton, sqla|Open bite of low back and pelvis w penet retroperiton, sqla +C2836855|T037|PT|S31.051S|ICD10CM|Open bite of lower back and pelvis with penetration into retroperitoneum, sequela|Open bite of lower back and pelvis with penetration into retroperitoneum, sequela +C0392118|T037|PT|S31.1|ICD10|Open wound of abdominal wall|Open wound of abdominal wall +C0392118|T037|ET|S31.1|ICD10CM|Open wound of abdominal wall NOS|Open wound of abdominal wall NOS +C2836856|T037|AB|S31.1|ICD10CM|Open wound of abdominal wall w/o penetration into perit cav|Open wound of abdominal wall w/o penetration into perit cav +C2836856|T037|HT|S31.1|ICD10CM|Open wound of abdominal wall without penetration into peritoneal cavity|Open wound of abdominal wall without penetration into peritoneal cavity +C2836857|T037|AB|S31.10|ICD10CM|Unsp open wound of abdominal wall w/o penet perit cav|Unsp open wound of abdominal wall w/o penet perit cav +C2836857|T037|HT|S31.10|ICD10CM|Unspecified open wound of abdominal wall without penetration into peritoneal cavity|Unspecified open wound of abdominal wall without penetration into peritoneal cavity +C2836858|T037|AB|S31.100|ICD10CM|Unsp opn wnd abd wall, right upper q w/o penet perit cav|Unsp opn wnd abd wall, right upper q w/o penet perit cav +C2836859|T037|AB|S31.100A|ICD10CM|Unsp opn wnd abd wall, r upper q w/o penet perit cav, init|Unsp opn wnd abd wall, r upper q w/o penet perit cav, init +C2836860|T037|AB|S31.100D|ICD10CM|Unsp opn wnd abd wall, r upper q w/o penet perit cav, subs|Unsp opn wnd abd wall, r upper q w/o penet perit cav, subs +C2836861|T037|AB|S31.100S|ICD10CM|Unsp opn wnd abd wall, r upper q w/o penet perit cav, sqla|Unsp opn wnd abd wall, r upper q w/o penet perit cav, sqla +C2836862|T037|AB|S31.101|ICD10CM|Unsp open wound of abd wall, l upr q w/o penet perit cav|Unsp open wound of abd wall, l upr q w/o penet perit cav +C2836863|T037|AB|S31.101A|ICD10CM|Unsp opn wnd abd wall, l upr q w/o penet perit cav, init|Unsp opn wnd abd wall, l upr q w/o penet perit cav, init +C2836864|T037|AB|S31.101D|ICD10CM|Unsp opn wnd abd wall, l upr q w/o penet perit cav, subs|Unsp opn wnd abd wall, l upr q w/o penet perit cav, subs +C2836865|T037|AB|S31.101S|ICD10CM|Unsp opn wnd abd wall, l upr q w/o penet perit cav, sequela|Unsp opn wnd abd wall, l upr q w/o penet perit cav, sequela +C2836866|T037|AB|S31.102|ICD10CM|Unsp open wound of abd wall, epigst rgn w/o penet perit cav|Unsp open wound of abd wall, epigst rgn w/o penet perit cav +C2836867|T037|AB|S31.102A|ICD10CM|Unsp opn wnd abd wall, epigst rgn w/o penet perit cav, init|Unsp opn wnd abd wall, epigst rgn w/o penet perit cav, init +C2836868|T037|AB|S31.102D|ICD10CM|Unsp opn wnd abd wall, epigst rgn w/o penet perit cav, subs|Unsp opn wnd abd wall, epigst rgn w/o penet perit cav, subs +C2836869|T037|AB|S31.102S|ICD10CM|Unsp opn wnd abd wall, epigst rgn w/o penet perit cav, sqla|Unsp opn wnd abd wall, epigst rgn w/o penet perit cav, sqla +C2836870|T037|AB|S31.103|ICD10CM|Unsp opn wnd abd wall, right lower q w/o penet perit cav|Unsp opn wnd abd wall, right lower q w/o penet perit cav +C2836871|T037|AB|S31.103A|ICD10CM|Unsp opn wnd abd wall, right low q w/o penet perit cav, init|Unsp opn wnd abd wall, right low q w/o penet perit cav, init +C2836872|T037|AB|S31.103D|ICD10CM|Unsp opn wnd abd wall, right low q w/o penet perit cav, subs|Unsp opn wnd abd wall, right low q w/o penet perit cav, subs +C2836873|T037|AB|S31.103S|ICD10CM|Unsp opn wnd abd wall, right low q w/o penet perit cav, sqla|Unsp opn wnd abd wall, right low q w/o penet perit cav, sqla +C2836874|T037|AB|S31.104|ICD10CM|Unsp opn wnd abd wall, left lower q w/o penet perit cav|Unsp opn wnd abd wall, left lower q w/o penet perit cav +C2836875|T037|AB|S31.104A|ICD10CM|Unsp opn wnd abd wall, left low q w/o penet perit cav, init|Unsp opn wnd abd wall, left low q w/o penet perit cav, init +C2836876|T037|AB|S31.104D|ICD10CM|Unsp opn wnd abd wall, left low q w/o penet perit cav, subs|Unsp opn wnd abd wall, left low q w/o penet perit cav, subs +C2836877|T037|AB|S31.104S|ICD10CM|Unsp opn wnd abd wall, left low q w/o penet perit cav, sqla|Unsp opn wnd abd wall, left low q w/o penet perit cav, sqla +C2836878|T037|AB|S31.105|ICD10CM|Unsp open wound of abd wall, periumb rgn w/o penet perit cav|Unsp open wound of abd wall, periumb rgn w/o penet perit cav +C2836879|T037|AB|S31.105A|ICD10CM|Unsp opn wnd abd wall, periumb rgn w/o penet perit cav, init|Unsp opn wnd abd wall, periumb rgn w/o penet perit cav, init +C2836880|T037|AB|S31.105D|ICD10CM|Unsp opn wnd abd wall, periumb rgn w/o penet perit cav, subs|Unsp opn wnd abd wall, periumb rgn w/o penet perit cav, subs +C2836881|T037|AB|S31.105S|ICD10CM|Unsp opn wnd abd wall, periumb rgn w/o penet perit cav, sqla|Unsp opn wnd abd wall, periumb rgn w/o penet perit cav, sqla +C2836883|T037|AB|S31.109|ICD10CM|Unsp opn wnd abd wall, unsp quadrant w/o penet perit cav|Unsp opn wnd abd wall, unsp quadrant w/o penet perit cav +C2836882|T037|ET|S31.109|ICD10CM|Unspecified open wound of abdominal wall NOS|Unspecified open wound of abdominal wall NOS +C2836884|T037|AB|S31.109A|ICD10CM|Unsp opn wnd abd wall, unsp q w/o penet perit cav, init|Unsp opn wnd abd wall, unsp q w/o penet perit cav, init +C2836885|T037|AB|S31.109D|ICD10CM|Unsp opn wnd abd wall, unsp q w/o penet perit cav, subs|Unsp opn wnd abd wall, unsp q w/o penet perit cav, subs +C2836886|T037|AB|S31.109S|ICD10CM|Unsp opn wnd abd wall, unsp q w/o penet perit cav, sequela|Unsp opn wnd abd wall, unsp q w/o penet perit cav, sequela +C2836887|T037|AB|S31.11|ICD10CM|Laceration w/o foreign body of abd wall w/o penet perit cav|Laceration w/o foreign body of abd wall w/o penet perit cav +C2836887|T037|HT|S31.11|ICD10CM|Laceration without foreign body of abdominal wall without penetration into peritoneal cavity|Laceration without foreign body of abdominal wall without penetration into peritoneal cavity +C2836888|T037|AB|S31.110|ICD10CM|Lac w/o fb of abd wall, right upper q w/o penet perit cav|Lac w/o fb of abd wall, right upper q w/o penet perit cav +C2836889|T037|AB|S31.110A|ICD10CM|Lac w/o fb of abd wall, r upper q w/o penet perit cav, init|Lac w/o fb of abd wall, r upper q w/o penet perit cav, init +C2836890|T037|AB|S31.110D|ICD10CM|Lac w/o fb of abd wall, r upper q w/o penet perit cav, subs|Lac w/o fb of abd wall, r upper q w/o penet perit cav, subs +C2836891|T037|AB|S31.110S|ICD10CM|Lac w/o fb of abd wall, r upper q w/o penet perit cav, sqla|Lac w/o fb of abd wall, r upper q w/o penet perit cav, sqla +C2836892|T037|AB|S31.111|ICD10CM|Laceration w/o fb of abd wall, l upr q w/o penet perit cav|Laceration w/o fb of abd wall, l upr q w/o penet perit cav +C2836893|T037|AB|S31.111A|ICD10CM|Lac w/o fb of abd wall, l upr q w/o penet perit cav, init|Lac w/o fb of abd wall, l upr q w/o penet perit cav, init +C2836894|T037|AB|S31.111D|ICD10CM|Lac w/o fb of abd wall, l upr q w/o penet perit cav, subs|Lac w/o fb of abd wall, l upr q w/o penet perit cav, subs +C2836895|T037|AB|S31.111S|ICD10CM|Lac w/o fb of abd wall, l upr q w/o penet perit cav, sequela|Lac w/o fb of abd wall, l upr q w/o penet perit cav, sequela +C2836896|T037|AB|S31.112|ICD10CM|Lac w/o fb of abd wall, epigst rgn w/o penet perit cav|Lac w/o fb of abd wall, epigst rgn w/o penet perit cav +C2836897|T037|AB|S31.112A|ICD10CM|Lac w/o fb of abd wall, epigst rgn w/o penet perit cav, init|Lac w/o fb of abd wall, epigst rgn w/o penet perit cav, init +C2836898|T037|AB|S31.112D|ICD10CM|Lac w/o fb of abd wall, epigst rgn w/o penet perit cav, subs|Lac w/o fb of abd wall, epigst rgn w/o penet perit cav, subs +C2836899|T037|AB|S31.112S|ICD10CM|Lac w/o fb of abd wall, epigst rgn w/o penet perit cav, sqla|Lac w/o fb of abd wall, epigst rgn w/o penet perit cav, sqla +C2836900|T037|AB|S31.113|ICD10CM|Lac w/o fb of abd wall, right lower q w/o penet perit cav|Lac w/o fb of abd wall, right lower q w/o penet perit cav +C2836901|T037|AB|S31.113A|ICD10CM|Lac w/o fb of abd wall, r low q w/o penet perit cav, init|Lac w/o fb of abd wall, r low q w/o penet perit cav, init +C2836902|T037|AB|S31.113D|ICD10CM|Lac w/o fb of abd wall, r low q w/o penet perit cav, subs|Lac w/o fb of abd wall, r low q w/o penet perit cav, subs +C2836903|T037|AB|S31.113S|ICD10CM|Lac w/o fb of abd wall, r low q w/o penet perit cav, sqla|Lac w/o fb of abd wall, r low q w/o penet perit cav, sqla +C2836904|T037|AB|S31.114|ICD10CM|Lac w/o fb of abd wall, left lower q w/o penet perit cav|Lac w/o fb of abd wall, left lower q w/o penet perit cav +C2836905|T037|AB|S31.114A|ICD10CM|Lac w/o fb of abd wall, left low q w/o penet perit cav, init|Lac w/o fb of abd wall, left low q w/o penet perit cav, init +C2836906|T037|AB|S31.114D|ICD10CM|Lac w/o fb of abd wall, left low q w/o penet perit cav, subs|Lac w/o fb of abd wall, left low q w/o penet perit cav, subs +C2836907|T037|AB|S31.114S|ICD10CM|Lac w/o fb of abd wall, left low q w/o penet perit cav, sqla|Lac w/o fb of abd wall, left low q w/o penet perit cav, sqla +C2836908|T037|AB|S31.115|ICD10CM|Lac w/o fb of abd wall, periumb rgn w/o penet perit cav|Lac w/o fb of abd wall, periumb rgn w/o penet perit cav +C2836909|T037|AB|S31.115A|ICD10CM|Lac w/o fb of abd wl, periumb rgn w/o penet perit cav, init|Lac w/o fb of abd wl, periumb rgn w/o penet perit cav, init +C2836910|T037|AB|S31.115D|ICD10CM|Lac w/o fb of abd wl, periumb rgn w/o penet perit cav, subs|Lac w/o fb of abd wl, periumb rgn w/o penet perit cav, subs +C2836911|T037|AB|S31.115S|ICD10CM|Lac w/o fb of abd wl, periumb rgn w/o penet perit cav, sqla|Lac w/o fb of abd wl, periumb rgn w/o penet perit cav, sqla +C2836912|T037|AB|S31.119|ICD10CM|Lac w/o fb of abd wall, unsp quadrant w/o penet perit cav|Lac w/o fb of abd wall, unsp quadrant w/o penet perit cav +C2836913|T037|AB|S31.119A|ICD10CM|Lac w/o fb of abd wall, unsp q w/o penet perit cav, init|Lac w/o fb of abd wall, unsp q w/o penet perit cav, init +C2836914|T037|AB|S31.119D|ICD10CM|Lac w/o fb of abd wall, unsp q w/o penet perit cav, subs|Lac w/o fb of abd wall, unsp q w/o penet perit cav, subs +C2836915|T037|AB|S31.119S|ICD10CM|Lac w/o fb of abd wall, unsp q w/o penet perit cav, sequela|Lac w/o fb of abd wall, unsp q w/o penet perit cav, sequela +C2836916|T037|AB|S31.12|ICD10CM|Laceration w foreign body of abd wall w/o penet perit cav|Laceration w foreign body of abd wall w/o penet perit cav +C2836916|T037|HT|S31.12|ICD10CM|Laceration with foreign body of abdominal wall without penetration into peritoneal cavity|Laceration with foreign body of abdominal wall without penetration into peritoneal cavity +C2836917|T037|AB|S31.120|ICD10CM|Lacerat abd wall w fb, right upper q w/o penet perit cav|Lacerat abd wall w fb, right upper q w/o penet perit cav +C2836918|T037|AB|S31.120A|ICD10CM|Lacerat abd wall w fb, r upper q w/o penet perit cav, init|Lacerat abd wall w fb, r upper q w/o penet perit cav, init +C2836919|T037|AB|S31.120D|ICD10CM|Lacerat abd wall w fb, r upper q w/o penet perit cav, subs|Lacerat abd wall w fb, r upper q w/o penet perit cav, subs +C2836920|T037|AB|S31.120S|ICD10CM|Lacerat abd wall w fb, r upper q w/o penet perit cav, sqla|Lacerat abd wall w fb, r upper q w/o penet perit cav, sqla +C2836921|T037|AB|S31.121|ICD10CM|Lacerat abd wall w foreign body, l upr q w/o penet perit cav|Lacerat abd wall w foreign body, l upr q w/o penet perit cav +C2836922|T037|AB|S31.121A|ICD10CM|Lacerat abd wall w fb, l upr q w/o penet perit cav, init|Lacerat abd wall w fb, l upr q w/o penet perit cav, init +C2836923|T037|AB|S31.121D|ICD10CM|Lacerat abd wall w fb, l upr q w/o penet perit cav, subs|Lacerat abd wall w fb, l upr q w/o penet perit cav, subs +C2836924|T037|AB|S31.121S|ICD10CM|Lacerat abd wall w fb, l upr q w/o penet perit cav, sequela|Lacerat abd wall w fb, l upr q w/o penet perit cav, sequela +C2836925|T037|AB|S31.122|ICD10CM|Lacerat abd wall w fb, epigst rgn w/o penet perit cav|Lacerat abd wall w fb, epigst rgn w/o penet perit cav +C2836926|T037|AB|S31.122A|ICD10CM|Lacerat abd wall w fb, epigst rgn w/o penet perit cav, init|Lacerat abd wall w fb, epigst rgn w/o penet perit cav, init +C2836927|T037|AB|S31.122D|ICD10CM|Lacerat abd wall w fb, epigst rgn w/o penet perit cav, subs|Lacerat abd wall w fb, epigst rgn w/o penet perit cav, subs +C2836928|T037|AB|S31.122S|ICD10CM|Lacerat abd wall w fb, epigst rgn w/o penet perit cav, sqla|Lacerat abd wall w fb, epigst rgn w/o penet perit cav, sqla +C2836929|T037|AB|S31.123|ICD10CM|Lacerat abd wall w fb, right lower q w/o penet perit cav|Lacerat abd wall w fb, right lower q w/o penet perit cav +C2836930|T037|AB|S31.123A|ICD10CM|Lacerat abd wall w fb, right low q w/o penet perit cav, init|Lacerat abd wall w fb, right low q w/o penet perit cav, init +C2836931|T037|AB|S31.123D|ICD10CM|Lacerat abd wall w fb, right low q w/o penet perit cav, subs|Lacerat abd wall w fb, right low q w/o penet perit cav, subs +C2836932|T037|AB|S31.123S|ICD10CM|Lacerat abd wall w fb, right low q w/o penet perit cav, sqla|Lacerat abd wall w fb, right low q w/o penet perit cav, sqla +C2836933|T037|AB|S31.124|ICD10CM|Lacerat abd wall w fb, left lower q w/o penet perit cav|Lacerat abd wall w fb, left lower q w/o penet perit cav +C2836934|T037|AB|S31.124A|ICD10CM|Lacerat abd wall w fb, left low q w/o penet perit cav, init|Lacerat abd wall w fb, left low q w/o penet perit cav, init +C2836935|T037|AB|S31.124D|ICD10CM|Lacerat abd wall w fb, left low q w/o penet perit cav, subs|Lacerat abd wall w fb, left low q w/o penet perit cav, subs +C2836936|T037|AB|S31.124S|ICD10CM|Lacerat abd wall w fb, left low q w/o penet perit cav, sqla|Lacerat abd wall w fb, left low q w/o penet perit cav, sqla +C2836937|T037|AB|S31.125|ICD10CM|Lacerat abd wall w fb, periumb rgn w/o penet perit cav|Lacerat abd wall w fb, periumb rgn w/o penet perit cav +C2836938|T037|AB|S31.125A|ICD10CM|Lacerat abd wall w fb, periumb rgn w/o penet perit cav, init|Lacerat abd wall w fb, periumb rgn w/o penet perit cav, init +C2836939|T037|AB|S31.125D|ICD10CM|Lacerat abd wall w fb, periumb rgn w/o penet perit cav, subs|Lacerat abd wall w fb, periumb rgn w/o penet perit cav, subs +C2836940|T037|AB|S31.125S|ICD10CM|Lacerat abd wall w fb, periumb rgn w/o penet perit cav, sqla|Lacerat abd wall w fb, periumb rgn w/o penet perit cav, sqla +C2836941|T037|AB|S31.129|ICD10CM|Lacerat abd wall w fb, unsp quadrant w/o penet perit cav|Lacerat abd wall w fb, unsp quadrant w/o penet perit cav +C2836942|T037|AB|S31.129A|ICD10CM|Lacerat abd wall w fb, unsp q w/o penet perit cav, init|Lacerat abd wall w fb, unsp q w/o penet perit cav, init +C2836943|T037|AB|S31.129D|ICD10CM|Lacerat abd wall w fb, unsp q w/o penet perit cav, subs|Lacerat abd wall w fb, unsp q w/o penet perit cav, subs +C2836944|T037|AB|S31.129S|ICD10CM|Lacerat abd wall w fb, unsp q w/o penet perit cav, sequela|Lacerat abd wall w fb, unsp q w/o penet perit cav, sequela +C2836945|T037|AB|S31.13|ICD10CM|Pnctr of abd wall w/o foreign body w/o penet perit cav|Pnctr of abd wall w/o foreign body w/o penet perit cav +C2836945|T037|HT|S31.13|ICD10CM|Puncture wound of abdominal wall without foreign body without penetration into peritoneal cavity|Puncture wound of abdominal wall without foreign body without penetration into peritoneal cavity +C2836946|T037|AB|S31.130|ICD10CM|Pnctr of abd wall w/o fb, right upper q w/o penet perit cav|Pnctr of abd wall w/o fb, right upper q w/o penet perit cav +C2836947|T037|AB|S31.130A|ICD10CM|Pnctr of abd wall w/o fb, r upr q w/o penet perit cav, init|Pnctr of abd wall w/o fb, r upr q w/o penet perit cav, init +C2836948|T037|AB|S31.130D|ICD10CM|Pnctr of abd wall w/o fb, r upr q w/o penet perit cav, subs|Pnctr of abd wall w/o fb, r upr q w/o penet perit cav, subs +C2836949|T037|AB|S31.130S|ICD10CM|Pnctr of abd wall w/o fb, r upr q w/o penet perit cav, sqla|Pnctr of abd wall w/o fb, r upr q w/o penet perit cav, sqla +C2836950|T037|AB|S31.131|ICD10CM|Pnctr of abd wall w/o fb, l upr q w/o penet perit cav|Pnctr of abd wall w/o fb, l upr q w/o penet perit cav +C2836951|T037|AB|S31.131A|ICD10CM|Pnctr of abd wall w/o fb, l upr q w/o penet perit cav, init|Pnctr of abd wall w/o fb, l upr q w/o penet perit cav, init +C2836952|T037|AB|S31.131D|ICD10CM|Pnctr of abd wall w/o fb, l upr q w/o penet perit cav, subs|Pnctr of abd wall w/o fb, l upr q w/o penet perit cav, subs +C2836953|T037|AB|S31.131S|ICD10CM|Pnctr of abd wall w/o fb, l upr q w/o penet perit cav, sqla|Pnctr of abd wall w/o fb, l upr q w/o penet perit cav, sqla +C2836954|T037|AB|S31.132|ICD10CM|Pnctr of abd wall w/o fb, epigst rgn w/o penet perit cav|Pnctr of abd wall w/o fb, epigst rgn w/o penet perit cav +C2836955|T037|AB|S31.132A|ICD10CM|Pnctr of abd wl w/o fb, epigst rgn w/o penet perit cav, init|Pnctr of abd wl w/o fb, epigst rgn w/o penet perit cav, init +C2836956|T037|AB|S31.132D|ICD10CM|Pnctr of abd wl w/o fb, epigst rgn w/o penet perit cav, subs|Pnctr of abd wl w/o fb, epigst rgn w/o penet perit cav, subs +C2836957|T037|AB|S31.132S|ICD10CM|Pnctr of abd wl w/o fb, epigst rgn w/o penet perit cav, sqla|Pnctr of abd wl w/o fb, epigst rgn w/o penet perit cav, sqla +C2836958|T037|AB|S31.133|ICD10CM|Pnctr of abd wall w/o fb, right lower q w/o penet perit cav|Pnctr of abd wall w/o fb, right lower q w/o penet perit cav +C2836959|T037|AB|S31.133A|ICD10CM|Pnctr of abd wall w/o fb, r low q w/o penet perit cav, init|Pnctr of abd wall w/o fb, r low q w/o penet perit cav, init +C2836960|T037|AB|S31.133D|ICD10CM|Pnctr of abd wall w/o fb, r low q w/o penet perit cav, subs|Pnctr of abd wall w/o fb, r low q w/o penet perit cav, subs +C2836961|T037|AB|S31.133S|ICD10CM|Pnctr of abd wall w/o fb, r low q w/o penet perit cav, sqla|Pnctr of abd wall w/o fb, r low q w/o penet perit cav, sqla +C2836962|T037|AB|S31.134|ICD10CM|Pnctr of abd wall w/o fb, left lower q w/o penet perit cav|Pnctr of abd wall w/o fb, left lower q w/o penet perit cav +C2836963|T037|AB|S31.134A|ICD10CM|Pnctr of abd wall w/o fb, l low q w/o penet perit cav, init|Pnctr of abd wall w/o fb, l low q w/o penet perit cav, init +C2836964|T037|AB|S31.134D|ICD10CM|Pnctr of abd wall w/o fb, l low q w/o penet perit cav, subs|Pnctr of abd wall w/o fb, l low q w/o penet perit cav, subs +C2836965|T037|AB|S31.134S|ICD10CM|Pnctr of abd wall w/o fb, l low q w/o penet perit cav, sqla|Pnctr of abd wall w/o fb, l low q w/o penet perit cav, sqla +C2836966|T037|AB|S31.135|ICD10CM|Pnctr of abd wall w/o fb, periumb rgn w/o penet perit cav|Pnctr of abd wall w/o fb, periumb rgn w/o penet perit cav +C2836967|T037|AB|S31.135A|ICD10CM|Pnctr of abd wl w/o fb,periumb rgn w/o penet perit cav, init|Pnctr of abd wl w/o fb,periumb rgn w/o penet perit cav, init +C2836968|T037|AB|S31.135D|ICD10CM|Pnctr of abd wl w/o fb,periumb rgn w/o penet perit cav, subs|Pnctr of abd wl w/o fb,periumb rgn w/o penet perit cav, subs +C2836969|T037|AB|S31.135S|ICD10CM|Pnctr of abd wl w/o fb,periumb rgn w/o penet perit cav, sqla|Pnctr of abd wl w/o fb,periumb rgn w/o penet perit cav, sqla +C2836970|T037|AB|S31.139|ICD10CM|Pnctr of abd wall w/o fb, unsp quadrant w/o penet perit cav|Pnctr of abd wall w/o fb, unsp quadrant w/o penet perit cav +C2836971|T037|AB|S31.139A|ICD10CM|Pnctr of abd wall w/o fb, unsp q w/o penet perit cav, init|Pnctr of abd wall w/o fb, unsp q w/o penet perit cav, init +C2836972|T037|AB|S31.139D|ICD10CM|Pnctr of abd wall w/o fb, unsp q w/o penet perit cav, subs|Pnctr of abd wall w/o fb, unsp q w/o penet perit cav, subs +C2836973|T037|AB|S31.139S|ICD10CM|Pnctr of abd wall w/o fb, unsp q w/o penet perit cav, sqla|Pnctr of abd wall w/o fb, unsp q w/o penet perit cav, sqla +C2836974|T037|AB|S31.14|ICD10CM|Pnctr of abd wall w foreign body w/o penet perit cav|Pnctr of abd wall w foreign body w/o penet perit cav +C2836974|T037|HT|S31.14|ICD10CM|Puncture wound of abdominal wall with foreign body without penetration into peritoneal cavity|Puncture wound of abdominal wall with foreign body without penetration into peritoneal cavity +C2836975|T037|AB|S31.140|ICD10CM|Pnctr of abd wall w fb, right upper q w/o penet perit cav|Pnctr of abd wall w fb, right upper q w/o penet perit cav +C2836976|T037|AB|S31.140A|ICD10CM|Pnctr of abd wall w fb, r upper q w/o penet perit cav, init|Pnctr of abd wall w fb, r upper q w/o penet perit cav, init +C2836977|T037|AB|S31.140D|ICD10CM|Pnctr of abd wall w fb, r upper q w/o penet perit cav, subs|Pnctr of abd wall w fb, r upper q w/o penet perit cav, subs +C2836978|T037|AB|S31.140S|ICD10CM|Pnctr of abd wall w fb, r upper q w/o penet perit cav, sqla|Pnctr of abd wall w fb, r upper q w/o penet perit cav, sqla +C2836979|T037|AB|S31.141|ICD10CM|Pnctr of abd wall w fb, l upr q w/o penet perit cav|Pnctr of abd wall w fb, l upr q w/o penet perit cav +C2836980|T037|AB|S31.141A|ICD10CM|Pnctr of abd wall w fb, l upr q w/o penet perit cav, init|Pnctr of abd wall w fb, l upr q w/o penet perit cav, init +C2836981|T037|AB|S31.141D|ICD10CM|Pnctr of abd wall w fb, l upr q w/o penet perit cav, subs|Pnctr of abd wall w fb, l upr q w/o penet perit cav, subs +C2836982|T037|AB|S31.141S|ICD10CM|Pnctr of abd wall w fb, l upr q w/o penet perit cav, sequela|Pnctr of abd wall w fb, l upr q w/o penet perit cav, sequela +C2836983|T037|AB|S31.142|ICD10CM|Pnctr of abd wall w fb, epigst rgn w/o penet perit cav|Pnctr of abd wall w fb, epigst rgn w/o penet perit cav +C2836984|T037|AB|S31.142A|ICD10CM|Pnctr of abd wall w fb, epigst rgn w/o penet perit cav, init|Pnctr of abd wall w fb, epigst rgn w/o penet perit cav, init +C2836985|T037|AB|S31.142D|ICD10CM|Pnctr of abd wall w fb, epigst rgn w/o penet perit cav, subs|Pnctr of abd wall w fb, epigst rgn w/o penet perit cav, subs +C2836986|T037|AB|S31.142S|ICD10CM|Pnctr of abd wall w fb, epigst rgn w/o penet perit cav, sqla|Pnctr of abd wall w fb, epigst rgn w/o penet perit cav, sqla +C2836987|T037|AB|S31.143|ICD10CM|Pnctr of abd wall w fb, right lower q w/o penet perit cav|Pnctr of abd wall w fb, right lower q w/o penet perit cav +C2836988|T037|AB|S31.143A|ICD10CM|Pnctr of abd wall w fb, r low q w/o penet perit cav, init|Pnctr of abd wall w fb, r low q w/o penet perit cav, init +C2836989|T037|AB|S31.143D|ICD10CM|Pnctr of abd wall w fb, r low q w/o penet perit cav, subs|Pnctr of abd wall w fb, r low q w/o penet perit cav, subs +C2836990|T037|AB|S31.143S|ICD10CM|Pnctr of abd wall w fb, r low q w/o penet perit cav, sqla|Pnctr of abd wall w fb, r low q w/o penet perit cav, sqla +C2836991|T037|AB|S31.144|ICD10CM|Pnctr of abd wall w fb, left lower q w/o penet perit cav|Pnctr of abd wall w fb, left lower q w/o penet perit cav +C2836992|T037|AB|S31.144A|ICD10CM|Pnctr of abd wall w fb, left low q w/o penet perit cav, init|Pnctr of abd wall w fb, left low q w/o penet perit cav, init +C2836993|T037|AB|S31.144D|ICD10CM|Pnctr of abd wall w fb, left low q w/o penet perit cav, subs|Pnctr of abd wall w fb, left low q w/o penet perit cav, subs +C2836994|T037|AB|S31.144S|ICD10CM|Pnctr of abd wall w fb, left low q w/o penet perit cav, sqla|Pnctr of abd wall w fb, left low q w/o penet perit cav, sqla +C2836995|T037|AB|S31.145|ICD10CM|Pnctr of abd wall w fb, periumb rgn w/o penet perit cav|Pnctr of abd wall w fb, periumb rgn w/o penet perit cav +C2836996|T037|AB|S31.145A|ICD10CM|Pnctr of abd wl w fb, periumb rgn w/o penet perit cav, init|Pnctr of abd wl w fb, periumb rgn w/o penet perit cav, init +C2836997|T037|AB|S31.145D|ICD10CM|Pnctr of abd wl w fb, periumb rgn w/o penet perit cav, subs|Pnctr of abd wl w fb, periumb rgn w/o penet perit cav, subs +C2836998|T037|AB|S31.145S|ICD10CM|Pnctr of abd wl w fb, periumb rgn w/o penet perit cav, sqla|Pnctr of abd wl w fb, periumb rgn w/o penet perit cav, sqla +C2836999|T037|AB|S31.149|ICD10CM|Pnctr of abd wall w fb, unsp quadrant w/o penet perit cav|Pnctr of abd wall w fb, unsp quadrant w/o penet perit cav +C2837000|T037|AB|S31.149A|ICD10CM|Pnctr of abd wall w fb, unsp q w/o penet perit cav, init|Pnctr of abd wall w fb, unsp q w/o penet perit cav, init +C2837001|T037|AB|S31.149D|ICD10CM|Pnctr of abd wall w fb, unsp q w/o penet perit cav, subs|Pnctr of abd wall w fb, unsp q w/o penet perit cav, subs +C2837002|T037|AB|S31.149S|ICD10CM|Pnctr of abd wall w fb, unsp q w/o penet perit cav, sequela|Pnctr of abd wall w fb, unsp q w/o penet perit cav, sequela +C2837003|T037|ET|S31.15|ICD10CM|Bite of abdominal wall NOS|Bite of abdominal wall NOS +C2837004|T037|AB|S31.15|ICD10CM|Open bite of abdominal wall w/o penetration into perit cav|Open bite of abdominal wall w/o penetration into perit cav +C2837004|T037|HT|S31.15|ICD10CM|Open bite of abdominal wall without penetration into peritoneal cavity|Open bite of abdominal wall without penetration into peritoneal cavity +C2837005|T037|AB|S31.150|ICD10CM|Open bite of abd wall, right upper q w/o penet perit cav|Open bite of abd wall, right upper q w/o penet perit cav +C2837005|T037|HT|S31.150|ICD10CM|Open bite of abdominal wall, right upper quadrant without penetration into peritoneal cavity|Open bite of abdominal wall, right upper quadrant without penetration into peritoneal cavity +C2837006|T037|AB|S31.150A|ICD10CM|Open bite of abd wall, r upper q w/o penet perit cav, init|Open bite of abd wall, r upper q w/o penet perit cav, init +C2837007|T037|AB|S31.150D|ICD10CM|Open bite of abd wall, r upper q w/o penet perit cav, subs|Open bite of abd wall, r upper q w/o penet perit cav, subs +C2837008|T037|AB|S31.150S|ICD10CM|Open bite of abd wall, r upper q w/o penet perit cav, sqla|Open bite of abd wall, r upper q w/o penet perit cav, sqla +C2837009|T037|AB|S31.151|ICD10CM|Open bite of abdominal wall, l upr q w/o penet perit cav|Open bite of abdominal wall, l upr q w/o penet perit cav +C2837009|T037|HT|S31.151|ICD10CM|Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity|Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity +C2837010|T037|AB|S31.151A|ICD10CM|Open bite of abd wall, l upr q w/o penet perit cav, init|Open bite of abd wall, l upr q w/o penet perit cav, init +C2837011|T037|AB|S31.151D|ICD10CM|Open bite of abd wall, l upr q w/o penet perit cav, subs|Open bite of abd wall, l upr q w/o penet perit cav, subs +C2837012|T037|AB|S31.151S|ICD10CM|Open bite of abd wall, l upr q w/o penet perit cav, sequela|Open bite of abd wall, l upr q w/o penet perit cav, sequela +C2837012|T037|PT|S31.151S|ICD10CM|Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity, sequela|Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity, sequela +C2837013|T037|HT|S31.152|ICD10CM|Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity|Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity +C2837013|T037|AB|S31.152|ICD10CM|Open bite of abdominal wall, epigst rgn w/o penet perit cav|Open bite of abdominal wall, epigst rgn w/o penet perit cav +C2837014|T037|AB|S31.152A|ICD10CM|Open bite of abd wall, epigst rgn w/o penet perit cav, init|Open bite of abd wall, epigst rgn w/o penet perit cav, init +C2837015|T037|AB|S31.152D|ICD10CM|Open bite of abd wall, epigst rgn w/o penet perit cav, subs|Open bite of abd wall, epigst rgn w/o penet perit cav, subs +C2837016|T037|AB|S31.152S|ICD10CM|Open bite of abd wall, epigst rgn w/o penet perit cav, sqla|Open bite of abd wall, epigst rgn w/o penet perit cav, sqla +C2837016|T037|PT|S31.152S|ICD10CM|Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity, sequela|Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity, sequela +C2837017|T037|AB|S31.153|ICD10CM|Open bite of abd wall, right lower q w/o penet perit cav|Open bite of abd wall, right lower q w/o penet perit cav +C2837017|T037|HT|S31.153|ICD10CM|Open bite of abdominal wall, right lower quadrant without penetration into peritoneal cavity|Open bite of abdominal wall, right lower quadrant without penetration into peritoneal cavity +C2837018|T037|AB|S31.153A|ICD10CM|Open bite of abd wall, right low q w/o penet perit cav, init|Open bite of abd wall, right low q w/o penet perit cav, init +C2837019|T037|AB|S31.153D|ICD10CM|Open bite of abd wall, right low q w/o penet perit cav, subs|Open bite of abd wall, right low q w/o penet perit cav, subs +C2837020|T037|AB|S31.153S|ICD10CM|Open bite of abd wall, right low q w/o penet perit cav, sqla|Open bite of abd wall, right low q w/o penet perit cav, sqla +C2837021|T037|AB|S31.154|ICD10CM|Open bite of abd wall, left lower q w/o penet perit cav|Open bite of abd wall, left lower q w/o penet perit cav +C2837021|T037|HT|S31.154|ICD10CM|Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity|Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity +C2837022|T037|AB|S31.154A|ICD10CM|Open bite of abd wall, left low q w/o penet perit cav, init|Open bite of abd wall, left low q w/o penet perit cav, init +C2837023|T037|AB|S31.154D|ICD10CM|Open bite of abd wall, left low q w/o penet perit cav, subs|Open bite of abd wall, left low q w/o penet perit cav, subs +C2837024|T037|AB|S31.154S|ICD10CM|Open bite of abd wall, left low q w/o penet perit cav, sqla|Open bite of abd wall, left low q w/o penet perit cav, sqla +C2837024|T037|PT|S31.154S|ICD10CM|Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity, sequela|Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity, sequela +C2837025|T037|AB|S31.155|ICD10CM|Open bite of abdominal wall, periumb rgn w/o penet perit cav|Open bite of abdominal wall, periumb rgn w/o penet perit cav +C2837025|T037|HT|S31.155|ICD10CM|Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity|Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity +C2837026|T037|AB|S31.155A|ICD10CM|Open bite of abd wall, periumb rgn w/o penet perit cav, init|Open bite of abd wall, periumb rgn w/o penet perit cav, init +C2837027|T037|AB|S31.155D|ICD10CM|Open bite of abd wall, periumb rgn w/o penet perit cav, subs|Open bite of abd wall, periumb rgn w/o penet perit cav, subs +C2837028|T037|AB|S31.155S|ICD10CM|Open bite of abd wall, periumb rgn w/o penet perit cav, sqla|Open bite of abd wall, periumb rgn w/o penet perit cav, sqla +C2837028|T037|PT|S31.155S|ICD10CM|Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity, sequela|Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity, sequela +C2837029|T037|AB|S31.159|ICD10CM|Open bite of abd wall, unsp quadrant w/o penet perit cav|Open bite of abd wall, unsp quadrant w/o penet perit cav +C2837029|T037|HT|S31.159|ICD10CM|Open bite of abdominal wall, unspecified quadrant without penetration into peritoneal cavity|Open bite of abdominal wall, unspecified quadrant without penetration into peritoneal cavity +C2837030|T037|AB|S31.159A|ICD10CM|Open bite of abd wall, unsp q w/o penet perit cav, init|Open bite of abd wall, unsp q w/o penet perit cav, init +C2837031|T037|AB|S31.159D|ICD10CM|Open bite of abd wall, unsp q w/o penet perit cav, subs|Open bite of abd wall, unsp q w/o penet perit cav, subs +C2837032|T037|AB|S31.159S|ICD10CM|Open bite of abd wall, unsp q w/o penet perit cav, sequela|Open bite of abd wall, unsp q w/o penet perit cav, sequela +C0160562|T037|HT|S31.2|ICD10CM|Open wound of penis|Open wound of penis +C0160562|T037|AB|S31.2|ICD10CM|Open wound of penis|Open wound of penis +C0160562|T037|PT|S31.2|ICD10|Open wound of penis|Open wound of penis +C2837033|T037|AB|S31.20|ICD10CM|Unspecified open wound of penis|Unspecified open wound of penis +C2837033|T037|HT|S31.20|ICD10CM|Unspecified open wound of penis|Unspecified open wound of penis +C2837034|T037|AB|S31.20XA|ICD10CM|Unspecified open wound of penis, initial encounter|Unspecified open wound of penis, initial encounter +C2837034|T037|PT|S31.20XA|ICD10CM|Unspecified open wound of penis, initial encounter|Unspecified open wound of penis, initial encounter +C2837035|T037|AB|S31.20XD|ICD10CM|Unspecified open wound of penis, subsequent encounter|Unspecified open wound of penis, subsequent encounter +C2837035|T037|PT|S31.20XD|ICD10CM|Unspecified open wound of penis, subsequent encounter|Unspecified open wound of penis, subsequent encounter +C2837036|T037|AB|S31.20XS|ICD10CM|Unspecified open wound of penis, sequela|Unspecified open wound of penis, sequela +C2837036|T037|PT|S31.20XS|ICD10CM|Unspecified open wound of penis, sequela|Unspecified open wound of penis, sequela +C2837037|T037|AB|S31.21|ICD10CM|Laceration without foreign body of penis|Laceration without foreign body of penis +C2837037|T037|HT|S31.21|ICD10CM|Laceration without foreign body of penis|Laceration without foreign body of penis +C2837038|T037|AB|S31.21XA|ICD10CM|Laceration without foreign body of penis, initial encounter|Laceration without foreign body of penis, initial encounter +C2837038|T037|PT|S31.21XA|ICD10CM|Laceration without foreign body of penis, initial encounter|Laceration without foreign body of penis, initial encounter +C2837039|T037|AB|S31.21XD|ICD10CM|Laceration without foreign body of penis, subs encntr|Laceration without foreign body of penis, subs encntr +C2837039|T037|PT|S31.21XD|ICD10CM|Laceration without foreign body of penis, subsequent encounter|Laceration without foreign body of penis, subsequent encounter +C2837040|T037|AB|S31.21XS|ICD10CM|Laceration without foreign body of penis, sequela|Laceration without foreign body of penis, sequela +C2837040|T037|PT|S31.21XS|ICD10CM|Laceration without foreign body of penis, sequela|Laceration without foreign body of penis, sequela +C2837041|T037|AB|S31.22|ICD10CM|Laceration with foreign body of penis|Laceration with foreign body of penis +C2837041|T037|HT|S31.22|ICD10CM|Laceration with foreign body of penis|Laceration with foreign body of penis +C2837042|T037|AB|S31.22XA|ICD10CM|Laceration with foreign body of penis, initial encounter|Laceration with foreign body of penis, initial encounter +C2837042|T037|PT|S31.22XA|ICD10CM|Laceration with foreign body of penis, initial encounter|Laceration with foreign body of penis, initial encounter +C2837043|T037|AB|S31.22XD|ICD10CM|Laceration with foreign body of penis, subsequent encounter|Laceration with foreign body of penis, subsequent encounter +C2837043|T037|PT|S31.22XD|ICD10CM|Laceration with foreign body of penis, subsequent encounter|Laceration with foreign body of penis, subsequent encounter +C2837044|T037|AB|S31.22XS|ICD10CM|Laceration with foreign body of penis, sequela|Laceration with foreign body of penis, sequela +C2837044|T037|PT|S31.22XS|ICD10CM|Laceration with foreign body of penis, sequela|Laceration with foreign body of penis, sequela +C2837045|T037|AB|S31.23|ICD10CM|Puncture wound without foreign body of penis|Puncture wound without foreign body of penis +C2837045|T037|HT|S31.23|ICD10CM|Puncture wound without foreign body of penis|Puncture wound without foreign body of penis +C2837046|T037|AB|S31.23XA|ICD10CM|Puncture wound without foreign body of penis, init encntr|Puncture wound without foreign body of penis, init encntr +C2837046|T037|PT|S31.23XA|ICD10CM|Puncture wound without foreign body of penis, initial encounter|Puncture wound without foreign body of penis, initial encounter +C2837047|T037|AB|S31.23XD|ICD10CM|Puncture wound without foreign body of penis, subs encntr|Puncture wound without foreign body of penis, subs encntr +C2837047|T037|PT|S31.23XD|ICD10CM|Puncture wound without foreign body of penis, subsequent encounter|Puncture wound without foreign body of penis, subsequent encounter +C2837048|T037|AB|S31.23XS|ICD10CM|Puncture wound without foreign body of penis, sequela|Puncture wound without foreign body of penis, sequela +C2837048|T037|PT|S31.23XS|ICD10CM|Puncture wound without foreign body of penis, sequela|Puncture wound without foreign body of penis, sequela +C2837049|T037|AB|S31.24|ICD10CM|Puncture wound with foreign body of penis|Puncture wound with foreign body of penis +C2837049|T037|HT|S31.24|ICD10CM|Puncture wound with foreign body of penis|Puncture wound with foreign body of penis +C2837050|T037|AB|S31.24XA|ICD10CM|Puncture wound with foreign body of penis, initial encounter|Puncture wound with foreign body of penis, initial encounter +C2837050|T037|PT|S31.24XA|ICD10CM|Puncture wound with foreign body of penis, initial encounter|Puncture wound with foreign body of penis, initial encounter +C2837051|T037|AB|S31.24XD|ICD10CM|Puncture wound with foreign body of penis, subs encntr|Puncture wound with foreign body of penis, subs encntr +C2837051|T037|PT|S31.24XD|ICD10CM|Puncture wound with foreign body of penis, subsequent encounter|Puncture wound with foreign body of penis, subsequent encounter +C2837052|T037|AB|S31.24XS|ICD10CM|Puncture wound with foreign body of penis, sequela|Puncture wound with foreign body of penis, sequela +C2837052|T037|PT|S31.24XS|ICD10CM|Puncture wound with foreign body of penis, sequela|Puncture wound with foreign body of penis, sequela +C2837053|T037|ET|S31.25|ICD10CM|Bite of penis NOS|Bite of penis NOS +C2837054|T037|HT|S31.25|ICD10CM|Open bite of penis|Open bite of penis +C2837054|T037|AB|S31.25|ICD10CM|Open bite of penis|Open bite of penis +C2837055|T037|AB|S31.25XA|ICD10CM|Open bite of penis, initial encounter|Open bite of penis, initial encounter +C2837055|T037|PT|S31.25XA|ICD10CM|Open bite of penis, initial encounter|Open bite of penis, initial encounter +C2837056|T037|AB|S31.25XD|ICD10CM|Open bite of penis, subsequent encounter|Open bite of penis, subsequent encounter +C2837056|T037|PT|S31.25XD|ICD10CM|Open bite of penis, subsequent encounter|Open bite of penis, subsequent encounter +C2837057|T037|AB|S31.25XS|ICD10CM|Open bite of penis, sequela|Open bite of penis, sequela +C2837057|T037|PT|S31.25XS|ICD10CM|Open bite of penis, sequela|Open bite of penis, sequela +C0434143|T037|HT|S31.3|ICD10CM|Open wound of scrotum and testes|Open wound of scrotum and testes +C0434143|T037|AB|S31.3|ICD10CM|Open wound of scrotum and testes|Open wound of scrotum and testes +C0434143|T037|PT|S31.3|ICD10|Open wound of scrotum and testes|Open wound of scrotum and testes +C2837058|T037|AB|S31.30|ICD10CM|Unspecified open wound of scrotum and testes|Unspecified open wound of scrotum and testes +C2837058|T037|HT|S31.30|ICD10CM|Unspecified open wound of scrotum and testes|Unspecified open wound of scrotum and testes +C2837059|T037|AB|S31.30XA|ICD10CM|Unspecified open wound of scrotum and testes, init encntr|Unspecified open wound of scrotum and testes, init encntr +C2837059|T037|PT|S31.30XA|ICD10CM|Unspecified open wound of scrotum and testes, initial encounter|Unspecified open wound of scrotum and testes, initial encounter +C2837060|T037|AB|S31.30XD|ICD10CM|Unspecified open wound of scrotum and testes, subs encntr|Unspecified open wound of scrotum and testes, subs encntr +C2837060|T037|PT|S31.30XD|ICD10CM|Unspecified open wound of scrotum and testes, subsequent encounter|Unspecified open wound of scrotum and testes, subsequent encounter +C2837061|T037|AB|S31.30XS|ICD10CM|Unspecified open wound of scrotum and testes, sequela|Unspecified open wound of scrotum and testes, sequela +C2837061|T037|PT|S31.30XS|ICD10CM|Unspecified open wound of scrotum and testes, sequela|Unspecified open wound of scrotum and testes, sequela +C2837062|T037|AB|S31.31|ICD10CM|Laceration without foreign body of scrotum and testes|Laceration without foreign body of scrotum and testes +C2837062|T037|HT|S31.31|ICD10CM|Laceration without foreign body of scrotum and testes|Laceration without foreign body of scrotum and testes +C2837063|T037|AB|S31.31XA|ICD10CM|Laceration w/o foreign body of scrotum and testes, init|Laceration w/o foreign body of scrotum and testes, init +C2837063|T037|PT|S31.31XA|ICD10CM|Laceration without foreign body of scrotum and testes, initial encounter|Laceration without foreign body of scrotum and testes, initial encounter +C2837064|T037|AB|S31.31XD|ICD10CM|Laceration w/o foreign body of scrotum and testes, subs|Laceration w/o foreign body of scrotum and testes, subs +C2837064|T037|PT|S31.31XD|ICD10CM|Laceration without foreign body of scrotum and testes, subsequent encounter|Laceration without foreign body of scrotum and testes, subsequent encounter +C2837065|T037|AB|S31.31XS|ICD10CM|Laceration w/o foreign body of scrotum and testes, sequela|Laceration w/o foreign body of scrotum and testes, sequela +C2837065|T037|PT|S31.31XS|ICD10CM|Laceration without foreign body of scrotum and testes, sequela|Laceration without foreign body of scrotum and testes, sequela +C2837066|T037|AB|S31.32|ICD10CM|Laceration with foreign body of scrotum and testes|Laceration with foreign body of scrotum and testes +C2837066|T037|HT|S31.32|ICD10CM|Laceration with foreign body of scrotum and testes|Laceration with foreign body of scrotum and testes +C2837067|T037|AB|S31.32XA|ICD10CM|Laceration w foreign body of scrotum and testes, init encntr|Laceration w foreign body of scrotum and testes, init encntr +C2837067|T037|PT|S31.32XA|ICD10CM|Laceration with foreign body of scrotum and testes, initial encounter|Laceration with foreign body of scrotum and testes, initial encounter +C2837068|T037|AB|S31.32XD|ICD10CM|Laceration w foreign body of scrotum and testes, subs encntr|Laceration w foreign body of scrotum and testes, subs encntr +C2837068|T037|PT|S31.32XD|ICD10CM|Laceration with foreign body of scrotum and testes, subsequent encounter|Laceration with foreign body of scrotum and testes, subsequent encounter +C2837069|T037|AB|S31.32XS|ICD10CM|Laceration with foreign body of scrotum and testes, sequela|Laceration with foreign body of scrotum and testes, sequela +C2837069|T037|PT|S31.32XS|ICD10CM|Laceration with foreign body of scrotum and testes, sequela|Laceration with foreign body of scrotum and testes, sequela +C2837070|T037|AB|S31.33|ICD10CM|Puncture wound without foreign body of scrotum and testes|Puncture wound without foreign body of scrotum and testes +C2837070|T037|HT|S31.33|ICD10CM|Puncture wound without foreign body of scrotum and testes|Puncture wound without foreign body of scrotum and testes +C2837071|T037|AB|S31.33XA|ICD10CM|Puncture wound w/o foreign body of scrotum and testes, init|Puncture wound w/o foreign body of scrotum and testes, init +C2837071|T037|PT|S31.33XA|ICD10CM|Puncture wound without foreign body of scrotum and testes, initial encounter|Puncture wound without foreign body of scrotum and testes, initial encounter +C2837072|T037|AB|S31.33XD|ICD10CM|Puncture wound w/o foreign body of scrotum and testes, subs|Puncture wound w/o foreign body of scrotum and testes, subs +C2837072|T037|PT|S31.33XD|ICD10CM|Puncture wound without foreign body of scrotum and testes, subsequent encounter|Puncture wound without foreign body of scrotum and testes, subsequent encounter +C2837073|T037|AB|S31.33XS|ICD10CM|Pnctr w/o foreign body of scrotum and testes, sequela|Pnctr w/o foreign body of scrotum and testes, sequela +C2837073|T037|PT|S31.33XS|ICD10CM|Puncture wound without foreign body of scrotum and testes, sequela|Puncture wound without foreign body of scrotum and testes, sequela +C2837074|T037|AB|S31.34|ICD10CM|Puncture wound with foreign body of scrotum and testes|Puncture wound with foreign body of scrotum and testes +C2837074|T037|HT|S31.34|ICD10CM|Puncture wound with foreign body of scrotum and testes|Puncture wound with foreign body of scrotum and testes +C2837075|T037|AB|S31.34XA|ICD10CM|Puncture wound w foreign body of scrotum and testes, init|Puncture wound w foreign body of scrotum and testes, init +C2837075|T037|PT|S31.34XA|ICD10CM|Puncture wound with foreign body of scrotum and testes, initial encounter|Puncture wound with foreign body of scrotum and testes, initial encounter +C2837076|T037|AB|S31.34XD|ICD10CM|Puncture wound w foreign body of scrotum and testes, subs|Puncture wound w foreign body of scrotum and testes, subs +C2837076|T037|PT|S31.34XD|ICD10CM|Puncture wound with foreign body of scrotum and testes, subsequent encounter|Puncture wound with foreign body of scrotum and testes, subsequent encounter +C2837077|T037|AB|S31.34XS|ICD10CM|Puncture wound w foreign body of scrotum and testes, sequela|Puncture wound w foreign body of scrotum and testes, sequela +C2837077|T037|PT|S31.34XS|ICD10CM|Puncture wound with foreign body of scrotum and testes, sequela|Puncture wound with foreign body of scrotum and testes, sequela +C2837078|T037|ET|S31.35|ICD10CM|Bite of scrotum and testes NOS|Bite of scrotum and testes NOS +C2837079|T037|HT|S31.35|ICD10CM|Open bite of scrotum and testes|Open bite of scrotum and testes +C2837079|T037|AB|S31.35|ICD10CM|Open bite of scrotum and testes|Open bite of scrotum and testes +C2837080|T037|AB|S31.35XA|ICD10CM|Open bite of scrotum and testes, initial encounter|Open bite of scrotum and testes, initial encounter +C2837080|T037|PT|S31.35XA|ICD10CM|Open bite of scrotum and testes, initial encounter|Open bite of scrotum and testes, initial encounter +C2837081|T037|AB|S31.35XD|ICD10CM|Open bite of scrotum and testes, subsequent encounter|Open bite of scrotum and testes, subsequent encounter +C2837081|T037|PT|S31.35XD|ICD10CM|Open bite of scrotum and testes, subsequent encounter|Open bite of scrotum and testes, subsequent encounter +C2837082|T037|AB|S31.35XS|ICD10CM|Open bite of scrotum and testes, sequela|Open bite of scrotum and testes, sequela +C2837082|T037|PT|S31.35XS|ICD10CM|Open bite of scrotum and testes, sequela|Open bite of scrotum and testes, sequela +C0495841|T037|PT|S31.4|ICD10|Open wound of vagina and vulva|Open wound of vagina and vulva +C0495841|T037|HT|S31.4|ICD10CM|Open wound of vagina and vulva|Open wound of vagina and vulva +C0495841|T037|AB|S31.4|ICD10CM|Open wound of vagina and vulva|Open wound of vagina and vulva +C2837083|T037|AB|S31.40|ICD10CM|Unspecified open wound of vagina and vulva|Unspecified open wound of vagina and vulva +C2837083|T037|HT|S31.40|ICD10CM|Unspecified open wound of vagina and vulva|Unspecified open wound of vagina and vulva +C2837084|T037|AB|S31.40XA|ICD10CM|Unspecified open wound of vagina and vulva, init encntr|Unspecified open wound of vagina and vulva, init encntr +C2837084|T037|PT|S31.40XA|ICD10CM|Unspecified open wound of vagina and vulva, initial encounter|Unspecified open wound of vagina and vulva, initial encounter +C2837085|T037|AB|S31.40XD|ICD10CM|Unspecified open wound of vagina and vulva, subs encntr|Unspecified open wound of vagina and vulva, subs encntr +C2837085|T037|PT|S31.40XD|ICD10CM|Unspecified open wound of vagina and vulva, subsequent encounter|Unspecified open wound of vagina and vulva, subsequent encounter +C2837086|T037|AB|S31.40XS|ICD10CM|Unspecified open wound of vagina and vulva, sequela|Unspecified open wound of vagina and vulva, sequela +C2837086|T037|PT|S31.40XS|ICD10CM|Unspecified open wound of vagina and vulva, sequela|Unspecified open wound of vagina and vulva, sequela +C2837087|T037|AB|S31.41|ICD10CM|Laceration without foreign body of vagina and vulva|Laceration without foreign body of vagina and vulva +C2837087|T037|HT|S31.41|ICD10CM|Laceration without foreign body of vagina and vulva|Laceration without foreign body of vagina and vulva +C2837088|T037|AB|S31.41XA|ICD10CM|Laceration w/o foreign body of vagina and vulva, init encntr|Laceration w/o foreign body of vagina and vulva, init encntr +C2837088|T037|PT|S31.41XA|ICD10CM|Laceration without foreign body of vagina and vulva, initial encounter|Laceration without foreign body of vagina and vulva, initial encounter +C2837089|T037|AB|S31.41XD|ICD10CM|Laceration w/o foreign body of vagina and vulva, subs encntr|Laceration w/o foreign body of vagina and vulva, subs encntr +C2837089|T037|PT|S31.41XD|ICD10CM|Laceration without foreign body of vagina and vulva, subsequent encounter|Laceration without foreign body of vagina and vulva, subsequent encounter +C2837090|T037|AB|S31.41XS|ICD10CM|Laceration without foreign body of vagina and vulva, sequela|Laceration without foreign body of vagina and vulva, sequela +C2837090|T037|PT|S31.41XS|ICD10CM|Laceration without foreign body of vagina and vulva, sequela|Laceration without foreign body of vagina and vulva, sequela +C2837091|T037|AB|S31.42|ICD10CM|Laceration with foreign body of vagina and vulva|Laceration with foreign body of vagina and vulva +C2837091|T037|HT|S31.42|ICD10CM|Laceration with foreign body of vagina and vulva|Laceration with foreign body of vagina and vulva +C2837092|T037|AB|S31.42XA|ICD10CM|Laceration w foreign body of vagina and vulva, init encntr|Laceration w foreign body of vagina and vulva, init encntr +C2837092|T037|PT|S31.42XA|ICD10CM|Laceration with foreign body of vagina and vulva, initial encounter|Laceration with foreign body of vagina and vulva, initial encounter +C2837093|T037|AB|S31.42XD|ICD10CM|Laceration w foreign body of vagina and vulva, subs encntr|Laceration w foreign body of vagina and vulva, subs encntr +C2837093|T037|PT|S31.42XD|ICD10CM|Laceration with foreign body of vagina and vulva, subsequent encounter|Laceration with foreign body of vagina and vulva, subsequent encounter +C2837094|T037|AB|S31.42XS|ICD10CM|Laceration with foreign body of vagina and vulva, sequela|Laceration with foreign body of vagina and vulva, sequela +C2837094|T037|PT|S31.42XS|ICD10CM|Laceration with foreign body of vagina and vulva, sequela|Laceration with foreign body of vagina and vulva, sequela +C2837095|T037|AB|S31.43|ICD10CM|Puncture wound without foreign body of vagina and vulva|Puncture wound without foreign body of vagina and vulva +C2837095|T037|HT|S31.43|ICD10CM|Puncture wound without foreign body of vagina and vulva|Puncture wound without foreign body of vagina and vulva +C2837096|T037|AB|S31.43XA|ICD10CM|Puncture wound w/o foreign body of vagina and vulva, init|Puncture wound w/o foreign body of vagina and vulva, init +C2837096|T037|PT|S31.43XA|ICD10CM|Puncture wound without foreign body of vagina and vulva, initial encounter|Puncture wound without foreign body of vagina and vulva, initial encounter +C2837097|T037|AB|S31.43XD|ICD10CM|Puncture wound w/o foreign body of vagina and vulva, subs|Puncture wound w/o foreign body of vagina and vulva, subs +C2837097|T037|PT|S31.43XD|ICD10CM|Puncture wound without foreign body of vagina and vulva, subsequent encounter|Puncture wound without foreign body of vagina and vulva, subsequent encounter +C2837098|T037|AB|S31.43XS|ICD10CM|Puncture wound w/o foreign body of vagina and vulva, sequela|Puncture wound w/o foreign body of vagina and vulva, sequela +C2837098|T037|PT|S31.43XS|ICD10CM|Puncture wound without foreign body of vagina and vulva, sequela|Puncture wound without foreign body of vagina and vulva, sequela +C2837099|T037|AB|S31.44|ICD10CM|Puncture wound with foreign body of vagina and vulva|Puncture wound with foreign body of vagina and vulva +C2837099|T037|HT|S31.44|ICD10CM|Puncture wound with foreign body of vagina and vulva|Puncture wound with foreign body of vagina and vulva +C2837100|T037|AB|S31.44XA|ICD10CM|Puncture wound w foreign body of vagina and vulva, init|Puncture wound w foreign body of vagina and vulva, init +C2837100|T037|PT|S31.44XA|ICD10CM|Puncture wound with foreign body of vagina and vulva, initial encounter|Puncture wound with foreign body of vagina and vulva, initial encounter +C2837101|T037|AB|S31.44XD|ICD10CM|Puncture wound w foreign body of vagina and vulva, subs|Puncture wound w foreign body of vagina and vulva, subs +C2837101|T037|PT|S31.44XD|ICD10CM|Puncture wound with foreign body of vagina and vulva, subsequent encounter|Puncture wound with foreign body of vagina and vulva, subsequent encounter +C2837102|T037|AB|S31.44XS|ICD10CM|Puncture wound w foreign body of vagina and vulva, sequela|Puncture wound w foreign body of vagina and vulva, sequela +C2837102|T037|PT|S31.44XS|ICD10CM|Puncture wound with foreign body of vagina and vulva, sequela|Puncture wound with foreign body of vagina and vulva, sequela +C2837103|T037|ET|S31.45|ICD10CM|Bite of vagina and vulva NOS|Bite of vagina and vulva NOS +C2837104|T037|AB|S31.45|ICD10CM|Open bite of vagina and vulva|Open bite of vagina and vulva +C2837104|T037|HT|S31.45|ICD10CM|Open bite of vagina and vulva|Open bite of vagina and vulva +C2837105|T037|AB|S31.45XA|ICD10CM|Open bite of vagina and vulva, initial encounter|Open bite of vagina and vulva, initial encounter +C2837105|T037|PT|S31.45XA|ICD10CM|Open bite of vagina and vulva, initial encounter|Open bite of vagina and vulva, initial encounter +C2837106|T037|AB|S31.45XD|ICD10CM|Open bite of vagina and vulva, subsequent encounter|Open bite of vagina and vulva, subsequent encounter +C2837106|T037|PT|S31.45XD|ICD10CM|Open bite of vagina and vulva, subsequent encounter|Open bite of vagina and vulva, subsequent encounter +C2837107|T037|AB|S31.45XS|ICD10CM|Open bite of vagina and vulva, sequela|Open bite of vagina and vulva, sequela +C2837107|T037|PT|S31.45XS|ICD10CM|Open bite of vagina and vulva, sequela|Open bite of vagina and vulva, sequela +C0478252|T037|PT|S31.5|ICD10|Open wound of other and unspecified external genital organs|Open wound of other and unspecified external genital organs +C2837108|T037|AB|S31.5|ICD10CM|Open wound of unspecified external genital organs|Open wound of unspecified external genital organs +C2837108|T037|HT|S31.5|ICD10CM|Open wound of unspecified external genital organs|Open wound of unspecified external genital organs +C2837109|T037|AB|S31.50|ICD10CM|Unsp open wound of unspecified external genital organs|Unsp open wound of unspecified external genital organs +C2837109|T037|HT|S31.50|ICD10CM|Unspecified open wound of unspecified external genital organs|Unspecified open wound of unspecified external genital organs +C2837110|T037|AB|S31.501|ICD10CM|Unsp open wound of unspecified external genital organs, male|Unsp open wound of unspecified external genital organs, male +C2837110|T037|HT|S31.501|ICD10CM|Unspecified open wound of unspecified external genital organs, male|Unspecified open wound of unspecified external genital organs, male +C2837111|T037|AB|S31.501A|ICD10CM|Unsp open wound of unsp external genital organs, male, init|Unsp open wound of unsp external genital organs, male, init +C2837111|T037|PT|S31.501A|ICD10CM|Unspecified open wound of unspecified external genital organs, male, initial encounter|Unspecified open wound of unspecified external genital organs, male, initial encounter +C2837112|T037|AB|S31.501D|ICD10CM|Unsp open wound of unsp external genital organs, male, subs|Unsp open wound of unsp external genital organs, male, subs +C2837112|T037|PT|S31.501D|ICD10CM|Unspecified open wound of unspecified external genital organs, male, subsequent encounter|Unspecified open wound of unspecified external genital organs, male, subsequent encounter +C2837113|T037|AB|S31.501S|ICD10CM|Unsp opn wnd unsp external genital organs, male, sequela|Unsp opn wnd unsp external genital organs, male, sequela +C2837113|T037|PT|S31.501S|ICD10CM|Unspecified open wound of unspecified external genital organs, male, sequela|Unspecified open wound of unspecified external genital organs, male, sequela +C2837114|T037|AB|S31.502|ICD10CM|Unsp open wound of unsp external genital organs, female|Unsp open wound of unsp external genital organs, female +C2837114|T037|HT|S31.502|ICD10CM|Unspecified open wound of unspecified external genital organs, female|Unspecified open wound of unspecified external genital organs, female +C2837115|T037|AB|S31.502A|ICD10CM|Unsp opn wnd unsp external genital organs, female, init|Unsp opn wnd unsp external genital organs, female, init +C2837115|T037|PT|S31.502A|ICD10CM|Unspecified open wound of unspecified external genital organs, female, initial encounter|Unspecified open wound of unspecified external genital organs, female, initial encounter +C2837116|T037|AB|S31.502D|ICD10CM|Unsp opn wnd unsp external genital organs, female, subs|Unsp opn wnd unsp external genital organs, female, subs +C2837116|T037|PT|S31.502D|ICD10CM|Unspecified open wound of unspecified external genital organs, female, subsequent encounter|Unspecified open wound of unspecified external genital organs, female, subsequent encounter +C2837117|T037|AB|S31.502S|ICD10CM|Unsp opn wnd unsp external genital organs, female, sequela|Unsp opn wnd unsp external genital organs, female, sequela +C2837117|T037|PT|S31.502S|ICD10CM|Unspecified open wound of unspecified external genital organs, female, sequela|Unspecified open wound of unspecified external genital organs, female, sequela +C2837118|T037|AB|S31.51|ICD10CM|Laceration w/o foreign body of unsp external genital organs|Laceration w/o foreign body of unsp external genital organs +C2837118|T037|HT|S31.51|ICD10CM|Laceration without foreign body of unspecified external genital organs|Laceration without foreign body of unspecified external genital organs +C2837119|T037|AB|S31.511|ICD10CM|Laceration w/o fb of unsp external genital organs, male|Laceration w/o fb of unsp external genital organs, male +C2837119|T037|HT|S31.511|ICD10CM|Laceration without foreign body of unspecified external genital organs, male|Laceration without foreign body of unspecified external genital organs, male +C2837120|T037|AB|S31.511A|ICD10CM|Lac w/o fb of unsp external genital organs, male, init|Lac w/o fb of unsp external genital organs, male, init +C2837120|T037|PT|S31.511A|ICD10CM|Laceration without foreign body of unspecified external genital organs, male, initial encounter|Laceration without foreign body of unspecified external genital organs, male, initial encounter +C2837121|T037|AB|S31.511D|ICD10CM|Lac w/o fb of unsp external genital organs, male, subs|Lac w/o fb of unsp external genital organs, male, subs +C2837121|T037|PT|S31.511D|ICD10CM|Laceration without foreign body of unspecified external genital organs, male, subsequent encounter|Laceration without foreign body of unspecified external genital organs, male, subsequent encounter +C2837122|T037|AB|S31.511S|ICD10CM|Lac w/o fb of unsp external genital organs, male, sequela|Lac w/o fb of unsp external genital organs, male, sequela +C2837122|T037|PT|S31.511S|ICD10CM|Laceration without foreign body of unspecified external genital organs, male, sequela|Laceration without foreign body of unspecified external genital organs, male, sequela +C2837123|T037|AB|S31.512|ICD10CM|Laceration w/o fb of unsp external genital organs, female|Laceration w/o fb of unsp external genital organs, female +C2837123|T037|HT|S31.512|ICD10CM|Laceration without foreign body of unspecified external genital organs, female|Laceration without foreign body of unspecified external genital organs, female +C2837124|T037|AB|S31.512A|ICD10CM|Lac w/o fb of unsp external genital organs, female, init|Lac w/o fb of unsp external genital organs, female, init +C2837124|T037|PT|S31.512A|ICD10CM|Laceration without foreign body of unspecified external genital organs, female, initial encounter|Laceration without foreign body of unspecified external genital organs, female, initial encounter +C2837125|T037|AB|S31.512D|ICD10CM|Lac w/o fb of unsp external genital organs, female, subs|Lac w/o fb of unsp external genital organs, female, subs +C2837125|T037|PT|S31.512D|ICD10CM|Laceration without foreign body of unspecified external genital organs, female, subsequent encounter|Laceration without foreign body of unspecified external genital organs, female, subsequent encounter +C2837126|T037|AB|S31.512S|ICD10CM|Lac w/o fb of unsp external genital organs, female, sequela|Lac w/o fb of unsp external genital organs, female, sequela +C2837126|T037|PT|S31.512S|ICD10CM|Laceration without foreign body of unspecified external genital organs, female, sequela|Laceration without foreign body of unspecified external genital organs, female, sequela +C2837127|T037|AB|S31.52|ICD10CM|Laceration with foreign body of unsp external genital organs|Laceration with foreign body of unsp external genital organs +C2837127|T037|HT|S31.52|ICD10CM|Laceration with foreign body of unspecified external genital organs|Laceration with foreign body of unspecified external genital organs +C2837128|T037|AB|S31.521|ICD10CM|Laceration w fb of unsp external genital organs, male|Laceration w fb of unsp external genital organs, male +C2837128|T037|HT|S31.521|ICD10CM|Laceration with foreign body of unspecified external genital organs, male|Laceration with foreign body of unspecified external genital organs, male +C2837129|T037|AB|S31.521A|ICD10CM|Laceration w fb of unsp external genital organs, male, init|Laceration w fb of unsp external genital organs, male, init +C2837129|T037|PT|S31.521A|ICD10CM|Laceration with foreign body of unspecified external genital organs, male, initial encounter|Laceration with foreign body of unspecified external genital organs, male, initial encounter +C2837130|T037|AB|S31.521D|ICD10CM|Laceration w fb of unsp external genital organs, male, subs|Laceration w fb of unsp external genital organs, male, subs +C2837130|T037|PT|S31.521D|ICD10CM|Laceration with foreign body of unspecified external genital organs, male, subsequent encounter|Laceration with foreign body of unspecified external genital organs, male, subsequent encounter +C2837131|T037|AB|S31.521S|ICD10CM|Lac w fb of unsp external genital organs, male, sequela|Lac w fb of unsp external genital organs, male, sequela +C2837131|T037|PT|S31.521S|ICD10CM|Laceration with foreign body of unspecified external genital organs, male, sequela|Laceration with foreign body of unspecified external genital organs, male, sequela +C2837132|T037|AB|S31.522|ICD10CM|Laceration w fb of unsp external genital organs, female|Laceration w fb of unsp external genital organs, female +C2837132|T037|HT|S31.522|ICD10CM|Laceration with foreign body of unspecified external genital organs, female|Laceration with foreign body of unspecified external genital organs, female +C2837133|T037|AB|S31.522A|ICD10CM|Lac w fb of unsp external genital organs, female, init|Lac w fb of unsp external genital organs, female, init +C2837133|T037|PT|S31.522A|ICD10CM|Laceration with foreign body of unspecified external genital organs, female, initial encounter|Laceration with foreign body of unspecified external genital organs, female, initial encounter +C2837134|T037|AB|S31.522D|ICD10CM|Lac w fb of unsp external genital organs, female, subs|Lac w fb of unsp external genital organs, female, subs +C2837134|T037|PT|S31.522D|ICD10CM|Laceration with foreign body of unspecified external genital organs, female, subsequent encounter|Laceration with foreign body of unspecified external genital organs, female, subsequent encounter +C2837135|T037|AB|S31.522S|ICD10CM|Lac w fb of unsp external genital organs, female, sequela|Lac w fb of unsp external genital organs, female, sequela +C2837135|T037|PT|S31.522S|ICD10CM|Laceration with foreign body of unspecified external genital organs, female, sequela|Laceration with foreign body of unspecified external genital organs, female, sequela +C2837136|T037|AB|S31.53|ICD10CM|Pnctr w/o foreign body of unsp external genital organs|Pnctr w/o foreign body of unsp external genital organs +C2837136|T037|HT|S31.53|ICD10CM|Puncture wound without foreign body of unspecified external genital organs|Puncture wound without foreign body of unspecified external genital organs +C2837137|T037|AB|S31.531|ICD10CM|Pnctr w/o foreign body of unsp external genital organs, male|Pnctr w/o foreign body of unsp external genital organs, male +C2837137|T037|HT|S31.531|ICD10CM|Puncture wound without foreign body of unspecified external genital organs, male|Puncture wound without foreign body of unspecified external genital organs, male +C2837138|T037|AB|S31.531A|ICD10CM|Pnctr w/o fb of unsp external genital organs, male, init|Pnctr w/o fb of unsp external genital organs, male, init +C2837138|T037|PT|S31.531A|ICD10CM|Puncture wound without foreign body of unspecified external genital organs, male, initial encounter|Puncture wound without foreign body of unspecified external genital organs, male, initial encounter +C2837139|T037|AB|S31.531D|ICD10CM|Pnctr w/o fb of unsp external genital organs, male, subs|Pnctr w/o fb of unsp external genital organs, male, subs +C2837140|T037|AB|S31.531S|ICD10CM|Pnctr w/o fb of unsp external genital organs, male, sequela|Pnctr w/o fb of unsp external genital organs, male, sequela +C2837140|T037|PT|S31.531S|ICD10CM|Puncture wound without foreign body of unspecified external genital organs, male, sequela|Puncture wound without foreign body of unspecified external genital organs, male, sequela +C2837141|T037|AB|S31.532|ICD10CM|Pnctr w/o fb of unsp external genital organs, female|Pnctr w/o fb of unsp external genital organs, female +C2837141|T037|HT|S31.532|ICD10CM|Puncture wound without foreign body of unspecified external genital organs, female|Puncture wound without foreign body of unspecified external genital organs, female +C2837142|T037|AB|S31.532A|ICD10CM|Pnctr w/o fb of unsp external genital organs, female, init|Pnctr w/o fb of unsp external genital organs, female, init +C2837143|T037|AB|S31.532D|ICD10CM|Pnctr w/o fb of unsp external genital organs, female, subs|Pnctr w/o fb of unsp external genital organs, female, subs +C2837144|T037|AB|S31.532S|ICD10CM|Pnctr w/o fb of unsp extrn genital organs, female, sequela|Pnctr w/o fb of unsp extrn genital organs, female, sequela +C2837144|T037|PT|S31.532S|ICD10CM|Puncture wound without foreign body of unspecified external genital organs, female, sequela|Puncture wound without foreign body of unspecified external genital organs, female, sequela +C2837145|T037|AB|S31.54|ICD10CM|Pnctr w foreign body of unsp external genital organs|Pnctr w foreign body of unsp external genital organs +C2837145|T037|HT|S31.54|ICD10CM|Puncture wound with foreign body of unspecified external genital organs|Puncture wound with foreign body of unspecified external genital organs +C2837146|T037|AB|S31.541|ICD10CM|Pnctr w foreign body of unsp external genital organs, male|Pnctr w foreign body of unsp external genital organs, male +C2837146|T037|HT|S31.541|ICD10CM|Puncture wound with foreign body of unspecified external genital organs, male|Puncture wound with foreign body of unspecified external genital organs, male +C2837147|T037|AB|S31.541A|ICD10CM|Pnctr w fb of unsp external genital organs, male, init|Pnctr w fb of unsp external genital organs, male, init +C2837147|T037|PT|S31.541A|ICD10CM|Puncture wound with foreign body of unspecified external genital organs, male, initial encounter|Puncture wound with foreign body of unspecified external genital organs, male, initial encounter +C2837148|T037|AB|S31.541D|ICD10CM|Pnctr w fb of unsp external genital organs, male, subs|Pnctr w fb of unsp external genital organs, male, subs +C2837148|T037|PT|S31.541D|ICD10CM|Puncture wound with foreign body of unspecified external genital organs, male, subsequent encounter|Puncture wound with foreign body of unspecified external genital organs, male, subsequent encounter +C2837149|T037|AB|S31.541S|ICD10CM|Pnctr w fb of unsp external genital organs, male, sequela|Pnctr w fb of unsp external genital organs, male, sequela +C2837149|T037|PT|S31.541S|ICD10CM|Puncture wound with foreign body of unspecified external genital organs, male, sequela|Puncture wound with foreign body of unspecified external genital organs, male, sequela +C2837150|T037|AB|S31.542|ICD10CM|Pnctr w foreign body of unsp external genital organs, female|Pnctr w foreign body of unsp external genital organs, female +C2837150|T037|HT|S31.542|ICD10CM|Puncture wound with foreign body of unspecified external genital organs, female|Puncture wound with foreign body of unspecified external genital organs, female +C2837151|T037|AB|S31.542A|ICD10CM|Pnctr w fb of unsp external genital organs, female, init|Pnctr w fb of unsp external genital organs, female, init +C2837151|T037|PT|S31.542A|ICD10CM|Puncture wound with foreign body of unspecified external genital organs, female, initial encounter|Puncture wound with foreign body of unspecified external genital organs, female, initial encounter +C2837152|T037|AB|S31.542D|ICD10CM|Pnctr w fb of unsp external genital organs, female, subs|Pnctr w fb of unsp external genital organs, female, subs +C2837153|T037|AB|S31.542S|ICD10CM|Pnctr w fb of unsp external genital organs, female, sequela|Pnctr w fb of unsp external genital organs, female, sequela +C2837153|T037|PT|S31.542S|ICD10CM|Puncture wound with foreign body of unspecified external genital organs, female, sequela|Puncture wound with foreign body of unspecified external genital organs, female, sequela +C2837154|T037|ET|S31.55|ICD10CM|Bite of unspecified external genital organs NOS|Bite of unspecified external genital organs NOS +C2837155|T037|AB|S31.55|ICD10CM|Open bite of unspecified external genital organs|Open bite of unspecified external genital organs +C2837155|T037|HT|S31.55|ICD10CM|Open bite of unspecified external genital organs|Open bite of unspecified external genital organs +C2837156|T037|AB|S31.551|ICD10CM|Open bite of unspecified external genital organs, male|Open bite of unspecified external genital organs, male +C2837156|T037|HT|S31.551|ICD10CM|Open bite of unspecified external genital organs, male|Open bite of unspecified external genital organs, male +C2837157|T037|AB|S31.551A|ICD10CM|Open bite of unsp external genital organs, male, init encntr|Open bite of unsp external genital organs, male, init encntr +C2837157|T037|PT|S31.551A|ICD10CM|Open bite of unspecified external genital organs, male, initial encounter|Open bite of unspecified external genital organs, male, initial encounter +C2837158|T037|AB|S31.551D|ICD10CM|Open bite of unsp external genital organs, male, subs encntr|Open bite of unsp external genital organs, male, subs encntr +C2837158|T037|PT|S31.551D|ICD10CM|Open bite of unspecified external genital organs, male, subsequent encounter|Open bite of unspecified external genital organs, male, subsequent encounter +C2837159|T037|AB|S31.551S|ICD10CM|Open bite of unsp external genital organs, male, sequela|Open bite of unsp external genital organs, male, sequela +C2837159|T037|PT|S31.551S|ICD10CM|Open bite of unspecified external genital organs, male, sequela|Open bite of unspecified external genital organs, male, sequela +C2837160|T037|AB|S31.552|ICD10CM|Open bite of unspecified external genital organs, female|Open bite of unspecified external genital organs, female +C2837160|T037|HT|S31.552|ICD10CM|Open bite of unspecified external genital organs, female|Open bite of unspecified external genital organs, female +C2837161|T037|AB|S31.552A|ICD10CM|Open bite of unsp external genital organs, female, init|Open bite of unsp external genital organs, female, init +C2837161|T037|PT|S31.552A|ICD10CM|Open bite of unspecified external genital organs, female, initial encounter|Open bite of unspecified external genital organs, female, initial encounter +C2837162|T037|AB|S31.552D|ICD10CM|Open bite of unsp external genital organs, female, subs|Open bite of unsp external genital organs, female, subs +C2837162|T037|PT|S31.552D|ICD10CM|Open bite of unspecified external genital organs, female, subsequent encounter|Open bite of unspecified external genital organs, female, subsequent encounter +C2837163|T037|AB|S31.552S|ICD10CM|Open bite of unsp external genital organs, female, sequela|Open bite of unsp external genital organs, female, sequela +C2837163|T037|PT|S31.552S|ICD10CM|Open bite of unspecified external genital organs, female, sequela|Open bite of unspecified external genital organs, female, sequela +C2837164|T037|AB|S31.6|ICD10CM|Open wound of abdominal wall w penetration into perit cav|Open wound of abdominal wall w penetration into perit cav +C2837164|T037|HT|S31.6|ICD10CM|Open wound of abdominal wall with penetration into peritoneal cavity|Open wound of abdominal wall with penetration into peritoneal cavity +C2837165|T037|AB|S31.60|ICD10CM|Unsp open wound of abdominal wall w penet perit cav|Unsp open wound of abdominal wall w penet perit cav +C2837165|T037|HT|S31.60|ICD10CM|Unspecified open wound of abdominal wall with penetration into peritoneal cavity|Unspecified open wound of abdominal wall with penetration into peritoneal cavity +C2837166|T037|AB|S31.600|ICD10CM|Unsp opn wnd abd wall, right upper q w penet perit cav|Unsp opn wnd abd wall, right upper q w penet perit cav +C2837167|T037|AB|S31.600A|ICD10CM|Unsp opn wnd abd wall, right upper q w penet perit cav, init|Unsp opn wnd abd wall, right upper q w penet perit cav, init +C2837168|T037|AB|S31.600D|ICD10CM|Unsp opn wnd abd wall, right upper q w penet perit cav, subs|Unsp opn wnd abd wall, right upper q w penet perit cav, subs +C2837169|T037|AB|S31.600S|ICD10CM|Unsp opn wnd abd wall, right upper q w penet perit cav, sqla|Unsp opn wnd abd wall, right upper q w penet perit cav, sqla +C2837170|T037|AB|S31.601|ICD10CM|Unsp open wound of abdominal wall, l upr q w penet perit cav|Unsp open wound of abdominal wall, l upr q w penet perit cav +C2837171|T037|AB|S31.601A|ICD10CM|Unsp open wound of abd wall, l upr q w penet perit cav, init|Unsp open wound of abd wall, l upr q w penet perit cav, init +C2837172|T037|AB|S31.601D|ICD10CM|Unsp open wound of abd wall, l upr q w penet perit cav, subs|Unsp open wound of abd wall, l upr q w penet perit cav, subs +C2837173|T037|AB|S31.601S|ICD10CM|Unsp opn wnd abd wall, l upr q w penet perit cav, sequela|Unsp opn wnd abd wall, l upr q w penet perit cav, sequela +C2837174|T037|AB|S31.602|ICD10CM|Unsp open wound of abd wall, epigst rgn w penet perit cav|Unsp open wound of abd wall, epigst rgn w penet perit cav +C2837174|T037|HT|S31.602|ICD10CM|Unspecified open wound of abdominal wall, epigastric region with penetration into peritoneal cavity|Unspecified open wound of abdominal wall, epigastric region with penetration into peritoneal cavity +C2837175|T037|AB|S31.602A|ICD10CM|Unsp opn wnd abd wall, epigst rgn w penet perit cav, init|Unsp opn wnd abd wall, epigst rgn w penet perit cav, init +C2837176|T037|AB|S31.602D|ICD10CM|Unsp opn wnd abd wall, epigst rgn w penet perit cav, subs|Unsp opn wnd abd wall, epigst rgn w penet perit cav, subs +C2837177|T037|AB|S31.602S|ICD10CM|Unsp opn wnd abd wall, epigst rgn w penet perit cav, sequela|Unsp opn wnd abd wall, epigst rgn w penet perit cav, sequela +C2837178|T037|AB|S31.603|ICD10CM|Unsp opn wnd abd wall, right lower q w penet perit cav|Unsp opn wnd abd wall, right lower q w penet perit cav +C2837179|T037|AB|S31.603A|ICD10CM|Unsp opn wnd abd wall, right lower q w penet perit cav, init|Unsp opn wnd abd wall, right lower q w penet perit cav, init +C2837180|T037|AB|S31.603D|ICD10CM|Unsp opn wnd abd wall, right lower q w penet perit cav, subs|Unsp opn wnd abd wall, right lower q w penet perit cav, subs +C2837181|T037|AB|S31.603S|ICD10CM|Unsp opn wnd abd wall, right lower q w penet perit cav, sqla|Unsp opn wnd abd wall, right lower q w penet perit cav, sqla +C2837182|T037|AB|S31.604|ICD10CM|Unsp opn wnd abd wall, left lower quadrant w penet perit cav|Unsp opn wnd abd wall, left lower quadrant w penet perit cav +C2837183|T037|AB|S31.604A|ICD10CM|Unsp opn wnd abd wall, left lower q w penet perit cav, init|Unsp opn wnd abd wall, left lower q w penet perit cav, init +C2837184|T037|AB|S31.604D|ICD10CM|Unsp opn wnd abd wall, left lower q w penet perit cav, subs|Unsp opn wnd abd wall, left lower q w penet perit cav, subs +C2837185|T037|AB|S31.604S|ICD10CM|Unsp opn wnd abd wall, left lower q w penet perit cav, sqla|Unsp opn wnd abd wall, left lower q w penet perit cav, sqla +C2837186|T037|AB|S31.605|ICD10CM|Unsp open wound of abd wall, periumb rgn w penet perit cav|Unsp open wound of abd wall, periumb rgn w penet perit cav +C2837186|T037|HT|S31.605|ICD10CM|Unspecified open wound of abdominal wall, periumbilic region with penetration into peritoneal cavity|Unspecified open wound of abdominal wall, periumbilic region with penetration into peritoneal cavity +C2837187|T037|AB|S31.605A|ICD10CM|Unsp opn wnd abd wall, periumb rgn w penet perit cav, init|Unsp opn wnd abd wall, periumb rgn w penet perit cav, init +C2837188|T037|AB|S31.605D|ICD10CM|Unsp opn wnd abd wall, periumb rgn w penet perit cav, subs|Unsp opn wnd abd wall, periumb rgn w penet perit cav, subs +C2837189|T037|AB|S31.605S|ICD10CM|Unsp opn wnd abd wall, periumb rgn w penet perit cav, sqla|Unsp opn wnd abd wall, periumb rgn w penet perit cav, sqla +C2837190|T037|AB|S31.609|ICD10CM|Unsp open wound of abd wall, unsp quadrant w penet perit cav|Unsp open wound of abd wall, unsp quadrant w penet perit cav +C2837191|T037|AB|S31.609A|ICD10CM|Unsp opn wnd abd wall, unsp quadrant w penet perit cav, init|Unsp opn wnd abd wall, unsp quadrant w penet perit cav, init +C2837192|T037|AB|S31.609D|ICD10CM|Unsp opn wnd abd wall, unsp quadrant w penet perit cav, subs|Unsp opn wnd abd wall, unsp quadrant w penet perit cav, subs +C2837193|T037|AB|S31.609S|ICD10CM|Unsp opn wnd abd wall, unsp q w penet perit cav, sequela|Unsp opn wnd abd wall, unsp q w penet perit cav, sequela +C2837194|T037|AB|S31.61|ICD10CM|Laceration w/o foreign body of abd wall w penet perit cav|Laceration w/o foreign body of abd wall w penet perit cav +C2837194|T037|HT|S31.61|ICD10CM|Laceration without foreign body of abdominal wall with penetration into peritoneal cavity|Laceration without foreign body of abdominal wall with penetration into peritoneal cavity +C2837195|T037|AB|S31.610|ICD10CM|Lac w/o fb of abd wall, right upper q w penet perit cav|Lac w/o fb of abd wall, right upper q w penet perit cav +C2837196|T037|AB|S31.610A|ICD10CM|Lac w/o fb of abd wall, r upper q w penet perit cav, init|Lac w/o fb of abd wall, r upper q w penet perit cav, init +C2837197|T037|AB|S31.610D|ICD10CM|Lac w/o fb of abd wall, r upper q w penet perit cav, subs|Lac w/o fb of abd wall, r upper q w penet perit cav, subs +C2837198|T037|AB|S31.610S|ICD10CM|Lac w/o fb of abd wall, r upper q w penet perit cav, sqla|Lac w/o fb of abd wall, r upper q w penet perit cav, sqla +C2837199|T037|AB|S31.611|ICD10CM|Laceration w/o fb of abd wall, l upr q w penet perit cav|Laceration w/o fb of abd wall, l upr q w penet perit cav +C2837200|T037|AB|S31.611A|ICD10CM|Lac w/o fb of abd wall, l upr q w penet perit cav, init|Lac w/o fb of abd wall, l upr q w penet perit cav, init +C2837201|T037|AB|S31.611D|ICD10CM|Lac w/o fb of abd wall, l upr q w penet perit cav, subs|Lac w/o fb of abd wall, l upr q w penet perit cav, subs +C2837202|T037|AB|S31.611S|ICD10CM|Lac w/o fb of abd wall, l upr q w penet perit cav, sequela|Lac w/o fb of abd wall, l upr q w penet perit cav, sequela +C2837203|T037|AB|S31.612|ICD10CM|Laceration w/o fb of abd wall, epigst rgn w penet perit cav|Laceration w/o fb of abd wall, epigst rgn w penet perit cav +C2837204|T037|AB|S31.612A|ICD10CM|Lac w/o fb of abd wall, epigst rgn w penet perit cav, init|Lac w/o fb of abd wall, epigst rgn w penet perit cav, init +C2837205|T037|AB|S31.612D|ICD10CM|Lac w/o fb of abd wall, epigst rgn w penet perit cav, subs|Lac w/o fb of abd wall, epigst rgn w penet perit cav, subs +C2837206|T037|AB|S31.612S|ICD10CM|Lac w/o fb of abd wall, epigst rgn w penet perit cav, sqla|Lac w/o fb of abd wall, epigst rgn w penet perit cav, sqla +C2837207|T037|AB|S31.613|ICD10CM|Lac w/o fb of abd wall, right lower q w penet perit cav|Lac w/o fb of abd wall, right lower q w penet perit cav +C2837208|T037|AB|S31.613A|ICD10CM|Lac w/o fb of abd wall, right low q w penet perit cav, init|Lac w/o fb of abd wall, right low q w penet perit cav, init +C2837209|T037|AB|S31.613D|ICD10CM|Lac w/o fb of abd wall, right low q w penet perit cav, subs|Lac w/o fb of abd wall, right low q w penet perit cav, subs +C2837210|T037|AB|S31.613S|ICD10CM|Lac w/o fb of abd wall, right low q w penet perit cav, sqla|Lac w/o fb of abd wall, right low q w penet perit cav, sqla +C2837211|T037|AB|S31.614|ICD10CM|Lac w/o fb of abd wall, left lower q w penet perit cav|Lac w/o fb of abd wall, left lower q w penet perit cav +C2837212|T037|AB|S31.614A|ICD10CM|Lac w/o fb of abd wall, left lower q w penet perit cav, init|Lac w/o fb of abd wall, left lower q w penet perit cav, init +C2837213|T037|AB|S31.614D|ICD10CM|Lac w/o fb of abd wall, left lower q w penet perit cav, subs|Lac w/o fb of abd wall, left lower q w penet perit cav, subs +C2837214|T037|AB|S31.614S|ICD10CM|Lac w/o fb of abd wall, left lower q w penet perit cav, sqla|Lac w/o fb of abd wall, left lower q w penet perit cav, sqla +C2837215|T037|AB|S31.615|ICD10CM|Laceration w/o fb of abd wall, periumb rgn w penet perit cav|Laceration w/o fb of abd wall, periumb rgn w penet perit cav +C2837216|T037|AB|S31.615A|ICD10CM|Lac w/o fb of abd wall, periumb rgn w penet perit cav, init|Lac w/o fb of abd wall, periumb rgn w penet perit cav, init +C2837217|T037|AB|S31.615D|ICD10CM|Lac w/o fb of abd wall, periumb rgn w penet perit cav, subs|Lac w/o fb of abd wall, periumb rgn w penet perit cav, subs +C2837218|T037|AB|S31.615S|ICD10CM|Lac w/o fb of abd wall, periumb rgn w penet perit cav, sqla|Lac w/o fb of abd wall, periumb rgn w penet perit cav, sqla +C2837219|T037|AB|S31.619|ICD10CM|Lac w/o fb of abd wall, unsp quadrant w penet perit cav|Lac w/o fb of abd wall, unsp quadrant w penet perit cav +C2837220|T037|AB|S31.619A|ICD10CM|Lac w/o fb of abd wall, unsp q w penet perit cav, init|Lac w/o fb of abd wall, unsp q w penet perit cav, init +C2837221|T037|AB|S31.619D|ICD10CM|Lac w/o fb of abd wall, unsp q w penet perit cav, subs|Lac w/o fb of abd wall, unsp q w penet perit cav, subs +C2837222|T037|AB|S31.619S|ICD10CM|Lac w/o fb of abd wall, unsp q w penet perit cav, sequela|Lac w/o fb of abd wall, unsp q w penet perit cav, sequela +C2837223|T037|AB|S31.62|ICD10CM|Laceration w foreign body of abd wall w penet perit cav|Laceration w foreign body of abd wall w penet perit cav +C2837223|T037|HT|S31.62|ICD10CM|Laceration with foreign body of abdominal wall with penetration into peritoneal cavity|Laceration with foreign body of abdominal wall with penetration into peritoneal cavity +C2837224|T037|AB|S31.620|ICD10CM|Lac w fb of abd wall, right upper quadrant w penet perit cav|Lac w fb of abd wall, right upper quadrant w penet perit cav +C2837225|T037|AB|S31.620A|ICD10CM|Lac w fb of abd wall, right upper q w penet perit cav, init|Lac w fb of abd wall, right upper q w penet perit cav, init +C2837226|T037|AB|S31.620D|ICD10CM|Lac w fb of abd wall, right upper q w penet perit cav, subs|Lac w fb of abd wall, right upper q w penet perit cav, subs +C2837227|T037|AB|S31.620S|ICD10CM|Lac w fb of abd wall, right upper q w penet perit cav, sqla|Lac w fb of abd wall, right upper q w penet perit cav, sqla +C2837228|T037|AB|S31.621|ICD10CM|Laceration w fb of abd wall, l upr q w penet perit cav|Laceration w fb of abd wall, l upr q w penet perit cav +C2837229|T037|AB|S31.621A|ICD10CM|Laceration w fb of abd wall, l upr q w penet perit cav, init|Laceration w fb of abd wall, l upr q w penet perit cav, init +C2837230|T037|AB|S31.621D|ICD10CM|Laceration w fb of abd wall, l upr q w penet perit cav, subs|Laceration w fb of abd wall, l upr q w penet perit cav, subs +C2837231|T037|AB|S31.621S|ICD10CM|Lac w fb of abd wall, l upr q w penet perit cav, sequela|Lac w fb of abd wall, l upr q w penet perit cav, sequela +C2837232|T037|AB|S31.622|ICD10CM|Laceration w fb of abd wall, epigst rgn w penet perit cav|Laceration w fb of abd wall, epigst rgn w penet perit cav +C2837233|T037|AB|S31.622A|ICD10CM|Lac w fb of abd wall, epigst rgn w penet perit cav, init|Lac w fb of abd wall, epigst rgn w penet perit cav, init +C2837234|T037|AB|S31.622D|ICD10CM|Lac w fb of abd wall, epigst rgn w penet perit cav, subs|Lac w fb of abd wall, epigst rgn w penet perit cav, subs +C2837235|T037|AB|S31.622S|ICD10CM|Lac w fb of abd wall, epigst rgn w penet perit cav, sequela|Lac w fb of abd wall, epigst rgn w penet perit cav, sequela +C2837236|T037|AB|S31.623|ICD10CM|Lac w fb of abd wall, right lower quadrant w penet perit cav|Lac w fb of abd wall, right lower quadrant w penet perit cav +C2837237|T037|AB|S31.623A|ICD10CM|Lac w fb of abd wall, right lower q w penet perit cav, init|Lac w fb of abd wall, right lower q w penet perit cav, init +C2837238|T037|AB|S31.623D|ICD10CM|Lac w fb of abd wall, right lower q w penet perit cav, subs|Lac w fb of abd wall, right lower q w penet perit cav, subs +C2837239|T037|AB|S31.623S|ICD10CM|Lac w fb of abd wall, right lower q w penet perit cav, sqla|Lac w fb of abd wall, right lower q w penet perit cav, sqla +C2837240|T037|AB|S31.624|ICD10CM|Lac w fb of abd wall, left lower quadrant w penet perit cav|Lac w fb of abd wall, left lower quadrant w penet perit cav +C2837241|T037|AB|S31.624A|ICD10CM|Lac w fb of abd wall, left lower q w penet perit cav, init|Lac w fb of abd wall, left lower q w penet perit cav, init +C2837242|T037|AB|S31.624D|ICD10CM|Lac w fb of abd wall, left lower q w penet perit cav, subs|Lac w fb of abd wall, left lower q w penet perit cav, subs +C2837243|T037|AB|S31.624S|ICD10CM|Lac w fb of abd wall, left lower q w penet perit cav, sqla|Lac w fb of abd wall, left lower q w penet perit cav, sqla +C2837244|T037|AB|S31.625|ICD10CM|Laceration w fb of abd wall, periumb rgn w penet perit cav|Laceration w fb of abd wall, periumb rgn w penet perit cav +C2837245|T037|AB|S31.625A|ICD10CM|Lac w fb of abd wall, periumb rgn w penet perit cav, init|Lac w fb of abd wall, periumb rgn w penet perit cav, init +C2837246|T037|AB|S31.625D|ICD10CM|Lac w fb of abd wall, periumb rgn w penet perit cav, subs|Lac w fb of abd wall, periumb rgn w penet perit cav, subs +C2837247|T037|AB|S31.625S|ICD10CM|Lac w fb of abd wall, periumb rgn w penet perit cav, sequela|Lac w fb of abd wall, periumb rgn w penet perit cav, sequela +C2837248|T037|AB|S31.629|ICD10CM|Laceration w fb of abd wall, unsp quadrant w penet perit cav|Laceration w fb of abd wall, unsp quadrant w penet perit cav +C2837249|T037|AB|S31.629A|ICD10CM|Lac w fb of abd wall, unsp quadrant w penet perit cav, init|Lac w fb of abd wall, unsp quadrant w penet perit cav, init +C2837250|T037|AB|S31.629D|ICD10CM|Lac w fb of abd wall, unsp quadrant w penet perit cav, subs|Lac w fb of abd wall, unsp quadrant w penet perit cav, subs +C2837251|T037|AB|S31.629S|ICD10CM|Lac w fb of abd wall, unsp q w penet perit cav, sequela|Lac w fb of abd wall, unsp q w penet perit cav, sequela +C2837252|T037|AB|S31.63|ICD10CM|Pnctr w/o foreign body of abd wall w penet perit cav|Pnctr w/o foreign body of abd wall w penet perit cav +C2837252|T037|HT|S31.63|ICD10CM|Puncture wound without foreign body of abdominal wall with penetration into peritoneal cavity|Puncture wound without foreign body of abdominal wall with penetration into peritoneal cavity +C2837253|T037|AB|S31.630|ICD10CM|Pnctr w/o fb of abd wall, right upper q w penet perit cav|Pnctr w/o fb of abd wall, right upper q w penet perit cav +C2837254|T037|AB|S31.630A|ICD10CM|Pnctr w/o fb of abd wall, r upper q w penet perit cav, init|Pnctr w/o fb of abd wall, r upper q w penet perit cav, init +C2837255|T037|AB|S31.630D|ICD10CM|Pnctr w/o fb of abd wall, r upper q w penet perit cav, subs|Pnctr w/o fb of abd wall, r upper q w penet perit cav, subs +C2837256|T037|AB|S31.630S|ICD10CM|Pnctr w/o fb of abd wall, r upper q w penet perit cav, sqla|Pnctr w/o fb of abd wall, r upper q w penet perit cav, sqla +C2837257|T037|AB|S31.631|ICD10CM|Pnctr w/o fb of abd wall, l upr q w penet perit cav|Pnctr w/o fb of abd wall, l upr q w penet perit cav +C2837258|T037|AB|S31.631A|ICD10CM|Pnctr w/o fb of abd wall, l upr q w penet perit cav, init|Pnctr w/o fb of abd wall, l upr q w penet perit cav, init +C2837259|T037|AB|S31.631D|ICD10CM|Pnctr w/o fb of abd wall, l upr q w penet perit cav, subs|Pnctr w/o fb of abd wall, l upr q w penet perit cav, subs +C2837260|T037|AB|S31.631S|ICD10CM|Pnctr w/o fb of abd wall, l upr q w penet perit cav, sequela|Pnctr w/o fb of abd wall, l upr q w penet perit cav, sequela +C2837261|T037|AB|S31.632|ICD10CM|Pnctr w/o fb of abd wall, epigst rgn w penet perit cav|Pnctr w/o fb of abd wall, epigst rgn w penet perit cav +C2837262|T037|AB|S31.632A|ICD10CM|Pnctr w/o fb of abd wall, epigst rgn w penet perit cav, init|Pnctr w/o fb of abd wall, epigst rgn w penet perit cav, init +C2837263|T037|AB|S31.632D|ICD10CM|Pnctr w/o fb of abd wall, epigst rgn w penet perit cav, subs|Pnctr w/o fb of abd wall, epigst rgn w penet perit cav, subs +C2837264|T037|AB|S31.632S|ICD10CM|Pnctr w/o fb of abd wall, epigst rgn w penet perit cav, sqla|Pnctr w/o fb of abd wall, epigst rgn w penet perit cav, sqla +C2837265|T037|AB|S31.633|ICD10CM|Pnctr w/o fb of abd wall, right lower q w penet perit cav|Pnctr w/o fb of abd wall, right lower q w penet perit cav +C2837266|T037|AB|S31.633A|ICD10CM|Pnctr w/o fb of abd wall, r low q w penet perit cav, init|Pnctr w/o fb of abd wall, r low q w penet perit cav, init +C2837267|T037|AB|S31.633D|ICD10CM|Pnctr w/o fb of abd wall, r low q w penet perit cav, subs|Pnctr w/o fb of abd wall, r low q w penet perit cav, subs +C2837268|T037|AB|S31.633S|ICD10CM|Pnctr w/o fb of abd wall, r low q w penet perit cav, sqla|Pnctr w/o fb of abd wall, r low q w penet perit cav, sqla +C2837269|T037|AB|S31.634|ICD10CM|Pnctr w/o fb of abd wall, left lower q w penet perit cav|Pnctr w/o fb of abd wall, left lower q w penet perit cav +C2837270|T037|AB|S31.634A|ICD10CM|Pnctr w/o fb of abd wall, left low q w penet perit cav, init|Pnctr w/o fb of abd wall, left low q w penet perit cav, init +C2837271|T037|AB|S31.634D|ICD10CM|Pnctr w/o fb of abd wall, left low q w penet perit cav, subs|Pnctr w/o fb of abd wall, left low q w penet perit cav, subs +C2837272|T037|AB|S31.634S|ICD10CM|Pnctr w/o fb of abd wall, left low q w penet perit cav, sqla|Pnctr w/o fb of abd wall, left low q w penet perit cav, sqla +C2837273|T037|AB|S31.635|ICD10CM|Pnctr w/o fb of abd wall, periumb rgn w penet perit cav|Pnctr w/o fb of abd wall, periumb rgn w penet perit cav +C2837274|T037|AB|S31.635A|ICD10CM|Pnctr w/o fb of abd wl, periumb rgn w penet perit cav, init|Pnctr w/o fb of abd wl, periumb rgn w penet perit cav, init +C2837275|T037|AB|S31.635D|ICD10CM|Pnctr w/o fb of abd wl, periumb rgn w penet perit cav, subs|Pnctr w/o fb of abd wl, periumb rgn w penet perit cav, subs +C2837276|T037|AB|S31.635S|ICD10CM|Pnctr w/o fb of abd wl, periumb rgn w penet perit cav, sqla|Pnctr w/o fb of abd wl, periumb rgn w penet perit cav, sqla +C2837277|T037|AB|S31.639|ICD10CM|Pnctr w/o fb of abd wall, unsp quadrant w penet perit cav|Pnctr w/o fb of abd wall, unsp quadrant w penet perit cav +C2837278|T037|AB|S31.639A|ICD10CM|Pnctr w/o fb of abd wall, unsp q w penet perit cav, init|Pnctr w/o fb of abd wall, unsp q w penet perit cav, init +C2837279|T037|AB|S31.639D|ICD10CM|Pnctr w/o fb of abd wall, unsp q w penet perit cav, subs|Pnctr w/o fb of abd wall, unsp q w penet perit cav, subs +C2837280|T037|AB|S31.639S|ICD10CM|Pnctr w/o fb of abd wall, unsp q w penet perit cav, sequela|Pnctr w/o fb of abd wall, unsp q w penet perit cav, sequela +C2837281|T037|AB|S31.64|ICD10CM|Puncture wound w foreign body of abd wall w penet perit cav|Puncture wound w foreign body of abd wall w penet perit cav +C2837281|T037|HT|S31.64|ICD10CM|Puncture wound with foreign body of abdominal wall with penetration into peritoneal cavity|Puncture wound with foreign body of abdominal wall with penetration into peritoneal cavity +C2837282|T037|AB|S31.640|ICD10CM|Pnctr w fb of abd wall, right upper q w penet perit cav|Pnctr w fb of abd wall, right upper q w penet perit cav +C2837283|T037|AB|S31.640A|ICD10CM|Pnctr w fb of abd wall, r upper q w penet perit cav, init|Pnctr w fb of abd wall, r upper q w penet perit cav, init +C2837284|T037|AB|S31.640D|ICD10CM|Pnctr w fb of abd wall, r upper q w penet perit cav, subs|Pnctr w fb of abd wall, r upper q w penet perit cav, subs +C2837285|T037|AB|S31.640S|ICD10CM|Pnctr w fb of abd wall, r upper q w penet perit cav, sqla|Pnctr w fb of abd wall, r upper q w penet perit cav, sqla +C2837286|T037|AB|S31.641|ICD10CM|Pnctr w foreign body of abd wall, l upr q w penet perit cav|Pnctr w foreign body of abd wall, l upr q w penet perit cav +C2837287|T037|AB|S31.641A|ICD10CM|Pnctr w fb of abd wall, l upr q w penet perit cav, init|Pnctr w fb of abd wall, l upr q w penet perit cav, init +C2837288|T037|AB|S31.641D|ICD10CM|Pnctr w fb of abd wall, l upr q w penet perit cav, subs|Pnctr w fb of abd wall, l upr q w penet perit cav, subs +C2837289|T037|AB|S31.641S|ICD10CM|Pnctr w fb of abd wall, l upr q w penet perit cav, sequela|Pnctr w fb of abd wall, l upr q w penet perit cav, sequela +C2837290|T037|AB|S31.642|ICD10CM|Pnctr w fb of abd wall, epigst rgn w penet perit cav|Pnctr w fb of abd wall, epigst rgn w penet perit cav +C2837291|T037|AB|S31.642A|ICD10CM|Pnctr w fb of abd wall, epigst rgn w penet perit cav, init|Pnctr w fb of abd wall, epigst rgn w penet perit cav, init +C2837292|T037|AB|S31.642D|ICD10CM|Pnctr w fb of abd wall, epigst rgn w penet perit cav, subs|Pnctr w fb of abd wall, epigst rgn w penet perit cav, subs +C2837293|T037|AB|S31.642S|ICD10CM|Pnctr w fb of abd wall, epigst rgn w penet perit cav, sqla|Pnctr w fb of abd wall, epigst rgn w penet perit cav, sqla +C2837294|T037|AB|S31.643|ICD10CM|Pnctr w fb of abd wall, right lower q w penet perit cav|Pnctr w fb of abd wall, right lower q w penet perit cav +C2837295|T037|AB|S31.643A|ICD10CM|Pnctr w fb of abd wall, right low q w penet perit cav, init|Pnctr w fb of abd wall, right low q w penet perit cav, init +C2837296|T037|AB|S31.643D|ICD10CM|Pnctr w fb of abd wall, right low q w penet perit cav, subs|Pnctr w fb of abd wall, right low q w penet perit cav, subs +C2837297|T037|AB|S31.643S|ICD10CM|Pnctr w fb of abd wall, right low q w penet perit cav, sqla|Pnctr w fb of abd wall, right low q w penet perit cav, sqla +C2837298|T037|AB|S31.644|ICD10CM|Pnctr w fb of abd wall, left lower q w penet perit cav|Pnctr w fb of abd wall, left lower q w penet perit cav +C2837299|T037|AB|S31.644A|ICD10CM|Pnctr w fb of abd wall, left lower q w penet perit cav, init|Pnctr w fb of abd wall, left lower q w penet perit cav, init +C2837300|T037|AB|S31.644D|ICD10CM|Pnctr w fb of abd wall, left lower q w penet perit cav, subs|Pnctr w fb of abd wall, left lower q w penet perit cav, subs +C2837301|T037|AB|S31.644S|ICD10CM|Pnctr w fb of abd wall, left lower q w penet perit cav, sqla|Pnctr w fb of abd wall, left lower q w penet perit cav, sqla +C2837302|T037|AB|S31.645|ICD10CM|Pnctr w fb of abd wall, periumb rgn w penet perit cav|Pnctr w fb of abd wall, periumb rgn w penet perit cav +C2837303|T037|AB|S31.645A|ICD10CM|Pnctr w fb of abd wall, periumb rgn w penet perit cav, init|Pnctr w fb of abd wall, periumb rgn w penet perit cav, init +C2837304|T037|AB|S31.645D|ICD10CM|Pnctr w fb of abd wall, periumb rgn w penet perit cav, subs|Pnctr w fb of abd wall, periumb rgn w penet perit cav, subs +C2837305|T037|AB|S31.645S|ICD10CM|Pnctr w fb of abd wall, periumb rgn w penet perit cav, sqla|Pnctr w fb of abd wall, periumb rgn w penet perit cav, sqla +C2837306|T037|AB|S31.649|ICD10CM|Pnctr w fb of abd wall, unsp quadrant w penet perit cav|Pnctr w fb of abd wall, unsp quadrant w penet perit cav +C2837307|T037|AB|S31.649A|ICD10CM|Pnctr w fb of abd wall, unsp q w penet perit cav, init|Pnctr w fb of abd wall, unsp q w penet perit cav, init +C2837308|T037|AB|S31.649D|ICD10CM|Pnctr w fb of abd wall, unsp q w penet perit cav, subs|Pnctr w fb of abd wall, unsp q w penet perit cav, subs +C2837309|T037|AB|S31.649S|ICD10CM|Pnctr w fb of abd wall, unsp q w penet perit cav, sequela|Pnctr w fb of abd wall, unsp q w penet perit cav, sequela +C2837310|T037|AB|S31.65|ICD10CM|Open bite of abdominal wall w penetration into perit cav|Open bite of abdominal wall w penetration into perit cav +C2837310|T037|HT|S31.65|ICD10CM|Open bite of abdominal wall with penetration into peritoneal cavity|Open bite of abdominal wall with penetration into peritoneal cavity +C2837311|T037|AB|S31.650|ICD10CM|Open bite of abd wall, right upper q w penet perit cav|Open bite of abd wall, right upper q w penet perit cav +C2837311|T037|HT|S31.650|ICD10CM|Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity|Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity +C2837312|T037|AB|S31.650A|ICD10CM|Open bite of abd wall, right upper q w penet perit cav, init|Open bite of abd wall, right upper q w penet perit cav, init +C2837313|T037|AB|S31.650D|ICD10CM|Open bite of abd wall, right upper q w penet perit cav, subs|Open bite of abd wall, right upper q w penet perit cav, subs +C2837314|T037|AB|S31.650S|ICD10CM|Open bite of abd wall, right upper q w penet perit cav, sqla|Open bite of abd wall, right upper q w penet perit cav, sqla +C2837314|T037|PT|S31.650S|ICD10CM|Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela|Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela +C2837315|T037|AB|S31.651|ICD10CM|Open bite of abdominal wall, l upr q w penet perit cav|Open bite of abdominal wall, l upr q w penet perit cav +C2837315|T037|HT|S31.651|ICD10CM|Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity|Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity +C2837316|T037|AB|S31.651A|ICD10CM|Open bite of abdominal wall, l upr q w penet perit cav, init|Open bite of abdominal wall, l upr q w penet perit cav, init +C2837317|T037|AB|S31.651D|ICD10CM|Open bite of abdominal wall, l upr q w penet perit cav, subs|Open bite of abdominal wall, l upr q w penet perit cav, subs +C2837318|T037|AB|S31.651S|ICD10CM|Open bite of abd wall, l upr q w penet perit cav, sequela|Open bite of abd wall, l upr q w penet perit cav, sequela +C2837318|T037|PT|S31.651S|ICD10CM|Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela|Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela +C2837319|T037|HT|S31.652|ICD10CM|Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity|Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity +C2837319|T037|AB|S31.652|ICD10CM|Open bite of abdominal wall, epigst rgn w penet perit cav|Open bite of abdominal wall, epigst rgn w penet perit cav +C2837320|T037|AB|S31.652A|ICD10CM|Open bite of abd wall, epigst rgn w penet perit cav, init|Open bite of abd wall, epigst rgn w penet perit cav, init +C2837321|T037|AB|S31.652D|ICD10CM|Open bite of abd wall, epigst rgn w penet perit cav, subs|Open bite of abd wall, epigst rgn w penet perit cav, subs +C2837322|T037|AB|S31.652S|ICD10CM|Open bite of abd wall, epigst rgn w penet perit cav, sequela|Open bite of abd wall, epigst rgn w penet perit cav, sequela +C2837322|T037|PT|S31.652S|ICD10CM|Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela|Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela +C2837323|T037|AB|S31.653|ICD10CM|Open bite of abd wall, right lower q w penet perit cav|Open bite of abd wall, right lower q w penet perit cav +C2837323|T037|HT|S31.653|ICD10CM|Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity|Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity +C2837324|T037|AB|S31.653A|ICD10CM|Open bite of abd wall, right lower q w penet perit cav, init|Open bite of abd wall, right lower q w penet perit cav, init +C2837325|T037|AB|S31.653D|ICD10CM|Open bite of abd wall, right lower q w penet perit cav, subs|Open bite of abd wall, right lower q w penet perit cav, subs +C2837326|T037|AB|S31.653S|ICD10CM|Open bite of abd wall, right lower q w penet perit cav, sqla|Open bite of abd wall, right lower q w penet perit cav, sqla +C2837326|T037|PT|S31.653S|ICD10CM|Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela|Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela +C2837327|T037|AB|S31.654|ICD10CM|Open bite of abd wall, left lower quadrant w penet perit cav|Open bite of abd wall, left lower quadrant w penet perit cav +C2837327|T037|HT|S31.654|ICD10CM|Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity|Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity +C2837328|T037|AB|S31.654A|ICD10CM|Open bite of abd wall, left lower q w penet perit cav, init|Open bite of abd wall, left lower q w penet perit cav, init +C2837329|T037|AB|S31.654D|ICD10CM|Open bite of abd wall, left lower q w penet perit cav, subs|Open bite of abd wall, left lower q w penet perit cav, subs +C2837330|T037|AB|S31.654S|ICD10CM|Open bite of abd wall, left lower q w penet perit cav, sqla|Open bite of abd wall, left lower q w penet perit cav, sqla +C2837330|T037|PT|S31.654S|ICD10CM|Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela|Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela +C2837331|T037|AB|S31.655|ICD10CM|Open bite of abdominal wall, periumb rgn w penet perit cav|Open bite of abdominal wall, periumb rgn w penet perit cav +C2837331|T037|HT|S31.655|ICD10CM|Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity|Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity +C2837332|T037|AB|S31.655A|ICD10CM|Open bite of abd wall, periumb rgn w penet perit cav, init|Open bite of abd wall, periumb rgn w penet perit cav, init +C2837333|T037|AB|S31.655D|ICD10CM|Open bite of abd wall, periumb rgn w penet perit cav, subs|Open bite of abd wall, periumb rgn w penet perit cav, subs +C2837334|T037|AB|S31.655S|ICD10CM|Open bite of abd wall, periumb rgn w penet perit cav, sqla|Open bite of abd wall, periumb rgn w penet perit cav, sqla +C2837334|T037|PT|S31.655S|ICD10CM|Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela|Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela +C2837335|T037|AB|S31.659|ICD10CM|Open bite of abdominal wall, unsp quadrant w penet perit cav|Open bite of abdominal wall, unsp quadrant w penet perit cav +C2837335|T037|HT|S31.659|ICD10CM|Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity|Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity +C2837336|T037|AB|S31.659A|ICD10CM|Open bite of abd wall, unsp quadrant w penet perit cav, init|Open bite of abd wall, unsp quadrant w penet perit cav, init +C2837337|T037|AB|S31.659D|ICD10CM|Open bite of abd wall, unsp quadrant w penet perit cav, subs|Open bite of abd wall, unsp quadrant w penet perit cav, subs +C2837338|T037|AB|S31.659S|ICD10CM|Open bite of abd wall, unsp q w penet perit cav, sequela|Open bite of abd wall, unsp q w penet perit cav, sequela +C2837338|T037|PT|S31.659S|ICD10CM|Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela|Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela +C0451959|T037|PT|S31.7|ICD10|Multiple open wounds of abdomen, lower back and pelvis|Multiple open wounds of abdomen, lower back and pelvis +C0495842|T037|PT|S31.8|ICD10|Open wound of other and unspecified parts of abdomen|Open wound of other and unspecified parts of abdomen +C2837339|T037|AB|S31.8|ICD10CM|Open wound of other parts of abdomen, lower back and pelvis|Open wound of other parts of abdomen, lower back and pelvis +C2837339|T037|HT|S31.8|ICD10CM|Open wound of other parts of abdomen, lower back and pelvis|Open wound of other parts of abdomen, lower back and pelvis +C2837340|T037|AB|S31.80|ICD10CM|Open wound of unspecified buttock|Open wound of unspecified buttock +C2837340|T037|HT|S31.80|ICD10CM|Open wound of unspecified buttock|Open wound of unspecified buttock +C2837341|T037|AB|S31.801|ICD10CM|Laceration without foreign body of unspecified buttock|Laceration without foreign body of unspecified buttock +C2837341|T037|HT|S31.801|ICD10CM|Laceration without foreign body of unspecified buttock|Laceration without foreign body of unspecified buttock +C2837342|T037|AB|S31.801A|ICD10CM|Laceration without foreign body of unsp buttock, init encntr|Laceration without foreign body of unsp buttock, init encntr +C2837342|T037|PT|S31.801A|ICD10CM|Laceration without foreign body of unspecified buttock, initial encounter|Laceration without foreign body of unspecified buttock, initial encounter +C2837343|T037|AB|S31.801D|ICD10CM|Laceration without foreign body of unsp buttock, subs encntr|Laceration without foreign body of unsp buttock, subs encntr +C2837343|T037|PT|S31.801D|ICD10CM|Laceration without foreign body of unspecified buttock, subsequent encounter|Laceration without foreign body of unspecified buttock, subsequent encounter +C2837344|T037|AB|S31.801S|ICD10CM|Laceration without foreign body of unsp buttock, sequela|Laceration without foreign body of unsp buttock, sequela +C2837344|T037|PT|S31.801S|ICD10CM|Laceration without foreign body of unspecified buttock, sequela|Laceration without foreign body of unspecified buttock, sequela +C2837345|T037|AB|S31.802|ICD10CM|Laceration with foreign body of unspecified buttock|Laceration with foreign body of unspecified buttock +C2837345|T037|HT|S31.802|ICD10CM|Laceration with foreign body of unspecified buttock|Laceration with foreign body of unspecified buttock +C2837346|T037|AB|S31.802A|ICD10CM|Laceration with foreign body of unsp buttock, init encntr|Laceration with foreign body of unsp buttock, init encntr +C2837346|T037|PT|S31.802A|ICD10CM|Laceration with foreign body of unspecified buttock, initial encounter|Laceration with foreign body of unspecified buttock, initial encounter +C2837347|T037|AB|S31.802D|ICD10CM|Laceration with foreign body of unsp buttock, subs encntr|Laceration with foreign body of unsp buttock, subs encntr +C2837347|T037|PT|S31.802D|ICD10CM|Laceration with foreign body of unspecified buttock, subsequent encounter|Laceration with foreign body of unspecified buttock, subsequent encounter +C2837348|T037|AB|S31.802S|ICD10CM|Laceration with foreign body of unspecified buttock, sequela|Laceration with foreign body of unspecified buttock, sequela +C2837348|T037|PT|S31.802S|ICD10CM|Laceration with foreign body of unspecified buttock, sequela|Laceration with foreign body of unspecified buttock, sequela +C2837349|T037|AB|S31.803|ICD10CM|Puncture wound without foreign body of unspecified buttock|Puncture wound without foreign body of unspecified buttock +C2837349|T037|HT|S31.803|ICD10CM|Puncture wound without foreign body of unspecified buttock|Puncture wound without foreign body of unspecified buttock +C2837350|T037|AB|S31.803A|ICD10CM|Puncture wound w/o foreign body of unsp buttock, init encntr|Puncture wound w/o foreign body of unsp buttock, init encntr +C2837350|T037|PT|S31.803A|ICD10CM|Puncture wound without foreign body of unspecified buttock, initial encounter|Puncture wound without foreign body of unspecified buttock, initial encounter +C2837351|T037|AB|S31.803D|ICD10CM|Puncture wound w/o foreign body of unsp buttock, subs encntr|Puncture wound w/o foreign body of unsp buttock, subs encntr +C2837351|T037|PT|S31.803D|ICD10CM|Puncture wound without foreign body of unspecified buttock, subsequent encounter|Puncture wound without foreign body of unspecified buttock, subsequent encounter +C2837352|T037|AB|S31.803S|ICD10CM|Puncture wound without foreign body of unsp buttock, sequela|Puncture wound without foreign body of unsp buttock, sequela +C2837352|T037|PT|S31.803S|ICD10CM|Puncture wound without foreign body of unspecified buttock, sequela|Puncture wound without foreign body of unspecified buttock, sequela +C2837353|T037|AB|S31.804|ICD10CM|Puncture wound with foreign body of unspecified buttock|Puncture wound with foreign body of unspecified buttock +C2837353|T037|HT|S31.804|ICD10CM|Puncture wound with foreign body of unspecified buttock|Puncture wound with foreign body of unspecified buttock +C2837354|T037|AB|S31.804A|ICD10CM|Puncture wound w foreign body of unsp buttock, init encntr|Puncture wound w foreign body of unsp buttock, init encntr +C2837354|T037|PT|S31.804A|ICD10CM|Puncture wound with foreign body of unspecified buttock, initial encounter|Puncture wound with foreign body of unspecified buttock, initial encounter +C2837355|T037|AB|S31.804D|ICD10CM|Puncture wound w foreign body of unsp buttock, subs encntr|Puncture wound w foreign body of unsp buttock, subs encntr +C2837355|T037|PT|S31.804D|ICD10CM|Puncture wound with foreign body of unspecified buttock, subsequent encounter|Puncture wound with foreign body of unspecified buttock, subsequent encounter +C2837356|T037|AB|S31.804S|ICD10CM|Puncture wound with foreign body of unsp buttock, sequela|Puncture wound with foreign body of unsp buttock, sequela +C2837356|T037|PT|S31.804S|ICD10CM|Puncture wound with foreign body of unspecified buttock, sequela|Puncture wound with foreign body of unspecified buttock, sequela +C2005981|T037|ET|S31.805|ICD10CM|Bite of buttock NOS|Bite of buttock NOS +C2837357|T037|AB|S31.805|ICD10CM|Open bite of unspecified buttock|Open bite of unspecified buttock +C2837357|T037|HT|S31.805|ICD10CM|Open bite of unspecified buttock|Open bite of unspecified buttock +C2837358|T037|AB|S31.805A|ICD10CM|Open bite of unspecified buttock, initial encounter|Open bite of unspecified buttock, initial encounter +C2837358|T037|PT|S31.805A|ICD10CM|Open bite of unspecified buttock, initial encounter|Open bite of unspecified buttock, initial encounter +C2837359|T037|AB|S31.805D|ICD10CM|Open bite of unspecified buttock, subsequent encounter|Open bite of unspecified buttock, subsequent encounter +C2837359|T037|PT|S31.805D|ICD10CM|Open bite of unspecified buttock, subsequent encounter|Open bite of unspecified buttock, subsequent encounter +C2837360|T037|AB|S31.805S|ICD10CM|Open bite of unspecified buttock, sequela|Open bite of unspecified buttock, sequela +C2837360|T037|PT|S31.805S|ICD10CM|Open bite of unspecified buttock, sequela|Open bite of unspecified buttock, sequela +C2837361|T037|AB|S31.809|ICD10CM|Unspecified open wound of unspecified buttock|Unspecified open wound of unspecified buttock +C2837361|T037|HT|S31.809|ICD10CM|Unspecified open wound of unspecified buttock|Unspecified open wound of unspecified buttock +C2837362|T037|AB|S31.809A|ICD10CM|Unspecified open wound of unspecified buttock, init encntr|Unspecified open wound of unspecified buttock, init encntr +C2837362|T037|PT|S31.809A|ICD10CM|Unspecified open wound of unspecified buttock, initial encounter|Unspecified open wound of unspecified buttock, initial encounter +C2837363|T037|AB|S31.809D|ICD10CM|Unspecified open wound of unspecified buttock, subs encntr|Unspecified open wound of unspecified buttock, subs encntr +C2837363|T037|PT|S31.809D|ICD10CM|Unspecified open wound of unspecified buttock, subsequent encounter|Unspecified open wound of unspecified buttock, subsequent encounter +C2837364|T037|AB|S31.809S|ICD10CM|Unspecified open wound of unspecified buttock, sequela|Unspecified open wound of unspecified buttock, sequela +C2837364|T037|PT|S31.809S|ICD10CM|Unspecified open wound of unspecified buttock, sequela|Unspecified open wound of unspecified buttock, sequela +C2005916|T037|HT|S31.81|ICD10CM|Open wound of right buttock|Open wound of right buttock +C2005916|T037|AB|S31.81|ICD10CM|Open wound of right buttock|Open wound of right buttock +C2837365|T037|AB|S31.811|ICD10CM|Laceration without foreign body of right buttock|Laceration without foreign body of right buttock +C2837365|T037|HT|S31.811|ICD10CM|Laceration without foreign body of right buttock|Laceration without foreign body of right buttock +C2837366|T037|AB|S31.811A|ICD10CM|Laceration w/o foreign body of right buttock, init encntr|Laceration w/o foreign body of right buttock, init encntr +C2837366|T037|PT|S31.811A|ICD10CM|Laceration without foreign body of right buttock, initial encounter|Laceration without foreign body of right buttock, initial encounter +C2837367|T037|AB|S31.811D|ICD10CM|Laceration w/o foreign body of right buttock, subs encntr|Laceration w/o foreign body of right buttock, subs encntr +C2837367|T037|PT|S31.811D|ICD10CM|Laceration without foreign body of right buttock, subsequent encounter|Laceration without foreign body of right buttock, subsequent encounter +C2837368|T037|AB|S31.811S|ICD10CM|Laceration without foreign body of right buttock, sequela|Laceration without foreign body of right buttock, sequela +C2837368|T037|PT|S31.811S|ICD10CM|Laceration without foreign body of right buttock, sequela|Laceration without foreign body of right buttock, sequela +C2837369|T037|AB|S31.812|ICD10CM|Laceration with foreign body of right buttock|Laceration with foreign body of right buttock +C2837369|T037|HT|S31.812|ICD10CM|Laceration with foreign body of right buttock|Laceration with foreign body of right buttock +C2837370|T037|AB|S31.812A|ICD10CM|Laceration with foreign body of right buttock, init encntr|Laceration with foreign body of right buttock, init encntr +C2837370|T037|PT|S31.812A|ICD10CM|Laceration with foreign body of right buttock, initial encounter|Laceration with foreign body of right buttock, initial encounter +C2837371|T037|AB|S31.812D|ICD10CM|Laceration with foreign body of right buttock, subs encntr|Laceration with foreign body of right buttock, subs encntr +C2837371|T037|PT|S31.812D|ICD10CM|Laceration with foreign body of right buttock, subsequent encounter|Laceration with foreign body of right buttock, subsequent encounter +C2837372|T037|AB|S31.812S|ICD10CM|Laceration with foreign body of right buttock, sequela|Laceration with foreign body of right buttock, sequela +C2837372|T037|PT|S31.812S|ICD10CM|Laceration with foreign body of right buttock, sequela|Laceration with foreign body of right buttock, sequela +C2837373|T037|AB|S31.813|ICD10CM|Puncture wound without foreign body of right buttock|Puncture wound without foreign body of right buttock +C2837373|T037|HT|S31.813|ICD10CM|Puncture wound without foreign body of right buttock|Puncture wound without foreign body of right buttock +C2837374|T037|AB|S31.813A|ICD10CM|Puncture wound w/o foreign body of right buttock, init|Puncture wound w/o foreign body of right buttock, init +C2837374|T037|PT|S31.813A|ICD10CM|Puncture wound without foreign body of right buttock, initial encounter|Puncture wound without foreign body of right buttock, initial encounter +C2837375|T037|AB|S31.813D|ICD10CM|Puncture wound w/o foreign body of right buttock, subs|Puncture wound w/o foreign body of right buttock, subs +C2837375|T037|PT|S31.813D|ICD10CM|Puncture wound without foreign body of right buttock, subsequent encounter|Puncture wound without foreign body of right buttock, subsequent encounter +C2837376|T037|AB|S31.813S|ICD10CM|Puncture wound w/o foreign body of right buttock, sequela|Puncture wound w/o foreign body of right buttock, sequela +C2837376|T037|PT|S31.813S|ICD10CM|Puncture wound without foreign body of right buttock, sequela|Puncture wound without foreign body of right buttock, sequela +C2837377|T037|AB|S31.814|ICD10CM|Puncture wound with foreign body of right buttock|Puncture wound with foreign body of right buttock +C2837377|T037|HT|S31.814|ICD10CM|Puncture wound with foreign body of right buttock|Puncture wound with foreign body of right buttock +C2837378|T037|AB|S31.814A|ICD10CM|Puncture wound w foreign body of right buttock, init encntr|Puncture wound w foreign body of right buttock, init encntr +C2837378|T037|PT|S31.814A|ICD10CM|Puncture wound with foreign body of right buttock, initial encounter|Puncture wound with foreign body of right buttock, initial encounter +C2837379|T037|AB|S31.814D|ICD10CM|Puncture wound w foreign body of right buttock, subs encntr|Puncture wound w foreign body of right buttock, subs encntr +C2837379|T037|PT|S31.814D|ICD10CM|Puncture wound with foreign body of right buttock, subsequent encounter|Puncture wound with foreign body of right buttock, subsequent encounter +C2837380|T037|AB|S31.814S|ICD10CM|Puncture wound with foreign body of right buttock, sequela|Puncture wound with foreign body of right buttock, sequela +C2837380|T037|PT|S31.814S|ICD10CM|Puncture wound with foreign body of right buttock, sequela|Puncture wound with foreign body of right buttock, sequela +C2005849|T037|ET|S31.815|ICD10CM|Bite of right buttock NOS|Bite of right buttock NOS +C2837381|T037|HT|S31.815|ICD10CM|Open bite of right buttock|Open bite of right buttock +C2837381|T037|AB|S31.815|ICD10CM|Open bite of right buttock|Open bite of right buttock +C2837382|T037|AB|S31.815A|ICD10CM|Open bite of right buttock, initial encounter|Open bite of right buttock, initial encounter +C2837382|T037|PT|S31.815A|ICD10CM|Open bite of right buttock, initial encounter|Open bite of right buttock, initial encounter +C2837383|T037|AB|S31.815D|ICD10CM|Open bite of right buttock, subsequent encounter|Open bite of right buttock, subsequent encounter +C2837383|T037|PT|S31.815D|ICD10CM|Open bite of right buttock, subsequent encounter|Open bite of right buttock, subsequent encounter +C2837384|T037|AB|S31.815S|ICD10CM|Open bite of right buttock, sequela|Open bite of right buttock, sequela +C2837384|T037|PT|S31.815S|ICD10CM|Open bite of right buttock, sequela|Open bite of right buttock, sequela +C2837385|T037|AB|S31.819|ICD10CM|Unspecified open wound of right buttock|Unspecified open wound of right buttock +C2837385|T037|HT|S31.819|ICD10CM|Unspecified open wound of right buttock|Unspecified open wound of right buttock +C2837386|T037|AB|S31.819A|ICD10CM|Unspecified open wound of right buttock, initial encounter|Unspecified open wound of right buttock, initial encounter +C2837386|T037|PT|S31.819A|ICD10CM|Unspecified open wound of right buttock, initial encounter|Unspecified open wound of right buttock, initial encounter +C2837387|T037|AB|S31.819D|ICD10CM|Unspecified open wound of right buttock, subs encntr|Unspecified open wound of right buttock, subs encntr +C2837387|T037|PT|S31.819D|ICD10CM|Unspecified open wound of right buttock, subsequent encounter|Unspecified open wound of right buttock, subsequent encounter +C2837388|T037|AB|S31.819S|ICD10CM|Unspecified open wound of right buttock, sequela|Unspecified open wound of right buttock, sequela +C2837388|T037|PT|S31.819S|ICD10CM|Unspecified open wound of right buttock, sequela|Unspecified open wound of right buttock, sequela +C2005790|T037|HT|S31.82|ICD10CM|Open wound of left buttock|Open wound of left buttock +C2005790|T037|AB|S31.82|ICD10CM|Open wound of left buttock|Open wound of left buttock +C2837389|T037|AB|S31.821|ICD10CM|Laceration without foreign body of left buttock|Laceration without foreign body of left buttock +C2837389|T037|HT|S31.821|ICD10CM|Laceration without foreign body of left buttock|Laceration without foreign body of left buttock +C2837390|T037|AB|S31.821A|ICD10CM|Laceration without foreign body of left buttock, init encntr|Laceration without foreign body of left buttock, init encntr +C2837390|T037|PT|S31.821A|ICD10CM|Laceration without foreign body of left buttock, initial encounter|Laceration without foreign body of left buttock, initial encounter +C2837391|T037|AB|S31.821D|ICD10CM|Laceration without foreign body of left buttock, subs encntr|Laceration without foreign body of left buttock, subs encntr +C2837391|T037|PT|S31.821D|ICD10CM|Laceration without foreign body of left buttock, subsequent encounter|Laceration without foreign body of left buttock, subsequent encounter +C2837392|T037|AB|S31.821S|ICD10CM|Laceration without foreign body of left buttock, sequela|Laceration without foreign body of left buttock, sequela +C2837392|T037|PT|S31.821S|ICD10CM|Laceration without foreign body of left buttock, sequela|Laceration without foreign body of left buttock, sequela +C2837393|T037|AB|S31.822|ICD10CM|Laceration with foreign body of left buttock|Laceration with foreign body of left buttock +C2837393|T037|HT|S31.822|ICD10CM|Laceration with foreign body of left buttock|Laceration with foreign body of left buttock +C2837394|T037|AB|S31.822A|ICD10CM|Laceration with foreign body of left buttock, init encntr|Laceration with foreign body of left buttock, init encntr +C2837394|T037|PT|S31.822A|ICD10CM|Laceration with foreign body of left buttock, initial encounter|Laceration with foreign body of left buttock, initial encounter +C2837395|T037|AB|S31.822D|ICD10CM|Laceration with foreign body of left buttock, subs encntr|Laceration with foreign body of left buttock, subs encntr +C2837395|T037|PT|S31.822D|ICD10CM|Laceration with foreign body of left buttock, subsequent encounter|Laceration with foreign body of left buttock, subsequent encounter +C2837396|T037|AB|S31.822S|ICD10CM|Laceration with foreign body of left buttock, sequela|Laceration with foreign body of left buttock, sequela +C2837396|T037|PT|S31.822S|ICD10CM|Laceration with foreign body of left buttock, sequela|Laceration with foreign body of left buttock, sequela +C2837397|T037|AB|S31.823|ICD10CM|Puncture wound without foreign body of left buttock|Puncture wound without foreign body of left buttock +C2837397|T037|HT|S31.823|ICD10CM|Puncture wound without foreign body of left buttock|Puncture wound without foreign body of left buttock +C2837398|T037|AB|S31.823A|ICD10CM|Puncture wound w/o foreign body of left buttock, init encntr|Puncture wound w/o foreign body of left buttock, init encntr +C2837398|T037|PT|S31.823A|ICD10CM|Puncture wound without foreign body of left buttock, initial encounter|Puncture wound without foreign body of left buttock, initial encounter +C2837399|T037|AB|S31.823D|ICD10CM|Puncture wound w/o foreign body of left buttock, subs encntr|Puncture wound w/o foreign body of left buttock, subs encntr +C2837399|T037|PT|S31.823D|ICD10CM|Puncture wound without foreign body of left buttock, subsequent encounter|Puncture wound without foreign body of left buttock, subsequent encounter +C2837400|T037|AB|S31.823S|ICD10CM|Puncture wound without foreign body of left buttock, sequela|Puncture wound without foreign body of left buttock, sequela +C2837400|T037|PT|S31.823S|ICD10CM|Puncture wound without foreign body of left buttock, sequela|Puncture wound without foreign body of left buttock, sequela +C2837401|T037|AB|S31.824|ICD10CM|Puncture wound with foreign body of left buttock|Puncture wound with foreign body of left buttock +C2837401|T037|HT|S31.824|ICD10CM|Puncture wound with foreign body of left buttock|Puncture wound with foreign body of left buttock +C2837402|T037|AB|S31.824A|ICD10CM|Puncture wound w foreign body of left buttock, init encntr|Puncture wound w foreign body of left buttock, init encntr +C2837402|T037|PT|S31.824A|ICD10CM|Puncture wound with foreign body of left buttock, initial encounter|Puncture wound with foreign body of left buttock, initial encounter +C2837403|T037|AB|S31.824D|ICD10CM|Puncture wound w foreign body of left buttock, subs encntr|Puncture wound w foreign body of left buttock, subs encntr +C2837403|T037|PT|S31.824D|ICD10CM|Puncture wound with foreign body of left buttock, subsequent encounter|Puncture wound with foreign body of left buttock, subsequent encounter +C2837404|T037|AB|S31.824S|ICD10CM|Puncture wound with foreign body of left buttock, sequela|Puncture wound with foreign body of left buttock, sequela +C2837404|T037|PT|S31.824S|ICD10CM|Puncture wound with foreign body of left buttock, sequela|Puncture wound with foreign body of left buttock, sequela +C2005716|T037|ET|S31.825|ICD10CM|Bite of left buttock NOS|Bite of left buttock NOS +C2837405|T037|HT|S31.825|ICD10CM|Open bite of left buttock|Open bite of left buttock +C2837405|T037|AB|S31.825|ICD10CM|Open bite of left buttock|Open bite of left buttock +C2837406|T037|AB|S31.825A|ICD10CM|Open bite of left buttock, initial encounter|Open bite of left buttock, initial encounter +C2837406|T037|PT|S31.825A|ICD10CM|Open bite of left buttock, initial encounter|Open bite of left buttock, initial encounter +C2837407|T037|AB|S31.825D|ICD10CM|Open bite of left buttock, subsequent encounter|Open bite of left buttock, subsequent encounter +C2837407|T037|PT|S31.825D|ICD10CM|Open bite of left buttock, subsequent encounter|Open bite of left buttock, subsequent encounter +C2837408|T037|AB|S31.825S|ICD10CM|Open bite of left buttock, sequela|Open bite of left buttock, sequela +C2837408|T037|PT|S31.825S|ICD10CM|Open bite of left buttock, sequela|Open bite of left buttock, sequela +C2837409|T037|AB|S31.829|ICD10CM|Unspecified open wound of left buttock|Unspecified open wound of left buttock +C2837409|T037|HT|S31.829|ICD10CM|Unspecified open wound of left buttock|Unspecified open wound of left buttock +C2837410|T037|AB|S31.829A|ICD10CM|Unspecified open wound of left buttock, initial encounter|Unspecified open wound of left buttock, initial encounter +C2837410|T037|PT|S31.829A|ICD10CM|Unspecified open wound of left buttock, initial encounter|Unspecified open wound of left buttock, initial encounter +C2837411|T037|AB|S31.829D|ICD10CM|Unspecified open wound of left buttock, subsequent encounter|Unspecified open wound of left buttock, subsequent encounter +C2837411|T037|PT|S31.829D|ICD10CM|Unspecified open wound of left buttock, subsequent encounter|Unspecified open wound of left buttock, subsequent encounter +C2837412|T037|AB|S31.829S|ICD10CM|Unspecified open wound of left buttock, sequela|Unspecified open wound of left buttock, sequela +C2837412|T037|PT|S31.829S|ICD10CM|Unspecified open wound of left buttock, sequela|Unspecified open wound of left buttock, sequela +C2226911|T037|HT|S31.83|ICD10CM|Open wound of anus|Open wound of anus +C2226911|T037|AB|S31.83|ICD10CM|Open wound of anus|Open wound of anus +C2837413|T037|AB|S31.831|ICD10CM|Laceration without foreign body of anus|Laceration without foreign body of anus +C2837413|T037|HT|S31.831|ICD10CM|Laceration without foreign body of anus|Laceration without foreign body of anus +C2837414|T037|AB|S31.831A|ICD10CM|Laceration without foreign body of anus, initial encounter|Laceration without foreign body of anus, initial encounter +C2837414|T037|PT|S31.831A|ICD10CM|Laceration without foreign body of anus, initial encounter|Laceration without foreign body of anus, initial encounter +C2837415|T037|AB|S31.831D|ICD10CM|Laceration without foreign body of anus, subs encntr|Laceration without foreign body of anus, subs encntr +C2837415|T037|PT|S31.831D|ICD10CM|Laceration without foreign body of anus, subsequent encounter|Laceration without foreign body of anus, subsequent encounter +C2837416|T037|AB|S31.831S|ICD10CM|Laceration without foreign body of anus, sequela|Laceration without foreign body of anus, sequela +C2837416|T037|PT|S31.831S|ICD10CM|Laceration without foreign body of anus, sequela|Laceration without foreign body of anus, sequela +C2837417|T037|AB|S31.832|ICD10CM|Laceration with foreign body of anus|Laceration with foreign body of anus +C2837417|T037|HT|S31.832|ICD10CM|Laceration with foreign body of anus|Laceration with foreign body of anus +C2837418|T037|AB|S31.832A|ICD10CM|Laceration with foreign body of anus, initial encounter|Laceration with foreign body of anus, initial encounter +C2837418|T037|PT|S31.832A|ICD10CM|Laceration with foreign body of anus, initial encounter|Laceration with foreign body of anus, initial encounter +C2837419|T037|AB|S31.832D|ICD10CM|Laceration with foreign body of anus, subsequent encounter|Laceration with foreign body of anus, subsequent encounter +C2837419|T037|PT|S31.832D|ICD10CM|Laceration with foreign body of anus, subsequent encounter|Laceration with foreign body of anus, subsequent encounter +C2837420|T037|AB|S31.832S|ICD10CM|Laceration with foreign body of anus, sequela|Laceration with foreign body of anus, sequela +C2837420|T037|PT|S31.832S|ICD10CM|Laceration with foreign body of anus, sequela|Laceration with foreign body of anus, sequela +C2837421|T037|AB|S31.833|ICD10CM|Puncture wound without foreign body of anus|Puncture wound without foreign body of anus +C2837421|T037|HT|S31.833|ICD10CM|Puncture wound without foreign body of anus|Puncture wound without foreign body of anus +C2837422|T037|AB|S31.833A|ICD10CM|Puncture wound without foreign body of anus, init encntr|Puncture wound without foreign body of anus, init encntr +C2837422|T037|PT|S31.833A|ICD10CM|Puncture wound without foreign body of anus, initial encounter|Puncture wound without foreign body of anus, initial encounter +C2837423|T037|AB|S31.833D|ICD10CM|Puncture wound without foreign body of anus, subs encntr|Puncture wound without foreign body of anus, subs encntr +C2837423|T037|PT|S31.833D|ICD10CM|Puncture wound without foreign body of anus, subsequent encounter|Puncture wound without foreign body of anus, subsequent encounter +C2837424|T037|AB|S31.833S|ICD10CM|Puncture wound without foreign body of anus, sequela|Puncture wound without foreign body of anus, sequela +C2837424|T037|PT|S31.833S|ICD10CM|Puncture wound without foreign body of anus, sequela|Puncture wound without foreign body of anus, sequela +C2837425|T037|AB|S31.834|ICD10CM|Puncture wound with foreign body of anus|Puncture wound with foreign body of anus +C2837425|T037|HT|S31.834|ICD10CM|Puncture wound with foreign body of anus|Puncture wound with foreign body of anus +C2837426|T037|AB|S31.834A|ICD10CM|Puncture wound with foreign body of anus, initial encounter|Puncture wound with foreign body of anus, initial encounter +C2837426|T037|PT|S31.834A|ICD10CM|Puncture wound with foreign body of anus, initial encounter|Puncture wound with foreign body of anus, initial encounter +C2837427|T037|AB|S31.834D|ICD10CM|Puncture wound with foreign body of anus, subs encntr|Puncture wound with foreign body of anus, subs encntr +C2837427|T037|PT|S31.834D|ICD10CM|Puncture wound with foreign body of anus, subsequent encounter|Puncture wound with foreign body of anus, subsequent encounter +C2837428|T037|AB|S31.834S|ICD10CM|Puncture wound with foreign body of anus, sequela|Puncture wound with foreign body of anus, sequela +C2837428|T037|PT|S31.834S|ICD10CM|Puncture wound with foreign body of anus, sequela|Puncture wound with foreign body of anus, sequela +C2837429|T037|ET|S31.835|ICD10CM|Bite of anus NOS|Bite of anus NOS +C2837430|T037|HT|S31.835|ICD10CM|Open bite of anus|Open bite of anus +C2837430|T037|AB|S31.835|ICD10CM|Open bite of anus|Open bite of anus +C2837431|T037|AB|S31.835A|ICD10CM|Open bite of anus, initial encounter|Open bite of anus, initial encounter +C2837431|T037|PT|S31.835A|ICD10CM|Open bite of anus, initial encounter|Open bite of anus, initial encounter +C2837432|T037|AB|S31.835D|ICD10CM|Open bite of anus, subsequent encounter|Open bite of anus, subsequent encounter +C2837432|T037|PT|S31.835D|ICD10CM|Open bite of anus, subsequent encounter|Open bite of anus, subsequent encounter +C2837433|T037|AB|S31.835S|ICD10CM|Open bite of anus, sequela|Open bite of anus, sequela +C2837433|T037|PT|S31.835S|ICD10CM|Open bite of anus, sequela|Open bite of anus, sequela +C2837434|T037|AB|S31.839|ICD10CM|Unspecified open wound of anus|Unspecified open wound of anus +C2837434|T037|HT|S31.839|ICD10CM|Unspecified open wound of anus|Unspecified open wound of anus +C2837435|T037|AB|S31.839A|ICD10CM|Unspecified open wound of anus, initial encounter|Unspecified open wound of anus, initial encounter +C2837435|T037|PT|S31.839A|ICD10CM|Unspecified open wound of anus, initial encounter|Unspecified open wound of anus, initial encounter +C2837436|T037|AB|S31.839D|ICD10CM|Unspecified open wound of anus, subsequent encounter|Unspecified open wound of anus, subsequent encounter +C2837436|T037|PT|S31.839D|ICD10CM|Unspecified open wound of anus, subsequent encounter|Unspecified open wound of anus, subsequent encounter +C2837437|T037|AB|S31.839S|ICD10CM|Unspecified open wound of anus, sequela|Unspecified open wound of anus, sequela +C2837437|T037|PT|S31.839S|ICD10CM|Unspecified open wound of anus, sequela|Unspecified open wound of anus, sequela +C0452082|T037|HT|S32|ICD10|Fracture of lumbar spine and pelvis|Fracture of lumbar spine and pelvis +C0452082|T037|HT|S32|ICD10CM|Fracture of lumbar spine and pelvis|Fracture of lumbar spine and pelvis +C0452082|T037|AB|S32|ICD10CM|Fracture of lumbar spine and pelvis|Fracture of lumbar spine and pelvis +C4290332|T037|ET|S32|ICD10CM|fracture of lumbosacral neural arch|fracture of lumbosacral neural arch +C4290333|T037|ET|S32|ICD10CM|fracture of lumbosacral spinous process|fracture of lumbosacral spinous process +C4290334|T037|ET|S32|ICD10CM|fracture of lumbosacral transverse process|fracture of lumbosacral transverse process +C4290335|T037|ET|S32|ICD10CM|fracture of lumbosacral vertebra|fracture of lumbosacral vertebra +C4290336|T037|ET|S32|ICD10CM|fracture of lumbosacral vertebral arch|fracture of lumbosacral vertebral arch +C0262544|T037|ET|S32.0|ICD10CM|Fracture of lumbar spine NOS|Fracture of lumbar spine NOS +C0262544|T037|HT|S32.0|ICD10CM|Fracture of lumbar vertebra|Fracture of lumbar vertebra +C0262544|T037|AB|S32.0|ICD10CM|Fracture of lumbar vertebra|Fracture of lumbar vertebra +C0262544|T037|PT|S32.0|ICD10|Fracture of lumbar vertebra|Fracture of lumbar vertebra +C2837443|T037|AB|S32.00|ICD10CM|Fracture of unspecified lumbar vertebra|Fracture of unspecified lumbar vertebra +C2837443|T037|HT|S32.00|ICD10CM|Fracture of unspecified lumbar vertebra|Fracture of unspecified lumbar vertebra +C2837444|T037|AB|S32.000|ICD10CM|Wedge compression fracture of unspecified lumbar vertebra|Wedge compression fracture of unspecified lumbar vertebra +C2837444|T037|HT|S32.000|ICD10CM|Wedge compression fracture of unspecified lumbar vertebra|Wedge compression fracture of unspecified lumbar vertebra +C2837445|T037|AB|S32.000A|ICD10CM|Wedge compression fracture of unsp lumbar vertebra, init|Wedge compression fracture of unsp lumbar vertebra, init +C2837445|T037|PT|S32.000A|ICD10CM|Wedge compression fracture of unspecified lumbar vertebra, initial encounter for closed fracture|Wedge compression fracture of unspecified lumbar vertebra, initial encounter for closed fracture +C2837446|T037|PT|S32.000B|ICD10CM|Wedge compression fracture of unspecified lumbar vertebra, initial encounter for open fracture|Wedge compression fracture of unspecified lumbar vertebra, initial encounter for open fracture +C2837446|T037|AB|S32.000B|ICD10CM|Wedge comprsn fracture of unsp lum vertebra, init for opn fx|Wedge comprsn fracture of unsp lum vertebra, init for opn fx +C2837447|T037|AB|S32.000D|ICD10CM|Wedge comprsn fx unsp lum vertebra, subs for fx w routn heal|Wedge comprsn fx unsp lum vertebra, subs for fx w routn heal +C2837448|T037|AB|S32.000G|ICD10CM|Wedge comprsn fx unsp lum vertebra, subs for fx w delay heal|Wedge comprsn fx unsp lum vertebra, subs for fx w delay heal +C2837449|T037|AB|S32.000K|ICD10CM|Wedge comprsn fx unsp lum vertebra, subs for fx w nonunion|Wedge comprsn fx unsp lum vertebra, subs for fx w nonunion +C2837450|T037|AB|S32.000S|ICD10CM|Wedge compression fracture of unsp lumbar vertebra, sequela|Wedge compression fracture of unsp lumbar vertebra, sequela +C2837450|T037|PT|S32.000S|ICD10CM|Wedge compression fracture of unspecified lumbar vertebra, sequela|Wedge compression fracture of unspecified lumbar vertebra, sequela +C2837451|T037|AB|S32.001|ICD10CM|Stable burst fracture of unspecified lumbar vertebra|Stable burst fracture of unspecified lumbar vertebra +C2837451|T037|HT|S32.001|ICD10CM|Stable burst fracture of unspecified lumbar vertebra|Stable burst fracture of unspecified lumbar vertebra +C2837452|T037|AB|S32.001A|ICD10CM|Stable burst fracture of unsp lumbar vertebra, init|Stable burst fracture of unsp lumbar vertebra, init +C2837452|T037|PT|S32.001A|ICD10CM|Stable burst fracture of unspecified lumbar vertebra, initial encounter for closed fracture|Stable burst fracture of unspecified lumbar vertebra, initial encounter for closed fracture +C2837453|T037|AB|S32.001B|ICD10CM|Stable burst fracture of unsp lum vertebra, init for opn fx|Stable burst fracture of unsp lum vertebra, init for opn fx +C2837453|T037|PT|S32.001B|ICD10CM|Stable burst fracture of unspecified lumbar vertebra, initial encounter for open fracture|Stable burst fracture of unspecified lumbar vertebra, initial encounter for open fracture +C2837454|T037|AB|S32.001D|ICD10CM|Stable burst fx unsp lum vertebra, subs for fx w routn heal|Stable burst fx unsp lum vertebra, subs for fx w routn heal +C2837455|T037|AB|S32.001G|ICD10CM|Stable burst fx unsp lum vertebra, subs for fx w delay heal|Stable burst fx unsp lum vertebra, subs for fx w delay heal +C2837456|T037|AB|S32.001K|ICD10CM|Stable burst fx unsp lum vertebra, subs for fx w nonunion|Stable burst fx unsp lum vertebra, subs for fx w nonunion +C2837457|T037|AB|S32.001S|ICD10CM|Stable burst fracture of unsp lumbar vertebra, sequela|Stable burst fracture of unsp lumbar vertebra, sequela +C2837457|T037|PT|S32.001S|ICD10CM|Stable burst fracture of unspecified lumbar vertebra, sequela|Stable burst fracture of unspecified lumbar vertebra, sequela +C2837458|T037|AB|S32.002|ICD10CM|Unstable burst fracture of unspecified lumbar vertebra|Unstable burst fracture of unspecified lumbar vertebra +C2837458|T037|HT|S32.002|ICD10CM|Unstable burst fracture of unspecified lumbar vertebra|Unstable burst fracture of unspecified lumbar vertebra +C2837459|T037|AB|S32.002A|ICD10CM|Unstable burst fracture of unsp lumbar vertebra, init|Unstable burst fracture of unsp lumbar vertebra, init +C2837459|T037|PT|S32.002A|ICD10CM|Unstable burst fracture of unspecified lumbar vertebra, initial encounter for closed fracture|Unstable burst fracture of unspecified lumbar vertebra, initial encounter for closed fracture +C2837460|T037|PT|S32.002B|ICD10CM|Unstable burst fracture of unspecified lumbar vertebra, initial encounter for open fracture|Unstable burst fracture of unspecified lumbar vertebra, initial encounter for open fracture +C2837460|T037|AB|S32.002B|ICD10CM|Unstable burst fx unsp lum vertebra, init for opn fx|Unstable burst fx unsp lum vertebra, init for opn fx +C2837461|T037|AB|S32.002D|ICD10CM|Unstbl burst fx unsp lum vertebra, subs for fx w routn heal|Unstbl burst fx unsp lum vertebra, subs for fx w routn heal +C2837462|T037|AB|S32.002G|ICD10CM|Unstbl burst fx unsp lum vertebra, subs for fx w delay heal|Unstbl burst fx unsp lum vertebra, subs for fx w delay heal +C2837463|T037|AB|S32.002K|ICD10CM|Unstable burst fx unsp lum vertebra, subs for fx w nonunion|Unstable burst fx unsp lum vertebra, subs for fx w nonunion +C2837464|T037|AB|S32.002S|ICD10CM|Unstable burst fracture of unsp lumbar vertebra, sequela|Unstable burst fracture of unsp lumbar vertebra, sequela +C2837464|T037|PT|S32.002S|ICD10CM|Unstable burst fracture of unspecified lumbar vertebra, sequela|Unstable burst fracture of unspecified lumbar vertebra, sequela +C2837465|T037|AB|S32.008|ICD10CM|Other fracture of unspecified lumbar vertebra|Other fracture of unspecified lumbar vertebra +C2837465|T037|HT|S32.008|ICD10CM|Other fracture of unspecified lumbar vertebra|Other fracture of unspecified lumbar vertebra +C2837466|T037|AB|S32.008A|ICD10CM|Oth fracture of unsp lumbar vertebra, init for clos fx|Oth fracture of unsp lumbar vertebra, init for clos fx +C2837466|T037|PT|S32.008A|ICD10CM|Other fracture of unspecified lumbar vertebra, initial encounter for closed fracture|Other fracture of unspecified lumbar vertebra, initial encounter for closed fracture +C2837467|T037|AB|S32.008B|ICD10CM|Oth fracture of unsp lumbar vertebra, init for opn fx|Oth fracture of unsp lumbar vertebra, init for opn fx +C2837467|T037|PT|S32.008B|ICD10CM|Other fracture of unspecified lumbar vertebra, initial encounter for open fracture|Other fracture of unspecified lumbar vertebra, initial encounter for open fracture +C2837468|T037|AB|S32.008D|ICD10CM|Oth fracture of unsp lum vertebra, subs for fx w routn heal|Oth fracture of unsp lum vertebra, subs for fx w routn heal +C2837469|T037|AB|S32.008G|ICD10CM|Oth fracture of unsp lum vertebra, subs for fx w delay heal|Oth fracture of unsp lum vertebra, subs for fx w delay heal +C2837470|T037|AB|S32.008K|ICD10CM|Oth fracture of unsp lumbar vertebra, subs for fx w nonunion|Oth fracture of unsp lumbar vertebra, subs for fx w nonunion +C2837470|T037|PT|S32.008K|ICD10CM|Other fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion|Other fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion +C2837471|T037|AB|S32.008S|ICD10CM|Other fracture of unspecified lumbar vertebra, sequela|Other fracture of unspecified lumbar vertebra, sequela +C2837471|T037|PT|S32.008S|ICD10CM|Other fracture of unspecified lumbar vertebra, sequela|Other fracture of unspecified lumbar vertebra, sequela +C2837472|T037|AB|S32.009|ICD10CM|Unspecified fracture of unspecified lumbar vertebra|Unspecified fracture of unspecified lumbar vertebra +C2837472|T037|HT|S32.009|ICD10CM|Unspecified fracture of unspecified lumbar vertebra|Unspecified fracture of unspecified lumbar vertebra +C2837473|T037|AB|S32.009A|ICD10CM|Unsp fracture of unsp lumbar vertebra, init for clos fx|Unsp fracture of unsp lumbar vertebra, init for clos fx +C2837473|T037|PT|S32.009A|ICD10CM|Unspecified fracture of unspecified lumbar vertebra, initial encounter for closed fracture|Unspecified fracture of unspecified lumbar vertebra, initial encounter for closed fracture +C2837474|T037|AB|S32.009B|ICD10CM|Unsp fracture of unsp lumbar vertebra, init for opn fx|Unsp fracture of unsp lumbar vertebra, init for opn fx +C2837474|T037|PT|S32.009B|ICD10CM|Unspecified fracture of unspecified lumbar vertebra, initial encounter for open fracture|Unspecified fracture of unspecified lumbar vertebra, initial encounter for open fracture +C2837475|T037|AB|S32.009D|ICD10CM|Unsp fracture of unsp lum vertebra, subs for fx w routn heal|Unsp fracture of unsp lum vertebra, subs for fx w routn heal +C2837476|T037|AB|S32.009G|ICD10CM|Unsp fracture of unsp lum vertebra, subs for fx w delay heal|Unsp fracture of unsp lum vertebra, subs for fx w delay heal +C2837477|T037|AB|S32.009K|ICD10CM|Unsp fracture of unsp lum vertebra, subs for fx w nonunion|Unsp fracture of unsp lum vertebra, subs for fx w nonunion +C2837477|T037|PT|S32.009K|ICD10CM|Unspecified fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion|Unspecified fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion +C2837478|T037|AB|S32.009S|ICD10CM|Unspecified fracture of unspecified lumbar vertebra, sequela|Unspecified fracture of unspecified lumbar vertebra, sequela +C2837478|T037|PT|S32.009S|ICD10CM|Unspecified fracture of unspecified lumbar vertebra, sequela|Unspecified fracture of unspecified lumbar vertebra, sequela +C2837479|T037|HT|S32.01|ICD10CM|Fracture of first lumbar vertebra|Fracture of first lumbar vertebra +C2837479|T037|AB|S32.01|ICD10CM|Fracture of first lumbar vertebra|Fracture of first lumbar vertebra +C2837480|T037|AB|S32.010|ICD10CM|Wedge compression fracture of first lumbar vertebra|Wedge compression fracture of first lumbar vertebra +C2837480|T037|HT|S32.010|ICD10CM|Wedge compression fracture of first lumbar vertebra|Wedge compression fracture of first lumbar vertebra +C2837481|T037|AB|S32.010A|ICD10CM|Wedge compression fracture of first lumbar vertebra, init|Wedge compression fracture of first lumbar vertebra, init +C2837481|T037|PT|S32.010A|ICD10CM|Wedge compression fracture of first lumbar vertebra, initial encounter for closed fracture|Wedge compression fracture of first lumbar vertebra, initial encounter for closed fracture +C2837482|T037|PT|S32.010B|ICD10CM|Wedge compression fracture of first lumbar vertebra, initial encounter for open fracture|Wedge compression fracture of first lumbar vertebra, initial encounter for open fracture +C2837482|T037|AB|S32.010B|ICD10CM|Wedge comprsn fx first lum vertebra, init for opn fx|Wedge comprsn fx first lum vertebra, init for opn fx +C2837483|T037|AB|S32.010D|ICD10CM|Wedge comprsn fx first lum vert, subs for fx w routn heal|Wedge comprsn fx first lum vert, subs for fx w routn heal +C2837484|T037|AB|S32.010G|ICD10CM|Wedge comprsn fx first lum vert, subs for fx w delay heal|Wedge comprsn fx first lum vert, subs for fx w delay heal +C2837485|T037|PT|S32.010K|ICD10CM|Wedge compression fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion|Wedge compression fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion +C2837485|T037|AB|S32.010K|ICD10CM|Wedge comprsn fx first lum vertebra, subs for fx w nonunion|Wedge comprsn fx first lum vertebra, subs for fx w nonunion +C2837486|T037|AB|S32.010S|ICD10CM|Wedge compression fracture of first lumbar vertebra, sequela|Wedge compression fracture of first lumbar vertebra, sequela +C2837486|T037|PT|S32.010S|ICD10CM|Wedge compression fracture of first lumbar vertebra, sequela|Wedge compression fracture of first lumbar vertebra, sequela +C2837487|T037|AB|S32.011|ICD10CM|Stable burst fracture of first lumbar vertebra|Stable burst fracture of first lumbar vertebra +C2837487|T037|HT|S32.011|ICD10CM|Stable burst fracture of first lumbar vertebra|Stable burst fracture of first lumbar vertebra +C2837488|T037|AB|S32.011A|ICD10CM|Stable burst fracture of first lumbar vertebra, init|Stable burst fracture of first lumbar vertebra, init +C2837488|T037|PT|S32.011A|ICD10CM|Stable burst fracture of first lumbar vertebra, initial encounter for closed fracture|Stable burst fracture of first lumbar vertebra, initial encounter for closed fracture +C2837489|T037|AB|S32.011B|ICD10CM|Stable burst fracture of first lum vertebra, init for opn fx|Stable burst fracture of first lum vertebra, init for opn fx +C2837489|T037|PT|S32.011B|ICD10CM|Stable burst fracture of first lumbar vertebra, initial encounter for open fracture|Stable burst fracture of first lumbar vertebra, initial encounter for open fracture +C2837490|T037|AB|S32.011D|ICD10CM|Stable burst fx first lum vertebra, subs for fx w routn heal|Stable burst fx first lum vertebra, subs for fx w routn heal +C2837491|T037|AB|S32.011G|ICD10CM|Stable burst fx first lum vertebra, subs for fx w delay heal|Stable burst fx first lum vertebra, subs for fx w delay heal +C2837492|T037|PT|S32.011K|ICD10CM|Stable burst fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion|Stable burst fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion +C2837492|T037|AB|S32.011K|ICD10CM|Stable burst fx first lum vertebra, subs for fx w nonunion|Stable burst fx first lum vertebra, subs for fx w nonunion +C2837493|T037|PT|S32.011S|ICD10CM|Stable burst fracture of first lumbar vertebra, sequela|Stable burst fracture of first lumbar vertebra, sequela +C2837493|T037|AB|S32.011S|ICD10CM|Stable burst fracture of first lumbar vertebra, sequela|Stable burst fracture of first lumbar vertebra, sequela +C2837494|T037|AB|S32.012|ICD10CM|Unstable burst fracture of first lumbar vertebra|Unstable burst fracture of first lumbar vertebra +C2837494|T037|HT|S32.012|ICD10CM|Unstable burst fracture of first lumbar vertebra|Unstable burst fracture of first lumbar vertebra +C2837495|T037|AB|S32.012A|ICD10CM|Unstable burst fracture of first lumbar vertebra, init|Unstable burst fracture of first lumbar vertebra, init +C2837495|T037|PT|S32.012A|ICD10CM|Unstable burst fracture of first lumbar vertebra, initial encounter for closed fracture|Unstable burst fracture of first lumbar vertebra, initial encounter for closed fracture +C2837496|T037|PT|S32.012B|ICD10CM|Unstable burst fracture of first lumbar vertebra, initial encounter for open fracture|Unstable burst fracture of first lumbar vertebra, initial encounter for open fracture +C2837496|T037|AB|S32.012B|ICD10CM|Unstable burst fx first lum vertebra, init for opn fx|Unstable burst fx first lum vertebra, init for opn fx +C2837497|T037|AB|S32.012D|ICD10CM|Unstbl burst fx first lum vertebra, subs for fx w routn heal|Unstbl burst fx first lum vertebra, subs for fx w routn heal +C2837498|T037|AB|S32.012G|ICD10CM|Unstbl burst fx first lum vertebra, subs for fx w delay heal|Unstbl burst fx first lum vertebra, subs for fx w delay heal +C2837499|T037|PT|S32.012K|ICD10CM|Unstable burst fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion|Unstable burst fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion +C2837499|T037|AB|S32.012K|ICD10CM|Unstable burst fx first lum vertebra, subs for fx w nonunion|Unstable burst fx first lum vertebra, subs for fx w nonunion +C2837500|T037|PT|S32.012S|ICD10CM|Unstable burst fracture of first lumbar vertebra, sequela|Unstable burst fracture of first lumbar vertebra, sequela +C2837500|T037|AB|S32.012S|ICD10CM|Unstable burst fracture of first lumbar vertebra, sequela|Unstable burst fracture of first lumbar vertebra, sequela +C2837501|T037|AB|S32.018|ICD10CM|Other fracture of first lumbar vertebra|Other fracture of first lumbar vertebra +C2837501|T037|HT|S32.018|ICD10CM|Other fracture of first lumbar vertebra|Other fracture of first lumbar vertebra +C2837502|T037|AB|S32.018A|ICD10CM|Oth fracture of first lumbar vertebra, init for clos fx|Oth fracture of first lumbar vertebra, init for clos fx +C2837502|T037|PT|S32.018A|ICD10CM|Other fracture of first lumbar vertebra, initial encounter for closed fracture|Other fracture of first lumbar vertebra, initial encounter for closed fracture +C2837503|T037|AB|S32.018B|ICD10CM|Oth fracture of first lumbar vertebra, init for opn fx|Oth fracture of first lumbar vertebra, init for opn fx +C2837503|T037|PT|S32.018B|ICD10CM|Other fracture of first lumbar vertebra, initial encounter for open fracture|Other fracture of first lumbar vertebra, initial encounter for open fracture +C2837504|T037|AB|S32.018D|ICD10CM|Oth fracture of first lum vertebra, subs for fx w routn heal|Oth fracture of first lum vertebra, subs for fx w routn heal +C2837504|T037|PT|S32.018D|ICD10CM|Other fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing|Other fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing +C2837505|T037|AB|S32.018G|ICD10CM|Oth fracture of first lum vertebra, subs for fx w delay heal|Oth fracture of first lum vertebra, subs for fx w delay heal +C2837505|T037|PT|S32.018G|ICD10CM|Other fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing|Other fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing +C2837506|T037|AB|S32.018K|ICD10CM|Oth fracture of first lum vertebra, subs for fx w nonunion|Oth fracture of first lum vertebra, subs for fx w nonunion +C2837506|T037|PT|S32.018K|ICD10CM|Other fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion|Other fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion +C2837507|T037|PT|S32.018S|ICD10CM|Other fracture of first lumbar vertebra, sequela|Other fracture of first lumbar vertebra, sequela +C2837507|T037|AB|S32.018S|ICD10CM|Other fracture of first lumbar vertebra, sequela|Other fracture of first lumbar vertebra, sequela +C2837508|T037|AB|S32.019|ICD10CM|Unspecified fracture of first lumbar vertebra|Unspecified fracture of first lumbar vertebra +C2837508|T037|HT|S32.019|ICD10CM|Unspecified fracture of first lumbar vertebra|Unspecified fracture of first lumbar vertebra +C2837509|T037|AB|S32.019A|ICD10CM|Unsp fracture of first lumbar vertebra, init for clos fx|Unsp fracture of first lumbar vertebra, init for clos fx +C2837509|T037|PT|S32.019A|ICD10CM|Unspecified fracture of first lumbar vertebra, initial encounter for closed fracture|Unspecified fracture of first lumbar vertebra, initial encounter for closed fracture +C2837510|T037|AB|S32.019B|ICD10CM|Unsp fracture of first lumbar vertebra, init for opn fx|Unsp fracture of first lumbar vertebra, init for opn fx +C2837510|T037|PT|S32.019B|ICD10CM|Unspecified fracture of first lumbar vertebra, initial encounter for open fracture|Unspecified fracture of first lumbar vertebra, initial encounter for open fracture +C2837511|T037|AB|S32.019D|ICD10CM|Unsp fx first lum vertebra, subs for fx w routn heal|Unsp fx first lum vertebra, subs for fx w routn heal +C2837512|T037|AB|S32.019G|ICD10CM|Unsp fx first lum vertebra, subs for fx w delay heal|Unsp fx first lum vertebra, subs for fx w delay heal +C2837513|T037|AB|S32.019K|ICD10CM|Unsp fracture of first lum vertebra, subs for fx w nonunion|Unsp fracture of first lum vertebra, subs for fx w nonunion +C2837513|T037|PT|S32.019K|ICD10CM|Unspecified fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion|Unspecified fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion +C2837514|T037|PT|S32.019S|ICD10CM|Unspecified fracture of first lumbar vertebra, sequela|Unspecified fracture of first lumbar vertebra, sequela +C2837514|T037|AB|S32.019S|ICD10CM|Unspecified fracture of first lumbar vertebra, sequela|Unspecified fracture of first lumbar vertebra, sequela +C2837515|T037|HT|S32.02|ICD10CM|Fracture of second lumbar vertebra|Fracture of second lumbar vertebra +C2837515|T037|AB|S32.02|ICD10CM|Fracture of second lumbar vertebra|Fracture of second lumbar vertebra +C2837516|T037|AB|S32.020|ICD10CM|Wedge compression fracture of second lumbar vertebra|Wedge compression fracture of second lumbar vertebra +C2837516|T037|HT|S32.020|ICD10CM|Wedge compression fracture of second lumbar vertebra|Wedge compression fracture of second lumbar vertebra +C2837517|T037|AB|S32.020A|ICD10CM|Wedge compression fracture of second lumbar vertebra, init|Wedge compression fracture of second lumbar vertebra, init +C2837517|T037|PT|S32.020A|ICD10CM|Wedge compression fracture of second lumbar vertebra, initial encounter for closed fracture|Wedge compression fracture of second lumbar vertebra, initial encounter for closed fracture +C2837518|T037|PT|S32.020B|ICD10CM|Wedge compression fracture of second lumbar vertebra, initial encounter for open fracture|Wedge compression fracture of second lumbar vertebra, initial encounter for open fracture +C2837518|T037|AB|S32.020B|ICD10CM|Wedge comprsn fx second lum vertebra, init for opn fx|Wedge comprsn fx second lum vertebra, init for opn fx +C2837519|T037|AB|S32.020D|ICD10CM|Wedge comprsn fx second lum vert, subs for fx w routn heal|Wedge comprsn fx second lum vert, subs for fx w routn heal +C2837520|T037|AB|S32.020G|ICD10CM|Wedge comprsn fx second lum vert, subs for fx w delay heal|Wedge comprsn fx second lum vert, subs for fx w delay heal +C2837521|T037|AB|S32.020K|ICD10CM|Wedge comprsn fx second lum vertebra, subs for fx w nonunion|Wedge comprsn fx second lum vertebra, subs for fx w nonunion +C2837522|T037|AB|S32.020S|ICD10CM|Wedge compression fracture of second lum vertebra, sequela|Wedge compression fracture of second lum vertebra, sequela +C2837522|T037|PT|S32.020S|ICD10CM|Wedge compression fracture of second lumbar vertebra, sequela|Wedge compression fracture of second lumbar vertebra, sequela +C2837523|T037|AB|S32.021|ICD10CM|Stable burst fracture of second lumbar vertebra|Stable burst fracture of second lumbar vertebra +C2837523|T037|HT|S32.021|ICD10CM|Stable burst fracture of second lumbar vertebra|Stable burst fracture of second lumbar vertebra +C2837524|T037|AB|S32.021A|ICD10CM|Stable burst fracture of second lumbar vertebra, init|Stable burst fracture of second lumbar vertebra, init +C2837524|T037|PT|S32.021A|ICD10CM|Stable burst fracture of second lumbar vertebra, initial encounter for closed fracture|Stable burst fracture of second lumbar vertebra, initial encounter for closed fracture +C2837525|T037|PT|S32.021B|ICD10CM|Stable burst fracture of second lumbar vertebra, initial encounter for open fracture|Stable burst fracture of second lumbar vertebra, initial encounter for open fracture +C2837525|T037|AB|S32.021B|ICD10CM|Stable burst fx second lum vertebra, init for opn fx|Stable burst fx second lum vertebra, init for opn fx +C2837526|T037|AB|S32.021D|ICD10CM|Stable burst fx second lum vert, subs for fx w routn heal|Stable burst fx second lum vert, subs for fx w routn heal +C2837527|T037|AB|S32.021G|ICD10CM|Stable burst fx second lum vert, subs for fx w delay heal|Stable burst fx second lum vert, subs for fx w delay heal +C2837528|T037|PT|S32.021K|ICD10CM|Stable burst fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion|Stable burst fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion +C2837528|T037|AB|S32.021K|ICD10CM|Stable burst fx second lum vertebra, subs for fx w nonunion|Stable burst fx second lum vertebra, subs for fx w nonunion +C2837529|T037|PT|S32.021S|ICD10CM|Stable burst fracture of second lumbar vertebra, sequela|Stable burst fracture of second lumbar vertebra, sequela +C2837529|T037|AB|S32.021S|ICD10CM|Stable burst fracture of second lumbar vertebra, sequela|Stable burst fracture of second lumbar vertebra, sequela +C2837530|T037|AB|S32.022|ICD10CM|Unstable burst fracture of second lumbar vertebra|Unstable burst fracture of second lumbar vertebra +C2837530|T037|HT|S32.022|ICD10CM|Unstable burst fracture of second lumbar vertebra|Unstable burst fracture of second lumbar vertebra +C2837531|T037|AB|S32.022A|ICD10CM|Unstable burst fracture of second lumbar vertebra, init|Unstable burst fracture of second lumbar vertebra, init +C2837531|T037|PT|S32.022A|ICD10CM|Unstable burst fracture of second lumbar vertebra, initial encounter for closed fracture|Unstable burst fracture of second lumbar vertebra, initial encounter for closed fracture +C2837532|T037|PT|S32.022B|ICD10CM|Unstable burst fracture of second lumbar vertebra, initial encounter for open fracture|Unstable burst fracture of second lumbar vertebra, initial encounter for open fracture +C2837532|T037|AB|S32.022B|ICD10CM|Unstable burst fx second lum vertebra, init for opn fx|Unstable burst fx second lum vertebra, init for opn fx +C2837533|T037|AB|S32.022D|ICD10CM|Unstbl burst fx second lum vert, subs for fx w routn heal|Unstbl burst fx second lum vert, subs for fx w routn heal +C2837534|T037|AB|S32.022G|ICD10CM|Unstbl burst fx second lum vert, subs for fx w delay heal|Unstbl burst fx second lum vert, subs for fx w delay heal +C2837535|T037|PT|S32.022K|ICD10CM|Unstable burst fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion|Unstable burst fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion +C2837535|T037|AB|S32.022K|ICD10CM|Unstbl burst fx second lum vertebra, subs for fx w nonunion|Unstbl burst fx second lum vertebra, subs for fx w nonunion +C2837536|T037|PT|S32.022S|ICD10CM|Unstable burst fracture of second lumbar vertebra, sequela|Unstable burst fracture of second lumbar vertebra, sequela +C2837536|T037|AB|S32.022S|ICD10CM|Unstable burst fracture of second lumbar vertebra, sequela|Unstable burst fracture of second lumbar vertebra, sequela +C2837537|T037|AB|S32.028|ICD10CM|Other fracture of second lumbar vertebra|Other fracture of second lumbar vertebra +C2837537|T037|HT|S32.028|ICD10CM|Other fracture of second lumbar vertebra|Other fracture of second lumbar vertebra +C2837538|T037|AB|S32.028A|ICD10CM|Oth fracture of second lumbar vertebra, init for clos fx|Oth fracture of second lumbar vertebra, init for clos fx +C2837538|T037|PT|S32.028A|ICD10CM|Other fracture of second lumbar vertebra, initial encounter for closed fracture|Other fracture of second lumbar vertebra, initial encounter for closed fracture +C2837539|T037|AB|S32.028B|ICD10CM|Oth fracture of second lumbar vertebra, init for opn fx|Oth fracture of second lumbar vertebra, init for opn fx +C2837539|T037|PT|S32.028B|ICD10CM|Other fracture of second lumbar vertebra, initial encounter for open fracture|Other fracture of second lumbar vertebra, initial encounter for open fracture +C2837540|T037|AB|S32.028D|ICD10CM|Oth fx second lum vertebra, subs for fx w routn heal|Oth fx second lum vertebra, subs for fx w routn heal +C2837540|T037|PT|S32.028D|ICD10CM|Other fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing|Other fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing +C2837541|T037|AB|S32.028G|ICD10CM|Oth fx second lum vertebra, subs for fx w delay heal|Oth fx second lum vertebra, subs for fx w delay heal +C2837541|T037|PT|S32.028G|ICD10CM|Other fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing|Other fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing +C2837542|T037|AB|S32.028K|ICD10CM|Oth fracture of second lum vertebra, subs for fx w nonunion|Oth fracture of second lum vertebra, subs for fx w nonunion +C2837542|T037|PT|S32.028K|ICD10CM|Other fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion|Other fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion +C2837543|T037|PT|S32.028S|ICD10CM|Other fracture of second lumbar vertebra, sequela|Other fracture of second lumbar vertebra, sequela +C2837543|T037|AB|S32.028S|ICD10CM|Other fracture of second lumbar vertebra, sequela|Other fracture of second lumbar vertebra, sequela +C2837544|T037|AB|S32.029|ICD10CM|Unspecified fracture of second lumbar vertebra|Unspecified fracture of second lumbar vertebra +C2837544|T037|HT|S32.029|ICD10CM|Unspecified fracture of second lumbar vertebra|Unspecified fracture of second lumbar vertebra +C2837545|T037|AB|S32.029A|ICD10CM|Unsp fracture of second lumbar vertebra, init for clos fx|Unsp fracture of second lumbar vertebra, init for clos fx +C2837545|T037|PT|S32.029A|ICD10CM|Unspecified fracture of second lumbar vertebra, initial encounter for closed fracture|Unspecified fracture of second lumbar vertebra, initial encounter for closed fracture +C2837546|T037|AB|S32.029B|ICD10CM|Unsp fracture of second lumbar vertebra, init for opn fx|Unsp fracture of second lumbar vertebra, init for opn fx +C2837546|T037|PT|S32.029B|ICD10CM|Unspecified fracture of second lumbar vertebra, initial encounter for open fracture|Unspecified fracture of second lumbar vertebra, initial encounter for open fracture +C2837547|T037|AB|S32.029D|ICD10CM|Unsp fx second lum vertebra, subs for fx w routn heal|Unsp fx second lum vertebra, subs for fx w routn heal +C2837548|T037|AB|S32.029G|ICD10CM|Unsp fx second lum vertebra, subs for fx w delay heal|Unsp fx second lum vertebra, subs for fx w delay heal +C2837549|T037|AB|S32.029K|ICD10CM|Unsp fracture of second lum vertebra, subs for fx w nonunion|Unsp fracture of second lum vertebra, subs for fx w nonunion +C2837549|T037|PT|S32.029K|ICD10CM|Unspecified fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion|Unspecified fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion +C2837550|T037|PT|S32.029S|ICD10CM|Unspecified fracture of second lumbar vertebra, sequela|Unspecified fracture of second lumbar vertebra, sequela +C2837550|T037|AB|S32.029S|ICD10CM|Unspecified fracture of second lumbar vertebra, sequela|Unspecified fracture of second lumbar vertebra, sequela +C2837551|T037|HT|S32.03|ICD10CM|Fracture of third lumbar vertebra|Fracture of third lumbar vertebra +C2837551|T037|AB|S32.03|ICD10CM|Fracture of third lumbar vertebra|Fracture of third lumbar vertebra +C2837552|T037|AB|S32.030|ICD10CM|Wedge compression fracture of third lumbar vertebra|Wedge compression fracture of third lumbar vertebra +C2837552|T037|HT|S32.030|ICD10CM|Wedge compression fracture of third lumbar vertebra|Wedge compression fracture of third lumbar vertebra +C2837553|T037|AB|S32.030A|ICD10CM|Wedge compression fracture of third lumbar vertebra, init|Wedge compression fracture of third lumbar vertebra, init +C2837553|T037|PT|S32.030A|ICD10CM|Wedge compression fracture of third lumbar vertebra, initial encounter for closed fracture|Wedge compression fracture of third lumbar vertebra, initial encounter for closed fracture +C2837554|T037|PT|S32.030B|ICD10CM|Wedge compression fracture of third lumbar vertebra, initial encounter for open fracture|Wedge compression fracture of third lumbar vertebra, initial encounter for open fracture +C2837554|T037|AB|S32.030B|ICD10CM|Wedge comprsn fx third lum vertebra, init for opn fx|Wedge comprsn fx third lum vertebra, init for opn fx +C2837555|T037|AB|S32.030D|ICD10CM|Wedge comprsn fx third lum vert, subs for fx w routn heal|Wedge comprsn fx third lum vert, subs for fx w routn heal +C2837556|T037|AB|S32.030G|ICD10CM|Wedge comprsn fx third lum vert, subs for fx w delay heal|Wedge comprsn fx third lum vert, subs for fx w delay heal +C2837557|T037|PT|S32.030K|ICD10CM|Wedge compression fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion|Wedge compression fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion +C2837557|T037|AB|S32.030K|ICD10CM|Wedge comprsn fx third lum vertebra, subs for fx w nonunion|Wedge comprsn fx third lum vertebra, subs for fx w nonunion +C2837558|T037|AB|S32.030S|ICD10CM|Wedge compression fracture of third lumbar vertebra, sequela|Wedge compression fracture of third lumbar vertebra, sequela +C2837558|T037|PT|S32.030S|ICD10CM|Wedge compression fracture of third lumbar vertebra, sequela|Wedge compression fracture of third lumbar vertebra, sequela +C2837559|T037|AB|S32.031|ICD10CM|Stable burst fracture of third lumbar vertebra|Stable burst fracture of third lumbar vertebra +C2837559|T037|HT|S32.031|ICD10CM|Stable burst fracture of third lumbar vertebra|Stable burst fracture of third lumbar vertebra +C2837560|T037|AB|S32.031A|ICD10CM|Stable burst fracture of third lumbar vertebra, init|Stable burst fracture of third lumbar vertebra, init +C2837560|T037|PT|S32.031A|ICD10CM|Stable burst fracture of third lumbar vertebra, initial encounter for closed fracture|Stable burst fracture of third lumbar vertebra, initial encounter for closed fracture +C2837561|T037|AB|S32.031B|ICD10CM|Stable burst fracture of third lum vertebra, init for opn fx|Stable burst fracture of third lum vertebra, init for opn fx +C2837561|T037|PT|S32.031B|ICD10CM|Stable burst fracture of third lumbar vertebra, initial encounter for open fracture|Stable burst fracture of third lumbar vertebra, initial encounter for open fracture +C2837562|T037|AB|S32.031D|ICD10CM|Stable burst fx third lum vertebra, subs for fx w routn heal|Stable burst fx third lum vertebra, subs for fx w routn heal +C2837563|T037|AB|S32.031G|ICD10CM|Stable burst fx third lum vertebra, subs for fx w delay heal|Stable burst fx third lum vertebra, subs for fx w delay heal +C2837564|T037|PT|S32.031K|ICD10CM|Stable burst fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion|Stable burst fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion +C2837564|T037|AB|S32.031K|ICD10CM|Stable burst fx third lum vertebra, subs for fx w nonunion|Stable burst fx third lum vertebra, subs for fx w nonunion +C2837565|T037|PT|S32.031S|ICD10CM|Stable burst fracture of third lumbar vertebra, sequela|Stable burst fracture of third lumbar vertebra, sequela +C2837565|T037|AB|S32.031S|ICD10CM|Stable burst fracture of third lumbar vertebra, sequela|Stable burst fracture of third lumbar vertebra, sequela +C2837566|T037|AB|S32.032|ICD10CM|Unstable burst fracture of third lumbar vertebra|Unstable burst fracture of third lumbar vertebra +C2837566|T037|HT|S32.032|ICD10CM|Unstable burst fracture of third lumbar vertebra|Unstable burst fracture of third lumbar vertebra +C2837567|T037|AB|S32.032A|ICD10CM|Unstable burst fracture of third lumbar vertebra, init|Unstable burst fracture of third lumbar vertebra, init +C2837567|T037|PT|S32.032A|ICD10CM|Unstable burst fracture of third lumbar vertebra, initial encounter for closed fracture|Unstable burst fracture of third lumbar vertebra, initial encounter for closed fracture +C2837568|T037|PT|S32.032B|ICD10CM|Unstable burst fracture of third lumbar vertebra, initial encounter for open fracture|Unstable burst fracture of third lumbar vertebra, initial encounter for open fracture +C2837568|T037|AB|S32.032B|ICD10CM|Unstable burst fx third lum vertebra, init for opn fx|Unstable burst fx third lum vertebra, init for opn fx +C2837569|T037|AB|S32.032D|ICD10CM|Unstbl burst fx third lum vertebra, subs for fx w routn heal|Unstbl burst fx third lum vertebra, subs for fx w routn heal +C2837570|T037|AB|S32.032G|ICD10CM|Unstbl burst fx third lum vertebra, subs for fx w delay heal|Unstbl burst fx third lum vertebra, subs for fx w delay heal +C2837571|T037|PT|S32.032K|ICD10CM|Unstable burst fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion|Unstable burst fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion +C2837571|T037|AB|S32.032K|ICD10CM|Unstable burst fx third lum vertebra, subs for fx w nonunion|Unstable burst fx third lum vertebra, subs for fx w nonunion +C2837572|T037|PT|S32.032S|ICD10CM|Unstable burst fracture of third lumbar vertebra, sequela|Unstable burst fracture of third lumbar vertebra, sequela +C2837572|T037|AB|S32.032S|ICD10CM|Unstable burst fracture of third lumbar vertebra, sequela|Unstable burst fracture of third lumbar vertebra, sequela +C2837573|T037|AB|S32.038|ICD10CM|Other fracture of third lumbar vertebra|Other fracture of third lumbar vertebra +C2837573|T037|HT|S32.038|ICD10CM|Other fracture of third lumbar vertebra|Other fracture of third lumbar vertebra +C2837574|T037|AB|S32.038A|ICD10CM|Oth fracture of third lumbar vertebra, init for clos fx|Oth fracture of third lumbar vertebra, init for clos fx +C2837574|T037|PT|S32.038A|ICD10CM|Other fracture of third lumbar vertebra, initial encounter for closed fracture|Other fracture of third lumbar vertebra, initial encounter for closed fracture +C2837575|T037|AB|S32.038B|ICD10CM|Oth fracture of third lumbar vertebra, init for opn fx|Oth fracture of third lumbar vertebra, init for opn fx +C2837575|T037|PT|S32.038B|ICD10CM|Other fracture of third lumbar vertebra, initial encounter for open fracture|Other fracture of third lumbar vertebra, initial encounter for open fracture +C2837576|T037|AB|S32.038D|ICD10CM|Oth fracture of third lum vertebra, subs for fx w routn heal|Oth fracture of third lum vertebra, subs for fx w routn heal +C2837576|T037|PT|S32.038D|ICD10CM|Other fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing|Other fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing +C2837577|T037|AB|S32.038G|ICD10CM|Oth fracture of third lum vertebra, subs for fx w delay heal|Oth fracture of third lum vertebra, subs for fx w delay heal +C2837577|T037|PT|S32.038G|ICD10CM|Other fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing|Other fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing +C2837578|T037|AB|S32.038K|ICD10CM|Oth fracture of third lum vertebra, subs for fx w nonunion|Oth fracture of third lum vertebra, subs for fx w nonunion +C2837578|T037|PT|S32.038K|ICD10CM|Other fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion|Other fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion +C2837579|T037|PT|S32.038S|ICD10CM|Other fracture of third lumbar vertebra, sequela|Other fracture of third lumbar vertebra, sequela +C2837579|T037|AB|S32.038S|ICD10CM|Other fracture of third lumbar vertebra, sequela|Other fracture of third lumbar vertebra, sequela +C2837580|T037|AB|S32.039|ICD10CM|Unspecified fracture of third lumbar vertebra|Unspecified fracture of third lumbar vertebra +C2837580|T037|HT|S32.039|ICD10CM|Unspecified fracture of third lumbar vertebra|Unspecified fracture of third lumbar vertebra +C2837581|T037|AB|S32.039A|ICD10CM|Unsp fracture of third lumbar vertebra, init for clos fx|Unsp fracture of third lumbar vertebra, init for clos fx +C2837581|T037|PT|S32.039A|ICD10CM|Unspecified fracture of third lumbar vertebra, initial encounter for closed fracture|Unspecified fracture of third lumbar vertebra, initial encounter for closed fracture +C2837582|T037|AB|S32.039B|ICD10CM|Unsp fracture of third lumbar vertebra, init for opn fx|Unsp fracture of third lumbar vertebra, init for opn fx +C2837582|T037|PT|S32.039B|ICD10CM|Unspecified fracture of third lumbar vertebra, initial encounter for open fracture|Unspecified fracture of third lumbar vertebra, initial encounter for open fracture +C2837583|T037|AB|S32.039D|ICD10CM|Unsp fx third lum vertebra, subs for fx w routn heal|Unsp fx third lum vertebra, subs for fx w routn heal +C2837584|T037|AB|S32.039G|ICD10CM|Unsp fx third lum vertebra, subs for fx w delay heal|Unsp fx third lum vertebra, subs for fx w delay heal +C2837585|T037|AB|S32.039K|ICD10CM|Unsp fracture of third lum vertebra, subs for fx w nonunion|Unsp fracture of third lum vertebra, subs for fx w nonunion +C2837585|T037|PT|S32.039K|ICD10CM|Unspecified fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion|Unspecified fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion +C2837586|T037|PT|S32.039S|ICD10CM|Unspecified fracture of third lumbar vertebra, sequela|Unspecified fracture of third lumbar vertebra, sequela +C2837586|T037|AB|S32.039S|ICD10CM|Unspecified fracture of third lumbar vertebra, sequela|Unspecified fracture of third lumbar vertebra, sequela +C2837587|T037|HT|S32.04|ICD10CM|Fracture of fourth lumbar vertebra|Fracture of fourth lumbar vertebra +C2837587|T037|AB|S32.04|ICD10CM|Fracture of fourth lumbar vertebra|Fracture of fourth lumbar vertebra +C2837588|T037|AB|S32.040|ICD10CM|Wedge compression fracture of fourth lumbar vertebra|Wedge compression fracture of fourth lumbar vertebra +C2837588|T037|HT|S32.040|ICD10CM|Wedge compression fracture of fourth lumbar vertebra|Wedge compression fracture of fourth lumbar vertebra +C2837589|T037|AB|S32.040A|ICD10CM|Wedge compression fracture of fourth lumbar vertebra, init|Wedge compression fracture of fourth lumbar vertebra, init +C2837589|T037|PT|S32.040A|ICD10CM|Wedge compression fracture of fourth lumbar vertebra, initial encounter for closed fracture|Wedge compression fracture of fourth lumbar vertebra, initial encounter for closed fracture +C2837590|T037|PT|S32.040B|ICD10CM|Wedge compression fracture of fourth lumbar vertebra, initial encounter for open fracture|Wedge compression fracture of fourth lumbar vertebra, initial encounter for open fracture +C2837590|T037|AB|S32.040B|ICD10CM|Wedge comprsn fx fourth lum vertebra, init for opn fx|Wedge comprsn fx fourth lum vertebra, init for opn fx +C2837591|T037|AB|S32.040D|ICD10CM|Wedge comprsn fx fourth lum vert, subs for fx w routn heal|Wedge comprsn fx fourth lum vert, subs for fx w routn heal +C2837592|T037|AB|S32.040G|ICD10CM|Wedge comprsn fx fourth lum vert, subs for fx w delay heal|Wedge comprsn fx fourth lum vert, subs for fx w delay heal +C2837593|T037|AB|S32.040K|ICD10CM|Wedge comprsn fx fourth lum vertebra, subs for fx w nonunion|Wedge comprsn fx fourth lum vertebra, subs for fx w nonunion +C2837594|T037|AB|S32.040S|ICD10CM|Wedge compression fracture of fourth lum vertebra, sequela|Wedge compression fracture of fourth lum vertebra, sequela +C2837594|T037|PT|S32.040S|ICD10CM|Wedge compression fracture of fourth lumbar vertebra, sequela|Wedge compression fracture of fourth lumbar vertebra, sequela +C2837595|T037|AB|S32.041|ICD10CM|Stable burst fracture of fourth lumbar vertebra|Stable burst fracture of fourth lumbar vertebra +C2837595|T037|HT|S32.041|ICD10CM|Stable burst fracture of fourth lumbar vertebra|Stable burst fracture of fourth lumbar vertebra +C2837596|T037|AB|S32.041A|ICD10CM|Stable burst fracture of fourth lumbar vertebra, init|Stable burst fracture of fourth lumbar vertebra, init +C2837596|T037|PT|S32.041A|ICD10CM|Stable burst fracture of fourth lumbar vertebra, initial encounter for closed fracture|Stable burst fracture of fourth lumbar vertebra, initial encounter for closed fracture +C2837597|T037|PT|S32.041B|ICD10CM|Stable burst fracture of fourth lumbar vertebra, initial encounter for open fracture|Stable burst fracture of fourth lumbar vertebra, initial encounter for open fracture +C2837597|T037|AB|S32.041B|ICD10CM|Stable burst fx fourth lum vertebra, init for opn fx|Stable burst fx fourth lum vertebra, init for opn fx +C2837598|T037|AB|S32.041D|ICD10CM|Stable burst fx fourth lum vert, subs for fx w routn heal|Stable burst fx fourth lum vert, subs for fx w routn heal +C2837599|T037|AB|S32.041G|ICD10CM|Stable burst fx fourth lum vert, subs for fx w delay heal|Stable burst fx fourth lum vert, subs for fx w delay heal +C2837600|T037|PT|S32.041K|ICD10CM|Stable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion|Stable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion +C2837600|T037|AB|S32.041K|ICD10CM|Stable burst fx fourth lum vertebra, subs for fx w nonunion|Stable burst fx fourth lum vertebra, subs for fx w nonunion +C2837601|T037|PT|S32.041S|ICD10CM|Stable burst fracture of fourth lumbar vertebra, sequela|Stable burst fracture of fourth lumbar vertebra, sequela +C2837601|T037|AB|S32.041S|ICD10CM|Stable burst fracture of fourth lumbar vertebra, sequela|Stable burst fracture of fourth lumbar vertebra, sequela +C2837602|T037|AB|S32.042|ICD10CM|Unstable burst fracture of fourth lumbar vertebra|Unstable burst fracture of fourth lumbar vertebra +C2837602|T037|HT|S32.042|ICD10CM|Unstable burst fracture of fourth lumbar vertebra|Unstable burst fracture of fourth lumbar vertebra +C2837603|T037|AB|S32.042A|ICD10CM|Unstable burst fracture of fourth lumbar vertebra, init|Unstable burst fracture of fourth lumbar vertebra, init +C2837603|T037|PT|S32.042A|ICD10CM|Unstable burst fracture of fourth lumbar vertebra, initial encounter for closed fracture|Unstable burst fracture of fourth lumbar vertebra, initial encounter for closed fracture +C2837604|T037|PT|S32.042B|ICD10CM|Unstable burst fracture of fourth lumbar vertebra, initial encounter for open fracture|Unstable burst fracture of fourth lumbar vertebra, initial encounter for open fracture +C2837604|T037|AB|S32.042B|ICD10CM|Unstable burst fx fourth lum vertebra, init for opn fx|Unstable burst fx fourth lum vertebra, init for opn fx +C2837605|T037|AB|S32.042D|ICD10CM|Unstbl burst fx fourth lum vert, subs for fx w routn heal|Unstbl burst fx fourth lum vert, subs for fx w routn heal +C2837606|T037|AB|S32.042G|ICD10CM|Unstbl burst fx fourth lum vert, subs for fx w delay heal|Unstbl burst fx fourth lum vert, subs for fx w delay heal +C2837607|T037|PT|S32.042K|ICD10CM|Unstable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion|Unstable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion +C2837607|T037|AB|S32.042K|ICD10CM|Unstbl burst fx fourth lum vertebra, subs for fx w nonunion|Unstbl burst fx fourth lum vertebra, subs for fx w nonunion +C2837608|T037|PT|S32.042S|ICD10CM|Unstable burst fracture of fourth lumbar vertebra, sequela|Unstable burst fracture of fourth lumbar vertebra, sequela +C2837608|T037|AB|S32.042S|ICD10CM|Unstable burst fracture of fourth lumbar vertebra, sequela|Unstable burst fracture of fourth lumbar vertebra, sequela +C2837609|T037|AB|S32.048|ICD10CM|Other fracture of fourth lumbar vertebra|Other fracture of fourth lumbar vertebra +C2837609|T037|HT|S32.048|ICD10CM|Other fracture of fourth lumbar vertebra|Other fracture of fourth lumbar vertebra +C2837610|T037|AB|S32.048A|ICD10CM|Oth fracture of fourth lumbar vertebra, init for clos fx|Oth fracture of fourth lumbar vertebra, init for clos fx +C2837610|T037|PT|S32.048A|ICD10CM|Other fracture of fourth lumbar vertebra, initial encounter for closed fracture|Other fracture of fourth lumbar vertebra, initial encounter for closed fracture +C2837611|T037|AB|S32.048B|ICD10CM|Oth fracture of fourth lumbar vertebra, init for opn fx|Oth fracture of fourth lumbar vertebra, init for opn fx +C2837611|T037|PT|S32.048B|ICD10CM|Other fracture of fourth lumbar vertebra, initial encounter for open fracture|Other fracture of fourth lumbar vertebra, initial encounter for open fracture +C2837612|T037|AB|S32.048D|ICD10CM|Oth fx fourth lum vertebra, subs for fx w routn heal|Oth fx fourth lum vertebra, subs for fx w routn heal +C2837612|T037|PT|S32.048D|ICD10CM|Other fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing|Other fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing +C2837613|T037|AB|S32.048G|ICD10CM|Oth fx fourth lum vertebra, subs for fx w delay heal|Oth fx fourth lum vertebra, subs for fx w delay heal +C2837613|T037|PT|S32.048G|ICD10CM|Other fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing|Other fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing +C2837614|T037|AB|S32.048K|ICD10CM|Oth fracture of fourth lum vertebra, subs for fx w nonunion|Oth fracture of fourth lum vertebra, subs for fx w nonunion +C2837614|T037|PT|S32.048K|ICD10CM|Other fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion|Other fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion +C2837615|T037|PT|S32.048S|ICD10CM|Other fracture of fourth lumbar vertebra, sequela|Other fracture of fourth lumbar vertebra, sequela +C2837615|T037|AB|S32.048S|ICD10CM|Other fracture of fourth lumbar vertebra, sequela|Other fracture of fourth lumbar vertebra, sequela +C2837616|T037|AB|S32.049|ICD10CM|Unspecified fracture of fourth lumbar vertebra|Unspecified fracture of fourth lumbar vertebra +C2837616|T037|HT|S32.049|ICD10CM|Unspecified fracture of fourth lumbar vertebra|Unspecified fracture of fourth lumbar vertebra +C2837617|T037|AB|S32.049A|ICD10CM|Unsp fracture of fourth lumbar vertebra, init for clos fx|Unsp fracture of fourth lumbar vertebra, init for clos fx +C2837617|T037|PT|S32.049A|ICD10CM|Unspecified fracture of fourth lumbar vertebra, initial encounter for closed fracture|Unspecified fracture of fourth lumbar vertebra, initial encounter for closed fracture +C2837618|T037|AB|S32.049B|ICD10CM|Unsp fracture of fourth lumbar vertebra, init for opn fx|Unsp fracture of fourth lumbar vertebra, init for opn fx +C2837618|T037|PT|S32.049B|ICD10CM|Unspecified fracture of fourth lumbar vertebra, initial encounter for open fracture|Unspecified fracture of fourth lumbar vertebra, initial encounter for open fracture +C2837619|T037|AB|S32.049D|ICD10CM|Unsp fx fourth lum vertebra, subs for fx w routn heal|Unsp fx fourth lum vertebra, subs for fx w routn heal +C2837620|T037|AB|S32.049G|ICD10CM|Unsp fx fourth lum vertebra, subs for fx w delay heal|Unsp fx fourth lum vertebra, subs for fx w delay heal +C2837621|T037|AB|S32.049K|ICD10CM|Unsp fracture of fourth lum vertebra, subs for fx w nonunion|Unsp fracture of fourth lum vertebra, subs for fx w nonunion +C2837621|T037|PT|S32.049K|ICD10CM|Unspecified fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion|Unspecified fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion +C2837622|T037|PT|S32.049S|ICD10CM|Unspecified fracture of fourth lumbar vertebra, sequela|Unspecified fracture of fourth lumbar vertebra, sequela +C2837622|T037|AB|S32.049S|ICD10CM|Unspecified fracture of fourth lumbar vertebra, sequela|Unspecified fracture of fourth lumbar vertebra, sequela +C2837623|T037|HT|S32.05|ICD10CM|Fracture of fifth lumbar vertebra|Fracture of fifth lumbar vertebra +C2837623|T037|AB|S32.05|ICD10CM|Fracture of fifth lumbar vertebra|Fracture of fifth lumbar vertebra +C2837624|T037|AB|S32.050|ICD10CM|Wedge compression fracture of fifth lumbar vertebra|Wedge compression fracture of fifth lumbar vertebra +C2837624|T037|HT|S32.050|ICD10CM|Wedge compression fracture of fifth lumbar vertebra|Wedge compression fracture of fifth lumbar vertebra +C2837625|T037|AB|S32.050A|ICD10CM|Wedge compression fracture of fifth lumbar vertebra, init|Wedge compression fracture of fifth lumbar vertebra, init +C2837625|T037|PT|S32.050A|ICD10CM|Wedge compression fracture of fifth lumbar vertebra, initial encounter for closed fracture|Wedge compression fracture of fifth lumbar vertebra, initial encounter for closed fracture +C2837626|T037|PT|S32.050B|ICD10CM|Wedge compression fracture of fifth lumbar vertebra, initial encounter for open fracture|Wedge compression fracture of fifth lumbar vertebra, initial encounter for open fracture +C2837626|T037|AB|S32.050B|ICD10CM|Wedge comprsn fx fifth lum vertebra, init for opn fx|Wedge comprsn fx fifth lum vertebra, init for opn fx +C2837627|T037|AB|S32.050D|ICD10CM|Wedge comprsn fx fifth lum vert, subs for fx w routn heal|Wedge comprsn fx fifth lum vert, subs for fx w routn heal +C2837628|T037|AB|S32.050G|ICD10CM|Wedge comprsn fx fifth lum vert, subs for fx w delay heal|Wedge comprsn fx fifth lum vert, subs for fx w delay heal +C2837629|T037|PT|S32.050K|ICD10CM|Wedge compression fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion|Wedge compression fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion +C2837629|T037|AB|S32.050K|ICD10CM|Wedge comprsn fx fifth lum vertebra, subs for fx w nonunion|Wedge comprsn fx fifth lum vertebra, subs for fx w nonunion +C2837630|T037|AB|S32.050S|ICD10CM|Wedge compression fracture of fifth lumbar vertebra, sequela|Wedge compression fracture of fifth lumbar vertebra, sequela +C2837630|T037|PT|S32.050S|ICD10CM|Wedge compression fracture of fifth lumbar vertebra, sequela|Wedge compression fracture of fifth lumbar vertebra, sequela +C2837631|T037|AB|S32.051|ICD10CM|Stable burst fracture of fifth lumbar vertebra|Stable burst fracture of fifth lumbar vertebra +C2837631|T037|HT|S32.051|ICD10CM|Stable burst fracture of fifth lumbar vertebra|Stable burst fracture of fifth lumbar vertebra +C2837632|T037|AB|S32.051A|ICD10CM|Stable burst fracture of fifth lumbar vertebra, init|Stable burst fracture of fifth lumbar vertebra, init +C2837632|T037|PT|S32.051A|ICD10CM|Stable burst fracture of fifth lumbar vertebra, initial encounter for closed fracture|Stable burst fracture of fifth lumbar vertebra, initial encounter for closed fracture +C2837633|T037|AB|S32.051B|ICD10CM|Stable burst fracture of fifth lum vertebra, init for opn fx|Stable burst fracture of fifth lum vertebra, init for opn fx +C2837633|T037|PT|S32.051B|ICD10CM|Stable burst fracture of fifth lumbar vertebra, initial encounter for open fracture|Stable burst fracture of fifth lumbar vertebra, initial encounter for open fracture +C2837634|T037|AB|S32.051D|ICD10CM|Stable burst fx fifth lum vertebra, subs for fx w routn heal|Stable burst fx fifth lum vertebra, subs for fx w routn heal +C2837635|T037|AB|S32.051G|ICD10CM|Stable burst fx fifth lum vertebra, subs for fx w delay heal|Stable burst fx fifth lum vertebra, subs for fx w delay heal +C2837636|T037|PT|S32.051K|ICD10CM|Stable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion|Stable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion +C2837636|T037|AB|S32.051K|ICD10CM|Stable burst fx fifth lum vertebra, subs for fx w nonunion|Stable burst fx fifth lum vertebra, subs for fx w nonunion +C2837637|T037|PT|S32.051S|ICD10CM|Stable burst fracture of fifth lumbar vertebra, sequela|Stable burst fracture of fifth lumbar vertebra, sequela +C2837637|T037|AB|S32.051S|ICD10CM|Stable burst fracture of fifth lumbar vertebra, sequela|Stable burst fracture of fifth lumbar vertebra, sequela +C2837638|T037|AB|S32.052|ICD10CM|Unstable burst fracture of fifth lumbar vertebra|Unstable burst fracture of fifth lumbar vertebra +C2837638|T037|HT|S32.052|ICD10CM|Unstable burst fracture of fifth lumbar vertebra|Unstable burst fracture of fifth lumbar vertebra +C2837639|T037|AB|S32.052A|ICD10CM|Unstable burst fracture of fifth lumbar vertebra, init|Unstable burst fracture of fifth lumbar vertebra, init +C2837639|T037|PT|S32.052A|ICD10CM|Unstable burst fracture of fifth lumbar vertebra, initial encounter for closed fracture|Unstable burst fracture of fifth lumbar vertebra, initial encounter for closed fracture +C2837640|T037|PT|S32.052B|ICD10CM|Unstable burst fracture of fifth lumbar vertebra, initial encounter for open fracture|Unstable burst fracture of fifth lumbar vertebra, initial encounter for open fracture +C2837640|T037|AB|S32.052B|ICD10CM|Unstable burst fx fifth lum vertebra, init for opn fx|Unstable burst fx fifth lum vertebra, init for opn fx +C2837641|T037|AB|S32.052D|ICD10CM|Unstbl burst fx fifth lum vertebra, subs for fx w routn heal|Unstbl burst fx fifth lum vertebra, subs for fx w routn heal +C2837642|T037|AB|S32.052G|ICD10CM|Unstbl burst fx fifth lum vertebra, subs for fx w delay heal|Unstbl burst fx fifth lum vertebra, subs for fx w delay heal +C2837643|T037|PT|S32.052K|ICD10CM|Unstable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion|Unstable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion +C2837643|T037|AB|S32.052K|ICD10CM|Unstable burst fx fifth lum vertebra, subs for fx w nonunion|Unstable burst fx fifth lum vertebra, subs for fx w nonunion +C2837644|T037|PT|S32.052S|ICD10CM|Unstable burst fracture of fifth lumbar vertebra, sequela|Unstable burst fracture of fifth lumbar vertebra, sequela +C2837644|T037|AB|S32.052S|ICD10CM|Unstable burst fracture of fifth lumbar vertebra, sequela|Unstable burst fracture of fifth lumbar vertebra, sequela +C2837645|T037|AB|S32.058|ICD10CM|Other fracture of fifth lumbar vertebra|Other fracture of fifth lumbar vertebra +C2837645|T037|HT|S32.058|ICD10CM|Other fracture of fifth lumbar vertebra|Other fracture of fifth lumbar vertebra +C2837646|T037|AB|S32.058A|ICD10CM|Oth fracture of fifth lumbar vertebra, init for clos fx|Oth fracture of fifth lumbar vertebra, init for clos fx +C2837646|T037|PT|S32.058A|ICD10CM|Other fracture of fifth lumbar vertebra, initial encounter for closed fracture|Other fracture of fifth lumbar vertebra, initial encounter for closed fracture +C2837647|T037|AB|S32.058B|ICD10CM|Oth fracture of fifth lumbar vertebra, init for opn fx|Oth fracture of fifth lumbar vertebra, init for opn fx +C2837647|T037|PT|S32.058B|ICD10CM|Other fracture of fifth lumbar vertebra, initial encounter for open fracture|Other fracture of fifth lumbar vertebra, initial encounter for open fracture +C2837648|T037|AB|S32.058D|ICD10CM|Oth fracture of fifth lum vertebra, subs for fx w routn heal|Oth fracture of fifth lum vertebra, subs for fx w routn heal +C2837648|T037|PT|S32.058D|ICD10CM|Other fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing|Other fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing +C2837649|T037|AB|S32.058G|ICD10CM|Oth fracture of fifth lum vertebra, subs for fx w delay heal|Oth fracture of fifth lum vertebra, subs for fx w delay heal +C2837649|T037|PT|S32.058G|ICD10CM|Other fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing|Other fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing +C2837650|T037|AB|S32.058K|ICD10CM|Oth fracture of fifth lum vertebra, subs for fx w nonunion|Oth fracture of fifth lum vertebra, subs for fx w nonunion +C2837650|T037|PT|S32.058K|ICD10CM|Other fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion|Other fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion +C2837651|T037|PT|S32.058S|ICD10CM|Other fracture of fifth lumbar vertebra, sequela|Other fracture of fifth lumbar vertebra, sequela +C2837651|T037|AB|S32.058S|ICD10CM|Other fracture of fifth lumbar vertebra, sequela|Other fracture of fifth lumbar vertebra, sequela +C2837652|T037|AB|S32.059|ICD10CM|Unspecified fracture of fifth lumbar vertebra|Unspecified fracture of fifth lumbar vertebra +C2837652|T037|HT|S32.059|ICD10CM|Unspecified fracture of fifth lumbar vertebra|Unspecified fracture of fifth lumbar vertebra +C2837653|T037|AB|S32.059A|ICD10CM|Unsp fracture of fifth lumbar vertebra, init for clos fx|Unsp fracture of fifth lumbar vertebra, init for clos fx +C2837653|T037|PT|S32.059A|ICD10CM|Unspecified fracture of fifth lumbar vertebra, initial encounter for closed fracture|Unspecified fracture of fifth lumbar vertebra, initial encounter for closed fracture +C2837654|T037|AB|S32.059B|ICD10CM|Unsp fracture of fifth lumbar vertebra, init for opn fx|Unsp fracture of fifth lumbar vertebra, init for opn fx +C2837654|T037|PT|S32.059B|ICD10CM|Unspecified fracture of fifth lumbar vertebra, initial encounter for open fracture|Unspecified fracture of fifth lumbar vertebra, initial encounter for open fracture +C2837655|T037|AB|S32.059D|ICD10CM|Unsp fx fifth lum vertebra, subs for fx w routn heal|Unsp fx fifth lum vertebra, subs for fx w routn heal +C2837656|T037|AB|S32.059G|ICD10CM|Unsp fx fifth lum vertebra, subs for fx w delay heal|Unsp fx fifth lum vertebra, subs for fx w delay heal +C2837657|T037|AB|S32.059K|ICD10CM|Unsp fracture of fifth lum vertebra, subs for fx w nonunion|Unsp fracture of fifth lum vertebra, subs for fx w nonunion +C2837657|T037|PT|S32.059K|ICD10CM|Unspecified fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion|Unspecified fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion +C2837658|T037|PT|S32.059S|ICD10CM|Unspecified fracture of fifth lumbar vertebra, sequela|Unspecified fracture of fifth lumbar vertebra, sequela +C2837658|T037|AB|S32.059S|ICD10CM|Unspecified fracture of fifth lumbar vertebra, sequela|Unspecified fracture of fifth lumbar vertebra, sequela +C2977838|T033|ET|S32.1|ICD10CM|For vertical fractures, code to most medial fracture extension|For vertical fractures, code to most medial fracture extension +C0435492|T037|PT|S32.1|ICD10|Fracture of sacrum|Fracture of sacrum +C0435492|T037|HT|S32.1|ICD10CM|Fracture of sacrum|Fracture of sacrum +C0435492|T037|AB|S32.1|ICD10CM|Fracture of sacrum|Fracture of sacrum +C2977839|T033|ET|S32.1|ICD10CM|Use two codes if both a vertical and transverse fracture are present|Use two codes if both a vertical and transverse fracture are present +C2837659|T037|AB|S32.10|ICD10CM|Unspecified fracture of sacrum|Unspecified fracture of sacrum +C2837659|T037|HT|S32.10|ICD10CM|Unspecified fracture of sacrum|Unspecified fracture of sacrum +C2837660|T037|AB|S32.10XA|ICD10CM|Unsp fracture of sacrum, init encntr for closed fracture|Unsp fracture of sacrum, init encntr for closed fracture +C2837660|T037|PT|S32.10XA|ICD10CM|Unspecified fracture of sacrum, initial encounter for closed fracture|Unspecified fracture of sacrum, initial encounter for closed fracture +C2837661|T037|AB|S32.10XB|ICD10CM|Unsp fracture of sacrum, init encntr for open fracture|Unsp fracture of sacrum, init encntr for open fracture +C2837661|T037|PT|S32.10XB|ICD10CM|Unspecified fracture of sacrum, initial encounter for open fracture|Unspecified fracture of sacrum, initial encounter for open fracture +C2837662|T037|AB|S32.10XD|ICD10CM|Unsp fracture of sacrum, subs for fx w routn heal|Unsp fracture of sacrum, subs for fx w routn heal +C2837662|T037|PT|S32.10XD|ICD10CM|Unspecified fracture of sacrum, subsequent encounter for fracture with routine healing|Unspecified fracture of sacrum, subsequent encounter for fracture with routine healing +C2837663|T037|AB|S32.10XG|ICD10CM|Unsp fracture of sacrum, subs for fx w delay heal|Unsp fracture of sacrum, subs for fx w delay heal +C2837663|T037|PT|S32.10XG|ICD10CM|Unspecified fracture of sacrum, subsequent encounter for fracture with delayed healing|Unspecified fracture of sacrum, subsequent encounter for fracture with delayed healing +C2837664|T037|AB|S32.10XK|ICD10CM|Unsp fracture of sacrum, subs encntr for fracture w nonunion|Unsp fracture of sacrum, subs encntr for fracture w nonunion +C2837664|T037|PT|S32.10XK|ICD10CM|Unspecified fracture of sacrum, subsequent encounter for fracture with nonunion|Unspecified fracture of sacrum, subsequent encounter for fracture with nonunion +C2837665|T037|PT|S32.10XS|ICD10CM|Unspecified fracture of sacrum, sequela|Unspecified fracture of sacrum, sequela +C2837665|T037|AB|S32.10XS|ICD10CM|Unspecified fracture of sacrum, sequela|Unspecified fracture of sacrum, sequela +C2837666|T037|ET|S32.11|ICD10CM|Vertical sacral ala fracture of sacrum|Vertical sacral ala fracture of sacrum +C2837667|T037|HT|S32.11|ICD10CM|Zone I fracture of sacrum|Zone I fracture of sacrum +C2837667|T037|AB|S32.11|ICD10CM|Zone I fracture of sacrum|Zone I fracture of sacrum +C2837668|T037|AB|S32.110|ICD10CM|Nondisplaced Zone I fracture of sacrum|Nondisplaced Zone I fracture of sacrum +C2837668|T037|HT|S32.110|ICD10CM|Nondisplaced Zone I fracture of sacrum|Nondisplaced Zone I fracture of sacrum +C2837669|T037|AB|S32.110A|ICD10CM|Nondisplaced Zone I fracture of sacrum, init for clos fx|Nondisplaced Zone I fracture of sacrum, init for clos fx +C2837669|T037|PT|S32.110A|ICD10CM|Nondisplaced Zone I fracture of sacrum, initial encounter for closed fracture|Nondisplaced Zone I fracture of sacrum, initial encounter for closed fracture +C2837670|T037|AB|S32.110B|ICD10CM|Nondisplaced Zone I fracture of sacrum, init for opn fx|Nondisplaced Zone I fracture of sacrum, init for opn fx +C2837670|T037|PT|S32.110B|ICD10CM|Nondisplaced Zone I fracture of sacrum, initial encounter for open fracture|Nondisplaced Zone I fracture of sacrum, initial encounter for open fracture +C2837671|T037|AB|S32.110D|ICD10CM|Nondisp Zone I fracture of sacrum, subs for fx w routn heal|Nondisp Zone I fracture of sacrum, subs for fx w routn heal +C2837671|T037|PT|S32.110D|ICD10CM|Nondisplaced Zone I fracture of sacrum, subsequent encounter for fracture with routine healing|Nondisplaced Zone I fracture of sacrum, subsequent encounter for fracture with routine healing +C2837672|T037|AB|S32.110G|ICD10CM|Nondisp Zone I fracture of sacrum, subs for fx w delay heal|Nondisp Zone I fracture of sacrum, subs for fx w delay heal +C2837672|T037|PT|S32.110G|ICD10CM|Nondisplaced Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing|Nondisplaced Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing +C2837673|T037|AB|S32.110K|ICD10CM|Nondisp Zone I fracture of sacrum, subs for fx w nonunion|Nondisp Zone I fracture of sacrum, subs for fx w nonunion +C2837673|T037|PT|S32.110K|ICD10CM|Nondisplaced Zone I fracture of sacrum, subsequent encounter for fracture with nonunion|Nondisplaced Zone I fracture of sacrum, subsequent encounter for fracture with nonunion +C2837674|T037|PT|S32.110S|ICD10CM|Nondisplaced Zone I fracture of sacrum, sequela|Nondisplaced Zone I fracture of sacrum, sequela +C2837674|T037|AB|S32.110S|ICD10CM|Nondisplaced Zone I fracture of sacrum, sequela|Nondisplaced Zone I fracture of sacrum, sequela +C2837675|T037|AB|S32.111|ICD10CM|Minimally displaced Zone I fracture of sacrum|Minimally displaced Zone I fracture of sacrum +C2837675|T037|HT|S32.111|ICD10CM|Minimally displaced Zone I fracture of sacrum|Minimally displaced Zone I fracture of sacrum +C2837676|T037|AB|S32.111A|ICD10CM|Minimally displaced Zone I fracture of sacrum, init|Minimally displaced Zone I fracture of sacrum, init +C2837676|T037|PT|S32.111A|ICD10CM|Minimally displaced Zone I fracture of sacrum, initial encounter for closed fracture|Minimally displaced Zone I fracture of sacrum, initial encounter for closed fracture +C2837677|T037|PT|S32.111B|ICD10CM|Minimally displaced Zone I fracture of sacrum, initial encounter for open fracture|Minimally displaced Zone I fracture of sacrum, initial encounter for open fracture +C2837677|T037|AB|S32.111B|ICD10CM|Minimally displaced Zone I fx sacrum, init for opn fx|Minimally displaced Zone I fx sacrum, init for opn fx +C2837678|T037|AB|S32.111D|ICD10CM|Minimally displ Zone I fx sacrum, subs for fx w routn heal|Minimally displ Zone I fx sacrum, subs for fx w routn heal +C2837679|T037|AB|S32.111G|ICD10CM|Minimally displ Zone I fx sacrum, subs for fx w delay heal|Minimally displ Zone I fx sacrum, subs for fx w delay heal +C2837680|T037|PT|S32.111K|ICD10CM|Minimally displaced Zone I fracture of sacrum, subsequent encounter for fracture with nonunion|Minimally displaced Zone I fracture of sacrum, subsequent encounter for fracture with nonunion +C2837680|T037|AB|S32.111K|ICD10CM|Minimally displaced Zone I fx sacrum, subs for fx w nonunion|Minimally displaced Zone I fx sacrum, subs for fx w nonunion +C2837681|T037|PT|S32.111S|ICD10CM|Minimally displaced Zone I fracture of sacrum, sequela|Minimally displaced Zone I fracture of sacrum, sequela +C2837681|T037|AB|S32.111S|ICD10CM|Minimally displaced Zone I fracture of sacrum, sequela|Minimally displaced Zone I fracture of sacrum, sequela +C2837682|T037|AB|S32.112|ICD10CM|Severely displaced Zone I fracture of sacrum|Severely displaced Zone I fracture of sacrum +C2837682|T037|HT|S32.112|ICD10CM|Severely displaced Zone I fracture of sacrum|Severely displaced Zone I fracture of sacrum +C2837683|T037|AB|S32.112A|ICD10CM|Severely displaced Zone I fracture of sacrum, init|Severely displaced Zone I fracture of sacrum, init +C2837683|T037|PT|S32.112A|ICD10CM|Severely displaced Zone I fracture of sacrum, initial encounter for closed fracture|Severely displaced Zone I fracture of sacrum, initial encounter for closed fracture +C2837684|T037|PT|S32.112B|ICD10CM|Severely displaced Zone I fracture of sacrum, initial encounter for open fracture|Severely displaced Zone I fracture of sacrum, initial encounter for open fracture +C2837684|T037|AB|S32.112B|ICD10CM|Severely displaced Zone I fx sacrum, init for opn fx|Severely displaced Zone I fx sacrum, init for opn fx +C2837685|T037|AB|S32.112D|ICD10CM|Severely displ Zone I fx sacrum, subs for fx w routn heal|Severely displ Zone I fx sacrum, subs for fx w routn heal +C2837685|T037|PT|S32.112D|ICD10CM|Severely displaced Zone I fracture of sacrum, subsequent encounter for fracture with routine healing|Severely displaced Zone I fracture of sacrum, subsequent encounter for fracture with routine healing +C2837686|T037|AB|S32.112G|ICD10CM|Severely displ Zone I fx sacrum, subs for fx w delay heal|Severely displ Zone I fx sacrum, subs for fx w delay heal +C2837686|T037|PT|S32.112G|ICD10CM|Severely displaced Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing|Severely displaced Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing +C2837687|T037|PT|S32.112K|ICD10CM|Severely displaced Zone I fracture of sacrum, subsequent encounter for fracture with nonunion|Severely displaced Zone I fracture of sacrum, subsequent encounter for fracture with nonunion +C2837687|T037|AB|S32.112K|ICD10CM|Severely displaced Zone I fx sacrum, subs for fx w nonunion|Severely displaced Zone I fx sacrum, subs for fx w nonunion +C2837688|T037|PT|S32.112S|ICD10CM|Severely displaced Zone I fracture of sacrum, sequela|Severely displaced Zone I fracture of sacrum, sequela +C2837688|T037|AB|S32.112S|ICD10CM|Severely displaced Zone I fracture of sacrum, sequela|Severely displaced Zone I fracture of sacrum, sequela +C2837689|T037|AB|S32.119|ICD10CM|Unspecified Zone I fracture of sacrum|Unspecified Zone I fracture of sacrum +C2837689|T037|HT|S32.119|ICD10CM|Unspecified Zone I fracture of sacrum|Unspecified Zone I fracture of sacrum +C2837690|T037|AB|S32.119A|ICD10CM|Unsp Zone I fracture of sacrum, init for clos fx|Unsp Zone I fracture of sacrum, init for clos fx +C2837690|T037|PT|S32.119A|ICD10CM|Unspecified Zone I fracture of sacrum, initial encounter for closed fracture|Unspecified Zone I fracture of sacrum, initial encounter for closed fracture +C2837691|T037|AB|S32.119B|ICD10CM|Unsp Zone I fracture of sacrum, init for opn fx|Unsp Zone I fracture of sacrum, init for opn fx +C2837691|T037|PT|S32.119B|ICD10CM|Unspecified Zone I fracture of sacrum, initial encounter for open fracture|Unspecified Zone I fracture of sacrum, initial encounter for open fracture +C2837692|T037|AB|S32.119D|ICD10CM|Unsp Zone I fracture of sacrum, subs for fx w routn heal|Unsp Zone I fracture of sacrum, subs for fx w routn heal +C2837692|T037|PT|S32.119D|ICD10CM|Unspecified Zone I fracture of sacrum, subsequent encounter for fracture with routine healing|Unspecified Zone I fracture of sacrum, subsequent encounter for fracture with routine healing +C2837693|T037|AB|S32.119G|ICD10CM|Unsp Zone I fracture of sacrum, subs for fx w delay heal|Unsp Zone I fracture of sacrum, subs for fx w delay heal +C2837693|T037|PT|S32.119G|ICD10CM|Unspecified Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing|Unspecified Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing +C2837694|T037|AB|S32.119K|ICD10CM|Unsp Zone I fracture of sacrum, subs for fx w nonunion|Unsp Zone I fracture of sacrum, subs for fx w nonunion +C2837694|T037|PT|S32.119K|ICD10CM|Unspecified Zone I fracture of sacrum, subsequent encounter for fracture with nonunion|Unspecified Zone I fracture of sacrum, subsequent encounter for fracture with nonunion +C2837695|T037|PT|S32.119S|ICD10CM|Unspecified Zone I fracture of sacrum, sequela|Unspecified Zone I fracture of sacrum, sequela +C2837695|T037|AB|S32.119S|ICD10CM|Unspecified Zone I fracture of sacrum, sequela|Unspecified Zone I fracture of sacrum, sequela +C2837696|T037|ET|S32.12|ICD10CM|Vertical foraminal region fracture of sacrum|Vertical foraminal region fracture of sacrum +C2837697|T037|HT|S32.12|ICD10CM|Zone II fracture of sacrum|Zone II fracture of sacrum +C2837697|T037|AB|S32.12|ICD10CM|Zone II fracture of sacrum|Zone II fracture of sacrum +C2837698|T037|AB|S32.120|ICD10CM|Nondisplaced Zone II fracture of sacrum|Nondisplaced Zone II fracture of sacrum +C2837698|T037|HT|S32.120|ICD10CM|Nondisplaced Zone II fracture of sacrum|Nondisplaced Zone II fracture of sacrum +C2837699|T037|AB|S32.120A|ICD10CM|Nondisplaced Zone II fracture of sacrum, init for clos fx|Nondisplaced Zone II fracture of sacrum, init for clos fx +C2837699|T037|PT|S32.120A|ICD10CM|Nondisplaced Zone II fracture of sacrum, initial encounter for closed fracture|Nondisplaced Zone II fracture of sacrum, initial encounter for closed fracture +C2837700|T037|AB|S32.120B|ICD10CM|Nondisplaced Zone II fracture of sacrum, init for opn fx|Nondisplaced Zone II fracture of sacrum, init for opn fx +C2837700|T037|PT|S32.120B|ICD10CM|Nondisplaced Zone II fracture of sacrum, initial encounter for open fracture|Nondisplaced Zone II fracture of sacrum, initial encounter for open fracture +C2837701|T037|AB|S32.120D|ICD10CM|Nondisp Zone II fracture of sacrum, subs for fx w routn heal|Nondisp Zone II fracture of sacrum, subs for fx w routn heal +C2837701|T037|PT|S32.120D|ICD10CM|Nondisplaced Zone II fracture of sacrum, subsequent encounter for fracture with routine healing|Nondisplaced Zone II fracture of sacrum, subsequent encounter for fracture with routine healing +C2837702|T037|AB|S32.120G|ICD10CM|Nondisp Zone II fracture of sacrum, subs for fx w delay heal|Nondisp Zone II fracture of sacrum, subs for fx w delay heal +C2837702|T037|PT|S32.120G|ICD10CM|Nondisplaced Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing|Nondisplaced Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing +C2837703|T037|AB|S32.120K|ICD10CM|Nondisp Zone II fracture of sacrum, subs for fx w nonunion|Nondisp Zone II fracture of sacrum, subs for fx w nonunion +C2837703|T037|PT|S32.120K|ICD10CM|Nondisplaced Zone II fracture of sacrum, subsequent encounter for fracture with nonunion|Nondisplaced Zone II fracture of sacrum, subsequent encounter for fracture with nonunion +C2837704|T037|PT|S32.120S|ICD10CM|Nondisplaced Zone II fracture of sacrum, sequela|Nondisplaced Zone II fracture of sacrum, sequela +C2837704|T037|AB|S32.120S|ICD10CM|Nondisplaced Zone II fracture of sacrum, sequela|Nondisplaced Zone II fracture of sacrum, sequela +C2837705|T037|AB|S32.121|ICD10CM|Minimally displaced Zone II fracture of sacrum|Minimally displaced Zone II fracture of sacrum +C2837705|T037|HT|S32.121|ICD10CM|Minimally displaced Zone II fracture of sacrum|Minimally displaced Zone II fracture of sacrum +C2837706|T037|AB|S32.121A|ICD10CM|Minimally displaced Zone II fracture of sacrum, init|Minimally displaced Zone II fracture of sacrum, init +C2837706|T037|PT|S32.121A|ICD10CM|Minimally displaced Zone II fracture of sacrum, initial encounter for closed fracture|Minimally displaced Zone II fracture of sacrum, initial encounter for closed fracture +C2837707|T037|PT|S32.121B|ICD10CM|Minimally displaced Zone II fracture of sacrum, initial encounter for open fracture|Minimally displaced Zone II fracture of sacrum, initial encounter for open fracture +C2837707|T037|AB|S32.121B|ICD10CM|Minimally displaced Zone II fx sacrum, init for opn fx|Minimally displaced Zone II fx sacrum, init for opn fx +C2837708|T037|AB|S32.121D|ICD10CM|Minimally displ Zone II fx sacrum, subs for fx w routn heal|Minimally displ Zone II fx sacrum, subs for fx w routn heal +C2837709|T037|AB|S32.121G|ICD10CM|Minimally displ Zone II fx sacrum, subs for fx w delay heal|Minimally displ Zone II fx sacrum, subs for fx w delay heal +C2837710|T037|AB|S32.121K|ICD10CM|Minimally displ Zone II fx sacrum, subs for fx w nonunion|Minimally displ Zone II fx sacrum, subs for fx w nonunion +C2837710|T037|PT|S32.121K|ICD10CM|Minimally displaced Zone II fracture of sacrum, subsequent encounter for fracture with nonunion|Minimally displaced Zone II fracture of sacrum, subsequent encounter for fracture with nonunion +C2837711|T037|PT|S32.121S|ICD10CM|Minimally displaced Zone II fracture of sacrum, sequela|Minimally displaced Zone II fracture of sacrum, sequela +C2837711|T037|AB|S32.121S|ICD10CM|Minimally displaced Zone II fracture of sacrum, sequela|Minimally displaced Zone II fracture of sacrum, sequela +C2837712|T037|AB|S32.122|ICD10CM|Severely displaced Zone II fracture of sacrum|Severely displaced Zone II fracture of sacrum +C2837712|T037|HT|S32.122|ICD10CM|Severely displaced Zone II fracture of sacrum|Severely displaced Zone II fracture of sacrum +C2837713|T037|AB|S32.122A|ICD10CM|Severely displaced Zone II fracture of sacrum, init|Severely displaced Zone II fracture of sacrum, init +C2837713|T037|PT|S32.122A|ICD10CM|Severely displaced Zone II fracture of sacrum, initial encounter for closed fracture|Severely displaced Zone II fracture of sacrum, initial encounter for closed fracture +C2837714|T037|PT|S32.122B|ICD10CM|Severely displaced Zone II fracture of sacrum, initial encounter for open fracture|Severely displaced Zone II fracture of sacrum, initial encounter for open fracture +C2837714|T037|AB|S32.122B|ICD10CM|Severely displaced Zone II fx sacrum, init for opn fx|Severely displaced Zone II fx sacrum, init for opn fx +C2837715|T037|AB|S32.122D|ICD10CM|Severely displ Zone II fx sacrum, subs for fx w routn heal|Severely displ Zone II fx sacrum, subs for fx w routn heal +C2837716|T037|AB|S32.122G|ICD10CM|Severely displ Zone II fx sacrum, subs for fx w delay heal|Severely displ Zone II fx sacrum, subs for fx w delay heal +C2837717|T037|PT|S32.122K|ICD10CM|Severely displaced Zone II fracture of sacrum, subsequent encounter for fracture with nonunion|Severely displaced Zone II fracture of sacrum, subsequent encounter for fracture with nonunion +C2837717|T037|AB|S32.122K|ICD10CM|Severely displaced Zone II fx sacrum, subs for fx w nonunion|Severely displaced Zone II fx sacrum, subs for fx w nonunion +C2837718|T037|PT|S32.122S|ICD10CM|Severely displaced Zone II fracture of sacrum, sequela|Severely displaced Zone II fracture of sacrum, sequela +C2837718|T037|AB|S32.122S|ICD10CM|Severely displaced Zone II fracture of sacrum, sequela|Severely displaced Zone II fracture of sacrum, sequela +C2837719|T037|AB|S32.129|ICD10CM|Unspecified Zone II fracture of sacrum|Unspecified Zone II fracture of sacrum +C2837719|T037|HT|S32.129|ICD10CM|Unspecified Zone II fracture of sacrum|Unspecified Zone II fracture of sacrum +C2837720|T037|AB|S32.129A|ICD10CM|Unsp Zone II fracture of sacrum, init for clos fx|Unsp Zone II fracture of sacrum, init for clos fx +C2837720|T037|PT|S32.129A|ICD10CM|Unspecified Zone II fracture of sacrum, initial encounter for closed fracture|Unspecified Zone II fracture of sacrum, initial encounter for closed fracture +C2837721|T037|AB|S32.129B|ICD10CM|Unsp Zone II fracture of sacrum, init for opn fx|Unsp Zone II fracture of sacrum, init for opn fx +C2837721|T037|PT|S32.129B|ICD10CM|Unspecified Zone II fracture of sacrum, initial encounter for open fracture|Unspecified Zone II fracture of sacrum, initial encounter for open fracture +C2837722|T037|AB|S32.129D|ICD10CM|Unsp Zone II fracture of sacrum, subs for fx w routn heal|Unsp Zone II fracture of sacrum, subs for fx w routn heal +C2837722|T037|PT|S32.129D|ICD10CM|Unspecified Zone II fracture of sacrum, subsequent encounter for fracture with routine healing|Unspecified Zone II fracture of sacrum, subsequent encounter for fracture with routine healing +C2837723|T037|AB|S32.129G|ICD10CM|Unsp Zone II fracture of sacrum, subs for fx w delay heal|Unsp Zone II fracture of sacrum, subs for fx w delay heal +C2837723|T037|PT|S32.129G|ICD10CM|Unspecified Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing|Unspecified Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing +C2837724|T037|AB|S32.129K|ICD10CM|Unsp Zone II fracture of sacrum, subs for fx w nonunion|Unsp Zone II fracture of sacrum, subs for fx w nonunion +C2837724|T037|PT|S32.129K|ICD10CM|Unspecified Zone II fracture of sacrum, subsequent encounter for fracture with nonunion|Unspecified Zone II fracture of sacrum, subsequent encounter for fracture with nonunion +C2837725|T037|PT|S32.129S|ICD10CM|Unspecified Zone II fracture of sacrum, sequela|Unspecified Zone II fracture of sacrum, sequela +C2837725|T037|AB|S32.129S|ICD10CM|Unspecified Zone II fracture of sacrum, sequela|Unspecified Zone II fracture of sacrum, sequela +C2837726|T037|ET|S32.13|ICD10CM|Vertical fracture into spinal canal region of sacrum|Vertical fracture into spinal canal region of sacrum +C2837727|T037|HT|S32.13|ICD10CM|Zone III fracture of sacrum|Zone III fracture of sacrum +C2837727|T037|AB|S32.13|ICD10CM|Zone III fracture of sacrum|Zone III fracture of sacrum +C2837728|T037|AB|S32.130|ICD10CM|Nondisplaced Zone III fracture of sacrum|Nondisplaced Zone III fracture of sacrum +C2837728|T037|HT|S32.130|ICD10CM|Nondisplaced Zone III fracture of sacrum|Nondisplaced Zone III fracture of sacrum +C2837729|T037|AB|S32.130A|ICD10CM|Nondisplaced Zone III fracture of sacrum, init for clos fx|Nondisplaced Zone III fracture of sacrum, init for clos fx +C2837729|T037|PT|S32.130A|ICD10CM|Nondisplaced Zone III fracture of sacrum, initial encounter for closed fracture|Nondisplaced Zone III fracture of sacrum, initial encounter for closed fracture +C2837730|T037|AB|S32.130B|ICD10CM|Nondisplaced Zone III fracture of sacrum, init for opn fx|Nondisplaced Zone III fracture of sacrum, init for opn fx +C2837730|T037|PT|S32.130B|ICD10CM|Nondisplaced Zone III fracture of sacrum, initial encounter for open fracture|Nondisplaced Zone III fracture of sacrum, initial encounter for open fracture +C2837731|T037|AB|S32.130D|ICD10CM|Nondisp Zone III fx sacrum, subs for fx w routn heal|Nondisp Zone III fx sacrum, subs for fx w routn heal +C2837731|T037|PT|S32.130D|ICD10CM|Nondisplaced Zone III fracture of sacrum, subsequent encounter for fracture with routine healing|Nondisplaced Zone III fracture of sacrum, subsequent encounter for fracture with routine healing +C2837732|T037|AB|S32.130G|ICD10CM|Nondisp Zone III fx sacrum, subs for fx w delay heal|Nondisp Zone III fx sacrum, subs for fx w delay heal +C2837732|T037|PT|S32.130G|ICD10CM|Nondisplaced Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing|Nondisplaced Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing +C2837733|T037|AB|S32.130K|ICD10CM|Nondisp Zone III fracture of sacrum, subs for fx w nonunion|Nondisp Zone III fracture of sacrum, subs for fx w nonunion +C2837733|T037|PT|S32.130K|ICD10CM|Nondisplaced Zone III fracture of sacrum, subsequent encounter for fracture with nonunion|Nondisplaced Zone III fracture of sacrum, subsequent encounter for fracture with nonunion +C2837734|T037|PT|S32.130S|ICD10CM|Nondisplaced Zone III fracture of sacrum, sequela|Nondisplaced Zone III fracture of sacrum, sequela +C2837734|T037|AB|S32.130S|ICD10CM|Nondisplaced Zone III fracture of sacrum, sequela|Nondisplaced Zone III fracture of sacrum, sequela +C2837735|T037|AB|S32.131|ICD10CM|Minimally displaced Zone III fracture of sacrum|Minimally displaced Zone III fracture of sacrum +C2837735|T037|HT|S32.131|ICD10CM|Minimally displaced Zone III fracture of sacrum|Minimally displaced Zone III fracture of sacrum +C2837736|T037|AB|S32.131A|ICD10CM|Minimally displaced Zone III fracture of sacrum, init|Minimally displaced Zone III fracture of sacrum, init +C2837736|T037|PT|S32.131A|ICD10CM|Minimally displaced Zone III fracture of sacrum, initial encounter for closed fracture|Minimally displaced Zone III fracture of sacrum, initial encounter for closed fracture +C2837737|T037|PT|S32.131B|ICD10CM|Minimally displaced Zone III fracture of sacrum, initial encounter for open fracture|Minimally displaced Zone III fracture of sacrum, initial encounter for open fracture +C2837737|T037|AB|S32.131B|ICD10CM|Minimally displaced Zone III fx sacrum, init for opn fx|Minimally displaced Zone III fx sacrum, init for opn fx +C2837738|T037|AB|S32.131D|ICD10CM|Minimally displ Zone III fx sacrum, subs for fx w routn heal|Minimally displ Zone III fx sacrum, subs for fx w routn heal +C2837739|T037|AB|S32.131G|ICD10CM|Minimally displ Zone III fx sacrum, subs for fx w delay heal|Minimally displ Zone III fx sacrum, subs for fx w delay heal +C2837740|T037|AB|S32.131K|ICD10CM|Minimally displ Zone III fx sacrum, subs for fx w nonunion|Minimally displ Zone III fx sacrum, subs for fx w nonunion +C2837740|T037|PT|S32.131K|ICD10CM|Minimally displaced Zone III fracture of sacrum, subsequent encounter for fracture with nonunion|Minimally displaced Zone III fracture of sacrum, subsequent encounter for fracture with nonunion +C2837741|T037|PT|S32.131S|ICD10CM|Minimally displaced Zone III fracture of sacrum, sequela|Minimally displaced Zone III fracture of sacrum, sequela +C2837741|T037|AB|S32.131S|ICD10CM|Minimally displaced Zone III fracture of sacrum, sequela|Minimally displaced Zone III fracture of sacrum, sequela +C2837742|T037|AB|S32.132|ICD10CM|Severely displaced Zone III fracture of sacrum|Severely displaced Zone III fracture of sacrum +C2837742|T037|HT|S32.132|ICD10CM|Severely displaced Zone III fracture of sacrum|Severely displaced Zone III fracture of sacrum +C2837743|T037|AB|S32.132A|ICD10CM|Severely displaced Zone III fracture of sacrum, init|Severely displaced Zone III fracture of sacrum, init +C2837743|T037|PT|S32.132A|ICD10CM|Severely displaced Zone III fracture of sacrum, initial encounter for closed fracture|Severely displaced Zone III fracture of sacrum, initial encounter for closed fracture +C2837744|T037|PT|S32.132B|ICD10CM|Severely displaced Zone III fracture of sacrum, initial encounter for open fracture|Severely displaced Zone III fracture of sacrum, initial encounter for open fracture +C2837744|T037|AB|S32.132B|ICD10CM|Severely displaced Zone III fx sacrum, init for opn fx|Severely displaced Zone III fx sacrum, init for opn fx +C2837745|T037|AB|S32.132D|ICD10CM|Severely displ Zone III fx sacrum, subs for fx w routn heal|Severely displ Zone III fx sacrum, subs for fx w routn heal +C2837746|T037|AB|S32.132G|ICD10CM|Severely displ Zone III fx sacrum, subs for fx w delay heal|Severely displ Zone III fx sacrum, subs for fx w delay heal +C2837747|T037|AB|S32.132K|ICD10CM|Severely displ Zone III fx sacrum, subs for fx w nonunion|Severely displ Zone III fx sacrum, subs for fx w nonunion +C2837747|T037|PT|S32.132K|ICD10CM|Severely displaced Zone III fracture of sacrum, subsequent encounter for fracture with nonunion|Severely displaced Zone III fracture of sacrum, subsequent encounter for fracture with nonunion +C2837748|T037|PT|S32.132S|ICD10CM|Severely displaced Zone III fracture of sacrum, sequela|Severely displaced Zone III fracture of sacrum, sequela +C2837748|T037|AB|S32.132S|ICD10CM|Severely displaced Zone III fracture of sacrum, sequela|Severely displaced Zone III fracture of sacrum, sequela +C2837749|T037|AB|S32.139|ICD10CM|Unspecified Zone III fracture of sacrum|Unspecified Zone III fracture of sacrum +C2837749|T037|HT|S32.139|ICD10CM|Unspecified Zone III fracture of sacrum|Unspecified Zone III fracture of sacrum +C2837750|T037|AB|S32.139A|ICD10CM|Unsp Zone III fracture of sacrum, init for clos fx|Unsp Zone III fracture of sacrum, init for clos fx +C2837750|T037|PT|S32.139A|ICD10CM|Unspecified Zone III fracture of sacrum, initial encounter for closed fracture|Unspecified Zone III fracture of sacrum, initial encounter for closed fracture +C2837751|T037|AB|S32.139B|ICD10CM|Unsp Zone III fracture of sacrum, init for opn fx|Unsp Zone III fracture of sacrum, init for opn fx +C2837751|T037|PT|S32.139B|ICD10CM|Unspecified Zone III fracture of sacrum, initial encounter for open fracture|Unspecified Zone III fracture of sacrum, initial encounter for open fracture +C2837752|T037|AB|S32.139D|ICD10CM|Unsp Zone III fracture of sacrum, subs for fx w routn heal|Unsp Zone III fracture of sacrum, subs for fx w routn heal +C2837752|T037|PT|S32.139D|ICD10CM|Unspecified Zone III fracture of sacrum, subsequent encounter for fracture with routine healing|Unspecified Zone III fracture of sacrum, subsequent encounter for fracture with routine healing +C2837753|T037|AB|S32.139G|ICD10CM|Unsp Zone III fracture of sacrum, subs for fx w delay heal|Unsp Zone III fracture of sacrum, subs for fx w delay heal +C2837753|T037|PT|S32.139G|ICD10CM|Unspecified Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing|Unspecified Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing +C2837754|T037|AB|S32.139K|ICD10CM|Unsp Zone III fracture of sacrum, subs for fx w nonunion|Unsp Zone III fracture of sacrum, subs for fx w nonunion +C2837754|T037|PT|S32.139K|ICD10CM|Unspecified Zone III fracture of sacrum, subsequent encounter for fracture with nonunion|Unspecified Zone III fracture of sacrum, subsequent encounter for fracture with nonunion +C2837755|T037|PT|S32.139S|ICD10CM|Unspecified Zone III fracture of sacrum, sequela|Unspecified Zone III fracture of sacrum, sequela +C2837755|T037|AB|S32.139S|ICD10CM|Unspecified Zone III fracture of sacrum, sequela|Unspecified Zone III fracture of sacrum, sequela +C2837756|T037|ET|S32.14|ICD10CM|Transverse flexion fracture of sacrum without displacement|Transverse flexion fracture of sacrum without displacement +C2837757|T037|HT|S32.14|ICD10CM|Type 1 fracture of sacrum|Type 1 fracture of sacrum +C2837757|T037|AB|S32.14|ICD10CM|Type 1 fracture of sacrum|Type 1 fracture of sacrum +C2837758|T037|AB|S32.14XA|ICD10CM|Type 1 fracture of sacrum, init encntr for closed fracture|Type 1 fracture of sacrum, init encntr for closed fracture +C2837758|T037|PT|S32.14XA|ICD10CM|Type 1 fracture of sacrum, initial encounter for closed fracture|Type 1 fracture of sacrum, initial encounter for closed fracture +C2837759|T037|AB|S32.14XB|ICD10CM|Type 1 fracture of sacrum, init encntr for open fracture|Type 1 fracture of sacrum, init encntr for open fracture +C2837759|T037|PT|S32.14XB|ICD10CM|Type 1 fracture of sacrum, initial encounter for open fracture|Type 1 fracture of sacrum, initial encounter for open fracture +C2837760|T037|AB|S32.14XD|ICD10CM|Type 1 fracture of sacrum, subs for fx w routn heal|Type 1 fracture of sacrum, subs for fx w routn heal +C2837760|T037|PT|S32.14XD|ICD10CM|Type 1 fracture of sacrum, subsequent encounter for fracture with routine healing|Type 1 fracture of sacrum, subsequent encounter for fracture with routine healing +C2837761|T037|AB|S32.14XG|ICD10CM|Type 1 fracture of sacrum, subs for fx w delay heal|Type 1 fracture of sacrum, subs for fx w delay heal +C2837761|T037|PT|S32.14XG|ICD10CM|Type 1 fracture of sacrum, subsequent encounter for fracture with delayed healing|Type 1 fracture of sacrum, subsequent encounter for fracture with delayed healing +C2837762|T037|AB|S32.14XK|ICD10CM|Type 1 fracture of sacrum, subs for fx w nonunion|Type 1 fracture of sacrum, subs for fx w nonunion +C2837762|T037|PT|S32.14XK|ICD10CM|Type 1 fracture of sacrum, subsequent encounter for fracture with nonunion|Type 1 fracture of sacrum, subsequent encounter for fracture with nonunion +C2837763|T037|AB|S32.14XS|ICD10CM|Type 1 fracture of sacrum, sequela|Type 1 fracture of sacrum, sequela +C2837763|T037|PT|S32.14XS|ICD10CM|Type 1 fracture of sacrum, sequela|Type 1 fracture of sacrum, sequela +C2837764|T037|ET|S32.15|ICD10CM|Transverse flexion fracture of sacrum with posterior displacement|Transverse flexion fracture of sacrum with posterior displacement +C2837765|T037|HT|S32.15|ICD10CM|Type 2 fracture of sacrum|Type 2 fracture of sacrum +C2837765|T037|AB|S32.15|ICD10CM|Type 2 fracture of sacrum|Type 2 fracture of sacrum +C2837766|T037|AB|S32.15XA|ICD10CM|Type 2 fracture of sacrum, init encntr for closed fracture|Type 2 fracture of sacrum, init encntr for closed fracture +C2837766|T037|PT|S32.15XA|ICD10CM|Type 2 fracture of sacrum, initial encounter for closed fracture|Type 2 fracture of sacrum, initial encounter for closed fracture +C2837767|T037|AB|S32.15XB|ICD10CM|Type 2 fracture of sacrum, init encntr for open fracture|Type 2 fracture of sacrum, init encntr for open fracture +C2837767|T037|PT|S32.15XB|ICD10CM|Type 2 fracture of sacrum, initial encounter for open fracture|Type 2 fracture of sacrum, initial encounter for open fracture +C2837768|T037|AB|S32.15XD|ICD10CM|Type 2 fracture of sacrum, subs for fx w routn heal|Type 2 fracture of sacrum, subs for fx w routn heal +C2837768|T037|PT|S32.15XD|ICD10CM|Type 2 fracture of sacrum, subsequent encounter for fracture with routine healing|Type 2 fracture of sacrum, subsequent encounter for fracture with routine healing +C2837769|T037|AB|S32.15XG|ICD10CM|Type 2 fracture of sacrum, subs for fx w delay heal|Type 2 fracture of sacrum, subs for fx w delay heal +C2837769|T037|PT|S32.15XG|ICD10CM|Type 2 fracture of sacrum, subsequent encounter for fracture with delayed healing|Type 2 fracture of sacrum, subsequent encounter for fracture with delayed healing +C2837770|T037|AB|S32.15XK|ICD10CM|Type 2 fracture of sacrum, subs for fx w nonunion|Type 2 fracture of sacrum, subs for fx w nonunion +C2837770|T037|PT|S32.15XK|ICD10CM|Type 2 fracture of sacrum, subsequent encounter for fracture with nonunion|Type 2 fracture of sacrum, subsequent encounter for fracture with nonunion +C2837771|T037|AB|S32.15XS|ICD10CM|Type 2 fracture of sacrum, sequela|Type 2 fracture of sacrum, sequela +C2837771|T037|PT|S32.15XS|ICD10CM|Type 2 fracture of sacrum, sequela|Type 2 fracture of sacrum, sequela +C2837772|T037|ET|S32.16|ICD10CM|Transverse extension fracture of sacrum with anterior displacement|Transverse extension fracture of sacrum with anterior displacement +C2837773|T037|HT|S32.16|ICD10CM|Type 3 fracture of sacrum|Type 3 fracture of sacrum +C2837773|T037|AB|S32.16|ICD10CM|Type 3 fracture of sacrum|Type 3 fracture of sacrum +C2837774|T037|AB|S32.16XA|ICD10CM|Type 3 fracture of sacrum, init encntr for closed fracture|Type 3 fracture of sacrum, init encntr for closed fracture +C2837774|T037|PT|S32.16XA|ICD10CM|Type 3 fracture of sacrum, initial encounter for closed fracture|Type 3 fracture of sacrum, initial encounter for closed fracture +C2837775|T037|AB|S32.16XB|ICD10CM|Type 3 fracture of sacrum, init encntr for open fracture|Type 3 fracture of sacrum, init encntr for open fracture +C2837775|T037|PT|S32.16XB|ICD10CM|Type 3 fracture of sacrum, initial encounter for open fracture|Type 3 fracture of sacrum, initial encounter for open fracture +C2837776|T037|AB|S32.16XD|ICD10CM|Type 3 fracture of sacrum, subs for fx w routn heal|Type 3 fracture of sacrum, subs for fx w routn heal +C2837776|T037|PT|S32.16XD|ICD10CM|Type 3 fracture of sacrum, subsequent encounter for fracture with routine healing|Type 3 fracture of sacrum, subsequent encounter for fracture with routine healing +C2837777|T037|AB|S32.16XG|ICD10CM|Type 3 fracture of sacrum, subs for fx w delay heal|Type 3 fracture of sacrum, subs for fx w delay heal +C2837777|T037|PT|S32.16XG|ICD10CM|Type 3 fracture of sacrum, subsequent encounter for fracture with delayed healing|Type 3 fracture of sacrum, subsequent encounter for fracture with delayed healing +C2837778|T037|AB|S32.16XK|ICD10CM|Type 3 fracture of sacrum, subs for fx w nonunion|Type 3 fracture of sacrum, subs for fx w nonunion +C2837778|T037|PT|S32.16XK|ICD10CM|Type 3 fracture of sacrum, subsequent encounter for fracture with nonunion|Type 3 fracture of sacrum, subsequent encounter for fracture with nonunion +C2837779|T037|AB|S32.16XS|ICD10CM|Type 3 fracture of sacrum, sequela|Type 3 fracture of sacrum, sequela +C2837779|T037|PT|S32.16XS|ICD10CM|Type 3 fracture of sacrum, sequela|Type 3 fracture of sacrum, sequela +C2837780|T037|ET|S32.17|ICD10CM|Transverse segmental comminution of upper sacrum|Transverse segmental comminution of upper sacrum +C2837781|T037|HT|S32.17|ICD10CM|Type 4 fracture of sacrum|Type 4 fracture of sacrum +C2837781|T037|AB|S32.17|ICD10CM|Type 4 fracture of sacrum|Type 4 fracture of sacrum +C2837782|T037|AB|S32.17XA|ICD10CM|Type 4 fracture of sacrum, init encntr for closed fracture|Type 4 fracture of sacrum, init encntr for closed fracture +C2837782|T037|PT|S32.17XA|ICD10CM|Type 4 fracture of sacrum, initial encounter for closed fracture|Type 4 fracture of sacrum, initial encounter for closed fracture +C2837783|T037|AB|S32.17XB|ICD10CM|Type 4 fracture of sacrum, init encntr for open fracture|Type 4 fracture of sacrum, init encntr for open fracture +C2837783|T037|PT|S32.17XB|ICD10CM|Type 4 fracture of sacrum, initial encounter for open fracture|Type 4 fracture of sacrum, initial encounter for open fracture +C2837784|T037|AB|S32.17XD|ICD10CM|Type 4 fracture of sacrum, subs for fx w routn heal|Type 4 fracture of sacrum, subs for fx w routn heal +C2837784|T037|PT|S32.17XD|ICD10CM|Type 4 fracture of sacrum, subsequent encounter for fracture with routine healing|Type 4 fracture of sacrum, subsequent encounter for fracture with routine healing +C2837785|T037|AB|S32.17XG|ICD10CM|Type 4 fracture of sacrum, subs for fx w delay heal|Type 4 fracture of sacrum, subs for fx w delay heal +C2837785|T037|PT|S32.17XG|ICD10CM|Type 4 fracture of sacrum, subsequent encounter for fracture with delayed healing|Type 4 fracture of sacrum, subsequent encounter for fracture with delayed healing +C2837786|T037|AB|S32.17XK|ICD10CM|Type 4 fracture of sacrum, subs for fx w nonunion|Type 4 fracture of sacrum, subs for fx w nonunion +C2837786|T037|PT|S32.17XK|ICD10CM|Type 4 fracture of sacrum, subsequent encounter for fracture with nonunion|Type 4 fracture of sacrum, subsequent encounter for fracture with nonunion +C2837787|T037|AB|S32.17XS|ICD10CM|Type 4 fracture of sacrum, sequela|Type 4 fracture of sacrum, sequela +C2837787|T037|PT|S32.17XS|ICD10CM|Type 4 fracture of sacrum, sequela|Type 4 fracture of sacrum, sequela +C2837788|T037|AB|S32.19|ICD10CM|Other fracture of sacrum|Other fracture of sacrum +C2837788|T037|HT|S32.19|ICD10CM|Other fracture of sacrum|Other fracture of sacrum +C2837789|T037|AB|S32.19XA|ICD10CM|Other fracture of sacrum, init encntr for closed fracture|Other fracture of sacrum, init encntr for closed fracture +C2837789|T037|PT|S32.19XA|ICD10CM|Other fracture of sacrum, initial encounter for closed fracture|Other fracture of sacrum, initial encounter for closed fracture +C2837790|T037|AB|S32.19XB|ICD10CM|Other fracture of sacrum, init encntr for open fracture|Other fracture of sacrum, init encntr for open fracture +C2837790|T037|PT|S32.19XB|ICD10CM|Other fracture of sacrum, initial encounter for open fracture|Other fracture of sacrum, initial encounter for open fracture +C2837791|T037|AB|S32.19XD|ICD10CM|Oth fracture of sacrum, subs for fx w routn heal|Oth fracture of sacrum, subs for fx w routn heal +C2837791|T037|PT|S32.19XD|ICD10CM|Other fracture of sacrum, subsequent encounter for fracture with routine healing|Other fracture of sacrum, subsequent encounter for fracture with routine healing +C2837792|T037|AB|S32.19XG|ICD10CM|Oth fracture of sacrum, subs for fx w delay heal|Oth fracture of sacrum, subs for fx w delay heal +C2837792|T037|PT|S32.19XG|ICD10CM|Other fracture of sacrum, subsequent encounter for fracture with delayed healing|Other fracture of sacrum, subsequent encounter for fracture with delayed healing +C2837793|T037|AB|S32.19XK|ICD10CM|Oth fracture of sacrum, subs encntr for fracture w nonunion|Oth fracture of sacrum, subs encntr for fracture w nonunion +C2837793|T037|PT|S32.19XK|ICD10CM|Other fracture of sacrum, subsequent encounter for fracture with nonunion|Other fracture of sacrum, subsequent encounter for fracture with nonunion +C2837794|T037|PT|S32.19XS|ICD10CM|Other fracture of sacrum, sequela|Other fracture of sacrum, sequela +C2837794|T037|AB|S32.19XS|ICD10CM|Other fracture of sacrum, sequela|Other fracture of sacrum, sequela +C0149860|T037|PT|S32.2|ICD10|Fracture of coccyx|Fracture of coccyx +C0149860|T037|HT|S32.2|ICD10CM|Fracture of coccyx|Fracture of coccyx +C0149860|T037|AB|S32.2|ICD10CM|Fracture of coccyx|Fracture of coccyx +C2837795|T037|AB|S32.2XXA|ICD10CM|Fracture of coccyx, initial encounter for closed fracture|Fracture of coccyx, initial encounter for closed fracture +C2837795|T037|PT|S32.2XXA|ICD10CM|Fracture of coccyx, initial encounter for closed fracture|Fracture of coccyx, initial encounter for closed fracture +C2837796|T037|AB|S32.2XXB|ICD10CM|Fracture of coccyx, initial encounter for open fracture|Fracture of coccyx, initial encounter for open fracture +C2837796|T037|PT|S32.2XXB|ICD10CM|Fracture of coccyx, initial encounter for open fracture|Fracture of coccyx, initial encounter for open fracture +C2837797|T037|AB|S32.2XXD|ICD10CM|Fracture of coccyx, subs for fx w routn heal|Fracture of coccyx, subs for fx w routn heal +C2837797|T037|PT|S32.2XXD|ICD10CM|Fracture of coccyx, subsequent encounter for fracture with routine healing|Fracture of coccyx, subsequent encounter for fracture with routine healing +C2837798|T037|AB|S32.2XXG|ICD10CM|Fracture of coccyx, subs for fx w delay heal|Fracture of coccyx, subs for fx w delay heal +C2837798|T037|PT|S32.2XXG|ICD10CM|Fracture of coccyx, subsequent encounter for fracture with delayed healing|Fracture of coccyx, subsequent encounter for fracture with delayed healing +C2837799|T037|AB|S32.2XXK|ICD10CM|Fracture of coccyx, subs encntr for fracture with nonunion|Fracture of coccyx, subs encntr for fracture with nonunion +C2837799|T037|PT|S32.2XXK|ICD10CM|Fracture of coccyx, subsequent encounter for fracture with nonunion|Fracture of coccyx, subsequent encounter for fracture with nonunion +C2837800|T037|AB|S32.2XXS|ICD10CM|Fracture of coccyx, sequela|Fracture of coccyx, sequela +C2837800|T037|PT|S32.2XXS|ICD10CM|Fracture of coccyx, sequela|Fracture of coccyx, sequela +C0347805|T037|HT|S32.3|ICD10CM|Fracture of ilium|Fracture of ilium +C0347805|T037|AB|S32.3|ICD10CM|Fracture of ilium|Fracture of ilium +C0347805|T037|PT|S32.3|ICD10|Fracture of ilium|Fracture of ilium +C2837801|T037|AB|S32.30|ICD10CM|Unspecified fracture of ilium|Unspecified fracture of ilium +C2837801|T037|HT|S32.30|ICD10CM|Unspecified fracture of ilium|Unspecified fracture of ilium +C2837802|T037|AB|S32.301|ICD10CM|Unspecified fracture of right ilium|Unspecified fracture of right ilium +C2837802|T037|HT|S32.301|ICD10CM|Unspecified fracture of right ilium|Unspecified fracture of right ilium +C2837803|T037|AB|S32.301A|ICD10CM|Unsp fracture of right ilium, init for clos fx|Unsp fracture of right ilium, init for clos fx +C2837803|T037|PT|S32.301A|ICD10CM|Unspecified fracture of right ilium, initial encounter for closed fracture|Unspecified fracture of right ilium, initial encounter for closed fracture +C2837804|T037|AB|S32.301B|ICD10CM|Unsp fracture of right ilium, init encntr for open fracture|Unsp fracture of right ilium, init encntr for open fracture +C2837804|T037|PT|S32.301B|ICD10CM|Unspecified fracture of right ilium, initial encounter for open fracture|Unspecified fracture of right ilium, initial encounter for open fracture +C2837805|T037|AB|S32.301D|ICD10CM|Unsp fracture of right ilium, subs for fx w routn heal|Unsp fracture of right ilium, subs for fx w routn heal +C2837805|T037|PT|S32.301D|ICD10CM|Unspecified fracture of right ilium, subsequent encounter for fracture with routine healing|Unspecified fracture of right ilium, subsequent encounter for fracture with routine healing +C2837806|T037|AB|S32.301G|ICD10CM|Unsp fracture of right ilium, subs for fx w delay heal|Unsp fracture of right ilium, subs for fx w delay heal +C2837806|T037|PT|S32.301G|ICD10CM|Unspecified fracture of right ilium, subsequent encounter for fracture with delayed healing|Unspecified fracture of right ilium, subsequent encounter for fracture with delayed healing +C2837807|T037|AB|S32.301K|ICD10CM|Unsp fracture of right ilium, subs for fx w nonunion|Unsp fracture of right ilium, subs for fx w nonunion +C2837807|T037|PT|S32.301K|ICD10CM|Unspecified fracture of right ilium, subsequent encounter for fracture with nonunion|Unspecified fracture of right ilium, subsequent encounter for fracture with nonunion +C2837808|T037|PT|S32.301S|ICD10CM|Unspecified fracture of right ilium, sequela|Unspecified fracture of right ilium, sequela +C2837808|T037|AB|S32.301S|ICD10CM|Unspecified fracture of right ilium, sequela|Unspecified fracture of right ilium, sequela +C2837809|T037|AB|S32.302|ICD10CM|Unspecified fracture of left ilium|Unspecified fracture of left ilium +C2837809|T037|HT|S32.302|ICD10CM|Unspecified fracture of left ilium|Unspecified fracture of left ilium +C2837810|T037|AB|S32.302A|ICD10CM|Unsp fracture of left ilium, init encntr for closed fracture|Unsp fracture of left ilium, init encntr for closed fracture +C2837810|T037|PT|S32.302A|ICD10CM|Unspecified fracture of left ilium, initial encounter for closed fracture|Unspecified fracture of left ilium, initial encounter for closed fracture +C2837811|T037|AB|S32.302B|ICD10CM|Unsp fracture of left ilium, init encntr for open fracture|Unsp fracture of left ilium, init encntr for open fracture +C2837811|T037|PT|S32.302B|ICD10CM|Unspecified fracture of left ilium, initial encounter for open fracture|Unspecified fracture of left ilium, initial encounter for open fracture +C2837812|T037|AB|S32.302D|ICD10CM|Unsp fracture of left ilium, subs for fx w routn heal|Unsp fracture of left ilium, subs for fx w routn heal +C2837812|T037|PT|S32.302D|ICD10CM|Unspecified fracture of left ilium, subsequent encounter for fracture with routine healing|Unspecified fracture of left ilium, subsequent encounter for fracture with routine healing +C2837813|T037|AB|S32.302G|ICD10CM|Unsp fracture of left ilium, subs for fx w delay heal|Unsp fracture of left ilium, subs for fx w delay heal +C2837813|T037|PT|S32.302G|ICD10CM|Unspecified fracture of left ilium, subsequent encounter for fracture with delayed healing|Unspecified fracture of left ilium, subsequent encounter for fracture with delayed healing +C2837814|T037|AB|S32.302K|ICD10CM|Unsp fracture of left ilium, subs for fx w nonunion|Unsp fracture of left ilium, subs for fx w nonunion +C2837814|T037|PT|S32.302K|ICD10CM|Unspecified fracture of left ilium, subsequent encounter for fracture with nonunion|Unspecified fracture of left ilium, subsequent encounter for fracture with nonunion +C2837815|T037|PT|S32.302S|ICD10CM|Unspecified fracture of left ilium, sequela|Unspecified fracture of left ilium, sequela +C2837815|T037|AB|S32.302S|ICD10CM|Unspecified fracture of left ilium, sequela|Unspecified fracture of left ilium, sequela +C2837816|T037|AB|S32.309|ICD10CM|Unspecified fracture of unspecified ilium|Unspecified fracture of unspecified ilium +C2837816|T037|HT|S32.309|ICD10CM|Unspecified fracture of unspecified ilium|Unspecified fracture of unspecified ilium +C2837817|T037|AB|S32.309A|ICD10CM|Unsp fracture of unsp ilium, init encntr for closed fracture|Unsp fracture of unsp ilium, init encntr for closed fracture +C2837817|T037|PT|S32.309A|ICD10CM|Unspecified fracture of unspecified ilium, initial encounter for closed fracture|Unspecified fracture of unspecified ilium, initial encounter for closed fracture +C2837818|T037|AB|S32.309B|ICD10CM|Unsp fracture of unsp ilium, init encntr for open fracture|Unsp fracture of unsp ilium, init encntr for open fracture +C2837818|T037|PT|S32.309B|ICD10CM|Unspecified fracture of unspecified ilium, initial encounter for open fracture|Unspecified fracture of unspecified ilium, initial encounter for open fracture +C2837819|T037|AB|S32.309D|ICD10CM|Unsp fracture of unsp ilium, subs for fx w routn heal|Unsp fracture of unsp ilium, subs for fx w routn heal +C2837819|T037|PT|S32.309D|ICD10CM|Unspecified fracture of unspecified ilium, subsequent encounter for fracture with routine healing|Unspecified fracture of unspecified ilium, subsequent encounter for fracture with routine healing +C2837820|T037|AB|S32.309G|ICD10CM|Unsp fracture of unsp ilium, subs for fx w delay heal|Unsp fracture of unsp ilium, subs for fx w delay heal +C2837820|T037|PT|S32.309G|ICD10CM|Unspecified fracture of unspecified ilium, subsequent encounter for fracture with delayed healing|Unspecified fracture of unspecified ilium, subsequent encounter for fracture with delayed healing +C2837821|T037|AB|S32.309K|ICD10CM|Unsp fracture of unsp ilium, subs for fx w nonunion|Unsp fracture of unsp ilium, subs for fx w nonunion +C2837821|T037|PT|S32.309K|ICD10CM|Unspecified fracture of unspecified ilium, subsequent encounter for fracture with nonunion|Unspecified fracture of unspecified ilium, subsequent encounter for fracture with nonunion +C2837822|T037|PT|S32.309S|ICD10CM|Unspecified fracture of unspecified ilium, sequela|Unspecified fracture of unspecified ilium, sequela +C2837822|T037|AB|S32.309S|ICD10CM|Unspecified fracture of unspecified ilium, sequela|Unspecified fracture of unspecified ilium, sequela +C2837823|T037|HT|S32.31|ICD10CM|Avulsion fracture of ilium|Avulsion fracture of ilium +C2837823|T037|AB|S32.31|ICD10CM|Avulsion fracture of ilium|Avulsion fracture of ilium +C2837824|T037|HT|S32.311|ICD10CM|Displaced avulsion fracture of right ilium|Displaced avulsion fracture of right ilium +C2837824|T037|AB|S32.311|ICD10CM|Displaced avulsion fracture of right ilium|Displaced avulsion fracture of right ilium +C2837825|T037|AB|S32.311A|ICD10CM|Displaced avulsion fracture of right ilium, init for clos fx|Displaced avulsion fracture of right ilium, init for clos fx +C2837825|T037|PT|S32.311A|ICD10CM|Displaced avulsion fracture of right ilium, initial encounter for closed fracture|Displaced avulsion fracture of right ilium, initial encounter for closed fracture +C2837826|T037|AB|S32.311B|ICD10CM|Displaced avulsion fracture of right ilium, init for opn fx|Displaced avulsion fracture of right ilium, init for opn fx +C2837826|T037|PT|S32.311B|ICD10CM|Displaced avulsion fracture of right ilium, initial encounter for open fracture|Displaced avulsion fracture of right ilium, initial encounter for open fracture +C2837827|T037|PT|S32.311D|ICD10CM|Displaced avulsion fracture of right ilium, subsequent encounter for fracture with routine healing|Displaced avulsion fracture of right ilium, subsequent encounter for fracture with routine healing +C2837827|T037|AB|S32.311D|ICD10CM|Displaced avulsion fx right ilium, subs for fx w routn heal|Displaced avulsion fx right ilium, subs for fx w routn heal +C2837828|T037|PT|S32.311G|ICD10CM|Displaced avulsion fracture of right ilium, subsequent encounter for fracture with delayed healing|Displaced avulsion fracture of right ilium, subsequent encounter for fracture with delayed healing +C2837828|T037|AB|S32.311G|ICD10CM|Displaced avulsion fx right ilium, subs for fx w delay heal|Displaced avulsion fx right ilium, subs for fx w delay heal +C2837829|T037|PT|S32.311K|ICD10CM|Displaced avulsion fracture of right ilium, subsequent encounter for fracture with nonunion|Displaced avulsion fracture of right ilium, subsequent encounter for fracture with nonunion +C2837829|T037|AB|S32.311K|ICD10CM|Displaced avulsion fx right ilium, subs for fx w nonunion|Displaced avulsion fx right ilium, subs for fx w nonunion +C2837830|T037|PT|S32.311S|ICD10CM|Displaced avulsion fracture of right ilium, sequela|Displaced avulsion fracture of right ilium, sequela +C2837830|T037|AB|S32.311S|ICD10CM|Displaced avulsion fracture of right ilium, sequela|Displaced avulsion fracture of right ilium, sequela +C2837831|T037|HT|S32.312|ICD10CM|Displaced avulsion fracture of left ilium|Displaced avulsion fracture of left ilium +C2837831|T037|AB|S32.312|ICD10CM|Displaced avulsion fracture of left ilium|Displaced avulsion fracture of left ilium +C2837832|T037|AB|S32.312A|ICD10CM|Displaced avulsion fracture of left ilium, init for clos fx|Displaced avulsion fracture of left ilium, init for clos fx +C2837832|T037|PT|S32.312A|ICD10CM|Displaced avulsion fracture of left ilium, initial encounter for closed fracture|Displaced avulsion fracture of left ilium, initial encounter for closed fracture +C2837833|T037|AB|S32.312B|ICD10CM|Displaced avulsion fracture of left ilium, init for opn fx|Displaced avulsion fracture of left ilium, init for opn fx +C2837833|T037|PT|S32.312B|ICD10CM|Displaced avulsion fracture of left ilium, initial encounter for open fracture|Displaced avulsion fracture of left ilium, initial encounter for open fracture +C2837834|T037|PT|S32.312D|ICD10CM|Displaced avulsion fracture of left ilium, subsequent encounter for fracture with routine healing|Displaced avulsion fracture of left ilium, subsequent encounter for fracture with routine healing +C2837834|T037|AB|S32.312D|ICD10CM|Displaced avulsion fx left ilium, subs for fx w routn heal|Displaced avulsion fx left ilium, subs for fx w routn heal +C2837835|T037|PT|S32.312G|ICD10CM|Displaced avulsion fracture of left ilium, subsequent encounter for fracture with delayed healing|Displaced avulsion fracture of left ilium, subsequent encounter for fracture with delayed healing +C2837835|T037|AB|S32.312G|ICD10CM|Displaced avulsion fx left ilium, subs for fx w delay heal|Displaced avulsion fx left ilium, subs for fx w delay heal +C2837836|T037|PT|S32.312K|ICD10CM|Displaced avulsion fracture of left ilium, subsequent encounter for fracture with nonunion|Displaced avulsion fracture of left ilium, subsequent encounter for fracture with nonunion +C2837836|T037|AB|S32.312K|ICD10CM|Displaced avulsion fx left ilium, subs for fx w nonunion|Displaced avulsion fx left ilium, subs for fx w nonunion +C2837837|T037|PT|S32.312S|ICD10CM|Displaced avulsion fracture of left ilium, sequela|Displaced avulsion fracture of left ilium, sequela +C2837837|T037|AB|S32.312S|ICD10CM|Displaced avulsion fracture of left ilium, sequela|Displaced avulsion fracture of left ilium, sequela +C2837838|T037|AB|S32.313|ICD10CM|Displaced avulsion fracture of unspecified ilium|Displaced avulsion fracture of unspecified ilium +C2837838|T037|HT|S32.313|ICD10CM|Displaced avulsion fracture of unspecified ilium|Displaced avulsion fracture of unspecified ilium +C2837839|T037|AB|S32.313A|ICD10CM|Displaced avulsion fracture of unsp ilium, init for clos fx|Displaced avulsion fracture of unsp ilium, init for clos fx +C2837839|T037|PT|S32.313A|ICD10CM|Displaced avulsion fracture of unspecified ilium, initial encounter for closed fracture|Displaced avulsion fracture of unspecified ilium, initial encounter for closed fracture +C2837840|T037|AB|S32.313B|ICD10CM|Displaced avulsion fracture of unsp ilium, init for opn fx|Displaced avulsion fracture of unsp ilium, init for opn fx +C2837840|T037|PT|S32.313B|ICD10CM|Displaced avulsion fracture of unspecified ilium, initial encounter for open fracture|Displaced avulsion fracture of unspecified ilium, initial encounter for open fracture +C2837841|T037|AB|S32.313D|ICD10CM|Displaced avulsion fx unsp ilium, subs for fx w routn heal|Displaced avulsion fx unsp ilium, subs for fx w routn heal +C2837842|T037|AB|S32.313G|ICD10CM|Displaced avulsion fx unsp ilium, subs for fx w delay heal|Displaced avulsion fx unsp ilium, subs for fx w delay heal +C2837843|T037|PT|S32.313K|ICD10CM|Displaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with nonunion|Displaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with nonunion +C2837843|T037|AB|S32.313K|ICD10CM|Displaced avulsion fx unsp ilium, subs for fx w nonunion|Displaced avulsion fx unsp ilium, subs for fx w nonunion +C2837844|T037|AB|S32.313S|ICD10CM|Displaced avulsion fracture of unspecified ilium, sequela|Displaced avulsion fracture of unspecified ilium, sequela +C2837844|T037|PT|S32.313S|ICD10CM|Displaced avulsion fracture of unspecified ilium, sequela|Displaced avulsion fracture of unspecified ilium, sequela +C3510010|T037|HT|S32.314|ICD10CM|Nondisplaced avulsion fracture of right ilium|Nondisplaced avulsion fracture of right ilium +C3510010|T037|AB|S32.314|ICD10CM|Nondisplaced avulsion fracture of right ilium|Nondisplaced avulsion fracture of right ilium +C2837846|T037|AB|S32.314A|ICD10CM|Nondisplaced avulsion fracture of right ilium, init|Nondisplaced avulsion fracture of right ilium, init +C2837846|T037|PT|S32.314A|ICD10CM|Nondisplaced avulsion fracture of right ilium, initial encounter for closed fracture|Nondisplaced avulsion fracture of right ilium, initial encounter for closed fracture +C2837847|T037|AB|S32.314B|ICD10CM|Nondisp avulsion fracture of right ilium, init for opn fx|Nondisp avulsion fracture of right ilium, init for opn fx +C2837847|T037|PT|S32.314B|ICD10CM|Nondisplaced avulsion fracture of right ilium, initial encounter for open fracture|Nondisplaced avulsion fracture of right ilium, initial encounter for open fracture +C2837848|T037|AB|S32.314D|ICD10CM|Nondisp avulsion fx right ilium, subs for fx w routn heal|Nondisp avulsion fx right ilium, subs for fx w routn heal +C2837849|T037|AB|S32.314G|ICD10CM|Nondisp avulsion fx right ilium, subs for fx w delay heal|Nondisp avulsion fx right ilium, subs for fx w delay heal +C2837850|T037|AB|S32.314K|ICD10CM|Nondisp avulsion fx right ilium, subs for fx w nonunion|Nondisp avulsion fx right ilium, subs for fx w nonunion +C2837850|T037|PT|S32.314K|ICD10CM|Nondisplaced avulsion fracture of right ilium, subsequent encounter for fracture with nonunion|Nondisplaced avulsion fracture of right ilium, subsequent encounter for fracture with nonunion +C2837851|T037|PT|S32.314S|ICD10CM|Nondisplaced avulsion fracture of right ilium, sequela|Nondisplaced avulsion fracture of right ilium, sequela +C2837851|T037|AB|S32.314S|ICD10CM|Nondisplaced avulsion fracture of right ilium, sequela|Nondisplaced avulsion fracture of right ilium, sequela +C2837852|T037|HT|S32.315|ICD10CM|Nondisplaced avulsion fracture of left ilium|Nondisplaced avulsion fracture of left ilium +C2837852|T037|AB|S32.315|ICD10CM|Nondisplaced avulsion fracture of left ilium|Nondisplaced avulsion fracture of left ilium +C2837853|T037|AB|S32.315A|ICD10CM|Nondisplaced avulsion fracture of left ilium, init|Nondisplaced avulsion fracture of left ilium, init +C2837853|T037|PT|S32.315A|ICD10CM|Nondisplaced avulsion fracture of left ilium, initial encounter for closed fracture|Nondisplaced avulsion fracture of left ilium, initial encounter for closed fracture +C2837854|T037|AB|S32.315B|ICD10CM|Nondisp avulsion fracture of left ilium, init for opn fx|Nondisp avulsion fracture of left ilium, init for opn fx +C2837854|T037|PT|S32.315B|ICD10CM|Nondisplaced avulsion fracture of left ilium, initial encounter for open fracture|Nondisplaced avulsion fracture of left ilium, initial encounter for open fracture +C2837855|T037|AB|S32.315D|ICD10CM|Nondisp avulsion fx left ilium, subs for fx w routn heal|Nondisp avulsion fx left ilium, subs for fx w routn heal +C2837855|T037|PT|S32.315D|ICD10CM|Nondisplaced avulsion fracture of left ilium, subsequent encounter for fracture with routine healing|Nondisplaced avulsion fracture of left ilium, subsequent encounter for fracture with routine healing +C2837856|T037|AB|S32.315G|ICD10CM|Nondisp avulsion fx left ilium, subs for fx w delay heal|Nondisp avulsion fx left ilium, subs for fx w delay heal +C2837856|T037|PT|S32.315G|ICD10CM|Nondisplaced avulsion fracture of left ilium, subsequent encounter for fracture with delayed healing|Nondisplaced avulsion fracture of left ilium, subsequent encounter for fracture with delayed healing +C2837857|T037|AB|S32.315K|ICD10CM|Nondisp avulsion fx left ilium, subs for fx w nonunion|Nondisp avulsion fx left ilium, subs for fx w nonunion +C2837857|T037|PT|S32.315K|ICD10CM|Nondisplaced avulsion fracture of left ilium, subsequent encounter for fracture with nonunion|Nondisplaced avulsion fracture of left ilium, subsequent encounter for fracture with nonunion +C2837858|T037|PT|S32.315S|ICD10CM|Nondisplaced avulsion fracture of left ilium, sequela|Nondisplaced avulsion fracture of left ilium, sequela +C2837858|T037|AB|S32.315S|ICD10CM|Nondisplaced avulsion fracture of left ilium, sequela|Nondisplaced avulsion fracture of left ilium, sequela +C2837859|T037|AB|S32.316|ICD10CM|Nondisplaced avulsion fracture of unspecified ilium|Nondisplaced avulsion fracture of unspecified ilium +C2837859|T037|HT|S32.316|ICD10CM|Nondisplaced avulsion fracture of unspecified ilium|Nondisplaced avulsion fracture of unspecified ilium +C2837860|T037|AB|S32.316A|ICD10CM|Nondisplaced avulsion fracture of unsp ilium, init|Nondisplaced avulsion fracture of unsp ilium, init +C2837860|T037|PT|S32.316A|ICD10CM|Nondisplaced avulsion fracture of unspecified ilium, initial encounter for closed fracture|Nondisplaced avulsion fracture of unspecified ilium, initial encounter for closed fracture +C2837861|T037|AB|S32.316B|ICD10CM|Nondisp avulsion fracture of unsp ilium, init for opn fx|Nondisp avulsion fracture of unsp ilium, init for opn fx +C2837861|T037|PT|S32.316B|ICD10CM|Nondisplaced avulsion fracture of unspecified ilium, initial encounter for open fracture|Nondisplaced avulsion fracture of unspecified ilium, initial encounter for open fracture +C2837862|T037|AB|S32.316D|ICD10CM|Nondisp avulsion fx unsp ilium, subs for fx w routn heal|Nondisp avulsion fx unsp ilium, subs for fx w routn heal +C2837863|T037|AB|S32.316G|ICD10CM|Nondisp avulsion fx unsp ilium, subs for fx w delay heal|Nondisp avulsion fx unsp ilium, subs for fx w delay heal +C2837864|T037|AB|S32.316K|ICD10CM|Nondisp avulsion fx unsp ilium, subs for fx w nonunion|Nondisp avulsion fx unsp ilium, subs for fx w nonunion +C2837864|T037|PT|S32.316K|ICD10CM|Nondisplaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with nonunion|Nondisplaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with nonunion +C2837865|T037|AB|S32.316S|ICD10CM|Nondisplaced avulsion fracture of unspecified ilium, sequela|Nondisplaced avulsion fracture of unspecified ilium, sequela +C2837865|T037|PT|S32.316S|ICD10CM|Nondisplaced avulsion fracture of unspecified ilium, sequela|Nondisplaced avulsion fracture of unspecified ilium, sequela +C2837866|T037|AB|S32.39|ICD10CM|Other fracture of ilium|Other fracture of ilium +C2837866|T037|HT|S32.39|ICD10CM|Other fracture of ilium|Other fracture of ilium +C2837867|T037|AB|S32.391|ICD10CM|Other fracture of right ilium|Other fracture of right ilium +C2837867|T037|HT|S32.391|ICD10CM|Other fracture of right ilium|Other fracture of right ilium +C2837868|T037|AB|S32.391A|ICD10CM|Oth fracture of right ilium, init encntr for closed fracture|Oth fracture of right ilium, init encntr for closed fracture +C2837868|T037|PT|S32.391A|ICD10CM|Other fracture of right ilium, initial encounter for closed fracture|Other fracture of right ilium, initial encounter for closed fracture +C2837869|T037|AB|S32.391B|ICD10CM|Other fracture of right ilium, init encntr for open fracture|Other fracture of right ilium, init encntr for open fracture +C2837869|T037|PT|S32.391B|ICD10CM|Other fracture of right ilium, initial encounter for open fracture|Other fracture of right ilium, initial encounter for open fracture +C2837870|T037|AB|S32.391D|ICD10CM|Oth fracture of right ilium, subs for fx w routn heal|Oth fracture of right ilium, subs for fx w routn heal +C2837870|T037|PT|S32.391D|ICD10CM|Other fracture of right ilium, subsequent encounter for fracture with routine healing|Other fracture of right ilium, subsequent encounter for fracture with routine healing +C2837871|T037|AB|S32.391G|ICD10CM|Oth fracture of right ilium, subs for fx w delay heal|Oth fracture of right ilium, subs for fx w delay heal +C2837871|T037|PT|S32.391G|ICD10CM|Other fracture of right ilium, subsequent encounter for fracture with delayed healing|Other fracture of right ilium, subsequent encounter for fracture with delayed healing +C2837872|T037|AB|S32.391K|ICD10CM|Oth fracture of right ilium, subs for fx w nonunion|Oth fracture of right ilium, subs for fx w nonunion +C2837872|T037|PT|S32.391K|ICD10CM|Other fracture of right ilium, subsequent encounter for fracture with nonunion|Other fracture of right ilium, subsequent encounter for fracture with nonunion +C2837873|T037|PT|S32.391S|ICD10CM|Other fracture of right ilium, sequela|Other fracture of right ilium, sequela +C2837873|T037|AB|S32.391S|ICD10CM|Other fracture of right ilium, sequela|Other fracture of right ilium, sequela +C2837874|T037|AB|S32.392|ICD10CM|Other fracture of left ilium|Other fracture of left ilium +C2837874|T037|HT|S32.392|ICD10CM|Other fracture of left ilium|Other fracture of left ilium +C2837875|T037|AB|S32.392A|ICD10CM|Oth fracture of left ilium, init encntr for closed fracture|Oth fracture of left ilium, init encntr for closed fracture +C2837875|T037|PT|S32.392A|ICD10CM|Other fracture of left ilium, initial encounter for closed fracture|Other fracture of left ilium, initial encounter for closed fracture +C2837876|T037|AB|S32.392B|ICD10CM|Other fracture of left ilium, init encntr for open fracture|Other fracture of left ilium, init encntr for open fracture +C2837876|T037|PT|S32.392B|ICD10CM|Other fracture of left ilium, initial encounter for open fracture|Other fracture of left ilium, initial encounter for open fracture +C2837877|T037|AB|S32.392D|ICD10CM|Oth fracture of left ilium, subs for fx w routn heal|Oth fracture of left ilium, subs for fx w routn heal +C2837877|T037|PT|S32.392D|ICD10CM|Other fracture of left ilium, subsequent encounter for fracture with routine healing|Other fracture of left ilium, subsequent encounter for fracture with routine healing +C2837878|T037|AB|S32.392G|ICD10CM|Oth fracture of left ilium, subs for fx w delay heal|Oth fracture of left ilium, subs for fx w delay heal +C2837878|T037|PT|S32.392G|ICD10CM|Other fracture of left ilium, subsequent encounter for fracture with delayed healing|Other fracture of left ilium, subsequent encounter for fracture with delayed healing +C2837879|T037|AB|S32.392K|ICD10CM|Oth fracture of left ilium, subs for fx w nonunion|Oth fracture of left ilium, subs for fx w nonunion +C2837879|T037|PT|S32.392K|ICD10CM|Other fracture of left ilium, subsequent encounter for fracture with nonunion|Other fracture of left ilium, subsequent encounter for fracture with nonunion +C2837880|T037|PT|S32.392S|ICD10CM|Other fracture of left ilium, sequela|Other fracture of left ilium, sequela +C2837880|T037|AB|S32.392S|ICD10CM|Other fracture of left ilium, sequela|Other fracture of left ilium, sequela +C2837881|T037|AB|S32.399|ICD10CM|Other fracture of unspecified ilium|Other fracture of unspecified ilium +C2837881|T037|HT|S32.399|ICD10CM|Other fracture of unspecified ilium|Other fracture of unspecified ilium +C2837882|T037|AB|S32.399A|ICD10CM|Oth fracture of unsp ilium, init encntr for closed fracture|Oth fracture of unsp ilium, init encntr for closed fracture +C2837882|T037|PT|S32.399A|ICD10CM|Other fracture of unspecified ilium, initial encounter for closed fracture|Other fracture of unspecified ilium, initial encounter for closed fracture +C2837883|T037|AB|S32.399B|ICD10CM|Other fracture of unsp ilium, init encntr for open fracture|Other fracture of unsp ilium, init encntr for open fracture +C2837883|T037|PT|S32.399B|ICD10CM|Other fracture of unspecified ilium, initial encounter for open fracture|Other fracture of unspecified ilium, initial encounter for open fracture +C2837884|T037|AB|S32.399D|ICD10CM|Oth fracture of unsp ilium, subs for fx w routn heal|Oth fracture of unsp ilium, subs for fx w routn heal +C2837884|T037|PT|S32.399D|ICD10CM|Other fracture of unspecified ilium, subsequent encounter for fracture with routine healing|Other fracture of unspecified ilium, subsequent encounter for fracture with routine healing +C2837885|T037|AB|S32.399G|ICD10CM|Oth fracture of unsp ilium, subs for fx w delay heal|Oth fracture of unsp ilium, subs for fx w delay heal +C2837885|T037|PT|S32.399G|ICD10CM|Other fracture of unspecified ilium, subsequent encounter for fracture with delayed healing|Other fracture of unspecified ilium, subsequent encounter for fracture with delayed healing +C2837886|T037|AB|S32.399K|ICD10CM|Oth fracture of unsp ilium, subs for fx w nonunion|Oth fracture of unsp ilium, subs for fx w nonunion +C2837886|T037|PT|S32.399K|ICD10CM|Other fracture of unspecified ilium, subsequent encounter for fracture with nonunion|Other fracture of unspecified ilium, subsequent encounter for fracture with nonunion +C2837887|T037|PT|S32.399S|ICD10CM|Other fracture of unspecified ilium, sequela|Other fracture of unspecified ilium, sequela +C2837887|T037|AB|S32.399S|ICD10CM|Other fracture of unspecified ilium, sequela|Other fracture of unspecified ilium, sequela +C0347804|T037|PT|S32.4|ICD10|Fracture of acetabulum|Fracture of acetabulum +C0347804|T037|HT|S32.4|ICD10CM|Fracture of acetabulum|Fracture of acetabulum +C0347804|T037|AB|S32.4|ICD10CM|Fracture of acetabulum|Fracture of acetabulum +C2837888|T037|AB|S32.40|ICD10CM|Unspecified fracture of acetabulum|Unspecified fracture of acetabulum +C2837888|T037|HT|S32.40|ICD10CM|Unspecified fracture of acetabulum|Unspecified fracture of acetabulum +C2837889|T037|AB|S32.401|ICD10CM|Unspecified fracture of right acetabulum|Unspecified fracture of right acetabulum +C2837889|T037|HT|S32.401|ICD10CM|Unspecified fracture of right acetabulum|Unspecified fracture of right acetabulum +C2837890|T037|AB|S32.401A|ICD10CM|Unsp fracture of right acetabulum, init for clos fx|Unsp fracture of right acetabulum, init for clos fx +C2837890|T037|PT|S32.401A|ICD10CM|Unspecified fracture of right acetabulum, initial encounter for closed fracture|Unspecified fracture of right acetabulum, initial encounter for closed fracture +C2837891|T037|AB|S32.401B|ICD10CM|Unsp fracture of right acetabulum, init for opn fx|Unsp fracture of right acetabulum, init for opn fx +C2837891|T037|PT|S32.401B|ICD10CM|Unspecified fracture of right acetabulum, initial encounter for open fracture|Unspecified fracture of right acetabulum, initial encounter for open fracture +C2837892|T037|AB|S32.401D|ICD10CM|Unsp fracture of right acetabulum, subs for fx w routn heal|Unsp fracture of right acetabulum, subs for fx w routn heal +C2837892|T037|PT|S32.401D|ICD10CM|Unspecified fracture of right acetabulum, subsequent encounter for fracture with routine healing|Unspecified fracture of right acetabulum, subsequent encounter for fracture with routine healing +C2837893|T037|AB|S32.401G|ICD10CM|Unsp fracture of right acetabulum, subs for fx w delay heal|Unsp fracture of right acetabulum, subs for fx w delay heal +C2837893|T037|PT|S32.401G|ICD10CM|Unspecified fracture of right acetabulum, subsequent encounter for fracture with delayed healing|Unspecified fracture of right acetabulum, subsequent encounter for fracture with delayed healing +C2837894|T037|AB|S32.401K|ICD10CM|Unsp fracture of right acetabulum, subs for fx w nonunion|Unsp fracture of right acetabulum, subs for fx w nonunion +C2837894|T037|PT|S32.401K|ICD10CM|Unspecified fracture of right acetabulum, subsequent encounter for fracture with nonunion|Unspecified fracture of right acetabulum, subsequent encounter for fracture with nonunion +C2837895|T037|AB|S32.401S|ICD10CM|Unspecified fracture of right acetabulum, sequela|Unspecified fracture of right acetabulum, sequela +C2837895|T037|PT|S32.401S|ICD10CM|Unspecified fracture of right acetabulum, sequela|Unspecified fracture of right acetabulum, sequela +C2837896|T037|AB|S32.402|ICD10CM|Unspecified fracture of left acetabulum|Unspecified fracture of left acetabulum +C2837896|T037|HT|S32.402|ICD10CM|Unspecified fracture of left acetabulum|Unspecified fracture of left acetabulum +C2837897|T037|AB|S32.402A|ICD10CM|Unsp fracture of left acetabulum, init for clos fx|Unsp fracture of left acetabulum, init for clos fx +C2837897|T037|PT|S32.402A|ICD10CM|Unspecified fracture of left acetabulum, initial encounter for closed fracture|Unspecified fracture of left acetabulum, initial encounter for closed fracture +C2837898|T037|AB|S32.402B|ICD10CM|Unsp fracture of left acetabulum, init for opn fx|Unsp fracture of left acetabulum, init for opn fx +C2837898|T037|PT|S32.402B|ICD10CM|Unspecified fracture of left acetabulum, initial encounter for open fracture|Unspecified fracture of left acetabulum, initial encounter for open fracture +C2837899|T037|AB|S32.402D|ICD10CM|Unsp fracture of left acetabulum, subs for fx w routn heal|Unsp fracture of left acetabulum, subs for fx w routn heal +C2837899|T037|PT|S32.402D|ICD10CM|Unspecified fracture of left acetabulum, subsequent encounter for fracture with routine healing|Unspecified fracture of left acetabulum, subsequent encounter for fracture with routine healing +C2837900|T037|AB|S32.402G|ICD10CM|Unsp fracture of left acetabulum, subs for fx w delay heal|Unsp fracture of left acetabulum, subs for fx w delay heal +C2837900|T037|PT|S32.402G|ICD10CM|Unspecified fracture of left acetabulum, subsequent encounter for fracture with delayed healing|Unspecified fracture of left acetabulum, subsequent encounter for fracture with delayed healing +C2837901|T037|AB|S32.402K|ICD10CM|Unsp fracture of left acetabulum, subs for fx w nonunion|Unsp fracture of left acetabulum, subs for fx w nonunion +C2837901|T037|PT|S32.402K|ICD10CM|Unspecified fracture of left acetabulum, subsequent encounter for fracture with nonunion|Unspecified fracture of left acetabulum, subsequent encounter for fracture with nonunion +C2837902|T037|AB|S32.402S|ICD10CM|Unspecified fracture of left acetabulum, sequela|Unspecified fracture of left acetabulum, sequela +C2837902|T037|PT|S32.402S|ICD10CM|Unspecified fracture of left acetabulum, sequela|Unspecified fracture of left acetabulum, sequela +C2837903|T037|AB|S32.409|ICD10CM|Unspecified fracture of unspecified acetabulum|Unspecified fracture of unspecified acetabulum +C2837903|T037|HT|S32.409|ICD10CM|Unspecified fracture of unspecified acetabulum|Unspecified fracture of unspecified acetabulum +C2837904|T037|AB|S32.409A|ICD10CM|Unsp fracture of unsp acetabulum, init for clos fx|Unsp fracture of unsp acetabulum, init for clos fx +C2837904|T037|PT|S32.409A|ICD10CM|Unspecified fracture of unspecified acetabulum, initial encounter for closed fracture|Unspecified fracture of unspecified acetabulum, initial encounter for closed fracture +C2837905|T037|AB|S32.409B|ICD10CM|Unsp fracture of unsp acetabulum, init for opn fx|Unsp fracture of unsp acetabulum, init for opn fx +C2837905|T037|PT|S32.409B|ICD10CM|Unspecified fracture of unspecified acetabulum, initial encounter for open fracture|Unspecified fracture of unspecified acetabulum, initial encounter for open fracture +C2837906|T037|AB|S32.409D|ICD10CM|Unsp fracture of unsp acetabulum, subs for fx w routn heal|Unsp fracture of unsp acetabulum, subs for fx w routn heal +C2837907|T037|AB|S32.409G|ICD10CM|Unsp fracture of unsp acetabulum, subs for fx w delay heal|Unsp fracture of unsp acetabulum, subs for fx w delay heal +C2837908|T037|AB|S32.409K|ICD10CM|Unsp fracture of unsp acetabulum, subs for fx w nonunion|Unsp fracture of unsp acetabulum, subs for fx w nonunion +C2837908|T037|PT|S32.409K|ICD10CM|Unspecified fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion|Unspecified fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion +C2837909|T037|AB|S32.409S|ICD10CM|Unspecified fracture of unspecified acetabulum, sequela|Unspecified fracture of unspecified acetabulum, sequela +C2837909|T037|PT|S32.409S|ICD10CM|Unspecified fracture of unspecified acetabulum, sequela|Unspecified fracture of unspecified acetabulum, sequela +C2837910|T037|HT|S32.41|ICD10CM|Fracture of anterior wall of acetabulum|Fracture of anterior wall of acetabulum +C2837910|T037|AB|S32.41|ICD10CM|Fracture of anterior wall of acetabulum|Fracture of anterior wall of acetabulum +C2837911|T037|HT|S32.411|ICD10CM|Displaced fracture of anterior wall of right acetabulum|Displaced fracture of anterior wall of right acetabulum +C2837911|T037|AB|S32.411|ICD10CM|Displaced fracture of anterior wall of right acetabulum|Displaced fracture of anterior wall of right acetabulum +C2837912|T037|AB|S32.411A|ICD10CM|Disp fx of anterior wall of right acetabulum, init|Disp fx of anterior wall of right acetabulum, init +C2837912|T037|PT|S32.411A|ICD10CM|Displaced fracture of anterior wall of right acetabulum, initial encounter for closed fracture|Displaced fracture of anterior wall of right acetabulum, initial encounter for closed fracture +C2837913|T037|AB|S32.411B|ICD10CM|Disp fx of anterior wall of right acetab, init for opn fx|Disp fx of anterior wall of right acetab, init for opn fx +C2837913|T037|PT|S32.411B|ICD10CM|Displaced fracture of anterior wall of right acetabulum, initial encounter for open fracture|Displaced fracture of anterior wall of right acetabulum, initial encounter for open fracture +C2837914|T037|AB|S32.411D|ICD10CM|Disp fx of ant wall of r acetab, subs for fx w routn heal|Disp fx of ant wall of r acetab, subs for fx w routn heal +C2837915|T037|AB|S32.411G|ICD10CM|Disp fx of ant wall of r acetab, subs for fx w delay heal|Disp fx of ant wall of r acetab, subs for fx w delay heal +C2837916|T037|AB|S32.411K|ICD10CM|Disp fx of ant wall of right acetab, subs for fx w nonunion|Disp fx of ant wall of right acetab, subs for fx w nonunion +C2837917|T037|AB|S32.411S|ICD10CM|Disp fx of anterior wall of right acetabulum, sequela|Disp fx of anterior wall of right acetabulum, sequela +C2837917|T037|PT|S32.411S|ICD10CM|Displaced fracture of anterior wall of right acetabulum, sequela|Displaced fracture of anterior wall of right acetabulum, sequela +C2837918|T037|HT|S32.412|ICD10CM|Displaced fracture of anterior wall of left acetabulum|Displaced fracture of anterior wall of left acetabulum +C2837918|T037|AB|S32.412|ICD10CM|Displaced fracture of anterior wall of left acetabulum|Displaced fracture of anterior wall of left acetabulum +C2837919|T037|AB|S32.412A|ICD10CM|Disp fx of anterior wall of left acetabulum, init|Disp fx of anterior wall of left acetabulum, init +C2837919|T037|PT|S32.412A|ICD10CM|Displaced fracture of anterior wall of left acetabulum, initial encounter for closed fracture|Displaced fracture of anterior wall of left acetabulum, initial encounter for closed fracture +C2837920|T037|AB|S32.412B|ICD10CM|Disp fx of anterior wall of left acetabulum, init for opn fx|Disp fx of anterior wall of left acetabulum, init for opn fx +C2837920|T037|PT|S32.412B|ICD10CM|Displaced fracture of anterior wall of left acetabulum, initial encounter for open fracture|Displaced fracture of anterior wall of left acetabulum, initial encounter for open fracture +C2837921|T037|AB|S32.412D|ICD10CM|Disp fx of ant wall of left acetab, subs for fx w routn heal|Disp fx of ant wall of left acetab, subs for fx w routn heal +C2837922|T037|AB|S32.412G|ICD10CM|Disp fx of ant wall of left acetab, subs for fx w delay heal|Disp fx of ant wall of left acetab, subs for fx w delay heal +C2837923|T037|AB|S32.412K|ICD10CM|Disp fx of ant wall of left acetab, subs for fx w nonunion|Disp fx of ant wall of left acetab, subs for fx w nonunion +C2837924|T037|AB|S32.412S|ICD10CM|Disp fx of anterior wall of left acetabulum, sequela|Disp fx of anterior wall of left acetabulum, sequela +C2837924|T037|PT|S32.412S|ICD10CM|Displaced fracture of anterior wall of left acetabulum, sequela|Displaced fracture of anterior wall of left acetabulum, sequela +C2837925|T037|AB|S32.413|ICD10CM|Disp fx of anterior wall of unspecified acetabulum|Disp fx of anterior wall of unspecified acetabulum +C2837925|T037|HT|S32.413|ICD10CM|Displaced fracture of anterior wall of unspecified acetabulum|Displaced fracture of anterior wall of unspecified acetabulum +C2837926|T037|AB|S32.413A|ICD10CM|Disp fx of anterior wall of unsp acetabulum, init|Disp fx of anterior wall of unsp acetabulum, init +C2837926|T037|PT|S32.413A|ICD10CM|Displaced fracture of anterior wall of unspecified acetabulum, initial encounter for closed fracture|Displaced fracture of anterior wall of unspecified acetabulum, initial encounter for closed fracture +C2838022|T037|AB|S32.413B|ICD10CM|Disp fx of anterior wall of unsp acetabulum, init for opn fx|Disp fx of anterior wall of unsp acetabulum, init for opn fx +C2838022|T037|PT|S32.413B|ICD10CM|Displaced fracture of anterior wall of unspecified acetabulum, initial encounter for open fracture|Displaced fracture of anterior wall of unspecified acetabulum, initial encounter for open fracture +C2838023|T037|AB|S32.413D|ICD10CM|Disp fx of ant wall of unsp acetab, subs for fx w routn heal|Disp fx of ant wall of unsp acetab, subs for fx w routn heal +C2838024|T037|AB|S32.413G|ICD10CM|Disp fx of ant wall of unsp acetab, subs for fx w delay heal|Disp fx of ant wall of unsp acetab, subs for fx w delay heal +C2838025|T037|AB|S32.413K|ICD10CM|Disp fx of ant wall of unsp acetab, subs for fx w nonunion|Disp fx of ant wall of unsp acetab, subs for fx w nonunion +C2838026|T037|AB|S32.413S|ICD10CM|Disp fx of anterior wall of unspecified acetabulum, sequela|Disp fx of anterior wall of unspecified acetabulum, sequela +C2838026|T037|PT|S32.413S|ICD10CM|Displaced fracture of anterior wall of unspecified acetabulum, sequela|Displaced fracture of anterior wall of unspecified acetabulum, sequela +C2838027|T037|HT|S32.414|ICD10CM|Nondisplaced fracture of anterior wall of right acetabulum|Nondisplaced fracture of anterior wall of right acetabulum +C2838027|T037|AB|S32.414|ICD10CM|Nondisplaced fracture of anterior wall of right acetabulum|Nondisplaced fracture of anterior wall of right acetabulum +C2838028|T037|AB|S32.414A|ICD10CM|Nondisp fx of anterior wall of right acetabulum, init|Nondisp fx of anterior wall of right acetabulum, init +C2838028|T037|PT|S32.414A|ICD10CM|Nondisplaced fracture of anterior wall of right acetabulum, initial encounter for closed fracture|Nondisplaced fracture of anterior wall of right acetabulum, initial encounter for closed fracture +C2838029|T037|AB|S32.414B|ICD10CM|Nondisp fx of anterior wall of right acetab, init for opn fx|Nondisp fx of anterior wall of right acetab, init for opn fx +C2838029|T037|PT|S32.414B|ICD10CM|Nondisplaced fracture of anterior wall of right acetabulum, initial encounter for open fracture|Nondisplaced fracture of anterior wall of right acetabulum, initial encounter for open fracture +C2838030|T037|AB|S32.414D|ICD10CM|Nondisp fx of ant wall of r acetab, subs for fx w routn heal|Nondisp fx of ant wall of r acetab, subs for fx w routn heal +C2838031|T037|AB|S32.414G|ICD10CM|Nondisp fx of ant wall of r acetab, subs for fx w delay heal|Nondisp fx of ant wall of r acetab, subs for fx w delay heal +C2838032|T037|AB|S32.414K|ICD10CM|Nondisp fx of ant wall of r acetab, subs for fx w nonunion|Nondisp fx of ant wall of r acetab, subs for fx w nonunion +C2838033|T037|AB|S32.414S|ICD10CM|Nondisp fx of anterior wall of right acetabulum, sequela|Nondisp fx of anterior wall of right acetabulum, sequela +C2838033|T037|PT|S32.414S|ICD10CM|Nondisplaced fracture of anterior wall of right acetabulum, sequela|Nondisplaced fracture of anterior wall of right acetabulum, sequela +C2838034|T037|HT|S32.415|ICD10CM|Nondisplaced fracture of anterior wall of left acetabulum|Nondisplaced fracture of anterior wall of left acetabulum +C2838034|T037|AB|S32.415|ICD10CM|Nondisplaced fracture of anterior wall of left acetabulum|Nondisplaced fracture of anterior wall of left acetabulum +C2838035|T037|AB|S32.415A|ICD10CM|Nondisp fx of anterior wall of left acetabulum, init|Nondisp fx of anterior wall of left acetabulum, init +C2838035|T037|PT|S32.415A|ICD10CM|Nondisplaced fracture of anterior wall of left acetabulum, initial encounter for closed fracture|Nondisplaced fracture of anterior wall of left acetabulum, initial encounter for closed fracture +C2838036|T037|AB|S32.415B|ICD10CM|Nondisp fx of anterior wall of left acetab, init for opn fx|Nondisp fx of anterior wall of left acetab, init for opn fx +C2838036|T037|PT|S32.415B|ICD10CM|Nondisplaced fracture of anterior wall of left acetabulum, initial encounter for open fracture|Nondisplaced fracture of anterior wall of left acetabulum, initial encounter for open fracture +C2838037|T037|AB|S32.415D|ICD10CM|Nondisp fx of ant wall of l acetab, subs for fx w routn heal|Nondisp fx of ant wall of l acetab, subs for fx w routn heal +C2838038|T037|AB|S32.415G|ICD10CM|Nondisp fx of ant wall of l acetab, subs for fx w delay heal|Nondisp fx of ant wall of l acetab, subs for fx w delay heal +C2838039|T037|AB|S32.415K|ICD10CM|Nondisp fx of ant wall of l acetab, subs for fx w nonunion|Nondisp fx of ant wall of l acetab, subs for fx w nonunion +C2838040|T037|AB|S32.415S|ICD10CM|Nondisp fx of anterior wall of left acetabulum, sequela|Nondisp fx of anterior wall of left acetabulum, sequela +C2838040|T037|PT|S32.415S|ICD10CM|Nondisplaced fracture of anterior wall of left acetabulum, sequela|Nondisplaced fracture of anterior wall of left acetabulum, sequela +C2838041|T037|AB|S32.416|ICD10CM|Nondisp fx of anterior wall of unspecified acetabulum|Nondisp fx of anterior wall of unspecified acetabulum +C2838041|T037|HT|S32.416|ICD10CM|Nondisplaced fracture of anterior wall of unspecified acetabulum|Nondisplaced fracture of anterior wall of unspecified acetabulum +C2838042|T037|AB|S32.416A|ICD10CM|Nondisp fx of anterior wall of unsp acetabulum, init|Nondisp fx of anterior wall of unsp acetabulum, init +C2838043|T037|AB|S32.416B|ICD10CM|Nondisp fx of anterior wall of unsp acetab, init for opn fx|Nondisp fx of anterior wall of unsp acetab, init for opn fx +C2838044|T037|AB|S32.416D|ICD10CM|Nondisp fx of ant wl of unsp acetab, 7thD|Nondisp fx of ant wl of unsp acetab, 7thD +C2838045|T037|AB|S32.416G|ICD10CM|Nondisp fx of ant wl of unsp acetab, 7thG|Nondisp fx of ant wl of unsp acetab, 7thG +C2838046|T037|AB|S32.416K|ICD10CM|Nondisp fx of ant wl of unsp acetab, subs for fx w nonunion|Nondisp fx of ant wl of unsp acetab, subs for fx w nonunion +C2838047|T037|AB|S32.416S|ICD10CM|Nondisp fx of anterior wall of unsp acetabulum, sequela|Nondisp fx of anterior wall of unsp acetabulum, sequela +C2838047|T037|PT|S32.416S|ICD10CM|Nondisplaced fracture of anterior wall of unspecified acetabulum, sequela|Nondisplaced fracture of anterior wall of unspecified acetabulum, sequela +C2838048|T037|HT|S32.42|ICD10CM|Fracture of posterior wall of acetabulum|Fracture of posterior wall of acetabulum +C2838048|T037|AB|S32.42|ICD10CM|Fracture of posterior wall of acetabulum|Fracture of posterior wall of acetabulum +C2838049|T037|HT|S32.421|ICD10CM|Displaced fracture of posterior wall of right acetabulum|Displaced fracture of posterior wall of right acetabulum +C2838049|T037|AB|S32.421|ICD10CM|Displaced fracture of posterior wall of right acetabulum|Displaced fracture of posterior wall of right acetabulum +C2838050|T037|AB|S32.421A|ICD10CM|Disp fx of posterior wall of right acetabulum, init|Disp fx of posterior wall of right acetabulum, init +C2838050|T037|PT|S32.421A|ICD10CM|Displaced fracture of posterior wall of right acetabulum, initial encounter for closed fracture|Displaced fracture of posterior wall of right acetabulum, initial encounter for closed fracture +C2838051|T037|AB|S32.421B|ICD10CM|Disp fx of posterior wall of right acetab, init for opn fx|Disp fx of posterior wall of right acetab, init for opn fx +C2838051|T037|PT|S32.421B|ICD10CM|Displaced fracture of posterior wall of right acetabulum, initial encounter for open fracture|Displaced fracture of posterior wall of right acetabulum, initial encounter for open fracture +C2838052|T037|AB|S32.421D|ICD10CM|Disp fx of post wall of r acetab, subs for fx w routn heal|Disp fx of post wall of r acetab, subs for fx w routn heal +C2838053|T037|AB|S32.421G|ICD10CM|Disp fx of post wall of r acetab, subs for fx w delay heal|Disp fx of post wall of r acetab, subs for fx w delay heal +C2838054|T037|AB|S32.421K|ICD10CM|Disp fx of post wall of right acetab, subs for fx w nonunion|Disp fx of post wall of right acetab, subs for fx w nonunion +C2838055|T037|AB|S32.421S|ICD10CM|Disp fx of posterior wall of right acetabulum, sequela|Disp fx of posterior wall of right acetabulum, sequela +C2838055|T037|PT|S32.421S|ICD10CM|Displaced fracture of posterior wall of right acetabulum, sequela|Displaced fracture of posterior wall of right acetabulum, sequela +C2838056|T037|HT|S32.422|ICD10CM|Displaced fracture of posterior wall of left acetabulum|Displaced fracture of posterior wall of left acetabulum +C2838056|T037|AB|S32.422|ICD10CM|Displaced fracture of posterior wall of left acetabulum|Displaced fracture of posterior wall of left acetabulum +C2838057|T037|AB|S32.422A|ICD10CM|Disp fx of posterior wall of left acetabulum, init|Disp fx of posterior wall of left acetabulum, init +C2838057|T037|PT|S32.422A|ICD10CM|Displaced fracture of posterior wall of left acetabulum, initial encounter for closed fracture|Displaced fracture of posterior wall of left acetabulum, initial encounter for closed fracture +C2838058|T037|AB|S32.422B|ICD10CM|Disp fx of posterior wall of left acetab, init for opn fx|Disp fx of posterior wall of left acetab, init for opn fx +C2838058|T037|PT|S32.422B|ICD10CM|Displaced fracture of posterior wall of left acetabulum, initial encounter for open fracture|Displaced fracture of posterior wall of left acetabulum, initial encounter for open fracture +C2838059|T037|AB|S32.422D|ICD10CM|Disp fx of post wall of l acetab, subs for fx w routn heal|Disp fx of post wall of l acetab, subs for fx w routn heal +C2838060|T037|AB|S32.422G|ICD10CM|Disp fx of post wall of l acetab, subs for fx w delay heal|Disp fx of post wall of l acetab, subs for fx w delay heal +C2838061|T037|AB|S32.422K|ICD10CM|Disp fx of post wall of left acetab, subs for fx w nonunion|Disp fx of post wall of left acetab, subs for fx w nonunion +C2838062|T037|AB|S32.422S|ICD10CM|Disp fx of posterior wall of left acetabulum, sequela|Disp fx of posterior wall of left acetabulum, sequela +C2838062|T037|PT|S32.422S|ICD10CM|Displaced fracture of posterior wall of left acetabulum, sequela|Displaced fracture of posterior wall of left acetabulum, sequela +C2838063|T037|AB|S32.423|ICD10CM|Disp fx of posterior wall of unspecified acetabulum|Disp fx of posterior wall of unspecified acetabulum +C2838063|T037|HT|S32.423|ICD10CM|Displaced fracture of posterior wall of unspecified acetabulum|Displaced fracture of posterior wall of unspecified acetabulum +C2838064|T037|AB|S32.423A|ICD10CM|Disp fx of posterior wall of unsp acetabulum, init|Disp fx of posterior wall of unsp acetabulum, init +C2838065|T037|AB|S32.423B|ICD10CM|Disp fx of posterior wall of unsp acetab, init for opn fx|Disp fx of posterior wall of unsp acetab, init for opn fx +C2838065|T037|PT|S32.423B|ICD10CM|Displaced fracture of posterior wall of unspecified acetabulum, initial encounter for open fracture|Displaced fracture of posterior wall of unspecified acetabulum, initial encounter for open fracture +C2838066|T037|AB|S32.423D|ICD10CM|Disp fx of post wl of unsp acetab, subs for fx w routn heal|Disp fx of post wl of unsp acetab, subs for fx w routn heal +C2838067|T037|AB|S32.423G|ICD10CM|Disp fx of post wl of unsp acetab, subs for fx w delay heal|Disp fx of post wl of unsp acetab, subs for fx w delay heal +C2838068|T037|AB|S32.423K|ICD10CM|Disp fx of post wall of unsp acetab, subs for fx w nonunion|Disp fx of post wall of unsp acetab, subs for fx w nonunion +C2838069|T037|AB|S32.423S|ICD10CM|Disp fx of posterior wall of unspecified acetabulum, sequela|Disp fx of posterior wall of unspecified acetabulum, sequela +C2838069|T037|PT|S32.423S|ICD10CM|Displaced fracture of posterior wall of unspecified acetabulum, sequela|Displaced fracture of posterior wall of unspecified acetabulum, sequela +C2838070|T037|HT|S32.424|ICD10CM|Nondisplaced fracture of posterior wall of right acetabulum|Nondisplaced fracture of posterior wall of right acetabulum +C2838070|T037|AB|S32.424|ICD10CM|Nondisplaced fracture of posterior wall of right acetabulum|Nondisplaced fracture of posterior wall of right acetabulum +C2838071|T037|AB|S32.424A|ICD10CM|Nondisp fx of posterior wall of right acetabulum, init|Nondisp fx of posterior wall of right acetabulum, init +C2838071|T037|PT|S32.424A|ICD10CM|Nondisplaced fracture of posterior wall of right acetabulum, initial encounter for closed fracture|Nondisplaced fracture of posterior wall of right acetabulum, initial encounter for closed fracture +C2838072|T037|AB|S32.424B|ICD10CM|Nondisp fx of post wall of right acetab, init for opn fx|Nondisp fx of post wall of right acetab, init for opn fx +C2838072|T037|PT|S32.424B|ICD10CM|Nondisplaced fracture of posterior wall of right acetabulum, initial encounter for open fracture|Nondisplaced fracture of posterior wall of right acetabulum, initial encounter for open fracture +C2838073|T037|AB|S32.424D|ICD10CM|Nondisp fx of post wl of r acetab, subs for fx w routn heal|Nondisp fx of post wl of r acetab, subs for fx w routn heal +C2838074|T037|AB|S32.424G|ICD10CM|Nondisp fx of post wl of r acetab, subs for fx w delay heal|Nondisp fx of post wl of r acetab, subs for fx w delay heal +C2838075|T037|AB|S32.424K|ICD10CM|Nondisp fx of post wall of r acetab, subs for fx w nonunion|Nondisp fx of post wall of r acetab, subs for fx w nonunion +C2838076|T037|AB|S32.424S|ICD10CM|Nondisp fx of posterior wall of right acetabulum, sequela|Nondisp fx of posterior wall of right acetabulum, sequela +C2838076|T037|PT|S32.424S|ICD10CM|Nondisplaced fracture of posterior wall of right acetabulum, sequela|Nondisplaced fracture of posterior wall of right acetabulum, sequela +C2838077|T037|HT|S32.425|ICD10CM|Nondisplaced fracture of posterior wall of left acetabulum|Nondisplaced fracture of posterior wall of left acetabulum +C2838077|T037|AB|S32.425|ICD10CM|Nondisplaced fracture of posterior wall of left acetabulum|Nondisplaced fracture of posterior wall of left acetabulum +C2838078|T037|AB|S32.425A|ICD10CM|Nondisp fx of posterior wall of left acetabulum, init|Nondisp fx of posterior wall of left acetabulum, init +C2838078|T037|PT|S32.425A|ICD10CM|Nondisplaced fracture of posterior wall of left acetabulum, initial encounter for closed fracture|Nondisplaced fracture of posterior wall of left acetabulum, initial encounter for closed fracture +C2838079|T037|AB|S32.425B|ICD10CM|Nondisp fx of posterior wall of left acetab, init for opn fx|Nondisp fx of posterior wall of left acetab, init for opn fx +C2838079|T037|PT|S32.425B|ICD10CM|Nondisplaced fracture of posterior wall of left acetabulum, initial encounter for open fracture|Nondisplaced fracture of posterior wall of left acetabulum, initial encounter for open fracture +C2838080|T037|AB|S32.425D|ICD10CM|Nondisp fx of post wl of l acetab, subs for fx w routn heal|Nondisp fx of post wl of l acetab, subs for fx w routn heal +C2838081|T037|AB|S32.425G|ICD10CM|Nondisp fx of post wl of l acetab, subs for fx w delay heal|Nondisp fx of post wl of l acetab, subs for fx w delay heal +C2838082|T037|AB|S32.425K|ICD10CM|Nondisp fx of post wall of l acetab, subs for fx w nonunion|Nondisp fx of post wall of l acetab, subs for fx w nonunion +C2838083|T037|AB|S32.425S|ICD10CM|Nondisp fx of posterior wall of left acetabulum, sequela|Nondisp fx of posterior wall of left acetabulum, sequela +C2838083|T037|PT|S32.425S|ICD10CM|Nondisplaced fracture of posterior wall of left acetabulum, sequela|Nondisplaced fracture of posterior wall of left acetabulum, sequela +C2838084|T037|AB|S32.426|ICD10CM|Nondisp fx of posterior wall of unspecified acetabulum|Nondisp fx of posterior wall of unspecified acetabulum +C2838084|T037|HT|S32.426|ICD10CM|Nondisplaced fracture of posterior wall of unspecified acetabulum|Nondisplaced fracture of posterior wall of unspecified acetabulum +C2838085|T037|AB|S32.426A|ICD10CM|Nondisp fx of posterior wall of unsp acetabulum, init|Nondisp fx of posterior wall of unsp acetabulum, init +C2838086|T037|AB|S32.426B|ICD10CM|Nondisp fx of posterior wall of unsp acetab, init for opn fx|Nondisp fx of posterior wall of unsp acetab, init for opn fx +C2838087|T037|AB|S32.426D|ICD10CM|Nondisp fx of post wl of unsp acetab, 7thD|Nondisp fx of post wl of unsp acetab, 7thD +C2838088|T037|AB|S32.426G|ICD10CM|Nondisp fx of post wl of unsp acetab, 7thG|Nondisp fx of post wl of unsp acetab, 7thG +C2838089|T037|AB|S32.426K|ICD10CM|Nondisp fx of post wl of unsp acetab, subs for fx w nonunion|Nondisp fx of post wl of unsp acetab, subs for fx w nonunion +C2838090|T037|AB|S32.426S|ICD10CM|Nondisp fx of posterior wall of unsp acetabulum, sequela|Nondisp fx of posterior wall of unsp acetabulum, sequela +C2838090|T037|PT|S32.426S|ICD10CM|Nondisplaced fracture of posterior wall of unspecified acetabulum, sequela|Nondisplaced fracture of posterior wall of unspecified acetabulum, sequela +C2838091|T037|AB|S32.43|ICD10CM|Fracture of anterior column [iliopubic] of acetabulum|Fracture of anterior column [iliopubic] of acetabulum +C2838091|T037|HT|S32.43|ICD10CM|Fracture of anterior column [iliopubic] of acetabulum|Fracture of anterior column [iliopubic] of acetabulum +C3509989|T037|HT|S32.431|ICD10CM|Displaced fracture of anterior column [iliopubic] of right acetabulum|Displaced fracture of anterior column [iliopubic] of right acetabulum +C3509989|T037|AB|S32.431|ICD10CM|Displaced fracture of anterior column of right acetabulum|Displaced fracture of anterior column of right acetabulum +C2838093|T037|AB|S32.431A|ICD10CM|Disp fx of anterior column of right acetabulum, init|Disp fx of anterior column of right acetabulum, init +C2838094|T037|AB|S32.431B|ICD10CM|Disp fx of anterior column of right acetab, init for opn fx|Disp fx of anterior column of right acetab, init for opn fx +C2838095|T037|AB|S32.431D|ICD10CM|Disp fx of ant column of r acetab, subs for fx w routn heal|Disp fx of ant column of r acetab, subs for fx w routn heal +C2838096|T037|AB|S32.431G|ICD10CM|Disp fx of ant column of r acetab, subs for fx w delay heal|Disp fx of ant column of r acetab, subs for fx w delay heal +C2838097|T037|AB|S32.431K|ICD10CM|Disp fx of ant column of r acetab, subs for fx w nonunion|Disp fx of ant column of r acetab, subs for fx w nonunion +C2838098|T037|AB|S32.431S|ICD10CM|Disp fx of anterior column of right acetabulum, sequela|Disp fx of anterior column of right acetabulum, sequela +C2838098|T037|PT|S32.431S|ICD10CM|Displaced fracture of anterior column [iliopubic] of right acetabulum, sequela|Displaced fracture of anterior column [iliopubic] of right acetabulum, sequela +C3509990|T037|HT|S32.432|ICD10CM|Displaced fracture of anterior column [iliopubic] of left acetabulum|Displaced fracture of anterior column [iliopubic] of left acetabulum +C3509990|T037|AB|S32.432|ICD10CM|Displaced fracture of anterior column of left acetabulum|Displaced fracture of anterior column of left acetabulum +C2838100|T037|AB|S32.432A|ICD10CM|Disp fx of anterior column of left acetabulum, init|Disp fx of anterior column of left acetabulum, init +C2838101|T037|AB|S32.432B|ICD10CM|Disp fx of anterior column of left acetab, init for opn fx|Disp fx of anterior column of left acetab, init for opn fx +C2838102|T037|AB|S32.432D|ICD10CM|Disp fx of ant column of l acetab, subs for fx w routn heal|Disp fx of ant column of l acetab, subs for fx w routn heal +C2838103|T037|AB|S32.432G|ICD10CM|Disp fx of ant column of l acetab, subs for fx w delay heal|Disp fx of ant column of l acetab, subs for fx w delay heal +C2838104|T037|AB|S32.432K|ICD10CM|Disp fx of ant column of left acetab, subs for fx w nonunion|Disp fx of ant column of left acetab, subs for fx w nonunion +C2838105|T037|AB|S32.432S|ICD10CM|Disp fx of anterior column of left acetabulum, sequela|Disp fx of anterior column of left acetabulum, sequela +C2838105|T037|PT|S32.432S|ICD10CM|Displaced fracture of anterior column [iliopubic] of left acetabulum, sequela|Displaced fracture of anterior column [iliopubic] of left acetabulum, sequela +C2838106|T037|AB|S32.433|ICD10CM|Disp fx of anterior column of unspecified acetabulum|Disp fx of anterior column of unspecified acetabulum +C2838106|T037|HT|S32.433|ICD10CM|Displaced fracture of anterior column [iliopubic] of unspecified acetabulum|Displaced fracture of anterior column [iliopubic] of unspecified acetabulum +C2838107|T037|AB|S32.433A|ICD10CM|Disp fx of anterior column of unsp acetabulum, init|Disp fx of anterior column of unsp acetabulum, init +C2838108|T037|AB|S32.433B|ICD10CM|Disp fx of anterior column of unsp acetab, init for opn fx|Disp fx of anterior column of unsp acetab, init for opn fx +C2838109|T037|AB|S32.433D|ICD10CM|Disp fx of ant column of unsp acetab, 7thD|Disp fx of ant column of unsp acetab, 7thD +C2838110|T037|AB|S32.433G|ICD10CM|Disp fx of ant column of unsp acetab, 7thG|Disp fx of ant column of unsp acetab, 7thG +C2838111|T037|AB|S32.433K|ICD10CM|Disp fx of ant column of unsp acetab, subs for fx w nonunion|Disp fx of ant column of unsp acetab, subs for fx w nonunion +C2838112|T037|AB|S32.433S|ICD10CM|Disp fx of anterior column of unsp acetabulum, sequela|Disp fx of anterior column of unsp acetabulum, sequela +C2838112|T037|PT|S32.433S|ICD10CM|Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, sequela|Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, sequela +C3509986|T037|HT|S32.434|ICD10CM|Nondisplaced fracture of anterior column [iliopubic] of right acetabulum|Nondisplaced fracture of anterior column [iliopubic] of right acetabulum +C3509986|T037|AB|S32.434|ICD10CM|Nondisplaced fracture of anterior column of right acetabulum|Nondisplaced fracture of anterior column of right acetabulum +C2838114|T037|AB|S32.434A|ICD10CM|Nondisp fx of anterior column of right acetabulum, init|Nondisp fx of anterior column of right acetabulum, init +C2838115|T037|AB|S32.434B|ICD10CM|Nondisp fx of ant column of right acetab, init for opn fx|Nondisp fx of ant column of right acetab, init for opn fx +C2838116|T037|AB|S32.434D|ICD10CM|Nondisp fx of ant column of r acetab, 7thD|Nondisp fx of ant column of r acetab, 7thD +C2838117|T037|AB|S32.434G|ICD10CM|Nondisp fx of ant column of r acetab, 7thG|Nondisp fx of ant column of r acetab, 7thG +C2838118|T037|AB|S32.434K|ICD10CM|Nondisp fx of ant column of r acetab, subs for fx w nonunion|Nondisp fx of ant column of r acetab, subs for fx w nonunion +C2838119|T037|AB|S32.434S|ICD10CM|Nondisp fx of anterior column of right acetabulum, sequela|Nondisp fx of anterior column of right acetabulum, sequela +C2838119|T037|PT|S32.434S|ICD10CM|Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, sequela|Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, sequela +C3509987|T037|HT|S32.435|ICD10CM|Nondisplaced fracture of anterior column [iliopubic] of left acetabulum|Nondisplaced fracture of anterior column [iliopubic] of left acetabulum +C3509987|T037|AB|S32.435|ICD10CM|Nondisplaced fracture of anterior column of left acetabulum|Nondisplaced fracture of anterior column of left acetabulum +C2838121|T037|AB|S32.435A|ICD10CM|Nondisp fx of anterior column of left acetabulum, init|Nondisp fx of anterior column of left acetabulum, init +C2838122|T037|AB|S32.435B|ICD10CM|Nondisp fx of ant column of left acetab, init for opn fx|Nondisp fx of ant column of left acetab, init for opn fx +C2838123|T037|AB|S32.435D|ICD10CM|Nondisp fx of ant column of l acetab, 7thD|Nondisp fx of ant column of l acetab, 7thD +C2838124|T037|AB|S32.435G|ICD10CM|Nondisp fx of ant column of l acetab, 7thG|Nondisp fx of ant column of l acetab, 7thG +C2838125|T037|AB|S32.435K|ICD10CM|Nondisp fx of ant column of l acetab, subs for fx w nonunion|Nondisp fx of ant column of l acetab, subs for fx w nonunion +C2838126|T037|AB|S32.435S|ICD10CM|Nondisp fx of anterior column of left acetabulum, sequela|Nondisp fx of anterior column of left acetabulum, sequela +C2838126|T037|PT|S32.435S|ICD10CM|Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, sequela|Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, sequela +C2838127|T037|AB|S32.436|ICD10CM|Nondisp fx of anterior column of unspecified acetabulum|Nondisp fx of anterior column of unspecified acetabulum +C2838127|T037|HT|S32.436|ICD10CM|Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum|Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum +C2838128|T037|AB|S32.436A|ICD10CM|Nondisp fx of anterior column of unsp acetabulum, init|Nondisp fx of anterior column of unsp acetabulum, init +C2838129|T037|AB|S32.436B|ICD10CM|Nondisp fx of ant column of unsp acetab, init for opn fx|Nondisp fx of ant column of unsp acetab, init for opn fx +C2838130|T037|AB|S32.436D|ICD10CM|Nondisp fx of ant column of unsp acetab, 7thD|Nondisp fx of ant column of unsp acetab, 7thD +C2838131|T037|AB|S32.436G|ICD10CM|Nondisp fx of ant column of unsp acetab, 7thG|Nondisp fx of ant column of unsp acetab, 7thG +C2838132|T037|AB|S32.436K|ICD10CM|Nondisp fx of ant column of unsp acetab, 7thK|Nondisp fx of ant column of unsp acetab, 7thK +C2838133|T037|AB|S32.436S|ICD10CM|Nondisp fx of anterior column of unsp acetabulum, sequela|Nondisp fx of anterior column of unsp acetabulum, sequela +C2838133|T037|PT|S32.436S|ICD10CM|Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, sequela|Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, sequela +C2838134|T037|AB|S32.44|ICD10CM|Fracture of posterior column [ilioischial] of acetabulum|Fracture of posterior column [ilioischial] of acetabulum +C2838134|T037|HT|S32.44|ICD10CM|Fracture of posterior column [ilioischial] of acetabulum|Fracture of posterior column [ilioischial] of acetabulum +C3509996|T037|HT|S32.441|ICD10CM|Displaced fracture of posterior column [ilioischial] of right acetabulum|Displaced fracture of posterior column [ilioischial] of right acetabulum +C3509996|T037|AB|S32.441|ICD10CM|Displaced fracture of posterior column of right acetabulum|Displaced fracture of posterior column of right acetabulum +C2838136|T037|AB|S32.441A|ICD10CM|Disp fx of posterior column of right acetabulum, init|Disp fx of posterior column of right acetabulum, init +C2838137|T037|AB|S32.441B|ICD10CM|Disp fx of posterior column of right acetab, init for opn fx|Disp fx of posterior column of right acetab, init for opn fx +C2838138|T037|AB|S32.441D|ICD10CM|Disp fx of post column of r acetab, subs for fx w routn heal|Disp fx of post column of r acetab, subs for fx w routn heal +C2838139|T037|AB|S32.441G|ICD10CM|Disp fx of post column of r acetab, subs for fx w delay heal|Disp fx of post column of r acetab, subs for fx w delay heal +C2838140|T037|AB|S32.441K|ICD10CM|Disp fx of post column of r acetab, subs for fx w nonunion|Disp fx of post column of r acetab, subs for fx w nonunion +C2838141|T037|AB|S32.441S|ICD10CM|Disp fx of posterior column of right acetabulum, sequela|Disp fx of posterior column of right acetabulum, sequela +C2838141|T037|PT|S32.441S|ICD10CM|Displaced fracture of posterior column [ilioischial] of right acetabulum, sequela|Displaced fracture of posterior column [ilioischial] of right acetabulum, sequela +C3509997|T037|HT|S32.442|ICD10CM|Displaced fracture of posterior column [ilioischial] of left acetabulum|Displaced fracture of posterior column [ilioischial] of left acetabulum +C3509997|T037|AB|S32.442|ICD10CM|Displaced fracture of posterior column of left acetabulum|Displaced fracture of posterior column of left acetabulum +C2838143|T037|AB|S32.442A|ICD10CM|Disp fx of posterior column of left acetabulum, init|Disp fx of posterior column of left acetabulum, init +C2838144|T037|AB|S32.442B|ICD10CM|Disp fx of posterior column of left acetab, init for opn fx|Disp fx of posterior column of left acetab, init for opn fx +C2838145|T037|AB|S32.442D|ICD10CM|Disp fx of post column of l acetab, subs for fx w routn heal|Disp fx of post column of l acetab, subs for fx w routn heal +C2838146|T037|AB|S32.442G|ICD10CM|Disp fx of post column of l acetab, subs for fx w delay heal|Disp fx of post column of l acetab, subs for fx w delay heal +C2838147|T037|AB|S32.442K|ICD10CM|Disp fx of post column of l acetab, subs for fx w nonunion|Disp fx of post column of l acetab, subs for fx w nonunion +C2838148|T037|AB|S32.442S|ICD10CM|Disp fx of posterior column of left acetabulum, sequela|Disp fx of posterior column of left acetabulum, sequela +C2838148|T037|PT|S32.442S|ICD10CM|Displaced fracture of posterior column [ilioischial] of left acetabulum, sequela|Displaced fracture of posterior column [ilioischial] of left acetabulum, sequela +C2838149|T037|AB|S32.443|ICD10CM|Disp fx of posterior column of unspecified acetabulum|Disp fx of posterior column of unspecified acetabulum +C2838149|T037|HT|S32.443|ICD10CM|Displaced fracture of posterior column [ilioischial] of unspecified acetabulum|Displaced fracture of posterior column [ilioischial] of unspecified acetabulum +C2838150|T037|AB|S32.443A|ICD10CM|Disp fx of posterior column of unsp acetabulum, init|Disp fx of posterior column of unsp acetabulum, init +C2838151|T037|AB|S32.443B|ICD10CM|Disp fx of posterior column of unsp acetab, init for opn fx|Disp fx of posterior column of unsp acetab, init for opn fx +C2838152|T037|AB|S32.443D|ICD10CM|Disp fx of post column of unsp acetab, 7thD|Disp fx of post column of unsp acetab, 7thD +C2838153|T037|AB|S32.443G|ICD10CM|Disp fx of post column of unsp acetab, 7thG|Disp fx of post column of unsp acetab, 7thG +C2838154|T037|AB|S32.443K|ICD10CM|Disp fx of post column of unsp acetab, 7thK|Disp fx of post column of unsp acetab, 7thK +C2838155|T037|AB|S32.443S|ICD10CM|Disp fx of posterior column of unsp acetabulum, sequela|Disp fx of posterior column of unsp acetabulum, sequela +C2838155|T037|PT|S32.443S|ICD10CM|Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, sequela|Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, sequela +C2838156|T037|AB|S32.444|ICD10CM|Nondisp fx of posterior column of right acetabulum|Nondisp fx of posterior column of right acetabulum +C2838156|T037|HT|S32.444|ICD10CM|Nondisplaced fracture of posterior column [ilioischial] of right acetabulum|Nondisplaced fracture of posterior column [ilioischial] of right acetabulum +C2838157|T037|AB|S32.444A|ICD10CM|Nondisp fx of posterior column of right acetabulum, init|Nondisp fx of posterior column of right acetabulum, init +C2838158|T037|AB|S32.444B|ICD10CM|Nondisp fx of post column of right acetab, init for opn fx|Nondisp fx of post column of right acetab, init for opn fx +C2838159|T037|AB|S32.444D|ICD10CM|Nondisp fx of post column of r acetab, 7thD|Nondisp fx of post column of r acetab, 7thD +C2838160|T037|AB|S32.444G|ICD10CM|Nondisp fx of post column of r acetab, 7thG|Nondisp fx of post column of r acetab, 7thG +C2838161|T037|AB|S32.444K|ICD10CM|Nondisp fx of post column of r acetab, 7thK|Nondisp fx of post column of r acetab, 7thK +C2838162|T037|AB|S32.444S|ICD10CM|Nondisp fx of posterior column of right acetabulum, sequela|Nondisp fx of posterior column of right acetabulum, sequela +C2838162|T037|PT|S32.444S|ICD10CM|Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, sequela|Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, sequela +C3509994|T037|HT|S32.445|ICD10CM|Nondisplaced fracture of posterior column [ilioischial] of left acetabulum|Nondisplaced fracture of posterior column [ilioischial] of left acetabulum +C3509994|T037|AB|S32.445|ICD10CM|Nondisplaced fracture of posterior column of left acetabulum|Nondisplaced fracture of posterior column of left acetabulum +C2838164|T037|AB|S32.445A|ICD10CM|Nondisp fx of posterior column of left acetabulum, init|Nondisp fx of posterior column of left acetabulum, init +C2838165|T037|AB|S32.445B|ICD10CM|Nondisp fx of post column of left acetab, init for opn fx|Nondisp fx of post column of left acetab, init for opn fx +C2838166|T037|AB|S32.445D|ICD10CM|Nondisp fx of post column of l acetab, 7thD|Nondisp fx of post column of l acetab, 7thD +C2838167|T037|AB|S32.445G|ICD10CM|Nondisp fx of post column of l acetab, 7thG|Nondisp fx of post column of l acetab, 7thG +C2838168|T037|AB|S32.445K|ICD10CM|Nondisp fx of post column of l acetab, 7thK|Nondisp fx of post column of l acetab, 7thK +C2838169|T037|AB|S32.445S|ICD10CM|Nondisp fx of posterior column of left acetabulum, sequela|Nondisp fx of posterior column of left acetabulum, sequela +C2838169|T037|PT|S32.445S|ICD10CM|Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, sequela|Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, sequela +C2838170|T037|AB|S32.446|ICD10CM|Nondisp fx of posterior column of unspecified acetabulum|Nondisp fx of posterior column of unspecified acetabulum +C2838170|T037|HT|S32.446|ICD10CM|Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum|Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum +C2838171|T037|AB|S32.446A|ICD10CM|Nondisp fx of posterior column of unsp acetabulum, init|Nondisp fx of posterior column of unsp acetabulum, init +C2838172|T037|AB|S32.446B|ICD10CM|Nondisp fx of post column of unsp acetab, init for opn fx|Nondisp fx of post column of unsp acetab, init for opn fx +C2838173|T037|AB|S32.446D|ICD10CM|Nondisp fx of post column of unsp acetab, 7thD|Nondisp fx of post column of unsp acetab, 7thD +C2838174|T037|AB|S32.446G|ICD10CM|Nondisp fx of post column of unsp acetab, 7thG|Nondisp fx of post column of unsp acetab, 7thG +C2838175|T037|AB|S32.446K|ICD10CM|Nondisp fx of post column of unsp acetab, 7thK|Nondisp fx of post column of unsp acetab, 7thK +C2838176|T037|AB|S32.446S|ICD10CM|Nondisp fx of posterior column of unsp acetabulum, sequela|Nondisp fx of posterior column of unsp acetabulum, sequela +C2838176|T037|PT|S32.446S|ICD10CM|Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, sequela|Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, sequela +C2838177|T037|AB|S32.45|ICD10CM|Transverse fracture of acetabulum|Transverse fracture of acetabulum +C2838177|T037|HT|S32.45|ICD10CM|Transverse fracture of acetabulum|Transverse fracture of acetabulum +C2838178|T037|AB|S32.451|ICD10CM|Displaced transverse fracture of right acetabulum|Displaced transverse fracture of right acetabulum +C2838178|T037|HT|S32.451|ICD10CM|Displaced transverse fracture of right acetabulum|Displaced transverse fracture of right acetabulum +C2838179|T037|AB|S32.451A|ICD10CM|Displaced transverse fracture of right acetabulum, init|Displaced transverse fracture of right acetabulum, init +C2838179|T037|PT|S32.451A|ICD10CM|Displaced transverse fracture of right acetabulum, initial encounter for closed fracture|Displaced transverse fracture of right acetabulum, initial encounter for closed fracture +C2838180|T037|PT|S32.451B|ICD10CM|Displaced transverse fracture of right acetabulum, initial encounter for open fracture|Displaced transverse fracture of right acetabulum, initial encounter for open fracture +C2838180|T037|AB|S32.451B|ICD10CM|Displaced transverse fx right acetabulum, init for opn fx|Displaced transverse fx right acetabulum, init for opn fx +C2838181|T037|AB|S32.451D|ICD10CM|Displ transverse fx right acetab, subs for fx w routn heal|Displ transverse fx right acetab, subs for fx w routn heal +C2838182|T037|AB|S32.451G|ICD10CM|Displ transverse fx right acetab, subs for fx w delay heal|Displ transverse fx right acetab, subs for fx w delay heal +C2838183|T037|PT|S32.451K|ICD10CM|Displaced transverse fracture of right acetabulum, subsequent encounter for fracture with nonunion|Displaced transverse fracture of right acetabulum, subsequent encounter for fracture with nonunion +C2838183|T037|AB|S32.451K|ICD10CM|Displaced transverse fx right acetab, subs for fx w nonunion|Displaced transverse fx right acetab, subs for fx w nonunion +C2838184|T037|PT|S32.451S|ICD10CM|Displaced transverse fracture of right acetabulum, sequela|Displaced transverse fracture of right acetabulum, sequela +C2838184|T037|AB|S32.451S|ICD10CM|Displaced transverse fracture of right acetabulum, sequela|Displaced transverse fracture of right acetabulum, sequela +C2838185|T037|AB|S32.452|ICD10CM|Displaced transverse fracture of left acetabulum|Displaced transverse fracture of left acetabulum +C2838185|T037|HT|S32.452|ICD10CM|Displaced transverse fracture of left acetabulum|Displaced transverse fracture of left acetabulum +C2838186|T037|AB|S32.452A|ICD10CM|Displaced transverse fracture of left acetabulum, init|Displaced transverse fracture of left acetabulum, init +C2838186|T037|PT|S32.452A|ICD10CM|Displaced transverse fracture of left acetabulum, initial encounter for closed fracture|Displaced transverse fracture of left acetabulum, initial encounter for closed fracture +C2838187|T037|PT|S32.452B|ICD10CM|Displaced transverse fracture of left acetabulum, initial encounter for open fracture|Displaced transverse fracture of left acetabulum, initial encounter for open fracture +C2838187|T037|AB|S32.452B|ICD10CM|Displaced transverse fx left acetabulum, init for opn fx|Displaced transverse fx left acetabulum, init for opn fx +C2838188|T037|AB|S32.452D|ICD10CM|Displ transverse fx left acetab, subs for fx w routn heal|Displ transverse fx left acetab, subs for fx w routn heal +C2838189|T037|AB|S32.452G|ICD10CM|Displ transverse fx left acetab, subs for fx w delay heal|Displ transverse fx left acetab, subs for fx w delay heal +C2838190|T037|PT|S32.452K|ICD10CM|Displaced transverse fracture of left acetabulum, subsequent encounter for fracture with nonunion|Displaced transverse fracture of left acetabulum, subsequent encounter for fracture with nonunion +C2838190|T037|AB|S32.452K|ICD10CM|Displaced transverse fx left acetab, subs for fx w nonunion|Displaced transverse fx left acetab, subs for fx w nonunion +C2838191|T037|AB|S32.452S|ICD10CM|Displaced transverse fracture of left acetabulum, sequela|Displaced transverse fracture of left acetabulum, sequela +C2838191|T037|PT|S32.452S|ICD10CM|Displaced transverse fracture of left acetabulum, sequela|Displaced transverse fracture of left acetabulum, sequela +C2838192|T037|AB|S32.453|ICD10CM|Displaced transverse fracture of unspecified acetabulum|Displaced transverse fracture of unspecified acetabulum +C2838192|T037|HT|S32.453|ICD10CM|Displaced transverse fracture of unspecified acetabulum|Displaced transverse fracture of unspecified acetabulum +C2838193|T037|AB|S32.453A|ICD10CM|Displaced transverse fracture of unsp acetabulum, init|Displaced transverse fracture of unsp acetabulum, init +C2838193|T037|PT|S32.453A|ICD10CM|Displaced transverse fracture of unspecified acetabulum, initial encounter for closed fracture|Displaced transverse fracture of unspecified acetabulum, initial encounter for closed fracture +C2838194|T037|PT|S32.453B|ICD10CM|Displaced transverse fracture of unspecified acetabulum, initial encounter for open fracture|Displaced transverse fracture of unspecified acetabulum, initial encounter for open fracture +C2838194|T037|AB|S32.453B|ICD10CM|Displaced transverse fx unsp acetabulum, init for opn fx|Displaced transverse fx unsp acetabulum, init for opn fx +C2838195|T037|AB|S32.453D|ICD10CM|Displ transverse fx unsp acetab, subs for fx w routn heal|Displ transverse fx unsp acetab, subs for fx w routn heal +C2838196|T037|AB|S32.453G|ICD10CM|Displ transverse fx unsp acetab, subs for fx w delay heal|Displ transverse fx unsp acetab, subs for fx w delay heal +C2838197|T037|AB|S32.453K|ICD10CM|Displaced transverse fx unsp acetab, subs for fx w nonunion|Displaced transverse fx unsp acetab, subs for fx w nonunion +C2838198|T037|AB|S32.453S|ICD10CM|Displaced transverse fracture of unsp acetabulum, sequela|Displaced transverse fracture of unsp acetabulum, sequela +C2838198|T037|PT|S32.453S|ICD10CM|Displaced transverse fracture of unspecified acetabulum, sequela|Displaced transverse fracture of unspecified acetabulum, sequela +C2838199|T037|AB|S32.454|ICD10CM|Nondisplaced transverse fracture of right acetabulum|Nondisplaced transverse fracture of right acetabulum +C2838199|T037|HT|S32.454|ICD10CM|Nondisplaced transverse fracture of right acetabulum|Nondisplaced transverse fracture of right acetabulum +C2838200|T037|AB|S32.454A|ICD10CM|Nondisplaced transverse fracture of right acetabulum, init|Nondisplaced transverse fracture of right acetabulum, init +C2838200|T037|PT|S32.454A|ICD10CM|Nondisplaced transverse fracture of right acetabulum, initial encounter for closed fracture|Nondisplaced transverse fracture of right acetabulum, initial encounter for closed fracture +C2838201|T037|AB|S32.454B|ICD10CM|Nondisp transverse fx right acetabulum, init for opn fx|Nondisp transverse fx right acetabulum, init for opn fx +C2838201|T037|PT|S32.454B|ICD10CM|Nondisplaced transverse fracture of right acetabulum, initial encounter for open fracture|Nondisplaced transverse fracture of right acetabulum, initial encounter for open fracture +C2838202|T037|AB|S32.454D|ICD10CM|Nondisp transverse fx right acetab, subs for fx w routn heal|Nondisp transverse fx right acetab, subs for fx w routn heal +C2838203|T037|AB|S32.454G|ICD10CM|Nondisp transverse fx right acetab, subs for fx w delay heal|Nondisp transverse fx right acetab, subs for fx w delay heal +C2838204|T037|AB|S32.454K|ICD10CM|Nondisp transverse fx right acetab, subs for fx w nonunion|Nondisp transverse fx right acetab, subs for fx w nonunion +C2838205|T037|AB|S32.454S|ICD10CM|Nondisp transverse fracture of right acetabulum, sequela|Nondisp transverse fracture of right acetabulum, sequela +C2838205|T037|PT|S32.454S|ICD10CM|Nondisplaced transverse fracture of right acetabulum, sequela|Nondisplaced transverse fracture of right acetabulum, sequela +C2838206|T037|AB|S32.455|ICD10CM|Nondisplaced transverse fracture of left acetabulum|Nondisplaced transverse fracture of left acetabulum +C2838206|T037|HT|S32.455|ICD10CM|Nondisplaced transverse fracture of left acetabulum|Nondisplaced transverse fracture of left acetabulum +C2838207|T037|AB|S32.455A|ICD10CM|Nondisplaced transverse fracture of left acetabulum, init|Nondisplaced transverse fracture of left acetabulum, init +C2838207|T037|PT|S32.455A|ICD10CM|Nondisplaced transverse fracture of left acetabulum, initial encounter for closed fracture|Nondisplaced transverse fracture of left acetabulum, initial encounter for closed fracture +C2838208|T037|AB|S32.455B|ICD10CM|Nondisp transverse fx left acetabulum, init for opn fx|Nondisp transverse fx left acetabulum, init for opn fx +C2838208|T037|PT|S32.455B|ICD10CM|Nondisplaced transverse fracture of left acetabulum, initial encounter for open fracture|Nondisplaced transverse fracture of left acetabulum, initial encounter for open fracture +C2838209|T037|AB|S32.455D|ICD10CM|Nondisp transverse fx left acetab, subs for fx w routn heal|Nondisp transverse fx left acetab, subs for fx w routn heal +C2838210|T037|AB|S32.455G|ICD10CM|Nondisp transverse fx left acetab, subs for fx w delay heal|Nondisp transverse fx left acetab, subs for fx w delay heal +C2838211|T037|AB|S32.455K|ICD10CM|Nondisp transverse fx left acetab, subs for fx w nonunion|Nondisp transverse fx left acetab, subs for fx w nonunion +C2838211|T037|PT|S32.455K|ICD10CM|Nondisplaced transverse fracture of left acetabulum, subsequent encounter for fracture with nonunion|Nondisplaced transverse fracture of left acetabulum, subsequent encounter for fracture with nonunion +C2838212|T037|AB|S32.455S|ICD10CM|Nondisplaced transverse fracture of left acetabulum, sequela|Nondisplaced transverse fracture of left acetabulum, sequela +C2838212|T037|PT|S32.455S|ICD10CM|Nondisplaced transverse fracture of left acetabulum, sequela|Nondisplaced transverse fracture of left acetabulum, sequela +C2838213|T037|AB|S32.456|ICD10CM|Nondisplaced transverse fracture of unspecified acetabulum|Nondisplaced transverse fracture of unspecified acetabulum +C2838213|T037|HT|S32.456|ICD10CM|Nondisplaced transverse fracture of unspecified acetabulum|Nondisplaced transverse fracture of unspecified acetabulum +C2838214|T037|AB|S32.456A|ICD10CM|Nondisplaced transverse fracture of unsp acetabulum, init|Nondisplaced transverse fracture of unsp acetabulum, init +C2838214|T037|PT|S32.456A|ICD10CM|Nondisplaced transverse fracture of unspecified acetabulum, initial encounter for closed fracture|Nondisplaced transverse fracture of unspecified acetabulum, initial encounter for closed fracture +C2838215|T037|AB|S32.456B|ICD10CM|Nondisp transverse fx unsp acetabulum, init for opn fx|Nondisp transverse fx unsp acetabulum, init for opn fx +C2838215|T037|PT|S32.456B|ICD10CM|Nondisplaced transverse fracture of unspecified acetabulum, initial encounter for open fracture|Nondisplaced transverse fracture of unspecified acetabulum, initial encounter for open fracture +C2838216|T037|AB|S32.456D|ICD10CM|Nondisp transverse fx unsp acetab, subs for fx w routn heal|Nondisp transverse fx unsp acetab, subs for fx w routn heal +C2838217|T037|AB|S32.456G|ICD10CM|Nondisp transverse fx unsp acetab, subs for fx w delay heal|Nondisp transverse fx unsp acetab, subs for fx w delay heal +C2838218|T037|AB|S32.456K|ICD10CM|Nondisp transverse fx unsp acetab, subs for fx w nonunion|Nondisp transverse fx unsp acetab, subs for fx w nonunion +C2838219|T037|AB|S32.456S|ICD10CM|Nondisplaced transverse fracture of unsp acetabulum, sequela|Nondisplaced transverse fracture of unsp acetabulum, sequela +C2838219|T037|PT|S32.456S|ICD10CM|Nondisplaced transverse fracture of unspecified acetabulum, sequela|Nondisplaced transverse fracture of unspecified acetabulum, sequela +C2838220|T037|AB|S32.46|ICD10CM|Associated transverse-posterior fracture of acetabulum|Associated transverse-posterior fracture of acetabulum +C2838220|T037|HT|S32.46|ICD10CM|Associated transverse-posterior fracture of acetabulum|Associated transverse-posterior fracture of acetabulum +C2838221|T037|AB|S32.461|ICD10CM|Displaced associated transv/post fx right acetabulum|Displaced associated transv/post fx right acetabulum +C2838221|T037|HT|S32.461|ICD10CM|Displaced associated transverse-posterior fracture of right acetabulum|Displaced associated transverse-posterior fracture of right acetabulum +C2838222|T037|AB|S32.461A|ICD10CM|Displaced associated transv/post fx right acetabulum, init|Displaced associated transv/post fx right acetabulum, init +C2838223|T037|AB|S32.461B|ICD10CM|Displaced assoc transv/post fx right acetab, init for opn fx|Displaced assoc transv/post fx right acetab, init for opn fx +C2838224|T037|AB|S32.461D|ICD10CM|Displ assoc transv/post fx r acetab, 7thD|Displ assoc transv/post fx r acetab, 7thD +C2838225|T037|AB|S32.461G|ICD10CM|Displ assoc transv/post fx r acetab, 7thG|Displ assoc transv/post fx r acetab, 7thG +C2838226|T037|AB|S32.461K|ICD10CM|Displ assoc transv/post fx r acetab, subs for fx w nonunion|Displ assoc transv/post fx r acetab, subs for fx w nonunion +C2838227|T037|AB|S32.461S|ICD10CM|Displaced associated transv/post fx right acetab, sequela|Displaced associated transv/post fx right acetab, sequela +C2838227|T037|PT|S32.461S|ICD10CM|Displaced associated transverse-posterior fracture of right acetabulum, sequela|Displaced associated transverse-posterior fracture of right acetabulum, sequela +C2838228|T037|AB|S32.462|ICD10CM|Displaced associated transv/post fracture of left acetabulum|Displaced associated transv/post fracture of left acetabulum +C2838228|T037|HT|S32.462|ICD10CM|Displaced associated transverse-posterior fracture of left acetabulum|Displaced associated transverse-posterior fracture of left acetabulum +C2838229|T037|AB|S32.462A|ICD10CM|Displaced associated transv/post fx left acetabulum, init|Displaced associated transv/post fx left acetabulum, init +C2838230|T037|AB|S32.462B|ICD10CM|Displaced assoc transv/post fx left acetab, init for opn fx|Displaced assoc transv/post fx left acetab, init for opn fx +C2838231|T037|AB|S32.462D|ICD10CM|Displ assoc transv/post fx l acetab, 7thD|Displ assoc transv/post fx l acetab, 7thD +C2838232|T037|AB|S32.462G|ICD10CM|Displ assoc transv/post fx l acetab, 7thG|Displ assoc transv/post fx l acetab, 7thG +C2838233|T037|AB|S32.462K|ICD10CM|Displ assoc transv/post fx l acetab, subs for fx w nonunion|Displ assoc transv/post fx l acetab, subs for fx w nonunion +C2838234|T037|AB|S32.462S|ICD10CM|Displaced associated transv/post fx left acetabulum, sequela|Displaced associated transv/post fx left acetabulum, sequela +C2838234|T037|PT|S32.462S|ICD10CM|Displaced associated transverse-posterior fracture of left acetabulum, sequela|Displaced associated transverse-posterior fracture of left acetabulum, sequela +C2838235|T037|AB|S32.463|ICD10CM|Displaced associated transv/post fracture of unsp acetabulum|Displaced associated transv/post fracture of unsp acetabulum +C2838235|T037|HT|S32.463|ICD10CM|Displaced associated transverse-posterior fracture of unspecified acetabulum|Displaced associated transverse-posterior fracture of unspecified acetabulum +C2838236|T037|AB|S32.463A|ICD10CM|Displaced associated transv/post fx unsp acetabulum, init|Displaced associated transv/post fx unsp acetabulum, init +C2838237|T037|AB|S32.463B|ICD10CM|Displaced assoc transv/post fx unsp acetab, init for opn fx|Displaced assoc transv/post fx unsp acetab, init for opn fx +C2838238|T037|AB|S32.463D|ICD10CM|Displ assoc transv/post fx unsp acetab, 7thD|Displ assoc transv/post fx unsp acetab, 7thD +C2838239|T037|AB|S32.463G|ICD10CM|Displ assoc transv/post fx unsp acetab, 7thG|Displ assoc transv/post fx unsp acetab, 7thG +C2838240|T037|AB|S32.463K|ICD10CM|Displ assoc transv/post fx unsp acetab, 7thK|Displ assoc transv/post fx unsp acetab, 7thK +C2838241|T037|AB|S32.463S|ICD10CM|Displaced associated transv/post fx unsp acetabulum, sequela|Displaced associated transv/post fx unsp acetabulum, sequela +C2838241|T037|PT|S32.463S|ICD10CM|Displaced associated transverse-posterior fracture of unspecified acetabulum, sequela|Displaced associated transverse-posterior fracture of unspecified acetabulum, sequela +C2838242|T037|AB|S32.464|ICD10CM|Nondisp associated transv/post fracture of right acetabulum|Nondisp associated transv/post fracture of right acetabulum +C2838242|T037|HT|S32.464|ICD10CM|Nondisplaced associated transverse-posterior fracture of right acetabulum|Nondisplaced associated transverse-posterior fracture of right acetabulum +C2838243|T037|AB|S32.464A|ICD10CM|Nondisp associated transv/post fx right acetabulum, init|Nondisp associated transv/post fx right acetabulum, init +C2838244|T037|AB|S32.464B|ICD10CM|Nondisp assoc transv/post fx right acetab, init for opn fx|Nondisp assoc transv/post fx right acetab, init for opn fx +C2838245|T037|AB|S32.464D|ICD10CM|Nondisp assoc transv/post fx r acetab, 7thD|Nondisp assoc transv/post fx r acetab, 7thD +C2838246|T037|AB|S32.464G|ICD10CM|Nondisp assoc transv/post fx r acetab, 7thG|Nondisp assoc transv/post fx r acetab, 7thG +C2838247|T037|AB|S32.464K|ICD10CM|Nondisp assoc transv/post fx r acetab, 7thK|Nondisp assoc transv/post fx r acetab, 7thK +C2838248|T037|AB|S32.464S|ICD10CM|Nondisp associated transv/post fx right acetabulum, sequela|Nondisp associated transv/post fx right acetabulum, sequela +C2838248|T037|PT|S32.464S|ICD10CM|Nondisplaced associated transverse-posterior fracture of right acetabulum, sequela|Nondisplaced associated transverse-posterior fracture of right acetabulum, sequela +C2838249|T037|AB|S32.465|ICD10CM|Nondisp associated transv/post fracture of left acetabulum|Nondisp associated transv/post fracture of left acetabulum +C2838249|T037|HT|S32.465|ICD10CM|Nondisplaced associated transverse-posterior fracture of left acetabulum|Nondisplaced associated transverse-posterior fracture of left acetabulum +C2838250|T037|AB|S32.465A|ICD10CM|Nondisp associated transv/post fx left acetabulum, init|Nondisp associated transv/post fx left acetabulum, init +C2838251|T037|AB|S32.465B|ICD10CM|Nondisp assoc transv/post fx left acetab, init for opn fx|Nondisp assoc transv/post fx left acetab, init for opn fx +C2838252|T037|AB|S32.465D|ICD10CM|Nondisp assoc transv/post fx l acetab, 7thD|Nondisp assoc transv/post fx l acetab, 7thD +C2838253|T037|AB|S32.465G|ICD10CM|Nondisp assoc transv/post fx l acetab, 7thG|Nondisp assoc transv/post fx l acetab, 7thG +C2838254|T037|AB|S32.465K|ICD10CM|Nondisp assoc transv/post fx l acetab, 7thK|Nondisp assoc transv/post fx l acetab, 7thK +C2838255|T037|AB|S32.465S|ICD10CM|Nondisp associated transv/post fx left acetabulum, sequela|Nondisp associated transv/post fx left acetabulum, sequela +C2838255|T037|PT|S32.465S|ICD10CM|Nondisplaced associated transverse-posterior fracture of left acetabulum, sequela|Nondisplaced associated transverse-posterior fracture of left acetabulum, sequela +C2838256|T037|AB|S32.466|ICD10CM|Nondisp associated transv/post fracture of unsp acetabulum|Nondisp associated transv/post fracture of unsp acetabulum +C2838256|T037|HT|S32.466|ICD10CM|Nondisplaced associated transverse-posterior fracture of unspecified acetabulum|Nondisplaced associated transverse-posterior fracture of unspecified acetabulum +C2838257|T037|AB|S32.466A|ICD10CM|Nondisp associated transv/post fx unsp acetabulum, init|Nondisp associated transv/post fx unsp acetabulum, init +C2838258|T037|AB|S32.466B|ICD10CM|Nondisp assoc transv/post fx unsp acetab, init for opn fx|Nondisp assoc transv/post fx unsp acetab, init for opn fx +C2838259|T037|AB|S32.466D|ICD10CM|Nondisp assoc transv/post fx unsp acetab, 7thD|Nondisp assoc transv/post fx unsp acetab, 7thD +C2838260|T037|AB|S32.466G|ICD10CM|Nondisp assoc transv/post fx unsp acetab, 7thG|Nondisp assoc transv/post fx unsp acetab, 7thG +C2838261|T037|AB|S32.466K|ICD10CM|Nondisp assoc transv/post fx unsp acetab, 7thK|Nondisp assoc transv/post fx unsp acetab, 7thK +C2838262|T037|AB|S32.466S|ICD10CM|Nondisp associated transv/post fx unsp acetabulum, sequela|Nondisp associated transv/post fx unsp acetabulum, sequela +C2838262|T037|PT|S32.466S|ICD10CM|Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, sequela|Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, sequela +C2838263|T037|AB|S32.47|ICD10CM|Fracture of medial wall of acetabulum|Fracture of medial wall of acetabulum +C2838263|T037|HT|S32.47|ICD10CM|Fracture of medial wall of acetabulum|Fracture of medial wall of acetabulum +C2838264|T037|AB|S32.471|ICD10CM|Displaced fracture of medial wall of right acetabulum|Displaced fracture of medial wall of right acetabulum +C2838264|T037|HT|S32.471|ICD10CM|Displaced fracture of medial wall of right acetabulum|Displaced fracture of medial wall of right acetabulum +C2838265|T037|AB|S32.471A|ICD10CM|Disp fx of medial wall of right acetabulum, init for clos fx|Disp fx of medial wall of right acetabulum, init for clos fx +C2838265|T037|PT|S32.471A|ICD10CM|Displaced fracture of medial wall of right acetabulum, initial encounter for closed fracture|Displaced fracture of medial wall of right acetabulum, initial encounter for closed fracture +C2838266|T037|AB|S32.471B|ICD10CM|Disp fx of medial wall of right acetabulum, init for opn fx|Disp fx of medial wall of right acetabulum, init for opn fx +C2838266|T037|PT|S32.471B|ICD10CM|Displaced fracture of medial wall of right acetabulum, initial encounter for open fracture|Displaced fracture of medial wall of right acetabulum, initial encounter for open fracture +C2838267|T037|AB|S32.471D|ICD10CM|Disp fx of med wall of r acetab, subs for fx w routn heal|Disp fx of med wall of r acetab, subs for fx w routn heal +C2838268|T037|AB|S32.471G|ICD10CM|Disp fx of med wall of r acetab, subs for fx w delay heal|Disp fx of med wall of r acetab, subs for fx w delay heal +C2838269|T037|AB|S32.471K|ICD10CM|Disp fx of med wall of right acetab, subs for fx w nonunion|Disp fx of med wall of right acetab, subs for fx w nonunion +C2838270|T037|AB|S32.471S|ICD10CM|Disp fx of medial wall of right acetabulum, sequela|Disp fx of medial wall of right acetabulum, sequela +C2838270|T037|PT|S32.471S|ICD10CM|Displaced fracture of medial wall of right acetabulum, sequela|Displaced fracture of medial wall of right acetabulum, sequela +C2838271|T037|AB|S32.472|ICD10CM|Displaced fracture of medial wall of left acetabulum|Displaced fracture of medial wall of left acetabulum +C2838271|T037|HT|S32.472|ICD10CM|Displaced fracture of medial wall of left acetabulum|Displaced fracture of medial wall of left acetabulum +C2838272|T037|AB|S32.472A|ICD10CM|Disp fx of medial wall of left acetabulum, init for clos fx|Disp fx of medial wall of left acetabulum, init for clos fx +C2838272|T037|PT|S32.472A|ICD10CM|Displaced fracture of medial wall of left acetabulum, initial encounter for closed fracture|Displaced fracture of medial wall of left acetabulum, initial encounter for closed fracture +C2838273|T037|AB|S32.472B|ICD10CM|Disp fx of medial wall of left acetabulum, init for opn fx|Disp fx of medial wall of left acetabulum, init for opn fx +C2838273|T037|PT|S32.472B|ICD10CM|Displaced fracture of medial wall of left acetabulum, initial encounter for open fracture|Displaced fracture of medial wall of left acetabulum, initial encounter for open fracture +C2838274|T037|AB|S32.472D|ICD10CM|Disp fx of med wall of left acetab, subs for fx w routn heal|Disp fx of med wall of left acetab, subs for fx w routn heal +C2838275|T037|AB|S32.472G|ICD10CM|Disp fx of med wall of left acetab, subs for fx w delay heal|Disp fx of med wall of left acetab, subs for fx w delay heal +C2838276|T037|AB|S32.472K|ICD10CM|Disp fx of med wall of left acetab, subs for fx w nonunion|Disp fx of med wall of left acetab, subs for fx w nonunion +C2838277|T037|AB|S32.472S|ICD10CM|Disp fx of medial wall of left acetabulum, sequela|Disp fx of medial wall of left acetabulum, sequela +C2838277|T037|PT|S32.472S|ICD10CM|Displaced fracture of medial wall of left acetabulum, sequela|Displaced fracture of medial wall of left acetabulum, sequela +C2838278|T037|AB|S32.473|ICD10CM|Displaced fracture of medial wall of unspecified acetabulum|Displaced fracture of medial wall of unspecified acetabulum +C2838278|T037|HT|S32.473|ICD10CM|Displaced fracture of medial wall of unspecified acetabulum|Displaced fracture of medial wall of unspecified acetabulum +C2838279|T037|AB|S32.473A|ICD10CM|Disp fx of medial wall of unsp acetabulum, init for clos fx|Disp fx of medial wall of unsp acetabulum, init for clos fx +C2838279|T037|PT|S32.473A|ICD10CM|Displaced fracture of medial wall of unspecified acetabulum, initial encounter for closed fracture|Displaced fracture of medial wall of unspecified acetabulum, initial encounter for closed fracture +C2838280|T037|AB|S32.473B|ICD10CM|Disp fx of medial wall of unsp acetabulum, init for opn fx|Disp fx of medial wall of unsp acetabulum, init for opn fx +C2838280|T037|PT|S32.473B|ICD10CM|Displaced fracture of medial wall of unspecified acetabulum, initial encounter for open fracture|Displaced fracture of medial wall of unspecified acetabulum, initial encounter for open fracture +C2838281|T037|AB|S32.473D|ICD10CM|Disp fx of med wall of unsp acetab, subs for fx w routn heal|Disp fx of med wall of unsp acetab, subs for fx w routn heal +C2838282|T037|AB|S32.473G|ICD10CM|Disp fx of med wall of unsp acetab, subs for fx w delay heal|Disp fx of med wall of unsp acetab, subs for fx w delay heal +C2838283|T037|AB|S32.473K|ICD10CM|Disp fx of med wall of unsp acetab, subs for fx w nonunion|Disp fx of med wall of unsp acetab, subs for fx w nonunion +C2838284|T037|AB|S32.473S|ICD10CM|Disp fx of medial wall of unspecified acetabulum, sequela|Disp fx of medial wall of unspecified acetabulum, sequela +C2838284|T037|PT|S32.473S|ICD10CM|Displaced fracture of medial wall of unspecified acetabulum, sequela|Displaced fracture of medial wall of unspecified acetabulum, sequela +C2838285|T037|AB|S32.474|ICD10CM|Nondisplaced fracture of medial wall of right acetabulum|Nondisplaced fracture of medial wall of right acetabulum +C2838285|T037|HT|S32.474|ICD10CM|Nondisplaced fracture of medial wall of right acetabulum|Nondisplaced fracture of medial wall of right acetabulum +C2838286|T037|AB|S32.474A|ICD10CM|Nondisp fx of medial wall of right acetabulum, init|Nondisp fx of medial wall of right acetabulum, init +C2838286|T037|PT|S32.474A|ICD10CM|Nondisplaced fracture of medial wall of right acetabulum, initial encounter for closed fracture|Nondisplaced fracture of medial wall of right acetabulum, initial encounter for closed fracture +C2838287|T037|AB|S32.474B|ICD10CM|Nondisp fx of medial wall of right acetab, init for opn fx|Nondisp fx of medial wall of right acetab, init for opn fx +C2838287|T037|PT|S32.474B|ICD10CM|Nondisplaced fracture of medial wall of right acetabulum, initial encounter for open fracture|Nondisplaced fracture of medial wall of right acetabulum, initial encounter for open fracture +C2838288|T037|AB|S32.474D|ICD10CM|Nondisp fx of med wall of r acetab, subs for fx w routn heal|Nondisp fx of med wall of r acetab, subs for fx w routn heal +C2838289|T037|AB|S32.474G|ICD10CM|Nondisp fx of med wall of r acetab, subs for fx w delay heal|Nondisp fx of med wall of r acetab, subs for fx w delay heal +C2838290|T037|AB|S32.474K|ICD10CM|Nondisp fx of med wall of r acetab, subs for fx w nonunion|Nondisp fx of med wall of r acetab, subs for fx w nonunion +C2838291|T037|AB|S32.474S|ICD10CM|Nondisp fx of medial wall of right acetabulum, sequela|Nondisp fx of medial wall of right acetabulum, sequela +C2838291|T037|PT|S32.474S|ICD10CM|Nondisplaced fracture of medial wall of right acetabulum, sequela|Nondisplaced fracture of medial wall of right acetabulum, sequela +C2838292|T037|AB|S32.475|ICD10CM|Nondisplaced fracture of medial wall of left acetabulum|Nondisplaced fracture of medial wall of left acetabulum +C2838292|T037|HT|S32.475|ICD10CM|Nondisplaced fracture of medial wall of left acetabulum|Nondisplaced fracture of medial wall of left acetabulum +C2838293|T037|AB|S32.475A|ICD10CM|Nondisp fx of medial wall of left acetabulum, init|Nondisp fx of medial wall of left acetabulum, init +C2838293|T037|PT|S32.475A|ICD10CM|Nondisplaced fracture of medial wall of left acetabulum, initial encounter for closed fracture|Nondisplaced fracture of medial wall of left acetabulum, initial encounter for closed fracture +C2838294|T037|AB|S32.475B|ICD10CM|Nondisp fx of medial wall of left acetab, init for opn fx|Nondisp fx of medial wall of left acetab, init for opn fx +C2838294|T037|PT|S32.475B|ICD10CM|Nondisplaced fracture of medial wall of left acetabulum, initial encounter for open fracture|Nondisplaced fracture of medial wall of left acetabulum, initial encounter for open fracture +C2838295|T037|AB|S32.475D|ICD10CM|Nondisp fx of med wall of l acetab, subs for fx w routn heal|Nondisp fx of med wall of l acetab, subs for fx w routn heal +C2838296|T037|AB|S32.475G|ICD10CM|Nondisp fx of med wall of l acetab, subs for fx w delay heal|Nondisp fx of med wall of l acetab, subs for fx w delay heal +C2838297|T037|AB|S32.475K|ICD10CM|Nondisp fx of med wall of l acetab, subs for fx w nonunion|Nondisp fx of med wall of l acetab, subs for fx w nonunion +C2838298|T037|AB|S32.475S|ICD10CM|Nondisp fx of medial wall of left acetabulum, sequela|Nondisp fx of medial wall of left acetabulum, sequela +C2838298|T037|PT|S32.475S|ICD10CM|Nondisplaced fracture of medial wall of left acetabulum, sequela|Nondisplaced fracture of medial wall of left acetabulum, sequela +C2838299|T037|AB|S32.476|ICD10CM|Nondisp fx of medial wall of unspecified acetabulum|Nondisp fx of medial wall of unspecified acetabulum +C2838299|T037|HT|S32.476|ICD10CM|Nondisplaced fracture of medial wall of unspecified acetabulum|Nondisplaced fracture of medial wall of unspecified acetabulum +C2838300|T037|AB|S32.476A|ICD10CM|Nondisp fx of medial wall of unsp acetabulum, init|Nondisp fx of medial wall of unsp acetabulum, init +C2838301|T037|AB|S32.476B|ICD10CM|Nondisp fx of medial wall of unsp acetab, init for opn fx|Nondisp fx of medial wall of unsp acetab, init for opn fx +C2838301|T037|PT|S32.476B|ICD10CM|Nondisplaced fracture of medial wall of unspecified acetabulum, initial encounter for open fracture|Nondisplaced fracture of medial wall of unspecified acetabulum, initial encounter for open fracture +C2838302|T037|AB|S32.476D|ICD10CM|Nondisp fx of med wl of unsp acetab, 7thD|Nondisp fx of med wl of unsp acetab, 7thD +C2838303|T037|AB|S32.476G|ICD10CM|Nondisp fx of med wl of unsp acetab, 7thG|Nondisp fx of med wl of unsp acetab, 7thG +C2838304|T037|AB|S32.476K|ICD10CM|Nondisp fx of med wl of unsp acetab, subs for fx w nonunion|Nondisp fx of med wl of unsp acetab, subs for fx w nonunion +C2838305|T037|AB|S32.476S|ICD10CM|Nondisp fx of medial wall of unspecified acetabulum, sequela|Nondisp fx of medial wall of unspecified acetabulum, sequela +C2838305|T037|PT|S32.476S|ICD10CM|Nondisplaced fracture of medial wall of unspecified acetabulum, sequela|Nondisplaced fracture of medial wall of unspecified acetabulum, sequela +C2838306|T037|AB|S32.48|ICD10CM|Dome fracture of acetabulum|Dome fracture of acetabulum +C2838306|T037|HT|S32.48|ICD10CM|Dome fracture of acetabulum|Dome fracture of acetabulum +C2838307|T037|AB|S32.481|ICD10CM|Displaced dome fracture of right acetabulum|Displaced dome fracture of right acetabulum +C2838307|T037|HT|S32.481|ICD10CM|Displaced dome fracture of right acetabulum|Displaced dome fracture of right acetabulum +C2838308|T037|AB|S32.481A|ICD10CM|Displaced dome fracture of right acetabulum, init|Displaced dome fracture of right acetabulum, init +C2838308|T037|PT|S32.481A|ICD10CM|Displaced dome fracture of right acetabulum, initial encounter for closed fracture|Displaced dome fracture of right acetabulum, initial encounter for closed fracture +C2838309|T037|AB|S32.481B|ICD10CM|Displaced dome fracture of right acetabulum, init for opn fx|Displaced dome fracture of right acetabulum, init for opn fx +C2838309|T037|PT|S32.481B|ICD10CM|Displaced dome fracture of right acetabulum, initial encounter for open fracture|Displaced dome fracture of right acetabulum, initial encounter for open fracture +C2838310|T037|PT|S32.481D|ICD10CM|Displaced dome fracture of right acetabulum, subsequent encounter for fracture with routine healing|Displaced dome fracture of right acetabulum, subsequent encounter for fracture with routine healing +C2838310|T037|AB|S32.481D|ICD10CM|Displaced dome fx right acetabulum, subs for fx w routn heal|Displaced dome fx right acetabulum, subs for fx w routn heal +C2838311|T037|PT|S32.481G|ICD10CM|Displaced dome fracture of right acetabulum, subsequent encounter for fracture with delayed healing|Displaced dome fracture of right acetabulum, subsequent encounter for fracture with delayed healing +C2838311|T037|AB|S32.481G|ICD10CM|Displaced dome fx right acetabulum, subs for fx w delay heal|Displaced dome fx right acetabulum, subs for fx w delay heal +C2838312|T037|PT|S32.481K|ICD10CM|Displaced dome fracture of right acetabulum, subsequent encounter for fracture with nonunion|Displaced dome fracture of right acetabulum, subsequent encounter for fracture with nonunion +C2838312|T037|AB|S32.481K|ICD10CM|Displaced dome fx right acetabulum, subs for fx w nonunion|Displaced dome fx right acetabulum, subs for fx w nonunion +C2838313|T037|PT|S32.481S|ICD10CM|Displaced dome fracture of right acetabulum, sequela|Displaced dome fracture of right acetabulum, sequela +C2838313|T037|AB|S32.481S|ICD10CM|Displaced dome fracture of right acetabulum, sequela|Displaced dome fracture of right acetabulum, sequela +C2838314|T037|AB|S32.482|ICD10CM|Displaced dome fracture of left acetabulum|Displaced dome fracture of left acetabulum +C2838314|T037|HT|S32.482|ICD10CM|Displaced dome fracture of left acetabulum|Displaced dome fracture of left acetabulum +C2838315|T037|AB|S32.482A|ICD10CM|Displaced dome fracture of left acetabulum, init for clos fx|Displaced dome fracture of left acetabulum, init for clos fx +C2838315|T037|PT|S32.482A|ICD10CM|Displaced dome fracture of left acetabulum, initial encounter for closed fracture|Displaced dome fracture of left acetabulum, initial encounter for closed fracture +C2838316|T037|AB|S32.482B|ICD10CM|Displaced dome fracture of left acetabulum, init for opn fx|Displaced dome fracture of left acetabulum, init for opn fx +C2838316|T037|PT|S32.482B|ICD10CM|Displaced dome fracture of left acetabulum, initial encounter for open fracture|Displaced dome fracture of left acetabulum, initial encounter for open fracture +C2838317|T037|PT|S32.482D|ICD10CM|Displaced dome fracture of left acetabulum, subsequent encounter for fracture with routine healing|Displaced dome fracture of left acetabulum, subsequent encounter for fracture with routine healing +C2838317|T037|AB|S32.482D|ICD10CM|Displaced dome fx left acetabulum, subs for fx w routn heal|Displaced dome fx left acetabulum, subs for fx w routn heal +C2838318|T037|PT|S32.482G|ICD10CM|Displaced dome fracture of left acetabulum, subsequent encounter for fracture with delayed healing|Displaced dome fracture of left acetabulum, subsequent encounter for fracture with delayed healing +C2838318|T037|AB|S32.482G|ICD10CM|Displaced dome fx left acetabulum, subs for fx w delay heal|Displaced dome fx left acetabulum, subs for fx w delay heal +C2838319|T037|PT|S32.482K|ICD10CM|Displaced dome fracture of left acetabulum, subsequent encounter for fracture with nonunion|Displaced dome fracture of left acetabulum, subsequent encounter for fracture with nonunion +C2838319|T037|AB|S32.482K|ICD10CM|Displaced dome fx left acetabulum, subs for fx w nonunion|Displaced dome fx left acetabulum, subs for fx w nonunion +C2838320|T037|PT|S32.482S|ICD10CM|Displaced dome fracture of left acetabulum, sequela|Displaced dome fracture of left acetabulum, sequela +C2838320|T037|AB|S32.482S|ICD10CM|Displaced dome fracture of left acetabulum, sequela|Displaced dome fracture of left acetabulum, sequela +C2838321|T037|AB|S32.483|ICD10CM|Displaced dome fracture of unspecified acetabulum|Displaced dome fracture of unspecified acetabulum +C2838321|T037|HT|S32.483|ICD10CM|Displaced dome fracture of unspecified acetabulum|Displaced dome fracture of unspecified acetabulum +C2838322|T037|AB|S32.483A|ICD10CM|Displaced dome fracture of unsp acetabulum, init for clos fx|Displaced dome fracture of unsp acetabulum, init for clos fx +C2838322|T037|PT|S32.483A|ICD10CM|Displaced dome fracture of unspecified acetabulum, initial encounter for closed fracture|Displaced dome fracture of unspecified acetabulum, initial encounter for closed fracture +C2838323|T037|AB|S32.483B|ICD10CM|Displaced dome fracture of unsp acetabulum, init for opn fx|Displaced dome fracture of unsp acetabulum, init for opn fx +C2838323|T037|PT|S32.483B|ICD10CM|Displaced dome fracture of unspecified acetabulum, initial encounter for open fracture|Displaced dome fracture of unspecified acetabulum, initial encounter for open fracture +C2838324|T037|AB|S32.483D|ICD10CM|Displaced dome fx unsp acetabulum, subs for fx w routn heal|Displaced dome fx unsp acetabulum, subs for fx w routn heal +C2838325|T037|AB|S32.483G|ICD10CM|Displaced dome fx unsp acetabulum, subs for fx w delay heal|Displaced dome fx unsp acetabulum, subs for fx w delay heal +C2838326|T037|PT|S32.483K|ICD10CM|Displaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion|Displaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion +C2838326|T037|AB|S32.483K|ICD10CM|Displaced dome fx unsp acetabulum, subs for fx w nonunion|Displaced dome fx unsp acetabulum, subs for fx w nonunion +C2838327|T037|PT|S32.483S|ICD10CM|Displaced dome fracture of unspecified acetabulum, sequela|Displaced dome fracture of unspecified acetabulum, sequela +C2838327|T037|AB|S32.483S|ICD10CM|Displaced dome fracture of unspecified acetabulum, sequela|Displaced dome fracture of unspecified acetabulum, sequela +C2838328|T037|AB|S32.484|ICD10CM|Nondisplaced dome fracture of right acetabulum|Nondisplaced dome fracture of right acetabulum +C2838328|T037|HT|S32.484|ICD10CM|Nondisplaced dome fracture of right acetabulum|Nondisplaced dome fracture of right acetabulum +C2838329|T037|AB|S32.484A|ICD10CM|Nondisplaced dome fracture of right acetabulum, init|Nondisplaced dome fracture of right acetabulum, init +C2838329|T037|PT|S32.484A|ICD10CM|Nondisplaced dome fracture of right acetabulum, initial encounter for closed fracture|Nondisplaced dome fracture of right acetabulum, initial encounter for closed fracture +C2838330|T037|AB|S32.484B|ICD10CM|Nondisp dome fracture of right acetabulum, init for opn fx|Nondisp dome fracture of right acetabulum, init for opn fx +C2838330|T037|PT|S32.484B|ICD10CM|Nondisplaced dome fracture of right acetabulum, initial encounter for open fracture|Nondisplaced dome fracture of right acetabulum, initial encounter for open fracture +C2838331|T037|AB|S32.484D|ICD10CM|Nondisp dome fx right acetabulum, subs for fx w routn heal|Nondisp dome fx right acetabulum, subs for fx w routn heal +C2838332|T037|AB|S32.484G|ICD10CM|Nondisp dome fx right acetabulum, subs for fx w delay heal|Nondisp dome fx right acetabulum, subs for fx w delay heal +C2838333|T037|AB|S32.484K|ICD10CM|Nondisp dome fx right acetabulum, subs for fx w nonunion|Nondisp dome fx right acetabulum, subs for fx w nonunion +C2838333|T037|PT|S32.484K|ICD10CM|Nondisplaced dome fracture of right acetabulum, subsequent encounter for fracture with nonunion|Nondisplaced dome fracture of right acetabulum, subsequent encounter for fracture with nonunion +C2838334|T037|PT|S32.484S|ICD10CM|Nondisplaced dome fracture of right acetabulum, sequela|Nondisplaced dome fracture of right acetabulum, sequela +C2838334|T037|AB|S32.484S|ICD10CM|Nondisplaced dome fracture of right acetabulum, sequela|Nondisplaced dome fracture of right acetabulum, sequela +C2838335|T037|AB|S32.485|ICD10CM|Nondisplaced dome fracture of left acetabulum|Nondisplaced dome fracture of left acetabulum +C2838335|T037|HT|S32.485|ICD10CM|Nondisplaced dome fracture of left acetabulum|Nondisplaced dome fracture of left acetabulum +C2838336|T037|AB|S32.485A|ICD10CM|Nondisplaced dome fracture of left acetabulum, init|Nondisplaced dome fracture of left acetabulum, init +C2838336|T037|PT|S32.485A|ICD10CM|Nondisplaced dome fracture of left acetabulum, initial encounter for closed fracture|Nondisplaced dome fracture of left acetabulum, initial encounter for closed fracture +C2838337|T037|AB|S32.485B|ICD10CM|Nondisp dome fracture of left acetabulum, init for opn fx|Nondisp dome fracture of left acetabulum, init for opn fx +C2838337|T037|PT|S32.485B|ICD10CM|Nondisplaced dome fracture of left acetabulum, initial encounter for open fracture|Nondisplaced dome fracture of left acetabulum, initial encounter for open fracture +C2838338|T037|AB|S32.485D|ICD10CM|Nondisp dome fx left acetabulum, subs for fx w routn heal|Nondisp dome fx left acetabulum, subs for fx w routn heal +C2838339|T037|AB|S32.485G|ICD10CM|Nondisp dome fx left acetabulum, subs for fx w delay heal|Nondisp dome fx left acetabulum, subs for fx w delay heal +C2838340|T037|AB|S32.485K|ICD10CM|Nondisp dome fx left acetabulum, subs for fx w nonunion|Nondisp dome fx left acetabulum, subs for fx w nonunion +C2838340|T037|PT|S32.485K|ICD10CM|Nondisplaced dome fracture of left acetabulum, subsequent encounter for fracture with nonunion|Nondisplaced dome fracture of left acetabulum, subsequent encounter for fracture with nonunion +C2838341|T037|PT|S32.485S|ICD10CM|Nondisplaced dome fracture of left acetabulum, sequela|Nondisplaced dome fracture of left acetabulum, sequela +C2838341|T037|AB|S32.485S|ICD10CM|Nondisplaced dome fracture of left acetabulum, sequela|Nondisplaced dome fracture of left acetabulum, sequela +C2838342|T037|AB|S32.486|ICD10CM|Nondisplaced dome fracture of unspecified acetabulum|Nondisplaced dome fracture of unspecified acetabulum +C2838342|T037|HT|S32.486|ICD10CM|Nondisplaced dome fracture of unspecified acetabulum|Nondisplaced dome fracture of unspecified acetabulum +C2838343|T037|AB|S32.486A|ICD10CM|Nondisplaced dome fracture of unsp acetabulum, init|Nondisplaced dome fracture of unsp acetabulum, init +C2838343|T037|PT|S32.486A|ICD10CM|Nondisplaced dome fracture of unspecified acetabulum, initial encounter for closed fracture|Nondisplaced dome fracture of unspecified acetabulum, initial encounter for closed fracture +C2838344|T037|AB|S32.486B|ICD10CM|Nondisp dome fracture of unsp acetabulum, init for opn fx|Nondisp dome fracture of unsp acetabulum, init for opn fx +C2838344|T037|PT|S32.486B|ICD10CM|Nondisplaced dome fracture of unspecified acetabulum, initial encounter for open fracture|Nondisplaced dome fracture of unspecified acetabulum, initial encounter for open fracture +C2838345|T037|AB|S32.486D|ICD10CM|Nondisp dome fx unsp acetabulum, subs for fx w routn heal|Nondisp dome fx unsp acetabulum, subs for fx w routn heal +C2838346|T037|AB|S32.486G|ICD10CM|Nondisp dome fx unsp acetabulum, subs for fx w delay heal|Nondisp dome fx unsp acetabulum, subs for fx w delay heal +C2838347|T037|AB|S32.486K|ICD10CM|Nondisp dome fx unsp acetabulum, subs for fx w nonunion|Nondisp dome fx unsp acetabulum, subs for fx w nonunion +C2838348|T037|AB|S32.486S|ICD10CM|Nondisplaced dome fracture of unsp acetabulum, sequela|Nondisplaced dome fracture of unsp acetabulum, sequela +C2838348|T037|PT|S32.486S|ICD10CM|Nondisplaced dome fracture of unspecified acetabulum, sequela|Nondisplaced dome fracture of unspecified acetabulum, sequela +C2838349|T037|AB|S32.49|ICD10CM|Other specified fracture of acetabulum|Other specified fracture of acetabulum +C2838349|T037|HT|S32.49|ICD10CM|Other specified fracture of acetabulum|Other specified fracture of acetabulum +C2838350|T037|AB|S32.491|ICD10CM|Other specified fracture of right acetabulum|Other specified fracture of right acetabulum +C2838350|T037|HT|S32.491|ICD10CM|Other specified fracture of right acetabulum|Other specified fracture of right acetabulum +C2838351|T037|AB|S32.491A|ICD10CM|Oth fracture of right acetabulum, init for clos fx|Oth fracture of right acetabulum, init for clos fx +C2838351|T037|PT|S32.491A|ICD10CM|Other specified fracture of right acetabulum, initial encounter for closed fracture|Other specified fracture of right acetabulum, initial encounter for closed fracture +C2838352|T037|AB|S32.491B|ICD10CM|Oth fracture of right acetabulum, init for opn fx|Oth fracture of right acetabulum, init for opn fx +C2838352|T037|PT|S32.491B|ICD10CM|Other specified fracture of right acetabulum, initial encounter for open fracture|Other specified fracture of right acetabulum, initial encounter for open fracture +C2838353|T037|AB|S32.491D|ICD10CM|Oth fracture of right acetabulum, subs for fx w routn heal|Oth fracture of right acetabulum, subs for fx w routn heal +C2838353|T037|PT|S32.491D|ICD10CM|Other specified fracture of right acetabulum, subsequent encounter for fracture with routine healing|Other specified fracture of right acetabulum, subsequent encounter for fracture with routine healing +C2838354|T037|AB|S32.491G|ICD10CM|Oth fracture of right acetabulum, subs for fx w delay heal|Oth fracture of right acetabulum, subs for fx w delay heal +C2838354|T037|PT|S32.491G|ICD10CM|Other specified fracture of right acetabulum, subsequent encounter for fracture with delayed healing|Other specified fracture of right acetabulum, subsequent encounter for fracture with delayed healing +C2838355|T037|AB|S32.491K|ICD10CM|Oth fracture of right acetabulum, subs for fx w nonunion|Oth fracture of right acetabulum, subs for fx w nonunion +C2838355|T037|PT|S32.491K|ICD10CM|Other specified fracture of right acetabulum, subsequent encounter for fracture with nonunion|Other specified fracture of right acetabulum, subsequent encounter for fracture with nonunion +C2838356|T037|AB|S32.491S|ICD10CM|Other specified fracture of right acetabulum, sequela|Other specified fracture of right acetabulum, sequela +C2838356|T037|PT|S32.491S|ICD10CM|Other specified fracture of right acetabulum, sequela|Other specified fracture of right acetabulum, sequela +C2838357|T037|AB|S32.492|ICD10CM|Other specified fracture of left acetabulum|Other specified fracture of left acetabulum +C2838357|T037|HT|S32.492|ICD10CM|Other specified fracture of left acetabulum|Other specified fracture of left acetabulum +C2838358|T037|AB|S32.492A|ICD10CM|Oth fracture of left acetabulum, init for clos fx|Oth fracture of left acetabulum, init for clos fx +C2838358|T037|PT|S32.492A|ICD10CM|Other specified fracture of left acetabulum, initial encounter for closed fracture|Other specified fracture of left acetabulum, initial encounter for closed fracture +C2838359|T037|AB|S32.492B|ICD10CM|Oth fracture of left acetabulum, init for opn fx|Oth fracture of left acetabulum, init for opn fx +C2838359|T037|PT|S32.492B|ICD10CM|Other specified fracture of left acetabulum, initial encounter for open fracture|Other specified fracture of left acetabulum, initial encounter for open fracture +C2838360|T037|AB|S32.492D|ICD10CM|Oth fracture of left acetabulum, subs for fx w routn heal|Oth fracture of left acetabulum, subs for fx w routn heal +C2838360|T037|PT|S32.492D|ICD10CM|Other specified fracture of left acetabulum, subsequent encounter for fracture with routine healing|Other specified fracture of left acetabulum, subsequent encounter for fracture with routine healing +C2838361|T037|AB|S32.492G|ICD10CM|Oth fracture of left acetabulum, subs for fx w delay heal|Oth fracture of left acetabulum, subs for fx w delay heal +C2838361|T037|PT|S32.492G|ICD10CM|Other specified fracture of left acetabulum, subsequent encounter for fracture with delayed healing|Other specified fracture of left acetabulum, subsequent encounter for fracture with delayed healing +C2838362|T037|AB|S32.492K|ICD10CM|Oth fracture of left acetabulum, subs for fx w nonunion|Oth fracture of left acetabulum, subs for fx w nonunion +C2838362|T037|PT|S32.492K|ICD10CM|Other specified fracture of left acetabulum, subsequent encounter for fracture with nonunion|Other specified fracture of left acetabulum, subsequent encounter for fracture with nonunion +C2838363|T037|AB|S32.492S|ICD10CM|Other specified fracture of left acetabulum, sequela|Other specified fracture of left acetabulum, sequela +C2838363|T037|PT|S32.492S|ICD10CM|Other specified fracture of left acetabulum, sequela|Other specified fracture of left acetabulum, sequela +C2838364|T037|AB|S32.499|ICD10CM|Other specified fracture of unspecified acetabulum|Other specified fracture of unspecified acetabulum +C2838364|T037|HT|S32.499|ICD10CM|Other specified fracture of unspecified acetabulum|Other specified fracture of unspecified acetabulum +C2838365|T037|AB|S32.499A|ICD10CM|Oth fracture of unsp acetabulum, init for clos fx|Oth fracture of unsp acetabulum, init for clos fx +C2838365|T037|PT|S32.499A|ICD10CM|Other specified fracture of unspecified acetabulum, initial encounter for closed fracture|Other specified fracture of unspecified acetabulum, initial encounter for closed fracture +C2838366|T037|AB|S32.499B|ICD10CM|Oth fracture of unsp acetabulum, init for opn fx|Oth fracture of unsp acetabulum, init for opn fx +C2838366|T037|PT|S32.499B|ICD10CM|Other specified fracture of unspecified acetabulum, initial encounter for open fracture|Other specified fracture of unspecified acetabulum, initial encounter for open fracture +C2838367|T037|AB|S32.499D|ICD10CM|Oth fracture of unsp acetabulum, subs for fx w routn heal|Oth fracture of unsp acetabulum, subs for fx w routn heal +C2838368|T037|AB|S32.499G|ICD10CM|Oth fracture of unsp acetabulum, subs for fx w delay heal|Oth fracture of unsp acetabulum, subs for fx w delay heal +C2838369|T037|AB|S32.499K|ICD10CM|Oth fracture of unsp acetabulum, subs for fx w nonunion|Oth fracture of unsp acetabulum, subs for fx w nonunion +C2838369|T037|PT|S32.499K|ICD10CM|Other specified fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion|Other specified fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion +C2838370|T037|AB|S32.499S|ICD10CM|Other specified fracture of unspecified acetabulum, sequela|Other specified fracture of unspecified acetabulum, sequela +C2838370|T037|PT|S32.499S|ICD10CM|Other specified fracture of unspecified acetabulum, sequela|Other specified fracture of unspecified acetabulum, sequela +C0347806|T037|HT|S32.5|ICD10CM|Fracture of pubis|Fracture of pubis +C0347806|T037|AB|S32.5|ICD10CM|Fracture of pubis|Fracture of pubis +C0347806|T037|PT|S32.5|ICD10|Fracture of pubis|Fracture of pubis +C0347806|T037|AB|S32.50|ICD10CM|Unspecified fracture of pubis|Unspecified fracture of pubis +C0347806|T037|HT|S32.50|ICD10CM|Unspecified fracture of pubis|Unspecified fracture of pubis +C2977840|T037|AB|S32.501|ICD10CM|Unspecified fracture of right pubis|Unspecified fracture of right pubis +C2977840|T037|HT|S32.501|ICD10CM|Unspecified fracture of right pubis|Unspecified fracture of right pubis +C2977841|T037|AB|S32.501A|ICD10CM|Unsp fracture of right pubis, init for clos fx|Unsp fracture of right pubis, init for clos fx +C2977841|T037|PT|S32.501A|ICD10CM|Unspecified fracture of right pubis, initial encounter for closed fracture|Unspecified fracture of right pubis, initial encounter for closed fracture +C2977842|T037|AB|S32.501B|ICD10CM|Unsp fracture of right pubis, init encntr for open fracture|Unsp fracture of right pubis, init encntr for open fracture +C2977842|T037|PT|S32.501B|ICD10CM|Unspecified fracture of right pubis, initial encounter for open fracture|Unspecified fracture of right pubis, initial encounter for open fracture +C2977843|T037|AB|S32.501D|ICD10CM|Unsp fracture of right pubis, subs for fx w routn heal|Unsp fracture of right pubis, subs for fx w routn heal +C2977843|T037|PT|S32.501D|ICD10CM|Unspecified fracture of right pubis, subsequent encounter for fracture with routine healing|Unspecified fracture of right pubis, subsequent encounter for fracture with routine healing +C2977844|T037|AB|S32.501G|ICD10CM|Unsp fracture of right pubis, subs for fx w delay heal|Unsp fracture of right pubis, subs for fx w delay heal +C2977844|T037|PT|S32.501G|ICD10CM|Unspecified fracture of right pubis, subsequent encounter for fracture with delayed healing|Unspecified fracture of right pubis, subsequent encounter for fracture with delayed healing +C2977845|T037|AB|S32.501K|ICD10CM|Unsp fracture of right pubis, subs for fx w nonunion|Unsp fracture of right pubis, subs for fx w nonunion +C2977845|T037|PT|S32.501K|ICD10CM|Unspecified fracture of right pubis, subsequent encounter for fracture with nonunion|Unspecified fracture of right pubis, subsequent encounter for fracture with nonunion +C2977846|T037|AB|S32.501S|ICD10CM|Unspecified fracture of right pubis, sequela|Unspecified fracture of right pubis, sequela +C2977846|T037|PT|S32.501S|ICD10CM|Unspecified fracture of right pubis, sequela|Unspecified fracture of right pubis, sequela +C2977847|T037|AB|S32.502|ICD10CM|Unspecified fracture of left pubis|Unspecified fracture of left pubis +C2977847|T037|HT|S32.502|ICD10CM|Unspecified fracture of left pubis|Unspecified fracture of left pubis +C2977848|T037|AB|S32.502A|ICD10CM|Unsp fracture of left pubis, init encntr for closed fracture|Unsp fracture of left pubis, init encntr for closed fracture +C2977848|T037|PT|S32.502A|ICD10CM|Unspecified fracture of left pubis, initial encounter for closed fracture|Unspecified fracture of left pubis, initial encounter for closed fracture +C2977849|T037|AB|S32.502B|ICD10CM|Unsp fracture of left pubis, init encntr for open fracture|Unsp fracture of left pubis, init encntr for open fracture +C2977849|T037|PT|S32.502B|ICD10CM|Unspecified fracture of left pubis, initial encounter for open fracture|Unspecified fracture of left pubis, initial encounter for open fracture +C2977850|T037|AB|S32.502D|ICD10CM|Unsp fracture of left pubis, subs for fx w routn heal|Unsp fracture of left pubis, subs for fx w routn heal +C2977850|T037|PT|S32.502D|ICD10CM|Unspecified fracture of left pubis, subsequent encounter for fracture with routine healing|Unspecified fracture of left pubis, subsequent encounter for fracture with routine healing +C2977851|T037|AB|S32.502G|ICD10CM|Unsp fracture of left pubis, subs for fx w delay heal|Unsp fracture of left pubis, subs for fx w delay heal +C2977851|T037|PT|S32.502G|ICD10CM|Unspecified fracture of left pubis, subsequent encounter for fracture with delayed healing|Unspecified fracture of left pubis, subsequent encounter for fracture with delayed healing +C2977852|T037|AB|S32.502K|ICD10CM|Unsp fracture of left pubis, subs for fx w nonunion|Unsp fracture of left pubis, subs for fx w nonunion +C2977852|T037|PT|S32.502K|ICD10CM|Unspecified fracture of left pubis, subsequent encounter for fracture with nonunion|Unspecified fracture of left pubis, subsequent encounter for fracture with nonunion +C2977853|T037|AB|S32.502S|ICD10CM|Unspecified fracture of left pubis, sequela|Unspecified fracture of left pubis, sequela +C2977853|T037|PT|S32.502S|ICD10CM|Unspecified fracture of left pubis, sequela|Unspecified fracture of left pubis, sequela +C2977854|T037|AB|S32.509|ICD10CM|Unspecified fracture of unspecified pubis|Unspecified fracture of unspecified pubis +C2977854|T037|HT|S32.509|ICD10CM|Unspecified fracture of unspecified pubis|Unspecified fracture of unspecified pubis +C2977855|T037|AB|S32.509A|ICD10CM|Unsp fracture of unsp pubis, init encntr for closed fracture|Unsp fracture of unsp pubis, init encntr for closed fracture +C2977855|T037|PT|S32.509A|ICD10CM|Unspecified fracture of unspecified pubis, initial encounter for closed fracture|Unspecified fracture of unspecified pubis, initial encounter for closed fracture +C2977856|T037|AB|S32.509B|ICD10CM|Unsp fracture of unsp pubis, init encntr for open fracture|Unsp fracture of unsp pubis, init encntr for open fracture +C2977856|T037|PT|S32.509B|ICD10CM|Unspecified fracture of unspecified pubis, initial encounter for open fracture|Unspecified fracture of unspecified pubis, initial encounter for open fracture +C2977857|T037|AB|S32.509D|ICD10CM|Unsp fracture of unsp pubis, subs for fx w routn heal|Unsp fracture of unsp pubis, subs for fx w routn heal +C2977857|T037|PT|S32.509D|ICD10CM|Unspecified fracture of unspecified pubis, subsequent encounter for fracture with routine healing|Unspecified fracture of unspecified pubis, subsequent encounter for fracture with routine healing +C2977858|T037|AB|S32.509G|ICD10CM|Unsp fracture of unsp pubis, subs for fx w delay heal|Unsp fracture of unsp pubis, subs for fx w delay heal +C2977858|T037|PT|S32.509G|ICD10CM|Unspecified fracture of unspecified pubis, subsequent encounter for fracture with delayed healing|Unspecified fracture of unspecified pubis, subsequent encounter for fracture with delayed healing +C2977859|T037|AB|S32.509K|ICD10CM|Unsp fracture of unsp pubis, subs for fx w nonunion|Unsp fracture of unsp pubis, subs for fx w nonunion +C2977859|T037|PT|S32.509K|ICD10CM|Unspecified fracture of unspecified pubis, subsequent encounter for fracture with nonunion|Unspecified fracture of unspecified pubis, subsequent encounter for fracture with nonunion +C2977860|T037|AB|S32.509S|ICD10CM|Unspecified fracture of unspecified pubis, sequela|Unspecified fracture of unspecified pubis, sequela +C2977860|T037|PT|S32.509S|ICD10CM|Unspecified fracture of unspecified pubis, sequela|Unspecified fracture of unspecified pubis, sequela +C2838377|T037|AB|S32.51|ICD10CM|Fracture of superior rim of pubis|Fracture of superior rim of pubis +C2838377|T037|HT|S32.51|ICD10CM|Fracture of superior rim of pubis|Fracture of superior rim of pubis +C2838378|T037|AB|S32.511|ICD10CM|Fracture of superior rim of right pubis|Fracture of superior rim of right pubis +C2838378|T037|HT|S32.511|ICD10CM|Fracture of superior rim of right pubis|Fracture of superior rim of right pubis +C2838379|T037|AB|S32.511A|ICD10CM|Fracture of superior rim of right pubis, init for clos fx|Fracture of superior rim of right pubis, init for clos fx +C2838379|T037|PT|S32.511A|ICD10CM|Fracture of superior rim of right pubis, initial encounter for closed fracture|Fracture of superior rim of right pubis, initial encounter for closed fracture +C2838380|T037|AB|S32.511B|ICD10CM|Fracture of superior rim of right pubis, init for opn fx|Fracture of superior rim of right pubis, init for opn fx +C2838380|T037|PT|S32.511B|ICD10CM|Fracture of superior rim of right pubis, initial encounter for open fracture|Fracture of superior rim of right pubis, initial encounter for open fracture +C2838381|T037|PT|S32.511D|ICD10CM|Fracture of superior rim of right pubis, subsequent encounter for fracture with routine healing|Fracture of superior rim of right pubis, subsequent encounter for fracture with routine healing +C2838381|T037|AB|S32.511D|ICD10CM|Fx superior rim of right pubis, subs for fx w routn heal|Fx superior rim of right pubis, subs for fx w routn heal +C2838382|T037|PT|S32.511G|ICD10CM|Fracture of superior rim of right pubis, subsequent encounter for fracture with delayed healing|Fracture of superior rim of right pubis, subsequent encounter for fracture with delayed healing +C2838382|T037|AB|S32.511G|ICD10CM|Fx superior rim of right pubis, subs for fx w delay heal|Fx superior rim of right pubis, subs for fx w delay heal +C2838383|T037|PT|S32.511K|ICD10CM|Fracture of superior rim of right pubis, subsequent encounter for fracture with nonunion|Fracture of superior rim of right pubis, subsequent encounter for fracture with nonunion +C2838383|T037|AB|S32.511K|ICD10CM|Fx superior rim of right pubis, subs for fx w nonunion|Fx superior rim of right pubis, subs for fx w nonunion +C2838384|T037|AB|S32.511S|ICD10CM|Fracture of superior rim of right pubis, sequela|Fracture of superior rim of right pubis, sequela +C2838384|T037|PT|S32.511S|ICD10CM|Fracture of superior rim of right pubis, sequela|Fracture of superior rim of right pubis, sequela +C2838385|T037|AB|S32.512|ICD10CM|Fracture of superior rim of left pubis|Fracture of superior rim of left pubis +C2838385|T037|HT|S32.512|ICD10CM|Fracture of superior rim of left pubis|Fracture of superior rim of left pubis +C2838386|T037|AB|S32.512A|ICD10CM|Fracture of superior rim of left pubis, init for clos fx|Fracture of superior rim of left pubis, init for clos fx +C2838386|T037|PT|S32.512A|ICD10CM|Fracture of superior rim of left pubis, initial encounter for closed fracture|Fracture of superior rim of left pubis, initial encounter for closed fracture +C2838387|T037|AB|S32.512B|ICD10CM|Fracture of superior rim of left pubis, init for opn fx|Fracture of superior rim of left pubis, init for opn fx +C2838387|T037|PT|S32.512B|ICD10CM|Fracture of superior rim of left pubis, initial encounter for open fracture|Fracture of superior rim of left pubis, initial encounter for open fracture +C2838388|T037|PT|S32.512D|ICD10CM|Fracture of superior rim of left pubis, subsequent encounter for fracture with routine healing|Fracture of superior rim of left pubis, subsequent encounter for fracture with routine healing +C2838388|T037|AB|S32.512D|ICD10CM|Fx superior rim of left pubis, subs for fx w routn heal|Fx superior rim of left pubis, subs for fx w routn heal +C2838389|T037|PT|S32.512G|ICD10CM|Fracture of superior rim of left pubis, subsequent encounter for fracture with delayed healing|Fracture of superior rim of left pubis, subsequent encounter for fracture with delayed healing +C2838389|T037|AB|S32.512G|ICD10CM|Fx superior rim of left pubis, subs for fx w delay heal|Fx superior rim of left pubis, subs for fx w delay heal +C2838390|T037|PT|S32.512K|ICD10CM|Fracture of superior rim of left pubis, subsequent encounter for fracture with nonunion|Fracture of superior rim of left pubis, subsequent encounter for fracture with nonunion +C2838390|T037|AB|S32.512K|ICD10CM|Fx superior rim of left pubis, subs for fx w nonunion|Fx superior rim of left pubis, subs for fx w nonunion +C2838391|T037|AB|S32.512S|ICD10CM|Fracture of superior rim of left pubis, sequela|Fracture of superior rim of left pubis, sequela +C2838391|T037|PT|S32.512S|ICD10CM|Fracture of superior rim of left pubis, sequela|Fracture of superior rim of left pubis, sequela +C2838392|T037|AB|S32.519|ICD10CM|Fracture of superior rim of unspecified pubis|Fracture of superior rim of unspecified pubis +C2838392|T037|HT|S32.519|ICD10CM|Fracture of superior rim of unspecified pubis|Fracture of superior rim of unspecified pubis +C2838393|T037|AB|S32.519A|ICD10CM|Fracture of superior rim of unsp pubis, init for clos fx|Fracture of superior rim of unsp pubis, init for clos fx +C2838393|T037|PT|S32.519A|ICD10CM|Fracture of superior rim of unspecified pubis, initial encounter for closed fracture|Fracture of superior rim of unspecified pubis, initial encounter for closed fracture +C2838394|T037|AB|S32.519B|ICD10CM|Fracture of superior rim of unsp pubis, init for opn fx|Fracture of superior rim of unsp pubis, init for opn fx +C2838394|T037|PT|S32.519B|ICD10CM|Fracture of superior rim of unspecified pubis, initial encounter for open fracture|Fracture of superior rim of unspecified pubis, initial encounter for open fracture +C2838395|T037|AB|S32.519D|ICD10CM|Fx superior rim of unsp pubis, subs for fx w routn heal|Fx superior rim of unsp pubis, subs for fx w routn heal +C2838396|T037|AB|S32.519G|ICD10CM|Fx superior rim of unsp pubis, subs for fx w delay heal|Fx superior rim of unsp pubis, subs for fx w delay heal +C2838397|T037|PT|S32.519K|ICD10CM|Fracture of superior rim of unspecified pubis, subsequent encounter for fracture with nonunion|Fracture of superior rim of unspecified pubis, subsequent encounter for fracture with nonunion +C2838397|T037|AB|S32.519K|ICD10CM|Fx superior rim of unsp pubis, subs for fx w nonunion|Fx superior rim of unsp pubis, subs for fx w nonunion +C2838398|T037|AB|S32.519S|ICD10CM|Fracture of superior rim of unspecified pubis, sequela|Fracture of superior rim of unspecified pubis, sequela +C2838398|T037|PT|S32.519S|ICD10CM|Fracture of superior rim of unspecified pubis, sequela|Fracture of superior rim of unspecified pubis, sequela +C2838399|T037|AB|S32.59|ICD10CM|Other specified fracture of pubis|Other specified fracture of pubis +C2838399|T037|HT|S32.59|ICD10CM|Other specified fracture of pubis|Other specified fracture of pubis +C2977861|T037|AB|S32.591|ICD10CM|Other specified fracture of right pubis|Other specified fracture of right pubis +C2977861|T037|HT|S32.591|ICD10CM|Other specified fracture of right pubis|Other specified fracture of right pubis +C2977862|T037|AB|S32.591A|ICD10CM|Oth fracture of right pubis, init encntr for closed fracture|Oth fracture of right pubis, init encntr for closed fracture +C2977862|T037|PT|S32.591A|ICD10CM|Other specified fracture of right pubis, initial encounter for closed fracture|Other specified fracture of right pubis, initial encounter for closed fracture +C2977863|T037|AB|S32.591B|ICD10CM|Oth fracture of right pubis, init encntr for open fracture|Oth fracture of right pubis, init encntr for open fracture +C2977863|T037|PT|S32.591B|ICD10CM|Other specified fracture of right pubis, initial encounter for open fracture|Other specified fracture of right pubis, initial encounter for open fracture +C2977864|T037|AB|S32.591D|ICD10CM|Oth fracture of right pubis, subs for fx w routn heal|Oth fracture of right pubis, subs for fx w routn heal +C2977864|T037|PT|S32.591D|ICD10CM|Other specified fracture of right pubis, subsequent encounter for fracture with routine healing|Other specified fracture of right pubis, subsequent encounter for fracture with routine healing +C2977865|T037|AB|S32.591G|ICD10CM|Oth fracture of right pubis, subs for fx w delay heal|Oth fracture of right pubis, subs for fx w delay heal +C2977865|T037|PT|S32.591G|ICD10CM|Other specified fracture of right pubis, subsequent encounter for fracture with delayed healing|Other specified fracture of right pubis, subsequent encounter for fracture with delayed healing +C2977866|T037|AB|S32.591K|ICD10CM|Oth fracture of right pubis, subs for fx w nonunion|Oth fracture of right pubis, subs for fx w nonunion +C2977866|T037|PT|S32.591K|ICD10CM|Other specified fracture of right pubis, subsequent encounter for fracture with nonunion|Other specified fracture of right pubis, subsequent encounter for fracture with nonunion +C2977867|T037|AB|S32.591S|ICD10CM|Other specified fracture of right pubis, sequela|Other specified fracture of right pubis, sequela +C2977867|T037|PT|S32.591S|ICD10CM|Other specified fracture of right pubis, sequela|Other specified fracture of right pubis, sequela +C2977868|T037|AB|S32.592|ICD10CM|Other specified fracture of left pubis|Other specified fracture of left pubis +C2977868|T037|HT|S32.592|ICD10CM|Other specified fracture of left pubis|Other specified fracture of left pubis +C2977869|T037|AB|S32.592A|ICD10CM|Oth fracture of left pubis, init encntr for closed fracture|Oth fracture of left pubis, init encntr for closed fracture +C2977869|T037|PT|S32.592A|ICD10CM|Other specified fracture of left pubis, initial encounter for closed fracture|Other specified fracture of left pubis, initial encounter for closed fracture +C2977870|T037|AB|S32.592B|ICD10CM|Oth fracture of left pubis, init encntr for open fracture|Oth fracture of left pubis, init encntr for open fracture +C2977870|T037|PT|S32.592B|ICD10CM|Other specified fracture of left pubis, initial encounter for open fracture|Other specified fracture of left pubis, initial encounter for open fracture +C2977871|T037|AB|S32.592D|ICD10CM|Oth fracture of left pubis, subs for fx w routn heal|Oth fracture of left pubis, subs for fx w routn heal +C2977871|T037|PT|S32.592D|ICD10CM|Other specified fracture of left pubis, subsequent encounter for fracture with routine healing|Other specified fracture of left pubis, subsequent encounter for fracture with routine healing +C2977872|T037|AB|S32.592G|ICD10CM|Oth fracture of left pubis, subs for fx w delay heal|Oth fracture of left pubis, subs for fx w delay heal +C2977872|T037|PT|S32.592G|ICD10CM|Other specified fracture of left pubis, subsequent encounter for fracture with delayed healing|Other specified fracture of left pubis, subsequent encounter for fracture with delayed healing +C2977873|T037|AB|S32.592K|ICD10CM|Oth fracture of left pubis, subs for fx w nonunion|Oth fracture of left pubis, subs for fx w nonunion +C2977873|T037|PT|S32.592K|ICD10CM|Other specified fracture of left pubis, subsequent encounter for fracture with nonunion|Other specified fracture of left pubis, subsequent encounter for fracture with nonunion +C2977874|T037|AB|S32.592S|ICD10CM|Other specified fracture of left pubis, sequela|Other specified fracture of left pubis, sequela +C2977874|T037|PT|S32.592S|ICD10CM|Other specified fracture of left pubis, sequela|Other specified fracture of left pubis, sequela +C2977875|T037|AB|S32.599|ICD10CM|Other specified fracture of unspecified pubis|Other specified fracture of unspecified pubis +C2977875|T037|HT|S32.599|ICD10CM|Other specified fracture of unspecified pubis|Other specified fracture of unspecified pubis +C2977876|T037|AB|S32.599A|ICD10CM|Oth fracture of unsp pubis, init encntr for closed fracture|Oth fracture of unsp pubis, init encntr for closed fracture +C2977876|T037|PT|S32.599A|ICD10CM|Other specified fracture of unspecified pubis, initial encounter for closed fracture|Other specified fracture of unspecified pubis, initial encounter for closed fracture +C2977877|T037|AB|S32.599B|ICD10CM|Oth fracture of unsp pubis, init encntr for open fracture|Oth fracture of unsp pubis, init encntr for open fracture +C2977877|T037|PT|S32.599B|ICD10CM|Other specified fracture of unspecified pubis, initial encounter for open fracture|Other specified fracture of unspecified pubis, initial encounter for open fracture +C2977878|T037|AB|S32.599D|ICD10CM|Oth fracture of unsp pubis, subs for fx w routn heal|Oth fracture of unsp pubis, subs for fx w routn heal +C2977879|T037|AB|S32.599G|ICD10CM|Oth fracture of unsp pubis, subs for fx w delay heal|Oth fracture of unsp pubis, subs for fx w delay heal +C2977880|T037|AB|S32.599K|ICD10CM|Oth fracture of unsp pubis, subs for fx w nonunion|Oth fracture of unsp pubis, subs for fx w nonunion +C2977880|T037|PT|S32.599K|ICD10CM|Other specified fracture of unspecified pubis, subsequent encounter for fracture with nonunion|Other specified fracture of unspecified pubis, subsequent encounter for fracture with nonunion +C2977881|T037|AB|S32.599S|ICD10CM|Other specified fracture of unspecified pubis, sequela|Other specified fracture of unspecified pubis, sequela +C2977881|T037|PT|S32.599S|ICD10CM|Other specified fracture of unspecified pubis, sequela|Other specified fracture of unspecified pubis, sequela +C0281887|T037|HT|S32.6|ICD10CM|Fracture of ischium|Fracture of ischium +C0281887|T037|AB|S32.6|ICD10CM|Fracture of ischium|Fracture of ischium +C2838406|T037|AB|S32.60|ICD10CM|Unspecified fracture of ischium|Unspecified fracture of ischium +C2838406|T037|HT|S32.60|ICD10CM|Unspecified fracture of ischium|Unspecified fracture of ischium +C2838407|T037|AB|S32.601|ICD10CM|Unspecified fracture of right ischium|Unspecified fracture of right ischium +C2838407|T037|HT|S32.601|ICD10CM|Unspecified fracture of right ischium|Unspecified fracture of right ischium +C2838408|T037|AB|S32.601A|ICD10CM|Unsp fracture of right ischium, init for clos fx|Unsp fracture of right ischium, init for clos fx +C2838408|T037|PT|S32.601A|ICD10CM|Unspecified fracture of right ischium, initial encounter for closed fracture|Unspecified fracture of right ischium, initial encounter for closed fracture +C2838409|T037|AB|S32.601B|ICD10CM|Unsp fracture of right ischium, init for opn fx|Unsp fracture of right ischium, init for opn fx +C2838409|T037|PT|S32.601B|ICD10CM|Unspecified fracture of right ischium, initial encounter for open fracture|Unspecified fracture of right ischium, initial encounter for open fracture +C2838410|T037|AB|S32.601D|ICD10CM|Unsp fracture of right ischium, subs for fx w routn heal|Unsp fracture of right ischium, subs for fx w routn heal +C2838410|T037|PT|S32.601D|ICD10CM|Unspecified fracture of right ischium, subsequent encounter for fracture with routine healing|Unspecified fracture of right ischium, subsequent encounter for fracture with routine healing +C2838411|T037|AB|S32.601G|ICD10CM|Unsp fracture of right ischium, subs for fx w delay heal|Unsp fracture of right ischium, subs for fx w delay heal +C2838411|T037|PT|S32.601G|ICD10CM|Unspecified fracture of right ischium, subsequent encounter for fracture with delayed healing|Unspecified fracture of right ischium, subsequent encounter for fracture with delayed healing +C2838412|T037|AB|S32.601K|ICD10CM|Unsp fracture of right ischium, subs for fx w nonunion|Unsp fracture of right ischium, subs for fx w nonunion +C2838412|T037|PT|S32.601K|ICD10CM|Unspecified fracture of right ischium, subsequent encounter for fracture with nonunion|Unspecified fracture of right ischium, subsequent encounter for fracture with nonunion +C2838413|T037|AB|S32.601S|ICD10CM|Unspecified fracture of right ischium, sequela|Unspecified fracture of right ischium, sequela +C2838413|T037|PT|S32.601S|ICD10CM|Unspecified fracture of right ischium, sequela|Unspecified fracture of right ischium, sequela +C2838414|T037|AB|S32.602|ICD10CM|Unspecified fracture of left ischium|Unspecified fracture of left ischium +C2838414|T037|HT|S32.602|ICD10CM|Unspecified fracture of left ischium|Unspecified fracture of left ischium +C2838415|T037|AB|S32.602A|ICD10CM|Unsp fracture of left ischium, init for clos fx|Unsp fracture of left ischium, init for clos fx +C2838415|T037|PT|S32.602A|ICD10CM|Unspecified fracture of left ischium, initial encounter for closed fracture|Unspecified fracture of left ischium, initial encounter for closed fracture +C2838416|T037|AB|S32.602B|ICD10CM|Unsp fracture of left ischium, init encntr for open fracture|Unsp fracture of left ischium, init encntr for open fracture +C2838416|T037|PT|S32.602B|ICD10CM|Unspecified fracture of left ischium, initial encounter for open fracture|Unspecified fracture of left ischium, initial encounter for open fracture +C2838417|T037|AB|S32.602D|ICD10CM|Unsp fracture of left ischium, subs for fx w routn heal|Unsp fracture of left ischium, subs for fx w routn heal +C2838417|T037|PT|S32.602D|ICD10CM|Unspecified fracture of left ischium, subsequent encounter for fracture with routine healing|Unspecified fracture of left ischium, subsequent encounter for fracture with routine healing +C2838418|T037|AB|S32.602G|ICD10CM|Unsp fracture of left ischium, subs for fx w delay heal|Unsp fracture of left ischium, subs for fx w delay heal +C2838418|T037|PT|S32.602G|ICD10CM|Unspecified fracture of left ischium, subsequent encounter for fracture with delayed healing|Unspecified fracture of left ischium, subsequent encounter for fracture with delayed healing +C2838419|T037|AB|S32.602K|ICD10CM|Unsp fracture of left ischium, subs for fx w nonunion|Unsp fracture of left ischium, subs for fx w nonunion +C2838419|T037|PT|S32.602K|ICD10CM|Unspecified fracture of left ischium, subsequent encounter for fracture with nonunion|Unspecified fracture of left ischium, subsequent encounter for fracture with nonunion +C2838420|T037|AB|S32.602S|ICD10CM|Unspecified fracture of left ischium, sequela|Unspecified fracture of left ischium, sequela +C2838420|T037|PT|S32.602S|ICD10CM|Unspecified fracture of left ischium, sequela|Unspecified fracture of left ischium, sequela +C2838421|T037|AB|S32.609|ICD10CM|Unspecified fracture of unspecified ischium|Unspecified fracture of unspecified ischium +C2838421|T037|HT|S32.609|ICD10CM|Unspecified fracture of unspecified ischium|Unspecified fracture of unspecified ischium +C2838422|T037|AB|S32.609A|ICD10CM|Unsp fracture of unsp ischium, init for clos fx|Unsp fracture of unsp ischium, init for clos fx +C2838422|T037|PT|S32.609A|ICD10CM|Unspecified fracture of unspecified ischium, initial encounter for closed fracture|Unspecified fracture of unspecified ischium, initial encounter for closed fracture +C2838423|T037|AB|S32.609B|ICD10CM|Unsp fracture of unsp ischium, init encntr for open fracture|Unsp fracture of unsp ischium, init encntr for open fracture +C2838423|T037|PT|S32.609B|ICD10CM|Unspecified fracture of unspecified ischium, initial encounter for open fracture|Unspecified fracture of unspecified ischium, initial encounter for open fracture +C2838424|T037|AB|S32.609D|ICD10CM|Unsp fracture of unsp ischium, subs for fx w routn heal|Unsp fracture of unsp ischium, subs for fx w routn heal +C2838424|T037|PT|S32.609D|ICD10CM|Unspecified fracture of unspecified ischium, subsequent encounter for fracture with routine healing|Unspecified fracture of unspecified ischium, subsequent encounter for fracture with routine healing +C2838425|T037|AB|S32.609G|ICD10CM|Unsp fracture of unsp ischium, subs for fx w delay heal|Unsp fracture of unsp ischium, subs for fx w delay heal +C2838425|T037|PT|S32.609G|ICD10CM|Unspecified fracture of unspecified ischium, subsequent encounter for fracture with delayed healing|Unspecified fracture of unspecified ischium, subsequent encounter for fracture with delayed healing +C2838426|T037|AB|S32.609K|ICD10CM|Unsp fracture of unsp ischium, subs for fx w nonunion|Unsp fracture of unsp ischium, subs for fx w nonunion +C2838426|T037|PT|S32.609K|ICD10CM|Unspecified fracture of unspecified ischium, subsequent encounter for fracture with nonunion|Unspecified fracture of unspecified ischium, subsequent encounter for fracture with nonunion +C2838427|T037|AB|S32.609S|ICD10CM|Unspecified fracture of unspecified ischium, sequela|Unspecified fracture of unspecified ischium, sequela +C2838427|T037|PT|S32.609S|ICD10CM|Unspecified fracture of unspecified ischium, sequela|Unspecified fracture of unspecified ischium, sequela +C2211218|T037|AB|S32.61|ICD10CM|Avulsion fracture of ischium|Avulsion fracture of ischium +C2211218|T037|HT|S32.61|ICD10CM|Avulsion fracture of ischium|Avulsion fracture of ischium +C2838428|T037|AB|S32.611|ICD10CM|Displaced avulsion fracture of right ischium|Displaced avulsion fracture of right ischium +C2838428|T037|HT|S32.611|ICD10CM|Displaced avulsion fracture of right ischium|Displaced avulsion fracture of right ischium +C2838429|T037|AB|S32.611A|ICD10CM|Displaced avulsion fracture of right ischium, init|Displaced avulsion fracture of right ischium, init +C2838429|T037|PT|S32.611A|ICD10CM|Displaced avulsion fracture of right ischium, initial encounter for closed fracture|Displaced avulsion fracture of right ischium, initial encounter for closed fracture +C2838430|T037|PT|S32.611B|ICD10CM|Displaced avulsion fracture of right ischium, initial encounter for open fracture|Displaced avulsion fracture of right ischium, initial encounter for open fracture +C2838430|T037|AB|S32.611B|ICD10CM|Displaced avulsion fx right ischium, init for opn fx|Displaced avulsion fx right ischium, init for opn fx +C2838431|T037|AB|S32.611D|ICD10CM|Displ avulsion fx right ischium, subs for fx w routn heal|Displ avulsion fx right ischium, subs for fx w routn heal +C2838431|T037|PT|S32.611D|ICD10CM|Displaced avulsion fracture of right ischium, subsequent encounter for fracture with routine healing|Displaced avulsion fracture of right ischium, subsequent encounter for fracture with routine healing +C2838432|T037|AB|S32.611G|ICD10CM|Displ avulsion fx right ischium, subs for fx w delay heal|Displ avulsion fx right ischium, subs for fx w delay heal +C2838432|T037|PT|S32.611G|ICD10CM|Displaced avulsion fracture of right ischium, subsequent encounter for fracture with delayed healing|Displaced avulsion fracture of right ischium, subsequent encounter for fracture with delayed healing +C2838433|T037|PT|S32.611K|ICD10CM|Displaced avulsion fracture of right ischium, subsequent encounter for fracture with nonunion|Displaced avulsion fracture of right ischium, subsequent encounter for fracture with nonunion +C2838433|T037|AB|S32.611K|ICD10CM|Displaced avulsion fx right ischium, subs for fx w nonunion|Displaced avulsion fx right ischium, subs for fx w nonunion +C2838434|T037|PT|S32.611S|ICD10CM|Displaced avulsion fracture of right ischium, sequela|Displaced avulsion fracture of right ischium, sequela +C2838434|T037|AB|S32.611S|ICD10CM|Displaced avulsion fracture of right ischium, sequela|Displaced avulsion fracture of right ischium, sequela +C2838435|T037|AB|S32.612|ICD10CM|Displaced avulsion fracture of left ischium|Displaced avulsion fracture of left ischium +C2838435|T037|HT|S32.612|ICD10CM|Displaced avulsion fracture of left ischium|Displaced avulsion fracture of left ischium +C2838436|T037|AB|S32.612A|ICD10CM|Displaced avulsion fracture of left ischium, init|Displaced avulsion fracture of left ischium, init +C2838436|T037|PT|S32.612A|ICD10CM|Displaced avulsion fracture of left ischium, initial encounter for closed fracture|Displaced avulsion fracture of left ischium, initial encounter for closed fracture +C2838437|T037|AB|S32.612B|ICD10CM|Displaced avulsion fracture of left ischium, init for opn fx|Displaced avulsion fracture of left ischium, init for opn fx +C2838437|T037|PT|S32.612B|ICD10CM|Displaced avulsion fracture of left ischium, initial encounter for open fracture|Displaced avulsion fracture of left ischium, initial encounter for open fracture +C2838438|T037|PT|S32.612D|ICD10CM|Displaced avulsion fracture of left ischium, subsequent encounter for fracture with routine healing|Displaced avulsion fracture of left ischium, subsequent encounter for fracture with routine healing +C2838438|T037|AB|S32.612D|ICD10CM|Displaced avulsion fx left ischium, subs for fx w routn heal|Displaced avulsion fx left ischium, subs for fx w routn heal +C2838439|T037|PT|S32.612G|ICD10CM|Displaced avulsion fracture of left ischium, subsequent encounter for fracture with delayed healing|Displaced avulsion fracture of left ischium, subsequent encounter for fracture with delayed healing +C2838439|T037|AB|S32.612G|ICD10CM|Displaced avulsion fx left ischium, subs for fx w delay heal|Displaced avulsion fx left ischium, subs for fx w delay heal +C2838440|T037|PT|S32.612K|ICD10CM|Displaced avulsion fracture of left ischium, subsequent encounter for fracture with nonunion|Displaced avulsion fracture of left ischium, subsequent encounter for fracture with nonunion +C2838440|T037|AB|S32.612K|ICD10CM|Displaced avulsion fx left ischium, subs for fx w nonunion|Displaced avulsion fx left ischium, subs for fx w nonunion +C2838441|T037|PT|S32.612S|ICD10CM|Displaced avulsion fracture of left ischium, sequela|Displaced avulsion fracture of left ischium, sequela +C2838441|T037|AB|S32.612S|ICD10CM|Displaced avulsion fracture of left ischium, sequela|Displaced avulsion fracture of left ischium, sequela +C2838442|T037|AB|S32.613|ICD10CM|Displaced avulsion fracture of unspecified ischium|Displaced avulsion fracture of unspecified ischium +C2838442|T037|HT|S32.613|ICD10CM|Displaced avulsion fracture of unspecified ischium|Displaced avulsion fracture of unspecified ischium +C2838443|T037|AB|S32.613A|ICD10CM|Displaced avulsion fracture of unsp ischium, init|Displaced avulsion fracture of unsp ischium, init +C2838443|T037|PT|S32.613A|ICD10CM|Displaced avulsion fracture of unspecified ischium, initial encounter for closed fracture|Displaced avulsion fracture of unspecified ischium, initial encounter for closed fracture +C2838444|T037|AB|S32.613B|ICD10CM|Displaced avulsion fracture of unsp ischium, init for opn fx|Displaced avulsion fracture of unsp ischium, init for opn fx +C2838444|T037|PT|S32.613B|ICD10CM|Displaced avulsion fracture of unspecified ischium, initial encounter for open fracture|Displaced avulsion fracture of unspecified ischium, initial encounter for open fracture +C2838445|T037|AB|S32.613D|ICD10CM|Displaced avulsion fx unsp ischium, subs for fx w routn heal|Displaced avulsion fx unsp ischium, subs for fx w routn heal +C2838446|T037|AB|S32.613G|ICD10CM|Displaced avulsion fx unsp ischium, subs for fx w delay heal|Displaced avulsion fx unsp ischium, subs for fx w delay heal +C2838447|T037|PT|S32.613K|ICD10CM|Displaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with nonunion|Displaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with nonunion +C2838447|T037|AB|S32.613K|ICD10CM|Displaced avulsion fx unsp ischium, subs for fx w nonunion|Displaced avulsion fx unsp ischium, subs for fx w nonunion +C2838448|T037|PT|S32.613S|ICD10CM|Displaced avulsion fracture of unspecified ischium, sequela|Displaced avulsion fracture of unspecified ischium, sequela +C2838448|T037|AB|S32.613S|ICD10CM|Displaced avulsion fracture of unspecified ischium, sequela|Displaced avulsion fracture of unspecified ischium, sequela +C2838449|T037|AB|S32.614|ICD10CM|Nondisplaced avulsion fracture of right ischium|Nondisplaced avulsion fracture of right ischium +C2838449|T037|HT|S32.614|ICD10CM|Nondisplaced avulsion fracture of right ischium|Nondisplaced avulsion fracture of right ischium +C2838450|T037|AB|S32.614A|ICD10CM|Nondisplaced avulsion fracture of right ischium, init|Nondisplaced avulsion fracture of right ischium, init +C2838450|T037|PT|S32.614A|ICD10CM|Nondisplaced avulsion fracture of right ischium, initial encounter for closed fracture|Nondisplaced avulsion fracture of right ischium, initial encounter for closed fracture +C2838451|T037|AB|S32.614B|ICD10CM|Nondisp avulsion fracture of right ischium, init for opn fx|Nondisp avulsion fracture of right ischium, init for opn fx +C2838451|T037|PT|S32.614B|ICD10CM|Nondisplaced avulsion fracture of right ischium, initial encounter for open fracture|Nondisplaced avulsion fracture of right ischium, initial encounter for open fracture +C2838452|T037|AB|S32.614D|ICD10CM|Nondisp avulsion fx right ischium, subs for fx w routn heal|Nondisp avulsion fx right ischium, subs for fx w routn heal +C2838453|T037|AB|S32.614G|ICD10CM|Nondisp avulsion fx right ischium, subs for fx w delay heal|Nondisp avulsion fx right ischium, subs for fx w delay heal +C2838454|T037|AB|S32.614K|ICD10CM|Nondisp avulsion fx right ischium, subs for fx w nonunion|Nondisp avulsion fx right ischium, subs for fx w nonunion +C2838454|T037|PT|S32.614K|ICD10CM|Nondisplaced avulsion fracture of right ischium, subsequent encounter for fracture with nonunion|Nondisplaced avulsion fracture of right ischium, subsequent encounter for fracture with nonunion +C2838455|T037|PT|S32.614S|ICD10CM|Nondisplaced avulsion fracture of right ischium, sequela|Nondisplaced avulsion fracture of right ischium, sequela +C2838455|T037|AB|S32.614S|ICD10CM|Nondisplaced avulsion fracture of right ischium, sequela|Nondisplaced avulsion fracture of right ischium, sequela +C2838456|T037|AB|S32.615|ICD10CM|Nondisplaced avulsion fracture of left ischium|Nondisplaced avulsion fracture of left ischium +C2838456|T037|HT|S32.615|ICD10CM|Nondisplaced avulsion fracture of left ischium|Nondisplaced avulsion fracture of left ischium +C2838457|T037|AB|S32.615A|ICD10CM|Nondisplaced avulsion fracture of left ischium, init|Nondisplaced avulsion fracture of left ischium, init +C2838457|T037|PT|S32.615A|ICD10CM|Nondisplaced avulsion fracture of left ischium, initial encounter for closed fracture|Nondisplaced avulsion fracture of left ischium, initial encounter for closed fracture +C2838458|T037|AB|S32.615B|ICD10CM|Nondisp avulsion fracture of left ischium, init for opn fx|Nondisp avulsion fracture of left ischium, init for opn fx +C2838458|T037|PT|S32.615B|ICD10CM|Nondisplaced avulsion fracture of left ischium, initial encounter for open fracture|Nondisplaced avulsion fracture of left ischium, initial encounter for open fracture +C2838459|T037|AB|S32.615D|ICD10CM|Nondisp avulsion fx left ischium, subs for fx w routn heal|Nondisp avulsion fx left ischium, subs for fx w routn heal +C2838460|T037|AB|S32.615G|ICD10CM|Nondisp avulsion fx left ischium, subs for fx w delay heal|Nondisp avulsion fx left ischium, subs for fx w delay heal +C2838461|T037|AB|S32.615K|ICD10CM|Nondisp avulsion fx left ischium, subs for fx w nonunion|Nondisp avulsion fx left ischium, subs for fx w nonunion +C2838461|T037|PT|S32.615K|ICD10CM|Nondisplaced avulsion fracture of left ischium, subsequent encounter for fracture with nonunion|Nondisplaced avulsion fracture of left ischium, subsequent encounter for fracture with nonunion +C2838462|T037|PT|S32.615S|ICD10CM|Nondisplaced avulsion fracture of left ischium, sequela|Nondisplaced avulsion fracture of left ischium, sequela +C2838462|T037|AB|S32.615S|ICD10CM|Nondisplaced avulsion fracture of left ischium, sequela|Nondisplaced avulsion fracture of left ischium, sequela +C2838463|T037|AB|S32.616|ICD10CM|Nondisplaced avulsion fracture of unspecified ischium|Nondisplaced avulsion fracture of unspecified ischium +C2838463|T037|HT|S32.616|ICD10CM|Nondisplaced avulsion fracture of unspecified ischium|Nondisplaced avulsion fracture of unspecified ischium +C2838464|T037|AB|S32.616A|ICD10CM|Nondisplaced avulsion fracture of unsp ischium, init|Nondisplaced avulsion fracture of unsp ischium, init +C2838464|T037|PT|S32.616A|ICD10CM|Nondisplaced avulsion fracture of unspecified ischium, initial encounter for closed fracture|Nondisplaced avulsion fracture of unspecified ischium, initial encounter for closed fracture +C2838465|T037|AB|S32.616B|ICD10CM|Nondisp avulsion fracture of unsp ischium, init for opn fx|Nondisp avulsion fracture of unsp ischium, init for opn fx +C2838465|T037|PT|S32.616B|ICD10CM|Nondisplaced avulsion fracture of unspecified ischium, initial encounter for open fracture|Nondisplaced avulsion fracture of unspecified ischium, initial encounter for open fracture +C2838466|T037|AB|S32.616D|ICD10CM|Nondisp avulsion fx unsp ischium, subs for fx w routn heal|Nondisp avulsion fx unsp ischium, subs for fx w routn heal +C2838467|T037|AB|S32.616G|ICD10CM|Nondisp avulsion fx unsp ischium, subs for fx w delay heal|Nondisp avulsion fx unsp ischium, subs for fx w delay heal +C2838468|T037|AB|S32.616K|ICD10CM|Nondisp avulsion fx unsp ischium, subs for fx w nonunion|Nondisp avulsion fx unsp ischium, subs for fx w nonunion +C2838469|T037|AB|S32.616S|ICD10CM|Nondisplaced avulsion fracture of unsp ischium, sequela|Nondisplaced avulsion fracture of unsp ischium, sequela +C2838469|T037|PT|S32.616S|ICD10CM|Nondisplaced avulsion fracture of unspecified ischium, sequela|Nondisplaced avulsion fracture of unspecified ischium, sequela +C2838470|T037|AB|S32.69|ICD10CM|Other specified fracture of ischium|Other specified fracture of ischium +C2838470|T037|HT|S32.69|ICD10CM|Other specified fracture of ischium|Other specified fracture of ischium +C2838471|T037|AB|S32.691|ICD10CM|Other specified fracture of right ischium|Other specified fracture of right ischium +C2838471|T037|HT|S32.691|ICD10CM|Other specified fracture of right ischium|Other specified fracture of right ischium +C2838472|T037|AB|S32.691A|ICD10CM|Oth fracture of right ischium, init for clos fx|Oth fracture of right ischium, init for clos fx +C2838472|T037|PT|S32.691A|ICD10CM|Other specified fracture of right ischium, initial encounter for closed fracture|Other specified fracture of right ischium, initial encounter for closed fracture +C2838473|T037|AB|S32.691B|ICD10CM|Oth fracture of right ischium, init encntr for open fracture|Oth fracture of right ischium, init encntr for open fracture +C2838473|T037|PT|S32.691B|ICD10CM|Other specified fracture of right ischium, initial encounter for open fracture|Other specified fracture of right ischium, initial encounter for open fracture +C2838474|T037|AB|S32.691D|ICD10CM|Oth fracture of right ischium, subs for fx w routn heal|Oth fracture of right ischium, subs for fx w routn heal +C2838474|T037|PT|S32.691D|ICD10CM|Other specified fracture of right ischium, subsequent encounter for fracture with routine healing|Other specified fracture of right ischium, subsequent encounter for fracture with routine healing +C2838475|T037|AB|S32.691G|ICD10CM|Oth fracture of right ischium, subs for fx w delay heal|Oth fracture of right ischium, subs for fx w delay heal +C2838475|T037|PT|S32.691G|ICD10CM|Other specified fracture of right ischium, subsequent encounter for fracture with delayed healing|Other specified fracture of right ischium, subsequent encounter for fracture with delayed healing +C2838476|T037|AB|S32.691K|ICD10CM|Oth fracture of right ischium, subs for fx w nonunion|Oth fracture of right ischium, subs for fx w nonunion +C2838476|T037|PT|S32.691K|ICD10CM|Other specified fracture of right ischium, subsequent encounter for fracture with nonunion|Other specified fracture of right ischium, subsequent encounter for fracture with nonunion +C2838477|T037|AB|S32.691S|ICD10CM|Other specified fracture of right ischium, sequela|Other specified fracture of right ischium, sequela +C2838477|T037|PT|S32.691S|ICD10CM|Other specified fracture of right ischium, sequela|Other specified fracture of right ischium, sequela +C2838478|T037|AB|S32.692|ICD10CM|Other specified fracture of left ischium|Other specified fracture of left ischium +C2838478|T037|HT|S32.692|ICD10CM|Other specified fracture of left ischium|Other specified fracture of left ischium +C2838479|T037|AB|S32.692A|ICD10CM|Oth fracture of left ischium, init for clos fx|Oth fracture of left ischium, init for clos fx +C2838479|T037|PT|S32.692A|ICD10CM|Other specified fracture of left ischium, initial encounter for closed fracture|Other specified fracture of left ischium, initial encounter for closed fracture +C2838480|T037|AB|S32.692B|ICD10CM|Oth fracture of left ischium, init encntr for open fracture|Oth fracture of left ischium, init encntr for open fracture +C2838480|T037|PT|S32.692B|ICD10CM|Other specified fracture of left ischium, initial encounter for open fracture|Other specified fracture of left ischium, initial encounter for open fracture +C2838481|T037|AB|S32.692D|ICD10CM|Oth fracture of left ischium, subs for fx w routn heal|Oth fracture of left ischium, subs for fx w routn heal +C2838481|T037|PT|S32.692D|ICD10CM|Other specified fracture of left ischium, subsequent encounter for fracture with routine healing|Other specified fracture of left ischium, subsequent encounter for fracture with routine healing +C2838482|T037|AB|S32.692G|ICD10CM|Oth fracture of left ischium, subs for fx w delay heal|Oth fracture of left ischium, subs for fx w delay heal +C2838482|T037|PT|S32.692G|ICD10CM|Other specified fracture of left ischium, subsequent encounter for fracture with delayed healing|Other specified fracture of left ischium, subsequent encounter for fracture with delayed healing +C2838483|T037|AB|S32.692K|ICD10CM|Oth fracture of left ischium, subs for fx w nonunion|Oth fracture of left ischium, subs for fx w nonunion +C2838483|T037|PT|S32.692K|ICD10CM|Other specified fracture of left ischium, subsequent encounter for fracture with nonunion|Other specified fracture of left ischium, subsequent encounter for fracture with nonunion +C2838484|T037|AB|S32.692S|ICD10CM|Other specified fracture of left ischium, sequela|Other specified fracture of left ischium, sequela +C2838484|T037|PT|S32.692S|ICD10CM|Other specified fracture of left ischium, sequela|Other specified fracture of left ischium, sequela +C2838485|T037|AB|S32.699|ICD10CM|Other specified fracture of unspecified ischium|Other specified fracture of unspecified ischium +C2838485|T037|HT|S32.699|ICD10CM|Other specified fracture of unspecified ischium|Other specified fracture of unspecified ischium +C2838486|T037|AB|S32.699A|ICD10CM|Oth fracture of unsp ischium, init for clos fx|Oth fracture of unsp ischium, init for clos fx +C2838486|T037|PT|S32.699A|ICD10CM|Other specified fracture of unspecified ischium, initial encounter for closed fracture|Other specified fracture of unspecified ischium, initial encounter for closed fracture +C2838487|T037|AB|S32.699B|ICD10CM|Oth fracture of unsp ischium, init encntr for open fracture|Oth fracture of unsp ischium, init encntr for open fracture +C2838487|T037|PT|S32.699B|ICD10CM|Other specified fracture of unspecified ischium, initial encounter for open fracture|Other specified fracture of unspecified ischium, initial encounter for open fracture +C2838488|T037|AB|S32.699D|ICD10CM|Oth fracture of unsp ischium, subs for fx w routn heal|Oth fracture of unsp ischium, subs for fx w routn heal +C2838489|T037|AB|S32.699G|ICD10CM|Oth fracture of unsp ischium, subs for fx w delay heal|Oth fracture of unsp ischium, subs for fx w delay heal +C2838490|T037|AB|S32.699K|ICD10CM|Oth fracture of unsp ischium, subs for fx w nonunion|Oth fracture of unsp ischium, subs for fx w nonunion +C2838490|T037|PT|S32.699K|ICD10CM|Other specified fracture of unspecified ischium, subsequent encounter for fracture with nonunion|Other specified fracture of unspecified ischium, subsequent encounter for fracture with nonunion +C2838491|T037|AB|S32.699S|ICD10CM|Other specified fracture of unspecified ischium, sequela|Other specified fracture of unspecified ischium, sequela +C2838491|T037|PT|S32.699S|ICD10CM|Other specified fracture of unspecified ischium, sequela|Other specified fracture of unspecified ischium, sequela +C0452083|T037|PT|S32.7|ICD10|Multiple fractures of lumbar spine and pelvis|Multiple fractures of lumbar spine and pelvis +C0478254|T037|PT|S32.8|ICD10|Fracture of other and unspecified parts of lumbar spine and pelvis|Fracture of other and unspecified parts of lumbar spine and pelvis +C2838492|T037|AB|S32.8|ICD10CM|Fracture of other parts of pelvis|Fracture of other parts of pelvis +C2838492|T037|HT|S32.8|ICD10CM|Fracture of other parts of pelvis|Fracture of other parts of pelvis +C2838493|T037|AB|S32.81|ICD10CM|Multiple fractures of pelvis with disruption of pelvic ring|Multiple fractures of pelvis with disruption of pelvic ring +C2838493|T037|HT|S32.81|ICD10CM|Multiple fractures of pelvis with disruption of pelvic ring|Multiple fractures of pelvis with disruption of pelvic ring +C3263825|T037|ET|S32.81|ICD10CM|Multiple pelvic fractures with disruption of pelvic circle|Multiple pelvic fractures with disruption of pelvic circle +C2838494|T037|AB|S32.810|ICD10CM|Multiple fractures of pelvis w stable disrupt of pelvic ring|Multiple fractures of pelvis w stable disrupt of pelvic ring +C2838494|T037|HT|S32.810|ICD10CM|Multiple fractures of pelvis with stable disruption of pelvic ring|Multiple fractures of pelvis with stable disruption of pelvic ring +C2838495|T037|AB|S32.810A|ICD10CM|Multiple fx of pelvis w stable disrupt of pelvic ring, init|Multiple fx of pelvis w stable disrupt of pelvic ring, init +C2838496|T037|AB|S32.810B|ICD10CM|Mult fx of pelv w stable disrupt of pelv ring, 7thB|Mult fx of pelv w stable disrupt of pelv ring, 7thB +C2838497|T037|AB|S32.810D|ICD10CM|Mult fx of pelv w stable disrupt of pelv ring, 7thD|Mult fx of pelv w stable disrupt of pelv ring, 7thD +C2838498|T037|AB|S32.810G|ICD10CM|Mult fx of pelv w stable disrupt of pelv ring, 7thG|Mult fx of pelv w stable disrupt of pelv ring, 7thG +C2838499|T037|AB|S32.810K|ICD10CM|Mult fx of pelv w stable disrupt of pelv ring, 7thK|Mult fx of pelv w stable disrupt of pelv ring, 7thK +C2838500|T037|AB|S32.810S|ICD10CM|Mult fx of pelvis w stable disrupt of pelvic ring, sequela|Mult fx of pelvis w stable disrupt of pelvic ring, sequela +C2838500|T037|PT|S32.810S|ICD10CM|Multiple fractures of pelvis with stable disruption of pelvic ring, sequela|Multiple fractures of pelvis with stable disruption of pelvic ring, sequela +C2838501|T037|HT|S32.811|ICD10CM|Multiple fractures of pelvis with unstable disruption of pelvic ring|Multiple fractures of pelvis with unstable disruption of pelvic ring +C2838501|T037|AB|S32.811|ICD10CM|Multiple fx of pelvis w unstable disrupt of pelvic ring|Multiple fx of pelvis w unstable disrupt of pelvic ring +C2838502|T037|AB|S32.811A|ICD10CM|Mult fx of pelvis w unstable disrupt of pelvic ring, init|Mult fx of pelvis w unstable disrupt of pelvic ring, init +C2838503|T037|AB|S32.811B|ICD10CM|Mult fx of pelv w unstbl disrupt of pelv ring, 7thB|Mult fx of pelv w unstbl disrupt of pelv ring, 7thB +C2838504|T037|AB|S32.811D|ICD10CM|Mult fx of pelv w unstbl disrupt of pelv ring, 7thD|Mult fx of pelv w unstbl disrupt of pelv ring, 7thD +C2838505|T037|AB|S32.811G|ICD10CM|Mult fx of pelv w unstbl disrupt of pelv ring, 7thG|Mult fx of pelv w unstbl disrupt of pelv ring, 7thG +C2838506|T037|AB|S32.811K|ICD10CM|Mult fx of pelv w unstbl disrupt of pelv ring, 7thK|Mult fx of pelv w unstbl disrupt of pelv ring, 7thK +C2838507|T037|AB|S32.811S|ICD10CM|Mult fx of pelvis w unstable disrupt of pelvic ring, sequela|Mult fx of pelvis w unstable disrupt of pelvic ring, sequela +C2838507|T037|PT|S32.811S|ICD10CM|Multiple fractures of pelvis with unstable disruption of pelvic ring, sequela|Multiple fractures of pelvis with unstable disruption of pelvic ring, sequela +C3263827|T037|AB|S32.82|ICD10CM|Multiple fractures of pelvis w/o disruption of pelvic ring|Multiple fractures of pelvis w/o disruption of pelvic ring +C3263827|T037|HT|S32.82|ICD10CM|Multiple fractures of pelvis without disruption of pelvic ring|Multiple fractures of pelvis without disruption of pelvic ring +C3263826|T037|ET|S32.82|ICD10CM|Multiple pelvic fractures without disruption of pelvic circle|Multiple pelvic fractures without disruption of pelvic circle +C3263828|T037|AB|S32.82XA|ICD10CM|Multiple fx of pelvis w/o disrupt of pelvic ring, init|Multiple fx of pelvis w/o disrupt of pelvic ring, init +C3263829|T037|AB|S32.82XB|ICD10CM|Mult fx of pelvis w/o disrupt of pelv ring, init for opn fx|Mult fx of pelvis w/o disrupt of pelv ring, init for opn fx +C3263829|T037|PT|S32.82XB|ICD10CM|Multiple fractures of pelvis without disruption of pelvic ring, initial encounter for open fracture|Multiple fractures of pelvis without disruption of pelvic ring, initial encounter for open fracture +C3263830|T037|AB|S32.82XD|ICD10CM|Mult fx of pelv w/o disrupt of pelv ring, 7thD|Mult fx of pelv w/o disrupt of pelv ring, 7thD +C3263831|T037|AB|S32.82XG|ICD10CM|Mult fx of pelv w/o disrupt of pelv ring, 7thG|Mult fx of pelv w/o disrupt of pelv ring, 7thG +C3263832|T037|AB|S32.82XK|ICD10CM|Mult fx of pelv w/o disrupt of pelv ring, 7thK|Mult fx of pelv w/o disrupt of pelv ring, 7thK +C3263833|T037|PT|S32.82XS|ICD10CM|Multiple fractures of pelvis without disruption of pelvic ring, sequela|Multiple fractures of pelvis without disruption of pelvic ring, sequela +C3263833|T037|AB|S32.82XS|ICD10CM|Multiple fx of pelvis w/o disrupt of pelvic ring, sequela|Multiple fx of pelvis w/o disrupt of pelvic ring, sequela +C2838492|T037|HT|S32.89|ICD10CM|Fracture of other parts of pelvis|Fracture of other parts of pelvis +C2838492|T037|AB|S32.89|ICD10CM|Fracture of other parts of pelvis|Fracture of other parts of pelvis +C2838508|T037|AB|S32.89XA|ICD10CM|Fracture of oth parts of pelvis, init for clos fx|Fracture of oth parts of pelvis, init for clos fx +C2838508|T037|PT|S32.89XA|ICD10CM|Fracture of other parts of pelvis, initial encounter for closed fracture|Fracture of other parts of pelvis, initial encounter for closed fracture +C2838509|T037|AB|S32.89XB|ICD10CM|Fracture of oth parts of pelvis, init for opn fx|Fracture of oth parts of pelvis, init for opn fx +C2838509|T037|PT|S32.89XB|ICD10CM|Fracture of other parts of pelvis, initial encounter for open fracture|Fracture of other parts of pelvis, initial encounter for open fracture +C2838510|T037|AB|S32.89XD|ICD10CM|Fracture of oth parts of pelvis, subs for fx w routn heal|Fracture of oth parts of pelvis, subs for fx w routn heal +C2838510|T037|PT|S32.89XD|ICD10CM|Fracture of other parts of pelvis, subsequent encounter for fracture with routine healing|Fracture of other parts of pelvis, subsequent encounter for fracture with routine healing +C2838511|T037|AB|S32.89XG|ICD10CM|Fracture of oth parts of pelvis, subs for fx w delay heal|Fracture of oth parts of pelvis, subs for fx w delay heal +C2838511|T037|PT|S32.89XG|ICD10CM|Fracture of other parts of pelvis, subsequent encounter for fracture with delayed healing|Fracture of other parts of pelvis, subsequent encounter for fracture with delayed healing +C2838512|T037|AB|S32.89XK|ICD10CM|Fracture of oth parts of pelvis, subs for fx w nonunion|Fracture of oth parts of pelvis, subs for fx w nonunion +C2838512|T037|PT|S32.89XK|ICD10CM|Fracture of other parts of pelvis, subsequent encounter for fracture with nonunion|Fracture of other parts of pelvis, subsequent encounter for fracture with nonunion +C2838513|T037|AB|S32.89XS|ICD10CM|Fracture of other parts of pelvis, sequela|Fracture of other parts of pelvis, sequela +C2838513|T037|PT|S32.89XS|ICD10CM|Fracture of other parts of pelvis, sequela|Fracture of other parts of pelvis, sequela +C0746037|T037|ET|S32.9|ICD10CM|Fracture of lumbosacral spine NOS|Fracture of lumbosacral spine NOS +C0149531|T037|ET|S32.9|ICD10CM|Fracture of pelvis NOS|Fracture of pelvis NOS +C2838514|T037|AB|S32.9|ICD10CM|Fracture of unsp parts of lumbosacral spine and pelvis|Fracture of unsp parts of lumbosacral spine and pelvis +C2838514|T037|HT|S32.9|ICD10CM|Fracture of unspecified parts of lumbosacral spine and pelvis|Fracture of unspecified parts of lumbosacral spine and pelvis +C2838515|T037|AB|S32.9XXA|ICD10CM|Fracture of unsp parts of lumbosacral spine and pelvis, init|Fracture of unsp parts of lumbosacral spine and pelvis, init +C2838515|T037|PT|S32.9XXA|ICD10CM|Fracture of unspecified parts of lumbosacral spine and pelvis, initial encounter for closed fracture|Fracture of unspecified parts of lumbosacral spine and pelvis, initial encounter for closed fracture +C2838516|T037|PT|S32.9XXB|ICD10CM|Fracture of unspecified parts of lumbosacral spine and pelvis, initial encounter for open fracture|Fracture of unspecified parts of lumbosacral spine and pelvis, initial encounter for open fracture +C2838516|T037|AB|S32.9XXB|ICD10CM|Fx unsp parts of lumbosacral spine & pelvis, init for opn fx|Fx unsp parts of lumbosacral spine & pelvis, init for opn fx +C2838517|T037|AB|S32.9XXD|ICD10CM|Fx unsp parts of lumbosacr spin & pelv, 7thD|Fx unsp parts of lumbosacr spin & pelv, 7thD +C2838518|T037|AB|S32.9XXG|ICD10CM|Fx unsp parts of lumbosacr spin & pelv, 7thG|Fx unsp parts of lumbosacr spin & pelv, 7thG +C2838519|T037|AB|S32.9XXK|ICD10CM|Fx unsp parts of lumbosacr spin & pelv, 7thK|Fx unsp parts of lumbosacr spin & pelv, 7thK +C2838520|T037|PT|S32.9XXS|ICD10CM|Fracture of unspecified parts of lumbosacral spine and pelvis, sequela|Fracture of unspecified parts of lumbosacral spine and pelvis, sequela +C2838520|T037|AB|S32.9XXS|ICD10CM|Fx unsp parts of lumbosacral spine & pelvis, sequela|Fx unsp parts of lumbosacral spine & pelvis, sequela +C4290337|T037|ET|S33|ICD10CM|avulsion of joint or ligament of lumbar spine and pelvis|avulsion of joint or ligament of lumbar spine and pelvis +C2838528|T037|AB|S33|ICD10CM|Disloc & sprain of joints & ligaments of lumbar spin & pelv|Disloc & sprain of joints & ligaments of lumbar spin & pelv +C2838528|T037|HT|S33|ICD10CM|Dislocation and sprain of joints and ligaments of lumbar spine and pelvis|Dislocation and sprain of joints and ligaments of lumbar spine and pelvis +C0495843|T037|HT|S33|ICD10|Dislocation, sprain and strain of joints and ligaments of lumbar spine and pelvis|Dislocation, sprain and strain of joints and ligaments of lumbar spine and pelvis +C4290338|T037|ET|S33|ICD10CM|laceration of cartilage, joint or ligament of lumbar spine and pelvis|laceration of cartilage, joint or ligament of lumbar spine and pelvis +C4290339|T037|ET|S33|ICD10CM|sprain of cartilage, joint or ligament of lumbar spine and pelvis|sprain of cartilage, joint or ligament of lumbar spine and pelvis +C4290340|T037|ET|S33|ICD10CM|traumatic hemarthrosis of joint or ligament of lumbar spine and pelvis|traumatic hemarthrosis of joint or ligament of lumbar spine and pelvis +C4290341|T037|ET|S33|ICD10CM|traumatic rupture of joint or ligament of lumbar spine and pelvis|traumatic rupture of joint or ligament of lumbar spine and pelvis +C4290342|T037|ET|S33|ICD10CM|traumatic subluxation of joint or ligament of lumbar spine and pelvis|traumatic subluxation of joint or ligament of lumbar spine and pelvis +C4290343|T037|ET|S33|ICD10CM|traumatic tear of joint or ligament of lumbar spine and pelvis|traumatic tear of joint or ligament of lumbar spine and pelvis +C0451891|T037|PT|S33.0|ICD10|Traumatic rupture of lumbar intervertebral disc|Traumatic rupture of lumbar intervertebral disc +C0451891|T037|HT|S33.0|ICD10CM|Traumatic rupture of lumbar intervertebral disc|Traumatic rupture of lumbar intervertebral disc +C0451891|T037|AB|S33.0|ICD10CM|Traumatic rupture of lumbar intervertebral disc|Traumatic rupture of lumbar intervertebral disc +C2838529|T037|AB|S33.0XXA|ICD10CM|Traumatic rupture of lumbar intervertebral disc, init encntr|Traumatic rupture of lumbar intervertebral disc, init encntr +C2838529|T037|PT|S33.0XXA|ICD10CM|Traumatic rupture of lumbar intervertebral disc, initial encounter|Traumatic rupture of lumbar intervertebral disc, initial encounter +C2838530|T037|AB|S33.0XXD|ICD10CM|Traumatic rupture of lumbar intervertebral disc, subs encntr|Traumatic rupture of lumbar intervertebral disc, subs encntr +C2838530|T037|PT|S33.0XXD|ICD10CM|Traumatic rupture of lumbar intervertebral disc, subsequent encounter|Traumatic rupture of lumbar intervertebral disc, subsequent encounter +C2838531|T037|AB|S33.0XXS|ICD10CM|Traumatic rupture of lumbar intervertebral disc, sequela|Traumatic rupture of lumbar intervertebral disc, sequela +C2838531|T037|PT|S33.0XXS|ICD10CM|Traumatic rupture of lumbar intervertebral disc, sequela|Traumatic rupture of lumbar intervertebral disc, sequela +C0434557|T037|PT|S33.1|ICD10|Dislocation of lumbar vertebra|Dislocation of lumbar vertebra +C2838532|T037|AB|S33.1|ICD10CM|Subluxation and dislocation of lumbar vertebra|Subluxation and dislocation of lumbar vertebra +C2838532|T037|HT|S33.1|ICD10CM|Subluxation and dislocation of lumbar vertebra|Subluxation and dislocation of lumbar vertebra +C2838533|T037|AB|S33.10|ICD10CM|Subluxation and dislocation of unspecified lumbar vertebra|Subluxation and dislocation of unspecified lumbar vertebra +C2838533|T037|HT|S33.10|ICD10CM|Subluxation and dislocation of unspecified lumbar vertebra|Subluxation and dislocation of unspecified lumbar vertebra +C2838534|T037|AB|S33.100|ICD10CM|Subluxation of unspecified lumbar vertebra|Subluxation of unspecified lumbar vertebra +C2838534|T037|HT|S33.100|ICD10CM|Subluxation of unspecified lumbar vertebra|Subluxation of unspecified lumbar vertebra +C2838535|T037|AB|S33.100A|ICD10CM|Subluxation of unspecified lumbar vertebra, init encntr|Subluxation of unspecified lumbar vertebra, init encntr +C2838535|T037|PT|S33.100A|ICD10CM|Subluxation of unspecified lumbar vertebra, initial encounter|Subluxation of unspecified lumbar vertebra, initial encounter +C2838536|T037|AB|S33.100D|ICD10CM|Subluxation of unspecified lumbar vertebra, subs encntr|Subluxation of unspecified lumbar vertebra, subs encntr +C2838536|T037|PT|S33.100D|ICD10CM|Subluxation of unspecified lumbar vertebra, subsequent encounter|Subluxation of unspecified lumbar vertebra, subsequent encounter +C2838537|T037|PT|S33.100S|ICD10CM|Subluxation of unspecified lumbar vertebra, sequela|Subluxation of unspecified lumbar vertebra, sequela +C2838537|T037|AB|S33.100S|ICD10CM|Subluxation of unspecified lumbar vertebra, sequela|Subluxation of unspecified lumbar vertebra, sequela +C2838538|T037|AB|S33.101|ICD10CM|Dislocation of unspecified lumbar vertebra|Dislocation of unspecified lumbar vertebra +C2838538|T037|HT|S33.101|ICD10CM|Dislocation of unspecified lumbar vertebra|Dislocation of unspecified lumbar vertebra +C2838539|T037|AB|S33.101A|ICD10CM|Dislocation of unspecified lumbar vertebra, init encntr|Dislocation of unspecified lumbar vertebra, init encntr +C2838539|T037|PT|S33.101A|ICD10CM|Dislocation of unspecified lumbar vertebra, initial encounter|Dislocation of unspecified lumbar vertebra, initial encounter +C2838540|T037|AB|S33.101D|ICD10CM|Dislocation of unspecified lumbar vertebra, subs encntr|Dislocation of unspecified lumbar vertebra, subs encntr +C2838540|T037|PT|S33.101D|ICD10CM|Dislocation of unspecified lumbar vertebra, subsequent encounter|Dislocation of unspecified lumbar vertebra, subsequent encounter +C2838541|T037|PT|S33.101S|ICD10CM|Dislocation of unspecified lumbar vertebra, sequela|Dislocation of unspecified lumbar vertebra, sequela +C2838541|T037|AB|S33.101S|ICD10CM|Dislocation of unspecified lumbar vertebra, sequela|Dislocation of unspecified lumbar vertebra, sequela +C2838542|T037|AB|S33.11|ICD10CM|Subluxation and dislocation of L1/L2 lumbar vertebra|Subluxation and dislocation of L1/L2 lumbar vertebra +C2838542|T037|HT|S33.11|ICD10CM|Subluxation and dislocation of L1/L2 lumbar vertebra|Subluxation and dislocation of L1/L2 lumbar vertebra +C2838543|T037|AB|S33.110|ICD10CM|Subluxation of L1/L2 lumbar vertebra|Subluxation of L1/L2 lumbar vertebra +C2838543|T037|HT|S33.110|ICD10CM|Subluxation of L1/L2 lumbar vertebra|Subluxation of L1/L2 lumbar vertebra +C2838544|T037|PT|S33.110A|ICD10CM|Subluxation of L1/L2 lumbar vertebra, initial encounter|Subluxation of L1/L2 lumbar vertebra, initial encounter +C2838544|T037|AB|S33.110A|ICD10CM|Subluxation of L1/L2 lumbar vertebra, initial encounter|Subluxation of L1/L2 lumbar vertebra, initial encounter +C2838545|T037|PT|S33.110D|ICD10CM|Subluxation of L1/L2 lumbar vertebra, subsequent encounter|Subluxation of L1/L2 lumbar vertebra, subsequent encounter +C2838545|T037|AB|S33.110D|ICD10CM|Subluxation of L1/L2 lumbar vertebra, subsequent encounter|Subluxation of L1/L2 lumbar vertebra, subsequent encounter +C2838546|T037|PT|S33.110S|ICD10CM|Subluxation of L1/L2 lumbar vertebra, sequela|Subluxation of L1/L2 lumbar vertebra, sequela +C2838546|T037|AB|S33.110S|ICD10CM|Subluxation of L1/L2 lumbar vertebra, sequela|Subluxation of L1/L2 lumbar vertebra, sequela +C0840520|T037|AB|S33.111|ICD10CM|Dislocation of L1/L2 lumbar vertebra|Dislocation of L1/L2 lumbar vertebra +C0840520|T037|HT|S33.111|ICD10CM|Dislocation of L1/L2 lumbar vertebra|Dislocation of L1/L2 lumbar vertebra +C2838547|T037|PT|S33.111A|ICD10CM|Dislocation of L1/L2 lumbar vertebra, initial encounter|Dislocation of L1/L2 lumbar vertebra, initial encounter +C2838547|T037|AB|S33.111A|ICD10CM|Dislocation of L1/L2 lumbar vertebra, initial encounter|Dislocation of L1/L2 lumbar vertebra, initial encounter +C2838548|T037|PT|S33.111D|ICD10CM|Dislocation of L1/L2 lumbar vertebra, subsequent encounter|Dislocation of L1/L2 lumbar vertebra, subsequent encounter +C2838548|T037|AB|S33.111D|ICD10CM|Dislocation of L1/L2 lumbar vertebra, subsequent encounter|Dislocation of L1/L2 lumbar vertebra, subsequent encounter +C2838549|T037|PT|S33.111S|ICD10CM|Dislocation of L1/L2 lumbar vertebra, sequela|Dislocation of L1/L2 lumbar vertebra, sequela +C2838549|T037|AB|S33.111S|ICD10CM|Dislocation of L1/L2 lumbar vertebra, sequela|Dislocation of L1/L2 lumbar vertebra, sequela +C2838550|T037|AB|S33.12|ICD10CM|Subluxation and dislocation of L2/L3 lumbar vertebra|Subluxation and dislocation of L2/L3 lumbar vertebra +C2838550|T037|HT|S33.12|ICD10CM|Subluxation and dislocation of L2/L3 lumbar vertebra|Subluxation and dislocation of L2/L3 lumbar vertebra +C2838551|T037|AB|S33.120|ICD10CM|Subluxation of L2/L3 lumbar vertebra|Subluxation of L2/L3 lumbar vertebra +C2838551|T037|HT|S33.120|ICD10CM|Subluxation of L2/L3 lumbar vertebra|Subluxation of L2/L3 lumbar vertebra +C2838552|T037|PT|S33.120A|ICD10CM|Subluxation of L2/L3 lumbar vertebra, initial encounter|Subluxation of L2/L3 lumbar vertebra, initial encounter +C2838552|T037|AB|S33.120A|ICD10CM|Subluxation of L2/L3 lumbar vertebra, initial encounter|Subluxation of L2/L3 lumbar vertebra, initial encounter +C2838553|T037|PT|S33.120D|ICD10CM|Subluxation of L2/L3 lumbar vertebra, subsequent encounter|Subluxation of L2/L3 lumbar vertebra, subsequent encounter +C2838553|T037|AB|S33.120D|ICD10CM|Subluxation of L2/L3 lumbar vertebra, subsequent encounter|Subluxation of L2/L3 lumbar vertebra, subsequent encounter +C2838554|T037|PT|S33.120S|ICD10CM|Subluxation of L2/L3 lumbar vertebra, sequela|Subluxation of L2/L3 lumbar vertebra, sequela +C2838554|T037|AB|S33.120S|ICD10CM|Subluxation of L2/L3 lumbar vertebra, sequela|Subluxation of L2/L3 lumbar vertebra, sequela +C0840521|T037|AB|S33.121|ICD10CM|Dislocation of L2/L3 lumbar vertebra|Dislocation of L2/L3 lumbar vertebra +C0840521|T037|HT|S33.121|ICD10CM|Dislocation of L2/L3 lumbar vertebra|Dislocation of L2/L3 lumbar vertebra +C2838555|T037|PT|S33.121A|ICD10CM|Dislocation of L2/L3 lumbar vertebra, initial encounter|Dislocation of L2/L3 lumbar vertebra, initial encounter +C2838555|T037|AB|S33.121A|ICD10CM|Dislocation of L2/L3 lumbar vertebra, initial encounter|Dislocation of L2/L3 lumbar vertebra, initial encounter +C2838556|T037|PT|S33.121D|ICD10CM|Dislocation of L2/L3 lumbar vertebra, subsequent encounter|Dislocation of L2/L3 lumbar vertebra, subsequent encounter +C2838556|T037|AB|S33.121D|ICD10CM|Dislocation of L2/L3 lumbar vertebra, subsequent encounter|Dislocation of L2/L3 lumbar vertebra, subsequent encounter +C2838557|T037|PT|S33.121S|ICD10CM|Dislocation of L2/L3 lumbar vertebra, sequela|Dislocation of L2/L3 lumbar vertebra, sequela +C2838557|T037|AB|S33.121S|ICD10CM|Dislocation of L2/L3 lumbar vertebra, sequela|Dislocation of L2/L3 lumbar vertebra, sequela +C2838558|T037|AB|S33.13|ICD10CM|Subluxation and dislocation of L3/L4 lumbar vertebra|Subluxation and dislocation of L3/L4 lumbar vertebra +C2838558|T037|HT|S33.13|ICD10CM|Subluxation and dislocation of L3/L4 lumbar vertebra|Subluxation and dislocation of L3/L4 lumbar vertebra +C2838559|T037|AB|S33.130|ICD10CM|Subluxation of L3/L4 lumbar vertebra|Subluxation of L3/L4 lumbar vertebra +C2838559|T037|HT|S33.130|ICD10CM|Subluxation of L3/L4 lumbar vertebra|Subluxation of L3/L4 lumbar vertebra +C2838560|T037|PT|S33.130A|ICD10CM|Subluxation of L3/L4 lumbar vertebra, initial encounter|Subluxation of L3/L4 lumbar vertebra, initial encounter +C2838560|T037|AB|S33.130A|ICD10CM|Subluxation of L3/L4 lumbar vertebra, initial encounter|Subluxation of L3/L4 lumbar vertebra, initial encounter +C2838561|T037|PT|S33.130D|ICD10CM|Subluxation of L3/L4 lumbar vertebra, subsequent encounter|Subluxation of L3/L4 lumbar vertebra, subsequent encounter +C2838561|T037|AB|S33.130D|ICD10CM|Subluxation of L3/L4 lumbar vertebra, subsequent encounter|Subluxation of L3/L4 lumbar vertebra, subsequent encounter +C2838562|T037|PT|S33.130S|ICD10CM|Subluxation of L3/L4 lumbar vertebra, sequela|Subluxation of L3/L4 lumbar vertebra, sequela +C2838562|T037|AB|S33.130S|ICD10CM|Subluxation of L3/L4 lumbar vertebra, sequela|Subluxation of L3/L4 lumbar vertebra, sequela +C0840522|T037|AB|S33.131|ICD10CM|Dislocation of L3/L4 lumbar vertebra|Dislocation of L3/L4 lumbar vertebra +C0840522|T037|HT|S33.131|ICD10CM|Dislocation of L3/L4 lumbar vertebra|Dislocation of L3/L4 lumbar vertebra +C2838563|T037|PT|S33.131A|ICD10CM|Dislocation of L3/L4 lumbar vertebra, initial encounter|Dislocation of L3/L4 lumbar vertebra, initial encounter +C2838563|T037|AB|S33.131A|ICD10CM|Dislocation of L3/L4 lumbar vertebra, initial encounter|Dislocation of L3/L4 lumbar vertebra, initial encounter +C2838564|T037|PT|S33.131D|ICD10CM|Dislocation of L3/L4 lumbar vertebra, subsequent encounter|Dislocation of L3/L4 lumbar vertebra, subsequent encounter +C2838564|T037|AB|S33.131D|ICD10CM|Dislocation of L3/L4 lumbar vertebra, subsequent encounter|Dislocation of L3/L4 lumbar vertebra, subsequent encounter +C2838565|T037|PT|S33.131S|ICD10CM|Dislocation of L3/L4 lumbar vertebra, sequela|Dislocation of L3/L4 lumbar vertebra, sequela +C2838565|T037|AB|S33.131S|ICD10CM|Dislocation of L3/L4 lumbar vertebra, sequela|Dislocation of L3/L4 lumbar vertebra, sequela +C2838566|T037|AB|S33.14|ICD10CM|Subluxation and dislocation of L4/L5 lumbar vertebra|Subluxation and dislocation of L4/L5 lumbar vertebra +C2838566|T037|HT|S33.14|ICD10CM|Subluxation and dislocation of L4/L5 lumbar vertebra|Subluxation and dislocation of L4/L5 lumbar vertebra +C2838567|T037|AB|S33.140|ICD10CM|Subluxation of L4/L5 lumbar vertebra|Subluxation of L4/L5 lumbar vertebra +C2838567|T037|HT|S33.140|ICD10CM|Subluxation of L4/L5 lumbar vertebra|Subluxation of L4/L5 lumbar vertebra +C2838568|T037|PT|S33.140A|ICD10CM|Subluxation of L4/L5 lumbar vertebra, initial encounter|Subluxation of L4/L5 lumbar vertebra, initial encounter +C2838568|T037|AB|S33.140A|ICD10CM|Subluxation of L4/L5 lumbar vertebra, initial encounter|Subluxation of L4/L5 lumbar vertebra, initial encounter +C2838569|T037|PT|S33.140D|ICD10CM|Subluxation of L4/L5 lumbar vertebra, subsequent encounter|Subluxation of L4/L5 lumbar vertebra, subsequent encounter +C2838569|T037|AB|S33.140D|ICD10CM|Subluxation of L4/L5 lumbar vertebra, subsequent encounter|Subluxation of L4/L5 lumbar vertebra, subsequent encounter +C2838570|T037|PT|S33.140S|ICD10CM|Subluxation of L4/L5 lumbar vertebra, sequela|Subluxation of L4/L5 lumbar vertebra, sequela +C2838570|T037|AB|S33.140S|ICD10CM|Subluxation of L4/L5 lumbar vertebra, sequela|Subluxation of L4/L5 lumbar vertebra, sequela +C0840523|T037|AB|S33.141|ICD10CM|Dislocation of L4/L5 lumbar vertebra|Dislocation of L4/L5 lumbar vertebra +C0840523|T037|HT|S33.141|ICD10CM|Dislocation of L4/L5 lumbar vertebra|Dislocation of L4/L5 lumbar vertebra +C2838571|T037|PT|S33.141A|ICD10CM|Dislocation of L4/L5 lumbar vertebra, initial encounter|Dislocation of L4/L5 lumbar vertebra, initial encounter +C2838571|T037|AB|S33.141A|ICD10CM|Dislocation of L4/L5 lumbar vertebra, initial encounter|Dislocation of L4/L5 lumbar vertebra, initial encounter +C2838572|T037|PT|S33.141D|ICD10CM|Dislocation of L4/L5 lumbar vertebra, subsequent encounter|Dislocation of L4/L5 lumbar vertebra, subsequent encounter +C2838572|T037|AB|S33.141D|ICD10CM|Dislocation of L4/L5 lumbar vertebra, subsequent encounter|Dislocation of L4/L5 lumbar vertebra, subsequent encounter +C2838573|T037|PT|S33.141S|ICD10CM|Dislocation of L4/L5 lumbar vertebra, sequela|Dislocation of L4/L5 lumbar vertebra, sequela +C2838573|T037|AB|S33.141S|ICD10CM|Dislocation of L4/L5 lumbar vertebra, sequela|Dislocation of L4/L5 lumbar vertebra, sequela +C0495844|T037|HT|S33.2|ICD10CM|Dislocation of sacroiliac and sacrococcygeal joint|Dislocation of sacroiliac and sacrococcygeal joint +C0495844|T037|AB|S33.2|ICD10CM|Dislocation of sacroiliac and sacrococcygeal joint|Dislocation of sacroiliac and sacrococcygeal joint +C0495844|T037|PT|S33.2|ICD10|Dislocation of sacroiliac and sacrococcygeal joint|Dislocation of sacroiliac and sacrococcygeal joint +C2838574|T037|AB|S33.2XXA|ICD10CM|Dislocation of sacroiliac and sacrococcygeal joint, init|Dislocation of sacroiliac and sacrococcygeal joint, init +C2838574|T037|PT|S33.2XXA|ICD10CM|Dislocation of sacroiliac and sacrococcygeal joint, initial encounter|Dislocation of sacroiliac and sacrococcygeal joint, initial encounter +C2838575|T037|AB|S33.2XXD|ICD10CM|Dislocation of sacroiliac and sacrococcygeal joint, subs|Dislocation of sacroiliac and sacrococcygeal joint, subs +C2838575|T037|PT|S33.2XXD|ICD10CM|Dislocation of sacroiliac and sacrococcygeal joint, subsequent encounter|Dislocation of sacroiliac and sacrococcygeal joint, subsequent encounter +C2838576|T037|AB|S33.2XXS|ICD10CM|Dislocation of sacroiliac and sacrococcygeal joint, sequela|Dislocation of sacroiliac and sacrococcygeal joint, sequela +C2838576|T037|PT|S33.2XXS|ICD10CM|Dislocation of sacroiliac and sacrococcygeal joint, sequela|Dislocation of sacroiliac and sacrococcygeal joint, sequela +C0478255|T037|AB|S33.3|ICD10CM|Dislocation of oth and unsp parts of lumbar spine and pelvis|Dislocation of oth and unsp parts of lumbar spine and pelvis +C0478255|T037|HT|S33.3|ICD10CM|Dislocation of other and unspecified parts of lumbar spine and pelvis|Dislocation of other and unspecified parts of lumbar spine and pelvis +C0478255|T037|PT|S33.3|ICD10|Dislocation of other and unspecified parts of lumbar spine and pelvis|Dislocation of other and unspecified parts of lumbar spine and pelvis +C2838577|T037|AB|S33.30|ICD10CM|Dislocation of unspecified parts of lumbar spine and pelvis|Dislocation of unspecified parts of lumbar spine and pelvis +C2838577|T037|HT|S33.30|ICD10CM|Dislocation of unspecified parts of lumbar spine and pelvis|Dislocation of unspecified parts of lumbar spine and pelvis +C2838578|T037|AB|S33.30XA|ICD10CM|Dislocation of unsp parts of lumbar spine and pelvis, init|Dislocation of unsp parts of lumbar spine and pelvis, init +C2838578|T037|PT|S33.30XA|ICD10CM|Dislocation of unspecified parts of lumbar spine and pelvis, initial encounter|Dislocation of unspecified parts of lumbar spine and pelvis, initial encounter +C2838579|T037|AB|S33.30XD|ICD10CM|Dislocation of unsp parts of lumbar spine and pelvis, subs|Dislocation of unsp parts of lumbar spine and pelvis, subs +C2838579|T037|PT|S33.30XD|ICD10CM|Dislocation of unspecified parts of lumbar spine and pelvis, subsequent encounter|Dislocation of unspecified parts of lumbar spine and pelvis, subsequent encounter +C2838580|T037|AB|S33.30XS|ICD10CM|Dislocation of unsp parts of lumbar spine & pelvis, sequela|Dislocation of unsp parts of lumbar spine & pelvis, sequela +C2838580|T037|PT|S33.30XS|ICD10CM|Dislocation of unspecified parts of lumbar spine and pelvis, sequela|Dislocation of unspecified parts of lumbar spine and pelvis, sequela +C2838581|T037|AB|S33.39|ICD10CM|Dislocation of other parts of lumbar spine and pelvis|Dislocation of other parts of lumbar spine and pelvis +C2838581|T037|HT|S33.39|ICD10CM|Dislocation of other parts of lumbar spine and pelvis|Dislocation of other parts of lumbar spine and pelvis +C2838582|T037|AB|S33.39XA|ICD10CM|Dislocation of oth prt lumbar spine and pelvis, init encntr|Dislocation of oth prt lumbar spine and pelvis, init encntr +C2838582|T037|PT|S33.39XA|ICD10CM|Dislocation of other parts of lumbar spine and pelvis, initial encounter|Dislocation of other parts of lumbar spine and pelvis, initial encounter +C2838583|T037|AB|S33.39XD|ICD10CM|Dislocation of oth prt lumbar spine and pelvis, subs encntr|Dislocation of oth prt lumbar spine and pelvis, subs encntr +C2838583|T037|PT|S33.39XD|ICD10CM|Dislocation of other parts of lumbar spine and pelvis, subsequent encounter|Dislocation of other parts of lumbar spine and pelvis, subsequent encounter +C2838584|T037|AB|S33.39XS|ICD10CM|Dislocation of oth parts of lumbar spine and pelvis, sequela|Dislocation of oth parts of lumbar spine and pelvis, sequela +C2838584|T037|PT|S33.39XS|ICD10CM|Dislocation of other parts of lumbar spine and pelvis, sequela|Dislocation of other parts of lumbar spine and pelvis, sequela +C0556002|T037|HT|S33.4|ICD10CM|Traumatic rupture of symphysis pubis|Traumatic rupture of symphysis pubis +C0556002|T037|AB|S33.4|ICD10CM|Traumatic rupture of symphysis pubis|Traumatic rupture of symphysis pubis +C0556002|T037|PT|S33.4|ICD10|Traumatic rupture of symphysis pubis|Traumatic rupture of symphysis pubis +C2838585|T037|AB|S33.4XXA|ICD10CM|Traumatic rupture of symphysis pubis, initial encounter|Traumatic rupture of symphysis pubis, initial encounter +C2838585|T037|PT|S33.4XXA|ICD10CM|Traumatic rupture of symphysis pubis, initial encounter|Traumatic rupture of symphysis pubis, initial encounter +C2838586|T037|AB|S33.4XXD|ICD10CM|Traumatic rupture of symphysis pubis, subsequent encounter|Traumatic rupture of symphysis pubis, subsequent encounter +C2838586|T037|PT|S33.4XXD|ICD10CM|Traumatic rupture of symphysis pubis, subsequent encounter|Traumatic rupture of symphysis pubis, subsequent encounter +C2838587|T037|AB|S33.4XXS|ICD10CM|Traumatic rupture of symphysis pubis, sequela|Traumatic rupture of symphysis pubis, sequela +C2838587|T037|PT|S33.4XXS|ICD10CM|Traumatic rupture of symphysis pubis, sequela|Traumatic rupture of symphysis pubis, sequela +C0392086|T037|PT|S33.5|ICD10|Sprain and strain of lumbar spine|Sprain and strain of lumbar spine +C2838588|T037|AB|S33.5|ICD10CM|Sprain of ligaments of lumbar spine|Sprain of ligaments of lumbar spine +C2838588|T037|HT|S33.5|ICD10CM|Sprain of ligaments of lumbar spine|Sprain of ligaments of lumbar spine +C2838589|T037|AB|S33.5XXA|ICD10CM|Sprain of ligaments of lumbar spine, initial encounter|Sprain of ligaments of lumbar spine, initial encounter +C2838589|T037|PT|S33.5XXA|ICD10CM|Sprain of ligaments of lumbar spine, initial encounter|Sprain of ligaments of lumbar spine, initial encounter +C2838590|T037|AB|S33.5XXD|ICD10CM|Sprain of ligaments of lumbar spine, subsequent encounter|Sprain of ligaments of lumbar spine, subsequent encounter +C2838590|T037|PT|S33.5XXD|ICD10CM|Sprain of ligaments of lumbar spine, subsequent encounter|Sprain of ligaments of lumbar spine, subsequent encounter +C2838591|T037|AB|S33.5XXS|ICD10CM|Sprain of ligaments of lumbar spine, sequela|Sprain of ligaments of lumbar spine, sequela +C2838591|T037|PT|S33.5XXS|ICD10CM|Sprain of ligaments of lumbar spine, sequela|Sprain of ligaments of lumbar spine, sequela +C0392087|T037|PT|S33.6|ICD10|Sprain and strain of sacroiliac joint|Sprain and strain of sacroiliac joint +C0434473|T037|HT|S33.6|ICD10CM|Sprain of sacroiliac joint|Sprain of sacroiliac joint +C0434473|T037|AB|S33.6|ICD10CM|Sprain of sacroiliac joint|Sprain of sacroiliac joint +C2838592|T037|AB|S33.6XXA|ICD10CM|Sprain of sacroiliac joint, initial encounter|Sprain of sacroiliac joint, initial encounter +C2838592|T037|PT|S33.6XXA|ICD10CM|Sprain of sacroiliac joint, initial encounter|Sprain of sacroiliac joint, initial encounter +C2838593|T037|AB|S33.6XXD|ICD10CM|Sprain of sacroiliac joint, subsequent encounter|Sprain of sacroiliac joint, subsequent encounter +C2838593|T037|PT|S33.6XXD|ICD10CM|Sprain of sacroiliac joint, subsequent encounter|Sprain of sacroiliac joint, subsequent encounter +C2838594|T037|AB|S33.6XXS|ICD10CM|Sprain of sacroiliac joint, sequela|Sprain of sacroiliac joint, sequela +C2838594|T037|PT|S33.6XXS|ICD10CM|Sprain of sacroiliac joint, sequela|Sprain of sacroiliac joint, sequela +C0495845|T037|PT|S33.7|ICD10|Sprain and strain of other and unspecified parts of lumbar spine and pelvis|Sprain and strain of other and unspecified parts of lumbar spine and pelvis +C2838595|T037|AB|S33.8|ICD10CM|Sprain of other parts of lumbar spine and pelvis|Sprain of other parts of lumbar spine and pelvis +C2838595|T037|HT|S33.8|ICD10CM|Sprain of other parts of lumbar spine and pelvis|Sprain of other parts of lumbar spine and pelvis +C2838596|T037|AB|S33.8XXA|ICD10CM|Sprain of oth parts of lumbar spine and pelvis, init encntr|Sprain of oth parts of lumbar spine and pelvis, init encntr +C2838596|T037|PT|S33.8XXA|ICD10CM|Sprain of other parts of lumbar spine and pelvis, initial encounter|Sprain of other parts of lumbar spine and pelvis, initial encounter +C2838597|T037|AB|S33.8XXD|ICD10CM|Sprain of oth parts of lumbar spine and pelvis, subs encntr|Sprain of oth parts of lumbar spine and pelvis, subs encntr +C2838597|T037|PT|S33.8XXD|ICD10CM|Sprain of other parts of lumbar spine and pelvis, subsequent encounter|Sprain of other parts of lumbar spine and pelvis, subsequent encounter +C2838598|T037|AB|S33.8XXS|ICD10CM|Sprain of other parts of lumbar spine and pelvis, sequela|Sprain of other parts of lumbar spine and pelvis, sequela +C2838598|T037|PT|S33.8XXS|ICD10CM|Sprain of other parts of lumbar spine and pelvis, sequela|Sprain of other parts of lumbar spine and pelvis, sequela +C2838599|T037|AB|S33.9|ICD10CM|Sprain of unspecified parts of lumbar spine and pelvis|Sprain of unspecified parts of lumbar spine and pelvis +C2838599|T037|HT|S33.9|ICD10CM|Sprain of unspecified parts of lumbar spine and pelvis|Sprain of unspecified parts of lumbar spine and pelvis +C2838600|T037|AB|S33.9XXA|ICD10CM|Sprain of unsp parts of lumbar spine and pelvis, init encntr|Sprain of unsp parts of lumbar spine and pelvis, init encntr +C2838600|T037|PT|S33.9XXA|ICD10CM|Sprain of unspecified parts of lumbar spine and pelvis, initial encounter|Sprain of unspecified parts of lumbar spine and pelvis, initial encounter +C2838601|T037|AB|S33.9XXD|ICD10CM|Sprain of unsp parts of lumbar spine and pelvis, subs encntr|Sprain of unsp parts of lumbar spine and pelvis, subs encntr +C2838601|T037|PT|S33.9XXD|ICD10CM|Sprain of unspecified parts of lumbar spine and pelvis, subsequent encounter|Sprain of unspecified parts of lumbar spine and pelvis, subsequent encounter +C2838602|T037|AB|S33.9XXS|ICD10CM|Sprain of unsp parts of lumbar spine and pelvis, sequela|Sprain of unsp parts of lumbar spine and pelvis, sequela +C2838602|T037|PT|S33.9XXS|ICD10CM|Sprain of unspecified parts of lumbar spine and pelvis, sequela|Sprain of unspecified parts of lumbar spine and pelvis, sequela +C2838603|T037|AB|S34|ICD10CM|Inj lower spinl cord and nrv at abd, low back and pelv level|Inj lower spinl cord and nrv at abd, low back and pelv level +C2838603|T037|HT|S34|ICD10CM|Injury of lumbar and sacral spinal cord and nerves at abdomen, lower back and pelvis level|Injury of lumbar and sacral spinal cord and nerves at abdomen, lower back and pelvis level +C0452051|T037|HT|S34|ICD10|Injury of nerves and lumbar spinal cord at abdomen, lower back and pelvis level|Injury of nerves and lumbar spinal cord at abdomen, lower back and pelvis level +C2838604|T037|AB|S34.0|ICD10CM|Concussion and edema of lumbar and sacral spinal cord|Concussion and edema of lumbar and sacral spinal cord +C2838604|T037|HT|S34.0|ICD10CM|Concussion and edema of lumbar and sacral spinal cord|Concussion and edema of lumbar and sacral spinal cord +C0475572|T037|PT|S34.0|ICD10AE|Concussion and edema of lumbar spinal cord|Concussion and edema of lumbar spinal cord +C0475572|T037|PT|S34.0|ICD10|Concussion and oedema of lumbar spinal cord|Concussion and oedema of lumbar spinal cord +C0475572|T037|HT|S34.01|ICD10CM|Concussion and edema of lumbar spinal cord|Concussion and edema of lumbar spinal cord +C0475572|T037|AB|S34.01|ICD10CM|Concussion and edema of lumbar spinal cord|Concussion and edema of lumbar spinal cord +C2838605|T037|AB|S34.01XA|ICD10CM|Concussion and edema of lumbar spinal cord, init encntr|Concussion and edema of lumbar spinal cord, init encntr +C2838605|T037|PT|S34.01XA|ICD10CM|Concussion and edema of lumbar spinal cord, initial encounter|Concussion and edema of lumbar spinal cord, initial encounter +C2838606|T037|AB|S34.01XD|ICD10CM|Concussion and edema of lumbar spinal cord, subs encntr|Concussion and edema of lumbar spinal cord, subs encntr +C2838606|T037|PT|S34.01XD|ICD10CM|Concussion and edema of lumbar spinal cord, subsequent encounter|Concussion and edema of lumbar spinal cord, subsequent encounter +C2838607|T037|AB|S34.01XS|ICD10CM|Concussion and edema of lumbar spinal cord, sequela|Concussion and edema of lumbar spinal cord, sequela +C2838607|T037|PT|S34.01XS|ICD10CM|Concussion and edema of lumbar spinal cord, sequela|Concussion and edema of lumbar spinal cord, sequela +C2838608|T037|ET|S34.02|ICD10CM|Concussion and edema of conus medullaris|Concussion and edema of conus medullaris +C2838609|T037|AB|S34.02|ICD10CM|Concussion and edema of sacral spinal cord|Concussion and edema of sacral spinal cord +C2838609|T037|HT|S34.02|ICD10CM|Concussion and edema of sacral spinal cord|Concussion and edema of sacral spinal cord +C2838610|T037|AB|S34.02XA|ICD10CM|Concussion and edema of sacral spinal cord, init encntr|Concussion and edema of sacral spinal cord, init encntr +C2838610|T037|PT|S34.02XA|ICD10CM|Concussion and edema of sacral spinal cord, initial encounter|Concussion and edema of sacral spinal cord, initial encounter +C2838611|T037|AB|S34.02XD|ICD10CM|Concussion and edema of sacral spinal cord, subs encntr|Concussion and edema of sacral spinal cord, subs encntr +C2838611|T037|PT|S34.02XD|ICD10CM|Concussion and edema of sacral spinal cord, subsequent encounter|Concussion and edema of sacral spinal cord, subsequent encounter +C2838612|T037|AB|S34.02XS|ICD10CM|Concussion and edema of sacral spinal cord, sequela|Concussion and edema of sacral spinal cord, sequela +C2838612|T037|PT|S34.02XS|ICD10CM|Concussion and edema of sacral spinal cord, sequela|Concussion and edema of sacral spinal cord, sequela +C2838613|T037|AB|S34.1|ICD10CM|Other and unsp injury of lumbar and sacral spinal cord|Other and unsp injury of lumbar and sacral spinal cord +C2838613|T037|HT|S34.1|ICD10CM|Other and unspecified injury of lumbar and sacral spinal cord|Other and unspecified injury of lumbar and sacral spinal cord +C0478257|T037|PT|S34.1|ICD10|Other injury of lumbar spinal cord|Other injury of lumbar spinal cord +C2838614|T037|AB|S34.10|ICD10CM|Unspecified injury to lumbar spinal cord|Unspecified injury to lumbar spinal cord +C2838614|T037|HT|S34.10|ICD10CM|Unspecified injury to lumbar spinal cord|Unspecified injury to lumbar spinal cord +C2838615|T037|AB|S34.101|ICD10CM|Unspecified injury to L1 level of lumbar spinal cord|Unspecified injury to L1 level of lumbar spinal cord +C2838615|T037|HT|S34.101|ICD10CM|Unspecified injury to L1 level of lumbar spinal cord|Unspecified injury to L1 level of lumbar spinal cord +C2838615|T037|ET|S34.101|ICD10CM|Unspecified injury to lumbar spinal cord level 1|Unspecified injury to lumbar spinal cord level 1 +C2838616|T037|AB|S34.101A|ICD10CM|Unsp injury to L1 level of lumbar spinal cord, init encntr|Unsp injury to L1 level of lumbar spinal cord, init encntr +C2838616|T037|PT|S34.101A|ICD10CM|Unspecified injury to L1 level of lumbar spinal cord, initial encounter|Unspecified injury to L1 level of lumbar spinal cord, initial encounter +C2838617|T037|AB|S34.101D|ICD10CM|Unsp injury to L1 level of lumbar spinal cord, subs encntr|Unsp injury to L1 level of lumbar spinal cord, subs encntr +C2838617|T037|PT|S34.101D|ICD10CM|Unspecified injury to L1 level of lumbar spinal cord, subsequent encounter|Unspecified injury to L1 level of lumbar spinal cord, subsequent encounter +C2838618|T037|AB|S34.101S|ICD10CM|Unsp injury to L1 level of lumbar spinal cord, sequela|Unsp injury to L1 level of lumbar spinal cord, sequela +C2838618|T037|PT|S34.101S|ICD10CM|Unspecified injury to L1 level of lumbar spinal cord, sequela|Unspecified injury to L1 level of lumbar spinal cord, sequela +C2838619|T037|AB|S34.102|ICD10CM|Unspecified injury to L2 level of lumbar spinal cord|Unspecified injury to L2 level of lumbar spinal cord +C2838619|T037|HT|S34.102|ICD10CM|Unspecified injury to L2 level of lumbar spinal cord|Unspecified injury to L2 level of lumbar spinal cord +C2838619|T037|ET|S34.102|ICD10CM|Unspecified injury to lumbar spinal cord level 2|Unspecified injury to lumbar spinal cord level 2 +C2838620|T037|AB|S34.102A|ICD10CM|Unsp injury to L2 level of lumbar spinal cord, init encntr|Unsp injury to L2 level of lumbar spinal cord, init encntr +C2838620|T037|PT|S34.102A|ICD10CM|Unspecified injury to L2 level of lumbar spinal cord, initial encounter|Unspecified injury to L2 level of lumbar spinal cord, initial encounter +C2838621|T037|AB|S34.102D|ICD10CM|Unsp injury to L2 level of lumbar spinal cord, subs encntr|Unsp injury to L2 level of lumbar spinal cord, subs encntr +C2838621|T037|PT|S34.102D|ICD10CM|Unspecified injury to L2 level of lumbar spinal cord, subsequent encounter|Unspecified injury to L2 level of lumbar spinal cord, subsequent encounter +C2838622|T037|AB|S34.102S|ICD10CM|Unsp injury to L2 level of lumbar spinal cord, sequela|Unsp injury to L2 level of lumbar spinal cord, sequela +C2838622|T037|PT|S34.102S|ICD10CM|Unspecified injury to L2 level of lumbar spinal cord, sequela|Unspecified injury to L2 level of lumbar spinal cord, sequela +C2838623|T037|AB|S34.103|ICD10CM|Unspecified injury to L3 level of lumbar spinal cord|Unspecified injury to L3 level of lumbar spinal cord +C2838623|T037|HT|S34.103|ICD10CM|Unspecified injury to L3 level of lumbar spinal cord|Unspecified injury to L3 level of lumbar spinal cord +C2838623|T037|ET|S34.103|ICD10CM|Unspecified injury to lumbar spinal cord level 3|Unspecified injury to lumbar spinal cord level 3 +C2838624|T037|AB|S34.103A|ICD10CM|Unsp injury to L3 level of lumbar spinal cord, init encntr|Unsp injury to L3 level of lumbar spinal cord, init encntr +C2838624|T037|PT|S34.103A|ICD10CM|Unspecified injury to L3 level of lumbar spinal cord, initial encounter|Unspecified injury to L3 level of lumbar spinal cord, initial encounter +C2838625|T037|AB|S34.103D|ICD10CM|Unsp injury to L3 level of lumbar spinal cord, subs encntr|Unsp injury to L3 level of lumbar spinal cord, subs encntr +C2838625|T037|PT|S34.103D|ICD10CM|Unspecified injury to L3 level of lumbar spinal cord, subsequent encounter|Unspecified injury to L3 level of lumbar spinal cord, subsequent encounter +C2838626|T037|AB|S34.103S|ICD10CM|Unsp injury to L3 level of lumbar spinal cord, sequela|Unsp injury to L3 level of lumbar spinal cord, sequela +C2838626|T037|PT|S34.103S|ICD10CM|Unspecified injury to L3 level of lumbar spinal cord, sequela|Unspecified injury to L3 level of lumbar spinal cord, sequela +C2838627|T037|AB|S34.104|ICD10CM|Unspecified injury to L4 level of lumbar spinal cord|Unspecified injury to L4 level of lumbar spinal cord +C2838627|T037|HT|S34.104|ICD10CM|Unspecified injury to L4 level of lumbar spinal cord|Unspecified injury to L4 level of lumbar spinal cord +C2838627|T037|ET|S34.104|ICD10CM|Unspecified injury to lumbar spinal cord level 4|Unspecified injury to lumbar spinal cord level 4 +C2838628|T037|AB|S34.104A|ICD10CM|Unsp injury to L4 level of lumbar spinal cord, init encntr|Unsp injury to L4 level of lumbar spinal cord, init encntr +C2838628|T037|PT|S34.104A|ICD10CM|Unspecified injury to L4 level of lumbar spinal cord, initial encounter|Unspecified injury to L4 level of lumbar spinal cord, initial encounter +C2838629|T037|AB|S34.104D|ICD10CM|Unsp injury to L4 level of lumbar spinal cord, subs encntr|Unsp injury to L4 level of lumbar spinal cord, subs encntr +C2838629|T037|PT|S34.104D|ICD10CM|Unspecified injury to L4 level of lumbar spinal cord, subsequent encounter|Unspecified injury to L4 level of lumbar spinal cord, subsequent encounter +C2838630|T037|AB|S34.104S|ICD10CM|Unsp injury to L4 level of lumbar spinal cord, sequela|Unsp injury to L4 level of lumbar spinal cord, sequela +C2838630|T037|PT|S34.104S|ICD10CM|Unspecified injury to L4 level of lumbar spinal cord, sequela|Unspecified injury to L4 level of lumbar spinal cord, sequela +C2838631|T037|AB|S34.105|ICD10CM|Unspecified injury to L5 level of lumbar spinal cord|Unspecified injury to L5 level of lumbar spinal cord +C2838631|T037|HT|S34.105|ICD10CM|Unspecified injury to L5 level of lumbar spinal cord|Unspecified injury to L5 level of lumbar spinal cord +C2838631|T037|ET|S34.105|ICD10CM|Unspecified injury to lumbar spinal cord level 5|Unspecified injury to lumbar spinal cord level 5 +C2838632|T037|AB|S34.105A|ICD10CM|Unsp injury to L5 level of lumbar spinal cord, init encntr|Unsp injury to L5 level of lumbar spinal cord, init encntr +C2838632|T037|PT|S34.105A|ICD10CM|Unspecified injury to L5 level of lumbar spinal cord, initial encounter|Unspecified injury to L5 level of lumbar spinal cord, initial encounter +C2838633|T037|AB|S34.105D|ICD10CM|Unsp injury to L5 level of lumbar spinal cord, subs encntr|Unsp injury to L5 level of lumbar spinal cord, subs encntr +C2838633|T037|PT|S34.105D|ICD10CM|Unspecified injury to L5 level of lumbar spinal cord, subsequent encounter|Unspecified injury to L5 level of lumbar spinal cord, subsequent encounter +C2838634|T037|AB|S34.105S|ICD10CM|Unsp injury to L5 level of lumbar spinal cord, sequela|Unsp injury to L5 level of lumbar spinal cord, sequela +C2838634|T037|PT|S34.105S|ICD10CM|Unspecified injury to L5 level of lumbar spinal cord, sequela|Unspecified injury to L5 level of lumbar spinal cord, sequela +C2838635|T037|AB|S34.109|ICD10CM|Unsp injury to unspecified level of lumbar spinal cord|Unsp injury to unspecified level of lumbar spinal cord +C2838635|T037|HT|S34.109|ICD10CM|Unspecified injury to unspecified level of lumbar spinal cord|Unspecified injury to unspecified level of lumbar spinal cord +C2838636|T037|AB|S34.109A|ICD10CM|Unsp injury to unsp level of lumbar spinal cord, init encntr|Unsp injury to unsp level of lumbar spinal cord, init encntr +C2838636|T037|PT|S34.109A|ICD10CM|Unspecified injury to unspecified level of lumbar spinal cord, initial encounter|Unspecified injury to unspecified level of lumbar spinal cord, initial encounter +C2838637|T037|AB|S34.109D|ICD10CM|Unsp injury to unsp level of lumbar spinal cord, subs encntr|Unsp injury to unsp level of lumbar spinal cord, subs encntr +C2838637|T037|PT|S34.109D|ICD10CM|Unspecified injury to unspecified level of lumbar spinal cord, subsequent encounter|Unspecified injury to unspecified level of lumbar spinal cord, subsequent encounter +C2838638|T037|AB|S34.109S|ICD10CM|Unsp injury to unsp level of lumbar spinal cord, sequela|Unsp injury to unsp level of lumbar spinal cord, sequela +C2838638|T037|PT|S34.109S|ICD10CM|Unspecified injury to unspecified level of lumbar spinal cord, sequela|Unspecified injury to unspecified level of lumbar spinal cord, sequela +C2838639|T037|HT|S34.11|ICD10CM|Complete lesion of lumbar spinal cord|Complete lesion of lumbar spinal cord +C2838639|T037|AB|S34.11|ICD10CM|Complete lesion of lumbar spinal cord|Complete lesion of lumbar spinal cord +C2838640|T037|AB|S34.111|ICD10CM|Complete lesion of L1 level of lumbar spinal cord|Complete lesion of L1 level of lumbar spinal cord +C2838640|T037|HT|S34.111|ICD10CM|Complete lesion of L1 level of lumbar spinal cord|Complete lesion of L1 level of lumbar spinal cord +C2838640|T037|ET|S34.111|ICD10CM|Complete lesion of lumbar spinal cord level 1|Complete lesion of lumbar spinal cord level 1 +C2838641|T037|AB|S34.111A|ICD10CM|Complete lesion of L1 level of lumbar spinal cord, init|Complete lesion of L1 level of lumbar spinal cord, init +C2838641|T037|PT|S34.111A|ICD10CM|Complete lesion of L1 level of lumbar spinal cord, initial encounter|Complete lesion of L1 level of lumbar spinal cord, initial encounter +C2838642|T037|AB|S34.111D|ICD10CM|Complete lesion of L1 level of lumbar spinal cord, subs|Complete lesion of L1 level of lumbar spinal cord, subs +C2838642|T037|PT|S34.111D|ICD10CM|Complete lesion of L1 level of lumbar spinal cord, subsequent encounter|Complete lesion of L1 level of lumbar spinal cord, subsequent encounter +C2838643|T037|AB|S34.111S|ICD10CM|Complete lesion of L1 level of lumbar spinal cord, sequela|Complete lesion of L1 level of lumbar spinal cord, sequela +C2838643|T037|PT|S34.111S|ICD10CM|Complete lesion of L1 level of lumbar spinal cord, sequela|Complete lesion of L1 level of lumbar spinal cord, sequela +C2838644|T037|AB|S34.112|ICD10CM|Complete lesion of L2 level of lumbar spinal cord|Complete lesion of L2 level of lumbar spinal cord +C2838644|T037|HT|S34.112|ICD10CM|Complete lesion of L2 level of lumbar spinal cord|Complete lesion of L2 level of lumbar spinal cord +C2838644|T037|ET|S34.112|ICD10CM|Complete lesion of lumbar spinal cord level 2|Complete lesion of lumbar spinal cord level 2 +C2838645|T037|AB|S34.112A|ICD10CM|Complete lesion of L2 level of lumbar spinal cord, init|Complete lesion of L2 level of lumbar spinal cord, init +C2838645|T037|PT|S34.112A|ICD10CM|Complete lesion of L2 level of lumbar spinal cord, initial encounter|Complete lesion of L2 level of lumbar spinal cord, initial encounter +C2838646|T037|AB|S34.112D|ICD10CM|Complete lesion of L2 level of lumbar spinal cord, subs|Complete lesion of L2 level of lumbar spinal cord, subs +C2838646|T037|PT|S34.112D|ICD10CM|Complete lesion of L2 level of lumbar spinal cord, subsequent encounter|Complete lesion of L2 level of lumbar spinal cord, subsequent encounter +C2838647|T037|AB|S34.112S|ICD10CM|Complete lesion of L2 level of lumbar spinal cord, sequela|Complete lesion of L2 level of lumbar spinal cord, sequela +C2838647|T037|PT|S34.112S|ICD10CM|Complete lesion of L2 level of lumbar spinal cord, sequela|Complete lesion of L2 level of lumbar spinal cord, sequela +C2838648|T037|AB|S34.113|ICD10CM|Complete lesion of L3 level of lumbar spinal cord|Complete lesion of L3 level of lumbar spinal cord +C2838648|T037|HT|S34.113|ICD10CM|Complete lesion of L3 level of lumbar spinal cord|Complete lesion of L3 level of lumbar spinal cord +C2838648|T037|ET|S34.113|ICD10CM|Complete lesion of lumbar spinal cord level 3|Complete lesion of lumbar spinal cord level 3 +C2838649|T037|AB|S34.113A|ICD10CM|Complete lesion of L3 level of lumbar spinal cord, init|Complete lesion of L3 level of lumbar spinal cord, init +C2838649|T037|PT|S34.113A|ICD10CM|Complete lesion of L3 level of lumbar spinal cord, initial encounter|Complete lesion of L3 level of lumbar spinal cord, initial encounter +C2838650|T037|AB|S34.113D|ICD10CM|Complete lesion of L3 level of lumbar spinal cord, subs|Complete lesion of L3 level of lumbar spinal cord, subs +C2838650|T037|PT|S34.113D|ICD10CM|Complete lesion of L3 level of lumbar spinal cord, subsequent encounter|Complete lesion of L3 level of lumbar spinal cord, subsequent encounter +C2838651|T037|AB|S34.113S|ICD10CM|Complete lesion of L3 level of lumbar spinal cord, sequela|Complete lesion of L3 level of lumbar spinal cord, sequela +C2838651|T037|PT|S34.113S|ICD10CM|Complete lesion of L3 level of lumbar spinal cord, sequela|Complete lesion of L3 level of lumbar spinal cord, sequela +C2838652|T037|AB|S34.114|ICD10CM|Complete lesion of L4 level of lumbar spinal cord|Complete lesion of L4 level of lumbar spinal cord +C2838652|T037|HT|S34.114|ICD10CM|Complete lesion of L4 level of lumbar spinal cord|Complete lesion of L4 level of lumbar spinal cord +C2838652|T037|ET|S34.114|ICD10CM|Complete lesion of lumbar spinal cord level 4|Complete lesion of lumbar spinal cord level 4 +C2838653|T037|AB|S34.114A|ICD10CM|Complete lesion of L4 level of lumbar spinal cord, init|Complete lesion of L4 level of lumbar spinal cord, init +C2838653|T037|PT|S34.114A|ICD10CM|Complete lesion of L4 level of lumbar spinal cord, initial encounter|Complete lesion of L4 level of lumbar spinal cord, initial encounter +C2838654|T037|AB|S34.114D|ICD10CM|Complete lesion of L4 level of lumbar spinal cord, subs|Complete lesion of L4 level of lumbar spinal cord, subs +C2838654|T037|PT|S34.114D|ICD10CM|Complete lesion of L4 level of lumbar spinal cord, subsequent encounter|Complete lesion of L4 level of lumbar spinal cord, subsequent encounter +C2838655|T037|AB|S34.114S|ICD10CM|Complete lesion of L4 level of lumbar spinal cord, sequela|Complete lesion of L4 level of lumbar spinal cord, sequela +C2838655|T037|PT|S34.114S|ICD10CM|Complete lesion of L4 level of lumbar spinal cord, sequela|Complete lesion of L4 level of lumbar spinal cord, sequela +C2838656|T037|AB|S34.115|ICD10CM|Complete lesion of L5 level of lumbar spinal cord|Complete lesion of L5 level of lumbar spinal cord +C2838656|T037|HT|S34.115|ICD10CM|Complete lesion of L5 level of lumbar spinal cord|Complete lesion of L5 level of lumbar spinal cord +C2838656|T037|ET|S34.115|ICD10CM|Complete lesion of lumbar spinal cord level 5|Complete lesion of lumbar spinal cord level 5 +C2838657|T037|AB|S34.115A|ICD10CM|Complete lesion of L5 level of lumbar spinal cord, init|Complete lesion of L5 level of lumbar spinal cord, init +C2838657|T037|PT|S34.115A|ICD10CM|Complete lesion of L5 level of lumbar spinal cord, initial encounter|Complete lesion of L5 level of lumbar spinal cord, initial encounter +C2838658|T037|AB|S34.115D|ICD10CM|Complete lesion of L5 level of lumbar spinal cord, subs|Complete lesion of L5 level of lumbar spinal cord, subs +C2838658|T037|PT|S34.115D|ICD10CM|Complete lesion of L5 level of lumbar spinal cord, subsequent encounter|Complete lesion of L5 level of lumbar spinal cord, subsequent encounter +C2838659|T037|AB|S34.115S|ICD10CM|Complete lesion of L5 level of lumbar spinal cord, sequela|Complete lesion of L5 level of lumbar spinal cord, sequela +C2838659|T037|PT|S34.115S|ICD10CM|Complete lesion of L5 level of lumbar spinal cord, sequela|Complete lesion of L5 level of lumbar spinal cord, sequela +C2838660|T037|AB|S34.119|ICD10CM|Complete lesion of unspecified level of lumbar spinal cord|Complete lesion of unspecified level of lumbar spinal cord +C2838660|T037|HT|S34.119|ICD10CM|Complete lesion of unspecified level of lumbar spinal cord|Complete lesion of unspecified level of lumbar spinal cord +C2838661|T037|AB|S34.119A|ICD10CM|Complete lesion of unsp level of lumbar spinal cord, init|Complete lesion of unsp level of lumbar spinal cord, init +C2838661|T037|PT|S34.119A|ICD10CM|Complete lesion of unspecified level of lumbar spinal cord, initial encounter|Complete lesion of unspecified level of lumbar spinal cord, initial encounter +C2838662|T037|AB|S34.119D|ICD10CM|Complete lesion of unsp level of lumbar spinal cord, subs|Complete lesion of unsp level of lumbar spinal cord, subs +C2838662|T037|PT|S34.119D|ICD10CM|Complete lesion of unspecified level of lumbar spinal cord, subsequent encounter|Complete lesion of unspecified level of lumbar spinal cord, subsequent encounter +C2838663|T037|AB|S34.119S|ICD10CM|Complete lesion of unsp level of lumbar spinal cord, sequela|Complete lesion of unsp level of lumbar spinal cord, sequela +C2838663|T037|PT|S34.119S|ICD10CM|Complete lesion of unspecified level of lumbar spinal cord, sequela|Complete lesion of unspecified level of lumbar spinal cord, sequela +C2838664|T037|AB|S34.12|ICD10CM|Incomplete lesion of lumbar spinal cord|Incomplete lesion of lumbar spinal cord +C2838664|T037|HT|S34.12|ICD10CM|Incomplete lesion of lumbar spinal cord|Incomplete lesion of lumbar spinal cord +C2838665|T037|AB|S34.121|ICD10CM|Incomplete lesion of L1 level of lumbar spinal cord|Incomplete lesion of L1 level of lumbar spinal cord +C2838665|T037|HT|S34.121|ICD10CM|Incomplete lesion of L1 level of lumbar spinal cord|Incomplete lesion of L1 level of lumbar spinal cord +C2838665|T037|ET|S34.121|ICD10CM|Incomplete lesion of lumbar spinal cord level 1|Incomplete lesion of lumbar spinal cord level 1 +C2838666|T037|AB|S34.121A|ICD10CM|Incomplete lesion of L1 level of lumbar spinal cord, init|Incomplete lesion of L1 level of lumbar spinal cord, init +C2838666|T037|PT|S34.121A|ICD10CM|Incomplete lesion of L1 level of lumbar spinal cord, initial encounter|Incomplete lesion of L1 level of lumbar spinal cord, initial encounter +C2838667|T037|AB|S34.121D|ICD10CM|Incomplete lesion of L1 level of lumbar spinal cord, subs|Incomplete lesion of L1 level of lumbar spinal cord, subs +C2838667|T037|PT|S34.121D|ICD10CM|Incomplete lesion of L1 level of lumbar spinal cord, subsequent encounter|Incomplete lesion of L1 level of lumbar spinal cord, subsequent encounter +C2838668|T037|AB|S34.121S|ICD10CM|Incomplete lesion of L1 level of lumbar spinal cord, sequela|Incomplete lesion of L1 level of lumbar spinal cord, sequela +C2838668|T037|PT|S34.121S|ICD10CM|Incomplete lesion of L1 level of lumbar spinal cord, sequela|Incomplete lesion of L1 level of lumbar spinal cord, sequela +C2838669|T037|AB|S34.122|ICD10CM|Incomplete lesion of L2 level of lumbar spinal cord|Incomplete lesion of L2 level of lumbar spinal cord +C2838669|T037|HT|S34.122|ICD10CM|Incomplete lesion of L2 level of lumbar spinal cord|Incomplete lesion of L2 level of lumbar spinal cord +C2838669|T037|ET|S34.122|ICD10CM|Incomplete lesion of lumbar spinal cord level 2|Incomplete lesion of lumbar spinal cord level 2 +C2838670|T037|AB|S34.122A|ICD10CM|Incomplete lesion of L2 level of lumbar spinal cord, init|Incomplete lesion of L2 level of lumbar spinal cord, init +C2838670|T037|PT|S34.122A|ICD10CM|Incomplete lesion of L2 level of lumbar spinal cord, initial encounter|Incomplete lesion of L2 level of lumbar spinal cord, initial encounter +C2838671|T037|AB|S34.122D|ICD10CM|Incomplete lesion of L2 level of lumbar spinal cord, subs|Incomplete lesion of L2 level of lumbar spinal cord, subs +C2838671|T037|PT|S34.122D|ICD10CM|Incomplete lesion of L2 level of lumbar spinal cord, subsequent encounter|Incomplete lesion of L2 level of lumbar spinal cord, subsequent encounter +C2838672|T037|AB|S34.122S|ICD10CM|Incomplete lesion of L2 level of lumbar spinal cord, sequela|Incomplete lesion of L2 level of lumbar spinal cord, sequela +C2838672|T037|PT|S34.122S|ICD10CM|Incomplete lesion of L2 level of lumbar spinal cord, sequela|Incomplete lesion of L2 level of lumbar spinal cord, sequela +C2838673|T037|AB|S34.123|ICD10CM|Incomplete lesion of L3 level of lumbar spinal cord|Incomplete lesion of L3 level of lumbar spinal cord +C2838673|T037|HT|S34.123|ICD10CM|Incomplete lesion of L3 level of lumbar spinal cord|Incomplete lesion of L3 level of lumbar spinal cord +C2838673|T037|ET|S34.123|ICD10CM|Incomplete lesion of lumbar spinal cord level 3|Incomplete lesion of lumbar spinal cord level 3 +C2838674|T037|AB|S34.123A|ICD10CM|Incomplete lesion of L3 level of lumbar spinal cord, init|Incomplete lesion of L3 level of lumbar spinal cord, init +C2838674|T037|PT|S34.123A|ICD10CM|Incomplete lesion of L3 level of lumbar spinal cord, initial encounter|Incomplete lesion of L3 level of lumbar spinal cord, initial encounter +C2838675|T037|AB|S34.123D|ICD10CM|Incomplete lesion of L3 level of lumbar spinal cord, subs|Incomplete lesion of L3 level of lumbar spinal cord, subs +C2838675|T037|PT|S34.123D|ICD10CM|Incomplete lesion of L3 level of lumbar spinal cord, subsequent encounter|Incomplete lesion of L3 level of lumbar spinal cord, subsequent encounter +C2838676|T037|AB|S34.123S|ICD10CM|Incomplete lesion of L3 level of lumbar spinal cord, sequela|Incomplete lesion of L3 level of lumbar spinal cord, sequela +C2838676|T037|PT|S34.123S|ICD10CM|Incomplete lesion of L3 level of lumbar spinal cord, sequela|Incomplete lesion of L3 level of lumbar spinal cord, sequela +C2838677|T037|AB|S34.124|ICD10CM|Incomplete lesion of L4 level of lumbar spinal cord|Incomplete lesion of L4 level of lumbar spinal cord +C2838677|T037|HT|S34.124|ICD10CM|Incomplete lesion of L4 level of lumbar spinal cord|Incomplete lesion of L4 level of lumbar spinal cord +C2838677|T037|ET|S34.124|ICD10CM|Incomplete lesion of lumbar spinal cord level 4|Incomplete lesion of lumbar spinal cord level 4 +C2838678|T037|AB|S34.124A|ICD10CM|Incomplete lesion of L4 level of lumbar spinal cord, init|Incomplete lesion of L4 level of lumbar spinal cord, init +C2838678|T037|PT|S34.124A|ICD10CM|Incomplete lesion of L4 level of lumbar spinal cord, initial encounter|Incomplete lesion of L4 level of lumbar spinal cord, initial encounter +C2838679|T037|AB|S34.124D|ICD10CM|Incomplete lesion of L4 level of lumbar spinal cord, subs|Incomplete lesion of L4 level of lumbar spinal cord, subs +C2838679|T037|PT|S34.124D|ICD10CM|Incomplete lesion of L4 level of lumbar spinal cord, subsequent encounter|Incomplete lesion of L4 level of lumbar spinal cord, subsequent encounter +C2838680|T037|AB|S34.124S|ICD10CM|Incomplete lesion of L4 level of lumbar spinal cord, sequela|Incomplete lesion of L4 level of lumbar spinal cord, sequela +C2838680|T037|PT|S34.124S|ICD10CM|Incomplete lesion of L4 level of lumbar spinal cord, sequela|Incomplete lesion of L4 level of lumbar spinal cord, sequela +C2838681|T037|AB|S34.125|ICD10CM|Incomplete lesion of L5 level of lumbar spinal cord|Incomplete lesion of L5 level of lumbar spinal cord +C2838681|T037|HT|S34.125|ICD10CM|Incomplete lesion of L5 level of lumbar spinal cord|Incomplete lesion of L5 level of lumbar spinal cord +C2838681|T037|ET|S34.125|ICD10CM|Incomplete lesion of lumbar spinal cord level 5|Incomplete lesion of lumbar spinal cord level 5 +C2838682|T037|AB|S34.125A|ICD10CM|Incomplete lesion of L5 level of lumbar spinal cord, init|Incomplete lesion of L5 level of lumbar spinal cord, init +C2838682|T037|PT|S34.125A|ICD10CM|Incomplete lesion of L5 level of lumbar spinal cord, initial encounter|Incomplete lesion of L5 level of lumbar spinal cord, initial encounter +C2838683|T037|AB|S34.125D|ICD10CM|Incomplete lesion of L5 level of lumbar spinal cord, subs|Incomplete lesion of L5 level of lumbar spinal cord, subs +C2838683|T037|PT|S34.125D|ICD10CM|Incomplete lesion of L5 level of lumbar spinal cord, subsequent encounter|Incomplete lesion of L5 level of lumbar spinal cord, subsequent encounter +C2838684|T037|AB|S34.125S|ICD10CM|Incomplete lesion of L5 level of lumbar spinal cord, sequela|Incomplete lesion of L5 level of lumbar spinal cord, sequela +C2838684|T037|PT|S34.125S|ICD10CM|Incomplete lesion of L5 level of lumbar spinal cord, sequela|Incomplete lesion of L5 level of lumbar spinal cord, sequela +C2838685|T037|AB|S34.129|ICD10CM|Incomplete lesion of unspecified level of lumbar spinal cord|Incomplete lesion of unspecified level of lumbar spinal cord +C2838685|T037|HT|S34.129|ICD10CM|Incomplete lesion of unspecified level of lumbar spinal cord|Incomplete lesion of unspecified level of lumbar spinal cord +C2838686|T037|AB|S34.129A|ICD10CM|Incomplete lesion of unsp level of lumbar spinal cord, init|Incomplete lesion of unsp level of lumbar spinal cord, init +C2838686|T037|PT|S34.129A|ICD10CM|Incomplete lesion of unspecified level of lumbar spinal cord, initial encounter|Incomplete lesion of unspecified level of lumbar spinal cord, initial encounter +C2838687|T037|AB|S34.129D|ICD10CM|Incomplete lesion of unsp level of lumbar spinal cord, subs|Incomplete lesion of unsp level of lumbar spinal cord, subs +C2838687|T037|PT|S34.129D|ICD10CM|Incomplete lesion of unspecified level of lumbar spinal cord, subsequent encounter|Incomplete lesion of unspecified level of lumbar spinal cord, subsequent encounter +C2838688|T037|AB|S34.129S|ICD10CM|Incomplete lesion of unsp level of lum spinal cord, sequela|Incomplete lesion of unsp level of lum spinal cord, sequela +C2838688|T037|PT|S34.129S|ICD10CM|Incomplete lesion of unspecified level of lumbar spinal cord, sequela|Incomplete lesion of unspecified level of lumbar spinal cord, sequela +C2838690|T037|AB|S34.13|ICD10CM|Other and unspecified injury to sacral spinal cord|Other and unspecified injury to sacral spinal cord +C2838690|T037|HT|S34.13|ICD10CM|Other and unspecified injury to sacral spinal cord|Other and unspecified injury to sacral spinal cord +C2838689|T037|ET|S34.13|ICD10CM|Other injury to conus medullaris|Other injury to conus medullaris +C2838691|T047|ET|S34.131|ICD10CM|Complete lesion of conus medullaris|Complete lesion of conus medullaris +C2838692|T037|AB|S34.131|ICD10CM|Complete lesion of sacral spinal cord|Complete lesion of sacral spinal cord +C2838692|T037|HT|S34.131|ICD10CM|Complete lesion of sacral spinal cord|Complete lesion of sacral spinal cord +C2838693|T037|PT|S34.131A|ICD10CM|Complete lesion of sacral spinal cord, initial encounter|Complete lesion of sacral spinal cord, initial encounter +C2838693|T037|AB|S34.131A|ICD10CM|Complete lesion of sacral spinal cord, initial encounter|Complete lesion of sacral spinal cord, initial encounter +C2838694|T037|PT|S34.131D|ICD10CM|Complete lesion of sacral spinal cord, subsequent encounter|Complete lesion of sacral spinal cord, subsequent encounter +C2838694|T037|AB|S34.131D|ICD10CM|Complete lesion of sacral spinal cord, subsequent encounter|Complete lesion of sacral spinal cord, subsequent encounter +C2838695|T037|PT|S34.131S|ICD10CM|Complete lesion of sacral spinal cord, sequela|Complete lesion of sacral spinal cord, sequela +C2838695|T037|AB|S34.131S|ICD10CM|Complete lesion of sacral spinal cord, sequela|Complete lesion of sacral spinal cord, sequela +C2838696|T020|ET|S34.132|ICD10CM|Incomplete lesion of conus medullaris|Incomplete lesion of conus medullaris +C2838697|T037|AB|S34.132|ICD10CM|Incomplete lesion of sacral spinal cord|Incomplete lesion of sacral spinal cord +C2838697|T037|HT|S34.132|ICD10CM|Incomplete lesion of sacral spinal cord|Incomplete lesion of sacral spinal cord +C2838698|T037|PT|S34.132A|ICD10CM|Incomplete lesion of sacral spinal cord, initial encounter|Incomplete lesion of sacral spinal cord, initial encounter +C2838698|T037|AB|S34.132A|ICD10CM|Incomplete lesion of sacral spinal cord, initial encounter|Incomplete lesion of sacral spinal cord, initial encounter +C2838699|T037|AB|S34.132D|ICD10CM|Incomplete lesion of sacral spinal cord, subs encntr|Incomplete lesion of sacral spinal cord, subs encntr +C2838699|T037|PT|S34.132D|ICD10CM|Incomplete lesion of sacral spinal cord, subsequent encounter|Incomplete lesion of sacral spinal cord, subsequent encounter +C2838700|T037|PT|S34.132S|ICD10CM|Incomplete lesion of sacral spinal cord, sequela|Incomplete lesion of sacral spinal cord, sequela +C2838700|T037|AB|S34.132S|ICD10CM|Incomplete lesion of sacral spinal cord, sequela|Incomplete lesion of sacral spinal cord, sequela +C2838701|T037|ET|S34.139|ICD10CM|Unspecified injury of conus medullaris|Unspecified injury of conus medullaris +C2838702|T037|AB|S34.139|ICD10CM|Unspecified injury to sacral spinal cord|Unspecified injury to sacral spinal cord +C2838702|T037|HT|S34.139|ICD10CM|Unspecified injury to sacral spinal cord|Unspecified injury to sacral spinal cord +C2838703|T037|AB|S34.139A|ICD10CM|Unspecified injury to sacral spinal cord, initial encounter|Unspecified injury to sacral spinal cord, initial encounter +C2838703|T037|PT|S34.139A|ICD10CM|Unspecified injury to sacral spinal cord, initial encounter|Unspecified injury to sacral spinal cord, initial encounter +C2838704|T037|AB|S34.139D|ICD10CM|Unspecified injury to sacral spinal cord, subs encntr|Unspecified injury to sacral spinal cord, subs encntr +C2838704|T037|PT|S34.139D|ICD10CM|Unspecified injury to sacral spinal cord, subsequent encounter|Unspecified injury to sacral spinal cord, subsequent encounter +C2838705|T037|AB|S34.139S|ICD10CM|Unspecified injury to sacral spinal cord, sequela|Unspecified injury to sacral spinal cord, sequela +C2838705|T037|PT|S34.139S|ICD10CM|Unspecified injury to sacral spinal cord, sequela|Unspecified injury to sacral spinal cord, sequela +C0495846|T037|PT|S34.2|ICD10|Injury of nerve root of lumbar and sacral spine|Injury of nerve root of lumbar and sacral spine +C0495846|T037|HT|S34.2|ICD10CM|Injury of nerve root of lumbar and sacral spine|Injury of nerve root of lumbar and sacral spine +C0495846|T037|AB|S34.2|ICD10CM|Injury of nerve root of lumbar and sacral spine|Injury of nerve root of lumbar and sacral spine +C0161444|T037|AB|S34.21|ICD10CM|Injury of nerve root of lumbar spine|Injury of nerve root of lumbar spine +C0161444|T037|HT|S34.21|ICD10CM|Injury of nerve root of lumbar spine|Injury of nerve root of lumbar spine +C2838706|T037|AB|S34.21XA|ICD10CM|Injury of nerve root of lumbar spine, initial encounter|Injury of nerve root of lumbar spine, initial encounter +C2838706|T037|PT|S34.21XA|ICD10CM|Injury of nerve root of lumbar spine, initial encounter|Injury of nerve root of lumbar spine, initial encounter +C2838707|T037|AB|S34.21XD|ICD10CM|Injury of nerve root of lumbar spine, subsequent encounter|Injury of nerve root of lumbar spine, subsequent encounter +C2838707|T037|PT|S34.21XD|ICD10CM|Injury of nerve root of lumbar spine, subsequent encounter|Injury of nerve root of lumbar spine, subsequent encounter +C2838708|T037|AB|S34.21XS|ICD10CM|Injury of nerve root of lumbar spine, sequela|Injury of nerve root of lumbar spine, sequela +C2838708|T037|PT|S34.21XS|ICD10CM|Injury of nerve root of lumbar spine, sequela|Injury of nerve root of lumbar spine, sequela +C0161445|T037|AB|S34.22|ICD10CM|Injury of nerve root of sacral spine|Injury of nerve root of sacral spine +C0161445|T037|HT|S34.22|ICD10CM|Injury of nerve root of sacral spine|Injury of nerve root of sacral spine +C2838709|T037|AB|S34.22XA|ICD10CM|Injury of nerve root of sacral spine, initial encounter|Injury of nerve root of sacral spine, initial encounter +C2838709|T037|PT|S34.22XA|ICD10CM|Injury of nerve root of sacral spine, initial encounter|Injury of nerve root of sacral spine, initial encounter +C2838710|T037|AB|S34.22XD|ICD10CM|Injury of nerve root of sacral spine, subsequent encounter|Injury of nerve root of sacral spine, subsequent encounter +C2838710|T037|PT|S34.22XD|ICD10CM|Injury of nerve root of sacral spine, subsequent encounter|Injury of nerve root of sacral spine, subsequent encounter +C2838711|T037|AB|S34.22XS|ICD10CM|Injury of nerve root of sacral spine, sequela|Injury of nerve root of sacral spine, sequela +C2838711|T037|PT|S34.22XS|ICD10CM|Injury of nerve root of sacral spine, sequela|Injury of nerve root of sacral spine, sequela +C0338557|T037|HT|S34.3|ICD10CM|Injury of cauda equina|Injury of cauda equina +C0338557|T037|AB|S34.3|ICD10CM|Injury of cauda equina|Injury of cauda equina +C0338557|T037|PT|S34.3|ICD10|Injury of cauda equina|Injury of cauda equina +C2838712|T037|AB|S34.3XXA|ICD10CM|Injury of cauda equina, initial encounter|Injury of cauda equina, initial encounter +C2838712|T037|PT|S34.3XXA|ICD10CM|Injury of cauda equina, initial encounter|Injury of cauda equina, initial encounter +C2838713|T037|AB|S34.3XXD|ICD10CM|Injury of cauda equina, subsequent encounter|Injury of cauda equina, subsequent encounter +C2838713|T037|PT|S34.3XXD|ICD10CM|Injury of cauda equina, subsequent encounter|Injury of cauda equina, subsequent encounter +C2838714|T037|AB|S34.3XXS|ICD10CM|Injury of cauda equina, sequela|Injury of cauda equina, sequela +C2838714|T037|PT|S34.3XXS|ICD10CM|Injury of cauda equina, sequela|Injury of cauda equina, sequela +C0161447|T037|PT|S34.4|ICD10|Injury of lumbosacral plexus|Injury of lumbosacral plexus +C0161447|T037|HT|S34.4|ICD10CM|Injury of lumbosacral plexus|Injury of lumbosacral plexus +C0161447|T037|AB|S34.4|ICD10CM|Injury of lumbosacral plexus|Injury of lumbosacral plexus +C2838715|T037|AB|S34.4XXA|ICD10CM|Injury of lumbosacral plexus, initial encounter|Injury of lumbosacral plexus, initial encounter +C2838715|T037|PT|S34.4XXA|ICD10CM|Injury of lumbosacral plexus, initial encounter|Injury of lumbosacral plexus, initial encounter +C2838716|T037|AB|S34.4XXD|ICD10CM|Injury of lumbosacral plexus, subsequent encounter|Injury of lumbosacral plexus, subsequent encounter +C2838716|T037|PT|S34.4XXD|ICD10CM|Injury of lumbosacral plexus, subsequent encounter|Injury of lumbosacral plexus, subsequent encounter +C2838717|T037|AB|S34.4XXS|ICD10CM|Injury of lumbosacral plexus, sequela|Injury of lumbosacral plexus, sequela +C2838717|T037|PT|S34.4XXS|ICD10CM|Injury of lumbosacral plexus, sequela|Injury of lumbosacral plexus, sequela +C0273525|T037|ET|S34.5|ICD10CM|Injury of celiac ganglion or plexus|Injury of celiac ganglion or plexus +C1405163|T037|ET|S34.5|ICD10CM|Injury of hypogastric plexus|Injury of hypogastric plexus +C0495847|T037|PT|S34.5|ICD10|Injury of lumbar, sacral and pelvic sympathetic nerves|Injury of lumbar, sacral and pelvic sympathetic nerves +C0495847|T037|HT|S34.5|ICD10CM|Injury of lumbar, sacral and pelvic sympathetic nerves|Injury of lumbar, sacral and pelvic sympathetic nerves +C0495847|T037|AB|S34.5|ICD10CM|Injury of lumbar, sacral and pelvic sympathetic nerves|Injury of lumbar, sacral and pelvic sympathetic nerves +C2838718|T037|ET|S34.5|ICD10CM|Injury of mesenteric plexus (inferior) (superior)|Injury of mesenteric plexus (inferior) (superior) +C0273527|T037|ET|S34.5|ICD10CM|Injury of splanchnic nerve|Injury of splanchnic nerve +C2838719|T037|AB|S34.5XXA|ICD10CM|Injury of lumbar, sacral and pelvic sympathetic nerves, init|Injury of lumbar, sacral and pelvic sympathetic nerves, init +C2838719|T037|PT|S34.5XXA|ICD10CM|Injury of lumbar, sacral and pelvic sympathetic nerves, initial encounter|Injury of lumbar, sacral and pelvic sympathetic nerves, initial encounter +C2838720|T037|AB|S34.5XXD|ICD10CM|Injury of lumbar, sacral and pelvic sympathetic nerves, subs|Injury of lumbar, sacral and pelvic sympathetic nerves, subs +C2838720|T037|PT|S34.5XXD|ICD10CM|Injury of lumbar, sacral and pelvic sympathetic nerves, subsequent encounter|Injury of lumbar, sacral and pelvic sympathetic nerves, subsequent encounter +C2838721|T037|AB|S34.5XXS|ICD10CM|Inj lumbar, sacral and pelvic sympathetic nerves, sequela|Inj lumbar, sacral and pelvic sympathetic nerves, sequela +C2838721|T037|PT|S34.5XXS|ICD10CM|Injury of lumbar, sacral and pelvic sympathetic nerves, sequela|Injury of lumbar, sacral and pelvic sympathetic nerves, sequela +C2838722|T037|AB|S34.6|ICD10CM|Inj prph nerve(s) at abdomen, low back and pelvis level|Inj prph nerve(s) at abdomen, low back and pelvis level +C2838722|T037|HT|S34.6|ICD10CM|Injury of peripheral nerve(s) at abdomen, lower back and pelvis level|Injury of peripheral nerve(s) at abdomen, lower back and pelvis level +C0495848|T037|PT|S34.6|ICD10|Injury of peripheral nerve(s) of abdomen, lower back and pelvis|Injury of peripheral nerve(s) of abdomen, lower back and pelvis +C2838723|T037|AB|S34.6XXA|ICD10CM|Inj prph nerve(s) at abd, low back and pelvis level, init|Inj prph nerve(s) at abd, low back and pelvis level, init +C2838723|T037|PT|S34.6XXA|ICD10CM|Injury of peripheral nerve(s) at abdomen, lower back and pelvis level, initial encounter|Injury of peripheral nerve(s) at abdomen, lower back and pelvis level, initial encounter +C2838724|T037|AB|S34.6XXD|ICD10CM|Inj prph nerve(s) at abd, low back and pelvis level, subs|Inj prph nerve(s) at abd, low back and pelvis level, subs +C2838724|T037|PT|S34.6XXD|ICD10CM|Injury of peripheral nerve(s) at abdomen, lower back and pelvis level, subsequent encounter|Injury of peripheral nerve(s) at abdomen, lower back and pelvis level, subsequent encounter +C2838725|T037|AB|S34.6XXS|ICD10CM|Inj prph nerve(s) at abd, low back and pelvis level, sequela|Inj prph nerve(s) at abd, low back and pelvis level, sequela +C2838725|T037|PT|S34.6XXS|ICD10CM|Injury of peripheral nerve(s) at abdomen, lower back and pelvis level, sequela|Injury of peripheral nerve(s) at abdomen, lower back and pelvis level, sequela +C2838726|T037|AB|S34.8|ICD10CM|Injury of oth nerves at abdomen, lower back and pelvis level|Injury of oth nerves at abdomen, lower back and pelvis level +C0495849|T037|PT|S34.8|ICD10|Injury of other and unspecified nerves at abdomen, lower back and pelvis level|Injury of other and unspecified nerves at abdomen, lower back and pelvis level +C2838726|T037|HT|S34.8|ICD10CM|Injury of other nerves at abdomen, lower back and pelvis level|Injury of other nerves at abdomen, lower back and pelvis level +C2838727|T037|AB|S34.8XXA|ICD10CM|Injury of nerves at abdomen, low back and pelvis level, init|Injury of nerves at abdomen, low back and pelvis level, init +C2838727|T037|PT|S34.8XXA|ICD10CM|Injury of other nerves at abdomen, lower back and pelvis level, initial encounter|Injury of other nerves at abdomen, lower back and pelvis level, initial encounter +C2838728|T037|AB|S34.8XXD|ICD10CM|Injury of nerves at abdomen, low back and pelvis level, subs|Injury of nerves at abdomen, low back and pelvis level, subs +C2838728|T037|PT|S34.8XXD|ICD10CM|Injury of other nerves at abdomen, lower back and pelvis level, subsequent encounter|Injury of other nerves at abdomen, lower back and pelvis level, subsequent encounter +C2838729|T037|AB|S34.8XXS|ICD10CM|Inj nerves at abdomen, low back and pelvis level, sequela|Inj nerves at abdomen, low back and pelvis level, sequela +C2838729|T037|PT|S34.8XXS|ICD10CM|Injury of other nerves at abdomen, lower back and pelvis level, sequela|Injury of other nerves at abdomen, lower back and pelvis level, sequela +C2838730|T037|AB|S34.9|ICD10CM|Injury of unsp nerves at abdomen, low back and pelvis level|Injury of unsp nerves at abdomen, low back and pelvis level +C2838730|T037|HT|S34.9|ICD10CM|Injury of unspecified nerves at abdomen, lower back and pelvis level|Injury of unspecified nerves at abdomen, lower back and pelvis level +C2838731|T037|AB|S34.9XXA|ICD10CM|Inj unsp nerves at abdomen, low back and pelvis level, init|Inj unsp nerves at abdomen, low back and pelvis level, init +C2838731|T037|PT|S34.9XXA|ICD10CM|Injury of unspecified nerves at abdomen, lower back and pelvis level, initial encounter|Injury of unspecified nerves at abdomen, lower back and pelvis level, initial encounter +C2838732|T037|AB|S34.9XXD|ICD10CM|Inj unsp nerves at abdomen, low back and pelvis level, subs|Inj unsp nerves at abdomen, low back and pelvis level, subs +C2838732|T037|PT|S34.9XXD|ICD10CM|Injury of unspecified nerves at abdomen, lower back and pelvis level, subsequent encounter|Injury of unspecified nerves at abdomen, lower back and pelvis level, subsequent encounter +C2838733|T037|AB|S34.9XXS|ICD10CM|Inj unsp nerves at abd, low back and pelvis level, sequela|Inj unsp nerves at abd, low back and pelvis level, sequela +C2838733|T037|PT|S34.9XXS|ICD10CM|Injury of unspecified nerves at abdomen, lower back and pelvis level, sequela|Injury of unspecified nerves at abdomen, lower back and pelvis level, sequela +C0478260|T037|AB|S35|ICD10CM|Inj blood vessels at abdomen, low back and pelvis level|Inj blood vessels at abdomen, low back and pelvis level +C0478260|T037|HT|S35|ICD10CM|Injury of blood vessels at abdomen, lower back and pelvis level|Injury of blood vessels at abdomen, lower back and pelvis level +C0478260|T037|HT|S35|ICD10|Injury of blood vessels at abdomen, lower back and pelvis level|Injury of blood vessels at abdomen, lower back and pelvis level +C0160704|T037|HT|S35.0|ICD10CM|Injury of abdominal aorta|Injury of abdominal aorta +C0160704|T037|AB|S35.0|ICD10CM|Injury of abdominal aorta|Injury of abdominal aorta +C0160704|T037|PT|S35.0|ICD10|Injury of abdominal aorta|Injury of abdominal aorta +C2838734|T037|AB|S35.00|ICD10CM|Unspecified injury of abdominal aorta|Unspecified injury of abdominal aorta +C2838734|T037|HT|S35.00|ICD10CM|Unspecified injury of abdominal aorta|Unspecified injury of abdominal aorta +C2838735|T037|PT|S35.00XA|ICD10CM|Unspecified injury of abdominal aorta, initial encounter|Unspecified injury of abdominal aorta, initial encounter +C2838735|T037|AB|S35.00XA|ICD10CM|Unspecified injury of abdominal aorta, initial encounter|Unspecified injury of abdominal aorta, initial encounter +C2838736|T037|PT|S35.00XD|ICD10CM|Unspecified injury of abdominal aorta, subsequent encounter|Unspecified injury of abdominal aorta, subsequent encounter +C2838736|T037|AB|S35.00XD|ICD10CM|Unspecified injury of abdominal aorta, subsequent encounter|Unspecified injury of abdominal aorta, subsequent encounter +C2838737|T037|PT|S35.00XS|ICD10CM|Unspecified injury of abdominal aorta, sequela|Unspecified injury of abdominal aorta, sequela +C2838737|T037|AB|S35.00XS|ICD10CM|Unspecified injury of abdominal aorta, sequela|Unspecified injury of abdominal aorta, sequela +C2838738|T037|ET|S35.01|ICD10CM|Incomplete transection of abdominal aorta|Incomplete transection of abdominal aorta +C2838739|T037|ET|S35.01|ICD10CM|Laceration of abdominal aorta NOS|Laceration of abdominal aorta NOS +C2838741|T037|AB|S35.01|ICD10CM|Minor laceration of abdominal aorta|Minor laceration of abdominal aorta +C2838741|T037|HT|S35.01|ICD10CM|Minor laceration of abdominal aorta|Minor laceration of abdominal aorta +C2838740|T037|ET|S35.01|ICD10CM|Superficial laceration of abdominal aorta|Superficial laceration of abdominal aorta +C2838742|T037|PT|S35.01XA|ICD10CM|Minor laceration of abdominal aorta, initial encounter|Minor laceration of abdominal aorta, initial encounter +C2838742|T037|AB|S35.01XA|ICD10CM|Minor laceration of abdominal aorta, initial encounter|Minor laceration of abdominal aorta, initial encounter +C2838743|T037|PT|S35.01XD|ICD10CM|Minor laceration of abdominal aorta, subsequent encounter|Minor laceration of abdominal aorta, subsequent encounter +C2838743|T037|AB|S35.01XD|ICD10CM|Minor laceration of abdominal aorta, subsequent encounter|Minor laceration of abdominal aorta, subsequent encounter +C2838744|T037|PT|S35.01XS|ICD10CM|Minor laceration of abdominal aorta, sequela|Minor laceration of abdominal aorta, sequela +C2838744|T037|AB|S35.01XS|ICD10CM|Minor laceration of abdominal aorta, sequela|Minor laceration of abdominal aorta, sequela +C2838745|T037|ET|S35.02|ICD10CM|Complete transection of abdominal aorta|Complete transection of abdominal aorta +C2838746|T037|AB|S35.02|ICD10CM|Major laceration of abdominal aorta|Major laceration of abdominal aorta +C2838746|T037|HT|S35.02|ICD10CM|Major laceration of abdominal aorta|Major laceration of abdominal aorta +C1406435|T037|ET|S35.02|ICD10CM|Traumatic rupture of abdominal aorta|Traumatic rupture of abdominal aorta +C2838747|T037|PT|S35.02XA|ICD10CM|Major laceration of abdominal aorta, initial encounter|Major laceration of abdominal aorta, initial encounter +C2838747|T037|AB|S35.02XA|ICD10CM|Major laceration of abdominal aorta, initial encounter|Major laceration of abdominal aorta, initial encounter +C2838748|T037|PT|S35.02XD|ICD10CM|Major laceration of abdominal aorta, subsequent encounter|Major laceration of abdominal aorta, subsequent encounter +C2838748|T037|AB|S35.02XD|ICD10CM|Major laceration of abdominal aorta, subsequent encounter|Major laceration of abdominal aorta, subsequent encounter +C2838749|T037|PT|S35.02XS|ICD10CM|Major laceration of abdominal aorta, sequela|Major laceration of abdominal aorta, sequela +C2838749|T037|AB|S35.02XS|ICD10CM|Major laceration of abdominal aorta, sequela|Major laceration of abdominal aorta, sequela +C2838750|T037|AB|S35.09|ICD10CM|Other injury of abdominal aorta|Other injury of abdominal aorta +C2838750|T037|HT|S35.09|ICD10CM|Other injury of abdominal aorta|Other injury of abdominal aorta +C2838751|T037|PT|S35.09XA|ICD10CM|Other injury of abdominal aorta, initial encounter|Other injury of abdominal aorta, initial encounter +C2838751|T037|AB|S35.09XA|ICD10CM|Other injury of abdominal aorta, initial encounter|Other injury of abdominal aorta, initial encounter +C2838752|T037|PT|S35.09XD|ICD10CM|Other injury of abdominal aorta, subsequent encounter|Other injury of abdominal aorta, subsequent encounter +C2838752|T037|AB|S35.09XD|ICD10CM|Other injury of abdominal aorta, subsequent encounter|Other injury of abdominal aorta, subsequent encounter +C2838753|T037|PT|S35.09XS|ICD10CM|Other injury of abdominal aorta, sequela|Other injury of abdominal aorta, sequela +C2838753|T037|AB|S35.09XS|ICD10CM|Other injury of abdominal aorta, sequela|Other injury of abdominal aorta, sequela +C0160706|T037|ET|S35.1|ICD10CM|Injury of hepatic vein|Injury of hepatic vein +C0160705|T037|HT|S35.1|ICD10CM|Injury of inferior vena cava|Injury of inferior vena cava +C0160705|T037|AB|S35.1|ICD10CM|Injury of inferior vena cava|Injury of inferior vena cava +C0160705|T037|PT|S35.1|ICD10|Injury of inferior vena cava|Injury of inferior vena cava +C0160705|T037|AB|S35.10|ICD10CM|Unspecified injury of inferior vena cava|Unspecified injury of inferior vena cava +C0160705|T037|HT|S35.10|ICD10CM|Unspecified injury of inferior vena cava|Unspecified injury of inferior vena cava +C2838754|T037|PT|S35.10XA|ICD10CM|Unspecified injury of inferior vena cava, initial encounter|Unspecified injury of inferior vena cava, initial encounter +C2838754|T037|AB|S35.10XA|ICD10CM|Unspecified injury of inferior vena cava, initial encounter|Unspecified injury of inferior vena cava, initial encounter +C2838755|T037|AB|S35.10XD|ICD10CM|Unspecified injury of inferior vena cava, subs encntr|Unspecified injury of inferior vena cava, subs encntr +C2838755|T037|PT|S35.10XD|ICD10CM|Unspecified injury of inferior vena cava, subsequent encounter|Unspecified injury of inferior vena cava, subsequent encounter +C2838756|T037|PT|S35.10XS|ICD10CM|Unspecified injury of inferior vena cava, sequela|Unspecified injury of inferior vena cava, sequela +C2838756|T037|AB|S35.10XS|ICD10CM|Unspecified injury of inferior vena cava, sequela|Unspecified injury of inferior vena cava, sequela +C2838757|T037|ET|S35.11|ICD10CM|Incomplete transection of inferior vena cava|Incomplete transection of inferior vena cava +C2838758|T037|ET|S35.11|ICD10CM|Laceration of inferior vena cava NOS|Laceration of inferior vena cava NOS +C2838760|T037|AB|S35.11|ICD10CM|Minor laceration of inferior vena cava|Minor laceration of inferior vena cava +C2838760|T037|HT|S35.11|ICD10CM|Minor laceration of inferior vena cava|Minor laceration of inferior vena cava +C2838759|T037|ET|S35.11|ICD10CM|Superficial laceration of inferior vena cava|Superficial laceration of inferior vena cava +C2838761|T037|PT|S35.11XA|ICD10CM|Minor laceration of inferior vena cava, initial encounter|Minor laceration of inferior vena cava, initial encounter +C2838761|T037|AB|S35.11XA|ICD10CM|Minor laceration of inferior vena cava, initial encounter|Minor laceration of inferior vena cava, initial encounter +C2838762|T037|AB|S35.11XD|ICD10CM|Minor laceration of inferior vena cava, subsequent encounter|Minor laceration of inferior vena cava, subsequent encounter +C2838762|T037|PT|S35.11XD|ICD10CM|Minor laceration of inferior vena cava, subsequent encounter|Minor laceration of inferior vena cava, subsequent encounter +C2838763|T037|PT|S35.11XS|ICD10CM|Minor laceration of inferior vena cava, sequela|Minor laceration of inferior vena cava, sequela +C2838763|T037|AB|S35.11XS|ICD10CM|Minor laceration of inferior vena cava, sequela|Minor laceration of inferior vena cava, sequela +C2838764|T037|ET|S35.12|ICD10CM|Complete transection of inferior vena cava|Complete transection of inferior vena cava +C2838766|T037|AB|S35.12|ICD10CM|Major laceration of inferior vena cava|Major laceration of inferior vena cava +C2838766|T037|HT|S35.12|ICD10CM|Major laceration of inferior vena cava|Major laceration of inferior vena cava +C2838765|T037|ET|S35.12|ICD10CM|Traumatic rupture of inferior vena cava|Traumatic rupture of inferior vena cava +C2838767|T037|PT|S35.12XA|ICD10CM|Major laceration of inferior vena cava, initial encounter|Major laceration of inferior vena cava, initial encounter +C2838767|T037|AB|S35.12XA|ICD10CM|Major laceration of inferior vena cava, initial encounter|Major laceration of inferior vena cava, initial encounter +C2838768|T037|AB|S35.12XD|ICD10CM|Major laceration of inferior vena cava, subsequent encounter|Major laceration of inferior vena cava, subsequent encounter +C2838768|T037|PT|S35.12XD|ICD10CM|Major laceration of inferior vena cava, subsequent encounter|Major laceration of inferior vena cava, subsequent encounter +C2838769|T037|PT|S35.12XS|ICD10CM|Major laceration of inferior vena cava, sequela|Major laceration of inferior vena cava, sequela +C2838769|T037|AB|S35.12XS|ICD10CM|Major laceration of inferior vena cava, sequela|Major laceration of inferior vena cava, sequela +C0160707|T037|AB|S35.19|ICD10CM|Other injury of inferior vena cava|Other injury of inferior vena cava +C0160707|T037|HT|S35.19|ICD10CM|Other injury of inferior vena cava|Other injury of inferior vena cava +C2838771|T037|PT|S35.19XA|ICD10CM|Other injury of inferior vena cava, initial encounter|Other injury of inferior vena cava, initial encounter +C2838771|T037|AB|S35.19XA|ICD10CM|Other injury of inferior vena cava, initial encounter|Other injury of inferior vena cava, initial encounter +C2838772|T037|PT|S35.19XD|ICD10CM|Other injury of inferior vena cava, subsequent encounter|Other injury of inferior vena cava, subsequent encounter +C2838772|T037|AB|S35.19XD|ICD10CM|Other injury of inferior vena cava, subsequent encounter|Other injury of inferior vena cava, subsequent encounter +C2838773|T037|PT|S35.19XS|ICD10CM|Other injury of inferior vena cava, sequela|Other injury of inferior vena cava, sequela +C2838773|T037|AB|S35.19XS|ICD10CM|Other injury of inferior vena cava, sequela|Other injury of inferior vena cava, sequela +C0160708|T037|PT|S35.2|ICD10AE|Injury of celiac or mesenteric artery|Injury of celiac or mesenteric artery +C2838774|T037|AB|S35.2|ICD10CM|Injury of celiac or mesenteric artery and branches|Injury of celiac or mesenteric artery and branches +C2838774|T037|HT|S35.2|ICD10CM|Injury of celiac or mesenteric artery and branches|Injury of celiac or mesenteric artery and branches +C0160708|T037|PT|S35.2|ICD10|Injury of coeliac or mesenteric artery|Injury of coeliac or mesenteric artery +C1384772|T037|AB|S35.21|ICD10CM|Injury of celiac artery|Injury of celiac artery +C1384772|T037|HT|S35.21|ICD10CM|Injury of celiac artery|Injury of celiac artery +C2838775|T037|ET|S35.211|ICD10CM|Incomplete transection of celiac artery|Incomplete transection of celiac artery +C2838776|T037|ET|S35.211|ICD10CM|Laceration of celiac artery NOS|Laceration of celiac artery NOS +C2838778|T037|AB|S35.211|ICD10CM|Minor laceration of celiac artery|Minor laceration of celiac artery +C2838778|T037|HT|S35.211|ICD10CM|Minor laceration of celiac artery|Minor laceration of celiac artery +C2838777|T037|ET|S35.211|ICD10CM|Superficial laceration of celiac artery|Superficial laceration of celiac artery +C2838779|T037|PT|S35.211A|ICD10CM|Minor laceration of celiac artery, initial encounter|Minor laceration of celiac artery, initial encounter +C2838779|T037|AB|S35.211A|ICD10CM|Minor laceration of celiac artery, initial encounter|Minor laceration of celiac artery, initial encounter +C2838780|T037|PT|S35.211D|ICD10CM|Minor laceration of celiac artery, subsequent encounter|Minor laceration of celiac artery, subsequent encounter +C2838780|T037|AB|S35.211D|ICD10CM|Minor laceration of celiac artery, subsequent encounter|Minor laceration of celiac artery, subsequent encounter +C2838781|T037|PT|S35.211S|ICD10CM|Minor laceration of celiac artery, sequela|Minor laceration of celiac artery, sequela +C2838781|T037|AB|S35.211S|ICD10CM|Minor laceration of celiac artery, sequela|Minor laceration of celiac artery, sequela +C2838782|T037|ET|S35.212|ICD10CM|Complete transection of celiac artery|Complete transection of celiac artery +C2838784|T037|AB|S35.212|ICD10CM|Major laceration of celiac artery|Major laceration of celiac artery +C2838784|T037|HT|S35.212|ICD10CM|Major laceration of celiac artery|Major laceration of celiac artery +C2838783|T037|ET|S35.212|ICD10CM|Traumatic rupture of celiac artery|Traumatic rupture of celiac artery +C2838785|T037|PT|S35.212A|ICD10CM|Major laceration of celiac artery, initial encounter|Major laceration of celiac artery, initial encounter +C2838785|T037|AB|S35.212A|ICD10CM|Major laceration of celiac artery, initial encounter|Major laceration of celiac artery, initial encounter +C2838786|T037|PT|S35.212D|ICD10CM|Major laceration of celiac artery, subsequent encounter|Major laceration of celiac artery, subsequent encounter +C2838786|T037|AB|S35.212D|ICD10CM|Major laceration of celiac artery, subsequent encounter|Major laceration of celiac artery, subsequent encounter +C2838787|T037|PT|S35.212S|ICD10CM|Major laceration of celiac artery, sequela|Major laceration of celiac artery, sequela +C2838787|T037|AB|S35.212S|ICD10CM|Major laceration of celiac artery, sequela|Major laceration of celiac artery, sequela +C2838788|T037|AB|S35.218|ICD10CM|Other injury of celiac artery|Other injury of celiac artery +C2838788|T037|HT|S35.218|ICD10CM|Other injury of celiac artery|Other injury of celiac artery +C2838789|T037|PT|S35.218A|ICD10CM|Other injury of celiac artery, initial encounter|Other injury of celiac artery, initial encounter +C2838789|T037|AB|S35.218A|ICD10CM|Other injury of celiac artery, initial encounter|Other injury of celiac artery, initial encounter +C2838790|T037|PT|S35.218D|ICD10CM|Other injury of celiac artery, subsequent encounter|Other injury of celiac artery, subsequent encounter +C2838790|T037|AB|S35.218D|ICD10CM|Other injury of celiac artery, subsequent encounter|Other injury of celiac artery, subsequent encounter +C2838791|T037|PT|S35.218S|ICD10CM|Other injury of celiac artery, sequela|Other injury of celiac artery, sequela +C2838791|T037|AB|S35.218S|ICD10CM|Other injury of celiac artery, sequela|Other injury of celiac artery, sequela +C2838792|T037|AB|S35.219|ICD10CM|Unspecified injury of celiac artery|Unspecified injury of celiac artery +C2838792|T037|HT|S35.219|ICD10CM|Unspecified injury of celiac artery|Unspecified injury of celiac artery +C2838793|T037|PT|S35.219A|ICD10CM|Unspecified injury of celiac artery, initial encounter|Unspecified injury of celiac artery, initial encounter +C2838793|T037|AB|S35.219A|ICD10CM|Unspecified injury of celiac artery, initial encounter|Unspecified injury of celiac artery, initial encounter +C2838794|T037|PT|S35.219D|ICD10CM|Unspecified injury of celiac artery, subsequent encounter|Unspecified injury of celiac artery, subsequent encounter +C2838794|T037|AB|S35.219D|ICD10CM|Unspecified injury of celiac artery, subsequent encounter|Unspecified injury of celiac artery, subsequent encounter +C2838795|T037|PT|S35.219S|ICD10CM|Unspecified injury of celiac artery, sequela|Unspecified injury of celiac artery, sequela +C2838795|T037|AB|S35.219S|ICD10CM|Unspecified injury of celiac artery, sequela|Unspecified injury of celiac artery, sequela +C0273463|T037|HT|S35.22|ICD10CM|Injury of superior mesenteric artery|Injury of superior mesenteric artery +C0273463|T037|AB|S35.22|ICD10CM|Injury of superior mesenteric artery|Injury of superior mesenteric artery +C2838796|T037|ET|S35.221|ICD10CM|Incomplete transection of superior mesenteric artery|Incomplete transection of superior mesenteric artery +C2838797|T037|ET|S35.221|ICD10CM|Laceration of superior mesenteric artery NOS|Laceration of superior mesenteric artery NOS +C2838799|T037|AB|S35.221|ICD10CM|Minor laceration of superior mesenteric artery|Minor laceration of superior mesenteric artery +C2838799|T037|HT|S35.221|ICD10CM|Minor laceration of superior mesenteric artery|Minor laceration of superior mesenteric artery +C2838798|T037|ET|S35.221|ICD10CM|Superficial laceration of superior mesenteric artery|Superficial laceration of superior mesenteric artery +C2838800|T037|AB|S35.221A|ICD10CM|Minor laceration of superior mesenteric artery, init encntr|Minor laceration of superior mesenteric artery, init encntr +C2838800|T037|PT|S35.221A|ICD10CM|Minor laceration of superior mesenteric artery, initial encounter|Minor laceration of superior mesenteric artery, initial encounter +C2838801|T037|AB|S35.221D|ICD10CM|Minor laceration of superior mesenteric artery, subs encntr|Minor laceration of superior mesenteric artery, subs encntr +C2838801|T037|PT|S35.221D|ICD10CM|Minor laceration of superior mesenteric artery, subsequent encounter|Minor laceration of superior mesenteric artery, subsequent encounter +C2838802|T037|PT|S35.221S|ICD10CM|Minor laceration of superior mesenteric artery, sequela|Minor laceration of superior mesenteric artery, sequela +C2838802|T037|AB|S35.221S|ICD10CM|Minor laceration of superior mesenteric artery, sequela|Minor laceration of superior mesenteric artery, sequela +C2838803|T037|ET|S35.222|ICD10CM|Complete transection of superior mesenteric artery|Complete transection of superior mesenteric artery +C2838805|T037|AB|S35.222|ICD10CM|Major laceration of superior mesenteric artery|Major laceration of superior mesenteric artery +C2838805|T037|HT|S35.222|ICD10CM|Major laceration of superior mesenteric artery|Major laceration of superior mesenteric artery +C2838804|T037|ET|S35.222|ICD10CM|Traumatic rupture of superior mesenteric artery|Traumatic rupture of superior mesenteric artery +C2838806|T037|AB|S35.222A|ICD10CM|Major laceration of superior mesenteric artery, init encntr|Major laceration of superior mesenteric artery, init encntr +C2838806|T037|PT|S35.222A|ICD10CM|Major laceration of superior mesenteric artery, initial encounter|Major laceration of superior mesenteric artery, initial encounter +C2838807|T037|AB|S35.222D|ICD10CM|Major laceration of superior mesenteric artery, subs encntr|Major laceration of superior mesenteric artery, subs encntr +C2838807|T037|PT|S35.222D|ICD10CM|Major laceration of superior mesenteric artery, subsequent encounter|Major laceration of superior mesenteric artery, subsequent encounter +C2838808|T037|PT|S35.222S|ICD10CM|Major laceration of superior mesenteric artery, sequela|Major laceration of superior mesenteric artery, sequela +C2838808|T037|AB|S35.222S|ICD10CM|Major laceration of superior mesenteric artery, sequela|Major laceration of superior mesenteric artery, sequela +C2838809|T037|AB|S35.228|ICD10CM|Other injury of superior mesenteric artery|Other injury of superior mesenteric artery +C2838809|T037|HT|S35.228|ICD10CM|Other injury of superior mesenteric artery|Other injury of superior mesenteric artery +C2838810|T037|AB|S35.228A|ICD10CM|Other injury of superior mesenteric artery, init encntr|Other injury of superior mesenteric artery, init encntr +C2838810|T037|PT|S35.228A|ICD10CM|Other injury of superior mesenteric artery, initial encounter|Other injury of superior mesenteric artery, initial encounter +C2838811|T037|AB|S35.228D|ICD10CM|Other injury of superior mesenteric artery, subs encntr|Other injury of superior mesenteric artery, subs encntr +C2838811|T037|PT|S35.228D|ICD10CM|Other injury of superior mesenteric artery, subsequent encounter|Other injury of superior mesenteric artery, subsequent encounter +C2838812|T037|PT|S35.228S|ICD10CM|Other injury of superior mesenteric artery, sequela|Other injury of superior mesenteric artery, sequela +C2838812|T037|AB|S35.228S|ICD10CM|Other injury of superior mesenteric artery, sequela|Other injury of superior mesenteric artery, sequela +C2838813|T037|AB|S35.229|ICD10CM|Unspecified injury of superior mesenteric artery|Unspecified injury of superior mesenteric artery +C2838813|T037|HT|S35.229|ICD10CM|Unspecified injury of superior mesenteric artery|Unspecified injury of superior mesenteric artery +C2838814|T037|AB|S35.229A|ICD10CM|Unsp injury of superior mesenteric artery, init encntr|Unsp injury of superior mesenteric artery, init encntr +C2838814|T037|PT|S35.229A|ICD10CM|Unspecified injury of superior mesenteric artery, initial encounter|Unspecified injury of superior mesenteric artery, initial encounter +C2838815|T037|AB|S35.229D|ICD10CM|Unsp injury of superior mesenteric artery, subs encntr|Unsp injury of superior mesenteric artery, subs encntr +C2838815|T037|PT|S35.229D|ICD10CM|Unspecified injury of superior mesenteric artery, subsequent encounter|Unspecified injury of superior mesenteric artery, subsequent encounter +C2838816|T037|PT|S35.229S|ICD10CM|Unspecified injury of superior mesenteric artery, sequela|Unspecified injury of superior mesenteric artery, sequela +C2838816|T037|AB|S35.229S|ICD10CM|Unspecified injury of superior mesenteric artery, sequela|Unspecified injury of superior mesenteric artery, sequela +C0160715|T037|HT|S35.23|ICD10CM|Injury of inferior mesenteric artery|Injury of inferior mesenteric artery +C0160715|T037|AB|S35.23|ICD10CM|Injury of inferior mesenteric artery|Injury of inferior mesenteric artery +C2838817|T037|ET|S35.231|ICD10CM|Incomplete transection of inferior mesenteric artery|Incomplete transection of inferior mesenteric artery +C2838818|T037|ET|S35.231|ICD10CM|Laceration of inferior mesenteric artery NOS|Laceration of inferior mesenteric artery NOS +C2838820|T037|AB|S35.231|ICD10CM|Minor laceration of inferior mesenteric artery|Minor laceration of inferior mesenteric artery +C2838820|T037|HT|S35.231|ICD10CM|Minor laceration of inferior mesenteric artery|Minor laceration of inferior mesenteric artery +C2838819|T037|ET|S35.231|ICD10CM|Superficial laceration of inferior mesenteric artery|Superficial laceration of inferior mesenteric artery +C2838821|T037|AB|S35.231A|ICD10CM|Minor laceration of inferior mesenteric artery, init encntr|Minor laceration of inferior mesenteric artery, init encntr +C2838821|T037|PT|S35.231A|ICD10CM|Minor laceration of inferior mesenteric artery, initial encounter|Minor laceration of inferior mesenteric artery, initial encounter +C2838822|T037|AB|S35.231D|ICD10CM|Minor laceration of inferior mesenteric artery, subs encntr|Minor laceration of inferior mesenteric artery, subs encntr +C2838822|T037|PT|S35.231D|ICD10CM|Minor laceration of inferior mesenteric artery, subsequent encounter|Minor laceration of inferior mesenteric artery, subsequent encounter +C2838823|T037|PT|S35.231S|ICD10CM|Minor laceration of inferior mesenteric artery, sequela|Minor laceration of inferior mesenteric artery, sequela +C2838823|T037|AB|S35.231S|ICD10CM|Minor laceration of inferior mesenteric artery, sequela|Minor laceration of inferior mesenteric artery, sequela +C2838824|T037|ET|S35.232|ICD10CM|Complete transection of inferior mesenteric artery|Complete transection of inferior mesenteric artery +C2838826|T037|AB|S35.232|ICD10CM|Major laceration of inferior mesenteric artery|Major laceration of inferior mesenteric artery +C2838826|T037|HT|S35.232|ICD10CM|Major laceration of inferior mesenteric artery|Major laceration of inferior mesenteric artery +C2838825|T037|ET|S35.232|ICD10CM|Traumatic rupture of inferior mesenteric artery|Traumatic rupture of inferior mesenteric artery +C2838827|T037|AB|S35.232A|ICD10CM|Major laceration of inferior mesenteric artery, init encntr|Major laceration of inferior mesenteric artery, init encntr +C2838827|T037|PT|S35.232A|ICD10CM|Major laceration of inferior mesenteric artery, initial encounter|Major laceration of inferior mesenteric artery, initial encounter +C2838828|T037|AB|S35.232D|ICD10CM|Major laceration of inferior mesenteric artery, subs encntr|Major laceration of inferior mesenteric artery, subs encntr +C2838828|T037|PT|S35.232D|ICD10CM|Major laceration of inferior mesenteric artery, subsequent encounter|Major laceration of inferior mesenteric artery, subsequent encounter +C2838829|T037|PT|S35.232S|ICD10CM|Major laceration of inferior mesenteric artery, sequela|Major laceration of inferior mesenteric artery, sequela +C2838829|T037|AB|S35.232S|ICD10CM|Major laceration of inferior mesenteric artery, sequela|Major laceration of inferior mesenteric artery, sequela +C2838830|T037|AB|S35.238|ICD10CM|Other injury of inferior mesenteric artery|Other injury of inferior mesenteric artery +C2838830|T037|HT|S35.238|ICD10CM|Other injury of inferior mesenteric artery|Other injury of inferior mesenteric artery +C2838831|T037|AB|S35.238A|ICD10CM|Other injury of inferior mesenteric artery, init encntr|Other injury of inferior mesenteric artery, init encntr +C2838831|T037|PT|S35.238A|ICD10CM|Other injury of inferior mesenteric artery, initial encounter|Other injury of inferior mesenteric artery, initial encounter +C2838832|T037|AB|S35.238D|ICD10CM|Other injury of inferior mesenteric artery, subs encntr|Other injury of inferior mesenteric artery, subs encntr +C2838832|T037|PT|S35.238D|ICD10CM|Other injury of inferior mesenteric artery, subsequent encounter|Other injury of inferior mesenteric artery, subsequent encounter +C2838833|T037|PT|S35.238S|ICD10CM|Other injury of inferior mesenteric artery, sequela|Other injury of inferior mesenteric artery, sequela +C2838833|T037|AB|S35.238S|ICD10CM|Other injury of inferior mesenteric artery, sequela|Other injury of inferior mesenteric artery, sequela +C2838834|T037|AB|S35.239|ICD10CM|Unspecified injury of inferior mesenteric artery|Unspecified injury of inferior mesenteric artery +C2838834|T037|HT|S35.239|ICD10CM|Unspecified injury of inferior mesenteric artery|Unspecified injury of inferior mesenteric artery +C2838835|T037|AB|S35.239A|ICD10CM|Unsp injury of inferior mesenteric artery, init encntr|Unsp injury of inferior mesenteric artery, init encntr +C2838835|T037|PT|S35.239A|ICD10CM|Unspecified injury of inferior mesenteric artery, initial encounter|Unspecified injury of inferior mesenteric artery, initial encounter +C2838836|T037|AB|S35.239D|ICD10CM|Unsp injury of inferior mesenteric artery, subs encntr|Unsp injury of inferior mesenteric artery, subs encntr +C2838836|T037|PT|S35.239D|ICD10CM|Unspecified injury of inferior mesenteric artery, subsequent encounter|Unspecified injury of inferior mesenteric artery, subsequent encounter +C2838837|T037|PT|S35.239S|ICD10CM|Unspecified injury of inferior mesenteric artery, sequela|Unspecified injury of inferior mesenteric artery, sequela +C2838837|T037|AB|S35.239S|ICD10CM|Unspecified injury of inferior mesenteric artery, sequela|Unspecified injury of inferior mesenteric artery, sequela +C2838839|T037|HT|S35.29|ICD10CM|Injury of branches of celiac and mesenteric artery|Injury of branches of celiac and mesenteric artery +C2838839|T037|AB|S35.29|ICD10CM|Injury of branches of celiac and mesenteric artery|Injury of branches of celiac and mesenteric artery +C0160709|T037|ET|S35.29|ICD10CM|Injury of gastric artery|Injury of gastric artery +C2838838|T037|ET|S35.29|ICD10CM|Injury of gastroduodenal artery|Injury of gastroduodenal artery +C0160710|T037|ET|S35.29|ICD10CM|Injury of hepatic artery|Injury of hepatic artery +C0160711|T037|ET|S35.29|ICD10CM|Injury of splenic artery|Injury of splenic artery +C2838840|T037|ET|S35.291|ICD10CM|Incomplete transection of branches of celiac and mesenteric artery|Incomplete transection of branches of celiac and mesenteric artery +C2838841|T037|ET|S35.291|ICD10CM|Laceration of branches of celiac and mesenteric artery NOS|Laceration of branches of celiac and mesenteric artery NOS +C2838843|T037|AB|S35.291|ICD10CM|Minor laceration of branches of celiac and mesenteric artery|Minor laceration of branches of celiac and mesenteric artery +C2838843|T037|HT|S35.291|ICD10CM|Minor laceration of branches of celiac and mesenteric artery|Minor laceration of branches of celiac and mesenteric artery +C2838842|T037|ET|S35.291|ICD10CM|Superficial laceration of branches of celiac and mesenteric artery|Superficial laceration of branches of celiac and mesenteric artery +C2838844|T037|AB|S35.291A|ICD10CM|Minor laceration of branches of celiac and mesent art, init|Minor laceration of branches of celiac and mesent art, init +C2838844|T037|PT|S35.291A|ICD10CM|Minor laceration of branches of celiac and mesenteric artery, initial encounter|Minor laceration of branches of celiac and mesenteric artery, initial encounter +C2838845|T037|AB|S35.291D|ICD10CM|Minor laceration of branches of celiac and mesent art, subs|Minor laceration of branches of celiac and mesent art, subs +C2838845|T037|PT|S35.291D|ICD10CM|Minor laceration of branches of celiac and mesenteric artery, subsequent encounter|Minor laceration of branches of celiac and mesenteric artery, subsequent encounter +C2838846|T037|AB|S35.291S|ICD10CM|Minor lacerat branches of celiac and mesent art, sequela|Minor lacerat branches of celiac and mesent art, sequela +C2838846|T037|PT|S35.291S|ICD10CM|Minor laceration of branches of celiac and mesenteric artery, sequela|Minor laceration of branches of celiac and mesenteric artery, sequela +C2838847|T037|ET|S35.292|ICD10CM|Complete transection of branches of celiac and mesenteric artery|Complete transection of branches of celiac and mesenteric artery +C2838849|T037|AB|S35.292|ICD10CM|Major laceration of branches of celiac and mesenteric artery|Major laceration of branches of celiac and mesenteric artery +C2838849|T037|HT|S35.292|ICD10CM|Major laceration of branches of celiac and mesenteric artery|Major laceration of branches of celiac and mesenteric artery +C2838848|T037|ET|S35.292|ICD10CM|Traumatic rupture of branches of celiac and mesenteric artery|Traumatic rupture of branches of celiac and mesenteric artery +C2838850|T037|AB|S35.292A|ICD10CM|Major laceration of branches of celiac and mesent art, init|Major laceration of branches of celiac and mesent art, init +C2838850|T037|PT|S35.292A|ICD10CM|Major laceration of branches of celiac and mesenteric artery, initial encounter|Major laceration of branches of celiac and mesenteric artery, initial encounter +C2838851|T037|AB|S35.292D|ICD10CM|Major laceration of branches of celiac and mesent art, subs|Major laceration of branches of celiac and mesent art, subs +C2838851|T037|PT|S35.292D|ICD10CM|Major laceration of branches of celiac and mesenteric artery, subsequent encounter|Major laceration of branches of celiac and mesenteric artery, subsequent encounter +C2838852|T037|AB|S35.292S|ICD10CM|Major lacerat branches of celiac and mesent art, sequela|Major lacerat branches of celiac and mesent art, sequela +C2838852|T037|PT|S35.292S|ICD10CM|Major laceration of branches of celiac and mesenteric artery, sequela|Major laceration of branches of celiac and mesenteric artery, sequela +C2838853|T037|AB|S35.298|ICD10CM|Other injury of branches of celiac and mesenteric artery|Other injury of branches of celiac and mesenteric artery +C2838853|T037|HT|S35.298|ICD10CM|Other injury of branches of celiac and mesenteric artery|Other injury of branches of celiac and mesenteric artery +C2838854|T037|AB|S35.298A|ICD10CM|Inj branches of celiac and mesenteric artery, init encntr|Inj branches of celiac and mesenteric artery, init encntr +C2838854|T037|PT|S35.298A|ICD10CM|Other injury of branches of celiac and mesenteric artery, initial encounter|Other injury of branches of celiac and mesenteric artery, initial encounter +C2838855|T037|AB|S35.298D|ICD10CM|Inj branches of celiac and mesenteric artery, subs encntr|Inj branches of celiac and mesenteric artery, subs encntr +C2838855|T037|PT|S35.298D|ICD10CM|Other injury of branches of celiac and mesenteric artery, subsequent encounter|Other injury of branches of celiac and mesenteric artery, subsequent encounter +C2838856|T037|AB|S35.298S|ICD10CM|Inj branches of celiac and mesenteric artery, sequela|Inj branches of celiac and mesenteric artery, sequela +C2838856|T037|PT|S35.298S|ICD10CM|Other injury of branches of celiac and mesenteric artery, sequela|Other injury of branches of celiac and mesenteric artery, sequela +C2838857|T037|AB|S35.299|ICD10CM|Unsp injury of branches of celiac and mesenteric artery|Unsp injury of branches of celiac and mesenteric artery +C2838857|T037|HT|S35.299|ICD10CM|Unspecified injury of branches of celiac and mesenteric artery|Unspecified injury of branches of celiac and mesenteric artery +C2838858|T037|AB|S35.299A|ICD10CM|Unsp injury of branches of celiac and mesent art, init|Unsp injury of branches of celiac and mesent art, init +C2838858|T037|PT|S35.299A|ICD10CM|Unspecified injury of branches of celiac and mesenteric artery, initial encounter|Unspecified injury of branches of celiac and mesenteric artery, initial encounter +C2838859|T037|AB|S35.299D|ICD10CM|Unsp injury of branches of celiac and mesent art, subs|Unsp injury of branches of celiac and mesent art, subs +C2838859|T037|PT|S35.299D|ICD10CM|Unspecified injury of branches of celiac and mesenteric artery, subsequent encounter|Unspecified injury of branches of celiac and mesenteric artery, subsequent encounter +C2838860|T037|AB|S35.299S|ICD10CM|Unsp injury of branches of celiac and mesent art, sequela|Unsp injury of branches of celiac and mesent art, sequela +C2838860|T037|PT|S35.299S|ICD10CM|Unspecified injury of branches of celiac and mesenteric artery, sequela|Unspecified injury of branches of celiac and mesenteric artery, sequela +C0495851|T037|PT|S35.3|ICD10|Injury of portal or splenic vein|Injury of portal or splenic vein +C2838861|T037|AB|S35.3|ICD10CM|Injury of portal or splenic vein and branches|Injury of portal or splenic vein and branches +C2838861|T037|HT|S35.3|ICD10CM|Injury of portal or splenic vein and branches|Injury of portal or splenic vein and branches +C0160720|T037|HT|S35.31|ICD10CM|Injury of portal vein|Injury of portal vein +C0160720|T037|AB|S35.31|ICD10CM|Injury of portal vein|Injury of portal vein +C2838862|T037|AB|S35.311|ICD10CM|Laceration of portal vein|Laceration of portal vein +C2838862|T037|HT|S35.311|ICD10CM|Laceration of portal vein|Laceration of portal vein +C2838863|T037|AB|S35.311A|ICD10CM|Laceration of portal vein, initial encounter|Laceration of portal vein, initial encounter +C2838863|T037|PT|S35.311A|ICD10CM|Laceration of portal vein, initial encounter|Laceration of portal vein, initial encounter +C2838864|T037|AB|S35.311D|ICD10CM|Laceration of portal vein, subsequent encounter|Laceration of portal vein, subsequent encounter +C2838864|T037|PT|S35.311D|ICD10CM|Laceration of portal vein, subsequent encounter|Laceration of portal vein, subsequent encounter +C2838865|T037|AB|S35.311S|ICD10CM|Laceration of portal vein, sequela|Laceration of portal vein, sequela +C2838865|T037|PT|S35.311S|ICD10CM|Laceration of portal vein, sequela|Laceration of portal vein, sequela +C2838866|T037|AB|S35.318|ICD10CM|Other specified injury of portal vein|Other specified injury of portal vein +C2838866|T037|HT|S35.318|ICD10CM|Other specified injury of portal vein|Other specified injury of portal vein +C2838867|T037|AB|S35.318A|ICD10CM|Other specified injury of portal vein, initial encounter|Other specified injury of portal vein, initial encounter +C2838867|T037|PT|S35.318A|ICD10CM|Other specified injury of portal vein, initial encounter|Other specified injury of portal vein, initial encounter +C2838868|T037|AB|S35.318D|ICD10CM|Other specified injury of portal vein, subsequent encounter|Other specified injury of portal vein, subsequent encounter +C2838868|T037|PT|S35.318D|ICD10CM|Other specified injury of portal vein, subsequent encounter|Other specified injury of portal vein, subsequent encounter +C2838869|T037|AB|S35.318S|ICD10CM|Other specified injury of portal vein, sequela|Other specified injury of portal vein, sequela +C2838869|T037|PT|S35.318S|ICD10CM|Other specified injury of portal vein, sequela|Other specified injury of portal vein, sequela +C2838870|T037|AB|S35.319|ICD10CM|Unspecified injury of portal vein|Unspecified injury of portal vein +C2838870|T037|HT|S35.319|ICD10CM|Unspecified injury of portal vein|Unspecified injury of portal vein +C2838871|T037|AB|S35.319A|ICD10CM|Unspecified injury of portal vein, initial encounter|Unspecified injury of portal vein, initial encounter +C2838871|T037|PT|S35.319A|ICD10CM|Unspecified injury of portal vein, initial encounter|Unspecified injury of portal vein, initial encounter +C2838872|T037|AB|S35.319D|ICD10CM|Unspecified injury of portal vein, subsequent encounter|Unspecified injury of portal vein, subsequent encounter +C2838872|T037|PT|S35.319D|ICD10CM|Unspecified injury of portal vein, subsequent encounter|Unspecified injury of portal vein, subsequent encounter +C2838873|T037|AB|S35.319S|ICD10CM|Unspecified injury of portal vein, sequela|Unspecified injury of portal vein, sequela +C2838873|T037|PT|S35.319S|ICD10CM|Unspecified injury of portal vein, sequela|Unspecified injury of portal vein, sequela +C0160721|T037|HT|S35.32|ICD10CM|Injury of splenic vein|Injury of splenic vein +C0160721|T037|AB|S35.32|ICD10CM|Injury of splenic vein|Injury of splenic vein +C2838874|T037|AB|S35.321|ICD10CM|Laceration of splenic vein|Laceration of splenic vein +C2838874|T037|HT|S35.321|ICD10CM|Laceration of splenic vein|Laceration of splenic vein +C2838875|T037|AB|S35.321A|ICD10CM|Laceration of splenic vein, initial encounter|Laceration of splenic vein, initial encounter +C2838875|T037|PT|S35.321A|ICD10CM|Laceration of splenic vein, initial encounter|Laceration of splenic vein, initial encounter +C2838876|T037|AB|S35.321D|ICD10CM|Laceration of splenic vein, subsequent encounter|Laceration of splenic vein, subsequent encounter +C2838876|T037|PT|S35.321D|ICD10CM|Laceration of splenic vein, subsequent encounter|Laceration of splenic vein, subsequent encounter +C2838877|T037|AB|S35.321S|ICD10CM|Laceration of splenic vein, sequela|Laceration of splenic vein, sequela +C2838877|T037|PT|S35.321S|ICD10CM|Laceration of splenic vein, sequela|Laceration of splenic vein, sequela +C2838878|T037|AB|S35.328|ICD10CM|Other specified injury of splenic vein|Other specified injury of splenic vein +C2838878|T037|HT|S35.328|ICD10CM|Other specified injury of splenic vein|Other specified injury of splenic vein +C2838879|T037|AB|S35.328A|ICD10CM|Other specified injury of splenic vein, initial encounter|Other specified injury of splenic vein, initial encounter +C2838879|T037|PT|S35.328A|ICD10CM|Other specified injury of splenic vein, initial encounter|Other specified injury of splenic vein, initial encounter +C2838880|T037|AB|S35.328D|ICD10CM|Other specified injury of splenic vein, subsequent encounter|Other specified injury of splenic vein, subsequent encounter +C2838880|T037|PT|S35.328D|ICD10CM|Other specified injury of splenic vein, subsequent encounter|Other specified injury of splenic vein, subsequent encounter +C2838881|T037|AB|S35.328S|ICD10CM|Other specified injury of splenic vein, sequela|Other specified injury of splenic vein, sequela +C2838881|T037|PT|S35.328S|ICD10CM|Other specified injury of splenic vein, sequela|Other specified injury of splenic vein, sequela +C2838882|T037|AB|S35.329|ICD10CM|Unspecified injury of splenic vein|Unspecified injury of splenic vein +C2838882|T037|HT|S35.329|ICD10CM|Unspecified injury of splenic vein|Unspecified injury of splenic vein +C2838883|T037|AB|S35.329A|ICD10CM|Unspecified injury of splenic vein, initial encounter|Unspecified injury of splenic vein, initial encounter +C2838883|T037|PT|S35.329A|ICD10CM|Unspecified injury of splenic vein, initial encounter|Unspecified injury of splenic vein, initial encounter +C2838884|T037|AB|S35.329D|ICD10CM|Unspecified injury of splenic vein, subsequent encounter|Unspecified injury of splenic vein, subsequent encounter +C2838884|T037|PT|S35.329D|ICD10CM|Unspecified injury of splenic vein, subsequent encounter|Unspecified injury of splenic vein, subsequent encounter +C2838885|T037|AB|S35.329S|ICD10CM|Unspecified injury of splenic vein, sequela|Unspecified injury of splenic vein, sequela +C2838885|T037|PT|S35.329S|ICD10CM|Unspecified injury of splenic vein, sequela|Unspecified injury of splenic vein, sequela +C0347707|T037|AB|S35.33|ICD10CM|Injury of superior mesenteric vein|Injury of superior mesenteric vein +C0347707|T037|HT|S35.33|ICD10CM|Injury of superior mesenteric vein|Injury of superior mesenteric vein +C2838886|T037|AB|S35.331|ICD10CM|Laceration of superior mesenteric vein|Laceration of superior mesenteric vein +C2838886|T037|HT|S35.331|ICD10CM|Laceration of superior mesenteric vein|Laceration of superior mesenteric vein +C2838887|T037|AB|S35.331A|ICD10CM|Laceration of superior mesenteric vein, initial encounter|Laceration of superior mesenteric vein, initial encounter +C2838887|T037|PT|S35.331A|ICD10CM|Laceration of superior mesenteric vein, initial encounter|Laceration of superior mesenteric vein, initial encounter +C2838888|T037|AB|S35.331D|ICD10CM|Laceration of superior mesenteric vein, subsequent encounter|Laceration of superior mesenteric vein, subsequent encounter +C2838888|T037|PT|S35.331D|ICD10CM|Laceration of superior mesenteric vein, subsequent encounter|Laceration of superior mesenteric vein, subsequent encounter +C2838889|T037|AB|S35.331S|ICD10CM|Laceration of superior mesenteric vein, sequela|Laceration of superior mesenteric vein, sequela +C2838889|T037|PT|S35.331S|ICD10CM|Laceration of superior mesenteric vein, sequela|Laceration of superior mesenteric vein, sequela +C2838890|T037|AB|S35.338|ICD10CM|Other specified injury of superior mesenteric vein|Other specified injury of superior mesenteric vein +C2838890|T037|HT|S35.338|ICD10CM|Other specified injury of superior mesenteric vein|Other specified injury of superior mesenteric vein +C2838891|T037|AB|S35.338A|ICD10CM|Oth injury of superior mesenteric vein, init encntr|Oth injury of superior mesenteric vein, init encntr +C2838891|T037|PT|S35.338A|ICD10CM|Other specified injury of superior mesenteric vein, initial encounter|Other specified injury of superior mesenteric vein, initial encounter +C2838892|T037|AB|S35.338D|ICD10CM|Oth injury of superior mesenteric vein, subs encntr|Oth injury of superior mesenteric vein, subs encntr +C2838892|T037|PT|S35.338D|ICD10CM|Other specified injury of superior mesenteric vein, subsequent encounter|Other specified injury of superior mesenteric vein, subsequent encounter +C2838893|T037|AB|S35.338S|ICD10CM|Other specified injury of superior mesenteric vein, sequela|Other specified injury of superior mesenteric vein, sequela +C2838893|T037|PT|S35.338S|ICD10CM|Other specified injury of superior mesenteric vein, sequela|Other specified injury of superior mesenteric vein, sequela +C2838894|T037|AB|S35.339|ICD10CM|Unspecified injury of superior mesenteric vein|Unspecified injury of superior mesenteric vein +C2838894|T037|HT|S35.339|ICD10CM|Unspecified injury of superior mesenteric vein|Unspecified injury of superior mesenteric vein +C2838895|T037|AB|S35.339A|ICD10CM|Unspecified injury of superior mesenteric vein, init encntr|Unspecified injury of superior mesenteric vein, init encntr +C2838895|T037|PT|S35.339A|ICD10CM|Unspecified injury of superior mesenteric vein, initial encounter|Unspecified injury of superior mesenteric vein, initial encounter +C2838896|T037|AB|S35.339D|ICD10CM|Unspecified injury of superior mesenteric vein, subs encntr|Unspecified injury of superior mesenteric vein, subs encntr +C2838896|T037|PT|S35.339D|ICD10CM|Unspecified injury of superior mesenteric vein, subsequent encounter|Unspecified injury of superior mesenteric vein, subsequent encounter +C2838897|T037|AB|S35.339S|ICD10CM|Unspecified injury of superior mesenteric vein, sequela|Unspecified injury of superior mesenteric vein, sequela +C2838897|T037|PT|S35.339S|ICD10CM|Unspecified injury of superior mesenteric vein, sequela|Unspecified injury of superior mesenteric vein, sequela +C0160719|T037|HT|S35.34|ICD10CM|Injury of inferior mesenteric vein|Injury of inferior mesenteric vein +C0160719|T037|AB|S35.34|ICD10CM|Injury of inferior mesenteric vein|Injury of inferior mesenteric vein +C2838898|T037|AB|S35.341|ICD10CM|Laceration of inferior mesenteric vein|Laceration of inferior mesenteric vein +C2838898|T037|HT|S35.341|ICD10CM|Laceration of inferior mesenteric vein|Laceration of inferior mesenteric vein +C2838899|T037|AB|S35.341A|ICD10CM|Laceration of inferior mesenteric vein, initial encounter|Laceration of inferior mesenteric vein, initial encounter +C2838899|T037|PT|S35.341A|ICD10CM|Laceration of inferior mesenteric vein, initial encounter|Laceration of inferior mesenteric vein, initial encounter +C2838900|T037|AB|S35.341D|ICD10CM|Laceration of inferior mesenteric vein, subsequent encounter|Laceration of inferior mesenteric vein, subsequent encounter +C2838900|T037|PT|S35.341D|ICD10CM|Laceration of inferior mesenteric vein, subsequent encounter|Laceration of inferior mesenteric vein, subsequent encounter +C2838901|T037|AB|S35.341S|ICD10CM|Laceration of inferior mesenteric vein, sequela|Laceration of inferior mesenteric vein, sequela +C2838901|T037|PT|S35.341S|ICD10CM|Laceration of inferior mesenteric vein, sequela|Laceration of inferior mesenteric vein, sequela +C2838902|T037|AB|S35.348|ICD10CM|Other specified injury of inferior mesenteric vein|Other specified injury of inferior mesenteric vein +C2838902|T037|HT|S35.348|ICD10CM|Other specified injury of inferior mesenteric vein|Other specified injury of inferior mesenteric vein +C2838903|T037|AB|S35.348A|ICD10CM|Oth injury of inferior mesenteric vein, init encntr|Oth injury of inferior mesenteric vein, init encntr +C2838903|T037|PT|S35.348A|ICD10CM|Other specified injury of inferior mesenteric vein, initial encounter|Other specified injury of inferior mesenteric vein, initial encounter +C2838904|T037|AB|S35.348D|ICD10CM|Oth injury of inferior mesenteric vein, subs encntr|Oth injury of inferior mesenteric vein, subs encntr +C2838904|T037|PT|S35.348D|ICD10CM|Other specified injury of inferior mesenteric vein, subsequent encounter|Other specified injury of inferior mesenteric vein, subsequent encounter +C2838905|T037|AB|S35.348S|ICD10CM|Other specified injury of inferior mesenteric vein, sequela|Other specified injury of inferior mesenteric vein, sequela +C2838905|T037|PT|S35.348S|ICD10CM|Other specified injury of inferior mesenteric vein, sequela|Other specified injury of inferior mesenteric vein, sequela +C2838906|T037|AB|S35.349|ICD10CM|Unspecified injury of inferior mesenteric vein|Unspecified injury of inferior mesenteric vein +C2838906|T037|HT|S35.349|ICD10CM|Unspecified injury of inferior mesenteric vein|Unspecified injury of inferior mesenteric vein +C2838907|T037|AB|S35.349A|ICD10CM|Unspecified injury of inferior mesenteric vein, init encntr|Unspecified injury of inferior mesenteric vein, init encntr +C2838907|T037|PT|S35.349A|ICD10CM|Unspecified injury of inferior mesenteric vein, initial encounter|Unspecified injury of inferior mesenteric vein, initial encounter +C2838908|T037|AB|S35.349D|ICD10CM|Unspecified injury of inferior mesenteric vein, subs encntr|Unspecified injury of inferior mesenteric vein, subs encntr +C2838908|T037|PT|S35.349D|ICD10CM|Unspecified injury of inferior mesenteric vein, subsequent encounter|Unspecified injury of inferior mesenteric vein, subsequent encounter +C2838909|T037|AB|S35.349S|ICD10CM|Unspecified injury of inferior mesenteric vein, sequela|Unspecified injury of inferior mesenteric vein, sequela +C2838909|T037|PT|S35.349S|ICD10CM|Unspecified injury of inferior mesenteric vein, sequela|Unspecified injury of inferior mesenteric vein, sequela +C0160723|T037|HT|S35.4|ICD10CM|Injury of renal blood vessels|Injury of renal blood vessels +C0160723|T037|AB|S35.4|ICD10CM|Injury of renal blood vessels|Injury of renal blood vessels +C0160723|T037|PT|S35.4|ICD10|Injury of renal blood vessels|Injury of renal blood vessels +C0160723|T037|AB|S35.40|ICD10CM|Unspecified injury of renal blood vessel|Unspecified injury of renal blood vessel +C0160723|T037|HT|S35.40|ICD10CM|Unspecified injury of renal blood vessel|Unspecified injury of renal blood vessel +C2838910|T037|AB|S35.401|ICD10CM|Unspecified injury of right renal artery|Unspecified injury of right renal artery +C2838910|T037|HT|S35.401|ICD10CM|Unspecified injury of right renal artery|Unspecified injury of right renal artery +C2838911|T037|AB|S35.401A|ICD10CM|Unspecified injury of right renal artery, initial encounter|Unspecified injury of right renal artery, initial encounter +C2838911|T037|PT|S35.401A|ICD10CM|Unspecified injury of right renal artery, initial encounter|Unspecified injury of right renal artery, initial encounter +C2838912|T037|AB|S35.401D|ICD10CM|Unspecified injury of right renal artery, subs encntr|Unspecified injury of right renal artery, subs encntr +C2838912|T037|PT|S35.401D|ICD10CM|Unspecified injury of right renal artery, subsequent encounter|Unspecified injury of right renal artery, subsequent encounter +C2838913|T037|AB|S35.401S|ICD10CM|Unspecified injury of right renal artery, sequela|Unspecified injury of right renal artery, sequela +C2838913|T037|PT|S35.401S|ICD10CM|Unspecified injury of right renal artery, sequela|Unspecified injury of right renal artery, sequela +C2838914|T037|AB|S35.402|ICD10CM|Unspecified injury of left renal artery|Unspecified injury of left renal artery +C2838914|T037|HT|S35.402|ICD10CM|Unspecified injury of left renal artery|Unspecified injury of left renal artery +C2838915|T037|AB|S35.402A|ICD10CM|Unspecified injury of left renal artery, initial encounter|Unspecified injury of left renal artery, initial encounter +C2838915|T037|PT|S35.402A|ICD10CM|Unspecified injury of left renal artery, initial encounter|Unspecified injury of left renal artery, initial encounter +C2838916|T037|AB|S35.402D|ICD10CM|Unspecified injury of left renal artery, subs encntr|Unspecified injury of left renal artery, subs encntr +C2838916|T037|PT|S35.402D|ICD10CM|Unspecified injury of left renal artery, subsequent encounter|Unspecified injury of left renal artery, subsequent encounter +C2838917|T037|AB|S35.402S|ICD10CM|Unspecified injury of left renal artery, sequela|Unspecified injury of left renal artery, sequela +C2838917|T037|PT|S35.402S|ICD10CM|Unspecified injury of left renal artery, sequela|Unspecified injury of left renal artery, sequela +C2838918|T037|AB|S35.403|ICD10CM|Unspecified injury of unspecified renal artery|Unspecified injury of unspecified renal artery +C2838918|T037|HT|S35.403|ICD10CM|Unspecified injury of unspecified renal artery|Unspecified injury of unspecified renal artery +C2838919|T037|AB|S35.403A|ICD10CM|Unspecified injury of unspecified renal artery, init encntr|Unspecified injury of unspecified renal artery, init encntr +C2838919|T037|PT|S35.403A|ICD10CM|Unspecified injury of unspecified renal artery, initial encounter|Unspecified injury of unspecified renal artery, initial encounter +C2838920|T037|AB|S35.403D|ICD10CM|Unspecified injury of unspecified renal artery, subs encntr|Unspecified injury of unspecified renal artery, subs encntr +C2838920|T037|PT|S35.403D|ICD10CM|Unspecified injury of unspecified renal artery, subsequent encounter|Unspecified injury of unspecified renal artery, subsequent encounter +C2838921|T037|AB|S35.403S|ICD10CM|Unspecified injury of unspecified renal artery, sequela|Unspecified injury of unspecified renal artery, sequela +C2838921|T037|PT|S35.403S|ICD10CM|Unspecified injury of unspecified renal artery, sequela|Unspecified injury of unspecified renal artery, sequela +C2838922|T037|AB|S35.404|ICD10CM|Unspecified injury of right renal vein|Unspecified injury of right renal vein +C2838922|T037|HT|S35.404|ICD10CM|Unspecified injury of right renal vein|Unspecified injury of right renal vein +C2838923|T037|AB|S35.404A|ICD10CM|Unspecified injury of right renal vein, initial encounter|Unspecified injury of right renal vein, initial encounter +C2838923|T037|PT|S35.404A|ICD10CM|Unspecified injury of right renal vein, initial encounter|Unspecified injury of right renal vein, initial encounter +C2838924|T037|AB|S35.404D|ICD10CM|Unspecified injury of right renal vein, subsequent encounter|Unspecified injury of right renal vein, subsequent encounter +C2838924|T037|PT|S35.404D|ICD10CM|Unspecified injury of right renal vein, subsequent encounter|Unspecified injury of right renal vein, subsequent encounter +C2838925|T037|AB|S35.404S|ICD10CM|Unspecified injury of right renal vein, sequela|Unspecified injury of right renal vein, sequela +C2838925|T037|PT|S35.404S|ICD10CM|Unspecified injury of right renal vein, sequela|Unspecified injury of right renal vein, sequela +C2838926|T037|AB|S35.405|ICD10CM|Unspecified injury of left renal vein|Unspecified injury of left renal vein +C2838926|T037|HT|S35.405|ICD10CM|Unspecified injury of left renal vein|Unspecified injury of left renal vein +C2838927|T037|AB|S35.405A|ICD10CM|Unspecified injury of left renal vein, initial encounter|Unspecified injury of left renal vein, initial encounter +C2838927|T037|PT|S35.405A|ICD10CM|Unspecified injury of left renal vein, initial encounter|Unspecified injury of left renal vein, initial encounter +C2838928|T037|AB|S35.405D|ICD10CM|Unspecified injury of left renal vein, subsequent encounter|Unspecified injury of left renal vein, subsequent encounter +C2838928|T037|PT|S35.405D|ICD10CM|Unspecified injury of left renal vein, subsequent encounter|Unspecified injury of left renal vein, subsequent encounter +C2838929|T037|AB|S35.405S|ICD10CM|Unspecified injury of left renal vein, sequela|Unspecified injury of left renal vein, sequela +C2838929|T037|PT|S35.405S|ICD10CM|Unspecified injury of left renal vein, sequela|Unspecified injury of left renal vein, sequela +C2838930|T037|AB|S35.406|ICD10CM|Unspecified injury of unspecified renal vein|Unspecified injury of unspecified renal vein +C2838930|T037|HT|S35.406|ICD10CM|Unspecified injury of unspecified renal vein|Unspecified injury of unspecified renal vein +C2838931|T037|AB|S35.406A|ICD10CM|Unspecified injury of unspecified renal vein, init encntr|Unspecified injury of unspecified renal vein, init encntr +C2838931|T037|PT|S35.406A|ICD10CM|Unspecified injury of unspecified renal vein, initial encounter|Unspecified injury of unspecified renal vein, initial encounter +C2838932|T037|AB|S35.406D|ICD10CM|Unspecified injury of unspecified renal vein, subs encntr|Unspecified injury of unspecified renal vein, subs encntr +C2838932|T037|PT|S35.406D|ICD10CM|Unspecified injury of unspecified renal vein, subsequent encounter|Unspecified injury of unspecified renal vein, subsequent encounter +C2838933|T037|AB|S35.406S|ICD10CM|Unspecified injury of unspecified renal vein, sequela|Unspecified injury of unspecified renal vein, sequela +C2838933|T037|PT|S35.406S|ICD10CM|Unspecified injury of unspecified renal vein, sequela|Unspecified injury of unspecified renal vein, sequela +C2838934|T037|AB|S35.41|ICD10CM|Laceration of renal blood vessel|Laceration of renal blood vessel +C2838934|T037|HT|S35.41|ICD10CM|Laceration of renal blood vessel|Laceration of renal blood vessel +C2838935|T037|HT|S35.411|ICD10CM|Laceration of right renal artery|Laceration of right renal artery +C2838935|T037|AB|S35.411|ICD10CM|Laceration of right renal artery|Laceration of right renal artery +C2838936|T037|AB|S35.411A|ICD10CM|Laceration of right renal artery, initial encounter|Laceration of right renal artery, initial encounter +C2838936|T037|PT|S35.411A|ICD10CM|Laceration of right renal artery, initial encounter|Laceration of right renal artery, initial encounter +C2838937|T037|AB|S35.411D|ICD10CM|Laceration of right renal artery, subsequent encounter|Laceration of right renal artery, subsequent encounter +C2838937|T037|PT|S35.411D|ICD10CM|Laceration of right renal artery, subsequent encounter|Laceration of right renal artery, subsequent encounter +C2838938|T037|AB|S35.411S|ICD10CM|Laceration of right renal artery, sequela|Laceration of right renal artery, sequela +C2838938|T037|PT|S35.411S|ICD10CM|Laceration of right renal artery, sequela|Laceration of right renal artery, sequela +C2838939|T037|HT|S35.412|ICD10CM|Laceration of left renal artery|Laceration of left renal artery +C2838939|T037|AB|S35.412|ICD10CM|Laceration of left renal artery|Laceration of left renal artery +C2838940|T037|AB|S35.412A|ICD10CM|Laceration of left renal artery, initial encounter|Laceration of left renal artery, initial encounter +C2838940|T037|PT|S35.412A|ICD10CM|Laceration of left renal artery, initial encounter|Laceration of left renal artery, initial encounter +C2838941|T037|AB|S35.412D|ICD10CM|Laceration of left renal artery, subsequent encounter|Laceration of left renal artery, subsequent encounter +C2838941|T037|PT|S35.412D|ICD10CM|Laceration of left renal artery, subsequent encounter|Laceration of left renal artery, subsequent encounter +C2838942|T037|AB|S35.412S|ICD10CM|Laceration of left renal artery, sequela|Laceration of left renal artery, sequela +C2838942|T037|PT|S35.412S|ICD10CM|Laceration of left renal artery, sequela|Laceration of left renal artery, sequela +C2838943|T037|AB|S35.413|ICD10CM|Laceration of unspecified renal artery|Laceration of unspecified renal artery +C2838943|T037|HT|S35.413|ICD10CM|Laceration of unspecified renal artery|Laceration of unspecified renal artery +C2838944|T037|AB|S35.413A|ICD10CM|Laceration of unspecified renal artery, initial encounter|Laceration of unspecified renal artery, initial encounter +C2838944|T037|PT|S35.413A|ICD10CM|Laceration of unspecified renal artery, initial encounter|Laceration of unspecified renal artery, initial encounter +C2838945|T037|AB|S35.413D|ICD10CM|Laceration of unspecified renal artery, subsequent encounter|Laceration of unspecified renal artery, subsequent encounter +C2838945|T037|PT|S35.413D|ICD10CM|Laceration of unspecified renal artery, subsequent encounter|Laceration of unspecified renal artery, subsequent encounter +C2838946|T037|AB|S35.413S|ICD10CM|Laceration of unspecified renal artery, sequela|Laceration of unspecified renal artery, sequela +C2838946|T037|PT|S35.413S|ICD10CM|Laceration of unspecified renal artery, sequela|Laceration of unspecified renal artery, sequela +C2838947|T037|AB|S35.414|ICD10CM|Laceration of right renal vein|Laceration of right renal vein +C2838947|T037|HT|S35.414|ICD10CM|Laceration of right renal vein|Laceration of right renal vein +C2838948|T037|AB|S35.414A|ICD10CM|Laceration of right renal vein, initial encounter|Laceration of right renal vein, initial encounter +C2838948|T037|PT|S35.414A|ICD10CM|Laceration of right renal vein, initial encounter|Laceration of right renal vein, initial encounter +C2838949|T037|AB|S35.414D|ICD10CM|Laceration of right renal vein, subsequent encounter|Laceration of right renal vein, subsequent encounter +C2838949|T037|PT|S35.414D|ICD10CM|Laceration of right renal vein, subsequent encounter|Laceration of right renal vein, subsequent encounter +C2838950|T037|AB|S35.414S|ICD10CM|Laceration of right renal vein, sequela|Laceration of right renal vein, sequela +C2838950|T037|PT|S35.414S|ICD10CM|Laceration of right renal vein, sequela|Laceration of right renal vein, sequela +C2838951|T037|AB|S35.415|ICD10CM|Laceration of left renal vein|Laceration of left renal vein +C2838951|T037|HT|S35.415|ICD10CM|Laceration of left renal vein|Laceration of left renal vein +C2838952|T037|AB|S35.415A|ICD10CM|Laceration of left renal vein, initial encounter|Laceration of left renal vein, initial encounter +C2838952|T037|PT|S35.415A|ICD10CM|Laceration of left renal vein, initial encounter|Laceration of left renal vein, initial encounter +C2838953|T037|AB|S35.415D|ICD10CM|Laceration of left renal vein, subsequent encounter|Laceration of left renal vein, subsequent encounter +C2838953|T037|PT|S35.415D|ICD10CM|Laceration of left renal vein, subsequent encounter|Laceration of left renal vein, subsequent encounter +C2838954|T037|AB|S35.415S|ICD10CM|Laceration of left renal vein, sequela|Laceration of left renal vein, sequela +C2838954|T037|PT|S35.415S|ICD10CM|Laceration of left renal vein, sequela|Laceration of left renal vein, sequela +C2838955|T037|AB|S35.416|ICD10CM|Laceration of unspecified renal vein|Laceration of unspecified renal vein +C2838955|T037|HT|S35.416|ICD10CM|Laceration of unspecified renal vein|Laceration of unspecified renal vein +C2838956|T037|AB|S35.416A|ICD10CM|Laceration of unspecified renal vein, initial encounter|Laceration of unspecified renal vein, initial encounter +C2838956|T037|PT|S35.416A|ICD10CM|Laceration of unspecified renal vein, initial encounter|Laceration of unspecified renal vein, initial encounter +C2838957|T037|AB|S35.416D|ICD10CM|Laceration of unspecified renal vein, subsequent encounter|Laceration of unspecified renal vein, subsequent encounter +C2838957|T037|PT|S35.416D|ICD10CM|Laceration of unspecified renal vein, subsequent encounter|Laceration of unspecified renal vein, subsequent encounter +C2838958|T037|AB|S35.416S|ICD10CM|Laceration of unspecified renal vein, sequela|Laceration of unspecified renal vein, sequela +C2838958|T037|PT|S35.416S|ICD10CM|Laceration of unspecified renal vein, sequela|Laceration of unspecified renal vein, sequela +C2838959|T037|AB|S35.49|ICD10CM|Other specified injury of renal blood vessel|Other specified injury of renal blood vessel +C2838959|T037|HT|S35.49|ICD10CM|Other specified injury of renal blood vessel|Other specified injury of renal blood vessel +C2838960|T037|AB|S35.491|ICD10CM|Other specified injury of right renal artery|Other specified injury of right renal artery +C2838960|T037|HT|S35.491|ICD10CM|Other specified injury of right renal artery|Other specified injury of right renal artery +C2838961|T037|AB|S35.491A|ICD10CM|Other specified injury of right renal artery, init encntr|Other specified injury of right renal artery, init encntr +C2838961|T037|PT|S35.491A|ICD10CM|Other specified injury of right renal artery, initial encounter|Other specified injury of right renal artery, initial encounter +C2838962|T037|AB|S35.491D|ICD10CM|Other specified injury of right renal artery, subs encntr|Other specified injury of right renal artery, subs encntr +C2838962|T037|PT|S35.491D|ICD10CM|Other specified injury of right renal artery, subsequent encounter|Other specified injury of right renal artery, subsequent encounter +C2838963|T037|AB|S35.491S|ICD10CM|Other specified injury of right renal artery, sequela|Other specified injury of right renal artery, sequela +C2838963|T037|PT|S35.491S|ICD10CM|Other specified injury of right renal artery, sequela|Other specified injury of right renal artery, sequela +C2838964|T037|AB|S35.492|ICD10CM|Other specified injury of left renal artery|Other specified injury of left renal artery +C2838964|T037|HT|S35.492|ICD10CM|Other specified injury of left renal artery|Other specified injury of left renal artery +C2838965|T037|AB|S35.492A|ICD10CM|Other specified injury of left renal artery, init encntr|Other specified injury of left renal artery, init encntr +C2838965|T037|PT|S35.492A|ICD10CM|Other specified injury of left renal artery, initial encounter|Other specified injury of left renal artery, initial encounter +C2838966|T037|AB|S35.492D|ICD10CM|Other specified injury of left renal artery, subs encntr|Other specified injury of left renal artery, subs encntr +C2838966|T037|PT|S35.492D|ICD10CM|Other specified injury of left renal artery, subsequent encounter|Other specified injury of left renal artery, subsequent encounter +C2838967|T037|AB|S35.492S|ICD10CM|Other specified injury of left renal artery, sequela|Other specified injury of left renal artery, sequela +C2838967|T037|PT|S35.492S|ICD10CM|Other specified injury of left renal artery, sequela|Other specified injury of left renal artery, sequela +C2838968|T037|AB|S35.493|ICD10CM|Other specified injury of unspecified renal artery|Other specified injury of unspecified renal artery +C2838968|T037|HT|S35.493|ICD10CM|Other specified injury of unspecified renal artery|Other specified injury of unspecified renal artery +C2838969|T037|AB|S35.493A|ICD10CM|Oth injury of unspecified renal artery, init encntr|Oth injury of unspecified renal artery, init encntr +C2838969|T037|PT|S35.493A|ICD10CM|Other specified injury of unspecified renal artery, initial encounter|Other specified injury of unspecified renal artery, initial encounter +C2838970|T037|AB|S35.493D|ICD10CM|Oth injury of unspecified renal artery, subs encntr|Oth injury of unspecified renal artery, subs encntr +C2838970|T037|PT|S35.493D|ICD10CM|Other specified injury of unspecified renal artery, subsequent encounter|Other specified injury of unspecified renal artery, subsequent encounter +C2838971|T037|AB|S35.493S|ICD10CM|Other specified injury of unspecified renal artery, sequela|Other specified injury of unspecified renal artery, sequela +C2838971|T037|PT|S35.493S|ICD10CM|Other specified injury of unspecified renal artery, sequela|Other specified injury of unspecified renal artery, sequela +C2838972|T037|AB|S35.494|ICD10CM|Other specified injury of right renal vein|Other specified injury of right renal vein +C2838972|T037|HT|S35.494|ICD10CM|Other specified injury of right renal vein|Other specified injury of right renal vein +C2838973|T037|AB|S35.494A|ICD10CM|Other specified injury of right renal vein, init encntr|Other specified injury of right renal vein, init encntr +C2838973|T037|PT|S35.494A|ICD10CM|Other specified injury of right renal vein, initial encounter|Other specified injury of right renal vein, initial encounter +C2838974|T037|AB|S35.494D|ICD10CM|Other specified injury of right renal vein, subs encntr|Other specified injury of right renal vein, subs encntr +C2838974|T037|PT|S35.494D|ICD10CM|Other specified injury of right renal vein, subsequent encounter|Other specified injury of right renal vein, subsequent encounter +C2838975|T037|AB|S35.494S|ICD10CM|Other specified injury of right renal vein, sequela|Other specified injury of right renal vein, sequela +C2838975|T037|PT|S35.494S|ICD10CM|Other specified injury of right renal vein, sequela|Other specified injury of right renal vein, sequela +C2838976|T037|AB|S35.495|ICD10CM|Other specified injury of left renal vein|Other specified injury of left renal vein +C2838976|T037|HT|S35.495|ICD10CM|Other specified injury of left renal vein|Other specified injury of left renal vein +C2838977|T037|AB|S35.495A|ICD10CM|Other specified injury of left renal vein, initial encounter|Other specified injury of left renal vein, initial encounter +C2838977|T037|PT|S35.495A|ICD10CM|Other specified injury of left renal vein, initial encounter|Other specified injury of left renal vein, initial encounter +C2838978|T037|AB|S35.495D|ICD10CM|Other specified injury of left renal vein, subs encntr|Other specified injury of left renal vein, subs encntr +C2838978|T037|PT|S35.495D|ICD10CM|Other specified injury of left renal vein, subsequent encounter|Other specified injury of left renal vein, subsequent encounter +C2838979|T037|AB|S35.495S|ICD10CM|Other specified injury of left renal vein, sequela|Other specified injury of left renal vein, sequela +C2838979|T037|PT|S35.495S|ICD10CM|Other specified injury of left renal vein, sequela|Other specified injury of left renal vein, sequela +C2838980|T037|AB|S35.496|ICD10CM|Other specified injury of unspecified renal vein|Other specified injury of unspecified renal vein +C2838980|T037|HT|S35.496|ICD10CM|Other specified injury of unspecified renal vein|Other specified injury of unspecified renal vein +C2838981|T037|AB|S35.496A|ICD10CM|Oth injury of unspecified renal vein, init encntr|Oth injury of unspecified renal vein, init encntr +C2838981|T037|PT|S35.496A|ICD10CM|Other specified injury of unspecified renal vein, initial encounter|Other specified injury of unspecified renal vein, initial encounter +C2838982|T037|AB|S35.496D|ICD10CM|Oth injury of unspecified renal vein, subs encntr|Oth injury of unspecified renal vein, subs encntr +C2838982|T037|PT|S35.496D|ICD10CM|Other specified injury of unspecified renal vein, subsequent encounter|Other specified injury of unspecified renal vein, subsequent encounter +C2838983|T037|AB|S35.496S|ICD10CM|Other specified injury of unspecified renal vein, sequela|Other specified injury of unspecified renal vein, sequela +C2838983|T037|PT|S35.496S|ICD10CM|Other specified injury of unspecified renal vein, sequela|Other specified injury of unspecified renal vein, sequela +C0160728|T037|HT|S35.5|ICD10CM|Injury of iliac blood vessels|Injury of iliac blood vessels +C0160728|T037|AB|S35.5|ICD10CM|Injury of iliac blood vessels|Injury of iliac blood vessels +C0160728|T037|PT|S35.5|ICD10|Injury of iliac blood vessels|Injury of iliac blood vessels +C0160728|T037|AB|S35.50|ICD10CM|Injury of unspecified iliac blood vessel(s)|Injury of unspecified iliac blood vessel(s) +C0160728|T037|HT|S35.50|ICD10CM|Injury of unspecified iliac blood vessel(s)|Injury of unspecified iliac blood vessel(s) +C2838984|T037|AB|S35.50XA|ICD10CM|Injury of unspecified iliac blood vessel(s), init encntr|Injury of unspecified iliac blood vessel(s), init encntr +C2838984|T037|PT|S35.50XA|ICD10CM|Injury of unspecified iliac blood vessel(s), initial encounter|Injury of unspecified iliac blood vessel(s), initial encounter +C2838985|T037|AB|S35.50XD|ICD10CM|Injury of unspecified iliac blood vessel(s), subs encntr|Injury of unspecified iliac blood vessel(s), subs encntr +C2838985|T037|PT|S35.50XD|ICD10CM|Injury of unspecified iliac blood vessel(s), subsequent encounter|Injury of unspecified iliac blood vessel(s), subsequent encounter +C2838986|T037|AB|S35.50XS|ICD10CM|Injury of unspecified iliac blood vessel(s), sequela|Injury of unspecified iliac blood vessel(s), sequela +C2838986|T037|PT|S35.50XS|ICD10CM|Injury of unspecified iliac blood vessel(s), sequela|Injury of unspecified iliac blood vessel(s), sequela +C2838988|T037|ET|S35.51|ICD10CM|Injury of hypogastric artery or vein|Injury of hypogastric artery or vein +C2838988|T037|AB|S35.51|ICD10CM|Injury of iliac artery or vein|Injury of iliac artery or vein +C2838988|T037|HT|S35.51|ICD10CM|Injury of iliac artery or vein|Injury of iliac artery or vein +C2838989|T037|AB|S35.511|ICD10CM|Injury of right iliac artery|Injury of right iliac artery +C2838989|T037|HT|S35.511|ICD10CM|Injury of right iliac artery|Injury of right iliac artery +C2838990|T037|AB|S35.511A|ICD10CM|Injury of right iliac artery, initial encounter|Injury of right iliac artery, initial encounter +C2838990|T037|PT|S35.511A|ICD10CM|Injury of right iliac artery, initial encounter|Injury of right iliac artery, initial encounter +C2838991|T037|AB|S35.511D|ICD10CM|Injury of right iliac artery, subsequent encounter|Injury of right iliac artery, subsequent encounter +C2838991|T037|PT|S35.511D|ICD10CM|Injury of right iliac artery, subsequent encounter|Injury of right iliac artery, subsequent encounter +C2838992|T037|AB|S35.511S|ICD10CM|Injury of right iliac artery, sequela|Injury of right iliac artery, sequela +C2838992|T037|PT|S35.511S|ICD10CM|Injury of right iliac artery, sequela|Injury of right iliac artery, sequela +C2838993|T037|AB|S35.512|ICD10CM|Injury of left iliac artery|Injury of left iliac artery +C2838993|T037|HT|S35.512|ICD10CM|Injury of left iliac artery|Injury of left iliac artery +C2838994|T037|AB|S35.512A|ICD10CM|Injury of left iliac artery, initial encounter|Injury of left iliac artery, initial encounter +C2838994|T037|PT|S35.512A|ICD10CM|Injury of left iliac artery, initial encounter|Injury of left iliac artery, initial encounter +C2838995|T037|AB|S35.512D|ICD10CM|Injury of left iliac artery, subsequent encounter|Injury of left iliac artery, subsequent encounter +C2838995|T037|PT|S35.512D|ICD10CM|Injury of left iliac artery, subsequent encounter|Injury of left iliac artery, subsequent encounter +C2838996|T037|AB|S35.512S|ICD10CM|Injury of left iliac artery, sequela|Injury of left iliac artery, sequela +C2838996|T037|PT|S35.512S|ICD10CM|Injury of left iliac artery, sequela|Injury of left iliac artery, sequela +C2838997|T037|AB|S35.513|ICD10CM|Injury of unspecified iliac artery|Injury of unspecified iliac artery +C2838997|T037|HT|S35.513|ICD10CM|Injury of unspecified iliac artery|Injury of unspecified iliac artery +C2838998|T037|AB|S35.513A|ICD10CM|Injury of unspecified iliac artery, initial encounter|Injury of unspecified iliac artery, initial encounter +C2838998|T037|PT|S35.513A|ICD10CM|Injury of unspecified iliac artery, initial encounter|Injury of unspecified iliac artery, initial encounter +C2838999|T037|AB|S35.513D|ICD10CM|Injury of unspecified iliac artery, subsequent encounter|Injury of unspecified iliac artery, subsequent encounter +C2838999|T037|PT|S35.513D|ICD10CM|Injury of unspecified iliac artery, subsequent encounter|Injury of unspecified iliac artery, subsequent encounter +C2839000|T037|AB|S35.513S|ICD10CM|Injury of unspecified iliac artery, sequela|Injury of unspecified iliac artery, sequela +C2839000|T037|PT|S35.513S|ICD10CM|Injury of unspecified iliac artery, sequela|Injury of unspecified iliac artery, sequela +C2839001|T037|HT|S35.514|ICD10CM|Injury of right iliac vein|Injury of right iliac vein +C2839001|T037|AB|S35.514|ICD10CM|Injury of right iliac vein|Injury of right iliac vein +C2839002|T037|AB|S35.514A|ICD10CM|Injury of right iliac vein, initial encounter|Injury of right iliac vein, initial encounter +C2839002|T037|PT|S35.514A|ICD10CM|Injury of right iliac vein, initial encounter|Injury of right iliac vein, initial encounter +C2839003|T037|AB|S35.514D|ICD10CM|Injury of right iliac vein, subsequent encounter|Injury of right iliac vein, subsequent encounter +C2839003|T037|PT|S35.514D|ICD10CM|Injury of right iliac vein, subsequent encounter|Injury of right iliac vein, subsequent encounter +C2839004|T037|AB|S35.514S|ICD10CM|Injury of right iliac vein, sequela|Injury of right iliac vein, sequela +C2839004|T037|PT|S35.514S|ICD10CM|Injury of right iliac vein, sequela|Injury of right iliac vein, sequela +C2839005|T037|HT|S35.515|ICD10CM|Injury of left iliac vein|Injury of left iliac vein +C2839005|T037|AB|S35.515|ICD10CM|Injury of left iliac vein|Injury of left iliac vein +C2839006|T037|AB|S35.515A|ICD10CM|Injury of left iliac vein, initial encounter|Injury of left iliac vein, initial encounter +C2839006|T037|PT|S35.515A|ICD10CM|Injury of left iliac vein, initial encounter|Injury of left iliac vein, initial encounter +C2839007|T037|AB|S35.515D|ICD10CM|Injury of left iliac vein, subsequent encounter|Injury of left iliac vein, subsequent encounter +C2839007|T037|PT|S35.515D|ICD10CM|Injury of left iliac vein, subsequent encounter|Injury of left iliac vein, subsequent encounter +C2839008|T037|AB|S35.515S|ICD10CM|Injury of left iliac vein, sequela|Injury of left iliac vein, sequela +C2839008|T037|PT|S35.515S|ICD10CM|Injury of left iliac vein, sequela|Injury of left iliac vein, sequela +C2839009|T037|AB|S35.516|ICD10CM|Injury of unspecified iliac vein|Injury of unspecified iliac vein +C2839009|T037|HT|S35.516|ICD10CM|Injury of unspecified iliac vein|Injury of unspecified iliac vein +C2839010|T037|AB|S35.516A|ICD10CM|Injury of unspecified iliac vein, initial encounter|Injury of unspecified iliac vein, initial encounter +C2839010|T037|PT|S35.516A|ICD10CM|Injury of unspecified iliac vein, initial encounter|Injury of unspecified iliac vein, initial encounter +C2839011|T037|AB|S35.516D|ICD10CM|Injury of unspecified iliac vein, subsequent encounter|Injury of unspecified iliac vein, subsequent encounter +C2839011|T037|PT|S35.516D|ICD10CM|Injury of unspecified iliac vein, subsequent encounter|Injury of unspecified iliac vein, subsequent encounter +C2839012|T037|AB|S35.516S|ICD10CM|Injury of unspecified iliac vein, sequela|Injury of unspecified iliac vein, sequela +C2839012|T037|PT|S35.516S|ICD10CM|Injury of unspecified iliac vein, sequela|Injury of unspecified iliac vein, sequela +C2839013|T037|AB|S35.53|ICD10CM|Injury of uterine artery or vein|Injury of uterine artery or vein +C2839013|T037|HT|S35.53|ICD10CM|Injury of uterine artery or vein|Injury of uterine artery or vein +C2839014|T037|AB|S35.531|ICD10CM|Injury of right uterine artery|Injury of right uterine artery +C2839014|T037|HT|S35.531|ICD10CM|Injury of right uterine artery|Injury of right uterine artery +C2839015|T037|AB|S35.531A|ICD10CM|Injury of right uterine artery, initial encounter|Injury of right uterine artery, initial encounter +C2839015|T037|PT|S35.531A|ICD10CM|Injury of right uterine artery, initial encounter|Injury of right uterine artery, initial encounter +C2839016|T037|AB|S35.531D|ICD10CM|Injury of right uterine artery, subsequent encounter|Injury of right uterine artery, subsequent encounter +C2839016|T037|PT|S35.531D|ICD10CM|Injury of right uterine artery, subsequent encounter|Injury of right uterine artery, subsequent encounter +C2839017|T037|AB|S35.531S|ICD10CM|Injury of right uterine artery, sequela|Injury of right uterine artery, sequela +C2839017|T037|PT|S35.531S|ICD10CM|Injury of right uterine artery, sequela|Injury of right uterine artery, sequela +C2839018|T037|AB|S35.532|ICD10CM|Injury of left uterine artery|Injury of left uterine artery +C2839018|T037|HT|S35.532|ICD10CM|Injury of left uterine artery|Injury of left uterine artery +C2839019|T037|AB|S35.532A|ICD10CM|Injury of left uterine artery, initial encounter|Injury of left uterine artery, initial encounter +C2839019|T037|PT|S35.532A|ICD10CM|Injury of left uterine artery, initial encounter|Injury of left uterine artery, initial encounter +C2839020|T037|AB|S35.532D|ICD10CM|Injury of left uterine artery, subsequent encounter|Injury of left uterine artery, subsequent encounter +C2839020|T037|PT|S35.532D|ICD10CM|Injury of left uterine artery, subsequent encounter|Injury of left uterine artery, subsequent encounter +C2839021|T037|AB|S35.532S|ICD10CM|Injury of left uterine artery, sequela|Injury of left uterine artery, sequela +C2839021|T037|PT|S35.532S|ICD10CM|Injury of left uterine artery, sequela|Injury of left uterine artery, sequela +C2839022|T037|AB|S35.533|ICD10CM|Injury of unspecified uterine artery|Injury of unspecified uterine artery +C2839022|T037|HT|S35.533|ICD10CM|Injury of unspecified uterine artery|Injury of unspecified uterine artery +C2839023|T037|AB|S35.533A|ICD10CM|Injury of unspecified uterine artery, initial encounter|Injury of unspecified uterine artery, initial encounter +C2839023|T037|PT|S35.533A|ICD10CM|Injury of unspecified uterine artery, initial encounter|Injury of unspecified uterine artery, initial encounter +C2839024|T037|AB|S35.533D|ICD10CM|Injury of unspecified uterine artery, subsequent encounter|Injury of unspecified uterine artery, subsequent encounter +C2839024|T037|PT|S35.533D|ICD10CM|Injury of unspecified uterine artery, subsequent encounter|Injury of unspecified uterine artery, subsequent encounter +C2839025|T037|AB|S35.533S|ICD10CM|Injury of unspecified uterine artery, sequela|Injury of unspecified uterine artery, sequela +C2839025|T037|PT|S35.533S|ICD10CM|Injury of unspecified uterine artery, sequela|Injury of unspecified uterine artery, sequela +C2839026|T037|AB|S35.534|ICD10CM|Injury of right uterine vein|Injury of right uterine vein +C2839026|T037|HT|S35.534|ICD10CM|Injury of right uterine vein|Injury of right uterine vein +C2839027|T037|AB|S35.534A|ICD10CM|Injury of right uterine vein, initial encounter|Injury of right uterine vein, initial encounter +C2839027|T037|PT|S35.534A|ICD10CM|Injury of right uterine vein, initial encounter|Injury of right uterine vein, initial encounter +C2839028|T037|AB|S35.534D|ICD10CM|Injury of right uterine vein, subsequent encounter|Injury of right uterine vein, subsequent encounter +C2839028|T037|PT|S35.534D|ICD10CM|Injury of right uterine vein, subsequent encounter|Injury of right uterine vein, subsequent encounter +C2839029|T037|AB|S35.534S|ICD10CM|Injury of right uterine vein, sequela|Injury of right uterine vein, sequela +C2839029|T037|PT|S35.534S|ICD10CM|Injury of right uterine vein, sequela|Injury of right uterine vein, sequela +C2839030|T037|AB|S35.535|ICD10CM|Injury of left uterine vein|Injury of left uterine vein +C2839030|T037|HT|S35.535|ICD10CM|Injury of left uterine vein|Injury of left uterine vein +C2839031|T037|AB|S35.535A|ICD10CM|Injury of left uterine vein, initial encounter|Injury of left uterine vein, initial encounter +C2839031|T037|PT|S35.535A|ICD10CM|Injury of left uterine vein, initial encounter|Injury of left uterine vein, initial encounter +C2839032|T037|AB|S35.535D|ICD10CM|Injury of left uterine vein, subsequent encounter|Injury of left uterine vein, subsequent encounter +C2839032|T037|PT|S35.535D|ICD10CM|Injury of left uterine vein, subsequent encounter|Injury of left uterine vein, subsequent encounter +C2839033|T037|AB|S35.535S|ICD10CM|Injury of left uterine vein, sequela|Injury of left uterine vein, sequela +C2839033|T037|PT|S35.535S|ICD10CM|Injury of left uterine vein, sequela|Injury of left uterine vein, sequela +C2839034|T037|AB|S35.536|ICD10CM|Injury of unspecified uterine vein|Injury of unspecified uterine vein +C2839034|T037|HT|S35.536|ICD10CM|Injury of unspecified uterine vein|Injury of unspecified uterine vein +C2839035|T037|AB|S35.536A|ICD10CM|Injury of unspecified uterine vein, initial encounter|Injury of unspecified uterine vein, initial encounter +C2839035|T037|PT|S35.536A|ICD10CM|Injury of unspecified uterine vein, initial encounter|Injury of unspecified uterine vein, initial encounter +C2839036|T037|AB|S35.536D|ICD10CM|Injury of unspecified uterine vein, subsequent encounter|Injury of unspecified uterine vein, subsequent encounter +C2839036|T037|PT|S35.536D|ICD10CM|Injury of unspecified uterine vein, subsequent encounter|Injury of unspecified uterine vein, subsequent encounter +C2839037|T037|AB|S35.536S|ICD10CM|Injury of unspecified uterine vein, sequela|Injury of unspecified uterine vein, sequela +C2839037|T037|PT|S35.536S|ICD10CM|Injury of unspecified uterine vein, sequela|Injury of unspecified uterine vein, sequela +C0160736|T037|AB|S35.59|ICD10CM|Injury of other iliac blood vessels|Injury of other iliac blood vessels +C0160736|T037|HT|S35.59|ICD10CM|Injury of other iliac blood vessels|Injury of other iliac blood vessels +C2839038|T037|AB|S35.59XA|ICD10CM|Injury of other iliac blood vessels, initial encounter|Injury of other iliac blood vessels, initial encounter +C2839038|T037|PT|S35.59XA|ICD10CM|Injury of other iliac blood vessels, initial encounter|Injury of other iliac blood vessels, initial encounter +C2839039|T037|AB|S35.59XD|ICD10CM|Injury of other iliac blood vessels, subsequent encounter|Injury of other iliac blood vessels, subsequent encounter +C2839039|T037|PT|S35.59XD|ICD10CM|Injury of other iliac blood vessels, subsequent encounter|Injury of other iliac blood vessels, subsequent encounter +C2839040|T037|AB|S35.59XS|ICD10CM|Injury of other iliac blood vessels, sequela|Injury of other iliac blood vessels, sequela +C2839040|T037|PT|S35.59XS|ICD10CM|Injury of other iliac blood vessels, sequela|Injury of other iliac blood vessels, sequela +C0495852|T037|PT|S35.7|ICD10|Injury of multiple blood vessels at abdomen, lower back and pelvis level|Injury of multiple blood vessels at abdomen, lower back and pelvis level +C0478259|T037|AB|S35.8|ICD10CM|Inj blood vessels at abdomen, low back and pelvis level|Inj blood vessels at abdomen, low back and pelvis level +C0478259|T037|HT|S35.8|ICD10CM|Injury of other blood vessels at abdomen, lower back and pelvis level|Injury of other blood vessels at abdomen, lower back and pelvis level +C0478259|T037|PT|S35.8|ICD10|Injury of other blood vessels at abdomen, lower back and pelvis level|Injury of other blood vessels at abdomen, lower back and pelvis level +C2839041|T037|ET|S35.8|ICD10CM|Injury of ovarian artery or vein|Injury of ovarian artery or vein +C0478259|T037|AB|S35.8X|ICD10CM|Inj blood vessels at abdomen, low back and pelvis level|Inj blood vessels at abdomen, low back and pelvis level +C0478259|T037|HT|S35.8X|ICD10CM|Injury of other blood vessels at abdomen, lower back and pelvis level|Injury of other blood vessels at abdomen, lower back and pelvis level +C2839042|T037|AB|S35.8X1|ICD10CM|Lacerat blood vessels at abdomen, low back and pelvis level|Lacerat blood vessels at abdomen, low back and pelvis level +C2839042|T037|HT|S35.8X1|ICD10CM|Laceration of other blood vessels at abdomen, lower back and pelvis level|Laceration of other blood vessels at abdomen, lower back and pelvis level +C2839043|T037|AB|S35.8X1A|ICD10CM|Lacerat blood vesls at abd, low back and pelvis level, init|Lacerat blood vesls at abd, low back and pelvis level, init +C2839043|T037|PT|S35.8X1A|ICD10CM|Laceration of other blood vessels at abdomen, lower back and pelvis level, initial encounter|Laceration of other blood vessels at abdomen, lower back and pelvis level, initial encounter +C2839044|T037|AB|S35.8X1D|ICD10CM|Lacerat blood vesls at abd, low back and pelvis level, subs|Lacerat blood vesls at abd, low back and pelvis level, subs +C2839044|T037|PT|S35.8X1D|ICD10CM|Laceration of other blood vessels at abdomen, lower back and pelvis level, subsequent encounter|Laceration of other blood vessels at abdomen, lower back and pelvis level, subsequent encounter +C2839045|T037|AB|S35.8X1S|ICD10CM|Lacerat blood vesls at abd, low back and pelvis level, sqla|Lacerat blood vesls at abd, low back and pelvis level, sqla +C2839045|T037|PT|S35.8X1S|ICD10CM|Laceration of other blood vessels at abdomen, lower back and pelvis level, sequela|Laceration of other blood vessels at abdomen, lower back and pelvis level, sequela +C2839046|T037|AB|S35.8X8|ICD10CM|Inj oth blood vessels at abdomen, low back and pelvis level|Inj oth blood vessels at abdomen, low back and pelvis level +C2839046|T037|HT|S35.8X8|ICD10CM|Other specified injury of other blood vessels at abdomen, lower back and pelvis level|Other specified injury of other blood vessels at abdomen, lower back and pelvis level +C2839047|T037|AB|S35.8X8A|ICD10CM|Inj oth blood vesls at abd, low back and pelvis level, init|Inj oth blood vesls at abd, low back and pelvis level, init +C2839048|T037|AB|S35.8X8D|ICD10CM|Inj oth blood vesls at abd, low back and pelvis level, subs|Inj oth blood vesls at abd, low back and pelvis level, subs +C2839049|T037|AB|S35.8X8S|ICD10CM|Inj oth blood vesls at abd, low back and pelvis level, sqla|Inj oth blood vesls at abd, low back and pelvis level, sqla +C2839049|T037|PT|S35.8X8S|ICD10CM|Other specified injury of other blood vessels at abdomen, lower back and pelvis level, sequela|Other specified injury of other blood vessels at abdomen, lower back and pelvis level, sequela +C2839050|T037|AB|S35.8X9|ICD10CM|Unsp inj blood vessels at abdomen, low back and pelvis level|Unsp inj blood vessels at abdomen, low back and pelvis level +C2839050|T037|HT|S35.8X9|ICD10CM|Unspecified injury of other blood vessels at abdomen, lower back and pelvis level|Unspecified injury of other blood vessels at abdomen, lower back and pelvis level +C2839051|T037|AB|S35.8X9A|ICD10CM|Unsp inj blood vesls at abd, low back and pelvis level, init|Unsp inj blood vesls at abd, low back and pelvis level, init +C2839051|T037|PT|S35.8X9A|ICD10CM|Unspecified injury of other blood vessels at abdomen, lower back and pelvis level, initial encounter|Unspecified injury of other blood vessels at abdomen, lower back and pelvis level, initial encounter +C2839052|T037|AB|S35.8X9D|ICD10CM|Unsp inj blood vesls at abd, low back and pelvis level, subs|Unsp inj blood vesls at abd, low back and pelvis level, subs +C2839053|T037|AB|S35.8X9S|ICD10CM|Unsp inj blood vesls at abd, low back and pelvis level, sqla|Unsp inj blood vesls at abd, low back and pelvis level, sqla +C2839053|T037|PT|S35.8X9S|ICD10CM|Unspecified injury of other blood vessels at abdomen, lower back and pelvis level, sequela|Unspecified injury of other blood vessels at abdomen, lower back and pelvis level, sequela +C0478260|T037|AB|S35.9|ICD10CM|Inj unsp blood vess at abdomen, low back and pelvis level|Inj unsp blood vess at abdomen, low back and pelvis level +C0478260|T037|HT|S35.9|ICD10CM|Injury of unspecified blood vessel at abdomen, lower back and pelvis level|Injury of unspecified blood vessel at abdomen, lower back and pelvis level +C0478260|T037|PT|S35.9|ICD10|Injury of unspecified blood vessel at abdomen, lower back and pelvis level|Injury of unspecified blood vessel at abdomen, lower back and pelvis level +C2839054|T037|AB|S35.90|ICD10CM|Unsp inj unsp blood vess at abd, low back and pelvis level|Unsp inj unsp blood vess at abd, low back and pelvis level +C2839054|T037|HT|S35.90|ICD10CM|Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level|Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level +C2839055|T037|AB|S35.90XA|ICD10CM|Unsp inj unsp bld vess at abd, low back and pelv level, init|Unsp inj unsp bld vess at abd, low back and pelv level, init +C2839056|T037|AB|S35.90XD|ICD10CM|Unsp inj unsp bld vess at abd, low back and pelv level, subs|Unsp inj unsp bld vess at abd, low back and pelv level, subs +C2839057|T037|AB|S35.90XS|ICD10CM|Unsp inj unsp bld vess at abd, low back and pelv level, sqla|Unsp inj unsp bld vess at abd, low back and pelv level, sqla +C2839057|T037|PT|S35.90XS|ICD10CM|Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level, sequela|Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level, sequela +C2839058|T037|AB|S35.91|ICD10CM|Lacerat unsp blood vess at abd, low back and pelvis level|Lacerat unsp blood vess at abd, low back and pelvis level +C2839058|T037|HT|S35.91|ICD10CM|Laceration of unspecified blood vessel at abdomen, lower back and pelvis level|Laceration of unspecified blood vessel at abdomen, lower back and pelvis level +C2839059|T037|AB|S35.91XA|ICD10CM|Lacerat unsp bld vess at abd, low back and pelv level, init|Lacerat unsp bld vess at abd, low back and pelv level, init +C2839059|T037|PT|S35.91XA|ICD10CM|Laceration of unspecified blood vessel at abdomen, lower back and pelvis level, initial encounter|Laceration of unspecified blood vessel at abdomen, lower back and pelvis level, initial encounter +C2839060|T037|AB|S35.91XD|ICD10CM|Lacerat unsp bld vess at abd, low back and pelv level, subs|Lacerat unsp bld vess at abd, low back and pelv level, subs +C2839060|T037|PT|S35.91XD|ICD10CM|Laceration of unspecified blood vessel at abdomen, lower back and pelvis level, subsequent encounter|Laceration of unspecified blood vessel at abdomen, lower back and pelvis level, subsequent encounter +C2839061|T037|AB|S35.91XS|ICD10CM|Lacerat unsp bld vess at abd, low back and pelv level, sqla|Lacerat unsp bld vess at abd, low back and pelv level, sqla +C2839061|T037|PT|S35.91XS|ICD10CM|Laceration of unspecified blood vessel at abdomen, lower back and pelvis level, sequela|Laceration of unspecified blood vessel at abdomen, lower back and pelvis level, sequela +C2839062|T037|AB|S35.99|ICD10CM|Inj unsp blood vess at abdomen, lower back and pelvis level|Inj unsp blood vess at abdomen, lower back and pelvis level +C2839062|T037|HT|S35.99|ICD10CM|Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level|Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level +C2839063|T037|AB|S35.99XA|ICD10CM|Inj unsp blood vess at abd, low back and pelvis level, init|Inj unsp blood vess at abd, low back and pelvis level, init +C2839064|T037|AB|S35.99XD|ICD10CM|Inj unsp blood vess at abd, low back and pelvis level, subs|Inj unsp blood vess at abd, low back and pelvis level, subs +C2839065|T037|AB|S35.99XS|ICD10CM|Inj unsp blood vess at abd, low back and pelvis level, sqla|Inj unsp blood vess at abd, low back and pelvis level, sqla +C2839065|T037|PT|S35.99XS|ICD10CM|Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level, sequela|Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level, sequela +C0273128|T037|AB|S36|ICD10CM|Injury of intra-abdominal organs|Injury of intra-abdominal organs +C0273128|T037|HT|S36|ICD10CM|Injury of intra-abdominal organs|Injury of intra-abdominal organs +C0273128|T037|HT|S36|ICD10|Injury of intra-abdominal organs|Injury of intra-abdominal organs +C0160405|T037|PT|S36.0|ICD10|Injury of spleen|Injury of spleen +C0160405|T037|HT|S36.0|ICD10CM|Injury of spleen|Injury of spleen +C0160405|T037|AB|S36.0|ICD10CM|Injury of spleen|Injury of spleen +C0160405|T037|AB|S36.00|ICD10CM|Unspecified injury of spleen|Unspecified injury of spleen +C0160405|T037|HT|S36.00|ICD10CM|Unspecified injury of spleen|Unspecified injury of spleen +C2839066|T037|PT|S36.00XA|ICD10CM|Unspecified injury of spleen, initial encounter|Unspecified injury of spleen, initial encounter +C2839066|T037|AB|S36.00XA|ICD10CM|Unspecified injury of spleen, initial encounter|Unspecified injury of spleen, initial encounter +C2839067|T037|PT|S36.00XD|ICD10CM|Unspecified injury of spleen, subsequent encounter|Unspecified injury of spleen, subsequent encounter +C2839067|T037|AB|S36.00XD|ICD10CM|Unspecified injury of spleen, subsequent encounter|Unspecified injury of spleen, subsequent encounter +C2839068|T037|PT|S36.00XS|ICD10CM|Unspecified injury of spleen, sequela|Unspecified injury of spleen, sequela +C2839068|T037|AB|S36.00XS|ICD10CM|Unspecified injury of spleen, sequela|Unspecified injury of spleen, sequela +C0347635|T037|HT|S36.02|ICD10CM|Contusion of spleen|Contusion of spleen +C0347635|T037|AB|S36.02|ICD10CM|Contusion of spleen|Contusion of spleen +C2839069|T037|ET|S36.020|ICD10CM|Contusion of spleen less than 2 cm|Contusion of spleen less than 2 cm +C2839070|T037|AB|S36.020|ICD10CM|Minor contusion of spleen|Minor contusion of spleen +C2839070|T037|HT|S36.020|ICD10CM|Minor contusion of spleen|Minor contusion of spleen +C2839071|T037|PT|S36.020A|ICD10CM|Minor contusion of spleen, initial encounter|Minor contusion of spleen, initial encounter +C2839071|T037|AB|S36.020A|ICD10CM|Minor contusion of spleen, initial encounter|Minor contusion of spleen, initial encounter +C2839072|T037|PT|S36.020D|ICD10CM|Minor contusion of spleen, subsequent encounter|Minor contusion of spleen, subsequent encounter +C2839072|T037|AB|S36.020D|ICD10CM|Minor contusion of spleen, subsequent encounter|Minor contusion of spleen, subsequent encounter +C2839073|T037|PT|S36.020S|ICD10CM|Minor contusion of spleen, sequela|Minor contusion of spleen, sequela +C2839073|T037|AB|S36.020S|ICD10CM|Minor contusion of spleen, sequela|Minor contusion of spleen, sequela +C2839074|T037|ET|S36.021|ICD10CM|Contusion of spleen greater than 2 cm|Contusion of spleen greater than 2 cm +C2839075|T037|AB|S36.021|ICD10CM|Major contusion of spleen|Major contusion of spleen +C2839075|T037|HT|S36.021|ICD10CM|Major contusion of spleen|Major contusion of spleen +C2839076|T037|PT|S36.021A|ICD10CM|Major contusion of spleen, initial encounter|Major contusion of spleen, initial encounter +C2839076|T037|AB|S36.021A|ICD10CM|Major contusion of spleen, initial encounter|Major contusion of spleen, initial encounter +C2839077|T037|PT|S36.021D|ICD10CM|Major contusion of spleen, subsequent encounter|Major contusion of spleen, subsequent encounter +C2839077|T037|AB|S36.021D|ICD10CM|Major contusion of spleen, subsequent encounter|Major contusion of spleen, subsequent encounter +C2839078|T037|PT|S36.021S|ICD10CM|Major contusion of spleen, sequela|Major contusion of spleen, sequela +C2839078|T037|AB|S36.021S|ICD10CM|Major contusion of spleen, sequela|Major contusion of spleen, sequela +C2839079|T037|AB|S36.029|ICD10CM|Unspecified contusion of spleen|Unspecified contusion of spleen +C2839079|T037|HT|S36.029|ICD10CM|Unspecified contusion of spleen|Unspecified contusion of spleen +C2839080|T037|PT|S36.029A|ICD10CM|Unspecified contusion of spleen, initial encounter|Unspecified contusion of spleen, initial encounter +C2839080|T037|AB|S36.029A|ICD10CM|Unspecified contusion of spleen, initial encounter|Unspecified contusion of spleen, initial encounter +C2839081|T037|PT|S36.029D|ICD10CM|Unspecified contusion of spleen, subsequent encounter|Unspecified contusion of spleen, subsequent encounter +C2839081|T037|AB|S36.029D|ICD10CM|Unspecified contusion of spleen, subsequent encounter|Unspecified contusion of spleen, subsequent encounter +C2839082|T037|PT|S36.029S|ICD10CM|Unspecified contusion of spleen, sequela|Unspecified contusion of spleen, sequela +C2839082|T037|AB|S36.029S|ICD10CM|Unspecified contusion of spleen, sequela|Unspecified contusion of spleen, sequela +C0347636|T037|HT|S36.03|ICD10CM|Laceration of spleen|Laceration of spleen +C0347636|T037|AB|S36.03|ICD10CM|Laceration of spleen|Laceration of spleen +C2839083|T037|ET|S36.030|ICD10CM|Laceration of spleen less than 1 cm|Laceration of spleen less than 1 cm +C2839084|T037|ET|S36.030|ICD10CM|Minor laceration of spleen|Minor laceration of spleen +C2839085|T037|AB|S36.030|ICD10CM|Superficial (capsular) laceration of spleen|Superficial (capsular) laceration of spleen +C2839085|T037|HT|S36.030|ICD10CM|Superficial (capsular) laceration of spleen|Superficial (capsular) laceration of spleen +C2839086|T037|AB|S36.030A|ICD10CM|Superficial (capsular) laceration of spleen, init encntr|Superficial (capsular) laceration of spleen, init encntr +C2839086|T037|PT|S36.030A|ICD10CM|Superficial (capsular) laceration of spleen, initial encounter|Superficial (capsular) laceration of spleen, initial encounter +C2839087|T037|AB|S36.030D|ICD10CM|Superficial (capsular) laceration of spleen, subs encntr|Superficial (capsular) laceration of spleen, subs encntr +C2839087|T037|PT|S36.030D|ICD10CM|Superficial (capsular) laceration of spleen, subsequent encounter|Superficial (capsular) laceration of spleen, subsequent encounter +C2839088|T037|AB|S36.030S|ICD10CM|Superficial (capsular) laceration of spleen, sequela|Superficial (capsular) laceration of spleen, sequela +C2839088|T037|PT|S36.030S|ICD10CM|Superficial (capsular) laceration of spleen, sequela|Superficial (capsular) laceration of spleen, sequela +C2839089|T037|ET|S36.031|ICD10CM|Laceration of spleen 1 to 3 cm|Laceration of spleen 1 to 3 cm +C2839090|T037|HT|S36.031|ICD10CM|Moderate laceration of spleen|Moderate laceration of spleen +C2839090|T037|AB|S36.031|ICD10CM|Moderate laceration of spleen|Moderate laceration of spleen +C2839091|T037|PT|S36.031A|ICD10CM|Moderate laceration of spleen, initial encounter|Moderate laceration of spleen, initial encounter +C2839091|T037|AB|S36.031A|ICD10CM|Moderate laceration of spleen, initial encounter|Moderate laceration of spleen, initial encounter +C2839092|T037|PT|S36.031D|ICD10CM|Moderate laceration of spleen, subsequent encounter|Moderate laceration of spleen, subsequent encounter +C2839092|T037|AB|S36.031D|ICD10CM|Moderate laceration of spleen, subsequent encounter|Moderate laceration of spleen, subsequent encounter +C2839093|T037|PT|S36.031S|ICD10CM|Moderate laceration of spleen, sequela|Moderate laceration of spleen, sequela +C2839093|T037|AB|S36.031S|ICD10CM|Moderate laceration of spleen, sequela|Moderate laceration of spleen, sequela +C0434042|T037|ET|S36.032|ICD10CM|Avulsion of spleen|Avulsion of spleen +C2839094|T037|ET|S36.032|ICD10CM|Laceration of spleen greater than 3 cm|Laceration of spleen greater than 3 cm +C2839098|T037|HT|S36.032|ICD10CM|Major laceration of spleen|Major laceration of spleen +C2839098|T037|AB|S36.032|ICD10CM|Major laceration of spleen|Major laceration of spleen +C2839095|T037|ET|S36.032|ICD10CM|Massive laceration of spleen|Massive laceration of spleen +C2839096|T037|ET|S36.032|ICD10CM|Multiple moderate lacerations of spleen|Multiple moderate lacerations of spleen +C2839097|T037|ET|S36.032|ICD10CM|Stellate laceration of spleen|Stellate laceration of spleen +C2839099|T037|PT|S36.032A|ICD10CM|Major laceration of spleen, initial encounter|Major laceration of spleen, initial encounter +C2839099|T037|AB|S36.032A|ICD10CM|Major laceration of spleen, initial encounter|Major laceration of spleen, initial encounter +C2839100|T037|PT|S36.032D|ICD10CM|Major laceration of spleen, subsequent encounter|Major laceration of spleen, subsequent encounter +C2839100|T037|AB|S36.032D|ICD10CM|Major laceration of spleen, subsequent encounter|Major laceration of spleen, subsequent encounter +C2839101|T037|PT|S36.032S|ICD10CM|Major laceration of spleen, sequela|Major laceration of spleen, sequela +C2839101|T037|AB|S36.032S|ICD10CM|Major laceration of spleen, sequela|Major laceration of spleen, sequela +C2839102|T037|AB|S36.039|ICD10CM|Unspecified laceration of spleen|Unspecified laceration of spleen +C2839102|T037|HT|S36.039|ICD10CM|Unspecified laceration of spleen|Unspecified laceration of spleen +C2839103|T037|PT|S36.039A|ICD10CM|Unspecified laceration of spleen, initial encounter|Unspecified laceration of spleen, initial encounter +C2839103|T037|AB|S36.039A|ICD10CM|Unspecified laceration of spleen, initial encounter|Unspecified laceration of spleen, initial encounter +C2839104|T037|PT|S36.039D|ICD10CM|Unspecified laceration of spleen, subsequent encounter|Unspecified laceration of spleen, subsequent encounter +C2839104|T037|AB|S36.039D|ICD10CM|Unspecified laceration of spleen, subsequent encounter|Unspecified laceration of spleen, subsequent encounter +C2839105|T037|PT|S36.039S|ICD10CM|Unspecified laceration of spleen, sequela|Unspecified laceration of spleen, sequela +C2839105|T037|AB|S36.039S|ICD10CM|Unspecified laceration of spleen, sequela|Unspecified laceration of spleen, sequela +C0840538|T037|HT|S36.09|ICD10CM|Other injury of spleen|Other injury of spleen +C0840538|T037|AB|S36.09|ICD10CM|Other injury of spleen|Other injury of spleen +C2839106|T037|PT|S36.09XA|ICD10CM|Other injury of spleen, initial encounter|Other injury of spleen, initial encounter +C2839106|T037|AB|S36.09XA|ICD10CM|Other injury of spleen, initial encounter|Other injury of spleen, initial encounter +C2839107|T037|PT|S36.09XD|ICD10CM|Other injury of spleen, subsequent encounter|Other injury of spleen, subsequent encounter +C2839107|T037|AB|S36.09XD|ICD10CM|Other injury of spleen, subsequent encounter|Other injury of spleen, subsequent encounter +C2839108|T037|PT|S36.09XS|ICD10CM|Other injury of spleen, sequela|Other injury of spleen, sequela +C2839108|T037|AB|S36.09XS|ICD10CM|Other injury of spleen, sequela|Other injury of spleen, sequela +C2839109|T037|AB|S36.1|ICD10CM|Injury of liver and gallbladder and bile duct|Injury of liver and gallbladder and bile duct +C2839109|T037|HT|S36.1|ICD10CM|Injury of liver and gallbladder and bile duct|Injury of liver and gallbladder and bile duct +C0495854|T037|PT|S36.1|ICD10|Injury of liver or gallbladder|Injury of liver or gallbladder +C0160390|T037|HT|S36.11|ICD10CM|Injury of liver|Injury of liver +C0160390|T037|AB|S36.11|ICD10CM|Injury of liver|Injury of liver +C0347632|T037|HT|S36.112|ICD10CM|Contusion of liver|Contusion of liver +C0347632|T037|AB|S36.112|ICD10CM|Contusion of liver|Contusion of liver +C2839110|T037|AB|S36.112A|ICD10CM|Contusion of liver, initial encounter|Contusion of liver, initial encounter +C2839110|T037|PT|S36.112A|ICD10CM|Contusion of liver, initial encounter|Contusion of liver, initial encounter +C2839111|T037|AB|S36.112D|ICD10CM|Contusion of liver, subsequent encounter|Contusion of liver, subsequent encounter +C2839111|T037|PT|S36.112D|ICD10CM|Contusion of liver, subsequent encounter|Contusion of liver, subsequent encounter +C2839112|T037|AB|S36.112S|ICD10CM|Contusion of liver, sequela|Contusion of liver, sequela +C2839112|T037|PT|S36.112S|ICD10CM|Contusion of liver, sequela|Contusion of liver, sequela +C2839113|T037|AB|S36.113|ICD10CM|Laceration of liver, unspecified degree|Laceration of liver, unspecified degree +C2839113|T037|HT|S36.113|ICD10CM|Laceration of liver, unspecified degree|Laceration of liver, unspecified degree +C2839114|T037|AB|S36.113A|ICD10CM|Laceration of liver, unspecified degree, initial encounter|Laceration of liver, unspecified degree, initial encounter +C2839114|T037|PT|S36.113A|ICD10CM|Laceration of liver, unspecified degree, initial encounter|Laceration of liver, unspecified degree, initial encounter +C2839115|T037|AB|S36.113D|ICD10CM|Laceration of liver, unspecified degree, subs encntr|Laceration of liver, unspecified degree, subs encntr +C2839115|T037|PT|S36.113D|ICD10CM|Laceration of liver, unspecified degree, subsequent encounter|Laceration of liver, unspecified degree, subsequent encounter +C2839116|T037|AB|S36.113S|ICD10CM|Laceration of liver, unspecified degree, sequela|Laceration of liver, unspecified degree, sequela +C2839116|T037|PT|S36.113S|ICD10CM|Laceration of liver, unspecified degree, sequela|Laceration of liver, unspecified degree, sequela +C0160394|T037|HT|S36.114|ICD10CM|Minor laceration of liver|Minor laceration of liver +C0160394|T037|AB|S36.114|ICD10CM|Minor laceration of liver|Minor laceration of liver +C2839118|T037|PT|S36.114A|ICD10CM|Minor laceration of liver, initial encounter|Minor laceration of liver, initial encounter +C2839118|T037|AB|S36.114A|ICD10CM|Minor laceration of liver, initial encounter|Minor laceration of liver, initial encounter +C2839119|T037|PT|S36.114D|ICD10CM|Minor laceration of liver, subsequent encounter|Minor laceration of liver, subsequent encounter +C2839119|T037|AB|S36.114D|ICD10CM|Minor laceration of liver, subsequent encounter|Minor laceration of liver, subsequent encounter +C2839120|T037|PT|S36.114S|ICD10CM|Minor laceration of liver, sequela|Minor laceration of liver, sequela +C2839120|T037|AB|S36.114S|ICD10CM|Minor laceration of liver, sequela|Minor laceration of liver, sequela +C2117889|T037|AB|S36.115|ICD10CM|Moderate laceration of liver|Moderate laceration of liver +C2117889|T037|HT|S36.115|ICD10CM|Moderate laceration of liver|Moderate laceration of liver +C2839122|T037|PT|S36.115A|ICD10CM|Moderate laceration of liver, initial encounter|Moderate laceration of liver, initial encounter +C2839122|T037|AB|S36.115A|ICD10CM|Moderate laceration of liver, initial encounter|Moderate laceration of liver, initial encounter +C2839123|T037|PT|S36.115D|ICD10CM|Moderate laceration of liver, subsequent encounter|Moderate laceration of liver, subsequent encounter +C2839123|T037|AB|S36.115D|ICD10CM|Moderate laceration of liver, subsequent encounter|Moderate laceration of liver, subsequent encounter +C2839124|T037|PT|S36.115S|ICD10CM|Moderate laceration of liver, sequela|Moderate laceration of liver, sequela +C2839124|T037|AB|S36.115S|ICD10CM|Moderate laceration of liver, sequela|Moderate laceration of liver, sequela +C3665456|T037|HT|S36.116|ICD10CM|Major laceration of liver|Major laceration of liver +C3665456|T037|AB|S36.116|ICD10CM|Major laceration of liver|Major laceration of liver +C2839126|T037|ET|S36.116|ICD10CM|Multiple moderate lacerations, with or without hematoma|Multiple moderate lacerations, with or without hematoma +C3665353|T037|ET|S36.116|ICD10CM|Stellate laceration of liver|Stellate laceration of liver +C2839127|T037|PT|S36.116A|ICD10CM|Major laceration of liver, initial encounter|Major laceration of liver, initial encounter +C2839127|T037|AB|S36.116A|ICD10CM|Major laceration of liver, initial encounter|Major laceration of liver, initial encounter +C2839128|T037|PT|S36.116D|ICD10CM|Major laceration of liver, subsequent encounter|Major laceration of liver, subsequent encounter +C2839128|T037|AB|S36.116D|ICD10CM|Major laceration of liver, subsequent encounter|Major laceration of liver, subsequent encounter +C2839129|T037|PT|S36.116S|ICD10CM|Major laceration of liver, sequela|Major laceration of liver, sequela +C2839129|T037|AB|S36.116S|ICD10CM|Major laceration of liver, sequela|Major laceration of liver, sequela +C0840545|T037|HT|S36.118|ICD10CM|Other injury of liver|Other injury of liver +C0840545|T037|AB|S36.118|ICD10CM|Other injury of liver|Other injury of liver +C2839130|T037|PT|S36.118A|ICD10CM|Other injury of liver, initial encounter|Other injury of liver, initial encounter +C2839130|T037|AB|S36.118A|ICD10CM|Other injury of liver, initial encounter|Other injury of liver, initial encounter +C2839131|T037|PT|S36.118D|ICD10CM|Other injury of liver, subsequent encounter|Other injury of liver, subsequent encounter +C2839131|T037|AB|S36.118D|ICD10CM|Other injury of liver, subsequent encounter|Other injury of liver, subsequent encounter +C2839132|T037|PT|S36.118S|ICD10CM|Other injury of liver, sequela|Other injury of liver, sequela +C2839132|T037|AB|S36.118S|ICD10CM|Other injury of liver, sequela|Other injury of liver, sequela +C0160390|T037|AB|S36.119|ICD10CM|Unspecified injury of liver|Unspecified injury of liver +C0160390|T037|HT|S36.119|ICD10CM|Unspecified injury of liver|Unspecified injury of liver +C2839133|T037|PT|S36.119A|ICD10CM|Unspecified injury of liver, initial encounter|Unspecified injury of liver, initial encounter +C2839133|T037|AB|S36.119A|ICD10CM|Unspecified injury of liver, initial encounter|Unspecified injury of liver, initial encounter +C2839134|T037|PT|S36.119D|ICD10CM|Unspecified injury of liver, subsequent encounter|Unspecified injury of liver, subsequent encounter +C2839134|T037|AB|S36.119D|ICD10CM|Unspecified injury of liver, subsequent encounter|Unspecified injury of liver, subsequent encounter +C2839135|T037|PT|S36.119S|ICD10CM|Unspecified injury of liver, sequela|Unspecified injury of liver, sequela +C2839135|T037|AB|S36.119S|ICD10CM|Unspecified injury of liver, sequela|Unspecified injury of liver, sequela +C0434028|T037|HT|S36.12|ICD10CM|Injury of gallbladder|Injury of gallbladder +C0434028|T037|AB|S36.12|ICD10CM|Injury of gallbladder|Injury of gallbladder +C0434032|T037|HT|S36.122|ICD10CM|Contusion of gallbladder|Contusion of gallbladder +C0434032|T037|AB|S36.122|ICD10CM|Contusion of gallbladder|Contusion of gallbladder +C2839136|T037|PT|S36.122A|ICD10CM|Contusion of gallbladder, initial encounter|Contusion of gallbladder, initial encounter +C2839136|T037|AB|S36.122A|ICD10CM|Contusion of gallbladder, initial encounter|Contusion of gallbladder, initial encounter +C2839137|T037|PT|S36.122D|ICD10CM|Contusion of gallbladder, subsequent encounter|Contusion of gallbladder, subsequent encounter +C2839137|T037|AB|S36.122D|ICD10CM|Contusion of gallbladder, subsequent encounter|Contusion of gallbladder, subsequent encounter +C2839138|T037|PT|S36.122S|ICD10CM|Contusion of gallbladder, sequela|Contusion of gallbladder, sequela +C2839138|T037|AB|S36.122S|ICD10CM|Contusion of gallbladder, sequela|Contusion of gallbladder, sequela +C0434033|T037|HT|S36.123|ICD10CM|Laceration of gallbladder|Laceration of gallbladder +C0434033|T037|AB|S36.123|ICD10CM|Laceration of gallbladder|Laceration of gallbladder +C2839139|T037|PT|S36.123A|ICD10CM|Laceration of gallbladder, initial encounter|Laceration of gallbladder, initial encounter +C2839139|T037|AB|S36.123A|ICD10CM|Laceration of gallbladder, initial encounter|Laceration of gallbladder, initial encounter +C2839140|T037|PT|S36.123D|ICD10CM|Laceration of gallbladder, subsequent encounter|Laceration of gallbladder, subsequent encounter +C2839140|T037|AB|S36.123D|ICD10CM|Laceration of gallbladder, subsequent encounter|Laceration of gallbladder, subsequent encounter +C2839141|T037|PT|S36.123S|ICD10CM|Laceration of gallbladder, sequela|Laceration of gallbladder, sequela +C2839141|T037|AB|S36.123S|ICD10CM|Laceration of gallbladder, sequela|Laceration of gallbladder, sequela +C2839142|T037|AB|S36.128|ICD10CM|Other injury of gallbladder|Other injury of gallbladder +C2839142|T037|HT|S36.128|ICD10CM|Other injury of gallbladder|Other injury of gallbladder +C2839143|T037|PT|S36.128A|ICD10CM|Other injury of gallbladder, initial encounter|Other injury of gallbladder, initial encounter +C2839143|T037|AB|S36.128A|ICD10CM|Other injury of gallbladder, initial encounter|Other injury of gallbladder, initial encounter +C2839144|T037|PT|S36.128D|ICD10CM|Other injury of gallbladder, subsequent encounter|Other injury of gallbladder, subsequent encounter +C2839144|T037|AB|S36.128D|ICD10CM|Other injury of gallbladder, subsequent encounter|Other injury of gallbladder, subsequent encounter +C2839145|T037|PT|S36.128S|ICD10CM|Other injury of gallbladder, sequela|Other injury of gallbladder, sequela +C2839145|T037|AB|S36.128S|ICD10CM|Other injury of gallbladder, sequela|Other injury of gallbladder, sequela +C2839146|T037|AB|S36.129|ICD10CM|Unspecified injury of gallbladder|Unspecified injury of gallbladder +C2839146|T037|HT|S36.129|ICD10CM|Unspecified injury of gallbladder|Unspecified injury of gallbladder +C2839147|T037|PT|S36.129A|ICD10CM|Unspecified injury of gallbladder, initial encounter|Unspecified injury of gallbladder, initial encounter +C2839147|T037|AB|S36.129A|ICD10CM|Unspecified injury of gallbladder, initial encounter|Unspecified injury of gallbladder, initial encounter +C2839148|T037|PT|S36.129D|ICD10CM|Unspecified injury of gallbladder, subsequent encounter|Unspecified injury of gallbladder, subsequent encounter +C2839148|T037|AB|S36.129D|ICD10CM|Unspecified injury of gallbladder, subsequent encounter|Unspecified injury of gallbladder, subsequent encounter +C2839149|T037|PT|S36.129S|ICD10CM|Unspecified injury of gallbladder, sequela|Unspecified injury of gallbladder, sequela +C2839149|T037|AB|S36.129S|ICD10CM|Unspecified injury of gallbladder, sequela|Unspecified injury of gallbladder, sequela +C0434034|T037|HT|S36.13|ICD10CM|Injury of bile duct|Injury of bile duct +C0434034|T037|AB|S36.13|ICD10CM|Injury of bile duct|Injury of bile duct +C2839150|T037|AB|S36.13XA|ICD10CM|Injury of bile duct, initial encounter|Injury of bile duct, initial encounter +C2839150|T037|PT|S36.13XA|ICD10CM|Injury of bile duct, initial encounter|Injury of bile duct, initial encounter +C2839151|T037|AB|S36.13XD|ICD10CM|Injury of bile duct, subsequent encounter|Injury of bile duct, subsequent encounter +C2839151|T037|PT|S36.13XD|ICD10CM|Injury of bile duct, subsequent encounter|Injury of bile duct, subsequent encounter +C2839152|T037|AB|S36.13XS|ICD10CM|Injury of bile duct, sequela|Injury of bile duct, sequela +C2839152|T037|PT|S36.13XS|ICD10CM|Injury of bile duct, sequela|Injury of bile duct, sequela +C0273163|T037|HT|S36.2|ICD10CM|Injury of pancreas|Injury of pancreas +C0273163|T037|AB|S36.2|ICD10CM|Injury of pancreas|Injury of pancreas +C0273163|T037|PT|S36.2|ICD10|Injury of pancreas|Injury of pancreas +C2839153|T037|AB|S36.20|ICD10CM|Unspecified injury of pancreas|Unspecified injury of pancreas +C2839153|T037|HT|S36.20|ICD10CM|Unspecified injury of pancreas|Unspecified injury of pancreas +C2839154|T037|AB|S36.200|ICD10CM|Unspecified injury of head of pancreas|Unspecified injury of head of pancreas +C2839154|T037|HT|S36.200|ICD10CM|Unspecified injury of head of pancreas|Unspecified injury of head of pancreas +C2839155|T037|PT|S36.200A|ICD10CM|Unspecified injury of head of pancreas, initial encounter|Unspecified injury of head of pancreas, initial encounter +C2839155|T037|AB|S36.200A|ICD10CM|Unspecified injury of head of pancreas, initial encounter|Unspecified injury of head of pancreas, initial encounter +C2839156|T037|AB|S36.200D|ICD10CM|Unspecified injury of head of pancreas, subsequent encounter|Unspecified injury of head of pancreas, subsequent encounter +C2839156|T037|PT|S36.200D|ICD10CM|Unspecified injury of head of pancreas, subsequent encounter|Unspecified injury of head of pancreas, subsequent encounter +C2839157|T037|PT|S36.200S|ICD10CM|Unspecified injury of head of pancreas, sequela|Unspecified injury of head of pancreas, sequela +C2839157|T037|AB|S36.200S|ICD10CM|Unspecified injury of head of pancreas, sequela|Unspecified injury of head of pancreas, sequela +C2839158|T037|AB|S36.201|ICD10CM|Unspecified injury of body of pancreas|Unspecified injury of body of pancreas +C2839158|T037|HT|S36.201|ICD10CM|Unspecified injury of body of pancreas|Unspecified injury of body of pancreas +C2839159|T037|PT|S36.201A|ICD10CM|Unspecified injury of body of pancreas, initial encounter|Unspecified injury of body of pancreas, initial encounter +C2839159|T037|AB|S36.201A|ICD10CM|Unspecified injury of body of pancreas, initial encounter|Unspecified injury of body of pancreas, initial encounter +C2839160|T037|AB|S36.201D|ICD10CM|Unspecified injury of body of pancreas, subsequent encounter|Unspecified injury of body of pancreas, subsequent encounter +C2839160|T037|PT|S36.201D|ICD10CM|Unspecified injury of body of pancreas, subsequent encounter|Unspecified injury of body of pancreas, subsequent encounter +C2839161|T037|PT|S36.201S|ICD10CM|Unspecified injury of body of pancreas, sequela|Unspecified injury of body of pancreas, sequela +C2839161|T037|AB|S36.201S|ICD10CM|Unspecified injury of body of pancreas, sequela|Unspecified injury of body of pancreas, sequela +C2839162|T037|AB|S36.202|ICD10CM|Unspecified injury of tail of pancreas|Unspecified injury of tail of pancreas +C2839162|T037|HT|S36.202|ICD10CM|Unspecified injury of tail of pancreas|Unspecified injury of tail of pancreas +C2839163|T037|PT|S36.202A|ICD10CM|Unspecified injury of tail of pancreas, initial encounter|Unspecified injury of tail of pancreas, initial encounter +C2839163|T037|AB|S36.202A|ICD10CM|Unspecified injury of tail of pancreas, initial encounter|Unspecified injury of tail of pancreas, initial encounter +C2839164|T037|AB|S36.202D|ICD10CM|Unspecified injury of tail of pancreas, subsequent encounter|Unspecified injury of tail of pancreas, subsequent encounter +C2839164|T037|PT|S36.202D|ICD10CM|Unspecified injury of tail of pancreas, subsequent encounter|Unspecified injury of tail of pancreas, subsequent encounter +C2839165|T037|PT|S36.202S|ICD10CM|Unspecified injury of tail of pancreas, sequela|Unspecified injury of tail of pancreas, sequela +C2839165|T037|AB|S36.202S|ICD10CM|Unspecified injury of tail of pancreas, sequela|Unspecified injury of tail of pancreas, sequela +C2839166|T037|AB|S36.209|ICD10CM|Unspecified injury of unspecified part of pancreas|Unspecified injury of unspecified part of pancreas +C2839166|T037|HT|S36.209|ICD10CM|Unspecified injury of unspecified part of pancreas|Unspecified injury of unspecified part of pancreas +C2839167|T037|AB|S36.209A|ICD10CM|Unsp injury of unspecified part of pancreas, init encntr|Unsp injury of unspecified part of pancreas, init encntr +C2839167|T037|PT|S36.209A|ICD10CM|Unspecified injury of unspecified part of pancreas, initial encounter|Unspecified injury of unspecified part of pancreas, initial encounter +C2839168|T037|AB|S36.209D|ICD10CM|Unsp injury of unspecified part of pancreas, subs encntr|Unsp injury of unspecified part of pancreas, subs encntr +C2839168|T037|PT|S36.209D|ICD10CM|Unspecified injury of unspecified part of pancreas, subsequent encounter|Unspecified injury of unspecified part of pancreas, subsequent encounter +C2839169|T037|PT|S36.209S|ICD10CM|Unspecified injury of unspecified part of pancreas, sequela|Unspecified injury of unspecified part of pancreas, sequela +C2839169|T037|AB|S36.209S|ICD10CM|Unspecified injury of unspecified part of pancreas, sequela|Unspecified injury of unspecified part of pancreas, sequela +C0434049|T037|HT|S36.22|ICD10CM|Contusion of pancreas|Contusion of pancreas +C0434049|T037|AB|S36.22|ICD10CM|Contusion of pancreas|Contusion of pancreas +C2839170|T037|AB|S36.220|ICD10CM|Contusion of head of pancreas|Contusion of head of pancreas +C2839170|T037|HT|S36.220|ICD10CM|Contusion of head of pancreas|Contusion of head of pancreas +C2839171|T037|AB|S36.220A|ICD10CM|Contusion of head of pancreas, initial encounter|Contusion of head of pancreas, initial encounter +C2839171|T037|PT|S36.220A|ICD10CM|Contusion of head of pancreas, initial encounter|Contusion of head of pancreas, initial encounter +C2839172|T037|AB|S36.220D|ICD10CM|Contusion of head of pancreas, subsequent encounter|Contusion of head of pancreas, subsequent encounter +C2839172|T037|PT|S36.220D|ICD10CM|Contusion of head of pancreas, subsequent encounter|Contusion of head of pancreas, subsequent encounter +C2839173|T037|AB|S36.220S|ICD10CM|Contusion of head of pancreas, sequela|Contusion of head of pancreas, sequela +C2839173|T037|PT|S36.220S|ICD10CM|Contusion of head of pancreas, sequela|Contusion of head of pancreas, sequela +C2839174|T037|AB|S36.221|ICD10CM|Contusion of body of pancreas|Contusion of body of pancreas +C2839174|T037|HT|S36.221|ICD10CM|Contusion of body of pancreas|Contusion of body of pancreas +C2839175|T037|AB|S36.221A|ICD10CM|Contusion of body of pancreas, initial encounter|Contusion of body of pancreas, initial encounter +C2839175|T037|PT|S36.221A|ICD10CM|Contusion of body of pancreas, initial encounter|Contusion of body of pancreas, initial encounter +C2839176|T037|AB|S36.221D|ICD10CM|Contusion of body of pancreas, subsequent encounter|Contusion of body of pancreas, subsequent encounter +C2839176|T037|PT|S36.221D|ICD10CM|Contusion of body of pancreas, subsequent encounter|Contusion of body of pancreas, subsequent encounter +C2839177|T037|AB|S36.221S|ICD10CM|Contusion of body of pancreas, sequela|Contusion of body of pancreas, sequela +C2839177|T037|PT|S36.221S|ICD10CM|Contusion of body of pancreas, sequela|Contusion of body of pancreas, sequela +C2839178|T037|AB|S36.222|ICD10CM|Contusion of tail of pancreas|Contusion of tail of pancreas +C2839178|T037|HT|S36.222|ICD10CM|Contusion of tail of pancreas|Contusion of tail of pancreas +C2839179|T037|AB|S36.222A|ICD10CM|Contusion of tail of pancreas, initial encounter|Contusion of tail of pancreas, initial encounter +C2839179|T037|PT|S36.222A|ICD10CM|Contusion of tail of pancreas, initial encounter|Contusion of tail of pancreas, initial encounter +C2839180|T037|AB|S36.222D|ICD10CM|Contusion of tail of pancreas, subsequent encounter|Contusion of tail of pancreas, subsequent encounter +C2839180|T037|PT|S36.222D|ICD10CM|Contusion of tail of pancreas, subsequent encounter|Contusion of tail of pancreas, subsequent encounter +C2839181|T037|AB|S36.222S|ICD10CM|Contusion of tail of pancreas, sequela|Contusion of tail of pancreas, sequela +C2839181|T037|PT|S36.222S|ICD10CM|Contusion of tail of pancreas, sequela|Contusion of tail of pancreas, sequela +C2839182|T037|AB|S36.229|ICD10CM|Contusion of unspecified part of pancreas|Contusion of unspecified part of pancreas +C2839182|T037|HT|S36.229|ICD10CM|Contusion of unspecified part of pancreas|Contusion of unspecified part of pancreas +C2839183|T037|AB|S36.229A|ICD10CM|Contusion of unspecified part of pancreas, initial encounter|Contusion of unspecified part of pancreas, initial encounter +C2839183|T037|PT|S36.229A|ICD10CM|Contusion of unspecified part of pancreas, initial encounter|Contusion of unspecified part of pancreas, initial encounter +C2839184|T037|AB|S36.229D|ICD10CM|Contusion of unspecified part of pancreas, subs encntr|Contusion of unspecified part of pancreas, subs encntr +C2839184|T037|PT|S36.229D|ICD10CM|Contusion of unspecified part of pancreas, subsequent encounter|Contusion of unspecified part of pancreas, subsequent encounter +C2839185|T037|AB|S36.229S|ICD10CM|Contusion of unspecified part of pancreas, sequela|Contusion of unspecified part of pancreas, sequela +C2839185|T037|PT|S36.229S|ICD10CM|Contusion of unspecified part of pancreas, sequela|Contusion of unspecified part of pancreas, sequela +C2839186|T037|AB|S36.23|ICD10CM|Laceration of pancreas, unspecified degree|Laceration of pancreas, unspecified degree +C2839186|T037|HT|S36.23|ICD10CM|Laceration of pancreas, unspecified degree|Laceration of pancreas, unspecified degree +C2839187|T037|AB|S36.230|ICD10CM|Laceration of head of pancreas, unspecified degree|Laceration of head of pancreas, unspecified degree +C2839187|T037|HT|S36.230|ICD10CM|Laceration of head of pancreas, unspecified degree|Laceration of head of pancreas, unspecified degree +C2839188|T037|AB|S36.230A|ICD10CM|Laceration of head of pancreas, unsp degree, init encntr|Laceration of head of pancreas, unsp degree, init encntr +C2839188|T037|PT|S36.230A|ICD10CM|Laceration of head of pancreas, unspecified degree, initial encounter|Laceration of head of pancreas, unspecified degree, initial encounter +C2839189|T037|AB|S36.230D|ICD10CM|Laceration of head of pancreas, unsp degree, subs encntr|Laceration of head of pancreas, unsp degree, subs encntr +C2839189|T037|PT|S36.230D|ICD10CM|Laceration of head of pancreas, unspecified degree, subsequent encounter|Laceration of head of pancreas, unspecified degree, subsequent encounter +C2839190|T037|AB|S36.230S|ICD10CM|Laceration of head of pancreas, unspecified degree, sequela|Laceration of head of pancreas, unspecified degree, sequela +C2839190|T037|PT|S36.230S|ICD10CM|Laceration of head of pancreas, unspecified degree, sequela|Laceration of head of pancreas, unspecified degree, sequela +C2839191|T037|AB|S36.231|ICD10CM|Laceration of body of pancreas, unspecified degree|Laceration of body of pancreas, unspecified degree +C2839191|T037|HT|S36.231|ICD10CM|Laceration of body of pancreas, unspecified degree|Laceration of body of pancreas, unspecified degree +C2839192|T037|AB|S36.231A|ICD10CM|Laceration of body of pancreas, unsp degree, init encntr|Laceration of body of pancreas, unsp degree, init encntr +C2839192|T037|PT|S36.231A|ICD10CM|Laceration of body of pancreas, unspecified degree, initial encounter|Laceration of body of pancreas, unspecified degree, initial encounter +C2839193|T037|AB|S36.231D|ICD10CM|Laceration of body of pancreas, unsp degree, subs encntr|Laceration of body of pancreas, unsp degree, subs encntr +C2839193|T037|PT|S36.231D|ICD10CM|Laceration of body of pancreas, unspecified degree, subsequent encounter|Laceration of body of pancreas, unspecified degree, subsequent encounter +C2839194|T037|AB|S36.231S|ICD10CM|Laceration of body of pancreas, unspecified degree, sequela|Laceration of body of pancreas, unspecified degree, sequela +C2839194|T037|PT|S36.231S|ICD10CM|Laceration of body of pancreas, unspecified degree, sequela|Laceration of body of pancreas, unspecified degree, sequela +C2839195|T037|AB|S36.232|ICD10CM|Laceration of tail of pancreas, unspecified degree|Laceration of tail of pancreas, unspecified degree +C2839195|T037|HT|S36.232|ICD10CM|Laceration of tail of pancreas, unspecified degree|Laceration of tail of pancreas, unspecified degree +C2839196|T037|AB|S36.232A|ICD10CM|Laceration of tail of pancreas, unsp degree, init encntr|Laceration of tail of pancreas, unsp degree, init encntr +C2839196|T037|PT|S36.232A|ICD10CM|Laceration of tail of pancreas, unspecified degree, initial encounter|Laceration of tail of pancreas, unspecified degree, initial encounter +C2839197|T037|AB|S36.232D|ICD10CM|Laceration of tail of pancreas, unsp degree, subs encntr|Laceration of tail of pancreas, unsp degree, subs encntr +C2839197|T037|PT|S36.232D|ICD10CM|Laceration of tail of pancreas, unspecified degree, subsequent encounter|Laceration of tail of pancreas, unspecified degree, subsequent encounter +C2839198|T037|AB|S36.232S|ICD10CM|Laceration of tail of pancreas, unspecified degree, sequela|Laceration of tail of pancreas, unspecified degree, sequela +C2839198|T037|PT|S36.232S|ICD10CM|Laceration of tail of pancreas, unspecified degree, sequela|Laceration of tail of pancreas, unspecified degree, sequela +C2839199|T037|AB|S36.239|ICD10CM|Laceration of unsp part of pancreas, unspecified degree|Laceration of unsp part of pancreas, unspecified degree +C2839199|T037|HT|S36.239|ICD10CM|Laceration of unspecified part of pancreas, unspecified degree|Laceration of unspecified part of pancreas, unspecified degree +C2839200|T037|AB|S36.239A|ICD10CM|Laceration of unsp part of pancreas, unsp degree, init|Laceration of unsp part of pancreas, unsp degree, init +C2839200|T037|PT|S36.239A|ICD10CM|Laceration of unspecified part of pancreas, unspecified degree, initial encounter|Laceration of unspecified part of pancreas, unspecified degree, initial encounter +C2839201|T037|AB|S36.239D|ICD10CM|Laceration of unsp part of pancreas, unsp degree, subs|Laceration of unsp part of pancreas, unsp degree, subs +C2839201|T037|PT|S36.239D|ICD10CM|Laceration of unspecified part of pancreas, unspecified degree, subsequent encounter|Laceration of unspecified part of pancreas, unspecified degree, subsequent encounter +C2839202|T037|AB|S36.239S|ICD10CM|Laceration of unsp part of pancreas, unsp degree, sequela|Laceration of unsp part of pancreas, unsp degree, sequela +C2839202|T037|PT|S36.239S|ICD10CM|Laceration of unspecified part of pancreas, unspecified degree, sequela|Laceration of unspecified part of pancreas, unspecified degree, sequela +C2839203|T037|AB|S36.24|ICD10CM|Minor laceration of pancreas|Minor laceration of pancreas +C2839203|T037|HT|S36.24|ICD10CM|Minor laceration of pancreas|Minor laceration of pancreas +C2839204|T037|AB|S36.240|ICD10CM|Minor laceration of head of pancreas|Minor laceration of head of pancreas +C2839204|T037|HT|S36.240|ICD10CM|Minor laceration of head of pancreas|Minor laceration of head of pancreas +C2839205|T037|PT|S36.240A|ICD10CM|Minor laceration of head of pancreas, initial encounter|Minor laceration of head of pancreas, initial encounter +C2839205|T037|AB|S36.240A|ICD10CM|Minor laceration of head of pancreas, initial encounter|Minor laceration of head of pancreas, initial encounter +C2839206|T037|PT|S36.240D|ICD10CM|Minor laceration of head of pancreas, subsequent encounter|Minor laceration of head of pancreas, subsequent encounter +C2839206|T037|AB|S36.240D|ICD10CM|Minor laceration of head of pancreas, subsequent encounter|Minor laceration of head of pancreas, subsequent encounter +C2839207|T037|PT|S36.240S|ICD10CM|Minor laceration of head of pancreas, sequela|Minor laceration of head of pancreas, sequela +C2839207|T037|AB|S36.240S|ICD10CM|Minor laceration of head of pancreas, sequela|Minor laceration of head of pancreas, sequela +C2839208|T037|AB|S36.241|ICD10CM|Minor laceration of body of pancreas|Minor laceration of body of pancreas +C2839208|T037|HT|S36.241|ICD10CM|Minor laceration of body of pancreas|Minor laceration of body of pancreas +C2839209|T037|PT|S36.241A|ICD10CM|Minor laceration of body of pancreas, initial encounter|Minor laceration of body of pancreas, initial encounter +C2839209|T037|AB|S36.241A|ICD10CM|Minor laceration of body of pancreas, initial encounter|Minor laceration of body of pancreas, initial encounter +C2839210|T037|PT|S36.241D|ICD10CM|Minor laceration of body of pancreas, subsequent encounter|Minor laceration of body of pancreas, subsequent encounter +C2839210|T037|AB|S36.241D|ICD10CM|Minor laceration of body of pancreas, subsequent encounter|Minor laceration of body of pancreas, subsequent encounter +C2839211|T037|PT|S36.241S|ICD10CM|Minor laceration of body of pancreas, sequela|Minor laceration of body of pancreas, sequela +C2839211|T037|AB|S36.241S|ICD10CM|Minor laceration of body of pancreas, sequela|Minor laceration of body of pancreas, sequela +C2839212|T037|AB|S36.242|ICD10CM|Minor laceration of tail of pancreas|Minor laceration of tail of pancreas +C2839212|T037|HT|S36.242|ICD10CM|Minor laceration of tail of pancreas|Minor laceration of tail of pancreas +C2839213|T037|PT|S36.242A|ICD10CM|Minor laceration of tail of pancreas, initial encounter|Minor laceration of tail of pancreas, initial encounter +C2839213|T037|AB|S36.242A|ICD10CM|Minor laceration of tail of pancreas, initial encounter|Minor laceration of tail of pancreas, initial encounter +C2839214|T037|PT|S36.242D|ICD10CM|Minor laceration of tail of pancreas, subsequent encounter|Minor laceration of tail of pancreas, subsequent encounter +C2839214|T037|AB|S36.242D|ICD10CM|Minor laceration of tail of pancreas, subsequent encounter|Minor laceration of tail of pancreas, subsequent encounter +C2839215|T037|PT|S36.242S|ICD10CM|Minor laceration of tail of pancreas, sequela|Minor laceration of tail of pancreas, sequela +C2839215|T037|AB|S36.242S|ICD10CM|Minor laceration of tail of pancreas, sequela|Minor laceration of tail of pancreas, sequela +C2839216|T037|AB|S36.249|ICD10CM|Minor laceration of unspecified part of pancreas|Minor laceration of unspecified part of pancreas +C2839216|T037|HT|S36.249|ICD10CM|Minor laceration of unspecified part of pancreas|Minor laceration of unspecified part of pancreas +C2839217|T037|AB|S36.249A|ICD10CM|Minor laceration of unsp part of pancreas, init encntr|Minor laceration of unsp part of pancreas, init encntr +C2839217|T037|PT|S36.249A|ICD10CM|Minor laceration of unspecified part of pancreas, initial encounter|Minor laceration of unspecified part of pancreas, initial encounter +C2839218|T037|AB|S36.249D|ICD10CM|Minor laceration of unsp part of pancreas, subs encntr|Minor laceration of unsp part of pancreas, subs encntr +C2839218|T037|PT|S36.249D|ICD10CM|Minor laceration of unspecified part of pancreas, subsequent encounter|Minor laceration of unspecified part of pancreas, subsequent encounter +C2839219|T037|PT|S36.249S|ICD10CM|Minor laceration of unspecified part of pancreas, sequela|Minor laceration of unspecified part of pancreas, sequela +C2839219|T037|AB|S36.249S|ICD10CM|Minor laceration of unspecified part of pancreas, sequela|Minor laceration of unspecified part of pancreas, sequela +C2839220|T037|AB|S36.25|ICD10CM|Moderate laceration of pancreas|Moderate laceration of pancreas +C2839220|T037|HT|S36.25|ICD10CM|Moderate laceration of pancreas|Moderate laceration of pancreas +C2839221|T037|AB|S36.250|ICD10CM|Moderate laceration of head of pancreas|Moderate laceration of head of pancreas +C2839221|T037|HT|S36.250|ICD10CM|Moderate laceration of head of pancreas|Moderate laceration of head of pancreas +C2839222|T037|PT|S36.250A|ICD10CM|Moderate laceration of head of pancreas, initial encounter|Moderate laceration of head of pancreas, initial encounter +C2839222|T037|AB|S36.250A|ICD10CM|Moderate laceration of head of pancreas, initial encounter|Moderate laceration of head of pancreas, initial encounter +C2839223|T037|AB|S36.250D|ICD10CM|Moderate laceration of head of pancreas, subs encntr|Moderate laceration of head of pancreas, subs encntr +C2839223|T037|PT|S36.250D|ICD10CM|Moderate laceration of head of pancreas, subsequent encounter|Moderate laceration of head of pancreas, subsequent encounter +C2839224|T037|PT|S36.250S|ICD10CM|Moderate laceration of head of pancreas, sequela|Moderate laceration of head of pancreas, sequela +C2839224|T037|AB|S36.250S|ICD10CM|Moderate laceration of head of pancreas, sequela|Moderate laceration of head of pancreas, sequela +C2839225|T037|AB|S36.251|ICD10CM|Moderate laceration of body of pancreas|Moderate laceration of body of pancreas +C2839225|T037|HT|S36.251|ICD10CM|Moderate laceration of body of pancreas|Moderate laceration of body of pancreas +C2839226|T037|PT|S36.251A|ICD10CM|Moderate laceration of body of pancreas, initial encounter|Moderate laceration of body of pancreas, initial encounter +C2839226|T037|AB|S36.251A|ICD10CM|Moderate laceration of body of pancreas, initial encounter|Moderate laceration of body of pancreas, initial encounter +C2839227|T037|AB|S36.251D|ICD10CM|Moderate laceration of body of pancreas, subs encntr|Moderate laceration of body of pancreas, subs encntr +C2839227|T037|PT|S36.251D|ICD10CM|Moderate laceration of body of pancreas, subsequent encounter|Moderate laceration of body of pancreas, subsequent encounter +C2839228|T037|PT|S36.251S|ICD10CM|Moderate laceration of body of pancreas, sequela|Moderate laceration of body of pancreas, sequela +C2839228|T037|AB|S36.251S|ICD10CM|Moderate laceration of body of pancreas, sequela|Moderate laceration of body of pancreas, sequela +C2839229|T037|AB|S36.252|ICD10CM|Moderate laceration of tail of pancreas|Moderate laceration of tail of pancreas +C2839229|T037|HT|S36.252|ICD10CM|Moderate laceration of tail of pancreas|Moderate laceration of tail of pancreas +C2839230|T037|PT|S36.252A|ICD10CM|Moderate laceration of tail of pancreas, initial encounter|Moderate laceration of tail of pancreas, initial encounter +C2839230|T037|AB|S36.252A|ICD10CM|Moderate laceration of tail of pancreas, initial encounter|Moderate laceration of tail of pancreas, initial encounter +C2839231|T037|AB|S36.252D|ICD10CM|Moderate laceration of tail of pancreas, subs encntr|Moderate laceration of tail of pancreas, subs encntr +C2839231|T037|PT|S36.252D|ICD10CM|Moderate laceration of tail of pancreas, subsequent encounter|Moderate laceration of tail of pancreas, subsequent encounter +C2839232|T037|PT|S36.252S|ICD10CM|Moderate laceration of tail of pancreas, sequela|Moderate laceration of tail of pancreas, sequela +C2839232|T037|AB|S36.252S|ICD10CM|Moderate laceration of tail of pancreas, sequela|Moderate laceration of tail of pancreas, sequela +C2839233|T037|AB|S36.259|ICD10CM|Moderate laceration of unspecified part of pancreas|Moderate laceration of unspecified part of pancreas +C2839233|T037|HT|S36.259|ICD10CM|Moderate laceration of unspecified part of pancreas|Moderate laceration of unspecified part of pancreas +C2839234|T037|AB|S36.259A|ICD10CM|Moderate laceration of unsp part of pancreas, init encntr|Moderate laceration of unsp part of pancreas, init encntr +C2839234|T037|PT|S36.259A|ICD10CM|Moderate laceration of unspecified part of pancreas, initial encounter|Moderate laceration of unspecified part of pancreas, initial encounter +C2839235|T037|AB|S36.259D|ICD10CM|Moderate laceration of unsp part of pancreas, subs encntr|Moderate laceration of unsp part of pancreas, subs encntr +C2839235|T037|PT|S36.259D|ICD10CM|Moderate laceration of unspecified part of pancreas, subsequent encounter|Moderate laceration of unspecified part of pancreas, subsequent encounter +C2839236|T037|AB|S36.259S|ICD10CM|Moderate laceration of unspecified part of pancreas, sequela|Moderate laceration of unspecified part of pancreas, sequela +C2839236|T037|PT|S36.259S|ICD10CM|Moderate laceration of unspecified part of pancreas, sequela|Moderate laceration of unspecified part of pancreas, sequela +C2839237|T037|AB|S36.26|ICD10CM|Major laceration of pancreas|Major laceration of pancreas +C2839237|T037|HT|S36.26|ICD10CM|Major laceration of pancreas|Major laceration of pancreas +C2839238|T037|AB|S36.260|ICD10CM|Major laceration of head of pancreas|Major laceration of head of pancreas +C2839238|T037|HT|S36.260|ICD10CM|Major laceration of head of pancreas|Major laceration of head of pancreas +C2839239|T037|PT|S36.260A|ICD10CM|Major laceration of head of pancreas, initial encounter|Major laceration of head of pancreas, initial encounter +C2839239|T037|AB|S36.260A|ICD10CM|Major laceration of head of pancreas, initial encounter|Major laceration of head of pancreas, initial encounter +C2839240|T037|PT|S36.260D|ICD10CM|Major laceration of head of pancreas, subsequent encounter|Major laceration of head of pancreas, subsequent encounter +C2839240|T037|AB|S36.260D|ICD10CM|Major laceration of head of pancreas, subsequent encounter|Major laceration of head of pancreas, subsequent encounter +C2839241|T037|PT|S36.260S|ICD10CM|Major laceration of head of pancreas, sequela|Major laceration of head of pancreas, sequela +C2839241|T037|AB|S36.260S|ICD10CM|Major laceration of head of pancreas, sequela|Major laceration of head of pancreas, sequela +C2839242|T037|AB|S36.261|ICD10CM|Major laceration of body of pancreas|Major laceration of body of pancreas +C2839242|T037|HT|S36.261|ICD10CM|Major laceration of body of pancreas|Major laceration of body of pancreas +C2839243|T037|PT|S36.261A|ICD10CM|Major laceration of body of pancreas, initial encounter|Major laceration of body of pancreas, initial encounter +C2839243|T037|AB|S36.261A|ICD10CM|Major laceration of body of pancreas, initial encounter|Major laceration of body of pancreas, initial encounter +C2839244|T037|PT|S36.261D|ICD10CM|Major laceration of body of pancreas, subsequent encounter|Major laceration of body of pancreas, subsequent encounter +C2839244|T037|AB|S36.261D|ICD10CM|Major laceration of body of pancreas, subsequent encounter|Major laceration of body of pancreas, subsequent encounter +C2839245|T037|PT|S36.261S|ICD10CM|Major laceration of body of pancreas, sequela|Major laceration of body of pancreas, sequela +C2839245|T037|AB|S36.261S|ICD10CM|Major laceration of body of pancreas, sequela|Major laceration of body of pancreas, sequela +C2839246|T037|AB|S36.262|ICD10CM|Major laceration of tail of pancreas|Major laceration of tail of pancreas +C2839246|T037|HT|S36.262|ICD10CM|Major laceration of tail of pancreas|Major laceration of tail of pancreas +C2839247|T037|PT|S36.262A|ICD10CM|Major laceration of tail of pancreas, initial encounter|Major laceration of tail of pancreas, initial encounter +C2839247|T037|AB|S36.262A|ICD10CM|Major laceration of tail of pancreas, initial encounter|Major laceration of tail of pancreas, initial encounter +C2839248|T037|PT|S36.262D|ICD10CM|Major laceration of tail of pancreas, subsequent encounter|Major laceration of tail of pancreas, subsequent encounter +C2839248|T037|AB|S36.262D|ICD10CM|Major laceration of tail of pancreas, subsequent encounter|Major laceration of tail of pancreas, subsequent encounter +C2839249|T037|PT|S36.262S|ICD10CM|Major laceration of tail of pancreas, sequela|Major laceration of tail of pancreas, sequela +C2839249|T037|AB|S36.262S|ICD10CM|Major laceration of tail of pancreas, sequela|Major laceration of tail of pancreas, sequela +C2839250|T037|AB|S36.269|ICD10CM|Major laceration of unspecified part of pancreas|Major laceration of unspecified part of pancreas +C2839250|T037|HT|S36.269|ICD10CM|Major laceration of unspecified part of pancreas|Major laceration of unspecified part of pancreas +C2839251|T037|AB|S36.269A|ICD10CM|Major laceration of unsp part of pancreas, init encntr|Major laceration of unsp part of pancreas, init encntr +C2839251|T037|PT|S36.269A|ICD10CM|Major laceration of unspecified part of pancreas, initial encounter|Major laceration of unspecified part of pancreas, initial encounter +C2839252|T037|AB|S36.269D|ICD10CM|Major laceration of unsp part of pancreas, subs encntr|Major laceration of unsp part of pancreas, subs encntr +C2839252|T037|PT|S36.269D|ICD10CM|Major laceration of unspecified part of pancreas, subsequent encounter|Major laceration of unspecified part of pancreas, subsequent encounter +C2839253|T037|PT|S36.269S|ICD10CM|Major laceration of unspecified part of pancreas, sequela|Major laceration of unspecified part of pancreas, sequela +C2839253|T037|AB|S36.269S|ICD10CM|Major laceration of unspecified part of pancreas, sequela|Major laceration of unspecified part of pancreas, sequela +C2839254|T037|AB|S36.29|ICD10CM|Other injury of pancreas|Other injury of pancreas +C2839254|T037|HT|S36.29|ICD10CM|Other injury of pancreas|Other injury of pancreas +C2839255|T037|AB|S36.290|ICD10CM|Other injury of head of pancreas|Other injury of head of pancreas +C2839255|T037|HT|S36.290|ICD10CM|Other injury of head of pancreas|Other injury of head of pancreas +C2839256|T037|PT|S36.290A|ICD10CM|Other injury of head of pancreas, initial encounter|Other injury of head of pancreas, initial encounter +C2839256|T037|AB|S36.290A|ICD10CM|Other injury of head of pancreas, initial encounter|Other injury of head of pancreas, initial encounter +C2839257|T037|AB|S36.290D|ICD10CM|Other injury of head of pancreas, subsequent encounter|Other injury of head of pancreas, subsequent encounter +C2839257|T037|PT|S36.290D|ICD10CM|Other injury of head of pancreas, subsequent encounter|Other injury of head of pancreas, subsequent encounter +C2839258|T037|PT|S36.290S|ICD10CM|Other injury of head of pancreas, sequela|Other injury of head of pancreas, sequela +C2839258|T037|AB|S36.290S|ICD10CM|Other injury of head of pancreas, sequela|Other injury of head of pancreas, sequela +C2839259|T037|AB|S36.291|ICD10CM|Other injury of body of pancreas|Other injury of body of pancreas +C2839259|T037|HT|S36.291|ICD10CM|Other injury of body of pancreas|Other injury of body of pancreas +C2839260|T037|PT|S36.291A|ICD10CM|Other injury of body of pancreas, initial encounter|Other injury of body of pancreas, initial encounter +C2839260|T037|AB|S36.291A|ICD10CM|Other injury of body of pancreas, initial encounter|Other injury of body of pancreas, initial encounter +C2839261|T037|AB|S36.291D|ICD10CM|Other injury of body of pancreas, subsequent encounter|Other injury of body of pancreas, subsequent encounter +C2839261|T037|PT|S36.291D|ICD10CM|Other injury of body of pancreas, subsequent encounter|Other injury of body of pancreas, subsequent encounter +C2839262|T037|PT|S36.291S|ICD10CM|Other injury of body of pancreas, sequela|Other injury of body of pancreas, sequela +C2839262|T037|AB|S36.291S|ICD10CM|Other injury of body of pancreas, sequela|Other injury of body of pancreas, sequela +C2839263|T037|AB|S36.292|ICD10CM|Other injury of tail of pancreas|Other injury of tail of pancreas +C2839263|T037|HT|S36.292|ICD10CM|Other injury of tail of pancreas|Other injury of tail of pancreas +C2839264|T037|PT|S36.292A|ICD10CM|Other injury of tail of pancreas, initial encounter|Other injury of tail of pancreas, initial encounter +C2839264|T037|AB|S36.292A|ICD10CM|Other injury of tail of pancreas, initial encounter|Other injury of tail of pancreas, initial encounter +C2839265|T037|AB|S36.292D|ICD10CM|Other injury of tail of pancreas, subsequent encounter|Other injury of tail of pancreas, subsequent encounter +C2839265|T037|PT|S36.292D|ICD10CM|Other injury of tail of pancreas, subsequent encounter|Other injury of tail of pancreas, subsequent encounter +C2839266|T037|PT|S36.292S|ICD10CM|Other injury of tail of pancreas, sequela|Other injury of tail of pancreas, sequela +C2839266|T037|AB|S36.292S|ICD10CM|Other injury of tail of pancreas, sequela|Other injury of tail of pancreas, sequela +C2839267|T037|AB|S36.299|ICD10CM|Other injury of unspecified part of pancreas|Other injury of unspecified part of pancreas +C2839267|T037|HT|S36.299|ICD10CM|Other injury of unspecified part of pancreas|Other injury of unspecified part of pancreas +C2839268|T037|AB|S36.299A|ICD10CM|Other injury of unspecified part of pancreas, init encntr|Other injury of unspecified part of pancreas, init encntr +C2839268|T037|PT|S36.299A|ICD10CM|Other injury of unspecified part of pancreas, initial encounter|Other injury of unspecified part of pancreas, initial encounter +C2839269|T037|AB|S36.299D|ICD10CM|Other injury of unspecified part of pancreas, subs encntr|Other injury of unspecified part of pancreas, subs encntr +C2839269|T037|PT|S36.299D|ICD10CM|Other injury of unspecified part of pancreas, subsequent encounter|Other injury of unspecified part of pancreas, subsequent encounter +C2839270|T037|PT|S36.299S|ICD10CM|Other injury of unspecified part of pancreas, sequela|Other injury of unspecified part of pancreas, sequela +C2839270|T037|AB|S36.299S|ICD10CM|Other injury of unspecified part of pancreas, sequela|Other injury of unspecified part of pancreas, sequela +C0434063|T037|HT|S36.3|ICD10CM|Injury of stomach|Injury of stomach +C0434063|T037|AB|S36.3|ICD10CM|Injury of stomach|Injury of stomach +C0434063|T037|PT|S36.3|ICD10|Injury of stomach|Injury of stomach +C2839271|T037|AB|S36.30|ICD10CM|Unspecified injury of stomach|Unspecified injury of stomach +C2839271|T037|HT|S36.30|ICD10CM|Unspecified injury of stomach|Unspecified injury of stomach +C2839272|T037|PT|S36.30XA|ICD10CM|Unspecified injury of stomach, initial encounter|Unspecified injury of stomach, initial encounter +C2839272|T037|AB|S36.30XA|ICD10CM|Unspecified injury of stomach, initial encounter|Unspecified injury of stomach, initial encounter +C2839273|T037|PT|S36.30XD|ICD10CM|Unspecified injury of stomach, subsequent encounter|Unspecified injury of stomach, subsequent encounter +C2839273|T037|AB|S36.30XD|ICD10CM|Unspecified injury of stomach, subsequent encounter|Unspecified injury of stomach, subsequent encounter +C2839274|T037|PT|S36.30XS|ICD10CM|Unspecified injury of stomach, sequela|Unspecified injury of stomach, sequela +C2839274|T037|AB|S36.30XS|ICD10CM|Unspecified injury of stomach, sequela|Unspecified injury of stomach, sequela +C0434064|T037|HT|S36.32|ICD10CM|Contusion of stomach|Contusion of stomach +C0434064|T037|AB|S36.32|ICD10CM|Contusion of stomach|Contusion of stomach +C2839275|T037|PT|S36.32XA|ICD10CM|Contusion of stomach, initial encounter|Contusion of stomach, initial encounter +C2839275|T037|AB|S36.32XA|ICD10CM|Contusion of stomach, initial encounter|Contusion of stomach, initial encounter +C2839276|T037|PT|S36.32XD|ICD10CM|Contusion of stomach, subsequent encounter|Contusion of stomach, subsequent encounter +C2839276|T037|AB|S36.32XD|ICD10CM|Contusion of stomach, subsequent encounter|Contusion of stomach, subsequent encounter +C2839277|T037|PT|S36.32XS|ICD10CM|Contusion of stomach, sequela|Contusion of stomach, sequela +C2839277|T037|AB|S36.32XS|ICD10CM|Contusion of stomach, sequela|Contusion of stomach, sequela +C0434066|T037|HT|S36.33|ICD10CM|Laceration of stomach|Laceration of stomach +C0434066|T037|AB|S36.33|ICD10CM|Laceration of stomach|Laceration of stomach +C2839278|T037|PT|S36.33XA|ICD10CM|Laceration of stomach, initial encounter|Laceration of stomach, initial encounter +C2839278|T037|AB|S36.33XA|ICD10CM|Laceration of stomach, initial encounter|Laceration of stomach, initial encounter +C2839279|T037|PT|S36.33XD|ICD10CM|Laceration of stomach, subsequent encounter|Laceration of stomach, subsequent encounter +C2839279|T037|AB|S36.33XD|ICD10CM|Laceration of stomach, subsequent encounter|Laceration of stomach, subsequent encounter +C2839280|T037|PT|S36.33XS|ICD10CM|Laceration of stomach, sequela|Laceration of stomach, sequela +C2839280|T037|AB|S36.33XS|ICD10CM|Laceration of stomach, sequela|Laceration of stomach, sequela +C2839281|T037|AB|S36.39|ICD10CM|Other injury of stomach|Other injury of stomach +C2839281|T037|HT|S36.39|ICD10CM|Other injury of stomach|Other injury of stomach +C2839282|T037|PT|S36.39XA|ICD10CM|Other injury of stomach, initial encounter|Other injury of stomach, initial encounter +C2839282|T037|AB|S36.39XA|ICD10CM|Other injury of stomach, initial encounter|Other injury of stomach, initial encounter +C2839283|T037|PT|S36.39XD|ICD10CM|Other injury of stomach, subsequent encounter|Other injury of stomach, subsequent encounter +C2839283|T037|AB|S36.39XD|ICD10CM|Other injury of stomach, subsequent encounter|Other injury of stomach, subsequent encounter +C2839284|T037|PT|S36.39XS|ICD10CM|Other injury of stomach, sequela|Other injury of stomach, sequela +C2839284|T037|AB|S36.39XS|ICD10CM|Other injury of stomach, sequela|Other injury of stomach, sequela +C0434077|T037|HT|S36.4|ICD10CM|Injury of small intestine|Injury of small intestine +C0434077|T037|AB|S36.4|ICD10CM|Injury of small intestine|Injury of small intestine +C0434077|T037|PT|S36.4|ICD10|Injury of small intestine|Injury of small intestine +C2839285|T037|AB|S36.40|ICD10CM|Unspecified injury of small intestine|Unspecified injury of small intestine +C2839285|T037|HT|S36.40|ICD10CM|Unspecified injury of small intestine|Unspecified injury of small intestine +C2839286|T037|AB|S36.400|ICD10CM|Unspecified injury of duodenum|Unspecified injury of duodenum +C2839286|T037|HT|S36.400|ICD10CM|Unspecified injury of duodenum|Unspecified injury of duodenum +C2839287|T037|PT|S36.400A|ICD10CM|Unspecified injury of duodenum, initial encounter|Unspecified injury of duodenum, initial encounter +C2839287|T037|AB|S36.400A|ICD10CM|Unspecified injury of duodenum, initial encounter|Unspecified injury of duodenum, initial encounter +C2839288|T037|PT|S36.400D|ICD10CM|Unspecified injury of duodenum, subsequent encounter|Unspecified injury of duodenum, subsequent encounter +C2839288|T037|AB|S36.400D|ICD10CM|Unspecified injury of duodenum, subsequent encounter|Unspecified injury of duodenum, subsequent encounter +C2839289|T037|PT|S36.400S|ICD10CM|Unspecified injury of duodenum, sequela|Unspecified injury of duodenum, sequela +C2839289|T037|AB|S36.400S|ICD10CM|Unspecified injury of duodenum, sequela|Unspecified injury of duodenum, sequela +C2839290|T037|AB|S36.408|ICD10CM|Unspecified injury of other part of small intestine|Unspecified injury of other part of small intestine +C2839290|T037|HT|S36.408|ICD10CM|Unspecified injury of other part of small intestine|Unspecified injury of other part of small intestine +C2839291|T037|AB|S36.408A|ICD10CM|Unsp injury of other part of small intestine, init encntr|Unsp injury of other part of small intestine, init encntr +C2839291|T037|PT|S36.408A|ICD10CM|Unspecified injury of other part of small intestine, initial encounter|Unspecified injury of other part of small intestine, initial encounter +C2839292|T037|AB|S36.408D|ICD10CM|Unsp injury of other part of small intestine, subs encntr|Unsp injury of other part of small intestine, subs encntr +C2839292|T037|PT|S36.408D|ICD10CM|Unspecified injury of other part of small intestine, subsequent encounter|Unspecified injury of other part of small intestine, subsequent encounter +C2839293|T037|AB|S36.408S|ICD10CM|Unspecified injury of other part of small intestine, sequela|Unspecified injury of other part of small intestine, sequela +C2839293|T037|PT|S36.408S|ICD10CM|Unspecified injury of other part of small intestine, sequela|Unspecified injury of other part of small intestine, sequela +C2839294|T037|AB|S36.409|ICD10CM|Unspecified injury of unspecified part of small intestine|Unspecified injury of unspecified part of small intestine +C2839294|T037|HT|S36.409|ICD10CM|Unspecified injury of unspecified part of small intestine|Unspecified injury of unspecified part of small intestine +C2839295|T037|AB|S36.409A|ICD10CM|Unsp injury of unsp part of small intestine, init encntr|Unsp injury of unsp part of small intestine, init encntr +C2839295|T037|PT|S36.409A|ICD10CM|Unspecified injury of unspecified part of small intestine, initial encounter|Unspecified injury of unspecified part of small intestine, initial encounter +C2839296|T037|AB|S36.409D|ICD10CM|Unsp injury of unsp part of small intestine, subs encntr|Unsp injury of unsp part of small intestine, subs encntr +C2839296|T037|PT|S36.409D|ICD10CM|Unspecified injury of unspecified part of small intestine, subsequent encounter|Unspecified injury of unspecified part of small intestine, subsequent encounter +C2839297|T037|AB|S36.409S|ICD10CM|Unsp injury of unspecified part of small intestine, sequela|Unsp injury of unspecified part of small intestine, sequela +C2839297|T037|PT|S36.409S|ICD10CM|Unspecified injury of unspecified part of small intestine, sequela|Unspecified injury of unspecified part of small intestine, sequela +C2839298|T037|ET|S36.41|ICD10CM|Blast injury of small intestine NOS|Blast injury of small intestine NOS +C2839299|T037|HT|S36.41|ICD10CM|Primary blast injury of small intestine|Primary blast injury of small intestine +C2839299|T037|AB|S36.41|ICD10CM|Primary blast injury of small intestine|Primary blast injury of small intestine +C2839300|T037|HT|S36.410|ICD10CM|Primary blast injury of duodenum|Primary blast injury of duodenum +C2839300|T037|AB|S36.410|ICD10CM|Primary blast injury of duodenum|Primary blast injury of duodenum +C2839301|T037|AB|S36.410A|ICD10CM|Primary blast injury of duodenum, initial encounter|Primary blast injury of duodenum, initial encounter +C2839301|T037|PT|S36.410A|ICD10CM|Primary blast injury of duodenum, initial encounter|Primary blast injury of duodenum, initial encounter +C2839302|T037|AB|S36.410D|ICD10CM|Primary blast injury of duodenum, subsequent encounter|Primary blast injury of duodenum, subsequent encounter +C2839302|T037|PT|S36.410D|ICD10CM|Primary blast injury of duodenum, subsequent encounter|Primary blast injury of duodenum, subsequent encounter +C2839303|T037|AB|S36.410S|ICD10CM|Primary blast injury of duodenum, sequela|Primary blast injury of duodenum, sequela +C2839303|T037|PT|S36.410S|ICD10CM|Primary blast injury of duodenum, sequela|Primary blast injury of duodenum, sequela +C2839304|T037|AB|S36.418|ICD10CM|Primary blast injury of other part of small intestine|Primary blast injury of other part of small intestine +C2839304|T037|HT|S36.418|ICD10CM|Primary blast injury of other part of small intestine|Primary blast injury of other part of small intestine +C2839305|T037|PT|S36.418A|ICD10CM|Primary blast injury of other part of small intestine, initial encounter|Primary blast injury of other part of small intestine, initial encounter +C2839305|T037|AB|S36.418A|ICD10CM|Primary blast injury oth prt small intestine, init encntr|Primary blast injury oth prt small intestine, init encntr +C2839306|T037|PT|S36.418D|ICD10CM|Primary blast injury of other part of small intestine, subsequent encounter|Primary blast injury of other part of small intestine, subsequent encounter +C2839306|T037|AB|S36.418D|ICD10CM|Primary blast injury oth prt small intestine, subs encntr|Primary blast injury oth prt small intestine, subs encntr +C2839307|T037|AB|S36.418S|ICD10CM|Primary blast injury of oth part of small intestine, sequela|Primary blast injury of oth part of small intestine, sequela +C2839307|T037|PT|S36.418S|ICD10CM|Primary blast injury of other part of small intestine, sequela|Primary blast injury of other part of small intestine, sequela +C2839308|T037|AB|S36.419|ICD10CM|Primary blast injury of unspecified part of small intestine|Primary blast injury of unspecified part of small intestine +C2839308|T037|HT|S36.419|ICD10CM|Primary blast injury of unspecified part of small intestine|Primary blast injury of unspecified part of small intestine +C2839309|T037|AB|S36.419A|ICD10CM|Primary blast injury of unsp part of small intestine, init|Primary blast injury of unsp part of small intestine, init +C2839309|T037|PT|S36.419A|ICD10CM|Primary blast injury of unspecified part of small intestine, initial encounter|Primary blast injury of unspecified part of small intestine, initial encounter +C2839310|T037|AB|S36.419D|ICD10CM|Primary blast injury of unsp part of small intestine, subs|Primary blast injury of unsp part of small intestine, subs +C2839310|T037|PT|S36.419D|ICD10CM|Primary blast injury of unspecified part of small intestine, subsequent encounter|Primary blast injury of unspecified part of small intestine, subsequent encounter +C2839311|T037|AB|S36.419S|ICD10CM|Primary blast injury of unsp part of sm int, sequela|Primary blast injury of unsp part of sm int, sequela +C2839311|T037|PT|S36.419S|ICD10CM|Primary blast injury of unspecified part of small intestine, sequela|Primary blast injury of unspecified part of small intestine, sequela +C0434080|T037|HT|S36.42|ICD10CM|Contusion of small intestine|Contusion of small intestine +C0434080|T037|AB|S36.42|ICD10CM|Contusion of small intestine|Contusion of small intestine +C0434070|T037|HT|S36.420|ICD10CM|Contusion of duodenum|Contusion of duodenum +C0434070|T037|AB|S36.420|ICD10CM|Contusion of duodenum|Contusion of duodenum +C2839312|T037|PT|S36.420A|ICD10CM|Contusion of duodenum, initial encounter|Contusion of duodenum, initial encounter +C2839312|T037|AB|S36.420A|ICD10CM|Contusion of duodenum, initial encounter|Contusion of duodenum, initial encounter +C2839313|T037|PT|S36.420D|ICD10CM|Contusion of duodenum, subsequent encounter|Contusion of duodenum, subsequent encounter +C2839313|T037|AB|S36.420D|ICD10CM|Contusion of duodenum, subsequent encounter|Contusion of duodenum, subsequent encounter +C2839314|T037|PT|S36.420S|ICD10CM|Contusion of duodenum, sequela|Contusion of duodenum, sequela +C2839314|T037|AB|S36.420S|ICD10CM|Contusion of duodenum, sequela|Contusion of duodenum, sequela +C2839315|T037|AB|S36.428|ICD10CM|Contusion of other part of small intestine|Contusion of other part of small intestine +C2839315|T037|HT|S36.428|ICD10CM|Contusion of other part of small intestine|Contusion of other part of small intestine +C2839316|T037|AB|S36.428A|ICD10CM|Contusion of other part of small intestine, init encntr|Contusion of other part of small intestine, init encntr +C2839316|T037|PT|S36.428A|ICD10CM|Contusion of other part of small intestine, initial encounter|Contusion of other part of small intestine, initial encounter +C2839317|T037|AB|S36.428D|ICD10CM|Contusion of other part of small intestine, subs encntr|Contusion of other part of small intestine, subs encntr +C2839317|T037|PT|S36.428D|ICD10CM|Contusion of other part of small intestine, subsequent encounter|Contusion of other part of small intestine, subsequent encounter +C2839318|T037|PT|S36.428S|ICD10CM|Contusion of other part of small intestine, sequela|Contusion of other part of small intestine, sequela +C2839318|T037|AB|S36.428S|ICD10CM|Contusion of other part of small intestine, sequela|Contusion of other part of small intestine, sequela +C2839319|T037|AB|S36.429|ICD10CM|Contusion of unspecified part of small intestine|Contusion of unspecified part of small intestine +C2839319|T037|HT|S36.429|ICD10CM|Contusion of unspecified part of small intestine|Contusion of unspecified part of small intestine +C2839320|T037|AB|S36.429A|ICD10CM|Contusion of unsp part of small intestine, init encntr|Contusion of unsp part of small intestine, init encntr +C2839320|T037|PT|S36.429A|ICD10CM|Contusion of unspecified part of small intestine, initial encounter|Contusion of unspecified part of small intestine, initial encounter +C2839321|T037|AB|S36.429D|ICD10CM|Contusion of unsp part of small intestine, subs encntr|Contusion of unsp part of small intestine, subs encntr +C2839321|T037|PT|S36.429D|ICD10CM|Contusion of unspecified part of small intestine, subsequent encounter|Contusion of unspecified part of small intestine, subsequent encounter +C2839322|T037|PT|S36.429S|ICD10CM|Contusion of unspecified part of small intestine, sequela|Contusion of unspecified part of small intestine, sequela +C2839322|T037|AB|S36.429S|ICD10CM|Contusion of unspecified part of small intestine, sequela|Contusion of unspecified part of small intestine, sequela +C0434082|T037|HT|S36.43|ICD10CM|Laceration of small intestine|Laceration of small intestine +C0434082|T037|AB|S36.43|ICD10CM|Laceration of small intestine|Laceration of small intestine +C0434075|T037|HT|S36.430|ICD10CM|Laceration of duodenum|Laceration of duodenum +C0434075|T037|AB|S36.430|ICD10CM|Laceration of duodenum|Laceration of duodenum +C2839323|T037|PT|S36.430A|ICD10CM|Laceration of duodenum, initial encounter|Laceration of duodenum, initial encounter +C2839323|T037|AB|S36.430A|ICD10CM|Laceration of duodenum, initial encounter|Laceration of duodenum, initial encounter +C2839324|T037|PT|S36.430D|ICD10CM|Laceration of duodenum, subsequent encounter|Laceration of duodenum, subsequent encounter +C2839324|T037|AB|S36.430D|ICD10CM|Laceration of duodenum, subsequent encounter|Laceration of duodenum, subsequent encounter +C2839325|T037|PT|S36.430S|ICD10CM|Laceration of duodenum, sequela|Laceration of duodenum, sequela +C2839325|T037|AB|S36.430S|ICD10CM|Laceration of duodenum, sequela|Laceration of duodenum, sequela +C2839326|T037|AB|S36.438|ICD10CM|Laceration of other part of small intestine|Laceration of other part of small intestine +C2839326|T037|HT|S36.438|ICD10CM|Laceration of other part of small intestine|Laceration of other part of small intestine +C2839327|T037|AB|S36.438A|ICD10CM|Laceration of other part of small intestine, init encntr|Laceration of other part of small intestine, init encntr +C2839327|T037|PT|S36.438A|ICD10CM|Laceration of other part of small intestine, initial encounter|Laceration of other part of small intestine, initial encounter +C2839328|T037|AB|S36.438D|ICD10CM|Laceration of other part of small intestine, subs encntr|Laceration of other part of small intestine, subs encntr +C2839328|T037|PT|S36.438D|ICD10CM|Laceration of other part of small intestine, subsequent encounter|Laceration of other part of small intestine, subsequent encounter +C2839329|T037|PT|S36.438S|ICD10CM|Laceration of other part of small intestine, sequela|Laceration of other part of small intestine, sequela +C2839329|T037|AB|S36.438S|ICD10CM|Laceration of other part of small intestine, sequela|Laceration of other part of small intestine, sequela +C2839330|T037|AB|S36.439|ICD10CM|Laceration of unspecified part of small intestine|Laceration of unspecified part of small intestine +C2839330|T037|HT|S36.439|ICD10CM|Laceration of unspecified part of small intestine|Laceration of unspecified part of small intestine +C2839331|T037|AB|S36.439A|ICD10CM|Laceration of unsp part of small intestine, init encntr|Laceration of unsp part of small intestine, init encntr +C2839331|T037|PT|S36.439A|ICD10CM|Laceration of unspecified part of small intestine, initial encounter|Laceration of unspecified part of small intestine, initial encounter +C2839332|T037|AB|S36.439D|ICD10CM|Laceration of unsp part of small intestine, subs encntr|Laceration of unsp part of small intestine, subs encntr +C2839332|T037|PT|S36.439D|ICD10CM|Laceration of unspecified part of small intestine, subsequent encounter|Laceration of unspecified part of small intestine, subsequent encounter +C2839333|T037|PT|S36.439S|ICD10CM|Laceration of unspecified part of small intestine, sequela|Laceration of unspecified part of small intestine, sequela +C2839333|T037|AB|S36.439S|ICD10CM|Laceration of unspecified part of small intestine, sequela|Laceration of unspecified part of small intestine, sequela +C2839334|T037|AB|S36.49|ICD10CM|Other injury of small intestine|Other injury of small intestine +C2839334|T037|HT|S36.49|ICD10CM|Other injury of small intestine|Other injury of small intestine +C2839335|T037|AB|S36.490|ICD10CM|Other injury of duodenum|Other injury of duodenum +C2839335|T037|HT|S36.490|ICD10CM|Other injury of duodenum|Other injury of duodenum +C2839336|T037|PT|S36.490A|ICD10CM|Other injury of duodenum, initial encounter|Other injury of duodenum, initial encounter +C2839336|T037|AB|S36.490A|ICD10CM|Other injury of duodenum, initial encounter|Other injury of duodenum, initial encounter +C2839337|T037|PT|S36.490D|ICD10CM|Other injury of duodenum, subsequent encounter|Other injury of duodenum, subsequent encounter +C2839337|T037|AB|S36.490D|ICD10CM|Other injury of duodenum, subsequent encounter|Other injury of duodenum, subsequent encounter +C2839338|T037|PT|S36.490S|ICD10CM|Other injury of duodenum, sequela|Other injury of duodenum, sequela +C2839338|T037|AB|S36.490S|ICD10CM|Other injury of duodenum, sequela|Other injury of duodenum, sequela +C2839339|T037|AB|S36.498|ICD10CM|Other injury of other part of small intestine|Other injury of other part of small intestine +C2839339|T037|HT|S36.498|ICD10CM|Other injury of other part of small intestine|Other injury of other part of small intestine +C2839340|T037|AB|S36.498A|ICD10CM|Other injury of other part of small intestine, init encntr|Other injury of other part of small intestine, init encntr +C2839340|T037|PT|S36.498A|ICD10CM|Other injury of other part of small intestine, initial encounter|Other injury of other part of small intestine, initial encounter +C2839341|T037|AB|S36.498D|ICD10CM|Other injury of other part of small intestine, subs encntr|Other injury of other part of small intestine, subs encntr +C2839341|T037|PT|S36.498D|ICD10CM|Other injury of other part of small intestine, subsequent encounter|Other injury of other part of small intestine, subsequent encounter +C2839342|T037|AB|S36.498S|ICD10CM|Other injury of other part of small intestine, sequela|Other injury of other part of small intestine, sequela +C2839342|T037|PT|S36.498S|ICD10CM|Other injury of other part of small intestine, sequela|Other injury of other part of small intestine, sequela +C2839343|T037|AB|S36.499|ICD10CM|Other injury of unspecified part of small intestine|Other injury of unspecified part of small intestine +C2839343|T037|HT|S36.499|ICD10CM|Other injury of unspecified part of small intestine|Other injury of unspecified part of small intestine +C2839344|T037|AB|S36.499A|ICD10CM|Other injury of unsp part of small intestine, init encntr|Other injury of unsp part of small intestine, init encntr +C2839344|T037|PT|S36.499A|ICD10CM|Other injury of unspecified part of small intestine, initial encounter|Other injury of unspecified part of small intestine, initial encounter +C2839345|T037|AB|S36.499D|ICD10CM|Other injury of unsp part of small intestine, subs encntr|Other injury of unsp part of small intestine, subs encntr +C2839345|T037|PT|S36.499D|ICD10CM|Other injury of unspecified part of small intestine, subsequent encounter|Other injury of unspecified part of small intestine, subsequent encounter +C2839346|T037|AB|S36.499S|ICD10CM|Other injury of unspecified part of small intestine, sequela|Other injury of unspecified part of small intestine, sequela +C2839346|T037|PT|S36.499S|ICD10CM|Other injury of unspecified part of small intestine, sequela|Other injury of unspecified part of small intestine, sequela +C0555307|T037|HT|S36.5|ICD10CM|Injury of colon|Injury of colon +C0555307|T037|AB|S36.5|ICD10CM|Injury of colon|Injury of colon +C0555307|T037|PT|S36.5|ICD10|Injury of colon|Injury of colon +C2839347|T037|AB|S36.50|ICD10CM|Unspecified injury of colon|Unspecified injury of colon +C2839347|T037|HT|S36.50|ICD10CM|Unspecified injury of colon|Unspecified injury of colon +C2839348|T037|AB|S36.500|ICD10CM|Unspecified injury of ascending [right] colon|Unspecified injury of ascending [right] colon +C2839348|T037|HT|S36.500|ICD10CM|Unspecified injury of ascending [right] colon|Unspecified injury of ascending [right] colon +C2839349|T037|PT|S36.500A|ICD10CM|Unspecified injury of ascending [right] colon, initial encounter|Unspecified injury of ascending [right] colon, initial encounter +C2839349|T037|AB|S36.500A|ICD10CM|Unspecified injury of ascending colon, initial encounter|Unspecified injury of ascending colon, initial encounter +C2839350|T037|PT|S36.500D|ICD10CM|Unspecified injury of ascending [right] colon, subsequent encounter|Unspecified injury of ascending [right] colon, subsequent encounter +C2839350|T037|AB|S36.500D|ICD10CM|Unspecified injury of ascending colon, subsequent encounter|Unspecified injury of ascending colon, subsequent encounter +C2839351|T037|PT|S36.500S|ICD10CM|Unspecified injury of ascending [right] colon, sequela|Unspecified injury of ascending [right] colon, sequela +C2839351|T037|AB|S36.500S|ICD10CM|Unspecified injury of ascending [right] colon, sequela|Unspecified injury of ascending [right] colon, sequela +C2839352|T037|AB|S36.501|ICD10CM|Unspecified injury of transverse colon|Unspecified injury of transverse colon +C2839352|T037|HT|S36.501|ICD10CM|Unspecified injury of transverse colon|Unspecified injury of transverse colon +C2839353|T037|PT|S36.501A|ICD10CM|Unspecified injury of transverse colon, initial encounter|Unspecified injury of transverse colon, initial encounter +C2839353|T037|AB|S36.501A|ICD10CM|Unspecified injury of transverse colon, initial encounter|Unspecified injury of transverse colon, initial encounter +C2839354|T037|AB|S36.501D|ICD10CM|Unspecified injury of transverse colon, subsequent encounter|Unspecified injury of transverse colon, subsequent encounter +C2839354|T037|PT|S36.501D|ICD10CM|Unspecified injury of transverse colon, subsequent encounter|Unspecified injury of transverse colon, subsequent encounter +C2839355|T037|PT|S36.501S|ICD10CM|Unspecified injury of transverse colon, sequela|Unspecified injury of transverse colon, sequela +C2839355|T037|AB|S36.501S|ICD10CM|Unspecified injury of transverse colon, sequela|Unspecified injury of transverse colon, sequela +C2839356|T037|AB|S36.502|ICD10CM|Unspecified injury of descending [left] colon|Unspecified injury of descending [left] colon +C2839356|T037|HT|S36.502|ICD10CM|Unspecified injury of descending [left] colon|Unspecified injury of descending [left] colon +C2839357|T037|PT|S36.502A|ICD10CM|Unspecified injury of descending [left] colon, initial encounter|Unspecified injury of descending [left] colon, initial encounter +C2839357|T037|AB|S36.502A|ICD10CM|Unspecified injury of descending colon, initial encounter|Unspecified injury of descending colon, initial encounter +C2839358|T037|PT|S36.502D|ICD10CM|Unspecified injury of descending [left] colon, subsequent encounter|Unspecified injury of descending [left] colon, subsequent encounter +C2839358|T037|AB|S36.502D|ICD10CM|Unspecified injury of descending colon, subsequent encounter|Unspecified injury of descending colon, subsequent encounter +C2839359|T037|PT|S36.502S|ICD10CM|Unspecified injury of descending [left] colon, sequela|Unspecified injury of descending [left] colon, sequela +C2839359|T037|AB|S36.502S|ICD10CM|Unspecified injury of descending [left] colon, sequela|Unspecified injury of descending [left] colon, sequela +C2839360|T037|AB|S36.503|ICD10CM|Unspecified injury of sigmoid colon|Unspecified injury of sigmoid colon +C2839360|T037|HT|S36.503|ICD10CM|Unspecified injury of sigmoid colon|Unspecified injury of sigmoid colon +C2839361|T037|PT|S36.503A|ICD10CM|Unspecified injury of sigmoid colon, initial encounter|Unspecified injury of sigmoid colon, initial encounter +C2839361|T037|AB|S36.503A|ICD10CM|Unspecified injury of sigmoid colon, initial encounter|Unspecified injury of sigmoid colon, initial encounter +C2839362|T037|PT|S36.503D|ICD10CM|Unspecified injury of sigmoid colon, subsequent encounter|Unspecified injury of sigmoid colon, subsequent encounter +C2839362|T037|AB|S36.503D|ICD10CM|Unspecified injury of sigmoid colon, subsequent encounter|Unspecified injury of sigmoid colon, subsequent encounter +C2839363|T037|PT|S36.503S|ICD10CM|Unspecified injury of sigmoid colon, sequela|Unspecified injury of sigmoid colon, sequela +C2839363|T037|AB|S36.503S|ICD10CM|Unspecified injury of sigmoid colon, sequela|Unspecified injury of sigmoid colon, sequela +C2839364|T037|AB|S36.508|ICD10CM|Unspecified injury of other part of colon|Unspecified injury of other part of colon +C2839364|T037|HT|S36.508|ICD10CM|Unspecified injury of other part of colon|Unspecified injury of other part of colon +C2839365|T037|AB|S36.508A|ICD10CM|Unspecified injury of other part of colon, initial encounter|Unspecified injury of other part of colon, initial encounter +C2839365|T037|PT|S36.508A|ICD10CM|Unspecified injury of other part of colon, initial encounter|Unspecified injury of other part of colon, initial encounter +C2839366|T037|AB|S36.508D|ICD10CM|Unspecified injury of other part of colon, subs encntr|Unspecified injury of other part of colon, subs encntr +C2839366|T037|PT|S36.508D|ICD10CM|Unspecified injury of other part of colon, subsequent encounter|Unspecified injury of other part of colon, subsequent encounter +C2839367|T037|PT|S36.508S|ICD10CM|Unspecified injury of other part of colon, sequela|Unspecified injury of other part of colon, sequela +C2839367|T037|AB|S36.508S|ICD10CM|Unspecified injury of other part of colon, sequela|Unspecified injury of other part of colon, sequela +C2839368|T037|AB|S36.509|ICD10CM|Unspecified injury of unspecified part of colon|Unspecified injury of unspecified part of colon +C2839368|T037|HT|S36.509|ICD10CM|Unspecified injury of unspecified part of colon|Unspecified injury of unspecified part of colon +C2839369|T037|AB|S36.509A|ICD10CM|Unspecified injury of unspecified part of colon, init encntr|Unspecified injury of unspecified part of colon, init encntr +C2839369|T037|PT|S36.509A|ICD10CM|Unspecified injury of unspecified part of colon, initial encounter|Unspecified injury of unspecified part of colon, initial encounter +C2839370|T037|AB|S36.509D|ICD10CM|Unspecified injury of unspecified part of colon, subs encntr|Unspecified injury of unspecified part of colon, subs encntr +C2839370|T037|PT|S36.509D|ICD10CM|Unspecified injury of unspecified part of colon, subsequent encounter|Unspecified injury of unspecified part of colon, subsequent encounter +C2839371|T037|PT|S36.509S|ICD10CM|Unspecified injury of unspecified part of colon, sequela|Unspecified injury of unspecified part of colon, sequela +C2839371|T037|AB|S36.509S|ICD10CM|Unspecified injury of unspecified part of colon, sequela|Unspecified injury of unspecified part of colon, sequela +C2839372|T037|ET|S36.51|ICD10CM|Blast injury of colon NOS|Blast injury of colon NOS +C2839373|T037|HT|S36.51|ICD10CM|Primary blast injury of colon|Primary blast injury of colon +C2839373|T037|AB|S36.51|ICD10CM|Primary blast injury of colon|Primary blast injury of colon +C2839374|T037|AB|S36.510|ICD10CM|Primary blast injury of ascending [right] colon|Primary blast injury of ascending [right] colon +C2839374|T037|HT|S36.510|ICD10CM|Primary blast injury of ascending [right] colon|Primary blast injury of ascending [right] colon +C2839375|T037|PT|S36.510A|ICD10CM|Primary blast injury of ascending [right] colon, initial encounter|Primary blast injury of ascending [right] colon, initial encounter +C2839375|T037|AB|S36.510A|ICD10CM|Primary blast injury of ascending colon, initial encounter|Primary blast injury of ascending colon, initial encounter +C2839376|T037|PT|S36.510D|ICD10CM|Primary blast injury of ascending [right] colon, subsequent encounter|Primary blast injury of ascending [right] colon, subsequent encounter +C2839376|T037|AB|S36.510D|ICD10CM|Primary blast injury of ascending colon, subs encntr|Primary blast injury of ascending colon, subs encntr +C2839377|T037|AB|S36.510S|ICD10CM|Primary blast injury of ascending [right] colon, sequela|Primary blast injury of ascending [right] colon, sequela +C2839377|T037|PT|S36.510S|ICD10CM|Primary blast injury of ascending [right] colon, sequela|Primary blast injury of ascending [right] colon, sequela +C2839378|T037|AB|S36.511|ICD10CM|Primary blast injury of transverse colon|Primary blast injury of transverse colon +C2839378|T037|HT|S36.511|ICD10CM|Primary blast injury of transverse colon|Primary blast injury of transverse colon +C2839379|T037|AB|S36.511A|ICD10CM|Primary blast injury of transverse colon, initial encounter|Primary blast injury of transverse colon, initial encounter +C2839379|T037|PT|S36.511A|ICD10CM|Primary blast injury of transverse colon, initial encounter|Primary blast injury of transverse colon, initial encounter +C2839380|T037|AB|S36.511D|ICD10CM|Primary blast injury of transverse colon, subs encntr|Primary blast injury of transverse colon, subs encntr +C2839380|T037|PT|S36.511D|ICD10CM|Primary blast injury of transverse colon, subsequent encounter|Primary blast injury of transverse colon, subsequent encounter +C2839381|T037|AB|S36.511S|ICD10CM|Primary blast injury of transverse colon, sequela|Primary blast injury of transverse colon, sequela +C2839381|T037|PT|S36.511S|ICD10CM|Primary blast injury of transverse colon, sequela|Primary blast injury of transverse colon, sequela +C2839382|T037|AB|S36.512|ICD10CM|Primary blast injury of descending [left] colon|Primary blast injury of descending [left] colon +C2839382|T037|HT|S36.512|ICD10CM|Primary blast injury of descending [left] colon|Primary blast injury of descending [left] colon +C2839383|T037|PT|S36.512A|ICD10CM|Primary blast injury of descending [left] colon, initial encounter|Primary blast injury of descending [left] colon, initial encounter +C2839383|T037|AB|S36.512A|ICD10CM|Primary blast injury of descending colon, initial encounter|Primary blast injury of descending colon, initial encounter +C2839384|T037|PT|S36.512D|ICD10CM|Primary blast injury of descending [left] colon, subsequent encounter|Primary blast injury of descending [left] colon, subsequent encounter +C2839384|T037|AB|S36.512D|ICD10CM|Primary blast injury of descending colon, subs encntr|Primary blast injury of descending colon, subs encntr +C2839385|T037|AB|S36.512S|ICD10CM|Primary blast injury of descending [left] colon, sequela|Primary blast injury of descending [left] colon, sequela +C2839385|T037|PT|S36.512S|ICD10CM|Primary blast injury of descending [left] colon, sequela|Primary blast injury of descending [left] colon, sequela +C2839386|T037|AB|S36.513|ICD10CM|Primary blast injury of sigmoid colon|Primary blast injury of sigmoid colon +C2839386|T037|HT|S36.513|ICD10CM|Primary blast injury of sigmoid colon|Primary blast injury of sigmoid colon +C2839387|T037|AB|S36.513A|ICD10CM|Primary blast injury of sigmoid colon, initial encounter|Primary blast injury of sigmoid colon, initial encounter +C2839387|T037|PT|S36.513A|ICD10CM|Primary blast injury of sigmoid colon, initial encounter|Primary blast injury of sigmoid colon, initial encounter +C2839388|T037|AB|S36.513D|ICD10CM|Primary blast injury of sigmoid colon, subsequent encounter|Primary blast injury of sigmoid colon, subsequent encounter +C2839388|T037|PT|S36.513D|ICD10CM|Primary blast injury of sigmoid colon, subsequent encounter|Primary blast injury of sigmoid colon, subsequent encounter +C2839389|T037|AB|S36.513S|ICD10CM|Primary blast injury of sigmoid colon, sequela|Primary blast injury of sigmoid colon, sequela +C2839389|T037|PT|S36.513S|ICD10CM|Primary blast injury of sigmoid colon, sequela|Primary blast injury of sigmoid colon, sequela +C2839390|T037|AB|S36.518|ICD10CM|Primary blast injury of other part of colon|Primary blast injury of other part of colon +C2839390|T037|HT|S36.518|ICD10CM|Primary blast injury of other part of colon|Primary blast injury of other part of colon +C2839391|T037|AB|S36.518A|ICD10CM|Primary blast injury of other part of colon, init encntr|Primary blast injury of other part of colon, init encntr +C2839391|T037|PT|S36.518A|ICD10CM|Primary blast injury of other part of colon, initial encounter|Primary blast injury of other part of colon, initial encounter +C2839392|T037|AB|S36.518D|ICD10CM|Primary blast injury of other part of colon, subs encntr|Primary blast injury of other part of colon, subs encntr +C2839392|T037|PT|S36.518D|ICD10CM|Primary blast injury of other part of colon, subsequent encounter|Primary blast injury of other part of colon, subsequent encounter +C2839393|T037|AB|S36.518S|ICD10CM|Primary blast injury of other part of colon, sequela|Primary blast injury of other part of colon, sequela +C2839393|T037|PT|S36.518S|ICD10CM|Primary blast injury of other part of colon, sequela|Primary blast injury of other part of colon, sequela +C2839394|T037|AB|S36.519|ICD10CM|Primary blast injury of unspecified part of colon|Primary blast injury of unspecified part of colon +C2839394|T037|HT|S36.519|ICD10CM|Primary blast injury of unspecified part of colon|Primary blast injury of unspecified part of colon +C2839395|T037|AB|S36.519A|ICD10CM|Primary blast injury of unsp part of colon, init encntr|Primary blast injury of unsp part of colon, init encntr +C2839395|T037|PT|S36.519A|ICD10CM|Primary blast injury of unspecified part of colon, initial encounter|Primary blast injury of unspecified part of colon, initial encounter +C2839396|T037|AB|S36.519D|ICD10CM|Primary blast injury of unsp part of colon, subs encntr|Primary blast injury of unsp part of colon, subs encntr +C2839396|T037|PT|S36.519D|ICD10CM|Primary blast injury of unspecified part of colon, subsequent encounter|Primary blast injury of unspecified part of colon, subsequent encounter +C2839397|T037|AB|S36.519S|ICD10CM|Primary blast injury of unspecified part of colon, sequela|Primary blast injury of unspecified part of colon, sequela +C2839397|T037|PT|S36.519S|ICD10CM|Primary blast injury of unspecified part of colon, sequela|Primary blast injury of unspecified part of colon, sequela +C0434098|T037|HT|S36.52|ICD10CM|Contusion of colon|Contusion of colon +C0434098|T037|AB|S36.52|ICD10CM|Contusion of colon|Contusion of colon +C2839398|T037|AB|S36.520|ICD10CM|Contusion of ascending [right] colon|Contusion of ascending [right] colon +C2839398|T037|HT|S36.520|ICD10CM|Contusion of ascending [right] colon|Contusion of ascending [right] colon +C2839399|T037|PT|S36.520A|ICD10CM|Contusion of ascending [right] colon, initial encounter|Contusion of ascending [right] colon, initial encounter +C2839399|T037|AB|S36.520A|ICD10CM|Contusion of ascending [right] colon, initial encounter|Contusion of ascending [right] colon, initial encounter +C2839400|T037|PT|S36.520D|ICD10CM|Contusion of ascending [right] colon, subsequent encounter|Contusion of ascending [right] colon, subsequent encounter +C2839400|T037|AB|S36.520D|ICD10CM|Contusion of ascending [right] colon, subsequent encounter|Contusion of ascending [right] colon, subsequent encounter +C2839401|T037|PT|S36.520S|ICD10CM|Contusion of ascending [right] colon, sequela|Contusion of ascending [right] colon, sequela +C2839401|T037|AB|S36.520S|ICD10CM|Contusion of ascending [right] colon, sequela|Contusion of ascending [right] colon, sequela +C2839402|T037|AB|S36.521|ICD10CM|Contusion of transverse colon|Contusion of transverse colon +C2839402|T037|HT|S36.521|ICD10CM|Contusion of transverse colon|Contusion of transverse colon +C2839403|T037|PT|S36.521A|ICD10CM|Contusion of transverse colon, initial encounter|Contusion of transverse colon, initial encounter +C2839403|T037|AB|S36.521A|ICD10CM|Contusion of transverse colon, initial encounter|Contusion of transverse colon, initial encounter +C2839404|T037|PT|S36.521D|ICD10CM|Contusion of transverse colon, subsequent encounter|Contusion of transverse colon, subsequent encounter +C2839404|T037|AB|S36.521D|ICD10CM|Contusion of transverse colon, subsequent encounter|Contusion of transverse colon, subsequent encounter +C2839405|T037|PT|S36.521S|ICD10CM|Contusion of transverse colon, sequela|Contusion of transverse colon, sequela +C2839405|T037|AB|S36.521S|ICD10CM|Contusion of transverse colon, sequela|Contusion of transverse colon, sequela +C2839406|T037|AB|S36.522|ICD10CM|Contusion of descending [left] colon|Contusion of descending [left] colon +C2839406|T037|HT|S36.522|ICD10CM|Contusion of descending [left] colon|Contusion of descending [left] colon +C2839407|T037|PT|S36.522A|ICD10CM|Contusion of descending [left] colon, initial encounter|Contusion of descending [left] colon, initial encounter +C2839407|T037|AB|S36.522A|ICD10CM|Contusion of descending [left] colon, initial encounter|Contusion of descending [left] colon, initial encounter +C2839408|T037|PT|S36.522D|ICD10CM|Contusion of descending [left] colon, subsequent encounter|Contusion of descending [left] colon, subsequent encounter +C2839408|T037|AB|S36.522D|ICD10CM|Contusion of descending [left] colon, subsequent encounter|Contusion of descending [left] colon, subsequent encounter +C2839409|T037|PT|S36.522S|ICD10CM|Contusion of descending [left] colon, sequela|Contusion of descending [left] colon, sequela +C2839409|T037|AB|S36.522S|ICD10CM|Contusion of descending [left] colon, sequela|Contusion of descending [left] colon, sequela +C2839410|T037|AB|S36.523|ICD10CM|Contusion of sigmoid colon|Contusion of sigmoid colon +C2839410|T037|HT|S36.523|ICD10CM|Contusion of sigmoid colon|Contusion of sigmoid colon +C2839411|T037|PT|S36.523A|ICD10CM|Contusion of sigmoid colon, initial encounter|Contusion of sigmoid colon, initial encounter +C2839411|T037|AB|S36.523A|ICD10CM|Contusion of sigmoid colon, initial encounter|Contusion of sigmoid colon, initial encounter +C2839412|T037|PT|S36.523D|ICD10CM|Contusion of sigmoid colon, subsequent encounter|Contusion of sigmoid colon, subsequent encounter +C2839412|T037|AB|S36.523D|ICD10CM|Contusion of sigmoid colon, subsequent encounter|Contusion of sigmoid colon, subsequent encounter +C2839413|T037|PT|S36.523S|ICD10CM|Contusion of sigmoid colon, sequela|Contusion of sigmoid colon, sequela +C2839413|T037|AB|S36.523S|ICD10CM|Contusion of sigmoid colon, sequela|Contusion of sigmoid colon, sequela +C2839414|T037|AB|S36.528|ICD10CM|Contusion of other part of colon|Contusion of other part of colon +C2839414|T037|HT|S36.528|ICD10CM|Contusion of other part of colon|Contusion of other part of colon +C2839415|T037|PT|S36.528A|ICD10CM|Contusion of other part of colon, initial encounter|Contusion of other part of colon, initial encounter +C2839415|T037|AB|S36.528A|ICD10CM|Contusion of other part of colon, initial encounter|Contusion of other part of colon, initial encounter +C2839416|T037|PT|S36.528D|ICD10CM|Contusion of other part of colon, subsequent encounter|Contusion of other part of colon, subsequent encounter +C2839416|T037|AB|S36.528D|ICD10CM|Contusion of other part of colon, subsequent encounter|Contusion of other part of colon, subsequent encounter +C2839417|T037|PT|S36.528S|ICD10CM|Contusion of other part of colon, sequela|Contusion of other part of colon, sequela +C2839417|T037|AB|S36.528S|ICD10CM|Contusion of other part of colon, sequela|Contusion of other part of colon, sequela +C2839418|T037|AB|S36.529|ICD10CM|Contusion of unspecified part of colon|Contusion of unspecified part of colon +C2839418|T037|HT|S36.529|ICD10CM|Contusion of unspecified part of colon|Contusion of unspecified part of colon +C2839419|T037|PT|S36.529A|ICD10CM|Contusion of unspecified part of colon, initial encounter|Contusion of unspecified part of colon, initial encounter +C2839419|T037|AB|S36.529A|ICD10CM|Contusion of unspecified part of colon, initial encounter|Contusion of unspecified part of colon, initial encounter +C2839420|T037|AB|S36.529D|ICD10CM|Contusion of unspecified part of colon, subsequent encounter|Contusion of unspecified part of colon, subsequent encounter +C2839420|T037|PT|S36.529D|ICD10CM|Contusion of unspecified part of colon, subsequent encounter|Contusion of unspecified part of colon, subsequent encounter +C2839421|T037|PT|S36.529S|ICD10CM|Contusion of unspecified part of colon, sequela|Contusion of unspecified part of colon, sequela +C2839421|T037|AB|S36.529S|ICD10CM|Contusion of unspecified part of colon, sequela|Contusion of unspecified part of colon, sequela +C0434100|T037|HT|S36.53|ICD10CM|Laceration of colon|Laceration of colon +C0434100|T037|AB|S36.53|ICD10CM|Laceration of colon|Laceration of colon +C2839422|T037|AB|S36.530|ICD10CM|Laceration of ascending [right] colon|Laceration of ascending [right] colon +C2839422|T037|HT|S36.530|ICD10CM|Laceration of ascending [right] colon|Laceration of ascending [right] colon +C2839423|T037|PT|S36.530A|ICD10CM|Laceration of ascending [right] colon, initial encounter|Laceration of ascending [right] colon, initial encounter +C2839423|T037|AB|S36.530A|ICD10CM|Laceration of ascending [right] colon, initial encounter|Laceration of ascending [right] colon, initial encounter +C2839424|T037|PT|S36.530D|ICD10CM|Laceration of ascending [right] colon, subsequent encounter|Laceration of ascending [right] colon, subsequent encounter +C2839424|T037|AB|S36.530D|ICD10CM|Laceration of ascending [right] colon, subsequent encounter|Laceration of ascending [right] colon, subsequent encounter +C2839425|T037|PT|S36.530S|ICD10CM|Laceration of ascending [right] colon, sequela|Laceration of ascending [right] colon, sequela +C2839425|T037|AB|S36.530S|ICD10CM|Laceration of ascending [right] colon, sequela|Laceration of ascending [right] colon, sequela +C2063540|T037|AB|S36.531|ICD10CM|Laceration of transverse colon|Laceration of transverse colon +C2063540|T037|HT|S36.531|ICD10CM|Laceration of transverse colon|Laceration of transverse colon +C2839426|T037|PT|S36.531A|ICD10CM|Laceration of transverse colon, initial encounter|Laceration of transverse colon, initial encounter +C2839426|T037|AB|S36.531A|ICD10CM|Laceration of transverse colon, initial encounter|Laceration of transverse colon, initial encounter +C2839427|T037|PT|S36.531D|ICD10CM|Laceration of transverse colon, subsequent encounter|Laceration of transverse colon, subsequent encounter +C2839427|T037|AB|S36.531D|ICD10CM|Laceration of transverse colon, subsequent encounter|Laceration of transverse colon, subsequent encounter +C2839428|T037|PT|S36.531S|ICD10CM|Laceration of transverse colon, sequela|Laceration of transverse colon, sequela +C2839428|T037|AB|S36.531S|ICD10CM|Laceration of transverse colon, sequela|Laceration of transverse colon, sequela +C2839429|T037|AB|S36.532|ICD10CM|Laceration of descending [left] colon|Laceration of descending [left] colon +C2839429|T037|HT|S36.532|ICD10CM|Laceration of descending [left] colon|Laceration of descending [left] colon +C2839430|T037|PT|S36.532A|ICD10CM|Laceration of descending [left] colon, initial encounter|Laceration of descending [left] colon, initial encounter +C2839430|T037|AB|S36.532A|ICD10CM|Laceration of descending [left] colon, initial encounter|Laceration of descending [left] colon, initial encounter +C2839431|T037|PT|S36.532D|ICD10CM|Laceration of descending [left] colon, subsequent encounter|Laceration of descending [left] colon, subsequent encounter +C2839431|T037|AB|S36.532D|ICD10CM|Laceration of descending [left] colon, subsequent encounter|Laceration of descending [left] colon, subsequent encounter +C2839432|T037|PT|S36.532S|ICD10CM|Laceration of descending [left] colon, sequela|Laceration of descending [left] colon, sequela +C2839432|T037|AB|S36.532S|ICD10CM|Laceration of descending [left] colon, sequela|Laceration of descending [left] colon, sequela +C2063542|T037|HT|S36.533|ICD10CM|Laceration of sigmoid colon|Laceration of sigmoid colon +C2063542|T037|AB|S36.533|ICD10CM|Laceration of sigmoid colon|Laceration of sigmoid colon +C2839433|T037|PT|S36.533A|ICD10CM|Laceration of sigmoid colon, initial encounter|Laceration of sigmoid colon, initial encounter +C2839433|T037|AB|S36.533A|ICD10CM|Laceration of sigmoid colon, initial encounter|Laceration of sigmoid colon, initial encounter +C2839434|T037|PT|S36.533D|ICD10CM|Laceration of sigmoid colon, subsequent encounter|Laceration of sigmoid colon, subsequent encounter +C2839434|T037|AB|S36.533D|ICD10CM|Laceration of sigmoid colon, subsequent encounter|Laceration of sigmoid colon, subsequent encounter +C2839435|T037|PT|S36.533S|ICD10CM|Laceration of sigmoid colon, sequela|Laceration of sigmoid colon, sequela +C2839435|T037|AB|S36.533S|ICD10CM|Laceration of sigmoid colon, sequela|Laceration of sigmoid colon, sequela +C2839436|T037|AB|S36.538|ICD10CM|Laceration of other part of colon|Laceration of other part of colon +C2839436|T037|HT|S36.538|ICD10CM|Laceration of other part of colon|Laceration of other part of colon +C2839437|T037|PT|S36.538A|ICD10CM|Laceration of other part of colon, initial encounter|Laceration of other part of colon, initial encounter +C2839437|T037|AB|S36.538A|ICD10CM|Laceration of other part of colon, initial encounter|Laceration of other part of colon, initial encounter +C2839438|T037|PT|S36.538D|ICD10CM|Laceration of other part of colon, subsequent encounter|Laceration of other part of colon, subsequent encounter +C2839438|T037|AB|S36.538D|ICD10CM|Laceration of other part of colon, subsequent encounter|Laceration of other part of colon, subsequent encounter +C2839439|T037|PT|S36.538S|ICD10CM|Laceration of other part of colon, sequela|Laceration of other part of colon, sequela +C2839439|T037|AB|S36.538S|ICD10CM|Laceration of other part of colon, sequela|Laceration of other part of colon, sequela +C2839440|T037|AB|S36.539|ICD10CM|Laceration of unspecified part of colon|Laceration of unspecified part of colon +C2839440|T037|HT|S36.539|ICD10CM|Laceration of unspecified part of colon|Laceration of unspecified part of colon +C2839441|T037|PT|S36.539A|ICD10CM|Laceration of unspecified part of colon, initial encounter|Laceration of unspecified part of colon, initial encounter +C2839441|T037|AB|S36.539A|ICD10CM|Laceration of unspecified part of colon, initial encounter|Laceration of unspecified part of colon, initial encounter +C2839442|T037|AB|S36.539D|ICD10CM|Laceration of unspecified part of colon, subs encntr|Laceration of unspecified part of colon, subs encntr +C2839442|T037|PT|S36.539D|ICD10CM|Laceration of unspecified part of colon, subsequent encounter|Laceration of unspecified part of colon, subsequent encounter +C2839443|T037|PT|S36.539S|ICD10CM|Laceration of unspecified part of colon, sequela|Laceration of unspecified part of colon, sequela +C2839443|T037|AB|S36.539S|ICD10CM|Laceration of unspecified part of colon, sequela|Laceration of unspecified part of colon, sequela +C2839445|T037|AB|S36.59|ICD10CM|Other injury of colon|Other injury of colon +C2839445|T037|HT|S36.59|ICD10CM|Other injury of colon|Other injury of colon +C2839444|T037|ET|S36.59|ICD10CM|Secondary blast injury of colon|Secondary blast injury of colon +C2839446|T037|AB|S36.590|ICD10CM|Other injury of ascending [right] colon|Other injury of ascending [right] colon +C2839446|T037|HT|S36.590|ICD10CM|Other injury of ascending [right] colon|Other injury of ascending [right] colon +C2839447|T037|PT|S36.590A|ICD10CM|Other injury of ascending [right] colon, initial encounter|Other injury of ascending [right] colon, initial encounter +C2839447|T037|AB|S36.590A|ICD10CM|Other injury of ascending [right] colon, initial encounter|Other injury of ascending [right] colon, initial encounter +C2839448|T037|PT|S36.590D|ICD10CM|Other injury of ascending [right] colon, subsequent encounter|Other injury of ascending [right] colon, subsequent encounter +C2839448|T037|AB|S36.590D|ICD10CM|Other injury of ascending colon, subsequent encounter|Other injury of ascending colon, subsequent encounter +C2839449|T037|PT|S36.590S|ICD10CM|Other injury of ascending [right] colon, sequela|Other injury of ascending [right] colon, sequela +C2839449|T037|AB|S36.590S|ICD10CM|Other injury of ascending [right] colon, sequela|Other injury of ascending [right] colon, sequela +C2839450|T037|AB|S36.591|ICD10CM|Other injury of transverse colon|Other injury of transverse colon +C2839450|T037|HT|S36.591|ICD10CM|Other injury of transverse colon|Other injury of transverse colon +C2839451|T037|PT|S36.591A|ICD10CM|Other injury of transverse colon, initial encounter|Other injury of transverse colon, initial encounter +C2839451|T037|AB|S36.591A|ICD10CM|Other injury of transverse colon, initial encounter|Other injury of transverse colon, initial encounter +C2839452|T037|AB|S36.591D|ICD10CM|Other injury of transverse colon, subsequent encounter|Other injury of transverse colon, subsequent encounter +C2839452|T037|PT|S36.591D|ICD10CM|Other injury of transverse colon, subsequent encounter|Other injury of transverse colon, subsequent encounter +C2839453|T037|PT|S36.591S|ICD10CM|Other injury of transverse colon, sequela|Other injury of transverse colon, sequela +C2839453|T037|AB|S36.591S|ICD10CM|Other injury of transverse colon, sequela|Other injury of transverse colon, sequela +C2839454|T037|AB|S36.592|ICD10CM|Other injury of descending [left] colon|Other injury of descending [left] colon +C2839454|T037|HT|S36.592|ICD10CM|Other injury of descending [left] colon|Other injury of descending [left] colon +C2839455|T037|PT|S36.592A|ICD10CM|Other injury of descending [left] colon, initial encounter|Other injury of descending [left] colon, initial encounter +C2839455|T037|AB|S36.592A|ICD10CM|Other injury of descending [left] colon, initial encounter|Other injury of descending [left] colon, initial encounter +C2839456|T037|PT|S36.592D|ICD10CM|Other injury of descending [left] colon, subsequent encounter|Other injury of descending [left] colon, subsequent encounter +C2839456|T037|AB|S36.592D|ICD10CM|Other injury of descending colon, subsequent encounter|Other injury of descending colon, subsequent encounter +C2839457|T037|PT|S36.592S|ICD10CM|Other injury of descending [left] colon, sequela|Other injury of descending [left] colon, sequela +C2839457|T037|AB|S36.592S|ICD10CM|Other injury of descending [left] colon, sequela|Other injury of descending [left] colon, sequela +C2839458|T037|AB|S36.593|ICD10CM|Other injury of sigmoid colon|Other injury of sigmoid colon +C2839458|T037|HT|S36.593|ICD10CM|Other injury of sigmoid colon|Other injury of sigmoid colon +C2839459|T037|PT|S36.593A|ICD10CM|Other injury of sigmoid colon, initial encounter|Other injury of sigmoid colon, initial encounter +C2839459|T037|AB|S36.593A|ICD10CM|Other injury of sigmoid colon, initial encounter|Other injury of sigmoid colon, initial encounter +C2839460|T037|PT|S36.593D|ICD10CM|Other injury of sigmoid colon, subsequent encounter|Other injury of sigmoid colon, subsequent encounter +C2839460|T037|AB|S36.593D|ICD10CM|Other injury of sigmoid colon, subsequent encounter|Other injury of sigmoid colon, subsequent encounter +C2839461|T037|PT|S36.593S|ICD10CM|Other injury of sigmoid colon, sequela|Other injury of sigmoid colon, sequela +C2839461|T037|AB|S36.593S|ICD10CM|Other injury of sigmoid colon, sequela|Other injury of sigmoid colon, sequela +C2839462|T037|AB|S36.598|ICD10CM|Other injury of other part of colon|Other injury of other part of colon +C2839462|T037|HT|S36.598|ICD10CM|Other injury of other part of colon|Other injury of other part of colon +C2839463|T037|AB|S36.598A|ICD10CM|Other injury of other part of colon, initial encounter|Other injury of other part of colon, initial encounter +C2839463|T037|PT|S36.598A|ICD10CM|Other injury of other part of colon, initial encounter|Other injury of other part of colon, initial encounter +C2839464|T037|PT|S36.598D|ICD10CM|Other injury of other part of colon, subsequent encounter|Other injury of other part of colon, subsequent encounter +C2839464|T037|AB|S36.598D|ICD10CM|Other injury of other part of colon, subsequent encounter|Other injury of other part of colon, subsequent encounter +C2839465|T037|PT|S36.598S|ICD10CM|Other injury of other part of colon, sequela|Other injury of other part of colon, sequela +C2839465|T037|AB|S36.598S|ICD10CM|Other injury of other part of colon, sequela|Other injury of other part of colon, sequela +C2839466|T037|AB|S36.599|ICD10CM|Other injury of unspecified part of colon|Other injury of unspecified part of colon +C2839466|T037|HT|S36.599|ICD10CM|Other injury of unspecified part of colon|Other injury of unspecified part of colon +C2839467|T037|AB|S36.599A|ICD10CM|Other injury of unspecified part of colon, initial encounter|Other injury of unspecified part of colon, initial encounter +C2839467|T037|PT|S36.599A|ICD10CM|Other injury of unspecified part of colon, initial encounter|Other injury of unspecified part of colon, initial encounter +C2839468|T037|AB|S36.599D|ICD10CM|Other injury of unspecified part of colon, subs encntr|Other injury of unspecified part of colon, subs encntr +C2839468|T037|PT|S36.599D|ICD10CM|Other injury of unspecified part of colon, subsequent encounter|Other injury of unspecified part of colon, subsequent encounter +C2839469|T037|PT|S36.599S|ICD10CM|Other injury of unspecified part of colon, sequela|Other injury of unspecified part of colon, sequela +C2839469|T037|AB|S36.599S|ICD10CM|Other injury of unspecified part of colon, sequela|Other injury of unspecified part of colon, sequela +C0433745|T037|HT|S36.6|ICD10CM|Injury of rectum|Injury of rectum +C0433745|T037|AB|S36.6|ICD10CM|Injury of rectum|Injury of rectum +C0433745|T037|PT|S36.6|ICD10|Injury of rectum|Injury of rectum +C2839470|T037|AB|S36.60|ICD10CM|Unspecified injury of rectum|Unspecified injury of rectum +C2839470|T037|HT|S36.60|ICD10CM|Unspecified injury of rectum|Unspecified injury of rectum +C2839471|T037|PT|S36.60XA|ICD10CM|Unspecified injury of rectum, initial encounter|Unspecified injury of rectum, initial encounter +C2839471|T037|AB|S36.60XA|ICD10CM|Unspecified injury of rectum, initial encounter|Unspecified injury of rectum, initial encounter +C2839472|T037|PT|S36.60XD|ICD10CM|Unspecified injury of rectum, subsequent encounter|Unspecified injury of rectum, subsequent encounter +C2839472|T037|AB|S36.60XD|ICD10CM|Unspecified injury of rectum, subsequent encounter|Unspecified injury of rectum, subsequent encounter +C2839473|T037|PT|S36.60XS|ICD10CM|Unspecified injury of rectum, sequela|Unspecified injury of rectum, sequela +C2839473|T037|AB|S36.60XS|ICD10CM|Unspecified injury of rectum, sequela|Unspecified injury of rectum, sequela +C2839474|T037|ET|S36.61|ICD10CM|Blast injury of rectum NOS|Blast injury of rectum NOS +C2839475|T037|HT|S36.61|ICD10CM|Primary blast injury of rectum|Primary blast injury of rectum +C2839475|T037|AB|S36.61|ICD10CM|Primary blast injury of rectum|Primary blast injury of rectum +C2839476|T037|AB|S36.61XA|ICD10CM|Primary blast injury of rectum, initial encounter|Primary blast injury of rectum, initial encounter +C2839476|T037|PT|S36.61XA|ICD10CM|Primary blast injury of rectum, initial encounter|Primary blast injury of rectum, initial encounter +C2839477|T037|AB|S36.61XD|ICD10CM|Primary blast injury of rectum, subsequent encounter|Primary blast injury of rectum, subsequent encounter +C2839477|T037|PT|S36.61XD|ICD10CM|Primary blast injury of rectum, subsequent encounter|Primary blast injury of rectum, subsequent encounter +C2839478|T037|AB|S36.61XS|ICD10CM|Primary blast injury of rectum, sequela|Primary blast injury of rectum, sequela +C2839478|T037|PT|S36.61XS|ICD10CM|Primary blast injury of rectum, sequela|Primary blast injury of rectum, sequela +C0434105|T037|HT|S36.62|ICD10CM|Contusion of rectum|Contusion of rectum +C0434105|T037|AB|S36.62|ICD10CM|Contusion of rectum|Contusion of rectum +C2839479|T037|PT|S36.62XA|ICD10CM|Contusion of rectum, initial encounter|Contusion of rectum, initial encounter +C2839479|T037|AB|S36.62XA|ICD10CM|Contusion of rectum, initial encounter|Contusion of rectum, initial encounter +C2839480|T037|PT|S36.62XD|ICD10CM|Contusion of rectum, subsequent encounter|Contusion of rectum, subsequent encounter +C2839480|T037|AB|S36.62XD|ICD10CM|Contusion of rectum, subsequent encounter|Contusion of rectum, subsequent encounter +C2839481|T037|PT|S36.62XS|ICD10CM|Contusion of rectum, sequela|Contusion of rectum, sequela +C2839481|T037|AB|S36.62XS|ICD10CM|Contusion of rectum, sequela|Contusion of rectum, sequela +C0267597|T037|HT|S36.63|ICD10CM|Laceration of rectum|Laceration of rectum +C0267597|T037|AB|S36.63|ICD10CM|Laceration of rectum|Laceration of rectum +C2839482|T037|PT|S36.63XA|ICD10CM|Laceration of rectum, initial encounter|Laceration of rectum, initial encounter +C2839482|T037|AB|S36.63XA|ICD10CM|Laceration of rectum, initial encounter|Laceration of rectum, initial encounter +C2839483|T037|PT|S36.63XD|ICD10CM|Laceration of rectum, subsequent encounter|Laceration of rectum, subsequent encounter +C2839483|T037|AB|S36.63XD|ICD10CM|Laceration of rectum, subsequent encounter|Laceration of rectum, subsequent encounter +C2839484|T037|PT|S36.63XS|ICD10CM|Laceration of rectum, sequela|Laceration of rectum, sequela +C2839484|T037|AB|S36.63XS|ICD10CM|Laceration of rectum, sequela|Laceration of rectum, sequela +C2839486|T037|AB|S36.69|ICD10CM|Other injury of rectum|Other injury of rectum +C2839486|T037|HT|S36.69|ICD10CM|Other injury of rectum|Other injury of rectum +C2839485|T037|ET|S36.69|ICD10CM|Secondary blast injury of rectum|Secondary blast injury of rectum +C2839487|T037|PT|S36.69XA|ICD10CM|Other injury of rectum, initial encounter|Other injury of rectum, initial encounter +C2839487|T037|AB|S36.69XA|ICD10CM|Other injury of rectum, initial encounter|Other injury of rectum, initial encounter +C2839488|T037|PT|S36.69XD|ICD10CM|Other injury of rectum, subsequent encounter|Other injury of rectum, subsequent encounter +C2839488|T037|AB|S36.69XD|ICD10CM|Other injury of rectum, subsequent encounter|Other injury of rectum, subsequent encounter +C2839489|T037|PT|S36.69XS|ICD10CM|Other injury of rectum, sequela|Other injury of rectum, sequela +C2839489|T037|AB|S36.69XS|ICD10CM|Other injury of rectum, sequela|Other injury of rectum, sequela +C0451956|T037|PT|S36.7|ICD10|Injury of multiple intra-abdominal organs|Injury of multiple intra-abdominal organs +C3495413|T037|PT|S36.8|ICD10|Injury of other intra-abdominal organs|Injury of other intra-abdominal organs +C3495413|T037|HT|S36.8|ICD10CM|Injury of other intra-abdominal organs|Injury of other intra-abdominal organs +C3495413|T037|AB|S36.8|ICD10CM|Injury of other intra-abdominal organs|Injury of other intra-abdominal organs +C0563671|T037|HT|S36.81|ICD10CM|Injury of peritoneum|Injury of peritoneum +C0563671|T037|AB|S36.81|ICD10CM|Injury of peritoneum|Injury of peritoneum +C2839490|T037|AB|S36.81XA|ICD10CM|Injury of peritoneum, initial encounter|Injury of peritoneum, initial encounter +C2839490|T037|PT|S36.81XA|ICD10CM|Injury of peritoneum, initial encounter|Injury of peritoneum, initial encounter +C2839491|T037|AB|S36.81XD|ICD10CM|Injury of peritoneum, subsequent encounter|Injury of peritoneum, subsequent encounter +C2839491|T037|PT|S36.81XD|ICD10CM|Injury of peritoneum, subsequent encounter|Injury of peritoneum, subsequent encounter +C2839492|T037|AB|S36.81XS|ICD10CM|Injury of peritoneum, sequela|Injury of peritoneum, sequela +C2839492|T037|PT|S36.81XS|ICD10CM|Injury of peritoneum, sequela|Injury of peritoneum, sequela +C3495413|T037|HT|S36.89|ICD10CM|Injury of other intra-abdominal organs|Injury of other intra-abdominal organs +C3495413|T037|AB|S36.89|ICD10CM|Injury of other intra-abdominal organs|Injury of other intra-abdominal organs +C0160448|T037|ET|S36.89|ICD10CM|Injury of retroperitoneum|Injury of retroperitoneum +C2839493|T037|AB|S36.892|ICD10CM|Contusion of other intra-abdominal organs|Contusion of other intra-abdominal organs +C2839493|T037|HT|S36.892|ICD10CM|Contusion of other intra-abdominal organs|Contusion of other intra-abdominal organs +C2839494|T037|AB|S36.892A|ICD10CM|Contusion of other intra-abdominal organs, initial encounter|Contusion of other intra-abdominal organs, initial encounter +C2839494|T037|PT|S36.892A|ICD10CM|Contusion of other intra-abdominal organs, initial encounter|Contusion of other intra-abdominal organs, initial encounter +C2839495|T037|AB|S36.892D|ICD10CM|Contusion of other intra-abdominal organs, subs encntr|Contusion of other intra-abdominal organs, subs encntr +C2839495|T037|PT|S36.892D|ICD10CM|Contusion of other intra-abdominal organs, subsequent encounter|Contusion of other intra-abdominal organs, subsequent encounter +C2839496|T037|PT|S36.892S|ICD10CM|Contusion of other intra-abdominal organs, sequela|Contusion of other intra-abdominal organs, sequela +C2839496|T037|AB|S36.892S|ICD10CM|Contusion of other intra-abdominal organs, sequela|Contusion of other intra-abdominal organs, sequela +C2839497|T037|AB|S36.893|ICD10CM|Laceration of other intra-abdominal organs|Laceration of other intra-abdominal organs +C2839497|T037|HT|S36.893|ICD10CM|Laceration of other intra-abdominal organs|Laceration of other intra-abdominal organs +C2839498|T037|AB|S36.893A|ICD10CM|Laceration of other intra-abdominal organs, init encntr|Laceration of other intra-abdominal organs, init encntr +C2839498|T037|PT|S36.893A|ICD10CM|Laceration of other intra-abdominal organs, initial encounter|Laceration of other intra-abdominal organs, initial encounter +C2839499|T037|AB|S36.893D|ICD10CM|Laceration of other intra-abdominal organs, subs encntr|Laceration of other intra-abdominal organs, subs encntr +C2839499|T037|PT|S36.893D|ICD10CM|Laceration of other intra-abdominal organs, subsequent encounter|Laceration of other intra-abdominal organs, subsequent encounter +C2839500|T037|PT|S36.893S|ICD10CM|Laceration of other intra-abdominal organs, sequela|Laceration of other intra-abdominal organs, sequela +C2839500|T037|AB|S36.893S|ICD10CM|Laceration of other intra-abdominal organs, sequela|Laceration of other intra-abdominal organs, sequela +C2839501|T037|AB|S36.898|ICD10CM|Other injury of other intra-abdominal organs|Other injury of other intra-abdominal organs +C2839501|T037|HT|S36.898|ICD10CM|Other injury of other intra-abdominal organs|Other injury of other intra-abdominal organs +C2839502|T037|AB|S36.898A|ICD10CM|Other injury of other intra-abdominal organs, init encntr|Other injury of other intra-abdominal organs, init encntr +C2839502|T037|PT|S36.898A|ICD10CM|Other injury of other intra-abdominal organs, initial encounter|Other injury of other intra-abdominal organs, initial encounter +C2839503|T037|AB|S36.898D|ICD10CM|Other injury of other intra-abdominal organs, subs encntr|Other injury of other intra-abdominal organs, subs encntr +C2839503|T037|PT|S36.898D|ICD10CM|Other injury of other intra-abdominal organs, subsequent encounter|Other injury of other intra-abdominal organs, subsequent encounter +C2839504|T037|PT|S36.898S|ICD10CM|Other injury of other intra-abdominal organs, sequela|Other injury of other intra-abdominal organs, sequela +C2839504|T037|AB|S36.898S|ICD10CM|Other injury of other intra-abdominal organs, sequela|Other injury of other intra-abdominal organs, sequela +C2839505|T037|AB|S36.899|ICD10CM|Unspecified injury of other intra-abdominal organs|Unspecified injury of other intra-abdominal organs +C2839505|T037|HT|S36.899|ICD10CM|Unspecified injury of other intra-abdominal organs|Unspecified injury of other intra-abdominal organs +C2839506|T037|AB|S36.899A|ICD10CM|Unsp injury of other intra-abdominal organs, init encntr|Unsp injury of other intra-abdominal organs, init encntr +C2839506|T037|PT|S36.899A|ICD10CM|Unspecified injury of other intra-abdominal organs, initial encounter|Unspecified injury of other intra-abdominal organs, initial encounter +C2839507|T037|AB|S36.899D|ICD10CM|Unsp injury of other intra-abdominal organs, subs encntr|Unsp injury of other intra-abdominal organs, subs encntr +C2839507|T037|PT|S36.899D|ICD10CM|Unspecified injury of other intra-abdominal organs, subsequent encounter|Unspecified injury of other intra-abdominal organs, subsequent encounter +C2839508|T037|PT|S36.899S|ICD10CM|Unspecified injury of other intra-abdominal organs, sequela|Unspecified injury of other intra-abdominal organs, sequela +C2839508|T037|AB|S36.899S|ICD10CM|Unspecified injury of other intra-abdominal organs, sequela|Unspecified injury of other intra-abdominal organs, sequela +C0273128|T037|PT|S36.9|ICD10|Injury of unspecified intra-abdominal organ|Injury of unspecified intra-abdominal organ +C0273128|T037|HT|S36.9|ICD10CM|Injury of unspecified intra-abdominal organ|Injury of unspecified intra-abdominal organ +C0273128|T037|AB|S36.9|ICD10CM|Injury of unspecified intra-abdominal organ|Injury of unspecified intra-abdominal organ +C2839509|T037|AB|S36.90|ICD10CM|Unspecified injury of unspecified intra-abdominal organ|Unspecified injury of unspecified intra-abdominal organ +C2839509|T037|HT|S36.90|ICD10CM|Unspecified injury of unspecified intra-abdominal organ|Unspecified injury of unspecified intra-abdominal organ +C2839510|T037|AB|S36.90XA|ICD10CM|Unsp injury of unsp intra-abdominal organ, init encntr|Unsp injury of unsp intra-abdominal organ, init encntr +C2839510|T037|PT|S36.90XA|ICD10CM|Unspecified injury of unspecified intra-abdominal organ, initial encounter|Unspecified injury of unspecified intra-abdominal organ, initial encounter +C2839511|T037|AB|S36.90XD|ICD10CM|Unsp injury of unsp intra-abdominal organ, subs encntr|Unsp injury of unsp intra-abdominal organ, subs encntr +C2839511|T037|PT|S36.90XD|ICD10CM|Unspecified injury of unspecified intra-abdominal organ, subsequent encounter|Unspecified injury of unspecified intra-abdominal organ, subsequent encounter +C2839512|T037|AB|S36.90XS|ICD10CM|Unsp injury of unspecified intra-abdominal organ, sequela|Unsp injury of unspecified intra-abdominal organ, sequela +C2839512|T037|PT|S36.90XS|ICD10CM|Unspecified injury of unspecified intra-abdominal organ, sequela|Unspecified injury of unspecified intra-abdominal organ, sequela +C2839513|T037|AB|S36.92|ICD10CM|Contusion of unspecified intra-abdominal organ|Contusion of unspecified intra-abdominal organ +C2839513|T037|HT|S36.92|ICD10CM|Contusion of unspecified intra-abdominal organ|Contusion of unspecified intra-abdominal organ +C2839514|T037|AB|S36.92XA|ICD10CM|Contusion of unspecified intra-abdominal organ, init encntr|Contusion of unspecified intra-abdominal organ, init encntr +C2839514|T037|PT|S36.92XA|ICD10CM|Contusion of unspecified intra-abdominal organ, initial encounter|Contusion of unspecified intra-abdominal organ, initial encounter +C2839515|T037|AB|S36.92XD|ICD10CM|Contusion of unspecified intra-abdominal organ, subs encntr|Contusion of unspecified intra-abdominal organ, subs encntr +C2839515|T037|PT|S36.92XD|ICD10CM|Contusion of unspecified intra-abdominal organ, subsequent encounter|Contusion of unspecified intra-abdominal organ, subsequent encounter +C2839516|T037|PT|S36.92XS|ICD10CM|Contusion of unspecified intra-abdominal organ, sequela|Contusion of unspecified intra-abdominal organ, sequela +C2839516|T037|AB|S36.92XS|ICD10CM|Contusion of unspecified intra-abdominal organ, sequela|Contusion of unspecified intra-abdominal organ, sequela +C2839517|T037|AB|S36.93|ICD10CM|Laceration of unspecified intra-abdominal organ|Laceration of unspecified intra-abdominal organ +C2839517|T037|HT|S36.93|ICD10CM|Laceration of unspecified intra-abdominal organ|Laceration of unspecified intra-abdominal organ +C2839518|T037|AB|S36.93XA|ICD10CM|Laceration of unspecified intra-abdominal organ, init encntr|Laceration of unspecified intra-abdominal organ, init encntr +C2839518|T037|PT|S36.93XA|ICD10CM|Laceration of unspecified intra-abdominal organ, initial encounter|Laceration of unspecified intra-abdominal organ, initial encounter +C2839519|T037|AB|S36.93XD|ICD10CM|Laceration of unspecified intra-abdominal organ, subs encntr|Laceration of unspecified intra-abdominal organ, subs encntr +C2839519|T037|PT|S36.93XD|ICD10CM|Laceration of unspecified intra-abdominal organ, subsequent encounter|Laceration of unspecified intra-abdominal organ, subsequent encounter +C2839520|T037|PT|S36.93XS|ICD10CM|Laceration of unspecified intra-abdominal organ, sequela|Laceration of unspecified intra-abdominal organ, sequela +C2839520|T037|AB|S36.93XS|ICD10CM|Laceration of unspecified intra-abdominal organ, sequela|Laceration of unspecified intra-abdominal organ, sequela +C2839521|T037|AB|S36.99|ICD10CM|Other injury of unspecified intra-abdominal organ|Other injury of unspecified intra-abdominal organ +C2839521|T037|HT|S36.99|ICD10CM|Other injury of unspecified intra-abdominal organ|Other injury of unspecified intra-abdominal organ +C2839522|T037|AB|S36.99XA|ICD10CM|Other injury of unsp intra-abdominal organ, init encntr|Other injury of unsp intra-abdominal organ, init encntr +C2839522|T037|PT|S36.99XA|ICD10CM|Other injury of unspecified intra-abdominal organ, initial encounter|Other injury of unspecified intra-abdominal organ, initial encounter +C2839523|T037|AB|S36.99XD|ICD10CM|Other injury of unsp intra-abdominal organ, subs encntr|Other injury of unsp intra-abdominal organ, subs encntr +C2839523|T037|PT|S36.99XD|ICD10CM|Other injury of unspecified intra-abdominal organ, subsequent encounter|Other injury of unspecified intra-abdominal organ, subsequent encounter +C2839524|T037|PT|S36.99XS|ICD10CM|Other injury of unspecified intra-abdominal organ, sequela|Other injury of unspecified intra-abdominal organ, sequela +C2839524|T037|AB|S36.99XS|ICD10CM|Other injury of unspecified intra-abdominal organ, sequela|Other injury of unspecified intra-abdominal organ, sequela +C1542119|T037|HT|S37|ICD10CM|Injury of urinary and pelvic organs|Injury of urinary and pelvic organs +C1542119|T037|AB|S37|ICD10CM|Injury of urinary and pelvic organs|Injury of urinary and pelvic organs +C1542119|T037|HT|S37|ICD10|Injury of urinary and pelvic organs|Injury of urinary and pelvic organs +C0160420|T037|HT|S37.0|ICD10CM|Injury of kidney|Injury of kidney +C0160420|T037|AB|S37.0|ICD10CM|Injury of kidney|Injury of kidney +C0160420|T037|PT|S37.0|ICD10|Injury of kidney|Injury of kidney +C0160420|T037|AB|S37.00|ICD10CM|Unspecified injury of kidney|Unspecified injury of kidney +C0160420|T037|HT|S37.00|ICD10CM|Unspecified injury of kidney|Unspecified injury of kidney +C2839525|T037|AB|S37.001|ICD10CM|Unspecified injury of right kidney|Unspecified injury of right kidney +C2839525|T037|HT|S37.001|ICD10CM|Unspecified injury of right kidney|Unspecified injury of right kidney +C2839526|T037|PT|S37.001A|ICD10CM|Unspecified injury of right kidney, initial encounter|Unspecified injury of right kidney, initial encounter +C2839526|T037|AB|S37.001A|ICD10CM|Unspecified injury of right kidney, initial encounter|Unspecified injury of right kidney, initial encounter +C2839527|T037|PT|S37.001D|ICD10CM|Unspecified injury of right kidney, subsequent encounter|Unspecified injury of right kidney, subsequent encounter +C2839527|T037|AB|S37.001D|ICD10CM|Unspecified injury of right kidney, subsequent encounter|Unspecified injury of right kidney, subsequent encounter +C2839528|T037|PT|S37.001S|ICD10CM|Unspecified injury of right kidney, sequela|Unspecified injury of right kidney, sequela +C2839528|T037|AB|S37.001S|ICD10CM|Unspecified injury of right kidney, sequela|Unspecified injury of right kidney, sequela +C2839529|T037|AB|S37.002|ICD10CM|Unspecified injury of left kidney|Unspecified injury of left kidney +C2839529|T037|HT|S37.002|ICD10CM|Unspecified injury of left kidney|Unspecified injury of left kidney +C2839530|T037|PT|S37.002A|ICD10CM|Unspecified injury of left kidney, initial encounter|Unspecified injury of left kidney, initial encounter +C2839530|T037|AB|S37.002A|ICD10CM|Unspecified injury of left kidney, initial encounter|Unspecified injury of left kidney, initial encounter +C2839531|T037|PT|S37.002D|ICD10CM|Unspecified injury of left kidney, subsequent encounter|Unspecified injury of left kidney, subsequent encounter +C2839531|T037|AB|S37.002D|ICD10CM|Unspecified injury of left kidney, subsequent encounter|Unspecified injury of left kidney, subsequent encounter +C2839532|T037|PT|S37.002S|ICD10CM|Unspecified injury of left kidney, sequela|Unspecified injury of left kidney, sequela +C2839532|T037|AB|S37.002S|ICD10CM|Unspecified injury of left kidney, sequela|Unspecified injury of left kidney, sequela +C2839533|T037|AB|S37.009|ICD10CM|Unspecified injury of unspecified kidney|Unspecified injury of unspecified kidney +C2839533|T037|HT|S37.009|ICD10CM|Unspecified injury of unspecified kidney|Unspecified injury of unspecified kidney +C2839534|T037|PT|S37.009A|ICD10CM|Unspecified injury of unspecified kidney, initial encounter|Unspecified injury of unspecified kidney, initial encounter +C2839534|T037|AB|S37.009A|ICD10CM|Unspecified injury of unspecified kidney, initial encounter|Unspecified injury of unspecified kidney, initial encounter +C2839535|T037|AB|S37.009D|ICD10CM|Unspecified injury of unspecified kidney, subs encntr|Unspecified injury of unspecified kidney, subs encntr +C2839535|T037|PT|S37.009D|ICD10CM|Unspecified injury of unspecified kidney, subsequent encounter|Unspecified injury of unspecified kidney, subsequent encounter +C2839536|T037|PT|S37.009S|ICD10CM|Unspecified injury of unspecified kidney, sequela|Unspecified injury of unspecified kidney, sequela +C2839536|T037|AB|S37.009S|ICD10CM|Unspecified injury of unspecified kidney, sequela|Unspecified injury of unspecified kidney, sequela +C2839537|T037|ET|S37.01|ICD10CM|Contusion of kidney less than 2 cm|Contusion of kidney less than 2 cm +C0238206|T037|ET|S37.01|ICD10CM|Contusion of kidney NOS|Contusion of kidney NOS +C2839538|T037|AB|S37.01|ICD10CM|Minor contusion of kidney|Minor contusion of kidney +C2839538|T037|HT|S37.01|ICD10CM|Minor contusion of kidney|Minor contusion of kidney +C2839539|T037|AB|S37.011|ICD10CM|Minor contusion of right kidney|Minor contusion of right kidney +C2839539|T037|HT|S37.011|ICD10CM|Minor contusion of right kidney|Minor contusion of right kidney +C2839540|T037|PT|S37.011A|ICD10CM|Minor contusion of right kidney, initial encounter|Minor contusion of right kidney, initial encounter +C2839540|T037|AB|S37.011A|ICD10CM|Minor contusion of right kidney, initial encounter|Minor contusion of right kidney, initial encounter +C2839541|T037|PT|S37.011D|ICD10CM|Minor contusion of right kidney, subsequent encounter|Minor contusion of right kidney, subsequent encounter +C2839541|T037|AB|S37.011D|ICD10CM|Minor contusion of right kidney, subsequent encounter|Minor contusion of right kidney, subsequent encounter +C2839542|T037|PT|S37.011S|ICD10CM|Minor contusion of right kidney, sequela|Minor contusion of right kidney, sequela +C2839542|T037|AB|S37.011S|ICD10CM|Minor contusion of right kidney, sequela|Minor contusion of right kidney, sequela +C2839543|T037|AB|S37.012|ICD10CM|Minor contusion of left kidney|Minor contusion of left kidney +C2839543|T037|HT|S37.012|ICD10CM|Minor contusion of left kidney|Minor contusion of left kidney +C2839544|T037|PT|S37.012A|ICD10CM|Minor contusion of left kidney, initial encounter|Minor contusion of left kidney, initial encounter +C2839544|T037|AB|S37.012A|ICD10CM|Minor contusion of left kidney, initial encounter|Minor contusion of left kidney, initial encounter +C2839545|T037|PT|S37.012D|ICD10CM|Minor contusion of left kidney, subsequent encounter|Minor contusion of left kidney, subsequent encounter +C2839545|T037|AB|S37.012D|ICD10CM|Minor contusion of left kidney, subsequent encounter|Minor contusion of left kidney, subsequent encounter +C2839546|T037|PT|S37.012S|ICD10CM|Minor contusion of left kidney, sequela|Minor contusion of left kidney, sequela +C2839546|T037|AB|S37.012S|ICD10CM|Minor contusion of left kidney, sequela|Minor contusion of left kidney, sequela +C2839547|T037|AB|S37.019|ICD10CM|Minor contusion of unspecified kidney|Minor contusion of unspecified kidney +C2839547|T037|HT|S37.019|ICD10CM|Minor contusion of unspecified kidney|Minor contusion of unspecified kidney +C2839548|T037|PT|S37.019A|ICD10CM|Minor contusion of unspecified kidney, initial encounter|Minor contusion of unspecified kidney, initial encounter +C2839548|T037|AB|S37.019A|ICD10CM|Minor contusion of unspecified kidney, initial encounter|Minor contusion of unspecified kidney, initial encounter +C2839549|T037|PT|S37.019D|ICD10CM|Minor contusion of unspecified kidney, subsequent encounter|Minor contusion of unspecified kidney, subsequent encounter +C2839549|T037|AB|S37.019D|ICD10CM|Minor contusion of unspecified kidney, subsequent encounter|Minor contusion of unspecified kidney, subsequent encounter +C2839550|T037|PT|S37.019S|ICD10CM|Minor contusion of unspecified kidney, sequela|Minor contusion of unspecified kidney, sequela +C2839550|T037|AB|S37.019S|ICD10CM|Minor contusion of unspecified kidney, sequela|Minor contusion of unspecified kidney, sequela +C2839551|T037|ET|S37.02|ICD10CM|Contusion of kidney greater than 2 cm|Contusion of kidney greater than 2 cm +C2839552|T037|AB|S37.02|ICD10CM|Major contusion of kidney|Major contusion of kidney +C2839552|T037|HT|S37.02|ICD10CM|Major contusion of kidney|Major contusion of kidney +C2839553|T037|AB|S37.021|ICD10CM|Major contusion of right kidney|Major contusion of right kidney +C2839553|T037|HT|S37.021|ICD10CM|Major contusion of right kidney|Major contusion of right kidney +C2839554|T037|PT|S37.021A|ICD10CM|Major contusion of right kidney, initial encounter|Major contusion of right kidney, initial encounter +C2839554|T037|AB|S37.021A|ICD10CM|Major contusion of right kidney, initial encounter|Major contusion of right kidney, initial encounter +C2839555|T037|PT|S37.021D|ICD10CM|Major contusion of right kidney, subsequent encounter|Major contusion of right kidney, subsequent encounter +C2839555|T037|AB|S37.021D|ICD10CM|Major contusion of right kidney, subsequent encounter|Major contusion of right kidney, subsequent encounter +C2839556|T037|PT|S37.021S|ICD10CM|Major contusion of right kidney, sequela|Major contusion of right kidney, sequela +C2839556|T037|AB|S37.021S|ICD10CM|Major contusion of right kidney, sequela|Major contusion of right kidney, sequela +C2839557|T037|AB|S37.022|ICD10CM|Major contusion of left kidney|Major contusion of left kidney +C2839557|T037|HT|S37.022|ICD10CM|Major contusion of left kidney|Major contusion of left kidney +C2839558|T037|PT|S37.022A|ICD10CM|Major contusion of left kidney, initial encounter|Major contusion of left kidney, initial encounter +C2839558|T037|AB|S37.022A|ICD10CM|Major contusion of left kidney, initial encounter|Major contusion of left kidney, initial encounter +C2839559|T037|PT|S37.022D|ICD10CM|Major contusion of left kidney, subsequent encounter|Major contusion of left kidney, subsequent encounter +C2839559|T037|AB|S37.022D|ICD10CM|Major contusion of left kidney, subsequent encounter|Major contusion of left kidney, subsequent encounter +C2839560|T037|PT|S37.022S|ICD10CM|Major contusion of left kidney, sequela|Major contusion of left kidney, sequela +C2839560|T037|AB|S37.022S|ICD10CM|Major contusion of left kidney, sequela|Major contusion of left kidney, sequela +C2839561|T037|AB|S37.029|ICD10CM|Major contusion of unspecified kidney|Major contusion of unspecified kidney +C2839561|T037|HT|S37.029|ICD10CM|Major contusion of unspecified kidney|Major contusion of unspecified kidney +C2839562|T037|PT|S37.029A|ICD10CM|Major contusion of unspecified kidney, initial encounter|Major contusion of unspecified kidney, initial encounter +C2839562|T037|AB|S37.029A|ICD10CM|Major contusion of unspecified kidney, initial encounter|Major contusion of unspecified kidney, initial encounter +C2839563|T037|PT|S37.029D|ICD10CM|Major contusion of unspecified kidney, subsequent encounter|Major contusion of unspecified kidney, subsequent encounter +C2839563|T037|AB|S37.029D|ICD10CM|Major contusion of unspecified kidney, subsequent encounter|Major contusion of unspecified kidney, subsequent encounter +C2839564|T037|PT|S37.029S|ICD10CM|Major contusion of unspecified kidney, sequela|Major contusion of unspecified kidney, sequela +C2839564|T037|AB|S37.029S|ICD10CM|Major contusion of unspecified kidney, sequela|Major contusion of unspecified kidney, sequela +C2839565|T037|AB|S37.03|ICD10CM|Laceration of kidney, unspecified degree|Laceration of kidney, unspecified degree +C2839565|T037|HT|S37.03|ICD10CM|Laceration of kidney, unspecified degree|Laceration of kidney, unspecified degree +C2839566|T037|AB|S37.031|ICD10CM|Laceration of right kidney, unspecified degree|Laceration of right kidney, unspecified degree +C2839566|T037|HT|S37.031|ICD10CM|Laceration of right kidney, unspecified degree|Laceration of right kidney, unspecified degree +C2839567|T037|AB|S37.031A|ICD10CM|Laceration of right kidney, unspecified degree, init encntr|Laceration of right kidney, unspecified degree, init encntr +C2839567|T037|PT|S37.031A|ICD10CM|Laceration of right kidney, unspecified degree, initial encounter|Laceration of right kidney, unspecified degree, initial encounter +C2839568|T037|AB|S37.031D|ICD10CM|Laceration of right kidney, unspecified degree, subs encntr|Laceration of right kidney, unspecified degree, subs encntr +C2839568|T037|PT|S37.031D|ICD10CM|Laceration of right kidney, unspecified degree, subsequent encounter|Laceration of right kidney, unspecified degree, subsequent encounter +C2839569|T037|AB|S37.031S|ICD10CM|Laceration of right kidney, unspecified degree, sequela|Laceration of right kidney, unspecified degree, sequela +C2839569|T037|PT|S37.031S|ICD10CM|Laceration of right kidney, unspecified degree, sequela|Laceration of right kidney, unspecified degree, sequela +C2839570|T037|AB|S37.032|ICD10CM|Laceration of left kidney, unspecified degree|Laceration of left kidney, unspecified degree +C2839570|T037|HT|S37.032|ICD10CM|Laceration of left kidney, unspecified degree|Laceration of left kidney, unspecified degree +C2839571|T037|AB|S37.032A|ICD10CM|Laceration of left kidney, unspecified degree, init encntr|Laceration of left kidney, unspecified degree, init encntr +C2839571|T037|PT|S37.032A|ICD10CM|Laceration of left kidney, unspecified degree, initial encounter|Laceration of left kidney, unspecified degree, initial encounter +C2839572|T037|AB|S37.032D|ICD10CM|Laceration of left kidney, unspecified degree, subs encntr|Laceration of left kidney, unspecified degree, subs encntr +C2839572|T037|PT|S37.032D|ICD10CM|Laceration of left kidney, unspecified degree, subsequent encounter|Laceration of left kidney, unspecified degree, subsequent encounter +C2839573|T037|AB|S37.032S|ICD10CM|Laceration of left kidney, unspecified degree, sequela|Laceration of left kidney, unspecified degree, sequela +C2839573|T037|PT|S37.032S|ICD10CM|Laceration of left kidney, unspecified degree, sequela|Laceration of left kidney, unspecified degree, sequela +C2839574|T037|AB|S37.039|ICD10CM|Laceration of unspecified kidney, unspecified degree|Laceration of unspecified kidney, unspecified degree +C2839574|T037|HT|S37.039|ICD10CM|Laceration of unspecified kidney, unspecified degree|Laceration of unspecified kidney, unspecified degree +C2839575|T037|AB|S37.039A|ICD10CM|Laceration of unsp kidney, unspecified degree, init encntr|Laceration of unsp kidney, unspecified degree, init encntr +C2839575|T037|PT|S37.039A|ICD10CM|Laceration of unspecified kidney, unspecified degree, initial encounter|Laceration of unspecified kidney, unspecified degree, initial encounter +C2839576|T037|AB|S37.039D|ICD10CM|Laceration of unsp kidney, unspecified degree, subs encntr|Laceration of unsp kidney, unspecified degree, subs encntr +C2839576|T037|PT|S37.039D|ICD10CM|Laceration of unspecified kidney, unspecified degree, subsequent encounter|Laceration of unspecified kidney, unspecified degree, subsequent encounter +C2839577|T037|AB|S37.039S|ICD10CM|Laceration of unsp kidney, unspecified degree, sequela|Laceration of unsp kidney, unspecified degree, sequela +C2839577|T037|PT|S37.039S|ICD10CM|Laceration of unspecified kidney, unspecified degree, sequela|Laceration of unspecified kidney, unspecified degree, sequela +C2839578|T037|ET|S37.04|ICD10CM|Laceration of kidney less than 1 cm|Laceration of kidney less than 1 cm +C2839579|T037|AB|S37.04|ICD10CM|Minor laceration of kidney|Minor laceration of kidney +C2839579|T037|HT|S37.04|ICD10CM|Minor laceration of kidney|Minor laceration of kidney +C2839580|T037|AB|S37.041|ICD10CM|Minor laceration of right kidney|Minor laceration of right kidney +C2839580|T037|HT|S37.041|ICD10CM|Minor laceration of right kidney|Minor laceration of right kidney +C2839581|T037|PT|S37.041A|ICD10CM|Minor laceration of right kidney, initial encounter|Minor laceration of right kidney, initial encounter +C2839581|T037|AB|S37.041A|ICD10CM|Minor laceration of right kidney, initial encounter|Minor laceration of right kidney, initial encounter +C2839582|T037|PT|S37.041D|ICD10CM|Minor laceration of right kidney, subsequent encounter|Minor laceration of right kidney, subsequent encounter +C2839582|T037|AB|S37.041D|ICD10CM|Minor laceration of right kidney, subsequent encounter|Minor laceration of right kidney, subsequent encounter +C2839583|T037|PT|S37.041S|ICD10CM|Minor laceration of right kidney, sequela|Minor laceration of right kidney, sequela +C2839583|T037|AB|S37.041S|ICD10CM|Minor laceration of right kidney, sequela|Minor laceration of right kidney, sequela +C2839584|T037|AB|S37.042|ICD10CM|Minor laceration of left kidney|Minor laceration of left kidney +C2839584|T037|HT|S37.042|ICD10CM|Minor laceration of left kidney|Minor laceration of left kidney +C2839585|T037|PT|S37.042A|ICD10CM|Minor laceration of left kidney, initial encounter|Minor laceration of left kidney, initial encounter +C2839585|T037|AB|S37.042A|ICD10CM|Minor laceration of left kidney, initial encounter|Minor laceration of left kidney, initial encounter +C2839586|T037|PT|S37.042D|ICD10CM|Minor laceration of left kidney, subsequent encounter|Minor laceration of left kidney, subsequent encounter +C2839586|T037|AB|S37.042D|ICD10CM|Minor laceration of left kidney, subsequent encounter|Minor laceration of left kidney, subsequent encounter +C2839587|T037|PT|S37.042S|ICD10CM|Minor laceration of left kidney, sequela|Minor laceration of left kidney, sequela +C2839587|T037|AB|S37.042S|ICD10CM|Minor laceration of left kidney, sequela|Minor laceration of left kidney, sequela +C2839588|T037|AB|S37.049|ICD10CM|Minor laceration of unspecified kidney|Minor laceration of unspecified kidney +C2839588|T037|HT|S37.049|ICD10CM|Minor laceration of unspecified kidney|Minor laceration of unspecified kidney +C2839589|T037|PT|S37.049A|ICD10CM|Minor laceration of unspecified kidney, initial encounter|Minor laceration of unspecified kidney, initial encounter +C2839589|T037|AB|S37.049A|ICD10CM|Minor laceration of unspecified kidney, initial encounter|Minor laceration of unspecified kidney, initial encounter +C2839590|T037|AB|S37.049D|ICD10CM|Minor laceration of unspecified kidney, subsequent encounter|Minor laceration of unspecified kidney, subsequent encounter +C2839590|T037|PT|S37.049D|ICD10CM|Minor laceration of unspecified kidney, subsequent encounter|Minor laceration of unspecified kidney, subsequent encounter +C2839591|T037|PT|S37.049S|ICD10CM|Minor laceration of unspecified kidney, sequela|Minor laceration of unspecified kidney, sequela +C2839591|T037|AB|S37.049S|ICD10CM|Minor laceration of unspecified kidney, sequela|Minor laceration of unspecified kidney, sequela +C2839592|T037|ET|S37.05|ICD10CM|Laceration of kidney 1 to 3 cm|Laceration of kidney 1 to 3 cm +C2839593|T037|AB|S37.05|ICD10CM|Moderate laceration of kidney|Moderate laceration of kidney +C2839593|T037|HT|S37.05|ICD10CM|Moderate laceration of kidney|Moderate laceration of kidney +C2839594|T037|AB|S37.051|ICD10CM|Moderate laceration of right kidney|Moderate laceration of right kidney +C2839594|T037|HT|S37.051|ICD10CM|Moderate laceration of right kidney|Moderate laceration of right kidney +C2839595|T037|PT|S37.051A|ICD10CM|Moderate laceration of right kidney, initial encounter|Moderate laceration of right kidney, initial encounter +C2839595|T037|AB|S37.051A|ICD10CM|Moderate laceration of right kidney, initial encounter|Moderate laceration of right kidney, initial encounter +C2839596|T037|PT|S37.051D|ICD10CM|Moderate laceration of right kidney, subsequent encounter|Moderate laceration of right kidney, subsequent encounter +C2839596|T037|AB|S37.051D|ICD10CM|Moderate laceration of right kidney, subsequent encounter|Moderate laceration of right kidney, subsequent encounter +C2839597|T037|PT|S37.051S|ICD10CM|Moderate laceration of right kidney, sequela|Moderate laceration of right kidney, sequela +C2839597|T037|AB|S37.051S|ICD10CM|Moderate laceration of right kidney, sequela|Moderate laceration of right kidney, sequela +C2839598|T037|AB|S37.052|ICD10CM|Moderate laceration of left kidney|Moderate laceration of left kidney +C2839598|T037|HT|S37.052|ICD10CM|Moderate laceration of left kidney|Moderate laceration of left kidney +C2839599|T037|PT|S37.052A|ICD10CM|Moderate laceration of left kidney, initial encounter|Moderate laceration of left kidney, initial encounter +C2839599|T037|AB|S37.052A|ICD10CM|Moderate laceration of left kidney, initial encounter|Moderate laceration of left kidney, initial encounter +C2839600|T037|PT|S37.052D|ICD10CM|Moderate laceration of left kidney, subsequent encounter|Moderate laceration of left kidney, subsequent encounter +C2839600|T037|AB|S37.052D|ICD10CM|Moderate laceration of left kidney, subsequent encounter|Moderate laceration of left kidney, subsequent encounter +C2839601|T037|PT|S37.052S|ICD10CM|Moderate laceration of left kidney, sequela|Moderate laceration of left kidney, sequela +C2839601|T037|AB|S37.052S|ICD10CM|Moderate laceration of left kidney, sequela|Moderate laceration of left kidney, sequela +C2839602|T037|AB|S37.059|ICD10CM|Moderate laceration of unspecified kidney|Moderate laceration of unspecified kidney +C2839602|T037|HT|S37.059|ICD10CM|Moderate laceration of unspecified kidney|Moderate laceration of unspecified kidney +C2839603|T037|AB|S37.059A|ICD10CM|Moderate laceration of unspecified kidney, initial encounter|Moderate laceration of unspecified kidney, initial encounter +C2839603|T037|PT|S37.059A|ICD10CM|Moderate laceration of unspecified kidney, initial encounter|Moderate laceration of unspecified kidney, initial encounter +C2839604|T037|AB|S37.059D|ICD10CM|Moderate laceration of unspecified kidney, subs encntr|Moderate laceration of unspecified kidney, subs encntr +C2839604|T037|PT|S37.059D|ICD10CM|Moderate laceration of unspecified kidney, subsequent encounter|Moderate laceration of unspecified kidney, subsequent encounter +C2839605|T037|PT|S37.059S|ICD10CM|Moderate laceration of unspecified kidney, sequela|Moderate laceration of unspecified kidney, sequela +C2839605|T037|AB|S37.059S|ICD10CM|Moderate laceration of unspecified kidney, sequela|Moderate laceration of unspecified kidney, sequela +C0561761|T037|ET|S37.06|ICD10CM|Avulsion of kidney|Avulsion of kidney +C2839606|T037|ET|S37.06|ICD10CM|Laceration of kidney greater than 3 cm|Laceration of kidney greater than 3 cm +C2839610|T037|AB|S37.06|ICD10CM|Major laceration of kidney|Major laceration of kidney +C2839610|T037|HT|S37.06|ICD10CM|Major laceration of kidney|Major laceration of kidney +C2839607|T037|ET|S37.06|ICD10CM|Massive laceration of kidney|Massive laceration of kidney +C2839608|T037|ET|S37.06|ICD10CM|Multiple moderate lacerations of kidney|Multiple moderate lacerations of kidney +C2839609|T037|ET|S37.06|ICD10CM|Stellate laceration of kidney|Stellate laceration of kidney +C2839611|T037|AB|S37.061|ICD10CM|Major laceration of right kidney|Major laceration of right kidney +C2839611|T037|HT|S37.061|ICD10CM|Major laceration of right kidney|Major laceration of right kidney +C2839612|T037|PT|S37.061A|ICD10CM|Major laceration of right kidney, initial encounter|Major laceration of right kidney, initial encounter +C2839612|T037|AB|S37.061A|ICD10CM|Major laceration of right kidney, initial encounter|Major laceration of right kidney, initial encounter +C2839613|T037|PT|S37.061D|ICD10CM|Major laceration of right kidney, subsequent encounter|Major laceration of right kidney, subsequent encounter +C2839613|T037|AB|S37.061D|ICD10CM|Major laceration of right kidney, subsequent encounter|Major laceration of right kidney, subsequent encounter +C2839614|T037|PT|S37.061S|ICD10CM|Major laceration of right kidney, sequela|Major laceration of right kidney, sequela +C2839614|T037|AB|S37.061S|ICD10CM|Major laceration of right kidney, sequela|Major laceration of right kidney, sequela +C2839615|T037|AB|S37.062|ICD10CM|Major laceration of left kidney|Major laceration of left kidney +C2839615|T037|HT|S37.062|ICD10CM|Major laceration of left kidney|Major laceration of left kidney +C2839616|T037|PT|S37.062A|ICD10CM|Major laceration of left kidney, initial encounter|Major laceration of left kidney, initial encounter +C2839616|T037|AB|S37.062A|ICD10CM|Major laceration of left kidney, initial encounter|Major laceration of left kidney, initial encounter +C2839617|T037|PT|S37.062D|ICD10CM|Major laceration of left kidney, subsequent encounter|Major laceration of left kidney, subsequent encounter +C2839617|T037|AB|S37.062D|ICD10CM|Major laceration of left kidney, subsequent encounter|Major laceration of left kidney, subsequent encounter +C2839618|T037|PT|S37.062S|ICD10CM|Major laceration of left kidney, sequela|Major laceration of left kidney, sequela +C2839618|T037|AB|S37.062S|ICD10CM|Major laceration of left kidney, sequela|Major laceration of left kidney, sequela +C2839619|T037|AB|S37.069|ICD10CM|Major laceration of unspecified kidney|Major laceration of unspecified kidney +C2839619|T037|HT|S37.069|ICD10CM|Major laceration of unspecified kidney|Major laceration of unspecified kidney +C2839620|T037|PT|S37.069A|ICD10CM|Major laceration of unspecified kidney, initial encounter|Major laceration of unspecified kidney, initial encounter +C2839620|T037|AB|S37.069A|ICD10CM|Major laceration of unspecified kidney, initial encounter|Major laceration of unspecified kidney, initial encounter +C2839621|T037|AB|S37.069D|ICD10CM|Major laceration of unspecified kidney, subsequent encounter|Major laceration of unspecified kidney, subsequent encounter +C2839621|T037|PT|S37.069D|ICD10CM|Major laceration of unspecified kidney, subsequent encounter|Major laceration of unspecified kidney, subsequent encounter +C2839622|T037|PT|S37.069S|ICD10CM|Major laceration of unspecified kidney, sequela|Major laceration of unspecified kidney, sequela +C2839622|T037|AB|S37.069S|ICD10CM|Major laceration of unspecified kidney, sequela|Major laceration of unspecified kidney, sequela +C2839623|T037|AB|S37.09|ICD10CM|Other injury of kidney|Other injury of kidney +C2839623|T037|HT|S37.09|ICD10CM|Other injury of kidney|Other injury of kidney +C2839624|T037|AB|S37.091|ICD10CM|Other injury of right kidney|Other injury of right kidney +C2839624|T037|HT|S37.091|ICD10CM|Other injury of right kidney|Other injury of right kidney +C2839625|T037|PT|S37.091A|ICD10CM|Other injury of right kidney, initial encounter|Other injury of right kidney, initial encounter +C2839625|T037|AB|S37.091A|ICD10CM|Other injury of right kidney, initial encounter|Other injury of right kidney, initial encounter +C2839626|T037|PT|S37.091D|ICD10CM|Other injury of right kidney, subsequent encounter|Other injury of right kidney, subsequent encounter +C2839626|T037|AB|S37.091D|ICD10CM|Other injury of right kidney, subsequent encounter|Other injury of right kidney, subsequent encounter +C2839627|T037|PT|S37.091S|ICD10CM|Other injury of right kidney, sequela|Other injury of right kidney, sequela +C2839627|T037|AB|S37.091S|ICD10CM|Other injury of right kidney, sequela|Other injury of right kidney, sequela +C2839628|T037|AB|S37.092|ICD10CM|Other injury of left kidney|Other injury of left kidney +C2839628|T037|HT|S37.092|ICD10CM|Other injury of left kidney|Other injury of left kidney +C2839629|T037|PT|S37.092A|ICD10CM|Other injury of left kidney, initial encounter|Other injury of left kidney, initial encounter +C2839629|T037|AB|S37.092A|ICD10CM|Other injury of left kidney, initial encounter|Other injury of left kidney, initial encounter +C2839630|T037|PT|S37.092D|ICD10CM|Other injury of left kidney, subsequent encounter|Other injury of left kidney, subsequent encounter +C2839630|T037|AB|S37.092D|ICD10CM|Other injury of left kidney, subsequent encounter|Other injury of left kidney, subsequent encounter +C2839631|T037|PT|S37.092S|ICD10CM|Other injury of left kidney, sequela|Other injury of left kidney, sequela +C2839631|T037|AB|S37.092S|ICD10CM|Other injury of left kidney, sequela|Other injury of left kidney, sequela +C2839632|T037|AB|S37.099|ICD10CM|Other injury of unspecified kidney|Other injury of unspecified kidney +C2839632|T037|HT|S37.099|ICD10CM|Other injury of unspecified kidney|Other injury of unspecified kidney +C2839633|T037|PT|S37.099A|ICD10CM|Other injury of unspecified kidney, initial encounter|Other injury of unspecified kidney, initial encounter +C2839633|T037|AB|S37.099A|ICD10CM|Other injury of unspecified kidney, initial encounter|Other injury of unspecified kidney, initial encounter +C2839634|T037|PT|S37.099D|ICD10CM|Other injury of unspecified kidney, subsequent encounter|Other injury of unspecified kidney, subsequent encounter +C2839634|T037|AB|S37.099D|ICD10CM|Other injury of unspecified kidney, subsequent encounter|Other injury of unspecified kidney, subsequent encounter +C2839635|T037|PT|S37.099S|ICD10CM|Other injury of unspecified kidney, sequela|Other injury of unspecified kidney, sequela +C2839635|T037|AB|S37.099S|ICD10CM|Other injury of unspecified kidney, sequela|Other injury of unspecified kidney, sequela +C0238493|T037|HT|S37.1|ICD10CM|Injury of ureter|Injury of ureter +C0238493|T037|AB|S37.1|ICD10CM|Injury of ureter|Injury of ureter +C0238493|T037|PT|S37.1|ICD10|Injury of ureter|Injury of ureter +C2839636|T037|AB|S37.10|ICD10CM|Unspecified injury of ureter|Unspecified injury of ureter +C2839636|T037|HT|S37.10|ICD10CM|Unspecified injury of ureter|Unspecified injury of ureter +C2839637|T037|PT|S37.10XA|ICD10CM|Unspecified injury of ureter, initial encounter|Unspecified injury of ureter, initial encounter +C2839637|T037|AB|S37.10XA|ICD10CM|Unspecified injury of ureter, initial encounter|Unspecified injury of ureter, initial encounter +C2839638|T037|PT|S37.10XD|ICD10CM|Unspecified injury of ureter, subsequent encounter|Unspecified injury of ureter, subsequent encounter +C2839638|T037|AB|S37.10XD|ICD10CM|Unspecified injury of ureter, subsequent encounter|Unspecified injury of ureter, subsequent encounter +C2839639|T037|PT|S37.10XS|ICD10CM|Unspecified injury of ureter, sequela|Unspecified injury of ureter, sequela +C2839639|T037|AB|S37.10XS|ICD10CM|Unspecified injury of ureter, sequela|Unspecified injury of ureter, sequela +C0561762|T037|HT|S37.12|ICD10CM|Contusion of ureter|Contusion of ureter +C0561762|T037|AB|S37.12|ICD10CM|Contusion of ureter|Contusion of ureter +C2839640|T037|PT|S37.12XA|ICD10CM|Contusion of ureter, initial encounter|Contusion of ureter, initial encounter +C2839640|T037|AB|S37.12XA|ICD10CM|Contusion of ureter, initial encounter|Contusion of ureter, initial encounter +C2839641|T037|PT|S37.12XD|ICD10CM|Contusion of ureter, subsequent encounter|Contusion of ureter, subsequent encounter +C2839641|T037|AB|S37.12XD|ICD10CM|Contusion of ureter, subsequent encounter|Contusion of ureter, subsequent encounter +C2839642|T037|PT|S37.12XS|ICD10CM|Contusion of ureter, sequela|Contusion of ureter, sequela +C2839642|T037|AB|S37.12XS|ICD10CM|Contusion of ureter, sequela|Contusion of ureter, sequela +C0561764|T037|HT|S37.13|ICD10CM|Laceration of ureter|Laceration of ureter +C0561764|T037|AB|S37.13|ICD10CM|Laceration of ureter|Laceration of ureter +C2839643|T037|PT|S37.13XA|ICD10CM|Laceration of ureter, initial encounter|Laceration of ureter, initial encounter +C2839643|T037|AB|S37.13XA|ICD10CM|Laceration of ureter, initial encounter|Laceration of ureter, initial encounter +C2839644|T037|PT|S37.13XD|ICD10CM|Laceration of ureter, subsequent encounter|Laceration of ureter, subsequent encounter +C2839644|T037|AB|S37.13XD|ICD10CM|Laceration of ureter, subsequent encounter|Laceration of ureter, subsequent encounter +C2839645|T037|PT|S37.13XS|ICD10CM|Laceration of ureter, sequela|Laceration of ureter, sequela +C2839645|T037|AB|S37.13XS|ICD10CM|Laceration of ureter, sequela|Laceration of ureter, sequela +C2839646|T037|AB|S37.19|ICD10CM|Other injury of ureter|Other injury of ureter +C2839646|T037|HT|S37.19|ICD10CM|Other injury of ureter|Other injury of ureter +C2839647|T037|PT|S37.19XA|ICD10CM|Other injury of ureter, initial encounter|Other injury of ureter, initial encounter +C2839647|T037|AB|S37.19XA|ICD10CM|Other injury of ureter, initial encounter|Other injury of ureter, initial encounter +C2839648|T037|PT|S37.19XD|ICD10CM|Other injury of ureter, subsequent encounter|Other injury of ureter, subsequent encounter +C2839648|T037|AB|S37.19XD|ICD10CM|Other injury of ureter, subsequent encounter|Other injury of ureter, subsequent encounter +C2839649|T037|PT|S37.19XS|ICD10CM|Other injury of ureter, sequela|Other injury of ureter, sequela +C2839649|T037|AB|S37.19XS|ICD10CM|Other injury of ureter, sequela|Other injury of ureter, sequela +C0403677|T037|PT|S37.2|ICD10|Injury of bladder|Injury of bladder +C0403677|T037|HT|S37.2|ICD10CM|Injury of bladder|Injury of bladder +C0403677|T037|AB|S37.2|ICD10CM|Injury of bladder|Injury of bladder +C0403677|T037|AB|S37.20|ICD10CM|Unspecified injury of bladder|Unspecified injury of bladder +C0403677|T037|HT|S37.20|ICD10CM|Unspecified injury of bladder|Unspecified injury of bladder +C2839650|T037|PT|S37.20XA|ICD10CM|Unspecified injury of bladder, initial encounter|Unspecified injury of bladder, initial encounter +C2839650|T037|AB|S37.20XA|ICD10CM|Unspecified injury of bladder, initial encounter|Unspecified injury of bladder, initial encounter +C2839651|T037|PT|S37.20XD|ICD10CM|Unspecified injury of bladder, subsequent encounter|Unspecified injury of bladder, subsequent encounter +C2839651|T037|AB|S37.20XD|ICD10CM|Unspecified injury of bladder, subsequent encounter|Unspecified injury of bladder, subsequent encounter +C2839652|T037|PT|S37.20XS|ICD10CM|Unspecified injury of bladder, sequela|Unspecified injury of bladder, sequela +C2839652|T037|AB|S37.20XS|ICD10CM|Unspecified injury of bladder, sequela|Unspecified injury of bladder, sequela +C0561771|T037|HT|S37.22|ICD10CM|Contusion of bladder|Contusion of bladder +C0561771|T037|AB|S37.22|ICD10CM|Contusion of bladder|Contusion of bladder +C2839653|T037|PT|S37.22XA|ICD10CM|Contusion of bladder, initial encounter|Contusion of bladder, initial encounter +C2839653|T037|AB|S37.22XA|ICD10CM|Contusion of bladder, initial encounter|Contusion of bladder, initial encounter +C2839654|T037|PT|S37.22XD|ICD10CM|Contusion of bladder, subsequent encounter|Contusion of bladder, subsequent encounter +C2839654|T037|AB|S37.22XD|ICD10CM|Contusion of bladder, subsequent encounter|Contusion of bladder, subsequent encounter +C2839655|T037|PT|S37.22XS|ICD10CM|Contusion of bladder, sequela|Contusion of bladder, sequela +C2839655|T037|AB|S37.22XS|ICD10CM|Contusion of bladder, sequela|Contusion of bladder, sequela +C0561772|T037|HT|S37.23|ICD10CM|Laceration of bladder|Laceration of bladder +C0561772|T037|AB|S37.23|ICD10CM|Laceration of bladder|Laceration of bladder +C2839656|T037|PT|S37.23XA|ICD10CM|Laceration of bladder, initial encounter|Laceration of bladder, initial encounter +C2839656|T037|AB|S37.23XA|ICD10CM|Laceration of bladder, initial encounter|Laceration of bladder, initial encounter +C2839657|T037|PT|S37.23XD|ICD10CM|Laceration of bladder, subsequent encounter|Laceration of bladder, subsequent encounter +C2839657|T037|AB|S37.23XD|ICD10CM|Laceration of bladder, subsequent encounter|Laceration of bladder, subsequent encounter +C2839658|T037|PT|S37.23XS|ICD10CM|Laceration of bladder, sequela|Laceration of bladder, sequela +C2839658|T037|AB|S37.23XS|ICD10CM|Laceration of bladder, sequela|Laceration of bladder, sequela +C0840565|T037|HT|S37.29|ICD10CM|Other injury of bladder|Other injury of bladder +C0840565|T037|AB|S37.29|ICD10CM|Other injury of bladder|Other injury of bladder +C2977883|T037|PT|S37.29XA|ICD10CM|Other injury of bladder, initial encounter|Other injury of bladder, initial encounter +C2977883|T037|AB|S37.29XA|ICD10CM|Other injury of bladder, initial encounter|Other injury of bladder, initial encounter +C2977884|T037|PT|S37.29XD|ICD10CM|Other injury of bladder, subsequent encounter|Other injury of bladder, subsequent encounter +C2977884|T037|AB|S37.29XD|ICD10CM|Other injury of bladder, subsequent encounter|Other injury of bladder, subsequent encounter +C2977885|T037|PT|S37.29XS|ICD10CM|Other injury of bladder, sequela|Other injury of bladder, sequela +C2977885|T037|AB|S37.29XS|ICD10CM|Other injury of bladder, sequela|Other injury of bladder, sequela +C0403701|T037|HT|S37.3|ICD10CM|Injury of urethra|Injury of urethra +C0403701|T037|AB|S37.3|ICD10CM|Injury of urethra|Injury of urethra +C0403701|T037|PT|S37.3|ICD10|Injury of urethra|Injury of urethra +C2839662|T037|AB|S37.30|ICD10CM|Unspecified injury of urethra|Unspecified injury of urethra +C2839662|T037|HT|S37.30|ICD10CM|Unspecified injury of urethra|Unspecified injury of urethra +C2839663|T037|PT|S37.30XA|ICD10CM|Unspecified injury of urethra, initial encounter|Unspecified injury of urethra, initial encounter +C2839663|T037|AB|S37.30XA|ICD10CM|Unspecified injury of urethra, initial encounter|Unspecified injury of urethra, initial encounter +C2839664|T037|PT|S37.30XD|ICD10CM|Unspecified injury of urethra, subsequent encounter|Unspecified injury of urethra, subsequent encounter +C2839664|T037|AB|S37.30XD|ICD10CM|Unspecified injury of urethra, subsequent encounter|Unspecified injury of urethra, subsequent encounter +C2839665|T037|PT|S37.30XS|ICD10CM|Unspecified injury of urethra, sequela|Unspecified injury of urethra, sequela +C2839665|T037|AB|S37.30XS|ICD10CM|Unspecified injury of urethra, sequela|Unspecified injury of urethra, sequela +C0561773|T037|HT|S37.32|ICD10CM|Contusion of urethra|Contusion of urethra +C0561773|T037|AB|S37.32|ICD10CM|Contusion of urethra|Contusion of urethra +C2839666|T037|PT|S37.32XA|ICD10CM|Contusion of urethra, initial encounter|Contusion of urethra, initial encounter +C2839666|T037|AB|S37.32XA|ICD10CM|Contusion of urethra, initial encounter|Contusion of urethra, initial encounter +C2839667|T037|PT|S37.32XD|ICD10CM|Contusion of urethra, subsequent encounter|Contusion of urethra, subsequent encounter +C2839667|T037|AB|S37.32XD|ICD10CM|Contusion of urethra, subsequent encounter|Contusion of urethra, subsequent encounter +C2839668|T037|PT|S37.32XS|ICD10CM|Contusion of urethra, sequela|Contusion of urethra, sequela +C2839668|T037|AB|S37.32XS|ICD10CM|Contusion of urethra, sequela|Contusion of urethra, sequela +C0561777|T037|HT|S37.33|ICD10CM|Laceration of urethra|Laceration of urethra +C0561777|T037|AB|S37.33|ICD10CM|Laceration of urethra|Laceration of urethra +C2839669|T037|PT|S37.33XA|ICD10CM|Laceration of urethra, initial encounter|Laceration of urethra, initial encounter +C2839669|T037|AB|S37.33XA|ICD10CM|Laceration of urethra, initial encounter|Laceration of urethra, initial encounter +C2839670|T037|PT|S37.33XD|ICD10CM|Laceration of urethra, subsequent encounter|Laceration of urethra, subsequent encounter +C2839670|T037|AB|S37.33XD|ICD10CM|Laceration of urethra, subsequent encounter|Laceration of urethra, subsequent encounter +C2839671|T037|PT|S37.33XS|ICD10CM|Laceration of urethra, sequela|Laceration of urethra, sequela +C2839671|T037|AB|S37.33XS|ICD10CM|Laceration of urethra, sequela|Laceration of urethra, sequela +C2839672|T037|AB|S37.39|ICD10CM|Other injury of urethra|Other injury of urethra +C2839672|T037|HT|S37.39|ICD10CM|Other injury of urethra|Other injury of urethra +C2977886|T037|PT|S37.39XA|ICD10CM|Other injury of urethra, initial encounter|Other injury of urethra, initial encounter +C2977886|T037|AB|S37.39XA|ICD10CM|Other injury of urethra, initial encounter|Other injury of urethra, initial encounter +C2977887|T037|PT|S37.39XD|ICD10CM|Other injury of urethra, subsequent encounter|Other injury of urethra, subsequent encounter +C2977887|T037|AB|S37.39XD|ICD10CM|Other injury of urethra, subsequent encounter|Other injury of urethra, subsequent encounter +C2977888|T037|PT|S37.39XS|ICD10CM|Other injury of urethra, sequela|Other injury of urethra, sequela +C2977888|T037|AB|S37.39XS|ICD10CM|Other injury of urethra, sequela|Other injury of urethra, sequela +C0434165|T037|PT|S37.4|ICD10|Injury of ovary|Injury of ovary +C0434165|T037|HT|S37.4|ICD10CM|Injury of ovary|Injury of ovary +C0434165|T037|AB|S37.4|ICD10CM|Injury of ovary|Injury of ovary +C2839685|T037|AB|S37.40|ICD10CM|Unspecified injury of ovary|Unspecified injury of ovary +C2839685|T037|HT|S37.40|ICD10CM|Unspecified injury of ovary|Unspecified injury of ovary +C2839677|T037|AB|S37.401|ICD10CM|Unspecified injury of ovary, unilateral|Unspecified injury of ovary, unilateral +C2839677|T037|HT|S37.401|ICD10CM|Unspecified injury of ovary, unilateral|Unspecified injury of ovary, unilateral +C2839678|T037|PT|S37.401A|ICD10CM|Unspecified injury of ovary, unilateral, initial encounter|Unspecified injury of ovary, unilateral, initial encounter +C2839678|T037|AB|S37.401A|ICD10CM|Unspecified injury of ovary, unilateral, initial encounter|Unspecified injury of ovary, unilateral, initial encounter +C2839679|T037|AB|S37.401D|ICD10CM|Unspecified injury of ovary, unilateral, subs encntr|Unspecified injury of ovary, unilateral, subs encntr +C2839679|T037|PT|S37.401D|ICD10CM|Unspecified injury of ovary, unilateral, subsequent encounter|Unspecified injury of ovary, unilateral, subsequent encounter +C2839680|T037|PT|S37.401S|ICD10CM|Unspecified injury of ovary, unilateral, sequela|Unspecified injury of ovary, unilateral, sequela +C2839680|T037|AB|S37.401S|ICD10CM|Unspecified injury of ovary, unilateral, sequela|Unspecified injury of ovary, unilateral, sequela +C2839681|T037|AB|S37.402|ICD10CM|Unspecified injury of ovary, bilateral|Unspecified injury of ovary, bilateral +C2839681|T037|HT|S37.402|ICD10CM|Unspecified injury of ovary, bilateral|Unspecified injury of ovary, bilateral +C2839682|T037|PT|S37.402A|ICD10CM|Unspecified injury of ovary, bilateral, initial encounter|Unspecified injury of ovary, bilateral, initial encounter +C2839682|T037|AB|S37.402A|ICD10CM|Unspecified injury of ovary, bilateral, initial encounter|Unspecified injury of ovary, bilateral, initial encounter +C2839683|T037|AB|S37.402D|ICD10CM|Unspecified injury of ovary, bilateral, subsequent encounter|Unspecified injury of ovary, bilateral, subsequent encounter +C2839683|T037|PT|S37.402D|ICD10CM|Unspecified injury of ovary, bilateral, subsequent encounter|Unspecified injury of ovary, bilateral, subsequent encounter +C2839684|T037|PT|S37.402S|ICD10CM|Unspecified injury of ovary, bilateral, sequela|Unspecified injury of ovary, bilateral, sequela +C2839684|T037|AB|S37.402S|ICD10CM|Unspecified injury of ovary, bilateral, sequela|Unspecified injury of ovary, bilateral, sequela +C2839685|T037|AB|S37.409|ICD10CM|Unspecified injury of ovary, unspecified|Unspecified injury of ovary, unspecified +C2839685|T037|HT|S37.409|ICD10CM|Unspecified injury of ovary, unspecified|Unspecified injury of ovary, unspecified +C2839686|T037|PT|S37.409A|ICD10CM|Unspecified injury of ovary, unspecified, initial encounter|Unspecified injury of ovary, unspecified, initial encounter +C2839686|T037|AB|S37.409A|ICD10CM|Unspecified injury of ovary, unspecified, initial encounter|Unspecified injury of ovary, unspecified, initial encounter +C2839687|T037|AB|S37.409D|ICD10CM|Unspecified injury of ovary, unspecified, subs encntr|Unspecified injury of ovary, unspecified, subs encntr +C2839687|T037|PT|S37.409D|ICD10CM|Unspecified injury of ovary, unspecified, subsequent encounter|Unspecified injury of ovary, unspecified, subsequent encounter +C2839688|T037|PT|S37.409S|ICD10CM|Unspecified injury of ovary, unspecified, sequela|Unspecified injury of ovary, unspecified, sequela +C2839688|T037|AB|S37.409S|ICD10CM|Unspecified injury of ovary, unspecified, sequela|Unspecified injury of ovary, unspecified, sequela +C0561808|T037|HT|S37.42|ICD10CM|Contusion of ovary|Contusion of ovary +C0561808|T037|AB|S37.42|ICD10CM|Contusion of ovary|Contusion of ovary +C2839689|T037|AB|S37.421|ICD10CM|Contusion of ovary, unilateral|Contusion of ovary, unilateral +C2839689|T037|HT|S37.421|ICD10CM|Contusion of ovary, unilateral|Contusion of ovary, unilateral +C2839690|T037|PT|S37.421A|ICD10CM|Contusion of ovary, unilateral, initial encounter|Contusion of ovary, unilateral, initial encounter +C2839690|T037|AB|S37.421A|ICD10CM|Contusion of ovary, unilateral, initial encounter|Contusion of ovary, unilateral, initial encounter +C2839691|T037|PT|S37.421D|ICD10CM|Contusion of ovary, unilateral, subsequent encounter|Contusion of ovary, unilateral, subsequent encounter +C2839691|T037|AB|S37.421D|ICD10CM|Contusion of ovary, unilateral, subsequent encounter|Contusion of ovary, unilateral, subsequent encounter +C2839692|T037|PT|S37.421S|ICD10CM|Contusion of ovary, unilateral, sequela|Contusion of ovary, unilateral, sequela +C2839692|T037|AB|S37.421S|ICD10CM|Contusion of ovary, unilateral, sequela|Contusion of ovary, unilateral, sequela +C2839693|T037|AB|S37.422|ICD10CM|Contusion of ovary, bilateral|Contusion of ovary, bilateral +C2839693|T037|HT|S37.422|ICD10CM|Contusion of ovary, bilateral|Contusion of ovary, bilateral +C2839694|T037|PT|S37.422A|ICD10CM|Contusion of ovary, bilateral, initial encounter|Contusion of ovary, bilateral, initial encounter +C2839694|T037|AB|S37.422A|ICD10CM|Contusion of ovary, bilateral, initial encounter|Contusion of ovary, bilateral, initial encounter +C2839695|T037|PT|S37.422D|ICD10CM|Contusion of ovary, bilateral, subsequent encounter|Contusion of ovary, bilateral, subsequent encounter +C2839695|T037|AB|S37.422D|ICD10CM|Contusion of ovary, bilateral, subsequent encounter|Contusion of ovary, bilateral, subsequent encounter +C2839696|T037|PT|S37.422S|ICD10CM|Contusion of ovary, bilateral, sequela|Contusion of ovary, bilateral, sequela +C2839696|T037|AB|S37.422S|ICD10CM|Contusion of ovary, bilateral, sequela|Contusion of ovary, bilateral, sequela +C0561808|T037|AB|S37.429|ICD10CM|Contusion of ovary, unspecified|Contusion of ovary, unspecified +C0561808|T037|HT|S37.429|ICD10CM|Contusion of ovary, unspecified|Contusion of ovary, unspecified +C2839698|T037|PT|S37.429A|ICD10CM|Contusion of ovary, unspecified, initial encounter|Contusion of ovary, unspecified, initial encounter +C2839698|T037|AB|S37.429A|ICD10CM|Contusion of ovary, unspecified, initial encounter|Contusion of ovary, unspecified, initial encounter +C2839699|T037|PT|S37.429D|ICD10CM|Contusion of ovary, unspecified, subsequent encounter|Contusion of ovary, unspecified, subsequent encounter +C2839699|T037|AB|S37.429D|ICD10CM|Contusion of ovary, unspecified, subsequent encounter|Contusion of ovary, unspecified, subsequent encounter +C2839700|T037|PT|S37.429S|ICD10CM|Contusion of ovary, unspecified, sequela|Contusion of ovary, unspecified, sequela +C2839700|T037|AB|S37.429S|ICD10CM|Contusion of ovary, unspecified, sequela|Contusion of ovary, unspecified, sequela +C0434168|T037|HT|S37.43|ICD10CM|Laceration of ovary|Laceration of ovary +C0434168|T037|AB|S37.43|ICD10CM|Laceration of ovary|Laceration of ovary +C2839701|T037|AB|S37.431|ICD10CM|Laceration of ovary, unilateral|Laceration of ovary, unilateral +C2839701|T037|HT|S37.431|ICD10CM|Laceration of ovary, unilateral|Laceration of ovary, unilateral +C2839702|T037|PT|S37.431A|ICD10CM|Laceration of ovary, unilateral, initial encounter|Laceration of ovary, unilateral, initial encounter +C2839702|T037|AB|S37.431A|ICD10CM|Laceration of ovary, unilateral, initial encounter|Laceration of ovary, unilateral, initial encounter +C2839703|T037|PT|S37.431D|ICD10CM|Laceration of ovary, unilateral, subsequent encounter|Laceration of ovary, unilateral, subsequent encounter +C2839703|T037|AB|S37.431D|ICD10CM|Laceration of ovary, unilateral, subsequent encounter|Laceration of ovary, unilateral, subsequent encounter +C2839704|T037|PT|S37.431S|ICD10CM|Laceration of ovary, unilateral, sequela|Laceration of ovary, unilateral, sequela +C2839704|T037|AB|S37.431S|ICD10CM|Laceration of ovary, unilateral, sequela|Laceration of ovary, unilateral, sequela +C2839705|T037|AB|S37.432|ICD10CM|Laceration of ovary, bilateral|Laceration of ovary, bilateral +C2839705|T037|HT|S37.432|ICD10CM|Laceration of ovary, bilateral|Laceration of ovary, bilateral +C2839706|T037|PT|S37.432A|ICD10CM|Laceration of ovary, bilateral, initial encounter|Laceration of ovary, bilateral, initial encounter +C2839706|T037|AB|S37.432A|ICD10CM|Laceration of ovary, bilateral, initial encounter|Laceration of ovary, bilateral, initial encounter +C2839707|T037|PT|S37.432D|ICD10CM|Laceration of ovary, bilateral, subsequent encounter|Laceration of ovary, bilateral, subsequent encounter +C2839707|T037|AB|S37.432D|ICD10CM|Laceration of ovary, bilateral, subsequent encounter|Laceration of ovary, bilateral, subsequent encounter +C2839708|T037|PT|S37.432S|ICD10CM|Laceration of ovary, bilateral, sequela|Laceration of ovary, bilateral, sequela +C2839708|T037|AB|S37.432S|ICD10CM|Laceration of ovary, bilateral, sequela|Laceration of ovary, bilateral, sequela +C0434168|T037|AB|S37.439|ICD10CM|Laceration of ovary, unspecified|Laceration of ovary, unspecified +C0434168|T037|HT|S37.439|ICD10CM|Laceration of ovary, unspecified|Laceration of ovary, unspecified +C2839710|T037|PT|S37.439A|ICD10CM|Laceration of ovary, unspecified, initial encounter|Laceration of ovary, unspecified, initial encounter +C2839710|T037|AB|S37.439A|ICD10CM|Laceration of ovary, unspecified, initial encounter|Laceration of ovary, unspecified, initial encounter +C2839711|T037|PT|S37.439D|ICD10CM|Laceration of ovary, unspecified, subsequent encounter|Laceration of ovary, unspecified, subsequent encounter +C2839711|T037|AB|S37.439D|ICD10CM|Laceration of ovary, unspecified, subsequent encounter|Laceration of ovary, unspecified, subsequent encounter +C2839712|T037|PT|S37.439S|ICD10CM|Laceration of ovary, unspecified, sequela|Laceration of ovary, unspecified, sequela +C2839712|T037|AB|S37.439S|ICD10CM|Laceration of ovary, unspecified, sequela|Laceration of ovary, unspecified, sequela +C2839722|T037|AB|S37.49|ICD10CM|Other injury of ovary|Other injury of ovary +C2839722|T037|HT|S37.49|ICD10CM|Other injury of ovary|Other injury of ovary +C2839714|T037|AB|S37.491|ICD10CM|Other injury of ovary, unilateral|Other injury of ovary, unilateral +C2839714|T037|HT|S37.491|ICD10CM|Other injury of ovary, unilateral|Other injury of ovary, unilateral +C2839715|T037|PT|S37.491A|ICD10CM|Other injury of ovary, unilateral, initial encounter|Other injury of ovary, unilateral, initial encounter +C2839715|T037|AB|S37.491A|ICD10CM|Other injury of ovary, unilateral, initial encounter|Other injury of ovary, unilateral, initial encounter +C2839716|T037|PT|S37.491D|ICD10CM|Other injury of ovary, unilateral, subsequent encounter|Other injury of ovary, unilateral, subsequent encounter +C2839716|T037|AB|S37.491D|ICD10CM|Other injury of ovary, unilateral, subsequent encounter|Other injury of ovary, unilateral, subsequent encounter +C2839717|T037|PT|S37.491S|ICD10CM|Other injury of ovary, unilateral, sequela|Other injury of ovary, unilateral, sequela +C2839717|T037|AB|S37.491S|ICD10CM|Other injury of ovary, unilateral, sequela|Other injury of ovary, unilateral, sequela +C2839718|T037|AB|S37.492|ICD10CM|Other injury of ovary, bilateral|Other injury of ovary, bilateral +C2839718|T037|HT|S37.492|ICD10CM|Other injury of ovary, bilateral|Other injury of ovary, bilateral +C2839719|T037|PT|S37.492A|ICD10CM|Other injury of ovary, bilateral, initial encounter|Other injury of ovary, bilateral, initial encounter +C2839719|T037|AB|S37.492A|ICD10CM|Other injury of ovary, bilateral, initial encounter|Other injury of ovary, bilateral, initial encounter +C2839720|T037|AB|S37.492D|ICD10CM|Other injury of ovary, bilateral, subsequent encounter|Other injury of ovary, bilateral, subsequent encounter +C2839720|T037|PT|S37.492D|ICD10CM|Other injury of ovary, bilateral, subsequent encounter|Other injury of ovary, bilateral, subsequent encounter +C2839721|T037|PT|S37.492S|ICD10CM|Other injury of ovary, bilateral, sequela|Other injury of ovary, bilateral, sequela +C2839721|T037|AB|S37.492S|ICD10CM|Other injury of ovary, bilateral, sequela|Other injury of ovary, bilateral, sequela +C2839722|T037|AB|S37.499|ICD10CM|Other injury of ovary, unspecified|Other injury of ovary, unspecified +C2839722|T037|HT|S37.499|ICD10CM|Other injury of ovary, unspecified|Other injury of ovary, unspecified +C2839723|T037|PT|S37.499A|ICD10CM|Other injury of ovary, unspecified, initial encounter|Other injury of ovary, unspecified, initial encounter +C2839723|T037|AB|S37.499A|ICD10CM|Other injury of ovary, unspecified, initial encounter|Other injury of ovary, unspecified, initial encounter +C2839724|T037|PT|S37.499D|ICD10CM|Other injury of ovary, unspecified, subsequent encounter|Other injury of ovary, unspecified, subsequent encounter +C2839724|T037|AB|S37.499D|ICD10CM|Other injury of ovary, unspecified, subsequent encounter|Other injury of ovary, unspecified, subsequent encounter +C2839725|T037|PT|S37.499S|ICD10CM|Other injury of ovary, unspecified, sequela|Other injury of ovary, unspecified, sequela +C2839725|T037|AB|S37.499S|ICD10CM|Other injury of ovary, unspecified, sequela|Other injury of ovary, unspecified, sequela +C0434171|T037|HT|S37.5|ICD10CM|Injury of fallopian tube|Injury of fallopian tube +C0434171|T037|AB|S37.5|ICD10CM|Injury of fallopian tube|Injury of fallopian tube +C0434171|T037|PT|S37.5|ICD10|Injury of fallopian tube|Injury of fallopian tube +C2839735|T037|AB|S37.50|ICD10CM|Unspecified injury of fallopian tube|Unspecified injury of fallopian tube +C2839735|T037|HT|S37.50|ICD10CM|Unspecified injury of fallopian tube|Unspecified injury of fallopian tube +C2839727|T037|AB|S37.501|ICD10CM|Unspecified injury of fallopian tube, unilateral|Unspecified injury of fallopian tube, unilateral +C2839727|T037|HT|S37.501|ICD10CM|Unspecified injury of fallopian tube, unilateral|Unspecified injury of fallopian tube, unilateral +C2839728|T037|AB|S37.501A|ICD10CM|Unsp injury of fallopian tube, unilateral, init encntr|Unsp injury of fallopian tube, unilateral, init encntr +C2839728|T037|PT|S37.501A|ICD10CM|Unspecified injury of fallopian tube, unilateral, initial encounter|Unspecified injury of fallopian tube, unilateral, initial encounter +C2839729|T037|AB|S37.501D|ICD10CM|Unsp injury of fallopian tube, unilateral, subs encntr|Unsp injury of fallopian tube, unilateral, subs encntr +C2839729|T037|PT|S37.501D|ICD10CM|Unspecified injury of fallopian tube, unilateral, subsequent encounter|Unspecified injury of fallopian tube, unilateral, subsequent encounter +C2839730|T037|PT|S37.501S|ICD10CM|Unspecified injury of fallopian tube, unilateral, sequela|Unspecified injury of fallopian tube, unilateral, sequela +C2839730|T037|AB|S37.501S|ICD10CM|Unspecified injury of fallopian tube, unilateral, sequela|Unspecified injury of fallopian tube, unilateral, sequela +C2839731|T037|AB|S37.502|ICD10CM|Unspecified injury of fallopian tube, bilateral|Unspecified injury of fallopian tube, bilateral +C2839731|T037|HT|S37.502|ICD10CM|Unspecified injury of fallopian tube, bilateral|Unspecified injury of fallopian tube, bilateral +C2839732|T037|AB|S37.502A|ICD10CM|Unspecified injury of fallopian tube, bilateral, init encntr|Unspecified injury of fallopian tube, bilateral, init encntr +C2839732|T037|PT|S37.502A|ICD10CM|Unspecified injury of fallopian tube, bilateral, initial encounter|Unspecified injury of fallopian tube, bilateral, initial encounter +C2839733|T037|AB|S37.502D|ICD10CM|Unspecified injury of fallopian tube, bilateral, subs encntr|Unspecified injury of fallopian tube, bilateral, subs encntr +C2839733|T037|PT|S37.502D|ICD10CM|Unspecified injury of fallopian tube, bilateral, subsequent encounter|Unspecified injury of fallopian tube, bilateral, subsequent encounter +C2839734|T037|PT|S37.502S|ICD10CM|Unspecified injury of fallopian tube, bilateral, sequela|Unspecified injury of fallopian tube, bilateral, sequela +C2839734|T037|AB|S37.502S|ICD10CM|Unspecified injury of fallopian tube, bilateral, sequela|Unspecified injury of fallopian tube, bilateral, sequela +C2839735|T037|AB|S37.509|ICD10CM|Unspecified injury of fallopian tube, unspecified|Unspecified injury of fallopian tube, unspecified +C2839735|T037|HT|S37.509|ICD10CM|Unspecified injury of fallopian tube, unspecified|Unspecified injury of fallopian tube, unspecified +C2839736|T037|AB|S37.509A|ICD10CM|Unsp injury of fallopian tube, unspecified, init encntr|Unsp injury of fallopian tube, unspecified, init encntr +C2839736|T037|PT|S37.509A|ICD10CM|Unspecified injury of fallopian tube, unspecified, initial encounter|Unspecified injury of fallopian tube, unspecified, initial encounter +C2839737|T037|AB|S37.509D|ICD10CM|Unsp injury of fallopian tube, unspecified, subs encntr|Unsp injury of fallopian tube, unspecified, subs encntr +C2839737|T037|PT|S37.509D|ICD10CM|Unspecified injury of fallopian tube, unspecified, subsequent encounter|Unspecified injury of fallopian tube, unspecified, subsequent encounter +C2839738|T037|PT|S37.509S|ICD10CM|Unspecified injury of fallopian tube, unspecified, sequela|Unspecified injury of fallopian tube, unspecified, sequela +C2839738|T037|AB|S37.509S|ICD10CM|Unspecified injury of fallopian tube, unspecified, sequela|Unspecified injury of fallopian tube, unspecified, sequela +C2839739|T037|ET|S37.51|ICD10CM|Blast injury of fallopian tube NOS|Blast injury of fallopian tube NOS +C2839749|T037|AB|S37.51|ICD10CM|Primary blast injury of fallopian tube|Primary blast injury of fallopian tube +C2839749|T037|HT|S37.51|ICD10CM|Primary blast injury of fallopian tube|Primary blast injury of fallopian tube +C2839741|T037|AB|S37.511|ICD10CM|Primary blast injury of fallopian tube, unilateral|Primary blast injury of fallopian tube, unilateral +C2839741|T037|HT|S37.511|ICD10CM|Primary blast injury of fallopian tube, unilateral|Primary blast injury of fallopian tube, unilateral +C2839742|T037|AB|S37.511A|ICD10CM|Primary blast injury of fallopian tube, unilateral, init|Primary blast injury of fallopian tube, unilateral, init +C2839742|T037|PT|S37.511A|ICD10CM|Primary blast injury of fallopian tube, unilateral, initial encounter|Primary blast injury of fallopian tube, unilateral, initial encounter +C2839743|T037|AB|S37.511D|ICD10CM|Primary blast injury of fallopian tube, unilateral, subs|Primary blast injury of fallopian tube, unilateral, subs +C2839743|T037|PT|S37.511D|ICD10CM|Primary blast injury of fallopian tube, unilateral, subsequent encounter|Primary blast injury of fallopian tube, unilateral, subsequent encounter +C2839744|T037|AB|S37.511S|ICD10CM|Primary blast injury of fallopian tube, unilateral, sequela|Primary blast injury of fallopian tube, unilateral, sequela +C2839744|T037|PT|S37.511S|ICD10CM|Primary blast injury of fallopian tube, unilateral, sequela|Primary blast injury of fallopian tube, unilateral, sequela +C2839745|T037|AB|S37.512|ICD10CM|Primary blast injury of fallopian tube, bilateral|Primary blast injury of fallopian tube, bilateral +C2839745|T037|HT|S37.512|ICD10CM|Primary blast injury of fallopian tube, bilateral|Primary blast injury of fallopian tube, bilateral +C2839746|T037|AB|S37.512A|ICD10CM|Primary blast injury of fallopian tube, bilateral, init|Primary blast injury of fallopian tube, bilateral, init +C2839746|T037|PT|S37.512A|ICD10CM|Primary blast injury of fallopian tube, bilateral, initial encounter|Primary blast injury of fallopian tube, bilateral, initial encounter +C2839747|T037|AB|S37.512D|ICD10CM|Primary blast injury of fallopian tube, bilateral, subs|Primary blast injury of fallopian tube, bilateral, subs +C2839747|T037|PT|S37.512D|ICD10CM|Primary blast injury of fallopian tube, bilateral, subsequent encounter|Primary blast injury of fallopian tube, bilateral, subsequent encounter +C2839748|T037|AB|S37.512S|ICD10CM|Primary blast injury of fallopian tube, bilateral, sequela|Primary blast injury of fallopian tube, bilateral, sequela +C2839748|T037|PT|S37.512S|ICD10CM|Primary blast injury of fallopian tube, bilateral, sequela|Primary blast injury of fallopian tube, bilateral, sequela +C2839749|T037|AB|S37.519|ICD10CM|Primary blast injury of fallopian tube, unspecified|Primary blast injury of fallopian tube, unspecified +C2839749|T037|HT|S37.519|ICD10CM|Primary blast injury of fallopian tube, unspecified|Primary blast injury of fallopian tube, unspecified +C2839750|T037|AB|S37.519A|ICD10CM|Primary blast injury of fallopian tube, unsp, init encntr|Primary blast injury of fallopian tube, unsp, init encntr +C2839750|T037|PT|S37.519A|ICD10CM|Primary blast injury of fallopian tube, unspecified, initial encounter|Primary blast injury of fallopian tube, unspecified, initial encounter +C2839751|T037|AB|S37.519D|ICD10CM|Primary blast injury of fallopian tube, unsp, subs encntr|Primary blast injury of fallopian tube, unsp, subs encntr +C2839751|T037|PT|S37.519D|ICD10CM|Primary blast injury of fallopian tube, unspecified, subsequent encounter|Primary blast injury of fallopian tube, unspecified, subsequent encounter +C2839752|T037|AB|S37.519S|ICD10CM|Primary blast injury of fallopian tube, unspecified, sequela|Primary blast injury of fallopian tube, unspecified, sequela +C2839752|T037|PT|S37.519S|ICD10CM|Primary blast injury of fallopian tube, unspecified, sequela|Primary blast injury of fallopian tube, unspecified, sequela +C0561809|T037|HT|S37.52|ICD10CM|Contusion of fallopian tube|Contusion of fallopian tube +C0561809|T037|AB|S37.52|ICD10CM|Contusion of fallopian tube|Contusion of fallopian tube +C2839753|T037|AB|S37.521|ICD10CM|Contusion of fallopian tube, unilateral|Contusion of fallopian tube, unilateral +C2839753|T037|HT|S37.521|ICD10CM|Contusion of fallopian tube, unilateral|Contusion of fallopian tube, unilateral +C2839754|T037|PT|S37.521A|ICD10CM|Contusion of fallopian tube, unilateral, initial encounter|Contusion of fallopian tube, unilateral, initial encounter +C2839754|T037|AB|S37.521A|ICD10CM|Contusion of fallopian tube, unilateral, initial encounter|Contusion of fallopian tube, unilateral, initial encounter +C2839755|T037|AB|S37.521D|ICD10CM|Contusion of fallopian tube, unilateral, subs encntr|Contusion of fallopian tube, unilateral, subs encntr +C2839755|T037|PT|S37.521D|ICD10CM|Contusion of fallopian tube, unilateral, subsequent encounter|Contusion of fallopian tube, unilateral, subsequent encounter +C2839756|T037|PT|S37.521S|ICD10CM|Contusion of fallopian tube, unilateral, sequela|Contusion of fallopian tube, unilateral, sequela +C2839756|T037|AB|S37.521S|ICD10CM|Contusion of fallopian tube, unilateral, sequela|Contusion of fallopian tube, unilateral, sequela +C2839757|T037|AB|S37.522|ICD10CM|Contusion of fallopian tube, bilateral|Contusion of fallopian tube, bilateral +C2839757|T037|HT|S37.522|ICD10CM|Contusion of fallopian tube, bilateral|Contusion of fallopian tube, bilateral +C2839758|T037|PT|S37.522A|ICD10CM|Contusion of fallopian tube, bilateral, initial encounter|Contusion of fallopian tube, bilateral, initial encounter +C2839758|T037|AB|S37.522A|ICD10CM|Contusion of fallopian tube, bilateral, initial encounter|Contusion of fallopian tube, bilateral, initial encounter +C2839759|T037|AB|S37.522D|ICD10CM|Contusion of fallopian tube, bilateral, subsequent encounter|Contusion of fallopian tube, bilateral, subsequent encounter +C2839759|T037|PT|S37.522D|ICD10CM|Contusion of fallopian tube, bilateral, subsequent encounter|Contusion of fallopian tube, bilateral, subsequent encounter +C2839760|T037|PT|S37.522S|ICD10CM|Contusion of fallopian tube, bilateral, sequela|Contusion of fallopian tube, bilateral, sequela +C2839760|T037|AB|S37.522S|ICD10CM|Contusion of fallopian tube, bilateral, sequela|Contusion of fallopian tube, bilateral, sequela +C0561809|T037|AB|S37.529|ICD10CM|Contusion of fallopian tube, unspecified|Contusion of fallopian tube, unspecified +C0561809|T037|HT|S37.529|ICD10CM|Contusion of fallopian tube, unspecified|Contusion of fallopian tube, unspecified +C2839762|T037|AB|S37.529A|ICD10CM|Contusion of fallopian tube, unspecified, initial encounter|Contusion of fallopian tube, unspecified, initial encounter +C2839762|T037|PT|S37.529A|ICD10CM|Contusion of fallopian tube, unspecified, initial encounter|Contusion of fallopian tube, unspecified, initial encounter +C2839763|T037|AB|S37.529D|ICD10CM|Contusion of fallopian tube, unspecified, subs encntr|Contusion of fallopian tube, unspecified, subs encntr +C2839763|T037|PT|S37.529D|ICD10CM|Contusion of fallopian tube, unspecified, subsequent encounter|Contusion of fallopian tube, unspecified, subsequent encounter +C2839764|T037|PT|S37.529S|ICD10CM|Contusion of fallopian tube, unspecified, sequela|Contusion of fallopian tube, unspecified, sequela +C2839764|T037|AB|S37.529S|ICD10CM|Contusion of fallopian tube, unspecified, sequela|Contusion of fallopian tube, unspecified, sequela +C0561811|T037|HT|S37.53|ICD10CM|Laceration of fallopian tube|Laceration of fallopian tube +C0561811|T037|AB|S37.53|ICD10CM|Laceration of fallopian tube|Laceration of fallopian tube +C2839765|T037|AB|S37.531|ICD10CM|Laceration of fallopian tube, unilateral|Laceration of fallopian tube, unilateral +C2839765|T037|HT|S37.531|ICD10CM|Laceration of fallopian tube, unilateral|Laceration of fallopian tube, unilateral +C2839766|T037|PT|S37.531A|ICD10CM|Laceration of fallopian tube, unilateral, initial encounter|Laceration of fallopian tube, unilateral, initial encounter +C2839766|T037|AB|S37.531A|ICD10CM|Laceration of fallopian tube, unilateral, initial encounter|Laceration of fallopian tube, unilateral, initial encounter +C2839767|T037|AB|S37.531D|ICD10CM|Laceration of fallopian tube, unilateral, subs encntr|Laceration of fallopian tube, unilateral, subs encntr +C2839767|T037|PT|S37.531D|ICD10CM|Laceration of fallopian tube, unilateral, subsequent encounter|Laceration of fallopian tube, unilateral, subsequent encounter +C2839768|T037|PT|S37.531S|ICD10CM|Laceration of fallopian tube, unilateral, sequela|Laceration of fallopian tube, unilateral, sequela +C2839768|T037|AB|S37.531S|ICD10CM|Laceration of fallopian tube, unilateral, sequela|Laceration of fallopian tube, unilateral, sequela +C2839769|T037|AB|S37.532|ICD10CM|Laceration of fallopian tube, bilateral|Laceration of fallopian tube, bilateral +C2839769|T037|HT|S37.532|ICD10CM|Laceration of fallopian tube, bilateral|Laceration of fallopian tube, bilateral +C2839770|T037|PT|S37.532A|ICD10CM|Laceration of fallopian tube, bilateral, initial encounter|Laceration of fallopian tube, bilateral, initial encounter +C2839770|T037|AB|S37.532A|ICD10CM|Laceration of fallopian tube, bilateral, initial encounter|Laceration of fallopian tube, bilateral, initial encounter +C2839771|T037|AB|S37.532D|ICD10CM|Laceration of fallopian tube, bilateral, subs encntr|Laceration of fallopian tube, bilateral, subs encntr +C2839771|T037|PT|S37.532D|ICD10CM|Laceration of fallopian tube, bilateral, subsequent encounter|Laceration of fallopian tube, bilateral, subsequent encounter +C2839772|T037|PT|S37.532S|ICD10CM|Laceration of fallopian tube, bilateral, sequela|Laceration of fallopian tube, bilateral, sequela +C2839772|T037|AB|S37.532S|ICD10CM|Laceration of fallopian tube, bilateral, sequela|Laceration of fallopian tube, bilateral, sequela +C0561811|T037|AB|S37.539|ICD10CM|Laceration of fallopian tube, unspecified|Laceration of fallopian tube, unspecified +C0561811|T037|HT|S37.539|ICD10CM|Laceration of fallopian tube, unspecified|Laceration of fallopian tube, unspecified +C2839774|T037|AB|S37.539A|ICD10CM|Laceration of fallopian tube, unspecified, initial encounter|Laceration of fallopian tube, unspecified, initial encounter +C2839774|T037|PT|S37.539A|ICD10CM|Laceration of fallopian tube, unspecified, initial encounter|Laceration of fallopian tube, unspecified, initial encounter +C2839775|T037|AB|S37.539D|ICD10CM|Laceration of fallopian tube, unspecified, subs encntr|Laceration of fallopian tube, unspecified, subs encntr +C2839775|T037|PT|S37.539D|ICD10CM|Laceration of fallopian tube, unspecified, subsequent encounter|Laceration of fallopian tube, unspecified, subsequent encounter +C2839776|T037|PT|S37.539S|ICD10CM|Laceration of fallopian tube, unspecified, sequela|Laceration of fallopian tube, unspecified, sequela +C2839776|T037|AB|S37.539S|ICD10CM|Laceration of fallopian tube, unspecified, sequela|Laceration of fallopian tube, unspecified, sequela +C2839787|T037|AB|S37.59|ICD10CM|Other injury of fallopian tube|Other injury of fallopian tube +C2839787|T037|HT|S37.59|ICD10CM|Other injury of fallopian tube|Other injury of fallopian tube +C2839777|T037|ET|S37.59|ICD10CM|Secondary blast injury of fallopian tube|Secondary blast injury of fallopian tube +C2839779|T037|AB|S37.591|ICD10CM|Other injury of fallopian tube, unilateral|Other injury of fallopian tube, unilateral +C2839779|T037|HT|S37.591|ICD10CM|Other injury of fallopian tube, unilateral|Other injury of fallopian tube, unilateral +C2839780|T037|AB|S37.591A|ICD10CM|Other injury of fallopian tube, unilateral, init encntr|Other injury of fallopian tube, unilateral, init encntr +C2839780|T037|PT|S37.591A|ICD10CM|Other injury of fallopian tube, unilateral, initial encounter|Other injury of fallopian tube, unilateral, initial encounter +C2839781|T037|AB|S37.591D|ICD10CM|Other injury of fallopian tube, unilateral, subs encntr|Other injury of fallopian tube, unilateral, subs encntr +C2839781|T037|PT|S37.591D|ICD10CM|Other injury of fallopian tube, unilateral, subsequent encounter|Other injury of fallopian tube, unilateral, subsequent encounter +C2839782|T037|PT|S37.591S|ICD10CM|Other injury of fallopian tube, unilateral, sequela|Other injury of fallopian tube, unilateral, sequela +C2839782|T037|AB|S37.591S|ICD10CM|Other injury of fallopian tube, unilateral, sequela|Other injury of fallopian tube, unilateral, sequela +C2839783|T037|AB|S37.592|ICD10CM|Other injury of fallopian tube, bilateral|Other injury of fallopian tube, bilateral +C2839783|T037|HT|S37.592|ICD10CM|Other injury of fallopian tube, bilateral|Other injury of fallopian tube, bilateral +C2839784|T037|AB|S37.592A|ICD10CM|Other injury of fallopian tube, bilateral, initial encounter|Other injury of fallopian tube, bilateral, initial encounter +C2839784|T037|PT|S37.592A|ICD10CM|Other injury of fallopian tube, bilateral, initial encounter|Other injury of fallopian tube, bilateral, initial encounter +C2839785|T037|AB|S37.592D|ICD10CM|Other injury of fallopian tube, bilateral, subs encntr|Other injury of fallopian tube, bilateral, subs encntr +C2839785|T037|PT|S37.592D|ICD10CM|Other injury of fallopian tube, bilateral, subsequent encounter|Other injury of fallopian tube, bilateral, subsequent encounter +C2839786|T037|PT|S37.592S|ICD10CM|Other injury of fallopian tube, bilateral, sequela|Other injury of fallopian tube, bilateral, sequela +C2839786|T037|AB|S37.592S|ICD10CM|Other injury of fallopian tube, bilateral, sequela|Other injury of fallopian tube, bilateral, sequela +C2839787|T037|AB|S37.599|ICD10CM|Other injury of fallopian tube, unspecified|Other injury of fallopian tube, unspecified +C2839787|T037|HT|S37.599|ICD10CM|Other injury of fallopian tube, unspecified|Other injury of fallopian tube, unspecified +C2839788|T037|AB|S37.599A|ICD10CM|Other injury of fallopian tube, unspecified, init encntr|Other injury of fallopian tube, unspecified, init encntr +C2839788|T037|PT|S37.599A|ICD10CM|Other injury of fallopian tube, unspecified, initial encounter|Other injury of fallopian tube, unspecified, initial encounter +C2839789|T037|AB|S37.599D|ICD10CM|Other injury of fallopian tube, unspecified, subs encntr|Other injury of fallopian tube, unspecified, subs encntr +C2839789|T037|PT|S37.599D|ICD10CM|Other injury of fallopian tube, unspecified, subsequent encounter|Other injury of fallopian tube, unspecified, subsequent encounter +C2839790|T037|PT|S37.599S|ICD10CM|Other injury of fallopian tube, unspecified, sequela|Other injury of fallopian tube, unspecified, sequela +C2839790|T037|AB|S37.599S|ICD10CM|Other injury of fallopian tube, unspecified, sequela|Other injury of fallopian tube, unspecified, sequela +C0434175|T037|PT|S37.6|ICD10|Injury of uterus|Injury of uterus +C0434175|T037|HT|S37.6|ICD10CM|Injury of uterus|Injury of uterus +C0434175|T037|AB|S37.6|ICD10CM|Injury of uterus|Injury of uterus +C2839791|T037|AB|S37.60|ICD10CM|Unspecified injury of uterus|Unspecified injury of uterus +C2839791|T037|HT|S37.60|ICD10CM|Unspecified injury of uterus|Unspecified injury of uterus +C2839792|T037|PT|S37.60XA|ICD10CM|Unspecified injury of uterus, initial encounter|Unspecified injury of uterus, initial encounter +C2839792|T037|AB|S37.60XA|ICD10CM|Unspecified injury of uterus, initial encounter|Unspecified injury of uterus, initial encounter +C2839793|T037|PT|S37.60XD|ICD10CM|Unspecified injury of uterus, subsequent encounter|Unspecified injury of uterus, subsequent encounter +C2839793|T037|AB|S37.60XD|ICD10CM|Unspecified injury of uterus, subsequent encounter|Unspecified injury of uterus, subsequent encounter +C2839794|T037|PT|S37.60XS|ICD10CM|Unspecified injury of uterus, sequela|Unspecified injury of uterus, sequela +C2839794|T037|AB|S37.60XS|ICD10CM|Unspecified injury of uterus, sequela|Unspecified injury of uterus, sequela +C0561813|T037|HT|S37.62|ICD10CM|Contusion of uterus|Contusion of uterus +C0561813|T037|AB|S37.62|ICD10CM|Contusion of uterus|Contusion of uterus +C2839795|T037|PT|S37.62XA|ICD10CM|Contusion of uterus, initial encounter|Contusion of uterus, initial encounter +C2839795|T037|AB|S37.62XA|ICD10CM|Contusion of uterus, initial encounter|Contusion of uterus, initial encounter +C2839796|T037|PT|S37.62XD|ICD10CM|Contusion of uterus, subsequent encounter|Contusion of uterus, subsequent encounter +C2839796|T037|AB|S37.62XD|ICD10CM|Contusion of uterus, subsequent encounter|Contusion of uterus, subsequent encounter +C2839797|T037|PT|S37.62XS|ICD10CM|Contusion of uterus, sequela|Contusion of uterus, sequela +C2839797|T037|AB|S37.62XS|ICD10CM|Contusion of uterus, sequela|Contusion of uterus, sequela +C0561815|T037|HT|S37.63|ICD10CM|Laceration of uterus|Laceration of uterus +C0561815|T037|AB|S37.63|ICD10CM|Laceration of uterus|Laceration of uterus +C2839798|T037|PT|S37.63XA|ICD10CM|Laceration of uterus, initial encounter|Laceration of uterus, initial encounter +C2839798|T037|AB|S37.63XA|ICD10CM|Laceration of uterus, initial encounter|Laceration of uterus, initial encounter +C2839799|T037|PT|S37.63XD|ICD10CM|Laceration of uterus, subsequent encounter|Laceration of uterus, subsequent encounter +C2839799|T037|AB|S37.63XD|ICD10CM|Laceration of uterus, subsequent encounter|Laceration of uterus, subsequent encounter +C2839800|T037|PT|S37.63XS|ICD10CM|Laceration of uterus, sequela|Laceration of uterus, sequela +C2839800|T037|AB|S37.63XS|ICD10CM|Laceration of uterus, sequela|Laceration of uterus, sequela +C2839801|T037|AB|S37.69|ICD10CM|Other injury of uterus|Other injury of uterus +C2839801|T037|HT|S37.69|ICD10CM|Other injury of uterus|Other injury of uterus +C2839802|T037|PT|S37.69XA|ICD10CM|Other injury of uterus, initial encounter|Other injury of uterus, initial encounter +C2839802|T037|AB|S37.69XA|ICD10CM|Other injury of uterus, initial encounter|Other injury of uterus, initial encounter +C2839803|T037|PT|S37.69XD|ICD10CM|Other injury of uterus, subsequent encounter|Other injury of uterus, subsequent encounter +C2839803|T037|AB|S37.69XD|ICD10CM|Other injury of uterus, subsequent encounter|Other injury of uterus, subsequent encounter +C2839804|T037|PT|S37.69XS|ICD10CM|Other injury of uterus, sequela|Other injury of uterus, sequela +C2839804|T037|AB|S37.69XS|ICD10CM|Other injury of uterus, sequela|Other injury of uterus, sequela +C0452056|T037|PT|S37.7|ICD10|Injury of multiple pelvic organs|Injury of multiple pelvic organs +C0478263|T037|PT|S37.8|ICD10|Injury of other pelvic organs|Injury of other pelvic organs +C2839833|T037|HT|S37.8|ICD10CM|Injury of other urinary and pelvic organs|Injury of other urinary and pelvic organs +C2839833|T037|AB|S37.8|ICD10CM|Injury of other urinary and pelvic organs|Injury of other urinary and pelvic organs +C0347637|T037|HT|S37.81|ICD10CM|Injury of adrenal gland|Injury of adrenal gland +C0347637|T037|AB|S37.81|ICD10CM|Injury of adrenal gland|Injury of adrenal gland +C0347639|T037|HT|S37.812|ICD10CM|Contusion of adrenal gland|Contusion of adrenal gland +C0347639|T037|AB|S37.812|ICD10CM|Contusion of adrenal gland|Contusion of adrenal gland +C2839805|T037|PT|S37.812A|ICD10CM|Contusion of adrenal gland, initial encounter|Contusion of adrenal gland, initial encounter +C2839805|T037|AB|S37.812A|ICD10CM|Contusion of adrenal gland, initial encounter|Contusion of adrenal gland, initial encounter +C2839806|T037|PT|S37.812D|ICD10CM|Contusion of adrenal gland, subsequent encounter|Contusion of adrenal gland, subsequent encounter +C2839806|T037|AB|S37.812D|ICD10CM|Contusion of adrenal gland, subsequent encounter|Contusion of adrenal gland, subsequent encounter +C2839807|T037|PT|S37.812S|ICD10CM|Contusion of adrenal gland, sequela|Contusion of adrenal gland, sequela +C2839807|T037|AB|S37.812S|ICD10CM|Contusion of adrenal gland, sequela|Contusion of adrenal gland, sequela +C0347640|T037|HT|S37.813|ICD10CM|Laceration of adrenal gland|Laceration of adrenal gland +C0347640|T037|AB|S37.813|ICD10CM|Laceration of adrenal gland|Laceration of adrenal gland +C2839808|T037|PT|S37.813A|ICD10CM|Laceration of adrenal gland, initial encounter|Laceration of adrenal gland, initial encounter +C2839808|T037|AB|S37.813A|ICD10CM|Laceration of adrenal gland, initial encounter|Laceration of adrenal gland, initial encounter +C2839809|T037|PT|S37.813D|ICD10CM|Laceration of adrenal gland, subsequent encounter|Laceration of adrenal gland, subsequent encounter +C2839809|T037|AB|S37.813D|ICD10CM|Laceration of adrenal gland, subsequent encounter|Laceration of adrenal gland, subsequent encounter +C2839810|T037|PT|S37.813S|ICD10CM|Laceration of adrenal gland, sequela|Laceration of adrenal gland, sequela +C2839810|T037|AB|S37.813S|ICD10CM|Laceration of adrenal gland, sequela|Laceration of adrenal gland, sequela +C2839811|T037|AB|S37.818|ICD10CM|Other injury of adrenal gland|Other injury of adrenal gland +C2839811|T037|HT|S37.818|ICD10CM|Other injury of adrenal gland|Other injury of adrenal gland +C2839812|T037|PT|S37.818A|ICD10CM|Other injury of adrenal gland, initial encounter|Other injury of adrenal gland, initial encounter +C2839812|T037|AB|S37.818A|ICD10CM|Other injury of adrenal gland, initial encounter|Other injury of adrenal gland, initial encounter +C2839813|T037|PT|S37.818D|ICD10CM|Other injury of adrenal gland, subsequent encounter|Other injury of adrenal gland, subsequent encounter +C2839813|T037|AB|S37.818D|ICD10CM|Other injury of adrenal gland, subsequent encounter|Other injury of adrenal gland, subsequent encounter +C2839814|T037|PT|S37.818S|ICD10CM|Other injury of adrenal gland, sequela|Other injury of adrenal gland, sequela +C2839814|T037|AB|S37.818S|ICD10CM|Other injury of adrenal gland, sequela|Other injury of adrenal gland, sequela +C2839815|T037|AB|S37.819|ICD10CM|Unspecified injury of adrenal gland|Unspecified injury of adrenal gland +C2839815|T037|HT|S37.819|ICD10CM|Unspecified injury of adrenal gland|Unspecified injury of adrenal gland +C2839816|T037|PT|S37.819A|ICD10CM|Unspecified injury of adrenal gland, initial encounter|Unspecified injury of adrenal gland, initial encounter +C2839816|T037|AB|S37.819A|ICD10CM|Unspecified injury of adrenal gland, initial encounter|Unspecified injury of adrenal gland, initial encounter +C2839817|T037|PT|S37.819D|ICD10CM|Unspecified injury of adrenal gland, subsequent encounter|Unspecified injury of adrenal gland, subsequent encounter +C2839817|T037|AB|S37.819D|ICD10CM|Unspecified injury of adrenal gland, subsequent encounter|Unspecified injury of adrenal gland, subsequent encounter +C2839818|T037|PT|S37.819S|ICD10CM|Unspecified injury of adrenal gland, sequela|Unspecified injury of adrenal gland, sequela +C2839818|T037|AB|S37.819S|ICD10CM|Unspecified injury of adrenal gland, sequela|Unspecified injury of adrenal gland, sequela +C0403688|T037|HT|S37.82|ICD10CM|Injury of prostate|Injury of prostate +C0403688|T037|AB|S37.82|ICD10CM|Injury of prostate|Injury of prostate +C0561783|T037|HT|S37.822|ICD10CM|Contusion of prostate|Contusion of prostate +C0561783|T037|AB|S37.822|ICD10CM|Contusion of prostate|Contusion of prostate +C2839819|T037|PT|S37.822A|ICD10CM|Contusion of prostate, initial encounter|Contusion of prostate, initial encounter +C2839819|T037|AB|S37.822A|ICD10CM|Contusion of prostate, initial encounter|Contusion of prostate, initial encounter +C2839820|T037|PT|S37.822D|ICD10CM|Contusion of prostate, subsequent encounter|Contusion of prostate, subsequent encounter +C2839820|T037|AB|S37.822D|ICD10CM|Contusion of prostate, subsequent encounter|Contusion of prostate, subsequent encounter +C2839821|T037|PT|S37.822S|ICD10CM|Contusion of prostate, sequela|Contusion of prostate, sequela +C2839821|T037|AB|S37.822S|ICD10CM|Contusion of prostate, sequela|Contusion of prostate, sequela +C0561785|T037|HT|S37.823|ICD10CM|Laceration of prostate|Laceration of prostate +C0561785|T037|AB|S37.823|ICD10CM|Laceration of prostate|Laceration of prostate +C2839822|T037|PT|S37.823A|ICD10CM|Laceration of prostate, initial encounter|Laceration of prostate, initial encounter +C2839822|T037|AB|S37.823A|ICD10CM|Laceration of prostate, initial encounter|Laceration of prostate, initial encounter +C2839823|T037|PT|S37.823D|ICD10CM|Laceration of prostate, subsequent encounter|Laceration of prostate, subsequent encounter +C2839823|T037|AB|S37.823D|ICD10CM|Laceration of prostate, subsequent encounter|Laceration of prostate, subsequent encounter +C2839824|T037|PT|S37.823S|ICD10CM|Laceration of prostate, sequela|Laceration of prostate, sequela +C2839824|T037|AB|S37.823S|ICD10CM|Laceration of prostate, sequela|Laceration of prostate, sequela +C2839825|T037|AB|S37.828|ICD10CM|Other injury of prostate|Other injury of prostate +C2839825|T037|HT|S37.828|ICD10CM|Other injury of prostate|Other injury of prostate +C2839826|T037|PT|S37.828A|ICD10CM|Other injury of prostate, initial encounter|Other injury of prostate, initial encounter +C2839826|T037|AB|S37.828A|ICD10CM|Other injury of prostate, initial encounter|Other injury of prostate, initial encounter +C2839827|T037|PT|S37.828D|ICD10CM|Other injury of prostate, subsequent encounter|Other injury of prostate, subsequent encounter +C2839827|T037|AB|S37.828D|ICD10CM|Other injury of prostate, subsequent encounter|Other injury of prostate, subsequent encounter +C2839828|T037|PT|S37.828S|ICD10CM|Other injury of prostate, sequela|Other injury of prostate, sequela +C2839828|T037|AB|S37.828S|ICD10CM|Other injury of prostate, sequela|Other injury of prostate, sequela +C2839829|T037|AB|S37.829|ICD10CM|Unspecified injury of prostate|Unspecified injury of prostate +C2839829|T037|HT|S37.829|ICD10CM|Unspecified injury of prostate|Unspecified injury of prostate +C2839830|T037|PT|S37.829A|ICD10CM|Unspecified injury of prostate, initial encounter|Unspecified injury of prostate, initial encounter +C2839830|T037|AB|S37.829A|ICD10CM|Unspecified injury of prostate, initial encounter|Unspecified injury of prostate, initial encounter +C2839831|T037|PT|S37.829D|ICD10CM|Unspecified injury of prostate, subsequent encounter|Unspecified injury of prostate, subsequent encounter +C2839831|T037|AB|S37.829D|ICD10CM|Unspecified injury of prostate, subsequent encounter|Unspecified injury of prostate, subsequent encounter +C2839832|T037|PT|S37.829S|ICD10CM|Unspecified injury of prostate, sequela|Unspecified injury of prostate, sequela +C2839832|T037|AB|S37.829S|ICD10CM|Unspecified injury of prostate, sequela|Unspecified injury of prostate, sequela +C2839833|T037|AB|S37.89|ICD10CM|Injury of other urinary and pelvic organ|Injury of other urinary and pelvic organ +C2839833|T037|HT|S37.89|ICD10CM|Injury of other urinary and pelvic organ|Injury of other urinary and pelvic organ +C2839834|T037|AB|S37.892|ICD10CM|Contusion of other urinary and pelvic organ|Contusion of other urinary and pelvic organ +C2839834|T037|HT|S37.892|ICD10CM|Contusion of other urinary and pelvic organ|Contusion of other urinary and pelvic organ +C2839835|T037|AB|S37.892A|ICD10CM|Contusion of other urinary and pelvic organ, init encntr|Contusion of other urinary and pelvic organ, init encntr +C2839835|T037|PT|S37.892A|ICD10CM|Contusion of other urinary and pelvic organ, initial encounter|Contusion of other urinary and pelvic organ, initial encounter +C2839836|T037|AB|S37.892D|ICD10CM|Contusion of other urinary and pelvic organ, subs encntr|Contusion of other urinary and pelvic organ, subs encntr +C2839836|T037|PT|S37.892D|ICD10CM|Contusion of other urinary and pelvic organ, subsequent encounter|Contusion of other urinary and pelvic organ, subsequent encounter +C2839837|T037|PT|S37.892S|ICD10CM|Contusion of other urinary and pelvic organ, sequela|Contusion of other urinary and pelvic organ, sequela +C2839837|T037|AB|S37.892S|ICD10CM|Contusion of other urinary and pelvic organ, sequela|Contusion of other urinary and pelvic organ, sequela +C2839838|T037|AB|S37.893|ICD10CM|Laceration of other urinary and pelvic organ|Laceration of other urinary and pelvic organ +C2839838|T037|HT|S37.893|ICD10CM|Laceration of other urinary and pelvic organ|Laceration of other urinary and pelvic organ +C2839839|T037|AB|S37.893A|ICD10CM|Laceration of other urinary and pelvic organ, init encntr|Laceration of other urinary and pelvic organ, init encntr +C2839839|T037|PT|S37.893A|ICD10CM|Laceration of other urinary and pelvic organ, initial encounter|Laceration of other urinary and pelvic organ, initial encounter +C2839840|T037|AB|S37.893D|ICD10CM|Laceration of other urinary and pelvic organ, subs encntr|Laceration of other urinary and pelvic organ, subs encntr +C2839840|T037|PT|S37.893D|ICD10CM|Laceration of other urinary and pelvic organ, subsequent encounter|Laceration of other urinary and pelvic organ, subsequent encounter +C2839841|T037|PT|S37.893S|ICD10CM|Laceration of other urinary and pelvic organ, sequela|Laceration of other urinary and pelvic organ, sequela +C2839841|T037|AB|S37.893S|ICD10CM|Laceration of other urinary and pelvic organ, sequela|Laceration of other urinary and pelvic organ, sequela +C2839842|T037|AB|S37.898|ICD10CM|Other injury of other urinary and pelvic organ|Other injury of other urinary and pelvic organ +C2839842|T037|HT|S37.898|ICD10CM|Other injury of other urinary and pelvic organ|Other injury of other urinary and pelvic organ +C2839843|T037|AB|S37.898A|ICD10CM|Other injury of other urinary and pelvic organ, init encntr|Other injury of other urinary and pelvic organ, init encntr +C2839843|T037|PT|S37.898A|ICD10CM|Other injury of other urinary and pelvic organ, initial encounter|Other injury of other urinary and pelvic organ, initial encounter +C2839844|T037|AB|S37.898D|ICD10CM|Other injury of other urinary and pelvic organ, subs encntr|Other injury of other urinary and pelvic organ, subs encntr +C2839844|T037|PT|S37.898D|ICD10CM|Other injury of other urinary and pelvic organ, subsequent encounter|Other injury of other urinary and pelvic organ, subsequent encounter +C2839845|T037|PT|S37.898S|ICD10CM|Other injury of other urinary and pelvic organ, sequela|Other injury of other urinary and pelvic organ, sequela +C2839845|T037|AB|S37.898S|ICD10CM|Other injury of other urinary and pelvic organ, sequela|Other injury of other urinary and pelvic organ, sequela +C2839846|T037|AB|S37.899|ICD10CM|Unspecified injury of other urinary and pelvic organ|Unspecified injury of other urinary and pelvic organ +C2839846|T037|HT|S37.899|ICD10CM|Unspecified injury of other urinary and pelvic organ|Unspecified injury of other urinary and pelvic organ +C2839847|T037|AB|S37.899A|ICD10CM|Unsp injury of other urinary and pelvic organ, init encntr|Unsp injury of other urinary and pelvic organ, init encntr +C2839847|T037|PT|S37.899A|ICD10CM|Unspecified injury of other urinary and pelvic organ, initial encounter|Unspecified injury of other urinary and pelvic organ, initial encounter +C2839848|T037|AB|S37.899D|ICD10CM|Unsp injury of other urinary and pelvic organ, subs encntr|Unsp injury of other urinary and pelvic organ, subs encntr +C2839848|T037|PT|S37.899D|ICD10CM|Unspecified injury of other urinary and pelvic organ, subsequent encounter|Unspecified injury of other urinary and pelvic organ, subsequent encounter +C2839849|T037|AB|S37.899S|ICD10CM|Unsp injury of other urinary and pelvic organ, sequela|Unsp injury of other urinary and pelvic organ, sequela +C2839849|T037|PT|S37.899S|ICD10CM|Unspecified injury of other urinary and pelvic organ, sequela|Unspecified injury of other urinary and pelvic organ, sequela +C0478263|T037|PT|S37.9|ICD10|Injury of unspecified pelvic organ|Injury of unspecified pelvic organ +C2839850|T037|AB|S37.9|ICD10CM|Injury of unspecified urinary and pelvic organ|Injury of unspecified urinary and pelvic organ +C2839850|T037|HT|S37.9|ICD10CM|Injury of unspecified urinary and pelvic organ|Injury of unspecified urinary and pelvic organ +C2839851|T037|AB|S37.90|ICD10CM|Unspecified injury of unspecified urinary and pelvic organ|Unspecified injury of unspecified urinary and pelvic organ +C2839851|T037|HT|S37.90|ICD10CM|Unspecified injury of unspecified urinary and pelvic organ|Unspecified injury of unspecified urinary and pelvic organ +C2977889|T037|AB|S37.90XA|ICD10CM|Unsp injury of unsp urinary and pelvic organ, init encntr|Unsp injury of unsp urinary and pelvic organ, init encntr +C2977889|T037|PT|S37.90XA|ICD10CM|Unspecified injury of unspecified urinary and pelvic organ, initial encounter|Unspecified injury of unspecified urinary and pelvic organ, initial encounter +C2977890|T037|AB|S37.90XD|ICD10CM|Unsp injury of unsp urinary and pelvic organ, subs encntr|Unsp injury of unsp urinary and pelvic organ, subs encntr +C2977890|T037|PT|S37.90XD|ICD10CM|Unspecified injury of unspecified urinary and pelvic organ, subsequent encounter|Unspecified injury of unspecified urinary and pelvic organ, subsequent encounter +C2977891|T037|AB|S37.90XS|ICD10CM|Unsp injury of unspecified urinary and pelvic organ, sequela|Unsp injury of unspecified urinary and pelvic organ, sequela +C2977891|T037|PT|S37.90XS|ICD10CM|Unspecified injury of unspecified urinary and pelvic organ, sequela|Unspecified injury of unspecified urinary and pelvic organ, sequela +C2839855|T037|AB|S37.92|ICD10CM|Contusion of unspecified urinary and pelvic organ|Contusion of unspecified urinary and pelvic organ +C2839855|T037|HT|S37.92|ICD10CM|Contusion of unspecified urinary and pelvic organ|Contusion of unspecified urinary and pelvic organ +C2977892|T037|AB|S37.92XA|ICD10CM|Contusion of unsp urinary and pelvic organ, init encntr|Contusion of unsp urinary and pelvic organ, init encntr +C2977892|T037|PT|S37.92XA|ICD10CM|Contusion of unspecified urinary and pelvic organ, initial encounter|Contusion of unspecified urinary and pelvic organ, initial encounter +C2977893|T037|AB|S37.92XD|ICD10CM|Contusion of unsp urinary and pelvic organ, subs encntr|Contusion of unsp urinary and pelvic organ, subs encntr +C2977893|T037|PT|S37.92XD|ICD10CM|Contusion of unspecified urinary and pelvic organ, subsequent encounter|Contusion of unspecified urinary and pelvic organ, subsequent encounter +C2977894|T037|PT|S37.92XS|ICD10CM|Contusion of unspecified urinary and pelvic organ, sequela|Contusion of unspecified urinary and pelvic organ, sequela +C2977894|T037|AB|S37.92XS|ICD10CM|Contusion of unspecified urinary and pelvic organ, sequela|Contusion of unspecified urinary and pelvic organ, sequela +C2839859|T037|AB|S37.93|ICD10CM|Laceration of unspecified urinary and pelvic organ|Laceration of unspecified urinary and pelvic organ +C2839859|T037|HT|S37.93|ICD10CM|Laceration of unspecified urinary and pelvic organ|Laceration of unspecified urinary and pelvic organ +C2977895|T037|AB|S37.93XA|ICD10CM|Laceration of unsp urinary and pelvic organ, init encntr|Laceration of unsp urinary and pelvic organ, init encntr +C2977895|T037|PT|S37.93XA|ICD10CM|Laceration of unspecified urinary and pelvic organ, initial encounter|Laceration of unspecified urinary and pelvic organ, initial encounter +C2977896|T037|AB|S37.93XD|ICD10CM|Laceration of unsp urinary and pelvic organ, subs encntr|Laceration of unsp urinary and pelvic organ, subs encntr +C2977896|T037|PT|S37.93XD|ICD10CM|Laceration of unspecified urinary and pelvic organ, subsequent encounter|Laceration of unspecified urinary and pelvic organ, subsequent encounter +C2977897|T037|PT|S37.93XS|ICD10CM|Laceration of unspecified urinary and pelvic organ, sequela|Laceration of unspecified urinary and pelvic organ, sequela +C2977897|T037|AB|S37.93XS|ICD10CM|Laceration of unspecified urinary and pelvic organ, sequela|Laceration of unspecified urinary and pelvic organ, sequela +C2839863|T037|AB|S37.99|ICD10CM|Other injury of unspecified urinary and pelvic organ|Other injury of unspecified urinary and pelvic organ +C2839863|T037|HT|S37.99|ICD10CM|Other injury of unspecified urinary and pelvic organ|Other injury of unspecified urinary and pelvic organ +C2977898|T037|AB|S37.99XA|ICD10CM|Other injury of unsp urinary and pelvic organ, init encntr|Other injury of unsp urinary and pelvic organ, init encntr +C2977898|T037|PT|S37.99XA|ICD10CM|Other injury of unspecified urinary and pelvic organ, initial encounter|Other injury of unspecified urinary and pelvic organ, initial encounter +C2977899|T037|AB|S37.99XD|ICD10CM|Other injury of unsp urinary and pelvic organ, subs encntr|Other injury of unsp urinary and pelvic organ, subs encntr +C2977899|T037|PT|S37.99XD|ICD10CM|Other injury of unspecified urinary and pelvic organ, subsequent encounter|Other injury of unspecified urinary and pelvic organ, subsequent encounter +C2977900|T037|AB|S37.99XS|ICD10CM|Other injury of unsp urinary and pelvic organ, sequela|Other injury of unsp urinary and pelvic organ, sequela +C2977900|T037|PT|S37.99XS|ICD10CM|Other injury of unspecified urinary and pelvic organ, sequela|Other injury of unspecified urinary and pelvic organ, sequela +C2977737|T033|ET|S38|ICD10CM|An amputation not identified as partial or complete should be coded to complete|An amputation not identified as partial or complete should be coded to complete +C2839867|T037|AB|S38|ICD10CM|Crush inj & traum amp of abd,low back, pelv & extrn genitals|Crush inj & traum amp of abd,low back, pelv & extrn genitals +C2839867|T037|HT|S38|ICD10CM|Crushing injury and traumatic amputation of abdomen, lower back, pelvis and external genitals|Crushing injury and traumatic amputation of abdomen, lower back, pelvis and external genitals +C0495855|T037|HT|S38|ICD10|Crushing injury and traumatic amputation of part of abdomen, lower back and pelvis|Crushing injury and traumatic amputation of part of abdomen, lower back and pelvis +C0160963|T037|PT|S38.0|ICD10|Crushing injury of external genital organs|Crushing injury of external genital organs +C0160963|T037|HT|S38.0|ICD10CM|Crushing injury of external genital organs|Crushing injury of external genital organs +C0160963|T037|AB|S38.0|ICD10CM|Crushing injury of external genital organs|Crushing injury of external genital organs +C2839868|T037|AB|S38.00|ICD10CM|Crushing injury of unspecified external genital organs|Crushing injury of unspecified external genital organs +C2839868|T037|HT|S38.00|ICD10CM|Crushing injury of unspecified external genital organs|Crushing injury of unspecified external genital organs +C2839869|T037|AB|S38.001|ICD10CM|Crushing injury of unspecified external genital organs, male|Crushing injury of unspecified external genital organs, male +C2839869|T037|HT|S38.001|ICD10CM|Crushing injury of unspecified external genital organs, male|Crushing injury of unspecified external genital organs, male +C2839870|T037|AB|S38.001A|ICD10CM|Crushing injury of unsp external genital organs, male, init|Crushing injury of unsp external genital organs, male, init +C2839870|T037|PT|S38.001A|ICD10CM|Crushing injury of unspecified external genital organs, male, initial encounter|Crushing injury of unspecified external genital organs, male, initial encounter +C2839871|T037|AB|S38.001D|ICD10CM|Crushing injury of unsp external genital organs, male, subs|Crushing injury of unsp external genital organs, male, subs +C2839871|T037|PT|S38.001D|ICD10CM|Crushing injury of unspecified external genital organs, male, subsequent encounter|Crushing injury of unspecified external genital organs, male, subsequent encounter +C2839872|T037|AB|S38.001S|ICD10CM|Crushing inj unsp external genital organs, male, sequela|Crushing inj unsp external genital organs, male, sequela +C2839872|T037|PT|S38.001S|ICD10CM|Crushing injury of unspecified external genital organs, male, sequela|Crushing injury of unspecified external genital organs, male, sequela +C2839873|T037|AB|S38.002|ICD10CM|Crushing injury of unsp external genital organs, female|Crushing injury of unsp external genital organs, female +C2839873|T037|HT|S38.002|ICD10CM|Crushing injury of unspecified external genital organs, female|Crushing injury of unspecified external genital organs, female +C2839874|T037|AB|S38.002A|ICD10CM|Crushing inj unsp external genital organs, female, init|Crushing inj unsp external genital organs, female, init +C2839874|T037|PT|S38.002A|ICD10CM|Crushing injury of unspecified external genital organs, female, initial encounter|Crushing injury of unspecified external genital organs, female, initial encounter +C2839875|T037|AB|S38.002D|ICD10CM|Crushing inj unsp external genital organs, female, subs|Crushing inj unsp external genital organs, female, subs +C2839875|T037|PT|S38.002D|ICD10CM|Crushing injury of unspecified external genital organs, female, subsequent encounter|Crushing injury of unspecified external genital organs, female, subsequent encounter +C2839876|T037|AB|S38.002S|ICD10CM|Crushing inj unsp external genital organs, female, sequela|Crushing inj unsp external genital organs, female, sequela +C2839876|T037|PT|S38.002S|ICD10CM|Crushing injury of unspecified external genital organs, female, sequela|Crushing injury of unspecified external genital organs, female, sequela +C0273439|T037|HT|S38.01|ICD10CM|Crushing injury of penis|Crushing injury of penis +C0273439|T037|AB|S38.01|ICD10CM|Crushing injury of penis|Crushing injury of penis +C2839877|T037|AB|S38.01XA|ICD10CM|Crushing injury of penis, initial encounter|Crushing injury of penis, initial encounter +C2839877|T037|PT|S38.01XA|ICD10CM|Crushing injury of penis, initial encounter|Crushing injury of penis, initial encounter +C2839878|T037|AB|S38.01XD|ICD10CM|Crushing injury of penis, subsequent encounter|Crushing injury of penis, subsequent encounter +C2839878|T037|PT|S38.01XD|ICD10CM|Crushing injury of penis, subsequent encounter|Crushing injury of penis, subsequent encounter +C2839879|T037|AB|S38.01XS|ICD10CM|Crushing injury of penis, sequela|Crushing injury of penis, sequela +C2839879|T037|PT|S38.01XS|ICD10CM|Crushing injury of penis, sequela|Crushing injury of penis, sequela +C0433073|T037|AB|S38.02|ICD10CM|Crushing injury of scrotum and testis|Crushing injury of scrotum and testis +C0433073|T037|HT|S38.02|ICD10CM|Crushing injury of scrotum and testis|Crushing injury of scrotum and testis +C2839880|T037|AB|S38.02XA|ICD10CM|Crushing injury of scrotum and testis, initial encounter|Crushing injury of scrotum and testis, initial encounter +C2839880|T037|PT|S38.02XA|ICD10CM|Crushing injury of scrotum and testis, initial encounter|Crushing injury of scrotum and testis, initial encounter +C2839881|T037|AB|S38.02XD|ICD10CM|Crushing injury of scrotum and testis, subsequent encounter|Crushing injury of scrotum and testis, subsequent encounter +C2839881|T037|PT|S38.02XD|ICD10CM|Crushing injury of scrotum and testis, subsequent encounter|Crushing injury of scrotum and testis, subsequent encounter +C2839882|T037|AB|S38.02XS|ICD10CM|Crushing injury of scrotum and testis, sequela|Crushing injury of scrotum and testis, sequela +C2839882|T037|PT|S38.02XS|ICD10CM|Crushing injury of scrotum and testis, sequela|Crushing injury of scrotum and testis, sequela +C0273437|T037|HT|S38.03|ICD10CM|Crushing injury of vulva|Crushing injury of vulva +C0273437|T037|AB|S38.03|ICD10CM|Crushing injury of vulva|Crushing injury of vulva +C2839883|T037|AB|S38.03XA|ICD10CM|Crushing injury of vulva, initial encounter|Crushing injury of vulva, initial encounter +C2839883|T037|PT|S38.03XA|ICD10CM|Crushing injury of vulva, initial encounter|Crushing injury of vulva, initial encounter +C2839884|T037|AB|S38.03XD|ICD10CM|Crushing injury of vulva, subsequent encounter|Crushing injury of vulva, subsequent encounter +C2839884|T037|PT|S38.03XD|ICD10CM|Crushing injury of vulva, subsequent encounter|Crushing injury of vulva, subsequent encounter +C2839885|T037|AB|S38.03XS|ICD10CM|Crushing injury of vulva, sequela|Crushing injury of vulva, sequela +C2839885|T037|PT|S38.03XS|ICD10CM|Crushing injury of vulva, sequela|Crushing injury of vulva, sequela +C2839886|T037|AB|S38.1|ICD10CM|Crushing injury of abdomen, lower back, and pelvis|Crushing injury of abdomen, lower back, and pelvis +C2839886|T037|HT|S38.1|ICD10CM|Crushing injury of abdomen, lower back, and pelvis|Crushing injury of abdomen, lower back, and pelvis +C0478264|T037|PT|S38.1|ICD10|Crushing injury of other and unspecified parts of abdomen, lower back and pelvis|Crushing injury of other and unspecified parts of abdomen, lower back and pelvis +C2839887|T037|AB|S38.1XXA|ICD10CM|Crushing injury of abdomen, lower back, and pelvis, init|Crushing injury of abdomen, lower back, and pelvis, init +C2839887|T037|PT|S38.1XXA|ICD10CM|Crushing injury of abdomen, lower back, and pelvis, initial encounter|Crushing injury of abdomen, lower back, and pelvis, initial encounter +C2839888|T037|AB|S38.1XXD|ICD10CM|Crushing injury of abdomen, lower back, and pelvis, subs|Crushing injury of abdomen, lower back, and pelvis, subs +C2839888|T037|PT|S38.1XXD|ICD10CM|Crushing injury of abdomen, lower back, and pelvis, subsequent encounter|Crushing injury of abdomen, lower back, and pelvis, subsequent encounter +C2839889|T037|AB|S38.1XXS|ICD10CM|Crushing injury of abdomen, lower back, and pelvis, sequela|Crushing injury of abdomen, lower back, and pelvis, sequela +C2839889|T037|PT|S38.1XXS|ICD10CM|Crushing injury of abdomen, lower back, and pelvis, sequela|Crushing injury of abdomen, lower back, and pelvis, sequela +C0452040|T037|PT|S38.2|ICD10|Traumatic amputation of external genital organs|Traumatic amputation of external genital organs +C0452040|T037|HT|S38.2|ICD10CM|Traumatic amputation of external genital organs|Traumatic amputation of external genital organs +C0452040|T037|AB|S38.2|ICD10CM|Traumatic amputation of external genital organs|Traumatic amputation of external genital organs +C2839890|T037|ET|S38.21|ICD10CM|Traumatic amputation of clitoris|Traumatic amputation of clitoris +C2839892|T037|HT|S38.21|ICD10CM|Traumatic amputation of female external genital organs|Traumatic amputation of female external genital organs +C2839892|T037|AB|S38.21|ICD10CM|Traumatic amputation of female external genital organs|Traumatic amputation of female external genital organs +C2839891|T037|ET|S38.21|ICD10CM|Traumatic amputation of labium (majus) (minus)|Traumatic amputation of labium (majus) (minus) +C1387294|T037|ET|S38.21|ICD10CM|Traumatic amputation of vulva|Traumatic amputation of vulva +C2839893|T037|AB|S38.211|ICD10CM|Complete traumatic amp of female external genital organs|Complete traumatic amp of female external genital organs +C2839893|T037|HT|S38.211|ICD10CM|Complete traumatic amputation of female external genital organs|Complete traumatic amputation of female external genital organs +C2839894|T037|AB|S38.211A|ICD10CM|Complete traum amp of female external genital organs, init|Complete traum amp of female external genital organs, init +C2839894|T037|PT|S38.211A|ICD10CM|Complete traumatic amputation of female external genital organs, initial encounter|Complete traumatic amputation of female external genital organs, initial encounter +C2839895|T037|AB|S38.211D|ICD10CM|Complete traum amp of female external genital organs, subs|Complete traum amp of female external genital organs, subs +C2839895|T037|PT|S38.211D|ICD10CM|Complete traumatic amputation of female external genital organs, subsequent encounter|Complete traumatic amputation of female external genital organs, subsequent encounter +C2839896|T037|AB|S38.211S|ICD10CM|Complete traum amp of female extrn genital organs, sequela|Complete traum amp of female extrn genital organs, sequela +C2839896|T037|PT|S38.211S|ICD10CM|Complete traumatic amputation of female external genital organs, sequela|Complete traumatic amputation of female external genital organs, sequela +C2839897|T037|AB|S38.212|ICD10CM|Partial traumatic amp of female external genital organs|Partial traumatic amp of female external genital organs +C2839897|T037|HT|S38.212|ICD10CM|Partial traumatic amputation of female external genital organs|Partial traumatic amputation of female external genital organs +C2839898|T037|AB|S38.212A|ICD10CM|Partial traum amp of female external genital organs, init|Partial traum amp of female external genital organs, init +C2839898|T037|PT|S38.212A|ICD10CM|Partial traumatic amputation of female external genital organs, initial encounter|Partial traumatic amputation of female external genital organs, initial encounter +C2839899|T037|AB|S38.212D|ICD10CM|Partial traum amp of female external genital organs, subs|Partial traum amp of female external genital organs, subs +C2839899|T037|PT|S38.212D|ICD10CM|Partial traumatic amputation of female external genital organs, subsequent encounter|Partial traumatic amputation of female external genital organs, subsequent encounter +C2839900|T037|AB|S38.212S|ICD10CM|Partial traum amp of female external genital organs, sequela|Partial traum amp of female external genital organs, sequela +C2839900|T037|PT|S38.212S|ICD10CM|Partial traumatic amputation of female external genital organs, sequela|Partial traumatic amputation of female external genital organs, sequela +C0561804|T037|HT|S38.22|ICD10CM|Traumatic amputation of penis|Traumatic amputation of penis +C0561804|T037|AB|S38.22|ICD10CM|Traumatic amputation of penis|Traumatic amputation of penis +C2839901|T037|HT|S38.221|ICD10CM|Complete traumatic amputation of penis|Complete traumatic amputation of penis +C2839901|T037|AB|S38.221|ICD10CM|Complete traumatic amputation of penis|Complete traumatic amputation of penis +C2839902|T037|PT|S38.221A|ICD10CM|Complete traumatic amputation of penis, initial encounter|Complete traumatic amputation of penis, initial encounter +C2839902|T037|AB|S38.221A|ICD10CM|Complete traumatic amputation of penis, initial encounter|Complete traumatic amputation of penis, initial encounter +C2839903|T037|AB|S38.221D|ICD10CM|Complete traumatic amputation of penis, subsequent encounter|Complete traumatic amputation of penis, subsequent encounter +C2839903|T037|PT|S38.221D|ICD10CM|Complete traumatic amputation of penis, subsequent encounter|Complete traumatic amputation of penis, subsequent encounter +C2839904|T037|PT|S38.221S|ICD10CM|Complete traumatic amputation of penis, sequela|Complete traumatic amputation of penis, sequela +C2839904|T037|AB|S38.221S|ICD10CM|Complete traumatic amputation of penis, sequela|Complete traumatic amputation of penis, sequela +C2839905|T037|HT|S38.222|ICD10CM|Partial traumatic amputation of penis|Partial traumatic amputation of penis +C2839905|T037|AB|S38.222|ICD10CM|Partial traumatic amputation of penis|Partial traumatic amputation of penis +C2839906|T037|PT|S38.222A|ICD10CM|Partial traumatic amputation of penis, initial encounter|Partial traumatic amputation of penis, initial encounter +C2839906|T037|AB|S38.222A|ICD10CM|Partial traumatic amputation of penis, initial encounter|Partial traumatic amputation of penis, initial encounter +C2839907|T037|AB|S38.222D|ICD10CM|Partial traumatic amputation of penis, subsequent encounter|Partial traumatic amputation of penis, subsequent encounter +C2839907|T037|PT|S38.222D|ICD10CM|Partial traumatic amputation of penis, subsequent encounter|Partial traumatic amputation of penis, subsequent encounter +C2839908|T037|PT|S38.222S|ICD10CM|Partial traumatic amputation of penis, sequela|Partial traumatic amputation of penis, sequela +C2839908|T037|AB|S38.222S|ICD10CM|Partial traumatic amputation of penis, sequela|Partial traumatic amputation of penis, sequela +C2839909|T037|AB|S38.23|ICD10CM|Traumatic amputation of scrotum and testis|Traumatic amputation of scrotum and testis +C2839909|T037|HT|S38.23|ICD10CM|Traumatic amputation of scrotum and testis|Traumatic amputation of scrotum and testis +C2839910|T037|AB|S38.231|ICD10CM|Complete traumatic amputation of scrotum and testis|Complete traumatic amputation of scrotum and testis +C2839910|T037|HT|S38.231|ICD10CM|Complete traumatic amputation of scrotum and testis|Complete traumatic amputation of scrotum and testis +C2839911|T037|AB|S38.231A|ICD10CM|Complete traumatic amputation of scrotum and testis, init|Complete traumatic amputation of scrotum and testis, init +C2839911|T037|PT|S38.231A|ICD10CM|Complete traumatic amputation of scrotum and testis, initial encounter|Complete traumatic amputation of scrotum and testis, initial encounter +C2839912|T037|AB|S38.231D|ICD10CM|Complete traumatic amputation of scrotum and testis, subs|Complete traumatic amputation of scrotum and testis, subs +C2839912|T037|PT|S38.231D|ICD10CM|Complete traumatic amputation of scrotum and testis, subsequent encounter|Complete traumatic amputation of scrotum and testis, subsequent encounter +C2839913|T037|AB|S38.231S|ICD10CM|Complete traumatic amputation of scrotum and testis, sequela|Complete traumatic amputation of scrotum and testis, sequela +C2839913|T037|PT|S38.231S|ICD10CM|Complete traumatic amputation of scrotum and testis, sequela|Complete traumatic amputation of scrotum and testis, sequela +C2839914|T037|AB|S38.232|ICD10CM|Partial traumatic amputation of scrotum and testis|Partial traumatic amputation of scrotum and testis +C2839914|T037|HT|S38.232|ICD10CM|Partial traumatic amputation of scrotum and testis|Partial traumatic amputation of scrotum and testis +C2839915|T037|AB|S38.232A|ICD10CM|Partial traumatic amputation of scrotum and testis, init|Partial traumatic amputation of scrotum and testis, init +C2839915|T037|PT|S38.232A|ICD10CM|Partial traumatic amputation of scrotum and testis, initial encounter|Partial traumatic amputation of scrotum and testis, initial encounter +C2839916|T037|AB|S38.232D|ICD10CM|Partial traumatic amputation of scrotum and testis, subs|Partial traumatic amputation of scrotum and testis, subs +C2839916|T037|PT|S38.232D|ICD10CM|Partial traumatic amputation of scrotum and testis, subsequent encounter|Partial traumatic amputation of scrotum and testis, subsequent encounter +C2839917|T037|AB|S38.232S|ICD10CM|Partial traumatic amputation of scrotum and testis, sequela|Partial traumatic amputation of scrotum and testis, sequela +C2839917|T037|PT|S38.232S|ICD10CM|Partial traumatic amputation of scrotum and testis, sequela|Partial traumatic amputation of scrotum and testis, sequela +C2839918|T037|AB|S38.3|ICD10CM|Transection (partial) of abdomen|Transection (partial) of abdomen +C2839918|T037|HT|S38.3|ICD10CM|Transection (partial) of abdomen|Transection (partial) of abdomen +C0478265|T037|PT|S38.3|ICD10|Traumatic amputation of other and unspecified parts of abdomen, lower back and pelvis|Traumatic amputation of other and unspecified parts of abdomen, lower back and pelvis +C2839919|T037|AB|S38.3XXA|ICD10CM|Transection (partial) of abdomen, initial encounter|Transection (partial) of abdomen, initial encounter +C2839919|T037|PT|S38.3XXA|ICD10CM|Transection (partial) of abdomen, initial encounter|Transection (partial) of abdomen, initial encounter +C2839920|T037|AB|S38.3XXD|ICD10CM|Transection (partial) of abdomen, subsequent encounter|Transection (partial) of abdomen, subsequent encounter +C2839920|T037|PT|S38.3XXD|ICD10CM|Transection (partial) of abdomen, subsequent encounter|Transection (partial) of abdomen, subsequent encounter +C2839921|T037|AB|S38.3XXS|ICD10CM|Transection (partial) of abdomen, sequela|Transection (partial) of abdomen, sequela +C2839921|T037|PT|S38.3XXS|ICD10CM|Transection (partial) of abdomen, sequela|Transection (partial) of abdomen, sequela +C2839922|T037|AB|S39|ICD10CM|Oth & unsp injuries of abd, low back, pelv & extrn genitals|Oth & unsp injuries of abd, low back, pelv & extrn genitals +C0495857|T037|HT|S39|ICD10|Other and unspecified injuries of abdomen, lower back and pelvis|Other and unspecified injuries of abdomen, lower back and pelvis +C2839922|T037|HT|S39|ICD10CM|Other and unspecified injuries of abdomen, lower back, pelvis and external genitals|Other and unspecified injuries of abdomen, lower back, pelvis and external genitals +C2839923|T037|AB|S39.0|ICD10CM|Injury of musc/fasc/tend abdomen, lower back and pelvis|Injury of musc/fasc/tend abdomen, lower back and pelvis +C0451851|T037|PT|S39.0|ICD10|Injury of muscle and tendon of abdomen, lower back and pelvis|Injury of muscle and tendon of abdomen, lower back and pelvis +C2839923|T037|HT|S39.0|ICD10CM|Injury of muscle, fascia and tendon of abdomen, lower back and pelvis|Injury of muscle, fascia and tendon of abdomen, lower back and pelvis +C2839924|T037|AB|S39.00|ICD10CM|Unsp injury of musc/fasc/tend abdomen, lower back and pelvis|Unsp injury of musc/fasc/tend abdomen, lower back and pelvis +C2839924|T037|HT|S39.00|ICD10CM|Unspecified injury of muscle, fascia and tendon of abdomen, lower back and pelvis|Unspecified injury of muscle, fascia and tendon of abdomen, lower back and pelvis +C2839925|T037|AB|S39.001|ICD10CM|Unspecified injury of muscle, fascia and tendon of abdomen|Unspecified injury of muscle, fascia and tendon of abdomen +C2839925|T037|HT|S39.001|ICD10CM|Unspecified injury of muscle, fascia and tendon of abdomen|Unspecified injury of muscle, fascia and tendon of abdomen +C2839926|T037|AB|S39.001A|ICD10CM|Unsp injury of muscle, fascia and tendon of abdomen, init|Unsp injury of muscle, fascia and tendon of abdomen, init +C2839926|T037|PT|S39.001A|ICD10CM|Unspecified injury of muscle, fascia and tendon of abdomen, initial encounter|Unspecified injury of muscle, fascia and tendon of abdomen, initial encounter +C2839927|T037|AB|S39.001D|ICD10CM|Unsp injury of muscle, fascia and tendon of abdomen, subs|Unsp injury of muscle, fascia and tendon of abdomen, subs +C2839927|T037|PT|S39.001D|ICD10CM|Unspecified injury of muscle, fascia and tendon of abdomen, subsequent encounter|Unspecified injury of muscle, fascia and tendon of abdomen, subsequent encounter +C2839928|T037|AB|S39.001S|ICD10CM|Unsp injury of muscle, fascia and tendon of abdomen, sequela|Unsp injury of muscle, fascia and tendon of abdomen, sequela +C2839928|T037|PT|S39.001S|ICD10CM|Unspecified injury of muscle, fascia and tendon of abdomen, sequela|Unspecified injury of muscle, fascia and tendon of abdomen, sequela +C2839929|T037|AB|S39.002|ICD10CM|Unsp injury of muscle, fascia and tendon of lower back|Unsp injury of muscle, fascia and tendon of lower back +C2839929|T037|HT|S39.002|ICD10CM|Unspecified injury of muscle, fascia and tendon of lower back|Unspecified injury of muscle, fascia and tendon of lower back +C2839930|T037|AB|S39.002A|ICD10CM|Unsp injury of muscle, fascia and tendon of lower back, init|Unsp injury of muscle, fascia and tendon of lower back, init +C2839930|T037|PT|S39.002A|ICD10CM|Unspecified injury of muscle, fascia and tendon of lower back, initial encounter|Unspecified injury of muscle, fascia and tendon of lower back, initial encounter +C2839931|T037|AB|S39.002D|ICD10CM|Unsp injury of muscle, fascia and tendon of lower back, subs|Unsp injury of muscle, fascia and tendon of lower back, subs +C2839931|T037|PT|S39.002D|ICD10CM|Unspecified injury of muscle, fascia and tendon of lower back, subsequent encounter|Unspecified injury of muscle, fascia and tendon of lower back, subsequent encounter +C2839932|T037|AB|S39.002S|ICD10CM|Unsp injury of musc/fasc/tend lower back, sequela|Unsp injury of musc/fasc/tend lower back, sequela +C2839932|T037|PT|S39.002S|ICD10CM|Unspecified injury of muscle, fascia and tendon of lower back, sequela|Unspecified injury of muscle, fascia and tendon of lower back, sequela +C2839933|T037|AB|S39.003|ICD10CM|Unspecified injury of muscle, fascia and tendon of pelvis|Unspecified injury of muscle, fascia and tendon of pelvis +C2839933|T037|HT|S39.003|ICD10CM|Unspecified injury of muscle, fascia and tendon of pelvis|Unspecified injury of muscle, fascia and tendon of pelvis +C2839934|T037|AB|S39.003A|ICD10CM|Unsp injury of muscle, fascia and tendon of pelvis, init|Unsp injury of muscle, fascia and tendon of pelvis, init +C2839934|T037|PT|S39.003A|ICD10CM|Unspecified injury of muscle, fascia and tendon of pelvis, initial encounter|Unspecified injury of muscle, fascia and tendon of pelvis, initial encounter +C2839935|T037|AB|S39.003D|ICD10CM|Unsp injury of muscle, fascia and tendon of pelvis, subs|Unsp injury of muscle, fascia and tendon of pelvis, subs +C2839935|T037|PT|S39.003D|ICD10CM|Unspecified injury of muscle, fascia and tendon of pelvis, subsequent encounter|Unspecified injury of muscle, fascia and tendon of pelvis, subsequent encounter +C2839936|T037|AB|S39.003S|ICD10CM|Unsp injury of muscle, fascia and tendon of pelvis, sequela|Unsp injury of muscle, fascia and tendon of pelvis, sequela +C2839936|T037|PT|S39.003S|ICD10CM|Unspecified injury of muscle, fascia and tendon of pelvis, sequela|Unspecified injury of muscle, fascia and tendon of pelvis, sequela +C2839937|T037|AB|S39.01|ICD10CM|Strain of musc/fasc/tend abdomen, lower back and pelvis|Strain of musc/fasc/tend abdomen, lower back and pelvis +C2839937|T037|HT|S39.01|ICD10CM|Strain of muscle, fascia and tendon of abdomen, lower back and pelvis|Strain of muscle, fascia and tendon of abdomen, lower back and pelvis +C2839938|T037|AB|S39.011|ICD10CM|Strain of muscle, fascia and tendon of abdomen|Strain of muscle, fascia and tendon of abdomen +C2839938|T037|HT|S39.011|ICD10CM|Strain of muscle, fascia and tendon of abdomen|Strain of muscle, fascia and tendon of abdomen +C2839939|T037|AB|S39.011A|ICD10CM|Strain of muscle, fascia and tendon of abdomen, init encntr|Strain of muscle, fascia and tendon of abdomen, init encntr +C2839939|T037|PT|S39.011A|ICD10CM|Strain of muscle, fascia and tendon of abdomen, initial encounter|Strain of muscle, fascia and tendon of abdomen, initial encounter +C2839940|T037|AB|S39.011D|ICD10CM|Strain of muscle, fascia and tendon of abdomen, subs encntr|Strain of muscle, fascia and tendon of abdomen, subs encntr +C2839940|T037|PT|S39.011D|ICD10CM|Strain of muscle, fascia and tendon of abdomen, subsequent encounter|Strain of muscle, fascia and tendon of abdomen, subsequent encounter +C2839941|T037|PT|S39.011S|ICD10CM|Strain of muscle, fascia and tendon of abdomen, sequela|Strain of muscle, fascia and tendon of abdomen, sequela +C2839941|T037|AB|S39.011S|ICD10CM|Strain of muscle, fascia and tendon of abdomen, sequela|Strain of muscle, fascia and tendon of abdomen, sequela +C2839942|T037|AB|S39.012|ICD10CM|Strain of muscle, fascia and tendon of lower back|Strain of muscle, fascia and tendon of lower back +C2839942|T037|HT|S39.012|ICD10CM|Strain of muscle, fascia and tendon of lower back|Strain of muscle, fascia and tendon of lower back +C2839943|T037|AB|S39.012A|ICD10CM|Strain of muscle, fascia and tendon of lower back, init|Strain of muscle, fascia and tendon of lower back, init +C2839943|T037|PT|S39.012A|ICD10CM|Strain of muscle, fascia and tendon of lower back, initial encounter|Strain of muscle, fascia and tendon of lower back, initial encounter +C2839944|T037|AB|S39.012D|ICD10CM|Strain of muscle, fascia and tendon of lower back, subs|Strain of muscle, fascia and tendon of lower back, subs +C2839944|T037|PT|S39.012D|ICD10CM|Strain of muscle, fascia and tendon of lower back, subsequent encounter|Strain of muscle, fascia and tendon of lower back, subsequent encounter +C2839945|T037|PT|S39.012S|ICD10CM|Strain of muscle, fascia and tendon of lower back, sequela|Strain of muscle, fascia and tendon of lower back, sequela +C2839945|T037|AB|S39.012S|ICD10CM|Strain of muscle, fascia and tendon of lower back, sequela|Strain of muscle, fascia and tendon of lower back, sequela +C2839946|T037|AB|S39.013|ICD10CM|Strain of muscle, fascia and tendon of pelvis|Strain of muscle, fascia and tendon of pelvis +C2839946|T037|HT|S39.013|ICD10CM|Strain of muscle, fascia and tendon of pelvis|Strain of muscle, fascia and tendon of pelvis +C2839947|T037|AB|S39.013A|ICD10CM|Strain of muscle, fascia and tendon of pelvis, init encntr|Strain of muscle, fascia and tendon of pelvis, init encntr +C2839947|T037|PT|S39.013A|ICD10CM|Strain of muscle, fascia and tendon of pelvis, initial encounter|Strain of muscle, fascia and tendon of pelvis, initial encounter +C2839948|T037|AB|S39.013D|ICD10CM|Strain of muscle, fascia and tendon of pelvis, subs encntr|Strain of muscle, fascia and tendon of pelvis, subs encntr +C2839948|T037|PT|S39.013D|ICD10CM|Strain of muscle, fascia and tendon of pelvis, subsequent encounter|Strain of muscle, fascia and tendon of pelvis, subsequent encounter +C2839949|T037|PT|S39.013S|ICD10CM|Strain of muscle, fascia and tendon of pelvis, sequela|Strain of muscle, fascia and tendon of pelvis, sequela +C2839949|T037|AB|S39.013S|ICD10CM|Strain of muscle, fascia and tendon of pelvis, sequela|Strain of muscle, fascia and tendon of pelvis, sequela +C2839950|T037|AB|S39.02|ICD10CM|Laceration of musc/fasc/tend abdomen, lower back and pelvis|Laceration of musc/fasc/tend abdomen, lower back and pelvis +C2839950|T037|HT|S39.02|ICD10CM|Laceration of muscle, fascia and tendon of abdomen, lower back and pelvis|Laceration of muscle, fascia and tendon of abdomen, lower back and pelvis +C2839951|T037|AB|S39.021|ICD10CM|Laceration of muscle, fascia and tendon of abdomen|Laceration of muscle, fascia and tendon of abdomen +C2839951|T037|HT|S39.021|ICD10CM|Laceration of muscle, fascia and tendon of abdomen|Laceration of muscle, fascia and tendon of abdomen +C2839952|T037|AB|S39.021A|ICD10CM|Laceration of muscle, fascia and tendon of abdomen, init|Laceration of muscle, fascia and tendon of abdomen, init +C2839952|T037|PT|S39.021A|ICD10CM|Laceration of muscle, fascia and tendon of abdomen, initial encounter|Laceration of muscle, fascia and tendon of abdomen, initial encounter +C2839953|T037|AB|S39.021D|ICD10CM|Laceration of muscle, fascia and tendon of abdomen, subs|Laceration of muscle, fascia and tendon of abdomen, subs +C2839953|T037|PT|S39.021D|ICD10CM|Laceration of muscle, fascia and tendon of abdomen, subsequent encounter|Laceration of muscle, fascia and tendon of abdomen, subsequent encounter +C2839954|T037|PT|S39.021S|ICD10CM|Laceration of muscle, fascia and tendon of abdomen, sequela|Laceration of muscle, fascia and tendon of abdomen, sequela +C2839954|T037|AB|S39.021S|ICD10CM|Laceration of muscle, fascia and tendon of abdomen, sequela|Laceration of muscle, fascia and tendon of abdomen, sequela +C2839955|T037|AB|S39.022|ICD10CM|Laceration of muscle, fascia and tendon of lower back|Laceration of muscle, fascia and tendon of lower back +C2839955|T037|HT|S39.022|ICD10CM|Laceration of muscle, fascia and tendon of lower back|Laceration of muscle, fascia and tendon of lower back +C2839956|T037|AB|S39.022A|ICD10CM|Laceration of muscle, fascia and tendon of lower back, init|Laceration of muscle, fascia and tendon of lower back, init +C2839956|T037|PT|S39.022A|ICD10CM|Laceration of muscle, fascia and tendon of lower back, initial encounter|Laceration of muscle, fascia and tendon of lower back, initial encounter +C2839957|T037|AB|S39.022D|ICD10CM|Laceration of muscle, fascia and tendon of lower back, subs|Laceration of muscle, fascia and tendon of lower back, subs +C2839957|T037|PT|S39.022D|ICD10CM|Laceration of muscle, fascia and tendon of lower back, subsequent encounter|Laceration of muscle, fascia and tendon of lower back, subsequent encounter +C2839958|T037|AB|S39.022S|ICD10CM|Laceration of musc/fasc/tend lower back, sequela|Laceration of musc/fasc/tend lower back, sequela +C2839958|T037|PT|S39.022S|ICD10CM|Laceration of muscle, fascia and tendon of lower back, sequela|Laceration of muscle, fascia and tendon of lower back, sequela +C2839959|T037|AB|S39.023|ICD10CM|Laceration of muscle, fascia and tendon of pelvis|Laceration of muscle, fascia and tendon of pelvis +C2839959|T037|HT|S39.023|ICD10CM|Laceration of muscle, fascia and tendon of pelvis|Laceration of muscle, fascia and tendon of pelvis +C2839960|T037|AB|S39.023A|ICD10CM|Laceration of muscle, fascia and tendon of pelvis, init|Laceration of muscle, fascia and tendon of pelvis, init +C2839960|T037|PT|S39.023A|ICD10CM|Laceration of muscle, fascia and tendon of pelvis, initial encounter|Laceration of muscle, fascia and tendon of pelvis, initial encounter +C2839961|T037|AB|S39.023D|ICD10CM|Laceration of muscle, fascia and tendon of pelvis, subs|Laceration of muscle, fascia and tendon of pelvis, subs +C2839961|T037|PT|S39.023D|ICD10CM|Laceration of muscle, fascia and tendon of pelvis, subsequent encounter|Laceration of muscle, fascia and tendon of pelvis, subsequent encounter +C2839962|T037|PT|S39.023S|ICD10CM|Laceration of muscle, fascia and tendon of pelvis, sequela|Laceration of muscle, fascia and tendon of pelvis, sequela +C2839962|T037|AB|S39.023S|ICD10CM|Laceration of muscle, fascia and tendon of pelvis, sequela|Laceration of muscle, fascia and tendon of pelvis, sequela +C2839963|T037|AB|S39.09|ICD10CM|Inj musc/fasc/tend abdomen, lower back and pelvis|Inj musc/fasc/tend abdomen, lower back and pelvis +C2839963|T037|HT|S39.09|ICD10CM|Other injury of muscle, fascia and tendon of abdomen, lower back and pelvis|Other injury of muscle, fascia and tendon of abdomen, lower back and pelvis +C2839964|T037|AB|S39.091|ICD10CM|Other injury of muscle, fascia and tendon of abdomen|Other injury of muscle, fascia and tendon of abdomen +C2839964|T037|HT|S39.091|ICD10CM|Other injury of muscle, fascia and tendon of abdomen|Other injury of muscle, fascia and tendon of abdomen +C2839965|T037|AB|S39.091A|ICD10CM|Inj muscle, fascia and tendon of abdomen, init encntr|Inj muscle, fascia and tendon of abdomen, init encntr +C2839965|T037|PT|S39.091A|ICD10CM|Other injury of muscle, fascia and tendon of abdomen, initial encounter|Other injury of muscle, fascia and tendon of abdomen, initial encounter +C2839966|T037|AB|S39.091D|ICD10CM|Inj muscle, fascia and tendon of abdomen, subs encntr|Inj muscle, fascia and tendon of abdomen, subs encntr +C2839966|T037|PT|S39.091D|ICD10CM|Other injury of muscle, fascia and tendon of abdomen, subsequent encounter|Other injury of muscle, fascia and tendon of abdomen, subsequent encounter +C2839967|T037|AB|S39.091S|ICD10CM|Oth injury of muscle, fascia and tendon of abdomen, sequela|Oth injury of muscle, fascia and tendon of abdomen, sequela +C2839967|T037|PT|S39.091S|ICD10CM|Other injury of muscle, fascia and tendon of abdomen, sequela|Other injury of muscle, fascia and tendon of abdomen, sequela +C2839968|T037|AB|S39.092|ICD10CM|Other injury of muscle, fascia and tendon of lower back|Other injury of muscle, fascia and tendon of lower back +C2839968|T037|HT|S39.092|ICD10CM|Other injury of muscle, fascia and tendon of lower back|Other injury of muscle, fascia and tendon of lower back +C2839969|T037|AB|S39.092A|ICD10CM|Inj muscle, fascia and tendon of lower back, init encntr|Inj muscle, fascia and tendon of lower back, init encntr +C2839969|T037|PT|S39.092A|ICD10CM|Other injury of muscle, fascia and tendon of lower back, initial encounter|Other injury of muscle, fascia and tendon of lower back, initial encounter +C2839970|T037|AB|S39.092D|ICD10CM|Inj muscle, fascia and tendon of lower back, subs encntr|Inj muscle, fascia and tendon of lower back, subs encntr +C2839970|T037|PT|S39.092D|ICD10CM|Other injury of muscle, fascia and tendon of lower back, subsequent encounter|Other injury of muscle, fascia and tendon of lower back, subsequent encounter +C2839971|T037|AB|S39.092S|ICD10CM|Inj muscle, fascia and tendon of lower back, sequela|Inj muscle, fascia and tendon of lower back, sequela +C2839971|T037|PT|S39.092S|ICD10CM|Other injury of muscle, fascia and tendon of lower back, sequela|Other injury of muscle, fascia and tendon of lower back, sequela +C2839972|T037|AB|S39.093|ICD10CM|Other injury of muscle, fascia and tendon of pelvis|Other injury of muscle, fascia and tendon of pelvis +C2839972|T037|HT|S39.093|ICD10CM|Other injury of muscle, fascia and tendon of pelvis|Other injury of muscle, fascia and tendon of pelvis +C2839973|T037|AB|S39.093A|ICD10CM|Inj muscle, fascia and tendon of pelvis, init encntr|Inj muscle, fascia and tendon of pelvis, init encntr +C2839973|T037|PT|S39.093A|ICD10CM|Other injury of muscle, fascia and tendon of pelvis, initial encounter|Other injury of muscle, fascia and tendon of pelvis, initial encounter +C2839974|T037|AB|S39.093D|ICD10CM|Inj muscle, fascia and tendon of pelvis, subs encntr|Inj muscle, fascia and tendon of pelvis, subs encntr +C2839974|T037|PT|S39.093D|ICD10CM|Other injury of muscle, fascia and tendon of pelvis, subsequent encounter|Other injury of muscle, fascia and tendon of pelvis, subsequent encounter +C2839975|T037|AB|S39.093S|ICD10CM|Other injury of muscle, fascia and tendon of pelvis, sequela|Other injury of muscle, fascia and tendon of pelvis, sequela +C2839975|T037|PT|S39.093S|ICD10CM|Other injury of muscle, fascia and tendon of pelvis, sequela|Other injury of muscle, fascia and tendon of pelvis, sequela +C0452057|T037|PT|S39.6|ICD10|Injury of intra-abdominal organ(s) with pelvic organ(s)|Injury of intra-abdominal organ(s) with pelvic organ(s) +C0478268|T037|PT|S39.7|ICD10|Other multiple injuries of abdomen, lower back and pelvis|Other multiple injuries of abdomen, lower back and pelvis +C2839976|T037|AB|S39.8|ICD10CM|Oth injuries of abdomen, low back, pelvis and extrn genitals|Oth injuries of abdomen, low back, pelvis and extrn genitals +C0478266|T037|PT|S39.8|ICD10|Other specified injuries of abdomen, lower back and pelvis|Other specified injuries of abdomen, lower back and pelvis +C2839976|T037|HT|S39.8|ICD10CM|Other specified injuries of abdomen, lower back, pelvis and external genitals|Other specified injuries of abdomen, lower back, pelvis and external genitals +C2839977|T037|AB|S39.81|ICD10CM|Other specified injuries of abdomen|Other specified injuries of abdomen +C2839977|T037|HT|S39.81|ICD10CM|Other specified injuries of abdomen|Other specified injuries of abdomen +C2839978|T037|AB|S39.81XA|ICD10CM|Other specified injuries of abdomen, initial encounter|Other specified injuries of abdomen, initial encounter +C2839978|T037|PT|S39.81XA|ICD10CM|Other specified injuries of abdomen, initial encounter|Other specified injuries of abdomen, initial encounter +C2839979|T037|AB|S39.81XD|ICD10CM|Other specified injuries of abdomen, subsequent encounter|Other specified injuries of abdomen, subsequent encounter +C2839979|T037|PT|S39.81XD|ICD10CM|Other specified injuries of abdomen, subsequent encounter|Other specified injuries of abdomen, subsequent encounter +C2839980|T037|AB|S39.81XS|ICD10CM|Other specified injuries of abdomen, sequela|Other specified injuries of abdomen, sequela +C2839980|T037|PT|S39.81XS|ICD10CM|Other specified injuries of abdomen, sequela|Other specified injuries of abdomen, sequela +C2839981|T037|AB|S39.82|ICD10CM|Other specified injuries of lower back|Other specified injuries of lower back +C2839981|T037|HT|S39.82|ICD10CM|Other specified injuries of lower back|Other specified injuries of lower back +C2839982|T037|AB|S39.82XA|ICD10CM|Other specified injuries of lower back, initial encounter|Other specified injuries of lower back, initial encounter +C2839982|T037|PT|S39.82XA|ICD10CM|Other specified injuries of lower back, initial encounter|Other specified injuries of lower back, initial encounter +C2839983|T037|AB|S39.82XD|ICD10CM|Other specified injuries of lower back, subsequent encounter|Other specified injuries of lower back, subsequent encounter +C2839983|T037|PT|S39.82XD|ICD10CM|Other specified injuries of lower back, subsequent encounter|Other specified injuries of lower back, subsequent encounter +C2839984|T037|AB|S39.82XS|ICD10CM|Other specified injuries of lower back, sequela|Other specified injuries of lower back, sequela +C2839984|T037|PT|S39.82XS|ICD10CM|Other specified injuries of lower back, sequela|Other specified injuries of lower back, sequela +C2839985|T037|AB|S39.83|ICD10CM|Other specified injuries of pelvis|Other specified injuries of pelvis +C2839985|T037|HT|S39.83|ICD10CM|Other specified injuries of pelvis|Other specified injuries of pelvis +C2839986|T037|AB|S39.83XA|ICD10CM|Other specified injuries of pelvis, initial encounter|Other specified injuries of pelvis, initial encounter +C2839986|T037|PT|S39.83XA|ICD10CM|Other specified injuries of pelvis, initial encounter|Other specified injuries of pelvis, initial encounter +C2839987|T037|AB|S39.83XD|ICD10CM|Other specified injuries of pelvis, subsequent encounter|Other specified injuries of pelvis, subsequent encounter +C2839987|T037|PT|S39.83XD|ICD10CM|Other specified injuries of pelvis, subsequent encounter|Other specified injuries of pelvis, subsequent encounter +C2839988|T037|AB|S39.83XS|ICD10CM|Other specified injuries of pelvis, sequela|Other specified injuries of pelvis, sequela +C2839988|T037|PT|S39.83XS|ICD10CM|Other specified injuries of pelvis, sequela|Other specified injuries of pelvis, sequela +C2839989|T037|AB|S39.84|ICD10CM|Other specified injuries of external genitals|Other specified injuries of external genitals +C2839989|T037|HT|S39.84|ICD10CM|Other specified injuries of external genitals|Other specified injuries of external genitals +C1260447|T037|HT|S39.840|ICD10CM|Fracture of corpus cavernosum penis|Fracture of corpus cavernosum penis +C1260447|T037|AB|S39.840|ICD10CM|Fracture of corpus cavernosum penis|Fracture of corpus cavernosum penis +C2839990|T037|AB|S39.840A|ICD10CM|Fracture of corpus cavernosum penis, initial encounter|Fracture of corpus cavernosum penis, initial encounter +C2839990|T037|PT|S39.840A|ICD10CM|Fracture of corpus cavernosum penis, initial encounter|Fracture of corpus cavernosum penis, initial encounter +C2839991|T037|AB|S39.840D|ICD10CM|Fracture of corpus cavernosum penis, subsequent encounter|Fracture of corpus cavernosum penis, subsequent encounter +C2839991|T037|PT|S39.840D|ICD10CM|Fracture of corpus cavernosum penis, subsequent encounter|Fracture of corpus cavernosum penis, subsequent encounter +C2839992|T037|AB|S39.840S|ICD10CM|Fracture of corpus cavernosum penis, sequela|Fracture of corpus cavernosum penis, sequela +C2839992|T037|PT|S39.840S|ICD10CM|Fracture of corpus cavernosum penis, sequela|Fracture of corpus cavernosum penis, sequela +C2839989|T037|HT|S39.848|ICD10CM|Other specified injuries of external genitals|Other specified injuries of external genitals +C2839989|T037|AB|S39.848|ICD10CM|Other specified injuries of external genitals|Other specified injuries of external genitals +C2839993|T037|AB|S39.848A|ICD10CM|Other specified injuries of external genitals, init encntr|Other specified injuries of external genitals, init encntr +C2839993|T037|PT|S39.848A|ICD10CM|Other specified injuries of external genitals, initial encounter|Other specified injuries of external genitals, initial encounter +C2839994|T037|AB|S39.848D|ICD10CM|Other specified injuries of external genitals, subs encntr|Other specified injuries of external genitals, subs encntr +C2839994|T037|PT|S39.848D|ICD10CM|Other specified injuries of external genitals, subsequent encounter|Other specified injuries of external genitals, subsequent encounter +C2839995|T037|AB|S39.848S|ICD10CM|Other specified injuries of external genitals, sequela|Other specified injuries of external genitals, sequela +C2839995|T037|PT|S39.848S|ICD10CM|Other specified injuries of external genitals, sequela|Other specified injuries of external genitals, sequela +C2839996|T037|AB|S39.9|ICD10CM|Unsp inj abdomen, low back, pelvis and external genitals|Unsp inj abdomen, low back, pelvis and external genitals +C0478267|T037|PT|S39.9|ICD10|Unspecified injury of abdomen, lower back and pelvis|Unspecified injury of abdomen, lower back and pelvis +C2839996|T037|HT|S39.9|ICD10CM|Unspecified injury of abdomen, lower back, pelvis and external genitals|Unspecified injury of abdomen, lower back, pelvis and external genitals +C2839997|T037|AB|S39.91|ICD10CM|Unspecified injury of abdomen|Unspecified injury of abdomen +C2839997|T037|HT|S39.91|ICD10CM|Unspecified injury of abdomen|Unspecified injury of abdomen +C2839998|T037|AB|S39.91XA|ICD10CM|Unspecified injury of abdomen, initial encounter|Unspecified injury of abdomen, initial encounter +C2839998|T037|PT|S39.91XA|ICD10CM|Unspecified injury of abdomen, initial encounter|Unspecified injury of abdomen, initial encounter +C2839999|T037|AB|S39.91XD|ICD10CM|Unspecified injury of abdomen, subsequent encounter|Unspecified injury of abdomen, subsequent encounter +C2839999|T037|PT|S39.91XD|ICD10CM|Unspecified injury of abdomen, subsequent encounter|Unspecified injury of abdomen, subsequent encounter +C2840000|T037|AB|S39.91XS|ICD10CM|Unspecified injury of abdomen, sequela|Unspecified injury of abdomen, sequela +C2840000|T037|PT|S39.91XS|ICD10CM|Unspecified injury of abdomen, sequela|Unspecified injury of abdomen, sequela +C2840001|T037|AB|S39.92|ICD10CM|Unspecified injury of lower back|Unspecified injury of lower back +C2840001|T037|HT|S39.92|ICD10CM|Unspecified injury of lower back|Unspecified injury of lower back +C2840002|T037|AB|S39.92XA|ICD10CM|Unspecified injury of lower back, initial encounter|Unspecified injury of lower back, initial encounter +C2840002|T037|PT|S39.92XA|ICD10CM|Unspecified injury of lower back, initial encounter|Unspecified injury of lower back, initial encounter +C2840003|T037|AB|S39.92XD|ICD10CM|Unspecified injury of lower back, subsequent encounter|Unspecified injury of lower back, subsequent encounter +C2840003|T037|PT|S39.92XD|ICD10CM|Unspecified injury of lower back, subsequent encounter|Unspecified injury of lower back, subsequent encounter +C2840004|T037|AB|S39.92XS|ICD10CM|Unspecified injury of lower back, sequela|Unspecified injury of lower back, sequela +C2840004|T037|PT|S39.92XS|ICD10CM|Unspecified injury of lower back, sequela|Unspecified injury of lower back, sequela +C2840005|T037|AB|S39.93|ICD10CM|Unspecified injury of pelvis|Unspecified injury of pelvis +C2840005|T037|HT|S39.93|ICD10CM|Unspecified injury of pelvis|Unspecified injury of pelvis +C2840006|T037|AB|S39.93XA|ICD10CM|Unspecified injury of pelvis, initial encounter|Unspecified injury of pelvis, initial encounter +C2840006|T037|PT|S39.93XA|ICD10CM|Unspecified injury of pelvis, initial encounter|Unspecified injury of pelvis, initial encounter +C2840007|T037|AB|S39.93XD|ICD10CM|Unspecified injury of pelvis, subsequent encounter|Unspecified injury of pelvis, subsequent encounter +C2840007|T037|PT|S39.93XD|ICD10CM|Unspecified injury of pelvis, subsequent encounter|Unspecified injury of pelvis, subsequent encounter +C2840008|T037|AB|S39.93XS|ICD10CM|Unspecified injury of pelvis, sequela|Unspecified injury of pelvis, sequela +C2840008|T037|PT|S39.93XS|ICD10CM|Unspecified injury of pelvis, sequela|Unspecified injury of pelvis, sequela +C2840009|T037|AB|S39.94|ICD10CM|Unspecified injury of external genitals|Unspecified injury of external genitals +C2840009|T037|HT|S39.94|ICD10CM|Unspecified injury of external genitals|Unspecified injury of external genitals +C2840010|T037|AB|S39.94XA|ICD10CM|Unspecified injury of external genitals, initial encounter|Unspecified injury of external genitals, initial encounter +C2840010|T037|PT|S39.94XA|ICD10CM|Unspecified injury of external genitals, initial encounter|Unspecified injury of external genitals, initial encounter +C2840011|T037|AB|S39.94XD|ICD10CM|Unspecified injury of external genitals, subs encntr|Unspecified injury of external genitals, subs encntr +C2840011|T037|PT|S39.94XD|ICD10CM|Unspecified injury of external genitals, subsequent encounter|Unspecified injury of external genitals, subsequent encounter +C2840012|T037|AB|S39.94XS|ICD10CM|Unspecified injury of external genitals, sequela|Unspecified injury of external genitals, sequela +C2840012|T037|PT|S39.94XS|ICD10CM|Unspecified injury of external genitals, sequela|Unspecified injury of external genitals, sequela +C0160840|T037|HT|S40|ICD10CM|Superficial injury of shoulder and upper arm|Superficial injury of shoulder and upper arm +C0160840|T037|AB|S40|ICD10CM|Superficial injury of shoulder and upper arm|Superficial injury of shoulder and upper arm +C0160840|T037|HT|S40|ICD10|Superficial injury of shoulder and upper arm|Superficial injury of shoulder and upper arm +C0272441|T037|ET|S40-S49|ICD10CM|injuries of axilla|injuries of axilla +C0272442|T037|ET|S40-S49|ICD10CM|injuries of scapular region|injuries of scapular region +C0272440|T037|HT|S40-S49|ICD10CM|Injuries to the shoulder and upper arm (S40-S49)|Injuries to the shoulder and upper arm (S40-S49) +C0272440|T037|HT|S40-S49.9|ICD10|Injuries to the shoulder and upper arm|Injuries to the shoulder and upper arm +C0160932|T037|PT|S40.0|ICD10|Contusion of shoulder and upper arm|Contusion of shoulder and upper arm +C0160932|T037|HT|S40.0|ICD10CM|Contusion of shoulder and upper arm|Contusion of shoulder and upper arm +C0160932|T037|AB|S40.0|ICD10CM|Contusion of shoulder and upper arm|Contusion of shoulder and upper arm +C2237341|T037|AB|S40.01|ICD10CM|Contusion of shoulder|Contusion of shoulder +C2237341|T037|HT|S40.01|ICD10CM|Contusion of shoulder|Contusion of shoulder +C2218555|T037|HT|S40.011|ICD10CM|Contusion of right shoulder|Contusion of right shoulder +C2218555|T037|AB|S40.011|ICD10CM|Contusion of right shoulder|Contusion of right shoulder +C2840013|T037|PT|S40.011A|ICD10CM|Contusion of right shoulder, initial encounter|Contusion of right shoulder, initial encounter +C2840013|T037|AB|S40.011A|ICD10CM|Contusion of right shoulder, initial encounter|Contusion of right shoulder, initial encounter +C2840014|T037|PT|S40.011D|ICD10CM|Contusion of right shoulder, subsequent encounter|Contusion of right shoulder, subsequent encounter +C2840014|T037|AB|S40.011D|ICD10CM|Contusion of right shoulder, subsequent encounter|Contusion of right shoulder, subsequent encounter +C2840015|T037|PT|S40.011S|ICD10CM|Contusion of right shoulder, sequela|Contusion of right shoulder, sequela +C2840015|T037|AB|S40.011S|ICD10CM|Contusion of right shoulder, sequela|Contusion of right shoulder, sequela +C2166903|T037|HT|S40.012|ICD10CM|Contusion of left shoulder|Contusion of left shoulder +C2166903|T037|AB|S40.012|ICD10CM|Contusion of left shoulder|Contusion of left shoulder +C2840016|T037|PT|S40.012A|ICD10CM|Contusion of left shoulder, initial encounter|Contusion of left shoulder, initial encounter +C2840016|T037|AB|S40.012A|ICD10CM|Contusion of left shoulder, initial encounter|Contusion of left shoulder, initial encounter +C2840017|T037|PT|S40.012D|ICD10CM|Contusion of left shoulder, subsequent encounter|Contusion of left shoulder, subsequent encounter +C2840017|T037|AB|S40.012D|ICD10CM|Contusion of left shoulder, subsequent encounter|Contusion of left shoulder, subsequent encounter +C2840018|T037|PT|S40.012S|ICD10CM|Contusion of left shoulder, sequela|Contusion of left shoulder, sequela +C2840018|T037|AB|S40.012S|ICD10CM|Contusion of left shoulder, sequela|Contusion of left shoulder, sequela +C2840019|T037|AB|S40.019|ICD10CM|Contusion of unspecified shoulder|Contusion of unspecified shoulder +C2840019|T037|HT|S40.019|ICD10CM|Contusion of unspecified shoulder|Contusion of unspecified shoulder +C2840020|T037|PT|S40.019A|ICD10CM|Contusion of unspecified shoulder, initial encounter|Contusion of unspecified shoulder, initial encounter +C2840020|T037|AB|S40.019A|ICD10CM|Contusion of unspecified shoulder, initial encounter|Contusion of unspecified shoulder, initial encounter +C2840021|T037|PT|S40.019D|ICD10CM|Contusion of unspecified shoulder, subsequent encounter|Contusion of unspecified shoulder, subsequent encounter +C2840021|T037|AB|S40.019D|ICD10CM|Contusion of unspecified shoulder, subsequent encounter|Contusion of unspecified shoulder, subsequent encounter +C2840022|T037|PT|S40.019S|ICD10CM|Contusion of unspecified shoulder, sequela|Contusion of unspecified shoulder, sequela +C2840022|T037|AB|S40.019S|ICD10CM|Contusion of unspecified shoulder, sequela|Contusion of unspecified shoulder, sequela +C0160936|T037|HT|S40.02|ICD10CM|Contusion of upper arm|Contusion of upper arm +C0160936|T037|AB|S40.02|ICD10CM|Contusion of upper arm|Contusion of upper arm +C2840023|T037|HT|S40.021|ICD10CM|Contusion of right upper arm|Contusion of right upper arm +C2840023|T037|AB|S40.021|ICD10CM|Contusion of right upper arm|Contusion of right upper arm +C2840024|T037|PT|S40.021A|ICD10CM|Contusion of right upper arm, initial encounter|Contusion of right upper arm, initial encounter +C2840024|T037|AB|S40.021A|ICD10CM|Contusion of right upper arm, initial encounter|Contusion of right upper arm, initial encounter +C2840025|T037|PT|S40.021D|ICD10CM|Contusion of right upper arm, subsequent encounter|Contusion of right upper arm, subsequent encounter +C2840025|T037|AB|S40.021D|ICD10CM|Contusion of right upper arm, subsequent encounter|Contusion of right upper arm, subsequent encounter +C2840026|T037|PT|S40.021S|ICD10CM|Contusion of right upper arm, sequela|Contusion of right upper arm, sequela +C2840026|T037|AB|S40.021S|ICD10CM|Contusion of right upper arm, sequela|Contusion of right upper arm, sequela +C2840027|T037|HT|S40.022|ICD10CM|Contusion of left upper arm|Contusion of left upper arm +C2840027|T037|AB|S40.022|ICD10CM|Contusion of left upper arm|Contusion of left upper arm +C2840028|T037|PT|S40.022A|ICD10CM|Contusion of left upper arm, initial encounter|Contusion of left upper arm, initial encounter +C2840028|T037|AB|S40.022A|ICD10CM|Contusion of left upper arm, initial encounter|Contusion of left upper arm, initial encounter +C2840029|T037|PT|S40.022D|ICD10CM|Contusion of left upper arm, subsequent encounter|Contusion of left upper arm, subsequent encounter +C2840029|T037|AB|S40.022D|ICD10CM|Contusion of left upper arm, subsequent encounter|Contusion of left upper arm, subsequent encounter +C2840030|T037|PT|S40.022S|ICD10CM|Contusion of left upper arm, sequela|Contusion of left upper arm, sequela +C2840030|T037|AB|S40.022S|ICD10CM|Contusion of left upper arm, sequela|Contusion of left upper arm, sequela +C2840031|T037|AB|S40.029|ICD10CM|Contusion of unspecified upper arm|Contusion of unspecified upper arm +C2840031|T037|HT|S40.029|ICD10CM|Contusion of unspecified upper arm|Contusion of unspecified upper arm +C2840032|T037|PT|S40.029A|ICD10CM|Contusion of unspecified upper arm, initial encounter|Contusion of unspecified upper arm, initial encounter +C2840032|T037|AB|S40.029A|ICD10CM|Contusion of unspecified upper arm, initial encounter|Contusion of unspecified upper arm, initial encounter +C2840033|T037|PT|S40.029D|ICD10CM|Contusion of unspecified upper arm, subsequent encounter|Contusion of unspecified upper arm, subsequent encounter +C2840033|T037|AB|S40.029D|ICD10CM|Contusion of unspecified upper arm, subsequent encounter|Contusion of unspecified upper arm, subsequent encounter +C2840034|T037|PT|S40.029S|ICD10CM|Contusion of unspecified upper arm, sequela|Contusion of unspecified upper arm, sequela +C2840034|T037|AB|S40.029S|ICD10CM|Contusion of unspecified upper arm, sequela|Contusion of unspecified upper arm, sequela +C2840035|T037|AB|S40.2|ICD10CM|Other superficial injuries of shoulder|Other superficial injuries of shoulder +C2840035|T037|HT|S40.2|ICD10CM|Other superficial injuries of shoulder|Other superficial injuries of shoulder +C0432831|T037|AB|S40.21|ICD10CM|Abrasion of shoulder|Abrasion of shoulder +C0432831|T037|HT|S40.21|ICD10CM|Abrasion of shoulder|Abrasion of shoulder +C2041992|T037|AB|S40.211|ICD10CM|Abrasion of right shoulder|Abrasion of right shoulder +C2041992|T037|HT|S40.211|ICD10CM|Abrasion of right shoulder|Abrasion of right shoulder +C2840036|T037|PT|S40.211A|ICD10CM|Abrasion of right shoulder, initial encounter|Abrasion of right shoulder, initial encounter +C2840036|T037|AB|S40.211A|ICD10CM|Abrasion of right shoulder, initial encounter|Abrasion of right shoulder, initial encounter +C2840037|T037|PT|S40.211D|ICD10CM|Abrasion of right shoulder, subsequent encounter|Abrasion of right shoulder, subsequent encounter +C2840037|T037|AB|S40.211D|ICD10CM|Abrasion of right shoulder, subsequent encounter|Abrasion of right shoulder, subsequent encounter +C2840038|T037|PT|S40.211S|ICD10CM|Abrasion of right shoulder, sequela|Abrasion of right shoulder, sequela +C2840038|T037|AB|S40.211S|ICD10CM|Abrasion of right shoulder, sequela|Abrasion of right shoulder, sequela +C2004777|T037|AB|S40.212|ICD10CM|Abrasion of left shoulder|Abrasion of left shoulder +C2004777|T037|HT|S40.212|ICD10CM|Abrasion of left shoulder|Abrasion of left shoulder +C2840039|T037|PT|S40.212A|ICD10CM|Abrasion of left shoulder, initial encounter|Abrasion of left shoulder, initial encounter +C2840039|T037|AB|S40.212A|ICD10CM|Abrasion of left shoulder, initial encounter|Abrasion of left shoulder, initial encounter +C2840040|T037|PT|S40.212D|ICD10CM|Abrasion of left shoulder, subsequent encounter|Abrasion of left shoulder, subsequent encounter +C2840040|T037|AB|S40.212D|ICD10CM|Abrasion of left shoulder, subsequent encounter|Abrasion of left shoulder, subsequent encounter +C2840041|T037|PT|S40.212S|ICD10CM|Abrasion of left shoulder, sequela|Abrasion of left shoulder, sequela +C2840041|T037|AB|S40.212S|ICD10CM|Abrasion of left shoulder, sequela|Abrasion of left shoulder, sequela +C2840042|T037|AB|S40.219|ICD10CM|Abrasion of unspecified shoulder|Abrasion of unspecified shoulder +C2840042|T037|HT|S40.219|ICD10CM|Abrasion of unspecified shoulder|Abrasion of unspecified shoulder +C2840043|T037|PT|S40.219A|ICD10CM|Abrasion of unspecified shoulder, initial encounter|Abrasion of unspecified shoulder, initial encounter +C2840043|T037|AB|S40.219A|ICD10CM|Abrasion of unspecified shoulder, initial encounter|Abrasion of unspecified shoulder, initial encounter +C2840044|T037|PT|S40.219D|ICD10CM|Abrasion of unspecified shoulder, subsequent encounter|Abrasion of unspecified shoulder, subsequent encounter +C2840044|T037|AB|S40.219D|ICD10CM|Abrasion of unspecified shoulder, subsequent encounter|Abrasion of unspecified shoulder, subsequent encounter +C2840045|T037|PT|S40.219S|ICD10CM|Abrasion of unspecified shoulder, sequela|Abrasion of unspecified shoulder, sequela +C2840045|T037|AB|S40.219S|ICD10CM|Abrasion of unspecified shoulder, sequela|Abrasion of unspecified shoulder, sequela +C2840046|T037|AB|S40.22|ICD10CM|Blister (nonthermal) of shoulder|Blister (nonthermal) of shoulder +C2840046|T037|HT|S40.22|ICD10CM|Blister (nonthermal) of shoulder|Blister (nonthermal) of shoulder +C2840047|T037|AB|S40.221|ICD10CM|Blister (nonthermal) of right shoulder|Blister (nonthermal) of right shoulder +C2840047|T037|HT|S40.221|ICD10CM|Blister (nonthermal) of right shoulder|Blister (nonthermal) of right shoulder +C2840048|T037|AB|S40.221A|ICD10CM|Blister (nonthermal) of right shoulder, initial encounter|Blister (nonthermal) of right shoulder, initial encounter +C2840048|T037|PT|S40.221A|ICD10CM|Blister (nonthermal) of right shoulder, initial encounter|Blister (nonthermal) of right shoulder, initial encounter +C2840049|T037|AB|S40.221D|ICD10CM|Blister (nonthermal) of right shoulder, subsequent encounter|Blister (nonthermal) of right shoulder, subsequent encounter +C2840049|T037|PT|S40.221D|ICD10CM|Blister (nonthermal) of right shoulder, subsequent encounter|Blister (nonthermal) of right shoulder, subsequent encounter +C2840050|T037|AB|S40.221S|ICD10CM|Blister (nonthermal) of right shoulder, sequela|Blister (nonthermal) of right shoulder, sequela +C2840050|T037|PT|S40.221S|ICD10CM|Blister (nonthermal) of right shoulder, sequela|Blister (nonthermal) of right shoulder, sequela +C2840051|T037|AB|S40.222|ICD10CM|Blister (nonthermal) of left shoulder|Blister (nonthermal) of left shoulder +C2840051|T037|HT|S40.222|ICD10CM|Blister (nonthermal) of left shoulder|Blister (nonthermal) of left shoulder +C2840052|T037|AB|S40.222A|ICD10CM|Blister (nonthermal) of left shoulder, initial encounter|Blister (nonthermal) of left shoulder, initial encounter +C2840052|T037|PT|S40.222A|ICD10CM|Blister (nonthermal) of left shoulder, initial encounter|Blister (nonthermal) of left shoulder, initial encounter +C2840053|T037|AB|S40.222D|ICD10CM|Blister (nonthermal) of left shoulder, subsequent encounter|Blister (nonthermal) of left shoulder, subsequent encounter +C2840053|T037|PT|S40.222D|ICD10CM|Blister (nonthermal) of left shoulder, subsequent encounter|Blister (nonthermal) of left shoulder, subsequent encounter +C2840054|T037|AB|S40.222S|ICD10CM|Blister (nonthermal) of left shoulder, sequela|Blister (nonthermal) of left shoulder, sequela +C2840054|T037|PT|S40.222S|ICD10CM|Blister (nonthermal) of left shoulder, sequela|Blister (nonthermal) of left shoulder, sequela +C2840055|T037|AB|S40.229|ICD10CM|Blister (nonthermal) of unspecified shoulder|Blister (nonthermal) of unspecified shoulder +C2840055|T037|HT|S40.229|ICD10CM|Blister (nonthermal) of unspecified shoulder|Blister (nonthermal) of unspecified shoulder +C2840056|T037|AB|S40.229A|ICD10CM|Blister (nonthermal) of unspecified shoulder, init encntr|Blister (nonthermal) of unspecified shoulder, init encntr +C2840056|T037|PT|S40.229A|ICD10CM|Blister (nonthermal) of unspecified shoulder, initial encounter|Blister (nonthermal) of unspecified shoulder, initial encounter +C2840057|T037|AB|S40.229D|ICD10CM|Blister (nonthermal) of unspecified shoulder, subs encntr|Blister (nonthermal) of unspecified shoulder, subs encntr +C2840057|T037|PT|S40.229D|ICD10CM|Blister (nonthermal) of unspecified shoulder, subsequent encounter|Blister (nonthermal) of unspecified shoulder, subsequent encounter +C2840058|T037|AB|S40.229S|ICD10CM|Blister (nonthermal) of unspecified shoulder, sequela|Blister (nonthermal) of unspecified shoulder, sequela +C2840058|T037|PT|S40.229S|ICD10CM|Blister (nonthermal) of unspecified shoulder, sequela|Blister (nonthermal) of unspecified shoulder, sequela +C2840059|T037|AB|S40.24|ICD10CM|External constriction of shoulder|External constriction of shoulder +C2840059|T037|HT|S40.24|ICD10CM|External constriction of shoulder|External constriction of shoulder +C2840060|T037|AB|S40.241|ICD10CM|External constriction of right shoulder|External constriction of right shoulder +C2840060|T037|HT|S40.241|ICD10CM|External constriction of right shoulder|External constriction of right shoulder +C2840061|T037|AB|S40.241A|ICD10CM|External constriction of right shoulder, initial encounter|External constriction of right shoulder, initial encounter +C2840061|T037|PT|S40.241A|ICD10CM|External constriction of right shoulder, initial encounter|External constriction of right shoulder, initial encounter +C2840062|T037|AB|S40.241D|ICD10CM|External constriction of right shoulder, subs encntr|External constriction of right shoulder, subs encntr +C2840062|T037|PT|S40.241D|ICD10CM|External constriction of right shoulder, subsequent encounter|External constriction of right shoulder, subsequent encounter +C2840063|T037|AB|S40.241S|ICD10CM|External constriction of right shoulder, sequela|External constriction of right shoulder, sequela +C2840063|T037|PT|S40.241S|ICD10CM|External constriction of right shoulder, sequela|External constriction of right shoulder, sequela +C2840064|T037|AB|S40.242|ICD10CM|External constriction of left shoulder|External constriction of left shoulder +C2840064|T037|HT|S40.242|ICD10CM|External constriction of left shoulder|External constriction of left shoulder +C2840065|T037|AB|S40.242A|ICD10CM|External constriction of left shoulder, initial encounter|External constriction of left shoulder, initial encounter +C2840065|T037|PT|S40.242A|ICD10CM|External constriction of left shoulder, initial encounter|External constriction of left shoulder, initial encounter +C2840066|T037|AB|S40.242D|ICD10CM|External constriction of left shoulder, subsequent encounter|External constriction of left shoulder, subsequent encounter +C2840066|T037|PT|S40.242D|ICD10CM|External constriction of left shoulder, subsequent encounter|External constriction of left shoulder, subsequent encounter +C2840067|T037|AB|S40.242S|ICD10CM|External constriction of left shoulder, sequela|External constriction of left shoulder, sequela +C2840067|T037|PT|S40.242S|ICD10CM|External constriction of left shoulder, sequela|External constriction of left shoulder, sequela +C2840068|T037|AB|S40.249|ICD10CM|External constriction of unspecified shoulder|External constriction of unspecified shoulder +C2840068|T037|HT|S40.249|ICD10CM|External constriction of unspecified shoulder|External constriction of unspecified shoulder +C2840069|T037|AB|S40.249A|ICD10CM|External constriction of unspecified shoulder, init encntr|External constriction of unspecified shoulder, init encntr +C2840069|T037|PT|S40.249A|ICD10CM|External constriction of unspecified shoulder, initial encounter|External constriction of unspecified shoulder, initial encounter +C2840070|T037|AB|S40.249D|ICD10CM|External constriction of unspecified shoulder, subs encntr|External constriction of unspecified shoulder, subs encntr +C2840070|T037|PT|S40.249D|ICD10CM|External constriction of unspecified shoulder, subsequent encounter|External constriction of unspecified shoulder, subsequent encounter +C2840071|T037|AB|S40.249S|ICD10CM|External constriction of unspecified shoulder, sequela|External constriction of unspecified shoulder, sequela +C2840071|T037|PT|S40.249S|ICD10CM|External constriction of unspecified shoulder, sequela|External constriction of unspecified shoulder, sequela +C2018876|T037|ET|S40.25|ICD10CM|Splinter in the shoulder|Splinter in the shoulder +C2037288|T037|AB|S40.25|ICD10CM|Superficial foreign body of shoulder|Superficial foreign body of shoulder +C2037288|T037|HT|S40.25|ICD10CM|Superficial foreign body of shoulder|Superficial foreign body of shoulder +C2923035|T037|HT|S40.251|ICD10CM|Superficial foreign body of right shoulder|Superficial foreign body of right shoulder +C2923035|T037|AB|S40.251|ICD10CM|Superficial foreign body of right shoulder|Superficial foreign body of right shoulder +C2840073|T037|AB|S40.251A|ICD10CM|Superficial foreign body of right shoulder, init encntr|Superficial foreign body of right shoulder, init encntr +C2840073|T037|PT|S40.251A|ICD10CM|Superficial foreign body of right shoulder, initial encounter|Superficial foreign body of right shoulder, initial encounter +C2840074|T037|AB|S40.251D|ICD10CM|Superficial foreign body of right shoulder, subs encntr|Superficial foreign body of right shoulder, subs encntr +C2840074|T037|PT|S40.251D|ICD10CM|Superficial foreign body of right shoulder, subsequent encounter|Superficial foreign body of right shoulder, subsequent encounter +C2840075|T037|AB|S40.251S|ICD10CM|Superficial foreign body of right shoulder, sequela|Superficial foreign body of right shoulder, sequela +C2840075|T037|PT|S40.251S|ICD10CM|Superficial foreign body of right shoulder, sequela|Superficial foreign body of right shoulder, sequela +C2923036|T037|HT|S40.252|ICD10CM|Superficial foreign body of left shoulder|Superficial foreign body of left shoulder +C2923036|T037|AB|S40.252|ICD10CM|Superficial foreign body of left shoulder|Superficial foreign body of left shoulder +C2840077|T037|AB|S40.252A|ICD10CM|Superficial foreign body of left shoulder, initial encounter|Superficial foreign body of left shoulder, initial encounter +C2840077|T037|PT|S40.252A|ICD10CM|Superficial foreign body of left shoulder, initial encounter|Superficial foreign body of left shoulder, initial encounter +C2840078|T037|AB|S40.252D|ICD10CM|Superficial foreign body of left shoulder, subs encntr|Superficial foreign body of left shoulder, subs encntr +C2840078|T037|PT|S40.252D|ICD10CM|Superficial foreign body of left shoulder, subsequent encounter|Superficial foreign body of left shoulder, subsequent encounter +C2840079|T037|AB|S40.252S|ICD10CM|Superficial foreign body of left shoulder, sequela|Superficial foreign body of left shoulder, sequela +C2840079|T037|PT|S40.252S|ICD10CM|Superficial foreign body of left shoulder, sequela|Superficial foreign body of left shoulder, sequela +C2840080|T037|AB|S40.259|ICD10CM|Superficial foreign body of unspecified shoulder|Superficial foreign body of unspecified shoulder +C2840080|T037|HT|S40.259|ICD10CM|Superficial foreign body of unspecified shoulder|Superficial foreign body of unspecified shoulder +C2840081|T037|AB|S40.259A|ICD10CM|Superficial foreign body of unsp shoulder, init encntr|Superficial foreign body of unsp shoulder, init encntr +C2840081|T037|PT|S40.259A|ICD10CM|Superficial foreign body of unspecified shoulder, initial encounter|Superficial foreign body of unspecified shoulder, initial encounter +C2840082|T037|AB|S40.259D|ICD10CM|Superficial foreign body of unsp shoulder, subs encntr|Superficial foreign body of unsp shoulder, subs encntr +C2840082|T037|PT|S40.259D|ICD10CM|Superficial foreign body of unspecified shoulder, subsequent encounter|Superficial foreign body of unspecified shoulder, subsequent encounter +C2840083|T037|AB|S40.259S|ICD10CM|Superficial foreign body of unspecified shoulder, sequela|Superficial foreign body of unspecified shoulder, sequela +C2840083|T037|PT|S40.259S|ICD10CM|Superficial foreign body of unspecified shoulder, sequela|Superficial foreign body of unspecified shoulder, sequela +C0433026|T037|AB|S40.26|ICD10CM|Insect bite (nonvenomous) of shoulder|Insect bite (nonvenomous) of shoulder +C0433026|T037|HT|S40.26|ICD10CM|Insect bite (nonvenomous) of shoulder|Insect bite (nonvenomous) of shoulder +C2231558|T037|AB|S40.261|ICD10CM|Insect bite (nonvenomous) of right shoulder|Insect bite (nonvenomous) of right shoulder +C2231558|T037|HT|S40.261|ICD10CM|Insect bite (nonvenomous) of right shoulder|Insect bite (nonvenomous) of right shoulder +C2840084|T037|AB|S40.261A|ICD10CM|Insect bite (nonvenomous) of right shoulder, init encntr|Insect bite (nonvenomous) of right shoulder, init encntr +C2840084|T037|PT|S40.261A|ICD10CM|Insect bite (nonvenomous) of right shoulder, initial encounter|Insect bite (nonvenomous) of right shoulder, initial encounter +C2840085|T037|AB|S40.261D|ICD10CM|Insect bite (nonvenomous) of right shoulder, subs encntr|Insect bite (nonvenomous) of right shoulder, subs encntr +C2840085|T037|PT|S40.261D|ICD10CM|Insect bite (nonvenomous) of right shoulder, subsequent encounter|Insect bite (nonvenomous) of right shoulder, subsequent encounter +C2840086|T037|AB|S40.261S|ICD10CM|Insect bite (nonvenomous) of right shoulder, sequela|Insect bite (nonvenomous) of right shoulder, sequela +C2840086|T037|PT|S40.261S|ICD10CM|Insect bite (nonvenomous) of right shoulder, sequela|Insect bite (nonvenomous) of right shoulder, sequela +C2231559|T037|AB|S40.262|ICD10CM|Insect bite (nonvenomous) of left shoulder|Insect bite (nonvenomous) of left shoulder +C2231559|T037|HT|S40.262|ICD10CM|Insect bite (nonvenomous) of left shoulder|Insect bite (nonvenomous) of left shoulder +C2840087|T037|AB|S40.262A|ICD10CM|Insect bite (nonvenomous) of left shoulder, init encntr|Insect bite (nonvenomous) of left shoulder, init encntr +C2840087|T037|PT|S40.262A|ICD10CM|Insect bite (nonvenomous) of left shoulder, initial encounter|Insect bite (nonvenomous) of left shoulder, initial encounter +C2840088|T037|AB|S40.262D|ICD10CM|Insect bite (nonvenomous) of left shoulder, subs encntr|Insect bite (nonvenomous) of left shoulder, subs encntr +C2840088|T037|PT|S40.262D|ICD10CM|Insect bite (nonvenomous) of left shoulder, subsequent encounter|Insect bite (nonvenomous) of left shoulder, subsequent encounter +C2840089|T037|AB|S40.262S|ICD10CM|Insect bite (nonvenomous) of left shoulder, sequela|Insect bite (nonvenomous) of left shoulder, sequela +C2840089|T037|PT|S40.262S|ICD10CM|Insect bite (nonvenomous) of left shoulder, sequela|Insect bite (nonvenomous) of left shoulder, sequela +C2840090|T037|AB|S40.269|ICD10CM|Insect bite (nonvenomous) of unspecified shoulder|Insect bite (nonvenomous) of unspecified shoulder +C2840090|T037|HT|S40.269|ICD10CM|Insect bite (nonvenomous) of unspecified shoulder|Insect bite (nonvenomous) of unspecified shoulder +C2840091|T037|AB|S40.269A|ICD10CM|Insect bite (nonvenomous) of unsp shoulder, init encntr|Insect bite (nonvenomous) of unsp shoulder, init encntr +C2840091|T037|PT|S40.269A|ICD10CM|Insect bite (nonvenomous) of unspecified shoulder, initial encounter|Insect bite (nonvenomous) of unspecified shoulder, initial encounter +C2840092|T037|AB|S40.269D|ICD10CM|Insect bite (nonvenomous) of unsp shoulder, subs encntr|Insect bite (nonvenomous) of unsp shoulder, subs encntr +C2840092|T037|PT|S40.269D|ICD10CM|Insect bite (nonvenomous) of unspecified shoulder, subsequent encounter|Insect bite (nonvenomous) of unspecified shoulder, subsequent encounter +C2840093|T037|AB|S40.269S|ICD10CM|Insect bite (nonvenomous) of unspecified shoulder, sequela|Insect bite (nonvenomous) of unspecified shoulder, sequela +C2840093|T037|PT|S40.269S|ICD10CM|Insect bite (nonvenomous) of unspecified shoulder, sequela|Insect bite (nonvenomous) of unspecified shoulder, sequela +C2840094|T037|AB|S40.27|ICD10CM|Other superficial bite of shoulder|Other superficial bite of shoulder +C2840094|T037|HT|S40.27|ICD10CM|Other superficial bite of shoulder|Other superficial bite of shoulder +C2840095|T037|AB|S40.271|ICD10CM|Other superficial bite of right shoulder|Other superficial bite of right shoulder +C2840095|T037|HT|S40.271|ICD10CM|Other superficial bite of right shoulder|Other superficial bite of right shoulder +C2840096|T037|AB|S40.271A|ICD10CM|Other superficial bite of right shoulder, initial encounter|Other superficial bite of right shoulder, initial encounter +C2840096|T037|PT|S40.271A|ICD10CM|Other superficial bite of right shoulder, initial encounter|Other superficial bite of right shoulder, initial encounter +C2840097|T037|AB|S40.271D|ICD10CM|Other superficial bite of right shoulder, subs encntr|Other superficial bite of right shoulder, subs encntr +C2840097|T037|PT|S40.271D|ICD10CM|Other superficial bite of right shoulder, subsequent encounter|Other superficial bite of right shoulder, subsequent encounter +C2840098|T037|AB|S40.271S|ICD10CM|Other superficial bite of right shoulder, sequela|Other superficial bite of right shoulder, sequela +C2840098|T037|PT|S40.271S|ICD10CM|Other superficial bite of right shoulder, sequela|Other superficial bite of right shoulder, sequela +C2840099|T037|AB|S40.272|ICD10CM|Other superficial bite of left shoulder|Other superficial bite of left shoulder +C2840099|T037|HT|S40.272|ICD10CM|Other superficial bite of left shoulder|Other superficial bite of left shoulder +C2840100|T037|AB|S40.272A|ICD10CM|Other superficial bite of left shoulder, initial encounter|Other superficial bite of left shoulder, initial encounter +C2840100|T037|PT|S40.272A|ICD10CM|Other superficial bite of left shoulder, initial encounter|Other superficial bite of left shoulder, initial encounter +C2840101|T037|AB|S40.272D|ICD10CM|Other superficial bite of left shoulder, subs encntr|Other superficial bite of left shoulder, subs encntr +C2840101|T037|PT|S40.272D|ICD10CM|Other superficial bite of left shoulder, subsequent encounter|Other superficial bite of left shoulder, subsequent encounter +C2840102|T037|AB|S40.272S|ICD10CM|Other superficial bite of left shoulder, sequela|Other superficial bite of left shoulder, sequela +C2840102|T037|PT|S40.272S|ICD10CM|Other superficial bite of left shoulder, sequela|Other superficial bite of left shoulder, sequela +C2840103|T037|AB|S40.279|ICD10CM|Other superficial bite of unspecified shoulder|Other superficial bite of unspecified shoulder +C2840103|T037|HT|S40.279|ICD10CM|Other superficial bite of unspecified shoulder|Other superficial bite of unspecified shoulder +C2840104|T037|AB|S40.279A|ICD10CM|Other superficial bite of unspecified shoulder, init encntr|Other superficial bite of unspecified shoulder, init encntr +C2840104|T037|PT|S40.279A|ICD10CM|Other superficial bite of unspecified shoulder, initial encounter|Other superficial bite of unspecified shoulder, initial encounter +C2840105|T037|AB|S40.279D|ICD10CM|Other superficial bite of unspecified shoulder, subs encntr|Other superficial bite of unspecified shoulder, subs encntr +C2840105|T037|PT|S40.279D|ICD10CM|Other superficial bite of unspecified shoulder, subsequent encounter|Other superficial bite of unspecified shoulder, subsequent encounter +C2840106|T037|AB|S40.279S|ICD10CM|Other superficial bite of unspecified shoulder, sequela|Other superficial bite of unspecified shoulder, sequela +C2840106|T037|PT|S40.279S|ICD10CM|Other superficial bite of unspecified shoulder, sequela|Other superficial bite of unspecified shoulder, sequela +C0451960|T037|PT|S40.7|ICD10|Multiple superficial injuries of shoulder and upper arm|Multiple superficial injuries of shoulder and upper arm +C0478269|T037|PT|S40.8|ICD10|Other superficial injuries of shoulder and upper arm|Other superficial injuries of shoulder and upper arm +C2840107|T037|AB|S40.8|ICD10CM|Other superficial injuries of upper arm|Other superficial injuries of upper arm +C2840107|T037|HT|S40.8|ICD10CM|Other superficial injuries of upper arm|Other superficial injuries of upper arm +C0432834|T037|AB|S40.81|ICD10CM|Abrasion of upper arm|Abrasion of upper arm +C0432834|T037|HT|S40.81|ICD10CM|Abrasion of upper arm|Abrasion of upper arm +C2042000|T037|AB|S40.811|ICD10CM|Abrasion of right upper arm|Abrasion of right upper arm +C2042000|T037|HT|S40.811|ICD10CM|Abrasion of right upper arm|Abrasion of right upper arm +C2840108|T037|PT|S40.811A|ICD10CM|Abrasion of right upper arm, initial encounter|Abrasion of right upper arm, initial encounter +C2840108|T037|AB|S40.811A|ICD10CM|Abrasion of right upper arm, initial encounter|Abrasion of right upper arm, initial encounter +C2840109|T037|PT|S40.811D|ICD10CM|Abrasion of right upper arm, subsequent encounter|Abrasion of right upper arm, subsequent encounter +C2840109|T037|AB|S40.811D|ICD10CM|Abrasion of right upper arm, subsequent encounter|Abrasion of right upper arm, subsequent encounter +C2840110|T037|PT|S40.811S|ICD10CM|Abrasion of right upper arm, sequela|Abrasion of right upper arm, sequela +C2840110|T037|AB|S40.811S|ICD10CM|Abrasion of right upper arm, sequela|Abrasion of right upper arm, sequela +C2004785|T037|AB|S40.812|ICD10CM|Abrasion of left upper arm|Abrasion of left upper arm +C2004785|T037|HT|S40.812|ICD10CM|Abrasion of left upper arm|Abrasion of left upper arm +C2840111|T037|PT|S40.812A|ICD10CM|Abrasion of left upper arm, initial encounter|Abrasion of left upper arm, initial encounter +C2840111|T037|AB|S40.812A|ICD10CM|Abrasion of left upper arm, initial encounter|Abrasion of left upper arm, initial encounter +C2840112|T037|PT|S40.812D|ICD10CM|Abrasion of left upper arm, subsequent encounter|Abrasion of left upper arm, subsequent encounter +C2840112|T037|AB|S40.812D|ICD10CM|Abrasion of left upper arm, subsequent encounter|Abrasion of left upper arm, subsequent encounter +C2840113|T037|PT|S40.812S|ICD10CM|Abrasion of left upper arm, sequela|Abrasion of left upper arm, sequela +C2840113|T037|AB|S40.812S|ICD10CM|Abrasion of left upper arm, sequela|Abrasion of left upper arm, sequela +C2840114|T037|AB|S40.819|ICD10CM|Abrasion of unspecified upper arm|Abrasion of unspecified upper arm +C2840114|T037|HT|S40.819|ICD10CM|Abrasion of unspecified upper arm|Abrasion of unspecified upper arm +C2840115|T037|PT|S40.819A|ICD10CM|Abrasion of unspecified upper arm, initial encounter|Abrasion of unspecified upper arm, initial encounter +C2840115|T037|AB|S40.819A|ICD10CM|Abrasion of unspecified upper arm, initial encounter|Abrasion of unspecified upper arm, initial encounter +C2840116|T037|PT|S40.819D|ICD10CM|Abrasion of unspecified upper arm, subsequent encounter|Abrasion of unspecified upper arm, subsequent encounter +C2840116|T037|AB|S40.819D|ICD10CM|Abrasion of unspecified upper arm, subsequent encounter|Abrasion of unspecified upper arm, subsequent encounter +C2840117|T037|PT|S40.819S|ICD10CM|Abrasion of unspecified upper arm, sequela|Abrasion of unspecified upper arm, sequela +C2840117|T037|AB|S40.819S|ICD10CM|Abrasion of unspecified upper arm, sequela|Abrasion of unspecified upper arm, sequela +C2840118|T037|AB|S40.82|ICD10CM|Blister (nonthermal) of upper arm|Blister (nonthermal) of upper arm +C2840118|T037|HT|S40.82|ICD10CM|Blister (nonthermal) of upper arm|Blister (nonthermal) of upper arm +C2840119|T037|AB|S40.821|ICD10CM|Blister (nonthermal) of right upper arm|Blister (nonthermal) of right upper arm +C2840119|T037|HT|S40.821|ICD10CM|Blister (nonthermal) of right upper arm|Blister (nonthermal) of right upper arm +C2840120|T037|AB|S40.821A|ICD10CM|Blister (nonthermal) of right upper arm, initial encounter|Blister (nonthermal) of right upper arm, initial encounter +C2840120|T037|PT|S40.821A|ICD10CM|Blister (nonthermal) of right upper arm, initial encounter|Blister (nonthermal) of right upper arm, initial encounter +C2840121|T037|AB|S40.821D|ICD10CM|Blister (nonthermal) of right upper arm, subs encntr|Blister (nonthermal) of right upper arm, subs encntr +C2840121|T037|PT|S40.821D|ICD10CM|Blister (nonthermal) of right upper arm, subsequent encounter|Blister (nonthermal) of right upper arm, subsequent encounter +C2840122|T037|AB|S40.821S|ICD10CM|Blister (nonthermal) of right upper arm, sequela|Blister (nonthermal) of right upper arm, sequela +C2840122|T037|PT|S40.821S|ICD10CM|Blister (nonthermal) of right upper arm, sequela|Blister (nonthermal) of right upper arm, sequela +C2840123|T037|AB|S40.822|ICD10CM|Blister (nonthermal) of left upper arm|Blister (nonthermal) of left upper arm +C2840123|T037|HT|S40.822|ICD10CM|Blister (nonthermal) of left upper arm|Blister (nonthermal) of left upper arm +C2840124|T037|AB|S40.822A|ICD10CM|Blister (nonthermal) of left upper arm, initial encounter|Blister (nonthermal) of left upper arm, initial encounter +C2840124|T037|PT|S40.822A|ICD10CM|Blister (nonthermal) of left upper arm, initial encounter|Blister (nonthermal) of left upper arm, initial encounter +C2840125|T037|AB|S40.822D|ICD10CM|Blister (nonthermal) of left upper arm, subsequent encounter|Blister (nonthermal) of left upper arm, subsequent encounter +C2840125|T037|PT|S40.822D|ICD10CM|Blister (nonthermal) of left upper arm, subsequent encounter|Blister (nonthermal) of left upper arm, subsequent encounter +C2840126|T037|AB|S40.822S|ICD10CM|Blister (nonthermal) of left upper arm, sequela|Blister (nonthermal) of left upper arm, sequela +C2840126|T037|PT|S40.822S|ICD10CM|Blister (nonthermal) of left upper arm, sequela|Blister (nonthermal) of left upper arm, sequela +C2840127|T037|AB|S40.829|ICD10CM|Blister (nonthermal) of unspecified upper arm|Blister (nonthermal) of unspecified upper arm +C2840127|T037|HT|S40.829|ICD10CM|Blister (nonthermal) of unspecified upper arm|Blister (nonthermal) of unspecified upper arm +C2840128|T037|AB|S40.829A|ICD10CM|Blister (nonthermal) of unspecified upper arm, init encntr|Blister (nonthermal) of unspecified upper arm, init encntr +C2840128|T037|PT|S40.829A|ICD10CM|Blister (nonthermal) of unspecified upper arm, initial encounter|Blister (nonthermal) of unspecified upper arm, initial encounter +C2840129|T037|AB|S40.829D|ICD10CM|Blister (nonthermal) of unspecified upper arm, subs encntr|Blister (nonthermal) of unspecified upper arm, subs encntr +C2840129|T037|PT|S40.829D|ICD10CM|Blister (nonthermal) of unspecified upper arm, subsequent encounter|Blister (nonthermal) of unspecified upper arm, subsequent encounter +C2840130|T037|AB|S40.829S|ICD10CM|Blister (nonthermal) of unspecified upper arm, sequela|Blister (nonthermal) of unspecified upper arm, sequela +C2840130|T037|PT|S40.829S|ICD10CM|Blister (nonthermal) of unspecified upper arm, sequela|Blister (nonthermal) of unspecified upper arm, sequela +C2840131|T037|AB|S40.84|ICD10CM|External constriction of upper arm|External constriction of upper arm +C2840131|T037|HT|S40.84|ICD10CM|External constriction of upper arm|External constriction of upper arm +C2840132|T037|AB|S40.841|ICD10CM|External constriction of right upper arm|External constriction of right upper arm +C2840132|T037|HT|S40.841|ICD10CM|External constriction of right upper arm|External constriction of right upper arm +C2840133|T037|AB|S40.841A|ICD10CM|External constriction of right upper arm, initial encounter|External constriction of right upper arm, initial encounter +C2840133|T037|PT|S40.841A|ICD10CM|External constriction of right upper arm, initial encounter|External constriction of right upper arm, initial encounter +C2840134|T037|AB|S40.841D|ICD10CM|External constriction of right upper arm, subs encntr|External constriction of right upper arm, subs encntr +C2840134|T037|PT|S40.841D|ICD10CM|External constriction of right upper arm, subsequent encounter|External constriction of right upper arm, subsequent encounter +C2840135|T037|AB|S40.841S|ICD10CM|External constriction of right upper arm, sequela|External constriction of right upper arm, sequela +C2840135|T037|PT|S40.841S|ICD10CM|External constriction of right upper arm, sequela|External constriction of right upper arm, sequela +C2840136|T037|AB|S40.842|ICD10CM|External constriction of left upper arm|External constriction of left upper arm +C2840136|T037|HT|S40.842|ICD10CM|External constriction of left upper arm|External constriction of left upper arm +C2840137|T037|AB|S40.842A|ICD10CM|External constriction of left upper arm, initial encounter|External constriction of left upper arm, initial encounter +C2840137|T037|PT|S40.842A|ICD10CM|External constriction of left upper arm, initial encounter|External constriction of left upper arm, initial encounter +C2840138|T037|AB|S40.842D|ICD10CM|External constriction of left upper arm, subs encntr|External constriction of left upper arm, subs encntr +C2840138|T037|PT|S40.842D|ICD10CM|External constriction of left upper arm, subsequent encounter|External constriction of left upper arm, subsequent encounter +C2840139|T037|AB|S40.842S|ICD10CM|External constriction of left upper arm, sequela|External constriction of left upper arm, sequela +C2840139|T037|PT|S40.842S|ICD10CM|External constriction of left upper arm, sequela|External constriction of left upper arm, sequela +C2840140|T037|AB|S40.849|ICD10CM|External constriction of unspecified upper arm|External constriction of unspecified upper arm +C2840140|T037|HT|S40.849|ICD10CM|External constriction of unspecified upper arm|External constriction of unspecified upper arm +C2840141|T037|AB|S40.849A|ICD10CM|External constriction of unspecified upper arm, init encntr|External constriction of unspecified upper arm, init encntr +C2840141|T037|PT|S40.849A|ICD10CM|External constriction of unspecified upper arm, initial encounter|External constriction of unspecified upper arm, initial encounter +C2840142|T037|AB|S40.849D|ICD10CM|External constriction of unspecified upper arm, subs encntr|External constriction of unspecified upper arm, subs encntr +C2840142|T037|PT|S40.849D|ICD10CM|External constriction of unspecified upper arm, subsequent encounter|External constriction of unspecified upper arm, subsequent encounter +C2840143|T037|AB|S40.849S|ICD10CM|External constriction of unspecified upper arm, sequela|External constriction of unspecified upper arm, sequela +C2840143|T037|PT|S40.849S|ICD10CM|External constriction of unspecified upper arm, sequela|External constriction of unspecified upper arm, sequela +C2018880|T037|ET|S40.85|ICD10CM|Splinter in the upper arm|Splinter in the upper arm +C2037291|T037|AB|S40.85|ICD10CM|Superficial foreign body of upper arm|Superficial foreign body of upper arm +C2037291|T037|HT|S40.85|ICD10CM|Superficial foreign body of upper arm|Superficial foreign body of upper arm +C2840144|T037|AB|S40.851|ICD10CM|Superficial foreign body of right upper arm|Superficial foreign body of right upper arm +C2840144|T037|HT|S40.851|ICD10CM|Superficial foreign body of right upper arm|Superficial foreign body of right upper arm +C2840145|T037|AB|S40.851A|ICD10CM|Superficial foreign body of right upper arm, init encntr|Superficial foreign body of right upper arm, init encntr +C2840145|T037|PT|S40.851A|ICD10CM|Superficial foreign body of right upper arm, initial encounter|Superficial foreign body of right upper arm, initial encounter +C2840146|T037|AB|S40.851D|ICD10CM|Superficial foreign body of right upper arm, subs encntr|Superficial foreign body of right upper arm, subs encntr +C2840146|T037|PT|S40.851D|ICD10CM|Superficial foreign body of right upper arm, subsequent encounter|Superficial foreign body of right upper arm, subsequent encounter +C2840147|T037|AB|S40.851S|ICD10CM|Superficial foreign body of right upper arm, sequela|Superficial foreign body of right upper arm, sequela +C2840147|T037|PT|S40.851S|ICD10CM|Superficial foreign body of right upper arm, sequela|Superficial foreign body of right upper arm, sequela +C2840148|T037|AB|S40.852|ICD10CM|Superficial foreign body of left upper arm|Superficial foreign body of left upper arm +C2840148|T037|HT|S40.852|ICD10CM|Superficial foreign body of left upper arm|Superficial foreign body of left upper arm +C2840149|T037|AB|S40.852A|ICD10CM|Superficial foreign body of left upper arm, init encntr|Superficial foreign body of left upper arm, init encntr +C2840149|T037|PT|S40.852A|ICD10CM|Superficial foreign body of left upper arm, initial encounter|Superficial foreign body of left upper arm, initial encounter +C2840150|T037|AB|S40.852D|ICD10CM|Superficial foreign body of left upper arm, subs encntr|Superficial foreign body of left upper arm, subs encntr +C2840150|T037|PT|S40.852D|ICD10CM|Superficial foreign body of left upper arm, subsequent encounter|Superficial foreign body of left upper arm, subsequent encounter +C2840151|T037|AB|S40.852S|ICD10CM|Superficial foreign body of left upper arm, sequela|Superficial foreign body of left upper arm, sequela +C2840151|T037|PT|S40.852S|ICD10CM|Superficial foreign body of left upper arm, sequela|Superficial foreign body of left upper arm, sequela +C2840152|T037|AB|S40.859|ICD10CM|Superficial foreign body of unspecified upper arm|Superficial foreign body of unspecified upper arm +C2840152|T037|HT|S40.859|ICD10CM|Superficial foreign body of unspecified upper arm|Superficial foreign body of unspecified upper arm +C2840153|T037|AB|S40.859A|ICD10CM|Superficial foreign body of unsp upper arm, init encntr|Superficial foreign body of unsp upper arm, init encntr +C2840153|T037|PT|S40.859A|ICD10CM|Superficial foreign body of unspecified upper arm, initial encounter|Superficial foreign body of unspecified upper arm, initial encounter +C2840154|T037|AB|S40.859D|ICD10CM|Superficial foreign body of unsp upper arm, subs encntr|Superficial foreign body of unsp upper arm, subs encntr +C2840154|T037|PT|S40.859D|ICD10CM|Superficial foreign body of unspecified upper arm, subsequent encounter|Superficial foreign body of unspecified upper arm, subsequent encounter +C2840155|T037|AB|S40.859S|ICD10CM|Superficial foreign body of unspecified upper arm, sequela|Superficial foreign body of unspecified upper arm, sequela +C2840155|T037|PT|S40.859S|ICD10CM|Superficial foreign body of unspecified upper arm, sequela|Superficial foreign body of unspecified upper arm, sequela +C0433028|T037|AB|S40.86|ICD10CM|Insect bite (nonvenomous) of upper arm|Insect bite (nonvenomous) of upper arm +C0433028|T037|HT|S40.86|ICD10CM|Insect bite (nonvenomous) of upper arm|Insect bite (nonvenomous) of upper arm +C2231566|T037|AB|S40.861|ICD10CM|Insect bite (nonvenomous) of right upper arm|Insect bite (nonvenomous) of right upper arm +C2231566|T037|HT|S40.861|ICD10CM|Insect bite (nonvenomous) of right upper arm|Insect bite (nonvenomous) of right upper arm +C2840156|T037|AB|S40.861A|ICD10CM|Insect bite (nonvenomous) of right upper arm, init encntr|Insect bite (nonvenomous) of right upper arm, init encntr +C2840156|T037|PT|S40.861A|ICD10CM|Insect bite (nonvenomous) of right upper arm, initial encounter|Insect bite (nonvenomous) of right upper arm, initial encounter +C2840157|T037|AB|S40.861D|ICD10CM|Insect bite (nonvenomous) of right upper arm, subs encntr|Insect bite (nonvenomous) of right upper arm, subs encntr +C2840157|T037|PT|S40.861D|ICD10CM|Insect bite (nonvenomous) of right upper arm, subsequent encounter|Insect bite (nonvenomous) of right upper arm, subsequent encounter +C2840158|T037|AB|S40.861S|ICD10CM|Insect bite (nonvenomous) of right upper arm, sequela|Insect bite (nonvenomous) of right upper arm, sequela +C2840158|T037|PT|S40.861S|ICD10CM|Insect bite (nonvenomous) of right upper arm, sequela|Insect bite (nonvenomous) of right upper arm, sequela +C2231567|T037|AB|S40.862|ICD10CM|Insect bite (nonvenomous) of left upper arm|Insect bite (nonvenomous) of left upper arm +C2231567|T037|HT|S40.862|ICD10CM|Insect bite (nonvenomous) of left upper arm|Insect bite (nonvenomous) of left upper arm +C2840159|T037|AB|S40.862A|ICD10CM|Insect bite (nonvenomous) of left upper arm, init encntr|Insect bite (nonvenomous) of left upper arm, init encntr +C2840159|T037|PT|S40.862A|ICD10CM|Insect bite (nonvenomous) of left upper arm, initial encounter|Insect bite (nonvenomous) of left upper arm, initial encounter +C2840160|T037|AB|S40.862D|ICD10CM|Insect bite (nonvenomous) of left upper arm, subs encntr|Insect bite (nonvenomous) of left upper arm, subs encntr +C2840160|T037|PT|S40.862D|ICD10CM|Insect bite (nonvenomous) of left upper arm, subsequent encounter|Insect bite (nonvenomous) of left upper arm, subsequent encounter +C2840161|T037|AB|S40.862S|ICD10CM|Insect bite (nonvenomous) of left upper arm, sequela|Insect bite (nonvenomous) of left upper arm, sequela +C2840161|T037|PT|S40.862S|ICD10CM|Insect bite (nonvenomous) of left upper arm, sequela|Insect bite (nonvenomous) of left upper arm, sequela +C2840162|T037|AB|S40.869|ICD10CM|Insect bite (nonvenomous) of unspecified upper arm|Insect bite (nonvenomous) of unspecified upper arm +C2840162|T037|HT|S40.869|ICD10CM|Insect bite (nonvenomous) of unspecified upper arm|Insect bite (nonvenomous) of unspecified upper arm +C2840163|T037|AB|S40.869A|ICD10CM|Insect bite (nonvenomous) of unsp upper arm, init encntr|Insect bite (nonvenomous) of unsp upper arm, init encntr +C2840163|T037|PT|S40.869A|ICD10CM|Insect bite (nonvenomous) of unspecified upper arm, initial encounter|Insect bite (nonvenomous) of unspecified upper arm, initial encounter +C2840164|T037|AB|S40.869D|ICD10CM|Insect bite (nonvenomous) of unsp upper arm, subs encntr|Insect bite (nonvenomous) of unsp upper arm, subs encntr +C2840164|T037|PT|S40.869D|ICD10CM|Insect bite (nonvenomous) of unspecified upper arm, subsequent encounter|Insect bite (nonvenomous) of unspecified upper arm, subsequent encounter +C2840165|T037|AB|S40.869S|ICD10CM|Insect bite (nonvenomous) of unspecified upper arm, sequela|Insect bite (nonvenomous) of unspecified upper arm, sequela +C2840165|T037|PT|S40.869S|ICD10CM|Insect bite (nonvenomous) of unspecified upper arm, sequela|Insect bite (nonvenomous) of unspecified upper arm, sequela +C2840166|T037|AB|S40.87|ICD10CM|Other superficial bite of upper arm|Other superficial bite of upper arm +C2840166|T037|HT|S40.87|ICD10CM|Other superficial bite of upper arm|Other superficial bite of upper arm +C2840167|T037|AB|S40.871|ICD10CM|Other superficial bite of right upper arm|Other superficial bite of right upper arm +C2840167|T037|HT|S40.871|ICD10CM|Other superficial bite of right upper arm|Other superficial bite of right upper arm +C2840168|T037|AB|S40.871A|ICD10CM|Other superficial bite of right upper arm, initial encounter|Other superficial bite of right upper arm, initial encounter +C2840168|T037|PT|S40.871A|ICD10CM|Other superficial bite of right upper arm, initial encounter|Other superficial bite of right upper arm, initial encounter +C2840169|T037|AB|S40.871D|ICD10CM|Other superficial bite of right upper arm, subs encntr|Other superficial bite of right upper arm, subs encntr +C2840169|T037|PT|S40.871D|ICD10CM|Other superficial bite of right upper arm, subsequent encounter|Other superficial bite of right upper arm, subsequent encounter +C2840170|T037|AB|S40.871S|ICD10CM|Other superficial bite of right upper arm, sequela|Other superficial bite of right upper arm, sequela +C2840170|T037|PT|S40.871S|ICD10CM|Other superficial bite of right upper arm, sequela|Other superficial bite of right upper arm, sequela +C2840171|T037|AB|S40.872|ICD10CM|Other superficial bite of left upper arm|Other superficial bite of left upper arm +C2840171|T037|HT|S40.872|ICD10CM|Other superficial bite of left upper arm|Other superficial bite of left upper arm +C2840172|T037|AB|S40.872A|ICD10CM|Other superficial bite of left upper arm, initial encounter|Other superficial bite of left upper arm, initial encounter +C2840172|T037|PT|S40.872A|ICD10CM|Other superficial bite of left upper arm, initial encounter|Other superficial bite of left upper arm, initial encounter +C2840173|T037|AB|S40.872D|ICD10CM|Other superficial bite of left upper arm, subs encntr|Other superficial bite of left upper arm, subs encntr +C2840173|T037|PT|S40.872D|ICD10CM|Other superficial bite of left upper arm, subsequent encounter|Other superficial bite of left upper arm, subsequent encounter +C2840174|T037|AB|S40.872S|ICD10CM|Other superficial bite of left upper arm, sequela|Other superficial bite of left upper arm, sequela +C2840174|T037|PT|S40.872S|ICD10CM|Other superficial bite of left upper arm, sequela|Other superficial bite of left upper arm, sequela +C2840175|T037|AB|S40.879|ICD10CM|Other superficial bite of unspecified upper arm|Other superficial bite of unspecified upper arm +C2840175|T037|HT|S40.879|ICD10CM|Other superficial bite of unspecified upper arm|Other superficial bite of unspecified upper arm +C2840176|T037|AB|S40.879A|ICD10CM|Other superficial bite of unspecified upper arm, init encntr|Other superficial bite of unspecified upper arm, init encntr +C2840176|T037|PT|S40.879A|ICD10CM|Other superficial bite of unspecified upper arm, initial encounter|Other superficial bite of unspecified upper arm, initial encounter +C2840177|T037|AB|S40.879D|ICD10CM|Other superficial bite of unspecified upper arm, subs encntr|Other superficial bite of unspecified upper arm, subs encntr +C2840177|T037|PT|S40.879D|ICD10CM|Other superficial bite of unspecified upper arm, subsequent encounter|Other superficial bite of unspecified upper arm, subsequent encounter +C2840178|T037|AB|S40.879S|ICD10CM|Other superficial bite of unspecified upper arm, sequela|Other superficial bite of unspecified upper arm, sequela +C2840178|T037|PT|S40.879S|ICD10CM|Other superficial bite of unspecified upper arm, sequela|Other superficial bite of unspecified upper arm, sequela +C0160840|T037|PT|S40.9|ICD10|Superficial injury of shoulder and upper arm, unspecified|Superficial injury of shoulder and upper arm, unspecified +C0160840|T037|AB|S40.9|ICD10CM|Unspecified superficial injury of shoulder and upper arm|Unspecified superficial injury of shoulder and upper arm +C0160840|T037|HT|S40.9|ICD10CM|Unspecified superficial injury of shoulder and upper arm|Unspecified superficial injury of shoulder and upper arm +C2840179|T037|AB|S40.91|ICD10CM|Unspecified superficial injury of shoulder|Unspecified superficial injury of shoulder +C2840179|T037|HT|S40.91|ICD10CM|Unspecified superficial injury of shoulder|Unspecified superficial injury of shoulder +C2840180|T037|AB|S40.911|ICD10CM|Unspecified superficial injury of right shoulder|Unspecified superficial injury of right shoulder +C2840180|T037|HT|S40.911|ICD10CM|Unspecified superficial injury of right shoulder|Unspecified superficial injury of right shoulder +C2840181|T037|AB|S40.911A|ICD10CM|Unsp superficial injury of right shoulder, init encntr|Unsp superficial injury of right shoulder, init encntr +C2840181|T037|PT|S40.911A|ICD10CM|Unspecified superficial injury of right shoulder, initial encounter|Unspecified superficial injury of right shoulder, initial encounter +C2840182|T037|AB|S40.911D|ICD10CM|Unsp superficial injury of right shoulder, subs encntr|Unsp superficial injury of right shoulder, subs encntr +C2840182|T037|PT|S40.911D|ICD10CM|Unspecified superficial injury of right shoulder, subsequent encounter|Unspecified superficial injury of right shoulder, subsequent encounter +C2840183|T037|AB|S40.911S|ICD10CM|Unspecified superficial injury of right shoulder, sequela|Unspecified superficial injury of right shoulder, sequela +C2840183|T037|PT|S40.911S|ICD10CM|Unspecified superficial injury of right shoulder, sequela|Unspecified superficial injury of right shoulder, sequela +C2840184|T037|AB|S40.912|ICD10CM|Unspecified superficial injury of left shoulder|Unspecified superficial injury of left shoulder +C2840184|T037|HT|S40.912|ICD10CM|Unspecified superficial injury of left shoulder|Unspecified superficial injury of left shoulder +C2840185|T037|AB|S40.912A|ICD10CM|Unspecified superficial injury of left shoulder, init encntr|Unspecified superficial injury of left shoulder, init encntr +C2840185|T037|PT|S40.912A|ICD10CM|Unspecified superficial injury of left shoulder, initial encounter|Unspecified superficial injury of left shoulder, initial encounter +C2840186|T037|AB|S40.912D|ICD10CM|Unspecified superficial injury of left shoulder, subs encntr|Unspecified superficial injury of left shoulder, subs encntr +C2840186|T037|PT|S40.912D|ICD10CM|Unspecified superficial injury of left shoulder, subsequent encounter|Unspecified superficial injury of left shoulder, subsequent encounter +C2840187|T037|AB|S40.912S|ICD10CM|Unspecified superficial injury of left shoulder, sequela|Unspecified superficial injury of left shoulder, sequela +C2840187|T037|PT|S40.912S|ICD10CM|Unspecified superficial injury of left shoulder, sequela|Unspecified superficial injury of left shoulder, sequela +C2840188|T037|AB|S40.919|ICD10CM|Unspecified superficial injury of unspecified shoulder|Unspecified superficial injury of unspecified shoulder +C2840188|T037|HT|S40.919|ICD10CM|Unspecified superficial injury of unspecified shoulder|Unspecified superficial injury of unspecified shoulder +C2840189|T037|AB|S40.919A|ICD10CM|Unsp superficial injury of unspecified shoulder, init encntr|Unsp superficial injury of unspecified shoulder, init encntr +C2840189|T037|PT|S40.919A|ICD10CM|Unspecified superficial injury of unspecified shoulder, initial encounter|Unspecified superficial injury of unspecified shoulder, initial encounter +C2840190|T037|AB|S40.919D|ICD10CM|Unsp superficial injury of unspecified shoulder, subs encntr|Unsp superficial injury of unspecified shoulder, subs encntr +C2840190|T037|PT|S40.919D|ICD10CM|Unspecified superficial injury of unspecified shoulder, subsequent encounter|Unspecified superficial injury of unspecified shoulder, subsequent encounter +C2840191|T037|AB|S40.919S|ICD10CM|Unsp superficial injury of unspecified shoulder, sequela|Unsp superficial injury of unspecified shoulder, sequela +C2840191|T037|PT|S40.919S|ICD10CM|Unspecified superficial injury of unspecified shoulder, sequela|Unspecified superficial injury of unspecified shoulder, sequela +C2840192|T037|AB|S40.92|ICD10CM|Unspecified superficial injury of upper arm|Unspecified superficial injury of upper arm +C2840192|T037|HT|S40.92|ICD10CM|Unspecified superficial injury of upper arm|Unspecified superficial injury of upper arm +C2840193|T037|AB|S40.921|ICD10CM|Unspecified superficial injury of right upper arm|Unspecified superficial injury of right upper arm +C2840193|T037|HT|S40.921|ICD10CM|Unspecified superficial injury of right upper arm|Unspecified superficial injury of right upper arm +C2840194|T037|AB|S40.921A|ICD10CM|Unsp superficial injury of right upper arm, init encntr|Unsp superficial injury of right upper arm, init encntr +C2840194|T037|PT|S40.921A|ICD10CM|Unspecified superficial injury of right upper arm, initial encounter|Unspecified superficial injury of right upper arm, initial encounter +C2840195|T037|AB|S40.921D|ICD10CM|Unsp superficial injury of right upper arm, subs encntr|Unsp superficial injury of right upper arm, subs encntr +C2840195|T037|PT|S40.921D|ICD10CM|Unspecified superficial injury of right upper arm, subsequent encounter|Unspecified superficial injury of right upper arm, subsequent encounter +C2840196|T037|AB|S40.921S|ICD10CM|Unspecified superficial injury of right upper arm, sequela|Unspecified superficial injury of right upper arm, sequela +C2840196|T037|PT|S40.921S|ICD10CM|Unspecified superficial injury of right upper arm, sequela|Unspecified superficial injury of right upper arm, sequela +C2840197|T037|AB|S40.922|ICD10CM|Unspecified superficial injury of left upper arm|Unspecified superficial injury of left upper arm +C2840197|T037|HT|S40.922|ICD10CM|Unspecified superficial injury of left upper arm|Unspecified superficial injury of left upper arm +C2840198|T037|AB|S40.922A|ICD10CM|Unsp superficial injury of left upper arm, init encntr|Unsp superficial injury of left upper arm, init encntr +C2840198|T037|PT|S40.922A|ICD10CM|Unspecified superficial injury of left upper arm, initial encounter|Unspecified superficial injury of left upper arm, initial encounter +C2840199|T037|AB|S40.922D|ICD10CM|Unsp superficial injury of left upper arm, subs encntr|Unsp superficial injury of left upper arm, subs encntr +C2840199|T037|PT|S40.922D|ICD10CM|Unspecified superficial injury of left upper arm, subsequent encounter|Unspecified superficial injury of left upper arm, subsequent encounter +C2840200|T037|AB|S40.922S|ICD10CM|Unspecified superficial injury of left upper arm, sequela|Unspecified superficial injury of left upper arm, sequela +C2840200|T037|PT|S40.922S|ICD10CM|Unspecified superficial injury of left upper arm, sequela|Unspecified superficial injury of left upper arm, sequela +C2840201|T037|AB|S40.929|ICD10CM|Unspecified superficial injury of unspecified upper arm|Unspecified superficial injury of unspecified upper arm +C2840201|T037|HT|S40.929|ICD10CM|Unspecified superficial injury of unspecified upper arm|Unspecified superficial injury of unspecified upper arm +C2840202|T037|AB|S40.929A|ICD10CM|Unsp superficial injury of unsp upper arm, init encntr|Unsp superficial injury of unsp upper arm, init encntr +C2840202|T037|PT|S40.929A|ICD10CM|Unspecified superficial injury of unspecified upper arm, initial encounter|Unspecified superficial injury of unspecified upper arm, initial encounter +C2840203|T037|AB|S40.929D|ICD10CM|Unsp superficial injury of unsp upper arm, subs encntr|Unsp superficial injury of unsp upper arm, subs encntr +C2840203|T037|PT|S40.929D|ICD10CM|Unspecified superficial injury of unspecified upper arm, subsequent encounter|Unspecified superficial injury of unspecified upper arm, subsequent encounter +C2840204|T037|AB|S40.929S|ICD10CM|Unsp superficial injury of unspecified upper arm, sequela|Unsp superficial injury of unspecified upper arm, sequela +C2840204|T037|PT|S40.929S|ICD10CM|Unspecified superficial injury of unspecified upper arm, sequela|Unspecified superficial injury of unspecified upper arm, sequela +C0432959|T037|HT|S41|ICD10|Open wound of shoulder and upper arm|Open wound of shoulder and upper arm +C0432959|T037|HT|S41|ICD10CM|Open wound of shoulder and upper arm|Open wound of shoulder and upper arm +C0432959|T037|AB|S41|ICD10CM|Open wound of shoulder and upper arm|Open wound of shoulder and upper arm +C0392121|T037|HT|S41.0|ICD10CM|Open wound of shoulder|Open wound of shoulder +C0392121|T037|AB|S41.0|ICD10CM|Open wound of shoulder|Open wound of shoulder +C0392121|T037|PT|S41.0|ICD10|Open wound of shoulder|Open wound of shoulder +C2840205|T037|AB|S41.00|ICD10CM|Unspecified open wound of shoulder|Unspecified open wound of shoulder +C2840205|T037|HT|S41.00|ICD10CM|Unspecified open wound of shoulder|Unspecified open wound of shoulder +C2840206|T037|AB|S41.001|ICD10CM|Unspecified open wound of right shoulder|Unspecified open wound of right shoulder +C2840206|T037|HT|S41.001|ICD10CM|Unspecified open wound of right shoulder|Unspecified open wound of right shoulder +C2840207|T037|AB|S41.001A|ICD10CM|Unspecified open wound of right shoulder, initial encounter|Unspecified open wound of right shoulder, initial encounter +C2840207|T037|PT|S41.001A|ICD10CM|Unspecified open wound of right shoulder, initial encounter|Unspecified open wound of right shoulder, initial encounter +C2840208|T037|AB|S41.001D|ICD10CM|Unspecified open wound of right shoulder, subs encntr|Unspecified open wound of right shoulder, subs encntr +C2840208|T037|PT|S41.001D|ICD10CM|Unspecified open wound of right shoulder, subsequent encounter|Unspecified open wound of right shoulder, subsequent encounter +C2840209|T037|AB|S41.001S|ICD10CM|Unspecified open wound of right shoulder, sequela|Unspecified open wound of right shoulder, sequela +C2840209|T037|PT|S41.001S|ICD10CM|Unspecified open wound of right shoulder, sequela|Unspecified open wound of right shoulder, sequela +C2840210|T037|AB|S41.002|ICD10CM|Unspecified open wound of left shoulder|Unspecified open wound of left shoulder +C2840210|T037|HT|S41.002|ICD10CM|Unspecified open wound of left shoulder|Unspecified open wound of left shoulder +C2840211|T037|AB|S41.002A|ICD10CM|Unspecified open wound of left shoulder, initial encounter|Unspecified open wound of left shoulder, initial encounter +C2840211|T037|PT|S41.002A|ICD10CM|Unspecified open wound of left shoulder, initial encounter|Unspecified open wound of left shoulder, initial encounter +C2840212|T037|AB|S41.002D|ICD10CM|Unspecified open wound of left shoulder, subs encntr|Unspecified open wound of left shoulder, subs encntr +C2840212|T037|PT|S41.002D|ICD10CM|Unspecified open wound of left shoulder, subsequent encounter|Unspecified open wound of left shoulder, subsequent encounter +C2840213|T037|AB|S41.002S|ICD10CM|Unspecified open wound of left shoulder, sequela|Unspecified open wound of left shoulder, sequela +C2840213|T037|PT|S41.002S|ICD10CM|Unspecified open wound of left shoulder, sequela|Unspecified open wound of left shoulder, sequela +C2840214|T037|AB|S41.009|ICD10CM|Unspecified open wound of unspecified shoulder|Unspecified open wound of unspecified shoulder +C2840214|T037|HT|S41.009|ICD10CM|Unspecified open wound of unspecified shoulder|Unspecified open wound of unspecified shoulder +C2840215|T037|AB|S41.009A|ICD10CM|Unspecified open wound of unspecified shoulder, init encntr|Unspecified open wound of unspecified shoulder, init encntr +C2840215|T037|PT|S41.009A|ICD10CM|Unspecified open wound of unspecified shoulder, initial encounter|Unspecified open wound of unspecified shoulder, initial encounter +C2840216|T037|AB|S41.009D|ICD10CM|Unspecified open wound of unspecified shoulder, subs encntr|Unspecified open wound of unspecified shoulder, subs encntr +C2840216|T037|PT|S41.009D|ICD10CM|Unspecified open wound of unspecified shoulder, subsequent encounter|Unspecified open wound of unspecified shoulder, subsequent encounter +C2840217|T037|AB|S41.009S|ICD10CM|Unspecified open wound of unspecified shoulder, sequela|Unspecified open wound of unspecified shoulder, sequela +C2840217|T037|PT|S41.009S|ICD10CM|Unspecified open wound of unspecified shoulder, sequela|Unspecified open wound of unspecified shoulder, sequela +C2840218|T037|AB|S41.01|ICD10CM|Laceration without foreign body of shoulder|Laceration without foreign body of shoulder +C2840218|T037|HT|S41.01|ICD10CM|Laceration without foreign body of shoulder|Laceration without foreign body of shoulder +C2840219|T037|AB|S41.011|ICD10CM|Laceration without foreign body of right shoulder|Laceration without foreign body of right shoulder +C2840219|T037|HT|S41.011|ICD10CM|Laceration without foreign body of right shoulder|Laceration without foreign body of right shoulder +C2840220|T037|AB|S41.011A|ICD10CM|Laceration w/o foreign body of right shoulder, init encntr|Laceration w/o foreign body of right shoulder, init encntr +C2840220|T037|PT|S41.011A|ICD10CM|Laceration without foreign body of right shoulder, initial encounter|Laceration without foreign body of right shoulder, initial encounter +C2840221|T037|AB|S41.011D|ICD10CM|Laceration w/o foreign body of right shoulder, subs encntr|Laceration w/o foreign body of right shoulder, subs encntr +C2840221|T037|PT|S41.011D|ICD10CM|Laceration without foreign body of right shoulder, subsequent encounter|Laceration without foreign body of right shoulder, subsequent encounter +C2840222|T037|AB|S41.011S|ICD10CM|Laceration without foreign body of right shoulder, sequela|Laceration without foreign body of right shoulder, sequela +C2840222|T037|PT|S41.011S|ICD10CM|Laceration without foreign body of right shoulder, sequela|Laceration without foreign body of right shoulder, sequela +C2840223|T037|AB|S41.012|ICD10CM|Laceration without foreign body of left shoulder|Laceration without foreign body of left shoulder +C2840223|T037|HT|S41.012|ICD10CM|Laceration without foreign body of left shoulder|Laceration without foreign body of left shoulder +C2840224|T037|AB|S41.012A|ICD10CM|Laceration w/o foreign body of left shoulder, init encntr|Laceration w/o foreign body of left shoulder, init encntr +C2840224|T037|PT|S41.012A|ICD10CM|Laceration without foreign body of left shoulder, initial encounter|Laceration without foreign body of left shoulder, initial encounter +C2840225|T037|AB|S41.012D|ICD10CM|Laceration w/o foreign body of left shoulder, subs encntr|Laceration w/o foreign body of left shoulder, subs encntr +C2840225|T037|PT|S41.012D|ICD10CM|Laceration without foreign body of left shoulder, subsequent encounter|Laceration without foreign body of left shoulder, subsequent encounter +C2840226|T037|AB|S41.012S|ICD10CM|Laceration without foreign body of left shoulder, sequela|Laceration without foreign body of left shoulder, sequela +C2840226|T037|PT|S41.012S|ICD10CM|Laceration without foreign body of left shoulder, sequela|Laceration without foreign body of left shoulder, sequela +C2840227|T037|AB|S41.019|ICD10CM|Laceration without foreign body of unspecified shoulder|Laceration without foreign body of unspecified shoulder +C2840227|T037|HT|S41.019|ICD10CM|Laceration without foreign body of unspecified shoulder|Laceration without foreign body of unspecified shoulder +C2840228|T037|AB|S41.019A|ICD10CM|Laceration w/o foreign body of unsp shoulder, init encntr|Laceration w/o foreign body of unsp shoulder, init encntr +C2840228|T037|PT|S41.019A|ICD10CM|Laceration without foreign body of unspecified shoulder, initial encounter|Laceration without foreign body of unspecified shoulder, initial encounter +C2840229|T037|AB|S41.019D|ICD10CM|Laceration w/o foreign body of unsp shoulder, subs encntr|Laceration w/o foreign body of unsp shoulder, subs encntr +C2840229|T037|PT|S41.019D|ICD10CM|Laceration without foreign body of unspecified shoulder, subsequent encounter|Laceration without foreign body of unspecified shoulder, subsequent encounter +C2840230|T037|AB|S41.019S|ICD10CM|Laceration without foreign body of unsp shoulder, sequela|Laceration without foreign body of unsp shoulder, sequela +C2840230|T037|PT|S41.019S|ICD10CM|Laceration without foreign body of unspecified shoulder, sequela|Laceration without foreign body of unspecified shoulder, sequela +C2840231|T037|HT|S41.02|ICD10CM|Laceration with foreign body of shoulder|Laceration with foreign body of shoulder +C2840231|T037|AB|S41.02|ICD10CM|Laceration with foreign body of shoulder|Laceration with foreign body of shoulder +C2840232|T037|AB|S41.021|ICD10CM|Laceration with foreign body of right shoulder|Laceration with foreign body of right shoulder +C2840232|T037|HT|S41.021|ICD10CM|Laceration with foreign body of right shoulder|Laceration with foreign body of right shoulder +C2840233|T037|AB|S41.021A|ICD10CM|Laceration with foreign body of right shoulder, init encntr|Laceration with foreign body of right shoulder, init encntr +C2840233|T037|PT|S41.021A|ICD10CM|Laceration with foreign body of right shoulder, initial encounter|Laceration with foreign body of right shoulder, initial encounter +C2840234|T037|AB|S41.021D|ICD10CM|Laceration with foreign body of right shoulder, subs encntr|Laceration with foreign body of right shoulder, subs encntr +C2840234|T037|PT|S41.021D|ICD10CM|Laceration with foreign body of right shoulder, subsequent encounter|Laceration with foreign body of right shoulder, subsequent encounter +C2840235|T037|AB|S41.021S|ICD10CM|Laceration with foreign body of right shoulder, sequela|Laceration with foreign body of right shoulder, sequela +C2840235|T037|PT|S41.021S|ICD10CM|Laceration with foreign body of right shoulder, sequela|Laceration with foreign body of right shoulder, sequela +C2840236|T037|AB|S41.022|ICD10CM|Laceration with foreign body of left shoulder|Laceration with foreign body of left shoulder +C2840236|T037|HT|S41.022|ICD10CM|Laceration with foreign body of left shoulder|Laceration with foreign body of left shoulder +C2840237|T037|AB|S41.022A|ICD10CM|Laceration with foreign body of left shoulder, init encntr|Laceration with foreign body of left shoulder, init encntr +C2840237|T037|PT|S41.022A|ICD10CM|Laceration with foreign body of left shoulder, initial encounter|Laceration with foreign body of left shoulder, initial encounter +C2840238|T037|AB|S41.022D|ICD10CM|Laceration with foreign body of left shoulder, subs encntr|Laceration with foreign body of left shoulder, subs encntr +C2840238|T037|PT|S41.022D|ICD10CM|Laceration with foreign body of left shoulder, subsequent encounter|Laceration with foreign body of left shoulder, subsequent encounter +C2840239|T037|AB|S41.022S|ICD10CM|Laceration with foreign body of left shoulder, sequela|Laceration with foreign body of left shoulder, sequela +C2840239|T037|PT|S41.022S|ICD10CM|Laceration with foreign body of left shoulder, sequela|Laceration with foreign body of left shoulder, sequela +C2840240|T037|AB|S41.029|ICD10CM|Laceration with foreign body of unspecified shoulder|Laceration with foreign body of unspecified shoulder +C2840240|T037|HT|S41.029|ICD10CM|Laceration with foreign body of unspecified shoulder|Laceration with foreign body of unspecified shoulder +C2840241|T037|AB|S41.029A|ICD10CM|Laceration with foreign body of unsp shoulder, init encntr|Laceration with foreign body of unsp shoulder, init encntr +C2840241|T037|PT|S41.029A|ICD10CM|Laceration with foreign body of unspecified shoulder, initial encounter|Laceration with foreign body of unspecified shoulder, initial encounter +C2840242|T037|AB|S41.029D|ICD10CM|Laceration with foreign body of unsp shoulder, subs encntr|Laceration with foreign body of unsp shoulder, subs encntr +C2840242|T037|PT|S41.029D|ICD10CM|Laceration with foreign body of unspecified shoulder, subsequent encounter|Laceration with foreign body of unspecified shoulder, subsequent encounter +C2840243|T037|AB|S41.029S|ICD10CM|Laceration with foreign body of unsp shoulder, sequela|Laceration with foreign body of unsp shoulder, sequela +C2840243|T037|PT|S41.029S|ICD10CM|Laceration with foreign body of unspecified shoulder, sequela|Laceration with foreign body of unspecified shoulder, sequela +C2840244|T037|AB|S41.03|ICD10CM|Puncture wound without foreign body of shoulder|Puncture wound without foreign body of shoulder +C2840244|T037|HT|S41.03|ICD10CM|Puncture wound without foreign body of shoulder|Puncture wound without foreign body of shoulder +C2840245|T037|AB|S41.031|ICD10CM|Puncture wound without foreign body of right shoulder|Puncture wound without foreign body of right shoulder +C2840245|T037|HT|S41.031|ICD10CM|Puncture wound without foreign body of right shoulder|Puncture wound without foreign body of right shoulder +C2840246|T037|AB|S41.031A|ICD10CM|Puncture wound w/o foreign body of right shoulder, init|Puncture wound w/o foreign body of right shoulder, init +C2840246|T037|PT|S41.031A|ICD10CM|Puncture wound without foreign body of right shoulder, initial encounter|Puncture wound without foreign body of right shoulder, initial encounter +C2840247|T037|AB|S41.031D|ICD10CM|Puncture wound w/o foreign body of right shoulder, subs|Puncture wound w/o foreign body of right shoulder, subs +C2840247|T037|PT|S41.031D|ICD10CM|Puncture wound without foreign body of right shoulder, subsequent encounter|Puncture wound without foreign body of right shoulder, subsequent encounter +C2840248|T037|AB|S41.031S|ICD10CM|Puncture wound w/o foreign body of right shoulder, sequela|Puncture wound w/o foreign body of right shoulder, sequela +C2840248|T037|PT|S41.031S|ICD10CM|Puncture wound without foreign body of right shoulder, sequela|Puncture wound without foreign body of right shoulder, sequela +C2840249|T037|AB|S41.032|ICD10CM|Puncture wound without foreign body of left shoulder|Puncture wound without foreign body of left shoulder +C2840249|T037|HT|S41.032|ICD10CM|Puncture wound without foreign body of left shoulder|Puncture wound without foreign body of left shoulder +C2840250|T037|AB|S41.032A|ICD10CM|Puncture wound w/o foreign body of left shoulder, init|Puncture wound w/o foreign body of left shoulder, init +C2840250|T037|PT|S41.032A|ICD10CM|Puncture wound without foreign body of left shoulder, initial encounter|Puncture wound without foreign body of left shoulder, initial encounter +C2840251|T037|AB|S41.032D|ICD10CM|Puncture wound w/o foreign body of left shoulder, subs|Puncture wound w/o foreign body of left shoulder, subs +C2840251|T037|PT|S41.032D|ICD10CM|Puncture wound without foreign body of left shoulder, subsequent encounter|Puncture wound without foreign body of left shoulder, subsequent encounter +C2840252|T037|AB|S41.032S|ICD10CM|Puncture wound w/o foreign body of left shoulder, sequela|Puncture wound w/o foreign body of left shoulder, sequela +C2840252|T037|PT|S41.032S|ICD10CM|Puncture wound without foreign body of left shoulder, sequela|Puncture wound without foreign body of left shoulder, sequela +C2840253|T037|AB|S41.039|ICD10CM|Puncture wound without foreign body of unspecified shoulder|Puncture wound without foreign body of unspecified shoulder +C2840253|T037|HT|S41.039|ICD10CM|Puncture wound without foreign body of unspecified shoulder|Puncture wound without foreign body of unspecified shoulder +C2840254|T037|AB|S41.039A|ICD10CM|Puncture wound w/o foreign body of unsp shoulder, init|Puncture wound w/o foreign body of unsp shoulder, init +C2840254|T037|PT|S41.039A|ICD10CM|Puncture wound without foreign body of unspecified shoulder, initial encounter|Puncture wound without foreign body of unspecified shoulder, initial encounter +C2840255|T037|AB|S41.039D|ICD10CM|Puncture wound w/o foreign body of unsp shoulder, subs|Puncture wound w/o foreign body of unsp shoulder, subs +C2840255|T037|PT|S41.039D|ICD10CM|Puncture wound without foreign body of unspecified shoulder, subsequent encounter|Puncture wound without foreign body of unspecified shoulder, subsequent encounter +C2840256|T037|AB|S41.039S|ICD10CM|Puncture wound w/o foreign body of unsp shoulder, sequela|Puncture wound w/o foreign body of unsp shoulder, sequela +C2840256|T037|PT|S41.039S|ICD10CM|Puncture wound without foreign body of unspecified shoulder, sequela|Puncture wound without foreign body of unspecified shoulder, sequela +C2840257|T037|HT|S41.04|ICD10CM|Puncture wound with foreign body of shoulder|Puncture wound with foreign body of shoulder +C2840257|T037|AB|S41.04|ICD10CM|Puncture wound with foreign body of shoulder|Puncture wound with foreign body of shoulder +C2840258|T037|AB|S41.041|ICD10CM|Puncture wound with foreign body of right shoulder|Puncture wound with foreign body of right shoulder +C2840258|T037|HT|S41.041|ICD10CM|Puncture wound with foreign body of right shoulder|Puncture wound with foreign body of right shoulder +C2840259|T037|AB|S41.041A|ICD10CM|Puncture wound w foreign body of right shoulder, init encntr|Puncture wound w foreign body of right shoulder, init encntr +C2840259|T037|PT|S41.041A|ICD10CM|Puncture wound with foreign body of right shoulder, initial encounter|Puncture wound with foreign body of right shoulder, initial encounter +C2840260|T037|AB|S41.041D|ICD10CM|Puncture wound w foreign body of right shoulder, subs encntr|Puncture wound w foreign body of right shoulder, subs encntr +C2840260|T037|PT|S41.041D|ICD10CM|Puncture wound with foreign body of right shoulder, subsequent encounter|Puncture wound with foreign body of right shoulder, subsequent encounter +C2840261|T037|AB|S41.041S|ICD10CM|Puncture wound with foreign body of right shoulder, sequela|Puncture wound with foreign body of right shoulder, sequela +C2840261|T037|PT|S41.041S|ICD10CM|Puncture wound with foreign body of right shoulder, sequela|Puncture wound with foreign body of right shoulder, sequela +C2840262|T037|AB|S41.042|ICD10CM|Puncture wound with foreign body of left shoulder|Puncture wound with foreign body of left shoulder +C2840262|T037|HT|S41.042|ICD10CM|Puncture wound with foreign body of left shoulder|Puncture wound with foreign body of left shoulder +C2840263|T037|AB|S41.042A|ICD10CM|Puncture wound w foreign body of left shoulder, init encntr|Puncture wound w foreign body of left shoulder, init encntr +C2840263|T037|PT|S41.042A|ICD10CM|Puncture wound with foreign body of left shoulder, initial encounter|Puncture wound with foreign body of left shoulder, initial encounter +C2840264|T037|AB|S41.042D|ICD10CM|Puncture wound w foreign body of left shoulder, subs encntr|Puncture wound w foreign body of left shoulder, subs encntr +C2840264|T037|PT|S41.042D|ICD10CM|Puncture wound with foreign body of left shoulder, subsequent encounter|Puncture wound with foreign body of left shoulder, subsequent encounter +C2840265|T037|AB|S41.042S|ICD10CM|Puncture wound with foreign body of left shoulder, sequela|Puncture wound with foreign body of left shoulder, sequela +C2840265|T037|PT|S41.042S|ICD10CM|Puncture wound with foreign body of left shoulder, sequela|Puncture wound with foreign body of left shoulder, sequela +C2840266|T037|AB|S41.049|ICD10CM|Puncture wound with foreign body of unspecified shoulder|Puncture wound with foreign body of unspecified shoulder +C2840266|T037|HT|S41.049|ICD10CM|Puncture wound with foreign body of unspecified shoulder|Puncture wound with foreign body of unspecified shoulder +C2840267|T037|AB|S41.049A|ICD10CM|Puncture wound w foreign body of unsp shoulder, init encntr|Puncture wound w foreign body of unsp shoulder, init encntr +C2840267|T037|PT|S41.049A|ICD10CM|Puncture wound with foreign body of unspecified shoulder, initial encounter|Puncture wound with foreign body of unspecified shoulder, initial encounter +C2840268|T037|AB|S41.049D|ICD10CM|Puncture wound w foreign body of unsp shoulder, subs encntr|Puncture wound w foreign body of unsp shoulder, subs encntr +C2840268|T037|PT|S41.049D|ICD10CM|Puncture wound with foreign body of unspecified shoulder, subsequent encounter|Puncture wound with foreign body of unspecified shoulder, subsequent encounter +C2840269|T037|AB|S41.049S|ICD10CM|Puncture wound with foreign body of unsp shoulder, sequela|Puncture wound with foreign body of unsp shoulder, sequela +C2840269|T037|PT|S41.049S|ICD10CM|Puncture wound with foreign body of unspecified shoulder, sequela|Puncture wound with foreign body of unspecified shoulder, sequela +C2919027|T037|ET|S41.05|ICD10CM|Bite of shoulder NOS|Bite of shoulder NOS +C2840270|T037|HT|S41.05|ICD10CM|Open bite of shoulder|Open bite of shoulder +C2840270|T037|AB|S41.05|ICD10CM|Open bite of shoulder|Open bite of shoulder +C2840271|T037|AB|S41.051|ICD10CM|Open bite of right shoulder|Open bite of right shoulder +C2840271|T037|HT|S41.051|ICD10CM|Open bite of right shoulder|Open bite of right shoulder +C2840272|T037|AB|S41.051A|ICD10CM|Open bite of right shoulder, initial encounter|Open bite of right shoulder, initial encounter +C2840272|T037|PT|S41.051A|ICD10CM|Open bite of right shoulder, initial encounter|Open bite of right shoulder, initial encounter +C2840273|T037|AB|S41.051D|ICD10CM|Open bite of right shoulder, subsequent encounter|Open bite of right shoulder, subsequent encounter +C2840273|T037|PT|S41.051D|ICD10CM|Open bite of right shoulder, subsequent encounter|Open bite of right shoulder, subsequent encounter +C2840274|T037|AB|S41.051S|ICD10CM|Open bite of right shoulder, sequela|Open bite of right shoulder, sequela +C2840274|T037|PT|S41.051S|ICD10CM|Open bite of right shoulder, sequela|Open bite of right shoulder, sequela +C2840275|T037|AB|S41.052|ICD10CM|Open bite of left shoulder|Open bite of left shoulder +C2840275|T037|HT|S41.052|ICD10CM|Open bite of left shoulder|Open bite of left shoulder +C2840276|T037|AB|S41.052A|ICD10CM|Open bite of left shoulder, initial encounter|Open bite of left shoulder, initial encounter +C2840276|T037|PT|S41.052A|ICD10CM|Open bite of left shoulder, initial encounter|Open bite of left shoulder, initial encounter +C2840277|T037|AB|S41.052D|ICD10CM|Open bite of left shoulder, subsequent encounter|Open bite of left shoulder, subsequent encounter +C2840277|T037|PT|S41.052D|ICD10CM|Open bite of left shoulder, subsequent encounter|Open bite of left shoulder, subsequent encounter +C2840278|T037|AB|S41.052S|ICD10CM|Open bite of left shoulder, sequela|Open bite of left shoulder, sequela +C2840278|T037|PT|S41.052S|ICD10CM|Open bite of left shoulder, sequela|Open bite of left shoulder, sequela +C2840279|T037|AB|S41.059|ICD10CM|Open bite of unspecified shoulder|Open bite of unspecified shoulder +C2840279|T037|HT|S41.059|ICD10CM|Open bite of unspecified shoulder|Open bite of unspecified shoulder +C2840280|T037|AB|S41.059A|ICD10CM|Open bite of unspecified shoulder, initial encounter|Open bite of unspecified shoulder, initial encounter +C2840280|T037|PT|S41.059A|ICD10CM|Open bite of unspecified shoulder, initial encounter|Open bite of unspecified shoulder, initial encounter +C2840281|T037|AB|S41.059D|ICD10CM|Open bite of unspecified shoulder, subsequent encounter|Open bite of unspecified shoulder, subsequent encounter +C2840281|T037|PT|S41.059D|ICD10CM|Open bite of unspecified shoulder, subsequent encounter|Open bite of unspecified shoulder, subsequent encounter +C2840282|T037|AB|S41.059S|ICD10CM|Open bite of unspecified shoulder, sequela|Open bite of unspecified shoulder, sequela +C2840282|T037|PT|S41.059S|ICD10CM|Open bite of unspecified shoulder, sequela|Open bite of unspecified shoulder, sequela +C0160588|T037|HT|S41.1|ICD10CM|Open wound of upper arm|Open wound of upper arm +C0160588|T037|AB|S41.1|ICD10CM|Open wound of upper arm|Open wound of upper arm +C0160588|T037|PT|S41.1|ICD10|Open wound of upper arm|Open wound of upper arm +C2840283|T037|AB|S41.10|ICD10CM|Unspecified open wound of upper arm|Unspecified open wound of upper arm +C2840283|T037|HT|S41.10|ICD10CM|Unspecified open wound of upper arm|Unspecified open wound of upper arm +C2840284|T037|AB|S41.101|ICD10CM|Unspecified open wound of right upper arm|Unspecified open wound of right upper arm +C2840284|T037|HT|S41.101|ICD10CM|Unspecified open wound of right upper arm|Unspecified open wound of right upper arm +C2840285|T037|AB|S41.101A|ICD10CM|Unspecified open wound of right upper arm, initial encounter|Unspecified open wound of right upper arm, initial encounter +C2840285|T037|PT|S41.101A|ICD10CM|Unspecified open wound of right upper arm, initial encounter|Unspecified open wound of right upper arm, initial encounter +C2840286|T037|AB|S41.101D|ICD10CM|Unspecified open wound of right upper arm, subs encntr|Unspecified open wound of right upper arm, subs encntr +C2840286|T037|PT|S41.101D|ICD10CM|Unspecified open wound of right upper arm, subsequent encounter|Unspecified open wound of right upper arm, subsequent encounter +C2840287|T037|AB|S41.101S|ICD10CM|Unspecified open wound of right upper arm, sequela|Unspecified open wound of right upper arm, sequela +C2840287|T037|PT|S41.101S|ICD10CM|Unspecified open wound of right upper arm, sequela|Unspecified open wound of right upper arm, sequela +C2840288|T037|AB|S41.102|ICD10CM|Unspecified open wound of left upper arm|Unspecified open wound of left upper arm +C2840288|T037|HT|S41.102|ICD10CM|Unspecified open wound of left upper arm|Unspecified open wound of left upper arm +C2840289|T037|AB|S41.102A|ICD10CM|Unspecified open wound of left upper arm, initial encounter|Unspecified open wound of left upper arm, initial encounter +C2840289|T037|PT|S41.102A|ICD10CM|Unspecified open wound of left upper arm, initial encounter|Unspecified open wound of left upper arm, initial encounter +C2840290|T037|AB|S41.102D|ICD10CM|Unspecified open wound of left upper arm, subs encntr|Unspecified open wound of left upper arm, subs encntr +C2840290|T037|PT|S41.102D|ICD10CM|Unspecified open wound of left upper arm, subsequent encounter|Unspecified open wound of left upper arm, subsequent encounter +C2840291|T037|AB|S41.102S|ICD10CM|Unspecified open wound of left upper arm, sequela|Unspecified open wound of left upper arm, sequela +C2840291|T037|PT|S41.102S|ICD10CM|Unspecified open wound of left upper arm, sequela|Unspecified open wound of left upper arm, sequela +C2840292|T037|AB|S41.109|ICD10CM|Unspecified open wound of unspecified upper arm|Unspecified open wound of unspecified upper arm +C2840292|T037|HT|S41.109|ICD10CM|Unspecified open wound of unspecified upper arm|Unspecified open wound of unspecified upper arm +C2840293|T037|AB|S41.109A|ICD10CM|Unspecified open wound of unspecified upper arm, init encntr|Unspecified open wound of unspecified upper arm, init encntr +C2840293|T037|PT|S41.109A|ICD10CM|Unspecified open wound of unspecified upper arm, initial encounter|Unspecified open wound of unspecified upper arm, initial encounter +C2840294|T037|AB|S41.109D|ICD10CM|Unspecified open wound of unspecified upper arm, subs encntr|Unspecified open wound of unspecified upper arm, subs encntr +C2840294|T037|PT|S41.109D|ICD10CM|Unspecified open wound of unspecified upper arm, subsequent encounter|Unspecified open wound of unspecified upper arm, subsequent encounter +C2840295|T037|AB|S41.109S|ICD10CM|Unspecified open wound of unspecified upper arm, sequela|Unspecified open wound of unspecified upper arm, sequela +C2840295|T037|PT|S41.109S|ICD10CM|Unspecified open wound of unspecified upper arm, sequela|Unspecified open wound of unspecified upper arm, sequela +C2840296|T037|AB|S41.11|ICD10CM|Laceration without foreign body of upper arm|Laceration without foreign body of upper arm +C2840296|T037|HT|S41.11|ICD10CM|Laceration without foreign body of upper arm|Laceration without foreign body of upper arm +C2840297|T037|AB|S41.111|ICD10CM|Laceration without foreign body of right upper arm|Laceration without foreign body of right upper arm +C2840297|T037|HT|S41.111|ICD10CM|Laceration without foreign body of right upper arm|Laceration without foreign body of right upper arm +C2840298|T037|AB|S41.111A|ICD10CM|Laceration w/o foreign body of right upper arm, init encntr|Laceration w/o foreign body of right upper arm, init encntr +C2840298|T037|PT|S41.111A|ICD10CM|Laceration without foreign body of right upper arm, initial encounter|Laceration without foreign body of right upper arm, initial encounter +C2840299|T037|AB|S41.111D|ICD10CM|Laceration w/o foreign body of right upper arm, subs encntr|Laceration w/o foreign body of right upper arm, subs encntr +C2840299|T037|PT|S41.111D|ICD10CM|Laceration without foreign body of right upper arm, subsequent encounter|Laceration without foreign body of right upper arm, subsequent encounter +C2840300|T037|AB|S41.111S|ICD10CM|Laceration without foreign body of right upper arm, sequela|Laceration without foreign body of right upper arm, sequela +C2840300|T037|PT|S41.111S|ICD10CM|Laceration without foreign body of right upper arm, sequela|Laceration without foreign body of right upper arm, sequela +C2840301|T037|AB|S41.112|ICD10CM|Laceration without foreign body of left upper arm|Laceration without foreign body of left upper arm +C2840301|T037|HT|S41.112|ICD10CM|Laceration without foreign body of left upper arm|Laceration without foreign body of left upper arm +C2840302|T037|AB|S41.112A|ICD10CM|Laceration w/o foreign body of left upper arm, init encntr|Laceration w/o foreign body of left upper arm, init encntr +C2840302|T037|PT|S41.112A|ICD10CM|Laceration without foreign body of left upper arm, initial encounter|Laceration without foreign body of left upper arm, initial encounter +C2840303|T037|AB|S41.112D|ICD10CM|Laceration w/o foreign body of left upper arm, subs encntr|Laceration w/o foreign body of left upper arm, subs encntr +C2840303|T037|PT|S41.112D|ICD10CM|Laceration without foreign body of left upper arm, subsequent encounter|Laceration without foreign body of left upper arm, subsequent encounter +C2840304|T037|AB|S41.112S|ICD10CM|Laceration without foreign body of left upper arm, sequela|Laceration without foreign body of left upper arm, sequela +C2840304|T037|PT|S41.112S|ICD10CM|Laceration without foreign body of left upper arm, sequela|Laceration without foreign body of left upper arm, sequela +C2840305|T037|AB|S41.119|ICD10CM|Laceration without foreign body of unspecified upper arm|Laceration without foreign body of unspecified upper arm +C2840305|T037|HT|S41.119|ICD10CM|Laceration without foreign body of unspecified upper arm|Laceration without foreign body of unspecified upper arm +C2840306|T037|AB|S41.119A|ICD10CM|Laceration w/o foreign body of unsp upper arm, init encntr|Laceration w/o foreign body of unsp upper arm, init encntr +C2840306|T037|PT|S41.119A|ICD10CM|Laceration without foreign body of unspecified upper arm, initial encounter|Laceration without foreign body of unspecified upper arm, initial encounter +C2840307|T037|AB|S41.119D|ICD10CM|Laceration w/o foreign body of unsp upper arm, subs encntr|Laceration w/o foreign body of unsp upper arm, subs encntr +C2840307|T037|PT|S41.119D|ICD10CM|Laceration without foreign body of unspecified upper arm, subsequent encounter|Laceration without foreign body of unspecified upper arm, subsequent encounter +C2840308|T037|AB|S41.119S|ICD10CM|Laceration without foreign body of unsp upper arm, sequela|Laceration without foreign body of unsp upper arm, sequela +C2840308|T037|PT|S41.119S|ICD10CM|Laceration without foreign body of unspecified upper arm, sequela|Laceration without foreign body of unspecified upper arm, sequela +C2840309|T037|HT|S41.12|ICD10CM|Laceration with foreign body of upper arm|Laceration with foreign body of upper arm +C2840309|T037|AB|S41.12|ICD10CM|Laceration with foreign body of upper arm|Laceration with foreign body of upper arm +C2840310|T037|AB|S41.121|ICD10CM|Laceration with foreign body of right upper arm|Laceration with foreign body of right upper arm +C2840310|T037|HT|S41.121|ICD10CM|Laceration with foreign body of right upper arm|Laceration with foreign body of right upper arm +C2840311|T037|AB|S41.121A|ICD10CM|Laceration with foreign body of right upper arm, init encntr|Laceration with foreign body of right upper arm, init encntr +C2840311|T037|PT|S41.121A|ICD10CM|Laceration with foreign body of right upper arm, initial encounter|Laceration with foreign body of right upper arm, initial encounter +C2840312|T037|AB|S41.121D|ICD10CM|Laceration with foreign body of right upper arm, subs encntr|Laceration with foreign body of right upper arm, subs encntr +C2840312|T037|PT|S41.121D|ICD10CM|Laceration with foreign body of right upper arm, subsequent encounter|Laceration with foreign body of right upper arm, subsequent encounter +C2840313|T037|AB|S41.121S|ICD10CM|Laceration with foreign body of right upper arm, sequela|Laceration with foreign body of right upper arm, sequela +C2840313|T037|PT|S41.121S|ICD10CM|Laceration with foreign body of right upper arm, sequela|Laceration with foreign body of right upper arm, sequela +C2840314|T037|AB|S41.122|ICD10CM|Laceration with foreign body of left upper arm|Laceration with foreign body of left upper arm +C2840314|T037|HT|S41.122|ICD10CM|Laceration with foreign body of left upper arm|Laceration with foreign body of left upper arm +C2840315|T037|AB|S41.122A|ICD10CM|Laceration with foreign body of left upper arm, init encntr|Laceration with foreign body of left upper arm, init encntr +C2840315|T037|PT|S41.122A|ICD10CM|Laceration with foreign body of left upper arm, initial encounter|Laceration with foreign body of left upper arm, initial encounter +C2840316|T037|AB|S41.122D|ICD10CM|Laceration with foreign body of left upper arm, subs encntr|Laceration with foreign body of left upper arm, subs encntr +C2840316|T037|PT|S41.122D|ICD10CM|Laceration with foreign body of left upper arm, subsequent encounter|Laceration with foreign body of left upper arm, subsequent encounter +C2840317|T037|AB|S41.122S|ICD10CM|Laceration with foreign body of left upper arm, sequela|Laceration with foreign body of left upper arm, sequela +C2840317|T037|PT|S41.122S|ICD10CM|Laceration with foreign body of left upper arm, sequela|Laceration with foreign body of left upper arm, sequela +C2840318|T037|AB|S41.129|ICD10CM|Laceration with foreign body of unspecified upper arm|Laceration with foreign body of unspecified upper arm +C2840318|T037|HT|S41.129|ICD10CM|Laceration with foreign body of unspecified upper arm|Laceration with foreign body of unspecified upper arm +C2840319|T037|AB|S41.129A|ICD10CM|Laceration with foreign body of unsp upper arm, init encntr|Laceration with foreign body of unsp upper arm, init encntr +C2840319|T037|PT|S41.129A|ICD10CM|Laceration with foreign body of unspecified upper arm, initial encounter|Laceration with foreign body of unspecified upper arm, initial encounter +C2840320|T037|AB|S41.129D|ICD10CM|Laceration with foreign body of unsp upper arm, subs encntr|Laceration with foreign body of unsp upper arm, subs encntr +C2840320|T037|PT|S41.129D|ICD10CM|Laceration with foreign body of unspecified upper arm, subsequent encounter|Laceration with foreign body of unspecified upper arm, subsequent encounter +C2840321|T037|AB|S41.129S|ICD10CM|Laceration with foreign body of unsp upper arm, sequela|Laceration with foreign body of unsp upper arm, sequela +C2840321|T037|PT|S41.129S|ICD10CM|Laceration with foreign body of unspecified upper arm, sequela|Laceration with foreign body of unspecified upper arm, sequela +C2840322|T037|AB|S41.13|ICD10CM|Puncture wound without foreign body of upper arm|Puncture wound without foreign body of upper arm +C2840322|T037|HT|S41.13|ICD10CM|Puncture wound without foreign body of upper arm|Puncture wound without foreign body of upper arm +C2840323|T037|AB|S41.131|ICD10CM|Puncture wound without foreign body of right upper arm|Puncture wound without foreign body of right upper arm +C2840323|T037|HT|S41.131|ICD10CM|Puncture wound without foreign body of right upper arm|Puncture wound without foreign body of right upper arm +C2840324|T037|AB|S41.131A|ICD10CM|Puncture wound w/o foreign body of right upper arm, init|Puncture wound w/o foreign body of right upper arm, init +C2840324|T037|PT|S41.131A|ICD10CM|Puncture wound without foreign body of right upper arm, initial encounter|Puncture wound without foreign body of right upper arm, initial encounter +C2840325|T037|AB|S41.131D|ICD10CM|Puncture wound w/o foreign body of right upper arm, subs|Puncture wound w/o foreign body of right upper arm, subs +C2840325|T037|PT|S41.131D|ICD10CM|Puncture wound without foreign body of right upper arm, subsequent encounter|Puncture wound without foreign body of right upper arm, subsequent encounter +C2840326|T037|AB|S41.131S|ICD10CM|Puncture wound w/o foreign body of right upper arm, sequela|Puncture wound w/o foreign body of right upper arm, sequela +C2840326|T037|PT|S41.131S|ICD10CM|Puncture wound without foreign body of right upper arm, sequela|Puncture wound without foreign body of right upper arm, sequela +C2840327|T037|AB|S41.132|ICD10CM|Puncture wound without foreign body of left upper arm|Puncture wound without foreign body of left upper arm +C2840327|T037|HT|S41.132|ICD10CM|Puncture wound without foreign body of left upper arm|Puncture wound without foreign body of left upper arm +C2840328|T037|AB|S41.132A|ICD10CM|Puncture wound w/o foreign body of left upper arm, init|Puncture wound w/o foreign body of left upper arm, init +C2840328|T037|PT|S41.132A|ICD10CM|Puncture wound without foreign body of left upper arm, initial encounter|Puncture wound without foreign body of left upper arm, initial encounter +C2840329|T037|AB|S41.132D|ICD10CM|Puncture wound w/o foreign body of left upper arm, subs|Puncture wound w/o foreign body of left upper arm, subs +C2840329|T037|PT|S41.132D|ICD10CM|Puncture wound without foreign body of left upper arm, subsequent encounter|Puncture wound without foreign body of left upper arm, subsequent encounter +C2840330|T037|AB|S41.132S|ICD10CM|Puncture wound w/o foreign body of left upper arm, sequela|Puncture wound w/o foreign body of left upper arm, sequela +C2840330|T037|PT|S41.132S|ICD10CM|Puncture wound without foreign body of left upper arm, sequela|Puncture wound without foreign body of left upper arm, sequela +C2840331|T037|AB|S41.139|ICD10CM|Puncture wound without foreign body of unspecified upper arm|Puncture wound without foreign body of unspecified upper arm +C2840331|T037|HT|S41.139|ICD10CM|Puncture wound without foreign body of unspecified upper arm|Puncture wound without foreign body of unspecified upper arm +C2840332|T037|AB|S41.139A|ICD10CM|Puncture wound w/o foreign body of unsp upper arm, init|Puncture wound w/o foreign body of unsp upper arm, init +C2840332|T037|PT|S41.139A|ICD10CM|Puncture wound without foreign body of unspecified upper arm, initial encounter|Puncture wound without foreign body of unspecified upper arm, initial encounter +C2840333|T037|AB|S41.139D|ICD10CM|Puncture wound w/o foreign body of unsp upper arm, subs|Puncture wound w/o foreign body of unsp upper arm, subs +C2840333|T037|PT|S41.139D|ICD10CM|Puncture wound without foreign body of unspecified upper arm, subsequent encounter|Puncture wound without foreign body of unspecified upper arm, subsequent encounter +C2840334|T037|AB|S41.139S|ICD10CM|Puncture wound w/o foreign body of unsp upper arm, sequela|Puncture wound w/o foreign body of unsp upper arm, sequela +C2840334|T037|PT|S41.139S|ICD10CM|Puncture wound without foreign body of unspecified upper arm, sequela|Puncture wound without foreign body of unspecified upper arm, sequela +C2840335|T037|HT|S41.14|ICD10CM|Puncture wound with foreign body of upper arm|Puncture wound with foreign body of upper arm +C2840335|T037|AB|S41.14|ICD10CM|Puncture wound with foreign body of upper arm|Puncture wound with foreign body of upper arm +C2840336|T037|AB|S41.141|ICD10CM|Puncture wound with foreign body of right upper arm|Puncture wound with foreign body of right upper arm +C2840336|T037|HT|S41.141|ICD10CM|Puncture wound with foreign body of right upper arm|Puncture wound with foreign body of right upper arm +C2840337|T037|AB|S41.141A|ICD10CM|Puncture wound w foreign body of right upper arm, init|Puncture wound w foreign body of right upper arm, init +C2840337|T037|PT|S41.141A|ICD10CM|Puncture wound with foreign body of right upper arm, initial encounter|Puncture wound with foreign body of right upper arm, initial encounter +C2840338|T037|AB|S41.141D|ICD10CM|Puncture wound w foreign body of right upper arm, subs|Puncture wound w foreign body of right upper arm, subs +C2840338|T037|PT|S41.141D|ICD10CM|Puncture wound with foreign body of right upper arm, subsequent encounter|Puncture wound with foreign body of right upper arm, subsequent encounter +C2840339|T037|AB|S41.141S|ICD10CM|Puncture wound with foreign body of right upper arm, sequela|Puncture wound with foreign body of right upper arm, sequela +C2840339|T037|PT|S41.141S|ICD10CM|Puncture wound with foreign body of right upper arm, sequela|Puncture wound with foreign body of right upper arm, sequela +C2840340|T037|AB|S41.142|ICD10CM|Puncture wound with foreign body of left upper arm|Puncture wound with foreign body of left upper arm +C2840340|T037|HT|S41.142|ICD10CM|Puncture wound with foreign body of left upper arm|Puncture wound with foreign body of left upper arm +C2840341|T037|AB|S41.142A|ICD10CM|Puncture wound w foreign body of left upper arm, init encntr|Puncture wound w foreign body of left upper arm, init encntr +C2840341|T037|PT|S41.142A|ICD10CM|Puncture wound with foreign body of left upper arm, initial encounter|Puncture wound with foreign body of left upper arm, initial encounter +C2840342|T037|AB|S41.142D|ICD10CM|Puncture wound w foreign body of left upper arm, subs encntr|Puncture wound w foreign body of left upper arm, subs encntr +C2840342|T037|PT|S41.142D|ICD10CM|Puncture wound with foreign body of left upper arm, subsequent encounter|Puncture wound with foreign body of left upper arm, subsequent encounter +C2840343|T037|AB|S41.142S|ICD10CM|Puncture wound with foreign body of left upper arm, sequela|Puncture wound with foreign body of left upper arm, sequela +C2840343|T037|PT|S41.142S|ICD10CM|Puncture wound with foreign body of left upper arm, sequela|Puncture wound with foreign body of left upper arm, sequela +C2840344|T037|AB|S41.149|ICD10CM|Puncture wound with foreign body of unspecified upper arm|Puncture wound with foreign body of unspecified upper arm +C2840344|T037|HT|S41.149|ICD10CM|Puncture wound with foreign body of unspecified upper arm|Puncture wound with foreign body of unspecified upper arm +C2840345|T037|AB|S41.149A|ICD10CM|Puncture wound w foreign body of unsp upper arm, init encntr|Puncture wound w foreign body of unsp upper arm, init encntr +C2840345|T037|PT|S41.149A|ICD10CM|Puncture wound with foreign body of unspecified upper arm, initial encounter|Puncture wound with foreign body of unspecified upper arm, initial encounter +C2840346|T037|AB|S41.149D|ICD10CM|Puncture wound w foreign body of unsp upper arm, subs encntr|Puncture wound w foreign body of unsp upper arm, subs encntr +C2840346|T037|PT|S41.149D|ICD10CM|Puncture wound with foreign body of unspecified upper arm, subsequent encounter|Puncture wound with foreign body of unspecified upper arm, subsequent encounter +C2840347|T037|AB|S41.149S|ICD10CM|Puncture wound with foreign body of unsp upper arm, sequela|Puncture wound with foreign body of unsp upper arm, sequela +C2840347|T037|PT|S41.149S|ICD10CM|Puncture wound with foreign body of unspecified upper arm, sequela|Puncture wound with foreign body of unspecified upper arm, sequela +C2840348|T037|ET|S41.15|ICD10CM|Bite of upper arm NOS|Bite of upper arm NOS +C2840349|T037|HT|S41.15|ICD10CM|Open bite of upper arm|Open bite of upper arm +C2840349|T037|AB|S41.15|ICD10CM|Open bite of upper arm|Open bite of upper arm +C2840350|T037|AB|S41.151|ICD10CM|Open bite of right upper arm|Open bite of right upper arm +C2840350|T037|HT|S41.151|ICD10CM|Open bite of right upper arm|Open bite of right upper arm +C2840351|T037|AB|S41.151A|ICD10CM|Open bite of right upper arm, initial encounter|Open bite of right upper arm, initial encounter +C2840351|T037|PT|S41.151A|ICD10CM|Open bite of right upper arm, initial encounter|Open bite of right upper arm, initial encounter +C2840352|T037|AB|S41.151D|ICD10CM|Open bite of right upper arm, subsequent encounter|Open bite of right upper arm, subsequent encounter +C2840352|T037|PT|S41.151D|ICD10CM|Open bite of right upper arm, subsequent encounter|Open bite of right upper arm, subsequent encounter +C2840353|T037|AB|S41.151S|ICD10CM|Open bite of right upper arm, sequela|Open bite of right upper arm, sequela +C2840353|T037|PT|S41.151S|ICD10CM|Open bite of right upper arm, sequela|Open bite of right upper arm, sequela +C2840354|T037|AB|S41.152|ICD10CM|Open bite of left upper arm|Open bite of left upper arm +C2840354|T037|HT|S41.152|ICD10CM|Open bite of left upper arm|Open bite of left upper arm +C2840355|T037|AB|S41.152A|ICD10CM|Open bite of left upper arm, initial encounter|Open bite of left upper arm, initial encounter +C2840355|T037|PT|S41.152A|ICD10CM|Open bite of left upper arm, initial encounter|Open bite of left upper arm, initial encounter +C2840356|T037|AB|S41.152D|ICD10CM|Open bite of left upper arm, subsequent encounter|Open bite of left upper arm, subsequent encounter +C2840356|T037|PT|S41.152D|ICD10CM|Open bite of left upper arm, subsequent encounter|Open bite of left upper arm, subsequent encounter +C2840357|T037|AB|S41.152S|ICD10CM|Open bite of left upper arm, sequela|Open bite of left upper arm, sequela +C2840357|T037|PT|S41.152S|ICD10CM|Open bite of left upper arm, sequela|Open bite of left upper arm, sequela +C2840358|T037|AB|S41.159|ICD10CM|Open bite of unspecified upper arm|Open bite of unspecified upper arm +C2840358|T037|HT|S41.159|ICD10CM|Open bite of unspecified upper arm|Open bite of unspecified upper arm +C2840359|T037|AB|S41.159A|ICD10CM|Open bite of unspecified upper arm, initial encounter|Open bite of unspecified upper arm, initial encounter +C2840359|T037|PT|S41.159A|ICD10CM|Open bite of unspecified upper arm, initial encounter|Open bite of unspecified upper arm, initial encounter +C2840360|T037|AB|S41.159D|ICD10CM|Open bite of unspecified upper arm, subsequent encounter|Open bite of unspecified upper arm, subsequent encounter +C2840360|T037|PT|S41.159D|ICD10CM|Open bite of unspecified upper arm, subsequent encounter|Open bite of unspecified upper arm, subsequent encounter +C2840361|T037|AB|S41.159S|ICD10CM|Open bite of unspecified upper arm, sequela|Open bite of unspecified upper arm, sequela +C2840361|T037|PT|S41.159S|ICD10CM|Open bite of unspecified upper arm, sequela|Open bite of unspecified upper arm, sequela +C0495858|T037|PT|S41.7|ICD10|Multiple open wounds of shoulder and upper arm|Multiple open wounds of shoulder and upper arm +C0495859|T037|PT|S41.8|ICD10|Open wound of other and unspecified parts of shoulder girdle|Open wound of other and unspecified parts of shoulder girdle +C0495860|T037|HT|S42|ICD10|Fracture of shoulder and upper arm|Fracture of shoulder and upper arm +C0495860|T037|AB|S42|ICD10CM|Fracture of shoulder and upper arm|Fracture of shoulder and upper arm +C0495860|T037|HT|S42|ICD10CM|Fracture of shoulder and upper arm|Fracture of shoulder and upper arm +C0159658|T037|PT|S42.0|ICD10|Fracture of clavicle|Fracture of clavicle +C0159658|T037|HT|S42.0|ICD10CM|Fracture of clavicle|Fracture of clavicle +C0159658|T037|AB|S42.0|ICD10CM|Fracture of clavicle|Fracture of clavicle +C0840578|T037|AB|S42.00|ICD10CM|Fracture of unspecified part of clavicle|Fracture of unspecified part of clavicle +C0840578|T037|HT|S42.00|ICD10CM|Fracture of unspecified part of clavicle|Fracture of unspecified part of clavicle +C2840362|T037|AB|S42.001|ICD10CM|Fracture of unspecified part of right clavicle|Fracture of unspecified part of right clavicle +C2840362|T037|HT|S42.001|ICD10CM|Fracture of unspecified part of right clavicle|Fracture of unspecified part of right clavicle +C2840363|T037|AB|S42.001A|ICD10CM|Fracture of unsp part of right clavicle, init for clos fx|Fracture of unsp part of right clavicle, init for clos fx +C2840363|T037|PT|S42.001A|ICD10CM|Fracture of unspecified part of right clavicle, initial encounter for closed fracture|Fracture of unspecified part of right clavicle, initial encounter for closed fracture +C2840364|T037|AB|S42.001B|ICD10CM|Fracture of unsp part of right clavicle, init for opn fx|Fracture of unsp part of right clavicle, init for opn fx +C2840364|T037|PT|S42.001B|ICD10CM|Fracture of unspecified part of right clavicle, initial encounter for open fracture|Fracture of unspecified part of right clavicle, initial encounter for open fracture +C2840365|T037|AB|S42.001D|ICD10CM|Fx unsp part of r clavicle, subs for fx w routn heal|Fx unsp part of r clavicle, subs for fx w routn heal +C2840366|T037|AB|S42.001G|ICD10CM|Fx unsp part of r clavicle, subs for fx w delay heal|Fx unsp part of r clavicle, subs for fx w delay heal +C2840367|T037|AB|S42.001K|ICD10CM|Fracture of unsp part of r clavicle, subs for fx w nonunion|Fracture of unsp part of r clavicle, subs for fx w nonunion +C2840367|T037|PT|S42.001K|ICD10CM|Fracture of unspecified part of right clavicle, subsequent encounter for fracture with nonunion|Fracture of unspecified part of right clavicle, subsequent encounter for fracture with nonunion +C2840368|T037|AB|S42.001P|ICD10CM|Fracture of unsp part of r clavicle, subs for fx w malunion|Fracture of unsp part of r clavicle, subs for fx w malunion +C2840368|T037|PT|S42.001P|ICD10CM|Fracture of unspecified part of right clavicle, subsequent encounter for fracture with malunion|Fracture of unspecified part of right clavicle, subsequent encounter for fracture with malunion +C2840369|T037|AB|S42.001S|ICD10CM|Fracture of unspecified part of right clavicle, sequela|Fracture of unspecified part of right clavicle, sequela +C2840369|T037|PT|S42.001S|ICD10CM|Fracture of unspecified part of right clavicle, sequela|Fracture of unspecified part of right clavicle, sequela +C2840370|T037|AB|S42.002|ICD10CM|Fracture of unspecified part of left clavicle|Fracture of unspecified part of left clavicle +C2840370|T037|HT|S42.002|ICD10CM|Fracture of unspecified part of left clavicle|Fracture of unspecified part of left clavicle +C2840371|T037|AB|S42.002A|ICD10CM|Fracture of unsp part of left clavicle, init for clos fx|Fracture of unsp part of left clavicle, init for clos fx +C2840371|T037|PT|S42.002A|ICD10CM|Fracture of unspecified part of left clavicle, initial encounter for closed fracture|Fracture of unspecified part of left clavicle, initial encounter for closed fracture +C2840372|T037|AB|S42.002B|ICD10CM|Fracture of unsp part of left clavicle, init for opn fx|Fracture of unsp part of left clavicle, init for opn fx +C2840372|T037|PT|S42.002B|ICD10CM|Fracture of unspecified part of left clavicle, initial encounter for open fracture|Fracture of unspecified part of left clavicle, initial encounter for open fracture +C2840373|T037|AB|S42.002D|ICD10CM|Fx unsp part of l clavicle, subs for fx w routn heal|Fx unsp part of l clavicle, subs for fx w routn heal +C2840374|T037|AB|S42.002G|ICD10CM|Fx unsp part of l clavicle, subs for fx w delay heal|Fx unsp part of l clavicle, subs for fx w delay heal +C2840375|T037|AB|S42.002K|ICD10CM|Fracture of unsp part of l clavicle, subs for fx w nonunion|Fracture of unsp part of l clavicle, subs for fx w nonunion +C2840375|T037|PT|S42.002K|ICD10CM|Fracture of unspecified part of left clavicle, subsequent encounter for fracture with nonunion|Fracture of unspecified part of left clavicle, subsequent encounter for fracture with nonunion +C2840376|T037|AB|S42.002P|ICD10CM|Fracture of unsp part of l clavicle, subs for fx w malunion|Fracture of unsp part of l clavicle, subs for fx w malunion +C2840376|T037|PT|S42.002P|ICD10CM|Fracture of unspecified part of left clavicle, subsequent encounter for fracture with malunion|Fracture of unspecified part of left clavicle, subsequent encounter for fracture with malunion +C2840377|T037|AB|S42.002S|ICD10CM|Fracture of unspecified part of left clavicle, sequela|Fracture of unspecified part of left clavicle, sequela +C2840377|T037|PT|S42.002S|ICD10CM|Fracture of unspecified part of left clavicle, sequela|Fracture of unspecified part of left clavicle, sequela +C2840378|T037|AB|S42.009|ICD10CM|Fracture of unspecified part of unspecified clavicle|Fracture of unspecified part of unspecified clavicle +C2840378|T037|HT|S42.009|ICD10CM|Fracture of unspecified part of unspecified clavicle|Fracture of unspecified part of unspecified clavicle +C2840379|T037|AB|S42.009A|ICD10CM|Fracture of unsp part of unsp clavicle, init for clos fx|Fracture of unsp part of unsp clavicle, init for clos fx +C2840379|T037|PT|S42.009A|ICD10CM|Fracture of unspecified part of unspecified clavicle, initial encounter for closed fracture|Fracture of unspecified part of unspecified clavicle, initial encounter for closed fracture +C2840380|T037|AB|S42.009B|ICD10CM|Fracture of unsp part of unsp clavicle, init for opn fx|Fracture of unsp part of unsp clavicle, init for opn fx +C2840380|T037|PT|S42.009B|ICD10CM|Fracture of unspecified part of unspecified clavicle, initial encounter for open fracture|Fracture of unspecified part of unspecified clavicle, initial encounter for open fracture +C2840381|T037|AB|S42.009D|ICD10CM|Fx unsp part of unsp clavicle, subs for fx w routn heal|Fx unsp part of unsp clavicle, subs for fx w routn heal +C2840382|T037|AB|S42.009G|ICD10CM|Fx unsp part of unsp clavicle, subs for fx w delay heal|Fx unsp part of unsp clavicle, subs for fx w delay heal +C2840383|T037|AB|S42.009K|ICD10CM|Fx unsp part of unsp clavicle, subs for fx w nonunion|Fx unsp part of unsp clavicle, subs for fx w nonunion +C2840384|T037|AB|S42.009P|ICD10CM|Fx unsp part of unsp clavicle, subs for fx w malunion|Fx unsp part of unsp clavicle, subs for fx w malunion +C2840385|T037|AB|S42.009S|ICD10CM|Fracture of unsp part of unspecified clavicle, sequela|Fracture of unsp part of unspecified clavicle, sequela +C2840385|T037|PT|S42.009S|ICD10CM|Fracture of unspecified part of unspecified clavicle, sequela|Fracture of unspecified part of unspecified clavicle, sequela +C0272600|T037|HT|S42.01|ICD10CM|Fracture of sternal end of clavicle|Fracture of sternal end of clavicle +C0272600|T037|AB|S42.01|ICD10CM|Fracture of sternal end of clavicle|Fracture of sternal end of clavicle +C2840386|T037|AB|S42.011|ICD10CM|Anterior displaced fracture of sternal end of right clavicle|Anterior displaced fracture of sternal end of right clavicle +C2840386|T037|HT|S42.011|ICD10CM|Anterior displaced fracture of sternal end of right clavicle|Anterior displaced fracture of sternal end of right clavicle +C2840387|T037|AB|S42.011A|ICD10CM|Anterior disp fx of sternal end of right clavicle, init|Anterior disp fx of sternal end of right clavicle, init +C2840387|T037|PT|S42.011A|ICD10CM|Anterior displaced fracture of sternal end of right clavicle, initial encounter for closed fracture|Anterior displaced fracture of sternal end of right clavicle, initial encounter for closed fracture +C2840388|T037|AB|S42.011B|ICD10CM|Ant disp fx of sternal end of r clavicle, init for opn fx|Ant disp fx of sternal end of r clavicle, init for opn fx +C2840388|T037|PT|S42.011B|ICD10CM|Anterior displaced fracture of sternal end of right clavicle, initial encounter for open fracture|Anterior displaced fracture of sternal end of right clavicle, initial encounter for open fracture +C2840389|T037|AB|S42.011D|ICD10CM|Ant disp fx of sternal end r clavicle, 7thD|Ant disp fx of sternal end r clavicle, 7thD +C2840390|T037|AB|S42.011G|ICD10CM|Ant disp fx of sternal end r clavicle, 7thG|Ant disp fx of sternal end r clavicle, 7thG +C2840391|T037|AB|S42.011K|ICD10CM|Ant disp fx of sternal end r clavicle, 7thK|Ant disp fx of sternal end r clavicle, 7thK +C2840392|T037|AB|S42.011P|ICD10CM|Ant disp fx of sternal end r clavicle, 7thP|Ant disp fx of sternal end r clavicle, 7thP +C2840393|T037|AB|S42.011S|ICD10CM|Anterior disp fx of sternal end of right clavicle, sequela|Anterior disp fx of sternal end of right clavicle, sequela +C2840393|T037|PT|S42.011S|ICD10CM|Anterior displaced fracture of sternal end of right clavicle, sequela|Anterior displaced fracture of sternal end of right clavicle, sequela +C2840394|T037|AB|S42.012|ICD10CM|Anterior displaced fracture of sternal end of left clavicle|Anterior displaced fracture of sternal end of left clavicle +C2840394|T037|HT|S42.012|ICD10CM|Anterior displaced fracture of sternal end of left clavicle|Anterior displaced fracture of sternal end of left clavicle +C2840395|T037|AB|S42.012A|ICD10CM|Anterior disp fx of sternal end of left clavicle, init|Anterior disp fx of sternal end of left clavicle, init +C2840395|T037|PT|S42.012A|ICD10CM|Anterior displaced fracture of sternal end of left clavicle, initial encounter for closed fracture|Anterior displaced fracture of sternal end of left clavicle, initial encounter for closed fracture +C2840396|T037|AB|S42.012B|ICD10CM|Ant disp fx of sternal end of l clavicle, init for opn fx|Ant disp fx of sternal end of l clavicle, init for opn fx +C2840396|T037|PT|S42.012B|ICD10CM|Anterior displaced fracture of sternal end of left clavicle, initial encounter for open fracture|Anterior displaced fracture of sternal end of left clavicle, initial encounter for open fracture +C2840397|T037|AB|S42.012D|ICD10CM|Ant disp fx of sternal end l clavicle, 7thD|Ant disp fx of sternal end l clavicle, 7thD +C2840398|T037|AB|S42.012G|ICD10CM|Ant disp fx of sternal end l clavicle, 7thG|Ant disp fx of sternal end l clavicle, 7thG +C2840399|T037|AB|S42.012K|ICD10CM|Ant disp fx of sternal end l clavicle, 7thK|Ant disp fx of sternal end l clavicle, 7thK +C2840400|T037|AB|S42.012P|ICD10CM|Ant disp fx of sternal end l clavicle, 7thP|Ant disp fx of sternal end l clavicle, 7thP +C2840401|T037|AB|S42.012S|ICD10CM|Anterior disp fx of sternal end of left clavicle, sequela|Anterior disp fx of sternal end of left clavicle, sequela +C2840401|T037|PT|S42.012S|ICD10CM|Anterior displaced fracture of sternal end of left clavicle, sequela|Anterior displaced fracture of sternal end of left clavicle, sequela +C2840403|T037|AB|S42.013|ICD10CM|Anterior disp fx of sternal end of unspecified clavicle|Anterior disp fx of sternal end of unspecified clavicle +C2840403|T037|HT|S42.013|ICD10CM|Anterior displaced fracture of sternal end of unspecified clavicle|Anterior displaced fracture of sternal end of unspecified clavicle +C2840402|T037|ET|S42.013|ICD10CM|Displaced fracture of sternal end of clavicle NOS|Displaced fracture of sternal end of clavicle NOS +C2840404|T037|AB|S42.013A|ICD10CM|Anterior disp fx of sternal end of unsp clavicle, init|Anterior disp fx of sternal end of unsp clavicle, init +C2840405|T037|AB|S42.013B|ICD10CM|Ant disp fx of sternal end of unsp clavicle, init for opn fx|Ant disp fx of sternal end of unsp clavicle, init for opn fx +C2840406|T037|AB|S42.013D|ICD10CM|Ant disp fx of sternal end unsp clavicle, 7thD|Ant disp fx of sternal end unsp clavicle, 7thD +C2840407|T037|AB|S42.013G|ICD10CM|Ant disp fx of sternal end unsp clavicle, 7thG|Ant disp fx of sternal end unsp clavicle, 7thG +C2840408|T037|AB|S42.013K|ICD10CM|Ant disp fx of sternal end unsp clavicle, 7thK|Ant disp fx of sternal end unsp clavicle, 7thK +C2840409|T037|AB|S42.013P|ICD10CM|Ant disp fx of sternal end unsp clavicle, 7thP|Ant disp fx of sternal end unsp clavicle, 7thP +C2840410|T037|AB|S42.013S|ICD10CM|Anterior disp fx of sternal end of unsp clavicle, sequela|Anterior disp fx of sternal end of unsp clavicle, sequela +C2840410|T037|PT|S42.013S|ICD10CM|Anterior displaced fracture of sternal end of unspecified clavicle, sequela|Anterior displaced fracture of sternal end of unspecified clavicle, sequela +C2840411|T037|AB|S42.014|ICD10CM|Posterior disp fx of sternal end of right clavicle|Posterior disp fx of sternal end of right clavicle +C2840411|T037|HT|S42.014|ICD10CM|Posterior displaced fracture of sternal end of right clavicle|Posterior displaced fracture of sternal end of right clavicle +C2840412|T037|AB|S42.014A|ICD10CM|Posterior disp fx of sternal end of right clavicle, init|Posterior disp fx of sternal end of right clavicle, init +C2840412|T037|PT|S42.014A|ICD10CM|Posterior displaced fracture of sternal end of right clavicle, initial encounter for closed fracture|Posterior displaced fracture of sternal end of right clavicle, initial encounter for closed fracture +C2840413|T037|AB|S42.014B|ICD10CM|Post disp fx of sternal end of r clavicle, init for opn fx|Post disp fx of sternal end of r clavicle, init for opn fx +C2840413|T037|PT|S42.014B|ICD10CM|Posterior displaced fracture of sternal end of right clavicle, initial encounter for open fracture|Posterior displaced fracture of sternal end of right clavicle, initial encounter for open fracture +C2840414|T037|AB|S42.014D|ICD10CM|Post disp fx of sternal end r clavicle, 7thD|Post disp fx of sternal end r clavicle, 7thD +C2840415|T037|AB|S42.014G|ICD10CM|Post disp fx of sternal end r clavicle, 7thG|Post disp fx of sternal end r clavicle, 7thG +C2840416|T037|AB|S42.014K|ICD10CM|Post disp fx of sternal end r clavicle, 7thK|Post disp fx of sternal end r clavicle, 7thK +C2840417|T037|AB|S42.014P|ICD10CM|Post disp fx of sternal end r clavicle, 7thP|Post disp fx of sternal end r clavicle, 7thP +C2840418|T037|AB|S42.014S|ICD10CM|Posterior disp fx of sternal end of right clavicle, sequela|Posterior disp fx of sternal end of right clavicle, sequela +C2840418|T037|PT|S42.014S|ICD10CM|Posterior displaced fracture of sternal end of right clavicle, sequela|Posterior displaced fracture of sternal end of right clavicle, sequela +C2840419|T037|AB|S42.015|ICD10CM|Posterior displaced fracture of sternal end of left clavicle|Posterior displaced fracture of sternal end of left clavicle +C2840419|T037|HT|S42.015|ICD10CM|Posterior displaced fracture of sternal end of left clavicle|Posterior displaced fracture of sternal end of left clavicle +C2840420|T037|AB|S42.015A|ICD10CM|Posterior disp fx of sternal end of left clavicle, init|Posterior disp fx of sternal end of left clavicle, init +C2840420|T037|PT|S42.015A|ICD10CM|Posterior displaced fracture of sternal end of left clavicle, initial encounter for closed fracture|Posterior displaced fracture of sternal end of left clavicle, initial encounter for closed fracture +C2840421|T037|AB|S42.015B|ICD10CM|Post disp fx of sternal end of l clavicle, init for opn fx|Post disp fx of sternal end of l clavicle, init for opn fx +C2840421|T037|PT|S42.015B|ICD10CM|Posterior displaced fracture of sternal end of left clavicle, initial encounter for open fracture|Posterior displaced fracture of sternal end of left clavicle, initial encounter for open fracture +C2840422|T037|AB|S42.015D|ICD10CM|Post disp fx of sternal end l clavicle, 7thD|Post disp fx of sternal end l clavicle, 7thD +C2840423|T037|AB|S42.015G|ICD10CM|Post disp fx of sternal end l clavicle, 7thG|Post disp fx of sternal end l clavicle, 7thG +C2840424|T037|AB|S42.015K|ICD10CM|Post disp fx of sternal end l clavicle, 7thK|Post disp fx of sternal end l clavicle, 7thK +C2840425|T037|AB|S42.015P|ICD10CM|Post disp fx of sternal end l clavicle, 7thP|Post disp fx of sternal end l clavicle, 7thP +C2840426|T037|AB|S42.015S|ICD10CM|Posterior disp fx of sternal end of left clavicle, sequela|Posterior disp fx of sternal end of left clavicle, sequela +C2840426|T037|PT|S42.015S|ICD10CM|Posterior displaced fracture of sternal end of left clavicle, sequela|Posterior displaced fracture of sternal end of left clavicle, sequela +C2840427|T037|AB|S42.016|ICD10CM|Posterior disp fx of sternal end of unspecified clavicle|Posterior disp fx of sternal end of unspecified clavicle +C2840427|T037|HT|S42.016|ICD10CM|Posterior displaced fracture of sternal end of unspecified clavicle|Posterior displaced fracture of sternal end of unspecified clavicle +C2840428|T037|AB|S42.016A|ICD10CM|Posterior disp fx of sternal end of unsp clavicle, init|Posterior disp fx of sternal end of unsp clavicle, init +C2840429|T037|AB|S42.016B|ICD10CM|Post disp fx of sternal end unsp clavicle, init for opn fx|Post disp fx of sternal end unsp clavicle, init for opn fx +C2840430|T037|AB|S42.016D|ICD10CM|Post disp fx of sternal end unsp clavicle, 7thD|Post disp fx of sternal end unsp clavicle, 7thD +C2840431|T037|AB|S42.016G|ICD10CM|Post disp fx of sternal end unsp clavicle, 7thG|Post disp fx of sternal end unsp clavicle, 7thG +C2840432|T037|AB|S42.016K|ICD10CM|Post disp fx of sternal end unsp clavicle, 7thK|Post disp fx of sternal end unsp clavicle, 7thK +C2840433|T037|AB|S42.016P|ICD10CM|Post disp fx of sternal end unsp clavicle, 7thP|Post disp fx of sternal end unsp clavicle, 7thP +C2840434|T037|AB|S42.016S|ICD10CM|Posterior disp fx of sternal end of unsp clavicle, sequela|Posterior disp fx of sternal end of unsp clavicle, sequela +C2840434|T037|PT|S42.016S|ICD10CM|Posterior displaced fracture of sternal end of unspecified clavicle, sequela|Posterior displaced fracture of sternal end of unspecified clavicle, sequela +C2840435|T037|HT|S42.017|ICD10CM|Nondisplaced fracture of sternal end of right clavicle|Nondisplaced fracture of sternal end of right clavicle +C2840435|T037|AB|S42.017|ICD10CM|Nondisplaced fracture of sternal end of right clavicle|Nondisplaced fracture of sternal end of right clavicle +C2840436|T037|AB|S42.017A|ICD10CM|Nondisp fx of sternal end of right clavicle, init|Nondisp fx of sternal end of right clavicle, init +C2840436|T037|PT|S42.017A|ICD10CM|Nondisplaced fracture of sternal end of right clavicle, initial encounter for closed fracture|Nondisplaced fracture of sternal end of right clavicle, initial encounter for closed fracture +C2840437|T037|AB|S42.017B|ICD10CM|Nondisp fx of sternal end of right clavicle, init for opn fx|Nondisp fx of sternal end of right clavicle, init for opn fx +C2840437|T037|PT|S42.017B|ICD10CM|Nondisplaced fracture of sternal end of right clavicle, initial encounter for open fracture|Nondisplaced fracture of sternal end of right clavicle, initial encounter for open fracture +C2840438|T037|AB|S42.017D|ICD10CM|Nondisp fx of sternal end r clavicle, 7thD|Nondisp fx of sternal end r clavicle, 7thD +C2840439|T037|AB|S42.017G|ICD10CM|Nondisp fx of sternal end r clavicle, 7thG|Nondisp fx of sternal end r clavicle, 7thG +C2840440|T037|AB|S42.017K|ICD10CM|Nondisp fx of sternal end r clavicle, subs for fx w nonunion|Nondisp fx of sternal end r clavicle, subs for fx w nonunion +C2840441|T037|AB|S42.017P|ICD10CM|Nondisp fx of sternal end r clavicle, subs for fx w malunion|Nondisp fx of sternal end r clavicle, subs for fx w malunion +C2840442|T037|AB|S42.017S|ICD10CM|Nondisp fx of sternal end of right clavicle, sequela|Nondisp fx of sternal end of right clavicle, sequela +C2840442|T037|PT|S42.017S|ICD10CM|Nondisplaced fracture of sternal end of right clavicle, sequela|Nondisplaced fracture of sternal end of right clavicle, sequela +C2840443|T037|HT|S42.018|ICD10CM|Nondisplaced fracture of sternal end of left clavicle|Nondisplaced fracture of sternal end of left clavicle +C2840443|T037|AB|S42.018|ICD10CM|Nondisplaced fracture of sternal end of left clavicle|Nondisplaced fracture of sternal end of left clavicle +C2840444|T037|AB|S42.018A|ICD10CM|Nondisp fx of sternal end of left clavicle, init for clos fx|Nondisp fx of sternal end of left clavicle, init for clos fx +C2840444|T037|PT|S42.018A|ICD10CM|Nondisplaced fracture of sternal end of left clavicle, initial encounter for closed fracture|Nondisplaced fracture of sternal end of left clavicle, initial encounter for closed fracture +C2840445|T037|AB|S42.018B|ICD10CM|Nondisp fx of sternal end of left clavicle, init for opn fx|Nondisp fx of sternal end of left clavicle, init for opn fx +C2840445|T037|PT|S42.018B|ICD10CM|Nondisplaced fracture of sternal end of left clavicle, initial encounter for open fracture|Nondisplaced fracture of sternal end of left clavicle, initial encounter for open fracture +C2840446|T037|AB|S42.018D|ICD10CM|Nondisp fx of sternal end l clavicle, 7thD|Nondisp fx of sternal end l clavicle, 7thD +C2840447|T037|AB|S42.018G|ICD10CM|Nondisp fx of sternal end l clavicle, 7thG|Nondisp fx of sternal end l clavicle, 7thG +C2840448|T037|AB|S42.018K|ICD10CM|Nondisp fx of sternal end l clavicle, subs for fx w nonunion|Nondisp fx of sternal end l clavicle, subs for fx w nonunion +C2840449|T037|AB|S42.018P|ICD10CM|Nondisp fx of sternal end l clavicle, subs for fx w malunion|Nondisp fx of sternal end l clavicle, subs for fx w malunion +C2840450|T037|AB|S42.018S|ICD10CM|Nondisp fx of sternal end of left clavicle, sequela|Nondisp fx of sternal end of left clavicle, sequela +C2840450|T037|PT|S42.018S|ICD10CM|Nondisplaced fracture of sternal end of left clavicle, sequela|Nondisplaced fracture of sternal end of left clavicle, sequela +C2840451|T037|AB|S42.019|ICD10CM|Nondisplaced fracture of sternal end of unspecified clavicle|Nondisplaced fracture of sternal end of unspecified clavicle +C2840451|T037|HT|S42.019|ICD10CM|Nondisplaced fracture of sternal end of unspecified clavicle|Nondisplaced fracture of sternal end of unspecified clavicle +C2840452|T037|AB|S42.019A|ICD10CM|Nondisp fx of sternal end of unsp clavicle, init for clos fx|Nondisp fx of sternal end of unsp clavicle, init for clos fx +C2840452|T037|PT|S42.019A|ICD10CM|Nondisplaced fracture of sternal end of unspecified clavicle, initial encounter for closed fracture|Nondisplaced fracture of sternal end of unspecified clavicle, initial encounter for closed fracture +C2840453|T037|AB|S42.019B|ICD10CM|Nondisp fx of sternal end of unsp clavicle, init for opn fx|Nondisp fx of sternal end of unsp clavicle, init for opn fx +C2840453|T037|PT|S42.019B|ICD10CM|Nondisplaced fracture of sternal end of unspecified clavicle, initial encounter for open fracture|Nondisplaced fracture of sternal end of unspecified clavicle, initial encounter for open fracture +C2840454|T037|AB|S42.019D|ICD10CM|Nondisp fx of sternal end unsp clavicle, 7thD|Nondisp fx of sternal end unsp clavicle, 7thD +C2840455|T037|AB|S42.019G|ICD10CM|Nondisp fx of sternal end unsp clavicle, 7thG|Nondisp fx of sternal end unsp clavicle, 7thG +C2840456|T037|AB|S42.019K|ICD10CM|Nondisp fx of sternal end unsp clavicle, 7thK|Nondisp fx of sternal end unsp clavicle, 7thK +C2840457|T037|AB|S42.019P|ICD10CM|Nondisp fx of sternal end unsp clavicle, 7thP|Nondisp fx of sternal end unsp clavicle, 7thP +C2840458|T037|AB|S42.019S|ICD10CM|Nondisp fx of sternal end of unspecified clavicle, sequela|Nondisp fx of sternal end of unspecified clavicle, sequela +C2840458|T037|PT|S42.019S|ICD10CM|Nondisplaced fracture of sternal end of unspecified clavicle, sequela|Nondisplaced fracture of sternal end of unspecified clavicle, sequela +C0272601|T037|HT|S42.02|ICD10CM|Fracture of shaft of clavicle|Fracture of shaft of clavicle +C0272601|T037|AB|S42.02|ICD10CM|Fracture of shaft of clavicle|Fracture of shaft of clavicle +C2840459|T037|HT|S42.021|ICD10CM|Displaced fracture of shaft of right clavicle|Displaced fracture of shaft of right clavicle +C2840459|T037|AB|S42.021|ICD10CM|Displaced fracture of shaft of right clavicle|Displaced fracture of shaft of right clavicle +C2840460|T037|AB|S42.021A|ICD10CM|Disp fx of shaft of right clavicle, init for clos fx|Disp fx of shaft of right clavicle, init for clos fx +C2840460|T037|PT|S42.021A|ICD10CM|Displaced fracture of shaft of right clavicle, initial encounter for closed fracture|Displaced fracture of shaft of right clavicle, initial encounter for closed fracture +C2840461|T037|AB|S42.021B|ICD10CM|Disp fx of shaft of right clavicle, init for opn fx|Disp fx of shaft of right clavicle, init for opn fx +C2840461|T037|PT|S42.021B|ICD10CM|Displaced fracture of shaft of right clavicle, initial encounter for open fracture|Displaced fracture of shaft of right clavicle, initial encounter for open fracture +C2840462|T037|AB|S42.021D|ICD10CM|Disp fx of shaft of right clavicle, subs for fx w routn heal|Disp fx of shaft of right clavicle, subs for fx w routn heal +C2840463|T037|AB|S42.021G|ICD10CM|Disp fx of shaft of right clavicle, subs for fx w delay heal|Disp fx of shaft of right clavicle, subs for fx w delay heal +C2840464|T037|AB|S42.021K|ICD10CM|Disp fx of shaft of right clavicle, subs for fx w nonunion|Disp fx of shaft of right clavicle, subs for fx w nonunion +C2840464|T037|PT|S42.021K|ICD10CM|Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with nonunion|Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with nonunion +C2840465|T037|AB|S42.021P|ICD10CM|Disp fx of shaft of right clavicle, subs for fx w malunion|Disp fx of shaft of right clavicle, subs for fx w malunion +C2840465|T037|PT|S42.021P|ICD10CM|Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with malunion|Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with malunion +C2840466|T037|PT|S42.021S|ICD10CM|Displaced fracture of shaft of right clavicle, sequela|Displaced fracture of shaft of right clavicle, sequela +C2840466|T037|AB|S42.021S|ICD10CM|Displaced fracture of shaft of right clavicle, sequela|Displaced fracture of shaft of right clavicle, sequela +C2840467|T037|HT|S42.022|ICD10CM|Displaced fracture of shaft of left clavicle|Displaced fracture of shaft of left clavicle +C2840467|T037|AB|S42.022|ICD10CM|Displaced fracture of shaft of left clavicle|Displaced fracture of shaft of left clavicle +C2840468|T037|AB|S42.022A|ICD10CM|Disp fx of shaft of left clavicle, init for clos fx|Disp fx of shaft of left clavicle, init for clos fx +C2840468|T037|PT|S42.022A|ICD10CM|Displaced fracture of shaft of left clavicle, initial encounter for closed fracture|Displaced fracture of shaft of left clavicle, initial encounter for closed fracture +C2840469|T037|AB|S42.022B|ICD10CM|Disp fx of shaft of left clavicle, init for opn fx|Disp fx of shaft of left clavicle, init for opn fx +C2840469|T037|PT|S42.022B|ICD10CM|Displaced fracture of shaft of left clavicle, initial encounter for open fracture|Displaced fracture of shaft of left clavicle, initial encounter for open fracture +C2840470|T037|AB|S42.022D|ICD10CM|Disp fx of shaft of left clavicle, subs for fx w routn heal|Disp fx of shaft of left clavicle, subs for fx w routn heal +C2840470|T037|PT|S42.022D|ICD10CM|Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with routine healing|Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with routine healing +C2840471|T037|AB|S42.022G|ICD10CM|Disp fx of shaft of left clavicle, subs for fx w delay heal|Disp fx of shaft of left clavicle, subs for fx w delay heal +C2840471|T037|PT|S42.022G|ICD10CM|Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with delayed healing|Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with delayed healing +C2840472|T037|AB|S42.022K|ICD10CM|Disp fx of shaft of left clavicle, subs for fx w nonunion|Disp fx of shaft of left clavicle, subs for fx w nonunion +C2840472|T037|PT|S42.022K|ICD10CM|Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with nonunion|Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with nonunion +C2840473|T037|AB|S42.022P|ICD10CM|Disp fx of shaft of left clavicle, subs for fx w malunion|Disp fx of shaft of left clavicle, subs for fx w malunion +C2840473|T037|PT|S42.022P|ICD10CM|Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with malunion|Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with malunion +C2840474|T037|PT|S42.022S|ICD10CM|Displaced fracture of shaft of left clavicle, sequela|Displaced fracture of shaft of left clavicle, sequela +C2840474|T037|AB|S42.022S|ICD10CM|Displaced fracture of shaft of left clavicle, sequela|Displaced fracture of shaft of left clavicle, sequela +C2840475|T037|AB|S42.023|ICD10CM|Displaced fracture of shaft of unspecified clavicle|Displaced fracture of shaft of unspecified clavicle +C2840475|T037|HT|S42.023|ICD10CM|Displaced fracture of shaft of unspecified clavicle|Displaced fracture of shaft of unspecified clavicle +C2840476|T037|AB|S42.023A|ICD10CM|Disp fx of shaft of unsp clavicle, init for clos fx|Disp fx of shaft of unsp clavicle, init for clos fx +C2840476|T037|PT|S42.023A|ICD10CM|Displaced fracture of shaft of unspecified clavicle, initial encounter for closed fracture|Displaced fracture of shaft of unspecified clavicle, initial encounter for closed fracture +C2840477|T037|AB|S42.023B|ICD10CM|Disp fx of shaft of unsp clavicle, init for opn fx|Disp fx of shaft of unsp clavicle, init for opn fx +C2840477|T037|PT|S42.023B|ICD10CM|Displaced fracture of shaft of unspecified clavicle, initial encounter for open fracture|Displaced fracture of shaft of unspecified clavicle, initial encounter for open fracture +C2840478|T037|AB|S42.023D|ICD10CM|Disp fx of shaft of unsp clavicle, subs for fx w routn heal|Disp fx of shaft of unsp clavicle, subs for fx w routn heal +C2840479|T037|AB|S42.023G|ICD10CM|Disp fx of shaft of unsp clavicle, subs for fx w delay heal|Disp fx of shaft of unsp clavicle, subs for fx w delay heal +C2840480|T037|AB|S42.023K|ICD10CM|Disp fx of shaft of unsp clavicle, subs for fx w nonunion|Disp fx of shaft of unsp clavicle, subs for fx w nonunion +C2840480|T037|PT|S42.023K|ICD10CM|Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with nonunion|Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with nonunion +C2840481|T037|AB|S42.023P|ICD10CM|Disp fx of shaft of unsp clavicle, subs for fx w malunion|Disp fx of shaft of unsp clavicle, subs for fx w malunion +C2840481|T037|PT|S42.023P|ICD10CM|Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with malunion|Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with malunion +C2840482|T037|AB|S42.023S|ICD10CM|Displaced fracture of shaft of unspecified clavicle, sequela|Displaced fracture of shaft of unspecified clavicle, sequela +C2840482|T037|PT|S42.023S|ICD10CM|Displaced fracture of shaft of unspecified clavicle, sequela|Displaced fracture of shaft of unspecified clavicle, sequela +C2840483|T037|HT|S42.024|ICD10CM|Nondisplaced fracture of shaft of right clavicle|Nondisplaced fracture of shaft of right clavicle +C2840483|T037|AB|S42.024|ICD10CM|Nondisplaced fracture of shaft of right clavicle|Nondisplaced fracture of shaft of right clavicle +C2840484|T037|AB|S42.024A|ICD10CM|Nondisp fx of shaft of right clavicle, init for clos fx|Nondisp fx of shaft of right clavicle, init for clos fx +C2840484|T037|PT|S42.024A|ICD10CM|Nondisplaced fracture of shaft of right clavicle, initial encounter for closed fracture|Nondisplaced fracture of shaft of right clavicle, initial encounter for closed fracture +C2840485|T037|AB|S42.024B|ICD10CM|Nondisp fx of shaft of right clavicle, init for opn fx|Nondisp fx of shaft of right clavicle, init for opn fx +C2840485|T037|PT|S42.024B|ICD10CM|Nondisplaced fracture of shaft of right clavicle, initial encounter for open fracture|Nondisplaced fracture of shaft of right clavicle, initial encounter for open fracture +C2840486|T037|AB|S42.024D|ICD10CM|Nondisp fx of shaft of r clavicle, subs for fx w routn heal|Nondisp fx of shaft of r clavicle, subs for fx w routn heal +C2840487|T037|AB|S42.024G|ICD10CM|Nondisp fx of shaft of r clavicle, subs for fx w delay heal|Nondisp fx of shaft of r clavicle, subs for fx w delay heal +C2840488|T037|AB|S42.024K|ICD10CM|Nondisp fx of shaft of r clavicle, subs for fx w nonunion|Nondisp fx of shaft of r clavicle, subs for fx w nonunion +C2840488|T037|PT|S42.024K|ICD10CM|Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with nonunion|Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with nonunion +C2840489|T037|AB|S42.024P|ICD10CM|Nondisp fx of shaft of r clavicle, subs for fx w malunion|Nondisp fx of shaft of r clavicle, subs for fx w malunion +C2840489|T037|PT|S42.024P|ICD10CM|Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with malunion|Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with malunion +C2840490|T037|PT|S42.024S|ICD10CM|Nondisplaced fracture of shaft of right clavicle, sequela|Nondisplaced fracture of shaft of right clavicle, sequela +C2840490|T037|AB|S42.024S|ICD10CM|Nondisplaced fracture of shaft of right clavicle, sequela|Nondisplaced fracture of shaft of right clavicle, sequela +C2840491|T037|HT|S42.025|ICD10CM|Nondisplaced fracture of shaft of left clavicle|Nondisplaced fracture of shaft of left clavicle +C2840491|T037|AB|S42.025|ICD10CM|Nondisplaced fracture of shaft of left clavicle|Nondisplaced fracture of shaft of left clavicle +C2840492|T037|AB|S42.025A|ICD10CM|Nondisp fx of shaft of left clavicle, init for clos fx|Nondisp fx of shaft of left clavicle, init for clos fx +C2840492|T037|PT|S42.025A|ICD10CM|Nondisplaced fracture of shaft of left clavicle, initial encounter for closed fracture|Nondisplaced fracture of shaft of left clavicle, initial encounter for closed fracture +C2840493|T037|AB|S42.025B|ICD10CM|Nondisp fx of shaft of left clavicle, init for opn fx|Nondisp fx of shaft of left clavicle, init for opn fx +C2840493|T037|PT|S42.025B|ICD10CM|Nondisplaced fracture of shaft of left clavicle, initial encounter for open fracture|Nondisplaced fracture of shaft of left clavicle, initial encounter for open fracture +C2840494|T037|AB|S42.025D|ICD10CM|Nondisp fx of shaft of l clavicle, subs for fx w routn heal|Nondisp fx of shaft of l clavicle, subs for fx w routn heal +C2840495|T037|AB|S42.025G|ICD10CM|Nondisp fx of shaft of l clavicle, subs for fx w delay heal|Nondisp fx of shaft of l clavicle, subs for fx w delay heal +C2840496|T037|AB|S42.025K|ICD10CM|Nondisp fx of shaft of left clavicle, subs for fx w nonunion|Nondisp fx of shaft of left clavicle, subs for fx w nonunion +C2840496|T037|PT|S42.025K|ICD10CM|Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with nonunion|Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with nonunion +C2840497|T037|AB|S42.025P|ICD10CM|Nondisp fx of shaft of left clavicle, subs for fx w malunion|Nondisp fx of shaft of left clavicle, subs for fx w malunion +C2840497|T037|PT|S42.025P|ICD10CM|Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with malunion|Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with malunion +C2840498|T037|PT|S42.025S|ICD10CM|Nondisplaced fracture of shaft of left clavicle, sequela|Nondisplaced fracture of shaft of left clavicle, sequela +C2840498|T037|AB|S42.025S|ICD10CM|Nondisplaced fracture of shaft of left clavicle, sequela|Nondisplaced fracture of shaft of left clavicle, sequela +C2840499|T037|AB|S42.026|ICD10CM|Nondisplaced fracture of shaft of unspecified clavicle|Nondisplaced fracture of shaft of unspecified clavicle +C2840499|T037|HT|S42.026|ICD10CM|Nondisplaced fracture of shaft of unspecified clavicle|Nondisplaced fracture of shaft of unspecified clavicle +C2840500|T037|AB|S42.026A|ICD10CM|Nondisp fx of shaft of unsp clavicle, init for clos fx|Nondisp fx of shaft of unsp clavicle, init for clos fx +C2840500|T037|PT|S42.026A|ICD10CM|Nondisplaced fracture of shaft of unspecified clavicle, initial encounter for closed fracture|Nondisplaced fracture of shaft of unspecified clavicle, initial encounter for closed fracture +C2840501|T037|AB|S42.026B|ICD10CM|Nondisp fx of shaft of unsp clavicle, init for opn fx|Nondisp fx of shaft of unsp clavicle, init for opn fx +C2840501|T037|PT|S42.026B|ICD10CM|Nondisplaced fracture of shaft of unspecified clavicle, initial encounter for open fracture|Nondisplaced fracture of shaft of unspecified clavicle, initial encounter for open fracture +C2840502|T037|AB|S42.026D|ICD10CM|Nondisp fx of shaft of unsp clavicle, 7thD|Nondisp fx of shaft of unsp clavicle, 7thD +C2840503|T037|AB|S42.026G|ICD10CM|Nondisp fx of shaft of unsp clavicle, 7thG|Nondisp fx of shaft of unsp clavicle, 7thG +C2840504|T037|AB|S42.026K|ICD10CM|Nondisp fx of shaft of unsp clavicle, subs for fx w nonunion|Nondisp fx of shaft of unsp clavicle, subs for fx w nonunion +C2840505|T037|AB|S42.026P|ICD10CM|Nondisp fx of shaft of unsp clavicle, subs for fx w malunion|Nondisp fx of shaft of unsp clavicle, subs for fx w malunion +C2840506|T037|AB|S42.026S|ICD10CM|Nondisp fx of shaft of unspecified clavicle, sequela|Nondisp fx of shaft of unspecified clavicle, sequela +C2840506|T037|PT|S42.026S|ICD10CM|Nondisplaced fracture of shaft of unspecified clavicle, sequela|Nondisplaced fracture of shaft of unspecified clavicle, sequela +C0272602|T037|ET|S42.03|ICD10CM|Fracture of acromial end of clavicle|Fracture of acromial end of clavicle +C2840507|T037|AB|S42.03|ICD10CM|Fracture of lateral end of clavicle|Fracture of lateral end of clavicle +C2840507|T037|HT|S42.03|ICD10CM|Fracture of lateral end of clavicle|Fracture of lateral end of clavicle +C2840508|T037|HT|S42.031|ICD10CM|Displaced fracture of lateral end of right clavicle|Displaced fracture of lateral end of right clavicle +C2840508|T037|AB|S42.031|ICD10CM|Displaced fracture of lateral end of right clavicle|Displaced fracture of lateral end of right clavicle +C2840509|T037|AB|S42.031A|ICD10CM|Disp fx of lateral end of right clavicle, init for clos fx|Disp fx of lateral end of right clavicle, init for clos fx +C2840509|T037|PT|S42.031A|ICD10CM|Displaced fracture of lateral end of right clavicle, initial encounter for closed fracture|Displaced fracture of lateral end of right clavicle, initial encounter for closed fracture +C2840510|T037|AB|S42.031B|ICD10CM|Disp fx of lateral end of right clavicle, init for opn fx|Disp fx of lateral end of right clavicle, init for opn fx +C2840510|T037|PT|S42.031B|ICD10CM|Displaced fracture of lateral end of right clavicle, initial encounter for open fracture|Displaced fracture of lateral end of right clavicle, initial encounter for open fracture +C2840511|T037|AB|S42.031D|ICD10CM|Disp fx of lateral end r clavicle, subs for fx w routn heal|Disp fx of lateral end r clavicle, subs for fx w routn heal +C2840512|T037|AB|S42.031G|ICD10CM|Disp fx of lateral end r clavicle, subs for fx w delay heal|Disp fx of lateral end r clavicle, subs for fx w delay heal +C2840513|T037|AB|S42.031K|ICD10CM|Disp fx of lateral end of r clavicle, subs for fx w nonunion|Disp fx of lateral end of r clavicle, subs for fx w nonunion +C2840513|T037|PT|S42.031K|ICD10CM|Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with nonunion|Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with nonunion +C2840514|T037|AB|S42.031P|ICD10CM|Disp fx of lateral end of r clavicle, subs for fx w malunion|Disp fx of lateral end of r clavicle, subs for fx w malunion +C2840514|T037|PT|S42.031P|ICD10CM|Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with malunion|Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with malunion +C2840515|T037|AB|S42.031S|ICD10CM|Displaced fracture of lateral end of right clavicle, sequela|Displaced fracture of lateral end of right clavicle, sequela +C2840515|T037|PT|S42.031S|ICD10CM|Displaced fracture of lateral end of right clavicle, sequela|Displaced fracture of lateral end of right clavicle, sequela +C2840516|T037|HT|S42.032|ICD10CM|Displaced fracture of lateral end of left clavicle|Displaced fracture of lateral end of left clavicle +C2840516|T037|AB|S42.032|ICD10CM|Displaced fracture of lateral end of left clavicle|Displaced fracture of lateral end of left clavicle +C2840517|T037|AB|S42.032A|ICD10CM|Disp fx of lateral end of left clavicle, init for clos fx|Disp fx of lateral end of left clavicle, init for clos fx +C2840517|T037|PT|S42.032A|ICD10CM|Displaced fracture of lateral end of left clavicle, initial encounter for closed fracture|Displaced fracture of lateral end of left clavicle, initial encounter for closed fracture +C2840518|T037|AB|S42.032B|ICD10CM|Disp fx of lateral end of left clavicle, init for opn fx|Disp fx of lateral end of left clavicle, init for opn fx +C2840518|T037|PT|S42.032B|ICD10CM|Displaced fracture of lateral end of left clavicle, initial encounter for open fracture|Displaced fracture of lateral end of left clavicle, initial encounter for open fracture +C2840519|T037|AB|S42.032D|ICD10CM|Disp fx of lateral end l clavicle, subs for fx w routn heal|Disp fx of lateral end l clavicle, subs for fx w routn heal +C2840520|T037|AB|S42.032G|ICD10CM|Disp fx of lateral end l clavicle, subs for fx w delay heal|Disp fx of lateral end l clavicle, subs for fx w delay heal +C2840521|T037|AB|S42.032K|ICD10CM|Disp fx of lateral end of l clavicle, subs for fx w nonunion|Disp fx of lateral end of l clavicle, subs for fx w nonunion +C2840521|T037|PT|S42.032K|ICD10CM|Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with nonunion|Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with nonunion +C2840522|T037|AB|S42.032P|ICD10CM|Disp fx of lateral end of l clavicle, subs for fx w malunion|Disp fx of lateral end of l clavicle, subs for fx w malunion +C2840522|T037|PT|S42.032P|ICD10CM|Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with malunion|Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with malunion +C2840523|T037|PT|S42.032S|ICD10CM|Displaced fracture of lateral end of left clavicle, sequela|Displaced fracture of lateral end of left clavicle, sequela +C2840523|T037|AB|S42.032S|ICD10CM|Displaced fracture of lateral end of left clavicle, sequela|Displaced fracture of lateral end of left clavicle, sequela +C2840524|T037|AB|S42.033|ICD10CM|Displaced fracture of lateral end of unspecified clavicle|Displaced fracture of lateral end of unspecified clavicle +C2840524|T037|HT|S42.033|ICD10CM|Displaced fracture of lateral end of unspecified clavicle|Displaced fracture of lateral end of unspecified clavicle +C2840525|T037|AB|S42.033A|ICD10CM|Disp fx of lateral end of unsp clavicle, init for clos fx|Disp fx of lateral end of unsp clavicle, init for clos fx +C2840525|T037|PT|S42.033A|ICD10CM|Displaced fracture of lateral end of unspecified clavicle, initial encounter for closed fracture|Displaced fracture of lateral end of unspecified clavicle, initial encounter for closed fracture +C2840526|T037|AB|S42.033B|ICD10CM|Disp fx of lateral end of unsp clavicle, init for opn fx|Disp fx of lateral end of unsp clavicle, init for opn fx +C2840526|T037|PT|S42.033B|ICD10CM|Displaced fracture of lateral end of unspecified clavicle, initial encounter for open fracture|Displaced fracture of lateral end of unspecified clavicle, initial encounter for open fracture +C2840527|T037|AB|S42.033D|ICD10CM|Disp fx of lateral end unsp clavicle, 7thD|Disp fx of lateral end unsp clavicle, 7thD +C2840528|T037|AB|S42.033G|ICD10CM|Disp fx of lateral end unsp clavicle, 7thG|Disp fx of lateral end unsp clavicle, 7thG +C2840529|T037|AB|S42.033K|ICD10CM|Disp fx of lateral end unsp clavicle, subs for fx w nonunion|Disp fx of lateral end unsp clavicle, subs for fx w nonunion +C2840530|T037|AB|S42.033P|ICD10CM|Disp fx of lateral end unsp clavicle, subs for fx w malunion|Disp fx of lateral end unsp clavicle, subs for fx w malunion +C2840531|T037|AB|S42.033S|ICD10CM|Disp fx of lateral end of unspecified clavicle, sequela|Disp fx of lateral end of unspecified clavicle, sequela +C2840531|T037|PT|S42.033S|ICD10CM|Displaced fracture of lateral end of unspecified clavicle, sequela|Displaced fracture of lateral end of unspecified clavicle, sequela +C2840532|T037|HT|S42.034|ICD10CM|Nondisplaced fracture of lateral end of right clavicle|Nondisplaced fracture of lateral end of right clavicle +C2840532|T037|AB|S42.034|ICD10CM|Nondisplaced fracture of lateral end of right clavicle|Nondisplaced fracture of lateral end of right clavicle +C2840533|T037|AB|S42.034A|ICD10CM|Nondisp fx of lateral end of right clavicle, init|Nondisp fx of lateral end of right clavicle, init +C2840533|T037|PT|S42.034A|ICD10CM|Nondisplaced fracture of lateral end of right clavicle, initial encounter for closed fracture|Nondisplaced fracture of lateral end of right clavicle, initial encounter for closed fracture +C2840534|T037|AB|S42.034B|ICD10CM|Nondisp fx of lateral end of right clavicle, init for opn fx|Nondisp fx of lateral end of right clavicle, init for opn fx +C2840534|T037|PT|S42.034B|ICD10CM|Nondisplaced fracture of lateral end of right clavicle, initial encounter for open fracture|Nondisplaced fracture of lateral end of right clavicle, initial encounter for open fracture +C2840535|T037|AB|S42.034D|ICD10CM|Nondisp fx of lateral end r clavicle, 7thD|Nondisp fx of lateral end r clavicle, 7thD +C2840536|T037|AB|S42.034G|ICD10CM|Nondisp fx of lateral end r clavicle, 7thG|Nondisp fx of lateral end r clavicle, 7thG +C2840537|T037|AB|S42.034K|ICD10CM|Nondisp fx of lateral end r clavicle, subs for fx w nonunion|Nondisp fx of lateral end r clavicle, subs for fx w nonunion +C2840538|T037|AB|S42.034P|ICD10CM|Nondisp fx of lateral end r clavicle, subs for fx w malunion|Nondisp fx of lateral end r clavicle, subs for fx w malunion +C2840539|T037|AB|S42.034S|ICD10CM|Nondisp fx of lateral end of right clavicle, sequela|Nondisp fx of lateral end of right clavicle, sequela +C2840539|T037|PT|S42.034S|ICD10CM|Nondisplaced fracture of lateral end of right clavicle, sequela|Nondisplaced fracture of lateral end of right clavicle, sequela +C2840540|T037|HT|S42.035|ICD10CM|Nondisplaced fracture of lateral end of left clavicle|Nondisplaced fracture of lateral end of left clavicle +C2840540|T037|AB|S42.035|ICD10CM|Nondisplaced fracture of lateral end of left clavicle|Nondisplaced fracture of lateral end of left clavicle +C2840541|T037|AB|S42.035A|ICD10CM|Nondisp fx of lateral end of left clavicle, init for clos fx|Nondisp fx of lateral end of left clavicle, init for clos fx +C2840541|T037|PT|S42.035A|ICD10CM|Nondisplaced fracture of lateral end of left clavicle, initial encounter for closed fracture|Nondisplaced fracture of lateral end of left clavicle, initial encounter for closed fracture +C2840542|T037|AB|S42.035B|ICD10CM|Nondisp fx of lateral end of left clavicle, init for opn fx|Nondisp fx of lateral end of left clavicle, init for opn fx +C2840542|T037|PT|S42.035B|ICD10CM|Nondisplaced fracture of lateral end of left clavicle, initial encounter for open fracture|Nondisplaced fracture of lateral end of left clavicle, initial encounter for open fracture +C2840543|T037|AB|S42.035D|ICD10CM|Nondisp fx of lateral end l clavicle, 7thD|Nondisp fx of lateral end l clavicle, 7thD +C2840544|T037|AB|S42.035G|ICD10CM|Nondisp fx of lateral end l clavicle, 7thG|Nondisp fx of lateral end l clavicle, 7thG +C2840545|T037|AB|S42.035K|ICD10CM|Nondisp fx of lateral end l clavicle, subs for fx w nonunion|Nondisp fx of lateral end l clavicle, subs for fx w nonunion +C2840546|T037|AB|S42.035P|ICD10CM|Nondisp fx of lateral end l clavicle, subs for fx w malunion|Nondisp fx of lateral end l clavicle, subs for fx w malunion +C2840547|T037|AB|S42.035S|ICD10CM|Nondisp fx of lateral end of left clavicle, sequela|Nondisp fx of lateral end of left clavicle, sequela +C2840547|T037|PT|S42.035S|ICD10CM|Nondisplaced fracture of lateral end of left clavicle, sequela|Nondisplaced fracture of lateral end of left clavicle, sequela +C2840548|T037|AB|S42.036|ICD10CM|Nondisplaced fracture of lateral end of unspecified clavicle|Nondisplaced fracture of lateral end of unspecified clavicle +C2840548|T037|HT|S42.036|ICD10CM|Nondisplaced fracture of lateral end of unspecified clavicle|Nondisplaced fracture of lateral end of unspecified clavicle +C2840549|T037|AB|S42.036A|ICD10CM|Nondisp fx of lateral end of unsp clavicle, init for clos fx|Nondisp fx of lateral end of unsp clavicle, init for clos fx +C2840549|T037|PT|S42.036A|ICD10CM|Nondisplaced fracture of lateral end of unspecified clavicle, initial encounter for closed fracture|Nondisplaced fracture of lateral end of unspecified clavicle, initial encounter for closed fracture +C2840550|T037|AB|S42.036B|ICD10CM|Nondisp fx of lateral end of unsp clavicle, init for opn fx|Nondisp fx of lateral end of unsp clavicle, init for opn fx +C2840550|T037|PT|S42.036B|ICD10CM|Nondisplaced fracture of lateral end of unspecified clavicle, initial encounter for open fracture|Nondisplaced fracture of lateral end of unspecified clavicle, initial encounter for open fracture +C2840551|T037|AB|S42.036D|ICD10CM|Nondisp fx of lateral end unsp clavicle, 7thD|Nondisp fx of lateral end unsp clavicle, 7thD +C2840552|T037|AB|S42.036G|ICD10CM|Nondisp fx of lateral end unsp clavicle, 7thG|Nondisp fx of lateral end unsp clavicle, 7thG +C2840553|T037|AB|S42.036K|ICD10CM|Nondisp fx of lateral end unsp clavicle, 7thK|Nondisp fx of lateral end unsp clavicle, 7thK +C2840554|T037|AB|S42.036P|ICD10CM|Nondisp fx of lateral end unsp clavicle, 7thP|Nondisp fx of lateral end unsp clavicle, 7thP +C2840555|T037|AB|S42.036S|ICD10CM|Nondisp fx of lateral end of unspecified clavicle, sequela|Nondisp fx of lateral end of unspecified clavicle, sequela +C2840555|T037|PT|S42.036S|ICD10CM|Nondisplaced fracture of lateral end of unspecified clavicle, sequela|Nondisplaced fracture of lateral end of unspecified clavicle, sequela +C0159667|T037|HT|S42.1|ICD10CM|Fracture of scapula|Fracture of scapula +C0159667|T037|AB|S42.1|ICD10CM|Fracture of scapula|Fracture of scapula +C0159667|T037|PT|S42.1|ICD10|Fracture of scapula|Fracture of scapula +C0840580|T037|AB|S42.10|ICD10CM|Fracture of unspecified part of scapula|Fracture of unspecified part of scapula +C0840580|T037|HT|S42.10|ICD10CM|Fracture of unspecified part of scapula|Fracture of unspecified part of scapula +C2840556|T037|AB|S42.101|ICD10CM|Fracture of unspecified part of scapula, right shoulder|Fracture of unspecified part of scapula, right shoulder +C2840556|T037|HT|S42.101|ICD10CM|Fracture of unspecified part of scapula, right shoulder|Fracture of unspecified part of scapula, right shoulder +C2840557|T037|AB|S42.101A|ICD10CM|Fracture of unsp part of scapula, right shoulder, init|Fracture of unsp part of scapula, right shoulder, init +C2840557|T037|PT|S42.101A|ICD10CM|Fracture of unspecified part of scapula, right shoulder, initial encounter for closed fracture|Fracture of unspecified part of scapula, right shoulder, initial encounter for closed fracture +C2840558|T037|PT|S42.101B|ICD10CM|Fracture of unspecified part of scapula, right shoulder, initial encounter for open fracture|Fracture of unspecified part of scapula, right shoulder, initial encounter for open fracture +C2840558|T037|AB|S42.101B|ICD10CM|Fx unsp part of scapula, r shoulder, init for opn fx|Fx unsp part of scapula, r shoulder, init for opn fx +C2840559|T037|AB|S42.101D|ICD10CM|Fx unsp part of scapula, r shldr, subs for fx w routn heal|Fx unsp part of scapula, r shldr, subs for fx w routn heal +C2840560|T037|AB|S42.101G|ICD10CM|Fx unsp part of scapula, r shldr, subs for fx w delay heal|Fx unsp part of scapula, r shldr, subs for fx w delay heal +C2840561|T037|AB|S42.101K|ICD10CM|Fx unsp part of scapula, r shoulder, subs for fx w nonunion|Fx unsp part of scapula, r shoulder, subs for fx w nonunion +C2840562|T037|AB|S42.101P|ICD10CM|Fx unsp part of scapula, r shoulder, subs for fx w malunion|Fx unsp part of scapula, r shoulder, subs for fx w malunion +C2840563|T037|AB|S42.101S|ICD10CM|Fracture of unsp part of scapula, right shoulder, sequela|Fracture of unsp part of scapula, right shoulder, sequela +C2840563|T037|PT|S42.101S|ICD10CM|Fracture of unspecified part of scapula, right shoulder, sequela|Fracture of unspecified part of scapula, right shoulder, sequela +C2840564|T037|AB|S42.102|ICD10CM|Fracture of unspecified part of scapula, left shoulder|Fracture of unspecified part of scapula, left shoulder +C2840564|T037|HT|S42.102|ICD10CM|Fracture of unspecified part of scapula, left shoulder|Fracture of unspecified part of scapula, left shoulder +C2840565|T037|AB|S42.102A|ICD10CM|Fracture of unsp part of scapula, left shoulder, init|Fracture of unsp part of scapula, left shoulder, init +C2840565|T037|PT|S42.102A|ICD10CM|Fracture of unspecified part of scapula, left shoulder, initial encounter for closed fracture|Fracture of unspecified part of scapula, left shoulder, initial encounter for closed fracture +C2840566|T037|PT|S42.102B|ICD10CM|Fracture of unspecified part of scapula, left shoulder, initial encounter for open fracture|Fracture of unspecified part of scapula, left shoulder, initial encounter for open fracture +C2840566|T037|AB|S42.102B|ICD10CM|Fx unsp part of scapula, l shoulder, init for opn fx|Fx unsp part of scapula, l shoulder, init for opn fx +C2840567|T037|AB|S42.102D|ICD10CM|Fx unsp part of scapula, l shldr, subs for fx w routn heal|Fx unsp part of scapula, l shldr, subs for fx w routn heal +C2840568|T037|AB|S42.102G|ICD10CM|Fx unsp part of scapula, l shldr, subs for fx w delay heal|Fx unsp part of scapula, l shldr, subs for fx w delay heal +C2840569|T037|AB|S42.102K|ICD10CM|Fx unsp part of scapula, l shoulder, subs for fx w nonunion|Fx unsp part of scapula, l shoulder, subs for fx w nonunion +C2840570|T037|AB|S42.102P|ICD10CM|Fx unsp part of scapula, l shoulder, subs for fx w malunion|Fx unsp part of scapula, l shoulder, subs for fx w malunion +C2840571|T037|AB|S42.102S|ICD10CM|Fracture of unsp part of scapula, left shoulder, sequela|Fracture of unsp part of scapula, left shoulder, sequela +C2840571|T037|PT|S42.102S|ICD10CM|Fracture of unspecified part of scapula, left shoulder, sequela|Fracture of unspecified part of scapula, left shoulder, sequela +C2840572|T037|AB|S42.109|ICD10CM|Fracture of unsp part of scapula, unspecified shoulder|Fracture of unsp part of scapula, unspecified shoulder +C2840572|T037|HT|S42.109|ICD10CM|Fracture of unspecified part of scapula, unspecified shoulder|Fracture of unspecified part of scapula, unspecified shoulder +C2840573|T037|AB|S42.109A|ICD10CM|Fracture of unsp part of scapula, unsp shoulder, init|Fracture of unsp part of scapula, unsp shoulder, init +C2840573|T037|PT|S42.109A|ICD10CM|Fracture of unspecified part of scapula, unspecified shoulder, initial encounter for closed fracture|Fracture of unspecified part of scapula, unspecified shoulder, initial encounter for closed fracture +C2840574|T037|PT|S42.109B|ICD10CM|Fracture of unspecified part of scapula, unspecified shoulder, initial encounter for open fracture|Fracture of unspecified part of scapula, unspecified shoulder, initial encounter for open fracture +C2840574|T037|AB|S42.109B|ICD10CM|Fx unsp part of scapula, unsp shoulder, init for opn fx|Fx unsp part of scapula, unsp shoulder, init for opn fx +C2840575|T037|AB|S42.109D|ICD10CM|Fx unsp prt of scapula, unsp shldr, subs for fx w routn heal|Fx unsp prt of scapula, unsp shldr, subs for fx w routn heal +C2840576|T037|AB|S42.109G|ICD10CM|Fx unsp prt of scapula, unsp shldr, subs for fx w delay heal|Fx unsp prt of scapula, unsp shldr, subs for fx w delay heal +C2840577|T037|AB|S42.109K|ICD10CM|Fx unsp part of scapula, unsp shldr, subs for fx w nonunion|Fx unsp part of scapula, unsp shldr, subs for fx w nonunion +C2840578|T037|AB|S42.109P|ICD10CM|Fx unsp part of scapula, unsp shldr, subs for fx w malunion|Fx unsp part of scapula, unsp shldr, subs for fx w malunion +C2840579|T037|AB|S42.109S|ICD10CM|Fracture of unsp part of scapula, unsp shoulder, sequela|Fracture of unsp part of scapula, unsp shoulder, sequela +C2840579|T037|PT|S42.109S|ICD10CM|Fracture of unspecified part of scapula, unspecified shoulder, sequela|Fracture of unspecified part of scapula, unspecified shoulder, sequela +C0272607|T037|HT|S42.11|ICD10CM|Fracture of body of scapula|Fracture of body of scapula +C0272607|T037|AB|S42.11|ICD10CM|Fracture of body of scapula|Fracture of body of scapula +C2840580|T037|AB|S42.111|ICD10CM|Displaced fracture of body of scapula, right shoulder|Displaced fracture of body of scapula, right shoulder +C2840580|T037|HT|S42.111|ICD10CM|Displaced fracture of body of scapula, right shoulder|Displaced fracture of body of scapula, right shoulder +C2840581|T037|AB|S42.111A|ICD10CM|Disp fx of body of scapula, right shoulder, init for clos fx|Disp fx of body of scapula, right shoulder, init for clos fx +C2840581|T037|PT|S42.111A|ICD10CM|Displaced fracture of body of scapula, right shoulder, initial encounter for closed fracture|Displaced fracture of body of scapula, right shoulder, initial encounter for closed fracture +C2840582|T037|AB|S42.111B|ICD10CM|Disp fx of body of scapula, right shoulder, init for opn fx|Disp fx of body of scapula, right shoulder, init for opn fx +C2840582|T037|PT|S42.111B|ICD10CM|Displaced fracture of body of scapula, right shoulder, initial encounter for open fracture|Displaced fracture of body of scapula, right shoulder, initial encounter for open fracture +C2840583|T037|AB|S42.111D|ICD10CM|Disp fx of body of scapula, r shldr, 7thD|Disp fx of body of scapula, r shldr, 7thD +C2840584|T037|AB|S42.111G|ICD10CM|Disp fx of body of scapula, r shldr, 7thG|Disp fx of body of scapula, r shldr, 7thG +C2840585|T037|AB|S42.111K|ICD10CM|Disp fx of body of scapula, r shldr, subs for fx w nonunion|Disp fx of body of scapula, r shldr, subs for fx w nonunion +C2840586|T037|AB|S42.111P|ICD10CM|Disp fx of body of scapula, r shldr, subs for fx w malunion|Disp fx of body of scapula, r shldr, subs for fx w malunion +C2840587|T037|AB|S42.111S|ICD10CM|Disp fx of body of scapula, right shoulder, sequela|Disp fx of body of scapula, right shoulder, sequela +C2840587|T037|PT|S42.111S|ICD10CM|Displaced fracture of body of scapula, right shoulder, sequela|Displaced fracture of body of scapula, right shoulder, sequela +C2840588|T037|AB|S42.112|ICD10CM|Displaced fracture of body of scapula, left shoulder|Displaced fracture of body of scapula, left shoulder +C2840588|T037|HT|S42.112|ICD10CM|Displaced fracture of body of scapula, left shoulder|Displaced fracture of body of scapula, left shoulder +C2840589|T037|AB|S42.112A|ICD10CM|Disp fx of body of scapula, left shoulder, init for clos fx|Disp fx of body of scapula, left shoulder, init for clos fx +C2840589|T037|PT|S42.112A|ICD10CM|Displaced fracture of body of scapula, left shoulder, initial encounter for closed fracture|Displaced fracture of body of scapula, left shoulder, initial encounter for closed fracture +C2840590|T037|AB|S42.112B|ICD10CM|Disp fx of body of scapula, left shoulder, init for opn fx|Disp fx of body of scapula, left shoulder, init for opn fx +C2840590|T037|PT|S42.112B|ICD10CM|Displaced fracture of body of scapula, left shoulder, initial encounter for open fracture|Displaced fracture of body of scapula, left shoulder, initial encounter for open fracture +C2840591|T037|AB|S42.112D|ICD10CM|Disp fx of body of scapula, l shldr, 7thD|Disp fx of body of scapula, l shldr, 7thD +C2840592|T037|AB|S42.112G|ICD10CM|Disp fx of body of scapula, l shldr, 7thG|Disp fx of body of scapula, l shldr, 7thG +C2840593|T037|AB|S42.112K|ICD10CM|Disp fx of body of scapula, l shldr, subs for fx w nonunion|Disp fx of body of scapula, l shldr, subs for fx w nonunion +C2840594|T037|AB|S42.112P|ICD10CM|Disp fx of body of scapula, l shldr, subs for fx w malunion|Disp fx of body of scapula, l shldr, subs for fx w malunion +C2840595|T037|AB|S42.112S|ICD10CM|Disp fx of body of scapula, left shoulder, sequela|Disp fx of body of scapula, left shoulder, sequela +C2840595|T037|PT|S42.112S|ICD10CM|Displaced fracture of body of scapula, left shoulder, sequela|Displaced fracture of body of scapula, left shoulder, sequela +C2840596|T037|AB|S42.113|ICD10CM|Displaced fracture of body of scapula, unspecified shoulder|Displaced fracture of body of scapula, unspecified shoulder +C2840596|T037|HT|S42.113|ICD10CM|Displaced fracture of body of scapula, unspecified shoulder|Displaced fracture of body of scapula, unspecified shoulder +C2840597|T037|AB|S42.113A|ICD10CM|Disp fx of body of scapula, unsp shoulder, init for clos fx|Disp fx of body of scapula, unsp shoulder, init for clos fx +C2840597|T037|PT|S42.113A|ICD10CM|Displaced fracture of body of scapula, unspecified shoulder, initial encounter for closed fracture|Displaced fracture of body of scapula, unspecified shoulder, initial encounter for closed fracture +C2840598|T037|AB|S42.113B|ICD10CM|Disp fx of body of scapula, unsp shoulder, init for opn fx|Disp fx of body of scapula, unsp shoulder, init for opn fx +C2840598|T037|PT|S42.113B|ICD10CM|Displaced fracture of body of scapula, unspecified shoulder, initial encounter for open fracture|Displaced fracture of body of scapula, unspecified shoulder, initial encounter for open fracture +C2840599|T037|AB|S42.113D|ICD10CM|Disp fx of body of scapula, unsp shldr, 7thD|Disp fx of body of scapula, unsp shldr, 7thD +C2840600|T037|AB|S42.113G|ICD10CM|Disp fx of body of scapula, unsp shldr, 7thG|Disp fx of body of scapula, unsp shldr, 7thG +C2840601|T037|AB|S42.113K|ICD10CM|Disp fx of body of scapula, unsp shldr, 7thK|Disp fx of body of scapula, unsp shldr, 7thK +C2840602|T037|AB|S42.113P|ICD10CM|Disp fx of body of scapula, unsp shldr, 7thP|Disp fx of body of scapula, unsp shldr, 7thP +C2840603|T037|AB|S42.113S|ICD10CM|Disp fx of body of scapula, unspecified shoulder, sequela|Disp fx of body of scapula, unspecified shoulder, sequela +C2840603|T037|PT|S42.113S|ICD10CM|Displaced fracture of body of scapula, unspecified shoulder, sequela|Displaced fracture of body of scapula, unspecified shoulder, sequela +C2840604|T037|AB|S42.114|ICD10CM|Nondisplaced fracture of body of scapula, right shoulder|Nondisplaced fracture of body of scapula, right shoulder +C2840604|T037|HT|S42.114|ICD10CM|Nondisplaced fracture of body of scapula, right shoulder|Nondisplaced fracture of body of scapula, right shoulder +C2840605|T037|AB|S42.114A|ICD10CM|Nondisp fx of body of scapula, right shoulder, init|Nondisp fx of body of scapula, right shoulder, init +C2840605|T037|PT|S42.114A|ICD10CM|Nondisplaced fracture of body of scapula, right shoulder, initial encounter for closed fracture|Nondisplaced fracture of body of scapula, right shoulder, initial encounter for closed fracture +C2840606|T037|AB|S42.114B|ICD10CM|Nondisp fx of body of scapula, r shoulder, init for opn fx|Nondisp fx of body of scapula, r shoulder, init for opn fx +C2840606|T037|PT|S42.114B|ICD10CM|Nondisplaced fracture of body of scapula, right shoulder, initial encounter for open fracture|Nondisplaced fracture of body of scapula, right shoulder, initial encounter for open fracture +C2840607|T037|AB|S42.114D|ICD10CM|Nondisp fx of body of scapula, r shldr, 7thD|Nondisp fx of body of scapula, r shldr, 7thD +C2840608|T037|AB|S42.114G|ICD10CM|Nondisp fx of body of scapula, r shldr, 7thG|Nondisp fx of body of scapula, r shldr, 7thG +C2840609|T037|AB|S42.114K|ICD10CM|Nondisp fx of body of scapula, r shldr, 7thK|Nondisp fx of body of scapula, r shldr, 7thK +C2840610|T037|AB|S42.114P|ICD10CM|Nondisp fx of body of scapula, r shldr, 7thP|Nondisp fx of body of scapula, r shldr, 7thP +C2840611|T037|AB|S42.114S|ICD10CM|Nondisp fx of body of scapula, right shoulder, sequela|Nondisp fx of body of scapula, right shoulder, sequela +C2840611|T037|PT|S42.114S|ICD10CM|Nondisplaced fracture of body of scapula, right shoulder, sequela|Nondisplaced fracture of body of scapula, right shoulder, sequela +C2840612|T037|AB|S42.115|ICD10CM|Nondisplaced fracture of body of scapula, left shoulder|Nondisplaced fracture of body of scapula, left shoulder +C2840612|T037|HT|S42.115|ICD10CM|Nondisplaced fracture of body of scapula, left shoulder|Nondisplaced fracture of body of scapula, left shoulder +C2840613|T037|AB|S42.115A|ICD10CM|Nondisp fx of body of scapula, left shoulder, init|Nondisp fx of body of scapula, left shoulder, init +C2840613|T037|PT|S42.115A|ICD10CM|Nondisplaced fracture of body of scapula, left shoulder, initial encounter for closed fracture|Nondisplaced fracture of body of scapula, left shoulder, initial encounter for closed fracture +C2840614|T037|AB|S42.115B|ICD10CM|Nondisp fx of body of scapula, l shoulder, init for opn fx|Nondisp fx of body of scapula, l shoulder, init for opn fx +C2840614|T037|PT|S42.115B|ICD10CM|Nondisplaced fracture of body of scapula, left shoulder, initial encounter for open fracture|Nondisplaced fracture of body of scapula, left shoulder, initial encounter for open fracture +C2840615|T037|AB|S42.115D|ICD10CM|Nondisp fx of body of scapula, l shldr, 7thD|Nondisp fx of body of scapula, l shldr, 7thD +C2840616|T037|AB|S42.115G|ICD10CM|Nondisp fx of body of scapula, l shldr, 7thG|Nondisp fx of body of scapula, l shldr, 7thG +C2840617|T037|AB|S42.115K|ICD10CM|Nondisp fx of body of scapula, l shldr, 7thK|Nondisp fx of body of scapula, l shldr, 7thK +C2840618|T037|AB|S42.115P|ICD10CM|Nondisp fx of body of scapula, l shldr, 7thP|Nondisp fx of body of scapula, l shldr, 7thP +C2840619|T037|AB|S42.115S|ICD10CM|Nondisp fx of body of scapula, left shoulder, sequela|Nondisp fx of body of scapula, left shoulder, sequela +C2840619|T037|PT|S42.115S|ICD10CM|Nondisplaced fracture of body of scapula, left shoulder, sequela|Nondisplaced fracture of body of scapula, left shoulder, sequela +C2840620|T037|AB|S42.116|ICD10CM|Nondisp fx of body of scapula, unspecified shoulder|Nondisp fx of body of scapula, unspecified shoulder +C2840620|T037|HT|S42.116|ICD10CM|Nondisplaced fracture of body of scapula, unspecified shoulder|Nondisplaced fracture of body of scapula, unspecified shoulder +C2840621|T037|AB|S42.116A|ICD10CM|Nondisp fx of body of scapula, unsp shoulder, init|Nondisp fx of body of scapula, unsp shoulder, init +C2840622|T037|AB|S42.116B|ICD10CM|Nondisp fx of body of scapula, unsp shldr, init for opn fx|Nondisp fx of body of scapula, unsp shldr, init for opn fx +C2840622|T037|PT|S42.116B|ICD10CM|Nondisplaced fracture of body of scapula, unspecified shoulder, initial encounter for open fracture|Nondisplaced fracture of body of scapula, unspecified shoulder, initial encounter for open fracture +C2840623|T037|AB|S42.116D|ICD10CM|Nondisp fx of body of scapula, unsp shldr, 7thD|Nondisp fx of body of scapula, unsp shldr, 7thD +C2840624|T037|AB|S42.116G|ICD10CM|Nondisp fx of body of scapula, unsp shldr, 7thG|Nondisp fx of body of scapula, unsp shldr, 7thG +C2840625|T037|AB|S42.116K|ICD10CM|Nondisp fx of body of scapula, unsp shldr, 7thK|Nondisp fx of body of scapula, unsp shldr, 7thK +C2840626|T037|AB|S42.116P|ICD10CM|Nondisp fx of body of scapula, unsp shldr, 7thP|Nondisp fx of body of scapula, unsp shldr, 7thP +C2840627|T037|AB|S42.116S|ICD10CM|Nondisp fx of body of scapula, unspecified shoulder, sequela|Nondisp fx of body of scapula, unspecified shoulder, sequela +C2840627|T037|PT|S42.116S|ICD10CM|Nondisplaced fracture of body of scapula, unspecified shoulder, sequela|Nondisplaced fracture of body of scapula, unspecified shoulder, sequela +C0272604|T037|HT|S42.12|ICD10CM|Fracture of acromial process|Fracture of acromial process +C0272604|T037|AB|S42.12|ICD10CM|Fracture of acromial process|Fracture of acromial process +C2840628|T037|AB|S42.121|ICD10CM|Displaced fracture of acromial process, right shoulder|Displaced fracture of acromial process, right shoulder +C2840628|T037|HT|S42.121|ICD10CM|Displaced fracture of acromial process, right shoulder|Displaced fracture of acromial process, right shoulder +C2840629|T037|AB|S42.121A|ICD10CM|Disp fx of acromial process, right shoulder, init|Disp fx of acromial process, right shoulder, init +C2840629|T037|PT|S42.121A|ICD10CM|Displaced fracture of acromial process, right shoulder, initial encounter for closed fracture|Displaced fracture of acromial process, right shoulder, initial encounter for closed fracture +C2840630|T037|AB|S42.121B|ICD10CM|Disp fx of acromial process, right shoulder, init for opn fx|Disp fx of acromial process, right shoulder, init for opn fx +C2840630|T037|PT|S42.121B|ICD10CM|Displaced fracture of acromial process, right shoulder, initial encounter for open fracture|Displaced fracture of acromial process, right shoulder, initial encounter for open fracture +C2840631|T037|AB|S42.121D|ICD10CM|Disp fx of acromial pro, r shldr, subs for fx w routn heal|Disp fx of acromial pro, r shldr, subs for fx w routn heal +C2840632|T037|AB|S42.121G|ICD10CM|Disp fx of acromial pro, r shldr, subs for fx w delay heal|Disp fx of acromial pro, r shldr, subs for fx w delay heal +C2840633|T037|AB|S42.121K|ICD10CM|Disp fx of acromial process, r shldr, subs for fx w nonunion|Disp fx of acromial process, r shldr, subs for fx w nonunion +C2840634|T037|AB|S42.121P|ICD10CM|Disp fx of acromial process, r shldr, subs for fx w malunion|Disp fx of acromial process, r shldr, subs for fx w malunion +C2840635|T037|AB|S42.121S|ICD10CM|Disp fx of acromial process, right shoulder, sequela|Disp fx of acromial process, right shoulder, sequela +C2840635|T037|PT|S42.121S|ICD10CM|Displaced fracture of acromial process, right shoulder, sequela|Displaced fracture of acromial process, right shoulder, sequela +C2840636|T037|AB|S42.122|ICD10CM|Displaced fracture of acromial process, left shoulder|Displaced fracture of acromial process, left shoulder +C2840636|T037|HT|S42.122|ICD10CM|Displaced fracture of acromial process, left shoulder|Displaced fracture of acromial process, left shoulder +C2840637|T037|AB|S42.122A|ICD10CM|Disp fx of acromial process, left shoulder, init for clos fx|Disp fx of acromial process, left shoulder, init for clos fx +C2840637|T037|PT|S42.122A|ICD10CM|Displaced fracture of acromial process, left shoulder, initial encounter for closed fracture|Displaced fracture of acromial process, left shoulder, initial encounter for closed fracture +C2840638|T037|AB|S42.122B|ICD10CM|Disp fx of acromial process, left shoulder, init for opn fx|Disp fx of acromial process, left shoulder, init for opn fx +C2840638|T037|PT|S42.122B|ICD10CM|Displaced fracture of acromial process, left shoulder, initial encounter for open fracture|Displaced fracture of acromial process, left shoulder, initial encounter for open fracture +C2840639|T037|AB|S42.122D|ICD10CM|Disp fx of acromial pro, l shldr, subs for fx w routn heal|Disp fx of acromial pro, l shldr, subs for fx w routn heal +C2840640|T037|AB|S42.122G|ICD10CM|Disp fx of acromial pro, l shldr, subs for fx w delay heal|Disp fx of acromial pro, l shldr, subs for fx w delay heal +C2840641|T037|AB|S42.122K|ICD10CM|Disp fx of acromial process, l shldr, subs for fx w nonunion|Disp fx of acromial process, l shldr, subs for fx w nonunion +C2840642|T037|AB|S42.122P|ICD10CM|Disp fx of acromial process, l shldr, subs for fx w malunion|Disp fx of acromial process, l shldr, subs for fx w malunion +C2840643|T037|AB|S42.122S|ICD10CM|Disp fx of acromial process, left shoulder, sequela|Disp fx of acromial process, left shoulder, sequela +C2840643|T037|PT|S42.122S|ICD10CM|Displaced fracture of acromial process, left shoulder, sequela|Displaced fracture of acromial process, left shoulder, sequela +C2840644|T037|AB|S42.123|ICD10CM|Displaced fracture of acromial process, unspecified shoulder|Displaced fracture of acromial process, unspecified shoulder +C2840644|T037|HT|S42.123|ICD10CM|Displaced fracture of acromial process, unspecified shoulder|Displaced fracture of acromial process, unspecified shoulder +C2840645|T037|AB|S42.123A|ICD10CM|Disp fx of acromial process, unsp shoulder, init for clos fx|Disp fx of acromial process, unsp shoulder, init for clos fx +C2840645|T037|PT|S42.123A|ICD10CM|Displaced fracture of acromial process, unspecified shoulder, initial encounter for closed fracture|Displaced fracture of acromial process, unspecified shoulder, initial encounter for closed fracture +C2840646|T037|AB|S42.123B|ICD10CM|Disp fx of acromial process, unsp shoulder, init for opn fx|Disp fx of acromial process, unsp shoulder, init for opn fx +C2840646|T037|PT|S42.123B|ICD10CM|Displaced fracture of acromial process, unspecified shoulder, initial encounter for open fracture|Displaced fracture of acromial process, unspecified shoulder, initial encounter for open fracture +C2840647|T037|AB|S42.123D|ICD10CM|Disp fx of acromial pro, unsp shldr, 7thD|Disp fx of acromial pro, unsp shldr, 7thD +C2840648|T037|AB|S42.123G|ICD10CM|Disp fx of acromial pro, unsp shldr, 7thG|Disp fx of acromial pro, unsp shldr, 7thG +C2840649|T037|AB|S42.123K|ICD10CM|Disp fx of acromial pro, unsp shldr, subs for fx w nonunion|Disp fx of acromial pro, unsp shldr, subs for fx w nonunion +C2840650|T037|AB|S42.123P|ICD10CM|Disp fx of acromial pro, unsp shldr, subs for fx w malunion|Disp fx of acromial pro, unsp shldr, subs for fx w malunion +C2840651|T037|AB|S42.123S|ICD10CM|Disp fx of acromial process, unspecified shoulder, sequela|Disp fx of acromial process, unspecified shoulder, sequela +C2840651|T037|PT|S42.123S|ICD10CM|Displaced fracture of acromial process, unspecified shoulder, sequela|Displaced fracture of acromial process, unspecified shoulder, sequela +C2840652|T037|AB|S42.124|ICD10CM|Nondisplaced fracture of acromial process, right shoulder|Nondisplaced fracture of acromial process, right shoulder +C2840652|T037|HT|S42.124|ICD10CM|Nondisplaced fracture of acromial process, right shoulder|Nondisplaced fracture of acromial process, right shoulder +C2840653|T037|AB|S42.124A|ICD10CM|Nondisp fx of acromial process, right shoulder, init|Nondisp fx of acromial process, right shoulder, init +C2840653|T037|PT|S42.124A|ICD10CM|Nondisplaced fracture of acromial process, right shoulder, initial encounter for closed fracture|Nondisplaced fracture of acromial process, right shoulder, initial encounter for closed fracture +C2840654|T037|AB|S42.124B|ICD10CM|Nondisp fx of acromial process, r shoulder, init for opn fx|Nondisp fx of acromial process, r shoulder, init for opn fx +C2840654|T037|PT|S42.124B|ICD10CM|Nondisplaced fracture of acromial process, right shoulder, initial encounter for open fracture|Nondisplaced fracture of acromial process, right shoulder, initial encounter for open fracture +C2840655|T037|AB|S42.124D|ICD10CM|Nondisp fx of acromial pro, r shldr, 7thD|Nondisp fx of acromial pro, r shldr, 7thD +C2840656|T037|AB|S42.124G|ICD10CM|Nondisp fx of acromial pro, r shldr, 7thG|Nondisp fx of acromial pro, r shldr, 7thG +C2840657|T037|AB|S42.124K|ICD10CM|Nondisp fx of acromial pro, r shldr, subs for fx w nonunion|Nondisp fx of acromial pro, r shldr, subs for fx w nonunion +C2840658|T037|AB|S42.124P|ICD10CM|Nondisp fx of acromial pro, r shldr, subs for fx w malunion|Nondisp fx of acromial pro, r shldr, subs for fx w malunion +C2840659|T037|AB|S42.124S|ICD10CM|Nondisp fx of acromial process, right shoulder, sequela|Nondisp fx of acromial process, right shoulder, sequela +C2840659|T037|PT|S42.124S|ICD10CM|Nondisplaced fracture of acromial process, right shoulder, sequela|Nondisplaced fracture of acromial process, right shoulder, sequela +C2840660|T037|AB|S42.125|ICD10CM|Nondisplaced fracture of acromial process, left shoulder|Nondisplaced fracture of acromial process, left shoulder +C2840660|T037|HT|S42.125|ICD10CM|Nondisplaced fracture of acromial process, left shoulder|Nondisplaced fracture of acromial process, left shoulder +C2840661|T037|AB|S42.125A|ICD10CM|Nondisp fx of acromial process, left shoulder, init|Nondisp fx of acromial process, left shoulder, init +C2840661|T037|PT|S42.125A|ICD10CM|Nondisplaced fracture of acromial process, left shoulder, initial encounter for closed fracture|Nondisplaced fracture of acromial process, left shoulder, initial encounter for closed fracture +C2840662|T037|AB|S42.125B|ICD10CM|Nondisp fx of acromial process, l shoulder, init for opn fx|Nondisp fx of acromial process, l shoulder, init for opn fx +C2840662|T037|PT|S42.125B|ICD10CM|Nondisplaced fracture of acromial process, left shoulder, initial encounter for open fracture|Nondisplaced fracture of acromial process, left shoulder, initial encounter for open fracture +C2840663|T037|AB|S42.125D|ICD10CM|Nondisp fx of acromial pro, l shldr, 7thD|Nondisp fx of acromial pro, l shldr, 7thD +C2840664|T037|AB|S42.125G|ICD10CM|Nondisp fx of acromial pro, l shldr, 7thG|Nondisp fx of acromial pro, l shldr, 7thG +C2840665|T037|AB|S42.125K|ICD10CM|Nondisp fx of acromial pro, l shldr, subs for fx w nonunion|Nondisp fx of acromial pro, l shldr, subs for fx w nonunion +C2840666|T037|AB|S42.125P|ICD10CM|Nondisp fx of acromial pro, l shldr, subs for fx w malunion|Nondisp fx of acromial pro, l shldr, subs for fx w malunion +C2840667|T037|AB|S42.125S|ICD10CM|Nondisp fx of acromial process, left shoulder, sequela|Nondisp fx of acromial process, left shoulder, sequela +C2840667|T037|PT|S42.125S|ICD10CM|Nondisplaced fracture of acromial process, left shoulder, sequela|Nondisplaced fracture of acromial process, left shoulder, sequela +C2840668|T037|AB|S42.126|ICD10CM|Nondisp fx of acromial process, unspecified shoulder|Nondisp fx of acromial process, unspecified shoulder +C2840668|T037|HT|S42.126|ICD10CM|Nondisplaced fracture of acromial process, unspecified shoulder|Nondisplaced fracture of acromial process, unspecified shoulder +C2840669|T037|AB|S42.126A|ICD10CM|Nondisp fx of acromial process, unsp shoulder, init|Nondisp fx of acromial process, unsp shoulder, init +C2840670|T037|AB|S42.126B|ICD10CM|Nondisp fx of acromial process, unsp shldr, init for opn fx|Nondisp fx of acromial process, unsp shldr, init for opn fx +C2840670|T037|PT|S42.126B|ICD10CM|Nondisplaced fracture of acromial process, unspecified shoulder, initial encounter for open fracture|Nondisplaced fracture of acromial process, unspecified shoulder, initial encounter for open fracture +C2840671|T037|AB|S42.126D|ICD10CM|Nondisp fx of acromial pro, unsp shldr, 7thD|Nondisp fx of acromial pro, unsp shldr, 7thD +C2840672|T037|AB|S42.126G|ICD10CM|Nondisp fx of acromial pro, unsp shldr, 7thG|Nondisp fx of acromial pro, unsp shldr, 7thG +C2840673|T037|AB|S42.126K|ICD10CM|Nondisp fx of acromial pro, unsp shldr, 7thK|Nondisp fx of acromial pro, unsp shldr, 7thK +C2840674|T037|AB|S42.126P|ICD10CM|Nondisp fx of acromial pro, unsp shldr, 7thP|Nondisp fx of acromial pro, unsp shldr, 7thP +C2840675|T037|AB|S42.126S|ICD10CM|Nondisp fx of acromial process, unsp shoulder, sequela|Nondisp fx of acromial process, unsp shoulder, sequela +C2840675|T037|PT|S42.126S|ICD10CM|Nondisplaced fracture of acromial process, unspecified shoulder, sequela|Nondisplaced fracture of acromial process, unspecified shoulder, sequela +C0272605|T037|HT|S42.13|ICD10CM|Fracture of coracoid process|Fracture of coracoid process +C0272605|T037|AB|S42.13|ICD10CM|Fracture of coracoid process|Fracture of coracoid process +C2840676|T037|AB|S42.131|ICD10CM|Displaced fracture of coracoid process, right shoulder|Displaced fracture of coracoid process, right shoulder +C2840676|T037|HT|S42.131|ICD10CM|Displaced fracture of coracoid process, right shoulder|Displaced fracture of coracoid process, right shoulder +C2840677|T037|AB|S42.131A|ICD10CM|Disp fx of coracoid process, right shoulder, init|Disp fx of coracoid process, right shoulder, init +C2840677|T037|PT|S42.131A|ICD10CM|Displaced fracture of coracoid process, right shoulder, initial encounter for closed fracture|Displaced fracture of coracoid process, right shoulder, initial encounter for closed fracture +C2840678|T037|AB|S42.131B|ICD10CM|Disp fx of coracoid process, right shoulder, init for opn fx|Disp fx of coracoid process, right shoulder, init for opn fx +C2840678|T037|PT|S42.131B|ICD10CM|Displaced fracture of coracoid process, right shoulder, initial encounter for open fracture|Displaced fracture of coracoid process, right shoulder, initial encounter for open fracture +C2840679|T037|AB|S42.131D|ICD10CM|Disp fx of coracoid pro, r shldr, subs for fx w routn heal|Disp fx of coracoid pro, r shldr, subs for fx w routn heal +C2840680|T037|AB|S42.131G|ICD10CM|Disp fx of coracoid pro, r shldr, subs for fx w delay heal|Disp fx of coracoid pro, r shldr, subs for fx w delay heal +C2840681|T037|AB|S42.131K|ICD10CM|Disp fx of coracoid process, r shldr, subs for fx w nonunion|Disp fx of coracoid process, r shldr, subs for fx w nonunion +C2840682|T037|AB|S42.131P|ICD10CM|Disp fx of coracoid process, r shldr, subs for fx w malunion|Disp fx of coracoid process, r shldr, subs for fx w malunion +C2840683|T037|AB|S42.131S|ICD10CM|Disp fx of coracoid process, right shoulder, sequela|Disp fx of coracoid process, right shoulder, sequela +C2840683|T037|PT|S42.131S|ICD10CM|Displaced fracture of coracoid process, right shoulder, sequela|Displaced fracture of coracoid process, right shoulder, sequela +C2840684|T037|AB|S42.132|ICD10CM|Displaced fracture of coracoid process, left shoulder|Displaced fracture of coracoid process, left shoulder +C2840684|T037|HT|S42.132|ICD10CM|Displaced fracture of coracoid process, left shoulder|Displaced fracture of coracoid process, left shoulder +C2840685|T037|AB|S42.132A|ICD10CM|Disp fx of coracoid process, left shoulder, init for clos fx|Disp fx of coracoid process, left shoulder, init for clos fx +C2840685|T037|PT|S42.132A|ICD10CM|Displaced fracture of coracoid process, left shoulder, initial encounter for closed fracture|Displaced fracture of coracoid process, left shoulder, initial encounter for closed fracture +C2840686|T037|AB|S42.132B|ICD10CM|Disp fx of coracoid process, left shoulder, init for opn fx|Disp fx of coracoid process, left shoulder, init for opn fx +C2840686|T037|PT|S42.132B|ICD10CM|Displaced fracture of coracoid process, left shoulder, initial encounter for open fracture|Displaced fracture of coracoid process, left shoulder, initial encounter for open fracture +C2840687|T037|AB|S42.132D|ICD10CM|Disp fx of coracoid pro, l shldr, subs for fx w routn heal|Disp fx of coracoid pro, l shldr, subs for fx w routn heal +C2840688|T037|AB|S42.132G|ICD10CM|Disp fx of coracoid pro, l shldr, subs for fx w delay heal|Disp fx of coracoid pro, l shldr, subs for fx w delay heal +C2840689|T037|AB|S42.132K|ICD10CM|Disp fx of coracoid process, l shldr, subs for fx w nonunion|Disp fx of coracoid process, l shldr, subs for fx w nonunion +C2840690|T037|AB|S42.132P|ICD10CM|Disp fx of coracoid process, l shldr, subs for fx w malunion|Disp fx of coracoid process, l shldr, subs for fx w malunion +C2840691|T037|AB|S42.132S|ICD10CM|Disp fx of coracoid process, left shoulder, sequela|Disp fx of coracoid process, left shoulder, sequela +C2840691|T037|PT|S42.132S|ICD10CM|Displaced fracture of coracoid process, left shoulder, sequela|Displaced fracture of coracoid process, left shoulder, sequela +C2840692|T037|AB|S42.133|ICD10CM|Displaced fracture of coracoid process, unspecified shoulder|Displaced fracture of coracoid process, unspecified shoulder +C2840692|T037|HT|S42.133|ICD10CM|Displaced fracture of coracoid process, unspecified shoulder|Displaced fracture of coracoid process, unspecified shoulder +C2840693|T037|AB|S42.133A|ICD10CM|Disp fx of coracoid process, unsp shoulder, init for clos fx|Disp fx of coracoid process, unsp shoulder, init for clos fx +C2840693|T037|PT|S42.133A|ICD10CM|Displaced fracture of coracoid process, unspecified shoulder, initial encounter for closed fracture|Displaced fracture of coracoid process, unspecified shoulder, initial encounter for closed fracture +C2840694|T037|AB|S42.133B|ICD10CM|Disp fx of coracoid process, unsp shoulder, init for opn fx|Disp fx of coracoid process, unsp shoulder, init for opn fx +C2840694|T037|PT|S42.133B|ICD10CM|Displaced fracture of coracoid process, unspecified shoulder, initial encounter for open fracture|Displaced fracture of coracoid process, unspecified shoulder, initial encounter for open fracture +C2840695|T037|AB|S42.133D|ICD10CM|Disp fx of coracoid pro, unsp shldr, 7thD|Disp fx of coracoid pro, unsp shldr, 7thD +C2840696|T037|AB|S42.133G|ICD10CM|Disp fx of coracoid pro, unsp shldr, 7thG|Disp fx of coracoid pro, unsp shldr, 7thG +C2840697|T037|AB|S42.133K|ICD10CM|Disp fx of coracoid pro, unsp shldr, subs for fx w nonunion|Disp fx of coracoid pro, unsp shldr, subs for fx w nonunion +C2840698|T037|AB|S42.133P|ICD10CM|Disp fx of coracoid pro, unsp shldr, subs for fx w malunion|Disp fx of coracoid pro, unsp shldr, subs for fx w malunion +C2840699|T037|AB|S42.133S|ICD10CM|Disp fx of coracoid process, unspecified shoulder, sequela|Disp fx of coracoid process, unspecified shoulder, sequela +C2840699|T037|PT|S42.133S|ICD10CM|Displaced fracture of coracoid process, unspecified shoulder, sequela|Displaced fracture of coracoid process, unspecified shoulder, sequela +C2840700|T037|AB|S42.134|ICD10CM|Nondisplaced fracture of coracoid process, right shoulder|Nondisplaced fracture of coracoid process, right shoulder +C2840700|T037|HT|S42.134|ICD10CM|Nondisplaced fracture of coracoid process, right shoulder|Nondisplaced fracture of coracoid process, right shoulder +C2840701|T037|AB|S42.134A|ICD10CM|Nondisp fx of coracoid process, right shoulder, init|Nondisp fx of coracoid process, right shoulder, init +C2840701|T037|PT|S42.134A|ICD10CM|Nondisplaced fracture of coracoid process, right shoulder, initial encounter for closed fracture|Nondisplaced fracture of coracoid process, right shoulder, initial encounter for closed fracture +C2840702|T037|AB|S42.134B|ICD10CM|Nondisp fx of coracoid process, r shoulder, init for opn fx|Nondisp fx of coracoid process, r shoulder, init for opn fx +C2840702|T037|PT|S42.134B|ICD10CM|Nondisplaced fracture of coracoid process, right shoulder, initial encounter for open fracture|Nondisplaced fracture of coracoid process, right shoulder, initial encounter for open fracture +C2840703|T037|AB|S42.134D|ICD10CM|Nondisp fx of coracoid pro, r shldr, 7thD|Nondisp fx of coracoid pro, r shldr, 7thD +C2840704|T037|AB|S42.134G|ICD10CM|Nondisp fx of coracoid pro, r shldr, 7thG|Nondisp fx of coracoid pro, r shldr, 7thG +C2840705|T037|AB|S42.134K|ICD10CM|Nondisp fx of coracoid pro, r shldr, subs for fx w nonunion|Nondisp fx of coracoid pro, r shldr, subs for fx w nonunion +C2840706|T037|AB|S42.134P|ICD10CM|Nondisp fx of coracoid pro, r shldr, subs for fx w malunion|Nondisp fx of coracoid pro, r shldr, subs for fx w malunion +C2840707|T037|AB|S42.134S|ICD10CM|Nondisp fx of coracoid process, right shoulder, sequela|Nondisp fx of coracoid process, right shoulder, sequela +C2840707|T037|PT|S42.134S|ICD10CM|Nondisplaced fracture of coracoid process, right shoulder, sequela|Nondisplaced fracture of coracoid process, right shoulder, sequela +C2840708|T037|AB|S42.135|ICD10CM|Nondisplaced fracture of coracoid process, left shoulder|Nondisplaced fracture of coracoid process, left shoulder +C2840708|T037|HT|S42.135|ICD10CM|Nondisplaced fracture of coracoid process, left shoulder|Nondisplaced fracture of coracoid process, left shoulder +C2840709|T037|AB|S42.135A|ICD10CM|Nondisp fx of coracoid process, left shoulder, init|Nondisp fx of coracoid process, left shoulder, init +C2840709|T037|PT|S42.135A|ICD10CM|Nondisplaced fracture of coracoid process, left shoulder, initial encounter for closed fracture|Nondisplaced fracture of coracoid process, left shoulder, initial encounter for closed fracture +C2840710|T037|AB|S42.135B|ICD10CM|Nondisp fx of coracoid process, l shoulder, init for opn fx|Nondisp fx of coracoid process, l shoulder, init for opn fx +C2840710|T037|PT|S42.135B|ICD10CM|Nondisplaced fracture of coracoid process, left shoulder, initial encounter for open fracture|Nondisplaced fracture of coracoid process, left shoulder, initial encounter for open fracture +C2840711|T037|AB|S42.135D|ICD10CM|Nondisp fx of coracoid pro, l shldr, 7thD|Nondisp fx of coracoid pro, l shldr, 7thD +C2840712|T037|AB|S42.135G|ICD10CM|Nondisp fx of coracoid pro, l shldr, 7thG|Nondisp fx of coracoid pro, l shldr, 7thG +C2840713|T037|AB|S42.135K|ICD10CM|Nondisp fx of coracoid pro, l shldr, subs for fx w nonunion|Nondisp fx of coracoid pro, l shldr, subs for fx w nonunion +C2840714|T037|AB|S42.135P|ICD10CM|Nondisp fx of coracoid pro, l shldr, subs for fx w malunion|Nondisp fx of coracoid pro, l shldr, subs for fx w malunion +C2840715|T037|AB|S42.135S|ICD10CM|Nondisp fx of coracoid process, left shoulder, sequela|Nondisp fx of coracoid process, left shoulder, sequela +C2840715|T037|PT|S42.135S|ICD10CM|Nondisplaced fracture of coracoid process, left shoulder, sequela|Nondisplaced fracture of coracoid process, left shoulder, sequela +C2840716|T037|AB|S42.136|ICD10CM|Nondisp fx of coracoid process, unspecified shoulder|Nondisp fx of coracoid process, unspecified shoulder +C2840716|T037|HT|S42.136|ICD10CM|Nondisplaced fracture of coracoid process, unspecified shoulder|Nondisplaced fracture of coracoid process, unspecified shoulder +C2840717|T037|AB|S42.136A|ICD10CM|Nondisp fx of coracoid process, unsp shoulder, init|Nondisp fx of coracoid process, unsp shoulder, init +C2840718|T037|AB|S42.136B|ICD10CM|Nondisp fx of coracoid process, unsp shldr, init for opn fx|Nondisp fx of coracoid process, unsp shldr, init for opn fx +C2840718|T037|PT|S42.136B|ICD10CM|Nondisplaced fracture of coracoid process, unspecified shoulder, initial encounter for open fracture|Nondisplaced fracture of coracoid process, unspecified shoulder, initial encounter for open fracture +C2840719|T037|AB|S42.136D|ICD10CM|Nondisp fx of coracoid pro, unsp shldr, 7thD|Nondisp fx of coracoid pro, unsp shldr, 7thD +C2840720|T037|AB|S42.136G|ICD10CM|Nondisp fx of coracoid pro, unsp shldr, 7thG|Nondisp fx of coracoid pro, unsp shldr, 7thG +C2840721|T037|AB|S42.136K|ICD10CM|Nondisp fx of coracoid pro, unsp shldr, 7thK|Nondisp fx of coracoid pro, unsp shldr, 7thK +C2840722|T037|AB|S42.136P|ICD10CM|Nondisp fx of coracoid pro, unsp shldr, 7thP|Nondisp fx of coracoid pro, unsp shldr, 7thP +C2840723|T037|AB|S42.136S|ICD10CM|Nondisp fx of coracoid process, unsp shoulder, sequela|Nondisp fx of coracoid process, unsp shoulder, sequela +C2840723|T037|PT|S42.136S|ICD10CM|Nondisplaced fracture of coracoid process, unspecified shoulder, sequela|Nondisplaced fracture of coracoid process, unspecified shoulder, sequela +C2840724|T037|AB|S42.14|ICD10CM|Fracture of glenoid cavity of scapula|Fracture of glenoid cavity of scapula +C2840724|T037|HT|S42.14|ICD10CM|Fracture of glenoid cavity of scapula|Fracture of glenoid cavity of scapula +C2840725|T037|AB|S42.141|ICD10CM|Disp fx of glenoid cavity of scapula, right shoulder|Disp fx of glenoid cavity of scapula, right shoulder +C2840725|T037|HT|S42.141|ICD10CM|Displaced fracture of glenoid cavity of scapula, right shoulder|Displaced fracture of glenoid cavity of scapula, right shoulder +C2840726|T037|AB|S42.141A|ICD10CM|Disp fx of glenoid cavity of scapula, right shoulder, init|Disp fx of glenoid cavity of scapula, right shoulder, init +C2840727|T037|AB|S42.141B|ICD10CM|Disp fx of glenoid cav of scapula, r shldr, init for opn fx|Disp fx of glenoid cav of scapula, r shldr, init for opn fx +C2840727|T037|PT|S42.141B|ICD10CM|Displaced fracture of glenoid cavity of scapula, right shoulder, initial encounter for open fracture|Displaced fracture of glenoid cavity of scapula, right shoulder, initial encounter for open fracture +C2840728|T037|AB|S42.141D|ICD10CM|Disp fx of glenoid cav of scapula, r shldr, 7thD|Disp fx of glenoid cav of scapula, r shldr, 7thD +C2840729|T037|AB|S42.141G|ICD10CM|Disp fx of glenoid cav of scapula, r shldr, 7thG|Disp fx of glenoid cav of scapula, r shldr, 7thG +C2840730|T037|AB|S42.141K|ICD10CM|Disp fx of glenoid cav of scapula, r shldr, 7thK|Disp fx of glenoid cav of scapula, r shldr, 7thK +C2840731|T037|AB|S42.141P|ICD10CM|Disp fx of glenoid cav of scapula, r shldr, 7thP|Disp fx of glenoid cav of scapula, r shldr, 7thP +C2840732|T037|AB|S42.141S|ICD10CM|Disp fx of glenoid cav of scapula, right shoulder, sequela|Disp fx of glenoid cav of scapula, right shoulder, sequela +C2840732|T037|PT|S42.141S|ICD10CM|Displaced fracture of glenoid cavity of scapula, right shoulder, sequela|Displaced fracture of glenoid cavity of scapula, right shoulder, sequela +C2840733|T037|AB|S42.142|ICD10CM|Disp fx of glenoid cavity of scapula, left shoulder|Disp fx of glenoid cavity of scapula, left shoulder +C2840733|T037|HT|S42.142|ICD10CM|Displaced fracture of glenoid cavity of scapula, left shoulder|Displaced fracture of glenoid cavity of scapula, left shoulder +C2840734|T037|AB|S42.142A|ICD10CM|Disp fx of glenoid cavity of scapula, left shoulder, init|Disp fx of glenoid cavity of scapula, left shoulder, init +C2840735|T037|AB|S42.142B|ICD10CM|Disp fx of glenoid cav of scapula, l shldr, init for opn fx|Disp fx of glenoid cav of scapula, l shldr, init for opn fx +C2840735|T037|PT|S42.142B|ICD10CM|Displaced fracture of glenoid cavity of scapula, left shoulder, initial encounter for open fracture|Displaced fracture of glenoid cavity of scapula, left shoulder, initial encounter for open fracture +C2840736|T037|AB|S42.142D|ICD10CM|Disp fx of glenoid cav of scapula, l shldr, 7thD|Disp fx of glenoid cav of scapula, l shldr, 7thD +C2840737|T037|AB|S42.142G|ICD10CM|Disp fx of glenoid cav of scapula, l shldr, 7thG|Disp fx of glenoid cav of scapula, l shldr, 7thG +C2840738|T037|AB|S42.142K|ICD10CM|Disp fx of glenoid cav of scapula, l shldr, 7thK|Disp fx of glenoid cav of scapula, l shldr, 7thK +C2840739|T037|AB|S42.142P|ICD10CM|Disp fx of glenoid cav of scapula, l shldr, 7thP|Disp fx of glenoid cav of scapula, l shldr, 7thP +C2840740|T037|AB|S42.142S|ICD10CM|Disp fx of glenoid cavity of scapula, left shoulder, sequela|Disp fx of glenoid cavity of scapula, left shoulder, sequela +C2840740|T037|PT|S42.142S|ICD10CM|Displaced fracture of glenoid cavity of scapula, left shoulder, sequela|Displaced fracture of glenoid cavity of scapula, left shoulder, sequela +C2840741|T037|AB|S42.143|ICD10CM|Disp fx of glenoid cavity of scapula, unspecified shoulder|Disp fx of glenoid cavity of scapula, unspecified shoulder +C2840741|T037|HT|S42.143|ICD10CM|Displaced fracture of glenoid cavity of scapula, unspecified shoulder|Displaced fracture of glenoid cavity of scapula, unspecified shoulder +C2840742|T037|AB|S42.143A|ICD10CM|Disp fx of glenoid cavity of scapula, unsp shoulder, init|Disp fx of glenoid cavity of scapula, unsp shoulder, init +C2840743|T037|AB|S42.143B|ICD10CM|Disp fx of glenoid cav of scapula, unsp shldr, 7thB|Disp fx of glenoid cav of scapula, unsp shldr, 7thB +C2840744|T037|AB|S42.143D|ICD10CM|Disp fx of glenoid cav of scapula, unsp shldr, 7thD|Disp fx of glenoid cav of scapula, unsp shldr, 7thD +C2840745|T037|AB|S42.143G|ICD10CM|Disp fx of glenoid cav of scapula, unsp shldr, 7thG|Disp fx of glenoid cav of scapula, unsp shldr, 7thG +C2840746|T037|AB|S42.143K|ICD10CM|Disp fx of glenoid cav of scapula, unsp shldr, 7thK|Disp fx of glenoid cav of scapula, unsp shldr, 7thK +C2840747|T037|AB|S42.143P|ICD10CM|Disp fx of glenoid cav of scapula, unsp shldr, 7thP|Disp fx of glenoid cav of scapula, unsp shldr, 7thP +C2840748|T037|AB|S42.143S|ICD10CM|Disp fx of glenoid cavity of scapula, unsp shoulder, sequela|Disp fx of glenoid cavity of scapula, unsp shoulder, sequela +C2840748|T037|PT|S42.143S|ICD10CM|Displaced fracture of glenoid cavity of scapula, unspecified shoulder, sequela|Displaced fracture of glenoid cavity of scapula, unspecified shoulder, sequela +C2840749|T037|AB|S42.144|ICD10CM|Nondisp fx of glenoid cavity of scapula, right shoulder|Nondisp fx of glenoid cavity of scapula, right shoulder +C2840749|T037|HT|S42.144|ICD10CM|Nondisplaced fracture of glenoid cavity of scapula, right shoulder|Nondisplaced fracture of glenoid cavity of scapula, right shoulder +C2840750|T037|AB|S42.144A|ICD10CM|Nondisp fx of glenoid cav of scapula, right shoulder, init|Nondisp fx of glenoid cav of scapula, right shoulder, init +C2840751|T037|AB|S42.144B|ICD10CM|Nondisp fx of glenoid cav of scapula, r shldr, 7thB|Nondisp fx of glenoid cav of scapula, r shldr, 7thB +C2840752|T037|AB|S42.144D|ICD10CM|Nondisp fx of glenoid cav of scapula, r shldr, 7thD|Nondisp fx of glenoid cav of scapula, r shldr, 7thD +C2840753|T037|AB|S42.144G|ICD10CM|Nondisp fx of glenoid cav of scapula, r shldr, 7thG|Nondisp fx of glenoid cav of scapula, r shldr, 7thG +C2840754|T037|AB|S42.144K|ICD10CM|Nondisp fx of glenoid cav of scapula, r shldr, 7thK|Nondisp fx of glenoid cav of scapula, r shldr, 7thK +C2840755|T037|AB|S42.144P|ICD10CM|Nondisp fx of glenoid cav of scapula, r shldr, 7thP|Nondisp fx of glenoid cav of scapula, r shldr, 7thP +C2840756|T037|AB|S42.144S|ICD10CM|Nondisp fx of glenoid cav of scapula, r shoulder, sequela|Nondisp fx of glenoid cav of scapula, r shoulder, sequela +C2840756|T037|PT|S42.144S|ICD10CM|Nondisplaced fracture of glenoid cavity of scapula, right shoulder, sequela|Nondisplaced fracture of glenoid cavity of scapula, right shoulder, sequela +C2840757|T037|AB|S42.145|ICD10CM|Nondisp fx of glenoid cavity of scapula, left shoulder|Nondisp fx of glenoid cavity of scapula, left shoulder +C2840757|T037|HT|S42.145|ICD10CM|Nondisplaced fracture of glenoid cavity of scapula, left shoulder|Nondisplaced fracture of glenoid cavity of scapula, left shoulder +C2840758|T037|AB|S42.145A|ICD10CM|Nondisp fx of glenoid cavity of scapula, left shoulder, init|Nondisp fx of glenoid cavity of scapula, left shoulder, init +C2840759|T037|AB|S42.145B|ICD10CM|Nondisp fx of glenoid cav of scapula, l shldr, 7thB|Nondisp fx of glenoid cav of scapula, l shldr, 7thB +C2840760|T037|AB|S42.145D|ICD10CM|Nondisp fx of glenoid cav of scapula, l shldr, 7thD|Nondisp fx of glenoid cav of scapula, l shldr, 7thD +C2840761|T037|AB|S42.145G|ICD10CM|Nondisp fx of glenoid cav of scapula, l shldr, 7thG|Nondisp fx of glenoid cav of scapula, l shldr, 7thG +C2840762|T037|AB|S42.145K|ICD10CM|Nondisp fx of glenoid cav of scapula, l shldr, 7thK|Nondisp fx of glenoid cav of scapula, l shldr, 7thK +C2840763|T037|AB|S42.145P|ICD10CM|Nondisp fx of glenoid cav of scapula, l shldr, 7thP|Nondisp fx of glenoid cav of scapula, l shldr, 7thP +C2840764|T037|AB|S42.145S|ICD10CM|Nondisp fx of glenoid cav of scapula, left shoulder, sequela|Nondisp fx of glenoid cav of scapula, left shoulder, sequela +C2840764|T037|PT|S42.145S|ICD10CM|Nondisplaced fracture of glenoid cavity of scapula, left shoulder, sequela|Nondisplaced fracture of glenoid cavity of scapula, left shoulder, sequela +C2840765|T037|AB|S42.146|ICD10CM|Nondisp fx of glenoid cavity of scapula, unsp shoulder|Nondisp fx of glenoid cavity of scapula, unsp shoulder +C2840765|T037|HT|S42.146|ICD10CM|Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder|Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder +C2840766|T037|AB|S42.146A|ICD10CM|Nondisp fx of glenoid cavity of scapula, unsp shoulder, init|Nondisp fx of glenoid cavity of scapula, unsp shoulder, init +C2840767|T037|AB|S42.146B|ICD10CM|Nondisp fx of glenoid cav of scapula, unsp shldr, 7thB|Nondisp fx of glenoid cav of scapula, unsp shldr, 7thB +C2840768|T037|AB|S42.146D|ICD10CM|Nondisp fx of glenoid cav of scapula, unsp shldr, 7thD|Nondisp fx of glenoid cav of scapula, unsp shldr, 7thD +C2840769|T037|AB|S42.146G|ICD10CM|Nondisp fx of glenoid cav of scapula, unsp shldr, 7thG|Nondisp fx of glenoid cav of scapula, unsp shldr, 7thG +C2840770|T037|AB|S42.146K|ICD10CM|Nondisp fx of glenoid cav of scapula, unsp shldr, 7thK|Nondisp fx of glenoid cav of scapula, unsp shldr, 7thK +C2840771|T037|AB|S42.146P|ICD10CM|Nondisp fx of glenoid cav of scapula, unsp shldr, 7thP|Nondisp fx of glenoid cav of scapula, unsp shldr, 7thP +C2840772|T037|AB|S42.146S|ICD10CM|Nondisp fx of glenoid cav of scapula, unsp shoulder, sequela|Nondisp fx of glenoid cav of scapula, unsp shoulder, sequela +C2840772|T037|PT|S42.146S|ICD10CM|Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, sequela|Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, sequela +C2840773|T037|HT|S42.15|ICD10CM|Fracture of neck of scapula|Fracture of neck of scapula +C2840773|T037|AB|S42.15|ICD10CM|Fracture of neck of scapula|Fracture of neck of scapula +C2840774|T037|AB|S42.151|ICD10CM|Displaced fracture of neck of scapula, right shoulder|Displaced fracture of neck of scapula, right shoulder +C2840774|T037|HT|S42.151|ICD10CM|Displaced fracture of neck of scapula, right shoulder|Displaced fracture of neck of scapula, right shoulder +C2840775|T037|AB|S42.151A|ICD10CM|Disp fx of neck of scapula, right shoulder, init for clos fx|Disp fx of neck of scapula, right shoulder, init for clos fx +C2840775|T037|PT|S42.151A|ICD10CM|Displaced fracture of neck of scapula, right shoulder, initial encounter for closed fracture|Displaced fracture of neck of scapula, right shoulder, initial encounter for closed fracture +C2840776|T037|AB|S42.151B|ICD10CM|Disp fx of neck of scapula, right shoulder, init for opn fx|Disp fx of neck of scapula, right shoulder, init for opn fx +C2840776|T037|PT|S42.151B|ICD10CM|Displaced fracture of neck of scapula, right shoulder, initial encounter for open fracture|Displaced fracture of neck of scapula, right shoulder, initial encounter for open fracture +C2840777|T037|AB|S42.151D|ICD10CM|Disp fx of nk of scapula, r shldr, subs for fx w routn heal|Disp fx of nk of scapula, r shldr, subs for fx w routn heal +C2840778|T037|AB|S42.151G|ICD10CM|Disp fx of nk of scapula, r shldr, subs for fx w delay heal|Disp fx of nk of scapula, r shldr, subs for fx w delay heal +C2840779|T037|AB|S42.151K|ICD10CM|Disp fx of neck of scapula, r shldr, subs for fx w nonunion|Disp fx of neck of scapula, r shldr, subs for fx w nonunion +C2840780|T037|AB|S42.151P|ICD10CM|Disp fx of neck of scapula, r shldr, subs for fx w malunion|Disp fx of neck of scapula, r shldr, subs for fx w malunion +C2840781|T037|AB|S42.151S|ICD10CM|Disp fx of neck of scapula, right shoulder, sequela|Disp fx of neck of scapula, right shoulder, sequela +C2840781|T037|PT|S42.151S|ICD10CM|Displaced fracture of neck of scapula, right shoulder, sequela|Displaced fracture of neck of scapula, right shoulder, sequela +C2840782|T037|AB|S42.152|ICD10CM|Displaced fracture of neck of scapula, left shoulder|Displaced fracture of neck of scapula, left shoulder +C2840782|T037|HT|S42.152|ICD10CM|Displaced fracture of neck of scapula, left shoulder|Displaced fracture of neck of scapula, left shoulder +C2840783|T037|AB|S42.152A|ICD10CM|Disp fx of neck of scapula, left shoulder, init for clos fx|Disp fx of neck of scapula, left shoulder, init for clos fx +C2840783|T037|PT|S42.152A|ICD10CM|Displaced fracture of neck of scapula, left shoulder, initial encounter for closed fracture|Displaced fracture of neck of scapula, left shoulder, initial encounter for closed fracture +C2840784|T037|AB|S42.152B|ICD10CM|Disp fx of neck of scapula, left shoulder, init for opn fx|Disp fx of neck of scapula, left shoulder, init for opn fx +C2840784|T037|PT|S42.152B|ICD10CM|Displaced fracture of neck of scapula, left shoulder, initial encounter for open fracture|Displaced fracture of neck of scapula, left shoulder, initial encounter for open fracture +C2840785|T037|AB|S42.152D|ICD10CM|Disp fx of nk of scapula, l shldr, subs for fx w routn heal|Disp fx of nk of scapula, l shldr, subs for fx w routn heal +C2840786|T037|AB|S42.152G|ICD10CM|Disp fx of nk of scapula, l shldr, subs for fx w delay heal|Disp fx of nk of scapula, l shldr, subs for fx w delay heal +C2840787|T037|AB|S42.152K|ICD10CM|Disp fx of neck of scapula, l shldr, subs for fx w nonunion|Disp fx of neck of scapula, l shldr, subs for fx w nonunion +C2840788|T037|AB|S42.152P|ICD10CM|Disp fx of neck of scapula, l shldr, subs for fx w malunion|Disp fx of neck of scapula, l shldr, subs for fx w malunion +C2840789|T037|AB|S42.152S|ICD10CM|Disp fx of neck of scapula, left shoulder, sequela|Disp fx of neck of scapula, left shoulder, sequela +C2840789|T037|PT|S42.152S|ICD10CM|Displaced fracture of neck of scapula, left shoulder, sequela|Displaced fracture of neck of scapula, left shoulder, sequela +C2840790|T037|AB|S42.153|ICD10CM|Displaced fracture of neck of scapula, unspecified shoulder|Displaced fracture of neck of scapula, unspecified shoulder +C2840790|T037|HT|S42.153|ICD10CM|Displaced fracture of neck of scapula, unspecified shoulder|Displaced fracture of neck of scapula, unspecified shoulder +C2840791|T037|AB|S42.153A|ICD10CM|Disp fx of neck of scapula, unsp shoulder, init for clos fx|Disp fx of neck of scapula, unsp shoulder, init for clos fx +C2840791|T037|PT|S42.153A|ICD10CM|Displaced fracture of neck of scapula, unspecified shoulder, initial encounter for closed fracture|Displaced fracture of neck of scapula, unspecified shoulder, initial encounter for closed fracture +C2840792|T037|AB|S42.153B|ICD10CM|Disp fx of neck of scapula, unsp shoulder, init for opn fx|Disp fx of neck of scapula, unsp shoulder, init for opn fx +C2840792|T037|PT|S42.153B|ICD10CM|Displaced fracture of neck of scapula, unspecified shoulder, initial encounter for open fracture|Displaced fracture of neck of scapula, unspecified shoulder, initial encounter for open fracture +C2840793|T037|AB|S42.153D|ICD10CM|Disp fx of nk of scapula, unsp shldr, 7thD|Disp fx of nk of scapula, unsp shldr, 7thD +C2840794|T037|AB|S42.153G|ICD10CM|Disp fx of nk of scapula, unsp shldr, 7thG|Disp fx of nk of scapula, unsp shldr, 7thG +C2840795|T037|AB|S42.153K|ICD10CM|Disp fx of nk of scapula, unsp shldr, subs for fx w nonunion|Disp fx of nk of scapula, unsp shldr, subs for fx w nonunion +C2840796|T037|AB|S42.153P|ICD10CM|Disp fx of nk of scapula, unsp shldr, subs for fx w malunion|Disp fx of nk of scapula, unsp shldr, subs for fx w malunion +C2840797|T037|AB|S42.153S|ICD10CM|Disp fx of neck of scapula, unspecified shoulder, sequela|Disp fx of neck of scapula, unspecified shoulder, sequela +C2840797|T037|PT|S42.153S|ICD10CM|Displaced fracture of neck of scapula, unspecified shoulder, sequela|Displaced fracture of neck of scapula, unspecified shoulder, sequela +C2840798|T037|AB|S42.154|ICD10CM|Nondisplaced fracture of neck of scapula, right shoulder|Nondisplaced fracture of neck of scapula, right shoulder +C2840798|T037|HT|S42.154|ICD10CM|Nondisplaced fracture of neck of scapula, right shoulder|Nondisplaced fracture of neck of scapula, right shoulder +C2840799|T037|AB|S42.154A|ICD10CM|Nondisp fx of neck of scapula, right shoulder, init|Nondisp fx of neck of scapula, right shoulder, init +C2840799|T037|PT|S42.154A|ICD10CM|Nondisplaced fracture of neck of scapula, right shoulder, initial encounter for closed fracture|Nondisplaced fracture of neck of scapula, right shoulder, initial encounter for closed fracture +C2840800|T037|AB|S42.154B|ICD10CM|Nondisp fx of neck of scapula, r shoulder, init for opn fx|Nondisp fx of neck of scapula, r shoulder, init for opn fx +C2840800|T037|PT|S42.154B|ICD10CM|Nondisplaced fracture of neck of scapula, right shoulder, initial encounter for open fracture|Nondisplaced fracture of neck of scapula, right shoulder, initial encounter for open fracture +C2840801|T037|AB|S42.154D|ICD10CM|Nondisp fx of nk of scapula, r shldr, 7thD|Nondisp fx of nk of scapula, r shldr, 7thD +C2840802|T037|AB|S42.154G|ICD10CM|Nondisp fx of nk of scapula, r shldr, 7thG|Nondisp fx of nk of scapula, r shldr, 7thG +C2840803|T037|AB|S42.154K|ICD10CM|Nondisp fx of nk of scapula, r shldr, subs for fx w nonunion|Nondisp fx of nk of scapula, r shldr, subs for fx w nonunion +C2840804|T037|AB|S42.154P|ICD10CM|Nondisp fx of nk of scapula, r shldr, subs for fx w malunion|Nondisp fx of nk of scapula, r shldr, subs for fx w malunion +C2840805|T037|AB|S42.154S|ICD10CM|Nondisp fx of neck of scapula, right shoulder, sequela|Nondisp fx of neck of scapula, right shoulder, sequela +C2840805|T037|PT|S42.154S|ICD10CM|Nondisplaced fracture of neck of scapula, right shoulder, sequela|Nondisplaced fracture of neck of scapula, right shoulder, sequela +C2840806|T037|AB|S42.155|ICD10CM|Nondisplaced fracture of neck of scapula, left shoulder|Nondisplaced fracture of neck of scapula, left shoulder +C2840806|T037|HT|S42.155|ICD10CM|Nondisplaced fracture of neck of scapula, left shoulder|Nondisplaced fracture of neck of scapula, left shoulder +C2840807|T037|AB|S42.155A|ICD10CM|Nondisp fx of neck of scapula, left shoulder, init|Nondisp fx of neck of scapula, left shoulder, init +C2840807|T037|PT|S42.155A|ICD10CM|Nondisplaced fracture of neck of scapula, left shoulder, initial encounter for closed fracture|Nondisplaced fracture of neck of scapula, left shoulder, initial encounter for closed fracture +C2840808|T037|AB|S42.155B|ICD10CM|Nondisp fx of neck of scapula, l shoulder, init for opn fx|Nondisp fx of neck of scapula, l shoulder, init for opn fx +C2840808|T037|PT|S42.155B|ICD10CM|Nondisplaced fracture of neck of scapula, left shoulder, initial encounter for open fracture|Nondisplaced fracture of neck of scapula, left shoulder, initial encounter for open fracture +C2840809|T037|AB|S42.155D|ICD10CM|Nondisp fx of nk of scapula, l shldr, 7thD|Nondisp fx of nk of scapula, l shldr, 7thD +C2840810|T037|AB|S42.155G|ICD10CM|Nondisp fx of nk of scapula, l shldr, 7thG|Nondisp fx of nk of scapula, l shldr, 7thG +C2840811|T037|AB|S42.155K|ICD10CM|Nondisp fx of nk of scapula, l shldr, subs for fx w nonunion|Nondisp fx of nk of scapula, l shldr, subs for fx w nonunion +C2840812|T037|AB|S42.155P|ICD10CM|Nondisp fx of nk of scapula, l shldr, subs for fx w malunion|Nondisp fx of nk of scapula, l shldr, subs for fx w malunion +C2840813|T037|AB|S42.155S|ICD10CM|Nondisp fx of neck of scapula, left shoulder, sequela|Nondisp fx of neck of scapula, left shoulder, sequela +C2840813|T037|PT|S42.155S|ICD10CM|Nondisplaced fracture of neck of scapula, left shoulder, sequela|Nondisplaced fracture of neck of scapula, left shoulder, sequela +C2840814|T037|AB|S42.156|ICD10CM|Nondisp fx of neck of scapula, unspecified shoulder|Nondisp fx of neck of scapula, unspecified shoulder +C2840814|T037|HT|S42.156|ICD10CM|Nondisplaced fracture of neck of scapula, unspecified shoulder|Nondisplaced fracture of neck of scapula, unspecified shoulder +C2840815|T037|AB|S42.156A|ICD10CM|Nondisp fx of neck of scapula, unsp shoulder, init|Nondisp fx of neck of scapula, unsp shoulder, init +C2840816|T037|AB|S42.156B|ICD10CM|Nondisp fx of neck of scapula, unsp shldr, init for opn fx|Nondisp fx of neck of scapula, unsp shldr, init for opn fx +C2840816|T037|PT|S42.156B|ICD10CM|Nondisplaced fracture of neck of scapula, unspecified shoulder, initial encounter for open fracture|Nondisplaced fracture of neck of scapula, unspecified shoulder, initial encounter for open fracture +C2840817|T037|AB|S42.156D|ICD10CM|Nondisp fx of nk of scapula, unsp shldr, 7thD|Nondisp fx of nk of scapula, unsp shldr, 7thD +C2840818|T037|AB|S42.156G|ICD10CM|Nondisp fx of nk of scapula, unsp shldr, 7thG|Nondisp fx of nk of scapula, unsp shldr, 7thG +C2840819|T037|AB|S42.156K|ICD10CM|Nondisp fx of nk of scapula, unsp shldr, 7thK|Nondisp fx of nk of scapula, unsp shldr, 7thK +C2840820|T037|AB|S42.156P|ICD10CM|Nondisp fx of nk of scapula, unsp shldr, 7thP|Nondisp fx of nk of scapula, unsp shldr, 7thP +C2840821|T037|AB|S42.156S|ICD10CM|Nondisp fx of neck of scapula, unspecified shoulder, sequela|Nondisp fx of neck of scapula, unspecified shoulder, sequela +C2840821|T037|PT|S42.156S|ICD10CM|Nondisplaced fracture of neck of scapula, unspecified shoulder, sequela|Nondisplaced fracture of neck of scapula, unspecified shoulder, sequela +C2840822|T037|AB|S42.19|ICD10CM|Fracture of other part of scapula|Fracture of other part of scapula +C2840822|T037|HT|S42.19|ICD10CM|Fracture of other part of scapula|Fracture of other part of scapula +C2840823|T037|AB|S42.191|ICD10CM|Fracture of other part of scapula, right shoulder|Fracture of other part of scapula, right shoulder +C2840823|T037|HT|S42.191|ICD10CM|Fracture of other part of scapula, right shoulder|Fracture of other part of scapula, right shoulder +C2840824|T037|AB|S42.191A|ICD10CM|Fracture of oth part of scapula, right shoulder, init|Fracture of oth part of scapula, right shoulder, init +C2840824|T037|PT|S42.191A|ICD10CM|Fracture of other part of scapula, right shoulder, initial encounter for closed fracture|Fracture of other part of scapula, right shoulder, initial encounter for closed fracture +C2840825|T037|PT|S42.191B|ICD10CM|Fracture of other part of scapula, right shoulder, initial encounter for open fracture|Fracture of other part of scapula, right shoulder, initial encounter for open fracture +C2840825|T037|AB|S42.191B|ICD10CM|Fracture oth prt scapula, right shoulder, init for opn fx|Fracture oth prt scapula, right shoulder, init for opn fx +C2840826|T037|AB|S42.191D|ICD10CM|Fx oth prt scapula, r shoulder, subs for fx w routn heal|Fx oth prt scapula, r shoulder, subs for fx w routn heal +C2840827|T037|AB|S42.191G|ICD10CM|Fx oth prt scapula, r shoulder, subs for fx w delay heal|Fx oth prt scapula, r shoulder, subs for fx w delay heal +C2840828|T037|PT|S42.191K|ICD10CM|Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with nonunion|Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with nonunion +C2840828|T037|AB|S42.191K|ICD10CM|Fracture oth prt scapula, r shoulder, subs for fx w nonunion|Fracture oth prt scapula, r shoulder, subs for fx w nonunion +C2840829|T037|PT|S42.191P|ICD10CM|Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with malunion|Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with malunion +C2840829|T037|AB|S42.191P|ICD10CM|Fracture oth prt scapula, r shoulder, subs for fx w malunion|Fracture oth prt scapula, r shoulder, subs for fx w malunion +C2840830|T037|AB|S42.191S|ICD10CM|Fracture of other part of scapula, right shoulder, sequela|Fracture of other part of scapula, right shoulder, sequela +C2840830|T037|PT|S42.191S|ICD10CM|Fracture of other part of scapula, right shoulder, sequela|Fracture of other part of scapula, right shoulder, sequela +C2840831|T037|AB|S42.192|ICD10CM|Fracture of other part of scapula, left shoulder|Fracture of other part of scapula, left shoulder +C2840831|T037|HT|S42.192|ICD10CM|Fracture of other part of scapula, left shoulder|Fracture of other part of scapula, left shoulder +C2840832|T037|AB|S42.192A|ICD10CM|Fracture of oth part of scapula, left shoulder, init|Fracture of oth part of scapula, left shoulder, init +C2840832|T037|PT|S42.192A|ICD10CM|Fracture of other part of scapula, left shoulder, initial encounter for closed fracture|Fracture of other part of scapula, left shoulder, initial encounter for closed fracture +C2840833|T037|PT|S42.192B|ICD10CM|Fracture of other part of scapula, left shoulder, initial encounter for open fracture|Fracture of other part of scapula, left shoulder, initial encounter for open fracture +C2840833|T037|AB|S42.192B|ICD10CM|Fracture oth prt scapula, left shoulder, init for opn fx|Fracture oth prt scapula, left shoulder, init for opn fx +C2840834|T037|AB|S42.192D|ICD10CM|Fx oth prt scapula, l shoulder, subs for fx w routn heal|Fx oth prt scapula, l shoulder, subs for fx w routn heal +C2840835|T037|AB|S42.192G|ICD10CM|Fx oth prt scapula, l shoulder, subs for fx w delay heal|Fx oth prt scapula, l shoulder, subs for fx w delay heal +C2840836|T037|PT|S42.192K|ICD10CM|Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with nonunion|Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with nonunion +C2840836|T037|AB|S42.192K|ICD10CM|Fracture oth prt scapula, l shoulder, subs for fx w nonunion|Fracture oth prt scapula, l shoulder, subs for fx w nonunion +C2840837|T037|PT|S42.192P|ICD10CM|Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with malunion|Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with malunion +C2840837|T037|AB|S42.192P|ICD10CM|Fracture oth prt scapula, l shoulder, subs for fx w malunion|Fracture oth prt scapula, l shoulder, subs for fx w malunion +C2840838|T037|AB|S42.192S|ICD10CM|Fracture of other part of scapula, left shoulder, sequela|Fracture of other part of scapula, left shoulder, sequela +C2840838|T037|PT|S42.192S|ICD10CM|Fracture of other part of scapula, left shoulder, sequela|Fracture of other part of scapula, left shoulder, sequela +C2840839|T037|AB|S42.199|ICD10CM|Fracture of other part of scapula, unspecified shoulder|Fracture of other part of scapula, unspecified shoulder +C2840839|T037|HT|S42.199|ICD10CM|Fracture of other part of scapula, unspecified shoulder|Fracture of other part of scapula, unspecified shoulder +C2840840|T037|AB|S42.199A|ICD10CM|Fracture of oth part of scapula, unsp shoulder, init|Fracture of oth part of scapula, unsp shoulder, init +C2840840|T037|PT|S42.199A|ICD10CM|Fracture of other part of scapula, unspecified shoulder, initial encounter for closed fracture|Fracture of other part of scapula, unspecified shoulder, initial encounter for closed fracture +C2840841|T037|PT|S42.199B|ICD10CM|Fracture of other part of scapula, unspecified shoulder, initial encounter for open fracture|Fracture of other part of scapula, unspecified shoulder, initial encounter for open fracture +C2840841|T037|AB|S42.199B|ICD10CM|Fracture oth prt scapula, unsp shoulder, init for opn fx|Fracture oth prt scapula, unsp shoulder, init for opn fx +C2840842|T037|AB|S42.199D|ICD10CM|Fx oth prt scapula, unsp shoulder, subs for fx w routn heal|Fx oth prt scapula, unsp shoulder, subs for fx w routn heal +C2840843|T037|AB|S42.199G|ICD10CM|Fx oth prt scapula, unsp shoulder, subs for fx w delay heal|Fx oth prt scapula, unsp shoulder, subs for fx w delay heal +C2840844|T037|AB|S42.199K|ICD10CM|Fx oth prt scapula, unsp shoulder, subs for fx w nonunion|Fx oth prt scapula, unsp shoulder, subs for fx w nonunion +C2840845|T037|AB|S42.199P|ICD10CM|Fx oth prt scapula, unsp shoulder, subs for fx w malunion|Fx oth prt scapula, unsp shoulder, subs for fx w malunion +C2840846|T037|AB|S42.199S|ICD10CM|Fracture of other part of scapula, unsp shoulder, sequela|Fracture of other part of scapula, unsp shoulder, sequela +C2840846|T037|PT|S42.199S|ICD10CM|Fracture of other part of scapula, unspecified shoulder, sequela|Fracture of other part of scapula, unspecified shoulder, sequela +C0435531|T037|ET|S42.2|ICD10CM|Fracture of proximal end of humerus|Fracture of proximal end of humerus +C0435531|T037|HT|S42.2|ICD10CM|Fracture of upper end of humerus|Fracture of upper end of humerus +C0435531|T037|AB|S42.2|ICD10CM|Fracture of upper end of humerus|Fracture of upper end of humerus +C0435531|T037|PT|S42.2|ICD10|Fracture of upper end of humerus|Fracture of upper end of humerus +C2840847|T037|AB|S42.20|ICD10CM|Unspecified fracture of upper end of humerus|Unspecified fracture of upper end of humerus +C2840847|T037|HT|S42.20|ICD10CM|Unspecified fracture of upper end of humerus|Unspecified fracture of upper end of humerus +C2840848|T037|AB|S42.201|ICD10CM|Unspecified fracture of upper end of right humerus|Unspecified fracture of upper end of right humerus +C2840848|T037|HT|S42.201|ICD10CM|Unspecified fracture of upper end of right humerus|Unspecified fracture of upper end of right humerus +C2840849|T037|AB|S42.201A|ICD10CM|Unsp fracture of upper end of right humerus, init|Unsp fracture of upper end of right humerus, init +C2840849|T037|PT|S42.201A|ICD10CM|Unspecified fracture of upper end of right humerus, initial encounter for closed fracture|Unspecified fracture of upper end of right humerus, initial encounter for closed fracture +C2840850|T037|AB|S42.201B|ICD10CM|Unsp fracture of upper end of right humerus, init for opn fx|Unsp fracture of upper end of right humerus, init for opn fx +C2840850|T037|PT|S42.201B|ICD10CM|Unspecified fracture of upper end of right humerus, initial encounter for open fracture|Unspecified fracture of upper end of right humerus, initial encounter for open fracture +C2840851|T037|AB|S42.201D|ICD10CM|Unsp fx upper end of r humerus, subs for fx w routn heal|Unsp fx upper end of r humerus, subs for fx w routn heal +C2840852|T037|AB|S42.201G|ICD10CM|Unsp fx upper end of r humerus, subs for fx w delay heal|Unsp fx upper end of r humerus, subs for fx w delay heal +C2840853|T037|AB|S42.201K|ICD10CM|Unsp fx upper end of r humerus, subs for fx w nonunion|Unsp fx upper end of r humerus, subs for fx w nonunion +C2840853|T037|PT|S42.201K|ICD10CM|Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with nonunion|Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with nonunion +C2840854|T037|AB|S42.201P|ICD10CM|Unsp fx upper end of r humerus, subs for fx w malunion|Unsp fx upper end of r humerus, subs for fx w malunion +C2840854|T037|PT|S42.201P|ICD10CM|Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with malunion|Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with malunion +C2840855|T037|PT|S42.201S|ICD10CM|Unspecified fracture of upper end of right humerus, sequela|Unspecified fracture of upper end of right humerus, sequela +C2840855|T037|AB|S42.201S|ICD10CM|Unspecified fracture of upper end of right humerus, sequela|Unspecified fracture of upper end of right humerus, sequela +C2840856|T037|AB|S42.202|ICD10CM|Unspecified fracture of upper end of left humerus|Unspecified fracture of upper end of left humerus +C2840856|T037|HT|S42.202|ICD10CM|Unspecified fracture of upper end of left humerus|Unspecified fracture of upper end of left humerus +C2840857|T037|AB|S42.202A|ICD10CM|Unsp fracture of upper end of left humerus, init for clos fx|Unsp fracture of upper end of left humerus, init for clos fx +C2840857|T037|PT|S42.202A|ICD10CM|Unspecified fracture of upper end of left humerus, initial encounter for closed fracture|Unspecified fracture of upper end of left humerus, initial encounter for closed fracture +C2840858|T037|AB|S42.202B|ICD10CM|Unsp fracture of upper end of left humerus, init for opn fx|Unsp fracture of upper end of left humerus, init for opn fx +C2840858|T037|PT|S42.202B|ICD10CM|Unspecified fracture of upper end of left humerus, initial encounter for open fracture|Unspecified fracture of upper end of left humerus, initial encounter for open fracture +C2840859|T037|AB|S42.202D|ICD10CM|Unsp fx upper end of l humerus, subs for fx w routn heal|Unsp fx upper end of l humerus, subs for fx w routn heal +C2840860|T037|AB|S42.202G|ICD10CM|Unsp fx upper end of l humerus, subs for fx w delay heal|Unsp fx upper end of l humerus, subs for fx w delay heal +C2840861|T037|AB|S42.202K|ICD10CM|Unsp fx upper end of l humerus, subs for fx w nonunion|Unsp fx upper end of l humerus, subs for fx w nonunion +C2840861|T037|PT|S42.202K|ICD10CM|Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with nonunion|Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with nonunion +C2840862|T037|AB|S42.202P|ICD10CM|Unsp fx upper end of l humerus, subs for fx w malunion|Unsp fx upper end of l humerus, subs for fx w malunion +C2840862|T037|PT|S42.202P|ICD10CM|Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with malunion|Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with malunion +C2840863|T037|PT|S42.202S|ICD10CM|Unspecified fracture of upper end of left humerus, sequela|Unspecified fracture of upper end of left humerus, sequela +C2840863|T037|AB|S42.202S|ICD10CM|Unspecified fracture of upper end of left humerus, sequela|Unspecified fracture of upper end of left humerus, sequela +C2840864|T037|AB|S42.209|ICD10CM|Unspecified fracture of upper end of unspecified humerus|Unspecified fracture of upper end of unspecified humerus +C2840864|T037|HT|S42.209|ICD10CM|Unspecified fracture of upper end of unspecified humerus|Unspecified fracture of upper end of unspecified humerus +C2840865|T037|AB|S42.209A|ICD10CM|Unsp fracture of upper end of unsp humerus, init for clos fx|Unsp fracture of upper end of unsp humerus, init for clos fx +C2840865|T037|PT|S42.209A|ICD10CM|Unspecified fracture of upper end of unspecified humerus, initial encounter for closed fracture|Unspecified fracture of upper end of unspecified humerus, initial encounter for closed fracture +C2840866|T037|AB|S42.209B|ICD10CM|Unsp fracture of upper end of unsp humerus, init for opn fx|Unsp fracture of upper end of unsp humerus, init for opn fx +C2840866|T037|PT|S42.209B|ICD10CM|Unspecified fracture of upper end of unspecified humerus, initial encounter for open fracture|Unspecified fracture of upper end of unspecified humerus, initial encounter for open fracture +C2840867|T037|AB|S42.209D|ICD10CM|Unsp fx upper end of unsp humerus, subs for fx w routn heal|Unsp fx upper end of unsp humerus, subs for fx w routn heal +C2840868|T037|AB|S42.209G|ICD10CM|Unsp fx upper end of unsp humerus, subs for fx w delay heal|Unsp fx upper end of unsp humerus, subs for fx w delay heal +C2840869|T037|AB|S42.209K|ICD10CM|Unsp fx upper end of unsp humerus, subs for fx w nonunion|Unsp fx upper end of unsp humerus, subs for fx w nonunion +C2840870|T037|AB|S42.209P|ICD10CM|Unsp fx upper end of unsp humerus, subs for fx w malunion|Unsp fx upper end of unsp humerus, subs for fx w malunion +C2840871|T037|AB|S42.209S|ICD10CM|Unsp fracture of upper end of unspecified humerus, sequela|Unsp fracture of upper end of unspecified humerus, sequela +C2840871|T037|PT|S42.209S|ICD10CM|Unspecified fracture of upper end of unspecified humerus, sequela|Unspecified fracture of upper end of unspecified humerus, sequela +C0347787|T037|ET|S42.21|ICD10CM|Fracture of neck of humerus NOS|Fracture of neck of humerus NOS +C2840872|T037|AB|S42.21|ICD10CM|Unspecified fracture of surgical neck of humerus|Unspecified fracture of surgical neck of humerus +C2840872|T037|HT|S42.21|ICD10CM|Unspecified fracture of surgical neck of humerus|Unspecified fracture of surgical neck of humerus +C2840873|T037|AB|S42.211|ICD10CM|Unspecified disp fx of surgical neck of right humerus|Unspecified disp fx of surgical neck of right humerus +C2840873|T037|HT|S42.211|ICD10CM|Unspecified displaced fracture of surgical neck of right humerus|Unspecified displaced fracture of surgical neck of right humerus +C2840874|T037|AB|S42.211A|ICD10CM|Unsp disp fx of surgical neck of right humerus, init|Unsp disp fx of surgical neck of right humerus, init +C2840875|T037|AB|S42.211B|ICD10CM|Unsp disp fx of surgical neck of r humerus, init for opn fx|Unsp disp fx of surgical neck of r humerus, init for opn fx +C2840876|T037|AB|S42.211D|ICD10CM|Unsp disp fx of surg nk of r humer, subs for fx w routn heal|Unsp disp fx of surg nk of r humer, subs for fx w routn heal +C2840877|T037|AB|S42.211G|ICD10CM|Unsp disp fx of surg nk of r humer, subs for fx w delay heal|Unsp disp fx of surg nk of r humer, subs for fx w delay heal +C2840878|T037|AB|S42.211K|ICD10CM|Unsp disp fx of surg neck of r humer, subs for fx w nonunion|Unsp disp fx of surg neck of r humer, subs for fx w nonunion +C2840879|T037|AB|S42.211P|ICD10CM|Unsp disp fx of surg neck of r humer, subs for fx w malunion|Unsp disp fx of surg neck of r humer, subs for fx w malunion +C2840880|T037|AB|S42.211S|ICD10CM|Unsp disp fx of surgical neck of right humerus, sequela|Unsp disp fx of surgical neck of right humerus, sequela +C2840880|T037|PT|S42.211S|ICD10CM|Unspecified displaced fracture of surgical neck of right humerus, sequela|Unspecified displaced fracture of surgical neck of right humerus, sequela +C2840881|T037|AB|S42.212|ICD10CM|Unspecified disp fx of surgical neck of left humerus|Unspecified disp fx of surgical neck of left humerus +C2840881|T037|HT|S42.212|ICD10CM|Unspecified displaced fracture of surgical neck of left humerus|Unspecified displaced fracture of surgical neck of left humerus +C2840882|T037|AB|S42.212A|ICD10CM|Unsp disp fx of surgical neck of left humerus, init|Unsp disp fx of surgical neck of left humerus, init +C2840883|T037|AB|S42.212B|ICD10CM|Unsp disp fx of surgical neck of l humerus, init for opn fx|Unsp disp fx of surgical neck of l humerus, init for opn fx +C2840883|T037|PT|S42.212B|ICD10CM|Unspecified displaced fracture of surgical neck of left humerus, initial encounter for open fracture|Unspecified displaced fracture of surgical neck of left humerus, initial encounter for open fracture +C2840884|T037|AB|S42.212D|ICD10CM|Unsp disp fx of surg nk of l humer, subs for fx w routn heal|Unsp disp fx of surg nk of l humer, subs for fx w routn heal +C2840885|T037|AB|S42.212G|ICD10CM|Unsp disp fx of surg nk of l humer, subs for fx w delay heal|Unsp disp fx of surg nk of l humer, subs for fx w delay heal +C2840886|T037|AB|S42.212K|ICD10CM|Unsp disp fx of surg neck of l humer, subs for fx w nonunion|Unsp disp fx of surg neck of l humer, subs for fx w nonunion +C2840887|T037|AB|S42.212P|ICD10CM|Unsp disp fx of surg neck of l humer, subs for fx w malunion|Unsp disp fx of surg neck of l humer, subs for fx w malunion +C2840888|T037|AB|S42.212S|ICD10CM|Unsp disp fx of surgical neck of left humerus, sequela|Unsp disp fx of surgical neck of left humerus, sequela +C2840888|T037|PT|S42.212S|ICD10CM|Unspecified displaced fracture of surgical neck of left humerus, sequela|Unspecified displaced fracture of surgical neck of left humerus, sequela +C2840889|T037|AB|S42.213|ICD10CM|Unspecified disp fx of surgical neck of unspecified humerus|Unspecified disp fx of surgical neck of unspecified humerus +C2840889|T037|HT|S42.213|ICD10CM|Unspecified displaced fracture of surgical neck of unspecified humerus|Unspecified displaced fracture of surgical neck of unspecified humerus +C2840890|T037|AB|S42.213A|ICD10CM|Unsp disp fx of surgical neck of unsp humerus, init|Unsp disp fx of surgical neck of unsp humerus, init +C2840891|T037|AB|S42.213B|ICD10CM|Unsp disp fx of surg neck of unsp humerus, init for opn fx|Unsp disp fx of surg neck of unsp humerus, init for opn fx +C2840892|T037|AB|S42.213D|ICD10CM|Unsp disp fx of surg nk of unsp humer, 7thD|Unsp disp fx of surg nk of unsp humer, 7thD +C2840893|T037|AB|S42.213G|ICD10CM|Unsp disp fx of surg nk of unsp humer, 7thG|Unsp disp fx of surg nk of unsp humer, 7thG +C2840894|T037|AB|S42.213K|ICD10CM|Unsp disp fx of surg nk of unsp humer, 7thK|Unsp disp fx of surg nk of unsp humer, 7thK +C2840895|T037|AB|S42.213P|ICD10CM|Unsp disp fx of surg nk of unsp humer, 7thP|Unsp disp fx of surg nk of unsp humer, 7thP +C2840896|T037|AB|S42.213S|ICD10CM|Unsp disp fx of surgical neck of unsp humerus, sequela|Unsp disp fx of surgical neck of unsp humerus, sequela +C2840896|T037|PT|S42.213S|ICD10CM|Unspecified displaced fracture of surgical neck of unspecified humerus, sequela|Unspecified displaced fracture of surgical neck of unspecified humerus, sequela +C2840897|T037|AB|S42.214|ICD10CM|Unspecified nondisp fx of surgical neck of right humerus|Unspecified nondisp fx of surgical neck of right humerus +C2840897|T037|HT|S42.214|ICD10CM|Unspecified nondisplaced fracture of surgical neck of right humerus|Unspecified nondisplaced fracture of surgical neck of right humerus +C2840898|T037|AB|S42.214A|ICD10CM|Unsp nondisp fx of surgical neck of right humerus, init|Unsp nondisp fx of surgical neck of right humerus, init +C2840899|T037|AB|S42.214B|ICD10CM|Unsp nondisp fx of surg neck of r humerus, init for opn fx|Unsp nondisp fx of surg neck of r humerus, init for opn fx +C2840900|T037|AB|S42.214D|ICD10CM|Unsp nondisp fx of surg nk of r humer, 7thD|Unsp nondisp fx of surg nk of r humer, 7thD +C2840901|T037|AB|S42.214G|ICD10CM|Unsp nondisp fx of surg nk of r humer, 7thG|Unsp nondisp fx of surg nk of r humer, 7thG +C2840902|T037|AB|S42.214K|ICD10CM|Unsp nondisp fx of surg nk of r humer, 7thK|Unsp nondisp fx of surg nk of r humer, 7thK +C2840903|T037|AB|S42.214P|ICD10CM|Unsp nondisp fx of surg nk of r humer, 7thP|Unsp nondisp fx of surg nk of r humer, 7thP +C2840904|T037|AB|S42.214S|ICD10CM|Unsp nondisp fx of surgical neck of right humerus, sequela|Unsp nondisp fx of surgical neck of right humerus, sequela +C2840904|T037|PT|S42.214S|ICD10CM|Unspecified nondisplaced fracture of surgical neck of right humerus, sequela|Unspecified nondisplaced fracture of surgical neck of right humerus, sequela +C2840905|T037|AB|S42.215|ICD10CM|Unspecified nondisp fx of surgical neck of left humerus|Unspecified nondisp fx of surgical neck of left humerus +C2840905|T037|HT|S42.215|ICD10CM|Unspecified nondisplaced fracture of surgical neck of left humerus|Unspecified nondisplaced fracture of surgical neck of left humerus +C2840906|T037|AB|S42.215A|ICD10CM|Unsp nondisp fx of surgical neck of left humerus, init|Unsp nondisp fx of surgical neck of left humerus, init +C2840907|T037|AB|S42.215B|ICD10CM|Unsp nondisp fx of surg neck of l humerus, init for opn fx|Unsp nondisp fx of surg neck of l humerus, init for opn fx +C2840908|T037|AB|S42.215D|ICD10CM|Unsp nondisp fx of surg nk of l humer, 7thD|Unsp nondisp fx of surg nk of l humer, 7thD +C2840909|T037|AB|S42.215G|ICD10CM|Unsp nondisp fx of surg nk of l humer, 7thG|Unsp nondisp fx of surg nk of l humer, 7thG +C2840910|T037|AB|S42.215K|ICD10CM|Unsp nondisp fx of surg nk of l humer, 7thK|Unsp nondisp fx of surg nk of l humer, 7thK +C2840911|T037|AB|S42.215P|ICD10CM|Unsp nondisp fx of surg nk of l humer, 7thP|Unsp nondisp fx of surg nk of l humer, 7thP +C2840912|T037|AB|S42.215S|ICD10CM|Unsp nondisp fx of surgical neck of left humerus, sequela|Unsp nondisp fx of surgical neck of left humerus, sequela +C2840912|T037|PT|S42.215S|ICD10CM|Unspecified nondisplaced fracture of surgical neck of left humerus, sequela|Unspecified nondisplaced fracture of surgical neck of left humerus, sequela +C2840913|T037|AB|S42.216|ICD10CM|Unsp nondisp fx of surgical neck of unspecified humerus|Unsp nondisp fx of surgical neck of unspecified humerus +C2840913|T037|HT|S42.216|ICD10CM|Unspecified nondisplaced fracture of surgical neck of unspecified humerus|Unspecified nondisplaced fracture of surgical neck of unspecified humerus +C2840914|T037|AB|S42.216A|ICD10CM|Unsp nondisp fx of surgical neck of unsp humerus, init|Unsp nondisp fx of surgical neck of unsp humerus, init +C2840915|T037|AB|S42.216B|ICD10CM|Unsp nondisp fx of surg neck of unsp humer, init for opn fx|Unsp nondisp fx of surg neck of unsp humer, init for opn fx +C2840916|T037|AB|S42.216D|ICD10CM|Unsp nondisp fx of surg nk of unsp humer, 7thD|Unsp nondisp fx of surg nk of unsp humer, 7thD +C2840917|T037|AB|S42.216G|ICD10CM|Unsp nondisp fx of surg nk of unsp humer, 7thG|Unsp nondisp fx of surg nk of unsp humer, 7thG +C2840918|T037|AB|S42.216K|ICD10CM|Unsp nondisp fx of surg nk of unsp humer, 7thK|Unsp nondisp fx of surg nk of unsp humer, 7thK +C2840919|T037|AB|S42.216P|ICD10CM|Unsp nondisp fx of surg nk of unsp humer, 7thP|Unsp nondisp fx of surg nk of unsp humer, 7thP +C2840920|T037|AB|S42.216S|ICD10CM|Unsp nondisp fx of surgical neck of unsp humerus, sequela|Unsp nondisp fx of surgical neck of unsp humerus, sequela +C2840920|T037|PT|S42.216S|ICD10CM|Unspecified nondisplaced fracture of surgical neck of unspecified humerus, sequela|Unspecified nondisplaced fracture of surgical neck of unspecified humerus, sequela +C2840921|T037|HT|S42.22|ICD10CM|2-part fracture of surgical neck of humerus|2-part fracture of surgical neck of humerus +C2840921|T037|AB|S42.22|ICD10CM|2-part fracture of surgical neck of humerus|2-part fracture of surgical neck of humerus +C2840922|T037|AB|S42.221|ICD10CM|2-part displaced fracture of surgical neck of right humerus|2-part displaced fracture of surgical neck of right humerus +C2840922|T037|HT|S42.221|ICD10CM|2-part displaced fracture of surgical neck of right humerus|2-part displaced fracture of surgical neck of right humerus +C2840923|T037|AB|S42.221A|ICD10CM|2-part disp fx of surgical neck of right humerus, init|2-part disp fx of surgical neck of right humerus, init +C2840923|T037|PT|S42.221A|ICD10CM|2-part displaced fracture of surgical neck of right humerus, initial encounter for closed fracture|2-part displaced fracture of surgical neck of right humerus, initial encounter for closed fracture +C2840924|T037|AB|S42.221B|ICD10CM|2-part disp fx of surg neck of r humerus, init for opn fx|2-part disp fx of surg neck of r humerus, init for opn fx +C2840924|T037|PT|S42.221B|ICD10CM|2-part displaced fracture of surgical neck of right humerus, initial encounter for open fracture|2-part displaced fracture of surgical neck of right humerus, initial encounter for open fracture +C2840925|T037|AB|S42.221D|ICD10CM|2-part disp fx of surg nk of r humer, 7thD|2-part disp fx of surg nk of r humer, 7thD +C2840926|T037|AB|S42.221G|ICD10CM|2-part disp fx of surg nk of r humer, 7thG|2-part disp fx of surg nk of r humer, 7thG +C2840927|T037|AB|S42.221K|ICD10CM|2-part disp fx of surg nk of r humer, subs for fx w nonunion|2-part disp fx of surg nk of r humer, subs for fx w nonunion +C2840928|T037|AB|S42.221P|ICD10CM|2-part disp fx of surg nk of r humer, subs for fx w malunion|2-part disp fx of surg nk of r humer, subs for fx w malunion +C2840929|T037|AB|S42.221S|ICD10CM|2-part disp fx of surgical neck of right humerus, sequela|2-part disp fx of surgical neck of right humerus, sequela +C2840929|T037|PT|S42.221S|ICD10CM|2-part displaced fracture of surgical neck of right humerus, sequela|2-part displaced fracture of surgical neck of right humerus, sequela +C2840930|T037|AB|S42.222|ICD10CM|2-part displaced fracture of surgical neck of left humerus|2-part displaced fracture of surgical neck of left humerus +C2840930|T037|HT|S42.222|ICD10CM|2-part displaced fracture of surgical neck of left humerus|2-part displaced fracture of surgical neck of left humerus +C2840931|T037|AB|S42.222A|ICD10CM|2-part disp fx of surgical neck of left humerus, init|2-part disp fx of surgical neck of left humerus, init +C2840931|T037|PT|S42.222A|ICD10CM|2-part displaced fracture of surgical neck of left humerus, initial encounter for closed fracture|2-part displaced fracture of surgical neck of left humerus, initial encounter for closed fracture +C2840932|T037|AB|S42.222B|ICD10CM|2-part disp fx of surg neck of l humerus, init for opn fx|2-part disp fx of surg neck of l humerus, init for opn fx +C2840932|T037|PT|S42.222B|ICD10CM|2-part displaced fracture of surgical neck of left humerus, initial encounter for open fracture|2-part displaced fracture of surgical neck of left humerus, initial encounter for open fracture +C2840933|T037|AB|S42.222D|ICD10CM|2-part disp fx of surg nk of l humer, 7thD|2-part disp fx of surg nk of l humer, 7thD +C2840934|T037|AB|S42.222G|ICD10CM|2-part disp fx of surg nk of l humer, 7thG|2-part disp fx of surg nk of l humer, 7thG +C2840935|T037|AB|S42.222K|ICD10CM|2-part disp fx of surg nk of l humer, subs for fx w nonunion|2-part disp fx of surg nk of l humer, subs for fx w nonunion +C2840936|T037|AB|S42.222P|ICD10CM|2-part disp fx of surg nk of l humer, subs for fx w malunion|2-part disp fx of surg nk of l humer, subs for fx w malunion +C2840937|T037|AB|S42.222S|ICD10CM|2-part disp fx of surgical neck of left humerus, sequela|2-part disp fx of surgical neck of left humerus, sequela +C2840937|T037|PT|S42.222S|ICD10CM|2-part displaced fracture of surgical neck of left humerus, sequela|2-part displaced fracture of surgical neck of left humerus, sequela +C2840938|T037|AB|S42.223|ICD10CM|2-part disp fx of surgical neck of unspecified humerus|2-part disp fx of surgical neck of unspecified humerus +C2840938|T037|HT|S42.223|ICD10CM|2-part displaced fracture of surgical neck of unspecified humerus|2-part displaced fracture of surgical neck of unspecified humerus +C2840939|T037|AB|S42.223A|ICD10CM|2-part disp fx of surgical neck of unsp humerus, init|2-part disp fx of surgical neck of unsp humerus, init +C2840940|T037|AB|S42.223B|ICD10CM|2-part disp fx of surg neck of unsp humerus, init for opn fx|2-part disp fx of surg neck of unsp humerus, init for opn fx +C2840941|T037|AB|S42.223D|ICD10CM|2-part disp fx of surg nk of unsp humer, 7thD|2-part disp fx of surg nk of unsp humer, 7thD +C2840942|T037|AB|S42.223G|ICD10CM|2-part disp fx of surg nk of unsp humer, 7thG|2-part disp fx of surg nk of unsp humer, 7thG +C2840943|T037|AB|S42.223K|ICD10CM|2-part disp fx of surg nk of unsp humer, 7thK|2-part disp fx of surg nk of unsp humer, 7thK +C2840944|T037|AB|S42.223P|ICD10CM|2-part disp fx of surg nk of unsp humer, 7thP|2-part disp fx of surg nk of unsp humer, 7thP +C2840945|T037|AB|S42.223S|ICD10CM|2-part disp fx of surgical neck of unsp humerus, sequela|2-part disp fx of surgical neck of unsp humerus, sequela +C2840945|T037|PT|S42.223S|ICD10CM|2-part displaced fracture of surgical neck of unspecified humerus, sequela|2-part displaced fracture of surgical neck of unspecified humerus, sequela +C2840946|T037|AB|S42.224|ICD10CM|2-part nondisp fx of surgical neck of right humerus|2-part nondisp fx of surgical neck of right humerus +C2840946|T037|HT|S42.224|ICD10CM|2-part nondisplaced fracture of surgical neck of right humerus|2-part nondisplaced fracture of surgical neck of right humerus +C2840947|T037|AB|S42.224A|ICD10CM|2-part nondisp fx of surgical neck of right humerus, init|2-part nondisp fx of surgical neck of right humerus, init +C2840948|T037|AB|S42.224B|ICD10CM|2-part nondisp fx of surg neck of r humerus, init for opn fx|2-part nondisp fx of surg neck of r humerus, init for opn fx +C2840948|T037|PT|S42.224B|ICD10CM|2-part nondisplaced fracture of surgical neck of right humerus, initial encounter for open fracture|2-part nondisplaced fracture of surgical neck of right humerus, initial encounter for open fracture +C2840949|T037|AB|S42.224D|ICD10CM|2-part nondisp fx of surg nk of r humer, 7thD|2-part nondisp fx of surg nk of r humer, 7thD +C2840950|T037|AB|S42.224G|ICD10CM|2-part nondisp fx of surg nk of r humer, 7thG|2-part nondisp fx of surg nk of r humer, 7thG +C2840951|T037|AB|S42.224K|ICD10CM|2-part nondisp fx of surg nk of r humer, 7thK|2-part nondisp fx of surg nk of r humer, 7thK +C2840952|T037|AB|S42.224P|ICD10CM|2-part nondisp fx of surg nk of r humer, 7thP|2-part nondisp fx of surg nk of r humer, 7thP +C2840953|T037|AB|S42.224S|ICD10CM|2-part nondisp fx of surgical neck of right humerus, sequela|2-part nondisp fx of surgical neck of right humerus, sequela +C2840953|T037|PT|S42.224S|ICD10CM|2-part nondisplaced fracture of surgical neck of right humerus, sequela|2-part nondisplaced fracture of surgical neck of right humerus, sequela +C2840954|T037|AB|S42.225|ICD10CM|2-part nondisp fx of surgical neck of left humerus|2-part nondisp fx of surgical neck of left humerus +C2840954|T037|HT|S42.225|ICD10CM|2-part nondisplaced fracture of surgical neck of left humerus|2-part nondisplaced fracture of surgical neck of left humerus +C2840955|T037|AB|S42.225A|ICD10CM|2-part nondisp fx of surgical neck of left humerus, init|2-part nondisp fx of surgical neck of left humerus, init +C2840955|T037|PT|S42.225A|ICD10CM|2-part nondisplaced fracture of surgical neck of left humerus, initial encounter for closed fracture|2-part nondisplaced fracture of surgical neck of left humerus, initial encounter for closed fracture +C2840956|T037|AB|S42.225B|ICD10CM|2-part nondisp fx of surg neck of l humerus, init for opn fx|2-part nondisp fx of surg neck of l humerus, init for opn fx +C2840956|T037|PT|S42.225B|ICD10CM|2-part nondisplaced fracture of surgical neck of left humerus, initial encounter for open fracture|2-part nondisplaced fracture of surgical neck of left humerus, initial encounter for open fracture +C2840957|T037|AB|S42.225D|ICD10CM|2-part nondisp fx of surg nk of l humer, 7thD|2-part nondisp fx of surg nk of l humer, 7thD +C2840958|T037|AB|S42.225G|ICD10CM|2-part nondisp fx of surg nk of l humer, 7thG|2-part nondisp fx of surg nk of l humer, 7thG +C2840959|T037|AB|S42.225K|ICD10CM|2-part nondisp fx of surg nk of l humer, 7thK|2-part nondisp fx of surg nk of l humer, 7thK +C2840960|T037|AB|S42.225P|ICD10CM|2-part nondisp fx of surg nk of l humer, 7thP|2-part nondisp fx of surg nk of l humer, 7thP +C2840961|T037|AB|S42.225S|ICD10CM|2-part nondisp fx of surgical neck of left humerus, sequela|2-part nondisp fx of surgical neck of left humerus, sequela +C2840961|T037|PT|S42.225S|ICD10CM|2-part nondisplaced fracture of surgical neck of left humerus, sequela|2-part nondisplaced fracture of surgical neck of left humerus, sequela +C2840962|T037|AB|S42.226|ICD10CM|2-part nondisp fx of surgical neck of unspecified humerus|2-part nondisp fx of surgical neck of unspecified humerus +C2840962|T037|HT|S42.226|ICD10CM|2-part nondisplaced fracture of surgical neck of unspecified humerus|2-part nondisplaced fracture of surgical neck of unspecified humerus +C2840963|T037|AB|S42.226A|ICD10CM|2-part nondisp fx of surgical neck of unsp humerus, init|2-part nondisp fx of surgical neck of unsp humerus, init +C2840964|T037|AB|S42.226B|ICD10CM|2-part nondisp fx of surg nk of unsp humer, init for opn fx|2-part nondisp fx of surg nk of unsp humer, init for opn fx +C2840965|T037|AB|S42.226D|ICD10CM|2-part nondisp fx of surg nk of unsp humer, 7thD|2-part nondisp fx of surg nk of unsp humer, 7thD +C2840966|T037|AB|S42.226G|ICD10CM|2-part nondisp fx of surg nk of unsp humer, 7thG|2-part nondisp fx of surg nk of unsp humer, 7thG +C2840967|T037|AB|S42.226K|ICD10CM|2-part nondisp fx of surg nk of unsp humer, 7thK|2-part nondisp fx of surg nk of unsp humer, 7thK +C2840968|T037|AB|S42.226P|ICD10CM|2-part nondisp fx of surg nk of unsp humer, 7thP|2-part nondisp fx of surg nk of unsp humer, 7thP +C2840969|T037|AB|S42.226S|ICD10CM|2-part nondisp fx of surgical neck of unsp humerus, sequela|2-part nondisp fx of surgical neck of unsp humerus, sequela +C2840969|T037|PT|S42.226S|ICD10CM|2-part nondisplaced fracture of surgical neck of unspecified humerus, sequela|2-part nondisplaced fracture of surgical neck of unspecified humerus, sequela +C2840970|T037|HT|S42.23|ICD10CM|3-part fracture of surgical neck of humerus|3-part fracture of surgical neck of humerus +C2840970|T037|AB|S42.23|ICD10CM|3-part fracture of surgical neck of humerus|3-part fracture of surgical neck of humerus +C2840971|T037|AB|S42.231|ICD10CM|3-part fracture of surgical neck of right humerus|3-part fracture of surgical neck of right humerus +C2840971|T037|HT|S42.231|ICD10CM|3-part fracture of surgical neck of right humerus|3-part fracture of surgical neck of right humerus +C2840972|T037|AB|S42.231A|ICD10CM|3-part fracture of surgical neck of right humerus, init|3-part fracture of surgical neck of right humerus, init +C2840972|T037|PT|S42.231A|ICD10CM|3-part fracture of surgical neck of right humerus, initial encounter for closed fracture|3-part fracture of surgical neck of right humerus, initial encounter for closed fracture +C2840973|T037|PT|S42.231B|ICD10CM|3-part fracture of surgical neck of right humerus, initial encounter for open fracture|3-part fracture of surgical neck of right humerus, initial encounter for open fracture +C2840973|T037|AB|S42.231B|ICD10CM|3-part fx surgical neck of r humerus, init for opn fx|3-part fx surgical neck of r humerus, init for opn fx +C2840974|T037|AB|S42.231D|ICD10CM|3-part fx surg neck of r humerus, subs for fx w routn heal|3-part fx surg neck of r humerus, subs for fx w routn heal +C2840975|T037|AB|S42.231G|ICD10CM|3-part fx surg neck of r humerus, subs for fx w delay heal|3-part fx surg neck of r humerus, subs for fx w delay heal +C2840976|T037|PT|S42.231K|ICD10CM|3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion|3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion +C2840976|T037|AB|S42.231K|ICD10CM|3-part fx surgical neck of r humerus, subs for fx w nonunion|3-part fx surgical neck of r humerus, subs for fx w nonunion +C2840977|T037|PT|S42.231P|ICD10CM|3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion|3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion +C2840977|T037|AB|S42.231P|ICD10CM|3-part fx surgical neck of r humerus, subs for fx w malunion|3-part fx surgical neck of r humerus, subs for fx w malunion +C2840978|T037|PT|S42.231S|ICD10CM|3-part fracture of surgical neck of right humerus, sequela|3-part fracture of surgical neck of right humerus, sequela +C2840978|T037|AB|S42.231S|ICD10CM|3-part fracture of surgical neck of right humerus, sequela|3-part fracture of surgical neck of right humerus, sequela +C2840979|T037|AB|S42.232|ICD10CM|3-part fracture of surgical neck of left humerus|3-part fracture of surgical neck of left humerus +C2840979|T037|HT|S42.232|ICD10CM|3-part fracture of surgical neck of left humerus|3-part fracture of surgical neck of left humerus +C2840980|T037|AB|S42.232A|ICD10CM|3-part fracture of surgical neck of left humerus, init|3-part fracture of surgical neck of left humerus, init +C2840980|T037|PT|S42.232A|ICD10CM|3-part fracture of surgical neck of left humerus, initial encounter for closed fracture|3-part fracture of surgical neck of left humerus, initial encounter for closed fracture +C2840981|T037|PT|S42.232B|ICD10CM|3-part fracture of surgical neck of left humerus, initial encounter for open fracture|3-part fracture of surgical neck of left humerus, initial encounter for open fracture +C2840981|T037|AB|S42.232B|ICD10CM|3-part fx surgical neck of l humerus, init for opn fx|3-part fx surgical neck of l humerus, init for opn fx +C2840982|T037|AB|S42.232D|ICD10CM|3-part fx surg neck of l humerus, subs for fx w routn heal|3-part fx surg neck of l humerus, subs for fx w routn heal +C2840983|T037|AB|S42.232G|ICD10CM|3-part fx surg neck of l humerus, subs for fx w delay heal|3-part fx surg neck of l humerus, subs for fx w delay heal +C2840984|T037|PT|S42.232K|ICD10CM|3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion|3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion +C2840984|T037|AB|S42.232K|ICD10CM|3-part fx surgical neck of l humerus, subs for fx w nonunion|3-part fx surgical neck of l humerus, subs for fx w nonunion +C2840985|T037|PT|S42.232P|ICD10CM|3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion|3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion +C2840985|T037|AB|S42.232P|ICD10CM|3-part fx surgical neck of l humerus, subs for fx w malunion|3-part fx surgical neck of l humerus, subs for fx w malunion +C2840986|T037|PT|S42.232S|ICD10CM|3-part fracture of surgical neck of left humerus, sequela|3-part fracture of surgical neck of left humerus, sequela +C2840986|T037|AB|S42.232S|ICD10CM|3-part fracture of surgical neck of left humerus, sequela|3-part fracture of surgical neck of left humerus, sequela +C2840987|T037|AB|S42.239|ICD10CM|3-part fracture of surgical neck of unspecified humerus|3-part fracture of surgical neck of unspecified humerus +C2840987|T037|HT|S42.239|ICD10CM|3-part fracture of surgical neck of unspecified humerus|3-part fracture of surgical neck of unspecified humerus +C2840988|T037|AB|S42.239A|ICD10CM|3-part fracture of surgical neck of unsp humerus, init|3-part fracture of surgical neck of unsp humerus, init +C2840988|T037|PT|S42.239A|ICD10CM|3-part fracture of surgical neck of unspecified humerus, initial encounter for closed fracture|3-part fracture of surgical neck of unspecified humerus, initial encounter for closed fracture +C2840989|T037|PT|S42.239B|ICD10CM|3-part fracture of surgical neck of unspecified humerus, initial encounter for open fracture|3-part fracture of surgical neck of unspecified humerus, initial encounter for open fracture +C2840989|T037|AB|S42.239B|ICD10CM|3-part fx surgical neck of unsp humerus, init for opn fx|3-part fx surgical neck of unsp humerus, init for opn fx +C2840990|T037|AB|S42.239D|ICD10CM|3-part fx surg neck of unsp humer, subs for fx w routn heal|3-part fx surg neck of unsp humer, subs for fx w routn heal +C2840991|T037|AB|S42.239G|ICD10CM|3-part fx surg neck of unsp humer, subs for fx w delay heal|3-part fx surg neck of unsp humer, subs for fx w delay heal +C2840992|T037|AB|S42.239K|ICD10CM|3-part fx surg neck of unsp humerus, subs for fx w nonunion|3-part fx surg neck of unsp humerus, subs for fx w nonunion +C2840993|T037|AB|S42.239P|ICD10CM|3-part fx surg neck of unsp humerus, subs for fx w malunion|3-part fx surg neck of unsp humerus, subs for fx w malunion +C2840994|T037|AB|S42.239S|ICD10CM|3-part fracture of surgical neck of unsp humerus, sequela|3-part fracture of surgical neck of unsp humerus, sequela +C2840994|T037|PT|S42.239S|ICD10CM|3-part fracture of surgical neck of unspecified humerus, sequela|3-part fracture of surgical neck of unspecified humerus, sequela +C2840995|T037|HT|S42.24|ICD10CM|4-part fracture of surgical neck of humerus|4-part fracture of surgical neck of humerus +C2840995|T037|AB|S42.24|ICD10CM|4-part fracture of surgical neck of humerus|4-part fracture of surgical neck of humerus +C2840996|T037|AB|S42.241|ICD10CM|4-part fracture of surgical neck of right humerus|4-part fracture of surgical neck of right humerus +C2840996|T037|HT|S42.241|ICD10CM|4-part fracture of surgical neck of right humerus|4-part fracture of surgical neck of right humerus +C2840997|T037|AB|S42.241A|ICD10CM|4-part fracture of surgical neck of right humerus, init|4-part fracture of surgical neck of right humerus, init +C2840997|T037|PT|S42.241A|ICD10CM|4-part fracture of surgical neck of right humerus, initial encounter for closed fracture|4-part fracture of surgical neck of right humerus, initial encounter for closed fracture +C2840998|T037|PT|S42.241B|ICD10CM|4-part fracture of surgical neck of right humerus, initial encounter for open fracture|4-part fracture of surgical neck of right humerus, initial encounter for open fracture +C2840998|T037|AB|S42.241B|ICD10CM|4-part fx surgical neck of r humerus, init for opn fx|4-part fx surgical neck of r humerus, init for opn fx +C2840999|T037|AB|S42.241D|ICD10CM|4-part fx surg neck of r humerus, subs for fx w routn heal|4-part fx surg neck of r humerus, subs for fx w routn heal +C2841000|T037|AB|S42.241G|ICD10CM|4-part fx surg neck of r humerus, subs for fx w delay heal|4-part fx surg neck of r humerus, subs for fx w delay heal +C2841001|T037|PT|S42.241K|ICD10CM|4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion|4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion +C2841001|T037|AB|S42.241K|ICD10CM|4-part fx surgical neck of r humerus, subs for fx w nonunion|4-part fx surgical neck of r humerus, subs for fx w nonunion +C2841002|T037|PT|S42.241P|ICD10CM|4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion|4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion +C2841002|T037|AB|S42.241P|ICD10CM|4-part fx surgical neck of r humerus, subs for fx w malunion|4-part fx surgical neck of r humerus, subs for fx w malunion +C2841003|T037|PT|S42.241S|ICD10CM|4-part fracture of surgical neck of right humerus, sequela|4-part fracture of surgical neck of right humerus, sequela +C2841003|T037|AB|S42.241S|ICD10CM|4-part fracture of surgical neck of right humerus, sequela|4-part fracture of surgical neck of right humerus, sequela +C2841004|T037|AB|S42.242|ICD10CM|4-part fracture of surgical neck of left humerus|4-part fracture of surgical neck of left humerus +C2841004|T037|HT|S42.242|ICD10CM|4-part fracture of surgical neck of left humerus|4-part fracture of surgical neck of left humerus +C2841005|T037|AB|S42.242A|ICD10CM|4-part fracture of surgical neck of left humerus, init|4-part fracture of surgical neck of left humerus, init +C2841005|T037|PT|S42.242A|ICD10CM|4-part fracture of surgical neck of left humerus, initial encounter for closed fracture|4-part fracture of surgical neck of left humerus, initial encounter for closed fracture +C2841006|T037|PT|S42.242B|ICD10CM|4-part fracture of surgical neck of left humerus, initial encounter for open fracture|4-part fracture of surgical neck of left humerus, initial encounter for open fracture +C2841006|T037|AB|S42.242B|ICD10CM|4-part fx surgical neck of l humerus, init for opn fx|4-part fx surgical neck of l humerus, init for opn fx +C2841007|T037|AB|S42.242D|ICD10CM|4-part fx surg neck of l humerus, subs for fx w routn heal|4-part fx surg neck of l humerus, subs for fx w routn heal +C2841008|T037|AB|S42.242G|ICD10CM|4-part fx surg neck of l humerus, subs for fx w delay heal|4-part fx surg neck of l humerus, subs for fx w delay heal +C2841009|T037|PT|S42.242K|ICD10CM|4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion|4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion +C2841009|T037|AB|S42.242K|ICD10CM|4-part fx surgical neck of l humerus, subs for fx w nonunion|4-part fx surgical neck of l humerus, subs for fx w nonunion +C2841010|T037|PT|S42.242P|ICD10CM|4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion|4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion +C2841010|T037|AB|S42.242P|ICD10CM|4-part fx surgical neck of l humerus, subs for fx w malunion|4-part fx surgical neck of l humerus, subs for fx w malunion +C2841011|T037|PT|S42.242S|ICD10CM|4-part fracture of surgical neck of left humerus, sequela|4-part fracture of surgical neck of left humerus, sequela +C2841011|T037|AB|S42.242S|ICD10CM|4-part fracture of surgical neck of left humerus, sequela|4-part fracture of surgical neck of left humerus, sequela +C2841012|T037|AB|S42.249|ICD10CM|4-part fracture of surgical neck of unspecified humerus|4-part fracture of surgical neck of unspecified humerus +C2841012|T037|HT|S42.249|ICD10CM|4-part fracture of surgical neck of unspecified humerus|4-part fracture of surgical neck of unspecified humerus +C2841013|T037|AB|S42.249A|ICD10CM|4-part fracture of surgical neck of unsp humerus, init|4-part fracture of surgical neck of unsp humerus, init +C2841013|T037|PT|S42.249A|ICD10CM|4-part fracture of surgical neck of unspecified humerus, initial encounter for closed fracture|4-part fracture of surgical neck of unspecified humerus, initial encounter for closed fracture +C2841014|T037|PT|S42.249B|ICD10CM|4-part fracture of surgical neck of unspecified humerus, initial encounter for open fracture|4-part fracture of surgical neck of unspecified humerus, initial encounter for open fracture +C2841014|T037|AB|S42.249B|ICD10CM|4-part fx surgical neck of unsp humerus, init for opn fx|4-part fx surgical neck of unsp humerus, init for opn fx +C2841015|T037|AB|S42.249D|ICD10CM|4-part fx surg neck of unsp humer, subs for fx w routn heal|4-part fx surg neck of unsp humer, subs for fx w routn heal +C2841016|T037|AB|S42.249G|ICD10CM|4-part fx surg neck of unsp humer, subs for fx w delay heal|4-part fx surg neck of unsp humer, subs for fx w delay heal +C2841017|T037|AB|S42.249K|ICD10CM|4-part fx surg neck of unsp humerus, subs for fx w nonunion|4-part fx surg neck of unsp humerus, subs for fx w nonunion +C2841018|T037|AB|S42.249P|ICD10CM|4-part fx surg neck of unsp humerus, subs for fx w malunion|4-part fx surg neck of unsp humerus, subs for fx w malunion +C2841019|T037|AB|S42.249S|ICD10CM|4-part fracture of surgical neck of unsp humerus, sequela|4-part fracture of surgical neck of unsp humerus, sequela +C2841019|T037|PT|S42.249S|ICD10CM|4-part fracture of surgical neck of unspecified humerus, sequela|4-part fracture of surgical neck of unspecified humerus, sequela +C0281848|T037|HT|S42.25|ICD10CM|Fracture of greater tuberosity of humerus|Fracture of greater tuberosity of humerus +C0281848|T037|AB|S42.25|ICD10CM|Fracture of greater tuberosity of humerus|Fracture of greater tuberosity of humerus +C2841020|T037|AB|S42.251|ICD10CM|Displaced fracture of greater tuberosity of right humerus|Displaced fracture of greater tuberosity of right humerus +C2841020|T037|HT|S42.251|ICD10CM|Displaced fracture of greater tuberosity of right humerus|Displaced fracture of greater tuberosity of right humerus +C2841021|T037|AB|S42.251A|ICD10CM|Disp fx of greater tuberosity of right humerus, init|Disp fx of greater tuberosity of right humerus, init +C2841021|T037|PT|S42.251A|ICD10CM|Displaced fracture of greater tuberosity of right humerus, initial encounter for closed fracture|Displaced fracture of greater tuberosity of right humerus, initial encounter for closed fracture +C2841022|T037|AB|S42.251B|ICD10CM|Disp fx of greater tuberosity of r humerus, init for opn fx|Disp fx of greater tuberosity of r humerus, init for opn fx +C2841022|T037|PT|S42.251B|ICD10CM|Displaced fracture of greater tuberosity of right humerus, initial encounter for open fracture|Displaced fracture of greater tuberosity of right humerus, initial encounter for open fracture +C2841023|T037|AB|S42.251D|ICD10CM|Disp fx of greater tuberosity of r humer, 7thD|Disp fx of greater tuberosity of r humer, 7thD +C2841024|T037|AB|S42.251G|ICD10CM|Disp fx of greater tuberosity of r humer, 7thG|Disp fx of greater tuberosity of r humer, 7thG +C2841025|T037|AB|S42.251K|ICD10CM|Disp fx of greater tuberosity of r humer, 7thK|Disp fx of greater tuberosity of r humer, 7thK +C2841026|T037|AB|S42.251P|ICD10CM|Disp fx of greater tuberosity of r humer, 7thP|Disp fx of greater tuberosity of r humer, 7thP +C2841027|T037|AB|S42.251S|ICD10CM|Disp fx of greater tuberosity of right humerus, sequela|Disp fx of greater tuberosity of right humerus, sequela +C2841027|T037|PT|S42.251S|ICD10CM|Displaced fracture of greater tuberosity of right humerus, sequela|Displaced fracture of greater tuberosity of right humerus, sequela +C2841028|T037|AB|S42.252|ICD10CM|Displaced fracture of greater tuberosity of left humerus|Displaced fracture of greater tuberosity of left humerus +C2841028|T037|HT|S42.252|ICD10CM|Displaced fracture of greater tuberosity of left humerus|Displaced fracture of greater tuberosity of left humerus +C2841029|T037|AB|S42.252A|ICD10CM|Disp fx of greater tuberosity of left humerus, init|Disp fx of greater tuberosity of left humerus, init +C2841029|T037|PT|S42.252A|ICD10CM|Displaced fracture of greater tuberosity of left humerus, initial encounter for closed fracture|Displaced fracture of greater tuberosity of left humerus, initial encounter for closed fracture +C2841030|T037|AB|S42.252B|ICD10CM|Disp fx of greater tuberosity of l humerus, init for opn fx|Disp fx of greater tuberosity of l humerus, init for opn fx +C2841030|T037|PT|S42.252B|ICD10CM|Displaced fracture of greater tuberosity of left humerus, initial encounter for open fracture|Displaced fracture of greater tuberosity of left humerus, initial encounter for open fracture +C2841031|T037|AB|S42.252D|ICD10CM|Disp fx of greater tuberosity of l humer, 7thD|Disp fx of greater tuberosity of l humer, 7thD +C2841032|T037|AB|S42.252G|ICD10CM|Disp fx of greater tuberosity of l humer, 7thG|Disp fx of greater tuberosity of l humer, 7thG +C2841033|T037|AB|S42.252K|ICD10CM|Disp fx of greater tuberosity of l humer, 7thK|Disp fx of greater tuberosity of l humer, 7thK +C2841034|T037|AB|S42.252P|ICD10CM|Disp fx of greater tuberosity of l humer, 7thP|Disp fx of greater tuberosity of l humer, 7thP +C2841035|T037|AB|S42.252S|ICD10CM|Disp fx of greater tuberosity of left humerus, sequela|Disp fx of greater tuberosity of left humerus, sequela +C2841035|T037|PT|S42.252S|ICD10CM|Displaced fracture of greater tuberosity of left humerus, sequela|Displaced fracture of greater tuberosity of left humerus, sequela +C2841036|T037|AB|S42.253|ICD10CM|Disp fx of greater tuberosity of unspecified humerus|Disp fx of greater tuberosity of unspecified humerus +C2841036|T037|HT|S42.253|ICD10CM|Displaced fracture of greater tuberosity of unspecified humerus|Displaced fracture of greater tuberosity of unspecified humerus +C2841037|T037|AB|S42.253A|ICD10CM|Disp fx of greater tuberosity of unsp humerus, init|Disp fx of greater tuberosity of unsp humerus, init +C2841038|T037|AB|S42.253B|ICD10CM|Disp fx of greater tuberosity of unsp humer, init for opn fx|Disp fx of greater tuberosity of unsp humer, init for opn fx +C2841038|T037|PT|S42.253B|ICD10CM|Displaced fracture of greater tuberosity of unspecified humerus, initial encounter for open fracture|Displaced fracture of greater tuberosity of unspecified humerus, initial encounter for open fracture +C2841039|T037|AB|S42.253D|ICD10CM|Disp fx of greater tuberosity of unsp humer, 7thD|Disp fx of greater tuberosity of unsp humer, 7thD +C2841040|T037|AB|S42.253G|ICD10CM|Disp fx of greater tuberosity of unsp humer, 7thG|Disp fx of greater tuberosity of unsp humer, 7thG +C2841041|T037|AB|S42.253K|ICD10CM|Disp fx of greater tuberosity of unsp humer, 7thK|Disp fx of greater tuberosity of unsp humer, 7thK +C2841042|T037|AB|S42.253P|ICD10CM|Disp fx of greater tuberosity of unsp humer, 7thP|Disp fx of greater tuberosity of unsp humer, 7thP +C2841043|T037|AB|S42.253S|ICD10CM|Disp fx of greater tuberosity of unsp humerus, sequela|Disp fx of greater tuberosity of unsp humerus, sequela +C2841043|T037|PT|S42.253S|ICD10CM|Displaced fracture of greater tuberosity of unspecified humerus, sequela|Displaced fracture of greater tuberosity of unspecified humerus, sequela +C2841044|T037|AB|S42.254|ICD10CM|Nondisplaced fracture of greater tuberosity of right humerus|Nondisplaced fracture of greater tuberosity of right humerus +C2841044|T037|HT|S42.254|ICD10CM|Nondisplaced fracture of greater tuberosity of right humerus|Nondisplaced fracture of greater tuberosity of right humerus +C2841045|T037|AB|S42.254A|ICD10CM|Nondisp fx of greater tuberosity of right humerus, init|Nondisp fx of greater tuberosity of right humerus, init +C2841045|T037|PT|S42.254A|ICD10CM|Nondisplaced fracture of greater tuberosity of right humerus, initial encounter for closed fracture|Nondisplaced fracture of greater tuberosity of right humerus, initial encounter for closed fracture +C2841046|T037|AB|S42.254B|ICD10CM|Nondisp fx of greater tuberosity of r humer, init for opn fx|Nondisp fx of greater tuberosity of r humer, init for opn fx +C2841046|T037|PT|S42.254B|ICD10CM|Nondisplaced fracture of greater tuberosity of right humerus, initial encounter for open fracture|Nondisplaced fracture of greater tuberosity of right humerus, initial encounter for open fracture +C2841047|T037|AB|S42.254D|ICD10CM|Nondisp fx of greater tuberosity of r humer, 7thD|Nondisp fx of greater tuberosity of r humer, 7thD +C2841048|T037|AB|S42.254G|ICD10CM|Nondisp fx of greater tuberosity of r humer, 7thG|Nondisp fx of greater tuberosity of r humer, 7thG +C2841049|T037|AB|S42.254K|ICD10CM|Nondisp fx of greater tuberosity of r humer, 7thK|Nondisp fx of greater tuberosity of r humer, 7thK +C2841050|T037|AB|S42.254P|ICD10CM|Nondisp fx of greater tuberosity of r humer, 7thP|Nondisp fx of greater tuberosity of r humer, 7thP +C2841051|T037|AB|S42.254S|ICD10CM|Nondisp fx of greater tuberosity of right humerus, sequela|Nondisp fx of greater tuberosity of right humerus, sequela +C2841051|T037|PT|S42.254S|ICD10CM|Nondisplaced fracture of greater tuberosity of right humerus, sequela|Nondisplaced fracture of greater tuberosity of right humerus, sequela +C2841052|T037|AB|S42.255|ICD10CM|Nondisplaced fracture of greater tuberosity of left humerus|Nondisplaced fracture of greater tuberosity of left humerus +C2841052|T037|HT|S42.255|ICD10CM|Nondisplaced fracture of greater tuberosity of left humerus|Nondisplaced fracture of greater tuberosity of left humerus +C2841053|T037|AB|S42.255A|ICD10CM|Nondisp fx of greater tuberosity of left humerus, init|Nondisp fx of greater tuberosity of left humerus, init +C2841053|T037|PT|S42.255A|ICD10CM|Nondisplaced fracture of greater tuberosity of left humerus, initial encounter for closed fracture|Nondisplaced fracture of greater tuberosity of left humerus, initial encounter for closed fracture +C2841054|T037|AB|S42.255B|ICD10CM|Nondisp fx of greater tuberosity of l humer, init for opn fx|Nondisp fx of greater tuberosity of l humer, init for opn fx +C2841054|T037|PT|S42.255B|ICD10CM|Nondisplaced fracture of greater tuberosity of left humerus, initial encounter for open fracture|Nondisplaced fracture of greater tuberosity of left humerus, initial encounter for open fracture +C2841055|T037|AB|S42.255D|ICD10CM|Nondisp fx of greater tuberosity of l humer, 7thD|Nondisp fx of greater tuberosity of l humer, 7thD +C2841056|T037|AB|S42.255G|ICD10CM|Nondisp fx of greater tuberosity of l humer, 7thG|Nondisp fx of greater tuberosity of l humer, 7thG +C2841057|T037|AB|S42.255K|ICD10CM|Nondisp fx of greater tuberosity of l humer, 7thK|Nondisp fx of greater tuberosity of l humer, 7thK +C2841058|T037|AB|S42.255P|ICD10CM|Nondisp fx of greater tuberosity of l humer, 7thP|Nondisp fx of greater tuberosity of l humer, 7thP +C2841059|T037|AB|S42.255S|ICD10CM|Nondisp fx of greater tuberosity of left humerus, sequela|Nondisp fx of greater tuberosity of left humerus, sequela +C2841059|T037|PT|S42.255S|ICD10CM|Nondisplaced fracture of greater tuberosity of left humerus, sequela|Nondisplaced fracture of greater tuberosity of left humerus, sequela +C2841060|T037|AB|S42.256|ICD10CM|Nondisp fx of greater tuberosity of unspecified humerus|Nondisp fx of greater tuberosity of unspecified humerus +C2841060|T037|HT|S42.256|ICD10CM|Nondisplaced fracture of greater tuberosity of unspecified humerus|Nondisplaced fracture of greater tuberosity of unspecified humerus +C2841061|T037|AB|S42.256A|ICD10CM|Nondisp fx of greater tuberosity of unsp humerus, init|Nondisp fx of greater tuberosity of unsp humerus, init +C2841062|T037|AB|S42.256B|ICD10CM|Nondisp fx of greater tuberosity of unsp humer, 7thB|Nondisp fx of greater tuberosity of unsp humer, 7thB +C2841063|T037|AB|S42.256D|ICD10CM|Nondisp fx of greater tuberosity of unsp humer, 7thD|Nondisp fx of greater tuberosity of unsp humer, 7thD +C2841064|T037|AB|S42.256G|ICD10CM|Nondisp fx of greater tuberosity of unsp humer, 7thG|Nondisp fx of greater tuberosity of unsp humer, 7thG +C2841065|T037|AB|S42.256K|ICD10CM|Nondisp fx of greater tuberosity of unsp humer, 7thK|Nondisp fx of greater tuberosity of unsp humer, 7thK +C2841066|T037|AB|S42.256P|ICD10CM|Nondisp fx of greater tuberosity of unsp humer, 7thP|Nondisp fx of greater tuberosity of unsp humer, 7thP +C2841067|T037|AB|S42.256S|ICD10CM|Nondisp fx of greater tuberosity of unsp humerus, sequela|Nondisp fx of greater tuberosity of unsp humerus, sequela +C2841067|T037|PT|S42.256S|ICD10CM|Nondisplaced fracture of greater tuberosity of unspecified humerus, sequela|Nondisplaced fracture of greater tuberosity of unspecified humerus, sequela +C2841068|T037|HT|S42.26|ICD10CM|Fracture of lesser tuberosity of humerus|Fracture of lesser tuberosity of humerus +C2841068|T037|AB|S42.26|ICD10CM|Fracture of lesser tuberosity of humerus|Fracture of lesser tuberosity of humerus +C2841069|T037|AB|S42.261|ICD10CM|Displaced fracture of lesser tuberosity of right humerus|Displaced fracture of lesser tuberosity of right humerus +C2841069|T037|HT|S42.261|ICD10CM|Displaced fracture of lesser tuberosity of right humerus|Displaced fracture of lesser tuberosity of right humerus +C2841070|T037|AB|S42.261A|ICD10CM|Disp fx of lesser tuberosity of right humerus, init|Disp fx of lesser tuberosity of right humerus, init +C2841070|T037|PT|S42.261A|ICD10CM|Displaced fracture of lesser tuberosity of right humerus, initial encounter for closed fracture|Displaced fracture of lesser tuberosity of right humerus, initial encounter for closed fracture +C2841071|T037|AB|S42.261B|ICD10CM|Disp fx of lesser tuberosity of r humerus, init for opn fx|Disp fx of lesser tuberosity of r humerus, init for opn fx +C2841071|T037|PT|S42.261B|ICD10CM|Displaced fracture of lesser tuberosity of right humerus, initial encounter for open fracture|Displaced fracture of lesser tuberosity of right humerus, initial encounter for open fracture +C2841072|T037|AB|S42.261D|ICD10CM|Disp fx of less tuberosity of r humer, 7thD|Disp fx of less tuberosity of r humer, 7thD +C2841073|T037|AB|S42.261G|ICD10CM|Disp fx of less tuberosity of r humer, 7thG|Disp fx of less tuberosity of r humer, 7thG +C2841074|T037|AB|S42.261K|ICD10CM|Disp fx of less tuberosity of r humer, 7thK|Disp fx of less tuberosity of r humer, 7thK +C2841075|T037|AB|S42.261P|ICD10CM|Disp fx of less tuberosity of r humer, 7thP|Disp fx of less tuberosity of r humer, 7thP +C2841076|T037|AB|S42.261S|ICD10CM|Disp fx of lesser tuberosity of right humerus, sequela|Disp fx of lesser tuberosity of right humerus, sequela +C2841076|T037|PT|S42.261S|ICD10CM|Displaced fracture of lesser tuberosity of right humerus, sequela|Displaced fracture of lesser tuberosity of right humerus, sequela +C2841077|T037|AB|S42.262|ICD10CM|Displaced fracture of lesser tuberosity of left humerus|Displaced fracture of lesser tuberosity of left humerus +C2841077|T037|HT|S42.262|ICD10CM|Displaced fracture of lesser tuberosity of left humerus|Displaced fracture of lesser tuberosity of left humerus +C2841078|T037|AB|S42.262A|ICD10CM|Disp fx of lesser tuberosity of left humerus, init|Disp fx of lesser tuberosity of left humerus, init +C2841078|T037|PT|S42.262A|ICD10CM|Displaced fracture of lesser tuberosity of left humerus, initial encounter for closed fracture|Displaced fracture of lesser tuberosity of left humerus, initial encounter for closed fracture +C2841079|T037|AB|S42.262B|ICD10CM|Disp fx of lesser tuberosity of l humerus, init for opn fx|Disp fx of lesser tuberosity of l humerus, init for opn fx +C2841079|T037|PT|S42.262B|ICD10CM|Displaced fracture of lesser tuberosity of left humerus, initial encounter for open fracture|Displaced fracture of lesser tuberosity of left humerus, initial encounter for open fracture +C2841080|T037|AB|S42.262D|ICD10CM|Disp fx of less tuberosity of l humer, 7thD|Disp fx of less tuberosity of l humer, 7thD +C2841081|T037|AB|S42.262G|ICD10CM|Disp fx of less tuberosity of l humer, 7thG|Disp fx of less tuberosity of l humer, 7thG +C2841082|T037|AB|S42.262K|ICD10CM|Disp fx of less tuberosity of l humer, 7thK|Disp fx of less tuberosity of l humer, 7thK +C2841083|T037|AB|S42.262P|ICD10CM|Disp fx of less tuberosity of l humer, 7thP|Disp fx of less tuberosity of l humer, 7thP +C2841084|T037|AB|S42.262S|ICD10CM|Disp fx of lesser tuberosity of left humerus, sequela|Disp fx of lesser tuberosity of left humerus, sequela +C2841084|T037|PT|S42.262S|ICD10CM|Displaced fracture of lesser tuberosity of left humerus, sequela|Displaced fracture of lesser tuberosity of left humerus, sequela +C2841085|T037|AB|S42.263|ICD10CM|Disp fx of lesser tuberosity of unspecified humerus|Disp fx of lesser tuberosity of unspecified humerus +C2841085|T037|HT|S42.263|ICD10CM|Displaced fracture of lesser tuberosity of unspecified humerus|Displaced fracture of lesser tuberosity of unspecified humerus +C2841086|T037|AB|S42.263A|ICD10CM|Disp fx of lesser tuberosity of unsp humerus, init|Disp fx of lesser tuberosity of unsp humerus, init +C2841087|T037|AB|S42.263B|ICD10CM|Disp fx of lesser tuberosity of unsp humer, init for opn fx|Disp fx of lesser tuberosity of unsp humer, init for opn fx +C2841087|T037|PT|S42.263B|ICD10CM|Displaced fracture of lesser tuberosity of unspecified humerus, initial encounter for open fracture|Displaced fracture of lesser tuberosity of unspecified humerus, initial encounter for open fracture +C2841088|T037|AB|S42.263D|ICD10CM|Disp fx of less tuberosity of unsp humer, 7thD|Disp fx of less tuberosity of unsp humer, 7thD +C2841089|T037|AB|S42.263G|ICD10CM|Disp fx of less tuberosity of unsp humer, 7thG|Disp fx of less tuberosity of unsp humer, 7thG +C2841090|T037|AB|S42.263K|ICD10CM|Disp fx of less tuberosity of unsp humer, 7thK|Disp fx of less tuberosity of unsp humer, 7thK +C2841091|T037|AB|S42.263P|ICD10CM|Disp fx of less tuberosity of unsp humer, 7thP|Disp fx of less tuberosity of unsp humer, 7thP +C2841092|T037|AB|S42.263S|ICD10CM|Disp fx of lesser tuberosity of unspecified humerus, sequela|Disp fx of lesser tuberosity of unspecified humerus, sequela +C2841092|T037|PT|S42.263S|ICD10CM|Displaced fracture of lesser tuberosity of unspecified humerus, sequela|Displaced fracture of lesser tuberosity of unspecified humerus, sequela +C2841093|T037|AB|S42.264|ICD10CM|Nondisplaced fracture of lesser tuberosity of right humerus|Nondisplaced fracture of lesser tuberosity of right humerus +C2841093|T037|HT|S42.264|ICD10CM|Nondisplaced fracture of lesser tuberosity of right humerus|Nondisplaced fracture of lesser tuberosity of right humerus +C2841094|T037|AB|S42.264A|ICD10CM|Nondisp fx of lesser tuberosity of right humerus, init|Nondisp fx of lesser tuberosity of right humerus, init +C2841094|T037|PT|S42.264A|ICD10CM|Nondisplaced fracture of lesser tuberosity of right humerus, initial encounter for closed fracture|Nondisplaced fracture of lesser tuberosity of right humerus, initial encounter for closed fracture +C2841095|T037|AB|S42.264B|ICD10CM|Nondisp fx of lesser tuberosity of r humer, init for opn fx|Nondisp fx of lesser tuberosity of r humer, init for opn fx +C2841095|T037|PT|S42.264B|ICD10CM|Nondisplaced fracture of lesser tuberosity of right humerus, initial encounter for open fracture|Nondisplaced fracture of lesser tuberosity of right humerus, initial encounter for open fracture +C2841096|T037|AB|S42.264D|ICD10CM|Nondisp fx of less tuberosity of r humer, 7thD|Nondisp fx of less tuberosity of r humer, 7thD +C2841097|T037|AB|S42.264G|ICD10CM|Nondisp fx of less tuberosity of r humer, 7thG|Nondisp fx of less tuberosity of r humer, 7thG +C2841098|T037|AB|S42.264K|ICD10CM|Nondisp fx of less tuberosity of r humer, 7thK|Nondisp fx of less tuberosity of r humer, 7thK +C2841099|T037|AB|S42.264P|ICD10CM|Nondisp fx of less tuberosity of r humer, 7thP|Nondisp fx of less tuberosity of r humer, 7thP +C2841100|T037|AB|S42.264S|ICD10CM|Nondisp fx of lesser tuberosity of right humerus, sequela|Nondisp fx of lesser tuberosity of right humerus, sequela +C2841100|T037|PT|S42.264S|ICD10CM|Nondisplaced fracture of lesser tuberosity of right humerus, sequela|Nondisplaced fracture of lesser tuberosity of right humerus, sequela +C2841101|T037|AB|S42.265|ICD10CM|Nondisplaced fracture of lesser tuberosity of left humerus|Nondisplaced fracture of lesser tuberosity of left humerus +C2841101|T037|HT|S42.265|ICD10CM|Nondisplaced fracture of lesser tuberosity of left humerus|Nondisplaced fracture of lesser tuberosity of left humerus +C2841102|T037|AB|S42.265A|ICD10CM|Nondisp fx of lesser tuberosity of left humerus, init|Nondisp fx of lesser tuberosity of left humerus, init +C2841102|T037|PT|S42.265A|ICD10CM|Nondisplaced fracture of lesser tuberosity of left humerus, initial encounter for closed fracture|Nondisplaced fracture of lesser tuberosity of left humerus, initial encounter for closed fracture +C2841103|T037|AB|S42.265B|ICD10CM|Nondisp fx of lesser tuberosity of l humer, init for opn fx|Nondisp fx of lesser tuberosity of l humer, init for opn fx +C2841103|T037|PT|S42.265B|ICD10CM|Nondisplaced fracture of lesser tuberosity of left humerus, initial encounter for open fracture|Nondisplaced fracture of lesser tuberosity of left humerus, initial encounter for open fracture +C2841104|T037|AB|S42.265D|ICD10CM|Nondisp fx of less tuberosity of l humer, 7thD|Nondisp fx of less tuberosity of l humer, 7thD +C2841105|T037|AB|S42.265G|ICD10CM|Nondisp fx of less tuberosity of l humer, 7thG|Nondisp fx of less tuberosity of l humer, 7thG +C2841106|T037|AB|S42.265K|ICD10CM|Nondisp fx of less tuberosity of l humer, 7thK|Nondisp fx of less tuberosity of l humer, 7thK +C2841107|T037|AB|S42.265P|ICD10CM|Nondisp fx of less tuberosity of l humer, 7thP|Nondisp fx of less tuberosity of l humer, 7thP +C2841108|T037|AB|S42.265S|ICD10CM|Nondisp fx of lesser tuberosity of left humerus, sequela|Nondisp fx of lesser tuberosity of left humerus, sequela +C2841108|T037|PT|S42.265S|ICD10CM|Nondisplaced fracture of lesser tuberosity of left humerus, sequela|Nondisplaced fracture of lesser tuberosity of left humerus, sequela +C2841109|T037|AB|S42.266|ICD10CM|Nondisp fx of lesser tuberosity of unspecified humerus|Nondisp fx of lesser tuberosity of unspecified humerus +C2841109|T037|HT|S42.266|ICD10CM|Nondisplaced fracture of lesser tuberosity of unspecified humerus|Nondisplaced fracture of lesser tuberosity of unspecified humerus +C2841110|T037|AB|S42.266A|ICD10CM|Nondisp fx of lesser tuberosity of unsp humerus, init|Nondisp fx of lesser tuberosity of unsp humerus, init +C2841111|T037|AB|S42.266B|ICD10CM|Nondisp fx of less tuberosity of unsp humer, init for opn fx|Nondisp fx of less tuberosity of unsp humer, init for opn fx +C2841112|T037|AB|S42.266D|ICD10CM|Nondisp fx of less tuberosity of unsp humer, 7thD|Nondisp fx of less tuberosity of unsp humer, 7thD +C2841113|T037|AB|S42.266G|ICD10CM|Nondisp fx of less tuberosity of unsp humer, 7thG|Nondisp fx of less tuberosity of unsp humer, 7thG +C2841114|T037|AB|S42.266K|ICD10CM|Nondisp fx of less tuberosity of unsp humer, 7thK|Nondisp fx of less tuberosity of unsp humer, 7thK +C2841115|T037|AB|S42.266P|ICD10CM|Nondisp fx of less tuberosity of unsp humer, 7thP|Nondisp fx of less tuberosity of unsp humer, 7thP +C2841116|T037|AB|S42.266S|ICD10CM|Nondisp fx of lesser tuberosity of unsp humerus, sequela|Nondisp fx of lesser tuberosity of unsp humerus, sequela +C2841116|T037|PT|S42.266S|ICD10CM|Nondisplaced fracture of lesser tuberosity of unspecified humerus, sequela|Nondisplaced fracture of lesser tuberosity of unspecified humerus, sequela +C2841117|T037|AB|S42.27|ICD10CM|Torus fracture of upper end of humerus|Torus fracture of upper end of humerus +C2841117|T037|HT|S42.27|ICD10CM|Torus fracture of upper end of humerus|Torus fracture of upper end of humerus +C2841118|T037|AB|S42.271|ICD10CM|Torus fracture of upper end of right humerus|Torus fracture of upper end of right humerus +C2841118|T037|HT|S42.271|ICD10CM|Torus fracture of upper end of right humerus|Torus fracture of upper end of right humerus +C2841119|T037|AB|S42.271A|ICD10CM|Torus fracture of upper end of right humerus, init|Torus fracture of upper end of right humerus, init +C2841119|T037|PT|S42.271A|ICD10CM|Torus fracture of upper end of right humerus, initial encounter for closed fracture|Torus fracture of upper end of right humerus, initial encounter for closed fracture +C2841120|T037|PT|S42.271D|ICD10CM|Torus fracture of upper end of right humerus, subsequent encounter for fracture with routine healing|Torus fracture of upper end of right humerus, subsequent encounter for fracture with routine healing +C2841120|T037|AB|S42.271D|ICD10CM|Torus fx upper end of r humerus, subs for fx w routn heal|Torus fx upper end of r humerus, subs for fx w routn heal +C2841121|T037|PT|S42.271G|ICD10CM|Torus fracture of upper end of right humerus, subsequent encounter for fracture with delayed healing|Torus fracture of upper end of right humerus, subsequent encounter for fracture with delayed healing +C2841121|T037|AB|S42.271G|ICD10CM|Torus fx upper end of r humerus, subs for fx w delay heal|Torus fx upper end of r humerus, subs for fx w delay heal +C2841122|T037|PT|S42.271K|ICD10CM|Torus fracture of upper end of right humerus, subsequent encounter for fracture with nonunion|Torus fracture of upper end of right humerus, subsequent encounter for fracture with nonunion +C2841122|T037|AB|S42.271K|ICD10CM|Torus fx upper end of r humerus, subs for fx w nonunion|Torus fx upper end of r humerus, subs for fx w nonunion +C2841123|T037|PT|S42.271P|ICD10CM|Torus fracture of upper end of right humerus, subsequent encounter for fracture with malunion|Torus fracture of upper end of right humerus, subsequent encounter for fracture with malunion +C2841123|T037|AB|S42.271P|ICD10CM|Torus fx upper end of r humerus, subs for fx w malunion|Torus fx upper end of r humerus, subs for fx w malunion +C2841124|T037|PT|S42.271S|ICD10CM|Torus fracture of upper end of right humerus, sequela|Torus fracture of upper end of right humerus, sequela +C2841124|T037|AB|S42.271S|ICD10CM|Torus fracture of upper end of right humerus, sequela|Torus fracture of upper end of right humerus, sequela +C2841125|T037|AB|S42.272|ICD10CM|Torus fracture of upper end of left humerus|Torus fracture of upper end of left humerus +C2841125|T037|HT|S42.272|ICD10CM|Torus fracture of upper end of left humerus|Torus fracture of upper end of left humerus +C2841126|T037|AB|S42.272A|ICD10CM|Torus fracture of upper end of left humerus, init|Torus fracture of upper end of left humerus, init +C2841126|T037|PT|S42.272A|ICD10CM|Torus fracture of upper end of left humerus, initial encounter for closed fracture|Torus fracture of upper end of left humerus, initial encounter for closed fracture +C2841127|T037|PT|S42.272D|ICD10CM|Torus fracture of upper end of left humerus, subsequent encounter for fracture with routine healing|Torus fracture of upper end of left humerus, subsequent encounter for fracture with routine healing +C2841127|T037|AB|S42.272D|ICD10CM|Torus fx upper end of l humerus, subs for fx w routn heal|Torus fx upper end of l humerus, subs for fx w routn heal +C2841128|T037|PT|S42.272G|ICD10CM|Torus fracture of upper end of left humerus, subsequent encounter for fracture with delayed healing|Torus fracture of upper end of left humerus, subsequent encounter for fracture with delayed healing +C2841128|T037|AB|S42.272G|ICD10CM|Torus fx upper end of l humerus, subs for fx w delay heal|Torus fx upper end of l humerus, subs for fx w delay heal +C2841129|T037|PT|S42.272K|ICD10CM|Torus fracture of upper end of left humerus, subsequent encounter for fracture with nonunion|Torus fracture of upper end of left humerus, subsequent encounter for fracture with nonunion +C2841129|T037|AB|S42.272K|ICD10CM|Torus fx upper end of l humerus, subs for fx w nonunion|Torus fx upper end of l humerus, subs for fx w nonunion +C2841130|T037|PT|S42.272P|ICD10CM|Torus fracture of upper end of left humerus, subsequent encounter for fracture with malunion|Torus fracture of upper end of left humerus, subsequent encounter for fracture with malunion +C2841130|T037|AB|S42.272P|ICD10CM|Torus fx upper end of l humerus, subs for fx w malunion|Torus fx upper end of l humerus, subs for fx w malunion +C2841131|T037|PT|S42.272S|ICD10CM|Torus fracture of upper end of left humerus, sequela|Torus fracture of upper end of left humerus, sequela +C2841131|T037|AB|S42.272S|ICD10CM|Torus fracture of upper end of left humerus, sequela|Torus fracture of upper end of left humerus, sequela +C2841132|T037|AB|S42.279|ICD10CM|Torus fracture of upper end of unspecified humerus|Torus fracture of upper end of unspecified humerus +C2841132|T037|HT|S42.279|ICD10CM|Torus fracture of upper end of unspecified humerus|Torus fracture of upper end of unspecified humerus +C2841133|T037|AB|S42.279A|ICD10CM|Torus fracture of upper end of unsp humerus, init|Torus fracture of upper end of unsp humerus, init +C2841133|T037|PT|S42.279A|ICD10CM|Torus fracture of upper end of unspecified humerus, initial encounter for closed fracture|Torus fracture of upper end of unspecified humerus, initial encounter for closed fracture +C2841134|T037|AB|S42.279D|ICD10CM|Torus fx upper end of unsp humerus, subs for fx w routn heal|Torus fx upper end of unsp humerus, subs for fx w routn heal +C2841135|T037|AB|S42.279G|ICD10CM|Torus fx upper end of unsp humerus, subs for fx w delay heal|Torus fx upper end of unsp humerus, subs for fx w delay heal +C2841136|T037|PT|S42.279K|ICD10CM|Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with nonunion|Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with nonunion +C2841136|T037|AB|S42.279K|ICD10CM|Torus fx upper end of unsp humerus, subs for fx w nonunion|Torus fx upper end of unsp humerus, subs for fx w nonunion +C2841137|T037|PT|S42.279P|ICD10CM|Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with malunion|Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with malunion +C2841137|T037|AB|S42.279P|ICD10CM|Torus fx upper end of unsp humerus, subs for fx w malunion|Torus fx upper end of unsp humerus, subs for fx w malunion +C2841138|T037|PT|S42.279S|ICD10CM|Torus fracture of upper end of unspecified humerus, sequela|Torus fracture of upper end of unspecified humerus, sequela +C2841138|T037|AB|S42.279S|ICD10CM|Torus fracture of upper end of unspecified humerus, sequela|Torus fracture of upper end of unspecified humerus, sequela +C0281847|T037|ET|S42.29|ICD10CM|Fracture of anatomical neck of humerus|Fracture of anatomical neck of humerus +C2841139|T037|ET|S42.29|ICD10CM|Fracture of articular head of humerus|Fracture of articular head of humerus +C2841140|T037|AB|S42.29|ICD10CM|Other fracture of upper end of humerus|Other fracture of upper end of humerus +C2841140|T037|HT|S42.29|ICD10CM|Other fracture of upper end of humerus|Other fracture of upper end of humerus +C2841141|T037|AB|S42.291|ICD10CM|Other displaced fracture of upper end of right humerus|Other displaced fracture of upper end of right humerus +C2841141|T037|HT|S42.291|ICD10CM|Other displaced fracture of upper end of right humerus|Other displaced fracture of upper end of right humerus +C2841142|T037|AB|S42.291A|ICD10CM|Oth disp fx of upper end of right humerus, init for clos fx|Oth disp fx of upper end of right humerus, init for clos fx +C2841142|T037|PT|S42.291A|ICD10CM|Other displaced fracture of upper end of right humerus, initial encounter for closed fracture|Other displaced fracture of upper end of right humerus, initial encounter for closed fracture +C2841143|T037|AB|S42.291B|ICD10CM|Oth disp fx of upper end of right humerus, init for opn fx|Oth disp fx of upper end of right humerus, init for opn fx +C2841143|T037|PT|S42.291B|ICD10CM|Other displaced fracture of upper end of right humerus, initial encounter for open fracture|Other displaced fracture of upper end of right humerus, initial encounter for open fracture +C2841144|T037|AB|S42.291D|ICD10CM|Oth disp fx of upper end r humer, subs for fx w routn heal|Oth disp fx of upper end r humer, subs for fx w routn heal +C2841145|T037|AB|S42.291G|ICD10CM|Oth disp fx of upper end r humer, subs for fx w delay heal|Oth disp fx of upper end r humer, subs for fx w delay heal +C2841146|T037|AB|S42.291K|ICD10CM|Oth disp fx of upper end of r humer, subs for fx w nonunion|Oth disp fx of upper end of r humer, subs for fx w nonunion +C2841147|T037|AB|S42.291P|ICD10CM|Oth disp fx of upper end of r humer, subs for fx w malunion|Oth disp fx of upper end of r humer, subs for fx w malunion +C2841148|T037|AB|S42.291S|ICD10CM|Other disp fx of upper end of right humerus, sequela|Other disp fx of upper end of right humerus, sequela +C2841148|T037|PT|S42.291S|ICD10CM|Other displaced fracture of upper end of right humerus, sequela|Other displaced fracture of upper end of right humerus, sequela +C2841149|T037|AB|S42.292|ICD10CM|Other displaced fracture of upper end of left humerus|Other displaced fracture of upper end of left humerus +C2841149|T037|HT|S42.292|ICD10CM|Other displaced fracture of upper end of left humerus|Other displaced fracture of upper end of left humerus +C2841150|T037|AB|S42.292A|ICD10CM|Oth disp fx of upper end of left humerus, init for clos fx|Oth disp fx of upper end of left humerus, init for clos fx +C2841150|T037|PT|S42.292A|ICD10CM|Other displaced fracture of upper end of left humerus, initial encounter for closed fracture|Other displaced fracture of upper end of left humerus, initial encounter for closed fracture +C2841151|T037|AB|S42.292B|ICD10CM|Oth disp fx of upper end of left humerus, init for opn fx|Oth disp fx of upper end of left humerus, init for opn fx +C2841151|T037|PT|S42.292B|ICD10CM|Other displaced fracture of upper end of left humerus, initial encounter for open fracture|Other displaced fracture of upper end of left humerus, initial encounter for open fracture +C2841152|T037|AB|S42.292D|ICD10CM|Oth disp fx of upper end l humer, subs for fx w routn heal|Oth disp fx of upper end l humer, subs for fx w routn heal +C2841153|T037|AB|S42.292G|ICD10CM|Oth disp fx of upper end l humer, subs for fx w delay heal|Oth disp fx of upper end l humer, subs for fx w delay heal +C2841154|T037|AB|S42.292K|ICD10CM|Oth disp fx of upper end of l humer, subs for fx w nonunion|Oth disp fx of upper end of l humer, subs for fx w nonunion +C2841155|T037|AB|S42.292P|ICD10CM|Oth disp fx of upper end of l humer, subs for fx w malunion|Oth disp fx of upper end of l humer, subs for fx w malunion +C2841156|T037|AB|S42.292S|ICD10CM|Other disp fx of upper end of left humerus, sequela|Other disp fx of upper end of left humerus, sequela +C2841156|T037|PT|S42.292S|ICD10CM|Other displaced fracture of upper end of left humerus, sequela|Other displaced fracture of upper end of left humerus, sequela +C2841157|T037|AB|S42.293|ICD10CM|Other displaced fracture of upper end of unspecified humerus|Other displaced fracture of upper end of unspecified humerus +C2841157|T037|HT|S42.293|ICD10CM|Other displaced fracture of upper end of unspecified humerus|Other displaced fracture of upper end of unspecified humerus +C2841158|T037|AB|S42.293A|ICD10CM|Oth disp fx of upper end of unsp humerus, init for clos fx|Oth disp fx of upper end of unsp humerus, init for clos fx +C2841158|T037|PT|S42.293A|ICD10CM|Other displaced fracture of upper end of unspecified humerus, initial encounter for closed fracture|Other displaced fracture of upper end of unspecified humerus, initial encounter for closed fracture +C2841159|T037|AB|S42.293B|ICD10CM|Oth disp fx of upper end of unsp humerus, init for opn fx|Oth disp fx of upper end of unsp humerus, init for opn fx +C2841159|T037|PT|S42.293B|ICD10CM|Other displaced fracture of upper end of unspecified humerus, initial encounter for open fracture|Other displaced fracture of upper end of unspecified humerus, initial encounter for open fracture +C2841160|T037|AB|S42.293D|ICD10CM|Oth disp fx of upr end unsp humer, subs for fx w routn heal|Oth disp fx of upr end unsp humer, subs for fx w routn heal +C2841161|T037|AB|S42.293G|ICD10CM|Oth disp fx of upr end unsp humer, subs for fx w delay heal|Oth disp fx of upr end unsp humer, subs for fx w delay heal +C2841162|T037|AB|S42.293K|ICD10CM|Oth disp fx of upper end unsp humer, subs for fx w nonunion|Oth disp fx of upper end unsp humer, subs for fx w nonunion +C2841163|T037|AB|S42.293P|ICD10CM|Oth disp fx of upper end unsp humer, subs for fx w malunion|Oth disp fx of upper end unsp humer, subs for fx w malunion +C2841164|T037|AB|S42.293S|ICD10CM|Other disp fx of upper end of unspecified humerus, sequela|Other disp fx of upper end of unspecified humerus, sequela +C2841164|T037|PT|S42.293S|ICD10CM|Other displaced fracture of upper end of unspecified humerus, sequela|Other displaced fracture of upper end of unspecified humerus, sequela +C2841165|T037|AB|S42.294|ICD10CM|Other nondisplaced fracture of upper end of right humerus|Other nondisplaced fracture of upper end of right humerus +C2841165|T037|HT|S42.294|ICD10CM|Other nondisplaced fracture of upper end of right humerus|Other nondisplaced fracture of upper end of right humerus +C2841166|T037|AB|S42.294A|ICD10CM|Oth nondisp fx of upper end of right humerus, init|Oth nondisp fx of upper end of right humerus, init +C2841166|T037|PT|S42.294A|ICD10CM|Other nondisplaced fracture of upper end of right humerus, initial encounter for closed fracture|Other nondisplaced fracture of upper end of right humerus, initial encounter for closed fracture +C2841167|T037|AB|S42.294B|ICD10CM|Oth nondisp fx of upper end of r humerus, init for opn fx|Oth nondisp fx of upper end of r humerus, init for opn fx +C2841167|T037|PT|S42.294B|ICD10CM|Other nondisplaced fracture of upper end of right humerus, initial encounter for open fracture|Other nondisplaced fracture of upper end of right humerus, initial encounter for open fracture +C2841168|T037|AB|S42.294D|ICD10CM|Oth nondisp fx of upr end r humer, subs for fx w routn heal|Oth nondisp fx of upr end r humer, subs for fx w routn heal +C2841169|T037|AB|S42.294G|ICD10CM|Oth nondisp fx of upr end r humer, subs for fx w delay heal|Oth nondisp fx of upr end r humer, subs for fx w delay heal +C2841170|T037|AB|S42.294K|ICD10CM|Oth nondisp fx of upper end r humer, subs for fx w nonunion|Oth nondisp fx of upper end r humer, subs for fx w nonunion +C2841171|T037|AB|S42.294P|ICD10CM|Oth nondisp fx of upper end r humer, subs for fx w malunion|Oth nondisp fx of upper end r humer, subs for fx w malunion +C2841172|T037|AB|S42.294S|ICD10CM|Other nondisp fx of upper end of right humerus, sequela|Other nondisp fx of upper end of right humerus, sequela +C2841172|T037|PT|S42.294S|ICD10CM|Other nondisplaced fracture of upper end of right humerus, sequela|Other nondisplaced fracture of upper end of right humerus, sequela +C2841173|T037|AB|S42.295|ICD10CM|Other nondisplaced fracture of upper end of left humerus|Other nondisplaced fracture of upper end of left humerus +C2841173|T037|HT|S42.295|ICD10CM|Other nondisplaced fracture of upper end of left humerus|Other nondisplaced fracture of upper end of left humerus +C2841174|T037|AB|S42.295A|ICD10CM|Oth nondisp fx of upper end of left humerus, init|Oth nondisp fx of upper end of left humerus, init +C2841174|T037|PT|S42.295A|ICD10CM|Other nondisplaced fracture of upper end of left humerus, initial encounter for closed fracture|Other nondisplaced fracture of upper end of left humerus, initial encounter for closed fracture +C2841175|T037|AB|S42.295B|ICD10CM|Oth nondisp fx of upper end of left humerus, init for opn fx|Oth nondisp fx of upper end of left humerus, init for opn fx +C2841175|T037|PT|S42.295B|ICD10CM|Other nondisplaced fracture of upper end of left humerus, initial encounter for open fracture|Other nondisplaced fracture of upper end of left humerus, initial encounter for open fracture +C2841176|T037|AB|S42.295D|ICD10CM|Oth nondisp fx of upr end l humer, subs for fx w routn heal|Oth nondisp fx of upr end l humer, subs for fx w routn heal +C2841177|T037|AB|S42.295G|ICD10CM|Oth nondisp fx of upr end l humer, subs for fx w delay heal|Oth nondisp fx of upr end l humer, subs for fx w delay heal +C2841178|T037|AB|S42.295K|ICD10CM|Oth nondisp fx of upper end l humer, subs for fx w nonunion|Oth nondisp fx of upper end l humer, subs for fx w nonunion +C2841179|T037|AB|S42.295P|ICD10CM|Oth nondisp fx of upper end l humer, subs for fx w malunion|Oth nondisp fx of upper end l humer, subs for fx w malunion +C2841180|T037|AB|S42.295S|ICD10CM|Other nondisp fx of upper end of left humerus, sequela|Other nondisp fx of upper end of left humerus, sequela +C2841180|T037|PT|S42.295S|ICD10CM|Other nondisplaced fracture of upper end of left humerus, sequela|Other nondisplaced fracture of upper end of left humerus, sequela +C2841181|T037|AB|S42.296|ICD10CM|Other nondisp fx of upper end of unspecified humerus|Other nondisp fx of upper end of unspecified humerus +C2841181|T037|HT|S42.296|ICD10CM|Other nondisplaced fracture of upper end of unspecified humerus|Other nondisplaced fracture of upper end of unspecified humerus +C2841182|T037|AB|S42.296A|ICD10CM|Oth nondisp fx of upper end of unsp humerus, init|Oth nondisp fx of upper end of unsp humerus, init +C2841183|T037|AB|S42.296B|ICD10CM|Oth nondisp fx of upper end of unsp humerus, init for opn fx|Oth nondisp fx of upper end of unsp humerus, init for opn fx +C2841183|T037|PT|S42.296B|ICD10CM|Other nondisplaced fracture of upper end of unspecified humerus, initial encounter for open fracture|Other nondisplaced fracture of upper end of unspecified humerus, initial encounter for open fracture +C2841184|T037|AB|S42.296D|ICD10CM|Oth nondisp fx of upr end unsp humer, 7thD|Oth nondisp fx of upr end unsp humer, 7thD +C2841185|T037|AB|S42.296G|ICD10CM|Oth nondisp fx of upr end unsp humer, 7thG|Oth nondisp fx of upr end unsp humer, 7thG +C2841186|T037|AB|S42.296K|ICD10CM|Oth nondisp fx of upr end unsp humer, subs for fx w nonunion|Oth nondisp fx of upr end unsp humer, subs for fx w nonunion +C2841187|T037|AB|S42.296P|ICD10CM|Oth nondisp fx of upr end unsp humer, subs for fx w malunion|Oth nondisp fx of upr end unsp humer, subs for fx w malunion +C2841188|T037|AB|S42.296S|ICD10CM|Other nondisp fx of upper end of unsp humerus, sequela|Other nondisp fx of upper end of unsp humerus, sequela +C2841188|T037|PT|S42.296S|ICD10CM|Other nondisplaced fracture of upper end of unspecified humerus, sequela|Other nondisplaced fracture of upper end of unspecified humerus, sequela +C0020162|T037|ET|S42.3|ICD10CM|Fracture of humerus NOS|Fracture of humerus NOS +C0272612|T037|HT|S42.3|ICD10CM|Fracture of shaft of humerus|Fracture of shaft of humerus +C0272612|T037|AB|S42.3|ICD10CM|Fracture of shaft of humerus|Fracture of shaft of humerus +C0272612|T037|PT|S42.3|ICD10|Fracture of shaft of humerus|Fracture of shaft of humerus +C0020162|T037|ET|S42.3|ICD10CM|Fracture of upper arm NOS|Fracture of upper arm NOS +C2841189|T037|AB|S42.30|ICD10CM|Unspecified fracture of shaft of humerus|Unspecified fracture of shaft of humerus +C2841189|T037|HT|S42.30|ICD10CM|Unspecified fracture of shaft of humerus|Unspecified fracture of shaft of humerus +C2841190|T037|AB|S42.301|ICD10CM|Unspecified fracture of shaft of humerus, right arm|Unspecified fracture of shaft of humerus, right arm +C2841190|T037|HT|S42.301|ICD10CM|Unspecified fracture of shaft of humerus, right arm|Unspecified fracture of shaft of humerus, right arm +C2841191|T037|AB|S42.301A|ICD10CM|Unsp fracture of shaft of humerus, right arm, init|Unsp fracture of shaft of humerus, right arm, init +C2841191|T037|PT|S42.301A|ICD10CM|Unspecified fracture of shaft of humerus, right arm, initial encounter for closed fracture|Unspecified fracture of shaft of humerus, right arm, initial encounter for closed fracture +C2841192|T037|AB|S42.301B|ICD10CM|Unsp fx shaft of humerus, right arm, init for opn fx|Unsp fx shaft of humerus, right arm, init for opn fx +C2841192|T037|PT|S42.301B|ICD10CM|Unspecified fracture of shaft of humerus, right arm, initial encounter for open fracture|Unspecified fracture of shaft of humerus, right arm, initial encounter for open fracture +C2841193|T037|AB|S42.301D|ICD10CM|Unsp fx shaft of humer, right arm, subs for fx w routn heal|Unsp fx shaft of humer, right arm, subs for fx w routn heal +C2841194|T037|AB|S42.301G|ICD10CM|Unsp fx shaft of humer, right arm, subs for fx w delay heal|Unsp fx shaft of humer, right arm, subs for fx w delay heal +C2841195|T037|AB|S42.301K|ICD10CM|Unsp fx shaft of humerus, right arm, subs for fx w nonunion|Unsp fx shaft of humerus, right arm, subs for fx w nonunion +C2841195|T037|PT|S42.301K|ICD10CM|Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion|Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion +C2841196|T037|AB|S42.301P|ICD10CM|Unsp fx shaft of humerus, right arm, subs for fx w malunion|Unsp fx shaft of humerus, right arm, subs for fx w malunion +C2841196|T037|PT|S42.301P|ICD10CM|Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion|Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion +C2841197|T037|AB|S42.301S|ICD10CM|Unspecified fracture of shaft of humerus, right arm, sequela|Unspecified fracture of shaft of humerus, right arm, sequela +C2841197|T037|PT|S42.301S|ICD10CM|Unspecified fracture of shaft of humerus, right arm, sequela|Unspecified fracture of shaft of humerus, right arm, sequela +C2841198|T037|AB|S42.302|ICD10CM|Unspecified fracture of shaft of humerus, left arm|Unspecified fracture of shaft of humerus, left arm +C2841198|T037|HT|S42.302|ICD10CM|Unspecified fracture of shaft of humerus, left arm|Unspecified fracture of shaft of humerus, left arm +C2841199|T037|AB|S42.302A|ICD10CM|Unsp fracture of shaft of humerus, left arm, init|Unsp fracture of shaft of humerus, left arm, init +C2841199|T037|PT|S42.302A|ICD10CM|Unspecified fracture of shaft of humerus, left arm, initial encounter for closed fracture|Unspecified fracture of shaft of humerus, left arm, initial encounter for closed fracture +C2841200|T037|AB|S42.302B|ICD10CM|Unsp fracture of shaft of humerus, left arm, init for opn fx|Unsp fracture of shaft of humerus, left arm, init for opn fx +C2841200|T037|PT|S42.302B|ICD10CM|Unspecified fracture of shaft of humerus, left arm, initial encounter for open fracture|Unspecified fracture of shaft of humerus, left arm, initial encounter for open fracture +C2841201|T037|AB|S42.302D|ICD10CM|Unsp fx shaft of humerus, left arm, subs for fx w routn heal|Unsp fx shaft of humerus, left arm, subs for fx w routn heal +C2841202|T037|AB|S42.302G|ICD10CM|Unsp fx shaft of humerus, left arm, subs for fx w delay heal|Unsp fx shaft of humerus, left arm, subs for fx w delay heal +C2841203|T037|AB|S42.302K|ICD10CM|Unsp fx shaft of humerus, left arm, subs for fx w nonunion|Unsp fx shaft of humerus, left arm, subs for fx w nonunion +C2841203|T037|PT|S42.302K|ICD10CM|Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion|Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion +C2841204|T037|AB|S42.302P|ICD10CM|Unsp fx shaft of humerus, left arm, subs for fx w malunion|Unsp fx shaft of humerus, left arm, subs for fx w malunion +C2841204|T037|PT|S42.302P|ICD10CM|Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion|Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion +C2841205|T037|PT|S42.302S|ICD10CM|Unspecified fracture of shaft of humerus, left arm, sequela|Unspecified fracture of shaft of humerus, left arm, sequela +C2841205|T037|AB|S42.302S|ICD10CM|Unspecified fracture of shaft of humerus, left arm, sequela|Unspecified fracture of shaft of humerus, left arm, sequela +C2841206|T037|AB|S42.309|ICD10CM|Unspecified fracture of shaft of humerus, unspecified arm|Unspecified fracture of shaft of humerus, unspecified arm +C2841206|T037|HT|S42.309|ICD10CM|Unspecified fracture of shaft of humerus, unspecified arm|Unspecified fracture of shaft of humerus, unspecified arm +C2841207|T037|AB|S42.309A|ICD10CM|Unsp fracture of shaft of humerus, unsp arm, init|Unsp fracture of shaft of humerus, unsp arm, init +C2841207|T037|PT|S42.309A|ICD10CM|Unspecified fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture|Unspecified fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture +C2841208|T037|AB|S42.309B|ICD10CM|Unsp fracture of shaft of humerus, unsp arm, init for opn fx|Unsp fracture of shaft of humerus, unsp arm, init for opn fx +C2841208|T037|PT|S42.309B|ICD10CM|Unspecified fracture of shaft of humerus, unspecified arm, initial encounter for open fracture|Unspecified fracture of shaft of humerus, unspecified arm, initial encounter for open fracture +C2841209|T037|AB|S42.309D|ICD10CM|Unsp fx shaft of humerus, unsp arm, subs for fx w routn heal|Unsp fx shaft of humerus, unsp arm, subs for fx w routn heal +C2841210|T037|AB|S42.309G|ICD10CM|Unsp fx shaft of humerus, unsp arm, subs for fx w delay heal|Unsp fx shaft of humerus, unsp arm, subs for fx w delay heal +C2841211|T037|AB|S42.309K|ICD10CM|Unsp fx shaft of humerus, unsp arm, subs for fx w nonunion|Unsp fx shaft of humerus, unsp arm, subs for fx w nonunion +C2841212|T037|AB|S42.309P|ICD10CM|Unsp fx shaft of humerus, unsp arm, subs for fx w malunion|Unsp fx shaft of humerus, unsp arm, subs for fx w malunion +C2841213|T037|AB|S42.309S|ICD10CM|Unsp fracture of shaft of humerus, unspecified arm, sequela|Unsp fracture of shaft of humerus, unspecified arm, sequela +C2841213|T037|PT|S42.309S|ICD10CM|Unspecified fracture of shaft of humerus, unspecified arm, sequela|Unspecified fracture of shaft of humerus, unspecified arm, sequela +C2841214|T037|AB|S42.31|ICD10CM|Greenstick fracture of shaft of humerus|Greenstick fracture of shaft of humerus +C2841214|T037|HT|S42.31|ICD10CM|Greenstick fracture of shaft of humerus|Greenstick fracture of shaft of humerus +C2841215|T037|AB|S42.311|ICD10CM|Greenstick fracture of shaft of humerus, right arm|Greenstick fracture of shaft of humerus, right arm +C2841215|T037|HT|S42.311|ICD10CM|Greenstick fracture of shaft of humerus, right arm|Greenstick fracture of shaft of humerus, right arm +C2841216|T037|AB|S42.311A|ICD10CM|Greenstick fracture of shaft of humerus, right arm, init|Greenstick fracture of shaft of humerus, right arm, init +C2841216|T037|PT|S42.311A|ICD10CM|Greenstick fracture of shaft of humerus, right arm, initial encounter for closed fracture|Greenstick fracture of shaft of humerus, right arm, initial encounter for closed fracture +C2841217|T037|AB|S42.311D|ICD10CM|Greenstick fx shaft of humer, r arm, 7thD|Greenstick fx shaft of humer, r arm, 7thD +C2841218|T037|AB|S42.311G|ICD10CM|Greenstick fx shaft of humer, r arm, 7thG|Greenstick fx shaft of humer, r arm, 7thG +C2841219|T037|PT|S42.311K|ICD10CM|Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion|Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion +C2841219|T037|AB|S42.311K|ICD10CM|Greenstick fx shaft of humer, r arm, subs for fx w nonunion|Greenstick fx shaft of humer, r arm, subs for fx w nonunion +C2841220|T037|PT|S42.311P|ICD10CM|Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion|Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion +C2841220|T037|AB|S42.311P|ICD10CM|Greenstick fx shaft of humer, r arm, subs for fx w malunion|Greenstick fx shaft of humer, r arm, subs for fx w malunion +C2841221|T037|AB|S42.311S|ICD10CM|Greenstick fracture of shaft of humerus, right arm, sequela|Greenstick fracture of shaft of humerus, right arm, sequela +C2841221|T037|PT|S42.311S|ICD10CM|Greenstick fracture of shaft of humerus, right arm, sequela|Greenstick fracture of shaft of humerus, right arm, sequela +C2841222|T037|AB|S42.312|ICD10CM|Greenstick fracture of shaft of humerus, left arm|Greenstick fracture of shaft of humerus, left arm +C2841222|T037|HT|S42.312|ICD10CM|Greenstick fracture of shaft of humerus, left arm|Greenstick fracture of shaft of humerus, left arm +C2841223|T037|AB|S42.312A|ICD10CM|Greenstick fracture of shaft of humerus, left arm, init|Greenstick fracture of shaft of humerus, left arm, init +C2841223|T037|PT|S42.312A|ICD10CM|Greenstick fracture of shaft of humerus, left arm, initial encounter for closed fracture|Greenstick fracture of shaft of humerus, left arm, initial encounter for closed fracture +C2841224|T037|AB|S42.312D|ICD10CM|Greenstick fx shaft of humer, l arm, 7thD|Greenstick fx shaft of humer, l arm, 7thD +C2841225|T037|AB|S42.312G|ICD10CM|Greenstick fx shaft of humer, l arm, 7thG|Greenstick fx shaft of humer, l arm, 7thG +C2841226|T037|PT|S42.312K|ICD10CM|Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion|Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion +C2841226|T037|AB|S42.312K|ICD10CM|Greenstick fx shaft of humer, l arm, subs for fx w nonunion|Greenstick fx shaft of humer, l arm, subs for fx w nonunion +C2841227|T037|PT|S42.312P|ICD10CM|Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion|Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion +C2841227|T037|AB|S42.312P|ICD10CM|Greenstick fx shaft of humer, l arm, subs for fx w malunion|Greenstick fx shaft of humer, l arm, subs for fx w malunion +C2841228|T037|PT|S42.312S|ICD10CM|Greenstick fracture of shaft of humerus, left arm, sequela|Greenstick fracture of shaft of humerus, left arm, sequela +C2841228|T037|AB|S42.312S|ICD10CM|Greenstick fracture of shaft of humerus, left arm, sequela|Greenstick fracture of shaft of humerus, left arm, sequela +C2841229|T037|AB|S42.319|ICD10CM|Greenstick fracture of shaft of humerus, unspecified arm|Greenstick fracture of shaft of humerus, unspecified arm +C2841229|T037|HT|S42.319|ICD10CM|Greenstick fracture of shaft of humerus, unspecified arm|Greenstick fracture of shaft of humerus, unspecified arm +C2841230|T037|AB|S42.319A|ICD10CM|Greenstick fracture of shaft of humerus, unsp arm, init|Greenstick fracture of shaft of humerus, unsp arm, init +C2841230|T037|PT|S42.319A|ICD10CM|Greenstick fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture|Greenstick fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture +C2841231|T037|AB|S42.319D|ICD10CM|Greenstick fx shaft of humer, unsp arm, 7thD|Greenstick fx shaft of humer, unsp arm, 7thD +C2841232|T037|AB|S42.319G|ICD10CM|Greenstick fx shaft of humer, unsp arm, 7thG|Greenstick fx shaft of humer, unsp arm, 7thG +C2841233|T037|AB|S42.319K|ICD10CM|Greenstick fx shaft of humer, unsp arm, 7thK|Greenstick fx shaft of humer, unsp arm, 7thK +C2841234|T037|AB|S42.319P|ICD10CM|Greenstick fx shaft of humer, unsp arm, 7thP|Greenstick fx shaft of humer, unsp arm, 7thP +C2841235|T037|AB|S42.319S|ICD10CM|Greenstick fracture of shaft of humerus, unsp arm, sequela|Greenstick fracture of shaft of humerus, unsp arm, sequela +C2841235|T037|PT|S42.319S|ICD10CM|Greenstick fracture of shaft of humerus, unspecified arm, sequela|Greenstick fracture of shaft of humerus, unspecified arm, sequela +C2841236|T037|AB|S42.32|ICD10CM|Transverse fracture of shaft of humerus|Transverse fracture of shaft of humerus +C2841236|T037|HT|S42.32|ICD10CM|Transverse fracture of shaft of humerus|Transverse fracture of shaft of humerus +C2841237|T037|AB|S42.321|ICD10CM|Displaced transverse fracture of shaft of humerus, right arm|Displaced transverse fracture of shaft of humerus, right arm +C2841237|T037|HT|S42.321|ICD10CM|Displaced transverse fracture of shaft of humerus, right arm|Displaced transverse fracture of shaft of humerus, right arm +C2841238|T037|PT|S42.321A|ICD10CM|Displaced transverse fracture of shaft of humerus, right arm, initial encounter for closed fracture|Displaced transverse fracture of shaft of humerus, right arm, initial encounter for closed fracture +C2841238|T037|AB|S42.321A|ICD10CM|Displaced transverse fx shaft of humerus, right arm, init|Displaced transverse fx shaft of humerus, right arm, init +C2841239|T037|AB|S42.321B|ICD10CM|Displ transverse fx shaft of humer, r arm, init for opn fx|Displ transverse fx shaft of humer, r arm, init for opn fx +C2841239|T037|PT|S42.321B|ICD10CM|Displaced transverse fracture of shaft of humerus, right arm, initial encounter for open fracture|Displaced transverse fracture of shaft of humerus, right arm, initial encounter for open fracture +C2841240|T037|AB|S42.321D|ICD10CM|Displ transverse fx shaft of humer, r arm, 7thD|Displ transverse fx shaft of humer, r arm, 7thD +C2841241|T037|AB|S42.321G|ICD10CM|Displ transverse fx shaft of humer, r arm, 7thG|Displ transverse fx shaft of humer, r arm, 7thG +C2841242|T037|AB|S42.321K|ICD10CM|Displ transverse fx shaft of humer, r arm, 7thK|Displ transverse fx shaft of humer, r arm, 7thK +C2841243|T037|AB|S42.321P|ICD10CM|Displ transverse fx shaft of humer, r arm, 7thP|Displ transverse fx shaft of humer, r arm, 7thP +C2841244|T037|PT|S42.321S|ICD10CM|Displaced transverse fracture of shaft of humerus, right arm, sequela|Displaced transverse fracture of shaft of humerus, right arm, sequela +C2841244|T037|AB|S42.321S|ICD10CM|Displaced transverse fx shaft of humerus, right arm, sequela|Displaced transverse fx shaft of humerus, right arm, sequela +C2841245|T037|AB|S42.322|ICD10CM|Displaced transverse fracture of shaft of humerus, left arm|Displaced transverse fracture of shaft of humerus, left arm +C2841245|T037|HT|S42.322|ICD10CM|Displaced transverse fracture of shaft of humerus, left arm|Displaced transverse fracture of shaft of humerus, left arm +C2841246|T037|PT|S42.322A|ICD10CM|Displaced transverse fracture of shaft of humerus, left arm, initial encounter for closed fracture|Displaced transverse fracture of shaft of humerus, left arm, initial encounter for closed fracture +C2841246|T037|AB|S42.322A|ICD10CM|Displaced transverse fx shaft of humerus, left arm, init|Displaced transverse fx shaft of humerus, left arm, init +C2841247|T037|AB|S42.322B|ICD10CM|Displ transverse fx shaft of humer, l arm, init for opn fx|Displ transverse fx shaft of humer, l arm, init for opn fx +C2841247|T037|PT|S42.322B|ICD10CM|Displaced transverse fracture of shaft of humerus, left arm, initial encounter for open fracture|Displaced transverse fracture of shaft of humerus, left arm, initial encounter for open fracture +C2841248|T037|AB|S42.322D|ICD10CM|Displ transverse fx shaft of humer, l arm, 7thD|Displ transverse fx shaft of humer, l arm, 7thD +C2841249|T037|AB|S42.322G|ICD10CM|Displ transverse fx shaft of humer, l arm, 7thG|Displ transverse fx shaft of humer, l arm, 7thG +C2841250|T037|AB|S42.322K|ICD10CM|Displ transverse fx shaft of humer, l arm, 7thK|Displ transverse fx shaft of humer, l arm, 7thK +C2841251|T037|AB|S42.322P|ICD10CM|Displ transverse fx shaft of humer, l arm, 7thP|Displ transverse fx shaft of humer, l arm, 7thP +C2841252|T037|PT|S42.322S|ICD10CM|Displaced transverse fracture of shaft of humerus, left arm, sequela|Displaced transverse fracture of shaft of humerus, left arm, sequela +C2841252|T037|AB|S42.322S|ICD10CM|Displaced transverse fx shaft of humerus, left arm, sequela|Displaced transverse fx shaft of humerus, left arm, sequela +C2841253|T037|AB|S42.323|ICD10CM|Displaced transverse fracture of shaft of humerus, unsp arm|Displaced transverse fracture of shaft of humerus, unsp arm +C2841253|T037|HT|S42.323|ICD10CM|Displaced transverse fracture of shaft of humerus, unspecified arm|Displaced transverse fracture of shaft of humerus, unspecified arm +C2841254|T037|AB|S42.323A|ICD10CM|Displaced transverse fx shaft of humerus, unsp arm, init|Displaced transverse fx shaft of humerus, unsp arm, init +C2841255|T037|AB|S42.323B|ICD10CM|Displ transverse fx shaft of humer, unsp arm, 7thB|Displ transverse fx shaft of humer, unsp arm, 7thB +C2841256|T037|AB|S42.323D|ICD10CM|Displ transverse fx shaft of humer, unsp arm, 7thD|Displ transverse fx shaft of humer, unsp arm, 7thD +C2841257|T037|AB|S42.323G|ICD10CM|Displ transverse fx shaft of humer, unsp arm, 7thG|Displ transverse fx shaft of humer, unsp arm, 7thG +C2841258|T037|AB|S42.323K|ICD10CM|Displ transverse fx shaft of humer, unsp arm, 7thK|Displ transverse fx shaft of humer, unsp arm, 7thK +C2841259|T037|AB|S42.323P|ICD10CM|Displ transverse fx shaft of humer, unsp arm, 7thP|Displ transverse fx shaft of humer, unsp arm, 7thP +C2841260|T037|PT|S42.323S|ICD10CM|Displaced transverse fracture of shaft of humerus, unspecified arm, sequela|Displaced transverse fracture of shaft of humerus, unspecified arm, sequela +C2841260|T037|AB|S42.323S|ICD10CM|Displaced transverse fx shaft of humerus, unsp arm, sequela|Displaced transverse fx shaft of humerus, unsp arm, sequela +C2841261|T037|AB|S42.324|ICD10CM|Nondisp transverse fracture of shaft of humerus, right arm|Nondisp transverse fracture of shaft of humerus, right arm +C2841261|T037|HT|S42.324|ICD10CM|Nondisplaced transverse fracture of shaft of humerus, right arm|Nondisplaced transverse fracture of shaft of humerus, right arm +C2841262|T037|AB|S42.324A|ICD10CM|Nondisp transverse fx shaft of humerus, right arm, init|Nondisp transverse fx shaft of humerus, right arm, init +C2841263|T037|AB|S42.324B|ICD10CM|Nondisp transverse fx shaft of humer, r arm, init for opn fx|Nondisp transverse fx shaft of humer, r arm, init for opn fx +C2841263|T037|PT|S42.324B|ICD10CM|Nondisplaced transverse fracture of shaft of humerus, right arm, initial encounter for open fracture|Nondisplaced transverse fracture of shaft of humerus, right arm, initial encounter for open fracture +C2841264|T037|AB|S42.324D|ICD10CM|Nondisp transverse fx shaft of humer, r arm, 7thD|Nondisp transverse fx shaft of humer, r arm, 7thD +C2841265|T037|AB|S42.324G|ICD10CM|Nondisp transverse fx shaft of humer, r arm, 7thG|Nondisp transverse fx shaft of humer, r arm, 7thG +C2841266|T037|AB|S42.324K|ICD10CM|Nondisp transverse fx shaft of humer, r arm, 7thK|Nondisp transverse fx shaft of humer, r arm, 7thK +C2841267|T037|AB|S42.324P|ICD10CM|Nondisp transverse fx shaft of humer, r arm, 7thP|Nondisp transverse fx shaft of humer, r arm, 7thP +C2841268|T037|AB|S42.324S|ICD10CM|Nondisp transverse fx shaft of humerus, right arm, sequela|Nondisp transverse fx shaft of humerus, right arm, sequela +C2841268|T037|PT|S42.324S|ICD10CM|Nondisplaced transverse fracture of shaft of humerus, right arm, sequela|Nondisplaced transverse fracture of shaft of humerus, right arm, sequela +C2841269|T037|AB|S42.325|ICD10CM|Nondisp transverse fracture of shaft of humerus, left arm|Nondisp transverse fracture of shaft of humerus, left arm +C2841269|T037|HT|S42.325|ICD10CM|Nondisplaced transverse fracture of shaft of humerus, left arm|Nondisplaced transverse fracture of shaft of humerus, left arm +C2841270|T037|AB|S42.325A|ICD10CM|Nondisp transverse fx shaft of humerus, left arm, init|Nondisp transverse fx shaft of humerus, left arm, init +C2841271|T037|AB|S42.325B|ICD10CM|Nondisp transverse fx shaft of humer, l arm, init for opn fx|Nondisp transverse fx shaft of humer, l arm, init for opn fx +C2841271|T037|PT|S42.325B|ICD10CM|Nondisplaced transverse fracture of shaft of humerus, left arm, initial encounter for open fracture|Nondisplaced transverse fracture of shaft of humerus, left arm, initial encounter for open fracture +C2841272|T037|AB|S42.325D|ICD10CM|Nondisp transverse fx shaft of humer, l arm, 7thD|Nondisp transverse fx shaft of humer, l arm, 7thD +C2841273|T037|AB|S42.325G|ICD10CM|Nondisp transverse fx shaft of humer, l arm, 7thG|Nondisp transverse fx shaft of humer, l arm, 7thG +C2841274|T037|AB|S42.325K|ICD10CM|Nondisp transverse fx shaft of humer, l arm, 7thK|Nondisp transverse fx shaft of humer, l arm, 7thK +C2841275|T037|AB|S42.325P|ICD10CM|Nondisp transverse fx shaft of humer, l arm, 7thP|Nondisp transverse fx shaft of humer, l arm, 7thP +C2841276|T037|AB|S42.325S|ICD10CM|Nondisp transverse fx shaft of humerus, left arm, sequela|Nondisp transverse fx shaft of humerus, left arm, sequela +C2841276|T037|PT|S42.325S|ICD10CM|Nondisplaced transverse fracture of shaft of humerus, left arm, sequela|Nondisplaced transverse fracture of shaft of humerus, left arm, sequela +C2841277|T037|AB|S42.326|ICD10CM|Nondisp transverse fracture of shaft of humerus, unsp arm|Nondisp transverse fracture of shaft of humerus, unsp arm +C2841277|T037|HT|S42.326|ICD10CM|Nondisplaced transverse fracture of shaft of humerus, unspecified arm|Nondisplaced transverse fracture of shaft of humerus, unspecified arm +C2841278|T037|AB|S42.326A|ICD10CM|Nondisp transverse fx shaft of humerus, unsp arm, init|Nondisp transverse fx shaft of humerus, unsp arm, init +C2841279|T037|AB|S42.326B|ICD10CM|Nondisp transverse fx shaft of humer, unsp arm, 7thB|Nondisp transverse fx shaft of humer, unsp arm, 7thB +C2841280|T037|AB|S42.326D|ICD10CM|Nondisp transverse fx shaft of humer, unsp arm, 7thD|Nondisp transverse fx shaft of humer, unsp arm, 7thD +C2841281|T037|AB|S42.326G|ICD10CM|Nondisp transverse fx shaft of humer, unsp arm, 7thG|Nondisp transverse fx shaft of humer, unsp arm, 7thG +C2841282|T037|AB|S42.326K|ICD10CM|Nondisp transverse fx shaft of humer, unsp arm, 7thK|Nondisp transverse fx shaft of humer, unsp arm, 7thK +C2841283|T037|AB|S42.326P|ICD10CM|Nondisp transverse fx shaft of humer, unsp arm, 7thP|Nondisp transverse fx shaft of humer, unsp arm, 7thP +C2841284|T037|AB|S42.326S|ICD10CM|Nondisp transverse fx shaft of humerus, unsp arm, sequela|Nondisp transverse fx shaft of humerus, unsp arm, sequela +C2841284|T037|PT|S42.326S|ICD10CM|Nondisplaced transverse fracture of shaft of humerus, unspecified arm, sequela|Nondisplaced transverse fracture of shaft of humerus, unspecified arm, sequela +C2841285|T037|AB|S42.33|ICD10CM|Oblique fracture of shaft of humerus|Oblique fracture of shaft of humerus +C2841285|T037|HT|S42.33|ICD10CM|Oblique fracture of shaft of humerus|Oblique fracture of shaft of humerus +C2841286|T037|AB|S42.331|ICD10CM|Displaced oblique fracture of shaft of humerus, right arm|Displaced oblique fracture of shaft of humerus, right arm +C2841286|T037|HT|S42.331|ICD10CM|Displaced oblique fracture of shaft of humerus, right arm|Displaced oblique fracture of shaft of humerus, right arm +C2841287|T037|PT|S42.331A|ICD10CM|Displaced oblique fracture of shaft of humerus, right arm, initial encounter for closed fracture|Displaced oblique fracture of shaft of humerus, right arm, initial encounter for closed fracture +C2841287|T037|AB|S42.331A|ICD10CM|Displaced oblique fx shaft of humerus, right arm, init|Displaced oblique fx shaft of humerus, right arm, init +C2841288|T037|AB|S42.331B|ICD10CM|Displ oblique fx shaft of humer, right arm, init for opn fx|Displ oblique fx shaft of humer, right arm, init for opn fx +C2841288|T037|PT|S42.331B|ICD10CM|Displaced oblique fracture of shaft of humerus, right arm, initial encounter for open fracture|Displaced oblique fracture of shaft of humerus, right arm, initial encounter for open fracture +C2841289|T037|AB|S42.331D|ICD10CM|Displ oblique fx shaft of humer, r arm, 7thD|Displ oblique fx shaft of humer, r arm, 7thD +C2841290|T037|AB|S42.331G|ICD10CM|Displ oblique fx shaft of humer, r arm, 7thG|Displ oblique fx shaft of humer, r arm, 7thG +C2841291|T037|AB|S42.331K|ICD10CM|Displ oblique fx shaft of humer, r arm, 7thK|Displ oblique fx shaft of humer, r arm, 7thK +C2841292|T037|AB|S42.331P|ICD10CM|Displ oblique fx shaft of humer, r arm, 7thP|Displ oblique fx shaft of humer, r arm, 7thP +C2841293|T037|PT|S42.331S|ICD10CM|Displaced oblique fracture of shaft of humerus, right arm, sequela|Displaced oblique fracture of shaft of humerus, right arm, sequela +C2841293|T037|AB|S42.331S|ICD10CM|Displaced oblique fx shaft of humerus, right arm, sequela|Displaced oblique fx shaft of humerus, right arm, sequela +C2841294|T037|AB|S42.332|ICD10CM|Displaced oblique fracture of shaft of humerus, left arm|Displaced oblique fracture of shaft of humerus, left arm +C2841294|T037|HT|S42.332|ICD10CM|Displaced oblique fracture of shaft of humerus, left arm|Displaced oblique fracture of shaft of humerus, left arm +C2841295|T037|PT|S42.332A|ICD10CM|Displaced oblique fracture of shaft of humerus, left arm, initial encounter for closed fracture|Displaced oblique fracture of shaft of humerus, left arm, initial encounter for closed fracture +C2841295|T037|AB|S42.332A|ICD10CM|Displaced oblique fx shaft of humerus, left arm, init|Displaced oblique fx shaft of humerus, left arm, init +C2841296|T037|AB|S42.332B|ICD10CM|Displ oblique fx shaft of humerus, left arm, init for opn fx|Displ oblique fx shaft of humerus, left arm, init for opn fx +C2841296|T037|PT|S42.332B|ICD10CM|Displaced oblique fracture of shaft of humerus, left arm, initial encounter for open fracture|Displaced oblique fracture of shaft of humerus, left arm, initial encounter for open fracture +C2841297|T037|AB|S42.332D|ICD10CM|Displ oblique fx shaft of humer, l arm, 7thD|Displ oblique fx shaft of humer, l arm, 7thD +C2841298|T037|AB|S42.332G|ICD10CM|Displ oblique fx shaft of humer, l arm, 7thG|Displ oblique fx shaft of humer, l arm, 7thG +C2841299|T037|AB|S42.332K|ICD10CM|Displ oblique fx shaft of humer, l arm, 7thK|Displ oblique fx shaft of humer, l arm, 7thK +C2841300|T037|AB|S42.332P|ICD10CM|Displ oblique fx shaft of humer, l arm, 7thP|Displ oblique fx shaft of humer, l arm, 7thP +C2841301|T037|PT|S42.332S|ICD10CM|Displaced oblique fracture of shaft of humerus, left arm, sequela|Displaced oblique fracture of shaft of humerus, left arm, sequela +C2841301|T037|AB|S42.332S|ICD10CM|Displaced oblique fx shaft of humerus, left arm, sequela|Displaced oblique fx shaft of humerus, left arm, sequela +C2841302|T037|AB|S42.333|ICD10CM|Displaced oblique fracture of shaft of humerus, unsp arm|Displaced oblique fracture of shaft of humerus, unsp arm +C2841302|T037|HT|S42.333|ICD10CM|Displaced oblique fracture of shaft of humerus, unspecified arm|Displaced oblique fracture of shaft of humerus, unspecified arm +C2841303|T037|AB|S42.333A|ICD10CM|Displaced oblique fx shaft of humerus, unsp arm, init|Displaced oblique fx shaft of humerus, unsp arm, init +C2841304|T037|AB|S42.333B|ICD10CM|Displ oblique fx shaft of humerus, unsp arm, init for opn fx|Displ oblique fx shaft of humerus, unsp arm, init for opn fx +C2841304|T037|PT|S42.333B|ICD10CM|Displaced oblique fracture of shaft of humerus, unspecified arm, initial encounter for open fracture|Displaced oblique fracture of shaft of humerus, unspecified arm, initial encounter for open fracture +C2841305|T037|AB|S42.333D|ICD10CM|Displ oblique fx shaft of humer, unsp arm, 7thD|Displ oblique fx shaft of humer, unsp arm, 7thD +C2841306|T037|AB|S42.333G|ICD10CM|Displ oblique fx shaft of humer, unsp arm, 7thG|Displ oblique fx shaft of humer, unsp arm, 7thG +C2841307|T037|AB|S42.333K|ICD10CM|Displ oblique fx shaft of humer, unsp arm, 7thK|Displ oblique fx shaft of humer, unsp arm, 7thK +C2841308|T037|AB|S42.333P|ICD10CM|Displ oblique fx shaft of humer, unsp arm, 7thP|Displ oblique fx shaft of humer, unsp arm, 7thP +C2841309|T037|PT|S42.333S|ICD10CM|Displaced oblique fracture of shaft of humerus, unspecified arm, sequela|Displaced oblique fracture of shaft of humerus, unspecified arm, sequela +C2841309|T037|AB|S42.333S|ICD10CM|Displaced oblique fx shaft of humerus, unsp arm, sequela|Displaced oblique fx shaft of humerus, unsp arm, sequela +C2841310|T037|AB|S42.334|ICD10CM|Nondisplaced oblique fracture of shaft of humerus, right arm|Nondisplaced oblique fracture of shaft of humerus, right arm +C2841310|T037|HT|S42.334|ICD10CM|Nondisplaced oblique fracture of shaft of humerus, right arm|Nondisplaced oblique fracture of shaft of humerus, right arm +C2841311|T037|AB|S42.334A|ICD10CM|Nondisp oblique fx shaft of humerus, right arm, init|Nondisp oblique fx shaft of humerus, right arm, init +C2841311|T037|PT|S42.334A|ICD10CM|Nondisplaced oblique fracture of shaft of humerus, right arm, initial encounter for closed fracture|Nondisplaced oblique fracture of shaft of humerus, right arm, initial encounter for closed fracture +C2841312|T037|AB|S42.334B|ICD10CM|Nondisp oblique fx shaft of humer, r arm, init for opn fx|Nondisp oblique fx shaft of humer, r arm, init for opn fx +C2841312|T037|PT|S42.334B|ICD10CM|Nondisplaced oblique fracture of shaft of humerus, right arm, initial encounter for open fracture|Nondisplaced oblique fracture of shaft of humerus, right arm, initial encounter for open fracture +C2841313|T037|AB|S42.334D|ICD10CM|Nondisp oblique fx shaft of humer, r arm, 7thD|Nondisp oblique fx shaft of humer, r arm, 7thD +C2841314|T037|AB|S42.334G|ICD10CM|Nondisp oblique fx shaft of humer, r arm, 7thG|Nondisp oblique fx shaft of humer, r arm, 7thG +C2841315|T037|AB|S42.334K|ICD10CM|Nondisp oblique fx shaft of humer, r arm, 7thK|Nondisp oblique fx shaft of humer, r arm, 7thK +C2841316|T037|AB|S42.334P|ICD10CM|Nondisp oblique fx shaft of humer, r arm, 7thP|Nondisp oblique fx shaft of humer, r arm, 7thP +C2841317|T037|AB|S42.334S|ICD10CM|Nondisp oblique fx shaft of humerus, right arm, sequela|Nondisp oblique fx shaft of humerus, right arm, sequela +C2841317|T037|PT|S42.334S|ICD10CM|Nondisplaced oblique fracture of shaft of humerus, right arm, sequela|Nondisplaced oblique fracture of shaft of humerus, right arm, sequela +C2841318|T037|AB|S42.335|ICD10CM|Nondisplaced oblique fracture of shaft of humerus, left arm|Nondisplaced oblique fracture of shaft of humerus, left arm +C2841318|T037|HT|S42.335|ICD10CM|Nondisplaced oblique fracture of shaft of humerus, left arm|Nondisplaced oblique fracture of shaft of humerus, left arm +C2841319|T037|AB|S42.335A|ICD10CM|Nondisp oblique fracture of shaft of humerus, left arm, init|Nondisp oblique fracture of shaft of humerus, left arm, init +C2841319|T037|PT|S42.335A|ICD10CM|Nondisplaced oblique fracture of shaft of humerus, left arm, initial encounter for closed fracture|Nondisplaced oblique fracture of shaft of humerus, left arm, initial encounter for closed fracture +C2841320|T037|AB|S42.335B|ICD10CM|Nondisp oblique fx shaft of humer, left arm, init for opn fx|Nondisp oblique fx shaft of humer, left arm, init for opn fx +C2841320|T037|PT|S42.335B|ICD10CM|Nondisplaced oblique fracture of shaft of humerus, left arm, initial encounter for open fracture|Nondisplaced oblique fracture of shaft of humerus, left arm, initial encounter for open fracture +C2841321|T037|AB|S42.335D|ICD10CM|Nondisp oblique fx shaft of humer, l arm, 7thD|Nondisp oblique fx shaft of humer, l arm, 7thD +C2841322|T037|AB|S42.335G|ICD10CM|Nondisp oblique fx shaft of humer, l arm, 7thG|Nondisp oblique fx shaft of humer, l arm, 7thG +C2841323|T037|AB|S42.335K|ICD10CM|Nondisp oblique fx shaft of humer, l arm, 7thK|Nondisp oblique fx shaft of humer, l arm, 7thK +C2841324|T037|AB|S42.335P|ICD10CM|Nondisp oblique fx shaft of humer, l arm, 7thP|Nondisp oblique fx shaft of humer, l arm, 7thP +C2841325|T037|AB|S42.335S|ICD10CM|Nondisp oblique fx shaft of humerus, left arm, sequela|Nondisp oblique fx shaft of humerus, left arm, sequela +C2841325|T037|PT|S42.335S|ICD10CM|Nondisplaced oblique fracture of shaft of humerus, left arm, sequela|Nondisplaced oblique fracture of shaft of humerus, left arm, sequela +C2841326|T037|AB|S42.336|ICD10CM|Nondisplaced oblique fracture of shaft of humerus, unsp arm|Nondisplaced oblique fracture of shaft of humerus, unsp arm +C2841326|T037|HT|S42.336|ICD10CM|Nondisplaced oblique fracture of shaft of humerus, unspecified arm|Nondisplaced oblique fracture of shaft of humerus, unspecified arm +C2841327|T037|AB|S42.336A|ICD10CM|Nondisp oblique fracture of shaft of humerus, unsp arm, init|Nondisp oblique fracture of shaft of humerus, unsp arm, init +C2841328|T037|AB|S42.336B|ICD10CM|Nondisp oblique fx shaft of humer, unsp arm, init for opn fx|Nondisp oblique fx shaft of humer, unsp arm, init for opn fx +C2841329|T037|AB|S42.336D|ICD10CM|Nondisp oblique fx shaft of humer, unsp arm, 7thD|Nondisp oblique fx shaft of humer, unsp arm, 7thD +C2841330|T037|AB|S42.336G|ICD10CM|Nondisp oblique fx shaft of humer, unsp arm, 7thG|Nondisp oblique fx shaft of humer, unsp arm, 7thG +C2841331|T037|AB|S42.336K|ICD10CM|Nondisp oblique fx shaft of humer, unsp arm, 7thK|Nondisp oblique fx shaft of humer, unsp arm, 7thK +C2841332|T037|AB|S42.336P|ICD10CM|Nondisp oblique fx shaft of humer, unsp arm, 7thP|Nondisp oblique fx shaft of humer, unsp arm, 7thP +C2841333|T037|AB|S42.336S|ICD10CM|Nondisp oblique fx shaft of humerus, unsp arm, sequela|Nondisp oblique fx shaft of humerus, unsp arm, sequela +C2841333|T037|PT|S42.336S|ICD10CM|Nondisplaced oblique fracture of shaft of humerus, unspecified arm, sequela|Nondisplaced oblique fracture of shaft of humerus, unspecified arm, sequela +C2841334|T037|AB|S42.34|ICD10CM|Spiral fracture of shaft of humerus|Spiral fracture of shaft of humerus +C2841334|T037|HT|S42.34|ICD10CM|Spiral fracture of shaft of humerus|Spiral fracture of shaft of humerus +C2841335|T037|AB|S42.341|ICD10CM|Displaced spiral fracture of shaft of humerus, right arm|Displaced spiral fracture of shaft of humerus, right arm +C2841335|T037|HT|S42.341|ICD10CM|Displaced spiral fracture of shaft of humerus, right arm|Displaced spiral fracture of shaft of humerus, right arm +C2841336|T037|PT|S42.341A|ICD10CM|Displaced spiral fracture of shaft of humerus, right arm, initial encounter for closed fracture|Displaced spiral fracture of shaft of humerus, right arm, initial encounter for closed fracture +C2841336|T037|AB|S42.341A|ICD10CM|Displaced spiral fx shaft of humerus, right arm, init|Displaced spiral fx shaft of humerus, right arm, init +C2841337|T037|AB|S42.341B|ICD10CM|Displ spiral fx shaft of humerus, right arm, init for opn fx|Displ spiral fx shaft of humerus, right arm, init for opn fx +C2841337|T037|PT|S42.341B|ICD10CM|Displaced spiral fracture of shaft of humerus, right arm, initial encounter for open fracture|Displaced spiral fracture of shaft of humerus, right arm, initial encounter for open fracture +C2841338|T037|AB|S42.341D|ICD10CM|Displ spiral fx shaft of humer, r arm, 7thD|Displ spiral fx shaft of humer, r arm, 7thD +C2841339|T037|AB|S42.341G|ICD10CM|Displ spiral fx shaft of humer, r arm, 7thG|Displ spiral fx shaft of humer, r arm, 7thG +C2841340|T037|AB|S42.341K|ICD10CM|Displ spiral fx shaft of humer, r arm, 7thK|Displ spiral fx shaft of humer, r arm, 7thK +C2841341|T037|AB|S42.341P|ICD10CM|Displ spiral fx shaft of humer, r arm, 7thP|Displ spiral fx shaft of humer, r arm, 7thP +C2841342|T037|PT|S42.341S|ICD10CM|Displaced spiral fracture of shaft of humerus, right arm, sequela|Displaced spiral fracture of shaft of humerus, right arm, sequela +C2841342|T037|AB|S42.341S|ICD10CM|Displaced spiral fx shaft of humerus, right arm, sequela|Displaced spiral fx shaft of humerus, right arm, sequela +C2841343|T037|AB|S42.342|ICD10CM|Displaced spiral fracture of shaft of humerus, left arm|Displaced spiral fracture of shaft of humerus, left arm +C2841343|T037|HT|S42.342|ICD10CM|Displaced spiral fracture of shaft of humerus, left arm|Displaced spiral fracture of shaft of humerus, left arm +C2841344|T037|PT|S42.342A|ICD10CM|Displaced spiral fracture of shaft of humerus, left arm, initial encounter for closed fracture|Displaced spiral fracture of shaft of humerus, left arm, initial encounter for closed fracture +C2841344|T037|AB|S42.342A|ICD10CM|Displaced spiral fx shaft of humerus, left arm, init|Displaced spiral fx shaft of humerus, left arm, init +C2841345|T037|AB|S42.342B|ICD10CM|Displ spiral fx shaft of humerus, left arm, init for opn fx|Displ spiral fx shaft of humerus, left arm, init for opn fx +C2841345|T037|PT|S42.342B|ICD10CM|Displaced spiral fracture of shaft of humerus, left arm, initial encounter for open fracture|Displaced spiral fracture of shaft of humerus, left arm, initial encounter for open fracture +C2841346|T037|AB|S42.342D|ICD10CM|Displ spiral fx shaft of humer, l arm, 7thD|Displ spiral fx shaft of humer, l arm, 7thD +C2841347|T037|AB|S42.342G|ICD10CM|Displ spiral fx shaft of humer, l arm, 7thG|Displ spiral fx shaft of humer, l arm, 7thG +C2841348|T037|AB|S42.342K|ICD10CM|Displ spiral fx shaft of humer, l arm, 7thK|Displ spiral fx shaft of humer, l arm, 7thK +C2841349|T037|AB|S42.342P|ICD10CM|Displ spiral fx shaft of humer, l arm, 7thP|Displ spiral fx shaft of humer, l arm, 7thP +C2841350|T037|PT|S42.342S|ICD10CM|Displaced spiral fracture of shaft of humerus, left arm, sequela|Displaced spiral fracture of shaft of humerus, left arm, sequela +C2841350|T037|AB|S42.342S|ICD10CM|Displaced spiral fx shaft of humerus, left arm, sequela|Displaced spiral fx shaft of humerus, left arm, sequela +C2841351|T037|AB|S42.343|ICD10CM|Displaced spiral fracture of shaft of humerus, unsp arm|Displaced spiral fracture of shaft of humerus, unsp arm +C2841351|T037|HT|S42.343|ICD10CM|Displaced spiral fracture of shaft of humerus, unspecified arm|Displaced spiral fracture of shaft of humerus, unspecified arm +C2841352|T037|AB|S42.343A|ICD10CM|Displaced spiral fx shaft of humerus, unsp arm, init|Displaced spiral fx shaft of humerus, unsp arm, init +C2841353|T037|AB|S42.343B|ICD10CM|Displ spiral fx shaft of humerus, unsp arm, init for opn fx|Displ spiral fx shaft of humerus, unsp arm, init for opn fx +C2841353|T037|PT|S42.343B|ICD10CM|Displaced spiral fracture of shaft of humerus, unspecified arm, initial encounter for open fracture|Displaced spiral fracture of shaft of humerus, unspecified arm, initial encounter for open fracture +C2841354|T037|AB|S42.343D|ICD10CM|Displ spiral fx shaft of humer, unsp arm, 7thD|Displ spiral fx shaft of humer, unsp arm, 7thD +C2841355|T037|AB|S42.343G|ICD10CM|Displ spiral fx shaft of humer, unsp arm, 7thG|Displ spiral fx shaft of humer, unsp arm, 7thG +C2841356|T037|AB|S42.343K|ICD10CM|Displ spiral fx shaft of humer, unsp arm, 7thK|Displ spiral fx shaft of humer, unsp arm, 7thK +C2841357|T037|AB|S42.343P|ICD10CM|Displ spiral fx shaft of humer, unsp arm, 7thP|Displ spiral fx shaft of humer, unsp arm, 7thP +C2841358|T037|PT|S42.343S|ICD10CM|Displaced spiral fracture of shaft of humerus, unspecified arm, sequela|Displaced spiral fracture of shaft of humerus, unspecified arm, sequela +C2841358|T037|AB|S42.343S|ICD10CM|Displaced spiral fx shaft of humerus, unsp arm, sequela|Displaced spiral fx shaft of humerus, unsp arm, sequela +C2841359|T037|AB|S42.344|ICD10CM|Nondisplaced spiral fracture of shaft of humerus, right arm|Nondisplaced spiral fracture of shaft of humerus, right arm +C2841359|T037|HT|S42.344|ICD10CM|Nondisplaced spiral fracture of shaft of humerus, right arm|Nondisplaced spiral fracture of shaft of humerus, right arm +C2841360|T037|AB|S42.344A|ICD10CM|Nondisp spiral fracture of shaft of humerus, right arm, init|Nondisp spiral fracture of shaft of humerus, right arm, init +C2841360|T037|PT|S42.344A|ICD10CM|Nondisplaced spiral fracture of shaft of humerus, right arm, initial encounter for closed fracture|Nondisplaced spiral fracture of shaft of humerus, right arm, initial encounter for closed fracture +C2841361|T037|AB|S42.344B|ICD10CM|Nondisp spiral fx shaft of humer, right arm, init for opn fx|Nondisp spiral fx shaft of humer, right arm, init for opn fx +C2841361|T037|PT|S42.344B|ICD10CM|Nondisplaced spiral fracture of shaft of humerus, right arm, initial encounter for open fracture|Nondisplaced spiral fracture of shaft of humerus, right arm, initial encounter for open fracture +C2841362|T037|AB|S42.344D|ICD10CM|Nondisp spiral fx shaft of humer, r arm, 7thD|Nondisp spiral fx shaft of humer, r arm, 7thD +C2841363|T037|AB|S42.344G|ICD10CM|Nondisp spiral fx shaft of humer, r arm, 7thG|Nondisp spiral fx shaft of humer, r arm, 7thG +C2841364|T037|AB|S42.344K|ICD10CM|Nondisp spiral fx shaft of humer, r arm, 7thK|Nondisp spiral fx shaft of humer, r arm, 7thK +C2841365|T037|AB|S42.344P|ICD10CM|Nondisp spiral fx shaft of humer, r arm, 7thP|Nondisp spiral fx shaft of humer, r arm, 7thP +C2841366|T037|AB|S42.344S|ICD10CM|Nondisp spiral fx shaft of humerus, right arm, sequela|Nondisp spiral fx shaft of humerus, right arm, sequela +C2841366|T037|PT|S42.344S|ICD10CM|Nondisplaced spiral fracture of shaft of humerus, right arm, sequela|Nondisplaced spiral fracture of shaft of humerus, right arm, sequela +C2841367|T037|AB|S42.345|ICD10CM|Nondisplaced spiral fracture of shaft of humerus, left arm|Nondisplaced spiral fracture of shaft of humerus, left arm +C2841367|T037|HT|S42.345|ICD10CM|Nondisplaced spiral fracture of shaft of humerus, left arm|Nondisplaced spiral fracture of shaft of humerus, left arm +C2841368|T037|AB|S42.345A|ICD10CM|Nondisp spiral fracture of shaft of humerus, left arm, init|Nondisp spiral fracture of shaft of humerus, left arm, init +C2841368|T037|PT|S42.345A|ICD10CM|Nondisplaced spiral fracture of shaft of humerus, left arm, initial encounter for closed fracture|Nondisplaced spiral fracture of shaft of humerus, left arm, initial encounter for closed fracture +C2841369|T037|AB|S42.345B|ICD10CM|Nondisp spiral fx shaft of humer, left arm, init for opn fx|Nondisp spiral fx shaft of humer, left arm, init for opn fx +C2841369|T037|PT|S42.345B|ICD10CM|Nondisplaced spiral fracture of shaft of humerus, left arm, initial encounter for open fracture|Nondisplaced spiral fracture of shaft of humerus, left arm, initial encounter for open fracture +C2841370|T037|AB|S42.345D|ICD10CM|Nondisp spiral fx shaft of humer, l arm, 7thD|Nondisp spiral fx shaft of humer, l arm, 7thD +C2841371|T037|AB|S42.345G|ICD10CM|Nondisp spiral fx shaft of humer, l arm, 7thG|Nondisp spiral fx shaft of humer, l arm, 7thG +C2841372|T037|AB|S42.345K|ICD10CM|Nondisp spiral fx shaft of humer, l arm, 7thK|Nondisp spiral fx shaft of humer, l arm, 7thK +C2841373|T037|AB|S42.345P|ICD10CM|Nondisp spiral fx shaft of humer, l arm, 7thP|Nondisp spiral fx shaft of humer, l arm, 7thP +C2841374|T037|AB|S42.345S|ICD10CM|Nondisp spiral fx shaft of humerus, left arm, sequela|Nondisp spiral fx shaft of humerus, left arm, sequela +C2841374|T037|PT|S42.345S|ICD10CM|Nondisplaced spiral fracture of shaft of humerus, left arm, sequela|Nondisplaced spiral fracture of shaft of humerus, left arm, sequela +C2841375|T037|AB|S42.346|ICD10CM|Nondisplaced spiral fracture of shaft of humerus, unsp arm|Nondisplaced spiral fracture of shaft of humerus, unsp arm +C2841375|T037|HT|S42.346|ICD10CM|Nondisplaced spiral fracture of shaft of humerus, unspecified arm|Nondisplaced spiral fracture of shaft of humerus, unspecified arm +C2841376|T037|AB|S42.346A|ICD10CM|Nondisp spiral fracture of shaft of humerus, unsp arm, init|Nondisp spiral fracture of shaft of humerus, unsp arm, init +C2841377|T037|AB|S42.346B|ICD10CM|Nondisp spiral fx shaft of humer, unsp arm, init for opn fx|Nondisp spiral fx shaft of humer, unsp arm, init for opn fx +C2841378|T037|AB|S42.346D|ICD10CM|Nondisp spiral fx shaft of humer, unsp arm, 7thD|Nondisp spiral fx shaft of humer, unsp arm, 7thD +C2841379|T037|AB|S42.346G|ICD10CM|Nondisp spiral fx shaft of humer, unsp arm, 7thG|Nondisp spiral fx shaft of humer, unsp arm, 7thG +C2841380|T037|AB|S42.346K|ICD10CM|Nondisp spiral fx shaft of humer, unsp arm, 7thK|Nondisp spiral fx shaft of humer, unsp arm, 7thK +C2841381|T037|AB|S42.346P|ICD10CM|Nondisp spiral fx shaft of humer, unsp arm, 7thP|Nondisp spiral fx shaft of humer, unsp arm, 7thP +C2841382|T037|AB|S42.346S|ICD10CM|Nondisp spiral fx shaft of humerus, unsp arm, sequela|Nondisp spiral fx shaft of humerus, unsp arm, sequela +C2841382|T037|PT|S42.346S|ICD10CM|Nondisplaced spiral fracture of shaft of humerus, unspecified arm, sequela|Nondisplaced spiral fracture of shaft of humerus, unspecified arm, sequela +C2841383|T037|AB|S42.35|ICD10CM|Comminuted fracture of shaft of humerus|Comminuted fracture of shaft of humerus +C2841383|T037|HT|S42.35|ICD10CM|Comminuted fracture of shaft of humerus|Comminuted fracture of shaft of humerus +C2841384|T037|AB|S42.351|ICD10CM|Displaced comminuted fracture of shaft of humerus, right arm|Displaced comminuted fracture of shaft of humerus, right arm +C2841384|T037|HT|S42.351|ICD10CM|Displaced comminuted fracture of shaft of humerus, right arm|Displaced comminuted fracture of shaft of humerus, right arm +C2841385|T037|PT|S42.351A|ICD10CM|Displaced comminuted fracture of shaft of humerus, right arm, initial encounter for closed fracture|Displaced comminuted fracture of shaft of humerus, right arm, initial encounter for closed fracture +C2841385|T037|AB|S42.351A|ICD10CM|Displaced comminuted fx shaft of humerus, right arm, init|Displaced comminuted fx shaft of humerus, right arm, init +C2841386|T037|AB|S42.351B|ICD10CM|Displ commnt fx shaft of humerus, right arm, init for opn fx|Displ commnt fx shaft of humerus, right arm, init for opn fx +C2841386|T037|PT|S42.351B|ICD10CM|Displaced comminuted fracture of shaft of humerus, right arm, initial encounter for open fracture|Displaced comminuted fracture of shaft of humerus, right arm, initial encounter for open fracture +C2841387|T037|AB|S42.351D|ICD10CM|Displ commnt fx shaft of humer, r arm, 7thD|Displ commnt fx shaft of humer, r arm, 7thD +C2841388|T037|AB|S42.351G|ICD10CM|Displ commnt fx shaft of humer, r arm, 7thG|Displ commnt fx shaft of humer, r arm, 7thG +C2841389|T037|AB|S42.351K|ICD10CM|Displ commnt fx shaft of humer, r arm, 7thK|Displ commnt fx shaft of humer, r arm, 7thK +C2841390|T037|AB|S42.351P|ICD10CM|Displ commnt fx shaft of humer, r arm, 7thP|Displ commnt fx shaft of humer, r arm, 7thP +C2841391|T037|PT|S42.351S|ICD10CM|Displaced comminuted fracture of shaft of humerus, right arm, sequela|Displaced comminuted fracture of shaft of humerus, right arm, sequela +C2841391|T037|AB|S42.351S|ICD10CM|Displaced comminuted fx shaft of humerus, right arm, sequela|Displaced comminuted fx shaft of humerus, right arm, sequela +C2841392|T037|AB|S42.352|ICD10CM|Displaced comminuted fracture of shaft of humerus, left arm|Displaced comminuted fracture of shaft of humerus, left arm +C2841392|T037|HT|S42.352|ICD10CM|Displaced comminuted fracture of shaft of humerus, left arm|Displaced comminuted fracture of shaft of humerus, left arm +C2841393|T037|PT|S42.352A|ICD10CM|Displaced comminuted fracture of shaft of humerus, left arm, initial encounter for closed fracture|Displaced comminuted fracture of shaft of humerus, left arm, initial encounter for closed fracture +C2841393|T037|AB|S42.352A|ICD10CM|Displaced comminuted fx shaft of humerus, left arm, init|Displaced comminuted fx shaft of humerus, left arm, init +C2841394|T037|AB|S42.352B|ICD10CM|Displ commnt fx shaft of humerus, left arm, init for opn fx|Displ commnt fx shaft of humerus, left arm, init for opn fx +C2841394|T037|PT|S42.352B|ICD10CM|Displaced comminuted fracture of shaft of humerus, left arm, initial encounter for open fracture|Displaced comminuted fracture of shaft of humerus, left arm, initial encounter for open fracture +C2841395|T037|AB|S42.352D|ICD10CM|Displ commnt fx shaft of humer, l arm, 7thD|Displ commnt fx shaft of humer, l arm, 7thD +C2841396|T037|AB|S42.352G|ICD10CM|Displ commnt fx shaft of humer, l arm, 7thG|Displ commnt fx shaft of humer, l arm, 7thG +C2841397|T037|AB|S42.352K|ICD10CM|Displ commnt fx shaft of humer, l arm, 7thK|Displ commnt fx shaft of humer, l arm, 7thK +C2841398|T037|AB|S42.352P|ICD10CM|Displ commnt fx shaft of humer, l arm, 7thP|Displ commnt fx shaft of humer, l arm, 7thP +C2841399|T037|PT|S42.352S|ICD10CM|Displaced comminuted fracture of shaft of humerus, left arm, sequela|Displaced comminuted fracture of shaft of humerus, left arm, sequela +C2841399|T037|AB|S42.352S|ICD10CM|Displaced comminuted fx shaft of humerus, left arm, sequela|Displaced comminuted fx shaft of humerus, left arm, sequela +C2841400|T037|AB|S42.353|ICD10CM|Displaced comminuted fracture of shaft of humerus, unsp arm|Displaced comminuted fracture of shaft of humerus, unsp arm +C2841400|T037|HT|S42.353|ICD10CM|Displaced comminuted fracture of shaft of humerus, unspecified arm|Displaced comminuted fracture of shaft of humerus, unspecified arm +C2841401|T037|AB|S42.353A|ICD10CM|Displaced comminuted fx shaft of humerus, unsp arm, init|Displaced comminuted fx shaft of humerus, unsp arm, init +C2841402|T037|AB|S42.353B|ICD10CM|Displ commnt fx shaft of humerus, unsp arm, init for opn fx|Displ commnt fx shaft of humerus, unsp arm, init for opn fx +C2841403|T037|AB|S42.353D|ICD10CM|Displ commnt fx shaft of humer, unsp arm, 7thD|Displ commnt fx shaft of humer, unsp arm, 7thD +C2841404|T037|AB|S42.353G|ICD10CM|Displ commnt fx shaft of humer, unsp arm, 7thG|Displ commnt fx shaft of humer, unsp arm, 7thG +C2841405|T037|AB|S42.353K|ICD10CM|Displ commnt fx shaft of humer, unsp arm, 7thK|Displ commnt fx shaft of humer, unsp arm, 7thK +C2841406|T037|AB|S42.353P|ICD10CM|Displ commnt fx shaft of humer, unsp arm, 7thP|Displ commnt fx shaft of humer, unsp arm, 7thP +C2841407|T037|PT|S42.353S|ICD10CM|Displaced comminuted fracture of shaft of humerus, unspecified arm, sequela|Displaced comminuted fracture of shaft of humerus, unspecified arm, sequela +C2841407|T037|AB|S42.353S|ICD10CM|Displaced comminuted fx shaft of humerus, unsp arm, sequela|Displaced comminuted fx shaft of humerus, unsp arm, sequela +C2841408|T037|AB|S42.354|ICD10CM|Nondisp comminuted fracture of shaft of humerus, right arm|Nondisp comminuted fracture of shaft of humerus, right arm +C2841408|T037|HT|S42.354|ICD10CM|Nondisplaced comminuted fracture of shaft of humerus, right arm|Nondisplaced comminuted fracture of shaft of humerus, right arm +C2841409|T037|AB|S42.354A|ICD10CM|Nondisp comminuted fx shaft of humerus, right arm, init|Nondisp comminuted fx shaft of humerus, right arm, init +C2841410|T037|AB|S42.354B|ICD10CM|Nondisp commnt fx shaft of humer, right arm, init for opn fx|Nondisp commnt fx shaft of humer, right arm, init for opn fx +C2841410|T037|PT|S42.354B|ICD10CM|Nondisplaced comminuted fracture of shaft of humerus, right arm, initial encounter for open fracture|Nondisplaced comminuted fracture of shaft of humerus, right arm, initial encounter for open fracture +C2841411|T037|AB|S42.354D|ICD10CM|Nondisp commnt fx shaft of humer, r arm, 7thD|Nondisp commnt fx shaft of humer, r arm, 7thD +C2841412|T037|AB|S42.354G|ICD10CM|Nondisp commnt fx shaft of humer, r arm, 7thG|Nondisp commnt fx shaft of humer, r arm, 7thG +C2841413|T037|AB|S42.354K|ICD10CM|Nondisp commnt fx shaft of humer, r arm, 7thK|Nondisp commnt fx shaft of humer, r arm, 7thK +C2841414|T037|AB|S42.354P|ICD10CM|Nondisp commnt fx shaft of humer, r arm, 7thP|Nondisp commnt fx shaft of humer, r arm, 7thP +C2841415|T037|AB|S42.354S|ICD10CM|Nondisp comminuted fx shaft of humerus, right arm, sequela|Nondisp comminuted fx shaft of humerus, right arm, sequela +C2841415|T037|PT|S42.354S|ICD10CM|Nondisplaced comminuted fracture of shaft of humerus, right arm, sequela|Nondisplaced comminuted fracture of shaft of humerus, right arm, sequela +C2841416|T037|AB|S42.355|ICD10CM|Nondisp comminuted fracture of shaft of humerus, left arm|Nondisp comminuted fracture of shaft of humerus, left arm +C2841416|T037|HT|S42.355|ICD10CM|Nondisplaced comminuted fracture of shaft of humerus, left arm|Nondisplaced comminuted fracture of shaft of humerus, left arm +C2841417|T037|AB|S42.355A|ICD10CM|Nondisp comminuted fx shaft of humerus, left arm, init|Nondisp comminuted fx shaft of humerus, left arm, init +C2841418|T037|AB|S42.355B|ICD10CM|Nondisp commnt fx shaft of humer, left arm, init for opn fx|Nondisp commnt fx shaft of humer, left arm, init for opn fx +C2841418|T037|PT|S42.355B|ICD10CM|Nondisplaced comminuted fracture of shaft of humerus, left arm, initial encounter for open fracture|Nondisplaced comminuted fracture of shaft of humerus, left arm, initial encounter for open fracture +C2841419|T037|AB|S42.355D|ICD10CM|Nondisp commnt fx shaft of humer, l arm, 7thD|Nondisp commnt fx shaft of humer, l arm, 7thD +C2841420|T037|AB|S42.355G|ICD10CM|Nondisp commnt fx shaft of humer, l arm, 7thG|Nondisp commnt fx shaft of humer, l arm, 7thG +C2841421|T037|AB|S42.355K|ICD10CM|Nondisp commnt fx shaft of humer, l arm, 7thK|Nondisp commnt fx shaft of humer, l arm, 7thK +C2841422|T037|AB|S42.355P|ICD10CM|Nondisp commnt fx shaft of humer, l arm, 7thP|Nondisp commnt fx shaft of humer, l arm, 7thP +C2841423|T037|AB|S42.355S|ICD10CM|Nondisp comminuted fx shaft of humerus, left arm, sequela|Nondisp comminuted fx shaft of humerus, left arm, sequela +C2841423|T037|PT|S42.355S|ICD10CM|Nondisplaced comminuted fracture of shaft of humerus, left arm, sequela|Nondisplaced comminuted fracture of shaft of humerus, left arm, sequela +C2841424|T037|AB|S42.356|ICD10CM|Nondisp comminuted fracture of shaft of humerus, unsp arm|Nondisp comminuted fracture of shaft of humerus, unsp arm +C2841424|T037|HT|S42.356|ICD10CM|Nondisplaced comminuted fracture of shaft of humerus, unspecified arm|Nondisplaced comminuted fracture of shaft of humerus, unspecified arm +C2841425|T037|AB|S42.356A|ICD10CM|Nondisp comminuted fx shaft of humerus, unsp arm, init|Nondisp comminuted fx shaft of humerus, unsp arm, init +C2841426|T037|AB|S42.356B|ICD10CM|Nondisp commnt fx shaft of humer, unsp arm, init for opn fx|Nondisp commnt fx shaft of humer, unsp arm, init for opn fx +C2841427|T037|AB|S42.356D|ICD10CM|Nondisp commnt fx shaft of humer, unsp arm, 7thD|Nondisp commnt fx shaft of humer, unsp arm, 7thD +C2841428|T037|AB|S42.356G|ICD10CM|Nondisp commnt fx shaft of humer, unsp arm, 7thG|Nondisp commnt fx shaft of humer, unsp arm, 7thG +C2841429|T037|AB|S42.356K|ICD10CM|Nondisp commnt fx shaft of humer, unsp arm, 7thK|Nondisp commnt fx shaft of humer, unsp arm, 7thK +C2841430|T037|AB|S42.356P|ICD10CM|Nondisp commnt fx shaft of humer, unsp arm, 7thP|Nondisp commnt fx shaft of humer, unsp arm, 7thP +C2841431|T037|AB|S42.356S|ICD10CM|Nondisp comminuted fx shaft of humerus, unsp arm, sequela|Nondisp comminuted fx shaft of humerus, unsp arm, sequela +C2841431|T037|PT|S42.356S|ICD10CM|Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, sequela|Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, sequela +C2841432|T037|AB|S42.36|ICD10CM|Segmental fracture of shaft of humerus|Segmental fracture of shaft of humerus +C2841432|T037|HT|S42.36|ICD10CM|Segmental fracture of shaft of humerus|Segmental fracture of shaft of humerus +C2841433|T037|AB|S42.361|ICD10CM|Displaced segmental fracture of shaft of humerus, right arm|Displaced segmental fracture of shaft of humerus, right arm +C2841433|T037|HT|S42.361|ICD10CM|Displaced segmental fracture of shaft of humerus, right arm|Displaced segmental fracture of shaft of humerus, right arm +C2841434|T037|PT|S42.361A|ICD10CM|Displaced segmental fracture of shaft of humerus, right arm, initial encounter for closed fracture|Displaced segmental fracture of shaft of humerus, right arm, initial encounter for closed fracture +C2841434|T037|AB|S42.361A|ICD10CM|Displaced segmental fx shaft of humerus, right arm, init|Displaced segmental fx shaft of humerus, right arm, init +C2841435|T037|AB|S42.361B|ICD10CM|Displ seg fx shaft of humerus, right arm, init for opn fx|Displ seg fx shaft of humerus, right arm, init for opn fx +C2841435|T037|PT|S42.361B|ICD10CM|Displaced segmental fracture of shaft of humerus, right arm, initial encounter for open fracture|Displaced segmental fracture of shaft of humerus, right arm, initial encounter for open fracture +C2841436|T037|AB|S42.361D|ICD10CM|Displ seg fx shaft of humer, r arm, subs for fx w routn heal|Displ seg fx shaft of humer, r arm, subs for fx w routn heal +C2841437|T037|AB|S42.361G|ICD10CM|Displ seg fx shaft of humer, r arm, subs for fx w delay heal|Displ seg fx shaft of humer, r arm, subs for fx w delay heal +C2841438|T037|AB|S42.361K|ICD10CM|Displ seg fx shaft of humer, r arm, subs for fx w nonunion|Displ seg fx shaft of humer, r arm, subs for fx w nonunion +C2841439|T037|AB|S42.361P|ICD10CM|Displ seg fx shaft of humer, r arm, subs for fx w malunion|Displ seg fx shaft of humer, r arm, subs for fx w malunion +C2841440|T037|PT|S42.361S|ICD10CM|Displaced segmental fracture of shaft of humerus, right arm, sequela|Displaced segmental fracture of shaft of humerus, right arm, sequela +C2841440|T037|AB|S42.361S|ICD10CM|Displaced segmental fx shaft of humerus, right arm, sequela|Displaced segmental fx shaft of humerus, right arm, sequela +C2841441|T037|AB|S42.362|ICD10CM|Displaced segmental fracture of shaft of humerus, left arm|Displaced segmental fracture of shaft of humerus, left arm +C2841441|T037|HT|S42.362|ICD10CM|Displaced segmental fracture of shaft of humerus, left arm|Displaced segmental fracture of shaft of humerus, left arm +C2841442|T037|PT|S42.362A|ICD10CM|Displaced segmental fracture of shaft of humerus, left arm, initial encounter for closed fracture|Displaced segmental fracture of shaft of humerus, left arm, initial encounter for closed fracture +C2841442|T037|AB|S42.362A|ICD10CM|Displaced segmental fx shaft of humerus, left arm, init|Displaced segmental fx shaft of humerus, left arm, init +C2841443|T037|AB|S42.362B|ICD10CM|Displ seg fx shaft of humerus, left arm, init for opn fx|Displ seg fx shaft of humerus, left arm, init for opn fx +C2841443|T037|PT|S42.362B|ICD10CM|Displaced segmental fracture of shaft of humerus, left arm, initial encounter for open fracture|Displaced segmental fracture of shaft of humerus, left arm, initial encounter for open fracture +C2841444|T037|AB|S42.362D|ICD10CM|Displ seg fx shaft of humer, l arm, subs for fx w routn heal|Displ seg fx shaft of humer, l arm, subs for fx w routn heal +C2841445|T037|AB|S42.362G|ICD10CM|Displ seg fx shaft of humer, l arm, subs for fx w delay heal|Displ seg fx shaft of humer, l arm, subs for fx w delay heal +C2841446|T037|AB|S42.362K|ICD10CM|Displ seg fx shaft of humer, l arm, subs for fx w nonunion|Displ seg fx shaft of humer, l arm, subs for fx w nonunion +C2841447|T037|AB|S42.362P|ICD10CM|Displ seg fx shaft of humer, l arm, subs for fx w malunion|Displ seg fx shaft of humer, l arm, subs for fx w malunion +C2841448|T037|PT|S42.362S|ICD10CM|Displaced segmental fracture of shaft of humerus, left arm, sequela|Displaced segmental fracture of shaft of humerus, left arm, sequela +C2841448|T037|AB|S42.362S|ICD10CM|Displaced segmental fx shaft of humerus, left arm, sequela|Displaced segmental fx shaft of humerus, left arm, sequela +C2841449|T037|AB|S42.363|ICD10CM|Displaced segmental fracture of shaft of humerus, unsp arm|Displaced segmental fracture of shaft of humerus, unsp arm +C2841449|T037|HT|S42.363|ICD10CM|Displaced segmental fracture of shaft of humerus, unspecified arm|Displaced segmental fracture of shaft of humerus, unspecified arm +C2841450|T037|AB|S42.363A|ICD10CM|Displaced segmental fx shaft of humerus, unsp arm, init|Displaced segmental fx shaft of humerus, unsp arm, init +C2841451|T037|AB|S42.363B|ICD10CM|Displ seg fx shaft of humerus, unsp arm, init for opn fx|Displ seg fx shaft of humerus, unsp arm, init for opn fx +C2841452|T037|AB|S42.363D|ICD10CM|Displ seg fx shaft of humer, unsp arm, 7thD|Displ seg fx shaft of humer, unsp arm, 7thD +C2841453|T037|AB|S42.363G|ICD10CM|Displ seg fx shaft of humer, unsp arm, 7thG|Displ seg fx shaft of humer, unsp arm, 7thG +C2841454|T037|AB|S42.363K|ICD10CM|Displ seg fx shaft of humer, unsp arm, 7thK|Displ seg fx shaft of humer, unsp arm, 7thK +C2841455|T037|AB|S42.363P|ICD10CM|Displ seg fx shaft of humer, unsp arm, 7thP|Displ seg fx shaft of humer, unsp arm, 7thP +C2841456|T037|PT|S42.363S|ICD10CM|Displaced segmental fracture of shaft of humerus, unspecified arm, sequela|Displaced segmental fracture of shaft of humerus, unspecified arm, sequela +C2841456|T037|AB|S42.363S|ICD10CM|Displaced segmental fx shaft of humerus, unsp arm, sequela|Displaced segmental fx shaft of humerus, unsp arm, sequela +C2841457|T037|AB|S42.364|ICD10CM|Nondisp segmental fracture of shaft of humerus, right arm|Nondisp segmental fracture of shaft of humerus, right arm +C2841457|T037|HT|S42.364|ICD10CM|Nondisplaced segmental fracture of shaft of humerus, right arm|Nondisplaced segmental fracture of shaft of humerus, right arm +C2841458|T037|AB|S42.364A|ICD10CM|Nondisp segmental fx shaft of humerus, right arm, init|Nondisp segmental fx shaft of humerus, right arm, init +C2841459|T037|AB|S42.364B|ICD10CM|Nondisp seg fx shaft of humerus, right arm, init for opn fx|Nondisp seg fx shaft of humerus, right arm, init for opn fx +C2841459|T037|PT|S42.364B|ICD10CM|Nondisplaced segmental fracture of shaft of humerus, right arm, initial encounter for open fracture|Nondisplaced segmental fracture of shaft of humerus, right arm, initial encounter for open fracture +C2841460|T037|AB|S42.364D|ICD10CM|Nondisp seg fx shaft of humer, r arm, 7thD|Nondisp seg fx shaft of humer, r arm, 7thD +C2841461|T037|AB|S42.364G|ICD10CM|Nondisp seg fx shaft of humer, r arm, 7thG|Nondisp seg fx shaft of humer, r arm, 7thG +C2841462|T037|AB|S42.364K|ICD10CM|Nondisp seg fx shaft of humer, r arm, subs for fx w nonunion|Nondisp seg fx shaft of humer, r arm, subs for fx w nonunion +C2841463|T037|AB|S42.364P|ICD10CM|Nondisp seg fx shaft of humer, r arm, subs for fx w malunion|Nondisp seg fx shaft of humer, r arm, subs for fx w malunion +C2841464|T037|AB|S42.364S|ICD10CM|Nondisp segmental fx shaft of humerus, right arm, sequela|Nondisp segmental fx shaft of humerus, right arm, sequela +C2841464|T037|PT|S42.364S|ICD10CM|Nondisplaced segmental fracture of shaft of humerus, right arm, sequela|Nondisplaced segmental fracture of shaft of humerus, right arm, sequela +C2841465|T037|AB|S42.365|ICD10CM|Nondisp segmental fracture of shaft of humerus, left arm|Nondisp segmental fracture of shaft of humerus, left arm +C2841465|T037|HT|S42.365|ICD10CM|Nondisplaced segmental fracture of shaft of humerus, left arm|Nondisplaced segmental fracture of shaft of humerus, left arm +C2841466|T037|AB|S42.365A|ICD10CM|Nondisp segmental fx shaft of humerus, left arm, init|Nondisp segmental fx shaft of humerus, left arm, init +C2841466|T037|PT|S42.365A|ICD10CM|Nondisplaced segmental fracture of shaft of humerus, left arm, initial encounter for closed fracture|Nondisplaced segmental fracture of shaft of humerus, left arm, initial encounter for closed fracture +C2841467|T037|AB|S42.365B|ICD10CM|Nondisp seg fx shaft of humerus, left arm, init for opn fx|Nondisp seg fx shaft of humerus, left arm, init for opn fx +C2841467|T037|PT|S42.365B|ICD10CM|Nondisplaced segmental fracture of shaft of humerus, left arm, initial encounter for open fracture|Nondisplaced segmental fracture of shaft of humerus, left arm, initial encounter for open fracture +C2841468|T037|AB|S42.365D|ICD10CM|Nondisp seg fx shaft of humer, l arm, 7thD|Nondisp seg fx shaft of humer, l arm, 7thD +C2841469|T037|AB|S42.365G|ICD10CM|Nondisp seg fx shaft of humer, l arm, 7thG|Nondisp seg fx shaft of humer, l arm, 7thG +C2841470|T037|AB|S42.365K|ICD10CM|Nondisp seg fx shaft of humer, l arm, subs for fx w nonunion|Nondisp seg fx shaft of humer, l arm, subs for fx w nonunion +C2841471|T037|AB|S42.365P|ICD10CM|Nondisp seg fx shaft of humer, l arm, subs for fx w malunion|Nondisp seg fx shaft of humer, l arm, subs for fx w malunion +C2841472|T037|AB|S42.365S|ICD10CM|Nondisp segmental fx shaft of humerus, left arm, sequela|Nondisp segmental fx shaft of humerus, left arm, sequela +C2841472|T037|PT|S42.365S|ICD10CM|Nondisplaced segmental fracture of shaft of humerus, left arm, sequela|Nondisplaced segmental fracture of shaft of humerus, left arm, sequela +C2841473|T037|AB|S42.366|ICD10CM|Nondisp segmental fracture of shaft of humerus, unsp arm|Nondisp segmental fracture of shaft of humerus, unsp arm +C2841473|T037|HT|S42.366|ICD10CM|Nondisplaced segmental fracture of shaft of humerus, unspecified arm|Nondisplaced segmental fracture of shaft of humerus, unspecified arm +C2841474|T037|AB|S42.366A|ICD10CM|Nondisp segmental fx shaft of humerus, unsp arm, init|Nondisp segmental fx shaft of humerus, unsp arm, init +C2841475|T037|AB|S42.366B|ICD10CM|Nondisp seg fx shaft of humerus, unsp arm, init for opn fx|Nondisp seg fx shaft of humerus, unsp arm, init for opn fx +C2841476|T037|AB|S42.366D|ICD10CM|Nondisp seg fx shaft of humer, unsp arm, 7thD|Nondisp seg fx shaft of humer, unsp arm, 7thD +C2841477|T037|AB|S42.366G|ICD10CM|Nondisp seg fx shaft of humer, unsp arm, 7thG|Nondisp seg fx shaft of humer, unsp arm, 7thG +C2841478|T037|AB|S42.366K|ICD10CM|Nondisp seg fx shaft of humer, unsp arm, 7thK|Nondisp seg fx shaft of humer, unsp arm, 7thK +C2841479|T037|AB|S42.366P|ICD10CM|Nondisp seg fx shaft of humer, unsp arm, 7thP|Nondisp seg fx shaft of humer, unsp arm, 7thP +C2841480|T037|AB|S42.366S|ICD10CM|Nondisp segmental fx shaft of humerus, unsp arm, sequela|Nondisp segmental fx shaft of humerus, unsp arm, sequela +C2841480|T037|PT|S42.366S|ICD10CM|Nondisplaced segmental fracture of shaft of humerus, unspecified arm, sequela|Nondisplaced segmental fracture of shaft of humerus, unspecified arm, sequela +C2841481|T037|AB|S42.39|ICD10CM|Other fracture of shaft of humerus|Other fracture of shaft of humerus +C2841481|T037|HT|S42.39|ICD10CM|Other fracture of shaft of humerus|Other fracture of shaft of humerus +C2841482|T037|AB|S42.391|ICD10CM|Other fracture of shaft of right humerus|Other fracture of shaft of right humerus +C2841482|T037|HT|S42.391|ICD10CM|Other fracture of shaft of right humerus|Other fracture of shaft of right humerus +C2841483|T037|AB|S42.391A|ICD10CM|Oth fracture of shaft of right humerus, init for clos fx|Oth fracture of shaft of right humerus, init for clos fx +C2841483|T037|PT|S42.391A|ICD10CM|Other fracture of shaft of right humerus, initial encounter for closed fracture|Other fracture of shaft of right humerus, initial encounter for closed fracture +C2841484|T037|AB|S42.391B|ICD10CM|Oth fracture of shaft of right humerus, init for opn fx|Oth fracture of shaft of right humerus, init for opn fx +C2841484|T037|PT|S42.391B|ICD10CM|Other fracture of shaft of right humerus, initial encounter for open fracture|Other fracture of shaft of right humerus, initial encounter for open fracture +C2841485|T037|AB|S42.391D|ICD10CM|Oth fracture of shaft of r humerus, subs for fx w routn heal|Oth fracture of shaft of r humerus, subs for fx w routn heal +C2841485|T037|PT|S42.391D|ICD10CM|Other fracture of shaft of right humerus, subsequent encounter for fracture with routine healing|Other fracture of shaft of right humerus, subsequent encounter for fracture with routine healing +C2841486|T037|AB|S42.391G|ICD10CM|Oth fracture of shaft of r humerus, subs for fx w delay heal|Oth fracture of shaft of r humerus, subs for fx w delay heal +C2841486|T037|PT|S42.391G|ICD10CM|Other fracture of shaft of right humerus, subsequent encounter for fracture with delayed healing|Other fracture of shaft of right humerus, subsequent encounter for fracture with delayed healing +C2841487|T037|AB|S42.391K|ICD10CM|Oth fracture of shaft of r humerus, subs for fx w nonunion|Oth fracture of shaft of r humerus, subs for fx w nonunion +C2841487|T037|PT|S42.391K|ICD10CM|Other fracture of shaft of right humerus, subsequent encounter for fracture with nonunion|Other fracture of shaft of right humerus, subsequent encounter for fracture with nonunion +C2841488|T037|AB|S42.391P|ICD10CM|Oth fracture of shaft of r humerus, subs for fx w malunion|Oth fracture of shaft of r humerus, subs for fx w malunion +C2841488|T037|PT|S42.391P|ICD10CM|Other fracture of shaft of right humerus, subsequent encounter for fracture with malunion|Other fracture of shaft of right humerus, subsequent encounter for fracture with malunion +C2841489|T037|AB|S42.391S|ICD10CM|Other fracture of shaft of right humerus, sequela|Other fracture of shaft of right humerus, sequela +C2841489|T037|PT|S42.391S|ICD10CM|Other fracture of shaft of right humerus, sequela|Other fracture of shaft of right humerus, sequela +C2841490|T037|AB|S42.392|ICD10CM|Other fracture of shaft of left humerus|Other fracture of shaft of left humerus +C2841490|T037|HT|S42.392|ICD10CM|Other fracture of shaft of left humerus|Other fracture of shaft of left humerus +C2841491|T037|AB|S42.392A|ICD10CM|Oth fracture of shaft of left humerus, init for clos fx|Oth fracture of shaft of left humerus, init for clos fx +C2841491|T037|PT|S42.392A|ICD10CM|Other fracture of shaft of left humerus, initial encounter for closed fracture|Other fracture of shaft of left humerus, initial encounter for closed fracture +C2841492|T037|AB|S42.392B|ICD10CM|Oth fracture of shaft of left humerus, init for opn fx|Oth fracture of shaft of left humerus, init for opn fx +C2841492|T037|PT|S42.392B|ICD10CM|Other fracture of shaft of left humerus, initial encounter for open fracture|Other fracture of shaft of left humerus, initial encounter for open fracture +C2841493|T037|AB|S42.392D|ICD10CM|Oth fracture of shaft of l humerus, subs for fx w routn heal|Oth fracture of shaft of l humerus, subs for fx w routn heal +C2841493|T037|PT|S42.392D|ICD10CM|Other fracture of shaft of left humerus, subsequent encounter for fracture with routine healing|Other fracture of shaft of left humerus, subsequent encounter for fracture with routine healing +C2841494|T037|AB|S42.392G|ICD10CM|Oth fracture of shaft of l humerus, subs for fx w delay heal|Oth fracture of shaft of l humerus, subs for fx w delay heal +C2841494|T037|PT|S42.392G|ICD10CM|Other fracture of shaft of left humerus, subsequent encounter for fracture with delayed healing|Other fracture of shaft of left humerus, subsequent encounter for fracture with delayed healing +C2841495|T037|AB|S42.392K|ICD10CM|Oth fracture of shaft of l humerus, subs for fx w nonunion|Oth fracture of shaft of l humerus, subs for fx w nonunion +C2841495|T037|PT|S42.392K|ICD10CM|Other fracture of shaft of left humerus, subsequent encounter for fracture with nonunion|Other fracture of shaft of left humerus, subsequent encounter for fracture with nonunion +C2841496|T037|AB|S42.392P|ICD10CM|Oth fracture of shaft of l humerus, subs for fx w malunion|Oth fracture of shaft of l humerus, subs for fx w malunion +C2841496|T037|PT|S42.392P|ICD10CM|Other fracture of shaft of left humerus, subsequent encounter for fracture with malunion|Other fracture of shaft of left humerus, subsequent encounter for fracture with malunion +C2841497|T037|AB|S42.392S|ICD10CM|Other fracture of shaft of left humerus, sequela|Other fracture of shaft of left humerus, sequela +C2841497|T037|PT|S42.392S|ICD10CM|Other fracture of shaft of left humerus, sequela|Other fracture of shaft of left humerus, sequela +C2841498|T037|AB|S42.399|ICD10CM|Other fracture of shaft of unspecified humerus|Other fracture of shaft of unspecified humerus +C2841498|T037|HT|S42.399|ICD10CM|Other fracture of shaft of unspecified humerus|Other fracture of shaft of unspecified humerus +C2841499|T037|AB|S42.399A|ICD10CM|Oth fracture of shaft of unsp humerus, init for clos fx|Oth fracture of shaft of unsp humerus, init for clos fx +C2841499|T037|PT|S42.399A|ICD10CM|Other fracture of shaft of unspecified humerus, initial encounter for closed fracture|Other fracture of shaft of unspecified humerus, initial encounter for closed fracture +C2841500|T037|AB|S42.399B|ICD10CM|Oth fracture of shaft of unsp humerus, init for opn fx|Oth fracture of shaft of unsp humerus, init for opn fx +C2841500|T037|PT|S42.399B|ICD10CM|Other fracture of shaft of unspecified humerus, initial encounter for open fracture|Other fracture of shaft of unspecified humerus, initial encounter for open fracture +C2841501|T037|AB|S42.399D|ICD10CM|Oth fx shaft of unsp humerus, subs for fx w routn heal|Oth fx shaft of unsp humerus, subs for fx w routn heal +C2841502|T037|AB|S42.399G|ICD10CM|Oth fx shaft of unsp humerus, subs for fx w delay heal|Oth fx shaft of unsp humerus, subs for fx w delay heal +C2841503|T037|AB|S42.399K|ICD10CM|Oth fx shaft of unsp humerus, subs for fx w nonunion|Oth fx shaft of unsp humerus, subs for fx w nonunion +C2841503|T037|PT|S42.399K|ICD10CM|Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with nonunion|Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with nonunion +C2841504|T037|AB|S42.399P|ICD10CM|Oth fx shaft of unsp humerus, subs for fx w malunion|Oth fx shaft of unsp humerus, subs for fx w malunion +C2841504|T037|PT|S42.399P|ICD10CM|Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with malunion|Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with malunion +C2841505|T037|AB|S42.399S|ICD10CM|Other fracture of shaft of unspecified humerus, sequela|Other fracture of shaft of unspecified humerus, sequela +C2841505|T037|PT|S42.399S|ICD10CM|Other fracture of shaft of unspecified humerus, sequela|Other fracture of shaft of unspecified humerus, sequela +C0272613|T037|ET|S42.4|ICD10CM|Fracture of distal end of humerus|Fracture of distal end of humerus +C0272613|T037|HT|S42.4|ICD10CM|Fracture of lower end of humerus|Fracture of lower end of humerus +C0272613|T037|AB|S42.4|ICD10CM|Fracture of lower end of humerus|Fracture of lower end of humerus +C0272613|T037|PT|S42.4|ICD10|Fracture of lower end of humerus|Fracture of lower end of humerus +C0600106|T037|ET|S42.40|ICD10CM|Fracture of elbow NOS|Fracture of elbow NOS +C2841506|T037|AB|S42.40|ICD10CM|Unspecified fracture of lower end of humerus|Unspecified fracture of lower end of humerus +C2841506|T037|HT|S42.40|ICD10CM|Unspecified fracture of lower end of humerus|Unspecified fracture of lower end of humerus +C2841507|T037|AB|S42.401|ICD10CM|Unspecified fracture of lower end of right humerus|Unspecified fracture of lower end of right humerus +C2841507|T037|HT|S42.401|ICD10CM|Unspecified fracture of lower end of right humerus|Unspecified fracture of lower end of right humerus +C2841508|T037|AB|S42.401A|ICD10CM|Unsp fracture of lower end of right humerus, init|Unsp fracture of lower end of right humerus, init +C2841508|T037|PT|S42.401A|ICD10CM|Unspecified fracture of lower end of right humerus, initial encounter for closed fracture|Unspecified fracture of lower end of right humerus, initial encounter for closed fracture +C2841509|T037|AB|S42.401B|ICD10CM|Unsp fracture of lower end of right humerus, init for opn fx|Unsp fracture of lower end of right humerus, init for opn fx +C2841509|T037|PT|S42.401B|ICD10CM|Unspecified fracture of lower end of right humerus, initial encounter for open fracture|Unspecified fracture of lower end of right humerus, initial encounter for open fracture +C2841510|T037|AB|S42.401D|ICD10CM|Unsp fx lower end of r humerus, subs for fx w routn heal|Unsp fx lower end of r humerus, subs for fx w routn heal +C2841511|T037|AB|S42.401G|ICD10CM|Unsp fx lower end of r humerus, subs for fx w delay heal|Unsp fx lower end of r humerus, subs for fx w delay heal +C2841512|T037|AB|S42.401K|ICD10CM|Unsp fx lower end of r humerus, subs for fx w nonunion|Unsp fx lower end of r humerus, subs for fx w nonunion +C2841512|T037|PT|S42.401K|ICD10CM|Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with nonunion|Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with nonunion +C2841513|T037|AB|S42.401P|ICD10CM|Unsp fx lower end of r humerus, subs for fx w malunion|Unsp fx lower end of r humerus, subs for fx w malunion +C2841513|T037|PT|S42.401P|ICD10CM|Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with malunion|Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with malunion +C2841514|T037|PT|S42.401S|ICD10CM|Unspecified fracture of lower end of right humerus, sequela|Unspecified fracture of lower end of right humerus, sequela +C2841514|T037|AB|S42.401S|ICD10CM|Unspecified fracture of lower end of right humerus, sequela|Unspecified fracture of lower end of right humerus, sequela +C2841515|T037|AB|S42.402|ICD10CM|Unspecified fracture of lower end of left humerus|Unspecified fracture of lower end of left humerus +C2841515|T037|HT|S42.402|ICD10CM|Unspecified fracture of lower end of left humerus|Unspecified fracture of lower end of left humerus +C2841516|T037|AB|S42.402A|ICD10CM|Unsp fracture of lower end of left humerus, init for clos fx|Unsp fracture of lower end of left humerus, init for clos fx +C2841516|T037|PT|S42.402A|ICD10CM|Unspecified fracture of lower end of left humerus, initial encounter for closed fracture|Unspecified fracture of lower end of left humerus, initial encounter for closed fracture +C2841517|T037|AB|S42.402B|ICD10CM|Unsp fracture of lower end of left humerus, init for opn fx|Unsp fracture of lower end of left humerus, init for opn fx +C2841517|T037|PT|S42.402B|ICD10CM|Unspecified fracture of lower end of left humerus, initial encounter for open fracture|Unspecified fracture of lower end of left humerus, initial encounter for open fracture +C2841518|T037|AB|S42.402D|ICD10CM|Unsp fx lower end of l humerus, subs for fx w routn heal|Unsp fx lower end of l humerus, subs for fx w routn heal +C2841519|T037|AB|S42.402G|ICD10CM|Unsp fx lower end of l humerus, subs for fx w delay heal|Unsp fx lower end of l humerus, subs for fx w delay heal +C2841520|T037|AB|S42.402K|ICD10CM|Unsp fx lower end of l humerus, subs for fx w nonunion|Unsp fx lower end of l humerus, subs for fx w nonunion +C2841520|T037|PT|S42.402K|ICD10CM|Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with nonunion|Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with nonunion +C2841521|T037|AB|S42.402P|ICD10CM|Unsp fx lower end of l humerus, subs for fx w malunion|Unsp fx lower end of l humerus, subs for fx w malunion +C2841521|T037|PT|S42.402P|ICD10CM|Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with malunion|Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with malunion +C2841522|T037|PT|S42.402S|ICD10CM|Unspecified fracture of lower end of left humerus, sequela|Unspecified fracture of lower end of left humerus, sequela +C2841522|T037|AB|S42.402S|ICD10CM|Unspecified fracture of lower end of left humerus, sequela|Unspecified fracture of lower end of left humerus, sequela +C2841523|T037|AB|S42.409|ICD10CM|Unspecified fracture of lower end of unspecified humerus|Unspecified fracture of lower end of unspecified humerus +C2841523|T037|HT|S42.409|ICD10CM|Unspecified fracture of lower end of unspecified humerus|Unspecified fracture of lower end of unspecified humerus +C2841524|T037|AB|S42.409A|ICD10CM|Unsp fracture of lower end of unsp humerus, init for clos fx|Unsp fracture of lower end of unsp humerus, init for clos fx +C2841524|T037|PT|S42.409A|ICD10CM|Unspecified fracture of lower end of unspecified humerus, initial encounter for closed fracture|Unspecified fracture of lower end of unspecified humerus, initial encounter for closed fracture +C2841525|T037|AB|S42.409B|ICD10CM|Unsp fracture of lower end of unsp humerus, init for opn fx|Unsp fracture of lower end of unsp humerus, init for opn fx +C2841525|T037|PT|S42.409B|ICD10CM|Unspecified fracture of lower end of unspecified humerus, initial encounter for open fracture|Unspecified fracture of lower end of unspecified humerus, initial encounter for open fracture +C2841526|T037|AB|S42.409D|ICD10CM|Unsp fx lower end of unsp humerus, subs for fx w routn heal|Unsp fx lower end of unsp humerus, subs for fx w routn heal +C2841527|T037|AB|S42.409G|ICD10CM|Unsp fx lower end of unsp humerus, subs for fx w delay heal|Unsp fx lower end of unsp humerus, subs for fx w delay heal +C2841528|T037|AB|S42.409K|ICD10CM|Unsp fx lower end of unsp humerus, subs for fx w nonunion|Unsp fx lower end of unsp humerus, subs for fx w nonunion +C2841529|T037|AB|S42.409P|ICD10CM|Unsp fx lower end of unsp humerus, subs for fx w malunion|Unsp fx lower end of unsp humerus, subs for fx w malunion +C2841530|T037|AB|S42.409S|ICD10CM|Unsp fracture of lower end of unspecified humerus, sequela|Unsp fracture of lower end of unspecified humerus, sequela +C2841530|T037|PT|S42.409S|ICD10CM|Unspecified fracture of lower end of unspecified humerus, sequela|Unspecified fracture of lower end of unspecified humerus, sequela +C2841531|T037|HT|S42.41|ICD10CM|Simple supracondylar fracture without intercondylar fracture of humerus|Simple supracondylar fracture without intercondylar fracture of humerus +C2841531|T037|AB|S42.41|ICD10CM|Simple suprcndl fracture w/o intrcndl fracture of humerus|Simple suprcndl fracture w/o intrcndl fracture of humerus +C2841532|T037|HT|S42.411|ICD10CM|Displaced simple supracondylar fracture without intercondylar fracture of right humerus|Displaced simple supracondylar fracture without intercondylar fracture of right humerus +C2841532|T037|AB|S42.411|ICD10CM|Displaced simple suprcndl fracture w/o intrcndl fx r humerus|Displaced simple suprcndl fracture w/o intrcndl fx r humerus +C2841533|T037|AB|S42.411A|ICD10CM|Displ simple suprcndl fx w/o intrcndl fx r humerus, init|Displ simple suprcndl fx w/o intrcndl fx r humerus, init +C2841534|T037|AB|S42.411B|ICD10CM|Displ simp suprcndl fx w/o intrcndl fx r humer, 7thB|Displ simp suprcndl fx w/o intrcndl fx r humer, 7thB +C2841535|T037|AB|S42.411D|ICD10CM|Displ simp suprcndl fx w/o intrcndl fx r humer, 7thD|Displ simp suprcndl fx w/o intrcndl fx r humer, 7thD +C2841536|T037|AB|S42.411G|ICD10CM|Displ simp suprcndl fx w/o intrcndl fx r humer, 7thG|Displ simp suprcndl fx w/o intrcndl fx r humer, 7thG +C2841537|T037|AB|S42.411K|ICD10CM|Displ simp suprcndl fx w/o intrcndl fx r humer, 7thK|Displ simp suprcndl fx w/o intrcndl fx r humer, 7thK +C2841538|T037|AB|S42.411P|ICD10CM|Displ simp suprcndl fx w/o intrcndl fx r humer, 7thP|Displ simp suprcndl fx w/o intrcndl fx r humer, 7thP +C2841539|T037|AB|S42.411S|ICD10CM|Displ simple suprcndl fx w/o intrcndl fx r humerus, sequela|Displ simple suprcndl fx w/o intrcndl fx r humerus, sequela +C2841539|T037|PT|S42.411S|ICD10CM|Displaced simple supracondylar fracture without intercondylar fracture of right humerus, sequela|Displaced simple supracondylar fracture without intercondylar fracture of right humerus, sequela +C2841540|T037|HT|S42.412|ICD10CM|Displaced simple supracondylar fracture without intercondylar fracture of left humerus|Displaced simple supracondylar fracture without intercondylar fracture of left humerus +C2841540|T037|AB|S42.412|ICD10CM|Displaced simple suprcndl fracture w/o intrcndl fx l humerus|Displaced simple suprcndl fracture w/o intrcndl fx l humerus +C2841541|T037|AB|S42.412A|ICD10CM|Displ simple suprcndl fx w/o intrcndl fx l humerus, init|Displ simple suprcndl fx w/o intrcndl fx l humerus, init +C2841542|T037|AB|S42.412B|ICD10CM|Displ simp suprcndl fx w/o intrcndl fx l humer, 7thB|Displ simp suprcndl fx w/o intrcndl fx l humer, 7thB +C2841543|T037|AB|S42.412D|ICD10CM|Displ simp suprcndl fx w/o intrcndl fx l humer, 7thD|Displ simp suprcndl fx w/o intrcndl fx l humer, 7thD +C2841544|T037|AB|S42.412G|ICD10CM|Displ simp suprcndl fx w/o intrcndl fx l humer, 7thG|Displ simp suprcndl fx w/o intrcndl fx l humer, 7thG +C2841545|T037|AB|S42.412K|ICD10CM|Displ simp suprcndl fx w/o intrcndl fx l humer, 7thK|Displ simp suprcndl fx w/o intrcndl fx l humer, 7thK +C2841546|T037|AB|S42.412P|ICD10CM|Displ simp suprcndl fx w/o intrcndl fx l humer, 7thP|Displ simp suprcndl fx w/o intrcndl fx l humer, 7thP +C2841547|T037|AB|S42.412S|ICD10CM|Displ simple suprcndl fx w/o intrcndl fx l humerus, sequela|Displ simple suprcndl fx w/o intrcndl fx l humerus, sequela +C2841547|T037|PT|S42.412S|ICD10CM|Displaced simple supracondylar fracture without intercondylar fracture of left humerus, sequela|Displaced simple supracondylar fracture without intercondylar fracture of left humerus, sequela +C2841548|T037|AB|S42.413|ICD10CM|Displ simple suprcndl fracture w/o intrcndl fx unsp humerus|Displ simple suprcndl fracture w/o intrcndl fx unsp humerus +C2841548|T037|HT|S42.413|ICD10CM|Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus|Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus +C2841549|T037|AB|S42.413A|ICD10CM|Displ simple suprcndl fx w/o intrcndl fx unsp humerus, init|Displ simple suprcndl fx w/o intrcndl fx unsp humerus, init +C2841550|T037|AB|S42.413B|ICD10CM|Displ simp suprcndl fx w/o intrcndl fx unsp humer, 7thB|Displ simp suprcndl fx w/o intrcndl fx unsp humer, 7thB +C2841551|T037|AB|S42.413D|ICD10CM|Displ simp suprcndl fx w/o intrcndl fx unsp humer, 7thD|Displ simp suprcndl fx w/o intrcndl fx unsp humer, 7thD +C2841552|T037|AB|S42.413G|ICD10CM|Displ simp suprcndl fx w/o intrcndl fx unsp humer, 7thG|Displ simp suprcndl fx w/o intrcndl fx unsp humer, 7thG +C2841553|T037|AB|S42.413K|ICD10CM|Displ simp suprcndl fx w/o intrcndl fx unsp humer, 7thK|Displ simp suprcndl fx w/o intrcndl fx unsp humer, 7thK +C2841554|T037|AB|S42.413P|ICD10CM|Displ simp suprcndl fx w/o intrcndl fx unsp humer, 7thP|Displ simp suprcndl fx w/o intrcndl fx unsp humer, 7thP +C2841555|T037|AB|S42.413S|ICD10CM|Displ simple suprcndl fx w/o intrcndl fx unsp humer, sequela|Displ simple suprcndl fx w/o intrcndl fx unsp humer, sequela +C2841556|T037|AB|S42.414|ICD10CM|Nondisp simple suprcndl fracture w/o intrcndl fx r humerus|Nondisp simple suprcndl fracture w/o intrcndl fx r humerus +C2841556|T037|HT|S42.414|ICD10CM|Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus|Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus +C2841557|T037|AB|S42.414A|ICD10CM|Nondisp simple suprcndl fx w/o intrcndl fx r humerus, init|Nondisp simple suprcndl fx w/o intrcndl fx r humerus, init +C2841558|T037|AB|S42.414B|ICD10CM|Nondisp simp suprcndl fx w/o intrcndl fx r humer, 7thB|Nondisp simp suprcndl fx w/o intrcndl fx r humer, 7thB +C2841559|T037|AB|S42.414D|ICD10CM|Nondisp simp suprcndl fx w/o intrcndl fx r humer, 7thD|Nondisp simp suprcndl fx w/o intrcndl fx r humer, 7thD +C2841560|T037|AB|S42.414G|ICD10CM|Nondisp simp suprcndl fx w/o intrcndl fx r humer, 7thG|Nondisp simp suprcndl fx w/o intrcndl fx r humer, 7thG +C2841561|T037|AB|S42.414K|ICD10CM|Nondisp simp suprcndl fx w/o intrcndl fx r humer, 7thK|Nondisp simp suprcndl fx w/o intrcndl fx r humer, 7thK +C2841562|T037|AB|S42.414P|ICD10CM|Nondisp simp suprcndl fx w/o intrcndl fx r humer, 7thP|Nondisp simp suprcndl fx w/o intrcndl fx r humer, 7thP +C2841563|T037|AB|S42.414S|ICD10CM|Nondisp simple suprcndl fx w/o intrcndl fx r humer, sequela|Nondisp simple suprcndl fx w/o intrcndl fx r humer, sequela +C2841563|T037|PT|S42.414S|ICD10CM|Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, sequela|Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, sequela +C2841564|T037|AB|S42.415|ICD10CM|Nondisp simple suprcndl fracture w/o intrcndl fx l humerus|Nondisp simple suprcndl fracture w/o intrcndl fx l humerus +C2841564|T037|HT|S42.415|ICD10CM|Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus|Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus +C2841565|T037|AB|S42.415A|ICD10CM|Nondisp simple suprcndl fx w/o intrcndl fx l humerus, init|Nondisp simple suprcndl fx w/o intrcndl fx l humerus, init +C2841566|T037|AB|S42.415B|ICD10CM|Nondisp simp suprcndl fx w/o intrcndl fx l humer, 7thB|Nondisp simp suprcndl fx w/o intrcndl fx l humer, 7thB +C2841567|T037|AB|S42.415D|ICD10CM|Nondisp simp suprcndl fx w/o intrcndl fx l humer, 7thD|Nondisp simp suprcndl fx w/o intrcndl fx l humer, 7thD +C2841568|T037|AB|S42.415G|ICD10CM|Nondisp simp suprcndl fx w/o intrcndl fx l humer, 7thG|Nondisp simp suprcndl fx w/o intrcndl fx l humer, 7thG +C2841569|T037|AB|S42.415K|ICD10CM|Nondisp simp suprcndl fx w/o intrcndl fx l humer, 7thK|Nondisp simp suprcndl fx w/o intrcndl fx l humer, 7thK +C2841570|T037|AB|S42.415P|ICD10CM|Nondisp simp suprcndl fx w/o intrcndl fx l humer, 7thP|Nondisp simp suprcndl fx w/o intrcndl fx l humer, 7thP +C2841571|T037|AB|S42.415S|ICD10CM|Nondisp simple suprcndl fx w/o intrcndl fx l humer, sequela|Nondisp simple suprcndl fx w/o intrcndl fx l humer, sequela +C2841571|T037|PT|S42.415S|ICD10CM|Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, sequela|Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, sequela +C2841572|T037|AB|S42.416|ICD10CM|Nondisp simple suprcndl fx w/o intrcndl fx unsp humerus|Nondisp simple suprcndl fx w/o intrcndl fx unsp humerus +C2841572|T037|HT|S42.416|ICD10CM|Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus|Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus +C2841573|T037|AB|S42.416A|ICD10CM|Nondisp simple suprcndl fx w/o intrcndl fx unsp humer, init|Nondisp simple suprcndl fx w/o intrcndl fx unsp humer, init +C2841574|T037|AB|S42.416B|ICD10CM|Nondisp simp suprcndl fx w/o intrcndl fx unsp humer, 7thB|Nondisp simp suprcndl fx w/o intrcndl fx unsp humer, 7thB +C2841575|T037|AB|S42.416D|ICD10CM|Nondisp simp suprcndl fx w/o intrcndl fx unsp humer, 7thD|Nondisp simp suprcndl fx w/o intrcndl fx unsp humer, 7thD +C2841576|T037|AB|S42.416G|ICD10CM|Nondisp simp suprcndl fx w/o intrcndl fx unsp humer, 7thG|Nondisp simp suprcndl fx w/o intrcndl fx unsp humer, 7thG +C2841577|T037|AB|S42.416K|ICD10CM|Nondisp simp suprcndl fx w/o intrcndl fx unsp humer, 7thK|Nondisp simp suprcndl fx w/o intrcndl fx unsp humer, 7thK +C2841578|T037|AB|S42.416P|ICD10CM|Nondisp simp suprcndl fx w/o intrcndl fx unsp humer, 7thP|Nondisp simp suprcndl fx w/o intrcndl fx unsp humer, 7thP +C2841579|T037|AB|S42.416S|ICD10CM|Nondisp simple suprcndl fx w/o intrcndl fx unsp humer, sqla|Nondisp simple suprcndl fx w/o intrcndl fx unsp humer, sqla +C2841580|T037|HT|S42.42|ICD10CM|Comminuted supracondylar fracture without intercondylar fracture of humerus|Comminuted supracondylar fracture without intercondylar fracture of humerus +C2841580|T037|AB|S42.42|ICD10CM|Comminuted suprcndl fracture w/o intrcndl fx humerus|Comminuted suprcndl fracture w/o intrcndl fx humerus +C2841581|T037|HT|S42.421|ICD10CM|Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus|Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus +C2841581|T037|AB|S42.421|ICD10CM|Displaced commnt suprcndl fracture w/o intrcndl fx r humerus|Displaced commnt suprcndl fracture w/o intrcndl fx r humerus +C2841582|T037|AB|S42.421A|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx r humerus, init|Displ commnt suprcndl fx w/o intrcndl fx r humerus, init +C2841583|T037|AB|S42.421B|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx r humer, 7thB|Displ commnt suprcndl fx w/o intrcndl fx r humer, 7thB +C2841584|T037|AB|S42.421D|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx r humer, 7thD|Displ commnt suprcndl fx w/o intrcndl fx r humer, 7thD +C2841585|T037|AB|S42.421G|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx r humer, 7thG|Displ commnt suprcndl fx w/o intrcndl fx r humer, 7thG +C2841586|T037|AB|S42.421K|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx r humer, 7thK|Displ commnt suprcndl fx w/o intrcndl fx r humer, 7thK +C2841587|T037|AB|S42.421P|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx r humer, 7thP|Displ commnt suprcndl fx w/o intrcndl fx r humer, 7thP +C2841588|T037|AB|S42.421S|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx r humerus, sequela|Displ commnt suprcndl fx w/o intrcndl fx r humerus, sequela +C2841588|T037|PT|S42.421S|ICD10CM|Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, sequela|Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, sequela +C2841589|T037|HT|S42.422|ICD10CM|Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus|Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus +C2841589|T037|AB|S42.422|ICD10CM|Displaced commnt suprcndl fracture w/o intrcndl fx l humerus|Displaced commnt suprcndl fracture w/o intrcndl fx l humerus +C2841590|T037|AB|S42.422A|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx l humerus, init|Displ commnt suprcndl fx w/o intrcndl fx l humerus, init +C2841591|T037|AB|S42.422B|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx l humer, 7thB|Displ commnt suprcndl fx w/o intrcndl fx l humer, 7thB +C2841592|T037|AB|S42.422D|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx l humer, 7thD|Displ commnt suprcndl fx w/o intrcndl fx l humer, 7thD +C2841593|T037|AB|S42.422G|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx l humer, 7thG|Displ commnt suprcndl fx w/o intrcndl fx l humer, 7thG +C2841594|T037|AB|S42.422K|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx l humer, 7thK|Displ commnt suprcndl fx w/o intrcndl fx l humer, 7thK +C2841595|T037|AB|S42.422P|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx l humer, 7thP|Displ commnt suprcndl fx w/o intrcndl fx l humer, 7thP +C2841596|T037|AB|S42.422S|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx l humerus, sequela|Displ commnt suprcndl fx w/o intrcndl fx l humerus, sequela +C2841596|T037|PT|S42.422S|ICD10CM|Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, sequela|Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, sequela +C2841597|T037|AB|S42.423|ICD10CM|Displ commnt suprcndl fracture w/o intrcndl fx unsp humerus|Displ commnt suprcndl fracture w/o intrcndl fx unsp humerus +C2841597|T037|HT|S42.423|ICD10CM|Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus|Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus +C2841598|T037|AB|S42.423A|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx unsp humerus, init|Displ commnt suprcndl fx w/o intrcndl fx unsp humerus, init +C2841599|T037|AB|S42.423B|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx unsp humer, 7thB|Displ commnt suprcndl fx w/o intrcndl fx unsp humer, 7thB +C2841600|T037|AB|S42.423D|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx unsp humer, 7thD|Displ commnt suprcndl fx w/o intrcndl fx unsp humer, 7thD +C2841601|T037|AB|S42.423G|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx unsp humer, 7thG|Displ commnt suprcndl fx w/o intrcndl fx unsp humer, 7thG +C2841602|T037|AB|S42.423K|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx unsp humer, 7thK|Displ commnt suprcndl fx w/o intrcndl fx unsp humer, 7thK +C2841603|T037|AB|S42.423P|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx unsp humer, 7thP|Displ commnt suprcndl fx w/o intrcndl fx unsp humer, 7thP +C2841604|T037|AB|S42.423S|ICD10CM|Displ commnt suprcndl fx w/o intrcndl fx unsp humer, sequela|Displ commnt suprcndl fx w/o intrcndl fx unsp humer, sequela +C2841605|T037|AB|S42.424|ICD10CM|Nondisp commnt suprcndl fracture w/o intrcndl fx r humerus|Nondisp commnt suprcndl fracture w/o intrcndl fx r humerus +C2841605|T037|HT|S42.424|ICD10CM|Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus|Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus +C2841606|T037|AB|S42.424A|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx r humerus, init|Nondisp commnt suprcndl fx w/o intrcndl fx r humerus, init +C2841607|T037|AB|S42.424B|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx r humer, 7thB|Nondisp commnt suprcndl fx w/o intrcndl fx r humer, 7thB +C2841608|T037|AB|S42.424D|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx r humer, 7thD|Nondisp commnt suprcndl fx w/o intrcndl fx r humer, 7thD +C2841609|T037|AB|S42.424G|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx r humer, 7thG|Nondisp commnt suprcndl fx w/o intrcndl fx r humer, 7thG +C2841610|T037|AB|S42.424K|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx r humer, 7thK|Nondisp commnt suprcndl fx w/o intrcndl fx r humer, 7thK +C2841611|T037|AB|S42.424P|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx r humer, 7thP|Nondisp commnt suprcndl fx w/o intrcndl fx r humer, 7thP +C2841612|T037|AB|S42.424S|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx r humer, sequela|Nondisp commnt suprcndl fx w/o intrcndl fx r humer, sequela +C2841613|T037|AB|S42.425|ICD10CM|Nondisp commnt suprcndl fracture w/o intrcndl fx l humerus|Nondisp commnt suprcndl fracture w/o intrcndl fx l humerus +C2841613|T037|HT|S42.425|ICD10CM|Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus|Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus +C2841614|T037|AB|S42.425A|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx l humerus, init|Nondisp commnt suprcndl fx w/o intrcndl fx l humerus, init +C2841615|T037|AB|S42.425B|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx l humer, 7thB|Nondisp commnt suprcndl fx w/o intrcndl fx l humer, 7thB +C2841616|T037|AB|S42.425D|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx l humer, 7thD|Nondisp commnt suprcndl fx w/o intrcndl fx l humer, 7thD +C2841617|T037|AB|S42.425G|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx l humer, 7thG|Nondisp commnt suprcndl fx w/o intrcndl fx l humer, 7thG +C2841618|T037|AB|S42.425K|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx l humer, 7thK|Nondisp commnt suprcndl fx w/o intrcndl fx l humer, 7thK +C2841619|T037|AB|S42.425P|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx l humer, 7thP|Nondisp commnt suprcndl fx w/o intrcndl fx l humer, 7thP +C2841620|T037|AB|S42.425S|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx l humer, sequela|Nondisp commnt suprcndl fx w/o intrcndl fx l humer, sequela +C2841621|T037|AB|S42.426|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx unsp humerus|Nondisp commnt suprcndl fx w/o intrcndl fx unsp humerus +C2841621|T037|HT|S42.426|ICD10CM|Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus|Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus +C2841622|T037|AB|S42.426A|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx unsp humer, init|Nondisp commnt suprcndl fx w/o intrcndl fx unsp humer, init +C2841623|T037|AB|S42.426B|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx unsp humer, 7thB|Nondisp commnt suprcndl fx w/o intrcndl fx unsp humer, 7thB +C2841624|T037|AB|S42.426D|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx unsp humer, 7thD|Nondisp commnt suprcndl fx w/o intrcndl fx unsp humer, 7thD +C2841625|T037|AB|S42.426G|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx unsp humer, 7thG|Nondisp commnt suprcndl fx w/o intrcndl fx unsp humer, 7thG +C2841626|T037|AB|S42.426K|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx unsp humer, 7thK|Nondisp commnt suprcndl fx w/o intrcndl fx unsp humer, 7thK +C2841627|T037|AB|S42.426P|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx unsp humer, 7thP|Nondisp commnt suprcndl fx w/o intrcndl fx unsp humer, 7thP +C2841628|T037|AB|S42.426S|ICD10CM|Nondisp commnt suprcndl fx w/o intrcndl fx unsp humer, sqla|Nondisp commnt suprcndl fx w/o intrcndl fx unsp humer, sqla +C2841629|T037|AB|S42.43|ICD10CM|Fracture (avulsion) of lateral epicondyle of humerus|Fracture (avulsion) of lateral epicondyle of humerus +C2841629|T037|HT|S42.43|ICD10CM|Fracture (avulsion) of lateral epicondyle of humerus|Fracture (avulsion) of lateral epicondyle of humerus +C2841630|T037|AB|S42.431|ICD10CM|Disp fx (avulsion) of lateral epicondyle of right humerus|Disp fx (avulsion) of lateral epicondyle of right humerus +C2841630|T037|HT|S42.431|ICD10CM|Displaced fracture (avulsion) of lateral epicondyle of right humerus|Displaced fracture (avulsion) of lateral epicondyle of right humerus +C2841631|T037|AB|S42.431A|ICD10CM|Disp fx (avulsion) of lateral epicondyle of r humerus, init|Disp fx (avulsion) of lateral epicondyle of r humerus, init +C2841632|T037|AB|S42.431B|ICD10CM|Disp fx of lateral epicondyle of r humerus, init for opn fx|Disp fx of lateral epicondyle of r humerus, init for opn fx +C2841633|T037|AB|S42.431D|ICD10CM|Disp fx of lateral epicondyl of r humer, 7thD|Disp fx of lateral epicondyl of r humer, 7thD +C2841634|T037|AB|S42.431G|ICD10CM|Disp fx of lateral epicondyl of r humer, 7thG|Disp fx of lateral epicondyl of r humer, 7thG +C2841635|T037|AB|S42.431K|ICD10CM|Disp fx of lateral epicondyl of r humer, 7thK|Disp fx of lateral epicondyl of r humer, 7thK +C2841636|T037|AB|S42.431P|ICD10CM|Disp fx of lateral epicondyl of r humer, 7thP|Disp fx of lateral epicondyl of r humer, 7thP +C2841637|T037|AB|S42.431S|ICD10CM|Disp fx of lateral epicondyle of r humerus, sequela|Disp fx of lateral epicondyle of r humerus, sequela +C2841637|T037|PT|S42.431S|ICD10CM|Displaced fracture (avulsion) of lateral epicondyle of right humerus, sequela|Displaced fracture (avulsion) of lateral epicondyle of right humerus, sequela +C2841638|T037|AB|S42.432|ICD10CM|Disp fx (avulsion) of lateral epicondyle of left humerus|Disp fx (avulsion) of lateral epicondyle of left humerus +C2841638|T037|HT|S42.432|ICD10CM|Displaced fracture (avulsion) of lateral epicondyle of left humerus|Displaced fracture (avulsion) of lateral epicondyle of left humerus +C2841639|T037|AB|S42.432A|ICD10CM|Disp fx (avulsion) of lateral epicondyle of l humerus, init|Disp fx (avulsion) of lateral epicondyle of l humerus, init +C2841640|T037|AB|S42.432B|ICD10CM|Disp fx of lateral epicondyle of l humerus, init for opn fx|Disp fx of lateral epicondyle of l humerus, init for opn fx +C2841641|T037|AB|S42.432D|ICD10CM|Disp fx of lateral epicondyl of l humer, 7thD|Disp fx of lateral epicondyl of l humer, 7thD +C2841642|T037|AB|S42.432G|ICD10CM|Disp fx of lateral epicondyl of l humer, 7thG|Disp fx of lateral epicondyl of l humer, 7thG +C2841643|T037|AB|S42.432K|ICD10CM|Disp fx of lateral epicondyl of l humer, 7thK|Disp fx of lateral epicondyl of l humer, 7thK +C2841644|T037|AB|S42.432P|ICD10CM|Disp fx of lateral epicondyl of l humer, 7thP|Disp fx of lateral epicondyl of l humer, 7thP +C2841645|T037|AB|S42.432S|ICD10CM|Disp fx of lateral epicondyle of l humerus, sequela|Disp fx of lateral epicondyle of l humerus, sequela +C2841645|T037|PT|S42.432S|ICD10CM|Displaced fracture (avulsion) of lateral epicondyle of left humerus, sequela|Displaced fracture (avulsion) of lateral epicondyle of left humerus, sequela +C2841646|T037|AB|S42.433|ICD10CM|Disp fx (avulsion) of lateral epicondyle of unsp humerus|Disp fx (avulsion) of lateral epicondyle of unsp humerus +C2841646|T037|HT|S42.433|ICD10CM|Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus|Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus +C2841647|T037|AB|S42.433A|ICD10CM|Disp fx of lateral epicondyle of unsp humerus, init|Disp fx of lateral epicondyle of unsp humerus, init +C2841648|T037|AB|S42.433B|ICD10CM|Disp fx of lateral epicondyl of unsp humer, init for opn fx|Disp fx of lateral epicondyl of unsp humer, init for opn fx +C2841649|T037|AB|S42.433D|ICD10CM|Disp fx of lateral epicondyl of unsp humer, 7thD|Disp fx of lateral epicondyl of unsp humer, 7thD +C2841650|T037|AB|S42.433G|ICD10CM|Disp fx of lateral epicondyl of unsp humer, 7thG|Disp fx of lateral epicondyl of unsp humer, 7thG +C2841651|T037|AB|S42.433K|ICD10CM|Disp fx of lateral epicondyl of unsp humer, 7thK|Disp fx of lateral epicondyl of unsp humer, 7thK +C2841652|T037|AB|S42.433P|ICD10CM|Disp fx of lateral epicondyl of unsp humer, 7thP|Disp fx of lateral epicondyl of unsp humer, 7thP +C2841653|T037|AB|S42.433S|ICD10CM|Disp fx of lateral epicondyle of unsp humerus, sequela|Disp fx of lateral epicondyle of unsp humerus, sequela +C2841653|T037|PT|S42.433S|ICD10CM|Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, sequela|Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, sequela +C2841654|T037|AB|S42.434|ICD10CM|Nondisp fx (avulsion) of lateral epicondyle of right humerus|Nondisp fx (avulsion) of lateral epicondyle of right humerus +C2841654|T037|HT|S42.434|ICD10CM|Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus|Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus +C2841655|T037|AB|S42.434A|ICD10CM|Nondisp fx of lateral epicondyle of r humerus, init|Nondisp fx of lateral epicondyle of r humerus, init +C2841656|T037|AB|S42.434B|ICD10CM|Nondisp fx of lateral epicondyl of r humer, init for opn fx|Nondisp fx of lateral epicondyl of r humer, init for opn fx +C2841657|T037|AB|S42.434D|ICD10CM|Nondisp fx of lateral epicondyl of r humer, 7thD|Nondisp fx of lateral epicondyl of r humer, 7thD +C2841658|T037|AB|S42.434G|ICD10CM|Nondisp fx of lateral epicondyl of r humer, 7thG|Nondisp fx of lateral epicondyl of r humer, 7thG +C2841659|T037|AB|S42.434K|ICD10CM|Nondisp fx of lateral epicondyl of r humer, 7thK|Nondisp fx of lateral epicondyl of r humer, 7thK +C2841660|T037|AB|S42.434P|ICD10CM|Nondisp fx of lateral epicondyl of r humer, 7thP|Nondisp fx of lateral epicondyl of r humer, 7thP +C2841661|T037|AB|S42.434S|ICD10CM|Nondisp fx of lateral epicondyle of r humerus, sequela|Nondisp fx of lateral epicondyle of r humerus, sequela +C2841661|T037|PT|S42.434S|ICD10CM|Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, sequela|Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, sequela +C2841662|T037|AB|S42.435|ICD10CM|Nondisp fx (avulsion) of lateral epicondyle of left humerus|Nondisp fx (avulsion) of lateral epicondyle of left humerus +C2841662|T037|HT|S42.435|ICD10CM|Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus|Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus +C2841663|T037|AB|S42.435A|ICD10CM|Nondisp fx of lateral epicondyle of l humerus, init|Nondisp fx of lateral epicondyle of l humerus, init +C2841664|T037|AB|S42.435B|ICD10CM|Nondisp fx of lateral epicondyl of l humer, init for opn fx|Nondisp fx of lateral epicondyl of l humer, init for opn fx +C2841665|T037|AB|S42.435D|ICD10CM|Nondisp fx of lateral epicondyl of l humer, 7thD|Nondisp fx of lateral epicondyl of l humer, 7thD +C2841666|T037|AB|S42.435G|ICD10CM|Nondisp fx of lateral epicondyl of l humer, 7thG|Nondisp fx of lateral epicondyl of l humer, 7thG +C2841667|T037|AB|S42.435K|ICD10CM|Nondisp fx of lateral epicondyl of l humer, 7thK|Nondisp fx of lateral epicondyl of l humer, 7thK +C2841668|T037|AB|S42.435P|ICD10CM|Nondisp fx of lateral epicondyl of l humer, 7thP|Nondisp fx of lateral epicondyl of l humer, 7thP +C2841669|T037|AB|S42.435S|ICD10CM|Nondisp fx of lateral epicondyle of l humerus, sequela|Nondisp fx of lateral epicondyle of l humerus, sequela +C2841669|T037|PT|S42.435S|ICD10CM|Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, sequela|Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, sequela +C2841670|T037|AB|S42.436|ICD10CM|Nondisp fx (avulsion) of lateral epicondyle of unsp humerus|Nondisp fx (avulsion) of lateral epicondyle of unsp humerus +C2841670|T037|HT|S42.436|ICD10CM|Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus|Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus +C2841671|T037|AB|S42.436A|ICD10CM|Nondisp fx of lateral epicondyle of unsp humerus, init|Nondisp fx of lateral epicondyle of unsp humerus, init +C2841672|T037|AB|S42.436B|ICD10CM|Nondisp fx of lateral epicondyl of unsp humer, 7thB|Nondisp fx of lateral epicondyl of unsp humer, 7thB +C2841673|T037|AB|S42.436D|ICD10CM|Nondisp fx of lateral epicondyl of unsp humer, 7thD|Nondisp fx of lateral epicondyl of unsp humer, 7thD +C2841674|T037|AB|S42.436G|ICD10CM|Nondisp fx of lateral epicondyl of unsp humer, 7thG|Nondisp fx of lateral epicondyl of unsp humer, 7thG +C2841675|T037|AB|S42.436K|ICD10CM|Nondisp fx of lateral epicondyl of unsp humer, 7thK|Nondisp fx of lateral epicondyl of unsp humer, 7thK +C2841676|T037|AB|S42.436P|ICD10CM|Nondisp fx of lateral epicondyl of unsp humer, 7thP|Nondisp fx of lateral epicondyl of unsp humer, 7thP +C2841677|T037|AB|S42.436S|ICD10CM|Nondisp fx of lateral epicondyle of unsp humerus, sequela|Nondisp fx of lateral epicondyle of unsp humerus, sequela +C2841677|T037|PT|S42.436S|ICD10CM|Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, sequela|Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, sequela +C2841678|T037|AB|S42.44|ICD10CM|Fracture (avulsion) of medial epicondyle of humerus|Fracture (avulsion) of medial epicondyle of humerus +C2841678|T037|HT|S42.44|ICD10CM|Fracture (avulsion) of medial epicondyle of humerus|Fracture (avulsion) of medial epicondyle of humerus +C2841679|T037|AB|S42.441|ICD10CM|Disp fx (avulsion) of medial epicondyle of right humerus|Disp fx (avulsion) of medial epicondyle of right humerus +C2841679|T037|HT|S42.441|ICD10CM|Displaced fracture (avulsion) of medial epicondyle of right humerus|Displaced fracture (avulsion) of medial epicondyle of right humerus +C2841680|T037|AB|S42.441A|ICD10CM|Disp fx (avulsion) of medial epicondyle of r humerus, init|Disp fx (avulsion) of medial epicondyle of r humerus, init +C2841681|T037|AB|S42.441B|ICD10CM|Disp fx of medial epicondyle of r humerus, init for opn fx|Disp fx of medial epicondyle of r humerus, init for opn fx +C2841682|T037|AB|S42.441D|ICD10CM|Disp fx of med epicondyl of r humer, 7thD|Disp fx of med epicondyl of r humer, 7thD +C2841683|T037|AB|S42.441G|ICD10CM|Disp fx of med epicondyl of r humer, 7thG|Disp fx of med epicondyl of r humer, 7thG +C2841684|T037|AB|S42.441K|ICD10CM|Disp fx of med epicondyl of r humer, subs for fx w nonunion|Disp fx of med epicondyl of r humer, subs for fx w nonunion +C2841685|T037|AB|S42.441P|ICD10CM|Disp fx of med epicondyl of r humer, subs for fx w malunion|Disp fx of med epicondyl of r humer, subs for fx w malunion +C2841686|T037|AB|S42.441S|ICD10CM|Disp fx of medial epicondyle of r humerus, sequela|Disp fx of medial epicondyle of r humerus, sequela +C2841686|T037|PT|S42.441S|ICD10CM|Displaced fracture (avulsion) of medial epicondyle of right humerus, sequela|Displaced fracture (avulsion) of medial epicondyle of right humerus, sequela +C2841687|T037|AB|S42.442|ICD10CM|Disp fx (avulsion) of medial epicondyle of left humerus|Disp fx (avulsion) of medial epicondyle of left humerus +C2841687|T037|HT|S42.442|ICD10CM|Displaced fracture (avulsion) of medial epicondyle of left humerus|Displaced fracture (avulsion) of medial epicondyle of left humerus +C2841688|T037|AB|S42.442A|ICD10CM|Disp fx (avulsion) of medial epicondyle of l humerus, init|Disp fx (avulsion) of medial epicondyle of l humerus, init +C2841689|T037|AB|S42.442B|ICD10CM|Disp fx of medial epicondyle of l humerus, init for opn fx|Disp fx of medial epicondyle of l humerus, init for opn fx +C2841690|T037|AB|S42.442D|ICD10CM|Disp fx of med epicondyl of l humer, 7thD|Disp fx of med epicondyl of l humer, 7thD +C2841691|T037|AB|S42.442G|ICD10CM|Disp fx of med epicondyl of l humer, 7thG|Disp fx of med epicondyl of l humer, 7thG +C2841692|T037|AB|S42.442K|ICD10CM|Disp fx of med epicondyl of l humer, subs for fx w nonunion|Disp fx of med epicondyl of l humer, subs for fx w nonunion +C2841693|T037|AB|S42.442P|ICD10CM|Disp fx of med epicondyl of l humer, subs for fx w malunion|Disp fx of med epicondyl of l humer, subs for fx w malunion +C2841694|T037|AB|S42.442S|ICD10CM|Disp fx of medial epicondyle of l humerus, sequela|Disp fx of medial epicondyle of l humerus, sequela +C2841694|T037|PT|S42.442S|ICD10CM|Displaced fracture (avulsion) of medial epicondyle of left humerus, sequela|Displaced fracture (avulsion) of medial epicondyle of left humerus, sequela +C2841695|T037|AB|S42.443|ICD10CM|Disp fx (avulsion) of medial epicondyle of unsp humerus|Disp fx (avulsion) of medial epicondyle of unsp humerus +C2841695|T037|HT|S42.443|ICD10CM|Displaced fracture (avulsion) of medial epicondyle of unspecified humerus|Displaced fracture (avulsion) of medial epicondyle of unspecified humerus +C2841696|T037|AB|S42.443A|ICD10CM|Disp fx of medial epicondyle of unsp humerus, init|Disp fx of medial epicondyle of unsp humerus, init +C2841697|T037|AB|S42.443B|ICD10CM|Disp fx of medial epicondyl of unsp humerus, init for opn fx|Disp fx of medial epicondyl of unsp humerus, init for opn fx +C2841698|T037|AB|S42.443D|ICD10CM|Disp fx of med epicondyl of unsp humer, 7thD|Disp fx of med epicondyl of unsp humer, 7thD +C2841699|T037|AB|S42.443G|ICD10CM|Disp fx of med epicondyl of unsp humer, 7thG|Disp fx of med epicondyl of unsp humer, 7thG +C2841700|T037|AB|S42.443K|ICD10CM|Disp fx of med epicondyl of unsp humer, 7thK|Disp fx of med epicondyl of unsp humer, 7thK +C2841701|T037|AB|S42.443P|ICD10CM|Disp fx of med epicondyl of unsp humer, 7thP|Disp fx of med epicondyl of unsp humer, 7thP +C2841702|T037|AB|S42.443S|ICD10CM|Disp fx of medial epicondyle of unsp humerus, sequela|Disp fx of medial epicondyle of unsp humerus, sequela +C2841702|T037|PT|S42.443S|ICD10CM|Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, sequela|Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, sequela +C2841703|T037|AB|S42.444|ICD10CM|Nondisp fx (avulsion) of medial epicondyle of right humerus|Nondisp fx (avulsion) of medial epicondyle of right humerus +C2841703|T037|HT|S42.444|ICD10CM|Nondisplaced fracture (avulsion) of medial epicondyle of right humerus|Nondisplaced fracture (avulsion) of medial epicondyle of right humerus +C2841704|T037|AB|S42.444A|ICD10CM|Nondisp fx of medial epicondyle of r humerus, init|Nondisp fx of medial epicondyle of r humerus, init +C2841705|T037|AB|S42.444B|ICD10CM|Nondisp fx of medial epicondyl of r humerus, init for opn fx|Nondisp fx of medial epicondyl of r humerus, init for opn fx +C2841706|T037|AB|S42.444D|ICD10CM|Nondisp fx of med epicondyl of r humer, 7thD|Nondisp fx of med epicondyl of r humer, 7thD +C2841707|T037|AB|S42.444G|ICD10CM|Nondisp fx of med epicondyl of r humer, 7thG|Nondisp fx of med epicondyl of r humer, 7thG +C2841708|T037|AB|S42.444K|ICD10CM|Nondisp fx of med epicondyl of r humer, 7thK|Nondisp fx of med epicondyl of r humer, 7thK +C2841709|T037|AB|S42.444P|ICD10CM|Nondisp fx of med epicondyl of r humer, 7thP|Nondisp fx of med epicondyl of r humer, 7thP +C2841710|T037|AB|S42.444S|ICD10CM|Nondisp fx of medial epicondyle of r humerus, sequela|Nondisp fx of medial epicondyle of r humerus, sequela +C2841710|T037|PT|S42.444S|ICD10CM|Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, sequela|Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, sequela +C2841711|T037|AB|S42.445|ICD10CM|Nondisp fx (avulsion) of medial epicondyle of left humerus|Nondisp fx (avulsion) of medial epicondyle of left humerus +C2841711|T037|HT|S42.445|ICD10CM|Nondisplaced fracture (avulsion) of medial epicondyle of left humerus|Nondisplaced fracture (avulsion) of medial epicondyle of left humerus +C2841712|T037|AB|S42.445A|ICD10CM|Nondisp fx of medial epicondyle of l humerus, init|Nondisp fx of medial epicondyle of l humerus, init +C2841713|T037|AB|S42.445B|ICD10CM|Nondisp fx of medial epicondyl of l humerus, init for opn fx|Nondisp fx of medial epicondyl of l humerus, init for opn fx +C2841714|T037|AB|S42.445D|ICD10CM|Nondisp fx of med epicondyl of l humer, 7thD|Nondisp fx of med epicondyl of l humer, 7thD +C2841715|T037|AB|S42.445G|ICD10CM|Nondisp fx of med epicondyl of l humer, 7thG|Nondisp fx of med epicondyl of l humer, 7thG +C2841716|T037|AB|S42.445K|ICD10CM|Nondisp fx of med epicondyl of l humer, 7thK|Nondisp fx of med epicondyl of l humer, 7thK +C2841717|T037|AB|S42.445P|ICD10CM|Nondisp fx of med epicondyl of l humer, 7thP|Nondisp fx of med epicondyl of l humer, 7thP +C2841718|T037|AB|S42.445S|ICD10CM|Nondisp fx of medial epicondyle of l humerus, sequela|Nondisp fx of medial epicondyle of l humerus, sequela +C2841718|T037|PT|S42.445S|ICD10CM|Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, sequela|Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, sequela +C2841719|T037|AB|S42.446|ICD10CM|Nondisp fx (avulsion) of medial epicondyle of unsp humerus|Nondisp fx (avulsion) of medial epicondyle of unsp humerus +C2841719|T037|HT|S42.446|ICD10CM|Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus|Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus +C2841720|T037|AB|S42.446A|ICD10CM|Nondisp fx of medial epicondyle of unsp humerus, init|Nondisp fx of medial epicondyle of unsp humerus, init +C2841721|T037|AB|S42.446B|ICD10CM|Nondisp fx of med epicondyl of unsp humer, init for opn fx|Nondisp fx of med epicondyl of unsp humer, init for opn fx +C2841722|T037|AB|S42.446D|ICD10CM|Nondisp fx of med epicondyl of unsp humer, 7thD|Nondisp fx of med epicondyl of unsp humer, 7thD +C2841723|T037|AB|S42.446G|ICD10CM|Nondisp fx of med epicondyl of unsp humer, 7thG|Nondisp fx of med epicondyl of unsp humer, 7thG +C2841724|T037|AB|S42.446K|ICD10CM|Nondisp fx of med epicondyl of unsp humer, 7thK|Nondisp fx of med epicondyl of unsp humer, 7thK +C2841725|T037|AB|S42.446P|ICD10CM|Nondisp fx of med epicondyl of unsp humer, 7thP|Nondisp fx of med epicondyl of unsp humer, 7thP +C2841726|T037|AB|S42.446S|ICD10CM|Nondisp fx of medial epicondyle of unsp humerus, sequela|Nondisp fx of medial epicondyle of unsp humerus, sequela +C2841726|T037|PT|S42.446S|ICD10CM|Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, sequela|Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, sequela +C2841727|T037|HT|S42.447|ICD10CM|Incarcerated fracture (avulsion) of medial epicondyle of right humerus|Incarcerated fracture (avulsion) of medial epicondyle of right humerus +C2841727|T037|AB|S42.447|ICD10CM|Incarcerated fracture of medial epicondyle of r humerus|Incarcerated fracture of medial epicondyle of r humerus +C2841728|T037|AB|S42.447A|ICD10CM|Incarcerated fracture of medial epicondyl of r humerus, init|Incarcerated fracture of medial epicondyl of r humerus, init +C2841729|T037|AB|S42.447B|ICD10CM|Incarcerated fx of med epicondyl of r humer, init for opn fx|Incarcerated fx of med epicondyl of r humer, init for opn fx +C2841730|T037|AB|S42.447D|ICD10CM|Incarcerated fx of med epicondyl of r humer, 7thD|Incarcerated fx of med epicondyl of r humer, 7thD +C2841731|T037|AB|S42.447G|ICD10CM|Incarcerated fx of med epicondyl of r humer, 7thG|Incarcerated fx of med epicondyl of r humer, 7thG +C2841732|T037|AB|S42.447K|ICD10CM|Incarcerated fx of med epicondyl of r humer, 7thK|Incarcerated fx of med epicondyl of r humer, 7thK +C2841733|T037|AB|S42.447P|ICD10CM|Incarcerated fx of med epicondyl of r humer, 7thP|Incarcerated fx of med epicondyl of r humer, 7thP +C2841734|T037|PT|S42.447S|ICD10CM|Incarcerated fracture (avulsion) of medial epicondyle of right humerus, sequela|Incarcerated fracture (avulsion) of medial epicondyle of right humerus, sequela +C2841734|T037|AB|S42.447S|ICD10CM|Incarcerated fx of medial epicondyl of r humerus, sequela|Incarcerated fx of medial epicondyl of r humerus, sequela +C2841735|T037|HT|S42.448|ICD10CM|Incarcerated fracture (avulsion) of medial epicondyle of left humerus|Incarcerated fracture (avulsion) of medial epicondyle of left humerus +C2841735|T037|AB|S42.448|ICD10CM|Incarcerated fracture of medial epicondyle of l humerus|Incarcerated fracture of medial epicondyle of l humerus +C2841736|T037|AB|S42.448A|ICD10CM|Incarcerated fracture of medial epicondyl of l humerus, init|Incarcerated fracture of medial epicondyl of l humerus, init +C2841737|T037|AB|S42.448B|ICD10CM|Incarcerated fx of med epicondyl of l humer, init for opn fx|Incarcerated fx of med epicondyl of l humer, init for opn fx +C2841738|T037|AB|S42.448D|ICD10CM|Incarcerated fx of med epicondyl of l humer, 7thD|Incarcerated fx of med epicondyl of l humer, 7thD +C2841739|T037|AB|S42.448G|ICD10CM|Incarcerated fx of med epicondyl of l humer, 7thG|Incarcerated fx of med epicondyl of l humer, 7thG +C2841740|T037|AB|S42.448K|ICD10CM|Incarcerated fx of med epicondyl of l humer, 7thK|Incarcerated fx of med epicondyl of l humer, 7thK +C2841741|T037|AB|S42.448P|ICD10CM|Incarcerated fx of med epicondyl of l humer, 7thP|Incarcerated fx of med epicondyl of l humer, 7thP +C2841742|T037|PT|S42.448S|ICD10CM|Incarcerated fracture (avulsion) of medial epicondyle of left humerus, sequela|Incarcerated fracture (avulsion) of medial epicondyle of left humerus, sequela +C2841742|T037|AB|S42.448S|ICD10CM|Incarcerated fx of medial epicondyl of l humerus, sequela|Incarcerated fx of medial epicondyl of l humerus, sequela +C2841743|T037|HT|S42.449|ICD10CM|Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus|Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus +C2841743|T037|AB|S42.449|ICD10CM|Incarcerated fracture of medial epicondyle of unsp humerus|Incarcerated fracture of medial epicondyle of unsp humerus +C2841744|T037|AB|S42.449A|ICD10CM|Incarcerated fx of medial epicondyl of unsp humerus, init|Incarcerated fx of medial epicondyl of unsp humerus, init +C2841745|T037|AB|S42.449B|ICD10CM|Incarcerated fx of med epicondyl of unsp humer, 7thB|Incarcerated fx of med epicondyl of unsp humer, 7thB +C2841746|T037|AB|S42.449D|ICD10CM|Incarcerated fx of med epicondyl of unsp humer, 7thD|Incarcerated fx of med epicondyl of unsp humer, 7thD +C2841747|T037|AB|S42.449G|ICD10CM|Incarcerated fx of med epicondyl of unsp humer, 7thG|Incarcerated fx of med epicondyl of unsp humer, 7thG +C2841748|T037|AB|S42.449K|ICD10CM|Incarcerated fx of med epicondyl of unsp humer, 7thK|Incarcerated fx of med epicondyl of unsp humer, 7thK +C2841749|T037|AB|S42.449P|ICD10CM|Incarcerated fx of med epicondyl of unsp humer, 7thP|Incarcerated fx of med epicondyl of unsp humer, 7thP +C2841750|T037|PT|S42.449S|ICD10CM|Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, sequela|Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, sequela +C2841750|T037|AB|S42.449S|ICD10CM|Incarcerated fx of medial epicondyl of unsp humerus, sequela|Incarcerated fx of medial epicondyl of unsp humerus, sequela +C2841751|T037|ET|S42.45|ICD10CM|Fracture of capitellum of humerus|Fracture of capitellum of humerus +C0840589|T037|HT|S42.45|ICD10CM|Fracture of lateral condyle of humerus|Fracture of lateral condyle of humerus +C0840589|T037|AB|S42.45|ICD10CM|Fracture of lateral condyle of humerus|Fracture of lateral condyle of humerus +C2841752|T037|HT|S42.451|ICD10CM|Displaced fracture of lateral condyle of right humerus|Displaced fracture of lateral condyle of right humerus +C2841752|T037|AB|S42.451|ICD10CM|Displaced fracture of lateral condyle of right humerus|Displaced fracture of lateral condyle of right humerus +C2841753|T037|AB|S42.451A|ICD10CM|Disp fx of lateral condyle of right humerus, init|Disp fx of lateral condyle of right humerus, init +C2841753|T037|PT|S42.451A|ICD10CM|Displaced fracture of lateral condyle of right humerus, initial encounter for closed fracture|Displaced fracture of lateral condyle of right humerus, initial encounter for closed fracture +C2841754|T037|AB|S42.451B|ICD10CM|Disp fx of lateral condyle of right humerus, init for opn fx|Disp fx of lateral condyle of right humerus, init for opn fx +C2841754|T037|PT|S42.451B|ICD10CM|Displaced fracture of lateral condyle of right humerus, initial encounter for open fracture|Displaced fracture of lateral condyle of right humerus, initial encounter for open fracture +C2841755|T037|AB|S42.451D|ICD10CM|Disp fx of lateral condyle of r humer, 7thD|Disp fx of lateral condyle of r humer, 7thD +C2841756|T037|AB|S42.451G|ICD10CM|Disp fx of lateral condyle of r humer, 7thG|Disp fx of lateral condyle of r humer, 7thG +C2841757|T037|AB|S42.451K|ICD10CM|Disp fx of lateral condyle of r humer, 7thK|Disp fx of lateral condyle of r humer, 7thK +C2841758|T037|AB|S42.451P|ICD10CM|Disp fx of lateral condyle of r humer, 7thP|Disp fx of lateral condyle of r humer, 7thP +C2841759|T037|AB|S42.451S|ICD10CM|Disp fx of lateral condyle of right humerus, sequela|Disp fx of lateral condyle of right humerus, sequela +C2841759|T037|PT|S42.451S|ICD10CM|Displaced fracture of lateral condyle of right humerus, sequela|Displaced fracture of lateral condyle of right humerus, sequela +C2841760|T037|AB|S42.452|ICD10CM|Displaced fracture of lateral condyle of left humerus|Displaced fracture of lateral condyle of left humerus +C2841760|T037|HT|S42.452|ICD10CM|Displaced fracture of lateral condyle of left humerus|Displaced fracture of lateral condyle of left humerus +C2841761|T037|AB|S42.452A|ICD10CM|Disp fx of lateral condyle of left humerus, init for clos fx|Disp fx of lateral condyle of left humerus, init for clos fx +C2841761|T037|PT|S42.452A|ICD10CM|Displaced fracture of lateral condyle of left humerus, initial encounter for closed fracture|Displaced fracture of lateral condyle of left humerus, initial encounter for closed fracture +C2841762|T037|AB|S42.452B|ICD10CM|Disp fx of lateral condyle of left humerus, init for opn fx|Disp fx of lateral condyle of left humerus, init for opn fx +C2841762|T037|PT|S42.452B|ICD10CM|Displaced fracture of lateral condyle of left humerus, initial encounter for open fracture|Displaced fracture of lateral condyle of left humerus, initial encounter for open fracture +C2841763|T037|AB|S42.452D|ICD10CM|Disp fx of lateral condyle of l humer, 7thD|Disp fx of lateral condyle of l humer, 7thD +C2841764|T037|AB|S42.452G|ICD10CM|Disp fx of lateral condyle of l humer, 7thG|Disp fx of lateral condyle of l humer, 7thG +C2841765|T037|AB|S42.452K|ICD10CM|Disp fx of lateral condyle of l humer, 7thK|Disp fx of lateral condyle of l humer, 7thK +C2841766|T037|AB|S42.452P|ICD10CM|Disp fx of lateral condyle of l humer, 7thP|Disp fx of lateral condyle of l humer, 7thP +C2841767|T037|AB|S42.452S|ICD10CM|Disp fx of lateral condyle of left humerus, sequela|Disp fx of lateral condyle of left humerus, sequela +C2841767|T037|PT|S42.452S|ICD10CM|Displaced fracture of lateral condyle of left humerus, sequela|Displaced fracture of lateral condyle of left humerus, sequela +C2841768|T037|AB|S42.453|ICD10CM|Displaced fracture of lateral condyle of unspecified humerus|Displaced fracture of lateral condyle of unspecified humerus +C2841768|T037|HT|S42.453|ICD10CM|Displaced fracture of lateral condyle of unspecified humerus|Displaced fracture of lateral condyle of unspecified humerus +C2841769|T037|AB|S42.453A|ICD10CM|Disp fx of lateral condyle of unsp humerus, init for clos fx|Disp fx of lateral condyle of unsp humerus, init for clos fx +C2841769|T037|PT|S42.453A|ICD10CM|Displaced fracture of lateral condyle of unspecified humerus, initial encounter for closed fracture|Displaced fracture of lateral condyle of unspecified humerus, initial encounter for closed fracture +C2841770|T037|AB|S42.453B|ICD10CM|Disp fx of lateral condyle of unsp humerus, init for opn fx|Disp fx of lateral condyle of unsp humerus, init for opn fx +C2841770|T037|PT|S42.453B|ICD10CM|Displaced fracture of lateral condyle of unspecified humerus, initial encounter for open fracture|Displaced fracture of lateral condyle of unspecified humerus, initial encounter for open fracture +C2841771|T037|AB|S42.453D|ICD10CM|Disp fx of lateral condyle of unsp humer, 7thD|Disp fx of lateral condyle of unsp humer, 7thD +C2841772|T037|AB|S42.453G|ICD10CM|Disp fx of lateral condyle of unsp humer, 7thG|Disp fx of lateral condyle of unsp humer, 7thG +C2841773|T037|AB|S42.453K|ICD10CM|Disp fx of lateral condyle of unsp humer, 7thK|Disp fx of lateral condyle of unsp humer, 7thK +C2841774|T037|AB|S42.453P|ICD10CM|Disp fx of lateral condyle of unsp humer, 7thP|Disp fx of lateral condyle of unsp humer, 7thP +C2841775|T037|AB|S42.453S|ICD10CM|Disp fx of lateral condyle of unspecified humerus, sequela|Disp fx of lateral condyle of unspecified humerus, sequela +C2841775|T037|PT|S42.453S|ICD10CM|Displaced fracture of lateral condyle of unspecified humerus, sequela|Displaced fracture of lateral condyle of unspecified humerus, sequela +C2841776|T037|HT|S42.454|ICD10CM|Nondisplaced fracture of lateral condyle of right humerus|Nondisplaced fracture of lateral condyle of right humerus +C2841776|T037|AB|S42.454|ICD10CM|Nondisplaced fracture of lateral condyle of right humerus|Nondisplaced fracture of lateral condyle of right humerus +C2841777|T037|AB|S42.454A|ICD10CM|Nondisp fx of lateral condyle of right humerus, init|Nondisp fx of lateral condyle of right humerus, init +C2841777|T037|PT|S42.454A|ICD10CM|Nondisplaced fracture of lateral condyle of right humerus, initial encounter for closed fracture|Nondisplaced fracture of lateral condyle of right humerus, initial encounter for closed fracture +C2841778|T037|AB|S42.454B|ICD10CM|Nondisp fx of lateral condyle of r humerus, init for opn fx|Nondisp fx of lateral condyle of r humerus, init for opn fx +C2841778|T037|PT|S42.454B|ICD10CM|Nondisplaced fracture of lateral condyle of right humerus, initial encounter for open fracture|Nondisplaced fracture of lateral condyle of right humerus, initial encounter for open fracture +C2841779|T037|AB|S42.454D|ICD10CM|Nondisp fx of lateral condyle of r humer, 7thD|Nondisp fx of lateral condyle of r humer, 7thD +C2841780|T037|AB|S42.454G|ICD10CM|Nondisp fx of lateral condyle of r humer, 7thG|Nondisp fx of lateral condyle of r humer, 7thG +C2841781|T037|AB|S42.454K|ICD10CM|Nondisp fx of lateral condyle of r humer, 7thK|Nondisp fx of lateral condyle of r humer, 7thK +C2841782|T037|AB|S42.454P|ICD10CM|Nondisp fx of lateral condyle of r humer, 7thP|Nondisp fx of lateral condyle of r humer, 7thP +C2841783|T037|AB|S42.454S|ICD10CM|Nondisp fx of lateral condyle of right humerus, sequela|Nondisp fx of lateral condyle of right humerus, sequela +C2841783|T037|PT|S42.454S|ICD10CM|Nondisplaced fracture of lateral condyle of right humerus, sequela|Nondisplaced fracture of lateral condyle of right humerus, sequela +C2841784|T037|HT|S42.455|ICD10CM|Nondisplaced fracture of lateral condyle of left humerus|Nondisplaced fracture of lateral condyle of left humerus +C2841784|T037|AB|S42.455|ICD10CM|Nondisplaced fracture of lateral condyle of left humerus|Nondisplaced fracture of lateral condyle of left humerus +C2841785|T037|AB|S42.455A|ICD10CM|Nondisp fx of lateral condyle of left humerus, init|Nondisp fx of lateral condyle of left humerus, init +C2841785|T037|PT|S42.455A|ICD10CM|Nondisplaced fracture of lateral condyle of left humerus, initial encounter for closed fracture|Nondisplaced fracture of lateral condyle of left humerus, initial encounter for closed fracture +C2841786|T037|AB|S42.455B|ICD10CM|Nondisp fx of lateral condyle of l humerus, init for opn fx|Nondisp fx of lateral condyle of l humerus, init for opn fx +C2841786|T037|PT|S42.455B|ICD10CM|Nondisplaced fracture of lateral condyle of left humerus, initial encounter for open fracture|Nondisplaced fracture of lateral condyle of left humerus, initial encounter for open fracture +C2841787|T037|AB|S42.455D|ICD10CM|Nondisp fx of lateral condyle of l humer, 7thD|Nondisp fx of lateral condyle of l humer, 7thD +C2841788|T037|AB|S42.455G|ICD10CM|Nondisp fx of lateral condyle of l humer, 7thG|Nondisp fx of lateral condyle of l humer, 7thG +C2841789|T037|AB|S42.455K|ICD10CM|Nondisp fx of lateral condyle of l humer, 7thK|Nondisp fx of lateral condyle of l humer, 7thK +C2841790|T037|AB|S42.455P|ICD10CM|Nondisp fx of lateral condyle of l humer, 7thP|Nondisp fx of lateral condyle of l humer, 7thP +C2841791|T037|AB|S42.455S|ICD10CM|Nondisp fx of lateral condyle of left humerus, sequela|Nondisp fx of lateral condyle of left humerus, sequela +C2841791|T037|PT|S42.455S|ICD10CM|Nondisplaced fracture of lateral condyle of left humerus, sequela|Nondisplaced fracture of lateral condyle of left humerus, sequela +C2841792|T037|AB|S42.456|ICD10CM|Nondisp fx of lateral condyle of unspecified humerus|Nondisp fx of lateral condyle of unspecified humerus +C2841792|T037|HT|S42.456|ICD10CM|Nondisplaced fracture of lateral condyle of unspecified humerus|Nondisplaced fracture of lateral condyle of unspecified humerus +C2841793|T037|AB|S42.456A|ICD10CM|Nondisp fx of lateral condyle of unsp humerus, init|Nondisp fx of lateral condyle of unsp humerus, init +C2841794|T037|AB|S42.456B|ICD10CM|Nondisp fx of lateral condyle of unsp humer, init for opn fx|Nondisp fx of lateral condyle of unsp humer, init for opn fx +C2841794|T037|PT|S42.456B|ICD10CM|Nondisplaced fracture of lateral condyle of unspecified humerus, initial encounter for open fracture|Nondisplaced fracture of lateral condyle of unspecified humerus, initial encounter for open fracture +C2841795|T037|AB|S42.456D|ICD10CM|Nondisp fx of lateral condyle of unsp humer, 7thD|Nondisp fx of lateral condyle of unsp humer, 7thD +C2841796|T037|AB|S42.456G|ICD10CM|Nondisp fx of lateral condyle of unsp humer, 7thG|Nondisp fx of lateral condyle of unsp humer, 7thG +C2841797|T037|AB|S42.456K|ICD10CM|Nondisp fx of lateral condyle of unsp humer, 7thK|Nondisp fx of lateral condyle of unsp humer, 7thK +C2841798|T037|AB|S42.456P|ICD10CM|Nondisp fx of lateral condyle of unsp humer, 7thP|Nondisp fx of lateral condyle of unsp humer, 7thP +C2841799|T037|AB|S42.456S|ICD10CM|Nondisp fx of lateral condyle of unsp humerus, sequela|Nondisp fx of lateral condyle of unsp humerus, sequela +C2841799|T037|PT|S42.456S|ICD10CM|Nondisplaced fracture of lateral condyle of unspecified humerus, sequela|Nondisplaced fracture of lateral condyle of unspecified humerus, sequela +C0840590|T037|HT|S42.46|ICD10CM|Fracture of medial condyle of humerus|Fracture of medial condyle of humerus +C0840590|T037|AB|S42.46|ICD10CM|Fracture of medial condyle of humerus|Fracture of medial condyle of humerus +C2841800|T037|ET|S42.46|ICD10CM|Trochlea fracture of humerus|Trochlea fracture of humerus +C2841801|T037|HT|S42.461|ICD10CM|Displaced fracture of medial condyle of right humerus|Displaced fracture of medial condyle of right humerus +C2841801|T037|AB|S42.461|ICD10CM|Displaced fracture of medial condyle of right humerus|Displaced fracture of medial condyle of right humerus +C2841802|T037|AB|S42.461A|ICD10CM|Disp fx of medial condyle of right humerus, init for clos fx|Disp fx of medial condyle of right humerus, init for clos fx +C2841802|T037|PT|S42.461A|ICD10CM|Displaced fracture of medial condyle of right humerus, initial encounter for closed fracture|Displaced fracture of medial condyle of right humerus, initial encounter for closed fracture +C2841803|T037|AB|S42.461B|ICD10CM|Disp fx of medial condyle of right humerus, init for opn fx|Disp fx of medial condyle of right humerus, init for opn fx +C2841803|T037|PT|S42.461B|ICD10CM|Displaced fracture of medial condyle of right humerus, initial encounter for open fracture|Displaced fracture of medial condyle of right humerus, initial encounter for open fracture +C2841804|T037|AB|S42.461D|ICD10CM|Disp fx of med condyle of r humer, subs for fx w routn heal|Disp fx of med condyle of r humer, subs for fx w routn heal +C2841805|T037|AB|S42.461G|ICD10CM|Disp fx of med condyle of r humer, subs for fx w delay heal|Disp fx of med condyle of r humer, subs for fx w delay heal +C2841806|T037|AB|S42.461K|ICD10CM|Disp fx of medial condyle of r humer, subs for fx w nonunion|Disp fx of medial condyle of r humer, subs for fx w nonunion +C2841807|T037|AB|S42.461P|ICD10CM|Disp fx of medial condyle of r humer, subs for fx w malunion|Disp fx of medial condyle of r humer, subs for fx w malunion +C2841808|T037|AB|S42.461S|ICD10CM|Disp fx of medial condyle of right humerus, sequela|Disp fx of medial condyle of right humerus, sequela +C2841808|T037|PT|S42.461S|ICD10CM|Displaced fracture of medial condyle of right humerus, sequela|Displaced fracture of medial condyle of right humerus, sequela +C2841809|T037|HT|S42.462|ICD10CM|Displaced fracture of medial condyle of left humerus|Displaced fracture of medial condyle of left humerus +C2841809|T037|AB|S42.462|ICD10CM|Displaced fracture of medial condyle of left humerus|Displaced fracture of medial condyle of left humerus +C2841810|T037|AB|S42.462A|ICD10CM|Disp fx of medial condyle of left humerus, init for clos fx|Disp fx of medial condyle of left humerus, init for clos fx +C2841810|T037|PT|S42.462A|ICD10CM|Displaced fracture of medial condyle of left humerus, initial encounter for closed fracture|Displaced fracture of medial condyle of left humerus, initial encounter for closed fracture +C2841811|T037|AB|S42.462B|ICD10CM|Disp fx of medial condyle of left humerus, init for opn fx|Disp fx of medial condyle of left humerus, init for opn fx +C2841811|T037|PT|S42.462B|ICD10CM|Displaced fracture of medial condyle of left humerus, initial encounter for open fracture|Displaced fracture of medial condyle of left humerus, initial encounter for open fracture +C2841812|T037|AB|S42.462D|ICD10CM|Disp fx of med condyle of l humer, subs for fx w routn heal|Disp fx of med condyle of l humer, subs for fx w routn heal +C2841813|T037|AB|S42.462G|ICD10CM|Disp fx of med condyle of l humer, subs for fx w delay heal|Disp fx of med condyle of l humer, subs for fx w delay heal +C2841814|T037|AB|S42.462K|ICD10CM|Disp fx of medial condyle of l humer, subs for fx w nonunion|Disp fx of medial condyle of l humer, subs for fx w nonunion +C2841815|T037|AB|S42.462P|ICD10CM|Disp fx of medial condyle of l humer, subs for fx w malunion|Disp fx of medial condyle of l humer, subs for fx w malunion +C2841816|T037|AB|S42.462S|ICD10CM|Disp fx of medial condyle of left humerus, sequela|Disp fx of medial condyle of left humerus, sequela +C2841816|T037|PT|S42.462S|ICD10CM|Displaced fracture of medial condyle of left humerus, sequela|Displaced fracture of medial condyle of left humerus, sequela +C2841817|T037|AB|S42.463|ICD10CM|Displaced fracture of medial condyle of unspecified humerus|Displaced fracture of medial condyle of unspecified humerus +C2841817|T037|HT|S42.463|ICD10CM|Displaced fracture of medial condyle of unspecified humerus|Displaced fracture of medial condyle of unspecified humerus +C2841818|T037|AB|S42.463A|ICD10CM|Disp fx of medial condyle of unsp humerus, init for clos fx|Disp fx of medial condyle of unsp humerus, init for clos fx +C2841818|T037|PT|S42.463A|ICD10CM|Displaced fracture of medial condyle of unspecified humerus, initial encounter for closed fracture|Displaced fracture of medial condyle of unspecified humerus, initial encounter for closed fracture +C2841819|T037|AB|S42.463B|ICD10CM|Disp fx of medial condyle of unsp humerus, init for opn fx|Disp fx of medial condyle of unsp humerus, init for opn fx +C2841819|T037|PT|S42.463B|ICD10CM|Displaced fracture of medial condyle of unspecified humerus, initial encounter for open fracture|Displaced fracture of medial condyle of unspecified humerus, initial encounter for open fracture +C2841820|T037|AB|S42.463D|ICD10CM|Disp fx of med condyle of unsp humer, 7thD|Disp fx of med condyle of unsp humer, 7thD +C2841821|T037|AB|S42.463G|ICD10CM|Disp fx of med condyle of unsp humer, 7thG|Disp fx of med condyle of unsp humer, 7thG +C2841822|T037|AB|S42.463K|ICD10CM|Disp fx of med condyle of unsp humer, subs for fx w nonunion|Disp fx of med condyle of unsp humer, subs for fx w nonunion +C2841823|T037|AB|S42.463P|ICD10CM|Disp fx of med condyle of unsp humer, subs for fx w malunion|Disp fx of med condyle of unsp humer, subs for fx w malunion +C2841824|T037|AB|S42.463S|ICD10CM|Disp fx of medial condyle of unspecified humerus, sequela|Disp fx of medial condyle of unspecified humerus, sequela +C2841824|T037|PT|S42.463S|ICD10CM|Displaced fracture of medial condyle of unspecified humerus, sequela|Displaced fracture of medial condyle of unspecified humerus, sequela +C2841825|T037|HT|S42.464|ICD10CM|Nondisplaced fracture of medial condyle of right humerus|Nondisplaced fracture of medial condyle of right humerus +C2841825|T037|AB|S42.464|ICD10CM|Nondisplaced fracture of medial condyle of right humerus|Nondisplaced fracture of medial condyle of right humerus +C2841826|T037|AB|S42.464A|ICD10CM|Nondisp fx of medial condyle of right humerus, init|Nondisp fx of medial condyle of right humerus, init +C2841826|T037|PT|S42.464A|ICD10CM|Nondisplaced fracture of medial condyle of right humerus, initial encounter for closed fracture|Nondisplaced fracture of medial condyle of right humerus, initial encounter for closed fracture +C2841827|T037|AB|S42.464B|ICD10CM|Nondisp fx of medial condyle of r humerus, init for opn fx|Nondisp fx of medial condyle of r humerus, init for opn fx +C2841827|T037|PT|S42.464B|ICD10CM|Nondisplaced fracture of medial condyle of right humerus, initial encounter for open fracture|Nondisplaced fracture of medial condyle of right humerus, initial encounter for open fracture +C2841828|T037|AB|S42.464D|ICD10CM|Nondisp fx of med condyle of r humer, 7thD|Nondisp fx of med condyle of r humer, 7thD +C2841829|T037|AB|S42.464G|ICD10CM|Nondisp fx of med condyle of r humer, 7thG|Nondisp fx of med condyle of r humer, 7thG +C2841830|T037|AB|S42.464K|ICD10CM|Nondisp fx of med condyle of r humer, subs for fx w nonunion|Nondisp fx of med condyle of r humer, subs for fx w nonunion +C2841831|T037|AB|S42.464P|ICD10CM|Nondisp fx of med condyle of r humer, subs for fx w malunion|Nondisp fx of med condyle of r humer, subs for fx w malunion +C2841832|T037|AB|S42.464S|ICD10CM|Nondisp fx of medial condyle of right humerus, sequela|Nondisp fx of medial condyle of right humerus, sequela +C2841832|T037|PT|S42.464S|ICD10CM|Nondisplaced fracture of medial condyle of right humerus, sequela|Nondisplaced fracture of medial condyle of right humerus, sequela +C2841833|T037|AB|S42.465|ICD10CM|Nondisplaced fracture of medial condyle of left humerus|Nondisplaced fracture of medial condyle of left humerus +C2841833|T037|HT|S42.465|ICD10CM|Nondisplaced fracture of medial condyle of left humerus|Nondisplaced fracture of medial condyle of left humerus +C2841834|T037|AB|S42.465A|ICD10CM|Nondisp fx of medial condyle of left humerus, init|Nondisp fx of medial condyle of left humerus, init +C2841834|T037|PT|S42.465A|ICD10CM|Nondisplaced fracture of medial condyle of left humerus, initial encounter for closed fracture|Nondisplaced fracture of medial condyle of left humerus, initial encounter for closed fracture +C2841835|T037|AB|S42.465B|ICD10CM|Nondisp fx of medial condyle of l humerus, init for opn fx|Nondisp fx of medial condyle of l humerus, init for opn fx +C2841835|T037|PT|S42.465B|ICD10CM|Nondisplaced fracture of medial condyle of left humerus, initial encounter for open fracture|Nondisplaced fracture of medial condyle of left humerus, initial encounter for open fracture +C2841836|T037|AB|S42.465D|ICD10CM|Nondisp fx of med condyle of l humer, 7thD|Nondisp fx of med condyle of l humer, 7thD +C2841837|T037|AB|S42.465G|ICD10CM|Nondisp fx of med condyle of l humer, 7thG|Nondisp fx of med condyle of l humer, 7thG +C2841838|T037|AB|S42.465K|ICD10CM|Nondisp fx of med condyle of l humer, subs for fx w nonunion|Nondisp fx of med condyle of l humer, subs for fx w nonunion +C2841839|T037|AB|S42.465P|ICD10CM|Nondisp fx of med condyle of l humer, subs for fx w malunion|Nondisp fx of med condyle of l humer, subs for fx w malunion +C2841840|T037|AB|S42.465S|ICD10CM|Nondisp fx of medial condyle of left humerus, sequela|Nondisp fx of medial condyle of left humerus, sequela +C2841840|T037|PT|S42.465S|ICD10CM|Nondisplaced fracture of medial condyle of left humerus, sequela|Nondisplaced fracture of medial condyle of left humerus, sequela +C2841841|T037|AB|S42.466|ICD10CM|Nondisp fx of medial condyle of unspecified humerus|Nondisp fx of medial condyle of unspecified humerus +C2841841|T037|HT|S42.466|ICD10CM|Nondisplaced fracture of medial condyle of unspecified humerus|Nondisplaced fracture of medial condyle of unspecified humerus +C2841842|T037|AB|S42.466A|ICD10CM|Nondisp fx of medial condyle of unsp humerus, init|Nondisp fx of medial condyle of unsp humerus, init +C2841843|T037|AB|S42.466B|ICD10CM|Nondisp fx of medial condyle of unsp humer, init for opn fx|Nondisp fx of medial condyle of unsp humer, init for opn fx +C2841843|T037|PT|S42.466B|ICD10CM|Nondisplaced fracture of medial condyle of unspecified humerus, initial encounter for open fracture|Nondisplaced fracture of medial condyle of unspecified humerus, initial encounter for open fracture +C2841844|T037|AB|S42.466D|ICD10CM|Nondisp fx of med condyle of unsp humer, 7thD|Nondisp fx of med condyle of unsp humer, 7thD +C2841845|T037|AB|S42.466G|ICD10CM|Nondisp fx of med condyle of unsp humer, 7thG|Nondisp fx of med condyle of unsp humer, 7thG +C2841846|T037|AB|S42.466K|ICD10CM|Nondisp fx of med condyle of unsp humer, 7thK|Nondisp fx of med condyle of unsp humer, 7thK +C2841847|T037|AB|S42.466P|ICD10CM|Nondisp fx of med condyle of unsp humer, 7thP|Nondisp fx of med condyle of unsp humer, 7thP +C2841848|T037|AB|S42.466S|ICD10CM|Nondisp fx of medial condyle of unspecified humerus, sequela|Nondisp fx of medial condyle of unspecified humerus, sequela +C2841848|T037|PT|S42.466S|ICD10CM|Nondisplaced fracture of medial condyle of unspecified humerus, sequela|Nondisplaced fracture of medial condyle of unspecified humerus, sequela +C2841849|T037|AB|S42.47|ICD10CM|Transcondylar fracture of humerus|Transcondylar fracture of humerus +C2841849|T037|HT|S42.47|ICD10CM|Transcondylar fracture of humerus|Transcondylar fracture of humerus +C2841850|T037|HT|S42.471|ICD10CM|Displaced transcondylar fracture of right humerus|Displaced transcondylar fracture of right humerus +C2841850|T037|AB|S42.471|ICD10CM|Displaced transcondylar fracture of right humerus|Displaced transcondylar fracture of right humerus +C2841851|T037|AB|S42.471A|ICD10CM|Displaced transcondylar fracture of right humerus, init|Displaced transcondylar fracture of right humerus, init +C2841851|T037|PT|S42.471A|ICD10CM|Displaced transcondylar fracture of right humerus, initial encounter for closed fracture|Displaced transcondylar fracture of right humerus, initial encounter for closed fracture +C2841852|T037|AB|S42.471B|ICD10CM|Displaced transcondy fracture of r humerus, init for opn fx|Displaced transcondy fracture of r humerus, init for opn fx +C2841852|T037|PT|S42.471B|ICD10CM|Displaced transcondylar fracture of right humerus, initial encounter for open fracture|Displaced transcondylar fracture of right humerus, initial encounter for open fracture +C2841853|T037|AB|S42.471D|ICD10CM|Displaced transcondy fx r humerus, subs for fx w routn heal|Displaced transcondy fx r humerus, subs for fx w routn heal +C2841854|T037|AB|S42.471G|ICD10CM|Displaced transcondy fx r humerus, subs for fx w delay heal|Displaced transcondy fx r humerus, subs for fx w delay heal +C2841855|T037|AB|S42.471K|ICD10CM|Displaced transcondy fx r humerus, subs for fx w nonunion|Displaced transcondy fx r humerus, subs for fx w nonunion +C2841855|T037|PT|S42.471K|ICD10CM|Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with nonunion|Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with nonunion +C2841856|T037|AB|S42.471P|ICD10CM|Displaced transcondy fx r humerus, subs for fx w malunion|Displaced transcondy fx r humerus, subs for fx w malunion +C2841856|T037|PT|S42.471P|ICD10CM|Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with malunion|Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with malunion +C2841857|T037|PT|S42.471S|ICD10CM|Displaced transcondylar fracture of right humerus, sequela|Displaced transcondylar fracture of right humerus, sequela +C2841857|T037|AB|S42.471S|ICD10CM|Displaced transcondylar fracture of right humerus, sequela|Displaced transcondylar fracture of right humerus, sequela +C2841858|T037|HT|S42.472|ICD10CM|Displaced transcondylar fracture of left humerus|Displaced transcondylar fracture of left humerus +C2841858|T037|AB|S42.472|ICD10CM|Displaced transcondylar fracture of left humerus|Displaced transcondylar fracture of left humerus +C2841859|T037|AB|S42.472A|ICD10CM|Displaced transcondylar fracture of left humerus, init|Displaced transcondylar fracture of left humerus, init +C2841859|T037|PT|S42.472A|ICD10CM|Displaced transcondylar fracture of left humerus, initial encounter for closed fracture|Displaced transcondylar fracture of left humerus, initial encounter for closed fracture +C2841860|T037|AB|S42.472B|ICD10CM|Displaced transcondy fracture of l humerus, init for opn fx|Displaced transcondy fracture of l humerus, init for opn fx +C2841860|T037|PT|S42.472B|ICD10CM|Displaced transcondylar fracture of left humerus, initial encounter for open fracture|Displaced transcondylar fracture of left humerus, initial encounter for open fracture +C2841861|T037|AB|S42.472D|ICD10CM|Displaced transcondy fx l humerus, subs for fx w routn heal|Displaced transcondy fx l humerus, subs for fx w routn heal +C2841862|T037|AB|S42.472G|ICD10CM|Displaced transcondy fx l humerus, subs for fx w delay heal|Displaced transcondy fx l humerus, subs for fx w delay heal +C2841863|T037|AB|S42.472K|ICD10CM|Displaced transcondy fx l humerus, subs for fx w nonunion|Displaced transcondy fx l humerus, subs for fx w nonunion +C2841863|T037|PT|S42.472K|ICD10CM|Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with nonunion|Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with nonunion +C2841864|T037|AB|S42.472P|ICD10CM|Displaced transcondy fx l humerus, subs for fx w malunion|Displaced transcondy fx l humerus, subs for fx w malunion +C2841864|T037|PT|S42.472P|ICD10CM|Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with malunion|Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with malunion +C2841865|T037|AB|S42.472S|ICD10CM|Displaced transcondylar fracture of left humerus, sequela|Displaced transcondylar fracture of left humerus, sequela +C2841865|T037|PT|S42.472S|ICD10CM|Displaced transcondylar fracture of left humerus, sequela|Displaced transcondylar fracture of left humerus, sequela +C2841866|T037|AB|S42.473|ICD10CM|Displaced transcondylar fracture of unspecified humerus|Displaced transcondylar fracture of unspecified humerus +C2841866|T037|HT|S42.473|ICD10CM|Displaced transcondylar fracture of unspecified humerus|Displaced transcondylar fracture of unspecified humerus +C2841867|T037|AB|S42.473A|ICD10CM|Displaced transcondylar fracture of unsp humerus, init|Displaced transcondylar fracture of unsp humerus, init +C2841867|T037|PT|S42.473A|ICD10CM|Displaced transcondylar fracture of unspecified humerus, initial encounter for closed fracture|Displaced transcondylar fracture of unspecified humerus, initial encounter for closed fracture +C2841868|T037|AB|S42.473B|ICD10CM|Displaced transcondy fx unsp humerus, init for opn fx|Displaced transcondy fx unsp humerus, init for opn fx +C2841868|T037|PT|S42.473B|ICD10CM|Displaced transcondylar fracture of unspecified humerus, initial encounter for open fracture|Displaced transcondylar fracture of unspecified humerus, initial encounter for open fracture +C2841869|T037|AB|S42.473D|ICD10CM|Displ transcondy fx unsp humerus, subs for fx w routn heal|Displ transcondy fx unsp humerus, subs for fx w routn heal +C2841870|T037|AB|S42.473G|ICD10CM|Displ transcondy fx unsp humerus, subs for fx w delay heal|Displ transcondy fx unsp humerus, subs for fx w delay heal +C2841871|T037|AB|S42.473K|ICD10CM|Displaced transcondy fx unsp humerus, subs for fx w nonunion|Displaced transcondy fx unsp humerus, subs for fx w nonunion +C2841872|T037|AB|S42.473P|ICD10CM|Displaced transcondy fx unsp humerus, subs for fx w malunion|Displaced transcondy fx unsp humerus, subs for fx w malunion +C2841873|T037|AB|S42.473S|ICD10CM|Displaced transcondylar fracture of unsp humerus, sequela|Displaced transcondylar fracture of unsp humerus, sequela +C2841873|T037|PT|S42.473S|ICD10CM|Displaced transcondylar fracture of unspecified humerus, sequela|Displaced transcondylar fracture of unspecified humerus, sequela +C2841874|T037|HT|S42.474|ICD10CM|Nondisplaced transcondylar fracture of right humerus|Nondisplaced transcondylar fracture of right humerus +C2841874|T037|AB|S42.474|ICD10CM|Nondisplaced transcondylar fracture of right humerus|Nondisplaced transcondylar fracture of right humerus +C2841875|T037|AB|S42.474A|ICD10CM|Nondisplaced transcondylar fracture of right humerus, init|Nondisplaced transcondylar fracture of right humerus, init +C2841875|T037|PT|S42.474A|ICD10CM|Nondisplaced transcondylar fracture of right humerus, initial encounter for closed fracture|Nondisplaced transcondylar fracture of right humerus, initial encounter for closed fracture +C2841876|T037|AB|S42.474B|ICD10CM|Nondisp transcondy fracture of r humerus, init for opn fx|Nondisp transcondy fracture of r humerus, init for opn fx +C2841876|T037|PT|S42.474B|ICD10CM|Nondisplaced transcondylar fracture of right humerus, initial encounter for open fracture|Nondisplaced transcondylar fracture of right humerus, initial encounter for open fracture +C2841877|T037|AB|S42.474D|ICD10CM|Nondisp transcondy fx r humerus, subs for fx w routn heal|Nondisp transcondy fx r humerus, subs for fx w routn heal +C2841878|T037|AB|S42.474G|ICD10CM|Nondisp transcondy fx r humerus, subs for fx w delay heal|Nondisp transcondy fx r humerus, subs for fx w delay heal +C2841879|T037|AB|S42.474K|ICD10CM|Nondisp transcondy fx r humerus, subs for fx w nonunion|Nondisp transcondy fx r humerus, subs for fx w nonunion +C2841880|T037|AB|S42.474P|ICD10CM|Nondisp transcondy fx r humerus, subs for fx w malunion|Nondisp transcondy fx r humerus, subs for fx w malunion +C2841881|T037|AB|S42.474S|ICD10CM|Nondisplaced transcondylar fracture of r humerus, sequela|Nondisplaced transcondylar fracture of r humerus, sequela +C2841881|T037|PT|S42.474S|ICD10CM|Nondisplaced transcondylar fracture of right humerus, sequela|Nondisplaced transcondylar fracture of right humerus, sequela +C2841882|T037|HT|S42.475|ICD10CM|Nondisplaced transcondylar fracture of left humerus|Nondisplaced transcondylar fracture of left humerus +C2841882|T037|AB|S42.475|ICD10CM|Nondisplaced transcondylar fracture of left humerus|Nondisplaced transcondylar fracture of left humerus +C2841883|T037|AB|S42.475A|ICD10CM|Nondisplaced transcondylar fracture of left humerus, init|Nondisplaced transcondylar fracture of left humerus, init +C2841883|T037|PT|S42.475A|ICD10CM|Nondisplaced transcondylar fracture of left humerus, initial encounter for closed fracture|Nondisplaced transcondylar fracture of left humerus, initial encounter for closed fracture +C2841884|T037|AB|S42.475B|ICD10CM|Nondisp transcondy fracture of l humerus, init for opn fx|Nondisp transcondy fracture of l humerus, init for opn fx +C2841884|T037|PT|S42.475B|ICD10CM|Nondisplaced transcondylar fracture of left humerus, initial encounter for open fracture|Nondisplaced transcondylar fracture of left humerus, initial encounter for open fracture +C2841885|T037|AB|S42.475D|ICD10CM|Nondisp transcondy fx l humerus, subs for fx w routn heal|Nondisp transcondy fx l humerus, subs for fx w routn heal +C2841886|T037|AB|S42.475G|ICD10CM|Nondisp transcondy fx l humerus, subs for fx w delay heal|Nondisp transcondy fx l humerus, subs for fx w delay heal +C2841887|T037|AB|S42.475K|ICD10CM|Nondisp transcondy fx l humerus, subs for fx w nonunion|Nondisp transcondy fx l humerus, subs for fx w nonunion +C2841887|T037|PT|S42.475K|ICD10CM|Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with nonunion|Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with nonunion +C2841888|T037|AB|S42.475P|ICD10CM|Nondisp transcondy fx l humerus, subs for fx w malunion|Nondisp transcondy fx l humerus, subs for fx w malunion +C2841888|T037|PT|S42.475P|ICD10CM|Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with malunion|Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with malunion +C2841889|T037|AB|S42.475S|ICD10CM|Nondisplaced transcondylar fracture of left humerus, sequela|Nondisplaced transcondylar fracture of left humerus, sequela +C2841889|T037|PT|S42.475S|ICD10CM|Nondisplaced transcondylar fracture of left humerus, sequela|Nondisplaced transcondylar fracture of left humerus, sequela +C2841890|T037|AB|S42.476|ICD10CM|Nondisplaced transcondylar fracture of unspecified humerus|Nondisplaced transcondylar fracture of unspecified humerus +C2841890|T037|HT|S42.476|ICD10CM|Nondisplaced transcondylar fracture of unspecified humerus|Nondisplaced transcondylar fracture of unspecified humerus +C2841891|T037|AB|S42.476A|ICD10CM|Nondisplaced transcondylar fracture of unsp humerus, init|Nondisplaced transcondylar fracture of unsp humerus, init +C2841891|T037|PT|S42.476A|ICD10CM|Nondisplaced transcondylar fracture of unspecified humerus, initial encounter for closed fracture|Nondisplaced transcondylar fracture of unspecified humerus, initial encounter for closed fracture +C2841892|T037|AB|S42.476B|ICD10CM|Nondisp transcondy fracture of unsp humerus, init for opn fx|Nondisp transcondy fracture of unsp humerus, init for opn fx +C2841892|T037|PT|S42.476B|ICD10CM|Nondisplaced transcondylar fracture of unspecified humerus, initial encounter for open fracture|Nondisplaced transcondylar fracture of unspecified humerus, initial encounter for open fracture +C2841893|T037|AB|S42.476D|ICD10CM|Nondisp transcondy fx unsp humerus, subs for fx w routn heal|Nondisp transcondy fx unsp humerus, subs for fx w routn heal +C2841894|T037|AB|S42.476G|ICD10CM|Nondisp transcondy fx unsp humerus, subs for fx w delay heal|Nondisp transcondy fx unsp humerus, subs for fx w delay heal +C2841895|T037|AB|S42.476K|ICD10CM|Nondisp transcondy fx unsp humerus, subs for fx w nonunion|Nondisp transcondy fx unsp humerus, subs for fx w nonunion +C2841896|T037|AB|S42.476P|ICD10CM|Nondisp transcondy fx unsp humerus, subs for fx w malunion|Nondisp transcondy fx unsp humerus, subs for fx w malunion +C2841897|T037|AB|S42.476S|ICD10CM|Nondisplaced transcondylar fracture of unsp humerus, sequela|Nondisplaced transcondylar fracture of unsp humerus, sequela +C2841897|T037|PT|S42.476S|ICD10CM|Nondisplaced transcondylar fracture of unspecified humerus, sequela|Nondisplaced transcondylar fracture of unspecified humerus, sequela +C2841898|T037|AB|S42.48|ICD10CM|Torus fracture of lower end of humerus|Torus fracture of lower end of humerus +C2841898|T037|HT|S42.48|ICD10CM|Torus fracture of lower end of humerus|Torus fracture of lower end of humerus +C2841899|T037|AB|S42.481|ICD10CM|Torus fracture of lower end of right humerus|Torus fracture of lower end of right humerus +C2841899|T037|HT|S42.481|ICD10CM|Torus fracture of lower end of right humerus|Torus fracture of lower end of right humerus +C2841900|T037|AB|S42.481A|ICD10CM|Torus fracture of lower end of right humerus, init|Torus fracture of lower end of right humerus, init +C2841900|T037|PT|S42.481A|ICD10CM|Torus fracture of lower end of right humerus, initial encounter for closed fracture|Torus fracture of lower end of right humerus, initial encounter for closed fracture +C2841901|T037|PT|S42.481D|ICD10CM|Torus fracture of lower end of right humerus, subsequent encounter for fracture with routine healing|Torus fracture of lower end of right humerus, subsequent encounter for fracture with routine healing +C2841901|T037|AB|S42.481D|ICD10CM|Torus fx lower end of r humerus, subs for fx w routn heal|Torus fx lower end of r humerus, subs for fx w routn heal +C2841902|T037|PT|S42.481G|ICD10CM|Torus fracture of lower end of right humerus, subsequent encounter for fracture with delayed healing|Torus fracture of lower end of right humerus, subsequent encounter for fracture with delayed healing +C2841902|T037|AB|S42.481G|ICD10CM|Torus fx lower end of r humerus, subs for fx w delay heal|Torus fx lower end of r humerus, subs for fx w delay heal +C2841903|T037|PT|S42.481K|ICD10CM|Torus fracture of lower end of right humerus, subsequent encounter for fracture with nonunion|Torus fracture of lower end of right humerus, subsequent encounter for fracture with nonunion +C2841903|T037|AB|S42.481K|ICD10CM|Torus fx lower end of r humerus, subs for fx w nonunion|Torus fx lower end of r humerus, subs for fx w nonunion +C2841904|T037|PT|S42.481P|ICD10CM|Torus fracture of lower end of right humerus, subsequent encounter for fracture with malunion|Torus fracture of lower end of right humerus, subsequent encounter for fracture with malunion +C2841904|T037|AB|S42.481P|ICD10CM|Torus fx lower end of r humerus, subs for fx w malunion|Torus fx lower end of r humerus, subs for fx w malunion +C2841905|T037|PT|S42.481S|ICD10CM|Torus fracture of lower end of right humerus, sequela|Torus fracture of lower end of right humerus, sequela +C2841905|T037|AB|S42.481S|ICD10CM|Torus fracture of lower end of right humerus, sequela|Torus fracture of lower end of right humerus, sequela +C2841906|T037|AB|S42.482|ICD10CM|Torus fracture of lower end of left humerus|Torus fracture of lower end of left humerus +C2841906|T037|HT|S42.482|ICD10CM|Torus fracture of lower end of left humerus|Torus fracture of lower end of left humerus +C2841907|T037|AB|S42.482A|ICD10CM|Torus fracture of lower end of left humerus, init|Torus fracture of lower end of left humerus, init +C2841907|T037|PT|S42.482A|ICD10CM|Torus fracture of lower end of left humerus, initial encounter for closed fracture|Torus fracture of lower end of left humerus, initial encounter for closed fracture +C2841908|T037|PT|S42.482D|ICD10CM|Torus fracture of lower end of left humerus, subsequent encounter for fracture with routine healing|Torus fracture of lower end of left humerus, subsequent encounter for fracture with routine healing +C2841908|T037|AB|S42.482D|ICD10CM|Torus fx lower end of l humerus, subs for fx w routn heal|Torus fx lower end of l humerus, subs for fx w routn heal +C2841909|T037|PT|S42.482G|ICD10CM|Torus fracture of lower end of left humerus, subsequent encounter for fracture with delayed healing|Torus fracture of lower end of left humerus, subsequent encounter for fracture with delayed healing +C2841909|T037|AB|S42.482G|ICD10CM|Torus fx lower end of l humerus, subs for fx w delay heal|Torus fx lower end of l humerus, subs for fx w delay heal +C2841910|T037|PT|S42.482K|ICD10CM|Torus fracture of lower end of left humerus, subsequent encounter for fracture with nonunion|Torus fracture of lower end of left humerus, subsequent encounter for fracture with nonunion +C2841910|T037|AB|S42.482K|ICD10CM|Torus fx lower end of l humerus, subs for fx w nonunion|Torus fx lower end of l humerus, subs for fx w nonunion +C2841911|T037|PT|S42.482P|ICD10CM|Torus fracture of lower end of left humerus, subsequent encounter for fracture with malunion|Torus fracture of lower end of left humerus, subsequent encounter for fracture with malunion +C2841911|T037|AB|S42.482P|ICD10CM|Torus fx lower end of l humerus, subs for fx w malunion|Torus fx lower end of l humerus, subs for fx w malunion +C2841912|T037|PT|S42.482S|ICD10CM|Torus fracture of lower end of left humerus, sequela|Torus fracture of lower end of left humerus, sequela +C2841912|T037|AB|S42.482S|ICD10CM|Torus fracture of lower end of left humerus, sequela|Torus fracture of lower end of left humerus, sequela +C2841913|T037|AB|S42.489|ICD10CM|Torus fracture of lower end of unspecified humerus|Torus fracture of lower end of unspecified humerus +C2841913|T037|HT|S42.489|ICD10CM|Torus fracture of lower end of unspecified humerus|Torus fracture of lower end of unspecified humerus +C2841914|T037|AB|S42.489A|ICD10CM|Torus fracture of lower end of unsp humerus, init|Torus fracture of lower end of unsp humerus, init +C2841914|T037|PT|S42.489A|ICD10CM|Torus fracture of lower end of unspecified humerus, initial encounter for closed fracture|Torus fracture of lower end of unspecified humerus, initial encounter for closed fracture +C2841915|T037|AB|S42.489D|ICD10CM|Torus fx lower end of unsp humerus, subs for fx w routn heal|Torus fx lower end of unsp humerus, subs for fx w routn heal +C2841916|T037|AB|S42.489G|ICD10CM|Torus fx lower end of unsp humerus, subs for fx w delay heal|Torus fx lower end of unsp humerus, subs for fx w delay heal +C2841917|T037|PT|S42.489K|ICD10CM|Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with nonunion|Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with nonunion +C2841917|T037|AB|S42.489K|ICD10CM|Torus fx lower end of unsp humerus, subs for fx w nonunion|Torus fx lower end of unsp humerus, subs for fx w nonunion +C2841918|T037|PT|S42.489P|ICD10CM|Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion|Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion +C2841918|T037|AB|S42.489P|ICD10CM|Torus fx lower end of unsp humerus, subs for fx w malunion|Torus fx lower end of unsp humerus, subs for fx w malunion +C2841919|T037|PT|S42.489S|ICD10CM|Torus fracture of lower end of unspecified humerus, sequela|Torus fracture of lower end of unspecified humerus, sequela +C2841919|T037|AB|S42.489S|ICD10CM|Torus fracture of lower end of unspecified humerus, sequela|Torus fracture of lower end of unspecified humerus, sequela +C2841920|T037|AB|S42.49|ICD10CM|Other fracture of lower end of humerus|Other fracture of lower end of humerus +C2841920|T037|HT|S42.49|ICD10CM|Other fracture of lower end of humerus|Other fracture of lower end of humerus +C2841921|T037|AB|S42.491|ICD10CM|Other displaced fracture of lower end of right humerus|Other displaced fracture of lower end of right humerus +C2841921|T037|HT|S42.491|ICD10CM|Other displaced fracture of lower end of right humerus|Other displaced fracture of lower end of right humerus +C2841922|T037|AB|S42.491A|ICD10CM|Oth disp fx of lower end of right humerus, init for clos fx|Oth disp fx of lower end of right humerus, init for clos fx +C2841922|T037|PT|S42.491A|ICD10CM|Other displaced fracture of lower end of right humerus, initial encounter for closed fracture|Other displaced fracture of lower end of right humerus, initial encounter for closed fracture +C2841923|T037|AB|S42.491B|ICD10CM|Oth disp fx of lower end of right humerus, init for opn fx|Oth disp fx of lower end of right humerus, init for opn fx +C2841923|T037|PT|S42.491B|ICD10CM|Other displaced fracture of lower end of right humerus, initial encounter for open fracture|Other displaced fracture of lower end of right humerus, initial encounter for open fracture +C2841924|T037|AB|S42.491D|ICD10CM|Oth disp fx of lower end r humer, subs for fx w routn heal|Oth disp fx of lower end r humer, subs for fx w routn heal +C2841925|T037|AB|S42.491G|ICD10CM|Oth disp fx of lower end r humer, subs for fx w delay heal|Oth disp fx of lower end r humer, subs for fx w delay heal +C2841926|T037|AB|S42.491K|ICD10CM|Oth disp fx of lower end of r humer, subs for fx w nonunion|Oth disp fx of lower end of r humer, subs for fx w nonunion +C2841927|T037|AB|S42.491P|ICD10CM|Oth disp fx of lower end of r humer, subs for fx w malunion|Oth disp fx of lower end of r humer, subs for fx w malunion +C2841928|T037|AB|S42.491S|ICD10CM|Other disp fx of lower end of right humerus, sequela|Other disp fx of lower end of right humerus, sequela +C2841928|T037|PT|S42.491S|ICD10CM|Other displaced fracture of lower end of right humerus, sequela|Other displaced fracture of lower end of right humerus, sequela +C2841929|T037|AB|S42.492|ICD10CM|Other displaced fracture of lower end of left humerus|Other displaced fracture of lower end of left humerus +C2841929|T037|HT|S42.492|ICD10CM|Other displaced fracture of lower end of left humerus|Other displaced fracture of lower end of left humerus +C2841930|T037|AB|S42.492A|ICD10CM|Oth disp fx of lower end of left humerus, init for clos fx|Oth disp fx of lower end of left humerus, init for clos fx +C2841930|T037|PT|S42.492A|ICD10CM|Other displaced fracture of lower end of left humerus, initial encounter for closed fracture|Other displaced fracture of lower end of left humerus, initial encounter for closed fracture +C2841931|T037|AB|S42.492B|ICD10CM|Oth disp fx of lower end of left humerus, init for opn fx|Oth disp fx of lower end of left humerus, init for opn fx +C2841931|T037|PT|S42.492B|ICD10CM|Other displaced fracture of lower end of left humerus, initial encounter for open fracture|Other displaced fracture of lower end of left humerus, initial encounter for open fracture +C2841932|T037|AB|S42.492D|ICD10CM|Oth disp fx of lower end l humer, subs for fx w routn heal|Oth disp fx of lower end l humer, subs for fx w routn heal +C2841933|T037|AB|S42.492G|ICD10CM|Oth disp fx of lower end l humer, subs for fx w delay heal|Oth disp fx of lower end l humer, subs for fx w delay heal +C2841934|T037|AB|S42.492K|ICD10CM|Oth disp fx of lower end of l humer, subs for fx w nonunion|Oth disp fx of lower end of l humer, subs for fx w nonunion +C2841935|T037|AB|S42.492P|ICD10CM|Oth disp fx of lower end of l humer, subs for fx w malunion|Oth disp fx of lower end of l humer, subs for fx w malunion +C2841936|T037|AB|S42.492S|ICD10CM|Other disp fx of lower end of left humerus, sequela|Other disp fx of lower end of left humerus, sequela +C2841936|T037|PT|S42.492S|ICD10CM|Other displaced fracture of lower end of left humerus, sequela|Other displaced fracture of lower end of left humerus, sequela +C2841937|T037|AB|S42.493|ICD10CM|Other displaced fracture of lower end of unspecified humerus|Other displaced fracture of lower end of unspecified humerus +C2841937|T037|HT|S42.493|ICD10CM|Other displaced fracture of lower end of unspecified humerus|Other displaced fracture of lower end of unspecified humerus +C2841938|T037|AB|S42.493A|ICD10CM|Oth disp fx of lower end of unsp humerus, init for clos fx|Oth disp fx of lower end of unsp humerus, init for clos fx +C2841938|T037|PT|S42.493A|ICD10CM|Other displaced fracture of lower end of unspecified humerus, initial encounter for closed fracture|Other displaced fracture of lower end of unspecified humerus, initial encounter for closed fracture +C2841939|T037|AB|S42.493B|ICD10CM|Oth disp fx of lower end of unsp humerus, init for opn fx|Oth disp fx of lower end of unsp humerus, init for opn fx +C2841939|T037|PT|S42.493B|ICD10CM|Other displaced fracture of lower end of unspecified humerus, initial encounter for open fracture|Other displaced fracture of lower end of unspecified humerus, initial encounter for open fracture +C2841940|T037|AB|S42.493D|ICD10CM|Oth disp fx of low end unsp humer, subs for fx w routn heal|Oth disp fx of low end unsp humer, subs for fx w routn heal +C2841941|T037|AB|S42.493G|ICD10CM|Oth disp fx of low end unsp humer, subs for fx w delay heal|Oth disp fx of low end unsp humer, subs for fx w delay heal +C2841942|T037|AB|S42.493K|ICD10CM|Oth disp fx of lower end unsp humer, subs for fx w nonunion|Oth disp fx of lower end unsp humer, subs for fx w nonunion +C2841943|T037|AB|S42.493P|ICD10CM|Oth disp fx of lower end unsp humer, subs for fx w malunion|Oth disp fx of lower end unsp humer, subs for fx w malunion +C2841944|T037|AB|S42.493S|ICD10CM|Other disp fx of lower end of unspecified humerus, sequela|Other disp fx of lower end of unspecified humerus, sequela +C2841944|T037|PT|S42.493S|ICD10CM|Other displaced fracture of lower end of unspecified humerus, sequela|Other displaced fracture of lower end of unspecified humerus, sequela +C2841945|T037|AB|S42.494|ICD10CM|Other nondisplaced fracture of lower end of right humerus|Other nondisplaced fracture of lower end of right humerus +C2841945|T037|HT|S42.494|ICD10CM|Other nondisplaced fracture of lower end of right humerus|Other nondisplaced fracture of lower end of right humerus +C2841946|T037|AB|S42.494A|ICD10CM|Oth nondisp fx of lower end of right humerus, init|Oth nondisp fx of lower end of right humerus, init +C2841946|T037|PT|S42.494A|ICD10CM|Other nondisplaced fracture of lower end of right humerus, initial encounter for closed fracture|Other nondisplaced fracture of lower end of right humerus, initial encounter for closed fracture +C2841947|T037|AB|S42.494B|ICD10CM|Oth nondisp fx of lower end of r humerus, init for opn fx|Oth nondisp fx of lower end of r humerus, init for opn fx +C2841947|T037|PT|S42.494B|ICD10CM|Other nondisplaced fracture of lower end of right humerus, initial encounter for open fracture|Other nondisplaced fracture of lower end of right humerus, initial encounter for open fracture +C2841948|T037|AB|S42.494D|ICD10CM|Oth nondisp fx of low end r humer, subs for fx w routn heal|Oth nondisp fx of low end r humer, subs for fx w routn heal +C2841949|T037|AB|S42.494G|ICD10CM|Oth nondisp fx of low end r humer, subs for fx w delay heal|Oth nondisp fx of low end r humer, subs for fx w delay heal +C2841950|T037|AB|S42.494K|ICD10CM|Oth nondisp fx of lower end r humer, subs for fx w nonunion|Oth nondisp fx of lower end r humer, subs for fx w nonunion +C2841951|T037|AB|S42.494P|ICD10CM|Oth nondisp fx of lower end r humer, subs for fx w malunion|Oth nondisp fx of lower end r humer, subs for fx w malunion +C2841952|T037|AB|S42.494S|ICD10CM|Other nondisp fx of lower end of right humerus, sequela|Other nondisp fx of lower end of right humerus, sequela +C2841952|T037|PT|S42.494S|ICD10CM|Other nondisplaced fracture of lower end of right humerus, sequela|Other nondisplaced fracture of lower end of right humerus, sequela +C2841953|T037|AB|S42.495|ICD10CM|Other nondisplaced fracture of lower end of left humerus|Other nondisplaced fracture of lower end of left humerus +C2841953|T037|HT|S42.495|ICD10CM|Other nondisplaced fracture of lower end of left humerus|Other nondisplaced fracture of lower end of left humerus +C2841954|T037|AB|S42.495A|ICD10CM|Oth nondisp fx of lower end of left humerus, init|Oth nondisp fx of lower end of left humerus, init +C2841954|T037|PT|S42.495A|ICD10CM|Other nondisplaced fracture of lower end of left humerus, initial encounter for closed fracture|Other nondisplaced fracture of lower end of left humerus, initial encounter for closed fracture +C2841955|T037|AB|S42.495B|ICD10CM|Oth nondisp fx of lower end of left humerus, init for opn fx|Oth nondisp fx of lower end of left humerus, init for opn fx +C2841955|T037|PT|S42.495B|ICD10CM|Other nondisplaced fracture of lower end of left humerus, initial encounter for open fracture|Other nondisplaced fracture of lower end of left humerus, initial encounter for open fracture +C2841956|T037|AB|S42.495D|ICD10CM|Oth nondisp fx of low end l humer, subs for fx w routn heal|Oth nondisp fx of low end l humer, subs for fx w routn heal +C2841957|T037|AB|S42.495G|ICD10CM|Oth nondisp fx of low end l humer, subs for fx w delay heal|Oth nondisp fx of low end l humer, subs for fx w delay heal +C2841958|T037|AB|S42.495K|ICD10CM|Oth nondisp fx of lower end l humer, subs for fx w nonunion|Oth nondisp fx of lower end l humer, subs for fx w nonunion +C2841959|T037|AB|S42.495P|ICD10CM|Oth nondisp fx of lower end l humer, subs for fx w malunion|Oth nondisp fx of lower end l humer, subs for fx w malunion +C2841960|T037|AB|S42.495S|ICD10CM|Other nondisp fx of lower end of left humerus, sequela|Other nondisp fx of lower end of left humerus, sequela +C2841960|T037|PT|S42.495S|ICD10CM|Other nondisplaced fracture of lower end of left humerus, sequela|Other nondisplaced fracture of lower end of left humerus, sequela +C2841961|T037|AB|S42.496|ICD10CM|Other nondisp fx of lower end of unspecified humerus|Other nondisp fx of lower end of unspecified humerus +C2841961|T037|HT|S42.496|ICD10CM|Other nondisplaced fracture of lower end of unspecified humerus|Other nondisplaced fracture of lower end of unspecified humerus +C2841962|T037|AB|S42.496A|ICD10CM|Oth nondisp fx of lower end of unsp humerus, init|Oth nondisp fx of lower end of unsp humerus, init +C2841963|T037|AB|S42.496B|ICD10CM|Oth nondisp fx of lower end of unsp humerus, init for opn fx|Oth nondisp fx of lower end of unsp humerus, init for opn fx +C2841963|T037|PT|S42.496B|ICD10CM|Other nondisplaced fracture of lower end of unspecified humerus, initial encounter for open fracture|Other nondisplaced fracture of lower end of unspecified humerus, initial encounter for open fracture +C2841964|T037|AB|S42.496D|ICD10CM|Oth nondisp fx of low end unsp humer, 7thD|Oth nondisp fx of low end unsp humer, 7thD +C2841965|T037|AB|S42.496G|ICD10CM|Oth nondisp fx of low end unsp humer, 7thG|Oth nondisp fx of low end unsp humer, 7thG +C2841966|T037|AB|S42.496K|ICD10CM|Oth nondisp fx of low end unsp humer, subs for fx w nonunion|Oth nondisp fx of low end unsp humer, subs for fx w nonunion +C2841967|T037|AB|S42.496P|ICD10CM|Oth nondisp fx of low end unsp humer, subs for fx w malunion|Oth nondisp fx of low end unsp humer, subs for fx w malunion +C2841968|T037|AB|S42.496S|ICD10CM|Other nondisp fx of lower end of unsp humerus, sequela|Other nondisp fx of lower end of unsp humerus, sequela +C2841968|T037|PT|S42.496S|ICD10CM|Other nondisplaced fracture of lower end of unspecified humerus, sequela|Other nondisplaced fracture of lower end of unspecified humerus, sequela +C0478271|T037|PT|S42.7|ICD10|Multiple fractures of clavicle, scapula and humerus|Multiple fractures of clavicle, scapula and humerus +C0478272|T037|PT|S42.8|ICD10|Fracture of other parts of shoulder and upper arm|Fracture of other parts of shoulder and upper arm +C0495861|T037|PT|S42.9|ICD10|Fracture of shoulder girdle, part unspecified|Fracture of shoulder girdle, part unspecified +C0495861|T037|HT|S42.9|ICD10CM|Fracture of shoulder girdle, part unspecified|Fracture of shoulder girdle, part unspecified +C0495861|T037|AB|S42.9|ICD10CM|Fracture of shoulder girdle, part unspecified|Fracture of shoulder girdle, part unspecified +C0037006|T037|ET|S42.9|ICD10CM|Fracture of shoulder NOS|Fracture of shoulder NOS +C2841969|T037|AB|S42.90|ICD10CM|Fracture of unspecified shoulder girdle, part unspecified|Fracture of unspecified shoulder girdle, part unspecified +C2841969|T037|HT|S42.90|ICD10CM|Fracture of unspecified shoulder girdle, part unspecified|Fracture of unspecified shoulder girdle, part unspecified +C2841970|T037|AB|S42.90XA|ICD10CM|Fracture of unsp shoulder girdle, part unsp, init|Fracture of unsp shoulder girdle, part unsp, init +C2841970|T037|PT|S42.90XA|ICD10CM|Fracture of unspecified shoulder girdle, part unspecified, initial encounter for closed fracture|Fracture of unspecified shoulder girdle, part unspecified, initial encounter for closed fracture +C2841971|T037|AB|S42.90XB|ICD10CM|Fracture of unsp shoulder girdle, part unsp, init for opn fx|Fracture of unsp shoulder girdle, part unsp, init for opn fx +C2841971|T037|PT|S42.90XB|ICD10CM|Fracture of unspecified shoulder girdle, part unspecified, initial encounter for open fracture|Fracture of unspecified shoulder girdle, part unspecified, initial encounter for open fracture +C2841972|T037|AB|S42.90XD|ICD10CM|Fx unsp shoulder girdle, part unsp, subs for fx w routn heal|Fx unsp shoulder girdle, part unsp, subs for fx w routn heal +C2841973|T037|AB|S42.90XG|ICD10CM|Fx unsp shoulder girdle, part unsp, subs for fx w delay heal|Fx unsp shoulder girdle, part unsp, subs for fx w delay heal +C2841974|T037|AB|S42.90XK|ICD10CM|Fx unsp shoulder girdle, part unsp, subs for fx w nonunion|Fx unsp shoulder girdle, part unsp, subs for fx w nonunion +C2841975|T037|AB|S42.90XP|ICD10CM|Fx unsp shoulder girdle, part unsp, subs for fx w malunion|Fx unsp shoulder girdle, part unsp, subs for fx w malunion +C2841976|T037|AB|S42.90XS|ICD10CM|Fracture of unsp shoulder girdle, part unspecified, sequela|Fracture of unsp shoulder girdle, part unspecified, sequela +C2841976|T037|PT|S42.90XS|ICD10CM|Fracture of unspecified shoulder girdle, part unspecified, sequela|Fracture of unspecified shoulder girdle, part unspecified, sequela +C2841977|T037|AB|S42.91|ICD10CM|Fracture of right shoulder girdle, part unspecified|Fracture of right shoulder girdle, part unspecified +C2841977|T037|HT|S42.91|ICD10CM|Fracture of right shoulder girdle, part unspecified|Fracture of right shoulder girdle, part unspecified +C2841978|T037|AB|S42.91XA|ICD10CM|Fracture of right shoulder girdle, part unsp, init|Fracture of right shoulder girdle, part unsp, init +C2841978|T037|PT|S42.91XA|ICD10CM|Fracture of right shoulder girdle, part unspecified, initial encounter for closed fracture|Fracture of right shoulder girdle, part unspecified, initial encounter for closed fracture +C2841979|T037|AB|S42.91XB|ICD10CM|Fracture of r shoulder girdle, part unsp, init for opn fx|Fracture of r shoulder girdle, part unsp, init for opn fx +C2841979|T037|PT|S42.91XB|ICD10CM|Fracture of right shoulder girdle, part unspecified, initial encounter for open fracture|Fracture of right shoulder girdle, part unspecified, initial encounter for open fracture +C2841980|T037|AB|S42.91XD|ICD10CM|Fx r shoulder girdle, part unsp, subs for fx w routn heal|Fx r shoulder girdle, part unsp, subs for fx w routn heal +C2841981|T037|AB|S42.91XG|ICD10CM|Fx r shoulder girdle, part unsp, subs for fx w delay heal|Fx r shoulder girdle, part unsp, subs for fx w delay heal +C2841982|T037|PT|S42.91XK|ICD10CM|Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with nonunion|Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with nonunion +C2841982|T037|AB|S42.91XK|ICD10CM|Fx r shoulder girdle, part unsp, subs for fx w nonunion|Fx r shoulder girdle, part unsp, subs for fx w nonunion +C2841983|T037|PT|S42.91XP|ICD10CM|Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with malunion|Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with malunion +C2841983|T037|AB|S42.91XP|ICD10CM|Fx r shoulder girdle, part unsp, subs for fx w malunion|Fx r shoulder girdle, part unsp, subs for fx w malunion +C2841984|T037|AB|S42.91XS|ICD10CM|Fracture of right shoulder girdle, part unspecified, sequela|Fracture of right shoulder girdle, part unspecified, sequela +C2841984|T037|PT|S42.91XS|ICD10CM|Fracture of right shoulder girdle, part unspecified, sequela|Fracture of right shoulder girdle, part unspecified, sequela +C2841985|T037|AB|S42.92|ICD10CM|Fracture of left shoulder girdle, part unspecified|Fracture of left shoulder girdle, part unspecified +C2841985|T037|HT|S42.92|ICD10CM|Fracture of left shoulder girdle, part unspecified|Fracture of left shoulder girdle, part unspecified +C2841986|T037|AB|S42.92XA|ICD10CM|Fracture of left shoulder girdle, part unsp, init|Fracture of left shoulder girdle, part unsp, init +C2841986|T037|PT|S42.92XA|ICD10CM|Fracture of left shoulder girdle, part unspecified, initial encounter for closed fracture|Fracture of left shoulder girdle, part unspecified, initial encounter for closed fracture +C2841987|T037|AB|S42.92XB|ICD10CM|Fracture of left shoulder girdle, part unsp, init for opn fx|Fracture of left shoulder girdle, part unsp, init for opn fx +C2841987|T037|PT|S42.92XB|ICD10CM|Fracture of left shoulder girdle, part unspecified, initial encounter for open fracture|Fracture of left shoulder girdle, part unspecified, initial encounter for open fracture +C2841988|T037|AB|S42.92XD|ICD10CM|Fx l shoulder girdle, part unsp, subs for fx w routn heal|Fx l shoulder girdle, part unsp, subs for fx w routn heal +C2841989|T037|AB|S42.92XG|ICD10CM|Fx l shoulder girdle, part unsp, subs for fx w delay heal|Fx l shoulder girdle, part unsp, subs for fx w delay heal +C2841990|T037|PT|S42.92XK|ICD10CM|Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with nonunion|Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with nonunion +C2841990|T037|AB|S42.92XK|ICD10CM|Fx l shoulder girdle, part unsp, subs for fx w nonunion|Fx l shoulder girdle, part unsp, subs for fx w nonunion +C2841991|T037|PT|S42.92XP|ICD10CM|Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with malunion|Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with malunion +C2841991|T037|AB|S42.92XP|ICD10CM|Fx l shoulder girdle, part unsp, subs for fx w malunion|Fx l shoulder girdle, part unsp, subs for fx w malunion +C2841992|T037|AB|S42.92XS|ICD10CM|Fracture of left shoulder girdle, part unspecified, sequela|Fracture of left shoulder girdle, part unspecified, sequela +C2841992|T037|PT|S42.92XS|ICD10CM|Fracture of left shoulder girdle, part unspecified, sequela|Fracture of left shoulder girdle, part unspecified, sequela +C4290344|T037|ET|S43|ICD10CM|avulsion of joint or ligament of shoulder girdle|avulsion of joint or ligament of shoulder girdle +C2842000|T037|AB|S43|ICD10CM|Disloc and sprain of joints and ligaments of shoulder girdle|Disloc and sprain of joints and ligaments of shoulder girdle +C2842000|T037|HT|S43|ICD10CM|Dislocation and sprain of joints and ligaments of shoulder girdle|Dislocation and sprain of joints and ligaments of shoulder girdle +C0495862|T037|HT|S43|ICD10|Dislocation, sprain and strain of joints and ligaments of shoulder girdle|Dislocation, sprain and strain of joints and ligaments of shoulder girdle +C4290345|T037|ET|S43|ICD10CM|laceration of cartilage, joint or ligament of shoulder girdle|laceration of cartilage, joint or ligament of shoulder girdle +C4290346|T037|ET|S43|ICD10CM|sprain of cartilage, joint or ligament of shoulder girdle|sprain of cartilage, joint or ligament of shoulder girdle +C4290347|T037|ET|S43|ICD10CM|traumatic hemarthrosis of joint or ligament of shoulder girdle|traumatic hemarthrosis of joint or ligament of shoulder girdle +C4290348|T037|ET|S43|ICD10CM|traumatic rupture of joint or ligament of shoulder girdle|traumatic rupture of joint or ligament of shoulder girdle +C4290349|T037|ET|S43|ICD10CM|traumatic subluxation of joint or ligament of shoulder girdle|traumatic subluxation of joint or ligament of shoulder girdle +C4290350|T037|ET|S43|ICD10CM|traumatic tear of joint or ligament of shoulder girdle|traumatic tear of joint or ligament of shoulder girdle +C0037005|T037|ET|S43.0|ICD10CM|Dislocation of glenohumeral joint|Dislocation of glenohumeral joint +C0037005|T037|PT|S43.0|ICD10|Dislocation of shoulder joint|Dislocation of shoulder joint +C2842002|T037|AB|S43.0|ICD10CM|Subluxation and dislocation of shoulder joint|Subluxation and dislocation of shoulder joint +C2842002|T037|HT|S43.0|ICD10CM|Subluxation and dislocation of shoulder joint|Subluxation and dislocation of shoulder joint +C2842001|T037|ET|S43.0|ICD10CM|Subluxation of glenohumeral joint|Subluxation of glenohumeral joint +C0347737|T037|ET|S43.00|ICD10CM|Dislocation of humerus NOS|Dislocation of humerus NOS +C2842003|T037|ET|S43.00|ICD10CM|Subluxation of humerus NOS|Subluxation of humerus NOS +C2842004|T037|AB|S43.00|ICD10CM|Unspecified subluxation and dislocation of shoulder joint|Unspecified subluxation and dislocation of shoulder joint +C2842004|T037|HT|S43.00|ICD10CM|Unspecified subluxation and dislocation of shoulder joint|Unspecified subluxation and dislocation of shoulder joint +C2842005|T037|AB|S43.001|ICD10CM|Unspecified subluxation of right shoulder joint|Unspecified subluxation of right shoulder joint +C2842005|T037|HT|S43.001|ICD10CM|Unspecified subluxation of right shoulder joint|Unspecified subluxation of right shoulder joint +C2842006|T037|AB|S43.001A|ICD10CM|Unspecified subluxation of right shoulder joint, init encntr|Unspecified subluxation of right shoulder joint, init encntr +C2842006|T037|PT|S43.001A|ICD10CM|Unspecified subluxation of right shoulder joint, initial encounter|Unspecified subluxation of right shoulder joint, initial encounter +C2842007|T037|AB|S43.001D|ICD10CM|Unspecified subluxation of right shoulder joint, subs encntr|Unspecified subluxation of right shoulder joint, subs encntr +C2842007|T037|PT|S43.001D|ICD10CM|Unspecified subluxation of right shoulder joint, subsequent encounter|Unspecified subluxation of right shoulder joint, subsequent encounter +C2842008|T037|PT|S43.001S|ICD10CM|Unspecified subluxation of right shoulder joint, sequela|Unspecified subluxation of right shoulder joint, sequela +C2842008|T037|AB|S43.001S|ICD10CM|Unspecified subluxation of right shoulder joint, sequela|Unspecified subluxation of right shoulder joint, sequela +C2842009|T037|AB|S43.002|ICD10CM|Unspecified subluxation of left shoulder joint|Unspecified subluxation of left shoulder joint +C2842009|T037|HT|S43.002|ICD10CM|Unspecified subluxation of left shoulder joint|Unspecified subluxation of left shoulder joint +C2842010|T037|AB|S43.002A|ICD10CM|Unspecified subluxation of left shoulder joint, init encntr|Unspecified subluxation of left shoulder joint, init encntr +C2842010|T037|PT|S43.002A|ICD10CM|Unspecified subluxation of left shoulder joint, initial encounter|Unspecified subluxation of left shoulder joint, initial encounter +C2842011|T037|AB|S43.002D|ICD10CM|Unspecified subluxation of left shoulder joint, subs encntr|Unspecified subluxation of left shoulder joint, subs encntr +C2842011|T037|PT|S43.002D|ICD10CM|Unspecified subluxation of left shoulder joint, subsequent encounter|Unspecified subluxation of left shoulder joint, subsequent encounter +C2842012|T037|PT|S43.002S|ICD10CM|Unspecified subluxation of left shoulder joint, sequela|Unspecified subluxation of left shoulder joint, sequela +C2842012|T037|AB|S43.002S|ICD10CM|Unspecified subluxation of left shoulder joint, sequela|Unspecified subluxation of left shoulder joint, sequela +C2842013|T037|AB|S43.003|ICD10CM|Unspecified subluxation of unspecified shoulder joint|Unspecified subluxation of unspecified shoulder joint +C2842013|T037|HT|S43.003|ICD10CM|Unspecified subluxation of unspecified shoulder joint|Unspecified subluxation of unspecified shoulder joint +C2842014|T037|AB|S43.003A|ICD10CM|Unsp subluxation of unspecified shoulder joint, init encntr|Unsp subluxation of unspecified shoulder joint, init encntr +C2842014|T037|PT|S43.003A|ICD10CM|Unspecified subluxation of unspecified shoulder joint, initial encounter|Unspecified subluxation of unspecified shoulder joint, initial encounter +C2842015|T037|AB|S43.003D|ICD10CM|Unsp subluxation of unspecified shoulder joint, subs encntr|Unsp subluxation of unspecified shoulder joint, subs encntr +C2842015|T037|PT|S43.003D|ICD10CM|Unspecified subluxation of unspecified shoulder joint, subsequent encounter|Unspecified subluxation of unspecified shoulder joint, subsequent encounter +C2842016|T037|AB|S43.003S|ICD10CM|Unsp subluxation of unspecified shoulder joint, sequela|Unsp subluxation of unspecified shoulder joint, sequela +C2842016|T037|PT|S43.003S|ICD10CM|Unspecified subluxation of unspecified shoulder joint, sequela|Unspecified subluxation of unspecified shoulder joint, sequela +C2842017|T037|AB|S43.004|ICD10CM|Unspecified dislocation of right shoulder joint|Unspecified dislocation of right shoulder joint +C2842017|T037|HT|S43.004|ICD10CM|Unspecified dislocation of right shoulder joint|Unspecified dislocation of right shoulder joint +C2842018|T037|AB|S43.004A|ICD10CM|Unspecified dislocation of right shoulder joint, init encntr|Unspecified dislocation of right shoulder joint, init encntr +C2842018|T037|PT|S43.004A|ICD10CM|Unspecified dislocation of right shoulder joint, initial encounter|Unspecified dislocation of right shoulder joint, initial encounter +C2842019|T037|AB|S43.004D|ICD10CM|Unspecified dislocation of right shoulder joint, subs encntr|Unspecified dislocation of right shoulder joint, subs encntr +C2842019|T037|PT|S43.004D|ICD10CM|Unspecified dislocation of right shoulder joint, subsequent encounter|Unspecified dislocation of right shoulder joint, subsequent encounter +C2842162|T037|PT|S43.004S|ICD10CM|Unspecified dislocation of right shoulder joint, sequela|Unspecified dislocation of right shoulder joint, sequela +C2842162|T037|AB|S43.004S|ICD10CM|Unspecified dislocation of right shoulder joint, sequela|Unspecified dislocation of right shoulder joint, sequela +C2842163|T037|AB|S43.005|ICD10CM|Unspecified dislocation of left shoulder joint|Unspecified dislocation of left shoulder joint +C2842163|T037|HT|S43.005|ICD10CM|Unspecified dislocation of left shoulder joint|Unspecified dislocation of left shoulder joint +C2842164|T037|AB|S43.005A|ICD10CM|Unspecified dislocation of left shoulder joint, init encntr|Unspecified dislocation of left shoulder joint, init encntr +C2842164|T037|PT|S43.005A|ICD10CM|Unspecified dislocation of left shoulder joint, initial encounter|Unspecified dislocation of left shoulder joint, initial encounter +C2842165|T037|AB|S43.005D|ICD10CM|Unspecified dislocation of left shoulder joint, subs encntr|Unspecified dislocation of left shoulder joint, subs encntr +C2842165|T037|PT|S43.005D|ICD10CM|Unspecified dislocation of left shoulder joint, subsequent encounter|Unspecified dislocation of left shoulder joint, subsequent encounter +C2842166|T037|PT|S43.005S|ICD10CM|Unspecified dislocation of left shoulder joint, sequela|Unspecified dislocation of left shoulder joint, sequela +C2842166|T037|AB|S43.005S|ICD10CM|Unspecified dislocation of left shoulder joint, sequela|Unspecified dislocation of left shoulder joint, sequela +C2842167|T037|AB|S43.006|ICD10CM|Unspecified dislocation of unspecified shoulder joint|Unspecified dislocation of unspecified shoulder joint +C2842167|T037|HT|S43.006|ICD10CM|Unspecified dislocation of unspecified shoulder joint|Unspecified dislocation of unspecified shoulder joint +C2842168|T037|AB|S43.006A|ICD10CM|Unsp dislocation of unspecified shoulder joint, init encntr|Unsp dislocation of unspecified shoulder joint, init encntr +C2842168|T037|PT|S43.006A|ICD10CM|Unspecified dislocation of unspecified shoulder joint, initial encounter|Unspecified dislocation of unspecified shoulder joint, initial encounter +C2842169|T037|AB|S43.006D|ICD10CM|Unsp dislocation of unspecified shoulder joint, subs encntr|Unsp dislocation of unspecified shoulder joint, subs encntr +C2842169|T037|PT|S43.006D|ICD10CM|Unspecified dislocation of unspecified shoulder joint, subsequent encounter|Unspecified dislocation of unspecified shoulder joint, subsequent encounter +C2842170|T037|AB|S43.006S|ICD10CM|Unsp dislocation of unspecified shoulder joint, sequela|Unsp dislocation of unspecified shoulder joint, sequela +C2842170|T037|PT|S43.006S|ICD10CM|Unspecified dislocation of unspecified shoulder joint, sequela|Unspecified dislocation of unspecified shoulder joint, sequela +C2842171|T037|AB|S43.01|ICD10CM|Anterior subluxation and dislocation of humerus|Anterior subluxation and dislocation of humerus +C2842171|T037|HT|S43.01|ICD10CM|Anterior subluxation and dislocation of humerus|Anterior subluxation and dislocation of humerus +C2842172|T037|AB|S43.011|ICD10CM|Anterior subluxation of right humerus|Anterior subluxation of right humerus +C2842172|T037|HT|S43.011|ICD10CM|Anterior subluxation of right humerus|Anterior subluxation of right humerus +C2842173|T037|PT|S43.011A|ICD10CM|Anterior subluxation of right humerus, initial encounter|Anterior subluxation of right humerus, initial encounter +C2842173|T037|AB|S43.011A|ICD10CM|Anterior subluxation of right humerus, initial encounter|Anterior subluxation of right humerus, initial encounter +C2842174|T037|PT|S43.011D|ICD10CM|Anterior subluxation of right humerus, subsequent encounter|Anterior subluxation of right humerus, subsequent encounter +C2842174|T037|AB|S43.011D|ICD10CM|Anterior subluxation of right humerus, subsequent encounter|Anterior subluxation of right humerus, subsequent encounter +C2842175|T037|PT|S43.011S|ICD10CM|Anterior subluxation of right humerus, sequela|Anterior subluxation of right humerus, sequela +C2842175|T037|AB|S43.011S|ICD10CM|Anterior subluxation of right humerus, sequela|Anterior subluxation of right humerus, sequela +C2842176|T037|AB|S43.012|ICD10CM|Anterior subluxation of left humerus|Anterior subluxation of left humerus +C2842176|T037|HT|S43.012|ICD10CM|Anterior subluxation of left humerus|Anterior subluxation of left humerus +C2842177|T037|PT|S43.012A|ICD10CM|Anterior subluxation of left humerus, initial encounter|Anterior subluxation of left humerus, initial encounter +C2842177|T037|AB|S43.012A|ICD10CM|Anterior subluxation of left humerus, initial encounter|Anterior subluxation of left humerus, initial encounter +C2842178|T037|PT|S43.012D|ICD10CM|Anterior subluxation of left humerus, subsequent encounter|Anterior subluxation of left humerus, subsequent encounter +C2842178|T037|AB|S43.012D|ICD10CM|Anterior subluxation of left humerus, subsequent encounter|Anterior subluxation of left humerus, subsequent encounter +C2842179|T037|PT|S43.012S|ICD10CM|Anterior subluxation of left humerus, sequela|Anterior subluxation of left humerus, sequela +C2842179|T037|AB|S43.012S|ICD10CM|Anterior subluxation of left humerus, sequela|Anterior subluxation of left humerus, sequela +C2842180|T037|AB|S43.013|ICD10CM|Anterior subluxation of unspecified humerus|Anterior subluxation of unspecified humerus +C2842180|T037|HT|S43.013|ICD10CM|Anterior subluxation of unspecified humerus|Anterior subluxation of unspecified humerus +C2842181|T037|AB|S43.013A|ICD10CM|Anterior subluxation of unspecified humerus, init encntr|Anterior subluxation of unspecified humerus, init encntr +C2842181|T037|PT|S43.013A|ICD10CM|Anterior subluxation of unspecified humerus, initial encounter|Anterior subluxation of unspecified humerus, initial encounter +C2842182|T037|AB|S43.013D|ICD10CM|Anterior subluxation of unspecified humerus, subs encntr|Anterior subluxation of unspecified humerus, subs encntr +C2842182|T037|PT|S43.013D|ICD10CM|Anterior subluxation of unspecified humerus, subsequent encounter|Anterior subluxation of unspecified humerus, subsequent encounter +C2842183|T037|PT|S43.013S|ICD10CM|Anterior subluxation of unspecified humerus, sequela|Anterior subluxation of unspecified humerus, sequela +C2842183|T037|AB|S43.013S|ICD10CM|Anterior subluxation of unspecified humerus, sequela|Anterior subluxation of unspecified humerus, sequela +C2842184|T037|AB|S43.014|ICD10CM|Anterior dislocation of right humerus|Anterior dislocation of right humerus +C2842184|T037|HT|S43.014|ICD10CM|Anterior dislocation of right humerus|Anterior dislocation of right humerus +C2842185|T037|PT|S43.014A|ICD10CM|Anterior dislocation of right humerus, initial encounter|Anterior dislocation of right humerus, initial encounter +C2842185|T037|AB|S43.014A|ICD10CM|Anterior dislocation of right humerus, initial encounter|Anterior dislocation of right humerus, initial encounter +C2842186|T037|PT|S43.014D|ICD10CM|Anterior dislocation of right humerus, subsequent encounter|Anterior dislocation of right humerus, subsequent encounter +C2842186|T037|AB|S43.014D|ICD10CM|Anterior dislocation of right humerus, subsequent encounter|Anterior dislocation of right humerus, subsequent encounter +C2842187|T037|PT|S43.014S|ICD10CM|Anterior dislocation of right humerus, sequela|Anterior dislocation of right humerus, sequela +C2842187|T037|AB|S43.014S|ICD10CM|Anterior dislocation of right humerus, sequela|Anterior dislocation of right humerus, sequela +C2842188|T037|AB|S43.015|ICD10CM|Anterior dislocation of left humerus|Anterior dislocation of left humerus +C2842188|T037|HT|S43.015|ICD10CM|Anterior dislocation of left humerus|Anterior dislocation of left humerus +C2842189|T037|PT|S43.015A|ICD10CM|Anterior dislocation of left humerus, initial encounter|Anterior dislocation of left humerus, initial encounter +C2842189|T037|AB|S43.015A|ICD10CM|Anterior dislocation of left humerus, initial encounter|Anterior dislocation of left humerus, initial encounter +C2842190|T037|PT|S43.015D|ICD10CM|Anterior dislocation of left humerus, subsequent encounter|Anterior dislocation of left humerus, subsequent encounter +C2842190|T037|AB|S43.015D|ICD10CM|Anterior dislocation of left humerus, subsequent encounter|Anterior dislocation of left humerus, subsequent encounter +C2842191|T037|PT|S43.015S|ICD10CM|Anterior dislocation of left humerus, sequela|Anterior dislocation of left humerus, sequela +C2842191|T037|AB|S43.015S|ICD10CM|Anterior dislocation of left humerus, sequela|Anterior dislocation of left humerus, sequela +C2842192|T037|AB|S43.016|ICD10CM|Anterior dislocation of unspecified humerus|Anterior dislocation of unspecified humerus +C2842192|T037|HT|S43.016|ICD10CM|Anterior dislocation of unspecified humerus|Anterior dislocation of unspecified humerus +C2842193|T037|AB|S43.016A|ICD10CM|Anterior dislocation of unspecified humerus, init encntr|Anterior dislocation of unspecified humerus, init encntr +C2842193|T037|PT|S43.016A|ICD10CM|Anterior dislocation of unspecified humerus, initial encounter|Anterior dislocation of unspecified humerus, initial encounter +C2842194|T037|AB|S43.016D|ICD10CM|Anterior dislocation of unspecified humerus, subs encntr|Anterior dislocation of unspecified humerus, subs encntr +C2842194|T037|PT|S43.016D|ICD10CM|Anterior dislocation of unspecified humerus, subsequent encounter|Anterior dislocation of unspecified humerus, subsequent encounter +C2842195|T037|PT|S43.016S|ICD10CM|Anterior dislocation of unspecified humerus, sequela|Anterior dislocation of unspecified humerus, sequela +C2842195|T037|AB|S43.016S|ICD10CM|Anterior dislocation of unspecified humerus, sequela|Anterior dislocation of unspecified humerus, sequela +C2842196|T037|AB|S43.02|ICD10CM|Posterior subluxation and dislocation of humerus|Posterior subluxation and dislocation of humerus +C2842196|T037|HT|S43.02|ICD10CM|Posterior subluxation and dislocation of humerus|Posterior subluxation and dislocation of humerus +C2842197|T037|AB|S43.021|ICD10CM|Posterior subluxation of right humerus|Posterior subluxation of right humerus +C2842197|T037|HT|S43.021|ICD10CM|Posterior subluxation of right humerus|Posterior subluxation of right humerus +C2842198|T037|PT|S43.021A|ICD10CM|Posterior subluxation of right humerus, initial encounter|Posterior subluxation of right humerus, initial encounter +C2842198|T037|AB|S43.021A|ICD10CM|Posterior subluxation of right humerus, initial encounter|Posterior subluxation of right humerus, initial encounter +C2842199|T037|AB|S43.021D|ICD10CM|Posterior subluxation of right humerus, subsequent encounter|Posterior subluxation of right humerus, subsequent encounter +C2842199|T037|PT|S43.021D|ICD10CM|Posterior subluxation of right humerus, subsequent encounter|Posterior subluxation of right humerus, subsequent encounter +C2842200|T037|PT|S43.021S|ICD10CM|Posterior subluxation of right humerus, sequela|Posterior subluxation of right humerus, sequela +C2842200|T037|AB|S43.021S|ICD10CM|Posterior subluxation of right humerus, sequela|Posterior subluxation of right humerus, sequela +C2842201|T037|AB|S43.022|ICD10CM|Posterior subluxation of left humerus|Posterior subluxation of left humerus +C2842201|T037|HT|S43.022|ICD10CM|Posterior subluxation of left humerus|Posterior subluxation of left humerus +C2842202|T037|PT|S43.022A|ICD10CM|Posterior subluxation of left humerus, initial encounter|Posterior subluxation of left humerus, initial encounter +C2842202|T037|AB|S43.022A|ICD10CM|Posterior subluxation of left humerus, initial encounter|Posterior subluxation of left humerus, initial encounter +C2842203|T037|PT|S43.022D|ICD10CM|Posterior subluxation of left humerus, subsequent encounter|Posterior subluxation of left humerus, subsequent encounter +C2842203|T037|AB|S43.022D|ICD10CM|Posterior subluxation of left humerus, subsequent encounter|Posterior subluxation of left humerus, subsequent encounter +C2842204|T037|PT|S43.022S|ICD10CM|Posterior subluxation of left humerus, sequela|Posterior subluxation of left humerus, sequela +C2842204|T037|AB|S43.022S|ICD10CM|Posterior subluxation of left humerus, sequela|Posterior subluxation of left humerus, sequela +C2842205|T037|AB|S43.023|ICD10CM|Posterior subluxation of unspecified humerus|Posterior subluxation of unspecified humerus +C2842205|T037|HT|S43.023|ICD10CM|Posterior subluxation of unspecified humerus|Posterior subluxation of unspecified humerus +C2842206|T037|AB|S43.023A|ICD10CM|Posterior subluxation of unspecified humerus, init encntr|Posterior subluxation of unspecified humerus, init encntr +C2842206|T037|PT|S43.023A|ICD10CM|Posterior subluxation of unspecified humerus, initial encounter|Posterior subluxation of unspecified humerus, initial encounter +C2842207|T037|AB|S43.023D|ICD10CM|Posterior subluxation of unspecified humerus, subs encntr|Posterior subluxation of unspecified humerus, subs encntr +C2842207|T037|PT|S43.023D|ICD10CM|Posterior subluxation of unspecified humerus, subsequent encounter|Posterior subluxation of unspecified humerus, subsequent encounter +C2842208|T037|PT|S43.023S|ICD10CM|Posterior subluxation of unspecified humerus, sequela|Posterior subluxation of unspecified humerus, sequela +C2842208|T037|AB|S43.023S|ICD10CM|Posterior subluxation of unspecified humerus, sequela|Posterior subluxation of unspecified humerus, sequela +C2842209|T037|AB|S43.024|ICD10CM|Posterior dislocation of right humerus|Posterior dislocation of right humerus +C2842209|T037|HT|S43.024|ICD10CM|Posterior dislocation of right humerus|Posterior dislocation of right humerus +C2842210|T037|PT|S43.024A|ICD10CM|Posterior dislocation of right humerus, initial encounter|Posterior dislocation of right humerus, initial encounter +C2842210|T037|AB|S43.024A|ICD10CM|Posterior dislocation of right humerus, initial encounter|Posterior dislocation of right humerus, initial encounter +C2842211|T037|AB|S43.024D|ICD10CM|Posterior dislocation of right humerus, subsequent encounter|Posterior dislocation of right humerus, subsequent encounter +C2842211|T037|PT|S43.024D|ICD10CM|Posterior dislocation of right humerus, subsequent encounter|Posterior dislocation of right humerus, subsequent encounter +C2842212|T037|PT|S43.024S|ICD10CM|Posterior dislocation of right humerus, sequela|Posterior dislocation of right humerus, sequela +C2842212|T037|AB|S43.024S|ICD10CM|Posterior dislocation of right humerus, sequela|Posterior dislocation of right humerus, sequela +C2842213|T037|AB|S43.025|ICD10CM|Posterior dislocation of left humerus|Posterior dislocation of left humerus +C2842213|T037|HT|S43.025|ICD10CM|Posterior dislocation of left humerus|Posterior dislocation of left humerus +C2842214|T037|PT|S43.025A|ICD10CM|Posterior dislocation of left humerus, initial encounter|Posterior dislocation of left humerus, initial encounter +C2842214|T037|AB|S43.025A|ICD10CM|Posterior dislocation of left humerus, initial encounter|Posterior dislocation of left humerus, initial encounter +C2842215|T037|PT|S43.025D|ICD10CM|Posterior dislocation of left humerus, subsequent encounter|Posterior dislocation of left humerus, subsequent encounter +C2842215|T037|AB|S43.025D|ICD10CM|Posterior dislocation of left humerus, subsequent encounter|Posterior dislocation of left humerus, subsequent encounter +C2842216|T037|PT|S43.025S|ICD10CM|Posterior dislocation of left humerus, sequela|Posterior dislocation of left humerus, sequela +C2842216|T037|AB|S43.025S|ICD10CM|Posterior dislocation of left humerus, sequela|Posterior dislocation of left humerus, sequela +C2842217|T037|AB|S43.026|ICD10CM|Posterior dislocation of unspecified humerus|Posterior dislocation of unspecified humerus +C2842217|T037|HT|S43.026|ICD10CM|Posterior dislocation of unspecified humerus|Posterior dislocation of unspecified humerus +C2842218|T037|AB|S43.026A|ICD10CM|Posterior dislocation of unspecified humerus, init encntr|Posterior dislocation of unspecified humerus, init encntr +C2842218|T037|PT|S43.026A|ICD10CM|Posterior dislocation of unspecified humerus, initial encounter|Posterior dislocation of unspecified humerus, initial encounter +C2842219|T037|AB|S43.026D|ICD10CM|Posterior dislocation of unspecified humerus, subs encntr|Posterior dislocation of unspecified humerus, subs encntr +C2842219|T037|PT|S43.026D|ICD10CM|Posterior dislocation of unspecified humerus, subsequent encounter|Posterior dislocation of unspecified humerus, subsequent encounter +C2842220|T037|PT|S43.026S|ICD10CM|Posterior dislocation of unspecified humerus, sequela|Posterior dislocation of unspecified humerus, sequela +C2842220|T037|AB|S43.026S|ICD10CM|Posterior dislocation of unspecified humerus, sequela|Posterior dislocation of unspecified humerus, sequela +C2842221|T037|AB|S43.03|ICD10CM|Inferior subluxation and dislocation of humerus|Inferior subluxation and dislocation of humerus +C2842221|T037|HT|S43.03|ICD10CM|Inferior subluxation and dislocation of humerus|Inferior subluxation and dislocation of humerus +C2842222|T037|AB|S43.031|ICD10CM|Inferior subluxation of right humerus|Inferior subluxation of right humerus +C2842222|T037|HT|S43.031|ICD10CM|Inferior subluxation of right humerus|Inferior subluxation of right humerus +C2842223|T037|PT|S43.031A|ICD10CM|Inferior subluxation of right humerus, initial encounter|Inferior subluxation of right humerus, initial encounter +C2842223|T037|AB|S43.031A|ICD10CM|Inferior subluxation of right humerus, initial encounter|Inferior subluxation of right humerus, initial encounter +C2842224|T037|PT|S43.031D|ICD10CM|Inferior subluxation of right humerus, subsequent encounter|Inferior subluxation of right humerus, subsequent encounter +C2842224|T037|AB|S43.031D|ICD10CM|Inferior subluxation of right humerus, subsequent encounter|Inferior subluxation of right humerus, subsequent encounter +C2842225|T037|PT|S43.031S|ICD10CM|Inferior subluxation of right humerus, sequela|Inferior subluxation of right humerus, sequela +C2842225|T037|AB|S43.031S|ICD10CM|Inferior subluxation of right humerus, sequela|Inferior subluxation of right humerus, sequela +C2842226|T037|AB|S43.032|ICD10CM|Inferior subluxation of left humerus|Inferior subluxation of left humerus +C2842226|T037|HT|S43.032|ICD10CM|Inferior subluxation of left humerus|Inferior subluxation of left humerus +C2842227|T037|PT|S43.032A|ICD10CM|Inferior subluxation of left humerus, initial encounter|Inferior subluxation of left humerus, initial encounter +C2842227|T037|AB|S43.032A|ICD10CM|Inferior subluxation of left humerus, initial encounter|Inferior subluxation of left humerus, initial encounter +C2842228|T037|PT|S43.032D|ICD10CM|Inferior subluxation of left humerus, subsequent encounter|Inferior subluxation of left humerus, subsequent encounter +C2842228|T037|AB|S43.032D|ICD10CM|Inferior subluxation of left humerus, subsequent encounter|Inferior subluxation of left humerus, subsequent encounter +C2842229|T037|PT|S43.032S|ICD10CM|Inferior subluxation of left humerus, sequela|Inferior subluxation of left humerus, sequela +C2842229|T037|AB|S43.032S|ICD10CM|Inferior subluxation of left humerus, sequela|Inferior subluxation of left humerus, sequela +C2842230|T037|AB|S43.033|ICD10CM|Inferior subluxation of unspecified humerus|Inferior subluxation of unspecified humerus +C2842230|T037|HT|S43.033|ICD10CM|Inferior subluxation of unspecified humerus|Inferior subluxation of unspecified humerus +C2842231|T037|AB|S43.033A|ICD10CM|Inferior subluxation of unspecified humerus, init encntr|Inferior subluxation of unspecified humerus, init encntr +C2842231|T037|PT|S43.033A|ICD10CM|Inferior subluxation of unspecified humerus, initial encounter|Inferior subluxation of unspecified humerus, initial encounter +C2842232|T037|AB|S43.033D|ICD10CM|Inferior subluxation of unspecified humerus, subs encntr|Inferior subluxation of unspecified humerus, subs encntr +C2842232|T037|PT|S43.033D|ICD10CM|Inferior subluxation of unspecified humerus, subsequent encounter|Inferior subluxation of unspecified humerus, subsequent encounter +C2842233|T037|PT|S43.033S|ICD10CM|Inferior subluxation of unspecified humerus, sequela|Inferior subluxation of unspecified humerus, sequela +C2842233|T037|AB|S43.033S|ICD10CM|Inferior subluxation of unspecified humerus, sequela|Inferior subluxation of unspecified humerus, sequela +C2842234|T037|AB|S43.034|ICD10CM|Inferior dislocation of right humerus|Inferior dislocation of right humerus +C2842234|T037|HT|S43.034|ICD10CM|Inferior dislocation of right humerus|Inferior dislocation of right humerus +C2842235|T037|PT|S43.034A|ICD10CM|Inferior dislocation of right humerus, initial encounter|Inferior dislocation of right humerus, initial encounter +C2842235|T037|AB|S43.034A|ICD10CM|Inferior dislocation of right humerus, initial encounter|Inferior dislocation of right humerus, initial encounter +C2842236|T037|PT|S43.034D|ICD10CM|Inferior dislocation of right humerus, subsequent encounter|Inferior dislocation of right humerus, subsequent encounter +C2842236|T037|AB|S43.034D|ICD10CM|Inferior dislocation of right humerus, subsequent encounter|Inferior dislocation of right humerus, subsequent encounter +C2842237|T037|PT|S43.034S|ICD10CM|Inferior dislocation of right humerus, sequela|Inferior dislocation of right humerus, sequela +C2842237|T037|AB|S43.034S|ICD10CM|Inferior dislocation of right humerus, sequela|Inferior dislocation of right humerus, sequela +C2842238|T037|AB|S43.035|ICD10CM|Inferior dislocation of left humerus|Inferior dislocation of left humerus +C2842238|T037|HT|S43.035|ICD10CM|Inferior dislocation of left humerus|Inferior dislocation of left humerus +C2842239|T037|PT|S43.035A|ICD10CM|Inferior dislocation of left humerus, initial encounter|Inferior dislocation of left humerus, initial encounter +C2842239|T037|AB|S43.035A|ICD10CM|Inferior dislocation of left humerus, initial encounter|Inferior dislocation of left humerus, initial encounter +C2842240|T037|PT|S43.035D|ICD10CM|Inferior dislocation of left humerus, subsequent encounter|Inferior dislocation of left humerus, subsequent encounter +C2842240|T037|AB|S43.035D|ICD10CM|Inferior dislocation of left humerus, subsequent encounter|Inferior dislocation of left humerus, subsequent encounter +C2842241|T037|PT|S43.035S|ICD10CM|Inferior dislocation of left humerus, sequela|Inferior dislocation of left humerus, sequela +C2842241|T037|AB|S43.035S|ICD10CM|Inferior dislocation of left humerus, sequela|Inferior dislocation of left humerus, sequela +C2842242|T037|AB|S43.036|ICD10CM|Inferior dislocation of unspecified humerus|Inferior dislocation of unspecified humerus +C2842242|T037|HT|S43.036|ICD10CM|Inferior dislocation of unspecified humerus|Inferior dislocation of unspecified humerus +C2842243|T037|AB|S43.036A|ICD10CM|Inferior dislocation of unspecified humerus, init encntr|Inferior dislocation of unspecified humerus, init encntr +C2842243|T037|PT|S43.036A|ICD10CM|Inferior dislocation of unspecified humerus, initial encounter|Inferior dislocation of unspecified humerus, initial encounter +C2842244|T037|AB|S43.036D|ICD10CM|Inferior dislocation of unspecified humerus, subs encntr|Inferior dislocation of unspecified humerus, subs encntr +C2842244|T037|PT|S43.036D|ICD10CM|Inferior dislocation of unspecified humerus, subsequent encounter|Inferior dislocation of unspecified humerus, subsequent encounter +C2842245|T037|PT|S43.036S|ICD10CM|Inferior dislocation of unspecified humerus, sequela|Inferior dislocation of unspecified humerus, sequela +C2842245|T037|AB|S43.036S|ICD10CM|Inferior dislocation of unspecified humerus, sequela|Inferior dislocation of unspecified humerus, sequela +C2842246|T037|AB|S43.08|ICD10CM|Other subluxation and dislocation of shoulder joint|Other subluxation and dislocation of shoulder joint +C2842246|T037|HT|S43.08|ICD10CM|Other subluxation and dislocation of shoulder joint|Other subluxation and dislocation of shoulder joint +C2842247|T037|AB|S43.081|ICD10CM|Other subluxation of right shoulder joint|Other subluxation of right shoulder joint +C2842247|T037|HT|S43.081|ICD10CM|Other subluxation of right shoulder joint|Other subluxation of right shoulder joint +C2842248|T037|AB|S43.081A|ICD10CM|Other subluxation of right shoulder joint, initial encounter|Other subluxation of right shoulder joint, initial encounter +C2842248|T037|PT|S43.081A|ICD10CM|Other subluxation of right shoulder joint, initial encounter|Other subluxation of right shoulder joint, initial encounter +C2842249|T037|AB|S43.081D|ICD10CM|Other subluxation of right shoulder joint, subs encntr|Other subluxation of right shoulder joint, subs encntr +C2842249|T037|PT|S43.081D|ICD10CM|Other subluxation of right shoulder joint, subsequent encounter|Other subluxation of right shoulder joint, subsequent encounter +C2842250|T037|PT|S43.081S|ICD10CM|Other subluxation of right shoulder joint, sequela|Other subluxation of right shoulder joint, sequela +C2842250|T037|AB|S43.081S|ICD10CM|Other subluxation of right shoulder joint, sequela|Other subluxation of right shoulder joint, sequela +C2842251|T037|AB|S43.082|ICD10CM|Other subluxation of left shoulder joint|Other subluxation of left shoulder joint +C2842251|T037|HT|S43.082|ICD10CM|Other subluxation of left shoulder joint|Other subluxation of left shoulder joint +C2842252|T037|PT|S43.082A|ICD10CM|Other subluxation of left shoulder joint, initial encounter|Other subluxation of left shoulder joint, initial encounter +C2842252|T037|AB|S43.082A|ICD10CM|Other subluxation of left shoulder joint, initial encounter|Other subluxation of left shoulder joint, initial encounter +C2842253|T037|AB|S43.082D|ICD10CM|Other subluxation of left shoulder joint, subs encntr|Other subluxation of left shoulder joint, subs encntr +C2842253|T037|PT|S43.082D|ICD10CM|Other subluxation of left shoulder joint, subsequent encounter|Other subluxation of left shoulder joint, subsequent encounter +C2842254|T037|PT|S43.082S|ICD10CM|Other subluxation of left shoulder joint, sequela|Other subluxation of left shoulder joint, sequela +C2842254|T037|AB|S43.082S|ICD10CM|Other subluxation of left shoulder joint, sequela|Other subluxation of left shoulder joint, sequela +C2842255|T037|AB|S43.083|ICD10CM|Other subluxation of unspecified shoulder joint|Other subluxation of unspecified shoulder joint +C2842255|T037|HT|S43.083|ICD10CM|Other subluxation of unspecified shoulder joint|Other subluxation of unspecified shoulder joint +C2842256|T037|AB|S43.083A|ICD10CM|Other subluxation of unspecified shoulder joint, init encntr|Other subluxation of unspecified shoulder joint, init encntr +C2842256|T037|PT|S43.083A|ICD10CM|Other subluxation of unspecified shoulder joint, initial encounter|Other subluxation of unspecified shoulder joint, initial encounter +C2842257|T037|AB|S43.083D|ICD10CM|Other subluxation of unspecified shoulder joint, subs encntr|Other subluxation of unspecified shoulder joint, subs encntr +C2842257|T037|PT|S43.083D|ICD10CM|Other subluxation of unspecified shoulder joint, subsequent encounter|Other subluxation of unspecified shoulder joint, subsequent encounter +C2842258|T037|PT|S43.083S|ICD10CM|Other subluxation of unspecified shoulder joint, sequela|Other subluxation of unspecified shoulder joint, sequela +C2842258|T037|AB|S43.083S|ICD10CM|Other subluxation of unspecified shoulder joint, sequela|Other subluxation of unspecified shoulder joint, sequela +C2842259|T037|AB|S43.084|ICD10CM|Other dislocation of right shoulder joint|Other dislocation of right shoulder joint +C2842259|T037|HT|S43.084|ICD10CM|Other dislocation of right shoulder joint|Other dislocation of right shoulder joint +C2842260|T037|AB|S43.084A|ICD10CM|Other dislocation of right shoulder joint, initial encounter|Other dislocation of right shoulder joint, initial encounter +C2842260|T037|PT|S43.084A|ICD10CM|Other dislocation of right shoulder joint, initial encounter|Other dislocation of right shoulder joint, initial encounter +C2842261|T037|AB|S43.084D|ICD10CM|Other dislocation of right shoulder joint, subs encntr|Other dislocation of right shoulder joint, subs encntr +C2842261|T037|PT|S43.084D|ICD10CM|Other dislocation of right shoulder joint, subsequent encounter|Other dislocation of right shoulder joint, subsequent encounter +C2842262|T037|PT|S43.084S|ICD10CM|Other dislocation of right shoulder joint, sequela|Other dislocation of right shoulder joint, sequela +C2842262|T037|AB|S43.084S|ICD10CM|Other dislocation of right shoulder joint, sequela|Other dislocation of right shoulder joint, sequela +C2842263|T037|AB|S43.085|ICD10CM|Other dislocation of left shoulder joint|Other dislocation of left shoulder joint +C2842263|T037|HT|S43.085|ICD10CM|Other dislocation of left shoulder joint|Other dislocation of left shoulder joint +C2842264|T037|PT|S43.085A|ICD10CM|Other dislocation of left shoulder joint, initial encounter|Other dislocation of left shoulder joint, initial encounter +C2842264|T037|AB|S43.085A|ICD10CM|Other dislocation of left shoulder joint, initial encounter|Other dislocation of left shoulder joint, initial encounter +C2842265|T037|AB|S43.085D|ICD10CM|Other dislocation of left shoulder joint, subs encntr|Other dislocation of left shoulder joint, subs encntr +C2842265|T037|PT|S43.085D|ICD10CM|Other dislocation of left shoulder joint, subsequent encounter|Other dislocation of left shoulder joint, subsequent encounter +C2842266|T037|PT|S43.085S|ICD10CM|Other dislocation of left shoulder joint, sequela|Other dislocation of left shoulder joint, sequela +C2842266|T037|AB|S43.085S|ICD10CM|Other dislocation of left shoulder joint, sequela|Other dislocation of left shoulder joint, sequela +C2842267|T037|AB|S43.086|ICD10CM|Other dislocation of unspecified shoulder joint|Other dislocation of unspecified shoulder joint +C2842267|T037|HT|S43.086|ICD10CM|Other dislocation of unspecified shoulder joint|Other dislocation of unspecified shoulder joint +C2842268|T037|AB|S43.086A|ICD10CM|Other dislocation of unspecified shoulder joint, init encntr|Other dislocation of unspecified shoulder joint, init encntr +C2842268|T037|PT|S43.086A|ICD10CM|Other dislocation of unspecified shoulder joint, initial encounter|Other dislocation of unspecified shoulder joint, initial encounter +C2842269|T037|AB|S43.086D|ICD10CM|Other dislocation of unspecified shoulder joint, subs encntr|Other dislocation of unspecified shoulder joint, subs encntr +C2842269|T037|PT|S43.086D|ICD10CM|Other dislocation of unspecified shoulder joint, subsequent encounter|Other dislocation of unspecified shoulder joint, subsequent encounter +C2842270|T037|PT|S43.086S|ICD10CM|Other dislocation of unspecified shoulder joint, sequela|Other dislocation of unspecified shoulder joint, sequela +C2842270|T037|AB|S43.086S|ICD10CM|Other dislocation of unspecified shoulder joint, sequela|Other dislocation of unspecified shoulder joint, sequela +C0149820|T037|PT|S43.1|ICD10|Dislocation of acromioclavicular joint|Dislocation of acromioclavicular joint +C2842271|T037|AB|S43.1|ICD10CM|Subluxation and dislocation of acromioclavicular joint|Subluxation and dislocation of acromioclavicular joint +C2842271|T037|HT|S43.1|ICD10CM|Subluxation and dislocation of acromioclavicular joint|Subluxation and dislocation of acromioclavicular joint +C2842272|T037|AB|S43.10|ICD10CM|Unspecified dislocation of acromioclavicular joint|Unspecified dislocation of acromioclavicular joint +C2842272|T037|HT|S43.10|ICD10CM|Unspecified dislocation of acromioclavicular joint|Unspecified dislocation of acromioclavicular joint +C2842273|T037|AB|S43.101|ICD10CM|Unspecified dislocation of right acromioclavicular joint|Unspecified dislocation of right acromioclavicular joint +C2842273|T037|HT|S43.101|ICD10CM|Unspecified dislocation of right acromioclavicular joint|Unspecified dislocation of right acromioclavicular joint +C2842274|T037|AB|S43.101A|ICD10CM|Unsp dislocation of right acromioclavicular joint, init|Unsp dislocation of right acromioclavicular joint, init +C2842274|T037|PT|S43.101A|ICD10CM|Unspecified dislocation of right acromioclavicular joint, initial encounter|Unspecified dislocation of right acromioclavicular joint, initial encounter +C2842275|T037|AB|S43.101D|ICD10CM|Unsp dislocation of right acromioclavicular joint, subs|Unsp dislocation of right acromioclavicular joint, subs +C2842275|T037|PT|S43.101D|ICD10CM|Unspecified dislocation of right acromioclavicular joint, subsequent encounter|Unspecified dislocation of right acromioclavicular joint, subsequent encounter +C2842276|T037|AB|S43.101S|ICD10CM|Unsp dislocation of right acromioclavicular joint, sequela|Unsp dislocation of right acromioclavicular joint, sequela +C2842276|T037|PT|S43.101S|ICD10CM|Unspecified dislocation of right acromioclavicular joint, sequela|Unspecified dislocation of right acromioclavicular joint, sequela +C2842277|T037|AB|S43.102|ICD10CM|Unspecified dislocation of left acromioclavicular joint|Unspecified dislocation of left acromioclavicular joint +C2842277|T037|HT|S43.102|ICD10CM|Unspecified dislocation of left acromioclavicular joint|Unspecified dislocation of left acromioclavicular joint +C2842278|T037|AB|S43.102A|ICD10CM|Unsp dislocation of left acromioclavicular joint, init|Unsp dislocation of left acromioclavicular joint, init +C2842278|T037|PT|S43.102A|ICD10CM|Unspecified dislocation of left acromioclavicular joint, initial encounter|Unspecified dislocation of left acromioclavicular joint, initial encounter +C2842279|T037|AB|S43.102D|ICD10CM|Unsp dislocation of left acromioclavicular joint, subs|Unsp dislocation of left acromioclavicular joint, subs +C2842279|T037|PT|S43.102D|ICD10CM|Unspecified dislocation of left acromioclavicular joint, subsequent encounter|Unspecified dislocation of left acromioclavicular joint, subsequent encounter +C2842280|T037|AB|S43.102S|ICD10CM|Unsp dislocation of left acromioclavicular joint, sequela|Unsp dislocation of left acromioclavicular joint, sequela +C2842280|T037|PT|S43.102S|ICD10CM|Unspecified dislocation of left acromioclavicular joint, sequela|Unspecified dislocation of left acromioclavicular joint, sequela +C2842281|T037|AB|S43.109|ICD10CM|Unsp dislocation of unspecified acromioclavicular joint|Unsp dislocation of unspecified acromioclavicular joint +C2842281|T037|HT|S43.109|ICD10CM|Unspecified dislocation of unspecified acromioclavicular joint|Unspecified dislocation of unspecified acromioclavicular joint +C2842282|T037|AB|S43.109A|ICD10CM|Unsp dislocation of unsp acromioclavicular joint, init|Unsp dislocation of unsp acromioclavicular joint, init +C2842282|T037|PT|S43.109A|ICD10CM|Unspecified dislocation of unspecified acromioclavicular joint, initial encounter|Unspecified dislocation of unspecified acromioclavicular joint, initial encounter +C2842283|T037|AB|S43.109D|ICD10CM|Unsp dislocation of unsp acromioclavicular joint, subs|Unsp dislocation of unsp acromioclavicular joint, subs +C2842283|T037|PT|S43.109D|ICD10CM|Unspecified dislocation of unspecified acromioclavicular joint, subsequent encounter|Unspecified dislocation of unspecified acromioclavicular joint, subsequent encounter +C2842284|T037|AB|S43.109S|ICD10CM|Unsp dislocation of unsp acromioclavicular joint, sequela|Unsp dislocation of unsp acromioclavicular joint, sequela +C2842284|T037|PT|S43.109S|ICD10CM|Unspecified dislocation of unspecified acromioclavicular joint, sequela|Unspecified dislocation of unspecified acromioclavicular joint, sequela +C0434741|T037|HT|S43.11|ICD10CM|Subluxation of acromioclavicular joint|Subluxation of acromioclavicular joint +C0434741|T037|AB|S43.11|ICD10CM|Subluxation of acromioclavicular joint|Subluxation of acromioclavicular joint +C2842285|T037|AB|S43.111|ICD10CM|Subluxation of right acromioclavicular joint|Subluxation of right acromioclavicular joint +C2842285|T037|HT|S43.111|ICD10CM|Subluxation of right acromioclavicular joint|Subluxation of right acromioclavicular joint +C2842286|T037|AB|S43.111A|ICD10CM|Subluxation of right acromioclavicular joint, init encntr|Subluxation of right acromioclavicular joint, init encntr +C2842286|T037|PT|S43.111A|ICD10CM|Subluxation of right acromioclavicular joint, initial encounter|Subluxation of right acromioclavicular joint, initial encounter +C2842287|T037|AB|S43.111D|ICD10CM|Subluxation of right acromioclavicular joint, subs encntr|Subluxation of right acromioclavicular joint, subs encntr +C2842287|T037|PT|S43.111D|ICD10CM|Subluxation of right acromioclavicular joint, subsequent encounter|Subluxation of right acromioclavicular joint, subsequent encounter +C2842288|T037|PT|S43.111S|ICD10CM|Subluxation of right acromioclavicular joint, sequela|Subluxation of right acromioclavicular joint, sequela +C2842288|T037|AB|S43.111S|ICD10CM|Subluxation of right acromioclavicular joint, sequela|Subluxation of right acromioclavicular joint, sequela +C2842289|T037|AB|S43.112|ICD10CM|Subluxation of left acromioclavicular joint|Subluxation of left acromioclavicular joint +C2842289|T037|HT|S43.112|ICD10CM|Subluxation of left acromioclavicular joint|Subluxation of left acromioclavicular joint +C2842290|T037|AB|S43.112A|ICD10CM|Subluxation of left acromioclavicular joint, init encntr|Subluxation of left acromioclavicular joint, init encntr +C2842290|T037|PT|S43.112A|ICD10CM|Subluxation of left acromioclavicular joint, initial encounter|Subluxation of left acromioclavicular joint, initial encounter +C2842291|T037|AB|S43.112D|ICD10CM|Subluxation of left acromioclavicular joint, subs encntr|Subluxation of left acromioclavicular joint, subs encntr +C2842291|T037|PT|S43.112D|ICD10CM|Subluxation of left acromioclavicular joint, subsequent encounter|Subluxation of left acromioclavicular joint, subsequent encounter +C2842292|T037|PT|S43.112S|ICD10CM|Subluxation of left acromioclavicular joint, sequela|Subluxation of left acromioclavicular joint, sequela +C2842292|T037|AB|S43.112S|ICD10CM|Subluxation of left acromioclavicular joint, sequela|Subluxation of left acromioclavicular joint, sequela +C2842293|T037|AB|S43.119|ICD10CM|Subluxation of unspecified acromioclavicular joint|Subluxation of unspecified acromioclavicular joint +C2842293|T037|HT|S43.119|ICD10CM|Subluxation of unspecified acromioclavicular joint|Subluxation of unspecified acromioclavicular joint +C2842294|T037|AB|S43.119A|ICD10CM|Subluxation of unsp acromioclavicular joint, init encntr|Subluxation of unsp acromioclavicular joint, init encntr +C2842294|T037|PT|S43.119A|ICD10CM|Subluxation of unspecified acromioclavicular joint, initial encounter|Subluxation of unspecified acromioclavicular joint, initial encounter +C2842295|T037|AB|S43.119D|ICD10CM|Subluxation of unsp acromioclavicular joint, subs encntr|Subluxation of unsp acromioclavicular joint, subs encntr +C2842295|T037|PT|S43.119D|ICD10CM|Subluxation of unspecified acromioclavicular joint, subsequent encounter|Subluxation of unspecified acromioclavicular joint, subsequent encounter +C2842296|T037|PT|S43.119S|ICD10CM|Subluxation of unspecified acromioclavicular joint, sequela|Subluxation of unspecified acromioclavicular joint, sequela +C2842296|T037|AB|S43.119S|ICD10CM|Subluxation of unspecified acromioclavicular joint, sequela|Subluxation of unspecified acromioclavicular joint, sequela +C2842297|T037|AB|S43.12|ICD10CM|Dislocation of acromioclav jt, 100%-200% displacement|Dislocation of acromioclav jt, 100%-200% displacement +C2842297|T037|HT|S43.12|ICD10CM|Dislocation of acromioclavicular joint, 100%-200% displacement|Dislocation of acromioclavicular joint, 100%-200% displacement +C2842298|T037|AB|S43.121|ICD10CM|Dislocation of r acromioclav jt, 100%-200% displacement|Dislocation of r acromioclav jt, 100%-200% displacement +C2842298|T037|HT|S43.121|ICD10CM|Dislocation of right acromioclavicular joint, 100%-200% displacement|Dislocation of right acromioclavicular joint, 100%-200% displacement +C2842299|T037|AB|S43.121A|ICD10CM|Dislocation of r acromioclav jt, 100%-200% displacmnt, init|Dislocation of r acromioclav jt, 100%-200% displacmnt, init +C2842299|T037|PT|S43.121A|ICD10CM|Dislocation of right acromioclavicular joint, 100%-200% displacement, initial encounter|Dislocation of right acromioclavicular joint, 100%-200% displacement, initial encounter +C2842300|T037|AB|S43.121D|ICD10CM|Dislocation of r acromioclav jt, 100%-200% displacmnt, subs|Dislocation of r acromioclav jt, 100%-200% displacmnt, subs +C2842300|T037|PT|S43.121D|ICD10CM|Dislocation of right acromioclavicular joint, 100%-200% displacement, subsequent encounter|Dislocation of right acromioclavicular joint, 100%-200% displacement, subsequent encounter +C2842301|T037|AB|S43.121S|ICD10CM|Disloc of r acromioclav jt, 100%-200% displacmnt, sequela|Disloc of r acromioclav jt, 100%-200% displacmnt, sequela +C2842301|T037|PT|S43.121S|ICD10CM|Dislocation of right acromioclavicular joint, 100%-200% displacement, sequela|Dislocation of right acromioclavicular joint, 100%-200% displacement, sequela +C2842302|T037|AB|S43.122|ICD10CM|Dislocation of l acromioclav jt, 100%-200% displacement|Dislocation of l acromioclav jt, 100%-200% displacement +C2842302|T037|HT|S43.122|ICD10CM|Dislocation of left acromioclavicular joint, 100%-200% displacement|Dislocation of left acromioclavicular joint, 100%-200% displacement +C2842303|T037|AB|S43.122A|ICD10CM|Dislocation of l acromioclav jt, 100%-200% displacmnt, init|Dislocation of l acromioclav jt, 100%-200% displacmnt, init +C2842303|T037|PT|S43.122A|ICD10CM|Dislocation of left acromioclavicular joint, 100%-200% displacement, initial encounter|Dislocation of left acromioclavicular joint, 100%-200% displacement, initial encounter +C2842304|T037|AB|S43.122D|ICD10CM|Dislocation of l acromioclav jt, 100%-200% displacmnt, subs|Dislocation of l acromioclav jt, 100%-200% displacmnt, subs +C2842304|T037|PT|S43.122D|ICD10CM|Dislocation of left acromioclavicular joint, 100%-200% displacement, subsequent encounter|Dislocation of left acromioclavicular joint, 100%-200% displacement, subsequent encounter +C2842305|T037|AB|S43.122S|ICD10CM|Disloc of l acromioclav jt, 100%-200% displacmnt, sequela|Disloc of l acromioclav jt, 100%-200% displacmnt, sequela +C2842305|T037|PT|S43.122S|ICD10CM|Dislocation of left acromioclavicular joint, 100%-200% displacement, sequela|Dislocation of left acromioclavicular joint, 100%-200% displacement, sequela +C2842306|T037|AB|S43.129|ICD10CM|Dislocation of unsp acromioclav jt, 100%-200% displacement|Dislocation of unsp acromioclav jt, 100%-200% displacement +C2842306|T037|HT|S43.129|ICD10CM|Dislocation of unspecified acromioclavicular joint, 100%-200% displacement|Dislocation of unspecified acromioclavicular joint, 100%-200% displacement +C2842307|T037|AB|S43.129A|ICD10CM|Disloc of unsp acromioclav jt, 100%-200% displacmnt, init|Disloc of unsp acromioclav jt, 100%-200% displacmnt, init +C2842307|T037|PT|S43.129A|ICD10CM|Dislocation of unspecified acromioclavicular joint, 100%-200% displacement, initial encounter|Dislocation of unspecified acromioclavicular joint, 100%-200% displacement, initial encounter +C2842308|T037|AB|S43.129D|ICD10CM|Disloc of unsp acromioclav jt, 100%-200% displacmnt, subs|Disloc of unsp acromioclav jt, 100%-200% displacmnt, subs +C2842308|T037|PT|S43.129D|ICD10CM|Dislocation of unspecified acromioclavicular joint, 100%-200% displacement, subsequent encounter|Dislocation of unspecified acromioclavicular joint, 100%-200% displacement, subsequent encounter +C2842309|T037|AB|S43.129S|ICD10CM|Disloc of unsp acromioclav jt, 100%-200% displacmnt, sequela|Disloc of unsp acromioclav jt, 100%-200% displacmnt, sequela +C2842309|T037|PT|S43.129S|ICD10CM|Dislocation of unspecified acromioclavicular joint, 100%-200% displacement, sequela|Dislocation of unspecified acromioclavicular joint, 100%-200% displacement, sequela +C2842310|T037|AB|S43.13|ICD10CM|Dislocation of acromioclav jt, greater than 200% displacmnt|Dislocation of acromioclav jt, greater than 200% displacmnt +C2842310|T037|HT|S43.13|ICD10CM|Dislocation of acromioclavicular joint, greater than 200% displacement|Dislocation of acromioclavicular joint, greater than 200% displacement +C2842311|T037|AB|S43.131|ICD10CM|Dislocation of r acromioclav jt, > 200% displacmnt|Dislocation of r acromioclav jt, > 200% displacmnt +C2842311|T037|HT|S43.131|ICD10CM|Dislocation of right acromioclavicular joint, greater than 200% displacement|Dislocation of right acromioclavicular joint, greater than 200% displacement +C2842312|T037|AB|S43.131A|ICD10CM|Dislocation of r acromioclav jt, > 200% displacmnt, init|Dislocation of r acromioclav jt, > 200% displacmnt, init +C2842312|T037|PT|S43.131A|ICD10CM|Dislocation of right acromioclavicular joint, greater than 200% displacement, initial encounter|Dislocation of right acromioclavicular joint, greater than 200% displacement, initial encounter +C2842313|T037|AB|S43.131D|ICD10CM|Dislocation of r acromioclav jt, > 200% displacmnt, subs|Dislocation of r acromioclav jt, > 200% displacmnt, subs +C2842313|T037|PT|S43.131D|ICD10CM|Dislocation of right acromioclavicular joint, greater than 200% displacement, subsequent encounter|Dislocation of right acromioclavicular joint, greater than 200% displacement, subsequent encounter +C2842314|T037|AB|S43.131S|ICD10CM|Dislocation of r acromioclav jt, > 200% displacmnt, sequela|Dislocation of r acromioclav jt, > 200% displacmnt, sequela +C2842314|T037|PT|S43.131S|ICD10CM|Dislocation of right acromioclavicular joint, greater than 200% displacement, sequela|Dislocation of right acromioclavicular joint, greater than 200% displacement, sequela +C2842315|T037|AB|S43.132|ICD10CM|Dislocation of l acromioclav jt, > 200% displacmnt|Dislocation of l acromioclav jt, > 200% displacmnt +C2842315|T037|HT|S43.132|ICD10CM|Dislocation of left acromioclavicular joint, greater than 200% displacement|Dislocation of left acromioclavicular joint, greater than 200% displacement +C2842316|T037|AB|S43.132A|ICD10CM|Dislocation of l acromioclav jt, > 200% displacmnt, init|Dislocation of l acromioclav jt, > 200% displacmnt, init +C2842316|T037|PT|S43.132A|ICD10CM|Dislocation of left acromioclavicular joint, greater than 200% displacement, initial encounter|Dislocation of left acromioclavicular joint, greater than 200% displacement, initial encounter +C2842317|T037|AB|S43.132D|ICD10CM|Dislocation of l acromioclav jt, > 200% displacmnt, subs|Dislocation of l acromioclav jt, > 200% displacmnt, subs +C2842317|T037|PT|S43.132D|ICD10CM|Dislocation of left acromioclavicular joint, greater than 200% displacement, subsequent encounter|Dislocation of left acromioclavicular joint, greater than 200% displacement, subsequent encounter +C2842318|T037|AB|S43.132S|ICD10CM|Dislocation of l acromioclav jt, > 200% displacmnt, sequela|Dislocation of l acromioclav jt, > 200% displacmnt, sequela +C2842318|T037|PT|S43.132S|ICD10CM|Dislocation of left acromioclavicular joint, greater than 200% displacement, sequela|Dislocation of left acromioclavicular joint, greater than 200% displacement, sequela +C2842319|T037|AB|S43.139|ICD10CM|Dislocation of unsp acromioclav jt, > 200% displacmnt|Dislocation of unsp acromioclav jt, > 200% displacmnt +C2842319|T037|HT|S43.139|ICD10CM|Dislocation of unspecified acromioclavicular joint, greater than 200% displacement|Dislocation of unspecified acromioclavicular joint, greater than 200% displacement +C2842320|T037|AB|S43.139A|ICD10CM|Dislocation of unsp acromioclav jt, > 200% displacmnt, init|Dislocation of unsp acromioclav jt, > 200% displacmnt, init +C2842321|T037|AB|S43.139D|ICD10CM|Dislocation of unsp acromioclav jt, > 200% displacmnt, subs|Dislocation of unsp acromioclav jt, > 200% displacmnt, subs +C2842322|T037|AB|S43.139S|ICD10CM|Disloc of unsp acromioclav jt, > 200% displacmnt, sequela|Disloc of unsp acromioclav jt, > 200% displacmnt, sequela +C2842322|T037|PT|S43.139S|ICD10CM|Dislocation of unspecified acromioclavicular joint, greater than 200% displacement, sequela|Dislocation of unspecified acromioclavicular joint, greater than 200% displacement, sequela +C2842323|T037|AB|S43.14|ICD10CM|Inferior dislocation of acromioclavicular joint|Inferior dislocation of acromioclavicular joint +C2842323|T037|HT|S43.14|ICD10CM|Inferior dislocation of acromioclavicular joint|Inferior dislocation of acromioclavicular joint +C2842324|T037|AB|S43.141|ICD10CM|Inferior dislocation of right acromioclavicular joint|Inferior dislocation of right acromioclavicular joint +C2842324|T037|HT|S43.141|ICD10CM|Inferior dislocation of right acromioclavicular joint|Inferior dislocation of right acromioclavicular joint +C2842325|T037|AB|S43.141A|ICD10CM|Inferior dislocation of right acromioclavicular joint, init|Inferior dislocation of right acromioclavicular joint, init +C2842325|T037|PT|S43.141A|ICD10CM|Inferior dislocation of right acromioclavicular joint, initial encounter|Inferior dislocation of right acromioclavicular joint, initial encounter +C2842326|T037|AB|S43.141D|ICD10CM|Inferior dislocation of right acromioclavicular joint, subs|Inferior dislocation of right acromioclavicular joint, subs +C2842326|T037|PT|S43.141D|ICD10CM|Inferior dislocation of right acromioclavicular joint, subsequent encounter|Inferior dislocation of right acromioclavicular joint, subsequent encounter +C2842327|T037|AB|S43.141S|ICD10CM|Inferior dislocation of r acromioclav jt, sequela|Inferior dislocation of r acromioclav jt, sequela +C2842327|T037|PT|S43.141S|ICD10CM|Inferior dislocation of right acromioclavicular joint, sequela|Inferior dislocation of right acromioclavicular joint, sequela +C2842328|T037|AB|S43.142|ICD10CM|Inferior dislocation of left acromioclavicular joint|Inferior dislocation of left acromioclavicular joint +C2842328|T037|HT|S43.142|ICD10CM|Inferior dislocation of left acromioclavicular joint|Inferior dislocation of left acromioclavicular joint +C2842329|T037|AB|S43.142A|ICD10CM|Inferior dislocation of left acromioclavicular joint, init|Inferior dislocation of left acromioclavicular joint, init +C2842329|T037|PT|S43.142A|ICD10CM|Inferior dislocation of left acromioclavicular joint, initial encounter|Inferior dislocation of left acromioclavicular joint, initial encounter +C2842330|T037|AB|S43.142D|ICD10CM|Inferior dislocation of left acromioclavicular joint, subs|Inferior dislocation of left acromioclavicular joint, subs +C2842330|T037|PT|S43.142D|ICD10CM|Inferior dislocation of left acromioclavicular joint, subsequent encounter|Inferior dislocation of left acromioclavicular joint, subsequent encounter +C2842331|T037|AB|S43.142S|ICD10CM|Inferior dislocation of l acromioclav jt, sequela|Inferior dislocation of l acromioclav jt, sequela +C2842331|T037|PT|S43.142S|ICD10CM|Inferior dislocation of left acromioclavicular joint, sequela|Inferior dislocation of left acromioclavicular joint, sequela +C2842332|T037|AB|S43.149|ICD10CM|Inferior dislocation of unspecified acromioclavicular joint|Inferior dislocation of unspecified acromioclavicular joint +C2842332|T037|HT|S43.149|ICD10CM|Inferior dislocation of unspecified acromioclavicular joint|Inferior dislocation of unspecified acromioclavicular joint +C2842333|T037|AB|S43.149A|ICD10CM|Inferior dislocation of unsp acromioclavicular joint, init|Inferior dislocation of unsp acromioclavicular joint, init +C2842333|T037|PT|S43.149A|ICD10CM|Inferior dislocation of unspecified acromioclavicular joint, initial encounter|Inferior dislocation of unspecified acromioclavicular joint, initial encounter +C2842334|T037|AB|S43.149D|ICD10CM|Inferior dislocation of unsp acromioclavicular joint, subs|Inferior dislocation of unsp acromioclavicular joint, subs +C2842334|T037|PT|S43.149D|ICD10CM|Inferior dislocation of unspecified acromioclavicular joint, subsequent encounter|Inferior dislocation of unspecified acromioclavicular joint, subsequent encounter +C2842335|T037|AB|S43.149S|ICD10CM|Inferior dislocation of unsp acromioclav jt, sequela|Inferior dislocation of unsp acromioclav jt, sequela +C2842335|T037|PT|S43.149S|ICD10CM|Inferior dislocation of unspecified acromioclavicular joint, sequela|Inferior dislocation of unspecified acromioclavicular joint, sequela +C2842336|T037|AB|S43.15|ICD10CM|Posterior dislocation of acromioclavicular joint|Posterior dislocation of acromioclavicular joint +C2842336|T037|HT|S43.15|ICD10CM|Posterior dislocation of acromioclavicular joint|Posterior dislocation of acromioclavicular joint +C2842337|T037|AB|S43.151|ICD10CM|Posterior dislocation of right acromioclavicular joint|Posterior dislocation of right acromioclavicular joint +C2842337|T037|HT|S43.151|ICD10CM|Posterior dislocation of right acromioclavicular joint|Posterior dislocation of right acromioclavicular joint +C2842338|T037|AB|S43.151A|ICD10CM|Posterior dislocation of right acromioclavicular joint, init|Posterior dislocation of right acromioclavicular joint, init +C2842338|T037|PT|S43.151A|ICD10CM|Posterior dislocation of right acromioclavicular joint, initial encounter|Posterior dislocation of right acromioclavicular joint, initial encounter +C2842339|T037|AB|S43.151D|ICD10CM|Posterior dislocation of right acromioclavicular joint, subs|Posterior dislocation of right acromioclavicular joint, subs +C2842339|T037|PT|S43.151D|ICD10CM|Posterior dislocation of right acromioclavicular joint, subsequent encounter|Posterior dislocation of right acromioclavicular joint, subsequent encounter +C2842340|T037|AB|S43.151S|ICD10CM|Posterior dislocation of r acromioclav jt, sequela|Posterior dislocation of r acromioclav jt, sequela +C2842340|T037|PT|S43.151S|ICD10CM|Posterior dislocation of right acromioclavicular joint, sequela|Posterior dislocation of right acromioclavicular joint, sequela +C2842341|T037|AB|S43.152|ICD10CM|Posterior dislocation of left acromioclavicular joint|Posterior dislocation of left acromioclavicular joint +C2842341|T037|HT|S43.152|ICD10CM|Posterior dislocation of left acromioclavicular joint|Posterior dislocation of left acromioclavicular joint +C2842342|T037|AB|S43.152A|ICD10CM|Posterior dislocation of left acromioclavicular joint, init|Posterior dislocation of left acromioclavicular joint, init +C2842342|T037|PT|S43.152A|ICD10CM|Posterior dislocation of left acromioclavicular joint, initial encounter|Posterior dislocation of left acromioclavicular joint, initial encounter +C2842343|T037|AB|S43.152D|ICD10CM|Posterior dislocation of left acromioclavicular joint, subs|Posterior dislocation of left acromioclavicular joint, subs +C2842343|T037|PT|S43.152D|ICD10CM|Posterior dislocation of left acromioclavicular joint, subsequent encounter|Posterior dislocation of left acromioclavicular joint, subsequent encounter +C2842344|T037|AB|S43.152S|ICD10CM|Posterior dislocation of l acromioclav jt, sequela|Posterior dislocation of l acromioclav jt, sequela +C2842344|T037|PT|S43.152S|ICD10CM|Posterior dislocation of left acromioclavicular joint, sequela|Posterior dislocation of left acromioclavicular joint, sequela +C2842345|T037|AB|S43.159|ICD10CM|Posterior dislocation of unspecified acromioclavicular joint|Posterior dislocation of unspecified acromioclavicular joint +C2842345|T037|HT|S43.159|ICD10CM|Posterior dislocation of unspecified acromioclavicular joint|Posterior dislocation of unspecified acromioclavicular joint +C2842346|T037|AB|S43.159A|ICD10CM|Posterior dislocation of unsp acromioclavicular joint, init|Posterior dislocation of unsp acromioclavicular joint, init +C2842346|T037|PT|S43.159A|ICD10CM|Posterior dislocation of unspecified acromioclavicular joint, initial encounter|Posterior dislocation of unspecified acromioclavicular joint, initial encounter +C2842347|T037|AB|S43.159D|ICD10CM|Posterior dislocation of unsp acromioclavicular joint, subs|Posterior dislocation of unsp acromioclavicular joint, subs +C2842347|T037|PT|S43.159D|ICD10CM|Posterior dislocation of unspecified acromioclavicular joint, subsequent encounter|Posterior dislocation of unspecified acromioclavicular joint, subsequent encounter +C2842348|T037|AB|S43.159S|ICD10CM|Posterior dislocation of unsp acromioclav jt, sequela|Posterior dislocation of unsp acromioclav jt, sequela +C2842348|T037|PT|S43.159S|ICD10CM|Posterior dislocation of unspecified acromioclavicular joint, sequela|Posterior dislocation of unspecified acromioclavicular joint, sequela +C0347729|T037|PT|S43.2|ICD10|Dislocation of sternoclavicular joint|Dislocation of sternoclavicular joint +C2842349|T037|AB|S43.2|ICD10CM|Subluxation and dislocation of sternoclavicular joint|Subluxation and dislocation of sternoclavicular joint +C2842349|T037|HT|S43.2|ICD10CM|Subluxation and dislocation of sternoclavicular joint|Subluxation and dislocation of sternoclavicular joint +C2842350|T037|AB|S43.20|ICD10CM|Unsp subluxation and dislocation of sternoclavicular joint|Unsp subluxation and dislocation of sternoclavicular joint +C2842350|T037|HT|S43.20|ICD10CM|Unspecified subluxation and dislocation of sternoclavicular joint|Unspecified subluxation and dislocation of sternoclavicular joint +C2842351|T037|AB|S43.201|ICD10CM|Unspecified subluxation of right sternoclavicular joint|Unspecified subluxation of right sternoclavicular joint +C2842351|T037|HT|S43.201|ICD10CM|Unspecified subluxation of right sternoclavicular joint|Unspecified subluxation of right sternoclavicular joint +C2842352|T037|AB|S43.201A|ICD10CM|Unsp subluxation of right sternoclavicular joint, init|Unsp subluxation of right sternoclavicular joint, init +C2842352|T037|PT|S43.201A|ICD10CM|Unspecified subluxation of right sternoclavicular joint, initial encounter|Unspecified subluxation of right sternoclavicular joint, initial encounter +C2842353|T037|AB|S43.201D|ICD10CM|Unsp subluxation of right sternoclavicular joint, subs|Unsp subluxation of right sternoclavicular joint, subs +C2842353|T037|PT|S43.201D|ICD10CM|Unspecified subluxation of right sternoclavicular joint, subsequent encounter|Unspecified subluxation of right sternoclavicular joint, subsequent encounter +C2842354|T037|AB|S43.201S|ICD10CM|Unsp subluxation of right sternoclavicular joint, sequela|Unsp subluxation of right sternoclavicular joint, sequela +C2842354|T037|PT|S43.201S|ICD10CM|Unspecified subluxation of right sternoclavicular joint, sequela|Unspecified subluxation of right sternoclavicular joint, sequela +C2842355|T037|AB|S43.202|ICD10CM|Unspecified subluxation of left sternoclavicular joint|Unspecified subluxation of left sternoclavicular joint +C2842355|T037|HT|S43.202|ICD10CM|Unspecified subluxation of left sternoclavicular joint|Unspecified subluxation of left sternoclavicular joint +C2842356|T037|AB|S43.202A|ICD10CM|Unsp subluxation of left sternoclavicular joint, init encntr|Unsp subluxation of left sternoclavicular joint, init encntr +C2842356|T037|PT|S43.202A|ICD10CM|Unspecified subluxation of left sternoclavicular joint, initial encounter|Unspecified subluxation of left sternoclavicular joint, initial encounter +C2842357|T037|AB|S43.202D|ICD10CM|Unsp subluxation of left sternoclavicular joint, subs encntr|Unsp subluxation of left sternoclavicular joint, subs encntr +C2842357|T037|PT|S43.202D|ICD10CM|Unspecified subluxation of left sternoclavicular joint, subsequent encounter|Unspecified subluxation of left sternoclavicular joint, subsequent encounter +C2842358|T037|AB|S43.202S|ICD10CM|Unsp subluxation of left sternoclavicular joint, sequela|Unsp subluxation of left sternoclavicular joint, sequela +C2842358|T037|PT|S43.202S|ICD10CM|Unspecified subluxation of left sternoclavicular joint, sequela|Unspecified subluxation of left sternoclavicular joint, sequela +C2842359|T037|AB|S43.203|ICD10CM|Unsp subluxation of unspecified sternoclavicular joint|Unsp subluxation of unspecified sternoclavicular joint +C2842359|T037|HT|S43.203|ICD10CM|Unspecified subluxation of unspecified sternoclavicular joint|Unspecified subluxation of unspecified sternoclavicular joint +C2842360|T037|AB|S43.203A|ICD10CM|Unsp subluxation of unsp sternoclavicular joint, init encntr|Unsp subluxation of unsp sternoclavicular joint, init encntr +C2842360|T037|PT|S43.203A|ICD10CM|Unspecified subluxation of unspecified sternoclavicular joint, initial encounter|Unspecified subluxation of unspecified sternoclavicular joint, initial encounter +C2842361|T037|AB|S43.203D|ICD10CM|Unsp subluxation of unsp sternoclavicular joint, subs encntr|Unsp subluxation of unsp sternoclavicular joint, subs encntr +C2842361|T037|PT|S43.203D|ICD10CM|Unspecified subluxation of unspecified sternoclavicular joint, subsequent encounter|Unspecified subluxation of unspecified sternoclavicular joint, subsequent encounter +C2842362|T037|AB|S43.203S|ICD10CM|Unsp subluxation of unsp sternoclavicular joint, sequela|Unsp subluxation of unsp sternoclavicular joint, sequela +C2842362|T037|PT|S43.203S|ICD10CM|Unspecified subluxation of unspecified sternoclavicular joint, sequela|Unspecified subluxation of unspecified sternoclavicular joint, sequela +C2842363|T037|AB|S43.204|ICD10CM|Unspecified dislocation of right sternoclavicular joint|Unspecified dislocation of right sternoclavicular joint +C2842363|T037|HT|S43.204|ICD10CM|Unspecified dislocation of right sternoclavicular joint|Unspecified dislocation of right sternoclavicular joint +C2842364|T037|AB|S43.204A|ICD10CM|Unsp dislocation of right sternoclavicular joint, init|Unsp dislocation of right sternoclavicular joint, init +C2842364|T037|PT|S43.204A|ICD10CM|Unspecified dislocation of right sternoclavicular joint, initial encounter|Unspecified dislocation of right sternoclavicular joint, initial encounter +C2842365|T037|AB|S43.204D|ICD10CM|Unsp dislocation of right sternoclavicular joint, subs|Unsp dislocation of right sternoclavicular joint, subs +C2842365|T037|PT|S43.204D|ICD10CM|Unspecified dislocation of right sternoclavicular joint, subsequent encounter|Unspecified dislocation of right sternoclavicular joint, subsequent encounter +C2842366|T037|AB|S43.204S|ICD10CM|Unsp dislocation of right sternoclavicular joint, sequela|Unsp dislocation of right sternoclavicular joint, sequela +C2842366|T037|PT|S43.204S|ICD10CM|Unspecified dislocation of right sternoclavicular joint, sequela|Unspecified dislocation of right sternoclavicular joint, sequela +C2842367|T037|AB|S43.205|ICD10CM|Unspecified dislocation of left sternoclavicular joint|Unspecified dislocation of left sternoclavicular joint +C2842367|T037|HT|S43.205|ICD10CM|Unspecified dislocation of left sternoclavicular joint|Unspecified dislocation of left sternoclavicular joint +C2842368|T037|AB|S43.205A|ICD10CM|Unsp dislocation of left sternoclavicular joint, init encntr|Unsp dislocation of left sternoclavicular joint, init encntr +C2842368|T037|PT|S43.205A|ICD10CM|Unspecified dislocation of left sternoclavicular joint, initial encounter|Unspecified dislocation of left sternoclavicular joint, initial encounter +C2842369|T037|AB|S43.205D|ICD10CM|Unsp dislocation of left sternoclavicular joint, subs encntr|Unsp dislocation of left sternoclavicular joint, subs encntr +C2842369|T037|PT|S43.205D|ICD10CM|Unspecified dislocation of left sternoclavicular joint, subsequent encounter|Unspecified dislocation of left sternoclavicular joint, subsequent encounter +C2842370|T037|AB|S43.205S|ICD10CM|Unsp dislocation of left sternoclavicular joint, sequela|Unsp dislocation of left sternoclavicular joint, sequela +C2842370|T037|PT|S43.205S|ICD10CM|Unspecified dislocation of left sternoclavicular joint, sequela|Unspecified dislocation of left sternoclavicular joint, sequela +C2842371|T037|AB|S43.206|ICD10CM|Unsp dislocation of unspecified sternoclavicular joint|Unsp dislocation of unspecified sternoclavicular joint +C2842371|T037|HT|S43.206|ICD10CM|Unspecified dislocation of unspecified sternoclavicular joint|Unspecified dislocation of unspecified sternoclavicular joint +C2842372|T037|AB|S43.206A|ICD10CM|Unsp dislocation of unsp sternoclavicular joint, init encntr|Unsp dislocation of unsp sternoclavicular joint, init encntr +C2842372|T037|PT|S43.206A|ICD10CM|Unspecified dislocation of unspecified sternoclavicular joint, initial encounter|Unspecified dislocation of unspecified sternoclavicular joint, initial encounter +C2842373|T037|AB|S43.206D|ICD10CM|Unsp dislocation of unsp sternoclavicular joint, subs encntr|Unsp dislocation of unsp sternoclavicular joint, subs encntr +C2842373|T037|PT|S43.206D|ICD10CM|Unspecified dislocation of unspecified sternoclavicular joint, subsequent encounter|Unspecified dislocation of unspecified sternoclavicular joint, subsequent encounter +C2842374|T037|AB|S43.206S|ICD10CM|Unsp dislocation of unsp sternoclavicular joint, sequela|Unsp dislocation of unsp sternoclavicular joint, sequela +C2842374|T037|PT|S43.206S|ICD10CM|Unspecified dislocation of unspecified sternoclavicular joint, sequela|Unspecified dislocation of unspecified sternoclavicular joint, sequela +C2842375|T037|AB|S43.21|ICD10CM|Anterior subluxation and dislocation of sternoclav jt|Anterior subluxation and dislocation of sternoclav jt +C2842375|T037|HT|S43.21|ICD10CM|Anterior subluxation and dislocation of sternoclavicular joint|Anterior subluxation and dislocation of sternoclavicular joint +C2842376|T037|AB|S43.211|ICD10CM|Anterior subluxation of right sternoclavicular joint|Anterior subluxation of right sternoclavicular joint +C2842376|T037|HT|S43.211|ICD10CM|Anterior subluxation of right sternoclavicular joint|Anterior subluxation of right sternoclavicular joint +C2842377|T037|AB|S43.211A|ICD10CM|Anterior subluxation of right sternoclavicular joint, init|Anterior subluxation of right sternoclavicular joint, init +C2842377|T037|PT|S43.211A|ICD10CM|Anterior subluxation of right sternoclavicular joint, initial encounter|Anterior subluxation of right sternoclavicular joint, initial encounter +C2842378|T037|AB|S43.211D|ICD10CM|Anterior subluxation of right sternoclavicular joint, subs|Anterior subluxation of right sternoclavicular joint, subs +C2842378|T037|PT|S43.211D|ICD10CM|Anterior subluxation of right sternoclavicular joint, subsequent encounter|Anterior subluxation of right sternoclavicular joint, subsequent encounter +C2842379|T037|AB|S43.211S|ICD10CM|Anterior subluxation of r sternoclav jt, sequela|Anterior subluxation of r sternoclav jt, sequela +C2842379|T037|PT|S43.211S|ICD10CM|Anterior subluxation of right sternoclavicular joint, sequela|Anterior subluxation of right sternoclavicular joint, sequela +C2842380|T037|AB|S43.212|ICD10CM|Anterior subluxation of left sternoclavicular joint|Anterior subluxation of left sternoclavicular joint +C2842380|T037|HT|S43.212|ICD10CM|Anterior subluxation of left sternoclavicular joint|Anterior subluxation of left sternoclavicular joint +C2842381|T037|AB|S43.212A|ICD10CM|Anterior subluxation of left sternoclavicular joint, init|Anterior subluxation of left sternoclavicular joint, init +C2842381|T037|PT|S43.212A|ICD10CM|Anterior subluxation of left sternoclavicular joint, initial encounter|Anterior subluxation of left sternoclavicular joint, initial encounter +C2842382|T037|AB|S43.212D|ICD10CM|Anterior subluxation of left sternoclavicular joint, subs|Anterior subluxation of left sternoclavicular joint, subs +C2842382|T037|PT|S43.212D|ICD10CM|Anterior subluxation of left sternoclavicular joint, subsequent encounter|Anterior subluxation of left sternoclavicular joint, subsequent encounter +C2842383|T037|AB|S43.212S|ICD10CM|Anterior subluxation of left sternoclavicular joint, sequela|Anterior subluxation of left sternoclavicular joint, sequela +C2842383|T037|PT|S43.212S|ICD10CM|Anterior subluxation of left sternoclavicular joint, sequela|Anterior subluxation of left sternoclavicular joint, sequela +C2842384|T037|AB|S43.213|ICD10CM|Anterior subluxation of unspecified sternoclavicular joint|Anterior subluxation of unspecified sternoclavicular joint +C2842384|T037|HT|S43.213|ICD10CM|Anterior subluxation of unspecified sternoclavicular joint|Anterior subluxation of unspecified sternoclavicular joint +C2842385|T037|AB|S43.213A|ICD10CM|Anterior subluxation of unsp sternoclavicular joint, init|Anterior subluxation of unsp sternoclavicular joint, init +C2842385|T037|PT|S43.213A|ICD10CM|Anterior subluxation of unspecified sternoclavicular joint, initial encounter|Anterior subluxation of unspecified sternoclavicular joint, initial encounter +C2842386|T037|AB|S43.213D|ICD10CM|Anterior subluxation of unsp sternoclavicular joint, subs|Anterior subluxation of unsp sternoclavicular joint, subs +C2842386|T037|PT|S43.213D|ICD10CM|Anterior subluxation of unspecified sternoclavicular joint, subsequent encounter|Anterior subluxation of unspecified sternoclavicular joint, subsequent encounter +C2842387|T037|AB|S43.213S|ICD10CM|Anterior subluxation of unsp sternoclavicular joint, sequela|Anterior subluxation of unsp sternoclavicular joint, sequela +C2842387|T037|PT|S43.213S|ICD10CM|Anterior subluxation of unspecified sternoclavicular joint, sequela|Anterior subluxation of unspecified sternoclavicular joint, sequela +C2157132|T037|AB|S43.214|ICD10CM|Anterior dislocation of right sternoclavicular joint|Anterior dislocation of right sternoclavicular joint +C2157132|T037|HT|S43.214|ICD10CM|Anterior dislocation of right sternoclavicular joint|Anterior dislocation of right sternoclavicular joint +C2842388|T037|AB|S43.214A|ICD10CM|Anterior dislocation of right sternoclavicular joint, init|Anterior dislocation of right sternoclavicular joint, init +C2842388|T037|PT|S43.214A|ICD10CM|Anterior dislocation of right sternoclavicular joint, initial encounter|Anterior dislocation of right sternoclavicular joint, initial encounter +C2842389|T037|AB|S43.214D|ICD10CM|Anterior dislocation of right sternoclavicular joint, subs|Anterior dislocation of right sternoclavicular joint, subs +C2842389|T037|PT|S43.214D|ICD10CM|Anterior dislocation of right sternoclavicular joint, subsequent encounter|Anterior dislocation of right sternoclavicular joint, subsequent encounter +C2842390|T037|AB|S43.214S|ICD10CM|Anterior dislocation of r sternoclav jt, sequela|Anterior dislocation of r sternoclav jt, sequela +C2842390|T037|PT|S43.214S|ICD10CM|Anterior dislocation of right sternoclavicular joint, sequela|Anterior dislocation of right sternoclavicular joint, sequela +C2157134|T037|AB|S43.215|ICD10CM|Anterior dislocation of left sternoclavicular joint|Anterior dislocation of left sternoclavicular joint +C2157134|T037|HT|S43.215|ICD10CM|Anterior dislocation of left sternoclavicular joint|Anterior dislocation of left sternoclavicular joint +C2842391|T037|AB|S43.215A|ICD10CM|Anterior dislocation of left sternoclavicular joint, init|Anterior dislocation of left sternoclavicular joint, init +C2842391|T037|PT|S43.215A|ICD10CM|Anterior dislocation of left sternoclavicular joint, initial encounter|Anterior dislocation of left sternoclavicular joint, initial encounter +C2842392|T037|AB|S43.215D|ICD10CM|Anterior dislocation of left sternoclavicular joint, subs|Anterior dislocation of left sternoclavicular joint, subs +C2842392|T037|PT|S43.215D|ICD10CM|Anterior dislocation of left sternoclavicular joint, subsequent encounter|Anterior dislocation of left sternoclavicular joint, subsequent encounter +C2842393|T037|AB|S43.215S|ICD10CM|Anterior dislocation of left sternoclavicular joint, sequela|Anterior dislocation of left sternoclavicular joint, sequela +C2842393|T037|PT|S43.215S|ICD10CM|Anterior dislocation of left sternoclavicular joint, sequela|Anterior dislocation of left sternoclavicular joint, sequela +C2842394|T037|AB|S43.216|ICD10CM|Anterior dislocation of unspecified sternoclavicular joint|Anterior dislocation of unspecified sternoclavicular joint +C2842394|T037|HT|S43.216|ICD10CM|Anterior dislocation of unspecified sternoclavicular joint|Anterior dislocation of unspecified sternoclavicular joint +C2842395|T037|AB|S43.216A|ICD10CM|Anterior dislocation of unsp sternoclavicular joint, init|Anterior dislocation of unsp sternoclavicular joint, init +C2842395|T037|PT|S43.216A|ICD10CM|Anterior dislocation of unspecified sternoclavicular joint, initial encounter|Anterior dislocation of unspecified sternoclavicular joint, initial encounter +C2842396|T037|AB|S43.216D|ICD10CM|Anterior dislocation of unsp sternoclavicular joint, subs|Anterior dislocation of unsp sternoclavicular joint, subs +C2842396|T037|PT|S43.216D|ICD10CM|Anterior dislocation of unspecified sternoclavicular joint, subsequent encounter|Anterior dislocation of unspecified sternoclavicular joint, subsequent encounter +C2842397|T037|AB|S43.216S|ICD10CM|Anterior dislocation of unsp sternoclavicular joint, sequela|Anterior dislocation of unsp sternoclavicular joint, sequela +C2842397|T037|PT|S43.216S|ICD10CM|Anterior dislocation of unspecified sternoclavicular joint, sequela|Anterior dislocation of unspecified sternoclavicular joint, sequela +C2842398|T037|AB|S43.22|ICD10CM|Posterior subluxation and dislocation of sternoclav jt|Posterior subluxation and dislocation of sternoclav jt +C2842398|T037|HT|S43.22|ICD10CM|Posterior subluxation and dislocation of sternoclavicular joint|Posterior subluxation and dislocation of sternoclavicular joint +C2842399|T037|AB|S43.221|ICD10CM|Posterior subluxation of right sternoclavicular joint|Posterior subluxation of right sternoclavicular joint +C2842399|T037|HT|S43.221|ICD10CM|Posterior subluxation of right sternoclavicular joint|Posterior subluxation of right sternoclavicular joint +C2842400|T037|AB|S43.221A|ICD10CM|Posterior subluxation of right sternoclavicular joint, init|Posterior subluxation of right sternoclavicular joint, init +C2842400|T037|PT|S43.221A|ICD10CM|Posterior subluxation of right sternoclavicular joint, initial encounter|Posterior subluxation of right sternoclavicular joint, initial encounter +C2842401|T037|AB|S43.221D|ICD10CM|Posterior subluxation of right sternoclavicular joint, subs|Posterior subluxation of right sternoclavicular joint, subs +C2842401|T037|PT|S43.221D|ICD10CM|Posterior subluxation of right sternoclavicular joint, subsequent encounter|Posterior subluxation of right sternoclavicular joint, subsequent encounter +C2842402|T037|AB|S43.221S|ICD10CM|Posterior subluxation of r sternoclav jt, sequela|Posterior subluxation of r sternoclav jt, sequela +C2842402|T037|PT|S43.221S|ICD10CM|Posterior subluxation of right sternoclavicular joint, sequela|Posterior subluxation of right sternoclavicular joint, sequela +C2842403|T037|AB|S43.222|ICD10CM|Posterior subluxation of left sternoclavicular joint|Posterior subluxation of left sternoclavicular joint +C2842403|T037|HT|S43.222|ICD10CM|Posterior subluxation of left sternoclavicular joint|Posterior subluxation of left sternoclavicular joint +C2842404|T037|AB|S43.222A|ICD10CM|Posterior subluxation of left sternoclavicular joint, init|Posterior subluxation of left sternoclavicular joint, init +C2842404|T037|PT|S43.222A|ICD10CM|Posterior subluxation of left sternoclavicular joint, initial encounter|Posterior subluxation of left sternoclavicular joint, initial encounter +C2842405|T037|AB|S43.222D|ICD10CM|Posterior subluxation of left sternoclavicular joint, subs|Posterior subluxation of left sternoclavicular joint, subs +C2842405|T037|PT|S43.222D|ICD10CM|Posterior subluxation of left sternoclavicular joint, subsequent encounter|Posterior subluxation of left sternoclavicular joint, subsequent encounter +C2842406|T037|AB|S43.222S|ICD10CM|Posterior subluxation of l sternoclav jt, sequela|Posterior subluxation of l sternoclav jt, sequela +C2842406|T037|PT|S43.222S|ICD10CM|Posterior subluxation of left sternoclavicular joint, sequela|Posterior subluxation of left sternoclavicular joint, sequela +C2842407|T037|AB|S43.223|ICD10CM|Posterior subluxation of unspecified sternoclavicular joint|Posterior subluxation of unspecified sternoclavicular joint +C2842407|T037|HT|S43.223|ICD10CM|Posterior subluxation of unspecified sternoclavicular joint|Posterior subluxation of unspecified sternoclavicular joint +C2842408|T037|AB|S43.223A|ICD10CM|Posterior subluxation of unsp sternoclavicular joint, init|Posterior subluxation of unsp sternoclavicular joint, init +C2842408|T037|PT|S43.223A|ICD10CM|Posterior subluxation of unspecified sternoclavicular joint, initial encounter|Posterior subluxation of unspecified sternoclavicular joint, initial encounter +C2842409|T037|AB|S43.223D|ICD10CM|Posterior subluxation of unsp sternoclavicular joint, subs|Posterior subluxation of unsp sternoclavicular joint, subs +C2842409|T037|PT|S43.223D|ICD10CM|Posterior subluxation of unspecified sternoclavicular joint, subsequent encounter|Posterior subluxation of unspecified sternoclavicular joint, subsequent encounter +C2842410|T037|AB|S43.223S|ICD10CM|Posterior subluxation of unsp sternoclav jt, sequela|Posterior subluxation of unsp sternoclav jt, sequela +C2842410|T037|PT|S43.223S|ICD10CM|Posterior subluxation of unspecified sternoclavicular joint, sequela|Posterior subluxation of unspecified sternoclavicular joint, sequela +C2112235|T037|AB|S43.224|ICD10CM|Posterior dislocation of right sternoclavicular joint|Posterior dislocation of right sternoclavicular joint +C2112235|T037|HT|S43.224|ICD10CM|Posterior dislocation of right sternoclavicular joint|Posterior dislocation of right sternoclavicular joint +C2842411|T037|AB|S43.224A|ICD10CM|Posterior dislocation of right sternoclavicular joint, init|Posterior dislocation of right sternoclavicular joint, init +C2842411|T037|PT|S43.224A|ICD10CM|Posterior dislocation of right sternoclavicular joint, initial encounter|Posterior dislocation of right sternoclavicular joint, initial encounter +C2842412|T037|AB|S43.224D|ICD10CM|Posterior dislocation of right sternoclavicular joint, subs|Posterior dislocation of right sternoclavicular joint, subs +C2842412|T037|PT|S43.224D|ICD10CM|Posterior dislocation of right sternoclavicular joint, subsequent encounter|Posterior dislocation of right sternoclavicular joint, subsequent encounter +C2842413|T037|AB|S43.224S|ICD10CM|Posterior dislocation of r sternoclav jt, sequela|Posterior dislocation of r sternoclav jt, sequela +C2842413|T037|PT|S43.224S|ICD10CM|Posterior dislocation of right sternoclavicular joint, sequela|Posterior dislocation of right sternoclavicular joint, sequela +C2112232|T037|AB|S43.225|ICD10CM|Posterior dislocation of left sternoclavicular joint|Posterior dislocation of left sternoclavicular joint +C2112232|T037|HT|S43.225|ICD10CM|Posterior dislocation of left sternoclavicular joint|Posterior dislocation of left sternoclavicular joint +C2842414|T037|AB|S43.225A|ICD10CM|Posterior dislocation of left sternoclavicular joint, init|Posterior dislocation of left sternoclavicular joint, init +C2842414|T037|PT|S43.225A|ICD10CM|Posterior dislocation of left sternoclavicular joint, initial encounter|Posterior dislocation of left sternoclavicular joint, initial encounter +C2842415|T037|AB|S43.225D|ICD10CM|Posterior dislocation of left sternoclavicular joint, subs|Posterior dislocation of left sternoclavicular joint, subs +C2842415|T037|PT|S43.225D|ICD10CM|Posterior dislocation of left sternoclavicular joint, subsequent encounter|Posterior dislocation of left sternoclavicular joint, subsequent encounter +C2842416|T037|AB|S43.225S|ICD10CM|Posterior dislocation of l sternoclav jt, sequela|Posterior dislocation of l sternoclav jt, sequela +C2842416|T037|PT|S43.225S|ICD10CM|Posterior dislocation of left sternoclavicular joint, sequela|Posterior dislocation of left sternoclavicular joint, sequela +C2842417|T037|AB|S43.226|ICD10CM|Posterior dislocation of unspecified sternoclavicular joint|Posterior dislocation of unspecified sternoclavicular joint +C2842417|T037|HT|S43.226|ICD10CM|Posterior dislocation of unspecified sternoclavicular joint|Posterior dislocation of unspecified sternoclavicular joint +C2842418|T037|AB|S43.226A|ICD10CM|Posterior dislocation of unsp sternoclavicular joint, init|Posterior dislocation of unsp sternoclavicular joint, init +C2842418|T037|PT|S43.226A|ICD10CM|Posterior dislocation of unspecified sternoclavicular joint, initial encounter|Posterior dislocation of unspecified sternoclavicular joint, initial encounter +C2842419|T037|AB|S43.226D|ICD10CM|Posterior dislocation of unsp sternoclavicular joint, subs|Posterior dislocation of unsp sternoclavicular joint, subs +C2842419|T037|PT|S43.226D|ICD10CM|Posterior dislocation of unspecified sternoclavicular joint, subsequent encounter|Posterior dislocation of unspecified sternoclavicular joint, subsequent encounter +C2842420|T037|AB|S43.226S|ICD10CM|Posterior dislocation of unsp sternoclav jt, sequela|Posterior dislocation of unsp sternoclav jt, sequela +C2842420|T037|PT|S43.226S|ICD10CM|Posterior dislocation of unspecified sternoclavicular joint, sequela|Posterior dislocation of unspecified sternoclavicular joint, sequela +C0478274|T037|PT|S43.3|ICD10|Dislocation of other and unspecified parts of shoulder girdle|Dislocation of other and unspecified parts of shoulder girdle +C2842421|T037|AB|S43.3|ICD10CM|Subluxation and disloc of and unsp parts of shoulder girdle|Subluxation and disloc of and unsp parts of shoulder girdle +C2842421|T037|HT|S43.3|ICD10CM|Subluxation and dislocation of other and unspecified parts of shoulder girdle|Subluxation and dislocation of other and unspecified parts of shoulder girdle +C1403309|T037|ET|S43.30|ICD10CM|Dislocation of shoulder girdle NOS|Dislocation of shoulder girdle NOS +C2842423|T037|AB|S43.30|ICD10CM|Subluxation and dislocation of unsp parts of shoulder girdle|Subluxation and dislocation of unsp parts of shoulder girdle +C2842423|T037|HT|S43.30|ICD10CM|Subluxation and dislocation of unspecified parts of shoulder girdle|Subluxation and dislocation of unspecified parts of shoulder girdle +C2842422|T037|ET|S43.30|ICD10CM|Subluxation of shoulder girdle NOS|Subluxation of shoulder girdle NOS +C2842424|T037|AB|S43.301|ICD10CM|Subluxation of unspecified parts of right shoulder girdle|Subluxation of unspecified parts of right shoulder girdle +C2842424|T037|HT|S43.301|ICD10CM|Subluxation of unspecified parts of right shoulder girdle|Subluxation of unspecified parts of right shoulder girdle +C2842425|T037|AB|S43.301A|ICD10CM|Subluxation of unsp parts of right shoulder girdle, init|Subluxation of unsp parts of right shoulder girdle, init +C2842425|T037|PT|S43.301A|ICD10CM|Subluxation of unspecified parts of right shoulder girdle, initial encounter|Subluxation of unspecified parts of right shoulder girdle, initial encounter +C2842426|T037|AB|S43.301D|ICD10CM|Subluxation of unsp parts of right shoulder girdle, subs|Subluxation of unsp parts of right shoulder girdle, subs +C2842426|T037|PT|S43.301D|ICD10CM|Subluxation of unspecified parts of right shoulder girdle, subsequent encounter|Subluxation of unspecified parts of right shoulder girdle, subsequent encounter +C2842427|T037|AB|S43.301S|ICD10CM|Subluxation of unsp parts of right shoulder girdle, sequela|Subluxation of unsp parts of right shoulder girdle, sequela +C2842427|T037|PT|S43.301S|ICD10CM|Subluxation of unspecified parts of right shoulder girdle, sequela|Subluxation of unspecified parts of right shoulder girdle, sequela +C2842428|T037|AB|S43.302|ICD10CM|Subluxation of unspecified parts of left shoulder girdle|Subluxation of unspecified parts of left shoulder girdle +C2842428|T037|HT|S43.302|ICD10CM|Subluxation of unspecified parts of left shoulder girdle|Subluxation of unspecified parts of left shoulder girdle +C2842429|T037|AB|S43.302A|ICD10CM|Subluxation of unsp parts of left shoulder girdle, init|Subluxation of unsp parts of left shoulder girdle, init +C2842429|T037|PT|S43.302A|ICD10CM|Subluxation of unspecified parts of left shoulder girdle, initial encounter|Subluxation of unspecified parts of left shoulder girdle, initial encounter +C2842430|T037|AB|S43.302D|ICD10CM|Subluxation of unsp parts of left shoulder girdle, subs|Subluxation of unsp parts of left shoulder girdle, subs +C2842430|T037|PT|S43.302D|ICD10CM|Subluxation of unspecified parts of left shoulder girdle, subsequent encounter|Subluxation of unspecified parts of left shoulder girdle, subsequent encounter +C2842431|T037|AB|S43.302S|ICD10CM|Subluxation of unsp parts of left shoulder girdle, sequela|Subluxation of unsp parts of left shoulder girdle, sequela +C2842431|T037|PT|S43.302S|ICD10CM|Subluxation of unspecified parts of left shoulder girdle, sequela|Subluxation of unspecified parts of left shoulder girdle, sequela +C2842432|T037|AB|S43.303|ICD10CM|Subluxation of unsp parts of unspecified shoulder girdle|Subluxation of unsp parts of unspecified shoulder girdle +C2842432|T037|HT|S43.303|ICD10CM|Subluxation of unspecified parts of unspecified shoulder girdle|Subluxation of unspecified parts of unspecified shoulder girdle +C2842433|T037|AB|S43.303A|ICD10CM|Subluxation of unsp parts of unsp shoulder girdle, init|Subluxation of unsp parts of unsp shoulder girdle, init +C2842433|T037|PT|S43.303A|ICD10CM|Subluxation of unspecified parts of unspecified shoulder girdle, initial encounter|Subluxation of unspecified parts of unspecified shoulder girdle, initial encounter +C2842434|T037|AB|S43.303D|ICD10CM|Subluxation of unsp parts of unsp shoulder girdle, subs|Subluxation of unsp parts of unsp shoulder girdle, subs +C2842434|T037|PT|S43.303D|ICD10CM|Subluxation of unspecified parts of unspecified shoulder girdle, subsequent encounter|Subluxation of unspecified parts of unspecified shoulder girdle, subsequent encounter +C2842435|T037|AB|S43.303S|ICD10CM|Subluxation of unsp parts of unsp shoulder girdle, sequela|Subluxation of unsp parts of unsp shoulder girdle, sequela +C2842435|T037|PT|S43.303S|ICD10CM|Subluxation of unspecified parts of unspecified shoulder girdle, sequela|Subluxation of unspecified parts of unspecified shoulder girdle, sequela +C2842436|T037|AB|S43.304|ICD10CM|Dislocation of unspecified parts of right shoulder girdle|Dislocation of unspecified parts of right shoulder girdle +C2842436|T037|HT|S43.304|ICD10CM|Dislocation of unspecified parts of right shoulder girdle|Dislocation of unspecified parts of right shoulder girdle +C2842437|T037|AB|S43.304A|ICD10CM|Dislocation of unsp parts of right shoulder girdle, init|Dislocation of unsp parts of right shoulder girdle, init +C2842437|T037|PT|S43.304A|ICD10CM|Dislocation of unspecified parts of right shoulder girdle, initial encounter|Dislocation of unspecified parts of right shoulder girdle, initial encounter +C2842438|T037|AB|S43.304D|ICD10CM|Dislocation of unsp parts of right shoulder girdle, subs|Dislocation of unsp parts of right shoulder girdle, subs +C2842438|T037|PT|S43.304D|ICD10CM|Dislocation of unspecified parts of right shoulder girdle, subsequent encounter|Dislocation of unspecified parts of right shoulder girdle, subsequent encounter +C2842439|T037|AB|S43.304S|ICD10CM|Dislocation of unsp parts of right shoulder girdle, sequela|Dislocation of unsp parts of right shoulder girdle, sequela +C2842439|T037|PT|S43.304S|ICD10CM|Dislocation of unspecified parts of right shoulder girdle, sequela|Dislocation of unspecified parts of right shoulder girdle, sequela +C2842440|T037|AB|S43.305|ICD10CM|Dislocation of unspecified parts of left shoulder girdle|Dislocation of unspecified parts of left shoulder girdle +C2842440|T037|HT|S43.305|ICD10CM|Dislocation of unspecified parts of left shoulder girdle|Dislocation of unspecified parts of left shoulder girdle +C2842441|T037|AB|S43.305A|ICD10CM|Dislocation of unsp parts of left shoulder girdle, init|Dislocation of unsp parts of left shoulder girdle, init +C2842441|T037|PT|S43.305A|ICD10CM|Dislocation of unspecified parts of left shoulder girdle, initial encounter|Dislocation of unspecified parts of left shoulder girdle, initial encounter +C2842442|T037|AB|S43.305D|ICD10CM|Dislocation of unsp parts of left shoulder girdle, subs|Dislocation of unsp parts of left shoulder girdle, subs +C2842442|T037|PT|S43.305D|ICD10CM|Dislocation of unspecified parts of left shoulder girdle, subsequent encounter|Dislocation of unspecified parts of left shoulder girdle, subsequent encounter +C2842443|T037|AB|S43.305S|ICD10CM|Dislocation of unsp parts of left shoulder girdle, sequela|Dislocation of unsp parts of left shoulder girdle, sequela +C2842443|T037|PT|S43.305S|ICD10CM|Dislocation of unspecified parts of left shoulder girdle, sequela|Dislocation of unspecified parts of left shoulder girdle, sequela +C2842444|T037|AB|S43.306|ICD10CM|Dislocation of unsp parts of unspecified shoulder girdle|Dislocation of unsp parts of unspecified shoulder girdle +C2842444|T037|HT|S43.306|ICD10CM|Dislocation of unspecified parts of unspecified shoulder girdle|Dislocation of unspecified parts of unspecified shoulder girdle +C2842445|T037|AB|S43.306A|ICD10CM|Dislocation of unsp parts of unsp shoulder girdle, init|Dislocation of unsp parts of unsp shoulder girdle, init +C2842445|T037|PT|S43.306A|ICD10CM|Dislocation of unspecified parts of unspecified shoulder girdle, initial encounter|Dislocation of unspecified parts of unspecified shoulder girdle, initial encounter +C2842446|T037|AB|S43.306D|ICD10CM|Dislocation of unsp parts of unsp shoulder girdle, subs|Dislocation of unsp parts of unsp shoulder girdle, subs +C2842446|T037|PT|S43.306D|ICD10CM|Dislocation of unspecified parts of unspecified shoulder girdle, subsequent encounter|Dislocation of unspecified parts of unspecified shoulder girdle, subsequent encounter +C2842447|T037|AB|S43.306S|ICD10CM|Dislocation of unsp parts of unsp shoulder girdle, sequela|Dislocation of unsp parts of unsp shoulder girdle, sequela +C2842447|T037|PT|S43.306S|ICD10CM|Dislocation of unspecified parts of unspecified shoulder girdle, sequela|Dislocation of unspecified parts of unspecified shoulder girdle, sequela +C2842448|T037|AB|S43.31|ICD10CM|Subluxation and dislocation of scapula|Subluxation and dislocation of scapula +C2842448|T037|HT|S43.31|ICD10CM|Subluxation and dislocation of scapula|Subluxation and dislocation of scapula +C2842449|T037|AB|S43.311|ICD10CM|Subluxation of right scapula|Subluxation of right scapula +C2842449|T037|HT|S43.311|ICD10CM|Subluxation of right scapula|Subluxation of right scapula +C2842450|T037|PT|S43.311A|ICD10CM|Subluxation of right scapula, initial encounter|Subluxation of right scapula, initial encounter +C2842450|T037|AB|S43.311A|ICD10CM|Subluxation of right scapula, initial encounter|Subluxation of right scapula, initial encounter +C2842451|T037|PT|S43.311D|ICD10CM|Subluxation of right scapula, subsequent encounter|Subluxation of right scapula, subsequent encounter +C2842451|T037|AB|S43.311D|ICD10CM|Subluxation of right scapula, subsequent encounter|Subluxation of right scapula, subsequent encounter +C2842452|T037|PT|S43.311S|ICD10CM|Subluxation of right scapula, sequela|Subluxation of right scapula, sequela +C2842452|T037|AB|S43.311S|ICD10CM|Subluxation of right scapula, sequela|Subluxation of right scapula, sequela +C2842453|T037|AB|S43.312|ICD10CM|Subluxation of left scapula|Subluxation of left scapula +C2842453|T037|HT|S43.312|ICD10CM|Subluxation of left scapula|Subluxation of left scapula +C2842454|T037|PT|S43.312A|ICD10CM|Subluxation of left scapula, initial encounter|Subluxation of left scapula, initial encounter +C2842454|T037|AB|S43.312A|ICD10CM|Subluxation of left scapula, initial encounter|Subluxation of left scapula, initial encounter +C2842455|T037|PT|S43.312D|ICD10CM|Subluxation of left scapula, subsequent encounter|Subluxation of left scapula, subsequent encounter +C2842455|T037|AB|S43.312D|ICD10CM|Subluxation of left scapula, subsequent encounter|Subluxation of left scapula, subsequent encounter +C2842456|T037|PT|S43.312S|ICD10CM|Subluxation of left scapula, sequela|Subluxation of left scapula, sequela +C2842456|T037|AB|S43.312S|ICD10CM|Subluxation of left scapula, sequela|Subluxation of left scapula, sequela +C2842457|T037|AB|S43.313|ICD10CM|Subluxation of unspecified scapula|Subluxation of unspecified scapula +C2842457|T037|HT|S43.313|ICD10CM|Subluxation of unspecified scapula|Subluxation of unspecified scapula +C2842458|T037|PT|S43.313A|ICD10CM|Subluxation of unspecified scapula, initial encounter|Subluxation of unspecified scapula, initial encounter +C2842458|T037|AB|S43.313A|ICD10CM|Subluxation of unspecified scapula, initial encounter|Subluxation of unspecified scapula, initial encounter +C2842459|T037|PT|S43.313D|ICD10CM|Subluxation of unspecified scapula, subsequent encounter|Subluxation of unspecified scapula, subsequent encounter +C2842459|T037|AB|S43.313D|ICD10CM|Subluxation of unspecified scapula, subsequent encounter|Subluxation of unspecified scapula, subsequent encounter +C2842460|T037|PT|S43.313S|ICD10CM|Subluxation of unspecified scapula, sequela|Subluxation of unspecified scapula, sequela +C2842460|T037|AB|S43.313S|ICD10CM|Subluxation of unspecified scapula, sequela|Subluxation of unspecified scapula, sequela +C2842461|T037|AB|S43.314|ICD10CM|Dislocation of right scapula|Dislocation of right scapula +C2842461|T037|HT|S43.314|ICD10CM|Dislocation of right scapula|Dislocation of right scapula +C2842462|T037|PT|S43.314A|ICD10CM|Dislocation of right scapula, initial encounter|Dislocation of right scapula, initial encounter +C2842462|T037|AB|S43.314A|ICD10CM|Dislocation of right scapula, initial encounter|Dislocation of right scapula, initial encounter +C2842463|T037|PT|S43.314D|ICD10CM|Dislocation of right scapula, subsequent encounter|Dislocation of right scapula, subsequent encounter +C2842463|T037|AB|S43.314D|ICD10CM|Dislocation of right scapula, subsequent encounter|Dislocation of right scapula, subsequent encounter +C2842464|T037|PT|S43.314S|ICD10CM|Dislocation of right scapula, sequela|Dislocation of right scapula, sequela +C2842464|T037|AB|S43.314S|ICD10CM|Dislocation of right scapula, sequela|Dislocation of right scapula, sequela +C2842465|T037|AB|S43.315|ICD10CM|Dislocation of left scapula|Dislocation of left scapula +C2842465|T037|HT|S43.315|ICD10CM|Dislocation of left scapula|Dislocation of left scapula +C2842466|T037|PT|S43.315A|ICD10CM|Dislocation of left scapula, initial encounter|Dislocation of left scapula, initial encounter +C2842466|T037|AB|S43.315A|ICD10CM|Dislocation of left scapula, initial encounter|Dislocation of left scapula, initial encounter +C2842467|T037|PT|S43.315D|ICD10CM|Dislocation of left scapula, subsequent encounter|Dislocation of left scapula, subsequent encounter +C2842467|T037|AB|S43.315D|ICD10CM|Dislocation of left scapula, subsequent encounter|Dislocation of left scapula, subsequent encounter +C2842468|T037|PT|S43.315S|ICD10CM|Dislocation of left scapula, sequela|Dislocation of left scapula, sequela +C2842468|T037|AB|S43.315S|ICD10CM|Dislocation of left scapula, sequela|Dislocation of left scapula, sequela +C2842469|T037|AB|S43.316|ICD10CM|Dislocation of unspecified scapula|Dislocation of unspecified scapula +C2842469|T037|HT|S43.316|ICD10CM|Dislocation of unspecified scapula|Dislocation of unspecified scapula +C2842470|T037|PT|S43.316A|ICD10CM|Dislocation of unspecified scapula, initial encounter|Dislocation of unspecified scapula, initial encounter +C2842470|T037|AB|S43.316A|ICD10CM|Dislocation of unspecified scapula, initial encounter|Dislocation of unspecified scapula, initial encounter +C2842471|T037|PT|S43.316D|ICD10CM|Dislocation of unspecified scapula, subsequent encounter|Dislocation of unspecified scapula, subsequent encounter +C2842471|T037|AB|S43.316D|ICD10CM|Dislocation of unspecified scapula, subsequent encounter|Dislocation of unspecified scapula, subsequent encounter +C2842472|T037|PT|S43.316S|ICD10CM|Dislocation of unspecified scapula, sequela|Dislocation of unspecified scapula, sequela +C2842472|T037|AB|S43.316S|ICD10CM|Dislocation of unspecified scapula, sequela|Dislocation of unspecified scapula, sequela +C2842473|T037|AB|S43.39|ICD10CM|Subluxation and dislocation of oth parts of shoulder girdle|Subluxation and dislocation of oth parts of shoulder girdle +C2842473|T037|HT|S43.39|ICD10CM|Subluxation and dislocation of other parts of shoulder girdle|Subluxation and dislocation of other parts of shoulder girdle +C2842474|T037|AB|S43.391|ICD10CM|Subluxation of other parts of right shoulder girdle|Subluxation of other parts of right shoulder girdle +C2842474|T037|HT|S43.391|ICD10CM|Subluxation of other parts of right shoulder girdle|Subluxation of other parts of right shoulder girdle +C2842475|T037|AB|S43.391A|ICD10CM|Subluxation of oth prt right shoulder girdle, init encntr|Subluxation of oth prt right shoulder girdle, init encntr +C2842475|T037|PT|S43.391A|ICD10CM|Subluxation of other parts of right shoulder girdle, initial encounter|Subluxation of other parts of right shoulder girdle, initial encounter +C2842476|T037|AB|S43.391D|ICD10CM|Subluxation of oth prt right shoulder girdle, subs encntr|Subluxation of oth prt right shoulder girdle, subs encntr +C2842476|T037|PT|S43.391D|ICD10CM|Subluxation of other parts of right shoulder girdle, subsequent encounter|Subluxation of other parts of right shoulder girdle, subsequent encounter +C2842477|T037|AB|S43.391S|ICD10CM|Subluxation of other parts of right shoulder girdle, sequela|Subluxation of other parts of right shoulder girdle, sequela +C2842477|T037|PT|S43.391S|ICD10CM|Subluxation of other parts of right shoulder girdle, sequela|Subluxation of other parts of right shoulder girdle, sequela +C2842478|T037|AB|S43.392|ICD10CM|Subluxation of other parts of left shoulder girdle|Subluxation of other parts of left shoulder girdle +C2842478|T037|HT|S43.392|ICD10CM|Subluxation of other parts of left shoulder girdle|Subluxation of other parts of left shoulder girdle +C2842479|T037|AB|S43.392A|ICD10CM|Subluxation of oth prt left shoulder girdle, init encntr|Subluxation of oth prt left shoulder girdle, init encntr +C2842479|T037|PT|S43.392A|ICD10CM|Subluxation of other parts of left shoulder girdle, initial encounter|Subluxation of other parts of left shoulder girdle, initial encounter +C2842480|T037|AB|S43.392D|ICD10CM|Subluxation of oth prt left shoulder girdle, subs encntr|Subluxation of oth prt left shoulder girdle, subs encntr +C2842480|T037|PT|S43.392D|ICD10CM|Subluxation of other parts of left shoulder girdle, subsequent encounter|Subluxation of other parts of left shoulder girdle, subsequent encounter +C2842481|T037|PT|S43.392S|ICD10CM|Subluxation of other parts of left shoulder girdle, sequela|Subluxation of other parts of left shoulder girdle, sequela +C2842481|T037|AB|S43.392S|ICD10CM|Subluxation of other parts of left shoulder girdle, sequela|Subluxation of other parts of left shoulder girdle, sequela +C2842482|T037|AB|S43.393|ICD10CM|Subluxation of other parts of unspecified shoulder girdle|Subluxation of other parts of unspecified shoulder girdle +C2842482|T037|HT|S43.393|ICD10CM|Subluxation of other parts of unspecified shoulder girdle|Subluxation of other parts of unspecified shoulder girdle +C2842483|T037|AB|S43.393A|ICD10CM|Subluxation of oth prt unsp shoulder girdle, init encntr|Subluxation of oth prt unsp shoulder girdle, init encntr +C2842483|T037|PT|S43.393A|ICD10CM|Subluxation of other parts of unspecified shoulder girdle, initial encounter|Subluxation of other parts of unspecified shoulder girdle, initial encounter +C2842484|T037|AB|S43.393D|ICD10CM|Subluxation of oth prt unsp shoulder girdle, subs encntr|Subluxation of oth prt unsp shoulder girdle, subs encntr +C2842484|T037|PT|S43.393D|ICD10CM|Subluxation of other parts of unspecified shoulder girdle, subsequent encounter|Subluxation of other parts of unspecified shoulder girdle, subsequent encounter +C2842485|T037|AB|S43.393S|ICD10CM|Subluxation of other parts of unsp shoulder girdle, sequela|Subluxation of other parts of unsp shoulder girdle, sequela +C2842485|T037|PT|S43.393S|ICD10CM|Subluxation of other parts of unspecified shoulder girdle, sequela|Subluxation of other parts of unspecified shoulder girdle, sequela +C2842486|T037|AB|S43.394|ICD10CM|Dislocation of other parts of right shoulder girdle|Dislocation of other parts of right shoulder girdle +C2842486|T037|HT|S43.394|ICD10CM|Dislocation of other parts of right shoulder girdle|Dislocation of other parts of right shoulder girdle +C2842487|T037|AB|S43.394A|ICD10CM|Dislocation of oth prt right shoulder girdle, init encntr|Dislocation of oth prt right shoulder girdle, init encntr +C2842487|T037|PT|S43.394A|ICD10CM|Dislocation of other parts of right shoulder girdle, initial encounter|Dislocation of other parts of right shoulder girdle, initial encounter +C2842488|T037|AB|S43.394D|ICD10CM|Dislocation of oth prt right shoulder girdle, subs encntr|Dislocation of oth prt right shoulder girdle, subs encntr +C2842488|T037|PT|S43.394D|ICD10CM|Dislocation of other parts of right shoulder girdle, subsequent encounter|Dislocation of other parts of right shoulder girdle, subsequent encounter +C2842489|T037|AB|S43.394S|ICD10CM|Dislocation of other parts of right shoulder girdle, sequela|Dislocation of other parts of right shoulder girdle, sequela +C2842489|T037|PT|S43.394S|ICD10CM|Dislocation of other parts of right shoulder girdle, sequela|Dislocation of other parts of right shoulder girdle, sequela +C2842490|T037|AB|S43.395|ICD10CM|Dislocation of other parts of left shoulder girdle|Dislocation of other parts of left shoulder girdle +C2842490|T037|HT|S43.395|ICD10CM|Dislocation of other parts of left shoulder girdle|Dislocation of other parts of left shoulder girdle +C2842491|T037|AB|S43.395A|ICD10CM|Dislocation of oth prt left shoulder girdle, init encntr|Dislocation of oth prt left shoulder girdle, init encntr +C2842491|T037|PT|S43.395A|ICD10CM|Dislocation of other parts of left shoulder girdle, initial encounter|Dislocation of other parts of left shoulder girdle, initial encounter +C2842492|T037|AB|S43.395D|ICD10CM|Dislocation of oth prt left shoulder girdle, subs encntr|Dislocation of oth prt left shoulder girdle, subs encntr +C2842492|T037|PT|S43.395D|ICD10CM|Dislocation of other parts of left shoulder girdle, subsequent encounter|Dislocation of other parts of left shoulder girdle, subsequent encounter +C2842493|T037|PT|S43.395S|ICD10CM|Dislocation of other parts of left shoulder girdle, sequela|Dislocation of other parts of left shoulder girdle, sequela +C2842493|T037|AB|S43.395S|ICD10CM|Dislocation of other parts of left shoulder girdle, sequela|Dislocation of other parts of left shoulder girdle, sequela +C0478274|T037|AB|S43.396|ICD10CM|Dislocation of other parts of unspecified shoulder girdle|Dislocation of other parts of unspecified shoulder girdle +C0478274|T037|HT|S43.396|ICD10CM|Dislocation of other parts of unspecified shoulder girdle|Dislocation of other parts of unspecified shoulder girdle +C2842494|T037|AB|S43.396A|ICD10CM|Dislocation of oth prt unsp shoulder girdle, init encntr|Dislocation of oth prt unsp shoulder girdle, init encntr +C2842494|T037|PT|S43.396A|ICD10CM|Dislocation of other parts of unspecified shoulder girdle, initial encounter|Dislocation of other parts of unspecified shoulder girdle, initial encounter +C2842495|T037|AB|S43.396D|ICD10CM|Dislocation of oth prt unsp shoulder girdle, subs encntr|Dislocation of oth prt unsp shoulder girdle, subs encntr +C2842495|T037|PT|S43.396D|ICD10CM|Dislocation of other parts of unspecified shoulder girdle, subsequent encounter|Dislocation of other parts of unspecified shoulder girdle, subsequent encounter +C2842496|T037|AB|S43.396S|ICD10CM|Dislocation of other parts of unsp shoulder girdle, sequela|Dislocation of other parts of unsp shoulder girdle, sequela +C2842496|T037|PT|S43.396S|ICD10CM|Dislocation of other parts of unspecified shoulder girdle, sequela|Dislocation of other parts of unspecified shoulder girdle, sequela +C0392089|T037|PT|S43.4|ICD10|Sprain and strain of shoulder joint|Sprain and strain of shoulder joint +C0272869|T037|HT|S43.4|ICD10CM|Sprain of shoulder joint|Sprain of shoulder joint +C0272869|T037|AB|S43.4|ICD10CM|Sprain of shoulder joint|Sprain of shoulder joint +C2842497|T037|AB|S43.40|ICD10CM|Unspecified sprain of shoulder joint|Unspecified sprain of shoulder joint +C2842497|T037|HT|S43.40|ICD10CM|Unspecified sprain of shoulder joint|Unspecified sprain of shoulder joint +C2842498|T037|AB|S43.401|ICD10CM|Unspecified sprain of right shoulder joint|Unspecified sprain of right shoulder joint +C2842498|T037|HT|S43.401|ICD10CM|Unspecified sprain of right shoulder joint|Unspecified sprain of right shoulder joint +C2842499|T037|AB|S43.401A|ICD10CM|Unspecified sprain of right shoulder joint, init encntr|Unspecified sprain of right shoulder joint, init encntr +C2842499|T037|PT|S43.401A|ICD10CM|Unspecified sprain of right shoulder joint, initial encounter|Unspecified sprain of right shoulder joint, initial encounter +C2842500|T037|AB|S43.401D|ICD10CM|Unspecified sprain of right shoulder joint, subs encntr|Unspecified sprain of right shoulder joint, subs encntr +C2842500|T037|PT|S43.401D|ICD10CM|Unspecified sprain of right shoulder joint, subsequent encounter|Unspecified sprain of right shoulder joint, subsequent encounter +C2842501|T037|PT|S43.401S|ICD10CM|Unspecified sprain of right shoulder joint, sequela|Unspecified sprain of right shoulder joint, sequela +C2842501|T037|AB|S43.401S|ICD10CM|Unspecified sprain of right shoulder joint, sequela|Unspecified sprain of right shoulder joint, sequela +C2842502|T037|AB|S43.402|ICD10CM|Unspecified sprain of left shoulder joint|Unspecified sprain of left shoulder joint +C2842502|T037|HT|S43.402|ICD10CM|Unspecified sprain of left shoulder joint|Unspecified sprain of left shoulder joint +C2842503|T037|AB|S43.402A|ICD10CM|Unspecified sprain of left shoulder joint, initial encounter|Unspecified sprain of left shoulder joint, initial encounter +C2842503|T037|PT|S43.402A|ICD10CM|Unspecified sprain of left shoulder joint, initial encounter|Unspecified sprain of left shoulder joint, initial encounter +C2842504|T037|AB|S43.402D|ICD10CM|Unspecified sprain of left shoulder joint, subs encntr|Unspecified sprain of left shoulder joint, subs encntr +C2842504|T037|PT|S43.402D|ICD10CM|Unspecified sprain of left shoulder joint, subsequent encounter|Unspecified sprain of left shoulder joint, subsequent encounter +C2842505|T037|PT|S43.402S|ICD10CM|Unspecified sprain of left shoulder joint, sequela|Unspecified sprain of left shoulder joint, sequela +C2842505|T037|AB|S43.402S|ICD10CM|Unspecified sprain of left shoulder joint, sequela|Unspecified sprain of left shoulder joint, sequela +C2842506|T037|AB|S43.409|ICD10CM|Unspecified sprain of unspecified shoulder joint|Unspecified sprain of unspecified shoulder joint +C2842506|T037|HT|S43.409|ICD10CM|Unspecified sprain of unspecified shoulder joint|Unspecified sprain of unspecified shoulder joint +C2842507|T037|AB|S43.409A|ICD10CM|Unsp sprain of unspecified shoulder joint, init encntr|Unsp sprain of unspecified shoulder joint, init encntr +C2842507|T037|PT|S43.409A|ICD10CM|Unspecified sprain of unspecified shoulder joint, initial encounter|Unspecified sprain of unspecified shoulder joint, initial encounter +C2842508|T037|AB|S43.409D|ICD10CM|Unsp sprain of unspecified shoulder joint, subs encntr|Unsp sprain of unspecified shoulder joint, subs encntr +C2842508|T037|PT|S43.409D|ICD10CM|Unspecified sprain of unspecified shoulder joint, subsequent encounter|Unspecified sprain of unspecified shoulder joint, subsequent encounter +C2842509|T037|PT|S43.409S|ICD10CM|Unspecified sprain of unspecified shoulder joint, sequela|Unspecified sprain of unspecified shoulder joint, sequela +C2842509|T037|AB|S43.409S|ICD10CM|Unspecified sprain of unspecified shoulder joint, sequela|Unspecified sprain of unspecified shoulder joint, sequela +C0435003|T037|AB|S43.41|ICD10CM|Sprain of coracohumeral (ligament)|Sprain of coracohumeral (ligament) +C0435003|T037|HT|S43.41|ICD10CM|Sprain of coracohumeral (ligament)|Sprain of coracohumeral (ligament) +C2842510|T037|AB|S43.411|ICD10CM|Sprain of right coracohumeral (ligament)|Sprain of right coracohumeral (ligament) +C2842510|T037|HT|S43.411|ICD10CM|Sprain of right coracohumeral (ligament)|Sprain of right coracohumeral (ligament) +C2842511|T037|AB|S43.411A|ICD10CM|Sprain of right coracohumeral (ligament), initial encounter|Sprain of right coracohumeral (ligament), initial encounter +C2842511|T037|PT|S43.411A|ICD10CM|Sprain of right coracohumeral (ligament), initial encounter|Sprain of right coracohumeral (ligament), initial encounter +C2842512|T037|AB|S43.411D|ICD10CM|Sprain of right coracohumeral (ligament), subs encntr|Sprain of right coracohumeral (ligament), subs encntr +C2842512|T037|PT|S43.411D|ICD10CM|Sprain of right coracohumeral (ligament), subsequent encounter|Sprain of right coracohumeral (ligament), subsequent encounter +C2842513|T037|AB|S43.411S|ICD10CM|Sprain of right coracohumeral (ligament), sequela|Sprain of right coracohumeral (ligament), sequela +C2842513|T037|PT|S43.411S|ICD10CM|Sprain of right coracohumeral (ligament), sequela|Sprain of right coracohumeral (ligament), sequela +C2842514|T037|AB|S43.412|ICD10CM|Sprain of left coracohumeral (ligament)|Sprain of left coracohumeral (ligament) +C2842514|T037|HT|S43.412|ICD10CM|Sprain of left coracohumeral (ligament)|Sprain of left coracohumeral (ligament) +C2842515|T037|AB|S43.412A|ICD10CM|Sprain of left coracohumeral (ligament), initial encounter|Sprain of left coracohumeral (ligament), initial encounter +C2842515|T037|PT|S43.412A|ICD10CM|Sprain of left coracohumeral (ligament), initial encounter|Sprain of left coracohumeral (ligament), initial encounter +C2842516|T037|AB|S43.412D|ICD10CM|Sprain of left coracohumeral (ligament), subs encntr|Sprain of left coracohumeral (ligament), subs encntr +C2842516|T037|PT|S43.412D|ICD10CM|Sprain of left coracohumeral (ligament), subsequent encounter|Sprain of left coracohumeral (ligament), subsequent encounter +C2842517|T037|AB|S43.412S|ICD10CM|Sprain of left coracohumeral (ligament), sequela|Sprain of left coracohumeral (ligament), sequela +C2842517|T037|PT|S43.412S|ICD10CM|Sprain of left coracohumeral (ligament), sequela|Sprain of left coracohumeral (ligament), sequela +C2842518|T037|AB|S43.419|ICD10CM|Sprain of unspecified coracohumeral (ligament)|Sprain of unspecified coracohumeral (ligament) +C2842518|T037|HT|S43.419|ICD10CM|Sprain of unspecified coracohumeral (ligament)|Sprain of unspecified coracohumeral (ligament) +C2842519|T037|AB|S43.419A|ICD10CM|Sprain of unspecified coracohumeral (ligament), init encntr|Sprain of unspecified coracohumeral (ligament), init encntr +C2842519|T037|PT|S43.419A|ICD10CM|Sprain of unspecified coracohumeral (ligament), initial encounter|Sprain of unspecified coracohumeral (ligament), initial encounter +C2842520|T037|AB|S43.419D|ICD10CM|Sprain of unspecified coracohumeral (ligament), subs encntr|Sprain of unspecified coracohumeral (ligament), subs encntr +C2842520|T037|PT|S43.419D|ICD10CM|Sprain of unspecified coracohumeral (ligament), subsequent encounter|Sprain of unspecified coracohumeral (ligament), subsequent encounter +C2842521|T037|AB|S43.419S|ICD10CM|Sprain of unspecified coracohumeral (ligament), sequela|Sprain of unspecified coracohumeral (ligament), sequela +C2842521|T037|PT|S43.419S|ICD10CM|Sprain of unspecified coracohumeral (ligament), sequela|Sprain of unspecified coracohumeral (ligament), sequela +C0434322|T037|AB|S43.42|ICD10CM|Sprain of rotator cuff capsule|Sprain of rotator cuff capsule +C0434322|T037|HT|S43.42|ICD10CM|Sprain of rotator cuff capsule|Sprain of rotator cuff capsule +C2211248|T037|HT|S43.421|ICD10CM|Sprain of right rotator cuff capsule|Sprain of right rotator cuff capsule +C2211248|T037|AB|S43.421|ICD10CM|Sprain of right rotator cuff capsule|Sprain of right rotator cuff capsule +C2842522|T037|AB|S43.421A|ICD10CM|Sprain of right rotator cuff capsule, initial encounter|Sprain of right rotator cuff capsule, initial encounter +C2842522|T037|PT|S43.421A|ICD10CM|Sprain of right rotator cuff capsule, initial encounter|Sprain of right rotator cuff capsule, initial encounter +C2842523|T037|AB|S43.421D|ICD10CM|Sprain of right rotator cuff capsule, subsequent encounter|Sprain of right rotator cuff capsule, subsequent encounter +C2842523|T037|PT|S43.421D|ICD10CM|Sprain of right rotator cuff capsule, subsequent encounter|Sprain of right rotator cuff capsule, subsequent encounter +C2842524|T037|AB|S43.421S|ICD10CM|Sprain of right rotator cuff capsule, sequela|Sprain of right rotator cuff capsule, sequela +C2842524|T037|PT|S43.421S|ICD10CM|Sprain of right rotator cuff capsule, sequela|Sprain of right rotator cuff capsule, sequela +C2211249|T037|HT|S43.422|ICD10CM|Sprain of left rotator cuff capsule|Sprain of left rotator cuff capsule +C2211249|T037|AB|S43.422|ICD10CM|Sprain of left rotator cuff capsule|Sprain of left rotator cuff capsule +C2842525|T037|AB|S43.422A|ICD10CM|Sprain of left rotator cuff capsule, initial encounter|Sprain of left rotator cuff capsule, initial encounter +C2842525|T037|PT|S43.422A|ICD10CM|Sprain of left rotator cuff capsule, initial encounter|Sprain of left rotator cuff capsule, initial encounter +C2842526|T037|AB|S43.422D|ICD10CM|Sprain of left rotator cuff capsule, subsequent encounter|Sprain of left rotator cuff capsule, subsequent encounter +C2842526|T037|PT|S43.422D|ICD10CM|Sprain of left rotator cuff capsule, subsequent encounter|Sprain of left rotator cuff capsule, subsequent encounter +C2842527|T037|AB|S43.422S|ICD10CM|Sprain of left rotator cuff capsule, sequela|Sprain of left rotator cuff capsule, sequela +C2842527|T037|PT|S43.422S|ICD10CM|Sprain of left rotator cuff capsule, sequela|Sprain of left rotator cuff capsule, sequela +C2842528|T037|AB|S43.429|ICD10CM|Sprain of unspecified rotator cuff capsule|Sprain of unspecified rotator cuff capsule +C2842528|T037|HT|S43.429|ICD10CM|Sprain of unspecified rotator cuff capsule|Sprain of unspecified rotator cuff capsule +C2842529|T037|AB|S43.429A|ICD10CM|Sprain of unspecified rotator cuff capsule, init encntr|Sprain of unspecified rotator cuff capsule, init encntr +C2842529|T037|PT|S43.429A|ICD10CM|Sprain of unspecified rotator cuff capsule, initial encounter|Sprain of unspecified rotator cuff capsule, initial encounter +C2842530|T037|AB|S43.429D|ICD10CM|Sprain of unspecified rotator cuff capsule, subs encntr|Sprain of unspecified rotator cuff capsule, subs encntr +C2842530|T037|PT|S43.429D|ICD10CM|Sprain of unspecified rotator cuff capsule, subsequent encounter|Sprain of unspecified rotator cuff capsule, subsequent encounter +C2842531|T037|AB|S43.429S|ICD10CM|Sprain of unspecified rotator cuff capsule, sequela|Sprain of unspecified rotator cuff capsule, sequela +C2842531|T037|PT|S43.429S|ICD10CM|Sprain of unspecified rotator cuff capsule, sequela|Sprain of unspecified rotator cuff capsule, sequela +C0949191|T047|ET|S43.43|ICD10CM|SLAP lesion|SLAP lesion +C0949149|T037|HT|S43.43|ICD10CM|Superior glenoid labrum lesion|Superior glenoid labrum lesion +C0949149|T037|AB|S43.43|ICD10CM|Superior glenoid labrum lesion|Superior glenoid labrum lesion +C2842532|T037|AB|S43.431|ICD10CM|Superior glenoid labrum lesion of right shoulder|Superior glenoid labrum lesion of right shoulder +C2842532|T037|HT|S43.431|ICD10CM|Superior glenoid labrum lesion of right shoulder|Superior glenoid labrum lesion of right shoulder +C2842533|T037|AB|S43.431A|ICD10CM|Superior glenoid labrum lesion of right shoulder, init|Superior glenoid labrum lesion of right shoulder, init +C2842533|T037|PT|S43.431A|ICD10CM|Superior glenoid labrum lesion of right shoulder, initial encounter|Superior glenoid labrum lesion of right shoulder, initial encounter +C2842534|T037|AB|S43.431D|ICD10CM|Superior glenoid labrum lesion of right shoulder, subs|Superior glenoid labrum lesion of right shoulder, subs +C2842534|T037|PT|S43.431D|ICD10CM|Superior glenoid labrum lesion of right shoulder, subsequent encounter|Superior glenoid labrum lesion of right shoulder, subsequent encounter +C2842535|T037|AB|S43.431S|ICD10CM|Superior glenoid labrum lesion of right shoulder, sequela|Superior glenoid labrum lesion of right shoulder, sequela +C2842535|T037|PT|S43.431S|ICD10CM|Superior glenoid labrum lesion of right shoulder, sequela|Superior glenoid labrum lesion of right shoulder, sequela +C2842536|T037|AB|S43.432|ICD10CM|Superior glenoid labrum lesion of left shoulder|Superior glenoid labrum lesion of left shoulder +C2842536|T037|HT|S43.432|ICD10CM|Superior glenoid labrum lesion of left shoulder|Superior glenoid labrum lesion of left shoulder +C2842537|T037|AB|S43.432A|ICD10CM|Superior glenoid labrum lesion of left shoulder, init encntr|Superior glenoid labrum lesion of left shoulder, init encntr +C2842537|T037|PT|S43.432A|ICD10CM|Superior glenoid labrum lesion of left shoulder, initial encounter|Superior glenoid labrum lesion of left shoulder, initial encounter +C2842538|T037|AB|S43.432D|ICD10CM|Superior glenoid labrum lesion of left shoulder, subs encntr|Superior glenoid labrum lesion of left shoulder, subs encntr +C2842538|T037|PT|S43.432D|ICD10CM|Superior glenoid labrum lesion of left shoulder, subsequent encounter|Superior glenoid labrum lesion of left shoulder, subsequent encounter +C2842539|T037|AB|S43.432S|ICD10CM|Superior glenoid labrum lesion of left shoulder, sequela|Superior glenoid labrum lesion of left shoulder, sequela +C2842539|T037|PT|S43.432S|ICD10CM|Superior glenoid labrum lesion of left shoulder, sequela|Superior glenoid labrum lesion of left shoulder, sequela +C2842540|T037|AB|S43.439|ICD10CM|Superior glenoid labrum lesion of unspecified shoulder|Superior glenoid labrum lesion of unspecified shoulder +C2842540|T037|HT|S43.439|ICD10CM|Superior glenoid labrum lesion of unspecified shoulder|Superior glenoid labrum lesion of unspecified shoulder +C2842541|T037|AB|S43.439A|ICD10CM|Superior glenoid labrum lesion of unsp shoulder, init encntr|Superior glenoid labrum lesion of unsp shoulder, init encntr +C2842541|T037|PT|S43.439A|ICD10CM|Superior glenoid labrum lesion of unspecified shoulder, initial encounter|Superior glenoid labrum lesion of unspecified shoulder, initial encounter +C2842542|T037|AB|S43.439D|ICD10CM|Superior glenoid labrum lesion of unsp shoulder, subs encntr|Superior glenoid labrum lesion of unsp shoulder, subs encntr +C2842542|T037|PT|S43.439D|ICD10CM|Superior glenoid labrum lesion of unspecified shoulder, subsequent encounter|Superior glenoid labrum lesion of unspecified shoulder, subsequent encounter +C2842543|T037|AB|S43.439S|ICD10CM|Superior glenoid labrum lesion of unsp shoulder, sequela|Superior glenoid labrum lesion of unsp shoulder, sequela +C2842543|T037|PT|S43.439S|ICD10CM|Superior glenoid labrum lesion of unspecified shoulder, sequela|Superior glenoid labrum lesion of unspecified shoulder, sequela +C2842544|T037|AB|S43.49|ICD10CM|Other sprain of shoulder joint|Other sprain of shoulder joint +C2842544|T037|HT|S43.49|ICD10CM|Other sprain of shoulder joint|Other sprain of shoulder joint +C2842545|T037|AB|S43.491|ICD10CM|Other sprain of right shoulder joint|Other sprain of right shoulder joint +C2842545|T037|HT|S43.491|ICD10CM|Other sprain of right shoulder joint|Other sprain of right shoulder joint +C2842546|T037|PT|S43.491A|ICD10CM|Other sprain of right shoulder joint, initial encounter|Other sprain of right shoulder joint, initial encounter +C2842546|T037|AB|S43.491A|ICD10CM|Other sprain of right shoulder joint, initial encounter|Other sprain of right shoulder joint, initial encounter +C2842547|T037|PT|S43.491D|ICD10CM|Other sprain of right shoulder joint, subsequent encounter|Other sprain of right shoulder joint, subsequent encounter +C2842547|T037|AB|S43.491D|ICD10CM|Other sprain of right shoulder joint, subsequent encounter|Other sprain of right shoulder joint, subsequent encounter +C2842548|T037|PT|S43.491S|ICD10CM|Other sprain of right shoulder joint, sequela|Other sprain of right shoulder joint, sequela +C2842548|T037|AB|S43.491S|ICD10CM|Other sprain of right shoulder joint, sequela|Other sprain of right shoulder joint, sequela +C2842549|T037|AB|S43.492|ICD10CM|Other sprain of left shoulder joint|Other sprain of left shoulder joint +C2842549|T037|HT|S43.492|ICD10CM|Other sprain of left shoulder joint|Other sprain of left shoulder joint +C2842550|T037|AB|S43.492A|ICD10CM|Other sprain of left shoulder joint, initial encounter|Other sprain of left shoulder joint, initial encounter +C2842550|T037|PT|S43.492A|ICD10CM|Other sprain of left shoulder joint, initial encounter|Other sprain of left shoulder joint, initial encounter +C2842551|T037|PT|S43.492D|ICD10CM|Other sprain of left shoulder joint, subsequent encounter|Other sprain of left shoulder joint, subsequent encounter +C2842551|T037|AB|S43.492D|ICD10CM|Other sprain of left shoulder joint, subsequent encounter|Other sprain of left shoulder joint, subsequent encounter +C2842552|T037|PT|S43.492S|ICD10CM|Other sprain of left shoulder joint, sequela|Other sprain of left shoulder joint, sequela +C2842552|T037|AB|S43.492S|ICD10CM|Other sprain of left shoulder joint, sequela|Other sprain of left shoulder joint, sequela +C2842553|T037|AB|S43.499|ICD10CM|Other sprain of unspecified shoulder joint|Other sprain of unspecified shoulder joint +C2842553|T037|HT|S43.499|ICD10CM|Other sprain of unspecified shoulder joint|Other sprain of unspecified shoulder joint +C2842554|T037|AB|S43.499A|ICD10CM|Other sprain of unspecified shoulder joint, init encntr|Other sprain of unspecified shoulder joint, init encntr +C2842554|T037|PT|S43.499A|ICD10CM|Other sprain of unspecified shoulder joint, initial encounter|Other sprain of unspecified shoulder joint, initial encounter +C2842555|T037|AB|S43.499D|ICD10CM|Other sprain of unspecified shoulder joint, subs encntr|Other sprain of unspecified shoulder joint, subs encntr +C2842555|T037|PT|S43.499D|ICD10CM|Other sprain of unspecified shoulder joint, subsequent encounter|Other sprain of unspecified shoulder joint, subsequent encounter +C2842556|T037|PT|S43.499S|ICD10CM|Other sprain of unspecified shoulder joint, sequela|Other sprain of unspecified shoulder joint, sequela +C2842556|T037|AB|S43.499S|ICD10CM|Other sprain of unspecified shoulder joint, sequela|Other sprain of unspecified shoulder joint, sequela +C0392081|T037|PT|S43.5|ICD10|Sprain and strain of acromioclavicular joint|Sprain and strain of acromioclavicular joint +C0272870|T037|HT|S43.5|ICD10CM|Sprain of acromioclavicular joint|Sprain of acromioclavicular joint +C0272870|T037|AB|S43.5|ICD10CM|Sprain of acromioclavicular joint|Sprain of acromioclavicular joint +C0272870|T037|ET|S43.5|ICD10CM|Sprain of acromioclavicular ligament|Sprain of acromioclavicular ligament +C2842557|T037|AB|S43.50|ICD10CM|Sprain of unspecified acromioclavicular joint|Sprain of unspecified acromioclavicular joint +C2842557|T037|HT|S43.50|ICD10CM|Sprain of unspecified acromioclavicular joint|Sprain of unspecified acromioclavicular joint +C2977903|T037|AB|S43.50XA|ICD10CM|Sprain of unspecified acromioclavicular joint, init encntr|Sprain of unspecified acromioclavicular joint, init encntr +C2977903|T037|PT|S43.50XA|ICD10CM|Sprain of unspecified acromioclavicular joint, initial encounter|Sprain of unspecified acromioclavicular joint, initial encounter +C2977904|T037|AB|S43.50XD|ICD10CM|Sprain of unspecified acromioclavicular joint, subs encntr|Sprain of unspecified acromioclavicular joint, subs encntr +C2977904|T037|PT|S43.50XD|ICD10CM|Sprain of unspecified acromioclavicular joint, subsequent encounter|Sprain of unspecified acromioclavicular joint, subsequent encounter +C2977905|T037|PT|S43.50XS|ICD10CM|Sprain of unspecified acromioclavicular joint, sequela|Sprain of unspecified acromioclavicular joint, sequela +C2977905|T037|AB|S43.50XS|ICD10CM|Sprain of unspecified acromioclavicular joint, sequela|Sprain of unspecified acromioclavicular joint, sequela +C2211238|T037|AB|S43.51|ICD10CM|Sprain of right acromioclavicular joint|Sprain of right acromioclavicular joint +C2211238|T037|HT|S43.51|ICD10CM|Sprain of right acromioclavicular joint|Sprain of right acromioclavicular joint +C2842561|T037|PT|S43.51XA|ICD10CM|Sprain of right acromioclavicular joint, initial encounter|Sprain of right acromioclavicular joint, initial encounter +C2842561|T037|AB|S43.51XA|ICD10CM|Sprain of right acromioclavicular joint, initial encounter|Sprain of right acromioclavicular joint, initial encounter +C2842562|T037|AB|S43.51XD|ICD10CM|Sprain of right acromioclavicular joint, subs encntr|Sprain of right acromioclavicular joint, subs encntr +C2842562|T037|PT|S43.51XD|ICD10CM|Sprain of right acromioclavicular joint, subsequent encounter|Sprain of right acromioclavicular joint, subsequent encounter +C2842563|T037|PT|S43.51XS|ICD10CM|Sprain of right acromioclavicular joint, sequela|Sprain of right acromioclavicular joint, sequela +C2842563|T037|AB|S43.51XS|ICD10CM|Sprain of right acromioclavicular joint, sequela|Sprain of right acromioclavicular joint, sequela +C2211239|T037|AB|S43.52|ICD10CM|Sprain of left acromioclavicular joint|Sprain of left acromioclavicular joint +C2211239|T037|HT|S43.52|ICD10CM|Sprain of left acromioclavicular joint|Sprain of left acromioclavicular joint +C2842564|T037|PT|S43.52XA|ICD10CM|Sprain of left acromioclavicular joint, initial encounter|Sprain of left acromioclavicular joint, initial encounter +C2842564|T037|AB|S43.52XA|ICD10CM|Sprain of left acromioclavicular joint, initial encounter|Sprain of left acromioclavicular joint, initial encounter +C2842565|T037|AB|S43.52XD|ICD10CM|Sprain of left acromioclavicular joint, subsequent encounter|Sprain of left acromioclavicular joint, subsequent encounter +C2842565|T037|PT|S43.52XD|ICD10CM|Sprain of left acromioclavicular joint, subsequent encounter|Sprain of left acromioclavicular joint, subsequent encounter +C2842566|T037|PT|S43.52XS|ICD10CM|Sprain of left acromioclavicular joint, sequela|Sprain of left acromioclavicular joint, sequela +C2842566|T037|AB|S43.52XS|ICD10CM|Sprain of left acromioclavicular joint, sequela|Sprain of left acromioclavicular joint, sequela +C0272920|T037|PT|S43.6|ICD10|Sprain and strain of sternoclavicular joint|Sprain and strain of sternoclavicular joint +C0272920|T037|AB|S43.6|ICD10CM|Sprain of sternoclavicular joint|Sprain of sternoclavicular joint +C0272920|T037|HT|S43.6|ICD10CM|Sprain of sternoclavicular joint|Sprain of sternoclavicular joint +C2842567|T037|AB|S43.60|ICD10CM|Sprain of unspecified sternoclavicular joint|Sprain of unspecified sternoclavicular joint +C2842567|T037|HT|S43.60|ICD10CM|Sprain of unspecified sternoclavicular joint|Sprain of unspecified sternoclavicular joint +C2977906|T037|AB|S43.60XA|ICD10CM|Sprain of unspecified sternoclavicular joint, init encntr|Sprain of unspecified sternoclavicular joint, init encntr +C2977906|T037|PT|S43.60XA|ICD10CM|Sprain of unspecified sternoclavicular joint, initial encounter|Sprain of unspecified sternoclavicular joint, initial encounter +C2977907|T037|AB|S43.60XD|ICD10CM|Sprain of unspecified sternoclavicular joint, subs encntr|Sprain of unspecified sternoclavicular joint, subs encntr +C2977907|T037|PT|S43.60XD|ICD10CM|Sprain of unspecified sternoclavicular joint, subsequent encounter|Sprain of unspecified sternoclavicular joint, subsequent encounter +C2977908|T037|AB|S43.60XS|ICD10CM|Sprain of unspecified sternoclavicular joint, sequela|Sprain of unspecified sternoclavicular joint, sequela +C2977908|T037|PT|S43.60XS|ICD10CM|Sprain of unspecified sternoclavicular joint, sequela|Sprain of unspecified sternoclavicular joint, sequela +C2842571|T037|AB|S43.61|ICD10CM|Sprain of right sternoclavicular joint|Sprain of right sternoclavicular joint +C2842571|T037|HT|S43.61|ICD10CM|Sprain of right sternoclavicular joint|Sprain of right sternoclavicular joint +C2842572|T037|AB|S43.61XA|ICD10CM|Sprain of right sternoclavicular joint, initial encounter|Sprain of right sternoclavicular joint, initial encounter +C2842572|T037|PT|S43.61XA|ICD10CM|Sprain of right sternoclavicular joint, initial encounter|Sprain of right sternoclavicular joint, initial encounter +C2842573|T037|AB|S43.61XD|ICD10CM|Sprain of right sternoclavicular joint, subsequent encounter|Sprain of right sternoclavicular joint, subsequent encounter +C2842573|T037|PT|S43.61XD|ICD10CM|Sprain of right sternoclavicular joint, subsequent encounter|Sprain of right sternoclavicular joint, subsequent encounter +C2842574|T037|AB|S43.61XS|ICD10CM|Sprain of right sternoclavicular joint, sequela|Sprain of right sternoclavicular joint, sequela +C2842574|T037|PT|S43.61XS|ICD10CM|Sprain of right sternoclavicular joint, sequela|Sprain of right sternoclavicular joint, sequela +C2842575|T037|AB|S43.62|ICD10CM|Sprain of left sternoclavicular joint|Sprain of left sternoclavicular joint +C2842575|T037|HT|S43.62|ICD10CM|Sprain of left sternoclavicular joint|Sprain of left sternoclavicular joint +C2842576|T037|AB|S43.62XA|ICD10CM|Sprain of left sternoclavicular joint, initial encounter|Sprain of left sternoclavicular joint, initial encounter +C2842576|T037|PT|S43.62XA|ICD10CM|Sprain of left sternoclavicular joint, initial encounter|Sprain of left sternoclavicular joint, initial encounter +C2842577|T037|AB|S43.62XD|ICD10CM|Sprain of left sternoclavicular joint, subsequent encounter|Sprain of left sternoclavicular joint, subsequent encounter +C2842577|T037|PT|S43.62XD|ICD10CM|Sprain of left sternoclavicular joint, subsequent encounter|Sprain of left sternoclavicular joint, subsequent encounter +C2842578|T037|AB|S43.62XS|ICD10CM|Sprain of left sternoclavicular joint, sequela|Sprain of left sternoclavicular joint, sequela +C2842578|T037|PT|S43.62XS|ICD10CM|Sprain of left sternoclavicular joint, sequela|Sprain of left sternoclavicular joint, sequela +C0478275|T037|PT|S43.7|ICD10|Sprain and strain of other and unspecified parts of shoulder girdle|Sprain and strain of other and unspecified parts of shoulder girdle +C2842579|T037|AB|S43.8|ICD10CM|Sprain of other specified parts of shoulder girdle|Sprain of other specified parts of shoulder girdle +C2842579|T037|HT|S43.8|ICD10CM|Sprain of other specified parts of shoulder girdle|Sprain of other specified parts of shoulder girdle +C2842580|T037|AB|S43.80|ICD10CM|Sprain of oth parts of unspecified shoulder girdle|Sprain of oth parts of unspecified shoulder girdle +C2842580|T037|HT|S43.80|ICD10CM|Sprain of other specified parts of unspecified shoulder girdle|Sprain of other specified parts of unspecified shoulder girdle +C2977909|T037|AB|S43.80XA|ICD10CM|Sprain of oth parts of unsp shoulder girdle, init encntr|Sprain of oth parts of unsp shoulder girdle, init encntr +C2977909|T037|PT|S43.80XA|ICD10CM|Sprain of other specified parts of unspecified shoulder girdle, initial encounter|Sprain of other specified parts of unspecified shoulder girdle, initial encounter +C2977910|T037|AB|S43.80XD|ICD10CM|Sprain of oth parts of unsp shoulder girdle, subs encntr|Sprain of oth parts of unsp shoulder girdle, subs encntr +C2977910|T037|PT|S43.80XD|ICD10CM|Sprain of other specified parts of unspecified shoulder girdle, subsequent encounter|Sprain of other specified parts of unspecified shoulder girdle, subsequent encounter +C2977911|T037|AB|S43.80XS|ICD10CM|Sprain of oth parts of unspecified shoulder girdle, sequela|Sprain of oth parts of unspecified shoulder girdle, sequela +C2977911|T037|PT|S43.80XS|ICD10CM|Sprain of other specified parts of unspecified shoulder girdle, sequela|Sprain of other specified parts of unspecified shoulder girdle, sequela +C2842584|T037|AB|S43.81|ICD10CM|Sprain of other specified parts of right shoulder girdle|Sprain of other specified parts of right shoulder girdle +C2842584|T037|HT|S43.81|ICD10CM|Sprain of other specified parts of right shoulder girdle|Sprain of other specified parts of right shoulder girdle +C2977912|T037|AB|S43.81XA|ICD10CM|Sprain of oth parts of right shoulder girdle, init encntr|Sprain of oth parts of right shoulder girdle, init encntr +C2977912|T037|PT|S43.81XA|ICD10CM|Sprain of other specified parts of right shoulder girdle, initial encounter|Sprain of other specified parts of right shoulder girdle, initial encounter +C2977913|T037|AB|S43.81XD|ICD10CM|Sprain of oth parts of right shoulder girdle, subs encntr|Sprain of oth parts of right shoulder girdle, subs encntr +C2977913|T037|PT|S43.81XD|ICD10CM|Sprain of other specified parts of right shoulder girdle, subsequent encounter|Sprain of other specified parts of right shoulder girdle, subsequent encounter +C2977914|T037|AB|S43.81XS|ICD10CM|Sprain of oth parts of right shoulder girdle, sequela|Sprain of oth parts of right shoulder girdle, sequela +C2977914|T037|PT|S43.81XS|ICD10CM|Sprain of other specified parts of right shoulder girdle, sequela|Sprain of other specified parts of right shoulder girdle, sequela +C2842588|T037|AB|S43.82|ICD10CM|Sprain of other specified parts of left shoulder girdle|Sprain of other specified parts of left shoulder girdle +C2842588|T037|HT|S43.82|ICD10CM|Sprain of other specified parts of left shoulder girdle|Sprain of other specified parts of left shoulder girdle +C2977915|T037|AB|S43.82XA|ICD10CM|Sprain of oth parts of left shoulder girdle, init encntr|Sprain of oth parts of left shoulder girdle, init encntr +C2977915|T037|PT|S43.82XA|ICD10CM|Sprain of other specified parts of left shoulder girdle, initial encounter|Sprain of other specified parts of left shoulder girdle, initial encounter +C2977916|T037|AB|S43.82XD|ICD10CM|Sprain of oth parts of left shoulder girdle, subs encntr|Sprain of oth parts of left shoulder girdle, subs encntr +C2977916|T037|PT|S43.82XD|ICD10CM|Sprain of other specified parts of left shoulder girdle, subsequent encounter|Sprain of other specified parts of left shoulder girdle, subsequent encounter +C2977917|T037|AB|S43.82XS|ICD10CM|Sprain of oth parts of left shoulder girdle, sequela|Sprain of oth parts of left shoulder girdle, sequela +C2977917|T037|PT|S43.82XS|ICD10CM|Sprain of other specified parts of left shoulder girdle, sequela|Sprain of other specified parts of left shoulder girdle, sequela +C2842592|T037|AB|S43.9|ICD10CM|Sprain of unspecified parts of shoulder girdle|Sprain of unspecified parts of shoulder girdle +C2842592|T037|HT|S43.9|ICD10CM|Sprain of unspecified parts of shoulder girdle|Sprain of unspecified parts of shoulder girdle +C2842593|T037|ET|S43.90|ICD10CM|Sprain of shoulder girdle NOS|Sprain of shoulder girdle NOS +C2842594|T037|AB|S43.90|ICD10CM|Sprain of unspecified parts of unspecified shoulder girdle|Sprain of unspecified parts of unspecified shoulder girdle +C2842594|T037|HT|S43.90|ICD10CM|Sprain of unspecified parts of unspecified shoulder girdle|Sprain of unspecified parts of unspecified shoulder girdle +C2977918|T037|AB|S43.90XA|ICD10CM|Sprain of unsp parts of unsp shoulder girdle, init encntr|Sprain of unsp parts of unsp shoulder girdle, init encntr +C2977918|T037|PT|S43.90XA|ICD10CM|Sprain of unspecified parts of unspecified shoulder girdle, initial encounter|Sprain of unspecified parts of unspecified shoulder girdle, initial encounter +C2977919|T037|AB|S43.90XD|ICD10CM|Sprain of unsp parts of unsp shoulder girdle, subs encntr|Sprain of unsp parts of unsp shoulder girdle, subs encntr +C2977919|T037|PT|S43.90XD|ICD10CM|Sprain of unspecified parts of unspecified shoulder girdle, subsequent encounter|Sprain of unspecified parts of unspecified shoulder girdle, subsequent encounter +C2977920|T037|AB|S43.90XS|ICD10CM|Sprain of unsp parts of unspecified shoulder girdle, sequela|Sprain of unsp parts of unspecified shoulder girdle, sequela +C2977920|T037|PT|S43.90XS|ICD10CM|Sprain of unspecified parts of unspecified shoulder girdle, sequela|Sprain of unspecified parts of unspecified shoulder girdle, sequela +C2842598|T037|AB|S43.91|ICD10CM|Sprain of unspecified parts of right shoulder girdle|Sprain of unspecified parts of right shoulder girdle +C2842598|T037|HT|S43.91|ICD10CM|Sprain of unspecified parts of right shoulder girdle|Sprain of unspecified parts of right shoulder girdle +C2842599|T037|AB|S43.91XA|ICD10CM|Sprain of unsp parts of right shoulder girdle, init encntr|Sprain of unsp parts of right shoulder girdle, init encntr +C2842599|T037|PT|S43.91XA|ICD10CM|Sprain of unspecified parts of right shoulder girdle, initial encounter|Sprain of unspecified parts of right shoulder girdle, initial encounter +C2842600|T037|AB|S43.91XD|ICD10CM|Sprain of unsp parts of right shoulder girdle, subs encntr|Sprain of unsp parts of right shoulder girdle, subs encntr +C2842600|T037|PT|S43.91XD|ICD10CM|Sprain of unspecified parts of right shoulder girdle, subsequent encounter|Sprain of unspecified parts of right shoulder girdle, subsequent encounter +C2842601|T037|AB|S43.91XS|ICD10CM|Sprain of unsp parts of right shoulder girdle, sequela|Sprain of unsp parts of right shoulder girdle, sequela +C2842601|T037|PT|S43.91XS|ICD10CM|Sprain of unspecified parts of right shoulder girdle, sequela|Sprain of unspecified parts of right shoulder girdle, sequela +C2842602|T037|AB|S43.92|ICD10CM|Sprain of unspecified parts of left shoulder girdle|Sprain of unspecified parts of left shoulder girdle +C2842602|T037|HT|S43.92|ICD10CM|Sprain of unspecified parts of left shoulder girdle|Sprain of unspecified parts of left shoulder girdle +C2842603|T037|AB|S43.92XA|ICD10CM|Sprain of unsp parts of left shoulder girdle, init encntr|Sprain of unsp parts of left shoulder girdle, init encntr +C2842603|T037|PT|S43.92XA|ICD10CM|Sprain of unspecified parts of left shoulder girdle, initial encounter|Sprain of unspecified parts of left shoulder girdle, initial encounter +C2842604|T037|AB|S43.92XD|ICD10CM|Sprain of unsp parts of left shoulder girdle, subs encntr|Sprain of unsp parts of left shoulder girdle, subs encntr +C2842604|T037|PT|S43.92XD|ICD10CM|Sprain of unspecified parts of left shoulder girdle, subsequent encounter|Sprain of unspecified parts of left shoulder girdle, subsequent encounter +C2842605|T037|AB|S43.92XS|ICD10CM|Sprain of unspecified parts of left shoulder girdle, sequela|Sprain of unspecified parts of left shoulder girdle, sequela +C2842605|T037|PT|S43.92XS|ICD10CM|Sprain of unspecified parts of left shoulder girdle, sequela|Sprain of unspecified parts of left shoulder girdle, sequela +C0273529|T037|HT|S44|ICD10CM|Injury of nerves at shoulder and upper arm level|Injury of nerves at shoulder and upper arm level +C0273529|T037|AB|S44|ICD10CM|Injury of nerves at shoulder and upper arm level|Injury of nerves at shoulder and upper arm level +C0273529|T037|HT|S44|ICD10|Injury of nerves at shoulder and upper arm level|Injury of nerves at shoulder and upper arm level +C0451650|T037|HT|S44.0|ICD10CM|Injury of ulnar nerve at upper arm level|Injury of ulnar nerve at upper arm level +C0451650|T037|AB|S44.0|ICD10CM|Injury of ulnar nerve at upper arm level|Injury of ulnar nerve at upper arm level +C0451650|T037|PT|S44.0|ICD10|Injury of ulnar nerve at upper arm level|Injury of ulnar nerve at upper arm level +C2842606|T037|AB|S44.00|ICD10CM|Injury of ulnar nerve at upper arm level, unspecified arm|Injury of ulnar nerve at upper arm level, unspecified arm +C2842606|T037|HT|S44.00|ICD10CM|Injury of ulnar nerve at upper arm level, unspecified arm|Injury of ulnar nerve at upper arm level, unspecified arm +C2842607|T037|AB|S44.00XA|ICD10CM|Injury of ulnar nerve at upper arm level, unsp arm, init|Injury of ulnar nerve at upper arm level, unsp arm, init +C2842607|T037|PT|S44.00XA|ICD10CM|Injury of ulnar nerve at upper arm level, unspecified arm, initial encounter|Injury of ulnar nerve at upper arm level, unspecified arm, initial encounter +C2842608|T037|AB|S44.00XD|ICD10CM|Injury of ulnar nerve at upper arm level, unsp arm, subs|Injury of ulnar nerve at upper arm level, unsp arm, subs +C2842608|T037|PT|S44.00XD|ICD10CM|Injury of ulnar nerve at upper arm level, unspecified arm, subsequent encounter|Injury of ulnar nerve at upper arm level, unspecified arm, subsequent encounter +C2842609|T037|AB|S44.00XS|ICD10CM|Injury of ulnar nerve at upper arm level, unsp arm, sequela|Injury of ulnar nerve at upper arm level, unsp arm, sequela +C2842609|T037|PT|S44.00XS|ICD10CM|Injury of ulnar nerve at upper arm level, unspecified arm, sequela|Injury of ulnar nerve at upper arm level, unspecified arm, sequela +C2842610|T037|AB|S44.01|ICD10CM|Injury of ulnar nerve at upper arm level, right arm|Injury of ulnar nerve at upper arm level, right arm +C2842610|T037|HT|S44.01|ICD10CM|Injury of ulnar nerve at upper arm level, right arm|Injury of ulnar nerve at upper arm level, right arm +C2842611|T037|AB|S44.01XA|ICD10CM|Injury of ulnar nerve at upper arm level, right arm, init|Injury of ulnar nerve at upper arm level, right arm, init +C2842611|T037|PT|S44.01XA|ICD10CM|Injury of ulnar nerve at upper arm level, right arm, initial encounter|Injury of ulnar nerve at upper arm level, right arm, initial encounter +C2842612|T037|AB|S44.01XD|ICD10CM|Injury of ulnar nerve at upper arm level, right arm, subs|Injury of ulnar nerve at upper arm level, right arm, subs +C2842612|T037|PT|S44.01XD|ICD10CM|Injury of ulnar nerve at upper arm level, right arm, subsequent encounter|Injury of ulnar nerve at upper arm level, right arm, subsequent encounter +C2842613|T037|AB|S44.01XS|ICD10CM|Injury of ulnar nerve at upper arm level, right arm, sequela|Injury of ulnar nerve at upper arm level, right arm, sequela +C2842613|T037|PT|S44.01XS|ICD10CM|Injury of ulnar nerve at upper arm level, right arm, sequela|Injury of ulnar nerve at upper arm level, right arm, sequela +C2842614|T037|AB|S44.02|ICD10CM|Injury of ulnar nerve at upper arm level, left arm|Injury of ulnar nerve at upper arm level, left arm +C2842614|T037|HT|S44.02|ICD10CM|Injury of ulnar nerve at upper arm level, left arm|Injury of ulnar nerve at upper arm level, left arm +C2842615|T037|AB|S44.02XA|ICD10CM|Injury of ulnar nerve at upper arm level, left arm, init|Injury of ulnar nerve at upper arm level, left arm, init +C2842615|T037|PT|S44.02XA|ICD10CM|Injury of ulnar nerve at upper arm level, left arm, initial encounter|Injury of ulnar nerve at upper arm level, left arm, initial encounter +C2842616|T037|AB|S44.02XD|ICD10CM|Injury of ulnar nerve at upper arm level, left arm, subs|Injury of ulnar nerve at upper arm level, left arm, subs +C2842616|T037|PT|S44.02XD|ICD10CM|Injury of ulnar nerve at upper arm level, left arm, subsequent encounter|Injury of ulnar nerve at upper arm level, left arm, subsequent encounter +C2842617|T037|AB|S44.02XS|ICD10CM|Injury of ulnar nerve at upper arm level, left arm, sequela|Injury of ulnar nerve at upper arm level, left arm, sequela +C2842617|T037|PT|S44.02XS|ICD10CM|Injury of ulnar nerve at upper arm level, left arm, sequela|Injury of ulnar nerve at upper arm level, left arm, sequela +C0495863|T037|PT|S44.1|ICD10|Injury of median nerve at upper arm level|Injury of median nerve at upper arm level +C0495863|T037|HT|S44.1|ICD10CM|Injury of median nerve at upper arm level|Injury of median nerve at upper arm level +C0495863|T037|AB|S44.1|ICD10CM|Injury of median nerve at upper arm level|Injury of median nerve at upper arm level +C2842618|T037|AB|S44.10|ICD10CM|Injury of median nerve at upper arm level, unspecified arm|Injury of median nerve at upper arm level, unspecified arm +C2842618|T037|HT|S44.10|ICD10CM|Injury of median nerve at upper arm level, unspecified arm|Injury of median nerve at upper arm level, unspecified arm +C2842619|T037|AB|S44.10XA|ICD10CM|Injury of median nerve at upper arm level, unsp arm, init|Injury of median nerve at upper arm level, unsp arm, init +C2842619|T037|PT|S44.10XA|ICD10CM|Injury of median nerve at upper arm level, unspecified arm, initial encounter|Injury of median nerve at upper arm level, unspecified arm, initial encounter +C2842620|T037|AB|S44.10XD|ICD10CM|Injury of median nerve at upper arm level, unsp arm, subs|Injury of median nerve at upper arm level, unsp arm, subs +C2842620|T037|PT|S44.10XD|ICD10CM|Injury of median nerve at upper arm level, unspecified arm, subsequent encounter|Injury of median nerve at upper arm level, unspecified arm, subsequent encounter +C2842621|T037|AB|S44.10XS|ICD10CM|Injury of median nerve at upper arm level, unsp arm, sequela|Injury of median nerve at upper arm level, unsp arm, sequela +C2842621|T037|PT|S44.10XS|ICD10CM|Injury of median nerve at upper arm level, unspecified arm, sequela|Injury of median nerve at upper arm level, unspecified arm, sequela +C2842622|T037|AB|S44.11|ICD10CM|Injury of median nerve at upper arm level, right arm|Injury of median nerve at upper arm level, right arm +C2842622|T037|HT|S44.11|ICD10CM|Injury of median nerve at upper arm level, right arm|Injury of median nerve at upper arm level, right arm +C2842623|T037|AB|S44.11XA|ICD10CM|Injury of median nerve at upper arm level, right arm, init|Injury of median nerve at upper arm level, right arm, init +C2842623|T037|PT|S44.11XA|ICD10CM|Injury of median nerve at upper arm level, right arm, initial encounter|Injury of median nerve at upper arm level, right arm, initial encounter +C2842624|T037|AB|S44.11XD|ICD10CM|Injury of median nerve at upper arm level, right arm, subs|Injury of median nerve at upper arm level, right arm, subs +C2842624|T037|PT|S44.11XD|ICD10CM|Injury of median nerve at upper arm level, right arm, subsequent encounter|Injury of median nerve at upper arm level, right arm, subsequent encounter +C2842625|T037|PT|S44.11XS|ICD10CM|Injury of median nerve at upper arm level, right arm, sequela|Injury of median nerve at upper arm level, right arm, sequela +C2842625|T037|AB|S44.11XS|ICD10CM|Injury of median nrv at upper arm level, right arm, sequela|Injury of median nrv at upper arm level, right arm, sequela +C2842626|T037|AB|S44.12|ICD10CM|Injury of median nerve at upper arm level, left arm|Injury of median nerve at upper arm level, left arm +C2842626|T037|HT|S44.12|ICD10CM|Injury of median nerve at upper arm level, left arm|Injury of median nerve at upper arm level, left arm +C2842627|T037|AB|S44.12XA|ICD10CM|Injury of median nerve at upper arm level, left arm, init|Injury of median nerve at upper arm level, left arm, init +C2842627|T037|PT|S44.12XA|ICD10CM|Injury of median nerve at upper arm level, left arm, initial encounter|Injury of median nerve at upper arm level, left arm, initial encounter +C2842628|T037|AB|S44.12XD|ICD10CM|Injury of median nerve at upper arm level, left arm, subs|Injury of median nerve at upper arm level, left arm, subs +C2842628|T037|PT|S44.12XD|ICD10CM|Injury of median nerve at upper arm level, left arm, subsequent encounter|Injury of median nerve at upper arm level, left arm, subsequent encounter +C2842629|T037|AB|S44.12XS|ICD10CM|Injury of median nerve at upper arm level, left arm, sequela|Injury of median nerve at upper arm level, left arm, sequela +C2842629|T037|PT|S44.12XS|ICD10CM|Injury of median nerve at upper arm level, left arm, sequela|Injury of median nerve at upper arm level, left arm, sequela +C0495864|T037|HT|S44.2|ICD10CM|Injury of radial nerve at upper arm level|Injury of radial nerve at upper arm level +C0495864|T037|AB|S44.2|ICD10CM|Injury of radial nerve at upper arm level|Injury of radial nerve at upper arm level +C0495864|T037|PT|S44.2|ICD10|Injury of radial nerve at upper arm level|Injury of radial nerve at upper arm level +C2842630|T037|AB|S44.20|ICD10CM|Injury of radial nerve at upper arm level, unspecified arm|Injury of radial nerve at upper arm level, unspecified arm +C2842630|T037|HT|S44.20|ICD10CM|Injury of radial nerve at upper arm level, unspecified arm|Injury of radial nerve at upper arm level, unspecified arm +C2842631|T037|AB|S44.20XA|ICD10CM|Injury of radial nerve at upper arm level, unsp arm, init|Injury of radial nerve at upper arm level, unsp arm, init +C2842631|T037|PT|S44.20XA|ICD10CM|Injury of radial nerve at upper arm level, unspecified arm, initial encounter|Injury of radial nerve at upper arm level, unspecified arm, initial encounter +C2842632|T037|AB|S44.20XD|ICD10CM|Injury of radial nerve at upper arm level, unsp arm, subs|Injury of radial nerve at upper arm level, unsp arm, subs +C2842632|T037|PT|S44.20XD|ICD10CM|Injury of radial nerve at upper arm level, unspecified arm, subsequent encounter|Injury of radial nerve at upper arm level, unspecified arm, subsequent encounter +C2842633|T037|AB|S44.20XS|ICD10CM|Injury of radial nerve at upper arm level, unsp arm, sequela|Injury of radial nerve at upper arm level, unsp arm, sequela +C2842633|T037|PT|S44.20XS|ICD10CM|Injury of radial nerve at upper arm level, unspecified arm, sequela|Injury of radial nerve at upper arm level, unspecified arm, sequela +C2842634|T037|AB|S44.21|ICD10CM|Injury of radial nerve at upper arm level, right arm|Injury of radial nerve at upper arm level, right arm +C2842634|T037|HT|S44.21|ICD10CM|Injury of radial nerve at upper arm level, right arm|Injury of radial nerve at upper arm level, right arm +C2842635|T037|AB|S44.21XA|ICD10CM|Injury of radial nerve at upper arm level, right arm, init|Injury of radial nerve at upper arm level, right arm, init +C2842635|T037|PT|S44.21XA|ICD10CM|Injury of radial nerve at upper arm level, right arm, initial encounter|Injury of radial nerve at upper arm level, right arm, initial encounter +C2842636|T037|AB|S44.21XD|ICD10CM|Injury of radial nerve at upper arm level, right arm, subs|Injury of radial nerve at upper arm level, right arm, subs +C2842636|T037|PT|S44.21XD|ICD10CM|Injury of radial nerve at upper arm level, right arm, subsequent encounter|Injury of radial nerve at upper arm level, right arm, subsequent encounter +C2842637|T037|PT|S44.21XS|ICD10CM|Injury of radial nerve at upper arm level, right arm, sequela|Injury of radial nerve at upper arm level, right arm, sequela +C2842637|T037|AB|S44.21XS|ICD10CM|Injury of radial nrv at upper arm level, right arm, sequela|Injury of radial nrv at upper arm level, right arm, sequela +C2842638|T037|AB|S44.22|ICD10CM|Injury of radial nerve at upper arm level, left arm|Injury of radial nerve at upper arm level, left arm +C2842638|T037|HT|S44.22|ICD10CM|Injury of radial nerve at upper arm level, left arm|Injury of radial nerve at upper arm level, left arm +C2842639|T037|AB|S44.22XA|ICD10CM|Injury of radial nerve at upper arm level, left arm, init|Injury of radial nerve at upper arm level, left arm, init +C2842639|T037|PT|S44.22XA|ICD10CM|Injury of radial nerve at upper arm level, left arm, initial encounter|Injury of radial nerve at upper arm level, left arm, initial encounter +C2842640|T037|AB|S44.22XD|ICD10CM|Injury of radial nerve at upper arm level, left arm, subs|Injury of radial nerve at upper arm level, left arm, subs +C2842640|T037|PT|S44.22XD|ICD10CM|Injury of radial nerve at upper arm level, left arm, subsequent encounter|Injury of radial nerve at upper arm level, left arm, subsequent encounter +C2842641|T037|AB|S44.22XS|ICD10CM|Injury of radial nerve at upper arm level, left arm, sequela|Injury of radial nerve at upper arm level, left arm, sequela +C2842641|T037|PT|S44.22XS|ICD10CM|Injury of radial nerve at upper arm level, left arm, sequela|Injury of radial nerve at upper arm level, left arm, sequela +C0161456|T037|PT|S44.3|ICD10|Injury of axillary nerve|Injury of axillary nerve +C0161456|T037|HT|S44.3|ICD10CM|Injury of axillary nerve|Injury of axillary nerve +C0161456|T037|AB|S44.3|ICD10CM|Injury of axillary nerve|Injury of axillary nerve +C2842642|T037|AB|S44.30|ICD10CM|Injury of axillary nerve, unspecified arm|Injury of axillary nerve, unspecified arm +C2842642|T037|HT|S44.30|ICD10CM|Injury of axillary nerve, unspecified arm|Injury of axillary nerve, unspecified arm +C2842643|T037|AB|S44.30XA|ICD10CM|Injury of axillary nerve, unspecified arm, initial encounter|Injury of axillary nerve, unspecified arm, initial encounter +C2842643|T037|PT|S44.30XA|ICD10CM|Injury of axillary nerve, unspecified arm, initial encounter|Injury of axillary nerve, unspecified arm, initial encounter +C2842644|T037|AB|S44.30XD|ICD10CM|Injury of axillary nerve, unspecified arm, subs encntr|Injury of axillary nerve, unspecified arm, subs encntr +C2842644|T037|PT|S44.30XD|ICD10CM|Injury of axillary nerve, unspecified arm, subsequent encounter|Injury of axillary nerve, unspecified arm, subsequent encounter +C2842645|T037|AB|S44.30XS|ICD10CM|Injury of axillary nerve, unspecified arm, sequela|Injury of axillary nerve, unspecified arm, sequela +C2842645|T037|PT|S44.30XS|ICD10CM|Injury of axillary nerve, unspecified arm, sequela|Injury of axillary nerve, unspecified arm, sequela +C2842646|T037|AB|S44.31|ICD10CM|Injury of axillary nerve, right arm|Injury of axillary nerve, right arm +C2842646|T037|HT|S44.31|ICD10CM|Injury of axillary nerve, right arm|Injury of axillary nerve, right arm +C2842647|T037|AB|S44.31XA|ICD10CM|Injury of axillary nerve, right arm, initial encounter|Injury of axillary nerve, right arm, initial encounter +C2842647|T037|PT|S44.31XA|ICD10CM|Injury of axillary nerve, right arm, initial encounter|Injury of axillary nerve, right arm, initial encounter +C2842648|T037|AB|S44.31XD|ICD10CM|Injury of axillary nerve, right arm, subsequent encounter|Injury of axillary nerve, right arm, subsequent encounter +C2842648|T037|PT|S44.31XD|ICD10CM|Injury of axillary nerve, right arm, subsequent encounter|Injury of axillary nerve, right arm, subsequent encounter +C2842649|T037|AB|S44.31XS|ICD10CM|Injury of axillary nerve, right arm, sequela|Injury of axillary nerve, right arm, sequela +C2842649|T037|PT|S44.31XS|ICD10CM|Injury of axillary nerve, right arm, sequela|Injury of axillary nerve, right arm, sequela +C2842650|T037|AB|S44.32|ICD10CM|Injury of axillary nerve, left arm|Injury of axillary nerve, left arm +C2842650|T037|HT|S44.32|ICD10CM|Injury of axillary nerve, left arm|Injury of axillary nerve, left arm +C2842651|T037|AB|S44.32XA|ICD10CM|Injury of axillary nerve, left arm, initial encounter|Injury of axillary nerve, left arm, initial encounter +C2842651|T037|PT|S44.32XA|ICD10CM|Injury of axillary nerve, left arm, initial encounter|Injury of axillary nerve, left arm, initial encounter +C2842652|T037|AB|S44.32XD|ICD10CM|Injury of axillary nerve, left arm, subsequent encounter|Injury of axillary nerve, left arm, subsequent encounter +C2842652|T037|PT|S44.32XD|ICD10CM|Injury of axillary nerve, left arm, subsequent encounter|Injury of axillary nerve, left arm, subsequent encounter +C2842653|T037|AB|S44.32XS|ICD10CM|Injury of axillary nerve, left arm, sequela|Injury of axillary nerve, left arm, sequela +C2842653|T037|PT|S44.32XS|ICD10CM|Injury of axillary nerve, left arm, sequela|Injury of axillary nerve, left arm, sequela +C0161460|T037|HT|S44.4|ICD10CM|Injury of musculocutaneous nerve|Injury of musculocutaneous nerve +C0161460|T037|AB|S44.4|ICD10CM|Injury of musculocutaneous nerve|Injury of musculocutaneous nerve +C0161460|T037|PT|S44.4|ICD10|Injury of musculocutaneous nerve|Injury of musculocutaneous nerve +C2842654|T037|AB|S44.40|ICD10CM|Injury of musculocutaneous nerve, unspecified arm|Injury of musculocutaneous nerve, unspecified arm +C2842654|T037|HT|S44.40|ICD10CM|Injury of musculocutaneous nerve, unspecified arm|Injury of musculocutaneous nerve, unspecified arm +C2842655|T037|AB|S44.40XA|ICD10CM|Injury of musculocutaneous nerve, unsp arm, init encntr|Injury of musculocutaneous nerve, unsp arm, init encntr +C2842655|T037|PT|S44.40XA|ICD10CM|Injury of musculocutaneous nerve, unspecified arm, initial encounter|Injury of musculocutaneous nerve, unspecified arm, initial encounter +C2842656|T037|AB|S44.40XD|ICD10CM|Injury of musculocutaneous nerve, unsp arm, subs encntr|Injury of musculocutaneous nerve, unsp arm, subs encntr +C2842656|T037|PT|S44.40XD|ICD10CM|Injury of musculocutaneous nerve, unspecified arm, subsequent encounter|Injury of musculocutaneous nerve, unspecified arm, subsequent encounter +C2842657|T037|AB|S44.40XS|ICD10CM|Injury of musculocutaneous nerve, unspecified arm, sequela|Injury of musculocutaneous nerve, unspecified arm, sequela +C2842657|T037|PT|S44.40XS|ICD10CM|Injury of musculocutaneous nerve, unspecified arm, sequela|Injury of musculocutaneous nerve, unspecified arm, sequela +C2842658|T037|AB|S44.41|ICD10CM|Injury of musculocutaneous nerve, right arm|Injury of musculocutaneous nerve, right arm +C2842658|T037|HT|S44.41|ICD10CM|Injury of musculocutaneous nerve, right arm|Injury of musculocutaneous nerve, right arm +C2842659|T037|AB|S44.41XA|ICD10CM|Injury of musculocutaneous nerve, right arm, init encntr|Injury of musculocutaneous nerve, right arm, init encntr +C2842659|T037|PT|S44.41XA|ICD10CM|Injury of musculocutaneous nerve, right arm, initial encounter|Injury of musculocutaneous nerve, right arm, initial encounter +C2842660|T037|AB|S44.41XD|ICD10CM|Injury of musculocutaneous nerve, right arm, subs encntr|Injury of musculocutaneous nerve, right arm, subs encntr +C2842660|T037|PT|S44.41XD|ICD10CM|Injury of musculocutaneous nerve, right arm, subsequent encounter|Injury of musculocutaneous nerve, right arm, subsequent encounter +C2842661|T037|AB|S44.41XS|ICD10CM|Injury of musculocutaneous nerve, right arm, sequela|Injury of musculocutaneous nerve, right arm, sequela +C2842661|T037|PT|S44.41XS|ICD10CM|Injury of musculocutaneous nerve, right arm, sequela|Injury of musculocutaneous nerve, right arm, sequela +C2842662|T037|AB|S44.42|ICD10CM|Injury of musculocutaneous nerve, left arm|Injury of musculocutaneous nerve, left arm +C2842662|T037|HT|S44.42|ICD10CM|Injury of musculocutaneous nerve, left arm|Injury of musculocutaneous nerve, left arm +C2842663|T037|AB|S44.42XA|ICD10CM|Injury of musculocutaneous nerve, left arm, init encntr|Injury of musculocutaneous nerve, left arm, init encntr +C2842663|T037|PT|S44.42XA|ICD10CM|Injury of musculocutaneous nerve, left arm, initial encounter|Injury of musculocutaneous nerve, left arm, initial encounter +C2842664|T037|AB|S44.42XD|ICD10CM|Injury of musculocutaneous nerve, left arm, subs encntr|Injury of musculocutaneous nerve, left arm, subs encntr +C2842664|T037|PT|S44.42XD|ICD10CM|Injury of musculocutaneous nerve, left arm, subsequent encounter|Injury of musculocutaneous nerve, left arm, subsequent encounter +C2842665|T037|AB|S44.42XS|ICD10CM|Injury of musculocutaneous nerve, left arm, sequela|Injury of musculocutaneous nerve, left arm, sequela +C2842665|T037|PT|S44.42XS|ICD10CM|Injury of musculocutaneous nerve, left arm, sequela|Injury of musculocutaneous nerve, left arm, sequela +C0495865|T037|AB|S44.5|ICD10CM|Injury of cutaneous sensory nerve at shldr/up arm|Injury of cutaneous sensory nerve at shldr/up arm +C0495865|T037|HT|S44.5|ICD10CM|Injury of cutaneous sensory nerve at shoulder and upper arm level|Injury of cutaneous sensory nerve at shoulder and upper arm level +C0495865|T037|PT|S44.5|ICD10|Injury of cutaneous sensory nerve at shoulder and upper arm level|Injury of cutaneous sensory nerve at shoulder and upper arm level +C2842666|T037|AB|S44.50|ICD10CM|Injury of cutaneous sensory nerve at shldr/up arm, unsp arm|Injury of cutaneous sensory nerve at shldr/up arm, unsp arm +C2842666|T037|HT|S44.50|ICD10CM|Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm|Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm +C2842667|T037|AB|S44.50XA|ICD10CM|Inj cutan sensory nerve at shldr/up arm, unsp arm, init|Inj cutan sensory nerve at shldr/up arm, unsp arm, init +C2842668|T037|AB|S44.50XD|ICD10CM|Inj cutan sensory nerve at shldr/up arm, unsp arm, subs|Inj cutan sensory nerve at shldr/up arm, unsp arm, subs +C2842669|T037|AB|S44.50XS|ICD10CM|Inj cutan sensory nerve at shldr/up arm, unsp arm, sequela|Inj cutan sensory nerve at shldr/up arm, unsp arm, sequela +C2842669|T037|PT|S44.50XS|ICD10CM|Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm, sequela|Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm, sequela +C2842670|T037|AB|S44.51|ICD10CM|Injury of cutaneous sensory nerve at shldr/up arm, right arm|Injury of cutaneous sensory nerve at shldr/up arm, right arm +C2842670|T037|HT|S44.51|ICD10CM|Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm|Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm +C2842671|T037|AB|S44.51XA|ICD10CM|Inj cutan sensory nerve at shldr/up arm, right arm, init|Inj cutan sensory nerve at shldr/up arm, right arm, init +C2842671|T037|PT|S44.51XA|ICD10CM|Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm, initial encounter|Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm, initial encounter +C2842672|T037|AB|S44.51XD|ICD10CM|Inj cutan sensory nerve at shldr/up arm, right arm, subs|Inj cutan sensory nerve at shldr/up arm, right arm, subs +C2842672|T037|PT|S44.51XD|ICD10CM|Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm, subsequent encounter|Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm, subsequent encounter +C2842673|T037|AB|S44.51XS|ICD10CM|Inj cutan sensory nerve at shldr/up arm, right arm, sequela|Inj cutan sensory nerve at shldr/up arm, right arm, sequela +C2842673|T037|PT|S44.51XS|ICD10CM|Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm, sequela|Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm, sequela +C2842674|T037|AB|S44.52|ICD10CM|Injury of cutaneous sensory nerve at shldr/up arm, left arm|Injury of cutaneous sensory nerve at shldr/up arm, left arm +C2842674|T037|HT|S44.52|ICD10CM|Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm|Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm +C2842675|T037|AB|S44.52XA|ICD10CM|Inj cutan sensory nerve at shldr/up arm, left arm, init|Inj cutan sensory nerve at shldr/up arm, left arm, init +C2842675|T037|PT|S44.52XA|ICD10CM|Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, initial encounter|Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, initial encounter +C2842676|T037|AB|S44.52XD|ICD10CM|Inj cutan sensory nerve at shldr/up arm, left arm, subs|Inj cutan sensory nerve at shldr/up arm, left arm, subs +C2842676|T037|PT|S44.52XD|ICD10CM|Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, subsequent encounter|Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, subsequent encounter +C2842677|T037|AB|S44.52XS|ICD10CM|Inj cutan sensory nerve at shldr/up arm, left arm, sequela|Inj cutan sensory nerve at shldr/up arm, left arm, sequela +C2842677|T037|PT|S44.52XS|ICD10CM|Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, sequela|Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, sequela +C0451664|T037|PT|S44.7|ICD10|Injury of multiple nerves at shoulder and upper arm level|Injury of multiple nerves at shoulder and upper arm level +C0478276|T037|PT|S44.8|ICD10|Injury of other nerves at shoulder and upper arm level|Injury of other nerves at shoulder and upper arm level +C0478276|T037|HT|S44.8|ICD10CM|Injury of other nerves at shoulder and upper arm level|Injury of other nerves at shoulder and upper arm level +C0478276|T037|AB|S44.8|ICD10CM|Injury of other nerves at shoulder and upper arm level|Injury of other nerves at shoulder and upper arm level +C0478276|T037|HT|S44.8X|ICD10CM|Injury of other nerves at shoulder and upper arm level|Injury of other nerves at shoulder and upper arm level +C0478276|T037|AB|S44.8X|ICD10CM|Injury of other nerves at shoulder and upper arm level|Injury of other nerves at shoulder and upper arm level +C2842678|T037|AB|S44.8X1|ICD10CM|Injury of nerves at shoulder and upper arm level, right arm|Injury of nerves at shoulder and upper arm level, right arm +C2842678|T037|HT|S44.8X1|ICD10CM|Injury of other nerves at shoulder and upper arm level, right arm|Injury of other nerves at shoulder and upper arm level, right arm +C2842679|T037|AB|S44.8X1A|ICD10CM|Injury of nerves at shldr/up arm, right arm, init|Injury of nerves at shldr/up arm, right arm, init +C2842679|T037|PT|S44.8X1A|ICD10CM|Injury of other nerves at shoulder and upper arm level, right arm, initial encounter|Injury of other nerves at shoulder and upper arm level, right arm, initial encounter +C2842680|T037|AB|S44.8X1D|ICD10CM|Injury of nerves at shldr/up arm, right arm, subs|Injury of nerves at shldr/up arm, right arm, subs +C2842680|T037|PT|S44.8X1D|ICD10CM|Injury of other nerves at shoulder and upper arm level, right arm, subsequent encounter|Injury of other nerves at shoulder and upper arm level, right arm, subsequent encounter +C2842681|T037|AB|S44.8X1S|ICD10CM|Injury of nerves at shldr/up arm, right arm, sequela|Injury of nerves at shldr/up arm, right arm, sequela +C2842681|T037|PT|S44.8X1S|ICD10CM|Injury of other nerves at shoulder and upper arm level, right arm, sequela|Injury of other nerves at shoulder and upper arm level, right arm, sequela +C2842682|T037|AB|S44.8X2|ICD10CM|Injury of nerves at shoulder and upper arm level, left arm|Injury of nerves at shoulder and upper arm level, left arm +C2842682|T037|HT|S44.8X2|ICD10CM|Injury of other nerves at shoulder and upper arm level, left arm|Injury of other nerves at shoulder and upper arm level, left arm +C2842683|T037|AB|S44.8X2A|ICD10CM|Injury of nerves at shldr/up arm, left arm, init|Injury of nerves at shldr/up arm, left arm, init +C2842683|T037|PT|S44.8X2A|ICD10CM|Injury of other nerves at shoulder and upper arm level, left arm, initial encounter|Injury of other nerves at shoulder and upper arm level, left arm, initial encounter +C2842684|T037|AB|S44.8X2D|ICD10CM|Injury of nerves at shldr/up arm, left arm, subs|Injury of nerves at shldr/up arm, left arm, subs +C2842684|T037|PT|S44.8X2D|ICD10CM|Injury of other nerves at shoulder and upper arm level, left arm, subsequent encounter|Injury of other nerves at shoulder and upper arm level, left arm, subsequent encounter +C2842685|T037|AB|S44.8X2S|ICD10CM|Injury of nerves at shldr/up arm, left arm, sequela|Injury of nerves at shldr/up arm, left arm, sequela +C2842685|T037|PT|S44.8X2S|ICD10CM|Injury of other nerves at shoulder and upper arm level, left arm, sequela|Injury of other nerves at shoulder and upper arm level, left arm, sequela +C2842686|T037|AB|S44.8X9|ICD10CM|Injury of nerves at shoulder and upper arm level, unsp arm|Injury of nerves at shoulder and upper arm level, unsp arm +C2842686|T037|HT|S44.8X9|ICD10CM|Injury of other nerves at shoulder and upper arm level, unspecified arm|Injury of other nerves at shoulder and upper arm level, unspecified arm +C2842687|T037|AB|S44.8X9A|ICD10CM|Injury of nerves at shldr/up arm, unsp arm, init|Injury of nerves at shldr/up arm, unsp arm, init +C2842687|T037|PT|S44.8X9A|ICD10CM|Injury of other nerves at shoulder and upper arm level, unspecified arm, initial encounter|Injury of other nerves at shoulder and upper arm level, unspecified arm, initial encounter +C2842688|T037|AB|S44.8X9D|ICD10CM|Injury of nerves at shldr/up arm, unsp arm, subs|Injury of nerves at shldr/up arm, unsp arm, subs +C2842688|T037|PT|S44.8X9D|ICD10CM|Injury of other nerves at shoulder and upper arm level, unspecified arm, subsequent encounter|Injury of other nerves at shoulder and upper arm level, unspecified arm, subsequent encounter +C2842689|T037|AB|S44.8X9S|ICD10CM|Injury of nerves at shldr/up arm, unsp arm, sequela|Injury of nerves at shldr/up arm, unsp arm, sequela +C2842689|T037|PT|S44.8X9S|ICD10CM|Injury of other nerves at shoulder and upper arm level, unspecified arm, sequela|Injury of other nerves at shoulder and upper arm level, unspecified arm, sequela +C0273529|T037|PT|S44.9|ICD10|Injury of unspecified nerve at shoulder and upper arm level|Injury of unspecified nerve at shoulder and upper arm level +C0273529|T037|HT|S44.9|ICD10CM|Injury of unspecified nerve at shoulder and upper arm level|Injury of unspecified nerve at shoulder and upper arm level +C0273529|T037|AB|S44.9|ICD10CM|Injury of unspecified nerve at shoulder and upper arm level|Injury of unspecified nerve at shoulder and upper arm level +C2842690|T037|AB|S44.90|ICD10CM|Injury of unsp nerve at shldr/up arm, unsp arm|Injury of unsp nerve at shldr/up arm, unsp arm +C2842690|T037|HT|S44.90|ICD10CM|Injury of unspecified nerve at shoulder and upper arm level, unspecified arm|Injury of unspecified nerve at shoulder and upper arm level, unspecified arm +C2842691|T037|AB|S44.90XA|ICD10CM|Injury of unsp nerve at shldr/up arm, unsp arm, init|Injury of unsp nerve at shldr/up arm, unsp arm, init +C2842691|T037|PT|S44.90XA|ICD10CM|Injury of unspecified nerve at shoulder and upper arm level, unspecified arm, initial encounter|Injury of unspecified nerve at shoulder and upper arm level, unspecified arm, initial encounter +C2842692|T037|AB|S44.90XD|ICD10CM|Injury of unsp nerve at shldr/up arm, unsp arm, subs|Injury of unsp nerve at shldr/up arm, unsp arm, subs +C2842692|T037|PT|S44.90XD|ICD10CM|Injury of unspecified nerve at shoulder and upper arm level, unspecified arm, subsequent encounter|Injury of unspecified nerve at shoulder and upper arm level, unspecified arm, subsequent encounter +C2842693|T037|AB|S44.90XS|ICD10CM|Injury of unsp nerve at shldr/up arm, unsp arm, sequela|Injury of unsp nerve at shldr/up arm, unsp arm, sequela +C2842693|T037|PT|S44.90XS|ICD10CM|Injury of unspecified nerve at shoulder and upper arm level, unspecified arm, sequela|Injury of unspecified nerve at shoulder and upper arm level, unspecified arm, sequela +C2842694|T037|AB|S44.91|ICD10CM|Injury of unsp nerve at shldr/up arm, right arm|Injury of unsp nerve at shldr/up arm, right arm +C2842694|T037|HT|S44.91|ICD10CM|Injury of unspecified nerve at shoulder and upper arm level, right arm|Injury of unspecified nerve at shoulder and upper arm level, right arm +C2842695|T037|AB|S44.91XA|ICD10CM|Injury of unsp nerve at shldr/up arm, right arm, init|Injury of unsp nerve at shldr/up arm, right arm, init +C2842695|T037|PT|S44.91XA|ICD10CM|Injury of unspecified nerve at shoulder and upper arm level, right arm, initial encounter|Injury of unspecified nerve at shoulder and upper arm level, right arm, initial encounter +C2842696|T037|AB|S44.91XD|ICD10CM|Injury of unsp nerve at shldr/up arm, right arm, subs|Injury of unsp nerve at shldr/up arm, right arm, subs +C2842696|T037|PT|S44.91XD|ICD10CM|Injury of unspecified nerve at shoulder and upper arm level, right arm, subsequent encounter|Injury of unspecified nerve at shoulder and upper arm level, right arm, subsequent encounter +C2842697|T037|AB|S44.91XS|ICD10CM|Injury of unsp nerve at shldr/up arm, right arm, sequela|Injury of unsp nerve at shldr/up arm, right arm, sequela +C2842697|T037|PT|S44.91XS|ICD10CM|Injury of unspecified nerve at shoulder and upper arm level, right arm, sequela|Injury of unspecified nerve at shoulder and upper arm level, right arm, sequela +C2842698|T037|AB|S44.92|ICD10CM|Injury of unsp nerve at shldr/up arm, left arm|Injury of unsp nerve at shldr/up arm, left arm +C2842698|T037|HT|S44.92|ICD10CM|Injury of unspecified nerve at shoulder and upper arm level, left arm|Injury of unspecified nerve at shoulder and upper arm level, left arm +C2842699|T037|AB|S44.92XA|ICD10CM|Injury of unsp nerve at shldr/up arm, left arm, init|Injury of unsp nerve at shldr/up arm, left arm, init +C2842699|T037|PT|S44.92XA|ICD10CM|Injury of unspecified nerve at shoulder and upper arm level, left arm, initial encounter|Injury of unspecified nerve at shoulder and upper arm level, left arm, initial encounter +C2842700|T037|AB|S44.92XD|ICD10CM|Injury of unsp nerve at shldr/up arm, left arm, subs|Injury of unsp nerve at shldr/up arm, left arm, subs +C2842700|T037|PT|S44.92XD|ICD10CM|Injury of unspecified nerve at shoulder and upper arm level, left arm, subsequent encounter|Injury of unspecified nerve at shoulder and upper arm level, left arm, subsequent encounter +C2842701|T037|AB|S44.92XS|ICD10CM|Injury of unsp nerve at shldr/up arm, left arm, sequela|Injury of unsp nerve at shldr/up arm, left arm, sequela +C2842701|T037|PT|S44.92XS|ICD10CM|Injury of unspecified nerve at shoulder and upper arm level, left arm, sequela|Injury of unspecified nerve at shoulder and upper arm level, left arm, sequela +C0478279|T037|HT|S45|ICD10|Injury of blood vessels at shoulder and upper arm level|Injury of blood vessels at shoulder and upper arm level +C0478279|T037|AB|S45|ICD10CM|Injury of blood vessels at shoulder and upper arm level|Injury of blood vessels at shoulder and upper arm level +C0478279|T037|HT|S45|ICD10CM|Injury of blood vessels at shoulder and upper arm level|Injury of blood vessels at shoulder and upper arm level +C0160745|T037|HT|S45.0|ICD10CM|Injury of axillary artery|Injury of axillary artery +C0160745|T037|AB|S45.0|ICD10CM|Injury of axillary artery|Injury of axillary artery +C0160745|T037|PT|S45.0|ICD10|Injury of axillary artery|Injury of axillary artery +C2842702|T037|AB|S45.00|ICD10CM|Unspecified injury of axillary artery|Unspecified injury of axillary artery +C2842702|T037|HT|S45.00|ICD10CM|Unspecified injury of axillary artery|Unspecified injury of axillary artery +C2842703|T037|AB|S45.001|ICD10CM|Unspecified injury of axillary artery, right side|Unspecified injury of axillary artery, right side +C2842703|T037|HT|S45.001|ICD10CM|Unspecified injury of axillary artery, right side|Unspecified injury of axillary artery, right side +C2842704|T037|AB|S45.001A|ICD10CM|Unsp injury of axillary artery, right side, init encntr|Unsp injury of axillary artery, right side, init encntr +C2842704|T037|PT|S45.001A|ICD10CM|Unspecified injury of axillary artery, right side, initial encounter|Unspecified injury of axillary artery, right side, initial encounter +C2842705|T037|AB|S45.001D|ICD10CM|Unsp injury of axillary artery, right side, subs encntr|Unsp injury of axillary artery, right side, subs encntr +C2842705|T037|PT|S45.001D|ICD10CM|Unspecified injury of axillary artery, right side, subsequent encounter|Unspecified injury of axillary artery, right side, subsequent encounter +C2842706|T037|AB|S45.001S|ICD10CM|Unspecified injury of axillary artery, right side, sequela|Unspecified injury of axillary artery, right side, sequela +C2842706|T037|PT|S45.001S|ICD10CM|Unspecified injury of axillary artery, right side, sequela|Unspecified injury of axillary artery, right side, sequela +C2842707|T037|AB|S45.002|ICD10CM|Unspecified injury of axillary artery, left side|Unspecified injury of axillary artery, left side +C2842707|T037|HT|S45.002|ICD10CM|Unspecified injury of axillary artery, left side|Unspecified injury of axillary artery, left side +C2842708|T037|AB|S45.002A|ICD10CM|Unsp injury of axillary artery, left side, init encntr|Unsp injury of axillary artery, left side, init encntr +C2842708|T037|PT|S45.002A|ICD10CM|Unspecified injury of axillary artery, left side, initial encounter|Unspecified injury of axillary artery, left side, initial encounter +C2842709|T037|AB|S45.002D|ICD10CM|Unsp injury of axillary artery, left side, subs encntr|Unsp injury of axillary artery, left side, subs encntr +C2842709|T037|PT|S45.002D|ICD10CM|Unspecified injury of axillary artery, left side, subsequent encounter|Unspecified injury of axillary artery, left side, subsequent encounter +C2842710|T037|AB|S45.002S|ICD10CM|Unspecified injury of axillary artery, left side, sequela|Unspecified injury of axillary artery, left side, sequela +C2842710|T037|PT|S45.002S|ICD10CM|Unspecified injury of axillary artery, left side, sequela|Unspecified injury of axillary artery, left side, sequela +C2842711|T037|AB|S45.009|ICD10CM|Unspecified injury of axillary artery, unspecified side|Unspecified injury of axillary artery, unspecified side +C2842711|T037|HT|S45.009|ICD10CM|Unspecified injury of axillary artery, unspecified side|Unspecified injury of axillary artery, unspecified side +C2842712|T037|AB|S45.009A|ICD10CM|Unsp injury of axillary artery, unsp side, init encntr|Unsp injury of axillary artery, unsp side, init encntr +C2842712|T037|PT|S45.009A|ICD10CM|Unspecified injury of axillary artery, unspecified side, initial encounter|Unspecified injury of axillary artery, unspecified side, initial encounter +C2842713|T037|AB|S45.009D|ICD10CM|Unsp injury of axillary artery, unsp side, subs encntr|Unsp injury of axillary artery, unsp side, subs encntr +C2842713|T037|PT|S45.009D|ICD10CM|Unspecified injury of axillary artery, unspecified side, subsequent encounter|Unspecified injury of axillary artery, unspecified side, subsequent encounter +C2842714|T037|AB|S45.009S|ICD10CM|Unsp injury of axillary artery, unspecified side, sequela|Unsp injury of axillary artery, unspecified side, sequela +C2842714|T037|PT|S45.009S|ICD10CM|Unspecified injury of axillary artery, unspecified side, sequela|Unspecified injury of axillary artery, unspecified side, sequela +C2842715|T037|HT|S45.01|ICD10CM|Laceration of axillary artery|Laceration of axillary artery +C2842715|T037|AB|S45.01|ICD10CM|Laceration of axillary artery|Laceration of axillary artery +C2842716|T037|AB|S45.011|ICD10CM|Laceration of axillary artery, right side|Laceration of axillary artery, right side +C2842716|T037|HT|S45.011|ICD10CM|Laceration of axillary artery, right side|Laceration of axillary artery, right side +C2842717|T037|AB|S45.011A|ICD10CM|Laceration of axillary artery, right side, initial encounter|Laceration of axillary artery, right side, initial encounter +C2842717|T037|PT|S45.011A|ICD10CM|Laceration of axillary artery, right side, initial encounter|Laceration of axillary artery, right side, initial encounter +C2842718|T037|AB|S45.011D|ICD10CM|Laceration of axillary artery, right side, subs encntr|Laceration of axillary artery, right side, subs encntr +C2842718|T037|PT|S45.011D|ICD10CM|Laceration of axillary artery, right side, subsequent encounter|Laceration of axillary artery, right side, subsequent encounter +C2842719|T037|AB|S45.011S|ICD10CM|Laceration of axillary artery, right side, sequela|Laceration of axillary artery, right side, sequela +C2842719|T037|PT|S45.011S|ICD10CM|Laceration of axillary artery, right side, sequela|Laceration of axillary artery, right side, sequela +C2842720|T037|AB|S45.012|ICD10CM|Laceration of axillary artery, left side|Laceration of axillary artery, left side +C2842720|T037|HT|S45.012|ICD10CM|Laceration of axillary artery, left side|Laceration of axillary artery, left side +C2842721|T037|AB|S45.012A|ICD10CM|Laceration of axillary artery, left side, initial encounter|Laceration of axillary artery, left side, initial encounter +C2842721|T037|PT|S45.012A|ICD10CM|Laceration of axillary artery, left side, initial encounter|Laceration of axillary artery, left side, initial encounter +C2842722|T037|AB|S45.012D|ICD10CM|Laceration of axillary artery, left side, subs encntr|Laceration of axillary artery, left side, subs encntr +C2842722|T037|PT|S45.012D|ICD10CM|Laceration of axillary artery, left side, subsequent encounter|Laceration of axillary artery, left side, subsequent encounter +C2842723|T037|AB|S45.012S|ICD10CM|Laceration of axillary artery, left side, sequela|Laceration of axillary artery, left side, sequela +C2842723|T037|PT|S45.012S|ICD10CM|Laceration of axillary artery, left side, sequela|Laceration of axillary artery, left side, sequela +C2842724|T037|AB|S45.019|ICD10CM|Laceration of axillary artery, unspecified side|Laceration of axillary artery, unspecified side +C2842724|T037|HT|S45.019|ICD10CM|Laceration of axillary artery, unspecified side|Laceration of axillary artery, unspecified side +C2842725|T037|AB|S45.019A|ICD10CM|Laceration of axillary artery, unspecified side, init encntr|Laceration of axillary artery, unspecified side, init encntr +C2842725|T037|PT|S45.019A|ICD10CM|Laceration of axillary artery, unspecified side, initial encounter|Laceration of axillary artery, unspecified side, initial encounter +C2842726|T037|AB|S45.019D|ICD10CM|Laceration of axillary artery, unspecified side, subs encntr|Laceration of axillary artery, unspecified side, subs encntr +C2842726|T037|PT|S45.019D|ICD10CM|Laceration of axillary artery, unspecified side, subsequent encounter|Laceration of axillary artery, unspecified side, subsequent encounter +C2842727|T037|AB|S45.019S|ICD10CM|Laceration of axillary artery, unspecified side, sequela|Laceration of axillary artery, unspecified side, sequela +C2842727|T037|PT|S45.019S|ICD10CM|Laceration of axillary artery, unspecified side, sequela|Laceration of axillary artery, unspecified side, sequela +C2842728|T037|AB|S45.09|ICD10CM|Other specified injury of axillary artery|Other specified injury of axillary artery +C2842728|T037|HT|S45.09|ICD10CM|Other specified injury of axillary artery|Other specified injury of axillary artery +C2842729|T037|AB|S45.091|ICD10CM|Other specified injury of axillary artery, right side|Other specified injury of axillary artery, right side +C2842729|T037|HT|S45.091|ICD10CM|Other specified injury of axillary artery, right side|Other specified injury of axillary artery, right side +C2842730|T037|AB|S45.091A|ICD10CM|Oth injury of axillary artery, right side, init encntr|Oth injury of axillary artery, right side, init encntr +C2842730|T037|PT|S45.091A|ICD10CM|Other specified injury of axillary artery, right side, initial encounter|Other specified injury of axillary artery, right side, initial encounter +C2842731|T037|AB|S45.091D|ICD10CM|Oth injury of axillary artery, right side, subs encntr|Oth injury of axillary artery, right side, subs encntr +C2842731|T037|PT|S45.091D|ICD10CM|Other specified injury of axillary artery, right side, subsequent encounter|Other specified injury of axillary artery, right side, subsequent encounter +C2842732|T037|AB|S45.091S|ICD10CM|Oth injury of axillary artery, right side, sequela|Oth injury of axillary artery, right side, sequela +C2842732|T037|PT|S45.091S|ICD10CM|Other specified injury of axillary artery, right side, sequela|Other specified injury of axillary artery, right side, sequela +C2842733|T037|AB|S45.092|ICD10CM|Other specified injury of axillary artery, left side|Other specified injury of axillary artery, left side +C2842733|T037|HT|S45.092|ICD10CM|Other specified injury of axillary artery, left side|Other specified injury of axillary artery, left side +C2842734|T037|AB|S45.092A|ICD10CM|Oth injury of axillary artery, left side, init encntr|Oth injury of axillary artery, left side, init encntr +C2842734|T037|PT|S45.092A|ICD10CM|Other specified injury of axillary artery, left side, initial encounter|Other specified injury of axillary artery, left side, initial encounter +C2842735|T037|AB|S45.092D|ICD10CM|Oth injury of axillary artery, left side, subs encntr|Oth injury of axillary artery, left side, subs encntr +C2842735|T037|PT|S45.092D|ICD10CM|Other specified injury of axillary artery, left side, subsequent encounter|Other specified injury of axillary artery, left side, subsequent encounter +C2842736|T037|AB|S45.092S|ICD10CM|Oth injury of axillary artery, left side, sequela|Oth injury of axillary artery, left side, sequela +C2842736|T037|PT|S45.092S|ICD10CM|Other specified injury of axillary artery, left side, sequela|Other specified injury of axillary artery, left side, sequela +C2842737|T037|AB|S45.099|ICD10CM|Other specified injury of axillary artery, unspecified side|Other specified injury of axillary artery, unspecified side +C2842737|T037|HT|S45.099|ICD10CM|Other specified injury of axillary artery, unspecified side|Other specified injury of axillary artery, unspecified side +C2842738|T037|AB|S45.099A|ICD10CM|Oth injury of axillary artery, unspecified side, init encntr|Oth injury of axillary artery, unspecified side, init encntr +C2842738|T037|PT|S45.099A|ICD10CM|Other specified injury of axillary artery, unspecified side, initial encounter|Other specified injury of axillary artery, unspecified side, initial encounter +C2842739|T037|AB|S45.099D|ICD10CM|Oth injury of axillary artery, unspecified side, subs encntr|Oth injury of axillary artery, unspecified side, subs encntr +C2842739|T037|PT|S45.099D|ICD10CM|Other specified injury of axillary artery, unspecified side, subsequent encounter|Other specified injury of axillary artery, unspecified side, subsequent encounter +C2842740|T037|AB|S45.099S|ICD10CM|Oth injury of axillary artery, unspecified side, sequela|Oth injury of axillary artery, unspecified side, sequela +C2842740|T037|PT|S45.099S|ICD10CM|Other specified injury of axillary artery, unspecified side, sequela|Other specified injury of axillary artery, unspecified side, sequela +C0273472|T037|PT|S45.1|ICD10|Injury of brachial artery|Injury of brachial artery +C0273472|T037|HT|S45.1|ICD10CM|Injury of brachial artery|Injury of brachial artery +C0273472|T037|AB|S45.1|ICD10CM|Injury of brachial artery|Injury of brachial artery +C2842741|T037|AB|S45.10|ICD10CM|Unspecified injury of brachial artery|Unspecified injury of brachial artery +C2842741|T037|HT|S45.10|ICD10CM|Unspecified injury of brachial artery|Unspecified injury of brachial artery +C2842742|T037|AB|S45.101|ICD10CM|Unspecified injury of brachial artery, right side|Unspecified injury of brachial artery, right side +C2842742|T037|HT|S45.101|ICD10CM|Unspecified injury of brachial artery, right side|Unspecified injury of brachial artery, right side +C2842743|T037|AB|S45.101A|ICD10CM|Unsp injury of brachial artery, right side, init encntr|Unsp injury of brachial artery, right side, init encntr +C2842743|T037|PT|S45.101A|ICD10CM|Unspecified injury of brachial artery, right side, initial encounter|Unspecified injury of brachial artery, right side, initial encounter +C2842744|T037|AB|S45.101D|ICD10CM|Unsp injury of brachial artery, right side, subs encntr|Unsp injury of brachial artery, right side, subs encntr +C2842744|T037|PT|S45.101D|ICD10CM|Unspecified injury of brachial artery, right side, subsequent encounter|Unspecified injury of brachial artery, right side, subsequent encounter +C2842745|T037|AB|S45.101S|ICD10CM|Unspecified injury of brachial artery, right side, sequela|Unspecified injury of brachial artery, right side, sequela +C2842745|T037|PT|S45.101S|ICD10CM|Unspecified injury of brachial artery, right side, sequela|Unspecified injury of brachial artery, right side, sequela +C2842746|T037|AB|S45.102|ICD10CM|Unspecified injury of brachial artery, left side|Unspecified injury of brachial artery, left side +C2842746|T037|HT|S45.102|ICD10CM|Unspecified injury of brachial artery, left side|Unspecified injury of brachial artery, left side +C2842747|T037|AB|S45.102A|ICD10CM|Unsp injury of brachial artery, left side, init encntr|Unsp injury of brachial artery, left side, init encntr +C2842747|T037|PT|S45.102A|ICD10CM|Unspecified injury of brachial artery, left side, initial encounter|Unspecified injury of brachial artery, left side, initial encounter +C2842748|T037|AB|S45.102D|ICD10CM|Unsp injury of brachial artery, left side, subs encntr|Unsp injury of brachial artery, left side, subs encntr +C2842748|T037|PT|S45.102D|ICD10CM|Unspecified injury of brachial artery, left side, subsequent encounter|Unspecified injury of brachial artery, left side, subsequent encounter +C2842749|T037|AB|S45.102S|ICD10CM|Unspecified injury of brachial artery, left side, sequela|Unspecified injury of brachial artery, left side, sequela +C2842749|T037|PT|S45.102S|ICD10CM|Unspecified injury of brachial artery, left side, sequela|Unspecified injury of brachial artery, left side, sequela +C2842750|T037|AB|S45.109|ICD10CM|Unspecified injury of brachial artery, unspecified side|Unspecified injury of brachial artery, unspecified side +C2842750|T037|HT|S45.109|ICD10CM|Unspecified injury of brachial artery, unspecified side|Unspecified injury of brachial artery, unspecified side +C2842751|T037|AB|S45.109A|ICD10CM|Unsp injury of brachial artery, unsp side, init encntr|Unsp injury of brachial artery, unsp side, init encntr +C2842751|T037|PT|S45.109A|ICD10CM|Unspecified injury of brachial artery, unspecified side, initial encounter|Unspecified injury of brachial artery, unspecified side, initial encounter +C2842752|T037|AB|S45.109D|ICD10CM|Unsp injury of brachial artery, unsp side, subs encntr|Unsp injury of brachial artery, unsp side, subs encntr +C2842752|T037|PT|S45.109D|ICD10CM|Unspecified injury of brachial artery, unspecified side, subsequent encounter|Unspecified injury of brachial artery, unspecified side, subsequent encounter +C2842753|T037|AB|S45.109S|ICD10CM|Unsp injury of brachial artery, unspecified side, sequela|Unsp injury of brachial artery, unspecified side, sequela +C2842753|T037|PT|S45.109S|ICD10CM|Unspecified injury of brachial artery, unspecified side, sequela|Unspecified injury of brachial artery, unspecified side, sequela +C2842754|T037|HT|S45.11|ICD10CM|Laceration of brachial artery|Laceration of brachial artery +C2842754|T037|AB|S45.11|ICD10CM|Laceration of brachial artery|Laceration of brachial artery +C2842755|T037|AB|S45.111|ICD10CM|Laceration of brachial artery, right side|Laceration of brachial artery, right side +C2842755|T037|HT|S45.111|ICD10CM|Laceration of brachial artery, right side|Laceration of brachial artery, right side +C2842756|T037|AB|S45.111A|ICD10CM|Laceration of brachial artery, right side, initial encounter|Laceration of brachial artery, right side, initial encounter +C2842756|T037|PT|S45.111A|ICD10CM|Laceration of brachial artery, right side, initial encounter|Laceration of brachial artery, right side, initial encounter +C2842757|T037|AB|S45.111D|ICD10CM|Laceration of brachial artery, right side, subs encntr|Laceration of brachial artery, right side, subs encntr +C2842757|T037|PT|S45.111D|ICD10CM|Laceration of brachial artery, right side, subsequent encounter|Laceration of brachial artery, right side, subsequent encounter +C2842758|T037|AB|S45.111S|ICD10CM|Laceration of brachial artery, right side, sequela|Laceration of brachial artery, right side, sequela +C2842758|T037|PT|S45.111S|ICD10CM|Laceration of brachial artery, right side, sequela|Laceration of brachial artery, right side, sequela +C2842759|T037|AB|S45.112|ICD10CM|Laceration of brachial artery, left side|Laceration of brachial artery, left side +C2842759|T037|HT|S45.112|ICD10CM|Laceration of brachial artery, left side|Laceration of brachial artery, left side +C2842760|T037|AB|S45.112A|ICD10CM|Laceration of brachial artery, left side, initial encounter|Laceration of brachial artery, left side, initial encounter +C2842760|T037|PT|S45.112A|ICD10CM|Laceration of brachial artery, left side, initial encounter|Laceration of brachial artery, left side, initial encounter +C2842761|T037|AB|S45.112D|ICD10CM|Laceration of brachial artery, left side, subs encntr|Laceration of brachial artery, left side, subs encntr +C2842761|T037|PT|S45.112D|ICD10CM|Laceration of brachial artery, left side, subsequent encounter|Laceration of brachial artery, left side, subsequent encounter +C2842762|T037|AB|S45.112S|ICD10CM|Laceration of brachial artery, left side, sequela|Laceration of brachial artery, left side, sequela +C2842762|T037|PT|S45.112S|ICD10CM|Laceration of brachial artery, left side, sequela|Laceration of brachial artery, left side, sequela +C2842763|T037|AB|S45.119|ICD10CM|Laceration of brachial artery, unspecified side|Laceration of brachial artery, unspecified side +C2842763|T037|HT|S45.119|ICD10CM|Laceration of brachial artery, unspecified side|Laceration of brachial artery, unspecified side +C2842764|T037|AB|S45.119A|ICD10CM|Laceration of brachial artery, unspecified side, init encntr|Laceration of brachial artery, unspecified side, init encntr +C2842764|T037|PT|S45.119A|ICD10CM|Laceration of brachial artery, unspecified side, initial encounter|Laceration of brachial artery, unspecified side, initial encounter +C2842765|T037|AB|S45.119D|ICD10CM|Laceration of brachial artery, unspecified side, subs encntr|Laceration of brachial artery, unspecified side, subs encntr +C2842765|T037|PT|S45.119D|ICD10CM|Laceration of brachial artery, unspecified side, subsequent encounter|Laceration of brachial artery, unspecified side, subsequent encounter +C2842766|T037|AB|S45.119S|ICD10CM|Laceration of brachial artery, unspecified side, sequela|Laceration of brachial artery, unspecified side, sequela +C2842766|T037|PT|S45.119S|ICD10CM|Laceration of brachial artery, unspecified side, sequela|Laceration of brachial artery, unspecified side, sequela +C2842767|T037|AB|S45.19|ICD10CM|Other specified injury of brachial artery|Other specified injury of brachial artery +C2842767|T037|HT|S45.19|ICD10CM|Other specified injury of brachial artery|Other specified injury of brachial artery +C2842768|T037|AB|S45.191|ICD10CM|Other specified injury of brachial artery, right side|Other specified injury of brachial artery, right side +C2842768|T037|HT|S45.191|ICD10CM|Other specified injury of brachial artery, right side|Other specified injury of brachial artery, right side +C2842769|T037|AB|S45.191A|ICD10CM|Oth injury of brachial artery, right side, init encntr|Oth injury of brachial artery, right side, init encntr +C2842769|T037|PT|S45.191A|ICD10CM|Other specified injury of brachial artery, right side, initial encounter|Other specified injury of brachial artery, right side, initial encounter +C2842770|T037|AB|S45.191D|ICD10CM|Oth injury of brachial artery, right side, subs encntr|Oth injury of brachial artery, right side, subs encntr +C2842770|T037|PT|S45.191D|ICD10CM|Other specified injury of brachial artery, right side, subsequent encounter|Other specified injury of brachial artery, right side, subsequent encounter +C2842771|T037|AB|S45.191S|ICD10CM|Oth injury of brachial artery, right side, sequela|Oth injury of brachial artery, right side, sequela +C2842771|T037|PT|S45.191S|ICD10CM|Other specified injury of brachial artery, right side, sequela|Other specified injury of brachial artery, right side, sequela +C2842772|T037|AB|S45.192|ICD10CM|Other specified injury of brachial artery, left side|Other specified injury of brachial artery, left side +C2842772|T037|HT|S45.192|ICD10CM|Other specified injury of brachial artery, left side|Other specified injury of brachial artery, left side +C2842773|T037|AB|S45.192A|ICD10CM|Oth injury of brachial artery, left side, init encntr|Oth injury of brachial artery, left side, init encntr +C2842773|T037|PT|S45.192A|ICD10CM|Other specified injury of brachial artery, left side, initial encounter|Other specified injury of brachial artery, left side, initial encounter +C2842774|T037|AB|S45.192D|ICD10CM|Oth injury of brachial artery, left side, subs encntr|Oth injury of brachial artery, left side, subs encntr +C2842774|T037|PT|S45.192D|ICD10CM|Other specified injury of brachial artery, left side, subsequent encounter|Other specified injury of brachial artery, left side, subsequent encounter +C2842775|T037|AB|S45.192S|ICD10CM|Oth injury of brachial artery, left side, sequela|Oth injury of brachial artery, left side, sequela +C2842775|T037|PT|S45.192S|ICD10CM|Other specified injury of brachial artery, left side, sequela|Other specified injury of brachial artery, left side, sequela +C2842776|T037|AB|S45.199|ICD10CM|Other specified injury of brachial artery, unspecified side|Other specified injury of brachial artery, unspecified side +C2842776|T037|HT|S45.199|ICD10CM|Other specified injury of brachial artery, unspecified side|Other specified injury of brachial artery, unspecified side +C2842777|T037|AB|S45.199A|ICD10CM|Oth injury of brachial artery, unspecified side, init encntr|Oth injury of brachial artery, unspecified side, init encntr +C2842777|T037|PT|S45.199A|ICD10CM|Other specified injury of brachial artery, unspecified side, initial encounter|Other specified injury of brachial artery, unspecified side, initial encounter +C2842778|T037|AB|S45.199D|ICD10CM|Oth injury of brachial artery, unspecified side, subs encntr|Oth injury of brachial artery, unspecified side, subs encntr +C2842778|T037|PT|S45.199D|ICD10CM|Other specified injury of brachial artery, unspecified side, subsequent encounter|Other specified injury of brachial artery, unspecified side, subsequent encounter +C2842779|T037|AB|S45.199S|ICD10CM|Oth injury of brachial artery, unspecified side, sequela|Oth injury of brachial artery, unspecified side, sequela +C2842779|T037|PT|S45.199S|ICD10CM|Other specified injury of brachial artery, unspecified side, sequela|Other specified injury of brachial artery, unspecified side, sequela +C0495867|T037|HT|S45.2|ICD10CM|Injury of axillary or brachial vein|Injury of axillary or brachial vein +C0495867|T037|AB|S45.2|ICD10CM|Injury of axillary or brachial vein|Injury of axillary or brachial vein +C0495867|T037|PT|S45.2|ICD10|Injury of axillary or brachial vein|Injury of axillary or brachial vein +C2842780|T037|AB|S45.20|ICD10CM|Unspecified injury of axillary or brachial vein|Unspecified injury of axillary or brachial vein +C2842780|T037|HT|S45.20|ICD10CM|Unspecified injury of axillary or brachial vein|Unspecified injury of axillary or brachial vein +C2842781|T037|AB|S45.201|ICD10CM|Unspecified injury of axillary or brachial vein, right side|Unspecified injury of axillary or brachial vein, right side +C2842781|T037|HT|S45.201|ICD10CM|Unspecified injury of axillary or brachial vein, right side|Unspecified injury of axillary or brachial vein, right side +C2842782|T037|AB|S45.201A|ICD10CM|Unsp injury of axillary or brachial vein, right side, init|Unsp injury of axillary or brachial vein, right side, init +C2842782|T037|PT|S45.201A|ICD10CM|Unspecified injury of axillary or brachial vein, right side, initial encounter|Unspecified injury of axillary or brachial vein, right side, initial encounter +C2842783|T037|AB|S45.201D|ICD10CM|Unsp injury of axillary or brachial vein, right side, subs|Unsp injury of axillary or brachial vein, right side, subs +C2842783|T037|PT|S45.201D|ICD10CM|Unspecified injury of axillary or brachial vein, right side, subsequent encounter|Unspecified injury of axillary or brachial vein, right side, subsequent encounter +C2842784|T037|AB|S45.201S|ICD10CM|Unsp injury of axillary or brach vein, right side, sequela|Unsp injury of axillary or brach vein, right side, sequela +C2842784|T037|PT|S45.201S|ICD10CM|Unspecified injury of axillary or brachial vein, right side, sequela|Unspecified injury of axillary or brachial vein, right side, sequela +C2842785|T037|AB|S45.202|ICD10CM|Unspecified injury of axillary or brachial vein, left side|Unspecified injury of axillary or brachial vein, left side +C2842785|T037|HT|S45.202|ICD10CM|Unspecified injury of axillary or brachial vein, left side|Unspecified injury of axillary or brachial vein, left side +C2842786|T037|AB|S45.202A|ICD10CM|Unsp injury of axillary or brachial vein, left side, init|Unsp injury of axillary or brachial vein, left side, init +C2842786|T037|PT|S45.202A|ICD10CM|Unspecified injury of axillary or brachial vein, left side, initial encounter|Unspecified injury of axillary or brachial vein, left side, initial encounter +C2842787|T037|AB|S45.202D|ICD10CM|Unsp injury of axillary or brachial vein, left side, subs|Unsp injury of axillary or brachial vein, left side, subs +C2842787|T037|PT|S45.202D|ICD10CM|Unspecified injury of axillary or brachial vein, left side, subsequent encounter|Unspecified injury of axillary or brachial vein, left side, subsequent encounter +C2842788|T037|AB|S45.202S|ICD10CM|Unsp injury of axillary or brachial vein, left side, sequela|Unsp injury of axillary or brachial vein, left side, sequela +C2842788|T037|PT|S45.202S|ICD10CM|Unspecified injury of axillary or brachial vein, left side, sequela|Unspecified injury of axillary or brachial vein, left side, sequela +C2842789|T037|AB|S45.209|ICD10CM|Unsp injury of axillary or brachial vein, unspecified side|Unsp injury of axillary or brachial vein, unspecified side +C2842789|T037|HT|S45.209|ICD10CM|Unspecified injury of axillary or brachial vein, unspecified side|Unspecified injury of axillary or brachial vein, unspecified side +C2842790|T037|AB|S45.209A|ICD10CM|Unsp injury of axillary or brachial vein, unsp side, init|Unsp injury of axillary or brachial vein, unsp side, init +C2842790|T037|PT|S45.209A|ICD10CM|Unspecified injury of axillary or brachial vein, unspecified side, initial encounter|Unspecified injury of axillary or brachial vein, unspecified side, initial encounter +C2842791|T037|AB|S45.209D|ICD10CM|Unsp injury of axillary or brachial vein, unsp side, subs|Unsp injury of axillary or brachial vein, unsp side, subs +C2842791|T037|PT|S45.209D|ICD10CM|Unspecified injury of axillary or brachial vein, unspecified side, subsequent encounter|Unspecified injury of axillary or brachial vein, unspecified side, subsequent encounter +C2842792|T037|AB|S45.209S|ICD10CM|Unsp injury of axillary or brachial vein, unsp side, sequela|Unsp injury of axillary or brachial vein, unsp side, sequela +C2842792|T037|PT|S45.209S|ICD10CM|Unspecified injury of axillary or brachial vein, unspecified side, sequela|Unspecified injury of axillary or brachial vein, unspecified side, sequela +C2842793|T037|AB|S45.21|ICD10CM|Laceration of axillary or brachial vein|Laceration of axillary or brachial vein +C2842793|T037|HT|S45.21|ICD10CM|Laceration of axillary or brachial vein|Laceration of axillary or brachial vein +C2842794|T037|AB|S45.211|ICD10CM|Laceration of axillary or brachial vein, right side|Laceration of axillary or brachial vein, right side +C2842794|T037|HT|S45.211|ICD10CM|Laceration of axillary or brachial vein, right side|Laceration of axillary or brachial vein, right side +C2842795|T037|AB|S45.211A|ICD10CM|Laceration of axillary or brachial vein, right side, init|Laceration of axillary or brachial vein, right side, init +C2842795|T037|PT|S45.211A|ICD10CM|Laceration of axillary or brachial vein, right side, initial encounter|Laceration of axillary or brachial vein, right side, initial encounter +C2842796|T037|AB|S45.211D|ICD10CM|Laceration of axillary or brachial vein, right side, subs|Laceration of axillary or brachial vein, right side, subs +C2842796|T037|PT|S45.211D|ICD10CM|Laceration of axillary or brachial vein, right side, subsequent encounter|Laceration of axillary or brachial vein, right side, subsequent encounter +C2842797|T037|AB|S45.211S|ICD10CM|Laceration of axillary or brachial vein, right side, sequela|Laceration of axillary or brachial vein, right side, sequela +C2842797|T037|PT|S45.211S|ICD10CM|Laceration of axillary or brachial vein, right side, sequela|Laceration of axillary or brachial vein, right side, sequela +C2842798|T037|AB|S45.212|ICD10CM|Laceration of axillary or brachial vein, left side|Laceration of axillary or brachial vein, left side +C2842798|T037|HT|S45.212|ICD10CM|Laceration of axillary or brachial vein, left side|Laceration of axillary or brachial vein, left side +C2842799|T037|AB|S45.212A|ICD10CM|Laceration of axillary or brachial vein, left side, init|Laceration of axillary or brachial vein, left side, init +C2842799|T037|PT|S45.212A|ICD10CM|Laceration of axillary or brachial vein, left side, initial encounter|Laceration of axillary or brachial vein, left side, initial encounter +C2842800|T037|AB|S45.212D|ICD10CM|Laceration of axillary or brachial vein, left side, subs|Laceration of axillary or brachial vein, left side, subs +C2842800|T037|PT|S45.212D|ICD10CM|Laceration of axillary or brachial vein, left side, subsequent encounter|Laceration of axillary or brachial vein, left side, subsequent encounter +C2842801|T037|AB|S45.212S|ICD10CM|Laceration of axillary or brachial vein, left side, sequela|Laceration of axillary or brachial vein, left side, sequela +C2842801|T037|PT|S45.212S|ICD10CM|Laceration of axillary or brachial vein, left side, sequela|Laceration of axillary or brachial vein, left side, sequela +C2842802|T037|AB|S45.219|ICD10CM|Laceration of axillary or brachial vein, unspecified side|Laceration of axillary or brachial vein, unspecified side +C2842802|T037|HT|S45.219|ICD10CM|Laceration of axillary or brachial vein, unspecified side|Laceration of axillary or brachial vein, unspecified side +C2842803|T037|AB|S45.219A|ICD10CM|Laceration of axillary or brachial vein, unsp side, init|Laceration of axillary or brachial vein, unsp side, init +C2842803|T037|PT|S45.219A|ICD10CM|Laceration of axillary or brachial vein, unspecified side, initial encounter|Laceration of axillary or brachial vein, unspecified side, initial encounter +C2842804|T037|AB|S45.219D|ICD10CM|Laceration of axillary or brachial vein, unsp side, subs|Laceration of axillary or brachial vein, unsp side, subs +C2842804|T037|PT|S45.219D|ICD10CM|Laceration of axillary or brachial vein, unspecified side, subsequent encounter|Laceration of axillary or brachial vein, unspecified side, subsequent encounter +C2842805|T037|AB|S45.219S|ICD10CM|Laceration of axillary or brachial vein, unsp side, sequela|Laceration of axillary or brachial vein, unsp side, sequela +C2842805|T037|PT|S45.219S|ICD10CM|Laceration of axillary or brachial vein, unspecified side, sequela|Laceration of axillary or brachial vein, unspecified side, sequela +C2842806|T037|AB|S45.29|ICD10CM|Other specified injury of axillary or brachial vein|Other specified injury of axillary or brachial vein +C2842806|T037|HT|S45.29|ICD10CM|Other specified injury of axillary or brachial vein|Other specified injury of axillary or brachial vein +C2842807|T037|AB|S45.291|ICD10CM|Oth injury of axillary or brachial vein, right side|Oth injury of axillary or brachial vein, right side +C2842807|T037|HT|S45.291|ICD10CM|Other specified injury of axillary or brachial vein, right side|Other specified injury of axillary or brachial vein, right side +C2842808|T037|AB|S45.291A|ICD10CM|Inj axillary or brachial vein, right side, init encntr|Inj axillary or brachial vein, right side, init encntr +C2842808|T037|PT|S45.291A|ICD10CM|Other specified injury of axillary or brachial vein, right side, initial encounter|Other specified injury of axillary or brachial vein, right side, initial encounter +C2842809|T037|AB|S45.291D|ICD10CM|Inj axillary or brachial vein, right side, subs encntr|Inj axillary or brachial vein, right side, subs encntr +C2842809|T037|PT|S45.291D|ICD10CM|Other specified injury of axillary or brachial vein, right side, subsequent encounter|Other specified injury of axillary or brachial vein, right side, subsequent encounter +C2842810|T037|AB|S45.291S|ICD10CM|Oth injury of axillary or brachial vein, right side, sequela|Oth injury of axillary or brachial vein, right side, sequela +C2842810|T037|PT|S45.291S|ICD10CM|Other specified injury of axillary or brachial vein, right side, sequela|Other specified injury of axillary or brachial vein, right side, sequela +C2842811|T037|AB|S45.292|ICD10CM|Oth injury of axillary or brachial vein, left side|Oth injury of axillary or brachial vein, left side +C2842811|T037|HT|S45.292|ICD10CM|Other specified injury of axillary or brachial vein, left side|Other specified injury of axillary or brachial vein, left side +C2842812|T037|AB|S45.292A|ICD10CM|Inj axillary or brachial vein, left side, init encntr|Inj axillary or brachial vein, left side, init encntr +C2842812|T037|PT|S45.292A|ICD10CM|Other specified injury of axillary or brachial vein, left side, initial encounter|Other specified injury of axillary or brachial vein, left side, initial encounter +C2842813|T037|AB|S45.292D|ICD10CM|Inj axillary or brachial vein, left side, subs encntr|Inj axillary or brachial vein, left side, subs encntr +C2842813|T037|PT|S45.292D|ICD10CM|Other specified injury of axillary or brachial vein, left side, subsequent encounter|Other specified injury of axillary or brachial vein, left side, subsequent encounter +C2842814|T037|AB|S45.292S|ICD10CM|Oth injury of axillary or brachial vein, left side, sequela|Oth injury of axillary or brachial vein, left side, sequela +C2842814|T037|PT|S45.292S|ICD10CM|Other specified injury of axillary or brachial vein, left side, sequela|Other specified injury of axillary or brachial vein, left side, sequela +C2842815|T037|AB|S45.299|ICD10CM|Oth injury of axillary or brachial vein, unspecified side|Oth injury of axillary or brachial vein, unspecified side +C2842815|T037|HT|S45.299|ICD10CM|Other specified injury of axillary or brachial vein, unspecified side|Other specified injury of axillary or brachial vein, unspecified side +C2842816|T037|AB|S45.299A|ICD10CM|Inj axillary or brachial vein, unsp side, init encntr|Inj axillary or brachial vein, unsp side, init encntr +C2842816|T037|PT|S45.299A|ICD10CM|Other specified injury of axillary or brachial vein, unspecified side, initial encounter|Other specified injury of axillary or brachial vein, unspecified side, initial encounter +C2842817|T037|AB|S45.299D|ICD10CM|Inj axillary or brachial vein, unsp side, subs encntr|Inj axillary or brachial vein, unsp side, subs encntr +C2842817|T037|PT|S45.299D|ICD10CM|Other specified injury of axillary or brachial vein, unspecified side, subsequent encounter|Other specified injury of axillary or brachial vein, unspecified side, subsequent encounter +C2842818|T037|AB|S45.299S|ICD10CM|Oth injury of axillary or brachial vein, unsp side, sequela|Oth injury of axillary or brachial vein, unsp side, sequela +C2842818|T037|PT|S45.299S|ICD10CM|Other specified injury of axillary or brachial vein, unspecified side, sequela|Other specified injury of axillary or brachial vein, unspecified side, sequela +C0348885|T037|HT|S45.3|ICD10CM|Injury of superficial vein at shoulder and upper arm level|Injury of superficial vein at shoulder and upper arm level +C0348885|T037|AB|S45.3|ICD10CM|Injury of superficial vein at shoulder and upper arm level|Injury of superficial vein at shoulder and upper arm level +C0348885|T037|PT|S45.3|ICD10|Injury of superficial vein at shoulder and upper arm level|Injury of superficial vein at shoulder and upper arm level +C2842819|T037|AB|S45.30|ICD10CM|Unsp injury of superficial vein at shldr/up arm|Unsp injury of superficial vein at shldr/up arm +C2842819|T037|HT|S45.30|ICD10CM|Unspecified injury of superficial vein at shoulder and upper arm level|Unspecified injury of superficial vein at shoulder and upper arm level +C2842820|T037|AB|S45.301|ICD10CM|Unsp injury of superficial vein at shldr/up arm, right arm|Unsp injury of superficial vein at shldr/up arm, right arm +C2842820|T037|HT|S45.301|ICD10CM|Unspecified injury of superficial vein at shoulder and upper arm level, right arm|Unspecified injury of superficial vein at shoulder and upper arm level, right arm +C2842821|T037|AB|S45.301A|ICD10CM|Unsp injury of superfic vn at shldr/up arm, right arm, init|Unsp injury of superfic vn at shldr/up arm, right arm, init +C2842821|T037|PT|S45.301A|ICD10CM|Unspecified injury of superficial vein at shoulder and upper arm level, right arm, initial encounter|Unspecified injury of superficial vein at shoulder and upper arm level, right arm, initial encounter +C2842822|T037|AB|S45.301D|ICD10CM|Unsp injury of superfic vn at shldr/up arm, right arm, subs|Unsp injury of superfic vn at shldr/up arm, right arm, subs +C2842823|T037|AB|S45.301S|ICD10CM|Unsp inj superfic vn at shldr/up arm, right arm, sequela|Unsp inj superfic vn at shldr/up arm, right arm, sequela +C2842823|T037|PT|S45.301S|ICD10CM|Unspecified injury of superficial vein at shoulder and upper arm level, right arm, sequela|Unspecified injury of superficial vein at shoulder and upper arm level, right arm, sequela +C2842824|T037|AB|S45.302|ICD10CM|Unsp injury of superficial vein at shldr/up arm, left arm|Unsp injury of superficial vein at shldr/up arm, left arm +C2842824|T037|HT|S45.302|ICD10CM|Unspecified injury of superficial vein at shoulder and upper arm level, left arm|Unspecified injury of superficial vein at shoulder and upper arm level, left arm +C2842825|T037|AB|S45.302A|ICD10CM|Unsp injury of superfic vn at shldr/up arm, left arm, init|Unsp injury of superfic vn at shldr/up arm, left arm, init +C2842825|T037|PT|S45.302A|ICD10CM|Unspecified injury of superficial vein at shoulder and upper arm level, left arm, initial encounter|Unspecified injury of superficial vein at shoulder and upper arm level, left arm, initial encounter +C2842826|T037|AB|S45.302D|ICD10CM|Unsp injury of superfic vn at shldr/up arm, left arm, subs|Unsp injury of superfic vn at shldr/up arm, left arm, subs +C2842827|T037|AB|S45.302S|ICD10CM|Unsp inj superfic vn at shldr/up arm, left arm, sequela|Unsp inj superfic vn at shldr/up arm, left arm, sequela +C2842827|T037|PT|S45.302S|ICD10CM|Unspecified injury of superficial vein at shoulder and upper arm level, left arm, sequela|Unspecified injury of superficial vein at shoulder and upper arm level, left arm, sequela +C2842828|T037|AB|S45.309|ICD10CM|Unsp injury of superficial vein at shldr/up arm, unsp arm|Unsp injury of superficial vein at shldr/up arm, unsp arm +C2842828|T037|HT|S45.309|ICD10CM|Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm|Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm +C2842829|T037|AB|S45.309A|ICD10CM|Unsp injury of superfic vn at shldr/up arm, unsp arm, init|Unsp injury of superfic vn at shldr/up arm, unsp arm, init +C2842830|T037|AB|S45.309D|ICD10CM|Unsp injury of superfic vn at shldr/up arm, unsp arm, subs|Unsp injury of superfic vn at shldr/up arm, unsp arm, subs +C2842831|T037|AB|S45.309S|ICD10CM|Unsp inj superfic vn at shldr/up arm, unsp arm, sequela|Unsp inj superfic vn at shldr/up arm, unsp arm, sequela +C2842831|T037|PT|S45.309S|ICD10CM|Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm, sequela|Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm, sequela +C2842832|T037|AB|S45.31|ICD10CM|Laceration of superficial vein at shldr/up arm|Laceration of superficial vein at shldr/up arm +C2842832|T037|HT|S45.31|ICD10CM|Laceration of superficial vein at shoulder and upper arm level|Laceration of superficial vein at shoulder and upper arm level +C2842833|T037|AB|S45.311|ICD10CM|Laceration of superficial vein at shldr/up arm, right arm|Laceration of superficial vein at shldr/up arm, right arm +C2842833|T037|HT|S45.311|ICD10CM|Laceration of superficial vein at shoulder and upper arm level, right arm|Laceration of superficial vein at shoulder and upper arm level, right arm +C2842834|T037|AB|S45.311A|ICD10CM|Laceration of superfic vn at shldr/up arm, right arm, init|Laceration of superfic vn at shldr/up arm, right arm, init +C2842834|T037|PT|S45.311A|ICD10CM|Laceration of superficial vein at shoulder and upper arm level, right arm, initial encounter|Laceration of superficial vein at shoulder and upper arm level, right arm, initial encounter +C2842835|T037|AB|S45.311D|ICD10CM|Laceration of superfic vn at shldr/up arm, right arm, subs|Laceration of superfic vn at shldr/up arm, right arm, subs +C2842835|T037|PT|S45.311D|ICD10CM|Laceration of superficial vein at shoulder and upper arm level, right arm, subsequent encounter|Laceration of superficial vein at shoulder and upper arm level, right arm, subsequent encounter +C2842836|T037|AB|S45.311S|ICD10CM|Lacerat superfic vn at shldr/up arm, right arm, sequela|Lacerat superfic vn at shldr/up arm, right arm, sequela +C2842836|T037|PT|S45.311S|ICD10CM|Laceration of superficial vein at shoulder and upper arm level, right arm, sequela|Laceration of superficial vein at shoulder and upper arm level, right arm, sequela +C2842837|T037|AB|S45.312|ICD10CM|Laceration of superficial vein at shldr/up arm, left arm|Laceration of superficial vein at shldr/up arm, left arm +C2842837|T037|HT|S45.312|ICD10CM|Laceration of superficial vein at shoulder and upper arm level, left arm|Laceration of superficial vein at shoulder and upper arm level, left arm +C2842838|T037|AB|S45.312A|ICD10CM|Laceration of superfic vn at shldr/up arm, left arm, init|Laceration of superfic vn at shldr/up arm, left arm, init +C2842838|T037|PT|S45.312A|ICD10CM|Laceration of superficial vein at shoulder and upper arm level, left arm, initial encounter|Laceration of superficial vein at shoulder and upper arm level, left arm, initial encounter +C2842839|T037|AB|S45.312D|ICD10CM|Laceration of superfic vn at shldr/up arm, left arm, subs|Laceration of superfic vn at shldr/up arm, left arm, subs +C2842839|T037|PT|S45.312D|ICD10CM|Laceration of superficial vein at shoulder and upper arm level, left arm, subsequent encounter|Laceration of superficial vein at shoulder and upper arm level, left arm, subsequent encounter +C2842840|T037|AB|S45.312S|ICD10CM|Laceration of superfic vn at shldr/up arm, left arm, sequela|Laceration of superfic vn at shldr/up arm, left arm, sequela +C2842840|T037|PT|S45.312S|ICD10CM|Laceration of superficial vein at shoulder and upper arm level, left arm, sequela|Laceration of superficial vein at shoulder and upper arm level, left arm, sequela +C2842841|T037|AB|S45.319|ICD10CM|Laceration of superficial vein at shldr/up arm, unsp arm|Laceration of superficial vein at shldr/up arm, unsp arm +C2842841|T037|HT|S45.319|ICD10CM|Laceration of superficial vein at shoulder and upper arm level, unspecified arm|Laceration of superficial vein at shoulder and upper arm level, unspecified arm +C2842842|T037|AB|S45.319A|ICD10CM|Laceration of superfic vn at shldr/up arm, unsp arm, init|Laceration of superfic vn at shldr/up arm, unsp arm, init +C2842842|T037|PT|S45.319A|ICD10CM|Laceration of superficial vein at shoulder and upper arm level, unspecified arm, initial encounter|Laceration of superficial vein at shoulder and upper arm level, unspecified arm, initial encounter +C2842843|T037|AB|S45.319D|ICD10CM|Laceration of superfic vn at shldr/up arm, unsp arm, subs|Laceration of superfic vn at shldr/up arm, unsp arm, subs +C2842844|T037|AB|S45.319S|ICD10CM|Laceration of superfic vn at shldr/up arm, unsp arm, sequela|Laceration of superfic vn at shldr/up arm, unsp arm, sequela +C2842844|T037|PT|S45.319S|ICD10CM|Laceration of superficial vein at shoulder and upper arm level, unspecified arm, sequela|Laceration of superficial vein at shoulder and upper arm level, unspecified arm, sequela +C2842845|T037|AB|S45.39|ICD10CM|Inj superficial vein at shoulder and upper arm level|Inj superficial vein at shoulder and upper arm level +C2842845|T037|HT|S45.39|ICD10CM|Other specified injury of superficial vein at shoulder and upper arm level|Other specified injury of superficial vein at shoulder and upper arm level +C2842846|T037|AB|S45.391|ICD10CM|Inj superficial vein at shldr/up arm, right arm|Inj superficial vein at shldr/up arm, right arm +C2842846|T037|HT|S45.391|ICD10CM|Other specified injury of superficial vein at shoulder and upper arm level, right arm|Other specified injury of superficial vein at shoulder and upper arm level, right arm +C2842847|T037|AB|S45.391A|ICD10CM|Inj superficial vein at shldr/up arm, right arm, init|Inj superficial vein at shldr/up arm, right arm, init +C2842848|T037|AB|S45.391D|ICD10CM|Inj superficial vein at shldr/up arm, right arm, subs|Inj superficial vein at shldr/up arm, right arm, subs +C2842849|T037|AB|S45.391S|ICD10CM|Inj superficial vein at shldr/up arm, right arm, sequela|Inj superficial vein at shldr/up arm, right arm, sequela +C2842849|T037|PT|S45.391S|ICD10CM|Other specified injury of superficial vein at shoulder and upper arm level, right arm, sequela|Other specified injury of superficial vein at shoulder and upper arm level, right arm, sequela +C2842850|T037|AB|S45.392|ICD10CM|Inj superficial vein at shldr/up arm, left arm|Inj superficial vein at shldr/up arm, left arm +C2842850|T037|HT|S45.392|ICD10CM|Other specified injury of superficial vein at shoulder and upper arm level, left arm|Other specified injury of superficial vein at shoulder and upper arm level, left arm +C2842851|T037|AB|S45.392A|ICD10CM|Inj superficial vein at shldr/up arm, left arm, init|Inj superficial vein at shldr/up arm, left arm, init +C2842852|T037|AB|S45.392D|ICD10CM|Inj superficial vein at shldr/up arm, left arm, subs|Inj superficial vein at shldr/up arm, left arm, subs +C2842853|T037|AB|S45.392S|ICD10CM|Inj superficial vein at shldr/up arm, left arm, sequela|Inj superficial vein at shldr/up arm, left arm, sequela +C2842853|T037|PT|S45.392S|ICD10CM|Other specified injury of superficial vein at shoulder and upper arm level, left arm, sequela|Other specified injury of superficial vein at shoulder and upper arm level, left arm, sequela +C2842854|T037|AB|S45.399|ICD10CM|Inj superficial vein at shldr/up arm, unsp arm|Inj superficial vein at shldr/up arm, unsp arm +C2842854|T037|HT|S45.399|ICD10CM|Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm|Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm +C2842855|T037|AB|S45.399A|ICD10CM|Inj superficial vein at shldr/up arm, unsp arm, init|Inj superficial vein at shldr/up arm, unsp arm, init +C2842856|T037|AB|S45.399D|ICD10CM|Inj superficial vein at shldr/up arm, unsp arm, subs|Inj superficial vein at shldr/up arm, unsp arm, subs +C2842857|T037|AB|S45.399S|ICD10CM|Inj superficial vein at shldr/up arm, unsp arm, sequela|Inj superficial vein at shldr/up arm, unsp arm, sequela +C2842857|T037|PT|S45.399S|ICD10CM|Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm, sequela|Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm, sequela +C0348886|T037|PT|S45.7|ICD10|Injury of multiple blood vessels at shoulder and upper arm level|Injury of multiple blood vessels at shoulder and upper arm level +C0478278|T037|AB|S45.8|ICD10CM|Injury of oth blood vessels at shoulder and upper arm level|Injury of oth blood vessels at shoulder and upper arm level +C0478278|T037|PT|S45.8|ICD10|Injury of other blood vessels at shoulder and upper arm level|Injury of other blood vessels at shoulder and upper arm level +C0478278|T037|HT|S45.8|ICD10CM|Injury of other specified blood vessels at shoulder and upper arm level|Injury of other specified blood vessels at shoulder and upper arm level +C2842858|T037|AB|S45.80|ICD10CM|Unsp injury of blood vessels at shoulder and upper arm level|Unsp injury of blood vessels at shoulder and upper arm level +C2842858|T037|HT|S45.80|ICD10CM|Unspecified injury of other specified blood vessels at shoulder and upper arm level|Unspecified injury of other specified blood vessels at shoulder and upper arm level +C2842859|T037|AB|S45.801|ICD10CM|Unsp injury of blood vessels at shldr/up arm, right arm|Unsp injury of blood vessels at shldr/up arm, right arm +C2842859|T037|HT|S45.801|ICD10CM|Unspecified injury of other specified blood vessels at shoulder and upper arm level, right arm|Unspecified injury of other specified blood vessels at shoulder and upper arm level, right arm +C2842860|T037|AB|S45.801A|ICD10CM|Unsp inj blood vessels at shldr/up arm, right arm, init|Unsp inj blood vessels at shldr/up arm, right arm, init +C2842861|T037|AB|S45.801D|ICD10CM|Unsp inj blood vessels at shldr/up arm, right arm, subs|Unsp inj blood vessels at shldr/up arm, right arm, subs +C2842862|T037|AB|S45.801S|ICD10CM|Unsp inj blood vessels at shldr/up arm, right arm, sequela|Unsp inj blood vessels at shldr/up arm, right arm, sequela +C2842863|T037|AB|S45.802|ICD10CM|Unsp injury of blood vessels at shldr/up arm, left arm|Unsp injury of blood vessels at shldr/up arm, left arm +C2842863|T037|HT|S45.802|ICD10CM|Unspecified injury of other specified blood vessels at shoulder and upper arm level, left arm|Unspecified injury of other specified blood vessels at shoulder and upper arm level, left arm +C2842864|T037|AB|S45.802A|ICD10CM|Unsp injury of blood vessels at shldr/up arm, left arm, init|Unsp injury of blood vessels at shldr/up arm, left arm, init +C2842865|T037|AB|S45.802D|ICD10CM|Unsp injury of blood vessels at shldr/up arm, left arm, subs|Unsp injury of blood vessels at shldr/up arm, left arm, subs +C2842866|T037|AB|S45.802S|ICD10CM|Unsp inj blood vessels at shldr/up arm, left arm, sequela|Unsp inj blood vessels at shldr/up arm, left arm, sequela +C2842867|T037|AB|S45.809|ICD10CM|Unsp injury of blood vessels at shldr/up arm, unsp arm|Unsp injury of blood vessels at shldr/up arm, unsp arm +C2842867|T037|HT|S45.809|ICD10CM|Unspecified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm|Unspecified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm +C2842868|T037|AB|S45.809A|ICD10CM|Unsp injury of blood vessels at shldr/up arm, unsp arm, init|Unsp injury of blood vessels at shldr/up arm, unsp arm, init +C2842869|T037|AB|S45.809D|ICD10CM|Unsp injury of blood vessels at shldr/up arm, unsp arm, subs|Unsp injury of blood vessels at shldr/up arm, unsp arm, subs +C2842870|T037|AB|S45.809S|ICD10CM|Unsp inj blood vessels at shldr/up arm, unsp arm, sequela|Unsp inj blood vessels at shldr/up arm, unsp arm, sequela +C2842871|T037|AB|S45.81|ICD10CM|Laceration of blood vessels at shoulder and upper arm level|Laceration of blood vessels at shoulder and upper arm level +C2842871|T037|HT|S45.81|ICD10CM|Laceration of other specified blood vessels at shoulder and upper arm level|Laceration of other specified blood vessels at shoulder and upper arm level +C2842872|T037|AB|S45.811|ICD10CM|Laceration of blood vessels at shldr/up arm, right arm|Laceration of blood vessels at shldr/up arm, right arm +C2842872|T037|HT|S45.811|ICD10CM|Laceration of other specified blood vessels at shoulder and upper arm level, right arm|Laceration of other specified blood vessels at shoulder and upper arm level, right arm +C2842873|T037|AB|S45.811A|ICD10CM|Laceration of blood vessels at shldr/up arm, right arm, init|Laceration of blood vessels at shldr/up arm, right arm, init +C2842874|T037|AB|S45.811D|ICD10CM|Laceration of blood vessels at shldr/up arm, right arm, subs|Laceration of blood vessels at shldr/up arm, right arm, subs +C2842875|T037|AB|S45.811S|ICD10CM|Lacerat blood vessels at shldr/up arm, right arm, sequela|Lacerat blood vessels at shldr/up arm, right arm, sequela +C2842875|T037|PT|S45.811S|ICD10CM|Laceration of other specified blood vessels at shoulder and upper arm level, right arm, sequela|Laceration of other specified blood vessels at shoulder and upper arm level, right arm, sequela +C2842876|T037|AB|S45.812|ICD10CM|Laceration of blood vessels at shldr/up arm, left arm|Laceration of blood vessels at shldr/up arm, left arm +C2842876|T037|HT|S45.812|ICD10CM|Laceration of other specified blood vessels at shoulder and upper arm level, left arm|Laceration of other specified blood vessels at shoulder and upper arm level, left arm +C2842877|T037|AB|S45.812A|ICD10CM|Laceration of blood vessels at shldr/up arm, left arm, init|Laceration of blood vessels at shldr/up arm, left arm, init +C2842878|T037|AB|S45.812D|ICD10CM|Laceration of blood vessels at shldr/up arm, left arm, subs|Laceration of blood vessels at shldr/up arm, left arm, subs +C2842879|T037|AB|S45.812S|ICD10CM|Lacerat blood vessels at shldr/up arm, left arm, sequela|Lacerat blood vessels at shldr/up arm, left arm, sequela +C2842879|T037|PT|S45.812S|ICD10CM|Laceration of other specified blood vessels at shoulder and upper arm level, left arm, sequela|Laceration of other specified blood vessels at shoulder and upper arm level, left arm, sequela +C2842880|T037|AB|S45.819|ICD10CM|Laceration of blood vessels at shldr/up arm, unsp arm|Laceration of blood vessels at shldr/up arm, unsp arm +C2842880|T037|HT|S45.819|ICD10CM|Laceration of other specified blood vessels at shoulder and upper arm level, unspecified arm|Laceration of other specified blood vessels at shoulder and upper arm level, unspecified arm +C2842881|T037|AB|S45.819A|ICD10CM|Laceration of blood vessels at shldr/up arm, unsp arm, init|Laceration of blood vessels at shldr/up arm, unsp arm, init +C2842882|T037|AB|S45.819D|ICD10CM|Laceration of blood vessels at shldr/up arm, unsp arm, subs|Laceration of blood vessels at shldr/up arm, unsp arm, subs +C2842883|T037|AB|S45.819S|ICD10CM|Lacerat blood vessels at shldr/up arm, unsp arm, sequela|Lacerat blood vessels at shldr/up arm, unsp arm, sequela +C2842884|T037|AB|S45.89|ICD10CM|Inj oth blood vessels at shoulder and upper arm level|Inj oth blood vessels at shoulder and upper arm level +C2842884|T037|HT|S45.89|ICD10CM|Other specified injury of other specified blood vessels at shoulder and upper arm level|Other specified injury of other specified blood vessels at shoulder and upper arm level +C2842885|T037|AB|S45.891|ICD10CM|Inj oth blood vessels at shldr/up arm, right arm|Inj oth blood vessels at shldr/up arm, right arm +C2842885|T037|HT|S45.891|ICD10CM|Other specified injury of other specified blood vessels at shoulder and upper arm level, right arm|Other specified injury of other specified blood vessels at shoulder and upper arm level, right arm +C2842886|T037|AB|S45.891A|ICD10CM|Inj oth blood vessels at shldr/up arm, right arm, init|Inj oth blood vessels at shldr/up arm, right arm, init +C2842887|T037|AB|S45.891D|ICD10CM|Inj oth blood vessels at shldr/up arm, right arm, subs|Inj oth blood vessels at shldr/up arm, right arm, subs +C2842888|T037|AB|S45.891S|ICD10CM|Inj oth blood vessels at shldr/up arm, right arm, sequela|Inj oth blood vessels at shldr/up arm, right arm, sequela +C2842889|T037|AB|S45.892|ICD10CM|Inj oth blood vessels at shldr/up arm, left arm|Inj oth blood vessels at shldr/up arm, left arm +C2842889|T037|HT|S45.892|ICD10CM|Other specified injury of other specified blood vessels at shoulder and upper arm level, left arm|Other specified injury of other specified blood vessels at shoulder and upper arm level, left arm +C2842890|T037|AB|S45.892A|ICD10CM|Inj oth blood vessels at shldr/up arm, left arm, init|Inj oth blood vessels at shldr/up arm, left arm, init +C2842891|T037|AB|S45.892D|ICD10CM|Inj oth blood vessels at shldr/up arm, left arm, subs|Inj oth blood vessels at shldr/up arm, left arm, subs +C2842892|T037|AB|S45.892S|ICD10CM|Inj oth blood vessels at shldr/up arm, left arm, sequela|Inj oth blood vessels at shldr/up arm, left arm, sequela +C2842893|T037|AB|S45.899|ICD10CM|Inj oth blood vessels at shldr/up arm, unsp arm|Inj oth blood vessels at shldr/up arm, unsp arm +C2842894|T037|AB|S45.899A|ICD10CM|Inj oth blood vessels at shldr/up arm, unsp arm, init|Inj oth blood vessels at shldr/up arm, unsp arm, init +C2842895|T037|AB|S45.899D|ICD10CM|Inj oth blood vessels at shldr/up arm, unsp arm, subs|Inj oth blood vessels at shldr/up arm, unsp arm, subs +C2842896|T037|AB|S45.899S|ICD10CM|Inj oth blood vessels at shldr/up arm, unsp arm, sequela|Inj oth blood vessels at shldr/up arm, unsp arm, sequela +C0478279|T037|AB|S45.9|ICD10CM|Injury of unsp blood vessel at shoulder and upper arm level|Injury of unsp blood vessel at shoulder and upper arm level +C0478279|T037|HT|S45.9|ICD10CM|Injury of unspecified blood vessel at shoulder and upper arm level|Injury of unspecified blood vessel at shoulder and upper arm level +C0478279|T037|PT|S45.9|ICD10|Injury of unspecified blood vessel at shoulder and upper arm level|Injury of unspecified blood vessel at shoulder and upper arm level +C2842897|T037|AB|S45.90|ICD10CM|Unsp injury of unsp blood vessel at shldr/up arm|Unsp injury of unsp blood vessel at shldr/up arm +C2842897|T037|HT|S45.90|ICD10CM|Unspecified injury of unspecified blood vessel at shoulder and upper arm level|Unspecified injury of unspecified blood vessel at shoulder and upper arm level +C2842898|T037|AB|S45.901|ICD10CM|Unsp injury of unsp blood vessel at shldr/up arm, right arm|Unsp injury of unsp blood vessel at shldr/up arm, right arm +C2842898|T037|HT|S45.901|ICD10CM|Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm|Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm +C2842899|T037|AB|S45.901A|ICD10CM|Unsp inj unsp blood vess at shldr/up arm, right arm, init|Unsp inj unsp blood vess at shldr/up arm, right arm, init +C2842900|T037|AB|S45.901D|ICD10CM|Unsp inj unsp blood vess at shldr/up arm, right arm, subs|Unsp inj unsp blood vess at shldr/up arm, right arm, subs +C2842901|T037|AB|S45.901S|ICD10CM|Unsp inj unsp blood vess at shldr/up arm, right arm, sequela|Unsp inj unsp blood vess at shldr/up arm, right arm, sequela +C2842901|T037|PT|S45.901S|ICD10CM|Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm, sequela|Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm, sequela +C2842902|T037|AB|S45.902|ICD10CM|Unsp injury of unsp blood vessel at shldr/up arm, left arm|Unsp injury of unsp blood vessel at shldr/up arm, left arm +C2842902|T037|HT|S45.902|ICD10CM|Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm|Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm +C2842903|T037|AB|S45.902A|ICD10CM|Unsp inj unsp blood vess at shldr/up arm, left arm, init|Unsp inj unsp blood vess at shldr/up arm, left arm, init +C2842904|T037|AB|S45.902D|ICD10CM|Unsp inj unsp blood vess at shldr/up arm, left arm, subs|Unsp inj unsp blood vess at shldr/up arm, left arm, subs +C2842905|T037|AB|S45.902S|ICD10CM|Unsp inj unsp blood vess at shldr/up arm, left arm, sequela|Unsp inj unsp blood vess at shldr/up arm, left arm, sequela +C2842905|T037|PT|S45.902S|ICD10CM|Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm, sequela|Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm, sequela +C2842906|T037|AB|S45.909|ICD10CM|Unsp injury of unsp blood vessel at shldr/up arm, unsp arm|Unsp injury of unsp blood vessel at shldr/up arm, unsp arm +C2842906|T037|HT|S45.909|ICD10CM|Unspecified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm|Unspecified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm +C2842907|T037|AB|S45.909A|ICD10CM|Unsp inj unsp blood vess at shldr/up arm, unsp arm, init|Unsp inj unsp blood vess at shldr/up arm, unsp arm, init +C2842908|T037|AB|S45.909D|ICD10CM|Unsp inj unsp blood vess at shldr/up arm, unsp arm, subs|Unsp inj unsp blood vess at shldr/up arm, unsp arm, subs +C2842909|T037|AB|S45.909S|ICD10CM|Unsp inj unsp blood vess at shldr/up arm, unsp arm, sequela|Unsp inj unsp blood vess at shldr/up arm, unsp arm, sequela +C2842910|T037|AB|S45.91|ICD10CM|Laceration of unsp blood vessel at shldr/up arm|Laceration of unsp blood vessel at shldr/up arm +C2842910|T037|HT|S45.91|ICD10CM|Laceration of unspecified blood vessel at shoulder and upper arm level|Laceration of unspecified blood vessel at shoulder and upper arm level +C2842911|T037|AB|S45.911|ICD10CM|Laceration of unsp blood vessel at shldr/up arm, right arm|Laceration of unsp blood vessel at shldr/up arm, right arm +C2842911|T037|HT|S45.911|ICD10CM|Laceration of unspecified blood vessel at shoulder and upper arm level, right arm|Laceration of unspecified blood vessel at shoulder and upper arm level, right arm +C2842912|T037|AB|S45.911A|ICD10CM|Lacerat unsp blood vessel at shldr/up arm, right arm, init|Lacerat unsp blood vessel at shldr/up arm, right arm, init +C2842912|T037|PT|S45.911A|ICD10CM|Laceration of unspecified blood vessel at shoulder and upper arm level, right arm, initial encounter|Laceration of unspecified blood vessel at shoulder and upper arm level, right arm, initial encounter +C2842913|T037|AB|S45.911D|ICD10CM|Lacerat unsp blood vessel at shldr/up arm, right arm, subs|Lacerat unsp blood vessel at shldr/up arm, right arm, subs +C2842914|T037|AB|S45.911S|ICD10CM|Lacerat unsp blood vess at shldr/up arm, right arm, sequela|Lacerat unsp blood vess at shldr/up arm, right arm, sequela +C2842914|T037|PT|S45.911S|ICD10CM|Laceration of unspecified blood vessel at shoulder and upper arm level, right arm, sequela|Laceration of unspecified blood vessel at shoulder and upper arm level, right arm, sequela +C2842915|T037|AB|S45.912|ICD10CM|Laceration of unsp blood vessel at shldr/up arm, left arm|Laceration of unsp blood vessel at shldr/up arm, left arm +C2842915|T037|HT|S45.912|ICD10CM|Laceration of unspecified blood vessel at shoulder and upper arm level, left arm|Laceration of unspecified blood vessel at shoulder and upper arm level, left arm +C2842916|T037|AB|S45.912A|ICD10CM|Lacerat unsp blood vessel at shldr/up arm, left arm, init|Lacerat unsp blood vessel at shldr/up arm, left arm, init +C2842916|T037|PT|S45.912A|ICD10CM|Laceration of unspecified blood vessel at shoulder and upper arm level, left arm, initial encounter|Laceration of unspecified blood vessel at shoulder and upper arm level, left arm, initial encounter +C2842917|T037|AB|S45.912D|ICD10CM|Lacerat unsp blood vessel at shldr/up arm, left arm, subs|Lacerat unsp blood vessel at shldr/up arm, left arm, subs +C2842918|T037|AB|S45.912S|ICD10CM|Lacerat unsp blood vessel at shldr/up arm, left arm, sequela|Lacerat unsp blood vessel at shldr/up arm, left arm, sequela +C2842918|T037|PT|S45.912S|ICD10CM|Laceration of unspecified blood vessel at shoulder and upper arm level, left arm, sequela|Laceration of unspecified blood vessel at shoulder and upper arm level, left arm, sequela +C2842919|T037|AB|S45.919|ICD10CM|Laceration of unsp blood vessel at shldr/up arm, unsp arm|Laceration of unsp blood vessel at shldr/up arm, unsp arm +C2842919|T037|HT|S45.919|ICD10CM|Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm|Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm +C2842920|T037|AB|S45.919A|ICD10CM|Lacerat unsp blood vessel at shldr/up arm, unsp arm, init|Lacerat unsp blood vessel at shldr/up arm, unsp arm, init +C2842921|T037|AB|S45.919D|ICD10CM|Lacerat unsp blood vessel at shldr/up arm, unsp arm, subs|Lacerat unsp blood vessel at shldr/up arm, unsp arm, subs +C2842922|T037|AB|S45.919S|ICD10CM|Lacerat unsp blood vessel at shldr/up arm, unsp arm, sequela|Lacerat unsp blood vessel at shldr/up arm, unsp arm, sequela +C2842922|T037|PT|S45.919S|ICD10CM|Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm, sequela|Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm, sequela +C2842923|T037|AB|S45.99|ICD10CM|Inj unsp blood vessel at shoulder and upper arm level|Inj unsp blood vessel at shoulder and upper arm level +C2842923|T037|HT|S45.99|ICD10CM|Other specified injury of unspecified blood vessel at shoulder and upper arm level|Other specified injury of unspecified blood vessel at shoulder and upper arm level +C2842924|T037|AB|S45.991|ICD10CM|Inj unsp blood vessel at shldr/up arm, right arm|Inj unsp blood vessel at shldr/up arm, right arm +C2842924|T037|HT|S45.991|ICD10CM|Other specified injury of unspecified blood vessel at shoulder and upper arm level, right arm|Other specified injury of unspecified blood vessel at shoulder and upper arm level, right arm +C2842925|T037|AB|S45.991A|ICD10CM|Inj unsp blood vessel at shldr/up arm, right arm, init|Inj unsp blood vessel at shldr/up arm, right arm, init +C2842926|T037|AB|S45.991D|ICD10CM|Inj unsp blood vessel at shldr/up arm, right arm, subs|Inj unsp blood vessel at shldr/up arm, right arm, subs +C2842927|T037|AB|S45.991S|ICD10CM|Inj unsp blood vessel at shldr/up arm, right arm, sequela|Inj unsp blood vessel at shldr/up arm, right arm, sequela +C2842928|T037|AB|S45.992|ICD10CM|Inj unsp blood vessel at shldr/up arm, left arm|Inj unsp blood vessel at shldr/up arm, left arm +C2842928|T037|HT|S45.992|ICD10CM|Other specified injury of unspecified blood vessel at shoulder and upper arm level, left arm|Other specified injury of unspecified blood vessel at shoulder and upper arm level, left arm +C2842929|T037|AB|S45.992A|ICD10CM|Inj unsp blood vessel at shldr/up arm, left arm, init|Inj unsp blood vessel at shldr/up arm, left arm, init +C2842930|T037|AB|S45.992D|ICD10CM|Inj unsp blood vessel at shldr/up arm, left arm, subs|Inj unsp blood vessel at shldr/up arm, left arm, subs +C2842931|T037|AB|S45.992S|ICD10CM|Inj unsp blood vessel at shldr/up arm, left arm, sequela|Inj unsp blood vessel at shldr/up arm, left arm, sequela +C2842932|T037|AB|S45.999|ICD10CM|Inj unsp blood vessel at shldr/up arm, unsp arm|Inj unsp blood vessel at shldr/up arm, unsp arm +C2842932|T037|HT|S45.999|ICD10CM|Other specified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm|Other specified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm +C2842933|T037|AB|S45.999A|ICD10CM|Inj unsp blood vessel at shldr/up arm, unsp arm, init|Inj unsp blood vessel at shldr/up arm, unsp arm, init +C2842934|T037|AB|S45.999D|ICD10CM|Inj unsp blood vessel at shldr/up arm, unsp arm, subs|Inj unsp blood vessel at shldr/up arm, unsp arm, subs +C2842935|T037|AB|S45.999S|ICD10CM|Inj unsp blood vessel at shldr/up arm, unsp arm, sequela|Inj unsp blood vessel at shldr/up arm, unsp arm, sequela +C0478281|T037|HT|S46|ICD10|Injury of muscle and tendon at shoulder and upper arm level|Injury of muscle and tendon at shoulder and upper arm level +C2842936|T037|AB|S46|ICD10CM|Injury of muscle, fascia and tendon at shldr/up arm|Injury of muscle, fascia and tendon at shldr/up arm +C2842936|T037|HT|S46|ICD10CM|Injury of muscle, fascia and tendon at shoulder and upper arm level|Injury of muscle, fascia and tendon at shoulder and upper arm level +C2842937|T037|AB|S46.0|ICD10CM|Injury of musc/tend the rotator cuff of shoulder|Injury of musc/tend the rotator cuff of shoulder +C2842937|T037|HT|S46.0|ICD10CM|Injury of muscle(s) and tendon(s) of the rotator cuff of shoulder|Injury of muscle(s) and tendon(s) of the rotator cuff of shoulder +C0495868|T037|PT|S46.0|ICD10|Injury of tendon of the rotator cuff of shoulder|Injury of tendon of the rotator cuff of shoulder +C2842938|T037|AB|S46.00|ICD10CM|Unsp injury of musc/tend the rotator cuff of shoulder|Unsp injury of musc/tend the rotator cuff of shoulder +C2842938|T037|HT|S46.00|ICD10CM|Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of shoulder|Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of shoulder +C2842939|T037|AB|S46.001|ICD10CM|Unsp injury of musc/tend the rotator cuff of right shoulder|Unsp injury of musc/tend the rotator cuff of right shoulder +C2842939|T037|HT|S46.001|ICD10CM|Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder|Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder +C2842940|T037|AB|S46.001A|ICD10CM|Unsp inj musc/tend the rotator cuff of r shoulder, init|Unsp inj musc/tend the rotator cuff of r shoulder, init +C2842941|T037|AB|S46.001D|ICD10CM|Unsp inj musc/tend the rotator cuff of r shoulder, subs|Unsp inj musc/tend the rotator cuff of r shoulder, subs +C2842942|T037|AB|S46.001S|ICD10CM|Unsp inj musc/tend the rotator cuff of r shoulder, sequela|Unsp inj musc/tend the rotator cuff of r shoulder, sequela +C2842942|T037|PT|S46.001S|ICD10CM|Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela|Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela +C2842943|T037|AB|S46.002|ICD10CM|Unsp injury of musc/tend the rotator cuff of left shoulder|Unsp injury of musc/tend the rotator cuff of left shoulder +C2842943|T037|HT|S46.002|ICD10CM|Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder|Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder +C2842944|T037|AB|S46.002A|ICD10CM|Unsp inj musc/tend the rotator cuff of l shoulder, init|Unsp inj musc/tend the rotator cuff of l shoulder, init +C2842945|T037|AB|S46.002D|ICD10CM|Unsp inj musc/tend the rotator cuff of l shoulder, subs|Unsp inj musc/tend the rotator cuff of l shoulder, subs +C2842946|T037|AB|S46.002S|ICD10CM|Unsp inj musc/tend the rotator cuff of l shoulder, sequela|Unsp inj musc/tend the rotator cuff of l shoulder, sequela +C2842946|T037|PT|S46.002S|ICD10CM|Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela|Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela +C2842947|T037|AB|S46.009|ICD10CM|Unsp injury of musc/tend the rotator cuff of unsp shoulder|Unsp injury of musc/tend the rotator cuff of unsp shoulder +C2842947|T037|HT|S46.009|ICD10CM|Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder|Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder +C2842948|T037|AB|S46.009A|ICD10CM|Unsp inj musc/tend the rotator cuff of unsp shoulder, init|Unsp inj musc/tend the rotator cuff of unsp shoulder, init +C2842949|T037|AB|S46.009D|ICD10CM|Unsp inj musc/tend the rotator cuff of unsp shoulder, subs|Unsp inj musc/tend the rotator cuff of unsp shoulder, subs +C2842950|T037|AB|S46.009S|ICD10CM|Unsp inj musc/tend the rotator cuff of unsp shldr, sequela|Unsp inj musc/tend the rotator cuff of unsp shldr, sequela +C2842950|T037|PT|S46.009S|ICD10CM|Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela|Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela +C2842951|T037|AB|S46.01|ICD10CM|Strain of musc/tend the rotator cuff of shoulder|Strain of musc/tend the rotator cuff of shoulder +C2842951|T037|HT|S46.01|ICD10CM|Strain of muscle(s) and tendon(s) of the rotator cuff of shoulder|Strain of muscle(s) and tendon(s) of the rotator cuff of shoulder +C2842952|T037|AB|S46.011|ICD10CM|Strain of musc/tend the rotator cuff of right shoulder|Strain of musc/tend the rotator cuff of right shoulder +C2842952|T037|HT|S46.011|ICD10CM|Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder|Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder +C2842953|T037|AB|S46.011A|ICD10CM|Strain of musc/tend the rotator cuff of right shoulder, init|Strain of musc/tend the rotator cuff of right shoulder, init +C2842953|T037|PT|S46.011A|ICD10CM|Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter|Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter +C2842954|T037|AB|S46.011D|ICD10CM|Strain of musc/tend the rotator cuff of right shoulder, subs|Strain of musc/tend the rotator cuff of right shoulder, subs +C2842954|T037|PT|S46.011D|ICD10CM|Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter|Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter +C2842955|T037|AB|S46.011S|ICD10CM|Strain of musc/tend the rotator cuff of r shoulder, sequela|Strain of musc/tend the rotator cuff of r shoulder, sequela +C2842955|T037|PT|S46.011S|ICD10CM|Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela|Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela +C2842956|T037|AB|S46.012|ICD10CM|Strain of musc/tend the rotator cuff of left shoulder|Strain of musc/tend the rotator cuff of left shoulder +C2842956|T037|HT|S46.012|ICD10CM|Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder|Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder +C2842957|T037|AB|S46.012A|ICD10CM|Strain of musc/tend the rotator cuff of left shoulder, init|Strain of musc/tend the rotator cuff of left shoulder, init +C2842957|T037|PT|S46.012A|ICD10CM|Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter|Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter +C2842958|T037|AB|S46.012D|ICD10CM|Strain of musc/tend the rotator cuff of left shoulder, subs|Strain of musc/tend the rotator cuff of left shoulder, subs +C2842958|T037|PT|S46.012D|ICD10CM|Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter|Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter +C2842959|T037|AB|S46.012S|ICD10CM|Strain of musc/tend the rotator cuff of l shoulder, sequela|Strain of musc/tend the rotator cuff of l shoulder, sequela +C2842959|T037|PT|S46.012S|ICD10CM|Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela|Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela +C2842960|T037|AB|S46.019|ICD10CM|Strain of musc/tend the rotator cuff of unsp shoulder|Strain of musc/tend the rotator cuff of unsp shoulder +C2842960|T037|HT|S46.019|ICD10CM|Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder|Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder +C2842961|T037|AB|S46.019A|ICD10CM|Strain of musc/tend the rotator cuff of unsp shoulder, init|Strain of musc/tend the rotator cuff of unsp shoulder, init +C2842961|T037|PT|S46.019A|ICD10CM|Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter|Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter +C2842962|T037|AB|S46.019D|ICD10CM|Strain of musc/tend the rotator cuff of unsp shoulder, subs|Strain of musc/tend the rotator cuff of unsp shoulder, subs +C2842962|T037|PT|S46.019D|ICD10CM|Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, subsequent encounter|Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, subsequent encounter +C2842963|T037|AB|S46.019S|ICD10CM|Strain musc/tend the rotator cuff of unsp shoulder, sequela|Strain musc/tend the rotator cuff of unsp shoulder, sequela +C2842963|T037|PT|S46.019S|ICD10CM|Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela|Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela +C2842964|T037|AB|S46.02|ICD10CM|Laceration of musc/tend the rotator cuff of shoulder|Laceration of musc/tend the rotator cuff of shoulder +C2842964|T037|HT|S46.02|ICD10CM|Laceration of muscle(s) and tendon(s) of the rotator cuff of shoulder|Laceration of muscle(s) and tendon(s) of the rotator cuff of shoulder +C2842965|T037|AB|S46.021|ICD10CM|Laceration of musc/tend the rotator cuff of right shoulder|Laceration of musc/tend the rotator cuff of right shoulder +C2842965|T037|HT|S46.021|ICD10CM|Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder|Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder +C2842966|T037|AB|S46.021A|ICD10CM|Laceration of musc/tend the rotator cuff of r shoulder, init|Laceration of musc/tend the rotator cuff of r shoulder, init +C2842966|T037|PT|S46.021A|ICD10CM|Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter|Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter +C2842967|T037|AB|S46.021D|ICD10CM|Laceration of musc/tend the rotator cuff of r shoulder, subs|Laceration of musc/tend the rotator cuff of r shoulder, subs +C2842967|T037|PT|S46.021D|ICD10CM|Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter|Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter +C2842968|T037|AB|S46.021S|ICD10CM|Lacerat musc/tend the rotator cuff of r shoulder, sequela|Lacerat musc/tend the rotator cuff of r shoulder, sequela +C2842968|T037|PT|S46.021S|ICD10CM|Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela|Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela +C2842969|T037|AB|S46.022|ICD10CM|Laceration of musc/tend the rotator cuff of left shoulder|Laceration of musc/tend the rotator cuff of left shoulder +C2842969|T037|HT|S46.022|ICD10CM|Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder|Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder +C2842970|T037|AB|S46.022A|ICD10CM|Lacerat musc/tend the rotator cuff of left shoulder, init|Lacerat musc/tend the rotator cuff of left shoulder, init +C2842970|T037|PT|S46.022A|ICD10CM|Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter|Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter +C2842971|T037|AB|S46.022D|ICD10CM|Lacerat musc/tend the rotator cuff of left shoulder, subs|Lacerat musc/tend the rotator cuff of left shoulder, subs +C2842971|T037|PT|S46.022D|ICD10CM|Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter|Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter +C2842972|T037|AB|S46.022S|ICD10CM|Lacerat musc/tend the rotator cuff of left shoulder, sequela|Lacerat musc/tend the rotator cuff of left shoulder, sequela +C2842972|T037|PT|S46.022S|ICD10CM|Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela|Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela +C2842973|T037|AB|S46.029|ICD10CM|Laceration of musc/tend the rotator cuff of unsp shoulder|Laceration of musc/tend the rotator cuff of unsp shoulder +C2842973|T037|HT|S46.029|ICD10CM|Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder|Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder +C2842974|T037|AB|S46.029A|ICD10CM|Lacerat musc/tend the rotator cuff of unsp shoulder, init|Lacerat musc/tend the rotator cuff of unsp shoulder, init +C2842974|T037|PT|S46.029A|ICD10CM|Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter|Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter +C2842975|T037|AB|S46.029D|ICD10CM|Lacerat musc/tend the rotator cuff of unsp shoulder, subs|Lacerat musc/tend the rotator cuff of unsp shoulder, subs +C2842976|T037|AB|S46.029S|ICD10CM|Lacerat musc/tend the rotator cuff of unsp shoulder, sequela|Lacerat musc/tend the rotator cuff of unsp shoulder, sequela +C2842976|T037|PT|S46.029S|ICD10CM|Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela|Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela +C2842977|T037|AB|S46.09|ICD10CM|Inj muscle(s) and tendon(s) of the rotator cuff of shoulder|Inj muscle(s) and tendon(s) of the rotator cuff of shoulder +C2842977|T037|HT|S46.09|ICD10CM|Other injury of muscle(s) and tendon(s) of the rotator cuff of shoulder|Other injury of muscle(s) and tendon(s) of the rotator cuff of shoulder +C2842978|T037|AB|S46.091|ICD10CM|Inj musc/tend the rotator cuff of right shoulder|Inj musc/tend the rotator cuff of right shoulder +C2842978|T037|HT|S46.091|ICD10CM|Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder|Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder +C2842979|T037|AB|S46.091A|ICD10CM|Inj musc/tend the rotator cuff of right shoulder, init|Inj musc/tend the rotator cuff of right shoulder, init +C2842979|T037|PT|S46.091A|ICD10CM|Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter|Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter +C2842980|T037|AB|S46.091D|ICD10CM|Inj musc/tend the rotator cuff of right shoulder, subs|Inj musc/tend the rotator cuff of right shoulder, subs +C2842980|T037|PT|S46.091D|ICD10CM|Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter|Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter +C2842981|T037|AB|S46.091S|ICD10CM|Inj musc/tend the rotator cuff of right shoulder, sequela|Inj musc/tend the rotator cuff of right shoulder, sequela +C2842981|T037|PT|S46.091S|ICD10CM|Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela|Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela +C2842982|T037|AB|S46.092|ICD10CM|Inj musc/tend the rotator cuff of left shoulder|Inj musc/tend the rotator cuff of left shoulder +C2842982|T037|HT|S46.092|ICD10CM|Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder|Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder +C2842983|T037|AB|S46.092A|ICD10CM|Inj musc/tend the rotator cuff of left shoulder, init|Inj musc/tend the rotator cuff of left shoulder, init +C2842983|T037|PT|S46.092A|ICD10CM|Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter|Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter +C2842984|T037|AB|S46.092D|ICD10CM|Inj musc/tend the rotator cuff of left shoulder, subs|Inj musc/tend the rotator cuff of left shoulder, subs +C2842984|T037|PT|S46.092D|ICD10CM|Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter|Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter +C2842985|T037|AB|S46.092S|ICD10CM|Inj musc/tend the rotator cuff of left shoulder, sequela|Inj musc/tend the rotator cuff of left shoulder, sequela +C2842985|T037|PT|S46.092S|ICD10CM|Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela|Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela +C2842986|T037|AB|S46.099|ICD10CM|Inj musc/tend the rotator cuff of unsp shoulder|Inj musc/tend the rotator cuff of unsp shoulder +C2842986|T037|HT|S46.099|ICD10CM|Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder|Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder +C2842987|T037|AB|S46.099A|ICD10CM|Inj musc/tend the rotator cuff of unsp shoulder, init|Inj musc/tend the rotator cuff of unsp shoulder, init +C2842988|T037|AB|S46.099D|ICD10CM|Inj musc/tend the rotator cuff of unsp shoulder, subs|Inj musc/tend the rotator cuff of unsp shoulder, subs +C2842989|T037|AB|S46.099S|ICD10CM|Inj musc/tend the rotator cuff of unsp shoulder, sequela|Inj musc/tend the rotator cuff of unsp shoulder, sequela +C2842989|T037|PT|S46.099S|ICD10CM|Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela|Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela +C0495869|T037|PT|S46.1|ICD10|Injury of muscle and tendon of long head of biceps|Injury of muscle and tendon of long head of biceps +C3648598|T037|AB|S46.1|ICD10CM|Injury of muscle, fascia and tendon of long head of biceps|Injury of muscle, fascia and tendon of long head of biceps +C3648598|T037|HT|S46.1|ICD10CM|Injury of muscle, fascia and tendon of long head of biceps|Injury of muscle, fascia and tendon of long head of biceps +C2842991|T037|AB|S46.10|ICD10CM|Unsp injury of musc/fasc/tend long head of biceps|Unsp injury of musc/fasc/tend long head of biceps +C2842991|T037|HT|S46.10|ICD10CM|Unspecified injury of muscle, fascia and tendon of long head of biceps|Unspecified injury of muscle, fascia and tendon of long head of biceps +C2842992|T037|AB|S46.101|ICD10CM|Unsp injury of musc/fasc/tend long head of biceps, right arm|Unsp injury of musc/fasc/tend long head of biceps, right arm +C2842992|T037|HT|S46.101|ICD10CM|Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm|Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm +C2842993|T037|AB|S46.101A|ICD10CM|Unsp injury of musc/fasc/tend long hd bicep, right arm, init|Unsp injury of musc/fasc/tend long hd bicep, right arm, init +C2842993|T037|PT|S46.101A|ICD10CM|Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm, initial encounter|Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm, initial encounter +C2842994|T037|AB|S46.101D|ICD10CM|Unsp injury of musc/fasc/tend long hd bicep, right arm, subs|Unsp injury of musc/fasc/tend long hd bicep, right arm, subs +C2842995|T037|AB|S46.101S|ICD10CM|Unsp inj musc/fasc/tend long hd bicep, right arm, sequela|Unsp inj musc/fasc/tend long hd bicep, right arm, sequela +C2842995|T037|PT|S46.101S|ICD10CM|Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm, sequela|Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm, sequela +C2842996|T037|AB|S46.102|ICD10CM|Unsp injury of musc/fasc/tend long head of biceps, left arm|Unsp injury of musc/fasc/tend long head of biceps, left arm +C2842996|T037|HT|S46.102|ICD10CM|Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm|Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm +C2842997|T037|AB|S46.102A|ICD10CM|Unsp injury of musc/fasc/tend long hd bicep, left arm, init|Unsp injury of musc/fasc/tend long hd bicep, left arm, init +C2842997|T037|PT|S46.102A|ICD10CM|Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm, initial encounter|Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm, initial encounter +C2842998|T037|AB|S46.102D|ICD10CM|Unsp injury of musc/fasc/tend long hd bicep, left arm, subs|Unsp injury of musc/fasc/tend long hd bicep, left arm, subs +C2842999|T037|AB|S46.102S|ICD10CM|Unsp inj musc/fasc/tend long hd bicep, left arm, sequela|Unsp inj musc/fasc/tend long hd bicep, left arm, sequela +C2842999|T037|PT|S46.102S|ICD10CM|Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm, sequela|Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm, sequela +C2843000|T037|AB|S46.109|ICD10CM|Unsp injury of musc/fasc/tend long head of biceps, unsp arm|Unsp injury of musc/fasc/tend long head of biceps, unsp arm +C2843000|T037|HT|S46.109|ICD10CM|Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm|Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm +C2843001|T037|AB|S46.109A|ICD10CM|Unsp injury of musc/fasc/tend long hd bicep, unsp arm, init|Unsp injury of musc/fasc/tend long hd bicep, unsp arm, init +C2843002|T037|AB|S46.109D|ICD10CM|Unsp injury of musc/fasc/tend long hd bicep, unsp arm, subs|Unsp injury of musc/fasc/tend long hd bicep, unsp arm, subs +C2843003|T037|AB|S46.109S|ICD10CM|Unsp inj musc/fasc/tend long hd bicep, unsp arm, sequela|Unsp inj musc/fasc/tend long hd bicep, unsp arm, sequela +C2843003|T037|PT|S46.109S|ICD10CM|Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela|Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela +C2843004|T037|AB|S46.11|ICD10CM|Strain of muscle, fascia and tendon of long head of biceps|Strain of muscle, fascia and tendon of long head of biceps +C2843004|T037|HT|S46.11|ICD10CM|Strain of muscle, fascia and tendon of long head of biceps|Strain of muscle, fascia and tendon of long head of biceps +C2843005|T037|AB|S46.111|ICD10CM|Strain of musc/fasc/tend long head of biceps, right arm|Strain of musc/fasc/tend long head of biceps, right arm +C2843005|T037|HT|S46.111|ICD10CM|Strain of muscle, fascia and tendon of long head of biceps, right arm|Strain of muscle, fascia and tendon of long head of biceps, right arm +C2843006|T037|AB|S46.111A|ICD10CM|Strain of musc/fasc/tend long hd bicep, right arm, init|Strain of musc/fasc/tend long hd bicep, right arm, init +C2843006|T037|PT|S46.111A|ICD10CM|Strain of muscle, fascia and tendon of long head of biceps, right arm, initial encounter|Strain of muscle, fascia and tendon of long head of biceps, right arm, initial encounter +C2843007|T037|AB|S46.111D|ICD10CM|Strain of musc/fasc/tend long hd bicep, right arm, subs|Strain of musc/fasc/tend long hd bicep, right arm, subs +C2843007|T037|PT|S46.111D|ICD10CM|Strain of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter|Strain of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter +C2843008|T037|AB|S46.111S|ICD10CM|Strain of musc/fasc/tend long hd bicep, right arm, sequela|Strain of musc/fasc/tend long hd bicep, right arm, sequela +C2843008|T037|PT|S46.111S|ICD10CM|Strain of muscle, fascia and tendon of long head of biceps, right arm, sequela|Strain of muscle, fascia and tendon of long head of biceps, right arm, sequela +C2843009|T037|AB|S46.112|ICD10CM|Strain of musc/fasc/tend long head of biceps, left arm|Strain of musc/fasc/tend long head of biceps, left arm +C2843009|T037|HT|S46.112|ICD10CM|Strain of muscle, fascia and tendon of long head of biceps, left arm|Strain of muscle, fascia and tendon of long head of biceps, left arm +C2843010|T037|AB|S46.112A|ICD10CM|Strain of musc/fasc/tend long head of biceps, left arm, init|Strain of musc/fasc/tend long head of biceps, left arm, init +C2843010|T037|PT|S46.112A|ICD10CM|Strain of muscle, fascia and tendon of long head of biceps, left arm, initial encounter|Strain of muscle, fascia and tendon of long head of biceps, left arm, initial encounter +C2843011|T037|AB|S46.112D|ICD10CM|Strain of musc/fasc/tend long head of biceps, left arm, subs|Strain of musc/fasc/tend long head of biceps, left arm, subs +C2843011|T037|PT|S46.112D|ICD10CM|Strain of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter|Strain of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter +C2843012|T037|AB|S46.112S|ICD10CM|Strain of musc/fasc/tend long hd bicep, left arm, sequela|Strain of musc/fasc/tend long hd bicep, left arm, sequela +C2843012|T037|PT|S46.112S|ICD10CM|Strain of muscle, fascia and tendon of long head of biceps, left arm, sequela|Strain of muscle, fascia and tendon of long head of biceps, left arm, sequela +C2843013|T037|AB|S46.119|ICD10CM|Strain of musc/fasc/tend long head of biceps, unsp arm|Strain of musc/fasc/tend long head of biceps, unsp arm +C2843013|T037|HT|S46.119|ICD10CM|Strain of muscle, fascia and tendon of long head of biceps, unspecified arm|Strain of muscle, fascia and tendon of long head of biceps, unspecified arm +C2843014|T037|AB|S46.119A|ICD10CM|Strain of musc/fasc/tend long head of biceps, unsp arm, init|Strain of musc/fasc/tend long head of biceps, unsp arm, init +C2843014|T037|PT|S46.119A|ICD10CM|Strain of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter|Strain of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter +C2843015|T037|AB|S46.119D|ICD10CM|Strain of musc/fasc/tend long head of biceps, unsp arm, subs|Strain of musc/fasc/tend long head of biceps, unsp arm, subs +C2843015|T037|PT|S46.119D|ICD10CM|Strain of muscle, fascia and tendon of long head of biceps, unspecified arm, subsequent encounter|Strain of muscle, fascia and tendon of long head of biceps, unspecified arm, subsequent encounter +C2843016|T037|AB|S46.119S|ICD10CM|Strain of musc/fasc/tend long hd bicep, unsp arm, sequela|Strain of musc/fasc/tend long hd bicep, unsp arm, sequela +C2843016|T037|PT|S46.119S|ICD10CM|Strain of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela|Strain of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela +C2843017|T037|AB|S46.12|ICD10CM|Laceration of musc/fasc/tend long head of biceps|Laceration of musc/fasc/tend long head of biceps +C2843017|T037|HT|S46.12|ICD10CM|Laceration of muscle, fascia and tendon of long head of biceps|Laceration of muscle, fascia and tendon of long head of biceps +C2843018|T037|AB|S46.121|ICD10CM|Laceration of musc/fasc/tend long head of biceps, right arm|Laceration of musc/fasc/tend long head of biceps, right arm +C2843018|T037|HT|S46.121|ICD10CM|Laceration of muscle, fascia and tendon of long head of biceps, right arm|Laceration of muscle, fascia and tendon of long head of biceps, right arm +C2843019|T037|AB|S46.121A|ICD10CM|Laceration of musc/fasc/tend long hd bicep, right arm, init|Laceration of musc/fasc/tend long hd bicep, right arm, init +C2843019|T037|PT|S46.121A|ICD10CM|Laceration of muscle, fascia and tendon of long head of biceps, right arm, initial encounter|Laceration of muscle, fascia and tendon of long head of biceps, right arm, initial encounter +C2843020|T037|AB|S46.121D|ICD10CM|Laceration of musc/fasc/tend long hd bicep, right arm, subs|Laceration of musc/fasc/tend long hd bicep, right arm, subs +C2843020|T037|PT|S46.121D|ICD10CM|Laceration of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter|Laceration of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter +C2843021|T037|AB|S46.121S|ICD10CM|Lacerat musc/fasc/tend long hd bicep, right arm, sequela|Lacerat musc/fasc/tend long hd bicep, right arm, sequela +C2843021|T037|PT|S46.121S|ICD10CM|Laceration of muscle, fascia and tendon of long head of biceps, right arm, sequela|Laceration of muscle, fascia and tendon of long head of biceps, right arm, sequela +C2843022|T037|AB|S46.122|ICD10CM|Laceration of musc/fasc/tend long head of biceps, left arm|Laceration of musc/fasc/tend long head of biceps, left arm +C2843022|T037|HT|S46.122|ICD10CM|Laceration of muscle, fascia and tendon of long head of biceps, left arm|Laceration of muscle, fascia and tendon of long head of biceps, left arm +C2843023|T037|AB|S46.122A|ICD10CM|Laceration of musc/fasc/tend long hd bicep, left arm, init|Laceration of musc/fasc/tend long hd bicep, left arm, init +C2843023|T037|PT|S46.122A|ICD10CM|Laceration of muscle, fascia and tendon of long head of biceps, left arm, initial encounter|Laceration of muscle, fascia and tendon of long head of biceps, left arm, initial encounter +C2843024|T037|AB|S46.122D|ICD10CM|Laceration of musc/fasc/tend long hd bicep, left arm, subs|Laceration of musc/fasc/tend long hd bicep, left arm, subs +C2843024|T037|PT|S46.122D|ICD10CM|Laceration of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter|Laceration of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter +C2843025|T037|AB|S46.122S|ICD10CM|Lacerat musc/fasc/tend long hd bicep, left arm, sequela|Lacerat musc/fasc/tend long hd bicep, left arm, sequela +C2843025|T037|PT|S46.122S|ICD10CM|Laceration of muscle, fascia and tendon of long head of biceps, left arm, sequela|Laceration of muscle, fascia and tendon of long head of biceps, left arm, sequela +C2843026|T037|AB|S46.129|ICD10CM|Laceration of musc/fasc/tend long head of biceps, unsp arm|Laceration of musc/fasc/tend long head of biceps, unsp arm +C2843026|T037|HT|S46.129|ICD10CM|Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm|Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm +C2843027|T037|AB|S46.129A|ICD10CM|Laceration of musc/fasc/tend long hd bicep, unsp arm, init|Laceration of musc/fasc/tend long hd bicep, unsp arm, init +C2843027|T037|PT|S46.129A|ICD10CM|Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter|Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter +C2843028|T037|AB|S46.129D|ICD10CM|Laceration of musc/fasc/tend long hd bicep, unsp arm, subs|Laceration of musc/fasc/tend long hd bicep, unsp arm, subs +C2843029|T037|AB|S46.129S|ICD10CM|Lacerat musc/fasc/tend long hd bicep, unsp arm, sequela|Lacerat musc/fasc/tend long hd bicep, unsp arm, sequela +C2843029|T037|PT|S46.129S|ICD10CM|Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela|Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela +C2843030|T037|AB|S46.19|ICD10CM|Inj muscle, fascia and tendon of long head of biceps|Inj muscle, fascia and tendon of long head of biceps +C2843030|T037|HT|S46.19|ICD10CM|Other injury of muscle, fascia and tendon of long head of biceps|Other injury of muscle, fascia and tendon of long head of biceps +C2843031|T037|AB|S46.191|ICD10CM|Inj musc/fasc/tend long head of biceps, right arm|Inj musc/fasc/tend long head of biceps, right arm +C2843031|T037|HT|S46.191|ICD10CM|Other injury of muscle, fascia and tendon of long head of biceps, right arm|Other injury of muscle, fascia and tendon of long head of biceps, right arm +C2843032|T037|AB|S46.191A|ICD10CM|Inj musc/fasc/tend long head of biceps, right arm, init|Inj musc/fasc/tend long head of biceps, right arm, init +C2843032|T037|PT|S46.191A|ICD10CM|Other injury of muscle, fascia and tendon of long head of biceps, right arm, initial encounter|Other injury of muscle, fascia and tendon of long head of biceps, right arm, initial encounter +C2843033|T037|AB|S46.191D|ICD10CM|Inj musc/fasc/tend long head of biceps, right arm, subs|Inj musc/fasc/tend long head of biceps, right arm, subs +C2843033|T037|PT|S46.191D|ICD10CM|Other injury of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter|Other injury of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter +C2843034|T037|AB|S46.191S|ICD10CM|Inj musc/fasc/tend long head of biceps, right arm, sequela|Inj musc/fasc/tend long head of biceps, right arm, sequela +C2843034|T037|PT|S46.191S|ICD10CM|Other injury of muscle, fascia and tendon of long head of biceps, right arm, sequela|Other injury of muscle, fascia and tendon of long head of biceps, right arm, sequela +C2843035|T037|AB|S46.192|ICD10CM|Inj musc/fasc/tend long head of biceps, left arm|Inj musc/fasc/tend long head of biceps, left arm +C2843035|T037|HT|S46.192|ICD10CM|Other injury of muscle, fascia and tendon of long head of biceps, left arm|Other injury of muscle, fascia and tendon of long head of biceps, left arm +C2843036|T037|AB|S46.192A|ICD10CM|Inj musc/fasc/tend long head of biceps, left arm, init|Inj musc/fasc/tend long head of biceps, left arm, init +C2843036|T037|PT|S46.192A|ICD10CM|Other injury of muscle, fascia and tendon of long head of biceps, left arm, initial encounter|Other injury of muscle, fascia and tendon of long head of biceps, left arm, initial encounter +C2843037|T037|AB|S46.192D|ICD10CM|Inj musc/fasc/tend long head of biceps, left arm, subs|Inj musc/fasc/tend long head of biceps, left arm, subs +C2843037|T037|PT|S46.192D|ICD10CM|Other injury of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter|Other injury of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter +C2843038|T037|AB|S46.192S|ICD10CM|Inj musc/fasc/tend long head of biceps, left arm, sequela|Inj musc/fasc/tend long head of biceps, left arm, sequela +C2843038|T037|PT|S46.192S|ICD10CM|Other injury of muscle, fascia and tendon of long head of biceps, left arm, sequela|Other injury of muscle, fascia and tendon of long head of biceps, left arm, sequela +C2843039|T037|AB|S46.199|ICD10CM|Inj musc/fasc/tend long head of biceps, unsp arm|Inj musc/fasc/tend long head of biceps, unsp arm +C2843039|T037|HT|S46.199|ICD10CM|Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm|Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm +C2843040|T037|AB|S46.199A|ICD10CM|Inj musc/fasc/tend long head of biceps, unsp arm, init|Inj musc/fasc/tend long head of biceps, unsp arm, init +C2843040|T037|PT|S46.199A|ICD10CM|Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter|Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter +C2843041|T037|AB|S46.199D|ICD10CM|Inj musc/fasc/tend long head of biceps, unsp arm, subs|Inj musc/fasc/tend long head of biceps, unsp arm, subs +C2843042|T037|AB|S46.199S|ICD10CM|Inj musc/fasc/tend long head of biceps, unsp arm, sequela|Inj musc/fasc/tend long head of biceps, unsp arm, sequela +C2843042|T037|PT|S46.199S|ICD10CM|Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela|Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela +C0495870|T037|PT|S46.2|ICD10|Injury of muscle and tendon of other parts of biceps|Injury of muscle and tendon of other parts of biceps +C2843043|T037|AB|S46.2|ICD10CM|Injury of muscle, fascia and tendon of other parts of biceps|Injury of muscle, fascia and tendon of other parts of biceps +C2843043|T037|HT|S46.2|ICD10CM|Injury of muscle, fascia and tendon of other parts of biceps|Injury of muscle, fascia and tendon of other parts of biceps +C2843044|T037|AB|S46.20|ICD10CM|Unsp injury of muscle, fascia and tendon of oth prt biceps|Unsp injury of muscle, fascia and tendon of oth prt biceps +C2843044|T037|HT|S46.20|ICD10CM|Unspecified injury of muscle, fascia and tendon of other parts of biceps|Unspecified injury of muscle, fascia and tendon of other parts of biceps +C2843045|T037|AB|S46.201|ICD10CM|Unsp injury of musc/fasc/tend prt biceps, right arm|Unsp injury of musc/fasc/tend prt biceps, right arm +C2843045|T037|HT|S46.201|ICD10CM|Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm|Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm +C2843046|T037|AB|S46.201A|ICD10CM|Unsp injury of musc/fasc/tend prt biceps, right arm, init|Unsp injury of musc/fasc/tend prt biceps, right arm, init +C2843047|T037|AB|S46.201D|ICD10CM|Unsp injury of musc/fasc/tend prt biceps, right arm, subs|Unsp injury of musc/fasc/tend prt biceps, right arm, subs +C2843048|T037|AB|S46.201S|ICD10CM|Unsp injury of musc/fasc/tend prt biceps, right arm, sequela|Unsp injury of musc/fasc/tend prt biceps, right arm, sequela +C2843048|T037|PT|S46.201S|ICD10CM|Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm, sequela|Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm, sequela +C2843049|T037|AB|S46.202|ICD10CM|Unsp injury of musc/fasc/tend prt biceps, left arm|Unsp injury of musc/fasc/tend prt biceps, left arm +C2843049|T037|HT|S46.202|ICD10CM|Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm|Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm +C2843050|T037|AB|S46.202A|ICD10CM|Unsp injury of musc/fasc/tend prt biceps, left arm, init|Unsp injury of musc/fasc/tend prt biceps, left arm, init +C2843051|T037|AB|S46.202D|ICD10CM|Unsp injury of musc/fasc/tend prt biceps, left arm, subs|Unsp injury of musc/fasc/tend prt biceps, left arm, subs +C2843052|T037|AB|S46.202S|ICD10CM|Unsp injury of musc/fasc/tend prt biceps, left arm, sequela|Unsp injury of musc/fasc/tend prt biceps, left arm, sequela +C2843052|T037|PT|S46.202S|ICD10CM|Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm, sequela|Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm, sequela +C2843053|T037|AB|S46.209|ICD10CM|Unsp injury of musc/fasc/tend prt biceps, unsp arm|Unsp injury of musc/fasc/tend prt biceps, unsp arm +C2843053|T037|HT|S46.209|ICD10CM|Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm|Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm +C2843054|T037|AB|S46.209A|ICD10CM|Unsp injury of musc/fasc/tend prt biceps, unsp arm, init|Unsp injury of musc/fasc/tend prt biceps, unsp arm, init +C2843055|T037|AB|S46.209D|ICD10CM|Unsp injury of musc/fasc/tend prt biceps, unsp arm, subs|Unsp injury of musc/fasc/tend prt biceps, unsp arm, subs +C2843056|T037|AB|S46.209S|ICD10CM|Unsp injury of musc/fasc/tend prt biceps, unsp arm, sequela|Unsp injury of musc/fasc/tend prt biceps, unsp arm, sequela +C2843056|T037|PT|S46.209S|ICD10CM|Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela|Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela +C2843057|T037|AB|S46.21|ICD10CM|Strain of muscle, fascia and tendon of other parts of biceps|Strain of muscle, fascia and tendon of other parts of biceps +C2843057|T037|HT|S46.21|ICD10CM|Strain of muscle, fascia and tendon of other parts of biceps|Strain of muscle, fascia and tendon of other parts of biceps +C2843058|T037|HT|S46.211|ICD10CM|Strain of muscle, fascia and tendon of other parts of biceps, right arm|Strain of muscle, fascia and tendon of other parts of biceps, right arm +C2843058|T037|AB|S46.211|ICD10CM|Strain of muscle, fascia and tendon of prt biceps, right arm|Strain of muscle, fascia and tendon of prt biceps, right arm +C2843059|T037|AB|S46.211A|ICD10CM|Strain of musc/fasc/tend prt biceps, right arm, init|Strain of musc/fasc/tend prt biceps, right arm, init +C2843059|T037|PT|S46.211A|ICD10CM|Strain of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter|Strain of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter +C2843060|T037|AB|S46.211D|ICD10CM|Strain of musc/fasc/tend prt biceps, right arm, subs|Strain of musc/fasc/tend prt biceps, right arm, subs +C2843060|T037|PT|S46.211D|ICD10CM|Strain of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter|Strain of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter +C2843061|T037|AB|S46.211S|ICD10CM|Strain of musc/fasc/tend prt biceps, right arm, sequela|Strain of musc/fasc/tend prt biceps, right arm, sequela +C2843061|T037|PT|S46.211S|ICD10CM|Strain of muscle, fascia and tendon of other parts of biceps, right arm, sequela|Strain of muscle, fascia and tendon of other parts of biceps, right arm, sequela +C2843062|T037|HT|S46.212|ICD10CM|Strain of muscle, fascia and tendon of other parts of biceps, left arm|Strain of muscle, fascia and tendon of other parts of biceps, left arm +C2843062|T037|AB|S46.212|ICD10CM|Strain of muscle, fascia and tendon of prt biceps, left arm|Strain of muscle, fascia and tendon of prt biceps, left arm +C2843063|T037|AB|S46.212A|ICD10CM|Strain of musc/fasc/tend prt biceps, left arm, init|Strain of musc/fasc/tend prt biceps, left arm, init +C2843063|T037|PT|S46.212A|ICD10CM|Strain of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter|Strain of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter +C2843064|T037|AB|S46.212D|ICD10CM|Strain of musc/fasc/tend prt biceps, left arm, subs|Strain of musc/fasc/tend prt biceps, left arm, subs +C2843064|T037|PT|S46.212D|ICD10CM|Strain of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter|Strain of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter +C2843065|T037|AB|S46.212S|ICD10CM|Strain of musc/fasc/tend prt biceps, left arm, sequela|Strain of musc/fasc/tend prt biceps, left arm, sequela +C2843065|T037|PT|S46.212S|ICD10CM|Strain of muscle, fascia and tendon of other parts of biceps, left arm, sequela|Strain of muscle, fascia and tendon of other parts of biceps, left arm, sequela +C2843066|T037|HT|S46.219|ICD10CM|Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm|Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm +C2843066|T037|AB|S46.219|ICD10CM|Strain of muscle, fascia and tendon of prt biceps, unsp arm|Strain of muscle, fascia and tendon of prt biceps, unsp arm +C2843067|T037|AB|S46.219A|ICD10CM|Strain of musc/fasc/tend prt biceps, unsp arm, init|Strain of musc/fasc/tend prt biceps, unsp arm, init +C2843067|T037|PT|S46.219A|ICD10CM|Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter|Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter +C2843068|T037|AB|S46.219D|ICD10CM|Strain of musc/fasc/tend prt biceps, unsp arm, subs|Strain of musc/fasc/tend prt biceps, unsp arm, subs +C2843068|T037|PT|S46.219D|ICD10CM|Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm, subsequent encounter|Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm, subsequent encounter +C2843069|T037|AB|S46.219S|ICD10CM|Strain of musc/fasc/tend prt biceps, unsp arm, sequela|Strain of musc/fasc/tend prt biceps, unsp arm, sequela +C2843069|T037|PT|S46.219S|ICD10CM|Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela|Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela +C2843070|T037|AB|S46.22|ICD10CM|Laceration of muscle, fascia and tendon of oth prt biceps|Laceration of muscle, fascia and tendon of oth prt biceps +C2843070|T037|HT|S46.22|ICD10CM|Laceration of muscle, fascia and tendon of other parts of biceps|Laceration of muscle, fascia and tendon of other parts of biceps +C2843071|T037|AB|S46.221|ICD10CM|Laceration of musc/fasc/tend prt biceps, right arm|Laceration of musc/fasc/tend prt biceps, right arm +C2843071|T037|HT|S46.221|ICD10CM|Laceration of muscle, fascia and tendon of other parts of biceps, right arm|Laceration of muscle, fascia and tendon of other parts of biceps, right arm +C2843072|T037|AB|S46.221A|ICD10CM|Laceration of musc/fasc/tend prt biceps, right arm, init|Laceration of musc/fasc/tend prt biceps, right arm, init +C2843072|T037|PT|S46.221A|ICD10CM|Laceration of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter|Laceration of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter +C2843073|T037|AB|S46.221D|ICD10CM|Laceration of musc/fasc/tend prt biceps, right arm, subs|Laceration of musc/fasc/tend prt biceps, right arm, subs +C2843073|T037|PT|S46.221D|ICD10CM|Laceration of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter|Laceration of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter +C2843074|T037|AB|S46.221S|ICD10CM|Laceration of musc/fasc/tend prt biceps, right arm, sequela|Laceration of musc/fasc/tend prt biceps, right arm, sequela +C2843074|T037|PT|S46.221S|ICD10CM|Laceration of muscle, fascia and tendon of other parts of biceps, right arm, sequela|Laceration of muscle, fascia and tendon of other parts of biceps, right arm, sequela +C2843075|T037|AB|S46.222|ICD10CM|Laceration of musc/fasc/tend prt biceps, left arm|Laceration of musc/fasc/tend prt biceps, left arm +C2843075|T037|HT|S46.222|ICD10CM|Laceration of muscle, fascia and tendon of other parts of biceps, left arm|Laceration of muscle, fascia and tendon of other parts of biceps, left arm +C2843076|T037|AB|S46.222A|ICD10CM|Laceration of musc/fasc/tend prt biceps, left arm, init|Laceration of musc/fasc/tend prt biceps, left arm, init +C2843076|T037|PT|S46.222A|ICD10CM|Laceration of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter|Laceration of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter +C2843077|T037|AB|S46.222D|ICD10CM|Laceration of musc/fasc/tend prt biceps, left arm, subs|Laceration of musc/fasc/tend prt biceps, left arm, subs +C2843077|T037|PT|S46.222D|ICD10CM|Laceration of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter|Laceration of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter +C2843078|T037|AB|S46.222S|ICD10CM|Laceration of musc/fasc/tend prt biceps, left arm, sequela|Laceration of musc/fasc/tend prt biceps, left arm, sequela +C2843078|T037|PT|S46.222S|ICD10CM|Laceration of muscle, fascia and tendon of other parts of biceps, left arm, sequela|Laceration of muscle, fascia and tendon of other parts of biceps, left arm, sequela +C2843079|T037|AB|S46.229|ICD10CM|Laceration of musc/fasc/tend prt biceps, unsp arm|Laceration of musc/fasc/tend prt biceps, unsp arm +C2843079|T037|HT|S46.229|ICD10CM|Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm|Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm +C2843080|T037|AB|S46.229A|ICD10CM|Laceration of musc/fasc/tend prt biceps, unsp arm, init|Laceration of musc/fasc/tend prt biceps, unsp arm, init +C2843080|T037|PT|S46.229A|ICD10CM|Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter|Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter +C2843081|T037|AB|S46.229D|ICD10CM|Laceration of musc/fasc/tend prt biceps, unsp arm, subs|Laceration of musc/fasc/tend prt biceps, unsp arm, subs +C2843082|T037|AB|S46.229S|ICD10CM|Laceration of musc/fasc/tend prt biceps, unsp arm, sequela|Laceration of musc/fasc/tend prt biceps, unsp arm, sequela +C2843082|T037|PT|S46.229S|ICD10CM|Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela|Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela +C2843083|T037|AB|S46.29|ICD10CM|Inj muscle, fascia and tendon of oth parts of biceps|Inj muscle, fascia and tendon of oth parts of biceps +C2843083|T037|HT|S46.29|ICD10CM|Other injury of muscle, fascia and tendon of other parts of biceps|Other injury of muscle, fascia and tendon of other parts of biceps +C2843084|T037|AB|S46.291|ICD10CM|Inj muscle, fascia and tendon of oth prt biceps, right arm|Inj muscle, fascia and tendon of oth prt biceps, right arm +C2843084|T037|HT|S46.291|ICD10CM|Other injury of muscle, fascia and tendon of other parts of biceps, right arm|Other injury of muscle, fascia and tendon of other parts of biceps, right arm +C2843085|T037|AB|S46.291A|ICD10CM|Inj muscle, fascia and tendon of prt biceps, right arm, init|Inj muscle, fascia and tendon of prt biceps, right arm, init +C2843085|T037|PT|S46.291A|ICD10CM|Other injury of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter|Other injury of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter +C2843086|T037|AB|S46.291D|ICD10CM|Inj muscle, fascia and tendon of prt biceps, right arm, subs|Inj muscle, fascia and tendon of prt biceps, right arm, subs +C2843086|T037|PT|S46.291D|ICD10CM|Other injury of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter|Other injury of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter +C2843087|T037|AB|S46.291S|ICD10CM|Inj musc/fasc/tend prt biceps, right arm, sequela|Inj musc/fasc/tend prt biceps, right arm, sequela +C2843087|T037|PT|S46.291S|ICD10CM|Other injury of muscle, fascia and tendon of other parts of biceps, right arm, sequela|Other injury of muscle, fascia and tendon of other parts of biceps, right arm, sequela +C2843088|T037|AB|S46.292|ICD10CM|Inj muscle, fascia and tendon of oth prt biceps, left arm|Inj muscle, fascia and tendon of oth prt biceps, left arm +C2843088|T037|HT|S46.292|ICD10CM|Other injury of muscle, fascia and tendon of other parts of biceps, left arm|Other injury of muscle, fascia and tendon of other parts of biceps, left arm +C2843089|T037|AB|S46.292A|ICD10CM|Inj muscle, fascia and tendon of prt biceps, left arm, init|Inj muscle, fascia and tendon of prt biceps, left arm, init +C2843089|T037|PT|S46.292A|ICD10CM|Other injury of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter|Other injury of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter +C2843090|T037|AB|S46.292D|ICD10CM|Inj muscle, fascia and tendon of prt biceps, left arm, subs|Inj muscle, fascia and tendon of prt biceps, left arm, subs +C2843090|T037|PT|S46.292D|ICD10CM|Other injury of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter|Other injury of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter +C2843091|T037|AB|S46.292S|ICD10CM|Inj musc/fasc/tend prt biceps, left arm, sequela|Inj musc/fasc/tend prt biceps, left arm, sequela +C2843091|T037|PT|S46.292S|ICD10CM|Other injury of muscle, fascia and tendon of other parts of biceps, left arm, sequela|Other injury of muscle, fascia and tendon of other parts of biceps, left arm, sequela +C2843092|T037|AB|S46.299|ICD10CM|Inj muscle, fascia and tendon of oth prt biceps, unsp arm|Inj muscle, fascia and tendon of oth prt biceps, unsp arm +C2843092|T037|HT|S46.299|ICD10CM|Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm|Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm +C2843093|T037|AB|S46.299A|ICD10CM|Inj muscle, fascia and tendon of prt biceps, unsp arm, init|Inj muscle, fascia and tendon of prt biceps, unsp arm, init +C2843094|T037|AB|S46.299D|ICD10CM|Inj muscle, fascia and tendon of prt biceps, unsp arm, subs|Inj muscle, fascia and tendon of prt biceps, unsp arm, subs +C2843095|T037|AB|S46.299S|ICD10CM|Inj musc/fasc/tend prt biceps, unsp arm, sequela|Inj musc/fasc/tend prt biceps, unsp arm, sequela +C2843095|T037|PT|S46.299S|ICD10CM|Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela|Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela +C0495871|T037|PT|S46.3|ICD10|Injury of muscle and tendon of triceps|Injury of muscle and tendon of triceps +C3648597|T037|AB|S46.3|ICD10CM|Injury of muscle, fascia and tendon of triceps|Injury of muscle, fascia and tendon of triceps +C3648597|T037|HT|S46.3|ICD10CM|Injury of muscle, fascia and tendon of triceps|Injury of muscle, fascia and tendon of triceps +C2843097|T037|AB|S46.30|ICD10CM|Unspecified injury of muscle, fascia and tendon of triceps|Unspecified injury of muscle, fascia and tendon of triceps +C2843097|T037|HT|S46.30|ICD10CM|Unspecified injury of muscle, fascia and tendon of triceps|Unspecified injury of muscle, fascia and tendon of triceps +C2843098|T037|AB|S46.301|ICD10CM|Unsp injury of musc/fasc/tend triceps, right arm|Unsp injury of musc/fasc/tend triceps, right arm +C2843098|T037|HT|S46.301|ICD10CM|Unspecified injury of muscle, fascia and tendon of triceps, right arm|Unspecified injury of muscle, fascia and tendon of triceps, right arm +C2843099|T037|AB|S46.301A|ICD10CM|Unsp injury of musc/fasc/tend triceps, right arm, init|Unsp injury of musc/fasc/tend triceps, right arm, init +C2843099|T037|PT|S46.301A|ICD10CM|Unspecified injury of muscle, fascia and tendon of triceps, right arm, initial encounter|Unspecified injury of muscle, fascia and tendon of triceps, right arm, initial encounter +C2843100|T037|AB|S46.301D|ICD10CM|Unsp injury of musc/fasc/tend triceps, right arm, subs|Unsp injury of musc/fasc/tend triceps, right arm, subs +C2843100|T037|PT|S46.301D|ICD10CM|Unspecified injury of muscle, fascia and tendon of triceps, right arm, subsequent encounter|Unspecified injury of muscle, fascia and tendon of triceps, right arm, subsequent encounter +C2843101|T037|AB|S46.301S|ICD10CM|Unsp injury of musc/fasc/tend triceps, right arm, sequela|Unsp injury of musc/fasc/tend triceps, right arm, sequela +C2843101|T037|PT|S46.301S|ICD10CM|Unspecified injury of muscle, fascia and tendon of triceps, right arm, sequela|Unspecified injury of muscle, fascia and tendon of triceps, right arm, sequela +C2843102|T037|AB|S46.302|ICD10CM|Unsp injury of musc/fasc/tend triceps, left arm|Unsp injury of musc/fasc/tend triceps, left arm +C2843102|T037|HT|S46.302|ICD10CM|Unspecified injury of muscle, fascia and tendon of triceps, left arm|Unspecified injury of muscle, fascia and tendon of triceps, left arm +C2843103|T037|AB|S46.302A|ICD10CM|Unsp injury of musc/fasc/tend triceps, left arm, init|Unsp injury of musc/fasc/tend triceps, left arm, init +C2843103|T037|PT|S46.302A|ICD10CM|Unspecified injury of muscle, fascia and tendon of triceps, left arm, initial encounter|Unspecified injury of muscle, fascia and tendon of triceps, left arm, initial encounter +C2843104|T037|AB|S46.302D|ICD10CM|Unsp injury of musc/fasc/tend triceps, left arm, subs|Unsp injury of musc/fasc/tend triceps, left arm, subs +C2843104|T037|PT|S46.302D|ICD10CM|Unspecified injury of muscle, fascia and tendon of triceps, left arm, subsequent encounter|Unspecified injury of muscle, fascia and tendon of triceps, left arm, subsequent encounter +C2843105|T037|AB|S46.302S|ICD10CM|Unsp injury of musc/fasc/tend triceps, left arm, sequela|Unsp injury of musc/fasc/tend triceps, left arm, sequela +C2843105|T037|PT|S46.302S|ICD10CM|Unspecified injury of muscle, fascia and tendon of triceps, left arm, sequela|Unspecified injury of muscle, fascia and tendon of triceps, left arm, sequela +C2843106|T037|AB|S46.309|ICD10CM|Unsp injury of musc/fasc/tend triceps, unsp arm|Unsp injury of musc/fasc/tend triceps, unsp arm +C2843106|T037|HT|S46.309|ICD10CM|Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm|Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm +C2843107|T037|AB|S46.309A|ICD10CM|Unsp injury of musc/fasc/tend triceps, unsp arm, init|Unsp injury of musc/fasc/tend triceps, unsp arm, init +C2843107|T037|PT|S46.309A|ICD10CM|Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm, initial encounter|Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm, initial encounter +C2843108|T037|AB|S46.309D|ICD10CM|Unsp injury of musc/fasc/tend triceps, unsp arm, subs|Unsp injury of musc/fasc/tend triceps, unsp arm, subs +C2843108|T037|PT|S46.309D|ICD10CM|Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter|Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter +C2843109|T037|AB|S46.309S|ICD10CM|Unsp injury of musc/fasc/tend triceps, unsp arm, sequela|Unsp injury of musc/fasc/tend triceps, unsp arm, sequela +C2843109|T037|PT|S46.309S|ICD10CM|Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm, sequela|Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm, sequela +C2843110|T037|AB|S46.31|ICD10CM|Strain of muscle, fascia and tendon of triceps|Strain of muscle, fascia and tendon of triceps +C2843110|T037|HT|S46.31|ICD10CM|Strain of muscle, fascia and tendon of triceps|Strain of muscle, fascia and tendon of triceps +C2843111|T037|AB|S46.311|ICD10CM|Strain of muscle, fascia and tendon of triceps, right arm|Strain of muscle, fascia and tendon of triceps, right arm +C2843111|T037|HT|S46.311|ICD10CM|Strain of muscle, fascia and tendon of triceps, right arm|Strain of muscle, fascia and tendon of triceps, right arm +C2843112|T037|AB|S46.311A|ICD10CM|Strain of musc/fasc/tend triceps, right arm, init|Strain of musc/fasc/tend triceps, right arm, init +C2843112|T037|PT|S46.311A|ICD10CM|Strain of muscle, fascia and tendon of triceps, right arm, initial encounter|Strain of muscle, fascia and tendon of triceps, right arm, initial encounter +C2843113|T037|AB|S46.311D|ICD10CM|Strain of musc/fasc/tend triceps, right arm, subs|Strain of musc/fasc/tend triceps, right arm, subs +C2843113|T037|PT|S46.311D|ICD10CM|Strain of muscle, fascia and tendon of triceps, right arm, subsequent encounter|Strain of muscle, fascia and tendon of triceps, right arm, subsequent encounter +C2843114|T037|AB|S46.311S|ICD10CM|Strain of musc/fasc/tend triceps, right arm, sequela|Strain of musc/fasc/tend triceps, right arm, sequela +C2843114|T037|PT|S46.311S|ICD10CM|Strain of muscle, fascia and tendon of triceps, right arm, sequela|Strain of muscle, fascia and tendon of triceps, right arm, sequela +C2843115|T037|AB|S46.312|ICD10CM|Strain of muscle, fascia and tendon of triceps, left arm|Strain of muscle, fascia and tendon of triceps, left arm +C2843115|T037|HT|S46.312|ICD10CM|Strain of muscle, fascia and tendon of triceps, left arm|Strain of muscle, fascia and tendon of triceps, left arm +C2843116|T037|AB|S46.312A|ICD10CM|Strain of musc/fasc/tend triceps, left arm, init|Strain of musc/fasc/tend triceps, left arm, init +C2843116|T037|PT|S46.312A|ICD10CM|Strain of muscle, fascia and tendon of triceps, left arm, initial encounter|Strain of muscle, fascia and tendon of triceps, left arm, initial encounter +C2843117|T037|AB|S46.312D|ICD10CM|Strain of musc/fasc/tend triceps, left arm, subs|Strain of musc/fasc/tend triceps, left arm, subs +C2843117|T037|PT|S46.312D|ICD10CM|Strain of muscle, fascia and tendon of triceps, left arm, subsequent encounter|Strain of muscle, fascia and tendon of triceps, left arm, subsequent encounter +C2843118|T037|AB|S46.312S|ICD10CM|Strain of musc/fasc/tend triceps, left arm, sequela|Strain of musc/fasc/tend triceps, left arm, sequela +C2843118|T037|PT|S46.312S|ICD10CM|Strain of muscle, fascia and tendon of triceps, left arm, sequela|Strain of muscle, fascia and tendon of triceps, left arm, sequela +C2843119|T037|AB|S46.319|ICD10CM|Strain of muscle, fascia and tendon of triceps, unsp arm|Strain of muscle, fascia and tendon of triceps, unsp arm +C2843119|T037|HT|S46.319|ICD10CM|Strain of muscle, fascia and tendon of triceps, unspecified arm|Strain of muscle, fascia and tendon of triceps, unspecified arm +C2843120|T037|AB|S46.319A|ICD10CM|Strain of musc/fasc/tend triceps, unsp arm, init|Strain of musc/fasc/tend triceps, unsp arm, init +C2843120|T037|PT|S46.319A|ICD10CM|Strain of muscle, fascia and tendon of triceps, unspecified arm, initial encounter|Strain of muscle, fascia and tendon of triceps, unspecified arm, initial encounter +C2843121|T037|AB|S46.319D|ICD10CM|Strain of musc/fasc/tend triceps, unsp arm, subs|Strain of musc/fasc/tend triceps, unsp arm, subs +C2843121|T037|PT|S46.319D|ICD10CM|Strain of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter|Strain of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter +C2843122|T037|AB|S46.319S|ICD10CM|Strain of musc/fasc/tend triceps, unsp arm, sequela|Strain of musc/fasc/tend triceps, unsp arm, sequela +C2843122|T037|PT|S46.319S|ICD10CM|Strain of muscle, fascia and tendon of triceps, unspecified arm, sequela|Strain of muscle, fascia and tendon of triceps, unspecified arm, sequela +C2843123|T037|AB|S46.32|ICD10CM|Laceration of muscle, fascia and tendon of triceps|Laceration of muscle, fascia and tendon of triceps +C2843123|T037|HT|S46.32|ICD10CM|Laceration of muscle, fascia and tendon of triceps|Laceration of muscle, fascia and tendon of triceps +C2843124|T037|AB|S46.321|ICD10CM|Laceration of musc/fasc/tend triceps, right arm|Laceration of musc/fasc/tend triceps, right arm +C2843124|T037|HT|S46.321|ICD10CM|Laceration of muscle, fascia and tendon of triceps, right arm|Laceration of muscle, fascia and tendon of triceps, right arm +C2843125|T037|AB|S46.321A|ICD10CM|Laceration of musc/fasc/tend triceps, right arm, init|Laceration of musc/fasc/tend triceps, right arm, init +C2843125|T037|PT|S46.321A|ICD10CM|Laceration of muscle, fascia and tendon of triceps, right arm, initial encounter|Laceration of muscle, fascia and tendon of triceps, right arm, initial encounter +C2843126|T037|AB|S46.321D|ICD10CM|Laceration of musc/fasc/tend triceps, right arm, subs|Laceration of musc/fasc/tend triceps, right arm, subs +C2843126|T037|PT|S46.321D|ICD10CM|Laceration of muscle, fascia and tendon of triceps, right arm, subsequent encounter|Laceration of muscle, fascia and tendon of triceps, right arm, subsequent encounter +C2843127|T037|AB|S46.321S|ICD10CM|Laceration of musc/fasc/tend triceps, right arm, sequela|Laceration of musc/fasc/tend triceps, right arm, sequela +C2843127|T037|PT|S46.321S|ICD10CM|Laceration of muscle, fascia and tendon of triceps, right arm, sequela|Laceration of muscle, fascia and tendon of triceps, right arm, sequela +C2843128|T037|AB|S46.322|ICD10CM|Laceration of muscle, fascia and tendon of triceps, left arm|Laceration of muscle, fascia and tendon of triceps, left arm +C2843128|T037|HT|S46.322|ICD10CM|Laceration of muscle, fascia and tendon of triceps, left arm|Laceration of muscle, fascia and tendon of triceps, left arm +C2843129|T037|AB|S46.322A|ICD10CM|Laceration of musc/fasc/tend triceps, left arm, init|Laceration of musc/fasc/tend triceps, left arm, init +C2843129|T037|PT|S46.322A|ICD10CM|Laceration of muscle, fascia and tendon of triceps, left arm, initial encounter|Laceration of muscle, fascia and tendon of triceps, left arm, initial encounter +C2843130|T037|AB|S46.322D|ICD10CM|Laceration of musc/fasc/tend triceps, left arm, subs|Laceration of musc/fasc/tend triceps, left arm, subs +C2843130|T037|PT|S46.322D|ICD10CM|Laceration of muscle, fascia and tendon of triceps, left arm, subsequent encounter|Laceration of muscle, fascia and tendon of triceps, left arm, subsequent encounter +C2843131|T037|AB|S46.322S|ICD10CM|Laceration of musc/fasc/tend triceps, left arm, sequela|Laceration of musc/fasc/tend triceps, left arm, sequela +C2843131|T037|PT|S46.322S|ICD10CM|Laceration of muscle, fascia and tendon of triceps, left arm, sequela|Laceration of muscle, fascia and tendon of triceps, left arm, sequela +C2843132|T037|AB|S46.329|ICD10CM|Laceration of muscle, fascia and tendon of triceps, unsp arm|Laceration of muscle, fascia and tendon of triceps, unsp arm +C2843132|T037|HT|S46.329|ICD10CM|Laceration of muscle, fascia and tendon of triceps, unspecified arm|Laceration of muscle, fascia and tendon of triceps, unspecified arm +C2843133|T037|AB|S46.329A|ICD10CM|Laceration of musc/fasc/tend triceps, unsp arm, init|Laceration of musc/fasc/tend triceps, unsp arm, init +C2843133|T037|PT|S46.329A|ICD10CM|Laceration of muscle, fascia and tendon of triceps, unspecified arm, initial encounter|Laceration of muscle, fascia and tendon of triceps, unspecified arm, initial encounter +C2843134|T037|AB|S46.329D|ICD10CM|Laceration of musc/fasc/tend triceps, unsp arm, subs|Laceration of musc/fasc/tend triceps, unsp arm, subs +C2843134|T037|PT|S46.329D|ICD10CM|Laceration of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter|Laceration of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter +C2843135|T037|AB|S46.329S|ICD10CM|Laceration of musc/fasc/tend triceps, unsp arm, sequela|Laceration of musc/fasc/tend triceps, unsp arm, sequela +C2843135|T037|PT|S46.329S|ICD10CM|Laceration of muscle, fascia and tendon of triceps, unspecified arm, sequela|Laceration of muscle, fascia and tendon of triceps, unspecified arm, sequela +C2843136|T037|AB|S46.39|ICD10CM|Other injury of muscle, fascia and tendon of triceps|Other injury of muscle, fascia and tendon of triceps +C2843136|T037|HT|S46.39|ICD10CM|Other injury of muscle, fascia and tendon of triceps|Other injury of muscle, fascia and tendon of triceps +C2843137|T037|AB|S46.391|ICD10CM|Inj muscle, fascia and tendon of triceps, right arm|Inj muscle, fascia and tendon of triceps, right arm +C2843137|T037|HT|S46.391|ICD10CM|Other injury of muscle, fascia and tendon of triceps, right arm|Other injury of muscle, fascia and tendon of triceps, right arm +C2843138|T037|AB|S46.391A|ICD10CM|Inj muscle, fascia and tendon of triceps, right arm, init|Inj muscle, fascia and tendon of triceps, right arm, init +C2843138|T037|PT|S46.391A|ICD10CM|Other injury of muscle, fascia and tendon of triceps, right arm, initial encounter|Other injury of muscle, fascia and tendon of triceps, right arm, initial encounter +C2843139|T037|AB|S46.391D|ICD10CM|Inj muscle, fascia and tendon of triceps, right arm, subs|Inj muscle, fascia and tendon of triceps, right arm, subs +C2843139|T037|PT|S46.391D|ICD10CM|Other injury of muscle, fascia and tendon of triceps, right arm, subsequent encounter|Other injury of muscle, fascia and tendon of triceps, right arm, subsequent encounter +C2843140|T037|AB|S46.391S|ICD10CM|Inj muscle, fascia and tendon of triceps, right arm, sequela|Inj muscle, fascia and tendon of triceps, right arm, sequela +C2843140|T037|PT|S46.391S|ICD10CM|Other injury of muscle, fascia and tendon of triceps, right arm, sequela|Other injury of muscle, fascia and tendon of triceps, right arm, sequela +C2843141|T037|AB|S46.392|ICD10CM|Oth injury of muscle, fascia and tendon of triceps, left arm|Oth injury of muscle, fascia and tendon of triceps, left arm +C2843141|T037|HT|S46.392|ICD10CM|Other injury of muscle, fascia and tendon of triceps, left arm|Other injury of muscle, fascia and tendon of triceps, left arm +C2843142|T037|AB|S46.392A|ICD10CM|Inj muscle, fascia and tendon of triceps, left arm, init|Inj muscle, fascia and tendon of triceps, left arm, init +C2843142|T037|PT|S46.392A|ICD10CM|Other injury of muscle, fascia and tendon of triceps, left arm, initial encounter|Other injury of muscle, fascia and tendon of triceps, left arm, initial encounter +C2843143|T037|AB|S46.392D|ICD10CM|Inj muscle, fascia and tendon of triceps, left arm, subs|Inj muscle, fascia and tendon of triceps, left arm, subs +C2843143|T037|PT|S46.392D|ICD10CM|Other injury of muscle, fascia and tendon of triceps, left arm, subsequent encounter|Other injury of muscle, fascia and tendon of triceps, left arm, subsequent encounter +C2843144|T037|AB|S46.392S|ICD10CM|Inj muscle, fascia and tendon of triceps, left arm, sequela|Inj muscle, fascia and tendon of triceps, left arm, sequela +C2843144|T037|PT|S46.392S|ICD10CM|Other injury of muscle, fascia and tendon of triceps, left arm, sequela|Other injury of muscle, fascia and tendon of triceps, left arm, sequela +C2843145|T037|AB|S46.399|ICD10CM|Oth injury of muscle, fascia and tendon of triceps, unsp arm|Oth injury of muscle, fascia and tendon of triceps, unsp arm +C2843145|T037|HT|S46.399|ICD10CM|Other injury of muscle, fascia and tendon of triceps, unspecified arm|Other injury of muscle, fascia and tendon of triceps, unspecified arm +C2843146|T037|AB|S46.399A|ICD10CM|Inj muscle, fascia and tendon of triceps, unsp arm, init|Inj muscle, fascia and tendon of triceps, unsp arm, init +C2843146|T037|PT|S46.399A|ICD10CM|Other injury of muscle, fascia and tendon of triceps, unspecified arm, initial encounter|Other injury of muscle, fascia and tendon of triceps, unspecified arm, initial encounter +C2843147|T037|AB|S46.399D|ICD10CM|Inj muscle, fascia and tendon of triceps, unsp arm, subs|Inj muscle, fascia and tendon of triceps, unsp arm, subs +C2843147|T037|PT|S46.399D|ICD10CM|Other injury of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter|Other injury of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter +C2843148|T037|AB|S46.399S|ICD10CM|Inj muscle, fascia and tendon of triceps, unsp arm, sequela|Inj muscle, fascia and tendon of triceps, unsp arm, sequela +C2843148|T037|PT|S46.399S|ICD10CM|Other injury of muscle, fascia and tendon of triceps, unspecified arm, sequela|Other injury of muscle, fascia and tendon of triceps, unspecified arm, sequela +C0451848|T037|PT|S46.7|ICD10|Injury of multiple muscles and tendons at shoulder and upper arm level|Injury of multiple muscles and tendons at shoulder and upper arm level +C2843149|T037|AB|S46.8|ICD10CM|Injury of musc/fasc/tend at shoulder and upper arm level|Injury of musc/fasc/tend at shoulder and upper arm level +C0478280|T037|PT|S46.8|ICD10|Injury of other muscles and tendons at shoulder and upper arm level|Injury of other muscles and tendons at shoulder and upper arm level +C2843149|T037|HT|S46.8|ICD10CM|Injury of other muscles, fascia and tendons at shoulder and upper arm level|Injury of other muscles, fascia and tendons at shoulder and upper arm level +C2843150|T037|AB|S46.80|ICD10CM|Unsp injury of musc/fasc/tend at shldr/up arm|Unsp injury of musc/fasc/tend at shldr/up arm +C2843150|T037|HT|S46.80|ICD10CM|Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level|Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level +C2843151|T037|AB|S46.801|ICD10CM|Unsp injury of musc/fasc/tend at shldr/up arm, right arm|Unsp injury of musc/fasc/tend at shldr/up arm, right arm +C2843151|T037|HT|S46.801|ICD10CM|Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm|Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm +C2843152|T037|AB|S46.801A|ICD10CM|Unsp inj musc/fasc/tend at shldr/up arm, right arm, init|Unsp inj musc/fasc/tend at shldr/up arm, right arm, init +C2843153|T037|AB|S46.801D|ICD10CM|Unsp inj musc/fasc/tend at shldr/up arm, right arm, subs|Unsp inj musc/fasc/tend at shldr/up arm, right arm, subs +C2843154|T037|AB|S46.801S|ICD10CM|Unsp inj musc/fasc/tend at shldr/up arm, right arm, sequela|Unsp inj musc/fasc/tend at shldr/up arm, right arm, sequela +C2843155|T037|AB|S46.802|ICD10CM|Unsp injury of musc/fasc/tend at shldr/up arm, left arm|Unsp injury of musc/fasc/tend at shldr/up arm, left arm +C2843155|T037|HT|S46.802|ICD10CM|Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm|Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm +C2843156|T037|AB|S46.802A|ICD10CM|Unsp inj musc/fasc/tend at shldr/up arm, left arm, init|Unsp inj musc/fasc/tend at shldr/up arm, left arm, init +C2843157|T037|AB|S46.802D|ICD10CM|Unsp inj musc/fasc/tend at shldr/up arm, left arm, subs|Unsp inj musc/fasc/tend at shldr/up arm, left arm, subs +C2843158|T037|AB|S46.802S|ICD10CM|Unsp inj musc/fasc/tend at shldr/up arm, left arm, sequela|Unsp inj musc/fasc/tend at shldr/up arm, left arm, sequela +C2843159|T037|AB|S46.809|ICD10CM|Unsp injury of musc/fasc/tend at shldr/up arm, unsp arm|Unsp injury of musc/fasc/tend at shldr/up arm, unsp arm +C2843160|T037|AB|S46.809A|ICD10CM|Unsp inj musc/fasc/tend at shldr/up arm, unsp arm, init|Unsp inj musc/fasc/tend at shldr/up arm, unsp arm, init +C2843161|T037|AB|S46.809D|ICD10CM|Unsp inj musc/fasc/tend at shldr/up arm, unsp arm, subs|Unsp inj musc/fasc/tend at shldr/up arm, unsp arm, subs +C2843162|T037|AB|S46.809S|ICD10CM|Unsp inj musc/fasc/tend at shldr/up arm, unsp arm, sequela|Unsp inj musc/fasc/tend at shldr/up arm, unsp arm, sequela +C2843163|T037|AB|S46.81|ICD10CM|Strain of musc/fasc/tend at shoulder and upper arm level|Strain of musc/fasc/tend at shoulder and upper arm level +C2843163|T037|HT|S46.81|ICD10CM|Strain of other muscles, fascia and tendons at shoulder and upper arm level|Strain of other muscles, fascia and tendons at shoulder and upper arm level +C2843164|T037|AB|S46.811|ICD10CM|Strain of musc/fasc/tend at shldr/up arm, right arm|Strain of musc/fasc/tend at shldr/up arm, right arm +C2843164|T037|HT|S46.811|ICD10CM|Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm|Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm +C2843165|T037|AB|S46.811A|ICD10CM|Strain of musc/fasc/tend at shldr/up arm, right arm, init|Strain of musc/fasc/tend at shldr/up arm, right arm, init +C2843166|T037|AB|S46.811D|ICD10CM|Strain of musc/fasc/tend at shldr/up arm, right arm, subs|Strain of musc/fasc/tend at shldr/up arm, right arm, subs +C2843167|T037|AB|S46.811S|ICD10CM|Strain of musc/fasc/tend at shldr/up arm, right arm, sequela|Strain of musc/fasc/tend at shldr/up arm, right arm, sequela +C2843167|T037|PT|S46.811S|ICD10CM|Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela|Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela +C2843168|T037|AB|S46.812|ICD10CM|Strain of musc/fasc/tend at shldr/up arm, left arm|Strain of musc/fasc/tend at shldr/up arm, left arm +C2843168|T037|HT|S46.812|ICD10CM|Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm|Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm +C2843169|T037|AB|S46.812A|ICD10CM|Strain of musc/fasc/tend at shldr/up arm, left arm, init|Strain of musc/fasc/tend at shldr/up arm, left arm, init +C2843170|T037|AB|S46.812D|ICD10CM|Strain of musc/fasc/tend at shldr/up arm, left arm, subs|Strain of musc/fasc/tend at shldr/up arm, left arm, subs +C2843171|T037|AB|S46.812S|ICD10CM|Strain of musc/fasc/tend at shldr/up arm, left arm, sequela|Strain of musc/fasc/tend at shldr/up arm, left arm, sequela +C2843171|T037|PT|S46.812S|ICD10CM|Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela|Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela +C2843172|T037|AB|S46.819|ICD10CM|Strain of musc/fasc/tend at shldr/up arm, unsp arm|Strain of musc/fasc/tend at shldr/up arm, unsp arm +C2843172|T037|HT|S46.819|ICD10CM|Strain of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm|Strain of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm +C2843173|T037|AB|S46.819A|ICD10CM|Strain of musc/fasc/tend at shldr/up arm, unsp arm, init|Strain of musc/fasc/tend at shldr/up arm, unsp arm, init +C2843174|T037|AB|S46.819D|ICD10CM|Strain of musc/fasc/tend at shldr/up arm, unsp arm, subs|Strain of musc/fasc/tend at shldr/up arm, unsp arm, subs +C2843175|T037|AB|S46.819S|ICD10CM|Strain of musc/fasc/tend at shldr/up arm, unsp arm, sequela|Strain of musc/fasc/tend at shldr/up arm, unsp arm, sequela +C2843176|T037|AB|S46.82|ICD10CM|Laceration of musc/fasc/tend at shoulder and upper arm level|Laceration of musc/fasc/tend at shoulder and upper arm level +C2843176|T037|HT|S46.82|ICD10CM|Laceration of other muscles, fascia and tendons at shoulder and upper arm level|Laceration of other muscles, fascia and tendons at shoulder and upper arm level +C2843177|T037|AB|S46.821|ICD10CM|Laceration of musc/fasc/tend at shldr/up arm, right arm|Laceration of musc/fasc/tend at shldr/up arm, right arm +C2843177|T037|HT|S46.821|ICD10CM|Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm|Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm +C2843178|T037|AB|S46.821A|ICD10CM|Lacerat musc/fasc/tend at shldr/up arm, right arm, init|Lacerat musc/fasc/tend at shldr/up arm, right arm, init +C2843179|T037|AB|S46.821D|ICD10CM|Lacerat musc/fasc/tend at shldr/up arm, right arm, subs|Lacerat musc/fasc/tend at shldr/up arm, right arm, subs +C2843180|T037|AB|S46.821S|ICD10CM|Lacerat musc/fasc/tend at shldr/up arm, right arm, sequela|Lacerat musc/fasc/tend at shldr/up arm, right arm, sequela +C2843180|T037|PT|S46.821S|ICD10CM|Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela|Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela +C2843181|T037|AB|S46.822|ICD10CM|Laceration of musc/fasc/tend at shldr/up arm, left arm|Laceration of musc/fasc/tend at shldr/up arm, left arm +C2843181|T037|HT|S46.822|ICD10CM|Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm|Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm +C2843182|T037|AB|S46.822A|ICD10CM|Laceration of musc/fasc/tend at shldr/up arm, left arm, init|Laceration of musc/fasc/tend at shldr/up arm, left arm, init +C2843183|T037|AB|S46.822D|ICD10CM|Laceration of musc/fasc/tend at shldr/up arm, left arm, subs|Laceration of musc/fasc/tend at shldr/up arm, left arm, subs +C2843184|T037|AB|S46.822S|ICD10CM|Lacerat musc/fasc/tend at shldr/up arm, left arm, sequela|Lacerat musc/fasc/tend at shldr/up arm, left arm, sequela +C2843184|T037|PT|S46.822S|ICD10CM|Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela|Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela +C2843185|T037|AB|S46.829|ICD10CM|Laceration of musc/fasc/tend at shldr/up arm, unsp arm|Laceration of musc/fasc/tend at shldr/up arm, unsp arm +C2843185|T037|HT|S46.829|ICD10CM|Laceration of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm|Laceration of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm +C2843186|T037|AB|S46.829A|ICD10CM|Laceration of musc/fasc/tend at shldr/up arm, unsp arm, init|Laceration of musc/fasc/tend at shldr/up arm, unsp arm, init +C2843187|T037|AB|S46.829D|ICD10CM|Laceration of musc/fasc/tend at shldr/up arm, unsp arm, subs|Laceration of musc/fasc/tend at shldr/up arm, unsp arm, subs +C2843188|T037|AB|S46.829S|ICD10CM|Lacerat musc/fasc/tend at shldr/up arm, unsp arm, sequela|Lacerat musc/fasc/tend at shldr/up arm, unsp arm, sequela +C2843189|T037|AB|S46.89|ICD10CM|Oth injury of musc/fasc/tend at shoulder and upper arm level|Oth injury of musc/fasc/tend at shoulder and upper arm level +C2843189|T037|HT|S46.89|ICD10CM|Other injury of other muscles, fascia and tendons at shoulder and upper arm level|Other injury of other muscles, fascia and tendons at shoulder and upper arm level +C2843190|T037|AB|S46.891|ICD10CM|Inj musc/fasc/tend at shldr/up arm, right arm|Inj musc/fasc/tend at shldr/up arm, right arm +C2843190|T037|HT|S46.891|ICD10CM|Other injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm|Other injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm +C2843191|T037|AB|S46.891A|ICD10CM|Inj musc/fasc/tend at shldr/up arm, right arm, init|Inj musc/fasc/tend at shldr/up arm, right arm, init +C2843192|T037|AB|S46.891D|ICD10CM|Inj musc/fasc/tend at shldr/up arm, right arm, subs|Inj musc/fasc/tend at shldr/up arm, right arm, subs +C2843193|T037|AB|S46.891S|ICD10CM|Inj musc/fasc/tend at shldr/up arm, right arm, sequela|Inj musc/fasc/tend at shldr/up arm, right arm, sequela +C2843194|T037|AB|S46.892|ICD10CM|Inj musc/fasc/tend at shoulder and upper arm level, left arm|Inj musc/fasc/tend at shoulder and upper arm level, left arm +C2843194|T037|HT|S46.892|ICD10CM|Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm|Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm +C2843195|T037|AB|S46.892A|ICD10CM|Inj musc/fasc/tend at shldr/up arm, left arm, init|Inj musc/fasc/tend at shldr/up arm, left arm, init +C2843196|T037|AB|S46.892D|ICD10CM|Inj musc/fasc/tend at shldr/up arm, left arm, subs|Inj musc/fasc/tend at shldr/up arm, left arm, subs +C2843197|T037|AB|S46.892S|ICD10CM|Inj musc/fasc/tend at shldr/up arm, left arm, sequela|Inj musc/fasc/tend at shldr/up arm, left arm, sequela +C2843197|T037|PT|S46.892S|ICD10CM|Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela|Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela +C2843198|T037|AB|S46.899|ICD10CM|Inj musc/fasc/tend at shoulder and upper arm level, unsp arm|Inj musc/fasc/tend at shoulder and upper arm level, unsp arm +C2843198|T037|HT|S46.899|ICD10CM|Other injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm|Other injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm +C2843199|T037|AB|S46.899A|ICD10CM|Inj musc/fasc/tend at shldr/up arm, unsp arm, init|Inj musc/fasc/tend at shldr/up arm, unsp arm, init +C2843200|T037|AB|S46.899D|ICD10CM|Inj musc/fasc/tend at shldr/up arm, unsp arm, subs|Inj musc/fasc/tend at shldr/up arm, unsp arm, subs +C2843201|T037|AB|S46.899S|ICD10CM|Inj musc/fasc/tend at shldr/up arm, unsp arm, sequela|Inj musc/fasc/tend at shldr/up arm, unsp arm, sequela +C2843202|T037|AB|S46.9|ICD10CM|Injury of unsp muscle, fascia and tendon at shldr/up arm|Injury of unsp muscle, fascia and tendon at shldr/up arm +C0478281|T037|PT|S46.9|ICD10|Injury of unspecified muscle and tendon at shoulder and upper arm level|Injury of unspecified muscle and tendon at shoulder and upper arm level +C2843202|T037|HT|S46.9|ICD10CM|Injury of unspecified muscle, fascia and tendon at shoulder and upper arm level|Injury of unspecified muscle, fascia and tendon at shoulder and upper arm level +C2843203|T037|AB|S46.90|ICD10CM|Unsp injury of unsp musc/fasc/tend at shldr/up arm|Unsp injury of unsp musc/fasc/tend at shldr/up arm +C2843203|T037|HT|S46.90|ICD10CM|Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level|Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level +C2843204|T037|AB|S46.901|ICD10CM|Unsp inj unsp musc/fasc/tend at shldr/up arm, right arm|Unsp inj unsp musc/fasc/tend at shldr/up arm, right arm +C2843205|T037|AB|S46.901A|ICD10CM|Unsp inj unsp musc/fasc/tend at shldr/up arm, r arm, init|Unsp inj unsp musc/fasc/tend at shldr/up arm, r arm, init +C2843206|T037|AB|S46.901D|ICD10CM|Unsp inj unsp musc/fasc/tend at shldr/up arm, r arm, subs|Unsp inj unsp musc/fasc/tend at shldr/up arm, r arm, subs +C2843207|T037|AB|S46.901S|ICD10CM|Unsp inj unsp musc/fasc/tend at shldr/up arm, r arm, sqla|Unsp inj unsp musc/fasc/tend at shldr/up arm, r arm, sqla +C2843208|T037|AB|S46.902|ICD10CM|Unsp injury of unsp musc/fasc/tend at shldr/up arm, left arm|Unsp injury of unsp musc/fasc/tend at shldr/up arm, left arm +C2843209|T037|AB|S46.902A|ICD10CM|Unsp inj unsp musc/fasc/tend at shldr/up arm, left arm, init|Unsp inj unsp musc/fasc/tend at shldr/up arm, left arm, init +C2843210|T037|AB|S46.902D|ICD10CM|Unsp inj unsp musc/fasc/tend at shldr/up arm, left arm, subs|Unsp inj unsp musc/fasc/tend at shldr/up arm, left arm, subs +C2843211|T037|AB|S46.902S|ICD10CM|Unsp inj unsp musc/fasc/tend at shldr/up arm, left arm, sqla|Unsp inj unsp musc/fasc/tend at shldr/up arm, left arm, sqla +C2843212|T037|AB|S46.909|ICD10CM|Unsp injury of unsp musc/fasc/tend at shldr/up arm, unsp arm|Unsp injury of unsp musc/fasc/tend at shldr/up arm, unsp arm +C2843213|T037|AB|S46.909A|ICD10CM|Unsp inj unsp musc/fasc/tend at shldr/up arm, unsp arm, init|Unsp inj unsp musc/fasc/tend at shldr/up arm, unsp arm, init +C2843214|T037|AB|S46.909D|ICD10CM|Unsp inj unsp musc/fasc/tend at shldr/up arm, unsp arm, subs|Unsp inj unsp musc/fasc/tend at shldr/up arm, unsp arm, subs +C2843215|T037|AB|S46.909S|ICD10CM|Unsp inj unsp musc/fasc/tend at shldr/up arm, unsp arm, sqla|Unsp inj unsp musc/fasc/tend at shldr/up arm, unsp arm, sqla +C2843216|T037|AB|S46.91|ICD10CM|Strain of unsp muscle, fascia and tendon at shldr/up arm|Strain of unsp muscle, fascia and tendon at shldr/up arm +C2843216|T037|HT|S46.91|ICD10CM|Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level|Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level +C2843217|T037|AB|S46.911|ICD10CM|Strain of unsp musc/fasc/tend at shldr/up arm, right arm|Strain of unsp musc/fasc/tend at shldr/up arm, right arm +C2843217|T037|HT|S46.911|ICD10CM|Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm|Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm +C2843218|T037|AB|S46.911A|ICD10CM|Strain unsp musc/fasc/tend at shldr/up arm, right arm, init|Strain unsp musc/fasc/tend at shldr/up arm, right arm, init +C2843219|T037|AB|S46.911D|ICD10CM|Strain unsp musc/fasc/tend at shldr/up arm, right arm, subs|Strain unsp musc/fasc/tend at shldr/up arm, right arm, subs +C2843220|T037|PT|S46.911S|ICD10CM|Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, sequela|Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, sequela +C2843220|T037|AB|S46.911S|ICD10CM|Strain unsp musc/fasc/tend at shldr/up arm, right arm, sqla|Strain unsp musc/fasc/tend at shldr/up arm, right arm, sqla +C2843221|T037|AB|S46.912|ICD10CM|Strain of unsp musc/fasc/tend at shldr/up arm, left arm|Strain of unsp musc/fasc/tend at shldr/up arm, left arm +C2843221|T037|HT|S46.912|ICD10CM|Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm|Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm +C2843222|T037|AB|S46.912A|ICD10CM|Strain unsp musc/fasc/tend at shldr/up arm, left arm, init|Strain unsp musc/fasc/tend at shldr/up arm, left arm, init +C2843223|T037|AB|S46.912D|ICD10CM|Strain unsp musc/fasc/tend at shldr/up arm, left arm, subs|Strain unsp musc/fasc/tend at shldr/up arm, left arm, subs +C2843224|T037|PT|S46.912S|ICD10CM|Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, sequela|Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, sequela +C2843224|T037|AB|S46.912S|ICD10CM|Strain unsp musc/fasc/tend at shldr/up arm, left arm, sqla|Strain unsp musc/fasc/tend at shldr/up arm, left arm, sqla +C2843225|T037|AB|S46.919|ICD10CM|Strain of unsp musc/fasc/tend at shldr/up arm, unsp arm|Strain of unsp musc/fasc/tend at shldr/up arm, unsp arm +C2843225|T037|HT|S46.919|ICD10CM|Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm|Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm +C2843226|T037|AB|S46.919A|ICD10CM|Strain unsp musc/fasc/tend at shldr/up arm, unsp arm, init|Strain unsp musc/fasc/tend at shldr/up arm, unsp arm, init +C2843227|T037|AB|S46.919D|ICD10CM|Strain unsp musc/fasc/tend at shldr/up arm, unsp arm, subs|Strain unsp musc/fasc/tend at shldr/up arm, unsp arm, subs +C2843228|T037|AB|S46.919S|ICD10CM|Strain unsp musc/fasc/tend at shldr/up arm, unsp arm, sqla|Strain unsp musc/fasc/tend at shldr/up arm, unsp arm, sqla +C2843229|T037|AB|S46.92|ICD10CM|Laceration of unsp muscle, fascia and tendon at shldr/up arm|Laceration of unsp muscle, fascia and tendon at shldr/up arm +C2843229|T037|HT|S46.92|ICD10CM|Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level|Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level +C2843230|T037|AB|S46.921|ICD10CM|Laceration of unsp musc/fasc/tend at shldr/up arm, right arm|Laceration of unsp musc/fasc/tend at shldr/up arm, right arm +C2843230|T037|HT|S46.921|ICD10CM|Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm|Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm +C2843231|T037|AB|S46.921A|ICD10CM|Lacerat unsp musc/fasc/tend at shldr/up arm, right arm, init|Lacerat unsp musc/fasc/tend at shldr/up arm, right arm, init +C2843232|T037|AB|S46.921D|ICD10CM|Lacerat unsp musc/fasc/tend at shldr/up arm, right arm, subs|Lacerat unsp musc/fasc/tend at shldr/up arm, right arm, subs +C2843233|T037|AB|S46.921S|ICD10CM|Lacerat unsp musc/fasc/tend at shldr/up arm, right arm, sqla|Lacerat unsp musc/fasc/tend at shldr/up arm, right arm, sqla +C2843234|T037|AB|S46.922|ICD10CM|Laceration of unsp musc/fasc/tend at shldr/up arm, left arm|Laceration of unsp musc/fasc/tend at shldr/up arm, left arm +C2843234|T037|HT|S46.922|ICD10CM|Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm|Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm +C2843235|T037|AB|S46.922A|ICD10CM|Lacerat unsp musc/fasc/tend at shldr/up arm, left arm, init|Lacerat unsp musc/fasc/tend at shldr/up arm, left arm, init +C2843236|T037|AB|S46.922D|ICD10CM|Lacerat unsp musc/fasc/tend at shldr/up arm, left arm, subs|Lacerat unsp musc/fasc/tend at shldr/up arm, left arm, subs +C2843237|T037|AB|S46.922S|ICD10CM|Lacerat unsp musc/fasc/tend at shldr/up arm, left arm, sqla|Lacerat unsp musc/fasc/tend at shldr/up arm, left arm, sqla +C2843238|T037|AB|S46.929|ICD10CM|Laceration of unsp musc/fasc/tend at shldr/up arm, unsp arm|Laceration of unsp musc/fasc/tend at shldr/up arm, unsp arm +C2843238|T037|HT|S46.929|ICD10CM|Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm|Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm +C2843239|T037|AB|S46.929A|ICD10CM|Lacerat unsp musc/fasc/tend at shldr/up arm, unsp arm, init|Lacerat unsp musc/fasc/tend at shldr/up arm, unsp arm, init +C2843240|T037|AB|S46.929D|ICD10CM|Lacerat unsp musc/fasc/tend at shldr/up arm, unsp arm, subs|Lacerat unsp musc/fasc/tend at shldr/up arm, unsp arm, subs +C2843241|T037|AB|S46.929S|ICD10CM|Lacerat unsp musc/fasc/tend at shldr/up arm, unsp arm, sqla|Lacerat unsp musc/fasc/tend at shldr/up arm, unsp arm, sqla +C2843242|T037|AB|S46.99|ICD10CM|Inj unsp muscle, fascia and tendon at shldr/up arm|Inj unsp muscle, fascia and tendon at shldr/up arm +C2843242|T037|HT|S46.99|ICD10CM|Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level|Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level +C2843243|T037|AB|S46.991|ICD10CM|Inj unsp musc/fasc/tend at shldr/up arm, right arm|Inj unsp musc/fasc/tend at shldr/up arm, right arm +C2843243|T037|HT|S46.991|ICD10CM|Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm|Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm +C2843244|T037|AB|S46.991A|ICD10CM|Inj unsp musc/fasc/tend at shldr/up arm, right arm, init|Inj unsp musc/fasc/tend at shldr/up arm, right arm, init +C2843245|T037|AB|S46.991D|ICD10CM|Inj unsp musc/fasc/tend at shldr/up arm, right arm, subs|Inj unsp musc/fasc/tend at shldr/up arm, right arm, subs +C2843246|T037|AB|S46.991S|ICD10CM|Inj unsp musc/fasc/tend at shldr/up arm, right arm, sequela|Inj unsp musc/fasc/tend at shldr/up arm, right arm, sequela +C2843247|T037|AB|S46.992|ICD10CM|Inj unsp muscle, fascia and tendon at shldr/up arm, left arm|Inj unsp muscle, fascia and tendon at shldr/up arm, left arm +C2843247|T037|HT|S46.992|ICD10CM|Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm|Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm +C2843248|T037|AB|S46.992A|ICD10CM|Inj unsp musc/fasc/tend at shldr/up arm, left arm, init|Inj unsp musc/fasc/tend at shldr/up arm, left arm, init +C2843249|T037|AB|S46.992D|ICD10CM|Inj unsp musc/fasc/tend at shldr/up arm, left arm, subs|Inj unsp musc/fasc/tend at shldr/up arm, left arm, subs +C2843250|T037|AB|S46.992S|ICD10CM|Inj unsp musc/fasc/tend at shldr/up arm, left arm, sequela|Inj unsp musc/fasc/tend at shldr/up arm, left arm, sequela +C2843251|T037|AB|S46.999|ICD10CM|Inj unsp muscle, fascia and tendon at shldr/up arm, unsp arm|Inj unsp muscle, fascia and tendon at shldr/up arm, unsp arm +C2843252|T037|AB|S46.999A|ICD10CM|Inj unsp musc/fasc/tend at shldr/up arm, unsp arm, init|Inj unsp musc/fasc/tend at shldr/up arm, unsp arm, init +C2843253|T037|AB|S46.999D|ICD10CM|Inj unsp musc/fasc/tend at shldr/up arm, unsp arm, subs|Inj unsp musc/fasc/tend at shldr/up arm, unsp arm, subs +C2843254|T037|AB|S46.999S|ICD10CM|Inj unsp musc/fasc/tend at shldr/up arm, unsp arm, sequela|Inj unsp musc/fasc/tend at shldr/up arm, unsp arm, sequela +C0160970|T037|PT|S47|ICD10|Crushing injury of shoulder and upper arm|Crushing injury of shoulder and upper arm +C0160970|T037|HT|S47|ICD10CM|Crushing injury of shoulder and upper arm|Crushing injury of shoulder and upper arm +C0160970|T037|AB|S47|ICD10CM|Crushing injury of shoulder and upper arm|Crushing injury of shoulder and upper arm +C2843255|T037|AB|S47.1|ICD10CM|Crushing injury of right shoulder and upper arm|Crushing injury of right shoulder and upper arm +C2843255|T037|HT|S47.1|ICD10CM|Crushing injury of right shoulder and upper arm|Crushing injury of right shoulder and upper arm +C2843256|T037|AB|S47.1XXA|ICD10CM|Crushing injury of right shoulder and upper arm, init encntr|Crushing injury of right shoulder and upper arm, init encntr +C2843256|T037|PT|S47.1XXA|ICD10CM|Crushing injury of right shoulder and upper arm, initial encounter|Crushing injury of right shoulder and upper arm, initial encounter +C2843257|T037|AB|S47.1XXD|ICD10CM|Crushing injury of right shoulder and upper arm, subs encntr|Crushing injury of right shoulder and upper arm, subs encntr +C2843257|T037|PT|S47.1XXD|ICD10CM|Crushing injury of right shoulder and upper arm, subsequent encounter|Crushing injury of right shoulder and upper arm, subsequent encounter +C2843258|T037|PT|S47.1XXS|ICD10CM|Crushing injury of right shoulder and upper arm, sequela|Crushing injury of right shoulder and upper arm, sequela +C2843258|T037|AB|S47.1XXS|ICD10CM|Crushing injury of right shoulder and upper arm, sequela|Crushing injury of right shoulder and upper arm, sequela +C2843259|T037|AB|S47.2|ICD10CM|Crushing injury of left shoulder and upper arm|Crushing injury of left shoulder and upper arm +C2843259|T037|HT|S47.2|ICD10CM|Crushing injury of left shoulder and upper arm|Crushing injury of left shoulder and upper arm +C2843260|T037|AB|S47.2XXA|ICD10CM|Crushing injury of left shoulder and upper arm, init encntr|Crushing injury of left shoulder and upper arm, init encntr +C2843260|T037|PT|S47.2XXA|ICD10CM|Crushing injury of left shoulder and upper arm, initial encounter|Crushing injury of left shoulder and upper arm, initial encounter +C2843261|T037|AB|S47.2XXD|ICD10CM|Crushing injury of left shoulder and upper arm, subs encntr|Crushing injury of left shoulder and upper arm, subs encntr +C2843261|T037|PT|S47.2XXD|ICD10CM|Crushing injury of left shoulder and upper arm, subsequent encounter|Crushing injury of left shoulder and upper arm, subsequent encounter +C2843262|T037|PT|S47.2XXS|ICD10CM|Crushing injury of left shoulder and upper arm, sequela|Crushing injury of left shoulder and upper arm, sequela +C2843262|T037|AB|S47.2XXS|ICD10CM|Crushing injury of left shoulder and upper arm, sequela|Crushing injury of left shoulder and upper arm, sequela +C2843263|T037|AB|S47.9|ICD10CM|Crushing injury of shoulder and upper arm, unspecified arm|Crushing injury of shoulder and upper arm, unspecified arm +C2843263|T037|HT|S47.9|ICD10CM|Crushing injury of shoulder and upper arm, unspecified arm|Crushing injury of shoulder and upper arm, unspecified arm +C2843264|T037|AB|S47.9XXA|ICD10CM|Crushing injury of shoulder and upper arm, unsp arm, init|Crushing injury of shoulder and upper arm, unsp arm, init +C2843264|T037|PT|S47.9XXA|ICD10CM|Crushing injury of shoulder and upper arm, unspecified arm, initial encounter|Crushing injury of shoulder and upper arm, unspecified arm, initial encounter +C2843265|T037|AB|S47.9XXD|ICD10CM|Crushing injury of shoulder and upper arm, unsp arm, subs|Crushing injury of shoulder and upper arm, unsp arm, subs +C2843265|T037|PT|S47.9XXD|ICD10CM|Crushing injury of shoulder and upper arm, unspecified arm, subsequent encounter|Crushing injury of shoulder and upper arm, unspecified arm, subsequent encounter +C2843266|T037|AB|S47.9XXS|ICD10CM|Crushing injury of shoulder and upper arm, unsp arm, sequela|Crushing injury of shoulder and upper arm, unsp arm, sequela +C2843266|T037|PT|S47.9XXS|ICD10CM|Crushing injury of shoulder and upper arm, unspecified arm, sequela|Crushing injury of shoulder and upper arm, unspecified arm, sequela +C2977737|T033|ET|S48|ICD10CM|An amputation not identified as partial or complete should be coded to complete|An amputation not identified as partial or complete should be coded to complete +C0495872|T037|AB|S48|ICD10CM|Traumatic amputation of shoulder and upper arm|Traumatic amputation of shoulder and upper arm +C0495872|T037|HT|S48|ICD10CM|Traumatic amputation of shoulder and upper arm|Traumatic amputation of shoulder and upper arm +C0495872|T037|HT|S48|ICD10|Traumatic amputation of shoulder and upper arm|Traumatic amputation of shoulder and upper arm +C0433614|T037|PT|S48.0|ICD10|Traumatic amputation at shoulder joint|Traumatic amputation at shoulder joint +C0433614|T037|HT|S48.0|ICD10CM|Traumatic amputation at shoulder joint|Traumatic amputation at shoulder joint +C0433614|T037|AB|S48.0|ICD10CM|Traumatic amputation at shoulder joint|Traumatic amputation at shoulder joint +C2843267|T037|AB|S48.01|ICD10CM|Complete traumatic amputation at shoulder joint|Complete traumatic amputation at shoulder joint +C2843267|T037|HT|S48.01|ICD10CM|Complete traumatic amputation at shoulder joint|Complete traumatic amputation at shoulder joint +C2843268|T037|AB|S48.011|ICD10CM|Complete traumatic amputation at right shoulder joint|Complete traumatic amputation at right shoulder joint +C2843268|T037|HT|S48.011|ICD10CM|Complete traumatic amputation at right shoulder joint|Complete traumatic amputation at right shoulder joint +C2843269|T037|AB|S48.011A|ICD10CM|Complete traumatic amputation at right shoulder joint, init|Complete traumatic amputation at right shoulder joint, init +C2843269|T037|PT|S48.011A|ICD10CM|Complete traumatic amputation at right shoulder joint, initial encounter|Complete traumatic amputation at right shoulder joint, initial encounter +C2843270|T037|AB|S48.011D|ICD10CM|Complete traumatic amputation at right shoulder joint, subs|Complete traumatic amputation at right shoulder joint, subs +C2843270|T037|PT|S48.011D|ICD10CM|Complete traumatic amputation at right shoulder joint, subsequent encounter|Complete traumatic amputation at right shoulder joint, subsequent encounter +C2843271|T037|AB|S48.011S|ICD10CM|Complete traumatic amputation at r shoulder jt, sequela|Complete traumatic amputation at r shoulder jt, sequela +C2843271|T037|PT|S48.011S|ICD10CM|Complete traumatic amputation at right shoulder joint, sequela|Complete traumatic amputation at right shoulder joint, sequela +C2843272|T037|AB|S48.012|ICD10CM|Complete traumatic amputation at left shoulder joint|Complete traumatic amputation at left shoulder joint +C2843272|T037|HT|S48.012|ICD10CM|Complete traumatic amputation at left shoulder joint|Complete traumatic amputation at left shoulder joint +C2843273|T037|AB|S48.012A|ICD10CM|Complete traumatic amputation at left shoulder joint, init|Complete traumatic amputation at left shoulder joint, init +C2843273|T037|PT|S48.012A|ICD10CM|Complete traumatic amputation at left shoulder joint, initial encounter|Complete traumatic amputation at left shoulder joint, initial encounter +C2843274|T037|AB|S48.012D|ICD10CM|Complete traumatic amputation at left shoulder joint, subs|Complete traumatic amputation at left shoulder joint, subs +C2843274|T037|PT|S48.012D|ICD10CM|Complete traumatic amputation at left shoulder joint, subsequent encounter|Complete traumatic amputation at left shoulder joint, subsequent encounter +C2843275|T037|AB|S48.012S|ICD10CM|Complete traumatic amputation at l shoulder jt, sequela|Complete traumatic amputation at l shoulder jt, sequela +C2843275|T037|PT|S48.012S|ICD10CM|Complete traumatic amputation at left shoulder joint, sequela|Complete traumatic amputation at left shoulder joint, sequela +C2843276|T037|AB|S48.019|ICD10CM|Complete traumatic amputation at unspecified shoulder joint|Complete traumatic amputation at unspecified shoulder joint +C2843276|T037|HT|S48.019|ICD10CM|Complete traumatic amputation at unspecified shoulder joint|Complete traumatic amputation at unspecified shoulder joint +C2843277|T037|AB|S48.019A|ICD10CM|Complete traumatic amputation at unsp shoulder joint, init|Complete traumatic amputation at unsp shoulder joint, init +C2843277|T037|PT|S48.019A|ICD10CM|Complete traumatic amputation at unspecified shoulder joint, initial encounter|Complete traumatic amputation at unspecified shoulder joint, initial encounter +C2843278|T037|AB|S48.019D|ICD10CM|Complete traumatic amputation at unsp shoulder joint, subs|Complete traumatic amputation at unsp shoulder joint, subs +C2843278|T037|PT|S48.019D|ICD10CM|Complete traumatic amputation at unspecified shoulder joint, subsequent encounter|Complete traumatic amputation at unspecified shoulder joint, subsequent encounter +C2843279|T037|AB|S48.019S|ICD10CM|Complete traumatic amputation at unsp shoulder jt, sequela|Complete traumatic amputation at unsp shoulder jt, sequela +C2843279|T037|PT|S48.019S|ICD10CM|Complete traumatic amputation at unspecified shoulder joint, sequela|Complete traumatic amputation at unspecified shoulder joint, sequela +C3511088|T037|HT|S48.02|ICD10CM|Partial traumatic amputation at shoulder joint|Partial traumatic amputation at shoulder joint +C3511088|T037|AB|S48.02|ICD10CM|Partial traumatic amputation at shoulder joint|Partial traumatic amputation at shoulder joint +C2843281|T037|AB|S48.021|ICD10CM|Partial traumatic amputation at right shoulder joint|Partial traumatic amputation at right shoulder joint +C2843281|T037|HT|S48.021|ICD10CM|Partial traumatic amputation at right shoulder joint|Partial traumatic amputation at right shoulder joint +C2843282|T037|AB|S48.021A|ICD10CM|Partial traumatic amputation at right shoulder joint, init|Partial traumatic amputation at right shoulder joint, init +C2843282|T037|PT|S48.021A|ICD10CM|Partial traumatic amputation at right shoulder joint, initial encounter|Partial traumatic amputation at right shoulder joint, initial encounter +C2843283|T037|AB|S48.021D|ICD10CM|Partial traumatic amputation at right shoulder joint, subs|Partial traumatic amputation at right shoulder joint, subs +C2843283|T037|PT|S48.021D|ICD10CM|Partial traumatic amputation at right shoulder joint, subsequent encounter|Partial traumatic amputation at right shoulder joint, subsequent encounter +C2843284|T037|AB|S48.021S|ICD10CM|Partial traumatic amputation at r shoulder jt, sequela|Partial traumatic amputation at r shoulder jt, sequela +C2843284|T037|PT|S48.021S|ICD10CM|Partial traumatic amputation at right shoulder joint, sequela|Partial traumatic amputation at right shoulder joint, sequela +C2843285|T037|AB|S48.022|ICD10CM|Partial traumatic amputation at left shoulder joint|Partial traumatic amputation at left shoulder joint +C2843285|T037|HT|S48.022|ICD10CM|Partial traumatic amputation at left shoulder joint|Partial traumatic amputation at left shoulder joint +C2843286|T037|AB|S48.022A|ICD10CM|Partial traumatic amputation at left shoulder joint, init|Partial traumatic amputation at left shoulder joint, init +C2843286|T037|PT|S48.022A|ICD10CM|Partial traumatic amputation at left shoulder joint, initial encounter|Partial traumatic amputation at left shoulder joint, initial encounter +C2843287|T037|AB|S48.022D|ICD10CM|Partial traumatic amputation at left shoulder joint, subs|Partial traumatic amputation at left shoulder joint, subs +C2843287|T037|PT|S48.022D|ICD10CM|Partial traumatic amputation at left shoulder joint, subsequent encounter|Partial traumatic amputation at left shoulder joint, subsequent encounter +C2843288|T037|AB|S48.022S|ICD10CM|Partial traumatic amputation at left shoulder joint, sequela|Partial traumatic amputation at left shoulder joint, sequela +C2843288|T037|PT|S48.022S|ICD10CM|Partial traumatic amputation at left shoulder joint, sequela|Partial traumatic amputation at left shoulder joint, sequela +C2843289|T037|AB|S48.029|ICD10CM|Partial traumatic amputation at unspecified shoulder joint|Partial traumatic amputation at unspecified shoulder joint +C2843289|T037|HT|S48.029|ICD10CM|Partial traumatic amputation at unspecified shoulder joint|Partial traumatic amputation at unspecified shoulder joint +C2843290|T037|AB|S48.029A|ICD10CM|Partial traumatic amputation at unsp shoulder joint, init|Partial traumatic amputation at unsp shoulder joint, init +C2843290|T037|PT|S48.029A|ICD10CM|Partial traumatic amputation at unspecified shoulder joint, initial encounter|Partial traumatic amputation at unspecified shoulder joint, initial encounter +C2843291|T037|AB|S48.029D|ICD10CM|Partial traumatic amputation at unsp shoulder joint, subs|Partial traumatic amputation at unsp shoulder joint, subs +C2843291|T037|PT|S48.029D|ICD10CM|Partial traumatic amputation at unspecified shoulder joint, subsequent encounter|Partial traumatic amputation at unspecified shoulder joint, subsequent encounter +C2843292|T037|AB|S48.029S|ICD10CM|Partial traumatic amputation at unsp shoulder joint, sequela|Partial traumatic amputation at unsp shoulder joint, sequela +C2843292|T037|PT|S48.029S|ICD10CM|Partial traumatic amputation at unspecified shoulder joint, sequela|Partial traumatic amputation at unspecified shoulder joint, sequela +C0495873|T037|PT|S48.1|ICD10|Traumatic amputation at level between shoulder and elbow|Traumatic amputation at level between shoulder and elbow +C0495873|T037|HT|S48.1|ICD10CM|Traumatic amputation at level between shoulder and elbow|Traumatic amputation at level between shoulder and elbow +C0495873|T037|AB|S48.1|ICD10CM|Traumatic amputation at level between shoulder and elbow|Traumatic amputation at level between shoulder and elbow +C2843293|T037|AB|S48.11|ICD10CM|Complete traumatic amp at level betw shoulder and elbow|Complete traumatic amp at level betw shoulder and elbow +C2843293|T037|HT|S48.11|ICD10CM|Complete traumatic amputation at level between shoulder and elbow|Complete traumatic amputation at level between shoulder and elbow +C2843294|T037|AB|S48.111|ICD10CM|Complete traumatic amp at level betw r shoulder and elbow|Complete traumatic amp at level betw r shoulder and elbow +C2843294|T037|HT|S48.111|ICD10CM|Complete traumatic amputation at level between right shoulder and elbow|Complete traumatic amputation at level between right shoulder and elbow +C2843295|T037|AB|S48.111A|ICD10CM|Complete traum amp at level betw r shoulder and elbow, init|Complete traum amp at level betw r shoulder and elbow, init +C2843295|T037|PT|S48.111A|ICD10CM|Complete traumatic amputation at level between right shoulder and elbow, initial encounter|Complete traumatic amputation at level between right shoulder and elbow, initial encounter +C2843296|T037|AB|S48.111D|ICD10CM|Complete traum amp at level betw r shoulder and elbow, subs|Complete traum amp at level betw r shoulder and elbow, subs +C2843296|T037|PT|S48.111D|ICD10CM|Complete traumatic amputation at level between right shoulder and elbow, subsequent encounter|Complete traumatic amputation at level between right shoulder and elbow, subsequent encounter +C2843297|T037|AB|S48.111S|ICD10CM|Complete traum amp at level betw r shldr and elbow, sequela|Complete traum amp at level betw r shldr and elbow, sequela +C2843297|T037|PT|S48.111S|ICD10CM|Complete traumatic amputation at level between right shoulder and elbow, sequela|Complete traumatic amputation at level between right shoulder and elbow, sequela +C2843298|T037|AB|S48.112|ICD10CM|Complete traumatic amp at level betw l shoulder and elbow|Complete traumatic amp at level betw l shoulder and elbow +C2843298|T037|HT|S48.112|ICD10CM|Complete traumatic amputation at level between left shoulder and elbow|Complete traumatic amputation at level between left shoulder and elbow +C2843299|T037|AB|S48.112A|ICD10CM|Complete traum amp at level betw l shoulder and elbow, init|Complete traum amp at level betw l shoulder and elbow, init +C2843299|T037|PT|S48.112A|ICD10CM|Complete traumatic amputation at level between left shoulder and elbow, initial encounter|Complete traumatic amputation at level between left shoulder and elbow, initial encounter +C2843300|T037|AB|S48.112D|ICD10CM|Complete traum amp at level betw l shoulder and elbow, subs|Complete traum amp at level betw l shoulder and elbow, subs +C2843300|T037|PT|S48.112D|ICD10CM|Complete traumatic amputation at level between left shoulder and elbow, subsequent encounter|Complete traumatic amputation at level between left shoulder and elbow, subsequent encounter +C2843301|T037|AB|S48.112S|ICD10CM|Complete traum amp at level betw l shldr and elbow, sequela|Complete traum amp at level betw l shldr and elbow, sequela +C2843301|T037|PT|S48.112S|ICD10CM|Complete traumatic amputation at level between left shoulder and elbow, sequela|Complete traumatic amputation at level between left shoulder and elbow, sequela +C2843302|T037|AB|S48.119|ICD10CM|Complete traumatic amp at level betw unsp shoulder and elbow|Complete traumatic amp at level betw unsp shoulder and elbow +C2843302|T037|HT|S48.119|ICD10CM|Complete traumatic amputation at level between unspecified shoulder and elbow|Complete traumatic amputation at level between unspecified shoulder and elbow +C2843303|T037|AB|S48.119A|ICD10CM|Complete traum amp at level betw unsp shldr and elbow, init|Complete traum amp at level betw unsp shldr and elbow, init +C2843303|T037|PT|S48.119A|ICD10CM|Complete traumatic amputation at level between unspecified shoulder and elbow, initial encounter|Complete traumatic amputation at level between unspecified shoulder and elbow, initial encounter +C2843304|T037|AB|S48.119D|ICD10CM|Complete traum amp at level betw unsp shldr and elbow, subs|Complete traum amp at level betw unsp shldr and elbow, subs +C2843304|T037|PT|S48.119D|ICD10CM|Complete traumatic amputation at level between unspecified shoulder and elbow, subsequent encounter|Complete traumatic amputation at level between unspecified shoulder and elbow, subsequent encounter +C2843305|T037|AB|S48.119S|ICD10CM|Complete traum amp at level betw unsp shldr and elbow, sqla|Complete traum amp at level betw unsp shldr and elbow, sqla +C2843305|T037|PT|S48.119S|ICD10CM|Complete traumatic amputation at level between unspecified shoulder and elbow, sequela|Complete traumatic amputation at level between unspecified shoulder and elbow, sequela +C2843306|T037|AB|S48.12|ICD10CM|Partial traumatic amp at level betw shoulder and elbow|Partial traumatic amp at level betw shoulder and elbow +C2843306|T037|HT|S48.12|ICD10CM|Partial traumatic amputation at level between shoulder and elbow|Partial traumatic amputation at level between shoulder and elbow +C2843307|T037|AB|S48.121|ICD10CM|Partial traumatic amp at level betw r shoulder and elbow|Partial traumatic amp at level betw r shoulder and elbow +C2843307|T037|HT|S48.121|ICD10CM|Partial traumatic amputation at level between right shoulder and elbow|Partial traumatic amputation at level between right shoulder and elbow +C2843308|T037|AB|S48.121A|ICD10CM|Partial traum amp at level betw r shoulder and elbow, init|Partial traum amp at level betw r shoulder and elbow, init +C2843308|T037|PT|S48.121A|ICD10CM|Partial traumatic amputation at level between right shoulder and elbow, initial encounter|Partial traumatic amputation at level between right shoulder and elbow, initial encounter +C2843309|T037|AB|S48.121D|ICD10CM|Partial traum amp at level betw r shoulder and elbow, subs|Partial traum amp at level betw r shoulder and elbow, subs +C2843309|T037|PT|S48.121D|ICD10CM|Partial traumatic amputation at level between right shoulder and elbow, subsequent encounter|Partial traumatic amputation at level between right shoulder and elbow, subsequent encounter +C2843310|T037|AB|S48.121S|ICD10CM|Partial traum amp at level betw r shldr and elbow, sequela|Partial traum amp at level betw r shldr and elbow, sequela +C2843310|T037|PT|S48.121S|ICD10CM|Partial traumatic amputation at level between right shoulder and elbow, sequela|Partial traumatic amputation at level between right shoulder and elbow, sequela +C2843311|T037|AB|S48.122|ICD10CM|Partial traumatic amp at level betw l shoulder and elbow|Partial traumatic amp at level betw l shoulder and elbow +C2843311|T037|HT|S48.122|ICD10CM|Partial traumatic amputation at level between left shoulder and elbow|Partial traumatic amputation at level between left shoulder and elbow +C2843312|T037|AB|S48.122A|ICD10CM|Partial traum amp at level betw l shoulder and elbow, init|Partial traum amp at level betw l shoulder and elbow, init +C2843312|T037|PT|S48.122A|ICD10CM|Partial traumatic amputation at level between left shoulder and elbow, initial encounter|Partial traumatic amputation at level between left shoulder and elbow, initial encounter +C2843313|T037|AB|S48.122D|ICD10CM|Partial traum amp at level betw l shoulder and elbow, subs|Partial traum amp at level betw l shoulder and elbow, subs +C2843313|T037|PT|S48.122D|ICD10CM|Partial traumatic amputation at level between left shoulder and elbow, subsequent encounter|Partial traumatic amputation at level between left shoulder and elbow, subsequent encounter +C2843314|T037|AB|S48.122S|ICD10CM|Partial traum amp at level betw l shldr and elbow, sequela|Partial traum amp at level betw l shldr and elbow, sequela +C2843314|T037|PT|S48.122S|ICD10CM|Partial traumatic amputation at level between left shoulder and elbow, sequela|Partial traumatic amputation at level between left shoulder and elbow, sequela +C2843315|T037|AB|S48.129|ICD10CM|Partial traumatic amp at level betw unsp shoulder and elbow|Partial traumatic amp at level betw unsp shoulder and elbow +C2843315|T037|HT|S48.129|ICD10CM|Partial traumatic amputation at level between unspecified shoulder and elbow|Partial traumatic amputation at level between unspecified shoulder and elbow +C2843316|T037|AB|S48.129A|ICD10CM|Partial traum amp at level betw unsp shldr and elbow, init|Partial traum amp at level betw unsp shldr and elbow, init +C2843316|T037|PT|S48.129A|ICD10CM|Partial traumatic amputation at level between unspecified shoulder and elbow, initial encounter|Partial traumatic amputation at level between unspecified shoulder and elbow, initial encounter +C2843317|T037|AB|S48.129D|ICD10CM|Partial traum amp at level betw unsp shldr and elbow, subs|Partial traum amp at level betw unsp shldr and elbow, subs +C2843317|T037|PT|S48.129D|ICD10CM|Partial traumatic amputation at level between unspecified shoulder and elbow, subsequent encounter|Partial traumatic amputation at level between unspecified shoulder and elbow, subsequent encounter +C2843318|T037|AB|S48.129S|ICD10CM|Part traum amp at level betw unsp shldr and elbow, sequela|Part traum amp at level betw unsp shldr and elbow, sequela +C2843318|T037|PT|S48.129S|ICD10CM|Partial traumatic amputation at level between unspecified shoulder and elbow, sequela|Partial traumatic amputation at level between unspecified shoulder and elbow, sequela +C0495872|T037|AB|S48.9|ICD10CM|Traumatic amputation of shoulder and upper arm, level unsp|Traumatic amputation of shoulder and upper arm, level unsp +C0495872|T037|HT|S48.9|ICD10CM|Traumatic amputation of shoulder and upper arm, level unspecified|Traumatic amputation of shoulder and upper arm, level unspecified +C0495872|T037|PT|S48.9|ICD10|Traumatic amputation of shoulder and upper arm, level unspecified|Traumatic amputation of shoulder and upper arm, level unspecified +C2843319|T037|AB|S48.91|ICD10CM|Complete traumatic amputation of shldr/up arm, level unsp|Complete traumatic amputation of shldr/up arm, level unsp +C2843319|T037|HT|S48.91|ICD10CM|Complete traumatic amputation of shoulder and upper arm, level unspecified|Complete traumatic amputation of shoulder and upper arm, level unspecified +C2843320|T037|AB|S48.911|ICD10CM|Complete traumatic amp of right shldr/up arm, level unsp|Complete traumatic amp of right shldr/up arm, level unsp +C2843320|T037|HT|S48.911|ICD10CM|Complete traumatic amputation of right shoulder and upper arm, level unspecified|Complete traumatic amputation of right shoulder and upper arm, level unspecified +C2843321|T037|AB|S48.911A|ICD10CM|Complete traum amp of right shldr/up arm, level unsp, init|Complete traum amp of right shldr/up arm, level unsp, init +C2843321|T037|PT|S48.911A|ICD10CM|Complete traumatic amputation of right shoulder and upper arm, level unspecified, initial encounter|Complete traumatic amputation of right shoulder and upper arm, level unspecified, initial encounter +C2843322|T037|AB|S48.911D|ICD10CM|Complete traum amp of right shldr/up arm, level unsp, subs|Complete traum amp of right shldr/up arm, level unsp, subs +C2843323|T037|AB|S48.911S|ICD10CM|Complete traum amp of right shldr/up arm, level unsp, sqla|Complete traum amp of right shldr/up arm, level unsp, sqla +C2843323|T037|PT|S48.911S|ICD10CM|Complete traumatic amputation of right shoulder and upper arm, level unspecified, sequela|Complete traumatic amputation of right shoulder and upper arm, level unspecified, sequela +C2843324|T037|AB|S48.912|ICD10CM|Complete traumatic amp of left shldr/up arm, level unsp|Complete traumatic amp of left shldr/up arm, level unsp +C2843324|T037|HT|S48.912|ICD10CM|Complete traumatic amputation of left shoulder and upper arm, level unspecified|Complete traumatic amputation of left shoulder and upper arm, level unspecified +C2843325|T037|AB|S48.912A|ICD10CM|Complete traum amp of left shldr/up arm, level unsp, init|Complete traum amp of left shldr/up arm, level unsp, init +C2843325|T037|PT|S48.912A|ICD10CM|Complete traumatic amputation of left shoulder and upper arm, level unspecified, initial encounter|Complete traumatic amputation of left shoulder and upper arm, level unspecified, initial encounter +C2843326|T037|AB|S48.912D|ICD10CM|Complete traum amp of left shldr/up arm, level unsp, subs|Complete traum amp of left shldr/up arm, level unsp, subs +C2843327|T037|AB|S48.912S|ICD10CM|Complete traum amp of left shldr/up arm, level unsp, sequela|Complete traum amp of left shldr/up arm, level unsp, sequela +C2843327|T037|PT|S48.912S|ICD10CM|Complete traumatic amputation of left shoulder and upper arm, level unspecified, sequela|Complete traumatic amputation of left shoulder and upper arm, level unspecified, sequela +C2843328|T037|AB|S48.919|ICD10CM|Complete traumatic amp of unsp shldr/up arm, level unsp|Complete traumatic amp of unsp shldr/up arm, level unsp +C2843328|T037|HT|S48.919|ICD10CM|Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified|Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified +C2843329|T037|AB|S48.919A|ICD10CM|Complete traum amp of unsp shldr/up arm, level unsp, init|Complete traum amp of unsp shldr/up arm, level unsp, init +C2843330|T037|AB|S48.919D|ICD10CM|Complete traum amp of unsp shldr/up arm, level unsp, subs|Complete traum amp of unsp shldr/up arm, level unsp, subs +C2843331|T037|AB|S48.919S|ICD10CM|Complete traum amp of unsp shldr/up arm, level unsp, sequela|Complete traum amp of unsp shldr/up arm, level unsp, sequela +C2843331|T037|PT|S48.919S|ICD10CM|Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified, sequela|Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified, sequela +C2843332|T037|AB|S48.92|ICD10CM|Partial traumatic amputation of shldr/up arm, level unsp|Partial traumatic amputation of shldr/up arm, level unsp +C2843332|T037|HT|S48.92|ICD10CM|Partial traumatic amputation of shoulder and upper arm, level unspecified|Partial traumatic amputation of shoulder and upper arm, level unspecified +C2843333|T037|AB|S48.921|ICD10CM|Partial traumatic amp of right shldr/up arm, level unsp|Partial traumatic amp of right shldr/up arm, level unsp +C2843333|T037|HT|S48.921|ICD10CM|Partial traumatic amputation of right shoulder and upper arm, level unspecified|Partial traumatic amputation of right shoulder and upper arm, level unspecified +C2843334|T037|AB|S48.921A|ICD10CM|Partial traum amp of right shldr/up arm, level unsp, init|Partial traum amp of right shldr/up arm, level unsp, init +C2843334|T037|PT|S48.921A|ICD10CM|Partial traumatic amputation of right shoulder and upper arm, level unspecified, initial encounter|Partial traumatic amputation of right shoulder and upper arm, level unspecified, initial encounter +C2843335|T037|AB|S48.921D|ICD10CM|Partial traum amp of right shldr/up arm, level unsp, subs|Partial traum amp of right shldr/up arm, level unsp, subs +C2843336|T037|AB|S48.921S|ICD10CM|Partial traum amp of right shldr/up arm, level unsp, sequela|Partial traum amp of right shldr/up arm, level unsp, sequela +C2843336|T037|PT|S48.921S|ICD10CM|Partial traumatic amputation of right shoulder and upper arm, level unspecified, sequela|Partial traumatic amputation of right shoulder and upper arm, level unspecified, sequela +C2843337|T037|AB|S48.922|ICD10CM|Partial traumatic amp of left shldr/up arm, level unsp|Partial traumatic amp of left shldr/up arm, level unsp +C2843337|T037|HT|S48.922|ICD10CM|Partial traumatic amputation of left shoulder and upper arm, level unspecified|Partial traumatic amputation of left shoulder and upper arm, level unspecified +C2843338|T037|AB|S48.922A|ICD10CM|Partial traumatic amp of left shldr/up arm, level unsp, init|Partial traumatic amp of left shldr/up arm, level unsp, init +C2843338|T037|PT|S48.922A|ICD10CM|Partial traumatic amputation of left shoulder and upper arm, level unspecified, initial encounter|Partial traumatic amputation of left shoulder and upper arm, level unspecified, initial encounter +C2843339|T037|AB|S48.922D|ICD10CM|Partial traumatic amp of left shldr/up arm, level unsp, subs|Partial traumatic amp of left shldr/up arm, level unsp, subs +C2843339|T037|PT|S48.922D|ICD10CM|Partial traumatic amputation of left shoulder and upper arm, level unspecified, subsequent encounter|Partial traumatic amputation of left shoulder and upper arm, level unspecified, subsequent encounter +C2843340|T037|AB|S48.922S|ICD10CM|Partial traum amp of left shldr/up arm, level unsp, sequela|Partial traum amp of left shldr/up arm, level unsp, sequela +C2843340|T037|PT|S48.922S|ICD10CM|Partial traumatic amputation of left shoulder and upper arm, level unspecified, sequela|Partial traumatic amputation of left shoulder and upper arm, level unspecified, sequela +C2843341|T037|AB|S48.929|ICD10CM|Partial traumatic amp of unsp shldr/up arm, level unsp|Partial traumatic amp of unsp shldr/up arm, level unsp +C2843341|T037|HT|S48.929|ICD10CM|Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified|Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified +C2843342|T037|AB|S48.929A|ICD10CM|Partial traumatic amp of unsp shldr/up arm, level unsp, init|Partial traumatic amp of unsp shldr/up arm, level unsp, init +C2843343|T037|AB|S48.929D|ICD10CM|Partial traumatic amp of unsp shldr/up arm, level unsp, subs|Partial traumatic amp of unsp shldr/up arm, level unsp, subs +C2843344|T037|AB|S48.929S|ICD10CM|Partial traum amp of unsp shldr/up arm, level unsp, sequela|Partial traum amp of unsp shldr/up arm, level unsp, sequela +C2843344|T037|PT|S48.929S|ICD10CM|Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified, sequela|Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified, sequela +C0161483|T037|AB|S49|ICD10CM|Other and unspecified injuries of shoulder and upper arm|Other and unspecified injuries of shoulder and upper arm +C0161483|T037|HT|S49|ICD10CM|Other and unspecified injuries of shoulder and upper arm|Other and unspecified injuries of shoulder and upper arm +C0161483|T037|HT|S49|ICD10|Other and unspecified injuries of shoulder and upper arm|Other and unspecified injuries of shoulder and upper arm +C2843345|T037|AB|S49.0|ICD10CM|Physeal fracture of upper end of humerus|Physeal fracture of upper end of humerus +C2843345|T037|HT|S49.0|ICD10CM|Physeal fracture of upper end of humerus|Physeal fracture of upper end of humerus +C2843346|T037|AB|S49.00|ICD10CM|Unspecified physeal fracture of upper end of humerus|Unspecified physeal fracture of upper end of humerus +C2843346|T037|HT|S49.00|ICD10CM|Unspecified physeal fracture of upper end of humerus|Unspecified physeal fracture of upper end of humerus +C2843347|T037|AB|S49.001|ICD10CM|Unsp physeal fracture of upper end of humerus, right arm|Unsp physeal fracture of upper end of humerus, right arm +C2843347|T037|HT|S49.001|ICD10CM|Unspecified physeal fracture of upper end of humerus, right arm|Unspecified physeal fracture of upper end of humerus, right arm +C2843348|T037|AB|S49.001A|ICD10CM|Unsp physeal fx upper end of humerus, right arm, init|Unsp physeal fx upper end of humerus, right arm, init +C2843349|T037|AB|S49.001D|ICD10CM|Unsp physl fx upr end humer, r arm, subs for fx w routn heal|Unsp physl fx upr end humer, r arm, subs for fx w routn heal +C2843350|T037|AB|S49.001G|ICD10CM|Unsp physl fx upr end humer, r arm, subs for fx w delay heal|Unsp physl fx upr end humer, r arm, subs for fx w delay heal +C2843351|T037|AB|S49.001K|ICD10CM|Unsp physl fx upper end humer, r arm, subs for fx w nonunion|Unsp physl fx upper end humer, r arm, subs for fx w nonunion +C2843352|T037|AB|S49.001P|ICD10CM|Unsp physl fx upper end humer, r arm, subs for fx w malunion|Unsp physl fx upper end humer, r arm, subs for fx w malunion +C2843353|T037|AB|S49.001S|ICD10CM|Unsp physeal fx upper end of humerus, right arm, sequela|Unsp physeal fx upper end of humerus, right arm, sequela +C2843353|T037|PT|S49.001S|ICD10CM|Unspecified physeal fracture of upper end of humerus, right arm, sequela|Unspecified physeal fracture of upper end of humerus, right arm, sequela +C2843354|T037|AB|S49.002|ICD10CM|Unsp physeal fracture of upper end of humerus, left arm|Unsp physeal fracture of upper end of humerus, left arm +C2843354|T037|HT|S49.002|ICD10CM|Unspecified physeal fracture of upper end of humerus, left arm|Unspecified physeal fracture of upper end of humerus, left arm +C2843355|T037|AB|S49.002A|ICD10CM|Unsp physeal fx upper end of humerus, left arm, init|Unsp physeal fx upper end of humerus, left arm, init +C2843356|T037|AB|S49.002D|ICD10CM|Unsp physl fx upr end humer, l arm, subs for fx w routn heal|Unsp physl fx upr end humer, l arm, subs for fx w routn heal +C2843357|T037|AB|S49.002G|ICD10CM|Unsp physl fx upr end humer, l arm, subs for fx w delay heal|Unsp physl fx upr end humer, l arm, subs for fx w delay heal +C2843358|T037|AB|S49.002K|ICD10CM|Unsp physl fx upr end humer, l arm, subs for fx w nonunion|Unsp physl fx upr end humer, l arm, subs for fx w nonunion +C2843359|T037|AB|S49.002P|ICD10CM|Unsp physl fx upr end humer, l arm, subs for fx w malunion|Unsp physl fx upr end humer, l arm, subs for fx w malunion +C2843360|T037|AB|S49.002S|ICD10CM|Unsp physeal fx upper end of humerus, left arm, sequela|Unsp physeal fx upper end of humerus, left arm, sequela +C2843360|T037|PT|S49.002S|ICD10CM|Unspecified physeal fracture of upper end of humerus, left arm, sequela|Unspecified physeal fracture of upper end of humerus, left arm, sequela +C2843361|T037|AB|S49.009|ICD10CM|Unsp physeal fracture of upper end of humerus, unsp arm|Unsp physeal fracture of upper end of humerus, unsp arm +C2843361|T037|HT|S49.009|ICD10CM|Unspecified physeal fracture of upper end of humerus, unspecified arm|Unspecified physeal fracture of upper end of humerus, unspecified arm +C2843362|T037|AB|S49.009A|ICD10CM|Unsp physeal fx upper end of humerus, unsp arm, init|Unsp physeal fx upper end of humerus, unsp arm, init +C2843363|T037|AB|S49.009D|ICD10CM|Unsp physl fx upr end humer, unsp arm, 7thD|Unsp physl fx upr end humer, unsp arm, 7thD +C2843364|T037|AB|S49.009G|ICD10CM|Unsp physl fx upr end humer, unsp arm, 7thG|Unsp physl fx upr end humer, unsp arm, 7thG +C2843365|T037|AB|S49.009K|ICD10CM|Unsp physl fx upr end humer, unsp arm, 7thK|Unsp physl fx upr end humer, unsp arm, 7thK +C2843366|T037|AB|S49.009P|ICD10CM|Unsp physl fx upr end humer, unsp arm, 7thP|Unsp physl fx upr end humer, unsp arm, 7thP +C2843367|T037|AB|S49.009S|ICD10CM|Unsp physeal fx upper end of humerus, unsp arm, sequela|Unsp physeal fx upper end of humerus, unsp arm, sequela +C2843367|T037|PT|S49.009S|ICD10CM|Unspecified physeal fracture of upper end of humerus, unspecified arm, sequela|Unspecified physeal fracture of upper end of humerus, unspecified arm, sequela +C2843368|T037|HT|S49.01|ICD10CM|Salter-Harris Type I physeal fracture of upper end of humerus|Salter-Harris Type I physeal fracture of upper end of humerus +C2843368|T037|AB|S49.01|ICD10CM|Sltr-haris Type I physeal fracture of upper end of humerus|Sltr-haris Type I physeal fracture of upper end of humerus +C2843369|T037|HT|S49.011|ICD10CM|Salter-Harris Type I physeal fracture of upper end of humerus, right arm|Salter-Harris Type I physeal fracture of upper end of humerus, right arm +C2843369|T037|AB|S49.011|ICD10CM|Sltr-haris Type I physeal fx upper end of humerus, right arm|Sltr-haris Type I physeal fx upper end of humerus, right arm +C2843370|T037|AB|S49.011A|ICD10CM|Sltr-haris Type I physl fx upper end humer, right arm, init|Sltr-haris Type I physl fx upper end humer, right arm, init +C2843371|T037|AB|S49.011D|ICD10CM|Sltr-haris Type I physl fx upr end humer, r arm, 7thD|Sltr-haris Type I physl fx upr end humer, r arm, 7thD +C2843372|T037|AB|S49.011G|ICD10CM|Sltr-haris Type I physl fx upr end humer, r arm, 7thG|Sltr-haris Type I physl fx upr end humer, r arm, 7thG +C2843373|T037|AB|S49.011K|ICD10CM|Sltr-haris Type I physl fx upr end humer, r arm, 7thK|Sltr-haris Type I physl fx upr end humer, r arm, 7thK +C2843374|T037|AB|S49.011P|ICD10CM|Sltr-haris Type I physl fx upr end humer, r arm, 7thP|Sltr-haris Type I physl fx upr end humer, r arm, 7thP +C2843375|T037|PT|S49.011S|ICD10CM|Salter-Harris Type I physeal fracture of upper end of humerus, right arm, sequela|Salter-Harris Type I physeal fracture of upper end of humerus, right arm, sequela +C2843375|T037|AB|S49.011S|ICD10CM|Sltr-haris Type I physl fx upper end humer, right arm, sqla|Sltr-haris Type I physl fx upper end humer, right arm, sqla +C2843376|T037|HT|S49.012|ICD10CM|Salter-Harris Type I physeal fracture of upper end of humerus, left arm|Salter-Harris Type I physeal fracture of upper end of humerus, left arm +C2843376|T037|AB|S49.012|ICD10CM|Sltr-haris Type I physeal fx upper end of humerus, left arm|Sltr-haris Type I physeal fx upper end of humerus, left arm +C2843377|T037|AB|S49.012A|ICD10CM|Sltr-haris Type I physl fx upper end humer, left arm, init|Sltr-haris Type I physl fx upper end humer, left arm, init +C2843378|T037|AB|S49.012D|ICD10CM|Sltr-haris Type I physl fx upr end humer, l arm, 7thD|Sltr-haris Type I physl fx upr end humer, l arm, 7thD +C2843379|T037|AB|S49.012G|ICD10CM|Sltr-haris Type I physl fx upr end humer, l arm, 7thG|Sltr-haris Type I physl fx upr end humer, l arm, 7thG +C2843380|T037|AB|S49.012K|ICD10CM|Sltr-haris Type I physl fx upr end humer, l arm, 7thK|Sltr-haris Type I physl fx upr end humer, l arm, 7thK +C2843381|T037|AB|S49.012P|ICD10CM|Sltr-haris Type I physl fx upr end humer, l arm, 7thP|Sltr-haris Type I physl fx upr end humer, l arm, 7thP +C2843382|T037|PT|S49.012S|ICD10CM|Salter-Harris Type I physeal fracture of upper end of humerus, left arm, sequela|Salter-Harris Type I physeal fracture of upper end of humerus, left arm, sequela +C2843382|T037|AB|S49.012S|ICD10CM|Sltr-haris Type I physl fx upper end humer, left arm, sqla|Sltr-haris Type I physl fx upper end humer, left arm, sqla +C2843383|T037|HT|S49.019|ICD10CM|Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm|Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm +C2843383|T037|AB|S49.019|ICD10CM|Sltr-haris Type I physeal fx upper end of humerus, unsp arm|Sltr-haris Type I physeal fx upper end of humerus, unsp arm +C2843384|T037|AB|S49.019A|ICD10CM|Sltr-haris Type I physl fx upper end humer, unsp arm, init|Sltr-haris Type I physl fx upper end humer, unsp arm, init +C2843385|T037|AB|S49.019D|ICD10CM|Sltr-haris Type I physl fx upr end humer, unsp arm, 7thD|Sltr-haris Type I physl fx upr end humer, unsp arm, 7thD +C2843386|T037|AB|S49.019G|ICD10CM|Sltr-haris Type I physl fx upr end humer, unsp arm, 7thG|Sltr-haris Type I physl fx upr end humer, unsp arm, 7thG +C2843387|T037|AB|S49.019K|ICD10CM|Sltr-haris Type I physl fx upr end humer, unsp arm, 7thK|Sltr-haris Type I physl fx upr end humer, unsp arm, 7thK +C2843388|T037|AB|S49.019P|ICD10CM|Sltr-haris Type I physl fx upr end humer, unsp arm, 7thP|Sltr-haris Type I physl fx upr end humer, unsp arm, 7thP +C2843389|T037|PT|S49.019S|ICD10CM|Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, sequela|Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, sequela +C2843389|T037|AB|S49.019S|ICD10CM|Sltr-haris Type I physl fx upper end humer, unsp arm, sqla|Sltr-haris Type I physl fx upper end humer, unsp arm, sqla +C2843390|T037|HT|S49.02|ICD10CM|Salter-Harris Type II physeal fracture of upper end of humerus|Salter-Harris Type II physeal fracture of upper end of humerus +C2843390|T037|AB|S49.02|ICD10CM|Sltr-haris Type II physeal fracture of upper end of humerus|Sltr-haris Type II physeal fracture of upper end of humerus +C2843391|T037|HT|S49.021|ICD10CM|Salter-Harris Type II physeal fracture of upper end of humerus, right arm|Salter-Harris Type II physeal fracture of upper end of humerus, right arm +C2843391|T037|AB|S49.021|ICD10CM|Sltr-haris Type II physeal fx upper end of humer, right arm|Sltr-haris Type II physeal fx upper end of humer, right arm +C2843392|T037|AB|S49.021A|ICD10CM|Sltr-haris Type II physl fx upper end humer, right arm, init|Sltr-haris Type II physl fx upper end humer, right arm, init +C2843393|T037|AB|S49.021D|ICD10CM|Sltr-haris Type II physl fx upr end humer, r arm, 7thD|Sltr-haris Type II physl fx upr end humer, r arm, 7thD +C2843394|T037|AB|S49.021G|ICD10CM|Sltr-haris Type II physl fx upr end humer, r arm, 7thG|Sltr-haris Type II physl fx upr end humer, r arm, 7thG +C2843395|T037|AB|S49.021K|ICD10CM|Sltr-haris Type II physl fx upr end humer, r arm, 7thK|Sltr-haris Type II physl fx upr end humer, r arm, 7thK +C2843396|T037|AB|S49.021P|ICD10CM|Sltr-haris Type II physl fx upr end humer, r arm, 7thP|Sltr-haris Type II physl fx upr end humer, r arm, 7thP +C2843397|T037|PT|S49.021S|ICD10CM|Salter-Harris Type II physeal fracture of upper end of humerus, right arm, sequela|Salter-Harris Type II physeal fracture of upper end of humerus, right arm, sequela +C2843397|T037|AB|S49.021S|ICD10CM|Sltr-haris Type II physl fx upper end humer, right arm, sqla|Sltr-haris Type II physl fx upper end humer, right arm, sqla +C2843398|T037|HT|S49.022|ICD10CM|Salter-Harris Type II physeal fracture of upper end of humerus, left arm|Salter-Harris Type II physeal fracture of upper end of humerus, left arm +C2843398|T037|AB|S49.022|ICD10CM|Sltr-haris Type II physeal fx upper end of humerus, left arm|Sltr-haris Type II physeal fx upper end of humerus, left arm +C2843399|T037|AB|S49.022A|ICD10CM|Sltr-haris Type II physl fx upper end humer, left arm, init|Sltr-haris Type II physl fx upper end humer, left arm, init +C2843400|T037|AB|S49.022D|ICD10CM|Sltr-haris Type II physl fx upr end humer, l arm, 7thD|Sltr-haris Type II physl fx upr end humer, l arm, 7thD +C2843401|T037|AB|S49.022G|ICD10CM|Sltr-haris Type II physl fx upr end humer, l arm, 7thG|Sltr-haris Type II physl fx upr end humer, l arm, 7thG +C2843402|T037|AB|S49.022K|ICD10CM|Sltr-haris Type II physl fx upr end humer, l arm, 7thK|Sltr-haris Type II physl fx upr end humer, l arm, 7thK +C2843403|T037|AB|S49.022P|ICD10CM|Sltr-haris Type II physl fx upr end humer, l arm, 7thP|Sltr-haris Type II physl fx upr end humer, l arm, 7thP +C2843404|T037|PT|S49.022S|ICD10CM|Salter-Harris Type II physeal fracture of upper end of humerus, left arm, sequela|Salter-Harris Type II physeal fracture of upper end of humerus, left arm, sequela +C2843404|T037|AB|S49.022S|ICD10CM|Sltr-haris Type II physl fx upper end humer, left arm, sqla|Sltr-haris Type II physl fx upper end humer, left arm, sqla +C2843405|T037|HT|S49.029|ICD10CM|Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm|Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm +C2843405|T037|AB|S49.029|ICD10CM|Sltr-haris Type II physeal fx upper end of humerus, unsp arm|Sltr-haris Type II physeal fx upper end of humerus, unsp arm +C2843406|T037|AB|S49.029A|ICD10CM|Sltr-haris Type II physl fx upper end humer, unsp arm, init|Sltr-haris Type II physl fx upper end humer, unsp arm, init +C2843407|T037|AB|S49.029D|ICD10CM|Sltr-haris Type II physl fx upr end humer, unsp arm, 7thD|Sltr-haris Type II physl fx upr end humer, unsp arm, 7thD +C2843408|T037|AB|S49.029G|ICD10CM|Sltr-haris Type II physl fx upr end humer, unsp arm, 7thG|Sltr-haris Type II physl fx upr end humer, unsp arm, 7thG +C2843409|T037|AB|S49.029K|ICD10CM|Sltr-haris Type II physl fx upr end humer, unsp arm, 7thK|Sltr-haris Type II physl fx upr end humer, unsp arm, 7thK +C2843410|T037|AB|S49.029P|ICD10CM|Sltr-haris Type II physl fx upr end humer, unsp arm, 7thP|Sltr-haris Type II physl fx upr end humer, unsp arm, 7thP +C2843411|T037|PT|S49.029S|ICD10CM|Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, sequela|Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, sequela +C2843411|T037|AB|S49.029S|ICD10CM|Sltr-haris Type II physl fx upper end humer, unsp arm, sqla|Sltr-haris Type II physl fx upper end humer, unsp arm, sqla +C2843412|T037|HT|S49.03|ICD10CM|Salter-Harris Type III physeal fracture of upper end of humerus|Salter-Harris Type III physeal fracture of upper end of humerus +C2843412|T037|AB|S49.03|ICD10CM|Sltr-haris Type III physeal fracture of upper end of humerus|Sltr-haris Type III physeal fracture of upper end of humerus +C2843413|T037|HT|S49.031|ICD10CM|Salter-Harris Type III physeal fracture of upper end of humerus, right arm|Salter-Harris Type III physeal fracture of upper end of humerus, right arm +C2843413|T037|AB|S49.031|ICD10CM|Sltr-haris Type III physeal fx upper end of humer, right arm|Sltr-haris Type III physeal fx upper end of humer, right arm +C2843414|T037|AB|S49.031A|ICD10CM|Sltr-haris Type III physl fx upper end humer, r arm, init|Sltr-haris Type III physl fx upper end humer, r arm, init +C2843415|T037|AB|S49.031D|ICD10CM|Sltr-haris Type III physl fx upper end humer, r arm, 7thD|Sltr-haris Type III physl fx upper end humer, r arm, 7thD +C2843416|T037|AB|S49.031G|ICD10CM|Sltr-haris Type III physl fx upper end humer, r arm, 7thG|Sltr-haris Type III physl fx upper end humer, r arm, 7thG +C2843417|T037|AB|S49.031K|ICD10CM|Sltr-haris Type III physl fx upper end humer, r arm, 7thK|Sltr-haris Type III physl fx upper end humer, r arm, 7thK +C2843418|T037|AB|S49.031P|ICD10CM|Sltr-haris Type III physl fx upper end humer, r arm, 7thP|Sltr-haris Type III physl fx upper end humer, r arm, 7thP +C2843419|T037|PT|S49.031S|ICD10CM|Salter-Harris Type III physeal fracture of upper end of humerus, right arm, sequela|Salter-Harris Type III physeal fracture of upper end of humerus, right arm, sequela +C2843419|T037|AB|S49.031S|ICD10CM|Sltr-haris Type III physl fx upper end humer, r arm, sqla|Sltr-haris Type III physl fx upper end humer, r arm, sqla +C2843420|T037|HT|S49.032|ICD10CM|Salter-Harris Type III physeal fracture of upper end of humerus, left arm|Salter-Harris Type III physeal fracture of upper end of humerus, left arm +C2843420|T037|AB|S49.032|ICD10CM|Sltr-haris Type III physeal fx upper end of humer, left arm|Sltr-haris Type III physeal fx upper end of humer, left arm +C2843421|T037|AB|S49.032A|ICD10CM|Sltr-haris Type III physl fx upper end humer, left arm, init|Sltr-haris Type III physl fx upper end humer, left arm, init +C2843422|T037|AB|S49.032D|ICD10CM|Sltr-haris Type III physl fx upper end humer, left arm, 7thD|Sltr-haris Type III physl fx upper end humer, left arm, 7thD +C2843423|T037|AB|S49.032G|ICD10CM|Sltr-haris Type III physl fx upper end humer, left arm, 7thG|Sltr-haris Type III physl fx upper end humer, left arm, 7thG +C2843424|T037|AB|S49.032K|ICD10CM|Sltr-haris Type III physl fx upper end humer, left arm, 7thK|Sltr-haris Type III physl fx upper end humer, left arm, 7thK +C2843425|T037|AB|S49.032P|ICD10CM|Sltr-haris Type III physl fx upper end humer, left arm, 7thP|Sltr-haris Type III physl fx upper end humer, left arm, 7thP +C2843426|T037|PT|S49.032S|ICD10CM|Salter-Harris Type III physeal fracture of upper end of humerus, left arm, sequela|Salter-Harris Type III physeal fracture of upper end of humerus, left arm, sequela +C2843426|T037|AB|S49.032S|ICD10CM|Sltr-haris Type III physl fx upper end humer, left arm, sqla|Sltr-haris Type III physl fx upper end humer, left arm, sqla +C2843427|T037|HT|S49.039|ICD10CM|Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm|Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm +C2843427|T037|AB|S49.039|ICD10CM|Sltr-haris Type III physeal fx upper end of humer, unsp arm|Sltr-haris Type III physeal fx upper end of humer, unsp arm +C2843428|T037|AB|S49.039A|ICD10CM|Sltr-haris Type III physl fx upper end humer, unsp arm, init|Sltr-haris Type III physl fx upper end humer, unsp arm, init +C2843429|T037|AB|S49.039D|ICD10CM|Sltr-haris Type III physl fx upper end humer, unsp arm, 7thD|Sltr-haris Type III physl fx upper end humer, unsp arm, 7thD +C2843430|T037|AB|S49.039G|ICD10CM|Sltr-haris Type III physl fx upper end humer, unsp arm, 7thG|Sltr-haris Type III physl fx upper end humer, unsp arm, 7thG +C2843431|T037|AB|S49.039K|ICD10CM|Sltr-haris Type III physl fx upper end humer, unsp arm, 7thK|Sltr-haris Type III physl fx upper end humer, unsp arm, 7thK +C2843432|T037|AB|S49.039P|ICD10CM|Sltr-haris Type III physl fx upper end humer, unsp arm, 7thP|Sltr-haris Type III physl fx upper end humer, unsp arm, 7thP +C2843433|T037|PT|S49.039S|ICD10CM|Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, sequela|Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, sequela +C2843433|T037|AB|S49.039S|ICD10CM|Sltr-haris Type III physl fx upper end humer, unsp arm, sqla|Sltr-haris Type III physl fx upper end humer, unsp arm, sqla +C2843434|T037|HT|S49.04|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of humerus|Salter-Harris Type IV physeal fracture of upper end of humerus +C2843434|T037|AB|S49.04|ICD10CM|Sltr-haris Type IV physeal fracture of upper end of humerus|Sltr-haris Type IV physeal fracture of upper end of humerus +C2843435|T037|HT|S49.041|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of humerus, right arm|Salter-Harris Type IV physeal fracture of upper end of humerus, right arm +C2843435|T037|AB|S49.041|ICD10CM|Sltr-haris Type IV physeal fx upper end of humer, right arm|Sltr-haris Type IV physeal fx upper end of humer, right arm +C2843436|T037|AB|S49.041A|ICD10CM|Sltr-haris Type IV physl fx upper end humer, right arm, init|Sltr-haris Type IV physl fx upper end humer, right arm, init +C2843437|T037|AB|S49.041D|ICD10CM|Sltr-haris Type IV physl fx upr end humer, r arm, 7thD|Sltr-haris Type IV physl fx upr end humer, r arm, 7thD +C2843438|T037|AB|S49.041G|ICD10CM|Sltr-haris Type IV physl fx upr end humer, r arm, 7thG|Sltr-haris Type IV physl fx upr end humer, r arm, 7thG +C2843439|T037|AB|S49.041K|ICD10CM|Sltr-haris Type IV physl fx upr end humer, r arm, 7thK|Sltr-haris Type IV physl fx upr end humer, r arm, 7thK +C2843440|T037|AB|S49.041P|ICD10CM|Sltr-haris Type IV physl fx upr end humer, r arm, 7thP|Sltr-haris Type IV physl fx upr end humer, r arm, 7thP +C2843441|T037|PT|S49.041S|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, sequela|Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, sequela +C2843441|T037|AB|S49.041S|ICD10CM|Sltr-haris Type IV physl fx upper end humer, right arm, sqla|Sltr-haris Type IV physl fx upper end humer, right arm, sqla +C2843442|T037|HT|S49.042|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of humerus, left arm|Salter-Harris Type IV physeal fracture of upper end of humerus, left arm +C2843442|T037|AB|S49.042|ICD10CM|Sltr-haris Type IV physeal fx upper end of humerus, left arm|Sltr-haris Type IV physeal fx upper end of humerus, left arm +C2843443|T037|AB|S49.042A|ICD10CM|Sltr-haris Type IV physl fx upper end humer, left arm, init|Sltr-haris Type IV physl fx upper end humer, left arm, init +C2843444|T037|AB|S49.042D|ICD10CM|Sltr-haris Type IV physl fx upr end humer, l arm, 7thD|Sltr-haris Type IV physl fx upr end humer, l arm, 7thD +C2843445|T037|AB|S49.042G|ICD10CM|Sltr-haris Type IV physl fx upr end humer, l arm, 7thG|Sltr-haris Type IV physl fx upr end humer, l arm, 7thG +C2843446|T037|AB|S49.042K|ICD10CM|Sltr-haris Type IV physl fx upr end humer, l arm, 7thK|Sltr-haris Type IV physl fx upr end humer, l arm, 7thK +C2843447|T037|AB|S49.042P|ICD10CM|Sltr-haris Type IV physl fx upr end humer, l arm, 7thP|Sltr-haris Type IV physl fx upr end humer, l arm, 7thP +C2843448|T037|PT|S49.042S|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, sequela|Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, sequela +C2843448|T037|AB|S49.042S|ICD10CM|Sltr-haris Type IV physl fx upper end humer, left arm, sqla|Sltr-haris Type IV physl fx upper end humer, left arm, sqla +C2843449|T037|HT|S49.049|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm|Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm +C2843449|T037|AB|S49.049|ICD10CM|Sltr-haris Type IV physeal fx upper end of humerus, unsp arm|Sltr-haris Type IV physeal fx upper end of humerus, unsp arm +C2843450|T037|AB|S49.049A|ICD10CM|Sltr-haris Type IV physl fx upper end humer, unsp arm, init|Sltr-haris Type IV physl fx upper end humer, unsp arm, init +C2843451|T037|AB|S49.049D|ICD10CM|Sltr-haris Type IV physl fx upr end humer, unsp arm, 7thD|Sltr-haris Type IV physl fx upr end humer, unsp arm, 7thD +C2843452|T037|AB|S49.049G|ICD10CM|Sltr-haris Type IV physl fx upr end humer, unsp arm, 7thG|Sltr-haris Type IV physl fx upr end humer, unsp arm, 7thG +C2843453|T037|AB|S49.049K|ICD10CM|Sltr-haris Type IV physl fx upr end humer, unsp arm, 7thK|Sltr-haris Type IV physl fx upr end humer, unsp arm, 7thK +C2843454|T037|AB|S49.049P|ICD10CM|Sltr-haris Type IV physl fx upr end humer, unsp arm, 7thP|Sltr-haris Type IV physl fx upr end humer, unsp arm, 7thP +C2843455|T037|PT|S49.049S|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, sequela|Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, sequela +C2843455|T037|AB|S49.049S|ICD10CM|Sltr-haris Type IV physl fx upper end humer, unsp arm, sqla|Sltr-haris Type IV physl fx upper end humer, unsp arm, sqla +C2843456|T037|AB|S49.09|ICD10CM|Other physeal fracture of upper end of humerus|Other physeal fracture of upper end of humerus +C2843456|T037|HT|S49.09|ICD10CM|Other physeal fracture of upper end of humerus|Other physeal fracture of upper end of humerus +C2843457|T037|AB|S49.091|ICD10CM|Other physeal fracture of upper end of humerus, right arm|Other physeal fracture of upper end of humerus, right arm +C2843457|T037|HT|S49.091|ICD10CM|Other physeal fracture of upper end of humerus, right arm|Other physeal fracture of upper end of humerus, right arm +C2843458|T037|AB|S49.091A|ICD10CM|Oth physeal fx upper end of humerus, right arm, init|Oth physeal fx upper end of humerus, right arm, init +C2843458|T037|PT|S49.091A|ICD10CM|Other physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture|Other physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture +C2843459|T037|AB|S49.091D|ICD10CM|Oth physl fx upr end humer, r arm, subs for fx w routn heal|Oth physl fx upr end humer, r arm, subs for fx w routn heal +C2843460|T037|AB|S49.091G|ICD10CM|Oth physl fx upr end humer, r arm, subs for fx w delay heal|Oth physl fx upr end humer, r arm, subs for fx w delay heal +C2843461|T037|AB|S49.091K|ICD10CM|Oth physl fx upper end humer, r arm, subs for fx w nonunion|Oth physl fx upper end humer, r arm, subs for fx w nonunion +C2843462|T037|AB|S49.091P|ICD10CM|Oth physl fx upper end humer, r arm, subs for fx w malunion|Oth physl fx upper end humer, r arm, subs for fx w malunion +C2843463|T037|AB|S49.091S|ICD10CM|Oth physeal fx upper end of humerus, right arm, sequela|Oth physeal fx upper end of humerus, right arm, sequela +C2843463|T037|PT|S49.091S|ICD10CM|Other physeal fracture of upper end of humerus, right arm, sequela|Other physeal fracture of upper end of humerus, right arm, sequela +C2843464|T037|AB|S49.092|ICD10CM|Other physeal fracture of upper end of humerus, left arm|Other physeal fracture of upper end of humerus, left arm +C2843464|T037|HT|S49.092|ICD10CM|Other physeal fracture of upper end of humerus, left arm|Other physeal fracture of upper end of humerus, left arm +C2843465|T037|AB|S49.092A|ICD10CM|Oth physeal fracture of upper end of humerus, left arm, init|Oth physeal fracture of upper end of humerus, left arm, init +C2843465|T037|PT|S49.092A|ICD10CM|Other physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture|Other physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture +C2843466|T037|AB|S49.092D|ICD10CM|Oth physl fx upr end humer, l arm, subs for fx w routn heal|Oth physl fx upr end humer, l arm, subs for fx w routn heal +C2843467|T037|AB|S49.092G|ICD10CM|Oth physl fx upr end humer, l arm, subs for fx w delay heal|Oth physl fx upr end humer, l arm, subs for fx w delay heal +C2843468|T037|AB|S49.092K|ICD10CM|Oth physl fx upr end humer, left arm, subs for fx w nonunion|Oth physl fx upr end humer, left arm, subs for fx w nonunion +C2843469|T037|AB|S49.092P|ICD10CM|Oth physl fx upr end humer, left arm, subs for fx w malunion|Oth physl fx upr end humer, left arm, subs for fx w malunion +C2843470|T037|AB|S49.092S|ICD10CM|Oth physeal fx upper end of humerus, left arm, sequela|Oth physeal fx upper end of humerus, left arm, sequela +C2843470|T037|PT|S49.092S|ICD10CM|Other physeal fracture of upper end of humerus, left arm, sequela|Other physeal fracture of upper end of humerus, left arm, sequela +C2843471|T037|AB|S49.099|ICD10CM|Other physeal fracture of upper end of humerus, unsp arm|Other physeal fracture of upper end of humerus, unsp arm +C2843471|T037|HT|S49.099|ICD10CM|Other physeal fracture of upper end of humerus, unspecified arm|Other physeal fracture of upper end of humerus, unspecified arm +C2843472|T037|AB|S49.099A|ICD10CM|Oth physeal fracture of upper end of humerus, unsp arm, init|Oth physeal fracture of upper end of humerus, unsp arm, init +C2843473|T037|AB|S49.099D|ICD10CM|Oth physl fx upr end humer, unsp arm, 7thD|Oth physl fx upr end humer, unsp arm, 7thD +C2843474|T037|AB|S49.099G|ICD10CM|Oth physl fx upr end humer, unsp arm, 7thG|Oth physl fx upr end humer, unsp arm, 7thG +C2843475|T037|AB|S49.099K|ICD10CM|Oth physl fx upr end humer, unsp arm, subs for fx w nonunion|Oth physl fx upr end humer, unsp arm, subs for fx w nonunion +C2843476|T037|AB|S49.099P|ICD10CM|Oth physl fx upr end humer, unsp arm, subs for fx w malunion|Oth physl fx upr end humer, unsp arm, subs for fx w malunion +C2843477|T037|AB|S49.099S|ICD10CM|Oth physeal fx upper end of humerus, unsp arm, sequela|Oth physeal fx upper end of humerus, unsp arm, sequela +C2843477|T037|PT|S49.099S|ICD10CM|Other physeal fracture of upper end of humerus, unspecified arm, sequela|Other physeal fracture of upper end of humerus, unspecified arm, sequela +C2843478|T037|AB|S49.1|ICD10CM|Physeal fracture of lower end of humerus|Physeal fracture of lower end of humerus +C2843478|T037|HT|S49.1|ICD10CM|Physeal fracture of lower end of humerus|Physeal fracture of lower end of humerus +C2843479|T037|AB|S49.10|ICD10CM|Unspecified physeal fracture of lower end of humerus|Unspecified physeal fracture of lower end of humerus +C2843479|T037|HT|S49.10|ICD10CM|Unspecified physeal fracture of lower end of humerus|Unspecified physeal fracture of lower end of humerus +C2843480|T037|AB|S49.101|ICD10CM|Unsp physeal fracture of lower end of humerus, right arm|Unsp physeal fracture of lower end of humerus, right arm +C2843480|T037|HT|S49.101|ICD10CM|Unspecified physeal fracture of lower end of humerus, right arm|Unspecified physeal fracture of lower end of humerus, right arm +C2843481|T037|AB|S49.101A|ICD10CM|Unsp physeal fx lower end of humerus, right arm, init|Unsp physeal fx lower end of humerus, right arm, init +C2843482|T037|AB|S49.101D|ICD10CM|Unsp physl fx low end humer, r arm, subs for fx w routn heal|Unsp physl fx low end humer, r arm, subs for fx w routn heal +C2843483|T037|AB|S49.101G|ICD10CM|Unsp physl fx low end humer, r arm, subs for fx w delay heal|Unsp physl fx low end humer, r arm, subs for fx w delay heal +C2843484|T037|AB|S49.101K|ICD10CM|Unsp physl fx low end humer, r arm, subs for fx w nonunion|Unsp physl fx low end humer, r arm, subs for fx w nonunion +C2843485|T037|AB|S49.101P|ICD10CM|Unsp physl fx low end humer, r arm, subs for fx w malunion|Unsp physl fx low end humer, r arm, subs for fx w malunion +C2843486|T037|AB|S49.101S|ICD10CM|Unsp physeal fx lower end of humerus, right arm, sequela|Unsp physeal fx lower end of humerus, right arm, sequela +C2843486|T037|PT|S49.101S|ICD10CM|Unspecified physeal fracture of lower end of humerus, right arm, sequela|Unspecified physeal fracture of lower end of humerus, right arm, sequela +C2843487|T037|AB|S49.102|ICD10CM|Unsp physeal fracture of lower end of humerus, left arm|Unsp physeal fracture of lower end of humerus, left arm +C2843487|T037|HT|S49.102|ICD10CM|Unspecified physeal fracture of lower end of humerus, left arm|Unspecified physeal fracture of lower end of humerus, left arm +C2843488|T037|AB|S49.102A|ICD10CM|Unsp physeal fx lower end of humerus, left arm, init|Unsp physeal fx lower end of humerus, left arm, init +C2843489|T037|AB|S49.102D|ICD10CM|Unsp physl fx low end humer, l arm, subs for fx w routn heal|Unsp physl fx low end humer, l arm, subs for fx w routn heal +C2843490|T037|AB|S49.102G|ICD10CM|Unsp physl fx low end humer, l arm, subs for fx w delay heal|Unsp physl fx low end humer, l arm, subs for fx w delay heal +C2843491|T037|AB|S49.102K|ICD10CM|Unsp physl fx low end humer, l arm, subs for fx w nonunion|Unsp physl fx low end humer, l arm, subs for fx w nonunion +C2843492|T037|AB|S49.102P|ICD10CM|Unsp physl fx low end humer, l arm, subs for fx w malunion|Unsp physl fx low end humer, l arm, subs for fx w malunion +C2843493|T037|AB|S49.102S|ICD10CM|Unsp physeal fx lower end of humerus, left arm, sequela|Unsp physeal fx lower end of humerus, left arm, sequela +C2843493|T037|PT|S49.102S|ICD10CM|Unspecified physeal fracture of lower end of humerus, left arm, sequela|Unspecified physeal fracture of lower end of humerus, left arm, sequela +C2843494|T037|AB|S49.109|ICD10CM|Unsp physeal fracture of lower end of humerus, unsp arm|Unsp physeal fracture of lower end of humerus, unsp arm +C2843494|T037|HT|S49.109|ICD10CM|Unspecified physeal fracture of lower end of humerus, unspecified arm|Unspecified physeal fracture of lower end of humerus, unspecified arm +C2843495|T037|AB|S49.109A|ICD10CM|Unsp physeal fx lower end of humerus, unsp arm, init|Unsp physeal fx lower end of humerus, unsp arm, init +C2843496|T037|AB|S49.109D|ICD10CM|Unsp physl fx low end humer, unsp arm, 7thD|Unsp physl fx low end humer, unsp arm, 7thD +C2843497|T037|AB|S49.109G|ICD10CM|Unsp physl fx low end humer, unsp arm, 7thG|Unsp physl fx low end humer, unsp arm, 7thG +C2843498|T037|AB|S49.109K|ICD10CM|Unsp physl fx low end humer, unsp arm, 7thK|Unsp physl fx low end humer, unsp arm, 7thK +C2843499|T037|AB|S49.109P|ICD10CM|Unsp physl fx low end humer, unsp arm, 7thP|Unsp physl fx low end humer, unsp arm, 7thP +C2843500|T037|AB|S49.109S|ICD10CM|Unsp physeal fx lower end of humerus, unsp arm, sequela|Unsp physeal fx lower end of humerus, unsp arm, sequela +C2843500|T037|PT|S49.109S|ICD10CM|Unspecified physeal fracture of lower end of humerus, unspecified arm, sequela|Unspecified physeal fracture of lower end of humerus, unspecified arm, sequela +C2843501|T037|HT|S49.11|ICD10CM|Salter-Harris Type I physeal fracture of lower end of humerus|Salter-Harris Type I physeal fracture of lower end of humerus +C2843501|T037|AB|S49.11|ICD10CM|Sltr-haris Type I physeal fracture of lower end of humerus|Sltr-haris Type I physeal fracture of lower end of humerus +C2843502|T037|HT|S49.111|ICD10CM|Salter-Harris Type I physeal fracture of lower end of humerus, right arm|Salter-Harris Type I physeal fracture of lower end of humerus, right arm +C2843502|T037|AB|S49.111|ICD10CM|Sltr-haris Type I physeal fx lower end of humerus, right arm|Sltr-haris Type I physeal fx lower end of humerus, right arm +C2843503|T037|AB|S49.111A|ICD10CM|Sltr-haris Type I physl fx lower end humer, right arm, init|Sltr-haris Type I physl fx lower end humer, right arm, init +C2843504|T037|AB|S49.111D|ICD10CM|Sltr-haris Type I physl fx low end humer, r arm, 7thD|Sltr-haris Type I physl fx low end humer, r arm, 7thD +C2843505|T037|AB|S49.111G|ICD10CM|Sltr-haris Type I physl fx low end humer, r arm, 7thG|Sltr-haris Type I physl fx low end humer, r arm, 7thG +C2843506|T037|AB|S49.111K|ICD10CM|Sltr-haris Type I physl fx low end humer, r arm, 7thK|Sltr-haris Type I physl fx low end humer, r arm, 7thK +C2843507|T037|AB|S49.111P|ICD10CM|Sltr-haris Type I physl fx low end humer, r arm, 7thP|Sltr-haris Type I physl fx low end humer, r arm, 7thP +C2843508|T037|PT|S49.111S|ICD10CM|Salter-Harris Type I physeal fracture of lower end of humerus, right arm, sequela|Salter-Harris Type I physeal fracture of lower end of humerus, right arm, sequela +C2843508|T037|AB|S49.111S|ICD10CM|Sltr-haris Type I physl fx lower end humer, right arm, sqla|Sltr-haris Type I physl fx lower end humer, right arm, sqla +C2843509|T037|HT|S49.112|ICD10CM|Salter-Harris Type I physeal fracture of lower end of humerus, left arm|Salter-Harris Type I physeal fracture of lower end of humerus, left arm +C2843509|T037|AB|S49.112|ICD10CM|Sltr-haris Type I physeal fx lower end of humerus, left arm|Sltr-haris Type I physeal fx lower end of humerus, left arm +C2843510|T037|AB|S49.112A|ICD10CM|Sltr-haris Type I physl fx lower end humer, left arm, init|Sltr-haris Type I physl fx lower end humer, left arm, init +C2843511|T037|AB|S49.112D|ICD10CM|Sltr-haris Type I physl fx low end humer, l arm, 7thD|Sltr-haris Type I physl fx low end humer, l arm, 7thD +C2843512|T037|AB|S49.112G|ICD10CM|Sltr-haris Type I physl fx low end humer, l arm, 7thG|Sltr-haris Type I physl fx low end humer, l arm, 7thG +C2843513|T037|AB|S49.112K|ICD10CM|Sltr-haris Type I physl fx low end humer, l arm, 7thK|Sltr-haris Type I physl fx low end humer, l arm, 7thK +C2843514|T037|AB|S49.112P|ICD10CM|Sltr-haris Type I physl fx low end humer, l arm, 7thP|Sltr-haris Type I physl fx low end humer, l arm, 7thP +C2843515|T037|PT|S49.112S|ICD10CM|Salter-Harris Type I physeal fracture of lower end of humerus, left arm, sequela|Salter-Harris Type I physeal fracture of lower end of humerus, left arm, sequela +C2843515|T037|AB|S49.112S|ICD10CM|Sltr-haris Type I physl fx lower end humer, left arm, sqla|Sltr-haris Type I physl fx lower end humer, left arm, sqla +C2843516|T037|HT|S49.119|ICD10CM|Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm|Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm +C2843516|T037|AB|S49.119|ICD10CM|Sltr-haris Type I physeal fx lower end of humerus, unsp arm|Sltr-haris Type I physeal fx lower end of humerus, unsp arm +C2843517|T037|AB|S49.119A|ICD10CM|Sltr-haris Type I physl fx lower end humer, unsp arm, init|Sltr-haris Type I physl fx lower end humer, unsp arm, init +C2843518|T037|AB|S49.119D|ICD10CM|Sltr-haris Type I physl fx low end humer, unsp arm, 7thD|Sltr-haris Type I physl fx low end humer, unsp arm, 7thD +C2843519|T037|AB|S49.119G|ICD10CM|Sltr-haris Type I physl fx low end humer, unsp arm, 7thG|Sltr-haris Type I physl fx low end humer, unsp arm, 7thG +C2843520|T037|AB|S49.119K|ICD10CM|Sltr-haris Type I physl fx low end humer, unsp arm, 7thK|Sltr-haris Type I physl fx low end humer, unsp arm, 7thK +C2843521|T037|AB|S49.119P|ICD10CM|Sltr-haris Type I physl fx low end humer, unsp arm, 7thP|Sltr-haris Type I physl fx low end humer, unsp arm, 7thP +C2843522|T037|PT|S49.119S|ICD10CM|Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, sequela|Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, sequela +C2843522|T037|AB|S49.119S|ICD10CM|Sltr-haris Type I physl fx lower end humer, unsp arm, sqla|Sltr-haris Type I physl fx lower end humer, unsp arm, sqla +C2843523|T037|HT|S49.12|ICD10CM|Salter-Harris Type II physeal fracture of lower end of humerus|Salter-Harris Type II physeal fracture of lower end of humerus +C2843523|T037|AB|S49.12|ICD10CM|Sltr-haris Type II physeal fracture of lower end of humerus|Sltr-haris Type II physeal fracture of lower end of humerus +C2843524|T037|HT|S49.121|ICD10CM|Salter-Harris Type II physeal fracture of lower end of humerus, right arm|Salter-Harris Type II physeal fracture of lower end of humerus, right arm +C2843524|T037|AB|S49.121|ICD10CM|Sltr-haris Type II physeal fx lower end of humer, right arm|Sltr-haris Type II physeal fx lower end of humer, right arm +C2843525|T037|AB|S49.121A|ICD10CM|Sltr-haris Type II physl fx lower end humer, right arm, init|Sltr-haris Type II physl fx lower end humer, right arm, init +C2843526|T037|AB|S49.121D|ICD10CM|Sltr-haris Type II physl fx low end humer, r arm, 7thD|Sltr-haris Type II physl fx low end humer, r arm, 7thD +C2843527|T037|AB|S49.121G|ICD10CM|Sltr-haris Type II physl fx low end humer, r arm, 7thG|Sltr-haris Type II physl fx low end humer, r arm, 7thG +C2843528|T037|AB|S49.121K|ICD10CM|Sltr-haris Type II physl fx low end humer, r arm, 7thK|Sltr-haris Type II physl fx low end humer, r arm, 7thK +C2843529|T037|AB|S49.121P|ICD10CM|Sltr-haris Type II physl fx low end humer, r arm, 7thP|Sltr-haris Type II physl fx low end humer, r arm, 7thP +C2843530|T037|PT|S49.121S|ICD10CM|Salter-Harris Type II physeal fracture of lower end of humerus, right arm, sequela|Salter-Harris Type II physeal fracture of lower end of humerus, right arm, sequela +C2843530|T037|AB|S49.121S|ICD10CM|Sltr-haris Type II physl fx lower end humer, right arm, sqla|Sltr-haris Type II physl fx lower end humer, right arm, sqla +C2843531|T037|HT|S49.122|ICD10CM|Salter-Harris Type II physeal fracture of lower end of humerus, left arm|Salter-Harris Type II physeal fracture of lower end of humerus, left arm +C2843531|T037|AB|S49.122|ICD10CM|Sltr-haris Type II physeal fx lower end of humerus, left arm|Sltr-haris Type II physeal fx lower end of humerus, left arm +C2843532|T037|AB|S49.122A|ICD10CM|Sltr-haris Type II physl fx lower end humer, left arm, init|Sltr-haris Type II physl fx lower end humer, left arm, init +C2843533|T037|AB|S49.122D|ICD10CM|Sltr-haris Type II physl fx low end humer, l arm, 7thD|Sltr-haris Type II physl fx low end humer, l arm, 7thD +C2843534|T037|AB|S49.122G|ICD10CM|Sltr-haris Type II physl fx low end humer, l arm, 7thG|Sltr-haris Type II physl fx low end humer, l arm, 7thG +C2843535|T037|AB|S49.122K|ICD10CM|Sltr-haris Type II physl fx low end humer, l arm, 7thK|Sltr-haris Type II physl fx low end humer, l arm, 7thK +C2843536|T037|AB|S49.122P|ICD10CM|Sltr-haris Type II physl fx low end humer, l arm, 7thP|Sltr-haris Type II physl fx low end humer, l arm, 7thP +C2843537|T037|PT|S49.122S|ICD10CM|Salter-Harris Type II physeal fracture of lower end of humerus, left arm, sequela|Salter-Harris Type II physeal fracture of lower end of humerus, left arm, sequela +C2843537|T037|AB|S49.122S|ICD10CM|Sltr-haris Type II physl fx lower end humer, left arm, sqla|Sltr-haris Type II physl fx lower end humer, left arm, sqla +C2843538|T037|HT|S49.129|ICD10CM|Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm|Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm +C2843538|T037|AB|S49.129|ICD10CM|Sltr-haris Type II physeal fx lower end of humerus, unsp arm|Sltr-haris Type II physeal fx lower end of humerus, unsp arm +C2843539|T037|AB|S49.129A|ICD10CM|Sltr-haris Type II physl fx lower end humer, unsp arm, init|Sltr-haris Type II physl fx lower end humer, unsp arm, init +C2843540|T037|AB|S49.129D|ICD10CM|Sltr-haris Type II physl fx low end humer, unsp arm, 7thD|Sltr-haris Type II physl fx low end humer, unsp arm, 7thD +C2843541|T037|AB|S49.129G|ICD10CM|Sltr-haris Type II physl fx low end humer, unsp arm, 7thG|Sltr-haris Type II physl fx low end humer, unsp arm, 7thG +C2843542|T037|AB|S49.129K|ICD10CM|Sltr-haris Type II physl fx low end humer, unsp arm, 7thK|Sltr-haris Type II physl fx low end humer, unsp arm, 7thK +C2843543|T037|AB|S49.129P|ICD10CM|Sltr-haris Type II physl fx low end humer, unsp arm, 7thP|Sltr-haris Type II physl fx low end humer, unsp arm, 7thP +C2843544|T037|PT|S49.129S|ICD10CM|Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, sequela|Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, sequela +C2843544|T037|AB|S49.129S|ICD10CM|Sltr-haris Type II physl fx lower end humer, unsp arm, sqla|Sltr-haris Type II physl fx lower end humer, unsp arm, sqla +C2843545|T037|HT|S49.13|ICD10CM|Salter-Harris Type III physeal fracture of lower end of humerus|Salter-Harris Type III physeal fracture of lower end of humerus +C2843545|T037|AB|S49.13|ICD10CM|Sltr-haris Type III physeal fracture of lower end of humerus|Sltr-haris Type III physeal fracture of lower end of humerus +C2843546|T037|HT|S49.131|ICD10CM|Salter-Harris Type III physeal fracture of lower end of humerus, right arm|Salter-Harris Type III physeal fracture of lower end of humerus, right arm +C2843546|T037|AB|S49.131|ICD10CM|Sltr-haris Type III physeal fx lower end of humer, right arm|Sltr-haris Type III physeal fx lower end of humer, right arm +C2843547|T037|AB|S49.131A|ICD10CM|Sltr-haris Type III physl fx low end humer, right arm, init|Sltr-haris Type III physl fx low end humer, right arm, init +C2843548|T037|AB|S49.131D|ICD10CM|Sltr-haris Type III physl fx low end humer, right arm, 7thD|Sltr-haris Type III physl fx low end humer, right arm, 7thD +C2843549|T037|AB|S49.131G|ICD10CM|Sltr-haris Type III physl fx low end humer, right arm, 7thG|Sltr-haris Type III physl fx low end humer, right arm, 7thG +C2843550|T037|AB|S49.131K|ICD10CM|Sltr-haris Type III physl fx low end humer, right arm, 7thK|Sltr-haris Type III physl fx low end humer, right arm, 7thK +C2843551|T037|AB|S49.131P|ICD10CM|Sltr-haris Type III physl fx low end humer, right arm, 7thP|Sltr-haris Type III physl fx low end humer, right arm, 7thP +C2843552|T037|PT|S49.131S|ICD10CM|Salter-Harris Type III physeal fracture of lower end of humerus, right arm, sequela|Salter-Harris Type III physeal fracture of lower end of humerus, right arm, sequela +C2843552|T037|AB|S49.131S|ICD10CM|Sltr-haris Type III physl fx low end humer, right arm, sqla|Sltr-haris Type III physl fx low end humer, right arm, sqla +C2843553|T037|HT|S49.132|ICD10CM|Salter-Harris Type III physeal fracture of lower end of humerus, left arm|Salter-Harris Type III physeal fracture of lower end of humerus, left arm +C2843553|T037|AB|S49.132|ICD10CM|Sltr-haris Type III physeal fx lower end of humer, left arm|Sltr-haris Type III physeal fx lower end of humer, left arm +C2843554|T037|AB|S49.132A|ICD10CM|Sltr-haris Type III physl fx lower end humer, left arm, init|Sltr-haris Type III physl fx lower end humer, left arm, init +C2843555|T037|AB|S49.132D|ICD10CM|Sltr-haris Type III physl fx lower end humer, left arm, 7thD|Sltr-haris Type III physl fx lower end humer, left arm, 7thD +C2843556|T037|AB|S49.132G|ICD10CM|Sltr-haris Type III physl fx lower end humer, left arm, 7thG|Sltr-haris Type III physl fx lower end humer, left arm, 7thG +C2843557|T037|AB|S49.132K|ICD10CM|Sltr-haris Type III physl fx lower end humer, left arm, 7thK|Sltr-haris Type III physl fx lower end humer, left arm, 7thK +C2843558|T037|AB|S49.132P|ICD10CM|Sltr-haris Type III physl fx lower end humer, left arm, 7thP|Sltr-haris Type III physl fx lower end humer, left arm, 7thP +C2843559|T037|PT|S49.132S|ICD10CM|Salter-Harris Type III physeal fracture of lower end of humerus, left arm, sequela|Salter-Harris Type III physeal fracture of lower end of humerus, left arm, sequela +C2843559|T037|AB|S49.132S|ICD10CM|Sltr-haris Type III physl fx lower end humer, left arm, sqla|Sltr-haris Type III physl fx lower end humer, left arm, sqla +C2843560|T037|HT|S49.139|ICD10CM|Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm|Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm +C2843560|T037|AB|S49.139|ICD10CM|Sltr-haris Type III physeal fx lower end of humer, unsp arm|Sltr-haris Type III physeal fx lower end of humer, unsp arm +C2843561|T037|AB|S49.139A|ICD10CM|Sltr-haris Type III physl fx lower end humer, unsp arm, init|Sltr-haris Type III physl fx lower end humer, unsp arm, init +C2843562|T037|AB|S49.139D|ICD10CM|Sltr-haris Type III physl fx lower end humer, unsp arm, 7thD|Sltr-haris Type III physl fx lower end humer, unsp arm, 7thD +C2843563|T037|AB|S49.139G|ICD10CM|Sltr-haris Type III physl fx lower end humer, unsp arm, 7thG|Sltr-haris Type III physl fx lower end humer, unsp arm, 7thG +C2843564|T037|AB|S49.139K|ICD10CM|Sltr-haris Type III physl fx lower end humer, unsp arm, 7thK|Sltr-haris Type III physl fx lower end humer, unsp arm, 7thK +C2843565|T037|AB|S49.139P|ICD10CM|Sltr-haris Type III physl fx lower end humer, unsp arm, 7thP|Sltr-haris Type III physl fx lower end humer, unsp arm, 7thP +C2843566|T037|PT|S49.139S|ICD10CM|Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, sequela|Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, sequela +C2843566|T037|AB|S49.139S|ICD10CM|Sltr-haris Type III physl fx lower end humer, unsp arm, sqla|Sltr-haris Type III physl fx lower end humer, unsp arm, sqla +C2843567|T037|HT|S49.14|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of humerus|Salter-Harris Type IV physeal fracture of lower end of humerus +C2843567|T037|AB|S49.14|ICD10CM|Sltr-haris Type IV physeal fracture of lower end of humerus|Sltr-haris Type IV physeal fracture of lower end of humerus +C2843568|T037|HT|S49.141|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of humerus, right arm|Salter-Harris Type IV physeal fracture of lower end of humerus, right arm +C2843568|T037|AB|S49.141|ICD10CM|Sltr-haris Type IV physeal fx lower end of humer, right arm|Sltr-haris Type IV physeal fx lower end of humer, right arm +C2843569|T037|AB|S49.141A|ICD10CM|Sltr-haris Type IV physl fx lower end humer, right arm, init|Sltr-haris Type IV physl fx lower end humer, right arm, init +C2843570|T037|AB|S49.141D|ICD10CM|Sltr-haris Type IV physl fx low end humer, r arm, 7thD|Sltr-haris Type IV physl fx low end humer, r arm, 7thD +C2843571|T037|AB|S49.141G|ICD10CM|Sltr-haris Type IV physl fx low end humer, r arm, 7thG|Sltr-haris Type IV physl fx low end humer, r arm, 7thG +C2843572|T037|AB|S49.141K|ICD10CM|Sltr-haris Type IV physl fx low end humer, r arm, 7thK|Sltr-haris Type IV physl fx low end humer, r arm, 7thK +C2843573|T037|AB|S49.141P|ICD10CM|Sltr-haris Type IV physl fx low end humer, r arm, 7thP|Sltr-haris Type IV physl fx low end humer, r arm, 7thP +C2843574|T037|PT|S49.141S|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, sequela|Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, sequela +C2843574|T037|AB|S49.141S|ICD10CM|Sltr-haris Type IV physl fx lower end humer, right arm, sqla|Sltr-haris Type IV physl fx lower end humer, right arm, sqla +C2843575|T037|HT|S49.142|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of humerus, left arm|Salter-Harris Type IV physeal fracture of lower end of humerus, left arm +C2843575|T037|AB|S49.142|ICD10CM|Sltr-haris Type IV physeal fx lower end of humerus, left arm|Sltr-haris Type IV physeal fx lower end of humerus, left arm +C2843576|T037|AB|S49.142A|ICD10CM|Sltr-haris Type IV physl fx lower end humer, left arm, init|Sltr-haris Type IV physl fx lower end humer, left arm, init +C2843577|T037|AB|S49.142D|ICD10CM|Sltr-haris Type IV physl fx low end humer, l arm, 7thD|Sltr-haris Type IV physl fx low end humer, l arm, 7thD +C2843578|T037|AB|S49.142G|ICD10CM|Sltr-haris Type IV physl fx low end humer, l arm, 7thG|Sltr-haris Type IV physl fx low end humer, l arm, 7thG +C2843579|T037|AB|S49.142K|ICD10CM|Sltr-haris Type IV physl fx low end humer, l arm, 7thK|Sltr-haris Type IV physl fx low end humer, l arm, 7thK +C2843580|T037|AB|S49.142P|ICD10CM|Sltr-haris Type IV physl fx low end humer, l arm, 7thP|Sltr-haris Type IV physl fx low end humer, l arm, 7thP +C2843581|T037|PT|S49.142S|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, sequela|Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, sequela +C2843581|T037|AB|S49.142S|ICD10CM|Sltr-haris Type IV physl fx lower end humer, left arm, sqla|Sltr-haris Type IV physl fx lower end humer, left arm, sqla +C2843582|T037|HT|S49.149|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm|Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm +C2843582|T037|AB|S49.149|ICD10CM|Sltr-haris Type IV physeal fx lower end of humerus, unsp arm|Sltr-haris Type IV physeal fx lower end of humerus, unsp arm +C2843583|T037|AB|S49.149A|ICD10CM|Sltr-haris Type IV physl fx lower end humer, unsp arm, init|Sltr-haris Type IV physl fx lower end humer, unsp arm, init +C2843584|T037|AB|S49.149D|ICD10CM|Sltr-haris Type IV physl fx low end humer, unsp arm, 7thD|Sltr-haris Type IV physl fx low end humer, unsp arm, 7thD +C2843585|T037|AB|S49.149G|ICD10CM|Sltr-haris Type IV physl fx low end humer, unsp arm, 7thG|Sltr-haris Type IV physl fx low end humer, unsp arm, 7thG +C2843586|T037|AB|S49.149K|ICD10CM|Sltr-haris Type IV physl fx low end humer, unsp arm, 7thK|Sltr-haris Type IV physl fx low end humer, unsp arm, 7thK +C2843587|T037|AB|S49.149P|ICD10CM|Sltr-haris Type IV physl fx low end humer, unsp arm, 7thP|Sltr-haris Type IV physl fx low end humer, unsp arm, 7thP +C2843588|T037|PT|S49.149S|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, sequela|Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, sequela +C2843588|T037|AB|S49.149S|ICD10CM|Sltr-haris Type IV physl fx lower end humer, unsp arm, sqla|Sltr-haris Type IV physl fx lower end humer, unsp arm, sqla +C2843589|T037|AB|S49.19|ICD10CM|Other physeal fracture of lower end of humerus|Other physeal fracture of lower end of humerus +C2843589|T037|HT|S49.19|ICD10CM|Other physeal fracture of lower end of humerus|Other physeal fracture of lower end of humerus +C2843590|T037|AB|S49.191|ICD10CM|Other physeal fracture of lower end of humerus, right arm|Other physeal fracture of lower end of humerus, right arm +C2843590|T037|HT|S49.191|ICD10CM|Other physeal fracture of lower end of humerus, right arm|Other physeal fracture of lower end of humerus, right arm +C2843591|T037|AB|S49.191A|ICD10CM|Oth physeal fx lower end of humerus, right arm, init|Oth physeal fx lower end of humerus, right arm, init +C2843591|T037|PT|S49.191A|ICD10CM|Other physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture|Other physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture +C2843592|T037|AB|S49.191D|ICD10CM|Oth physl fx low end humer, r arm, subs for fx w routn heal|Oth physl fx low end humer, r arm, subs for fx w routn heal +C2843593|T037|AB|S49.191G|ICD10CM|Oth physl fx low end humer, r arm, subs for fx w delay heal|Oth physl fx low end humer, r arm, subs for fx w delay heal +C2843594|T037|AB|S49.191K|ICD10CM|Oth physl fx low end humer, r arm, subs for fx w nonunion|Oth physl fx low end humer, r arm, subs for fx w nonunion +C2843595|T037|AB|S49.191P|ICD10CM|Oth physl fx low end humer, r arm, subs for fx w malunion|Oth physl fx low end humer, r arm, subs for fx w malunion +C2843596|T037|AB|S49.191S|ICD10CM|Oth physeal fx lower end of humerus, right arm, sequela|Oth physeal fx lower end of humerus, right arm, sequela +C2843596|T037|PT|S49.191S|ICD10CM|Other physeal fracture of lower end of humerus, right arm, sequela|Other physeal fracture of lower end of humerus, right arm, sequela +C2843597|T037|AB|S49.192|ICD10CM|Other physeal fracture of lower end of humerus, left arm|Other physeal fracture of lower end of humerus, left arm +C2843597|T037|HT|S49.192|ICD10CM|Other physeal fracture of lower end of humerus, left arm|Other physeal fracture of lower end of humerus, left arm +C2843598|T037|AB|S49.192A|ICD10CM|Oth physeal fracture of lower end of humerus, left arm, init|Oth physeal fracture of lower end of humerus, left arm, init +C2843598|T037|PT|S49.192A|ICD10CM|Other physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture|Other physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture +C2843599|T037|AB|S49.192D|ICD10CM|Oth physl fx low end humer, l arm, subs for fx w routn heal|Oth physl fx low end humer, l arm, subs for fx w routn heal +C2843600|T037|AB|S49.192G|ICD10CM|Oth physl fx low end humer, l arm, subs for fx w delay heal|Oth physl fx low end humer, l arm, subs for fx w delay heal +C2843601|T037|AB|S49.192K|ICD10CM|Oth physl fx low end humer, left arm, subs for fx w nonunion|Oth physl fx low end humer, left arm, subs for fx w nonunion +C2843602|T037|AB|S49.192P|ICD10CM|Oth physl fx low end humer, left arm, subs for fx w malunion|Oth physl fx low end humer, left arm, subs for fx w malunion +C2843603|T037|AB|S49.192S|ICD10CM|Oth physeal fx lower end of humerus, left arm, sequela|Oth physeal fx lower end of humerus, left arm, sequela +C2843603|T037|PT|S49.192S|ICD10CM|Other physeal fracture of lower end of humerus, left arm, sequela|Other physeal fracture of lower end of humerus, left arm, sequela +C2843604|T037|AB|S49.199|ICD10CM|Other physeal fracture of lower end of humerus, unsp arm|Other physeal fracture of lower end of humerus, unsp arm +C2843604|T037|HT|S49.199|ICD10CM|Other physeal fracture of lower end of humerus, unspecified arm|Other physeal fracture of lower end of humerus, unspecified arm +C2843605|T037|AB|S49.199A|ICD10CM|Oth physeal fracture of lower end of humerus, unsp arm, init|Oth physeal fracture of lower end of humerus, unsp arm, init +C2843606|T037|AB|S49.199D|ICD10CM|Oth physl fx low end humer, unsp arm, 7thD|Oth physl fx low end humer, unsp arm, 7thD +C2843607|T037|AB|S49.199G|ICD10CM|Oth physl fx low end humer, unsp arm, 7thG|Oth physl fx low end humer, unsp arm, 7thG +C2843608|T037|AB|S49.199K|ICD10CM|Oth physl fx low end humer, unsp arm, subs for fx w nonunion|Oth physl fx low end humer, unsp arm, subs for fx w nonunion +C2843609|T037|AB|S49.199P|ICD10CM|Oth physl fx low end humer, unsp arm, subs for fx w malunion|Oth physl fx low end humer, unsp arm, subs for fx w malunion +C2843610|T037|AB|S49.199S|ICD10CM|Oth physeal fx lower end of humerus, unsp arm, sequela|Oth physeal fx lower end of humerus, unsp arm, sequela +C2843610|T037|PT|S49.199S|ICD10CM|Other physeal fracture of lower end of humerus, unspecified arm, sequela|Other physeal fracture of lower end of humerus, unspecified arm, sequela +C0495874|T037|PT|S49.7|ICD10|Multiple injuries of shoulder and upper arm|Multiple injuries of shoulder and upper arm +C0478282|T037|PT|S49.8|ICD10|Other specified injuries of shoulder and upper arm|Other specified injuries of shoulder and upper arm +C0478282|T037|HT|S49.8|ICD10CM|Other specified injuries of shoulder and upper arm|Other specified injuries of shoulder and upper arm +C0478282|T037|AB|S49.8|ICD10CM|Other specified injuries of shoulder and upper arm|Other specified injuries of shoulder and upper arm +C2843611|T037|AB|S49.80|ICD10CM|Oth injuries of shoulder and upper arm, unspecified arm|Oth injuries of shoulder and upper arm, unspecified arm +C2843611|T037|HT|S49.80|ICD10CM|Other specified injuries of shoulder and upper arm, unspecified arm|Other specified injuries of shoulder and upper arm, unspecified arm +C2843612|T037|AB|S49.80XA|ICD10CM|Oth injuries of shoulder and upper arm, unsp arm, init|Oth injuries of shoulder and upper arm, unsp arm, init +C2843612|T037|PT|S49.80XA|ICD10CM|Other specified injuries of shoulder and upper arm, unspecified arm, initial encounter|Other specified injuries of shoulder and upper arm, unspecified arm, initial encounter +C2843613|T037|AB|S49.80XD|ICD10CM|Oth injuries of shoulder and upper arm, unsp arm, subs|Oth injuries of shoulder and upper arm, unsp arm, subs +C2843613|T037|PT|S49.80XD|ICD10CM|Other specified injuries of shoulder and upper arm, unspecified arm, subsequent encounter|Other specified injuries of shoulder and upper arm, unspecified arm, subsequent encounter +C2843614|T037|AB|S49.80XS|ICD10CM|Oth injuries of shoulder and upper arm, unsp arm, sequela|Oth injuries of shoulder and upper arm, unsp arm, sequela +C2843614|T037|PT|S49.80XS|ICD10CM|Other specified injuries of shoulder and upper arm, unspecified arm, sequela|Other specified injuries of shoulder and upper arm, unspecified arm, sequela +C2843615|T037|AB|S49.81|ICD10CM|Other specified injuries of right shoulder and upper arm|Other specified injuries of right shoulder and upper arm +C2843615|T037|HT|S49.81|ICD10CM|Other specified injuries of right shoulder and upper arm|Other specified injuries of right shoulder and upper arm +C2843616|T037|AB|S49.81XA|ICD10CM|Oth injuries of right shoulder and upper arm, init encntr|Oth injuries of right shoulder and upper arm, init encntr +C2843616|T037|PT|S49.81XA|ICD10CM|Other specified injuries of right shoulder and upper arm, initial encounter|Other specified injuries of right shoulder and upper arm, initial encounter +C2843617|T037|AB|S49.81XD|ICD10CM|Oth injuries of right shoulder and upper arm, subs encntr|Oth injuries of right shoulder and upper arm, subs encntr +C2843617|T037|PT|S49.81XD|ICD10CM|Other specified injuries of right shoulder and upper arm, subsequent encounter|Other specified injuries of right shoulder and upper arm, subsequent encounter +C2843618|T037|AB|S49.81XS|ICD10CM|Oth injuries of right shoulder and upper arm, sequela|Oth injuries of right shoulder and upper arm, sequela +C2843618|T037|PT|S49.81XS|ICD10CM|Other specified injuries of right shoulder and upper arm, sequela|Other specified injuries of right shoulder and upper arm, sequela +C2843619|T037|AB|S49.82|ICD10CM|Other specified injuries of left shoulder and upper arm|Other specified injuries of left shoulder and upper arm +C2843619|T037|HT|S49.82|ICD10CM|Other specified injuries of left shoulder and upper arm|Other specified injuries of left shoulder and upper arm +C2843620|T037|AB|S49.82XA|ICD10CM|Oth injuries of left shoulder and upper arm, init encntr|Oth injuries of left shoulder and upper arm, init encntr +C2843620|T037|PT|S49.82XA|ICD10CM|Other specified injuries of left shoulder and upper arm, initial encounter|Other specified injuries of left shoulder and upper arm, initial encounter +C2843621|T037|AB|S49.82XD|ICD10CM|Oth injuries of left shoulder and upper arm, subs encntr|Oth injuries of left shoulder and upper arm, subs encntr +C2843621|T037|PT|S49.82XD|ICD10CM|Other specified injuries of left shoulder and upper arm, subsequent encounter|Other specified injuries of left shoulder and upper arm, subsequent encounter +C2843622|T037|AB|S49.82XS|ICD10CM|Oth injuries of left shoulder and upper arm, sequela|Oth injuries of left shoulder and upper arm, sequela +C2843622|T037|PT|S49.82XS|ICD10CM|Other specified injuries of left shoulder and upper arm, sequela|Other specified injuries of left shoulder and upper arm, sequela +C0272440|T037|PT|S49.9|ICD10|Unspecified injury of shoulder and upper arm|Unspecified injury of shoulder and upper arm +C0272440|T037|HT|S49.9|ICD10CM|Unspecified injury of shoulder and upper arm|Unspecified injury of shoulder and upper arm +C0272440|T037|AB|S49.9|ICD10CM|Unspecified injury of shoulder and upper arm|Unspecified injury of shoulder and upper arm +C2843623|T037|AB|S49.90|ICD10CM|Unsp injury of shoulder and upper arm, unspecified arm|Unsp injury of shoulder and upper arm, unspecified arm +C2843623|T037|HT|S49.90|ICD10CM|Unspecified injury of shoulder and upper arm, unspecified arm|Unspecified injury of shoulder and upper arm, unspecified arm +C2843624|T037|AB|S49.90XA|ICD10CM|Unsp injury of shoulder and upper arm, unsp arm, init encntr|Unsp injury of shoulder and upper arm, unsp arm, init encntr +C2843624|T037|PT|S49.90XA|ICD10CM|Unspecified injury of shoulder and upper arm, unspecified arm, initial encounter|Unspecified injury of shoulder and upper arm, unspecified arm, initial encounter +C2843625|T037|AB|S49.90XD|ICD10CM|Unsp injury of shoulder and upper arm, unsp arm, subs encntr|Unsp injury of shoulder and upper arm, unsp arm, subs encntr +C2843625|T037|PT|S49.90XD|ICD10CM|Unspecified injury of shoulder and upper arm, unspecified arm, subsequent encounter|Unspecified injury of shoulder and upper arm, unspecified arm, subsequent encounter +C2843626|T037|AB|S49.90XS|ICD10CM|Unsp injury of shoulder and upper arm, unsp arm, sequela|Unsp injury of shoulder and upper arm, unsp arm, sequela +C2843626|T037|PT|S49.90XS|ICD10CM|Unspecified injury of shoulder and upper arm, unspecified arm, sequela|Unspecified injury of shoulder and upper arm, unspecified arm, sequela +C2843627|T037|AB|S49.91|ICD10CM|Unspecified injury of right shoulder and upper arm|Unspecified injury of right shoulder and upper arm +C2843627|T037|HT|S49.91|ICD10CM|Unspecified injury of right shoulder and upper arm|Unspecified injury of right shoulder and upper arm +C2843628|T037|AB|S49.91XA|ICD10CM|Unsp injury of right shoulder and upper arm, init encntr|Unsp injury of right shoulder and upper arm, init encntr +C2843628|T037|PT|S49.91XA|ICD10CM|Unspecified injury of right shoulder and upper arm, initial encounter|Unspecified injury of right shoulder and upper arm, initial encounter +C2843629|T037|AB|S49.91XD|ICD10CM|Unsp injury of right shoulder and upper arm, subs encntr|Unsp injury of right shoulder and upper arm, subs encntr +C2843629|T037|PT|S49.91XD|ICD10CM|Unspecified injury of right shoulder and upper arm, subsequent encounter|Unspecified injury of right shoulder and upper arm, subsequent encounter +C2843630|T037|PT|S49.91XS|ICD10CM|Unspecified injury of right shoulder and upper arm, sequela|Unspecified injury of right shoulder and upper arm, sequela +C2843630|T037|AB|S49.91XS|ICD10CM|Unspecified injury of right shoulder and upper arm, sequela|Unspecified injury of right shoulder and upper arm, sequela +C2843631|T037|AB|S49.92|ICD10CM|Unspecified injury of left shoulder and upper arm|Unspecified injury of left shoulder and upper arm +C2843631|T037|HT|S49.92|ICD10CM|Unspecified injury of left shoulder and upper arm|Unspecified injury of left shoulder and upper arm +C2843632|T037|AB|S49.92XA|ICD10CM|Unsp injury of left shoulder and upper arm, init encntr|Unsp injury of left shoulder and upper arm, init encntr +C2843632|T037|PT|S49.92XA|ICD10CM|Unspecified injury of left shoulder and upper arm, initial encounter|Unspecified injury of left shoulder and upper arm, initial encounter +C2843633|T037|AB|S49.92XD|ICD10CM|Unsp injury of left shoulder and upper arm, subs encntr|Unsp injury of left shoulder and upper arm, subs encntr +C2843633|T037|PT|S49.92XD|ICD10CM|Unspecified injury of left shoulder and upper arm, subsequent encounter|Unspecified injury of left shoulder and upper arm, subsequent encounter +C2843634|T037|PT|S49.92XS|ICD10CM|Unspecified injury of left shoulder and upper arm, sequela|Unspecified injury of left shoulder and upper arm, sequela +C2843634|T037|AB|S49.92XS|ICD10CM|Unspecified injury of left shoulder and upper arm, sequela|Unspecified injury of left shoulder and upper arm, sequela +C2843635|T037|AB|S50|ICD10CM|Superficial injury of elbow and forearm|Superficial injury of elbow and forearm +C2843635|T037|HT|S50|ICD10CM|Superficial injury of elbow and forearm|Superficial injury of elbow and forearm +C0347544|T037|HT|S50|ICD10|Superficial injury of forearm|Superficial injury of forearm +C0348771|T037|HT|S50-S59|ICD10CM|Injuries to the elbow and forearm (S50-S59)|Injuries to the elbow and forearm (S50-S59) +C0348771|T037|HT|S50-S59.9|ICD10|Injuries to the elbow and forearm|Injuries to the elbow and forearm +C0432763|T037|HT|S50.0|ICD10CM|Contusion of elbow|Contusion of elbow +C0432763|T037|AB|S50.0|ICD10CM|Contusion of elbow|Contusion of elbow +C0432763|T037|PT|S50.0|ICD10|Contusion of elbow|Contusion of elbow +C2843636|T037|AB|S50.00|ICD10CM|Contusion of unspecified elbow|Contusion of unspecified elbow +C2843636|T037|HT|S50.00|ICD10CM|Contusion of unspecified elbow|Contusion of unspecified elbow +C2843637|T037|PT|S50.00XA|ICD10CM|Contusion of unspecified elbow, initial encounter|Contusion of unspecified elbow, initial encounter +C2843637|T037|AB|S50.00XA|ICD10CM|Contusion of unspecified elbow, initial encounter|Contusion of unspecified elbow, initial encounter +C2843638|T037|PT|S50.00XD|ICD10CM|Contusion of unspecified elbow, subsequent encounter|Contusion of unspecified elbow, subsequent encounter +C2843638|T037|AB|S50.00XD|ICD10CM|Contusion of unspecified elbow, subsequent encounter|Contusion of unspecified elbow, subsequent encounter +C2843639|T037|PT|S50.00XS|ICD10CM|Contusion of unspecified elbow, sequela|Contusion of unspecified elbow, sequela +C2843639|T037|AB|S50.00XS|ICD10CM|Contusion of unspecified elbow, sequela|Contusion of unspecified elbow, sequela +C2201448|T037|HT|S50.01|ICD10CM|Contusion of right elbow|Contusion of right elbow +C2201448|T037|AB|S50.01|ICD10CM|Contusion of right elbow|Contusion of right elbow +C2843640|T037|PT|S50.01XA|ICD10CM|Contusion of right elbow, initial encounter|Contusion of right elbow, initial encounter +C2843640|T037|AB|S50.01XA|ICD10CM|Contusion of right elbow, initial encounter|Contusion of right elbow, initial encounter +C2843641|T037|PT|S50.01XD|ICD10CM|Contusion of right elbow, subsequent encounter|Contusion of right elbow, subsequent encounter +C2843641|T037|AB|S50.01XD|ICD10CM|Contusion of right elbow, subsequent encounter|Contusion of right elbow, subsequent encounter +C2843642|T037|PT|S50.01XS|ICD10CM|Contusion of right elbow, sequela|Contusion of right elbow, sequela +C2843642|T037|AB|S50.01XS|ICD10CM|Contusion of right elbow, sequela|Contusion of right elbow, sequela +C2140858|T037|HT|S50.02|ICD10CM|Contusion of left elbow|Contusion of left elbow +C2140858|T037|AB|S50.02|ICD10CM|Contusion of left elbow|Contusion of left elbow +C2843643|T037|PT|S50.02XA|ICD10CM|Contusion of left elbow, initial encounter|Contusion of left elbow, initial encounter +C2843643|T037|AB|S50.02XA|ICD10CM|Contusion of left elbow, initial encounter|Contusion of left elbow, initial encounter +C2843644|T037|PT|S50.02XD|ICD10CM|Contusion of left elbow, subsequent encounter|Contusion of left elbow, subsequent encounter +C2843644|T037|AB|S50.02XD|ICD10CM|Contusion of left elbow, subsequent encounter|Contusion of left elbow, subsequent encounter +C2843645|T037|PT|S50.02XS|ICD10CM|Contusion of left elbow, sequela|Contusion of left elbow, sequela +C2843645|T037|AB|S50.02XS|ICD10CM|Contusion of left elbow, sequela|Contusion of left elbow, sequela +C0432762|T037|HT|S50.1|ICD10CM|Contusion of forearm|Contusion of forearm +C0432762|T037|AB|S50.1|ICD10CM|Contusion of forearm|Contusion of forearm +C0478284|T037|PT|S50.1|ICD10|Contusion of other and unspecified parts of forearm|Contusion of other and unspecified parts of forearm +C2843646|T037|AB|S50.10|ICD10CM|Contusion of unspecified forearm|Contusion of unspecified forearm +C2843646|T037|HT|S50.10|ICD10CM|Contusion of unspecified forearm|Contusion of unspecified forearm +C2843647|T037|PT|S50.10XA|ICD10CM|Contusion of unspecified forearm, initial encounter|Contusion of unspecified forearm, initial encounter +C2843647|T037|AB|S50.10XA|ICD10CM|Contusion of unspecified forearm, initial encounter|Contusion of unspecified forearm, initial encounter +C2843648|T037|PT|S50.10XD|ICD10CM|Contusion of unspecified forearm, subsequent encounter|Contusion of unspecified forearm, subsequent encounter +C2843648|T037|AB|S50.10XD|ICD10CM|Contusion of unspecified forearm, subsequent encounter|Contusion of unspecified forearm, subsequent encounter +C2843649|T037|PT|S50.10XS|ICD10CM|Contusion of unspecified forearm, sequela|Contusion of unspecified forearm, sequela +C2843649|T037|AB|S50.10XS|ICD10CM|Contusion of unspecified forearm, sequela|Contusion of unspecified forearm, sequela +C2201883|T037|HT|S50.11|ICD10CM|Contusion of right forearm|Contusion of right forearm +C2201883|T037|AB|S50.11|ICD10CM|Contusion of right forearm|Contusion of right forearm +C2843650|T037|PT|S50.11XA|ICD10CM|Contusion of right forearm, initial encounter|Contusion of right forearm, initial encounter +C2843650|T037|AB|S50.11XA|ICD10CM|Contusion of right forearm, initial encounter|Contusion of right forearm, initial encounter +C2843651|T037|PT|S50.11XD|ICD10CM|Contusion of right forearm, subsequent encounter|Contusion of right forearm, subsequent encounter +C2843651|T037|AB|S50.11XD|ICD10CM|Contusion of right forearm, subsequent encounter|Contusion of right forearm, subsequent encounter +C2843652|T037|PT|S50.11XS|ICD10CM|Contusion of right forearm, sequela|Contusion of right forearm, sequela +C2843652|T037|AB|S50.11XS|ICD10CM|Contusion of right forearm, sequela|Contusion of right forearm, sequela +C2141562|T037|HT|S50.12|ICD10CM|Contusion of left forearm|Contusion of left forearm +C2141562|T037|AB|S50.12|ICD10CM|Contusion of left forearm|Contusion of left forearm +C2843653|T037|PT|S50.12XA|ICD10CM|Contusion of left forearm, initial encounter|Contusion of left forearm, initial encounter +C2843653|T037|AB|S50.12XA|ICD10CM|Contusion of left forearm, initial encounter|Contusion of left forearm, initial encounter +C2843654|T037|PT|S50.12XD|ICD10CM|Contusion of left forearm, subsequent encounter|Contusion of left forearm, subsequent encounter +C2843654|T037|AB|S50.12XD|ICD10CM|Contusion of left forearm, subsequent encounter|Contusion of left forearm, subsequent encounter +C2843655|T037|PT|S50.12XS|ICD10CM|Contusion of left forearm, sequela|Contusion of left forearm, sequela +C2843655|T037|AB|S50.12XS|ICD10CM|Contusion of left forearm, sequela|Contusion of left forearm, sequela +C2843656|T037|AB|S50.3|ICD10CM|Other superficial injuries of elbow|Other superficial injuries of elbow +C2843656|T037|HT|S50.3|ICD10CM|Other superficial injuries of elbow|Other superficial injuries of elbow +C2004705|T037|AB|S50.31|ICD10CM|Abrasion of elbow|Abrasion of elbow +C2004705|T037|HT|S50.31|ICD10CM|Abrasion of elbow|Abrasion of elbow +C2041968|T037|AB|S50.311|ICD10CM|Abrasion of right elbow|Abrasion of right elbow +C2041968|T037|HT|S50.311|ICD10CM|Abrasion of right elbow|Abrasion of right elbow +C2843657|T037|PT|S50.311A|ICD10CM|Abrasion of right elbow, initial encounter|Abrasion of right elbow, initial encounter +C2843657|T037|AB|S50.311A|ICD10CM|Abrasion of right elbow, initial encounter|Abrasion of right elbow, initial encounter +C2843658|T037|PT|S50.311D|ICD10CM|Abrasion of right elbow, subsequent encounter|Abrasion of right elbow, subsequent encounter +C2843658|T037|AB|S50.311D|ICD10CM|Abrasion of right elbow, subsequent encounter|Abrasion of right elbow, subsequent encounter +C2843659|T037|PT|S50.311S|ICD10CM|Abrasion of right elbow, sequela|Abrasion of right elbow, sequela +C2843659|T037|AB|S50.311S|ICD10CM|Abrasion of right elbow, sequela|Abrasion of right elbow, sequela +C2004753|T037|AB|S50.312|ICD10CM|Abrasion of left elbow|Abrasion of left elbow +C2004753|T037|HT|S50.312|ICD10CM|Abrasion of left elbow|Abrasion of left elbow +C2843660|T037|PT|S50.312A|ICD10CM|Abrasion of left elbow, initial encounter|Abrasion of left elbow, initial encounter +C2843660|T037|AB|S50.312A|ICD10CM|Abrasion of left elbow, initial encounter|Abrasion of left elbow, initial encounter +C2843661|T037|PT|S50.312D|ICD10CM|Abrasion of left elbow, subsequent encounter|Abrasion of left elbow, subsequent encounter +C2843661|T037|AB|S50.312D|ICD10CM|Abrasion of left elbow, subsequent encounter|Abrasion of left elbow, subsequent encounter +C2843662|T037|PT|S50.312S|ICD10CM|Abrasion of left elbow, sequela|Abrasion of left elbow, sequela +C2843662|T037|AB|S50.312S|ICD10CM|Abrasion of left elbow, sequela|Abrasion of left elbow, sequela +C2843663|T037|AB|S50.319|ICD10CM|Abrasion of unspecified elbow|Abrasion of unspecified elbow +C2843663|T037|HT|S50.319|ICD10CM|Abrasion of unspecified elbow|Abrasion of unspecified elbow +C2843664|T037|PT|S50.319A|ICD10CM|Abrasion of unspecified elbow, initial encounter|Abrasion of unspecified elbow, initial encounter +C2843664|T037|AB|S50.319A|ICD10CM|Abrasion of unspecified elbow, initial encounter|Abrasion of unspecified elbow, initial encounter +C2843665|T037|PT|S50.319D|ICD10CM|Abrasion of unspecified elbow, subsequent encounter|Abrasion of unspecified elbow, subsequent encounter +C2843665|T037|AB|S50.319D|ICD10CM|Abrasion of unspecified elbow, subsequent encounter|Abrasion of unspecified elbow, subsequent encounter +C2843666|T037|PT|S50.319S|ICD10CM|Abrasion of unspecified elbow, sequela|Abrasion of unspecified elbow, sequela +C2843666|T037|AB|S50.319S|ICD10CM|Abrasion of unspecified elbow, sequela|Abrasion of unspecified elbow, sequela +C2843667|T037|AB|S50.32|ICD10CM|Blister (nonthermal) of elbow|Blister (nonthermal) of elbow +C2843667|T037|HT|S50.32|ICD10CM|Blister (nonthermal) of elbow|Blister (nonthermal) of elbow +C2843668|T037|AB|S50.321|ICD10CM|Blister (nonthermal) of right elbow|Blister (nonthermal) of right elbow +C2843668|T037|HT|S50.321|ICD10CM|Blister (nonthermal) of right elbow|Blister (nonthermal) of right elbow +C2843669|T037|AB|S50.321A|ICD10CM|Blister (nonthermal) of right elbow, initial encounter|Blister (nonthermal) of right elbow, initial encounter +C2843669|T037|PT|S50.321A|ICD10CM|Blister (nonthermal) of right elbow, initial encounter|Blister (nonthermal) of right elbow, initial encounter +C2843670|T037|AB|S50.321D|ICD10CM|Blister (nonthermal) of right elbow, subsequent encounter|Blister (nonthermal) of right elbow, subsequent encounter +C2843670|T037|PT|S50.321D|ICD10CM|Blister (nonthermal) of right elbow, subsequent encounter|Blister (nonthermal) of right elbow, subsequent encounter +C2843671|T037|AB|S50.321S|ICD10CM|Blister (nonthermal) of right elbow, sequela|Blister (nonthermal) of right elbow, sequela +C2843671|T037|PT|S50.321S|ICD10CM|Blister (nonthermal) of right elbow, sequela|Blister (nonthermal) of right elbow, sequela +C2843672|T037|AB|S50.322|ICD10CM|Blister (nonthermal) of left elbow|Blister (nonthermal) of left elbow +C2843672|T037|HT|S50.322|ICD10CM|Blister (nonthermal) of left elbow|Blister (nonthermal) of left elbow +C2843673|T037|AB|S50.322A|ICD10CM|Blister (nonthermal) of left elbow, initial encounter|Blister (nonthermal) of left elbow, initial encounter +C2843673|T037|PT|S50.322A|ICD10CM|Blister (nonthermal) of left elbow, initial encounter|Blister (nonthermal) of left elbow, initial encounter +C2843674|T037|AB|S50.322D|ICD10CM|Blister (nonthermal) of left elbow, subsequent encounter|Blister (nonthermal) of left elbow, subsequent encounter +C2843674|T037|PT|S50.322D|ICD10CM|Blister (nonthermal) of left elbow, subsequent encounter|Blister (nonthermal) of left elbow, subsequent encounter +C2843675|T037|AB|S50.322S|ICD10CM|Blister (nonthermal) of left elbow, sequela|Blister (nonthermal) of left elbow, sequela +C2843675|T037|PT|S50.322S|ICD10CM|Blister (nonthermal) of left elbow, sequela|Blister (nonthermal) of left elbow, sequela +C2843676|T037|AB|S50.329|ICD10CM|Blister (nonthermal) of unspecified elbow|Blister (nonthermal) of unspecified elbow +C2843676|T037|HT|S50.329|ICD10CM|Blister (nonthermal) of unspecified elbow|Blister (nonthermal) of unspecified elbow +C2843677|T037|AB|S50.329A|ICD10CM|Blister (nonthermal) of unspecified elbow, initial encounter|Blister (nonthermal) of unspecified elbow, initial encounter +C2843677|T037|PT|S50.329A|ICD10CM|Blister (nonthermal) of unspecified elbow, initial encounter|Blister (nonthermal) of unspecified elbow, initial encounter +C2843678|T037|AB|S50.329D|ICD10CM|Blister (nonthermal) of unspecified elbow, subs encntr|Blister (nonthermal) of unspecified elbow, subs encntr +C2843678|T037|PT|S50.329D|ICD10CM|Blister (nonthermal) of unspecified elbow, subsequent encounter|Blister (nonthermal) of unspecified elbow, subsequent encounter +C2843679|T037|AB|S50.329S|ICD10CM|Blister (nonthermal) of unspecified elbow, sequela|Blister (nonthermal) of unspecified elbow, sequela +C2843679|T037|PT|S50.329S|ICD10CM|Blister (nonthermal) of unspecified elbow, sequela|Blister (nonthermal) of unspecified elbow, sequela +C2843680|T037|AB|S50.34|ICD10CM|External constriction of elbow|External constriction of elbow +C2843680|T037|HT|S50.34|ICD10CM|External constriction of elbow|External constriction of elbow +C2843681|T037|AB|S50.341|ICD10CM|External constriction of right elbow|External constriction of right elbow +C2843681|T037|HT|S50.341|ICD10CM|External constriction of right elbow|External constriction of right elbow +C2843682|T037|AB|S50.341A|ICD10CM|External constriction of right elbow, initial encounter|External constriction of right elbow, initial encounter +C2843682|T037|PT|S50.341A|ICD10CM|External constriction of right elbow, initial encounter|External constriction of right elbow, initial encounter +C2843683|T037|AB|S50.341D|ICD10CM|External constriction of right elbow, subsequent encounter|External constriction of right elbow, subsequent encounter +C2843683|T037|PT|S50.341D|ICD10CM|External constriction of right elbow, subsequent encounter|External constriction of right elbow, subsequent encounter +C2843684|T037|AB|S50.341S|ICD10CM|External constriction of right elbow, sequela|External constriction of right elbow, sequela +C2843684|T037|PT|S50.341S|ICD10CM|External constriction of right elbow, sequela|External constriction of right elbow, sequela +C2843685|T037|AB|S50.342|ICD10CM|External constriction of left elbow|External constriction of left elbow +C2843685|T037|HT|S50.342|ICD10CM|External constriction of left elbow|External constriction of left elbow +C2843686|T037|AB|S50.342A|ICD10CM|External constriction of left elbow, initial encounter|External constriction of left elbow, initial encounter +C2843686|T037|PT|S50.342A|ICD10CM|External constriction of left elbow, initial encounter|External constriction of left elbow, initial encounter +C2843687|T037|AB|S50.342D|ICD10CM|External constriction of left elbow, subsequent encounter|External constriction of left elbow, subsequent encounter +C2843687|T037|PT|S50.342D|ICD10CM|External constriction of left elbow, subsequent encounter|External constriction of left elbow, subsequent encounter +C2843688|T037|AB|S50.342S|ICD10CM|External constriction of left elbow, sequela|External constriction of left elbow, sequela +C2843688|T037|PT|S50.342S|ICD10CM|External constriction of left elbow, sequela|External constriction of left elbow, sequela +C2843689|T037|AB|S50.349|ICD10CM|External constriction of unspecified elbow|External constriction of unspecified elbow +C2843689|T037|HT|S50.349|ICD10CM|External constriction of unspecified elbow|External constriction of unspecified elbow +C2843690|T037|AB|S50.349A|ICD10CM|External constriction of unspecified elbow, init encntr|External constriction of unspecified elbow, init encntr +C2843690|T037|PT|S50.349A|ICD10CM|External constriction of unspecified elbow, initial encounter|External constriction of unspecified elbow, initial encounter +C2843691|T037|AB|S50.349D|ICD10CM|External constriction of unspecified elbow, subs encntr|External constriction of unspecified elbow, subs encntr +C2843691|T037|PT|S50.349D|ICD10CM|External constriction of unspecified elbow, subsequent encounter|External constriction of unspecified elbow, subsequent encounter +C2843692|T037|AB|S50.349S|ICD10CM|External constriction of unspecified elbow, sequela|External constriction of unspecified elbow, sequela +C2843692|T037|PT|S50.349S|ICD10CM|External constriction of unspecified elbow, sequela|External constriction of unspecified elbow, sequela +C2018801|T037|ET|S50.35|ICD10CM|Splinter in the elbow|Splinter in the elbow +C2037281|T037|AB|S50.35|ICD10CM|Superficial foreign body of elbow|Superficial foreign body of elbow +C2037281|T037|HT|S50.35|ICD10CM|Superficial foreign body of elbow|Superficial foreign body of elbow +C2843693|T037|AB|S50.351|ICD10CM|Superficial foreign body of right elbow|Superficial foreign body of right elbow +C2843693|T037|HT|S50.351|ICD10CM|Superficial foreign body of right elbow|Superficial foreign body of right elbow +C2843694|T037|AB|S50.351A|ICD10CM|Superficial foreign body of right elbow, initial encounter|Superficial foreign body of right elbow, initial encounter +C2843694|T037|PT|S50.351A|ICD10CM|Superficial foreign body of right elbow, initial encounter|Superficial foreign body of right elbow, initial encounter +C2843695|T037|AB|S50.351D|ICD10CM|Superficial foreign body of right elbow, subs encntr|Superficial foreign body of right elbow, subs encntr +C2843695|T037|PT|S50.351D|ICD10CM|Superficial foreign body of right elbow, subsequent encounter|Superficial foreign body of right elbow, subsequent encounter +C2843696|T037|AB|S50.351S|ICD10CM|Superficial foreign body of right elbow, sequela|Superficial foreign body of right elbow, sequela +C2843696|T037|PT|S50.351S|ICD10CM|Superficial foreign body of right elbow, sequela|Superficial foreign body of right elbow, sequela +C2843697|T037|AB|S50.352|ICD10CM|Superficial foreign body of left elbow|Superficial foreign body of left elbow +C2843697|T037|HT|S50.352|ICD10CM|Superficial foreign body of left elbow|Superficial foreign body of left elbow +C2843698|T037|AB|S50.352A|ICD10CM|Superficial foreign body of left elbow, initial encounter|Superficial foreign body of left elbow, initial encounter +C2843698|T037|PT|S50.352A|ICD10CM|Superficial foreign body of left elbow, initial encounter|Superficial foreign body of left elbow, initial encounter +C2843699|T037|AB|S50.352D|ICD10CM|Superficial foreign body of left elbow, subsequent encounter|Superficial foreign body of left elbow, subsequent encounter +C2843699|T037|PT|S50.352D|ICD10CM|Superficial foreign body of left elbow, subsequent encounter|Superficial foreign body of left elbow, subsequent encounter +C2843700|T037|AB|S50.352S|ICD10CM|Superficial foreign body of left elbow, sequela|Superficial foreign body of left elbow, sequela +C2843700|T037|PT|S50.352S|ICD10CM|Superficial foreign body of left elbow, sequela|Superficial foreign body of left elbow, sequela +C2843701|T037|AB|S50.359|ICD10CM|Superficial foreign body of unspecified elbow|Superficial foreign body of unspecified elbow +C2843701|T037|HT|S50.359|ICD10CM|Superficial foreign body of unspecified elbow|Superficial foreign body of unspecified elbow +C2843702|T037|AB|S50.359A|ICD10CM|Superficial foreign body of unspecified elbow, init encntr|Superficial foreign body of unspecified elbow, init encntr +C2843702|T037|PT|S50.359A|ICD10CM|Superficial foreign body of unspecified elbow, initial encounter|Superficial foreign body of unspecified elbow, initial encounter +C2843703|T037|AB|S50.359D|ICD10CM|Superficial foreign body of unspecified elbow, subs encntr|Superficial foreign body of unspecified elbow, subs encntr +C2843703|T037|PT|S50.359D|ICD10CM|Superficial foreign body of unspecified elbow, subsequent encounter|Superficial foreign body of unspecified elbow, subsequent encounter +C2843704|T037|AB|S50.359S|ICD10CM|Superficial foreign body of unspecified elbow, sequela|Superficial foreign body of unspecified elbow, sequela +C2843704|T037|PT|S50.359S|ICD10CM|Superficial foreign body of unspecified elbow, sequela|Superficial foreign body of unspecified elbow, sequela +C0433030|T037|AB|S50.36|ICD10CM|Insect bite (nonvenomous) of elbow|Insect bite (nonvenomous) of elbow +C0433030|T037|HT|S50.36|ICD10CM|Insect bite (nonvenomous) of elbow|Insect bite (nonvenomous) of elbow +C2231570|T037|AB|S50.361|ICD10CM|Insect bite (nonvenomous) of right elbow|Insect bite (nonvenomous) of right elbow +C2231570|T037|HT|S50.361|ICD10CM|Insect bite (nonvenomous) of right elbow|Insect bite (nonvenomous) of right elbow +C2843705|T037|AB|S50.361A|ICD10CM|Insect bite (nonvenomous) of right elbow, initial encounter|Insect bite (nonvenomous) of right elbow, initial encounter +C2843705|T037|PT|S50.361A|ICD10CM|Insect bite (nonvenomous) of right elbow, initial encounter|Insect bite (nonvenomous) of right elbow, initial encounter +C2843706|T037|AB|S50.361D|ICD10CM|Insect bite (nonvenomous) of right elbow, subs encntr|Insect bite (nonvenomous) of right elbow, subs encntr +C2843706|T037|PT|S50.361D|ICD10CM|Insect bite (nonvenomous) of right elbow, subsequent encounter|Insect bite (nonvenomous) of right elbow, subsequent encounter +C2843707|T037|AB|S50.361S|ICD10CM|Insect bite (nonvenomous) of right elbow, sequela|Insect bite (nonvenomous) of right elbow, sequela +C2843707|T037|PT|S50.361S|ICD10CM|Insect bite (nonvenomous) of right elbow, sequela|Insect bite (nonvenomous) of right elbow, sequela +C2231571|T037|AB|S50.362|ICD10CM|Insect bite (nonvenomous) of left elbow|Insect bite (nonvenomous) of left elbow +C2231571|T037|HT|S50.362|ICD10CM|Insect bite (nonvenomous) of left elbow|Insect bite (nonvenomous) of left elbow +C2843708|T037|AB|S50.362A|ICD10CM|Insect bite (nonvenomous) of left elbow, initial encounter|Insect bite (nonvenomous) of left elbow, initial encounter +C2843708|T037|PT|S50.362A|ICD10CM|Insect bite (nonvenomous) of left elbow, initial encounter|Insect bite (nonvenomous) of left elbow, initial encounter +C2843709|T037|AB|S50.362D|ICD10CM|Insect bite (nonvenomous) of left elbow, subs encntr|Insect bite (nonvenomous) of left elbow, subs encntr +C2843709|T037|PT|S50.362D|ICD10CM|Insect bite (nonvenomous) of left elbow, subsequent encounter|Insect bite (nonvenomous) of left elbow, subsequent encounter +C2843710|T037|AB|S50.362S|ICD10CM|Insect bite (nonvenomous) of left elbow, sequela|Insect bite (nonvenomous) of left elbow, sequela +C2843710|T037|PT|S50.362S|ICD10CM|Insect bite (nonvenomous) of left elbow, sequela|Insect bite (nonvenomous) of left elbow, sequela +C2843711|T037|AB|S50.369|ICD10CM|Insect bite (nonvenomous) of unspecified elbow|Insect bite (nonvenomous) of unspecified elbow +C2843711|T037|HT|S50.369|ICD10CM|Insect bite (nonvenomous) of unspecified elbow|Insect bite (nonvenomous) of unspecified elbow +C2843712|T037|AB|S50.369A|ICD10CM|Insect bite (nonvenomous) of unspecified elbow, init encntr|Insect bite (nonvenomous) of unspecified elbow, init encntr +C2843712|T037|PT|S50.369A|ICD10CM|Insect bite (nonvenomous) of unspecified elbow, initial encounter|Insect bite (nonvenomous) of unspecified elbow, initial encounter +C2843713|T037|AB|S50.369D|ICD10CM|Insect bite (nonvenomous) of unspecified elbow, subs encntr|Insect bite (nonvenomous) of unspecified elbow, subs encntr +C2843713|T037|PT|S50.369D|ICD10CM|Insect bite (nonvenomous) of unspecified elbow, subsequent encounter|Insect bite (nonvenomous) of unspecified elbow, subsequent encounter +C2843714|T037|AB|S50.369S|ICD10CM|Insect bite (nonvenomous) of unspecified elbow, sequela|Insect bite (nonvenomous) of unspecified elbow, sequela +C2843714|T037|PT|S50.369S|ICD10CM|Insect bite (nonvenomous) of unspecified elbow, sequela|Insect bite (nonvenomous) of unspecified elbow, sequela +C2843715|T037|AB|S50.37|ICD10CM|Other superficial bite of elbow|Other superficial bite of elbow +C2843715|T037|HT|S50.37|ICD10CM|Other superficial bite of elbow|Other superficial bite of elbow +C2843716|T037|AB|S50.371|ICD10CM|Other superficial bite of right elbow|Other superficial bite of right elbow +C2843716|T037|HT|S50.371|ICD10CM|Other superficial bite of right elbow|Other superficial bite of right elbow +C2843717|T037|AB|S50.371A|ICD10CM|Other superficial bite of right elbow, initial encounter|Other superficial bite of right elbow, initial encounter +C2843717|T037|PT|S50.371A|ICD10CM|Other superficial bite of right elbow, initial encounter|Other superficial bite of right elbow, initial encounter +C2843718|T037|AB|S50.371D|ICD10CM|Other superficial bite of right elbow, subsequent encounter|Other superficial bite of right elbow, subsequent encounter +C2843718|T037|PT|S50.371D|ICD10CM|Other superficial bite of right elbow, subsequent encounter|Other superficial bite of right elbow, subsequent encounter +C2843719|T037|AB|S50.371S|ICD10CM|Other superficial bite of right elbow, sequela|Other superficial bite of right elbow, sequela +C2843719|T037|PT|S50.371S|ICD10CM|Other superficial bite of right elbow, sequela|Other superficial bite of right elbow, sequela +C2843720|T037|AB|S50.372|ICD10CM|Other superficial bite of left elbow|Other superficial bite of left elbow +C2843720|T037|HT|S50.372|ICD10CM|Other superficial bite of left elbow|Other superficial bite of left elbow +C2843721|T037|AB|S50.372A|ICD10CM|Other superficial bite of left elbow, initial encounter|Other superficial bite of left elbow, initial encounter +C2843721|T037|PT|S50.372A|ICD10CM|Other superficial bite of left elbow, initial encounter|Other superficial bite of left elbow, initial encounter +C2843722|T037|AB|S50.372D|ICD10CM|Other superficial bite of left elbow, subsequent encounter|Other superficial bite of left elbow, subsequent encounter +C2843722|T037|PT|S50.372D|ICD10CM|Other superficial bite of left elbow, subsequent encounter|Other superficial bite of left elbow, subsequent encounter +C2843723|T037|AB|S50.372S|ICD10CM|Other superficial bite of left elbow, sequela|Other superficial bite of left elbow, sequela +C2843723|T037|PT|S50.372S|ICD10CM|Other superficial bite of left elbow, sequela|Other superficial bite of left elbow, sequela +C2843724|T037|AB|S50.379|ICD10CM|Other superficial bite of unspecified elbow|Other superficial bite of unspecified elbow +C2843724|T037|HT|S50.379|ICD10CM|Other superficial bite of unspecified elbow|Other superficial bite of unspecified elbow +C2843725|T037|AB|S50.379A|ICD10CM|Other superficial bite of unspecified elbow, init encntr|Other superficial bite of unspecified elbow, init encntr +C2843725|T037|PT|S50.379A|ICD10CM|Other superficial bite of unspecified elbow, initial encounter|Other superficial bite of unspecified elbow, initial encounter +C2843726|T037|AB|S50.379D|ICD10CM|Other superficial bite of unspecified elbow, subs encntr|Other superficial bite of unspecified elbow, subs encntr +C2843726|T037|PT|S50.379D|ICD10CM|Other superficial bite of unspecified elbow, subsequent encounter|Other superficial bite of unspecified elbow, subsequent encounter +C2843727|T037|AB|S50.379S|ICD10CM|Other superficial bite of unspecified elbow, sequela|Other superficial bite of unspecified elbow, sequela +C2843727|T037|PT|S50.379S|ICD10CM|Other superficial bite of unspecified elbow, sequela|Other superficial bite of unspecified elbow, sequela +C0451961|T037|PT|S50.7|ICD10|Multiple superficial injuries of forearm|Multiple superficial injuries of forearm +C0478285|T037|PT|S50.8|ICD10|Other superficial injuries of forearm|Other superficial injuries of forearm +C0478285|T037|HT|S50.8|ICD10CM|Other superficial injuries of forearm|Other superficial injuries of forearm +C0478285|T037|AB|S50.8|ICD10CM|Other superficial injuries of forearm|Other superficial injuries of forearm +C0432843|T037|HT|S50.81|ICD10CM|Abrasion of forearm|Abrasion of forearm +C0432843|T037|AB|S50.81|ICD10CM|Abrasion of forearm|Abrasion of forearm +C2041974|T037|HT|S50.811|ICD10CM|Abrasion of right forearm|Abrasion of right forearm +C2041974|T037|AB|S50.811|ICD10CM|Abrasion of right forearm|Abrasion of right forearm +C2843728|T037|PT|S50.811A|ICD10CM|Abrasion of right forearm, initial encounter|Abrasion of right forearm, initial encounter +C2843728|T037|AB|S50.811A|ICD10CM|Abrasion of right forearm, initial encounter|Abrasion of right forearm, initial encounter +C2843729|T037|PT|S50.811D|ICD10CM|Abrasion of right forearm, subsequent encounter|Abrasion of right forearm, subsequent encounter +C2843729|T037|AB|S50.811D|ICD10CM|Abrasion of right forearm, subsequent encounter|Abrasion of right forearm, subsequent encounter +C2843730|T037|PT|S50.811S|ICD10CM|Abrasion of right forearm, sequela|Abrasion of right forearm, sequela +C2843730|T037|AB|S50.811S|ICD10CM|Abrasion of right forearm, sequela|Abrasion of right forearm, sequela +C2004759|T037|HT|S50.812|ICD10CM|Abrasion of left forearm|Abrasion of left forearm +C2004759|T037|AB|S50.812|ICD10CM|Abrasion of left forearm|Abrasion of left forearm +C2843731|T037|PT|S50.812A|ICD10CM|Abrasion of left forearm, initial encounter|Abrasion of left forearm, initial encounter +C2843731|T037|AB|S50.812A|ICD10CM|Abrasion of left forearm, initial encounter|Abrasion of left forearm, initial encounter +C2843732|T037|PT|S50.812D|ICD10CM|Abrasion of left forearm, subsequent encounter|Abrasion of left forearm, subsequent encounter +C2843732|T037|AB|S50.812D|ICD10CM|Abrasion of left forearm, subsequent encounter|Abrasion of left forearm, subsequent encounter +C2843733|T037|PT|S50.812S|ICD10CM|Abrasion of left forearm, sequela|Abrasion of left forearm, sequela +C2843733|T037|AB|S50.812S|ICD10CM|Abrasion of left forearm, sequela|Abrasion of left forearm, sequela +C2843734|T037|AB|S50.819|ICD10CM|Abrasion of unspecified forearm|Abrasion of unspecified forearm +C2843734|T037|HT|S50.819|ICD10CM|Abrasion of unspecified forearm|Abrasion of unspecified forearm +C2843735|T037|PT|S50.819A|ICD10CM|Abrasion of unspecified forearm, initial encounter|Abrasion of unspecified forearm, initial encounter +C2843735|T037|AB|S50.819A|ICD10CM|Abrasion of unspecified forearm, initial encounter|Abrasion of unspecified forearm, initial encounter +C2843736|T037|PT|S50.819D|ICD10CM|Abrasion of unspecified forearm, subsequent encounter|Abrasion of unspecified forearm, subsequent encounter +C2843736|T037|AB|S50.819D|ICD10CM|Abrasion of unspecified forearm, subsequent encounter|Abrasion of unspecified forearm, subsequent encounter +C2843737|T037|PT|S50.819S|ICD10CM|Abrasion of unspecified forearm, sequela|Abrasion of unspecified forearm, sequela +C2843737|T037|AB|S50.819S|ICD10CM|Abrasion of unspecified forearm, sequela|Abrasion of unspecified forearm, sequela +C2843738|T037|AB|S50.82|ICD10CM|Blister (nonthermal) of forearm|Blister (nonthermal) of forearm +C2843738|T037|HT|S50.82|ICD10CM|Blister (nonthermal) of forearm|Blister (nonthermal) of forearm +C2843739|T037|AB|S50.821|ICD10CM|Blister (nonthermal) of right forearm|Blister (nonthermal) of right forearm +C2843739|T037|HT|S50.821|ICD10CM|Blister (nonthermal) of right forearm|Blister (nonthermal) of right forearm +C2843740|T037|AB|S50.821A|ICD10CM|Blister (nonthermal) of right forearm, initial encounter|Blister (nonthermal) of right forearm, initial encounter +C2843740|T037|PT|S50.821A|ICD10CM|Blister (nonthermal) of right forearm, initial encounter|Blister (nonthermal) of right forearm, initial encounter +C2843741|T037|AB|S50.821D|ICD10CM|Blister (nonthermal) of right forearm, subsequent encounter|Blister (nonthermal) of right forearm, subsequent encounter +C2843741|T037|PT|S50.821D|ICD10CM|Blister (nonthermal) of right forearm, subsequent encounter|Blister (nonthermal) of right forearm, subsequent encounter +C2843742|T037|AB|S50.821S|ICD10CM|Blister (nonthermal) of right forearm, sequela|Blister (nonthermal) of right forearm, sequela +C2843742|T037|PT|S50.821S|ICD10CM|Blister (nonthermal) of right forearm, sequela|Blister (nonthermal) of right forearm, sequela +C2843743|T037|AB|S50.822|ICD10CM|Blister (nonthermal) of left forearm|Blister (nonthermal) of left forearm +C2843743|T037|HT|S50.822|ICD10CM|Blister (nonthermal) of left forearm|Blister (nonthermal) of left forearm +C2843744|T037|AB|S50.822A|ICD10CM|Blister (nonthermal) of left forearm, initial encounter|Blister (nonthermal) of left forearm, initial encounter +C2843744|T037|PT|S50.822A|ICD10CM|Blister (nonthermal) of left forearm, initial encounter|Blister (nonthermal) of left forearm, initial encounter +C2843745|T037|AB|S50.822D|ICD10CM|Blister (nonthermal) of left forearm, subsequent encounter|Blister (nonthermal) of left forearm, subsequent encounter +C2843745|T037|PT|S50.822D|ICD10CM|Blister (nonthermal) of left forearm, subsequent encounter|Blister (nonthermal) of left forearm, subsequent encounter +C2843746|T037|AB|S50.822S|ICD10CM|Blister (nonthermal) of left forearm, sequela|Blister (nonthermal) of left forearm, sequela +C2843746|T037|PT|S50.822S|ICD10CM|Blister (nonthermal) of left forearm, sequela|Blister (nonthermal) of left forearm, sequela +C2843747|T037|AB|S50.829|ICD10CM|Blister (nonthermal) of unspecified forearm|Blister (nonthermal) of unspecified forearm +C2843747|T037|HT|S50.829|ICD10CM|Blister (nonthermal) of unspecified forearm|Blister (nonthermal) of unspecified forearm +C2843748|T037|AB|S50.829A|ICD10CM|Blister (nonthermal) of unspecified forearm, init encntr|Blister (nonthermal) of unspecified forearm, init encntr +C2843748|T037|PT|S50.829A|ICD10CM|Blister (nonthermal) of unspecified forearm, initial encounter|Blister (nonthermal) of unspecified forearm, initial encounter +C2843749|T037|AB|S50.829D|ICD10CM|Blister (nonthermal) of unspecified forearm, subs encntr|Blister (nonthermal) of unspecified forearm, subs encntr +C2843749|T037|PT|S50.829D|ICD10CM|Blister (nonthermal) of unspecified forearm, subsequent encounter|Blister (nonthermal) of unspecified forearm, subsequent encounter +C2843750|T037|AB|S50.829S|ICD10CM|Blister (nonthermal) of unspecified forearm, sequela|Blister (nonthermal) of unspecified forearm, sequela +C2843750|T037|PT|S50.829S|ICD10CM|Blister (nonthermal) of unspecified forearm, sequela|Blister (nonthermal) of unspecified forearm, sequela +C2843751|T037|AB|S50.84|ICD10CM|External constriction of forearm|External constriction of forearm +C2843751|T037|HT|S50.84|ICD10CM|External constriction of forearm|External constriction of forearm +C2843752|T037|AB|S50.841|ICD10CM|External constriction of right forearm|External constriction of right forearm +C2843752|T037|HT|S50.841|ICD10CM|External constriction of right forearm|External constriction of right forearm +C2843753|T037|AB|S50.841A|ICD10CM|External constriction of right forearm, initial encounter|External constriction of right forearm, initial encounter +C2843753|T037|PT|S50.841A|ICD10CM|External constriction of right forearm, initial encounter|External constriction of right forearm, initial encounter +C2843754|T037|AB|S50.841D|ICD10CM|External constriction of right forearm, subsequent encounter|External constriction of right forearm, subsequent encounter +C2843754|T037|PT|S50.841D|ICD10CM|External constriction of right forearm, subsequent encounter|External constriction of right forearm, subsequent encounter +C2843755|T037|AB|S50.841S|ICD10CM|External constriction of right forearm, sequela|External constriction of right forearm, sequela +C2843755|T037|PT|S50.841S|ICD10CM|External constriction of right forearm, sequela|External constriction of right forearm, sequela +C2843756|T037|AB|S50.842|ICD10CM|External constriction of left forearm|External constriction of left forearm +C2843756|T037|HT|S50.842|ICD10CM|External constriction of left forearm|External constriction of left forearm +C2843757|T037|AB|S50.842A|ICD10CM|External constriction of left forearm, initial encounter|External constriction of left forearm, initial encounter +C2843757|T037|PT|S50.842A|ICD10CM|External constriction of left forearm, initial encounter|External constriction of left forearm, initial encounter +C2843758|T037|AB|S50.842D|ICD10CM|External constriction of left forearm, subsequent encounter|External constriction of left forearm, subsequent encounter +C2843758|T037|PT|S50.842D|ICD10CM|External constriction of left forearm, subsequent encounter|External constriction of left forearm, subsequent encounter +C2843759|T037|AB|S50.842S|ICD10CM|External constriction of left forearm, sequela|External constriction of left forearm, sequela +C2843759|T037|PT|S50.842S|ICD10CM|External constriction of left forearm, sequela|External constriction of left forearm, sequela +C2843760|T037|AB|S50.849|ICD10CM|External constriction of unspecified forearm|External constriction of unspecified forearm +C2843760|T037|HT|S50.849|ICD10CM|External constriction of unspecified forearm|External constriction of unspecified forearm +C2843761|T037|AB|S50.849A|ICD10CM|External constriction of unspecified forearm, init encntr|External constriction of unspecified forearm, init encntr +C2843761|T037|PT|S50.849A|ICD10CM|External constriction of unspecified forearm, initial encounter|External constriction of unspecified forearm, initial encounter +C2843762|T037|AB|S50.849D|ICD10CM|External constriction of unspecified forearm, subs encntr|External constriction of unspecified forearm, subs encntr +C2843762|T037|PT|S50.849D|ICD10CM|External constriction of unspecified forearm, subsequent encounter|External constriction of unspecified forearm, subsequent encounter +C2843763|T037|AB|S50.849S|ICD10CM|External constriction of unspecified forearm, sequela|External constriction of unspecified forearm, sequela +C2843763|T037|PT|S50.849S|ICD10CM|External constriction of unspecified forearm, sequela|External constriction of unspecified forearm, sequela +C2018804|T037|ET|S50.85|ICD10CM|Splinter in the forearm|Splinter in the forearm +C2037283|T037|AB|S50.85|ICD10CM|Superficial foreign body of forearm|Superficial foreign body of forearm +C2037283|T037|HT|S50.85|ICD10CM|Superficial foreign body of forearm|Superficial foreign body of forearm +C2843764|T037|AB|S50.851|ICD10CM|Superficial foreign body of right forearm|Superficial foreign body of right forearm +C2843764|T037|HT|S50.851|ICD10CM|Superficial foreign body of right forearm|Superficial foreign body of right forearm +C2843765|T037|AB|S50.851A|ICD10CM|Superficial foreign body of right forearm, initial encounter|Superficial foreign body of right forearm, initial encounter +C2843765|T037|PT|S50.851A|ICD10CM|Superficial foreign body of right forearm, initial encounter|Superficial foreign body of right forearm, initial encounter +C2843766|T037|AB|S50.851D|ICD10CM|Superficial foreign body of right forearm, subs encntr|Superficial foreign body of right forearm, subs encntr +C2843766|T037|PT|S50.851D|ICD10CM|Superficial foreign body of right forearm, subsequent encounter|Superficial foreign body of right forearm, subsequent encounter +C2843767|T037|AB|S50.851S|ICD10CM|Superficial foreign body of right forearm, sequela|Superficial foreign body of right forearm, sequela +C2843767|T037|PT|S50.851S|ICD10CM|Superficial foreign body of right forearm, sequela|Superficial foreign body of right forearm, sequela +C2843768|T037|AB|S50.852|ICD10CM|Superficial foreign body of left forearm|Superficial foreign body of left forearm +C2843768|T037|HT|S50.852|ICD10CM|Superficial foreign body of left forearm|Superficial foreign body of left forearm +C2843769|T037|AB|S50.852A|ICD10CM|Superficial foreign body of left forearm, initial encounter|Superficial foreign body of left forearm, initial encounter +C2843769|T037|PT|S50.852A|ICD10CM|Superficial foreign body of left forearm, initial encounter|Superficial foreign body of left forearm, initial encounter +C2843770|T037|AB|S50.852D|ICD10CM|Superficial foreign body of left forearm, subs encntr|Superficial foreign body of left forearm, subs encntr +C2843770|T037|PT|S50.852D|ICD10CM|Superficial foreign body of left forearm, subsequent encounter|Superficial foreign body of left forearm, subsequent encounter +C2843771|T037|AB|S50.852S|ICD10CM|Superficial foreign body of left forearm, sequela|Superficial foreign body of left forearm, sequela +C2843771|T037|PT|S50.852S|ICD10CM|Superficial foreign body of left forearm, sequela|Superficial foreign body of left forearm, sequela +C2843772|T037|AB|S50.859|ICD10CM|Superficial foreign body of unspecified forearm|Superficial foreign body of unspecified forearm +C2843772|T037|HT|S50.859|ICD10CM|Superficial foreign body of unspecified forearm|Superficial foreign body of unspecified forearm +C2843773|T037|AB|S50.859A|ICD10CM|Superficial foreign body of unspecified forearm, init encntr|Superficial foreign body of unspecified forearm, init encntr +C2843773|T037|PT|S50.859A|ICD10CM|Superficial foreign body of unspecified forearm, initial encounter|Superficial foreign body of unspecified forearm, initial encounter +C2843774|T037|AB|S50.859D|ICD10CM|Superficial foreign body of unspecified forearm, subs encntr|Superficial foreign body of unspecified forearm, subs encntr +C2843774|T037|PT|S50.859D|ICD10CM|Superficial foreign body of unspecified forearm, subsequent encounter|Superficial foreign body of unspecified forearm, subsequent encounter +C2843775|T037|AB|S50.859S|ICD10CM|Superficial foreign body of unspecified forearm, sequela|Superficial foreign body of unspecified forearm, sequela +C2843775|T037|PT|S50.859S|ICD10CM|Superficial foreign body of unspecified forearm, sequela|Superficial foreign body of unspecified forearm, sequela +C0433031|T037|AB|S50.86|ICD10CM|Insect bite (nonvenomous) of forearm|Insect bite (nonvenomous) of forearm +C0433031|T037|HT|S50.86|ICD10CM|Insect bite (nonvenomous) of forearm|Insect bite (nonvenomous) of forearm +C2231574|T037|AB|S50.861|ICD10CM|Insect bite (nonvenomous) of right forearm|Insect bite (nonvenomous) of right forearm +C2231574|T037|HT|S50.861|ICD10CM|Insect bite (nonvenomous) of right forearm|Insect bite (nonvenomous) of right forearm +C2843776|T037|AB|S50.861A|ICD10CM|Insect bite (nonvenomous) of right forearm, init encntr|Insect bite (nonvenomous) of right forearm, init encntr +C2843776|T037|PT|S50.861A|ICD10CM|Insect bite (nonvenomous) of right forearm, initial encounter|Insect bite (nonvenomous) of right forearm, initial encounter +C2843777|T037|AB|S50.861D|ICD10CM|Insect bite (nonvenomous) of right forearm, subs encntr|Insect bite (nonvenomous) of right forearm, subs encntr +C2843777|T037|PT|S50.861D|ICD10CM|Insect bite (nonvenomous) of right forearm, subsequent encounter|Insect bite (nonvenomous) of right forearm, subsequent encounter +C2843778|T037|AB|S50.861S|ICD10CM|Insect bite (nonvenomous) of right forearm, sequela|Insect bite (nonvenomous) of right forearm, sequela +C2843778|T037|PT|S50.861S|ICD10CM|Insect bite (nonvenomous) of right forearm, sequela|Insect bite (nonvenomous) of right forearm, sequela +C2231575|T037|AB|S50.862|ICD10CM|Insect bite (nonvenomous) of left forearm|Insect bite (nonvenomous) of left forearm +C2231575|T037|HT|S50.862|ICD10CM|Insect bite (nonvenomous) of left forearm|Insect bite (nonvenomous) of left forearm +C2843779|T037|AB|S50.862A|ICD10CM|Insect bite (nonvenomous) of left forearm, initial encounter|Insect bite (nonvenomous) of left forearm, initial encounter +C2843779|T037|PT|S50.862A|ICD10CM|Insect bite (nonvenomous) of left forearm, initial encounter|Insect bite (nonvenomous) of left forearm, initial encounter +C2843780|T037|AB|S50.862D|ICD10CM|Insect bite (nonvenomous) of left forearm, subs encntr|Insect bite (nonvenomous) of left forearm, subs encntr +C2843780|T037|PT|S50.862D|ICD10CM|Insect bite (nonvenomous) of left forearm, subsequent encounter|Insect bite (nonvenomous) of left forearm, subsequent encounter +C2843781|T037|AB|S50.862S|ICD10CM|Insect bite (nonvenomous) of left forearm, sequela|Insect bite (nonvenomous) of left forearm, sequela +C2843781|T037|PT|S50.862S|ICD10CM|Insect bite (nonvenomous) of left forearm, sequela|Insect bite (nonvenomous) of left forearm, sequela +C2843782|T037|AB|S50.869|ICD10CM|Insect bite (nonvenomous) of unspecified forearm|Insect bite (nonvenomous) of unspecified forearm +C2843782|T037|HT|S50.869|ICD10CM|Insect bite (nonvenomous) of unspecified forearm|Insect bite (nonvenomous) of unspecified forearm +C2843783|T037|AB|S50.869A|ICD10CM|Insect bite (nonvenomous) of unsp forearm, init encntr|Insect bite (nonvenomous) of unsp forearm, init encntr +C2843783|T037|PT|S50.869A|ICD10CM|Insect bite (nonvenomous) of unspecified forearm, initial encounter|Insect bite (nonvenomous) of unspecified forearm, initial encounter +C2843784|T037|AB|S50.869D|ICD10CM|Insect bite (nonvenomous) of unsp forearm, subs encntr|Insect bite (nonvenomous) of unsp forearm, subs encntr +C2843784|T037|PT|S50.869D|ICD10CM|Insect bite (nonvenomous) of unspecified forearm, subsequent encounter|Insect bite (nonvenomous) of unspecified forearm, subsequent encounter +C2843785|T037|AB|S50.869S|ICD10CM|Insect bite (nonvenomous) of unspecified forearm, sequela|Insect bite (nonvenomous) of unspecified forearm, sequela +C2843785|T037|PT|S50.869S|ICD10CM|Insect bite (nonvenomous) of unspecified forearm, sequela|Insect bite (nonvenomous) of unspecified forearm, sequela +C2843786|T037|AB|S50.87|ICD10CM|Other superficial bite of forearm|Other superficial bite of forearm +C2843786|T037|HT|S50.87|ICD10CM|Other superficial bite of forearm|Other superficial bite of forearm +C2843787|T037|AB|S50.871|ICD10CM|Other superficial bite of right forearm|Other superficial bite of right forearm +C2843787|T037|HT|S50.871|ICD10CM|Other superficial bite of right forearm|Other superficial bite of right forearm +C2843788|T037|AB|S50.871A|ICD10CM|Other superficial bite of right forearm, initial encounter|Other superficial bite of right forearm, initial encounter +C2843788|T037|PT|S50.871A|ICD10CM|Other superficial bite of right forearm, initial encounter|Other superficial bite of right forearm, initial encounter +C2843789|T037|AB|S50.871D|ICD10CM|Other superficial bite of right forearm, subs encntr|Other superficial bite of right forearm, subs encntr +C2843789|T037|PT|S50.871D|ICD10CM|Other superficial bite of right forearm, subsequent encounter|Other superficial bite of right forearm, subsequent encounter +C2843790|T037|AB|S50.871S|ICD10CM|Other superficial bite of right forearm, sequela|Other superficial bite of right forearm, sequela +C2843790|T037|PT|S50.871S|ICD10CM|Other superficial bite of right forearm, sequela|Other superficial bite of right forearm, sequela +C2843791|T037|AB|S50.872|ICD10CM|Other superficial bite of left forearm|Other superficial bite of left forearm +C2843791|T037|HT|S50.872|ICD10CM|Other superficial bite of left forearm|Other superficial bite of left forearm +C2843792|T037|AB|S50.872A|ICD10CM|Other superficial bite of left forearm, initial encounter|Other superficial bite of left forearm, initial encounter +C2843792|T037|PT|S50.872A|ICD10CM|Other superficial bite of left forearm, initial encounter|Other superficial bite of left forearm, initial encounter +C2843793|T037|AB|S50.872D|ICD10CM|Other superficial bite of left forearm, subsequent encounter|Other superficial bite of left forearm, subsequent encounter +C2843793|T037|PT|S50.872D|ICD10CM|Other superficial bite of left forearm, subsequent encounter|Other superficial bite of left forearm, subsequent encounter +C2843794|T037|AB|S50.872S|ICD10CM|Other superficial bite of left forearm, sequela|Other superficial bite of left forearm, sequela +C2843794|T037|PT|S50.872S|ICD10CM|Other superficial bite of left forearm, sequela|Other superficial bite of left forearm, sequela +C2843795|T037|AB|S50.879|ICD10CM|Other superficial bite of unspecified forearm|Other superficial bite of unspecified forearm +C2843795|T037|HT|S50.879|ICD10CM|Other superficial bite of unspecified forearm|Other superficial bite of unspecified forearm +C2843796|T037|AB|S50.879A|ICD10CM|Other superficial bite of unspecified forearm, init encntr|Other superficial bite of unspecified forearm, init encntr +C2843796|T037|PT|S50.879A|ICD10CM|Other superficial bite of unspecified forearm, initial encounter|Other superficial bite of unspecified forearm, initial encounter +C2843797|T037|AB|S50.879D|ICD10CM|Other superficial bite of unspecified forearm, subs encntr|Other superficial bite of unspecified forearm, subs encntr +C2843797|T037|PT|S50.879D|ICD10CM|Other superficial bite of unspecified forearm, subsequent encounter|Other superficial bite of unspecified forearm, subsequent encounter +C2843798|T037|AB|S50.879S|ICD10CM|Other superficial bite of unspecified forearm, sequela|Other superficial bite of unspecified forearm, sequela +C2843798|T037|PT|S50.879S|ICD10CM|Other superficial bite of unspecified forearm, sequela|Other superficial bite of unspecified forearm, sequela +C0347544|T037|PT|S50.9|ICD10|Superficial injury of forearm, unspecified|Superficial injury of forearm, unspecified +C2843799|T037|AB|S50.9|ICD10CM|Unspecified superficial injury of elbow and forearm|Unspecified superficial injury of elbow and forearm +C2843799|T037|HT|S50.9|ICD10CM|Unspecified superficial injury of elbow and forearm|Unspecified superficial injury of elbow and forearm +C2843800|T037|AB|S50.90|ICD10CM|Unspecified superficial injury of elbow|Unspecified superficial injury of elbow +C2843800|T037|HT|S50.90|ICD10CM|Unspecified superficial injury of elbow|Unspecified superficial injury of elbow +C2843801|T037|AB|S50.901|ICD10CM|Unspecified superficial injury of right elbow|Unspecified superficial injury of right elbow +C2843801|T037|HT|S50.901|ICD10CM|Unspecified superficial injury of right elbow|Unspecified superficial injury of right elbow +C2843802|T037|AB|S50.901A|ICD10CM|Unspecified superficial injury of right elbow, init encntr|Unspecified superficial injury of right elbow, init encntr +C2843802|T037|PT|S50.901A|ICD10CM|Unspecified superficial injury of right elbow, initial encounter|Unspecified superficial injury of right elbow, initial encounter +C2843803|T037|AB|S50.901D|ICD10CM|Unspecified superficial injury of right elbow, subs encntr|Unspecified superficial injury of right elbow, subs encntr +C2843803|T037|PT|S50.901D|ICD10CM|Unspecified superficial injury of right elbow, subsequent encounter|Unspecified superficial injury of right elbow, subsequent encounter +C2843804|T037|AB|S50.901S|ICD10CM|Unspecified superficial injury of right elbow, sequela|Unspecified superficial injury of right elbow, sequela +C2843804|T037|PT|S50.901S|ICD10CM|Unspecified superficial injury of right elbow, sequela|Unspecified superficial injury of right elbow, sequela +C2843805|T037|AB|S50.902|ICD10CM|Unspecified superficial injury of left elbow|Unspecified superficial injury of left elbow +C2843805|T037|HT|S50.902|ICD10CM|Unspecified superficial injury of left elbow|Unspecified superficial injury of left elbow +C2843806|T037|AB|S50.902A|ICD10CM|Unspecified superficial injury of left elbow, init encntr|Unspecified superficial injury of left elbow, init encntr +C2843806|T037|PT|S50.902A|ICD10CM|Unspecified superficial injury of left elbow, initial encounter|Unspecified superficial injury of left elbow, initial encounter +C2843807|T037|AB|S50.902D|ICD10CM|Unspecified superficial injury of left elbow, subs encntr|Unspecified superficial injury of left elbow, subs encntr +C2843807|T037|PT|S50.902D|ICD10CM|Unspecified superficial injury of left elbow, subsequent encounter|Unspecified superficial injury of left elbow, subsequent encounter +C2843808|T037|AB|S50.902S|ICD10CM|Unspecified superficial injury of left elbow, sequela|Unspecified superficial injury of left elbow, sequela +C2843808|T037|PT|S50.902S|ICD10CM|Unspecified superficial injury of left elbow, sequela|Unspecified superficial injury of left elbow, sequela +C2843809|T037|AB|S50.909|ICD10CM|Unspecified superficial injury of unspecified elbow|Unspecified superficial injury of unspecified elbow +C2843809|T037|HT|S50.909|ICD10CM|Unspecified superficial injury of unspecified elbow|Unspecified superficial injury of unspecified elbow +C2843810|T037|AB|S50.909A|ICD10CM|Unsp superficial injury of unspecified elbow, init encntr|Unsp superficial injury of unspecified elbow, init encntr +C2843810|T037|PT|S50.909A|ICD10CM|Unspecified superficial injury of unspecified elbow, initial encounter|Unspecified superficial injury of unspecified elbow, initial encounter +C2843811|T037|AB|S50.909D|ICD10CM|Unsp superficial injury of unspecified elbow, subs encntr|Unsp superficial injury of unspecified elbow, subs encntr +C2843811|T037|PT|S50.909D|ICD10CM|Unspecified superficial injury of unspecified elbow, subsequent encounter|Unspecified superficial injury of unspecified elbow, subsequent encounter +C2843812|T037|AB|S50.909S|ICD10CM|Unspecified superficial injury of unspecified elbow, sequela|Unspecified superficial injury of unspecified elbow, sequela +C2843812|T037|PT|S50.909S|ICD10CM|Unspecified superficial injury of unspecified elbow, sequela|Unspecified superficial injury of unspecified elbow, sequela +C0347544|T037|AB|S50.91|ICD10CM|Unspecified superficial injury of forearm|Unspecified superficial injury of forearm +C0347544|T037|HT|S50.91|ICD10CM|Unspecified superficial injury of forearm|Unspecified superficial injury of forearm +C2843813|T037|AB|S50.911|ICD10CM|Unspecified superficial injury of right forearm|Unspecified superficial injury of right forearm +C2843813|T037|HT|S50.911|ICD10CM|Unspecified superficial injury of right forearm|Unspecified superficial injury of right forearm +C2843814|T037|AB|S50.911A|ICD10CM|Unspecified superficial injury of right forearm, init encntr|Unspecified superficial injury of right forearm, init encntr +C2843814|T037|PT|S50.911A|ICD10CM|Unspecified superficial injury of right forearm, initial encounter|Unspecified superficial injury of right forearm, initial encounter +C2843815|T037|AB|S50.911D|ICD10CM|Unspecified superficial injury of right forearm, subs encntr|Unspecified superficial injury of right forearm, subs encntr +C2843815|T037|PT|S50.911D|ICD10CM|Unspecified superficial injury of right forearm, subsequent encounter|Unspecified superficial injury of right forearm, subsequent encounter +C2843816|T037|AB|S50.911S|ICD10CM|Unspecified superficial injury of right forearm, sequela|Unspecified superficial injury of right forearm, sequela +C2843816|T037|PT|S50.911S|ICD10CM|Unspecified superficial injury of right forearm, sequela|Unspecified superficial injury of right forearm, sequela +C2843817|T037|AB|S50.912|ICD10CM|Unspecified superficial injury of left forearm|Unspecified superficial injury of left forearm +C2843817|T037|HT|S50.912|ICD10CM|Unspecified superficial injury of left forearm|Unspecified superficial injury of left forearm +C2843818|T037|AB|S50.912A|ICD10CM|Unspecified superficial injury of left forearm, init encntr|Unspecified superficial injury of left forearm, init encntr +C2843818|T037|PT|S50.912A|ICD10CM|Unspecified superficial injury of left forearm, initial encounter|Unspecified superficial injury of left forearm, initial encounter +C2843819|T037|AB|S50.912D|ICD10CM|Unspecified superficial injury of left forearm, subs encntr|Unspecified superficial injury of left forearm, subs encntr +C2843819|T037|PT|S50.912D|ICD10CM|Unspecified superficial injury of left forearm, subsequent encounter|Unspecified superficial injury of left forearm, subsequent encounter +C2843820|T037|AB|S50.912S|ICD10CM|Unspecified superficial injury of left forearm, sequela|Unspecified superficial injury of left forearm, sequela +C2843820|T037|PT|S50.912S|ICD10CM|Unspecified superficial injury of left forearm, sequela|Unspecified superficial injury of left forearm, sequela +C2843821|T037|AB|S50.919|ICD10CM|Unspecified superficial injury of unspecified forearm|Unspecified superficial injury of unspecified forearm +C2843821|T037|HT|S50.919|ICD10CM|Unspecified superficial injury of unspecified forearm|Unspecified superficial injury of unspecified forearm +C2843822|T037|AB|S50.919A|ICD10CM|Unsp superficial injury of unspecified forearm, init encntr|Unsp superficial injury of unspecified forearm, init encntr +C2843822|T037|PT|S50.919A|ICD10CM|Unspecified superficial injury of unspecified forearm, initial encounter|Unspecified superficial injury of unspecified forearm, initial encounter +C2843823|T037|AB|S50.919D|ICD10CM|Unsp superficial injury of unspecified forearm, subs encntr|Unsp superficial injury of unspecified forearm, subs encntr +C2843823|T037|PT|S50.919D|ICD10CM|Unspecified superficial injury of unspecified forearm, subsequent encounter|Unspecified superficial injury of unspecified forearm, subsequent encounter +C2843824|T037|AB|S50.919S|ICD10CM|Unsp superficial injury of unspecified forearm, sequela|Unsp superficial injury of unspecified forearm, sequela +C2843824|T037|PT|S50.919S|ICD10CM|Unspecified superficial injury of unspecified forearm, sequela|Unspecified superficial injury of unspecified forearm, sequela +C2843825|T037|AB|S51|ICD10CM|Open wound of elbow and forearm|Open wound of elbow and forearm +C2843825|T037|HT|S51|ICD10CM|Open wound of elbow and forearm|Open wound of elbow and forearm +C0160604|T037|HT|S51|ICD10|Open wound of forearm|Open wound of forearm +C0160605|T037|PT|S51.0|ICD10|Open wound of elbow|Open wound of elbow +C0160605|T037|HT|S51.0|ICD10CM|Open wound of elbow|Open wound of elbow +C0160605|T037|AB|S51.0|ICD10CM|Open wound of elbow|Open wound of elbow +C2843826|T037|AB|S51.00|ICD10CM|Unspecified open wound of elbow|Unspecified open wound of elbow +C2843826|T037|HT|S51.00|ICD10CM|Unspecified open wound of elbow|Unspecified open wound of elbow +C2843827|T037|AB|S51.001|ICD10CM|Unspecified open wound of right elbow|Unspecified open wound of right elbow +C2843827|T037|HT|S51.001|ICD10CM|Unspecified open wound of right elbow|Unspecified open wound of right elbow +C2843828|T037|AB|S51.001A|ICD10CM|Unspecified open wound of right elbow, initial encounter|Unspecified open wound of right elbow, initial encounter +C2843828|T037|PT|S51.001A|ICD10CM|Unspecified open wound of right elbow, initial encounter|Unspecified open wound of right elbow, initial encounter +C2843829|T037|AB|S51.001D|ICD10CM|Unspecified open wound of right elbow, subsequent encounter|Unspecified open wound of right elbow, subsequent encounter +C2843829|T037|PT|S51.001D|ICD10CM|Unspecified open wound of right elbow, subsequent encounter|Unspecified open wound of right elbow, subsequent encounter +C2843830|T037|AB|S51.001S|ICD10CM|Unspecified open wound of right elbow, sequela|Unspecified open wound of right elbow, sequela +C2843830|T037|PT|S51.001S|ICD10CM|Unspecified open wound of right elbow, sequela|Unspecified open wound of right elbow, sequela +C2843831|T037|AB|S51.002|ICD10CM|Unspecified open wound of left elbow|Unspecified open wound of left elbow +C2843831|T037|HT|S51.002|ICD10CM|Unspecified open wound of left elbow|Unspecified open wound of left elbow +C2843832|T037|AB|S51.002A|ICD10CM|Unspecified open wound of left elbow, initial encounter|Unspecified open wound of left elbow, initial encounter +C2843832|T037|PT|S51.002A|ICD10CM|Unspecified open wound of left elbow, initial encounter|Unspecified open wound of left elbow, initial encounter +C2843833|T037|AB|S51.002D|ICD10CM|Unspecified open wound of left elbow, subsequent encounter|Unspecified open wound of left elbow, subsequent encounter +C2843833|T037|PT|S51.002D|ICD10CM|Unspecified open wound of left elbow, subsequent encounter|Unspecified open wound of left elbow, subsequent encounter +C2843834|T037|AB|S51.002S|ICD10CM|Unspecified open wound of left elbow, sequela|Unspecified open wound of left elbow, sequela +C2843834|T037|PT|S51.002S|ICD10CM|Unspecified open wound of left elbow, sequela|Unspecified open wound of left elbow, sequela +C0160605|T037|ET|S51.009|ICD10CM|Open wound of elbow NOS|Open wound of elbow NOS +C2843835|T037|AB|S51.009|ICD10CM|Unspecified open wound of unspecified elbow|Unspecified open wound of unspecified elbow +C2843835|T037|HT|S51.009|ICD10CM|Unspecified open wound of unspecified elbow|Unspecified open wound of unspecified elbow +C2843836|T037|AB|S51.009A|ICD10CM|Unspecified open wound of unspecified elbow, init encntr|Unspecified open wound of unspecified elbow, init encntr +C2843836|T037|PT|S51.009A|ICD10CM|Unspecified open wound of unspecified elbow, initial encounter|Unspecified open wound of unspecified elbow, initial encounter +C2843837|T037|AB|S51.009D|ICD10CM|Unspecified open wound of unspecified elbow, subs encntr|Unspecified open wound of unspecified elbow, subs encntr +C2843837|T037|PT|S51.009D|ICD10CM|Unspecified open wound of unspecified elbow, subsequent encounter|Unspecified open wound of unspecified elbow, subsequent encounter +C2843838|T037|AB|S51.009S|ICD10CM|Unspecified open wound of unspecified elbow, sequela|Unspecified open wound of unspecified elbow, sequela +C2843838|T037|PT|S51.009S|ICD10CM|Unspecified open wound of unspecified elbow, sequela|Unspecified open wound of unspecified elbow, sequela +C2843839|T037|AB|S51.01|ICD10CM|Laceration without foreign body of elbow|Laceration without foreign body of elbow +C2843839|T037|HT|S51.01|ICD10CM|Laceration without foreign body of elbow|Laceration without foreign body of elbow +C2843840|T037|AB|S51.011|ICD10CM|Laceration without foreign body of right elbow|Laceration without foreign body of right elbow +C2843840|T037|HT|S51.011|ICD10CM|Laceration without foreign body of right elbow|Laceration without foreign body of right elbow +C2843841|T037|AB|S51.011A|ICD10CM|Laceration without foreign body of right elbow, init encntr|Laceration without foreign body of right elbow, init encntr +C2843841|T037|PT|S51.011A|ICD10CM|Laceration without foreign body of right elbow, initial encounter|Laceration without foreign body of right elbow, initial encounter +C2843842|T037|AB|S51.011D|ICD10CM|Laceration without foreign body of right elbow, subs encntr|Laceration without foreign body of right elbow, subs encntr +C2843842|T037|PT|S51.011D|ICD10CM|Laceration without foreign body of right elbow, subsequent encounter|Laceration without foreign body of right elbow, subsequent encounter +C2843843|T037|AB|S51.011S|ICD10CM|Laceration without foreign body of right elbow, sequela|Laceration without foreign body of right elbow, sequela +C2843843|T037|PT|S51.011S|ICD10CM|Laceration without foreign body of right elbow, sequela|Laceration without foreign body of right elbow, sequela +C2843844|T037|AB|S51.012|ICD10CM|Laceration without foreign body of left elbow|Laceration without foreign body of left elbow +C2843844|T037|HT|S51.012|ICD10CM|Laceration without foreign body of left elbow|Laceration without foreign body of left elbow +C2843845|T037|AB|S51.012A|ICD10CM|Laceration without foreign body of left elbow, init encntr|Laceration without foreign body of left elbow, init encntr +C2843845|T037|PT|S51.012A|ICD10CM|Laceration without foreign body of left elbow, initial encounter|Laceration without foreign body of left elbow, initial encounter +C2843846|T037|AB|S51.012D|ICD10CM|Laceration without foreign body of left elbow, subs encntr|Laceration without foreign body of left elbow, subs encntr +C2843846|T037|PT|S51.012D|ICD10CM|Laceration without foreign body of left elbow, subsequent encounter|Laceration without foreign body of left elbow, subsequent encounter +C2843847|T037|AB|S51.012S|ICD10CM|Laceration without foreign body of left elbow, sequela|Laceration without foreign body of left elbow, sequela +C2843847|T037|PT|S51.012S|ICD10CM|Laceration without foreign body of left elbow, sequela|Laceration without foreign body of left elbow, sequela +C2843848|T037|AB|S51.019|ICD10CM|Laceration without foreign body of unspecified elbow|Laceration without foreign body of unspecified elbow +C2843848|T037|HT|S51.019|ICD10CM|Laceration without foreign body of unspecified elbow|Laceration without foreign body of unspecified elbow +C2843849|T037|AB|S51.019A|ICD10CM|Laceration without foreign body of unsp elbow, init encntr|Laceration without foreign body of unsp elbow, init encntr +C2843849|T037|PT|S51.019A|ICD10CM|Laceration without foreign body of unspecified elbow, initial encounter|Laceration without foreign body of unspecified elbow, initial encounter +C2843850|T037|AB|S51.019D|ICD10CM|Laceration without foreign body of unsp elbow, subs encntr|Laceration without foreign body of unsp elbow, subs encntr +C2843850|T037|PT|S51.019D|ICD10CM|Laceration without foreign body of unspecified elbow, subsequent encounter|Laceration without foreign body of unspecified elbow, subsequent encounter +C2843851|T037|AB|S51.019S|ICD10CM|Laceration without foreign body of unsp elbow, sequela|Laceration without foreign body of unsp elbow, sequela +C2843851|T037|PT|S51.019S|ICD10CM|Laceration without foreign body of unspecified elbow, sequela|Laceration without foreign body of unspecified elbow, sequela +C2843852|T037|AB|S51.02|ICD10CM|Laceration with foreign body of elbow|Laceration with foreign body of elbow +C2843852|T037|HT|S51.02|ICD10CM|Laceration with foreign body of elbow|Laceration with foreign body of elbow +C2843853|T037|AB|S51.021|ICD10CM|Laceration with foreign body of right elbow|Laceration with foreign body of right elbow +C2843853|T037|HT|S51.021|ICD10CM|Laceration with foreign body of right elbow|Laceration with foreign body of right elbow +C2843854|T037|AB|S51.021A|ICD10CM|Laceration with foreign body of right elbow, init encntr|Laceration with foreign body of right elbow, init encntr +C2843854|T037|PT|S51.021A|ICD10CM|Laceration with foreign body of right elbow, initial encounter|Laceration with foreign body of right elbow, initial encounter +C2843855|T037|AB|S51.021D|ICD10CM|Laceration with foreign body of right elbow, subs encntr|Laceration with foreign body of right elbow, subs encntr +C2843855|T037|PT|S51.021D|ICD10CM|Laceration with foreign body of right elbow, subsequent encounter|Laceration with foreign body of right elbow, subsequent encounter +C2843856|T037|AB|S51.021S|ICD10CM|Laceration with foreign body of right elbow, sequela|Laceration with foreign body of right elbow, sequela +C2843856|T037|PT|S51.021S|ICD10CM|Laceration with foreign body of right elbow, sequela|Laceration with foreign body of right elbow, sequela +C2843857|T037|AB|S51.022|ICD10CM|Laceration with foreign body of left elbow|Laceration with foreign body of left elbow +C2843857|T037|HT|S51.022|ICD10CM|Laceration with foreign body of left elbow|Laceration with foreign body of left elbow +C2843858|T037|AB|S51.022A|ICD10CM|Laceration with foreign body of left elbow, init encntr|Laceration with foreign body of left elbow, init encntr +C2843858|T037|PT|S51.022A|ICD10CM|Laceration with foreign body of left elbow, initial encounter|Laceration with foreign body of left elbow, initial encounter +C2843859|T037|AB|S51.022D|ICD10CM|Laceration with foreign body of left elbow, subs encntr|Laceration with foreign body of left elbow, subs encntr +C2843859|T037|PT|S51.022D|ICD10CM|Laceration with foreign body of left elbow, subsequent encounter|Laceration with foreign body of left elbow, subsequent encounter +C2843860|T037|AB|S51.022S|ICD10CM|Laceration with foreign body of left elbow, sequela|Laceration with foreign body of left elbow, sequela +C2843860|T037|PT|S51.022S|ICD10CM|Laceration with foreign body of left elbow, sequela|Laceration with foreign body of left elbow, sequela +C2843861|T037|AB|S51.029|ICD10CM|Laceration with foreign body of unspecified elbow|Laceration with foreign body of unspecified elbow +C2843861|T037|HT|S51.029|ICD10CM|Laceration with foreign body of unspecified elbow|Laceration with foreign body of unspecified elbow +C2843862|T037|AB|S51.029A|ICD10CM|Laceration with foreign body of unsp elbow, init encntr|Laceration with foreign body of unsp elbow, init encntr +C2843862|T037|PT|S51.029A|ICD10CM|Laceration with foreign body of unspecified elbow, initial encounter|Laceration with foreign body of unspecified elbow, initial encounter +C2843863|T037|AB|S51.029D|ICD10CM|Laceration with foreign body of unsp elbow, subs encntr|Laceration with foreign body of unsp elbow, subs encntr +C2843863|T037|PT|S51.029D|ICD10CM|Laceration with foreign body of unspecified elbow, subsequent encounter|Laceration with foreign body of unspecified elbow, subsequent encounter +C2843864|T037|AB|S51.029S|ICD10CM|Laceration with foreign body of unspecified elbow, sequela|Laceration with foreign body of unspecified elbow, sequela +C2843864|T037|PT|S51.029S|ICD10CM|Laceration with foreign body of unspecified elbow, sequela|Laceration with foreign body of unspecified elbow, sequela +C2843865|T037|AB|S51.03|ICD10CM|Puncture wound without foreign body of elbow|Puncture wound without foreign body of elbow +C2843865|T037|HT|S51.03|ICD10CM|Puncture wound without foreign body of elbow|Puncture wound without foreign body of elbow +C2843866|T037|AB|S51.031|ICD10CM|Puncture wound without foreign body of right elbow|Puncture wound without foreign body of right elbow +C2843866|T037|HT|S51.031|ICD10CM|Puncture wound without foreign body of right elbow|Puncture wound without foreign body of right elbow +C2843867|T037|AB|S51.031A|ICD10CM|Puncture wound w/o foreign body of right elbow, init encntr|Puncture wound w/o foreign body of right elbow, init encntr +C2843867|T037|PT|S51.031A|ICD10CM|Puncture wound without foreign body of right elbow, initial encounter|Puncture wound without foreign body of right elbow, initial encounter +C2843868|T037|AB|S51.031D|ICD10CM|Puncture wound w/o foreign body of right elbow, subs encntr|Puncture wound w/o foreign body of right elbow, subs encntr +C2843868|T037|PT|S51.031D|ICD10CM|Puncture wound without foreign body of right elbow, subsequent encounter|Puncture wound without foreign body of right elbow, subsequent encounter +C2843869|T037|AB|S51.031S|ICD10CM|Puncture wound without foreign body of right elbow, sequela|Puncture wound without foreign body of right elbow, sequela +C2843869|T037|PT|S51.031S|ICD10CM|Puncture wound without foreign body of right elbow, sequela|Puncture wound without foreign body of right elbow, sequela +C2843870|T037|AB|S51.032|ICD10CM|Puncture wound without foreign body of left elbow|Puncture wound without foreign body of left elbow +C2843870|T037|HT|S51.032|ICD10CM|Puncture wound without foreign body of left elbow|Puncture wound without foreign body of left elbow +C2843871|T037|AB|S51.032A|ICD10CM|Puncture wound w/o foreign body of left elbow, init encntr|Puncture wound w/o foreign body of left elbow, init encntr +C2843871|T037|PT|S51.032A|ICD10CM|Puncture wound without foreign body of left elbow, initial encounter|Puncture wound without foreign body of left elbow, initial encounter +C2843872|T037|AB|S51.032D|ICD10CM|Puncture wound w/o foreign body of left elbow, subs encntr|Puncture wound w/o foreign body of left elbow, subs encntr +C2843872|T037|PT|S51.032D|ICD10CM|Puncture wound without foreign body of left elbow, subsequent encounter|Puncture wound without foreign body of left elbow, subsequent encounter +C2843873|T037|AB|S51.032S|ICD10CM|Puncture wound without foreign body of left elbow, sequela|Puncture wound without foreign body of left elbow, sequela +C2843873|T037|PT|S51.032S|ICD10CM|Puncture wound without foreign body of left elbow, sequela|Puncture wound without foreign body of left elbow, sequela +C2843874|T037|AB|S51.039|ICD10CM|Puncture wound without foreign body of unspecified elbow|Puncture wound without foreign body of unspecified elbow +C2843874|T037|HT|S51.039|ICD10CM|Puncture wound without foreign body of unspecified elbow|Puncture wound without foreign body of unspecified elbow +C2843875|T037|AB|S51.039A|ICD10CM|Puncture wound w/o foreign body of unsp elbow, init encntr|Puncture wound w/o foreign body of unsp elbow, init encntr +C2843875|T037|PT|S51.039A|ICD10CM|Puncture wound without foreign body of unspecified elbow, initial encounter|Puncture wound without foreign body of unspecified elbow, initial encounter +C2843876|T037|AB|S51.039D|ICD10CM|Puncture wound w/o foreign body of unsp elbow, subs encntr|Puncture wound w/o foreign body of unsp elbow, subs encntr +C2843876|T037|PT|S51.039D|ICD10CM|Puncture wound without foreign body of unspecified elbow, subsequent encounter|Puncture wound without foreign body of unspecified elbow, subsequent encounter +C2843877|T037|AB|S51.039S|ICD10CM|Puncture wound without foreign body of unsp elbow, sequela|Puncture wound without foreign body of unsp elbow, sequela +C2843877|T037|PT|S51.039S|ICD10CM|Puncture wound without foreign body of unspecified elbow, sequela|Puncture wound without foreign body of unspecified elbow, sequela +C2843878|T037|AB|S51.04|ICD10CM|Puncture wound with foreign body of elbow|Puncture wound with foreign body of elbow +C2843878|T037|HT|S51.04|ICD10CM|Puncture wound with foreign body of elbow|Puncture wound with foreign body of elbow +C2843879|T037|AB|S51.041|ICD10CM|Puncture wound with foreign body of right elbow|Puncture wound with foreign body of right elbow +C2843879|T037|HT|S51.041|ICD10CM|Puncture wound with foreign body of right elbow|Puncture wound with foreign body of right elbow +C2843880|T037|AB|S51.041A|ICD10CM|Puncture wound with foreign body of right elbow, init encntr|Puncture wound with foreign body of right elbow, init encntr +C2843880|T037|PT|S51.041A|ICD10CM|Puncture wound with foreign body of right elbow, initial encounter|Puncture wound with foreign body of right elbow, initial encounter +C2843881|T037|AB|S51.041D|ICD10CM|Puncture wound with foreign body of right elbow, subs encntr|Puncture wound with foreign body of right elbow, subs encntr +C2843881|T037|PT|S51.041D|ICD10CM|Puncture wound with foreign body of right elbow, subsequent encounter|Puncture wound with foreign body of right elbow, subsequent encounter +C2843882|T037|AB|S51.041S|ICD10CM|Puncture wound with foreign body of right elbow, sequela|Puncture wound with foreign body of right elbow, sequela +C2843882|T037|PT|S51.041S|ICD10CM|Puncture wound with foreign body of right elbow, sequela|Puncture wound with foreign body of right elbow, sequela +C2843883|T037|AB|S51.042|ICD10CM|Puncture wound with foreign body of left elbow|Puncture wound with foreign body of left elbow +C2843883|T037|HT|S51.042|ICD10CM|Puncture wound with foreign body of left elbow|Puncture wound with foreign body of left elbow +C2843884|T037|AB|S51.042A|ICD10CM|Puncture wound with foreign body of left elbow, init encntr|Puncture wound with foreign body of left elbow, init encntr +C2843884|T037|PT|S51.042A|ICD10CM|Puncture wound with foreign body of left elbow, initial encounter|Puncture wound with foreign body of left elbow, initial encounter +C2843885|T037|AB|S51.042D|ICD10CM|Puncture wound with foreign body of left elbow, subs encntr|Puncture wound with foreign body of left elbow, subs encntr +C2843885|T037|PT|S51.042D|ICD10CM|Puncture wound with foreign body of left elbow, subsequent encounter|Puncture wound with foreign body of left elbow, subsequent encounter +C2843886|T037|AB|S51.042S|ICD10CM|Puncture wound with foreign body of left elbow, sequela|Puncture wound with foreign body of left elbow, sequela +C2843886|T037|PT|S51.042S|ICD10CM|Puncture wound with foreign body of left elbow, sequela|Puncture wound with foreign body of left elbow, sequela +C2843887|T037|AB|S51.049|ICD10CM|Puncture wound with foreign body of unspecified elbow|Puncture wound with foreign body of unspecified elbow +C2843887|T037|HT|S51.049|ICD10CM|Puncture wound with foreign body of unspecified elbow|Puncture wound with foreign body of unspecified elbow +C2843888|T037|AB|S51.049A|ICD10CM|Puncture wound with foreign body of unsp elbow, init encntr|Puncture wound with foreign body of unsp elbow, init encntr +C2843888|T037|PT|S51.049A|ICD10CM|Puncture wound with foreign body of unspecified elbow, initial encounter|Puncture wound with foreign body of unspecified elbow, initial encounter +C2843889|T037|AB|S51.049D|ICD10CM|Puncture wound with foreign body of unsp elbow, subs encntr|Puncture wound with foreign body of unsp elbow, subs encntr +C2843889|T037|PT|S51.049D|ICD10CM|Puncture wound with foreign body of unspecified elbow, subsequent encounter|Puncture wound with foreign body of unspecified elbow, subsequent encounter +C2843890|T037|AB|S51.049S|ICD10CM|Puncture wound with foreign body of unsp elbow, sequela|Puncture wound with foreign body of unsp elbow, sequela +C2843890|T037|PT|S51.049S|ICD10CM|Puncture wound with foreign body of unspecified elbow, sequela|Puncture wound with foreign body of unspecified elbow, sequela +C2215899|T033|ET|S51.05|ICD10CM|Bite of elbow NOS|Bite of elbow NOS +C2843891|T037|HT|S51.05|ICD10CM|Open bite of elbow|Open bite of elbow +C2843891|T037|AB|S51.05|ICD10CM|Open bite of elbow|Open bite of elbow +C2843892|T037|AB|S51.051|ICD10CM|Open bite, right elbow|Open bite, right elbow +C2843892|T037|HT|S51.051|ICD10CM|Open bite, right elbow|Open bite, right elbow +C2843893|T037|AB|S51.051A|ICD10CM|Open bite, right elbow, initial encounter|Open bite, right elbow, initial encounter +C2843893|T037|PT|S51.051A|ICD10CM|Open bite, right elbow, initial encounter|Open bite, right elbow, initial encounter +C2843894|T037|AB|S51.051D|ICD10CM|Open bite, right elbow, subsequent encounter|Open bite, right elbow, subsequent encounter +C2843894|T037|PT|S51.051D|ICD10CM|Open bite, right elbow, subsequent encounter|Open bite, right elbow, subsequent encounter +C2843895|T037|AB|S51.051S|ICD10CM|Open bite, right elbow, sequela|Open bite, right elbow, sequela +C2843895|T037|PT|S51.051S|ICD10CM|Open bite, right elbow, sequela|Open bite, right elbow, sequela +C2843896|T037|AB|S51.052|ICD10CM|Open bite, left elbow|Open bite, left elbow +C2843896|T037|HT|S51.052|ICD10CM|Open bite, left elbow|Open bite, left elbow +C2843897|T037|AB|S51.052A|ICD10CM|Open bite, left elbow, initial encounter|Open bite, left elbow, initial encounter +C2843897|T037|PT|S51.052A|ICD10CM|Open bite, left elbow, initial encounter|Open bite, left elbow, initial encounter +C2843898|T037|AB|S51.052D|ICD10CM|Open bite, left elbow, subsequent encounter|Open bite, left elbow, subsequent encounter +C2843898|T037|PT|S51.052D|ICD10CM|Open bite, left elbow, subsequent encounter|Open bite, left elbow, subsequent encounter +C2843899|T037|AB|S51.052S|ICD10CM|Open bite, left elbow, sequela|Open bite, left elbow, sequela +C2843899|T037|PT|S51.052S|ICD10CM|Open bite, left elbow, sequela|Open bite, left elbow, sequela +C2843900|T037|AB|S51.059|ICD10CM|Open bite, unspecified elbow|Open bite, unspecified elbow +C2843900|T037|HT|S51.059|ICD10CM|Open bite, unspecified elbow|Open bite, unspecified elbow +C2843901|T037|AB|S51.059A|ICD10CM|Open bite, unspecified elbow, initial encounter|Open bite, unspecified elbow, initial encounter +C2843901|T037|PT|S51.059A|ICD10CM|Open bite, unspecified elbow, initial encounter|Open bite, unspecified elbow, initial encounter +C2843902|T037|AB|S51.059D|ICD10CM|Open bite, unspecified elbow, subsequent encounter|Open bite, unspecified elbow, subsequent encounter +C2843902|T037|PT|S51.059D|ICD10CM|Open bite, unspecified elbow, subsequent encounter|Open bite, unspecified elbow, subsequent encounter +C2843903|T037|AB|S51.059S|ICD10CM|Open bite, unspecified elbow, sequela|Open bite, unspecified elbow, sequela +C2843903|T037|PT|S51.059S|ICD10CM|Open bite, unspecified elbow, sequela|Open bite, unspecified elbow, sequela +C0451957|T037|PT|S51.7|ICD10|Multiple open wounds of forearm|Multiple open wounds of forearm +C0160604|T037|HT|S51.8|ICD10CM|Open wound of forearm|Open wound of forearm +C0160604|T037|AB|S51.8|ICD10CM|Open wound of forearm|Open wound of forearm +C0478286|T037|PT|S51.8|ICD10|Open wound of other parts of forearm|Open wound of other parts of forearm +C2843904|T037|AB|S51.80|ICD10CM|Unspecified open wound of forearm|Unspecified open wound of forearm +C2843904|T037|HT|S51.80|ICD10CM|Unspecified open wound of forearm|Unspecified open wound of forearm +C2843905|T037|AB|S51.801|ICD10CM|Unspecified open wound of right forearm|Unspecified open wound of right forearm +C2843905|T037|HT|S51.801|ICD10CM|Unspecified open wound of right forearm|Unspecified open wound of right forearm +C2843906|T037|AB|S51.801A|ICD10CM|Unspecified open wound of right forearm, initial encounter|Unspecified open wound of right forearm, initial encounter +C2843906|T037|PT|S51.801A|ICD10CM|Unspecified open wound of right forearm, initial encounter|Unspecified open wound of right forearm, initial encounter +C2843907|T037|AB|S51.801D|ICD10CM|Unspecified open wound of right forearm, subs encntr|Unspecified open wound of right forearm, subs encntr +C2843907|T037|PT|S51.801D|ICD10CM|Unspecified open wound of right forearm, subsequent encounter|Unspecified open wound of right forearm, subsequent encounter +C2843908|T037|AB|S51.801S|ICD10CM|Unspecified open wound of right forearm, sequela|Unspecified open wound of right forearm, sequela +C2843908|T037|PT|S51.801S|ICD10CM|Unspecified open wound of right forearm, sequela|Unspecified open wound of right forearm, sequela +C2843909|T037|AB|S51.802|ICD10CM|Unspecified open wound of left forearm|Unspecified open wound of left forearm +C2843909|T037|HT|S51.802|ICD10CM|Unspecified open wound of left forearm|Unspecified open wound of left forearm +C2843910|T037|AB|S51.802A|ICD10CM|Unspecified open wound of left forearm, initial encounter|Unspecified open wound of left forearm, initial encounter +C2843910|T037|PT|S51.802A|ICD10CM|Unspecified open wound of left forearm, initial encounter|Unspecified open wound of left forearm, initial encounter +C2843911|T037|AB|S51.802D|ICD10CM|Unspecified open wound of left forearm, subsequent encounter|Unspecified open wound of left forearm, subsequent encounter +C2843911|T037|PT|S51.802D|ICD10CM|Unspecified open wound of left forearm, subsequent encounter|Unspecified open wound of left forearm, subsequent encounter +C2843912|T037|AB|S51.802S|ICD10CM|Unspecified open wound of left forearm, sequela|Unspecified open wound of left forearm, sequela +C2843912|T037|PT|S51.802S|ICD10CM|Unspecified open wound of left forearm, sequela|Unspecified open wound of left forearm, sequela +C0160604|T037|ET|S51.809|ICD10CM|Open wound of forearm NOS|Open wound of forearm NOS +C2843913|T037|AB|S51.809|ICD10CM|Unspecified open wound of unspecified forearm|Unspecified open wound of unspecified forearm +C2843913|T037|HT|S51.809|ICD10CM|Unspecified open wound of unspecified forearm|Unspecified open wound of unspecified forearm +C2843914|T037|AB|S51.809A|ICD10CM|Unspecified open wound of unspecified forearm, init encntr|Unspecified open wound of unspecified forearm, init encntr +C2843914|T037|PT|S51.809A|ICD10CM|Unspecified open wound of unspecified forearm, initial encounter|Unspecified open wound of unspecified forearm, initial encounter +C2843915|T037|AB|S51.809D|ICD10CM|Unspecified open wound of unspecified forearm, subs encntr|Unspecified open wound of unspecified forearm, subs encntr +C2843915|T037|PT|S51.809D|ICD10CM|Unspecified open wound of unspecified forearm, subsequent encounter|Unspecified open wound of unspecified forearm, subsequent encounter +C2843916|T037|AB|S51.809S|ICD10CM|Unspecified open wound of unspecified forearm, sequela|Unspecified open wound of unspecified forearm, sequela +C2843916|T037|PT|S51.809S|ICD10CM|Unspecified open wound of unspecified forearm, sequela|Unspecified open wound of unspecified forearm, sequela +C2843917|T037|AB|S51.81|ICD10CM|Laceration without foreign body of forearm|Laceration without foreign body of forearm +C2843917|T037|HT|S51.81|ICD10CM|Laceration without foreign body of forearm|Laceration without foreign body of forearm +C2843918|T037|AB|S51.811|ICD10CM|Laceration without foreign body of right forearm|Laceration without foreign body of right forearm +C2843918|T037|HT|S51.811|ICD10CM|Laceration without foreign body of right forearm|Laceration without foreign body of right forearm +C2843919|T037|AB|S51.811A|ICD10CM|Laceration w/o foreign body of right forearm, init encntr|Laceration w/o foreign body of right forearm, init encntr +C2843919|T037|PT|S51.811A|ICD10CM|Laceration without foreign body of right forearm, initial encounter|Laceration without foreign body of right forearm, initial encounter +C2843920|T037|AB|S51.811D|ICD10CM|Laceration w/o foreign body of right forearm, subs encntr|Laceration w/o foreign body of right forearm, subs encntr +C2843920|T037|PT|S51.811D|ICD10CM|Laceration without foreign body of right forearm, subsequent encounter|Laceration without foreign body of right forearm, subsequent encounter +C2843921|T037|AB|S51.811S|ICD10CM|Laceration without foreign body of right forearm, sequela|Laceration without foreign body of right forearm, sequela +C2843921|T037|PT|S51.811S|ICD10CM|Laceration without foreign body of right forearm, sequela|Laceration without foreign body of right forearm, sequela +C2843922|T037|AB|S51.812|ICD10CM|Laceration without foreign body of left forearm|Laceration without foreign body of left forearm +C2843922|T037|HT|S51.812|ICD10CM|Laceration without foreign body of left forearm|Laceration without foreign body of left forearm +C2843923|T037|AB|S51.812A|ICD10CM|Laceration without foreign body of left forearm, init encntr|Laceration without foreign body of left forearm, init encntr +C2843923|T037|PT|S51.812A|ICD10CM|Laceration without foreign body of left forearm, initial encounter|Laceration without foreign body of left forearm, initial encounter +C2843924|T037|AB|S51.812D|ICD10CM|Laceration without foreign body of left forearm, subs encntr|Laceration without foreign body of left forearm, subs encntr +C2843924|T037|PT|S51.812D|ICD10CM|Laceration without foreign body of left forearm, subsequent encounter|Laceration without foreign body of left forearm, subsequent encounter +C2843925|T037|AB|S51.812S|ICD10CM|Laceration without foreign body of left forearm, sequela|Laceration without foreign body of left forearm, sequela +C2843925|T037|PT|S51.812S|ICD10CM|Laceration without foreign body of left forearm, sequela|Laceration without foreign body of left forearm, sequela +C2843926|T037|AB|S51.819|ICD10CM|Laceration without foreign body of unspecified forearm|Laceration without foreign body of unspecified forearm +C2843926|T037|HT|S51.819|ICD10CM|Laceration without foreign body of unspecified forearm|Laceration without foreign body of unspecified forearm +C2843927|T037|AB|S51.819A|ICD10CM|Laceration without foreign body of unsp forearm, init encntr|Laceration without foreign body of unsp forearm, init encntr +C2843927|T037|PT|S51.819A|ICD10CM|Laceration without foreign body of unspecified forearm, initial encounter|Laceration without foreign body of unspecified forearm, initial encounter +C2843928|T037|AB|S51.819D|ICD10CM|Laceration without foreign body of unsp forearm, subs encntr|Laceration without foreign body of unsp forearm, subs encntr +C2843928|T037|PT|S51.819D|ICD10CM|Laceration without foreign body of unspecified forearm, subsequent encounter|Laceration without foreign body of unspecified forearm, subsequent encounter +C2843929|T037|AB|S51.819S|ICD10CM|Laceration without foreign body of unsp forearm, sequela|Laceration without foreign body of unsp forearm, sequela +C2843929|T037|PT|S51.819S|ICD10CM|Laceration without foreign body of unspecified forearm, sequela|Laceration without foreign body of unspecified forearm, sequela +C2843930|T037|HT|S51.82|ICD10CM|Laceration with foreign body of forearm|Laceration with foreign body of forearm +C2843930|T037|AB|S51.82|ICD10CM|Laceration with foreign body of forearm|Laceration with foreign body of forearm +C2843931|T037|AB|S51.821|ICD10CM|Laceration with foreign body of right forearm|Laceration with foreign body of right forearm +C2843931|T037|HT|S51.821|ICD10CM|Laceration with foreign body of right forearm|Laceration with foreign body of right forearm +C2843932|T037|AB|S51.821A|ICD10CM|Laceration with foreign body of right forearm, init encntr|Laceration with foreign body of right forearm, init encntr +C2843932|T037|PT|S51.821A|ICD10CM|Laceration with foreign body of right forearm, initial encounter|Laceration with foreign body of right forearm, initial encounter +C2843933|T037|AB|S51.821D|ICD10CM|Laceration with foreign body of right forearm, subs encntr|Laceration with foreign body of right forearm, subs encntr +C2843933|T037|PT|S51.821D|ICD10CM|Laceration with foreign body of right forearm, subsequent encounter|Laceration with foreign body of right forearm, subsequent encounter +C2843934|T037|AB|S51.821S|ICD10CM|Laceration with foreign body of right forearm, sequela|Laceration with foreign body of right forearm, sequela +C2843934|T037|PT|S51.821S|ICD10CM|Laceration with foreign body of right forearm, sequela|Laceration with foreign body of right forearm, sequela +C2843935|T037|AB|S51.822|ICD10CM|Laceration with foreign body of left forearm|Laceration with foreign body of left forearm +C2843935|T037|HT|S51.822|ICD10CM|Laceration with foreign body of left forearm|Laceration with foreign body of left forearm +C2843936|T037|AB|S51.822A|ICD10CM|Laceration with foreign body of left forearm, init encntr|Laceration with foreign body of left forearm, init encntr +C2843936|T037|PT|S51.822A|ICD10CM|Laceration with foreign body of left forearm, initial encounter|Laceration with foreign body of left forearm, initial encounter +C2843937|T037|AB|S51.822D|ICD10CM|Laceration with foreign body of left forearm, subs encntr|Laceration with foreign body of left forearm, subs encntr +C2843937|T037|PT|S51.822D|ICD10CM|Laceration with foreign body of left forearm, subsequent encounter|Laceration with foreign body of left forearm, subsequent encounter +C2843938|T037|AB|S51.822S|ICD10CM|Laceration with foreign body of left forearm, sequela|Laceration with foreign body of left forearm, sequela +C2843938|T037|PT|S51.822S|ICD10CM|Laceration with foreign body of left forearm, sequela|Laceration with foreign body of left forearm, sequela +C2843939|T037|AB|S51.829|ICD10CM|Laceration with foreign body of unspecified forearm|Laceration with foreign body of unspecified forearm +C2843939|T037|HT|S51.829|ICD10CM|Laceration with foreign body of unspecified forearm|Laceration with foreign body of unspecified forearm +C2843940|T037|AB|S51.829A|ICD10CM|Laceration with foreign body of unsp forearm, init encntr|Laceration with foreign body of unsp forearm, init encntr +C2843940|T037|PT|S51.829A|ICD10CM|Laceration with foreign body of unspecified forearm, initial encounter|Laceration with foreign body of unspecified forearm, initial encounter +C2843941|T037|AB|S51.829D|ICD10CM|Laceration with foreign body of unsp forearm, subs encntr|Laceration with foreign body of unsp forearm, subs encntr +C2843941|T037|PT|S51.829D|ICD10CM|Laceration with foreign body of unspecified forearm, subsequent encounter|Laceration with foreign body of unspecified forearm, subsequent encounter +C2843942|T037|AB|S51.829S|ICD10CM|Laceration with foreign body of unspecified forearm, sequela|Laceration with foreign body of unspecified forearm, sequela +C2843942|T037|PT|S51.829S|ICD10CM|Laceration with foreign body of unspecified forearm, sequela|Laceration with foreign body of unspecified forearm, sequela +C2843943|T037|AB|S51.83|ICD10CM|Puncture wound without foreign body of forearm|Puncture wound without foreign body of forearm +C2843943|T037|HT|S51.83|ICD10CM|Puncture wound without foreign body of forearm|Puncture wound without foreign body of forearm +C2843944|T037|AB|S51.831|ICD10CM|Puncture wound without foreign body of right forearm|Puncture wound without foreign body of right forearm +C2843944|T037|HT|S51.831|ICD10CM|Puncture wound without foreign body of right forearm|Puncture wound without foreign body of right forearm +C2843945|T037|AB|S51.831A|ICD10CM|Puncture wound w/o foreign body of right forearm, init|Puncture wound w/o foreign body of right forearm, init +C2843945|T037|PT|S51.831A|ICD10CM|Puncture wound without foreign body of right forearm, initial encounter|Puncture wound without foreign body of right forearm, initial encounter +C2843946|T037|AB|S51.831D|ICD10CM|Puncture wound w/o foreign body of right forearm, subs|Puncture wound w/o foreign body of right forearm, subs +C2843946|T037|PT|S51.831D|ICD10CM|Puncture wound without foreign body of right forearm, subsequent encounter|Puncture wound without foreign body of right forearm, subsequent encounter +C2843947|T037|AB|S51.831S|ICD10CM|Puncture wound w/o foreign body of right forearm, sequela|Puncture wound w/o foreign body of right forearm, sequela +C2843947|T037|PT|S51.831S|ICD10CM|Puncture wound without foreign body of right forearm, sequela|Puncture wound without foreign body of right forearm, sequela +C2843948|T037|AB|S51.832|ICD10CM|Puncture wound without foreign body of left forearm|Puncture wound without foreign body of left forearm +C2843948|T037|HT|S51.832|ICD10CM|Puncture wound without foreign body of left forearm|Puncture wound without foreign body of left forearm +C2843949|T037|AB|S51.832A|ICD10CM|Puncture wound w/o foreign body of left forearm, init encntr|Puncture wound w/o foreign body of left forearm, init encntr +C2843949|T037|PT|S51.832A|ICD10CM|Puncture wound without foreign body of left forearm, initial encounter|Puncture wound without foreign body of left forearm, initial encounter +C2843950|T037|AB|S51.832D|ICD10CM|Puncture wound w/o foreign body of left forearm, subs encntr|Puncture wound w/o foreign body of left forearm, subs encntr +C2843950|T037|PT|S51.832D|ICD10CM|Puncture wound without foreign body of left forearm, subsequent encounter|Puncture wound without foreign body of left forearm, subsequent encounter +C2843951|T037|AB|S51.832S|ICD10CM|Puncture wound without foreign body of left forearm, sequela|Puncture wound without foreign body of left forearm, sequela +C2843951|T037|PT|S51.832S|ICD10CM|Puncture wound without foreign body of left forearm, sequela|Puncture wound without foreign body of left forearm, sequela +C2843952|T037|AB|S51.839|ICD10CM|Puncture wound without foreign body of unspecified forearm|Puncture wound without foreign body of unspecified forearm +C2843952|T037|HT|S51.839|ICD10CM|Puncture wound without foreign body of unspecified forearm|Puncture wound without foreign body of unspecified forearm +C2843953|T037|AB|S51.839A|ICD10CM|Puncture wound w/o foreign body of unsp forearm, init encntr|Puncture wound w/o foreign body of unsp forearm, init encntr +C2843953|T037|PT|S51.839A|ICD10CM|Puncture wound without foreign body of unspecified forearm, initial encounter|Puncture wound without foreign body of unspecified forearm, initial encounter +C2843954|T037|AB|S51.839D|ICD10CM|Puncture wound w/o foreign body of unsp forearm, subs encntr|Puncture wound w/o foreign body of unsp forearm, subs encntr +C2843954|T037|PT|S51.839D|ICD10CM|Puncture wound without foreign body of unspecified forearm, subsequent encounter|Puncture wound without foreign body of unspecified forearm, subsequent encounter +C2843955|T037|AB|S51.839S|ICD10CM|Puncture wound without foreign body of unsp forearm, sequela|Puncture wound without foreign body of unsp forearm, sequela +C2843955|T037|PT|S51.839S|ICD10CM|Puncture wound without foreign body of unspecified forearm, sequela|Puncture wound without foreign body of unspecified forearm, sequela +C2843956|T037|HT|S51.84|ICD10CM|Puncture wound with foreign body of forearm|Puncture wound with foreign body of forearm +C2843956|T037|AB|S51.84|ICD10CM|Puncture wound with foreign body of forearm|Puncture wound with foreign body of forearm +C2843957|T037|AB|S51.841|ICD10CM|Puncture wound with foreign body of right forearm|Puncture wound with foreign body of right forearm +C2843957|T037|HT|S51.841|ICD10CM|Puncture wound with foreign body of right forearm|Puncture wound with foreign body of right forearm +C2843958|T037|AB|S51.841A|ICD10CM|Puncture wound w foreign body of right forearm, init encntr|Puncture wound w foreign body of right forearm, init encntr +C2843958|T037|PT|S51.841A|ICD10CM|Puncture wound with foreign body of right forearm, initial encounter|Puncture wound with foreign body of right forearm, initial encounter +C2843959|T037|AB|S51.841D|ICD10CM|Puncture wound w foreign body of right forearm, subs encntr|Puncture wound w foreign body of right forearm, subs encntr +C2843959|T037|PT|S51.841D|ICD10CM|Puncture wound with foreign body of right forearm, subsequent encounter|Puncture wound with foreign body of right forearm, subsequent encounter +C2843960|T037|AB|S51.841S|ICD10CM|Puncture wound with foreign body of right forearm, sequela|Puncture wound with foreign body of right forearm, sequela +C2843960|T037|PT|S51.841S|ICD10CM|Puncture wound with foreign body of right forearm, sequela|Puncture wound with foreign body of right forearm, sequela +C2843961|T037|AB|S51.842|ICD10CM|Puncture wound with foreign body of left forearm|Puncture wound with foreign body of left forearm +C2843961|T037|HT|S51.842|ICD10CM|Puncture wound with foreign body of left forearm|Puncture wound with foreign body of left forearm +C2843962|T037|AB|S51.842A|ICD10CM|Puncture wound w foreign body of left forearm, init encntr|Puncture wound w foreign body of left forearm, init encntr +C2843962|T037|PT|S51.842A|ICD10CM|Puncture wound with foreign body of left forearm, initial encounter|Puncture wound with foreign body of left forearm, initial encounter +C2843963|T037|AB|S51.842D|ICD10CM|Puncture wound w foreign body of left forearm, subs encntr|Puncture wound w foreign body of left forearm, subs encntr +C2843963|T037|PT|S51.842D|ICD10CM|Puncture wound with foreign body of left forearm, subsequent encounter|Puncture wound with foreign body of left forearm, subsequent encounter +C2843964|T037|AB|S51.842S|ICD10CM|Puncture wound with foreign body of left forearm, sequela|Puncture wound with foreign body of left forearm, sequela +C2843964|T037|PT|S51.842S|ICD10CM|Puncture wound with foreign body of left forearm, sequela|Puncture wound with foreign body of left forearm, sequela +C2843965|T037|AB|S51.849|ICD10CM|Puncture wound with foreign body of unspecified forearm|Puncture wound with foreign body of unspecified forearm +C2843965|T037|HT|S51.849|ICD10CM|Puncture wound with foreign body of unspecified forearm|Puncture wound with foreign body of unspecified forearm +C2843966|T037|AB|S51.849A|ICD10CM|Puncture wound w foreign body of unsp forearm, init encntr|Puncture wound w foreign body of unsp forearm, init encntr +C2843966|T037|PT|S51.849A|ICD10CM|Puncture wound with foreign body of unspecified forearm, initial encounter|Puncture wound with foreign body of unspecified forearm, initial encounter +C2843967|T037|AB|S51.849D|ICD10CM|Puncture wound w foreign body of unsp forearm, subs encntr|Puncture wound w foreign body of unsp forearm, subs encntr +C2843967|T037|PT|S51.849D|ICD10CM|Puncture wound with foreign body of unspecified forearm, subsequent encounter|Puncture wound with foreign body of unspecified forearm, subsequent encounter +C2843968|T037|AB|S51.849S|ICD10CM|Puncture wound with foreign body of unsp forearm, sequela|Puncture wound with foreign body of unsp forearm, sequela +C2843968|T037|PT|S51.849S|ICD10CM|Puncture wound with foreign body of unspecified forearm, sequela|Puncture wound with foreign body of unspecified forearm, sequela +C2919028|T037|ET|S51.85|ICD10CM|Bite of forearm NOS|Bite of forearm NOS +C2843969|T037|HT|S51.85|ICD10CM|Open bite of forearm|Open bite of forearm +C2843969|T037|AB|S51.85|ICD10CM|Open bite of forearm|Open bite of forearm +C2843970|T037|AB|S51.851|ICD10CM|Open bite of right forearm|Open bite of right forearm +C2843970|T037|HT|S51.851|ICD10CM|Open bite of right forearm|Open bite of right forearm +C2843971|T037|AB|S51.851A|ICD10CM|Open bite of right forearm, initial encounter|Open bite of right forearm, initial encounter +C2843971|T037|PT|S51.851A|ICD10CM|Open bite of right forearm, initial encounter|Open bite of right forearm, initial encounter +C2843972|T037|AB|S51.851D|ICD10CM|Open bite of right forearm, subsequent encounter|Open bite of right forearm, subsequent encounter +C2843972|T037|PT|S51.851D|ICD10CM|Open bite of right forearm, subsequent encounter|Open bite of right forearm, subsequent encounter +C2843973|T037|AB|S51.851S|ICD10CM|Open bite of right forearm, sequela|Open bite of right forearm, sequela +C2843973|T037|PT|S51.851S|ICD10CM|Open bite of right forearm, sequela|Open bite of right forearm, sequela +C2843974|T037|AB|S51.852|ICD10CM|Open bite of left forearm|Open bite of left forearm +C2843974|T037|HT|S51.852|ICD10CM|Open bite of left forearm|Open bite of left forearm +C2843975|T037|AB|S51.852A|ICD10CM|Open bite of left forearm, initial encounter|Open bite of left forearm, initial encounter +C2843975|T037|PT|S51.852A|ICD10CM|Open bite of left forearm, initial encounter|Open bite of left forearm, initial encounter +C2843976|T037|AB|S51.852D|ICD10CM|Open bite of left forearm, subsequent encounter|Open bite of left forearm, subsequent encounter +C2843976|T037|PT|S51.852D|ICD10CM|Open bite of left forearm, subsequent encounter|Open bite of left forearm, subsequent encounter +C2843977|T037|AB|S51.852S|ICD10CM|Open bite of left forearm, sequela|Open bite of left forearm, sequela +C2843977|T037|PT|S51.852S|ICD10CM|Open bite of left forearm, sequela|Open bite of left forearm, sequela +C2843978|T037|AB|S51.859|ICD10CM|Open bite of unspecified forearm|Open bite of unspecified forearm +C2843978|T037|HT|S51.859|ICD10CM|Open bite of unspecified forearm|Open bite of unspecified forearm +C2843979|T037|AB|S51.859A|ICD10CM|Open bite of unspecified forearm, initial encounter|Open bite of unspecified forearm, initial encounter +C2843979|T037|PT|S51.859A|ICD10CM|Open bite of unspecified forearm, initial encounter|Open bite of unspecified forearm, initial encounter +C2843980|T037|AB|S51.859D|ICD10CM|Open bite of unspecified forearm, subsequent encounter|Open bite of unspecified forearm, subsequent encounter +C2843980|T037|PT|S51.859D|ICD10CM|Open bite of unspecified forearm, subsequent encounter|Open bite of unspecified forearm, subsequent encounter +C2843981|T037|AB|S51.859S|ICD10CM|Open bite of unspecified forearm, sequela|Open bite of unspecified forearm, sequela +C2843981|T037|PT|S51.859S|ICD10CM|Open bite of unspecified forearm, sequela|Open bite of unspecified forearm, sequela +C0160604|T037|PT|S51.9|ICD10|Open wound of forearm, part unspecified|Open wound of forearm, part unspecified +C1305215|T037|HT|S52|ICD10|Fracture of forearm|Fracture of forearm +C1305215|T037|HT|S52|ICD10CM|Fracture of forearm|Fracture of forearm +C1305215|T037|AB|S52|ICD10CM|Fracture of forearm|Fracture of forearm +C0347797|T037|ET|S52.0|ICD10CM|Fracture of proximal end of ulna|Fracture of proximal end of ulna +C0347797|T037|HT|S52.0|ICD10CM|Fracture of upper end of ulna|Fracture of upper end of ulna +C0347797|T037|AB|S52.0|ICD10CM|Fracture of upper end of ulna|Fracture of upper end of ulna +C0347797|T037|PT|S52.0|ICD10|Fracture of upper end of ulna|Fracture of upper end of ulna +C2843982|T037|AB|S52.00|ICD10CM|Unspecified fracture of upper end of ulna|Unspecified fracture of upper end of ulna +C2843982|T037|HT|S52.00|ICD10CM|Unspecified fracture of upper end of ulna|Unspecified fracture of upper end of ulna +C2843983|T037|AB|S52.001|ICD10CM|Unspecified fracture of upper end of right ulna|Unspecified fracture of upper end of right ulna +C2843983|T037|HT|S52.001|ICD10CM|Unspecified fracture of upper end of right ulna|Unspecified fracture of upper end of right ulna +C2843984|T037|AB|S52.001A|ICD10CM|Unsp fracture of upper end of right ulna, init for clos fx|Unsp fracture of upper end of right ulna, init for clos fx +C2843984|T037|PT|S52.001A|ICD10CM|Unspecified fracture of upper end of right ulna, initial encounter for closed fracture|Unspecified fracture of upper end of right ulna, initial encounter for closed fracture +C2843985|T037|AB|S52.001B|ICD10CM|Unsp fx upper end of right ulna, init for opn fx type I/2|Unsp fx upper end of right ulna, init for opn fx type I/2 +C2843985|T037|PT|S52.001B|ICD10CM|Unspecified fracture of upper end of right ulna, initial encounter for open fracture type I or II|Unspecified fracture of upper end of right ulna, initial encounter for open fracture type I or II +C2843986|T037|AB|S52.001C|ICD10CM|Unsp fx upper end of right ulna, init for opn fx type 3A/B/C|Unsp fx upper end of right ulna, init for opn fx type 3A/B/C +C2843987|T037|AB|S52.001D|ICD10CM|Unsp fx upper end of r ulna, subs for clos fx w routn heal|Unsp fx upper end of r ulna, subs for clos fx w routn heal +C2843988|T037|AB|S52.001E|ICD10CM|Unsp fx upr end r ulna, 7thE|Unsp fx upr end r ulna, 7thE +C2843989|T037|AB|S52.001F|ICD10CM|Unsp fx upr end r ulna, 7thF|Unsp fx upr end r ulna, 7thF +C2843990|T037|AB|S52.001G|ICD10CM|Unsp fx upper end of r ulna, subs for clos fx w delay heal|Unsp fx upper end of r ulna, subs for clos fx w delay heal +C2843991|T037|AB|S52.001H|ICD10CM|Unsp fx upr end r ulna, 7thH|Unsp fx upr end r ulna, 7thH +C2843992|T037|AB|S52.001J|ICD10CM|Unsp fx upr end r ulna, 7thJ|Unsp fx upr end r ulna, 7thJ +C2843993|T037|AB|S52.001K|ICD10CM|Unsp fx upper end of right ulna, subs for clos fx w nonunion|Unsp fx upper end of right ulna, subs for clos fx w nonunion +C2843994|T037|AB|S52.001M|ICD10CM|Unsp fx upr end r ulna, subs for opn fx type I/2 w nonunion|Unsp fx upr end r ulna, subs for opn fx type I/2 w nonunion +C2843995|T037|AB|S52.001N|ICD10CM|Unsp fx upr end r ulna, 7thN|Unsp fx upr end r ulna, 7thN +C2843996|T037|AB|S52.001P|ICD10CM|Unsp fx upper end of right ulna, subs for clos fx w malunion|Unsp fx upper end of right ulna, subs for clos fx w malunion +C2843997|T037|AB|S52.001Q|ICD10CM|Unsp fx upr end r ulna, subs for opn fx type I/2 w malunion|Unsp fx upr end r ulna, subs for opn fx type I/2 w malunion +C2843998|T037|AB|S52.001R|ICD10CM|Unsp fx upr end r ulna, 7thR|Unsp fx upr end r ulna, 7thR +C2843999|T037|PT|S52.001S|ICD10CM|Unspecified fracture of upper end of right ulna, sequela|Unspecified fracture of upper end of right ulna, sequela +C2843999|T037|AB|S52.001S|ICD10CM|Unspecified fracture of upper end of right ulna, sequela|Unspecified fracture of upper end of right ulna, sequela +C2844000|T037|AB|S52.002|ICD10CM|Unspecified fracture of upper end of left ulna|Unspecified fracture of upper end of left ulna +C2844000|T037|HT|S52.002|ICD10CM|Unspecified fracture of upper end of left ulna|Unspecified fracture of upper end of left ulna +C2844001|T037|AB|S52.002A|ICD10CM|Unsp fracture of upper end of left ulna, init for clos fx|Unsp fracture of upper end of left ulna, init for clos fx +C2844001|T037|PT|S52.002A|ICD10CM|Unspecified fracture of upper end of left ulna, initial encounter for closed fracture|Unspecified fracture of upper end of left ulna, initial encounter for closed fracture +C2844002|T037|AB|S52.002B|ICD10CM|Unsp fx upper end of left ulna, init for opn fx type I/2|Unsp fx upper end of left ulna, init for opn fx type I/2 +C2844002|T037|PT|S52.002B|ICD10CM|Unspecified fracture of upper end of left ulna, initial encounter for open fracture type I or II|Unspecified fracture of upper end of left ulna, initial encounter for open fracture type I or II +C2844003|T037|AB|S52.002C|ICD10CM|Unsp fx upper end of left ulna, init for opn fx type 3A/B/C|Unsp fx upper end of left ulna, init for opn fx type 3A/B/C +C2844004|T037|AB|S52.002D|ICD10CM|Unsp fx upper end of l ulna, subs for clos fx w routn heal|Unsp fx upper end of l ulna, subs for clos fx w routn heal +C2844005|T037|AB|S52.002E|ICD10CM|Unsp fx upr end l ulna, 7thE|Unsp fx upr end l ulna, 7thE +C2844006|T037|AB|S52.002F|ICD10CM|Unsp fx upr end l ulna, 7thF|Unsp fx upr end l ulna, 7thF +C2844007|T037|AB|S52.002G|ICD10CM|Unsp fx upper end of l ulna, subs for clos fx w delay heal|Unsp fx upper end of l ulna, subs for clos fx w delay heal +C2844008|T037|AB|S52.002H|ICD10CM|Unsp fx upr end l ulna, 7thH|Unsp fx upr end l ulna, 7thH +C2844009|T037|AB|S52.002J|ICD10CM|Unsp fx upr end l ulna, 7thJ|Unsp fx upr end l ulna, 7thJ +C2844010|T037|AB|S52.002K|ICD10CM|Unsp fx upper end of left ulna, subs for clos fx w nonunion|Unsp fx upper end of left ulna, subs for clos fx w nonunion +C2844011|T037|AB|S52.002M|ICD10CM|Unsp fx upr end l ulna, subs for opn fx type I/2 w nonunion|Unsp fx upr end l ulna, subs for opn fx type I/2 w nonunion +C2844012|T037|AB|S52.002N|ICD10CM|Unsp fx upr end l ulna, 7thN|Unsp fx upr end l ulna, 7thN +C2844013|T037|AB|S52.002P|ICD10CM|Unsp fx upper end of left ulna, subs for clos fx w malunion|Unsp fx upper end of left ulna, subs for clos fx w malunion +C2844014|T037|AB|S52.002Q|ICD10CM|Unsp fx upr end l ulna, subs for opn fx type I/2 w malunion|Unsp fx upr end l ulna, subs for opn fx type I/2 w malunion +C2844015|T037|AB|S52.002R|ICD10CM|Unsp fx upr end l ulna, 7thR|Unsp fx upr end l ulna, 7thR +C2844016|T037|PT|S52.002S|ICD10CM|Unspecified fracture of upper end of left ulna, sequela|Unspecified fracture of upper end of left ulna, sequela +C2844016|T037|AB|S52.002S|ICD10CM|Unspecified fracture of upper end of left ulna, sequela|Unspecified fracture of upper end of left ulna, sequela +C2844017|T037|AB|S52.009|ICD10CM|Unspecified fracture of upper end of unspecified ulna|Unspecified fracture of upper end of unspecified ulna +C2844017|T037|HT|S52.009|ICD10CM|Unspecified fracture of upper end of unspecified ulna|Unspecified fracture of upper end of unspecified ulna +C2844018|T037|AB|S52.009A|ICD10CM|Unsp fracture of upper end of unsp ulna, init for clos fx|Unsp fracture of upper end of unsp ulna, init for clos fx +C2844018|T037|PT|S52.009A|ICD10CM|Unspecified fracture of upper end of unspecified ulna, initial encounter for closed fracture|Unspecified fracture of upper end of unspecified ulna, initial encounter for closed fracture +C2844019|T037|AB|S52.009B|ICD10CM|Unsp fx upper end of unsp ulna, init for opn fx type I/2|Unsp fx upper end of unsp ulna, init for opn fx type I/2 +C2844020|T037|AB|S52.009C|ICD10CM|Unsp fx upper end of unsp ulna, init for opn fx type 3A/B/C|Unsp fx upper end of unsp ulna, init for opn fx type 3A/B/C +C2844021|T037|AB|S52.009D|ICD10CM|Unsp fx upper end unsp ulna, subs for clos fx w routn heal|Unsp fx upper end unsp ulna, subs for clos fx w routn heal +C2844022|T037|AB|S52.009E|ICD10CM|Unsp fx upr end unsp ulna, 7thE|Unsp fx upr end unsp ulna, 7thE +C2844023|T037|AB|S52.009F|ICD10CM|Unsp fx upr end unsp ulna, 7thF|Unsp fx upr end unsp ulna, 7thF +C2844024|T037|AB|S52.009G|ICD10CM|Unsp fx upper end unsp ulna, subs for clos fx w delay heal|Unsp fx upper end unsp ulna, subs for clos fx w delay heal +C2844025|T037|AB|S52.009H|ICD10CM|Unsp fx upr end unsp ulna, 7thH|Unsp fx upr end unsp ulna, 7thH +C2844026|T037|AB|S52.009J|ICD10CM|Unsp fx upr end unsp ulna, 7thJ|Unsp fx upr end unsp ulna, 7thJ +C2844027|T037|AB|S52.009K|ICD10CM|Unsp fx upper end of unsp ulna, subs for clos fx w nonunion|Unsp fx upper end of unsp ulna, subs for clos fx w nonunion +C2844028|T037|AB|S52.009M|ICD10CM|Unsp fx upr end unsp ulna, 7thM|Unsp fx upr end unsp ulna, 7thM +C2844029|T037|AB|S52.009N|ICD10CM|Unsp fx upr end unsp ulna, 7thN|Unsp fx upr end unsp ulna, 7thN +C2844030|T037|AB|S52.009P|ICD10CM|Unsp fx upper end of unsp ulna, subs for clos fx w malunion|Unsp fx upper end of unsp ulna, subs for clos fx w malunion +C2844031|T037|AB|S52.009Q|ICD10CM|Unsp fx upr end unsp ulna, 7thQ|Unsp fx upr end unsp ulna, 7thQ +C2844032|T037|AB|S52.009R|ICD10CM|Unsp fx upr end unsp ulna, 7thR|Unsp fx upr end unsp ulna, 7thR +C2844033|T037|AB|S52.009S|ICD10CM|Unsp fracture of upper end of unspecified ulna, sequela|Unsp fracture of upper end of unspecified ulna, sequela +C2844033|T037|PT|S52.009S|ICD10CM|Unspecified fracture of upper end of unspecified ulna, sequela|Unspecified fracture of upper end of unspecified ulna, sequela +C2844034|T037|AB|S52.01|ICD10CM|Torus fracture of upper end of ulna|Torus fracture of upper end of ulna +C2844034|T037|HT|S52.01|ICD10CM|Torus fracture of upper end of ulna|Torus fracture of upper end of ulna +C2844035|T037|AB|S52.011|ICD10CM|Torus fracture of upper end of right ulna|Torus fracture of upper end of right ulna +C2844035|T037|HT|S52.011|ICD10CM|Torus fracture of upper end of right ulna|Torus fracture of upper end of right ulna +C2844036|T037|AB|S52.011A|ICD10CM|Torus fracture of upper end of right ulna, init for clos fx|Torus fracture of upper end of right ulna, init for clos fx +C2844036|T037|PT|S52.011A|ICD10CM|Torus fracture of upper end of right ulna, initial encounter for closed fracture|Torus fracture of upper end of right ulna, initial encounter for closed fracture +C2844037|T037|PT|S52.011D|ICD10CM|Torus fracture of upper end of right ulna, subsequent encounter for fracture with routine healing|Torus fracture of upper end of right ulna, subsequent encounter for fracture with routine healing +C2844037|T037|AB|S52.011D|ICD10CM|Torus fx upper end of right ulna, subs for fx w routn heal|Torus fx upper end of right ulna, subs for fx w routn heal +C2844038|T037|PT|S52.011G|ICD10CM|Torus fracture of upper end of right ulna, subsequent encounter for fracture with delayed healing|Torus fracture of upper end of right ulna, subsequent encounter for fracture with delayed healing +C2844038|T037|AB|S52.011G|ICD10CM|Torus fx upper end of right ulna, subs for fx w delay heal|Torus fx upper end of right ulna, subs for fx w delay heal +C2844039|T037|PT|S52.011K|ICD10CM|Torus fracture of upper end of right ulna, subsequent encounter for fracture with nonunion|Torus fracture of upper end of right ulna, subsequent encounter for fracture with nonunion +C2844039|T037|AB|S52.011K|ICD10CM|Torus fx upper end of right ulna, subs for fx w nonunion|Torus fx upper end of right ulna, subs for fx w nonunion +C2844040|T037|PT|S52.011P|ICD10CM|Torus fracture of upper end of right ulna, subsequent encounter for fracture with malunion|Torus fracture of upper end of right ulna, subsequent encounter for fracture with malunion +C2844040|T037|AB|S52.011P|ICD10CM|Torus fx upper end of right ulna, subs for fx w malunion|Torus fx upper end of right ulna, subs for fx w malunion +C2844041|T037|PT|S52.011S|ICD10CM|Torus fracture of upper end of right ulna, sequela|Torus fracture of upper end of right ulna, sequela +C2844041|T037|AB|S52.011S|ICD10CM|Torus fracture of upper end of right ulna, sequela|Torus fracture of upper end of right ulna, sequela +C2844042|T037|AB|S52.012|ICD10CM|Torus fracture of upper end of left ulna|Torus fracture of upper end of left ulna +C2844042|T037|HT|S52.012|ICD10CM|Torus fracture of upper end of left ulna|Torus fracture of upper end of left ulna +C2844043|T037|AB|S52.012A|ICD10CM|Torus fracture of upper end of left ulna, init for clos fx|Torus fracture of upper end of left ulna, init for clos fx +C2844043|T037|PT|S52.012A|ICD10CM|Torus fracture of upper end of left ulna, initial encounter for closed fracture|Torus fracture of upper end of left ulna, initial encounter for closed fracture +C2844044|T037|PT|S52.012D|ICD10CM|Torus fracture of upper end of left ulna, subsequent encounter for fracture with routine healing|Torus fracture of upper end of left ulna, subsequent encounter for fracture with routine healing +C2844044|T037|AB|S52.012D|ICD10CM|Torus fx upper end of left ulna, subs for fx w routn heal|Torus fx upper end of left ulna, subs for fx w routn heal +C2844045|T037|PT|S52.012G|ICD10CM|Torus fracture of upper end of left ulna, subsequent encounter for fracture with delayed healing|Torus fracture of upper end of left ulna, subsequent encounter for fracture with delayed healing +C2844045|T037|AB|S52.012G|ICD10CM|Torus fx upper end of left ulna, subs for fx w delay heal|Torus fx upper end of left ulna, subs for fx w delay heal +C2844046|T037|PT|S52.012K|ICD10CM|Torus fracture of upper end of left ulna, subsequent encounter for fracture with nonunion|Torus fracture of upper end of left ulna, subsequent encounter for fracture with nonunion +C2844046|T037|AB|S52.012K|ICD10CM|Torus fx upper end of left ulna, subs for fx w nonunion|Torus fx upper end of left ulna, subs for fx w nonunion +C2844047|T037|PT|S52.012P|ICD10CM|Torus fracture of upper end of left ulna, subsequent encounter for fracture with malunion|Torus fracture of upper end of left ulna, subsequent encounter for fracture with malunion +C2844047|T037|AB|S52.012P|ICD10CM|Torus fx upper end of left ulna, subs for fx w malunion|Torus fx upper end of left ulna, subs for fx w malunion +C2844048|T037|PT|S52.012S|ICD10CM|Torus fracture of upper end of left ulna, sequela|Torus fracture of upper end of left ulna, sequela +C2844048|T037|AB|S52.012S|ICD10CM|Torus fracture of upper end of left ulna, sequela|Torus fracture of upper end of left ulna, sequela +C2844049|T037|AB|S52.019|ICD10CM|Torus fracture of upper end of unspecified ulna|Torus fracture of upper end of unspecified ulna +C2844049|T037|HT|S52.019|ICD10CM|Torus fracture of upper end of unspecified ulna|Torus fracture of upper end of unspecified ulna +C2844050|T037|AB|S52.019A|ICD10CM|Torus fracture of upper end of unsp ulna, init for clos fx|Torus fracture of upper end of unsp ulna, init for clos fx +C2844050|T037|PT|S52.019A|ICD10CM|Torus fracture of upper end of unspecified ulna, initial encounter for closed fracture|Torus fracture of upper end of unspecified ulna, initial encounter for closed fracture +C2844051|T037|AB|S52.019D|ICD10CM|Torus fx upper end of unsp ulna, subs for fx w routn heal|Torus fx upper end of unsp ulna, subs for fx w routn heal +C2844052|T037|AB|S52.019G|ICD10CM|Torus fx upper end of unsp ulna, subs for fx w delay heal|Torus fx upper end of unsp ulna, subs for fx w delay heal +C2844053|T037|PT|S52.019K|ICD10CM|Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with nonunion|Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with nonunion +C2844053|T037|AB|S52.019K|ICD10CM|Torus fx upper end of unsp ulna, subs for fx w nonunion|Torus fx upper end of unsp ulna, subs for fx w nonunion +C2844054|T037|PT|S52.019P|ICD10CM|Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with malunion|Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with malunion +C2844054|T037|AB|S52.019P|ICD10CM|Torus fx upper end of unsp ulna, subs for fx w malunion|Torus fx upper end of unsp ulna, subs for fx w malunion +C2844055|T037|PT|S52.019S|ICD10CM|Torus fracture of upper end of unspecified ulna, sequela|Torus fracture of upper end of unspecified ulna, sequela +C2844055|T037|AB|S52.019S|ICD10CM|Torus fracture of upper end of unspecified ulna, sequela|Torus fracture of upper end of unspecified ulna, sequela +C2844056|T037|AB|S52.02|ICD10CM|Fracture of olecran pro w/o intraarticular extension of ulna|Fracture of olecran pro w/o intraarticular extension of ulna +C2844056|T037|HT|S52.02|ICD10CM|Fracture of olecranon process without intraarticular extension of ulna|Fracture of olecranon process without intraarticular extension of ulna +C2844057|T037|AB|S52.021|ICD10CM|Disp fx of olecran pro w/o intartic extension of right ulna|Disp fx of olecran pro w/o intartic extension of right ulna +C2844057|T037|HT|S52.021|ICD10CM|Displaced fracture of olecranon process without intraarticular extension of right ulna|Displaced fracture of olecranon process without intraarticular extension of right ulna +C2844058|T037|AB|S52.021A|ICD10CM|Disp fx of olecran pro w/o intartic extn right ulna, init|Disp fx of olecran pro w/o intartic extn right ulna, init +C2844059|T037|AB|S52.021B|ICD10CM|Disp fx of olecran pro w/o intartic extn r ulna, 7thB|Disp fx of olecran pro w/o intartic extn r ulna, 7thB +C2844060|T037|AB|S52.021C|ICD10CM|Disp fx of olecran pro w/o intartic extn r ulna, 7thC|Disp fx of olecran pro w/o intartic extn r ulna, 7thC +C2844061|T037|AB|S52.021D|ICD10CM|Disp fx of olecran pro w/o intartic extn r ulna, 7thD|Disp fx of olecran pro w/o intartic extn r ulna, 7thD +C2844062|T037|AB|S52.021E|ICD10CM|Disp fx of olecran pro w/o intartic extn r ulna, 7thE|Disp fx of olecran pro w/o intartic extn r ulna, 7thE +C2844063|T037|AB|S52.021F|ICD10CM|Disp fx of olecran pro w/o intartic extn r ulna, 7thF|Disp fx of olecran pro w/o intartic extn r ulna, 7thF +C2844064|T037|AB|S52.021G|ICD10CM|Disp fx of olecran pro w/o intartic extn r ulna, 7thG|Disp fx of olecran pro w/o intartic extn r ulna, 7thG +C2844065|T037|AB|S52.021H|ICD10CM|Disp fx of olecran pro w/o intartic extn r ulna, 7thH|Disp fx of olecran pro w/o intartic extn r ulna, 7thH +C2844066|T037|AB|S52.021J|ICD10CM|Disp fx of olecran pro w/o intartic extn r ulna, 7thJ|Disp fx of olecran pro w/o intartic extn r ulna, 7thJ +C2844067|T037|AB|S52.021K|ICD10CM|Disp fx of olecran pro w/o intartic extn r ulna, 7thK|Disp fx of olecran pro w/o intartic extn r ulna, 7thK +C2844068|T037|AB|S52.021M|ICD10CM|Disp fx of olecran pro w/o intartic extn r ulna, 7thM|Disp fx of olecran pro w/o intartic extn r ulna, 7thM +C2844069|T037|AB|S52.021N|ICD10CM|Disp fx of olecran pro w/o intartic extn r ulna, 7thN|Disp fx of olecran pro w/o intartic extn r ulna, 7thN +C2844070|T037|AB|S52.021P|ICD10CM|Disp fx of olecran pro w/o intartic extn r ulna, 7thP|Disp fx of olecran pro w/o intartic extn r ulna, 7thP +C2844071|T037|AB|S52.021Q|ICD10CM|Disp fx of olecran pro w/o intartic extn r ulna, 7thQ|Disp fx of olecran pro w/o intartic extn r ulna, 7thQ +C2844072|T037|AB|S52.021R|ICD10CM|Disp fx of olecran pro w/o intartic extn r ulna, 7thR|Disp fx of olecran pro w/o intartic extn r ulna, 7thR +C2844073|T037|AB|S52.021S|ICD10CM|Disp fx of olecran pro w/o intartic extn right ulna, sequela|Disp fx of olecran pro w/o intartic extn right ulna, sequela +C2844073|T037|PT|S52.021S|ICD10CM|Displaced fracture of olecranon process without intraarticular extension of right ulna, sequela|Displaced fracture of olecranon process without intraarticular extension of right ulna, sequela +C2844074|T037|AB|S52.022|ICD10CM|Disp fx of olecran pro w/o intartic extension of left ulna|Disp fx of olecran pro w/o intartic extension of left ulna +C2844074|T037|HT|S52.022|ICD10CM|Displaced fracture of olecranon process without intraarticular extension of left ulna|Displaced fracture of olecranon process without intraarticular extension of left ulna +C2844075|T037|AB|S52.022A|ICD10CM|Disp fx of olecran pro w/o intartic extn left ulna, init|Disp fx of olecran pro w/o intartic extn left ulna, init +C2844076|T037|AB|S52.022B|ICD10CM|Disp fx of olecran pro w/o intartic extn l ulna, 7thB|Disp fx of olecran pro w/o intartic extn l ulna, 7thB +C2844077|T037|AB|S52.022C|ICD10CM|Disp fx of olecran pro w/o intartic extn l ulna, 7thC|Disp fx of olecran pro w/o intartic extn l ulna, 7thC +C2844078|T037|AB|S52.022D|ICD10CM|Disp fx of olecran pro w/o intartic extn l ulna, 7thD|Disp fx of olecran pro w/o intartic extn l ulna, 7thD +C2844079|T037|AB|S52.022E|ICD10CM|Disp fx of olecran pro w/o intartic extn l ulna, 7thE|Disp fx of olecran pro w/o intartic extn l ulna, 7thE +C2844080|T037|AB|S52.022F|ICD10CM|Disp fx of olecran pro w/o intartic extn l ulna, 7thF|Disp fx of olecran pro w/o intartic extn l ulna, 7thF +C2844081|T037|AB|S52.022G|ICD10CM|Disp fx of olecran pro w/o intartic extn l ulna, 7thG|Disp fx of olecran pro w/o intartic extn l ulna, 7thG +C2844082|T037|AB|S52.022H|ICD10CM|Disp fx of olecran pro w/o intartic extn l ulna, 7thH|Disp fx of olecran pro w/o intartic extn l ulna, 7thH +C2844083|T037|AB|S52.022J|ICD10CM|Disp fx of olecran pro w/o intartic extn l ulna, 7thJ|Disp fx of olecran pro w/o intartic extn l ulna, 7thJ +C2844084|T037|AB|S52.022K|ICD10CM|Disp fx of olecran pro w/o intartic extn l ulna, 7thK|Disp fx of olecran pro w/o intartic extn l ulna, 7thK +C2844085|T037|AB|S52.022M|ICD10CM|Disp fx of olecran pro w/o intartic extn l ulna, 7thM|Disp fx of olecran pro w/o intartic extn l ulna, 7thM +C2844086|T037|AB|S52.022N|ICD10CM|Disp fx of olecran pro w/o intartic extn l ulna, 7thN|Disp fx of olecran pro w/o intartic extn l ulna, 7thN +C2844087|T037|AB|S52.022P|ICD10CM|Disp fx of olecran pro w/o intartic extn l ulna, 7thP|Disp fx of olecran pro w/o intartic extn l ulna, 7thP +C2844088|T037|AB|S52.022Q|ICD10CM|Disp fx of olecran pro w/o intartic extn l ulna, 7thQ|Disp fx of olecran pro w/o intartic extn l ulna, 7thQ +C2844089|T037|AB|S52.022R|ICD10CM|Disp fx of olecran pro w/o intartic extn l ulna, 7thR|Disp fx of olecran pro w/o intartic extn l ulna, 7thR +C2844090|T037|AB|S52.022S|ICD10CM|Disp fx of olecran pro w/o intartic extn left ulna, sequela|Disp fx of olecran pro w/o intartic extn left ulna, sequela +C2844090|T037|PT|S52.022S|ICD10CM|Displaced fracture of olecranon process without intraarticular extension of left ulna, sequela|Displaced fracture of olecranon process without intraarticular extension of left ulna, sequela +C2844091|T037|AB|S52.023|ICD10CM|Disp fx of olecran pro w/o intartic extension of unsp ulna|Disp fx of olecran pro w/o intartic extension of unsp ulna +C2844091|T037|HT|S52.023|ICD10CM|Displaced fracture of olecranon process without intraarticular extension of unspecified ulna|Displaced fracture of olecranon process without intraarticular extension of unspecified ulna +C2844092|T037|AB|S52.023A|ICD10CM|Disp fx of olecran pro w/o intartic extn unsp ulna, init|Disp fx of olecran pro w/o intartic extn unsp ulna, init +C2844093|T037|AB|S52.023B|ICD10CM|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thB|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thB +C2844094|T037|AB|S52.023C|ICD10CM|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thC|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thC +C2844095|T037|AB|S52.023D|ICD10CM|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thD|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thD +C2844096|T037|AB|S52.023E|ICD10CM|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thE|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thE +C2844097|T037|AB|S52.023F|ICD10CM|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thF|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thF +C2844098|T037|AB|S52.023G|ICD10CM|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thG|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thG +C2844099|T037|AB|S52.023H|ICD10CM|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thH|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thH +C2844100|T037|AB|S52.023J|ICD10CM|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thJ|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thJ +C2844101|T037|AB|S52.023K|ICD10CM|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thK|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thK +C2844102|T037|AB|S52.023M|ICD10CM|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thM|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thM +C2844103|T037|AB|S52.023N|ICD10CM|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thN|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thN +C2844104|T037|AB|S52.023P|ICD10CM|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thP|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thP +C2844105|T037|AB|S52.023Q|ICD10CM|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thQ|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thQ +C2844106|T037|AB|S52.023R|ICD10CM|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thR|Disp fx of olecran pro w/o intartic extn unsp ulna, 7thR +C2844107|T037|AB|S52.023S|ICD10CM|Disp fx of olecran pro w/o intartic extn unsp ulna, sequela|Disp fx of olecran pro w/o intartic extn unsp ulna, sequela +C2844108|T037|AB|S52.024|ICD10CM|Nondisp fx of olecran pro w/o intartic extn right ulna|Nondisp fx of olecran pro w/o intartic extn right ulna +C2844108|T037|HT|S52.024|ICD10CM|Nondisplaced fracture of olecranon process without intraarticular extension of right ulna|Nondisplaced fracture of olecranon process without intraarticular extension of right ulna +C2844109|T037|AB|S52.024A|ICD10CM|Nondisp fx of olecran pro w/o intartic extn right ulna, init|Nondisp fx of olecran pro w/o intartic extn right ulna, init +C2844110|T037|AB|S52.024B|ICD10CM|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thB|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thB +C2844111|T037|AB|S52.024C|ICD10CM|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thC|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thC +C2844112|T037|AB|S52.024D|ICD10CM|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thD|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thD +C2844113|T037|AB|S52.024E|ICD10CM|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thE|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thE +C2844114|T037|AB|S52.024F|ICD10CM|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thF|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thF +C2844115|T037|AB|S52.024G|ICD10CM|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thG|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thG +C2844116|T037|AB|S52.024H|ICD10CM|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thH|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thH +C2844117|T037|AB|S52.024J|ICD10CM|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thJ|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thJ +C2844118|T037|AB|S52.024K|ICD10CM|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thK|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thK +C2844119|T037|AB|S52.024M|ICD10CM|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thM|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thM +C2844120|T037|AB|S52.024N|ICD10CM|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thN|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thN +C2844121|T037|AB|S52.024P|ICD10CM|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thP|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thP +C2844122|T037|AB|S52.024Q|ICD10CM|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thQ|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thQ +C2844123|T037|AB|S52.024R|ICD10CM|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thR|Nondisp fx of olecran pro w/o intartic extn r ulna, 7thR +C2844124|T037|AB|S52.024S|ICD10CM|Nondisp fx of olecran pro w/o intartic extn r ulna, sequela|Nondisp fx of olecran pro w/o intartic extn r ulna, sequela +C2844124|T037|PT|S52.024S|ICD10CM|Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, sequela|Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, sequela +C2844125|T037|AB|S52.025|ICD10CM|Nondisp fx of olecran pro w/o intartic extn left ulna|Nondisp fx of olecran pro w/o intartic extn left ulna +C2844125|T037|HT|S52.025|ICD10CM|Nondisplaced fracture of olecranon process without intraarticular extension of left ulna|Nondisplaced fracture of olecranon process without intraarticular extension of left ulna +C2844126|T037|AB|S52.025A|ICD10CM|Nondisp fx of olecran pro w/o intartic extn left ulna, init|Nondisp fx of olecran pro w/o intartic extn left ulna, init +C2844127|T037|AB|S52.025B|ICD10CM|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thB|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thB +C2844128|T037|AB|S52.025C|ICD10CM|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thC|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thC +C2844129|T037|AB|S52.025D|ICD10CM|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thD|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thD +C2844130|T037|AB|S52.025E|ICD10CM|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thE|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thE +C2844131|T037|AB|S52.025F|ICD10CM|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thF|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thF +C2844132|T037|AB|S52.025G|ICD10CM|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thG|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thG +C2844133|T037|AB|S52.025H|ICD10CM|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thH|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thH +C2844134|T037|AB|S52.025J|ICD10CM|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thJ|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thJ +C2844135|T037|AB|S52.025K|ICD10CM|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thK|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thK +C2844136|T037|AB|S52.025M|ICD10CM|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thM|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thM +C2844137|T037|AB|S52.025N|ICD10CM|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thN|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thN +C2844138|T037|AB|S52.025P|ICD10CM|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thP|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thP +C2844139|T037|AB|S52.025Q|ICD10CM|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thQ|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thQ +C2844140|T037|AB|S52.025R|ICD10CM|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thR|Nondisp fx of olecran pro w/o intartic extn l ulna, 7thR +C2844141|T037|AB|S52.025S|ICD10CM|Nondisp fx of olecran pro w/o intartic extn l ulna, sequela|Nondisp fx of olecran pro w/o intartic extn l ulna, sequela +C2844141|T037|PT|S52.025S|ICD10CM|Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, sequela|Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, sequela +C2844142|T037|AB|S52.026|ICD10CM|Nondisp fx of olecran pro w/o intartic extn unsp ulna|Nondisp fx of olecran pro w/o intartic extn unsp ulna +C2844142|T037|HT|S52.026|ICD10CM|Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna|Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna +C2844143|T037|AB|S52.026A|ICD10CM|Nondisp fx of olecran pro w/o intartic extn unsp ulna, init|Nondisp fx of olecran pro w/o intartic extn unsp ulna, init +C2844144|T037|AB|S52.026B|ICD10CM|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thB|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thB +C2844145|T037|AB|S52.026C|ICD10CM|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thC|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thC +C2844146|T037|AB|S52.026D|ICD10CM|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thD|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thD +C2844147|T037|AB|S52.026E|ICD10CM|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thE|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thE +C2844148|T037|AB|S52.026F|ICD10CM|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thF|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thF +C2844149|T037|AB|S52.026G|ICD10CM|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thG|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thG +C2844150|T037|AB|S52.026H|ICD10CM|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thH|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thH +C2844151|T037|AB|S52.026J|ICD10CM|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thJ|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thJ +C2844152|T037|AB|S52.026K|ICD10CM|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thK|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thK +C2844153|T037|AB|S52.026M|ICD10CM|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thM|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thM +C2844154|T037|AB|S52.026N|ICD10CM|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thN|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thN +C2844155|T037|AB|S52.026P|ICD10CM|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thP|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thP +C2844156|T037|AB|S52.026Q|ICD10CM|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thQ|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thQ +C2844157|T037|AB|S52.026R|ICD10CM|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thR|Nondisp fx of olecran pro w/o intartic extn unsp ulna, 7thR +C2844158|T037|AB|S52.026S|ICD10CM|Nondisp fx of olecran pro w/o intartic extn unsp ulna, sqla|Nondisp fx of olecran pro w/o intartic extn unsp ulna, sqla +C2844159|T037|AB|S52.03|ICD10CM|Fracture of olecran pro w intraarticular extension of ulna|Fracture of olecran pro w intraarticular extension of ulna +C2844159|T037|HT|S52.03|ICD10CM|Fracture of olecranon process with intraarticular extension of ulna|Fracture of olecranon process with intraarticular extension of ulna +C2844160|T037|AB|S52.031|ICD10CM|Disp fx of olecran pro w intartic extension of right ulna|Disp fx of olecran pro w intartic extension of right ulna +C2844160|T037|HT|S52.031|ICD10CM|Displaced fracture of olecranon process with intraarticular extension of right ulna|Displaced fracture of olecranon process with intraarticular extension of right ulna +C2844161|T037|AB|S52.031A|ICD10CM|Disp fx of olecran pro w intartic extn right ulna, init|Disp fx of olecran pro w intartic extn right ulna, init +C2844162|T037|AB|S52.031B|ICD10CM|Disp fx of olecran pro w intartic extn r ulna, 7thB|Disp fx of olecran pro w intartic extn r ulna, 7thB +C2844163|T037|AB|S52.031C|ICD10CM|Disp fx of olecran pro w intartic extn r ulna, 7thC|Disp fx of olecran pro w intartic extn r ulna, 7thC +C2844164|T037|AB|S52.031D|ICD10CM|Disp fx of olecran pro w intartic extn r ulna, 7thD|Disp fx of olecran pro w intartic extn r ulna, 7thD +C2844165|T037|AB|S52.031E|ICD10CM|Disp fx of olecran pro w intartic extn r ulna, 7thE|Disp fx of olecran pro w intartic extn r ulna, 7thE +C2844166|T037|AB|S52.031F|ICD10CM|Disp fx of olecran pro w intartic extn r ulna, 7thF|Disp fx of olecran pro w intartic extn r ulna, 7thF +C2844167|T037|AB|S52.031G|ICD10CM|Disp fx of olecran pro w intartic extn r ulna, 7thG|Disp fx of olecran pro w intartic extn r ulna, 7thG +C2844168|T037|AB|S52.031H|ICD10CM|Disp fx of olecran pro w intartic extn r ulna, 7thH|Disp fx of olecran pro w intartic extn r ulna, 7thH +C2844169|T037|AB|S52.031J|ICD10CM|Disp fx of olecran pro w intartic extn r ulna, 7thJ|Disp fx of olecran pro w intartic extn r ulna, 7thJ +C2844170|T037|AB|S52.031K|ICD10CM|Disp fx of olecran pro w intartic extn r ulna, 7thK|Disp fx of olecran pro w intartic extn r ulna, 7thK +C2844171|T037|AB|S52.031M|ICD10CM|Disp fx of olecran pro w intartic extn r ulna, 7thM|Disp fx of olecran pro w intartic extn r ulna, 7thM +C2844172|T037|AB|S52.031N|ICD10CM|Disp fx of olecran pro w intartic extn r ulna, 7thN|Disp fx of olecran pro w intartic extn r ulna, 7thN +C2844173|T037|AB|S52.031P|ICD10CM|Disp fx of olecran pro w intartic extn r ulna, 7thP|Disp fx of olecran pro w intartic extn r ulna, 7thP +C2844174|T037|AB|S52.031Q|ICD10CM|Disp fx of olecran pro w intartic extn r ulna, 7thQ|Disp fx of olecran pro w intartic extn r ulna, 7thQ +C2844175|T037|AB|S52.031R|ICD10CM|Disp fx of olecran pro w intartic extn r ulna, 7thR|Disp fx of olecran pro w intartic extn r ulna, 7thR +C2844176|T037|AB|S52.031S|ICD10CM|Disp fx of olecran pro w intartic extn right ulna, sequela|Disp fx of olecran pro w intartic extn right ulna, sequela +C2844176|T037|PT|S52.031S|ICD10CM|Displaced fracture of olecranon process with intraarticular extension of right ulna, sequela|Displaced fracture of olecranon process with intraarticular extension of right ulna, sequela +C2844177|T037|AB|S52.032|ICD10CM|Disp fx of olecran pro w intartic extension of left ulna|Disp fx of olecran pro w intartic extension of left ulna +C2844177|T037|HT|S52.032|ICD10CM|Displaced fracture of olecranon process with intraarticular extension of left ulna|Displaced fracture of olecranon process with intraarticular extension of left ulna +C2844178|T037|AB|S52.032A|ICD10CM|Disp fx of olecran pro w intartic extn left ulna, init|Disp fx of olecran pro w intartic extn left ulna, init +C2844179|T037|AB|S52.032B|ICD10CM|Disp fx of olecran pro w intartic extn l ulna, 7thB|Disp fx of olecran pro w intartic extn l ulna, 7thB +C2844180|T037|AB|S52.032C|ICD10CM|Disp fx of olecran pro w intartic extn l ulna, 7thC|Disp fx of olecran pro w intartic extn l ulna, 7thC +C2844181|T037|AB|S52.032D|ICD10CM|Disp fx of olecran pro w intartic extn l ulna, 7thD|Disp fx of olecran pro w intartic extn l ulna, 7thD +C2844182|T037|AB|S52.032E|ICD10CM|Disp fx of olecran pro w intartic extn l ulna, 7thE|Disp fx of olecran pro w intartic extn l ulna, 7thE +C2844183|T037|AB|S52.032F|ICD10CM|Disp fx of olecran pro w intartic extn l ulna, 7thF|Disp fx of olecran pro w intartic extn l ulna, 7thF +C2844184|T037|AB|S52.032G|ICD10CM|Disp fx of olecran pro w intartic extn l ulna, 7thG|Disp fx of olecran pro w intartic extn l ulna, 7thG +C2844185|T037|AB|S52.032H|ICD10CM|Disp fx of olecran pro w intartic extn l ulna, 7thH|Disp fx of olecran pro w intartic extn l ulna, 7thH +C2844186|T037|AB|S52.032J|ICD10CM|Disp fx of olecran pro w intartic extn l ulna, 7thJ|Disp fx of olecran pro w intartic extn l ulna, 7thJ +C2844187|T037|AB|S52.032K|ICD10CM|Disp fx of olecran pro w intartic extn l ulna, 7thK|Disp fx of olecran pro w intartic extn l ulna, 7thK +C2844188|T037|AB|S52.032M|ICD10CM|Disp fx of olecran pro w intartic extn l ulna, 7thM|Disp fx of olecran pro w intartic extn l ulna, 7thM +C2844189|T037|AB|S52.032N|ICD10CM|Disp fx of olecran pro w intartic extn l ulna, 7thN|Disp fx of olecran pro w intartic extn l ulna, 7thN +C2844190|T037|AB|S52.032P|ICD10CM|Disp fx of olecran pro w intartic extn l ulna, 7thP|Disp fx of olecran pro w intartic extn l ulna, 7thP +C2844191|T037|AB|S52.032Q|ICD10CM|Disp fx of olecran pro w intartic extn l ulna, 7thQ|Disp fx of olecran pro w intartic extn l ulna, 7thQ +C2844192|T037|AB|S52.032R|ICD10CM|Disp fx of olecran pro w intartic extn l ulna, 7thR|Disp fx of olecran pro w intartic extn l ulna, 7thR +C2844193|T037|AB|S52.032S|ICD10CM|Disp fx of olecran pro w intartic extn left ulna, sequela|Disp fx of olecran pro w intartic extn left ulna, sequela +C2844193|T037|PT|S52.032S|ICD10CM|Displaced fracture of olecranon process with intraarticular extension of left ulna, sequela|Displaced fracture of olecranon process with intraarticular extension of left ulna, sequela +C2844194|T037|AB|S52.033|ICD10CM|Disp fx of olecran pro w intartic extension of unsp ulna|Disp fx of olecran pro w intartic extension of unsp ulna +C2844194|T037|HT|S52.033|ICD10CM|Displaced fracture of olecranon process with intraarticular extension of unspecified ulna|Displaced fracture of olecranon process with intraarticular extension of unspecified ulna +C2844195|T037|AB|S52.033A|ICD10CM|Disp fx of olecran pro w intartic extn unsp ulna, init|Disp fx of olecran pro w intartic extn unsp ulna, init +C2844196|T037|AB|S52.033B|ICD10CM|Disp fx of olecran pro w intartic extn unsp ulna, 7thB|Disp fx of olecran pro w intartic extn unsp ulna, 7thB +C2844197|T037|AB|S52.033C|ICD10CM|Disp fx of olecran pro w intartic extn unsp ulna, 7thC|Disp fx of olecran pro w intartic extn unsp ulna, 7thC +C2844198|T037|AB|S52.033D|ICD10CM|Disp fx of olecran pro w intartic extn unsp ulna, 7thD|Disp fx of olecran pro w intartic extn unsp ulna, 7thD +C2844199|T037|AB|S52.033E|ICD10CM|Disp fx of olecran pro w intartic extn unsp ulna, 7thE|Disp fx of olecran pro w intartic extn unsp ulna, 7thE +C2844200|T037|AB|S52.033F|ICD10CM|Disp fx of olecran pro w intartic extn unsp ulna, 7thF|Disp fx of olecran pro w intartic extn unsp ulna, 7thF +C2844201|T037|AB|S52.033G|ICD10CM|Disp fx of olecran pro w intartic extn unsp ulna, 7thG|Disp fx of olecran pro w intartic extn unsp ulna, 7thG +C2844202|T037|AB|S52.033H|ICD10CM|Disp fx of olecran pro w intartic extn unsp ulna, 7thH|Disp fx of olecran pro w intartic extn unsp ulna, 7thH +C2844203|T037|AB|S52.033J|ICD10CM|Disp fx of olecran pro w intartic extn unsp ulna, 7thJ|Disp fx of olecran pro w intartic extn unsp ulna, 7thJ +C2844204|T037|AB|S52.033K|ICD10CM|Disp fx of olecran pro w intartic extn unsp ulna, 7thK|Disp fx of olecran pro w intartic extn unsp ulna, 7thK +C2844205|T037|AB|S52.033M|ICD10CM|Disp fx of olecran pro w intartic extn unsp ulna, 7thM|Disp fx of olecran pro w intartic extn unsp ulna, 7thM +C2844206|T037|AB|S52.033N|ICD10CM|Disp fx of olecran pro w intartic extn unsp ulna, 7thN|Disp fx of olecran pro w intartic extn unsp ulna, 7thN +C2844207|T037|AB|S52.033P|ICD10CM|Disp fx of olecran pro w intartic extn unsp ulna, 7thP|Disp fx of olecran pro w intartic extn unsp ulna, 7thP +C2844208|T037|AB|S52.033Q|ICD10CM|Disp fx of olecran pro w intartic extn unsp ulna, 7thQ|Disp fx of olecran pro w intartic extn unsp ulna, 7thQ +C2844209|T037|AB|S52.033R|ICD10CM|Disp fx of olecran pro w intartic extn unsp ulna, 7thR|Disp fx of olecran pro w intartic extn unsp ulna, 7thR +C2844210|T037|AB|S52.033S|ICD10CM|Disp fx of olecran pro w intartic extn unsp ulna, sequela|Disp fx of olecran pro w intartic extn unsp ulna, sequela +C2844210|T037|PT|S52.033S|ICD10CM|Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, sequela|Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, sequela +C2844211|T037|AB|S52.034|ICD10CM|Nondisp fx of olecran pro w intartic extension of right ulna|Nondisp fx of olecran pro w intartic extension of right ulna +C2844211|T037|HT|S52.034|ICD10CM|Nondisplaced fracture of olecranon process with intraarticular extension of right ulna|Nondisplaced fracture of olecranon process with intraarticular extension of right ulna +C2844212|T037|AB|S52.034A|ICD10CM|Nondisp fx of olecran pro w intartic extn right ulna, init|Nondisp fx of olecran pro w intartic extn right ulna, init +C2844213|T037|AB|S52.034B|ICD10CM|Nondisp fx of olecran pro w intartic extn r ulna, 7thB|Nondisp fx of olecran pro w intartic extn r ulna, 7thB +C2844214|T037|AB|S52.034C|ICD10CM|Nondisp fx of olecran pro w intartic extn r ulna, 7thC|Nondisp fx of olecran pro w intartic extn r ulna, 7thC +C2844215|T037|AB|S52.034D|ICD10CM|Nondisp fx of olecran pro w intartic extn r ulna, 7thD|Nondisp fx of olecran pro w intartic extn r ulna, 7thD +C2844216|T037|AB|S52.034E|ICD10CM|Nondisp fx of olecran pro w intartic extn r ulna, 7thE|Nondisp fx of olecran pro w intartic extn r ulna, 7thE +C2844217|T037|AB|S52.034F|ICD10CM|Nondisp fx of olecran pro w intartic extn r ulna, 7thF|Nondisp fx of olecran pro w intartic extn r ulna, 7thF +C2844218|T037|AB|S52.034G|ICD10CM|Nondisp fx of olecran pro w intartic extn r ulna, 7thG|Nondisp fx of olecran pro w intartic extn r ulna, 7thG +C2844219|T037|AB|S52.034H|ICD10CM|Nondisp fx of olecran pro w intartic extn r ulna, 7thH|Nondisp fx of olecran pro w intartic extn r ulna, 7thH +C2844220|T037|AB|S52.034J|ICD10CM|Nondisp fx of olecran pro w intartic extn r ulna, 7thJ|Nondisp fx of olecran pro w intartic extn r ulna, 7thJ +C2844221|T037|AB|S52.034K|ICD10CM|Nondisp fx of olecran pro w intartic extn r ulna, 7thK|Nondisp fx of olecran pro w intartic extn r ulna, 7thK +C2844222|T037|AB|S52.034M|ICD10CM|Nondisp fx of olecran pro w intartic extn r ulna, 7thM|Nondisp fx of olecran pro w intartic extn r ulna, 7thM +C2844223|T037|AB|S52.034N|ICD10CM|Nondisp fx of olecran pro w intartic extn r ulna, 7thN|Nondisp fx of olecran pro w intartic extn r ulna, 7thN +C2844224|T037|AB|S52.034P|ICD10CM|Nondisp fx of olecran pro w intartic extn r ulna, 7thP|Nondisp fx of olecran pro w intartic extn r ulna, 7thP +C2844225|T037|AB|S52.034Q|ICD10CM|Nondisp fx of olecran pro w intartic extn r ulna, 7thQ|Nondisp fx of olecran pro w intartic extn r ulna, 7thQ +C2844226|T037|AB|S52.034R|ICD10CM|Nondisp fx of olecran pro w intartic extn r ulna, 7thR|Nondisp fx of olecran pro w intartic extn r ulna, 7thR +C2844227|T037|AB|S52.034S|ICD10CM|Nondisp fx of olecran pro w intartic extn r ulna, sequela|Nondisp fx of olecran pro w intartic extn r ulna, sequela +C2844227|T037|PT|S52.034S|ICD10CM|Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, sequela|Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, sequela +C2844228|T037|AB|S52.035|ICD10CM|Nondisp fx of olecran pro w intartic extension of left ulna|Nondisp fx of olecran pro w intartic extension of left ulna +C2844228|T037|HT|S52.035|ICD10CM|Nondisplaced fracture of olecranon process with intraarticular extension of left ulna|Nondisplaced fracture of olecranon process with intraarticular extension of left ulna +C2844229|T037|AB|S52.035A|ICD10CM|Nondisp fx of olecran pro w intartic extn left ulna, init|Nondisp fx of olecran pro w intartic extn left ulna, init +C2844230|T037|AB|S52.035B|ICD10CM|Nondisp fx of olecran pro w intartic extn l ulna, 7thB|Nondisp fx of olecran pro w intartic extn l ulna, 7thB +C2844231|T037|AB|S52.035C|ICD10CM|Nondisp fx of olecran pro w intartic extn l ulna, 7thC|Nondisp fx of olecran pro w intartic extn l ulna, 7thC +C2844232|T037|AB|S52.035D|ICD10CM|Nondisp fx of olecran pro w intartic extn l ulna, 7thD|Nondisp fx of olecran pro w intartic extn l ulna, 7thD +C2844233|T037|AB|S52.035E|ICD10CM|Nondisp fx of olecran pro w intartic extn l ulna, 7thE|Nondisp fx of olecran pro w intartic extn l ulna, 7thE +C2844234|T037|AB|S52.035F|ICD10CM|Nondisp fx of olecran pro w intartic extn l ulna, 7thF|Nondisp fx of olecran pro w intartic extn l ulna, 7thF +C2844235|T037|AB|S52.035G|ICD10CM|Nondisp fx of olecran pro w intartic extn l ulna, 7thG|Nondisp fx of olecran pro w intartic extn l ulna, 7thG +C2844236|T037|AB|S52.035H|ICD10CM|Nondisp fx of olecran pro w intartic extn l ulna, 7thH|Nondisp fx of olecran pro w intartic extn l ulna, 7thH +C2844237|T037|AB|S52.035J|ICD10CM|Nondisp fx of olecran pro w intartic extn l ulna, 7thJ|Nondisp fx of olecran pro w intartic extn l ulna, 7thJ +C2844238|T037|AB|S52.035K|ICD10CM|Nondisp fx of olecran pro w intartic extn l ulna, 7thK|Nondisp fx of olecran pro w intartic extn l ulna, 7thK +C2844239|T037|AB|S52.035M|ICD10CM|Nondisp fx of olecran pro w intartic extn l ulna, 7thM|Nondisp fx of olecran pro w intartic extn l ulna, 7thM +C2844240|T037|AB|S52.035N|ICD10CM|Nondisp fx of olecran pro w intartic extn l ulna, 7thN|Nondisp fx of olecran pro w intartic extn l ulna, 7thN +C2844241|T037|AB|S52.035P|ICD10CM|Nondisp fx of olecran pro w intartic extn l ulna, 7thP|Nondisp fx of olecran pro w intartic extn l ulna, 7thP +C2844242|T037|AB|S52.035Q|ICD10CM|Nondisp fx of olecran pro w intartic extn l ulna, 7thQ|Nondisp fx of olecran pro w intartic extn l ulna, 7thQ +C2844243|T037|AB|S52.035R|ICD10CM|Nondisp fx of olecran pro w intartic extn l ulna, 7thR|Nondisp fx of olecran pro w intartic extn l ulna, 7thR +C2844244|T037|AB|S52.035S|ICD10CM|Nondisp fx of olecran pro w intartic extn left ulna, sequela|Nondisp fx of olecran pro w intartic extn left ulna, sequela +C2844244|T037|PT|S52.035S|ICD10CM|Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, sequela|Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, sequela +C2844245|T037|AB|S52.036|ICD10CM|Nondisp fx of olecran pro w intartic extension of unsp ulna|Nondisp fx of olecran pro w intartic extension of unsp ulna +C2844245|T037|HT|S52.036|ICD10CM|Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna|Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna +C2844246|T037|AB|S52.036A|ICD10CM|Nondisp fx of olecran pro w intartic extn unsp ulna, init|Nondisp fx of olecran pro w intartic extn unsp ulna, init +C2844247|T037|AB|S52.036B|ICD10CM|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thB|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thB +C2844248|T037|AB|S52.036C|ICD10CM|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thC|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thC +C2844249|T037|AB|S52.036D|ICD10CM|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thD|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thD +C2844250|T037|AB|S52.036E|ICD10CM|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thE|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thE +C2844251|T037|AB|S52.036F|ICD10CM|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thF|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thF +C2844252|T037|AB|S52.036G|ICD10CM|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thG|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thG +C2844253|T037|AB|S52.036H|ICD10CM|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thH|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thH +C2844254|T037|AB|S52.036J|ICD10CM|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thJ|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thJ +C2844255|T037|AB|S52.036K|ICD10CM|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thK|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thK +C2844256|T037|AB|S52.036M|ICD10CM|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thM|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thM +C2844257|T037|AB|S52.036N|ICD10CM|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thN|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thN +C2844258|T037|AB|S52.036P|ICD10CM|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thP|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thP +C2844259|T037|AB|S52.036Q|ICD10CM|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thQ|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thQ +C2844260|T037|AB|S52.036R|ICD10CM|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thR|Nondisp fx of olecran pro w intartic extn unsp ulna, 7thR +C2844261|T037|AB|S52.036S|ICD10CM|Nondisp fx of olecran pro w intartic extn unsp ulna, sequela|Nondisp fx of olecran pro w intartic extn unsp ulna, sequela +C0559420|T037|HT|S52.04|ICD10CM|Fracture of coronoid process of ulna|Fracture of coronoid process of ulna +C0559420|T037|AB|S52.04|ICD10CM|Fracture of coronoid process of ulna|Fracture of coronoid process of ulna +C2844262|T037|HT|S52.041|ICD10CM|Displaced fracture of coronoid process of right ulna|Displaced fracture of coronoid process of right ulna +C2844262|T037|AB|S52.041|ICD10CM|Displaced fracture of coronoid process of right ulna|Displaced fracture of coronoid process of right ulna +C2844263|T037|AB|S52.041A|ICD10CM|Disp fx of coronoid process of right ulna, init for clos fx|Disp fx of coronoid process of right ulna, init for clos fx +C2844263|T037|PT|S52.041A|ICD10CM|Displaced fracture of coronoid process of right ulna, initial encounter for closed fracture|Displaced fracture of coronoid process of right ulna, initial encounter for closed fracture +C2844264|T037|AB|S52.041B|ICD10CM|Disp fx of coronoid pro of r ulna, init for opn fx type I/2|Disp fx of coronoid pro of r ulna, init for opn fx type I/2 +C2844265|T037|AB|S52.041C|ICD10CM|Disp fx of coronoid pro of r ulna, 7thC|Disp fx of coronoid pro of r ulna, 7thC +C2844266|T037|AB|S52.041D|ICD10CM|Disp fx of coronoid pro of r ulna, 7thD|Disp fx of coronoid pro of r ulna, 7thD +C2844267|T037|AB|S52.041E|ICD10CM|Disp fx of coronoid pro of r ulna, 7thE|Disp fx of coronoid pro of r ulna, 7thE +C2844268|T037|AB|S52.041F|ICD10CM|Disp fx of coronoid pro of r ulna, 7thF|Disp fx of coronoid pro of r ulna, 7thF +C2844269|T037|AB|S52.041G|ICD10CM|Disp fx of coronoid pro of r ulna, 7thG|Disp fx of coronoid pro of r ulna, 7thG +C2844270|T037|AB|S52.041H|ICD10CM|Disp fx of coronoid pro of r ulna, 7thH|Disp fx of coronoid pro of r ulna, 7thH +C2844271|T037|AB|S52.041J|ICD10CM|Disp fx of coronoid pro of r ulna, 7thJ|Disp fx of coronoid pro of r ulna, 7thJ +C2844272|T037|AB|S52.041K|ICD10CM|Disp fx of coronoid pro of r ulna, 7thK|Disp fx of coronoid pro of r ulna, 7thK +C2844273|T037|AB|S52.041M|ICD10CM|Disp fx of coronoid pro of r ulna, 7thM|Disp fx of coronoid pro of r ulna, 7thM +C2844274|T037|AB|S52.041N|ICD10CM|Disp fx of coronoid pro of r ulna, 7thN|Disp fx of coronoid pro of r ulna, 7thN +C2844275|T037|AB|S52.041P|ICD10CM|Disp fx of coronoid pro of r ulna, 7thP|Disp fx of coronoid pro of r ulna, 7thP +C2844276|T037|AB|S52.041Q|ICD10CM|Disp fx of coronoid pro of r ulna, 7thQ|Disp fx of coronoid pro of r ulna, 7thQ +C2844277|T037|AB|S52.041R|ICD10CM|Disp fx of coronoid pro of r ulna, 7thR|Disp fx of coronoid pro of r ulna, 7thR +C2844278|T037|AB|S52.041S|ICD10CM|Disp fx of coronoid process of right ulna, sequela|Disp fx of coronoid process of right ulna, sequela +C2844278|T037|PT|S52.041S|ICD10CM|Displaced fracture of coronoid process of right ulna, sequela|Displaced fracture of coronoid process of right ulna, sequela +C2844279|T037|HT|S52.042|ICD10CM|Displaced fracture of coronoid process of left ulna|Displaced fracture of coronoid process of left ulna +C2844279|T037|AB|S52.042|ICD10CM|Displaced fracture of coronoid process of left ulna|Displaced fracture of coronoid process of left ulna +C2844280|T037|AB|S52.042A|ICD10CM|Disp fx of coronoid process of left ulna, init for clos fx|Disp fx of coronoid process of left ulna, init for clos fx +C2844280|T037|PT|S52.042A|ICD10CM|Displaced fracture of coronoid process of left ulna, initial encounter for closed fracture|Displaced fracture of coronoid process of left ulna, initial encounter for closed fracture +C2844281|T037|AB|S52.042B|ICD10CM|Disp fx of coronoid pro of l ulna, init for opn fx type I/2|Disp fx of coronoid pro of l ulna, init for opn fx type I/2 +C2844282|T037|AB|S52.042C|ICD10CM|Disp fx of coronoid pro of l ulna, 7thC|Disp fx of coronoid pro of l ulna, 7thC +C2844283|T037|AB|S52.042D|ICD10CM|Disp fx of coronoid pro of l ulna, 7thD|Disp fx of coronoid pro of l ulna, 7thD +C2844284|T037|AB|S52.042E|ICD10CM|Disp fx of coronoid pro of l ulna, 7thE|Disp fx of coronoid pro of l ulna, 7thE +C2844285|T037|AB|S52.042F|ICD10CM|Disp fx of coronoid pro of l ulna, 7thF|Disp fx of coronoid pro of l ulna, 7thF +C2844286|T037|AB|S52.042G|ICD10CM|Disp fx of coronoid pro of l ulna, 7thG|Disp fx of coronoid pro of l ulna, 7thG +C2844287|T037|AB|S52.042H|ICD10CM|Disp fx of coronoid pro of l ulna, 7thH|Disp fx of coronoid pro of l ulna, 7thH +C2844288|T037|AB|S52.042J|ICD10CM|Disp fx of coronoid pro of l ulna, 7thJ|Disp fx of coronoid pro of l ulna, 7thJ +C2844289|T037|AB|S52.042K|ICD10CM|Disp fx of coronoid pro of l ulna, 7thK|Disp fx of coronoid pro of l ulna, 7thK +C2844290|T037|AB|S52.042M|ICD10CM|Disp fx of coronoid pro of l ulna, 7thM|Disp fx of coronoid pro of l ulna, 7thM +C2844291|T037|AB|S52.042N|ICD10CM|Disp fx of coronoid pro of l ulna, 7thN|Disp fx of coronoid pro of l ulna, 7thN +C2844292|T037|AB|S52.042P|ICD10CM|Disp fx of coronoid pro of l ulna, 7thP|Disp fx of coronoid pro of l ulna, 7thP +C2844293|T037|AB|S52.042Q|ICD10CM|Disp fx of coronoid pro of l ulna, 7thQ|Disp fx of coronoid pro of l ulna, 7thQ +C2844294|T037|AB|S52.042R|ICD10CM|Disp fx of coronoid pro of l ulna, 7thR|Disp fx of coronoid pro of l ulna, 7thR +C2844295|T037|AB|S52.042S|ICD10CM|Displaced fracture of coronoid process of left ulna, sequela|Displaced fracture of coronoid process of left ulna, sequela +C2844295|T037|PT|S52.042S|ICD10CM|Displaced fracture of coronoid process of left ulna, sequela|Displaced fracture of coronoid process of left ulna, sequela +C2844296|T037|AB|S52.043|ICD10CM|Displaced fracture of coronoid process of unspecified ulna|Displaced fracture of coronoid process of unspecified ulna +C2844296|T037|HT|S52.043|ICD10CM|Displaced fracture of coronoid process of unspecified ulna|Displaced fracture of coronoid process of unspecified ulna +C2844297|T037|AB|S52.043A|ICD10CM|Disp fx of coronoid process of unsp ulna, init for clos fx|Disp fx of coronoid process of unsp ulna, init for clos fx +C2844297|T037|PT|S52.043A|ICD10CM|Displaced fracture of coronoid process of unspecified ulna, initial encounter for closed fracture|Displaced fracture of coronoid process of unspecified ulna, initial encounter for closed fracture +C2844298|T037|AB|S52.043B|ICD10CM|Disp fx of coronoid pro of unsp ulna, 7thB|Disp fx of coronoid pro of unsp ulna, 7thB +C2844299|T037|AB|S52.043C|ICD10CM|Disp fx of coronoid pro of unsp ulna, 7thC|Disp fx of coronoid pro of unsp ulna, 7thC +C2844300|T037|AB|S52.043D|ICD10CM|Disp fx of coronoid pro of unsp ulna, 7thD|Disp fx of coronoid pro of unsp ulna, 7thD +C2844301|T037|AB|S52.043E|ICD10CM|Disp fx of coronoid pro of unsp ulna, 7thE|Disp fx of coronoid pro of unsp ulna, 7thE +C2844302|T037|AB|S52.043F|ICD10CM|Disp fx of coronoid pro of unsp ulna, 7thF|Disp fx of coronoid pro of unsp ulna, 7thF +C2844303|T037|AB|S52.043G|ICD10CM|Disp fx of coronoid pro of unsp ulna, 7thG|Disp fx of coronoid pro of unsp ulna, 7thG +C2844304|T037|AB|S52.043H|ICD10CM|Disp fx of coronoid pro of unsp ulna, 7thH|Disp fx of coronoid pro of unsp ulna, 7thH +C2844305|T037|AB|S52.043J|ICD10CM|Disp fx of coronoid pro of unsp ulna, 7thJ|Disp fx of coronoid pro of unsp ulna, 7thJ +C2844306|T037|AB|S52.043K|ICD10CM|Disp fx of coronoid pro of unsp ulna, 7thK|Disp fx of coronoid pro of unsp ulna, 7thK +C2844307|T037|AB|S52.043M|ICD10CM|Disp fx of coronoid pro of unsp ulna, 7thM|Disp fx of coronoid pro of unsp ulna, 7thM +C2844308|T037|AB|S52.043N|ICD10CM|Disp fx of coronoid pro of unsp ulna, 7thN|Disp fx of coronoid pro of unsp ulna, 7thN +C2844309|T037|AB|S52.043P|ICD10CM|Disp fx of coronoid pro of unsp ulna, 7thP|Disp fx of coronoid pro of unsp ulna, 7thP +C2844310|T037|AB|S52.043Q|ICD10CM|Disp fx of coronoid pro of unsp ulna, 7thQ|Disp fx of coronoid pro of unsp ulna, 7thQ +C2844311|T037|AB|S52.043R|ICD10CM|Disp fx of coronoid pro of unsp ulna, 7thR|Disp fx of coronoid pro of unsp ulna, 7thR +C2844312|T037|AB|S52.043S|ICD10CM|Disp fx of coronoid process of unspecified ulna, sequela|Disp fx of coronoid process of unspecified ulna, sequela +C2844312|T037|PT|S52.043S|ICD10CM|Displaced fracture of coronoid process of unspecified ulna, sequela|Displaced fracture of coronoid process of unspecified ulna, sequela +C2844313|T037|HT|S52.044|ICD10CM|Nondisplaced fracture of coronoid process of right ulna|Nondisplaced fracture of coronoid process of right ulna +C2844313|T037|AB|S52.044|ICD10CM|Nondisplaced fracture of coronoid process of right ulna|Nondisplaced fracture of coronoid process of right ulna +C2844314|T037|AB|S52.044A|ICD10CM|Nondisp fx of coronoid process of right ulna, init|Nondisp fx of coronoid process of right ulna, init +C2844314|T037|PT|S52.044A|ICD10CM|Nondisplaced fracture of coronoid process of right ulna, initial encounter for closed fracture|Nondisplaced fracture of coronoid process of right ulna, initial encounter for closed fracture +C2844315|T037|AB|S52.044B|ICD10CM|Nondisp fx of coronoid pro of r ulna, 7thB|Nondisp fx of coronoid pro of r ulna, 7thB +C2844316|T037|AB|S52.044C|ICD10CM|Nondisp fx of coronoid pro of r ulna, 7thC|Nondisp fx of coronoid pro of r ulna, 7thC +C2844317|T037|AB|S52.044D|ICD10CM|Nondisp fx of coronoid pro of r ulna, 7thD|Nondisp fx of coronoid pro of r ulna, 7thD +C2844318|T037|AB|S52.044E|ICD10CM|Nondisp fx of coronoid pro of r ulna, 7thE|Nondisp fx of coronoid pro of r ulna, 7thE +C2844319|T037|AB|S52.044F|ICD10CM|Nondisp fx of coronoid pro of r ulna, 7thF|Nondisp fx of coronoid pro of r ulna, 7thF +C2844320|T037|AB|S52.044G|ICD10CM|Nondisp fx of coronoid pro of r ulna, 7thG|Nondisp fx of coronoid pro of r ulna, 7thG +C2844321|T037|AB|S52.044H|ICD10CM|Nondisp fx of coronoid pro of r ulna, 7thH|Nondisp fx of coronoid pro of r ulna, 7thH +C2844322|T037|AB|S52.044J|ICD10CM|Nondisp fx of coronoid pro of r ulna, 7thJ|Nondisp fx of coronoid pro of r ulna, 7thJ +C2844323|T037|AB|S52.044K|ICD10CM|Nondisp fx of coronoid pro of r ulna, 7thK|Nondisp fx of coronoid pro of r ulna, 7thK +C2844324|T037|AB|S52.044M|ICD10CM|Nondisp fx of coronoid pro of r ulna, 7thM|Nondisp fx of coronoid pro of r ulna, 7thM +C2844325|T037|AB|S52.044N|ICD10CM|Nondisp fx of coronoid pro of r ulna, 7thN|Nondisp fx of coronoid pro of r ulna, 7thN +C2844326|T037|AB|S52.044P|ICD10CM|Nondisp fx of coronoid pro of r ulna, 7thP|Nondisp fx of coronoid pro of r ulna, 7thP +C2844327|T037|AB|S52.044Q|ICD10CM|Nondisp fx of coronoid pro of r ulna, 7thQ|Nondisp fx of coronoid pro of r ulna, 7thQ +C2844328|T037|AB|S52.044R|ICD10CM|Nondisp fx of coronoid pro of r ulna, 7thR|Nondisp fx of coronoid pro of r ulna, 7thR +C2844329|T037|AB|S52.044S|ICD10CM|Nondisp fx of coronoid process of right ulna, sequela|Nondisp fx of coronoid process of right ulna, sequela +C2844329|T037|PT|S52.044S|ICD10CM|Nondisplaced fracture of coronoid process of right ulna, sequela|Nondisplaced fracture of coronoid process of right ulna, sequela +C2844330|T037|HT|S52.045|ICD10CM|Nondisplaced fracture of coronoid process of left ulna|Nondisplaced fracture of coronoid process of left ulna +C2844330|T037|AB|S52.045|ICD10CM|Nondisplaced fracture of coronoid process of left ulna|Nondisplaced fracture of coronoid process of left ulna +C2844331|T037|AB|S52.045A|ICD10CM|Nondisp fx of coronoid process of left ulna, init|Nondisp fx of coronoid process of left ulna, init +C2844331|T037|PT|S52.045A|ICD10CM|Nondisplaced fracture of coronoid process of left ulna, initial encounter for closed fracture|Nondisplaced fracture of coronoid process of left ulna, initial encounter for closed fracture +C2844332|T037|AB|S52.045B|ICD10CM|Nondisp fx of coronoid pro of l ulna, 7thB|Nondisp fx of coronoid pro of l ulna, 7thB +C2844333|T037|AB|S52.045C|ICD10CM|Nondisp fx of coronoid pro of l ulna, 7thC|Nondisp fx of coronoid pro of l ulna, 7thC +C2844334|T037|AB|S52.045D|ICD10CM|Nondisp fx of coronoid pro of l ulna, 7thD|Nondisp fx of coronoid pro of l ulna, 7thD +C2844335|T037|AB|S52.045E|ICD10CM|Nondisp fx of coronoid pro of l ulna, 7thE|Nondisp fx of coronoid pro of l ulna, 7thE +C2844336|T037|AB|S52.045F|ICD10CM|Nondisp fx of coronoid pro of l ulna, 7thF|Nondisp fx of coronoid pro of l ulna, 7thF +C2844337|T037|AB|S52.045G|ICD10CM|Nondisp fx of coronoid pro of l ulna, 7thG|Nondisp fx of coronoid pro of l ulna, 7thG +C2844338|T037|AB|S52.045H|ICD10CM|Nondisp fx of coronoid pro of l ulna, 7thH|Nondisp fx of coronoid pro of l ulna, 7thH +C2844339|T037|AB|S52.045J|ICD10CM|Nondisp fx of coronoid pro of l ulna, 7thJ|Nondisp fx of coronoid pro of l ulna, 7thJ +C2844340|T037|AB|S52.045K|ICD10CM|Nondisp fx of coronoid pro of l ulna, 7thK|Nondisp fx of coronoid pro of l ulna, 7thK +C2844341|T037|AB|S52.045M|ICD10CM|Nondisp fx of coronoid pro of l ulna, 7thM|Nondisp fx of coronoid pro of l ulna, 7thM +C2844342|T037|AB|S52.045N|ICD10CM|Nondisp fx of coronoid pro of l ulna, 7thN|Nondisp fx of coronoid pro of l ulna, 7thN +C2844343|T037|AB|S52.045P|ICD10CM|Nondisp fx of coronoid pro of l ulna, 7thP|Nondisp fx of coronoid pro of l ulna, 7thP +C2844344|T037|AB|S52.045Q|ICD10CM|Nondisp fx of coronoid pro of l ulna, 7thQ|Nondisp fx of coronoid pro of l ulna, 7thQ +C2844345|T037|AB|S52.045R|ICD10CM|Nondisp fx of coronoid pro of l ulna, 7thR|Nondisp fx of coronoid pro of l ulna, 7thR +C2844346|T037|AB|S52.045S|ICD10CM|Nondisp fx of coronoid process of left ulna, sequela|Nondisp fx of coronoid process of left ulna, sequela +C2844346|T037|PT|S52.045S|ICD10CM|Nondisplaced fracture of coronoid process of left ulna, sequela|Nondisplaced fracture of coronoid process of left ulna, sequela +C2844347|T037|AB|S52.046|ICD10CM|Nondisp fx of coronoid process of unspecified ulna|Nondisp fx of coronoid process of unspecified ulna +C2844347|T037|HT|S52.046|ICD10CM|Nondisplaced fracture of coronoid process of unspecified ulna|Nondisplaced fracture of coronoid process of unspecified ulna +C2844348|T037|AB|S52.046A|ICD10CM|Nondisp fx of coronoid process of unsp ulna, init|Nondisp fx of coronoid process of unsp ulna, init +C2844348|T037|PT|S52.046A|ICD10CM|Nondisplaced fracture of coronoid process of unspecified ulna, initial encounter for closed fracture|Nondisplaced fracture of coronoid process of unspecified ulna, initial encounter for closed fracture +C2844349|T037|AB|S52.046B|ICD10CM|Nondisp fx of coronoid pro of unsp ulna, 7thB|Nondisp fx of coronoid pro of unsp ulna, 7thB +C2844350|T037|AB|S52.046C|ICD10CM|Nondisp fx of coronoid pro of unsp ulna, 7thC|Nondisp fx of coronoid pro of unsp ulna, 7thC +C2844351|T037|AB|S52.046D|ICD10CM|Nondisp fx of coronoid pro of unsp ulna, 7thD|Nondisp fx of coronoid pro of unsp ulna, 7thD +C2844352|T037|AB|S52.046E|ICD10CM|Nondisp fx of coronoid pro of unsp ulna, 7thE|Nondisp fx of coronoid pro of unsp ulna, 7thE +C2844353|T037|AB|S52.046F|ICD10CM|Nondisp fx of coronoid pro of unsp ulna, 7thF|Nondisp fx of coronoid pro of unsp ulna, 7thF +C2844354|T037|AB|S52.046G|ICD10CM|Nondisp fx of coronoid pro of unsp ulna, 7thG|Nondisp fx of coronoid pro of unsp ulna, 7thG +C2844355|T037|AB|S52.046H|ICD10CM|Nondisp fx of coronoid pro of unsp ulna, 7thH|Nondisp fx of coronoid pro of unsp ulna, 7thH +C2844356|T037|AB|S52.046J|ICD10CM|Nondisp fx of coronoid pro of unsp ulna, 7thJ|Nondisp fx of coronoid pro of unsp ulna, 7thJ +C2844357|T037|AB|S52.046K|ICD10CM|Nondisp fx of coronoid pro of unsp ulna, 7thK|Nondisp fx of coronoid pro of unsp ulna, 7thK +C2844358|T037|AB|S52.046M|ICD10CM|Nondisp fx of coronoid pro of unsp ulna, 7thM|Nondisp fx of coronoid pro of unsp ulna, 7thM +C2844359|T037|AB|S52.046N|ICD10CM|Nondisp fx of coronoid pro of unsp ulna, 7thN|Nondisp fx of coronoid pro of unsp ulna, 7thN +C2844360|T037|AB|S52.046P|ICD10CM|Nondisp fx of coronoid pro of unsp ulna, 7thP|Nondisp fx of coronoid pro of unsp ulna, 7thP +C2844361|T037|AB|S52.046Q|ICD10CM|Nondisp fx of coronoid pro of unsp ulna, 7thQ|Nondisp fx of coronoid pro of unsp ulna, 7thQ +C2844362|T037|AB|S52.046R|ICD10CM|Nondisp fx of coronoid pro of unsp ulna, 7thR|Nondisp fx of coronoid pro of unsp ulna, 7thR +C2844363|T037|AB|S52.046S|ICD10CM|Nondisp fx of coronoid process of unspecified ulna, sequela|Nondisp fx of coronoid process of unspecified ulna, sequela +C2844363|T037|PT|S52.046S|ICD10CM|Nondisplaced fracture of coronoid process of unspecified ulna, sequela|Nondisplaced fracture of coronoid process of unspecified ulna, sequela +C2844364|T037|AB|S52.09|ICD10CM|Other fracture of upper end of ulna|Other fracture of upper end of ulna +C2844364|T037|HT|S52.09|ICD10CM|Other fracture of upper end of ulna|Other fracture of upper end of ulna +C2844365|T037|AB|S52.091|ICD10CM|Other fracture of upper end of right ulna|Other fracture of upper end of right ulna +C2844365|T037|HT|S52.091|ICD10CM|Other fracture of upper end of right ulna|Other fracture of upper end of right ulna +C2844366|T037|AB|S52.091A|ICD10CM|Oth fracture of upper end of right ulna, init for clos fx|Oth fracture of upper end of right ulna, init for clos fx +C2844366|T037|PT|S52.091A|ICD10CM|Other fracture of upper end of right ulna, initial encounter for closed fracture|Other fracture of upper end of right ulna, initial encounter for closed fracture +C2844367|T037|AB|S52.091B|ICD10CM|Oth fx upper end of right ulna, init for opn fx type I/2|Oth fx upper end of right ulna, init for opn fx type I/2 +C2844367|T037|PT|S52.091B|ICD10CM|Other fracture of upper end of right ulna, initial encounter for open fracture type I or II|Other fracture of upper end of right ulna, initial encounter for open fracture type I or II +C2844368|T037|AB|S52.091C|ICD10CM|Oth fx upper end of right ulna, init for opn fx type 3A/B/C|Oth fx upper end of right ulna, init for opn fx type 3A/B/C +C2844369|T037|AB|S52.091D|ICD10CM|Oth fx upper end of r ulna, subs for clos fx w routn heal|Oth fx upper end of r ulna, subs for clos fx w routn heal +C2844370|T037|AB|S52.091E|ICD10CM|Oth fx upr end r ulna, subs for opn fx type I/2 w routn heal|Oth fx upr end r ulna, subs for opn fx type I/2 w routn heal +C2844371|T037|AB|S52.091F|ICD10CM|Oth fx upr end r ulna, 7thF|Oth fx upr end r ulna, 7thF +C2844372|T037|AB|S52.091G|ICD10CM|Oth fx upper end of r ulna, subs for clos fx w delay heal|Oth fx upper end of r ulna, subs for clos fx w delay heal +C2844373|T037|AB|S52.091H|ICD10CM|Oth fx upr end r ulna, subs for opn fx type I/2 w delay heal|Oth fx upr end r ulna, subs for opn fx type I/2 w delay heal +C2844374|T037|AB|S52.091J|ICD10CM|Oth fx upr end r ulna, 7thJ|Oth fx upr end r ulna, 7thJ +C2844375|T037|AB|S52.091K|ICD10CM|Oth fx upper end of right ulna, subs for clos fx w nonunion|Oth fx upper end of right ulna, subs for clos fx w nonunion +C2844375|T037|PT|S52.091K|ICD10CM|Other fracture of upper end of right ulna, subsequent encounter for closed fracture with nonunion|Other fracture of upper end of right ulna, subsequent encounter for closed fracture with nonunion +C2844376|T037|AB|S52.091M|ICD10CM|Oth fx upper end r ulna, subs for opn fx type I/2 w nonunion|Oth fx upper end r ulna, subs for opn fx type I/2 w nonunion +C2844377|T037|AB|S52.091N|ICD10CM|Oth fx upr end r ulna, 7thN|Oth fx upr end r ulna, 7thN +C2844378|T037|AB|S52.091P|ICD10CM|Oth fx upper end of right ulna, subs for clos fx w malunion|Oth fx upper end of right ulna, subs for clos fx w malunion +C2844378|T037|PT|S52.091P|ICD10CM|Other fracture of upper end of right ulna, subsequent encounter for closed fracture with malunion|Other fracture of upper end of right ulna, subsequent encounter for closed fracture with malunion +C2844379|T037|AB|S52.091Q|ICD10CM|Oth fx upper end r ulna, subs for opn fx type I/2 w malunion|Oth fx upper end r ulna, subs for opn fx type I/2 w malunion +C2844380|T037|AB|S52.091R|ICD10CM|Oth fx upr end r ulna, 7thR|Oth fx upr end r ulna, 7thR +C2844381|T037|PT|S52.091S|ICD10CM|Other fracture of upper end of right ulna, sequela|Other fracture of upper end of right ulna, sequela +C2844381|T037|AB|S52.091S|ICD10CM|Other fracture of upper end of right ulna, sequela|Other fracture of upper end of right ulna, sequela +C2844382|T037|AB|S52.092|ICD10CM|Other fracture of upper end of left ulna|Other fracture of upper end of left ulna +C2844382|T037|HT|S52.092|ICD10CM|Other fracture of upper end of left ulna|Other fracture of upper end of left ulna +C2844383|T037|AB|S52.092A|ICD10CM|Oth fracture of upper end of left ulna, init for clos fx|Oth fracture of upper end of left ulna, init for clos fx +C2844383|T037|PT|S52.092A|ICD10CM|Other fracture of upper end of left ulna, initial encounter for closed fracture|Other fracture of upper end of left ulna, initial encounter for closed fracture +C2844384|T037|AB|S52.092B|ICD10CM|Oth fx upper end of left ulna, init for opn fx type I/2|Oth fx upper end of left ulna, init for opn fx type I/2 +C2844384|T037|PT|S52.092B|ICD10CM|Other fracture of upper end of left ulna, initial encounter for open fracture type I or II|Other fracture of upper end of left ulna, initial encounter for open fracture type I or II +C2844385|T037|AB|S52.092C|ICD10CM|Oth fx upper end of left ulna, init for opn fx type 3A/B/C|Oth fx upper end of left ulna, init for opn fx type 3A/B/C +C2844386|T037|AB|S52.092D|ICD10CM|Oth fx upper end of left ulna, subs for clos fx w routn heal|Oth fx upper end of left ulna, subs for clos fx w routn heal +C2844387|T037|AB|S52.092E|ICD10CM|Oth fx upr end l ulna, subs for opn fx type I/2 w routn heal|Oth fx upr end l ulna, subs for opn fx type I/2 w routn heal +C2844388|T037|AB|S52.092F|ICD10CM|Oth fx upr end l ulna, 7thF|Oth fx upr end l ulna, 7thF +C2844389|T037|AB|S52.092G|ICD10CM|Oth fx upper end of left ulna, subs for clos fx w delay heal|Oth fx upper end of left ulna, subs for clos fx w delay heal +C2844390|T037|AB|S52.092H|ICD10CM|Oth fx upr end l ulna, subs for opn fx type I/2 w delay heal|Oth fx upr end l ulna, subs for opn fx type I/2 w delay heal +C2844391|T037|AB|S52.092J|ICD10CM|Oth fx upr end l ulna, 7thJ|Oth fx upr end l ulna, 7thJ +C2844392|T037|AB|S52.092K|ICD10CM|Oth fx upper end of left ulna, subs for clos fx w nonunion|Oth fx upper end of left ulna, subs for clos fx w nonunion +C2844392|T037|PT|S52.092K|ICD10CM|Other fracture of upper end of left ulna, subsequent encounter for closed fracture with nonunion|Other fracture of upper end of left ulna, subsequent encounter for closed fracture with nonunion +C2844393|T037|AB|S52.092M|ICD10CM|Oth fx upper end l ulna, subs for opn fx type I/2 w nonunion|Oth fx upper end l ulna, subs for opn fx type I/2 w nonunion +C2844394|T037|AB|S52.092N|ICD10CM|Oth fx upr end l ulna, 7thN|Oth fx upr end l ulna, 7thN +C2844395|T037|AB|S52.092P|ICD10CM|Oth fx upper end of left ulna, subs for clos fx w malunion|Oth fx upper end of left ulna, subs for clos fx w malunion +C2844395|T037|PT|S52.092P|ICD10CM|Other fracture of upper end of left ulna, subsequent encounter for closed fracture with malunion|Other fracture of upper end of left ulna, subsequent encounter for closed fracture with malunion +C2844396|T037|AB|S52.092Q|ICD10CM|Oth fx upper end l ulna, subs for opn fx type I/2 w malunion|Oth fx upper end l ulna, subs for opn fx type I/2 w malunion +C2844397|T037|AB|S52.092R|ICD10CM|Oth fx upr end l ulna, 7thR|Oth fx upr end l ulna, 7thR +C2844398|T037|PT|S52.092S|ICD10CM|Other fracture of upper end of left ulna, sequela|Other fracture of upper end of left ulna, sequela +C2844398|T037|AB|S52.092S|ICD10CM|Other fracture of upper end of left ulna, sequela|Other fracture of upper end of left ulna, sequela +C2844399|T037|AB|S52.099|ICD10CM|Other fracture of upper end of unspecified ulna|Other fracture of upper end of unspecified ulna +C2844399|T037|HT|S52.099|ICD10CM|Other fracture of upper end of unspecified ulna|Other fracture of upper end of unspecified ulna +C2844400|T037|AB|S52.099A|ICD10CM|Oth fracture of upper end of unsp ulna, init for clos fx|Oth fracture of upper end of unsp ulna, init for clos fx +C2844400|T037|PT|S52.099A|ICD10CM|Other fracture of upper end of unspecified ulna, initial encounter for closed fracture|Other fracture of upper end of unspecified ulna, initial encounter for closed fracture +C2844401|T037|AB|S52.099B|ICD10CM|Oth fx upper end of unsp ulna, init for opn fx type I/2|Oth fx upper end of unsp ulna, init for opn fx type I/2 +C2844401|T037|PT|S52.099B|ICD10CM|Other fracture of upper end of unspecified ulna, initial encounter for open fracture type I or II|Other fracture of upper end of unspecified ulna, initial encounter for open fracture type I or II +C2844402|T037|AB|S52.099C|ICD10CM|Oth fx upper end of unsp ulna, init for opn fx type 3A/B/C|Oth fx upper end of unsp ulna, init for opn fx type 3A/B/C +C2844403|T037|AB|S52.099D|ICD10CM|Oth fx upper end of unsp ulna, subs for clos fx w routn heal|Oth fx upper end of unsp ulna, subs for clos fx w routn heal +C2844404|T037|AB|S52.099E|ICD10CM|Oth fx upr end unsp ulna, 7thE|Oth fx upr end unsp ulna, 7thE +C2844405|T037|AB|S52.099F|ICD10CM|Oth fx upr end unsp ulna, 7thF|Oth fx upr end unsp ulna, 7thF +C2844406|T037|AB|S52.099G|ICD10CM|Oth fx upper end of unsp ulna, subs for clos fx w delay heal|Oth fx upper end of unsp ulna, subs for clos fx w delay heal +C2844407|T037|AB|S52.099H|ICD10CM|Oth fx upr end unsp ulna, 7thH|Oth fx upr end unsp ulna, 7thH +C2844408|T037|AB|S52.099J|ICD10CM|Oth fx upr end unsp ulna, 7thJ|Oth fx upr end unsp ulna, 7thJ +C2844409|T037|AB|S52.099K|ICD10CM|Oth fx upper end of unsp ulna, subs for clos fx w nonunion|Oth fx upper end of unsp ulna, subs for clos fx w nonunion +C2844410|T037|AB|S52.099M|ICD10CM|Oth fx upr end unsp ulna, 7thM|Oth fx upr end unsp ulna, 7thM +C2844411|T037|AB|S52.099N|ICD10CM|Oth fx upr end unsp ulna, 7thN|Oth fx upr end unsp ulna, 7thN +C2844412|T037|AB|S52.099P|ICD10CM|Oth fx upper end of unsp ulna, subs for clos fx w malunion|Oth fx upper end of unsp ulna, subs for clos fx w malunion +C2844413|T037|AB|S52.099Q|ICD10CM|Oth fx upr end unsp ulna, 7thQ|Oth fx upr end unsp ulna, 7thQ +C2844414|T037|AB|S52.099R|ICD10CM|Oth fx upr end unsp ulna, 7thR|Oth fx upr end unsp ulna, 7thR +C2844415|T037|PT|S52.099S|ICD10CM|Other fracture of upper end of unspecified ulna, sequela|Other fracture of upper end of unspecified ulna, sequela +C2844415|T037|AB|S52.099S|ICD10CM|Other fracture of upper end of unspecified ulna, sequela|Other fracture of upper end of unspecified ulna, sequela +C0347789|T037|ET|S52.1|ICD10CM|Fracture of proximal end of radius|Fracture of proximal end of radius +C0347789|T037|HT|S52.1|ICD10CM|Fracture of upper end of radius|Fracture of upper end of radius +C0347789|T037|AB|S52.1|ICD10CM|Fracture of upper end of radius|Fracture of upper end of radius +C0347789|T037|PT|S52.1|ICD10|Fracture of upper end of radius|Fracture of upper end of radius +C2844416|T037|AB|S52.10|ICD10CM|Unspecified fracture of upper end of radius|Unspecified fracture of upper end of radius +C2844416|T037|HT|S52.10|ICD10CM|Unspecified fracture of upper end of radius|Unspecified fracture of upper end of radius +C2844417|T037|AB|S52.101|ICD10CM|Unspecified fracture of upper end of right radius|Unspecified fracture of upper end of right radius +C2844417|T037|HT|S52.101|ICD10CM|Unspecified fracture of upper end of right radius|Unspecified fracture of upper end of right radius +C2844418|T037|AB|S52.101A|ICD10CM|Unsp fracture of upper end of right radius, init for clos fx|Unsp fracture of upper end of right radius, init for clos fx +C2844418|T037|PT|S52.101A|ICD10CM|Unspecified fracture of upper end of right radius, initial encounter for closed fracture|Unspecified fracture of upper end of right radius, initial encounter for closed fracture +C2844419|T037|AB|S52.101B|ICD10CM|Unsp fx upper end of r radius, init for opn fx type I/2|Unsp fx upper end of r radius, init for opn fx type I/2 +C2844419|T037|PT|S52.101B|ICD10CM|Unspecified fracture of upper end of right radius, initial encounter for open fracture type I or II|Unspecified fracture of upper end of right radius, initial encounter for open fracture type I or II +C2844420|T037|AB|S52.101C|ICD10CM|Unsp fx upper end of r radius, init for opn fx type 3A/B/C|Unsp fx upper end of r radius, init for opn fx type 3A/B/C +C2844421|T037|AB|S52.101D|ICD10CM|Unsp fx upper end of r radius, subs for clos fx w routn heal|Unsp fx upper end of r radius, subs for clos fx w routn heal +C2844422|T037|AB|S52.101E|ICD10CM|Unsp fx upr end r rad, subs for opn fx type I/2 w routn heal|Unsp fx upr end r rad, subs for opn fx type I/2 w routn heal +C2844423|T037|AB|S52.101F|ICD10CM|Unsp fx upr end r rad, 7thF|Unsp fx upr end r rad, 7thF +C2844424|T037|AB|S52.101G|ICD10CM|Unsp fx upper end of r radius, subs for clos fx w delay heal|Unsp fx upper end of r radius, subs for clos fx w delay heal +C2844425|T037|AB|S52.101H|ICD10CM|Unsp fx upr end r rad, subs for opn fx type I/2 w delay heal|Unsp fx upr end r rad, subs for opn fx type I/2 w delay heal +C2844426|T037|AB|S52.101J|ICD10CM|Unsp fx upr end r rad, 7thJ|Unsp fx upr end r rad, 7thJ +C2844427|T037|AB|S52.101K|ICD10CM|Unsp fx upper end of r radius, subs for clos fx w nonunion|Unsp fx upper end of r radius, subs for clos fx w nonunion +C2844428|T037|AB|S52.101M|ICD10CM|Unsp fx upper end r rad, subs for opn fx type I/2 w nonunion|Unsp fx upper end r rad, subs for opn fx type I/2 w nonunion +C2844429|T037|AB|S52.101N|ICD10CM|Unsp fx upr end r rad, 7thN|Unsp fx upr end r rad, 7thN +C2844430|T037|AB|S52.101P|ICD10CM|Unsp fx upper end of r radius, subs for clos fx w malunion|Unsp fx upper end of r radius, subs for clos fx w malunion +C2844431|T037|AB|S52.101Q|ICD10CM|Unsp fx upper end r rad, subs for opn fx type I/2 w malunion|Unsp fx upper end r rad, subs for opn fx type I/2 w malunion +C2844432|T037|AB|S52.101R|ICD10CM|Unsp fx upr end r rad, 7thR|Unsp fx upr end r rad, 7thR +C2844433|T037|PT|S52.101S|ICD10CM|Unspecified fracture of upper end of right radius, sequela|Unspecified fracture of upper end of right radius, sequela +C2844433|T037|AB|S52.101S|ICD10CM|Unspecified fracture of upper end of right radius, sequela|Unspecified fracture of upper end of right radius, sequela +C2844434|T037|AB|S52.102|ICD10CM|Unspecified fracture of upper end of left radius|Unspecified fracture of upper end of left radius +C2844434|T037|HT|S52.102|ICD10CM|Unspecified fracture of upper end of left radius|Unspecified fracture of upper end of left radius +C2844435|T037|AB|S52.102A|ICD10CM|Unsp fracture of upper end of left radius, init for clos fx|Unsp fracture of upper end of left radius, init for clos fx +C2844435|T037|PT|S52.102A|ICD10CM|Unspecified fracture of upper end of left radius, initial encounter for closed fracture|Unspecified fracture of upper end of left radius, initial encounter for closed fracture +C2844436|T037|AB|S52.102B|ICD10CM|Unsp fx upper end of left radius, init for opn fx type I/2|Unsp fx upper end of left radius, init for opn fx type I/2 +C2844436|T037|PT|S52.102B|ICD10CM|Unspecified fracture of upper end of left radius, initial encounter for open fracture type I or II|Unspecified fracture of upper end of left radius, initial encounter for open fracture type I or II +C2844437|T037|AB|S52.102C|ICD10CM|Unsp fx upper end left radius, init for opn fx type 3A/B/C|Unsp fx upper end left radius, init for opn fx type 3A/B/C +C2844438|T037|AB|S52.102D|ICD10CM|Unsp fx upper end left radius, subs for clos fx w routn heal|Unsp fx upper end left radius, subs for clos fx w routn heal +C2844439|T037|AB|S52.102E|ICD10CM|Unsp fx upr end l rad, subs for opn fx type I/2 w routn heal|Unsp fx upr end l rad, subs for opn fx type I/2 w routn heal +C2844440|T037|AB|S52.102F|ICD10CM|Unsp fx upr end l rad, 7thF|Unsp fx upr end l rad, 7thF +C2844441|T037|AB|S52.102G|ICD10CM|Unsp fx upper end left radius, subs for clos fx w delay heal|Unsp fx upper end left radius, subs for clos fx w delay heal +C2844442|T037|AB|S52.102H|ICD10CM|Unsp fx upr end l rad, subs for opn fx type I/2 w delay heal|Unsp fx upr end l rad, subs for opn fx type I/2 w delay heal +C2844443|T037|AB|S52.102J|ICD10CM|Unsp fx upr end l rad, 7thJ|Unsp fx upr end l rad, 7thJ +C2844444|T037|AB|S52.102K|ICD10CM|Unsp fx upper end left radius, subs for clos fx w nonunion|Unsp fx upper end left radius, subs for clos fx w nonunion +C2844445|T037|AB|S52.102M|ICD10CM|Unsp fx upr end l rad, subs for opn fx type I/2 w nonunion|Unsp fx upr end l rad, subs for opn fx type I/2 w nonunion +C2844446|T037|AB|S52.102N|ICD10CM|Unsp fx upr end l rad, 7thN|Unsp fx upr end l rad, 7thN +C2844447|T037|AB|S52.102P|ICD10CM|Unsp fx upper end left radius, subs for clos fx w malunion|Unsp fx upper end left radius, subs for clos fx w malunion +C2844448|T037|AB|S52.102Q|ICD10CM|Unsp fx upr end l rad, subs for opn fx type I/2 w malunion|Unsp fx upr end l rad, subs for opn fx type I/2 w malunion +C2844449|T037|AB|S52.102R|ICD10CM|Unsp fx upr end l rad, 7thR|Unsp fx upr end l rad, 7thR +C2844450|T037|PT|S52.102S|ICD10CM|Unspecified fracture of upper end of left radius, sequela|Unspecified fracture of upper end of left radius, sequela +C2844450|T037|AB|S52.102S|ICD10CM|Unspecified fracture of upper end of left radius, sequela|Unspecified fracture of upper end of left radius, sequela +C2844451|T037|AB|S52.109|ICD10CM|Unspecified fracture of upper end of unspecified radius|Unspecified fracture of upper end of unspecified radius +C2844451|T037|HT|S52.109|ICD10CM|Unspecified fracture of upper end of unspecified radius|Unspecified fracture of upper end of unspecified radius +C2844452|T037|AB|S52.109A|ICD10CM|Unsp fracture of upper end of unsp radius, init for clos fx|Unsp fracture of upper end of unsp radius, init for clos fx +C2844452|T037|PT|S52.109A|ICD10CM|Unspecified fracture of upper end of unspecified radius, initial encounter for closed fracture|Unspecified fracture of upper end of unspecified radius, initial encounter for closed fracture +C2844453|T037|AB|S52.109B|ICD10CM|Unsp fx upper end of unsp radius, init for opn fx type I/2|Unsp fx upper end of unsp radius, init for opn fx type I/2 +C2844454|T037|AB|S52.109C|ICD10CM|Unsp fx upper end unsp radius, init for opn fx type 3A/B/C|Unsp fx upper end unsp radius, init for opn fx type 3A/B/C +C2844455|T037|AB|S52.109D|ICD10CM|Unsp fx upper end unsp radius, subs for clos fx w routn heal|Unsp fx upper end unsp radius, subs for clos fx w routn heal +C2844456|T037|AB|S52.109E|ICD10CM|Unsp fx upr end unsp rad, 7thE|Unsp fx upr end unsp rad, 7thE +C2844457|T037|AB|S52.109F|ICD10CM|Unsp fx upr end unsp rad, 7thF|Unsp fx upr end unsp rad, 7thF +C2844458|T037|AB|S52.109G|ICD10CM|Unsp fx upper end unsp radius, subs for clos fx w delay heal|Unsp fx upper end unsp radius, subs for clos fx w delay heal +C2844459|T037|AB|S52.109H|ICD10CM|Unsp fx upr end unsp rad, 7thH|Unsp fx upr end unsp rad, 7thH +C2844460|T037|AB|S52.109J|ICD10CM|Unsp fx upr end unsp rad, 7thJ|Unsp fx upr end unsp rad, 7thJ +C2844461|T037|AB|S52.109K|ICD10CM|Unsp fx upper end unsp radius, subs for clos fx w nonunion|Unsp fx upper end unsp radius, subs for clos fx w nonunion +C2844462|T037|AB|S52.109M|ICD10CM|Unsp fx upr end unsp rad, 7thM|Unsp fx upr end unsp rad, 7thM +C2844463|T037|AB|S52.109N|ICD10CM|Unsp fx upr end unsp rad, 7thN|Unsp fx upr end unsp rad, 7thN +C2844464|T037|AB|S52.109P|ICD10CM|Unsp fx upper end unsp radius, subs for clos fx w malunion|Unsp fx upper end unsp radius, subs for clos fx w malunion +C2844465|T037|AB|S52.109Q|ICD10CM|Unsp fx upr end unsp rad, 7thQ|Unsp fx upr end unsp rad, 7thQ +C2844466|T037|AB|S52.109R|ICD10CM|Unsp fx upr end unsp rad, 7thR|Unsp fx upr end unsp rad, 7thR +C2844467|T037|AB|S52.109S|ICD10CM|Unsp fracture of upper end of unspecified radius, sequela|Unsp fracture of upper end of unspecified radius, sequela +C2844467|T037|PT|S52.109S|ICD10CM|Unspecified fracture of upper end of unspecified radius, sequela|Unspecified fracture of upper end of unspecified radius, sequela +C2844468|T037|AB|S52.11|ICD10CM|Torus fracture of upper end of radius|Torus fracture of upper end of radius +C2844468|T037|HT|S52.11|ICD10CM|Torus fracture of upper end of radius|Torus fracture of upper end of radius +C2844469|T037|AB|S52.111|ICD10CM|Torus fracture of upper end of right radius|Torus fracture of upper end of right radius +C2844469|T037|HT|S52.111|ICD10CM|Torus fracture of upper end of right radius|Torus fracture of upper end of right radius +C2844470|T037|AB|S52.111A|ICD10CM|Torus fracture of upper end of right radius, init|Torus fracture of upper end of right radius, init +C2844470|T037|PT|S52.111A|ICD10CM|Torus fracture of upper end of right radius, initial encounter for closed fracture|Torus fracture of upper end of right radius, initial encounter for closed fracture +C2844471|T037|PT|S52.111D|ICD10CM|Torus fracture of upper end of right radius, subsequent encounter for fracture with routine healing|Torus fracture of upper end of right radius, subsequent encounter for fracture with routine healing +C2844471|T037|AB|S52.111D|ICD10CM|Torus fx upper end of r radius, subs for fx w routn heal|Torus fx upper end of r radius, subs for fx w routn heal +C2844472|T037|PT|S52.111G|ICD10CM|Torus fracture of upper end of right radius, subsequent encounter for fracture with delayed healing|Torus fracture of upper end of right radius, subsequent encounter for fracture with delayed healing +C2844472|T037|AB|S52.111G|ICD10CM|Torus fx upper end of r radius, subs for fx w delay heal|Torus fx upper end of r radius, subs for fx w delay heal +C2844473|T037|PT|S52.111K|ICD10CM|Torus fracture of upper end of right radius, subsequent encounter for fracture with nonunion|Torus fracture of upper end of right radius, subsequent encounter for fracture with nonunion +C2844473|T037|AB|S52.111K|ICD10CM|Torus fx upper end of r radius, subs for fx w nonunion|Torus fx upper end of r radius, subs for fx w nonunion +C2844474|T037|PT|S52.111P|ICD10CM|Torus fracture of upper end of right radius, subsequent encounter for fracture with malunion|Torus fracture of upper end of right radius, subsequent encounter for fracture with malunion +C2844474|T037|AB|S52.111P|ICD10CM|Torus fx upper end of r radius, subs for fx w malunion|Torus fx upper end of r radius, subs for fx w malunion +C2844475|T037|PT|S52.111S|ICD10CM|Torus fracture of upper end of right radius, sequela|Torus fracture of upper end of right radius, sequela +C2844475|T037|AB|S52.111S|ICD10CM|Torus fracture of upper end of right radius, sequela|Torus fracture of upper end of right radius, sequela +C2844476|T037|AB|S52.112|ICD10CM|Torus fracture of upper end of left radius|Torus fracture of upper end of left radius +C2844476|T037|HT|S52.112|ICD10CM|Torus fracture of upper end of left radius|Torus fracture of upper end of left radius +C2844477|T037|AB|S52.112A|ICD10CM|Torus fracture of upper end of left radius, init for clos fx|Torus fracture of upper end of left radius, init for clos fx +C2844477|T037|PT|S52.112A|ICD10CM|Torus fracture of upper end of left radius, initial encounter for closed fracture|Torus fracture of upper end of left radius, initial encounter for closed fracture +C2844478|T037|PT|S52.112D|ICD10CM|Torus fracture of upper end of left radius, subsequent encounter for fracture with routine healing|Torus fracture of upper end of left radius, subsequent encounter for fracture with routine healing +C2844478|T037|AB|S52.112D|ICD10CM|Torus fx upper end of left radius, subs for fx w routn heal|Torus fx upper end of left radius, subs for fx w routn heal +C2844479|T037|PT|S52.112G|ICD10CM|Torus fracture of upper end of left radius, subsequent encounter for fracture with delayed healing|Torus fracture of upper end of left radius, subsequent encounter for fracture with delayed healing +C2844479|T037|AB|S52.112G|ICD10CM|Torus fx upper end of left radius, subs for fx w delay heal|Torus fx upper end of left radius, subs for fx w delay heal +C2844480|T037|PT|S52.112K|ICD10CM|Torus fracture of upper end of left radius, subsequent encounter for fracture with nonunion|Torus fracture of upper end of left radius, subsequent encounter for fracture with nonunion +C2844480|T037|AB|S52.112K|ICD10CM|Torus fx upper end of left radius, subs for fx w nonunion|Torus fx upper end of left radius, subs for fx w nonunion +C2844481|T037|PT|S52.112P|ICD10CM|Torus fracture of upper end of left radius, subsequent encounter for fracture with malunion|Torus fracture of upper end of left radius, subsequent encounter for fracture with malunion +C2844481|T037|AB|S52.112P|ICD10CM|Torus fx upper end of left radius, subs for fx w malunion|Torus fx upper end of left radius, subs for fx w malunion +C2844482|T037|PT|S52.112S|ICD10CM|Torus fracture of upper end of left radius, sequela|Torus fracture of upper end of left radius, sequela +C2844482|T037|AB|S52.112S|ICD10CM|Torus fracture of upper end of left radius, sequela|Torus fracture of upper end of left radius, sequela +C2844483|T037|AB|S52.119|ICD10CM|Torus fracture of upper end of unspecified radius|Torus fracture of upper end of unspecified radius +C2844483|T037|HT|S52.119|ICD10CM|Torus fracture of upper end of unspecified radius|Torus fracture of upper end of unspecified radius +C2844484|T037|AB|S52.119A|ICD10CM|Torus fracture of upper end of unsp radius, init for clos fx|Torus fracture of upper end of unsp radius, init for clos fx +C2844484|T037|PT|S52.119A|ICD10CM|Torus fracture of upper end of unspecified radius, initial encounter for closed fracture|Torus fracture of upper end of unspecified radius, initial encounter for closed fracture +C2844485|T037|AB|S52.119D|ICD10CM|Torus fx upper end of unsp radius, subs for fx w routn heal|Torus fx upper end of unsp radius, subs for fx w routn heal +C2844486|T037|AB|S52.119G|ICD10CM|Torus fx upper end of unsp radius, subs for fx w delay heal|Torus fx upper end of unsp radius, subs for fx w delay heal +C2844487|T037|PT|S52.119K|ICD10CM|Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with nonunion|Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with nonunion +C2844487|T037|AB|S52.119K|ICD10CM|Torus fx upper end of unsp radius, subs for fx w nonunion|Torus fx upper end of unsp radius, subs for fx w nonunion +C2844488|T037|PT|S52.119P|ICD10CM|Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with malunion|Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with malunion +C2844488|T037|AB|S52.119P|ICD10CM|Torus fx upper end of unsp radius, subs for fx w malunion|Torus fx upper end of unsp radius, subs for fx w malunion +C2844489|T037|PT|S52.119S|ICD10CM|Torus fracture of upper end of unspecified radius, sequela|Torus fracture of upper end of unspecified radius, sequela +C2844489|T037|AB|S52.119S|ICD10CM|Torus fracture of upper end of unspecified radius, sequela|Torus fracture of upper end of unspecified radius, sequela +C0748237|T037|HT|S52.12|ICD10CM|Fracture of head of radius|Fracture of head of radius +C0748237|T037|AB|S52.12|ICD10CM|Fracture of head of radius|Fracture of head of radius +C2844490|T037|AB|S52.121|ICD10CM|Displaced fracture of head of right radius|Displaced fracture of head of right radius +C2844490|T037|HT|S52.121|ICD10CM|Displaced fracture of head of right radius|Displaced fracture of head of right radius +C2844491|T037|AB|S52.121A|ICD10CM|Disp fx of head of right radius, init for clos fx|Disp fx of head of right radius, init for clos fx +C2844491|T037|PT|S52.121A|ICD10CM|Displaced fracture of head of right radius, initial encounter for closed fracture|Displaced fracture of head of right radius, initial encounter for closed fracture +C2844492|T037|AB|S52.121B|ICD10CM|Disp fx of head of right radius, init for opn fx type I/2|Disp fx of head of right radius, init for opn fx type I/2 +C2844492|T037|PT|S52.121B|ICD10CM|Displaced fracture of head of right radius, initial encounter for open fracture type I or II|Displaced fracture of head of right radius, initial encounter for open fracture type I or II +C2844493|T037|AB|S52.121C|ICD10CM|Disp fx of head of right radius, init for opn fx type 3A/B/C|Disp fx of head of right radius, init for opn fx type 3A/B/C +C2844494|T037|AB|S52.121D|ICD10CM|Disp fx of head of r radius, subs for clos fx w routn heal|Disp fx of head of r radius, subs for clos fx w routn heal +C2844495|T037|AB|S52.121E|ICD10CM|Disp fx of head of r rad, 7thE|Disp fx of head of r rad, 7thE +C2844496|T037|AB|S52.121F|ICD10CM|Disp fx of head of r rad, 7thF|Disp fx of head of r rad, 7thF +C2844497|T037|AB|S52.121G|ICD10CM|Disp fx of head of r radius, subs for clos fx w delay heal|Disp fx of head of r radius, subs for clos fx w delay heal +C2844498|T037|AB|S52.121H|ICD10CM|Disp fx of head of r rad, 7thH|Disp fx of head of r rad, 7thH +C2844499|T037|AB|S52.121J|ICD10CM|Disp fx of head of r rad, 7thJ|Disp fx of head of r rad, 7thJ +C2844500|T037|AB|S52.121K|ICD10CM|Disp fx of head of right radius, subs for clos fx w nonunion|Disp fx of head of right radius, subs for clos fx w nonunion +C2844500|T037|PT|S52.121K|ICD10CM|Displaced fracture of head of right radius, subsequent encounter for closed fracture with nonunion|Displaced fracture of head of right radius, subsequent encounter for closed fracture with nonunion +C2844501|T037|AB|S52.121M|ICD10CM|Disp fx of head of r rad, 7thM|Disp fx of head of r rad, 7thM +C2844502|T037|AB|S52.121N|ICD10CM|Disp fx of head of r rad, 7thN|Disp fx of head of r rad, 7thN +C2844503|T037|AB|S52.121P|ICD10CM|Disp fx of head of right radius, subs for clos fx w malunion|Disp fx of head of right radius, subs for clos fx w malunion +C2844503|T037|PT|S52.121P|ICD10CM|Displaced fracture of head of right radius, subsequent encounter for closed fracture with malunion|Displaced fracture of head of right radius, subsequent encounter for closed fracture with malunion +C2844504|T037|AB|S52.121Q|ICD10CM|Disp fx of head of r rad, 7thQ|Disp fx of head of r rad, 7thQ +C2844505|T037|AB|S52.121R|ICD10CM|Disp fx of head of r rad, 7thR|Disp fx of head of r rad, 7thR +C2844506|T037|PT|S52.121S|ICD10CM|Displaced fracture of head of right radius, sequela|Displaced fracture of head of right radius, sequela +C2844506|T037|AB|S52.121S|ICD10CM|Displaced fracture of head of right radius, sequela|Displaced fracture of head of right radius, sequela +C2844507|T037|AB|S52.122|ICD10CM|Displaced fracture of head of left radius|Displaced fracture of head of left radius +C2844507|T037|HT|S52.122|ICD10CM|Displaced fracture of head of left radius|Displaced fracture of head of left radius +C2844508|T037|AB|S52.122A|ICD10CM|Disp fx of head of left radius, init for clos fx|Disp fx of head of left radius, init for clos fx +C2844508|T037|PT|S52.122A|ICD10CM|Displaced fracture of head of left radius, initial encounter for closed fracture|Displaced fracture of head of left radius, initial encounter for closed fracture +C2844509|T037|AB|S52.122B|ICD10CM|Disp fx of head of left radius, init for opn fx type I/2|Disp fx of head of left radius, init for opn fx type I/2 +C2844509|T037|PT|S52.122B|ICD10CM|Displaced fracture of head of left radius, initial encounter for open fracture type I or II|Displaced fracture of head of left radius, initial encounter for open fracture type I or II +C2844510|T037|AB|S52.122C|ICD10CM|Disp fx of head of left radius, init for opn fx type 3A/B/C|Disp fx of head of left radius, init for opn fx type 3A/B/C +C2844511|T037|AB|S52.122D|ICD10CM|Disp fx of head of left rad, subs for clos fx w routn heal|Disp fx of head of left rad, subs for clos fx w routn heal +C2844512|T037|AB|S52.122E|ICD10CM|Disp fx of head of l rad, 7thE|Disp fx of head of l rad, 7thE +C2844513|T037|AB|S52.122F|ICD10CM|Disp fx of head of l rad, 7thF|Disp fx of head of l rad, 7thF +C2844514|T037|AB|S52.122G|ICD10CM|Disp fx of head of left rad, subs for clos fx w delay heal|Disp fx of head of left rad, subs for clos fx w delay heal +C2844515|T037|AB|S52.122H|ICD10CM|Disp fx of head of l rad, 7thH|Disp fx of head of l rad, 7thH +C2844516|T037|AB|S52.122J|ICD10CM|Disp fx of head of l rad, 7thJ|Disp fx of head of l rad, 7thJ +C2844517|T037|AB|S52.122K|ICD10CM|Disp fx of head of left radius, subs for clos fx w nonunion|Disp fx of head of left radius, subs for clos fx w nonunion +C2844517|T037|PT|S52.122K|ICD10CM|Displaced fracture of head of left radius, subsequent encounter for closed fracture with nonunion|Displaced fracture of head of left radius, subsequent encounter for closed fracture with nonunion +C2844518|T037|AB|S52.122M|ICD10CM|Disp fx of head of l rad, 7thM|Disp fx of head of l rad, 7thM +C2844519|T037|AB|S52.122N|ICD10CM|Disp fx of head of l rad, 7thN|Disp fx of head of l rad, 7thN +C2844520|T037|AB|S52.122P|ICD10CM|Disp fx of head of left radius, subs for clos fx w malunion|Disp fx of head of left radius, subs for clos fx w malunion +C2844520|T037|PT|S52.122P|ICD10CM|Displaced fracture of head of left radius, subsequent encounter for closed fracture with malunion|Displaced fracture of head of left radius, subsequent encounter for closed fracture with malunion +C2844521|T037|AB|S52.122Q|ICD10CM|Disp fx of head of l rad, 7thQ|Disp fx of head of l rad, 7thQ +C2844522|T037|AB|S52.122R|ICD10CM|Disp fx of head of l rad, 7thR|Disp fx of head of l rad, 7thR +C2844523|T037|PT|S52.122S|ICD10CM|Displaced fracture of head of left radius, sequela|Displaced fracture of head of left radius, sequela +C2844523|T037|AB|S52.122S|ICD10CM|Displaced fracture of head of left radius, sequela|Displaced fracture of head of left radius, sequela +C2844524|T037|AB|S52.123|ICD10CM|Displaced fracture of head of unspecified radius|Displaced fracture of head of unspecified radius +C2844524|T037|HT|S52.123|ICD10CM|Displaced fracture of head of unspecified radius|Displaced fracture of head of unspecified radius +C2844525|T037|AB|S52.123A|ICD10CM|Disp fx of head of unsp radius, init for clos fx|Disp fx of head of unsp radius, init for clos fx +C2844525|T037|PT|S52.123A|ICD10CM|Displaced fracture of head of unspecified radius, initial encounter for closed fracture|Displaced fracture of head of unspecified radius, initial encounter for closed fracture +C2844526|T037|AB|S52.123B|ICD10CM|Disp fx of head of unsp radius, init for opn fx type I/2|Disp fx of head of unsp radius, init for opn fx type I/2 +C2844526|T037|PT|S52.123B|ICD10CM|Displaced fracture of head of unspecified radius, initial encounter for open fracture type I or II|Displaced fracture of head of unspecified radius, initial encounter for open fracture type I or II +C2844527|T037|AB|S52.123C|ICD10CM|Disp fx of head of unsp radius, init for opn fx type 3A/B/C|Disp fx of head of unsp radius, init for opn fx type 3A/B/C +C2844528|T037|AB|S52.123D|ICD10CM|Disp fx of head of unsp rad, subs for clos fx w routn heal|Disp fx of head of unsp rad, subs for clos fx w routn heal +C2844529|T037|AB|S52.123E|ICD10CM|Disp fx of head of unsp rad, 7thE|Disp fx of head of unsp rad, 7thE +C2844530|T037|AB|S52.123F|ICD10CM|Disp fx of head of unsp rad, 7thF|Disp fx of head of unsp rad, 7thF +C2844531|T037|AB|S52.123G|ICD10CM|Disp fx of head of unsp rad, subs for clos fx w delay heal|Disp fx of head of unsp rad, subs for clos fx w delay heal +C2844532|T037|AB|S52.123H|ICD10CM|Disp fx of head of unsp rad, 7thH|Disp fx of head of unsp rad, 7thH +C2844533|T037|AB|S52.123J|ICD10CM|Disp fx of head of unsp rad, 7thJ|Disp fx of head of unsp rad, 7thJ +C2844534|T037|AB|S52.123K|ICD10CM|Disp fx of head of unsp radius, subs for clos fx w nonunion|Disp fx of head of unsp radius, subs for clos fx w nonunion +C2844535|T037|AB|S52.123M|ICD10CM|Disp fx of head of unsp rad, 7thM|Disp fx of head of unsp rad, 7thM +C2844536|T037|AB|S52.123N|ICD10CM|Disp fx of head of unsp rad, 7thN|Disp fx of head of unsp rad, 7thN +C2844537|T037|AB|S52.123P|ICD10CM|Disp fx of head of unsp radius, subs for clos fx w malunion|Disp fx of head of unsp radius, subs for clos fx w malunion +C2844538|T037|AB|S52.123Q|ICD10CM|Disp fx of head of unsp rad, 7thQ|Disp fx of head of unsp rad, 7thQ +C2844539|T037|AB|S52.123R|ICD10CM|Disp fx of head of unsp rad, 7thR|Disp fx of head of unsp rad, 7thR +C2844540|T037|AB|S52.123S|ICD10CM|Displaced fracture of head of unspecified radius, sequela|Displaced fracture of head of unspecified radius, sequela +C2844540|T037|PT|S52.123S|ICD10CM|Displaced fracture of head of unspecified radius, sequela|Displaced fracture of head of unspecified radius, sequela +C2844541|T037|AB|S52.124|ICD10CM|Nondisplaced fracture of head of right radius|Nondisplaced fracture of head of right radius +C2844541|T037|HT|S52.124|ICD10CM|Nondisplaced fracture of head of right radius|Nondisplaced fracture of head of right radius +C2844542|T037|AB|S52.124A|ICD10CM|Nondisp fx of head of right radius, init for clos fx|Nondisp fx of head of right radius, init for clos fx +C2844542|T037|PT|S52.124A|ICD10CM|Nondisplaced fracture of head of right radius, initial encounter for closed fracture|Nondisplaced fracture of head of right radius, initial encounter for closed fracture +C2844543|T037|AB|S52.124B|ICD10CM|Nondisp fx of head of right radius, init for opn fx type I/2|Nondisp fx of head of right radius, init for opn fx type I/2 +C2844543|T037|PT|S52.124B|ICD10CM|Nondisplaced fracture of head of right radius, initial encounter for open fracture type I or II|Nondisplaced fracture of head of right radius, initial encounter for open fracture type I or II +C2844544|T037|AB|S52.124C|ICD10CM|Nondisp fx of head of r radius, init for opn fx type 3A/B/C|Nondisp fx of head of r radius, init for opn fx type 3A/B/C +C2844545|T037|AB|S52.124D|ICD10CM|Nondisp fx of head of r rad, subs for clos fx w routn heal|Nondisp fx of head of r rad, subs for clos fx w routn heal +C2844546|T037|AB|S52.124E|ICD10CM|Nondisp fx of head of r rad, 7thE|Nondisp fx of head of r rad, 7thE +C2844547|T037|AB|S52.124F|ICD10CM|Nondisp fx of head of r rad, 7thF|Nondisp fx of head of r rad, 7thF +C2844548|T037|AB|S52.124G|ICD10CM|Nondisp fx of head of r rad, subs for clos fx w delay heal|Nondisp fx of head of r rad, subs for clos fx w delay heal +C2844549|T037|AB|S52.124H|ICD10CM|Nondisp fx of head of r rad, 7thH|Nondisp fx of head of r rad, 7thH +C2844550|T037|AB|S52.124J|ICD10CM|Nondisp fx of head of r rad, 7thJ|Nondisp fx of head of r rad, 7thJ +C2844551|T037|AB|S52.124K|ICD10CM|Nondisp fx of head of r radius, subs for clos fx w nonunion|Nondisp fx of head of r radius, subs for clos fx w nonunion +C2844552|T037|AB|S52.124M|ICD10CM|Nondisp fx of head of r rad, 7thM|Nondisp fx of head of r rad, 7thM +C2844553|T037|AB|S52.124N|ICD10CM|Nondisp fx of head of r rad, 7thN|Nondisp fx of head of r rad, 7thN +C2844554|T037|AB|S52.124P|ICD10CM|Nondisp fx of head of r radius, subs for clos fx w malunion|Nondisp fx of head of r radius, subs for clos fx w malunion +C2844555|T037|AB|S52.124Q|ICD10CM|Nondisp fx of head of r rad, 7thQ|Nondisp fx of head of r rad, 7thQ +C2844556|T037|AB|S52.124R|ICD10CM|Nondisp fx of head of r rad, 7thR|Nondisp fx of head of r rad, 7thR +C2844557|T037|PT|S52.124S|ICD10CM|Nondisplaced fracture of head of right radius, sequela|Nondisplaced fracture of head of right radius, sequela +C2844557|T037|AB|S52.124S|ICD10CM|Nondisplaced fracture of head of right radius, sequela|Nondisplaced fracture of head of right radius, sequela +C2844558|T037|AB|S52.125|ICD10CM|Nondisplaced fracture of head of left radius|Nondisplaced fracture of head of left radius +C2844558|T037|HT|S52.125|ICD10CM|Nondisplaced fracture of head of left radius|Nondisplaced fracture of head of left radius +C2844559|T037|AB|S52.125A|ICD10CM|Nondisp fx of head of left radius, init for clos fx|Nondisp fx of head of left radius, init for clos fx +C2844559|T037|PT|S52.125A|ICD10CM|Nondisplaced fracture of head of left radius, initial encounter for closed fracture|Nondisplaced fracture of head of left radius, initial encounter for closed fracture +C2844560|T037|AB|S52.125B|ICD10CM|Nondisp fx of head of left radius, init for opn fx type I/2|Nondisp fx of head of left radius, init for opn fx type I/2 +C2844560|T037|PT|S52.125B|ICD10CM|Nondisplaced fracture of head of left radius, initial encounter for open fracture type I or II|Nondisplaced fracture of head of left radius, initial encounter for open fracture type I or II +C2844561|T037|AB|S52.125C|ICD10CM|Nondisp fx of head of left rad, init for opn fx type 3A/B/C|Nondisp fx of head of left rad, init for opn fx type 3A/B/C +C2844562|T037|AB|S52.125D|ICD10CM|Nondisp fx of head of l rad, subs for clos fx w routn heal|Nondisp fx of head of l rad, subs for clos fx w routn heal +C2844563|T037|AB|S52.125E|ICD10CM|Nondisp fx of head of l rad, 7thE|Nondisp fx of head of l rad, 7thE +C2844564|T037|AB|S52.125F|ICD10CM|Nondisp fx of head of l rad, 7thF|Nondisp fx of head of l rad, 7thF +C2844565|T037|AB|S52.125G|ICD10CM|Nondisp fx of head of l rad, subs for clos fx w delay heal|Nondisp fx of head of l rad, subs for clos fx w delay heal +C2844566|T037|AB|S52.125H|ICD10CM|Nondisp fx of head of l rad, 7thH|Nondisp fx of head of l rad, 7thH +C2844567|T037|AB|S52.125J|ICD10CM|Nondisp fx of head of l rad, 7thJ|Nondisp fx of head of l rad, 7thJ +C2844568|T037|AB|S52.125K|ICD10CM|Nondisp fx of head of left rad, subs for clos fx w nonunion|Nondisp fx of head of left rad, subs for clos fx w nonunion +C2844568|T037|PT|S52.125K|ICD10CM|Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with nonunion|Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with nonunion +C2844569|T037|AB|S52.125M|ICD10CM|Nondisp fx of head of l rad, 7thM|Nondisp fx of head of l rad, 7thM +C2844570|T037|AB|S52.125N|ICD10CM|Nondisp fx of head of l rad, 7thN|Nondisp fx of head of l rad, 7thN +C2844571|T037|AB|S52.125P|ICD10CM|Nondisp fx of head of left rad, subs for clos fx w malunion|Nondisp fx of head of left rad, subs for clos fx w malunion +C2844571|T037|PT|S52.125P|ICD10CM|Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with malunion|Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with malunion +C2844572|T037|AB|S52.125Q|ICD10CM|Nondisp fx of head of l rad, 7thQ|Nondisp fx of head of l rad, 7thQ +C2844573|T037|AB|S52.125R|ICD10CM|Nondisp fx of head of l rad, 7thR|Nondisp fx of head of l rad, 7thR +C2844574|T037|PT|S52.125S|ICD10CM|Nondisplaced fracture of head of left radius, sequela|Nondisplaced fracture of head of left radius, sequela +C2844574|T037|AB|S52.125S|ICD10CM|Nondisplaced fracture of head of left radius, sequela|Nondisplaced fracture of head of left radius, sequela +C2844575|T037|AB|S52.126|ICD10CM|Nondisplaced fracture of head of unspecified radius|Nondisplaced fracture of head of unspecified radius +C2844575|T037|HT|S52.126|ICD10CM|Nondisplaced fracture of head of unspecified radius|Nondisplaced fracture of head of unspecified radius +C2844576|T037|AB|S52.126A|ICD10CM|Nondisp fx of head of unsp radius, init for clos fx|Nondisp fx of head of unsp radius, init for clos fx +C2844576|T037|PT|S52.126A|ICD10CM|Nondisplaced fracture of head of unspecified radius, initial encounter for closed fracture|Nondisplaced fracture of head of unspecified radius, initial encounter for closed fracture +C2844577|T037|AB|S52.126B|ICD10CM|Nondisp fx of head of unsp radius, init for opn fx type I/2|Nondisp fx of head of unsp radius, init for opn fx type I/2 +C2844578|T037|AB|S52.126C|ICD10CM|Nondisp fx of head of unsp rad, init for opn fx type 3A/B/C|Nondisp fx of head of unsp rad, init for opn fx type 3A/B/C +C2844579|T037|AB|S52.126D|ICD10CM|Nondisp fx of head of unsp rad, 7thD|Nondisp fx of head of unsp rad, 7thD +C2844580|T037|AB|S52.126E|ICD10CM|Nondisp fx of head of unsp rad, 7thE|Nondisp fx of head of unsp rad, 7thE +C2844581|T037|AB|S52.126F|ICD10CM|Nondisp fx of head of unsp rad, 7thF|Nondisp fx of head of unsp rad, 7thF +C2844582|T037|AB|S52.126G|ICD10CM|Nondisp fx of head of unsp rad, 7thG|Nondisp fx of head of unsp rad, 7thG +C2844583|T037|AB|S52.126H|ICD10CM|Nondisp fx of head of unsp rad, 7thH|Nondisp fx of head of unsp rad, 7thH +C2844584|T037|AB|S52.126J|ICD10CM|Nondisp fx of head of unsp rad, 7thJ|Nondisp fx of head of unsp rad, 7thJ +C2844585|T037|AB|S52.126K|ICD10CM|Nondisp fx of head of unsp rad, subs for clos fx w nonunion|Nondisp fx of head of unsp rad, subs for clos fx w nonunion +C2844586|T037|AB|S52.126M|ICD10CM|Nondisp fx of head of unsp rad, 7thM|Nondisp fx of head of unsp rad, 7thM +C2844587|T037|AB|S52.126N|ICD10CM|Nondisp fx of head of unsp rad, 7thN|Nondisp fx of head of unsp rad, 7thN +C2844588|T037|AB|S52.126P|ICD10CM|Nondisp fx of head of unsp rad, subs for clos fx w malunion|Nondisp fx of head of unsp rad, subs for clos fx w malunion +C2844589|T037|AB|S52.126Q|ICD10CM|Nondisp fx of head of unsp rad, 7thQ|Nondisp fx of head of unsp rad, 7thQ +C2844590|T037|AB|S52.126R|ICD10CM|Nondisp fx of head of unsp rad, 7thR|Nondisp fx of head of unsp rad, 7thR +C2844591|T037|AB|S52.126S|ICD10CM|Nondisplaced fracture of head of unspecified radius, sequela|Nondisplaced fracture of head of unspecified radius, sequela +C2844591|T037|PT|S52.126S|ICD10CM|Nondisplaced fracture of head of unspecified radius, sequela|Nondisplaced fracture of head of unspecified radius, sequela +C0840608|T037|HT|S52.13|ICD10CM|Fracture of neck of radius|Fracture of neck of radius +C0840608|T037|AB|S52.13|ICD10CM|Fracture of neck of radius|Fracture of neck of radius +C2844592|T037|AB|S52.131|ICD10CM|Displaced fracture of neck of right radius|Displaced fracture of neck of right radius +C2844592|T037|HT|S52.131|ICD10CM|Displaced fracture of neck of right radius|Displaced fracture of neck of right radius +C2844593|T037|AB|S52.131A|ICD10CM|Disp fx of neck of right radius, init for clos fx|Disp fx of neck of right radius, init for clos fx +C2844593|T037|PT|S52.131A|ICD10CM|Displaced fracture of neck of right radius, initial encounter for closed fracture|Displaced fracture of neck of right radius, initial encounter for closed fracture +C2844594|T037|AB|S52.131B|ICD10CM|Disp fx of neck of right radius, init for opn fx type I/2|Disp fx of neck of right radius, init for opn fx type I/2 +C2844594|T037|PT|S52.131B|ICD10CM|Displaced fracture of neck of right radius, initial encounter for open fracture type I or II|Displaced fracture of neck of right radius, initial encounter for open fracture type I or II +C2844595|T037|AB|S52.131C|ICD10CM|Disp fx of neck of right radius, init for opn fx type 3A/B/C|Disp fx of neck of right radius, init for opn fx type 3A/B/C +C2844596|T037|AB|S52.131D|ICD10CM|Disp fx of neck of r radius, subs for clos fx w routn heal|Disp fx of neck of r radius, subs for clos fx w routn heal +C2844597|T037|AB|S52.131E|ICD10CM|Disp fx of nk of r rad, 7thE|Disp fx of nk of r rad, 7thE +C2844598|T037|AB|S52.131F|ICD10CM|Disp fx of nk of r rad, 7thF|Disp fx of nk of r rad, 7thF +C2844599|T037|AB|S52.131G|ICD10CM|Disp fx of neck of r radius, subs for clos fx w delay heal|Disp fx of neck of r radius, subs for clos fx w delay heal +C2844600|T037|AB|S52.131H|ICD10CM|Disp fx of nk of r rad, 7thH|Disp fx of nk of r rad, 7thH +C2844601|T037|AB|S52.131J|ICD10CM|Disp fx of nk of r rad, 7thJ|Disp fx of nk of r rad, 7thJ +C2844602|T037|AB|S52.131K|ICD10CM|Disp fx of neck of right radius, subs for clos fx w nonunion|Disp fx of neck of right radius, subs for clos fx w nonunion +C2844602|T037|PT|S52.131K|ICD10CM|Displaced fracture of neck of right radius, subsequent encounter for closed fracture with nonunion|Displaced fracture of neck of right radius, subsequent encounter for closed fracture with nonunion +C2844603|T037|AB|S52.131M|ICD10CM|Disp fx of nk of r rad, subs for opn fx type I/2 w nonunion|Disp fx of nk of r rad, subs for opn fx type I/2 w nonunion +C2844604|T037|AB|S52.131N|ICD10CM|Disp fx of nk of r rad, 7thN|Disp fx of nk of r rad, 7thN +C2844605|T037|AB|S52.131P|ICD10CM|Disp fx of neck of right radius, subs for clos fx w malunion|Disp fx of neck of right radius, subs for clos fx w malunion +C2844605|T037|PT|S52.131P|ICD10CM|Displaced fracture of neck of right radius, subsequent encounter for closed fracture with malunion|Displaced fracture of neck of right radius, subsequent encounter for closed fracture with malunion +C2844606|T037|AB|S52.131Q|ICD10CM|Disp fx of nk of r rad, subs for opn fx type I/2 w malunion|Disp fx of nk of r rad, subs for opn fx type I/2 w malunion +C2844607|T037|AB|S52.131R|ICD10CM|Disp fx of nk of r rad, 7thR|Disp fx of nk of r rad, 7thR +C2844608|T037|PT|S52.131S|ICD10CM|Displaced fracture of neck of right radius, sequela|Displaced fracture of neck of right radius, sequela +C2844608|T037|AB|S52.131S|ICD10CM|Displaced fracture of neck of right radius, sequela|Displaced fracture of neck of right radius, sequela +C2844609|T037|AB|S52.132|ICD10CM|Displaced fracture of neck of left radius|Displaced fracture of neck of left radius +C2844609|T037|HT|S52.132|ICD10CM|Displaced fracture of neck of left radius|Displaced fracture of neck of left radius +C2844610|T037|AB|S52.132A|ICD10CM|Disp fx of neck of left radius, init for clos fx|Disp fx of neck of left radius, init for clos fx +C2844610|T037|PT|S52.132A|ICD10CM|Displaced fracture of neck of left radius, initial encounter for closed fracture|Displaced fracture of neck of left radius, initial encounter for closed fracture +C2844611|T037|AB|S52.132B|ICD10CM|Disp fx of neck of left radius, init for opn fx type I/2|Disp fx of neck of left radius, init for opn fx type I/2 +C2844611|T037|PT|S52.132B|ICD10CM|Displaced fracture of neck of left radius, initial encounter for open fracture type I or II|Displaced fracture of neck of left radius, initial encounter for open fracture type I or II +C2844612|T037|AB|S52.132C|ICD10CM|Disp fx of neck of left radius, init for opn fx type 3A/B/C|Disp fx of neck of left radius, init for opn fx type 3A/B/C +C2844613|T037|AB|S52.132D|ICD10CM|Disp fx of neck of left rad, subs for clos fx w routn heal|Disp fx of neck of left rad, subs for clos fx w routn heal +C2844614|T037|AB|S52.132E|ICD10CM|Disp fx of nk of l rad, 7thE|Disp fx of nk of l rad, 7thE +C2844615|T037|AB|S52.132F|ICD10CM|Disp fx of nk of l rad, 7thF|Disp fx of nk of l rad, 7thF +C2844616|T037|AB|S52.132G|ICD10CM|Disp fx of neck of left rad, subs for clos fx w delay heal|Disp fx of neck of left rad, subs for clos fx w delay heal +C2844617|T037|AB|S52.132H|ICD10CM|Disp fx of nk of l rad, 7thH|Disp fx of nk of l rad, 7thH +C2844618|T037|AB|S52.132J|ICD10CM|Disp fx of nk of l rad, 7thJ|Disp fx of nk of l rad, 7thJ +C2844619|T037|AB|S52.132K|ICD10CM|Disp fx of neck of left radius, subs for clos fx w nonunion|Disp fx of neck of left radius, subs for clos fx w nonunion +C2844619|T037|PT|S52.132K|ICD10CM|Displaced fracture of neck of left radius, subsequent encounter for closed fracture with nonunion|Displaced fracture of neck of left radius, subsequent encounter for closed fracture with nonunion +C2844620|T037|AB|S52.132M|ICD10CM|Disp fx of nk of l rad, subs for opn fx type I/2 w nonunion|Disp fx of nk of l rad, subs for opn fx type I/2 w nonunion +C2844621|T037|AB|S52.132N|ICD10CM|Disp fx of nk of l rad, 7thN|Disp fx of nk of l rad, 7thN +C2844622|T037|AB|S52.132P|ICD10CM|Disp fx of neck of left radius, subs for clos fx w malunion|Disp fx of neck of left radius, subs for clos fx w malunion +C2844622|T037|PT|S52.132P|ICD10CM|Displaced fracture of neck of left radius, subsequent encounter for closed fracture with malunion|Displaced fracture of neck of left radius, subsequent encounter for closed fracture with malunion +C2844623|T037|AB|S52.132Q|ICD10CM|Disp fx of nk of l rad, subs for opn fx type I/2 w malunion|Disp fx of nk of l rad, subs for opn fx type I/2 w malunion +C2844624|T037|AB|S52.132R|ICD10CM|Disp fx of nk of l rad, 7thR|Disp fx of nk of l rad, 7thR +C2844625|T037|PT|S52.132S|ICD10CM|Displaced fracture of neck of left radius, sequela|Displaced fracture of neck of left radius, sequela +C2844625|T037|AB|S52.132S|ICD10CM|Displaced fracture of neck of left radius, sequela|Displaced fracture of neck of left radius, sequela +C2844626|T037|AB|S52.133|ICD10CM|Displaced fracture of neck of unspecified radius|Displaced fracture of neck of unspecified radius +C2844626|T037|HT|S52.133|ICD10CM|Displaced fracture of neck of unspecified radius|Displaced fracture of neck of unspecified radius +C2844627|T037|AB|S52.133A|ICD10CM|Disp fx of neck of unsp radius, init for clos fx|Disp fx of neck of unsp radius, init for clos fx +C2844627|T037|PT|S52.133A|ICD10CM|Displaced fracture of neck of unspecified radius, initial encounter for closed fracture|Displaced fracture of neck of unspecified radius, initial encounter for closed fracture +C2844628|T037|AB|S52.133B|ICD10CM|Disp fx of neck of unsp radius, init for opn fx type I/2|Disp fx of neck of unsp radius, init for opn fx type I/2 +C2844628|T037|PT|S52.133B|ICD10CM|Displaced fracture of neck of unspecified radius, initial encounter for open fracture type I or II|Displaced fracture of neck of unspecified radius, initial encounter for open fracture type I or II +C2844629|T037|AB|S52.133C|ICD10CM|Disp fx of neck of unsp radius, init for opn fx type 3A/B/C|Disp fx of neck of unsp radius, init for opn fx type 3A/B/C +C2844630|T037|AB|S52.133D|ICD10CM|Disp fx of neck of unsp rad, subs for clos fx w routn heal|Disp fx of neck of unsp rad, subs for clos fx w routn heal +C2844631|T037|AB|S52.133E|ICD10CM|Disp fx of nk of unsp rad, 7thE|Disp fx of nk of unsp rad, 7thE +C2844632|T037|AB|S52.133F|ICD10CM|Disp fx of nk of unsp rad, 7thF|Disp fx of nk of unsp rad, 7thF +C2844633|T037|AB|S52.133G|ICD10CM|Disp fx of neck of unsp rad, subs for clos fx w delay heal|Disp fx of neck of unsp rad, subs for clos fx w delay heal +C2844634|T037|AB|S52.133H|ICD10CM|Disp fx of nk of unsp rad, 7thH|Disp fx of nk of unsp rad, 7thH +C2844635|T037|AB|S52.133J|ICD10CM|Disp fx of nk of unsp rad, 7thJ|Disp fx of nk of unsp rad, 7thJ +C2844636|T037|AB|S52.133K|ICD10CM|Disp fx of neck of unsp radius, subs for clos fx w nonunion|Disp fx of neck of unsp radius, subs for clos fx w nonunion +C2844637|T037|AB|S52.133M|ICD10CM|Disp fx of nk of unsp rad, 7thM|Disp fx of nk of unsp rad, 7thM +C2844638|T037|AB|S52.133N|ICD10CM|Disp fx of nk of unsp rad, 7thN|Disp fx of nk of unsp rad, 7thN +C2844639|T037|AB|S52.133P|ICD10CM|Disp fx of neck of unsp radius, subs for clos fx w malunion|Disp fx of neck of unsp radius, subs for clos fx w malunion +C2844640|T037|AB|S52.133Q|ICD10CM|Disp fx of nk of unsp rad, 7thQ|Disp fx of nk of unsp rad, 7thQ +C2844641|T037|AB|S52.133R|ICD10CM|Disp fx of nk of unsp rad, 7thR|Disp fx of nk of unsp rad, 7thR +C2844642|T037|AB|S52.133S|ICD10CM|Displaced fracture of neck of unspecified radius, sequela|Displaced fracture of neck of unspecified radius, sequela +C2844642|T037|PT|S52.133S|ICD10CM|Displaced fracture of neck of unspecified radius, sequela|Displaced fracture of neck of unspecified radius, sequela +C2844643|T037|AB|S52.134|ICD10CM|Nondisplaced fracture of neck of right radius|Nondisplaced fracture of neck of right radius +C2844643|T037|HT|S52.134|ICD10CM|Nondisplaced fracture of neck of right radius|Nondisplaced fracture of neck of right radius +C2844644|T037|AB|S52.134A|ICD10CM|Nondisp fx of neck of right radius, init for clos fx|Nondisp fx of neck of right radius, init for clos fx +C2844644|T037|PT|S52.134A|ICD10CM|Nondisplaced fracture of neck of right radius, initial encounter for closed fracture|Nondisplaced fracture of neck of right radius, initial encounter for closed fracture +C2844645|T037|AB|S52.134B|ICD10CM|Nondisp fx of neck of right radius, init for opn fx type I/2|Nondisp fx of neck of right radius, init for opn fx type I/2 +C2844645|T037|PT|S52.134B|ICD10CM|Nondisplaced fracture of neck of right radius, initial encounter for open fracture type I or II|Nondisplaced fracture of neck of right radius, initial encounter for open fracture type I or II +C2844646|T037|AB|S52.134C|ICD10CM|Nondisp fx of neck of r radius, init for opn fx type 3A/B/C|Nondisp fx of neck of r radius, init for opn fx type 3A/B/C +C2844647|T037|AB|S52.134D|ICD10CM|Nondisp fx of neck of r rad, subs for clos fx w routn heal|Nondisp fx of neck of r rad, subs for clos fx w routn heal +C2844648|T037|AB|S52.134E|ICD10CM|Nondisp fx of nk of r rad, 7thE|Nondisp fx of nk of r rad, 7thE +C2844649|T037|AB|S52.134F|ICD10CM|Nondisp fx of nk of r rad, 7thF|Nondisp fx of nk of r rad, 7thF +C2844650|T037|AB|S52.134G|ICD10CM|Nondisp fx of neck of r rad, subs for clos fx w delay heal|Nondisp fx of neck of r rad, subs for clos fx w delay heal +C2844651|T037|AB|S52.134H|ICD10CM|Nondisp fx of nk of r rad, 7thH|Nondisp fx of nk of r rad, 7thH +C2844652|T037|AB|S52.134J|ICD10CM|Nondisp fx of nk of r rad, 7thJ|Nondisp fx of nk of r rad, 7thJ +C2844653|T037|AB|S52.134K|ICD10CM|Nondisp fx of neck of r radius, subs for clos fx w nonunion|Nondisp fx of neck of r radius, subs for clos fx w nonunion +C2844654|T037|AB|S52.134M|ICD10CM|Nondisp fx of nk of r rad, 7thM|Nondisp fx of nk of r rad, 7thM +C2844655|T037|AB|S52.134N|ICD10CM|Nondisp fx of nk of r rad, 7thN|Nondisp fx of nk of r rad, 7thN +C2844656|T037|AB|S52.134P|ICD10CM|Nondisp fx of neck of r radius, subs for clos fx w malunion|Nondisp fx of neck of r radius, subs for clos fx w malunion +C2844657|T037|AB|S52.134Q|ICD10CM|Nondisp fx of nk of r rad, 7thQ|Nondisp fx of nk of r rad, 7thQ +C2844658|T037|AB|S52.134R|ICD10CM|Nondisp fx of nk of r rad, 7thR|Nondisp fx of nk of r rad, 7thR +C2844659|T037|PT|S52.134S|ICD10CM|Nondisplaced fracture of neck of right radius, sequela|Nondisplaced fracture of neck of right radius, sequela +C2844659|T037|AB|S52.134S|ICD10CM|Nondisplaced fracture of neck of right radius, sequela|Nondisplaced fracture of neck of right radius, sequela +C2844660|T037|AB|S52.135|ICD10CM|Nondisplaced fracture of neck of left radius|Nondisplaced fracture of neck of left radius +C2844660|T037|HT|S52.135|ICD10CM|Nondisplaced fracture of neck of left radius|Nondisplaced fracture of neck of left radius +C2844661|T037|AB|S52.135A|ICD10CM|Nondisp fx of neck of left radius, init for clos fx|Nondisp fx of neck of left radius, init for clos fx +C2844661|T037|PT|S52.135A|ICD10CM|Nondisplaced fracture of neck of left radius, initial encounter for closed fracture|Nondisplaced fracture of neck of left radius, initial encounter for closed fracture +C2844662|T037|AB|S52.135B|ICD10CM|Nondisp fx of neck of left radius, init for opn fx type I/2|Nondisp fx of neck of left radius, init for opn fx type I/2 +C2844662|T037|PT|S52.135B|ICD10CM|Nondisplaced fracture of neck of left radius, initial encounter for open fracture type I or II|Nondisplaced fracture of neck of left radius, initial encounter for open fracture type I or II +C2844663|T037|AB|S52.135C|ICD10CM|Nondisp fx of neck of left rad, init for opn fx type 3A/B/C|Nondisp fx of neck of left rad, init for opn fx type 3A/B/C +C2844664|T037|AB|S52.135D|ICD10CM|Nondisp fx of neck of l rad, subs for clos fx w routn heal|Nondisp fx of neck of l rad, subs for clos fx w routn heal +C2844665|T037|AB|S52.135E|ICD10CM|Nondisp fx of nk of l rad, 7thE|Nondisp fx of nk of l rad, 7thE +C2844666|T037|AB|S52.135F|ICD10CM|Nondisp fx of nk of l rad, 7thF|Nondisp fx of nk of l rad, 7thF +C2844667|T037|AB|S52.135G|ICD10CM|Nondisp fx of neck of l rad, subs for clos fx w delay heal|Nondisp fx of neck of l rad, subs for clos fx w delay heal +C2844668|T037|AB|S52.135H|ICD10CM|Nondisp fx of nk of l rad, 7thH|Nondisp fx of nk of l rad, 7thH +C2844669|T037|AB|S52.135J|ICD10CM|Nondisp fx of nk of l rad, 7thJ|Nondisp fx of nk of l rad, 7thJ +C2844670|T037|AB|S52.135K|ICD10CM|Nondisp fx of neck of left rad, subs for clos fx w nonunion|Nondisp fx of neck of left rad, subs for clos fx w nonunion +C2844670|T037|PT|S52.135K|ICD10CM|Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with nonunion|Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with nonunion +C2844671|T037|AB|S52.135M|ICD10CM|Nondisp fx of nk of l rad, 7thM|Nondisp fx of nk of l rad, 7thM +C2844672|T037|AB|S52.135N|ICD10CM|Nondisp fx of nk of l rad, 7thN|Nondisp fx of nk of l rad, 7thN +C2844673|T037|AB|S52.135P|ICD10CM|Nondisp fx of neck of left rad, subs for clos fx w malunion|Nondisp fx of neck of left rad, subs for clos fx w malunion +C2844673|T037|PT|S52.135P|ICD10CM|Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with malunion|Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with malunion +C2844674|T037|AB|S52.135Q|ICD10CM|Nondisp fx of nk of l rad, 7thQ|Nondisp fx of nk of l rad, 7thQ +C2844675|T037|AB|S52.135R|ICD10CM|Nondisp fx of nk of l rad, 7thR|Nondisp fx of nk of l rad, 7thR +C2844676|T037|PT|S52.135S|ICD10CM|Nondisplaced fracture of neck of left radius, sequela|Nondisplaced fracture of neck of left radius, sequela +C2844676|T037|AB|S52.135S|ICD10CM|Nondisplaced fracture of neck of left radius, sequela|Nondisplaced fracture of neck of left radius, sequela +C2844677|T037|AB|S52.136|ICD10CM|Nondisplaced fracture of neck of unspecified radius|Nondisplaced fracture of neck of unspecified radius +C2844677|T037|HT|S52.136|ICD10CM|Nondisplaced fracture of neck of unspecified radius|Nondisplaced fracture of neck of unspecified radius +C2844678|T037|AB|S52.136A|ICD10CM|Nondisp fx of neck of unsp radius, init for clos fx|Nondisp fx of neck of unsp radius, init for clos fx +C2844678|T037|PT|S52.136A|ICD10CM|Nondisplaced fracture of neck of unspecified radius, initial encounter for closed fracture|Nondisplaced fracture of neck of unspecified radius, initial encounter for closed fracture +C2844679|T037|AB|S52.136B|ICD10CM|Nondisp fx of neck of unsp radius, init for opn fx type I/2|Nondisp fx of neck of unsp radius, init for opn fx type I/2 +C2844680|T037|AB|S52.136C|ICD10CM|Nondisp fx of neck of unsp rad, init for opn fx type 3A/B/C|Nondisp fx of neck of unsp rad, init for opn fx type 3A/B/C +C2844681|T037|AB|S52.136D|ICD10CM|Nondisp fx of nk of unsp rad, subs for clos fx w routn heal|Nondisp fx of nk of unsp rad, subs for clos fx w routn heal +C2844682|T037|AB|S52.136E|ICD10CM|Nondisp fx of nk of unsp rad, 7thE|Nondisp fx of nk of unsp rad, 7thE +C2844683|T037|AB|S52.136F|ICD10CM|Nondisp fx of nk of unsp rad, 7thF|Nondisp fx of nk of unsp rad, 7thF +C2844684|T037|AB|S52.136G|ICD10CM|Nondisp fx of nk of unsp rad, subs for clos fx w delay heal|Nondisp fx of nk of unsp rad, subs for clos fx w delay heal +C2844685|T037|AB|S52.136H|ICD10CM|Nondisp fx of nk of unsp rad, 7thH|Nondisp fx of nk of unsp rad, 7thH +C2844686|T037|AB|S52.136J|ICD10CM|Nondisp fx of nk of unsp rad, 7thJ|Nondisp fx of nk of unsp rad, 7thJ +C2844687|T037|AB|S52.136K|ICD10CM|Nondisp fx of neck of unsp rad, subs for clos fx w nonunion|Nondisp fx of neck of unsp rad, subs for clos fx w nonunion +C2844688|T037|AB|S52.136M|ICD10CM|Nondisp fx of nk of unsp rad, 7thM|Nondisp fx of nk of unsp rad, 7thM +C2844689|T037|AB|S52.136N|ICD10CM|Nondisp fx of nk of unsp rad, 7thN|Nondisp fx of nk of unsp rad, 7thN +C2844690|T037|AB|S52.136P|ICD10CM|Nondisp fx of neck of unsp rad, subs for clos fx w malunion|Nondisp fx of neck of unsp rad, subs for clos fx w malunion +C2844691|T037|AB|S52.136Q|ICD10CM|Nondisp fx of nk of unsp rad, 7thQ|Nondisp fx of nk of unsp rad, 7thQ +C2844692|T037|AB|S52.136R|ICD10CM|Nondisp fx of nk of unsp rad, 7thR|Nondisp fx of nk of unsp rad, 7thR +C2844693|T037|AB|S52.136S|ICD10CM|Nondisplaced fracture of neck of unspecified radius, sequela|Nondisplaced fracture of neck of unspecified radius, sequela +C2844693|T037|PT|S52.136S|ICD10CM|Nondisplaced fracture of neck of unspecified radius, sequela|Nondisplaced fracture of neck of unspecified radius, sequela +C2844694|T037|AB|S52.18|ICD10CM|Other fracture of upper end of radius|Other fracture of upper end of radius +C2844694|T037|HT|S52.18|ICD10CM|Other fracture of upper end of radius|Other fracture of upper end of radius +C2844695|T037|AB|S52.181|ICD10CM|Other fracture of upper end of right radius|Other fracture of upper end of right radius +C2844695|T037|HT|S52.181|ICD10CM|Other fracture of upper end of right radius|Other fracture of upper end of right radius +C2844696|T037|AB|S52.181A|ICD10CM|Oth fracture of upper end of right radius, init for clos fx|Oth fracture of upper end of right radius, init for clos fx +C2844696|T037|PT|S52.181A|ICD10CM|Other fracture of upper end of right radius, initial encounter for closed fracture|Other fracture of upper end of right radius, initial encounter for closed fracture +C2844697|T037|AB|S52.181B|ICD10CM|Oth fx upper end of r radius, init for opn fx type I/2|Oth fx upper end of r radius, init for opn fx type I/2 +C2844697|T037|PT|S52.181B|ICD10CM|Other fracture of upper end of right radius, initial encounter for open fracture type I or II|Other fracture of upper end of right radius, initial encounter for open fracture type I or II +C2844698|T037|AB|S52.181C|ICD10CM|Oth fx upper end of r radius, init for opn fx type 3A/B/C|Oth fx upper end of r radius, init for opn fx type 3A/B/C +C2844699|T037|AB|S52.181D|ICD10CM|Oth fx upper end of r radius, subs for clos fx w routn heal|Oth fx upper end of r radius, subs for clos fx w routn heal +C2844700|T037|AB|S52.181E|ICD10CM|Oth fx upr end r rad, subs for opn fx type I/2 w routn heal|Oth fx upr end r rad, subs for opn fx type I/2 w routn heal +C2844701|T037|AB|S52.181F|ICD10CM|Oth fx upr end r rad, 7thF|Oth fx upr end r rad, 7thF +C2844702|T037|AB|S52.181G|ICD10CM|Oth fx upper end of r radius, subs for clos fx w delay heal|Oth fx upper end of r radius, subs for clos fx w delay heal +C2844703|T037|AB|S52.181H|ICD10CM|Oth fx upr end r rad, subs for opn fx type I/2 w delay heal|Oth fx upr end r rad, subs for opn fx type I/2 w delay heal +C2844704|T037|AB|S52.181J|ICD10CM|Oth fx upr end r rad, 7thJ|Oth fx upr end r rad, 7thJ +C2844705|T037|AB|S52.181K|ICD10CM|Oth fx upper end of r radius, subs for clos fx w nonunion|Oth fx upper end of r radius, subs for clos fx w nonunion +C2844705|T037|PT|S52.181K|ICD10CM|Other fracture of upper end of right radius, subsequent encounter for closed fracture with nonunion|Other fracture of upper end of right radius, subsequent encounter for closed fracture with nonunion +C2844706|T037|AB|S52.181M|ICD10CM|Oth fx upper end r rad, subs for opn fx type I/2 w nonunion|Oth fx upper end r rad, subs for opn fx type I/2 w nonunion +C2844707|T037|AB|S52.181N|ICD10CM|Oth fx upr end r rad, subs for opn fx type 3A/B/C w nonunion|Oth fx upr end r rad, subs for opn fx type 3A/B/C w nonunion +C2844708|T037|AB|S52.181P|ICD10CM|Oth fx upper end of r radius, subs for clos fx w malunion|Oth fx upper end of r radius, subs for clos fx w malunion +C2844708|T037|PT|S52.181P|ICD10CM|Other fracture of upper end of right radius, subsequent encounter for closed fracture with malunion|Other fracture of upper end of right radius, subsequent encounter for closed fracture with malunion +C2844709|T037|AB|S52.181Q|ICD10CM|Oth fx upper end r rad, subs for opn fx type I/2 w malunion|Oth fx upper end r rad, subs for opn fx type I/2 w malunion +C2844710|T037|AB|S52.181R|ICD10CM|Oth fx upr end r rad, subs for opn fx type 3A/B/C w malunion|Oth fx upr end r rad, subs for opn fx type 3A/B/C w malunion +C2844711|T037|PT|S52.181S|ICD10CM|Other fracture of upper end of right radius, sequela|Other fracture of upper end of right radius, sequela +C2844711|T037|AB|S52.181S|ICD10CM|Other fracture of upper end of right radius, sequela|Other fracture of upper end of right radius, sequela +C2844712|T037|AB|S52.182|ICD10CM|Other fracture of upper end of left radius|Other fracture of upper end of left radius +C2844712|T037|HT|S52.182|ICD10CM|Other fracture of upper end of left radius|Other fracture of upper end of left radius +C2844713|T037|AB|S52.182A|ICD10CM|Oth fracture of upper end of left radius, init for clos fx|Oth fracture of upper end of left radius, init for clos fx +C2844713|T037|PT|S52.182A|ICD10CM|Other fracture of upper end of left radius, initial encounter for closed fracture|Other fracture of upper end of left radius, initial encounter for closed fracture +C2844714|T037|AB|S52.182B|ICD10CM|Oth fx upper end of left radius, init for opn fx type I/2|Oth fx upper end of left radius, init for opn fx type I/2 +C2844714|T037|PT|S52.182B|ICD10CM|Other fracture of upper end of left radius, initial encounter for open fracture type I or II|Other fracture of upper end of left radius, initial encounter for open fracture type I or II +C2844715|T037|AB|S52.182C|ICD10CM|Oth fx upper end of left radius, init for opn fx type 3A/B/C|Oth fx upper end of left radius, init for opn fx type 3A/B/C +C2844716|T037|AB|S52.182D|ICD10CM|Oth fx upper end left radius, subs for clos fx w routn heal|Oth fx upper end left radius, subs for clos fx w routn heal +C2844717|T037|AB|S52.182E|ICD10CM|Oth fx upr end l rad, subs for opn fx type I/2 w routn heal|Oth fx upr end l rad, subs for opn fx type I/2 w routn heal +C2844718|T037|AB|S52.182F|ICD10CM|Oth fx upr end l rad, 7thF|Oth fx upr end l rad, 7thF +C2844719|T037|AB|S52.182G|ICD10CM|Oth fx upper end left radius, subs for clos fx w delay heal|Oth fx upper end left radius, subs for clos fx w delay heal +C2844720|T037|AB|S52.182H|ICD10CM|Oth fx upr end l rad, subs for opn fx type I/2 w delay heal|Oth fx upr end l rad, subs for opn fx type I/2 w delay heal +C2844721|T037|AB|S52.182J|ICD10CM|Oth fx upr end l rad, 7thJ|Oth fx upr end l rad, 7thJ +C2844722|T037|AB|S52.182K|ICD10CM|Oth fx upper end of left radius, subs for clos fx w nonunion|Oth fx upper end of left radius, subs for clos fx w nonunion +C2844722|T037|PT|S52.182K|ICD10CM|Other fracture of upper end of left radius, subsequent encounter for closed fracture with nonunion|Other fracture of upper end of left radius, subsequent encounter for closed fracture with nonunion +C2844723|T037|AB|S52.182M|ICD10CM|Oth fx upr end left rad, subs for opn fx type I/2 w nonunion|Oth fx upr end left rad, subs for opn fx type I/2 w nonunion +C2844724|T037|AB|S52.182N|ICD10CM|Oth fx upr end l rad, subs for opn fx type 3A/B/C w nonunion|Oth fx upr end l rad, subs for opn fx type 3A/B/C w nonunion +C2844725|T037|AB|S52.182P|ICD10CM|Oth fx upper end of left radius, subs for clos fx w malunion|Oth fx upper end of left radius, subs for clos fx w malunion +C2844725|T037|PT|S52.182P|ICD10CM|Other fracture of upper end of left radius, subsequent encounter for closed fracture with malunion|Other fracture of upper end of left radius, subsequent encounter for closed fracture with malunion +C2844726|T037|AB|S52.182Q|ICD10CM|Oth fx upr end left rad, subs for opn fx type I/2 w malunion|Oth fx upr end left rad, subs for opn fx type I/2 w malunion +C2844727|T037|AB|S52.182R|ICD10CM|Oth fx upr end l rad, subs for opn fx type 3A/B/C w malunion|Oth fx upr end l rad, subs for opn fx type 3A/B/C w malunion +C2844728|T037|PT|S52.182S|ICD10CM|Other fracture of upper end of left radius, sequela|Other fracture of upper end of left radius, sequela +C2844728|T037|AB|S52.182S|ICD10CM|Other fracture of upper end of left radius, sequela|Other fracture of upper end of left radius, sequela +C2844729|T037|AB|S52.189|ICD10CM|Other fracture of upper end of unspecified radius|Other fracture of upper end of unspecified radius +C2844729|T037|HT|S52.189|ICD10CM|Other fracture of upper end of unspecified radius|Other fracture of upper end of unspecified radius +C2844730|T037|AB|S52.189A|ICD10CM|Oth fracture of upper end of unsp radius, init for clos fx|Oth fracture of upper end of unsp radius, init for clos fx +C2844730|T037|PT|S52.189A|ICD10CM|Other fracture of upper end of unspecified radius, initial encounter for closed fracture|Other fracture of upper end of unspecified radius, initial encounter for closed fracture +C2844731|T037|AB|S52.189B|ICD10CM|Oth fx upper end of unsp radius, init for opn fx type I/2|Oth fx upper end of unsp radius, init for opn fx type I/2 +C2844731|T037|PT|S52.189B|ICD10CM|Other fracture of upper end of unspecified radius, initial encounter for open fracture type I or II|Other fracture of upper end of unspecified radius, initial encounter for open fracture type I or II +C2844732|T037|AB|S52.189C|ICD10CM|Oth fx upper end of unsp radius, init for opn fx type 3A/B/C|Oth fx upper end of unsp radius, init for opn fx type 3A/B/C +C2844733|T037|AB|S52.189D|ICD10CM|Oth fx upper end unsp radius, subs for clos fx w routn heal|Oth fx upper end unsp radius, subs for clos fx w routn heal +C2844734|T037|AB|S52.189E|ICD10CM|Oth fx upr end unsp rad, 7thE|Oth fx upr end unsp rad, 7thE +C2844735|T037|AB|S52.189F|ICD10CM|Oth fx upr end unsp rad, 7thF|Oth fx upr end unsp rad, 7thF +C2844736|T037|AB|S52.189G|ICD10CM|Oth fx upper end unsp radius, subs for clos fx w delay heal|Oth fx upper end unsp radius, subs for clos fx w delay heal +C2844737|T037|AB|S52.189H|ICD10CM|Oth fx upr end unsp rad, 7thH|Oth fx upr end unsp rad, 7thH +C2844738|T037|AB|S52.189J|ICD10CM|Oth fx upr end unsp rad, 7thJ|Oth fx upr end unsp rad, 7thJ +C2844739|T037|AB|S52.189K|ICD10CM|Oth fx upper end of unsp radius, subs for clos fx w nonunion|Oth fx upper end of unsp radius, subs for clos fx w nonunion +C2844740|T037|AB|S52.189M|ICD10CM|Oth fx upr end unsp rad, subs for opn fx type I/2 w nonunion|Oth fx upr end unsp rad, subs for opn fx type I/2 w nonunion +C2844741|T037|AB|S52.189N|ICD10CM|Oth fx upr end unsp rad, 7thN|Oth fx upr end unsp rad, 7thN +C2844742|T037|AB|S52.189P|ICD10CM|Oth fx upper end of unsp radius, subs for clos fx w malunion|Oth fx upper end of unsp radius, subs for clos fx w malunion +C2844743|T037|AB|S52.189Q|ICD10CM|Oth fx upr end unsp rad, subs for opn fx type I/2 w malunion|Oth fx upr end unsp rad, subs for opn fx type I/2 w malunion +C2844744|T037|AB|S52.189R|ICD10CM|Oth fx upr end unsp rad, 7thR|Oth fx upr end unsp rad, 7thR +C2844745|T037|PT|S52.189S|ICD10CM|Other fracture of upper end of unspecified radius, sequela|Other fracture of upper end of unspecified radius, sequela +C2844745|T037|AB|S52.189S|ICD10CM|Other fracture of upper end of unspecified radius, sequela|Other fracture of upper end of unspecified radius, sequela +C0347798|T037|PT|S52.2|ICD10|Fracture of shaft of ulna|Fracture of shaft of ulna +C0347798|T037|HT|S52.2|ICD10CM|Fracture of shaft of ulna|Fracture of shaft of ulna +C0347798|T037|AB|S52.2|ICD10CM|Fracture of shaft of ulna|Fracture of shaft of ulna +C0041601|T037|ET|S52.20|ICD10CM|Fracture of ulna NOS|Fracture of ulna NOS +C2844746|T037|AB|S52.20|ICD10CM|Unspecified fracture of shaft of ulna|Unspecified fracture of shaft of ulna +C2844746|T037|HT|S52.20|ICD10CM|Unspecified fracture of shaft of ulna|Unspecified fracture of shaft of ulna +C2844747|T037|AB|S52.201|ICD10CM|Unspecified fracture of shaft of right ulna|Unspecified fracture of shaft of right ulna +C2844747|T037|HT|S52.201|ICD10CM|Unspecified fracture of shaft of right ulna|Unspecified fracture of shaft of right ulna +C2844748|T037|AB|S52.201A|ICD10CM|Unsp fracture of shaft of right ulna, init for clos fx|Unsp fracture of shaft of right ulna, init for clos fx +C2844748|T037|PT|S52.201A|ICD10CM|Unspecified fracture of shaft of right ulna, initial encounter for closed fracture|Unspecified fracture of shaft of right ulna, initial encounter for closed fracture +C2844749|T037|AB|S52.201B|ICD10CM|Unsp fx shaft of right ulna, init for opn fx type I/2|Unsp fx shaft of right ulna, init for opn fx type I/2 +C2844749|T037|PT|S52.201B|ICD10CM|Unspecified fracture of shaft of right ulna, initial encounter for open fracture type I or II|Unspecified fracture of shaft of right ulna, initial encounter for open fracture type I or II +C2844750|T037|AB|S52.201C|ICD10CM|Unsp fx shaft of right ulna, init for opn fx type 3A/B/C|Unsp fx shaft of right ulna, init for opn fx type 3A/B/C +C2844751|T037|AB|S52.201D|ICD10CM|Unsp fx shaft of right ulna, subs for clos fx w routn heal|Unsp fx shaft of right ulna, subs for clos fx w routn heal +C2844752|T037|AB|S52.201E|ICD10CM|Unsp fx shaft of r ulna, 7thE|Unsp fx shaft of r ulna, 7thE +C2844753|T037|AB|S52.201F|ICD10CM|Unsp fx shaft of r ulna, 7thF|Unsp fx shaft of r ulna, 7thF +C2844754|T037|AB|S52.201G|ICD10CM|Unsp fx shaft of right ulna, subs for clos fx w delay heal|Unsp fx shaft of right ulna, subs for clos fx w delay heal +C2844755|T037|AB|S52.201H|ICD10CM|Unsp fx shaft of r ulna, 7thH|Unsp fx shaft of r ulna, 7thH +C2844756|T037|AB|S52.201J|ICD10CM|Unsp fx shaft of r ulna, 7thJ|Unsp fx shaft of r ulna, 7thJ +C2844757|T037|AB|S52.201K|ICD10CM|Unsp fx shaft of right ulna, subs for clos fx w nonunion|Unsp fx shaft of right ulna, subs for clos fx w nonunion +C2844757|T037|PT|S52.201K|ICD10CM|Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion|Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion +C2844758|T037|AB|S52.201M|ICD10CM|Unsp fx shaft of r ulna, subs for opn fx type I/2 w nonunion|Unsp fx shaft of r ulna, subs for opn fx type I/2 w nonunion +C2844759|T037|AB|S52.201N|ICD10CM|Unsp fx shaft of r ulna, 7thN|Unsp fx shaft of r ulna, 7thN +C2844760|T037|AB|S52.201P|ICD10CM|Unsp fx shaft of right ulna, subs for clos fx w malunion|Unsp fx shaft of right ulna, subs for clos fx w malunion +C2844760|T037|PT|S52.201P|ICD10CM|Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion|Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion +C2844761|T037|AB|S52.201Q|ICD10CM|Unsp fx shaft of r ulna, subs for opn fx type I/2 w malunion|Unsp fx shaft of r ulna, subs for opn fx type I/2 w malunion +C2844762|T037|AB|S52.201R|ICD10CM|Unsp fx shaft of r ulna, 7thR|Unsp fx shaft of r ulna, 7thR +C2844763|T037|PT|S52.201S|ICD10CM|Unspecified fracture of shaft of right ulna, sequela|Unspecified fracture of shaft of right ulna, sequela +C2844763|T037|AB|S52.201S|ICD10CM|Unspecified fracture of shaft of right ulna, sequela|Unspecified fracture of shaft of right ulna, sequela +C2844764|T037|AB|S52.202|ICD10CM|Unspecified fracture of shaft of left ulna|Unspecified fracture of shaft of left ulna +C2844764|T037|HT|S52.202|ICD10CM|Unspecified fracture of shaft of left ulna|Unspecified fracture of shaft of left ulna +C2844765|T037|AB|S52.202A|ICD10CM|Unsp fracture of shaft of left ulna, init for clos fx|Unsp fracture of shaft of left ulna, init for clos fx +C2844765|T037|PT|S52.202A|ICD10CM|Unspecified fracture of shaft of left ulna, initial encounter for closed fracture|Unspecified fracture of shaft of left ulna, initial encounter for closed fracture +C2844766|T037|AB|S52.202B|ICD10CM|Unsp fx shaft of left ulna, init for opn fx type I/2|Unsp fx shaft of left ulna, init for opn fx type I/2 +C2844766|T037|PT|S52.202B|ICD10CM|Unspecified fracture of shaft of left ulna, initial encounter for open fracture type I or II|Unspecified fracture of shaft of left ulna, initial encounter for open fracture type I or II +C2844767|T037|AB|S52.202C|ICD10CM|Unsp fx shaft of left ulna, init for opn fx type 3A/B/C|Unsp fx shaft of left ulna, init for opn fx type 3A/B/C +C2844768|T037|AB|S52.202D|ICD10CM|Unsp fx shaft of left ulna, subs for clos fx w routn heal|Unsp fx shaft of left ulna, subs for clos fx w routn heal +C2844769|T037|AB|S52.202E|ICD10CM|Unsp fx shaft of l ulna, 7thE|Unsp fx shaft of l ulna, 7thE +C2844770|T037|AB|S52.202F|ICD10CM|Unsp fx shaft of l ulna, 7thF|Unsp fx shaft of l ulna, 7thF +C2844771|T037|AB|S52.202G|ICD10CM|Unsp fx shaft of left ulna, subs for clos fx w delay heal|Unsp fx shaft of left ulna, subs for clos fx w delay heal +C2844772|T037|AB|S52.202H|ICD10CM|Unsp fx shaft of l ulna, 7thH|Unsp fx shaft of l ulna, 7thH +C2844773|T037|AB|S52.202J|ICD10CM|Unsp fx shaft of l ulna, 7thJ|Unsp fx shaft of l ulna, 7thJ +C2844774|T037|AB|S52.202K|ICD10CM|Unsp fx shaft of left ulna, subs for clos fx w nonunion|Unsp fx shaft of left ulna, subs for clos fx w nonunion +C2844774|T037|PT|S52.202K|ICD10CM|Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion|Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion +C2844775|T037|AB|S52.202M|ICD10CM|Unsp fx shaft of l ulna, subs for opn fx type I/2 w nonunion|Unsp fx shaft of l ulna, subs for opn fx type I/2 w nonunion +C2844776|T037|AB|S52.202N|ICD10CM|Unsp fx shaft of l ulna, 7thN|Unsp fx shaft of l ulna, 7thN +C2844777|T037|AB|S52.202P|ICD10CM|Unsp fx shaft of left ulna, subs for clos fx w malunion|Unsp fx shaft of left ulna, subs for clos fx w malunion +C2844777|T037|PT|S52.202P|ICD10CM|Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion|Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion +C2844778|T037|AB|S52.202Q|ICD10CM|Unsp fx shaft of l ulna, subs for opn fx type I/2 w malunion|Unsp fx shaft of l ulna, subs for opn fx type I/2 w malunion +C2844779|T037|AB|S52.202R|ICD10CM|Unsp fx shaft of l ulna, 7thR|Unsp fx shaft of l ulna, 7thR +C2844780|T037|PT|S52.202S|ICD10CM|Unspecified fracture of shaft of left ulna, sequela|Unspecified fracture of shaft of left ulna, sequela +C2844780|T037|AB|S52.202S|ICD10CM|Unspecified fracture of shaft of left ulna, sequela|Unspecified fracture of shaft of left ulna, sequela +C2844781|T037|AB|S52.209|ICD10CM|Unspecified fracture of shaft of unspecified ulna|Unspecified fracture of shaft of unspecified ulna +C2844781|T037|HT|S52.209|ICD10CM|Unspecified fracture of shaft of unspecified ulna|Unspecified fracture of shaft of unspecified ulna +C2844782|T037|AB|S52.209A|ICD10CM|Unsp fracture of shaft of unsp ulna, init for clos fx|Unsp fracture of shaft of unsp ulna, init for clos fx +C2844782|T037|PT|S52.209A|ICD10CM|Unspecified fracture of shaft of unspecified ulna, initial encounter for closed fracture|Unspecified fracture of shaft of unspecified ulna, initial encounter for closed fracture +C2844783|T037|AB|S52.209B|ICD10CM|Unsp fx shaft of unsp ulna, init for opn fx type I/2|Unsp fx shaft of unsp ulna, init for opn fx type I/2 +C2844783|T037|PT|S52.209B|ICD10CM|Unspecified fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II|Unspecified fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II +C2844784|T037|AB|S52.209C|ICD10CM|Unsp fx shaft of unsp ulna, init for opn fx type 3A/B/C|Unsp fx shaft of unsp ulna, init for opn fx type 3A/B/C +C2844785|T037|AB|S52.209D|ICD10CM|Unsp fx shaft of unsp ulna, subs for clos fx w routn heal|Unsp fx shaft of unsp ulna, subs for clos fx w routn heal +C2844786|T037|AB|S52.209E|ICD10CM|Unsp fx shaft of unsp ulna, 7thE|Unsp fx shaft of unsp ulna, 7thE +C2844787|T037|AB|S52.209F|ICD10CM|Unsp fx shaft of unsp ulna, 7thF|Unsp fx shaft of unsp ulna, 7thF +C2844788|T037|AB|S52.209G|ICD10CM|Unsp fx shaft of unsp ulna, subs for clos fx w delay heal|Unsp fx shaft of unsp ulna, subs for clos fx w delay heal +C2844789|T037|AB|S52.209H|ICD10CM|Unsp fx shaft of unsp ulna, 7thH|Unsp fx shaft of unsp ulna, 7thH +C2844790|T037|AB|S52.209J|ICD10CM|Unsp fx shaft of unsp ulna, 7thJ|Unsp fx shaft of unsp ulna, 7thJ +C2844791|T037|AB|S52.209K|ICD10CM|Unsp fx shaft of unsp ulna, subs for clos fx w nonunion|Unsp fx shaft of unsp ulna, subs for clos fx w nonunion +C2844792|T037|AB|S52.209M|ICD10CM|Unsp fx shaft of unsp ulna, 7thM|Unsp fx shaft of unsp ulna, 7thM +C2844793|T037|AB|S52.209N|ICD10CM|Unsp fx shaft of unsp ulna, 7thN|Unsp fx shaft of unsp ulna, 7thN +C2844794|T037|AB|S52.209P|ICD10CM|Unsp fx shaft of unsp ulna, subs for clos fx w malunion|Unsp fx shaft of unsp ulna, subs for clos fx w malunion +C2844795|T037|AB|S52.209Q|ICD10CM|Unsp fx shaft of unsp ulna, 7thQ|Unsp fx shaft of unsp ulna, 7thQ +C2844796|T037|AB|S52.209R|ICD10CM|Unsp fx shaft of unsp ulna, 7thR|Unsp fx shaft of unsp ulna, 7thR +C2844797|T037|PT|S52.209S|ICD10CM|Unspecified fracture of shaft of unspecified ulna, sequela|Unspecified fracture of shaft of unspecified ulna, sequela +C2844797|T037|AB|S52.209S|ICD10CM|Unspecified fracture of shaft of unspecified ulna, sequela|Unspecified fracture of shaft of unspecified ulna, sequela +C2844798|T037|AB|S52.21|ICD10CM|Greenstick fracture of shaft of ulna|Greenstick fracture of shaft of ulna +C2844798|T037|HT|S52.21|ICD10CM|Greenstick fracture of shaft of ulna|Greenstick fracture of shaft of ulna +C2844799|T037|AB|S52.211|ICD10CM|Greenstick fracture of shaft of right ulna|Greenstick fracture of shaft of right ulna +C2844799|T037|HT|S52.211|ICD10CM|Greenstick fracture of shaft of right ulna|Greenstick fracture of shaft of right ulna +C2844800|T037|AB|S52.211A|ICD10CM|Greenstick fracture of shaft of right ulna, init for clos fx|Greenstick fracture of shaft of right ulna, init for clos fx +C2844800|T037|PT|S52.211A|ICD10CM|Greenstick fracture of shaft of right ulna, initial encounter for closed fracture|Greenstick fracture of shaft of right ulna, initial encounter for closed fracture +C2844801|T037|PT|S52.211D|ICD10CM|Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with routine healing|Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with routine healing +C2844801|T037|AB|S52.211D|ICD10CM|Greenstick fx shaft of right ulna, subs for fx w routn heal|Greenstick fx shaft of right ulna, subs for fx w routn heal +C2844802|T037|PT|S52.211G|ICD10CM|Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with delayed healing|Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with delayed healing +C2844802|T037|AB|S52.211G|ICD10CM|Greenstick fx shaft of right ulna, subs for fx w delay heal|Greenstick fx shaft of right ulna, subs for fx w delay heal +C2844803|T037|PT|S52.211K|ICD10CM|Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with nonunion|Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with nonunion +C2844803|T037|AB|S52.211K|ICD10CM|Greenstick fx shaft of right ulna, subs for fx w nonunion|Greenstick fx shaft of right ulna, subs for fx w nonunion +C2844804|T037|PT|S52.211P|ICD10CM|Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with malunion|Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with malunion +C2844804|T037|AB|S52.211P|ICD10CM|Greenstick fx shaft of right ulna, subs for fx w malunion|Greenstick fx shaft of right ulna, subs for fx w malunion +C2844805|T037|PT|S52.211S|ICD10CM|Greenstick fracture of shaft of right ulna, sequela|Greenstick fracture of shaft of right ulna, sequela +C2844805|T037|AB|S52.211S|ICD10CM|Greenstick fracture of shaft of right ulna, sequela|Greenstick fracture of shaft of right ulna, sequela +C2844806|T037|AB|S52.212|ICD10CM|Greenstick fracture of shaft of left ulna|Greenstick fracture of shaft of left ulna +C2844806|T037|HT|S52.212|ICD10CM|Greenstick fracture of shaft of left ulna|Greenstick fracture of shaft of left ulna +C2844807|T037|AB|S52.212A|ICD10CM|Greenstick fracture of shaft of left ulna, init for clos fx|Greenstick fracture of shaft of left ulna, init for clos fx +C2844807|T037|PT|S52.212A|ICD10CM|Greenstick fracture of shaft of left ulna, initial encounter for closed fracture|Greenstick fracture of shaft of left ulna, initial encounter for closed fracture +C2844808|T037|PT|S52.212D|ICD10CM|Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with routine healing|Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with routine healing +C2844808|T037|AB|S52.212D|ICD10CM|Greenstick fx shaft of left ulna, subs for fx w routn heal|Greenstick fx shaft of left ulna, subs for fx w routn heal +C2844809|T037|PT|S52.212G|ICD10CM|Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with delayed healing|Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with delayed healing +C2844809|T037|AB|S52.212G|ICD10CM|Greenstick fx shaft of left ulna, subs for fx w delay heal|Greenstick fx shaft of left ulna, subs for fx w delay heal +C2844810|T037|PT|S52.212K|ICD10CM|Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with nonunion|Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with nonunion +C2844810|T037|AB|S52.212K|ICD10CM|Greenstick fx shaft of left ulna, subs for fx w nonunion|Greenstick fx shaft of left ulna, subs for fx w nonunion +C2844811|T037|PT|S52.212P|ICD10CM|Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with malunion|Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with malunion +C2844811|T037|AB|S52.212P|ICD10CM|Greenstick fx shaft of left ulna, subs for fx w malunion|Greenstick fx shaft of left ulna, subs for fx w malunion +C2844812|T037|PT|S52.212S|ICD10CM|Greenstick fracture of shaft of left ulna, sequela|Greenstick fracture of shaft of left ulna, sequela +C2844812|T037|AB|S52.212S|ICD10CM|Greenstick fracture of shaft of left ulna, sequela|Greenstick fracture of shaft of left ulna, sequela +C2844813|T037|AB|S52.219|ICD10CM|Greenstick fracture of shaft of unspecified ulna|Greenstick fracture of shaft of unspecified ulna +C2844813|T037|HT|S52.219|ICD10CM|Greenstick fracture of shaft of unspecified ulna|Greenstick fracture of shaft of unspecified ulna +C2844814|T037|AB|S52.219A|ICD10CM|Greenstick fracture of shaft of unsp ulna, init for clos fx|Greenstick fracture of shaft of unsp ulna, init for clos fx +C2844814|T037|PT|S52.219A|ICD10CM|Greenstick fracture of shaft of unspecified ulna, initial encounter for closed fracture|Greenstick fracture of shaft of unspecified ulna, initial encounter for closed fracture +C2844815|T037|AB|S52.219D|ICD10CM|Greenstick fx shaft of unsp ulna, subs for fx w routn heal|Greenstick fx shaft of unsp ulna, subs for fx w routn heal +C2844816|T037|AB|S52.219G|ICD10CM|Greenstick fx shaft of unsp ulna, subs for fx w delay heal|Greenstick fx shaft of unsp ulna, subs for fx w delay heal +C2844817|T037|PT|S52.219K|ICD10CM|Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with nonunion|Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with nonunion +C2844817|T037|AB|S52.219K|ICD10CM|Greenstick fx shaft of unsp ulna, subs for fx w nonunion|Greenstick fx shaft of unsp ulna, subs for fx w nonunion +C2844818|T037|PT|S52.219P|ICD10CM|Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with malunion|Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with malunion +C2844818|T037|AB|S52.219P|ICD10CM|Greenstick fx shaft of unsp ulna, subs for fx w malunion|Greenstick fx shaft of unsp ulna, subs for fx w malunion +C2844819|T037|PT|S52.219S|ICD10CM|Greenstick fracture of shaft of unspecified ulna, sequela|Greenstick fracture of shaft of unspecified ulna, sequela +C2844819|T037|AB|S52.219S|ICD10CM|Greenstick fracture of shaft of unspecified ulna, sequela|Greenstick fracture of shaft of unspecified ulna, sequela +C2844820|T037|AB|S52.22|ICD10CM|Transverse fracture of shaft of ulna|Transverse fracture of shaft of ulna +C2844820|T037|HT|S52.22|ICD10CM|Transverse fracture of shaft of ulna|Transverse fracture of shaft of ulna +C2844821|T037|AB|S52.221|ICD10CM|Displaced transverse fracture of shaft of right ulna|Displaced transverse fracture of shaft of right ulna +C2844821|T037|HT|S52.221|ICD10CM|Displaced transverse fracture of shaft of right ulna|Displaced transverse fracture of shaft of right ulna +C2844822|T037|AB|S52.221A|ICD10CM|Displaced transverse fracture of shaft of right ulna, init|Displaced transverse fracture of shaft of right ulna, init +C2844822|T037|PT|S52.221A|ICD10CM|Displaced transverse fracture of shaft of right ulna, initial encounter for closed fracture|Displaced transverse fracture of shaft of right ulna, initial encounter for closed fracture +C2844823|T037|AB|S52.221B|ICD10CM|Displ transverse fx shaft of r ulna, 7thB|Displ transverse fx shaft of r ulna, 7thB +C2844824|T037|AB|S52.221C|ICD10CM|Displ transverse fx shaft of r ulna, 7thC|Displ transverse fx shaft of r ulna, 7thC +C2844825|T037|AB|S52.221D|ICD10CM|Displ transverse fx shaft of r ulna, 7thD|Displ transverse fx shaft of r ulna, 7thD +C2844826|T037|AB|S52.221E|ICD10CM|Displ transverse fx shaft of r ulna, 7thE|Displ transverse fx shaft of r ulna, 7thE +C2844827|T037|AB|S52.221F|ICD10CM|Displ transverse fx shaft of r ulna, 7thF|Displ transverse fx shaft of r ulna, 7thF +C2844828|T037|AB|S52.221G|ICD10CM|Displ transverse fx shaft of r ulna, 7thG|Displ transverse fx shaft of r ulna, 7thG +C2844829|T037|AB|S52.221H|ICD10CM|Displ transverse fx shaft of r ulna, 7thH|Displ transverse fx shaft of r ulna, 7thH +C2844830|T037|AB|S52.221J|ICD10CM|Displ transverse fx shaft of r ulna, 7thJ|Displ transverse fx shaft of r ulna, 7thJ +C2844831|T037|AB|S52.221K|ICD10CM|Displ transverse fx shaft of r ulna, 7thK|Displ transverse fx shaft of r ulna, 7thK +C2844832|T037|AB|S52.221M|ICD10CM|Displ transverse fx shaft of r ulna, 7thM|Displ transverse fx shaft of r ulna, 7thM +C2844833|T037|AB|S52.221N|ICD10CM|Displ transverse fx shaft of r ulna, 7thN|Displ transverse fx shaft of r ulna, 7thN +C2844834|T037|AB|S52.221P|ICD10CM|Displ transverse fx shaft of r ulna, 7thP|Displ transverse fx shaft of r ulna, 7thP +C2844835|T037|AB|S52.221Q|ICD10CM|Displ transverse fx shaft of r ulna, 7thQ|Displ transverse fx shaft of r ulna, 7thQ +C2844836|T037|AB|S52.221R|ICD10CM|Displ transverse fx shaft of r ulna, 7thR|Displ transverse fx shaft of r ulna, 7thR +C2844837|T037|PT|S52.221S|ICD10CM|Displaced transverse fracture of shaft of right ulna, sequela|Displaced transverse fracture of shaft of right ulna, sequela +C2844837|T037|AB|S52.221S|ICD10CM|Displaced transverse fx shaft of right ulna, sequela|Displaced transverse fx shaft of right ulna, sequela +C2844838|T037|AB|S52.222|ICD10CM|Displaced transverse fracture of shaft of left ulna|Displaced transverse fracture of shaft of left ulna +C2844838|T037|HT|S52.222|ICD10CM|Displaced transverse fracture of shaft of left ulna|Displaced transverse fracture of shaft of left ulna +C2844839|T037|AB|S52.222A|ICD10CM|Displaced transverse fracture of shaft of left ulna, init|Displaced transverse fracture of shaft of left ulna, init +C2844839|T037|PT|S52.222A|ICD10CM|Displaced transverse fracture of shaft of left ulna, initial encounter for closed fracture|Displaced transverse fracture of shaft of left ulna, initial encounter for closed fracture +C2844840|T037|AB|S52.222B|ICD10CM|Displ transverse fx shaft of l ulna, 7thB|Displ transverse fx shaft of l ulna, 7thB +C2844841|T037|AB|S52.222C|ICD10CM|Displ transverse fx shaft of l ulna, 7thC|Displ transverse fx shaft of l ulna, 7thC +C2844842|T037|AB|S52.222D|ICD10CM|Displ transverse fx shaft of l ulna, 7thD|Displ transverse fx shaft of l ulna, 7thD +C2844843|T037|AB|S52.222E|ICD10CM|Displ transverse fx shaft of l ulna, 7thE|Displ transverse fx shaft of l ulna, 7thE +C2844844|T037|AB|S52.222F|ICD10CM|Displ transverse fx shaft of l ulna, 7thF|Displ transverse fx shaft of l ulna, 7thF +C2844845|T037|AB|S52.222G|ICD10CM|Displ transverse fx shaft of l ulna, 7thG|Displ transverse fx shaft of l ulna, 7thG +C2844846|T037|AB|S52.222H|ICD10CM|Displ transverse fx shaft of l ulna, 7thH|Displ transverse fx shaft of l ulna, 7thH +C2844847|T037|AB|S52.222J|ICD10CM|Displ transverse fx shaft of l ulna, 7thJ|Displ transverse fx shaft of l ulna, 7thJ +C2844848|T037|AB|S52.222K|ICD10CM|Displ transverse fx shaft of l ulna, 7thK|Displ transverse fx shaft of l ulna, 7thK +C2844849|T037|AB|S52.222M|ICD10CM|Displ transverse fx shaft of l ulna, 7thM|Displ transverse fx shaft of l ulna, 7thM +C2844850|T037|AB|S52.222N|ICD10CM|Displ transverse fx shaft of l ulna, 7thN|Displ transverse fx shaft of l ulna, 7thN +C2844851|T037|AB|S52.222P|ICD10CM|Displ transverse fx shaft of l ulna, 7thP|Displ transverse fx shaft of l ulna, 7thP +C2844852|T037|AB|S52.222Q|ICD10CM|Displ transverse fx shaft of l ulna, 7thQ|Displ transverse fx shaft of l ulna, 7thQ +C2844853|T037|AB|S52.222R|ICD10CM|Displ transverse fx shaft of l ulna, 7thR|Displ transverse fx shaft of l ulna, 7thR +C2844854|T037|AB|S52.222S|ICD10CM|Displaced transverse fracture of shaft of left ulna, sequela|Displaced transverse fracture of shaft of left ulna, sequela +C2844854|T037|PT|S52.222S|ICD10CM|Displaced transverse fracture of shaft of left ulna, sequela|Displaced transverse fracture of shaft of left ulna, sequela +C2844855|T037|AB|S52.223|ICD10CM|Displaced transverse fracture of shaft of unspecified ulna|Displaced transverse fracture of shaft of unspecified ulna +C2844855|T037|HT|S52.223|ICD10CM|Displaced transverse fracture of shaft of unspecified ulna|Displaced transverse fracture of shaft of unspecified ulna +C2844856|T037|AB|S52.223A|ICD10CM|Displaced transverse fracture of shaft of unsp ulna, init|Displaced transverse fracture of shaft of unsp ulna, init +C2844856|T037|PT|S52.223A|ICD10CM|Displaced transverse fracture of shaft of unspecified ulna, initial encounter for closed fracture|Displaced transverse fracture of shaft of unspecified ulna, initial encounter for closed fracture +C2844857|T037|AB|S52.223B|ICD10CM|Displ transverse fx shaft of unsp ulna, 7thB|Displ transverse fx shaft of unsp ulna, 7thB +C2844858|T037|AB|S52.223C|ICD10CM|Displ transverse fx shaft of unsp ulna, 7thC|Displ transverse fx shaft of unsp ulna, 7thC +C2844859|T037|AB|S52.223D|ICD10CM|Displ transverse fx shaft of unsp ulna, 7thD|Displ transverse fx shaft of unsp ulna, 7thD +C2844860|T037|AB|S52.223E|ICD10CM|Displ transverse fx shaft of unsp ulna, 7thE|Displ transverse fx shaft of unsp ulna, 7thE +C2844861|T037|AB|S52.223F|ICD10CM|Displ transverse fx shaft of unsp ulna, 7thF|Displ transverse fx shaft of unsp ulna, 7thF +C2844862|T037|AB|S52.223G|ICD10CM|Displ transverse fx shaft of unsp ulna, 7thG|Displ transverse fx shaft of unsp ulna, 7thG +C2844863|T037|AB|S52.223H|ICD10CM|Displ transverse fx shaft of unsp ulna, 7thH|Displ transverse fx shaft of unsp ulna, 7thH +C2844864|T037|AB|S52.223J|ICD10CM|Displ transverse fx shaft of unsp ulna, 7thJ|Displ transverse fx shaft of unsp ulna, 7thJ +C2844865|T037|AB|S52.223K|ICD10CM|Displ transverse fx shaft of unsp ulna, 7thK|Displ transverse fx shaft of unsp ulna, 7thK +C2844866|T037|AB|S52.223M|ICD10CM|Displ transverse fx shaft of unsp ulna, 7thM|Displ transverse fx shaft of unsp ulna, 7thM +C2844867|T037|AB|S52.223N|ICD10CM|Displ transverse fx shaft of unsp ulna, 7thN|Displ transverse fx shaft of unsp ulna, 7thN +C2844868|T037|AB|S52.223P|ICD10CM|Displ transverse fx shaft of unsp ulna, 7thP|Displ transverse fx shaft of unsp ulna, 7thP +C2844869|T037|AB|S52.223Q|ICD10CM|Displ transverse fx shaft of unsp ulna, 7thQ|Displ transverse fx shaft of unsp ulna, 7thQ +C2844870|T037|AB|S52.223R|ICD10CM|Displ transverse fx shaft of unsp ulna, 7thR|Displ transverse fx shaft of unsp ulna, 7thR +C2844871|T037|AB|S52.223S|ICD10CM|Displaced transverse fracture of shaft of unsp ulna, sequela|Displaced transverse fracture of shaft of unsp ulna, sequela +C2844871|T037|PT|S52.223S|ICD10CM|Displaced transverse fracture of shaft of unspecified ulna, sequela|Displaced transverse fracture of shaft of unspecified ulna, sequela +C2844872|T037|AB|S52.224|ICD10CM|Nondisplaced transverse fracture of shaft of right ulna|Nondisplaced transverse fracture of shaft of right ulna +C2844872|T037|HT|S52.224|ICD10CM|Nondisplaced transverse fracture of shaft of right ulna|Nondisplaced transverse fracture of shaft of right ulna +C2844873|T037|AB|S52.224A|ICD10CM|Nondisp transverse fracture of shaft of right ulna, init|Nondisp transverse fracture of shaft of right ulna, init +C2844873|T037|PT|S52.224A|ICD10CM|Nondisplaced transverse fracture of shaft of right ulna, initial encounter for closed fracture|Nondisplaced transverse fracture of shaft of right ulna, initial encounter for closed fracture +C2844874|T037|AB|S52.224B|ICD10CM|Nondisp transverse fx shaft of r ulna, 7thB|Nondisp transverse fx shaft of r ulna, 7thB +C2844875|T037|AB|S52.224C|ICD10CM|Nondisp transverse fx shaft of r ulna, 7thC|Nondisp transverse fx shaft of r ulna, 7thC +C2844876|T037|AB|S52.224D|ICD10CM|Nondisp transverse fx shaft of r ulna, 7thD|Nondisp transverse fx shaft of r ulna, 7thD +C2844877|T037|AB|S52.224E|ICD10CM|Nondisp transverse fx shaft of r ulna, 7thE|Nondisp transverse fx shaft of r ulna, 7thE +C2844878|T037|AB|S52.224F|ICD10CM|Nondisp transverse fx shaft of r ulna, 7thF|Nondisp transverse fx shaft of r ulna, 7thF +C2844879|T037|AB|S52.224G|ICD10CM|Nondisp transverse fx shaft of r ulna, 7thG|Nondisp transverse fx shaft of r ulna, 7thG +C2844880|T037|AB|S52.224H|ICD10CM|Nondisp transverse fx shaft of r ulna, 7thH|Nondisp transverse fx shaft of r ulna, 7thH +C2844881|T037|AB|S52.224J|ICD10CM|Nondisp transverse fx shaft of r ulna, 7thJ|Nondisp transverse fx shaft of r ulna, 7thJ +C2844882|T037|AB|S52.224K|ICD10CM|Nondisp transverse fx shaft of r ulna, 7thK|Nondisp transverse fx shaft of r ulna, 7thK +C2844883|T037|AB|S52.224M|ICD10CM|Nondisp transverse fx shaft of r ulna, 7thM|Nondisp transverse fx shaft of r ulna, 7thM +C2844884|T037|AB|S52.224N|ICD10CM|Nondisp transverse fx shaft of r ulna, 7thN|Nondisp transverse fx shaft of r ulna, 7thN +C2844885|T037|AB|S52.224P|ICD10CM|Nondisp transverse fx shaft of r ulna, 7thP|Nondisp transverse fx shaft of r ulna, 7thP +C2844886|T037|AB|S52.224Q|ICD10CM|Nondisp transverse fx shaft of r ulna, 7thQ|Nondisp transverse fx shaft of r ulna, 7thQ +C2844887|T037|AB|S52.224R|ICD10CM|Nondisp transverse fx shaft of r ulna, 7thR|Nondisp transverse fx shaft of r ulna, 7thR +C2844888|T037|AB|S52.224S|ICD10CM|Nondisp transverse fracture of shaft of right ulna, sequela|Nondisp transverse fracture of shaft of right ulna, sequela +C2844888|T037|PT|S52.224S|ICD10CM|Nondisplaced transverse fracture of shaft of right ulna, sequela|Nondisplaced transverse fracture of shaft of right ulna, sequela +C2844889|T037|AB|S52.225|ICD10CM|Nondisplaced transverse fracture of shaft of left ulna|Nondisplaced transverse fracture of shaft of left ulna +C2844889|T037|HT|S52.225|ICD10CM|Nondisplaced transverse fracture of shaft of left ulna|Nondisplaced transverse fracture of shaft of left ulna +C2844890|T037|AB|S52.225A|ICD10CM|Nondisplaced transverse fracture of shaft of left ulna, init|Nondisplaced transverse fracture of shaft of left ulna, init +C2844890|T037|PT|S52.225A|ICD10CM|Nondisplaced transverse fracture of shaft of left ulna, initial encounter for closed fracture|Nondisplaced transverse fracture of shaft of left ulna, initial encounter for closed fracture +C2844891|T037|AB|S52.225B|ICD10CM|Nondisp transverse fx shaft of l ulna, 7thB|Nondisp transverse fx shaft of l ulna, 7thB +C2844892|T037|AB|S52.225C|ICD10CM|Nondisp transverse fx shaft of l ulna, 7thC|Nondisp transverse fx shaft of l ulna, 7thC +C2844893|T037|AB|S52.225D|ICD10CM|Nondisp transverse fx shaft of l ulna, 7thD|Nondisp transverse fx shaft of l ulna, 7thD +C2844894|T037|AB|S52.225E|ICD10CM|Nondisp transverse fx shaft of l ulna, 7thE|Nondisp transverse fx shaft of l ulna, 7thE +C2844895|T037|AB|S52.225F|ICD10CM|Nondisp transverse fx shaft of l ulna, 7thF|Nondisp transverse fx shaft of l ulna, 7thF +C2844896|T037|AB|S52.225G|ICD10CM|Nondisp transverse fx shaft of l ulna, 7thG|Nondisp transverse fx shaft of l ulna, 7thG +C2844897|T037|AB|S52.225H|ICD10CM|Nondisp transverse fx shaft of l ulna, 7thH|Nondisp transverse fx shaft of l ulna, 7thH +C2844898|T037|AB|S52.225J|ICD10CM|Nondisp transverse fx shaft of l ulna, 7thJ|Nondisp transverse fx shaft of l ulna, 7thJ +C2844899|T037|AB|S52.225K|ICD10CM|Nondisp transverse fx shaft of l ulna, 7thK|Nondisp transverse fx shaft of l ulna, 7thK +C2844900|T037|AB|S52.225M|ICD10CM|Nondisp transverse fx shaft of l ulna, 7thM|Nondisp transverse fx shaft of l ulna, 7thM +C2844901|T037|AB|S52.225N|ICD10CM|Nondisp transverse fx shaft of l ulna, 7thN|Nondisp transverse fx shaft of l ulna, 7thN +C2844902|T037|AB|S52.225P|ICD10CM|Nondisp transverse fx shaft of l ulna, 7thP|Nondisp transverse fx shaft of l ulna, 7thP +C2844903|T037|AB|S52.225Q|ICD10CM|Nondisp transverse fx shaft of l ulna, 7thQ|Nondisp transverse fx shaft of l ulna, 7thQ +C2844904|T037|AB|S52.225R|ICD10CM|Nondisp transverse fx shaft of l ulna, 7thR|Nondisp transverse fx shaft of l ulna, 7thR +C2844905|T037|AB|S52.225S|ICD10CM|Nondisp transverse fracture of shaft of left ulna, sequela|Nondisp transverse fracture of shaft of left ulna, sequela +C2844905|T037|PT|S52.225S|ICD10CM|Nondisplaced transverse fracture of shaft of left ulna, sequela|Nondisplaced transverse fracture of shaft of left ulna, sequela +C2844906|T037|AB|S52.226|ICD10CM|Nondisplaced transverse fracture of shaft of unsp ulna|Nondisplaced transverse fracture of shaft of unsp ulna +C2844906|T037|HT|S52.226|ICD10CM|Nondisplaced transverse fracture of shaft of unspecified ulna|Nondisplaced transverse fracture of shaft of unspecified ulna +C2844907|T037|AB|S52.226A|ICD10CM|Nondisplaced transverse fracture of shaft of unsp ulna, init|Nondisplaced transverse fracture of shaft of unsp ulna, init +C2844907|T037|PT|S52.226A|ICD10CM|Nondisplaced transverse fracture of shaft of unspecified ulna, initial encounter for closed fracture|Nondisplaced transverse fracture of shaft of unspecified ulna, initial encounter for closed fracture +C2844908|T037|AB|S52.226B|ICD10CM|Nondisp transverse fx shaft of unsp ulna, 7thB|Nondisp transverse fx shaft of unsp ulna, 7thB +C2844909|T037|AB|S52.226C|ICD10CM|Nondisp transverse fx shaft of unsp ulna, 7thC|Nondisp transverse fx shaft of unsp ulna, 7thC +C2844910|T037|AB|S52.226D|ICD10CM|Nondisp transverse fx shaft of unsp ulna, 7thD|Nondisp transverse fx shaft of unsp ulna, 7thD +C2844911|T037|AB|S52.226E|ICD10CM|Nondisp transverse fx shaft of unsp ulna, 7thE|Nondisp transverse fx shaft of unsp ulna, 7thE +C2844912|T037|AB|S52.226F|ICD10CM|Nondisp transverse fx shaft of unsp ulna, 7thF|Nondisp transverse fx shaft of unsp ulna, 7thF +C2844913|T037|AB|S52.226G|ICD10CM|Nondisp transverse fx shaft of unsp ulna, 7thG|Nondisp transverse fx shaft of unsp ulna, 7thG +C2844914|T037|AB|S52.226H|ICD10CM|Nondisp transverse fx shaft of unsp ulna, 7thH|Nondisp transverse fx shaft of unsp ulna, 7thH +C2844915|T037|AB|S52.226J|ICD10CM|Nondisp transverse fx shaft of unsp ulna, 7thJ|Nondisp transverse fx shaft of unsp ulna, 7thJ +C2844916|T037|AB|S52.226K|ICD10CM|Nondisp transverse fx shaft of unsp ulna, 7thK|Nondisp transverse fx shaft of unsp ulna, 7thK +C2844917|T037|AB|S52.226M|ICD10CM|Nondisp transverse fx shaft of unsp ulna, 7thM|Nondisp transverse fx shaft of unsp ulna, 7thM +C2844918|T037|AB|S52.226N|ICD10CM|Nondisp transverse fx shaft of unsp ulna, 7thN|Nondisp transverse fx shaft of unsp ulna, 7thN +C2844919|T037|AB|S52.226P|ICD10CM|Nondisp transverse fx shaft of unsp ulna, 7thP|Nondisp transverse fx shaft of unsp ulna, 7thP +C2844920|T037|AB|S52.226Q|ICD10CM|Nondisp transverse fx shaft of unsp ulna, 7thQ|Nondisp transverse fx shaft of unsp ulna, 7thQ +C2844921|T037|AB|S52.226R|ICD10CM|Nondisp transverse fx shaft of unsp ulna, 7thR|Nondisp transverse fx shaft of unsp ulna, 7thR +C2844922|T037|AB|S52.226S|ICD10CM|Nondisp transverse fracture of shaft of unsp ulna, sequela|Nondisp transverse fracture of shaft of unsp ulna, sequela +C2844922|T037|PT|S52.226S|ICD10CM|Nondisplaced transverse fracture of shaft of unspecified ulna, sequela|Nondisplaced transverse fracture of shaft of unspecified ulna, sequela +C2844923|T037|AB|S52.23|ICD10CM|Oblique fracture of shaft of ulna|Oblique fracture of shaft of ulna +C2844923|T037|HT|S52.23|ICD10CM|Oblique fracture of shaft of ulna|Oblique fracture of shaft of ulna +C2844924|T037|AB|S52.231|ICD10CM|Displaced oblique fracture of shaft of right ulna|Displaced oblique fracture of shaft of right ulna +C2844924|T037|HT|S52.231|ICD10CM|Displaced oblique fracture of shaft of right ulna|Displaced oblique fracture of shaft of right ulna +C2844925|T037|AB|S52.231A|ICD10CM|Displaced oblique fracture of shaft of right ulna, init|Displaced oblique fracture of shaft of right ulna, init +C2844925|T037|PT|S52.231A|ICD10CM|Displaced oblique fracture of shaft of right ulna, initial encounter for closed fracture|Displaced oblique fracture of shaft of right ulna, initial encounter for closed fracture +C2844926|T037|AB|S52.231B|ICD10CM|Displ oblique fx shaft of r ulna, init for opn fx type I/2|Displ oblique fx shaft of r ulna, init for opn fx type I/2 +C2844926|T037|PT|S52.231B|ICD10CM|Displaced oblique fracture of shaft of right ulna, initial encounter for open fracture type I or II|Displaced oblique fracture of shaft of right ulna, initial encounter for open fracture type I or II +C2844927|T037|AB|S52.231C|ICD10CM|Displ oblique fx shaft of r ulna, 7thC|Displ oblique fx shaft of r ulna, 7thC +C2844928|T037|AB|S52.231D|ICD10CM|Displ oblique fx shaft of r ulna, 7thD|Displ oblique fx shaft of r ulna, 7thD +C2844929|T037|AB|S52.231E|ICD10CM|Displ oblique fx shaft of r ulna, 7thE|Displ oblique fx shaft of r ulna, 7thE +C2844930|T037|AB|S52.231F|ICD10CM|Displ oblique fx shaft of r ulna, 7thF|Displ oblique fx shaft of r ulna, 7thF +C2844931|T037|AB|S52.231G|ICD10CM|Displ oblique fx shaft of r ulna, 7thG|Displ oblique fx shaft of r ulna, 7thG +C2844932|T037|AB|S52.231H|ICD10CM|Displ oblique fx shaft of r ulna, 7thH|Displ oblique fx shaft of r ulna, 7thH +C2844933|T037|AB|S52.231J|ICD10CM|Displ oblique fx shaft of r ulna, 7thJ|Displ oblique fx shaft of r ulna, 7thJ +C2844934|T037|AB|S52.231K|ICD10CM|Displ oblique fx shaft of r ulna, 7thK|Displ oblique fx shaft of r ulna, 7thK +C2844935|T037|AB|S52.231M|ICD10CM|Displ oblique fx shaft of r ulna, 7thM|Displ oblique fx shaft of r ulna, 7thM +C2844936|T037|AB|S52.231N|ICD10CM|Displ oblique fx shaft of r ulna, 7thN|Displ oblique fx shaft of r ulna, 7thN +C2844937|T037|AB|S52.231P|ICD10CM|Displ oblique fx shaft of r ulna, 7thP|Displ oblique fx shaft of r ulna, 7thP +C2844938|T037|AB|S52.231Q|ICD10CM|Displ oblique fx shaft of r ulna, 7thQ|Displ oblique fx shaft of r ulna, 7thQ +C2844939|T037|AB|S52.231R|ICD10CM|Displ oblique fx shaft of r ulna, 7thR|Displ oblique fx shaft of r ulna, 7thR +C2844940|T037|PT|S52.231S|ICD10CM|Displaced oblique fracture of shaft of right ulna, sequela|Displaced oblique fracture of shaft of right ulna, sequela +C2844940|T037|AB|S52.231S|ICD10CM|Displaced oblique fracture of shaft of right ulna, sequela|Displaced oblique fracture of shaft of right ulna, sequela +C2844941|T037|AB|S52.232|ICD10CM|Displaced oblique fracture of shaft of left ulna|Displaced oblique fracture of shaft of left ulna +C2844941|T037|HT|S52.232|ICD10CM|Displaced oblique fracture of shaft of left ulna|Displaced oblique fracture of shaft of left ulna +C2844942|T037|AB|S52.232A|ICD10CM|Displaced oblique fracture of shaft of left ulna, init|Displaced oblique fracture of shaft of left ulna, init +C2844942|T037|PT|S52.232A|ICD10CM|Displaced oblique fracture of shaft of left ulna, initial encounter for closed fracture|Displaced oblique fracture of shaft of left ulna, initial encounter for closed fracture +C2844943|T037|AB|S52.232B|ICD10CM|Displ oblique fx shaft of l ulna, init for opn fx type I/2|Displ oblique fx shaft of l ulna, init for opn fx type I/2 +C2844943|T037|PT|S52.232B|ICD10CM|Displaced oblique fracture of shaft of left ulna, initial encounter for open fracture type I or II|Displaced oblique fracture of shaft of left ulna, initial encounter for open fracture type I or II +C2844944|T037|AB|S52.232C|ICD10CM|Displ oblique fx shaft of l ulna, 7thC|Displ oblique fx shaft of l ulna, 7thC +C2844945|T037|AB|S52.232D|ICD10CM|Displ oblique fx shaft of l ulna, 7thD|Displ oblique fx shaft of l ulna, 7thD +C2844946|T037|AB|S52.232E|ICD10CM|Displ oblique fx shaft of l ulna, 7thE|Displ oblique fx shaft of l ulna, 7thE +C2844947|T037|AB|S52.232F|ICD10CM|Displ oblique fx shaft of l ulna, 7thF|Displ oblique fx shaft of l ulna, 7thF +C2844948|T037|AB|S52.232G|ICD10CM|Displ oblique fx shaft of l ulna, 7thG|Displ oblique fx shaft of l ulna, 7thG +C2844949|T037|AB|S52.232H|ICD10CM|Displ oblique fx shaft of l ulna, 7thH|Displ oblique fx shaft of l ulna, 7thH +C2844950|T037|AB|S52.232J|ICD10CM|Displ oblique fx shaft of l ulna, 7thJ|Displ oblique fx shaft of l ulna, 7thJ +C2844951|T037|AB|S52.232K|ICD10CM|Displ oblique fx shaft of l ulna, 7thK|Displ oblique fx shaft of l ulna, 7thK +C2844952|T037|AB|S52.232M|ICD10CM|Displ oblique fx shaft of l ulna, 7thM|Displ oblique fx shaft of l ulna, 7thM +C2844953|T037|AB|S52.232N|ICD10CM|Displ oblique fx shaft of l ulna, 7thN|Displ oblique fx shaft of l ulna, 7thN +C2844954|T037|AB|S52.232P|ICD10CM|Displ oblique fx shaft of l ulna, 7thP|Displ oblique fx shaft of l ulna, 7thP +C2844955|T037|AB|S52.232Q|ICD10CM|Displ oblique fx shaft of l ulna, 7thQ|Displ oblique fx shaft of l ulna, 7thQ +C2844956|T037|AB|S52.232R|ICD10CM|Displ oblique fx shaft of l ulna, 7thR|Displ oblique fx shaft of l ulna, 7thR +C2844957|T037|AB|S52.232S|ICD10CM|Displaced oblique fracture of shaft of left ulna, sequela|Displaced oblique fracture of shaft of left ulna, sequela +C2844957|T037|PT|S52.232S|ICD10CM|Displaced oblique fracture of shaft of left ulna, sequela|Displaced oblique fracture of shaft of left ulna, sequela +C2844958|T037|AB|S52.233|ICD10CM|Displaced oblique fracture of shaft of unspecified ulna|Displaced oblique fracture of shaft of unspecified ulna +C2844958|T037|HT|S52.233|ICD10CM|Displaced oblique fracture of shaft of unspecified ulna|Displaced oblique fracture of shaft of unspecified ulna +C2844959|T037|AB|S52.233A|ICD10CM|Displaced oblique fracture of shaft of unsp ulna, init|Displaced oblique fracture of shaft of unsp ulna, init +C2844959|T037|PT|S52.233A|ICD10CM|Displaced oblique fracture of shaft of unspecified ulna, initial encounter for closed fracture|Displaced oblique fracture of shaft of unspecified ulna, initial encounter for closed fracture +C2844960|T037|AB|S52.233B|ICD10CM|Displ oblique fx shaft of unsp ulna, 7thB|Displ oblique fx shaft of unsp ulna, 7thB +C2844961|T037|AB|S52.233C|ICD10CM|Displ oblique fx shaft of unsp ulna, 7thC|Displ oblique fx shaft of unsp ulna, 7thC +C2844962|T037|AB|S52.233D|ICD10CM|Displ oblique fx shaft of unsp ulna, 7thD|Displ oblique fx shaft of unsp ulna, 7thD +C2844963|T037|AB|S52.233E|ICD10CM|Displ oblique fx shaft of unsp ulna, 7thE|Displ oblique fx shaft of unsp ulna, 7thE +C2844964|T037|AB|S52.233F|ICD10CM|Displ oblique fx shaft of unsp ulna, 7thF|Displ oblique fx shaft of unsp ulna, 7thF +C2844965|T037|AB|S52.233G|ICD10CM|Displ oblique fx shaft of unsp ulna, 7thG|Displ oblique fx shaft of unsp ulna, 7thG +C2844966|T037|AB|S52.233H|ICD10CM|Displ oblique fx shaft of unsp ulna, 7thH|Displ oblique fx shaft of unsp ulna, 7thH +C2844967|T037|AB|S52.233J|ICD10CM|Displ oblique fx shaft of unsp ulna, 7thJ|Displ oblique fx shaft of unsp ulna, 7thJ +C2844968|T037|AB|S52.233K|ICD10CM|Displ oblique fx shaft of unsp ulna, 7thK|Displ oblique fx shaft of unsp ulna, 7thK +C2844969|T037|AB|S52.233M|ICD10CM|Displ oblique fx shaft of unsp ulna, 7thM|Displ oblique fx shaft of unsp ulna, 7thM +C2844970|T037|AB|S52.233N|ICD10CM|Displ oblique fx shaft of unsp ulna, 7thN|Displ oblique fx shaft of unsp ulna, 7thN +C2844971|T037|AB|S52.233P|ICD10CM|Displ oblique fx shaft of unsp ulna, 7thP|Displ oblique fx shaft of unsp ulna, 7thP +C2844972|T037|AB|S52.233Q|ICD10CM|Displ oblique fx shaft of unsp ulna, 7thQ|Displ oblique fx shaft of unsp ulna, 7thQ +C2844973|T037|AB|S52.233R|ICD10CM|Displ oblique fx shaft of unsp ulna, 7thR|Displ oblique fx shaft of unsp ulna, 7thR +C2844974|T037|AB|S52.233S|ICD10CM|Displaced oblique fracture of shaft of unsp ulna, sequela|Displaced oblique fracture of shaft of unsp ulna, sequela +C2844974|T037|PT|S52.233S|ICD10CM|Displaced oblique fracture of shaft of unspecified ulna, sequela|Displaced oblique fracture of shaft of unspecified ulna, sequela +C2844975|T037|AB|S52.234|ICD10CM|Nondisplaced oblique fracture of shaft of right ulna|Nondisplaced oblique fracture of shaft of right ulna +C2844975|T037|HT|S52.234|ICD10CM|Nondisplaced oblique fracture of shaft of right ulna|Nondisplaced oblique fracture of shaft of right ulna +C2844976|T037|AB|S52.234A|ICD10CM|Nondisplaced oblique fracture of shaft of right ulna, init|Nondisplaced oblique fracture of shaft of right ulna, init +C2844976|T037|PT|S52.234A|ICD10CM|Nondisplaced oblique fracture of shaft of right ulna, initial encounter for closed fracture|Nondisplaced oblique fracture of shaft of right ulna, initial encounter for closed fracture +C2844977|T037|AB|S52.234B|ICD10CM|Nondisp oblique fx shaft of r ulna, init for opn fx type I/2|Nondisp oblique fx shaft of r ulna, init for opn fx type I/2 +C2844978|T037|AB|S52.234C|ICD10CM|Nondisp oblique fx shaft of r ulna, 7thC|Nondisp oblique fx shaft of r ulna, 7thC +C2844979|T037|AB|S52.234D|ICD10CM|Nondisp oblique fx shaft of r ulna, 7thD|Nondisp oblique fx shaft of r ulna, 7thD +C2844980|T037|AB|S52.234E|ICD10CM|Nondisp oblique fx shaft of r ulna, 7thE|Nondisp oblique fx shaft of r ulna, 7thE +C2844981|T037|AB|S52.234F|ICD10CM|Nondisp oblique fx shaft of r ulna, 7thF|Nondisp oblique fx shaft of r ulna, 7thF +C2844982|T037|AB|S52.234G|ICD10CM|Nondisp oblique fx shaft of r ulna, 7thG|Nondisp oblique fx shaft of r ulna, 7thG +C2844983|T037|AB|S52.234H|ICD10CM|Nondisp oblique fx shaft of r ulna, 7thH|Nondisp oblique fx shaft of r ulna, 7thH +C2844984|T037|AB|S52.234J|ICD10CM|Nondisp oblique fx shaft of r ulna, 7thJ|Nondisp oblique fx shaft of r ulna, 7thJ +C2844985|T037|AB|S52.234K|ICD10CM|Nondisp oblique fx shaft of r ulna, 7thK|Nondisp oblique fx shaft of r ulna, 7thK +C2844986|T037|AB|S52.234M|ICD10CM|Nondisp oblique fx shaft of r ulna, 7thM|Nondisp oblique fx shaft of r ulna, 7thM +C2844987|T037|AB|S52.234N|ICD10CM|Nondisp oblique fx shaft of r ulna, 7thN|Nondisp oblique fx shaft of r ulna, 7thN +C2844988|T037|AB|S52.234P|ICD10CM|Nondisp oblique fx shaft of r ulna, 7thP|Nondisp oblique fx shaft of r ulna, 7thP +C2844989|T037|AB|S52.234Q|ICD10CM|Nondisp oblique fx shaft of r ulna, 7thQ|Nondisp oblique fx shaft of r ulna, 7thQ +C2844990|T037|AB|S52.234R|ICD10CM|Nondisp oblique fx shaft of r ulna, 7thR|Nondisp oblique fx shaft of r ulna, 7thR +C2844991|T037|AB|S52.234S|ICD10CM|Nondisp oblique fracture of shaft of right ulna, sequela|Nondisp oblique fracture of shaft of right ulna, sequela +C2844991|T037|PT|S52.234S|ICD10CM|Nondisplaced oblique fracture of shaft of right ulna, sequela|Nondisplaced oblique fracture of shaft of right ulna, sequela +C2844992|T037|AB|S52.235|ICD10CM|Nondisplaced oblique fracture of shaft of left ulna|Nondisplaced oblique fracture of shaft of left ulna +C2844992|T037|HT|S52.235|ICD10CM|Nondisplaced oblique fracture of shaft of left ulna|Nondisplaced oblique fracture of shaft of left ulna +C2844993|T037|AB|S52.235A|ICD10CM|Nondisplaced oblique fracture of shaft of left ulna, init|Nondisplaced oblique fracture of shaft of left ulna, init +C2844993|T037|PT|S52.235A|ICD10CM|Nondisplaced oblique fracture of shaft of left ulna, initial encounter for closed fracture|Nondisplaced oblique fracture of shaft of left ulna, initial encounter for closed fracture +C2844994|T037|AB|S52.235B|ICD10CM|Nondisp oblique fx shaft of l ulna, init for opn fx type I/2|Nondisp oblique fx shaft of l ulna, init for opn fx type I/2 +C2844995|T037|AB|S52.235C|ICD10CM|Nondisp oblique fx shaft of l ulna, 7thC|Nondisp oblique fx shaft of l ulna, 7thC +C2844996|T037|AB|S52.235D|ICD10CM|Nondisp oblique fx shaft of l ulna, 7thD|Nondisp oblique fx shaft of l ulna, 7thD +C2844997|T037|AB|S52.235E|ICD10CM|Nondisp oblique fx shaft of l ulna, 7thE|Nondisp oblique fx shaft of l ulna, 7thE +C2844998|T037|AB|S52.235F|ICD10CM|Nondisp oblique fx shaft of l ulna, 7thF|Nondisp oblique fx shaft of l ulna, 7thF +C2844999|T037|AB|S52.235G|ICD10CM|Nondisp oblique fx shaft of l ulna, 7thG|Nondisp oblique fx shaft of l ulna, 7thG +C2845000|T037|AB|S52.235H|ICD10CM|Nondisp oblique fx shaft of l ulna, 7thH|Nondisp oblique fx shaft of l ulna, 7thH +C2845001|T037|AB|S52.235J|ICD10CM|Nondisp oblique fx shaft of l ulna, 7thJ|Nondisp oblique fx shaft of l ulna, 7thJ +C2845002|T037|AB|S52.235K|ICD10CM|Nondisp oblique fx shaft of l ulna, 7thK|Nondisp oblique fx shaft of l ulna, 7thK +C2845003|T037|AB|S52.235M|ICD10CM|Nondisp oblique fx shaft of l ulna, 7thM|Nondisp oblique fx shaft of l ulna, 7thM +C2845004|T037|AB|S52.235N|ICD10CM|Nondisp oblique fx shaft of l ulna, 7thN|Nondisp oblique fx shaft of l ulna, 7thN +C2845005|T037|AB|S52.235P|ICD10CM|Nondisp oblique fx shaft of l ulna, 7thP|Nondisp oblique fx shaft of l ulna, 7thP +C2845006|T037|AB|S52.235Q|ICD10CM|Nondisp oblique fx shaft of l ulna, 7thQ|Nondisp oblique fx shaft of l ulna, 7thQ +C2845007|T037|AB|S52.235R|ICD10CM|Nondisp oblique fx shaft of l ulna, 7thR|Nondisp oblique fx shaft of l ulna, 7thR +C2845008|T037|AB|S52.235S|ICD10CM|Nondisplaced oblique fracture of shaft of left ulna, sequela|Nondisplaced oblique fracture of shaft of left ulna, sequela +C2845008|T037|PT|S52.235S|ICD10CM|Nondisplaced oblique fracture of shaft of left ulna, sequela|Nondisplaced oblique fracture of shaft of left ulna, sequela +C2845009|T037|AB|S52.236|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified ulna|Nondisplaced oblique fracture of shaft of unspecified ulna +C2845009|T037|HT|S52.236|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified ulna|Nondisplaced oblique fracture of shaft of unspecified ulna +C2845010|T037|AB|S52.236A|ICD10CM|Nondisplaced oblique fracture of shaft of unsp ulna, init|Nondisplaced oblique fracture of shaft of unsp ulna, init +C2845010|T037|PT|S52.236A|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified ulna, initial encounter for closed fracture|Nondisplaced oblique fracture of shaft of unspecified ulna, initial encounter for closed fracture +C2845011|T037|AB|S52.236B|ICD10CM|Nondisp oblique fx shaft of unsp ulna, 7thB|Nondisp oblique fx shaft of unsp ulna, 7thB +C2845012|T037|AB|S52.236C|ICD10CM|Nondisp oblique fx shaft of unsp ulna, 7thC|Nondisp oblique fx shaft of unsp ulna, 7thC +C2845013|T037|AB|S52.236D|ICD10CM|Nondisp oblique fx shaft of unsp ulna, 7thD|Nondisp oblique fx shaft of unsp ulna, 7thD +C2845014|T037|AB|S52.236E|ICD10CM|Nondisp oblique fx shaft of unsp ulna, 7thE|Nondisp oblique fx shaft of unsp ulna, 7thE +C2845015|T037|AB|S52.236F|ICD10CM|Nondisp oblique fx shaft of unsp ulna, 7thF|Nondisp oblique fx shaft of unsp ulna, 7thF +C2845016|T037|AB|S52.236G|ICD10CM|Nondisp oblique fx shaft of unsp ulna, 7thG|Nondisp oblique fx shaft of unsp ulna, 7thG +C2845017|T037|AB|S52.236H|ICD10CM|Nondisp oblique fx shaft of unsp ulna, 7thH|Nondisp oblique fx shaft of unsp ulna, 7thH +C2845018|T037|AB|S52.236J|ICD10CM|Nondisp oblique fx shaft of unsp ulna, 7thJ|Nondisp oblique fx shaft of unsp ulna, 7thJ +C2845019|T037|AB|S52.236K|ICD10CM|Nondisp oblique fx shaft of unsp ulna, 7thK|Nondisp oblique fx shaft of unsp ulna, 7thK +C2845020|T037|AB|S52.236M|ICD10CM|Nondisp oblique fx shaft of unsp ulna, 7thM|Nondisp oblique fx shaft of unsp ulna, 7thM +C2845021|T037|AB|S52.236N|ICD10CM|Nondisp oblique fx shaft of unsp ulna, 7thN|Nondisp oblique fx shaft of unsp ulna, 7thN +C2845022|T037|AB|S52.236P|ICD10CM|Nondisp oblique fx shaft of unsp ulna, 7thP|Nondisp oblique fx shaft of unsp ulna, 7thP +C2845023|T037|AB|S52.236Q|ICD10CM|Nondisp oblique fx shaft of unsp ulna, 7thQ|Nondisp oblique fx shaft of unsp ulna, 7thQ +C2845024|T037|AB|S52.236R|ICD10CM|Nondisp oblique fx shaft of unsp ulna, 7thR|Nondisp oblique fx shaft of unsp ulna, 7thR +C2845025|T037|AB|S52.236S|ICD10CM|Nondisplaced oblique fracture of shaft of unsp ulna, sequela|Nondisplaced oblique fracture of shaft of unsp ulna, sequela +C2845025|T037|PT|S52.236S|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified ulna, sequela|Nondisplaced oblique fracture of shaft of unspecified ulna, sequela +C2845026|T037|AB|S52.24|ICD10CM|Spiral fracture of shaft of ulna|Spiral fracture of shaft of ulna +C2845026|T037|HT|S52.24|ICD10CM|Spiral fracture of shaft of ulna|Spiral fracture of shaft of ulna +C2845027|T037|AB|S52.241|ICD10CM|Displaced spiral fracture of shaft of ulna, right arm|Displaced spiral fracture of shaft of ulna, right arm +C2845027|T037|HT|S52.241|ICD10CM|Displaced spiral fracture of shaft of ulna, right arm|Displaced spiral fracture of shaft of ulna, right arm +C2845028|T037|AB|S52.241A|ICD10CM|Displaced spiral fracture of shaft of ulna, right arm, init|Displaced spiral fracture of shaft of ulna, right arm, init +C2845028|T037|PT|S52.241A|ICD10CM|Displaced spiral fracture of shaft of ulna, right arm, initial encounter for closed fracture|Displaced spiral fracture of shaft of ulna, right arm, initial encounter for closed fracture +C2845029|T037|AB|S52.241B|ICD10CM|Displ spiral fx shaft of ulna, r arm, 7thB|Displ spiral fx shaft of ulna, r arm, 7thB +C2845030|T037|AB|S52.241C|ICD10CM|Displ spiral fx shaft of ulna, r arm, 7thC|Displ spiral fx shaft of ulna, r arm, 7thC +C2845031|T037|AB|S52.241D|ICD10CM|Displ spiral fx shaft of ulna, r arm, 7thD|Displ spiral fx shaft of ulna, r arm, 7thD +C2845032|T037|AB|S52.241E|ICD10CM|Displ spiral fx shaft of ulna, r arm, 7thE|Displ spiral fx shaft of ulna, r arm, 7thE +C2845033|T037|AB|S52.241F|ICD10CM|Displ spiral fx shaft of ulna, r arm, 7thF|Displ spiral fx shaft of ulna, r arm, 7thF +C2845034|T037|AB|S52.241G|ICD10CM|Displ spiral fx shaft of ulna, r arm, 7thG|Displ spiral fx shaft of ulna, r arm, 7thG +C2845035|T037|AB|S52.241H|ICD10CM|Displ spiral fx shaft of ulna, r arm, 7thH|Displ spiral fx shaft of ulna, r arm, 7thH +C2845036|T037|AB|S52.241J|ICD10CM|Displ spiral fx shaft of ulna, r arm, 7thJ|Displ spiral fx shaft of ulna, r arm, 7thJ +C2845037|T037|AB|S52.241K|ICD10CM|Displ spiral fx shaft of ulna, r arm, 7thK|Displ spiral fx shaft of ulna, r arm, 7thK +C2845038|T037|AB|S52.241M|ICD10CM|Displ spiral fx shaft of ulna, r arm, 7thM|Displ spiral fx shaft of ulna, r arm, 7thM +C2845039|T037|AB|S52.241N|ICD10CM|Displ spiral fx shaft of ulna, r arm, 7thN|Displ spiral fx shaft of ulna, r arm, 7thN +C2845040|T037|AB|S52.241P|ICD10CM|Displ spiral fx shaft of ulna, r arm, 7thP|Displ spiral fx shaft of ulna, r arm, 7thP +C2845041|T037|AB|S52.241Q|ICD10CM|Displ spiral fx shaft of ulna, r arm, 7thQ|Displ spiral fx shaft of ulna, r arm, 7thQ +C2845042|T037|AB|S52.241R|ICD10CM|Displ spiral fx shaft of ulna, r arm, 7thR|Displ spiral fx shaft of ulna, r arm, 7thR +C2845043|T037|PT|S52.241S|ICD10CM|Displaced spiral fracture of shaft of ulna, right arm, sequela|Displaced spiral fracture of shaft of ulna, right arm, sequela +C2845043|T037|AB|S52.241S|ICD10CM|Displaced spiral fx shaft of ulna, right arm, sequela|Displaced spiral fx shaft of ulna, right arm, sequela +C2845044|T037|AB|S52.242|ICD10CM|Displaced spiral fracture of shaft of ulna, left arm|Displaced spiral fracture of shaft of ulna, left arm +C2845044|T037|HT|S52.242|ICD10CM|Displaced spiral fracture of shaft of ulna, left arm|Displaced spiral fracture of shaft of ulna, left arm +C2845045|T037|AB|S52.242A|ICD10CM|Displaced spiral fracture of shaft of ulna, left arm, init|Displaced spiral fracture of shaft of ulna, left arm, init +C2845045|T037|PT|S52.242A|ICD10CM|Displaced spiral fracture of shaft of ulna, left arm, initial encounter for closed fracture|Displaced spiral fracture of shaft of ulna, left arm, initial encounter for closed fracture +C2845046|T037|AB|S52.242B|ICD10CM|Displ spiral fx shaft of ulna, l arm, 7thB|Displ spiral fx shaft of ulna, l arm, 7thB +C2845047|T037|AB|S52.242C|ICD10CM|Displ spiral fx shaft of ulna, l arm, 7thC|Displ spiral fx shaft of ulna, l arm, 7thC +C2845048|T037|AB|S52.242D|ICD10CM|Displ spiral fx shaft of ulna, l arm, 7thD|Displ spiral fx shaft of ulna, l arm, 7thD +C2845049|T037|AB|S52.242E|ICD10CM|Displ spiral fx shaft of ulna, l arm, 7thE|Displ spiral fx shaft of ulna, l arm, 7thE +C2845050|T037|AB|S52.242F|ICD10CM|Displ spiral fx shaft of ulna, l arm, 7thF|Displ spiral fx shaft of ulna, l arm, 7thF +C2845051|T037|AB|S52.242G|ICD10CM|Displ spiral fx shaft of ulna, l arm, 7thG|Displ spiral fx shaft of ulna, l arm, 7thG +C2845052|T037|AB|S52.242H|ICD10CM|Displ spiral fx shaft of ulna, l arm, 7thH|Displ spiral fx shaft of ulna, l arm, 7thH +C2845053|T037|AB|S52.242J|ICD10CM|Displ spiral fx shaft of ulna, l arm, 7thJ|Displ spiral fx shaft of ulna, l arm, 7thJ +C2845054|T037|AB|S52.242K|ICD10CM|Displ spiral fx shaft of ulna, l arm, 7thK|Displ spiral fx shaft of ulna, l arm, 7thK +C2845055|T037|AB|S52.242M|ICD10CM|Displ spiral fx shaft of ulna, l arm, 7thM|Displ spiral fx shaft of ulna, l arm, 7thM +C2845056|T037|AB|S52.242N|ICD10CM|Displ spiral fx shaft of ulna, l arm, 7thN|Displ spiral fx shaft of ulna, l arm, 7thN +C2845057|T037|AB|S52.242P|ICD10CM|Displ spiral fx shaft of ulna, l arm, 7thP|Displ spiral fx shaft of ulna, l arm, 7thP +C2845058|T037|AB|S52.242Q|ICD10CM|Displ spiral fx shaft of ulna, l arm, 7thQ|Displ spiral fx shaft of ulna, l arm, 7thQ +C2845059|T037|AB|S52.242R|ICD10CM|Displ spiral fx shaft of ulna, l arm, 7thR|Displ spiral fx shaft of ulna, l arm, 7thR +C2845060|T037|PT|S52.242S|ICD10CM|Displaced spiral fracture of shaft of ulna, left arm, sequela|Displaced spiral fracture of shaft of ulna, left arm, sequela +C2845060|T037|AB|S52.242S|ICD10CM|Displaced spiral fx shaft of ulna, left arm, sequela|Displaced spiral fx shaft of ulna, left arm, sequela +C2845061|T037|AB|S52.243|ICD10CM|Displaced spiral fracture of shaft of ulna, unspecified arm|Displaced spiral fracture of shaft of ulna, unspecified arm +C2845061|T037|HT|S52.243|ICD10CM|Displaced spiral fracture of shaft of ulna, unspecified arm|Displaced spiral fracture of shaft of ulna, unspecified arm +C2845062|T037|AB|S52.243A|ICD10CM|Displaced spiral fracture of shaft of ulna, unsp arm, init|Displaced spiral fracture of shaft of ulna, unsp arm, init +C2845062|T037|PT|S52.243A|ICD10CM|Displaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture|Displaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture +C2845063|T037|AB|S52.243B|ICD10CM|Displ spiral fx shaft of ulna, unsp arm, 7thB|Displ spiral fx shaft of ulna, unsp arm, 7thB +C2845064|T037|AB|S52.243C|ICD10CM|Displ spiral fx shaft of ulna, unsp arm, 7thC|Displ spiral fx shaft of ulna, unsp arm, 7thC +C2845065|T037|AB|S52.243D|ICD10CM|Displ spiral fx shaft of ulna, unsp arm, 7thD|Displ spiral fx shaft of ulna, unsp arm, 7thD +C2845066|T037|AB|S52.243E|ICD10CM|Displ spiral fx shaft of ulna, unsp arm, 7thE|Displ spiral fx shaft of ulna, unsp arm, 7thE +C2845067|T037|AB|S52.243F|ICD10CM|Displ spiral fx shaft of ulna, unsp arm, 7thF|Displ spiral fx shaft of ulna, unsp arm, 7thF +C2845068|T037|AB|S52.243G|ICD10CM|Displ spiral fx shaft of ulna, unsp arm, 7thG|Displ spiral fx shaft of ulna, unsp arm, 7thG +C2845069|T037|AB|S52.243H|ICD10CM|Displ spiral fx shaft of ulna, unsp arm, 7thH|Displ spiral fx shaft of ulna, unsp arm, 7thH +C2845070|T037|AB|S52.243J|ICD10CM|Displ spiral fx shaft of ulna, unsp arm, 7thJ|Displ spiral fx shaft of ulna, unsp arm, 7thJ +C2845071|T037|AB|S52.243K|ICD10CM|Displ spiral fx shaft of ulna, unsp arm, 7thK|Displ spiral fx shaft of ulna, unsp arm, 7thK +C2845072|T037|AB|S52.243M|ICD10CM|Displ spiral fx shaft of ulna, unsp arm, 7thM|Displ spiral fx shaft of ulna, unsp arm, 7thM +C2845073|T037|AB|S52.243N|ICD10CM|Displ spiral fx shaft of ulna, unsp arm, 7thN|Displ spiral fx shaft of ulna, unsp arm, 7thN +C2845074|T037|AB|S52.243P|ICD10CM|Displ spiral fx shaft of ulna, unsp arm, 7thP|Displ spiral fx shaft of ulna, unsp arm, 7thP +C2845075|T037|AB|S52.243Q|ICD10CM|Displ spiral fx shaft of ulna, unsp arm, 7thQ|Displ spiral fx shaft of ulna, unsp arm, 7thQ +C2845076|T037|AB|S52.243R|ICD10CM|Displ spiral fx shaft of ulna, unsp arm, 7thR|Displ spiral fx shaft of ulna, unsp arm, 7thR +C2845077|T037|PT|S52.243S|ICD10CM|Displaced spiral fracture of shaft of ulna, unspecified arm, sequela|Displaced spiral fracture of shaft of ulna, unspecified arm, sequela +C2845077|T037|AB|S52.243S|ICD10CM|Displaced spiral fx shaft of ulna, unsp arm, sequela|Displaced spiral fx shaft of ulna, unsp arm, sequela +C2845078|T037|AB|S52.244|ICD10CM|Nondisplaced spiral fracture of shaft of ulna, right arm|Nondisplaced spiral fracture of shaft of ulna, right arm +C2845078|T037|HT|S52.244|ICD10CM|Nondisplaced spiral fracture of shaft of ulna, right arm|Nondisplaced spiral fracture of shaft of ulna, right arm +C2845079|T037|AB|S52.244A|ICD10CM|Nondisp spiral fracture of shaft of ulna, right arm, init|Nondisp spiral fracture of shaft of ulna, right arm, init +C2845079|T037|PT|S52.244A|ICD10CM|Nondisplaced spiral fracture of shaft of ulna, right arm, initial encounter for closed fracture|Nondisplaced spiral fracture of shaft of ulna, right arm, initial encounter for closed fracture +C2845080|T037|AB|S52.244B|ICD10CM|Nondisp spiral fx shaft of ulna, r arm, 7thB|Nondisp spiral fx shaft of ulna, r arm, 7thB +C2845081|T037|AB|S52.244C|ICD10CM|Nondisp spiral fx shaft of ulna, r arm, 7thC|Nondisp spiral fx shaft of ulna, r arm, 7thC +C2845082|T037|AB|S52.244D|ICD10CM|Nondisp spiral fx shaft of ulna, r arm, 7thD|Nondisp spiral fx shaft of ulna, r arm, 7thD +C2845083|T037|AB|S52.244E|ICD10CM|Nondisp spiral fx shaft of ulna, r arm, 7thE|Nondisp spiral fx shaft of ulna, r arm, 7thE +C2845084|T037|AB|S52.244F|ICD10CM|Nondisp spiral fx shaft of ulna, r arm, 7thF|Nondisp spiral fx shaft of ulna, r arm, 7thF +C2845085|T037|AB|S52.244G|ICD10CM|Nondisp spiral fx shaft of ulna, r arm, 7thG|Nondisp spiral fx shaft of ulna, r arm, 7thG +C2845086|T037|AB|S52.244H|ICD10CM|Nondisp spiral fx shaft of ulna, r arm, 7thH|Nondisp spiral fx shaft of ulna, r arm, 7thH +C2845087|T037|AB|S52.244J|ICD10CM|Nondisp spiral fx shaft of ulna, r arm, 7thJ|Nondisp spiral fx shaft of ulna, r arm, 7thJ +C2845088|T037|AB|S52.244K|ICD10CM|Nondisp spiral fx shaft of ulna, r arm, 7thK|Nondisp spiral fx shaft of ulna, r arm, 7thK +C2845089|T037|AB|S52.244M|ICD10CM|Nondisp spiral fx shaft of ulna, r arm, 7thM|Nondisp spiral fx shaft of ulna, r arm, 7thM +C2845090|T037|AB|S52.244N|ICD10CM|Nondisp spiral fx shaft of ulna, r arm, 7thN|Nondisp spiral fx shaft of ulna, r arm, 7thN +C2845091|T037|AB|S52.244P|ICD10CM|Nondisp spiral fx shaft of ulna, r arm, 7thP|Nondisp spiral fx shaft of ulna, r arm, 7thP +C2845092|T037|AB|S52.244Q|ICD10CM|Nondisp spiral fx shaft of ulna, r arm, 7thQ|Nondisp spiral fx shaft of ulna, r arm, 7thQ +C2845093|T037|AB|S52.244R|ICD10CM|Nondisp spiral fx shaft of ulna, r arm, 7thR|Nondisp spiral fx shaft of ulna, r arm, 7thR +C2845094|T037|AB|S52.244S|ICD10CM|Nondisp spiral fracture of shaft of ulna, right arm, sequela|Nondisp spiral fracture of shaft of ulna, right arm, sequela +C2845094|T037|PT|S52.244S|ICD10CM|Nondisplaced spiral fracture of shaft of ulna, right arm, sequela|Nondisplaced spiral fracture of shaft of ulna, right arm, sequela +C2845095|T037|AB|S52.245|ICD10CM|Nondisplaced spiral fracture of shaft of ulna, left arm|Nondisplaced spiral fracture of shaft of ulna, left arm +C2845095|T037|HT|S52.245|ICD10CM|Nondisplaced spiral fracture of shaft of ulna, left arm|Nondisplaced spiral fracture of shaft of ulna, left arm +C2845096|T037|AB|S52.245A|ICD10CM|Nondisp spiral fracture of shaft of ulna, left arm, init|Nondisp spiral fracture of shaft of ulna, left arm, init +C2845096|T037|PT|S52.245A|ICD10CM|Nondisplaced spiral fracture of shaft of ulna, left arm, initial encounter for closed fracture|Nondisplaced spiral fracture of shaft of ulna, left arm, initial encounter for closed fracture +C2845097|T037|AB|S52.245B|ICD10CM|Nondisp spiral fx shaft of ulna, l arm, 7thB|Nondisp spiral fx shaft of ulna, l arm, 7thB +C2845098|T037|AB|S52.245C|ICD10CM|Nondisp spiral fx shaft of ulna, l arm, 7thC|Nondisp spiral fx shaft of ulna, l arm, 7thC +C2845099|T037|AB|S52.245D|ICD10CM|Nondisp spiral fx shaft of ulna, l arm, 7thD|Nondisp spiral fx shaft of ulna, l arm, 7thD +C2845100|T037|AB|S52.245E|ICD10CM|Nondisp spiral fx shaft of ulna, l arm, 7thE|Nondisp spiral fx shaft of ulna, l arm, 7thE +C2845101|T037|AB|S52.245F|ICD10CM|Nondisp spiral fx shaft of ulna, l arm, 7thF|Nondisp spiral fx shaft of ulna, l arm, 7thF +C2845102|T037|AB|S52.245G|ICD10CM|Nondisp spiral fx shaft of ulna, l arm, 7thG|Nondisp spiral fx shaft of ulna, l arm, 7thG +C2845103|T037|AB|S52.245H|ICD10CM|Nondisp spiral fx shaft of ulna, l arm, 7thH|Nondisp spiral fx shaft of ulna, l arm, 7thH +C2845104|T037|AB|S52.245J|ICD10CM|Nondisp spiral fx shaft of ulna, l arm, 7thJ|Nondisp spiral fx shaft of ulna, l arm, 7thJ +C2845105|T037|AB|S52.245K|ICD10CM|Nondisp spiral fx shaft of ulna, l arm, 7thK|Nondisp spiral fx shaft of ulna, l arm, 7thK +C2845106|T037|AB|S52.245M|ICD10CM|Nondisp spiral fx shaft of ulna, l arm, 7thM|Nondisp spiral fx shaft of ulna, l arm, 7thM +C2845107|T037|AB|S52.245N|ICD10CM|Nondisp spiral fx shaft of ulna, l arm, 7thN|Nondisp spiral fx shaft of ulna, l arm, 7thN +C2845108|T037|AB|S52.245P|ICD10CM|Nondisp spiral fx shaft of ulna, l arm, 7thP|Nondisp spiral fx shaft of ulna, l arm, 7thP +C2845109|T037|AB|S52.245Q|ICD10CM|Nondisp spiral fx shaft of ulna, l arm, 7thQ|Nondisp spiral fx shaft of ulna, l arm, 7thQ +C2845110|T037|AB|S52.245R|ICD10CM|Nondisp spiral fx shaft of ulna, l arm, 7thR|Nondisp spiral fx shaft of ulna, l arm, 7thR +C2845111|T037|AB|S52.245S|ICD10CM|Nondisp spiral fracture of shaft of ulna, left arm, sequela|Nondisp spiral fracture of shaft of ulna, left arm, sequela +C2845111|T037|PT|S52.245S|ICD10CM|Nondisplaced spiral fracture of shaft of ulna, left arm, sequela|Nondisplaced spiral fracture of shaft of ulna, left arm, sequela +C2845112|T037|AB|S52.246|ICD10CM|Nondisplaced spiral fracture of shaft of ulna, unsp arm|Nondisplaced spiral fracture of shaft of ulna, unsp arm +C2845112|T037|HT|S52.246|ICD10CM|Nondisplaced spiral fracture of shaft of ulna, unspecified arm|Nondisplaced spiral fracture of shaft of ulna, unspecified arm +C2845113|T037|AB|S52.246A|ICD10CM|Nondisp spiral fracture of shaft of ulna, unsp arm, init|Nondisp spiral fracture of shaft of ulna, unsp arm, init +C2845114|T037|AB|S52.246B|ICD10CM|Nondisp spiral fx shaft of ulna, unsp arm, 7thB|Nondisp spiral fx shaft of ulna, unsp arm, 7thB +C2845115|T037|AB|S52.246C|ICD10CM|Nondisp spiral fx shaft of ulna, unsp arm, 7thC|Nondisp spiral fx shaft of ulna, unsp arm, 7thC +C2845116|T037|AB|S52.246D|ICD10CM|Nondisp spiral fx shaft of ulna, unsp arm, 7thD|Nondisp spiral fx shaft of ulna, unsp arm, 7thD +C2845117|T037|AB|S52.246E|ICD10CM|Nondisp spiral fx shaft of ulna, unsp arm, 7thE|Nondisp spiral fx shaft of ulna, unsp arm, 7thE +C2845118|T037|AB|S52.246F|ICD10CM|Nondisp spiral fx shaft of ulna, unsp arm, 7thF|Nondisp spiral fx shaft of ulna, unsp arm, 7thF +C2845119|T037|AB|S52.246G|ICD10CM|Nondisp spiral fx shaft of ulna, unsp arm, 7thG|Nondisp spiral fx shaft of ulna, unsp arm, 7thG +C2845120|T037|AB|S52.246H|ICD10CM|Nondisp spiral fx shaft of ulna, unsp arm, 7thH|Nondisp spiral fx shaft of ulna, unsp arm, 7thH +C2845121|T037|AB|S52.246J|ICD10CM|Nondisp spiral fx shaft of ulna, unsp arm, 7thJ|Nondisp spiral fx shaft of ulna, unsp arm, 7thJ +C2845122|T037|AB|S52.246K|ICD10CM|Nondisp spiral fx shaft of ulna, unsp arm, 7thK|Nondisp spiral fx shaft of ulna, unsp arm, 7thK +C2845123|T037|AB|S52.246M|ICD10CM|Nondisp spiral fx shaft of ulna, unsp arm, 7thM|Nondisp spiral fx shaft of ulna, unsp arm, 7thM +C2845124|T037|AB|S52.246N|ICD10CM|Nondisp spiral fx shaft of ulna, unsp arm, 7thN|Nondisp spiral fx shaft of ulna, unsp arm, 7thN +C2845125|T037|AB|S52.246P|ICD10CM|Nondisp spiral fx shaft of ulna, unsp arm, 7thP|Nondisp spiral fx shaft of ulna, unsp arm, 7thP +C2845126|T037|AB|S52.246Q|ICD10CM|Nondisp spiral fx shaft of ulna, unsp arm, 7thQ|Nondisp spiral fx shaft of ulna, unsp arm, 7thQ +C2845127|T037|AB|S52.246R|ICD10CM|Nondisp spiral fx shaft of ulna, unsp arm, 7thR|Nondisp spiral fx shaft of ulna, unsp arm, 7thR +C2845128|T037|AB|S52.246S|ICD10CM|Nondisp spiral fracture of shaft of ulna, unsp arm, sequela|Nondisp spiral fracture of shaft of ulna, unsp arm, sequela +C2845128|T037|PT|S52.246S|ICD10CM|Nondisplaced spiral fracture of shaft of ulna, unspecified arm, sequela|Nondisplaced spiral fracture of shaft of ulna, unspecified arm, sequela +C2845129|T037|AB|S52.25|ICD10CM|Comminuted fracture of shaft of ulna|Comminuted fracture of shaft of ulna +C2845129|T037|HT|S52.25|ICD10CM|Comminuted fracture of shaft of ulna|Comminuted fracture of shaft of ulna +C2845130|T037|AB|S52.251|ICD10CM|Displaced comminuted fracture of shaft of ulna, right arm|Displaced comminuted fracture of shaft of ulna, right arm +C2845130|T037|HT|S52.251|ICD10CM|Displaced comminuted fracture of shaft of ulna, right arm|Displaced comminuted fracture of shaft of ulna, right arm +C2845131|T037|PT|S52.251A|ICD10CM|Displaced comminuted fracture of shaft of ulna, right arm, initial encounter for closed fracture|Displaced comminuted fracture of shaft of ulna, right arm, initial encounter for closed fracture +C2845131|T037|AB|S52.251A|ICD10CM|Displaced comminuted fx shaft of ulna, right arm, init|Displaced comminuted fx shaft of ulna, right arm, init +C2845132|T037|AB|S52.251B|ICD10CM|Displ commnt fx shaft of ulna, r arm, 7thB|Displ commnt fx shaft of ulna, r arm, 7thB +C2845133|T037|AB|S52.251C|ICD10CM|Displ commnt fx shaft of ulna, r arm, 7thC|Displ commnt fx shaft of ulna, r arm, 7thC +C2845134|T037|AB|S52.251D|ICD10CM|Displ commnt fx shaft of ulna, r arm, 7thD|Displ commnt fx shaft of ulna, r arm, 7thD +C2845135|T037|AB|S52.251E|ICD10CM|Displ commnt fx shaft of ulna, r arm, 7thE|Displ commnt fx shaft of ulna, r arm, 7thE +C2845136|T037|AB|S52.251F|ICD10CM|Displ commnt fx shaft of ulna, r arm, 7thF|Displ commnt fx shaft of ulna, r arm, 7thF +C2845137|T037|AB|S52.251G|ICD10CM|Displ commnt fx shaft of ulna, r arm, 7thG|Displ commnt fx shaft of ulna, r arm, 7thG +C2845138|T037|AB|S52.251H|ICD10CM|Displ commnt fx shaft of ulna, r arm, 7thH|Displ commnt fx shaft of ulna, r arm, 7thH +C2845139|T037|AB|S52.251J|ICD10CM|Displ commnt fx shaft of ulna, r arm, 7thJ|Displ commnt fx shaft of ulna, r arm, 7thJ +C2845140|T037|AB|S52.251K|ICD10CM|Displ commnt fx shaft of ulna, r arm, 7thK|Displ commnt fx shaft of ulna, r arm, 7thK +C2845141|T037|AB|S52.251M|ICD10CM|Displ commnt fx shaft of ulna, r arm, 7thM|Displ commnt fx shaft of ulna, r arm, 7thM +C2845142|T037|AB|S52.251N|ICD10CM|Displ commnt fx shaft of ulna, r arm, 7thN|Displ commnt fx shaft of ulna, r arm, 7thN +C2845143|T037|AB|S52.251P|ICD10CM|Displ commnt fx shaft of ulna, r arm, 7thP|Displ commnt fx shaft of ulna, r arm, 7thP +C2845144|T037|AB|S52.251Q|ICD10CM|Displ commnt fx shaft of ulna, r arm, 7thQ|Displ commnt fx shaft of ulna, r arm, 7thQ +C2845145|T037|AB|S52.251R|ICD10CM|Displ commnt fx shaft of ulna, r arm, 7thR|Displ commnt fx shaft of ulna, r arm, 7thR +C2845146|T037|PT|S52.251S|ICD10CM|Displaced comminuted fracture of shaft of ulna, right arm, sequela|Displaced comminuted fracture of shaft of ulna, right arm, sequela +C2845146|T037|AB|S52.251S|ICD10CM|Displaced comminuted fx shaft of ulna, right arm, sequela|Displaced comminuted fx shaft of ulna, right arm, sequela +C2845147|T037|AB|S52.252|ICD10CM|Displaced comminuted fracture of shaft of ulna, left arm|Displaced comminuted fracture of shaft of ulna, left arm +C2845147|T037|HT|S52.252|ICD10CM|Displaced comminuted fracture of shaft of ulna, left arm|Displaced comminuted fracture of shaft of ulna, left arm +C2845148|T037|PT|S52.252A|ICD10CM|Displaced comminuted fracture of shaft of ulna, left arm, initial encounter for closed fracture|Displaced comminuted fracture of shaft of ulna, left arm, initial encounter for closed fracture +C2845148|T037|AB|S52.252A|ICD10CM|Displaced comminuted fx shaft of ulna, left arm, init|Displaced comminuted fx shaft of ulna, left arm, init +C2845149|T037|AB|S52.252B|ICD10CM|Displ commnt fx shaft of ulna, l arm, 7thB|Displ commnt fx shaft of ulna, l arm, 7thB +C2845150|T037|AB|S52.252C|ICD10CM|Displ commnt fx shaft of ulna, l arm, 7thC|Displ commnt fx shaft of ulna, l arm, 7thC +C2845151|T037|AB|S52.252D|ICD10CM|Displ commnt fx shaft of ulna, l arm, 7thD|Displ commnt fx shaft of ulna, l arm, 7thD +C2845152|T037|AB|S52.252E|ICD10CM|Displ commnt fx shaft of ulna, l arm, 7thE|Displ commnt fx shaft of ulna, l arm, 7thE +C2845153|T037|AB|S52.252F|ICD10CM|Displ commnt fx shaft of ulna, l arm, 7thF|Displ commnt fx shaft of ulna, l arm, 7thF +C2845154|T037|AB|S52.252G|ICD10CM|Displ commnt fx shaft of ulna, l arm, 7thG|Displ commnt fx shaft of ulna, l arm, 7thG +C2845155|T037|AB|S52.252H|ICD10CM|Displ commnt fx shaft of ulna, l arm, 7thH|Displ commnt fx shaft of ulna, l arm, 7thH +C2845156|T037|AB|S52.252J|ICD10CM|Displ commnt fx shaft of ulna, l arm, 7thJ|Displ commnt fx shaft of ulna, l arm, 7thJ +C2845157|T037|AB|S52.252K|ICD10CM|Displ commnt fx shaft of ulna, l arm, 7thK|Displ commnt fx shaft of ulna, l arm, 7thK +C2845158|T037|AB|S52.252M|ICD10CM|Displ commnt fx shaft of ulna, l arm, 7thM|Displ commnt fx shaft of ulna, l arm, 7thM +C2845159|T037|AB|S52.252N|ICD10CM|Displ commnt fx shaft of ulna, l arm, 7thN|Displ commnt fx shaft of ulna, l arm, 7thN +C2845160|T037|AB|S52.252P|ICD10CM|Displ commnt fx shaft of ulna, l arm, 7thP|Displ commnt fx shaft of ulna, l arm, 7thP +C2845161|T037|AB|S52.252Q|ICD10CM|Displ commnt fx shaft of ulna, l arm, 7thQ|Displ commnt fx shaft of ulna, l arm, 7thQ +C2845162|T037|AB|S52.252R|ICD10CM|Displ commnt fx shaft of ulna, l arm, 7thR|Displ commnt fx shaft of ulna, l arm, 7thR +C2845163|T037|PT|S52.252S|ICD10CM|Displaced comminuted fracture of shaft of ulna, left arm, sequela|Displaced comminuted fracture of shaft of ulna, left arm, sequela +C2845163|T037|AB|S52.252S|ICD10CM|Displaced comminuted fx shaft of ulna, left arm, sequela|Displaced comminuted fx shaft of ulna, left arm, sequela +C2845164|T037|AB|S52.253|ICD10CM|Displaced comminuted fracture of shaft of ulna, unsp arm|Displaced comminuted fracture of shaft of ulna, unsp arm +C2845164|T037|HT|S52.253|ICD10CM|Displaced comminuted fracture of shaft of ulna, unspecified arm|Displaced comminuted fracture of shaft of ulna, unspecified arm +C2845165|T037|AB|S52.253A|ICD10CM|Displaced comminuted fx shaft of ulna, unsp arm, init|Displaced comminuted fx shaft of ulna, unsp arm, init +C2845166|T037|AB|S52.253B|ICD10CM|Displ commnt fx shaft of ulna, unsp arm, 7thB|Displ commnt fx shaft of ulna, unsp arm, 7thB +C2845167|T037|AB|S52.253C|ICD10CM|Displ commnt fx shaft of ulna, unsp arm, 7thC|Displ commnt fx shaft of ulna, unsp arm, 7thC +C2845168|T037|AB|S52.253D|ICD10CM|Displ commnt fx shaft of ulna, unsp arm, 7thD|Displ commnt fx shaft of ulna, unsp arm, 7thD +C2845169|T037|AB|S52.253E|ICD10CM|Displ commnt fx shaft of ulna, unsp arm, 7thE|Displ commnt fx shaft of ulna, unsp arm, 7thE +C2845170|T037|AB|S52.253F|ICD10CM|Displ commnt fx shaft of ulna, unsp arm, 7thF|Displ commnt fx shaft of ulna, unsp arm, 7thF +C2845171|T037|AB|S52.253G|ICD10CM|Displ commnt fx shaft of ulna, unsp arm, 7thG|Displ commnt fx shaft of ulna, unsp arm, 7thG +C2845172|T037|AB|S52.253H|ICD10CM|Displ commnt fx shaft of ulna, unsp arm, 7thH|Displ commnt fx shaft of ulna, unsp arm, 7thH +C2845173|T037|AB|S52.253J|ICD10CM|Displ commnt fx shaft of ulna, unsp arm, 7thJ|Displ commnt fx shaft of ulna, unsp arm, 7thJ +C2845174|T037|AB|S52.253K|ICD10CM|Displ commnt fx shaft of ulna, unsp arm, 7thK|Displ commnt fx shaft of ulna, unsp arm, 7thK +C2845175|T037|AB|S52.253M|ICD10CM|Displ commnt fx shaft of ulna, unsp arm, 7thM|Displ commnt fx shaft of ulna, unsp arm, 7thM +C2845176|T037|AB|S52.253N|ICD10CM|Displ commnt fx shaft of ulna, unsp arm, 7thN|Displ commnt fx shaft of ulna, unsp arm, 7thN +C2845177|T037|AB|S52.253P|ICD10CM|Displ commnt fx shaft of ulna, unsp arm, 7thP|Displ commnt fx shaft of ulna, unsp arm, 7thP +C2845178|T037|AB|S52.253Q|ICD10CM|Displ commnt fx shaft of ulna, unsp arm, 7thQ|Displ commnt fx shaft of ulna, unsp arm, 7thQ +C2845179|T037|AB|S52.253R|ICD10CM|Displ commnt fx shaft of ulna, unsp arm, 7thR|Displ commnt fx shaft of ulna, unsp arm, 7thR +C2845180|T037|PT|S52.253S|ICD10CM|Displaced comminuted fracture of shaft of ulna, unspecified arm, sequela|Displaced comminuted fracture of shaft of ulna, unspecified arm, sequela +C2845180|T037|AB|S52.253S|ICD10CM|Displaced comminuted fx shaft of ulna, unsp arm, sequela|Displaced comminuted fx shaft of ulna, unsp arm, sequela +C2845181|T037|AB|S52.254|ICD10CM|Nondisplaced comminuted fracture of shaft of ulna, right arm|Nondisplaced comminuted fracture of shaft of ulna, right arm +C2845181|T037|HT|S52.254|ICD10CM|Nondisplaced comminuted fracture of shaft of ulna, right arm|Nondisplaced comminuted fracture of shaft of ulna, right arm +C2845182|T037|AB|S52.254A|ICD10CM|Nondisp comminuted fx shaft of ulna, right arm, init|Nondisp comminuted fx shaft of ulna, right arm, init +C2845182|T037|PT|S52.254A|ICD10CM|Nondisplaced comminuted fracture of shaft of ulna, right arm, initial encounter for closed fracture|Nondisplaced comminuted fracture of shaft of ulna, right arm, initial encounter for closed fracture +C2845183|T037|AB|S52.254B|ICD10CM|Nondisp commnt fx shaft of ulna, r arm, 7thB|Nondisp commnt fx shaft of ulna, r arm, 7thB +C2845184|T037|AB|S52.254C|ICD10CM|Nondisp commnt fx shaft of ulna, r arm, 7thC|Nondisp commnt fx shaft of ulna, r arm, 7thC +C2845185|T037|AB|S52.254D|ICD10CM|Nondisp commnt fx shaft of ulna, r arm, 7thD|Nondisp commnt fx shaft of ulna, r arm, 7thD +C2845186|T037|AB|S52.254E|ICD10CM|Nondisp commnt fx shaft of ulna, r arm, 7thE|Nondisp commnt fx shaft of ulna, r arm, 7thE +C2845187|T037|AB|S52.254F|ICD10CM|Nondisp commnt fx shaft of ulna, r arm, 7thF|Nondisp commnt fx shaft of ulna, r arm, 7thF +C2845188|T037|AB|S52.254G|ICD10CM|Nondisp commnt fx shaft of ulna, r arm, 7thG|Nondisp commnt fx shaft of ulna, r arm, 7thG +C2845189|T037|AB|S52.254H|ICD10CM|Nondisp commnt fx shaft of ulna, r arm, 7thH|Nondisp commnt fx shaft of ulna, r arm, 7thH +C2845190|T037|AB|S52.254J|ICD10CM|Nondisp commnt fx shaft of ulna, r arm, 7thJ|Nondisp commnt fx shaft of ulna, r arm, 7thJ +C2845191|T037|AB|S52.254K|ICD10CM|Nondisp commnt fx shaft of ulna, r arm, 7thK|Nondisp commnt fx shaft of ulna, r arm, 7thK +C2845192|T037|AB|S52.254M|ICD10CM|Nondisp commnt fx shaft of ulna, r arm, 7thM|Nondisp commnt fx shaft of ulna, r arm, 7thM +C2845193|T037|AB|S52.254N|ICD10CM|Nondisp commnt fx shaft of ulna, r arm, 7thN|Nondisp commnt fx shaft of ulna, r arm, 7thN +C2845194|T037|AB|S52.254P|ICD10CM|Nondisp commnt fx shaft of ulna, r arm, 7thP|Nondisp commnt fx shaft of ulna, r arm, 7thP +C2845195|T037|AB|S52.254Q|ICD10CM|Nondisp commnt fx shaft of ulna, r arm, 7thQ|Nondisp commnt fx shaft of ulna, r arm, 7thQ +C2845196|T037|AB|S52.254R|ICD10CM|Nondisp commnt fx shaft of ulna, r arm, 7thR|Nondisp commnt fx shaft of ulna, r arm, 7thR +C2845197|T037|AB|S52.254S|ICD10CM|Nondisp comminuted fx shaft of ulna, right arm, sequela|Nondisp comminuted fx shaft of ulna, right arm, sequela +C2845197|T037|PT|S52.254S|ICD10CM|Nondisplaced comminuted fracture of shaft of ulna, right arm, sequela|Nondisplaced comminuted fracture of shaft of ulna, right arm, sequela +C2845198|T037|AB|S52.255|ICD10CM|Nondisplaced comminuted fracture of shaft of ulna, left arm|Nondisplaced comminuted fracture of shaft of ulna, left arm +C2845198|T037|HT|S52.255|ICD10CM|Nondisplaced comminuted fracture of shaft of ulna, left arm|Nondisplaced comminuted fracture of shaft of ulna, left arm +C2845199|T037|AB|S52.255A|ICD10CM|Nondisp comminuted fracture of shaft of ulna, left arm, init|Nondisp comminuted fracture of shaft of ulna, left arm, init +C2845199|T037|PT|S52.255A|ICD10CM|Nondisplaced comminuted fracture of shaft of ulna, left arm, initial encounter for closed fracture|Nondisplaced comminuted fracture of shaft of ulna, left arm, initial encounter for closed fracture +C2845200|T037|AB|S52.255B|ICD10CM|Nondisp commnt fx shaft of ulna, l arm, 7thB|Nondisp commnt fx shaft of ulna, l arm, 7thB +C2845201|T037|AB|S52.255C|ICD10CM|Nondisp commnt fx shaft of ulna, l arm, 7thC|Nondisp commnt fx shaft of ulna, l arm, 7thC +C2845202|T037|AB|S52.255D|ICD10CM|Nondisp commnt fx shaft of ulna, l arm, 7thD|Nondisp commnt fx shaft of ulna, l arm, 7thD +C2845203|T037|AB|S52.255E|ICD10CM|Nondisp commnt fx shaft of ulna, l arm, 7thE|Nondisp commnt fx shaft of ulna, l arm, 7thE +C2845204|T037|AB|S52.255F|ICD10CM|Nondisp commnt fx shaft of ulna, l arm, 7thF|Nondisp commnt fx shaft of ulna, l arm, 7thF +C2845205|T037|AB|S52.255G|ICD10CM|Nondisp commnt fx shaft of ulna, l arm, 7thG|Nondisp commnt fx shaft of ulna, l arm, 7thG +C2845206|T037|AB|S52.255H|ICD10CM|Nondisp commnt fx shaft of ulna, l arm, 7thH|Nondisp commnt fx shaft of ulna, l arm, 7thH +C2845207|T037|AB|S52.255J|ICD10CM|Nondisp commnt fx shaft of ulna, l arm, 7thJ|Nondisp commnt fx shaft of ulna, l arm, 7thJ +C2845208|T037|AB|S52.255K|ICD10CM|Nondisp commnt fx shaft of ulna, l arm, 7thK|Nondisp commnt fx shaft of ulna, l arm, 7thK +C2845209|T037|AB|S52.255M|ICD10CM|Nondisp commnt fx shaft of ulna, l arm, 7thM|Nondisp commnt fx shaft of ulna, l arm, 7thM +C2845210|T037|AB|S52.255N|ICD10CM|Nondisp commnt fx shaft of ulna, l arm, 7thN|Nondisp commnt fx shaft of ulna, l arm, 7thN +C2845211|T037|AB|S52.255P|ICD10CM|Nondisp commnt fx shaft of ulna, l arm, 7thP|Nondisp commnt fx shaft of ulna, l arm, 7thP +C2845212|T037|AB|S52.255Q|ICD10CM|Nondisp commnt fx shaft of ulna, l arm, 7thQ|Nondisp commnt fx shaft of ulna, l arm, 7thQ +C2845213|T037|AB|S52.255R|ICD10CM|Nondisp commnt fx shaft of ulna, l arm, 7thR|Nondisp commnt fx shaft of ulna, l arm, 7thR +C2845214|T037|AB|S52.255S|ICD10CM|Nondisp comminuted fx shaft of ulna, left arm, sequela|Nondisp comminuted fx shaft of ulna, left arm, sequela +C2845214|T037|PT|S52.255S|ICD10CM|Nondisplaced comminuted fracture of shaft of ulna, left arm, sequela|Nondisplaced comminuted fracture of shaft of ulna, left arm, sequela +C2845215|T037|AB|S52.256|ICD10CM|Nondisplaced comminuted fracture of shaft of ulna, unsp arm|Nondisplaced comminuted fracture of shaft of ulna, unsp arm +C2845215|T037|HT|S52.256|ICD10CM|Nondisplaced comminuted fracture of shaft of ulna, unspecified arm|Nondisplaced comminuted fracture of shaft of ulna, unspecified arm +C2845216|T037|AB|S52.256A|ICD10CM|Nondisp comminuted fracture of shaft of ulna, unsp arm, init|Nondisp comminuted fracture of shaft of ulna, unsp arm, init +C2845217|T037|AB|S52.256B|ICD10CM|Nondisp commnt fx shaft of ulna, unsp arm, 7thB|Nondisp commnt fx shaft of ulna, unsp arm, 7thB +C2845218|T037|AB|S52.256C|ICD10CM|Nondisp commnt fx shaft of ulna, unsp arm, 7thC|Nondisp commnt fx shaft of ulna, unsp arm, 7thC +C2845219|T037|AB|S52.256D|ICD10CM|Nondisp commnt fx shaft of ulna, unsp arm, 7thD|Nondisp commnt fx shaft of ulna, unsp arm, 7thD +C2845220|T037|AB|S52.256E|ICD10CM|Nondisp commnt fx shaft of ulna, unsp arm, 7thE|Nondisp commnt fx shaft of ulna, unsp arm, 7thE +C2845221|T037|AB|S52.256F|ICD10CM|Nondisp commnt fx shaft of ulna, unsp arm, 7thF|Nondisp commnt fx shaft of ulna, unsp arm, 7thF +C2845222|T037|AB|S52.256G|ICD10CM|Nondisp commnt fx shaft of ulna, unsp arm, 7thG|Nondisp commnt fx shaft of ulna, unsp arm, 7thG +C2845223|T037|AB|S52.256H|ICD10CM|Nondisp commnt fx shaft of ulna, unsp arm, 7thH|Nondisp commnt fx shaft of ulna, unsp arm, 7thH +C2845224|T037|AB|S52.256J|ICD10CM|Nondisp commnt fx shaft of ulna, unsp arm, 7thJ|Nondisp commnt fx shaft of ulna, unsp arm, 7thJ +C2845225|T037|AB|S52.256K|ICD10CM|Nondisp commnt fx shaft of ulna, unsp arm, 7thK|Nondisp commnt fx shaft of ulna, unsp arm, 7thK +C2845226|T037|AB|S52.256M|ICD10CM|Nondisp commnt fx shaft of ulna, unsp arm, 7thM|Nondisp commnt fx shaft of ulna, unsp arm, 7thM +C2845227|T037|AB|S52.256N|ICD10CM|Nondisp commnt fx shaft of ulna, unsp arm, 7thN|Nondisp commnt fx shaft of ulna, unsp arm, 7thN +C2845228|T037|AB|S52.256P|ICD10CM|Nondisp commnt fx shaft of ulna, unsp arm, 7thP|Nondisp commnt fx shaft of ulna, unsp arm, 7thP +C2845229|T037|AB|S52.256Q|ICD10CM|Nondisp commnt fx shaft of ulna, unsp arm, 7thQ|Nondisp commnt fx shaft of ulna, unsp arm, 7thQ +C2845230|T037|AB|S52.256R|ICD10CM|Nondisp commnt fx shaft of ulna, unsp arm, 7thR|Nondisp commnt fx shaft of ulna, unsp arm, 7thR +C2845231|T037|AB|S52.256S|ICD10CM|Nondisp comminuted fx shaft of ulna, unsp arm, sequela|Nondisp comminuted fx shaft of ulna, unsp arm, sequela +C2845231|T037|PT|S52.256S|ICD10CM|Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, sequela|Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, sequela +C2845232|T037|AB|S52.26|ICD10CM|Segmental fracture of shaft of ulna|Segmental fracture of shaft of ulna +C2845232|T037|HT|S52.26|ICD10CM|Segmental fracture of shaft of ulna|Segmental fracture of shaft of ulna +C2845233|T037|AB|S52.261|ICD10CM|Displaced segmental fracture of shaft of ulna, right arm|Displaced segmental fracture of shaft of ulna, right arm +C2845233|T037|HT|S52.261|ICD10CM|Displaced segmental fracture of shaft of ulna, right arm|Displaced segmental fracture of shaft of ulna, right arm +C2845234|T037|PT|S52.261A|ICD10CM|Displaced segmental fracture of shaft of ulna, right arm, initial encounter for closed fracture|Displaced segmental fracture of shaft of ulna, right arm, initial encounter for closed fracture +C2845234|T037|AB|S52.261A|ICD10CM|Displaced segmental fx shaft of ulna, right arm, init|Displaced segmental fx shaft of ulna, right arm, init +C2845235|T037|AB|S52.261B|ICD10CM|Displ seg fx shaft of ulna, r arm, init for opn fx type I/2|Displ seg fx shaft of ulna, r arm, init for opn fx type I/2 +C2845236|T037|AB|S52.261C|ICD10CM|Displ seg fx shaft of ulna, r arm, 7thC|Displ seg fx shaft of ulna, r arm, 7thC +C2845237|T037|AB|S52.261D|ICD10CM|Displ seg fx shaft of ulna, r arm, 7thD|Displ seg fx shaft of ulna, r arm, 7thD +C2845238|T037|AB|S52.261E|ICD10CM|Displ seg fx shaft of ulna, r arm, 7thE|Displ seg fx shaft of ulna, r arm, 7thE +C2845239|T037|AB|S52.261F|ICD10CM|Displ seg fx shaft of ulna, r arm, 7thF|Displ seg fx shaft of ulna, r arm, 7thF +C2845240|T037|AB|S52.261G|ICD10CM|Displ seg fx shaft of ulna, r arm, 7thG|Displ seg fx shaft of ulna, r arm, 7thG +C2845241|T037|AB|S52.261H|ICD10CM|Displ seg fx shaft of ulna, r arm, 7thH|Displ seg fx shaft of ulna, r arm, 7thH +C2845242|T037|AB|S52.261J|ICD10CM|Displ seg fx shaft of ulna, r arm, 7thJ|Displ seg fx shaft of ulna, r arm, 7thJ +C2845243|T037|AB|S52.261K|ICD10CM|Displ seg fx shaft of ulna, r arm, 7thK|Displ seg fx shaft of ulna, r arm, 7thK +C2845244|T037|AB|S52.261M|ICD10CM|Displ seg fx shaft of ulna, r arm, 7thM|Displ seg fx shaft of ulna, r arm, 7thM +C2845245|T037|AB|S52.261N|ICD10CM|Displ seg fx shaft of ulna, r arm, 7thN|Displ seg fx shaft of ulna, r arm, 7thN +C2845246|T037|AB|S52.261P|ICD10CM|Displ seg fx shaft of ulna, r arm, 7thP|Displ seg fx shaft of ulna, r arm, 7thP +C2845247|T037|AB|S52.261Q|ICD10CM|Displ seg fx shaft of ulna, r arm, 7thQ|Displ seg fx shaft of ulna, r arm, 7thQ +C2845248|T037|AB|S52.261R|ICD10CM|Displ seg fx shaft of ulna, r arm, 7thR|Displ seg fx shaft of ulna, r arm, 7thR +C2845249|T037|PT|S52.261S|ICD10CM|Displaced segmental fracture of shaft of ulna, right arm, sequela|Displaced segmental fracture of shaft of ulna, right arm, sequela +C2845249|T037|AB|S52.261S|ICD10CM|Displaced segmental fx shaft of ulna, right arm, sequela|Displaced segmental fx shaft of ulna, right arm, sequela +C2845250|T037|AB|S52.262|ICD10CM|Displaced segmental fracture of shaft of ulna, left arm|Displaced segmental fracture of shaft of ulna, left arm +C2845250|T037|HT|S52.262|ICD10CM|Displaced segmental fracture of shaft of ulna, left arm|Displaced segmental fracture of shaft of ulna, left arm +C2845251|T037|PT|S52.262A|ICD10CM|Displaced segmental fracture of shaft of ulna, left arm, initial encounter for closed fracture|Displaced segmental fracture of shaft of ulna, left arm, initial encounter for closed fracture +C2845251|T037|AB|S52.262A|ICD10CM|Displaced segmental fx shaft of ulna, left arm, init|Displaced segmental fx shaft of ulna, left arm, init +C2845252|T037|AB|S52.262B|ICD10CM|Displ seg fx shaft of ulna, l arm, init for opn fx type I/2|Displ seg fx shaft of ulna, l arm, init for opn fx type I/2 +C2845253|T037|AB|S52.262C|ICD10CM|Displ seg fx shaft of ulna, l arm, 7thC|Displ seg fx shaft of ulna, l arm, 7thC +C2845254|T037|AB|S52.262D|ICD10CM|Displ seg fx shaft of ulna, l arm, 7thD|Displ seg fx shaft of ulna, l arm, 7thD +C2845255|T037|AB|S52.262E|ICD10CM|Displ seg fx shaft of ulna, l arm, 7thE|Displ seg fx shaft of ulna, l arm, 7thE +C2845256|T037|AB|S52.262F|ICD10CM|Displ seg fx shaft of ulna, l arm, 7thF|Displ seg fx shaft of ulna, l arm, 7thF +C2845257|T037|AB|S52.262G|ICD10CM|Displ seg fx shaft of ulna, l arm, 7thG|Displ seg fx shaft of ulna, l arm, 7thG +C2845258|T037|AB|S52.262H|ICD10CM|Displ seg fx shaft of ulna, l arm, 7thH|Displ seg fx shaft of ulna, l arm, 7thH +C2845259|T037|AB|S52.262J|ICD10CM|Displ seg fx shaft of ulna, l arm, 7thJ|Displ seg fx shaft of ulna, l arm, 7thJ +C2845260|T037|AB|S52.262K|ICD10CM|Displ seg fx shaft of ulna, l arm, 7thK|Displ seg fx shaft of ulna, l arm, 7thK +C2845261|T037|AB|S52.262M|ICD10CM|Displ seg fx shaft of ulna, l arm, 7thM|Displ seg fx shaft of ulna, l arm, 7thM +C2845262|T037|AB|S52.262N|ICD10CM|Displ seg fx shaft of ulna, l arm, 7thN|Displ seg fx shaft of ulna, l arm, 7thN +C2845263|T037|AB|S52.262P|ICD10CM|Displ seg fx shaft of ulna, l arm, 7thP|Displ seg fx shaft of ulna, l arm, 7thP +C2845264|T037|AB|S52.262Q|ICD10CM|Displ seg fx shaft of ulna, l arm, 7thQ|Displ seg fx shaft of ulna, l arm, 7thQ +C2845265|T037|AB|S52.262R|ICD10CM|Displ seg fx shaft of ulna, l arm, 7thR|Displ seg fx shaft of ulna, l arm, 7thR +C2845266|T037|PT|S52.262S|ICD10CM|Displaced segmental fracture of shaft of ulna, left arm, sequela|Displaced segmental fracture of shaft of ulna, left arm, sequela +C2845266|T037|AB|S52.262S|ICD10CM|Displaced segmental fx shaft of ulna, left arm, sequela|Displaced segmental fx shaft of ulna, left arm, sequela +C2845267|T037|AB|S52.263|ICD10CM|Displaced segmental fracture of shaft of ulna, unsp arm|Displaced segmental fracture of shaft of ulna, unsp arm +C2845267|T037|HT|S52.263|ICD10CM|Displaced segmental fracture of shaft of ulna, unspecified arm|Displaced segmental fracture of shaft of ulna, unspecified arm +C2845268|T037|AB|S52.263A|ICD10CM|Displaced segmental fx shaft of ulna, unsp arm, init|Displaced segmental fx shaft of ulna, unsp arm, init +C2845269|T037|AB|S52.263B|ICD10CM|Displ seg fx shaft of ulna, unsp arm, 7thB|Displ seg fx shaft of ulna, unsp arm, 7thB +C2845270|T037|AB|S52.263C|ICD10CM|Displ seg fx shaft of ulna, unsp arm, 7thC|Displ seg fx shaft of ulna, unsp arm, 7thC +C2845271|T037|AB|S52.263D|ICD10CM|Displ seg fx shaft of ulna, unsp arm, 7thD|Displ seg fx shaft of ulna, unsp arm, 7thD +C2845272|T037|AB|S52.263E|ICD10CM|Displ seg fx shaft of ulna, unsp arm, 7thE|Displ seg fx shaft of ulna, unsp arm, 7thE +C2845273|T037|AB|S52.263F|ICD10CM|Displ seg fx shaft of ulna, unsp arm, 7thF|Displ seg fx shaft of ulna, unsp arm, 7thF +C2845274|T037|AB|S52.263G|ICD10CM|Displ seg fx shaft of ulna, unsp arm, 7thG|Displ seg fx shaft of ulna, unsp arm, 7thG +C2845275|T037|AB|S52.263H|ICD10CM|Displ seg fx shaft of ulna, unsp arm, 7thH|Displ seg fx shaft of ulna, unsp arm, 7thH +C2845276|T037|AB|S52.263J|ICD10CM|Displ seg fx shaft of ulna, unsp arm, 7thJ|Displ seg fx shaft of ulna, unsp arm, 7thJ +C2845277|T037|AB|S52.263K|ICD10CM|Displ seg fx shaft of ulna, unsp arm, 7thK|Displ seg fx shaft of ulna, unsp arm, 7thK +C2845278|T037|AB|S52.263M|ICD10CM|Displ seg fx shaft of ulna, unsp arm, 7thM|Displ seg fx shaft of ulna, unsp arm, 7thM +C2845279|T037|AB|S52.263N|ICD10CM|Displ seg fx shaft of ulna, unsp arm, 7thN|Displ seg fx shaft of ulna, unsp arm, 7thN +C2845280|T037|AB|S52.263P|ICD10CM|Displ seg fx shaft of ulna, unsp arm, 7thP|Displ seg fx shaft of ulna, unsp arm, 7thP +C2845281|T037|AB|S52.263Q|ICD10CM|Displ seg fx shaft of ulna, unsp arm, 7thQ|Displ seg fx shaft of ulna, unsp arm, 7thQ +C2845282|T037|AB|S52.263R|ICD10CM|Displ seg fx shaft of ulna, unsp arm, 7thR|Displ seg fx shaft of ulna, unsp arm, 7thR +C2845283|T037|PT|S52.263S|ICD10CM|Displaced segmental fracture of shaft of ulna, unspecified arm, sequela|Displaced segmental fracture of shaft of ulna, unspecified arm, sequela +C2845283|T037|AB|S52.263S|ICD10CM|Displaced segmental fx shaft of ulna, unsp arm, sequela|Displaced segmental fx shaft of ulna, unsp arm, sequela +C2845284|T037|AB|S52.264|ICD10CM|Nondisplaced segmental fracture of shaft of ulna, right arm|Nondisplaced segmental fracture of shaft of ulna, right arm +C2845284|T037|HT|S52.264|ICD10CM|Nondisplaced segmental fracture of shaft of ulna, right arm|Nondisplaced segmental fracture of shaft of ulna, right arm +C2845285|T037|AB|S52.264A|ICD10CM|Nondisp segmental fracture of shaft of ulna, right arm, init|Nondisp segmental fracture of shaft of ulna, right arm, init +C2845285|T037|PT|S52.264A|ICD10CM|Nondisplaced segmental fracture of shaft of ulna, right arm, initial encounter for closed fracture|Nondisplaced segmental fracture of shaft of ulna, right arm, initial encounter for closed fracture +C2845286|T037|AB|S52.264B|ICD10CM|Nondisp seg fx shaft of ulna, r arm, 7thB|Nondisp seg fx shaft of ulna, r arm, 7thB +C2845287|T037|AB|S52.264C|ICD10CM|Nondisp seg fx shaft of ulna, r arm, 7thC|Nondisp seg fx shaft of ulna, r arm, 7thC +C2845288|T037|AB|S52.264D|ICD10CM|Nondisp seg fx shaft of ulna, r arm, 7thD|Nondisp seg fx shaft of ulna, r arm, 7thD +C2845289|T037|AB|S52.264E|ICD10CM|Nondisp seg fx shaft of ulna, r arm, 7thE|Nondisp seg fx shaft of ulna, r arm, 7thE +C2845290|T037|AB|S52.264F|ICD10CM|Nondisp seg fx shaft of ulna, r arm, 7thF|Nondisp seg fx shaft of ulna, r arm, 7thF +C2845291|T037|AB|S52.264G|ICD10CM|Nondisp seg fx shaft of ulna, r arm, 7thG|Nondisp seg fx shaft of ulna, r arm, 7thG +C2845292|T037|AB|S52.264H|ICD10CM|Nondisp seg fx shaft of ulna, r arm, 7thH|Nondisp seg fx shaft of ulna, r arm, 7thH +C2845293|T037|AB|S52.264J|ICD10CM|Nondisp seg fx shaft of ulna, r arm, 7thJ|Nondisp seg fx shaft of ulna, r arm, 7thJ +C2845294|T037|AB|S52.264K|ICD10CM|Nondisp seg fx shaft of ulna, r arm, 7thK|Nondisp seg fx shaft of ulna, r arm, 7thK +C2845295|T037|AB|S52.264M|ICD10CM|Nondisp seg fx shaft of ulna, r arm, 7thM|Nondisp seg fx shaft of ulna, r arm, 7thM +C2845296|T037|AB|S52.264N|ICD10CM|Nondisp seg fx shaft of ulna, r arm, 7thN|Nondisp seg fx shaft of ulna, r arm, 7thN +C2845297|T037|AB|S52.264P|ICD10CM|Nondisp seg fx shaft of ulna, r arm, 7thP|Nondisp seg fx shaft of ulna, r arm, 7thP +C2845298|T037|AB|S52.264Q|ICD10CM|Nondisp seg fx shaft of ulna, r arm, 7thQ|Nondisp seg fx shaft of ulna, r arm, 7thQ +C2845299|T037|AB|S52.264R|ICD10CM|Nondisp seg fx shaft of ulna, r arm, 7thR|Nondisp seg fx shaft of ulna, r arm, 7thR +C2845300|T037|AB|S52.264S|ICD10CM|Nondisp segmental fx shaft of ulna, right arm, sequela|Nondisp segmental fx shaft of ulna, right arm, sequela +C2845300|T037|PT|S52.264S|ICD10CM|Nondisplaced segmental fracture of shaft of ulna, right arm, sequela|Nondisplaced segmental fracture of shaft of ulna, right arm, sequela +C2845301|T037|AB|S52.265|ICD10CM|Nondisplaced segmental fracture of shaft of ulna, left arm|Nondisplaced segmental fracture of shaft of ulna, left arm +C2845301|T037|HT|S52.265|ICD10CM|Nondisplaced segmental fracture of shaft of ulna, left arm|Nondisplaced segmental fracture of shaft of ulna, left arm +C2845302|T037|AB|S52.265A|ICD10CM|Nondisp segmental fracture of shaft of ulna, left arm, init|Nondisp segmental fracture of shaft of ulna, left arm, init +C2845302|T037|PT|S52.265A|ICD10CM|Nondisplaced segmental fracture of shaft of ulna, left arm, initial encounter for closed fracture|Nondisplaced segmental fracture of shaft of ulna, left arm, initial encounter for closed fracture +C2845303|T037|AB|S52.265B|ICD10CM|Nondisp seg fx shaft of ulna, l arm, 7thB|Nondisp seg fx shaft of ulna, l arm, 7thB +C2845304|T037|AB|S52.265C|ICD10CM|Nondisp seg fx shaft of ulna, l arm, 7thC|Nondisp seg fx shaft of ulna, l arm, 7thC +C2845305|T037|AB|S52.265D|ICD10CM|Nondisp seg fx shaft of ulna, l arm, 7thD|Nondisp seg fx shaft of ulna, l arm, 7thD +C2845306|T037|AB|S52.265E|ICD10CM|Nondisp seg fx shaft of ulna, l arm, 7thE|Nondisp seg fx shaft of ulna, l arm, 7thE +C2845307|T037|AB|S52.265F|ICD10CM|Nondisp seg fx shaft of ulna, l arm, 7thF|Nondisp seg fx shaft of ulna, l arm, 7thF +C2845308|T037|AB|S52.265G|ICD10CM|Nondisp seg fx shaft of ulna, l arm, 7thG|Nondisp seg fx shaft of ulna, l arm, 7thG +C2845309|T037|AB|S52.265H|ICD10CM|Nondisp seg fx shaft of ulna, l arm, 7thH|Nondisp seg fx shaft of ulna, l arm, 7thH +C2845310|T037|AB|S52.265J|ICD10CM|Nondisp seg fx shaft of ulna, l arm, 7thJ|Nondisp seg fx shaft of ulna, l arm, 7thJ +C2845311|T037|AB|S52.265K|ICD10CM|Nondisp seg fx shaft of ulna, l arm, 7thK|Nondisp seg fx shaft of ulna, l arm, 7thK +C2845312|T037|AB|S52.265M|ICD10CM|Nondisp seg fx shaft of ulna, l arm, 7thM|Nondisp seg fx shaft of ulna, l arm, 7thM +C2845313|T037|AB|S52.265N|ICD10CM|Nondisp seg fx shaft of ulna, l arm, 7thN|Nondisp seg fx shaft of ulna, l arm, 7thN +C2845314|T037|AB|S52.265P|ICD10CM|Nondisp seg fx shaft of ulna, l arm, 7thP|Nondisp seg fx shaft of ulna, l arm, 7thP +C2845315|T037|AB|S52.265Q|ICD10CM|Nondisp seg fx shaft of ulna, l arm, 7thQ|Nondisp seg fx shaft of ulna, l arm, 7thQ +C2845316|T037|AB|S52.265R|ICD10CM|Nondisp seg fx shaft of ulna, l arm, 7thR|Nondisp seg fx shaft of ulna, l arm, 7thR +C2845317|T037|AB|S52.265S|ICD10CM|Nondisp segmental fx shaft of ulna, left arm, sequela|Nondisp segmental fx shaft of ulna, left arm, sequela +C2845317|T037|PT|S52.265S|ICD10CM|Nondisplaced segmental fracture of shaft of ulna, left arm, sequela|Nondisplaced segmental fracture of shaft of ulna, left arm, sequela +C2845318|T037|AB|S52.266|ICD10CM|Nondisplaced segmental fracture of shaft of ulna, unsp arm|Nondisplaced segmental fracture of shaft of ulna, unsp arm +C2845318|T037|HT|S52.266|ICD10CM|Nondisplaced segmental fracture of shaft of ulna, unspecified arm|Nondisplaced segmental fracture of shaft of ulna, unspecified arm +C2845319|T037|AB|S52.266A|ICD10CM|Nondisp segmental fracture of shaft of ulna, unsp arm, init|Nondisp segmental fracture of shaft of ulna, unsp arm, init +C2845320|T037|AB|S52.266B|ICD10CM|Nondisp seg fx shaft of ulna, unsp arm, 7thB|Nondisp seg fx shaft of ulna, unsp arm, 7thB +C2845321|T037|AB|S52.266C|ICD10CM|Nondisp seg fx shaft of ulna, unsp arm, 7thC|Nondisp seg fx shaft of ulna, unsp arm, 7thC +C2845322|T037|AB|S52.266D|ICD10CM|Nondisp seg fx shaft of ulna, unsp arm, 7thD|Nondisp seg fx shaft of ulna, unsp arm, 7thD +C2845323|T037|AB|S52.266E|ICD10CM|Nondisp seg fx shaft of ulna, unsp arm, 7thE|Nondisp seg fx shaft of ulna, unsp arm, 7thE +C2845324|T037|AB|S52.266F|ICD10CM|Nondisp seg fx shaft of ulna, unsp arm, 7thF|Nondisp seg fx shaft of ulna, unsp arm, 7thF +C2845325|T037|AB|S52.266G|ICD10CM|Nondisp seg fx shaft of ulna, unsp arm, 7thG|Nondisp seg fx shaft of ulna, unsp arm, 7thG +C2845326|T037|AB|S52.266H|ICD10CM|Nondisp seg fx shaft of ulna, unsp arm, 7thH|Nondisp seg fx shaft of ulna, unsp arm, 7thH +C2845327|T037|AB|S52.266J|ICD10CM|Nondisp seg fx shaft of ulna, unsp arm, 7thJ|Nondisp seg fx shaft of ulna, unsp arm, 7thJ +C2845328|T037|AB|S52.266K|ICD10CM|Nondisp seg fx shaft of ulna, unsp arm, 7thK|Nondisp seg fx shaft of ulna, unsp arm, 7thK +C2845329|T037|AB|S52.266M|ICD10CM|Nondisp seg fx shaft of ulna, unsp arm, 7thM|Nondisp seg fx shaft of ulna, unsp arm, 7thM +C2845330|T037|AB|S52.266N|ICD10CM|Nondisp seg fx shaft of ulna, unsp arm, 7thN|Nondisp seg fx shaft of ulna, unsp arm, 7thN +C2845331|T037|AB|S52.266P|ICD10CM|Nondisp seg fx shaft of ulna, unsp arm, 7thP|Nondisp seg fx shaft of ulna, unsp arm, 7thP +C2845332|T037|AB|S52.266Q|ICD10CM|Nondisp seg fx shaft of ulna, unsp arm, 7thQ|Nondisp seg fx shaft of ulna, unsp arm, 7thQ +C2845333|T037|AB|S52.266R|ICD10CM|Nondisp seg fx shaft of ulna, unsp arm, 7thR|Nondisp seg fx shaft of ulna, unsp arm, 7thR +C2845334|T037|AB|S52.266S|ICD10CM|Nondisp segmental fx shaft of ulna, unsp arm, sequela|Nondisp segmental fx shaft of ulna, unsp arm, sequela +C2845334|T037|PT|S52.266S|ICD10CM|Nondisplaced segmental fracture of shaft of ulna, unspecified arm, sequela|Nondisplaced segmental fracture of shaft of ulna, unspecified arm, sequela +C2845335|T037|ET|S52.27|ICD10CM|Fracture of upper shaft of ulna with dislocation of radial head|Fracture of upper shaft of ulna with dislocation of radial head +C2845336|T037|HT|S52.27|ICD10CM|Monteggia's fracture of ulna|Monteggia's fracture of ulna +C2845336|T037|AB|S52.27|ICD10CM|Monteggia's fracture of ulna|Monteggia's fracture of ulna +C2845337|T037|AB|S52.271|ICD10CM|Monteggia's fracture of right ulna|Monteggia's fracture of right ulna +C2845337|T037|HT|S52.271|ICD10CM|Monteggia's fracture of right ulna|Monteggia's fracture of right ulna +C2845338|T037|AB|S52.271A|ICD10CM|Monteggia's fracture of right ulna, init for clos fx|Monteggia's fracture of right ulna, init for clos fx +C2845338|T037|PT|S52.271A|ICD10CM|Monteggia's fracture of right ulna, initial encounter for closed fracture|Monteggia's fracture of right ulna, initial encounter for closed fracture +C2845339|T037|AB|S52.271B|ICD10CM|Monteggia's fracture of right ulna, init for opn fx type I/2|Monteggia's fracture of right ulna, init for opn fx type I/2 +C2845339|T037|PT|S52.271B|ICD10CM|Monteggia's fracture of right ulna, initial encounter for open fracture type I or II|Monteggia's fracture of right ulna, initial encounter for open fracture type I or II +C2845340|T037|PT|S52.271C|ICD10CM|Monteggia's fracture of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC|Monteggia's fracture of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2845340|T037|AB|S52.271C|ICD10CM|Monteggia's fx right ulna, init for opn fx type 3A/B/C|Monteggia's fx right ulna, init for opn fx type 3A/B/C +C2845341|T037|PT|S52.271D|ICD10CM|Monteggia's fracture of right ulna, subsequent encounter for closed fracture with routine healing|Monteggia's fracture of right ulna, subsequent encounter for closed fracture with routine healing +C2845341|T037|AB|S52.271D|ICD10CM|Monteggia's fx right ulna, subs for clos fx w routn heal|Monteggia's fx right ulna, subs for clos fx w routn heal +C2845342|T037|AB|S52.271E|ICD10CM|Monteggia's fx r ulna, subs for opn fx type I/2 w routn heal|Monteggia's fx r ulna, subs for opn fx type I/2 w routn heal +C2845343|T037|AB|S52.271F|ICD10CM|Monteggia's fx r ulna, 7thF|Monteggia's fx r ulna, 7thF +C2845344|T037|PT|S52.271G|ICD10CM|Monteggia's fracture of right ulna, subsequent encounter for closed fracture with delayed healing|Monteggia's fracture of right ulna, subsequent encounter for closed fracture with delayed healing +C2845344|T037|AB|S52.271G|ICD10CM|Monteggia's fx right ulna, subs for clos fx w delay heal|Monteggia's fx right ulna, subs for clos fx w delay heal +C2845345|T037|AB|S52.271H|ICD10CM|Monteggia's fx r ulna, subs for opn fx type I/2 w delay heal|Monteggia's fx r ulna, subs for opn fx type I/2 w delay heal +C2845346|T037|AB|S52.271J|ICD10CM|Monteggia's fx r ulna, 7thJ|Monteggia's fx r ulna, 7thJ +C2845347|T037|PT|S52.271K|ICD10CM|Monteggia's fracture of right ulna, subsequent encounter for closed fracture with nonunion|Monteggia's fracture of right ulna, subsequent encounter for closed fracture with nonunion +C2845347|T037|AB|S52.271K|ICD10CM|Monteggia's fx right ulna, subs for clos fx w nonunion|Monteggia's fx right ulna, subs for clos fx w nonunion +C2845348|T037|AB|S52.271M|ICD10CM|Monteggia's fx r ulna, subs for opn fx type I/2 w nonunion|Monteggia's fx r ulna, subs for opn fx type I/2 w nonunion +C2845349|T037|AB|S52.271N|ICD10CM|Monteggia's fx r ulna, 7thN|Monteggia's fx r ulna, 7thN +C2845350|T037|PT|S52.271P|ICD10CM|Monteggia's fracture of right ulna, subsequent encounter for closed fracture with malunion|Monteggia's fracture of right ulna, subsequent encounter for closed fracture with malunion +C2845350|T037|AB|S52.271P|ICD10CM|Monteggia's fx right ulna, subs for clos fx w malunion|Monteggia's fx right ulna, subs for clos fx w malunion +C2845351|T037|AB|S52.271Q|ICD10CM|Monteggia's fx r ulna, subs for opn fx type I/2 w malunion|Monteggia's fx r ulna, subs for opn fx type I/2 w malunion +C2845352|T037|AB|S52.271R|ICD10CM|Monteggia's fx r ulna, 7thR|Monteggia's fx r ulna, 7thR +C2845353|T037|AB|S52.271S|ICD10CM|Monteggia's fracture of right ulna, sequela|Monteggia's fracture of right ulna, sequela +C2845353|T037|PT|S52.271S|ICD10CM|Monteggia's fracture of right ulna, sequela|Monteggia's fracture of right ulna, sequela +C2845354|T037|AB|S52.272|ICD10CM|Monteggia's fracture of left ulna|Monteggia's fracture of left ulna +C2845354|T037|HT|S52.272|ICD10CM|Monteggia's fracture of left ulna|Monteggia's fracture of left ulna +C2845355|T037|AB|S52.272A|ICD10CM|Monteggia's fracture of left ulna, init for clos fx|Monteggia's fracture of left ulna, init for clos fx +C2845355|T037|PT|S52.272A|ICD10CM|Monteggia's fracture of left ulna, initial encounter for closed fracture|Monteggia's fracture of left ulna, initial encounter for closed fracture +C2845356|T037|AB|S52.272B|ICD10CM|Monteggia's fracture of left ulna, init for opn fx type I/2|Monteggia's fracture of left ulna, init for opn fx type I/2 +C2845356|T037|PT|S52.272B|ICD10CM|Monteggia's fracture of left ulna, initial encounter for open fracture type I or II|Monteggia's fracture of left ulna, initial encounter for open fracture type I or II +C2845357|T037|PT|S52.272C|ICD10CM|Monteggia's fracture of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC|Monteggia's fracture of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2845357|T037|AB|S52.272C|ICD10CM|Monteggia's fx left ulna, init for opn fx type 3A/B/C|Monteggia's fx left ulna, init for opn fx type 3A/B/C +C2845358|T037|PT|S52.272D|ICD10CM|Monteggia's fracture of left ulna, subsequent encounter for closed fracture with routine healing|Monteggia's fracture of left ulna, subsequent encounter for closed fracture with routine healing +C2845358|T037|AB|S52.272D|ICD10CM|Monteggia's fx left ulna, subs for clos fx w routn heal|Monteggia's fx left ulna, subs for clos fx w routn heal +C2845359|T037|AB|S52.272E|ICD10CM|Monteggia's fx l ulna, subs for opn fx type I/2 w routn heal|Monteggia's fx l ulna, subs for opn fx type I/2 w routn heal +C2845360|T037|AB|S52.272F|ICD10CM|Monteggia's fx l ulna, 7thF|Monteggia's fx l ulna, 7thF +C2845361|T037|PT|S52.272G|ICD10CM|Monteggia's fracture of left ulna, subsequent encounter for closed fracture with delayed healing|Monteggia's fracture of left ulna, subsequent encounter for closed fracture with delayed healing +C2845361|T037|AB|S52.272G|ICD10CM|Monteggia's fx left ulna, subs for clos fx w delay heal|Monteggia's fx left ulna, subs for clos fx w delay heal +C2845362|T037|AB|S52.272H|ICD10CM|Monteggia's fx l ulna, subs for opn fx type I/2 w delay heal|Monteggia's fx l ulna, subs for opn fx type I/2 w delay heal +C2845363|T037|AB|S52.272J|ICD10CM|Monteggia's fx l ulna, 7thJ|Monteggia's fx l ulna, 7thJ +C2845364|T037|PT|S52.272K|ICD10CM|Monteggia's fracture of left ulna, subsequent encounter for closed fracture with nonunion|Monteggia's fracture of left ulna, subsequent encounter for closed fracture with nonunion +C2845364|T037|AB|S52.272K|ICD10CM|Monteggia's fx left ulna, subs for clos fx w nonunion|Monteggia's fx left ulna, subs for clos fx w nonunion +C2845365|T037|PT|S52.272M|ICD10CM|Monteggia's fracture of left ulna, subsequent encounter for open fracture type I or II with nonunion|Monteggia's fracture of left ulna, subsequent encounter for open fracture type I or II with nonunion +C2845365|T037|AB|S52.272M|ICD10CM|Monteggia's fx l ulna, subs for opn fx type I/2 w nonunion|Monteggia's fx l ulna, subs for opn fx type I/2 w nonunion +C2845366|T037|AB|S52.272N|ICD10CM|Monteggia's fx l ulna, 7thN|Monteggia's fx l ulna, 7thN +C2845367|T037|PT|S52.272P|ICD10CM|Monteggia's fracture of left ulna, subsequent encounter for closed fracture with malunion|Monteggia's fracture of left ulna, subsequent encounter for closed fracture with malunion +C2845367|T037|AB|S52.272P|ICD10CM|Monteggia's fx left ulna, subs for clos fx w malunion|Monteggia's fx left ulna, subs for clos fx w malunion +C2845368|T037|PT|S52.272Q|ICD10CM|Monteggia's fracture of left ulna, subsequent encounter for open fracture type I or II with malunion|Monteggia's fracture of left ulna, subsequent encounter for open fracture type I or II with malunion +C2845368|T037|AB|S52.272Q|ICD10CM|Monteggia's fx l ulna, subs for opn fx type I/2 w malunion|Monteggia's fx l ulna, subs for opn fx type I/2 w malunion +C2845369|T037|AB|S52.272R|ICD10CM|Monteggia's fx l ulna, 7thR|Monteggia's fx l ulna, 7thR +C2845370|T037|AB|S52.272S|ICD10CM|Monteggia's fracture of left ulna, sequela|Monteggia's fracture of left ulna, sequela +C2845370|T037|PT|S52.272S|ICD10CM|Monteggia's fracture of left ulna, sequela|Monteggia's fracture of left ulna, sequela +C2845371|T037|AB|S52.279|ICD10CM|Monteggia's fracture of unspecified ulna|Monteggia's fracture of unspecified ulna +C2845371|T037|HT|S52.279|ICD10CM|Monteggia's fracture of unspecified ulna|Monteggia's fracture of unspecified ulna +C2845372|T037|AB|S52.279A|ICD10CM|Monteggia's fracture of unsp ulna, init for clos fx|Monteggia's fracture of unsp ulna, init for clos fx +C2845372|T037|PT|S52.279A|ICD10CM|Monteggia's fracture of unspecified ulna, initial encounter for closed fracture|Monteggia's fracture of unspecified ulna, initial encounter for closed fracture +C2845373|T037|AB|S52.279B|ICD10CM|Monteggia's fracture of unsp ulna, init for opn fx type I/2|Monteggia's fracture of unsp ulna, init for opn fx type I/2 +C2845373|T037|PT|S52.279B|ICD10CM|Monteggia's fracture of unspecified ulna, initial encounter for open fracture type I or II|Monteggia's fracture of unspecified ulna, initial encounter for open fracture type I or II +C2845374|T037|AB|S52.279C|ICD10CM|Monteggia's fx unsp ulna, init for opn fx type 3A/B/C|Monteggia's fx unsp ulna, init for opn fx type 3A/B/C +C2845375|T037|AB|S52.279D|ICD10CM|Monteggia's fx unsp ulna, subs for clos fx w routn heal|Monteggia's fx unsp ulna, subs for clos fx w routn heal +C2845376|T037|AB|S52.279E|ICD10CM|Monteggia's fx unsp ulna, 7thE|Monteggia's fx unsp ulna, 7thE +C2845377|T037|AB|S52.279F|ICD10CM|Monteggia's fx unsp ulna, 7thF|Monteggia's fx unsp ulna, 7thF +C2845378|T037|AB|S52.279G|ICD10CM|Monteggia's fx unsp ulna, subs for clos fx w delay heal|Monteggia's fx unsp ulna, subs for clos fx w delay heal +C2845379|T037|AB|S52.279H|ICD10CM|Monteggia's fx unsp ulna, 7thH|Monteggia's fx unsp ulna, 7thH +C2845380|T037|AB|S52.279J|ICD10CM|Monteggia's fx unsp ulna, 7thJ|Monteggia's fx unsp ulna, 7thJ +C2845381|T037|PT|S52.279K|ICD10CM|Monteggia's fracture of unspecified ulna, subsequent encounter for closed fracture with nonunion|Monteggia's fracture of unspecified ulna, subsequent encounter for closed fracture with nonunion +C2845381|T037|AB|S52.279K|ICD10CM|Monteggia's fx unsp ulna, subs for clos fx w nonunion|Monteggia's fx unsp ulna, subs for clos fx w nonunion +C2845382|T037|AB|S52.279M|ICD10CM|Monteggia's fx unsp ulna, 7thM|Monteggia's fx unsp ulna, 7thM +C2845383|T037|AB|S52.279N|ICD10CM|Monteggia's fx unsp ulna, 7thN|Monteggia's fx unsp ulna, 7thN +C2845384|T037|PT|S52.279P|ICD10CM|Monteggia's fracture of unspecified ulna, subsequent encounter for closed fracture with malunion|Monteggia's fracture of unspecified ulna, subsequent encounter for closed fracture with malunion +C2845384|T037|AB|S52.279P|ICD10CM|Monteggia's fx unsp ulna, subs for clos fx w malunion|Monteggia's fx unsp ulna, subs for clos fx w malunion +C2845385|T037|AB|S52.279Q|ICD10CM|Monteggia's fx unsp ulna, 7thQ|Monteggia's fx unsp ulna, 7thQ +C2845386|T037|AB|S52.279R|ICD10CM|Monteggia's fx unsp ulna, 7thR|Monteggia's fx unsp ulna, 7thR +C2845387|T037|AB|S52.279S|ICD10CM|Monteggia's fracture of unspecified ulna, sequela|Monteggia's fracture of unspecified ulna, sequela +C2845387|T037|PT|S52.279S|ICD10CM|Monteggia's fracture of unspecified ulna, sequela|Monteggia's fracture of unspecified ulna, sequela +C2845388|T037|HT|S52.28|ICD10CM|Bent bone of ulna|Bent bone of ulna +C2845388|T037|AB|S52.28|ICD10CM|Bent bone of ulna|Bent bone of ulna +C2845389|T037|AB|S52.281|ICD10CM|Bent bone of right ulna|Bent bone of right ulna +C2845389|T037|HT|S52.281|ICD10CM|Bent bone of right ulna|Bent bone of right ulna +C2845390|T037|AB|S52.281A|ICD10CM|Bent bone of right ulna, init encntr for closed fracture|Bent bone of right ulna, init encntr for closed fracture +C2845390|T037|PT|S52.281A|ICD10CM|Bent bone of right ulna, initial encounter for closed fracture|Bent bone of right ulna, initial encounter for closed fracture +C2845391|T037|AB|S52.281B|ICD10CM|Bent bone of right ulna, init for opn fx type I/2|Bent bone of right ulna, init for opn fx type I/2 +C2845391|T037|PT|S52.281B|ICD10CM|Bent bone of right ulna, initial encounter for open fracture type I or II|Bent bone of right ulna, initial encounter for open fracture type I or II +C2845392|T037|AB|S52.281C|ICD10CM|Bent bone of right ulna, init for opn fx type 3A/B/C|Bent bone of right ulna, init for opn fx type 3A/B/C +C2845392|T037|PT|S52.281C|ICD10CM|Bent bone of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC|Bent bone of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2845393|T037|AB|S52.281D|ICD10CM|Bent bone of right ulna, subs for clos fx w routn heal|Bent bone of right ulna, subs for clos fx w routn heal +C2845393|T037|PT|S52.281D|ICD10CM|Bent bone of right ulna, subsequent encounter for closed fracture with routine healing|Bent bone of right ulna, subsequent encounter for closed fracture with routine healing +C2845394|T037|AB|S52.281E|ICD10CM|Bent bone of r ulna, subs for opn fx type I/2 w routn heal|Bent bone of r ulna, subs for opn fx type I/2 w routn heal +C2845394|T037|PT|S52.281E|ICD10CM|Bent bone of right ulna, subsequent encounter for open fracture type I or II with routine healing|Bent bone of right ulna, subsequent encounter for open fracture type I or II with routine healing +C2845395|T037|AB|S52.281F|ICD10CM|Bent bone of r ulna, 7thF|Bent bone of r ulna, 7thF +C2845396|T037|AB|S52.281G|ICD10CM|Bent bone of right ulna, subs for clos fx w delay heal|Bent bone of right ulna, subs for clos fx w delay heal +C2845396|T037|PT|S52.281G|ICD10CM|Bent bone of right ulna, subsequent encounter for closed fracture with delayed healing|Bent bone of right ulna, subsequent encounter for closed fracture with delayed healing +C2845397|T037|AB|S52.281H|ICD10CM|Bent bone of r ulna, subs for opn fx type I/2 w delay heal|Bent bone of r ulna, subs for opn fx type I/2 w delay heal +C2845397|T037|PT|S52.281H|ICD10CM|Bent bone of right ulna, subsequent encounter for open fracture type I or II with delayed healing|Bent bone of right ulna, subsequent encounter for open fracture type I or II with delayed healing +C2845398|T037|AB|S52.281J|ICD10CM|Bent bone of r ulna, 7thJ|Bent bone of r ulna, 7thJ +C2845399|T037|AB|S52.281K|ICD10CM|Bent bone of right ulna, subs for clos fx w nonunion|Bent bone of right ulna, subs for clos fx w nonunion +C2845399|T037|PT|S52.281K|ICD10CM|Bent bone of right ulna, subsequent encounter for closed fracture with nonunion|Bent bone of right ulna, subsequent encounter for closed fracture with nonunion +C2845400|T037|AB|S52.281M|ICD10CM|Bent bone of right ulna, subs for opn fx type I/2 w nonunion|Bent bone of right ulna, subs for opn fx type I/2 w nonunion +C2845400|T037|PT|S52.281M|ICD10CM|Bent bone of right ulna, subsequent encounter for open fracture type I or II with nonunion|Bent bone of right ulna, subsequent encounter for open fracture type I or II with nonunion +C2845401|T037|AB|S52.281N|ICD10CM|Bent bone of r ulna, subs for opn fx type 3A/B/C w nonunion|Bent bone of r ulna, subs for opn fx type 3A/B/C w nonunion +C2845402|T037|AB|S52.281P|ICD10CM|Bent bone of right ulna, subs for clos fx w malunion|Bent bone of right ulna, subs for clos fx w malunion +C2845402|T037|PT|S52.281P|ICD10CM|Bent bone of right ulna, subsequent encounter for closed fracture with malunion|Bent bone of right ulna, subsequent encounter for closed fracture with malunion +C2845403|T037|AB|S52.281Q|ICD10CM|Bent bone of right ulna, subs for opn fx type I/2 w malunion|Bent bone of right ulna, subs for opn fx type I/2 w malunion +C2845403|T037|PT|S52.281Q|ICD10CM|Bent bone of right ulna, subsequent encounter for open fracture type I or II with malunion|Bent bone of right ulna, subsequent encounter for open fracture type I or II with malunion +C2845404|T037|AB|S52.281R|ICD10CM|Bent bone of r ulna, subs for opn fx type 3A/B/C w malunion|Bent bone of r ulna, subs for opn fx type 3A/B/C w malunion +C2845405|T037|AB|S52.281S|ICD10CM|Bent bone of right ulna, sequela|Bent bone of right ulna, sequela +C2845405|T037|PT|S52.281S|ICD10CM|Bent bone of right ulna, sequela|Bent bone of right ulna, sequela +C2845406|T037|AB|S52.282|ICD10CM|Bent bone of left ulna|Bent bone of left ulna +C2845406|T037|HT|S52.282|ICD10CM|Bent bone of left ulna|Bent bone of left ulna +C2845407|T037|AB|S52.282A|ICD10CM|Bent bone of left ulna, init encntr for closed fracture|Bent bone of left ulna, init encntr for closed fracture +C2845407|T037|PT|S52.282A|ICD10CM|Bent bone of left ulna, initial encounter for closed fracture|Bent bone of left ulna, initial encounter for closed fracture +C2845408|T037|AB|S52.282B|ICD10CM|Bent bone of left ulna, init for opn fx type I/2|Bent bone of left ulna, init for opn fx type I/2 +C2845408|T037|PT|S52.282B|ICD10CM|Bent bone of left ulna, initial encounter for open fracture type I or II|Bent bone of left ulna, initial encounter for open fracture type I or II +C2845409|T037|AB|S52.282C|ICD10CM|Bent bone of left ulna, init for opn fx type 3A/B/C|Bent bone of left ulna, init for opn fx type 3A/B/C +C2845409|T037|PT|S52.282C|ICD10CM|Bent bone of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC|Bent bone of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2845410|T037|AB|S52.282D|ICD10CM|Bent bone of left ulna, subs for clos fx w routn heal|Bent bone of left ulna, subs for clos fx w routn heal +C2845410|T037|PT|S52.282D|ICD10CM|Bent bone of left ulna, subsequent encounter for closed fracture with routine healing|Bent bone of left ulna, subsequent encounter for closed fracture with routine healing +C2845411|T037|AB|S52.282E|ICD10CM|Bent bone of l ulna, subs for opn fx type I/2 w routn heal|Bent bone of l ulna, subs for opn fx type I/2 w routn heal +C2845411|T037|PT|S52.282E|ICD10CM|Bent bone of left ulna, subsequent encounter for open fracture type I or II with routine healing|Bent bone of left ulna, subsequent encounter for open fracture type I or II with routine healing +C2845412|T037|AB|S52.282F|ICD10CM|Bent bone of l ulna, 7thF|Bent bone of l ulna, 7thF +C2845413|T037|AB|S52.282G|ICD10CM|Bent bone of left ulna, subs for clos fx w delay heal|Bent bone of left ulna, subs for clos fx w delay heal +C2845413|T037|PT|S52.282G|ICD10CM|Bent bone of left ulna, subsequent encounter for closed fracture with delayed healing|Bent bone of left ulna, subsequent encounter for closed fracture with delayed healing +C2845414|T037|AB|S52.282H|ICD10CM|Bent bone of l ulna, subs for opn fx type I/2 w delay heal|Bent bone of l ulna, subs for opn fx type I/2 w delay heal +C2845414|T037|PT|S52.282H|ICD10CM|Bent bone of left ulna, subsequent encounter for open fracture type I or II with delayed healing|Bent bone of left ulna, subsequent encounter for open fracture type I or II with delayed healing +C2845415|T037|AB|S52.282J|ICD10CM|Bent bone of l ulna, 7thJ|Bent bone of l ulna, 7thJ +C2845416|T037|AB|S52.282K|ICD10CM|Bent bone of left ulna, subs for clos fx w nonunion|Bent bone of left ulna, subs for clos fx w nonunion +C2845416|T037|PT|S52.282K|ICD10CM|Bent bone of left ulna, subsequent encounter for closed fracture with nonunion|Bent bone of left ulna, subsequent encounter for closed fracture with nonunion +C2845417|T037|AB|S52.282M|ICD10CM|Bent bone of left ulna, subs for opn fx type I/2 w nonunion|Bent bone of left ulna, subs for opn fx type I/2 w nonunion +C2845417|T037|PT|S52.282M|ICD10CM|Bent bone of left ulna, subsequent encounter for open fracture type I or II with nonunion|Bent bone of left ulna, subsequent encounter for open fracture type I or II with nonunion +C2845418|T037|AB|S52.282N|ICD10CM|Bent bone of l ulna, subs for opn fx type 3A/B/C w nonunion|Bent bone of l ulna, subs for opn fx type 3A/B/C w nonunion +C2845419|T037|AB|S52.282P|ICD10CM|Bent bone of left ulna, subs for clos fx w malunion|Bent bone of left ulna, subs for clos fx w malunion +C2845419|T037|PT|S52.282P|ICD10CM|Bent bone of left ulna, subsequent encounter for closed fracture with malunion|Bent bone of left ulna, subsequent encounter for closed fracture with malunion +C2845420|T037|AB|S52.282Q|ICD10CM|Bent bone of left ulna, subs for opn fx type I/2 w malunion|Bent bone of left ulna, subs for opn fx type I/2 w malunion +C2845420|T037|PT|S52.282Q|ICD10CM|Bent bone of left ulna, subsequent encounter for open fracture type I or II with malunion|Bent bone of left ulna, subsequent encounter for open fracture type I or II with malunion +C2845421|T037|AB|S52.282R|ICD10CM|Bent bone of l ulna, subs for opn fx type 3A/B/C w malunion|Bent bone of l ulna, subs for opn fx type 3A/B/C w malunion +C2845422|T037|AB|S52.282S|ICD10CM|Bent bone of left ulna, sequela|Bent bone of left ulna, sequela +C2845422|T037|PT|S52.282S|ICD10CM|Bent bone of left ulna, sequela|Bent bone of left ulna, sequela +C2845423|T037|AB|S52.283|ICD10CM|Bent bone of unspecified ulna|Bent bone of unspecified ulna +C2845423|T037|HT|S52.283|ICD10CM|Bent bone of unspecified ulna|Bent bone of unspecified ulna +C2845424|T037|AB|S52.283A|ICD10CM|Bent bone of unsp ulna, init encntr for closed fracture|Bent bone of unsp ulna, init encntr for closed fracture +C2845424|T037|PT|S52.283A|ICD10CM|Bent bone of unspecified ulna, initial encounter for closed fracture|Bent bone of unspecified ulna, initial encounter for closed fracture +C2845425|T037|AB|S52.283B|ICD10CM|Bent bone of unsp ulna, init for opn fx type I/2|Bent bone of unsp ulna, init for opn fx type I/2 +C2845425|T037|PT|S52.283B|ICD10CM|Bent bone of unspecified ulna, initial encounter for open fracture type I or II|Bent bone of unspecified ulna, initial encounter for open fracture type I or II +C2845426|T037|AB|S52.283C|ICD10CM|Bent bone of unsp ulna, init for opn fx type 3A/B/C|Bent bone of unsp ulna, init for opn fx type 3A/B/C +C2845426|T037|PT|S52.283C|ICD10CM|Bent bone of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC|Bent bone of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2845427|T037|AB|S52.283D|ICD10CM|Bent bone of unsp ulna, subs for clos fx w routn heal|Bent bone of unsp ulna, subs for clos fx w routn heal +C2845427|T037|PT|S52.283D|ICD10CM|Bent bone of unspecified ulna, subsequent encounter for closed fracture with routine healing|Bent bone of unspecified ulna, subsequent encounter for closed fracture with routine healing +C2845428|T037|AB|S52.283E|ICD10CM|Bent bone of unsp ulna, 7thE|Bent bone of unsp ulna, 7thE +C2845429|T037|AB|S52.283F|ICD10CM|Bent bone of unsp ulna, 7thF|Bent bone of unsp ulna, 7thF +C2845430|T037|AB|S52.283G|ICD10CM|Bent bone of unsp ulna, subs for clos fx w delay heal|Bent bone of unsp ulna, subs for clos fx w delay heal +C2845430|T037|PT|S52.283G|ICD10CM|Bent bone of unspecified ulna, subsequent encounter for closed fracture with delayed healing|Bent bone of unspecified ulna, subsequent encounter for closed fracture with delayed healing +C2845431|T037|AB|S52.283H|ICD10CM|Bent bone of unsp ulna, 7thH|Bent bone of unsp ulna, 7thH +C2845432|T037|AB|S52.283J|ICD10CM|Bent bone of unsp ulna, 7thJ|Bent bone of unsp ulna, 7thJ +C2845433|T037|AB|S52.283K|ICD10CM|Bent bone of unsp ulna, subs for clos fx w nonunion|Bent bone of unsp ulna, subs for clos fx w nonunion +C2845433|T037|PT|S52.283K|ICD10CM|Bent bone of unspecified ulna, subsequent encounter for closed fracture with nonunion|Bent bone of unspecified ulna, subsequent encounter for closed fracture with nonunion +C2845434|T037|AB|S52.283M|ICD10CM|Bent bone of unsp ulna, subs for opn fx type I/2 w nonunion|Bent bone of unsp ulna, subs for opn fx type I/2 w nonunion +C2845434|T037|PT|S52.283M|ICD10CM|Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion|Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion +C2845435|T037|AB|S52.283N|ICD10CM|Bent bone of unsp ulna, 7thN|Bent bone of unsp ulna, 7thN +C2845436|T037|AB|S52.283P|ICD10CM|Bent bone of unsp ulna, subs for clos fx w malunion|Bent bone of unsp ulna, subs for clos fx w malunion +C2845436|T037|PT|S52.283P|ICD10CM|Bent bone of unspecified ulna, subsequent encounter for closed fracture with malunion|Bent bone of unspecified ulna, subsequent encounter for closed fracture with malunion +C2845437|T037|AB|S52.283Q|ICD10CM|Bent bone of unsp ulna, subs for opn fx type I/2 w malunion|Bent bone of unsp ulna, subs for opn fx type I/2 w malunion +C2845437|T037|PT|S52.283Q|ICD10CM|Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with malunion|Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with malunion +C2845438|T037|AB|S52.283R|ICD10CM|Bent bone of unsp ulna, 7thR|Bent bone of unsp ulna, 7thR +C2845439|T037|AB|S52.283S|ICD10CM|Bent bone of unspecified ulna, sequela|Bent bone of unspecified ulna, sequela +C2845439|T037|PT|S52.283S|ICD10CM|Bent bone of unspecified ulna, sequela|Bent bone of unspecified ulna, sequela +C2845440|T037|AB|S52.29|ICD10CM|Other fracture of shaft of ulna|Other fracture of shaft of ulna +C2845440|T037|HT|S52.29|ICD10CM|Other fracture of shaft of ulna|Other fracture of shaft of ulna +C2845441|T037|AB|S52.291|ICD10CM|Other fracture of shaft of right ulna|Other fracture of shaft of right ulna +C2845441|T037|HT|S52.291|ICD10CM|Other fracture of shaft of right ulna|Other fracture of shaft of right ulna +C2845442|T037|AB|S52.291A|ICD10CM|Oth fracture of shaft of right ulna, init for clos fx|Oth fracture of shaft of right ulna, init for clos fx +C2845442|T037|PT|S52.291A|ICD10CM|Other fracture of shaft of right ulna, initial encounter for closed fracture|Other fracture of shaft of right ulna, initial encounter for closed fracture +C2845443|T037|AB|S52.291B|ICD10CM|Oth fx shaft of right ulna, init for opn fx type I/2|Oth fx shaft of right ulna, init for opn fx type I/2 +C2845443|T037|PT|S52.291B|ICD10CM|Other fracture of shaft of right ulna, initial encounter for open fracture type I or II|Other fracture of shaft of right ulna, initial encounter for open fracture type I or II +C2845444|T037|AB|S52.291C|ICD10CM|Oth fx shaft of right ulna, init for opn fx type 3A/B/C|Oth fx shaft of right ulna, init for opn fx type 3A/B/C +C2845444|T037|PT|S52.291C|ICD10CM|Other fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC|Other fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2845445|T037|AB|S52.291D|ICD10CM|Oth fx shaft of right ulna, subs for clos fx w routn heal|Oth fx shaft of right ulna, subs for clos fx w routn heal +C2845445|T037|PT|S52.291D|ICD10CM|Other fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing|Other fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing +C2845446|T037|AB|S52.291E|ICD10CM|Oth fx shaft of r ulna, 7thE|Oth fx shaft of r ulna, 7thE +C2845447|T037|AB|S52.291F|ICD10CM|Oth fx shaft of r ulna, 7thF|Oth fx shaft of r ulna, 7thF +C2845448|T037|AB|S52.291G|ICD10CM|Oth fx shaft of right ulna, subs for clos fx w delay heal|Oth fx shaft of right ulna, subs for clos fx w delay heal +C2845448|T037|PT|S52.291G|ICD10CM|Other fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing|Other fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing +C2845449|T037|AB|S52.291H|ICD10CM|Oth fx shaft of r ulna, 7thH|Oth fx shaft of r ulna, 7thH +C2845450|T037|AB|S52.291J|ICD10CM|Oth fx shaft of r ulna, 7thJ|Oth fx shaft of r ulna, 7thJ +C2845451|T037|AB|S52.291K|ICD10CM|Oth fx shaft of right ulna, subs for clos fx w nonunion|Oth fx shaft of right ulna, subs for clos fx w nonunion +C2845451|T037|PT|S52.291K|ICD10CM|Other fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion|Other fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion +C2845452|T037|AB|S52.291M|ICD10CM|Oth fx shaft of r ulna, subs for opn fx type I/2 w nonunion|Oth fx shaft of r ulna, subs for opn fx type I/2 w nonunion +C2845453|T037|AB|S52.291N|ICD10CM|Oth fx shaft of r ulna, 7thN|Oth fx shaft of r ulna, 7thN +C2845454|T037|AB|S52.291P|ICD10CM|Oth fx shaft of right ulna, subs for clos fx w malunion|Oth fx shaft of right ulna, subs for clos fx w malunion +C2845454|T037|PT|S52.291P|ICD10CM|Other fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion|Other fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion +C2845455|T037|AB|S52.291Q|ICD10CM|Oth fx shaft of r ulna, subs for opn fx type I/2 w malunion|Oth fx shaft of r ulna, subs for opn fx type I/2 w malunion +C2845456|T037|AB|S52.291R|ICD10CM|Oth fx shaft of r ulna, 7thR|Oth fx shaft of r ulna, 7thR +C2845457|T037|PT|S52.291S|ICD10CM|Other fracture of shaft of right ulna, sequela|Other fracture of shaft of right ulna, sequela +C2845457|T037|AB|S52.291S|ICD10CM|Other fracture of shaft of right ulna, sequela|Other fracture of shaft of right ulna, sequela +C2845458|T037|AB|S52.292|ICD10CM|Other fracture of shaft of left ulna|Other fracture of shaft of left ulna +C2845458|T037|HT|S52.292|ICD10CM|Other fracture of shaft of left ulna|Other fracture of shaft of left ulna +C2845459|T037|AB|S52.292A|ICD10CM|Oth fracture of shaft of left ulna, init for clos fx|Oth fracture of shaft of left ulna, init for clos fx +C2845459|T037|PT|S52.292A|ICD10CM|Other fracture of shaft of left ulna, initial encounter for closed fracture|Other fracture of shaft of left ulna, initial encounter for closed fracture +C2845460|T037|AB|S52.292B|ICD10CM|Oth fracture of shaft of left ulna, init for opn fx type I/2|Oth fracture of shaft of left ulna, init for opn fx type I/2 +C2845460|T037|PT|S52.292B|ICD10CM|Other fracture of shaft of left ulna, initial encounter for open fracture type I or II|Other fracture of shaft of left ulna, initial encounter for open fracture type I or II +C2845461|T037|AB|S52.292C|ICD10CM|Oth fx shaft of left ulna, init for opn fx type 3A/B/C|Oth fx shaft of left ulna, init for opn fx type 3A/B/C +C2845461|T037|PT|S52.292C|ICD10CM|Other fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC|Other fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2845462|T037|AB|S52.292D|ICD10CM|Oth fx shaft of left ulna, subs for clos fx w routn heal|Oth fx shaft of left ulna, subs for clos fx w routn heal +C2845462|T037|PT|S52.292D|ICD10CM|Other fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing|Other fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing +C2845463|T037|AB|S52.292E|ICD10CM|Oth fx shaft of l ulna, 7thE|Oth fx shaft of l ulna, 7thE +C2845464|T037|AB|S52.292F|ICD10CM|Oth fx shaft of l ulna, 7thF|Oth fx shaft of l ulna, 7thF +C2845465|T037|AB|S52.292G|ICD10CM|Oth fx shaft of left ulna, subs for clos fx w delay heal|Oth fx shaft of left ulna, subs for clos fx w delay heal +C2845465|T037|PT|S52.292G|ICD10CM|Other fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing|Other fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing +C2845466|T037|AB|S52.292H|ICD10CM|Oth fx shaft of l ulna, 7thH|Oth fx shaft of l ulna, 7thH +C2845467|T037|AB|S52.292J|ICD10CM|Oth fx shaft of l ulna, 7thJ|Oth fx shaft of l ulna, 7thJ +C2845468|T037|AB|S52.292K|ICD10CM|Oth fx shaft of left ulna, subs for clos fx w nonunion|Oth fx shaft of left ulna, subs for clos fx w nonunion +C2845468|T037|PT|S52.292K|ICD10CM|Other fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion|Other fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion +C2845469|T037|AB|S52.292M|ICD10CM|Oth fx shaft of l ulna, subs for opn fx type I/2 w nonunion|Oth fx shaft of l ulna, subs for opn fx type I/2 w nonunion +C2845470|T037|AB|S52.292N|ICD10CM|Oth fx shaft of l ulna, 7thN|Oth fx shaft of l ulna, 7thN +C2845471|T037|AB|S52.292P|ICD10CM|Oth fx shaft of left ulna, subs for clos fx w malunion|Oth fx shaft of left ulna, subs for clos fx w malunion +C2845471|T037|PT|S52.292P|ICD10CM|Other fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion|Other fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion +C2845472|T037|AB|S52.292Q|ICD10CM|Oth fx shaft of l ulna, subs for opn fx type I/2 w malunion|Oth fx shaft of l ulna, subs for opn fx type I/2 w malunion +C2845473|T037|AB|S52.292R|ICD10CM|Oth fx shaft of l ulna, 7thR|Oth fx shaft of l ulna, 7thR +C2845474|T037|PT|S52.292S|ICD10CM|Other fracture of shaft of left ulna, sequela|Other fracture of shaft of left ulna, sequela +C2845474|T037|AB|S52.292S|ICD10CM|Other fracture of shaft of left ulna, sequela|Other fracture of shaft of left ulna, sequela +C2845475|T037|AB|S52.299|ICD10CM|Other fracture of shaft of unspecified ulna|Other fracture of shaft of unspecified ulna +C2845475|T037|HT|S52.299|ICD10CM|Other fracture of shaft of unspecified ulna|Other fracture of shaft of unspecified ulna +C2845476|T037|AB|S52.299A|ICD10CM|Oth fracture of shaft of unsp ulna, init for clos fx|Oth fracture of shaft of unsp ulna, init for clos fx +C2845476|T037|PT|S52.299A|ICD10CM|Other fracture of shaft of unspecified ulna, initial encounter for closed fracture|Other fracture of shaft of unspecified ulna, initial encounter for closed fracture +C2845477|T037|AB|S52.299B|ICD10CM|Oth fracture of shaft of unsp ulna, init for opn fx type I/2|Oth fracture of shaft of unsp ulna, init for opn fx type I/2 +C2845477|T037|PT|S52.299B|ICD10CM|Other fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II|Other fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II +C2845478|T037|AB|S52.299C|ICD10CM|Oth fx shaft of unsp ulna, init for opn fx type 3A/B/C|Oth fx shaft of unsp ulna, init for opn fx type 3A/B/C +C2845479|T037|AB|S52.299D|ICD10CM|Oth fx shaft of unsp ulna, subs for clos fx w routn heal|Oth fx shaft of unsp ulna, subs for clos fx w routn heal +C2845480|T037|AB|S52.299E|ICD10CM|Oth fx shaft of unsp ulna, 7thE|Oth fx shaft of unsp ulna, 7thE +C2845481|T037|AB|S52.299F|ICD10CM|Oth fx shaft of unsp ulna, 7thF|Oth fx shaft of unsp ulna, 7thF +C2845482|T037|AB|S52.299G|ICD10CM|Oth fx shaft of unsp ulna, subs for clos fx w delay heal|Oth fx shaft of unsp ulna, subs for clos fx w delay heal +C2845483|T037|AB|S52.299H|ICD10CM|Oth fx shaft of unsp ulna, 7thH|Oth fx shaft of unsp ulna, 7thH +C2845484|T037|AB|S52.299J|ICD10CM|Oth fx shaft of unsp ulna, 7thJ|Oth fx shaft of unsp ulna, 7thJ +C2845485|T037|AB|S52.299K|ICD10CM|Oth fx shaft of unsp ulna, subs for clos fx w nonunion|Oth fx shaft of unsp ulna, subs for clos fx w nonunion +C2845485|T037|PT|S52.299K|ICD10CM|Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion|Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion +C2845486|T037|AB|S52.299M|ICD10CM|Oth fx shaft of unsp ulna, 7thM|Oth fx shaft of unsp ulna, 7thM +C2845487|T037|AB|S52.299N|ICD10CM|Oth fx shaft of unsp ulna, 7thN|Oth fx shaft of unsp ulna, 7thN +C2845488|T037|AB|S52.299P|ICD10CM|Oth fx shaft of unsp ulna, subs for clos fx w malunion|Oth fx shaft of unsp ulna, subs for clos fx w malunion +C2845488|T037|PT|S52.299P|ICD10CM|Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion|Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion +C2845489|T037|AB|S52.299Q|ICD10CM|Oth fx shaft of unsp ulna, 7thQ|Oth fx shaft of unsp ulna, 7thQ +C2845490|T037|AB|S52.299R|ICD10CM|Oth fx shaft of unsp ulna, 7thR|Oth fx shaft of unsp ulna, 7thR +C2845491|T037|PT|S52.299S|ICD10CM|Other fracture of shaft of unspecified ulna, sequela|Other fracture of shaft of unspecified ulna, sequela +C2845491|T037|AB|S52.299S|ICD10CM|Other fracture of shaft of unspecified ulna, sequela|Other fracture of shaft of unspecified ulna, sequela +C0347790|T037|HT|S52.3|ICD10CM|Fracture of shaft of radius|Fracture of shaft of radius +C0347790|T037|AB|S52.3|ICD10CM|Fracture of shaft of radius|Fracture of shaft of radius +C0347790|T037|PT|S52.3|ICD10|Fracture of shaft of radius|Fracture of shaft of radius +C2845492|T037|AB|S52.30|ICD10CM|Unspecified fracture of shaft of radius|Unspecified fracture of shaft of radius +C2845492|T037|HT|S52.30|ICD10CM|Unspecified fracture of shaft of radius|Unspecified fracture of shaft of radius +C2845493|T037|AB|S52.301|ICD10CM|Unspecified fracture of shaft of right radius|Unspecified fracture of shaft of right radius +C2845493|T037|HT|S52.301|ICD10CM|Unspecified fracture of shaft of right radius|Unspecified fracture of shaft of right radius +C2845494|T037|AB|S52.301A|ICD10CM|Unsp fracture of shaft of right radius, init for clos fx|Unsp fracture of shaft of right radius, init for clos fx +C2845494|T037|PT|S52.301A|ICD10CM|Unspecified fracture of shaft of right radius, initial encounter for closed fracture|Unspecified fracture of shaft of right radius, initial encounter for closed fracture +C2845495|T037|AB|S52.301B|ICD10CM|Unsp fracture of shaft of r radius, init for opn fx type I/2|Unsp fracture of shaft of r radius, init for opn fx type I/2 +C2845495|T037|PT|S52.301B|ICD10CM|Unspecified fracture of shaft of right radius, initial encounter for open fracture type I or II|Unspecified fracture of shaft of right radius, initial encounter for open fracture type I or II +C2845496|T037|AB|S52.301C|ICD10CM|Unsp fx shaft of r radius, init for opn fx type 3A/B/C|Unsp fx shaft of r radius, init for opn fx type 3A/B/C +C2845497|T037|AB|S52.301D|ICD10CM|Unsp fx shaft of r radius, subs for clos fx w routn heal|Unsp fx shaft of r radius, subs for clos fx w routn heal +C2845498|T037|AB|S52.301E|ICD10CM|Unsp fx shaft of r rad, 7thE|Unsp fx shaft of r rad, 7thE +C2845499|T037|AB|S52.301F|ICD10CM|Unsp fx shaft of r rad, 7thF|Unsp fx shaft of r rad, 7thF +C2845500|T037|AB|S52.301G|ICD10CM|Unsp fx shaft of r radius, subs for clos fx w delay heal|Unsp fx shaft of r radius, subs for clos fx w delay heal +C2845501|T037|AB|S52.301H|ICD10CM|Unsp fx shaft of r rad, 7thH|Unsp fx shaft of r rad, 7thH +C2845502|T037|AB|S52.301J|ICD10CM|Unsp fx shaft of r rad, 7thJ|Unsp fx shaft of r rad, 7thJ +C2845503|T037|AB|S52.301K|ICD10CM|Unsp fx shaft of r radius, subs for clos fx w nonunion|Unsp fx shaft of r radius, subs for clos fx w nonunion +C2845504|T037|AB|S52.301M|ICD10CM|Unsp fx shaft of r rad, subs for opn fx type I/2 w nonunion|Unsp fx shaft of r rad, subs for opn fx type I/2 w nonunion +C2845505|T037|AB|S52.301N|ICD10CM|Unsp fx shaft of r rad, 7thN|Unsp fx shaft of r rad, 7thN +C2845506|T037|AB|S52.301P|ICD10CM|Unsp fx shaft of r radius, subs for clos fx w malunion|Unsp fx shaft of r radius, subs for clos fx w malunion +C2845507|T037|AB|S52.301Q|ICD10CM|Unsp fx shaft of r rad, subs for opn fx type I/2 w malunion|Unsp fx shaft of r rad, subs for opn fx type I/2 w malunion +C2845508|T037|AB|S52.301R|ICD10CM|Unsp fx shaft of r rad, 7thR|Unsp fx shaft of r rad, 7thR +C2845509|T037|AB|S52.301S|ICD10CM|Unspecified fracture of shaft of right radius, sequela|Unspecified fracture of shaft of right radius, sequela +C2845509|T037|PT|S52.301S|ICD10CM|Unspecified fracture of shaft of right radius, sequela|Unspecified fracture of shaft of right radius, sequela +C2845510|T037|AB|S52.302|ICD10CM|Unspecified fracture of shaft of left radius|Unspecified fracture of shaft of left radius +C2845510|T037|HT|S52.302|ICD10CM|Unspecified fracture of shaft of left radius|Unspecified fracture of shaft of left radius +C2845511|T037|AB|S52.302A|ICD10CM|Unsp fracture of shaft of left radius, init for clos fx|Unsp fracture of shaft of left radius, init for clos fx +C2845511|T037|PT|S52.302A|ICD10CM|Unspecified fracture of shaft of left radius, initial encounter for closed fracture|Unspecified fracture of shaft of left radius, initial encounter for closed fracture +C2845512|T037|AB|S52.302B|ICD10CM|Unsp fx shaft of left radius, init for opn fx type I/2|Unsp fx shaft of left radius, init for opn fx type I/2 +C2845512|T037|PT|S52.302B|ICD10CM|Unspecified fracture of shaft of left radius, initial encounter for open fracture type I or II|Unspecified fracture of shaft of left radius, initial encounter for open fracture type I or II +C2845513|T037|AB|S52.302C|ICD10CM|Unsp fx shaft of left radius, init for opn fx type 3A/B/C|Unsp fx shaft of left radius, init for opn fx type 3A/B/C +C2845514|T037|AB|S52.302D|ICD10CM|Unsp fx shaft of left radius, subs for clos fx w routn heal|Unsp fx shaft of left radius, subs for clos fx w routn heal +C2845515|T037|AB|S52.302E|ICD10CM|Unsp fx shaft of l rad, 7thE|Unsp fx shaft of l rad, 7thE +C2845516|T037|AB|S52.302F|ICD10CM|Unsp fx shaft of l rad, 7thF|Unsp fx shaft of l rad, 7thF +C2845517|T037|AB|S52.302G|ICD10CM|Unsp fx shaft of left radius, subs for clos fx w delay heal|Unsp fx shaft of left radius, subs for clos fx w delay heal +C2845518|T037|AB|S52.302H|ICD10CM|Unsp fx shaft of l rad, 7thH|Unsp fx shaft of l rad, 7thH +C2845519|T037|AB|S52.302J|ICD10CM|Unsp fx shaft of l rad, 7thJ|Unsp fx shaft of l rad, 7thJ +C2845520|T037|AB|S52.302K|ICD10CM|Unsp fx shaft of left radius, subs for clos fx w nonunion|Unsp fx shaft of left radius, subs for clos fx w nonunion +C2845520|T037|PT|S52.302K|ICD10CM|Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion|Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion +C2845521|T037|AB|S52.302M|ICD10CM|Unsp fx shaft of l rad, subs for opn fx type I/2 w nonunion|Unsp fx shaft of l rad, subs for opn fx type I/2 w nonunion +C2845522|T037|AB|S52.302N|ICD10CM|Unsp fx shaft of l rad, 7thN|Unsp fx shaft of l rad, 7thN +C2845523|T037|AB|S52.302P|ICD10CM|Unsp fx shaft of left radius, subs for clos fx w malunion|Unsp fx shaft of left radius, subs for clos fx w malunion +C2845523|T037|PT|S52.302P|ICD10CM|Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with malunion|Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with malunion +C2845524|T037|AB|S52.302Q|ICD10CM|Unsp fx shaft of l rad, subs for opn fx type I/2 w malunion|Unsp fx shaft of l rad, subs for opn fx type I/2 w malunion +C2845525|T037|AB|S52.302R|ICD10CM|Unsp fx shaft of l rad, 7thR|Unsp fx shaft of l rad, 7thR +C2845526|T037|AB|S52.302S|ICD10CM|Unspecified fracture of shaft of left radius, sequela|Unspecified fracture of shaft of left radius, sequela +C2845526|T037|PT|S52.302S|ICD10CM|Unspecified fracture of shaft of left radius, sequela|Unspecified fracture of shaft of left radius, sequela +C2845527|T037|AB|S52.309|ICD10CM|Unspecified fracture of shaft of unspecified radius|Unspecified fracture of shaft of unspecified radius +C2845527|T037|HT|S52.309|ICD10CM|Unspecified fracture of shaft of unspecified radius|Unspecified fracture of shaft of unspecified radius +C2845528|T037|AB|S52.309A|ICD10CM|Unsp fracture of shaft of unsp radius, init for clos fx|Unsp fracture of shaft of unsp radius, init for clos fx +C2845528|T037|PT|S52.309A|ICD10CM|Unspecified fracture of shaft of unspecified radius, initial encounter for closed fracture|Unspecified fracture of shaft of unspecified radius, initial encounter for closed fracture +C2845529|T037|AB|S52.309B|ICD10CM|Unsp fx shaft of unsp radius, init for opn fx type I/2|Unsp fx shaft of unsp radius, init for opn fx type I/2 +C2845530|T037|AB|S52.309C|ICD10CM|Unsp fx shaft of unsp radius, init for opn fx type 3A/B/C|Unsp fx shaft of unsp radius, init for opn fx type 3A/B/C +C2845531|T037|AB|S52.309D|ICD10CM|Unsp fx shaft of unsp radius, subs for clos fx w routn heal|Unsp fx shaft of unsp radius, subs for clos fx w routn heal +C2845532|T037|AB|S52.309E|ICD10CM|Unsp fx shaft of unsp rad, 7thE|Unsp fx shaft of unsp rad, 7thE +C2845533|T037|AB|S52.309F|ICD10CM|Unsp fx shaft of unsp rad, 7thF|Unsp fx shaft of unsp rad, 7thF +C2845534|T037|AB|S52.309G|ICD10CM|Unsp fx shaft of unsp radius, subs for clos fx w delay heal|Unsp fx shaft of unsp radius, subs for clos fx w delay heal +C2845535|T037|AB|S52.309H|ICD10CM|Unsp fx shaft of unsp rad, 7thH|Unsp fx shaft of unsp rad, 7thH +C2845536|T037|AB|S52.309J|ICD10CM|Unsp fx shaft of unsp rad, 7thJ|Unsp fx shaft of unsp rad, 7thJ +C2845537|T037|AB|S52.309K|ICD10CM|Unsp fx shaft of unsp radius, subs for clos fx w nonunion|Unsp fx shaft of unsp radius, subs for clos fx w nonunion +C2845538|T037|AB|S52.309M|ICD10CM|Unsp fx shaft of unsp rad, 7thM|Unsp fx shaft of unsp rad, 7thM +C2845539|T037|AB|S52.309N|ICD10CM|Unsp fx shaft of unsp rad, 7thN|Unsp fx shaft of unsp rad, 7thN +C2845540|T037|AB|S52.309P|ICD10CM|Unsp fx shaft of unsp radius, subs for clos fx w malunion|Unsp fx shaft of unsp radius, subs for clos fx w malunion +C2845541|T037|AB|S52.309Q|ICD10CM|Unsp fx shaft of unsp rad, 7thQ|Unsp fx shaft of unsp rad, 7thQ +C2845542|T037|AB|S52.309R|ICD10CM|Unsp fx shaft of unsp rad, 7thR|Unsp fx shaft of unsp rad, 7thR +C2845543|T037|AB|S52.309S|ICD10CM|Unspecified fracture of shaft of unspecified radius, sequela|Unspecified fracture of shaft of unspecified radius, sequela +C2845543|T037|PT|S52.309S|ICD10CM|Unspecified fracture of shaft of unspecified radius, sequela|Unspecified fracture of shaft of unspecified radius, sequela +C2845544|T037|AB|S52.31|ICD10CM|Greenstick fracture of shaft of radius|Greenstick fracture of shaft of radius +C2845544|T037|HT|S52.31|ICD10CM|Greenstick fracture of shaft of radius|Greenstick fracture of shaft of radius +C2845545|T037|AB|S52.311|ICD10CM|Greenstick fracture of shaft of radius, right arm|Greenstick fracture of shaft of radius, right arm +C2845545|T037|HT|S52.311|ICD10CM|Greenstick fracture of shaft of radius, right arm|Greenstick fracture of shaft of radius, right arm +C2845546|T037|AB|S52.311A|ICD10CM|Greenstick fracture of shaft of radius, right arm, init|Greenstick fracture of shaft of radius, right arm, init +C2845546|T037|PT|S52.311A|ICD10CM|Greenstick fracture of shaft of radius, right arm, initial encounter for closed fracture|Greenstick fracture of shaft of radius, right arm, initial encounter for closed fracture +C2845547|T037|AB|S52.311D|ICD10CM|Greenstick fx shaft of rad, r arm, subs for fx w routn heal|Greenstick fx shaft of rad, r arm, subs for fx w routn heal +C2845548|T037|AB|S52.311G|ICD10CM|Greenstick fx shaft of rad, r arm, subs for fx w delay heal|Greenstick fx shaft of rad, r arm, subs for fx w delay heal +C2845549|T037|PT|S52.311K|ICD10CM|Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with nonunion|Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with nonunion +C2845549|T037|AB|S52.311K|ICD10CM|Greenstick fx shaft of rad, r arm, subs for fx w nonunion|Greenstick fx shaft of rad, r arm, subs for fx w nonunion +C2845550|T037|PT|S52.311P|ICD10CM|Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with malunion|Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with malunion +C2845550|T037|AB|S52.311P|ICD10CM|Greenstick fx shaft of rad, r arm, subs for fx w malunion|Greenstick fx shaft of rad, r arm, subs for fx w malunion +C2845551|T037|PT|S52.311S|ICD10CM|Greenstick fracture of shaft of radius, right arm, sequela|Greenstick fracture of shaft of radius, right arm, sequela +C2845551|T037|AB|S52.311S|ICD10CM|Greenstick fracture of shaft of radius, right arm, sequela|Greenstick fracture of shaft of radius, right arm, sequela +C2845552|T037|AB|S52.312|ICD10CM|Greenstick fracture of shaft of radius, left arm|Greenstick fracture of shaft of radius, left arm +C2845552|T037|HT|S52.312|ICD10CM|Greenstick fracture of shaft of radius, left arm|Greenstick fracture of shaft of radius, left arm +C2845553|T037|AB|S52.312A|ICD10CM|Greenstick fracture of shaft of radius, left arm, init|Greenstick fracture of shaft of radius, left arm, init +C2845553|T037|PT|S52.312A|ICD10CM|Greenstick fracture of shaft of radius, left arm, initial encounter for closed fracture|Greenstick fracture of shaft of radius, left arm, initial encounter for closed fracture +C2845554|T037|AB|S52.312D|ICD10CM|Greenstick fx shaft of rad, l arm, subs for fx w routn heal|Greenstick fx shaft of rad, l arm, subs for fx w routn heal +C2845555|T037|AB|S52.312G|ICD10CM|Greenstick fx shaft of rad, l arm, subs for fx w delay heal|Greenstick fx shaft of rad, l arm, subs for fx w delay heal +C2845556|T037|PT|S52.312K|ICD10CM|Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with nonunion|Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with nonunion +C2845556|T037|AB|S52.312K|ICD10CM|Greenstick fx shaft of rad, left arm, subs for fx w nonunion|Greenstick fx shaft of rad, left arm, subs for fx w nonunion +C2845557|T037|PT|S52.312P|ICD10CM|Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with malunion|Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with malunion +C2845557|T037|AB|S52.312P|ICD10CM|Greenstick fx shaft of rad, left arm, subs for fx w malunion|Greenstick fx shaft of rad, left arm, subs for fx w malunion +C2845558|T037|PT|S52.312S|ICD10CM|Greenstick fracture of shaft of radius, left arm, sequela|Greenstick fracture of shaft of radius, left arm, sequela +C2845558|T037|AB|S52.312S|ICD10CM|Greenstick fracture of shaft of radius, left arm, sequela|Greenstick fracture of shaft of radius, left arm, sequela +C2845559|T037|AB|S52.319|ICD10CM|Greenstick fracture of shaft of radius, unspecified arm|Greenstick fracture of shaft of radius, unspecified arm +C2845559|T037|HT|S52.319|ICD10CM|Greenstick fracture of shaft of radius, unspecified arm|Greenstick fracture of shaft of radius, unspecified arm +C2845560|T037|AB|S52.319A|ICD10CM|Greenstick fracture of shaft of radius, unsp arm, init|Greenstick fracture of shaft of radius, unsp arm, init +C2845560|T037|PT|S52.319A|ICD10CM|Greenstick fracture of shaft of radius, unspecified arm, initial encounter for closed fracture|Greenstick fracture of shaft of radius, unspecified arm, initial encounter for closed fracture +C2845561|T037|AB|S52.319D|ICD10CM|Greenstick fx shaft of rad, unsp arm, 7thD|Greenstick fx shaft of rad, unsp arm, 7thD +C2845562|T037|AB|S52.319G|ICD10CM|Greenstick fx shaft of rad, unsp arm, 7thG|Greenstick fx shaft of rad, unsp arm, 7thG +C2845563|T037|AB|S52.319K|ICD10CM|Greenstick fx shaft of rad, unsp arm, subs for fx w nonunion|Greenstick fx shaft of rad, unsp arm, subs for fx w nonunion +C2845564|T037|AB|S52.319P|ICD10CM|Greenstick fx shaft of rad, unsp arm, subs for fx w malunion|Greenstick fx shaft of rad, unsp arm, subs for fx w malunion +C2845565|T037|AB|S52.319S|ICD10CM|Greenstick fracture of shaft of radius, unsp arm, sequela|Greenstick fracture of shaft of radius, unsp arm, sequela +C2845565|T037|PT|S52.319S|ICD10CM|Greenstick fracture of shaft of radius, unspecified arm, sequela|Greenstick fracture of shaft of radius, unspecified arm, sequela +C2845566|T037|AB|S52.32|ICD10CM|Transverse fracture of shaft of radius|Transverse fracture of shaft of radius +C2845566|T037|HT|S52.32|ICD10CM|Transverse fracture of shaft of radius|Transverse fracture of shaft of radius +C2845567|T037|AB|S52.321|ICD10CM|Displaced transverse fracture of shaft of right radius|Displaced transverse fracture of shaft of right radius +C2845567|T037|HT|S52.321|ICD10CM|Displaced transverse fracture of shaft of right radius|Displaced transverse fracture of shaft of right radius +C2845568|T037|AB|S52.321A|ICD10CM|Displaced transverse fracture of shaft of right radius, init|Displaced transverse fracture of shaft of right radius, init +C2845568|T037|PT|S52.321A|ICD10CM|Displaced transverse fracture of shaft of right radius, initial encounter for closed fracture|Displaced transverse fracture of shaft of right radius, initial encounter for closed fracture +C2845569|T037|AB|S52.321B|ICD10CM|Displ transverse fx shaft of r rad, init for opn fx type I/2|Displ transverse fx shaft of r rad, init for opn fx type I/2 +C2845570|T037|AB|S52.321C|ICD10CM|Displ transverse fx shaft of r rad, 7thC|Displ transverse fx shaft of r rad, 7thC +C2845571|T037|AB|S52.321D|ICD10CM|Displ transverse fx shaft of r rad, 7thD|Displ transverse fx shaft of r rad, 7thD +C2845572|T037|AB|S52.321E|ICD10CM|Displ transverse fx shaft of r rad, 7thE|Displ transverse fx shaft of r rad, 7thE +C2845573|T037|AB|S52.321F|ICD10CM|Displ transverse fx shaft of r rad, 7thF|Displ transverse fx shaft of r rad, 7thF +C2845574|T037|AB|S52.321G|ICD10CM|Displ transverse fx shaft of r rad, 7thG|Displ transverse fx shaft of r rad, 7thG +C2845575|T037|AB|S52.321H|ICD10CM|Displ transverse fx shaft of r rad, 7thH|Displ transverse fx shaft of r rad, 7thH +C2845576|T037|AB|S52.321J|ICD10CM|Displ transverse fx shaft of r rad, 7thJ|Displ transverse fx shaft of r rad, 7thJ +C2845577|T037|AB|S52.321K|ICD10CM|Displ transverse fx shaft of r rad, 7thK|Displ transverse fx shaft of r rad, 7thK +C2845578|T037|AB|S52.321M|ICD10CM|Displ transverse fx shaft of r rad, 7thM|Displ transverse fx shaft of r rad, 7thM +C2845579|T037|AB|S52.321N|ICD10CM|Displ transverse fx shaft of r rad, 7thN|Displ transverse fx shaft of r rad, 7thN +C2845580|T037|AB|S52.321P|ICD10CM|Displ transverse fx shaft of r rad, 7thP|Displ transverse fx shaft of r rad, 7thP +C2845581|T037|AB|S52.321Q|ICD10CM|Displ transverse fx shaft of r rad, 7thQ|Displ transverse fx shaft of r rad, 7thQ +C2845582|T037|AB|S52.321R|ICD10CM|Displ transverse fx shaft of r rad, 7thR|Displ transverse fx shaft of r rad, 7thR +C2845583|T037|AB|S52.321S|ICD10CM|Displaced transverse fracture of shaft of r radius, sequela|Displaced transverse fracture of shaft of r radius, sequela +C2845583|T037|PT|S52.321S|ICD10CM|Displaced transverse fracture of shaft of right radius, sequela|Displaced transverse fracture of shaft of right radius, sequela +C2845584|T037|AB|S52.322|ICD10CM|Displaced transverse fracture of shaft of left radius|Displaced transverse fracture of shaft of left radius +C2845584|T037|HT|S52.322|ICD10CM|Displaced transverse fracture of shaft of left radius|Displaced transverse fracture of shaft of left radius +C2845585|T037|AB|S52.322A|ICD10CM|Displaced transverse fracture of shaft of left radius, init|Displaced transverse fracture of shaft of left radius, init +C2845585|T037|PT|S52.322A|ICD10CM|Displaced transverse fracture of shaft of left radius, initial encounter for closed fracture|Displaced transverse fracture of shaft of left radius, initial encounter for closed fracture +C2845586|T037|AB|S52.322B|ICD10CM|Displ transverse fx shaft of l rad, init for opn fx type I/2|Displ transverse fx shaft of l rad, init for opn fx type I/2 +C2845587|T037|AB|S52.322C|ICD10CM|Displ transverse fx shaft of l rad, 7thC|Displ transverse fx shaft of l rad, 7thC +C2845588|T037|AB|S52.322D|ICD10CM|Displ transverse fx shaft of l rad, 7thD|Displ transverse fx shaft of l rad, 7thD +C2845589|T037|AB|S52.322E|ICD10CM|Displ transverse fx shaft of l rad, 7thE|Displ transverse fx shaft of l rad, 7thE +C2845590|T037|AB|S52.322F|ICD10CM|Displ transverse fx shaft of l rad, 7thF|Displ transverse fx shaft of l rad, 7thF +C2845591|T037|AB|S52.322G|ICD10CM|Displ transverse fx shaft of l rad, 7thG|Displ transverse fx shaft of l rad, 7thG +C2845592|T037|AB|S52.322H|ICD10CM|Displ transverse fx shaft of l rad, 7thH|Displ transverse fx shaft of l rad, 7thH +C2845593|T037|AB|S52.322J|ICD10CM|Displ transverse fx shaft of l rad, 7thJ|Displ transverse fx shaft of l rad, 7thJ +C2845594|T037|AB|S52.322K|ICD10CM|Displ transverse fx shaft of l rad, 7thK|Displ transverse fx shaft of l rad, 7thK +C2845595|T037|AB|S52.322M|ICD10CM|Displ transverse fx shaft of l rad, 7thM|Displ transverse fx shaft of l rad, 7thM +C2845596|T037|AB|S52.322N|ICD10CM|Displ transverse fx shaft of l rad, 7thN|Displ transverse fx shaft of l rad, 7thN +C2845597|T037|AB|S52.322P|ICD10CM|Displ transverse fx shaft of l rad, 7thP|Displ transverse fx shaft of l rad, 7thP +C2845598|T037|AB|S52.322Q|ICD10CM|Displ transverse fx shaft of l rad, 7thQ|Displ transverse fx shaft of l rad, 7thQ +C2845599|T037|AB|S52.322R|ICD10CM|Displ transverse fx shaft of l rad, 7thR|Displ transverse fx shaft of l rad, 7thR +C2845600|T037|PT|S52.322S|ICD10CM|Displaced transverse fracture of shaft of left radius, sequela|Displaced transverse fracture of shaft of left radius, sequela +C2845600|T037|AB|S52.322S|ICD10CM|Displaced transverse fx shaft of left radius, sequela|Displaced transverse fx shaft of left radius, sequela +C2845601|T037|AB|S52.323|ICD10CM|Displaced transverse fracture of shaft of unspecified radius|Displaced transverse fracture of shaft of unspecified radius +C2845601|T037|HT|S52.323|ICD10CM|Displaced transverse fracture of shaft of unspecified radius|Displaced transverse fracture of shaft of unspecified radius +C2845602|T037|AB|S52.323A|ICD10CM|Displaced transverse fracture of shaft of unsp radius, init|Displaced transverse fracture of shaft of unsp radius, init +C2845602|T037|PT|S52.323A|ICD10CM|Displaced transverse fracture of shaft of unspecified radius, initial encounter for closed fracture|Displaced transverse fracture of shaft of unspecified radius, initial encounter for closed fracture +C2845603|T037|AB|S52.323B|ICD10CM|Displ transverse fx shaft of unsp rad, 7thB|Displ transverse fx shaft of unsp rad, 7thB +C2845604|T037|AB|S52.323C|ICD10CM|Displ transverse fx shaft of unsp rad, 7thC|Displ transverse fx shaft of unsp rad, 7thC +C2845605|T037|AB|S52.323D|ICD10CM|Displ transverse fx shaft of unsp rad, 7thD|Displ transverse fx shaft of unsp rad, 7thD +C2845606|T037|AB|S52.323E|ICD10CM|Displ transverse fx shaft of unsp rad, 7thE|Displ transverse fx shaft of unsp rad, 7thE +C2845607|T037|AB|S52.323F|ICD10CM|Displ transverse fx shaft of unsp rad, 7thF|Displ transverse fx shaft of unsp rad, 7thF +C2845608|T037|AB|S52.323G|ICD10CM|Displ transverse fx shaft of unsp rad, 7thG|Displ transverse fx shaft of unsp rad, 7thG +C2845609|T037|AB|S52.323H|ICD10CM|Displ transverse fx shaft of unsp rad, 7thH|Displ transverse fx shaft of unsp rad, 7thH +C2845610|T037|AB|S52.323J|ICD10CM|Displ transverse fx shaft of unsp rad, 7thJ|Displ transverse fx shaft of unsp rad, 7thJ +C2845611|T037|AB|S52.323K|ICD10CM|Displ transverse fx shaft of unsp rad, 7thK|Displ transverse fx shaft of unsp rad, 7thK +C2845612|T037|AB|S52.323M|ICD10CM|Displ transverse fx shaft of unsp rad, 7thM|Displ transverse fx shaft of unsp rad, 7thM +C2845613|T037|AB|S52.323N|ICD10CM|Displ transverse fx shaft of unsp rad, 7thN|Displ transverse fx shaft of unsp rad, 7thN +C2845614|T037|AB|S52.323P|ICD10CM|Displ transverse fx shaft of unsp rad, 7thP|Displ transverse fx shaft of unsp rad, 7thP +C2845615|T037|AB|S52.323Q|ICD10CM|Displ transverse fx shaft of unsp rad, 7thQ|Displ transverse fx shaft of unsp rad, 7thQ +C2845616|T037|AB|S52.323R|ICD10CM|Displ transverse fx shaft of unsp rad, 7thR|Displ transverse fx shaft of unsp rad, 7thR +C2845617|T037|PT|S52.323S|ICD10CM|Displaced transverse fracture of shaft of unspecified radius, sequela|Displaced transverse fracture of shaft of unspecified radius, sequela +C2845617|T037|AB|S52.323S|ICD10CM|Displaced transverse fx shaft of unsp radius, sequela|Displaced transverse fx shaft of unsp radius, sequela +C2845618|T037|AB|S52.324|ICD10CM|Nondisplaced transverse fracture of shaft of right radius|Nondisplaced transverse fracture of shaft of right radius +C2845618|T037|HT|S52.324|ICD10CM|Nondisplaced transverse fracture of shaft of right radius|Nondisplaced transverse fracture of shaft of right radius +C2845619|T037|AB|S52.324A|ICD10CM|Nondisp transverse fracture of shaft of right radius, init|Nondisp transverse fracture of shaft of right radius, init +C2845619|T037|PT|S52.324A|ICD10CM|Nondisplaced transverse fracture of shaft of right radius, initial encounter for closed fracture|Nondisplaced transverse fracture of shaft of right radius, initial encounter for closed fracture +C2845620|T037|AB|S52.324B|ICD10CM|Nondisp transverse fx shaft of r rad, 7thB|Nondisp transverse fx shaft of r rad, 7thB +C2845621|T037|AB|S52.324C|ICD10CM|Nondisp transverse fx shaft of r rad, 7thC|Nondisp transverse fx shaft of r rad, 7thC +C2845622|T037|AB|S52.324D|ICD10CM|Nondisp transverse fx shaft of r rad, 7thD|Nondisp transverse fx shaft of r rad, 7thD +C2845623|T037|AB|S52.324E|ICD10CM|Nondisp transverse fx shaft of r rad, 7thE|Nondisp transverse fx shaft of r rad, 7thE +C2845624|T037|AB|S52.324F|ICD10CM|Nondisp transverse fx shaft of r rad, 7thF|Nondisp transverse fx shaft of r rad, 7thF +C2845625|T037|AB|S52.324G|ICD10CM|Nondisp transverse fx shaft of r rad, 7thG|Nondisp transverse fx shaft of r rad, 7thG +C2845626|T037|AB|S52.324H|ICD10CM|Nondisp transverse fx shaft of r rad, 7thH|Nondisp transverse fx shaft of r rad, 7thH +C2845627|T037|AB|S52.324J|ICD10CM|Nondisp transverse fx shaft of r rad, 7thJ|Nondisp transverse fx shaft of r rad, 7thJ +C2845628|T037|AB|S52.324K|ICD10CM|Nondisp transverse fx shaft of r rad, 7thK|Nondisp transverse fx shaft of r rad, 7thK +C2845629|T037|AB|S52.324M|ICD10CM|Nondisp transverse fx shaft of r rad, 7thM|Nondisp transverse fx shaft of r rad, 7thM +C2845630|T037|AB|S52.324N|ICD10CM|Nondisp transverse fx shaft of r rad, 7thN|Nondisp transverse fx shaft of r rad, 7thN +C2845631|T037|AB|S52.324P|ICD10CM|Nondisp transverse fx shaft of r rad, 7thP|Nondisp transverse fx shaft of r rad, 7thP +C2845632|T037|AB|S52.324Q|ICD10CM|Nondisp transverse fx shaft of r rad, 7thQ|Nondisp transverse fx shaft of r rad, 7thQ +C2845633|T037|AB|S52.324R|ICD10CM|Nondisp transverse fx shaft of r rad, 7thR|Nondisp transverse fx shaft of r rad, 7thR +C2845634|T037|AB|S52.324S|ICD10CM|Nondisp transverse fracture of shaft of r radius, sequela|Nondisp transverse fracture of shaft of r radius, sequela +C2845634|T037|PT|S52.324S|ICD10CM|Nondisplaced transverse fracture of shaft of right radius, sequela|Nondisplaced transverse fracture of shaft of right radius, sequela +C2845635|T037|AB|S52.325|ICD10CM|Nondisplaced transverse fracture of shaft of left radius|Nondisplaced transverse fracture of shaft of left radius +C2845635|T037|HT|S52.325|ICD10CM|Nondisplaced transverse fracture of shaft of left radius|Nondisplaced transverse fracture of shaft of left radius +C2845636|T037|AB|S52.325A|ICD10CM|Nondisp transverse fracture of shaft of left radius, init|Nondisp transverse fracture of shaft of left radius, init +C2845636|T037|PT|S52.325A|ICD10CM|Nondisplaced transverse fracture of shaft of left radius, initial encounter for closed fracture|Nondisplaced transverse fracture of shaft of left radius, initial encounter for closed fracture +C2845637|T037|AB|S52.325B|ICD10CM|Nondisp transverse fx shaft of l rad, 7thB|Nondisp transverse fx shaft of l rad, 7thB +C2845638|T037|AB|S52.325C|ICD10CM|Nondisp transverse fx shaft of l rad, 7thC|Nondisp transverse fx shaft of l rad, 7thC +C2845639|T037|AB|S52.325D|ICD10CM|Nondisp transverse fx shaft of l rad, 7thD|Nondisp transverse fx shaft of l rad, 7thD +C2845640|T037|AB|S52.325E|ICD10CM|Nondisp transverse fx shaft of l rad, 7thE|Nondisp transverse fx shaft of l rad, 7thE +C2845641|T037|AB|S52.325F|ICD10CM|Nondisp transverse fx shaft of l rad, 7thF|Nondisp transverse fx shaft of l rad, 7thF +C2845642|T037|AB|S52.325G|ICD10CM|Nondisp transverse fx shaft of l rad, 7thG|Nondisp transverse fx shaft of l rad, 7thG +C2845643|T037|AB|S52.325H|ICD10CM|Nondisp transverse fx shaft of l rad, 7thH|Nondisp transverse fx shaft of l rad, 7thH +C2845644|T037|AB|S52.325J|ICD10CM|Nondisp transverse fx shaft of l rad, 7thJ|Nondisp transverse fx shaft of l rad, 7thJ +C2845645|T037|AB|S52.325K|ICD10CM|Nondisp transverse fx shaft of l rad, 7thK|Nondisp transverse fx shaft of l rad, 7thK +C2845646|T037|AB|S52.325M|ICD10CM|Nondisp transverse fx shaft of l rad, 7thM|Nondisp transverse fx shaft of l rad, 7thM +C2845647|T037|AB|S52.325N|ICD10CM|Nondisp transverse fx shaft of l rad, 7thN|Nondisp transverse fx shaft of l rad, 7thN +C2845648|T037|AB|S52.325P|ICD10CM|Nondisp transverse fx shaft of l rad, 7thP|Nondisp transverse fx shaft of l rad, 7thP +C2845649|T037|AB|S52.325Q|ICD10CM|Nondisp transverse fx shaft of l rad, 7thQ|Nondisp transverse fx shaft of l rad, 7thQ +C2845650|T037|AB|S52.325R|ICD10CM|Nondisp transverse fx shaft of l rad, 7thR|Nondisp transverse fx shaft of l rad, 7thR +C2845651|T037|AB|S52.325S|ICD10CM|Nondisp transverse fracture of shaft of left radius, sequela|Nondisp transverse fracture of shaft of left radius, sequela +C2845651|T037|PT|S52.325S|ICD10CM|Nondisplaced transverse fracture of shaft of left radius, sequela|Nondisplaced transverse fracture of shaft of left radius, sequela +C2845652|T037|AB|S52.326|ICD10CM|Nondisplaced transverse fracture of shaft of unsp radius|Nondisplaced transverse fracture of shaft of unsp radius +C2845652|T037|HT|S52.326|ICD10CM|Nondisplaced transverse fracture of shaft of unspecified radius|Nondisplaced transverse fracture of shaft of unspecified radius +C2845653|T037|AB|S52.326A|ICD10CM|Nondisp transverse fracture of shaft of unsp radius, init|Nondisp transverse fracture of shaft of unsp radius, init +C2845654|T037|AB|S52.326B|ICD10CM|Nondisp transverse fx shaft of unsp rad, 7thB|Nondisp transverse fx shaft of unsp rad, 7thB +C2845655|T037|AB|S52.326C|ICD10CM|Nondisp transverse fx shaft of unsp rad, 7thC|Nondisp transverse fx shaft of unsp rad, 7thC +C2845656|T037|AB|S52.326D|ICD10CM|Nondisp transverse fx shaft of unsp rad, 7thD|Nondisp transverse fx shaft of unsp rad, 7thD +C2845657|T037|AB|S52.326E|ICD10CM|Nondisp transverse fx shaft of unsp rad, 7thE|Nondisp transverse fx shaft of unsp rad, 7thE +C2845658|T037|AB|S52.326F|ICD10CM|Nondisp transverse fx shaft of unsp rad, 7thF|Nondisp transverse fx shaft of unsp rad, 7thF +C2845659|T037|AB|S52.326G|ICD10CM|Nondisp transverse fx shaft of unsp rad, 7thG|Nondisp transverse fx shaft of unsp rad, 7thG +C2845660|T037|AB|S52.326H|ICD10CM|Nondisp transverse fx shaft of unsp rad, 7thH|Nondisp transverse fx shaft of unsp rad, 7thH +C2845661|T037|AB|S52.326J|ICD10CM|Nondisp transverse fx shaft of unsp rad, 7thJ|Nondisp transverse fx shaft of unsp rad, 7thJ +C2845662|T037|AB|S52.326K|ICD10CM|Nondisp transverse fx shaft of unsp rad, 7thK|Nondisp transverse fx shaft of unsp rad, 7thK +C2845663|T037|AB|S52.326M|ICD10CM|Nondisp transverse fx shaft of unsp rad, 7thM|Nondisp transverse fx shaft of unsp rad, 7thM +C2845664|T037|AB|S52.326N|ICD10CM|Nondisp transverse fx shaft of unsp rad, 7thN|Nondisp transverse fx shaft of unsp rad, 7thN +C2845665|T037|AB|S52.326P|ICD10CM|Nondisp transverse fx shaft of unsp rad, 7thP|Nondisp transverse fx shaft of unsp rad, 7thP +C2845666|T037|AB|S52.326Q|ICD10CM|Nondisp transverse fx shaft of unsp rad, 7thQ|Nondisp transverse fx shaft of unsp rad, 7thQ +C2845667|T037|AB|S52.326R|ICD10CM|Nondisp transverse fx shaft of unsp rad, 7thR|Nondisp transverse fx shaft of unsp rad, 7thR +C2845668|T037|AB|S52.326S|ICD10CM|Nondisp transverse fracture of shaft of unsp radius, sequela|Nondisp transverse fracture of shaft of unsp radius, sequela +C2845668|T037|PT|S52.326S|ICD10CM|Nondisplaced transverse fracture of shaft of unspecified radius, sequela|Nondisplaced transverse fracture of shaft of unspecified radius, sequela +C2845669|T037|AB|S52.33|ICD10CM|Oblique fracture of shaft of radius|Oblique fracture of shaft of radius +C2845669|T037|HT|S52.33|ICD10CM|Oblique fracture of shaft of radius|Oblique fracture of shaft of radius +C2845670|T037|AB|S52.331|ICD10CM|Displaced oblique fracture of shaft of right radius|Displaced oblique fracture of shaft of right radius +C2845670|T037|HT|S52.331|ICD10CM|Displaced oblique fracture of shaft of right radius|Displaced oblique fracture of shaft of right radius +C2845671|T037|AB|S52.331A|ICD10CM|Displaced oblique fracture of shaft of right radius, init|Displaced oblique fracture of shaft of right radius, init +C2845671|T037|PT|S52.331A|ICD10CM|Displaced oblique fracture of shaft of right radius, initial encounter for closed fracture|Displaced oblique fracture of shaft of right radius, initial encounter for closed fracture +C2845672|T037|AB|S52.331B|ICD10CM|Displ oblique fx shaft of r radius, init for opn fx type I/2|Displ oblique fx shaft of r radius, init for opn fx type I/2 +C2845673|T037|AB|S52.331C|ICD10CM|Displ oblique fx shaft of r rad, init for opn fx type 3A/B/C|Displ oblique fx shaft of r rad, init for opn fx type 3A/B/C +C2845674|T037|AB|S52.331D|ICD10CM|Displ oblique fx shaft of r rad, 7thD|Displ oblique fx shaft of r rad, 7thD +C2845675|T037|AB|S52.331E|ICD10CM|Displ oblique fx shaft of r rad, 7thE|Displ oblique fx shaft of r rad, 7thE +C2845676|T037|AB|S52.331F|ICD10CM|Displ oblique fx shaft of r rad, 7thF|Displ oblique fx shaft of r rad, 7thF +C2845677|T037|AB|S52.331G|ICD10CM|Displ oblique fx shaft of r rad, 7thG|Displ oblique fx shaft of r rad, 7thG +C2845678|T037|AB|S52.331H|ICD10CM|Displ oblique fx shaft of r rad, 7thH|Displ oblique fx shaft of r rad, 7thH +C2845679|T037|AB|S52.331J|ICD10CM|Displ oblique fx shaft of r rad, 7thJ|Displ oblique fx shaft of r rad, 7thJ +C2845680|T037|AB|S52.331K|ICD10CM|Displ oblique fx shaft of r rad, subs for clos fx w nonunion|Displ oblique fx shaft of r rad, subs for clos fx w nonunion +C2845681|T037|AB|S52.331M|ICD10CM|Displ oblique fx shaft of r rad, 7thM|Displ oblique fx shaft of r rad, 7thM +C2845682|T037|AB|S52.331N|ICD10CM|Displ oblique fx shaft of r rad, 7thN|Displ oblique fx shaft of r rad, 7thN +C2845683|T037|AB|S52.331P|ICD10CM|Displ oblique fx shaft of r rad, subs for clos fx w malunion|Displ oblique fx shaft of r rad, subs for clos fx w malunion +C2845684|T037|AB|S52.331Q|ICD10CM|Displ oblique fx shaft of r rad, 7thQ|Displ oblique fx shaft of r rad, 7thQ +C2845685|T037|AB|S52.331R|ICD10CM|Displ oblique fx shaft of r rad, 7thR|Displ oblique fx shaft of r rad, 7thR +C2845686|T037|AB|S52.331S|ICD10CM|Displaced oblique fracture of shaft of right radius, sequela|Displaced oblique fracture of shaft of right radius, sequela +C2845686|T037|PT|S52.331S|ICD10CM|Displaced oblique fracture of shaft of right radius, sequela|Displaced oblique fracture of shaft of right radius, sequela +C2845687|T037|AB|S52.332|ICD10CM|Displaced oblique fracture of shaft of left radius|Displaced oblique fracture of shaft of left radius +C2845687|T037|HT|S52.332|ICD10CM|Displaced oblique fracture of shaft of left radius|Displaced oblique fracture of shaft of left radius +C2845688|T037|AB|S52.332A|ICD10CM|Displaced oblique fracture of shaft of left radius, init|Displaced oblique fracture of shaft of left radius, init +C2845688|T037|PT|S52.332A|ICD10CM|Displaced oblique fracture of shaft of left radius, initial encounter for closed fracture|Displaced oblique fracture of shaft of left radius, initial encounter for closed fracture +C2845689|T037|AB|S52.332B|ICD10CM|Displ oblique fx shaft of left rad, init for opn fx type I/2|Displ oblique fx shaft of left rad, init for opn fx type I/2 +C2845689|T037|PT|S52.332B|ICD10CM|Displaced oblique fracture of shaft of left radius, initial encounter for open fracture type I or II|Displaced oblique fracture of shaft of left radius, initial encounter for open fracture type I or II +C2845690|T037|AB|S52.332C|ICD10CM|Displ oblique fx shaft of l rad, init for opn fx type 3A/B/C|Displ oblique fx shaft of l rad, init for opn fx type 3A/B/C +C2845691|T037|AB|S52.332D|ICD10CM|Displ oblique fx shaft of l rad, 7thD|Displ oblique fx shaft of l rad, 7thD +C2845692|T037|AB|S52.332E|ICD10CM|Displ oblique fx shaft of l rad, 7thE|Displ oblique fx shaft of l rad, 7thE +C2845693|T037|AB|S52.332F|ICD10CM|Displ oblique fx shaft of l rad, 7thF|Displ oblique fx shaft of l rad, 7thF +C2845694|T037|AB|S52.332G|ICD10CM|Displ oblique fx shaft of l rad, 7thG|Displ oblique fx shaft of l rad, 7thG +C2845695|T037|AB|S52.332H|ICD10CM|Displ oblique fx shaft of l rad, 7thH|Displ oblique fx shaft of l rad, 7thH +C2845696|T037|AB|S52.332J|ICD10CM|Displ oblique fx shaft of l rad, 7thJ|Displ oblique fx shaft of l rad, 7thJ +C2845697|T037|AB|S52.332K|ICD10CM|Displ oblique fx shaft of l rad, subs for clos fx w nonunion|Displ oblique fx shaft of l rad, subs for clos fx w nonunion +C2845698|T037|AB|S52.332M|ICD10CM|Displ oblique fx shaft of l rad, 7thM|Displ oblique fx shaft of l rad, 7thM +C2845699|T037|AB|S52.332N|ICD10CM|Displ oblique fx shaft of l rad, 7thN|Displ oblique fx shaft of l rad, 7thN +C2845700|T037|AB|S52.332P|ICD10CM|Displ oblique fx shaft of l rad, subs for clos fx w malunion|Displ oblique fx shaft of l rad, subs for clos fx w malunion +C2845701|T037|AB|S52.332Q|ICD10CM|Displ oblique fx shaft of l rad, 7thQ|Displ oblique fx shaft of l rad, 7thQ +C2845702|T037|AB|S52.332R|ICD10CM|Displ oblique fx shaft of l rad, 7thR|Displ oblique fx shaft of l rad, 7thR +C2845703|T037|PT|S52.332S|ICD10CM|Displaced oblique fracture of shaft of left radius, sequela|Displaced oblique fracture of shaft of left radius, sequela +C2845703|T037|AB|S52.332S|ICD10CM|Displaced oblique fracture of shaft of left radius, sequela|Displaced oblique fracture of shaft of left radius, sequela +C2845704|T037|AB|S52.333|ICD10CM|Displaced oblique fracture of shaft of unspecified radius|Displaced oblique fracture of shaft of unspecified radius +C2845704|T037|HT|S52.333|ICD10CM|Displaced oblique fracture of shaft of unspecified radius|Displaced oblique fracture of shaft of unspecified radius +C2845705|T037|AB|S52.333A|ICD10CM|Displaced oblique fracture of shaft of unsp radius, init|Displaced oblique fracture of shaft of unsp radius, init +C2845705|T037|PT|S52.333A|ICD10CM|Displaced oblique fracture of shaft of unspecified radius, initial encounter for closed fracture|Displaced oblique fracture of shaft of unspecified radius, initial encounter for closed fracture +C2845706|T037|AB|S52.333B|ICD10CM|Displ oblique fx shaft of unsp rad, init for opn fx type I/2|Displ oblique fx shaft of unsp rad, init for opn fx type I/2 +C2845707|T037|AB|S52.333C|ICD10CM|Displ oblique fx shaft of unsp rad, 7thC|Displ oblique fx shaft of unsp rad, 7thC +C2845708|T037|AB|S52.333D|ICD10CM|Displ oblique fx shaft of unsp rad, 7thD|Displ oblique fx shaft of unsp rad, 7thD +C2845709|T037|AB|S52.333E|ICD10CM|Displ oblique fx shaft of unsp rad, 7thE|Displ oblique fx shaft of unsp rad, 7thE +C2845710|T037|AB|S52.333F|ICD10CM|Displ oblique fx shaft of unsp rad, 7thF|Displ oblique fx shaft of unsp rad, 7thF +C2845711|T037|AB|S52.333G|ICD10CM|Displ oblique fx shaft of unsp rad, 7thG|Displ oblique fx shaft of unsp rad, 7thG +C2845712|T037|AB|S52.333H|ICD10CM|Displ oblique fx shaft of unsp rad, 7thH|Displ oblique fx shaft of unsp rad, 7thH +C2845713|T037|AB|S52.333J|ICD10CM|Displ oblique fx shaft of unsp rad, 7thJ|Displ oblique fx shaft of unsp rad, 7thJ +C2845714|T037|AB|S52.333K|ICD10CM|Displ oblique fx shaft of unsp rad, 7thK|Displ oblique fx shaft of unsp rad, 7thK +C2845715|T037|AB|S52.333M|ICD10CM|Displ oblique fx shaft of unsp rad, 7thM|Displ oblique fx shaft of unsp rad, 7thM +C2845716|T037|AB|S52.333N|ICD10CM|Displ oblique fx shaft of unsp rad, 7thN|Displ oblique fx shaft of unsp rad, 7thN +C2845717|T037|AB|S52.333P|ICD10CM|Displ oblique fx shaft of unsp rad, 7thP|Displ oblique fx shaft of unsp rad, 7thP +C2845718|T037|AB|S52.333Q|ICD10CM|Displ oblique fx shaft of unsp rad, 7thQ|Displ oblique fx shaft of unsp rad, 7thQ +C2845719|T037|AB|S52.333R|ICD10CM|Displ oblique fx shaft of unsp rad, 7thR|Displ oblique fx shaft of unsp rad, 7thR +C2845720|T037|AB|S52.333S|ICD10CM|Displaced oblique fracture of shaft of unsp radius, sequela|Displaced oblique fracture of shaft of unsp radius, sequela +C2845720|T037|PT|S52.333S|ICD10CM|Displaced oblique fracture of shaft of unspecified radius, sequela|Displaced oblique fracture of shaft of unspecified radius, sequela +C2845721|T037|AB|S52.334|ICD10CM|Nondisplaced oblique fracture of shaft of right radius|Nondisplaced oblique fracture of shaft of right radius +C2845721|T037|HT|S52.334|ICD10CM|Nondisplaced oblique fracture of shaft of right radius|Nondisplaced oblique fracture of shaft of right radius +C2845722|T037|AB|S52.334A|ICD10CM|Nondisplaced oblique fracture of shaft of right radius, init|Nondisplaced oblique fracture of shaft of right radius, init +C2845722|T037|PT|S52.334A|ICD10CM|Nondisplaced oblique fracture of shaft of right radius, initial encounter for closed fracture|Nondisplaced oblique fracture of shaft of right radius, initial encounter for closed fracture +C2845723|T037|AB|S52.334B|ICD10CM|Nondisp oblique fx shaft of r rad, init for opn fx type I/2|Nondisp oblique fx shaft of r rad, init for opn fx type I/2 +C2845724|T037|AB|S52.334C|ICD10CM|Nondisp oblique fx shaft of r rad, 7thC|Nondisp oblique fx shaft of r rad, 7thC +C2845725|T037|AB|S52.334D|ICD10CM|Nondisp oblique fx shaft of r rad, 7thD|Nondisp oblique fx shaft of r rad, 7thD +C2845726|T037|AB|S52.334E|ICD10CM|Nondisp oblique fx shaft of r rad, 7thE|Nondisp oblique fx shaft of r rad, 7thE +C2845727|T037|AB|S52.334F|ICD10CM|Nondisp oblique fx shaft of r rad, 7thF|Nondisp oblique fx shaft of r rad, 7thF +C2845728|T037|AB|S52.334G|ICD10CM|Nondisp oblique fx shaft of r rad, 7thG|Nondisp oblique fx shaft of r rad, 7thG +C2845729|T037|AB|S52.334H|ICD10CM|Nondisp oblique fx shaft of r rad, 7thH|Nondisp oblique fx shaft of r rad, 7thH +C2845730|T037|AB|S52.334J|ICD10CM|Nondisp oblique fx shaft of r rad, 7thJ|Nondisp oblique fx shaft of r rad, 7thJ +C2845731|T037|AB|S52.334K|ICD10CM|Nondisp oblique fx shaft of r rad, 7thK|Nondisp oblique fx shaft of r rad, 7thK +C2845732|T037|AB|S52.334M|ICD10CM|Nondisp oblique fx shaft of r rad, 7thM|Nondisp oblique fx shaft of r rad, 7thM +C2845733|T037|AB|S52.334N|ICD10CM|Nondisp oblique fx shaft of r rad, 7thN|Nondisp oblique fx shaft of r rad, 7thN +C2845734|T037|AB|S52.334P|ICD10CM|Nondisp oblique fx shaft of r rad, 7thP|Nondisp oblique fx shaft of r rad, 7thP +C2845735|T037|AB|S52.334Q|ICD10CM|Nondisp oblique fx shaft of r rad, 7thQ|Nondisp oblique fx shaft of r rad, 7thQ +C2845736|T037|AB|S52.334R|ICD10CM|Nondisp oblique fx shaft of r rad, 7thR|Nondisp oblique fx shaft of r rad, 7thR +C2845737|T037|AB|S52.334S|ICD10CM|Nondisp oblique fracture of shaft of right radius, sequela|Nondisp oblique fracture of shaft of right radius, sequela +C2845737|T037|PT|S52.334S|ICD10CM|Nondisplaced oblique fracture of shaft of right radius, sequela|Nondisplaced oblique fracture of shaft of right radius, sequela +C2845738|T037|AB|S52.335|ICD10CM|Nondisplaced oblique fracture of shaft of left radius|Nondisplaced oblique fracture of shaft of left radius +C2845738|T037|HT|S52.335|ICD10CM|Nondisplaced oblique fracture of shaft of left radius|Nondisplaced oblique fracture of shaft of left radius +C2845739|T037|AB|S52.335A|ICD10CM|Nondisplaced oblique fracture of shaft of left radius, init|Nondisplaced oblique fracture of shaft of left radius, init +C2845739|T037|PT|S52.335A|ICD10CM|Nondisplaced oblique fracture of shaft of left radius, initial encounter for closed fracture|Nondisplaced oblique fracture of shaft of left radius, initial encounter for closed fracture +C2845740|T037|AB|S52.335B|ICD10CM|Nondisp oblique fx shaft of l rad, init for opn fx type I/2|Nondisp oblique fx shaft of l rad, init for opn fx type I/2 +C2845741|T037|AB|S52.335C|ICD10CM|Nondisp oblique fx shaft of l rad, 7thC|Nondisp oblique fx shaft of l rad, 7thC +C2845742|T037|AB|S52.335D|ICD10CM|Nondisp oblique fx shaft of l rad, 7thD|Nondisp oblique fx shaft of l rad, 7thD +C2845743|T037|AB|S52.335E|ICD10CM|Nondisp oblique fx shaft of l rad, 7thE|Nondisp oblique fx shaft of l rad, 7thE +C2845744|T037|AB|S52.335F|ICD10CM|Nondisp oblique fx shaft of l rad, 7thF|Nondisp oblique fx shaft of l rad, 7thF +C2845745|T037|AB|S52.335G|ICD10CM|Nondisp oblique fx shaft of l rad, 7thG|Nondisp oblique fx shaft of l rad, 7thG +C2845746|T037|AB|S52.335H|ICD10CM|Nondisp oblique fx shaft of l rad, 7thH|Nondisp oblique fx shaft of l rad, 7thH +C2845747|T037|AB|S52.335J|ICD10CM|Nondisp oblique fx shaft of l rad, 7thJ|Nondisp oblique fx shaft of l rad, 7thJ +C2845748|T037|AB|S52.335K|ICD10CM|Nondisp oblique fx shaft of l rad, 7thK|Nondisp oblique fx shaft of l rad, 7thK +C2845749|T037|AB|S52.335M|ICD10CM|Nondisp oblique fx shaft of l rad, 7thM|Nondisp oblique fx shaft of l rad, 7thM +C2845750|T037|AB|S52.335N|ICD10CM|Nondisp oblique fx shaft of l rad, 7thN|Nondisp oblique fx shaft of l rad, 7thN +C2845751|T037|AB|S52.335P|ICD10CM|Nondisp oblique fx shaft of l rad, 7thP|Nondisp oblique fx shaft of l rad, 7thP +C2845752|T037|AB|S52.335Q|ICD10CM|Nondisp oblique fx shaft of l rad, 7thQ|Nondisp oblique fx shaft of l rad, 7thQ +C2845753|T037|AB|S52.335R|ICD10CM|Nondisp oblique fx shaft of l rad, 7thR|Nondisp oblique fx shaft of l rad, 7thR +C2845754|T037|AB|S52.335S|ICD10CM|Nondisp oblique fracture of shaft of left radius, sequela|Nondisp oblique fracture of shaft of left radius, sequela +C2845754|T037|PT|S52.335S|ICD10CM|Nondisplaced oblique fracture of shaft of left radius, sequela|Nondisplaced oblique fracture of shaft of left radius, sequela +C2845755|T037|AB|S52.336|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified radius|Nondisplaced oblique fracture of shaft of unspecified radius +C2845755|T037|HT|S52.336|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified radius|Nondisplaced oblique fracture of shaft of unspecified radius +C2845756|T037|AB|S52.336A|ICD10CM|Nondisplaced oblique fracture of shaft of unsp radius, init|Nondisplaced oblique fracture of shaft of unsp radius, init +C2845756|T037|PT|S52.336A|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified radius, initial encounter for closed fracture|Nondisplaced oblique fracture of shaft of unspecified radius, initial encounter for closed fracture +C2845757|T037|AB|S52.336B|ICD10CM|Nondisp oblique fx shaft of unsp rad, 7thB|Nondisp oblique fx shaft of unsp rad, 7thB +C2845758|T037|AB|S52.336C|ICD10CM|Nondisp oblique fx shaft of unsp rad, 7thC|Nondisp oblique fx shaft of unsp rad, 7thC +C2845759|T037|AB|S52.336D|ICD10CM|Nondisp oblique fx shaft of unsp rad, 7thD|Nondisp oblique fx shaft of unsp rad, 7thD +C2845760|T037|AB|S52.336E|ICD10CM|Nondisp oblique fx shaft of unsp rad, 7thE|Nondisp oblique fx shaft of unsp rad, 7thE +C2845761|T037|AB|S52.336F|ICD10CM|Nondisp oblique fx shaft of unsp rad, 7thF|Nondisp oblique fx shaft of unsp rad, 7thF +C2845762|T037|AB|S52.336G|ICD10CM|Nondisp oblique fx shaft of unsp rad, 7thG|Nondisp oblique fx shaft of unsp rad, 7thG +C2845763|T037|AB|S52.336H|ICD10CM|Nondisp oblique fx shaft of unsp rad, 7thH|Nondisp oblique fx shaft of unsp rad, 7thH +C2845764|T037|AB|S52.336J|ICD10CM|Nondisp oblique fx shaft of unsp rad, 7thJ|Nondisp oblique fx shaft of unsp rad, 7thJ +C2845765|T037|AB|S52.336K|ICD10CM|Nondisp oblique fx shaft of unsp rad, 7thK|Nondisp oblique fx shaft of unsp rad, 7thK +C2845766|T037|AB|S52.336M|ICD10CM|Nondisp oblique fx shaft of unsp rad, 7thM|Nondisp oblique fx shaft of unsp rad, 7thM +C2845767|T037|AB|S52.336N|ICD10CM|Nondisp oblique fx shaft of unsp rad, 7thN|Nondisp oblique fx shaft of unsp rad, 7thN +C2845768|T037|AB|S52.336P|ICD10CM|Nondisp oblique fx shaft of unsp rad, 7thP|Nondisp oblique fx shaft of unsp rad, 7thP +C2845769|T037|AB|S52.336Q|ICD10CM|Nondisp oblique fx shaft of unsp rad, 7thQ|Nondisp oblique fx shaft of unsp rad, 7thQ +C2845770|T037|AB|S52.336R|ICD10CM|Nondisp oblique fx shaft of unsp rad, 7thR|Nondisp oblique fx shaft of unsp rad, 7thR +C2845771|T037|AB|S52.336S|ICD10CM|Nondisp oblique fracture of shaft of unsp radius, sequela|Nondisp oblique fracture of shaft of unsp radius, sequela +C2845771|T037|PT|S52.336S|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified radius, sequela|Nondisplaced oblique fracture of shaft of unspecified radius, sequela +C2845772|T037|AB|S52.34|ICD10CM|Spiral fracture of shaft of radius|Spiral fracture of shaft of radius +C2845772|T037|HT|S52.34|ICD10CM|Spiral fracture of shaft of radius|Spiral fracture of shaft of radius +C2845773|T037|AB|S52.341|ICD10CM|Displaced spiral fracture of shaft of radius, right arm|Displaced spiral fracture of shaft of radius, right arm +C2845773|T037|HT|S52.341|ICD10CM|Displaced spiral fracture of shaft of radius, right arm|Displaced spiral fracture of shaft of radius, right arm +C2845774|T037|PT|S52.341A|ICD10CM|Displaced spiral fracture of shaft of radius, right arm, initial encounter for closed fracture|Displaced spiral fracture of shaft of radius, right arm, initial encounter for closed fracture +C2845774|T037|AB|S52.341A|ICD10CM|Displaced spiral fx shaft of radius, right arm, init|Displaced spiral fx shaft of radius, right arm, init +C2845775|T037|AB|S52.341B|ICD10CM|Displ spiral fx shaft of rad, r arm, 7thB|Displ spiral fx shaft of rad, r arm, 7thB +C2845776|T037|AB|S52.341C|ICD10CM|Displ spiral fx shaft of rad, r arm, 7thC|Displ spiral fx shaft of rad, r arm, 7thC +C2845777|T037|AB|S52.341D|ICD10CM|Displ spiral fx shaft of rad, r arm, 7thD|Displ spiral fx shaft of rad, r arm, 7thD +C2845778|T037|AB|S52.341E|ICD10CM|Displ spiral fx shaft of rad, r arm, 7thE|Displ spiral fx shaft of rad, r arm, 7thE +C2845779|T037|AB|S52.341F|ICD10CM|Displ spiral fx shaft of rad, r arm, 7thF|Displ spiral fx shaft of rad, r arm, 7thF +C2845780|T037|AB|S52.341G|ICD10CM|Displ spiral fx shaft of rad, r arm, 7thG|Displ spiral fx shaft of rad, r arm, 7thG +C2845781|T037|AB|S52.341H|ICD10CM|Displ spiral fx shaft of rad, r arm, 7thH|Displ spiral fx shaft of rad, r arm, 7thH +C2845782|T037|AB|S52.341J|ICD10CM|Displ spiral fx shaft of rad, r arm, 7thJ|Displ spiral fx shaft of rad, r arm, 7thJ +C2845783|T037|AB|S52.341K|ICD10CM|Displ spiral fx shaft of rad, r arm, 7thK|Displ spiral fx shaft of rad, r arm, 7thK +C2845784|T037|AB|S52.341M|ICD10CM|Displ spiral fx shaft of rad, r arm, 7thM|Displ spiral fx shaft of rad, r arm, 7thM +C2845785|T037|AB|S52.341N|ICD10CM|Displ spiral fx shaft of rad, r arm, 7thN|Displ spiral fx shaft of rad, r arm, 7thN +C2845786|T037|AB|S52.341P|ICD10CM|Displ spiral fx shaft of rad, r arm, 7thP|Displ spiral fx shaft of rad, r arm, 7thP +C2845787|T037|AB|S52.341Q|ICD10CM|Displ spiral fx shaft of rad, r arm, 7thQ|Displ spiral fx shaft of rad, r arm, 7thQ +C2845788|T037|AB|S52.341R|ICD10CM|Displ spiral fx shaft of rad, r arm, 7thR|Displ spiral fx shaft of rad, r arm, 7thR +C2845789|T037|PT|S52.341S|ICD10CM|Displaced spiral fracture of shaft of radius, right arm, sequela|Displaced spiral fracture of shaft of radius, right arm, sequela +C2845789|T037|AB|S52.341S|ICD10CM|Displaced spiral fx shaft of radius, right arm, sequela|Displaced spiral fx shaft of radius, right arm, sequela +C2845790|T037|AB|S52.342|ICD10CM|Displaced spiral fracture of shaft of radius, left arm|Displaced spiral fracture of shaft of radius, left arm +C2845790|T037|HT|S52.342|ICD10CM|Displaced spiral fracture of shaft of radius, left arm|Displaced spiral fracture of shaft of radius, left arm +C2845791|T037|AB|S52.342A|ICD10CM|Displaced spiral fracture of shaft of radius, left arm, init|Displaced spiral fracture of shaft of radius, left arm, init +C2845791|T037|PT|S52.342A|ICD10CM|Displaced spiral fracture of shaft of radius, left arm, initial encounter for closed fracture|Displaced spiral fracture of shaft of radius, left arm, initial encounter for closed fracture +C2845792|T037|AB|S52.342B|ICD10CM|Displ spiral fx shaft of rad, l arm, 7thB|Displ spiral fx shaft of rad, l arm, 7thB +C2845793|T037|AB|S52.342C|ICD10CM|Displ spiral fx shaft of rad, l arm, 7thC|Displ spiral fx shaft of rad, l arm, 7thC +C2845794|T037|AB|S52.342D|ICD10CM|Displ spiral fx shaft of rad, l arm, 7thD|Displ spiral fx shaft of rad, l arm, 7thD +C2845795|T037|AB|S52.342E|ICD10CM|Displ spiral fx shaft of rad, l arm, 7thE|Displ spiral fx shaft of rad, l arm, 7thE +C2845796|T037|AB|S52.342F|ICD10CM|Displ spiral fx shaft of rad, l arm, 7thF|Displ spiral fx shaft of rad, l arm, 7thF +C2845797|T037|AB|S52.342G|ICD10CM|Displ spiral fx shaft of rad, l arm, 7thG|Displ spiral fx shaft of rad, l arm, 7thG +C2845798|T037|AB|S52.342H|ICD10CM|Displ spiral fx shaft of rad, l arm, 7thH|Displ spiral fx shaft of rad, l arm, 7thH +C2845799|T037|AB|S52.342J|ICD10CM|Displ spiral fx shaft of rad, l arm, 7thJ|Displ spiral fx shaft of rad, l arm, 7thJ +C2845800|T037|AB|S52.342K|ICD10CM|Displ spiral fx shaft of rad, l arm, 7thK|Displ spiral fx shaft of rad, l arm, 7thK +C2845801|T037|AB|S52.342M|ICD10CM|Displ spiral fx shaft of rad, l arm, 7thM|Displ spiral fx shaft of rad, l arm, 7thM +C2845802|T037|AB|S52.342N|ICD10CM|Displ spiral fx shaft of rad, l arm, 7thN|Displ spiral fx shaft of rad, l arm, 7thN +C2845803|T037|AB|S52.342P|ICD10CM|Displ spiral fx shaft of rad, l arm, 7thP|Displ spiral fx shaft of rad, l arm, 7thP +C2845804|T037|AB|S52.342Q|ICD10CM|Displ spiral fx shaft of rad, l arm, 7thQ|Displ spiral fx shaft of rad, l arm, 7thQ +C2845805|T037|AB|S52.342R|ICD10CM|Displ spiral fx shaft of rad, l arm, 7thR|Displ spiral fx shaft of rad, l arm, 7thR +C2845806|T037|PT|S52.342S|ICD10CM|Displaced spiral fracture of shaft of radius, left arm, sequela|Displaced spiral fracture of shaft of radius, left arm, sequela +C2845806|T037|AB|S52.342S|ICD10CM|Displaced spiral fx shaft of radius, left arm, sequela|Displaced spiral fx shaft of radius, left arm, sequela +C2845807|T037|AB|S52.343|ICD10CM|Displaced spiral fracture of shaft of radius, unsp arm|Displaced spiral fracture of shaft of radius, unsp arm +C2845807|T037|HT|S52.343|ICD10CM|Displaced spiral fracture of shaft of radius, unspecified arm|Displaced spiral fracture of shaft of radius, unspecified arm +C2845808|T037|AB|S52.343A|ICD10CM|Displaced spiral fracture of shaft of radius, unsp arm, init|Displaced spiral fracture of shaft of radius, unsp arm, init +C2845808|T037|PT|S52.343A|ICD10CM|Displaced spiral fracture of shaft of radius, unspecified arm, initial encounter for closed fracture|Displaced spiral fracture of shaft of radius, unspecified arm, initial encounter for closed fracture +C2845809|T037|AB|S52.343B|ICD10CM|Displ spiral fx shaft of rad, unsp arm, 7thB|Displ spiral fx shaft of rad, unsp arm, 7thB +C2845810|T037|AB|S52.343C|ICD10CM|Displ spiral fx shaft of rad, unsp arm, 7thC|Displ spiral fx shaft of rad, unsp arm, 7thC +C2845811|T037|AB|S52.343D|ICD10CM|Displ spiral fx shaft of rad, unsp arm, 7thD|Displ spiral fx shaft of rad, unsp arm, 7thD +C2845812|T037|AB|S52.343E|ICD10CM|Displ spiral fx shaft of rad, unsp arm, 7thE|Displ spiral fx shaft of rad, unsp arm, 7thE +C2845813|T037|AB|S52.343F|ICD10CM|Displ spiral fx shaft of rad, unsp arm, 7thF|Displ spiral fx shaft of rad, unsp arm, 7thF +C2845814|T037|AB|S52.343G|ICD10CM|Displ spiral fx shaft of rad, unsp arm, 7thG|Displ spiral fx shaft of rad, unsp arm, 7thG +C2845815|T037|AB|S52.343H|ICD10CM|Displ spiral fx shaft of rad, unsp arm, 7thH|Displ spiral fx shaft of rad, unsp arm, 7thH +C2845816|T037|AB|S52.343J|ICD10CM|Displ spiral fx shaft of rad, unsp arm, 7thJ|Displ spiral fx shaft of rad, unsp arm, 7thJ +C2845817|T037|AB|S52.343K|ICD10CM|Displ spiral fx shaft of rad, unsp arm, 7thK|Displ spiral fx shaft of rad, unsp arm, 7thK +C2845818|T037|AB|S52.343M|ICD10CM|Displ spiral fx shaft of rad, unsp arm, 7thM|Displ spiral fx shaft of rad, unsp arm, 7thM +C2845819|T037|AB|S52.343N|ICD10CM|Displ spiral fx shaft of rad, unsp arm, 7thN|Displ spiral fx shaft of rad, unsp arm, 7thN +C2845820|T037|AB|S52.343P|ICD10CM|Displ spiral fx shaft of rad, unsp arm, 7thP|Displ spiral fx shaft of rad, unsp arm, 7thP +C2845821|T037|AB|S52.343Q|ICD10CM|Displ spiral fx shaft of rad, unsp arm, 7thQ|Displ spiral fx shaft of rad, unsp arm, 7thQ +C2845822|T037|AB|S52.343R|ICD10CM|Displ spiral fx shaft of rad, unsp arm, 7thR|Displ spiral fx shaft of rad, unsp arm, 7thR +C2845823|T037|PT|S52.343S|ICD10CM|Displaced spiral fracture of shaft of radius, unspecified arm, sequela|Displaced spiral fracture of shaft of radius, unspecified arm, sequela +C2845823|T037|AB|S52.343S|ICD10CM|Displaced spiral fx shaft of radius, unsp arm, sequela|Displaced spiral fx shaft of radius, unsp arm, sequela +C2845824|T037|AB|S52.344|ICD10CM|Nondisplaced spiral fracture of shaft of radius, right arm|Nondisplaced spiral fracture of shaft of radius, right arm +C2845824|T037|HT|S52.344|ICD10CM|Nondisplaced spiral fracture of shaft of radius, right arm|Nondisplaced spiral fracture of shaft of radius, right arm +C2845825|T037|AB|S52.344A|ICD10CM|Nondisp spiral fracture of shaft of radius, right arm, init|Nondisp spiral fracture of shaft of radius, right arm, init +C2845825|T037|PT|S52.344A|ICD10CM|Nondisplaced spiral fracture of shaft of radius, right arm, initial encounter for closed fracture|Nondisplaced spiral fracture of shaft of radius, right arm, initial encounter for closed fracture +C2845826|T037|AB|S52.344B|ICD10CM|Nondisp spiral fx shaft of rad, r arm, 7thB|Nondisp spiral fx shaft of rad, r arm, 7thB +C2845827|T037|AB|S52.344C|ICD10CM|Nondisp spiral fx shaft of rad, r arm, 7thC|Nondisp spiral fx shaft of rad, r arm, 7thC +C2845828|T037|AB|S52.344D|ICD10CM|Nondisp spiral fx shaft of rad, r arm, 7thD|Nondisp spiral fx shaft of rad, r arm, 7thD +C2845829|T037|AB|S52.344E|ICD10CM|Nondisp spiral fx shaft of rad, r arm, 7thE|Nondisp spiral fx shaft of rad, r arm, 7thE +C2845830|T037|AB|S52.344F|ICD10CM|Nondisp spiral fx shaft of rad, r arm, 7thF|Nondisp spiral fx shaft of rad, r arm, 7thF +C2845831|T037|AB|S52.344G|ICD10CM|Nondisp spiral fx shaft of rad, r arm, 7thG|Nondisp spiral fx shaft of rad, r arm, 7thG +C2845832|T037|AB|S52.344H|ICD10CM|Nondisp spiral fx shaft of rad, r arm, 7thH|Nondisp spiral fx shaft of rad, r arm, 7thH +C2845833|T037|AB|S52.344J|ICD10CM|Nondisp spiral fx shaft of rad, r arm, 7thJ|Nondisp spiral fx shaft of rad, r arm, 7thJ +C2845834|T037|AB|S52.344K|ICD10CM|Nondisp spiral fx shaft of rad, r arm, 7thK|Nondisp spiral fx shaft of rad, r arm, 7thK +C2845835|T037|AB|S52.344M|ICD10CM|Nondisp spiral fx shaft of rad, r arm, 7thM|Nondisp spiral fx shaft of rad, r arm, 7thM +C2845836|T037|AB|S52.344N|ICD10CM|Nondisp spiral fx shaft of rad, r arm, 7thN|Nondisp spiral fx shaft of rad, r arm, 7thN +C2845837|T037|AB|S52.344P|ICD10CM|Nondisp spiral fx shaft of rad, r arm, 7thP|Nondisp spiral fx shaft of rad, r arm, 7thP +C2845838|T037|AB|S52.344Q|ICD10CM|Nondisp spiral fx shaft of rad, r arm, 7thQ|Nondisp spiral fx shaft of rad, r arm, 7thQ +C2845839|T037|AB|S52.344R|ICD10CM|Nondisp spiral fx shaft of rad, r arm, 7thR|Nondisp spiral fx shaft of rad, r arm, 7thR +C2845840|T037|AB|S52.344S|ICD10CM|Nondisp spiral fx shaft of radius, right arm, sequela|Nondisp spiral fx shaft of radius, right arm, sequela +C2845840|T037|PT|S52.344S|ICD10CM|Nondisplaced spiral fracture of shaft of radius, right arm, sequela|Nondisplaced spiral fracture of shaft of radius, right arm, sequela +C2845841|T037|AB|S52.345|ICD10CM|Nondisplaced spiral fracture of shaft of radius, left arm|Nondisplaced spiral fracture of shaft of radius, left arm +C2845841|T037|HT|S52.345|ICD10CM|Nondisplaced spiral fracture of shaft of radius, left arm|Nondisplaced spiral fracture of shaft of radius, left arm +C2845842|T037|AB|S52.345A|ICD10CM|Nondisp spiral fracture of shaft of radius, left arm, init|Nondisp spiral fracture of shaft of radius, left arm, init +C2845842|T037|PT|S52.345A|ICD10CM|Nondisplaced spiral fracture of shaft of radius, left arm, initial encounter for closed fracture|Nondisplaced spiral fracture of shaft of radius, left arm, initial encounter for closed fracture +C2845843|T037|AB|S52.345B|ICD10CM|Nondisp spiral fx shaft of rad, l arm, 7thB|Nondisp spiral fx shaft of rad, l arm, 7thB +C2845844|T037|AB|S52.345C|ICD10CM|Nondisp spiral fx shaft of rad, l arm, 7thC|Nondisp spiral fx shaft of rad, l arm, 7thC +C2845845|T037|AB|S52.345D|ICD10CM|Nondisp spiral fx shaft of rad, l arm, 7thD|Nondisp spiral fx shaft of rad, l arm, 7thD +C2845846|T037|AB|S52.345E|ICD10CM|Nondisp spiral fx shaft of rad, l arm, 7thE|Nondisp spiral fx shaft of rad, l arm, 7thE +C2845847|T037|AB|S52.345F|ICD10CM|Nondisp spiral fx shaft of rad, l arm, 7thF|Nondisp spiral fx shaft of rad, l arm, 7thF +C2845848|T037|AB|S52.345G|ICD10CM|Nondisp spiral fx shaft of rad, l arm, 7thG|Nondisp spiral fx shaft of rad, l arm, 7thG +C2845849|T037|AB|S52.345H|ICD10CM|Nondisp spiral fx shaft of rad, l arm, 7thH|Nondisp spiral fx shaft of rad, l arm, 7thH +C2845850|T037|AB|S52.345J|ICD10CM|Nondisp spiral fx shaft of rad, l arm, 7thJ|Nondisp spiral fx shaft of rad, l arm, 7thJ +C2845851|T037|AB|S52.345K|ICD10CM|Nondisp spiral fx shaft of rad, l arm, 7thK|Nondisp spiral fx shaft of rad, l arm, 7thK +C2845852|T037|AB|S52.345M|ICD10CM|Nondisp spiral fx shaft of rad, l arm, 7thM|Nondisp spiral fx shaft of rad, l arm, 7thM +C2845853|T037|AB|S52.345N|ICD10CM|Nondisp spiral fx shaft of rad, l arm, 7thN|Nondisp spiral fx shaft of rad, l arm, 7thN +C2845854|T037|AB|S52.345P|ICD10CM|Nondisp spiral fx shaft of rad, l arm, 7thP|Nondisp spiral fx shaft of rad, l arm, 7thP +C2845855|T037|AB|S52.345Q|ICD10CM|Nondisp spiral fx shaft of rad, l arm, 7thQ|Nondisp spiral fx shaft of rad, l arm, 7thQ +C2845856|T037|AB|S52.345R|ICD10CM|Nondisp spiral fx shaft of rad, l arm, 7thR|Nondisp spiral fx shaft of rad, l arm, 7thR +C2845857|T037|AB|S52.345S|ICD10CM|Nondisp spiral fx shaft of radius, left arm, sequela|Nondisp spiral fx shaft of radius, left arm, sequela +C2845857|T037|PT|S52.345S|ICD10CM|Nondisplaced spiral fracture of shaft of radius, left arm, sequela|Nondisplaced spiral fracture of shaft of radius, left arm, sequela +C2845858|T037|AB|S52.346|ICD10CM|Nondisplaced spiral fracture of shaft of radius, unsp arm|Nondisplaced spiral fracture of shaft of radius, unsp arm +C2845858|T037|HT|S52.346|ICD10CM|Nondisplaced spiral fracture of shaft of radius, unspecified arm|Nondisplaced spiral fracture of shaft of radius, unspecified arm +C2845859|T037|AB|S52.346A|ICD10CM|Nondisp spiral fracture of shaft of radius, unsp arm, init|Nondisp spiral fracture of shaft of radius, unsp arm, init +C2845860|T037|AB|S52.346B|ICD10CM|Nondisp spiral fx shaft of rad, unsp arm, 7thB|Nondisp spiral fx shaft of rad, unsp arm, 7thB +C2845861|T037|AB|S52.346C|ICD10CM|Nondisp spiral fx shaft of rad, unsp arm, 7thC|Nondisp spiral fx shaft of rad, unsp arm, 7thC +C2845862|T037|AB|S52.346D|ICD10CM|Nondisp spiral fx shaft of rad, unsp arm, 7thD|Nondisp spiral fx shaft of rad, unsp arm, 7thD +C2845863|T037|AB|S52.346E|ICD10CM|Nondisp spiral fx shaft of rad, unsp arm, 7thE|Nondisp spiral fx shaft of rad, unsp arm, 7thE +C2845864|T037|AB|S52.346F|ICD10CM|Nondisp spiral fx shaft of rad, unsp arm, 7thF|Nondisp spiral fx shaft of rad, unsp arm, 7thF +C2845865|T037|AB|S52.346G|ICD10CM|Nondisp spiral fx shaft of rad, unsp arm, 7thG|Nondisp spiral fx shaft of rad, unsp arm, 7thG +C2845866|T037|AB|S52.346H|ICD10CM|Nondisp spiral fx shaft of rad, unsp arm, 7thH|Nondisp spiral fx shaft of rad, unsp arm, 7thH +C2845867|T037|AB|S52.346J|ICD10CM|Nondisp spiral fx shaft of rad, unsp arm, 7thJ|Nondisp spiral fx shaft of rad, unsp arm, 7thJ +C2845868|T037|AB|S52.346K|ICD10CM|Nondisp spiral fx shaft of rad, unsp arm, 7thK|Nondisp spiral fx shaft of rad, unsp arm, 7thK +C2845869|T037|AB|S52.346M|ICD10CM|Nondisp spiral fx shaft of rad, unsp arm, 7thM|Nondisp spiral fx shaft of rad, unsp arm, 7thM +C2845870|T037|AB|S52.346N|ICD10CM|Nondisp spiral fx shaft of rad, unsp arm, 7thN|Nondisp spiral fx shaft of rad, unsp arm, 7thN +C2845871|T037|AB|S52.346P|ICD10CM|Nondisp spiral fx shaft of rad, unsp arm, 7thP|Nondisp spiral fx shaft of rad, unsp arm, 7thP +C2845989|T037|AB|S52.346Q|ICD10CM|Nondisp spiral fx shaft of rad, unsp arm, 7thQ|Nondisp spiral fx shaft of rad, unsp arm, 7thQ +C2845990|T037|AB|S52.346R|ICD10CM|Nondisp spiral fx shaft of rad, unsp arm, 7thR|Nondisp spiral fx shaft of rad, unsp arm, 7thR +C2845991|T037|AB|S52.346S|ICD10CM|Nondisp spiral fx shaft of radius, unsp arm, sequela|Nondisp spiral fx shaft of radius, unsp arm, sequela +C2845991|T037|PT|S52.346S|ICD10CM|Nondisplaced spiral fracture of shaft of radius, unspecified arm, sequela|Nondisplaced spiral fracture of shaft of radius, unspecified arm, sequela +C2845992|T037|AB|S52.35|ICD10CM|Comminuted fracture of shaft of radius|Comminuted fracture of shaft of radius +C2845992|T037|HT|S52.35|ICD10CM|Comminuted fracture of shaft of radius|Comminuted fracture of shaft of radius +C2845993|T037|AB|S52.351|ICD10CM|Displaced comminuted fracture of shaft of radius, right arm|Displaced comminuted fracture of shaft of radius, right arm +C2845993|T037|HT|S52.351|ICD10CM|Displaced comminuted fracture of shaft of radius, right arm|Displaced comminuted fracture of shaft of radius, right arm +C2845994|T037|PT|S52.351A|ICD10CM|Displaced comminuted fracture of shaft of radius, right arm, initial encounter for closed fracture|Displaced comminuted fracture of shaft of radius, right arm, initial encounter for closed fracture +C2845994|T037|AB|S52.351A|ICD10CM|Displaced comminuted fx shaft of radius, right arm, init|Displaced comminuted fx shaft of radius, right arm, init +C2845995|T037|AB|S52.351B|ICD10CM|Displ commnt fx shaft of rad, r arm, 7thB|Displ commnt fx shaft of rad, r arm, 7thB +C2845996|T037|AB|S52.351C|ICD10CM|Displ commnt fx shaft of rad, r arm, 7thC|Displ commnt fx shaft of rad, r arm, 7thC +C2845997|T037|AB|S52.351D|ICD10CM|Displ commnt fx shaft of rad, r arm, 7thD|Displ commnt fx shaft of rad, r arm, 7thD +C2845998|T037|AB|S52.351E|ICD10CM|Displ commnt fx shaft of rad, r arm, 7thE|Displ commnt fx shaft of rad, r arm, 7thE +C2845999|T037|AB|S52.351F|ICD10CM|Displ commnt fx shaft of rad, r arm, 7thF|Displ commnt fx shaft of rad, r arm, 7thF +C2846000|T037|AB|S52.351G|ICD10CM|Displ commnt fx shaft of rad, r arm, 7thG|Displ commnt fx shaft of rad, r arm, 7thG +C2846001|T037|AB|S52.351H|ICD10CM|Displ commnt fx shaft of rad, r arm, 7thH|Displ commnt fx shaft of rad, r arm, 7thH +C2846002|T037|AB|S52.351J|ICD10CM|Displ commnt fx shaft of rad, r arm, 7thJ|Displ commnt fx shaft of rad, r arm, 7thJ +C2846003|T037|AB|S52.351K|ICD10CM|Displ commnt fx shaft of rad, r arm, 7thK|Displ commnt fx shaft of rad, r arm, 7thK +C2846004|T037|AB|S52.351M|ICD10CM|Displ commnt fx shaft of rad, r arm, 7thM|Displ commnt fx shaft of rad, r arm, 7thM +C2846005|T037|AB|S52.351N|ICD10CM|Displ commnt fx shaft of rad, r arm, 7thN|Displ commnt fx shaft of rad, r arm, 7thN +C2846006|T037|AB|S52.351P|ICD10CM|Displ commnt fx shaft of rad, r arm, 7thP|Displ commnt fx shaft of rad, r arm, 7thP +C2846007|T037|AB|S52.351Q|ICD10CM|Displ commnt fx shaft of rad, r arm, 7thQ|Displ commnt fx shaft of rad, r arm, 7thQ +C2846008|T037|AB|S52.351R|ICD10CM|Displ commnt fx shaft of rad, r arm, 7thR|Displ commnt fx shaft of rad, r arm, 7thR +C2846009|T037|PT|S52.351S|ICD10CM|Displaced comminuted fracture of shaft of radius, right arm, sequela|Displaced comminuted fracture of shaft of radius, right arm, sequela +C2846009|T037|AB|S52.351S|ICD10CM|Displaced comminuted fx shaft of radius, right arm, sequela|Displaced comminuted fx shaft of radius, right arm, sequela +C2846010|T037|AB|S52.352|ICD10CM|Displaced comminuted fracture of shaft of radius, left arm|Displaced comminuted fracture of shaft of radius, left arm +C2846010|T037|HT|S52.352|ICD10CM|Displaced comminuted fracture of shaft of radius, left arm|Displaced comminuted fracture of shaft of radius, left arm +C2846011|T037|PT|S52.352A|ICD10CM|Displaced comminuted fracture of shaft of radius, left arm, initial encounter for closed fracture|Displaced comminuted fracture of shaft of radius, left arm, initial encounter for closed fracture +C2846011|T037|AB|S52.352A|ICD10CM|Displaced comminuted fx shaft of radius, left arm, init|Displaced comminuted fx shaft of radius, left arm, init +C2846012|T037|AB|S52.352B|ICD10CM|Displ commnt fx shaft of rad, l arm, 7thB|Displ commnt fx shaft of rad, l arm, 7thB +C2846013|T037|AB|S52.352C|ICD10CM|Displ commnt fx shaft of rad, l arm, 7thC|Displ commnt fx shaft of rad, l arm, 7thC +C2846014|T037|AB|S52.352D|ICD10CM|Displ commnt fx shaft of rad, l arm, 7thD|Displ commnt fx shaft of rad, l arm, 7thD +C2846015|T037|AB|S52.352E|ICD10CM|Displ commnt fx shaft of rad, l arm, 7thE|Displ commnt fx shaft of rad, l arm, 7thE +C2846016|T037|AB|S52.352F|ICD10CM|Displ commnt fx shaft of rad, l arm, 7thF|Displ commnt fx shaft of rad, l arm, 7thF +C2846017|T037|AB|S52.352G|ICD10CM|Displ commnt fx shaft of rad, l arm, 7thG|Displ commnt fx shaft of rad, l arm, 7thG +C2846018|T037|AB|S52.352H|ICD10CM|Displ commnt fx shaft of rad, l arm, 7thH|Displ commnt fx shaft of rad, l arm, 7thH +C2846019|T037|AB|S52.352J|ICD10CM|Displ commnt fx shaft of rad, l arm, 7thJ|Displ commnt fx shaft of rad, l arm, 7thJ +C2846020|T037|AB|S52.352K|ICD10CM|Displ commnt fx shaft of rad, l arm, 7thK|Displ commnt fx shaft of rad, l arm, 7thK +C2846021|T037|AB|S52.352M|ICD10CM|Displ commnt fx shaft of rad, l arm, 7thM|Displ commnt fx shaft of rad, l arm, 7thM +C2846022|T037|AB|S52.352N|ICD10CM|Displ commnt fx shaft of rad, l arm, 7thN|Displ commnt fx shaft of rad, l arm, 7thN +C2846023|T037|AB|S52.352P|ICD10CM|Displ commnt fx shaft of rad, l arm, 7thP|Displ commnt fx shaft of rad, l arm, 7thP +C2846024|T037|AB|S52.352Q|ICD10CM|Displ commnt fx shaft of rad, l arm, 7thQ|Displ commnt fx shaft of rad, l arm, 7thQ +C2846025|T037|AB|S52.352R|ICD10CM|Displ commnt fx shaft of rad, l arm, 7thR|Displ commnt fx shaft of rad, l arm, 7thR +C2846026|T037|PT|S52.352S|ICD10CM|Displaced comminuted fracture of shaft of radius, left arm, sequela|Displaced comminuted fracture of shaft of radius, left arm, sequela +C2846026|T037|AB|S52.352S|ICD10CM|Displaced comminuted fx shaft of radius, left arm, sequela|Displaced comminuted fx shaft of radius, left arm, sequela +C2846027|T037|AB|S52.353|ICD10CM|Displaced comminuted fracture of shaft of radius, unsp arm|Displaced comminuted fracture of shaft of radius, unsp arm +C2846027|T037|HT|S52.353|ICD10CM|Displaced comminuted fracture of shaft of radius, unspecified arm|Displaced comminuted fracture of shaft of radius, unspecified arm +C2846028|T037|AB|S52.353A|ICD10CM|Displaced comminuted fx shaft of radius, unsp arm, init|Displaced comminuted fx shaft of radius, unsp arm, init +C2846029|T037|AB|S52.353B|ICD10CM|Displ commnt fx shaft of rad, unsp arm, 7thB|Displ commnt fx shaft of rad, unsp arm, 7thB +C2846030|T037|AB|S52.353C|ICD10CM|Displ commnt fx shaft of rad, unsp arm, 7thC|Displ commnt fx shaft of rad, unsp arm, 7thC +C2846031|T037|AB|S52.353D|ICD10CM|Displ commnt fx shaft of rad, unsp arm, 7thD|Displ commnt fx shaft of rad, unsp arm, 7thD +C2846032|T037|AB|S52.353E|ICD10CM|Displ commnt fx shaft of rad, unsp arm, 7thE|Displ commnt fx shaft of rad, unsp arm, 7thE +C2846033|T037|AB|S52.353F|ICD10CM|Displ commnt fx shaft of rad, unsp arm, 7thF|Displ commnt fx shaft of rad, unsp arm, 7thF +C2846034|T037|AB|S52.353G|ICD10CM|Displ commnt fx shaft of rad, unsp arm, 7thG|Displ commnt fx shaft of rad, unsp arm, 7thG +C2846035|T037|AB|S52.353H|ICD10CM|Displ commnt fx shaft of rad, unsp arm, 7thH|Displ commnt fx shaft of rad, unsp arm, 7thH +C2846036|T037|AB|S52.353J|ICD10CM|Displ commnt fx shaft of rad, unsp arm, 7thJ|Displ commnt fx shaft of rad, unsp arm, 7thJ +C2846037|T037|AB|S52.353K|ICD10CM|Displ commnt fx shaft of rad, unsp arm, 7thK|Displ commnt fx shaft of rad, unsp arm, 7thK +C2846038|T037|AB|S52.353M|ICD10CM|Displ commnt fx shaft of rad, unsp arm, 7thM|Displ commnt fx shaft of rad, unsp arm, 7thM +C2846039|T037|AB|S52.353N|ICD10CM|Displ commnt fx shaft of rad, unsp arm, 7thN|Displ commnt fx shaft of rad, unsp arm, 7thN +C2846040|T037|AB|S52.353P|ICD10CM|Displ commnt fx shaft of rad, unsp arm, 7thP|Displ commnt fx shaft of rad, unsp arm, 7thP +C2846041|T037|AB|S52.353Q|ICD10CM|Displ commnt fx shaft of rad, unsp arm, 7thQ|Displ commnt fx shaft of rad, unsp arm, 7thQ +C2846042|T037|AB|S52.353R|ICD10CM|Displ commnt fx shaft of rad, unsp arm, 7thR|Displ commnt fx shaft of rad, unsp arm, 7thR +C2846043|T037|PT|S52.353S|ICD10CM|Displaced comminuted fracture of shaft of radius, unspecified arm, sequela|Displaced comminuted fracture of shaft of radius, unspecified arm, sequela +C2846043|T037|AB|S52.353S|ICD10CM|Displaced comminuted fx shaft of radius, unsp arm, sequela|Displaced comminuted fx shaft of radius, unsp arm, sequela +C2846044|T037|AB|S52.354|ICD10CM|Nondisp comminuted fracture of shaft of radius, right arm|Nondisp comminuted fracture of shaft of radius, right arm +C2846044|T037|HT|S52.354|ICD10CM|Nondisplaced comminuted fracture of shaft of radius, right arm|Nondisplaced comminuted fracture of shaft of radius, right arm +C2846045|T037|AB|S52.354A|ICD10CM|Nondisp comminuted fx shaft of radius, right arm, init|Nondisp comminuted fx shaft of radius, right arm, init +C2846046|T037|AB|S52.354B|ICD10CM|Nondisp commnt fx shaft of rad, r arm, 7thB|Nondisp commnt fx shaft of rad, r arm, 7thB +C2846047|T037|AB|S52.354C|ICD10CM|Nondisp commnt fx shaft of rad, r arm, 7thC|Nondisp commnt fx shaft of rad, r arm, 7thC +C2846048|T037|AB|S52.354D|ICD10CM|Nondisp commnt fx shaft of rad, r arm, 7thD|Nondisp commnt fx shaft of rad, r arm, 7thD +C2846049|T037|AB|S52.354E|ICD10CM|Nondisp commnt fx shaft of rad, r arm, 7thE|Nondisp commnt fx shaft of rad, r arm, 7thE +C2846050|T037|AB|S52.354F|ICD10CM|Nondisp commnt fx shaft of rad, r arm, 7thF|Nondisp commnt fx shaft of rad, r arm, 7thF +C2846051|T037|AB|S52.354G|ICD10CM|Nondisp commnt fx shaft of rad, r arm, 7thG|Nondisp commnt fx shaft of rad, r arm, 7thG +C2846052|T037|AB|S52.354H|ICD10CM|Nondisp commnt fx shaft of rad, r arm, 7thH|Nondisp commnt fx shaft of rad, r arm, 7thH +C2846053|T037|AB|S52.354J|ICD10CM|Nondisp commnt fx shaft of rad, r arm, 7thJ|Nondisp commnt fx shaft of rad, r arm, 7thJ +C2846054|T037|AB|S52.354K|ICD10CM|Nondisp commnt fx shaft of rad, r arm, 7thK|Nondisp commnt fx shaft of rad, r arm, 7thK +C2846055|T037|AB|S52.354M|ICD10CM|Nondisp commnt fx shaft of rad, r arm, 7thM|Nondisp commnt fx shaft of rad, r arm, 7thM +C2846056|T037|AB|S52.354N|ICD10CM|Nondisp commnt fx shaft of rad, r arm, 7thN|Nondisp commnt fx shaft of rad, r arm, 7thN +C2846057|T037|AB|S52.354P|ICD10CM|Nondisp commnt fx shaft of rad, r arm, 7thP|Nondisp commnt fx shaft of rad, r arm, 7thP +C2846058|T037|AB|S52.354Q|ICD10CM|Nondisp commnt fx shaft of rad, r arm, 7thQ|Nondisp commnt fx shaft of rad, r arm, 7thQ +C2846059|T037|AB|S52.354R|ICD10CM|Nondisp commnt fx shaft of rad, r arm, 7thR|Nondisp commnt fx shaft of rad, r arm, 7thR +C2846060|T037|AB|S52.354S|ICD10CM|Nondisp comminuted fx shaft of radius, right arm, sequela|Nondisp comminuted fx shaft of radius, right arm, sequela +C2846060|T037|PT|S52.354S|ICD10CM|Nondisplaced comminuted fracture of shaft of radius, right arm, sequela|Nondisplaced comminuted fracture of shaft of radius, right arm, sequela +C2846061|T037|AB|S52.355|ICD10CM|Nondisp comminuted fracture of shaft of radius, left arm|Nondisp comminuted fracture of shaft of radius, left arm +C2846061|T037|HT|S52.355|ICD10CM|Nondisplaced comminuted fracture of shaft of radius, left arm|Nondisplaced comminuted fracture of shaft of radius, left arm +C2846062|T037|AB|S52.355A|ICD10CM|Nondisp comminuted fx shaft of radius, left arm, init|Nondisp comminuted fx shaft of radius, left arm, init +C2846062|T037|PT|S52.355A|ICD10CM|Nondisplaced comminuted fracture of shaft of radius, left arm, initial encounter for closed fracture|Nondisplaced comminuted fracture of shaft of radius, left arm, initial encounter for closed fracture +C2846063|T037|AB|S52.355B|ICD10CM|Nondisp commnt fx shaft of rad, l arm, 7thB|Nondisp commnt fx shaft of rad, l arm, 7thB +C2846064|T037|AB|S52.355C|ICD10CM|Nondisp commnt fx shaft of rad, l arm, 7thC|Nondisp commnt fx shaft of rad, l arm, 7thC +C2846065|T037|AB|S52.355D|ICD10CM|Nondisp commnt fx shaft of rad, l arm, 7thD|Nondisp commnt fx shaft of rad, l arm, 7thD +C2846066|T037|AB|S52.355E|ICD10CM|Nondisp commnt fx shaft of rad, l arm, 7thE|Nondisp commnt fx shaft of rad, l arm, 7thE +C2846067|T037|AB|S52.355F|ICD10CM|Nondisp commnt fx shaft of rad, l arm, 7thF|Nondisp commnt fx shaft of rad, l arm, 7thF +C2846068|T037|AB|S52.355G|ICD10CM|Nondisp commnt fx shaft of rad, l arm, 7thG|Nondisp commnt fx shaft of rad, l arm, 7thG +C2846069|T037|AB|S52.355H|ICD10CM|Nondisp commnt fx shaft of rad, l arm, 7thH|Nondisp commnt fx shaft of rad, l arm, 7thH +C2846070|T037|AB|S52.355J|ICD10CM|Nondisp commnt fx shaft of rad, l arm, 7thJ|Nondisp commnt fx shaft of rad, l arm, 7thJ +C2846071|T037|AB|S52.355K|ICD10CM|Nondisp commnt fx shaft of rad, l arm, 7thK|Nondisp commnt fx shaft of rad, l arm, 7thK +C2846072|T037|AB|S52.355M|ICD10CM|Nondisp commnt fx shaft of rad, l arm, 7thM|Nondisp commnt fx shaft of rad, l arm, 7thM +C2846073|T037|AB|S52.355N|ICD10CM|Nondisp commnt fx shaft of rad, l arm, 7thN|Nondisp commnt fx shaft of rad, l arm, 7thN +C2846074|T037|AB|S52.355P|ICD10CM|Nondisp commnt fx shaft of rad, l arm, 7thP|Nondisp commnt fx shaft of rad, l arm, 7thP +C2846075|T037|AB|S52.355Q|ICD10CM|Nondisp commnt fx shaft of rad, l arm, 7thQ|Nondisp commnt fx shaft of rad, l arm, 7thQ +C2846076|T037|AB|S52.355R|ICD10CM|Nondisp commnt fx shaft of rad, l arm, 7thR|Nondisp commnt fx shaft of rad, l arm, 7thR +C2846077|T037|AB|S52.355S|ICD10CM|Nondisp comminuted fx shaft of radius, left arm, sequela|Nondisp comminuted fx shaft of radius, left arm, sequela +C2846077|T037|PT|S52.355S|ICD10CM|Nondisplaced comminuted fracture of shaft of radius, left arm, sequela|Nondisplaced comminuted fracture of shaft of radius, left arm, sequela +C2846078|T037|AB|S52.356|ICD10CM|Nondisp comminuted fracture of shaft of radius, unsp arm|Nondisp comminuted fracture of shaft of radius, unsp arm +C2846078|T037|HT|S52.356|ICD10CM|Nondisplaced comminuted fracture of shaft of radius, unspecified arm|Nondisplaced comminuted fracture of shaft of radius, unspecified arm +C2846079|T037|AB|S52.356A|ICD10CM|Nondisp comminuted fx shaft of radius, unsp arm, init|Nondisp comminuted fx shaft of radius, unsp arm, init +C2846080|T037|AB|S52.356B|ICD10CM|Nondisp commnt fx shaft of rad, unsp arm, 7thB|Nondisp commnt fx shaft of rad, unsp arm, 7thB +C2846081|T037|AB|S52.356C|ICD10CM|Nondisp commnt fx shaft of rad, unsp arm, 7thC|Nondisp commnt fx shaft of rad, unsp arm, 7thC +C2846082|T037|AB|S52.356D|ICD10CM|Nondisp commnt fx shaft of rad, unsp arm, 7thD|Nondisp commnt fx shaft of rad, unsp arm, 7thD +C2846083|T037|AB|S52.356E|ICD10CM|Nondisp commnt fx shaft of rad, unsp arm, 7thE|Nondisp commnt fx shaft of rad, unsp arm, 7thE +C2846084|T037|AB|S52.356F|ICD10CM|Nondisp commnt fx shaft of rad, unsp arm, 7thF|Nondisp commnt fx shaft of rad, unsp arm, 7thF +C2846085|T037|AB|S52.356G|ICD10CM|Nondisp commnt fx shaft of rad, unsp arm, 7thG|Nondisp commnt fx shaft of rad, unsp arm, 7thG +C2846086|T037|AB|S52.356H|ICD10CM|Nondisp commnt fx shaft of rad, unsp arm, 7thH|Nondisp commnt fx shaft of rad, unsp arm, 7thH +C2846087|T037|AB|S52.356J|ICD10CM|Nondisp commnt fx shaft of rad, unsp arm, 7thJ|Nondisp commnt fx shaft of rad, unsp arm, 7thJ +C2846088|T037|AB|S52.356K|ICD10CM|Nondisp commnt fx shaft of rad, unsp arm, 7thK|Nondisp commnt fx shaft of rad, unsp arm, 7thK +C2846089|T037|AB|S52.356M|ICD10CM|Nondisp commnt fx shaft of rad, unsp arm, 7thM|Nondisp commnt fx shaft of rad, unsp arm, 7thM +C2846090|T037|AB|S52.356N|ICD10CM|Nondisp commnt fx shaft of rad, unsp arm, 7thN|Nondisp commnt fx shaft of rad, unsp arm, 7thN +C2846091|T037|AB|S52.356P|ICD10CM|Nondisp commnt fx shaft of rad, unsp arm, 7thP|Nondisp commnt fx shaft of rad, unsp arm, 7thP +C2846092|T037|AB|S52.356Q|ICD10CM|Nondisp commnt fx shaft of rad, unsp arm, 7thQ|Nondisp commnt fx shaft of rad, unsp arm, 7thQ +C2846093|T037|AB|S52.356R|ICD10CM|Nondisp commnt fx shaft of rad, unsp arm, 7thR|Nondisp commnt fx shaft of rad, unsp arm, 7thR +C2846094|T037|AB|S52.356S|ICD10CM|Nondisp comminuted fx shaft of radius, unsp arm, sequela|Nondisp comminuted fx shaft of radius, unsp arm, sequela +C2846094|T037|PT|S52.356S|ICD10CM|Nondisplaced comminuted fracture of shaft of radius, unspecified arm, sequela|Nondisplaced comminuted fracture of shaft of radius, unspecified arm, sequela +C2846095|T037|AB|S52.36|ICD10CM|Segmental fracture of shaft of radius|Segmental fracture of shaft of radius +C2846095|T037|HT|S52.36|ICD10CM|Segmental fracture of shaft of radius|Segmental fracture of shaft of radius +C2846096|T037|AB|S52.361|ICD10CM|Displaced segmental fracture of shaft of radius, right arm|Displaced segmental fracture of shaft of radius, right arm +C2846096|T037|HT|S52.361|ICD10CM|Displaced segmental fracture of shaft of radius, right arm|Displaced segmental fracture of shaft of radius, right arm +C2846097|T037|PT|S52.361A|ICD10CM|Displaced segmental fracture of shaft of radius, right arm, initial encounter for closed fracture|Displaced segmental fracture of shaft of radius, right arm, initial encounter for closed fracture +C2846097|T037|AB|S52.361A|ICD10CM|Displaced segmental fx shaft of radius, right arm, init|Displaced segmental fx shaft of radius, right arm, init +C2846098|T037|AB|S52.361B|ICD10CM|Displ seg fx shaft of rad, r arm, init for opn fx type I/2|Displ seg fx shaft of rad, r arm, init for opn fx type I/2 +C2846099|T037|AB|S52.361C|ICD10CM|Displ seg fx shaft of rad, r arm, 7thC|Displ seg fx shaft of rad, r arm, 7thC +C2846100|T037|AB|S52.361D|ICD10CM|Displ seg fx shaft of rad, r arm, 7thD|Displ seg fx shaft of rad, r arm, 7thD +C2846101|T037|AB|S52.361E|ICD10CM|Displ seg fx shaft of rad, r arm, 7thE|Displ seg fx shaft of rad, r arm, 7thE +C2846102|T037|AB|S52.361F|ICD10CM|Displ seg fx shaft of rad, r arm, 7thF|Displ seg fx shaft of rad, r arm, 7thF +C2846103|T037|AB|S52.361G|ICD10CM|Displ seg fx shaft of rad, r arm, 7thG|Displ seg fx shaft of rad, r arm, 7thG +C2846104|T037|AB|S52.361H|ICD10CM|Displ seg fx shaft of rad, r arm, 7thH|Displ seg fx shaft of rad, r arm, 7thH +C2846105|T037|AB|S52.361J|ICD10CM|Displ seg fx shaft of rad, r arm, 7thJ|Displ seg fx shaft of rad, r arm, 7thJ +C2846106|T037|AB|S52.361K|ICD10CM|Displ seg fx shaft of rad, r arm, 7thK|Displ seg fx shaft of rad, r arm, 7thK +C2846107|T037|AB|S52.361M|ICD10CM|Displ seg fx shaft of rad, r arm, 7thM|Displ seg fx shaft of rad, r arm, 7thM +C2846108|T037|AB|S52.361N|ICD10CM|Displ seg fx shaft of rad, r arm, 7thN|Displ seg fx shaft of rad, r arm, 7thN +C2846109|T037|AB|S52.361P|ICD10CM|Displ seg fx shaft of rad, r arm, 7thP|Displ seg fx shaft of rad, r arm, 7thP +C2846110|T037|AB|S52.361Q|ICD10CM|Displ seg fx shaft of rad, r arm, 7thQ|Displ seg fx shaft of rad, r arm, 7thQ +C2846111|T037|AB|S52.361R|ICD10CM|Displ seg fx shaft of rad, r arm, 7thR|Displ seg fx shaft of rad, r arm, 7thR +C2846112|T037|PT|S52.361S|ICD10CM|Displaced segmental fracture of shaft of radius, right arm, sequela|Displaced segmental fracture of shaft of radius, right arm, sequela +C2846112|T037|AB|S52.361S|ICD10CM|Displaced segmental fx shaft of radius, right arm, sequela|Displaced segmental fx shaft of radius, right arm, sequela +C2846113|T037|AB|S52.362|ICD10CM|Displaced segmental fracture of shaft of radius, left arm|Displaced segmental fracture of shaft of radius, left arm +C2846113|T037|HT|S52.362|ICD10CM|Displaced segmental fracture of shaft of radius, left arm|Displaced segmental fracture of shaft of radius, left arm +C2846114|T037|PT|S52.362A|ICD10CM|Displaced segmental fracture of shaft of radius, left arm, initial encounter for closed fracture|Displaced segmental fracture of shaft of radius, left arm, initial encounter for closed fracture +C2846114|T037|AB|S52.362A|ICD10CM|Displaced segmental fx shaft of radius, left arm, init|Displaced segmental fx shaft of radius, left arm, init +C2846115|T037|AB|S52.362B|ICD10CM|Displ seg fx shaft of rad, l arm, init for opn fx type I/2|Displ seg fx shaft of rad, l arm, init for opn fx type I/2 +C2846116|T037|AB|S52.362C|ICD10CM|Displ seg fx shaft of rad, l arm, 7thC|Displ seg fx shaft of rad, l arm, 7thC +C2846117|T037|AB|S52.362D|ICD10CM|Displ seg fx shaft of rad, l arm, 7thD|Displ seg fx shaft of rad, l arm, 7thD +C2846118|T037|AB|S52.362E|ICD10CM|Displ seg fx shaft of rad, l arm, 7thE|Displ seg fx shaft of rad, l arm, 7thE +C2846119|T037|AB|S52.362F|ICD10CM|Displ seg fx shaft of rad, l arm, 7thF|Displ seg fx shaft of rad, l arm, 7thF +C2846120|T037|AB|S52.362G|ICD10CM|Displ seg fx shaft of rad, l arm, 7thG|Displ seg fx shaft of rad, l arm, 7thG +C2846121|T037|AB|S52.362H|ICD10CM|Displ seg fx shaft of rad, l arm, 7thH|Displ seg fx shaft of rad, l arm, 7thH +C2846122|T037|AB|S52.362J|ICD10CM|Displ seg fx shaft of rad, l arm, 7thJ|Displ seg fx shaft of rad, l arm, 7thJ +C2846123|T037|AB|S52.362K|ICD10CM|Displ seg fx shaft of rad, l arm, 7thK|Displ seg fx shaft of rad, l arm, 7thK +C2846124|T037|AB|S52.362M|ICD10CM|Displ seg fx shaft of rad, l arm, 7thM|Displ seg fx shaft of rad, l arm, 7thM +C2846125|T037|AB|S52.362N|ICD10CM|Displ seg fx shaft of rad, l arm, 7thN|Displ seg fx shaft of rad, l arm, 7thN +C2846126|T037|AB|S52.362P|ICD10CM|Displ seg fx shaft of rad, l arm, 7thP|Displ seg fx shaft of rad, l arm, 7thP +C2846127|T037|AB|S52.362Q|ICD10CM|Displ seg fx shaft of rad, l arm, 7thQ|Displ seg fx shaft of rad, l arm, 7thQ +C2846128|T037|AB|S52.362R|ICD10CM|Displ seg fx shaft of rad, l arm, 7thR|Displ seg fx shaft of rad, l arm, 7thR +C2846129|T037|PT|S52.362S|ICD10CM|Displaced segmental fracture of shaft of radius, left arm, sequela|Displaced segmental fracture of shaft of radius, left arm, sequela +C2846129|T037|AB|S52.362S|ICD10CM|Displaced segmental fx shaft of radius, left arm, sequela|Displaced segmental fx shaft of radius, left arm, sequela +C2846130|T037|AB|S52.363|ICD10CM|Displaced segmental fracture of shaft of radius, unsp arm|Displaced segmental fracture of shaft of radius, unsp arm +C2846130|T037|HT|S52.363|ICD10CM|Displaced segmental fracture of shaft of radius, unspecified arm|Displaced segmental fracture of shaft of radius, unspecified arm +C2846131|T037|AB|S52.363A|ICD10CM|Displaced segmental fx shaft of radius, unsp arm, init|Displaced segmental fx shaft of radius, unsp arm, init +C2846132|T037|AB|S52.363B|ICD10CM|Displ seg fx shaft of rad, unsp arm, 7thB|Displ seg fx shaft of rad, unsp arm, 7thB +C2846133|T037|AB|S52.363C|ICD10CM|Displ seg fx shaft of rad, unsp arm, 7thC|Displ seg fx shaft of rad, unsp arm, 7thC +C2846134|T037|AB|S52.363D|ICD10CM|Displ seg fx shaft of rad, unsp arm, 7thD|Displ seg fx shaft of rad, unsp arm, 7thD +C2846135|T037|AB|S52.363E|ICD10CM|Displ seg fx shaft of rad, unsp arm, 7thE|Displ seg fx shaft of rad, unsp arm, 7thE +C2846136|T037|AB|S52.363F|ICD10CM|Displ seg fx shaft of rad, unsp arm, 7thF|Displ seg fx shaft of rad, unsp arm, 7thF +C2846137|T037|AB|S52.363G|ICD10CM|Displ seg fx shaft of rad, unsp arm, 7thG|Displ seg fx shaft of rad, unsp arm, 7thG +C2846138|T037|AB|S52.363H|ICD10CM|Displ seg fx shaft of rad, unsp arm, 7thH|Displ seg fx shaft of rad, unsp arm, 7thH +C2846139|T037|AB|S52.363J|ICD10CM|Displ seg fx shaft of rad, unsp arm, 7thJ|Displ seg fx shaft of rad, unsp arm, 7thJ +C2846140|T037|AB|S52.363K|ICD10CM|Displ seg fx shaft of rad, unsp arm, 7thK|Displ seg fx shaft of rad, unsp arm, 7thK +C2846141|T037|AB|S52.363M|ICD10CM|Displ seg fx shaft of rad, unsp arm, 7thM|Displ seg fx shaft of rad, unsp arm, 7thM +C2846142|T037|AB|S52.363N|ICD10CM|Displ seg fx shaft of rad, unsp arm, 7thN|Displ seg fx shaft of rad, unsp arm, 7thN +C2846143|T037|AB|S52.363P|ICD10CM|Displ seg fx shaft of rad, unsp arm, 7thP|Displ seg fx shaft of rad, unsp arm, 7thP +C2846144|T037|AB|S52.363Q|ICD10CM|Displ seg fx shaft of rad, unsp arm, 7thQ|Displ seg fx shaft of rad, unsp arm, 7thQ +C2846145|T037|AB|S52.363R|ICD10CM|Displ seg fx shaft of rad, unsp arm, 7thR|Displ seg fx shaft of rad, unsp arm, 7thR +C2846146|T037|PT|S52.363S|ICD10CM|Displaced segmental fracture of shaft of radius, unspecified arm, sequela|Displaced segmental fracture of shaft of radius, unspecified arm, sequela +C2846146|T037|AB|S52.363S|ICD10CM|Displaced segmental fx shaft of radius, unsp arm, sequela|Displaced segmental fx shaft of radius, unsp arm, sequela +C2846147|T037|AB|S52.364|ICD10CM|Nondisp segmental fracture of shaft of radius, right arm|Nondisp segmental fracture of shaft of radius, right arm +C2846147|T037|HT|S52.364|ICD10CM|Nondisplaced segmental fracture of shaft of radius, right arm|Nondisplaced segmental fracture of shaft of radius, right arm +C2846148|T037|AB|S52.364A|ICD10CM|Nondisp segmental fx shaft of radius, right arm, init|Nondisp segmental fx shaft of radius, right arm, init +C2846148|T037|PT|S52.364A|ICD10CM|Nondisplaced segmental fracture of shaft of radius, right arm, initial encounter for closed fracture|Nondisplaced segmental fracture of shaft of radius, right arm, initial encounter for closed fracture +C2846149|T037|AB|S52.364B|ICD10CM|Nondisp seg fx shaft of rad, r arm, init for opn fx type I/2|Nondisp seg fx shaft of rad, r arm, init for opn fx type I/2 +C2846150|T037|AB|S52.364C|ICD10CM|Nondisp seg fx shaft of rad, r arm, 7thC|Nondisp seg fx shaft of rad, r arm, 7thC +C2846151|T037|AB|S52.364D|ICD10CM|Nondisp seg fx shaft of rad, r arm, 7thD|Nondisp seg fx shaft of rad, r arm, 7thD +C2846152|T037|AB|S52.364E|ICD10CM|Nondisp seg fx shaft of rad, r arm, 7thE|Nondisp seg fx shaft of rad, r arm, 7thE +C2846153|T037|AB|S52.364F|ICD10CM|Nondisp seg fx shaft of rad, r arm, 7thF|Nondisp seg fx shaft of rad, r arm, 7thF +C2846154|T037|AB|S52.364G|ICD10CM|Nondisp seg fx shaft of rad, r arm, 7thG|Nondisp seg fx shaft of rad, r arm, 7thG +C2846155|T037|AB|S52.364H|ICD10CM|Nondisp seg fx shaft of rad, r arm, 7thH|Nondisp seg fx shaft of rad, r arm, 7thH +C2846156|T037|AB|S52.364J|ICD10CM|Nondisp seg fx shaft of rad, r arm, 7thJ|Nondisp seg fx shaft of rad, r arm, 7thJ +C2846157|T037|AB|S52.364K|ICD10CM|Nondisp seg fx shaft of rad, r arm, 7thK|Nondisp seg fx shaft of rad, r arm, 7thK +C2846158|T037|AB|S52.364M|ICD10CM|Nondisp seg fx shaft of rad, r arm, 7thM|Nondisp seg fx shaft of rad, r arm, 7thM +C2846159|T037|AB|S52.364N|ICD10CM|Nondisp seg fx shaft of rad, r arm, 7thN|Nondisp seg fx shaft of rad, r arm, 7thN +C2846160|T037|AB|S52.364P|ICD10CM|Nondisp seg fx shaft of rad, r arm, 7thP|Nondisp seg fx shaft of rad, r arm, 7thP +C2846161|T037|AB|S52.364Q|ICD10CM|Nondisp seg fx shaft of rad, r arm, 7thQ|Nondisp seg fx shaft of rad, r arm, 7thQ +C2846162|T037|AB|S52.364R|ICD10CM|Nondisp seg fx shaft of rad, r arm, 7thR|Nondisp seg fx shaft of rad, r arm, 7thR +C2846163|T037|AB|S52.364S|ICD10CM|Nondisp segmental fx shaft of radius, right arm, sequela|Nondisp segmental fx shaft of radius, right arm, sequela +C2846163|T037|PT|S52.364S|ICD10CM|Nondisplaced segmental fracture of shaft of radius, right arm, sequela|Nondisplaced segmental fracture of shaft of radius, right arm, sequela +C2846164|T037|AB|S52.365|ICD10CM|Nondisplaced segmental fracture of shaft of radius, left arm|Nondisplaced segmental fracture of shaft of radius, left arm +C2846164|T037|HT|S52.365|ICD10CM|Nondisplaced segmental fracture of shaft of radius, left arm|Nondisplaced segmental fracture of shaft of radius, left arm +C2846165|T037|AB|S52.365A|ICD10CM|Nondisp segmental fx shaft of radius, left arm, init|Nondisp segmental fx shaft of radius, left arm, init +C2846165|T037|PT|S52.365A|ICD10CM|Nondisplaced segmental fracture of shaft of radius, left arm, initial encounter for closed fracture|Nondisplaced segmental fracture of shaft of radius, left arm, initial encounter for closed fracture +C2846166|T037|AB|S52.365B|ICD10CM|Nondisp seg fx shaft of rad, l arm, init for opn fx type I/2|Nondisp seg fx shaft of rad, l arm, init for opn fx type I/2 +C2846167|T037|AB|S52.365C|ICD10CM|Nondisp seg fx shaft of rad, l arm, 7thC|Nondisp seg fx shaft of rad, l arm, 7thC +C2846168|T037|AB|S52.365D|ICD10CM|Nondisp seg fx shaft of rad, l arm, 7thD|Nondisp seg fx shaft of rad, l arm, 7thD +C2846169|T037|AB|S52.365E|ICD10CM|Nondisp seg fx shaft of rad, l arm, 7thE|Nondisp seg fx shaft of rad, l arm, 7thE +C2846170|T037|AB|S52.365F|ICD10CM|Nondisp seg fx shaft of rad, l arm, 7thF|Nondisp seg fx shaft of rad, l arm, 7thF +C2846171|T037|AB|S52.365G|ICD10CM|Nondisp seg fx shaft of rad, l arm, 7thG|Nondisp seg fx shaft of rad, l arm, 7thG +C2846172|T037|AB|S52.365H|ICD10CM|Nondisp seg fx shaft of rad, l arm, 7thH|Nondisp seg fx shaft of rad, l arm, 7thH +C2846173|T037|AB|S52.365J|ICD10CM|Nondisp seg fx shaft of rad, l arm, 7thJ|Nondisp seg fx shaft of rad, l arm, 7thJ +C2846174|T037|AB|S52.365K|ICD10CM|Nondisp seg fx shaft of rad, l arm, 7thK|Nondisp seg fx shaft of rad, l arm, 7thK +C2846175|T037|AB|S52.365M|ICD10CM|Nondisp seg fx shaft of rad, l arm, 7thM|Nondisp seg fx shaft of rad, l arm, 7thM +C2846176|T037|AB|S52.365N|ICD10CM|Nondisp seg fx shaft of rad, l arm, 7thN|Nondisp seg fx shaft of rad, l arm, 7thN +C2846177|T037|AB|S52.365P|ICD10CM|Nondisp seg fx shaft of rad, l arm, 7thP|Nondisp seg fx shaft of rad, l arm, 7thP +C2846178|T037|AB|S52.365Q|ICD10CM|Nondisp seg fx shaft of rad, l arm, 7thQ|Nondisp seg fx shaft of rad, l arm, 7thQ +C2846179|T037|AB|S52.365R|ICD10CM|Nondisp seg fx shaft of rad, l arm, 7thR|Nondisp seg fx shaft of rad, l arm, 7thR +C2846180|T037|AB|S52.365S|ICD10CM|Nondisp segmental fx shaft of radius, left arm, sequela|Nondisp segmental fx shaft of radius, left arm, sequela +C2846180|T037|PT|S52.365S|ICD10CM|Nondisplaced segmental fracture of shaft of radius, left arm, sequela|Nondisplaced segmental fracture of shaft of radius, left arm, sequela +C2846181|T037|AB|S52.366|ICD10CM|Nondisplaced segmental fracture of shaft of radius, unsp arm|Nondisplaced segmental fracture of shaft of radius, unsp arm +C2846181|T037|HT|S52.366|ICD10CM|Nondisplaced segmental fracture of shaft of radius, unspecified arm|Nondisplaced segmental fracture of shaft of radius, unspecified arm +C2846182|T037|AB|S52.366A|ICD10CM|Nondisp segmental fx shaft of radius, unsp arm, init|Nondisp segmental fx shaft of radius, unsp arm, init +C2846183|T037|AB|S52.366B|ICD10CM|Nondisp seg fx shaft of rad, unsp arm, 7thB|Nondisp seg fx shaft of rad, unsp arm, 7thB +C2846184|T037|AB|S52.366C|ICD10CM|Nondisp seg fx shaft of rad, unsp arm, 7thC|Nondisp seg fx shaft of rad, unsp arm, 7thC +C2846185|T037|AB|S52.366D|ICD10CM|Nondisp seg fx shaft of rad, unsp arm, 7thD|Nondisp seg fx shaft of rad, unsp arm, 7thD +C2846186|T037|AB|S52.366E|ICD10CM|Nondisp seg fx shaft of rad, unsp arm, 7thE|Nondisp seg fx shaft of rad, unsp arm, 7thE +C2846187|T037|AB|S52.366F|ICD10CM|Nondisp seg fx shaft of rad, unsp arm, 7thF|Nondisp seg fx shaft of rad, unsp arm, 7thF +C2846188|T037|AB|S52.366G|ICD10CM|Nondisp seg fx shaft of rad, unsp arm, 7thG|Nondisp seg fx shaft of rad, unsp arm, 7thG +C2846189|T037|AB|S52.366H|ICD10CM|Nondisp seg fx shaft of rad, unsp arm, 7thH|Nondisp seg fx shaft of rad, unsp arm, 7thH +C2846190|T037|AB|S52.366J|ICD10CM|Nondisp seg fx shaft of rad, unsp arm, 7thJ|Nondisp seg fx shaft of rad, unsp arm, 7thJ +C2846191|T037|AB|S52.366K|ICD10CM|Nondisp seg fx shaft of rad, unsp arm, 7thK|Nondisp seg fx shaft of rad, unsp arm, 7thK +C2846192|T037|AB|S52.366M|ICD10CM|Nondisp seg fx shaft of rad, unsp arm, 7thM|Nondisp seg fx shaft of rad, unsp arm, 7thM +C2846193|T037|AB|S52.366N|ICD10CM|Nondisp seg fx shaft of rad, unsp arm, 7thN|Nondisp seg fx shaft of rad, unsp arm, 7thN +C2846194|T037|AB|S52.366P|ICD10CM|Nondisp seg fx shaft of rad, unsp arm, 7thP|Nondisp seg fx shaft of rad, unsp arm, 7thP +C2846195|T037|AB|S52.366Q|ICD10CM|Nondisp seg fx shaft of rad, unsp arm, 7thQ|Nondisp seg fx shaft of rad, unsp arm, 7thQ +C2846196|T037|AB|S52.366R|ICD10CM|Nondisp seg fx shaft of rad, unsp arm, 7thR|Nondisp seg fx shaft of rad, unsp arm, 7thR +C2846197|T037|AB|S52.366S|ICD10CM|Nondisp segmental fx shaft of radius, unsp arm, sequela|Nondisp segmental fx shaft of radius, unsp arm, sequela +C2846197|T037|PT|S52.366S|ICD10CM|Nondisplaced segmental fracture of shaft of radius, unspecified arm, sequela|Nondisplaced segmental fracture of shaft of radius, unspecified arm, sequela +C2846198|T037|ET|S52.37|ICD10CM|Fracture of lower shaft of radius with radioulnar joint dislocation|Fracture of lower shaft of radius with radioulnar joint dislocation +C0434888|T037|HT|S52.37|ICD10CM|Galeazzi's fracture|Galeazzi's fracture +C0434888|T037|AB|S52.37|ICD10CM|Galeazzi's fracture|Galeazzi's fracture +C2846199|T037|AB|S52.371|ICD10CM|Galeazzi's fracture of right radius|Galeazzi's fracture of right radius +C2846199|T037|HT|S52.371|ICD10CM|Galeazzi's fracture of right radius|Galeazzi's fracture of right radius +C2846200|T037|AB|S52.371A|ICD10CM|Galeazzi's fracture of right radius, init for clos fx|Galeazzi's fracture of right radius, init for clos fx +C2846200|T037|PT|S52.371A|ICD10CM|Galeazzi's fracture of right radius, initial encounter for closed fracture|Galeazzi's fracture of right radius, initial encounter for closed fracture +C2846201|T037|AB|S52.371B|ICD10CM|Galeazzi's fracture of r radius, init for opn fx type I/2|Galeazzi's fracture of r radius, init for opn fx type I/2 +C2846201|T037|PT|S52.371B|ICD10CM|Galeazzi's fracture of right radius, initial encounter for open fracture type I or II|Galeazzi's fracture of right radius, initial encounter for open fracture type I or II +C2846202|T037|AB|S52.371C|ICD10CM|Galeazzi's fracture of r radius, init for opn fx type 3A/B/C|Galeazzi's fracture of r radius, init for opn fx type 3A/B/C +C2846202|T037|PT|S52.371C|ICD10CM|Galeazzi's fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC|Galeazzi's fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2846203|T037|PT|S52.371D|ICD10CM|Galeazzi's fracture of right radius, subsequent encounter for closed fracture with routine healing|Galeazzi's fracture of right radius, subsequent encounter for closed fracture with routine healing +C2846203|T037|AB|S52.371D|ICD10CM|Galeazzi's fx r radius, subs for clos fx w routn heal|Galeazzi's fx r radius, subs for clos fx w routn heal +C2846204|T037|AB|S52.371E|ICD10CM|Galeazzi's fx r rad, subs for opn fx type I/2 w routn heal|Galeazzi's fx r rad, subs for opn fx type I/2 w routn heal +C2846205|T037|AB|S52.371F|ICD10CM|Galeazzi's fx r rad, 7thF|Galeazzi's fx r rad, 7thF +C2846206|T037|PT|S52.371G|ICD10CM|Galeazzi's fracture of right radius, subsequent encounter for closed fracture with delayed healing|Galeazzi's fracture of right radius, subsequent encounter for closed fracture with delayed healing +C2846206|T037|AB|S52.371G|ICD10CM|Galeazzi's fx r radius, subs for clos fx w delay heal|Galeazzi's fx r radius, subs for clos fx w delay heal +C2846207|T037|AB|S52.371H|ICD10CM|Galeazzi's fx r rad, subs for opn fx type I/2 w delay heal|Galeazzi's fx r rad, subs for opn fx type I/2 w delay heal +C2846208|T037|AB|S52.371J|ICD10CM|Galeazzi's fx r rad, 7thJ|Galeazzi's fx r rad, 7thJ +C2846209|T037|AB|S52.371K|ICD10CM|Galeazzi's fracture of r radius, subs for clos fx w nonunion|Galeazzi's fracture of r radius, subs for clos fx w nonunion +C2846209|T037|PT|S52.371K|ICD10CM|Galeazzi's fracture of right radius, subsequent encounter for closed fracture with nonunion|Galeazzi's fracture of right radius, subsequent encounter for closed fracture with nonunion +C2846210|T037|AB|S52.371M|ICD10CM|Galeazzi's fx r radius, subs for opn fx type I/2 w nonunion|Galeazzi's fx r radius, subs for opn fx type I/2 w nonunion +C2846211|T037|AB|S52.371N|ICD10CM|Galeazzi's fx r rad, subs for opn fx type 3A/B/C w nonunion|Galeazzi's fx r rad, subs for opn fx type 3A/B/C w nonunion +C2846212|T037|AB|S52.371P|ICD10CM|Galeazzi's fracture of r radius, subs for clos fx w malunion|Galeazzi's fracture of r radius, subs for clos fx w malunion +C2846212|T037|PT|S52.371P|ICD10CM|Galeazzi's fracture of right radius, subsequent encounter for closed fracture with malunion|Galeazzi's fracture of right radius, subsequent encounter for closed fracture with malunion +C2846213|T037|AB|S52.371Q|ICD10CM|Galeazzi's fx r radius, subs for opn fx type I/2 w malunion|Galeazzi's fx r radius, subs for opn fx type I/2 w malunion +C2846214|T037|AB|S52.371R|ICD10CM|Galeazzi's fx r rad, subs for opn fx type 3A/B/C w malunion|Galeazzi's fx r rad, subs for opn fx type 3A/B/C w malunion +C2846215|T037|PT|S52.371S|ICD10CM|Galeazzi's fracture of right radius, sequela|Galeazzi's fracture of right radius, sequela +C2846215|T037|AB|S52.371S|ICD10CM|Galeazzi's fracture of right radius, sequela|Galeazzi's fracture of right radius, sequela +C2846216|T037|AB|S52.372|ICD10CM|Galeazzi's fracture of left radius|Galeazzi's fracture of left radius +C2846216|T037|HT|S52.372|ICD10CM|Galeazzi's fracture of left radius|Galeazzi's fracture of left radius +C2846217|T037|AB|S52.372A|ICD10CM|Galeazzi's fracture of left radius, init for clos fx|Galeazzi's fracture of left radius, init for clos fx +C2846217|T037|PT|S52.372A|ICD10CM|Galeazzi's fracture of left radius, initial encounter for closed fracture|Galeazzi's fracture of left radius, initial encounter for closed fracture +C2846218|T037|AB|S52.372B|ICD10CM|Galeazzi's fracture of left radius, init for opn fx type I/2|Galeazzi's fracture of left radius, init for opn fx type I/2 +C2846218|T037|PT|S52.372B|ICD10CM|Galeazzi's fracture of left radius, initial encounter for open fracture type I or II|Galeazzi's fracture of left radius, initial encounter for open fracture type I or II +C2846219|T037|PT|S52.372C|ICD10CM|Galeazzi's fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC|Galeazzi's fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2846219|T037|AB|S52.372C|ICD10CM|Galeazzi's fx left radius, init for opn fx type 3A/B/C|Galeazzi's fx left radius, init for opn fx type 3A/B/C +C2846220|T037|PT|S52.372D|ICD10CM|Galeazzi's fracture of left radius, subsequent encounter for closed fracture with routine healing|Galeazzi's fracture of left radius, subsequent encounter for closed fracture with routine healing +C2846220|T037|AB|S52.372D|ICD10CM|Galeazzi's fx left radius, subs for clos fx w routn heal|Galeazzi's fx left radius, subs for clos fx w routn heal +C2846221|T037|AB|S52.372E|ICD10CM|Galeazzi's fx l rad, subs for opn fx type I/2 w routn heal|Galeazzi's fx l rad, subs for opn fx type I/2 w routn heal +C2846222|T037|AB|S52.372F|ICD10CM|Galeazzi's fx l rad, 7thF|Galeazzi's fx l rad, 7thF +C2846223|T037|PT|S52.372G|ICD10CM|Galeazzi's fracture of left radius, subsequent encounter for closed fracture with delayed healing|Galeazzi's fracture of left radius, subsequent encounter for closed fracture with delayed healing +C2846223|T037|AB|S52.372G|ICD10CM|Galeazzi's fx left radius, subs for clos fx w delay heal|Galeazzi's fx left radius, subs for clos fx w delay heal +C2846224|T037|AB|S52.372H|ICD10CM|Galeazzi's fx l rad, subs for opn fx type I/2 w delay heal|Galeazzi's fx l rad, subs for opn fx type I/2 w delay heal +C2846225|T037|AB|S52.372J|ICD10CM|Galeazzi's fx l rad, 7thJ|Galeazzi's fx l rad, 7thJ +C2846226|T037|PT|S52.372K|ICD10CM|Galeazzi's fracture of left radius, subsequent encounter for closed fracture with nonunion|Galeazzi's fracture of left radius, subsequent encounter for closed fracture with nonunion +C2846226|T037|AB|S52.372K|ICD10CM|Galeazzi's fx left radius, subs for clos fx w nonunion|Galeazzi's fx left radius, subs for clos fx w nonunion +C2846227|T037|AB|S52.372M|ICD10CM|Galeazzi's fx left rad, subs for opn fx type I/2 w nonunion|Galeazzi's fx left rad, subs for opn fx type I/2 w nonunion +C2846228|T037|AB|S52.372N|ICD10CM|Galeazzi's fx l rad, subs for opn fx type 3A/B/C w nonunion|Galeazzi's fx l rad, subs for opn fx type 3A/B/C w nonunion +C2846229|T037|PT|S52.372P|ICD10CM|Galeazzi's fracture of left radius, subsequent encounter for closed fracture with malunion|Galeazzi's fracture of left radius, subsequent encounter for closed fracture with malunion +C2846229|T037|AB|S52.372P|ICD10CM|Galeazzi's fx left radius, subs for clos fx w malunion|Galeazzi's fx left radius, subs for clos fx w malunion +C2846230|T037|AB|S52.372Q|ICD10CM|Galeazzi's fx left rad, subs for opn fx type I/2 w malunion|Galeazzi's fx left rad, subs for opn fx type I/2 w malunion +C2846231|T037|AB|S52.372R|ICD10CM|Galeazzi's fx l rad, subs for opn fx type 3A/B/C w malunion|Galeazzi's fx l rad, subs for opn fx type 3A/B/C w malunion +C2846232|T037|PT|S52.372S|ICD10CM|Galeazzi's fracture of left radius, sequela|Galeazzi's fracture of left radius, sequela +C2846232|T037|AB|S52.372S|ICD10CM|Galeazzi's fracture of left radius, sequela|Galeazzi's fracture of left radius, sequela +C2846233|T037|AB|S52.379|ICD10CM|Galeazzi's fracture of unspecified radius|Galeazzi's fracture of unspecified radius +C2846233|T037|HT|S52.379|ICD10CM|Galeazzi's fracture of unspecified radius|Galeazzi's fracture of unspecified radius +C2846234|T037|AB|S52.379A|ICD10CM|Galeazzi's fracture of unsp radius, init for clos fx|Galeazzi's fracture of unsp radius, init for clos fx +C2846234|T037|PT|S52.379A|ICD10CM|Galeazzi's fracture of unspecified radius, initial encounter for closed fracture|Galeazzi's fracture of unspecified radius, initial encounter for closed fracture +C2846235|T037|AB|S52.379B|ICD10CM|Galeazzi's fracture of unsp radius, init for opn fx type I/2|Galeazzi's fracture of unsp radius, init for opn fx type I/2 +C2846235|T037|PT|S52.379B|ICD10CM|Galeazzi's fracture of unspecified radius, initial encounter for open fracture type I or II|Galeazzi's fracture of unspecified radius, initial encounter for open fracture type I or II +C2846236|T037|AB|S52.379C|ICD10CM|Galeazzi's fx unsp radius, init for opn fx type 3A/B/C|Galeazzi's fx unsp radius, init for opn fx type 3A/B/C +C2846237|T037|AB|S52.379D|ICD10CM|Galeazzi's fx unsp radius, subs for clos fx w routn heal|Galeazzi's fx unsp radius, subs for clos fx w routn heal +C2846238|T037|AB|S52.379E|ICD10CM|Galeazzi's fx unsp rad, 7thE|Galeazzi's fx unsp rad, 7thE +C2846239|T037|AB|S52.379F|ICD10CM|Galeazzi's fx unsp rad, 7thF|Galeazzi's fx unsp rad, 7thF +C2846240|T037|AB|S52.379G|ICD10CM|Galeazzi's fx unsp radius, subs for clos fx w delay heal|Galeazzi's fx unsp radius, subs for clos fx w delay heal +C2846241|T037|AB|S52.379H|ICD10CM|Galeazzi's fx unsp rad, 7thH|Galeazzi's fx unsp rad, 7thH +C2846242|T037|AB|S52.379J|ICD10CM|Galeazzi's fx unsp rad, 7thJ|Galeazzi's fx unsp rad, 7thJ +C2846243|T037|PT|S52.379K|ICD10CM|Galeazzi's fracture of unspecified radius, subsequent encounter for closed fracture with nonunion|Galeazzi's fracture of unspecified radius, subsequent encounter for closed fracture with nonunion +C2846243|T037|AB|S52.379K|ICD10CM|Galeazzi's fx unsp radius, subs for clos fx w nonunion|Galeazzi's fx unsp radius, subs for clos fx w nonunion +C2846244|T037|AB|S52.379M|ICD10CM|Galeazzi's fx unsp rad, subs for opn fx type I/2 w nonunion|Galeazzi's fx unsp rad, subs for opn fx type I/2 w nonunion +C2846245|T037|AB|S52.379N|ICD10CM|Galeazzi's fx unsp rad, 7thN|Galeazzi's fx unsp rad, 7thN +C2846246|T037|PT|S52.379P|ICD10CM|Galeazzi's fracture of unspecified radius, subsequent encounter for closed fracture with malunion|Galeazzi's fracture of unspecified radius, subsequent encounter for closed fracture with malunion +C2846246|T037|AB|S52.379P|ICD10CM|Galeazzi's fx unsp radius, subs for clos fx w malunion|Galeazzi's fx unsp radius, subs for clos fx w malunion +C2846247|T037|AB|S52.379Q|ICD10CM|Galeazzi's fx unsp rad, subs for opn fx type I/2 w malunion|Galeazzi's fx unsp rad, subs for opn fx type I/2 w malunion +C2846248|T037|AB|S52.379R|ICD10CM|Galeazzi's fx unsp rad, 7thR|Galeazzi's fx unsp rad, 7thR +C2846249|T037|PT|S52.379S|ICD10CM|Galeazzi's fracture of unspecified radius, sequela|Galeazzi's fracture of unspecified radius, sequela +C2846249|T037|AB|S52.379S|ICD10CM|Galeazzi's fracture of unspecified radius, sequela|Galeazzi's fracture of unspecified radius, sequela +C2846250|T037|HT|S52.38|ICD10CM|Bent bone of radius|Bent bone of radius +C2846250|T037|AB|S52.38|ICD10CM|Bent bone of radius|Bent bone of radius +C2846251|T037|AB|S52.381|ICD10CM|Bent bone of right radius|Bent bone of right radius +C2846251|T037|HT|S52.381|ICD10CM|Bent bone of right radius|Bent bone of right radius +C2846252|T037|AB|S52.381A|ICD10CM|Bent bone of right radius, init encntr for closed fracture|Bent bone of right radius, init encntr for closed fracture +C2846252|T037|PT|S52.381A|ICD10CM|Bent bone of right radius, initial encounter for closed fracture|Bent bone of right radius, initial encounter for closed fracture +C2846253|T037|AB|S52.381B|ICD10CM|Bent bone of right radius, init for opn fx type I/2|Bent bone of right radius, init for opn fx type I/2 +C2846253|T037|PT|S52.381B|ICD10CM|Bent bone of right radius, initial encounter for open fracture type I or II|Bent bone of right radius, initial encounter for open fracture type I or II +C2846254|T037|AB|S52.381C|ICD10CM|Bent bone of right radius, init for opn fx type 3A/B/C|Bent bone of right radius, init for opn fx type 3A/B/C +C2846254|T037|PT|S52.381C|ICD10CM|Bent bone of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC|Bent bone of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2846255|T037|AB|S52.381D|ICD10CM|Bent bone of right radius, subs for clos fx w routn heal|Bent bone of right radius, subs for clos fx w routn heal +C2846255|T037|PT|S52.381D|ICD10CM|Bent bone of right radius, subsequent encounter for closed fracture with routine healing|Bent bone of right radius, subsequent encounter for closed fracture with routine healing +C2846256|T037|AB|S52.381E|ICD10CM|Bent bone of r radius, subs for opn fx type I/2 w routn heal|Bent bone of r radius, subs for opn fx type I/2 w routn heal +C2846256|T037|PT|S52.381E|ICD10CM|Bent bone of right radius, subsequent encounter for open fracture type I or II with routine healing|Bent bone of right radius, subsequent encounter for open fracture type I or II with routine healing +C2846257|T037|AB|S52.381F|ICD10CM|Bent bone of r rad, subs for opn fx type 3A/B/C w routn heal|Bent bone of r rad, subs for opn fx type 3A/B/C w routn heal +C2846258|T037|AB|S52.381G|ICD10CM|Bent bone of right radius, subs for clos fx w delay heal|Bent bone of right radius, subs for clos fx w delay heal +C2846258|T037|PT|S52.381G|ICD10CM|Bent bone of right radius, subsequent encounter for closed fracture with delayed healing|Bent bone of right radius, subsequent encounter for closed fracture with delayed healing +C2846259|T037|AB|S52.381H|ICD10CM|Bent bone of r radius, subs for opn fx type I/2 w delay heal|Bent bone of r radius, subs for opn fx type I/2 w delay heal +C2846259|T037|PT|S52.381H|ICD10CM|Bent bone of right radius, subsequent encounter for open fracture type I or II with delayed healing|Bent bone of right radius, subsequent encounter for open fracture type I or II with delayed healing +C2846260|T037|AB|S52.381J|ICD10CM|Bent bone of r rad, subs for opn fx type 3A/B/C w delay heal|Bent bone of r rad, subs for opn fx type 3A/B/C w delay heal +C2846261|T037|AB|S52.381K|ICD10CM|Bent bone of right radius, subs for clos fx w nonunion|Bent bone of right radius, subs for clos fx w nonunion +C2846261|T037|PT|S52.381K|ICD10CM|Bent bone of right radius, subsequent encounter for closed fracture with nonunion|Bent bone of right radius, subsequent encounter for closed fracture with nonunion +C2846262|T037|AB|S52.381M|ICD10CM|Bent bone of r radius, subs for opn fx type I/2 w nonunion|Bent bone of r radius, subs for opn fx type I/2 w nonunion +C2846262|T037|PT|S52.381M|ICD10CM|Bent bone of right radius, subsequent encounter for open fracture type I or II with nonunion|Bent bone of right radius, subsequent encounter for open fracture type I or II with nonunion +C2846263|T037|AB|S52.381N|ICD10CM|Bent bone of r rad, subs for opn fx type 3A/B/C w nonunion|Bent bone of r rad, subs for opn fx type 3A/B/C w nonunion +C2846264|T037|AB|S52.381P|ICD10CM|Bent bone of right radius, subs for clos fx w malunion|Bent bone of right radius, subs for clos fx w malunion +C2846264|T037|PT|S52.381P|ICD10CM|Bent bone of right radius, subsequent encounter for closed fracture with malunion|Bent bone of right radius, subsequent encounter for closed fracture with malunion +C2846265|T037|AB|S52.381Q|ICD10CM|Bent bone of r radius, subs for opn fx type I/2 w malunion|Bent bone of r radius, subs for opn fx type I/2 w malunion +C2846265|T037|PT|S52.381Q|ICD10CM|Bent bone of right radius, subsequent encounter for open fracture type I or II with malunion|Bent bone of right radius, subsequent encounter for open fracture type I or II with malunion +C2846266|T037|AB|S52.381R|ICD10CM|Bent bone of r rad, subs for opn fx type 3A/B/C w malunion|Bent bone of r rad, subs for opn fx type 3A/B/C w malunion +C2846267|T037|AB|S52.381S|ICD10CM|Bent bone of right radius, sequela|Bent bone of right radius, sequela +C2846267|T037|PT|S52.381S|ICD10CM|Bent bone of right radius, sequela|Bent bone of right radius, sequela +C2846268|T037|AB|S52.382|ICD10CM|Bent bone of left radius|Bent bone of left radius +C2846268|T037|HT|S52.382|ICD10CM|Bent bone of left radius|Bent bone of left radius +C2846269|T037|AB|S52.382A|ICD10CM|Bent bone of left radius, init encntr for closed fracture|Bent bone of left radius, init encntr for closed fracture +C2846269|T037|PT|S52.382A|ICD10CM|Bent bone of left radius, initial encounter for closed fracture|Bent bone of left radius, initial encounter for closed fracture +C2846270|T037|AB|S52.382B|ICD10CM|Bent bone of left radius, init for opn fx type I/2|Bent bone of left radius, init for opn fx type I/2 +C2846270|T037|PT|S52.382B|ICD10CM|Bent bone of left radius, initial encounter for open fracture type I or II|Bent bone of left radius, initial encounter for open fracture type I or II +C2846271|T037|AB|S52.382C|ICD10CM|Bent bone of left radius, init for opn fx type 3A/B/C|Bent bone of left radius, init for opn fx type 3A/B/C +C2846271|T037|PT|S52.382C|ICD10CM|Bent bone of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC|Bent bone of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2846272|T037|AB|S52.382D|ICD10CM|Bent bone of left radius, subs for clos fx w routn heal|Bent bone of left radius, subs for clos fx w routn heal +C2846272|T037|PT|S52.382D|ICD10CM|Bent bone of left radius, subsequent encounter for closed fracture with routine healing|Bent bone of left radius, subsequent encounter for closed fracture with routine healing +C2846273|T037|AB|S52.382E|ICD10CM|Bent bone of left rad, subs for opn fx type I/2 w routn heal|Bent bone of left rad, subs for opn fx type I/2 w routn heal +C2846273|T037|PT|S52.382E|ICD10CM|Bent bone of left radius, subsequent encounter for open fracture type I or II with routine healing|Bent bone of left radius, subsequent encounter for open fracture type I or II with routine healing +C2846274|T037|AB|S52.382F|ICD10CM|Bent bone of l rad, subs for opn fx type 3A/B/C w routn heal|Bent bone of l rad, subs for opn fx type 3A/B/C w routn heal +C2846275|T037|AB|S52.382G|ICD10CM|Bent bone of left radius, subs for clos fx w delay heal|Bent bone of left radius, subs for clos fx w delay heal +C2846275|T037|PT|S52.382G|ICD10CM|Bent bone of left radius, subsequent encounter for closed fracture with delayed healing|Bent bone of left radius, subsequent encounter for closed fracture with delayed healing +C2846276|T037|AB|S52.382H|ICD10CM|Bent bone of left rad, subs for opn fx type I/2 w delay heal|Bent bone of left rad, subs for opn fx type I/2 w delay heal +C2846276|T037|PT|S52.382H|ICD10CM|Bent bone of left radius, subsequent encounter for open fracture type I or II with delayed healing|Bent bone of left radius, subsequent encounter for open fracture type I or II with delayed healing +C2846277|T037|AB|S52.382J|ICD10CM|Bent bone of l rad, subs for opn fx type 3A/B/C w delay heal|Bent bone of l rad, subs for opn fx type 3A/B/C w delay heal +C2846278|T037|AB|S52.382K|ICD10CM|Bent bone of left radius, subs for clos fx w nonunion|Bent bone of left radius, subs for clos fx w nonunion +C2846278|T037|PT|S52.382K|ICD10CM|Bent bone of left radius, subsequent encounter for closed fracture with nonunion|Bent bone of left radius, subsequent encounter for closed fracture with nonunion +C2846279|T037|AB|S52.382M|ICD10CM|Bent bone of left rad, subs for opn fx type I/2 w nonunion|Bent bone of left rad, subs for opn fx type I/2 w nonunion +C2846279|T037|PT|S52.382M|ICD10CM|Bent bone of left radius, subsequent encounter for open fracture type I or II with nonunion|Bent bone of left radius, subsequent encounter for open fracture type I or II with nonunion +C2846280|T037|AB|S52.382N|ICD10CM|Bent bone of l rad, subs for opn fx type 3A/B/C w nonunion|Bent bone of l rad, subs for opn fx type 3A/B/C w nonunion +C2846281|T037|AB|S52.382P|ICD10CM|Bent bone of left radius, subs for clos fx w malunion|Bent bone of left radius, subs for clos fx w malunion +C2846281|T037|PT|S52.382P|ICD10CM|Bent bone of left radius, subsequent encounter for closed fracture with malunion|Bent bone of left radius, subsequent encounter for closed fracture with malunion +C2846282|T037|AB|S52.382Q|ICD10CM|Bent bone of left rad, subs for opn fx type I/2 w malunion|Bent bone of left rad, subs for opn fx type I/2 w malunion +C2846282|T037|PT|S52.382Q|ICD10CM|Bent bone of left radius, subsequent encounter for open fracture type I or II with malunion|Bent bone of left radius, subsequent encounter for open fracture type I or II with malunion +C2846283|T037|AB|S52.382R|ICD10CM|Bent bone of l rad, subs for opn fx type 3A/B/C w malunion|Bent bone of l rad, subs for opn fx type 3A/B/C w malunion +C2846284|T037|AB|S52.382S|ICD10CM|Bent bone of left radius, sequela|Bent bone of left radius, sequela +C2846284|T037|PT|S52.382S|ICD10CM|Bent bone of left radius, sequela|Bent bone of left radius, sequela +C2846285|T037|AB|S52.389|ICD10CM|Bent bone of unspecified radius|Bent bone of unspecified radius +C2846285|T037|HT|S52.389|ICD10CM|Bent bone of unspecified radius|Bent bone of unspecified radius +C2846286|T037|AB|S52.389A|ICD10CM|Bent bone of unsp radius, init encntr for closed fracture|Bent bone of unsp radius, init encntr for closed fracture +C2846286|T037|PT|S52.389A|ICD10CM|Bent bone of unspecified radius, initial encounter for closed fracture|Bent bone of unspecified radius, initial encounter for closed fracture +C2846287|T037|AB|S52.389B|ICD10CM|Bent bone of unsp radius, init for opn fx type I/2|Bent bone of unsp radius, init for opn fx type I/2 +C2846287|T037|PT|S52.389B|ICD10CM|Bent bone of unspecified radius, initial encounter for open fracture type I or II|Bent bone of unspecified radius, initial encounter for open fracture type I or II +C2846288|T037|AB|S52.389C|ICD10CM|Bent bone of unsp radius, init for opn fx type 3A/B/C|Bent bone of unsp radius, init for opn fx type 3A/B/C +C2846288|T037|PT|S52.389C|ICD10CM|Bent bone of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC|Bent bone of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2846289|T037|AB|S52.389D|ICD10CM|Bent bone of unsp radius, subs for clos fx w routn heal|Bent bone of unsp radius, subs for clos fx w routn heal +C2846289|T037|PT|S52.389D|ICD10CM|Bent bone of unspecified radius, subsequent encounter for closed fracture with routine healing|Bent bone of unspecified radius, subsequent encounter for closed fracture with routine healing +C2846290|T037|AB|S52.389E|ICD10CM|Bent bone of unsp rad, subs for opn fx type I/2 w routn heal|Bent bone of unsp rad, subs for opn fx type I/2 w routn heal +C2846291|T037|AB|S52.389F|ICD10CM|Bent bone of unsp rad, 7thF|Bent bone of unsp rad, 7thF +C2846292|T037|AB|S52.389G|ICD10CM|Bent bone of unsp radius, subs for clos fx w delay heal|Bent bone of unsp radius, subs for clos fx w delay heal +C2846292|T037|PT|S52.389G|ICD10CM|Bent bone of unspecified radius, subsequent encounter for closed fracture with delayed healing|Bent bone of unspecified radius, subsequent encounter for closed fracture with delayed healing +C2846293|T037|AB|S52.389H|ICD10CM|Bent bone of unsp rad, subs for opn fx type I/2 w delay heal|Bent bone of unsp rad, subs for opn fx type I/2 w delay heal +C2846294|T037|AB|S52.389J|ICD10CM|Bent bone of unsp rad, 7thJ|Bent bone of unsp rad, 7thJ +C2846295|T037|AB|S52.389K|ICD10CM|Bent bone of unsp radius, subs for clos fx w nonunion|Bent bone of unsp radius, subs for clos fx w nonunion +C2846295|T037|PT|S52.389K|ICD10CM|Bent bone of unspecified radius, subsequent encounter for closed fracture with nonunion|Bent bone of unspecified radius, subsequent encounter for closed fracture with nonunion +C2846296|T037|AB|S52.389M|ICD10CM|Bent bone of unsp rad, subs for opn fx type I/2 w nonunion|Bent bone of unsp rad, subs for opn fx type I/2 w nonunion +C2846296|T037|PT|S52.389M|ICD10CM|Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with nonunion|Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with nonunion +C2846297|T037|AB|S52.389N|ICD10CM|Bent bone of unsp rad, 7thN|Bent bone of unsp rad, 7thN +C2846298|T037|AB|S52.389P|ICD10CM|Bent bone of unsp radius, subs for clos fx w malunion|Bent bone of unsp radius, subs for clos fx w malunion +C2846298|T037|PT|S52.389P|ICD10CM|Bent bone of unspecified radius, subsequent encounter for closed fracture with malunion|Bent bone of unspecified radius, subsequent encounter for closed fracture with malunion +C2846299|T037|AB|S52.389Q|ICD10CM|Bent bone of unsp rad, subs for opn fx type I/2 w malunion|Bent bone of unsp rad, subs for opn fx type I/2 w malunion +C2846299|T037|PT|S52.389Q|ICD10CM|Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with malunion|Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with malunion +C2846300|T037|AB|S52.389R|ICD10CM|Bent bone of unsp rad, 7thR|Bent bone of unsp rad, 7thR +C2846301|T037|AB|S52.389S|ICD10CM|Bent bone of unspecified radius, sequela|Bent bone of unspecified radius, sequela +C2846301|T037|PT|S52.389S|ICD10CM|Bent bone of unspecified radius, sequela|Bent bone of unspecified radius, sequela +C2846302|T037|AB|S52.39|ICD10CM|Other fracture of shaft of radius|Other fracture of shaft of radius +C2846302|T037|HT|S52.39|ICD10CM|Other fracture of shaft of radius|Other fracture of shaft of radius +C2846303|T037|AB|S52.391|ICD10CM|Other fracture of shaft of radius, right arm|Other fracture of shaft of radius, right arm +C2846303|T037|HT|S52.391|ICD10CM|Other fracture of shaft of radius, right arm|Other fracture of shaft of radius, right arm +C2846304|T037|AB|S52.391A|ICD10CM|Oth fracture of shaft of radius, right arm, init for clos fx|Oth fracture of shaft of radius, right arm, init for clos fx +C2846304|T037|PT|S52.391A|ICD10CM|Other fracture of shaft of radius, right arm, initial encounter for closed fracture|Other fracture of shaft of radius, right arm, initial encounter for closed fracture +C2846305|T037|AB|S52.391B|ICD10CM|Oth fx shaft of radius, right arm, init for opn fx type I/2|Oth fx shaft of radius, right arm, init for opn fx type I/2 +C2846305|T037|PT|S52.391B|ICD10CM|Other fracture of shaft of radius, right arm, initial encounter for open fracture type I or II|Other fracture of shaft of radius, right arm, initial encounter for open fracture type I or II +C2846306|T037|AB|S52.391C|ICD10CM|Oth fx shaft of rad, right arm, init for opn fx type 3A/B/C|Oth fx shaft of rad, right arm, init for opn fx type 3A/B/C +C2846307|T037|AB|S52.391D|ICD10CM|Oth fx shaft of rad, r arm, subs for clos fx w routn heal|Oth fx shaft of rad, r arm, subs for clos fx w routn heal +C2846308|T037|AB|S52.391E|ICD10CM|Oth fx shaft of rad, r arm, 7thE|Oth fx shaft of rad, r arm, 7thE +C2846309|T037|AB|S52.391F|ICD10CM|Oth fx shaft of rad, r arm, 7thF|Oth fx shaft of rad, r arm, 7thF +C2846310|T037|AB|S52.391G|ICD10CM|Oth fx shaft of rad, r arm, subs for clos fx w delay heal|Oth fx shaft of rad, r arm, subs for clos fx w delay heal +C2846311|T037|AB|S52.391H|ICD10CM|Oth fx shaft of rad, r arm, 7thH|Oth fx shaft of rad, r arm, 7thH +C2846312|T037|AB|S52.391J|ICD10CM|Oth fx shaft of rad, r arm, 7thJ|Oth fx shaft of rad, r arm, 7thJ +C2846313|T037|AB|S52.391K|ICD10CM|Oth fx shaft of rad, right arm, subs for clos fx w nonunion|Oth fx shaft of rad, right arm, subs for clos fx w nonunion +C2846313|T037|PT|S52.391K|ICD10CM|Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion|Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion +C2846314|T037|AB|S52.391M|ICD10CM|Oth fx shaft of rad, r arm, 7thM|Oth fx shaft of rad, r arm, 7thM +C2846315|T037|AB|S52.391N|ICD10CM|Oth fx shaft of rad, r arm, 7thN|Oth fx shaft of rad, r arm, 7thN +C2846316|T037|AB|S52.391P|ICD10CM|Oth fx shaft of rad, right arm, subs for clos fx w malunion|Oth fx shaft of rad, right arm, subs for clos fx w malunion +C2846316|T037|PT|S52.391P|ICD10CM|Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion|Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion +C2846317|T037|AB|S52.391Q|ICD10CM|Oth fx shaft of rad, r arm, 7thQ|Oth fx shaft of rad, r arm, 7thQ +C2846318|T037|AB|S52.391R|ICD10CM|Oth fx shaft of rad, r arm, 7thR|Oth fx shaft of rad, r arm, 7thR +C2846319|T037|PT|S52.391S|ICD10CM|Other fracture of shaft of radius, right arm, sequela|Other fracture of shaft of radius, right arm, sequela +C2846319|T037|AB|S52.391S|ICD10CM|Other fracture of shaft of radius, right arm, sequela|Other fracture of shaft of radius, right arm, sequela +C2846320|T037|AB|S52.392|ICD10CM|Other fracture of shaft of radius, left arm|Other fracture of shaft of radius, left arm +C2846320|T037|HT|S52.392|ICD10CM|Other fracture of shaft of radius, left arm|Other fracture of shaft of radius, left arm +C2846321|T037|AB|S52.392A|ICD10CM|Oth fracture of shaft of radius, left arm, init for clos fx|Oth fracture of shaft of radius, left arm, init for clos fx +C2846321|T037|PT|S52.392A|ICD10CM|Other fracture of shaft of radius, left arm, initial encounter for closed fracture|Other fracture of shaft of radius, left arm, initial encounter for closed fracture +C2846322|T037|AB|S52.392B|ICD10CM|Oth fx shaft of radius, left arm, init for opn fx type I/2|Oth fx shaft of radius, left arm, init for opn fx type I/2 +C2846322|T037|PT|S52.392B|ICD10CM|Other fracture of shaft of radius, left arm, initial encounter for open fracture type I or II|Other fracture of shaft of radius, left arm, initial encounter for open fracture type I or II +C2846323|T037|AB|S52.392C|ICD10CM|Oth fx shaft of rad, left arm, init for opn fx type 3A/B/C|Oth fx shaft of rad, left arm, init for opn fx type 3A/B/C +C2846324|T037|AB|S52.392D|ICD10CM|Oth fx shaft of rad, left arm, subs for clos fx w routn heal|Oth fx shaft of rad, left arm, subs for clos fx w routn heal +C2846325|T037|AB|S52.392E|ICD10CM|Oth fx shaft of rad, l arm, 7thE|Oth fx shaft of rad, l arm, 7thE +C2846326|T037|AB|S52.392F|ICD10CM|Oth fx shaft of rad, l arm, 7thF|Oth fx shaft of rad, l arm, 7thF +C2846327|T037|AB|S52.392G|ICD10CM|Oth fx shaft of rad, left arm, subs for clos fx w delay heal|Oth fx shaft of rad, left arm, subs for clos fx w delay heal +C2846328|T037|AB|S52.392H|ICD10CM|Oth fx shaft of rad, l arm, 7thH|Oth fx shaft of rad, l arm, 7thH +C2846329|T037|AB|S52.392J|ICD10CM|Oth fx shaft of rad, l arm, 7thJ|Oth fx shaft of rad, l arm, 7thJ +C2846330|T037|AB|S52.392K|ICD10CM|Oth fx shaft of rad, left arm, subs for clos fx w nonunion|Oth fx shaft of rad, left arm, subs for clos fx w nonunion +C2846330|T037|PT|S52.392K|ICD10CM|Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion|Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion +C2846331|T037|AB|S52.392M|ICD10CM|Oth fx shaft of rad, l arm, 7thM|Oth fx shaft of rad, l arm, 7thM +C2846332|T037|AB|S52.392N|ICD10CM|Oth fx shaft of rad, l arm, 7thN|Oth fx shaft of rad, l arm, 7thN +C2846333|T037|AB|S52.392P|ICD10CM|Oth fx shaft of rad, left arm, subs for clos fx w malunion|Oth fx shaft of rad, left arm, subs for clos fx w malunion +C2846333|T037|PT|S52.392P|ICD10CM|Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion|Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion +C2846334|T037|AB|S52.392Q|ICD10CM|Oth fx shaft of rad, l arm, 7thQ|Oth fx shaft of rad, l arm, 7thQ +C2846335|T037|AB|S52.392R|ICD10CM|Oth fx shaft of rad, l arm, 7thR|Oth fx shaft of rad, l arm, 7thR +C2846336|T037|PT|S52.392S|ICD10CM|Other fracture of shaft of radius, left arm, sequela|Other fracture of shaft of radius, left arm, sequela +C2846336|T037|AB|S52.392S|ICD10CM|Other fracture of shaft of radius, left arm, sequela|Other fracture of shaft of radius, left arm, sequela +C2846337|T037|AB|S52.399|ICD10CM|Other fracture of shaft of radius, unspecified arm|Other fracture of shaft of radius, unspecified arm +C2846337|T037|HT|S52.399|ICD10CM|Other fracture of shaft of radius, unspecified arm|Other fracture of shaft of radius, unspecified arm +C2846338|T037|AB|S52.399A|ICD10CM|Oth fracture of shaft of radius, unsp arm, init for clos fx|Oth fracture of shaft of radius, unsp arm, init for clos fx +C2846338|T037|PT|S52.399A|ICD10CM|Other fracture of shaft of radius, unspecified arm, initial encounter for closed fracture|Other fracture of shaft of radius, unspecified arm, initial encounter for closed fracture +C2846339|T037|AB|S52.399B|ICD10CM|Oth fx shaft of radius, unsp arm, init for opn fx type I/2|Oth fx shaft of radius, unsp arm, init for opn fx type I/2 +C2846339|T037|PT|S52.399B|ICD10CM|Other fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II|Other fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II +C2846340|T037|AB|S52.399C|ICD10CM|Oth fx shaft of rad, unsp arm, init for opn fx type 3A/B/C|Oth fx shaft of rad, unsp arm, init for opn fx type 3A/B/C +C2846341|T037|AB|S52.399D|ICD10CM|Oth fx shaft of rad, unsp arm, subs for clos fx w routn heal|Oth fx shaft of rad, unsp arm, subs for clos fx w routn heal +C2846342|T037|AB|S52.399E|ICD10CM|Oth fx shaft of rad, unsp arm, 7thE|Oth fx shaft of rad, unsp arm, 7thE +C2846343|T037|AB|S52.399F|ICD10CM|Oth fx shaft of rad, unsp arm, 7thF|Oth fx shaft of rad, unsp arm, 7thF +C2846344|T037|AB|S52.399G|ICD10CM|Oth fx shaft of rad, unsp arm, subs for clos fx w delay heal|Oth fx shaft of rad, unsp arm, subs for clos fx w delay heal +C2846345|T037|AB|S52.399H|ICD10CM|Oth fx shaft of rad, unsp arm, 7thH|Oth fx shaft of rad, unsp arm, 7thH +C2846346|T037|AB|S52.399J|ICD10CM|Oth fx shaft of rad, unsp arm, 7thJ|Oth fx shaft of rad, unsp arm, 7thJ +C2846347|T037|AB|S52.399K|ICD10CM|Oth fx shaft of rad, unsp arm, subs for clos fx w nonunion|Oth fx shaft of rad, unsp arm, subs for clos fx w nonunion +C2846348|T037|AB|S52.399M|ICD10CM|Oth fx shaft of rad, unsp arm, 7thM|Oth fx shaft of rad, unsp arm, 7thM +C2846349|T037|AB|S52.399N|ICD10CM|Oth fx shaft of rad, unsp arm, 7thN|Oth fx shaft of rad, unsp arm, 7thN +C2846350|T037|AB|S52.399P|ICD10CM|Oth fx shaft of rad, unsp arm, subs for clos fx w malunion|Oth fx shaft of rad, unsp arm, subs for clos fx w malunion +C2846351|T037|AB|S52.399Q|ICD10CM|Oth fx shaft of rad, unsp arm, 7thQ|Oth fx shaft of rad, unsp arm, 7thQ +C2846352|T037|AB|S52.399R|ICD10CM|Oth fx shaft of rad, unsp arm, 7thR|Oth fx shaft of rad, unsp arm, 7thR +C2846353|T037|PT|S52.399S|ICD10CM|Other fracture of shaft of radius, unspecified arm, sequela|Other fracture of shaft of radius, unspecified arm, sequela +C2846353|T037|AB|S52.399S|ICD10CM|Other fracture of shaft of radius, unspecified arm, sequela|Other fracture of shaft of radius, unspecified arm, sequela +C0435627|T037|PT|S52.4|ICD10|Fracture of shafts of both ulna and radius|Fracture of shafts of both ulna and radius +C0435585|T037|ET|S52.5|ICD10CM|Fracture of distal end of radius|Fracture of distal end of radius +C0435585|T037|HT|S52.5|ICD10CM|Fracture of lower end of radius|Fracture of lower end of radius +C0435585|T037|AB|S52.5|ICD10CM|Fracture of lower end of radius|Fracture of lower end of radius +C0435585|T037|PT|S52.5|ICD10|Fracture of lower end of radius|Fracture of lower end of radius +C0840614|T037|AB|S52.50|ICD10CM|Unspecified fracture of the lower end of radius|Unspecified fracture of the lower end of radius +C0840614|T037|HT|S52.50|ICD10CM|Unspecified fracture of the lower end of radius|Unspecified fracture of the lower end of radius +C2846354|T037|AB|S52.501|ICD10CM|Unspecified fracture of the lower end of right radius|Unspecified fracture of the lower end of right radius +C2846354|T037|HT|S52.501|ICD10CM|Unspecified fracture of the lower end of right radius|Unspecified fracture of the lower end of right radius +C2846355|T037|AB|S52.501A|ICD10CM|Unsp fracture of the lower end of right radius, init|Unsp fracture of the lower end of right radius, init +C2846355|T037|PT|S52.501A|ICD10CM|Unspecified fracture of the lower end of right radius, initial encounter for closed fracture|Unspecified fracture of the lower end of right radius, initial encounter for closed fracture +C2846356|T037|AB|S52.501B|ICD10CM|Unsp fx the lower end of r radius, init for opn fx type I/2|Unsp fx the lower end of r radius, init for opn fx type I/2 +C2846357|T037|AB|S52.501C|ICD10CM|Unsp fx the lower end r radius, init for opn fx type 3A/B/C|Unsp fx the lower end r radius, init for opn fx type 3A/B/C +C2846358|T037|AB|S52.501D|ICD10CM|Unsp fx the lower end r rad, subs for clos fx w routn heal|Unsp fx the lower end r rad, subs for clos fx w routn heal +C2846359|T037|AB|S52.501E|ICD10CM|Unsp fx the low end r rad, 7thE|Unsp fx the low end r rad, 7thE +C2846360|T037|AB|S52.501F|ICD10CM|Unsp fx the low end r rad, 7thF|Unsp fx the low end r rad, 7thF +C2846361|T037|AB|S52.501G|ICD10CM|Unsp fx the lower end r rad, subs for clos fx w delay heal|Unsp fx the lower end r rad, subs for clos fx w delay heal +C2846362|T037|AB|S52.501H|ICD10CM|Unsp fx the low end r rad, 7thH|Unsp fx the low end r rad, 7thH +C2846363|T037|AB|S52.501J|ICD10CM|Unsp fx the low end r rad, 7thJ|Unsp fx the low end r rad, 7thJ +C2846364|T037|AB|S52.501K|ICD10CM|Unsp fx the lower end r radius, subs for clos fx w nonunion|Unsp fx the lower end r radius, subs for clos fx w nonunion +C2846365|T037|AB|S52.501M|ICD10CM|Unsp fx the low end r rad, 7thM|Unsp fx the low end r rad, 7thM +C2846366|T037|AB|S52.501N|ICD10CM|Unsp fx the low end r rad, 7thN|Unsp fx the low end r rad, 7thN +C2846367|T037|AB|S52.501P|ICD10CM|Unsp fx the lower end r radius, subs for clos fx w malunion|Unsp fx the lower end r radius, subs for clos fx w malunion +C2846368|T037|AB|S52.501Q|ICD10CM|Unsp fx the low end r rad, 7thQ|Unsp fx the low end r rad, 7thQ +C2846369|T037|AB|S52.501R|ICD10CM|Unsp fx the low end r rad, 7thR|Unsp fx the low end r rad, 7thR +C2846370|T037|AB|S52.501S|ICD10CM|Unsp fracture of the lower end of right radius, sequela|Unsp fracture of the lower end of right radius, sequela +C2846370|T037|PT|S52.501S|ICD10CM|Unspecified fracture of the lower end of right radius, sequela|Unspecified fracture of the lower end of right radius, sequela +C2846371|T037|AB|S52.502|ICD10CM|Unspecified fracture of the lower end of left radius|Unspecified fracture of the lower end of left radius +C2846371|T037|HT|S52.502|ICD10CM|Unspecified fracture of the lower end of left radius|Unspecified fracture of the lower end of left radius +C2846372|T037|AB|S52.502A|ICD10CM|Unsp fracture of the lower end of left radius, init|Unsp fracture of the lower end of left radius, init +C2846372|T037|PT|S52.502A|ICD10CM|Unspecified fracture of the lower end of left radius, initial encounter for closed fracture|Unspecified fracture of the lower end of left radius, initial encounter for closed fracture +C2846373|T037|AB|S52.502B|ICD10CM|Unsp fx the lower end left radius, init for opn fx type I/2|Unsp fx the lower end left radius, init for opn fx type I/2 +C2846374|T037|AB|S52.502C|ICD10CM|Unsp fx the lower end left rad, init for opn fx type 3A/B/C|Unsp fx the lower end left rad, init for opn fx type 3A/B/C +C2846375|T037|AB|S52.502D|ICD10CM|Unsp fx the low end left rad, subs for clos fx w routn heal|Unsp fx the low end left rad, subs for clos fx w routn heal +C2846376|T037|AB|S52.502E|ICD10CM|Unsp fx the low end l rad, 7thE|Unsp fx the low end l rad, 7thE +C2846377|T037|AB|S52.502F|ICD10CM|Unsp fx the low end l rad, 7thF|Unsp fx the low end l rad, 7thF +C2846378|T037|AB|S52.502G|ICD10CM|Unsp fx the low end left rad, subs for clos fx w delay heal|Unsp fx the low end left rad, subs for clos fx w delay heal +C2846379|T037|AB|S52.502H|ICD10CM|Unsp fx the low end l rad, 7thH|Unsp fx the low end l rad, 7thH +C2846380|T037|AB|S52.502J|ICD10CM|Unsp fx the low end l rad, 7thJ|Unsp fx the low end l rad, 7thJ +C2846381|T037|AB|S52.502K|ICD10CM|Unsp fx the lower end left rad, subs for clos fx w nonunion|Unsp fx the lower end left rad, subs for clos fx w nonunion +C2846382|T037|AB|S52.502M|ICD10CM|Unsp fx the low end l rad, 7thM|Unsp fx the low end l rad, 7thM +C2846383|T037|AB|S52.502N|ICD10CM|Unsp fx the low end l rad, 7thN|Unsp fx the low end l rad, 7thN +C2846384|T037|AB|S52.502P|ICD10CM|Unsp fx the lower end left rad, subs for clos fx w malunion|Unsp fx the lower end left rad, subs for clos fx w malunion +C2846385|T037|AB|S52.502Q|ICD10CM|Unsp fx the low end l rad, 7thQ|Unsp fx the low end l rad, 7thQ +C2846386|T037|AB|S52.502R|ICD10CM|Unsp fx the low end l rad, 7thR|Unsp fx the low end l rad, 7thR +C2846387|T037|AB|S52.502S|ICD10CM|Unsp fracture of the lower end of left radius, sequela|Unsp fracture of the lower end of left radius, sequela +C2846387|T037|PT|S52.502S|ICD10CM|Unspecified fracture of the lower end of left radius, sequela|Unspecified fracture of the lower end of left radius, sequela +C2846388|T037|AB|S52.509|ICD10CM|Unspecified fracture of the lower end of unspecified radius|Unspecified fracture of the lower end of unspecified radius +C2846388|T037|HT|S52.509|ICD10CM|Unspecified fracture of the lower end of unspecified radius|Unspecified fracture of the lower end of unspecified radius +C2846389|T037|AB|S52.509A|ICD10CM|Unsp fracture of the lower end of unsp radius, init|Unsp fracture of the lower end of unsp radius, init +C2846389|T037|PT|S52.509A|ICD10CM|Unspecified fracture of the lower end of unspecified radius, initial encounter for closed fracture|Unspecified fracture of the lower end of unspecified radius, initial encounter for closed fracture +C2846390|T037|AB|S52.509B|ICD10CM|Unsp fx the lower end unsp radius, init for opn fx type I/2|Unsp fx the lower end unsp radius, init for opn fx type I/2 +C2846391|T037|AB|S52.509C|ICD10CM|Unsp fx the lower end unsp rad, init for opn fx type 3A/B/C|Unsp fx the lower end unsp rad, init for opn fx type 3A/B/C +C2846392|T037|AB|S52.509D|ICD10CM|Unsp fx the low end unsp rad, subs for clos fx w routn heal|Unsp fx the low end unsp rad, subs for clos fx w routn heal +C2846393|T037|AB|S52.509E|ICD10CM|Unsp fx the low end unsp rad, 7thE|Unsp fx the low end unsp rad, 7thE +C2846394|T037|AB|S52.509F|ICD10CM|Unsp fx the low end unsp rad, 7thF|Unsp fx the low end unsp rad, 7thF +C2846395|T037|AB|S52.509G|ICD10CM|Unsp fx the low end unsp rad, subs for clos fx w delay heal|Unsp fx the low end unsp rad, subs for clos fx w delay heal +C2846396|T037|AB|S52.509H|ICD10CM|Unsp fx the low end unsp rad, 7thH|Unsp fx the low end unsp rad, 7thH +C2846397|T037|AB|S52.509J|ICD10CM|Unsp fx the low end unsp rad, 7thJ|Unsp fx the low end unsp rad, 7thJ +C2846398|T037|AB|S52.509K|ICD10CM|Unsp fx the lower end unsp rad, subs for clos fx w nonunion|Unsp fx the lower end unsp rad, subs for clos fx w nonunion +C2846399|T037|AB|S52.509M|ICD10CM|Unsp fx the low end unsp rad, 7thM|Unsp fx the low end unsp rad, 7thM +C2846400|T037|AB|S52.509N|ICD10CM|Unsp fx the low end unsp rad, 7thN|Unsp fx the low end unsp rad, 7thN +C2846401|T037|AB|S52.509P|ICD10CM|Unsp fx the lower end unsp rad, subs for clos fx w malunion|Unsp fx the lower end unsp rad, subs for clos fx w malunion +C2846402|T037|AB|S52.509Q|ICD10CM|Unsp fx the low end unsp rad, 7thQ|Unsp fx the low end unsp rad, 7thQ +C2846403|T037|AB|S52.509R|ICD10CM|Unsp fx the low end unsp rad, 7thR|Unsp fx the low end unsp rad, 7thR +C2846404|T037|AB|S52.509S|ICD10CM|Unsp fracture of the lower end of unsp radius, sequela|Unsp fracture of the lower end of unsp radius, sequela +C2846404|T037|PT|S52.509S|ICD10CM|Unspecified fracture of the lower end of unspecified radius, sequela|Unspecified fracture of the lower end of unspecified radius, sequela +C0555334|T037|HT|S52.51|ICD10CM|Fracture of radial styloid process|Fracture of radial styloid process +C0555334|T037|AB|S52.51|ICD10CM|Fracture of radial styloid process|Fracture of radial styloid process +C2846405|T037|AB|S52.511|ICD10CM|Displaced fracture of right radial styloid process|Displaced fracture of right radial styloid process +C2846405|T037|HT|S52.511|ICD10CM|Displaced fracture of right radial styloid process|Displaced fracture of right radial styloid process +C2846406|T037|AB|S52.511A|ICD10CM|Disp fx of right radial styloid process, init for clos fx|Disp fx of right radial styloid process, init for clos fx +C2846406|T037|PT|S52.511A|ICD10CM|Displaced fracture of right radial styloid process, initial encounter for closed fracture|Displaced fracture of right radial styloid process, initial encounter for closed fracture +C2846407|T037|AB|S52.511B|ICD10CM|Disp fx of r radial styloid pro, init for opn fx type I/2|Disp fx of r radial styloid pro, init for opn fx type I/2 +C2846407|T037|PT|S52.511B|ICD10CM|Displaced fracture of right radial styloid process, initial encounter for open fracture type I or II|Displaced fracture of right radial styloid process, initial encounter for open fracture type I or II +C2846408|T037|AB|S52.511C|ICD10CM|Disp fx of r radial styloid pro, init for opn fx type 3A/B/C|Disp fx of r radial styloid pro, init for opn fx type 3A/B/C +C2846409|T037|AB|S52.511D|ICD10CM|Disp fx of r radial styloid pro, 7thD|Disp fx of r radial styloid pro, 7thD +C2846410|T037|AB|S52.511E|ICD10CM|Disp fx of r radial styloid pro, 7thE|Disp fx of r radial styloid pro, 7thE +C2846411|T037|AB|S52.511F|ICD10CM|Disp fx of r radial styloid pro, 7thF|Disp fx of r radial styloid pro, 7thF +C2846412|T037|AB|S52.511G|ICD10CM|Disp fx of r radial styloid pro, 7thG|Disp fx of r radial styloid pro, 7thG +C2846413|T037|AB|S52.511H|ICD10CM|Disp fx of r radial styloid pro, 7thH|Disp fx of r radial styloid pro, 7thH +C2846414|T037|AB|S52.511J|ICD10CM|Disp fx of r radial styloid pro, 7thJ|Disp fx of r radial styloid pro, 7thJ +C2846415|T037|AB|S52.511K|ICD10CM|Disp fx of r radial styloid pro, subs for clos fx w nonunion|Disp fx of r radial styloid pro, subs for clos fx w nonunion +C2846416|T037|AB|S52.511M|ICD10CM|Disp fx of r radial styloid pro, 7thM|Disp fx of r radial styloid pro, 7thM +C2846417|T037|AB|S52.511N|ICD10CM|Disp fx of r radial styloid pro, 7thN|Disp fx of r radial styloid pro, 7thN +C2846418|T037|AB|S52.511P|ICD10CM|Disp fx of r radial styloid pro, subs for clos fx w malunion|Disp fx of r radial styloid pro, subs for clos fx w malunion +C2846419|T037|AB|S52.511Q|ICD10CM|Disp fx of r radial styloid pro, 7thQ|Disp fx of r radial styloid pro, 7thQ +C2846420|T037|AB|S52.511R|ICD10CM|Disp fx of r radial styloid pro, 7thR|Disp fx of r radial styloid pro, 7thR +C2846421|T037|PT|S52.511S|ICD10CM|Displaced fracture of right radial styloid process, sequela|Displaced fracture of right radial styloid process, sequela +C2846421|T037|AB|S52.511S|ICD10CM|Displaced fracture of right radial styloid process, sequela|Displaced fracture of right radial styloid process, sequela +C2846422|T037|AB|S52.512|ICD10CM|Displaced fracture of left radial styloid process|Displaced fracture of left radial styloid process +C2846422|T037|HT|S52.512|ICD10CM|Displaced fracture of left radial styloid process|Displaced fracture of left radial styloid process +C2846423|T037|AB|S52.512A|ICD10CM|Disp fx of left radial styloid process, init for clos fx|Disp fx of left radial styloid process, init for clos fx +C2846423|T037|PT|S52.512A|ICD10CM|Displaced fracture of left radial styloid process, initial encounter for closed fracture|Displaced fracture of left radial styloid process, initial encounter for closed fracture +C2846424|T037|AB|S52.512B|ICD10CM|Disp fx of left radial styloid pro, init for opn fx type I/2|Disp fx of left radial styloid pro, init for opn fx type I/2 +C2846424|T037|PT|S52.512B|ICD10CM|Displaced fracture of left radial styloid process, initial encounter for open fracture type I or II|Displaced fracture of left radial styloid process, initial encounter for open fracture type I or II +C2846425|T037|AB|S52.512C|ICD10CM|Disp fx of l radial styloid pro, init for opn fx type 3A/B/C|Disp fx of l radial styloid pro, init for opn fx type 3A/B/C +C2846426|T037|AB|S52.512D|ICD10CM|Disp fx of l radial styloid pro, 7thD|Disp fx of l radial styloid pro, 7thD +C2846427|T037|AB|S52.512E|ICD10CM|Disp fx of l radial styloid pro, 7thE|Disp fx of l radial styloid pro, 7thE +C2846428|T037|AB|S52.512F|ICD10CM|Disp fx of l radial styloid pro, 7thF|Disp fx of l radial styloid pro, 7thF +C2846429|T037|AB|S52.512G|ICD10CM|Disp fx of l radial styloid pro, 7thG|Disp fx of l radial styloid pro, 7thG +C2846430|T037|AB|S52.512H|ICD10CM|Disp fx of l radial styloid pro, 7thH|Disp fx of l radial styloid pro, 7thH +C2846431|T037|AB|S52.512J|ICD10CM|Disp fx of l radial styloid pro, 7thJ|Disp fx of l radial styloid pro, 7thJ +C2846432|T037|AB|S52.512K|ICD10CM|Disp fx of l radial styloid pro, subs for clos fx w nonunion|Disp fx of l radial styloid pro, subs for clos fx w nonunion +C2846433|T037|AB|S52.512M|ICD10CM|Disp fx of l radial styloid pro, 7thM|Disp fx of l radial styloid pro, 7thM +C2846434|T037|AB|S52.512N|ICD10CM|Disp fx of l radial styloid pro, 7thN|Disp fx of l radial styloid pro, 7thN +C2846435|T037|AB|S52.512P|ICD10CM|Disp fx of l radial styloid pro, subs for clos fx w malunion|Disp fx of l radial styloid pro, subs for clos fx w malunion +C2846436|T037|AB|S52.512Q|ICD10CM|Disp fx of l radial styloid pro, 7thQ|Disp fx of l radial styloid pro, 7thQ +C2846437|T037|AB|S52.512R|ICD10CM|Disp fx of l radial styloid pro, 7thR|Disp fx of l radial styloid pro, 7thR +C2846438|T037|PT|S52.512S|ICD10CM|Displaced fracture of left radial styloid process, sequela|Displaced fracture of left radial styloid process, sequela +C2846438|T037|AB|S52.512S|ICD10CM|Displaced fracture of left radial styloid process, sequela|Displaced fracture of left radial styloid process, sequela +C2846439|T037|AB|S52.513|ICD10CM|Displaced fracture of unspecified radial styloid process|Displaced fracture of unspecified radial styloid process +C2846439|T037|HT|S52.513|ICD10CM|Displaced fracture of unspecified radial styloid process|Displaced fracture of unspecified radial styloid process +C2846440|T037|AB|S52.513A|ICD10CM|Disp fx of unsp radial styloid process, init for clos fx|Disp fx of unsp radial styloid process, init for clos fx +C2846440|T037|PT|S52.513A|ICD10CM|Displaced fracture of unspecified radial styloid process, initial encounter for closed fracture|Displaced fracture of unspecified radial styloid process, initial encounter for closed fracture +C2846441|T037|AB|S52.513B|ICD10CM|Disp fx of unsp radial styloid pro, init for opn fx type I/2|Disp fx of unsp radial styloid pro, init for opn fx type I/2 +C2846442|T037|AB|S52.513C|ICD10CM|Disp fx of unsp radial styloid pro, 7thC|Disp fx of unsp radial styloid pro, 7thC +C2846443|T037|AB|S52.513D|ICD10CM|Disp fx of unsp radial styloid pro, 7thD|Disp fx of unsp radial styloid pro, 7thD +C2846444|T037|AB|S52.513E|ICD10CM|Disp fx of unsp radial styloid pro, 7thE|Disp fx of unsp radial styloid pro, 7thE +C2846445|T037|AB|S52.513F|ICD10CM|Disp fx of unsp radial styloid pro, 7thF|Disp fx of unsp radial styloid pro, 7thF +C2846446|T037|AB|S52.513G|ICD10CM|Disp fx of unsp radial styloid pro, 7thG|Disp fx of unsp radial styloid pro, 7thG +C2846447|T037|AB|S52.513H|ICD10CM|Disp fx of unsp radial styloid pro, 7thH|Disp fx of unsp radial styloid pro, 7thH +C2846448|T037|AB|S52.513J|ICD10CM|Disp fx of unsp radial styloid pro, 7thJ|Disp fx of unsp radial styloid pro, 7thJ +C2846449|T037|AB|S52.513K|ICD10CM|Disp fx of unsp radial styloid pro, 7thK|Disp fx of unsp radial styloid pro, 7thK +C2846450|T037|AB|S52.513M|ICD10CM|Disp fx of unsp radial styloid pro, 7thM|Disp fx of unsp radial styloid pro, 7thM +C2846451|T037|AB|S52.513N|ICD10CM|Disp fx of unsp radial styloid pro, 7thN|Disp fx of unsp radial styloid pro, 7thN +C2846452|T037|AB|S52.513P|ICD10CM|Disp fx of unsp radial styloid pro, 7thP|Disp fx of unsp radial styloid pro, 7thP +C2846453|T037|AB|S52.513Q|ICD10CM|Disp fx of unsp radial styloid pro, 7thQ|Disp fx of unsp radial styloid pro, 7thQ +C2846454|T037|AB|S52.513R|ICD10CM|Disp fx of unsp radial styloid pro, 7thR|Disp fx of unsp radial styloid pro, 7thR +C2846455|T037|AB|S52.513S|ICD10CM|Disp fx of unspecified radial styloid process, sequela|Disp fx of unspecified radial styloid process, sequela +C2846455|T037|PT|S52.513S|ICD10CM|Displaced fracture of unspecified radial styloid process, sequela|Displaced fracture of unspecified radial styloid process, sequela +C2846456|T037|AB|S52.514|ICD10CM|Nondisplaced fracture of right radial styloid process|Nondisplaced fracture of right radial styloid process +C2846456|T037|HT|S52.514|ICD10CM|Nondisplaced fracture of right radial styloid process|Nondisplaced fracture of right radial styloid process +C2846457|T037|AB|S52.514A|ICD10CM|Nondisp fx of right radial styloid process, init for clos fx|Nondisp fx of right radial styloid process, init for clos fx +C2846457|T037|PT|S52.514A|ICD10CM|Nondisplaced fracture of right radial styloid process, initial encounter for closed fracture|Nondisplaced fracture of right radial styloid process, initial encounter for closed fracture +C2846458|T037|AB|S52.514B|ICD10CM|Nondisp fx of r radial styloid pro, init for opn fx type I/2|Nondisp fx of r radial styloid pro, init for opn fx type I/2 +C2846459|T037|AB|S52.514C|ICD10CM|Nondisp fx of r radial styloid pro, 7thC|Nondisp fx of r radial styloid pro, 7thC +C2846460|T037|AB|S52.514D|ICD10CM|Nondisp fx of r radial styloid pro, 7thD|Nondisp fx of r radial styloid pro, 7thD +C2846461|T037|AB|S52.514E|ICD10CM|Nondisp fx of r radial styloid pro, 7thE|Nondisp fx of r radial styloid pro, 7thE +C2846462|T037|AB|S52.514F|ICD10CM|Nondisp fx of r radial styloid pro, 7thF|Nondisp fx of r radial styloid pro, 7thF +C2846463|T037|AB|S52.514G|ICD10CM|Nondisp fx of r radial styloid pro, 7thG|Nondisp fx of r radial styloid pro, 7thG +C2846464|T037|AB|S52.514H|ICD10CM|Nondisp fx of r radial styloid pro, 7thH|Nondisp fx of r radial styloid pro, 7thH +C2846465|T037|AB|S52.514J|ICD10CM|Nondisp fx of r radial styloid pro, 7thJ|Nondisp fx of r radial styloid pro, 7thJ +C2846466|T037|AB|S52.514K|ICD10CM|Nondisp fx of r radial styloid pro, 7thK|Nondisp fx of r radial styloid pro, 7thK +C2846467|T037|AB|S52.514M|ICD10CM|Nondisp fx of r radial styloid pro, 7thM|Nondisp fx of r radial styloid pro, 7thM +C2846468|T037|AB|S52.514N|ICD10CM|Nondisp fx of r radial styloid pro, 7thN|Nondisp fx of r radial styloid pro, 7thN +C2846469|T037|AB|S52.514P|ICD10CM|Nondisp fx of r radial styloid pro, 7thP|Nondisp fx of r radial styloid pro, 7thP +C2846470|T037|AB|S52.514Q|ICD10CM|Nondisp fx of r radial styloid pro, 7thQ|Nondisp fx of r radial styloid pro, 7thQ +C2846471|T037|AB|S52.514R|ICD10CM|Nondisp fx of r radial styloid pro, 7thR|Nondisp fx of r radial styloid pro, 7thR +C2846472|T037|AB|S52.514S|ICD10CM|Nondisp fx of right radial styloid process, sequela|Nondisp fx of right radial styloid process, sequela +C2846472|T037|PT|S52.514S|ICD10CM|Nondisplaced fracture of right radial styloid process, sequela|Nondisplaced fracture of right radial styloid process, sequela +C2846473|T037|AB|S52.515|ICD10CM|Nondisplaced fracture of left radial styloid process|Nondisplaced fracture of left radial styloid process +C2846473|T037|HT|S52.515|ICD10CM|Nondisplaced fracture of left radial styloid process|Nondisplaced fracture of left radial styloid process +C2846474|T037|AB|S52.515A|ICD10CM|Nondisp fx of left radial styloid process, init for clos fx|Nondisp fx of left radial styloid process, init for clos fx +C2846474|T037|PT|S52.515A|ICD10CM|Nondisplaced fracture of left radial styloid process, initial encounter for closed fracture|Nondisplaced fracture of left radial styloid process, initial encounter for closed fracture +C2846475|T037|AB|S52.515B|ICD10CM|Nondisp fx of l radial styloid pro, init for opn fx type I/2|Nondisp fx of l radial styloid pro, init for opn fx type I/2 +C2846476|T037|AB|S52.515C|ICD10CM|Nondisp fx of l radial styloid pro, 7thC|Nondisp fx of l radial styloid pro, 7thC +C2846477|T037|AB|S52.515D|ICD10CM|Nondisp fx of l radial styloid pro, 7thD|Nondisp fx of l radial styloid pro, 7thD +C2846478|T037|AB|S52.515E|ICD10CM|Nondisp fx of l radial styloid pro, 7thE|Nondisp fx of l radial styloid pro, 7thE +C2846479|T037|AB|S52.515F|ICD10CM|Nondisp fx of l radial styloid pro, 7thF|Nondisp fx of l radial styloid pro, 7thF +C2846480|T037|AB|S52.515G|ICD10CM|Nondisp fx of l radial styloid pro, 7thG|Nondisp fx of l radial styloid pro, 7thG +C2846481|T037|AB|S52.515H|ICD10CM|Nondisp fx of l radial styloid pro, 7thH|Nondisp fx of l radial styloid pro, 7thH +C2846482|T037|AB|S52.515J|ICD10CM|Nondisp fx of l radial styloid pro, 7thJ|Nondisp fx of l radial styloid pro, 7thJ +C2846483|T037|AB|S52.515K|ICD10CM|Nondisp fx of l radial styloid pro, 7thK|Nondisp fx of l radial styloid pro, 7thK +C2846484|T037|AB|S52.515M|ICD10CM|Nondisp fx of l radial styloid pro, 7thM|Nondisp fx of l radial styloid pro, 7thM +C2846485|T037|AB|S52.515N|ICD10CM|Nondisp fx of l radial styloid pro, 7thN|Nondisp fx of l radial styloid pro, 7thN +C2846486|T037|AB|S52.515P|ICD10CM|Nondisp fx of l radial styloid pro, 7thP|Nondisp fx of l radial styloid pro, 7thP +C2846487|T037|AB|S52.515Q|ICD10CM|Nondisp fx of l radial styloid pro, 7thQ|Nondisp fx of l radial styloid pro, 7thQ +C2846488|T037|AB|S52.515R|ICD10CM|Nondisp fx of l radial styloid pro, 7thR|Nondisp fx of l radial styloid pro, 7thR +C2846489|T037|AB|S52.515S|ICD10CM|Nondisp fx of left radial styloid process, sequela|Nondisp fx of left radial styloid process, sequela +C2846489|T037|PT|S52.515S|ICD10CM|Nondisplaced fracture of left radial styloid process, sequela|Nondisplaced fracture of left radial styloid process, sequela +C2846490|T037|AB|S52.516|ICD10CM|Nondisplaced fracture of unspecified radial styloid process|Nondisplaced fracture of unspecified radial styloid process +C2846490|T037|HT|S52.516|ICD10CM|Nondisplaced fracture of unspecified radial styloid process|Nondisplaced fracture of unspecified radial styloid process +C2846491|T037|AB|S52.516A|ICD10CM|Nondisp fx of unsp radial styloid process, init for clos fx|Nondisp fx of unsp radial styloid process, init for clos fx +C2846491|T037|PT|S52.516A|ICD10CM|Nondisplaced fracture of unspecified radial styloid process, initial encounter for closed fracture|Nondisplaced fracture of unspecified radial styloid process, initial encounter for closed fracture +C2846492|T037|AB|S52.516B|ICD10CM|Nondisp fx of unsp radial styloid pro, 7thB|Nondisp fx of unsp radial styloid pro, 7thB +C2846493|T037|AB|S52.516C|ICD10CM|Nondisp fx of unsp radial styloid pro, 7thC|Nondisp fx of unsp radial styloid pro, 7thC +C2846494|T037|AB|S52.516D|ICD10CM|Nondisp fx of unsp radial styloid pro, 7thD|Nondisp fx of unsp radial styloid pro, 7thD +C2846495|T037|AB|S52.516E|ICD10CM|Nondisp fx of unsp radial styloid pro, 7thE|Nondisp fx of unsp radial styloid pro, 7thE +C2846496|T037|AB|S52.516F|ICD10CM|Nondisp fx of unsp radial styloid pro, 7thF|Nondisp fx of unsp radial styloid pro, 7thF +C2846497|T037|AB|S52.516G|ICD10CM|Nondisp fx of unsp radial styloid pro, 7thG|Nondisp fx of unsp radial styloid pro, 7thG +C2846498|T037|AB|S52.516H|ICD10CM|Nondisp fx of unsp radial styloid pro, 7thH|Nondisp fx of unsp radial styloid pro, 7thH +C2846499|T037|AB|S52.516J|ICD10CM|Nondisp fx of unsp radial styloid pro, 7thJ|Nondisp fx of unsp radial styloid pro, 7thJ +C2846500|T037|AB|S52.516K|ICD10CM|Nondisp fx of unsp radial styloid pro, 7thK|Nondisp fx of unsp radial styloid pro, 7thK +C2846501|T037|AB|S52.516M|ICD10CM|Nondisp fx of unsp radial styloid pro, 7thM|Nondisp fx of unsp radial styloid pro, 7thM +C2846502|T037|AB|S52.516N|ICD10CM|Nondisp fx of unsp radial styloid pro, 7thN|Nondisp fx of unsp radial styloid pro, 7thN +C2846503|T037|AB|S52.516P|ICD10CM|Nondisp fx of unsp radial styloid pro, 7thP|Nondisp fx of unsp radial styloid pro, 7thP +C2846504|T037|AB|S52.516Q|ICD10CM|Nondisp fx of unsp radial styloid pro, 7thQ|Nondisp fx of unsp radial styloid pro, 7thQ +C2846505|T037|AB|S52.516R|ICD10CM|Nondisp fx of unsp radial styloid pro, 7thR|Nondisp fx of unsp radial styloid pro, 7thR +C2846506|T037|AB|S52.516S|ICD10CM|Nondisp fx of unspecified radial styloid process, sequela|Nondisp fx of unspecified radial styloid process, sequela +C2846506|T037|PT|S52.516S|ICD10CM|Nondisplaced fracture of unspecified radial styloid process, sequela|Nondisplaced fracture of unspecified radial styloid process, sequela +C2846507|T037|AB|S52.52|ICD10CM|Torus fracture of lower end of radius|Torus fracture of lower end of radius +C2846507|T037|HT|S52.52|ICD10CM|Torus fracture of lower end of radius|Torus fracture of lower end of radius +C2846508|T037|AB|S52.521|ICD10CM|Torus fracture of lower end of right radius|Torus fracture of lower end of right radius +C2846508|T037|HT|S52.521|ICD10CM|Torus fracture of lower end of right radius|Torus fracture of lower end of right radius +C2846509|T037|AB|S52.521A|ICD10CM|Torus fracture of lower end of right radius, init|Torus fracture of lower end of right radius, init +C2846509|T037|PT|S52.521A|ICD10CM|Torus fracture of lower end of right radius, initial encounter for closed fracture|Torus fracture of lower end of right radius, initial encounter for closed fracture +C2846510|T037|PT|S52.521D|ICD10CM|Torus fracture of lower end of right radius, subsequent encounter for fracture with routine healing|Torus fracture of lower end of right radius, subsequent encounter for fracture with routine healing +C2846510|T037|AB|S52.521D|ICD10CM|Torus fx lower end of r radius, subs for fx w routn heal|Torus fx lower end of r radius, subs for fx w routn heal +C2846511|T037|PT|S52.521G|ICD10CM|Torus fracture of lower end of right radius, subsequent encounter for fracture with delayed healing|Torus fracture of lower end of right radius, subsequent encounter for fracture with delayed healing +C2846511|T037|AB|S52.521G|ICD10CM|Torus fx lower end of r radius, subs for fx w delay heal|Torus fx lower end of r radius, subs for fx w delay heal +C2846512|T037|PT|S52.521K|ICD10CM|Torus fracture of lower end of right radius, subsequent encounter for fracture with nonunion|Torus fracture of lower end of right radius, subsequent encounter for fracture with nonunion +C2846512|T037|AB|S52.521K|ICD10CM|Torus fx lower end of r radius, subs for fx w nonunion|Torus fx lower end of r radius, subs for fx w nonunion +C2846513|T037|PT|S52.521P|ICD10CM|Torus fracture of lower end of right radius, subsequent encounter for fracture with malunion|Torus fracture of lower end of right radius, subsequent encounter for fracture with malunion +C2846513|T037|AB|S52.521P|ICD10CM|Torus fx lower end of r radius, subs for fx w malunion|Torus fx lower end of r radius, subs for fx w malunion +C2846514|T037|AB|S52.521S|ICD10CM|Torus fracture of lower end of right radius, sequela|Torus fracture of lower end of right radius, sequela +C2846514|T037|PT|S52.521S|ICD10CM|Torus fracture of lower end of right radius, sequela|Torus fracture of lower end of right radius, sequela +C2846515|T037|AB|S52.522|ICD10CM|Torus fracture of lower end of left radius|Torus fracture of lower end of left radius +C2846515|T037|HT|S52.522|ICD10CM|Torus fracture of lower end of left radius|Torus fracture of lower end of left radius +C2846516|T037|AB|S52.522A|ICD10CM|Torus fracture of lower end of left radius, init for clos fx|Torus fracture of lower end of left radius, init for clos fx +C2846516|T037|PT|S52.522A|ICD10CM|Torus fracture of lower end of left radius, initial encounter for closed fracture|Torus fracture of lower end of left radius, initial encounter for closed fracture +C2846517|T037|PT|S52.522D|ICD10CM|Torus fracture of lower end of left radius, subsequent encounter for fracture with routine healing|Torus fracture of lower end of left radius, subsequent encounter for fracture with routine healing +C2846517|T037|AB|S52.522D|ICD10CM|Torus fx lower end of left radius, subs for fx w routn heal|Torus fx lower end of left radius, subs for fx w routn heal +C2846518|T037|PT|S52.522G|ICD10CM|Torus fracture of lower end of left radius, subsequent encounter for fracture with delayed healing|Torus fracture of lower end of left radius, subsequent encounter for fracture with delayed healing +C2846518|T037|AB|S52.522G|ICD10CM|Torus fx lower end of left radius, subs for fx w delay heal|Torus fx lower end of left radius, subs for fx w delay heal +C2846519|T037|PT|S52.522K|ICD10CM|Torus fracture of lower end of left radius, subsequent encounter for fracture with nonunion|Torus fracture of lower end of left radius, subsequent encounter for fracture with nonunion +C2846519|T037|AB|S52.522K|ICD10CM|Torus fx lower end of left radius, subs for fx w nonunion|Torus fx lower end of left radius, subs for fx w nonunion +C2846520|T037|PT|S52.522P|ICD10CM|Torus fracture of lower end of left radius, subsequent encounter for fracture with malunion|Torus fracture of lower end of left radius, subsequent encounter for fracture with malunion +C2846520|T037|AB|S52.522P|ICD10CM|Torus fx lower end of left radius, subs for fx w malunion|Torus fx lower end of left radius, subs for fx w malunion +C2846521|T037|AB|S52.522S|ICD10CM|Torus fracture of lower end of left radius, sequela|Torus fracture of lower end of left radius, sequela +C2846521|T037|PT|S52.522S|ICD10CM|Torus fracture of lower end of left radius, sequela|Torus fracture of lower end of left radius, sequela +C2846522|T037|AB|S52.529|ICD10CM|Torus fracture of lower end of unspecified radius|Torus fracture of lower end of unspecified radius +C2846522|T037|HT|S52.529|ICD10CM|Torus fracture of lower end of unspecified radius|Torus fracture of lower end of unspecified radius +C2846523|T037|AB|S52.529A|ICD10CM|Torus fracture of lower end of unsp radius, init for clos fx|Torus fracture of lower end of unsp radius, init for clos fx +C2846523|T037|PT|S52.529A|ICD10CM|Torus fracture of lower end of unspecified radius, initial encounter for closed fracture|Torus fracture of lower end of unspecified radius, initial encounter for closed fracture +C2846524|T037|AB|S52.529D|ICD10CM|Torus fx lower end of unsp radius, subs for fx w routn heal|Torus fx lower end of unsp radius, subs for fx w routn heal +C2846525|T037|AB|S52.529G|ICD10CM|Torus fx lower end of unsp radius, subs for fx w delay heal|Torus fx lower end of unsp radius, subs for fx w delay heal +C2846526|T037|PT|S52.529K|ICD10CM|Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with nonunion|Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with nonunion +C2846526|T037|AB|S52.529K|ICD10CM|Torus fx lower end of unsp radius, subs for fx w nonunion|Torus fx lower end of unsp radius, subs for fx w nonunion +C2846527|T037|PT|S52.529P|ICD10CM|Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with malunion|Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with malunion +C2846527|T037|AB|S52.529P|ICD10CM|Torus fx lower end of unsp radius, subs for fx w malunion|Torus fx lower end of unsp radius, subs for fx w malunion +C2846528|T037|AB|S52.529S|ICD10CM|Torus fracture of lower end of unspecified radius, sequela|Torus fracture of lower end of unspecified radius, sequela +C2846528|T037|PT|S52.529S|ICD10CM|Torus fracture of lower end of unspecified radius, sequela|Torus fracture of lower end of unspecified radius, sequela +C0009353|T037|HT|S52.53|ICD10CM|Colles' fracture|Colles' fracture +C0009353|T037|AB|S52.53|ICD10CM|Colles' fracture|Colles' fracture +C2846529|T037|HT|S52.531|ICD10CM|Colles' fracture of right radius|Colles' fracture of right radius +C2846529|T037|AB|S52.531|ICD10CM|Colles' fracture of right radius|Colles' fracture of right radius +C2846530|T037|AB|S52.531A|ICD10CM|Colles' fracture of right radius, init for clos fx|Colles' fracture of right radius, init for clos fx +C2846530|T037|PT|S52.531A|ICD10CM|Colles' fracture of right radius, initial encounter for closed fracture|Colles' fracture of right radius, initial encounter for closed fracture +C2846531|T037|AB|S52.531B|ICD10CM|Colles' fracture of right radius, init for opn fx type I/2|Colles' fracture of right radius, init for opn fx type I/2 +C2846531|T037|PT|S52.531B|ICD10CM|Colles' fracture of right radius, initial encounter for open fracture type I or II|Colles' fracture of right radius, initial encounter for open fracture type I or II +C2846532|T037|AB|S52.531C|ICD10CM|Colles' fracture of r radius, init for opn fx type 3A/B/C|Colles' fracture of r radius, init for opn fx type 3A/B/C +C2846532|T037|PT|S52.531C|ICD10CM|Colles' fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC|Colles' fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2846533|T037|AB|S52.531D|ICD10CM|Colles' fracture of r radius, subs for clos fx w routn heal|Colles' fracture of r radius, subs for clos fx w routn heal +C2846533|T037|PT|S52.531D|ICD10CM|Colles' fracture of right radius, subsequent encounter for closed fracture with routine healing|Colles' fracture of right radius, subsequent encounter for closed fracture with routine healing +C2846534|T037|AB|S52.531E|ICD10CM|Colles' fx r radius, subs for opn fx type I/2 w routn heal|Colles' fx r radius, subs for opn fx type I/2 w routn heal +C2846535|T037|AB|S52.531F|ICD10CM|Colles' fx r rad, subs for opn fx type 3A/B/C w routn heal|Colles' fx r rad, subs for opn fx type 3A/B/C w routn heal +C2846536|T037|AB|S52.531G|ICD10CM|Colles' fracture of r radius, subs for clos fx w delay heal|Colles' fracture of r radius, subs for clos fx w delay heal +C2846536|T037|PT|S52.531G|ICD10CM|Colles' fracture of right radius, subsequent encounter for closed fracture with delayed healing|Colles' fracture of right radius, subsequent encounter for closed fracture with delayed healing +C2846537|T037|AB|S52.531H|ICD10CM|Colles' fx r radius, subs for opn fx type I/2 w delay heal|Colles' fx r radius, subs for opn fx type I/2 w delay heal +C2846538|T037|AB|S52.531J|ICD10CM|Colles' fx r rad, subs for opn fx type 3A/B/C w delay heal|Colles' fx r rad, subs for opn fx type 3A/B/C w delay heal +C2846539|T037|AB|S52.531K|ICD10CM|Colles' fracture of r radius, subs for clos fx w nonunion|Colles' fracture of r radius, subs for clos fx w nonunion +C2846539|T037|PT|S52.531K|ICD10CM|Colles' fracture of right radius, subsequent encounter for closed fracture with nonunion|Colles' fracture of right radius, subsequent encounter for closed fracture with nonunion +C2846540|T037|PT|S52.531M|ICD10CM|Colles' fracture of right radius, subsequent encounter for open fracture type I or II with nonunion|Colles' fracture of right radius, subsequent encounter for open fracture type I or II with nonunion +C2846540|T037|AB|S52.531M|ICD10CM|Colles' fx r radius, subs for opn fx type I/2 w nonunion|Colles' fx r radius, subs for opn fx type I/2 w nonunion +C2846541|T037|AB|S52.531N|ICD10CM|Colles' fx r radius, subs for opn fx type 3A/B/C w nonunion|Colles' fx r radius, subs for opn fx type 3A/B/C w nonunion +C2846542|T037|AB|S52.531P|ICD10CM|Colles' fracture of r radius, subs for clos fx w malunion|Colles' fracture of r radius, subs for clos fx w malunion +C2846542|T037|PT|S52.531P|ICD10CM|Colles' fracture of right radius, subsequent encounter for closed fracture with malunion|Colles' fracture of right radius, subsequent encounter for closed fracture with malunion +C2846543|T037|PT|S52.531Q|ICD10CM|Colles' fracture of right radius, subsequent encounter for open fracture type I or II with malunion|Colles' fracture of right radius, subsequent encounter for open fracture type I or II with malunion +C2846543|T037|AB|S52.531Q|ICD10CM|Colles' fx r radius, subs for opn fx type I/2 w malunion|Colles' fx r radius, subs for opn fx type I/2 w malunion +C2846544|T037|AB|S52.531R|ICD10CM|Colles' fx r radius, subs for opn fx type 3A/B/C w malunion|Colles' fx r radius, subs for opn fx type 3A/B/C w malunion +C2846545|T037|PT|S52.531S|ICD10CM|Colles' fracture of right radius, sequela|Colles' fracture of right radius, sequela +C2846545|T037|AB|S52.531S|ICD10CM|Colles' fracture of right radius, sequela|Colles' fracture of right radius, sequela +C2846546|T037|HT|S52.532|ICD10CM|Colles' fracture of left radius|Colles' fracture of left radius +C2846546|T037|AB|S52.532|ICD10CM|Colles' fracture of left radius|Colles' fracture of left radius +C2846547|T037|AB|S52.532A|ICD10CM|Colles' fracture of left radius, init for clos fx|Colles' fracture of left radius, init for clos fx +C2846547|T037|PT|S52.532A|ICD10CM|Colles' fracture of left radius, initial encounter for closed fracture|Colles' fracture of left radius, initial encounter for closed fracture +C2846548|T037|AB|S52.532B|ICD10CM|Colles' fracture of left radius, init for opn fx type I/2|Colles' fracture of left radius, init for opn fx type I/2 +C2846548|T037|PT|S52.532B|ICD10CM|Colles' fracture of left radius, initial encounter for open fracture type I or II|Colles' fracture of left radius, initial encounter for open fracture type I or II +C2846549|T037|AB|S52.532C|ICD10CM|Colles' fracture of left radius, init for opn fx type 3A/B/C|Colles' fracture of left radius, init for opn fx type 3A/B/C +C2846549|T037|PT|S52.532C|ICD10CM|Colles' fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC|Colles' fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2846550|T037|PT|S52.532D|ICD10CM|Colles' fracture of left radius, subsequent encounter for closed fracture with routine healing|Colles' fracture of left radius, subsequent encounter for closed fracture with routine healing +C2846550|T037|AB|S52.532D|ICD10CM|Colles' fx left radius, subs for clos fx w routn heal|Colles' fx left radius, subs for clos fx w routn heal +C2846551|T037|AB|S52.532E|ICD10CM|Colles' fx left rad, subs for opn fx type I/2 w routn heal|Colles' fx left rad, subs for opn fx type I/2 w routn heal +C2846552|T037|AB|S52.532F|ICD10CM|Colles' fx l rad, subs for opn fx type 3A/B/C w routn heal|Colles' fx l rad, subs for opn fx type 3A/B/C w routn heal +C2846553|T037|PT|S52.532G|ICD10CM|Colles' fracture of left radius, subsequent encounter for closed fracture with delayed healing|Colles' fracture of left radius, subsequent encounter for closed fracture with delayed healing +C2846553|T037|AB|S52.532G|ICD10CM|Colles' fx left radius, subs for clos fx w delay heal|Colles' fx left radius, subs for clos fx w delay heal +C2846554|T037|AB|S52.532H|ICD10CM|Colles' fx left rad, subs for opn fx type I/2 w delay heal|Colles' fx left rad, subs for opn fx type I/2 w delay heal +C2846555|T037|AB|S52.532J|ICD10CM|Colles' fx l rad, subs for opn fx type 3A/B/C w delay heal|Colles' fx l rad, subs for opn fx type 3A/B/C w delay heal +C2846556|T037|AB|S52.532K|ICD10CM|Colles' fracture of left radius, subs for clos fx w nonunion|Colles' fracture of left radius, subs for clos fx w nonunion +C2846556|T037|PT|S52.532K|ICD10CM|Colles' fracture of left radius, subsequent encounter for closed fracture with nonunion|Colles' fracture of left radius, subsequent encounter for closed fracture with nonunion +C2846557|T037|PT|S52.532M|ICD10CM|Colles' fracture of left radius, subsequent encounter for open fracture type I or II with nonunion|Colles' fracture of left radius, subsequent encounter for open fracture type I or II with nonunion +C2846557|T037|AB|S52.532M|ICD10CM|Colles' fx left radius, subs for opn fx type I/2 w nonunion|Colles' fx left radius, subs for opn fx type I/2 w nonunion +C2846558|T037|AB|S52.532N|ICD10CM|Colles' fx left rad, subs for opn fx type 3A/B/C w nonunion|Colles' fx left rad, subs for opn fx type 3A/B/C w nonunion +C2846559|T037|AB|S52.532P|ICD10CM|Colles' fracture of left radius, subs for clos fx w malunion|Colles' fracture of left radius, subs for clos fx w malunion +C2846559|T037|PT|S52.532P|ICD10CM|Colles' fracture of left radius, subsequent encounter for closed fracture with malunion|Colles' fracture of left radius, subsequent encounter for closed fracture with malunion +C2846560|T037|PT|S52.532Q|ICD10CM|Colles' fracture of left radius, subsequent encounter for open fracture type I or II with malunion|Colles' fracture of left radius, subsequent encounter for open fracture type I or II with malunion +C2846560|T037|AB|S52.532Q|ICD10CM|Colles' fx left radius, subs for opn fx type I/2 w malunion|Colles' fx left radius, subs for opn fx type I/2 w malunion +C2846561|T037|AB|S52.532R|ICD10CM|Colles' fx left rad, subs for opn fx type 3A/B/C w malunion|Colles' fx left rad, subs for opn fx type 3A/B/C w malunion +C2846562|T037|PT|S52.532S|ICD10CM|Colles' fracture of left radius, sequela|Colles' fracture of left radius, sequela +C2846562|T037|AB|S52.532S|ICD10CM|Colles' fracture of left radius, sequela|Colles' fracture of left radius, sequela +C2846563|T037|AB|S52.539|ICD10CM|Colles' fracture of unspecified radius|Colles' fracture of unspecified radius +C2846563|T037|HT|S52.539|ICD10CM|Colles' fracture of unspecified radius|Colles' fracture of unspecified radius +C2846564|T037|AB|S52.539A|ICD10CM|Colles' fracture of unsp radius, init for clos fx|Colles' fracture of unsp radius, init for clos fx +C2846564|T037|PT|S52.539A|ICD10CM|Colles' fracture of unspecified radius, initial encounter for closed fracture|Colles' fracture of unspecified radius, initial encounter for closed fracture +C2846565|T037|AB|S52.539B|ICD10CM|Colles' fracture of unsp radius, init for opn fx type I/2|Colles' fracture of unsp radius, init for opn fx type I/2 +C2846565|T037|PT|S52.539B|ICD10CM|Colles' fracture of unspecified radius, initial encounter for open fracture type I or II|Colles' fracture of unspecified radius, initial encounter for open fracture type I or II +C2846566|T037|AB|S52.539C|ICD10CM|Colles' fracture of unsp radius, init for opn fx type 3A/B/C|Colles' fracture of unsp radius, init for opn fx type 3A/B/C +C2846566|T037|PT|S52.539C|ICD10CM|Colles' fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC|Colles' fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2846567|T037|AB|S52.539D|ICD10CM|Colles' fx unsp radius, subs for clos fx w routn heal|Colles' fx unsp radius, subs for clos fx w routn heal +C2846568|T037|AB|S52.539E|ICD10CM|Colles' fx unsp rad, subs for opn fx type I/2 w routn heal|Colles' fx unsp rad, subs for opn fx type I/2 w routn heal +C2846569|T037|AB|S52.539F|ICD10CM|Colles' fx unsp rad, 7thF|Colles' fx unsp rad, 7thF +C2846570|T037|AB|S52.539G|ICD10CM|Colles' fx unsp radius, subs for clos fx w delay heal|Colles' fx unsp radius, subs for clos fx w delay heal +C2846571|T037|AB|S52.539H|ICD10CM|Colles' fx unsp rad, subs for opn fx type I/2 w delay heal|Colles' fx unsp rad, subs for opn fx type I/2 w delay heal +C2846572|T037|AB|S52.539J|ICD10CM|Colles' fx unsp rad, 7thJ|Colles' fx unsp rad, 7thJ +C2846573|T037|AB|S52.539K|ICD10CM|Colles' fracture of unsp radius, subs for clos fx w nonunion|Colles' fracture of unsp radius, subs for clos fx w nonunion +C2846573|T037|PT|S52.539K|ICD10CM|Colles' fracture of unspecified radius, subsequent encounter for closed fracture with nonunion|Colles' fracture of unspecified radius, subsequent encounter for closed fracture with nonunion +C2846574|T037|AB|S52.539M|ICD10CM|Colles' fx unsp radius, subs for opn fx type I/2 w nonunion|Colles' fx unsp radius, subs for opn fx type I/2 w nonunion +C2846575|T037|AB|S52.539N|ICD10CM|Colles' fx unsp rad, subs for opn fx type 3A/B/C w nonunion|Colles' fx unsp rad, subs for opn fx type 3A/B/C w nonunion +C2846576|T037|AB|S52.539P|ICD10CM|Colles' fracture of unsp radius, subs for clos fx w malunion|Colles' fracture of unsp radius, subs for clos fx w malunion +C2846576|T037|PT|S52.539P|ICD10CM|Colles' fracture of unspecified radius, subsequent encounter for closed fracture with malunion|Colles' fracture of unspecified radius, subsequent encounter for closed fracture with malunion +C2846577|T037|AB|S52.539Q|ICD10CM|Colles' fx unsp radius, subs for opn fx type I/2 w malunion|Colles' fx unsp radius, subs for opn fx type I/2 w malunion +C2846578|T037|AB|S52.539R|ICD10CM|Colles' fx unsp rad, subs for opn fx type 3A/B/C w malunion|Colles' fx unsp rad, subs for opn fx type 3A/B/C w malunion +C2846579|T037|PT|S52.539S|ICD10CM|Colles' fracture of unspecified radius, sequela|Colles' fracture of unspecified radius, sequela +C2846579|T037|AB|S52.539S|ICD10CM|Colles' fracture of unspecified radius, sequela|Colles' fracture of unspecified radius, sequela +C0347795|T037|HT|S52.54|ICD10CM|Smith's fracture|Smith's fracture +C0347795|T037|AB|S52.54|ICD10CM|Smith's fracture|Smith's fracture +C2846580|T037|AB|S52.541|ICD10CM|Smith's fracture of right radius|Smith's fracture of right radius +C2846580|T037|HT|S52.541|ICD10CM|Smith's fracture of right radius|Smith's fracture of right radius +C2846581|T037|AB|S52.541A|ICD10CM|Smith's fracture of right radius, init for clos fx|Smith's fracture of right radius, init for clos fx +C2846581|T037|PT|S52.541A|ICD10CM|Smith's fracture of right radius, initial encounter for closed fracture|Smith's fracture of right radius, initial encounter for closed fracture +C2846582|T037|AB|S52.541B|ICD10CM|Smith's fracture of right radius, init for opn fx type I/2|Smith's fracture of right radius, init for opn fx type I/2 +C2846582|T037|PT|S52.541B|ICD10CM|Smith's fracture of right radius, initial encounter for open fracture type I or II|Smith's fracture of right radius, initial encounter for open fracture type I or II +C2846583|T037|AB|S52.541C|ICD10CM|Smith's fracture of r radius, init for opn fx type 3A/B/C|Smith's fracture of r radius, init for opn fx type 3A/B/C +C2846583|T037|PT|S52.541C|ICD10CM|Smith's fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC|Smith's fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2846584|T037|AB|S52.541D|ICD10CM|Smith's fracture of r radius, subs for clos fx w routn heal|Smith's fracture of r radius, subs for clos fx w routn heal +C2846584|T037|PT|S52.541D|ICD10CM|Smith's fracture of right radius, subsequent encounter for closed fracture with routine healing|Smith's fracture of right radius, subsequent encounter for closed fracture with routine healing +C2846585|T037|AB|S52.541E|ICD10CM|Smith's fx r radius, subs for opn fx type I/2 w routn heal|Smith's fx r radius, subs for opn fx type I/2 w routn heal +C2846586|T037|AB|S52.541F|ICD10CM|Smith's fx r rad, subs for opn fx type 3A/B/C w routn heal|Smith's fx r rad, subs for opn fx type 3A/B/C w routn heal +C2846587|T037|AB|S52.541G|ICD10CM|Smith's fracture of r radius, subs for clos fx w delay heal|Smith's fracture of r radius, subs for clos fx w delay heal +C2846587|T037|PT|S52.541G|ICD10CM|Smith's fracture of right radius, subsequent encounter for closed fracture with delayed healing|Smith's fracture of right radius, subsequent encounter for closed fracture with delayed healing +C2846588|T037|AB|S52.541H|ICD10CM|Smith's fx r radius, subs for opn fx type I/2 w delay heal|Smith's fx r radius, subs for opn fx type I/2 w delay heal +C2846589|T037|AB|S52.541J|ICD10CM|Smith's fx r rad, subs for opn fx type 3A/B/C w delay heal|Smith's fx r rad, subs for opn fx type 3A/B/C w delay heal +C2846590|T037|AB|S52.541K|ICD10CM|Smith's fracture of r radius, subs for clos fx w nonunion|Smith's fracture of r radius, subs for clos fx w nonunion +C2846590|T037|PT|S52.541K|ICD10CM|Smith's fracture of right radius, subsequent encounter for closed fracture with nonunion|Smith's fracture of right radius, subsequent encounter for closed fracture with nonunion +C2846591|T037|PT|S52.541M|ICD10CM|Smith's fracture of right radius, subsequent encounter for open fracture type I or II with nonunion|Smith's fracture of right radius, subsequent encounter for open fracture type I or II with nonunion +C2846591|T037|AB|S52.541M|ICD10CM|Smith's fx r radius, subs for opn fx type I/2 w nonunion|Smith's fx r radius, subs for opn fx type I/2 w nonunion +C2846592|T037|AB|S52.541N|ICD10CM|Smith's fx r radius, subs for opn fx type 3A/B/C w nonunion|Smith's fx r radius, subs for opn fx type 3A/B/C w nonunion +C2846593|T037|AB|S52.541P|ICD10CM|Smith's fracture of r radius, subs for clos fx w malunion|Smith's fracture of r radius, subs for clos fx w malunion +C2846593|T037|PT|S52.541P|ICD10CM|Smith's fracture of right radius, subsequent encounter for closed fracture with malunion|Smith's fracture of right radius, subsequent encounter for closed fracture with malunion +C2846594|T037|PT|S52.541Q|ICD10CM|Smith's fracture of right radius, subsequent encounter for open fracture type I or II with malunion|Smith's fracture of right radius, subsequent encounter for open fracture type I or II with malunion +C2846594|T037|AB|S52.541Q|ICD10CM|Smith's fx r radius, subs for opn fx type I/2 w malunion|Smith's fx r radius, subs for opn fx type I/2 w malunion +C2846595|T037|AB|S52.541R|ICD10CM|Smith's fx r radius, subs for opn fx type 3A/B/C w malunion|Smith's fx r radius, subs for opn fx type 3A/B/C w malunion +C2846596|T037|PT|S52.541S|ICD10CM|Smith's fracture of right radius, sequela|Smith's fracture of right radius, sequela +C2846596|T037|AB|S52.541S|ICD10CM|Smith's fracture of right radius, sequela|Smith's fracture of right radius, sequela +C2846597|T037|AB|S52.542|ICD10CM|Smith's fracture of left radius|Smith's fracture of left radius +C2846597|T037|HT|S52.542|ICD10CM|Smith's fracture of left radius|Smith's fracture of left radius +C2846598|T037|AB|S52.542A|ICD10CM|Smith's fracture of left radius, init for clos fx|Smith's fracture of left radius, init for clos fx +C2846598|T037|PT|S52.542A|ICD10CM|Smith's fracture of left radius, initial encounter for closed fracture|Smith's fracture of left radius, initial encounter for closed fracture +C2846599|T037|AB|S52.542B|ICD10CM|Smith's fracture of left radius, init for opn fx type I/2|Smith's fracture of left radius, init for opn fx type I/2 +C2846599|T037|PT|S52.542B|ICD10CM|Smith's fracture of left radius, initial encounter for open fracture type I or II|Smith's fracture of left radius, initial encounter for open fracture type I or II +C2846600|T037|AB|S52.542C|ICD10CM|Smith's fracture of left radius, init for opn fx type 3A/B/C|Smith's fracture of left radius, init for opn fx type 3A/B/C +C2846600|T037|PT|S52.542C|ICD10CM|Smith's fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC|Smith's fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2846601|T037|PT|S52.542D|ICD10CM|Smith's fracture of left radius, subsequent encounter for closed fracture with routine healing|Smith's fracture of left radius, subsequent encounter for closed fracture with routine healing +C2846601|T037|AB|S52.542D|ICD10CM|Smith's fx left radius, subs for clos fx w routn heal|Smith's fx left radius, subs for clos fx w routn heal +C2846602|T037|AB|S52.542E|ICD10CM|Smith's fx left rad, subs for opn fx type I/2 w routn heal|Smith's fx left rad, subs for opn fx type I/2 w routn heal +C2846603|T037|AB|S52.542F|ICD10CM|Smith's fx l rad, subs for opn fx type 3A/B/C w routn heal|Smith's fx l rad, subs for opn fx type 3A/B/C w routn heal +C2846604|T037|PT|S52.542G|ICD10CM|Smith's fracture of left radius, subsequent encounter for closed fracture with delayed healing|Smith's fracture of left radius, subsequent encounter for closed fracture with delayed healing +C2846604|T037|AB|S52.542G|ICD10CM|Smith's fx left radius, subs for clos fx w delay heal|Smith's fx left radius, subs for clos fx w delay heal +C2846605|T037|AB|S52.542H|ICD10CM|Smith's fx left rad, subs for opn fx type I/2 w delay heal|Smith's fx left rad, subs for opn fx type I/2 w delay heal +C2846606|T037|AB|S52.542J|ICD10CM|Smith's fx l rad, subs for opn fx type 3A/B/C w delay heal|Smith's fx l rad, subs for opn fx type 3A/B/C w delay heal +C2846607|T037|AB|S52.542K|ICD10CM|Smith's fracture of left radius, subs for clos fx w nonunion|Smith's fracture of left radius, subs for clos fx w nonunion +C2846607|T037|PT|S52.542K|ICD10CM|Smith's fracture of left radius, subsequent encounter for closed fracture with nonunion|Smith's fracture of left radius, subsequent encounter for closed fracture with nonunion +C2846608|T037|PT|S52.542M|ICD10CM|Smith's fracture of left radius, subsequent encounter for open fracture type I or II with nonunion|Smith's fracture of left radius, subsequent encounter for open fracture type I or II with nonunion +C2846608|T037|AB|S52.542M|ICD10CM|Smith's fx left radius, subs for opn fx type I/2 w nonunion|Smith's fx left radius, subs for opn fx type I/2 w nonunion +C2846609|T037|AB|S52.542N|ICD10CM|Smith's fx left rad, subs for opn fx type 3A/B/C w nonunion|Smith's fx left rad, subs for opn fx type 3A/B/C w nonunion +C2846610|T037|AB|S52.542P|ICD10CM|Smith's fracture of left radius, subs for clos fx w malunion|Smith's fracture of left radius, subs for clos fx w malunion +C2846610|T037|PT|S52.542P|ICD10CM|Smith's fracture of left radius, subsequent encounter for closed fracture with malunion|Smith's fracture of left radius, subsequent encounter for closed fracture with malunion +C2846611|T037|PT|S52.542Q|ICD10CM|Smith's fracture of left radius, subsequent encounter for open fracture type I or II with malunion|Smith's fracture of left radius, subsequent encounter for open fracture type I or II with malunion +C2846611|T037|AB|S52.542Q|ICD10CM|Smith's fx left radius, subs for opn fx type I/2 w malunion|Smith's fx left radius, subs for opn fx type I/2 w malunion +C2846612|T037|AB|S52.542R|ICD10CM|Smith's fx left rad, subs for opn fx type 3A/B/C w malunion|Smith's fx left rad, subs for opn fx type 3A/B/C w malunion +C2846613|T037|PT|S52.542S|ICD10CM|Smith's fracture of left radius, sequela|Smith's fracture of left radius, sequela +C2846613|T037|AB|S52.542S|ICD10CM|Smith's fracture of left radius, sequela|Smith's fracture of left radius, sequela +C2846614|T037|AB|S52.549|ICD10CM|Smith's fracture of unspecified radius|Smith's fracture of unspecified radius +C2846614|T037|HT|S52.549|ICD10CM|Smith's fracture of unspecified radius|Smith's fracture of unspecified radius +C2846615|T037|AB|S52.549A|ICD10CM|Smith's fracture of unsp radius, init for clos fx|Smith's fracture of unsp radius, init for clos fx +C2846615|T037|PT|S52.549A|ICD10CM|Smith's fracture of unspecified radius, initial encounter for closed fracture|Smith's fracture of unspecified radius, initial encounter for closed fracture +C2846616|T037|AB|S52.549B|ICD10CM|Smith's fracture of unsp radius, init for opn fx type I/2|Smith's fracture of unsp radius, init for opn fx type I/2 +C2846616|T037|PT|S52.549B|ICD10CM|Smith's fracture of unspecified radius, initial encounter for open fracture type I or II|Smith's fracture of unspecified radius, initial encounter for open fracture type I or II +C2846617|T037|AB|S52.549C|ICD10CM|Smith's fracture of unsp radius, init for opn fx type 3A/B/C|Smith's fracture of unsp radius, init for opn fx type 3A/B/C +C2846617|T037|PT|S52.549C|ICD10CM|Smith's fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC|Smith's fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2846618|T037|AB|S52.549D|ICD10CM|Smith's fx unsp radius, subs for clos fx w routn heal|Smith's fx unsp radius, subs for clos fx w routn heal +C2846619|T037|AB|S52.549E|ICD10CM|Smith's fx unsp rad, subs for opn fx type I/2 w routn heal|Smith's fx unsp rad, subs for opn fx type I/2 w routn heal +C2846620|T037|AB|S52.549F|ICD10CM|Smith's fx unsp rad, 7thF|Smith's fx unsp rad, 7thF +C2846621|T037|AB|S52.549G|ICD10CM|Smith's fx unsp radius, subs for clos fx w delay heal|Smith's fx unsp radius, subs for clos fx w delay heal +C2846622|T037|AB|S52.549H|ICD10CM|Smith's fx unsp rad, subs for opn fx type I/2 w delay heal|Smith's fx unsp rad, subs for opn fx type I/2 w delay heal +C2846623|T037|AB|S52.549J|ICD10CM|Smith's fx unsp rad, 7thJ|Smith's fx unsp rad, 7thJ +C2846624|T037|AB|S52.549K|ICD10CM|Smith's fracture of unsp radius, subs for clos fx w nonunion|Smith's fracture of unsp radius, subs for clos fx w nonunion +C2846624|T037|PT|S52.549K|ICD10CM|Smith's fracture of unspecified radius, subsequent encounter for closed fracture with nonunion|Smith's fracture of unspecified radius, subsequent encounter for closed fracture with nonunion +C2846625|T037|AB|S52.549M|ICD10CM|Smith's fx unsp radius, subs for opn fx type I/2 w nonunion|Smith's fx unsp radius, subs for opn fx type I/2 w nonunion +C2846626|T037|AB|S52.549N|ICD10CM|Smith's fx unsp rad, subs for opn fx type 3A/B/C w nonunion|Smith's fx unsp rad, subs for opn fx type 3A/B/C w nonunion +C2846627|T037|AB|S52.549P|ICD10CM|Smith's fracture of unsp radius, subs for clos fx w malunion|Smith's fracture of unsp radius, subs for clos fx w malunion +C2846627|T037|PT|S52.549P|ICD10CM|Smith's fracture of unspecified radius, subsequent encounter for closed fracture with malunion|Smith's fracture of unspecified radius, subsequent encounter for closed fracture with malunion +C2846628|T037|AB|S52.549Q|ICD10CM|Smith's fx unsp radius, subs for opn fx type I/2 w malunion|Smith's fx unsp radius, subs for opn fx type I/2 w malunion +C2846629|T037|AB|S52.549R|ICD10CM|Smith's fx unsp rad, subs for opn fx type 3A/B/C w malunion|Smith's fx unsp rad, subs for opn fx type 3A/B/C w malunion +C2846630|T037|PT|S52.549S|ICD10CM|Smith's fracture of unspecified radius, sequela|Smith's fracture of unspecified radius, sequela +C2846630|T037|AB|S52.549S|ICD10CM|Smith's fracture of unspecified radius, sequela|Smith's fracture of unspecified radius, sequela +C2846631|T037|AB|S52.55|ICD10CM|Other extraarticular fracture of lower end of radius|Other extraarticular fracture of lower end of radius +C2846631|T037|HT|S52.55|ICD10CM|Other extraarticular fracture of lower end of radius|Other extraarticular fracture of lower end of radius +C2846632|T037|AB|S52.551|ICD10CM|Other extraarticular fracture of lower end of right radius|Other extraarticular fracture of lower end of right radius +C2846632|T037|HT|S52.551|ICD10CM|Other extraarticular fracture of lower end of right radius|Other extraarticular fracture of lower end of right radius +C2846633|T037|AB|S52.551A|ICD10CM|Oth extrartic fracture of lower end of right radius, init|Oth extrartic fracture of lower end of right radius, init +C2846633|T037|PT|S52.551A|ICD10CM|Other extraarticular fracture of lower end of right radius, initial encounter for closed fracture|Other extraarticular fracture of lower end of right radius, initial encounter for closed fracture +C2846634|T037|AB|S52.551B|ICD10CM|Oth extrartic fx lower end r rad, init for opn fx type I/2|Oth extrartic fx lower end r rad, init for opn fx type I/2 +C2846635|T037|AB|S52.551C|ICD10CM|Oth extrartic fx low end r rad, init for opn fx type 3A/B/C|Oth extrartic fx low end r rad, init for opn fx type 3A/B/C +C2846636|T037|AB|S52.551D|ICD10CM|Oth extrartic fx low end r rad, 7thD|Oth extrartic fx low end r rad, 7thD +C2846637|T037|AB|S52.551E|ICD10CM|Oth extrartic fx low end r rad, 7thE|Oth extrartic fx low end r rad, 7thE +C2846638|T037|AB|S52.551F|ICD10CM|Oth extrartic fx low end r rad, 7thF|Oth extrartic fx low end r rad, 7thF +C2846639|T037|AB|S52.551G|ICD10CM|Oth extrartic fx low end r rad, 7thG|Oth extrartic fx low end r rad, 7thG +C2846640|T037|AB|S52.551H|ICD10CM|Oth extrartic fx low end r rad, 7thH|Oth extrartic fx low end r rad, 7thH +C2846641|T037|AB|S52.551J|ICD10CM|Oth extrartic fx low end r rad, 7thJ|Oth extrartic fx low end r rad, 7thJ +C2846642|T037|AB|S52.551K|ICD10CM|Oth extrartic fx low end r rad, subs for clos fx w nonunion|Oth extrartic fx low end r rad, subs for clos fx w nonunion +C2846643|T037|AB|S52.551M|ICD10CM|Oth extrartic fx low end r rad, 7thM|Oth extrartic fx low end r rad, 7thM +C2846644|T037|AB|S52.551N|ICD10CM|Oth extrartic fx low end r rad, 7thN|Oth extrartic fx low end r rad, 7thN +C2846645|T037|AB|S52.551P|ICD10CM|Oth extrartic fx low end r rad, subs for clos fx w malunion|Oth extrartic fx low end r rad, subs for clos fx w malunion +C2846646|T037|AB|S52.551Q|ICD10CM|Oth extrartic fx low end r rad, 7thQ|Oth extrartic fx low end r rad, 7thQ +C2846647|T037|AB|S52.551R|ICD10CM|Oth extrartic fx low end r rad, 7thR|Oth extrartic fx low end r rad, 7thR +C2846648|T037|AB|S52.551S|ICD10CM|Oth extrartic fracture of lower end of right radius, sequela|Oth extrartic fracture of lower end of right radius, sequela +C2846648|T037|PT|S52.551S|ICD10CM|Other extraarticular fracture of lower end of right radius, sequela|Other extraarticular fracture of lower end of right radius, sequela +C2846649|T037|AB|S52.552|ICD10CM|Other extraarticular fracture of lower end of left radius|Other extraarticular fracture of lower end of left radius +C2846649|T037|HT|S52.552|ICD10CM|Other extraarticular fracture of lower end of left radius|Other extraarticular fracture of lower end of left radius +C2846650|T037|AB|S52.552A|ICD10CM|Oth extrartic fracture of lower end of left radius, init|Oth extrartic fracture of lower end of left radius, init +C2846650|T037|PT|S52.552A|ICD10CM|Other extraarticular fracture of lower end of left radius, initial encounter for closed fracture|Other extraarticular fracture of lower end of left radius, initial encounter for closed fracture +C2846651|T037|AB|S52.552B|ICD10CM|Oth extrartic fx low end left rad, init for opn fx type I/2|Oth extrartic fx low end left rad, init for opn fx type I/2 +C2846652|T037|AB|S52.552C|ICD10CM|Oth extrartic fx low end l rad, init for opn fx type 3A/B/C|Oth extrartic fx low end l rad, init for opn fx type 3A/B/C +C2846653|T037|AB|S52.552D|ICD10CM|Oth extrartic fx low end l rad, 7thD|Oth extrartic fx low end l rad, 7thD +C2846654|T037|AB|S52.552E|ICD10CM|Oth extrartic fx low end l rad, 7thE|Oth extrartic fx low end l rad, 7thE +C2846655|T037|AB|S52.552F|ICD10CM|Oth extrartic fx low end l rad, 7thF|Oth extrartic fx low end l rad, 7thF +C2846656|T037|AB|S52.552G|ICD10CM|Oth extrartic fx low end l rad, 7thG|Oth extrartic fx low end l rad, 7thG +C2846657|T037|AB|S52.552H|ICD10CM|Oth extrartic fx low end l rad, 7thH|Oth extrartic fx low end l rad, 7thH +C2846658|T037|AB|S52.552J|ICD10CM|Oth extrartic fx low end l rad, 7thJ|Oth extrartic fx low end l rad, 7thJ +C2846659|T037|AB|S52.552K|ICD10CM|Oth extrartic fx low end l rad, subs for clos fx w nonunion|Oth extrartic fx low end l rad, subs for clos fx w nonunion +C2846660|T037|AB|S52.552M|ICD10CM|Oth extrartic fx low end l rad, 7thM|Oth extrartic fx low end l rad, 7thM +C2846661|T037|AB|S52.552N|ICD10CM|Oth extrartic fx low end l rad, 7thN|Oth extrartic fx low end l rad, 7thN +C2846662|T037|AB|S52.552P|ICD10CM|Oth extrartic fx low end l rad, subs for clos fx w malunion|Oth extrartic fx low end l rad, subs for clos fx w malunion +C2846663|T037|AB|S52.552Q|ICD10CM|Oth extrartic fx low end l rad, 7thQ|Oth extrartic fx low end l rad, 7thQ +C2846664|T037|AB|S52.552R|ICD10CM|Oth extrartic fx low end l rad, 7thR|Oth extrartic fx low end l rad, 7thR +C2846665|T037|AB|S52.552S|ICD10CM|Oth extrartic fracture of lower end of left radius, sequela|Oth extrartic fracture of lower end of left radius, sequela +C2846665|T037|PT|S52.552S|ICD10CM|Other extraarticular fracture of lower end of left radius, sequela|Other extraarticular fracture of lower end of left radius, sequela +C2846666|T037|AB|S52.559|ICD10CM|Other extraarticular fracture of lower end of unsp radius|Other extraarticular fracture of lower end of unsp radius +C2846666|T037|HT|S52.559|ICD10CM|Other extraarticular fracture of lower end of unspecified radius|Other extraarticular fracture of lower end of unspecified radius +C2846667|T037|AB|S52.559A|ICD10CM|Oth extrartic fracture of lower end of unsp radius, init|Oth extrartic fracture of lower end of unsp radius, init +C2846668|T037|AB|S52.559B|ICD10CM|Oth extrartic fx low end unsp rad, init for opn fx type I/2|Oth extrartic fx low end unsp rad, init for opn fx type I/2 +C2846669|T037|AB|S52.559C|ICD10CM|Oth extrartic fx low end unsp rad, 7thC|Oth extrartic fx low end unsp rad, 7thC +C2846670|T037|AB|S52.559D|ICD10CM|Oth extrartic fx low end unsp rad, 7thD|Oth extrartic fx low end unsp rad, 7thD +C2846671|T037|AB|S52.559E|ICD10CM|Oth extrartic fx low end unsp rad, 7thE|Oth extrartic fx low end unsp rad, 7thE +C2846672|T037|AB|S52.559F|ICD10CM|Oth extrartic fx low end unsp rad, 7thF|Oth extrartic fx low end unsp rad, 7thF +C2846673|T037|AB|S52.559G|ICD10CM|Oth extrartic fx low end unsp rad, 7thG|Oth extrartic fx low end unsp rad, 7thG +C2846674|T037|AB|S52.559H|ICD10CM|Oth extrartic fx low end unsp rad, 7thH|Oth extrartic fx low end unsp rad, 7thH +C2846675|T037|AB|S52.559J|ICD10CM|Oth extrartic fx low end unsp rad, 7thJ|Oth extrartic fx low end unsp rad, 7thJ +C2846676|T037|AB|S52.559K|ICD10CM|Oth extrartic fx low end unsp rad, 7thK|Oth extrartic fx low end unsp rad, 7thK +C2846677|T037|AB|S52.559M|ICD10CM|Oth extrartic fx low end unsp rad, 7thM|Oth extrartic fx low end unsp rad, 7thM +C2846678|T037|AB|S52.559N|ICD10CM|Oth extrartic fx low end unsp rad, 7thN|Oth extrartic fx low end unsp rad, 7thN +C2846679|T037|AB|S52.559P|ICD10CM|Oth extrartic fx low end unsp rad, 7thP|Oth extrartic fx low end unsp rad, 7thP +C2846680|T037|AB|S52.559Q|ICD10CM|Oth extrartic fx low end unsp rad, 7thQ|Oth extrartic fx low end unsp rad, 7thQ +C2846681|T037|AB|S52.559R|ICD10CM|Oth extrartic fx low end unsp rad, 7thR|Oth extrartic fx low end unsp rad, 7thR +C2846682|T037|AB|S52.559S|ICD10CM|Oth extrartic fracture of lower end of unsp radius, sequela|Oth extrartic fracture of lower end of unsp radius, sequela +C2846682|T037|PT|S52.559S|ICD10CM|Other extraarticular fracture of lower end of unspecified radius, sequela|Other extraarticular fracture of lower end of unspecified radius, sequela +C0272646|T037|HT|S52.56|ICD10CM|Barton's fracture|Barton's fracture +C0272646|T037|AB|S52.56|ICD10CM|Barton's fracture|Barton's fracture +C2846683|T037|AB|S52.561|ICD10CM|Barton's fracture of right radius|Barton's fracture of right radius +C2846683|T037|HT|S52.561|ICD10CM|Barton's fracture of right radius|Barton's fracture of right radius +C2846684|T037|AB|S52.561A|ICD10CM|Barton's fracture of right radius, init for clos fx|Barton's fracture of right radius, init for clos fx +C2846684|T037|PT|S52.561A|ICD10CM|Barton's fracture of right radius, initial encounter for closed fracture|Barton's fracture of right radius, initial encounter for closed fracture +C2846685|T037|AB|S52.561B|ICD10CM|Barton's fracture of right radius, init for opn fx type I/2|Barton's fracture of right radius, init for opn fx type I/2 +C2846685|T037|PT|S52.561B|ICD10CM|Barton's fracture of right radius, initial encounter for open fracture type I or II|Barton's fracture of right radius, initial encounter for open fracture type I or II +C2846686|T037|AB|S52.561C|ICD10CM|Barton's fracture of r radius, init for opn fx type 3A/B/C|Barton's fracture of r radius, init for opn fx type 3A/B/C +C2846686|T037|PT|S52.561C|ICD10CM|Barton's fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC|Barton's fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2846687|T037|AB|S52.561D|ICD10CM|Barton's fracture of r radius, subs for clos fx w routn heal|Barton's fracture of r radius, subs for clos fx w routn heal +C2846687|T037|PT|S52.561D|ICD10CM|Barton's fracture of right radius, subsequent encounter for closed fracture with routine healing|Barton's fracture of right radius, subsequent encounter for closed fracture with routine healing +C2846688|T037|AB|S52.561E|ICD10CM|Barton's fx r radius, subs for opn fx type I/2 w routn heal|Barton's fx r radius, subs for opn fx type I/2 w routn heal +C2846689|T037|AB|S52.561F|ICD10CM|Barton's fx r rad, subs for opn fx type 3A/B/C w routn heal|Barton's fx r rad, subs for opn fx type 3A/B/C w routn heal +C2846690|T037|AB|S52.561G|ICD10CM|Barton's fracture of r radius, subs for clos fx w delay heal|Barton's fracture of r radius, subs for clos fx w delay heal +C2846690|T037|PT|S52.561G|ICD10CM|Barton's fracture of right radius, subsequent encounter for closed fracture with delayed healing|Barton's fracture of right radius, subsequent encounter for closed fracture with delayed healing +C2846691|T037|AB|S52.561H|ICD10CM|Barton's fx r radius, subs for opn fx type I/2 w delay heal|Barton's fx r radius, subs for opn fx type I/2 w delay heal +C2846692|T037|AB|S52.561J|ICD10CM|Barton's fx r rad, subs for opn fx type 3A/B/C w delay heal|Barton's fx r rad, subs for opn fx type 3A/B/C w delay heal +C2846693|T037|AB|S52.561K|ICD10CM|Barton's fracture of r radius, subs for clos fx w nonunion|Barton's fracture of r radius, subs for clos fx w nonunion +C2846693|T037|PT|S52.561K|ICD10CM|Barton's fracture of right radius, subsequent encounter for closed fracture with nonunion|Barton's fracture of right radius, subsequent encounter for closed fracture with nonunion +C2846694|T037|PT|S52.561M|ICD10CM|Barton's fracture of right radius, subsequent encounter for open fracture type I or II with nonunion|Barton's fracture of right radius, subsequent encounter for open fracture type I or II with nonunion +C2846694|T037|AB|S52.561M|ICD10CM|Barton's fx r radius, subs for opn fx type I/2 w nonunion|Barton's fx r radius, subs for opn fx type I/2 w nonunion +C2846695|T037|AB|S52.561N|ICD10CM|Barton's fx r radius, subs for opn fx type 3A/B/C w nonunion|Barton's fx r radius, subs for opn fx type 3A/B/C w nonunion +C2846696|T037|AB|S52.561P|ICD10CM|Barton's fracture of r radius, subs for clos fx w malunion|Barton's fracture of r radius, subs for clos fx w malunion +C2846696|T037|PT|S52.561P|ICD10CM|Barton's fracture of right radius, subsequent encounter for closed fracture with malunion|Barton's fracture of right radius, subsequent encounter for closed fracture with malunion +C2846697|T037|PT|S52.561Q|ICD10CM|Barton's fracture of right radius, subsequent encounter for open fracture type I or II with malunion|Barton's fracture of right radius, subsequent encounter for open fracture type I or II with malunion +C2846697|T037|AB|S52.561Q|ICD10CM|Barton's fx r radius, subs for opn fx type I/2 w malunion|Barton's fx r radius, subs for opn fx type I/2 w malunion +C2846698|T037|AB|S52.561R|ICD10CM|Barton's fx r radius, subs for opn fx type 3A/B/C w malunion|Barton's fx r radius, subs for opn fx type 3A/B/C w malunion +C2846699|T037|PT|S52.561S|ICD10CM|Barton's fracture of right radius, sequela|Barton's fracture of right radius, sequela +C2846699|T037|AB|S52.561S|ICD10CM|Barton's fracture of right radius, sequela|Barton's fracture of right radius, sequela +C2846700|T037|AB|S52.562|ICD10CM|Barton's fracture of left radius|Barton's fracture of left radius +C2846700|T037|HT|S52.562|ICD10CM|Barton's fracture of left radius|Barton's fracture of left radius +C2846701|T037|AB|S52.562A|ICD10CM|Barton's fracture of left radius, init for clos fx|Barton's fracture of left radius, init for clos fx +C2846701|T037|PT|S52.562A|ICD10CM|Barton's fracture of left radius, initial encounter for closed fracture|Barton's fracture of left radius, initial encounter for closed fracture +C2846702|T037|AB|S52.562B|ICD10CM|Barton's fracture of left radius, init for opn fx type I/2|Barton's fracture of left radius, init for opn fx type I/2 +C2846702|T037|PT|S52.562B|ICD10CM|Barton's fracture of left radius, initial encounter for open fracture type I or II|Barton's fracture of left radius, initial encounter for open fracture type I or II +C2846703|T037|PT|S52.562C|ICD10CM|Barton's fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC|Barton's fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2846703|T037|AB|S52.562C|ICD10CM|Barton's fx left radius, init for opn fx type 3A/B/C|Barton's fx left radius, init for opn fx type 3A/B/C +C2846704|T037|PT|S52.562D|ICD10CM|Barton's fracture of left radius, subsequent encounter for closed fracture with routine healing|Barton's fracture of left radius, subsequent encounter for closed fracture with routine healing +C2846704|T037|AB|S52.562D|ICD10CM|Barton's fx left radius, subs for clos fx w routn heal|Barton's fx left radius, subs for clos fx w routn heal +C2846705|T037|AB|S52.562E|ICD10CM|Barton's fx left rad, subs for opn fx type I/2 w routn heal|Barton's fx left rad, subs for opn fx type I/2 w routn heal +C2846706|T037|AB|S52.562F|ICD10CM|Barton's fx l rad, subs for opn fx type 3A/B/C w routn heal|Barton's fx l rad, subs for opn fx type 3A/B/C w routn heal +C2846707|T037|PT|S52.562G|ICD10CM|Barton's fracture of left radius, subsequent encounter for closed fracture with delayed healing|Barton's fracture of left radius, subsequent encounter for closed fracture with delayed healing +C2846707|T037|AB|S52.562G|ICD10CM|Barton's fx left radius, subs for clos fx w delay heal|Barton's fx left radius, subs for clos fx w delay heal +C2846708|T037|AB|S52.562H|ICD10CM|Barton's fx left rad, subs for opn fx type I/2 w delay heal|Barton's fx left rad, subs for opn fx type I/2 w delay heal +C2846709|T037|AB|S52.562J|ICD10CM|Barton's fx l rad, subs for opn fx type 3A/B/C w delay heal|Barton's fx l rad, subs for opn fx type 3A/B/C w delay heal +C2846710|T037|PT|S52.562K|ICD10CM|Barton's fracture of left radius, subsequent encounter for closed fracture with nonunion|Barton's fracture of left radius, subsequent encounter for closed fracture with nonunion +C2846710|T037|AB|S52.562K|ICD10CM|Barton's fx left radius, subs for clos fx w nonunion|Barton's fx left radius, subs for clos fx w nonunion +C2846711|T037|PT|S52.562M|ICD10CM|Barton's fracture of left radius, subsequent encounter for open fracture type I or II with nonunion|Barton's fracture of left radius, subsequent encounter for open fracture type I or II with nonunion +C2846711|T037|AB|S52.562M|ICD10CM|Barton's fx left radius, subs for opn fx type I/2 w nonunion|Barton's fx left radius, subs for opn fx type I/2 w nonunion +C2846712|T037|AB|S52.562N|ICD10CM|Barton's fx left rad, subs for opn fx type 3A/B/C w nonunion|Barton's fx left rad, subs for opn fx type 3A/B/C w nonunion +C2846713|T037|PT|S52.562P|ICD10CM|Barton's fracture of left radius, subsequent encounter for closed fracture with malunion|Barton's fracture of left radius, subsequent encounter for closed fracture with malunion +C2846713|T037|AB|S52.562P|ICD10CM|Barton's fx left radius, subs for clos fx w malunion|Barton's fx left radius, subs for clos fx w malunion +C2846714|T037|PT|S52.562Q|ICD10CM|Barton's fracture of left radius, subsequent encounter for open fracture type I or II with malunion|Barton's fracture of left radius, subsequent encounter for open fracture type I or II with malunion +C2846714|T037|AB|S52.562Q|ICD10CM|Barton's fx left radius, subs for opn fx type I/2 w malunion|Barton's fx left radius, subs for opn fx type I/2 w malunion +C2846715|T037|AB|S52.562R|ICD10CM|Barton's fx left rad, subs for opn fx type 3A/B/C w malunion|Barton's fx left rad, subs for opn fx type 3A/B/C w malunion +C2846716|T037|PT|S52.562S|ICD10CM|Barton's fracture of left radius, sequela|Barton's fracture of left radius, sequela +C2846716|T037|AB|S52.562S|ICD10CM|Barton's fracture of left radius, sequela|Barton's fracture of left radius, sequela +C2846717|T037|AB|S52.569|ICD10CM|Barton's fracture of unspecified radius|Barton's fracture of unspecified radius +C2846717|T037|HT|S52.569|ICD10CM|Barton's fracture of unspecified radius|Barton's fracture of unspecified radius +C2846718|T037|AB|S52.569A|ICD10CM|Barton's fracture of unsp radius, init for clos fx|Barton's fracture of unsp radius, init for clos fx +C2846718|T037|PT|S52.569A|ICD10CM|Barton's fracture of unspecified radius, initial encounter for closed fracture|Barton's fracture of unspecified radius, initial encounter for closed fracture +C2846719|T037|AB|S52.569B|ICD10CM|Barton's fracture of unsp radius, init for opn fx type I/2|Barton's fracture of unsp radius, init for opn fx type I/2 +C2846719|T037|PT|S52.569B|ICD10CM|Barton's fracture of unspecified radius, initial encounter for open fracture type I or II|Barton's fracture of unspecified radius, initial encounter for open fracture type I or II +C2846720|T037|AB|S52.569C|ICD10CM|Barton's fx unsp radius, init for opn fx type 3A/B/C|Barton's fx unsp radius, init for opn fx type 3A/B/C +C2846721|T037|AB|S52.569D|ICD10CM|Barton's fx unsp radius, subs for clos fx w routn heal|Barton's fx unsp radius, subs for clos fx w routn heal +C2846722|T037|AB|S52.569E|ICD10CM|Barton's fx unsp rad, subs for opn fx type I/2 w routn heal|Barton's fx unsp rad, subs for opn fx type I/2 w routn heal +C2846723|T037|AB|S52.569F|ICD10CM|Barton's fx unsp rad, 7thF|Barton's fx unsp rad, 7thF +C2846724|T037|AB|S52.569G|ICD10CM|Barton's fx unsp radius, subs for clos fx w delay heal|Barton's fx unsp radius, subs for clos fx w delay heal +C2846725|T037|AB|S52.569H|ICD10CM|Barton's fx unsp rad, subs for opn fx type I/2 w delay heal|Barton's fx unsp rad, subs for opn fx type I/2 w delay heal +C2846726|T037|AB|S52.569J|ICD10CM|Barton's fx unsp rad, 7thJ|Barton's fx unsp rad, 7thJ +C2846727|T037|PT|S52.569K|ICD10CM|Barton's fracture of unspecified radius, subsequent encounter for closed fracture with nonunion|Barton's fracture of unspecified radius, subsequent encounter for closed fracture with nonunion +C2846727|T037|AB|S52.569K|ICD10CM|Barton's fx unsp radius, subs for clos fx w nonunion|Barton's fx unsp radius, subs for clos fx w nonunion +C2846728|T037|AB|S52.569M|ICD10CM|Barton's fx unsp radius, subs for opn fx type I/2 w nonunion|Barton's fx unsp radius, subs for opn fx type I/2 w nonunion +C2846729|T037|AB|S52.569N|ICD10CM|Barton's fx unsp rad, subs for opn fx type 3A/B/C w nonunion|Barton's fx unsp rad, subs for opn fx type 3A/B/C w nonunion +C2846730|T037|PT|S52.569P|ICD10CM|Barton's fracture of unspecified radius, subsequent encounter for closed fracture with malunion|Barton's fracture of unspecified radius, subsequent encounter for closed fracture with malunion +C2846730|T037|AB|S52.569P|ICD10CM|Barton's fx unsp radius, subs for clos fx w malunion|Barton's fx unsp radius, subs for clos fx w malunion +C2846731|T037|AB|S52.569Q|ICD10CM|Barton's fx unsp radius, subs for opn fx type I/2 w malunion|Barton's fx unsp radius, subs for opn fx type I/2 w malunion +C2846732|T037|AB|S52.569R|ICD10CM|Barton's fx unsp rad, subs for opn fx type 3A/B/C w malunion|Barton's fx unsp rad, subs for opn fx type 3A/B/C w malunion +C2846733|T037|PT|S52.569S|ICD10CM|Barton's fracture of unspecified radius, sequela|Barton's fracture of unspecified radius, sequela +C2846733|T037|AB|S52.569S|ICD10CM|Barton's fracture of unspecified radius, sequela|Barton's fracture of unspecified radius, sequela +C2846734|T037|AB|S52.57|ICD10CM|Other intraarticular fracture of lower end of radius|Other intraarticular fracture of lower end of radius +C2846734|T037|HT|S52.57|ICD10CM|Other intraarticular fracture of lower end of radius|Other intraarticular fracture of lower end of radius +C2846735|T037|AB|S52.571|ICD10CM|Other intraarticular fracture of lower end of right radius|Other intraarticular fracture of lower end of right radius +C2846735|T037|HT|S52.571|ICD10CM|Other intraarticular fracture of lower end of right radius|Other intraarticular fracture of lower end of right radius +C2846736|T037|AB|S52.571A|ICD10CM|Oth intartic fracture of lower end of right radius, init|Oth intartic fracture of lower end of right radius, init +C2846736|T037|PT|S52.571A|ICD10CM|Other intraarticular fracture of lower end of right radius, initial encounter for closed fracture|Other intraarticular fracture of lower end of right radius, initial encounter for closed fracture +C2846737|T037|AB|S52.571B|ICD10CM|Oth intartic fx lower end r radius, init for opn fx type I/2|Oth intartic fx lower end r radius, init for opn fx type I/2 +C2846738|T037|AB|S52.571C|ICD10CM|Oth intartic fx lower end r rad, init for opn fx type 3A/B/C|Oth intartic fx lower end r rad, init for opn fx type 3A/B/C +C2846739|T037|AB|S52.571D|ICD10CM|Oth intartic fx low end r rad, subs for clos fx w routn heal|Oth intartic fx low end r rad, subs for clos fx w routn heal +C2846740|T037|AB|S52.571E|ICD10CM|Oth intartic fx low end r rad, 7thE|Oth intartic fx low end r rad, 7thE +C2846741|T037|AB|S52.571F|ICD10CM|Oth intartic fx low end r rad, 7thF|Oth intartic fx low end r rad, 7thF +C2846742|T037|AB|S52.571G|ICD10CM|Oth intartic fx low end r rad, subs for clos fx w delay heal|Oth intartic fx low end r rad, subs for clos fx w delay heal +C2846743|T037|AB|S52.571H|ICD10CM|Oth intartic fx low end r rad, 7thH|Oth intartic fx low end r rad, 7thH +C2846744|T037|AB|S52.571J|ICD10CM|Oth intartic fx low end r rad, 7thJ|Oth intartic fx low end r rad, 7thJ +C2846745|T037|AB|S52.571K|ICD10CM|Oth intartic fx lower end r rad, subs for clos fx w nonunion|Oth intartic fx lower end r rad, subs for clos fx w nonunion +C2846746|T037|AB|S52.571M|ICD10CM|Oth intartic fx low end r rad, 7thM|Oth intartic fx low end r rad, 7thM +C2846747|T037|AB|S52.571N|ICD10CM|Oth intartic fx low end r rad, 7thN|Oth intartic fx low end r rad, 7thN +C2846748|T037|AB|S52.571P|ICD10CM|Oth intartic fx lower end r rad, subs for clos fx w malunion|Oth intartic fx lower end r rad, subs for clos fx w malunion +C2846749|T037|AB|S52.571Q|ICD10CM|Oth intartic fx low end r rad, 7thQ|Oth intartic fx low end r rad, 7thQ +C2846750|T037|AB|S52.571R|ICD10CM|Oth intartic fx low end r rad, 7thR|Oth intartic fx low end r rad, 7thR +C2846751|T037|AB|S52.571S|ICD10CM|Oth intartic fracture of lower end of right radius, sequela|Oth intartic fracture of lower end of right radius, sequela +C2846751|T037|PT|S52.571S|ICD10CM|Other intraarticular fracture of lower end of right radius, sequela|Other intraarticular fracture of lower end of right radius, sequela +C2846752|T037|AB|S52.572|ICD10CM|Other intraarticular fracture of lower end of left radius|Other intraarticular fracture of lower end of left radius +C2846752|T037|HT|S52.572|ICD10CM|Other intraarticular fracture of lower end of left radius|Other intraarticular fracture of lower end of left radius +C2846753|T037|AB|S52.572A|ICD10CM|Oth intartic fracture of lower end of left radius, init|Oth intartic fracture of lower end of left radius, init +C2846753|T037|PT|S52.572A|ICD10CM|Other intraarticular fracture of lower end of left radius, initial encounter for closed fracture|Other intraarticular fracture of lower end of left radius, initial encounter for closed fracture +C2846754|T037|AB|S52.572B|ICD10CM|Oth intartic fx lower end left rad, init for opn fx type I/2|Oth intartic fx lower end left rad, init for opn fx type I/2 +C2846755|T037|AB|S52.572C|ICD10CM|Oth intartic fx low end l rad, init for opn fx type 3A/B/C|Oth intartic fx low end l rad, init for opn fx type 3A/B/C +C2846756|T037|AB|S52.572D|ICD10CM|Oth intartic fx low end l rad, subs for clos fx w routn heal|Oth intartic fx low end l rad, subs for clos fx w routn heal +C2846757|T037|AB|S52.572E|ICD10CM|Oth intartic fx low end l rad, 7thE|Oth intartic fx low end l rad, 7thE +C2846758|T037|AB|S52.572F|ICD10CM|Oth intartic fx low end l rad, 7thF|Oth intartic fx low end l rad, 7thF +C2846759|T037|AB|S52.572G|ICD10CM|Oth intartic fx low end l rad, subs for clos fx w delay heal|Oth intartic fx low end l rad, subs for clos fx w delay heal +C2846760|T037|AB|S52.572H|ICD10CM|Oth intartic fx low end l rad, 7thH|Oth intartic fx low end l rad, 7thH +C2846761|T037|AB|S52.572J|ICD10CM|Oth intartic fx low end l rad, 7thJ|Oth intartic fx low end l rad, 7thJ +C2846762|T037|AB|S52.572K|ICD10CM|Oth intartic fx low end l rad, subs for clos fx w nonunion|Oth intartic fx low end l rad, subs for clos fx w nonunion +C2846763|T037|AB|S52.572M|ICD10CM|Oth intartic fx low end l rad, 7thM|Oth intartic fx low end l rad, 7thM +C2846764|T037|AB|S52.572N|ICD10CM|Oth intartic fx low end l rad, 7thN|Oth intartic fx low end l rad, 7thN +C2846765|T037|AB|S52.572P|ICD10CM|Oth intartic fx low end l rad, subs for clos fx w malunion|Oth intartic fx low end l rad, subs for clos fx w malunion +C2846766|T037|AB|S52.572Q|ICD10CM|Oth intartic fx low end l rad, 7thQ|Oth intartic fx low end l rad, 7thQ +C2846767|T037|AB|S52.572R|ICD10CM|Oth intartic fx low end l rad, 7thR|Oth intartic fx low end l rad, 7thR +C2846768|T037|AB|S52.572S|ICD10CM|Oth intartic fracture of lower end of left radius, sequela|Oth intartic fracture of lower end of left radius, sequela +C2846768|T037|PT|S52.572S|ICD10CM|Other intraarticular fracture of lower end of left radius, sequela|Other intraarticular fracture of lower end of left radius, sequela +C2846769|T037|AB|S52.579|ICD10CM|Other intraarticular fracture of lower end of unsp radius|Other intraarticular fracture of lower end of unsp radius +C2846769|T037|HT|S52.579|ICD10CM|Other intraarticular fracture of lower end of unspecified radius|Other intraarticular fracture of lower end of unspecified radius +C2846770|T037|AB|S52.579A|ICD10CM|Oth intartic fracture of lower end of unsp radius, init|Oth intartic fracture of lower end of unsp radius, init +C2846771|T037|AB|S52.579B|ICD10CM|Oth intartic fx lower end unsp rad, init for opn fx type I/2|Oth intartic fx lower end unsp rad, init for opn fx type I/2 +C2846772|T037|AB|S52.579C|ICD10CM|Oth intartic fx low end unsp rad, 7thC|Oth intartic fx low end unsp rad, 7thC +C2846773|T037|AB|S52.579D|ICD10CM|Oth intartic fx low end unsp rad, 7thD|Oth intartic fx low end unsp rad, 7thD +C2846774|T037|AB|S52.579E|ICD10CM|Oth intartic fx low end unsp rad, 7thE|Oth intartic fx low end unsp rad, 7thE +C2846775|T037|AB|S52.579F|ICD10CM|Oth intartic fx low end unsp rad, 7thF|Oth intartic fx low end unsp rad, 7thF +C2846776|T037|AB|S52.579G|ICD10CM|Oth intartic fx low end unsp rad, 7thG|Oth intartic fx low end unsp rad, 7thG +C2846777|T037|AB|S52.579H|ICD10CM|Oth intartic fx low end unsp rad, 7thH|Oth intartic fx low end unsp rad, 7thH +C2846778|T037|AB|S52.579J|ICD10CM|Oth intartic fx low end unsp rad, 7thJ|Oth intartic fx low end unsp rad, 7thJ +C2846779|T037|AB|S52.579K|ICD10CM|Oth intartic fx low end unsp rad, 7thK|Oth intartic fx low end unsp rad, 7thK +C2846780|T037|AB|S52.579M|ICD10CM|Oth intartic fx low end unsp rad, 7thM|Oth intartic fx low end unsp rad, 7thM +C2846781|T037|AB|S52.579N|ICD10CM|Oth intartic fx low end unsp rad, 7thN|Oth intartic fx low end unsp rad, 7thN +C2846782|T037|AB|S52.579P|ICD10CM|Oth intartic fx low end unsp rad, 7thP|Oth intartic fx low end unsp rad, 7thP +C2846783|T037|AB|S52.579Q|ICD10CM|Oth intartic fx low end unsp rad, 7thQ|Oth intartic fx low end unsp rad, 7thQ +C2846784|T037|AB|S52.579R|ICD10CM|Oth intartic fx low end unsp rad, 7thR|Oth intartic fx low end unsp rad, 7thR +C2846785|T037|AB|S52.579S|ICD10CM|Oth intartic fracture of lower end of unsp radius, sequela|Oth intartic fracture of lower end of unsp radius, sequela +C2846785|T037|PT|S52.579S|ICD10CM|Other intraarticular fracture of lower end of unspecified radius, sequela|Other intraarticular fracture of lower end of unspecified radius, sequela +C2846786|T037|AB|S52.59|ICD10CM|Other fractures of lower end of radius|Other fractures of lower end of radius +C2846786|T037|HT|S52.59|ICD10CM|Other fractures of lower end of radius|Other fractures of lower end of radius +C2846787|T037|AB|S52.591|ICD10CM|Other fractures of lower end of right radius|Other fractures of lower end of right radius +C2846787|T037|HT|S52.591|ICD10CM|Other fractures of lower end of right radius|Other fractures of lower end of right radius +C2846788|T037|AB|S52.591A|ICD10CM|Oth fractures of lower end of right radius, init for clos fx|Oth fractures of lower end of right radius, init for clos fx +C2846788|T037|PT|S52.591A|ICD10CM|Other fractures of lower end of right radius, initial encounter for closed fracture|Other fractures of lower end of right radius, initial encounter for closed fracture +C2846789|T037|AB|S52.591B|ICD10CM|Oth fx of lower end of r radius, init for opn fx type I/2|Oth fx of lower end of r radius, init for opn fx type I/2 +C2846789|T037|PT|S52.591B|ICD10CM|Other fractures of lower end of right radius, initial encounter for open fracture type I or II|Other fractures of lower end of right radius, initial encounter for open fracture type I or II +C2846790|T037|AB|S52.591C|ICD10CM|Oth fx of lower end of r radius, init for opn fx type 3A/B/C|Oth fx of lower end of r radius, init for opn fx type 3A/B/C +C2846791|T037|AB|S52.591D|ICD10CM|Oth fx of lower end r radius, subs for clos fx w routn heal|Oth fx of lower end r radius, subs for clos fx w routn heal +C2846792|T037|AB|S52.591E|ICD10CM|Oth fx of low end r rad, 7thE|Oth fx of low end r rad, 7thE +C2846793|T037|AB|S52.591F|ICD10CM|Oth fx of low end r rad, 7thF|Oth fx of low end r rad, 7thF +C2846794|T037|AB|S52.591G|ICD10CM|Oth fx of lower end r radius, subs for clos fx w delay heal|Oth fx of lower end r radius, subs for clos fx w delay heal +C2846795|T037|AB|S52.591H|ICD10CM|Oth fx of low end r rad, 7thH|Oth fx of low end r rad, 7thH +C2846796|T037|AB|S52.591J|ICD10CM|Oth fx of low end r rad, 7thJ|Oth fx of low end r rad, 7thJ +C2846797|T037|AB|S52.591K|ICD10CM|Oth fx of lower end of r radius, subs for clos fx w nonunion|Oth fx of lower end of r radius, subs for clos fx w nonunion +C2846797|T037|PT|S52.591K|ICD10CM|Other fractures of lower end of right radius, subsequent encounter for closed fracture with nonunion|Other fractures of lower end of right radius, subsequent encounter for closed fracture with nonunion +C2846798|T037|AB|S52.591M|ICD10CM|Oth fx of low end r rad, subs for opn fx type I/2 w nonunion|Oth fx of low end r rad, subs for opn fx type I/2 w nonunion +C2846799|T037|AB|S52.591N|ICD10CM|Oth fx of low end r rad, 7thN|Oth fx of low end r rad, 7thN +C2846800|T037|AB|S52.591P|ICD10CM|Oth fx of lower end of r radius, subs for clos fx w malunion|Oth fx of lower end of r radius, subs for clos fx w malunion +C2846800|T037|PT|S52.591P|ICD10CM|Other fractures of lower end of right radius, subsequent encounter for closed fracture with malunion|Other fractures of lower end of right radius, subsequent encounter for closed fracture with malunion +C2846801|T037|AB|S52.591Q|ICD10CM|Oth fx of low end r rad, subs for opn fx type I/2 w malunion|Oth fx of low end r rad, subs for opn fx type I/2 w malunion +C2846802|T037|AB|S52.591R|ICD10CM|Oth fx of low end r rad, 7thR|Oth fx of low end r rad, 7thR +C2846803|T037|AB|S52.591S|ICD10CM|Other fractures of lower end of right radius, sequela|Other fractures of lower end of right radius, sequela +C2846803|T037|PT|S52.591S|ICD10CM|Other fractures of lower end of right radius, sequela|Other fractures of lower end of right radius, sequela +C2846804|T037|AB|S52.592|ICD10CM|Other fractures of lower end of left radius|Other fractures of lower end of left radius +C2846804|T037|HT|S52.592|ICD10CM|Other fractures of lower end of left radius|Other fractures of lower end of left radius +C2846805|T037|AB|S52.592A|ICD10CM|Oth fractures of lower end of left radius, init for clos fx|Oth fractures of lower end of left radius, init for clos fx +C2846805|T037|PT|S52.592A|ICD10CM|Other fractures of lower end of left radius, initial encounter for closed fracture|Other fractures of lower end of left radius, initial encounter for closed fracture +C2846806|T037|AB|S52.592B|ICD10CM|Oth fx of lower end of left radius, init for opn fx type I/2|Oth fx of lower end of left radius, init for opn fx type I/2 +C2846806|T037|PT|S52.592B|ICD10CM|Other fractures of lower end of left radius, initial encounter for open fracture type I or II|Other fractures of lower end of left radius, initial encounter for open fracture type I or II +C2846807|T037|AB|S52.592C|ICD10CM|Oth fx of lower end left radius, init for opn fx type 3A/B/C|Oth fx of lower end left radius, init for opn fx type 3A/B/C +C2846808|T037|AB|S52.592D|ICD10CM|Oth fx of lower end left rad, subs for clos fx w routn heal|Oth fx of lower end left rad, subs for clos fx w routn heal +C2846809|T037|AB|S52.592E|ICD10CM|Oth fx of low end l rad, 7thE|Oth fx of low end l rad, 7thE +C2846810|T037|AB|S52.592F|ICD10CM|Oth fx of low end l rad, 7thF|Oth fx of low end l rad, 7thF +C2846811|T037|AB|S52.592G|ICD10CM|Oth fx of lower end left rad, subs for clos fx w delay heal|Oth fx of lower end left rad, subs for clos fx w delay heal +C2846812|T037|AB|S52.592H|ICD10CM|Oth fx of low end l rad, 7thH|Oth fx of low end l rad, 7thH +C2846813|T037|AB|S52.592J|ICD10CM|Oth fx of low end l rad, 7thJ|Oth fx of low end l rad, 7thJ +C2846814|T037|AB|S52.592K|ICD10CM|Oth fx of lower end left radius, subs for clos fx w nonunion|Oth fx of lower end left radius, subs for clos fx w nonunion +C2846814|T037|PT|S52.592K|ICD10CM|Other fractures of lower end of left radius, subsequent encounter for closed fracture with nonunion|Other fractures of lower end of left radius, subsequent encounter for closed fracture with nonunion +C2846815|T037|AB|S52.592M|ICD10CM|Oth fx of low end l rad, subs for opn fx type I/2 w nonunion|Oth fx of low end l rad, subs for opn fx type I/2 w nonunion +C2846816|T037|AB|S52.592N|ICD10CM|Oth fx of low end l rad, 7thN|Oth fx of low end l rad, 7thN +C2846817|T037|AB|S52.592P|ICD10CM|Oth fx of lower end left radius, subs for clos fx w malunion|Oth fx of lower end left radius, subs for clos fx w malunion +C2846817|T037|PT|S52.592P|ICD10CM|Other fractures of lower end of left radius, subsequent encounter for closed fracture with malunion|Other fractures of lower end of left radius, subsequent encounter for closed fracture with malunion +C2846818|T037|AB|S52.592Q|ICD10CM|Oth fx of low end l rad, subs for opn fx type I/2 w malunion|Oth fx of low end l rad, subs for opn fx type I/2 w malunion +C2846819|T037|AB|S52.592R|ICD10CM|Oth fx of low end l rad, 7thR|Oth fx of low end l rad, 7thR +C2846820|T037|AB|S52.592S|ICD10CM|Other fractures of lower end of left radius, sequela|Other fractures of lower end of left radius, sequela +C2846820|T037|PT|S52.592S|ICD10CM|Other fractures of lower end of left radius, sequela|Other fractures of lower end of left radius, sequela +C2846821|T037|AB|S52.599|ICD10CM|Other fractures of lower end of unspecified radius|Other fractures of lower end of unspecified radius +C2846821|T037|HT|S52.599|ICD10CM|Other fractures of lower end of unspecified radius|Other fractures of lower end of unspecified radius +C2846822|T037|AB|S52.599A|ICD10CM|Oth fractures of lower end of unsp radius, init for clos fx|Oth fractures of lower end of unsp radius, init for clos fx +C2846822|T037|PT|S52.599A|ICD10CM|Other fractures of lower end of unspecified radius, initial encounter for closed fracture|Other fractures of lower end of unspecified radius, initial encounter for closed fracture +C2846823|T037|AB|S52.599B|ICD10CM|Oth fx of lower end of unsp radius, init for opn fx type I/2|Oth fx of lower end of unsp radius, init for opn fx type I/2 +C2846823|T037|PT|S52.599B|ICD10CM|Other fractures of lower end of unspecified radius, initial encounter for open fracture type I or II|Other fractures of lower end of unspecified radius, initial encounter for open fracture type I or II +C2846824|T037|AB|S52.599C|ICD10CM|Oth fx of lower end unsp radius, init for opn fx type 3A/B/C|Oth fx of lower end unsp radius, init for opn fx type 3A/B/C +C2846825|T037|AB|S52.599D|ICD10CM|Oth fx of lower end unsp rad, subs for clos fx w routn heal|Oth fx of lower end unsp rad, subs for clos fx w routn heal +C2846826|T037|AB|S52.599E|ICD10CM|Oth fx of low end unsp rad, 7thE|Oth fx of low end unsp rad, 7thE +C2846827|T037|AB|S52.599F|ICD10CM|Oth fx of low end unsp rad, 7thF|Oth fx of low end unsp rad, 7thF +C2846828|T037|AB|S52.599G|ICD10CM|Oth fx of lower end unsp rad, subs for clos fx w delay heal|Oth fx of lower end unsp rad, subs for clos fx w delay heal +C2846829|T037|AB|S52.599H|ICD10CM|Oth fx of low end unsp rad, 7thH|Oth fx of low end unsp rad, 7thH +C2846830|T037|AB|S52.599J|ICD10CM|Oth fx of low end unsp rad, 7thJ|Oth fx of low end unsp rad, 7thJ +C2846831|T037|AB|S52.599K|ICD10CM|Oth fx of lower end unsp radius, subs for clos fx w nonunion|Oth fx of lower end unsp radius, subs for clos fx w nonunion +C2846832|T037|AB|S52.599M|ICD10CM|Oth fx of low end unsp rad, 7thM|Oth fx of low end unsp rad, 7thM +C2846833|T037|AB|S52.599N|ICD10CM|Oth fx of low end unsp rad, 7thN|Oth fx of low end unsp rad, 7thN +C2846834|T037|AB|S52.599P|ICD10CM|Oth fx of lower end unsp radius, subs for clos fx w malunion|Oth fx of lower end unsp radius, subs for clos fx w malunion +C2846835|T037|AB|S52.599Q|ICD10CM|Oth fx of low end unsp rad, 7thQ|Oth fx of low end unsp rad, 7thQ +C2846836|T037|AB|S52.599R|ICD10CM|Oth fx of low end unsp rad, 7thR|Oth fx of low end unsp rad, 7thR +C2846837|T037|AB|S52.599S|ICD10CM|Other fractures of lower end of unspecified radius, sequela|Other fractures of lower end of unspecified radius, sequela +C2846837|T037|PT|S52.599S|ICD10CM|Other fractures of lower end of unspecified radius, sequela|Other fractures of lower end of unspecified radius, sequela +C0435630|T037|PT|S52.6|ICD10|Fracture of lower end of both ulna and radius|Fracture of lower end of both ulna and radius +C0435614|T037|AB|S52.6|ICD10CM|Fracture of lower end of ulna|Fracture of lower end of ulna +C0435614|T037|HT|S52.6|ICD10CM|Fracture of lower end of ulna|Fracture of lower end of ulna +C2846838|T037|AB|S52.60|ICD10CM|Unspecified fracture of lower end of ulna|Unspecified fracture of lower end of ulna +C2846838|T037|HT|S52.60|ICD10CM|Unspecified fracture of lower end of ulna|Unspecified fracture of lower end of ulna +C2846839|T037|AB|S52.601|ICD10CM|Unspecified fracture of lower end of right ulna|Unspecified fracture of lower end of right ulna +C2846839|T037|HT|S52.601|ICD10CM|Unspecified fracture of lower end of right ulna|Unspecified fracture of lower end of right ulna +C2846840|T037|AB|S52.601A|ICD10CM|Unsp fracture of lower end of right ulna, init for clos fx|Unsp fracture of lower end of right ulna, init for clos fx +C2846840|T037|PT|S52.601A|ICD10CM|Unspecified fracture of lower end of right ulna, initial encounter for closed fracture|Unspecified fracture of lower end of right ulna, initial encounter for closed fracture +C2846841|T037|AB|S52.601B|ICD10CM|Unsp fx lower end of right ulna, init for opn fx type I/2|Unsp fx lower end of right ulna, init for opn fx type I/2 +C2846841|T037|PT|S52.601B|ICD10CM|Unspecified fracture of lower end of right ulna, initial encounter for open fracture type I or II|Unspecified fracture of lower end of right ulna, initial encounter for open fracture type I or II +C2846842|T037|AB|S52.601C|ICD10CM|Unsp fx lower end of right ulna, init for opn fx type 3A/B/C|Unsp fx lower end of right ulna, init for opn fx type 3A/B/C +C2846843|T037|AB|S52.601D|ICD10CM|Unsp fx lower end of r ulna, subs for clos fx w routn heal|Unsp fx lower end of r ulna, subs for clos fx w routn heal +C2846844|T037|AB|S52.601E|ICD10CM|Unsp fx low end r ulna, 7thE|Unsp fx low end r ulna, 7thE +C2846845|T037|AB|S52.601F|ICD10CM|Unsp fx low end r ulna, 7thF|Unsp fx low end r ulna, 7thF +C2846846|T037|AB|S52.601G|ICD10CM|Unsp fx lower end of r ulna, subs for clos fx w delay heal|Unsp fx lower end of r ulna, subs for clos fx w delay heal +C2846847|T037|AB|S52.601H|ICD10CM|Unsp fx low end r ulna, 7thH|Unsp fx low end r ulna, 7thH +C2846848|T037|AB|S52.601J|ICD10CM|Unsp fx low end r ulna, 7thJ|Unsp fx low end r ulna, 7thJ +C2846849|T037|AB|S52.601K|ICD10CM|Unsp fx lower end of right ulna, subs for clos fx w nonunion|Unsp fx lower end of right ulna, subs for clos fx w nonunion +C2846850|T037|AB|S52.601M|ICD10CM|Unsp fx low end r ulna, subs for opn fx type I/2 w nonunion|Unsp fx low end r ulna, subs for opn fx type I/2 w nonunion +C2846851|T037|AB|S52.601N|ICD10CM|Unsp fx low end r ulna, 7thN|Unsp fx low end r ulna, 7thN +C2846852|T037|AB|S52.601P|ICD10CM|Unsp fx lower end of right ulna, subs for clos fx w malunion|Unsp fx lower end of right ulna, subs for clos fx w malunion +C2846853|T037|AB|S52.601Q|ICD10CM|Unsp fx low end r ulna, subs for opn fx type I/2 w malunion|Unsp fx low end r ulna, subs for opn fx type I/2 w malunion +C2846854|T037|AB|S52.601R|ICD10CM|Unsp fx low end r ulna, 7thR|Unsp fx low end r ulna, 7thR +C2846855|T037|PT|S52.601S|ICD10CM|Unspecified fracture of lower end of right ulna, sequela|Unspecified fracture of lower end of right ulna, sequela +C2846855|T037|AB|S52.601S|ICD10CM|Unspecified fracture of lower end of right ulna, sequela|Unspecified fracture of lower end of right ulna, sequela +C2846856|T037|AB|S52.602|ICD10CM|Unspecified fracture of lower end of left ulna|Unspecified fracture of lower end of left ulna +C2846856|T037|HT|S52.602|ICD10CM|Unspecified fracture of lower end of left ulna|Unspecified fracture of lower end of left ulna +C2846857|T037|AB|S52.602A|ICD10CM|Unsp fracture of lower end of left ulna, init for clos fx|Unsp fracture of lower end of left ulna, init for clos fx +C2846857|T037|PT|S52.602A|ICD10CM|Unspecified fracture of lower end of left ulna, initial encounter for closed fracture|Unspecified fracture of lower end of left ulna, initial encounter for closed fracture +C2846858|T037|AB|S52.602B|ICD10CM|Unsp fx lower end of left ulna, init for opn fx type I/2|Unsp fx lower end of left ulna, init for opn fx type I/2 +C2846858|T037|PT|S52.602B|ICD10CM|Unspecified fracture of lower end of left ulna, initial encounter for open fracture type I or II|Unspecified fracture of lower end of left ulna, initial encounter for open fracture type I or II +C2846859|T037|AB|S52.602C|ICD10CM|Unsp fx lower end of left ulna, init for opn fx type 3A/B/C|Unsp fx lower end of left ulna, init for opn fx type 3A/B/C +C2846860|T037|AB|S52.602D|ICD10CM|Unsp fx lower end of l ulna, subs for clos fx w routn heal|Unsp fx lower end of l ulna, subs for clos fx w routn heal +C2846861|T037|AB|S52.602E|ICD10CM|Unsp fx low end l ulna, 7thE|Unsp fx low end l ulna, 7thE +C2846862|T037|AB|S52.602F|ICD10CM|Unsp fx low end l ulna, 7thF|Unsp fx low end l ulna, 7thF +C2846863|T037|AB|S52.602G|ICD10CM|Unsp fx lower end of l ulna, subs for clos fx w delay heal|Unsp fx lower end of l ulna, subs for clos fx w delay heal +C2846864|T037|AB|S52.602H|ICD10CM|Unsp fx low end l ulna, 7thH|Unsp fx low end l ulna, 7thH +C2846865|T037|AB|S52.602J|ICD10CM|Unsp fx low end l ulna, 7thJ|Unsp fx low end l ulna, 7thJ +C2846866|T037|AB|S52.602K|ICD10CM|Unsp fx lower end of left ulna, subs for clos fx w nonunion|Unsp fx lower end of left ulna, subs for clos fx w nonunion +C2846867|T037|AB|S52.602M|ICD10CM|Unsp fx low end l ulna, subs for opn fx type I/2 w nonunion|Unsp fx low end l ulna, subs for opn fx type I/2 w nonunion +C2846868|T037|AB|S52.602N|ICD10CM|Unsp fx low end l ulna, 7thN|Unsp fx low end l ulna, 7thN +C2846869|T037|AB|S52.602P|ICD10CM|Unsp fx lower end of left ulna, subs for clos fx w malunion|Unsp fx lower end of left ulna, subs for clos fx w malunion +C2846870|T037|AB|S52.602Q|ICD10CM|Unsp fx low end l ulna, subs for opn fx type I/2 w malunion|Unsp fx low end l ulna, subs for opn fx type I/2 w malunion +C2846871|T037|AB|S52.602R|ICD10CM|Unsp fx low end l ulna, 7thR|Unsp fx low end l ulna, 7thR +C2846872|T037|PT|S52.602S|ICD10CM|Unspecified fracture of lower end of left ulna, sequela|Unspecified fracture of lower end of left ulna, sequela +C2846872|T037|AB|S52.602S|ICD10CM|Unspecified fracture of lower end of left ulna, sequela|Unspecified fracture of lower end of left ulna, sequela +C2846873|T037|AB|S52.609|ICD10CM|Unspecified fracture of lower end of unspecified ulna|Unspecified fracture of lower end of unspecified ulna +C2846873|T037|HT|S52.609|ICD10CM|Unspecified fracture of lower end of unspecified ulna|Unspecified fracture of lower end of unspecified ulna +C2846874|T037|AB|S52.609A|ICD10CM|Unsp fracture of lower end of unsp ulna, init for clos fx|Unsp fracture of lower end of unsp ulna, init for clos fx +C2846874|T037|PT|S52.609A|ICD10CM|Unspecified fracture of lower end of unspecified ulna, initial encounter for closed fracture|Unspecified fracture of lower end of unspecified ulna, initial encounter for closed fracture +C2846875|T037|AB|S52.609B|ICD10CM|Unsp fx lower end of unsp ulna, init for opn fx type I/2|Unsp fx lower end of unsp ulna, init for opn fx type I/2 +C2846876|T037|AB|S52.609C|ICD10CM|Unsp fx lower end of unsp ulna, init for opn fx type 3A/B/C|Unsp fx lower end of unsp ulna, init for opn fx type 3A/B/C +C2846877|T037|AB|S52.609D|ICD10CM|Unsp fx lower end unsp ulna, subs for clos fx w routn heal|Unsp fx lower end unsp ulna, subs for clos fx w routn heal +C2846878|T037|AB|S52.609E|ICD10CM|Unsp fx low end unsp ulna, 7thE|Unsp fx low end unsp ulna, 7thE +C2846879|T037|AB|S52.609F|ICD10CM|Unsp fx low end unsp ulna, 7thF|Unsp fx low end unsp ulna, 7thF +C2846880|T037|AB|S52.609G|ICD10CM|Unsp fx lower end unsp ulna, subs for clos fx w delay heal|Unsp fx lower end unsp ulna, subs for clos fx w delay heal +C2846881|T037|AB|S52.609H|ICD10CM|Unsp fx low end unsp ulna, 7thH|Unsp fx low end unsp ulna, 7thH +C2846882|T037|AB|S52.609J|ICD10CM|Unsp fx low end unsp ulna, 7thJ|Unsp fx low end unsp ulna, 7thJ +C2846883|T037|AB|S52.609K|ICD10CM|Unsp fx lower end of unsp ulna, subs for clos fx w nonunion|Unsp fx lower end of unsp ulna, subs for clos fx w nonunion +C2846884|T037|AB|S52.609M|ICD10CM|Unsp fx low end unsp ulna, 7thM|Unsp fx low end unsp ulna, 7thM +C2846885|T037|AB|S52.609N|ICD10CM|Unsp fx low end unsp ulna, 7thN|Unsp fx low end unsp ulna, 7thN +C2846886|T037|AB|S52.609P|ICD10CM|Unsp fx lower end of unsp ulna, subs for clos fx w malunion|Unsp fx lower end of unsp ulna, subs for clos fx w malunion +C2846887|T037|AB|S52.609Q|ICD10CM|Unsp fx low end unsp ulna, 7thQ|Unsp fx low end unsp ulna, 7thQ +C2846888|T037|AB|S52.609R|ICD10CM|Unsp fx low end unsp ulna, 7thR|Unsp fx low end unsp ulna, 7thR +C2846889|T037|AB|S52.609S|ICD10CM|Unsp fracture of lower end of unspecified ulna, sequela|Unsp fracture of lower end of unspecified ulna, sequela +C2846889|T037|PT|S52.609S|ICD10CM|Unspecified fracture of lower end of unspecified ulna, sequela|Unspecified fracture of lower end of unspecified ulna, sequela +C0281852|T037|AB|S52.61|ICD10CM|Fracture of ulna styloid process|Fracture of ulna styloid process +C0281852|T037|HT|S52.61|ICD10CM|Fracture of ulna styloid process|Fracture of ulna styloid process +C2846890|T037|AB|S52.611|ICD10CM|Displaced fracture of right ulna styloid process|Displaced fracture of right ulna styloid process +C2846890|T037|HT|S52.611|ICD10CM|Displaced fracture of right ulna styloid process|Displaced fracture of right ulna styloid process +C2846891|T037|AB|S52.611A|ICD10CM|Disp fx of right ulna styloid process, init for clos fx|Disp fx of right ulna styloid process, init for clos fx +C2846891|T037|PT|S52.611A|ICD10CM|Displaced fracture of right ulna styloid process, initial encounter for closed fracture|Displaced fracture of right ulna styloid process, initial encounter for closed fracture +C2846892|T037|AB|S52.611B|ICD10CM|Disp fx of r ulna styloid process, init for opn fx type I/2|Disp fx of r ulna styloid process, init for opn fx type I/2 +C2846892|T037|PT|S52.611B|ICD10CM|Displaced fracture of right ulna styloid process, initial encounter for open fracture type I or II|Displaced fracture of right ulna styloid process, initial encounter for open fracture type I or II +C2846893|T037|AB|S52.611C|ICD10CM|Disp fx of r ulna styloid pro, init for opn fx type 3A/B/C|Disp fx of r ulna styloid pro, init for opn fx type 3A/B/C +C2846894|T037|AB|S52.611D|ICD10CM|Disp fx of r ulna styloid pro, subs for clos fx w routn heal|Disp fx of r ulna styloid pro, subs for clos fx w routn heal +C2846895|T037|AB|S52.611E|ICD10CM|Disp fx of r ulna styloid pro, 7thE|Disp fx of r ulna styloid pro, 7thE +C2846896|T037|AB|S52.611F|ICD10CM|Disp fx of r ulna styloid pro, 7thF|Disp fx of r ulna styloid pro, 7thF +C2846897|T037|AB|S52.611G|ICD10CM|Disp fx of r ulna styloid pro, subs for clos fx w delay heal|Disp fx of r ulna styloid pro, subs for clos fx w delay heal +C2846898|T037|AB|S52.611H|ICD10CM|Disp fx of r ulna styloid pro, 7thH|Disp fx of r ulna styloid pro, 7thH +C2846899|T037|AB|S52.611J|ICD10CM|Disp fx of r ulna styloid pro, 7thJ|Disp fx of r ulna styloid pro, 7thJ +C2846900|T037|AB|S52.611K|ICD10CM|Disp fx of r ulna styloid pro, subs for clos fx w nonunion|Disp fx of r ulna styloid pro, subs for clos fx w nonunion +C2846901|T037|AB|S52.611M|ICD10CM|Disp fx of r ulna styloid pro, 7thM|Disp fx of r ulna styloid pro, 7thM +C2846902|T037|AB|S52.611N|ICD10CM|Disp fx of r ulna styloid pro, 7thN|Disp fx of r ulna styloid pro, 7thN +C2846903|T037|AB|S52.611P|ICD10CM|Disp fx of r ulna styloid pro, subs for clos fx w malunion|Disp fx of r ulna styloid pro, subs for clos fx w malunion +C2846904|T037|AB|S52.611Q|ICD10CM|Disp fx of r ulna styloid pro, 7thQ|Disp fx of r ulna styloid pro, 7thQ +C2846905|T037|AB|S52.611R|ICD10CM|Disp fx of r ulna styloid pro, 7thR|Disp fx of r ulna styloid pro, 7thR +C2846906|T037|AB|S52.611S|ICD10CM|Displaced fracture of right ulna styloid process, sequela|Displaced fracture of right ulna styloid process, sequela +C2846906|T037|PT|S52.611S|ICD10CM|Displaced fracture of right ulna styloid process, sequela|Displaced fracture of right ulna styloid process, sequela +C2846907|T037|AB|S52.612|ICD10CM|Displaced fracture of left ulna styloid process|Displaced fracture of left ulna styloid process +C2846907|T037|HT|S52.612|ICD10CM|Displaced fracture of left ulna styloid process|Displaced fracture of left ulna styloid process +C2846908|T037|AB|S52.612A|ICD10CM|Disp fx of left ulna styloid process, init for clos fx|Disp fx of left ulna styloid process, init for clos fx +C2846908|T037|PT|S52.612A|ICD10CM|Displaced fracture of left ulna styloid process, initial encounter for closed fracture|Displaced fracture of left ulna styloid process, initial encounter for closed fracture +C2846909|T037|AB|S52.612B|ICD10CM|Disp fx of l ulna styloid process, init for opn fx type I/2|Disp fx of l ulna styloid process, init for opn fx type I/2 +C2846909|T037|PT|S52.612B|ICD10CM|Displaced fracture of left ulna styloid process, initial encounter for open fracture type I or II|Displaced fracture of left ulna styloid process, initial encounter for open fracture type I or II +C2846910|T037|AB|S52.612C|ICD10CM|Disp fx of l ulna styloid pro, init for opn fx type 3A/B/C|Disp fx of l ulna styloid pro, init for opn fx type 3A/B/C +C2846911|T037|AB|S52.612D|ICD10CM|Disp fx of l ulna styloid pro, subs for clos fx w routn heal|Disp fx of l ulna styloid pro, subs for clos fx w routn heal +C2846912|T037|AB|S52.612E|ICD10CM|Disp fx of l ulna styloid pro, 7thE|Disp fx of l ulna styloid pro, 7thE +C2846913|T037|AB|S52.612F|ICD10CM|Disp fx of l ulna styloid pro, 7thF|Disp fx of l ulna styloid pro, 7thF +C2846914|T037|AB|S52.612G|ICD10CM|Disp fx of l ulna styloid pro, subs for clos fx w delay heal|Disp fx of l ulna styloid pro, subs for clos fx w delay heal +C2846915|T037|AB|S52.612H|ICD10CM|Disp fx of l ulna styloid pro, 7thH|Disp fx of l ulna styloid pro, 7thH +C2846916|T037|AB|S52.612J|ICD10CM|Disp fx of l ulna styloid pro, 7thJ|Disp fx of l ulna styloid pro, 7thJ +C2846917|T037|AB|S52.612K|ICD10CM|Disp fx of l ulna styloid pro, subs for clos fx w nonunion|Disp fx of l ulna styloid pro, subs for clos fx w nonunion +C2846918|T037|AB|S52.612M|ICD10CM|Disp fx of l ulna styloid pro, 7thM|Disp fx of l ulna styloid pro, 7thM +C2846919|T037|AB|S52.612N|ICD10CM|Disp fx of l ulna styloid pro, 7thN|Disp fx of l ulna styloid pro, 7thN +C2846920|T037|AB|S52.612P|ICD10CM|Disp fx of l ulna styloid pro, subs for clos fx w malunion|Disp fx of l ulna styloid pro, subs for clos fx w malunion +C2846921|T037|AB|S52.612Q|ICD10CM|Disp fx of l ulna styloid pro, 7thQ|Disp fx of l ulna styloid pro, 7thQ +C2846922|T037|AB|S52.612R|ICD10CM|Disp fx of l ulna styloid pro, 7thR|Disp fx of l ulna styloid pro, 7thR +C2846923|T037|PT|S52.612S|ICD10CM|Displaced fracture of left ulna styloid process, sequela|Displaced fracture of left ulna styloid process, sequela +C2846923|T037|AB|S52.612S|ICD10CM|Displaced fracture of left ulna styloid process, sequela|Displaced fracture of left ulna styloid process, sequela +C2846924|T037|AB|S52.613|ICD10CM|Displaced fracture of unspecified ulna styloid process|Displaced fracture of unspecified ulna styloid process +C2846924|T037|HT|S52.613|ICD10CM|Displaced fracture of unspecified ulna styloid process|Displaced fracture of unspecified ulna styloid process +C2846925|T037|AB|S52.613A|ICD10CM|Disp fx of unsp ulna styloid process, init for clos fx|Disp fx of unsp ulna styloid process, init for clos fx +C2846925|T037|PT|S52.613A|ICD10CM|Displaced fracture of unspecified ulna styloid process, initial encounter for closed fracture|Displaced fracture of unspecified ulna styloid process, initial encounter for closed fracture +C2846926|T037|AB|S52.613B|ICD10CM|Disp fx of unsp ulna styloid pro, init for opn fx type I/2|Disp fx of unsp ulna styloid pro, init for opn fx type I/2 +C2846927|T037|AB|S52.613C|ICD10CM|Disp fx of unsp ulna styloid pro, 7thC|Disp fx of unsp ulna styloid pro, 7thC +C2846928|T037|AB|S52.613D|ICD10CM|Disp fx of unsp ulna styloid pro, 7thD|Disp fx of unsp ulna styloid pro, 7thD +C2846929|T037|AB|S52.613E|ICD10CM|Disp fx of unsp ulna styloid pro, 7thE|Disp fx of unsp ulna styloid pro, 7thE +C2846930|T037|AB|S52.613F|ICD10CM|Disp fx of unsp ulna styloid pro, 7thF|Disp fx of unsp ulna styloid pro, 7thF +C2846931|T037|AB|S52.613G|ICD10CM|Disp fx of unsp ulna styloid pro, 7thG|Disp fx of unsp ulna styloid pro, 7thG +C2846932|T037|AB|S52.613H|ICD10CM|Disp fx of unsp ulna styloid pro, 7thH|Disp fx of unsp ulna styloid pro, 7thH +C2846933|T037|AB|S52.613J|ICD10CM|Disp fx of unsp ulna styloid pro, 7thJ|Disp fx of unsp ulna styloid pro, 7thJ +C2846934|T037|AB|S52.613K|ICD10CM|Disp fx of unsp ulna styloid pro, 7thK|Disp fx of unsp ulna styloid pro, 7thK +C2846935|T037|AB|S52.613M|ICD10CM|Disp fx of unsp ulna styloid pro, 7thM|Disp fx of unsp ulna styloid pro, 7thM +C2846936|T037|AB|S52.613N|ICD10CM|Disp fx of unsp ulna styloid pro, 7thN|Disp fx of unsp ulna styloid pro, 7thN +C2846937|T037|AB|S52.613P|ICD10CM|Disp fx of unsp ulna styloid pro, 7thP|Disp fx of unsp ulna styloid pro, 7thP +C2846938|T037|AB|S52.613Q|ICD10CM|Disp fx of unsp ulna styloid pro, 7thQ|Disp fx of unsp ulna styloid pro, 7thQ +C2846939|T037|AB|S52.613R|ICD10CM|Disp fx of unsp ulna styloid pro, 7thR|Disp fx of unsp ulna styloid pro, 7thR +C2846940|T037|AB|S52.613S|ICD10CM|Disp fx of unspecified ulna styloid process, sequela|Disp fx of unspecified ulna styloid process, sequela +C2846940|T037|PT|S52.613S|ICD10CM|Displaced fracture of unspecified ulna styloid process, sequela|Displaced fracture of unspecified ulna styloid process, sequela +C2846941|T037|AB|S52.614|ICD10CM|Nondisplaced fracture of right ulna styloid process|Nondisplaced fracture of right ulna styloid process +C2846941|T037|HT|S52.614|ICD10CM|Nondisplaced fracture of right ulna styloid process|Nondisplaced fracture of right ulna styloid process +C2846942|T037|AB|S52.614A|ICD10CM|Nondisp fx of right ulna styloid process, init for clos fx|Nondisp fx of right ulna styloid process, init for clos fx +C2846942|T037|PT|S52.614A|ICD10CM|Nondisplaced fracture of right ulna styloid process, initial encounter for closed fracture|Nondisplaced fracture of right ulna styloid process, initial encounter for closed fracture +C2846943|T037|AB|S52.614B|ICD10CM|Nondisp fx of r ulna styloid pro, init for opn fx type I/2|Nondisp fx of r ulna styloid pro, init for opn fx type I/2 +C2846944|T037|AB|S52.614C|ICD10CM|Nondisp fx of r ulna styloid pro, 7thC|Nondisp fx of r ulna styloid pro, 7thC +C2846945|T037|AB|S52.614D|ICD10CM|Nondisp fx of r ulna styloid pro, 7thD|Nondisp fx of r ulna styloid pro, 7thD +C2846946|T037|AB|S52.614E|ICD10CM|Nondisp fx of r ulna styloid pro, 7thE|Nondisp fx of r ulna styloid pro, 7thE +C2846947|T037|AB|S52.614F|ICD10CM|Nondisp fx of r ulna styloid pro, 7thF|Nondisp fx of r ulna styloid pro, 7thF +C2846948|T037|AB|S52.614G|ICD10CM|Nondisp fx of r ulna styloid pro, 7thG|Nondisp fx of r ulna styloid pro, 7thG +C2846949|T037|AB|S52.614H|ICD10CM|Nondisp fx of r ulna styloid pro, 7thH|Nondisp fx of r ulna styloid pro, 7thH +C2846950|T037|AB|S52.614J|ICD10CM|Nondisp fx of r ulna styloid pro, 7thJ|Nondisp fx of r ulna styloid pro, 7thJ +C2846951|T037|AB|S52.614K|ICD10CM|Nondisp fx of r ulna styloid pro, 7thK|Nondisp fx of r ulna styloid pro, 7thK +C2846952|T037|AB|S52.614M|ICD10CM|Nondisp fx of r ulna styloid pro, 7thM|Nondisp fx of r ulna styloid pro, 7thM +C2846953|T037|AB|S52.614N|ICD10CM|Nondisp fx of r ulna styloid pro, 7thN|Nondisp fx of r ulna styloid pro, 7thN +C2846954|T037|AB|S52.614P|ICD10CM|Nondisp fx of r ulna styloid pro, 7thP|Nondisp fx of r ulna styloid pro, 7thP +C2846955|T037|AB|S52.614Q|ICD10CM|Nondisp fx of r ulna styloid pro, 7thQ|Nondisp fx of r ulna styloid pro, 7thQ +C2846956|T037|AB|S52.614R|ICD10CM|Nondisp fx of r ulna styloid pro, 7thR|Nondisp fx of r ulna styloid pro, 7thR +C2846957|T037|AB|S52.614S|ICD10CM|Nondisplaced fracture of right ulna styloid process, sequela|Nondisplaced fracture of right ulna styloid process, sequela +C2846957|T037|PT|S52.614S|ICD10CM|Nondisplaced fracture of right ulna styloid process, sequela|Nondisplaced fracture of right ulna styloid process, sequela +C2846958|T037|AB|S52.615|ICD10CM|Nondisplaced fracture of left ulna styloid process|Nondisplaced fracture of left ulna styloid process +C2846958|T037|HT|S52.615|ICD10CM|Nondisplaced fracture of left ulna styloid process|Nondisplaced fracture of left ulna styloid process +C2846959|T037|AB|S52.615A|ICD10CM|Nondisp fx of left ulna styloid process, init for clos fx|Nondisp fx of left ulna styloid process, init for clos fx +C2846959|T037|PT|S52.615A|ICD10CM|Nondisplaced fracture of left ulna styloid process, initial encounter for closed fracture|Nondisplaced fracture of left ulna styloid process, initial encounter for closed fracture +C2846960|T037|AB|S52.615B|ICD10CM|Nondisp fx of l ulna styloid pro, init for opn fx type I/2|Nondisp fx of l ulna styloid pro, init for opn fx type I/2 +C2846960|T037|PT|S52.615B|ICD10CM|Nondisplaced fracture of left ulna styloid process, initial encounter for open fracture type I or II|Nondisplaced fracture of left ulna styloid process, initial encounter for open fracture type I or II +C2846961|T037|AB|S52.615C|ICD10CM|Nondisp fx of l ulna styloid pro, 7thC|Nondisp fx of l ulna styloid pro, 7thC +C2846962|T037|AB|S52.615D|ICD10CM|Nondisp fx of l ulna styloid pro, 7thD|Nondisp fx of l ulna styloid pro, 7thD +C2846963|T037|AB|S52.615E|ICD10CM|Nondisp fx of l ulna styloid pro, 7thE|Nondisp fx of l ulna styloid pro, 7thE +C2846964|T037|AB|S52.615F|ICD10CM|Nondisp fx of l ulna styloid pro, 7thF|Nondisp fx of l ulna styloid pro, 7thF +C2846965|T037|AB|S52.615G|ICD10CM|Nondisp fx of l ulna styloid pro, 7thG|Nondisp fx of l ulna styloid pro, 7thG +C2846966|T037|AB|S52.615H|ICD10CM|Nondisp fx of l ulna styloid pro, 7thH|Nondisp fx of l ulna styloid pro, 7thH +C2846967|T037|AB|S52.615J|ICD10CM|Nondisp fx of l ulna styloid pro, 7thJ|Nondisp fx of l ulna styloid pro, 7thJ +C2846968|T037|AB|S52.615K|ICD10CM|Nondisp fx of l ulna styloid pro, 7thK|Nondisp fx of l ulna styloid pro, 7thK +C2846969|T037|AB|S52.615M|ICD10CM|Nondisp fx of l ulna styloid pro, 7thM|Nondisp fx of l ulna styloid pro, 7thM +C2846970|T037|AB|S52.615N|ICD10CM|Nondisp fx of l ulna styloid pro, 7thN|Nondisp fx of l ulna styloid pro, 7thN +C2846971|T037|AB|S52.615P|ICD10CM|Nondisp fx of l ulna styloid pro, 7thP|Nondisp fx of l ulna styloid pro, 7thP +C2846972|T037|AB|S52.615Q|ICD10CM|Nondisp fx of l ulna styloid pro, 7thQ|Nondisp fx of l ulna styloid pro, 7thQ +C2846973|T037|AB|S52.615R|ICD10CM|Nondisp fx of l ulna styloid pro, 7thR|Nondisp fx of l ulna styloid pro, 7thR +C2846974|T037|PT|S52.615S|ICD10CM|Nondisplaced fracture of left ulna styloid process, sequela|Nondisplaced fracture of left ulna styloid process, sequela +C2846974|T037|AB|S52.615S|ICD10CM|Nondisplaced fracture of left ulna styloid process, sequela|Nondisplaced fracture of left ulna styloid process, sequela +C2846975|T037|AB|S52.616|ICD10CM|Nondisplaced fracture of unspecified ulna styloid process|Nondisplaced fracture of unspecified ulna styloid process +C2846975|T037|HT|S52.616|ICD10CM|Nondisplaced fracture of unspecified ulna styloid process|Nondisplaced fracture of unspecified ulna styloid process +C2846976|T037|AB|S52.616A|ICD10CM|Nondisp fx of unsp ulna styloid process, init for clos fx|Nondisp fx of unsp ulna styloid process, init for clos fx +C2846976|T037|PT|S52.616A|ICD10CM|Nondisplaced fracture of unspecified ulna styloid process, initial encounter for closed fracture|Nondisplaced fracture of unspecified ulna styloid process, initial encounter for closed fracture +C2846977|T037|AB|S52.616B|ICD10CM|Nondisp fx of unsp ulna styloid pro, 7thB|Nondisp fx of unsp ulna styloid pro, 7thB +C2846978|T037|AB|S52.616C|ICD10CM|Nondisp fx of unsp ulna styloid pro, 7thC|Nondisp fx of unsp ulna styloid pro, 7thC +C2846979|T037|AB|S52.616D|ICD10CM|Nondisp fx of unsp ulna styloid pro, 7thD|Nondisp fx of unsp ulna styloid pro, 7thD +C2846980|T037|AB|S52.616E|ICD10CM|Nondisp fx of unsp ulna styloid pro, 7thE|Nondisp fx of unsp ulna styloid pro, 7thE +C2846981|T037|AB|S52.616F|ICD10CM|Nondisp fx of unsp ulna styloid pro, 7thF|Nondisp fx of unsp ulna styloid pro, 7thF +C2846982|T037|AB|S52.616G|ICD10CM|Nondisp fx of unsp ulna styloid pro, 7thG|Nondisp fx of unsp ulna styloid pro, 7thG +C2846983|T037|AB|S52.616H|ICD10CM|Nondisp fx of unsp ulna styloid pro, 7thH|Nondisp fx of unsp ulna styloid pro, 7thH +C2846984|T037|AB|S52.616J|ICD10CM|Nondisp fx of unsp ulna styloid pro, 7thJ|Nondisp fx of unsp ulna styloid pro, 7thJ +C2846985|T037|AB|S52.616K|ICD10CM|Nondisp fx of unsp ulna styloid pro, 7thK|Nondisp fx of unsp ulna styloid pro, 7thK +C2846986|T037|AB|S52.616M|ICD10CM|Nondisp fx of unsp ulna styloid pro, 7thM|Nondisp fx of unsp ulna styloid pro, 7thM +C2846987|T037|AB|S52.616N|ICD10CM|Nondisp fx of unsp ulna styloid pro, 7thN|Nondisp fx of unsp ulna styloid pro, 7thN +C2846988|T037|AB|S52.616P|ICD10CM|Nondisp fx of unsp ulna styloid pro, 7thP|Nondisp fx of unsp ulna styloid pro, 7thP +C2846989|T037|AB|S52.616Q|ICD10CM|Nondisp fx of unsp ulna styloid pro, 7thQ|Nondisp fx of unsp ulna styloid pro, 7thQ +C2846990|T037|AB|S52.616R|ICD10CM|Nondisp fx of unsp ulna styloid pro, 7thR|Nondisp fx of unsp ulna styloid pro, 7thR +C2846991|T037|AB|S52.616S|ICD10CM|Nondisp fx of unspecified ulna styloid process, sequela|Nondisp fx of unspecified ulna styloid process, sequela +C2846991|T037|PT|S52.616S|ICD10CM|Nondisplaced fracture of unspecified ulna styloid process, sequela|Nondisplaced fracture of unspecified ulna styloid process, sequela +C2846992|T037|AB|S52.62|ICD10CM|Torus fracture of lower end of ulna|Torus fracture of lower end of ulna +C2846992|T037|HT|S52.62|ICD10CM|Torus fracture of lower end of ulna|Torus fracture of lower end of ulna +C2846993|T037|AB|S52.621|ICD10CM|Torus fracture of lower end of right ulna|Torus fracture of lower end of right ulna +C2846993|T037|HT|S52.621|ICD10CM|Torus fracture of lower end of right ulna|Torus fracture of lower end of right ulna +C2846994|T037|AB|S52.621A|ICD10CM|Torus fracture of lower end of right ulna, init for clos fx|Torus fracture of lower end of right ulna, init for clos fx +C2846994|T037|PT|S52.621A|ICD10CM|Torus fracture of lower end of right ulna, initial encounter for closed fracture|Torus fracture of lower end of right ulna, initial encounter for closed fracture +C2846995|T037|PT|S52.621D|ICD10CM|Torus fracture of lower end of right ulna, subsequent encounter for fracture with routine healing|Torus fracture of lower end of right ulna, subsequent encounter for fracture with routine healing +C2846995|T037|AB|S52.621D|ICD10CM|Torus fx lower end of right ulna, subs for fx w routn heal|Torus fx lower end of right ulna, subs for fx w routn heal +C2846996|T037|PT|S52.621G|ICD10CM|Torus fracture of lower end of right ulna, subsequent encounter for fracture with delayed healing|Torus fracture of lower end of right ulna, subsequent encounter for fracture with delayed healing +C2846996|T037|AB|S52.621G|ICD10CM|Torus fx lower end of right ulna, subs for fx w delay heal|Torus fx lower end of right ulna, subs for fx w delay heal +C2846997|T037|PT|S52.621K|ICD10CM|Torus fracture of lower end of right ulna, subsequent encounter for fracture with nonunion|Torus fracture of lower end of right ulna, subsequent encounter for fracture with nonunion +C2846997|T037|AB|S52.621K|ICD10CM|Torus fx lower end of right ulna, subs for fx w nonunion|Torus fx lower end of right ulna, subs for fx w nonunion +C2846998|T037|PT|S52.621P|ICD10CM|Torus fracture of lower end of right ulna, subsequent encounter for fracture with malunion|Torus fracture of lower end of right ulna, subsequent encounter for fracture with malunion +C2846998|T037|AB|S52.621P|ICD10CM|Torus fx lower end of right ulna, subs for fx w malunion|Torus fx lower end of right ulna, subs for fx w malunion +C2846999|T037|PT|S52.621S|ICD10CM|Torus fracture of lower end of right ulna, sequela|Torus fracture of lower end of right ulna, sequela +C2846999|T037|AB|S52.621S|ICD10CM|Torus fracture of lower end of right ulna, sequela|Torus fracture of lower end of right ulna, sequela +C2847000|T037|AB|S52.622|ICD10CM|Torus fracture of lower end of left ulna|Torus fracture of lower end of left ulna +C2847000|T037|HT|S52.622|ICD10CM|Torus fracture of lower end of left ulna|Torus fracture of lower end of left ulna +C2847001|T037|AB|S52.622A|ICD10CM|Torus fracture of lower end of left ulna, init for clos fx|Torus fracture of lower end of left ulna, init for clos fx +C2847001|T037|PT|S52.622A|ICD10CM|Torus fracture of lower end of left ulna, initial encounter for closed fracture|Torus fracture of lower end of left ulna, initial encounter for closed fracture +C2847002|T037|PT|S52.622D|ICD10CM|Torus fracture of lower end of left ulna, subsequent encounter for fracture with routine healing|Torus fracture of lower end of left ulna, subsequent encounter for fracture with routine healing +C2847002|T037|AB|S52.622D|ICD10CM|Torus fx lower end of left ulna, subs for fx w routn heal|Torus fx lower end of left ulna, subs for fx w routn heal +C2847003|T037|PT|S52.622G|ICD10CM|Torus fracture of lower end of left ulna, subsequent encounter for fracture with delayed healing|Torus fracture of lower end of left ulna, subsequent encounter for fracture with delayed healing +C2847003|T037|AB|S52.622G|ICD10CM|Torus fx lower end of left ulna, subs for fx w delay heal|Torus fx lower end of left ulna, subs for fx w delay heal +C2847004|T037|PT|S52.622K|ICD10CM|Torus fracture of lower end of left ulna, subsequent encounter for fracture with nonunion|Torus fracture of lower end of left ulna, subsequent encounter for fracture with nonunion +C2847004|T037|AB|S52.622K|ICD10CM|Torus fx lower end of left ulna, subs for fx w nonunion|Torus fx lower end of left ulna, subs for fx w nonunion +C2847005|T037|PT|S52.622P|ICD10CM|Torus fracture of lower end of left ulna, subsequent encounter for fracture with malunion|Torus fracture of lower end of left ulna, subsequent encounter for fracture with malunion +C2847005|T037|AB|S52.622P|ICD10CM|Torus fx lower end of left ulna, subs for fx w malunion|Torus fx lower end of left ulna, subs for fx w malunion +C2847006|T037|PT|S52.622S|ICD10CM|Torus fracture of lower end of left ulna, sequela|Torus fracture of lower end of left ulna, sequela +C2847006|T037|AB|S52.622S|ICD10CM|Torus fracture of lower end of left ulna, sequela|Torus fracture of lower end of left ulna, sequela +C2847007|T037|AB|S52.629|ICD10CM|Torus fracture of lower end of unspecified ulna|Torus fracture of lower end of unspecified ulna +C2847007|T037|HT|S52.629|ICD10CM|Torus fracture of lower end of unspecified ulna|Torus fracture of lower end of unspecified ulna +C2847008|T037|AB|S52.629A|ICD10CM|Torus fracture of lower end of unsp ulna, init for clos fx|Torus fracture of lower end of unsp ulna, init for clos fx +C2847008|T037|PT|S52.629A|ICD10CM|Torus fracture of lower end of unspecified ulna, initial encounter for closed fracture|Torus fracture of lower end of unspecified ulna, initial encounter for closed fracture +C2847009|T037|AB|S52.629D|ICD10CM|Torus fx lower end of unsp ulna, subs for fx w routn heal|Torus fx lower end of unsp ulna, subs for fx w routn heal +C2847010|T037|AB|S52.629G|ICD10CM|Torus fx lower end of unsp ulna, subs for fx w delay heal|Torus fx lower end of unsp ulna, subs for fx w delay heal +C2847011|T037|PT|S52.629K|ICD10CM|Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with nonunion|Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with nonunion +C2847011|T037|AB|S52.629K|ICD10CM|Torus fx lower end of unsp ulna, subs for fx w nonunion|Torus fx lower end of unsp ulna, subs for fx w nonunion +C2847012|T037|PT|S52.629P|ICD10CM|Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with malunion|Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with malunion +C2847012|T037|AB|S52.629P|ICD10CM|Torus fx lower end of unsp ulna, subs for fx w malunion|Torus fx lower end of unsp ulna, subs for fx w malunion +C2847013|T037|PT|S52.629S|ICD10CM|Torus fracture of lower end of unspecified ulna, sequela|Torus fracture of lower end of unspecified ulna, sequela +C2847013|T037|AB|S52.629S|ICD10CM|Torus fracture of lower end of unspecified ulna, sequela|Torus fracture of lower end of unspecified ulna, sequela +C2847014|T037|AB|S52.69|ICD10CM|Other fracture of lower end of ulna|Other fracture of lower end of ulna +C2847014|T037|HT|S52.69|ICD10CM|Other fracture of lower end of ulna|Other fracture of lower end of ulna +C2847015|T037|AB|S52.691|ICD10CM|Other fracture of lower end of right ulna|Other fracture of lower end of right ulna +C2847015|T037|HT|S52.691|ICD10CM|Other fracture of lower end of right ulna|Other fracture of lower end of right ulna +C2847016|T037|AB|S52.691A|ICD10CM|Oth fracture of lower end of right ulna, init for clos fx|Oth fracture of lower end of right ulna, init for clos fx +C2847016|T037|PT|S52.691A|ICD10CM|Other fracture of lower end of right ulna, initial encounter for closed fracture|Other fracture of lower end of right ulna, initial encounter for closed fracture +C2847017|T037|AB|S52.691B|ICD10CM|Oth fx lower end of right ulna, init for opn fx type I/2|Oth fx lower end of right ulna, init for opn fx type I/2 +C2847017|T037|PT|S52.691B|ICD10CM|Other fracture of lower end of right ulna, initial encounter for open fracture type I or II|Other fracture of lower end of right ulna, initial encounter for open fracture type I or II +C2847018|T037|AB|S52.691C|ICD10CM|Oth fx lower end of right ulna, init for opn fx type 3A/B/C|Oth fx lower end of right ulna, init for opn fx type 3A/B/C +C2847019|T037|AB|S52.691D|ICD10CM|Oth fx lower end of r ulna, subs for clos fx w routn heal|Oth fx lower end of r ulna, subs for clos fx w routn heal +C2847020|T037|AB|S52.691E|ICD10CM|Oth fx low end r ulna, subs for opn fx type I/2 w routn heal|Oth fx low end r ulna, subs for opn fx type I/2 w routn heal +C2847021|T037|AB|S52.691F|ICD10CM|Oth fx low end r ulna, 7thF|Oth fx low end r ulna, 7thF +C2847022|T037|AB|S52.691G|ICD10CM|Oth fx lower end of r ulna, subs for clos fx w delay heal|Oth fx lower end of r ulna, subs for clos fx w delay heal +C2847023|T037|AB|S52.691H|ICD10CM|Oth fx low end r ulna, subs for opn fx type I/2 w delay heal|Oth fx low end r ulna, subs for opn fx type I/2 w delay heal +C2847024|T037|AB|S52.691J|ICD10CM|Oth fx low end r ulna, 7thJ|Oth fx low end r ulna, 7thJ +C2847025|T037|AB|S52.691K|ICD10CM|Oth fx lower end of right ulna, subs for clos fx w nonunion|Oth fx lower end of right ulna, subs for clos fx w nonunion +C2847025|T037|PT|S52.691K|ICD10CM|Other fracture of lower end of right ulna, subsequent encounter for closed fracture with nonunion|Other fracture of lower end of right ulna, subsequent encounter for closed fracture with nonunion +C2847026|T037|AB|S52.691M|ICD10CM|Oth fx lower end r ulna, subs for opn fx type I/2 w nonunion|Oth fx lower end r ulna, subs for opn fx type I/2 w nonunion +C2847027|T037|AB|S52.691N|ICD10CM|Oth fx low end r ulna, 7thN|Oth fx low end r ulna, 7thN +C2847028|T037|AB|S52.691P|ICD10CM|Oth fx lower end of right ulna, subs for clos fx w malunion|Oth fx lower end of right ulna, subs for clos fx w malunion +C2847028|T037|PT|S52.691P|ICD10CM|Other fracture of lower end of right ulna, subsequent encounter for closed fracture with malunion|Other fracture of lower end of right ulna, subsequent encounter for closed fracture with malunion +C2847029|T037|AB|S52.691Q|ICD10CM|Oth fx lower end r ulna, subs for opn fx type I/2 w malunion|Oth fx lower end r ulna, subs for opn fx type I/2 w malunion +C2847030|T037|AB|S52.691R|ICD10CM|Oth fx low end r ulna, 7thR|Oth fx low end r ulna, 7thR +C2847031|T037|PT|S52.691S|ICD10CM|Other fracture of lower end of right ulna, sequela|Other fracture of lower end of right ulna, sequela +C2847031|T037|AB|S52.691S|ICD10CM|Other fracture of lower end of right ulna, sequela|Other fracture of lower end of right ulna, sequela +C2847032|T037|AB|S52.692|ICD10CM|Other fracture of lower end of left ulna|Other fracture of lower end of left ulna +C2847032|T037|HT|S52.692|ICD10CM|Other fracture of lower end of left ulna|Other fracture of lower end of left ulna +C2847033|T037|AB|S52.692A|ICD10CM|Oth fracture of lower end of left ulna, init for clos fx|Oth fracture of lower end of left ulna, init for clos fx +C2847033|T037|PT|S52.692A|ICD10CM|Other fracture of lower end of left ulna, initial encounter for closed fracture|Other fracture of lower end of left ulna, initial encounter for closed fracture +C2847034|T037|AB|S52.692B|ICD10CM|Oth fx lower end of left ulna, init for opn fx type I/2|Oth fx lower end of left ulna, init for opn fx type I/2 +C2847034|T037|PT|S52.692B|ICD10CM|Other fracture of lower end of left ulna, initial encounter for open fracture type I or II|Other fracture of lower end of left ulna, initial encounter for open fracture type I or II +C2847035|T037|AB|S52.692C|ICD10CM|Oth fx lower end of left ulna, init for opn fx type 3A/B/C|Oth fx lower end of left ulna, init for opn fx type 3A/B/C +C2847036|T037|AB|S52.692D|ICD10CM|Oth fx lower end of left ulna, subs for clos fx w routn heal|Oth fx lower end of left ulna, subs for clos fx w routn heal +C2847037|T037|AB|S52.692E|ICD10CM|Oth fx low end l ulna, subs for opn fx type I/2 w routn heal|Oth fx low end l ulna, subs for opn fx type I/2 w routn heal +C2847038|T037|AB|S52.692F|ICD10CM|Oth fx low end l ulna, 7thF|Oth fx low end l ulna, 7thF +C2847039|T037|AB|S52.692G|ICD10CM|Oth fx lower end of left ulna, subs for clos fx w delay heal|Oth fx lower end of left ulna, subs for clos fx w delay heal +C2847040|T037|AB|S52.692H|ICD10CM|Oth fx low end l ulna, subs for opn fx type I/2 w delay heal|Oth fx low end l ulna, subs for opn fx type I/2 w delay heal +C2847041|T037|AB|S52.692J|ICD10CM|Oth fx low end l ulna, 7thJ|Oth fx low end l ulna, 7thJ +C2847042|T037|AB|S52.692K|ICD10CM|Oth fx lower end of left ulna, subs for clos fx w nonunion|Oth fx lower end of left ulna, subs for clos fx w nonunion +C2847042|T037|PT|S52.692K|ICD10CM|Other fracture of lower end of left ulna, subsequent encounter for closed fracture with nonunion|Other fracture of lower end of left ulna, subsequent encounter for closed fracture with nonunion +C2847043|T037|AB|S52.692M|ICD10CM|Oth fx lower end l ulna, subs for opn fx type I/2 w nonunion|Oth fx lower end l ulna, subs for opn fx type I/2 w nonunion +C2847044|T037|AB|S52.692N|ICD10CM|Oth fx low end l ulna, 7thN|Oth fx low end l ulna, 7thN +C2847045|T037|AB|S52.692P|ICD10CM|Oth fx lower end of left ulna, subs for clos fx w malunion|Oth fx lower end of left ulna, subs for clos fx w malunion +C2847045|T037|PT|S52.692P|ICD10CM|Other fracture of lower end of left ulna, subsequent encounter for closed fracture with malunion|Other fracture of lower end of left ulna, subsequent encounter for closed fracture with malunion +C2847046|T037|AB|S52.692Q|ICD10CM|Oth fx lower end l ulna, subs for opn fx type I/2 w malunion|Oth fx lower end l ulna, subs for opn fx type I/2 w malunion +C2847047|T037|AB|S52.692R|ICD10CM|Oth fx low end l ulna, 7thR|Oth fx low end l ulna, 7thR +C2847048|T037|PT|S52.692S|ICD10CM|Other fracture of lower end of left ulna, sequela|Other fracture of lower end of left ulna, sequela +C2847048|T037|AB|S52.692S|ICD10CM|Other fracture of lower end of left ulna, sequela|Other fracture of lower end of left ulna, sequela +C2847049|T037|AB|S52.699|ICD10CM|Other fracture of lower end of unspecified ulna|Other fracture of lower end of unspecified ulna +C2847049|T037|HT|S52.699|ICD10CM|Other fracture of lower end of unspecified ulna|Other fracture of lower end of unspecified ulna +C2847050|T037|AB|S52.699A|ICD10CM|Oth fracture of lower end of unsp ulna, init for clos fx|Oth fracture of lower end of unsp ulna, init for clos fx +C2847050|T037|PT|S52.699A|ICD10CM|Other fracture of lower end of unspecified ulna, initial encounter for closed fracture|Other fracture of lower end of unspecified ulna, initial encounter for closed fracture +C2847051|T037|AB|S52.699B|ICD10CM|Oth fx lower end of unsp ulna, init for opn fx type I/2|Oth fx lower end of unsp ulna, init for opn fx type I/2 +C2847051|T037|PT|S52.699B|ICD10CM|Other fracture of lower end of unspecified ulna, initial encounter for open fracture type I or II|Other fracture of lower end of unspecified ulna, initial encounter for open fracture type I or II +C2847052|T037|AB|S52.699C|ICD10CM|Oth fx lower end of unsp ulna, init for opn fx type 3A/B/C|Oth fx lower end of unsp ulna, init for opn fx type 3A/B/C +C2847053|T037|AB|S52.699D|ICD10CM|Oth fx lower end of unsp ulna, subs for clos fx w routn heal|Oth fx lower end of unsp ulna, subs for clos fx w routn heal +C2847054|T037|AB|S52.699E|ICD10CM|Oth fx low end unsp ulna, 7thE|Oth fx low end unsp ulna, 7thE +C2847055|T037|AB|S52.699F|ICD10CM|Oth fx low end unsp ulna, 7thF|Oth fx low end unsp ulna, 7thF +C2847056|T037|AB|S52.699G|ICD10CM|Oth fx lower end of unsp ulna, subs for clos fx w delay heal|Oth fx lower end of unsp ulna, subs for clos fx w delay heal +C2847057|T037|AB|S52.699H|ICD10CM|Oth fx low end unsp ulna, 7thH|Oth fx low end unsp ulna, 7thH +C2847058|T037|AB|S52.699J|ICD10CM|Oth fx low end unsp ulna, 7thJ|Oth fx low end unsp ulna, 7thJ +C2847059|T037|AB|S52.699K|ICD10CM|Oth fx lower end of unsp ulna, subs for clos fx w nonunion|Oth fx lower end of unsp ulna, subs for clos fx w nonunion +C2847060|T037|AB|S52.699M|ICD10CM|Oth fx low end unsp ulna, 7thM|Oth fx low end unsp ulna, 7thM +C2847061|T037|AB|S52.699N|ICD10CM|Oth fx low end unsp ulna, 7thN|Oth fx low end unsp ulna, 7thN +C2847062|T037|AB|S52.699P|ICD10CM|Oth fx lower end of unsp ulna, subs for clos fx w malunion|Oth fx lower end of unsp ulna, subs for clos fx w malunion +C2847063|T037|AB|S52.699Q|ICD10CM|Oth fx low end unsp ulna, 7thQ|Oth fx low end unsp ulna, 7thQ +C2847064|T037|AB|S52.699R|ICD10CM|Oth fx low end unsp ulna, 7thR|Oth fx low end unsp ulna, 7thR +C2847065|T037|PT|S52.699S|ICD10CM|Other fracture of lower end of unspecified ulna, sequela|Other fracture of lower end of unspecified ulna, sequela +C2847065|T037|AB|S52.699S|ICD10CM|Other fracture of lower end of unspecified ulna, sequela|Other fracture of lower end of unspecified ulna, sequela +C0452089|T037|PT|S52.7|ICD10|Multiple fractures of forearm|Multiple fractures of forearm +C0478287|T037|PT|S52.8|ICD10|Fracture of other parts of forearm|Fracture of other parts of forearm +C1305215|T037|PT|S52.9|ICD10|Fracture of forearm, part unspecified|Fracture of forearm, part unspecified +C1305215|T037|AB|S52.9|ICD10CM|Unspecified fracture of forearm|Unspecified fracture of forearm +C1305215|T037|HT|S52.9|ICD10CM|Unspecified fracture of forearm|Unspecified fracture of forearm +C2847066|T037|AB|S52.90|ICD10CM|Unspecified fracture of unspecified forearm|Unspecified fracture of unspecified forearm +C2847066|T037|HT|S52.90|ICD10CM|Unspecified fracture of unspecified forearm|Unspecified fracture of unspecified forearm +C2847067|T037|AB|S52.90XA|ICD10CM|Unsp fracture of unsp forearm, init for clos fx|Unsp fracture of unsp forearm, init for clos fx +C2847067|T037|PT|S52.90XA|ICD10CM|Unspecified fracture of unspecified forearm, initial encounter for closed fracture|Unspecified fracture of unspecified forearm, initial encounter for closed fracture +C2847068|T037|AB|S52.90XB|ICD10CM|Unsp fracture of unsp forearm, init for opn fx type I/2|Unsp fracture of unsp forearm, init for opn fx type I/2 +C2847068|T037|PT|S52.90XB|ICD10CM|Unspecified fracture of unspecified forearm, initial encounter for open fracture type I or II|Unspecified fracture of unspecified forearm, initial encounter for open fracture type I or II +C2847069|T037|AB|S52.90XC|ICD10CM|Unsp fracture of unsp forearm, init for opn fx type 3A/B/C|Unsp fracture of unsp forearm, init for opn fx type 3A/B/C +C2847070|T037|AB|S52.90XD|ICD10CM|Unsp fracture of unsp forearm, subs for clos fx w routn heal|Unsp fracture of unsp forearm, subs for clos fx w routn heal +C2847071|T037|AB|S52.90XE|ICD10CM|Unsp fx unsp forearm, subs for opn fx type I/2 w routn heal|Unsp fx unsp forearm, subs for opn fx type I/2 w routn heal +C2847072|T037|AB|S52.90XF|ICD10CM|Unsp fx unsp forearm, 7thF|Unsp fx unsp forearm, 7thF +C2847073|T037|AB|S52.90XG|ICD10CM|Unsp fracture of unsp forearm, subs for clos fx w delay heal|Unsp fracture of unsp forearm, subs for clos fx w delay heal +C2847074|T037|AB|S52.90XH|ICD10CM|Unsp fx unsp forearm, subs for opn fx type I/2 w delay heal|Unsp fx unsp forearm, subs for opn fx type I/2 w delay heal +C2847075|T037|AB|S52.90XJ|ICD10CM|Unsp fx unsp forearm, 7thJ|Unsp fx unsp forearm, 7thJ +C2847076|T037|AB|S52.90XK|ICD10CM|Unsp fracture of unsp forearm, subs for clos fx w nonunion|Unsp fracture of unsp forearm, subs for clos fx w nonunion +C2847076|T037|PT|S52.90XK|ICD10CM|Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with nonunion|Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with nonunion +C2847077|T037|AB|S52.90XM|ICD10CM|Unsp fx unsp forearm, subs for opn fx type I/2 w nonunion|Unsp fx unsp forearm, subs for opn fx type I/2 w nonunion +C2847078|T037|AB|S52.90XN|ICD10CM|Unsp fx unsp forearm, subs for opn fx type 3A/B/C w nonunion|Unsp fx unsp forearm, subs for opn fx type 3A/B/C w nonunion +C2847079|T037|AB|S52.90XP|ICD10CM|Unsp fracture of unsp forearm, subs for clos fx w malunion|Unsp fracture of unsp forearm, subs for clos fx w malunion +C2847079|T037|PT|S52.90XP|ICD10CM|Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with malunion|Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with malunion +C2847080|T037|AB|S52.90XQ|ICD10CM|Unsp fx unsp forearm, subs for opn fx type I/2 w malunion|Unsp fx unsp forearm, subs for opn fx type I/2 w malunion +C2847081|T037|AB|S52.90XR|ICD10CM|Unsp fx unsp forearm, subs for opn fx type 3A/B/C w malunion|Unsp fx unsp forearm, subs for opn fx type 3A/B/C w malunion +C2847082|T037|AB|S52.90XS|ICD10CM|Unspecified fracture of unspecified forearm, sequela|Unspecified fracture of unspecified forearm, sequela +C2847082|T037|PT|S52.90XS|ICD10CM|Unspecified fracture of unspecified forearm, sequela|Unspecified fracture of unspecified forearm, sequela +C2847083|T037|AB|S52.91|ICD10CM|Unspecified fracture of right forearm|Unspecified fracture of right forearm +C2847083|T037|HT|S52.91|ICD10CM|Unspecified fracture of right forearm|Unspecified fracture of right forearm +C2847084|T037|AB|S52.91XA|ICD10CM|Unsp fracture of right forearm, init for clos fx|Unsp fracture of right forearm, init for clos fx +C2847084|T037|PT|S52.91XA|ICD10CM|Unspecified fracture of right forearm, initial encounter for closed fracture|Unspecified fracture of right forearm, initial encounter for closed fracture +C2847085|T037|AB|S52.91XB|ICD10CM|Unsp fracture of right forearm, init for opn fx type I/2|Unsp fracture of right forearm, init for opn fx type I/2 +C2847085|T037|PT|S52.91XB|ICD10CM|Unspecified fracture of right forearm, initial encounter for open fracture type I or II|Unspecified fracture of right forearm, initial encounter for open fracture type I or II +C2847086|T037|AB|S52.91XC|ICD10CM|Unsp fracture of right forearm, init for opn fx type 3A/B/C|Unsp fracture of right forearm, init for opn fx type 3A/B/C +C2847086|T037|PT|S52.91XC|ICD10CM|Unspecified fracture of right forearm, initial encounter for open fracture type IIIA, IIIB, or IIIC|Unspecified fracture of right forearm, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2847087|T037|AB|S52.91XD|ICD10CM|Unsp fracture of r forearm, subs for clos fx w routn heal|Unsp fracture of r forearm, subs for clos fx w routn heal +C2847087|T037|PT|S52.91XD|ICD10CM|Unspecified fracture of right forearm, subsequent encounter for closed fracture with routine healing|Unspecified fracture of right forearm, subsequent encounter for closed fracture with routine healing +C2847088|T037|AB|S52.91XE|ICD10CM|Unsp fx r forearm, subs for opn fx type I/2 w routn heal|Unsp fx r forearm, subs for opn fx type I/2 w routn heal +C2847089|T037|AB|S52.91XF|ICD10CM|Unsp fx r forearm, subs for opn fx type 3A/B/C w routn heal|Unsp fx r forearm, subs for opn fx type 3A/B/C w routn heal +C2847090|T037|AB|S52.91XG|ICD10CM|Unsp fracture of r forearm, subs for clos fx w delay heal|Unsp fracture of r forearm, subs for clos fx w delay heal +C2847090|T037|PT|S52.91XG|ICD10CM|Unspecified fracture of right forearm, subsequent encounter for closed fracture with delayed healing|Unspecified fracture of right forearm, subsequent encounter for closed fracture with delayed healing +C2847091|T037|AB|S52.91XH|ICD10CM|Unsp fx r forearm, subs for opn fx type I/2 w delay heal|Unsp fx r forearm, subs for opn fx type I/2 w delay heal +C2847092|T037|AB|S52.91XJ|ICD10CM|Unsp fx r forearm, subs for opn fx type 3A/B/C w delay heal|Unsp fx r forearm, subs for opn fx type 3A/B/C w delay heal +C2847093|T037|AB|S52.91XK|ICD10CM|Unsp fracture of right forearm, subs for clos fx w nonunion|Unsp fracture of right forearm, subs for clos fx w nonunion +C2847093|T037|PT|S52.91XK|ICD10CM|Unspecified fracture of right forearm, subsequent encounter for closed fracture with nonunion|Unspecified fracture of right forearm, subsequent encounter for closed fracture with nonunion +C2847094|T037|AB|S52.91XM|ICD10CM|Unsp fx r forearm, subs for opn fx type I/2 w nonunion|Unsp fx r forearm, subs for opn fx type I/2 w nonunion +C2847095|T037|AB|S52.91XN|ICD10CM|Unsp fx r forearm, subs for opn fx type 3A/B/C w nonunion|Unsp fx r forearm, subs for opn fx type 3A/B/C w nonunion +C2847096|T037|AB|S52.91XP|ICD10CM|Unsp fracture of right forearm, subs for clos fx w malunion|Unsp fracture of right forearm, subs for clos fx w malunion +C2847096|T037|PT|S52.91XP|ICD10CM|Unspecified fracture of right forearm, subsequent encounter for closed fracture with malunion|Unspecified fracture of right forearm, subsequent encounter for closed fracture with malunion +C2847097|T037|AB|S52.91XQ|ICD10CM|Unsp fx r forearm, subs for opn fx type I/2 w malunion|Unsp fx r forearm, subs for opn fx type I/2 w malunion +C2847098|T037|AB|S52.91XR|ICD10CM|Unsp fx r forearm, subs for opn fx type 3A/B/C w malunion|Unsp fx r forearm, subs for opn fx type 3A/B/C w malunion +C2847099|T037|AB|S52.91XS|ICD10CM|Unspecified fracture of right forearm, sequela|Unspecified fracture of right forearm, sequela +C2847099|T037|PT|S52.91XS|ICD10CM|Unspecified fracture of right forearm, sequela|Unspecified fracture of right forearm, sequela +C2847100|T037|AB|S52.92|ICD10CM|Unspecified fracture of left forearm|Unspecified fracture of left forearm +C2847100|T037|HT|S52.92|ICD10CM|Unspecified fracture of left forearm|Unspecified fracture of left forearm +C2847101|T037|AB|S52.92XA|ICD10CM|Unsp fracture of left forearm, init for clos fx|Unsp fracture of left forearm, init for clos fx +C2847101|T037|PT|S52.92XA|ICD10CM|Unspecified fracture of left forearm, initial encounter for closed fracture|Unspecified fracture of left forearm, initial encounter for closed fracture +C2847102|T037|AB|S52.92XB|ICD10CM|Unsp fracture of left forearm, init for opn fx type I/2|Unsp fracture of left forearm, init for opn fx type I/2 +C2847102|T037|PT|S52.92XB|ICD10CM|Unspecified fracture of left forearm, initial encounter for open fracture type I or II|Unspecified fracture of left forearm, initial encounter for open fracture type I or II +C2847103|T037|AB|S52.92XC|ICD10CM|Unsp fracture of left forearm, init for opn fx type 3A/B/C|Unsp fracture of left forearm, init for opn fx type 3A/B/C +C2847103|T037|PT|S52.92XC|ICD10CM|Unspecified fracture of left forearm, initial encounter for open fracture type IIIA, IIIB, or IIIC|Unspecified fracture of left forearm, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2847104|T037|AB|S52.92XD|ICD10CM|Unsp fracture of left forearm, subs for clos fx w routn heal|Unsp fracture of left forearm, subs for clos fx w routn heal +C2847104|T037|PT|S52.92XD|ICD10CM|Unspecified fracture of left forearm, subsequent encounter for closed fracture with routine healing|Unspecified fracture of left forearm, subsequent encounter for closed fracture with routine healing +C2847105|T037|AB|S52.92XE|ICD10CM|Unsp fx l forearm, subs for opn fx type I/2 w routn heal|Unsp fx l forearm, subs for opn fx type I/2 w routn heal +C2847106|T037|AB|S52.92XF|ICD10CM|Unsp fx l forearm, subs for opn fx type 3A/B/C w routn heal|Unsp fx l forearm, subs for opn fx type 3A/B/C w routn heal +C2847107|T037|AB|S52.92XG|ICD10CM|Unsp fracture of left forearm, subs for clos fx w delay heal|Unsp fracture of left forearm, subs for clos fx w delay heal +C2847107|T037|PT|S52.92XG|ICD10CM|Unspecified fracture of left forearm, subsequent encounter for closed fracture with delayed healing|Unspecified fracture of left forearm, subsequent encounter for closed fracture with delayed healing +C2847108|T037|AB|S52.92XH|ICD10CM|Unsp fx l forearm, subs for opn fx type I/2 w delay heal|Unsp fx l forearm, subs for opn fx type I/2 w delay heal +C2847109|T037|AB|S52.92XJ|ICD10CM|Unsp fx l forearm, subs for opn fx type 3A/B/C w delay heal|Unsp fx l forearm, subs for opn fx type 3A/B/C w delay heal +C2847110|T037|AB|S52.92XK|ICD10CM|Unsp fracture of left forearm, subs for clos fx w nonunion|Unsp fracture of left forearm, subs for clos fx w nonunion +C2847110|T037|PT|S52.92XK|ICD10CM|Unspecified fracture of left forearm, subsequent encounter for closed fracture with nonunion|Unspecified fracture of left forearm, subsequent encounter for closed fracture with nonunion +C2847111|T037|AB|S52.92XM|ICD10CM|Unsp fx l forearm, subs for opn fx type I/2 w nonunion|Unsp fx l forearm, subs for opn fx type I/2 w nonunion +C2847112|T037|AB|S52.92XN|ICD10CM|Unsp fx l forearm, subs for opn fx type 3A/B/C w nonunion|Unsp fx l forearm, subs for opn fx type 3A/B/C w nonunion +C2847113|T037|AB|S52.92XP|ICD10CM|Unsp fracture of left forearm, subs for clos fx w malunion|Unsp fracture of left forearm, subs for clos fx w malunion +C2847113|T037|PT|S52.92XP|ICD10CM|Unspecified fracture of left forearm, subsequent encounter for closed fracture with malunion|Unspecified fracture of left forearm, subsequent encounter for closed fracture with malunion +C2847114|T037|AB|S52.92XQ|ICD10CM|Unsp fx l forearm, subs for opn fx type I/2 w malunion|Unsp fx l forearm, subs for opn fx type I/2 w malunion +C2847115|T037|AB|S52.92XR|ICD10CM|Unsp fx l forearm, subs for opn fx type 3A/B/C w malunion|Unsp fx l forearm, subs for opn fx type 3A/B/C w malunion +C2847116|T037|AB|S52.92XS|ICD10CM|Unspecified fracture of left forearm, sequela|Unspecified fracture of left forearm, sequela +C2847116|T037|PT|S52.92XS|ICD10CM|Unspecified fracture of left forearm, sequela|Unspecified fracture of left forearm, sequela +C4290351|T037|ET|S53|ICD10CM|avulsion of joint or ligament of elbow|avulsion of joint or ligament of elbow +C2847124|T037|AB|S53|ICD10CM|Dislocation and sprain of joints and ligaments of elbow|Dislocation and sprain of joints and ligaments of elbow +C2847124|T037|HT|S53|ICD10CM|Dislocation and sprain of joints and ligaments of elbow|Dislocation and sprain of joints and ligaments of elbow +C0495875|T037|HT|S53|ICD10|Dislocation, sprain and strain of joints and ligaments of elbow|Dislocation, sprain and strain of joints and ligaments of elbow +C4290352|T037|ET|S53|ICD10CM|laceration of cartilage, joint or ligament of elbow|laceration of cartilage, joint or ligament of elbow +C4290353|T037|ET|S53|ICD10CM|sprain of cartilage, joint or ligament of elbow|sprain of cartilage, joint or ligament of elbow +C4290354|T037|ET|S53|ICD10CM|traumatic hemarthrosis of joint or ligament of elbow|traumatic hemarthrosis of joint or ligament of elbow +C4290355|T037|ET|S53|ICD10CM|traumatic rupture of joint or ligament of elbow|traumatic rupture of joint or ligament of elbow +C4290356|T037|ET|S53|ICD10CM|traumatic subluxation of joint or ligament of elbow|traumatic subluxation of joint or ligament of elbow +C4290357|T037|ET|S53|ICD10CM|traumatic tear of joint or ligament of elbow|traumatic tear of joint or ligament of elbow +C0434609|T037|PT|S53.0|ICD10|Dislocation of radial head|Dislocation of radial head +C2847125|T037|ET|S53.0|ICD10CM|Dislocation of radiohumeral joint|Dislocation of radiohumeral joint +C1832118|T037|HT|S53.0|ICD10CM|Subluxation and dislocation of radial head|Subluxation and dislocation of radial head +C1832118|T037|AB|S53.0|ICD10CM|Subluxation and dislocation of radial head|Subluxation and dislocation of radial head +C2847126|T037|ET|S53.0|ICD10CM|Subluxation of radiohumeral joint|Subluxation of radiohumeral joint +C2847127|T037|AB|S53.00|ICD10CM|Unspecified subluxation and dislocation of radial head|Unspecified subluxation and dislocation of radial head +C2847127|T037|HT|S53.00|ICD10CM|Unspecified subluxation and dislocation of radial head|Unspecified subluxation and dislocation of radial head +C2847128|T037|AB|S53.001|ICD10CM|Unspecified subluxation of right radial head|Unspecified subluxation of right radial head +C2847128|T037|HT|S53.001|ICD10CM|Unspecified subluxation of right radial head|Unspecified subluxation of right radial head +C2847129|T037|AB|S53.001A|ICD10CM|Unspecified subluxation of right radial head, init encntr|Unspecified subluxation of right radial head, init encntr +C2847129|T037|PT|S53.001A|ICD10CM|Unspecified subluxation of right radial head, initial encounter|Unspecified subluxation of right radial head, initial encounter +C2847130|T037|AB|S53.001D|ICD10CM|Unspecified subluxation of right radial head, subs encntr|Unspecified subluxation of right radial head, subs encntr +C2847130|T037|PT|S53.001D|ICD10CM|Unspecified subluxation of right radial head, subsequent encounter|Unspecified subluxation of right radial head, subsequent encounter +C2847131|T037|PT|S53.001S|ICD10CM|Unspecified subluxation of right radial head, sequela|Unspecified subluxation of right radial head, sequela +C2847131|T037|AB|S53.001S|ICD10CM|Unspecified subluxation of right radial head, sequela|Unspecified subluxation of right radial head, sequela +C2847132|T037|AB|S53.002|ICD10CM|Unspecified subluxation of left radial head|Unspecified subluxation of left radial head +C2847132|T037|HT|S53.002|ICD10CM|Unspecified subluxation of left radial head|Unspecified subluxation of left radial head +C2847133|T037|AB|S53.002A|ICD10CM|Unspecified subluxation of left radial head, init encntr|Unspecified subluxation of left radial head, init encntr +C2847133|T037|PT|S53.002A|ICD10CM|Unspecified subluxation of left radial head, initial encounter|Unspecified subluxation of left radial head, initial encounter +C2847134|T037|AB|S53.002D|ICD10CM|Unspecified subluxation of left radial head, subs encntr|Unspecified subluxation of left radial head, subs encntr +C2847134|T037|PT|S53.002D|ICD10CM|Unspecified subluxation of left radial head, subsequent encounter|Unspecified subluxation of left radial head, subsequent encounter +C2847135|T037|PT|S53.002S|ICD10CM|Unspecified subluxation of left radial head, sequela|Unspecified subluxation of left radial head, sequela +C2847135|T037|AB|S53.002S|ICD10CM|Unspecified subluxation of left radial head, sequela|Unspecified subluxation of left radial head, sequela +C2847136|T037|AB|S53.003|ICD10CM|Unspecified subluxation of unspecified radial head|Unspecified subluxation of unspecified radial head +C2847136|T037|HT|S53.003|ICD10CM|Unspecified subluxation of unspecified radial head|Unspecified subluxation of unspecified radial head +C2847137|T037|AB|S53.003A|ICD10CM|Unsp subluxation of unspecified radial head, init encntr|Unsp subluxation of unspecified radial head, init encntr +C2847137|T037|PT|S53.003A|ICD10CM|Unspecified subluxation of unspecified radial head, initial encounter|Unspecified subluxation of unspecified radial head, initial encounter +C2847138|T037|AB|S53.003D|ICD10CM|Unsp subluxation of unspecified radial head, subs encntr|Unsp subluxation of unspecified radial head, subs encntr +C2847138|T037|PT|S53.003D|ICD10CM|Unspecified subluxation of unspecified radial head, subsequent encounter|Unspecified subluxation of unspecified radial head, subsequent encounter +C2847139|T037|PT|S53.003S|ICD10CM|Unspecified subluxation of unspecified radial head, sequela|Unspecified subluxation of unspecified radial head, sequela +C2847139|T037|AB|S53.003S|ICD10CM|Unspecified subluxation of unspecified radial head, sequela|Unspecified subluxation of unspecified radial head, sequela +C2847140|T037|AB|S53.004|ICD10CM|Unspecified dislocation of right radial head|Unspecified dislocation of right radial head +C2847140|T037|HT|S53.004|ICD10CM|Unspecified dislocation of right radial head|Unspecified dislocation of right radial head +C2847141|T037|AB|S53.004A|ICD10CM|Unspecified dislocation of right radial head, init encntr|Unspecified dislocation of right radial head, init encntr +C2847141|T037|PT|S53.004A|ICD10CM|Unspecified dislocation of right radial head, initial encounter|Unspecified dislocation of right radial head, initial encounter +C2847142|T037|AB|S53.004D|ICD10CM|Unspecified dislocation of right radial head, subs encntr|Unspecified dislocation of right radial head, subs encntr +C2847142|T037|PT|S53.004D|ICD10CM|Unspecified dislocation of right radial head, subsequent encounter|Unspecified dislocation of right radial head, subsequent encounter +C2847143|T037|PT|S53.004S|ICD10CM|Unspecified dislocation of right radial head, sequela|Unspecified dislocation of right radial head, sequela +C2847143|T037|AB|S53.004S|ICD10CM|Unspecified dislocation of right radial head, sequela|Unspecified dislocation of right radial head, sequela +C2847144|T037|AB|S53.005|ICD10CM|Unspecified dislocation of left radial head|Unspecified dislocation of left radial head +C2847144|T037|HT|S53.005|ICD10CM|Unspecified dislocation of left radial head|Unspecified dislocation of left radial head +C2847145|T037|AB|S53.005A|ICD10CM|Unspecified dislocation of left radial head, init encntr|Unspecified dislocation of left radial head, init encntr +C2847145|T037|PT|S53.005A|ICD10CM|Unspecified dislocation of left radial head, initial encounter|Unspecified dislocation of left radial head, initial encounter +C2847146|T037|AB|S53.005D|ICD10CM|Unspecified dislocation of left radial head, subs encntr|Unspecified dislocation of left radial head, subs encntr +C2847146|T037|PT|S53.005D|ICD10CM|Unspecified dislocation of left radial head, subsequent encounter|Unspecified dislocation of left radial head, subsequent encounter +C2847147|T037|PT|S53.005S|ICD10CM|Unspecified dislocation of left radial head, sequela|Unspecified dislocation of left radial head, sequela +C2847147|T037|AB|S53.005S|ICD10CM|Unspecified dislocation of left radial head, sequela|Unspecified dislocation of left radial head, sequela +C2847148|T037|AB|S53.006|ICD10CM|Unspecified dislocation of unspecified radial head|Unspecified dislocation of unspecified radial head +C2847148|T037|HT|S53.006|ICD10CM|Unspecified dislocation of unspecified radial head|Unspecified dislocation of unspecified radial head +C2847149|T037|AB|S53.006A|ICD10CM|Unsp dislocation of unspecified radial head, init encntr|Unsp dislocation of unspecified radial head, init encntr +C2847149|T037|PT|S53.006A|ICD10CM|Unspecified dislocation of unspecified radial head, initial encounter|Unspecified dislocation of unspecified radial head, initial encounter +C2847150|T037|AB|S53.006D|ICD10CM|Unsp dislocation of unspecified radial head, subs encntr|Unsp dislocation of unspecified radial head, subs encntr +C2847150|T037|PT|S53.006D|ICD10CM|Unspecified dislocation of unspecified radial head, subsequent encounter|Unspecified dislocation of unspecified radial head, subsequent encounter +C2847151|T037|PT|S53.006S|ICD10CM|Unspecified dislocation of unspecified radial head, sequela|Unspecified dislocation of unspecified radial head, sequela +C2847151|T037|AB|S53.006S|ICD10CM|Unspecified dislocation of unspecified radial head, sequela|Unspecified dislocation of unspecified radial head, sequela +C2847152|T190|ET|S53.01|ICD10CM|Anteriomedial subluxation and dislocation of radial head|Anteriomedial subluxation and dislocation of radial head +C2847153|T037|AB|S53.01|ICD10CM|Anterior subluxation and dislocation of radial head|Anterior subluxation and dislocation of radial head +C2847153|T037|HT|S53.01|ICD10CM|Anterior subluxation and dislocation of radial head|Anterior subluxation and dislocation of radial head +C2847154|T037|AB|S53.011|ICD10CM|Anterior subluxation of right radial head|Anterior subluxation of right radial head +C2847154|T037|HT|S53.011|ICD10CM|Anterior subluxation of right radial head|Anterior subluxation of right radial head +C2847155|T037|AB|S53.011A|ICD10CM|Anterior subluxation of right radial head, initial encounter|Anterior subluxation of right radial head, initial encounter +C2847155|T037|PT|S53.011A|ICD10CM|Anterior subluxation of right radial head, initial encounter|Anterior subluxation of right radial head, initial encounter +C2847156|T037|AB|S53.011D|ICD10CM|Anterior subluxation of right radial head, subs encntr|Anterior subluxation of right radial head, subs encntr +C2847156|T037|PT|S53.011D|ICD10CM|Anterior subluxation of right radial head, subsequent encounter|Anterior subluxation of right radial head, subsequent encounter +C2847157|T037|PT|S53.011S|ICD10CM|Anterior subluxation of right radial head, sequela|Anterior subluxation of right radial head, sequela +C2847157|T037|AB|S53.011S|ICD10CM|Anterior subluxation of right radial head, sequela|Anterior subluxation of right radial head, sequela +C2847158|T037|AB|S53.012|ICD10CM|Anterior subluxation of left radial head|Anterior subluxation of left radial head +C2847158|T037|HT|S53.012|ICD10CM|Anterior subluxation of left radial head|Anterior subluxation of left radial head +C2847159|T037|PT|S53.012A|ICD10CM|Anterior subluxation of left radial head, initial encounter|Anterior subluxation of left radial head, initial encounter +C2847159|T037|AB|S53.012A|ICD10CM|Anterior subluxation of left radial head, initial encounter|Anterior subluxation of left radial head, initial encounter +C2847160|T037|AB|S53.012D|ICD10CM|Anterior subluxation of left radial head, subs encntr|Anterior subluxation of left radial head, subs encntr +C2847160|T037|PT|S53.012D|ICD10CM|Anterior subluxation of left radial head, subsequent encounter|Anterior subluxation of left radial head, subsequent encounter +C2847161|T037|PT|S53.012S|ICD10CM|Anterior subluxation of left radial head, sequela|Anterior subluxation of left radial head, sequela +C2847161|T037|AB|S53.012S|ICD10CM|Anterior subluxation of left radial head, sequela|Anterior subluxation of left radial head, sequela +C2847162|T037|AB|S53.013|ICD10CM|Anterior subluxation of unspecified radial head|Anterior subluxation of unspecified radial head +C2847162|T037|HT|S53.013|ICD10CM|Anterior subluxation of unspecified radial head|Anterior subluxation of unspecified radial head +C2847163|T037|AB|S53.013A|ICD10CM|Anterior subluxation of unspecified radial head, init encntr|Anterior subluxation of unspecified radial head, init encntr +C2847163|T037|PT|S53.013A|ICD10CM|Anterior subluxation of unspecified radial head, initial encounter|Anterior subluxation of unspecified radial head, initial encounter +C2847164|T037|AB|S53.013D|ICD10CM|Anterior subluxation of unspecified radial head, subs encntr|Anterior subluxation of unspecified radial head, subs encntr +C2847164|T037|PT|S53.013D|ICD10CM|Anterior subluxation of unspecified radial head, subsequent encounter|Anterior subluxation of unspecified radial head, subsequent encounter +C2847165|T037|PT|S53.013S|ICD10CM|Anterior subluxation of unspecified radial head, sequela|Anterior subluxation of unspecified radial head, sequela +C2847165|T037|AB|S53.013S|ICD10CM|Anterior subluxation of unspecified radial head, sequela|Anterior subluxation of unspecified radial head, sequela +C2847166|T037|AB|S53.014|ICD10CM|Anterior dislocation of right radial head|Anterior dislocation of right radial head +C2847166|T037|HT|S53.014|ICD10CM|Anterior dislocation of right radial head|Anterior dislocation of right radial head +C2847167|T037|AB|S53.014A|ICD10CM|Anterior dislocation of right radial head, initial encounter|Anterior dislocation of right radial head, initial encounter +C2847167|T037|PT|S53.014A|ICD10CM|Anterior dislocation of right radial head, initial encounter|Anterior dislocation of right radial head, initial encounter +C2847168|T037|AB|S53.014D|ICD10CM|Anterior dislocation of right radial head, subs encntr|Anterior dislocation of right radial head, subs encntr +C2847168|T037|PT|S53.014D|ICD10CM|Anterior dislocation of right radial head, subsequent encounter|Anterior dislocation of right radial head, subsequent encounter +C2847169|T037|PT|S53.014S|ICD10CM|Anterior dislocation of right radial head, sequela|Anterior dislocation of right radial head, sequela +C2847169|T037|AB|S53.014S|ICD10CM|Anterior dislocation of right radial head, sequela|Anterior dislocation of right radial head, sequela +C2847170|T037|AB|S53.015|ICD10CM|Anterior dislocation of left radial head|Anterior dislocation of left radial head +C2847170|T037|HT|S53.015|ICD10CM|Anterior dislocation of left radial head|Anterior dislocation of left radial head +C2847171|T037|PT|S53.015A|ICD10CM|Anterior dislocation of left radial head, initial encounter|Anterior dislocation of left radial head, initial encounter +C2847171|T037|AB|S53.015A|ICD10CM|Anterior dislocation of left radial head, initial encounter|Anterior dislocation of left radial head, initial encounter +C2847172|T037|AB|S53.015D|ICD10CM|Anterior dislocation of left radial head, subs encntr|Anterior dislocation of left radial head, subs encntr +C2847172|T037|PT|S53.015D|ICD10CM|Anterior dislocation of left radial head, subsequent encounter|Anterior dislocation of left radial head, subsequent encounter +C2847173|T037|PT|S53.015S|ICD10CM|Anterior dislocation of left radial head, sequela|Anterior dislocation of left radial head, sequela +C2847173|T037|AB|S53.015S|ICD10CM|Anterior dislocation of left radial head, sequela|Anterior dislocation of left radial head, sequela +C2847174|T037|AB|S53.016|ICD10CM|Anterior dislocation of unspecified radial head|Anterior dislocation of unspecified radial head +C2847174|T037|HT|S53.016|ICD10CM|Anterior dislocation of unspecified radial head|Anterior dislocation of unspecified radial head +C2847175|T037|AB|S53.016A|ICD10CM|Anterior dislocation of unspecified radial head, init encntr|Anterior dislocation of unspecified radial head, init encntr +C2847175|T037|PT|S53.016A|ICD10CM|Anterior dislocation of unspecified radial head, initial encounter|Anterior dislocation of unspecified radial head, initial encounter +C2847176|T037|AB|S53.016D|ICD10CM|Anterior dislocation of unspecified radial head, subs encntr|Anterior dislocation of unspecified radial head, subs encntr +C2847176|T037|PT|S53.016D|ICD10CM|Anterior dislocation of unspecified radial head, subsequent encounter|Anterior dislocation of unspecified radial head, subsequent encounter +C2847177|T037|PT|S53.016S|ICD10CM|Anterior dislocation of unspecified radial head, sequela|Anterior dislocation of unspecified radial head, sequela +C2847177|T037|AB|S53.016S|ICD10CM|Anterior dislocation of unspecified radial head, sequela|Anterior dislocation of unspecified radial head, sequela +C2847178|T037|ET|S53.02|ICD10CM|Posteriolateral subluxation and dislocation of radial head|Posteriolateral subluxation and dislocation of radial head +C2847179|T037|AB|S53.02|ICD10CM|Posterior subluxation and dislocation of radial head|Posterior subluxation and dislocation of radial head +C2847179|T037|HT|S53.02|ICD10CM|Posterior subluxation and dislocation of radial head|Posterior subluxation and dislocation of radial head +C2847180|T037|AB|S53.021|ICD10CM|Posterior subluxation of right radial head|Posterior subluxation of right radial head +C2847180|T037|HT|S53.021|ICD10CM|Posterior subluxation of right radial head|Posterior subluxation of right radial head +C2847181|T037|AB|S53.021A|ICD10CM|Posterior subluxation of right radial head, init encntr|Posterior subluxation of right radial head, init encntr +C2847181|T037|PT|S53.021A|ICD10CM|Posterior subluxation of right radial head, initial encounter|Posterior subluxation of right radial head, initial encounter +C2847182|T037|AB|S53.021D|ICD10CM|Posterior subluxation of right radial head, subs encntr|Posterior subluxation of right radial head, subs encntr +C2847182|T037|PT|S53.021D|ICD10CM|Posterior subluxation of right radial head, subsequent encounter|Posterior subluxation of right radial head, subsequent encounter +C2847183|T037|PT|S53.021S|ICD10CM|Posterior subluxation of right radial head, sequela|Posterior subluxation of right radial head, sequela +C2847183|T037|AB|S53.021S|ICD10CM|Posterior subluxation of right radial head, sequela|Posterior subluxation of right radial head, sequela +C2847184|T037|AB|S53.022|ICD10CM|Posterior subluxation of left radial head|Posterior subluxation of left radial head +C2847184|T037|HT|S53.022|ICD10CM|Posterior subluxation of left radial head|Posterior subluxation of left radial head +C2847185|T037|AB|S53.022A|ICD10CM|Posterior subluxation of left radial head, initial encounter|Posterior subluxation of left radial head, initial encounter +C2847185|T037|PT|S53.022A|ICD10CM|Posterior subluxation of left radial head, initial encounter|Posterior subluxation of left radial head, initial encounter +C2847186|T037|AB|S53.022D|ICD10CM|Posterior subluxation of left radial head, subs encntr|Posterior subluxation of left radial head, subs encntr +C2847186|T037|PT|S53.022D|ICD10CM|Posterior subluxation of left radial head, subsequent encounter|Posterior subluxation of left radial head, subsequent encounter +C2847187|T037|PT|S53.022S|ICD10CM|Posterior subluxation of left radial head, sequela|Posterior subluxation of left radial head, sequela +C2847187|T037|AB|S53.022S|ICD10CM|Posterior subluxation of left radial head, sequela|Posterior subluxation of left radial head, sequela +C2847188|T037|AB|S53.023|ICD10CM|Posterior subluxation of unspecified radial head|Posterior subluxation of unspecified radial head +C2847188|T037|HT|S53.023|ICD10CM|Posterior subluxation of unspecified radial head|Posterior subluxation of unspecified radial head +C2847189|T037|AB|S53.023A|ICD10CM|Posterior subluxation of unsp radial head, init encntr|Posterior subluxation of unsp radial head, init encntr +C2847189|T037|PT|S53.023A|ICD10CM|Posterior subluxation of unspecified radial head, initial encounter|Posterior subluxation of unspecified radial head, initial encounter +C2847190|T037|AB|S53.023D|ICD10CM|Posterior subluxation of unsp radial head, subs encntr|Posterior subluxation of unsp radial head, subs encntr +C2847190|T037|PT|S53.023D|ICD10CM|Posterior subluxation of unspecified radial head, subsequent encounter|Posterior subluxation of unspecified radial head, subsequent encounter +C2847191|T037|PT|S53.023S|ICD10CM|Posterior subluxation of unspecified radial head, sequela|Posterior subluxation of unspecified radial head, sequela +C2847191|T037|AB|S53.023S|ICD10CM|Posterior subluxation of unspecified radial head, sequela|Posterior subluxation of unspecified radial head, sequela +C2847192|T037|AB|S53.024|ICD10CM|Posterior dislocation of right radial head|Posterior dislocation of right radial head +C2847192|T037|HT|S53.024|ICD10CM|Posterior dislocation of right radial head|Posterior dislocation of right radial head +C2847193|T037|AB|S53.024A|ICD10CM|Posterior dislocation of right radial head, init encntr|Posterior dislocation of right radial head, init encntr +C2847193|T037|PT|S53.024A|ICD10CM|Posterior dislocation of right radial head, initial encounter|Posterior dislocation of right radial head, initial encounter +C2847194|T037|AB|S53.024D|ICD10CM|Posterior dislocation of right radial head, subs encntr|Posterior dislocation of right radial head, subs encntr +C2847194|T037|PT|S53.024D|ICD10CM|Posterior dislocation of right radial head, subsequent encounter|Posterior dislocation of right radial head, subsequent encounter +C2847195|T037|PT|S53.024S|ICD10CM|Posterior dislocation of right radial head, sequela|Posterior dislocation of right radial head, sequela +C2847195|T037|AB|S53.024S|ICD10CM|Posterior dislocation of right radial head, sequela|Posterior dislocation of right radial head, sequela +C2847196|T037|AB|S53.025|ICD10CM|Posterior dislocation of left radial head|Posterior dislocation of left radial head +C2847196|T037|HT|S53.025|ICD10CM|Posterior dislocation of left radial head|Posterior dislocation of left radial head +C2847197|T037|AB|S53.025A|ICD10CM|Posterior dislocation of left radial head, initial encounter|Posterior dislocation of left radial head, initial encounter +C2847197|T037|PT|S53.025A|ICD10CM|Posterior dislocation of left radial head, initial encounter|Posterior dislocation of left radial head, initial encounter +C2847198|T037|AB|S53.025D|ICD10CM|Posterior dislocation of left radial head, subs encntr|Posterior dislocation of left radial head, subs encntr +C2847198|T037|PT|S53.025D|ICD10CM|Posterior dislocation of left radial head, subsequent encounter|Posterior dislocation of left radial head, subsequent encounter +C2847199|T037|PT|S53.025S|ICD10CM|Posterior dislocation of left radial head, sequela|Posterior dislocation of left radial head, sequela +C2847199|T037|AB|S53.025S|ICD10CM|Posterior dislocation of left radial head, sequela|Posterior dislocation of left radial head, sequela +C2847200|T037|AB|S53.026|ICD10CM|Posterior dislocation of unspecified radial head|Posterior dislocation of unspecified radial head +C2847200|T037|HT|S53.026|ICD10CM|Posterior dislocation of unspecified radial head|Posterior dislocation of unspecified radial head +C2847201|T037|AB|S53.026A|ICD10CM|Posterior dislocation of unsp radial head, init encntr|Posterior dislocation of unsp radial head, init encntr +C2847201|T037|PT|S53.026A|ICD10CM|Posterior dislocation of unspecified radial head, initial encounter|Posterior dislocation of unspecified radial head, initial encounter +C2847202|T037|AB|S53.026D|ICD10CM|Posterior dislocation of unsp radial head, subs encntr|Posterior dislocation of unsp radial head, subs encntr +C2847202|T037|PT|S53.026D|ICD10CM|Posterior dislocation of unspecified radial head, subsequent encounter|Posterior dislocation of unspecified radial head, subsequent encounter +C2847203|T037|PT|S53.026S|ICD10CM|Posterior dislocation of unspecified radial head, sequela|Posterior dislocation of unspecified radial head, sequela +C2847203|T037|AB|S53.026S|ICD10CM|Posterior dislocation of unspecified radial head, sequela|Posterior dislocation of unspecified radial head, sequela +C0149977|T037|HT|S53.03|ICD10CM|Nursemaid's elbow|Nursemaid's elbow +C0149977|T037|AB|S53.03|ICD10CM|Nursemaid's elbow|Nursemaid's elbow +C2847204|T037|AB|S53.031|ICD10CM|Nursemaid's elbow, right elbow|Nursemaid's elbow, right elbow +C2847204|T037|HT|S53.031|ICD10CM|Nursemaid's elbow, right elbow|Nursemaid's elbow, right elbow +C2847205|T037|AB|S53.031A|ICD10CM|Nursemaid's elbow, right elbow, initial encounter|Nursemaid's elbow, right elbow, initial encounter +C2847205|T037|PT|S53.031A|ICD10CM|Nursemaid's elbow, right elbow, initial encounter|Nursemaid's elbow, right elbow, initial encounter +C2847206|T037|AB|S53.031D|ICD10CM|Nursemaid's elbow, right elbow, subsequent encounter|Nursemaid's elbow, right elbow, subsequent encounter +C2847206|T037|PT|S53.031D|ICD10CM|Nursemaid's elbow, right elbow, subsequent encounter|Nursemaid's elbow, right elbow, subsequent encounter +C2847207|T037|AB|S53.031S|ICD10CM|Nursemaid's elbow, right elbow, sequela|Nursemaid's elbow, right elbow, sequela +C2847207|T037|PT|S53.031S|ICD10CM|Nursemaid's elbow, right elbow, sequela|Nursemaid's elbow, right elbow, sequela +C2847208|T037|AB|S53.032|ICD10CM|Nursemaid's elbow, left elbow|Nursemaid's elbow, left elbow +C2847208|T037|HT|S53.032|ICD10CM|Nursemaid's elbow, left elbow|Nursemaid's elbow, left elbow +C2847209|T037|AB|S53.032A|ICD10CM|Nursemaid's elbow, left elbow, initial encounter|Nursemaid's elbow, left elbow, initial encounter +C2847209|T037|PT|S53.032A|ICD10CM|Nursemaid's elbow, left elbow, initial encounter|Nursemaid's elbow, left elbow, initial encounter +C2847210|T037|AB|S53.032D|ICD10CM|Nursemaid's elbow, left elbow, subsequent encounter|Nursemaid's elbow, left elbow, subsequent encounter +C2847210|T037|PT|S53.032D|ICD10CM|Nursemaid's elbow, left elbow, subsequent encounter|Nursemaid's elbow, left elbow, subsequent encounter +C2847211|T037|AB|S53.032S|ICD10CM|Nursemaid's elbow, left elbow, sequela|Nursemaid's elbow, left elbow, sequela +C2847211|T037|PT|S53.032S|ICD10CM|Nursemaid's elbow, left elbow, sequela|Nursemaid's elbow, left elbow, sequela +C2847212|T037|AB|S53.033|ICD10CM|Nursemaid's elbow, unspecified elbow|Nursemaid's elbow, unspecified elbow +C2847212|T037|HT|S53.033|ICD10CM|Nursemaid's elbow, unspecified elbow|Nursemaid's elbow, unspecified elbow +C2847213|T037|AB|S53.033A|ICD10CM|Nursemaid's elbow, unspecified elbow, initial encounter|Nursemaid's elbow, unspecified elbow, initial encounter +C2847213|T037|PT|S53.033A|ICD10CM|Nursemaid's elbow, unspecified elbow, initial encounter|Nursemaid's elbow, unspecified elbow, initial encounter +C2847214|T037|AB|S53.033D|ICD10CM|Nursemaid's elbow, unspecified elbow, subsequent encounter|Nursemaid's elbow, unspecified elbow, subsequent encounter +C2847214|T037|PT|S53.033D|ICD10CM|Nursemaid's elbow, unspecified elbow, subsequent encounter|Nursemaid's elbow, unspecified elbow, subsequent encounter +C2847215|T037|AB|S53.033S|ICD10CM|Nursemaid's elbow, unspecified elbow, sequela|Nursemaid's elbow, unspecified elbow, sequela +C2847215|T037|PT|S53.033S|ICD10CM|Nursemaid's elbow, unspecified elbow, sequela|Nursemaid's elbow, unspecified elbow, sequela +C2847216|T037|AB|S53.09|ICD10CM|Other subluxation and dislocation of radial head|Other subluxation and dislocation of radial head +C2847216|T037|HT|S53.09|ICD10CM|Other subluxation and dislocation of radial head|Other subluxation and dislocation of radial head +C2847217|T037|AB|S53.091|ICD10CM|Other subluxation of right radial head|Other subluxation of right radial head +C2847217|T037|HT|S53.091|ICD10CM|Other subluxation of right radial head|Other subluxation of right radial head +C2847218|T037|PT|S53.091A|ICD10CM|Other subluxation of right radial head, initial encounter|Other subluxation of right radial head, initial encounter +C2847218|T037|AB|S53.091A|ICD10CM|Other subluxation of right radial head, initial encounter|Other subluxation of right radial head, initial encounter +C2847219|T037|AB|S53.091D|ICD10CM|Other subluxation of right radial head, subsequent encounter|Other subluxation of right radial head, subsequent encounter +C2847219|T037|PT|S53.091D|ICD10CM|Other subluxation of right radial head, subsequent encounter|Other subluxation of right radial head, subsequent encounter +C2847220|T037|PT|S53.091S|ICD10CM|Other subluxation of right radial head, sequela|Other subluxation of right radial head, sequela +C2847220|T037|AB|S53.091S|ICD10CM|Other subluxation of right radial head, sequela|Other subluxation of right radial head, sequela +C2847221|T037|AB|S53.092|ICD10CM|Other subluxation of left radial head|Other subluxation of left radial head +C2847221|T037|HT|S53.092|ICD10CM|Other subluxation of left radial head|Other subluxation of left radial head +C2847222|T037|PT|S53.092A|ICD10CM|Other subluxation of left radial head, initial encounter|Other subluxation of left radial head, initial encounter +C2847222|T037|AB|S53.092A|ICD10CM|Other subluxation of left radial head, initial encounter|Other subluxation of left radial head, initial encounter +C2847223|T037|PT|S53.092D|ICD10CM|Other subluxation of left radial head, subsequent encounter|Other subluxation of left radial head, subsequent encounter +C2847223|T037|AB|S53.092D|ICD10CM|Other subluxation of left radial head, subsequent encounter|Other subluxation of left radial head, subsequent encounter +C2847224|T037|PT|S53.092S|ICD10CM|Other subluxation of left radial head, sequela|Other subluxation of left radial head, sequela +C2847224|T037|AB|S53.092S|ICD10CM|Other subluxation of left radial head, sequela|Other subluxation of left radial head, sequela +C2847225|T037|AB|S53.093|ICD10CM|Other subluxation of unspecified radial head|Other subluxation of unspecified radial head +C2847225|T037|HT|S53.093|ICD10CM|Other subluxation of unspecified radial head|Other subluxation of unspecified radial head +C2847226|T037|AB|S53.093A|ICD10CM|Other subluxation of unspecified radial head, init encntr|Other subluxation of unspecified radial head, init encntr +C2847226|T037|PT|S53.093A|ICD10CM|Other subluxation of unspecified radial head, initial encounter|Other subluxation of unspecified radial head, initial encounter +C2847227|T037|AB|S53.093D|ICD10CM|Other subluxation of unspecified radial head, subs encntr|Other subluxation of unspecified radial head, subs encntr +C2847227|T037|PT|S53.093D|ICD10CM|Other subluxation of unspecified radial head, subsequent encounter|Other subluxation of unspecified radial head, subsequent encounter +C2847228|T037|PT|S53.093S|ICD10CM|Other subluxation of unspecified radial head, sequela|Other subluxation of unspecified radial head, sequela +C2847228|T037|AB|S53.093S|ICD10CM|Other subluxation of unspecified radial head, sequela|Other subluxation of unspecified radial head, sequela +C2847229|T037|AB|S53.094|ICD10CM|Other dislocation of right radial head|Other dislocation of right radial head +C2847229|T037|HT|S53.094|ICD10CM|Other dislocation of right radial head|Other dislocation of right radial head +C2847230|T037|PT|S53.094A|ICD10CM|Other dislocation of right radial head, initial encounter|Other dislocation of right radial head, initial encounter +C2847230|T037|AB|S53.094A|ICD10CM|Other dislocation of right radial head, initial encounter|Other dislocation of right radial head, initial encounter +C2847231|T037|AB|S53.094D|ICD10CM|Other dislocation of right radial head, subsequent encounter|Other dislocation of right radial head, subsequent encounter +C2847231|T037|PT|S53.094D|ICD10CM|Other dislocation of right radial head, subsequent encounter|Other dislocation of right radial head, subsequent encounter +C2847232|T037|PT|S53.094S|ICD10CM|Other dislocation of right radial head, sequela|Other dislocation of right radial head, sequela +C2847232|T037|AB|S53.094S|ICD10CM|Other dislocation of right radial head, sequela|Other dislocation of right radial head, sequela +C2847233|T037|AB|S53.095|ICD10CM|Other dislocation of left radial head|Other dislocation of left radial head +C2847233|T037|HT|S53.095|ICD10CM|Other dislocation of left radial head|Other dislocation of left radial head +C2847234|T037|PT|S53.095A|ICD10CM|Other dislocation of left radial head, initial encounter|Other dislocation of left radial head, initial encounter +C2847234|T037|AB|S53.095A|ICD10CM|Other dislocation of left radial head, initial encounter|Other dislocation of left radial head, initial encounter +C2847235|T037|PT|S53.095D|ICD10CM|Other dislocation of left radial head, subsequent encounter|Other dislocation of left radial head, subsequent encounter +C2847235|T037|AB|S53.095D|ICD10CM|Other dislocation of left radial head, subsequent encounter|Other dislocation of left radial head, subsequent encounter +C2847236|T037|PT|S53.095S|ICD10CM|Other dislocation of left radial head, sequela|Other dislocation of left radial head, sequela +C2847236|T037|AB|S53.095S|ICD10CM|Other dislocation of left radial head, sequela|Other dislocation of left radial head, sequela +C2847237|T037|AB|S53.096|ICD10CM|Other dislocation of unspecified radial head|Other dislocation of unspecified radial head +C2847237|T037|HT|S53.096|ICD10CM|Other dislocation of unspecified radial head|Other dislocation of unspecified radial head +C2847238|T037|AB|S53.096A|ICD10CM|Other dislocation of unspecified radial head, init encntr|Other dislocation of unspecified radial head, init encntr +C2847238|T037|PT|S53.096A|ICD10CM|Other dislocation of unspecified radial head, initial encounter|Other dislocation of unspecified radial head, initial encounter +C2847239|T037|AB|S53.096D|ICD10CM|Other dislocation of unspecified radial head, subs encntr|Other dislocation of unspecified radial head, subs encntr +C2847239|T037|PT|S53.096D|ICD10CM|Other dislocation of unspecified radial head, subsequent encounter|Other dislocation of unspecified radial head, subsequent encounter +C2847240|T037|PT|S53.096S|ICD10CM|Other dislocation of unspecified radial head, sequela|Other dislocation of unspecified radial head, sequela +C2847240|T037|AB|S53.096S|ICD10CM|Other dislocation of unspecified radial head, sequela|Other dislocation of unspecified radial head, sequela +C2720437|T037|PT|S53.1|ICD10|Dislocation of elbow, unspecified|Dislocation of elbow, unspecified +C2847241|T037|ET|S53.1|ICD10CM|Subluxation and dislocation of elbow NOS|Subluxation and dislocation of elbow NOS +C2847242|T037|AB|S53.1|ICD10CM|Subluxation and dislocation of ulnohumeral joint|Subluxation and dislocation of ulnohumeral joint +C2847242|T037|HT|S53.1|ICD10CM|Subluxation and dislocation of ulnohumeral joint|Subluxation and dislocation of ulnohumeral joint +C2847243|T037|AB|S53.10|ICD10CM|Unspecified subluxation and dislocation of ulnohumeral joint|Unspecified subluxation and dislocation of ulnohumeral joint +C2847243|T037|HT|S53.10|ICD10CM|Unspecified subluxation and dislocation of ulnohumeral joint|Unspecified subluxation and dislocation of ulnohumeral joint +C2847244|T037|AB|S53.101|ICD10CM|Unspecified subluxation of right ulnohumeral joint|Unspecified subluxation of right ulnohumeral joint +C2847244|T037|HT|S53.101|ICD10CM|Unspecified subluxation of right ulnohumeral joint|Unspecified subluxation of right ulnohumeral joint +C2847245|T037|AB|S53.101A|ICD10CM|Unsp subluxation of right ulnohumeral joint, init encntr|Unsp subluxation of right ulnohumeral joint, init encntr +C2847245|T037|PT|S53.101A|ICD10CM|Unspecified subluxation of right ulnohumeral joint, initial encounter|Unspecified subluxation of right ulnohumeral joint, initial encounter +C2847246|T037|AB|S53.101D|ICD10CM|Unsp subluxation of right ulnohumeral joint, subs encntr|Unsp subluxation of right ulnohumeral joint, subs encntr +C2847246|T037|PT|S53.101D|ICD10CM|Unspecified subluxation of right ulnohumeral joint, subsequent encounter|Unspecified subluxation of right ulnohumeral joint, subsequent encounter +C2847247|T037|PT|S53.101S|ICD10CM|Unspecified subluxation of right ulnohumeral joint, sequela|Unspecified subluxation of right ulnohumeral joint, sequela +C2847247|T037|AB|S53.101S|ICD10CM|Unspecified subluxation of right ulnohumeral joint, sequela|Unspecified subluxation of right ulnohumeral joint, sequela +C2847248|T037|AB|S53.102|ICD10CM|Unspecified subluxation of left ulnohumeral joint|Unspecified subluxation of left ulnohumeral joint +C2847248|T037|HT|S53.102|ICD10CM|Unspecified subluxation of left ulnohumeral joint|Unspecified subluxation of left ulnohumeral joint +C2847249|T037|AB|S53.102A|ICD10CM|Unsp subluxation of left ulnohumeral joint, init encntr|Unsp subluxation of left ulnohumeral joint, init encntr +C2847249|T037|PT|S53.102A|ICD10CM|Unspecified subluxation of left ulnohumeral joint, initial encounter|Unspecified subluxation of left ulnohumeral joint, initial encounter +C2847250|T037|AB|S53.102D|ICD10CM|Unsp subluxation of left ulnohumeral joint, subs encntr|Unsp subluxation of left ulnohumeral joint, subs encntr +C2847250|T037|PT|S53.102D|ICD10CM|Unspecified subluxation of left ulnohumeral joint, subsequent encounter|Unspecified subluxation of left ulnohumeral joint, subsequent encounter +C2847251|T037|PT|S53.102S|ICD10CM|Unspecified subluxation of left ulnohumeral joint, sequela|Unspecified subluxation of left ulnohumeral joint, sequela +C2847251|T037|AB|S53.102S|ICD10CM|Unspecified subluxation of left ulnohumeral joint, sequela|Unspecified subluxation of left ulnohumeral joint, sequela +C2847252|T037|AB|S53.103|ICD10CM|Unspecified subluxation of unspecified ulnohumeral joint|Unspecified subluxation of unspecified ulnohumeral joint +C2847252|T037|HT|S53.103|ICD10CM|Unspecified subluxation of unspecified ulnohumeral joint|Unspecified subluxation of unspecified ulnohumeral joint +C2847253|T037|AB|S53.103A|ICD10CM|Unsp subluxation of unsp ulnohumeral joint, init encntr|Unsp subluxation of unsp ulnohumeral joint, init encntr +C2847253|T037|PT|S53.103A|ICD10CM|Unspecified subluxation of unspecified ulnohumeral joint, initial encounter|Unspecified subluxation of unspecified ulnohumeral joint, initial encounter +C2847254|T037|AB|S53.103D|ICD10CM|Unsp subluxation of unsp ulnohumeral joint, subs encntr|Unsp subluxation of unsp ulnohumeral joint, subs encntr +C2847254|T037|PT|S53.103D|ICD10CM|Unspecified subluxation of unspecified ulnohumeral joint, subsequent encounter|Unspecified subluxation of unspecified ulnohumeral joint, subsequent encounter +C2847255|T037|AB|S53.103S|ICD10CM|Unsp subluxation of unspecified ulnohumeral joint, sequela|Unsp subluxation of unspecified ulnohumeral joint, sequela +C2847255|T037|PT|S53.103S|ICD10CM|Unspecified subluxation of unspecified ulnohumeral joint, sequela|Unspecified subluxation of unspecified ulnohumeral joint, sequela +C2847256|T037|AB|S53.104|ICD10CM|Unspecified dislocation of right ulnohumeral joint|Unspecified dislocation of right ulnohumeral joint +C2847256|T037|HT|S53.104|ICD10CM|Unspecified dislocation of right ulnohumeral joint|Unspecified dislocation of right ulnohumeral joint +C2847257|T037|AB|S53.104A|ICD10CM|Unsp dislocation of right ulnohumeral joint, init encntr|Unsp dislocation of right ulnohumeral joint, init encntr +C2847257|T037|PT|S53.104A|ICD10CM|Unspecified dislocation of right ulnohumeral joint, initial encounter|Unspecified dislocation of right ulnohumeral joint, initial encounter +C2847258|T037|AB|S53.104D|ICD10CM|Unsp dislocation of right ulnohumeral joint, subs encntr|Unsp dislocation of right ulnohumeral joint, subs encntr +C2847258|T037|PT|S53.104D|ICD10CM|Unspecified dislocation of right ulnohumeral joint, subsequent encounter|Unspecified dislocation of right ulnohumeral joint, subsequent encounter +C2847259|T037|PT|S53.104S|ICD10CM|Unspecified dislocation of right ulnohumeral joint, sequela|Unspecified dislocation of right ulnohumeral joint, sequela +C2847259|T037|AB|S53.104S|ICD10CM|Unspecified dislocation of right ulnohumeral joint, sequela|Unspecified dislocation of right ulnohumeral joint, sequela +C2847260|T037|AB|S53.105|ICD10CM|Unspecified dislocation of left ulnohumeral joint|Unspecified dislocation of left ulnohumeral joint +C2847260|T037|HT|S53.105|ICD10CM|Unspecified dislocation of left ulnohumeral joint|Unspecified dislocation of left ulnohumeral joint +C2847261|T037|AB|S53.105A|ICD10CM|Unsp dislocation of left ulnohumeral joint, init encntr|Unsp dislocation of left ulnohumeral joint, init encntr +C2847261|T037|PT|S53.105A|ICD10CM|Unspecified dislocation of left ulnohumeral joint, initial encounter|Unspecified dislocation of left ulnohumeral joint, initial encounter +C2847262|T037|AB|S53.105D|ICD10CM|Unsp dislocation of left ulnohumeral joint, subs encntr|Unsp dislocation of left ulnohumeral joint, subs encntr +C2847262|T037|PT|S53.105D|ICD10CM|Unspecified dislocation of left ulnohumeral joint, subsequent encounter|Unspecified dislocation of left ulnohumeral joint, subsequent encounter +C2847263|T037|PT|S53.105S|ICD10CM|Unspecified dislocation of left ulnohumeral joint, sequela|Unspecified dislocation of left ulnohumeral joint, sequela +C2847263|T037|AB|S53.105S|ICD10CM|Unspecified dislocation of left ulnohumeral joint, sequela|Unspecified dislocation of left ulnohumeral joint, sequela +C2847264|T037|AB|S53.106|ICD10CM|Unspecified dislocation of unspecified ulnohumeral joint|Unspecified dislocation of unspecified ulnohumeral joint +C2847264|T037|HT|S53.106|ICD10CM|Unspecified dislocation of unspecified ulnohumeral joint|Unspecified dislocation of unspecified ulnohumeral joint +C2847265|T037|AB|S53.106A|ICD10CM|Unsp dislocation of unsp ulnohumeral joint, init encntr|Unsp dislocation of unsp ulnohumeral joint, init encntr +C2847265|T037|PT|S53.106A|ICD10CM|Unspecified dislocation of unspecified ulnohumeral joint, initial encounter|Unspecified dislocation of unspecified ulnohumeral joint, initial encounter +C2847266|T037|AB|S53.106D|ICD10CM|Unsp dislocation of unsp ulnohumeral joint, subs encntr|Unsp dislocation of unsp ulnohumeral joint, subs encntr +C2847266|T037|PT|S53.106D|ICD10CM|Unspecified dislocation of unspecified ulnohumeral joint, subsequent encounter|Unspecified dislocation of unspecified ulnohumeral joint, subsequent encounter +C2847267|T037|AB|S53.106S|ICD10CM|Unsp dislocation of unspecified ulnohumeral joint, sequela|Unsp dislocation of unspecified ulnohumeral joint, sequela +C2847267|T037|PT|S53.106S|ICD10CM|Unspecified dislocation of unspecified ulnohumeral joint, sequela|Unspecified dislocation of unspecified ulnohumeral joint, sequela +C2847268|T037|AB|S53.11|ICD10CM|Anterior subluxation and dislocation of ulnohumeral joint|Anterior subluxation and dislocation of ulnohumeral joint +C2847268|T037|HT|S53.11|ICD10CM|Anterior subluxation and dislocation of ulnohumeral joint|Anterior subluxation and dislocation of ulnohumeral joint +C2847269|T037|AB|S53.111|ICD10CM|Anterior subluxation of right ulnohumeral joint|Anterior subluxation of right ulnohumeral joint +C2847269|T037|HT|S53.111|ICD10CM|Anterior subluxation of right ulnohumeral joint|Anterior subluxation of right ulnohumeral joint +C2847270|T037|AB|S53.111A|ICD10CM|Anterior subluxation of right ulnohumeral joint, init encntr|Anterior subluxation of right ulnohumeral joint, init encntr +C2847270|T037|PT|S53.111A|ICD10CM|Anterior subluxation of right ulnohumeral joint, initial encounter|Anterior subluxation of right ulnohumeral joint, initial encounter +C2847271|T037|AB|S53.111D|ICD10CM|Anterior subluxation of right ulnohumeral joint, subs encntr|Anterior subluxation of right ulnohumeral joint, subs encntr +C2847271|T037|PT|S53.111D|ICD10CM|Anterior subluxation of right ulnohumeral joint, subsequent encounter|Anterior subluxation of right ulnohumeral joint, subsequent encounter +C2847272|T037|PT|S53.111S|ICD10CM|Anterior subluxation of right ulnohumeral joint, sequela|Anterior subluxation of right ulnohumeral joint, sequela +C2847272|T037|AB|S53.111S|ICD10CM|Anterior subluxation of right ulnohumeral joint, sequela|Anterior subluxation of right ulnohumeral joint, sequela +C2847273|T037|AB|S53.112|ICD10CM|Anterior subluxation of left ulnohumeral joint|Anterior subluxation of left ulnohumeral joint +C2847273|T037|HT|S53.112|ICD10CM|Anterior subluxation of left ulnohumeral joint|Anterior subluxation of left ulnohumeral joint +C2847274|T037|AB|S53.112A|ICD10CM|Anterior subluxation of left ulnohumeral joint, init encntr|Anterior subluxation of left ulnohumeral joint, init encntr +C2847274|T037|PT|S53.112A|ICD10CM|Anterior subluxation of left ulnohumeral joint, initial encounter|Anterior subluxation of left ulnohumeral joint, initial encounter +C2847275|T037|AB|S53.112D|ICD10CM|Anterior subluxation of left ulnohumeral joint, subs encntr|Anterior subluxation of left ulnohumeral joint, subs encntr +C2847275|T037|PT|S53.112D|ICD10CM|Anterior subluxation of left ulnohumeral joint, subsequent encounter|Anterior subluxation of left ulnohumeral joint, subsequent encounter +C2847276|T037|PT|S53.112S|ICD10CM|Anterior subluxation of left ulnohumeral joint, sequela|Anterior subluxation of left ulnohumeral joint, sequela +C2847276|T037|AB|S53.112S|ICD10CM|Anterior subluxation of left ulnohumeral joint, sequela|Anterior subluxation of left ulnohumeral joint, sequela +C2847277|T037|AB|S53.113|ICD10CM|Anterior subluxation of unspecified ulnohumeral joint|Anterior subluxation of unspecified ulnohumeral joint +C2847277|T037|HT|S53.113|ICD10CM|Anterior subluxation of unspecified ulnohumeral joint|Anterior subluxation of unspecified ulnohumeral joint +C2847278|T037|AB|S53.113A|ICD10CM|Anterior subluxation of unsp ulnohumeral joint, init encntr|Anterior subluxation of unsp ulnohumeral joint, init encntr +C2847278|T037|PT|S53.113A|ICD10CM|Anterior subluxation of unspecified ulnohumeral joint, initial encounter|Anterior subluxation of unspecified ulnohumeral joint, initial encounter +C2847279|T037|AB|S53.113D|ICD10CM|Anterior subluxation of unsp ulnohumeral joint, subs encntr|Anterior subluxation of unsp ulnohumeral joint, subs encntr +C2847279|T037|PT|S53.113D|ICD10CM|Anterior subluxation of unspecified ulnohumeral joint, subsequent encounter|Anterior subluxation of unspecified ulnohumeral joint, subsequent encounter +C2847280|T037|AB|S53.113S|ICD10CM|Anterior subluxation of unsp ulnohumeral joint, sequela|Anterior subluxation of unsp ulnohumeral joint, sequela +C2847280|T037|PT|S53.113S|ICD10CM|Anterior subluxation of unspecified ulnohumeral joint, sequela|Anterior subluxation of unspecified ulnohumeral joint, sequela +C2847281|T037|AB|S53.114|ICD10CM|Anterior dislocation of right ulnohumeral joint|Anterior dislocation of right ulnohumeral joint +C2847281|T037|HT|S53.114|ICD10CM|Anterior dislocation of right ulnohumeral joint|Anterior dislocation of right ulnohumeral joint +C2847282|T037|AB|S53.114A|ICD10CM|Anterior dislocation of right ulnohumeral joint, init encntr|Anterior dislocation of right ulnohumeral joint, init encntr +C2847282|T037|PT|S53.114A|ICD10CM|Anterior dislocation of right ulnohumeral joint, initial encounter|Anterior dislocation of right ulnohumeral joint, initial encounter +C2847283|T037|AB|S53.114D|ICD10CM|Anterior dislocation of right ulnohumeral joint, subs encntr|Anterior dislocation of right ulnohumeral joint, subs encntr +C2847283|T037|PT|S53.114D|ICD10CM|Anterior dislocation of right ulnohumeral joint, subsequent encounter|Anterior dislocation of right ulnohumeral joint, subsequent encounter +C2847284|T037|PT|S53.114S|ICD10CM|Anterior dislocation of right ulnohumeral joint, sequela|Anterior dislocation of right ulnohumeral joint, sequela +C2847284|T037|AB|S53.114S|ICD10CM|Anterior dislocation of right ulnohumeral joint, sequela|Anterior dislocation of right ulnohumeral joint, sequela +C2847285|T037|AB|S53.115|ICD10CM|Anterior dislocation of left ulnohumeral joint|Anterior dislocation of left ulnohumeral joint +C2847285|T037|HT|S53.115|ICD10CM|Anterior dislocation of left ulnohumeral joint|Anterior dislocation of left ulnohumeral joint +C2847286|T037|AB|S53.115A|ICD10CM|Anterior dislocation of left ulnohumeral joint, init encntr|Anterior dislocation of left ulnohumeral joint, init encntr +C2847286|T037|PT|S53.115A|ICD10CM|Anterior dislocation of left ulnohumeral joint, initial encounter|Anterior dislocation of left ulnohumeral joint, initial encounter +C2847287|T037|AB|S53.115D|ICD10CM|Anterior dislocation of left ulnohumeral joint, subs encntr|Anterior dislocation of left ulnohumeral joint, subs encntr +C2847287|T037|PT|S53.115D|ICD10CM|Anterior dislocation of left ulnohumeral joint, subsequent encounter|Anterior dislocation of left ulnohumeral joint, subsequent encounter +C2847288|T037|PT|S53.115S|ICD10CM|Anterior dislocation of left ulnohumeral joint, sequela|Anterior dislocation of left ulnohumeral joint, sequela +C2847288|T037|AB|S53.115S|ICD10CM|Anterior dislocation of left ulnohumeral joint, sequela|Anterior dislocation of left ulnohumeral joint, sequela +C2847289|T037|AB|S53.116|ICD10CM|Anterior dislocation of unspecified ulnohumeral joint|Anterior dislocation of unspecified ulnohumeral joint +C2847289|T037|HT|S53.116|ICD10CM|Anterior dislocation of unspecified ulnohumeral joint|Anterior dislocation of unspecified ulnohumeral joint +C2847290|T037|AB|S53.116A|ICD10CM|Anterior dislocation of unsp ulnohumeral joint, init encntr|Anterior dislocation of unsp ulnohumeral joint, init encntr +C2847290|T037|PT|S53.116A|ICD10CM|Anterior dislocation of unspecified ulnohumeral joint, initial encounter|Anterior dislocation of unspecified ulnohumeral joint, initial encounter +C2847291|T037|AB|S53.116D|ICD10CM|Anterior dislocation of unsp ulnohumeral joint, subs encntr|Anterior dislocation of unsp ulnohumeral joint, subs encntr +C2847291|T037|PT|S53.116D|ICD10CM|Anterior dislocation of unspecified ulnohumeral joint, subsequent encounter|Anterior dislocation of unspecified ulnohumeral joint, subsequent encounter +C2847292|T037|AB|S53.116S|ICD10CM|Anterior dislocation of unsp ulnohumeral joint, sequela|Anterior dislocation of unsp ulnohumeral joint, sequela +C2847292|T037|PT|S53.116S|ICD10CM|Anterior dislocation of unspecified ulnohumeral joint, sequela|Anterior dislocation of unspecified ulnohumeral joint, sequela +C2847293|T037|AB|S53.12|ICD10CM|Posterior subluxation and dislocation of ulnohumeral joint|Posterior subluxation and dislocation of ulnohumeral joint +C2847293|T037|HT|S53.12|ICD10CM|Posterior subluxation and dislocation of ulnohumeral joint|Posterior subluxation and dislocation of ulnohumeral joint +C2847294|T037|AB|S53.121|ICD10CM|Posterior subluxation of right ulnohumeral joint|Posterior subluxation of right ulnohumeral joint +C2847294|T037|HT|S53.121|ICD10CM|Posterior subluxation of right ulnohumeral joint|Posterior subluxation of right ulnohumeral joint +C2847295|T037|AB|S53.121A|ICD10CM|Posterior subluxation of right ulnohumeral joint, init|Posterior subluxation of right ulnohumeral joint, init +C2847295|T037|PT|S53.121A|ICD10CM|Posterior subluxation of right ulnohumeral joint, initial encounter|Posterior subluxation of right ulnohumeral joint, initial encounter +C2847296|T037|AB|S53.121D|ICD10CM|Posterior subluxation of right ulnohumeral joint, subs|Posterior subluxation of right ulnohumeral joint, subs +C2847296|T037|PT|S53.121D|ICD10CM|Posterior subluxation of right ulnohumeral joint, subsequent encounter|Posterior subluxation of right ulnohumeral joint, subsequent encounter +C2847297|T037|PT|S53.121S|ICD10CM|Posterior subluxation of right ulnohumeral joint, sequela|Posterior subluxation of right ulnohumeral joint, sequela +C2847297|T037|AB|S53.121S|ICD10CM|Posterior subluxation of right ulnohumeral joint, sequela|Posterior subluxation of right ulnohumeral joint, sequela +C2847298|T037|AB|S53.122|ICD10CM|Posterior subluxation of left ulnohumeral joint|Posterior subluxation of left ulnohumeral joint +C2847298|T037|HT|S53.122|ICD10CM|Posterior subluxation of left ulnohumeral joint|Posterior subluxation of left ulnohumeral joint +C2847299|T037|AB|S53.122A|ICD10CM|Posterior subluxation of left ulnohumeral joint, init encntr|Posterior subluxation of left ulnohumeral joint, init encntr +C2847299|T037|PT|S53.122A|ICD10CM|Posterior subluxation of left ulnohumeral joint, initial encounter|Posterior subluxation of left ulnohumeral joint, initial encounter +C2847300|T037|AB|S53.122D|ICD10CM|Posterior subluxation of left ulnohumeral joint, subs encntr|Posterior subluxation of left ulnohumeral joint, subs encntr +C2847300|T037|PT|S53.122D|ICD10CM|Posterior subluxation of left ulnohumeral joint, subsequent encounter|Posterior subluxation of left ulnohumeral joint, subsequent encounter +C2847301|T037|PT|S53.122S|ICD10CM|Posterior subluxation of left ulnohumeral joint, sequela|Posterior subluxation of left ulnohumeral joint, sequela +C2847301|T037|AB|S53.122S|ICD10CM|Posterior subluxation of left ulnohumeral joint, sequela|Posterior subluxation of left ulnohumeral joint, sequela +C2847302|T037|AB|S53.123|ICD10CM|Posterior subluxation of unspecified ulnohumeral joint|Posterior subluxation of unspecified ulnohumeral joint +C2847302|T037|HT|S53.123|ICD10CM|Posterior subluxation of unspecified ulnohumeral joint|Posterior subluxation of unspecified ulnohumeral joint +C2847303|T037|AB|S53.123A|ICD10CM|Posterior subluxation of unsp ulnohumeral joint, init encntr|Posterior subluxation of unsp ulnohumeral joint, init encntr +C2847303|T037|PT|S53.123A|ICD10CM|Posterior subluxation of unspecified ulnohumeral joint, initial encounter|Posterior subluxation of unspecified ulnohumeral joint, initial encounter +C2847304|T037|AB|S53.123D|ICD10CM|Posterior subluxation of unsp ulnohumeral joint, subs encntr|Posterior subluxation of unsp ulnohumeral joint, subs encntr +C2847304|T037|PT|S53.123D|ICD10CM|Posterior subluxation of unspecified ulnohumeral joint, subsequent encounter|Posterior subluxation of unspecified ulnohumeral joint, subsequent encounter +C2847305|T037|AB|S53.123S|ICD10CM|Posterior subluxation of unsp ulnohumeral joint, sequela|Posterior subluxation of unsp ulnohumeral joint, sequela +C2847305|T037|PT|S53.123S|ICD10CM|Posterior subluxation of unspecified ulnohumeral joint, sequela|Posterior subluxation of unspecified ulnohumeral joint, sequela +C2847306|T037|AB|S53.124|ICD10CM|Posterior dislocation of right ulnohumeral joint|Posterior dislocation of right ulnohumeral joint +C2847306|T037|HT|S53.124|ICD10CM|Posterior dislocation of right ulnohumeral joint|Posterior dislocation of right ulnohumeral joint +C2847307|T037|AB|S53.124A|ICD10CM|Posterior dislocation of right ulnohumeral joint, init|Posterior dislocation of right ulnohumeral joint, init +C2847307|T037|PT|S53.124A|ICD10CM|Posterior dislocation of right ulnohumeral joint, initial encounter|Posterior dislocation of right ulnohumeral joint, initial encounter +C2847308|T037|AB|S53.124D|ICD10CM|Posterior dislocation of right ulnohumeral joint, subs|Posterior dislocation of right ulnohumeral joint, subs +C2847308|T037|PT|S53.124D|ICD10CM|Posterior dislocation of right ulnohumeral joint, subsequent encounter|Posterior dislocation of right ulnohumeral joint, subsequent encounter +C2847309|T037|PT|S53.124S|ICD10CM|Posterior dislocation of right ulnohumeral joint, sequela|Posterior dislocation of right ulnohumeral joint, sequela +C2847309|T037|AB|S53.124S|ICD10CM|Posterior dislocation of right ulnohumeral joint, sequela|Posterior dislocation of right ulnohumeral joint, sequela +C2847310|T037|AB|S53.125|ICD10CM|Posterior dislocation of left ulnohumeral joint|Posterior dislocation of left ulnohumeral joint +C2847310|T037|HT|S53.125|ICD10CM|Posterior dislocation of left ulnohumeral joint|Posterior dislocation of left ulnohumeral joint +C2847311|T037|AB|S53.125A|ICD10CM|Posterior dislocation of left ulnohumeral joint, init encntr|Posterior dislocation of left ulnohumeral joint, init encntr +C2847311|T037|PT|S53.125A|ICD10CM|Posterior dislocation of left ulnohumeral joint, initial encounter|Posterior dislocation of left ulnohumeral joint, initial encounter +C2847312|T037|AB|S53.125D|ICD10CM|Posterior dislocation of left ulnohumeral joint, subs encntr|Posterior dislocation of left ulnohumeral joint, subs encntr +C2847312|T037|PT|S53.125D|ICD10CM|Posterior dislocation of left ulnohumeral joint, subsequent encounter|Posterior dislocation of left ulnohumeral joint, subsequent encounter +C2847313|T037|PT|S53.125S|ICD10CM|Posterior dislocation of left ulnohumeral joint, sequela|Posterior dislocation of left ulnohumeral joint, sequela +C2847313|T037|AB|S53.125S|ICD10CM|Posterior dislocation of left ulnohumeral joint, sequela|Posterior dislocation of left ulnohumeral joint, sequela +C2847314|T037|AB|S53.126|ICD10CM|Posterior dislocation of unspecified ulnohumeral joint|Posterior dislocation of unspecified ulnohumeral joint +C2847314|T037|HT|S53.126|ICD10CM|Posterior dislocation of unspecified ulnohumeral joint|Posterior dislocation of unspecified ulnohumeral joint +C2847315|T037|AB|S53.126A|ICD10CM|Posterior dislocation of unsp ulnohumeral joint, init encntr|Posterior dislocation of unsp ulnohumeral joint, init encntr +C2847315|T037|PT|S53.126A|ICD10CM|Posterior dislocation of unspecified ulnohumeral joint, initial encounter|Posterior dislocation of unspecified ulnohumeral joint, initial encounter +C2847316|T037|AB|S53.126D|ICD10CM|Posterior dislocation of unsp ulnohumeral joint, subs encntr|Posterior dislocation of unsp ulnohumeral joint, subs encntr +C2847316|T037|PT|S53.126D|ICD10CM|Posterior dislocation of unspecified ulnohumeral joint, subsequent encounter|Posterior dislocation of unspecified ulnohumeral joint, subsequent encounter +C2847317|T037|AB|S53.126S|ICD10CM|Posterior dislocation of unsp ulnohumeral joint, sequela|Posterior dislocation of unsp ulnohumeral joint, sequela +C2847317|T037|PT|S53.126S|ICD10CM|Posterior dislocation of unspecified ulnohumeral joint, sequela|Posterior dislocation of unspecified ulnohumeral joint, sequela +C2847318|T037|AB|S53.13|ICD10CM|Medial subluxation and dislocation of ulnohumeral joint|Medial subluxation and dislocation of ulnohumeral joint +C2847318|T037|HT|S53.13|ICD10CM|Medial subluxation and dislocation of ulnohumeral joint|Medial subluxation and dislocation of ulnohumeral joint +C2847319|T037|AB|S53.131|ICD10CM|Medial subluxation of right ulnohumeral joint|Medial subluxation of right ulnohumeral joint +C2847319|T037|HT|S53.131|ICD10CM|Medial subluxation of right ulnohumeral joint|Medial subluxation of right ulnohumeral joint +C2847320|T037|AB|S53.131A|ICD10CM|Medial subluxation of right ulnohumeral joint, init encntr|Medial subluxation of right ulnohumeral joint, init encntr +C2847320|T037|PT|S53.131A|ICD10CM|Medial subluxation of right ulnohumeral joint, initial encounter|Medial subluxation of right ulnohumeral joint, initial encounter +C2847321|T037|AB|S53.131D|ICD10CM|Medial subluxation of right ulnohumeral joint, subs encntr|Medial subluxation of right ulnohumeral joint, subs encntr +C2847321|T037|PT|S53.131D|ICD10CM|Medial subluxation of right ulnohumeral joint, subsequent encounter|Medial subluxation of right ulnohumeral joint, subsequent encounter +C2847322|T037|PT|S53.131S|ICD10CM|Medial subluxation of right ulnohumeral joint, sequela|Medial subluxation of right ulnohumeral joint, sequela +C2847322|T037|AB|S53.131S|ICD10CM|Medial subluxation of right ulnohumeral joint, sequela|Medial subluxation of right ulnohumeral joint, sequela +C2847323|T037|AB|S53.132|ICD10CM|Medial subluxation of left ulnohumeral joint|Medial subluxation of left ulnohumeral joint +C2847323|T037|HT|S53.132|ICD10CM|Medial subluxation of left ulnohumeral joint|Medial subluxation of left ulnohumeral joint +C2847324|T037|AB|S53.132A|ICD10CM|Medial subluxation of left ulnohumeral joint, init encntr|Medial subluxation of left ulnohumeral joint, init encntr +C2847324|T037|PT|S53.132A|ICD10CM|Medial subluxation of left ulnohumeral joint, initial encounter|Medial subluxation of left ulnohumeral joint, initial encounter +C2847325|T037|AB|S53.132D|ICD10CM|Medial subluxation of left ulnohumeral joint, subs encntr|Medial subluxation of left ulnohumeral joint, subs encntr +C2847325|T037|PT|S53.132D|ICD10CM|Medial subluxation of left ulnohumeral joint, subsequent encounter|Medial subluxation of left ulnohumeral joint, subsequent encounter +C2847326|T037|PT|S53.132S|ICD10CM|Medial subluxation of left ulnohumeral joint, sequela|Medial subluxation of left ulnohumeral joint, sequela +C2847326|T037|AB|S53.132S|ICD10CM|Medial subluxation of left ulnohumeral joint, sequela|Medial subluxation of left ulnohumeral joint, sequela +C2847327|T037|AB|S53.133|ICD10CM|Medial subluxation of unspecified ulnohumeral joint|Medial subluxation of unspecified ulnohumeral joint +C2847327|T037|HT|S53.133|ICD10CM|Medial subluxation of unspecified ulnohumeral joint|Medial subluxation of unspecified ulnohumeral joint +C2847328|T037|AB|S53.133A|ICD10CM|Medial subluxation of unsp ulnohumeral joint, init encntr|Medial subluxation of unsp ulnohumeral joint, init encntr +C2847328|T037|PT|S53.133A|ICD10CM|Medial subluxation of unspecified ulnohumeral joint, initial encounter|Medial subluxation of unspecified ulnohumeral joint, initial encounter +C2847329|T037|AB|S53.133D|ICD10CM|Medial subluxation of unsp ulnohumeral joint, subs encntr|Medial subluxation of unsp ulnohumeral joint, subs encntr +C2847329|T037|PT|S53.133D|ICD10CM|Medial subluxation of unspecified ulnohumeral joint, subsequent encounter|Medial subluxation of unspecified ulnohumeral joint, subsequent encounter +C2847330|T037|AB|S53.133S|ICD10CM|Medial subluxation of unspecified ulnohumeral joint, sequela|Medial subluxation of unspecified ulnohumeral joint, sequela +C2847330|T037|PT|S53.133S|ICD10CM|Medial subluxation of unspecified ulnohumeral joint, sequela|Medial subluxation of unspecified ulnohumeral joint, sequela +C2847331|T037|AB|S53.134|ICD10CM|Medial dislocation of right ulnohumeral joint|Medial dislocation of right ulnohumeral joint +C2847331|T037|HT|S53.134|ICD10CM|Medial dislocation of right ulnohumeral joint|Medial dislocation of right ulnohumeral joint +C2847332|T037|AB|S53.134A|ICD10CM|Medial dislocation of right ulnohumeral joint, init encntr|Medial dislocation of right ulnohumeral joint, init encntr +C2847332|T037|PT|S53.134A|ICD10CM|Medial dislocation of right ulnohumeral joint, initial encounter|Medial dislocation of right ulnohumeral joint, initial encounter +C2847333|T037|AB|S53.134D|ICD10CM|Medial dislocation of right ulnohumeral joint, subs encntr|Medial dislocation of right ulnohumeral joint, subs encntr +C2847333|T037|PT|S53.134D|ICD10CM|Medial dislocation of right ulnohumeral joint, subsequent encounter|Medial dislocation of right ulnohumeral joint, subsequent encounter +C2847334|T037|PT|S53.134S|ICD10CM|Medial dislocation of right ulnohumeral joint, sequela|Medial dislocation of right ulnohumeral joint, sequela +C2847334|T037|AB|S53.134S|ICD10CM|Medial dislocation of right ulnohumeral joint, sequela|Medial dislocation of right ulnohumeral joint, sequela +C2847335|T037|AB|S53.135|ICD10CM|Medial dislocation of left ulnohumeral joint|Medial dislocation of left ulnohumeral joint +C2847335|T037|HT|S53.135|ICD10CM|Medial dislocation of left ulnohumeral joint|Medial dislocation of left ulnohumeral joint +C2847336|T037|AB|S53.135A|ICD10CM|Medial dislocation of left ulnohumeral joint, init encntr|Medial dislocation of left ulnohumeral joint, init encntr +C2847336|T037|PT|S53.135A|ICD10CM|Medial dislocation of left ulnohumeral joint, initial encounter|Medial dislocation of left ulnohumeral joint, initial encounter +C2847337|T037|AB|S53.135D|ICD10CM|Medial dislocation of left ulnohumeral joint, subs encntr|Medial dislocation of left ulnohumeral joint, subs encntr +C2847337|T037|PT|S53.135D|ICD10CM|Medial dislocation of left ulnohumeral joint, subsequent encounter|Medial dislocation of left ulnohumeral joint, subsequent encounter +C2847338|T037|PT|S53.135S|ICD10CM|Medial dislocation of left ulnohumeral joint, sequela|Medial dislocation of left ulnohumeral joint, sequela +C2847338|T037|AB|S53.135S|ICD10CM|Medial dislocation of left ulnohumeral joint, sequela|Medial dislocation of left ulnohumeral joint, sequela +C2847339|T037|AB|S53.136|ICD10CM|Medial dislocation of unspecified ulnohumeral joint|Medial dislocation of unspecified ulnohumeral joint +C2847339|T037|HT|S53.136|ICD10CM|Medial dislocation of unspecified ulnohumeral joint|Medial dislocation of unspecified ulnohumeral joint +C2847340|T037|AB|S53.136A|ICD10CM|Medial dislocation of unsp ulnohumeral joint, init encntr|Medial dislocation of unsp ulnohumeral joint, init encntr +C2847340|T037|PT|S53.136A|ICD10CM|Medial dislocation of unspecified ulnohumeral joint, initial encounter|Medial dislocation of unspecified ulnohumeral joint, initial encounter +C2847341|T037|AB|S53.136D|ICD10CM|Medial dislocation of unsp ulnohumeral joint, subs encntr|Medial dislocation of unsp ulnohumeral joint, subs encntr +C2847341|T037|PT|S53.136D|ICD10CM|Medial dislocation of unspecified ulnohumeral joint, subsequent encounter|Medial dislocation of unspecified ulnohumeral joint, subsequent encounter +C2847342|T037|AB|S53.136S|ICD10CM|Medial dislocation of unspecified ulnohumeral joint, sequela|Medial dislocation of unspecified ulnohumeral joint, sequela +C2847342|T037|PT|S53.136S|ICD10CM|Medial dislocation of unspecified ulnohumeral joint, sequela|Medial dislocation of unspecified ulnohumeral joint, sequela +C2847343|T037|AB|S53.14|ICD10CM|Lateral subluxation and dislocation of ulnohumeral joint|Lateral subluxation and dislocation of ulnohumeral joint +C2847343|T037|HT|S53.14|ICD10CM|Lateral subluxation and dislocation of ulnohumeral joint|Lateral subluxation and dislocation of ulnohumeral joint +C2847344|T037|AB|S53.141|ICD10CM|Lateral subluxation of right ulnohumeral joint|Lateral subluxation of right ulnohumeral joint +C2847344|T037|HT|S53.141|ICD10CM|Lateral subluxation of right ulnohumeral joint|Lateral subluxation of right ulnohumeral joint +C2847345|T037|AB|S53.141A|ICD10CM|Lateral subluxation of right ulnohumeral joint, init encntr|Lateral subluxation of right ulnohumeral joint, init encntr +C2847345|T037|PT|S53.141A|ICD10CM|Lateral subluxation of right ulnohumeral joint, initial encounter|Lateral subluxation of right ulnohumeral joint, initial encounter +C2847346|T037|AB|S53.141D|ICD10CM|Lateral subluxation of right ulnohumeral joint, subs encntr|Lateral subluxation of right ulnohumeral joint, subs encntr +C2847346|T037|PT|S53.141D|ICD10CM|Lateral subluxation of right ulnohumeral joint, subsequent encounter|Lateral subluxation of right ulnohumeral joint, subsequent encounter +C2847347|T037|PT|S53.141S|ICD10CM|Lateral subluxation of right ulnohumeral joint, sequela|Lateral subluxation of right ulnohumeral joint, sequela +C2847347|T037|AB|S53.141S|ICD10CM|Lateral subluxation of right ulnohumeral joint, sequela|Lateral subluxation of right ulnohumeral joint, sequela +C2847348|T037|AB|S53.142|ICD10CM|Lateral subluxation of left ulnohumeral joint|Lateral subluxation of left ulnohumeral joint +C2847348|T037|HT|S53.142|ICD10CM|Lateral subluxation of left ulnohumeral joint|Lateral subluxation of left ulnohumeral joint +C2847349|T037|AB|S53.142A|ICD10CM|Lateral subluxation of left ulnohumeral joint, init encntr|Lateral subluxation of left ulnohumeral joint, init encntr +C2847349|T037|PT|S53.142A|ICD10CM|Lateral subluxation of left ulnohumeral joint, initial encounter|Lateral subluxation of left ulnohumeral joint, initial encounter +C2847350|T037|AB|S53.142D|ICD10CM|Lateral subluxation of left ulnohumeral joint, subs encntr|Lateral subluxation of left ulnohumeral joint, subs encntr +C2847350|T037|PT|S53.142D|ICD10CM|Lateral subluxation of left ulnohumeral joint, subsequent encounter|Lateral subluxation of left ulnohumeral joint, subsequent encounter +C2847351|T037|PT|S53.142S|ICD10CM|Lateral subluxation of left ulnohumeral joint, sequela|Lateral subluxation of left ulnohumeral joint, sequela +C2847351|T037|AB|S53.142S|ICD10CM|Lateral subluxation of left ulnohumeral joint, sequela|Lateral subluxation of left ulnohumeral joint, sequela +C2847352|T037|AB|S53.143|ICD10CM|Lateral subluxation of unspecified ulnohumeral joint|Lateral subluxation of unspecified ulnohumeral joint +C2847352|T037|HT|S53.143|ICD10CM|Lateral subluxation of unspecified ulnohumeral joint|Lateral subluxation of unspecified ulnohumeral joint +C2847353|T037|AB|S53.143A|ICD10CM|Lateral subluxation of unsp ulnohumeral joint, init encntr|Lateral subluxation of unsp ulnohumeral joint, init encntr +C2847353|T037|PT|S53.143A|ICD10CM|Lateral subluxation of unspecified ulnohumeral joint, initial encounter|Lateral subluxation of unspecified ulnohumeral joint, initial encounter +C2847354|T037|AB|S53.143D|ICD10CM|Lateral subluxation of unsp ulnohumeral joint, subs encntr|Lateral subluxation of unsp ulnohumeral joint, subs encntr +C2847354|T037|PT|S53.143D|ICD10CM|Lateral subluxation of unspecified ulnohumeral joint, subsequent encounter|Lateral subluxation of unspecified ulnohumeral joint, subsequent encounter +C2847355|T037|AB|S53.143S|ICD10CM|Lateral subluxation of unsp ulnohumeral joint, sequela|Lateral subluxation of unsp ulnohumeral joint, sequela +C2847355|T037|PT|S53.143S|ICD10CM|Lateral subluxation of unspecified ulnohumeral joint, sequela|Lateral subluxation of unspecified ulnohumeral joint, sequela +C2847356|T037|AB|S53.144|ICD10CM|Lateral dislocation of right ulnohumeral joint|Lateral dislocation of right ulnohumeral joint +C2847356|T037|HT|S53.144|ICD10CM|Lateral dislocation of right ulnohumeral joint|Lateral dislocation of right ulnohumeral joint +C2847357|T037|AB|S53.144A|ICD10CM|Lateral dislocation of right ulnohumeral joint, init encntr|Lateral dislocation of right ulnohumeral joint, init encntr +C2847357|T037|PT|S53.144A|ICD10CM|Lateral dislocation of right ulnohumeral joint, initial encounter|Lateral dislocation of right ulnohumeral joint, initial encounter +C2847358|T037|AB|S53.144D|ICD10CM|Lateral dislocation of right ulnohumeral joint, subs encntr|Lateral dislocation of right ulnohumeral joint, subs encntr +C2847358|T037|PT|S53.144D|ICD10CM|Lateral dislocation of right ulnohumeral joint, subsequent encounter|Lateral dislocation of right ulnohumeral joint, subsequent encounter +C2847359|T037|PT|S53.144S|ICD10CM|Lateral dislocation of right ulnohumeral joint, sequela|Lateral dislocation of right ulnohumeral joint, sequela +C2847359|T037|AB|S53.144S|ICD10CM|Lateral dislocation of right ulnohumeral joint, sequela|Lateral dislocation of right ulnohumeral joint, sequela +C2847360|T037|AB|S53.145|ICD10CM|Lateral dislocation of left ulnohumeral joint|Lateral dislocation of left ulnohumeral joint +C2847360|T037|HT|S53.145|ICD10CM|Lateral dislocation of left ulnohumeral joint|Lateral dislocation of left ulnohumeral joint +C2847361|T037|AB|S53.145A|ICD10CM|Lateral dislocation of left ulnohumeral joint, init encntr|Lateral dislocation of left ulnohumeral joint, init encntr +C2847361|T037|PT|S53.145A|ICD10CM|Lateral dislocation of left ulnohumeral joint, initial encounter|Lateral dislocation of left ulnohumeral joint, initial encounter +C2847362|T037|AB|S53.145D|ICD10CM|Lateral dislocation of left ulnohumeral joint, subs encntr|Lateral dislocation of left ulnohumeral joint, subs encntr +C2847362|T037|PT|S53.145D|ICD10CM|Lateral dislocation of left ulnohumeral joint, subsequent encounter|Lateral dislocation of left ulnohumeral joint, subsequent encounter +C2847363|T037|PT|S53.145S|ICD10CM|Lateral dislocation of left ulnohumeral joint, sequela|Lateral dislocation of left ulnohumeral joint, sequela +C2847363|T037|AB|S53.145S|ICD10CM|Lateral dislocation of left ulnohumeral joint, sequela|Lateral dislocation of left ulnohumeral joint, sequela +C2847364|T037|AB|S53.146|ICD10CM|Lateral dislocation of unspecified ulnohumeral joint|Lateral dislocation of unspecified ulnohumeral joint +C2847364|T037|HT|S53.146|ICD10CM|Lateral dislocation of unspecified ulnohumeral joint|Lateral dislocation of unspecified ulnohumeral joint +C2847365|T037|AB|S53.146A|ICD10CM|Lateral dislocation of unsp ulnohumeral joint, init encntr|Lateral dislocation of unsp ulnohumeral joint, init encntr +C2847365|T037|PT|S53.146A|ICD10CM|Lateral dislocation of unspecified ulnohumeral joint, initial encounter|Lateral dislocation of unspecified ulnohumeral joint, initial encounter +C2847366|T037|AB|S53.146D|ICD10CM|Lateral dislocation of unsp ulnohumeral joint, subs encntr|Lateral dislocation of unsp ulnohumeral joint, subs encntr +C2847366|T037|PT|S53.146D|ICD10CM|Lateral dislocation of unspecified ulnohumeral joint, subsequent encounter|Lateral dislocation of unspecified ulnohumeral joint, subsequent encounter +C2847367|T037|AB|S53.146S|ICD10CM|Lateral dislocation of unsp ulnohumeral joint, sequela|Lateral dislocation of unsp ulnohumeral joint, sequela +C2847367|T037|PT|S53.146S|ICD10CM|Lateral dislocation of unspecified ulnohumeral joint, sequela|Lateral dislocation of unspecified ulnohumeral joint, sequela +C2847368|T037|AB|S53.19|ICD10CM|Other subluxation and dislocation of ulnohumeral joint|Other subluxation and dislocation of ulnohumeral joint +C2847368|T037|HT|S53.19|ICD10CM|Other subluxation and dislocation of ulnohumeral joint|Other subluxation and dislocation of ulnohumeral joint +C2847369|T037|AB|S53.191|ICD10CM|Other subluxation of right ulnohumeral joint|Other subluxation of right ulnohumeral joint +C2847369|T037|HT|S53.191|ICD10CM|Other subluxation of right ulnohumeral joint|Other subluxation of right ulnohumeral joint +C2847370|T037|AB|S53.191A|ICD10CM|Other subluxation of right ulnohumeral joint, init encntr|Other subluxation of right ulnohumeral joint, init encntr +C2847370|T037|PT|S53.191A|ICD10CM|Other subluxation of right ulnohumeral joint, initial encounter|Other subluxation of right ulnohumeral joint, initial encounter +C2847371|T037|AB|S53.191D|ICD10CM|Other subluxation of right ulnohumeral joint, subs encntr|Other subluxation of right ulnohumeral joint, subs encntr +C2847371|T037|PT|S53.191D|ICD10CM|Other subluxation of right ulnohumeral joint, subsequent encounter|Other subluxation of right ulnohumeral joint, subsequent encounter +C2847372|T037|PT|S53.191S|ICD10CM|Other subluxation of right ulnohumeral joint, sequela|Other subluxation of right ulnohumeral joint, sequela +C2847372|T037|AB|S53.191S|ICD10CM|Other subluxation of right ulnohumeral joint, sequela|Other subluxation of right ulnohumeral joint, sequela +C2847373|T037|AB|S53.192|ICD10CM|Other subluxation of left ulnohumeral joint|Other subluxation of left ulnohumeral joint +C2847373|T037|HT|S53.192|ICD10CM|Other subluxation of left ulnohumeral joint|Other subluxation of left ulnohumeral joint +C2847374|T037|AB|S53.192A|ICD10CM|Other subluxation of left ulnohumeral joint, init encntr|Other subluxation of left ulnohumeral joint, init encntr +C2847374|T037|PT|S53.192A|ICD10CM|Other subluxation of left ulnohumeral joint, initial encounter|Other subluxation of left ulnohumeral joint, initial encounter +C2847375|T037|AB|S53.192D|ICD10CM|Other subluxation of left ulnohumeral joint, subs encntr|Other subluxation of left ulnohumeral joint, subs encntr +C2847375|T037|PT|S53.192D|ICD10CM|Other subluxation of left ulnohumeral joint, subsequent encounter|Other subluxation of left ulnohumeral joint, subsequent encounter +C2847376|T037|PT|S53.192S|ICD10CM|Other subluxation of left ulnohumeral joint, sequela|Other subluxation of left ulnohumeral joint, sequela +C2847376|T037|AB|S53.192S|ICD10CM|Other subluxation of left ulnohumeral joint, sequela|Other subluxation of left ulnohumeral joint, sequela +C2847377|T037|AB|S53.193|ICD10CM|Other subluxation of unspecified ulnohumeral joint|Other subluxation of unspecified ulnohumeral joint +C2847377|T037|HT|S53.193|ICD10CM|Other subluxation of unspecified ulnohumeral joint|Other subluxation of unspecified ulnohumeral joint +C2847378|T037|AB|S53.193A|ICD10CM|Other subluxation of unsp ulnohumeral joint, init encntr|Other subluxation of unsp ulnohumeral joint, init encntr +C2847378|T037|PT|S53.193A|ICD10CM|Other subluxation of unspecified ulnohumeral joint, initial encounter|Other subluxation of unspecified ulnohumeral joint, initial encounter +C2847379|T037|AB|S53.193D|ICD10CM|Other subluxation of unsp ulnohumeral joint, subs encntr|Other subluxation of unsp ulnohumeral joint, subs encntr +C2847379|T037|PT|S53.193D|ICD10CM|Other subluxation of unspecified ulnohumeral joint, subsequent encounter|Other subluxation of unspecified ulnohumeral joint, subsequent encounter +C2847380|T037|PT|S53.193S|ICD10CM|Other subluxation of unspecified ulnohumeral joint, sequela|Other subluxation of unspecified ulnohumeral joint, sequela +C2847380|T037|AB|S53.193S|ICD10CM|Other subluxation of unspecified ulnohumeral joint, sequela|Other subluxation of unspecified ulnohumeral joint, sequela +C2847381|T037|AB|S53.194|ICD10CM|Other dislocation of right ulnohumeral joint|Other dislocation of right ulnohumeral joint +C2847381|T037|HT|S53.194|ICD10CM|Other dislocation of right ulnohumeral joint|Other dislocation of right ulnohumeral joint +C2847382|T037|AB|S53.194A|ICD10CM|Other dislocation of right ulnohumeral joint, init encntr|Other dislocation of right ulnohumeral joint, init encntr +C2847382|T037|PT|S53.194A|ICD10CM|Other dislocation of right ulnohumeral joint, initial encounter|Other dislocation of right ulnohumeral joint, initial encounter +C2847383|T037|AB|S53.194D|ICD10CM|Other dislocation of right ulnohumeral joint, subs encntr|Other dislocation of right ulnohumeral joint, subs encntr +C2847383|T037|PT|S53.194D|ICD10CM|Other dislocation of right ulnohumeral joint, subsequent encounter|Other dislocation of right ulnohumeral joint, subsequent encounter +C2847384|T037|PT|S53.194S|ICD10CM|Other dislocation of right ulnohumeral joint, sequela|Other dislocation of right ulnohumeral joint, sequela +C2847384|T037|AB|S53.194S|ICD10CM|Other dislocation of right ulnohumeral joint, sequela|Other dislocation of right ulnohumeral joint, sequela +C2847385|T037|AB|S53.195|ICD10CM|Other dislocation of left ulnohumeral joint|Other dislocation of left ulnohumeral joint +C2847385|T037|HT|S53.195|ICD10CM|Other dislocation of left ulnohumeral joint|Other dislocation of left ulnohumeral joint +C2847386|T037|AB|S53.195A|ICD10CM|Other dislocation of left ulnohumeral joint, init encntr|Other dislocation of left ulnohumeral joint, init encntr +C2847386|T037|PT|S53.195A|ICD10CM|Other dislocation of left ulnohumeral joint, initial encounter|Other dislocation of left ulnohumeral joint, initial encounter +C2847387|T037|AB|S53.195D|ICD10CM|Other dislocation of left ulnohumeral joint, subs encntr|Other dislocation of left ulnohumeral joint, subs encntr +C2847387|T037|PT|S53.195D|ICD10CM|Other dislocation of left ulnohumeral joint, subsequent encounter|Other dislocation of left ulnohumeral joint, subsequent encounter +C2847388|T037|PT|S53.195S|ICD10CM|Other dislocation of left ulnohumeral joint, sequela|Other dislocation of left ulnohumeral joint, sequela +C2847388|T037|AB|S53.195S|ICD10CM|Other dislocation of left ulnohumeral joint, sequela|Other dislocation of left ulnohumeral joint, sequela +C2847389|T037|AB|S53.196|ICD10CM|Other dislocation of unspecified ulnohumeral joint|Other dislocation of unspecified ulnohumeral joint +C2847389|T037|HT|S53.196|ICD10CM|Other dislocation of unspecified ulnohumeral joint|Other dislocation of unspecified ulnohumeral joint +C2847390|T037|AB|S53.196A|ICD10CM|Other dislocation of unsp ulnohumeral joint, init encntr|Other dislocation of unsp ulnohumeral joint, init encntr +C2847390|T037|PT|S53.196A|ICD10CM|Other dislocation of unspecified ulnohumeral joint, initial encounter|Other dislocation of unspecified ulnohumeral joint, initial encounter +C2847391|T037|AB|S53.196D|ICD10CM|Other dislocation of unsp ulnohumeral joint, subs encntr|Other dislocation of unsp ulnohumeral joint, subs encntr +C2847391|T037|PT|S53.196D|ICD10CM|Other dislocation of unspecified ulnohumeral joint, subsequent encounter|Other dislocation of unspecified ulnohumeral joint, subsequent encounter +C2847392|T037|PT|S53.196S|ICD10CM|Other dislocation of unspecified ulnohumeral joint, sequela|Other dislocation of unspecified ulnohumeral joint, sequela +C2847392|T037|AB|S53.196S|ICD10CM|Other dislocation of unspecified ulnohumeral joint, sequela|Other dislocation of unspecified ulnohumeral joint, sequela +C0495877|T037|HT|S53.2|ICD10CM|Traumatic rupture of radial collateral ligament|Traumatic rupture of radial collateral ligament +C0495877|T037|AB|S53.2|ICD10CM|Traumatic rupture of radial collateral ligament|Traumatic rupture of radial collateral ligament +C0495877|T037|PT|S53.2|ICD10|Traumatic rupture of radial collateral ligament|Traumatic rupture of radial collateral ligament +C2847393|T037|AB|S53.20|ICD10CM|Traumatic rupture of unspecified radial collateral ligament|Traumatic rupture of unspecified radial collateral ligament +C2847393|T037|HT|S53.20|ICD10CM|Traumatic rupture of unspecified radial collateral ligament|Traumatic rupture of unspecified radial collateral ligament +C2977929|T037|AB|S53.20XA|ICD10CM|Traumatic rupture of unsp radial collateral ligament, init|Traumatic rupture of unsp radial collateral ligament, init +C2977929|T037|PT|S53.20XA|ICD10CM|Traumatic rupture of unspecified radial collateral ligament, initial encounter|Traumatic rupture of unspecified radial collateral ligament, initial encounter +C2977930|T037|AB|S53.20XD|ICD10CM|Traumatic rupture of unsp radial collateral ligament, subs|Traumatic rupture of unsp radial collateral ligament, subs +C2977930|T037|PT|S53.20XD|ICD10CM|Traumatic rupture of unspecified radial collateral ligament, subsequent encounter|Traumatic rupture of unspecified radial collateral ligament, subsequent encounter +C2977931|T037|AB|S53.20XS|ICD10CM|Traumatic rupture of unsp radial collat ligament, sequela|Traumatic rupture of unsp radial collat ligament, sequela +C2977931|T037|PT|S53.20XS|ICD10CM|Traumatic rupture of unspecified radial collateral ligament, sequela|Traumatic rupture of unspecified radial collateral ligament, sequela +C2847397|T037|AB|S53.21|ICD10CM|Traumatic rupture of right radial collateral ligament|Traumatic rupture of right radial collateral ligament +C2847397|T037|HT|S53.21|ICD10CM|Traumatic rupture of right radial collateral ligament|Traumatic rupture of right radial collateral ligament +C2847398|T037|AB|S53.21XA|ICD10CM|Traumatic rupture of right radial collateral ligament, init|Traumatic rupture of right radial collateral ligament, init +C2847398|T037|PT|S53.21XA|ICD10CM|Traumatic rupture of right radial collateral ligament, initial encounter|Traumatic rupture of right radial collateral ligament, initial encounter +C2847399|T037|AB|S53.21XD|ICD10CM|Traumatic rupture of right radial collateral ligament, subs|Traumatic rupture of right radial collateral ligament, subs +C2847399|T037|PT|S53.21XD|ICD10CM|Traumatic rupture of right radial collateral ligament, subsequent encounter|Traumatic rupture of right radial collateral ligament, subsequent encounter +C2847400|T037|AB|S53.21XS|ICD10CM|Traumatic rupture of right radial collat ligament, sequela|Traumatic rupture of right radial collat ligament, sequela +C2847400|T037|PT|S53.21XS|ICD10CM|Traumatic rupture of right radial collateral ligament, sequela|Traumatic rupture of right radial collateral ligament, sequela +C2847401|T037|AB|S53.22|ICD10CM|Traumatic rupture of left radial collateral ligament|Traumatic rupture of left radial collateral ligament +C2847401|T037|HT|S53.22|ICD10CM|Traumatic rupture of left radial collateral ligament|Traumatic rupture of left radial collateral ligament +C2847402|T037|AB|S53.22XA|ICD10CM|Traumatic rupture of left radial collateral ligament, init|Traumatic rupture of left radial collateral ligament, init +C2847402|T037|PT|S53.22XA|ICD10CM|Traumatic rupture of left radial collateral ligament, initial encounter|Traumatic rupture of left radial collateral ligament, initial encounter +C2847403|T037|AB|S53.22XD|ICD10CM|Traumatic rupture of left radial collateral ligament, subs|Traumatic rupture of left radial collateral ligament, subs +C2847403|T037|PT|S53.22XD|ICD10CM|Traumatic rupture of left radial collateral ligament, subsequent encounter|Traumatic rupture of left radial collateral ligament, subsequent encounter +C2847404|T037|AB|S53.22XS|ICD10CM|Traumatic rupture of left radial collat ligament, sequela|Traumatic rupture of left radial collat ligament, sequela +C2847404|T037|PT|S53.22XS|ICD10CM|Traumatic rupture of left radial collateral ligament, sequela|Traumatic rupture of left radial collateral ligament, sequela +C0495878|T037|PT|S53.3|ICD10|Traumatic rupture of ulnar collateral ligament|Traumatic rupture of ulnar collateral ligament +C0495878|T037|HT|S53.3|ICD10CM|Traumatic rupture of ulnar collateral ligament|Traumatic rupture of ulnar collateral ligament +C0495878|T037|AB|S53.3|ICD10CM|Traumatic rupture of ulnar collateral ligament|Traumatic rupture of ulnar collateral ligament +C2847405|T037|AB|S53.30|ICD10CM|Traumatic rupture of unspecified ulnar collateral ligament|Traumatic rupture of unspecified ulnar collateral ligament +C2847405|T037|HT|S53.30|ICD10CM|Traumatic rupture of unspecified ulnar collateral ligament|Traumatic rupture of unspecified ulnar collateral ligament +C2977932|T037|AB|S53.30XA|ICD10CM|Traumatic rupture of unsp ulnar collateral ligament, init|Traumatic rupture of unsp ulnar collateral ligament, init +C2977932|T037|PT|S53.30XA|ICD10CM|Traumatic rupture of unspecified ulnar collateral ligament, initial encounter|Traumatic rupture of unspecified ulnar collateral ligament, initial encounter +C2977933|T037|AB|S53.30XD|ICD10CM|Traumatic rupture of unsp ulnar collateral ligament, subs|Traumatic rupture of unsp ulnar collateral ligament, subs +C2977933|T037|PT|S53.30XD|ICD10CM|Traumatic rupture of unspecified ulnar collateral ligament, subsequent encounter|Traumatic rupture of unspecified ulnar collateral ligament, subsequent encounter +C2977934|T037|AB|S53.30XS|ICD10CM|Traumatic rupture of unsp ulnar collateral ligament, sequela|Traumatic rupture of unsp ulnar collateral ligament, sequela +C2977934|T037|PT|S53.30XS|ICD10CM|Traumatic rupture of unspecified ulnar collateral ligament, sequela|Traumatic rupture of unspecified ulnar collateral ligament, sequela +C2847409|T037|AB|S53.31|ICD10CM|Traumatic rupture of right ulnar collateral ligament|Traumatic rupture of right ulnar collateral ligament +C2847409|T037|HT|S53.31|ICD10CM|Traumatic rupture of right ulnar collateral ligament|Traumatic rupture of right ulnar collateral ligament +C2847410|T037|AB|S53.31XA|ICD10CM|Traumatic rupture of right ulnar collateral ligament, init|Traumatic rupture of right ulnar collateral ligament, init +C2847410|T037|PT|S53.31XA|ICD10CM|Traumatic rupture of right ulnar collateral ligament, initial encounter|Traumatic rupture of right ulnar collateral ligament, initial encounter +C2847411|T037|AB|S53.31XD|ICD10CM|Traumatic rupture of right ulnar collateral ligament, subs|Traumatic rupture of right ulnar collateral ligament, subs +C2847411|T037|PT|S53.31XD|ICD10CM|Traumatic rupture of right ulnar collateral ligament, subsequent encounter|Traumatic rupture of right ulnar collateral ligament, subsequent encounter +C2847412|T037|AB|S53.31XS|ICD10CM|Traumatic rupture of right ulnar collat ligament, sequela|Traumatic rupture of right ulnar collat ligament, sequela +C2847412|T037|PT|S53.31XS|ICD10CM|Traumatic rupture of right ulnar collateral ligament, sequela|Traumatic rupture of right ulnar collateral ligament, sequela +C2847413|T037|AB|S53.32|ICD10CM|Traumatic rupture of left ulnar collateral ligament|Traumatic rupture of left ulnar collateral ligament +C2847413|T037|HT|S53.32|ICD10CM|Traumatic rupture of left ulnar collateral ligament|Traumatic rupture of left ulnar collateral ligament +C2847414|T037|AB|S53.32XA|ICD10CM|Traumatic rupture of left ulnar collateral ligament, init|Traumatic rupture of left ulnar collateral ligament, init +C2847414|T037|PT|S53.32XA|ICD10CM|Traumatic rupture of left ulnar collateral ligament, initial encounter|Traumatic rupture of left ulnar collateral ligament, initial encounter +C2847415|T037|AB|S53.32XD|ICD10CM|Traumatic rupture of left ulnar collateral ligament, subs|Traumatic rupture of left ulnar collateral ligament, subs +C2847415|T037|PT|S53.32XD|ICD10CM|Traumatic rupture of left ulnar collateral ligament, subsequent encounter|Traumatic rupture of left ulnar collateral ligament, subsequent encounter +C2847416|T037|AB|S53.32XS|ICD10CM|Traumatic rupture of left ulnar collateral ligament, sequela|Traumatic rupture of left ulnar collateral ligament, sequela +C2847416|T037|PT|S53.32XS|ICD10CM|Traumatic rupture of left ulnar collateral ligament, sequela|Traumatic rupture of left ulnar collateral ligament, sequela +C0392083|T037|PT|S53.4|ICD10|Sprain and strain of elbow|Sprain and strain of elbow +C0435024|T037|HT|S53.4|ICD10CM|Sprain of elbow|Sprain of elbow +C0435024|T037|AB|S53.4|ICD10CM|Sprain of elbow|Sprain of elbow +C2847417|T037|AB|S53.40|ICD10CM|Unspecified sprain of elbow|Unspecified sprain of elbow +C2847417|T037|HT|S53.40|ICD10CM|Unspecified sprain of elbow|Unspecified sprain of elbow +C2847418|T037|AB|S53.401|ICD10CM|Unspecified sprain of right elbow|Unspecified sprain of right elbow +C2847418|T037|HT|S53.401|ICD10CM|Unspecified sprain of right elbow|Unspecified sprain of right elbow +C2847419|T037|PT|S53.401A|ICD10CM|Unspecified sprain of right elbow, initial encounter|Unspecified sprain of right elbow, initial encounter +C2847419|T037|AB|S53.401A|ICD10CM|Unspecified sprain of right elbow, initial encounter|Unspecified sprain of right elbow, initial encounter +C2847420|T037|PT|S53.401D|ICD10CM|Unspecified sprain of right elbow, subsequent encounter|Unspecified sprain of right elbow, subsequent encounter +C2847420|T037|AB|S53.401D|ICD10CM|Unspecified sprain of right elbow, subsequent encounter|Unspecified sprain of right elbow, subsequent encounter +C2847421|T037|PT|S53.401S|ICD10CM|Unspecified sprain of right elbow, sequela|Unspecified sprain of right elbow, sequela +C2847421|T037|AB|S53.401S|ICD10CM|Unspecified sprain of right elbow, sequela|Unspecified sprain of right elbow, sequela +C2847422|T037|AB|S53.402|ICD10CM|Unspecified sprain of left elbow|Unspecified sprain of left elbow +C2847422|T037|HT|S53.402|ICD10CM|Unspecified sprain of left elbow|Unspecified sprain of left elbow +C2847423|T037|PT|S53.402A|ICD10CM|Unspecified sprain of left elbow, initial encounter|Unspecified sprain of left elbow, initial encounter +C2847423|T037|AB|S53.402A|ICD10CM|Unspecified sprain of left elbow, initial encounter|Unspecified sprain of left elbow, initial encounter +C2847424|T037|PT|S53.402D|ICD10CM|Unspecified sprain of left elbow, subsequent encounter|Unspecified sprain of left elbow, subsequent encounter +C2847424|T037|AB|S53.402D|ICD10CM|Unspecified sprain of left elbow, subsequent encounter|Unspecified sprain of left elbow, subsequent encounter +C2847425|T037|PT|S53.402S|ICD10CM|Unspecified sprain of left elbow, sequela|Unspecified sprain of left elbow, sequela +C2847425|T037|AB|S53.402S|ICD10CM|Unspecified sprain of left elbow, sequela|Unspecified sprain of left elbow, sequela +C0435024|T037|ET|S53.409|ICD10CM|Sprain of elbow NOS|Sprain of elbow NOS +C2847426|T037|AB|S53.409|ICD10CM|Unspecified sprain of unspecified elbow|Unspecified sprain of unspecified elbow +C2847426|T037|HT|S53.409|ICD10CM|Unspecified sprain of unspecified elbow|Unspecified sprain of unspecified elbow +C2847427|T037|PT|S53.409A|ICD10CM|Unspecified sprain of unspecified elbow, initial encounter|Unspecified sprain of unspecified elbow, initial encounter +C2847427|T037|AB|S53.409A|ICD10CM|Unspecified sprain of unspecified elbow, initial encounter|Unspecified sprain of unspecified elbow, initial encounter +C2847428|T037|AB|S53.409D|ICD10CM|Unspecified sprain of unspecified elbow, subs encntr|Unspecified sprain of unspecified elbow, subs encntr +C2847428|T037|PT|S53.409D|ICD10CM|Unspecified sprain of unspecified elbow, subsequent encounter|Unspecified sprain of unspecified elbow, subsequent encounter +C2847429|T037|PT|S53.409S|ICD10CM|Unspecified sprain of unspecified elbow, sequela|Unspecified sprain of unspecified elbow, sequela +C2847429|T037|AB|S53.409S|ICD10CM|Unspecified sprain of unspecified elbow, sequela|Unspecified sprain of unspecified elbow, sequela +C0160058|T037|HT|S53.41|ICD10CM|Radiohumeral (joint) sprain|Radiohumeral (joint) sprain +C0160058|T037|AB|S53.41|ICD10CM|Radiohumeral (joint) sprain|Radiohumeral (joint) sprain +C2211226|T037|AB|S53.411|ICD10CM|Radiohumeral (joint) sprain of right elbow|Radiohumeral (joint) sprain of right elbow +C2211226|T037|HT|S53.411|ICD10CM|Radiohumeral (joint) sprain of right elbow|Radiohumeral (joint) sprain of right elbow +C2847430|T037|AB|S53.411A|ICD10CM|Radiohumeral (joint) sprain of right elbow, init encntr|Radiohumeral (joint) sprain of right elbow, init encntr +C2847430|T037|PT|S53.411A|ICD10CM|Radiohumeral (joint) sprain of right elbow, initial encounter|Radiohumeral (joint) sprain of right elbow, initial encounter +C2847431|T037|AB|S53.411D|ICD10CM|Radiohumeral (joint) sprain of right elbow, subs encntr|Radiohumeral (joint) sprain of right elbow, subs encntr +C2847431|T037|PT|S53.411D|ICD10CM|Radiohumeral (joint) sprain of right elbow, subsequent encounter|Radiohumeral (joint) sprain of right elbow, subsequent encounter +C2847432|T037|PT|S53.411S|ICD10CM|Radiohumeral (joint) sprain of right elbow, sequela|Radiohumeral (joint) sprain of right elbow, sequela +C2847432|T037|AB|S53.411S|ICD10CM|Radiohumeral (joint) sprain of right elbow, sequela|Radiohumeral (joint) sprain of right elbow, sequela +C2211227|T037|AB|S53.412|ICD10CM|Radiohumeral (joint) sprain of left elbow|Radiohumeral (joint) sprain of left elbow +C2211227|T037|HT|S53.412|ICD10CM|Radiohumeral (joint) sprain of left elbow|Radiohumeral (joint) sprain of left elbow +C2847433|T037|AB|S53.412A|ICD10CM|Radiohumeral (joint) sprain of left elbow, initial encounter|Radiohumeral (joint) sprain of left elbow, initial encounter +C2847433|T037|PT|S53.412A|ICD10CM|Radiohumeral (joint) sprain of left elbow, initial encounter|Radiohumeral (joint) sprain of left elbow, initial encounter +C2847434|T037|AB|S53.412D|ICD10CM|Radiohumeral (joint) sprain of left elbow, subs encntr|Radiohumeral (joint) sprain of left elbow, subs encntr +C2847434|T037|PT|S53.412D|ICD10CM|Radiohumeral (joint) sprain of left elbow, subsequent encounter|Radiohumeral (joint) sprain of left elbow, subsequent encounter +C2847435|T037|PT|S53.412S|ICD10CM|Radiohumeral (joint) sprain of left elbow, sequela|Radiohumeral (joint) sprain of left elbow, sequela +C2847435|T037|AB|S53.412S|ICD10CM|Radiohumeral (joint) sprain of left elbow, sequela|Radiohumeral (joint) sprain of left elbow, sequela +C2847436|T037|AB|S53.419|ICD10CM|Radiohumeral (joint) sprain of unspecified elbow|Radiohumeral (joint) sprain of unspecified elbow +C2847436|T037|HT|S53.419|ICD10CM|Radiohumeral (joint) sprain of unspecified elbow|Radiohumeral (joint) sprain of unspecified elbow +C2847437|T037|AB|S53.419A|ICD10CM|Radiohumeral (joint) sprain of unsp elbow, init encntr|Radiohumeral (joint) sprain of unsp elbow, init encntr +C2847437|T037|PT|S53.419A|ICD10CM|Radiohumeral (joint) sprain of unspecified elbow, initial encounter|Radiohumeral (joint) sprain of unspecified elbow, initial encounter +C2847438|T037|AB|S53.419D|ICD10CM|Radiohumeral (joint) sprain of unsp elbow, subs encntr|Radiohumeral (joint) sprain of unsp elbow, subs encntr +C2847438|T037|PT|S53.419D|ICD10CM|Radiohumeral (joint) sprain of unspecified elbow, subsequent encounter|Radiohumeral (joint) sprain of unspecified elbow, subsequent encounter +C2847439|T037|PT|S53.419S|ICD10CM|Radiohumeral (joint) sprain of unspecified elbow, sequela|Radiohumeral (joint) sprain of unspecified elbow, sequela +C2847439|T037|AB|S53.419S|ICD10CM|Radiohumeral (joint) sprain of unspecified elbow, sequela|Radiohumeral (joint) sprain of unspecified elbow, sequela +C0160059|T037|HT|S53.42|ICD10CM|Ulnohumeral (joint) sprain|Ulnohumeral (joint) sprain +C0160059|T037|AB|S53.42|ICD10CM|Ulnohumeral (joint) sprain|Ulnohumeral (joint) sprain +C2211228|T037|AB|S53.421|ICD10CM|Ulnohumeral (joint) sprain of right elbow|Ulnohumeral (joint) sprain of right elbow +C2211228|T037|HT|S53.421|ICD10CM|Ulnohumeral (joint) sprain of right elbow|Ulnohumeral (joint) sprain of right elbow +C2847440|T037|AB|S53.421A|ICD10CM|Ulnohumeral (joint) sprain of right elbow, initial encounter|Ulnohumeral (joint) sprain of right elbow, initial encounter +C2847440|T037|PT|S53.421A|ICD10CM|Ulnohumeral (joint) sprain of right elbow, initial encounter|Ulnohumeral (joint) sprain of right elbow, initial encounter +C2847441|T037|AB|S53.421D|ICD10CM|Ulnohumeral (joint) sprain of right elbow, subs encntr|Ulnohumeral (joint) sprain of right elbow, subs encntr +C2847441|T037|PT|S53.421D|ICD10CM|Ulnohumeral (joint) sprain of right elbow, subsequent encounter|Ulnohumeral (joint) sprain of right elbow, subsequent encounter +C2847442|T037|PT|S53.421S|ICD10CM|Ulnohumeral (joint) sprain of right elbow, sequela|Ulnohumeral (joint) sprain of right elbow, sequela +C2847442|T037|AB|S53.421S|ICD10CM|Ulnohumeral (joint) sprain of right elbow, sequela|Ulnohumeral (joint) sprain of right elbow, sequela +C2211229|T037|AB|S53.422|ICD10CM|Ulnohumeral (joint) sprain of left elbow|Ulnohumeral (joint) sprain of left elbow +C2211229|T037|HT|S53.422|ICD10CM|Ulnohumeral (joint) sprain of left elbow|Ulnohumeral (joint) sprain of left elbow +C2847443|T037|AB|S53.422A|ICD10CM|Ulnohumeral (joint) sprain of left elbow, initial encounter|Ulnohumeral (joint) sprain of left elbow, initial encounter +C2847443|T037|PT|S53.422A|ICD10CM|Ulnohumeral (joint) sprain of left elbow, initial encounter|Ulnohumeral (joint) sprain of left elbow, initial encounter +C2847444|T037|AB|S53.422D|ICD10CM|Ulnohumeral (joint) sprain of left elbow, subs encntr|Ulnohumeral (joint) sprain of left elbow, subs encntr +C2847444|T037|PT|S53.422D|ICD10CM|Ulnohumeral (joint) sprain of left elbow, subsequent encounter|Ulnohumeral (joint) sprain of left elbow, subsequent encounter +C2847445|T037|PT|S53.422S|ICD10CM|Ulnohumeral (joint) sprain of left elbow, sequela|Ulnohumeral (joint) sprain of left elbow, sequela +C2847445|T037|AB|S53.422S|ICD10CM|Ulnohumeral (joint) sprain of left elbow, sequela|Ulnohumeral (joint) sprain of left elbow, sequela +C2847446|T037|AB|S53.429|ICD10CM|Ulnohumeral (joint) sprain of unspecified elbow|Ulnohumeral (joint) sprain of unspecified elbow +C2847446|T037|HT|S53.429|ICD10CM|Ulnohumeral (joint) sprain of unspecified elbow|Ulnohumeral (joint) sprain of unspecified elbow +C2847447|T037|AB|S53.429A|ICD10CM|Ulnohumeral (joint) sprain of unspecified elbow, init encntr|Ulnohumeral (joint) sprain of unspecified elbow, init encntr +C2847447|T037|PT|S53.429A|ICD10CM|Ulnohumeral (joint) sprain of unspecified elbow, initial encounter|Ulnohumeral (joint) sprain of unspecified elbow, initial encounter +C2847448|T037|AB|S53.429D|ICD10CM|Ulnohumeral (joint) sprain of unspecified elbow, subs encntr|Ulnohumeral (joint) sprain of unspecified elbow, subs encntr +C2847448|T037|PT|S53.429D|ICD10CM|Ulnohumeral (joint) sprain of unspecified elbow, subsequent encounter|Ulnohumeral (joint) sprain of unspecified elbow, subsequent encounter +C2847449|T037|PT|S53.429S|ICD10CM|Ulnohumeral (joint) sprain of unspecified elbow, sequela|Ulnohumeral (joint) sprain of unspecified elbow, sequela +C2847449|T037|AB|S53.429S|ICD10CM|Ulnohumeral (joint) sprain of unspecified elbow, sequela|Ulnohumeral (joint) sprain of unspecified elbow, sequela +C0160056|T037|HT|S53.43|ICD10CM|Radial collateral ligament sprain|Radial collateral ligament sprain +C0160056|T037|AB|S53.43|ICD10CM|Radial collateral ligament sprain|Radial collateral ligament sprain +C2211230|T037|AB|S53.431|ICD10CM|Radial collateral ligament sprain of right elbow|Radial collateral ligament sprain of right elbow +C2211230|T037|HT|S53.431|ICD10CM|Radial collateral ligament sprain of right elbow|Radial collateral ligament sprain of right elbow +C2847450|T037|AB|S53.431A|ICD10CM|Radial collateral ligament sprain of right elbow, init|Radial collateral ligament sprain of right elbow, init +C2847450|T037|PT|S53.431A|ICD10CM|Radial collateral ligament sprain of right elbow, initial encounter|Radial collateral ligament sprain of right elbow, initial encounter +C2847451|T037|AB|S53.431D|ICD10CM|Radial collateral ligament sprain of right elbow, subs|Radial collateral ligament sprain of right elbow, subs +C2847451|T037|PT|S53.431D|ICD10CM|Radial collateral ligament sprain of right elbow, subsequent encounter|Radial collateral ligament sprain of right elbow, subsequent encounter +C2847452|T037|PT|S53.431S|ICD10CM|Radial collateral ligament sprain of right elbow, sequela|Radial collateral ligament sprain of right elbow, sequela +C2847452|T037|AB|S53.431S|ICD10CM|Radial collateral ligament sprain of right elbow, sequela|Radial collateral ligament sprain of right elbow, sequela +C2211231|T037|AB|S53.432|ICD10CM|Radial collateral ligament sprain of left elbow|Radial collateral ligament sprain of left elbow +C2211231|T037|HT|S53.432|ICD10CM|Radial collateral ligament sprain of left elbow|Radial collateral ligament sprain of left elbow +C2847453|T037|AB|S53.432A|ICD10CM|Radial collateral ligament sprain of left elbow, init encntr|Radial collateral ligament sprain of left elbow, init encntr +C2847453|T037|PT|S53.432A|ICD10CM|Radial collateral ligament sprain of left elbow, initial encounter|Radial collateral ligament sprain of left elbow, initial encounter +C2847454|T037|AB|S53.432D|ICD10CM|Radial collateral ligament sprain of left elbow, subs encntr|Radial collateral ligament sprain of left elbow, subs encntr +C2847454|T037|PT|S53.432D|ICD10CM|Radial collateral ligament sprain of left elbow, subsequent encounter|Radial collateral ligament sprain of left elbow, subsequent encounter +C2847455|T037|PT|S53.432S|ICD10CM|Radial collateral ligament sprain of left elbow, sequela|Radial collateral ligament sprain of left elbow, sequela +C2847455|T037|AB|S53.432S|ICD10CM|Radial collateral ligament sprain of left elbow, sequela|Radial collateral ligament sprain of left elbow, sequela +C2847456|T037|AB|S53.439|ICD10CM|Radial collateral ligament sprain of unspecified elbow|Radial collateral ligament sprain of unspecified elbow +C2847456|T037|HT|S53.439|ICD10CM|Radial collateral ligament sprain of unspecified elbow|Radial collateral ligament sprain of unspecified elbow +C2847457|T037|AB|S53.439A|ICD10CM|Radial collateral ligament sprain of unsp elbow, init encntr|Radial collateral ligament sprain of unsp elbow, init encntr +C2847457|T037|PT|S53.439A|ICD10CM|Radial collateral ligament sprain of unspecified elbow, initial encounter|Radial collateral ligament sprain of unspecified elbow, initial encounter +C2847458|T037|AB|S53.439D|ICD10CM|Radial collateral ligament sprain of unsp elbow, subs encntr|Radial collateral ligament sprain of unsp elbow, subs encntr +C2847458|T037|PT|S53.439D|ICD10CM|Radial collateral ligament sprain of unspecified elbow, subsequent encounter|Radial collateral ligament sprain of unspecified elbow, subsequent encounter +C2847459|T037|AB|S53.439S|ICD10CM|Radial collateral ligament sprain of unsp elbow, sequela|Radial collateral ligament sprain of unsp elbow, sequela +C2847459|T037|PT|S53.439S|ICD10CM|Radial collateral ligament sprain of unspecified elbow, sequela|Radial collateral ligament sprain of unspecified elbow, sequela +C0160057|T037|HT|S53.44|ICD10CM|Ulnar collateral ligament sprain|Ulnar collateral ligament sprain +C0160057|T037|AB|S53.44|ICD10CM|Ulnar collateral ligament sprain|Ulnar collateral ligament sprain +C2211232|T037|AB|S53.441|ICD10CM|Ulnar collateral ligament sprain of right elbow|Ulnar collateral ligament sprain of right elbow +C2211232|T037|HT|S53.441|ICD10CM|Ulnar collateral ligament sprain of right elbow|Ulnar collateral ligament sprain of right elbow +C2847460|T037|AB|S53.441A|ICD10CM|Ulnar collateral ligament sprain of right elbow, init encntr|Ulnar collateral ligament sprain of right elbow, init encntr +C2847460|T037|PT|S53.441A|ICD10CM|Ulnar collateral ligament sprain of right elbow, initial encounter|Ulnar collateral ligament sprain of right elbow, initial encounter +C2847461|T037|AB|S53.441D|ICD10CM|Ulnar collateral ligament sprain of right elbow, subs encntr|Ulnar collateral ligament sprain of right elbow, subs encntr +C2847461|T037|PT|S53.441D|ICD10CM|Ulnar collateral ligament sprain of right elbow, subsequent encounter|Ulnar collateral ligament sprain of right elbow, subsequent encounter +C2847462|T037|PT|S53.441S|ICD10CM|Ulnar collateral ligament sprain of right elbow, sequela|Ulnar collateral ligament sprain of right elbow, sequela +C2847462|T037|AB|S53.441S|ICD10CM|Ulnar collateral ligament sprain of right elbow, sequela|Ulnar collateral ligament sprain of right elbow, sequela +C2211233|T037|AB|S53.442|ICD10CM|Ulnar collateral ligament sprain of left elbow|Ulnar collateral ligament sprain of left elbow +C2211233|T037|HT|S53.442|ICD10CM|Ulnar collateral ligament sprain of left elbow|Ulnar collateral ligament sprain of left elbow +C2847463|T037|AB|S53.442A|ICD10CM|Ulnar collateral ligament sprain of left elbow, init encntr|Ulnar collateral ligament sprain of left elbow, init encntr +C2847463|T037|PT|S53.442A|ICD10CM|Ulnar collateral ligament sprain of left elbow, initial encounter|Ulnar collateral ligament sprain of left elbow, initial encounter +C2847464|T037|AB|S53.442D|ICD10CM|Ulnar collateral ligament sprain of left elbow, subs encntr|Ulnar collateral ligament sprain of left elbow, subs encntr +C2847464|T037|PT|S53.442D|ICD10CM|Ulnar collateral ligament sprain of left elbow, subsequent encounter|Ulnar collateral ligament sprain of left elbow, subsequent encounter +C2847465|T037|PT|S53.442S|ICD10CM|Ulnar collateral ligament sprain of left elbow, sequela|Ulnar collateral ligament sprain of left elbow, sequela +C2847465|T037|AB|S53.442S|ICD10CM|Ulnar collateral ligament sprain of left elbow, sequela|Ulnar collateral ligament sprain of left elbow, sequela +C2847466|T037|AB|S53.449|ICD10CM|Ulnar collateral ligament sprain of unspecified elbow|Ulnar collateral ligament sprain of unspecified elbow +C2847466|T037|HT|S53.449|ICD10CM|Ulnar collateral ligament sprain of unspecified elbow|Ulnar collateral ligament sprain of unspecified elbow +C2847467|T037|AB|S53.449A|ICD10CM|Ulnar collateral ligament sprain of unsp elbow, init encntr|Ulnar collateral ligament sprain of unsp elbow, init encntr +C2847467|T037|PT|S53.449A|ICD10CM|Ulnar collateral ligament sprain of unspecified elbow, initial encounter|Ulnar collateral ligament sprain of unspecified elbow, initial encounter +C2847468|T037|AB|S53.449D|ICD10CM|Ulnar collateral ligament sprain of unsp elbow, subs encntr|Ulnar collateral ligament sprain of unsp elbow, subs encntr +C2847468|T037|PT|S53.449D|ICD10CM|Ulnar collateral ligament sprain of unspecified elbow, subsequent encounter|Ulnar collateral ligament sprain of unspecified elbow, subsequent encounter +C2847469|T037|AB|S53.449S|ICD10CM|Ulnar collateral ligament sprain of unsp elbow, sequela|Ulnar collateral ligament sprain of unsp elbow, sequela +C2847469|T037|PT|S53.449S|ICD10CM|Ulnar collateral ligament sprain of unspecified elbow, sequela|Ulnar collateral ligament sprain of unspecified elbow, sequela +C0434438|T037|AB|S53.49|ICD10CM|Other sprain of elbow|Other sprain of elbow +C0434438|T037|HT|S53.49|ICD10CM|Other sprain of elbow|Other sprain of elbow +C2847470|T037|AB|S53.491|ICD10CM|Other sprain of right elbow|Other sprain of right elbow +C2847470|T037|HT|S53.491|ICD10CM|Other sprain of right elbow|Other sprain of right elbow +C2847471|T037|PT|S53.491A|ICD10CM|Other sprain of right elbow, initial encounter|Other sprain of right elbow, initial encounter +C2847471|T037|AB|S53.491A|ICD10CM|Other sprain of right elbow, initial encounter|Other sprain of right elbow, initial encounter +C2847472|T037|PT|S53.491D|ICD10CM|Other sprain of right elbow, subsequent encounter|Other sprain of right elbow, subsequent encounter +C2847472|T037|AB|S53.491D|ICD10CM|Other sprain of right elbow, subsequent encounter|Other sprain of right elbow, subsequent encounter +C2847473|T037|PT|S53.491S|ICD10CM|Other sprain of right elbow, sequela|Other sprain of right elbow, sequela +C2847473|T037|AB|S53.491S|ICD10CM|Other sprain of right elbow, sequela|Other sprain of right elbow, sequela +C2847474|T037|AB|S53.492|ICD10CM|Other sprain of left elbow|Other sprain of left elbow +C2847474|T037|HT|S53.492|ICD10CM|Other sprain of left elbow|Other sprain of left elbow +C2847475|T037|PT|S53.492A|ICD10CM|Other sprain of left elbow, initial encounter|Other sprain of left elbow, initial encounter +C2847475|T037|AB|S53.492A|ICD10CM|Other sprain of left elbow, initial encounter|Other sprain of left elbow, initial encounter +C2847476|T037|PT|S53.492D|ICD10CM|Other sprain of left elbow, subsequent encounter|Other sprain of left elbow, subsequent encounter +C2847476|T037|AB|S53.492D|ICD10CM|Other sprain of left elbow, subsequent encounter|Other sprain of left elbow, subsequent encounter +C2847477|T037|PT|S53.492S|ICD10CM|Other sprain of left elbow, sequela|Other sprain of left elbow, sequela +C2847477|T037|AB|S53.492S|ICD10CM|Other sprain of left elbow, sequela|Other sprain of left elbow, sequela +C2847478|T037|AB|S53.499|ICD10CM|Other sprain of unspecified elbow|Other sprain of unspecified elbow +C2847478|T037|HT|S53.499|ICD10CM|Other sprain of unspecified elbow|Other sprain of unspecified elbow +C2847479|T037|PT|S53.499A|ICD10CM|Other sprain of unspecified elbow, initial encounter|Other sprain of unspecified elbow, initial encounter +C2847479|T037|AB|S53.499A|ICD10CM|Other sprain of unspecified elbow, initial encounter|Other sprain of unspecified elbow, initial encounter +C2847480|T037|PT|S53.499D|ICD10CM|Other sprain of unspecified elbow, subsequent encounter|Other sprain of unspecified elbow, subsequent encounter +C2847480|T037|AB|S53.499D|ICD10CM|Other sprain of unspecified elbow, subsequent encounter|Other sprain of unspecified elbow, subsequent encounter +C2847481|T037|PT|S53.499S|ICD10CM|Other sprain of unspecified elbow, sequela|Other sprain of unspecified elbow, sequela +C2847481|T037|AB|S53.499S|ICD10CM|Other sprain of unspecified elbow, sequela|Other sprain of unspecified elbow, sequela +C0478290|T037|AB|S54|ICD10CM|Injury of nerves at forearm level|Injury of nerves at forearm level +C0478290|T037|HT|S54|ICD10CM|Injury of nerves at forearm level|Injury of nerves at forearm level +C0478290|T037|HT|S54|ICD10|Injury of nerves at forearm level|Injury of nerves at forearm level +C0495880|T037|PT|S54.0|ICD10|Injury of ulnar nerve at forearm level|Injury of ulnar nerve at forearm level +C0495880|T037|HT|S54.0|ICD10CM|Injury of ulnar nerve at forearm level|Injury of ulnar nerve at forearm level +C0495880|T037|AB|S54.0|ICD10CM|Injury of ulnar nerve at forearm level|Injury of ulnar nerve at forearm level +C0161458|T037|ET|S54.0|ICD10CM|Injury of ulnar nerve NOS|Injury of ulnar nerve NOS +C2847482|T037|AB|S54.00|ICD10CM|Injury of ulnar nerve at forearm level, unspecified arm|Injury of ulnar nerve at forearm level, unspecified arm +C2847482|T037|HT|S54.00|ICD10CM|Injury of ulnar nerve at forearm level, unspecified arm|Injury of ulnar nerve at forearm level, unspecified arm +C2847483|T037|AB|S54.00XA|ICD10CM|Injury of ulnar nerve at forearm level, unsp arm, init|Injury of ulnar nerve at forearm level, unsp arm, init +C2847483|T037|PT|S54.00XA|ICD10CM|Injury of ulnar nerve at forearm level, unspecified arm, initial encounter|Injury of ulnar nerve at forearm level, unspecified arm, initial encounter +C2847484|T037|AB|S54.00XD|ICD10CM|Injury of ulnar nerve at forearm level, unsp arm, subs|Injury of ulnar nerve at forearm level, unsp arm, subs +C2847484|T037|PT|S54.00XD|ICD10CM|Injury of ulnar nerve at forearm level, unspecified arm, subsequent encounter|Injury of ulnar nerve at forearm level, unspecified arm, subsequent encounter +C2847485|T037|AB|S54.00XS|ICD10CM|Injury of ulnar nerve at forearm level, unsp arm, sequela|Injury of ulnar nerve at forearm level, unsp arm, sequela +C2847485|T037|PT|S54.00XS|ICD10CM|Injury of ulnar nerve at forearm level, unspecified arm, sequela|Injury of ulnar nerve at forearm level, unspecified arm, sequela +C2847486|T037|AB|S54.01|ICD10CM|Injury of ulnar nerve at forearm level, right arm|Injury of ulnar nerve at forearm level, right arm +C2847486|T037|HT|S54.01|ICD10CM|Injury of ulnar nerve at forearm level, right arm|Injury of ulnar nerve at forearm level, right arm +C2847487|T037|AB|S54.01XA|ICD10CM|Injury of ulnar nerve at forearm level, right arm, init|Injury of ulnar nerve at forearm level, right arm, init +C2847487|T037|PT|S54.01XA|ICD10CM|Injury of ulnar nerve at forearm level, right arm, initial encounter|Injury of ulnar nerve at forearm level, right arm, initial encounter +C2847488|T037|AB|S54.01XD|ICD10CM|Injury of ulnar nerve at forearm level, right arm, subs|Injury of ulnar nerve at forearm level, right arm, subs +C2847488|T037|PT|S54.01XD|ICD10CM|Injury of ulnar nerve at forearm level, right arm, subsequent encounter|Injury of ulnar nerve at forearm level, right arm, subsequent encounter +C2847489|T037|AB|S54.01XS|ICD10CM|Injury of ulnar nerve at forearm level, right arm, sequela|Injury of ulnar nerve at forearm level, right arm, sequela +C2847489|T037|PT|S54.01XS|ICD10CM|Injury of ulnar nerve at forearm level, right arm, sequela|Injury of ulnar nerve at forearm level, right arm, sequela +C2847490|T037|AB|S54.02|ICD10CM|Injury of ulnar nerve at forearm level, left arm|Injury of ulnar nerve at forearm level, left arm +C2847490|T037|HT|S54.02|ICD10CM|Injury of ulnar nerve at forearm level, left arm|Injury of ulnar nerve at forearm level, left arm +C2847491|T037|AB|S54.02XA|ICD10CM|Injury of ulnar nerve at forearm level, left arm, init|Injury of ulnar nerve at forearm level, left arm, init +C2847491|T037|PT|S54.02XA|ICD10CM|Injury of ulnar nerve at forearm level, left arm, initial encounter|Injury of ulnar nerve at forearm level, left arm, initial encounter +C2847492|T037|AB|S54.02XD|ICD10CM|Injury of ulnar nerve at forearm level, left arm, subs|Injury of ulnar nerve at forearm level, left arm, subs +C2847492|T037|PT|S54.02XD|ICD10CM|Injury of ulnar nerve at forearm level, left arm, subsequent encounter|Injury of ulnar nerve at forearm level, left arm, subsequent encounter +C2847493|T037|AB|S54.02XS|ICD10CM|Injury of ulnar nerve at forearm level, left arm, sequela|Injury of ulnar nerve at forearm level, left arm, sequela +C2847493|T037|PT|S54.02XS|ICD10CM|Injury of ulnar nerve at forearm level, left arm, sequela|Injury of ulnar nerve at forearm level, left arm, sequela +C0495881|T037|HT|S54.1|ICD10CM|Injury of median nerve at forearm level|Injury of median nerve at forearm level +C0495881|T037|AB|S54.1|ICD10CM|Injury of median nerve at forearm level|Injury of median nerve at forearm level +C0495881|T037|PT|S54.1|ICD10|Injury of median nerve at forearm level|Injury of median nerve at forearm level +C0161457|T037|ET|S54.1|ICD10CM|Injury of median nerve NOS|Injury of median nerve NOS +C2847494|T037|AB|S54.10|ICD10CM|Injury of median nerve at forearm level, unspecified arm|Injury of median nerve at forearm level, unspecified arm +C2847494|T037|HT|S54.10|ICD10CM|Injury of median nerve at forearm level, unspecified arm|Injury of median nerve at forearm level, unspecified arm +C2847495|T037|AB|S54.10XA|ICD10CM|Injury of median nerve at forearm level, unsp arm, init|Injury of median nerve at forearm level, unsp arm, init +C2847495|T037|PT|S54.10XA|ICD10CM|Injury of median nerve at forearm level, unspecified arm, initial encounter|Injury of median nerve at forearm level, unspecified arm, initial encounter +C2847496|T037|AB|S54.10XD|ICD10CM|Injury of median nerve at forearm level, unsp arm, subs|Injury of median nerve at forearm level, unsp arm, subs +C2847496|T037|PT|S54.10XD|ICD10CM|Injury of median nerve at forearm level, unspecified arm, subsequent encounter|Injury of median nerve at forearm level, unspecified arm, subsequent encounter +C2847497|T037|AB|S54.10XS|ICD10CM|Injury of median nerve at forearm level, unsp arm, sequela|Injury of median nerve at forearm level, unsp arm, sequela +C2847497|T037|PT|S54.10XS|ICD10CM|Injury of median nerve at forearm level, unspecified arm, sequela|Injury of median nerve at forearm level, unspecified arm, sequela +C2847498|T037|AB|S54.11|ICD10CM|Injury of median nerve at forearm level, right arm|Injury of median nerve at forearm level, right arm +C2847498|T037|HT|S54.11|ICD10CM|Injury of median nerve at forearm level, right arm|Injury of median nerve at forearm level, right arm +C2847499|T037|AB|S54.11XA|ICD10CM|Injury of median nerve at forearm level, right arm, init|Injury of median nerve at forearm level, right arm, init +C2847499|T037|PT|S54.11XA|ICD10CM|Injury of median nerve at forearm level, right arm, initial encounter|Injury of median nerve at forearm level, right arm, initial encounter +C2847500|T037|AB|S54.11XD|ICD10CM|Injury of median nerve at forearm level, right arm, subs|Injury of median nerve at forearm level, right arm, subs +C2847500|T037|PT|S54.11XD|ICD10CM|Injury of median nerve at forearm level, right arm, subsequent encounter|Injury of median nerve at forearm level, right arm, subsequent encounter +C2847501|T037|AB|S54.11XS|ICD10CM|Injury of median nerve at forearm level, right arm, sequela|Injury of median nerve at forearm level, right arm, sequela +C2847501|T037|PT|S54.11XS|ICD10CM|Injury of median nerve at forearm level, right arm, sequela|Injury of median nerve at forearm level, right arm, sequela +C2847502|T037|AB|S54.12|ICD10CM|Injury of median nerve at forearm level, left arm|Injury of median nerve at forearm level, left arm +C2847502|T037|HT|S54.12|ICD10CM|Injury of median nerve at forearm level, left arm|Injury of median nerve at forearm level, left arm +C2847503|T037|AB|S54.12XA|ICD10CM|Injury of median nerve at forearm level, left arm, init|Injury of median nerve at forearm level, left arm, init +C2847503|T037|PT|S54.12XA|ICD10CM|Injury of median nerve at forearm level, left arm, initial encounter|Injury of median nerve at forearm level, left arm, initial encounter +C2847504|T037|AB|S54.12XD|ICD10CM|Injury of median nerve at forearm level, left arm, subs|Injury of median nerve at forearm level, left arm, subs +C2847504|T037|PT|S54.12XD|ICD10CM|Injury of median nerve at forearm level, left arm, subsequent encounter|Injury of median nerve at forearm level, left arm, subsequent encounter +C2847505|T037|AB|S54.12XS|ICD10CM|Injury of median nerve at forearm level, left arm, sequela|Injury of median nerve at forearm level, left arm, sequela +C2847505|T037|PT|S54.12XS|ICD10CM|Injury of median nerve at forearm level, left arm, sequela|Injury of median nerve at forearm level, left arm, sequela +C0495882|T037|PT|S54.2|ICD10|Injury of radial nerve at forearm level|Injury of radial nerve at forearm level +C0495882|T037|HT|S54.2|ICD10CM|Injury of radial nerve at forearm level|Injury of radial nerve at forearm level +C0495882|T037|AB|S54.2|ICD10CM|Injury of radial nerve at forearm level|Injury of radial nerve at forearm level +C0161459|T037|ET|S54.2|ICD10CM|Injury of radial nerve NOS|Injury of radial nerve NOS +C2847506|T037|AB|S54.20|ICD10CM|Injury of radial nerve at forearm level, unspecified arm|Injury of radial nerve at forearm level, unspecified arm +C2847506|T037|HT|S54.20|ICD10CM|Injury of radial nerve at forearm level, unspecified arm|Injury of radial nerve at forearm level, unspecified arm +C2847507|T037|AB|S54.20XA|ICD10CM|Injury of radial nerve at forearm level, unsp arm, init|Injury of radial nerve at forearm level, unsp arm, init +C2847507|T037|PT|S54.20XA|ICD10CM|Injury of radial nerve at forearm level, unspecified arm, initial encounter|Injury of radial nerve at forearm level, unspecified arm, initial encounter +C2847508|T037|AB|S54.20XD|ICD10CM|Injury of radial nerve at forearm level, unsp arm, subs|Injury of radial nerve at forearm level, unsp arm, subs +C2847508|T037|PT|S54.20XD|ICD10CM|Injury of radial nerve at forearm level, unspecified arm, subsequent encounter|Injury of radial nerve at forearm level, unspecified arm, subsequent encounter +C2847509|T037|AB|S54.20XS|ICD10CM|Injury of radial nerve at forearm level, unsp arm, sequela|Injury of radial nerve at forearm level, unsp arm, sequela +C2847509|T037|PT|S54.20XS|ICD10CM|Injury of radial nerve at forearm level, unspecified arm, sequela|Injury of radial nerve at forearm level, unspecified arm, sequela +C2847510|T037|AB|S54.21|ICD10CM|Injury of radial nerve at forearm level, right arm|Injury of radial nerve at forearm level, right arm +C2847510|T037|HT|S54.21|ICD10CM|Injury of radial nerve at forearm level, right arm|Injury of radial nerve at forearm level, right arm +C2847511|T037|AB|S54.21XA|ICD10CM|Injury of radial nerve at forearm level, right arm, init|Injury of radial nerve at forearm level, right arm, init +C2847511|T037|PT|S54.21XA|ICD10CM|Injury of radial nerve at forearm level, right arm, initial encounter|Injury of radial nerve at forearm level, right arm, initial encounter +C2847512|T037|AB|S54.21XD|ICD10CM|Injury of radial nerve at forearm level, right arm, subs|Injury of radial nerve at forearm level, right arm, subs +C2847512|T037|PT|S54.21XD|ICD10CM|Injury of radial nerve at forearm level, right arm, subsequent encounter|Injury of radial nerve at forearm level, right arm, subsequent encounter +C2847513|T037|AB|S54.21XS|ICD10CM|Injury of radial nerve at forearm level, right arm, sequela|Injury of radial nerve at forearm level, right arm, sequela +C2847513|T037|PT|S54.21XS|ICD10CM|Injury of radial nerve at forearm level, right arm, sequela|Injury of radial nerve at forearm level, right arm, sequela +C2847514|T037|AB|S54.22|ICD10CM|Injury of radial nerve at forearm level, left arm|Injury of radial nerve at forearm level, left arm +C2847514|T037|HT|S54.22|ICD10CM|Injury of radial nerve at forearm level, left arm|Injury of radial nerve at forearm level, left arm +C2847515|T037|AB|S54.22XA|ICD10CM|Injury of radial nerve at forearm level, left arm, init|Injury of radial nerve at forearm level, left arm, init +C2847515|T037|PT|S54.22XA|ICD10CM|Injury of radial nerve at forearm level, left arm, initial encounter|Injury of radial nerve at forearm level, left arm, initial encounter +C2847516|T037|AB|S54.22XD|ICD10CM|Injury of radial nerve at forearm level, left arm, subs|Injury of radial nerve at forearm level, left arm, subs +C2847516|T037|PT|S54.22XD|ICD10CM|Injury of radial nerve at forearm level, left arm, subsequent encounter|Injury of radial nerve at forearm level, left arm, subsequent encounter +C2847517|T037|AB|S54.22XS|ICD10CM|Injury of radial nerve at forearm level, left arm, sequela|Injury of radial nerve at forearm level, left arm, sequela +C2847517|T037|PT|S54.22XS|ICD10CM|Injury of radial nerve at forearm level, left arm, sequela|Injury of radial nerve at forearm level, left arm, sequela +C0451652|T037|HT|S54.3|ICD10CM|Injury of cutaneous sensory nerve at forearm level|Injury of cutaneous sensory nerve at forearm level +C0451652|T037|AB|S54.3|ICD10CM|Injury of cutaneous sensory nerve at forearm level|Injury of cutaneous sensory nerve at forearm level +C0451652|T037|PT|S54.3|ICD10|Injury of cutaneous sensory nerve at forearm level|Injury of cutaneous sensory nerve at forearm level +C2847518|T037|AB|S54.30|ICD10CM|Injury of cutaneous sensory nerve at forearm level, unsp arm|Injury of cutaneous sensory nerve at forearm level, unsp arm +C2847518|T037|HT|S54.30|ICD10CM|Injury of cutaneous sensory nerve at forearm level, unspecified arm|Injury of cutaneous sensory nerve at forearm level, unspecified arm +C2847519|T037|AB|S54.30XA|ICD10CM|Injury of cutan sensory nerve at forarm lv, unsp arm, init|Injury of cutan sensory nerve at forarm lv, unsp arm, init +C2847519|T037|PT|S54.30XA|ICD10CM|Injury of cutaneous sensory nerve at forearm level, unspecified arm, initial encounter|Injury of cutaneous sensory nerve at forearm level, unspecified arm, initial encounter +C2847520|T037|AB|S54.30XD|ICD10CM|Injury of cutan sensory nerve at forarm lv, unsp arm, subs|Injury of cutan sensory nerve at forarm lv, unsp arm, subs +C2847520|T037|PT|S54.30XD|ICD10CM|Injury of cutaneous sensory nerve at forearm level, unspecified arm, subsequent encounter|Injury of cutaneous sensory nerve at forearm level, unspecified arm, subsequent encounter +C2847521|T037|AB|S54.30XS|ICD10CM|Inj cutan sensory nerve at forarm lv, unsp arm, sequela|Inj cutan sensory nerve at forarm lv, unsp arm, sequela +C2847521|T037|PT|S54.30XS|ICD10CM|Injury of cutaneous sensory nerve at forearm level, unspecified arm, sequela|Injury of cutaneous sensory nerve at forearm level, unspecified arm, sequela +C2847522|T037|AB|S54.31|ICD10CM|Injury of cutaneous sensory nerve at forarm lv, right arm|Injury of cutaneous sensory nerve at forarm lv, right arm +C2847522|T037|HT|S54.31|ICD10CM|Injury of cutaneous sensory nerve at forearm level, right arm|Injury of cutaneous sensory nerve at forearm level, right arm +C2847523|T037|AB|S54.31XA|ICD10CM|Injury of cutan sensory nerve at forarm lv, right arm, init|Injury of cutan sensory nerve at forarm lv, right arm, init +C2847523|T037|PT|S54.31XA|ICD10CM|Injury of cutaneous sensory nerve at forearm level, right arm, initial encounter|Injury of cutaneous sensory nerve at forearm level, right arm, initial encounter +C2847524|T037|AB|S54.31XD|ICD10CM|Injury of cutan sensory nerve at forarm lv, right arm, subs|Injury of cutan sensory nerve at forarm lv, right arm, subs +C2847524|T037|PT|S54.31XD|ICD10CM|Injury of cutaneous sensory nerve at forearm level, right arm, subsequent encounter|Injury of cutaneous sensory nerve at forearm level, right arm, subsequent encounter +C2847525|T037|AB|S54.31XS|ICD10CM|Inj cutan sensory nerve at forarm lv, right arm, sequela|Inj cutan sensory nerve at forarm lv, right arm, sequela +C2847525|T037|PT|S54.31XS|ICD10CM|Injury of cutaneous sensory nerve at forearm level, right arm, sequela|Injury of cutaneous sensory nerve at forearm level, right arm, sequela +C2847526|T037|AB|S54.32|ICD10CM|Injury of cutaneous sensory nerve at forearm level, left arm|Injury of cutaneous sensory nerve at forearm level, left arm +C2847526|T037|HT|S54.32|ICD10CM|Injury of cutaneous sensory nerve at forearm level, left arm|Injury of cutaneous sensory nerve at forearm level, left arm +C2847527|T037|AB|S54.32XA|ICD10CM|Injury of cutan sensory nerve at forarm lv, left arm, init|Injury of cutan sensory nerve at forarm lv, left arm, init +C2847527|T037|PT|S54.32XA|ICD10CM|Injury of cutaneous sensory nerve at forearm level, left arm, initial encounter|Injury of cutaneous sensory nerve at forearm level, left arm, initial encounter +C2847528|T037|AB|S54.32XD|ICD10CM|Injury of cutan sensory nerve at forarm lv, left arm, subs|Injury of cutan sensory nerve at forarm lv, left arm, subs +C2847528|T037|PT|S54.32XD|ICD10CM|Injury of cutaneous sensory nerve at forearm level, left arm, subsequent encounter|Injury of cutaneous sensory nerve at forearm level, left arm, subsequent encounter +C2847529|T037|AB|S54.32XS|ICD10CM|Inj cutan sensory nerve at forarm lv, left arm, sequela|Inj cutan sensory nerve at forarm lv, left arm, sequela +C2847529|T037|PT|S54.32XS|ICD10CM|Injury of cutaneous sensory nerve at forearm level, left arm, sequela|Injury of cutaneous sensory nerve at forearm level, left arm, sequela +C0451663|T037|PT|S54.7|ICD10|Injury of multiple nerves at forearm level|Injury of multiple nerves at forearm level +C0478289|T037|PT|S54.8|ICD10|Injury of other nerves at forearm level|Injury of other nerves at forearm level +C0478289|T037|HT|S54.8|ICD10CM|Injury of other nerves at forearm level|Injury of other nerves at forearm level +C0478289|T037|AB|S54.8|ICD10CM|Injury of other nerves at forearm level|Injury of other nerves at forearm level +C0478289|T037|HT|S54.8X|ICD10CM|Injury of other nerves at forearm level|Injury of other nerves at forearm level +C0478289|T037|AB|S54.8X|ICD10CM|Injury of other nerves at forearm level|Injury of other nerves at forearm level +C4269618|T037|AB|S54.8X1|ICD10CM|Injury of other nerves at forearm level, right arm|Injury of other nerves at forearm level, right arm +C4269618|T037|HT|S54.8X1|ICD10CM|Injury of other nerves at forearm level, right arm|Injury of other nerves at forearm level, right arm +C4269619|T037|AB|S54.8X1A|ICD10CM|Injury of other nerves at forearm level, right arm, init|Injury of other nerves at forearm level, right arm, init +C4269619|T037|PT|S54.8X1A|ICD10CM|Injury of other nerves at forearm level, right arm, initial encounter|Injury of other nerves at forearm level, right arm, initial encounter +C4269620|T037|AB|S54.8X1D|ICD10CM|Injury of other nerves at forearm level, right arm, subs|Injury of other nerves at forearm level, right arm, subs +C4269620|T037|PT|S54.8X1D|ICD10CM|Injury of other nerves at forearm level, right arm, subsequent encounter|Injury of other nerves at forearm level, right arm, subsequent encounter +C4269621|T037|AB|S54.8X1S|ICD10CM|Injury of other nerves at forearm level, right arm, sequela|Injury of other nerves at forearm level, right arm, sequela +C4269621|T037|PT|S54.8X1S|ICD10CM|Injury of other nerves at forearm level, right arm, sequela|Injury of other nerves at forearm level, right arm, sequela +C4269622|T037|AB|S54.8X2|ICD10CM|Injury of other nerves at forearm level, left arm|Injury of other nerves at forearm level, left arm +C4269622|T037|HT|S54.8X2|ICD10CM|Injury of other nerves at forearm level, left arm|Injury of other nerves at forearm level, left arm +C4269623|T037|AB|S54.8X2A|ICD10CM|Injury of other nerves at forearm level, left arm, init|Injury of other nerves at forearm level, left arm, init +C4269623|T037|PT|S54.8X2A|ICD10CM|Injury of other nerves at forearm level, left arm, initial encounter|Injury of other nerves at forearm level, left arm, initial encounter +C4269624|T037|AB|S54.8X2D|ICD10CM|Injury of other nerves at forearm level, left arm, subs|Injury of other nerves at forearm level, left arm, subs +C4269624|T037|PT|S54.8X2D|ICD10CM|Injury of other nerves at forearm level, left arm, subsequent encounter|Injury of other nerves at forearm level, left arm, subsequent encounter +C4269625|T037|AB|S54.8X2S|ICD10CM|Injury of other nerves at forearm level, left arm, sequela|Injury of other nerves at forearm level, left arm, sequela +C4269625|T037|PT|S54.8X2S|ICD10CM|Injury of other nerves at forearm level, left arm, sequela|Injury of other nerves at forearm level, left arm, sequela +C4269626|T037|AB|S54.8X9|ICD10CM|Injury of other nerves at forearm level, unspecified arm|Injury of other nerves at forearm level, unspecified arm +C4269626|T037|HT|S54.8X9|ICD10CM|Injury of other nerves at forearm level, unspecified arm|Injury of other nerves at forearm level, unspecified arm +C4269627|T037|AB|S54.8X9A|ICD10CM|Injury of other nerves at forarm lv, unspecified arm, init|Injury of other nerves at forarm lv, unspecified arm, init +C4269627|T037|PT|S54.8X9A|ICD10CM|Injury of other nerves at forearm level, unspecified arm, initial encounter|Injury of other nerves at forearm level, unspecified arm, initial encounter +C4269628|T037|AB|S54.8X9D|ICD10CM|Injury of other nerves at forarm lv, unspecified arm, subs|Injury of other nerves at forarm lv, unspecified arm, subs +C4269628|T037|PT|S54.8X9D|ICD10CM|Injury of other nerves at forearm level, unspecified arm, subsequent encounter|Injury of other nerves at forearm level, unspecified arm, subsequent encounter +C4269629|T037|AB|S54.8X9S|ICD10CM|Injury of other nerves at forarm lv, unsp arm, sequela|Injury of other nerves at forarm lv, unsp arm, sequela +C4269629|T037|PT|S54.8X9S|ICD10CM|Injury of other nerves at forearm level, unspecified arm, sequela|Injury of other nerves at forearm level, unspecified arm, sequela +C0478290|T037|HT|S54.9|ICD10CM|Injury of unspecified nerve at forearm level|Injury of unspecified nerve at forearm level +C0478290|T037|AB|S54.9|ICD10CM|Injury of unspecified nerve at forearm level|Injury of unspecified nerve at forearm level +C0478290|T037|PT|S54.9|ICD10|Injury of unspecified nerve at forearm level|Injury of unspecified nerve at forearm level +C2847542|T037|AB|S54.90|ICD10CM|Injury of unsp nerve at forearm level, unspecified arm|Injury of unsp nerve at forearm level, unspecified arm +C2847542|T037|HT|S54.90|ICD10CM|Injury of unspecified nerve at forearm level, unspecified arm|Injury of unspecified nerve at forearm level, unspecified arm +C2847543|T037|AB|S54.90XA|ICD10CM|Injury of unsp nerve at forearm level, unsp arm, init encntr|Injury of unsp nerve at forearm level, unsp arm, init encntr +C2847543|T037|PT|S54.90XA|ICD10CM|Injury of unspecified nerve at forearm level, unspecified arm, initial encounter|Injury of unspecified nerve at forearm level, unspecified arm, initial encounter +C2847544|T037|AB|S54.90XD|ICD10CM|Injury of unsp nerve at forearm level, unsp arm, subs encntr|Injury of unsp nerve at forearm level, unsp arm, subs encntr +C2847544|T037|PT|S54.90XD|ICD10CM|Injury of unspecified nerve at forearm level, unspecified arm, subsequent encounter|Injury of unspecified nerve at forearm level, unspecified arm, subsequent encounter +C2847545|T037|AB|S54.90XS|ICD10CM|Injury of unsp nerve at forearm level, unsp arm, sequela|Injury of unsp nerve at forearm level, unsp arm, sequela +C2847545|T037|PT|S54.90XS|ICD10CM|Injury of unspecified nerve at forearm level, unspecified arm, sequela|Injury of unspecified nerve at forearm level, unspecified arm, sequela +C2847546|T037|AB|S54.91|ICD10CM|Injury of unspecified nerve at forearm level, right arm|Injury of unspecified nerve at forearm level, right arm +C2847546|T037|HT|S54.91|ICD10CM|Injury of unspecified nerve at forearm level, right arm|Injury of unspecified nerve at forearm level, right arm +C2847547|T037|AB|S54.91XA|ICD10CM|Injury of unsp nerve at forearm level, right arm, init|Injury of unsp nerve at forearm level, right arm, init +C2847547|T037|PT|S54.91XA|ICD10CM|Injury of unspecified nerve at forearm level, right arm, initial encounter|Injury of unspecified nerve at forearm level, right arm, initial encounter +C2847548|T037|AB|S54.91XD|ICD10CM|Injury of unsp nerve at forearm level, right arm, subs|Injury of unsp nerve at forearm level, right arm, subs +C2847548|T037|PT|S54.91XD|ICD10CM|Injury of unspecified nerve at forearm level, right arm, subsequent encounter|Injury of unspecified nerve at forearm level, right arm, subsequent encounter +C2847549|T037|AB|S54.91XS|ICD10CM|Injury of unsp nerve at forearm level, right arm, sequela|Injury of unsp nerve at forearm level, right arm, sequela +C2847549|T037|PT|S54.91XS|ICD10CM|Injury of unspecified nerve at forearm level, right arm, sequela|Injury of unspecified nerve at forearm level, right arm, sequela +C2847550|T037|AB|S54.92|ICD10CM|Injury of unspecified nerve at forearm level, left arm|Injury of unspecified nerve at forearm level, left arm +C2847550|T037|HT|S54.92|ICD10CM|Injury of unspecified nerve at forearm level, left arm|Injury of unspecified nerve at forearm level, left arm +C2847551|T037|AB|S54.92XA|ICD10CM|Injury of unsp nerve at forearm level, left arm, init encntr|Injury of unsp nerve at forearm level, left arm, init encntr +C2847551|T037|PT|S54.92XA|ICD10CM|Injury of unspecified nerve at forearm level, left arm, initial encounter|Injury of unspecified nerve at forearm level, left arm, initial encounter +C2847552|T037|AB|S54.92XD|ICD10CM|Injury of unsp nerve at forearm level, left arm, subs encntr|Injury of unsp nerve at forearm level, left arm, subs encntr +C2847552|T037|PT|S54.92XD|ICD10CM|Injury of unspecified nerve at forearm level, left arm, subsequent encounter|Injury of unspecified nerve at forearm level, left arm, subsequent encounter +C2847553|T037|AB|S54.92XS|ICD10CM|Injury of unsp nerve at forearm level, left arm, sequela|Injury of unsp nerve at forearm level, left arm, sequela +C2847553|T037|PT|S54.92XS|ICD10CM|Injury of unspecified nerve at forearm level, left arm, sequela|Injury of unspecified nerve at forearm level, left arm, sequela +C0478292|T037|HT|S55|ICD10|Injury of blood vessels at forearm level|Injury of blood vessels at forearm level +C0478292|T037|HT|S55|ICD10CM|Injury of blood vessels at forearm level|Injury of blood vessels at forearm level +C0478292|T037|AB|S55|ICD10CM|Injury of blood vessels at forearm level|Injury of blood vessels at forearm level +C0495883|T037|HT|S55.0|ICD10CM|Injury of ulnar artery at forearm level|Injury of ulnar artery at forearm level +C0495883|T037|AB|S55.0|ICD10CM|Injury of ulnar artery at forearm level|Injury of ulnar artery at forearm level +C0495883|T037|PT|S55.0|ICD10|Injury of ulnar artery at forearm level|Injury of ulnar artery at forearm level +C2847554|T037|AB|S55.00|ICD10CM|Unspecified injury of ulnar artery at forearm level|Unspecified injury of ulnar artery at forearm level +C2847554|T037|HT|S55.00|ICD10CM|Unspecified injury of ulnar artery at forearm level|Unspecified injury of ulnar artery at forearm level +C2847555|T037|AB|S55.001|ICD10CM|Unsp injury of ulnar artery at forearm level, right arm|Unsp injury of ulnar artery at forearm level, right arm +C2847555|T037|HT|S55.001|ICD10CM|Unspecified injury of ulnar artery at forearm level, right arm|Unspecified injury of ulnar artery at forearm level, right arm +C2847556|T037|AB|S55.001A|ICD10CM|Unsp injury of ulnar artery at forarm lv, right arm, init|Unsp injury of ulnar artery at forarm lv, right arm, init +C2847556|T037|PT|S55.001A|ICD10CM|Unspecified injury of ulnar artery at forearm level, right arm, initial encounter|Unspecified injury of ulnar artery at forearm level, right arm, initial encounter +C2847557|T037|AB|S55.001D|ICD10CM|Unsp injury of ulnar artery at forarm lv, right arm, subs|Unsp injury of ulnar artery at forarm lv, right arm, subs +C2847557|T037|PT|S55.001D|ICD10CM|Unspecified injury of ulnar artery at forearm level, right arm, subsequent encounter|Unspecified injury of ulnar artery at forearm level, right arm, subsequent encounter +C2847558|T037|AB|S55.001S|ICD10CM|Unsp injury of ulnar artery at forarm lv, right arm, sequela|Unsp injury of ulnar artery at forarm lv, right arm, sequela +C2847558|T037|PT|S55.001S|ICD10CM|Unspecified injury of ulnar artery at forearm level, right arm, sequela|Unspecified injury of ulnar artery at forearm level, right arm, sequela +C2847559|T037|AB|S55.002|ICD10CM|Unsp injury of ulnar artery at forearm level, left arm|Unsp injury of ulnar artery at forearm level, left arm +C2847559|T037|HT|S55.002|ICD10CM|Unspecified injury of ulnar artery at forearm level, left arm|Unspecified injury of ulnar artery at forearm level, left arm +C2847560|T037|AB|S55.002A|ICD10CM|Unsp injury of ulnar artery at forearm level, left arm, init|Unsp injury of ulnar artery at forearm level, left arm, init +C2847560|T037|PT|S55.002A|ICD10CM|Unspecified injury of ulnar artery at forearm level, left arm, initial encounter|Unspecified injury of ulnar artery at forearm level, left arm, initial encounter +C2847561|T037|AB|S55.002D|ICD10CM|Unsp injury of ulnar artery at forearm level, left arm, subs|Unsp injury of ulnar artery at forearm level, left arm, subs +C2847561|T037|PT|S55.002D|ICD10CM|Unspecified injury of ulnar artery at forearm level, left arm, subsequent encounter|Unspecified injury of ulnar artery at forearm level, left arm, subsequent encounter +C2847562|T037|AB|S55.002S|ICD10CM|Unsp injury of ulnar artery at forarm lv, left arm, sequela|Unsp injury of ulnar artery at forarm lv, left arm, sequela +C2847562|T037|PT|S55.002S|ICD10CM|Unspecified injury of ulnar artery at forearm level, left arm, sequela|Unspecified injury of ulnar artery at forearm level, left arm, sequela +C2847563|T037|AB|S55.009|ICD10CM|Unsp injury of ulnar artery at forearm level, unsp arm|Unsp injury of ulnar artery at forearm level, unsp arm +C2847563|T037|HT|S55.009|ICD10CM|Unspecified injury of ulnar artery at forearm level, unspecified arm|Unspecified injury of ulnar artery at forearm level, unspecified arm +C2847564|T037|AB|S55.009A|ICD10CM|Unsp injury of ulnar artery at forearm level, unsp arm, init|Unsp injury of ulnar artery at forearm level, unsp arm, init +C2847564|T037|PT|S55.009A|ICD10CM|Unspecified injury of ulnar artery at forearm level, unspecified arm, initial encounter|Unspecified injury of ulnar artery at forearm level, unspecified arm, initial encounter +C2847565|T037|AB|S55.009D|ICD10CM|Unsp injury of ulnar artery at forearm level, unsp arm, subs|Unsp injury of ulnar artery at forearm level, unsp arm, subs +C2847565|T037|PT|S55.009D|ICD10CM|Unspecified injury of ulnar artery at forearm level, unspecified arm, subsequent encounter|Unspecified injury of ulnar artery at forearm level, unspecified arm, subsequent encounter +C2847566|T037|AB|S55.009S|ICD10CM|Unsp injury of ulnar artery at forarm lv, unsp arm, sequela|Unsp injury of ulnar artery at forarm lv, unsp arm, sequela +C2847566|T037|PT|S55.009S|ICD10CM|Unspecified injury of ulnar artery at forearm level, unspecified arm, sequela|Unspecified injury of ulnar artery at forearm level, unspecified arm, sequela +C2847567|T037|AB|S55.01|ICD10CM|Laceration of ulnar artery at forearm level|Laceration of ulnar artery at forearm level +C2847567|T037|HT|S55.01|ICD10CM|Laceration of ulnar artery at forearm level|Laceration of ulnar artery at forearm level +C2847568|T037|AB|S55.011|ICD10CM|Laceration of ulnar artery at forearm level, right arm|Laceration of ulnar artery at forearm level, right arm +C2847568|T037|HT|S55.011|ICD10CM|Laceration of ulnar artery at forearm level, right arm|Laceration of ulnar artery at forearm level, right arm +C2847569|T037|AB|S55.011A|ICD10CM|Laceration of ulnar artery at forearm level, right arm, init|Laceration of ulnar artery at forearm level, right arm, init +C2847569|T037|PT|S55.011A|ICD10CM|Laceration of ulnar artery at forearm level, right arm, initial encounter|Laceration of ulnar artery at forearm level, right arm, initial encounter +C2847570|T037|AB|S55.011D|ICD10CM|Laceration of ulnar artery at forearm level, right arm, subs|Laceration of ulnar artery at forearm level, right arm, subs +C2847570|T037|PT|S55.011D|ICD10CM|Laceration of ulnar artery at forearm level, right arm, subsequent encounter|Laceration of ulnar artery at forearm level, right arm, subsequent encounter +C2847571|T037|AB|S55.011S|ICD10CM|Laceration of ulnar artery at forarm lv, right arm, sequela|Laceration of ulnar artery at forarm lv, right arm, sequela +C2847571|T037|PT|S55.011S|ICD10CM|Laceration of ulnar artery at forearm level, right arm, sequela|Laceration of ulnar artery at forearm level, right arm, sequela +C2847572|T037|AB|S55.012|ICD10CM|Laceration of ulnar artery at forearm level, left arm|Laceration of ulnar artery at forearm level, left arm +C2847572|T037|HT|S55.012|ICD10CM|Laceration of ulnar artery at forearm level, left arm|Laceration of ulnar artery at forearm level, left arm +C2847573|T037|AB|S55.012A|ICD10CM|Laceration of ulnar artery at forearm level, left arm, init|Laceration of ulnar artery at forearm level, left arm, init +C2847573|T037|PT|S55.012A|ICD10CM|Laceration of ulnar artery at forearm level, left arm, initial encounter|Laceration of ulnar artery at forearm level, left arm, initial encounter +C2847574|T037|AB|S55.012D|ICD10CM|Laceration of ulnar artery at forearm level, left arm, subs|Laceration of ulnar artery at forearm level, left arm, subs +C2847574|T037|PT|S55.012D|ICD10CM|Laceration of ulnar artery at forearm level, left arm, subsequent encounter|Laceration of ulnar artery at forearm level, left arm, subsequent encounter +C2847575|T037|AB|S55.012S|ICD10CM|Laceration of ulnar artery at forarm lv, left arm, sequela|Laceration of ulnar artery at forarm lv, left arm, sequela +C2847575|T037|PT|S55.012S|ICD10CM|Laceration of ulnar artery at forearm level, left arm, sequela|Laceration of ulnar artery at forearm level, left arm, sequela +C2847576|T037|AB|S55.019|ICD10CM|Laceration of ulnar artery at forearm level, unspecified arm|Laceration of ulnar artery at forearm level, unspecified arm +C2847576|T037|HT|S55.019|ICD10CM|Laceration of ulnar artery at forearm level, unspecified arm|Laceration of ulnar artery at forearm level, unspecified arm +C2847577|T037|AB|S55.019A|ICD10CM|Laceration of ulnar artery at forearm level, unsp arm, init|Laceration of ulnar artery at forearm level, unsp arm, init +C2847577|T037|PT|S55.019A|ICD10CM|Laceration of ulnar artery at forearm level, unspecified arm, initial encounter|Laceration of ulnar artery at forearm level, unspecified arm, initial encounter +C2847578|T037|AB|S55.019D|ICD10CM|Laceration of ulnar artery at forearm level, unsp arm, subs|Laceration of ulnar artery at forearm level, unsp arm, subs +C2847578|T037|PT|S55.019D|ICD10CM|Laceration of ulnar artery at forearm level, unspecified arm, subsequent encounter|Laceration of ulnar artery at forearm level, unspecified arm, subsequent encounter +C2847579|T037|AB|S55.019S|ICD10CM|Laceration of ulnar artery at forarm lv, unsp arm, sequela|Laceration of ulnar artery at forarm lv, unsp arm, sequela +C2847579|T037|PT|S55.019S|ICD10CM|Laceration of ulnar artery at forearm level, unspecified arm, sequela|Laceration of ulnar artery at forearm level, unspecified arm, sequela +C2847580|T037|AB|S55.09|ICD10CM|Other specified injury of ulnar artery at forearm level|Other specified injury of ulnar artery at forearm level +C2847580|T037|HT|S55.09|ICD10CM|Other specified injury of ulnar artery at forearm level|Other specified injury of ulnar artery at forearm level +C2847581|T037|AB|S55.091|ICD10CM|Oth injury of ulnar artery at forearm level, right arm|Oth injury of ulnar artery at forearm level, right arm +C2847581|T037|HT|S55.091|ICD10CM|Other specified injury of ulnar artery at forearm level, right arm|Other specified injury of ulnar artery at forearm level, right arm +C2847582|T037|AB|S55.091A|ICD10CM|Inj ulnar artery at forearm level, right arm, init encntr|Inj ulnar artery at forearm level, right arm, init encntr +C2847582|T037|PT|S55.091A|ICD10CM|Other specified injury of ulnar artery at forearm level, right arm, initial encounter|Other specified injury of ulnar artery at forearm level, right arm, initial encounter +C2847583|T037|AB|S55.091D|ICD10CM|Inj ulnar artery at forearm level, right arm, subs encntr|Inj ulnar artery at forearm level, right arm, subs encntr +C2847583|T037|PT|S55.091D|ICD10CM|Other specified injury of ulnar artery at forearm level, right arm, subsequent encounter|Other specified injury of ulnar artery at forearm level, right arm, subsequent encounter +C2847584|T037|AB|S55.091S|ICD10CM|Inj ulnar artery at forearm level, right arm, sequela|Inj ulnar artery at forearm level, right arm, sequela +C2847584|T037|PT|S55.091S|ICD10CM|Other specified injury of ulnar artery at forearm level, right arm, sequela|Other specified injury of ulnar artery at forearm level, right arm, sequela +C2847585|T037|AB|S55.092|ICD10CM|Oth injury of ulnar artery at forearm level, left arm|Oth injury of ulnar artery at forearm level, left arm +C2847585|T037|HT|S55.092|ICD10CM|Other specified injury of ulnar artery at forearm level, left arm|Other specified injury of ulnar artery at forearm level, left arm +C2847586|T037|AB|S55.092A|ICD10CM|Inj ulnar artery at forearm level, left arm, init encntr|Inj ulnar artery at forearm level, left arm, init encntr +C2847586|T037|PT|S55.092A|ICD10CM|Other specified injury of ulnar artery at forearm level, left arm, initial encounter|Other specified injury of ulnar artery at forearm level, left arm, initial encounter +C2847587|T037|AB|S55.092D|ICD10CM|Inj ulnar artery at forearm level, left arm, subs encntr|Inj ulnar artery at forearm level, left arm, subs encntr +C2847587|T037|PT|S55.092D|ICD10CM|Other specified injury of ulnar artery at forearm level, left arm, subsequent encounter|Other specified injury of ulnar artery at forearm level, left arm, subsequent encounter +C2847588|T037|AB|S55.092S|ICD10CM|Inj ulnar artery at forearm level, left arm, sequela|Inj ulnar artery at forearm level, left arm, sequela +C2847588|T037|PT|S55.092S|ICD10CM|Other specified injury of ulnar artery at forearm level, left arm, sequela|Other specified injury of ulnar artery at forearm level, left arm, sequela +C2847589|T037|AB|S55.099|ICD10CM|Oth injury of ulnar artery at forearm level, unspecified arm|Oth injury of ulnar artery at forearm level, unspecified arm +C2847589|T037|HT|S55.099|ICD10CM|Other specified injury of ulnar artery at forearm level, unspecified arm|Other specified injury of ulnar artery at forearm level, unspecified arm +C2847590|T037|AB|S55.099A|ICD10CM|Inj ulnar artery at forearm level, unsp arm, init encntr|Inj ulnar artery at forearm level, unsp arm, init encntr +C2847590|T037|PT|S55.099A|ICD10CM|Other specified injury of ulnar artery at forearm level, unspecified arm, initial encounter|Other specified injury of ulnar artery at forearm level, unspecified arm, initial encounter +C2847591|T037|AB|S55.099D|ICD10CM|Inj ulnar artery at forearm level, unsp arm, subs encntr|Inj ulnar artery at forearm level, unsp arm, subs encntr +C2847591|T037|PT|S55.099D|ICD10CM|Other specified injury of ulnar artery at forearm level, unspecified arm, subsequent encounter|Other specified injury of ulnar artery at forearm level, unspecified arm, subsequent encounter +C2847592|T037|AB|S55.099S|ICD10CM|Inj ulnar artery at forearm level, unsp arm, sequela|Inj ulnar artery at forearm level, unsp arm, sequela +C2847592|T037|PT|S55.099S|ICD10CM|Other specified injury of ulnar artery at forearm level, unspecified arm, sequela|Other specified injury of ulnar artery at forearm level, unspecified arm, sequela +C0495884|T037|PT|S55.1|ICD10|Injury of radial artery at forearm level|Injury of radial artery at forearm level +C0495884|T037|HT|S55.1|ICD10CM|Injury of radial artery at forearm level|Injury of radial artery at forearm level +C0495884|T037|AB|S55.1|ICD10CM|Injury of radial artery at forearm level|Injury of radial artery at forearm level +C2847593|T037|AB|S55.10|ICD10CM|Unspecified injury of radial artery at forearm level|Unspecified injury of radial artery at forearm level +C2847593|T037|HT|S55.10|ICD10CM|Unspecified injury of radial artery at forearm level|Unspecified injury of radial artery at forearm level +C2847594|T037|AB|S55.101|ICD10CM|Unsp injury of radial artery at forearm level, right arm|Unsp injury of radial artery at forearm level, right arm +C2847594|T037|HT|S55.101|ICD10CM|Unspecified injury of radial artery at forearm level, right arm|Unspecified injury of radial artery at forearm level, right arm +C2847595|T037|AB|S55.101A|ICD10CM|Unsp injury of radial artery at forarm lv, right arm, init|Unsp injury of radial artery at forarm lv, right arm, init +C2847595|T037|PT|S55.101A|ICD10CM|Unspecified injury of radial artery at forearm level, right arm, initial encounter|Unspecified injury of radial artery at forearm level, right arm, initial encounter +C2847596|T037|AB|S55.101D|ICD10CM|Unsp injury of radial artery at forarm lv, right arm, subs|Unsp injury of radial artery at forarm lv, right arm, subs +C2847596|T037|PT|S55.101D|ICD10CM|Unspecified injury of radial artery at forearm level, right arm, subsequent encounter|Unspecified injury of radial artery at forearm level, right arm, subsequent encounter +C2847597|T037|AB|S55.101S|ICD10CM|Unsp injury of radial art at forarm lv, right arm, sequela|Unsp injury of radial art at forarm lv, right arm, sequela +C2847597|T037|PT|S55.101S|ICD10CM|Unspecified injury of radial artery at forearm level, right arm, sequela|Unspecified injury of radial artery at forearm level, right arm, sequela +C2847598|T037|AB|S55.102|ICD10CM|Unsp injury of radial artery at forearm level, left arm|Unsp injury of radial artery at forearm level, left arm +C2847598|T037|HT|S55.102|ICD10CM|Unspecified injury of radial artery at forearm level, left arm|Unspecified injury of radial artery at forearm level, left arm +C2847599|T037|AB|S55.102A|ICD10CM|Unsp injury of radial artery at forarm lv, left arm, init|Unsp injury of radial artery at forarm lv, left arm, init +C2847599|T037|PT|S55.102A|ICD10CM|Unspecified injury of radial artery at forearm level, left arm, initial encounter|Unspecified injury of radial artery at forearm level, left arm, initial encounter +C2847600|T037|AB|S55.102D|ICD10CM|Unsp injury of radial artery at forarm lv, left arm, subs|Unsp injury of radial artery at forarm lv, left arm, subs +C2847600|T037|PT|S55.102D|ICD10CM|Unspecified injury of radial artery at forearm level, left arm, subsequent encounter|Unspecified injury of radial artery at forearm level, left arm, subsequent encounter +C2847601|T037|AB|S55.102S|ICD10CM|Unsp injury of radial artery at forarm lv, left arm, sequela|Unsp injury of radial artery at forarm lv, left arm, sequela +C2847601|T037|PT|S55.102S|ICD10CM|Unspecified injury of radial artery at forearm level, left arm, sequela|Unspecified injury of radial artery at forearm level, left arm, sequela +C2847602|T037|AB|S55.109|ICD10CM|Unsp injury of radial artery at forearm level, unsp arm|Unsp injury of radial artery at forearm level, unsp arm +C2847602|T037|HT|S55.109|ICD10CM|Unspecified injury of radial artery at forearm level, unspecified arm|Unspecified injury of radial artery at forearm level, unspecified arm +C2847603|T037|AB|S55.109A|ICD10CM|Unsp injury of radial artery at forarm lv, unsp arm, init|Unsp injury of radial artery at forarm lv, unsp arm, init +C2847603|T037|PT|S55.109A|ICD10CM|Unspecified injury of radial artery at forearm level, unspecified arm, initial encounter|Unspecified injury of radial artery at forearm level, unspecified arm, initial encounter +C2847604|T037|AB|S55.109D|ICD10CM|Unsp injury of radial artery at forarm lv, unsp arm, subs|Unsp injury of radial artery at forarm lv, unsp arm, subs +C2847604|T037|PT|S55.109D|ICD10CM|Unspecified injury of radial artery at forearm level, unspecified arm, subsequent encounter|Unspecified injury of radial artery at forearm level, unspecified arm, subsequent encounter +C2847605|T037|AB|S55.109S|ICD10CM|Unsp injury of radial artery at forarm lv, unsp arm, sequela|Unsp injury of radial artery at forarm lv, unsp arm, sequela +C2847605|T037|PT|S55.109S|ICD10CM|Unspecified injury of radial artery at forearm level, unspecified arm, sequela|Unspecified injury of radial artery at forearm level, unspecified arm, sequela +C2847606|T037|AB|S55.11|ICD10CM|Laceration of radial artery at forearm level|Laceration of radial artery at forearm level +C2847606|T037|HT|S55.11|ICD10CM|Laceration of radial artery at forearm level|Laceration of radial artery at forearm level +C2847607|T037|AB|S55.111|ICD10CM|Laceration of radial artery at forearm level, right arm|Laceration of radial artery at forearm level, right arm +C2847607|T037|HT|S55.111|ICD10CM|Laceration of radial artery at forearm level, right arm|Laceration of radial artery at forearm level, right arm +C2847608|T037|AB|S55.111A|ICD10CM|Laceration of radial artery at forarm lv, right arm, init|Laceration of radial artery at forarm lv, right arm, init +C2847608|T037|PT|S55.111A|ICD10CM|Laceration of radial artery at forearm level, right arm, initial encounter|Laceration of radial artery at forearm level, right arm, initial encounter +C2847609|T037|AB|S55.111D|ICD10CM|Laceration of radial artery at forarm lv, right arm, subs|Laceration of radial artery at forarm lv, right arm, subs +C2847609|T037|PT|S55.111D|ICD10CM|Laceration of radial artery at forearm level, right arm, subsequent encounter|Laceration of radial artery at forearm level, right arm, subsequent encounter +C2847610|T037|AB|S55.111S|ICD10CM|Laceration of radial artery at forarm lv, right arm, sequela|Laceration of radial artery at forarm lv, right arm, sequela +C2847610|T037|PT|S55.111S|ICD10CM|Laceration of radial artery at forearm level, right arm, sequela|Laceration of radial artery at forearm level, right arm, sequela +C2847611|T037|AB|S55.112|ICD10CM|Laceration of radial artery at forearm level, left arm|Laceration of radial artery at forearm level, left arm +C2847611|T037|HT|S55.112|ICD10CM|Laceration of radial artery at forearm level, left arm|Laceration of radial artery at forearm level, left arm +C2847612|T037|AB|S55.112A|ICD10CM|Laceration of radial artery at forearm level, left arm, init|Laceration of radial artery at forearm level, left arm, init +C2847612|T037|PT|S55.112A|ICD10CM|Laceration of radial artery at forearm level, left arm, initial encounter|Laceration of radial artery at forearm level, left arm, initial encounter +C2847613|T037|AB|S55.112D|ICD10CM|Laceration of radial artery at forearm level, left arm, subs|Laceration of radial artery at forearm level, left arm, subs +C2847613|T037|PT|S55.112D|ICD10CM|Laceration of radial artery at forearm level, left arm, subsequent encounter|Laceration of radial artery at forearm level, left arm, subsequent encounter +C2847614|T037|AB|S55.112S|ICD10CM|Laceration of radial artery at forarm lv, left arm, sequela|Laceration of radial artery at forarm lv, left arm, sequela +C2847614|T037|PT|S55.112S|ICD10CM|Laceration of radial artery at forearm level, left arm, sequela|Laceration of radial artery at forearm level, left arm, sequela +C2847615|T037|AB|S55.119|ICD10CM|Laceration of radial artery at forearm level, unsp arm|Laceration of radial artery at forearm level, unsp arm +C2847615|T037|HT|S55.119|ICD10CM|Laceration of radial artery at forearm level, unspecified arm|Laceration of radial artery at forearm level, unspecified arm +C2847616|T037|AB|S55.119A|ICD10CM|Laceration of radial artery at forearm level, unsp arm, init|Laceration of radial artery at forearm level, unsp arm, init +C2847616|T037|PT|S55.119A|ICD10CM|Laceration of radial artery at forearm level, unspecified arm, initial encounter|Laceration of radial artery at forearm level, unspecified arm, initial encounter +C2847617|T037|AB|S55.119D|ICD10CM|Laceration of radial artery at forearm level, unsp arm, subs|Laceration of radial artery at forearm level, unsp arm, subs +C2847617|T037|PT|S55.119D|ICD10CM|Laceration of radial artery at forearm level, unspecified arm, subsequent encounter|Laceration of radial artery at forearm level, unspecified arm, subsequent encounter +C2847618|T037|AB|S55.119S|ICD10CM|Laceration of radial artery at forarm lv, unsp arm, sequela|Laceration of radial artery at forarm lv, unsp arm, sequela +C2847618|T037|PT|S55.119S|ICD10CM|Laceration of radial artery at forearm level, unspecified arm, sequela|Laceration of radial artery at forearm level, unspecified arm, sequela +C2847619|T037|AB|S55.19|ICD10CM|Other specified injury of radial artery at forearm level|Other specified injury of radial artery at forearm level +C2847619|T037|HT|S55.19|ICD10CM|Other specified injury of radial artery at forearm level|Other specified injury of radial artery at forearm level +C2847620|T037|AB|S55.191|ICD10CM|Oth injury of radial artery at forearm level, right arm|Oth injury of radial artery at forearm level, right arm +C2847620|T037|HT|S55.191|ICD10CM|Other specified injury of radial artery at forearm level, right arm|Other specified injury of radial artery at forearm level, right arm +C2847621|T037|AB|S55.191A|ICD10CM|Inj radial artery at forearm level, right arm, init encntr|Inj radial artery at forearm level, right arm, init encntr +C2847621|T037|PT|S55.191A|ICD10CM|Other specified injury of radial artery at forearm level, right arm, initial encounter|Other specified injury of radial artery at forearm level, right arm, initial encounter +C2847622|T037|AB|S55.191D|ICD10CM|Inj radial artery at forearm level, right arm, subs encntr|Inj radial artery at forearm level, right arm, subs encntr +C2847622|T037|PT|S55.191D|ICD10CM|Other specified injury of radial artery at forearm level, right arm, subsequent encounter|Other specified injury of radial artery at forearm level, right arm, subsequent encounter +C2847623|T037|AB|S55.191S|ICD10CM|Inj radial artery at forearm level, right arm, sequela|Inj radial artery at forearm level, right arm, sequela +C2847623|T037|PT|S55.191S|ICD10CM|Other specified injury of radial artery at forearm level, right arm, sequela|Other specified injury of radial artery at forearm level, right arm, sequela +C2847624|T037|AB|S55.192|ICD10CM|Oth injury of radial artery at forearm level, left arm|Oth injury of radial artery at forearm level, left arm +C2847624|T037|HT|S55.192|ICD10CM|Other specified injury of radial artery at forearm level, left arm|Other specified injury of radial artery at forearm level, left arm +C2847625|T037|AB|S55.192A|ICD10CM|Inj radial artery at forearm level, left arm, init encntr|Inj radial artery at forearm level, left arm, init encntr +C2847625|T037|PT|S55.192A|ICD10CM|Other specified injury of radial artery at forearm level, left arm, initial encounter|Other specified injury of radial artery at forearm level, left arm, initial encounter +C2847626|T037|AB|S55.192D|ICD10CM|Inj radial artery at forearm level, left arm, subs encntr|Inj radial artery at forearm level, left arm, subs encntr +C2847626|T037|PT|S55.192D|ICD10CM|Other specified injury of radial artery at forearm level, left arm, subsequent encounter|Other specified injury of radial artery at forearm level, left arm, subsequent encounter +C2847627|T037|AB|S55.192S|ICD10CM|Inj radial artery at forearm level, left arm, sequela|Inj radial artery at forearm level, left arm, sequela +C2847627|T037|PT|S55.192S|ICD10CM|Other specified injury of radial artery at forearm level, left arm, sequela|Other specified injury of radial artery at forearm level, left arm, sequela +C2847628|T037|AB|S55.199|ICD10CM|Oth injury of radial artery at forearm level, unsp arm|Oth injury of radial artery at forearm level, unsp arm +C2847628|T037|HT|S55.199|ICD10CM|Other specified injury of radial artery at forearm level, unspecified arm|Other specified injury of radial artery at forearm level, unspecified arm +C2847629|T037|AB|S55.199A|ICD10CM|Inj radial artery at forearm level, unsp arm, init encntr|Inj radial artery at forearm level, unsp arm, init encntr +C2847629|T037|PT|S55.199A|ICD10CM|Other specified injury of radial artery at forearm level, unspecified arm, initial encounter|Other specified injury of radial artery at forearm level, unspecified arm, initial encounter +C2847630|T037|AB|S55.199D|ICD10CM|Inj radial artery at forearm level, unsp arm, subs encntr|Inj radial artery at forearm level, unsp arm, subs encntr +C2847630|T037|PT|S55.199D|ICD10CM|Other specified injury of radial artery at forearm level, unspecified arm, subsequent encounter|Other specified injury of radial artery at forearm level, unspecified arm, subsequent encounter +C2847631|T037|AB|S55.199S|ICD10CM|Inj radial artery at forearm level, unsp arm, sequela|Inj radial artery at forearm level, unsp arm, sequela +C2847631|T037|PT|S55.199S|ICD10CM|Other specified injury of radial artery at forearm level, unspecified arm, sequela|Other specified injury of radial artery at forearm level, unspecified arm, sequela +C0452065|T037|HT|S55.2|ICD10CM|Injury of vein at forearm level|Injury of vein at forearm level +C0452065|T037|AB|S55.2|ICD10CM|Injury of vein at forearm level|Injury of vein at forearm level +C0452065|T037|PT|S55.2|ICD10|Injury of vein at forearm level|Injury of vein at forearm level +C2847632|T037|AB|S55.20|ICD10CM|Unspecified injury of vein at forearm level|Unspecified injury of vein at forearm level +C2847632|T037|HT|S55.20|ICD10CM|Unspecified injury of vein at forearm level|Unspecified injury of vein at forearm level +C2847633|T037|AB|S55.201|ICD10CM|Unspecified injury of vein at forearm level, right arm|Unspecified injury of vein at forearm level, right arm +C2847633|T037|HT|S55.201|ICD10CM|Unspecified injury of vein at forearm level, right arm|Unspecified injury of vein at forearm level, right arm +C2847634|T037|AB|S55.201A|ICD10CM|Unsp injury of vein at forearm level, right arm, init encntr|Unsp injury of vein at forearm level, right arm, init encntr +C2847634|T037|PT|S55.201A|ICD10CM|Unspecified injury of vein at forearm level, right arm, initial encounter|Unspecified injury of vein at forearm level, right arm, initial encounter +C2847635|T037|AB|S55.201D|ICD10CM|Unsp injury of vein at forearm level, right arm, subs encntr|Unsp injury of vein at forearm level, right arm, subs encntr +C2847635|T037|PT|S55.201D|ICD10CM|Unspecified injury of vein at forearm level, right arm, subsequent encounter|Unspecified injury of vein at forearm level, right arm, subsequent encounter +C2847636|T037|AB|S55.201S|ICD10CM|Unsp injury of vein at forearm level, right arm, sequela|Unsp injury of vein at forearm level, right arm, sequela +C2847636|T037|PT|S55.201S|ICD10CM|Unspecified injury of vein at forearm level, right arm, sequela|Unspecified injury of vein at forearm level, right arm, sequela +C2847637|T037|AB|S55.202|ICD10CM|Unspecified injury of vein at forearm level, left arm|Unspecified injury of vein at forearm level, left arm +C2847637|T037|HT|S55.202|ICD10CM|Unspecified injury of vein at forearm level, left arm|Unspecified injury of vein at forearm level, left arm +C2847638|T037|AB|S55.202A|ICD10CM|Unsp injury of vein at forearm level, left arm, init encntr|Unsp injury of vein at forearm level, left arm, init encntr +C2847638|T037|PT|S55.202A|ICD10CM|Unspecified injury of vein at forearm level, left arm, initial encounter|Unspecified injury of vein at forearm level, left arm, initial encounter +C2847639|T037|AB|S55.202D|ICD10CM|Unsp injury of vein at forearm level, left arm, subs encntr|Unsp injury of vein at forearm level, left arm, subs encntr +C2847639|T037|PT|S55.202D|ICD10CM|Unspecified injury of vein at forearm level, left arm, subsequent encounter|Unspecified injury of vein at forearm level, left arm, subsequent encounter +C2847640|T037|AB|S55.202S|ICD10CM|Unsp injury of vein at forearm level, left arm, sequela|Unsp injury of vein at forearm level, left arm, sequela +C2847640|T037|PT|S55.202S|ICD10CM|Unspecified injury of vein at forearm level, left arm, sequela|Unspecified injury of vein at forearm level, left arm, sequela +C2847641|T037|AB|S55.209|ICD10CM|Unspecified injury of vein at forearm level, unspecified arm|Unspecified injury of vein at forearm level, unspecified arm +C2847641|T037|HT|S55.209|ICD10CM|Unspecified injury of vein at forearm level, unspecified arm|Unspecified injury of vein at forearm level, unspecified arm +C2847642|T037|AB|S55.209A|ICD10CM|Unsp injury of vein at forearm level, unsp arm, init encntr|Unsp injury of vein at forearm level, unsp arm, init encntr +C2847642|T037|PT|S55.209A|ICD10CM|Unspecified injury of vein at forearm level, unspecified arm, initial encounter|Unspecified injury of vein at forearm level, unspecified arm, initial encounter +C2847643|T037|AB|S55.209D|ICD10CM|Unsp injury of vein at forearm level, unsp arm, subs encntr|Unsp injury of vein at forearm level, unsp arm, subs encntr +C2847643|T037|PT|S55.209D|ICD10CM|Unspecified injury of vein at forearm level, unspecified arm, subsequent encounter|Unspecified injury of vein at forearm level, unspecified arm, subsequent encounter +C2847644|T037|AB|S55.209S|ICD10CM|Unsp injury of vein at forearm level, unsp arm, sequela|Unsp injury of vein at forearm level, unsp arm, sequela +C2847644|T037|PT|S55.209S|ICD10CM|Unspecified injury of vein at forearm level, unspecified arm, sequela|Unspecified injury of vein at forearm level, unspecified arm, sequela +C2847645|T037|HT|S55.21|ICD10CM|Laceration of vein at forearm level|Laceration of vein at forearm level +C2847645|T037|AB|S55.21|ICD10CM|Laceration of vein at forearm level|Laceration of vein at forearm level +C2847646|T037|AB|S55.211|ICD10CM|Laceration of vein at forearm level, right arm|Laceration of vein at forearm level, right arm +C2847646|T037|HT|S55.211|ICD10CM|Laceration of vein at forearm level, right arm|Laceration of vein at forearm level, right arm +C2847647|T037|AB|S55.211A|ICD10CM|Laceration of vein at forearm level, right arm, init encntr|Laceration of vein at forearm level, right arm, init encntr +C2847647|T037|PT|S55.211A|ICD10CM|Laceration of vein at forearm level, right arm, initial encounter|Laceration of vein at forearm level, right arm, initial encounter +C2847648|T037|AB|S55.211D|ICD10CM|Laceration of vein at forearm level, right arm, subs encntr|Laceration of vein at forearm level, right arm, subs encntr +C2847648|T037|PT|S55.211D|ICD10CM|Laceration of vein at forearm level, right arm, subsequent encounter|Laceration of vein at forearm level, right arm, subsequent encounter +C2847649|T037|AB|S55.211S|ICD10CM|Laceration of vein at forearm level, right arm, sequela|Laceration of vein at forearm level, right arm, sequela +C2847649|T037|PT|S55.211S|ICD10CM|Laceration of vein at forearm level, right arm, sequela|Laceration of vein at forearm level, right arm, sequela +C2847650|T037|AB|S55.212|ICD10CM|Laceration of vein at forearm level, left arm|Laceration of vein at forearm level, left arm +C2847650|T037|HT|S55.212|ICD10CM|Laceration of vein at forearm level, left arm|Laceration of vein at forearm level, left arm +C2847651|T037|AB|S55.212A|ICD10CM|Laceration of vein at forearm level, left arm, init encntr|Laceration of vein at forearm level, left arm, init encntr +C2847651|T037|PT|S55.212A|ICD10CM|Laceration of vein at forearm level, left arm, initial encounter|Laceration of vein at forearm level, left arm, initial encounter +C2847652|T037|AB|S55.212D|ICD10CM|Laceration of vein at forearm level, left arm, subs encntr|Laceration of vein at forearm level, left arm, subs encntr +C2847652|T037|PT|S55.212D|ICD10CM|Laceration of vein at forearm level, left arm, subsequent encounter|Laceration of vein at forearm level, left arm, subsequent encounter +C2847653|T037|AB|S55.212S|ICD10CM|Laceration of vein at forearm level, left arm, sequela|Laceration of vein at forearm level, left arm, sequela +C2847653|T037|PT|S55.212S|ICD10CM|Laceration of vein at forearm level, left arm, sequela|Laceration of vein at forearm level, left arm, sequela +C2847654|T037|AB|S55.219|ICD10CM|Laceration of vein at forearm level, unspecified arm|Laceration of vein at forearm level, unspecified arm +C2847654|T037|HT|S55.219|ICD10CM|Laceration of vein at forearm level, unspecified arm|Laceration of vein at forearm level, unspecified arm +C2847655|T037|AB|S55.219A|ICD10CM|Laceration of vein at forearm level, unsp arm, init encntr|Laceration of vein at forearm level, unsp arm, init encntr +C2847655|T037|PT|S55.219A|ICD10CM|Laceration of vein at forearm level, unspecified arm, initial encounter|Laceration of vein at forearm level, unspecified arm, initial encounter +C2847656|T037|AB|S55.219D|ICD10CM|Laceration of vein at forearm level, unsp arm, subs encntr|Laceration of vein at forearm level, unsp arm, subs encntr +C2847656|T037|PT|S55.219D|ICD10CM|Laceration of vein at forearm level, unspecified arm, subsequent encounter|Laceration of vein at forearm level, unspecified arm, subsequent encounter +C2847657|T037|AB|S55.219S|ICD10CM|Laceration of vein at forearm level, unsp arm, sequela|Laceration of vein at forearm level, unsp arm, sequela +C2847657|T037|PT|S55.219S|ICD10CM|Laceration of vein at forearm level, unspecified arm, sequela|Laceration of vein at forearm level, unspecified arm, sequela +C2847658|T037|AB|S55.29|ICD10CM|Other specified injury of vein at forearm level|Other specified injury of vein at forearm level +C2847658|T037|HT|S55.29|ICD10CM|Other specified injury of vein at forearm level|Other specified injury of vein at forearm level +C2847659|T037|AB|S55.291|ICD10CM|Other specified injury of vein at forearm level, right arm|Other specified injury of vein at forearm level, right arm +C2847659|T037|HT|S55.291|ICD10CM|Other specified injury of vein at forearm level, right arm|Other specified injury of vein at forearm level, right arm +C2847660|T037|AB|S55.291A|ICD10CM|Oth injury of vein at forearm level, right arm, init encntr|Oth injury of vein at forearm level, right arm, init encntr +C2847660|T037|PT|S55.291A|ICD10CM|Other specified injury of vein at forearm level, right arm, initial encounter|Other specified injury of vein at forearm level, right arm, initial encounter +C2847661|T037|AB|S55.291D|ICD10CM|Oth injury of vein at forearm level, right arm, subs encntr|Oth injury of vein at forearm level, right arm, subs encntr +C2847661|T037|PT|S55.291D|ICD10CM|Other specified injury of vein at forearm level, right arm, subsequent encounter|Other specified injury of vein at forearm level, right arm, subsequent encounter +C2847662|T037|AB|S55.291S|ICD10CM|Oth injury of vein at forearm level, right arm, sequela|Oth injury of vein at forearm level, right arm, sequela +C2847662|T037|PT|S55.291S|ICD10CM|Other specified injury of vein at forearm level, right arm, sequela|Other specified injury of vein at forearm level, right arm, sequela +C2847663|T037|AB|S55.292|ICD10CM|Other specified injury of vein at forearm level, left arm|Other specified injury of vein at forearm level, left arm +C2847663|T037|HT|S55.292|ICD10CM|Other specified injury of vein at forearm level, left arm|Other specified injury of vein at forearm level, left arm +C2847664|T037|AB|S55.292A|ICD10CM|Oth injury of vein at forearm level, left arm, init encntr|Oth injury of vein at forearm level, left arm, init encntr +C2847664|T037|PT|S55.292A|ICD10CM|Other specified injury of vein at forearm level, left arm, initial encounter|Other specified injury of vein at forearm level, left arm, initial encounter +C2847665|T037|AB|S55.292D|ICD10CM|Oth injury of vein at forearm level, left arm, subs encntr|Oth injury of vein at forearm level, left arm, subs encntr +C2847665|T037|PT|S55.292D|ICD10CM|Other specified injury of vein at forearm level, left arm, subsequent encounter|Other specified injury of vein at forearm level, left arm, subsequent encounter +C2847666|T037|AB|S55.292S|ICD10CM|Oth injury of vein at forearm level, left arm, sequela|Oth injury of vein at forearm level, left arm, sequela +C2847666|T037|PT|S55.292S|ICD10CM|Other specified injury of vein at forearm level, left arm, sequela|Other specified injury of vein at forearm level, left arm, sequela +C2847667|T037|AB|S55.299|ICD10CM|Oth injury of vein at forearm level, unspecified arm|Oth injury of vein at forearm level, unspecified arm +C2847667|T037|HT|S55.299|ICD10CM|Other specified injury of vein at forearm level, unspecified arm|Other specified injury of vein at forearm level, unspecified arm +C2847668|T037|AB|S55.299A|ICD10CM|Oth injury of vein at forearm level, unsp arm, init encntr|Oth injury of vein at forearm level, unsp arm, init encntr +C2847668|T037|PT|S55.299A|ICD10CM|Other specified injury of vein at forearm level, unspecified arm, initial encounter|Other specified injury of vein at forearm level, unspecified arm, initial encounter +C2847669|T037|AB|S55.299D|ICD10CM|Oth injury of vein at forearm level, unsp arm, subs encntr|Oth injury of vein at forearm level, unsp arm, subs encntr +C2847669|T037|PT|S55.299D|ICD10CM|Other specified injury of vein at forearm level, unspecified arm, subsequent encounter|Other specified injury of vein at forearm level, unspecified arm, subsequent encounter +C2847670|T037|AB|S55.299S|ICD10CM|Oth injury of vein at forearm level, unsp arm, sequela|Oth injury of vein at forearm level, unsp arm, sequela +C2847670|T037|PT|S55.299S|ICD10CM|Other specified injury of vein at forearm level, unspecified arm, sequela|Other specified injury of vein at forearm level, unspecified arm, sequela +C0452066|T037|PT|S55.7|ICD10|Injury of multiple blood vessels at forearm level|Injury of multiple blood vessels at forearm level +C0478291|T037|PT|S55.8|ICD10|Injury of other blood vessels at forearm level|Injury of other blood vessels at forearm level +C0478291|T037|HT|S55.8|ICD10CM|Injury of other blood vessels at forearm level|Injury of other blood vessels at forearm level +C0478291|T037|AB|S55.8|ICD10CM|Injury of other blood vessels at forearm level|Injury of other blood vessels at forearm level +C2847671|T037|AB|S55.80|ICD10CM|Unspecified injury of other blood vessels at forearm level|Unspecified injury of other blood vessels at forearm level +C2847671|T037|HT|S55.80|ICD10CM|Unspecified injury of other blood vessels at forearm level|Unspecified injury of other blood vessels at forearm level +C2847672|T037|AB|S55.801|ICD10CM|Unsp injury of oth blood vessels at forearm level, right arm|Unsp injury of oth blood vessels at forearm level, right arm +C2847672|T037|HT|S55.801|ICD10CM|Unspecified injury of other blood vessels at forearm level, right arm|Unspecified injury of other blood vessels at forearm level, right arm +C2847673|T037|AB|S55.801A|ICD10CM|Unsp injury of blood vessels at forarm lv, right arm, init|Unsp injury of blood vessels at forarm lv, right arm, init +C2847673|T037|PT|S55.801A|ICD10CM|Unspecified injury of other blood vessels at forearm level, right arm, initial encounter|Unspecified injury of other blood vessels at forearm level, right arm, initial encounter +C2847674|T037|AB|S55.801D|ICD10CM|Unsp injury of blood vessels at forarm lv, right arm, subs|Unsp injury of blood vessels at forarm lv, right arm, subs +C2847674|T037|PT|S55.801D|ICD10CM|Unspecified injury of other blood vessels at forearm level, right arm, subsequent encounter|Unspecified injury of other blood vessels at forearm level, right arm, subsequent encounter +C2847675|T037|AB|S55.801S|ICD10CM|Unsp inj blood vessels at forarm lv, right arm, sequela|Unsp inj blood vessels at forarm lv, right arm, sequela +C2847675|T037|PT|S55.801S|ICD10CM|Unspecified injury of other blood vessels at forearm level, right arm, sequela|Unspecified injury of other blood vessels at forearm level, right arm, sequela +C2847676|T037|AB|S55.802|ICD10CM|Unsp injury of oth blood vessels at forearm level, left arm|Unsp injury of oth blood vessels at forearm level, left arm +C2847676|T037|HT|S55.802|ICD10CM|Unspecified injury of other blood vessels at forearm level, left arm|Unspecified injury of other blood vessels at forearm level, left arm +C2847677|T037|AB|S55.802A|ICD10CM|Unsp injury of blood vessels at forarm lv, left arm, init|Unsp injury of blood vessels at forarm lv, left arm, init +C2847677|T037|PT|S55.802A|ICD10CM|Unspecified injury of other blood vessels at forearm level, left arm, initial encounter|Unspecified injury of other blood vessels at forearm level, left arm, initial encounter +C2847678|T037|AB|S55.802D|ICD10CM|Unsp injury of blood vessels at forarm lv, left arm, subs|Unsp injury of blood vessels at forarm lv, left arm, subs +C2847678|T037|PT|S55.802D|ICD10CM|Unspecified injury of other blood vessels at forearm level, left arm, subsequent encounter|Unspecified injury of other blood vessels at forearm level, left arm, subsequent encounter +C2847679|T037|AB|S55.802S|ICD10CM|Unsp injury of blood vessels at forarm lv, left arm, sequela|Unsp injury of blood vessels at forarm lv, left arm, sequela +C2847679|T037|PT|S55.802S|ICD10CM|Unspecified injury of other blood vessels at forearm level, left arm, sequela|Unspecified injury of other blood vessels at forearm level, left arm, sequela +C2847680|T037|AB|S55.809|ICD10CM|Unsp injury of oth blood vessels at forearm level, unsp arm|Unsp injury of oth blood vessels at forearm level, unsp arm +C2847680|T037|HT|S55.809|ICD10CM|Unspecified injury of other blood vessels at forearm level, unspecified arm|Unspecified injury of other blood vessels at forearm level, unspecified arm +C2847681|T037|AB|S55.809A|ICD10CM|Unsp injury of blood vessels at forarm lv, unsp arm, init|Unsp injury of blood vessels at forarm lv, unsp arm, init +C2847681|T037|PT|S55.809A|ICD10CM|Unspecified injury of other blood vessels at forearm level, unspecified arm, initial encounter|Unspecified injury of other blood vessels at forearm level, unspecified arm, initial encounter +C2847682|T037|AB|S55.809D|ICD10CM|Unsp injury of blood vessels at forarm lv, unsp arm, subs|Unsp injury of blood vessels at forarm lv, unsp arm, subs +C2847682|T037|PT|S55.809D|ICD10CM|Unspecified injury of other blood vessels at forearm level, unspecified arm, subsequent encounter|Unspecified injury of other blood vessels at forearm level, unspecified arm, subsequent encounter +C2847683|T037|AB|S55.809S|ICD10CM|Unsp injury of blood vessels at forarm lv, unsp arm, sequela|Unsp injury of blood vessels at forarm lv, unsp arm, sequela +C2847683|T037|PT|S55.809S|ICD10CM|Unspecified injury of other blood vessels at forearm level, unspecified arm, sequela|Unspecified injury of other blood vessels at forearm level, unspecified arm, sequela +C2847684|T037|AB|S55.81|ICD10CM|Laceration of other blood vessels at forearm level|Laceration of other blood vessels at forearm level +C2847684|T037|HT|S55.81|ICD10CM|Laceration of other blood vessels at forearm level|Laceration of other blood vessels at forearm level +C2847685|T037|AB|S55.811|ICD10CM|Laceration of oth blood vessels at forearm level, right arm|Laceration of oth blood vessels at forearm level, right arm +C2847685|T037|HT|S55.811|ICD10CM|Laceration of other blood vessels at forearm level, right arm|Laceration of other blood vessels at forearm level, right arm +C2847686|T037|AB|S55.811A|ICD10CM|Laceration of blood vessels at forarm lv, right arm, init|Laceration of blood vessels at forarm lv, right arm, init +C2847686|T037|PT|S55.811A|ICD10CM|Laceration of other blood vessels at forearm level, right arm, initial encounter|Laceration of other blood vessels at forearm level, right arm, initial encounter +C2847687|T037|AB|S55.811D|ICD10CM|Laceration of blood vessels at forarm lv, right arm, subs|Laceration of blood vessels at forarm lv, right arm, subs +C2847687|T037|PT|S55.811D|ICD10CM|Laceration of other blood vessels at forearm level, right arm, subsequent encounter|Laceration of other blood vessels at forearm level, right arm, subsequent encounter +C2847688|T037|AB|S55.811S|ICD10CM|Laceration of blood vessels at forarm lv, right arm, sequela|Laceration of blood vessels at forarm lv, right arm, sequela +C2847688|T037|PT|S55.811S|ICD10CM|Laceration of other blood vessels at forearm level, right arm, sequela|Laceration of other blood vessels at forearm level, right arm, sequela +C2847689|T037|AB|S55.812|ICD10CM|Laceration of other blood vessels at forearm level, left arm|Laceration of other blood vessels at forearm level, left arm +C2847689|T037|HT|S55.812|ICD10CM|Laceration of other blood vessels at forearm level, left arm|Laceration of other blood vessels at forearm level, left arm +C2847690|T037|AB|S55.812A|ICD10CM|Laceration of blood vessels at forearm level, left arm, init|Laceration of blood vessels at forearm level, left arm, init +C2847690|T037|PT|S55.812A|ICD10CM|Laceration of other blood vessels at forearm level, left arm, initial encounter|Laceration of other blood vessels at forearm level, left arm, initial encounter +C2847691|T037|AB|S55.812D|ICD10CM|Laceration of blood vessels at forearm level, left arm, subs|Laceration of blood vessels at forearm level, left arm, subs +C2847691|T037|PT|S55.812D|ICD10CM|Laceration of other blood vessels at forearm level, left arm, subsequent encounter|Laceration of other blood vessels at forearm level, left arm, subsequent encounter +C2847692|T037|AB|S55.812S|ICD10CM|Laceration of blood vessels at forarm lv, left arm, sequela|Laceration of blood vessels at forarm lv, left arm, sequela +C2847692|T037|PT|S55.812S|ICD10CM|Laceration of other blood vessels at forearm level, left arm, sequela|Laceration of other blood vessels at forearm level, left arm, sequela +C2847693|T037|AB|S55.819|ICD10CM|Laceration of other blood vessels at forearm level, unsp arm|Laceration of other blood vessels at forearm level, unsp arm +C2847693|T037|HT|S55.819|ICD10CM|Laceration of other blood vessels at forearm level, unspecified arm|Laceration of other blood vessels at forearm level, unspecified arm +C2847694|T037|AB|S55.819A|ICD10CM|Laceration of blood vessels at forearm level, unsp arm, init|Laceration of blood vessels at forearm level, unsp arm, init +C2847694|T037|PT|S55.819A|ICD10CM|Laceration of other blood vessels at forearm level, unspecified arm, initial encounter|Laceration of other blood vessels at forearm level, unspecified arm, initial encounter +C2847695|T037|AB|S55.819D|ICD10CM|Laceration of blood vessels at forearm level, unsp arm, subs|Laceration of blood vessels at forearm level, unsp arm, subs +C2847695|T037|PT|S55.819D|ICD10CM|Laceration of other blood vessels at forearm level, unspecified arm, subsequent encounter|Laceration of other blood vessels at forearm level, unspecified arm, subsequent encounter +C2847696|T037|AB|S55.819S|ICD10CM|Laceration of blood vessels at forarm lv, unsp arm, sequela|Laceration of blood vessels at forarm lv, unsp arm, sequela +C2847696|T037|PT|S55.819S|ICD10CM|Laceration of other blood vessels at forearm level, unspecified arm, sequela|Laceration of other blood vessels at forearm level, unspecified arm, sequela +C2847697|T037|AB|S55.89|ICD10CM|Oth injury of other blood vessels at forearm level|Oth injury of other blood vessels at forearm level +C2847697|T037|HT|S55.89|ICD10CM|Other specified injury of other blood vessels at forearm level|Other specified injury of other blood vessels at forearm level +C2847698|T037|AB|S55.891|ICD10CM|Oth injury of oth blood vessels at forearm level, right arm|Oth injury of oth blood vessels at forearm level, right arm +C2847698|T037|HT|S55.891|ICD10CM|Other specified injury of other blood vessels at forearm level, right arm|Other specified injury of other blood vessels at forearm level, right arm +C2847699|T037|AB|S55.891A|ICD10CM|Inj oth blood vessels at forearm level, right arm, init|Inj oth blood vessels at forearm level, right arm, init +C2847699|T037|PT|S55.891A|ICD10CM|Other specified injury of other blood vessels at forearm level, right arm, initial encounter|Other specified injury of other blood vessels at forearm level, right arm, initial encounter +C2847700|T037|AB|S55.891D|ICD10CM|Inj oth blood vessels at forearm level, right arm, subs|Inj oth blood vessels at forearm level, right arm, subs +C2847700|T037|PT|S55.891D|ICD10CM|Other specified injury of other blood vessels at forearm level, right arm, subsequent encounter|Other specified injury of other blood vessels at forearm level, right arm, subsequent encounter +C2847701|T037|AB|S55.891S|ICD10CM|Inj oth blood vessels at forearm level, right arm, sequela|Inj oth blood vessels at forearm level, right arm, sequela +C2847701|T037|PT|S55.891S|ICD10CM|Other specified injury of other blood vessels at forearm level, right arm, sequela|Other specified injury of other blood vessels at forearm level, right arm, sequela +C2847702|T037|AB|S55.892|ICD10CM|Oth injury of other blood vessels at forearm level, left arm|Oth injury of other blood vessels at forearm level, left arm +C2847702|T037|HT|S55.892|ICD10CM|Other specified injury of other blood vessels at forearm level, left arm|Other specified injury of other blood vessels at forearm level, left arm +C2847703|T037|AB|S55.892A|ICD10CM|Inj oth blood vessels at forearm level, left arm, init|Inj oth blood vessels at forearm level, left arm, init +C2847703|T037|PT|S55.892A|ICD10CM|Other specified injury of other blood vessels at forearm level, left arm, initial encounter|Other specified injury of other blood vessels at forearm level, left arm, initial encounter +C2847704|T037|AB|S55.892D|ICD10CM|Inj oth blood vessels at forearm level, left arm, subs|Inj oth blood vessels at forearm level, left arm, subs +C2847704|T037|PT|S55.892D|ICD10CM|Other specified injury of other blood vessels at forearm level, left arm, subsequent encounter|Other specified injury of other blood vessels at forearm level, left arm, subsequent encounter +C2847705|T037|AB|S55.892S|ICD10CM|Inj oth blood vessels at forearm level, left arm, sequela|Inj oth blood vessels at forearm level, left arm, sequela +C2847705|T037|PT|S55.892S|ICD10CM|Other specified injury of other blood vessels at forearm level, left arm, sequela|Other specified injury of other blood vessels at forearm level, left arm, sequela +C2847706|T037|AB|S55.899|ICD10CM|Oth injury of other blood vessels at forearm level, unsp arm|Oth injury of other blood vessels at forearm level, unsp arm +C2847706|T037|HT|S55.899|ICD10CM|Other specified injury of other blood vessels at forearm level, unspecified arm|Other specified injury of other blood vessels at forearm level, unspecified arm +C2847707|T037|AB|S55.899A|ICD10CM|Inj oth blood vessels at forearm level, unsp arm, init|Inj oth blood vessels at forearm level, unsp arm, init +C2847707|T037|PT|S55.899A|ICD10CM|Other specified injury of other blood vessels at forearm level, unspecified arm, initial encounter|Other specified injury of other blood vessels at forearm level, unspecified arm, initial encounter +C2847708|T037|AB|S55.899D|ICD10CM|Inj oth blood vessels at forearm level, unsp arm, subs|Inj oth blood vessels at forearm level, unsp arm, subs +C2847709|T037|AB|S55.899S|ICD10CM|Inj oth blood vessels at forearm level, unsp arm, sequela|Inj oth blood vessels at forearm level, unsp arm, sequela +C2847709|T037|PT|S55.899S|ICD10CM|Other specified injury of other blood vessels at forearm level, unspecified arm, sequela|Other specified injury of other blood vessels at forearm level, unspecified arm, sequela +C0478292|T037|HT|S55.9|ICD10CM|Injury of unspecified blood vessel at forearm level|Injury of unspecified blood vessel at forearm level +C0478292|T037|AB|S55.9|ICD10CM|Injury of unspecified blood vessel at forearm level|Injury of unspecified blood vessel at forearm level +C0478292|T037|PT|S55.9|ICD10|Injury of unspecified blood vessel at forearm level|Injury of unspecified blood vessel at forearm level +C2847710|T037|AB|S55.90|ICD10CM|Unsp injury of unspecified blood vessel at forearm level|Unsp injury of unspecified blood vessel at forearm level +C2847710|T037|HT|S55.90|ICD10CM|Unspecified injury of unspecified blood vessel at forearm level|Unspecified injury of unspecified blood vessel at forearm level +C2847711|T037|AB|S55.901|ICD10CM|Unsp injury of unsp blood vessel at forearm level, right arm|Unsp injury of unsp blood vessel at forearm level, right arm +C2847711|T037|HT|S55.901|ICD10CM|Unspecified injury of unspecified blood vessel at forearm level, right arm|Unspecified injury of unspecified blood vessel at forearm level, right arm +C2847712|T037|AB|S55.901A|ICD10CM|Unsp injury of unsp blood vess at forarm lv, right arm, init|Unsp injury of unsp blood vess at forarm lv, right arm, init +C2847712|T037|PT|S55.901A|ICD10CM|Unspecified injury of unspecified blood vessel at forearm level, right arm, initial encounter|Unspecified injury of unspecified blood vessel at forearm level, right arm, initial encounter +C2847713|T037|AB|S55.901D|ICD10CM|Unsp injury of unsp blood vess at forarm lv, right arm, subs|Unsp injury of unsp blood vess at forarm lv, right arm, subs +C2847713|T037|PT|S55.901D|ICD10CM|Unspecified injury of unspecified blood vessel at forearm level, right arm, subsequent encounter|Unspecified injury of unspecified blood vessel at forearm level, right arm, subsequent encounter +C2847714|T037|AB|S55.901S|ICD10CM|Unsp inj unsp blood vess at forarm lv, right arm, sequela|Unsp inj unsp blood vess at forarm lv, right arm, sequela +C2847714|T037|PT|S55.901S|ICD10CM|Unspecified injury of unspecified blood vessel at forearm level, right arm, sequela|Unspecified injury of unspecified blood vessel at forearm level, right arm, sequela +C2847715|T037|AB|S55.902|ICD10CM|Unsp injury of unsp blood vessel at forearm level, left arm|Unsp injury of unsp blood vessel at forearm level, left arm +C2847715|T037|HT|S55.902|ICD10CM|Unspecified injury of unspecified blood vessel at forearm level, left arm|Unspecified injury of unspecified blood vessel at forearm level, left arm +C2847716|T037|AB|S55.902A|ICD10CM|Unsp injury of unsp blood vess at forarm lv, left arm, init|Unsp injury of unsp blood vess at forarm lv, left arm, init +C2847716|T037|PT|S55.902A|ICD10CM|Unspecified injury of unspecified blood vessel at forearm level, left arm, initial encounter|Unspecified injury of unspecified blood vessel at forearm level, left arm, initial encounter +C2847717|T037|AB|S55.902D|ICD10CM|Unsp injury of unsp blood vess at forarm lv, left arm, subs|Unsp injury of unsp blood vess at forarm lv, left arm, subs +C2847717|T037|PT|S55.902D|ICD10CM|Unspecified injury of unspecified blood vessel at forearm level, left arm, subsequent encounter|Unspecified injury of unspecified blood vessel at forearm level, left arm, subsequent encounter +C2847718|T037|AB|S55.902S|ICD10CM|Unsp inj unsp blood vess at forarm lv, left arm, sequela|Unsp inj unsp blood vess at forarm lv, left arm, sequela +C2847718|T037|PT|S55.902S|ICD10CM|Unspecified injury of unspecified blood vessel at forearm level, left arm, sequela|Unspecified injury of unspecified blood vessel at forearm level, left arm, sequela +C2847719|T037|AB|S55.909|ICD10CM|Unsp injury of unsp blood vessel at forearm level, unsp arm|Unsp injury of unsp blood vessel at forearm level, unsp arm +C2847719|T037|HT|S55.909|ICD10CM|Unspecified injury of unspecified blood vessel at forearm level, unspecified arm|Unspecified injury of unspecified blood vessel at forearm level, unspecified arm +C2847720|T037|AB|S55.909A|ICD10CM|Unsp injury of unsp blood vess at forarm lv, unsp arm, init|Unsp injury of unsp blood vess at forarm lv, unsp arm, init +C2847720|T037|PT|S55.909A|ICD10CM|Unspecified injury of unspecified blood vessel at forearm level, unspecified arm, initial encounter|Unspecified injury of unspecified blood vessel at forearm level, unspecified arm, initial encounter +C2847721|T037|AB|S55.909D|ICD10CM|Unsp injury of unsp blood vess at forarm lv, unsp arm, subs|Unsp injury of unsp blood vess at forarm lv, unsp arm, subs +C2847722|T037|AB|S55.909S|ICD10CM|Unsp inj unsp blood vess at forarm lv, unsp arm, sequela|Unsp inj unsp blood vess at forarm lv, unsp arm, sequela +C2847722|T037|PT|S55.909S|ICD10CM|Unspecified injury of unspecified blood vessel at forearm level, unspecified arm, sequela|Unspecified injury of unspecified blood vessel at forearm level, unspecified arm, sequela +C2847723|T037|AB|S55.91|ICD10CM|Laceration of unspecified blood vessel at forearm level|Laceration of unspecified blood vessel at forearm level +C2847723|T037|HT|S55.91|ICD10CM|Laceration of unspecified blood vessel at forearm level|Laceration of unspecified blood vessel at forearm level +C2847724|T037|AB|S55.911|ICD10CM|Laceration of unsp blood vessel at forearm level, right arm|Laceration of unsp blood vessel at forearm level, right arm +C2847724|T037|HT|S55.911|ICD10CM|Laceration of unspecified blood vessel at forearm level, right arm|Laceration of unspecified blood vessel at forearm level, right arm +C2847725|T037|AB|S55.911A|ICD10CM|Lacerat unsp blood vessel at forarm lv, right arm, init|Lacerat unsp blood vessel at forarm lv, right arm, init +C2847725|T037|PT|S55.911A|ICD10CM|Laceration of unspecified blood vessel at forearm level, right arm, initial encounter|Laceration of unspecified blood vessel at forearm level, right arm, initial encounter +C2847726|T037|AB|S55.911D|ICD10CM|Lacerat unsp blood vessel at forarm lv, right arm, subs|Lacerat unsp blood vessel at forarm lv, right arm, subs +C2847726|T037|PT|S55.911D|ICD10CM|Laceration of unspecified blood vessel at forearm level, right arm, subsequent encounter|Laceration of unspecified blood vessel at forearm level, right arm, subsequent encounter +C2847727|T037|AB|S55.911S|ICD10CM|Lacerat unsp blood vessel at forarm lv, right arm, sequela|Lacerat unsp blood vessel at forarm lv, right arm, sequela +C2847727|T037|PT|S55.911S|ICD10CM|Laceration of unspecified blood vessel at forearm level, right arm, sequela|Laceration of unspecified blood vessel at forearm level, right arm, sequela +C2847728|T037|AB|S55.912|ICD10CM|Laceration of unsp blood vessel at forearm level, left arm|Laceration of unsp blood vessel at forearm level, left arm +C2847728|T037|HT|S55.912|ICD10CM|Laceration of unspecified blood vessel at forearm level, left arm|Laceration of unspecified blood vessel at forearm level, left arm +C2847729|T037|AB|S55.912A|ICD10CM|Laceration of unsp blood vessel at forarm lv, left arm, init|Laceration of unsp blood vessel at forarm lv, left arm, init +C2847729|T037|PT|S55.912A|ICD10CM|Laceration of unspecified blood vessel at forearm level, left arm, initial encounter|Laceration of unspecified blood vessel at forearm level, left arm, initial encounter +C2847730|T037|AB|S55.912D|ICD10CM|Laceration of unsp blood vessel at forarm lv, left arm, subs|Laceration of unsp blood vessel at forarm lv, left arm, subs +C2847730|T037|PT|S55.912D|ICD10CM|Laceration of unspecified blood vessel at forearm level, left arm, subsequent encounter|Laceration of unspecified blood vessel at forearm level, left arm, subsequent encounter +C2847731|T037|AB|S55.912S|ICD10CM|Lacerat unsp blood vessel at forarm lv, left arm, sequela|Lacerat unsp blood vessel at forarm lv, left arm, sequela +C2847731|T037|PT|S55.912S|ICD10CM|Laceration of unspecified blood vessel at forearm level, left arm, sequela|Laceration of unspecified blood vessel at forearm level, left arm, sequela +C2847732|T037|AB|S55.919|ICD10CM|Laceration of unsp blood vessel at forearm level, unsp arm|Laceration of unsp blood vessel at forearm level, unsp arm +C2847732|T037|HT|S55.919|ICD10CM|Laceration of unspecified blood vessel at forearm level, unspecified arm|Laceration of unspecified blood vessel at forearm level, unspecified arm +C2847733|T037|AB|S55.919A|ICD10CM|Laceration of unsp blood vessel at forarm lv, unsp arm, init|Laceration of unsp blood vessel at forarm lv, unsp arm, init +C2847733|T037|PT|S55.919A|ICD10CM|Laceration of unspecified blood vessel at forearm level, unspecified arm, initial encounter|Laceration of unspecified blood vessel at forearm level, unspecified arm, initial encounter +C2847734|T037|AB|S55.919D|ICD10CM|Laceration of unsp blood vessel at forarm lv, unsp arm, subs|Laceration of unsp blood vessel at forarm lv, unsp arm, subs +C2847734|T037|PT|S55.919D|ICD10CM|Laceration of unspecified blood vessel at forearm level, unspecified arm, subsequent encounter|Laceration of unspecified blood vessel at forearm level, unspecified arm, subsequent encounter +C2847735|T037|AB|S55.919S|ICD10CM|Lacerat unsp blood vessel at forarm lv, unsp arm, sequela|Lacerat unsp blood vessel at forarm lv, unsp arm, sequela +C2847735|T037|PT|S55.919S|ICD10CM|Laceration of unspecified blood vessel at forearm level, unspecified arm, sequela|Laceration of unspecified blood vessel at forearm level, unspecified arm, sequela +C2847736|T037|AB|S55.99|ICD10CM|Oth injury of unspecified blood vessel at forearm level|Oth injury of unspecified blood vessel at forearm level +C2847736|T037|HT|S55.99|ICD10CM|Other specified injury of unspecified blood vessel at forearm level|Other specified injury of unspecified blood vessel at forearm level +C2847737|T037|AB|S55.991|ICD10CM|Oth injury of unsp blood vessel at forearm level, right arm|Oth injury of unsp blood vessel at forearm level, right arm +C2847737|T037|HT|S55.991|ICD10CM|Other specified injury of unspecified blood vessel at forearm level, right arm|Other specified injury of unspecified blood vessel at forearm level, right arm +C2847738|T037|AB|S55.991A|ICD10CM|Inj unsp blood vessel at forearm level, right arm, init|Inj unsp blood vessel at forearm level, right arm, init +C2847738|T037|PT|S55.991A|ICD10CM|Other specified injury of unspecified blood vessel at forearm level, right arm, initial encounter|Other specified injury of unspecified blood vessel at forearm level, right arm, initial encounter +C2847739|T037|AB|S55.991D|ICD10CM|Inj unsp blood vessel at forearm level, right arm, subs|Inj unsp blood vessel at forearm level, right arm, subs +C2847739|T037|PT|S55.991D|ICD10CM|Other specified injury of unspecified blood vessel at forearm level, right arm, subsequent encounter|Other specified injury of unspecified blood vessel at forearm level, right arm, subsequent encounter +C2847740|T037|AB|S55.991S|ICD10CM|Inj unsp blood vessel at forearm level, right arm, sequela|Inj unsp blood vessel at forearm level, right arm, sequela +C2847740|T037|PT|S55.991S|ICD10CM|Other specified injury of unspecified blood vessel at forearm level, right arm, sequela|Other specified injury of unspecified blood vessel at forearm level, right arm, sequela +C2847741|T037|AB|S55.992|ICD10CM|Oth injury of unsp blood vessel at forearm level, left arm|Oth injury of unsp blood vessel at forearm level, left arm +C2847741|T037|HT|S55.992|ICD10CM|Other specified injury of unspecified blood vessel at forearm level, left arm|Other specified injury of unspecified blood vessel at forearm level, left arm +C2847742|T037|AB|S55.992A|ICD10CM|Inj unsp blood vessel at forearm level, left arm, init|Inj unsp blood vessel at forearm level, left arm, init +C2847742|T037|PT|S55.992A|ICD10CM|Other specified injury of unspecified blood vessel at forearm level, left arm, initial encounter|Other specified injury of unspecified blood vessel at forearm level, left arm, initial encounter +C2847743|T037|AB|S55.992D|ICD10CM|Inj unsp blood vessel at forearm level, left arm, subs|Inj unsp blood vessel at forearm level, left arm, subs +C2847743|T037|PT|S55.992D|ICD10CM|Other specified injury of unspecified blood vessel at forearm level, left arm, subsequent encounter|Other specified injury of unspecified blood vessel at forearm level, left arm, subsequent encounter +C2847744|T037|AB|S55.992S|ICD10CM|Inj unsp blood vessel at forearm level, left arm, sequela|Inj unsp blood vessel at forearm level, left arm, sequela +C2847744|T037|PT|S55.992S|ICD10CM|Other specified injury of unspecified blood vessel at forearm level, left arm, sequela|Other specified injury of unspecified blood vessel at forearm level, left arm, sequela +C2847745|T037|AB|S55.999|ICD10CM|Oth injury of unsp blood vessel at forearm level, unsp arm|Oth injury of unsp blood vessel at forearm level, unsp arm +C2847745|T037|HT|S55.999|ICD10CM|Other specified injury of unspecified blood vessel at forearm level, unspecified arm|Other specified injury of unspecified blood vessel at forearm level, unspecified arm +C2847746|T037|AB|S55.999A|ICD10CM|Inj unsp blood vessel at forearm level, unsp arm, init|Inj unsp blood vessel at forearm level, unsp arm, init +C2847747|T037|AB|S55.999D|ICD10CM|Inj unsp blood vessel at forearm level, unsp arm, subs|Inj unsp blood vessel at forearm level, unsp arm, subs +C2847748|T037|AB|S55.999S|ICD10CM|Inj unsp blood vessel at forearm level, unsp arm, sequela|Inj unsp blood vessel at forearm level, unsp arm, sequela +C2847748|T037|PT|S55.999S|ICD10CM|Other specified injury of unspecified blood vessel at forearm level, unspecified arm, sequela|Other specified injury of unspecified blood vessel at forearm level, unspecified arm, sequela +C0451852|T037|HT|S56|ICD10|Injury of muscle and tendon at forearm level|Injury of muscle and tendon at forearm level +C2847749|T037|AB|S56|ICD10CM|Injury of muscle, fascia and tendon at forearm level|Injury of muscle, fascia and tendon at forearm level +C2847749|T037|HT|S56|ICD10CM|Injury of muscle, fascia and tendon at forearm level|Injury of muscle, fascia and tendon at forearm level +C2847750|T037|AB|S56.0|ICD10CM|Injury of flexor musc/fasc/tend thumb at forearm level|Injury of flexor musc/fasc/tend thumb at forearm level +C0451853|T037|PT|S56.0|ICD10|Injury of flexor muscle and tendon of thumb at forearm level|Injury of flexor muscle and tendon of thumb at forearm level +C2847750|T037|HT|S56.0|ICD10CM|Injury of flexor muscle, fascia and tendon of thumb at forearm level|Injury of flexor muscle, fascia and tendon of thumb at forearm level +C2847751|T037|AB|S56.00|ICD10CM|Unsp injury of flexor musc/fasc/tend thumb at forearm level|Unsp injury of flexor musc/fasc/tend thumb at forearm level +C2847751|T037|HT|S56.00|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of thumb at forearm level|Unspecified injury of flexor muscle, fascia and tendon of thumb at forearm level +C2847752|T037|AB|S56.001|ICD10CM|Unsp injury of flexor musc/fasc/tend r thm at forarm lv|Unsp injury of flexor musc/fasc/tend r thm at forarm lv +C2847752|T037|HT|S56.001|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level|Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level +C2847753|T037|AB|S56.001A|ICD10CM|Unsp inj flexor musc/fasc/tend r thm at forarm lv, init|Unsp inj flexor musc/fasc/tend r thm at forarm lv, init +C2847754|T037|AB|S56.001D|ICD10CM|Unsp inj flexor musc/fasc/tend r thm at forarm lv, subs|Unsp inj flexor musc/fasc/tend r thm at forarm lv, subs +C2847755|T037|AB|S56.001S|ICD10CM|Unsp inj flexor musc/fasc/tend r thm at forarm lv, sequela|Unsp inj flexor musc/fasc/tend r thm at forarm lv, sequela +C2847755|T037|PT|S56.001S|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level, sequela|Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level, sequela +C2847756|T037|AB|S56.002|ICD10CM|Unsp injury of flexor musc/fasc/tend left thumb at forarm lv|Unsp injury of flexor musc/fasc/tend left thumb at forarm lv +C2847756|T037|HT|S56.002|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level|Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level +C2847757|T037|AB|S56.002A|ICD10CM|Unsp inj flexor musc/fasc/tend l thm at forarm lv, init|Unsp inj flexor musc/fasc/tend l thm at forarm lv, init +C2847758|T037|AB|S56.002D|ICD10CM|Unsp inj flexor musc/fasc/tend l thm at forarm lv, subs|Unsp inj flexor musc/fasc/tend l thm at forarm lv, subs +C2847759|T037|AB|S56.002S|ICD10CM|Unsp inj flexor musc/fasc/tend l thm at forarm lv, sequela|Unsp inj flexor musc/fasc/tend l thm at forarm lv, sequela +C2847759|T037|PT|S56.002S|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level, sequela|Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level, sequela +C2847760|T037|AB|S56.009|ICD10CM|Unsp injury of flexor musc/fasc/tend thmb at forearm level|Unsp injury of flexor musc/fasc/tend thmb at forearm level +C2847760|T037|HT|S56.009|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level|Unspecified injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level +C2847761|T037|AB|S56.009A|ICD10CM|Unsp injury of flexor musc/fasc/tend thmb at forarm lv, init|Unsp injury of flexor musc/fasc/tend thmb at forarm lv, init +C2847762|T037|AB|S56.009D|ICD10CM|Unsp injury of flexor musc/fasc/tend thmb at forarm lv, subs|Unsp injury of flexor musc/fasc/tend thmb at forarm lv, subs +C2847763|T037|AB|S56.009S|ICD10CM|Unsp inj flexor musc/fasc/tend thmb at forarm lv, sequela|Unsp inj flexor musc/fasc/tend thmb at forarm lv, sequela +C2847764|T037|AB|S56.01|ICD10CM|Strain of flexor musc/fasc/tend thumb at forearm level|Strain of flexor musc/fasc/tend thumb at forearm level +C2847764|T037|HT|S56.01|ICD10CM|Strain of flexor muscle, fascia and tendon of thumb at forearm level|Strain of flexor muscle, fascia and tendon of thumb at forearm level +C2847765|T037|AB|S56.011|ICD10CM|Strain of flexor musc/fasc/tend right thumb at forearm level|Strain of flexor musc/fasc/tend right thumb at forearm level +C2847765|T037|HT|S56.011|ICD10CM|Strain of flexor muscle, fascia and tendon of right thumb at forearm level|Strain of flexor muscle, fascia and tendon of right thumb at forearm level +C2847766|T037|AB|S56.011A|ICD10CM|Strain of flexor musc/fasc/tend r thm at forarm lv, init|Strain of flexor musc/fasc/tend r thm at forarm lv, init +C2847766|T037|PT|S56.011A|ICD10CM|Strain of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter|Strain of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter +C2847767|T037|AB|S56.011D|ICD10CM|Strain of flexor musc/fasc/tend r thm at forarm lv, subs|Strain of flexor musc/fasc/tend r thm at forarm lv, subs +C2847767|T037|PT|S56.011D|ICD10CM|Strain of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter|Strain of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter +C2847768|T037|AB|S56.011S|ICD10CM|Strain of flexor musc/fasc/tend r thm at forarm lv, sequela|Strain of flexor musc/fasc/tend r thm at forarm lv, sequela +C2847768|T037|PT|S56.011S|ICD10CM|Strain of flexor muscle, fascia and tendon of right thumb at forearm level, sequela|Strain of flexor muscle, fascia and tendon of right thumb at forearm level, sequela +C2847769|T037|AB|S56.012|ICD10CM|Strain of flexor musc/fasc/tend left thumb at forearm level|Strain of flexor musc/fasc/tend left thumb at forearm level +C2847769|T037|HT|S56.012|ICD10CM|Strain of flexor muscle, fascia and tendon of left thumb at forearm level|Strain of flexor muscle, fascia and tendon of left thumb at forearm level +C2847770|T037|AB|S56.012A|ICD10CM|Strain of flexor musc/fasc/tend l thm at forarm lv, init|Strain of flexor musc/fasc/tend l thm at forarm lv, init +C2847770|T037|PT|S56.012A|ICD10CM|Strain of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter|Strain of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter +C2847771|T037|AB|S56.012D|ICD10CM|Strain of flexor musc/fasc/tend l thm at forarm lv, subs|Strain of flexor musc/fasc/tend l thm at forarm lv, subs +C2847771|T037|PT|S56.012D|ICD10CM|Strain of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter|Strain of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter +C2847772|T037|AB|S56.012S|ICD10CM|Strain of flexor musc/fasc/tend l thm at forarm lv, sequela|Strain of flexor musc/fasc/tend l thm at forarm lv, sequela +C2847772|T037|PT|S56.012S|ICD10CM|Strain of flexor muscle, fascia and tendon of left thumb at forearm level, sequela|Strain of flexor muscle, fascia and tendon of left thumb at forearm level, sequela +C2847773|T037|AB|S56.019|ICD10CM|Strain of flexor musc/fasc/tend thmb at forearm level|Strain of flexor musc/fasc/tend thmb at forearm level +C2847773|T037|HT|S56.019|ICD10CM|Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level|Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level +C2847774|T037|AB|S56.019A|ICD10CM|Strain of flexor musc/fasc/tend thmb at forearm level, init|Strain of flexor musc/fasc/tend thmb at forearm level, init +C2847774|T037|PT|S56.019A|ICD10CM|Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level, initial encounter|Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level, initial encounter +C2847775|T037|AB|S56.019D|ICD10CM|Strain of flexor musc/fasc/tend thmb at forearm level, subs|Strain of flexor musc/fasc/tend thmb at forearm level, subs +C2847776|T037|AB|S56.019S|ICD10CM|Strain of flexor musc/fasc/tend thmb at forarm lv, sequela|Strain of flexor musc/fasc/tend thmb at forarm lv, sequela +C2847776|T037|PT|S56.019S|ICD10CM|Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela|Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela +C2847777|T037|AB|S56.02|ICD10CM|Laceration of flexor musc/fasc/tend thumb at forearm level|Laceration of flexor musc/fasc/tend thumb at forearm level +C2847777|T037|HT|S56.02|ICD10CM|Laceration of flexor muscle, fascia and tendon of thumb at forearm level|Laceration of flexor muscle, fascia and tendon of thumb at forearm level +C2847778|T037|AB|S56.021|ICD10CM|Laceration of flexor musc/fasc/tend right thumb at forarm lv|Laceration of flexor musc/fasc/tend right thumb at forarm lv +C2847778|T037|HT|S56.021|ICD10CM|Laceration of flexor muscle, fascia and tendon of right thumb at forearm level|Laceration of flexor muscle, fascia and tendon of right thumb at forearm level +C2847779|T037|AB|S56.021A|ICD10CM|Lacerat flexor musc/fasc/tend right thumb at forarm lv, init|Lacerat flexor musc/fasc/tend right thumb at forarm lv, init +C2847779|T037|PT|S56.021A|ICD10CM|Laceration of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter|Laceration of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter +C2847780|T037|AB|S56.021D|ICD10CM|Lacerat flexor musc/fasc/tend right thumb at forarm lv, subs|Lacerat flexor musc/fasc/tend right thumb at forarm lv, subs +C2847780|T037|PT|S56.021D|ICD10CM|Laceration of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter|Laceration of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter +C2847781|T037|AB|S56.021S|ICD10CM|Lacerat flexor musc/fasc/tend r thm at forarm lv, sequela|Lacerat flexor musc/fasc/tend r thm at forarm lv, sequela +C2847781|T037|PT|S56.021S|ICD10CM|Laceration of flexor muscle, fascia and tendon of right thumb at forearm level, sequela|Laceration of flexor muscle, fascia and tendon of right thumb at forearm level, sequela +C2847782|T037|AB|S56.022|ICD10CM|Laceration of flexor musc/fasc/tend left thumb at forarm lv|Laceration of flexor musc/fasc/tend left thumb at forarm lv +C2847782|T037|HT|S56.022|ICD10CM|Laceration of flexor muscle, fascia and tendon of left thumb at forearm level|Laceration of flexor muscle, fascia and tendon of left thumb at forearm level +C2847783|T037|AB|S56.022A|ICD10CM|Lacerat flexor musc/fasc/tend left thumb at forarm lv, init|Lacerat flexor musc/fasc/tend left thumb at forarm lv, init +C2847783|T037|PT|S56.022A|ICD10CM|Laceration of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter|Laceration of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter +C2847784|T037|AB|S56.022D|ICD10CM|Lacerat flexor musc/fasc/tend left thumb at forarm lv, subs|Lacerat flexor musc/fasc/tend left thumb at forarm lv, subs +C2847784|T037|PT|S56.022D|ICD10CM|Laceration of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter|Laceration of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter +C2847785|T037|AB|S56.022S|ICD10CM|Lacerat flexor musc/fasc/tend l thm at forarm lv, sequela|Lacerat flexor musc/fasc/tend l thm at forarm lv, sequela +C2847785|T037|PT|S56.022S|ICD10CM|Laceration of flexor muscle, fascia and tendon of left thumb at forearm level, sequela|Laceration of flexor muscle, fascia and tendon of left thumb at forearm level, sequela +C2847786|T037|AB|S56.029|ICD10CM|Laceration of flexor musc/fasc/tend thmb at forearm level|Laceration of flexor musc/fasc/tend thmb at forearm level +C2847786|T037|HT|S56.029|ICD10CM|Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level|Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level +C2847787|T037|AB|S56.029A|ICD10CM|Laceration of flexor musc/fasc/tend thmb at forarm lv, init|Laceration of flexor musc/fasc/tend thmb at forarm lv, init +C2847788|T037|AB|S56.029D|ICD10CM|Laceration of flexor musc/fasc/tend thmb at forarm lv, subs|Laceration of flexor musc/fasc/tend thmb at forarm lv, subs +C2847789|T037|AB|S56.029S|ICD10CM|Lacerat flexor musc/fasc/tend thmb at forarm lv, sequela|Lacerat flexor musc/fasc/tend thmb at forarm lv, sequela +C2847789|T037|PT|S56.029S|ICD10CM|Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela|Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela +C2847790|T037|AB|S56.09|ICD10CM|Inj flexor musc/fasc/tend thumb at forearm level|Inj flexor musc/fasc/tend thumb at forearm level +C2847790|T037|HT|S56.09|ICD10CM|Other injury of flexor muscle, fascia and tendon of thumb at forearm level|Other injury of flexor muscle, fascia and tendon of thumb at forearm level +C2847791|T037|AB|S56.091|ICD10CM|Inj flexor musc/fasc/tend right thumb at forearm level|Inj flexor musc/fasc/tend right thumb at forearm level +C2847791|T037|HT|S56.091|ICD10CM|Other injury of flexor muscle, fascia and tendon of right thumb at forearm level|Other injury of flexor muscle, fascia and tendon of right thumb at forearm level +C2847792|T037|AB|S56.091A|ICD10CM|Inj flexor musc/fasc/tend right thumb at forearm level, init|Inj flexor musc/fasc/tend right thumb at forearm level, init +C2847792|T037|PT|S56.091A|ICD10CM|Other injury of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter|Other injury of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter +C2847793|T037|AB|S56.091D|ICD10CM|Inj flexor musc/fasc/tend right thumb at forearm level, subs|Inj flexor musc/fasc/tend right thumb at forearm level, subs +C2847794|T037|AB|S56.091S|ICD10CM|Inj flexor musc/fasc/tend right thumb at forarm lv, sequela|Inj flexor musc/fasc/tend right thumb at forarm lv, sequela +C2847794|T037|PT|S56.091S|ICD10CM|Other injury of flexor muscle, fascia and tendon of right thumb at forearm level, sequela|Other injury of flexor muscle, fascia and tendon of right thumb at forearm level, sequela +C2847795|T037|AB|S56.092|ICD10CM|Inj flexor musc/fasc/tend left thumb at forearm level|Inj flexor musc/fasc/tend left thumb at forearm level +C2847795|T037|HT|S56.092|ICD10CM|Other injury of flexor muscle, fascia and tendon of left thumb at forearm level|Other injury of flexor muscle, fascia and tendon of left thumb at forearm level +C2847796|T037|AB|S56.092A|ICD10CM|Inj flexor musc/fasc/tend left thumb at forearm level, init|Inj flexor musc/fasc/tend left thumb at forearm level, init +C2847796|T037|PT|S56.092A|ICD10CM|Other injury of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter|Other injury of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter +C2847797|T037|AB|S56.092D|ICD10CM|Inj flexor musc/fasc/tend left thumb at forearm level, subs|Inj flexor musc/fasc/tend left thumb at forearm level, subs +C2847798|T037|AB|S56.092S|ICD10CM|Inj flexor musc/fasc/tend left thumb at forarm lv, sequela|Inj flexor musc/fasc/tend left thumb at forarm lv, sequela +C2847798|T037|PT|S56.092S|ICD10CM|Other injury of flexor muscle, fascia and tendon of left thumb at forearm level, sequela|Other injury of flexor muscle, fascia and tendon of left thumb at forearm level, sequela +C2847799|T037|AB|S56.099|ICD10CM|Inj flexor musc/fasc/tend thmb at forearm level|Inj flexor musc/fasc/tend thmb at forearm level +C2847799|T037|HT|S56.099|ICD10CM|Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level|Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level +C2847800|T037|AB|S56.099A|ICD10CM|Inj flexor musc/fasc/tend thmb at forearm level, init|Inj flexor musc/fasc/tend thmb at forearm level, init +C2847801|T037|AB|S56.099D|ICD10CM|Inj flexor musc/fasc/tend thmb at forearm level, subs|Inj flexor musc/fasc/tend thmb at forearm level, subs +C2847802|T037|AB|S56.099S|ICD10CM|Inj flexor musc/fasc/tend thmb at forearm level, sequela|Inj flexor musc/fasc/tend thmb at forearm level, sequela +C2847802|T037|PT|S56.099S|ICD10CM|Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela|Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela +C2847803|T037|AB|S56.1|ICD10CM|Injury of flexor musc/fasc/tend and unsp finger at forarm lv|Injury of flexor musc/fasc/tend and unsp finger at forarm lv +C2847803|T037|HT|S56.1|ICD10CM|Injury of flexor muscle, fascia and tendon of other and unspecified finger at forearm level|Injury of flexor muscle, fascia and tendon of other and unspecified finger at forearm level +C0495885|T037|PT|S56.1|ICD10|Injury of long flexor muscle and tendon of other finger(s) at forearm level|Injury of long flexor muscle and tendon of other finger(s) at forearm level +C2847804|T037|AB|S56.10|ICD10CM|Unsp inj flexor musc/fasc/tend and unsp finger at forarm lv|Unsp inj flexor musc/fasc/tend and unsp finger at forarm lv +C2847805|T037|AB|S56.101|ICD10CM|Unsp injury of flexor musc/fasc/tend r idx fngr at forarm lv|Unsp injury of flexor musc/fasc/tend r idx fngr at forarm lv +C2847805|T037|HT|S56.101|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of right index finger at forearm level|Unspecified injury of flexor muscle, fascia and tendon of right index finger at forearm level +C2847806|T037|AB|S56.101A|ICD10CM|Unsp inj flexor musc/fasc/tend r idx fngr at forarm lv, init|Unsp inj flexor musc/fasc/tend r idx fngr at forarm lv, init +C2847807|T037|AB|S56.101D|ICD10CM|Unsp inj flexor musc/fasc/tend r idx fngr at forarm lv, subs|Unsp inj flexor musc/fasc/tend r idx fngr at forarm lv, subs +C2847808|T037|AB|S56.101S|ICD10CM|Unsp inj flexor musc/fasc/tend r idx fngr at forarm lv, sqla|Unsp inj flexor musc/fasc/tend r idx fngr at forarm lv, sqla +C2847809|T037|AB|S56.102|ICD10CM|Unsp injury of flexor musc/fasc/tend l idx fngr at forarm lv|Unsp injury of flexor musc/fasc/tend l idx fngr at forarm lv +C2847809|T037|HT|S56.102|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of left index finger at forearm level|Unspecified injury of flexor muscle, fascia and tendon of left index finger at forearm level +C2847810|T037|AB|S56.102A|ICD10CM|Unsp inj flexor musc/fasc/tend l idx fngr at forarm lv, init|Unsp inj flexor musc/fasc/tend l idx fngr at forarm lv, init +C2847811|T037|AB|S56.102D|ICD10CM|Unsp inj flexor musc/fasc/tend l idx fngr at forarm lv, subs|Unsp inj flexor musc/fasc/tend l idx fngr at forarm lv, subs +C2847812|T037|AB|S56.102S|ICD10CM|Unsp inj flexor musc/fasc/tend l idx fngr at forarm lv, sqla|Unsp inj flexor musc/fasc/tend l idx fngr at forarm lv, sqla +C2847813|T037|AB|S56.103|ICD10CM|Unsp inj flexor musc/fasc/tend r mid finger at forarm lv|Unsp inj flexor musc/fasc/tend r mid finger at forarm lv +C2847813|T037|HT|S56.103|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of right middle finger at forearm level|Unspecified injury of flexor muscle, fascia and tendon of right middle finger at forearm level +C2847814|T037|AB|S56.103A|ICD10CM|Unsp inj flexor musc/fasc/tend r mid fngr at forarm lv, init|Unsp inj flexor musc/fasc/tend r mid fngr at forarm lv, init +C2847815|T037|AB|S56.103D|ICD10CM|Unsp inj flexor musc/fasc/tend r mid fngr at forarm lv, subs|Unsp inj flexor musc/fasc/tend r mid fngr at forarm lv, subs +C2847816|T037|AB|S56.103S|ICD10CM|Unsp inj flexor musc/fasc/tend r mid fngr at forarm lv, sqla|Unsp inj flexor musc/fasc/tend r mid fngr at forarm lv, sqla +C2847817|T037|AB|S56.104|ICD10CM|Unsp inj flexor musc/fasc/tend l mid finger at forarm lv|Unsp inj flexor musc/fasc/tend l mid finger at forarm lv +C2847817|T037|HT|S56.104|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of left middle finger at forearm level|Unspecified injury of flexor muscle, fascia and tendon of left middle finger at forearm level +C2847818|T037|AB|S56.104A|ICD10CM|Unsp inj flexor musc/fasc/tend l mid fngr at forarm lv, init|Unsp inj flexor musc/fasc/tend l mid fngr at forarm lv, init +C2847819|T037|AB|S56.104D|ICD10CM|Unsp inj flexor musc/fasc/tend l mid fngr at forarm lv, subs|Unsp inj flexor musc/fasc/tend l mid fngr at forarm lv, subs +C2847820|T037|AB|S56.104S|ICD10CM|Unsp inj flexor musc/fasc/tend l mid fngr at forarm lv, sqla|Unsp inj flexor musc/fasc/tend l mid fngr at forarm lv, sqla +C2847821|T037|AB|S56.105|ICD10CM|Unsp injury of flexor musc/fasc/tend r rng fngr at forarm lv|Unsp injury of flexor musc/fasc/tend r rng fngr at forarm lv +C2847821|T037|HT|S56.105|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of right ring finger at forearm level|Unspecified injury of flexor muscle, fascia and tendon of right ring finger at forearm level +C2847822|T037|AB|S56.105A|ICD10CM|Unsp inj flexor musc/fasc/tend r rng fngr at forarm lv, init|Unsp inj flexor musc/fasc/tend r rng fngr at forarm lv, init +C2847823|T037|AB|S56.105D|ICD10CM|Unsp inj flexor musc/fasc/tend r rng fngr at forarm lv, subs|Unsp inj flexor musc/fasc/tend r rng fngr at forarm lv, subs +C2847824|T037|AB|S56.105S|ICD10CM|Unsp inj flexor musc/fasc/tend r rng fngr at forarm lv, sqla|Unsp inj flexor musc/fasc/tend r rng fngr at forarm lv, sqla +C2847825|T037|AB|S56.106|ICD10CM|Unsp injury of flexor musc/fasc/tend l rng fngr at forarm lv|Unsp injury of flexor musc/fasc/tend l rng fngr at forarm lv +C2847825|T037|HT|S56.106|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level|Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level +C2847826|T037|AB|S56.106A|ICD10CM|Unsp inj flexor musc/fasc/tend l rng fngr at forarm lv, init|Unsp inj flexor musc/fasc/tend l rng fngr at forarm lv, init +C2847827|T037|AB|S56.106D|ICD10CM|Unsp inj flexor musc/fasc/tend l rng fngr at forarm lv, subs|Unsp inj flexor musc/fasc/tend l rng fngr at forarm lv, subs +C2847828|T037|AB|S56.106S|ICD10CM|Unsp inj flexor musc/fasc/tend l rng fngr at forarm lv, sqla|Unsp inj flexor musc/fasc/tend l rng fngr at forarm lv, sqla +C2847828|T037|PT|S56.106S|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela|Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela +C2847829|T037|AB|S56.107|ICD10CM|Unsp inj flexor musc/fasc/tend r little finger at forarm lv|Unsp inj flexor musc/fasc/tend r little finger at forarm lv +C2847829|T037|HT|S56.107|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of right little finger at forearm level|Unspecified injury of flexor muscle, fascia and tendon of right little finger at forearm level +C2847830|T037|AB|S56.107A|ICD10CM|Unsp inj flxr musc/fasc/tend r lit fngr at forarm lv, init|Unsp inj flxr musc/fasc/tend r lit fngr at forarm lv, init +C2847831|T037|AB|S56.107D|ICD10CM|Unsp inj flxr musc/fasc/tend r lit fngr at forarm lv, subs|Unsp inj flxr musc/fasc/tend r lit fngr at forarm lv, subs +C2847832|T037|AB|S56.107S|ICD10CM|Unsp inj flxr musc/fasc/tend r lit fngr at forarm lv, sqla|Unsp inj flxr musc/fasc/tend r lit fngr at forarm lv, sqla +C2847833|T037|AB|S56.108|ICD10CM|Unsp inj flexor musc/fasc/tend l little finger at forarm lv|Unsp inj flexor musc/fasc/tend l little finger at forarm lv +C2847833|T037|HT|S56.108|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of left little finger at forearm level|Unspecified injury of flexor muscle, fascia and tendon of left little finger at forearm level +C2847834|T037|AB|S56.108A|ICD10CM|Unsp inj flxr musc/fasc/tend l lit fngr at forarm lv, init|Unsp inj flxr musc/fasc/tend l lit fngr at forarm lv, init +C2847835|T037|AB|S56.108D|ICD10CM|Unsp inj flxr musc/fasc/tend l lit fngr at forarm lv, subs|Unsp inj flxr musc/fasc/tend l lit fngr at forarm lv, subs +C2847836|T037|AB|S56.108S|ICD10CM|Unsp inj flxr musc/fasc/tend l lit fngr at forarm lv, sqla|Unsp inj flxr musc/fasc/tend l lit fngr at forarm lv, sqla +C2847804|T037|AB|S56.109|ICD10CM|Unsp inj flexor musc/fasc/tend unsp finger at forarm lv|Unsp inj flexor musc/fasc/tend unsp finger at forarm lv +C2847804|T037|HT|S56.109|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at forearm level|Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at forearm level +C2847838|T037|AB|S56.109A|ICD10CM|Unsp inj flexor musc/fasc/tend unsp fngr at forarm lv, init|Unsp inj flexor musc/fasc/tend unsp fngr at forarm lv, init +C2847839|T037|AB|S56.109D|ICD10CM|Unsp inj flexor musc/fasc/tend unsp fngr at forarm lv, subs|Unsp inj flexor musc/fasc/tend unsp fngr at forarm lv, subs +C2847840|T037|AB|S56.109S|ICD10CM|Unsp inj flexor musc/fasc/tend unsp fngr at forarm lv, sqla|Unsp inj flexor musc/fasc/tend unsp fngr at forarm lv, sqla +C2847841|T037|AB|S56.11|ICD10CM|Strain of flexor musc/fasc/tend and unsp finger at forarm lv|Strain of flexor musc/fasc/tend and unsp finger at forarm lv +C2847841|T037|HT|S56.11|ICD10CM|Strain of flexor muscle, fascia and tendon of other and unspecified finger at forearm level|Strain of flexor muscle, fascia and tendon of other and unspecified finger at forearm level +C2847842|T037|AB|S56.111|ICD10CM|Strain of flexor musc/fasc/tend r idx fngr at forearm level|Strain of flexor musc/fasc/tend r idx fngr at forearm level +C2847842|T037|HT|S56.111|ICD10CM|Strain of flexor muscle, fascia and tendon of right index finger at forearm level|Strain of flexor muscle, fascia and tendon of right index finger at forearm level +C2847843|T037|AB|S56.111A|ICD10CM|Strain flexor musc/fasc/tend r idx fngr at forarm lv, init|Strain flexor musc/fasc/tend r idx fngr at forarm lv, init +C2847843|T037|PT|S56.111A|ICD10CM|Strain of flexor muscle, fascia and tendon of right index finger at forearm level, initial encounter|Strain of flexor muscle, fascia and tendon of right index finger at forearm level, initial encounter +C2847844|T037|AB|S56.111D|ICD10CM|Strain flexor musc/fasc/tend r idx fngr at forarm lv, subs|Strain flexor musc/fasc/tend r idx fngr at forarm lv, subs +C2847845|T037|AB|S56.111S|ICD10CM|Strain flexor musc/fasc/tend r idx fngr at forarm lv, sqla|Strain flexor musc/fasc/tend r idx fngr at forarm lv, sqla +C2847845|T037|PT|S56.111S|ICD10CM|Strain of flexor muscle, fascia and tendon of right index finger at forearm level, sequela|Strain of flexor muscle, fascia and tendon of right index finger at forearm level, sequela +C2847846|T037|AB|S56.112|ICD10CM|Strain of flexor musc/fasc/tend l idx fngr at forearm level|Strain of flexor musc/fasc/tend l idx fngr at forearm level +C2847846|T037|HT|S56.112|ICD10CM|Strain of flexor muscle, fascia and tendon of left index finger at forearm level|Strain of flexor muscle, fascia and tendon of left index finger at forearm level +C2847847|T037|AB|S56.112A|ICD10CM|Strain flexor musc/fasc/tend l idx fngr at forarm lv, init|Strain flexor musc/fasc/tend l idx fngr at forarm lv, init +C2847847|T037|PT|S56.112A|ICD10CM|Strain of flexor muscle, fascia and tendon of left index finger at forearm level, initial encounter|Strain of flexor muscle, fascia and tendon of left index finger at forearm level, initial encounter +C2847848|T037|AB|S56.112D|ICD10CM|Strain flexor musc/fasc/tend l idx fngr at forarm lv, subs|Strain flexor musc/fasc/tend l idx fngr at forarm lv, subs +C2847849|T037|AB|S56.112S|ICD10CM|Strain flexor musc/fasc/tend l idx fngr at forarm lv, sqla|Strain flexor musc/fasc/tend l idx fngr at forarm lv, sqla +C2847849|T037|PT|S56.112S|ICD10CM|Strain of flexor muscle, fascia and tendon of left index finger at forearm level, sequela|Strain of flexor muscle, fascia and tendon of left index finger at forearm level, sequela +C2847850|T037|AB|S56.113|ICD10CM|Strain of flexor musc/fasc/tend r mid finger at forarm lv|Strain of flexor musc/fasc/tend r mid finger at forarm lv +C2847850|T037|HT|S56.113|ICD10CM|Strain of flexor muscle, fascia and tendon of right middle finger at forearm level|Strain of flexor muscle, fascia and tendon of right middle finger at forearm level +C2847851|T037|AB|S56.113A|ICD10CM|Strain flexor musc/fasc/tend r mid finger at forarm lv, init|Strain flexor musc/fasc/tend r mid finger at forarm lv, init +C2847852|T037|AB|S56.113D|ICD10CM|Strain flexor musc/fasc/tend r mid finger at forarm lv, subs|Strain flexor musc/fasc/tend r mid finger at forarm lv, subs +C2847853|T037|AB|S56.113S|ICD10CM|Strain flexor musc/fasc/tend r mid finger at forarm lv, sqla|Strain flexor musc/fasc/tend r mid finger at forarm lv, sqla +C2847853|T037|PT|S56.113S|ICD10CM|Strain of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela|Strain of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela +C2847854|T037|AB|S56.114|ICD10CM|Strain of flexor musc/fasc/tend l mid finger at forarm lv|Strain of flexor musc/fasc/tend l mid finger at forarm lv +C2847854|T037|HT|S56.114|ICD10CM|Strain of flexor muscle, fascia and tendon of left middle finger at forearm level|Strain of flexor muscle, fascia and tendon of left middle finger at forearm level +C2847855|T037|AB|S56.114A|ICD10CM|Strain flexor musc/fasc/tend l mid finger at forarm lv, init|Strain flexor musc/fasc/tend l mid finger at forarm lv, init +C2847855|T037|PT|S56.114A|ICD10CM|Strain of flexor muscle, fascia and tendon of left middle finger at forearm level, initial encounter|Strain of flexor muscle, fascia and tendon of left middle finger at forearm level, initial encounter +C2847856|T037|AB|S56.114D|ICD10CM|Strain flexor musc/fasc/tend l mid finger at forarm lv, subs|Strain flexor musc/fasc/tend l mid finger at forarm lv, subs +C2847857|T037|AB|S56.114S|ICD10CM|Strain flexor musc/fasc/tend l mid finger at forarm lv, sqla|Strain flexor musc/fasc/tend l mid finger at forarm lv, sqla +C2847857|T037|PT|S56.114S|ICD10CM|Strain of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela|Strain of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela +C2847858|T037|AB|S56.115|ICD10CM|Strain of flexor musc/fasc/tend r rng fngr at forearm level|Strain of flexor musc/fasc/tend r rng fngr at forearm level +C2847858|T037|HT|S56.115|ICD10CM|Strain of flexor muscle, fascia and tendon of right ring finger at forearm level|Strain of flexor muscle, fascia and tendon of right ring finger at forearm level +C2847859|T037|AB|S56.115A|ICD10CM|Strain flexor musc/fasc/tend r rng fngr at forarm lv, init|Strain flexor musc/fasc/tend r rng fngr at forarm lv, init +C2847859|T037|PT|S56.115A|ICD10CM|Strain of flexor muscle, fascia and tendon of right ring finger at forearm level, initial encounter|Strain of flexor muscle, fascia and tendon of right ring finger at forearm level, initial encounter +C2847860|T037|AB|S56.115D|ICD10CM|Strain flexor musc/fasc/tend r rng fngr at forarm lv, subs|Strain flexor musc/fasc/tend r rng fngr at forarm lv, subs +C2847861|T037|AB|S56.115S|ICD10CM|Strain flexor musc/fasc/tend r rng fngr at forarm lv, sqla|Strain flexor musc/fasc/tend r rng fngr at forarm lv, sqla +C2847861|T037|PT|S56.115S|ICD10CM|Strain of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela|Strain of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela +C2847862|T037|AB|S56.116|ICD10CM|Strain of flexor musc/fasc/tend l rng fngr at forearm level|Strain of flexor musc/fasc/tend l rng fngr at forearm level +C2847862|T037|HT|S56.116|ICD10CM|Strain of flexor muscle, fascia and tendon of left ring finger at forearm level|Strain of flexor muscle, fascia and tendon of left ring finger at forearm level +C2847863|T037|AB|S56.116A|ICD10CM|Strain flexor musc/fasc/tend l rng fngr at forarm lv, init|Strain flexor musc/fasc/tend l rng fngr at forarm lv, init +C2847863|T037|PT|S56.116A|ICD10CM|Strain of flexor muscle, fascia and tendon of left ring finger at forearm level, initial encounter|Strain of flexor muscle, fascia and tendon of left ring finger at forearm level, initial encounter +C2847864|T037|AB|S56.116D|ICD10CM|Strain flexor musc/fasc/tend l rng fngr at forarm lv, subs|Strain flexor musc/fasc/tend l rng fngr at forarm lv, subs +C2847865|T037|AB|S56.116S|ICD10CM|Strain flexor musc/fasc/tend l rng fngr at forarm lv, sqla|Strain flexor musc/fasc/tend l rng fngr at forarm lv, sqla +C2847865|T037|PT|S56.116S|ICD10CM|Strain of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela|Strain of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela +C2847866|T037|AB|S56.117|ICD10CM|Strain of flexor musc/fasc/tend r little finger at forarm lv|Strain of flexor musc/fasc/tend r little finger at forarm lv +C2847866|T037|HT|S56.117|ICD10CM|Strain of flexor muscle, fascia and tendon of right little finger at forearm level|Strain of flexor muscle, fascia and tendon of right little finger at forearm level +C2847867|T037|AB|S56.117A|ICD10CM|Strain flxr musc/fasc/tend r little fngr at forarm lv, init|Strain flxr musc/fasc/tend r little fngr at forarm lv, init +C2847868|T037|AB|S56.117D|ICD10CM|Strain flxr musc/fasc/tend r little fngr at forarm lv, subs|Strain flxr musc/fasc/tend r little fngr at forarm lv, subs +C2847869|T037|AB|S56.117S|ICD10CM|Strain flxr musc/fasc/tend r little fngr at forarm lv, sqla|Strain flxr musc/fasc/tend r little fngr at forarm lv, sqla +C2847869|T037|PT|S56.117S|ICD10CM|Strain of flexor muscle, fascia and tendon of right little finger at forearm level, sequela|Strain of flexor muscle, fascia and tendon of right little finger at forearm level, sequela +C2847870|T037|AB|S56.118|ICD10CM|Strain of flexor musc/fasc/tend l little finger at forarm lv|Strain of flexor musc/fasc/tend l little finger at forarm lv +C2847870|T037|HT|S56.118|ICD10CM|Strain of flexor muscle, fascia and tendon of left little finger at forearm level|Strain of flexor muscle, fascia and tendon of left little finger at forearm level +C2847871|T037|AB|S56.118A|ICD10CM|Strain flxr musc/fasc/tend l little fngr at forarm lv, init|Strain flxr musc/fasc/tend l little fngr at forarm lv, init +C2847871|T037|PT|S56.118A|ICD10CM|Strain of flexor muscle, fascia and tendon of left little finger at forearm level, initial encounter|Strain of flexor muscle, fascia and tendon of left little finger at forearm level, initial encounter +C2847872|T037|AB|S56.118D|ICD10CM|Strain flxr musc/fasc/tend l little fngr at forarm lv, subs|Strain flxr musc/fasc/tend l little fngr at forarm lv, subs +C2847873|T037|AB|S56.118S|ICD10CM|Strain flxr musc/fasc/tend l little fngr at forarm lv, sqla|Strain flxr musc/fasc/tend l little fngr at forarm lv, sqla +C2847873|T037|PT|S56.118S|ICD10CM|Strain of flexor muscle, fascia and tendon of left little finger at forearm level, sequela|Strain of flexor muscle, fascia and tendon of left little finger at forearm level, sequela +C2847874|T037|AB|S56.119|ICD10CM|Strain of flexor musc/fasc/tend of unsp fngr at forarm lv|Strain of flexor musc/fasc/tend of unsp fngr at forarm lv +C2847874|T037|HT|S56.119|ICD10CM|Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level|Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level +C2847875|T037|AB|S56.119A|ICD10CM|Strain flexor musc/fasc/tend of unsp fngr at forarm lv, init|Strain flexor musc/fasc/tend of unsp fngr at forarm lv, init +C2847876|T037|AB|S56.119D|ICD10CM|Strain flexor musc/fasc/tend of unsp fngr at forarm lv, subs|Strain flexor musc/fasc/tend of unsp fngr at forarm lv, subs +C2847877|T037|AB|S56.119S|ICD10CM|Strain flexor musc/fasc/tend of unsp fngr at forarm lv, sqla|Strain flexor musc/fasc/tend of unsp fngr at forarm lv, sqla +C2847877|T037|PT|S56.119S|ICD10CM|Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level, sequela|Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level, sequela +C2847878|T037|AB|S56.12|ICD10CM|Lacerat flexor musc/fasc/tend and unsp finger at forarm lv|Lacerat flexor musc/fasc/tend and unsp finger at forarm lv +C2847878|T037|HT|S56.12|ICD10CM|Laceration of flexor muscle, fascia and tendon of other and unspecified finger at forearm level|Laceration of flexor muscle, fascia and tendon of other and unspecified finger at forearm level +C2847879|T037|AB|S56.121|ICD10CM|Laceration of flexor musc/fasc/tend r idx fngr at forarm lv|Laceration of flexor musc/fasc/tend r idx fngr at forarm lv +C2847879|T037|HT|S56.121|ICD10CM|Laceration of flexor muscle, fascia and tendon of right index finger at forearm level|Laceration of flexor muscle, fascia and tendon of right index finger at forearm level +C2847880|T037|AB|S56.121A|ICD10CM|Lacerat flexor musc/fasc/tend r idx fngr at forarm lv, init|Lacerat flexor musc/fasc/tend r idx fngr at forarm lv, init +C2847881|T037|AB|S56.121D|ICD10CM|Lacerat flexor musc/fasc/tend r idx fngr at forarm lv, subs|Lacerat flexor musc/fasc/tend r idx fngr at forarm lv, subs +C2847882|T037|AB|S56.121S|ICD10CM|Lacerat flexor musc/fasc/tend r idx fngr at forarm lv, sqla|Lacerat flexor musc/fasc/tend r idx fngr at forarm lv, sqla +C2847882|T037|PT|S56.121S|ICD10CM|Laceration of flexor muscle, fascia and tendon of right index finger at forearm level, sequela|Laceration of flexor muscle, fascia and tendon of right index finger at forearm level, sequela +C2847883|T037|AB|S56.122|ICD10CM|Laceration of flexor musc/fasc/tend l idx fngr at forarm lv|Laceration of flexor musc/fasc/tend l idx fngr at forarm lv +C2847883|T037|HT|S56.122|ICD10CM|Laceration of flexor muscle, fascia and tendon of left index finger at forearm level|Laceration of flexor muscle, fascia and tendon of left index finger at forearm level +C2847884|T037|AB|S56.122A|ICD10CM|Lacerat flexor musc/fasc/tend l idx fngr at forarm lv, init|Lacerat flexor musc/fasc/tend l idx fngr at forarm lv, init +C2847885|T037|AB|S56.122D|ICD10CM|Lacerat flexor musc/fasc/tend l idx fngr at forarm lv, subs|Lacerat flexor musc/fasc/tend l idx fngr at forarm lv, subs +C2847886|T037|AB|S56.122S|ICD10CM|Lacerat flexor musc/fasc/tend l idx fngr at forarm lv, sqla|Lacerat flexor musc/fasc/tend l idx fngr at forarm lv, sqla +C2847886|T037|PT|S56.122S|ICD10CM|Laceration of flexor muscle, fascia and tendon of left index finger at forearm level, sequela|Laceration of flexor muscle, fascia and tendon of left index finger at forearm level, sequela +C2847887|T037|AB|S56.123|ICD10CM|Lacerat flexor musc/fasc/tend r mid finger at forarm lv|Lacerat flexor musc/fasc/tend r mid finger at forarm lv +C2847887|T037|HT|S56.123|ICD10CM|Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level|Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level +C2847888|T037|AB|S56.123A|ICD10CM|Lacerat flexor musc/fasc/tend r mid fngr at forarm lv, init|Lacerat flexor musc/fasc/tend r mid fngr at forarm lv, init +C2847889|T037|AB|S56.123D|ICD10CM|Lacerat flexor musc/fasc/tend r mid fngr at forarm lv, subs|Lacerat flexor musc/fasc/tend r mid fngr at forarm lv, subs +C2847890|T037|AB|S56.123S|ICD10CM|Lacerat flexor musc/fasc/tend r mid fngr at forarm lv, sqla|Lacerat flexor musc/fasc/tend r mid fngr at forarm lv, sqla +C2847890|T037|PT|S56.123S|ICD10CM|Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela|Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela +C2847891|T037|AB|S56.124|ICD10CM|Lacerat flexor musc/fasc/tend l mid finger at forarm lv|Lacerat flexor musc/fasc/tend l mid finger at forarm lv +C2847891|T037|HT|S56.124|ICD10CM|Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level|Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level +C2847892|T037|AB|S56.124A|ICD10CM|Lacerat flexor musc/fasc/tend l mid fngr at forarm lv, init|Lacerat flexor musc/fasc/tend l mid fngr at forarm lv, init +C2847893|T037|AB|S56.124D|ICD10CM|Lacerat flexor musc/fasc/tend l mid fngr at forarm lv, subs|Lacerat flexor musc/fasc/tend l mid fngr at forarm lv, subs +C2847894|T037|AB|S56.124S|ICD10CM|Lacerat flexor musc/fasc/tend l mid fngr at forarm lv, sqla|Lacerat flexor musc/fasc/tend l mid fngr at forarm lv, sqla +C2847894|T037|PT|S56.124S|ICD10CM|Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela|Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela +C2847895|T037|AB|S56.125|ICD10CM|Laceration of flexor musc/fasc/tend r rng fngr at forarm lv|Laceration of flexor musc/fasc/tend r rng fngr at forarm lv +C2847895|T037|HT|S56.125|ICD10CM|Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level|Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level +C2847896|T037|AB|S56.125A|ICD10CM|Lacerat flexor musc/fasc/tend r rng fngr at forarm lv, init|Lacerat flexor musc/fasc/tend r rng fngr at forarm lv, init +C2847897|T037|AB|S56.125D|ICD10CM|Lacerat flexor musc/fasc/tend r rng fngr at forarm lv, subs|Lacerat flexor musc/fasc/tend r rng fngr at forarm lv, subs +C2847898|T037|AB|S56.125S|ICD10CM|Lacerat flexor musc/fasc/tend r rng fngr at forarm lv, sqla|Lacerat flexor musc/fasc/tend r rng fngr at forarm lv, sqla +C2847898|T037|PT|S56.125S|ICD10CM|Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela|Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela +C2847899|T037|AB|S56.126|ICD10CM|Laceration of flexor musc/fasc/tend l rng fngr at forarm lv|Laceration of flexor musc/fasc/tend l rng fngr at forarm lv +C2847899|T037|HT|S56.126|ICD10CM|Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level|Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level +C2847900|T037|AB|S56.126A|ICD10CM|Lacerat flexor musc/fasc/tend l rng fngr at forarm lv, init|Lacerat flexor musc/fasc/tend l rng fngr at forarm lv, init +C2847901|T037|AB|S56.126D|ICD10CM|Lacerat flexor musc/fasc/tend l rng fngr at forarm lv, subs|Lacerat flexor musc/fasc/tend l rng fngr at forarm lv, subs +C2847902|T037|AB|S56.126S|ICD10CM|Lacerat flexor musc/fasc/tend l rng fngr at forarm lv, sqla|Lacerat flexor musc/fasc/tend l rng fngr at forarm lv, sqla +C2847902|T037|PT|S56.126S|ICD10CM|Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela|Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela +C2847903|T037|AB|S56.127|ICD10CM|Lacerat flexor musc/fasc/tend r little finger at forarm lv|Lacerat flexor musc/fasc/tend r little finger at forarm lv +C2847903|T037|HT|S56.127|ICD10CM|Laceration of flexor muscle, fascia and tendon of right little finger at forearm level|Laceration of flexor muscle, fascia and tendon of right little finger at forearm level +C2847904|T037|AB|S56.127A|ICD10CM|Lacerat flxr musc/fasc/tend r little fngr at forarm lv, init|Lacerat flxr musc/fasc/tend r little fngr at forarm lv, init +C2847905|T037|AB|S56.127D|ICD10CM|Lacerat flxr musc/fasc/tend r little fngr at forarm lv, subs|Lacerat flxr musc/fasc/tend r little fngr at forarm lv, subs +C2847906|T037|AB|S56.127S|ICD10CM|Lacerat flxr musc/fasc/tend r little fngr at forarm lv, sqla|Lacerat flxr musc/fasc/tend r little fngr at forarm lv, sqla +C2847906|T037|PT|S56.127S|ICD10CM|Laceration of flexor muscle, fascia and tendon of right little finger at forearm level, sequela|Laceration of flexor muscle, fascia and tendon of right little finger at forearm level, sequela +C2847907|T037|AB|S56.128|ICD10CM|Lacerat flexor musc/fasc/tend l little finger at forarm lv|Lacerat flexor musc/fasc/tend l little finger at forarm lv +C2847907|T037|HT|S56.128|ICD10CM|Laceration of flexor muscle, fascia and tendon of left little finger at forearm level|Laceration of flexor muscle, fascia and tendon of left little finger at forearm level +C2847908|T037|AB|S56.128A|ICD10CM|Lacerat flxr musc/fasc/tend l little fngr at forarm lv, init|Lacerat flxr musc/fasc/tend l little fngr at forarm lv, init +C2847909|T037|AB|S56.128D|ICD10CM|Lacerat flxr musc/fasc/tend l little fngr at forarm lv, subs|Lacerat flxr musc/fasc/tend l little fngr at forarm lv, subs +C2847910|T037|AB|S56.128S|ICD10CM|Lacerat flxr musc/fasc/tend l little fngr at forarm lv, sqla|Lacerat flxr musc/fasc/tend l little fngr at forarm lv, sqla +C2847910|T037|PT|S56.128S|ICD10CM|Laceration of flexor muscle, fascia and tendon of left little finger at forearm level, sequela|Laceration of flexor muscle, fascia and tendon of left little finger at forearm level, sequela +C2847911|T037|AB|S56.129|ICD10CM|Laceration of flexor musc/fasc/tend unsp finger at forarm lv|Laceration of flexor musc/fasc/tend unsp finger at forarm lv +C2847911|T037|HT|S56.129|ICD10CM|Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level|Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level +C2847912|T037|AB|S56.129A|ICD10CM|Lacerat flexor musc/fasc/tend unsp finger at forarm lv, init|Lacerat flexor musc/fasc/tend unsp finger at forarm lv, init +C2847913|T037|AB|S56.129D|ICD10CM|Lacerat flexor musc/fasc/tend unsp finger at forarm lv, subs|Lacerat flexor musc/fasc/tend unsp finger at forarm lv, subs +C2847914|T037|AB|S56.129S|ICD10CM|Lacerat flexor musc/fasc/tend unsp finger at forarm lv, sqla|Lacerat flexor musc/fasc/tend unsp finger at forarm lv, sqla +C2847914|T037|PT|S56.129S|ICD10CM|Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level, sequela|Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level, sequela +C2847915|T037|AB|S56.19|ICD10CM|Inj flexor musc/fasc/tend and unsp finger at forearm level|Inj flexor musc/fasc/tend and unsp finger at forearm level +C2847915|T037|HT|S56.19|ICD10CM|Other injury of flexor muscle, fascia and tendon of other and unspecified finger at forearm level|Other injury of flexor muscle, fascia and tendon of other and unspecified finger at forearm level +C2847916|T037|AB|S56.191|ICD10CM|Inj flexor musc/fasc/tend r idx fngr at forearm level|Inj flexor musc/fasc/tend r idx fngr at forearm level +C2847916|T037|HT|S56.191|ICD10CM|Other injury of flexor muscle, fascia and tendon of right index finger at forearm level|Other injury of flexor muscle, fascia and tendon of right index finger at forearm level +C2847917|T037|AB|S56.191A|ICD10CM|Inj flexor musc/fasc/tend r idx fngr at forearm level, init|Inj flexor musc/fasc/tend r idx fngr at forearm level, init +C2847918|T037|AB|S56.191D|ICD10CM|Inj flexor musc/fasc/tend r idx fngr at forearm level, subs|Inj flexor musc/fasc/tend r idx fngr at forearm level, subs +C2847919|T037|AB|S56.191S|ICD10CM|Inj flexor musc/fasc/tend r idx fngr at forarm lv, sequela|Inj flexor musc/fasc/tend r idx fngr at forarm lv, sequela +C2847919|T037|PT|S56.191S|ICD10CM|Other injury of flexor muscle, fascia and tendon of right index finger at forearm level, sequela|Other injury of flexor muscle, fascia and tendon of right index finger at forearm level, sequela +C2847920|T037|AB|S56.192|ICD10CM|Inj flexor musc/fasc/tend left index finger at forearm level|Inj flexor musc/fasc/tend left index finger at forearm level +C2847920|T037|HT|S56.192|ICD10CM|Other injury of flexor muscle, fascia and tendon of left index finger at forearm level|Other injury of flexor muscle, fascia and tendon of left index finger at forearm level +C2847921|T037|AB|S56.192A|ICD10CM|Inj flexor musc/fasc/tend l idx fngr at forearm level, init|Inj flexor musc/fasc/tend l idx fngr at forearm level, init +C2847922|T037|AB|S56.192D|ICD10CM|Inj flexor musc/fasc/tend l idx fngr at forearm level, subs|Inj flexor musc/fasc/tend l idx fngr at forearm level, subs +C2847923|T037|AB|S56.192S|ICD10CM|Inj flexor musc/fasc/tend l idx fngr at forarm lv, sequela|Inj flexor musc/fasc/tend l idx fngr at forarm lv, sequela +C2847923|T037|PT|S56.192S|ICD10CM|Other injury of flexor muscle, fascia and tendon of left index finger at forearm level, sequela|Other injury of flexor muscle, fascia and tendon of left index finger at forearm level, sequela +C2847924|T037|AB|S56.193|ICD10CM|Inj flexor musc/fasc/tend r mid finger at forearm level|Inj flexor musc/fasc/tend r mid finger at forearm level +C2847924|T037|HT|S56.193|ICD10CM|Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level|Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level +C2847925|T037|AB|S56.193A|ICD10CM|Inj flexor musc/fasc/tend r mid finger at forarm lv, init|Inj flexor musc/fasc/tend r mid finger at forarm lv, init +C2847926|T037|AB|S56.193D|ICD10CM|Inj flexor musc/fasc/tend r mid finger at forarm lv, subs|Inj flexor musc/fasc/tend r mid finger at forarm lv, subs +C2847927|T037|AB|S56.193S|ICD10CM|Inj flexor musc/fasc/tend r mid finger at forarm lv, sequela|Inj flexor musc/fasc/tend r mid finger at forarm lv, sequela +C2847927|T037|PT|S56.193S|ICD10CM|Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela|Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela +C2847928|T037|AB|S56.194|ICD10CM|Inj flexor musc/fasc/tend l mid finger at forearm level|Inj flexor musc/fasc/tend l mid finger at forearm level +C2847928|T037|HT|S56.194|ICD10CM|Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level|Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level +C2847929|T037|AB|S56.194A|ICD10CM|Inj flexor musc/fasc/tend l mid finger at forarm lv, init|Inj flexor musc/fasc/tend l mid finger at forarm lv, init +C2847930|T037|AB|S56.194D|ICD10CM|Inj flexor musc/fasc/tend l mid finger at forarm lv, subs|Inj flexor musc/fasc/tend l mid finger at forarm lv, subs +C2847931|T037|AB|S56.194S|ICD10CM|Inj flexor musc/fasc/tend l mid finger at forarm lv, sequela|Inj flexor musc/fasc/tend l mid finger at forarm lv, sequela +C2847931|T037|PT|S56.194S|ICD10CM|Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela|Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela +C2847932|T037|AB|S56.195|ICD10CM|Inj flexor musc/fasc/tend right ring finger at forearm level|Inj flexor musc/fasc/tend right ring finger at forearm level +C2847932|T037|HT|S56.195|ICD10CM|Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level|Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level +C2847933|T037|AB|S56.195A|ICD10CM|Inj flexor musc/fasc/tend r rng fngr at forearm level, init|Inj flexor musc/fasc/tend r rng fngr at forearm level, init +C2847934|T037|AB|S56.195D|ICD10CM|Inj flexor musc/fasc/tend r rng fngr at forearm level, subs|Inj flexor musc/fasc/tend r rng fngr at forearm level, subs +C2847935|T037|AB|S56.195S|ICD10CM|Inj flexor musc/fasc/tend r rng fngr at forarm lv, sequela|Inj flexor musc/fasc/tend r rng fngr at forarm lv, sequela +C2847935|T037|PT|S56.195S|ICD10CM|Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela|Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela +C2847936|T037|AB|S56.196|ICD10CM|Inj flexor musc/fasc/tend left ring finger at forearm level|Inj flexor musc/fasc/tend left ring finger at forearm level +C2847936|T037|HT|S56.196|ICD10CM|Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level|Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level +C2847937|T037|AB|S56.196A|ICD10CM|Inj flexor musc/fasc/tend l rng fngr at forearm level, init|Inj flexor musc/fasc/tend l rng fngr at forearm level, init +C2847938|T037|AB|S56.196D|ICD10CM|Inj flexor musc/fasc/tend l rng fngr at forearm level, subs|Inj flexor musc/fasc/tend l rng fngr at forearm level, subs +C2847939|T037|AB|S56.196S|ICD10CM|Inj flexor musc/fasc/tend l rng fngr at forarm lv, sequela|Inj flexor musc/fasc/tend l rng fngr at forarm lv, sequela +C2847939|T037|PT|S56.196S|ICD10CM|Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela|Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela +C2847940|T037|AB|S56.197|ICD10CM|Inj flexor musc/fasc/tend r little finger at forearm level|Inj flexor musc/fasc/tend r little finger at forearm level +C2847940|T037|HT|S56.197|ICD10CM|Other injury of flexor muscle, fascia and tendon of right little finger at forearm level|Other injury of flexor muscle, fascia and tendon of right little finger at forearm level +C2847941|T037|AB|S56.197A|ICD10CM|Inj flexor musc/fasc/tend r little finger at forarm lv, init|Inj flexor musc/fasc/tend r little finger at forarm lv, init +C2847942|T037|AB|S56.197D|ICD10CM|Inj flexor musc/fasc/tend r little finger at forarm lv, subs|Inj flexor musc/fasc/tend r little finger at forarm lv, subs +C2847943|T037|AB|S56.197S|ICD10CM|Inj flexor musc/fasc/tend r little finger at forarm lv, sqla|Inj flexor musc/fasc/tend r little finger at forarm lv, sqla +C2847943|T037|PT|S56.197S|ICD10CM|Other injury of flexor muscle, fascia and tendon of right little finger at forearm level, sequela|Other injury of flexor muscle, fascia and tendon of right little finger at forearm level, sequela +C2847944|T037|AB|S56.198|ICD10CM|Inj flexor musc/fasc/tend l little finger at forearm level|Inj flexor musc/fasc/tend l little finger at forearm level +C2847944|T037|HT|S56.198|ICD10CM|Other injury of flexor muscle, fascia and tendon of left little finger at forearm level|Other injury of flexor muscle, fascia and tendon of left little finger at forearm level +C2847945|T037|AB|S56.198A|ICD10CM|Inj flexor musc/fasc/tend l little finger at forarm lv, init|Inj flexor musc/fasc/tend l little finger at forarm lv, init +C2847946|T037|AB|S56.198D|ICD10CM|Inj flexor musc/fasc/tend l little finger at forarm lv, subs|Inj flexor musc/fasc/tend l little finger at forarm lv, subs +C2847947|T037|AB|S56.198S|ICD10CM|Inj flexor musc/fasc/tend l little finger at forarm lv, sqla|Inj flexor musc/fasc/tend l little finger at forarm lv, sqla +C2847947|T037|PT|S56.198S|ICD10CM|Other injury of flexor muscle, fascia and tendon of left little finger at forearm level, sequela|Other injury of flexor muscle, fascia and tendon of left little finger at forearm level, sequela +C2847915|T037|AB|S56.199|ICD10CM|Inj flexor musc/fasc/tend unsp finger at forearm level|Inj flexor musc/fasc/tend unsp finger at forearm level +C2847915|T037|HT|S56.199|ICD10CM|Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level|Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level +C2847949|T037|AB|S56.199A|ICD10CM|Inj flexor musc/fasc/tend unsp finger at forearm level, init|Inj flexor musc/fasc/tend unsp finger at forearm level, init +C2847950|T037|AB|S56.199D|ICD10CM|Inj flexor musc/fasc/tend unsp finger at forearm level, subs|Inj flexor musc/fasc/tend unsp finger at forearm level, subs +C2847951|T037|AB|S56.199S|ICD10CM|Inj flexor musc/fasc/tend unsp finger at forarm lv, sequela|Inj flexor musc/fasc/tend unsp finger at forarm lv, sequela +C2847951|T037|PT|S56.199S|ICD10CM|Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, sequela|Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, sequela +C3648622|T037|AB|S56.2|ICD10CM|Injury of flexor muscle, fascia and tendon at forearm level|Injury of flexor muscle, fascia and tendon at forearm level +C0478293|T037|PT|S56.2|ICD10|Injury of other flexor muscle and tendon at forearm level|Injury of other flexor muscle and tendon at forearm level +C3648622|T037|HT|S56.2|ICD10CM|Injury of other flexor muscle, fascia and tendon at forearm level|Injury of other flexor muscle, fascia and tendon at forearm level +C2847953|T037|AB|S56.20|ICD10CM|Unsp injury of flexor musc/fasc/tend at forearm level|Unsp injury of flexor musc/fasc/tend at forearm level +C2847953|T037|HT|S56.20|ICD10CM|Unspecified injury of other flexor muscle, fascia and tendon at forearm level|Unspecified injury of other flexor muscle, fascia and tendon at forearm level +C2847954|T037|AB|S56.201|ICD10CM|Unsp injury of flexor musc/fasc/tend at forarm lv, right arm|Unsp injury of flexor musc/fasc/tend at forarm lv, right arm +C2847954|T037|HT|S56.201|ICD10CM|Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm|Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm +C2847955|T037|AB|S56.201A|ICD10CM|Unsp inj flexor musc/fasc/tend at forarm lv, right arm, init|Unsp inj flexor musc/fasc/tend at forarm lv, right arm, init +C2847956|T037|AB|S56.201D|ICD10CM|Unsp inj flexor musc/fasc/tend at forarm lv, right arm, subs|Unsp inj flexor musc/fasc/tend at forarm lv, right arm, subs +C2847957|T037|AB|S56.201S|ICD10CM|Unsp inj flexor musc/fasc/tend at forarm lv, right arm, sqla|Unsp inj flexor musc/fasc/tend at forarm lv, right arm, sqla +C2847957|T037|PT|S56.201S|ICD10CM|Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm, sequela|Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm, sequela +C2847958|T037|AB|S56.202|ICD10CM|Unsp injury of flexor musc/fasc/tend at forarm lv, left arm|Unsp injury of flexor musc/fasc/tend at forarm lv, left arm +C2847958|T037|HT|S56.202|ICD10CM|Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm|Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm +C2847959|T037|AB|S56.202A|ICD10CM|Unsp inj flexor musc/fasc/tend at forarm lv, left arm, init|Unsp inj flexor musc/fasc/tend at forarm lv, left arm, init +C2847960|T037|AB|S56.202D|ICD10CM|Unsp inj flexor musc/fasc/tend at forarm lv, left arm, subs|Unsp inj flexor musc/fasc/tend at forarm lv, left arm, subs +C2847961|T037|AB|S56.202S|ICD10CM|Unsp inj flexor musc/fasc/tend at forarm lv, left arm, sqla|Unsp inj flexor musc/fasc/tend at forarm lv, left arm, sqla +C2847961|T037|PT|S56.202S|ICD10CM|Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm, sequela|Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm, sequela +C2847962|T037|AB|S56.209|ICD10CM|Unsp injury of flexor musc/fasc/tend at forarm lv, unsp arm|Unsp injury of flexor musc/fasc/tend at forarm lv, unsp arm +C2847962|T037|HT|S56.209|ICD10CM|Unspecified injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm|Unspecified injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm +C2847963|T037|AB|S56.209A|ICD10CM|Unsp inj flexor musc/fasc/tend at forarm lv, unsp arm, init|Unsp inj flexor musc/fasc/tend at forarm lv, unsp arm, init +C2847964|T037|AB|S56.209D|ICD10CM|Unsp inj flexor musc/fasc/tend at forarm lv, unsp arm, subs|Unsp inj flexor musc/fasc/tend at forarm lv, unsp arm, subs +C2847965|T037|AB|S56.209S|ICD10CM|Unsp inj flexor musc/fasc/tend at forarm lv, unsp arm, sqla|Unsp inj flexor musc/fasc/tend at forarm lv, unsp arm, sqla +C3510590|T037|AB|S56.21|ICD10CM|Strain of flexor muscle, fascia and tendon at forearm level|Strain of flexor muscle, fascia and tendon at forearm level +C3510590|T037|HT|S56.21|ICD10CM|Strain of other flexor muscle, fascia and tendon at forearm level|Strain of other flexor muscle, fascia and tendon at forearm level +C2847967|T037|AB|S56.211|ICD10CM|Strain of flexor musc/fasc/tend at forearm level, right arm|Strain of flexor musc/fasc/tend at forearm level, right arm +C2847967|T037|HT|S56.211|ICD10CM|Strain of other flexor muscle, fascia and tendon at forearm level, right arm|Strain of other flexor muscle, fascia and tendon at forearm level, right arm +C2847968|T037|AB|S56.211A|ICD10CM|Strain flexor musc/fasc/tend at forarm lv, right arm, init|Strain flexor musc/fasc/tend at forarm lv, right arm, init +C2847968|T037|PT|S56.211A|ICD10CM|Strain of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter|Strain of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter +C2847969|T037|AB|S56.211D|ICD10CM|Strain flexor musc/fasc/tend at forarm lv, right arm, subs|Strain flexor musc/fasc/tend at forarm lv, right arm, subs +C2847969|T037|PT|S56.211D|ICD10CM|Strain of other flexor muscle, fascia and tendon at forearm level, right arm, subsequent encounter|Strain of other flexor muscle, fascia and tendon at forearm level, right arm, subsequent encounter +C2847970|T037|AB|S56.211S|ICD10CM|Strain flexor musc/fasc/tend at forarm lv, right arm, sqla|Strain flexor musc/fasc/tend at forarm lv, right arm, sqla +C2847970|T037|PT|S56.211S|ICD10CM|Strain of other flexor muscle, fascia and tendon at forearm level, right arm, sequela|Strain of other flexor muscle, fascia and tendon at forearm level, right arm, sequela +C2847971|T037|AB|S56.212|ICD10CM|Strain of flexor musc/fasc/tend at forearm level, left arm|Strain of flexor musc/fasc/tend at forearm level, left arm +C2847971|T037|HT|S56.212|ICD10CM|Strain of other flexor muscle, fascia and tendon at forearm level, left arm|Strain of other flexor muscle, fascia and tendon at forearm level, left arm +C2847972|T037|AB|S56.212A|ICD10CM|Strain of flexor musc/fasc/tend at forarm lv, left arm, init|Strain of flexor musc/fasc/tend at forarm lv, left arm, init +C2847972|T037|PT|S56.212A|ICD10CM|Strain of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter|Strain of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter +C2847973|T037|AB|S56.212D|ICD10CM|Strain of flexor musc/fasc/tend at forarm lv, left arm, subs|Strain of flexor musc/fasc/tend at forarm lv, left arm, subs +C2847973|T037|PT|S56.212D|ICD10CM|Strain of other flexor muscle, fascia and tendon at forearm level, left arm, subsequent encounter|Strain of other flexor muscle, fascia and tendon at forearm level, left arm, subsequent encounter +C2847974|T037|AB|S56.212S|ICD10CM|Strain flexor musc/fasc/tend at forarm lv, left arm, sequela|Strain flexor musc/fasc/tend at forarm lv, left arm, sequela +C2847974|T037|PT|S56.212S|ICD10CM|Strain of other flexor muscle, fascia and tendon at forearm level, left arm, sequela|Strain of other flexor muscle, fascia and tendon at forearm level, left arm, sequela +C2847975|T037|AB|S56.219|ICD10CM|Strain of flexor musc/fasc/tend at forearm level, unsp arm|Strain of flexor musc/fasc/tend at forearm level, unsp arm +C2847975|T037|HT|S56.219|ICD10CM|Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm|Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm +C2847976|T037|AB|S56.219A|ICD10CM|Strain of flexor musc/fasc/tend at forarm lv, unsp arm, init|Strain of flexor musc/fasc/tend at forarm lv, unsp arm, init +C2847977|T037|AB|S56.219D|ICD10CM|Strain of flexor musc/fasc/tend at forarm lv, unsp arm, subs|Strain of flexor musc/fasc/tend at forarm lv, unsp arm, subs +C2847978|T037|AB|S56.219S|ICD10CM|Strain flexor musc/fasc/tend at forarm lv, unsp arm, sequela|Strain flexor musc/fasc/tend at forarm lv, unsp arm, sequela +C2847978|T037|PT|S56.219S|ICD10CM|Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela|Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela +C2847979|T037|AB|S56.22|ICD10CM|Laceration of flexor musc/fasc/tend at forearm level|Laceration of flexor musc/fasc/tend at forearm level +C2847979|T037|HT|S56.22|ICD10CM|Laceration of other flexor muscle, fascia and tendon at forearm level|Laceration of other flexor muscle, fascia and tendon at forearm level +C2847980|T037|AB|S56.221|ICD10CM|Laceration of flexor musc/fasc/tend at forarm lv, right arm|Laceration of flexor musc/fasc/tend at forarm lv, right arm +C2847980|T037|HT|S56.221|ICD10CM|Laceration of other flexor muscle, fascia and tendon at forearm level, right arm|Laceration of other flexor muscle, fascia and tendon at forearm level, right arm +C2847981|T037|AB|S56.221A|ICD10CM|Lacerat flexor musc/fasc/tend at forarm lv, right arm, init|Lacerat flexor musc/fasc/tend at forarm lv, right arm, init +C2847981|T037|PT|S56.221A|ICD10CM|Laceration of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter|Laceration of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter +C2847982|T037|AB|S56.221D|ICD10CM|Lacerat flexor musc/fasc/tend at forarm lv, right arm, subs|Lacerat flexor musc/fasc/tend at forarm lv, right arm, subs +C2847983|T037|AB|S56.221S|ICD10CM|Lacerat flexor musc/fasc/tend at forarm lv, right arm, sqla|Lacerat flexor musc/fasc/tend at forarm lv, right arm, sqla +C2847983|T037|PT|S56.221S|ICD10CM|Laceration of other flexor muscle, fascia and tendon at forearm level, right arm, sequela|Laceration of other flexor muscle, fascia and tendon at forearm level, right arm, sequela +C2847984|T037|AB|S56.222|ICD10CM|Laceration of flexor musc/fasc/tend at forarm lv, left arm|Laceration of flexor musc/fasc/tend at forarm lv, left arm +C2847984|T037|HT|S56.222|ICD10CM|Laceration of other flexor muscle, fascia and tendon at forearm level, left arm|Laceration of other flexor muscle, fascia and tendon at forearm level, left arm +C2847985|T037|AB|S56.222A|ICD10CM|Lacerat flexor musc/fasc/tend at forarm lv, left arm, init|Lacerat flexor musc/fasc/tend at forarm lv, left arm, init +C2847985|T037|PT|S56.222A|ICD10CM|Laceration of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter|Laceration of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter +C2847986|T037|AB|S56.222D|ICD10CM|Lacerat flexor musc/fasc/tend at forarm lv, left arm, subs|Lacerat flexor musc/fasc/tend at forarm lv, left arm, subs +C2847987|T037|AB|S56.222S|ICD10CM|Lacerat flexor musc/fasc/tend at forarm lv, left arm, sqla|Lacerat flexor musc/fasc/tend at forarm lv, left arm, sqla +C2847987|T037|PT|S56.222S|ICD10CM|Laceration of other flexor muscle, fascia and tendon at forearm level, left arm, sequela|Laceration of other flexor muscle, fascia and tendon at forearm level, left arm, sequela +C2847988|T037|AB|S56.229|ICD10CM|Laceration of flexor musc/fasc/tend at forarm lv, unsp arm|Laceration of flexor musc/fasc/tend at forarm lv, unsp arm +C2847988|T037|HT|S56.229|ICD10CM|Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm|Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm +C2847989|T037|AB|S56.229A|ICD10CM|Lacerat flexor musc/fasc/tend at forarm lv, unsp arm, init|Lacerat flexor musc/fasc/tend at forarm lv, unsp arm, init +C2847990|T037|AB|S56.229D|ICD10CM|Lacerat flexor musc/fasc/tend at forarm lv, unsp arm, subs|Lacerat flexor musc/fasc/tend at forarm lv, unsp arm, subs +C2847991|T037|AB|S56.229S|ICD10CM|Lacerat flexor musc/fasc/tend at forarm lv, unsp arm, sqla|Lacerat flexor musc/fasc/tend at forarm lv, unsp arm, sqla +C2847991|T037|PT|S56.229S|ICD10CM|Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela|Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela +C2847992|T037|AB|S56.29|ICD10CM|Inj oth flexor muscle, fascia and tendon at forearm level|Inj oth flexor muscle, fascia and tendon at forearm level +C2847992|T037|HT|S56.29|ICD10CM|Other injury of other flexor muscle, fascia and tendon at forearm level|Other injury of other flexor muscle, fascia and tendon at forearm level +C2847993|T037|AB|S56.291|ICD10CM|Inj oth flexor musc/fasc/tend at forearm level, right arm|Inj oth flexor musc/fasc/tend at forearm level, right arm +C2847993|T037|HT|S56.291|ICD10CM|Other injury of other flexor muscle, fascia and tendon at forearm level, right arm|Other injury of other flexor muscle, fascia and tendon at forearm level, right arm +C2847994|T037|AB|S56.291A|ICD10CM|Inj oth flexor musc/fasc/tend at forarm lv, right arm, init|Inj oth flexor musc/fasc/tend at forarm lv, right arm, init +C2847995|T037|AB|S56.291D|ICD10CM|Inj oth flexor musc/fasc/tend at forarm lv, right arm, subs|Inj oth flexor musc/fasc/tend at forarm lv, right arm, subs +C2847996|T037|AB|S56.291S|ICD10CM|Inj oth flexor musc/fasc/tend at forarm lv, right arm, sqla|Inj oth flexor musc/fasc/tend at forarm lv, right arm, sqla +C2847996|T037|PT|S56.291S|ICD10CM|Other injury of other flexor muscle, fascia and tendon at forearm level, right arm, sequela|Other injury of other flexor muscle, fascia and tendon at forearm level, right arm, sequela +C2847997|T037|AB|S56.292|ICD10CM|Inj oth flexor musc/fasc/tend at forearm level, left arm|Inj oth flexor musc/fasc/tend at forearm level, left arm +C2847997|T037|HT|S56.292|ICD10CM|Other injury of other flexor muscle, fascia and tendon at forearm level, left arm|Other injury of other flexor muscle, fascia and tendon at forearm level, left arm +C2847998|T037|AB|S56.292A|ICD10CM|Inj oth flexor musc/fasc/tend at forarm lv, left arm, init|Inj oth flexor musc/fasc/tend at forarm lv, left arm, init +C2847998|T037|PT|S56.292A|ICD10CM|Other injury of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter|Other injury of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter +C2847999|T037|AB|S56.292D|ICD10CM|Inj oth flexor musc/fasc/tend at forarm lv, left arm, subs|Inj oth flexor musc/fasc/tend at forarm lv, left arm, subs +C2848000|T037|AB|S56.292S|ICD10CM|Inj oth flexor musc/fasc/tend at forarm lv, left arm, sqla|Inj oth flexor musc/fasc/tend at forarm lv, left arm, sqla +C2848000|T037|PT|S56.292S|ICD10CM|Other injury of other flexor muscle, fascia and tendon at forearm level, left arm, sequela|Other injury of other flexor muscle, fascia and tendon at forearm level, left arm, sequela +C2848001|T037|AB|S56.299|ICD10CM|Inj oth flexor musc/fasc/tend at forearm level, unsp arm|Inj oth flexor musc/fasc/tend at forearm level, unsp arm +C2848001|T037|HT|S56.299|ICD10CM|Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm|Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm +C2848002|T037|AB|S56.299A|ICD10CM|Inj oth flexor musc/fasc/tend at forarm lv, unsp arm, init|Inj oth flexor musc/fasc/tend at forarm lv, unsp arm, init +C2848003|T037|AB|S56.299D|ICD10CM|Inj oth flexor musc/fasc/tend at forarm lv, unsp arm, subs|Inj oth flexor musc/fasc/tend at forarm lv, unsp arm, subs +C2848004|T037|AB|S56.299S|ICD10CM|Inj oth flexor musc/fasc/tend at forarm lv, unsp arm, sqla|Inj oth flexor musc/fasc/tend at forarm lv, unsp arm, sqla +C2848004|T037|PT|S56.299S|ICD10CM|Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela|Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela +C0451855|T037|PT|S56.3|ICD10|Injury of extensor or abductor muscles and tendons of thumb at forearm level|Injury of extensor or abductor muscles and tendons of thumb at forearm level +C2848005|T037|HT|S56.3|ICD10CM|Injury of extensor or abductor muscles, fascia and tendons of thumb at forearm level|Injury of extensor or abductor muscles, fascia and tendons of thumb at forearm level +C2848005|T037|AB|S56.3|ICD10CM|Injury of extn/abdr musc/fasc/tend of thumb at forearm level|Injury of extn/abdr musc/fasc/tend of thumb at forearm level +C2848006|T037|AB|S56.30|ICD10CM|Unsp inj extn/abdr musc/fasc/tend of thumb at forarm lv|Unsp inj extn/abdr musc/fasc/tend of thumb at forarm lv +C2848006|T037|HT|S56.30|ICD10CM|Unspecified injury of extensor or abductor muscles, fascia and tendons of thumb at forearm level|Unspecified injury of extensor or abductor muscles, fascia and tendons of thumb at forearm level +C2848007|T037|AB|S56.301|ICD10CM|Unsp inj extn/abdr musc/fasc/tend of r thm at forarm lv|Unsp inj extn/abdr musc/fasc/tend of r thm at forarm lv +C2848008|T037|AB|S56.301A|ICD10CM|Unsp inj extn/abdr musc/fasc/tend of r thm at forarm lv,init|Unsp inj extn/abdr musc/fasc/tend of r thm at forarm lv,init +C2848009|T037|AB|S56.301D|ICD10CM|Unsp inj extn/abdr musc/fasc/tend of r thm at forarm lv,subs|Unsp inj extn/abdr musc/fasc/tend of r thm at forarm lv,subs +C2848010|T037|AB|S56.301S|ICD10CM|Unsp inj extn/abdr musc/fasc/tend of r thm at forarm lv,sqla|Unsp inj extn/abdr musc/fasc/tend of r thm at forarm lv,sqla +C2848011|T037|AB|S56.302|ICD10CM|Unsp inj extn/abdr musc/fasc/tend of l thm at forarm lv|Unsp inj extn/abdr musc/fasc/tend of l thm at forarm lv +C2848012|T037|AB|S56.302A|ICD10CM|Unsp inj extn/abdr musc/fasc/tend of l thm at forarm lv,init|Unsp inj extn/abdr musc/fasc/tend of l thm at forarm lv,init +C2848013|T037|AB|S56.302D|ICD10CM|Unsp inj extn/abdr musc/fasc/tend of l thm at forarm lv,subs|Unsp inj extn/abdr musc/fasc/tend of l thm at forarm lv,subs +C2848014|T037|AB|S56.302S|ICD10CM|Unsp inj extn/abdr musc/fasc/tend of l thm at forarm lv,sqla|Unsp inj extn/abdr musc/fasc/tend of l thm at forarm lv,sqla +C2848015|T037|AB|S56.309|ICD10CM|Unsp injury of extn/abdr musc/fasc/tend of thmb at forarm lv|Unsp injury of extn/abdr musc/fasc/tend of thmb at forarm lv +C2848016|T037|AB|S56.309A|ICD10CM|Unsp inj extn/abdr musc/fasc/tend of thmb at forarm lv, init|Unsp inj extn/abdr musc/fasc/tend of thmb at forarm lv, init +C2848017|T037|AB|S56.309D|ICD10CM|Unsp inj extn/abdr musc/fasc/tend of thmb at forarm lv, subs|Unsp inj extn/abdr musc/fasc/tend of thmb at forarm lv, subs +C2848018|T037|AB|S56.309S|ICD10CM|Unsp inj extn/abdr musc/fasc/tend of thmb at forarm lv, sqla|Unsp inj extn/abdr musc/fasc/tend of thmb at forarm lv, sqla +C2848019|T037|HT|S56.31|ICD10CM|Strain of extensor or abductor muscles, fascia and tendons of thumb at forearm level|Strain of extensor or abductor muscles, fascia and tendons of thumb at forearm level +C2848019|T037|AB|S56.31|ICD10CM|Strain of extn/abdr musc/fasc/tend of thumb at forearm level|Strain of extn/abdr musc/fasc/tend of thumb at forearm level +C2848020|T037|HT|S56.311|ICD10CM|Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level|Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level +C2848020|T037|AB|S56.311|ICD10CM|Strain of extn/abdr musc/fasc/tend of r thm at forarm lv|Strain of extn/abdr musc/fasc/tend of r thm at forarm lv +C2848021|T037|AB|S56.311A|ICD10CM|Strain extn/abdr musc/fasc/tend of r thm at forarm lv, init|Strain extn/abdr musc/fasc/tend of r thm at forarm lv, init +C2848022|T037|AB|S56.311D|ICD10CM|Strain extn/abdr musc/fasc/tend of r thm at forarm lv, subs|Strain extn/abdr musc/fasc/tend of r thm at forarm lv, subs +C2848023|T037|AB|S56.311S|ICD10CM|Strain extn/abdr musc/fasc/tend of r thm at forarm lv, sqla|Strain extn/abdr musc/fasc/tend of r thm at forarm lv, sqla +C2848023|T037|PT|S56.311S|ICD10CM|Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, sequela|Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, sequela +C2848024|T037|HT|S56.312|ICD10CM|Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level|Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level +C2848024|T037|AB|S56.312|ICD10CM|Strain of extn/abdr musc/fasc/tend of l thm at forarm lv|Strain of extn/abdr musc/fasc/tend of l thm at forarm lv +C2848025|T037|AB|S56.312A|ICD10CM|Strain extn/abdr musc/fasc/tend of l thm at forarm lv, init|Strain extn/abdr musc/fasc/tend of l thm at forarm lv, init +C2848026|T037|AB|S56.312D|ICD10CM|Strain extn/abdr musc/fasc/tend of l thm at forarm lv, subs|Strain extn/abdr musc/fasc/tend of l thm at forarm lv, subs +C2848027|T037|AB|S56.312S|ICD10CM|Strain extn/abdr musc/fasc/tend of l thm at forarm lv, sqla|Strain extn/abdr musc/fasc/tend of l thm at forarm lv, sqla +C2848027|T037|PT|S56.312S|ICD10CM|Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, sequela|Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, sequela +C2848028|T037|HT|S56.319|ICD10CM|Strain of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level|Strain of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level +C2848028|T037|AB|S56.319|ICD10CM|Strain of extn/abdr musc/fasc/tend of thmb at forearm level|Strain of extn/abdr musc/fasc/tend of thmb at forearm level +C2848029|T037|AB|S56.319A|ICD10CM|Strain extn/abdr musc/fasc/tend of thmb at forarm lv, init|Strain extn/abdr musc/fasc/tend of thmb at forarm lv, init +C2848030|T037|AB|S56.319D|ICD10CM|Strain extn/abdr musc/fasc/tend of thmb at forarm lv, subs|Strain extn/abdr musc/fasc/tend of thmb at forarm lv, subs +C2848031|T037|AB|S56.319S|ICD10CM|Strain extn/abdr musc/fasc/tend of thmb at forarm lv, sqla|Strain extn/abdr musc/fasc/tend of thmb at forarm lv, sqla +C2848032|T037|HT|S56.32|ICD10CM|Laceration of extensor or abductor muscles, fascia and tendons of thumb at forearm level|Laceration of extensor or abductor muscles, fascia and tendons of thumb at forearm level +C2848032|T037|AB|S56.32|ICD10CM|Laceration of extn/abdr musc/fasc/tend of thumb at forarm lv|Laceration of extn/abdr musc/fasc/tend of thumb at forarm lv +C2848033|T037|AB|S56.321|ICD10CM|Lacerat extn/abdr musc/fasc/tend of right thumb at forarm lv|Lacerat extn/abdr musc/fasc/tend of right thumb at forarm lv +C2848033|T037|HT|S56.321|ICD10CM|Laceration of extensor or abductor muscles, fascia and tendons of right thumb at forearm level|Laceration of extensor or abductor muscles, fascia and tendons of right thumb at forearm level +C2848034|T037|AB|S56.321A|ICD10CM|Lacerat extn/abdr musc/fasc/tend of r thm at forarm lv, init|Lacerat extn/abdr musc/fasc/tend of r thm at forarm lv, init +C2848035|T037|AB|S56.321D|ICD10CM|Lacerat extn/abdr musc/fasc/tend of r thm at forarm lv, subs|Lacerat extn/abdr musc/fasc/tend of r thm at forarm lv, subs +C2848036|T037|AB|S56.321S|ICD10CM|Lacerat extn/abdr musc/fasc/tend of r thm at forarm lv, sqla|Lacerat extn/abdr musc/fasc/tend of r thm at forarm lv, sqla +C2848037|T037|AB|S56.322|ICD10CM|Lacerat extn/abdr musc/fasc/tend of left thumb at forarm lv|Lacerat extn/abdr musc/fasc/tend of left thumb at forarm lv +C2848037|T037|HT|S56.322|ICD10CM|Laceration of extensor or abductor muscles, fascia and tendons of left thumb at forearm level|Laceration of extensor or abductor muscles, fascia and tendons of left thumb at forearm level +C2848038|T037|AB|S56.322A|ICD10CM|Lacerat extn/abdr musc/fasc/tend of l thm at forarm lv, init|Lacerat extn/abdr musc/fasc/tend of l thm at forarm lv, init +C2848039|T037|AB|S56.322D|ICD10CM|Lacerat extn/abdr musc/fasc/tend of l thm at forarm lv, subs|Lacerat extn/abdr musc/fasc/tend of l thm at forarm lv, subs +C2848040|T037|AB|S56.322S|ICD10CM|Lacerat extn/abdr musc/fasc/tend of l thm at forarm lv, sqla|Lacerat extn/abdr musc/fasc/tend of l thm at forarm lv, sqla +C2848041|T037|HT|S56.329|ICD10CM|Laceration of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level|Laceration of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level +C2848041|T037|AB|S56.329|ICD10CM|Laceration of extn/abdr musc/fasc/tend of thmb at forarm lv|Laceration of extn/abdr musc/fasc/tend of thmb at forarm lv +C2848042|T037|AB|S56.329A|ICD10CM|Lacerat extn/abdr musc/fasc/tend of thmb at forarm lv, init|Lacerat extn/abdr musc/fasc/tend of thmb at forarm lv, init +C2848043|T037|AB|S56.329D|ICD10CM|Lacerat extn/abdr musc/fasc/tend of thmb at forarm lv, subs|Lacerat extn/abdr musc/fasc/tend of thmb at forarm lv, subs +C2848044|T037|AB|S56.329S|ICD10CM|Lacerat extn/abdr musc/fasc/tend of thmb at forarm lv, sqla|Lacerat extn/abdr musc/fasc/tend of thmb at forarm lv, sqla +C2848045|T037|AB|S56.39|ICD10CM|Inj extn/abdr musc/fasc/tend of thumb at forearm level|Inj extn/abdr musc/fasc/tend of thumb at forearm level +C2848045|T037|HT|S56.39|ICD10CM|Other injury of extensor or abductor muscles, fascia and tendons of thumb at forearm level|Other injury of extensor or abductor muscles, fascia and tendons of thumb at forearm level +C2848046|T037|AB|S56.391|ICD10CM|Inj extn/abdr musc/fasc/tend of right thumb at forearm level|Inj extn/abdr musc/fasc/tend of right thumb at forearm level +C2848046|T037|HT|S56.391|ICD10CM|Other injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level|Other injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level +C2848047|T037|AB|S56.391A|ICD10CM|Inj extn/abdr musc/fasc/tend of r thm at forarm lv, init|Inj extn/abdr musc/fasc/tend of r thm at forarm lv, init +C2848048|T037|AB|S56.391D|ICD10CM|Inj extn/abdr musc/fasc/tend of r thm at forarm lv, subs|Inj extn/abdr musc/fasc/tend of r thm at forarm lv, subs +C2848049|T037|AB|S56.391S|ICD10CM|Inj extn/abdr musc/fasc/tend of r thm at forarm lv, sequela|Inj extn/abdr musc/fasc/tend of r thm at forarm lv, sequela +C2848050|T037|AB|S56.392|ICD10CM|Inj extn/abdr musc/fasc/tend of left thumb at forearm level|Inj extn/abdr musc/fasc/tend of left thumb at forearm level +C2848050|T037|HT|S56.392|ICD10CM|Other injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level|Other injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level +C2848051|T037|AB|S56.392A|ICD10CM|Inj extn/abdr musc/fasc/tend of l thm at forarm lv, init|Inj extn/abdr musc/fasc/tend of l thm at forarm lv, init +C2848052|T037|AB|S56.392D|ICD10CM|Inj extn/abdr musc/fasc/tend of l thm at forarm lv, subs|Inj extn/abdr musc/fasc/tend of l thm at forarm lv, subs +C2848053|T037|AB|S56.392S|ICD10CM|Inj extn/abdr musc/fasc/tend of l thm at forarm lv, sequela|Inj extn/abdr musc/fasc/tend of l thm at forarm lv, sequela +C2848054|T037|AB|S56.399|ICD10CM|Inj extn/abdr musc/fasc/tend of thmb at forearm level|Inj extn/abdr musc/fasc/tend of thmb at forearm level +C2848055|T037|AB|S56.399A|ICD10CM|Inj extn/abdr musc/fasc/tend of thmb at forearm level, init|Inj extn/abdr musc/fasc/tend of thmb at forearm level, init +C2848056|T037|AB|S56.399D|ICD10CM|Inj extn/abdr musc/fasc/tend of thmb at forearm level, subs|Inj extn/abdr musc/fasc/tend of thmb at forearm level, subs +C2848057|T037|AB|S56.399S|ICD10CM|Inj extn/abdr musc/fasc/tend of thmb at forarm lv, sequela|Inj extn/abdr musc/fasc/tend of thmb at forarm lv, sequela +C2848058|T037|AB|S56.4|ICD10CM|Inj extensor musc/fasc/tend and unsp finger at forarm lv|Inj extensor musc/fasc/tend and unsp finger at forarm lv +C0478294|T037|PT|S56.4|ICD10|Injury of extensor muscle and tendon of other finger(s) at forearm level|Injury of extensor muscle and tendon of other finger(s) at forearm level +C2848058|T037|HT|S56.4|ICD10CM|Injury of extensor muscle, fascia and tendon of other and unspecified finger at forearm level|Injury of extensor muscle, fascia and tendon of other and unspecified finger at forearm level +C2848059|T037|AB|S56.40|ICD10CM|Unsp inj extn musc/fasc/tend and unsp finger at forarm lv|Unsp inj extn musc/fasc/tend and unsp finger at forarm lv +C2848060|T037|AB|S56.401|ICD10CM|Unsp inj extensor musc/fasc/tend r idx fngr at forarm lv|Unsp inj extensor musc/fasc/tend r idx fngr at forarm lv +C2848060|T037|HT|S56.401|ICD10CM|Unspecified injury of extensor muscle, fascia and tendon of right index finger at forearm level|Unspecified injury of extensor muscle, fascia and tendon of right index finger at forearm level +C2848061|T037|AB|S56.401A|ICD10CM|Unsp inj extn musc/fasc/tend r idx fngr at forarm lv, init|Unsp inj extn musc/fasc/tend r idx fngr at forarm lv, init +C2848062|T037|AB|S56.401D|ICD10CM|Unsp inj extn musc/fasc/tend r idx fngr at forarm lv, subs|Unsp inj extn musc/fasc/tend r idx fngr at forarm lv, subs +C2848063|T037|AB|S56.401S|ICD10CM|Unsp inj extn musc/fasc/tend r idx fngr at forarm lv, sqla|Unsp inj extn musc/fasc/tend r idx fngr at forarm lv, sqla +C2848064|T037|AB|S56.402|ICD10CM|Unsp inj extensor musc/fasc/tend l idx fngr at forarm lv|Unsp inj extensor musc/fasc/tend l idx fngr at forarm lv +C2848064|T037|HT|S56.402|ICD10CM|Unspecified injury of extensor muscle, fascia and tendon of left index finger at forearm level|Unspecified injury of extensor muscle, fascia and tendon of left index finger at forearm level +C2848065|T037|AB|S56.402A|ICD10CM|Unsp inj extn musc/fasc/tend l idx fngr at forarm lv, init|Unsp inj extn musc/fasc/tend l idx fngr at forarm lv, init +C2848066|T037|AB|S56.402D|ICD10CM|Unsp inj extn musc/fasc/tend l idx fngr at forarm lv, subs|Unsp inj extn musc/fasc/tend l idx fngr at forarm lv, subs +C2848067|T037|AB|S56.402S|ICD10CM|Unsp inj extn musc/fasc/tend l idx fngr at forarm lv, sqla|Unsp inj extn musc/fasc/tend l idx fngr at forarm lv, sqla +C2848068|T037|AB|S56.403|ICD10CM|Unsp inj extensor musc/fasc/tend r mid finger at forarm lv|Unsp inj extensor musc/fasc/tend r mid finger at forarm lv +C2848068|T037|HT|S56.403|ICD10CM|Unspecified injury of extensor muscle, fascia and tendon of right middle finger at forearm level|Unspecified injury of extensor muscle, fascia and tendon of right middle finger at forearm level +C2848069|T037|AB|S56.403A|ICD10CM|Unsp inj extn musc/fasc/tend r mid finger at forarm lv, init|Unsp inj extn musc/fasc/tend r mid finger at forarm lv, init +C2848070|T037|AB|S56.403D|ICD10CM|Unsp inj extn musc/fasc/tend r mid finger at forarm lv, subs|Unsp inj extn musc/fasc/tend r mid finger at forarm lv, subs +C2848071|T037|AB|S56.403S|ICD10CM|Unsp inj extn musc/fasc/tend r mid finger at forarm lv, sqla|Unsp inj extn musc/fasc/tend r mid finger at forarm lv, sqla +C2848072|T037|AB|S56.404|ICD10CM|Unsp inj extensor musc/fasc/tend l mid finger at forarm lv|Unsp inj extensor musc/fasc/tend l mid finger at forarm lv +C2848072|T037|HT|S56.404|ICD10CM|Unspecified injury of extensor muscle, fascia and tendon of left middle finger at forearm level|Unspecified injury of extensor muscle, fascia and tendon of left middle finger at forearm level +C2848073|T037|AB|S56.404A|ICD10CM|Unsp inj extn musc/fasc/tend l mid finger at forarm lv, init|Unsp inj extn musc/fasc/tend l mid finger at forarm lv, init +C2848074|T037|AB|S56.404D|ICD10CM|Unsp inj extn musc/fasc/tend l mid finger at forarm lv, subs|Unsp inj extn musc/fasc/tend l mid finger at forarm lv, subs +C2848075|T037|AB|S56.404S|ICD10CM|Unsp inj extn musc/fasc/tend l mid finger at forarm lv, sqla|Unsp inj extn musc/fasc/tend l mid finger at forarm lv, sqla +C2848076|T037|AB|S56.405|ICD10CM|Unsp inj extensor musc/fasc/tend r rng fngr at forarm lv|Unsp inj extensor musc/fasc/tend r rng fngr at forarm lv +C2848076|T037|HT|S56.405|ICD10CM|Unspecified injury of extensor muscle, fascia and tendon of right ring finger at forearm level|Unspecified injury of extensor muscle, fascia and tendon of right ring finger at forearm level +C2848077|T037|AB|S56.405A|ICD10CM|Unsp inj extn musc/fasc/tend r rng fngr at forarm lv, init|Unsp inj extn musc/fasc/tend r rng fngr at forarm lv, init +C2848078|T037|AB|S56.405D|ICD10CM|Unsp inj extn musc/fasc/tend r rng fngr at forarm lv, subs|Unsp inj extn musc/fasc/tend r rng fngr at forarm lv, subs +C2848079|T037|AB|S56.405S|ICD10CM|Unsp inj extn musc/fasc/tend r rng fngr at forarm lv, sqla|Unsp inj extn musc/fasc/tend r rng fngr at forarm lv, sqla +C2848080|T037|AB|S56.406|ICD10CM|Unsp inj extensor musc/fasc/tend l rng fngr at forarm lv|Unsp inj extensor musc/fasc/tend l rng fngr at forarm lv +C2848080|T037|HT|S56.406|ICD10CM|Unspecified injury of extensor muscle, fascia and tendon of left ring finger at forearm level|Unspecified injury of extensor muscle, fascia and tendon of left ring finger at forearm level +C2848081|T037|AB|S56.406A|ICD10CM|Unsp inj extn musc/fasc/tend l rng fngr at forarm lv, init|Unsp inj extn musc/fasc/tend l rng fngr at forarm lv, init +C2848082|T037|AB|S56.406D|ICD10CM|Unsp inj extn musc/fasc/tend l rng fngr at forarm lv, subs|Unsp inj extn musc/fasc/tend l rng fngr at forarm lv, subs +C2848083|T037|AB|S56.406S|ICD10CM|Unsp inj extn musc/fasc/tend l rng fngr at forarm lv, sqla|Unsp inj extn musc/fasc/tend l rng fngr at forarm lv, sqla +C2848084|T037|AB|S56.407|ICD10CM|Unsp inj extn musc/fasc/tend r little finger at forarm lv|Unsp inj extn musc/fasc/tend r little finger at forarm lv +C2848084|T037|HT|S56.407|ICD10CM|Unspecified injury of extensor muscle, fascia and tendon of right little finger at forearm level|Unspecified injury of extensor muscle, fascia and tendon of right little finger at forearm level +C2848085|T037|AB|S56.407A|ICD10CM|Unsp inj extn musc/fasc/tend r lit fngr at forarm lv, init|Unsp inj extn musc/fasc/tend r lit fngr at forarm lv, init +C2848086|T037|AB|S56.407D|ICD10CM|Unsp inj extn musc/fasc/tend r lit fngr at forarm lv, subs|Unsp inj extn musc/fasc/tend r lit fngr at forarm lv, subs +C2848087|T037|AB|S56.407S|ICD10CM|Unsp inj extn musc/fasc/tend r lit fngr at forarm lv, sqla|Unsp inj extn musc/fasc/tend r lit fngr at forarm lv, sqla +C2848088|T037|AB|S56.408|ICD10CM|Unsp inj extn musc/fasc/tend l little finger at forarm lv|Unsp inj extn musc/fasc/tend l little finger at forarm lv +C2848088|T037|HT|S56.408|ICD10CM|Unspecified injury of extensor muscle, fascia and tendon of left little finger at forearm level|Unspecified injury of extensor muscle, fascia and tendon of left little finger at forearm level +C2848089|T037|AB|S56.408A|ICD10CM|Unsp inj extn musc/fasc/tend l lit fngr at forarm lv, init|Unsp inj extn musc/fasc/tend l lit fngr at forarm lv, init +C2848090|T037|AB|S56.408D|ICD10CM|Unsp inj extn musc/fasc/tend l lit fngr at forarm lv, subs|Unsp inj extn musc/fasc/tend l lit fngr at forarm lv, subs +C2848091|T037|AB|S56.408S|ICD10CM|Unsp inj extn musc/fasc/tend l lit fngr at forarm lv, sqla|Unsp inj extn musc/fasc/tend l lit fngr at forarm lv, sqla +C2848092|T037|AB|S56.409|ICD10CM|Unsp inj extensor musc/fasc/tend unsp finger at forarm lv|Unsp inj extensor musc/fasc/tend unsp finger at forarm lv +C2848092|T037|HT|S56.409|ICD10CM|Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at forearm level|Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at forearm level +C2848093|T037|AB|S56.409A|ICD10CM|Unsp inj extn musc/fasc/tend unsp finger at forarm lv, init|Unsp inj extn musc/fasc/tend unsp finger at forarm lv, init +C2848094|T037|AB|S56.409D|ICD10CM|Unsp inj extn musc/fasc/tend unsp finger at forarm lv, subs|Unsp inj extn musc/fasc/tend unsp finger at forarm lv, subs +C2848095|T037|AB|S56.409S|ICD10CM|Unsp inj extn musc/fasc/tend unsp finger at forarm lv, sqla|Unsp inj extn musc/fasc/tend unsp finger at forarm lv, sqla +C2848096|T037|AB|S56.41|ICD10CM|Strain extensor musc/fasc/tend and unsp finger at forarm lv|Strain extensor musc/fasc/tend and unsp finger at forarm lv +C2848096|T037|HT|S56.41|ICD10CM|Strain of extensor muscle, fascia and tendon of other and unspecified finger at forearm level|Strain of extensor muscle, fascia and tendon of other and unspecified finger at forearm level +C2848097|T037|AB|S56.411|ICD10CM|Strain of extensor musc/fasc/tend r idx fngr at forarm lv|Strain of extensor musc/fasc/tend r idx fngr at forarm lv +C2848097|T037|HT|S56.411|ICD10CM|Strain of extensor muscle, fascia and tendon of right index finger at forearm level|Strain of extensor muscle, fascia and tendon of right index finger at forearm level +C2848098|T037|AB|S56.411A|ICD10CM|Strain extensor musc/fasc/tend r idx fngr at forarm lv, init|Strain extensor musc/fasc/tend r idx fngr at forarm lv, init +C2848099|T037|AB|S56.411D|ICD10CM|Strain extensor musc/fasc/tend r idx fngr at forarm lv, subs|Strain extensor musc/fasc/tend r idx fngr at forarm lv, subs +C2848100|T037|AB|S56.411S|ICD10CM|Strain extn musc/fasc/tend r idx fngr at forarm lv, sequela|Strain extn musc/fasc/tend r idx fngr at forarm lv, sequela +C2848100|T037|PT|S56.411S|ICD10CM|Strain of extensor muscle, fascia and tendon of right index finger at forearm level, sequela|Strain of extensor muscle, fascia and tendon of right index finger at forearm level, sequela +C2848101|T037|AB|S56.412|ICD10CM|Strain of extensor musc/fasc/tend l idx fngr at forarm lv|Strain of extensor musc/fasc/tend l idx fngr at forarm lv +C2848101|T037|HT|S56.412|ICD10CM|Strain of extensor muscle, fascia and tendon of left index finger at forearm level|Strain of extensor muscle, fascia and tendon of left index finger at forearm level +C2848102|T037|AB|S56.412A|ICD10CM|Strain extensor musc/fasc/tend l idx fngr at forarm lv, init|Strain extensor musc/fasc/tend l idx fngr at forarm lv, init +C2848103|T037|AB|S56.412D|ICD10CM|Strain extensor musc/fasc/tend l idx fngr at forarm lv, subs|Strain extensor musc/fasc/tend l idx fngr at forarm lv, subs +C2848104|T037|AB|S56.412S|ICD10CM|Strain extn musc/fasc/tend l idx fngr at forarm lv, sequela|Strain extn musc/fasc/tend l idx fngr at forarm lv, sequela +C2848104|T037|PT|S56.412S|ICD10CM|Strain of extensor muscle, fascia and tendon of left index finger at forearm level, sequela|Strain of extensor muscle, fascia and tendon of left index finger at forearm level, sequela +C2848105|T037|AB|S56.413|ICD10CM|Strain of extensor musc/fasc/tend r mid finger at forarm lv|Strain of extensor musc/fasc/tend r mid finger at forarm lv +C2848105|T037|HT|S56.413|ICD10CM|Strain of extensor muscle, fascia and tendon of right middle finger at forearm level|Strain of extensor muscle, fascia and tendon of right middle finger at forearm level +C2848106|T037|AB|S56.413A|ICD10CM|Strain extn musc/fasc/tend r mid finger at forarm lv, init|Strain extn musc/fasc/tend r mid finger at forarm lv, init +C2848107|T037|AB|S56.413D|ICD10CM|Strain extn musc/fasc/tend r mid finger at forarm lv, subs|Strain extn musc/fasc/tend r mid finger at forarm lv, subs +C2848108|T037|AB|S56.413S|ICD10CM|Strain extn musc/fasc/tend r mid finger at forarm lv, sqla|Strain extn musc/fasc/tend r mid finger at forarm lv, sqla +C2848108|T037|PT|S56.413S|ICD10CM|Strain of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela|Strain of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela +C2848109|T037|AB|S56.414|ICD10CM|Strain of extensor musc/fasc/tend l mid finger at forarm lv|Strain of extensor musc/fasc/tend l mid finger at forarm lv +C2848109|T037|HT|S56.414|ICD10CM|Strain of extensor muscle, fascia and tendon of left middle finger at forearm level|Strain of extensor muscle, fascia and tendon of left middle finger at forearm level +C2848110|T037|AB|S56.414A|ICD10CM|Strain extn musc/fasc/tend l mid finger at forarm lv, init|Strain extn musc/fasc/tend l mid finger at forarm lv, init +C2848111|T037|AB|S56.414D|ICD10CM|Strain extn musc/fasc/tend l mid finger at forarm lv, subs|Strain extn musc/fasc/tend l mid finger at forarm lv, subs +C2848112|T037|AB|S56.414S|ICD10CM|Strain extn musc/fasc/tend l mid finger at forarm lv, sqla|Strain extn musc/fasc/tend l mid finger at forarm lv, sqla +C2848112|T037|PT|S56.414S|ICD10CM|Strain of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela|Strain of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela +C2848113|T037|AB|S56.415|ICD10CM|Strain of extensor musc/fasc/tend r rng fngr at forarm lv|Strain of extensor musc/fasc/tend r rng fngr at forarm lv +C2848113|T037|HT|S56.415|ICD10CM|Strain of extensor muscle, fascia and tendon of right ring finger at forearm level|Strain of extensor muscle, fascia and tendon of right ring finger at forearm level +C2848114|T037|AB|S56.415A|ICD10CM|Strain extensor musc/fasc/tend r rng fngr at forarm lv, init|Strain extensor musc/fasc/tend r rng fngr at forarm lv, init +C2848115|T037|AB|S56.415D|ICD10CM|Strain extensor musc/fasc/tend r rng fngr at forarm lv, subs|Strain extensor musc/fasc/tend r rng fngr at forarm lv, subs +C2848116|T037|AB|S56.415S|ICD10CM|Strain extn musc/fasc/tend r rng fngr at forarm lv, sequela|Strain extn musc/fasc/tend r rng fngr at forarm lv, sequela +C2848116|T037|PT|S56.415S|ICD10CM|Strain of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela|Strain of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela +C2848117|T037|AB|S56.416|ICD10CM|Strain of extensor musc/fasc/tend l rng fngr at forarm lv|Strain of extensor musc/fasc/tend l rng fngr at forarm lv +C2848117|T037|HT|S56.416|ICD10CM|Strain of extensor muscle, fascia and tendon of left ring finger at forearm level|Strain of extensor muscle, fascia and tendon of left ring finger at forearm level +C2848118|T037|AB|S56.416A|ICD10CM|Strain extensor musc/fasc/tend l rng fngr at forarm lv, init|Strain extensor musc/fasc/tend l rng fngr at forarm lv, init +C2848118|T037|PT|S56.416A|ICD10CM|Strain of extensor muscle, fascia and tendon of left ring finger at forearm level, initial encounter|Strain of extensor muscle, fascia and tendon of left ring finger at forearm level, initial encounter +C2848119|T037|AB|S56.416D|ICD10CM|Strain extensor musc/fasc/tend l rng fngr at forarm lv, subs|Strain extensor musc/fasc/tend l rng fngr at forarm lv, subs +C2848120|T037|AB|S56.416S|ICD10CM|Strain extn musc/fasc/tend l rng fngr at forarm lv, sequela|Strain extn musc/fasc/tend l rng fngr at forarm lv, sequela +C2848120|T037|PT|S56.416S|ICD10CM|Strain of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela|Strain of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela +C2848121|T037|AB|S56.417|ICD10CM|Strain extensor musc/fasc/tend r little finger at forarm lv|Strain extensor musc/fasc/tend r little finger at forarm lv +C2848121|T037|HT|S56.417|ICD10CM|Strain of extensor muscle, fascia and tendon of right little finger at forearm level|Strain of extensor muscle, fascia and tendon of right little finger at forearm level +C2848122|T037|AB|S56.417A|ICD10CM|Strain extn musc/fasc/tend r little fngr at forarm lv, init|Strain extn musc/fasc/tend r little fngr at forarm lv, init +C2848123|T037|AB|S56.417D|ICD10CM|Strain extn musc/fasc/tend r little fngr at forarm lv, subs|Strain extn musc/fasc/tend r little fngr at forarm lv, subs +C2848124|T037|AB|S56.417S|ICD10CM|Strain extn musc/fasc/tend r little fngr at forarm lv, sqla|Strain extn musc/fasc/tend r little fngr at forarm lv, sqla +C2848124|T037|PT|S56.417S|ICD10CM|Strain of extensor muscle, fascia and tendon of right little finger at forearm level, sequela|Strain of extensor muscle, fascia and tendon of right little finger at forearm level, sequela +C2848125|T037|AB|S56.418|ICD10CM|Strain extensor musc/fasc/tend l little finger at forarm lv|Strain extensor musc/fasc/tend l little finger at forarm lv +C2848125|T037|HT|S56.418|ICD10CM|Strain of extensor muscle, fascia and tendon of left little finger at forearm level|Strain of extensor muscle, fascia and tendon of left little finger at forearm level +C2848126|T037|AB|S56.418A|ICD10CM|Strain extn musc/fasc/tend l little fngr at forarm lv, init|Strain extn musc/fasc/tend l little fngr at forarm lv, init +C2848127|T037|AB|S56.418D|ICD10CM|Strain extn musc/fasc/tend l little fngr at forarm lv, subs|Strain extn musc/fasc/tend l little fngr at forarm lv, subs +C2848128|T037|AB|S56.418S|ICD10CM|Strain extn musc/fasc/tend l little fngr at forarm lv, sqla|Strain extn musc/fasc/tend l little fngr at forarm lv, sqla +C2848128|T037|PT|S56.418S|ICD10CM|Strain of extensor muscle, fascia and tendon of left little finger at forearm level, sequela|Strain of extensor muscle, fascia and tendon of left little finger at forearm level, sequela +C2848129|T037|AB|S56.419|ICD10CM|Strain extn musc/fasc/tend finger, unsp finger at forarm lv|Strain extn musc/fasc/tend finger, unsp finger at forarm lv +C2848129|T037|HT|S56.419|ICD10CM|Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level|Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level +C2848130|T037|AB|S56.419A|ICD10CM|Strain extn musc/fasc/tend fngr,unsp fngr at forarm lv, init|Strain extn musc/fasc/tend fngr,unsp fngr at forarm lv, init +C2848131|T037|AB|S56.419D|ICD10CM|Strain extn musc/fasc/tend fngr,unsp fngr at forarm lv, subs|Strain extn musc/fasc/tend fngr,unsp fngr at forarm lv, subs +C2848132|T037|AB|S56.419S|ICD10CM|Strain extn musc/fasc/tend fngr,unsp fngr at forarm lv, sqla|Strain extn musc/fasc/tend fngr,unsp fngr at forarm lv, sqla +C2848132|T037|PT|S56.419S|ICD10CM|Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level, sequela|Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level, sequela +C2848133|T037|AB|S56.42|ICD10CM|Lacerat extensor musc/fasc/tend and unsp finger at forarm lv|Lacerat extensor musc/fasc/tend and unsp finger at forarm lv +C2848133|T037|HT|S56.42|ICD10CM|Laceration of extensor muscle, fascia and tendon of other and unspecified finger at forearm level|Laceration of extensor muscle, fascia and tendon of other and unspecified finger at forearm level +C2848134|T037|AB|S56.421|ICD10CM|Lacerat extensor musc/fasc/tend r idx fngr at forarm lv|Lacerat extensor musc/fasc/tend r idx fngr at forarm lv +C2848134|T037|HT|S56.421|ICD10CM|Laceration of extensor muscle, fascia and tendon of right index finger at forearm level|Laceration of extensor muscle, fascia and tendon of right index finger at forearm level +C2848135|T037|AB|S56.421A|ICD10CM|Lacerat extn musc/fasc/tend r idx fngr at forarm lv, init|Lacerat extn musc/fasc/tend r idx fngr at forarm lv, init +C2848136|T037|AB|S56.421D|ICD10CM|Lacerat extn musc/fasc/tend r idx fngr at forarm lv, subs|Lacerat extn musc/fasc/tend r idx fngr at forarm lv, subs +C2848137|T037|AB|S56.421S|ICD10CM|Lacerat extn musc/fasc/tend r idx fngr at forarm lv, sequela|Lacerat extn musc/fasc/tend r idx fngr at forarm lv, sequela +C2848137|T037|PT|S56.421S|ICD10CM|Laceration of extensor muscle, fascia and tendon of right index finger at forearm level, sequela|Laceration of extensor muscle, fascia and tendon of right index finger at forearm level, sequela +C2848138|T037|AB|S56.422|ICD10CM|Lacerat extensor musc/fasc/tend l idx fngr at forarm lv|Lacerat extensor musc/fasc/tend l idx fngr at forarm lv +C2848138|T037|HT|S56.422|ICD10CM|Laceration of extensor muscle, fascia and tendon of left index finger at forearm level|Laceration of extensor muscle, fascia and tendon of left index finger at forearm level +C2848139|T037|AB|S56.422A|ICD10CM|Lacerat extn musc/fasc/tend l idx fngr at forarm lv, init|Lacerat extn musc/fasc/tend l idx fngr at forarm lv, init +C2848140|T037|AB|S56.422D|ICD10CM|Lacerat extn musc/fasc/tend l idx fngr at forarm lv, subs|Lacerat extn musc/fasc/tend l idx fngr at forarm lv, subs +C2848141|T037|AB|S56.422S|ICD10CM|Lacerat extn musc/fasc/tend l idx fngr at forarm lv, sequela|Lacerat extn musc/fasc/tend l idx fngr at forarm lv, sequela +C2848141|T037|PT|S56.422S|ICD10CM|Laceration of extensor muscle, fascia and tendon of left index finger at forearm level, sequela|Laceration of extensor muscle, fascia and tendon of left index finger at forearm level, sequela +C2848142|T037|AB|S56.423|ICD10CM|Lacerat extensor musc/fasc/tend r mid finger at forarm lv|Lacerat extensor musc/fasc/tend r mid finger at forarm lv +C2848142|T037|HT|S56.423|ICD10CM|Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level|Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level +C2848143|T037|AB|S56.423A|ICD10CM|Lacerat extn musc/fasc/tend r mid finger at forarm lv, init|Lacerat extn musc/fasc/tend r mid finger at forarm lv, init +C2848144|T037|AB|S56.423D|ICD10CM|Lacerat extn musc/fasc/tend r mid finger at forarm lv, subs|Lacerat extn musc/fasc/tend r mid finger at forarm lv, subs +C2848145|T037|AB|S56.423S|ICD10CM|Lacerat extn musc/fasc/tend r mid finger at forarm lv, sqla|Lacerat extn musc/fasc/tend r mid finger at forarm lv, sqla +C2848145|T037|PT|S56.423S|ICD10CM|Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela|Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela +C2848146|T037|AB|S56.424|ICD10CM|Lacerat extensor musc/fasc/tend l mid finger at forarm lv|Lacerat extensor musc/fasc/tend l mid finger at forarm lv +C2848146|T037|HT|S56.424|ICD10CM|Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level|Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level +C2848147|T037|AB|S56.424A|ICD10CM|Lacerat extn musc/fasc/tend l mid finger at forarm lv, init|Lacerat extn musc/fasc/tend l mid finger at forarm lv, init +C2848148|T037|AB|S56.424D|ICD10CM|Lacerat extn musc/fasc/tend l mid finger at forarm lv, subs|Lacerat extn musc/fasc/tend l mid finger at forarm lv, subs +C2848149|T037|AB|S56.424S|ICD10CM|Lacerat extn musc/fasc/tend l mid finger at forarm lv, sqla|Lacerat extn musc/fasc/tend l mid finger at forarm lv, sqla +C2848149|T037|PT|S56.424S|ICD10CM|Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela|Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela +C2848150|T037|AB|S56.425|ICD10CM|Lacerat extensor musc/fasc/tend r rng fngr at forarm lv|Lacerat extensor musc/fasc/tend r rng fngr at forarm lv +C2848150|T037|HT|S56.425|ICD10CM|Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level|Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level +C2848151|T037|AB|S56.425A|ICD10CM|Lacerat extn musc/fasc/tend r rng fngr at forarm lv, init|Lacerat extn musc/fasc/tend r rng fngr at forarm lv, init +C2848152|T037|AB|S56.425D|ICD10CM|Lacerat extn musc/fasc/tend r rng fngr at forarm lv, subs|Lacerat extn musc/fasc/tend r rng fngr at forarm lv, subs +C2848153|T037|AB|S56.425S|ICD10CM|Lacerat extn musc/fasc/tend r rng fngr at forarm lv, sequela|Lacerat extn musc/fasc/tend r rng fngr at forarm lv, sequela +C2848153|T037|PT|S56.425S|ICD10CM|Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela|Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela +C2848154|T037|AB|S56.426|ICD10CM|Lacerat extensor musc/fasc/tend l rng fngr at forarm lv|Lacerat extensor musc/fasc/tend l rng fngr at forarm lv +C2848154|T037|HT|S56.426|ICD10CM|Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level|Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level +C2848155|T037|AB|S56.426A|ICD10CM|Lacerat extn musc/fasc/tend l rng fngr at forarm lv, init|Lacerat extn musc/fasc/tend l rng fngr at forarm lv, init +C2848156|T037|AB|S56.426D|ICD10CM|Lacerat extn musc/fasc/tend l rng fngr at forarm lv, subs|Lacerat extn musc/fasc/tend l rng fngr at forarm lv, subs +C2848157|T037|AB|S56.426S|ICD10CM|Lacerat extn musc/fasc/tend l rng fngr at forarm lv, sequela|Lacerat extn musc/fasc/tend l rng fngr at forarm lv, sequela +C2848157|T037|PT|S56.426S|ICD10CM|Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela|Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela +C2848158|T037|AB|S56.427|ICD10CM|Lacerat extensor musc/fasc/tend r little finger at forarm lv|Lacerat extensor musc/fasc/tend r little finger at forarm lv +C2848158|T037|HT|S56.427|ICD10CM|Laceration of extensor muscle, fascia and tendon of right little finger at forearm level|Laceration of extensor muscle, fascia and tendon of right little finger at forearm level +C2848159|T037|AB|S56.427A|ICD10CM|Lacerat extn musc/fasc/tend r little fngr at forarm lv, init|Lacerat extn musc/fasc/tend r little fngr at forarm lv, init +C2848160|T037|AB|S56.427D|ICD10CM|Lacerat extn musc/fasc/tend r little fngr at forarm lv, subs|Lacerat extn musc/fasc/tend r little fngr at forarm lv, subs +C2848161|T037|AB|S56.427S|ICD10CM|Lacerat extn musc/fasc/tend r little fngr at forarm lv, sqla|Lacerat extn musc/fasc/tend r little fngr at forarm lv, sqla +C2848161|T037|PT|S56.427S|ICD10CM|Laceration of extensor muscle, fascia and tendon of right little finger at forearm level, sequela|Laceration of extensor muscle, fascia and tendon of right little finger at forearm level, sequela +C2848162|T037|AB|S56.428|ICD10CM|Lacerat extensor musc/fasc/tend l little finger at forarm lv|Lacerat extensor musc/fasc/tend l little finger at forarm lv +C2848162|T037|HT|S56.428|ICD10CM|Laceration of extensor muscle, fascia and tendon of left little finger at forearm level|Laceration of extensor muscle, fascia and tendon of left little finger at forearm level +C2848163|T037|AB|S56.428A|ICD10CM|Lacerat extn musc/fasc/tend l little fngr at forarm lv, init|Lacerat extn musc/fasc/tend l little fngr at forarm lv, init +C2848164|T037|AB|S56.428D|ICD10CM|Lacerat extn musc/fasc/tend l little fngr at forarm lv, subs|Lacerat extn musc/fasc/tend l little fngr at forarm lv, subs +C2848165|T037|AB|S56.428S|ICD10CM|Lacerat extn musc/fasc/tend l little fngr at forarm lv, sqla|Lacerat extn musc/fasc/tend l little fngr at forarm lv, sqla +C2848165|T037|PT|S56.428S|ICD10CM|Laceration of extensor muscle, fascia and tendon of left little finger at forearm level, sequela|Laceration of extensor muscle, fascia and tendon of left little finger at forearm level, sequela +C2848133|T037|AB|S56.429|ICD10CM|Lacerat extensor musc/fasc/tend unsp finger at forarm lv|Lacerat extensor musc/fasc/tend unsp finger at forarm lv +C2848133|T037|HT|S56.429|ICD10CM|Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level|Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level +C2848167|T037|AB|S56.429A|ICD10CM|Lacerat extn musc/fasc/tend unsp finger at forarm lv, init|Lacerat extn musc/fasc/tend unsp finger at forarm lv, init +C2848168|T037|AB|S56.429D|ICD10CM|Lacerat extn musc/fasc/tend unsp finger at forarm lv, subs|Lacerat extn musc/fasc/tend unsp finger at forarm lv, subs +C2848169|T037|AB|S56.429S|ICD10CM|Lacerat extn musc/fasc/tend unsp finger at forarm lv, sqla|Lacerat extn musc/fasc/tend unsp finger at forarm lv, sqla +C2848169|T037|PT|S56.429S|ICD10CM|Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level, sequela|Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level, sequela +C2848170|T037|AB|S56.49|ICD10CM|Inj extensor musc/fasc/tend and unsp finger at forearm level|Inj extensor musc/fasc/tend and unsp finger at forearm level +C2848170|T037|HT|S56.49|ICD10CM|Other injury of extensor muscle, fascia and tendon of other and unspecified finger at forearm level|Other injury of extensor muscle, fascia and tendon of other and unspecified finger at forearm level +C2848171|T037|AB|S56.491|ICD10CM|Inj extensor musc/fasc/tend r idx fngr at forearm level|Inj extensor musc/fasc/tend r idx fngr at forearm level +C2848171|T037|HT|S56.491|ICD10CM|Other injury of extensor muscle, fascia and tendon of right index finger at forearm level|Other injury of extensor muscle, fascia and tendon of right index finger at forearm level +C2848172|T037|AB|S56.491A|ICD10CM|Inj extensor musc/fasc/tend r idx fngr at forarm lv, init|Inj extensor musc/fasc/tend r idx fngr at forarm lv, init +C2848173|T037|AB|S56.491D|ICD10CM|Inj extensor musc/fasc/tend r idx fngr at forarm lv, subs|Inj extensor musc/fasc/tend r idx fngr at forarm lv, subs +C2848174|T037|AB|S56.491S|ICD10CM|Inj extensor musc/fasc/tend r idx fngr at forarm lv, sequela|Inj extensor musc/fasc/tend r idx fngr at forarm lv, sequela +C2848174|T037|PT|S56.491S|ICD10CM|Other injury of extensor muscle, fascia and tendon of right index finger at forearm level, sequela|Other injury of extensor muscle, fascia and tendon of right index finger at forearm level, sequela +C2848175|T037|AB|S56.492|ICD10CM|Inj extensor musc/fasc/tend l idx fngr at forearm level|Inj extensor musc/fasc/tend l idx fngr at forearm level +C2848175|T037|HT|S56.492|ICD10CM|Other injury of extensor muscle, fascia and tendon of left index finger at forearm level|Other injury of extensor muscle, fascia and tendon of left index finger at forearm level +C2848176|T037|AB|S56.492A|ICD10CM|Inj extensor musc/fasc/tend l idx fngr at forarm lv, init|Inj extensor musc/fasc/tend l idx fngr at forarm lv, init +C2848177|T037|AB|S56.492D|ICD10CM|Inj extensor musc/fasc/tend l idx fngr at forarm lv, subs|Inj extensor musc/fasc/tend l idx fngr at forarm lv, subs +C2848178|T037|AB|S56.492S|ICD10CM|Inj extensor musc/fasc/tend l idx fngr at forarm lv, sequela|Inj extensor musc/fasc/tend l idx fngr at forarm lv, sequela +C2848178|T037|PT|S56.492S|ICD10CM|Other injury of extensor muscle, fascia and tendon of left index finger at forearm level, sequela|Other injury of extensor muscle, fascia and tendon of left index finger at forearm level, sequela +C2848179|T037|AB|S56.493|ICD10CM|Inj extensor musc/fasc/tend r mid finger at forearm level|Inj extensor musc/fasc/tend r mid finger at forearm level +C2848179|T037|HT|S56.493|ICD10CM|Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level|Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level +C2848180|T037|AB|S56.493A|ICD10CM|Inj extensor musc/fasc/tend r mid finger at forarm lv, init|Inj extensor musc/fasc/tend r mid finger at forarm lv, init +C2848181|T037|AB|S56.493D|ICD10CM|Inj extensor musc/fasc/tend r mid finger at forarm lv, subs|Inj extensor musc/fasc/tend r mid finger at forarm lv, subs +C2848182|T037|AB|S56.493S|ICD10CM|Inj extn musc/fasc/tend r mid finger at forarm lv, sequela|Inj extn musc/fasc/tend r mid finger at forarm lv, sequela +C2848182|T037|PT|S56.493S|ICD10CM|Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela|Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela +C2848183|T037|AB|S56.494|ICD10CM|Inj extensor musc/fasc/tend l mid finger at forearm level|Inj extensor musc/fasc/tend l mid finger at forearm level +C2848183|T037|HT|S56.494|ICD10CM|Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level|Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level +C2848184|T037|AB|S56.494A|ICD10CM|Inj extensor musc/fasc/tend l mid finger at forarm lv, init|Inj extensor musc/fasc/tend l mid finger at forarm lv, init +C2848185|T037|AB|S56.494D|ICD10CM|Inj extensor musc/fasc/tend l mid finger at forarm lv, subs|Inj extensor musc/fasc/tend l mid finger at forarm lv, subs +C2848186|T037|AB|S56.494S|ICD10CM|Inj extn musc/fasc/tend l mid finger at forarm lv, sequela|Inj extn musc/fasc/tend l mid finger at forarm lv, sequela +C2848186|T037|PT|S56.494S|ICD10CM|Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela|Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela +C2848187|T037|AB|S56.495|ICD10CM|Inj extensor musc/fasc/tend r rng fngr at forearm level|Inj extensor musc/fasc/tend r rng fngr at forearm level +C2848187|T037|HT|S56.495|ICD10CM|Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level|Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level +C2848188|T037|AB|S56.495A|ICD10CM|Inj extensor musc/fasc/tend r rng fngr at forarm lv, init|Inj extensor musc/fasc/tend r rng fngr at forarm lv, init +C2848189|T037|AB|S56.495D|ICD10CM|Inj extensor musc/fasc/tend r rng fngr at forarm lv, subs|Inj extensor musc/fasc/tend r rng fngr at forarm lv, subs +C2848190|T037|AB|S56.495S|ICD10CM|Inj extensor musc/fasc/tend r rng fngr at forarm lv, sequela|Inj extensor musc/fasc/tend r rng fngr at forarm lv, sequela +C2848190|T037|PT|S56.495S|ICD10CM|Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela|Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela +C2848191|T037|AB|S56.496|ICD10CM|Inj extensor musc/fasc/tend l rng fngr at forearm level|Inj extensor musc/fasc/tend l rng fngr at forearm level +C2848191|T037|HT|S56.496|ICD10CM|Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level|Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level +C2848192|T037|AB|S56.496A|ICD10CM|Inj extensor musc/fasc/tend l rng fngr at forarm lv, init|Inj extensor musc/fasc/tend l rng fngr at forarm lv, init +C2848193|T037|AB|S56.496D|ICD10CM|Inj extensor musc/fasc/tend l rng fngr at forarm lv, subs|Inj extensor musc/fasc/tend l rng fngr at forarm lv, subs +C2848194|T037|AB|S56.496S|ICD10CM|Inj extensor musc/fasc/tend l rng fngr at forarm lv, sequela|Inj extensor musc/fasc/tend l rng fngr at forarm lv, sequela +C2848194|T037|PT|S56.496S|ICD10CM|Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela|Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela +C2848195|T037|AB|S56.497|ICD10CM|Inj extensor musc/fasc/tend r little finger at forearm level|Inj extensor musc/fasc/tend r little finger at forearm level +C2848195|T037|HT|S56.497|ICD10CM|Other injury of extensor muscle, fascia and tendon of right little finger at forearm level|Other injury of extensor muscle, fascia and tendon of right little finger at forearm level +C2848196|T037|AB|S56.497A|ICD10CM|Inj extn musc/fasc/tend r little finger at forarm lv, init|Inj extn musc/fasc/tend r little finger at forarm lv, init +C2848197|T037|AB|S56.497D|ICD10CM|Inj extn musc/fasc/tend r little finger at forarm lv, subs|Inj extn musc/fasc/tend r little finger at forarm lv, subs +C2848198|T037|AB|S56.497S|ICD10CM|Inj extn musc/fasc/tend r little finger at forarm lv, sqla|Inj extn musc/fasc/tend r little finger at forarm lv, sqla +C2848198|T037|PT|S56.497S|ICD10CM|Other injury of extensor muscle, fascia and tendon of right little finger at forearm level, sequela|Other injury of extensor muscle, fascia and tendon of right little finger at forearm level, sequela +C2848199|T037|AB|S56.498|ICD10CM|Inj extensor musc/fasc/tend l little finger at forearm level|Inj extensor musc/fasc/tend l little finger at forearm level +C2848199|T037|HT|S56.498|ICD10CM|Other injury of extensor muscle, fascia and tendon of left little finger at forearm level|Other injury of extensor muscle, fascia and tendon of left little finger at forearm level +C2848200|T037|AB|S56.498A|ICD10CM|Inj extn musc/fasc/tend l little finger at forarm lv, init|Inj extn musc/fasc/tend l little finger at forarm lv, init +C2848201|T037|AB|S56.498D|ICD10CM|Inj extn musc/fasc/tend l little finger at forarm lv, subs|Inj extn musc/fasc/tend l little finger at forarm lv, subs +C2848202|T037|AB|S56.498S|ICD10CM|Inj extn musc/fasc/tend l little finger at forarm lv, sqla|Inj extn musc/fasc/tend l little finger at forarm lv, sqla +C2848202|T037|PT|S56.498S|ICD10CM|Other injury of extensor muscle, fascia and tendon of left little finger at forearm level, sequela|Other injury of extensor muscle, fascia and tendon of left little finger at forearm level, sequela +C2848203|T037|AB|S56.499|ICD10CM|Inj extensor musc/fasc/tend unsp finger at forearm level|Inj extensor musc/fasc/tend unsp finger at forearm level +C2848203|T037|HT|S56.499|ICD10CM|Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level|Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level +C2848204|T037|AB|S56.499A|ICD10CM|Inj extensor musc/fasc/tend unsp finger at forarm lv, init|Inj extensor musc/fasc/tend unsp finger at forarm lv, init +C2848205|T037|AB|S56.499D|ICD10CM|Inj extensor musc/fasc/tend unsp finger at forarm lv, subs|Inj extensor musc/fasc/tend unsp finger at forarm lv, subs +C2848206|T037|AB|S56.499S|ICD10CM|Inj extn musc/fasc/tend unsp finger at forarm lv, sequela|Inj extn musc/fasc/tend unsp finger at forarm lv, sequela +C2848206|T037|PT|S56.499S|ICD10CM|Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, sequela|Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, sequela +C2848207|T037|AB|S56.5|ICD10CM|Injury of extn musc/fasc/tend at forearm level|Injury of extn musc/fasc/tend at forearm level +C0478295|T037|PT|S56.5|ICD10|Injury of other extensor muscle and tendon at forearm level|Injury of other extensor muscle and tendon at forearm level +C2848207|T037|HT|S56.5|ICD10CM|Injury of other extensor muscle, fascia and tendon at forearm level|Injury of other extensor muscle, fascia and tendon at forearm level +C2848208|T037|AB|S56.50|ICD10CM|Unsp injury of extn musc/fasc/tend at forearm level|Unsp injury of extn musc/fasc/tend at forearm level +C2848208|T037|HT|S56.50|ICD10CM|Unspecified injury of other extensor muscle, fascia and tendon at forearm level|Unspecified injury of other extensor muscle, fascia and tendon at forearm level +C2848209|T037|AB|S56.501|ICD10CM|Unsp injury of extn musc/fasc/tend at forarm lv, right arm|Unsp injury of extn musc/fasc/tend at forarm lv, right arm +C2848209|T037|HT|S56.501|ICD10CM|Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm|Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm +C2848210|T037|AB|S56.501A|ICD10CM|Unsp inj extn musc/fasc/tend at forarm lv, right arm, init|Unsp inj extn musc/fasc/tend at forarm lv, right arm, init +C2848211|T037|AB|S56.501D|ICD10CM|Unsp inj extn musc/fasc/tend at forarm lv, right arm, subs|Unsp inj extn musc/fasc/tend at forarm lv, right arm, subs +C2848212|T037|AB|S56.501S|ICD10CM|Unsp inj extn musc/fasc/tend at forarm lv, right arm, sqla|Unsp inj extn musc/fasc/tend at forarm lv, right arm, sqla +C2848212|T037|PT|S56.501S|ICD10CM|Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm, sequela|Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm, sequela +C2848213|T037|AB|S56.502|ICD10CM|Unsp injury of extn musc/fasc/tend at forarm lv, left arm|Unsp injury of extn musc/fasc/tend at forarm lv, left arm +C2848213|T037|HT|S56.502|ICD10CM|Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm|Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm +C2848214|T037|AB|S56.502A|ICD10CM|Unsp inj extn musc/fasc/tend at forarm lv, left arm, init|Unsp inj extn musc/fasc/tend at forarm lv, left arm, init +C2848215|T037|AB|S56.502D|ICD10CM|Unsp inj extn musc/fasc/tend at forarm lv, left arm, subs|Unsp inj extn musc/fasc/tend at forarm lv, left arm, subs +C2848216|T037|AB|S56.502S|ICD10CM|Unsp inj extn musc/fasc/tend at forarm lv, left arm, sequela|Unsp inj extn musc/fasc/tend at forarm lv, left arm, sequela +C2848216|T037|PT|S56.502S|ICD10CM|Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm, sequela|Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm, sequela +C2848217|T037|AB|S56.509|ICD10CM|Unsp injury of extn musc/fasc/tend at forarm lv, unsp arm|Unsp injury of extn musc/fasc/tend at forarm lv, unsp arm +C2848217|T037|HT|S56.509|ICD10CM|Unspecified injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm|Unspecified injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm +C2848218|T037|AB|S56.509A|ICD10CM|Unsp inj extn musc/fasc/tend at forarm lv, unsp arm, init|Unsp inj extn musc/fasc/tend at forarm lv, unsp arm, init +C2848219|T037|AB|S56.509D|ICD10CM|Unsp inj extn musc/fasc/tend at forarm lv, unsp arm, subs|Unsp inj extn musc/fasc/tend at forarm lv, unsp arm, subs +C2848220|T037|AB|S56.509S|ICD10CM|Unsp inj extn musc/fasc/tend at forarm lv, unsp arm, sequela|Unsp inj extn musc/fasc/tend at forarm lv, unsp arm, sequela +C2848221|T037|AB|S56.51|ICD10CM|Strain of extn musc/fasc/tend at forearm level|Strain of extn musc/fasc/tend at forearm level +C2848221|T037|HT|S56.51|ICD10CM|Strain of other extensor muscle, fascia and tendon at forearm level|Strain of other extensor muscle, fascia and tendon at forearm level +C2848222|T037|AB|S56.511|ICD10CM|Strain of extn musc/fasc/tend at forearm level, right arm|Strain of extn musc/fasc/tend at forearm level, right arm +C2848222|T037|HT|S56.511|ICD10CM|Strain of other extensor muscle, fascia and tendon at forearm level, right arm|Strain of other extensor muscle, fascia and tendon at forearm level, right arm +C2848223|T037|AB|S56.511A|ICD10CM|Strain of extn musc/fasc/tend at forarm lv, right arm, init|Strain of extn musc/fasc/tend at forarm lv, right arm, init +C2848223|T037|PT|S56.511A|ICD10CM|Strain of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter|Strain of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter +C2848224|T037|AB|S56.511D|ICD10CM|Strain of extn musc/fasc/tend at forarm lv, right arm, subs|Strain of extn musc/fasc/tend at forarm lv, right arm, subs +C2848224|T037|PT|S56.511D|ICD10CM|Strain of other extensor muscle, fascia and tendon at forearm level, right arm, subsequent encounter|Strain of other extensor muscle, fascia and tendon at forearm level, right arm, subsequent encounter +C2848225|T037|AB|S56.511S|ICD10CM|Strain extn musc/fasc/tend at forarm lv, right arm, sequela|Strain extn musc/fasc/tend at forarm lv, right arm, sequela +C2848225|T037|PT|S56.511S|ICD10CM|Strain of other extensor muscle, fascia and tendon at forearm level, right arm, sequela|Strain of other extensor muscle, fascia and tendon at forearm level, right arm, sequela +C2848226|T037|AB|S56.512|ICD10CM|Strain of extn musc/fasc/tend at forearm level, left arm|Strain of extn musc/fasc/tend at forearm level, left arm +C2848226|T037|HT|S56.512|ICD10CM|Strain of other extensor muscle, fascia and tendon at forearm level, left arm|Strain of other extensor muscle, fascia and tendon at forearm level, left arm +C2848227|T037|AB|S56.512A|ICD10CM|Strain of extn musc/fasc/tend at forarm lv, left arm, init|Strain of extn musc/fasc/tend at forarm lv, left arm, init +C2848227|T037|PT|S56.512A|ICD10CM|Strain of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter|Strain of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter +C2848228|T037|AB|S56.512D|ICD10CM|Strain of extn musc/fasc/tend at forarm lv, left arm, subs|Strain of extn musc/fasc/tend at forarm lv, left arm, subs +C2848228|T037|PT|S56.512D|ICD10CM|Strain of other extensor muscle, fascia and tendon at forearm level, left arm, subsequent encounter|Strain of other extensor muscle, fascia and tendon at forearm level, left arm, subsequent encounter +C2848229|T037|AB|S56.512S|ICD10CM|Strain extn musc/fasc/tend at forarm lv, left arm, sequela|Strain extn musc/fasc/tend at forarm lv, left arm, sequela +C2848229|T037|PT|S56.512S|ICD10CM|Strain of other extensor muscle, fascia and tendon at forearm level, left arm, sequela|Strain of other extensor muscle, fascia and tendon at forearm level, left arm, sequela +C2848230|T037|AB|S56.519|ICD10CM|Strain of extn musc/fasc/tend at forearm level, unsp arm|Strain of extn musc/fasc/tend at forearm level, unsp arm +C2848230|T037|HT|S56.519|ICD10CM|Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm|Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm +C2848231|T037|AB|S56.519A|ICD10CM|Strain of extn musc/fasc/tend at forarm lv, unsp arm, init|Strain of extn musc/fasc/tend at forarm lv, unsp arm, init +C2848232|T037|AB|S56.519D|ICD10CM|Strain of extn musc/fasc/tend at forarm lv, unsp arm, subs|Strain of extn musc/fasc/tend at forarm lv, unsp arm, subs +C2848233|T037|AB|S56.519S|ICD10CM|Strain extn musc/fasc/tend at forarm lv, unsp arm, sequela|Strain extn musc/fasc/tend at forarm lv, unsp arm, sequela +C2848233|T037|PT|S56.519S|ICD10CM|Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela|Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela +C2848234|T037|AB|S56.52|ICD10CM|Laceration of extn musc/fasc/tend at forearm level|Laceration of extn musc/fasc/tend at forearm level +C2848234|T037|HT|S56.52|ICD10CM|Laceration of other extensor muscle, fascia and tendon at forearm level|Laceration of other extensor muscle, fascia and tendon at forearm level +C2848235|T037|AB|S56.521|ICD10CM|Laceration of extn musc/fasc/tend at forarm lv, right arm|Laceration of extn musc/fasc/tend at forarm lv, right arm +C2848235|T037|HT|S56.521|ICD10CM|Laceration of other extensor muscle, fascia and tendon at forearm level, right arm|Laceration of other extensor muscle, fascia and tendon at forearm level, right arm +C2848236|T037|AB|S56.521A|ICD10CM|Lacerat extn musc/fasc/tend at forarm lv, right arm, init|Lacerat extn musc/fasc/tend at forarm lv, right arm, init +C2848237|T037|AB|S56.521D|ICD10CM|Lacerat extn musc/fasc/tend at forarm lv, right arm, subs|Lacerat extn musc/fasc/tend at forarm lv, right arm, subs +C2848238|T037|AB|S56.521S|ICD10CM|Lacerat extn musc/fasc/tend at forarm lv, right arm, sequela|Lacerat extn musc/fasc/tend at forarm lv, right arm, sequela +C2848238|T037|PT|S56.521S|ICD10CM|Laceration of other extensor muscle, fascia and tendon at forearm level, right arm, sequela|Laceration of other extensor muscle, fascia and tendon at forearm level, right arm, sequela +C2848239|T037|AB|S56.522|ICD10CM|Laceration of extn musc/fasc/tend at forearm level, left arm|Laceration of extn musc/fasc/tend at forearm level, left arm +C2848239|T037|HT|S56.522|ICD10CM|Laceration of other extensor muscle, fascia and tendon at forearm level, left arm|Laceration of other extensor muscle, fascia and tendon at forearm level, left arm +C2848240|T037|AB|S56.522A|ICD10CM|Lacerat extn musc/fasc/tend at forarm lv, left arm, init|Lacerat extn musc/fasc/tend at forarm lv, left arm, init +C2848240|T037|PT|S56.522A|ICD10CM|Laceration of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter|Laceration of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter +C2848241|T037|AB|S56.522D|ICD10CM|Lacerat extn musc/fasc/tend at forarm lv, left arm, subs|Lacerat extn musc/fasc/tend at forarm lv, left arm, subs +C2848242|T037|AB|S56.522S|ICD10CM|Lacerat extn musc/fasc/tend at forarm lv, left arm, sequela|Lacerat extn musc/fasc/tend at forarm lv, left arm, sequela +C2848242|T037|PT|S56.522S|ICD10CM|Laceration of other extensor muscle, fascia and tendon at forearm level, left arm, sequela|Laceration of other extensor muscle, fascia and tendon at forearm level, left arm, sequela +C2848243|T037|AB|S56.529|ICD10CM|Laceration of extn musc/fasc/tend at forearm level, unsp arm|Laceration of extn musc/fasc/tend at forearm level, unsp arm +C2848243|T037|HT|S56.529|ICD10CM|Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm|Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm +C2848244|T037|AB|S56.529A|ICD10CM|Lacerat extn musc/fasc/tend at forarm lv, unsp arm, init|Lacerat extn musc/fasc/tend at forarm lv, unsp arm, init +C2848245|T037|AB|S56.529D|ICD10CM|Lacerat extn musc/fasc/tend at forarm lv, unsp arm, subs|Lacerat extn musc/fasc/tend at forarm lv, unsp arm, subs +C2848246|T037|AB|S56.529S|ICD10CM|Lacerat extn musc/fasc/tend at forarm lv, unsp arm, sequela|Lacerat extn musc/fasc/tend at forarm lv, unsp arm, sequela +C2848246|T037|PT|S56.529S|ICD10CM|Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela|Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela +C2848247|T037|AB|S56.59|ICD10CM|Oth injury of extn musc/fasc/tend at forearm level|Oth injury of extn musc/fasc/tend at forearm level +C2848247|T037|HT|S56.59|ICD10CM|Other injury of other extensor muscle, fascia and tendon at forearm level|Other injury of other extensor muscle, fascia and tendon at forearm level +C2848248|T037|AB|S56.591|ICD10CM|Inj extn musc/fasc/tend at forearm level, right arm|Inj extn musc/fasc/tend at forearm level, right arm +C2848248|T037|HT|S56.591|ICD10CM|Other injury of other extensor muscle, fascia and tendon at forearm level, right arm|Other injury of other extensor muscle, fascia and tendon at forearm level, right arm +C2848249|T037|AB|S56.591A|ICD10CM|Inj extn musc/fasc/tend at forearm level, right arm, init|Inj extn musc/fasc/tend at forearm level, right arm, init +C2848250|T037|AB|S56.591D|ICD10CM|Inj extn musc/fasc/tend at forearm level, right arm, subs|Inj extn musc/fasc/tend at forearm level, right arm, subs +C2848251|T037|AB|S56.591S|ICD10CM|Inj extn musc/fasc/tend at forearm level, right arm, sequela|Inj extn musc/fasc/tend at forearm level, right arm, sequela +C2848251|T037|PT|S56.591S|ICD10CM|Other injury of other extensor muscle, fascia and tendon at forearm level, right arm, sequela|Other injury of other extensor muscle, fascia and tendon at forearm level, right arm, sequela +C2848252|T037|AB|S56.592|ICD10CM|Oth injury of extn musc/fasc/tend at forearm level, left arm|Oth injury of extn musc/fasc/tend at forearm level, left arm +C2848252|T037|HT|S56.592|ICD10CM|Other injury of other extensor muscle, fascia and tendon at forearm level, left arm|Other injury of other extensor muscle, fascia and tendon at forearm level, left arm +C2848253|T037|AB|S56.592A|ICD10CM|Inj extn musc/fasc/tend at forearm level, left arm, init|Inj extn musc/fasc/tend at forearm level, left arm, init +C2848254|T037|AB|S56.592D|ICD10CM|Inj extn musc/fasc/tend at forearm level, left arm, subs|Inj extn musc/fasc/tend at forearm level, left arm, subs +C2848255|T037|AB|S56.592S|ICD10CM|Inj extn musc/fasc/tend at forearm level, left arm, sequela|Inj extn musc/fasc/tend at forearm level, left arm, sequela +C2848255|T037|PT|S56.592S|ICD10CM|Other injury of other extensor muscle, fascia and tendon at forearm level, left arm, sequela|Other injury of other extensor muscle, fascia and tendon at forearm level, left arm, sequela +C2848256|T037|AB|S56.599|ICD10CM|Oth injury of extn musc/fasc/tend at forearm level, unsp arm|Oth injury of extn musc/fasc/tend at forearm level, unsp arm +C2848256|T037|HT|S56.599|ICD10CM|Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm|Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm +C2848257|T037|AB|S56.599A|ICD10CM|Inj extn musc/fasc/tend at forearm level, unsp arm, init|Inj extn musc/fasc/tend at forearm level, unsp arm, init +C2848258|T037|AB|S56.599D|ICD10CM|Inj extn musc/fasc/tend at forearm level, unsp arm, subs|Inj extn musc/fasc/tend at forearm level, unsp arm, subs +C2848259|T037|AB|S56.599S|ICD10CM|Inj extn musc/fasc/tend at forearm level, unsp arm, sequela|Inj extn musc/fasc/tend at forearm level, unsp arm, sequela +C2848259|T037|PT|S56.599S|ICD10CM|Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela|Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela +C0451856|T037|PT|S56.7|ICD10|Injury of multiple muscles and tendons at forearm level|Injury of multiple muscles and tendons at forearm level +C0478296|T037|PT|S56.8|ICD10|Injury of other and unspecified muscles and tendons at forearm level|Injury of other and unspecified muscles and tendons at forearm level +C2848260|T037|AB|S56.8|ICD10CM|Injury of other muscles, fascia and tendons at forearm level|Injury of other muscles, fascia and tendons at forearm level +C2848260|T037|HT|S56.8|ICD10CM|Injury of other muscles, fascia and tendons at forearm level|Injury of other muscles, fascia and tendons at forearm level +C2848261|T037|AB|S56.80|ICD10CM|Unsp injury of musc/fasc/tend at forearm level|Unsp injury of musc/fasc/tend at forearm level +C2848261|T037|HT|S56.80|ICD10CM|Unspecified injury of other muscles, fascia and tendons at forearm level|Unspecified injury of other muscles, fascia and tendons at forearm level +C2848262|T037|AB|S56.801|ICD10CM|Unsp injury of musc/fasc/tend at forearm level, right arm|Unsp injury of musc/fasc/tend at forearm level, right arm +C2848262|T037|HT|S56.801|ICD10CM|Unspecified injury of other muscles, fascia and tendons at forearm level, right arm|Unspecified injury of other muscles, fascia and tendons at forearm level, right arm +C2848263|T037|AB|S56.801A|ICD10CM|Unsp injury of musc/fasc/tend at forarm lv, right arm, init|Unsp injury of musc/fasc/tend at forarm lv, right arm, init +C2848264|T037|AB|S56.801D|ICD10CM|Unsp injury of musc/fasc/tend at forarm lv, right arm, subs|Unsp injury of musc/fasc/tend at forarm lv, right arm, subs +C2848265|T037|AB|S56.801S|ICD10CM|Unsp inj musc/fasc/tend at forarm lv, right arm, sequela|Unsp inj musc/fasc/tend at forarm lv, right arm, sequela +C2848265|T037|PT|S56.801S|ICD10CM|Unspecified injury of other muscles, fascia and tendons at forearm level, right arm, sequela|Unspecified injury of other muscles, fascia and tendons at forearm level, right arm, sequela +C2848266|T037|AB|S56.802|ICD10CM|Unsp injury of musc/fasc/tend at forearm level, left arm|Unsp injury of musc/fasc/tend at forearm level, left arm +C2848266|T037|HT|S56.802|ICD10CM|Unspecified injury of other muscles, fascia and tendons at forearm level, left arm|Unspecified injury of other muscles, fascia and tendons at forearm level, left arm +C2848267|T037|AB|S56.802A|ICD10CM|Unsp injury of musc/fasc/tend at forarm lv, left arm, init|Unsp injury of musc/fasc/tend at forarm lv, left arm, init +C2848268|T037|AB|S56.802D|ICD10CM|Unsp injury of musc/fasc/tend at forarm lv, left arm, subs|Unsp injury of musc/fasc/tend at forarm lv, left arm, subs +C2848269|T037|AB|S56.802S|ICD10CM|Unsp inj musc/fasc/tend at forarm lv, left arm, sequela|Unsp inj musc/fasc/tend at forarm lv, left arm, sequela +C2848269|T037|PT|S56.802S|ICD10CM|Unspecified injury of other muscles, fascia and tendons at forearm level, left arm, sequela|Unspecified injury of other muscles, fascia and tendons at forearm level, left arm, sequela +C2848270|T037|AB|S56.809|ICD10CM|Unsp injury of musc/fasc/tend at forearm level, unsp arm|Unsp injury of musc/fasc/tend at forearm level, unsp arm +C2848270|T037|HT|S56.809|ICD10CM|Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm|Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm +C2848271|T037|AB|S56.809A|ICD10CM|Unsp injury of musc/fasc/tend at forarm lv, unsp arm, init|Unsp injury of musc/fasc/tend at forarm lv, unsp arm, init +C2848272|T037|AB|S56.809D|ICD10CM|Unsp injury of musc/fasc/tend at forarm lv, unsp arm, subs|Unsp injury of musc/fasc/tend at forarm lv, unsp arm, subs +C2848273|T037|AB|S56.809S|ICD10CM|Unsp inj musc/fasc/tend at forarm lv, unsp arm, sequela|Unsp inj musc/fasc/tend at forarm lv, unsp arm, sequela +C2848273|T037|PT|S56.809S|ICD10CM|Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm, sequela|Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm, sequela +C2848274|T037|AB|S56.81|ICD10CM|Strain of other muscles, fascia and tendons at forearm level|Strain of other muscles, fascia and tendons at forearm level +C2848274|T037|HT|S56.81|ICD10CM|Strain of other muscles, fascia and tendons at forearm level|Strain of other muscles, fascia and tendons at forearm level +C2848275|T037|AB|S56.811|ICD10CM|Strain of musc/fasc/tend at forearm level, right arm|Strain of musc/fasc/tend at forearm level, right arm +C2848275|T037|HT|S56.811|ICD10CM|Strain of other muscles, fascia and tendons at forearm level, right arm|Strain of other muscles, fascia and tendons at forearm level, right arm +C2848276|T037|AB|S56.811A|ICD10CM|Strain of musc/fasc/tend at forearm level, right arm, init|Strain of musc/fasc/tend at forearm level, right arm, init +C2848276|T037|PT|S56.811A|ICD10CM|Strain of other muscles, fascia and tendons at forearm level, right arm, initial encounter|Strain of other muscles, fascia and tendons at forearm level, right arm, initial encounter +C2848277|T037|AB|S56.811D|ICD10CM|Strain of musc/fasc/tend at forearm level, right arm, subs|Strain of musc/fasc/tend at forearm level, right arm, subs +C2848277|T037|PT|S56.811D|ICD10CM|Strain of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter|Strain of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter +C2848278|T037|AB|S56.811S|ICD10CM|Strain of musc/fasc/tend at forarm lv, right arm, sequela|Strain of musc/fasc/tend at forarm lv, right arm, sequela +C2848278|T037|PT|S56.811S|ICD10CM|Strain of other muscles, fascia and tendons at forearm level, right arm, sequela|Strain of other muscles, fascia and tendons at forearm level, right arm, sequela +C2848279|T037|AB|S56.812|ICD10CM|Strain of musc/fasc/tend at forearm level, left arm|Strain of musc/fasc/tend at forearm level, left arm +C2848279|T037|HT|S56.812|ICD10CM|Strain of other muscles, fascia and tendons at forearm level, left arm|Strain of other muscles, fascia and tendons at forearm level, left arm +C2848280|T037|AB|S56.812A|ICD10CM|Strain of musc/fasc/tend at forearm level, left arm, init|Strain of musc/fasc/tend at forearm level, left arm, init +C2848280|T037|PT|S56.812A|ICD10CM|Strain of other muscles, fascia and tendons at forearm level, left arm, initial encounter|Strain of other muscles, fascia and tendons at forearm level, left arm, initial encounter +C2848281|T037|AB|S56.812D|ICD10CM|Strain of musc/fasc/tend at forearm level, left arm, subs|Strain of musc/fasc/tend at forearm level, left arm, subs +C2848281|T037|PT|S56.812D|ICD10CM|Strain of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter|Strain of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter +C2848282|T037|AB|S56.812S|ICD10CM|Strain of musc/fasc/tend at forearm level, left arm, sequela|Strain of musc/fasc/tend at forearm level, left arm, sequela +C2848282|T037|PT|S56.812S|ICD10CM|Strain of other muscles, fascia and tendons at forearm level, left arm, sequela|Strain of other muscles, fascia and tendons at forearm level, left arm, sequela +C2848283|T037|AB|S56.819|ICD10CM|Strain of musc/fasc/tend at forearm level, unsp arm|Strain of musc/fasc/tend at forearm level, unsp arm +C2848283|T037|HT|S56.819|ICD10CM|Strain of other muscles, fascia and tendons at forearm level, unspecified arm|Strain of other muscles, fascia and tendons at forearm level, unspecified arm +C2848284|T037|AB|S56.819A|ICD10CM|Strain of musc/fasc/tend at forearm level, unsp arm, init|Strain of musc/fasc/tend at forearm level, unsp arm, init +C2848284|T037|PT|S56.819A|ICD10CM|Strain of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter|Strain of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter +C2848285|T037|AB|S56.819D|ICD10CM|Strain of musc/fasc/tend at forearm level, unsp arm, subs|Strain of musc/fasc/tend at forearm level, unsp arm, subs +C2848285|T037|PT|S56.819D|ICD10CM|Strain of other muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter|Strain of other muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter +C2848286|T037|AB|S56.819S|ICD10CM|Strain of musc/fasc/tend at forearm level, unsp arm, sequela|Strain of musc/fasc/tend at forearm level, unsp arm, sequela +C2848286|T037|PT|S56.819S|ICD10CM|Strain of other muscles, fascia and tendons at forearm level, unspecified arm, sequela|Strain of other muscles, fascia and tendons at forearm level, unspecified arm, sequela +C2848287|T037|AB|S56.82|ICD10CM|Laceration of musc/fasc/tend at forearm level|Laceration of musc/fasc/tend at forearm level +C2848287|T037|HT|S56.82|ICD10CM|Laceration of other muscles, fascia and tendons at forearm level|Laceration of other muscles, fascia and tendons at forearm level +C2848288|T037|AB|S56.821|ICD10CM|Laceration of musc/fasc/tend at forearm level, right arm|Laceration of musc/fasc/tend at forearm level, right arm +C2848288|T037|HT|S56.821|ICD10CM|Laceration of other muscles, fascia and tendons at forearm level, right arm|Laceration of other muscles, fascia and tendons at forearm level, right arm +C2848289|T037|AB|S56.821A|ICD10CM|Laceration of musc/fasc/tend at forarm lv, right arm, init|Laceration of musc/fasc/tend at forarm lv, right arm, init +C2848289|T037|PT|S56.821A|ICD10CM|Laceration of other muscles, fascia and tendons at forearm level, right arm, initial encounter|Laceration of other muscles, fascia and tendons at forearm level, right arm, initial encounter +C2848290|T037|AB|S56.821D|ICD10CM|Laceration of musc/fasc/tend at forarm lv, right arm, subs|Laceration of musc/fasc/tend at forarm lv, right arm, subs +C2848290|T037|PT|S56.821D|ICD10CM|Laceration of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter|Laceration of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter +C2848291|T037|AB|S56.821S|ICD10CM|Lacerat musc/fasc/tend at forarm lv, right arm, sequela|Lacerat musc/fasc/tend at forarm lv, right arm, sequela +C2848291|T037|PT|S56.821S|ICD10CM|Laceration of other muscles, fascia and tendons at forearm level, right arm, sequela|Laceration of other muscles, fascia and tendons at forearm level, right arm, sequela +C2848292|T037|AB|S56.822|ICD10CM|Laceration of musc/fasc/tend at forearm level, left arm|Laceration of musc/fasc/tend at forearm level, left arm +C2848292|T037|HT|S56.822|ICD10CM|Laceration of other muscles, fascia and tendons at forearm level, left arm|Laceration of other muscles, fascia and tendons at forearm level, left arm +C2848293|T037|AB|S56.822A|ICD10CM|Laceration of musc/fasc/tend at forarm lv, left arm, init|Laceration of musc/fasc/tend at forarm lv, left arm, init +C2848293|T037|PT|S56.822A|ICD10CM|Laceration of other muscles, fascia and tendons at forearm level, left arm, initial encounter|Laceration of other muscles, fascia and tendons at forearm level, left arm, initial encounter +C2848294|T037|AB|S56.822D|ICD10CM|Laceration of musc/fasc/tend at forarm lv, left arm, subs|Laceration of musc/fasc/tend at forarm lv, left arm, subs +C2848294|T037|PT|S56.822D|ICD10CM|Laceration of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter|Laceration of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter +C2848295|T037|AB|S56.822S|ICD10CM|Laceration of musc/fasc/tend at forarm lv, left arm, sequela|Laceration of musc/fasc/tend at forarm lv, left arm, sequela +C2848295|T037|PT|S56.822S|ICD10CM|Laceration of other muscles, fascia and tendons at forearm level, left arm, sequela|Laceration of other muscles, fascia and tendons at forearm level, left arm, sequela +C2848296|T037|AB|S56.829|ICD10CM|Laceration of musc/fasc/tend at forearm level, unsp arm|Laceration of musc/fasc/tend at forearm level, unsp arm +C2848296|T037|HT|S56.829|ICD10CM|Laceration of other muscles, fascia and tendons at forearm level, unspecified arm|Laceration of other muscles, fascia and tendons at forearm level, unspecified arm +C2848297|T037|AB|S56.829A|ICD10CM|Laceration of musc/fasc/tend at forarm lv, unsp arm, init|Laceration of musc/fasc/tend at forarm lv, unsp arm, init +C2848297|T037|PT|S56.829A|ICD10CM|Laceration of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter|Laceration of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter +C2848298|T037|AB|S56.829D|ICD10CM|Laceration of musc/fasc/tend at forarm lv, unsp arm, subs|Laceration of musc/fasc/tend at forarm lv, unsp arm, subs +C2848299|T037|AB|S56.829S|ICD10CM|Laceration of musc/fasc/tend at forarm lv, unsp arm, sequela|Laceration of musc/fasc/tend at forarm lv, unsp arm, sequela +C2848299|T037|PT|S56.829S|ICD10CM|Laceration of other muscles, fascia and tendons at forearm level, unspecified arm, sequela|Laceration of other muscles, fascia and tendons at forearm level, unspecified arm, sequela +C2848300|T037|AB|S56.89|ICD10CM|Oth injury of musc/fasc/tend at forearm level|Oth injury of musc/fasc/tend at forearm level +C2848300|T037|HT|S56.89|ICD10CM|Other injury of other muscles, fascia and tendons at forearm level|Other injury of other muscles, fascia and tendons at forearm level +C2848301|T037|AB|S56.891|ICD10CM|Oth injury of musc/fasc/tend at forearm level, right arm|Oth injury of musc/fasc/tend at forearm level, right arm +C2848301|T037|HT|S56.891|ICD10CM|Other injury of other muscles, fascia and tendons at forearm level, right arm|Other injury of other muscles, fascia and tendons at forearm level, right arm +C2848302|T037|AB|S56.891A|ICD10CM|Inj musc/fasc/tend at forearm level, right arm, init encntr|Inj musc/fasc/tend at forearm level, right arm, init encntr +C2848302|T037|PT|S56.891A|ICD10CM|Other injury of other muscles, fascia and tendons at forearm level, right arm, initial encounter|Other injury of other muscles, fascia and tendons at forearm level, right arm, initial encounter +C2848303|T037|AB|S56.891D|ICD10CM|Inj musc/fasc/tend at forearm level, right arm, subs encntr|Inj musc/fasc/tend at forearm level, right arm, subs encntr +C2848303|T037|PT|S56.891D|ICD10CM|Other injury of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter|Other injury of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter +C2848304|T037|AB|S56.891S|ICD10CM|Inj musc/fasc/tend at forearm level, right arm, sequela|Inj musc/fasc/tend at forearm level, right arm, sequela +C2848304|T037|PT|S56.891S|ICD10CM|Other injury of other muscles, fascia and tendons at forearm level, right arm, sequela|Other injury of other muscles, fascia and tendons at forearm level, right arm, sequela +C2848305|T037|AB|S56.892|ICD10CM|Oth injury of musc/fasc/tend at forearm level, left arm|Oth injury of musc/fasc/tend at forearm level, left arm +C2848305|T037|HT|S56.892|ICD10CM|Other injury of other muscles, fascia and tendons at forearm level, left arm|Other injury of other muscles, fascia and tendons at forearm level, left arm +C2848306|T037|AB|S56.892A|ICD10CM|Inj musc/fasc/tend at forearm level, left arm, init encntr|Inj musc/fasc/tend at forearm level, left arm, init encntr +C2848306|T037|PT|S56.892A|ICD10CM|Other injury of other muscles, fascia and tendons at forearm level, left arm, initial encounter|Other injury of other muscles, fascia and tendons at forearm level, left arm, initial encounter +C2848307|T037|AB|S56.892D|ICD10CM|Inj musc/fasc/tend at forearm level, left arm, subs encntr|Inj musc/fasc/tend at forearm level, left arm, subs encntr +C2848307|T037|PT|S56.892D|ICD10CM|Other injury of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter|Other injury of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter +C2848308|T037|AB|S56.892S|ICD10CM|Inj musc/fasc/tend at forearm level, left arm, sequela|Inj musc/fasc/tend at forearm level, left arm, sequela +C2848308|T037|PT|S56.892S|ICD10CM|Other injury of other muscles, fascia and tendons at forearm level, left arm, sequela|Other injury of other muscles, fascia and tendons at forearm level, left arm, sequela +C2848309|T037|AB|S56.899|ICD10CM|Oth injury of musc/fasc/tend at forearm level, unsp arm|Oth injury of musc/fasc/tend at forearm level, unsp arm +C2848309|T037|HT|S56.899|ICD10CM|Other injury of other muscles, fascia and tendons at forearm level, unspecified arm|Other injury of other muscles, fascia and tendons at forearm level, unspecified arm +C2848310|T037|AB|S56.899A|ICD10CM|Inj musc/fasc/tend at forearm level, unsp arm, init encntr|Inj musc/fasc/tend at forearm level, unsp arm, init encntr +C2848311|T037|AB|S56.899D|ICD10CM|Inj musc/fasc/tend at forearm level, unsp arm, subs encntr|Inj musc/fasc/tend at forearm level, unsp arm, subs encntr +C2848312|T037|AB|S56.899S|ICD10CM|Inj musc/fasc/tend at forearm level, unsp arm, sequela|Inj musc/fasc/tend at forearm level, unsp arm, sequela +C2848312|T037|PT|S56.899S|ICD10CM|Other injury of other muscles, fascia and tendons at forearm level, unspecified arm, sequela|Other injury of other muscles, fascia and tendons at forearm level, unspecified arm, sequela +C2848313|T037|AB|S56.9|ICD10CM|Injury of unsp muscles, fascia and tendons at forearm level|Injury of unsp muscles, fascia and tendons at forearm level +C2848313|T037|HT|S56.9|ICD10CM|Injury of unspecified muscles, fascia and tendons at forearm level|Injury of unspecified muscles, fascia and tendons at forearm level +C2848314|T037|AB|S56.90|ICD10CM|Unsp injury of unsp musc/fasc/tend at forearm level|Unsp injury of unsp musc/fasc/tend at forearm level +C2848314|T037|HT|S56.90|ICD10CM|Unspecified injury of unspecified muscles, fascia and tendons at forearm level|Unspecified injury of unspecified muscles, fascia and tendons at forearm level +C2848315|T037|AB|S56.901|ICD10CM|Unsp injury of unsp musc/fasc/tend at forarm lv, right arm|Unsp injury of unsp musc/fasc/tend at forarm lv, right arm +C2848315|T037|HT|S56.901|ICD10CM|Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm|Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm +C2848316|T037|AB|S56.901A|ICD10CM|Unsp inj unsp musc/fasc/tend at forarm lv, right arm, init|Unsp inj unsp musc/fasc/tend at forarm lv, right arm, init +C2848317|T037|AB|S56.901D|ICD10CM|Unsp inj unsp musc/fasc/tend at forarm lv, right arm, subs|Unsp inj unsp musc/fasc/tend at forarm lv, right arm, subs +C2848318|T037|AB|S56.901S|ICD10CM|Unsp inj unsp musc/fasc/tend at forarm lv, right arm, sqla|Unsp inj unsp musc/fasc/tend at forarm lv, right arm, sqla +C2848318|T037|PT|S56.901S|ICD10CM|Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm, sequela|Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm, sequela +C2848319|T037|AB|S56.902|ICD10CM|Unsp injury of unsp musc/fasc/tend at forarm lv, left arm|Unsp injury of unsp musc/fasc/tend at forarm lv, left arm +C2848319|T037|HT|S56.902|ICD10CM|Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm|Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm +C2848320|T037|AB|S56.902A|ICD10CM|Unsp inj unsp musc/fasc/tend at forarm lv, left arm, init|Unsp inj unsp musc/fasc/tend at forarm lv, left arm, init +C2848321|T037|AB|S56.902D|ICD10CM|Unsp inj unsp musc/fasc/tend at forarm lv, left arm, subs|Unsp inj unsp musc/fasc/tend at forarm lv, left arm, subs +C2848322|T037|AB|S56.902S|ICD10CM|Unsp inj unsp musc/fasc/tend at forarm lv, left arm, sequela|Unsp inj unsp musc/fasc/tend at forarm lv, left arm, sequela +C2848322|T037|PT|S56.902S|ICD10CM|Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm, sequela|Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm, sequela +C2848323|T037|AB|S56.909|ICD10CM|Unsp injury of unsp musc/fasc/tend at forarm lv, unsp arm|Unsp injury of unsp musc/fasc/tend at forarm lv, unsp arm +C2848323|T037|HT|S56.909|ICD10CM|Unspecified injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm|Unspecified injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm +C2848324|T037|AB|S56.909A|ICD10CM|Unsp inj unsp musc/fasc/tend at forarm lv, unsp arm, init|Unsp inj unsp musc/fasc/tend at forarm lv, unsp arm, init +C2848325|T037|AB|S56.909D|ICD10CM|Unsp inj unsp musc/fasc/tend at forarm lv, unsp arm, subs|Unsp inj unsp musc/fasc/tend at forarm lv, unsp arm, subs +C2848326|T037|AB|S56.909S|ICD10CM|Unsp inj unsp musc/fasc/tend at forarm lv, unsp arm, sequela|Unsp inj unsp musc/fasc/tend at forarm lv, unsp arm, sequela +C2848327|T037|AB|S56.91|ICD10CM|Strain of unsp muscles, fascia and tendons at forearm level|Strain of unsp muscles, fascia and tendons at forearm level +C2848327|T037|HT|S56.91|ICD10CM|Strain of unspecified muscles, fascia and tendons at forearm level|Strain of unspecified muscles, fascia and tendons at forearm level +C2848328|T037|AB|S56.911|ICD10CM|Strain of unsp musc/fasc/tend at forearm level, right arm|Strain of unsp musc/fasc/tend at forearm level, right arm +C2848328|T037|HT|S56.911|ICD10CM|Strain of unspecified muscles, fascia and tendons at forearm level, right arm|Strain of unspecified muscles, fascia and tendons at forearm level, right arm +C2848329|T037|AB|S56.911A|ICD10CM|Strain of unsp musc/fasc/tend at forarm lv, right arm, init|Strain of unsp musc/fasc/tend at forarm lv, right arm, init +C2848329|T037|PT|S56.911A|ICD10CM|Strain of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter|Strain of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter +C2848330|T037|AB|S56.911D|ICD10CM|Strain of unsp musc/fasc/tend at forarm lv, right arm, subs|Strain of unsp musc/fasc/tend at forarm lv, right arm, subs +C2848330|T037|PT|S56.911D|ICD10CM|Strain of unspecified muscles, fascia and tendons at forearm level, right arm, subsequent encounter|Strain of unspecified muscles, fascia and tendons at forearm level, right arm, subsequent encounter +C2848331|T037|PT|S56.911S|ICD10CM|Strain of unspecified muscles, fascia and tendons at forearm level, right arm, sequela|Strain of unspecified muscles, fascia and tendons at forearm level, right arm, sequela +C2848331|T037|AB|S56.911S|ICD10CM|Strain unsp musc/fasc/tend at forarm lv, right arm, sequela|Strain unsp musc/fasc/tend at forarm lv, right arm, sequela +C2848332|T037|AB|S56.912|ICD10CM|Strain of unsp musc/fasc/tend at forearm level, left arm|Strain of unsp musc/fasc/tend at forearm level, left arm +C2848332|T037|HT|S56.912|ICD10CM|Strain of unspecified muscles, fascia and tendons at forearm level, left arm|Strain of unspecified muscles, fascia and tendons at forearm level, left arm +C2848333|T037|AB|S56.912A|ICD10CM|Strain of unsp musc/fasc/tend at forarm lv, left arm, init|Strain of unsp musc/fasc/tend at forarm lv, left arm, init +C2848333|T037|PT|S56.912A|ICD10CM|Strain of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter|Strain of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter +C2848334|T037|AB|S56.912D|ICD10CM|Strain of unsp musc/fasc/tend at forarm lv, left arm, subs|Strain of unsp musc/fasc/tend at forarm lv, left arm, subs +C2848334|T037|PT|S56.912D|ICD10CM|Strain of unspecified muscles, fascia and tendons at forearm level, left arm, subsequent encounter|Strain of unspecified muscles, fascia and tendons at forearm level, left arm, subsequent encounter +C2848335|T037|PT|S56.912S|ICD10CM|Strain of unspecified muscles, fascia and tendons at forearm level, left arm, sequela|Strain of unspecified muscles, fascia and tendons at forearm level, left arm, sequela +C2848335|T037|AB|S56.912S|ICD10CM|Strain unsp musc/fasc/tend at forarm lv, left arm, sequela|Strain unsp musc/fasc/tend at forarm lv, left arm, sequela +C2848336|T037|AB|S56.919|ICD10CM|Strain of unsp musc/fasc/tend at forearm level, unsp arm|Strain of unsp musc/fasc/tend at forearm level, unsp arm +C2848336|T037|HT|S56.919|ICD10CM|Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm|Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm +C2848337|T037|AB|S56.919A|ICD10CM|Strain of unsp musc/fasc/tend at forarm lv, unsp arm, init|Strain of unsp musc/fasc/tend at forarm lv, unsp arm, init +C2848338|T037|AB|S56.919D|ICD10CM|Strain of unsp musc/fasc/tend at forarm lv, unsp arm, subs|Strain of unsp musc/fasc/tend at forarm lv, unsp arm, subs +C2848339|T037|PT|S56.919S|ICD10CM|Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela|Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela +C2848339|T037|AB|S56.919S|ICD10CM|Strain unsp musc/fasc/tend at forarm lv, unsp arm, sequela|Strain unsp musc/fasc/tend at forarm lv, unsp arm, sequela +C2848340|T037|AB|S56.92|ICD10CM|Laceration of unsp musc/fasc/tend at forearm level|Laceration of unsp musc/fasc/tend at forearm level +C2848340|T037|HT|S56.92|ICD10CM|Laceration of unspecified muscles, fascia and tendons at forearm level|Laceration of unspecified muscles, fascia and tendons at forearm level +C2848341|T037|AB|S56.921|ICD10CM|Laceration of unsp musc/fasc/tend at forarm lv, right arm|Laceration of unsp musc/fasc/tend at forarm lv, right arm +C2848341|T037|HT|S56.921|ICD10CM|Laceration of unspecified muscles, fascia and tendons at forearm level, right arm|Laceration of unspecified muscles, fascia and tendons at forearm level, right arm +C2848342|T037|AB|S56.921A|ICD10CM|Lacerat unsp musc/fasc/tend at forarm lv, right arm, init|Lacerat unsp musc/fasc/tend at forarm lv, right arm, init +C2848342|T037|PT|S56.921A|ICD10CM|Laceration of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter|Laceration of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter +C2848343|T037|AB|S56.921D|ICD10CM|Lacerat unsp musc/fasc/tend at forarm lv, right arm, subs|Lacerat unsp musc/fasc/tend at forarm lv, right arm, subs +C2848344|T037|AB|S56.921S|ICD10CM|Lacerat unsp musc/fasc/tend at forarm lv, right arm, sequela|Lacerat unsp musc/fasc/tend at forarm lv, right arm, sequela +C2848344|T037|PT|S56.921S|ICD10CM|Laceration of unspecified muscles, fascia and tendons at forearm level, right arm, sequela|Laceration of unspecified muscles, fascia and tendons at forearm level, right arm, sequela +C2848345|T037|AB|S56.922|ICD10CM|Laceration of unsp musc/fasc/tend at forearm level, left arm|Laceration of unsp musc/fasc/tend at forearm level, left arm +C2848345|T037|HT|S56.922|ICD10CM|Laceration of unspecified muscles, fascia and tendons at forearm level, left arm|Laceration of unspecified muscles, fascia and tendons at forearm level, left arm +C2848346|T037|AB|S56.922A|ICD10CM|Lacerat unsp musc/fasc/tend at forarm lv, left arm, init|Lacerat unsp musc/fasc/tend at forarm lv, left arm, init +C2848346|T037|PT|S56.922A|ICD10CM|Laceration of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter|Laceration of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter +C2848347|T037|AB|S56.922D|ICD10CM|Lacerat unsp musc/fasc/tend at forarm lv, left arm, subs|Lacerat unsp musc/fasc/tend at forarm lv, left arm, subs +C2848348|T037|AB|S56.922S|ICD10CM|Lacerat unsp musc/fasc/tend at forarm lv, left arm, sequela|Lacerat unsp musc/fasc/tend at forarm lv, left arm, sequela +C2848348|T037|PT|S56.922S|ICD10CM|Laceration of unspecified muscles, fascia and tendons at forearm level, left arm, sequela|Laceration of unspecified muscles, fascia and tendons at forearm level, left arm, sequela +C2848349|T037|AB|S56.929|ICD10CM|Laceration of unsp musc/fasc/tend at forearm level, unsp arm|Laceration of unsp musc/fasc/tend at forearm level, unsp arm +C2848349|T037|HT|S56.929|ICD10CM|Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm|Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm +C2848350|T037|AB|S56.929A|ICD10CM|Lacerat unsp musc/fasc/tend at forarm lv, unsp arm, init|Lacerat unsp musc/fasc/tend at forarm lv, unsp arm, init +C2848351|T037|AB|S56.929D|ICD10CM|Lacerat unsp musc/fasc/tend at forarm lv, unsp arm, subs|Lacerat unsp musc/fasc/tend at forarm lv, unsp arm, subs +C2848352|T037|AB|S56.929S|ICD10CM|Lacerat unsp musc/fasc/tend at forarm lv, unsp arm, sequela|Lacerat unsp musc/fasc/tend at forarm lv, unsp arm, sequela +C2848352|T037|PT|S56.929S|ICD10CM|Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela|Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela +C2848353|T037|AB|S56.99|ICD10CM|Inj unsp muscles, fascia and tendons at forearm level|Inj unsp muscles, fascia and tendons at forearm level +C2848353|T037|HT|S56.99|ICD10CM|Other injury of unspecified muscles, fascia and tendons at forearm level|Other injury of unspecified muscles, fascia and tendons at forearm level +C2848354|T037|AB|S56.991|ICD10CM|Inj unsp musc/fasc/tend at forearm level, right arm|Inj unsp musc/fasc/tend at forearm level, right arm +C2848354|T037|HT|S56.991|ICD10CM|Other injury of unspecified muscles, fascia and tendons at forearm level, right arm|Other injury of unspecified muscles, fascia and tendons at forearm level, right arm +C2848355|T037|AB|S56.991A|ICD10CM|Inj unsp musc/fasc/tend at forearm level, right arm, init|Inj unsp musc/fasc/tend at forearm level, right arm, init +C2848356|T037|AB|S56.991D|ICD10CM|Inj unsp musc/fasc/tend at forearm level, right arm, subs|Inj unsp musc/fasc/tend at forearm level, right arm, subs +C2848357|T037|AB|S56.991S|ICD10CM|Inj unsp musc/fasc/tend at forearm level, right arm, sequela|Inj unsp musc/fasc/tend at forearm level, right arm, sequela +C2848357|T037|PT|S56.991S|ICD10CM|Other injury of unspecified muscles, fascia and tendons at forearm level, right arm, sequela|Other injury of unspecified muscles, fascia and tendons at forearm level, right arm, sequela +C2848358|T037|AB|S56.992|ICD10CM|Inj unsp musc/fasc/tend at forearm level, left arm|Inj unsp musc/fasc/tend at forearm level, left arm +C2848358|T037|HT|S56.992|ICD10CM|Other injury of unspecified muscles, fascia and tendons at forearm level, left arm|Other injury of unspecified muscles, fascia and tendons at forearm level, left arm +C2848359|T037|AB|S56.992A|ICD10CM|Inj unsp musc/fasc/tend at forearm level, left arm, init|Inj unsp musc/fasc/tend at forearm level, left arm, init +C2848360|T037|AB|S56.992D|ICD10CM|Inj unsp musc/fasc/tend at forearm level, left arm, subs|Inj unsp musc/fasc/tend at forearm level, left arm, subs +C2848361|T037|AB|S56.992S|ICD10CM|Inj unsp musc/fasc/tend at forearm level, left arm, sequela|Inj unsp musc/fasc/tend at forearm level, left arm, sequela +C2848361|T037|PT|S56.992S|ICD10CM|Other injury of unspecified muscles, fascia and tendons at forearm level, left arm, sequela|Other injury of unspecified muscles, fascia and tendons at forearm level, left arm, sequela +C2848362|T037|AB|S56.999|ICD10CM|Inj unsp musc/fasc/tend at forearm level, unsp arm|Inj unsp musc/fasc/tend at forearm level, unsp arm +C2848362|T037|HT|S56.999|ICD10CM|Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm|Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm +C2848363|T037|AB|S56.999A|ICD10CM|Inj unsp musc/fasc/tend at forearm level, unsp arm, init|Inj unsp musc/fasc/tend at forearm level, unsp arm, init +C2848364|T037|AB|S56.999D|ICD10CM|Inj unsp musc/fasc/tend at forearm level, unsp arm, subs|Inj unsp musc/fasc/tend at forearm level, unsp arm, subs +C2848365|T037|AB|S56.999S|ICD10CM|Inj unsp musc/fasc/tend at forearm level, unsp arm, sequela|Inj unsp musc/fasc/tend at forearm level, unsp arm, sequela +C2848365|T037|PT|S56.999S|ICD10CM|Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela|Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela +C0160976|T037|HT|S57|ICD10CM|Crushing injury of elbow and forearm|Crushing injury of elbow and forearm +C0160976|T037|AB|S57|ICD10CM|Crushing injury of elbow and forearm|Crushing injury of elbow and forearm +C0160977|T037|HT|S57|ICD10|Crushing injury of forearm|Crushing injury of forearm +C0160978|T037|PT|S57.0|ICD10|Crushing injury of elbow|Crushing injury of elbow +C0160978|T037|HT|S57.0|ICD10CM|Crushing injury of elbow|Crushing injury of elbow +C0160978|T037|AB|S57.0|ICD10CM|Crushing injury of elbow|Crushing injury of elbow +C2848366|T037|AB|S57.00|ICD10CM|Crushing injury of unspecified elbow|Crushing injury of unspecified elbow +C2848366|T037|HT|S57.00|ICD10CM|Crushing injury of unspecified elbow|Crushing injury of unspecified elbow +C2977935|T037|PT|S57.00XA|ICD10CM|Crushing injury of unspecified elbow, initial encounter|Crushing injury of unspecified elbow, initial encounter +C2977935|T037|AB|S57.00XA|ICD10CM|Crushing injury of unspecified elbow, initial encounter|Crushing injury of unspecified elbow, initial encounter +C2977936|T037|PT|S57.00XD|ICD10CM|Crushing injury of unspecified elbow, subsequent encounter|Crushing injury of unspecified elbow, subsequent encounter +C2977936|T037|AB|S57.00XD|ICD10CM|Crushing injury of unspecified elbow, subsequent encounter|Crushing injury of unspecified elbow, subsequent encounter +C2977937|T037|PT|S57.00XS|ICD10CM|Crushing injury of unspecified elbow, sequela|Crushing injury of unspecified elbow, sequela +C2977937|T037|AB|S57.00XS|ICD10CM|Crushing injury of unspecified elbow, sequela|Crushing injury of unspecified elbow, sequela +C2138546|T037|HT|S57.01|ICD10CM|Crushing injury of right elbow|Crushing injury of right elbow +C2138546|T037|AB|S57.01|ICD10CM|Crushing injury of right elbow|Crushing injury of right elbow +C2848370|T037|PT|S57.01XA|ICD10CM|Crushing injury of right elbow, initial encounter|Crushing injury of right elbow, initial encounter +C2848370|T037|AB|S57.01XA|ICD10CM|Crushing injury of right elbow, initial encounter|Crushing injury of right elbow, initial encounter +C2848371|T037|PT|S57.01XD|ICD10CM|Crushing injury of right elbow, subsequent encounter|Crushing injury of right elbow, subsequent encounter +C2848371|T037|AB|S57.01XD|ICD10CM|Crushing injury of right elbow, subsequent encounter|Crushing injury of right elbow, subsequent encounter +C2848372|T037|PT|S57.01XS|ICD10CM|Crushing injury of right elbow, sequela|Crushing injury of right elbow, sequela +C2848372|T037|AB|S57.01XS|ICD10CM|Crushing injury of right elbow, sequela|Crushing injury of right elbow, sequela +C2138524|T037|HT|S57.02|ICD10CM|Crushing injury of left elbow|Crushing injury of left elbow +C2138524|T037|AB|S57.02|ICD10CM|Crushing injury of left elbow|Crushing injury of left elbow +C2848373|T037|PT|S57.02XA|ICD10CM|Crushing injury of left elbow, initial encounter|Crushing injury of left elbow, initial encounter +C2848373|T037|AB|S57.02XA|ICD10CM|Crushing injury of left elbow, initial encounter|Crushing injury of left elbow, initial encounter +C2848374|T037|PT|S57.02XD|ICD10CM|Crushing injury of left elbow, subsequent encounter|Crushing injury of left elbow, subsequent encounter +C2848374|T037|AB|S57.02XD|ICD10CM|Crushing injury of left elbow, subsequent encounter|Crushing injury of left elbow, subsequent encounter +C2848375|T037|PT|S57.02XS|ICD10CM|Crushing injury of left elbow, sequela|Crushing injury of left elbow, sequela +C2848375|T037|AB|S57.02XS|ICD10CM|Crushing injury of left elbow, sequela|Crushing injury of left elbow, sequela +C0160977|T037|HT|S57.8|ICD10CM|Crushing injury of forearm|Crushing injury of forearm +C0160977|T037|AB|S57.8|ICD10CM|Crushing injury of forearm|Crushing injury of forearm +C0478297|T037|PT|S57.8|ICD10|Crushing injury of other parts of forearm|Crushing injury of other parts of forearm +C2848376|T037|AB|S57.80|ICD10CM|Crushing injury of unspecified forearm|Crushing injury of unspecified forearm +C2848376|T037|HT|S57.80|ICD10CM|Crushing injury of unspecified forearm|Crushing injury of unspecified forearm +C2977938|T037|AB|S57.80XA|ICD10CM|Crushing injury of unspecified forearm, initial encounter|Crushing injury of unspecified forearm, initial encounter +C2977938|T037|PT|S57.80XA|ICD10CM|Crushing injury of unspecified forearm, initial encounter|Crushing injury of unspecified forearm, initial encounter +C2977939|T037|AB|S57.80XD|ICD10CM|Crushing injury of unspecified forearm, subsequent encounter|Crushing injury of unspecified forearm, subsequent encounter +C2977939|T037|PT|S57.80XD|ICD10CM|Crushing injury of unspecified forearm, subsequent encounter|Crushing injury of unspecified forearm, subsequent encounter +C2977940|T037|PT|S57.80XS|ICD10CM|Crushing injury of unspecified forearm, sequela|Crushing injury of unspecified forearm, sequela +C2977940|T037|AB|S57.80XS|ICD10CM|Crushing injury of unspecified forearm, sequela|Crushing injury of unspecified forearm, sequela +C2138548|T037|AB|S57.81|ICD10CM|Crushing injury of right forearm|Crushing injury of right forearm +C2138548|T037|HT|S57.81|ICD10CM|Crushing injury of right forearm|Crushing injury of right forearm +C2848380|T037|PT|S57.81XA|ICD10CM|Crushing injury of right forearm, initial encounter|Crushing injury of right forearm, initial encounter +C2848380|T037|AB|S57.81XA|ICD10CM|Crushing injury of right forearm, initial encounter|Crushing injury of right forearm, initial encounter +C2848381|T037|PT|S57.81XD|ICD10CM|Crushing injury of right forearm, subsequent encounter|Crushing injury of right forearm, subsequent encounter +C2848381|T037|AB|S57.81XD|ICD10CM|Crushing injury of right forearm, subsequent encounter|Crushing injury of right forearm, subsequent encounter +C2848382|T037|PT|S57.81XS|ICD10CM|Crushing injury of right forearm, sequela|Crushing injury of right forearm, sequela +C2848382|T037|AB|S57.81XS|ICD10CM|Crushing injury of right forearm, sequela|Crushing injury of right forearm, sequela +C2138526|T037|AB|S57.82|ICD10CM|Crushing injury of left forearm|Crushing injury of left forearm +C2138526|T037|HT|S57.82|ICD10CM|Crushing injury of left forearm|Crushing injury of left forearm +C2848383|T037|PT|S57.82XA|ICD10CM|Crushing injury of left forearm, initial encounter|Crushing injury of left forearm, initial encounter +C2848383|T037|AB|S57.82XA|ICD10CM|Crushing injury of left forearm, initial encounter|Crushing injury of left forearm, initial encounter +C2848384|T037|PT|S57.82XD|ICD10CM|Crushing injury of left forearm, subsequent encounter|Crushing injury of left forearm, subsequent encounter +C2848384|T037|AB|S57.82XD|ICD10CM|Crushing injury of left forearm, subsequent encounter|Crushing injury of left forearm, subsequent encounter +C2848385|T037|PT|S57.82XS|ICD10CM|Crushing injury of left forearm, sequela|Crushing injury of left forearm, sequela +C2848385|T037|AB|S57.82XS|ICD10CM|Crushing injury of left forearm, sequela|Crushing injury of left forearm, sequela +C0160977|T037|PT|S57.9|ICD10|Crushing injury of forearm, part unspecified|Crushing injury of forearm, part unspecified +C2977737|T033|ET|S58|ICD10CM|An amputation not identified as partial or complete should be coded to complete|An amputation not identified as partial or complete should be coded to complete +C2848386|T037|AB|S58|ICD10CM|Traumatic amputation of elbow and forearm|Traumatic amputation of elbow and forearm +C2848386|T037|HT|S58|ICD10CM|Traumatic amputation of elbow and forearm|Traumatic amputation of elbow and forearm +C0478298|T037|HT|S58|ICD10|Traumatic amputation of forearm|Traumatic amputation of forearm +C0495886|T037|PT|S58.0|ICD10|Traumatic amputation at elbow level|Traumatic amputation at elbow level +C0495886|T037|HT|S58.0|ICD10CM|Traumatic amputation at elbow level|Traumatic amputation at elbow level +C0495886|T037|AB|S58.0|ICD10CM|Traumatic amputation at elbow level|Traumatic amputation at elbow level +C2848387|T037|HT|S58.01|ICD10CM|Complete traumatic amputation at elbow level|Complete traumatic amputation at elbow level +C2848387|T037|AB|S58.01|ICD10CM|Complete traumatic amputation at elbow level|Complete traumatic amputation at elbow level +C2848388|T037|AB|S58.011|ICD10CM|Complete traumatic amputation at elbow level, right arm|Complete traumatic amputation at elbow level, right arm +C2848388|T037|HT|S58.011|ICD10CM|Complete traumatic amputation at elbow level, right arm|Complete traumatic amputation at elbow level, right arm +C2848389|T037|AB|S58.011A|ICD10CM|Complete traumatic amp at elbow level, right arm, init|Complete traumatic amp at elbow level, right arm, init +C2848389|T037|PT|S58.011A|ICD10CM|Complete traumatic amputation at elbow level, right arm, initial encounter|Complete traumatic amputation at elbow level, right arm, initial encounter +C2848390|T037|AB|S58.011D|ICD10CM|Complete traumatic amp at elbow level, right arm, subs|Complete traumatic amp at elbow level, right arm, subs +C2848390|T037|PT|S58.011D|ICD10CM|Complete traumatic amputation at elbow level, right arm, subsequent encounter|Complete traumatic amputation at elbow level, right arm, subsequent encounter +C2848391|T037|AB|S58.011S|ICD10CM|Complete traumatic amp at elbow level, right arm, sequela|Complete traumatic amp at elbow level, right arm, sequela +C2848391|T037|PT|S58.011S|ICD10CM|Complete traumatic amputation at elbow level, right arm, sequela|Complete traumatic amputation at elbow level, right arm, sequela +C2848392|T037|AB|S58.012|ICD10CM|Complete traumatic amputation at elbow level, left arm|Complete traumatic amputation at elbow level, left arm +C2848392|T037|HT|S58.012|ICD10CM|Complete traumatic amputation at elbow level, left arm|Complete traumatic amputation at elbow level, left arm +C2848393|T037|AB|S58.012A|ICD10CM|Complete traumatic amputation at elbow level, left arm, init|Complete traumatic amputation at elbow level, left arm, init +C2848393|T037|PT|S58.012A|ICD10CM|Complete traumatic amputation at elbow level, left arm, initial encounter|Complete traumatic amputation at elbow level, left arm, initial encounter +C2848394|T037|AB|S58.012D|ICD10CM|Complete traumatic amputation at elbow level, left arm, subs|Complete traumatic amputation at elbow level, left arm, subs +C2848394|T037|PT|S58.012D|ICD10CM|Complete traumatic amputation at elbow level, left arm, subsequent encounter|Complete traumatic amputation at elbow level, left arm, subsequent encounter +C2848395|T037|AB|S58.012S|ICD10CM|Complete traumatic amp at elbow level, left arm, sequela|Complete traumatic amp at elbow level, left arm, sequela +C2848395|T037|PT|S58.012S|ICD10CM|Complete traumatic amputation at elbow level, left arm, sequela|Complete traumatic amputation at elbow level, left arm, sequela +C2848396|T037|AB|S58.019|ICD10CM|Complete traumatic amputation at elbow level, unsp arm|Complete traumatic amputation at elbow level, unsp arm +C2848396|T037|HT|S58.019|ICD10CM|Complete traumatic amputation at elbow level, unspecified arm|Complete traumatic amputation at elbow level, unspecified arm +C2848397|T037|AB|S58.019A|ICD10CM|Complete traumatic amputation at elbow level, unsp arm, init|Complete traumatic amputation at elbow level, unsp arm, init +C2848397|T037|PT|S58.019A|ICD10CM|Complete traumatic amputation at elbow level, unspecified arm, initial encounter|Complete traumatic amputation at elbow level, unspecified arm, initial encounter +C2848398|T037|AB|S58.019D|ICD10CM|Complete traumatic amputation at elbow level, unsp arm, subs|Complete traumatic amputation at elbow level, unsp arm, subs +C2848398|T037|PT|S58.019D|ICD10CM|Complete traumatic amputation at elbow level, unspecified arm, subsequent encounter|Complete traumatic amputation at elbow level, unspecified arm, subsequent encounter +C2848399|T037|AB|S58.019S|ICD10CM|Complete traumatic amp at elbow level, unsp arm, sequela|Complete traumatic amp at elbow level, unsp arm, sequela +C2848399|T037|PT|S58.019S|ICD10CM|Complete traumatic amputation at elbow level, unspecified arm, sequela|Complete traumatic amputation at elbow level, unspecified arm, sequela +C3511091|T037|HT|S58.02|ICD10CM|Partial traumatic amputation at elbow level|Partial traumatic amputation at elbow level +C3511091|T037|AB|S58.02|ICD10CM|Partial traumatic amputation at elbow level|Partial traumatic amputation at elbow level +C2848401|T037|AB|S58.021|ICD10CM|Partial traumatic amputation at elbow level, right arm|Partial traumatic amputation at elbow level, right arm +C2848401|T037|HT|S58.021|ICD10CM|Partial traumatic amputation at elbow level, right arm|Partial traumatic amputation at elbow level, right arm +C2848402|T037|AB|S58.021A|ICD10CM|Partial traumatic amputation at elbow level, right arm, init|Partial traumatic amputation at elbow level, right arm, init +C2848402|T037|PT|S58.021A|ICD10CM|Partial traumatic amputation at elbow level, right arm, initial encounter|Partial traumatic amputation at elbow level, right arm, initial encounter +C2848403|T037|AB|S58.021D|ICD10CM|Partial traumatic amputation at elbow level, right arm, subs|Partial traumatic amputation at elbow level, right arm, subs +C2848403|T037|PT|S58.021D|ICD10CM|Partial traumatic amputation at elbow level, right arm, subsequent encounter|Partial traumatic amputation at elbow level, right arm, subsequent encounter +C2848404|T037|AB|S58.021S|ICD10CM|Partial traumatic amp at elbow level, right arm, sequela|Partial traumatic amp at elbow level, right arm, sequela +C2848404|T037|PT|S58.021S|ICD10CM|Partial traumatic amputation at elbow level, right arm, sequela|Partial traumatic amputation at elbow level, right arm, sequela +C2848405|T037|AB|S58.022|ICD10CM|Partial traumatic amputation at elbow level, left arm|Partial traumatic amputation at elbow level, left arm +C2848405|T037|HT|S58.022|ICD10CM|Partial traumatic amputation at elbow level, left arm|Partial traumatic amputation at elbow level, left arm +C2848406|T037|AB|S58.022A|ICD10CM|Partial traumatic amputation at elbow level, left arm, init|Partial traumatic amputation at elbow level, left arm, init +C2848406|T037|PT|S58.022A|ICD10CM|Partial traumatic amputation at elbow level, left arm, initial encounter|Partial traumatic amputation at elbow level, left arm, initial encounter +C2848407|T037|AB|S58.022D|ICD10CM|Partial traumatic amputation at elbow level, left arm, subs|Partial traumatic amputation at elbow level, left arm, subs +C2848407|T037|PT|S58.022D|ICD10CM|Partial traumatic amputation at elbow level, left arm, subsequent encounter|Partial traumatic amputation at elbow level, left arm, subsequent encounter +C2848408|T037|AB|S58.022S|ICD10CM|Partial traumatic amp at elbow level, left arm, sequela|Partial traumatic amp at elbow level, left arm, sequela +C2848408|T037|PT|S58.022S|ICD10CM|Partial traumatic amputation at elbow level, left arm, sequela|Partial traumatic amputation at elbow level, left arm, sequela +C2848409|T037|AB|S58.029|ICD10CM|Partial traumatic amputation at elbow level, unspecified arm|Partial traumatic amputation at elbow level, unspecified arm +C2848409|T037|HT|S58.029|ICD10CM|Partial traumatic amputation at elbow level, unspecified arm|Partial traumatic amputation at elbow level, unspecified arm +C2848410|T037|AB|S58.029A|ICD10CM|Partial traumatic amputation at elbow level, unsp arm, init|Partial traumatic amputation at elbow level, unsp arm, init +C2848410|T037|PT|S58.029A|ICD10CM|Partial traumatic amputation at elbow level, unspecified arm, initial encounter|Partial traumatic amputation at elbow level, unspecified arm, initial encounter +C2848411|T037|AB|S58.029D|ICD10CM|Partial traumatic amputation at elbow level, unsp arm, subs|Partial traumatic amputation at elbow level, unsp arm, subs +C2848411|T037|PT|S58.029D|ICD10CM|Partial traumatic amputation at elbow level, unspecified arm, subsequent encounter|Partial traumatic amputation at elbow level, unspecified arm, subsequent encounter +C2848412|T037|AB|S58.029S|ICD10CM|Partial traumatic amp at elbow level, unsp arm, sequela|Partial traumatic amp at elbow level, unsp arm, sequela +C2848412|T037|PT|S58.029S|ICD10CM|Partial traumatic amputation at elbow level, unspecified arm, sequela|Partial traumatic amputation at elbow level, unspecified arm, sequela +C0495887|T037|HT|S58.1|ICD10CM|Traumatic amputation at level between elbow and wrist|Traumatic amputation at level between elbow and wrist +C0495887|T037|AB|S58.1|ICD10CM|Traumatic amputation at level between elbow and wrist|Traumatic amputation at level between elbow and wrist +C0495887|T037|PT|S58.1|ICD10|Traumatic amputation at level between elbow and wrist|Traumatic amputation at level between elbow and wrist +C2848413|T037|AB|S58.11|ICD10CM|Complete traumatic amputation at level betw elbow and wrist|Complete traumatic amputation at level betw elbow and wrist +C2848413|T037|HT|S58.11|ICD10CM|Complete traumatic amputation at level between elbow and wrist|Complete traumatic amputation at level between elbow and wrist +C2848414|T037|AB|S58.111|ICD10CM|Complete traum amp at level betw elbow and wrist, right arm|Complete traum amp at level betw elbow and wrist, right arm +C2848414|T037|HT|S58.111|ICD10CM|Complete traumatic amputation at level between elbow and wrist, right arm|Complete traumatic amputation at level between elbow and wrist, right arm +C2848415|T037|AB|S58.111A|ICD10CM|Complete traum amp at lev betw elbow and wrist, r arm, init|Complete traum amp at lev betw elbow and wrist, r arm, init +C2848415|T037|PT|S58.111A|ICD10CM|Complete traumatic amputation at level between elbow and wrist, right arm, initial encounter|Complete traumatic amputation at level between elbow and wrist, right arm, initial encounter +C2848416|T037|AB|S58.111D|ICD10CM|Complete traum amp at lev betw elbow and wrist, r arm, subs|Complete traum amp at lev betw elbow and wrist, r arm, subs +C2848416|T037|PT|S58.111D|ICD10CM|Complete traumatic amputation at level between elbow and wrist, right arm, subsequent encounter|Complete traumatic amputation at level between elbow and wrist, right arm, subsequent encounter +C2848417|T037|AB|S58.111S|ICD10CM|Complete traum amp at lev betw elbow and wrist, r arm, sqla|Complete traum amp at lev betw elbow and wrist, r arm, sqla +C2848417|T037|PT|S58.111S|ICD10CM|Complete traumatic amputation at level between elbow and wrist, right arm, sequela|Complete traumatic amputation at level between elbow and wrist, right arm, sequela +C2848418|T037|AB|S58.112|ICD10CM|Complete traum amp at level betw elbow and wrist, left arm|Complete traum amp at level betw elbow and wrist, left arm +C2848418|T037|HT|S58.112|ICD10CM|Complete traumatic amputation at level between elbow and wrist, left arm|Complete traumatic amputation at level between elbow and wrist, left arm +C2848419|T037|AB|S58.112A|ICD10CM|Complete traum amp at lev betw elbow and wrs, left arm, init|Complete traum amp at lev betw elbow and wrs, left arm, init +C2848419|T037|PT|S58.112A|ICD10CM|Complete traumatic amputation at level between elbow and wrist, left arm, initial encounter|Complete traumatic amputation at level between elbow and wrist, left arm, initial encounter +C2848420|T037|AB|S58.112D|ICD10CM|Complete traum amp at lev betw elbow and wrs, left arm, subs|Complete traum amp at lev betw elbow and wrs, left arm, subs +C2848420|T037|PT|S58.112D|ICD10CM|Complete traumatic amputation at level between elbow and wrist, left arm, subsequent encounter|Complete traumatic amputation at level between elbow and wrist, left arm, subsequent encounter +C2848421|T037|AB|S58.112S|ICD10CM|Complete traum amp at lev betw elbow and wrs, left arm, sqla|Complete traum amp at lev betw elbow and wrs, left arm, sqla +C2848421|T037|PT|S58.112S|ICD10CM|Complete traumatic amputation at level between elbow and wrist, left arm, sequela|Complete traumatic amputation at level between elbow and wrist, left arm, sequela +C2848422|T037|AB|S58.119|ICD10CM|Complete traum amp at level betw elbow and wrist, unsp arm|Complete traum amp at level betw elbow and wrist, unsp arm +C2848422|T037|HT|S58.119|ICD10CM|Complete traumatic amputation at level between elbow and wrist, unspecified arm|Complete traumatic amputation at level between elbow and wrist, unspecified arm +C2848423|T037|AB|S58.119A|ICD10CM|Complete traum amp at lev betw elbow and wrs, unsp arm, init|Complete traum amp at lev betw elbow and wrs, unsp arm, init +C2848423|T037|PT|S58.119A|ICD10CM|Complete traumatic amputation at level between elbow and wrist, unspecified arm, initial encounter|Complete traumatic amputation at level between elbow and wrist, unspecified arm, initial encounter +C2848424|T037|AB|S58.119D|ICD10CM|Complete traum amp at lev betw elbow and wrs, unsp arm, subs|Complete traum amp at lev betw elbow and wrs, unsp arm, subs +C2848425|T037|AB|S58.119S|ICD10CM|Complete traum amp at lev betw elbow and wrs, unsp arm, sqla|Complete traum amp at lev betw elbow and wrs, unsp arm, sqla +C2848425|T037|PT|S58.119S|ICD10CM|Complete traumatic amputation at level between elbow and wrist, unspecified arm, sequela|Complete traumatic amputation at level between elbow and wrist, unspecified arm, sequela +C2848426|T037|AB|S58.12|ICD10CM|Partial traumatic amputation at level betw elbow and wrist|Partial traumatic amputation at level betw elbow and wrist +C2848426|T037|HT|S58.12|ICD10CM|Partial traumatic amputation at level between elbow and wrist|Partial traumatic amputation at level between elbow and wrist +C2848427|T037|AB|S58.121|ICD10CM|Partial traum amp at level betw elbow and wrist, right arm|Partial traum amp at level betw elbow and wrist, right arm +C2848427|T037|HT|S58.121|ICD10CM|Partial traumatic amputation at level between elbow and wrist, right arm|Partial traumatic amputation at level between elbow and wrist, right arm +C2848428|T037|AB|S58.121A|ICD10CM|Part traum amp at lev betw elbow and wrist, right arm, init|Part traum amp at lev betw elbow and wrist, right arm, init +C2848428|T037|PT|S58.121A|ICD10CM|Partial traumatic amputation at level between elbow and wrist, right arm, initial encounter|Partial traumatic amputation at level between elbow and wrist, right arm, initial encounter +C2848429|T037|AB|S58.121D|ICD10CM|Part traum amp at lev betw elbow and wrist, right arm, subs|Part traum amp at lev betw elbow and wrist, right arm, subs +C2848429|T037|PT|S58.121D|ICD10CM|Partial traumatic amputation at level between elbow and wrist, right arm, subsequent encounter|Partial traumatic amputation at level between elbow and wrist, right arm, subsequent encounter +C2848430|T037|AB|S58.121S|ICD10CM|Part traum amp at lev betw elbow and wrist, right arm, sqla|Part traum amp at lev betw elbow and wrist, right arm, sqla +C2848430|T037|PT|S58.121S|ICD10CM|Partial traumatic amputation at level between elbow and wrist, right arm, sequela|Partial traumatic amputation at level between elbow and wrist, right arm, sequela +C2848431|T037|AB|S58.122|ICD10CM|Partial traum amp at level betw elbow and wrist, left arm|Partial traum amp at level betw elbow and wrist, left arm +C2848431|T037|HT|S58.122|ICD10CM|Partial traumatic amputation at level between elbow and wrist, left arm|Partial traumatic amputation at level between elbow and wrist, left arm +C2848432|T037|AB|S58.122A|ICD10CM|Part traum amp at level betw elbow and wrist, left arm, init|Part traum amp at level betw elbow and wrist, left arm, init +C2848432|T037|PT|S58.122A|ICD10CM|Partial traumatic amputation at level between elbow and wrist, left arm, initial encounter|Partial traumatic amputation at level between elbow and wrist, left arm, initial encounter +C2848433|T037|AB|S58.122D|ICD10CM|Part traum amp at level betw elbow and wrist, left arm, subs|Part traum amp at level betw elbow and wrist, left arm, subs +C2848433|T037|PT|S58.122D|ICD10CM|Partial traumatic amputation at level between elbow and wrist, left arm, subsequent encounter|Partial traumatic amputation at level between elbow and wrist, left arm, subsequent encounter +C2848434|T037|AB|S58.122S|ICD10CM|Part traum amp at level betw elbow and wrist, left arm, sqla|Part traum amp at level betw elbow and wrist, left arm, sqla +C2848434|T037|PT|S58.122S|ICD10CM|Partial traumatic amputation at level between elbow and wrist, left arm, sequela|Partial traumatic amputation at level between elbow and wrist, left arm, sequela +C2848435|T037|AB|S58.129|ICD10CM|Partial traum amp at level betw elbow and wrist, unsp arm|Partial traum amp at level betw elbow and wrist, unsp arm +C2848435|T037|HT|S58.129|ICD10CM|Partial traumatic amputation at level between elbow and wrist, unspecified arm|Partial traumatic amputation at level between elbow and wrist, unspecified arm +C2848436|T037|AB|S58.129A|ICD10CM|Part traum amp at level betw elbow and wrist, unsp arm, init|Part traum amp at level betw elbow and wrist, unsp arm, init +C2848436|T037|PT|S58.129A|ICD10CM|Partial traumatic amputation at level between elbow and wrist, unspecified arm, initial encounter|Partial traumatic amputation at level between elbow and wrist, unspecified arm, initial encounter +C2848437|T037|AB|S58.129D|ICD10CM|Part traum amp at level betw elbow and wrist, unsp arm, subs|Part traum amp at level betw elbow and wrist, unsp arm, subs +C2848437|T037|PT|S58.129D|ICD10CM|Partial traumatic amputation at level between elbow and wrist, unspecified arm, subsequent encounter|Partial traumatic amputation at level between elbow and wrist, unspecified arm, subsequent encounter +C2848438|T037|AB|S58.129S|ICD10CM|Part traum amp at level betw elbow and wrist, unsp arm, sqla|Part traum amp at level betw elbow and wrist, unsp arm, sqla +C2848438|T037|PT|S58.129S|ICD10CM|Partial traumatic amputation at level between elbow and wrist, unspecified arm, sequela|Partial traumatic amputation at level between elbow and wrist, unspecified arm, sequela +C0478298|T037|PT|S58.9|ICD10|Traumatic amputation of forearm, level unspecified|Traumatic amputation of forearm, level unspecified +C0478298|T037|HT|S58.9|ICD10CM|Traumatic amputation of forearm, level unspecified|Traumatic amputation of forearm, level unspecified +C0478298|T037|AB|S58.9|ICD10CM|Traumatic amputation of forearm, level unspecified|Traumatic amputation of forearm, level unspecified +C2848439|T037|AB|S58.91|ICD10CM|Complete traumatic amputation of forearm, level unspecified|Complete traumatic amputation of forearm, level unspecified +C2848439|T037|HT|S58.91|ICD10CM|Complete traumatic amputation of forearm, level unspecified|Complete traumatic amputation of forearm, level unspecified +C2848440|T037|AB|S58.911|ICD10CM|Complete traumatic amputation of right forearm, level unsp|Complete traumatic amputation of right forearm, level unsp +C2848440|T037|HT|S58.911|ICD10CM|Complete traumatic amputation of right forearm, level unspecified|Complete traumatic amputation of right forearm, level unspecified +C2848441|T037|AB|S58.911A|ICD10CM|Complete traumatic amputation of r forearm, level unsp, init|Complete traumatic amputation of r forearm, level unsp, init +C2848441|T037|PT|S58.911A|ICD10CM|Complete traumatic amputation of right forearm, level unspecified, initial encounter|Complete traumatic amputation of right forearm, level unspecified, initial encounter +C2848442|T037|AB|S58.911D|ICD10CM|Complete traumatic amputation of r forearm, level unsp, subs|Complete traumatic amputation of r forearm, level unsp, subs +C2848442|T037|PT|S58.911D|ICD10CM|Complete traumatic amputation of right forearm, level unspecified, subsequent encounter|Complete traumatic amputation of right forearm, level unspecified, subsequent encounter +C2848443|T037|AB|S58.911S|ICD10CM|Complete traumatic amp of r forearm, level unsp, sequela|Complete traumatic amp of r forearm, level unsp, sequela +C2848443|T037|PT|S58.911S|ICD10CM|Complete traumatic amputation of right forearm, level unspecified, sequela|Complete traumatic amputation of right forearm, level unspecified, sequela +C2848444|T037|AB|S58.912|ICD10CM|Complete traumatic amputation of left forearm, level unsp|Complete traumatic amputation of left forearm, level unsp +C2848444|T037|HT|S58.912|ICD10CM|Complete traumatic amputation of left forearm, level unspecified|Complete traumatic amputation of left forearm, level unspecified +C2848445|T037|AB|S58.912A|ICD10CM|Complete traumatic amputation of l forearm, level unsp, init|Complete traumatic amputation of l forearm, level unsp, init +C2848445|T037|PT|S58.912A|ICD10CM|Complete traumatic amputation of left forearm, level unspecified, initial encounter|Complete traumatic amputation of left forearm, level unspecified, initial encounter +C2848446|T037|AB|S58.912D|ICD10CM|Complete traumatic amputation of l forearm, level unsp, subs|Complete traumatic amputation of l forearm, level unsp, subs +C2848446|T037|PT|S58.912D|ICD10CM|Complete traumatic amputation of left forearm, level unspecified, subsequent encounter|Complete traumatic amputation of left forearm, level unspecified, subsequent encounter +C2848447|T037|AB|S58.912S|ICD10CM|Complete traumatic amp of l forearm, level unsp, sequela|Complete traumatic amp of l forearm, level unsp, sequela +C2848447|T037|PT|S58.912S|ICD10CM|Complete traumatic amputation of left forearm, level unspecified, sequela|Complete traumatic amputation of left forearm, level unspecified, sequela +C2848448|T037|AB|S58.919|ICD10CM|Complete traumatic amputation of unsp forearm, level unsp|Complete traumatic amputation of unsp forearm, level unsp +C2848448|T037|HT|S58.919|ICD10CM|Complete traumatic amputation of unspecified forearm, level unspecified|Complete traumatic amputation of unspecified forearm, level unspecified +C2848449|T037|AB|S58.919A|ICD10CM|Complete traumatic amp of unsp forearm, level unsp, init|Complete traumatic amp of unsp forearm, level unsp, init +C2848449|T037|PT|S58.919A|ICD10CM|Complete traumatic amputation of unspecified forearm, level unspecified, initial encounter|Complete traumatic amputation of unspecified forearm, level unspecified, initial encounter +C2848450|T037|AB|S58.919D|ICD10CM|Complete traumatic amp of unsp forearm, level unsp, subs|Complete traumatic amp of unsp forearm, level unsp, subs +C2848450|T037|PT|S58.919D|ICD10CM|Complete traumatic amputation of unspecified forearm, level unspecified, subsequent encounter|Complete traumatic amputation of unspecified forearm, level unspecified, subsequent encounter +C2848451|T037|AB|S58.919S|ICD10CM|Complete traumatic amp of unsp forearm, level unsp, sequela|Complete traumatic amp of unsp forearm, level unsp, sequela +C2848451|T037|PT|S58.919S|ICD10CM|Complete traumatic amputation of unspecified forearm, level unspecified, sequela|Complete traumatic amputation of unspecified forearm, level unspecified, sequela +C2848452|T037|AB|S58.92|ICD10CM|Partial traumatic amputation of forearm, level unspecified|Partial traumatic amputation of forearm, level unspecified +C2848452|T037|HT|S58.92|ICD10CM|Partial traumatic amputation of forearm, level unspecified|Partial traumatic amputation of forearm, level unspecified +C2848453|T037|AB|S58.921|ICD10CM|Partial traumatic amputation of right forearm, level unsp|Partial traumatic amputation of right forearm, level unsp +C2848453|T037|HT|S58.921|ICD10CM|Partial traumatic amputation of right forearm, level unspecified|Partial traumatic amputation of right forearm, level unspecified +C2848454|T037|AB|S58.921A|ICD10CM|Partial traumatic amputation of r forearm, level unsp, init|Partial traumatic amputation of r forearm, level unsp, init +C2848454|T037|PT|S58.921A|ICD10CM|Partial traumatic amputation of right forearm, level unspecified, initial encounter|Partial traumatic amputation of right forearm, level unspecified, initial encounter +C2848455|T037|AB|S58.921D|ICD10CM|Partial traumatic amputation of r forearm, level unsp, subs|Partial traumatic amputation of r forearm, level unsp, subs +C2848455|T037|PT|S58.921D|ICD10CM|Partial traumatic amputation of right forearm, level unspecified, subsequent encounter|Partial traumatic amputation of right forearm, level unspecified, subsequent encounter +C2848456|T037|AB|S58.921S|ICD10CM|Partial traumatic amp of r forearm, level unsp, sequela|Partial traumatic amp of r forearm, level unsp, sequela +C2848456|T037|PT|S58.921S|ICD10CM|Partial traumatic amputation of right forearm, level unspecified, sequela|Partial traumatic amputation of right forearm, level unspecified, sequela +C2848457|T037|AB|S58.922|ICD10CM|Partial traumatic amputation of left forearm, level unsp|Partial traumatic amputation of left forearm, level unsp +C2848457|T037|HT|S58.922|ICD10CM|Partial traumatic amputation of left forearm, level unspecified|Partial traumatic amputation of left forearm, level unspecified +C2848458|T037|AB|S58.922A|ICD10CM|Partial traumatic amputation of l forearm, level unsp, init|Partial traumatic amputation of l forearm, level unsp, init +C2848458|T037|PT|S58.922A|ICD10CM|Partial traumatic amputation of left forearm, level unspecified, initial encounter|Partial traumatic amputation of left forearm, level unspecified, initial encounter +C2848459|T037|AB|S58.922D|ICD10CM|Partial traumatic amputation of l forearm, level unsp, subs|Partial traumatic amputation of l forearm, level unsp, subs +C2848459|T037|PT|S58.922D|ICD10CM|Partial traumatic amputation of left forearm, level unspecified, subsequent encounter|Partial traumatic amputation of left forearm, level unspecified, subsequent encounter +C2848460|T037|AB|S58.922S|ICD10CM|Partial traumatic amp of l forearm, level unsp, sequela|Partial traumatic amp of l forearm, level unsp, sequela +C2848460|T037|PT|S58.922S|ICD10CM|Partial traumatic amputation of left forearm, level unspecified, sequela|Partial traumatic amputation of left forearm, level unspecified, sequela +C2848461|T037|AB|S58.929|ICD10CM|Partial traumatic amputation of unsp forearm, level unsp|Partial traumatic amputation of unsp forearm, level unsp +C2848461|T037|HT|S58.929|ICD10CM|Partial traumatic amputation of unspecified forearm, level unspecified|Partial traumatic amputation of unspecified forearm, level unspecified +C2848462|T037|AB|S58.929A|ICD10CM|Partial traumatic amp of unsp forearm, level unsp, init|Partial traumatic amp of unsp forearm, level unsp, init +C2848462|T037|PT|S58.929A|ICD10CM|Partial traumatic amputation of unspecified forearm, level unspecified, initial encounter|Partial traumatic amputation of unspecified forearm, level unspecified, initial encounter +C2848463|T037|AB|S58.929D|ICD10CM|Partial traumatic amp of unsp forearm, level unsp, subs|Partial traumatic amp of unsp forearm, level unsp, subs +C2848463|T037|PT|S58.929D|ICD10CM|Partial traumatic amputation of unspecified forearm, level unspecified, subsequent encounter|Partial traumatic amputation of unspecified forearm, level unspecified, subsequent encounter +C2848464|T037|AB|S58.929S|ICD10CM|Partial traumatic amp of unsp forearm, level unsp, sequela|Partial traumatic amp of unsp forearm, level unsp, sequela +C2848464|T037|PT|S58.929S|ICD10CM|Partial traumatic amputation of unspecified forearm, level unspecified, sequela|Partial traumatic amputation of unspecified forearm, level unspecified, sequela +C2848465|T037|AB|S59|ICD10CM|Other and unspecified injuries of elbow and forearm|Other and unspecified injuries of elbow and forearm +C2848465|T037|HT|S59|ICD10CM|Other and unspecified injuries of elbow and forearm|Other and unspecified injuries of elbow and forearm +C0495888|T037|HT|S59|ICD10|Other and unspecified injuries of forearm|Other and unspecified injuries of forearm +C2848466|T037|AB|S59.0|ICD10CM|Physeal fracture of lower end of ulna|Physeal fracture of lower end of ulna +C2848466|T037|HT|S59.0|ICD10CM|Physeal fracture of lower end of ulna|Physeal fracture of lower end of ulna +C2848467|T037|AB|S59.00|ICD10CM|Unspecified physeal fracture of lower end of ulna|Unspecified physeal fracture of lower end of ulna +C2848467|T037|HT|S59.00|ICD10CM|Unspecified physeal fracture of lower end of ulna|Unspecified physeal fracture of lower end of ulna +C2848468|T037|AB|S59.001|ICD10CM|Unspecified physeal fracture of lower end of ulna, right arm|Unspecified physeal fracture of lower end of ulna, right arm +C2848468|T037|HT|S59.001|ICD10CM|Unspecified physeal fracture of lower end of ulna, right arm|Unspecified physeal fracture of lower end of ulna, right arm +C2848469|T037|AB|S59.001A|ICD10CM|Unsp physeal fracture of lower end of ulna, right arm, init|Unsp physeal fracture of lower end of ulna, right arm, init +C2848469|T037|PT|S59.001A|ICD10CM|Unspecified physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture|Unspecified physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture +C2848470|T037|AB|S59.001D|ICD10CM|Unsp physl fx low end ulna, r arm, subs for fx w routn heal|Unsp physl fx low end ulna, r arm, subs for fx w routn heal +C2848471|T037|AB|S59.001G|ICD10CM|Unsp physl fx low end ulna, r arm, subs for fx w delay heal|Unsp physl fx low end ulna, r arm, subs for fx w delay heal +C2848472|T037|AB|S59.001K|ICD10CM|Unsp physl fx low end ulna, r arm, subs for fx w nonunion|Unsp physl fx low end ulna, r arm, subs for fx w nonunion +C2848473|T037|AB|S59.001P|ICD10CM|Unsp physl fx low end ulna, r arm, subs for fx w malunion|Unsp physl fx low end ulna, r arm, subs for fx w malunion +C2848474|T037|AB|S59.001S|ICD10CM|Unsp physeal fx lower end of ulna, right arm, sequela|Unsp physeal fx lower end of ulna, right arm, sequela +C2848474|T037|PT|S59.001S|ICD10CM|Unspecified physeal fracture of lower end of ulna, right arm, sequela|Unspecified physeal fracture of lower end of ulna, right arm, sequela +C2848475|T037|AB|S59.002|ICD10CM|Unspecified physeal fracture of lower end of ulna, left arm|Unspecified physeal fracture of lower end of ulna, left arm +C2848475|T037|HT|S59.002|ICD10CM|Unspecified physeal fracture of lower end of ulna, left arm|Unspecified physeal fracture of lower end of ulna, left arm +C2848476|T037|AB|S59.002A|ICD10CM|Unsp physeal fracture of lower end of ulna, left arm, init|Unsp physeal fracture of lower end of ulna, left arm, init +C2848476|T037|PT|S59.002A|ICD10CM|Unspecified physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture|Unspecified physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture +C2848477|T037|AB|S59.002D|ICD10CM|Unsp physl fx low end ulna, l arm, subs for fx w routn heal|Unsp physl fx low end ulna, l arm, subs for fx w routn heal +C2848478|T037|AB|S59.002G|ICD10CM|Unsp physl fx low end ulna, l arm, subs for fx w delay heal|Unsp physl fx low end ulna, l arm, subs for fx w delay heal +C2848479|T037|AB|S59.002K|ICD10CM|Unsp physl fx low end ulna, left arm, subs for fx w nonunion|Unsp physl fx low end ulna, left arm, subs for fx w nonunion +C2848480|T037|AB|S59.002P|ICD10CM|Unsp physl fx low end ulna, left arm, subs for fx w malunion|Unsp physl fx low end ulna, left arm, subs for fx w malunion +C2848481|T037|AB|S59.002S|ICD10CM|Unsp physeal fx lower end of ulna, left arm, sequela|Unsp physeal fx lower end of ulna, left arm, sequela +C2848481|T037|PT|S59.002S|ICD10CM|Unspecified physeal fracture of lower end of ulna, left arm, sequela|Unspecified physeal fracture of lower end of ulna, left arm, sequela +C2848482|T037|AB|S59.009|ICD10CM|Unsp physeal fracture of lower end of ulna, unspecified arm|Unsp physeal fracture of lower end of ulna, unspecified arm +C2848482|T037|HT|S59.009|ICD10CM|Unspecified physeal fracture of lower end of ulna, unspecified arm|Unspecified physeal fracture of lower end of ulna, unspecified arm +C2848483|T037|AB|S59.009A|ICD10CM|Unsp physeal fracture of lower end of ulna, unsp arm, init|Unsp physeal fracture of lower end of ulna, unsp arm, init +C2848484|T037|AB|S59.009D|ICD10CM|Unsp physl fx low end ulna, unsp arm, 7thD|Unsp physl fx low end ulna, unsp arm, 7thD +C2848485|T037|AB|S59.009G|ICD10CM|Unsp physl fx low end ulna, unsp arm, 7thG|Unsp physl fx low end ulna, unsp arm, 7thG +C2848486|T037|AB|S59.009K|ICD10CM|Unsp physl fx low end ulna, unsp arm, subs for fx w nonunion|Unsp physl fx low end ulna, unsp arm, subs for fx w nonunion +C2848487|T037|AB|S59.009P|ICD10CM|Unsp physl fx low end ulna, unsp arm, subs for fx w malunion|Unsp physl fx low end ulna, unsp arm, subs for fx w malunion +C2848488|T037|AB|S59.009S|ICD10CM|Unsp physeal fx lower end of ulna, unsp arm, sequela|Unsp physeal fx lower end of ulna, unsp arm, sequela +C2848488|T037|PT|S59.009S|ICD10CM|Unspecified physeal fracture of lower end of ulna, unspecified arm, sequela|Unspecified physeal fracture of lower end of ulna, unspecified arm, sequela +C2848489|T037|AB|S59.01|ICD10CM|Salter-Harris Type I physeal fracture of lower end of ulna|Salter-Harris Type I physeal fracture of lower end of ulna +C2848489|T037|HT|S59.01|ICD10CM|Salter-Harris Type I physeal fracture of lower end of ulna|Salter-Harris Type I physeal fracture of lower end of ulna +C2848490|T037|HT|S59.011|ICD10CM|Salter-Harris Type I physeal fracture of lower end of ulna, right arm|Salter-Harris Type I physeal fracture of lower end of ulna, right arm +C2848490|T037|AB|S59.011|ICD10CM|Sltr-haris Type I physeal fx lower end of ulna, right arm|Sltr-haris Type I physeal fx lower end of ulna, right arm +C2848491|T037|AB|S59.011A|ICD10CM|Sltr-haris Type I physl fx lower end ulna, right arm, init|Sltr-haris Type I physl fx lower end ulna, right arm, init +C2848492|T037|AB|S59.011D|ICD10CM|Sltr-haris Type I physl fx low end ulna, r arm, 7thD|Sltr-haris Type I physl fx low end ulna, r arm, 7thD +C2848493|T037|AB|S59.011G|ICD10CM|Sltr-haris Type I physl fx low end ulna, r arm, 7thG|Sltr-haris Type I physl fx low end ulna, r arm, 7thG +C2848494|T037|AB|S59.011K|ICD10CM|Sltr-haris Type I physl fx low end ulna, r arm, 7thK|Sltr-haris Type I physl fx low end ulna, r arm, 7thK +C2848495|T037|AB|S59.011P|ICD10CM|Sltr-haris Type I physl fx low end ulna, r arm, 7thP|Sltr-haris Type I physl fx low end ulna, r arm, 7thP +C2848496|T037|PT|S59.011S|ICD10CM|Salter-Harris Type I physeal fracture of lower end of ulna, right arm, sequela|Salter-Harris Type I physeal fracture of lower end of ulna, right arm, sequela +C2848496|T037|AB|S59.011S|ICD10CM|Sltr-haris Type I physl fx lower end ulna, right arm, sqla|Sltr-haris Type I physl fx lower end ulna, right arm, sqla +C2848497|T037|HT|S59.012|ICD10CM|Salter-Harris Type I physeal fracture of lower end of ulna, left arm|Salter-Harris Type I physeal fracture of lower end of ulna, left arm +C2848497|T037|AB|S59.012|ICD10CM|Sltr-haris Type I physeal fx lower end of ulna, left arm|Sltr-haris Type I physeal fx lower end of ulna, left arm +C2848498|T037|AB|S59.012A|ICD10CM|Sltr-haris Type I physl fx lower end of ulna, left arm, init|Sltr-haris Type I physl fx lower end of ulna, left arm, init +C2848499|T037|AB|S59.012D|ICD10CM|Sltr-haris Type I physl fx low end ulna, l arm, 7thD|Sltr-haris Type I physl fx low end ulna, l arm, 7thD +C2848500|T037|AB|S59.012G|ICD10CM|Sltr-haris Type I physl fx low end ulna, l arm, 7thG|Sltr-haris Type I physl fx low end ulna, l arm, 7thG +C2848501|T037|AB|S59.012K|ICD10CM|Sltr-haris Type I physl fx low end ulna, l arm, 7thK|Sltr-haris Type I physl fx low end ulna, l arm, 7thK +C2848502|T037|AB|S59.012P|ICD10CM|Sltr-haris Type I physl fx low end ulna, l arm, 7thP|Sltr-haris Type I physl fx low end ulna, l arm, 7thP +C2848503|T037|PT|S59.012S|ICD10CM|Salter-Harris Type I physeal fracture of lower end of ulna, left arm, sequela|Salter-Harris Type I physeal fracture of lower end of ulna, left arm, sequela +C2848503|T037|AB|S59.012S|ICD10CM|Sltr-haris Type I physl fx lower end of ulna, left arm, sqla|Sltr-haris Type I physl fx lower end of ulna, left arm, sqla +C2848504|T037|HT|S59.019|ICD10CM|Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm|Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm +C2848504|T037|AB|S59.019|ICD10CM|Sltr-haris Type I physeal fx lower end of ulna, unsp arm|Sltr-haris Type I physeal fx lower end of ulna, unsp arm +C2848505|T037|AB|S59.019A|ICD10CM|Sltr-haris Type I physl fx lower end of ulna, unsp arm, init|Sltr-haris Type I physl fx lower end of ulna, unsp arm, init +C2848506|T037|AB|S59.019D|ICD10CM|Sltr-haris Type I physl fx low end ulna, unsp arm, 7thD|Sltr-haris Type I physl fx low end ulna, unsp arm, 7thD +C2848507|T037|AB|S59.019G|ICD10CM|Sltr-haris Type I physl fx low end ulna, unsp arm, 7thG|Sltr-haris Type I physl fx low end ulna, unsp arm, 7thG +C2848508|T037|AB|S59.019K|ICD10CM|Sltr-haris Type I physl fx low end ulna, unsp arm, 7thK|Sltr-haris Type I physl fx low end ulna, unsp arm, 7thK +C2848509|T037|AB|S59.019P|ICD10CM|Sltr-haris Type I physl fx low end ulna, unsp arm, 7thP|Sltr-haris Type I physl fx low end ulna, unsp arm, 7thP +C2848510|T037|PT|S59.019S|ICD10CM|Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, sequela|Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, sequela +C2848510|T037|AB|S59.019S|ICD10CM|Sltr-haris Type I physl fx lower end of ulna, unsp arm, sqla|Sltr-haris Type I physl fx lower end of ulna, unsp arm, sqla +C2848511|T037|AB|S59.02|ICD10CM|Salter-Harris Type II physeal fracture of lower end of ulna|Salter-Harris Type II physeal fracture of lower end of ulna +C2848511|T037|HT|S59.02|ICD10CM|Salter-Harris Type II physeal fracture of lower end of ulna|Salter-Harris Type II physeal fracture of lower end of ulna +C2848512|T037|HT|S59.021|ICD10CM|Salter-Harris Type II physeal fracture of lower end of ulna, right arm|Salter-Harris Type II physeal fracture of lower end of ulna, right arm +C2848512|T037|AB|S59.021|ICD10CM|Sltr-haris Type II physeal fx lower end of ulna, right arm|Sltr-haris Type II physeal fx lower end of ulna, right arm +C2848513|T037|AB|S59.021A|ICD10CM|Sltr-haris Type II physl fx lower end ulna, right arm, init|Sltr-haris Type II physl fx lower end ulna, right arm, init +C2848514|T037|AB|S59.021D|ICD10CM|Sltr-haris Type II physl fx low end ulna, r arm, 7thD|Sltr-haris Type II physl fx low end ulna, r arm, 7thD +C2848515|T037|AB|S59.021G|ICD10CM|Sltr-haris Type II physl fx low end ulna, r arm, 7thG|Sltr-haris Type II physl fx low end ulna, r arm, 7thG +C2848516|T037|AB|S59.021K|ICD10CM|Sltr-haris Type II physl fx low end ulna, r arm, 7thK|Sltr-haris Type II physl fx low end ulna, r arm, 7thK +C2848517|T037|AB|S59.021P|ICD10CM|Sltr-haris Type II physl fx low end ulna, r arm, 7thP|Sltr-haris Type II physl fx low end ulna, r arm, 7thP +C2848518|T037|PT|S59.021S|ICD10CM|Salter-Harris Type II physeal fracture of lower end of ulna, right arm, sequela|Salter-Harris Type II physeal fracture of lower end of ulna, right arm, sequela +C2848518|T037|AB|S59.021S|ICD10CM|Sltr-haris Type II physl fx lower end ulna, right arm, sqla|Sltr-haris Type II physl fx lower end ulna, right arm, sqla +C2848519|T037|HT|S59.022|ICD10CM|Salter-Harris Type II physeal fracture of lower end of ulna, left arm|Salter-Harris Type II physeal fracture of lower end of ulna, left arm +C2848519|T037|AB|S59.022|ICD10CM|Sltr-haris Type II physeal fx lower end of ulna, left arm|Sltr-haris Type II physeal fx lower end of ulna, left arm +C2848520|T037|AB|S59.022A|ICD10CM|Sltr-haris Type II physl fx lower end ulna, left arm, init|Sltr-haris Type II physl fx lower end ulna, left arm, init +C2848521|T037|AB|S59.022D|ICD10CM|Sltr-haris Type II physl fx low end ulna, l arm, 7thD|Sltr-haris Type II physl fx low end ulna, l arm, 7thD +C2848522|T037|AB|S59.022G|ICD10CM|Sltr-haris Type II physl fx low end ulna, l arm, 7thG|Sltr-haris Type II physl fx low end ulna, l arm, 7thG +C2848523|T037|AB|S59.022K|ICD10CM|Sltr-haris Type II physl fx low end ulna, l arm, 7thK|Sltr-haris Type II physl fx low end ulna, l arm, 7thK +C2848524|T037|AB|S59.022P|ICD10CM|Sltr-haris Type II physl fx low end ulna, l arm, 7thP|Sltr-haris Type II physl fx low end ulna, l arm, 7thP +C2848525|T037|PT|S59.022S|ICD10CM|Salter-Harris Type II physeal fracture of lower end of ulna, left arm, sequela|Salter-Harris Type II physeal fracture of lower end of ulna, left arm, sequela +C2848525|T037|AB|S59.022S|ICD10CM|Sltr-haris Type II physl fx lower end ulna, left arm, sqla|Sltr-haris Type II physl fx lower end ulna, left arm, sqla +C2848526|T037|HT|S59.029|ICD10CM|Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm|Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm +C2848526|T037|AB|S59.029|ICD10CM|Sltr-haris Type II physeal fx lower end of ulna, unsp arm|Sltr-haris Type II physeal fx lower end of ulna, unsp arm +C2848527|T037|AB|S59.029A|ICD10CM|Sltr-haris Type II physl fx lower end ulna, unsp arm, init|Sltr-haris Type II physl fx lower end ulna, unsp arm, init +C2848528|T037|AB|S59.029D|ICD10CM|Sltr-haris Type II physl fx low end ulna, unsp arm, 7thD|Sltr-haris Type II physl fx low end ulna, unsp arm, 7thD +C2848529|T037|AB|S59.029G|ICD10CM|Sltr-haris Type II physl fx low end ulna, unsp arm, 7thG|Sltr-haris Type II physl fx low end ulna, unsp arm, 7thG +C2848530|T037|AB|S59.029K|ICD10CM|Sltr-haris Type II physl fx low end ulna, unsp arm, 7thK|Sltr-haris Type II physl fx low end ulna, unsp arm, 7thK +C2848531|T037|AB|S59.029P|ICD10CM|Sltr-haris Type II physl fx low end ulna, unsp arm, 7thP|Sltr-haris Type II physl fx low end ulna, unsp arm, 7thP +C2848532|T037|PT|S59.029S|ICD10CM|Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, sequela|Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, sequela +C2848532|T037|AB|S59.029S|ICD10CM|Sltr-haris Type II physl fx lower end ulna, unsp arm, sqla|Sltr-haris Type II physl fx lower end ulna, unsp arm, sqla +C2848533|T037|AB|S59.03|ICD10CM|Salter-Harris Type III physeal fracture of lower end of ulna|Salter-Harris Type III physeal fracture of lower end of ulna +C2848533|T037|HT|S59.03|ICD10CM|Salter-Harris Type III physeal fracture of lower end of ulna|Salter-Harris Type III physeal fracture of lower end of ulna +C2848534|T037|HT|S59.031|ICD10CM|Salter-Harris Type III physeal fracture of lower end of ulna, right arm|Salter-Harris Type III physeal fracture of lower end of ulna, right arm +C2848534|T037|AB|S59.031|ICD10CM|Sltr-haris Type III physeal fx lower end of ulna, right arm|Sltr-haris Type III physeal fx lower end of ulna, right arm +C2848535|T037|AB|S59.031A|ICD10CM|Sltr-haris Type III physl fx lower end ulna, right arm, init|Sltr-haris Type III physl fx lower end ulna, right arm, init +C2848536|T037|AB|S59.031D|ICD10CM|Sltr-haris Type III physl fx low end ulna, r arm, 7thD|Sltr-haris Type III physl fx low end ulna, r arm, 7thD +C2848537|T037|AB|S59.031G|ICD10CM|Sltr-haris Type III physl fx low end ulna, r arm, 7thG|Sltr-haris Type III physl fx low end ulna, r arm, 7thG +C2848538|T037|AB|S59.031K|ICD10CM|Sltr-haris Type III physl fx low end ulna, r arm, 7thK|Sltr-haris Type III physl fx low end ulna, r arm, 7thK +C2848539|T037|AB|S59.031P|ICD10CM|Sltr-haris Type III physl fx low end ulna, r arm, 7thP|Sltr-haris Type III physl fx low end ulna, r arm, 7thP +C2848540|T037|PT|S59.031S|ICD10CM|Salter-Harris Type III physeal fracture of lower end of ulna, right arm, sequela|Salter-Harris Type III physeal fracture of lower end of ulna, right arm, sequela +C2848540|T037|AB|S59.031S|ICD10CM|Sltr-haris Type III physl fx lower end ulna, right arm, sqla|Sltr-haris Type III physl fx lower end ulna, right arm, sqla +C2848541|T037|HT|S59.032|ICD10CM|Salter-Harris Type III physeal fracture of lower end of ulna, left arm|Salter-Harris Type III physeal fracture of lower end of ulna, left arm +C2848541|T037|AB|S59.032|ICD10CM|Sltr-haris Type III physeal fx lower end of ulna, left arm|Sltr-haris Type III physeal fx lower end of ulna, left arm +C2848542|T037|AB|S59.032A|ICD10CM|Sltr-haris Type III physl fx lower end ulna, left arm, init|Sltr-haris Type III physl fx lower end ulna, left arm, init +C2848543|T037|AB|S59.032D|ICD10CM|Sltr-haris Type III physl fx low end ulna, l arm, 7thD|Sltr-haris Type III physl fx low end ulna, l arm, 7thD +C2848544|T037|AB|S59.032G|ICD10CM|Sltr-haris Type III physl fx low end ulna, l arm, 7thG|Sltr-haris Type III physl fx low end ulna, l arm, 7thG +C2848545|T037|AB|S59.032K|ICD10CM|Sltr-haris Type III physl fx low end ulna, l arm, 7thK|Sltr-haris Type III physl fx low end ulna, l arm, 7thK +C2848546|T037|AB|S59.032P|ICD10CM|Sltr-haris Type III physl fx low end ulna, l arm, 7thP|Sltr-haris Type III physl fx low end ulna, l arm, 7thP +C2848547|T037|PT|S59.032S|ICD10CM|Salter-Harris Type III physeal fracture of lower end of ulna, left arm, sequela|Salter-Harris Type III physeal fracture of lower end of ulna, left arm, sequela +C2848547|T037|AB|S59.032S|ICD10CM|Sltr-haris Type III physl fx lower end ulna, left arm, sqla|Sltr-haris Type III physl fx lower end ulna, left arm, sqla +C2848548|T037|HT|S59.039|ICD10CM|Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm|Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm +C2848548|T037|AB|S59.039|ICD10CM|Sltr-haris Type III physeal fx lower end of ulna, unsp arm|Sltr-haris Type III physeal fx lower end of ulna, unsp arm +C2848549|T037|AB|S59.039A|ICD10CM|Sltr-haris Type III physl fx lower end ulna, unsp arm, init|Sltr-haris Type III physl fx lower end ulna, unsp arm, init +C2848550|T037|AB|S59.039D|ICD10CM|Sltr-haris Type III physl fx low end ulna, unsp arm, 7thD|Sltr-haris Type III physl fx low end ulna, unsp arm, 7thD +C2848551|T037|AB|S59.039G|ICD10CM|Sltr-haris Type III physl fx low end ulna, unsp arm, 7thG|Sltr-haris Type III physl fx low end ulna, unsp arm, 7thG +C2848552|T037|AB|S59.039K|ICD10CM|Sltr-haris Type III physl fx low end ulna, unsp arm, 7thK|Sltr-haris Type III physl fx low end ulna, unsp arm, 7thK +C2848553|T037|AB|S59.039P|ICD10CM|Sltr-haris Type III physl fx low end ulna, unsp arm, 7thP|Sltr-haris Type III physl fx low end ulna, unsp arm, 7thP +C2848554|T037|PT|S59.039S|ICD10CM|Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, sequela|Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, sequela +C2848554|T037|AB|S59.039S|ICD10CM|Sltr-haris Type III physl fx lower end ulna, unsp arm, sqla|Sltr-haris Type III physl fx lower end ulna, unsp arm, sqla +C2848555|T037|AB|S59.04|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of ulna|Salter-Harris Type IV physeal fracture of lower end of ulna +C2848555|T037|HT|S59.04|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of ulna|Salter-Harris Type IV physeal fracture of lower end of ulna +C2848556|T037|HT|S59.041|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of ulna, right arm|Salter-Harris Type IV physeal fracture of lower end of ulna, right arm +C2848556|T037|AB|S59.041|ICD10CM|Sltr-haris Type IV physeal fx lower end of ulna, right arm|Sltr-haris Type IV physeal fx lower end of ulna, right arm +C2848557|T037|AB|S59.041A|ICD10CM|Sltr-haris Type IV physl fx lower end ulna, right arm, init|Sltr-haris Type IV physl fx lower end ulna, right arm, init +C2848558|T037|AB|S59.041D|ICD10CM|Sltr-haris Type IV physl fx low end ulna, r arm, 7thD|Sltr-haris Type IV physl fx low end ulna, r arm, 7thD +C2848559|T037|AB|S59.041G|ICD10CM|Sltr-haris Type IV physl fx low end ulna, r arm, 7thG|Sltr-haris Type IV physl fx low end ulna, r arm, 7thG +C2848560|T037|AB|S59.041K|ICD10CM|Sltr-haris Type IV physl fx low end ulna, r arm, 7thK|Sltr-haris Type IV physl fx low end ulna, r arm, 7thK +C2848561|T037|AB|S59.041P|ICD10CM|Sltr-haris Type IV physl fx low end ulna, r arm, 7thP|Sltr-haris Type IV physl fx low end ulna, r arm, 7thP +C2848562|T037|PT|S59.041S|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, sequela|Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, sequela +C2848562|T037|AB|S59.041S|ICD10CM|Sltr-haris Type IV physl fx lower end ulna, right arm, sqla|Sltr-haris Type IV physl fx lower end ulna, right arm, sqla +C2848563|T037|HT|S59.042|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of ulna, left arm|Salter-Harris Type IV physeal fracture of lower end of ulna, left arm +C2848563|T037|AB|S59.042|ICD10CM|Sltr-haris Type IV physeal fx lower end of ulna, left arm|Sltr-haris Type IV physeal fx lower end of ulna, left arm +C2848564|T037|AB|S59.042A|ICD10CM|Sltr-haris Type IV physl fx lower end ulna, left arm, init|Sltr-haris Type IV physl fx lower end ulna, left arm, init +C2848565|T037|AB|S59.042D|ICD10CM|Sltr-haris Type IV physl fx low end ulna, l arm, 7thD|Sltr-haris Type IV physl fx low end ulna, l arm, 7thD +C2848566|T037|AB|S59.042G|ICD10CM|Sltr-haris Type IV physl fx low end ulna, l arm, 7thG|Sltr-haris Type IV physl fx low end ulna, l arm, 7thG +C2848567|T037|AB|S59.042K|ICD10CM|Sltr-haris Type IV physl fx low end ulna, l arm, 7thK|Sltr-haris Type IV physl fx low end ulna, l arm, 7thK +C2848568|T037|AB|S59.042P|ICD10CM|Sltr-haris Type IV physl fx low end ulna, l arm, 7thP|Sltr-haris Type IV physl fx low end ulna, l arm, 7thP +C2848569|T037|PT|S59.042S|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, sequela|Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, sequela +C2848569|T037|AB|S59.042S|ICD10CM|Sltr-haris Type IV physl fx lower end ulna, left arm, sqla|Sltr-haris Type IV physl fx lower end ulna, left arm, sqla +C2848570|T037|HT|S59.049|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm|Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm +C2848570|T037|AB|S59.049|ICD10CM|Sltr-haris Type IV physeal fx lower end of ulna, unsp arm|Sltr-haris Type IV physeal fx lower end of ulna, unsp arm +C2848571|T037|AB|S59.049A|ICD10CM|Sltr-haris Type IV physl fx lower end ulna, unsp arm, init|Sltr-haris Type IV physl fx lower end ulna, unsp arm, init +C2848572|T037|AB|S59.049D|ICD10CM|Sltr-haris Type IV physl fx low end ulna, unsp arm, 7thD|Sltr-haris Type IV physl fx low end ulna, unsp arm, 7thD +C2848573|T037|AB|S59.049G|ICD10CM|Sltr-haris Type IV physl fx low end ulna, unsp arm, 7thG|Sltr-haris Type IV physl fx low end ulna, unsp arm, 7thG +C2848574|T037|AB|S59.049K|ICD10CM|Sltr-haris Type IV physl fx low end ulna, unsp arm, 7thK|Sltr-haris Type IV physl fx low end ulna, unsp arm, 7thK +C2848575|T037|AB|S59.049P|ICD10CM|Sltr-haris Type IV physl fx low end ulna, unsp arm, 7thP|Sltr-haris Type IV physl fx low end ulna, unsp arm, 7thP +C2848576|T037|PT|S59.049S|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, sequela|Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, sequela +C2848576|T037|AB|S59.049S|ICD10CM|Sltr-haris Type IV physl fx lower end ulna, unsp arm, sqla|Sltr-haris Type IV physl fx lower end ulna, unsp arm, sqla +C2848577|T037|AB|S59.09|ICD10CM|Other physeal fracture of lower end of ulna|Other physeal fracture of lower end of ulna +C2848577|T037|HT|S59.09|ICD10CM|Other physeal fracture of lower end of ulna|Other physeal fracture of lower end of ulna +C2848578|T037|AB|S59.091|ICD10CM|Other physeal fracture of lower end of ulna, right arm|Other physeal fracture of lower end of ulna, right arm +C2848578|T037|HT|S59.091|ICD10CM|Other physeal fracture of lower end of ulna, right arm|Other physeal fracture of lower end of ulna, right arm +C2848579|T037|AB|S59.091A|ICD10CM|Oth physeal fracture of lower end of ulna, right arm, init|Oth physeal fracture of lower end of ulna, right arm, init +C2848579|T037|PT|S59.091A|ICD10CM|Other physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture|Other physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture +C2848580|T037|AB|S59.091D|ICD10CM|Oth physl fx low end ulna, r arm, subs for fx w routn heal|Oth physl fx low end ulna, r arm, subs for fx w routn heal +C2848581|T037|AB|S59.091G|ICD10CM|Oth physl fx low end ulna, r arm, subs for fx w delay heal|Oth physl fx low end ulna, r arm, subs for fx w delay heal +C2848582|T037|AB|S59.091K|ICD10CM|Oth physl fx low end ulna, right arm, subs for fx w nonunion|Oth physl fx low end ulna, right arm, subs for fx w nonunion +C2848583|T037|AB|S59.091P|ICD10CM|Oth physl fx low end ulna, right arm, subs for fx w malunion|Oth physl fx low end ulna, right arm, subs for fx w malunion +C2848584|T037|AB|S59.091S|ICD10CM|Oth physeal fx lower end of ulna, right arm, sequela|Oth physeal fx lower end of ulna, right arm, sequela +C2848584|T037|PT|S59.091S|ICD10CM|Other physeal fracture of lower end of ulna, right arm, sequela|Other physeal fracture of lower end of ulna, right arm, sequela +C2848585|T037|AB|S59.092|ICD10CM|Other physeal fracture of lower end of ulna, left arm|Other physeal fracture of lower end of ulna, left arm +C2848585|T037|HT|S59.092|ICD10CM|Other physeal fracture of lower end of ulna, left arm|Other physeal fracture of lower end of ulna, left arm +C2848586|T037|AB|S59.092A|ICD10CM|Oth physeal fracture of lower end of ulna, left arm, init|Oth physeal fracture of lower end of ulna, left arm, init +C2848586|T037|PT|S59.092A|ICD10CM|Other physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture|Other physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture +C2848587|T037|AB|S59.092D|ICD10CM|Oth physl fx low end ulna, l arm, subs for fx w routn heal|Oth physl fx low end ulna, l arm, subs for fx w routn heal +C2848588|T037|AB|S59.092G|ICD10CM|Oth physl fx low end ulna, l arm, subs for fx w delay heal|Oth physl fx low end ulna, l arm, subs for fx w delay heal +C2848589|T037|AB|S59.092K|ICD10CM|Oth physl fx low end ulna, left arm, subs for fx w nonunion|Oth physl fx low end ulna, left arm, subs for fx w nonunion +C2848590|T037|AB|S59.092P|ICD10CM|Oth physl fx low end ulna, left arm, subs for fx w malunion|Oth physl fx low end ulna, left arm, subs for fx w malunion +C2848591|T037|AB|S59.092S|ICD10CM|Oth physeal fracture of lower end of ulna, left arm, sequela|Oth physeal fracture of lower end of ulna, left arm, sequela +C2848591|T037|PT|S59.092S|ICD10CM|Other physeal fracture of lower end of ulna, left arm, sequela|Other physeal fracture of lower end of ulna, left arm, sequela +C2848592|T037|AB|S59.099|ICD10CM|Other physeal fracture of lower end of ulna, unspecified arm|Other physeal fracture of lower end of ulna, unspecified arm +C2848592|T037|HT|S59.099|ICD10CM|Other physeal fracture of lower end of ulna, unspecified arm|Other physeal fracture of lower end of ulna, unspecified arm +C2848593|T037|AB|S59.099A|ICD10CM|Oth physeal fracture of lower end of ulna, unsp arm, init|Oth physeal fracture of lower end of ulna, unsp arm, init +C2848593|T037|PT|S59.099A|ICD10CM|Other physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture|Other physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture +C2848594|T037|AB|S59.099D|ICD10CM|Oth physl fx low end ulna, unsp arm, 7thD|Oth physl fx low end ulna, unsp arm, 7thD +C2848595|T037|AB|S59.099G|ICD10CM|Oth physl fx low end ulna, unsp arm, 7thG|Oth physl fx low end ulna, unsp arm, 7thG +C2848596|T037|AB|S59.099K|ICD10CM|Oth physl fx low end ulna, unsp arm, subs for fx w nonunion|Oth physl fx low end ulna, unsp arm, subs for fx w nonunion +C2848597|T037|AB|S59.099P|ICD10CM|Oth physl fx low end ulna, unsp arm, subs for fx w malunion|Oth physl fx low end ulna, unsp arm, subs for fx w malunion +C2848598|T037|AB|S59.099S|ICD10CM|Oth physeal fracture of lower end of ulna, unsp arm, sequela|Oth physeal fracture of lower end of ulna, unsp arm, sequela +C2848598|T037|PT|S59.099S|ICD10CM|Other physeal fracture of lower end of ulna, unspecified arm, sequela|Other physeal fracture of lower end of ulna, unspecified arm, sequela +C2848599|T037|AB|S59.1|ICD10CM|Physeal fracture of upper end of radius|Physeal fracture of upper end of radius +C2848599|T037|HT|S59.1|ICD10CM|Physeal fracture of upper end of radius|Physeal fracture of upper end of radius +C2848600|T037|AB|S59.10|ICD10CM|Unspecified physeal fracture of upper end of radius|Unspecified physeal fracture of upper end of radius +C2848600|T037|HT|S59.10|ICD10CM|Unspecified physeal fracture of upper end of radius|Unspecified physeal fracture of upper end of radius +C2848601|T037|AB|S59.101|ICD10CM|Unsp physeal fracture of upper end of radius, right arm|Unsp physeal fracture of upper end of radius, right arm +C2848601|T037|HT|S59.101|ICD10CM|Unspecified physeal fracture of upper end of radius, right arm|Unspecified physeal fracture of upper end of radius, right arm +C2848602|T037|AB|S59.101A|ICD10CM|Unsp physeal fracture of upper end radius, right arm, init|Unsp physeal fracture of upper end radius, right arm, init +C2848603|T037|AB|S59.101D|ICD10CM|Unsp physl fx upper end rad, r arm, subs for fx w routn heal|Unsp physl fx upper end rad, r arm, subs for fx w routn heal +C2848604|T037|AB|S59.101G|ICD10CM|Unsp physl fx upper end rad, r arm, subs for fx w delay heal|Unsp physl fx upper end rad, r arm, subs for fx w delay heal +C2848605|T037|AB|S59.101K|ICD10CM|Unsp physl fx upper end rad, r arm, subs for fx w nonunion|Unsp physl fx upper end rad, r arm, subs for fx w nonunion +C2848606|T037|AB|S59.101P|ICD10CM|Unsp physl fx upper end rad, r arm, subs for fx w malunion|Unsp physl fx upper end rad, r arm, subs for fx w malunion +C2848607|T037|AB|S59.101S|ICD10CM|Unsp physeal fx upper end radius, right arm, sequela|Unsp physeal fx upper end radius, right arm, sequela +C2848607|T037|PT|S59.101S|ICD10CM|Unspecified physeal fracture of upper end of radius, right arm, sequela|Unspecified physeal fracture of upper end of radius, right arm, sequela +C2848608|T037|AB|S59.102|ICD10CM|Unsp physeal fracture of upper end of radius, left arm|Unsp physeal fracture of upper end of radius, left arm +C2848608|T037|HT|S59.102|ICD10CM|Unspecified physeal fracture of upper end of radius, left arm|Unspecified physeal fracture of upper end of radius, left arm +C2848609|T037|AB|S59.102A|ICD10CM|Unsp physeal fracture of upper end of radius, left arm, init|Unsp physeal fracture of upper end of radius, left arm, init +C2848609|T037|PT|S59.102A|ICD10CM|Unspecified physeal fracture of upper end of radius, left arm, initial encounter for closed fracture|Unspecified physeal fracture of upper end of radius, left arm, initial encounter for closed fracture +C2848610|T037|AB|S59.102D|ICD10CM|Unsp physl fx upr end rad, l arm, subs for fx w routn heal|Unsp physl fx upr end rad, l arm, subs for fx w routn heal +C2848611|T037|AB|S59.102G|ICD10CM|Unsp physl fx upr end rad, l arm, subs for fx w delay heal|Unsp physl fx upr end rad, l arm, subs for fx w delay heal +C2848612|T037|AB|S59.102K|ICD10CM|Unsp physl fx upr end rad, left arm, subs for fx w nonunion|Unsp physl fx upr end rad, left arm, subs for fx w nonunion +C2848613|T037|AB|S59.102P|ICD10CM|Unsp physl fx upr end rad, left arm, subs for fx w malunion|Unsp physl fx upr end rad, left arm, subs for fx w malunion +C2848614|T037|AB|S59.102S|ICD10CM|Unsp physeal fracture of upper end radius, left arm, sequela|Unsp physeal fracture of upper end radius, left arm, sequela +C2848614|T037|PT|S59.102S|ICD10CM|Unspecified physeal fracture of upper end of radius, left arm, sequela|Unspecified physeal fracture of upper end of radius, left arm, sequela +C2848615|T037|AB|S59.109|ICD10CM|Unsp physeal fracture of upper end of radius, unsp arm|Unsp physeal fracture of upper end of radius, unsp arm +C2848615|T037|HT|S59.109|ICD10CM|Unspecified physeal fracture of upper end of radius, unspecified arm|Unspecified physeal fracture of upper end of radius, unspecified arm +C2848616|T037|AB|S59.109A|ICD10CM|Unsp physeal fracture of upper end of radius, unsp arm, init|Unsp physeal fracture of upper end of radius, unsp arm, init +C2848617|T037|AB|S59.109D|ICD10CM|Unsp physl fx upr end rad, unsp arm, 7thD|Unsp physl fx upr end rad, unsp arm, 7thD +C2848618|T037|AB|S59.109G|ICD10CM|Unsp physl fx upr end rad, unsp arm, 7thG|Unsp physl fx upr end rad, unsp arm, 7thG +C2848619|T037|AB|S59.109K|ICD10CM|Unsp physl fx upr end rad, unsp arm, subs for fx w nonunion|Unsp physl fx upr end rad, unsp arm, subs for fx w nonunion +C2848620|T037|AB|S59.109P|ICD10CM|Unsp physl fx upr end rad, unsp arm, subs for fx w malunion|Unsp physl fx upr end rad, unsp arm, subs for fx w malunion +C2848621|T037|AB|S59.109S|ICD10CM|Unsp physeal fracture of upper end radius, unsp arm, sequela|Unsp physeal fracture of upper end radius, unsp arm, sequela +C2848621|T037|PT|S59.109S|ICD10CM|Unspecified physeal fracture of upper end of radius, unspecified arm, sequela|Unspecified physeal fracture of upper end of radius, unspecified arm, sequela +C2848622|T037|AB|S59.11|ICD10CM|Salter-Harris Type I physeal fracture of upper end of radius|Salter-Harris Type I physeal fracture of upper end of radius +C2848622|T037|HT|S59.11|ICD10CM|Salter-Harris Type I physeal fracture of upper end of radius|Salter-Harris Type I physeal fracture of upper end of radius +C2848623|T037|HT|S59.111|ICD10CM|Salter-Harris Type I physeal fracture of upper end of radius, right arm|Salter-Harris Type I physeal fracture of upper end of radius, right arm +C2848623|T037|AB|S59.111|ICD10CM|Sltr-haris Type I physeal fx upper end radius, right arm|Sltr-haris Type I physeal fx upper end radius, right arm +C2848624|T037|AB|S59.111A|ICD10CM|Sltr-haris Type I physl fx upper end radius, right arm, init|Sltr-haris Type I physl fx upper end radius, right arm, init +C2848625|T037|AB|S59.111D|ICD10CM|Sltr-haris Type I physl fx upr end rad, r arm, 7thD|Sltr-haris Type I physl fx upr end rad, r arm, 7thD +C2848626|T037|AB|S59.111G|ICD10CM|Sltr-haris Type I physl fx upr end rad, r arm, 7thG|Sltr-haris Type I physl fx upr end rad, r arm, 7thG +C2848627|T037|AB|S59.111K|ICD10CM|Sltr-haris Type I physl fx upr end rad, r arm, 7thK|Sltr-haris Type I physl fx upr end rad, r arm, 7thK +C2848628|T037|AB|S59.111P|ICD10CM|Sltr-haris Type I physl fx upr end rad, r arm, 7thP|Sltr-haris Type I physl fx upr end rad, r arm, 7thP +C2848629|T037|PT|S59.111S|ICD10CM|Salter-Harris Type I physeal fracture of upper end of radius, right arm, sequela|Salter-Harris Type I physeal fracture of upper end of radius, right arm, sequela +C2848629|T037|AB|S59.111S|ICD10CM|Sltr-haris Type I physl fx upper end radius, right arm, sqla|Sltr-haris Type I physl fx upper end radius, right arm, sqla +C2848630|T037|HT|S59.112|ICD10CM|Salter-Harris Type I physeal fracture of upper end of radius, left arm|Salter-Harris Type I physeal fracture of upper end of radius, left arm +C2848630|T037|AB|S59.112|ICD10CM|Sltr-haris Type I physeal fx upper end radius, left arm|Sltr-haris Type I physeal fx upper end radius, left arm +C2848631|T037|AB|S59.112A|ICD10CM|Sltr-haris Type I physl fx upper end radius, left arm, init|Sltr-haris Type I physl fx upper end radius, left arm, init +C2848632|T037|AB|S59.112D|ICD10CM|Sltr-haris Type I physl fx upr end rad, l arm, 7thD|Sltr-haris Type I physl fx upr end rad, l arm, 7thD +C2848633|T037|AB|S59.112G|ICD10CM|Sltr-haris Type I physl fx upr end rad, l arm, 7thG|Sltr-haris Type I physl fx upr end rad, l arm, 7thG +C2848634|T037|AB|S59.112K|ICD10CM|Sltr-haris Type I physl fx upr end rad, l arm, 7thK|Sltr-haris Type I physl fx upr end rad, l arm, 7thK +C2848635|T037|AB|S59.112P|ICD10CM|Sltr-haris Type I physl fx upr end rad, l arm, 7thP|Sltr-haris Type I physl fx upr end rad, l arm, 7thP +C2848636|T037|PT|S59.112S|ICD10CM|Salter-Harris Type I physeal fracture of upper end of radius, left arm, sequela|Salter-Harris Type I physeal fracture of upper end of radius, left arm, sequela +C2848636|T037|AB|S59.112S|ICD10CM|Sltr-haris Type I physl fx upper end radius, left arm, sqla|Sltr-haris Type I physl fx upper end radius, left arm, sqla +C2848637|T037|HT|S59.119|ICD10CM|Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm|Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm +C2848637|T037|AB|S59.119|ICD10CM|Sltr-haris Type I physeal fx upper end radius, unsp arm|Sltr-haris Type I physeal fx upper end radius, unsp arm +C2848638|T037|AB|S59.119A|ICD10CM|Sltr-haris Type I physl fx upper end radius, unsp arm, init|Sltr-haris Type I physl fx upper end radius, unsp arm, init +C2848639|T037|AB|S59.119D|ICD10CM|Sltr-haris Type I physl fx upr end rad, unsp arm, 7thD|Sltr-haris Type I physl fx upr end rad, unsp arm, 7thD +C2848640|T037|AB|S59.119G|ICD10CM|Sltr-haris Type I physl fx upr end rad, unsp arm, 7thG|Sltr-haris Type I physl fx upr end rad, unsp arm, 7thG +C2848641|T037|AB|S59.119K|ICD10CM|Sltr-haris Type I physl fx upr end rad, unsp arm, 7thK|Sltr-haris Type I physl fx upr end rad, unsp arm, 7thK +C2848642|T037|AB|S59.119P|ICD10CM|Sltr-haris Type I physl fx upr end rad, unsp arm, 7thP|Sltr-haris Type I physl fx upr end rad, unsp arm, 7thP +C2848643|T037|PT|S59.119S|ICD10CM|Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, sequela|Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, sequela +C2848643|T037|AB|S59.119S|ICD10CM|Sltr-haris Type I physl fx upper end radius, unsp arm, sqla|Sltr-haris Type I physl fx upper end radius, unsp arm, sqla +C2848644|T037|HT|S59.12|ICD10CM|Salter-Harris Type II physeal fracture of upper end of radius|Salter-Harris Type II physeal fracture of upper end of radius +C2848644|T037|AB|S59.12|ICD10CM|Salter-Harris Type II physeal fracture of upper end radius|Salter-Harris Type II physeal fracture of upper end radius +C2848645|T037|HT|S59.121|ICD10CM|Salter-Harris Type II physeal fracture of upper end of radius, right arm|Salter-Harris Type II physeal fracture of upper end of radius, right arm +C2848645|T037|AB|S59.121|ICD10CM|Sltr-haris Type II physeal fx upper end radius, right arm|Sltr-haris Type II physeal fx upper end radius, right arm +C2848646|T037|AB|S59.121A|ICD10CM|Sltr-haris Type II physl fx upper end rad, right arm, init|Sltr-haris Type II physl fx upper end rad, right arm, init +C2848647|T037|AB|S59.121D|ICD10CM|Sltr-haris Type II physl fx upr end rad, r arm, 7thD|Sltr-haris Type II physl fx upr end rad, r arm, 7thD +C2848648|T037|AB|S59.121G|ICD10CM|Sltr-haris Type II physl fx upr end rad, r arm, 7thG|Sltr-haris Type II physl fx upr end rad, r arm, 7thG +C2848649|T037|AB|S59.121K|ICD10CM|Sltr-haris Type II physl fx upr end rad, r arm, 7thK|Sltr-haris Type II physl fx upr end rad, r arm, 7thK +C2848650|T037|AB|S59.121P|ICD10CM|Sltr-haris Type II physl fx upr end rad, r arm, 7thP|Sltr-haris Type II physl fx upr end rad, r arm, 7thP +C2848651|T037|PT|S59.121S|ICD10CM|Salter-Harris Type II physeal fracture of upper end of radius, right arm, sequela|Salter-Harris Type II physeal fracture of upper end of radius, right arm, sequela +C2848651|T037|AB|S59.121S|ICD10CM|Sltr-haris Type II physl fx upper end rad, right arm, sqla|Sltr-haris Type II physl fx upper end rad, right arm, sqla +C2848652|T037|HT|S59.122|ICD10CM|Salter-Harris Type II physeal fracture of upper end of radius, left arm|Salter-Harris Type II physeal fracture of upper end of radius, left arm +C2848652|T037|AB|S59.122|ICD10CM|Sltr-haris Type II physeal fx upper end radius, left arm|Sltr-haris Type II physeal fx upper end radius, left arm +C2848653|T037|AB|S59.122A|ICD10CM|Sltr-haris Type II physl fx upper end radius, left arm, init|Sltr-haris Type II physl fx upper end radius, left arm, init +C2848654|T037|AB|S59.122D|ICD10CM|Sltr-haris Type II physl fx upr end rad, l arm, 7thD|Sltr-haris Type II physl fx upr end rad, l arm, 7thD +C2848655|T037|AB|S59.122G|ICD10CM|Sltr-haris Type II physl fx upr end rad, l arm, 7thG|Sltr-haris Type II physl fx upr end rad, l arm, 7thG +C2848656|T037|AB|S59.122K|ICD10CM|Sltr-haris Type II physl fx upr end rad, l arm, 7thK|Sltr-haris Type II physl fx upr end rad, l arm, 7thK +C2848657|T037|AB|S59.122P|ICD10CM|Sltr-haris Type II physl fx upr end rad, l arm, 7thP|Sltr-haris Type II physl fx upr end rad, l arm, 7thP +C2848658|T037|PT|S59.122S|ICD10CM|Salter-Harris Type II physeal fracture of upper end of radius, left arm, sequela|Salter-Harris Type II physeal fracture of upper end of radius, left arm, sequela +C2848658|T037|AB|S59.122S|ICD10CM|Sltr-haris Type II physl fx upper end radius, left arm, sqla|Sltr-haris Type II physl fx upper end radius, left arm, sqla +C2848659|T037|HT|S59.129|ICD10CM|Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm|Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm +C2848659|T037|AB|S59.129|ICD10CM|Sltr-haris Type II physeal fx upper end radius, unsp arm|Sltr-haris Type II physeal fx upper end radius, unsp arm +C2848660|T037|AB|S59.129A|ICD10CM|Sltr-haris Type II physl fx upper end radius, unsp arm, init|Sltr-haris Type II physl fx upper end radius, unsp arm, init +C2848661|T037|AB|S59.129D|ICD10CM|Sltr-haris Type II physl fx upr end rad, unsp arm, 7thD|Sltr-haris Type II physl fx upr end rad, unsp arm, 7thD +C2848662|T037|AB|S59.129G|ICD10CM|Sltr-haris Type II physl fx upr end rad, unsp arm, 7thG|Sltr-haris Type II physl fx upr end rad, unsp arm, 7thG +C2848663|T037|AB|S59.129K|ICD10CM|Sltr-haris Type II physl fx upr end rad, unsp arm, 7thK|Sltr-haris Type II physl fx upr end rad, unsp arm, 7thK +C2848664|T037|AB|S59.129P|ICD10CM|Sltr-haris Type II physl fx upr end rad, unsp arm, 7thP|Sltr-haris Type II physl fx upr end rad, unsp arm, 7thP +C2848665|T037|PT|S59.129S|ICD10CM|Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, sequela|Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, sequela +C2848665|T037|AB|S59.129S|ICD10CM|Sltr-haris Type II physl fx upper end radius, unsp arm, sqla|Sltr-haris Type II physl fx upper end radius, unsp arm, sqla +C2848666|T037|HT|S59.13|ICD10CM|Salter-Harris Type III physeal fracture of upper end of radius|Salter-Harris Type III physeal fracture of upper end of radius +C2848666|T037|AB|S59.13|ICD10CM|Salter-Harris Type III physeal fracture of upper end radius|Salter-Harris Type III physeal fracture of upper end radius +C2848667|T037|HT|S59.131|ICD10CM|Salter-Harris Type III physeal fracture of upper end of radius, right arm|Salter-Harris Type III physeal fracture of upper end of radius, right arm +C2848667|T037|AB|S59.131|ICD10CM|Sltr-haris Type III physeal fx upper end radius, right arm|Sltr-haris Type III physeal fx upper end radius, right arm +C2848668|T037|AB|S59.131A|ICD10CM|Sltr-haris Type III physl fx upper end rad, right arm, init|Sltr-haris Type III physl fx upper end rad, right arm, init +C2848669|T037|AB|S59.131D|ICD10CM|Sltr-haris Type III physl fx upr end rad, r arm, 7thD|Sltr-haris Type III physl fx upr end rad, r arm, 7thD +C2848670|T037|AB|S59.131G|ICD10CM|Sltr-haris Type III physl fx upr end rad, r arm, 7thG|Sltr-haris Type III physl fx upr end rad, r arm, 7thG +C2848671|T037|AB|S59.131K|ICD10CM|Sltr-haris Type III physl fx upr end rad, r arm, 7thK|Sltr-haris Type III physl fx upr end rad, r arm, 7thK +C2848672|T037|AB|S59.131P|ICD10CM|Sltr-haris Type III physl fx upr end rad, r arm, 7thP|Sltr-haris Type III physl fx upr end rad, r arm, 7thP +C2848673|T037|PT|S59.131S|ICD10CM|Salter-Harris Type III physeal fracture of upper end of radius, right arm, sequela|Salter-Harris Type III physeal fracture of upper end of radius, right arm, sequela +C2848673|T037|AB|S59.131S|ICD10CM|Sltr-haris Type III physl fx upper end rad, right arm, sqla|Sltr-haris Type III physl fx upper end rad, right arm, sqla +C2848674|T037|HT|S59.132|ICD10CM|Salter-Harris Type III physeal fracture of upper end of radius, left arm|Salter-Harris Type III physeal fracture of upper end of radius, left arm +C2848674|T037|AB|S59.132|ICD10CM|Sltr-haris Type III physeal fx upper end radius, left arm|Sltr-haris Type III physeal fx upper end radius, left arm +C2848675|T037|AB|S59.132A|ICD10CM|Sltr-haris Type III physl fx upper end rad, left arm, init|Sltr-haris Type III physl fx upper end rad, left arm, init +C2848676|T037|AB|S59.132D|ICD10CM|Sltr-haris Type III physl fx upr end rad, l arm, 7thD|Sltr-haris Type III physl fx upr end rad, l arm, 7thD +C2848677|T037|AB|S59.132G|ICD10CM|Sltr-haris Type III physl fx upr end rad, l arm, 7thG|Sltr-haris Type III physl fx upr end rad, l arm, 7thG +C2848678|T037|AB|S59.132K|ICD10CM|Sltr-haris Type III physl fx upr end rad, l arm, 7thK|Sltr-haris Type III physl fx upr end rad, l arm, 7thK +C2848679|T037|AB|S59.132P|ICD10CM|Sltr-haris Type III physl fx upr end rad, l arm, 7thP|Sltr-haris Type III physl fx upr end rad, l arm, 7thP +C2848680|T037|PT|S59.132S|ICD10CM|Salter-Harris Type III physeal fracture of upper end of radius, left arm, sequela|Salter-Harris Type III physeal fracture of upper end of radius, left arm, sequela +C2848680|T037|AB|S59.132S|ICD10CM|Sltr-haris Type III physl fx upper end rad, left arm, sqla|Sltr-haris Type III physl fx upper end rad, left arm, sqla +C2848681|T037|HT|S59.139|ICD10CM|Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm|Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm +C2848681|T037|AB|S59.139|ICD10CM|Sltr-haris Type III physeal fx upper end radius, unsp arm|Sltr-haris Type III physeal fx upper end radius, unsp arm +C2848682|T037|AB|S59.139A|ICD10CM|Sltr-haris Type III physl fx upper end rad, unsp arm, init|Sltr-haris Type III physl fx upper end rad, unsp arm, init +C2848683|T037|AB|S59.139D|ICD10CM|Sltr-haris Type III physl fx upr end rad, unsp arm, 7thD|Sltr-haris Type III physl fx upr end rad, unsp arm, 7thD +C2848684|T037|AB|S59.139G|ICD10CM|Sltr-haris Type III physl fx upr end rad, unsp arm, 7thG|Sltr-haris Type III physl fx upr end rad, unsp arm, 7thG +C2848685|T037|AB|S59.139K|ICD10CM|Sltr-haris Type III physl fx upr end rad, unsp arm, 7thK|Sltr-haris Type III physl fx upr end rad, unsp arm, 7thK +C2848686|T037|AB|S59.139P|ICD10CM|Sltr-haris Type III physl fx upr end rad, unsp arm, 7thP|Sltr-haris Type III physl fx upr end rad, unsp arm, 7thP +C2848687|T037|PT|S59.139S|ICD10CM|Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, sequela|Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, sequela +C2848687|T037|AB|S59.139S|ICD10CM|Sltr-haris Type III physl fx upper end rad, unsp arm, sqla|Sltr-haris Type III physl fx upper end rad, unsp arm, sqla +C2848688|T037|HT|S59.14|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of radius|Salter-Harris Type IV physeal fracture of upper end of radius +C2848688|T037|AB|S59.14|ICD10CM|Salter-Harris Type IV physeal fracture of upper end radius|Salter-Harris Type IV physeal fracture of upper end radius +C2848689|T037|HT|S59.141|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of radius, right arm|Salter-Harris Type IV physeal fracture of upper end of radius, right arm +C2848689|T037|AB|S59.141|ICD10CM|Sltr-haris Type IV physeal fx upper end radius, right arm|Sltr-haris Type IV physeal fx upper end radius, right arm +C2848690|T037|AB|S59.141A|ICD10CM|Sltr-haris Type IV physl fx upper end rad, right arm, init|Sltr-haris Type IV physl fx upper end rad, right arm, init +C2848691|T037|AB|S59.141D|ICD10CM|Sltr-haris Type IV physl fx upr end rad, r arm, 7thD|Sltr-haris Type IV physl fx upr end rad, r arm, 7thD +C2848692|T037|AB|S59.141G|ICD10CM|Sltr-haris Type IV physl fx upr end rad, r arm, 7thG|Sltr-haris Type IV physl fx upr end rad, r arm, 7thG +C2848693|T037|AB|S59.141K|ICD10CM|Sltr-haris Type IV physl fx upr end rad, r arm, 7thK|Sltr-haris Type IV physl fx upr end rad, r arm, 7thK +C2848694|T037|AB|S59.141P|ICD10CM|Sltr-haris Type IV physl fx upr end rad, r arm, 7thP|Sltr-haris Type IV physl fx upr end rad, r arm, 7thP +C2848695|T037|PT|S59.141S|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of radius, right arm, sequela|Salter-Harris Type IV physeal fracture of upper end of radius, right arm, sequela +C2848695|T037|AB|S59.141S|ICD10CM|Sltr-haris Type IV physl fx upper end rad, right arm, sqla|Sltr-haris Type IV physl fx upper end rad, right arm, sqla +C2848696|T037|HT|S59.142|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of radius, left arm|Salter-Harris Type IV physeal fracture of upper end of radius, left arm +C2848696|T037|AB|S59.142|ICD10CM|Sltr-haris Type IV physeal fx upper end radius, left arm|Sltr-haris Type IV physeal fx upper end radius, left arm +C2848697|T037|AB|S59.142A|ICD10CM|Sltr-haris Type IV physl fx upper end radius, left arm, init|Sltr-haris Type IV physl fx upper end radius, left arm, init +C2848698|T037|AB|S59.142D|ICD10CM|Sltr-haris Type IV physl fx upr end rad, l arm, 7thD|Sltr-haris Type IV physl fx upr end rad, l arm, 7thD +C2848699|T037|AB|S59.142G|ICD10CM|Sltr-haris Type IV physl fx upr end rad, l arm, 7thG|Sltr-haris Type IV physl fx upr end rad, l arm, 7thG +C2848700|T037|AB|S59.142K|ICD10CM|Sltr-haris Type IV physl fx upr end rad, l arm, 7thK|Sltr-haris Type IV physl fx upr end rad, l arm, 7thK +C2848701|T037|AB|S59.142P|ICD10CM|Sltr-haris Type IV physl fx upr end rad, l arm, 7thP|Sltr-haris Type IV physl fx upr end rad, l arm, 7thP +C2848702|T037|PT|S59.142S|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of radius, left arm, sequela|Salter-Harris Type IV physeal fracture of upper end of radius, left arm, sequela +C2848702|T037|AB|S59.142S|ICD10CM|Sltr-haris Type IV physl fx upper end radius, left arm, sqla|Sltr-haris Type IV physl fx upper end radius, left arm, sqla +C2848703|T037|HT|S59.149|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm|Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm +C2848703|T037|AB|S59.149|ICD10CM|Sltr-haris Type IV physeal fx upper end radius, unsp arm|Sltr-haris Type IV physeal fx upper end radius, unsp arm +C2848704|T037|AB|S59.149A|ICD10CM|Sltr-haris Type IV physl fx upper end radius, unsp arm, init|Sltr-haris Type IV physl fx upper end radius, unsp arm, init +C2848705|T037|AB|S59.149D|ICD10CM|Sltr-haris Type IV physl fx upr end rad, unsp arm, 7thD|Sltr-haris Type IV physl fx upr end rad, unsp arm, 7thD +C2848706|T037|AB|S59.149G|ICD10CM|Sltr-haris Type IV physl fx upr end rad, unsp arm, 7thG|Sltr-haris Type IV physl fx upr end rad, unsp arm, 7thG +C2848707|T037|AB|S59.149K|ICD10CM|Sltr-haris Type IV physl fx upr end rad, unsp arm, 7thK|Sltr-haris Type IV physl fx upr end rad, unsp arm, 7thK +C2848708|T037|AB|S59.149P|ICD10CM|Sltr-haris Type IV physl fx upr end rad, unsp arm, 7thP|Sltr-haris Type IV physl fx upr end rad, unsp arm, 7thP +C2848709|T037|PT|S59.149S|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, sequela|Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, sequela +C2848709|T037|AB|S59.149S|ICD10CM|Sltr-haris Type IV physl fx upper end radius, unsp arm, sqla|Sltr-haris Type IV physl fx upper end radius, unsp arm, sqla +C2848710|T037|AB|S59.19|ICD10CM|Other physeal fracture of upper end of radius|Other physeal fracture of upper end of radius +C2848710|T037|HT|S59.19|ICD10CM|Other physeal fracture of upper end of radius|Other physeal fracture of upper end of radius +C2848711|T037|AB|S59.191|ICD10CM|Other physeal fracture of upper end of radius, right arm|Other physeal fracture of upper end of radius, right arm +C2848711|T037|HT|S59.191|ICD10CM|Other physeal fracture of upper end of radius, right arm|Other physeal fracture of upper end of radius, right arm +C2848712|T037|AB|S59.191A|ICD10CM|Oth physeal fracture of upper end of radius, right arm, init|Oth physeal fracture of upper end of radius, right arm, init +C2848712|T037|PT|S59.191A|ICD10CM|Other physeal fracture of upper end of radius, right arm, initial encounter for closed fracture|Other physeal fracture of upper end of radius, right arm, initial encounter for closed fracture +C2848713|T037|AB|S59.191D|ICD10CM|Oth physl fx upper end rad, r arm, subs for fx w routn heal|Oth physl fx upper end rad, r arm, subs for fx w routn heal +C2848714|T037|AB|S59.191G|ICD10CM|Oth physl fx upper end rad, r arm, subs for fx w delay heal|Oth physl fx upper end rad, r arm, subs for fx w delay heal +C2848715|T037|AB|S59.191K|ICD10CM|Oth physl fx upper end rad, r arm, subs for fx w nonunion|Oth physl fx upper end rad, r arm, subs for fx w nonunion +C2848716|T037|AB|S59.191P|ICD10CM|Oth physl fx upper end rad, r arm, subs for fx w malunion|Oth physl fx upper end rad, r arm, subs for fx w malunion +C2848717|T037|AB|S59.191S|ICD10CM|Oth physeal fracture of upper end radius, right arm, sequela|Oth physeal fracture of upper end radius, right arm, sequela +C2848717|T037|PT|S59.191S|ICD10CM|Other physeal fracture of upper end of radius, right arm, sequela|Other physeal fracture of upper end of radius, right arm, sequela +C2848718|T037|AB|S59.192|ICD10CM|Other physeal fracture of upper end of radius, left arm|Other physeal fracture of upper end of radius, left arm +C2848718|T037|HT|S59.192|ICD10CM|Other physeal fracture of upper end of radius, left arm|Other physeal fracture of upper end of radius, left arm +C2848719|T037|AB|S59.192A|ICD10CM|Oth physeal fracture of upper end of radius, left arm, init|Oth physeal fracture of upper end of radius, left arm, init +C2848719|T037|PT|S59.192A|ICD10CM|Other physeal fracture of upper end of radius, left arm, initial encounter for closed fracture|Other physeal fracture of upper end of radius, left arm, initial encounter for closed fracture +C2848720|T037|AB|S59.192D|ICD10CM|Oth physl fx upr end rad, left arm, subs for fx w routn heal|Oth physl fx upr end rad, left arm, subs for fx w routn heal +C2848721|T037|AB|S59.192G|ICD10CM|Oth physl fx upr end rad, left arm, subs for fx w delay heal|Oth physl fx upr end rad, left arm, subs for fx w delay heal +C2848722|T037|AB|S59.192K|ICD10CM|Oth physl fx upper end rad, left arm, subs for fx w nonunion|Oth physl fx upper end rad, left arm, subs for fx w nonunion +C2848723|T037|AB|S59.192P|ICD10CM|Oth physl fx upper end rad, left arm, subs for fx w malunion|Oth physl fx upper end rad, left arm, subs for fx w malunion +C2848724|T037|AB|S59.192S|ICD10CM|Oth physeal fracture of upper end radius, left arm, sequela|Oth physeal fracture of upper end radius, left arm, sequela +C2848724|T037|PT|S59.192S|ICD10CM|Other physeal fracture of upper end of radius, left arm, sequela|Other physeal fracture of upper end of radius, left arm, sequela +C2848725|T037|AB|S59.199|ICD10CM|Other physeal fracture of upper end of radius, unsp arm|Other physeal fracture of upper end of radius, unsp arm +C2848725|T037|HT|S59.199|ICD10CM|Other physeal fracture of upper end of radius, unspecified arm|Other physeal fracture of upper end of radius, unspecified arm +C2848726|T037|AB|S59.199A|ICD10CM|Oth physeal fracture of upper end of radius, unsp arm, init|Oth physeal fracture of upper end of radius, unsp arm, init +C2848727|T037|AB|S59.199D|ICD10CM|Oth physl fx upr end rad, unsp arm, subs for fx w routn heal|Oth physl fx upr end rad, unsp arm, subs for fx w routn heal +C2848728|T037|AB|S59.199G|ICD10CM|Oth physl fx upr end rad, unsp arm, subs for fx w delay heal|Oth physl fx upr end rad, unsp arm, subs for fx w delay heal +C2848729|T037|AB|S59.199K|ICD10CM|Oth physl fx upper end rad, unsp arm, subs for fx w nonunion|Oth physl fx upper end rad, unsp arm, subs for fx w nonunion +C2848730|T037|AB|S59.199P|ICD10CM|Oth physl fx upper end rad, unsp arm, subs for fx w malunion|Oth physl fx upper end rad, unsp arm, subs for fx w malunion +C2848731|T037|AB|S59.199S|ICD10CM|Oth physeal fracture of upper end radius, unsp arm, sequela|Oth physeal fracture of upper end radius, unsp arm, sequela +C2848731|T037|PT|S59.199S|ICD10CM|Other physeal fracture of upper end of radius, unspecified arm, sequela|Other physeal fracture of upper end of radius, unspecified arm, sequela +C2848732|T037|AB|S59.2|ICD10CM|Physeal fracture of lower end of radius|Physeal fracture of lower end of radius +C2848732|T037|HT|S59.2|ICD10CM|Physeal fracture of lower end of radius|Physeal fracture of lower end of radius +C2848733|T037|AB|S59.20|ICD10CM|Unspecified physeal fracture of lower end of radius|Unspecified physeal fracture of lower end of radius +C2848733|T037|HT|S59.20|ICD10CM|Unspecified physeal fracture of lower end of radius|Unspecified physeal fracture of lower end of radius +C2848734|T037|AB|S59.201|ICD10CM|Unsp physeal fracture of lower end of radius, right arm|Unsp physeal fracture of lower end of radius, right arm +C2848734|T037|HT|S59.201|ICD10CM|Unspecified physeal fracture of lower end of radius, right arm|Unspecified physeal fracture of lower end of radius, right arm +C2848735|T037|AB|S59.201A|ICD10CM|Unsp physeal fracture of lower end radius, right arm, init|Unsp physeal fracture of lower end radius, right arm, init +C2848736|T037|AB|S59.201D|ICD10CM|Unsp physl fx low end rad, r arm, subs for fx w routn heal|Unsp physl fx low end rad, r arm, subs for fx w routn heal +C2848737|T037|AB|S59.201G|ICD10CM|Unsp physl fx low end rad, r arm, subs for fx w delay heal|Unsp physl fx low end rad, r arm, subs for fx w delay heal +C2848738|T037|AB|S59.201K|ICD10CM|Unsp physl fx low end rad, right arm, subs for fx w nonunion|Unsp physl fx low end rad, right arm, subs for fx w nonunion +C2848739|T037|AB|S59.201P|ICD10CM|Unsp physl fx low end rad, right arm, subs for fx w malunion|Unsp physl fx low end rad, right arm, subs for fx w malunion +C2848740|T037|AB|S59.201S|ICD10CM|Unsp physeal fx lower end radius, right arm, sequela|Unsp physeal fx lower end radius, right arm, sequela +C2848740|T037|PT|S59.201S|ICD10CM|Unspecified physeal fracture of lower end of radius, right arm, sequela|Unspecified physeal fracture of lower end of radius, right arm, sequela +C2848741|T037|AB|S59.202|ICD10CM|Unsp physeal fracture of lower end of radius, left arm|Unsp physeal fracture of lower end of radius, left arm +C2848741|T037|HT|S59.202|ICD10CM|Unspecified physeal fracture of lower end of radius, left arm|Unspecified physeal fracture of lower end of radius, left arm +C2848742|T037|AB|S59.202A|ICD10CM|Unsp physeal fracture of lower end of radius, left arm, init|Unsp physeal fracture of lower end of radius, left arm, init +C2848742|T037|PT|S59.202A|ICD10CM|Unspecified physeal fracture of lower end of radius, left arm, initial encounter for closed fracture|Unspecified physeal fracture of lower end of radius, left arm, initial encounter for closed fracture +C2848743|T037|AB|S59.202D|ICD10CM|Unsp physl fx low end rad, l arm, subs for fx w routn heal|Unsp physl fx low end rad, l arm, subs for fx w routn heal +C2848744|T037|AB|S59.202G|ICD10CM|Unsp physl fx low end rad, l arm, subs for fx w delay heal|Unsp physl fx low end rad, l arm, subs for fx w delay heal +C2848745|T037|AB|S59.202K|ICD10CM|Unsp physl fx low end rad, left arm, subs for fx w nonunion|Unsp physl fx low end rad, left arm, subs for fx w nonunion +C2848746|T037|AB|S59.202P|ICD10CM|Unsp physl fx low end rad, left arm, subs for fx w malunion|Unsp physl fx low end rad, left arm, subs for fx w malunion +C2848747|T037|AB|S59.202S|ICD10CM|Unsp physeal fracture of lower end radius, left arm, sequela|Unsp physeal fracture of lower end radius, left arm, sequela +C2848747|T037|PT|S59.202S|ICD10CM|Unspecified physeal fracture of lower end of radius, left arm, sequela|Unspecified physeal fracture of lower end of radius, left arm, sequela +C2848748|T037|AB|S59.209|ICD10CM|Unsp physeal fracture of lower end of radius, unsp arm|Unsp physeal fracture of lower end of radius, unsp arm +C2848748|T037|HT|S59.209|ICD10CM|Unspecified physeal fracture of lower end of radius, unspecified arm|Unspecified physeal fracture of lower end of radius, unspecified arm +C2848749|T037|AB|S59.209A|ICD10CM|Unsp physeal fracture of lower end of radius, unsp arm, init|Unsp physeal fracture of lower end of radius, unsp arm, init +C2848750|T037|AB|S59.209D|ICD10CM|Unsp physl fx low end rad, unsp arm, 7thD|Unsp physl fx low end rad, unsp arm, 7thD +C2848751|T037|AB|S59.209G|ICD10CM|Unsp physl fx low end rad, unsp arm, 7thG|Unsp physl fx low end rad, unsp arm, 7thG +C2848752|T037|AB|S59.209K|ICD10CM|Unsp physl fx low end rad, unsp arm, subs for fx w nonunion|Unsp physl fx low end rad, unsp arm, subs for fx w nonunion +C2848753|T037|AB|S59.209P|ICD10CM|Unsp physl fx low end rad, unsp arm, subs for fx w malunion|Unsp physl fx low end rad, unsp arm, subs for fx w malunion +C2848754|T037|AB|S59.209S|ICD10CM|Unsp physeal fracture of lower end radius, unsp arm, sequela|Unsp physeal fracture of lower end radius, unsp arm, sequela +C2848754|T037|PT|S59.209S|ICD10CM|Unspecified physeal fracture of lower end of radius, unspecified arm, sequela|Unspecified physeal fracture of lower end of radius, unspecified arm, sequela +C2848755|T037|AB|S59.21|ICD10CM|Salter-Harris Type I physeal fracture of lower end of radius|Salter-Harris Type I physeal fracture of lower end of radius +C2848755|T037|HT|S59.21|ICD10CM|Salter-Harris Type I physeal fracture of lower end of radius|Salter-Harris Type I physeal fracture of lower end of radius +C2848756|T037|HT|S59.211|ICD10CM|Salter-Harris Type I physeal fracture of lower end of radius, right arm|Salter-Harris Type I physeal fracture of lower end of radius, right arm +C2848756|T037|AB|S59.211|ICD10CM|Sltr-haris Type I physeal fx lower end radius, right arm|Sltr-haris Type I physeal fx lower end radius, right arm +C2848757|T037|AB|S59.211A|ICD10CM|Sltr-haris Type I physl fx lower end radius, right arm, init|Sltr-haris Type I physl fx lower end radius, right arm, init +C2848758|T037|AB|S59.211D|ICD10CM|Sltr-haris Type I physl fx low end rad, r arm, 7thD|Sltr-haris Type I physl fx low end rad, r arm, 7thD +C2848759|T037|AB|S59.211G|ICD10CM|Sltr-haris Type I physl fx low end rad, r arm, 7thG|Sltr-haris Type I physl fx low end rad, r arm, 7thG +C2848760|T037|AB|S59.211K|ICD10CM|Sltr-haris Type I physl fx low end rad, r arm, 7thK|Sltr-haris Type I physl fx low end rad, r arm, 7thK +C2848761|T037|AB|S59.211P|ICD10CM|Sltr-haris Type I physl fx low end rad, r arm, 7thP|Sltr-haris Type I physl fx low end rad, r arm, 7thP +C2848762|T037|PT|S59.211S|ICD10CM|Salter-Harris Type I physeal fracture of lower end of radius, right arm, sequela|Salter-Harris Type I physeal fracture of lower end of radius, right arm, sequela +C2848762|T037|AB|S59.211S|ICD10CM|Sltr-haris Type I physl fx lower end radius, right arm, sqla|Sltr-haris Type I physl fx lower end radius, right arm, sqla +C2848763|T037|HT|S59.212|ICD10CM|Salter-Harris Type I physeal fracture of lower end of radius, left arm|Salter-Harris Type I physeal fracture of lower end of radius, left arm +C2848763|T037|AB|S59.212|ICD10CM|Sltr-haris Type I physeal fx lower end radius, left arm|Sltr-haris Type I physeal fx lower end radius, left arm +C2848764|T037|AB|S59.212A|ICD10CM|Sltr-haris Type I physl fx lower end radius, left arm, init|Sltr-haris Type I physl fx lower end radius, left arm, init +C2848765|T037|AB|S59.212D|ICD10CM|Sltr-haris Type I physl fx low end rad, l arm, 7thD|Sltr-haris Type I physl fx low end rad, l arm, 7thD +C2848766|T037|AB|S59.212G|ICD10CM|Sltr-haris Type I physl fx low end rad, l arm, 7thG|Sltr-haris Type I physl fx low end rad, l arm, 7thG +C2848767|T037|AB|S59.212K|ICD10CM|Sltr-haris Type I physl fx low end rad, l arm, 7thK|Sltr-haris Type I physl fx low end rad, l arm, 7thK +C2848768|T037|AB|S59.212P|ICD10CM|Sltr-haris Type I physl fx low end rad, l arm, 7thP|Sltr-haris Type I physl fx low end rad, l arm, 7thP +C2848769|T037|PT|S59.212S|ICD10CM|Salter-Harris Type I physeal fracture of lower end of radius, left arm, sequela|Salter-Harris Type I physeal fracture of lower end of radius, left arm, sequela +C2848769|T037|AB|S59.212S|ICD10CM|Sltr-haris Type I physl fx lower end radius, left arm, sqla|Sltr-haris Type I physl fx lower end radius, left arm, sqla +C2848770|T037|HT|S59.219|ICD10CM|Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm|Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm +C2848770|T037|AB|S59.219|ICD10CM|Sltr-haris Type I physeal fx lower end radius, unsp arm|Sltr-haris Type I physeal fx lower end radius, unsp arm +C2848771|T037|AB|S59.219A|ICD10CM|Sltr-haris Type I physl fx lower end radius, unsp arm, init|Sltr-haris Type I physl fx lower end radius, unsp arm, init +C2848772|T037|AB|S59.219D|ICD10CM|Sltr-haris Type I physl fx low end rad, unsp arm, 7thD|Sltr-haris Type I physl fx low end rad, unsp arm, 7thD +C2848773|T037|AB|S59.219G|ICD10CM|Sltr-haris Type I physl fx low end rad, unsp arm, 7thG|Sltr-haris Type I physl fx low end rad, unsp arm, 7thG +C2848774|T037|AB|S59.219K|ICD10CM|Sltr-haris Type I physl fx low end rad, unsp arm, 7thK|Sltr-haris Type I physl fx low end rad, unsp arm, 7thK +C2848775|T037|AB|S59.219P|ICD10CM|Sltr-haris Type I physl fx low end rad, unsp arm, 7thP|Sltr-haris Type I physl fx low end rad, unsp arm, 7thP +C2848776|T037|PT|S59.219S|ICD10CM|Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, sequela|Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, sequela +C2848776|T037|AB|S59.219S|ICD10CM|Sltr-haris Type I physl fx lower end radius, unsp arm, sqla|Sltr-haris Type I physl fx lower end radius, unsp arm, sqla +C2848777|T037|HT|S59.22|ICD10CM|Salter-Harris Type II physeal fracture of lower end of radius|Salter-Harris Type II physeal fracture of lower end of radius +C2848777|T037|AB|S59.22|ICD10CM|Salter-Harris Type II physeal fracture of lower end radius|Salter-Harris Type II physeal fracture of lower end radius +C2848778|T037|HT|S59.221|ICD10CM|Salter-Harris Type II physeal fracture of lower end of radius, right arm|Salter-Harris Type II physeal fracture of lower end of radius, right arm +C2848778|T037|AB|S59.221|ICD10CM|Sltr-haris Type II physeal fx lower end radius, right arm|Sltr-haris Type II physeal fx lower end radius, right arm +C2848779|T037|AB|S59.221A|ICD10CM|Sltr-haris Type II physl fx lower end rad, right arm, init|Sltr-haris Type II physl fx lower end rad, right arm, init +C2848780|T037|AB|S59.221D|ICD10CM|Sltr-haris Type II physl fx low end rad, r arm, 7thD|Sltr-haris Type II physl fx low end rad, r arm, 7thD +C2848781|T037|AB|S59.221G|ICD10CM|Sltr-haris Type II physl fx low end rad, r arm, 7thG|Sltr-haris Type II physl fx low end rad, r arm, 7thG +C2848782|T037|AB|S59.221K|ICD10CM|Sltr-haris Type II physl fx low end rad, r arm, 7thK|Sltr-haris Type II physl fx low end rad, r arm, 7thK +C2848783|T037|AB|S59.221P|ICD10CM|Sltr-haris Type II physl fx low end rad, r arm, 7thP|Sltr-haris Type II physl fx low end rad, r arm, 7thP +C2848784|T037|PT|S59.221S|ICD10CM|Salter-Harris Type II physeal fracture of lower end of radius, right arm, sequela|Salter-Harris Type II physeal fracture of lower end of radius, right arm, sequela +C2848784|T037|AB|S59.221S|ICD10CM|Sltr-haris Type II physl fx lower end rad, right arm, sqla|Sltr-haris Type II physl fx lower end rad, right arm, sqla +C2848785|T037|HT|S59.222|ICD10CM|Salter-Harris Type II physeal fracture of lower end of radius, left arm|Salter-Harris Type II physeal fracture of lower end of radius, left arm +C2848785|T037|AB|S59.222|ICD10CM|Sltr-haris Type II physeal fx lower end radius, left arm|Sltr-haris Type II physeal fx lower end radius, left arm +C2848786|T037|AB|S59.222A|ICD10CM|Sltr-haris Type II physl fx lower end radius, left arm, init|Sltr-haris Type II physl fx lower end radius, left arm, init +C2848787|T037|AB|S59.222D|ICD10CM|Sltr-haris Type II physl fx low end rad, l arm, 7thD|Sltr-haris Type II physl fx low end rad, l arm, 7thD +C2848788|T037|AB|S59.222G|ICD10CM|Sltr-haris Type II physl fx low end rad, l arm, 7thG|Sltr-haris Type II physl fx low end rad, l arm, 7thG +C2848789|T037|AB|S59.222K|ICD10CM|Sltr-haris Type II physl fx low end rad, l arm, 7thK|Sltr-haris Type II physl fx low end rad, l arm, 7thK +C2848790|T037|AB|S59.222P|ICD10CM|Sltr-haris Type II physl fx low end rad, l arm, 7thP|Sltr-haris Type II physl fx low end rad, l arm, 7thP +C2848791|T037|PT|S59.222S|ICD10CM|Salter-Harris Type II physeal fracture of lower end of radius, left arm, sequela|Salter-Harris Type II physeal fracture of lower end of radius, left arm, sequela +C2848791|T037|AB|S59.222S|ICD10CM|Sltr-haris Type II physl fx lower end radius, left arm, sqla|Sltr-haris Type II physl fx lower end radius, left arm, sqla +C2848792|T037|HT|S59.229|ICD10CM|Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm|Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm +C2848792|T037|AB|S59.229|ICD10CM|Sltr-haris Type II physeal fx lower end radius, unsp arm|Sltr-haris Type II physeal fx lower end radius, unsp arm +C2848793|T037|AB|S59.229A|ICD10CM|Sltr-haris Type II physl fx lower end radius, unsp arm, init|Sltr-haris Type II physl fx lower end radius, unsp arm, init +C2848794|T037|AB|S59.229D|ICD10CM|Sltr-haris Type II physl fx low end rad, unsp arm, 7thD|Sltr-haris Type II physl fx low end rad, unsp arm, 7thD +C2848795|T037|AB|S59.229G|ICD10CM|Sltr-haris Type II physl fx low end rad, unsp arm, 7thG|Sltr-haris Type II physl fx low end rad, unsp arm, 7thG +C2848796|T037|AB|S59.229K|ICD10CM|Sltr-haris Type II physl fx low end rad, unsp arm, 7thK|Sltr-haris Type II physl fx low end rad, unsp arm, 7thK +C2848797|T037|AB|S59.229P|ICD10CM|Sltr-haris Type II physl fx low end rad, unsp arm, 7thP|Sltr-haris Type II physl fx low end rad, unsp arm, 7thP +C2848798|T037|PT|S59.229S|ICD10CM|Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, sequela|Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, sequela +C2848798|T037|AB|S59.229S|ICD10CM|Sltr-haris Type II physl fx lower end radius, unsp arm, sqla|Sltr-haris Type II physl fx lower end radius, unsp arm, sqla +C2848799|T037|HT|S59.23|ICD10CM|Salter-Harris Type III physeal fracture of lower end of radius|Salter-Harris Type III physeal fracture of lower end of radius +C2848799|T037|AB|S59.23|ICD10CM|Salter-Harris Type III physeal fracture of lower end radius|Salter-Harris Type III physeal fracture of lower end radius +C2848800|T037|HT|S59.231|ICD10CM|Salter-Harris Type III physeal fracture of lower end of radius, right arm|Salter-Harris Type III physeal fracture of lower end of radius, right arm +C2848800|T037|AB|S59.231|ICD10CM|Sltr-haris Type III physeal fx lower end radius, right arm|Sltr-haris Type III physeal fx lower end radius, right arm +C2848801|T037|AB|S59.231A|ICD10CM|Sltr-haris Type III physl fx lower end rad, right arm, init|Sltr-haris Type III physl fx lower end rad, right arm, init +C2848802|T037|AB|S59.231D|ICD10CM|Sltr-haris Type III physl fx low end rad, r arm, 7thD|Sltr-haris Type III physl fx low end rad, r arm, 7thD +C2848803|T037|AB|S59.231G|ICD10CM|Sltr-haris Type III physl fx low end rad, r arm, 7thG|Sltr-haris Type III physl fx low end rad, r arm, 7thG +C2848804|T037|AB|S59.231K|ICD10CM|Sltr-haris Type III physl fx low end rad, r arm, 7thK|Sltr-haris Type III physl fx low end rad, r arm, 7thK +C2848805|T037|AB|S59.231P|ICD10CM|Sltr-haris Type III physl fx low end rad, r arm, 7thP|Sltr-haris Type III physl fx low end rad, r arm, 7thP +C2848806|T037|PT|S59.231S|ICD10CM|Salter-Harris Type III physeal fracture of lower end of radius, right arm, sequela|Salter-Harris Type III physeal fracture of lower end of radius, right arm, sequela +C2848806|T037|AB|S59.231S|ICD10CM|Sltr-haris Type III physl fx lower end rad, right arm, sqla|Sltr-haris Type III physl fx lower end rad, right arm, sqla +C2848807|T037|HT|S59.232|ICD10CM|Salter-Harris Type III physeal fracture of lower end of radius, left arm|Salter-Harris Type III physeal fracture of lower end of radius, left arm +C2848807|T037|AB|S59.232|ICD10CM|Sltr-haris Type III physeal fx lower end radius, left arm|Sltr-haris Type III physeal fx lower end radius, left arm +C2848808|T037|AB|S59.232A|ICD10CM|Sltr-haris Type III physl fx lower end rad, left arm, init|Sltr-haris Type III physl fx lower end rad, left arm, init +C2848809|T037|AB|S59.232D|ICD10CM|Sltr-haris Type III physl fx low end rad, l arm, 7thD|Sltr-haris Type III physl fx low end rad, l arm, 7thD +C2848810|T037|AB|S59.232G|ICD10CM|Sltr-haris Type III physl fx low end rad, l arm, 7thG|Sltr-haris Type III physl fx low end rad, l arm, 7thG +C2848811|T037|AB|S59.232K|ICD10CM|Sltr-haris Type III physl fx low end rad, l arm, 7thK|Sltr-haris Type III physl fx low end rad, l arm, 7thK +C2848812|T037|AB|S59.232P|ICD10CM|Sltr-haris Type III physl fx low end rad, l arm, 7thP|Sltr-haris Type III physl fx low end rad, l arm, 7thP +C2848813|T037|PT|S59.232S|ICD10CM|Salter-Harris Type III physeal fracture of lower end of radius, left arm, sequela|Salter-Harris Type III physeal fracture of lower end of radius, left arm, sequela +C2848813|T037|AB|S59.232S|ICD10CM|Sltr-haris Type III physl fx lower end rad, left arm, sqla|Sltr-haris Type III physl fx lower end rad, left arm, sqla +C2848814|T037|HT|S59.239|ICD10CM|Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm|Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm +C2848814|T037|AB|S59.239|ICD10CM|Sltr-haris Type III physeal fx lower end radius, unsp arm|Sltr-haris Type III physeal fx lower end radius, unsp arm +C2848815|T037|AB|S59.239A|ICD10CM|Sltr-haris Type III physl fx lower end rad, unsp arm, init|Sltr-haris Type III physl fx lower end rad, unsp arm, init +C2848816|T037|AB|S59.239D|ICD10CM|Sltr-haris Type III physl fx low end rad, unsp arm, 7thD|Sltr-haris Type III physl fx low end rad, unsp arm, 7thD +C2848817|T037|AB|S59.239G|ICD10CM|Sltr-haris Type III physl fx low end rad, unsp arm, 7thG|Sltr-haris Type III physl fx low end rad, unsp arm, 7thG +C2848818|T037|AB|S59.239K|ICD10CM|Sltr-haris Type III physl fx low end rad, unsp arm, 7thK|Sltr-haris Type III physl fx low end rad, unsp arm, 7thK +C2848819|T037|AB|S59.239P|ICD10CM|Sltr-haris Type III physl fx low end rad, unsp arm, 7thP|Sltr-haris Type III physl fx low end rad, unsp arm, 7thP +C2848820|T037|PT|S59.239S|ICD10CM|Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, sequela|Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, sequela +C2848820|T037|AB|S59.239S|ICD10CM|Sltr-haris Type III physl fx lower end rad, unsp arm, sqla|Sltr-haris Type III physl fx lower end rad, unsp arm, sqla +C2848821|T037|HT|S59.24|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of radius|Salter-Harris Type IV physeal fracture of lower end of radius +C2848821|T037|AB|S59.24|ICD10CM|Salter-Harris Type IV physeal fracture of lower end radius|Salter-Harris Type IV physeal fracture of lower end radius +C2848822|T037|HT|S59.241|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of radius, right arm|Salter-Harris Type IV physeal fracture of lower end of radius, right arm +C2848822|T037|AB|S59.241|ICD10CM|Sltr-haris Type IV physeal fx lower end radius, right arm|Sltr-haris Type IV physeal fx lower end radius, right arm +C2848823|T037|AB|S59.241A|ICD10CM|Sltr-haris Type IV physl fx lower end rad, right arm, init|Sltr-haris Type IV physl fx lower end rad, right arm, init +C2848824|T037|AB|S59.241D|ICD10CM|Sltr-haris Type IV physl fx low end rad, r arm, 7thD|Sltr-haris Type IV physl fx low end rad, r arm, 7thD +C2848825|T037|AB|S59.241G|ICD10CM|Sltr-haris Type IV physl fx low end rad, r arm, 7thG|Sltr-haris Type IV physl fx low end rad, r arm, 7thG +C2848826|T037|AB|S59.241K|ICD10CM|Sltr-haris Type IV physl fx low end rad, r arm, 7thK|Sltr-haris Type IV physl fx low end rad, r arm, 7thK +C2848827|T037|AB|S59.241P|ICD10CM|Sltr-haris Type IV physl fx low end rad, r arm, 7thP|Sltr-haris Type IV physl fx low end rad, r arm, 7thP +C2848828|T037|PT|S59.241S|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of radius, right arm, sequela|Salter-Harris Type IV physeal fracture of lower end of radius, right arm, sequela +C2848828|T037|AB|S59.241S|ICD10CM|Sltr-haris Type IV physl fx lower end rad, right arm, sqla|Sltr-haris Type IV physl fx lower end rad, right arm, sqla +C2848829|T037|HT|S59.242|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of radius, left arm|Salter-Harris Type IV physeal fracture of lower end of radius, left arm +C2848829|T037|AB|S59.242|ICD10CM|Sltr-haris Type IV physeal fx lower end radius, left arm|Sltr-haris Type IV physeal fx lower end radius, left arm +C2848830|T037|AB|S59.242A|ICD10CM|Sltr-haris Type IV physl fx lower end radius, left arm, init|Sltr-haris Type IV physl fx lower end radius, left arm, init +C2848831|T037|AB|S59.242D|ICD10CM|Sltr-haris Type IV physl fx low end rad, l arm, 7thD|Sltr-haris Type IV physl fx low end rad, l arm, 7thD +C2848832|T037|AB|S59.242G|ICD10CM|Sltr-haris Type IV physl fx low end rad, l arm, 7thG|Sltr-haris Type IV physl fx low end rad, l arm, 7thG +C2848833|T037|AB|S59.242K|ICD10CM|Sltr-haris Type IV physl fx low end rad, l arm, 7thK|Sltr-haris Type IV physl fx low end rad, l arm, 7thK +C2848834|T037|AB|S59.242P|ICD10CM|Sltr-haris Type IV physl fx low end rad, l arm, 7thP|Sltr-haris Type IV physl fx low end rad, l arm, 7thP +C2848835|T037|PT|S59.242S|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of radius, left arm, sequela|Salter-Harris Type IV physeal fracture of lower end of radius, left arm, sequela +C2848835|T037|AB|S59.242S|ICD10CM|Sltr-haris Type IV physl fx lower end radius, left arm, sqla|Sltr-haris Type IV physl fx lower end radius, left arm, sqla +C2848836|T037|HT|S59.249|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm|Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm +C2848836|T037|AB|S59.249|ICD10CM|Sltr-haris Type IV physeal fx lower end radius, unsp arm|Sltr-haris Type IV physeal fx lower end radius, unsp arm +C2848837|T037|AB|S59.249A|ICD10CM|Sltr-haris Type IV physl fx lower end radius, unsp arm, init|Sltr-haris Type IV physl fx lower end radius, unsp arm, init +C2848838|T037|AB|S59.249D|ICD10CM|Sltr-haris Type IV physl fx low end rad, unsp arm, 7thD|Sltr-haris Type IV physl fx low end rad, unsp arm, 7thD +C2848839|T037|AB|S59.249G|ICD10CM|Sltr-haris Type IV physl fx low end rad, unsp arm, 7thG|Sltr-haris Type IV physl fx low end rad, unsp arm, 7thG +C2848840|T037|AB|S59.249K|ICD10CM|Sltr-haris Type IV physl fx low end rad, unsp arm, 7thK|Sltr-haris Type IV physl fx low end rad, unsp arm, 7thK +C2848841|T037|AB|S59.249P|ICD10CM|Sltr-haris Type IV physl fx low end rad, unsp arm, 7thP|Sltr-haris Type IV physl fx low end rad, unsp arm, 7thP +C2848842|T037|PT|S59.249S|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, sequela|Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, sequela +C2848842|T037|AB|S59.249S|ICD10CM|Sltr-haris Type IV physl fx lower end radius, unsp arm, sqla|Sltr-haris Type IV physl fx lower end radius, unsp arm, sqla +C2848843|T037|AB|S59.29|ICD10CM|Other physeal fracture of lower end of radius|Other physeal fracture of lower end of radius +C2848843|T037|HT|S59.29|ICD10CM|Other physeal fracture of lower end of radius|Other physeal fracture of lower end of radius +C2848844|T037|AB|S59.291|ICD10CM|Other physeal fracture of lower end of radius, right arm|Other physeal fracture of lower end of radius, right arm +C2848844|T037|HT|S59.291|ICD10CM|Other physeal fracture of lower end of radius, right arm|Other physeal fracture of lower end of radius, right arm +C2848845|T037|AB|S59.291A|ICD10CM|Oth physeal fracture of lower end of radius, right arm, init|Oth physeal fracture of lower end of radius, right arm, init +C2848845|T037|PT|S59.291A|ICD10CM|Other physeal fracture of lower end of radius, right arm, initial encounter for closed fracture|Other physeal fracture of lower end of radius, right arm, initial encounter for closed fracture +C2848846|T037|AB|S59.291D|ICD10CM|Oth physl fx low end rad, r arm, subs for fx w routn heal|Oth physl fx low end rad, r arm, subs for fx w routn heal +C2848847|T037|AB|S59.291G|ICD10CM|Oth physl fx low end rad, r arm, subs for fx w delay heal|Oth physl fx low end rad, r arm, subs for fx w delay heal +C2848848|T037|AB|S59.291K|ICD10CM|Oth physl fx low end rad, right arm, subs for fx w nonunion|Oth physl fx low end rad, right arm, subs for fx w nonunion +C2848849|T037|AB|S59.291P|ICD10CM|Oth physl fx low end rad, right arm, subs for fx w malunion|Oth physl fx low end rad, right arm, subs for fx w malunion +C2848850|T037|AB|S59.291S|ICD10CM|Oth physeal fracture of lower end radius, right arm, sequela|Oth physeal fracture of lower end radius, right arm, sequela +C2848850|T037|PT|S59.291S|ICD10CM|Other physeal fracture of lower end of radius, right arm, sequela|Other physeal fracture of lower end of radius, right arm, sequela +C2848851|T037|AB|S59.292|ICD10CM|Other physeal fracture of lower end of radius, left arm|Other physeal fracture of lower end of radius, left arm +C2848851|T037|HT|S59.292|ICD10CM|Other physeal fracture of lower end of radius, left arm|Other physeal fracture of lower end of radius, left arm +C2848852|T037|AB|S59.292A|ICD10CM|Oth physeal fracture of lower end of radius, left arm, init|Oth physeal fracture of lower end of radius, left arm, init +C2848852|T037|PT|S59.292A|ICD10CM|Other physeal fracture of lower end of radius, left arm, initial encounter for closed fracture|Other physeal fracture of lower end of radius, left arm, initial encounter for closed fracture +C2848853|T037|AB|S59.292D|ICD10CM|Oth physl fx low end rad, left arm, subs for fx w routn heal|Oth physl fx low end rad, left arm, subs for fx w routn heal +C2848854|T037|AB|S59.292G|ICD10CM|Oth physl fx low end rad, left arm, subs for fx w delay heal|Oth physl fx low end rad, left arm, subs for fx w delay heal +C2848855|T037|AB|S59.292K|ICD10CM|Oth physl fx lower end rad, left arm, subs for fx w nonunion|Oth physl fx lower end rad, left arm, subs for fx w nonunion +C2848856|T037|AB|S59.292P|ICD10CM|Oth physl fx lower end rad, left arm, subs for fx w malunion|Oth physl fx lower end rad, left arm, subs for fx w malunion +C2848857|T037|AB|S59.292S|ICD10CM|Oth physeal fracture of lower end radius, left arm, sequela|Oth physeal fracture of lower end radius, left arm, sequela +C2848857|T037|PT|S59.292S|ICD10CM|Other physeal fracture of lower end of radius, left arm, sequela|Other physeal fracture of lower end of radius, left arm, sequela +C2848858|T037|AB|S59.299|ICD10CM|Other physeal fracture of lower end of radius, unsp arm|Other physeal fracture of lower end of radius, unsp arm +C2848858|T037|HT|S59.299|ICD10CM|Other physeal fracture of lower end of radius, unspecified arm|Other physeal fracture of lower end of radius, unspecified arm +C2848859|T037|AB|S59.299A|ICD10CM|Oth physeal fracture of lower end of radius, unsp arm, init|Oth physeal fracture of lower end of radius, unsp arm, init +C2848860|T037|AB|S59.299D|ICD10CM|Oth physl fx low end rad, unsp arm, subs for fx w routn heal|Oth physl fx low end rad, unsp arm, subs for fx w routn heal +C2848861|T037|AB|S59.299G|ICD10CM|Oth physl fx low end rad, unsp arm, subs for fx w delay heal|Oth physl fx low end rad, unsp arm, subs for fx w delay heal +C2848862|T037|AB|S59.299K|ICD10CM|Oth physl fx lower end rad, unsp arm, subs for fx w nonunion|Oth physl fx lower end rad, unsp arm, subs for fx w nonunion +C2848863|T037|AB|S59.299P|ICD10CM|Oth physl fx lower end rad, unsp arm, subs for fx w malunion|Oth physl fx lower end rad, unsp arm, subs for fx w malunion +C2848864|T037|AB|S59.299S|ICD10CM|Oth physeal fracture of lower end radius, unsp arm, sequela|Oth physeal fracture of lower end radius, unsp arm, sequela +C2848864|T037|PT|S59.299S|ICD10CM|Other physeal fracture of lower end of radius, unspecified arm, sequela|Other physeal fracture of lower end of radius, unspecified arm, sequela +C0495889|T037|PT|S59.7|ICD10|Multiple injuries of forearm|Multiple injuries of forearm +C0478299|T037|AB|S59.8|ICD10CM|Other specified injuries of elbow and forearm|Other specified injuries of elbow and forearm +C0478299|T037|HT|S59.8|ICD10CM|Other specified injuries of elbow and forearm|Other specified injuries of elbow and forearm +C0495890|T037|PT|S59.8|ICD10|Other specified injuries of forearm|Other specified injuries of forearm +C2848865|T037|AB|S59.80|ICD10CM|Other specified injuries of elbow|Other specified injuries of elbow +C2848865|T037|HT|S59.80|ICD10CM|Other specified injuries of elbow|Other specified injuries of elbow +C2848866|T037|AB|S59.801|ICD10CM|Other specified injuries of right elbow|Other specified injuries of right elbow +C2848866|T037|HT|S59.801|ICD10CM|Other specified injuries of right elbow|Other specified injuries of right elbow +C2848867|T037|AB|S59.801A|ICD10CM|Other specified injuries of right elbow, initial encounter|Other specified injuries of right elbow, initial encounter +C2848867|T037|PT|S59.801A|ICD10CM|Other specified injuries of right elbow, initial encounter|Other specified injuries of right elbow, initial encounter +C2848868|T037|AB|S59.801D|ICD10CM|Other specified injuries of right elbow, subs encntr|Other specified injuries of right elbow, subs encntr +C2848868|T037|PT|S59.801D|ICD10CM|Other specified injuries of right elbow, subsequent encounter|Other specified injuries of right elbow, subsequent encounter +C2848869|T037|AB|S59.801S|ICD10CM|Other specified injuries of right elbow, sequela|Other specified injuries of right elbow, sequela +C2848869|T037|PT|S59.801S|ICD10CM|Other specified injuries of right elbow, sequela|Other specified injuries of right elbow, sequela +C2848870|T037|AB|S59.802|ICD10CM|Other specified injuries of left elbow|Other specified injuries of left elbow +C2848870|T037|HT|S59.802|ICD10CM|Other specified injuries of left elbow|Other specified injuries of left elbow +C2848871|T037|AB|S59.802A|ICD10CM|Other specified injuries of left elbow, initial encounter|Other specified injuries of left elbow, initial encounter +C2848871|T037|PT|S59.802A|ICD10CM|Other specified injuries of left elbow, initial encounter|Other specified injuries of left elbow, initial encounter +C2848872|T037|AB|S59.802D|ICD10CM|Other specified injuries of left elbow, subsequent encounter|Other specified injuries of left elbow, subsequent encounter +C2848872|T037|PT|S59.802D|ICD10CM|Other specified injuries of left elbow, subsequent encounter|Other specified injuries of left elbow, subsequent encounter +C2848873|T037|AB|S59.802S|ICD10CM|Other specified injuries of left elbow, sequela|Other specified injuries of left elbow, sequela +C2848873|T037|PT|S59.802S|ICD10CM|Other specified injuries of left elbow, sequela|Other specified injuries of left elbow, sequela +C2848874|T037|AB|S59.809|ICD10CM|Other specified injuries of unspecified elbow|Other specified injuries of unspecified elbow +C2848874|T037|HT|S59.809|ICD10CM|Other specified injuries of unspecified elbow|Other specified injuries of unspecified elbow +C2848875|T037|AB|S59.809A|ICD10CM|Other specified injuries of unspecified elbow, init encntr|Other specified injuries of unspecified elbow, init encntr +C2848875|T037|PT|S59.809A|ICD10CM|Other specified injuries of unspecified elbow, initial encounter|Other specified injuries of unspecified elbow, initial encounter +C2848876|T037|AB|S59.809D|ICD10CM|Other specified injuries of unspecified elbow, subs encntr|Other specified injuries of unspecified elbow, subs encntr +C2848876|T037|PT|S59.809D|ICD10CM|Other specified injuries of unspecified elbow, subsequent encounter|Other specified injuries of unspecified elbow, subsequent encounter +C2848877|T037|AB|S59.809S|ICD10CM|Other specified injuries of unspecified elbow, sequela|Other specified injuries of unspecified elbow, sequela +C2848877|T037|PT|S59.809S|ICD10CM|Other specified injuries of unspecified elbow, sequela|Other specified injuries of unspecified elbow, sequela +C0495890|T037|HT|S59.81|ICD10CM|Other specified injuries of forearm|Other specified injuries of forearm +C0495890|T037|AB|S59.81|ICD10CM|Other specified injuries of forearm|Other specified injuries of forearm +C2848878|T037|AB|S59.811|ICD10CM|Other specified injuries right forearm|Other specified injuries right forearm +C2848878|T037|HT|S59.811|ICD10CM|Other specified injuries right forearm|Other specified injuries right forearm +C2848879|T037|AB|S59.811A|ICD10CM|Other specified injuries right forearm, initial encounter|Other specified injuries right forearm, initial encounter +C2848879|T037|PT|S59.811A|ICD10CM|Other specified injuries right forearm, initial encounter|Other specified injuries right forearm, initial encounter +C2848880|T037|AB|S59.811D|ICD10CM|Other specified injuries right forearm, subsequent encounter|Other specified injuries right forearm, subsequent encounter +C2848880|T037|PT|S59.811D|ICD10CM|Other specified injuries right forearm, subsequent encounter|Other specified injuries right forearm, subsequent encounter +C2848881|T037|AB|S59.811S|ICD10CM|Other specified injuries right forearm, sequela|Other specified injuries right forearm, sequela +C2848881|T037|PT|S59.811S|ICD10CM|Other specified injuries right forearm, sequela|Other specified injuries right forearm, sequela +C2848882|T037|AB|S59.812|ICD10CM|Other specified injuries left forearm|Other specified injuries left forearm +C2848882|T037|HT|S59.812|ICD10CM|Other specified injuries left forearm|Other specified injuries left forearm +C2848883|T037|AB|S59.812A|ICD10CM|Other specified injuries left forearm, initial encounter|Other specified injuries left forearm, initial encounter +C2848883|T037|PT|S59.812A|ICD10CM|Other specified injuries left forearm, initial encounter|Other specified injuries left forearm, initial encounter +C2848884|T037|AB|S59.812D|ICD10CM|Other specified injuries left forearm, subsequent encounter|Other specified injuries left forearm, subsequent encounter +C2848884|T037|PT|S59.812D|ICD10CM|Other specified injuries left forearm, subsequent encounter|Other specified injuries left forearm, subsequent encounter +C2848885|T037|AB|S59.812S|ICD10CM|Other specified injuries left forearm, sequela|Other specified injuries left forearm, sequela +C2848885|T037|PT|S59.812S|ICD10CM|Other specified injuries left forearm, sequela|Other specified injuries left forearm, sequela +C2848886|T037|AB|S59.819|ICD10CM|Other specified injuries unspecified forearm|Other specified injuries unspecified forearm +C2848886|T037|HT|S59.819|ICD10CM|Other specified injuries unspecified forearm|Other specified injuries unspecified forearm +C2848887|T037|AB|S59.819A|ICD10CM|Other specified injuries unspecified forearm, init encntr|Other specified injuries unspecified forearm, init encntr +C2848887|T037|PT|S59.819A|ICD10CM|Other specified injuries unspecified forearm, initial encounter|Other specified injuries unspecified forearm, initial encounter +C2848888|T037|AB|S59.819D|ICD10CM|Other specified injuries unspecified forearm, subs encntr|Other specified injuries unspecified forearm, subs encntr +C2848888|T037|PT|S59.819D|ICD10CM|Other specified injuries unspecified forearm, subsequent encounter|Other specified injuries unspecified forearm, subsequent encounter +C2848889|T037|AB|S59.819S|ICD10CM|Other specified injuries unspecified forearm, sequela|Other specified injuries unspecified forearm, sequela +C2848889|T037|PT|S59.819S|ICD10CM|Other specified injuries unspecified forearm, sequela|Other specified injuries unspecified forearm, sequela +C0348771|T037|AB|S59.9|ICD10CM|Unspecified injury of elbow and forearm|Unspecified injury of elbow and forearm +C0348771|T037|HT|S59.9|ICD10CM|Unspecified injury of elbow and forearm|Unspecified injury of elbow and forearm +C0016537|T037|PT|S59.9|ICD10|Unspecified injury of forearm|Unspecified injury of forearm +C2848890|T037|AB|S59.90|ICD10CM|Unspecified injury of elbow|Unspecified injury of elbow +C2848890|T037|HT|S59.90|ICD10CM|Unspecified injury of elbow|Unspecified injury of elbow +C2848891|T037|AB|S59.901|ICD10CM|Unspecified injury of right elbow|Unspecified injury of right elbow +C2848891|T037|HT|S59.901|ICD10CM|Unspecified injury of right elbow|Unspecified injury of right elbow +C2848892|T037|PT|S59.901A|ICD10CM|Unspecified injury of right elbow, initial encounter|Unspecified injury of right elbow, initial encounter +C2848892|T037|AB|S59.901A|ICD10CM|Unspecified injury of right elbow, initial encounter|Unspecified injury of right elbow, initial encounter +C2848893|T037|PT|S59.901D|ICD10CM|Unspecified injury of right elbow, subsequent encounter|Unspecified injury of right elbow, subsequent encounter +C2848893|T037|AB|S59.901D|ICD10CM|Unspecified injury of right elbow, subsequent encounter|Unspecified injury of right elbow, subsequent encounter +C2848894|T037|PT|S59.901S|ICD10CM|Unspecified injury of right elbow, sequela|Unspecified injury of right elbow, sequela +C2848894|T037|AB|S59.901S|ICD10CM|Unspecified injury of right elbow, sequela|Unspecified injury of right elbow, sequela +C2848895|T037|AB|S59.902|ICD10CM|Unspecified injury of left elbow|Unspecified injury of left elbow +C2848895|T037|HT|S59.902|ICD10CM|Unspecified injury of left elbow|Unspecified injury of left elbow +C2848896|T037|PT|S59.902A|ICD10CM|Unspecified injury of left elbow, initial encounter|Unspecified injury of left elbow, initial encounter +C2848896|T037|AB|S59.902A|ICD10CM|Unspecified injury of left elbow, initial encounter|Unspecified injury of left elbow, initial encounter +C2848897|T037|PT|S59.902D|ICD10CM|Unspecified injury of left elbow, subsequent encounter|Unspecified injury of left elbow, subsequent encounter +C2848897|T037|AB|S59.902D|ICD10CM|Unspecified injury of left elbow, subsequent encounter|Unspecified injury of left elbow, subsequent encounter +C2848898|T037|PT|S59.902S|ICD10CM|Unspecified injury of left elbow, sequela|Unspecified injury of left elbow, sequela +C2848898|T037|AB|S59.902S|ICD10CM|Unspecified injury of left elbow, sequela|Unspecified injury of left elbow, sequela +C2848899|T037|AB|S59.909|ICD10CM|Unspecified injury of unspecified elbow|Unspecified injury of unspecified elbow +C2848899|T037|HT|S59.909|ICD10CM|Unspecified injury of unspecified elbow|Unspecified injury of unspecified elbow +C2848900|T037|PT|S59.909A|ICD10CM|Unspecified injury of unspecified elbow, initial encounter|Unspecified injury of unspecified elbow, initial encounter +C2848900|T037|AB|S59.909A|ICD10CM|Unspecified injury of unspecified elbow, initial encounter|Unspecified injury of unspecified elbow, initial encounter +C2848901|T037|AB|S59.909D|ICD10CM|Unspecified injury of unspecified elbow, subs encntr|Unspecified injury of unspecified elbow, subs encntr +C2848901|T037|PT|S59.909D|ICD10CM|Unspecified injury of unspecified elbow, subsequent encounter|Unspecified injury of unspecified elbow, subsequent encounter +C2848902|T037|PT|S59.909S|ICD10CM|Unspecified injury of unspecified elbow, sequela|Unspecified injury of unspecified elbow, sequela +C2848902|T037|AB|S59.909S|ICD10CM|Unspecified injury of unspecified elbow, sequela|Unspecified injury of unspecified elbow, sequela +C0016537|T037|HT|S59.91|ICD10CM|Unspecified injury of forearm|Unspecified injury of forearm +C0016537|T037|AB|S59.91|ICD10CM|Unspecified injury of forearm|Unspecified injury of forearm +C2848903|T037|AB|S59.911|ICD10CM|Unspecified injury of right forearm|Unspecified injury of right forearm +C2848903|T037|HT|S59.911|ICD10CM|Unspecified injury of right forearm|Unspecified injury of right forearm +C2848904|T037|PT|S59.911A|ICD10CM|Unspecified injury of right forearm, initial encounter|Unspecified injury of right forearm, initial encounter +C2848904|T037|AB|S59.911A|ICD10CM|Unspecified injury of right forearm, initial encounter|Unspecified injury of right forearm, initial encounter +C2848905|T037|PT|S59.911D|ICD10CM|Unspecified injury of right forearm, subsequent encounter|Unspecified injury of right forearm, subsequent encounter +C2848905|T037|AB|S59.911D|ICD10CM|Unspecified injury of right forearm, subsequent encounter|Unspecified injury of right forearm, subsequent encounter +C2848906|T037|PT|S59.911S|ICD10CM|Unspecified injury of right forearm, sequela|Unspecified injury of right forearm, sequela +C2848906|T037|AB|S59.911S|ICD10CM|Unspecified injury of right forearm, sequela|Unspecified injury of right forearm, sequela +C2848907|T037|AB|S59.912|ICD10CM|Unspecified injury of left forearm|Unspecified injury of left forearm +C2848907|T037|HT|S59.912|ICD10CM|Unspecified injury of left forearm|Unspecified injury of left forearm +C2848908|T037|PT|S59.912A|ICD10CM|Unspecified injury of left forearm, initial encounter|Unspecified injury of left forearm, initial encounter +C2848908|T037|AB|S59.912A|ICD10CM|Unspecified injury of left forearm, initial encounter|Unspecified injury of left forearm, initial encounter +C2848909|T037|PT|S59.912D|ICD10CM|Unspecified injury of left forearm, subsequent encounter|Unspecified injury of left forearm, subsequent encounter +C2848909|T037|AB|S59.912D|ICD10CM|Unspecified injury of left forearm, subsequent encounter|Unspecified injury of left forearm, subsequent encounter +C2848910|T037|PT|S59.912S|ICD10CM|Unspecified injury of left forearm, sequela|Unspecified injury of left forearm, sequela +C2848910|T037|AB|S59.912S|ICD10CM|Unspecified injury of left forearm, sequela|Unspecified injury of left forearm, sequela +C2848911|T037|AB|S59.919|ICD10CM|Unspecified injury of unspecified forearm|Unspecified injury of unspecified forearm +C2848911|T037|HT|S59.919|ICD10CM|Unspecified injury of unspecified forearm|Unspecified injury of unspecified forearm +C2848912|T037|AB|S59.919A|ICD10CM|Unspecified injury of unspecified forearm, initial encounter|Unspecified injury of unspecified forearm, initial encounter +C2848912|T037|PT|S59.919A|ICD10CM|Unspecified injury of unspecified forearm, initial encounter|Unspecified injury of unspecified forearm, initial encounter +C2848913|T037|AB|S59.919D|ICD10CM|Unspecified injury of unspecified forearm, subs encntr|Unspecified injury of unspecified forearm, subs encntr +C2848913|T037|PT|S59.919D|ICD10CM|Unspecified injury of unspecified forearm, subsequent encounter|Unspecified injury of unspecified forearm, subsequent encounter +C2848914|T037|PT|S59.919S|ICD10CM|Unspecified injury of unspecified forearm, sequela|Unspecified injury of unspecified forearm, sequela +C2848914|T037|AB|S59.919S|ICD10CM|Unspecified injury of unspecified forearm, sequela|Unspecified injury of unspecified forearm, sequela +C0495892|T037|HT|S60|ICD10|Superficial injury of wrist and hand|Superficial injury of wrist and hand +C2848915|T037|AB|S60|ICD10CM|Superficial injury of wrist, hand and fingers|Superficial injury of wrist, hand and fingers +C2848915|T037|HT|S60|ICD10CM|Superficial injury of wrist, hand and fingers|Superficial injury of wrist, hand and fingers +C2848916|T037|HT|S60-S69|ICD10CM|Injuries to the wrist, hand and fingers (S60-S69)|Injuries to the wrist, hand and fingers (S60-S69) +C0495926|T037|HT|S60-S69.9|ICD10|Injuries to the wrist and hand|Injuries to the wrist and hand +C0495893|T037|HT|S60.0|ICD10CM|Contusion of finger without damage to nail|Contusion of finger without damage to nail +C0495893|T037|AB|S60.0|ICD10CM|Contusion of finger without damage to nail|Contusion of finger without damage to nail +C0495893|T037|PT|S60.0|ICD10|Contusion of finger(s) without damage to nail|Contusion of finger(s) without damage to nail +C0432773|T037|ET|S60.00|ICD10CM|Contusion of finger(s) NOS|Contusion of finger(s) NOS +C2848917|T037|AB|S60.00|ICD10CM|Contusion of unspecified finger without damage to nail|Contusion of unspecified finger without damage to nail +C2848917|T037|HT|S60.00|ICD10CM|Contusion of unspecified finger without damage to nail|Contusion of unspecified finger without damage to nail +C2848918|T037|AB|S60.00XA|ICD10CM|Contusion of unsp finger without damage to nail, init encntr|Contusion of unsp finger without damage to nail, init encntr +C2848918|T037|PT|S60.00XA|ICD10CM|Contusion of unspecified finger without damage to nail, initial encounter|Contusion of unspecified finger without damage to nail, initial encounter +C2848919|T037|AB|S60.00XD|ICD10CM|Contusion of unsp finger without damage to nail, subs encntr|Contusion of unsp finger without damage to nail, subs encntr +C2848919|T037|PT|S60.00XD|ICD10CM|Contusion of unspecified finger without damage to nail, subsequent encounter|Contusion of unspecified finger without damage to nail, subsequent encounter +C2848920|T037|AB|S60.00XS|ICD10CM|Contusion of unsp finger without damage to nail, sequela|Contusion of unsp finger without damage to nail, sequela +C2848920|T037|PT|S60.00XS|ICD10CM|Contusion of unspecified finger without damage to nail, sequela|Contusion of unspecified finger without damage to nail, sequela +C2848921|T037|HT|S60.01|ICD10CM|Contusion of thumb without damage to nail|Contusion of thumb without damage to nail +C2848921|T037|AB|S60.01|ICD10CM|Contusion of thumb without damage to nail|Contusion of thumb without damage to nail +C2848922|T037|HT|S60.011|ICD10CM|Contusion of right thumb without damage to nail|Contusion of right thumb without damage to nail +C2848922|T037|AB|S60.011|ICD10CM|Contusion of right thumb without damage to nail|Contusion of right thumb without damage to nail +C2848923|T037|AB|S60.011A|ICD10CM|Contusion of right thumb without damage to nail, init encntr|Contusion of right thumb without damage to nail, init encntr +C2848923|T037|PT|S60.011A|ICD10CM|Contusion of right thumb without damage to nail, initial encounter|Contusion of right thumb without damage to nail, initial encounter +C2848924|T037|AB|S60.011D|ICD10CM|Contusion of right thumb without damage to nail, subs encntr|Contusion of right thumb without damage to nail, subs encntr +C2848924|T037|PT|S60.011D|ICD10CM|Contusion of right thumb without damage to nail, subsequent encounter|Contusion of right thumb without damage to nail, subsequent encounter +C2848925|T037|AB|S60.011S|ICD10CM|Contusion of right thumb without damage to nail, sequela|Contusion of right thumb without damage to nail, sequela +C2848925|T037|PT|S60.011S|ICD10CM|Contusion of right thumb without damage to nail, sequela|Contusion of right thumb without damage to nail, sequela +C2848926|T037|HT|S60.012|ICD10CM|Contusion of left thumb without damage to nail|Contusion of left thumb without damage to nail +C2848926|T037|AB|S60.012|ICD10CM|Contusion of left thumb without damage to nail|Contusion of left thumb without damage to nail +C2848927|T037|AB|S60.012A|ICD10CM|Contusion of left thumb without damage to nail, init encntr|Contusion of left thumb without damage to nail, init encntr +C2848927|T037|PT|S60.012A|ICD10CM|Contusion of left thumb without damage to nail, initial encounter|Contusion of left thumb without damage to nail, initial encounter +C2848928|T037|AB|S60.012D|ICD10CM|Contusion of left thumb without damage to nail, subs encntr|Contusion of left thumb without damage to nail, subs encntr +C2848928|T037|PT|S60.012D|ICD10CM|Contusion of left thumb without damage to nail, subsequent encounter|Contusion of left thumb without damage to nail, subsequent encounter +C2848929|T037|AB|S60.012S|ICD10CM|Contusion of left thumb without damage to nail, sequela|Contusion of left thumb without damage to nail, sequela +C2848929|T037|PT|S60.012S|ICD10CM|Contusion of left thumb without damage to nail, sequela|Contusion of left thumb without damage to nail, sequela +C2848930|T037|AB|S60.019|ICD10CM|Contusion of unspecified thumb without damage to nail|Contusion of unspecified thumb without damage to nail +C2848930|T037|HT|S60.019|ICD10CM|Contusion of unspecified thumb without damage to nail|Contusion of unspecified thumb without damage to nail +C2848931|T037|AB|S60.019A|ICD10CM|Contusion of unsp thumb without damage to nail, init encntr|Contusion of unsp thumb without damage to nail, init encntr +C2848931|T037|PT|S60.019A|ICD10CM|Contusion of unspecified thumb without damage to nail, initial encounter|Contusion of unspecified thumb without damage to nail, initial encounter +C2848932|T037|AB|S60.019D|ICD10CM|Contusion of unsp thumb without damage to nail, subs encntr|Contusion of unsp thumb without damage to nail, subs encntr +C2848932|T037|PT|S60.019D|ICD10CM|Contusion of unspecified thumb without damage to nail, subsequent encounter|Contusion of unspecified thumb without damage to nail, subsequent encounter +C2848933|T037|AB|S60.019S|ICD10CM|Contusion of unsp thumb without damage to nail, sequela|Contusion of unsp thumb without damage to nail, sequela +C2848933|T037|PT|S60.019S|ICD10CM|Contusion of unspecified thumb without damage to nail, sequela|Contusion of unspecified thumb without damage to nail, sequela +C2848934|T037|HT|S60.02|ICD10CM|Contusion of index finger without damage to nail|Contusion of index finger without damage to nail +C2848934|T037|AB|S60.02|ICD10CM|Contusion of index finger without damage to nail|Contusion of index finger without damage to nail +C2848935|T037|HT|S60.021|ICD10CM|Contusion of right index finger without damage to nail|Contusion of right index finger without damage to nail +C2848935|T037|AB|S60.021|ICD10CM|Contusion of right index finger without damage to nail|Contusion of right index finger without damage to nail +C2848936|T037|AB|S60.021A|ICD10CM|Contusion of right index finger w/o damage to nail, init|Contusion of right index finger w/o damage to nail, init +C2848936|T037|PT|S60.021A|ICD10CM|Contusion of right index finger without damage to nail, initial encounter|Contusion of right index finger without damage to nail, initial encounter +C2848937|T037|AB|S60.021D|ICD10CM|Contusion of right index finger w/o damage to nail, subs|Contusion of right index finger w/o damage to nail, subs +C2848937|T037|PT|S60.021D|ICD10CM|Contusion of right index finger without damage to nail, subsequent encounter|Contusion of right index finger without damage to nail, subsequent encounter +C2848938|T037|AB|S60.021S|ICD10CM|Contusion of right index finger w/o damage to nail, sequela|Contusion of right index finger w/o damage to nail, sequela +C2848938|T037|PT|S60.021S|ICD10CM|Contusion of right index finger without damage to nail, sequela|Contusion of right index finger without damage to nail, sequela +C2848939|T037|HT|S60.022|ICD10CM|Contusion of left index finger without damage to nail|Contusion of left index finger without damage to nail +C2848939|T037|AB|S60.022|ICD10CM|Contusion of left index finger without damage to nail|Contusion of left index finger without damage to nail +C2848940|T037|AB|S60.022A|ICD10CM|Contusion of left index finger w/o damage to nail, init|Contusion of left index finger w/o damage to nail, init +C2848940|T037|PT|S60.022A|ICD10CM|Contusion of left index finger without damage to nail, initial encounter|Contusion of left index finger without damage to nail, initial encounter +C2848941|T037|AB|S60.022D|ICD10CM|Contusion of left index finger w/o damage to nail, subs|Contusion of left index finger w/o damage to nail, subs +C2848941|T037|PT|S60.022D|ICD10CM|Contusion of left index finger without damage to nail, subsequent encounter|Contusion of left index finger without damage to nail, subsequent encounter +C2848942|T037|AB|S60.022S|ICD10CM|Contusion of left index finger w/o damage to nail, sequela|Contusion of left index finger w/o damage to nail, sequela +C2848942|T037|PT|S60.022S|ICD10CM|Contusion of left index finger without damage to nail, sequela|Contusion of left index finger without damage to nail, sequela +C2848943|T037|AB|S60.029|ICD10CM|Contusion of unspecified index finger without damage to nail|Contusion of unspecified index finger without damage to nail +C2848943|T037|HT|S60.029|ICD10CM|Contusion of unspecified index finger without damage to nail|Contusion of unspecified index finger without damage to nail +C2848944|T037|AB|S60.029A|ICD10CM|Contusion of unsp index finger w/o damage to nail, init|Contusion of unsp index finger w/o damage to nail, init +C2848944|T037|PT|S60.029A|ICD10CM|Contusion of unspecified index finger without damage to nail, initial encounter|Contusion of unspecified index finger without damage to nail, initial encounter +C2848945|T037|AB|S60.029D|ICD10CM|Contusion of unsp index finger w/o damage to nail, subs|Contusion of unsp index finger w/o damage to nail, subs +C2848945|T037|PT|S60.029D|ICD10CM|Contusion of unspecified index finger without damage to nail, subsequent encounter|Contusion of unspecified index finger without damage to nail, subsequent encounter +C2848946|T037|AB|S60.029S|ICD10CM|Contusion of unsp index finger w/o damage to nail, sequela|Contusion of unsp index finger w/o damage to nail, sequela +C2848946|T037|PT|S60.029S|ICD10CM|Contusion of unspecified index finger without damage to nail, sequela|Contusion of unspecified index finger without damage to nail, sequela +C2848947|T037|HT|S60.03|ICD10CM|Contusion of middle finger without damage to nail|Contusion of middle finger without damage to nail +C2848947|T037|AB|S60.03|ICD10CM|Contusion of middle finger without damage to nail|Contusion of middle finger without damage to nail +C2848948|T037|HT|S60.031|ICD10CM|Contusion of right middle finger without damage to nail|Contusion of right middle finger without damage to nail +C2848948|T037|AB|S60.031|ICD10CM|Contusion of right middle finger without damage to nail|Contusion of right middle finger without damage to nail +C2848949|T037|AB|S60.031A|ICD10CM|Contusion of right middle finger w/o damage to nail, init|Contusion of right middle finger w/o damage to nail, init +C2848949|T037|PT|S60.031A|ICD10CM|Contusion of right middle finger without damage to nail, initial encounter|Contusion of right middle finger without damage to nail, initial encounter +C2848950|T037|AB|S60.031D|ICD10CM|Contusion of right middle finger w/o damage to nail, subs|Contusion of right middle finger w/o damage to nail, subs +C2848950|T037|PT|S60.031D|ICD10CM|Contusion of right middle finger without damage to nail, subsequent encounter|Contusion of right middle finger without damage to nail, subsequent encounter +C2848951|T037|AB|S60.031S|ICD10CM|Contusion of right middle finger w/o damage to nail, sequela|Contusion of right middle finger w/o damage to nail, sequela +C2848951|T037|PT|S60.031S|ICD10CM|Contusion of right middle finger without damage to nail, sequela|Contusion of right middle finger without damage to nail, sequela +C2848952|T037|HT|S60.032|ICD10CM|Contusion of left middle finger without damage to nail|Contusion of left middle finger without damage to nail +C2848952|T037|AB|S60.032|ICD10CM|Contusion of left middle finger without damage to nail|Contusion of left middle finger without damage to nail +C2848953|T037|AB|S60.032A|ICD10CM|Contusion of left middle finger w/o damage to nail, init|Contusion of left middle finger w/o damage to nail, init +C2848953|T037|PT|S60.032A|ICD10CM|Contusion of left middle finger without damage to nail, initial encounter|Contusion of left middle finger without damage to nail, initial encounter +C2848954|T037|AB|S60.032D|ICD10CM|Contusion of left middle finger w/o damage to nail, subs|Contusion of left middle finger w/o damage to nail, subs +C2848954|T037|PT|S60.032D|ICD10CM|Contusion of left middle finger without damage to nail, subsequent encounter|Contusion of left middle finger without damage to nail, subsequent encounter +C2848955|T037|AB|S60.032S|ICD10CM|Contusion of left middle finger w/o damage to nail, sequela|Contusion of left middle finger w/o damage to nail, sequela +C2848955|T037|PT|S60.032S|ICD10CM|Contusion of left middle finger without damage to nail, sequela|Contusion of left middle finger without damage to nail, sequela +C2848956|T037|AB|S60.039|ICD10CM|Contusion of unsp middle finger without damage to nail|Contusion of unsp middle finger without damage to nail +C2848956|T037|HT|S60.039|ICD10CM|Contusion of unspecified middle finger without damage to nail|Contusion of unspecified middle finger without damage to nail +C2848957|T037|AB|S60.039A|ICD10CM|Contusion of unsp middle finger w/o damage to nail, init|Contusion of unsp middle finger w/o damage to nail, init +C2848957|T037|PT|S60.039A|ICD10CM|Contusion of unspecified middle finger without damage to nail, initial encounter|Contusion of unspecified middle finger without damage to nail, initial encounter +C2848958|T037|AB|S60.039D|ICD10CM|Contusion of unsp middle finger w/o damage to nail, subs|Contusion of unsp middle finger w/o damage to nail, subs +C2848958|T037|PT|S60.039D|ICD10CM|Contusion of unspecified middle finger without damage to nail, subsequent encounter|Contusion of unspecified middle finger without damage to nail, subsequent encounter +C2848959|T037|AB|S60.039S|ICD10CM|Contusion of unsp middle finger w/o damage to nail, sequela|Contusion of unsp middle finger w/o damage to nail, sequela +C2848959|T037|PT|S60.039S|ICD10CM|Contusion of unspecified middle finger without damage to nail, sequela|Contusion of unspecified middle finger without damage to nail, sequela +C2848960|T037|HT|S60.04|ICD10CM|Contusion of ring finger without damage to nail|Contusion of ring finger without damage to nail +C2848960|T037|AB|S60.04|ICD10CM|Contusion of ring finger without damage to nail|Contusion of ring finger without damage to nail +C2848961|T037|HT|S60.041|ICD10CM|Contusion of right ring finger without damage to nail|Contusion of right ring finger without damage to nail +C2848961|T037|AB|S60.041|ICD10CM|Contusion of right ring finger without damage to nail|Contusion of right ring finger without damage to nail +C2848962|T037|AB|S60.041A|ICD10CM|Contusion of right ring finger w/o damage to nail, init|Contusion of right ring finger w/o damage to nail, init +C2848962|T037|PT|S60.041A|ICD10CM|Contusion of right ring finger without damage to nail, initial encounter|Contusion of right ring finger without damage to nail, initial encounter +C2848963|T037|AB|S60.041D|ICD10CM|Contusion of right ring finger w/o damage to nail, subs|Contusion of right ring finger w/o damage to nail, subs +C2848963|T037|PT|S60.041D|ICD10CM|Contusion of right ring finger without damage to nail, subsequent encounter|Contusion of right ring finger without damage to nail, subsequent encounter +C2848964|T037|AB|S60.041S|ICD10CM|Contusion of right ring finger w/o damage to nail, sequela|Contusion of right ring finger w/o damage to nail, sequela +C2848964|T037|PT|S60.041S|ICD10CM|Contusion of right ring finger without damage to nail, sequela|Contusion of right ring finger without damage to nail, sequela +C2848965|T037|HT|S60.042|ICD10CM|Contusion of left ring finger without damage to nail|Contusion of left ring finger without damage to nail +C2848965|T037|AB|S60.042|ICD10CM|Contusion of left ring finger without damage to nail|Contusion of left ring finger without damage to nail +C2848966|T037|AB|S60.042A|ICD10CM|Contusion of left ring finger w/o damage to nail, init|Contusion of left ring finger w/o damage to nail, init +C2848966|T037|PT|S60.042A|ICD10CM|Contusion of left ring finger without damage to nail, initial encounter|Contusion of left ring finger without damage to nail, initial encounter +C2848967|T037|AB|S60.042D|ICD10CM|Contusion of left ring finger w/o damage to nail, subs|Contusion of left ring finger w/o damage to nail, subs +C2848967|T037|PT|S60.042D|ICD10CM|Contusion of left ring finger without damage to nail, subsequent encounter|Contusion of left ring finger without damage to nail, subsequent encounter +C2848968|T037|AB|S60.042S|ICD10CM|Contusion of left ring finger w/o damage to nail, sequela|Contusion of left ring finger w/o damage to nail, sequela +C2848968|T037|PT|S60.042S|ICD10CM|Contusion of left ring finger without damage to nail, sequela|Contusion of left ring finger without damage to nail, sequela +C2848969|T037|AB|S60.049|ICD10CM|Contusion of unspecified ring finger without damage to nail|Contusion of unspecified ring finger without damage to nail +C2848969|T037|HT|S60.049|ICD10CM|Contusion of unspecified ring finger without damage to nail|Contusion of unspecified ring finger without damage to nail +C2848970|T037|AB|S60.049A|ICD10CM|Contusion of unsp ring finger w/o damage to nail, init|Contusion of unsp ring finger w/o damage to nail, init +C2848970|T037|PT|S60.049A|ICD10CM|Contusion of unspecified ring finger without damage to nail, initial encounter|Contusion of unspecified ring finger without damage to nail, initial encounter +C2848971|T037|AB|S60.049D|ICD10CM|Contusion of unsp ring finger w/o damage to nail, subs|Contusion of unsp ring finger w/o damage to nail, subs +C2848971|T037|PT|S60.049D|ICD10CM|Contusion of unspecified ring finger without damage to nail, subsequent encounter|Contusion of unspecified ring finger without damage to nail, subsequent encounter +C2848972|T037|AB|S60.049S|ICD10CM|Contusion of unsp ring finger w/o damage to nail, sequela|Contusion of unsp ring finger w/o damage to nail, sequela +C2848972|T037|PT|S60.049S|ICD10CM|Contusion of unspecified ring finger without damage to nail, sequela|Contusion of unspecified ring finger without damage to nail, sequela +C2848973|T037|HT|S60.05|ICD10CM|Contusion of little finger without damage to nail|Contusion of little finger without damage to nail +C2848973|T037|AB|S60.05|ICD10CM|Contusion of little finger without damage to nail|Contusion of little finger without damage to nail +C2848974|T037|HT|S60.051|ICD10CM|Contusion of right little finger without damage to nail|Contusion of right little finger without damage to nail +C2848974|T037|AB|S60.051|ICD10CM|Contusion of right little finger without damage to nail|Contusion of right little finger without damage to nail +C2848975|T037|AB|S60.051A|ICD10CM|Contusion of right little finger w/o damage to nail, init|Contusion of right little finger w/o damage to nail, init +C2848975|T037|PT|S60.051A|ICD10CM|Contusion of right little finger without damage to nail, initial encounter|Contusion of right little finger without damage to nail, initial encounter +C2848976|T037|AB|S60.051D|ICD10CM|Contusion of right little finger w/o damage to nail, subs|Contusion of right little finger w/o damage to nail, subs +C2848976|T037|PT|S60.051D|ICD10CM|Contusion of right little finger without damage to nail, subsequent encounter|Contusion of right little finger without damage to nail, subsequent encounter +C2848977|T037|AB|S60.051S|ICD10CM|Contusion of right little finger w/o damage to nail, sequela|Contusion of right little finger w/o damage to nail, sequela +C2848977|T037|PT|S60.051S|ICD10CM|Contusion of right little finger without damage to nail, sequela|Contusion of right little finger without damage to nail, sequela +C2848978|T037|HT|S60.052|ICD10CM|Contusion of left little finger without damage to nail|Contusion of left little finger without damage to nail +C2848978|T037|AB|S60.052|ICD10CM|Contusion of left little finger without damage to nail|Contusion of left little finger without damage to nail +C2848979|T037|AB|S60.052A|ICD10CM|Contusion of left little finger w/o damage to nail, init|Contusion of left little finger w/o damage to nail, init +C2848979|T037|PT|S60.052A|ICD10CM|Contusion of left little finger without damage to nail, initial encounter|Contusion of left little finger without damage to nail, initial encounter +C2848980|T037|AB|S60.052D|ICD10CM|Contusion of left little finger w/o damage to nail, subs|Contusion of left little finger w/o damage to nail, subs +C2848980|T037|PT|S60.052D|ICD10CM|Contusion of left little finger without damage to nail, subsequent encounter|Contusion of left little finger without damage to nail, subsequent encounter +C2848981|T037|AB|S60.052S|ICD10CM|Contusion of left little finger w/o damage to nail, sequela|Contusion of left little finger w/o damage to nail, sequela +C2848981|T037|PT|S60.052S|ICD10CM|Contusion of left little finger without damage to nail, sequela|Contusion of left little finger without damage to nail, sequela +C2848982|T037|AB|S60.059|ICD10CM|Contusion of unsp little finger without damage to nail|Contusion of unsp little finger without damage to nail +C2848982|T037|HT|S60.059|ICD10CM|Contusion of unspecified little finger without damage to nail|Contusion of unspecified little finger without damage to nail +C2848983|T037|AB|S60.059A|ICD10CM|Contusion of unsp little finger w/o damage to nail, init|Contusion of unsp little finger w/o damage to nail, init +C2848983|T037|PT|S60.059A|ICD10CM|Contusion of unspecified little finger without damage to nail, initial encounter|Contusion of unspecified little finger without damage to nail, initial encounter +C2848984|T037|AB|S60.059D|ICD10CM|Contusion of unsp little finger w/o damage to nail, subs|Contusion of unsp little finger w/o damage to nail, subs +C2848984|T037|PT|S60.059D|ICD10CM|Contusion of unspecified little finger without damage to nail, subsequent encounter|Contusion of unspecified little finger without damage to nail, subsequent encounter +C2848985|T037|AB|S60.059S|ICD10CM|Contusion of unsp little finger w/o damage to nail, sequela|Contusion of unsp little finger w/o damage to nail, sequela +C2848985|T037|PT|S60.059S|ICD10CM|Contusion of unspecified little finger without damage to nail, sequela|Contusion of unspecified little finger without damage to nail, sequela +C0495894|T037|AB|S60.1|ICD10CM|Contusion of finger with damage to nail|Contusion of finger with damage to nail +C0495894|T037|HT|S60.1|ICD10CM|Contusion of finger with damage to nail|Contusion of finger with damage to nail +C0495894|T037|PT|S60.1|ICD10|Contusion of finger(s) with damage to nail|Contusion of finger(s) with damage to nail +C2848986|T037|AB|S60.10|ICD10CM|Contusion of unspecified finger with damage to nail|Contusion of unspecified finger with damage to nail +C2848986|T037|HT|S60.10|ICD10CM|Contusion of unspecified finger with damage to nail|Contusion of unspecified finger with damage to nail +C2848987|T037|AB|S60.10XA|ICD10CM|Contusion of unsp finger with damage to nail, init encntr|Contusion of unsp finger with damage to nail, init encntr +C2848987|T037|PT|S60.10XA|ICD10CM|Contusion of unspecified finger with damage to nail, initial encounter|Contusion of unspecified finger with damage to nail, initial encounter +C2848988|T037|AB|S60.10XD|ICD10CM|Contusion of unsp finger with damage to nail, subs encntr|Contusion of unsp finger with damage to nail, subs encntr +C2848988|T037|PT|S60.10XD|ICD10CM|Contusion of unspecified finger with damage to nail, subsequent encounter|Contusion of unspecified finger with damage to nail, subsequent encounter +C2848989|T037|AB|S60.10XS|ICD10CM|Contusion of unspecified finger with damage to nail, sequela|Contusion of unspecified finger with damage to nail, sequela +C2848989|T037|PT|S60.10XS|ICD10CM|Contusion of unspecified finger with damage to nail, sequela|Contusion of unspecified finger with damage to nail, sequela +C2848990|T037|AB|S60.11|ICD10CM|Contusion of thumb with damage to nail|Contusion of thumb with damage to nail +C2848990|T037|HT|S60.11|ICD10CM|Contusion of thumb with damage to nail|Contusion of thumb with damage to nail +C2848991|T037|AB|S60.111|ICD10CM|Contusion of right thumb with damage to nail|Contusion of right thumb with damage to nail +C2848991|T037|HT|S60.111|ICD10CM|Contusion of right thumb with damage to nail|Contusion of right thumb with damage to nail +C2848992|T037|AB|S60.111A|ICD10CM|Contusion of right thumb with damage to nail, init encntr|Contusion of right thumb with damage to nail, init encntr +C2848992|T037|PT|S60.111A|ICD10CM|Contusion of right thumb with damage to nail, initial encounter|Contusion of right thumb with damage to nail, initial encounter +C2848993|T037|AB|S60.111D|ICD10CM|Contusion of right thumb with damage to nail, subs encntr|Contusion of right thumb with damage to nail, subs encntr +C2848993|T037|PT|S60.111D|ICD10CM|Contusion of right thumb with damage to nail, subsequent encounter|Contusion of right thumb with damage to nail, subsequent encounter +C2848994|T037|AB|S60.111S|ICD10CM|Contusion of right thumb with damage to nail, sequela|Contusion of right thumb with damage to nail, sequela +C2848994|T037|PT|S60.111S|ICD10CM|Contusion of right thumb with damage to nail, sequela|Contusion of right thumb with damage to nail, sequela +C2848995|T037|AB|S60.112|ICD10CM|Contusion of left thumb with damage to nail|Contusion of left thumb with damage to nail +C2848995|T037|HT|S60.112|ICD10CM|Contusion of left thumb with damage to nail|Contusion of left thumb with damage to nail +C2848996|T037|AB|S60.112A|ICD10CM|Contusion of left thumb with damage to nail, init encntr|Contusion of left thumb with damage to nail, init encntr +C2848996|T037|PT|S60.112A|ICD10CM|Contusion of left thumb with damage to nail, initial encounter|Contusion of left thumb with damage to nail, initial encounter +C2848997|T037|AB|S60.112D|ICD10CM|Contusion of left thumb with damage to nail, subs encntr|Contusion of left thumb with damage to nail, subs encntr +C2848997|T037|PT|S60.112D|ICD10CM|Contusion of left thumb with damage to nail, subsequent encounter|Contusion of left thumb with damage to nail, subsequent encounter +C2848998|T037|AB|S60.112S|ICD10CM|Contusion of left thumb with damage to nail, sequela|Contusion of left thumb with damage to nail, sequela +C2848998|T037|PT|S60.112S|ICD10CM|Contusion of left thumb with damage to nail, sequela|Contusion of left thumb with damage to nail, sequela +C2848999|T037|AB|S60.119|ICD10CM|Contusion of unspecified thumb with damage to nail|Contusion of unspecified thumb with damage to nail +C2848999|T037|HT|S60.119|ICD10CM|Contusion of unspecified thumb with damage to nail|Contusion of unspecified thumb with damage to nail +C2849000|T037|AB|S60.119A|ICD10CM|Contusion of unsp thumb with damage to nail, init encntr|Contusion of unsp thumb with damage to nail, init encntr +C2849000|T037|PT|S60.119A|ICD10CM|Contusion of unspecified thumb with damage to nail, initial encounter|Contusion of unspecified thumb with damage to nail, initial encounter +C2849001|T037|AB|S60.119D|ICD10CM|Contusion of unsp thumb with damage to nail, subs encntr|Contusion of unsp thumb with damage to nail, subs encntr +C2849001|T037|PT|S60.119D|ICD10CM|Contusion of unspecified thumb with damage to nail, subsequent encounter|Contusion of unspecified thumb with damage to nail, subsequent encounter +C2849002|T037|AB|S60.119S|ICD10CM|Contusion of unspecified thumb with damage to nail, sequela|Contusion of unspecified thumb with damage to nail, sequela +C2849002|T037|PT|S60.119S|ICD10CM|Contusion of unspecified thumb with damage to nail, sequela|Contusion of unspecified thumb with damage to nail, sequela +C2849003|T037|AB|S60.12|ICD10CM|Contusion of index finger with damage to nail|Contusion of index finger with damage to nail +C2849003|T037|HT|S60.12|ICD10CM|Contusion of index finger with damage to nail|Contusion of index finger with damage to nail +C2849004|T037|AB|S60.121|ICD10CM|Contusion of right index finger with damage to nail|Contusion of right index finger with damage to nail +C2849004|T037|HT|S60.121|ICD10CM|Contusion of right index finger with damage to nail|Contusion of right index finger with damage to nail +C2849005|T037|AB|S60.121A|ICD10CM|Contusion of right index finger w damage to nail, init|Contusion of right index finger w damage to nail, init +C2849005|T037|PT|S60.121A|ICD10CM|Contusion of right index finger with damage to nail, initial encounter|Contusion of right index finger with damage to nail, initial encounter +C2849006|T037|AB|S60.121D|ICD10CM|Contusion of right index finger w damage to nail, subs|Contusion of right index finger w damage to nail, subs +C2849006|T037|PT|S60.121D|ICD10CM|Contusion of right index finger with damage to nail, subsequent encounter|Contusion of right index finger with damage to nail, subsequent encounter +C2849007|T037|AB|S60.121S|ICD10CM|Contusion of right index finger with damage to nail, sequela|Contusion of right index finger with damage to nail, sequela +C2849007|T037|PT|S60.121S|ICD10CM|Contusion of right index finger with damage to nail, sequela|Contusion of right index finger with damage to nail, sequela +C2849008|T037|AB|S60.122|ICD10CM|Contusion of left index finger with damage to nail|Contusion of left index finger with damage to nail +C2849008|T037|HT|S60.122|ICD10CM|Contusion of left index finger with damage to nail|Contusion of left index finger with damage to nail +C2849009|T037|AB|S60.122A|ICD10CM|Contusion of left index finger w damage to nail, init encntr|Contusion of left index finger w damage to nail, init encntr +C2849009|T037|PT|S60.122A|ICD10CM|Contusion of left index finger with damage to nail, initial encounter|Contusion of left index finger with damage to nail, initial encounter +C2849010|T037|AB|S60.122D|ICD10CM|Contusion of left index finger w damage to nail, subs encntr|Contusion of left index finger w damage to nail, subs encntr +C2849010|T037|PT|S60.122D|ICD10CM|Contusion of left index finger with damage to nail, subsequent encounter|Contusion of left index finger with damage to nail, subsequent encounter +C2849011|T037|AB|S60.122S|ICD10CM|Contusion of left index finger with damage to nail, sequela|Contusion of left index finger with damage to nail, sequela +C2849011|T037|PT|S60.122S|ICD10CM|Contusion of left index finger with damage to nail, sequela|Contusion of left index finger with damage to nail, sequela +C2849012|T037|AB|S60.129|ICD10CM|Contusion of unspecified index finger with damage to nail|Contusion of unspecified index finger with damage to nail +C2849012|T037|HT|S60.129|ICD10CM|Contusion of unspecified index finger with damage to nail|Contusion of unspecified index finger with damage to nail +C2849013|T037|AB|S60.129A|ICD10CM|Contusion of unsp index finger w damage to nail, init encntr|Contusion of unsp index finger w damage to nail, init encntr +C2849013|T037|PT|S60.129A|ICD10CM|Contusion of unspecified index finger with damage to nail, initial encounter|Contusion of unspecified index finger with damage to nail, initial encounter +C2849014|T037|AB|S60.129D|ICD10CM|Contusion of unsp index finger w damage to nail, subs encntr|Contusion of unsp index finger w damage to nail, subs encntr +C2849014|T037|PT|S60.129D|ICD10CM|Contusion of unspecified index finger with damage to nail, subsequent encounter|Contusion of unspecified index finger with damage to nail, subsequent encounter +C2849015|T037|AB|S60.129S|ICD10CM|Contusion of unsp index finger with damage to nail, sequela|Contusion of unsp index finger with damage to nail, sequela +C2849015|T037|PT|S60.129S|ICD10CM|Contusion of unspecified index finger with damage to nail, sequela|Contusion of unspecified index finger with damage to nail, sequela +C2849016|T037|HT|S60.13|ICD10CM|Contusion of middle finger with damage to nail|Contusion of middle finger with damage to nail +C2849016|T037|AB|S60.13|ICD10CM|Contusion of middle finger with damage to nail|Contusion of middle finger with damage to nail +C2849017|T037|AB|S60.131|ICD10CM|Contusion of right middle finger with damage to nail|Contusion of right middle finger with damage to nail +C2849017|T037|HT|S60.131|ICD10CM|Contusion of right middle finger with damage to nail|Contusion of right middle finger with damage to nail +C2849018|T037|AB|S60.131A|ICD10CM|Contusion of right middle finger w damage to nail, init|Contusion of right middle finger w damage to nail, init +C2849018|T037|PT|S60.131A|ICD10CM|Contusion of right middle finger with damage to nail, initial encounter|Contusion of right middle finger with damage to nail, initial encounter +C2849019|T037|AB|S60.131D|ICD10CM|Contusion of right middle finger w damage to nail, subs|Contusion of right middle finger w damage to nail, subs +C2849019|T037|PT|S60.131D|ICD10CM|Contusion of right middle finger with damage to nail, subsequent encounter|Contusion of right middle finger with damage to nail, subsequent encounter +C2849020|T037|AB|S60.131S|ICD10CM|Contusion of right middle finger w damage to nail, sequela|Contusion of right middle finger w damage to nail, sequela +C2849020|T037|PT|S60.131S|ICD10CM|Contusion of right middle finger with damage to nail, sequela|Contusion of right middle finger with damage to nail, sequela +C2849021|T037|AB|S60.132|ICD10CM|Contusion of left middle finger with damage to nail|Contusion of left middle finger with damage to nail +C2849021|T037|HT|S60.132|ICD10CM|Contusion of left middle finger with damage to nail|Contusion of left middle finger with damage to nail +C2849022|T037|AB|S60.132A|ICD10CM|Contusion of left middle finger w damage to nail, init|Contusion of left middle finger w damage to nail, init +C2849022|T037|PT|S60.132A|ICD10CM|Contusion of left middle finger with damage to nail, initial encounter|Contusion of left middle finger with damage to nail, initial encounter +C2849023|T037|AB|S60.132D|ICD10CM|Contusion of left middle finger w damage to nail, subs|Contusion of left middle finger w damage to nail, subs +C2849023|T037|PT|S60.132D|ICD10CM|Contusion of left middle finger with damage to nail, subsequent encounter|Contusion of left middle finger with damage to nail, subsequent encounter +C2849024|T037|AB|S60.132S|ICD10CM|Contusion of left middle finger with damage to nail, sequela|Contusion of left middle finger with damage to nail, sequela +C2849024|T037|PT|S60.132S|ICD10CM|Contusion of left middle finger with damage to nail, sequela|Contusion of left middle finger with damage to nail, sequela +C2849025|T037|AB|S60.139|ICD10CM|Contusion of unspecified middle finger with damage to nail|Contusion of unspecified middle finger with damage to nail +C2849025|T037|HT|S60.139|ICD10CM|Contusion of unspecified middle finger with damage to nail|Contusion of unspecified middle finger with damage to nail +C2849026|T037|AB|S60.139A|ICD10CM|Contusion of unsp middle finger w damage to nail, init|Contusion of unsp middle finger w damage to nail, init +C2849026|T037|PT|S60.139A|ICD10CM|Contusion of unspecified middle finger with damage to nail, initial encounter|Contusion of unspecified middle finger with damage to nail, initial encounter +C2849027|T037|AB|S60.139D|ICD10CM|Contusion of unsp middle finger w damage to nail, subs|Contusion of unsp middle finger w damage to nail, subs +C2849027|T037|PT|S60.139D|ICD10CM|Contusion of unspecified middle finger with damage to nail, subsequent encounter|Contusion of unspecified middle finger with damage to nail, subsequent encounter +C2849028|T037|AB|S60.139S|ICD10CM|Contusion of unsp middle finger with damage to nail, sequela|Contusion of unsp middle finger with damage to nail, sequela +C2849028|T037|PT|S60.139S|ICD10CM|Contusion of unspecified middle finger with damage to nail, sequela|Contusion of unspecified middle finger with damage to nail, sequela +C2849029|T037|AB|S60.14|ICD10CM|Contusion of ring finger with damage to nail|Contusion of ring finger with damage to nail +C2849029|T037|HT|S60.14|ICD10CM|Contusion of ring finger with damage to nail|Contusion of ring finger with damage to nail +C2849030|T037|AB|S60.141|ICD10CM|Contusion of right ring finger with damage to nail|Contusion of right ring finger with damage to nail +C2849030|T037|HT|S60.141|ICD10CM|Contusion of right ring finger with damage to nail|Contusion of right ring finger with damage to nail +C2849031|T037|AB|S60.141A|ICD10CM|Contusion of right ring finger w damage to nail, init encntr|Contusion of right ring finger w damage to nail, init encntr +C2849031|T037|PT|S60.141A|ICD10CM|Contusion of right ring finger with damage to nail, initial encounter|Contusion of right ring finger with damage to nail, initial encounter +C2849032|T037|AB|S60.141D|ICD10CM|Contusion of right ring finger w damage to nail, subs encntr|Contusion of right ring finger w damage to nail, subs encntr +C2849032|T037|PT|S60.141D|ICD10CM|Contusion of right ring finger with damage to nail, subsequent encounter|Contusion of right ring finger with damage to nail, subsequent encounter +C2849033|T037|AB|S60.141S|ICD10CM|Contusion of right ring finger with damage to nail, sequela|Contusion of right ring finger with damage to nail, sequela +C2849033|T037|PT|S60.141S|ICD10CM|Contusion of right ring finger with damage to nail, sequela|Contusion of right ring finger with damage to nail, sequela +C2849034|T037|AB|S60.142|ICD10CM|Contusion of left ring finger with damage to nail|Contusion of left ring finger with damage to nail +C2849034|T037|HT|S60.142|ICD10CM|Contusion of left ring finger with damage to nail|Contusion of left ring finger with damage to nail +C2849035|T037|AB|S60.142A|ICD10CM|Contusion of left ring finger w damage to nail, init encntr|Contusion of left ring finger w damage to nail, init encntr +C2849035|T037|PT|S60.142A|ICD10CM|Contusion of left ring finger with damage to nail, initial encounter|Contusion of left ring finger with damage to nail, initial encounter +C2849036|T037|AB|S60.142D|ICD10CM|Contusion of left ring finger w damage to nail, subs encntr|Contusion of left ring finger w damage to nail, subs encntr +C2849036|T037|PT|S60.142D|ICD10CM|Contusion of left ring finger with damage to nail, subsequent encounter|Contusion of left ring finger with damage to nail, subsequent encounter +C2849037|T037|AB|S60.142S|ICD10CM|Contusion of left ring finger with damage to nail, sequela|Contusion of left ring finger with damage to nail, sequela +C2849037|T037|PT|S60.142S|ICD10CM|Contusion of left ring finger with damage to nail, sequela|Contusion of left ring finger with damage to nail, sequela +C2849038|T037|AB|S60.149|ICD10CM|Contusion of unspecified ring finger with damage to nail|Contusion of unspecified ring finger with damage to nail +C2849038|T037|HT|S60.149|ICD10CM|Contusion of unspecified ring finger with damage to nail|Contusion of unspecified ring finger with damage to nail +C2849039|T037|AB|S60.149A|ICD10CM|Contusion of unsp ring finger w damage to nail, init encntr|Contusion of unsp ring finger w damage to nail, init encntr +C2849039|T037|PT|S60.149A|ICD10CM|Contusion of unspecified ring finger with damage to nail, initial encounter|Contusion of unspecified ring finger with damage to nail, initial encounter +C2849040|T037|AB|S60.149D|ICD10CM|Contusion of unsp ring finger w damage to nail, subs encntr|Contusion of unsp ring finger w damage to nail, subs encntr +C2849040|T037|PT|S60.149D|ICD10CM|Contusion of unspecified ring finger with damage to nail, subsequent encounter|Contusion of unspecified ring finger with damage to nail, subsequent encounter +C2849041|T037|AB|S60.149S|ICD10CM|Contusion of unsp ring finger with damage to nail, sequela|Contusion of unsp ring finger with damage to nail, sequela +C2849041|T037|PT|S60.149S|ICD10CM|Contusion of unspecified ring finger with damage to nail, sequela|Contusion of unspecified ring finger with damage to nail, sequela +C2849042|T037|AB|S60.15|ICD10CM|Contusion of little finger with damage to nail|Contusion of little finger with damage to nail +C2849042|T037|HT|S60.15|ICD10CM|Contusion of little finger with damage to nail|Contusion of little finger with damage to nail +C2849043|T037|AB|S60.151|ICD10CM|Contusion of right little finger with damage to nail|Contusion of right little finger with damage to nail +C2849043|T037|HT|S60.151|ICD10CM|Contusion of right little finger with damage to nail|Contusion of right little finger with damage to nail +C2849044|T037|AB|S60.151A|ICD10CM|Contusion of right little finger w damage to nail, init|Contusion of right little finger w damage to nail, init +C2849044|T037|PT|S60.151A|ICD10CM|Contusion of right little finger with damage to nail, initial encounter|Contusion of right little finger with damage to nail, initial encounter +C2849045|T037|AB|S60.151D|ICD10CM|Contusion of right little finger w damage to nail, subs|Contusion of right little finger w damage to nail, subs +C2849045|T037|PT|S60.151D|ICD10CM|Contusion of right little finger with damage to nail, subsequent encounter|Contusion of right little finger with damage to nail, subsequent encounter +C2849046|T037|AB|S60.151S|ICD10CM|Contusion of right little finger w damage to nail, sequela|Contusion of right little finger w damage to nail, sequela +C2849046|T037|PT|S60.151S|ICD10CM|Contusion of right little finger with damage to nail, sequela|Contusion of right little finger with damage to nail, sequela +C2849047|T037|AB|S60.152|ICD10CM|Contusion of left little finger with damage to nail|Contusion of left little finger with damage to nail +C2849047|T037|HT|S60.152|ICD10CM|Contusion of left little finger with damage to nail|Contusion of left little finger with damage to nail +C2849048|T037|AB|S60.152A|ICD10CM|Contusion of left little finger w damage to nail, init|Contusion of left little finger w damage to nail, init +C2849048|T037|PT|S60.152A|ICD10CM|Contusion of left little finger with damage to nail, initial encounter|Contusion of left little finger with damage to nail, initial encounter +C2849049|T037|AB|S60.152D|ICD10CM|Contusion of left little finger w damage to nail, subs|Contusion of left little finger w damage to nail, subs +C2849049|T037|PT|S60.152D|ICD10CM|Contusion of left little finger with damage to nail, subsequent encounter|Contusion of left little finger with damage to nail, subsequent encounter +C2849050|T037|AB|S60.152S|ICD10CM|Contusion of left little finger with damage to nail, sequela|Contusion of left little finger with damage to nail, sequela +C2849050|T037|PT|S60.152S|ICD10CM|Contusion of left little finger with damage to nail, sequela|Contusion of left little finger with damage to nail, sequela +C2849051|T037|AB|S60.159|ICD10CM|Contusion of unspecified little finger with damage to nail|Contusion of unspecified little finger with damage to nail +C2849051|T037|HT|S60.159|ICD10CM|Contusion of unspecified little finger with damage to nail|Contusion of unspecified little finger with damage to nail +C2849052|T037|AB|S60.159A|ICD10CM|Contusion of unsp little finger w damage to nail, init|Contusion of unsp little finger w damage to nail, init +C2849052|T037|PT|S60.159A|ICD10CM|Contusion of unspecified little finger with damage to nail, initial encounter|Contusion of unspecified little finger with damage to nail, initial encounter +C2849053|T037|AB|S60.159D|ICD10CM|Contusion of unsp little finger w damage to nail, subs|Contusion of unsp little finger w damage to nail, subs +C2849053|T037|PT|S60.159D|ICD10CM|Contusion of unspecified little finger with damage to nail, subsequent encounter|Contusion of unspecified little finger with damage to nail, subsequent encounter +C2849054|T037|AB|S60.159S|ICD10CM|Contusion of unsp little finger with damage to nail, sequela|Contusion of unsp little finger with damage to nail, sequela +C2849054|T037|PT|S60.159S|ICD10CM|Contusion of unspecified little finger with damage to nail, sequela|Contusion of unspecified little finger with damage to nail, sequela +C0478302|T037|PT|S60.2|ICD10|Contusion of other parts of wrist and hand|Contusion of other parts of wrist and hand +C0432765|T037|AB|S60.2|ICD10CM|Contusion of wrist and hand|Contusion of wrist and hand +C0432765|T037|HT|S60.2|ICD10CM|Contusion of wrist and hand|Contusion of wrist and hand +C0160943|T037|HT|S60.21|ICD10CM|Contusion of wrist|Contusion of wrist +C0160943|T037|AB|S60.21|ICD10CM|Contusion of wrist|Contusion of wrist +C2088043|T037|HT|S60.211|ICD10CM|Contusion of right wrist|Contusion of right wrist +C2088043|T037|AB|S60.211|ICD10CM|Contusion of right wrist|Contusion of right wrist +C2849055|T037|PT|S60.211A|ICD10CM|Contusion of right wrist, initial encounter|Contusion of right wrist, initial encounter +C2849055|T037|AB|S60.211A|ICD10CM|Contusion of right wrist, initial encounter|Contusion of right wrist, initial encounter +C2849056|T037|PT|S60.211D|ICD10CM|Contusion of right wrist, subsequent encounter|Contusion of right wrist, subsequent encounter +C2849056|T037|AB|S60.211D|ICD10CM|Contusion of right wrist, subsequent encounter|Contusion of right wrist, subsequent encounter +C2849057|T037|PT|S60.211S|ICD10CM|Contusion of right wrist, sequela|Contusion of right wrist, sequela +C2849057|T037|AB|S60.211S|ICD10CM|Contusion of right wrist, sequela|Contusion of right wrist, sequela +C2088044|T037|HT|S60.212|ICD10CM|Contusion of left wrist|Contusion of left wrist +C2088044|T037|AB|S60.212|ICD10CM|Contusion of left wrist|Contusion of left wrist +C2849058|T037|PT|S60.212A|ICD10CM|Contusion of left wrist, initial encounter|Contusion of left wrist, initial encounter +C2849058|T037|AB|S60.212A|ICD10CM|Contusion of left wrist, initial encounter|Contusion of left wrist, initial encounter +C2849059|T037|PT|S60.212D|ICD10CM|Contusion of left wrist, subsequent encounter|Contusion of left wrist, subsequent encounter +C2849059|T037|AB|S60.212D|ICD10CM|Contusion of left wrist, subsequent encounter|Contusion of left wrist, subsequent encounter +C2849060|T037|PT|S60.212S|ICD10CM|Contusion of left wrist, sequela|Contusion of left wrist, sequela +C2849060|T037|AB|S60.212S|ICD10CM|Contusion of left wrist, sequela|Contusion of left wrist, sequela +C2849061|T037|AB|S60.219|ICD10CM|Contusion of unspecified wrist|Contusion of unspecified wrist +C2849061|T037|HT|S60.219|ICD10CM|Contusion of unspecified wrist|Contusion of unspecified wrist +C2849062|T037|PT|S60.219A|ICD10CM|Contusion of unspecified wrist, initial encounter|Contusion of unspecified wrist, initial encounter +C2849062|T037|AB|S60.219A|ICD10CM|Contusion of unspecified wrist, initial encounter|Contusion of unspecified wrist, initial encounter +C2849063|T037|PT|S60.219D|ICD10CM|Contusion of unspecified wrist, subsequent encounter|Contusion of unspecified wrist, subsequent encounter +C2849063|T037|AB|S60.219D|ICD10CM|Contusion of unspecified wrist, subsequent encounter|Contusion of unspecified wrist, subsequent encounter +C2849064|T037|PT|S60.219S|ICD10CM|Contusion of unspecified wrist, sequela|Contusion of unspecified wrist, sequela +C2849064|T037|AB|S60.219S|ICD10CM|Contusion of unspecified wrist, sequela|Contusion of unspecified wrist, sequela +C0432769|T037|HT|S60.22|ICD10CM|Contusion of hand|Contusion of hand +C0432769|T037|AB|S60.22|ICD10CM|Contusion of hand|Contusion of hand +C2201999|T037|HT|S60.221|ICD10CM|Contusion of right hand|Contusion of right hand +C2201999|T037|AB|S60.221|ICD10CM|Contusion of right hand|Contusion of right hand +C2849065|T037|PT|S60.221A|ICD10CM|Contusion of right hand, initial encounter|Contusion of right hand, initial encounter +C2849065|T037|AB|S60.221A|ICD10CM|Contusion of right hand, initial encounter|Contusion of right hand, initial encounter +C2849066|T037|PT|S60.221D|ICD10CM|Contusion of right hand, subsequent encounter|Contusion of right hand, subsequent encounter +C2849066|T037|AB|S60.221D|ICD10CM|Contusion of right hand, subsequent encounter|Contusion of right hand, subsequent encounter +C2849067|T037|PT|S60.221S|ICD10CM|Contusion of right hand, sequela|Contusion of right hand, sequela +C2849067|T037|AB|S60.221S|ICD10CM|Contusion of right hand, sequela|Contusion of right hand, sequela +C2141769|T037|HT|S60.222|ICD10CM|Contusion of left hand|Contusion of left hand +C2141769|T037|AB|S60.222|ICD10CM|Contusion of left hand|Contusion of left hand +C2849068|T037|PT|S60.222A|ICD10CM|Contusion of left hand, initial encounter|Contusion of left hand, initial encounter +C2849068|T037|AB|S60.222A|ICD10CM|Contusion of left hand, initial encounter|Contusion of left hand, initial encounter +C2849069|T037|PT|S60.222D|ICD10CM|Contusion of left hand, subsequent encounter|Contusion of left hand, subsequent encounter +C2849069|T037|AB|S60.222D|ICD10CM|Contusion of left hand, subsequent encounter|Contusion of left hand, subsequent encounter +C2849070|T037|PT|S60.222S|ICD10CM|Contusion of left hand, sequela|Contusion of left hand, sequela +C2849070|T037|AB|S60.222S|ICD10CM|Contusion of left hand, sequela|Contusion of left hand, sequela +C2849071|T037|AB|S60.229|ICD10CM|Contusion of unspecified hand|Contusion of unspecified hand +C2849071|T037|HT|S60.229|ICD10CM|Contusion of unspecified hand|Contusion of unspecified hand +C2849072|T037|PT|S60.229A|ICD10CM|Contusion of unspecified hand, initial encounter|Contusion of unspecified hand, initial encounter +C2849072|T037|AB|S60.229A|ICD10CM|Contusion of unspecified hand, initial encounter|Contusion of unspecified hand, initial encounter +C2849073|T037|PT|S60.229D|ICD10CM|Contusion of unspecified hand, subsequent encounter|Contusion of unspecified hand, subsequent encounter +C2849073|T037|AB|S60.229D|ICD10CM|Contusion of unspecified hand, subsequent encounter|Contusion of unspecified hand, subsequent encounter +C2849074|T037|PT|S60.229S|ICD10CM|Contusion of unspecified hand, sequela|Contusion of unspecified hand, sequela +C2849074|T037|AB|S60.229S|ICD10CM|Contusion of unspecified hand, sequela|Contusion of unspecified hand, sequela +C2849075|T037|AB|S60.3|ICD10CM|Other superficial injuries of thumb|Other superficial injuries of thumb +C2849075|T037|HT|S60.3|ICD10CM|Other superficial injuries of thumb|Other superficial injuries of thumb +C0432855|T037|AB|S60.31|ICD10CM|Abrasion of thumb|Abrasion of thumb +C0432855|T037|HT|S60.31|ICD10CM|Abrasion of thumb|Abrasion of thumb +C2042022|T037|AB|S60.311|ICD10CM|Abrasion of right thumb|Abrasion of right thumb +C2042022|T037|HT|S60.311|ICD10CM|Abrasion of right thumb|Abrasion of right thumb +C2849076|T037|AB|S60.311A|ICD10CM|Abrasion of right thumb, initial encounter|Abrasion of right thumb, initial encounter +C2849076|T037|PT|S60.311A|ICD10CM|Abrasion of right thumb, initial encounter|Abrasion of right thumb, initial encounter +C2849077|T037|AB|S60.311D|ICD10CM|Abrasion of right thumb, subsequent encounter|Abrasion of right thumb, subsequent encounter +C2849077|T037|PT|S60.311D|ICD10CM|Abrasion of right thumb, subsequent encounter|Abrasion of right thumb, subsequent encounter +C2849078|T037|AB|S60.311S|ICD10CM|Abrasion of right thumb, sequela|Abrasion of right thumb, sequela +C2849078|T037|PT|S60.311S|ICD10CM|Abrasion of right thumb, sequela|Abrasion of right thumb, sequela +C2042021|T037|AB|S60.312|ICD10CM|Abrasion of left thumb|Abrasion of left thumb +C2042021|T037|HT|S60.312|ICD10CM|Abrasion of left thumb|Abrasion of left thumb +C2849079|T037|AB|S60.312A|ICD10CM|Abrasion of left thumb, initial encounter|Abrasion of left thumb, initial encounter +C2849079|T037|PT|S60.312A|ICD10CM|Abrasion of left thumb, initial encounter|Abrasion of left thumb, initial encounter +C2849080|T037|AB|S60.312D|ICD10CM|Abrasion of left thumb, subsequent encounter|Abrasion of left thumb, subsequent encounter +C2849080|T037|PT|S60.312D|ICD10CM|Abrasion of left thumb, subsequent encounter|Abrasion of left thumb, subsequent encounter +C2849081|T037|AB|S60.312S|ICD10CM|Abrasion of left thumb, sequela|Abrasion of left thumb, sequela +C2849081|T037|PT|S60.312S|ICD10CM|Abrasion of left thumb, sequela|Abrasion of left thumb, sequela +C2849082|T037|AB|S60.319|ICD10CM|Abrasion of unspecified thumb|Abrasion of unspecified thumb +C2849082|T037|HT|S60.319|ICD10CM|Abrasion of unspecified thumb|Abrasion of unspecified thumb +C2849083|T037|AB|S60.319A|ICD10CM|Abrasion of unspecified thumb, initial encounter|Abrasion of unspecified thumb, initial encounter +C2849083|T037|PT|S60.319A|ICD10CM|Abrasion of unspecified thumb, initial encounter|Abrasion of unspecified thumb, initial encounter +C2849084|T037|AB|S60.319D|ICD10CM|Abrasion of unspecified thumb, subsequent encounter|Abrasion of unspecified thumb, subsequent encounter +C2849084|T037|PT|S60.319D|ICD10CM|Abrasion of unspecified thumb, subsequent encounter|Abrasion of unspecified thumb, subsequent encounter +C2849085|T037|AB|S60.319S|ICD10CM|Abrasion of unspecified thumb, sequela|Abrasion of unspecified thumb, sequela +C2849085|T037|PT|S60.319S|ICD10CM|Abrasion of unspecified thumb, sequela|Abrasion of unspecified thumb, sequela +C2849086|T037|AB|S60.32|ICD10CM|Blister (nonthermal) of thumb|Blister (nonthermal) of thumb +C2849086|T037|HT|S60.32|ICD10CM|Blister (nonthermal) of thumb|Blister (nonthermal) of thumb +C2849087|T037|AB|S60.321|ICD10CM|Blister (nonthermal) of right thumb|Blister (nonthermal) of right thumb +C2849087|T037|HT|S60.321|ICD10CM|Blister (nonthermal) of right thumb|Blister (nonthermal) of right thumb +C2849088|T037|AB|S60.321A|ICD10CM|Blister (nonthermal) of right thumb, initial encounter|Blister (nonthermal) of right thumb, initial encounter +C2849088|T037|PT|S60.321A|ICD10CM|Blister (nonthermal) of right thumb, initial encounter|Blister (nonthermal) of right thumb, initial encounter +C2849089|T037|AB|S60.321D|ICD10CM|Blister (nonthermal) of right thumb, subsequent encounter|Blister (nonthermal) of right thumb, subsequent encounter +C2849089|T037|PT|S60.321D|ICD10CM|Blister (nonthermal) of right thumb, subsequent encounter|Blister (nonthermal) of right thumb, subsequent encounter +C2849090|T037|AB|S60.321S|ICD10CM|Blister (nonthermal) of right thumb, sequela|Blister (nonthermal) of right thumb, sequela +C2849090|T037|PT|S60.321S|ICD10CM|Blister (nonthermal) of right thumb, sequela|Blister (nonthermal) of right thumb, sequela +C2849091|T037|AB|S60.322|ICD10CM|Blister (nonthermal) of left thumb|Blister (nonthermal) of left thumb +C2849091|T037|HT|S60.322|ICD10CM|Blister (nonthermal) of left thumb|Blister (nonthermal) of left thumb +C2849092|T037|AB|S60.322A|ICD10CM|Blister (nonthermal) of left thumb, initial encounter|Blister (nonthermal) of left thumb, initial encounter +C2849092|T037|PT|S60.322A|ICD10CM|Blister (nonthermal) of left thumb, initial encounter|Blister (nonthermal) of left thumb, initial encounter +C2849093|T037|AB|S60.322D|ICD10CM|Blister (nonthermal) of left thumb, subsequent encounter|Blister (nonthermal) of left thumb, subsequent encounter +C2849093|T037|PT|S60.322D|ICD10CM|Blister (nonthermal) of left thumb, subsequent encounter|Blister (nonthermal) of left thumb, subsequent encounter +C2849094|T037|AB|S60.322S|ICD10CM|Blister (nonthermal) of left thumb, sequela|Blister (nonthermal) of left thumb, sequela +C2849094|T037|PT|S60.322S|ICD10CM|Blister (nonthermal) of left thumb, sequela|Blister (nonthermal) of left thumb, sequela +C2849095|T037|AB|S60.329|ICD10CM|Blister (nonthermal) of unspecified thumb|Blister (nonthermal) of unspecified thumb +C2849095|T037|HT|S60.329|ICD10CM|Blister (nonthermal) of unspecified thumb|Blister (nonthermal) of unspecified thumb +C2849096|T037|AB|S60.329A|ICD10CM|Blister (nonthermal) of unspecified thumb, initial encounter|Blister (nonthermal) of unspecified thumb, initial encounter +C2849096|T037|PT|S60.329A|ICD10CM|Blister (nonthermal) of unspecified thumb, initial encounter|Blister (nonthermal) of unspecified thumb, initial encounter +C2849097|T037|AB|S60.329D|ICD10CM|Blister (nonthermal) of unspecified thumb, subs encntr|Blister (nonthermal) of unspecified thumb, subs encntr +C2849097|T037|PT|S60.329D|ICD10CM|Blister (nonthermal) of unspecified thumb, subsequent encounter|Blister (nonthermal) of unspecified thumb, subsequent encounter +C2849098|T037|AB|S60.329S|ICD10CM|Blister (nonthermal) of unspecified thumb, sequela|Blister (nonthermal) of unspecified thumb, sequela +C2849098|T037|PT|S60.329S|ICD10CM|Blister (nonthermal) of unspecified thumb, sequela|Blister (nonthermal) of unspecified thumb, sequela +C2849100|T037|AB|S60.34|ICD10CM|External constriction of thumb|External constriction of thumb +C2849100|T037|HT|S60.34|ICD10CM|External constriction of thumb|External constriction of thumb +C2849099|T037|ET|S60.34|ICD10CM|Hair tourniquet syndrome of thumb|Hair tourniquet syndrome of thumb +C2849101|T037|AB|S60.341|ICD10CM|External constriction of right thumb|External constriction of right thumb +C2849101|T037|HT|S60.341|ICD10CM|External constriction of right thumb|External constriction of right thumb +C2849102|T037|AB|S60.341A|ICD10CM|External constriction of right thumb, initial encounter|External constriction of right thumb, initial encounter +C2849102|T037|PT|S60.341A|ICD10CM|External constriction of right thumb, initial encounter|External constriction of right thumb, initial encounter +C2849103|T037|AB|S60.341D|ICD10CM|External constriction of right thumb, subsequent encounter|External constriction of right thumb, subsequent encounter +C2849103|T037|PT|S60.341D|ICD10CM|External constriction of right thumb, subsequent encounter|External constriction of right thumb, subsequent encounter +C2849104|T037|AB|S60.341S|ICD10CM|External constriction of right thumb, sequela|External constriction of right thumb, sequela +C2849104|T037|PT|S60.341S|ICD10CM|External constriction of right thumb, sequela|External constriction of right thumb, sequela +C2849105|T037|AB|S60.342|ICD10CM|External constriction of left thumb|External constriction of left thumb +C2849105|T037|HT|S60.342|ICD10CM|External constriction of left thumb|External constriction of left thumb +C2849106|T037|AB|S60.342A|ICD10CM|External constriction of left thumb, initial encounter|External constriction of left thumb, initial encounter +C2849106|T037|PT|S60.342A|ICD10CM|External constriction of left thumb, initial encounter|External constriction of left thumb, initial encounter +C2849107|T037|AB|S60.342D|ICD10CM|External constriction of left thumb, subsequent encounter|External constriction of left thumb, subsequent encounter +C2849107|T037|PT|S60.342D|ICD10CM|External constriction of left thumb, subsequent encounter|External constriction of left thumb, subsequent encounter +C2849108|T037|AB|S60.342S|ICD10CM|External constriction of left thumb, sequela|External constriction of left thumb, sequela +C2849108|T037|PT|S60.342S|ICD10CM|External constriction of left thumb, sequela|External constriction of left thumb, sequela +C2849109|T037|AB|S60.349|ICD10CM|External constriction of unspecified thumb|External constriction of unspecified thumb +C2849109|T037|HT|S60.349|ICD10CM|External constriction of unspecified thumb|External constriction of unspecified thumb +C2849110|T037|AB|S60.349A|ICD10CM|External constriction of unspecified thumb, init encntr|External constriction of unspecified thumb, init encntr +C2849110|T037|PT|S60.349A|ICD10CM|External constriction of unspecified thumb, initial encounter|External constriction of unspecified thumb, initial encounter +C2849111|T037|AB|S60.349D|ICD10CM|External constriction of unspecified thumb, subs encntr|External constriction of unspecified thumb, subs encntr +C2849111|T037|PT|S60.349D|ICD10CM|External constriction of unspecified thumb, subsequent encounter|External constriction of unspecified thumb, subsequent encounter +C2849112|T037|AB|S60.349S|ICD10CM|External constriction of unspecified thumb, sequela|External constriction of unspecified thumb, sequela +C2849112|T037|PT|S60.349S|ICD10CM|External constriction of unspecified thumb, sequela|External constriction of unspecified thumb, sequela +C2849113|T037|ET|S60.35|ICD10CM|Splinter in the thumb|Splinter in the thumb +C2849114|T037|AB|S60.35|ICD10CM|Superficial foreign body of thumb|Superficial foreign body of thumb +C2849114|T037|HT|S60.35|ICD10CM|Superficial foreign body of thumb|Superficial foreign body of thumb +C2849115|T037|AB|S60.351|ICD10CM|Superficial foreign body of right thumb|Superficial foreign body of right thumb +C2849115|T037|HT|S60.351|ICD10CM|Superficial foreign body of right thumb|Superficial foreign body of right thumb +C2849116|T037|AB|S60.351A|ICD10CM|Superficial foreign body of right thumb, initial encounter|Superficial foreign body of right thumb, initial encounter +C2849116|T037|PT|S60.351A|ICD10CM|Superficial foreign body of right thumb, initial encounter|Superficial foreign body of right thumb, initial encounter +C2849117|T037|AB|S60.351D|ICD10CM|Superficial foreign body of right thumb, subs encntr|Superficial foreign body of right thumb, subs encntr +C2849117|T037|PT|S60.351D|ICD10CM|Superficial foreign body of right thumb, subsequent encounter|Superficial foreign body of right thumb, subsequent encounter +C2849118|T037|AB|S60.351S|ICD10CM|Superficial foreign body of right thumb, sequela|Superficial foreign body of right thumb, sequela +C2849118|T037|PT|S60.351S|ICD10CM|Superficial foreign body of right thumb, sequela|Superficial foreign body of right thumb, sequela +C2849119|T037|AB|S60.352|ICD10CM|Superficial foreign body of left thumb|Superficial foreign body of left thumb +C2849119|T037|HT|S60.352|ICD10CM|Superficial foreign body of left thumb|Superficial foreign body of left thumb +C2849120|T037|AB|S60.352A|ICD10CM|Superficial foreign body of left thumb, initial encounter|Superficial foreign body of left thumb, initial encounter +C2849120|T037|PT|S60.352A|ICD10CM|Superficial foreign body of left thumb, initial encounter|Superficial foreign body of left thumb, initial encounter +C2849121|T037|AB|S60.352D|ICD10CM|Superficial foreign body of left thumb, subsequent encounter|Superficial foreign body of left thumb, subsequent encounter +C2849121|T037|PT|S60.352D|ICD10CM|Superficial foreign body of left thumb, subsequent encounter|Superficial foreign body of left thumb, subsequent encounter +C2849122|T037|AB|S60.352S|ICD10CM|Superficial foreign body of left thumb, sequela|Superficial foreign body of left thumb, sequela +C2849122|T037|PT|S60.352S|ICD10CM|Superficial foreign body of left thumb, sequela|Superficial foreign body of left thumb, sequela +C2849123|T037|AB|S60.359|ICD10CM|Superficial foreign body of unspecified thumb|Superficial foreign body of unspecified thumb +C2849123|T037|HT|S60.359|ICD10CM|Superficial foreign body of unspecified thumb|Superficial foreign body of unspecified thumb +C2849124|T037|AB|S60.359A|ICD10CM|Superficial foreign body of unspecified thumb, init encntr|Superficial foreign body of unspecified thumb, init encntr +C2849124|T037|PT|S60.359A|ICD10CM|Superficial foreign body of unspecified thumb, initial encounter|Superficial foreign body of unspecified thumb, initial encounter +C2849125|T037|AB|S60.359D|ICD10CM|Superficial foreign body of unspecified thumb, subs encntr|Superficial foreign body of unspecified thumb, subs encntr +C2849125|T037|PT|S60.359D|ICD10CM|Superficial foreign body of unspecified thumb, subsequent encounter|Superficial foreign body of unspecified thumb, subsequent encounter +C2849126|T037|AB|S60.359S|ICD10CM|Superficial foreign body of unspecified thumb, sequela|Superficial foreign body of unspecified thumb, sequela +C2849126|T037|PT|S60.359S|ICD10CM|Superficial foreign body of unspecified thumb, sequela|Superficial foreign body of unspecified thumb, sequela +C2849127|T037|AB|S60.36|ICD10CM|Insect bite (nonvenomous) of thumb|Insect bite (nonvenomous) of thumb +C2849127|T037|HT|S60.36|ICD10CM|Insect bite (nonvenomous) of thumb|Insect bite (nonvenomous) of thumb +C2849128|T037|AB|S60.361|ICD10CM|Insect bite (nonvenomous) of right thumb|Insect bite (nonvenomous) of right thumb +C2849128|T037|HT|S60.361|ICD10CM|Insect bite (nonvenomous) of right thumb|Insect bite (nonvenomous) of right thumb +C2849129|T037|AB|S60.361A|ICD10CM|Insect bite (nonvenomous) of right thumb, initial encounter|Insect bite (nonvenomous) of right thumb, initial encounter +C2849129|T037|PT|S60.361A|ICD10CM|Insect bite (nonvenomous) of right thumb, initial encounter|Insect bite (nonvenomous) of right thumb, initial encounter +C2849130|T037|AB|S60.361D|ICD10CM|Insect bite (nonvenomous) of right thumb, subs encntr|Insect bite (nonvenomous) of right thumb, subs encntr +C2849130|T037|PT|S60.361D|ICD10CM|Insect bite (nonvenomous) of right thumb, subsequent encounter|Insect bite (nonvenomous) of right thumb, subsequent encounter +C2849131|T037|AB|S60.361S|ICD10CM|Insect bite (nonvenomous) of right thumb, sequela|Insect bite (nonvenomous) of right thumb, sequela +C2849131|T037|PT|S60.361S|ICD10CM|Insect bite (nonvenomous) of right thumb, sequela|Insect bite (nonvenomous) of right thumb, sequela +C2849132|T037|AB|S60.362|ICD10CM|Insect bite (nonvenomous) of left thumb|Insect bite (nonvenomous) of left thumb +C2849132|T037|HT|S60.362|ICD10CM|Insect bite (nonvenomous) of left thumb|Insect bite (nonvenomous) of left thumb +C2849133|T037|AB|S60.362A|ICD10CM|Insect bite (nonvenomous) of left thumb, initial encounter|Insect bite (nonvenomous) of left thumb, initial encounter +C2849133|T037|PT|S60.362A|ICD10CM|Insect bite (nonvenomous) of left thumb, initial encounter|Insect bite (nonvenomous) of left thumb, initial encounter +C2849134|T037|AB|S60.362D|ICD10CM|Insect bite (nonvenomous) of left thumb, subs encntr|Insect bite (nonvenomous) of left thumb, subs encntr +C2849134|T037|PT|S60.362D|ICD10CM|Insect bite (nonvenomous) of left thumb, subsequent encounter|Insect bite (nonvenomous) of left thumb, subsequent encounter +C2849135|T037|AB|S60.362S|ICD10CM|Insect bite (nonvenomous) of left thumb, sequela|Insect bite (nonvenomous) of left thumb, sequela +C2849135|T037|PT|S60.362S|ICD10CM|Insect bite (nonvenomous) of left thumb, sequela|Insect bite (nonvenomous) of left thumb, sequela +C2849136|T037|AB|S60.369|ICD10CM|Insect bite (nonvenomous) of unspecified thumb|Insect bite (nonvenomous) of unspecified thumb +C2849136|T037|HT|S60.369|ICD10CM|Insect bite (nonvenomous) of unspecified thumb|Insect bite (nonvenomous) of unspecified thumb +C2849137|T037|AB|S60.369A|ICD10CM|Insect bite (nonvenomous) of unspecified thumb, init encntr|Insect bite (nonvenomous) of unspecified thumb, init encntr +C2849137|T037|PT|S60.369A|ICD10CM|Insect bite (nonvenomous) of unspecified thumb, initial encounter|Insect bite (nonvenomous) of unspecified thumb, initial encounter +C2849138|T037|AB|S60.369D|ICD10CM|Insect bite (nonvenomous) of unspecified thumb, subs encntr|Insect bite (nonvenomous) of unspecified thumb, subs encntr +C2849138|T037|PT|S60.369D|ICD10CM|Insect bite (nonvenomous) of unspecified thumb, subsequent encounter|Insect bite (nonvenomous) of unspecified thumb, subsequent encounter +C2849139|T037|AB|S60.369S|ICD10CM|Insect bite (nonvenomous) of unspecified thumb, sequela|Insect bite (nonvenomous) of unspecified thumb, sequela +C2849139|T037|PT|S60.369S|ICD10CM|Insect bite (nonvenomous) of unspecified thumb, sequela|Insect bite (nonvenomous) of unspecified thumb, sequela +C2849140|T037|AB|S60.37|ICD10CM|Other superficial bite of thumb|Other superficial bite of thumb +C2849140|T037|HT|S60.37|ICD10CM|Other superficial bite of thumb|Other superficial bite of thumb +C2849141|T037|AB|S60.371|ICD10CM|Other superficial bite of right thumb|Other superficial bite of right thumb +C2849141|T037|HT|S60.371|ICD10CM|Other superficial bite of right thumb|Other superficial bite of right thumb +C2849142|T037|AB|S60.371A|ICD10CM|Other superficial bite of right thumb, initial encounter|Other superficial bite of right thumb, initial encounter +C2849142|T037|PT|S60.371A|ICD10CM|Other superficial bite of right thumb, initial encounter|Other superficial bite of right thumb, initial encounter +C2849143|T037|AB|S60.371D|ICD10CM|Other superficial bite of right thumb, subsequent encounter|Other superficial bite of right thumb, subsequent encounter +C2849143|T037|PT|S60.371D|ICD10CM|Other superficial bite of right thumb, subsequent encounter|Other superficial bite of right thumb, subsequent encounter +C2849144|T037|AB|S60.371S|ICD10CM|Other superficial bite of right thumb, sequela|Other superficial bite of right thumb, sequela +C2849144|T037|PT|S60.371S|ICD10CM|Other superficial bite of right thumb, sequela|Other superficial bite of right thumb, sequela +C2849145|T037|AB|S60.372|ICD10CM|Other superficial bite of left thumb|Other superficial bite of left thumb +C2849145|T037|HT|S60.372|ICD10CM|Other superficial bite of left thumb|Other superficial bite of left thumb +C2849146|T037|AB|S60.372A|ICD10CM|Other superficial bite of left thumb, initial encounter|Other superficial bite of left thumb, initial encounter +C2849146|T037|PT|S60.372A|ICD10CM|Other superficial bite of left thumb, initial encounter|Other superficial bite of left thumb, initial encounter +C2849147|T037|AB|S60.372D|ICD10CM|Other superficial bite of left thumb, subsequent encounter|Other superficial bite of left thumb, subsequent encounter +C2849147|T037|PT|S60.372D|ICD10CM|Other superficial bite of left thumb, subsequent encounter|Other superficial bite of left thumb, subsequent encounter +C2849148|T037|AB|S60.372S|ICD10CM|Other superficial bite of left thumb, sequela|Other superficial bite of left thumb, sequela +C2849148|T037|PT|S60.372S|ICD10CM|Other superficial bite of left thumb, sequela|Other superficial bite of left thumb, sequela +C2849149|T037|AB|S60.379|ICD10CM|Other superficial bite of unspecified thumb|Other superficial bite of unspecified thumb +C2849149|T037|HT|S60.379|ICD10CM|Other superficial bite of unspecified thumb|Other superficial bite of unspecified thumb +C2849150|T037|AB|S60.379A|ICD10CM|Other superficial bite of unspecified thumb, init encntr|Other superficial bite of unspecified thumb, init encntr +C2849150|T037|PT|S60.379A|ICD10CM|Other superficial bite of unspecified thumb, initial encounter|Other superficial bite of unspecified thumb, initial encounter +C2849151|T037|AB|S60.379D|ICD10CM|Other superficial bite of unspecified thumb, subs encntr|Other superficial bite of unspecified thumb, subs encntr +C2849151|T037|PT|S60.379D|ICD10CM|Other superficial bite of unspecified thumb, subsequent encounter|Other superficial bite of unspecified thumb, subsequent encounter +C2849152|T037|AB|S60.379S|ICD10CM|Other superficial bite of unspecified thumb, sequela|Other superficial bite of unspecified thumb, sequela +C2849152|T037|PT|S60.379S|ICD10CM|Other superficial bite of unspecified thumb, sequela|Other superficial bite of unspecified thumb, sequela +C2849075|T037|HT|S60.39|ICD10CM|Other superficial injuries of thumb|Other superficial injuries of thumb +C2849075|T037|AB|S60.39|ICD10CM|Other superficial injuries of thumb|Other superficial injuries of thumb +C2849153|T037|AB|S60.391|ICD10CM|Other superficial injuries of right thumb|Other superficial injuries of right thumb +C2849153|T037|HT|S60.391|ICD10CM|Other superficial injuries of right thumb|Other superficial injuries of right thumb +C2849154|T037|AB|S60.391A|ICD10CM|Other superficial injuries of right thumb, initial encounter|Other superficial injuries of right thumb, initial encounter +C2849154|T037|PT|S60.391A|ICD10CM|Other superficial injuries of right thumb, initial encounter|Other superficial injuries of right thumb, initial encounter +C2849155|T037|AB|S60.391D|ICD10CM|Other superficial injuries of right thumb, subs encntr|Other superficial injuries of right thumb, subs encntr +C2849155|T037|PT|S60.391D|ICD10CM|Other superficial injuries of right thumb, subsequent encounter|Other superficial injuries of right thumb, subsequent encounter +C2849156|T037|AB|S60.391S|ICD10CM|Other superficial injuries of right thumb, sequela|Other superficial injuries of right thumb, sequela +C2849156|T037|PT|S60.391S|ICD10CM|Other superficial injuries of right thumb, sequela|Other superficial injuries of right thumb, sequela +C2849157|T037|AB|S60.392|ICD10CM|Other superficial injuries of left thumb|Other superficial injuries of left thumb +C2849157|T037|HT|S60.392|ICD10CM|Other superficial injuries of left thumb|Other superficial injuries of left thumb +C2849158|T037|AB|S60.392A|ICD10CM|Other superficial injuries of left thumb, initial encounter|Other superficial injuries of left thumb, initial encounter +C2849158|T037|PT|S60.392A|ICD10CM|Other superficial injuries of left thumb, initial encounter|Other superficial injuries of left thumb, initial encounter +C2849159|T037|AB|S60.392D|ICD10CM|Other superficial injuries of left thumb, subs encntr|Other superficial injuries of left thumb, subs encntr +C2849159|T037|PT|S60.392D|ICD10CM|Other superficial injuries of left thumb, subsequent encounter|Other superficial injuries of left thumb, subsequent encounter +C2849160|T037|AB|S60.392S|ICD10CM|Other superficial injuries of left thumb, sequela|Other superficial injuries of left thumb, sequela +C2849160|T037|PT|S60.392S|ICD10CM|Other superficial injuries of left thumb, sequela|Other superficial injuries of left thumb, sequela +C2849161|T037|AB|S60.399|ICD10CM|Other superficial injuries of unspecified thumb|Other superficial injuries of unspecified thumb +C2849161|T037|HT|S60.399|ICD10CM|Other superficial injuries of unspecified thumb|Other superficial injuries of unspecified thumb +C2849162|T037|AB|S60.399A|ICD10CM|Other superficial injuries of unspecified thumb, init encntr|Other superficial injuries of unspecified thumb, init encntr +C2849162|T037|PT|S60.399A|ICD10CM|Other superficial injuries of unspecified thumb, initial encounter|Other superficial injuries of unspecified thumb, initial encounter +C2849163|T037|AB|S60.399D|ICD10CM|Other superficial injuries of unspecified thumb, subs encntr|Other superficial injuries of unspecified thumb, subs encntr +C2849163|T037|PT|S60.399D|ICD10CM|Other superficial injuries of unspecified thumb, subsequent encounter|Other superficial injuries of unspecified thumb, subsequent encounter +C2849164|T037|AB|S60.399S|ICD10CM|Other superficial injuries of unspecified thumb, sequela|Other superficial injuries of unspecified thumb, sequela +C2849164|T037|PT|S60.399S|ICD10CM|Other superficial injuries of unspecified thumb, sequela|Other superficial injuries of unspecified thumb, sequela +C2849165|T037|AB|S60.4|ICD10CM|Other superficial injuries of other fingers|Other superficial injuries of other fingers +C2849165|T037|HT|S60.4|ICD10CM|Other superficial injuries of other fingers|Other superficial injuries of other fingers +C0432854|T037|AB|S60.41|ICD10CM|Abrasion of fingers|Abrasion of fingers +C0432854|T037|HT|S60.41|ICD10CM|Abrasion of fingers|Abrasion of fingers +C2004722|T037|HT|S60.410|ICD10CM|Abrasion of right index finger|Abrasion of right index finger +C2004722|T037|AB|S60.410|ICD10CM|Abrasion of right index finger|Abrasion of right index finger +C2849166|T037|AB|S60.410A|ICD10CM|Abrasion of right index finger, initial encounter|Abrasion of right index finger, initial encounter +C2849166|T037|PT|S60.410A|ICD10CM|Abrasion of right index finger, initial encounter|Abrasion of right index finger, initial encounter +C2849167|T037|AB|S60.410D|ICD10CM|Abrasion of right index finger, subsequent encounter|Abrasion of right index finger, subsequent encounter +C2849167|T037|PT|S60.410D|ICD10CM|Abrasion of right index finger, subsequent encounter|Abrasion of right index finger, subsequent encounter +C2849168|T037|AB|S60.410S|ICD10CM|Abrasion of right index finger, sequela|Abrasion of right index finger, sequela +C2849168|T037|PT|S60.410S|ICD10CM|Abrasion of right index finger, sequela|Abrasion of right index finger, sequela +C2004721|T037|HT|S60.411|ICD10CM|Abrasion of left index finger|Abrasion of left index finger +C2004721|T037|AB|S60.411|ICD10CM|Abrasion of left index finger|Abrasion of left index finger +C2849169|T037|AB|S60.411A|ICD10CM|Abrasion of left index finger, initial encounter|Abrasion of left index finger, initial encounter +C2849169|T037|PT|S60.411A|ICD10CM|Abrasion of left index finger, initial encounter|Abrasion of left index finger, initial encounter +C2849170|T037|AB|S60.411D|ICD10CM|Abrasion of left index finger, subsequent encounter|Abrasion of left index finger, subsequent encounter +C2849170|T037|PT|S60.411D|ICD10CM|Abrasion of left index finger, subsequent encounter|Abrasion of left index finger, subsequent encounter +C2849171|T037|AB|S60.411S|ICD10CM|Abrasion of left index finger, sequela|Abrasion of left index finger, sequela +C2849171|T037|PT|S60.411S|ICD10CM|Abrasion of left index finger, sequela|Abrasion of left index finger, sequela +C2004802|T037|HT|S60.412|ICD10CM|Abrasion of right middle finger|Abrasion of right middle finger +C2004802|T037|AB|S60.412|ICD10CM|Abrasion of right middle finger|Abrasion of right middle finger +C2849172|T037|AB|S60.412A|ICD10CM|Abrasion of right middle finger, initial encounter|Abrasion of right middle finger, initial encounter +C2849172|T037|PT|S60.412A|ICD10CM|Abrasion of right middle finger, initial encounter|Abrasion of right middle finger, initial encounter +C2849173|T037|AB|S60.412D|ICD10CM|Abrasion of right middle finger, subsequent encounter|Abrasion of right middle finger, subsequent encounter +C2849173|T037|PT|S60.412D|ICD10CM|Abrasion of right middle finger, subsequent encounter|Abrasion of right middle finger, subsequent encounter +C2849174|T037|AB|S60.412S|ICD10CM|Abrasion of right middle finger, sequela|Abrasion of right middle finger, sequela +C2849174|T037|PT|S60.412S|ICD10CM|Abrasion of right middle finger, sequela|Abrasion of right middle finger, sequela +C2004801|T037|HT|S60.413|ICD10CM|Abrasion of left middle finger|Abrasion of left middle finger +C2004801|T037|AB|S60.413|ICD10CM|Abrasion of left middle finger|Abrasion of left middle finger +C2849175|T037|AB|S60.413A|ICD10CM|Abrasion of left middle finger, initial encounter|Abrasion of left middle finger, initial encounter +C2849175|T037|PT|S60.413A|ICD10CM|Abrasion of left middle finger, initial encounter|Abrasion of left middle finger, initial encounter +C2849176|T037|AB|S60.413D|ICD10CM|Abrasion of left middle finger, subsequent encounter|Abrasion of left middle finger, subsequent encounter +C2849176|T037|PT|S60.413D|ICD10CM|Abrasion of left middle finger, subsequent encounter|Abrasion of left middle finger, subsequent encounter +C2849177|T037|AB|S60.413S|ICD10CM|Abrasion of left middle finger, sequela|Abrasion of left middle finger, sequela +C2849177|T037|PT|S60.413S|ICD10CM|Abrasion of left middle finger, sequela|Abrasion of left middle finger, sequela +C2042007|T037|HT|S60.414|ICD10CM|Abrasion of right ring finger|Abrasion of right ring finger +C2042007|T037|AB|S60.414|ICD10CM|Abrasion of right ring finger|Abrasion of right ring finger +C2849178|T037|AB|S60.414A|ICD10CM|Abrasion of right ring finger, initial encounter|Abrasion of right ring finger, initial encounter +C2849178|T037|PT|S60.414A|ICD10CM|Abrasion of right ring finger, initial encounter|Abrasion of right ring finger, initial encounter +C2849179|T037|AB|S60.414D|ICD10CM|Abrasion of right ring finger, subsequent encounter|Abrasion of right ring finger, subsequent encounter +C2849179|T037|PT|S60.414D|ICD10CM|Abrasion of right ring finger, subsequent encounter|Abrasion of right ring finger, subsequent encounter +C2849180|T037|AB|S60.414S|ICD10CM|Abrasion of right ring finger, sequela|Abrasion of right ring finger, sequela +C2849180|T037|PT|S60.414S|ICD10CM|Abrasion of right ring finger, sequela|Abrasion of right ring finger, sequela +C2042006|T037|HT|S60.415|ICD10CM|Abrasion of left ring finger|Abrasion of left ring finger +C2042006|T037|AB|S60.415|ICD10CM|Abrasion of left ring finger|Abrasion of left ring finger +C2849181|T037|AB|S60.415A|ICD10CM|Abrasion of left ring finger, initial encounter|Abrasion of left ring finger, initial encounter +C2849181|T037|PT|S60.415A|ICD10CM|Abrasion of left ring finger, initial encounter|Abrasion of left ring finger, initial encounter +C2849182|T037|AB|S60.415D|ICD10CM|Abrasion of left ring finger, subsequent encounter|Abrasion of left ring finger, subsequent encounter +C2849182|T037|PT|S60.415D|ICD10CM|Abrasion of left ring finger, subsequent encounter|Abrasion of left ring finger, subsequent encounter +C2849183|T037|AB|S60.415S|ICD10CM|Abrasion of left ring finger, sequela|Abrasion of left ring finger, sequela +C2849183|T037|PT|S60.415S|ICD10CM|Abrasion of left ring finger, sequela|Abrasion of left ring finger, sequela +C2004794|T037|HT|S60.416|ICD10CM|Abrasion of right little finger|Abrasion of right little finger +C2004794|T037|AB|S60.416|ICD10CM|Abrasion of right little finger|Abrasion of right little finger +C2849184|T037|AB|S60.416A|ICD10CM|Abrasion of right little finger, initial encounter|Abrasion of right little finger, initial encounter +C2849184|T037|PT|S60.416A|ICD10CM|Abrasion of right little finger, initial encounter|Abrasion of right little finger, initial encounter +C2849185|T037|AB|S60.416D|ICD10CM|Abrasion of right little finger, subsequent encounter|Abrasion of right little finger, subsequent encounter +C2849185|T037|PT|S60.416D|ICD10CM|Abrasion of right little finger, subsequent encounter|Abrasion of right little finger, subsequent encounter +C2849186|T037|AB|S60.416S|ICD10CM|Abrasion of right little finger, sequela|Abrasion of right little finger, sequela +C2849186|T037|PT|S60.416S|ICD10CM|Abrasion of right little finger, sequela|Abrasion of right little finger, sequela +C2004793|T037|HT|S60.417|ICD10CM|Abrasion of left little finger|Abrasion of left little finger +C2004793|T037|AB|S60.417|ICD10CM|Abrasion of left little finger|Abrasion of left little finger +C2849187|T037|AB|S60.417A|ICD10CM|Abrasion of left little finger, initial encounter|Abrasion of left little finger, initial encounter +C2849187|T037|PT|S60.417A|ICD10CM|Abrasion of left little finger, initial encounter|Abrasion of left little finger, initial encounter +C2849188|T037|AB|S60.417D|ICD10CM|Abrasion of left little finger, subsequent encounter|Abrasion of left little finger, subsequent encounter +C2849188|T037|PT|S60.417D|ICD10CM|Abrasion of left little finger, subsequent encounter|Abrasion of left little finger, subsequent encounter +C2849189|T037|AB|S60.417S|ICD10CM|Abrasion of left little finger, sequela|Abrasion of left little finger, sequela +C2849189|T037|PT|S60.417S|ICD10CM|Abrasion of left little finger, sequela|Abrasion of left little finger, sequela +C2849191|T037|AB|S60.418|ICD10CM|Abrasion of other finger|Abrasion of other finger +C2849191|T037|HT|S60.418|ICD10CM|Abrasion of other finger|Abrasion of other finger +C2849190|T037|ET|S60.418|ICD10CM|Abrasion of specified finger with unspecified laterality|Abrasion of specified finger with unspecified laterality +C2849192|T037|AB|S60.418A|ICD10CM|Abrasion of other finger, initial encounter|Abrasion of other finger, initial encounter +C2849192|T037|PT|S60.418A|ICD10CM|Abrasion of other finger, initial encounter|Abrasion of other finger, initial encounter +C2849193|T037|AB|S60.418D|ICD10CM|Abrasion of other finger, subsequent encounter|Abrasion of other finger, subsequent encounter +C2849193|T037|PT|S60.418D|ICD10CM|Abrasion of other finger, subsequent encounter|Abrasion of other finger, subsequent encounter +C2849194|T037|AB|S60.418S|ICD10CM|Abrasion of other finger, sequela|Abrasion of other finger, sequela +C2849194|T037|PT|S60.418S|ICD10CM|Abrasion of other finger, sequela|Abrasion of other finger, sequela +C2849195|T037|AB|S60.419|ICD10CM|Abrasion of unspecified finger|Abrasion of unspecified finger +C2849195|T037|HT|S60.419|ICD10CM|Abrasion of unspecified finger|Abrasion of unspecified finger +C2849196|T037|AB|S60.419A|ICD10CM|Abrasion of unspecified finger, initial encounter|Abrasion of unspecified finger, initial encounter +C2849196|T037|PT|S60.419A|ICD10CM|Abrasion of unspecified finger, initial encounter|Abrasion of unspecified finger, initial encounter +C2849197|T037|AB|S60.419D|ICD10CM|Abrasion of unspecified finger, subsequent encounter|Abrasion of unspecified finger, subsequent encounter +C2849197|T037|PT|S60.419D|ICD10CM|Abrasion of unspecified finger, subsequent encounter|Abrasion of unspecified finger, subsequent encounter +C2849198|T037|AB|S60.419S|ICD10CM|Abrasion of unspecified finger, sequela|Abrasion of unspecified finger, sequela +C2849198|T037|PT|S60.419S|ICD10CM|Abrasion of unspecified finger, sequela|Abrasion of unspecified finger, sequela +C2849199|T037|AB|S60.42|ICD10CM|Blister (nonthermal) of fingers|Blister (nonthermal) of fingers +C2849199|T037|HT|S60.42|ICD10CM|Blister (nonthermal) of fingers|Blister (nonthermal) of fingers +C2849200|T037|AB|S60.420|ICD10CM|Blister (nonthermal) of right index finger|Blister (nonthermal) of right index finger +C2849200|T037|HT|S60.420|ICD10CM|Blister (nonthermal) of right index finger|Blister (nonthermal) of right index finger +C2849201|T037|AB|S60.420A|ICD10CM|Blister (nonthermal) of right index finger, init encntr|Blister (nonthermal) of right index finger, init encntr +C2849201|T037|PT|S60.420A|ICD10CM|Blister (nonthermal) of right index finger, initial encounter|Blister (nonthermal) of right index finger, initial encounter +C2849202|T037|AB|S60.420D|ICD10CM|Blister (nonthermal) of right index finger, subs encntr|Blister (nonthermal) of right index finger, subs encntr +C2849202|T037|PT|S60.420D|ICD10CM|Blister (nonthermal) of right index finger, subsequent encounter|Blister (nonthermal) of right index finger, subsequent encounter +C2849203|T037|AB|S60.420S|ICD10CM|Blister (nonthermal) of right index finger, sequela|Blister (nonthermal) of right index finger, sequela +C2849203|T037|PT|S60.420S|ICD10CM|Blister (nonthermal) of right index finger, sequela|Blister (nonthermal) of right index finger, sequela +C2849204|T037|AB|S60.421|ICD10CM|Blister (nonthermal) of left index finger|Blister (nonthermal) of left index finger +C2849204|T037|HT|S60.421|ICD10CM|Blister (nonthermal) of left index finger|Blister (nonthermal) of left index finger +C2849205|T037|AB|S60.421A|ICD10CM|Blister (nonthermal) of left index finger, initial encounter|Blister (nonthermal) of left index finger, initial encounter +C2849205|T037|PT|S60.421A|ICD10CM|Blister (nonthermal) of left index finger, initial encounter|Blister (nonthermal) of left index finger, initial encounter +C2849206|T037|AB|S60.421D|ICD10CM|Blister (nonthermal) of left index finger, subs encntr|Blister (nonthermal) of left index finger, subs encntr +C2849206|T037|PT|S60.421D|ICD10CM|Blister (nonthermal) of left index finger, subsequent encounter|Blister (nonthermal) of left index finger, subsequent encounter +C2849207|T037|AB|S60.421S|ICD10CM|Blister (nonthermal) of left index finger, sequela|Blister (nonthermal) of left index finger, sequela +C2849207|T037|PT|S60.421S|ICD10CM|Blister (nonthermal) of left index finger, sequela|Blister (nonthermal) of left index finger, sequela +C2849208|T037|AB|S60.422|ICD10CM|Blister (nonthermal) of right middle finger|Blister (nonthermal) of right middle finger +C2849208|T037|HT|S60.422|ICD10CM|Blister (nonthermal) of right middle finger|Blister (nonthermal) of right middle finger +C2849209|T037|AB|S60.422A|ICD10CM|Blister (nonthermal) of right middle finger, init encntr|Blister (nonthermal) of right middle finger, init encntr +C2849209|T037|PT|S60.422A|ICD10CM|Blister (nonthermal) of right middle finger, initial encounter|Blister (nonthermal) of right middle finger, initial encounter +C2849210|T037|AB|S60.422D|ICD10CM|Blister (nonthermal) of right middle finger, subs encntr|Blister (nonthermal) of right middle finger, subs encntr +C2849210|T037|PT|S60.422D|ICD10CM|Blister (nonthermal) of right middle finger, subsequent encounter|Blister (nonthermal) of right middle finger, subsequent encounter +C2849211|T037|AB|S60.422S|ICD10CM|Blister (nonthermal) of right middle finger, sequela|Blister (nonthermal) of right middle finger, sequela +C2849211|T037|PT|S60.422S|ICD10CM|Blister (nonthermal) of right middle finger, sequela|Blister (nonthermal) of right middle finger, sequela +C2849212|T037|AB|S60.423|ICD10CM|Blister (nonthermal) of left middle finger|Blister (nonthermal) of left middle finger +C2849212|T037|HT|S60.423|ICD10CM|Blister (nonthermal) of left middle finger|Blister (nonthermal) of left middle finger +C2849213|T037|AB|S60.423A|ICD10CM|Blister (nonthermal) of left middle finger, init encntr|Blister (nonthermal) of left middle finger, init encntr +C2849213|T037|PT|S60.423A|ICD10CM|Blister (nonthermal) of left middle finger, initial encounter|Blister (nonthermal) of left middle finger, initial encounter +C2849214|T037|AB|S60.423D|ICD10CM|Blister (nonthermal) of left middle finger, subs encntr|Blister (nonthermal) of left middle finger, subs encntr +C2849214|T037|PT|S60.423D|ICD10CM|Blister (nonthermal) of left middle finger, subsequent encounter|Blister (nonthermal) of left middle finger, subsequent encounter +C2849215|T037|AB|S60.423S|ICD10CM|Blister (nonthermal) of left middle finger, sequela|Blister (nonthermal) of left middle finger, sequela +C2849215|T037|PT|S60.423S|ICD10CM|Blister (nonthermal) of left middle finger, sequela|Blister (nonthermal) of left middle finger, sequela +C2849216|T037|AB|S60.424|ICD10CM|Blister (nonthermal) of right ring finger|Blister (nonthermal) of right ring finger +C2849216|T037|HT|S60.424|ICD10CM|Blister (nonthermal) of right ring finger|Blister (nonthermal) of right ring finger +C2849217|T037|AB|S60.424A|ICD10CM|Blister (nonthermal) of right ring finger, initial encounter|Blister (nonthermal) of right ring finger, initial encounter +C2849217|T037|PT|S60.424A|ICD10CM|Blister (nonthermal) of right ring finger, initial encounter|Blister (nonthermal) of right ring finger, initial encounter +C2849218|T037|AB|S60.424D|ICD10CM|Blister (nonthermal) of right ring finger, subs encntr|Blister (nonthermal) of right ring finger, subs encntr +C2849218|T037|PT|S60.424D|ICD10CM|Blister (nonthermal) of right ring finger, subsequent encounter|Blister (nonthermal) of right ring finger, subsequent encounter +C2849219|T037|AB|S60.424S|ICD10CM|Blister (nonthermal) of right ring finger, sequela|Blister (nonthermal) of right ring finger, sequela +C2849219|T037|PT|S60.424S|ICD10CM|Blister (nonthermal) of right ring finger, sequela|Blister (nonthermal) of right ring finger, sequela +C2849220|T037|AB|S60.425|ICD10CM|Blister (nonthermal) of left ring finger|Blister (nonthermal) of left ring finger +C2849220|T037|HT|S60.425|ICD10CM|Blister (nonthermal) of left ring finger|Blister (nonthermal) of left ring finger +C2849221|T037|AB|S60.425A|ICD10CM|Blister (nonthermal) of left ring finger, initial encounter|Blister (nonthermal) of left ring finger, initial encounter +C2849221|T037|PT|S60.425A|ICD10CM|Blister (nonthermal) of left ring finger, initial encounter|Blister (nonthermal) of left ring finger, initial encounter +C2849222|T037|AB|S60.425D|ICD10CM|Blister (nonthermal) of left ring finger, subs encntr|Blister (nonthermal) of left ring finger, subs encntr +C2849222|T037|PT|S60.425D|ICD10CM|Blister (nonthermal) of left ring finger, subsequent encounter|Blister (nonthermal) of left ring finger, subsequent encounter +C2849223|T037|AB|S60.425S|ICD10CM|Blister (nonthermal) of left ring finger, sequela|Blister (nonthermal) of left ring finger, sequela +C2849223|T037|PT|S60.425S|ICD10CM|Blister (nonthermal) of left ring finger, sequela|Blister (nonthermal) of left ring finger, sequela +C2849224|T037|AB|S60.426|ICD10CM|Blister (nonthermal) of right little finger|Blister (nonthermal) of right little finger +C2849224|T037|HT|S60.426|ICD10CM|Blister (nonthermal) of right little finger|Blister (nonthermal) of right little finger +C2849225|T037|AB|S60.426A|ICD10CM|Blister (nonthermal) of right little finger, init encntr|Blister (nonthermal) of right little finger, init encntr +C2849225|T037|PT|S60.426A|ICD10CM|Blister (nonthermal) of right little finger, initial encounter|Blister (nonthermal) of right little finger, initial encounter +C2849226|T037|AB|S60.426D|ICD10CM|Blister (nonthermal) of right little finger, subs encntr|Blister (nonthermal) of right little finger, subs encntr +C2849226|T037|PT|S60.426D|ICD10CM|Blister (nonthermal) of right little finger, subsequent encounter|Blister (nonthermal) of right little finger, subsequent encounter +C2849227|T037|AB|S60.426S|ICD10CM|Blister (nonthermal) of right little finger, sequela|Blister (nonthermal) of right little finger, sequela +C2849227|T037|PT|S60.426S|ICD10CM|Blister (nonthermal) of right little finger, sequela|Blister (nonthermal) of right little finger, sequela +C2849228|T037|AB|S60.427|ICD10CM|Blister (nonthermal) of left little finger|Blister (nonthermal) of left little finger +C2849228|T037|HT|S60.427|ICD10CM|Blister (nonthermal) of left little finger|Blister (nonthermal) of left little finger +C2849229|T037|AB|S60.427A|ICD10CM|Blister (nonthermal) of left little finger, init encntr|Blister (nonthermal) of left little finger, init encntr +C2849229|T037|PT|S60.427A|ICD10CM|Blister (nonthermal) of left little finger, initial encounter|Blister (nonthermal) of left little finger, initial encounter +C2849230|T037|AB|S60.427D|ICD10CM|Blister (nonthermal) of left little finger, subs encntr|Blister (nonthermal) of left little finger, subs encntr +C2849230|T037|PT|S60.427D|ICD10CM|Blister (nonthermal) of left little finger, subsequent encounter|Blister (nonthermal) of left little finger, subsequent encounter +C2849231|T037|AB|S60.427S|ICD10CM|Blister (nonthermal) of left little finger, sequela|Blister (nonthermal) of left little finger, sequela +C2849231|T037|PT|S60.427S|ICD10CM|Blister (nonthermal) of left little finger, sequela|Blister (nonthermal) of left little finger, sequela +C2849233|T037|AB|S60.428|ICD10CM|Blister (nonthermal) of other finger|Blister (nonthermal) of other finger +C2849233|T037|HT|S60.428|ICD10CM|Blister (nonthermal) of other finger|Blister (nonthermal) of other finger +C2849232|T037|ET|S60.428|ICD10CM|Blister (nonthermal) of specified finger with unspecified laterality|Blister (nonthermal) of specified finger with unspecified laterality +C2849234|T037|AB|S60.428A|ICD10CM|Blister (nonthermal) of other finger, initial encounter|Blister (nonthermal) of other finger, initial encounter +C2849234|T037|PT|S60.428A|ICD10CM|Blister (nonthermal) of other finger, initial encounter|Blister (nonthermal) of other finger, initial encounter +C2849235|T037|AB|S60.428D|ICD10CM|Blister (nonthermal) of other finger, subsequent encounter|Blister (nonthermal) of other finger, subsequent encounter +C2849235|T037|PT|S60.428D|ICD10CM|Blister (nonthermal) of other finger, subsequent encounter|Blister (nonthermal) of other finger, subsequent encounter +C2849236|T037|AB|S60.428S|ICD10CM|Blister (nonthermal) of other finger, sequela|Blister (nonthermal) of other finger, sequela +C2849236|T037|PT|S60.428S|ICD10CM|Blister (nonthermal) of other finger, sequela|Blister (nonthermal) of other finger, sequela +C2849237|T037|AB|S60.429|ICD10CM|Blister (nonthermal) of unspecified finger|Blister (nonthermal) of unspecified finger +C2849237|T037|HT|S60.429|ICD10CM|Blister (nonthermal) of unspecified finger|Blister (nonthermal) of unspecified finger +C2849238|T037|AB|S60.429A|ICD10CM|Blister (nonthermal) of unspecified finger, init encntr|Blister (nonthermal) of unspecified finger, init encntr +C2849238|T037|PT|S60.429A|ICD10CM|Blister (nonthermal) of unspecified finger, initial encounter|Blister (nonthermal) of unspecified finger, initial encounter +C2849239|T037|AB|S60.429D|ICD10CM|Blister (nonthermal) of unspecified finger, subs encntr|Blister (nonthermal) of unspecified finger, subs encntr +C2849239|T037|PT|S60.429D|ICD10CM|Blister (nonthermal) of unspecified finger, subsequent encounter|Blister (nonthermal) of unspecified finger, subsequent encounter +C2849240|T037|AB|S60.429S|ICD10CM|Blister (nonthermal) of unspecified finger, sequela|Blister (nonthermal) of unspecified finger, sequela +C2849240|T037|PT|S60.429S|ICD10CM|Blister (nonthermal) of unspecified finger, sequela|Blister (nonthermal) of unspecified finger, sequela +C2849242|T037|AB|S60.44|ICD10CM|External constriction of fingers|External constriction of fingers +C2849242|T037|HT|S60.44|ICD10CM|External constriction of fingers|External constriction of fingers +C2849241|T037|ET|S60.44|ICD10CM|Hair tourniquet syndrome of finger|Hair tourniquet syndrome of finger +C2849243|T037|AB|S60.440|ICD10CM|External constriction of right index finger|External constriction of right index finger +C2849243|T037|HT|S60.440|ICD10CM|External constriction of right index finger|External constriction of right index finger +C2849244|T037|AB|S60.440A|ICD10CM|External constriction of right index finger, init encntr|External constriction of right index finger, init encntr +C2849244|T037|PT|S60.440A|ICD10CM|External constriction of right index finger, initial encounter|External constriction of right index finger, initial encounter +C2849245|T037|AB|S60.440D|ICD10CM|External constriction of right index finger, subs encntr|External constriction of right index finger, subs encntr +C2849245|T037|PT|S60.440D|ICD10CM|External constriction of right index finger, subsequent encounter|External constriction of right index finger, subsequent encounter +C2849246|T037|AB|S60.440S|ICD10CM|External constriction of right index finger, sequela|External constriction of right index finger, sequela +C2849246|T037|PT|S60.440S|ICD10CM|External constriction of right index finger, sequela|External constriction of right index finger, sequela +C2849247|T037|AB|S60.441|ICD10CM|External constriction of left index finger|External constriction of left index finger +C2849247|T037|HT|S60.441|ICD10CM|External constriction of left index finger|External constriction of left index finger +C2849248|T037|AB|S60.441A|ICD10CM|External constriction of left index finger, init encntr|External constriction of left index finger, init encntr +C2849248|T037|PT|S60.441A|ICD10CM|External constriction of left index finger, initial encounter|External constriction of left index finger, initial encounter +C2849249|T037|AB|S60.441D|ICD10CM|External constriction of left index finger, subs encntr|External constriction of left index finger, subs encntr +C2849249|T037|PT|S60.441D|ICD10CM|External constriction of left index finger, subsequent encounter|External constriction of left index finger, subsequent encounter +C2849250|T037|AB|S60.441S|ICD10CM|External constriction of left index finger, sequela|External constriction of left index finger, sequela +C2849250|T037|PT|S60.441S|ICD10CM|External constriction of left index finger, sequela|External constriction of left index finger, sequela +C2849251|T037|AB|S60.442|ICD10CM|External constriction of right middle finger|External constriction of right middle finger +C2849251|T037|HT|S60.442|ICD10CM|External constriction of right middle finger|External constriction of right middle finger +C2849252|T037|AB|S60.442A|ICD10CM|External constriction of right middle finger, init encntr|External constriction of right middle finger, init encntr +C2849252|T037|PT|S60.442A|ICD10CM|External constriction of right middle finger, initial encounter|External constriction of right middle finger, initial encounter +C2849253|T037|AB|S60.442D|ICD10CM|External constriction of right middle finger, subs encntr|External constriction of right middle finger, subs encntr +C2849253|T037|PT|S60.442D|ICD10CM|External constriction of right middle finger, subsequent encounter|External constriction of right middle finger, subsequent encounter +C2849254|T037|AB|S60.442S|ICD10CM|External constriction of right middle finger, sequela|External constriction of right middle finger, sequela +C2849254|T037|PT|S60.442S|ICD10CM|External constriction of right middle finger, sequela|External constriction of right middle finger, sequela +C2849255|T037|AB|S60.443|ICD10CM|External constriction of left middle finger|External constriction of left middle finger +C2849255|T037|HT|S60.443|ICD10CM|External constriction of left middle finger|External constriction of left middle finger +C2849256|T037|AB|S60.443A|ICD10CM|External constriction of left middle finger, init encntr|External constriction of left middle finger, init encntr +C2849256|T037|PT|S60.443A|ICD10CM|External constriction of left middle finger, initial encounter|External constriction of left middle finger, initial encounter +C2849257|T037|AB|S60.443D|ICD10CM|External constriction of left middle finger, subs encntr|External constriction of left middle finger, subs encntr +C2849257|T037|PT|S60.443D|ICD10CM|External constriction of left middle finger, subsequent encounter|External constriction of left middle finger, subsequent encounter +C2849258|T037|AB|S60.443S|ICD10CM|External constriction of left middle finger, sequela|External constriction of left middle finger, sequela +C2849258|T037|PT|S60.443S|ICD10CM|External constriction of left middle finger, sequela|External constriction of left middle finger, sequela +C2849259|T037|AB|S60.444|ICD10CM|External constriction of right ring finger|External constriction of right ring finger +C2849259|T037|HT|S60.444|ICD10CM|External constriction of right ring finger|External constriction of right ring finger +C2849260|T037|AB|S60.444A|ICD10CM|External constriction of right ring finger, init encntr|External constriction of right ring finger, init encntr +C2849260|T037|PT|S60.444A|ICD10CM|External constriction of right ring finger, initial encounter|External constriction of right ring finger, initial encounter +C2849261|T037|AB|S60.444D|ICD10CM|External constriction of right ring finger, subs encntr|External constriction of right ring finger, subs encntr +C2849261|T037|PT|S60.444D|ICD10CM|External constriction of right ring finger, subsequent encounter|External constriction of right ring finger, subsequent encounter +C2849262|T037|AB|S60.444S|ICD10CM|External constriction of right ring finger, sequela|External constriction of right ring finger, sequela +C2849262|T037|PT|S60.444S|ICD10CM|External constriction of right ring finger, sequela|External constriction of right ring finger, sequela +C2849263|T037|AB|S60.445|ICD10CM|External constriction of left ring finger|External constriction of left ring finger +C2849263|T037|HT|S60.445|ICD10CM|External constriction of left ring finger|External constriction of left ring finger +C2849264|T037|AB|S60.445A|ICD10CM|External constriction of left ring finger, initial encounter|External constriction of left ring finger, initial encounter +C2849264|T037|PT|S60.445A|ICD10CM|External constriction of left ring finger, initial encounter|External constriction of left ring finger, initial encounter +C2849265|T037|AB|S60.445D|ICD10CM|External constriction of left ring finger, subs encntr|External constriction of left ring finger, subs encntr +C2849265|T037|PT|S60.445D|ICD10CM|External constriction of left ring finger, subsequent encounter|External constriction of left ring finger, subsequent encounter +C2849266|T037|AB|S60.445S|ICD10CM|External constriction of left ring finger, sequela|External constriction of left ring finger, sequela +C2849266|T037|PT|S60.445S|ICD10CM|External constriction of left ring finger, sequela|External constriction of left ring finger, sequela +C2849267|T037|AB|S60.446|ICD10CM|External constriction of right little finger|External constriction of right little finger +C2849267|T037|HT|S60.446|ICD10CM|External constriction of right little finger|External constriction of right little finger +C2849268|T037|AB|S60.446A|ICD10CM|External constriction of right little finger, init encntr|External constriction of right little finger, init encntr +C2849268|T037|PT|S60.446A|ICD10CM|External constriction of right little finger, initial encounter|External constriction of right little finger, initial encounter +C2849269|T037|AB|S60.446D|ICD10CM|External constriction of right little finger, subs encntr|External constriction of right little finger, subs encntr +C2849269|T037|PT|S60.446D|ICD10CM|External constriction of right little finger, subsequent encounter|External constriction of right little finger, subsequent encounter +C2849270|T037|AB|S60.446S|ICD10CM|External constriction of right little finger, sequela|External constriction of right little finger, sequela +C2849270|T037|PT|S60.446S|ICD10CM|External constriction of right little finger, sequela|External constriction of right little finger, sequela +C2849271|T037|AB|S60.447|ICD10CM|External constriction of left little finger|External constriction of left little finger +C2849271|T037|HT|S60.447|ICD10CM|External constriction of left little finger|External constriction of left little finger +C2849272|T037|AB|S60.447A|ICD10CM|External constriction of left little finger, init encntr|External constriction of left little finger, init encntr +C2849272|T037|PT|S60.447A|ICD10CM|External constriction of left little finger, initial encounter|External constriction of left little finger, initial encounter +C2849273|T037|AB|S60.447D|ICD10CM|External constriction of left little finger, subs encntr|External constriction of left little finger, subs encntr +C2849273|T037|PT|S60.447D|ICD10CM|External constriction of left little finger, subsequent encounter|External constriction of left little finger, subsequent encounter +C2849274|T037|AB|S60.447S|ICD10CM|External constriction of left little finger, sequela|External constriction of left little finger, sequela +C2849274|T037|PT|S60.447S|ICD10CM|External constriction of left little finger, sequela|External constriction of left little finger, sequela +C2849276|T037|AB|S60.448|ICD10CM|External constriction of other finger|External constriction of other finger +C2849276|T037|HT|S60.448|ICD10CM|External constriction of other finger|External constriction of other finger +C2849275|T037|ET|S60.448|ICD10CM|External constriction of specified finger with unspecified laterality|External constriction of specified finger with unspecified laterality +C2849277|T037|AB|S60.448A|ICD10CM|External constriction of other finger, initial encounter|External constriction of other finger, initial encounter +C2849277|T037|PT|S60.448A|ICD10CM|External constriction of other finger, initial encounter|External constriction of other finger, initial encounter +C2849278|T037|AB|S60.448D|ICD10CM|External constriction of other finger, subsequent encounter|External constriction of other finger, subsequent encounter +C2849278|T037|PT|S60.448D|ICD10CM|External constriction of other finger, subsequent encounter|External constriction of other finger, subsequent encounter +C2849279|T037|AB|S60.448S|ICD10CM|External constriction of other finger, sequela|External constriction of other finger, sequela +C2849279|T037|PT|S60.448S|ICD10CM|External constriction of other finger, sequela|External constriction of other finger, sequela +C2849280|T037|AB|S60.449|ICD10CM|External constriction of unspecified finger|External constriction of unspecified finger +C2849280|T037|HT|S60.449|ICD10CM|External constriction of unspecified finger|External constriction of unspecified finger +C2849281|T037|AB|S60.449A|ICD10CM|External constriction of unspecified finger, init encntr|External constriction of unspecified finger, init encntr +C2849281|T037|PT|S60.449A|ICD10CM|External constriction of unspecified finger, initial encounter|External constriction of unspecified finger, initial encounter +C2849282|T037|AB|S60.449D|ICD10CM|External constriction of unspecified finger, subs encntr|External constriction of unspecified finger, subs encntr +C2849282|T037|PT|S60.449D|ICD10CM|External constriction of unspecified finger, subsequent encounter|External constriction of unspecified finger, subsequent encounter +C2849283|T037|AB|S60.449S|ICD10CM|External constriction of unspecified finger, sequela|External constriction of unspecified finger, sequela +C2849283|T037|PT|S60.449S|ICD10CM|External constriction of unspecified finger, sequela|External constriction of unspecified finger, sequela +C2018802|T037|ET|S60.45|ICD10CM|Splinter in the finger(s)|Splinter in the finger(s) +C2037282|T037|AB|S60.45|ICD10CM|Superficial foreign body of fingers|Superficial foreign body of fingers +C2037282|T037|HT|S60.45|ICD10CM|Superficial foreign body of fingers|Superficial foreign body of fingers +C2849284|T037|AB|S60.450|ICD10CM|Superficial foreign body of right index finger|Superficial foreign body of right index finger +C2849284|T037|HT|S60.450|ICD10CM|Superficial foreign body of right index finger|Superficial foreign body of right index finger +C2849285|T037|AB|S60.450A|ICD10CM|Superficial foreign body of right index finger, init encntr|Superficial foreign body of right index finger, init encntr +C2849285|T037|PT|S60.450A|ICD10CM|Superficial foreign body of right index finger, initial encounter|Superficial foreign body of right index finger, initial encounter +C2849286|T037|AB|S60.450D|ICD10CM|Superficial foreign body of right index finger, subs encntr|Superficial foreign body of right index finger, subs encntr +C2849286|T037|PT|S60.450D|ICD10CM|Superficial foreign body of right index finger, subsequent encounter|Superficial foreign body of right index finger, subsequent encounter +C2849287|T037|AB|S60.450S|ICD10CM|Superficial foreign body of right index finger, sequela|Superficial foreign body of right index finger, sequela +C2849287|T037|PT|S60.450S|ICD10CM|Superficial foreign body of right index finger, sequela|Superficial foreign body of right index finger, sequela +C2849288|T037|AB|S60.451|ICD10CM|Superficial foreign body of left index finger|Superficial foreign body of left index finger +C2849288|T037|HT|S60.451|ICD10CM|Superficial foreign body of left index finger|Superficial foreign body of left index finger +C2849289|T037|AB|S60.451A|ICD10CM|Superficial foreign body of left index finger, init encntr|Superficial foreign body of left index finger, init encntr +C2849289|T037|PT|S60.451A|ICD10CM|Superficial foreign body of left index finger, initial encounter|Superficial foreign body of left index finger, initial encounter +C2849290|T037|AB|S60.451D|ICD10CM|Superficial foreign body of left index finger, subs encntr|Superficial foreign body of left index finger, subs encntr +C2849290|T037|PT|S60.451D|ICD10CM|Superficial foreign body of left index finger, subsequent encounter|Superficial foreign body of left index finger, subsequent encounter +C2849291|T037|AB|S60.451S|ICD10CM|Superficial foreign body of left index finger, sequela|Superficial foreign body of left index finger, sequela +C2849291|T037|PT|S60.451S|ICD10CM|Superficial foreign body of left index finger, sequela|Superficial foreign body of left index finger, sequela +C2849292|T037|AB|S60.452|ICD10CM|Superficial foreign body of right middle finger|Superficial foreign body of right middle finger +C2849292|T037|HT|S60.452|ICD10CM|Superficial foreign body of right middle finger|Superficial foreign body of right middle finger +C2849293|T037|AB|S60.452A|ICD10CM|Superficial foreign body of right middle finger, init encntr|Superficial foreign body of right middle finger, init encntr +C2849293|T037|PT|S60.452A|ICD10CM|Superficial foreign body of right middle finger, initial encounter|Superficial foreign body of right middle finger, initial encounter +C2849294|T037|AB|S60.452D|ICD10CM|Superficial foreign body of right middle finger, subs encntr|Superficial foreign body of right middle finger, subs encntr +C2849294|T037|PT|S60.452D|ICD10CM|Superficial foreign body of right middle finger, subsequent encounter|Superficial foreign body of right middle finger, subsequent encounter +C2849295|T037|AB|S60.452S|ICD10CM|Superficial foreign body of right middle finger, sequela|Superficial foreign body of right middle finger, sequela +C2849295|T037|PT|S60.452S|ICD10CM|Superficial foreign body of right middle finger, sequela|Superficial foreign body of right middle finger, sequela +C2849296|T037|AB|S60.453|ICD10CM|Superficial foreign body of left middle finger|Superficial foreign body of left middle finger +C2849296|T037|HT|S60.453|ICD10CM|Superficial foreign body of left middle finger|Superficial foreign body of left middle finger +C2849297|T037|AB|S60.453A|ICD10CM|Superficial foreign body of left middle finger, init encntr|Superficial foreign body of left middle finger, init encntr +C2849297|T037|PT|S60.453A|ICD10CM|Superficial foreign body of left middle finger, initial encounter|Superficial foreign body of left middle finger, initial encounter +C2849298|T037|AB|S60.453D|ICD10CM|Superficial foreign body of left middle finger, subs encntr|Superficial foreign body of left middle finger, subs encntr +C2849298|T037|PT|S60.453D|ICD10CM|Superficial foreign body of left middle finger, subsequent encounter|Superficial foreign body of left middle finger, subsequent encounter +C2849299|T037|AB|S60.453S|ICD10CM|Superficial foreign body of left middle finger, sequela|Superficial foreign body of left middle finger, sequela +C2849299|T037|PT|S60.453S|ICD10CM|Superficial foreign body of left middle finger, sequela|Superficial foreign body of left middle finger, sequela +C2849300|T037|HT|S60.454|ICD10CM|Superficial foreign body of right ring finger|Superficial foreign body of right ring finger +C2849300|T037|AB|S60.454|ICD10CM|Superficial foreign body of right ring finger|Superficial foreign body of right ring finger +C2849301|T037|AB|S60.454A|ICD10CM|Superficial foreign body of right ring finger, init encntr|Superficial foreign body of right ring finger, init encntr +C2849301|T037|PT|S60.454A|ICD10CM|Superficial foreign body of right ring finger, initial encounter|Superficial foreign body of right ring finger, initial encounter +C2849302|T037|AB|S60.454D|ICD10CM|Superficial foreign body of right ring finger, subs encntr|Superficial foreign body of right ring finger, subs encntr +C2849302|T037|PT|S60.454D|ICD10CM|Superficial foreign body of right ring finger, subsequent encounter|Superficial foreign body of right ring finger, subsequent encounter +C2849303|T037|AB|S60.454S|ICD10CM|Superficial foreign body of right ring finger, sequela|Superficial foreign body of right ring finger, sequela +C2849303|T037|PT|S60.454S|ICD10CM|Superficial foreign body of right ring finger, sequela|Superficial foreign body of right ring finger, sequela +C2849304|T037|HT|S60.455|ICD10CM|Superficial foreign body of left ring finger|Superficial foreign body of left ring finger +C2849304|T037|AB|S60.455|ICD10CM|Superficial foreign body of left ring finger|Superficial foreign body of left ring finger +C2849305|T037|AB|S60.455A|ICD10CM|Superficial foreign body of left ring finger, init encntr|Superficial foreign body of left ring finger, init encntr +C2849305|T037|PT|S60.455A|ICD10CM|Superficial foreign body of left ring finger, initial encounter|Superficial foreign body of left ring finger, initial encounter +C2849306|T037|AB|S60.455D|ICD10CM|Superficial foreign body of left ring finger, subs encntr|Superficial foreign body of left ring finger, subs encntr +C2849306|T037|PT|S60.455D|ICD10CM|Superficial foreign body of left ring finger, subsequent encounter|Superficial foreign body of left ring finger, subsequent encounter +C2849307|T037|AB|S60.455S|ICD10CM|Superficial foreign body of left ring finger, sequela|Superficial foreign body of left ring finger, sequela +C2849307|T037|PT|S60.455S|ICD10CM|Superficial foreign body of left ring finger, sequela|Superficial foreign body of left ring finger, sequela +C2849308|T037|HT|S60.456|ICD10CM|Superficial foreign body of right little finger|Superficial foreign body of right little finger +C2849308|T037|AB|S60.456|ICD10CM|Superficial foreign body of right little finger|Superficial foreign body of right little finger +C2849309|T037|AB|S60.456A|ICD10CM|Superficial foreign body of right little finger, init encntr|Superficial foreign body of right little finger, init encntr +C2849309|T037|PT|S60.456A|ICD10CM|Superficial foreign body of right little finger, initial encounter|Superficial foreign body of right little finger, initial encounter +C2849310|T037|AB|S60.456D|ICD10CM|Superficial foreign body of right little finger, subs encntr|Superficial foreign body of right little finger, subs encntr +C2849310|T037|PT|S60.456D|ICD10CM|Superficial foreign body of right little finger, subsequent encounter|Superficial foreign body of right little finger, subsequent encounter +C2849311|T037|AB|S60.456S|ICD10CM|Superficial foreign body of right little finger, sequela|Superficial foreign body of right little finger, sequela +C2849311|T037|PT|S60.456S|ICD10CM|Superficial foreign body of right little finger, sequela|Superficial foreign body of right little finger, sequela +C2849312|T037|HT|S60.457|ICD10CM|Superficial foreign body of left little finger|Superficial foreign body of left little finger +C2849312|T037|AB|S60.457|ICD10CM|Superficial foreign body of left little finger|Superficial foreign body of left little finger +C2849313|T037|AB|S60.457A|ICD10CM|Superficial foreign body of left little finger, init encntr|Superficial foreign body of left little finger, init encntr +C2849313|T037|PT|S60.457A|ICD10CM|Superficial foreign body of left little finger, initial encounter|Superficial foreign body of left little finger, initial encounter +C2849314|T037|AB|S60.457D|ICD10CM|Superficial foreign body of left little finger, subs encntr|Superficial foreign body of left little finger, subs encntr +C2849314|T037|PT|S60.457D|ICD10CM|Superficial foreign body of left little finger, subsequent encounter|Superficial foreign body of left little finger, subsequent encounter +C2849315|T037|AB|S60.457S|ICD10CM|Superficial foreign body of left little finger, sequela|Superficial foreign body of left little finger, sequela +C2849315|T037|PT|S60.457S|ICD10CM|Superficial foreign body of left little finger, sequela|Superficial foreign body of left little finger, sequela +C2849317|T037|AB|S60.458|ICD10CM|Superficial foreign body of other finger|Superficial foreign body of other finger +C2849317|T037|HT|S60.458|ICD10CM|Superficial foreign body of other finger|Superficial foreign body of other finger +C2849316|T037|ET|S60.458|ICD10CM|Superficial foreign body of specified finger with unspecified laterality|Superficial foreign body of specified finger with unspecified laterality +C2849318|T037|AB|S60.458A|ICD10CM|Superficial foreign body of other finger, initial encounter|Superficial foreign body of other finger, initial encounter +C2849318|T037|PT|S60.458A|ICD10CM|Superficial foreign body of other finger, initial encounter|Superficial foreign body of other finger, initial encounter +C2849319|T037|AB|S60.458D|ICD10CM|Superficial foreign body of other finger, subs encntr|Superficial foreign body of other finger, subs encntr +C2849319|T037|PT|S60.458D|ICD10CM|Superficial foreign body of other finger, subsequent encounter|Superficial foreign body of other finger, subsequent encounter +C2849320|T037|AB|S60.458S|ICD10CM|Superficial foreign body of other finger, sequela|Superficial foreign body of other finger, sequela +C2849320|T037|PT|S60.458S|ICD10CM|Superficial foreign body of other finger, sequela|Superficial foreign body of other finger, sequela +C2849321|T037|AB|S60.459|ICD10CM|Superficial foreign body of unspecified finger|Superficial foreign body of unspecified finger +C2849321|T037|HT|S60.459|ICD10CM|Superficial foreign body of unspecified finger|Superficial foreign body of unspecified finger +C2849322|T037|AB|S60.459A|ICD10CM|Superficial foreign body of unspecified finger, init encntr|Superficial foreign body of unspecified finger, init encntr +C2849322|T037|PT|S60.459A|ICD10CM|Superficial foreign body of unspecified finger, initial encounter|Superficial foreign body of unspecified finger, initial encounter +C2849323|T037|AB|S60.459D|ICD10CM|Superficial foreign body of unspecified finger, subs encntr|Superficial foreign body of unspecified finger, subs encntr +C2849323|T037|PT|S60.459D|ICD10CM|Superficial foreign body of unspecified finger, subsequent encounter|Superficial foreign body of unspecified finger, subsequent encounter +C2849324|T037|AB|S60.459S|ICD10CM|Superficial foreign body of unspecified finger, sequela|Superficial foreign body of unspecified finger, sequela +C2849324|T037|PT|S60.459S|ICD10CM|Superficial foreign body of unspecified finger, sequela|Superficial foreign body of unspecified finger, sequela +C2063667|T037|AB|S60.46|ICD10CM|Insect bite (nonvenomous) of fingers|Insect bite (nonvenomous) of fingers +C2063667|T037|HT|S60.46|ICD10CM|Insect bite (nonvenomous) of fingers|Insect bite (nonvenomous) of fingers +C2849325|T037|AB|S60.460|ICD10CM|Insect bite (nonvenomous) of right index finger|Insect bite (nonvenomous) of right index finger +C2849325|T037|HT|S60.460|ICD10CM|Insect bite (nonvenomous) of right index finger|Insect bite (nonvenomous) of right index finger +C2849326|T037|AB|S60.460A|ICD10CM|Insect bite (nonvenomous) of right index finger, init encntr|Insect bite (nonvenomous) of right index finger, init encntr +C2849326|T037|PT|S60.460A|ICD10CM|Insect bite (nonvenomous) of right index finger, initial encounter|Insect bite (nonvenomous) of right index finger, initial encounter +C2849327|T037|AB|S60.460D|ICD10CM|Insect bite (nonvenomous) of right index finger, subs encntr|Insect bite (nonvenomous) of right index finger, subs encntr +C2849327|T037|PT|S60.460D|ICD10CM|Insect bite (nonvenomous) of right index finger, subsequent encounter|Insect bite (nonvenomous) of right index finger, subsequent encounter +C2849328|T037|AB|S60.460S|ICD10CM|Insect bite (nonvenomous) of right index finger, sequela|Insect bite (nonvenomous) of right index finger, sequela +C2849328|T037|PT|S60.460S|ICD10CM|Insect bite (nonvenomous) of right index finger, sequela|Insect bite (nonvenomous) of right index finger, sequela +C2849329|T037|AB|S60.461|ICD10CM|Insect bite (nonvenomous) of left index finger|Insect bite (nonvenomous) of left index finger +C2849329|T037|HT|S60.461|ICD10CM|Insect bite (nonvenomous) of left index finger|Insect bite (nonvenomous) of left index finger +C2849330|T037|AB|S60.461A|ICD10CM|Insect bite (nonvenomous) of left index finger, init encntr|Insect bite (nonvenomous) of left index finger, init encntr +C2849330|T037|PT|S60.461A|ICD10CM|Insect bite (nonvenomous) of left index finger, initial encounter|Insect bite (nonvenomous) of left index finger, initial encounter +C2849331|T037|AB|S60.461D|ICD10CM|Insect bite (nonvenomous) of left index finger, subs encntr|Insect bite (nonvenomous) of left index finger, subs encntr +C2849331|T037|PT|S60.461D|ICD10CM|Insect bite (nonvenomous) of left index finger, subsequent encounter|Insect bite (nonvenomous) of left index finger, subsequent encounter +C2849332|T037|AB|S60.461S|ICD10CM|Insect bite (nonvenomous) of left index finger, sequela|Insect bite (nonvenomous) of left index finger, sequela +C2849332|T037|PT|S60.461S|ICD10CM|Insect bite (nonvenomous) of left index finger, sequela|Insect bite (nonvenomous) of left index finger, sequela +C2849333|T037|AB|S60.462|ICD10CM|Insect bite (nonvenomous) of right middle finger|Insect bite (nonvenomous) of right middle finger +C2849333|T037|HT|S60.462|ICD10CM|Insect bite (nonvenomous) of right middle finger|Insect bite (nonvenomous) of right middle finger +C2849334|T037|AB|S60.462A|ICD10CM|Insect bite (nonvenomous) of right middle finger, init|Insect bite (nonvenomous) of right middle finger, init +C2849334|T037|PT|S60.462A|ICD10CM|Insect bite (nonvenomous) of right middle finger, initial encounter|Insect bite (nonvenomous) of right middle finger, initial encounter +C2849335|T037|AB|S60.462D|ICD10CM|Insect bite (nonvenomous) of right middle finger, subs|Insect bite (nonvenomous) of right middle finger, subs +C2849335|T037|PT|S60.462D|ICD10CM|Insect bite (nonvenomous) of right middle finger, subsequent encounter|Insect bite (nonvenomous) of right middle finger, subsequent encounter +C2849336|T037|AB|S60.462S|ICD10CM|Insect bite (nonvenomous) of right middle finger, sequela|Insect bite (nonvenomous) of right middle finger, sequela +C2849336|T037|PT|S60.462S|ICD10CM|Insect bite (nonvenomous) of right middle finger, sequela|Insect bite (nonvenomous) of right middle finger, sequela +C2849337|T037|AB|S60.463|ICD10CM|Insect bite (nonvenomous) of left middle finger|Insect bite (nonvenomous) of left middle finger +C2849337|T037|HT|S60.463|ICD10CM|Insect bite (nonvenomous) of left middle finger|Insect bite (nonvenomous) of left middle finger +C2849338|T037|AB|S60.463A|ICD10CM|Insect bite (nonvenomous) of left middle finger, init encntr|Insect bite (nonvenomous) of left middle finger, init encntr +C2849338|T037|PT|S60.463A|ICD10CM|Insect bite (nonvenomous) of left middle finger, initial encounter|Insect bite (nonvenomous) of left middle finger, initial encounter +C2849339|T037|AB|S60.463D|ICD10CM|Insect bite (nonvenomous) of left middle finger, subs encntr|Insect bite (nonvenomous) of left middle finger, subs encntr +C2849339|T037|PT|S60.463D|ICD10CM|Insect bite (nonvenomous) of left middle finger, subsequent encounter|Insect bite (nonvenomous) of left middle finger, subsequent encounter +C2849340|T037|AB|S60.463S|ICD10CM|Insect bite (nonvenomous) of left middle finger, sequela|Insect bite (nonvenomous) of left middle finger, sequela +C2849340|T037|PT|S60.463S|ICD10CM|Insect bite (nonvenomous) of left middle finger, sequela|Insect bite (nonvenomous) of left middle finger, sequela +C2849341|T037|AB|S60.464|ICD10CM|Insect bite (nonvenomous) of right ring finger|Insect bite (nonvenomous) of right ring finger +C2849341|T037|HT|S60.464|ICD10CM|Insect bite (nonvenomous) of right ring finger|Insect bite (nonvenomous) of right ring finger +C2849342|T037|AB|S60.464A|ICD10CM|Insect bite (nonvenomous) of right ring finger, init encntr|Insect bite (nonvenomous) of right ring finger, init encntr +C2849342|T037|PT|S60.464A|ICD10CM|Insect bite (nonvenomous) of right ring finger, initial encounter|Insect bite (nonvenomous) of right ring finger, initial encounter +C2849343|T037|AB|S60.464D|ICD10CM|Insect bite (nonvenomous) of right ring finger, subs encntr|Insect bite (nonvenomous) of right ring finger, subs encntr +C2849343|T037|PT|S60.464D|ICD10CM|Insect bite (nonvenomous) of right ring finger, subsequent encounter|Insect bite (nonvenomous) of right ring finger, subsequent encounter +C2849344|T037|AB|S60.464S|ICD10CM|Insect bite (nonvenomous) of right ring finger, sequela|Insect bite (nonvenomous) of right ring finger, sequela +C2849344|T037|PT|S60.464S|ICD10CM|Insect bite (nonvenomous) of right ring finger, sequela|Insect bite (nonvenomous) of right ring finger, sequela +C2849345|T037|AB|S60.465|ICD10CM|Insect bite (nonvenomous) of left ring finger|Insect bite (nonvenomous) of left ring finger +C2849345|T037|HT|S60.465|ICD10CM|Insect bite (nonvenomous) of left ring finger|Insect bite (nonvenomous) of left ring finger +C2849346|T037|AB|S60.465A|ICD10CM|Insect bite (nonvenomous) of left ring finger, init encntr|Insect bite (nonvenomous) of left ring finger, init encntr +C2849346|T037|PT|S60.465A|ICD10CM|Insect bite (nonvenomous) of left ring finger, initial encounter|Insect bite (nonvenomous) of left ring finger, initial encounter +C2849347|T037|AB|S60.465D|ICD10CM|Insect bite (nonvenomous) of left ring finger, subs encntr|Insect bite (nonvenomous) of left ring finger, subs encntr +C2849347|T037|PT|S60.465D|ICD10CM|Insect bite (nonvenomous) of left ring finger, subsequent encounter|Insect bite (nonvenomous) of left ring finger, subsequent encounter +C2849348|T037|AB|S60.465S|ICD10CM|Insect bite (nonvenomous) of left ring finger, sequela|Insect bite (nonvenomous) of left ring finger, sequela +C2849348|T037|PT|S60.465S|ICD10CM|Insect bite (nonvenomous) of left ring finger, sequela|Insect bite (nonvenomous) of left ring finger, sequela +C2849349|T037|AB|S60.466|ICD10CM|Insect bite (nonvenomous) of right little finger|Insect bite (nonvenomous) of right little finger +C2849349|T037|HT|S60.466|ICD10CM|Insect bite (nonvenomous) of right little finger|Insect bite (nonvenomous) of right little finger +C2849350|T037|AB|S60.466A|ICD10CM|Insect bite (nonvenomous) of right little finger, init|Insect bite (nonvenomous) of right little finger, init +C2849350|T037|PT|S60.466A|ICD10CM|Insect bite (nonvenomous) of right little finger, initial encounter|Insect bite (nonvenomous) of right little finger, initial encounter +C2849351|T037|AB|S60.466D|ICD10CM|Insect bite (nonvenomous) of right little finger, subs|Insect bite (nonvenomous) of right little finger, subs +C2849351|T037|PT|S60.466D|ICD10CM|Insect bite (nonvenomous) of right little finger, subsequent encounter|Insect bite (nonvenomous) of right little finger, subsequent encounter +C2849352|T037|AB|S60.466S|ICD10CM|Insect bite (nonvenomous) of right little finger, sequela|Insect bite (nonvenomous) of right little finger, sequela +C2849352|T037|PT|S60.466S|ICD10CM|Insect bite (nonvenomous) of right little finger, sequela|Insect bite (nonvenomous) of right little finger, sequela +C2849353|T037|AB|S60.467|ICD10CM|Insect bite (nonvenomous) of left little finger|Insect bite (nonvenomous) of left little finger +C2849353|T037|HT|S60.467|ICD10CM|Insect bite (nonvenomous) of left little finger|Insect bite (nonvenomous) of left little finger +C2849354|T037|AB|S60.467A|ICD10CM|Insect bite (nonvenomous) of left little finger, init encntr|Insect bite (nonvenomous) of left little finger, init encntr +C2849354|T037|PT|S60.467A|ICD10CM|Insect bite (nonvenomous) of left little finger, initial encounter|Insect bite (nonvenomous) of left little finger, initial encounter +C2849355|T037|AB|S60.467D|ICD10CM|Insect bite (nonvenomous) of left little finger, subs encntr|Insect bite (nonvenomous) of left little finger, subs encntr +C2849355|T037|PT|S60.467D|ICD10CM|Insect bite (nonvenomous) of left little finger, subsequent encounter|Insect bite (nonvenomous) of left little finger, subsequent encounter +C2849356|T037|AB|S60.467S|ICD10CM|Insect bite (nonvenomous) of left little finger, sequela|Insect bite (nonvenomous) of left little finger, sequela +C2849356|T037|PT|S60.467S|ICD10CM|Insect bite (nonvenomous) of left little finger, sequela|Insect bite (nonvenomous) of left little finger, sequela +C2849358|T037|AB|S60.468|ICD10CM|Insect bite (nonvenomous) of other finger|Insect bite (nonvenomous) of other finger +C2849358|T037|HT|S60.468|ICD10CM|Insect bite (nonvenomous) of other finger|Insect bite (nonvenomous) of other finger +C2849357|T037|ET|S60.468|ICD10CM|Insect bite (nonvenomous) of specified finger with unspecified laterality|Insect bite (nonvenomous) of specified finger with unspecified laterality +C2849359|T037|AB|S60.468A|ICD10CM|Insect bite (nonvenomous) of other finger, initial encounter|Insect bite (nonvenomous) of other finger, initial encounter +C2849359|T037|PT|S60.468A|ICD10CM|Insect bite (nonvenomous) of other finger, initial encounter|Insect bite (nonvenomous) of other finger, initial encounter +C2849360|T037|AB|S60.468D|ICD10CM|Insect bite (nonvenomous) of other finger, subs encntr|Insect bite (nonvenomous) of other finger, subs encntr +C2849360|T037|PT|S60.468D|ICD10CM|Insect bite (nonvenomous) of other finger, subsequent encounter|Insect bite (nonvenomous) of other finger, subsequent encounter +C2849361|T037|AB|S60.468S|ICD10CM|Insect bite (nonvenomous) of other finger, sequela|Insect bite (nonvenomous) of other finger, sequela +C2849361|T037|PT|S60.468S|ICD10CM|Insect bite (nonvenomous) of other finger, sequela|Insect bite (nonvenomous) of other finger, sequela +C2849362|T037|AB|S60.469|ICD10CM|Insect bite (nonvenomous) of unspecified finger|Insect bite (nonvenomous) of unspecified finger +C2849362|T037|HT|S60.469|ICD10CM|Insect bite (nonvenomous) of unspecified finger|Insect bite (nonvenomous) of unspecified finger +C2849363|T037|AB|S60.469A|ICD10CM|Insect bite (nonvenomous) of unspecified finger, init encntr|Insect bite (nonvenomous) of unspecified finger, init encntr +C2849363|T037|PT|S60.469A|ICD10CM|Insect bite (nonvenomous) of unspecified finger, initial encounter|Insect bite (nonvenomous) of unspecified finger, initial encounter +C2849364|T037|AB|S60.469D|ICD10CM|Insect bite (nonvenomous) of unspecified finger, subs encntr|Insect bite (nonvenomous) of unspecified finger, subs encntr +C2849364|T037|PT|S60.469D|ICD10CM|Insect bite (nonvenomous) of unspecified finger, subsequent encounter|Insect bite (nonvenomous) of unspecified finger, subsequent encounter +C2849365|T037|AB|S60.469S|ICD10CM|Insect bite (nonvenomous) of unspecified finger, sequela|Insect bite (nonvenomous) of unspecified finger, sequela +C2849365|T037|PT|S60.469S|ICD10CM|Insect bite (nonvenomous) of unspecified finger, sequela|Insect bite (nonvenomous) of unspecified finger, sequela +C2849366|T037|AB|S60.47|ICD10CM|Other superficial bite of fingers|Other superficial bite of fingers +C2849366|T037|HT|S60.47|ICD10CM|Other superficial bite of fingers|Other superficial bite of fingers +C2849367|T037|AB|S60.470|ICD10CM|Other superficial bite of right index finger|Other superficial bite of right index finger +C2849367|T037|HT|S60.470|ICD10CM|Other superficial bite of right index finger|Other superficial bite of right index finger +C2849368|T037|AB|S60.470A|ICD10CM|Other superficial bite of right index finger, init encntr|Other superficial bite of right index finger, init encntr +C2849368|T037|PT|S60.470A|ICD10CM|Other superficial bite of right index finger, initial encounter|Other superficial bite of right index finger, initial encounter +C2849369|T037|AB|S60.470D|ICD10CM|Other superficial bite of right index finger, subs encntr|Other superficial bite of right index finger, subs encntr +C2849369|T037|PT|S60.470D|ICD10CM|Other superficial bite of right index finger, subsequent encounter|Other superficial bite of right index finger, subsequent encounter +C2849370|T037|AB|S60.470S|ICD10CM|Other superficial bite of right index finger, sequela|Other superficial bite of right index finger, sequela +C2849370|T037|PT|S60.470S|ICD10CM|Other superficial bite of right index finger, sequela|Other superficial bite of right index finger, sequela +C2849371|T037|AB|S60.471|ICD10CM|Other superficial bite of left index finger|Other superficial bite of left index finger +C2849371|T037|HT|S60.471|ICD10CM|Other superficial bite of left index finger|Other superficial bite of left index finger +C2849372|T037|AB|S60.471A|ICD10CM|Other superficial bite of left index finger, init encntr|Other superficial bite of left index finger, init encntr +C2849372|T037|PT|S60.471A|ICD10CM|Other superficial bite of left index finger, initial encounter|Other superficial bite of left index finger, initial encounter +C2849373|T037|AB|S60.471D|ICD10CM|Other superficial bite of left index finger, subs encntr|Other superficial bite of left index finger, subs encntr +C2849373|T037|PT|S60.471D|ICD10CM|Other superficial bite of left index finger, subsequent encounter|Other superficial bite of left index finger, subsequent encounter +C2849374|T037|AB|S60.471S|ICD10CM|Other superficial bite of left index finger, sequela|Other superficial bite of left index finger, sequela +C2849374|T037|PT|S60.471S|ICD10CM|Other superficial bite of left index finger, sequela|Other superficial bite of left index finger, sequela +C2849375|T037|AB|S60.472|ICD10CM|Other superficial bite of right middle finger|Other superficial bite of right middle finger +C2849375|T037|HT|S60.472|ICD10CM|Other superficial bite of right middle finger|Other superficial bite of right middle finger +C2849376|T037|AB|S60.472A|ICD10CM|Other superficial bite of right middle finger, init encntr|Other superficial bite of right middle finger, init encntr +C2849376|T037|PT|S60.472A|ICD10CM|Other superficial bite of right middle finger, initial encounter|Other superficial bite of right middle finger, initial encounter +C2849377|T037|AB|S60.472D|ICD10CM|Other superficial bite of right middle finger, subs encntr|Other superficial bite of right middle finger, subs encntr +C2849377|T037|PT|S60.472D|ICD10CM|Other superficial bite of right middle finger, subsequent encounter|Other superficial bite of right middle finger, subsequent encounter +C2849378|T037|AB|S60.472S|ICD10CM|Other superficial bite of right middle finger, sequela|Other superficial bite of right middle finger, sequela +C2849378|T037|PT|S60.472S|ICD10CM|Other superficial bite of right middle finger, sequela|Other superficial bite of right middle finger, sequela +C2849379|T037|AB|S60.473|ICD10CM|Other superficial bite of left middle finger|Other superficial bite of left middle finger +C2849379|T037|HT|S60.473|ICD10CM|Other superficial bite of left middle finger|Other superficial bite of left middle finger +C2849380|T037|AB|S60.473A|ICD10CM|Other superficial bite of left middle finger, init encntr|Other superficial bite of left middle finger, init encntr +C2849380|T037|PT|S60.473A|ICD10CM|Other superficial bite of left middle finger, initial encounter|Other superficial bite of left middle finger, initial encounter +C2849381|T037|AB|S60.473D|ICD10CM|Other superficial bite of left middle finger, subs encntr|Other superficial bite of left middle finger, subs encntr +C2849381|T037|PT|S60.473D|ICD10CM|Other superficial bite of left middle finger, subsequent encounter|Other superficial bite of left middle finger, subsequent encounter +C2849382|T037|AB|S60.473S|ICD10CM|Other superficial bite of left middle finger, sequela|Other superficial bite of left middle finger, sequela +C2849382|T037|PT|S60.473S|ICD10CM|Other superficial bite of left middle finger, sequela|Other superficial bite of left middle finger, sequela +C2849383|T037|AB|S60.474|ICD10CM|Other superficial bite of right ring finger|Other superficial bite of right ring finger +C2849383|T037|HT|S60.474|ICD10CM|Other superficial bite of right ring finger|Other superficial bite of right ring finger +C2849384|T037|AB|S60.474A|ICD10CM|Other superficial bite of right ring finger, init encntr|Other superficial bite of right ring finger, init encntr +C2849384|T037|PT|S60.474A|ICD10CM|Other superficial bite of right ring finger, initial encounter|Other superficial bite of right ring finger, initial encounter +C2849385|T037|AB|S60.474D|ICD10CM|Other superficial bite of right ring finger, subs encntr|Other superficial bite of right ring finger, subs encntr +C2849385|T037|PT|S60.474D|ICD10CM|Other superficial bite of right ring finger, subsequent encounter|Other superficial bite of right ring finger, subsequent encounter +C2849386|T037|AB|S60.474S|ICD10CM|Other superficial bite of right ring finger, sequela|Other superficial bite of right ring finger, sequela +C2849386|T037|PT|S60.474S|ICD10CM|Other superficial bite of right ring finger, sequela|Other superficial bite of right ring finger, sequela +C2849387|T037|AB|S60.475|ICD10CM|Other superficial bite of left ring finger|Other superficial bite of left ring finger +C2849387|T037|HT|S60.475|ICD10CM|Other superficial bite of left ring finger|Other superficial bite of left ring finger +C2849388|T037|AB|S60.475A|ICD10CM|Other superficial bite of left ring finger, init encntr|Other superficial bite of left ring finger, init encntr +C2849388|T037|PT|S60.475A|ICD10CM|Other superficial bite of left ring finger, initial encounter|Other superficial bite of left ring finger, initial encounter +C2849389|T037|AB|S60.475D|ICD10CM|Other superficial bite of left ring finger, subs encntr|Other superficial bite of left ring finger, subs encntr +C2849389|T037|PT|S60.475D|ICD10CM|Other superficial bite of left ring finger, subsequent encounter|Other superficial bite of left ring finger, subsequent encounter +C2849390|T037|AB|S60.475S|ICD10CM|Other superficial bite of left ring finger, sequela|Other superficial bite of left ring finger, sequela +C2849390|T037|PT|S60.475S|ICD10CM|Other superficial bite of left ring finger, sequela|Other superficial bite of left ring finger, sequela +C2849391|T037|AB|S60.476|ICD10CM|Other superficial bite of right little finger|Other superficial bite of right little finger +C2849391|T037|HT|S60.476|ICD10CM|Other superficial bite of right little finger|Other superficial bite of right little finger +C2849392|T037|AB|S60.476A|ICD10CM|Other superficial bite of right little finger, init encntr|Other superficial bite of right little finger, init encntr +C2849392|T037|PT|S60.476A|ICD10CM|Other superficial bite of right little finger, initial encounter|Other superficial bite of right little finger, initial encounter +C2849393|T037|AB|S60.476D|ICD10CM|Other superficial bite of right little finger, subs encntr|Other superficial bite of right little finger, subs encntr +C2849393|T037|PT|S60.476D|ICD10CM|Other superficial bite of right little finger, subsequent encounter|Other superficial bite of right little finger, subsequent encounter +C2849394|T037|AB|S60.476S|ICD10CM|Other superficial bite of right little finger, sequela|Other superficial bite of right little finger, sequela +C2849394|T037|PT|S60.476S|ICD10CM|Other superficial bite of right little finger, sequela|Other superficial bite of right little finger, sequela +C2849395|T037|AB|S60.477|ICD10CM|Other superficial bite of left little finger|Other superficial bite of left little finger +C2849395|T037|HT|S60.477|ICD10CM|Other superficial bite of left little finger|Other superficial bite of left little finger +C2849396|T037|AB|S60.477A|ICD10CM|Other superficial bite of left little finger, init encntr|Other superficial bite of left little finger, init encntr +C2849396|T037|PT|S60.477A|ICD10CM|Other superficial bite of left little finger, initial encounter|Other superficial bite of left little finger, initial encounter +C2849397|T037|AB|S60.477D|ICD10CM|Other superficial bite of left little finger, subs encntr|Other superficial bite of left little finger, subs encntr +C2849397|T037|PT|S60.477D|ICD10CM|Other superficial bite of left little finger, subsequent encounter|Other superficial bite of left little finger, subsequent encounter +C2849398|T037|AB|S60.477S|ICD10CM|Other superficial bite of left little finger, sequela|Other superficial bite of left little finger, sequela +C2849398|T037|PT|S60.477S|ICD10CM|Other superficial bite of left little finger, sequela|Other superficial bite of left little finger, sequela +C2849400|T037|AB|S60.478|ICD10CM|Other superficial bite of other finger|Other superficial bite of other finger +C2849400|T037|HT|S60.478|ICD10CM|Other superficial bite of other finger|Other superficial bite of other finger +C2849399|T037|ET|S60.478|ICD10CM|Other superficial bite of specified finger with unspecified laterality|Other superficial bite of specified finger with unspecified laterality +C2849401|T037|AB|S60.478A|ICD10CM|Other superficial bite of other finger, initial encounter|Other superficial bite of other finger, initial encounter +C2849401|T037|PT|S60.478A|ICD10CM|Other superficial bite of other finger, initial encounter|Other superficial bite of other finger, initial encounter +C2849402|T037|AB|S60.478D|ICD10CM|Other superficial bite of other finger, subsequent encounter|Other superficial bite of other finger, subsequent encounter +C2849402|T037|PT|S60.478D|ICD10CM|Other superficial bite of other finger, subsequent encounter|Other superficial bite of other finger, subsequent encounter +C2849403|T037|AB|S60.478S|ICD10CM|Other superficial bite of other finger, sequela|Other superficial bite of other finger, sequela +C2849403|T037|PT|S60.478S|ICD10CM|Other superficial bite of other finger, sequela|Other superficial bite of other finger, sequela +C2849404|T037|AB|S60.479|ICD10CM|Other superficial bite of unspecified finger|Other superficial bite of unspecified finger +C2849404|T037|HT|S60.479|ICD10CM|Other superficial bite of unspecified finger|Other superficial bite of unspecified finger +C2849405|T037|AB|S60.479A|ICD10CM|Other superficial bite of unspecified finger, init encntr|Other superficial bite of unspecified finger, init encntr +C2849405|T037|PT|S60.479A|ICD10CM|Other superficial bite of unspecified finger, initial encounter|Other superficial bite of unspecified finger, initial encounter +C2849406|T037|AB|S60.479D|ICD10CM|Other superficial bite of unspecified finger, subs encntr|Other superficial bite of unspecified finger, subs encntr +C2849406|T037|PT|S60.479D|ICD10CM|Other superficial bite of unspecified finger, subsequent encounter|Other superficial bite of unspecified finger, subsequent encounter +C2849407|T037|AB|S60.479S|ICD10CM|Other superficial bite of unspecified finger, sequela|Other superficial bite of unspecified finger, sequela +C2849407|T037|PT|S60.479S|ICD10CM|Other superficial bite of unspecified finger, sequela|Other superficial bite of unspecified finger, sequela +C2849408|T037|AB|S60.5|ICD10CM|Other superficial injuries of hand|Other superficial injuries of hand +C2849408|T037|HT|S60.5|ICD10CM|Other superficial injuries of hand|Other superficial injuries of hand +C0560957|T037|HT|S60.51|ICD10CM|Abrasion of hand|Abrasion of hand +C0560957|T037|AB|S60.51|ICD10CM|Abrasion of hand|Abrasion of hand +C2041976|T037|AB|S60.511|ICD10CM|Abrasion of right hand|Abrasion of right hand +C2041976|T037|HT|S60.511|ICD10CM|Abrasion of right hand|Abrasion of right hand +C2849409|T037|PT|S60.511A|ICD10CM|Abrasion of right hand, initial encounter|Abrasion of right hand, initial encounter +C2849409|T037|AB|S60.511A|ICD10CM|Abrasion of right hand, initial encounter|Abrasion of right hand, initial encounter +C2849410|T037|PT|S60.511D|ICD10CM|Abrasion of right hand, subsequent encounter|Abrasion of right hand, subsequent encounter +C2849410|T037|AB|S60.511D|ICD10CM|Abrasion of right hand, subsequent encounter|Abrasion of right hand, subsequent encounter +C2849411|T037|PT|S60.511S|ICD10CM|Abrasion of right hand, sequela|Abrasion of right hand, sequela +C2849411|T037|AB|S60.511S|ICD10CM|Abrasion of right hand, sequela|Abrasion of right hand, sequela +C2004761|T037|AB|S60.512|ICD10CM|Abrasion of left hand|Abrasion of left hand +C2004761|T037|HT|S60.512|ICD10CM|Abrasion of left hand|Abrasion of left hand +C2849412|T037|PT|S60.512A|ICD10CM|Abrasion of left hand, initial encounter|Abrasion of left hand, initial encounter +C2849412|T037|AB|S60.512A|ICD10CM|Abrasion of left hand, initial encounter|Abrasion of left hand, initial encounter +C2849413|T037|PT|S60.512D|ICD10CM|Abrasion of left hand, subsequent encounter|Abrasion of left hand, subsequent encounter +C2849413|T037|AB|S60.512D|ICD10CM|Abrasion of left hand, subsequent encounter|Abrasion of left hand, subsequent encounter +C2849414|T037|PT|S60.512S|ICD10CM|Abrasion of left hand, sequela|Abrasion of left hand, sequela +C2849414|T037|AB|S60.512S|ICD10CM|Abrasion of left hand, sequela|Abrasion of left hand, sequela +C2849415|T037|AB|S60.519|ICD10CM|Abrasion of unspecified hand|Abrasion of unspecified hand +C2849415|T037|HT|S60.519|ICD10CM|Abrasion of unspecified hand|Abrasion of unspecified hand +C2849416|T037|PT|S60.519A|ICD10CM|Abrasion of unspecified hand, initial encounter|Abrasion of unspecified hand, initial encounter +C2849416|T037|AB|S60.519A|ICD10CM|Abrasion of unspecified hand, initial encounter|Abrasion of unspecified hand, initial encounter +C2849417|T037|PT|S60.519D|ICD10CM|Abrasion of unspecified hand, subsequent encounter|Abrasion of unspecified hand, subsequent encounter +C2849417|T037|AB|S60.519D|ICD10CM|Abrasion of unspecified hand, subsequent encounter|Abrasion of unspecified hand, subsequent encounter +C2849418|T037|PT|S60.519S|ICD10CM|Abrasion of unspecified hand, sequela|Abrasion of unspecified hand, sequela +C2849418|T037|AB|S60.519S|ICD10CM|Abrasion of unspecified hand, sequela|Abrasion of unspecified hand, sequela +C2849419|T037|AB|S60.52|ICD10CM|Blister (nonthermal) of hand|Blister (nonthermal) of hand +C2849419|T037|HT|S60.52|ICD10CM|Blister (nonthermal) of hand|Blister (nonthermal) of hand +C2849420|T037|AB|S60.521|ICD10CM|Blister (nonthermal) of right hand|Blister (nonthermal) of right hand +C2849420|T037|HT|S60.521|ICD10CM|Blister (nonthermal) of right hand|Blister (nonthermal) of right hand +C2849421|T037|AB|S60.521A|ICD10CM|Blister (nonthermal) of right hand, initial encounter|Blister (nonthermal) of right hand, initial encounter +C2849421|T037|PT|S60.521A|ICD10CM|Blister (nonthermal) of right hand, initial encounter|Blister (nonthermal) of right hand, initial encounter +C2849422|T037|AB|S60.521D|ICD10CM|Blister (nonthermal) of right hand, subsequent encounter|Blister (nonthermal) of right hand, subsequent encounter +C2849422|T037|PT|S60.521D|ICD10CM|Blister (nonthermal) of right hand, subsequent encounter|Blister (nonthermal) of right hand, subsequent encounter +C2849423|T037|AB|S60.521S|ICD10CM|Blister (nonthermal) of right hand, sequela|Blister (nonthermal) of right hand, sequela +C2849423|T037|PT|S60.521S|ICD10CM|Blister (nonthermal) of right hand, sequela|Blister (nonthermal) of right hand, sequela +C2849424|T037|AB|S60.522|ICD10CM|Blister (nonthermal) of left hand|Blister (nonthermal) of left hand +C2849424|T037|HT|S60.522|ICD10CM|Blister (nonthermal) of left hand|Blister (nonthermal) of left hand +C2849425|T037|AB|S60.522A|ICD10CM|Blister (nonthermal) of left hand, initial encounter|Blister (nonthermal) of left hand, initial encounter +C2849425|T037|PT|S60.522A|ICD10CM|Blister (nonthermal) of left hand, initial encounter|Blister (nonthermal) of left hand, initial encounter +C2849426|T037|AB|S60.522D|ICD10CM|Blister (nonthermal) of left hand, subsequent encounter|Blister (nonthermal) of left hand, subsequent encounter +C2849426|T037|PT|S60.522D|ICD10CM|Blister (nonthermal) of left hand, subsequent encounter|Blister (nonthermal) of left hand, subsequent encounter +C2849427|T037|AB|S60.522S|ICD10CM|Blister (nonthermal) of left hand, sequela|Blister (nonthermal) of left hand, sequela +C2849427|T037|PT|S60.522S|ICD10CM|Blister (nonthermal) of left hand, sequela|Blister (nonthermal) of left hand, sequela +C2849428|T037|AB|S60.529|ICD10CM|Blister (nonthermal) of unspecified hand|Blister (nonthermal) of unspecified hand +C2849428|T037|HT|S60.529|ICD10CM|Blister (nonthermal) of unspecified hand|Blister (nonthermal) of unspecified hand +C2849429|T037|AB|S60.529A|ICD10CM|Blister (nonthermal) of unspecified hand, initial encounter|Blister (nonthermal) of unspecified hand, initial encounter +C2849429|T037|PT|S60.529A|ICD10CM|Blister (nonthermal) of unspecified hand, initial encounter|Blister (nonthermal) of unspecified hand, initial encounter +C2849430|T037|AB|S60.529D|ICD10CM|Blister (nonthermal) of unspecified hand, subs encntr|Blister (nonthermal) of unspecified hand, subs encntr +C2849430|T037|PT|S60.529D|ICD10CM|Blister (nonthermal) of unspecified hand, subsequent encounter|Blister (nonthermal) of unspecified hand, subsequent encounter +C2849431|T037|AB|S60.529S|ICD10CM|Blister (nonthermal) of unspecified hand, sequela|Blister (nonthermal) of unspecified hand, sequela +C2849431|T037|PT|S60.529S|ICD10CM|Blister (nonthermal) of unspecified hand, sequela|Blister (nonthermal) of unspecified hand, sequela +C2849432|T037|HT|S60.54|ICD10CM|External constriction of hand|External constriction of hand +C2849432|T037|AB|S60.54|ICD10CM|External constriction of hand|External constriction of hand +C2849433|T037|AB|S60.541|ICD10CM|External constriction of right hand|External constriction of right hand +C2849433|T037|HT|S60.541|ICD10CM|External constriction of right hand|External constriction of right hand +C2849434|T037|AB|S60.541A|ICD10CM|External constriction of right hand, initial encounter|External constriction of right hand, initial encounter +C2849434|T037|PT|S60.541A|ICD10CM|External constriction of right hand, initial encounter|External constriction of right hand, initial encounter +C2849435|T037|AB|S60.541D|ICD10CM|External constriction of right hand, subsequent encounter|External constriction of right hand, subsequent encounter +C2849435|T037|PT|S60.541D|ICD10CM|External constriction of right hand, subsequent encounter|External constriction of right hand, subsequent encounter +C2849436|T037|AB|S60.541S|ICD10CM|External constriction of right hand, sequela|External constriction of right hand, sequela +C2849436|T037|PT|S60.541S|ICD10CM|External constriction of right hand, sequela|External constriction of right hand, sequela +C2849437|T037|AB|S60.542|ICD10CM|External constriction of left hand|External constriction of left hand +C2849437|T037|HT|S60.542|ICD10CM|External constriction of left hand|External constriction of left hand +C2849438|T037|AB|S60.542A|ICD10CM|External constriction of left hand, initial encounter|External constriction of left hand, initial encounter +C2849438|T037|PT|S60.542A|ICD10CM|External constriction of left hand, initial encounter|External constriction of left hand, initial encounter +C2849439|T037|AB|S60.542D|ICD10CM|External constriction of left hand, subsequent encounter|External constriction of left hand, subsequent encounter +C2849439|T037|PT|S60.542D|ICD10CM|External constriction of left hand, subsequent encounter|External constriction of left hand, subsequent encounter +C2849440|T037|AB|S60.542S|ICD10CM|External constriction of left hand, sequela|External constriction of left hand, sequela +C2849440|T037|PT|S60.542S|ICD10CM|External constriction of left hand, sequela|External constriction of left hand, sequela +C2849441|T037|AB|S60.549|ICD10CM|External constriction of unspecified hand|External constriction of unspecified hand +C2849441|T037|HT|S60.549|ICD10CM|External constriction of unspecified hand|External constriction of unspecified hand +C2849442|T037|AB|S60.549A|ICD10CM|External constriction of unspecified hand, initial encounter|External constriction of unspecified hand, initial encounter +C2849442|T037|PT|S60.549A|ICD10CM|External constriction of unspecified hand, initial encounter|External constriction of unspecified hand, initial encounter +C2849443|T037|AB|S60.549D|ICD10CM|External constriction of unspecified hand, subs encntr|External constriction of unspecified hand, subs encntr +C2849443|T037|PT|S60.549D|ICD10CM|External constriction of unspecified hand, subsequent encounter|External constriction of unspecified hand, subsequent encounter +C2849444|T037|AB|S60.549S|ICD10CM|External constriction of unspecified hand, sequela|External constriction of unspecified hand, sequela +C2849444|T037|PT|S60.549S|ICD10CM|External constriction of unspecified hand, sequela|External constriction of unspecified hand, sequela +C0564875|T037|ET|S60.55|ICD10CM|Splinter in the hand|Splinter in the hand +C2037284|T037|AB|S60.55|ICD10CM|Superficial foreign body of hand|Superficial foreign body of hand +C2037284|T037|HT|S60.55|ICD10CM|Superficial foreign body of hand|Superficial foreign body of hand +C2849445|T037|AB|S60.551|ICD10CM|Superficial foreign body of right hand|Superficial foreign body of right hand +C2849445|T037|HT|S60.551|ICD10CM|Superficial foreign body of right hand|Superficial foreign body of right hand +C2849446|T037|AB|S60.551A|ICD10CM|Superficial foreign body of right hand, initial encounter|Superficial foreign body of right hand, initial encounter +C2849446|T037|PT|S60.551A|ICD10CM|Superficial foreign body of right hand, initial encounter|Superficial foreign body of right hand, initial encounter +C2849447|T037|AB|S60.551D|ICD10CM|Superficial foreign body of right hand, subsequent encounter|Superficial foreign body of right hand, subsequent encounter +C2849447|T037|PT|S60.551D|ICD10CM|Superficial foreign body of right hand, subsequent encounter|Superficial foreign body of right hand, subsequent encounter +C2849448|T037|AB|S60.551S|ICD10CM|Superficial foreign body of right hand, sequela|Superficial foreign body of right hand, sequela +C2849448|T037|PT|S60.551S|ICD10CM|Superficial foreign body of right hand, sequela|Superficial foreign body of right hand, sequela +C2849449|T037|AB|S60.552|ICD10CM|Superficial foreign body of left hand|Superficial foreign body of left hand +C2849449|T037|HT|S60.552|ICD10CM|Superficial foreign body of left hand|Superficial foreign body of left hand +C2849450|T037|AB|S60.552A|ICD10CM|Superficial foreign body of left hand, initial encounter|Superficial foreign body of left hand, initial encounter +C2849450|T037|PT|S60.552A|ICD10CM|Superficial foreign body of left hand, initial encounter|Superficial foreign body of left hand, initial encounter +C2849451|T037|AB|S60.552D|ICD10CM|Superficial foreign body of left hand, subsequent encounter|Superficial foreign body of left hand, subsequent encounter +C2849451|T037|PT|S60.552D|ICD10CM|Superficial foreign body of left hand, subsequent encounter|Superficial foreign body of left hand, subsequent encounter +C2849452|T037|AB|S60.552S|ICD10CM|Superficial foreign body of left hand, sequela|Superficial foreign body of left hand, sequela +C2849452|T037|PT|S60.552S|ICD10CM|Superficial foreign body of left hand, sequela|Superficial foreign body of left hand, sequela +C2849453|T037|AB|S60.559|ICD10CM|Superficial foreign body of unspecified hand|Superficial foreign body of unspecified hand +C2849453|T037|HT|S60.559|ICD10CM|Superficial foreign body of unspecified hand|Superficial foreign body of unspecified hand +C2849454|T037|AB|S60.559A|ICD10CM|Superficial foreign body of unspecified hand, init encntr|Superficial foreign body of unspecified hand, init encntr +C2849454|T037|PT|S60.559A|ICD10CM|Superficial foreign body of unspecified hand, initial encounter|Superficial foreign body of unspecified hand, initial encounter +C2849455|T037|AB|S60.559D|ICD10CM|Superficial foreign body of unspecified hand, subs encntr|Superficial foreign body of unspecified hand, subs encntr +C2849455|T037|PT|S60.559D|ICD10CM|Superficial foreign body of unspecified hand, subsequent encounter|Superficial foreign body of unspecified hand, subsequent encounter +C2849456|T037|AB|S60.559S|ICD10CM|Superficial foreign body of unspecified hand, sequela|Superficial foreign body of unspecified hand, sequela +C2849456|T037|PT|S60.559S|ICD10CM|Superficial foreign body of unspecified hand, sequela|Superficial foreign body of unspecified hand, sequela +C0564874|T037|AB|S60.56|ICD10CM|Insect bite (nonvenomous) of hand|Insect bite (nonvenomous) of hand +C0564874|T037|HT|S60.56|ICD10CM|Insect bite (nonvenomous) of hand|Insect bite (nonvenomous) of hand +C2231578|T037|AB|S60.561|ICD10CM|Insect bite (nonvenomous) of right hand|Insect bite (nonvenomous) of right hand +C2231578|T037|HT|S60.561|ICD10CM|Insect bite (nonvenomous) of right hand|Insect bite (nonvenomous) of right hand +C2849457|T037|AB|S60.561A|ICD10CM|Insect bite (nonvenomous) of right hand, initial encounter|Insect bite (nonvenomous) of right hand, initial encounter +C2849457|T037|PT|S60.561A|ICD10CM|Insect bite (nonvenomous) of right hand, initial encounter|Insect bite (nonvenomous) of right hand, initial encounter +C2849458|T037|AB|S60.561D|ICD10CM|Insect bite (nonvenomous) of right hand, subs encntr|Insect bite (nonvenomous) of right hand, subs encntr +C2849458|T037|PT|S60.561D|ICD10CM|Insect bite (nonvenomous) of right hand, subsequent encounter|Insect bite (nonvenomous) of right hand, subsequent encounter +C2849459|T037|AB|S60.561S|ICD10CM|Insect bite (nonvenomous) of right hand, sequela|Insect bite (nonvenomous) of right hand, sequela +C2849459|T037|PT|S60.561S|ICD10CM|Insect bite (nonvenomous) of right hand, sequela|Insect bite (nonvenomous) of right hand, sequela +C2231579|T037|AB|S60.562|ICD10CM|Insect bite (nonvenomous) of left hand|Insect bite (nonvenomous) of left hand +C2231579|T037|HT|S60.562|ICD10CM|Insect bite (nonvenomous) of left hand|Insect bite (nonvenomous) of left hand +C2849460|T037|AB|S60.562A|ICD10CM|Insect bite (nonvenomous) of left hand, initial encounter|Insect bite (nonvenomous) of left hand, initial encounter +C2849460|T037|PT|S60.562A|ICD10CM|Insect bite (nonvenomous) of left hand, initial encounter|Insect bite (nonvenomous) of left hand, initial encounter +C2849461|T037|AB|S60.562D|ICD10CM|Insect bite (nonvenomous) of left hand, subsequent encounter|Insect bite (nonvenomous) of left hand, subsequent encounter +C2849461|T037|PT|S60.562D|ICD10CM|Insect bite (nonvenomous) of left hand, subsequent encounter|Insect bite (nonvenomous) of left hand, subsequent encounter +C2849462|T037|AB|S60.562S|ICD10CM|Insect bite (nonvenomous) of left hand, sequela|Insect bite (nonvenomous) of left hand, sequela +C2849462|T037|PT|S60.562S|ICD10CM|Insect bite (nonvenomous) of left hand, sequela|Insect bite (nonvenomous) of left hand, sequela +C2849463|T037|AB|S60.569|ICD10CM|Insect bite (nonvenomous) of unspecified hand|Insect bite (nonvenomous) of unspecified hand +C2849463|T037|HT|S60.569|ICD10CM|Insect bite (nonvenomous) of unspecified hand|Insect bite (nonvenomous) of unspecified hand +C2849464|T037|AB|S60.569A|ICD10CM|Insect bite (nonvenomous) of unspecified hand, init encntr|Insect bite (nonvenomous) of unspecified hand, init encntr +C2849464|T037|PT|S60.569A|ICD10CM|Insect bite (nonvenomous) of unspecified hand, initial encounter|Insect bite (nonvenomous) of unspecified hand, initial encounter +C2849465|T037|AB|S60.569D|ICD10CM|Insect bite (nonvenomous) of unspecified hand, subs encntr|Insect bite (nonvenomous) of unspecified hand, subs encntr +C2849465|T037|PT|S60.569D|ICD10CM|Insect bite (nonvenomous) of unspecified hand, subsequent encounter|Insect bite (nonvenomous) of unspecified hand, subsequent encounter +C2849466|T037|AB|S60.569S|ICD10CM|Insect bite (nonvenomous) of unspecified hand, sequela|Insect bite (nonvenomous) of unspecified hand, sequela +C2849466|T037|PT|S60.569S|ICD10CM|Insect bite (nonvenomous) of unspecified hand, sequela|Insect bite (nonvenomous) of unspecified hand, sequela +C2849467|T037|AB|S60.57|ICD10CM|Other superficial bite of hand|Other superficial bite of hand +C2849467|T037|HT|S60.57|ICD10CM|Other superficial bite of hand|Other superficial bite of hand +C2849468|T037|AB|S60.571|ICD10CM|Other superficial bite of hand of right hand|Other superficial bite of hand of right hand +C2849468|T037|HT|S60.571|ICD10CM|Other superficial bite of hand of right hand|Other superficial bite of hand of right hand +C2849469|T037|AB|S60.571A|ICD10CM|Other superficial bite of hand of right hand, init encntr|Other superficial bite of hand of right hand, init encntr +C2849469|T037|PT|S60.571A|ICD10CM|Other superficial bite of hand of right hand, initial encounter|Other superficial bite of hand of right hand, initial encounter +C2849470|T037|AB|S60.571D|ICD10CM|Other superficial bite of hand of right hand, subs encntr|Other superficial bite of hand of right hand, subs encntr +C2849470|T037|PT|S60.571D|ICD10CM|Other superficial bite of hand of right hand, subsequent encounter|Other superficial bite of hand of right hand, subsequent encounter +C2849471|T037|AB|S60.571S|ICD10CM|Other superficial bite of hand of right hand, sequela|Other superficial bite of hand of right hand, sequela +C2849471|T037|PT|S60.571S|ICD10CM|Other superficial bite of hand of right hand, sequela|Other superficial bite of hand of right hand, sequela +C2849472|T037|AB|S60.572|ICD10CM|Other superficial bite of hand of left hand|Other superficial bite of hand of left hand +C2849472|T037|HT|S60.572|ICD10CM|Other superficial bite of hand of left hand|Other superficial bite of hand of left hand +C2849473|T037|AB|S60.572A|ICD10CM|Other superficial bite of hand of left hand, init encntr|Other superficial bite of hand of left hand, init encntr +C2849473|T037|PT|S60.572A|ICD10CM|Other superficial bite of hand of left hand, initial encounter|Other superficial bite of hand of left hand, initial encounter +C2849474|T037|AB|S60.572D|ICD10CM|Other superficial bite of hand of left hand, subs encntr|Other superficial bite of hand of left hand, subs encntr +C2849474|T037|PT|S60.572D|ICD10CM|Other superficial bite of hand of left hand, subsequent encounter|Other superficial bite of hand of left hand, subsequent encounter +C2849475|T037|AB|S60.572S|ICD10CM|Other superficial bite of hand of left hand, sequela|Other superficial bite of hand of left hand, sequela +C2849475|T037|PT|S60.572S|ICD10CM|Other superficial bite of hand of left hand, sequela|Other superficial bite of hand of left hand, sequela +C2849476|T037|AB|S60.579|ICD10CM|Other superficial bite of hand of unspecified hand|Other superficial bite of hand of unspecified hand +C2849476|T037|HT|S60.579|ICD10CM|Other superficial bite of hand of unspecified hand|Other superficial bite of hand of unspecified hand +C2849477|T037|AB|S60.579A|ICD10CM|Other superficial bite of hand of unsp hand, init encntr|Other superficial bite of hand of unsp hand, init encntr +C2849477|T037|PT|S60.579A|ICD10CM|Other superficial bite of hand of unspecified hand, initial encounter|Other superficial bite of hand of unspecified hand, initial encounter +C2849478|T037|AB|S60.579D|ICD10CM|Other superficial bite of hand of unsp hand, subs encntr|Other superficial bite of hand of unsp hand, subs encntr +C2849478|T037|PT|S60.579D|ICD10CM|Other superficial bite of hand of unspecified hand, subsequent encounter|Other superficial bite of hand of unspecified hand, subsequent encounter +C2849479|T037|AB|S60.579S|ICD10CM|Other superficial bite of hand of unspecified hand, sequela|Other superficial bite of hand of unspecified hand, sequela +C2849479|T037|PT|S60.579S|ICD10CM|Other superficial bite of hand of unspecified hand, sequela|Other superficial bite of hand of unspecified hand, sequela +C0451962|T037|PT|S60.7|ICD10|Multiple superficial injuries of wrist and hand|Multiple superficial injuries of wrist and hand +C2849480|T037|AB|S60.8|ICD10CM|Other superficial injuries of wrist|Other superficial injuries of wrist +C2849480|T037|HT|S60.8|ICD10CM|Other superficial injuries of wrist|Other superficial injuries of wrist +C0495895|T037|PT|S60.8|ICD10|Other superficial injuries of wrist and hand|Other superficial injuries of wrist and hand +C0560956|T037|HT|S60.81|ICD10CM|Abrasion of wrist|Abrasion of wrist +C0560956|T037|AB|S60.81|ICD10CM|Abrasion of wrist|Abrasion of wrist +C2042005|T037|AB|S60.811|ICD10CM|Abrasion of right wrist|Abrasion of right wrist +C2042005|T037|HT|S60.811|ICD10CM|Abrasion of right wrist|Abrasion of right wrist +C2849481|T037|PT|S60.811A|ICD10CM|Abrasion of right wrist, initial encounter|Abrasion of right wrist, initial encounter +C2849481|T037|AB|S60.811A|ICD10CM|Abrasion of right wrist, initial encounter|Abrasion of right wrist, initial encounter +C2849482|T037|PT|S60.811D|ICD10CM|Abrasion of right wrist, subsequent encounter|Abrasion of right wrist, subsequent encounter +C2849482|T037|AB|S60.811D|ICD10CM|Abrasion of right wrist, subsequent encounter|Abrasion of right wrist, subsequent encounter +C2849483|T037|PT|S60.811S|ICD10CM|Abrasion of right wrist, sequela|Abrasion of right wrist, sequela +C2849483|T037|AB|S60.811S|ICD10CM|Abrasion of right wrist, sequela|Abrasion of right wrist, sequela +C2004790|T037|AB|S60.812|ICD10CM|Abrasion of left wrist|Abrasion of left wrist +C2004790|T037|HT|S60.812|ICD10CM|Abrasion of left wrist|Abrasion of left wrist +C2849484|T037|PT|S60.812A|ICD10CM|Abrasion of left wrist, initial encounter|Abrasion of left wrist, initial encounter +C2849484|T037|AB|S60.812A|ICD10CM|Abrasion of left wrist, initial encounter|Abrasion of left wrist, initial encounter +C2849485|T037|PT|S60.812D|ICD10CM|Abrasion of left wrist, subsequent encounter|Abrasion of left wrist, subsequent encounter +C2849485|T037|AB|S60.812D|ICD10CM|Abrasion of left wrist, subsequent encounter|Abrasion of left wrist, subsequent encounter +C2849486|T037|PT|S60.812S|ICD10CM|Abrasion of left wrist, sequela|Abrasion of left wrist, sequela +C2849486|T037|AB|S60.812S|ICD10CM|Abrasion of left wrist, sequela|Abrasion of left wrist, sequela +C2849487|T037|AB|S60.819|ICD10CM|Abrasion of unspecified wrist|Abrasion of unspecified wrist +C2849487|T037|HT|S60.819|ICD10CM|Abrasion of unspecified wrist|Abrasion of unspecified wrist +C2849488|T037|PT|S60.819A|ICD10CM|Abrasion of unspecified wrist, initial encounter|Abrasion of unspecified wrist, initial encounter +C2849488|T037|AB|S60.819A|ICD10CM|Abrasion of unspecified wrist, initial encounter|Abrasion of unspecified wrist, initial encounter +C2849489|T037|PT|S60.819D|ICD10CM|Abrasion of unspecified wrist, subsequent encounter|Abrasion of unspecified wrist, subsequent encounter +C2849489|T037|AB|S60.819D|ICD10CM|Abrasion of unspecified wrist, subsequent encounter|Abrasion of unspecified wrist, subsequent encounter +C2849490|T037|PT|S60.819S|ICD10CM|Abrasion of unspecified wrist, sequela|Abrasion of unspecified wrist, sequela +C2849490|T037|AB|S60.819S|ICD10CM|Abrasion of unspecified wrist, sequela|Abrasion of unspecified wrist, sequela +C2849491|T037|AB|S60.82|ICD10CM|Blister (nonthermal) of wrist|Blister (nonthermal) of wrist +C2849491|T037|HT|S60.82|ICD10CM|Blister (nonthermal) of wrist|Blister (nonthermal) of wrist +C2849492|T037|AB|S60.821|ICD10CM|Blister (nonthermal) of right wrist|Blister (nonthermal) of right wrist +C2849492|T037|HT|S60.821|ICD10CM|Blister (nonthermal) of right wrist|Blister (nonthermal) of right wrist +C2849493|T037|AB|S60.821A|ICD10CM|Blister (nonthermal) of right wrist, initial encounter|Blister (nonthermal) of right wrist, initial encounter +C2849493|T037|PT|S60.821A|ICD10CM|Blister (nonthermal) of right wrist, initial encounter|Blister (nonthermal) of right wrist, initial encounter +C2849494|T037|AB|S60.821D|ICD10CM|Blister (nonthermal) of right wrist, subsequent encounter|Blister (nonthermal) of right wrist, subsequent encounter +C2849494|T037|PT|S60.821D|ICD10CM|Blister (nonthermal) of right wrist, subsequent encounter|Blister (nonthermal) of right wrist, subsequent encounter +C2849495|T037|AB|S60.821S|ICD10CM|Blister (nonthermal) of right wrist, sequela|Blister (nonthermal) of right wrist, sequela +C2849495|T037|PT|S60.821S|ICD10CM|Blister (nonthermal) of right wrist, sequela|Blister (nonthermal) of right wrist, sequela +C2849496|T037|AB|S60.822|ICD10CM|Blister (nonthermal) of left wrist|Blister (nonthermal) of left wrist +C2849496|T037|HT|S60.822|ICD10CM|Blister (nonthermal) of left wrist|Blister (nonthermal) of left wrist +C2849497|T037|AB|S60.822A|ICD10CM|Blister (nonthermal) of left wrist, initial encounter|Blister (nonthermal) of left wrist, initial encounter +C2849497|T037|PT|S60.822A|ICD10CM|Blister (nonthermal) of left wrist, initial encounter|Blister (nonthermal) of left wrist, initial encounter +C2849498|T037|AB|S60.822D|ICD10CM|Blister (nonthermal) of left wrist, subsequent encounter|Blister (nonthermal) of left wrist, subsequent encounter +C2849498|T037|PT|S60.822D|ICD10CM|Blister (nonthermal) of left wrist, subsequent encounter|Blister (nonthermal) of left wrist, subsequent encounter +C2849499|T037|AB|S60.822S|ICD10CM|Blister (nonthermal) of left wrist, sequela|Blister (nonthermal) of left wrist, sequela +C2849499|T037|PT|S60.822S|ICD10CM|Blister (nonthermal) of left wrist, sequela|Blister (nonthermal) of left wrist, sequela +C2849500|T037|AB|S60.829|ICD10CM|Blister (nonthermal) of unspecified wrist|Blister (nonthermal) of unspecified wrist +C2849500|T037|HT|S60.829|ICD10CM|Blister (nonthermal) of unspecified wrist|Blister (nonthermal) of unspecified wrist +C2849501|T037|AB|S60.829A|ICD10CM|Blister (nonthermal) of unspecified wrist, initial encounter|Blister (nonthermal) of unspecified wrist, initial encounter +C2849501|T037|PT|S60.829A|ICD10CM|Blister (nonthermal) of unspecified wrist, initial encounter|Blister (nonthermal) of unspecified wrist, initial encounter +C2849502|T037|AB|S60.829D|ICD10CM|Blister (nonthermal) of unspecified wrist, subs encntr|Blister (nonthermal) of unspecified wrist, subs encntr +C2849502|T037|PT|S60.829D|ICD10CM|Blister (nonthermal) of unspecified wrist, subsequent encounter|Blister (nonthermal) of unspecified wrist, subsequent encounter +C2849503|T037|AB|S60.829S|ICD10CM|Blister (nonthermal) of unspecified wrist, sequela|Blister (nonthermal) of unspecified wrist, sequela +C2849503|T037|PT|S60.829S|ICD10CM|Blister (nonthermal) of unspecified wrist, sequela|Blister (nonthermal) of unspecified wrist, sequela +C2849504|T037|HT|S60.84|ICD10CM|External constriction of wrist|External constriction of wrist +C2849504|T037|AB|S60.84|ICD10CM|External constriction of wrist|External constriction of wrist +C2849505|T037|AB|S60.841|ICD10CM|External constriction of right wrist|External constriction of right wrist +C2849505|T037|HT|S60.841|ICD10CM|External constriction of right wrist|External constriction of right wrist +C2849506|T037|AB|S60.841A|ICD10CM|External constriction of right wrist, initial encounter|External constriction of right wrist, initial encounter +C2849506|T037|PT|S60.841A|ICD10CM|External constriction of right wrist, initial encounter|External constriction of right wrist, initial encounter +C2849507|T037|AB|S60.841D|ICD10CM|External constriction of right wrist, subsequent encounter|External constriction of right wrist, subsequent encounter +C2849507|T037|PT|S60.841D|ICD10CM|External constriction of right wrist, subsequent encounter|External constriction of right wrist, subsequent encounter +C2849508|T037|AB|S60.841S|ICD10CM|External constriction of right wrist, sequela|External constriction of right wrist, sequela +C2849508|T037|PT|S60.841S|ICD10CM|External constriction of right wrist, sequela|External constriction of right wrist, sequela +C2849509|T037|AB|S60.842|ICD10CM|External constriction of left wrist|External constriction of left wrist +C2849509|T037|HT|S60.842|ICD10CM|External constriction of left wrist|External constriction of left wrist +C2849510|T037|AB|S60.842A|ICD10CM|External constriction of left wrist, initial encounter|External constriction of left wrist, initial encounter +C2849510|T037|PT|S60.842A|ICD10CM|External constriction of left wrist, initial encounter|External constriction of left wrist, initial encounter +C2849511|T037|AB|S60.842D|ICD10CM|External constriction of left wrist, subsequent encounter|External constriction of left wrist, subsequent encounter +C2849511|T037|PT|S60.842D|ICD10CM|External constriction of left wrist, subsequent encounter|External constriction of left wrist, subsequent encounter +C2849512|T037|AB|S60.842S|ICD10CM|External constriction of left wrist, sequela|External constriction of left wrist, sequela +C2849512|T037|PT|S60.842S|ICD10CM|External constriction of left wrist, sequela|External constriction of left wrist, sequela +C2849513|T037|AB|S60.849|ICD10CM|External constriction of unspecified wrist|External constriction of unspecified wrist +C2849513|T037|HT|S60.849|ICD10CM|External constriction of unspecified wrist|External constriction of unspecified wrist +C2849514|T037|AB|S60.849A|ICD10CM|External constriction of unspecified wrist, init encntr|External constriction of unspecified wrist, init encntr +C2849514|T037|PT|S60.849A|ICD10CM|External constriction of unspecified wrist, initial encounter|External constriction of unspecified wrist, initial encounter +C2849515|T037|AB|S60.849D|ICD10CM|External constriction of unspecified wrist, subs encntr|External constriction of unspecified wrist, subs encntr +C2849515|T037|PT|S60.849D|ICD10CM|External constriction of unspecified wrist, subsequent encounter|External constriction of unspecified wrist, subsequent encounter +C2849516|T037|AB|S60.849S|ICD10CM|External constriction of unspecified wrist, sequela|External constriction of unspecified wrist, sequela +C2849516|T037|PT|S60.849S|ICD10CM|External constriction of unspecified wrist, sequela|External constriction of unspecified wrist, sequela +C2849517|T037|ET|S60.85|ICD10CM|Splinter in the wrist|Splinter in the wrist +C2849518|T037|AB|S60.85|ICD10CM|Superficial foreign body of wrist|Superficial foreign body of wrist +C2849518|T037|HT|S60.85|ICD10CM|Superficial foreign body of wrist|Superficial foreign body of wrist +C2849519|T037|HT|S60.851|ICD10CM|Superficial foreign body of right wrist|Superficial foreign body of right wrist +C2849519|T037|AB|S60.851|ICD10CM|Superficial foreign body of right wrist|Superficial foreign body of right wrist +C2849520|T037|AB|S60.851A|ICD10CM|Superficial foreign body of right wrist, initial encounter|Superficial foreign body of right wrist, initial encounter +C2849520|T037|PT|S60.851A|ICD10CM|Superficial foreign body of right wrist, initial encounter|Superficial foreign body of right wrist, initial encounter +C2849521|T037|AB|S60.851D|ICD10CM|Superficial foreign body of right wrist, subs encntr|Superficial foreign body of right wrist, subs encntr +C2849521|T037|PT|S60.851D|ICD10CM|Superficial foreign body of right wrist, subsequent encounter|Superficial foreign body of right wrist, subsequent encounter +C2849522|T037|AB|S60.851S|ICD10CM|Superficial foreign body of right wrist, sequela|Superficial foreign body of right wrist, sequela +C2849522|T037|PT|S60.851S|ICD10CM|Superficial foreign body of right wrist, sequela|Superficial foreign body of right wrist, sequela +C2849523|T037|HT|S60.852|ICD10CM|Superficial foreign body of left wrist|Superficial foreign body of left wrist +C2849523|T037|AB|S60.852|ICD10CM|Superficial foreign body of left wrist|Superficial foreign body of left wrist +C2849524|T037|AB|S60.852A|ICD10CM|Superficial foreign body of left wrist, initial encounter|Superficial foreign body of left wrist, initial encounter +C2849524|T037|PT|S60.852A|ICD10CM|Superficial foreign body of left wrist, initial encounter|Superficial foreign body of left wrist, initial encounter +C2849525|T037|AB|S60.852D|ICD10CM|Superficial foreign body of left wrist, subsequent encounter|Superficial foreign body of left wrist, subsequent encounter +C2849525|T037|PT|S60.852D|ICD10CM|Superficial foreign body of left wrist, subsequent encounter|Superficial foreign body of left wrist, subsequent encounter +C2849526|T037|AB|S60.852S|ICD10CM|Superficial foreign body of left wrist, sequela|Superficial foreign body of left wrist, sequela +C2849526|T037|PT|S60.852S|ICD10CM|Superficial foreign body of left wrist, sequela|Superficial foreign body of left wrist, sequela +C2849527|T037|AB|S60.859|ICD10CM|Superficial foreign body of unspecified wrist|Superficial foreign body of unspecified wrist +C2849527|T037|HT|S60.859|ICD10CM|Superficial foreign body of unspecified wrist|Superficial foreign body of unspecified wrist +C2849528|T037|AB|S60.859A|ICD10CM|Superficial foreign body of unspecified wrist, init encntr|Superficial foreign body of unspecified wrist, init encntr +C2849528|T037|PT|S60.859A|ICD10CM|Superficial foreign body of unspecified wrist, initial encounter|Superficial foreign body of unspecified wrist, initial encounter +C2849529|T037|AB|S60.859D|ICD10CM|Superficial foreign body of unspecified wrist, subs encntr|Superficial foreign body of unspecified wrist, subs encntr +C2849529|T037|PT|S60.859D|ICD10CM|Superficial foreign body of unspecified wrist, subsequent encounter|Superficial foreign body of unspecified wrist, subsequent encounter +C2849530|T037|AB|S60.859S|ICD10CM|Superficial foreign body of unspecified wrist, sequela|Superficial foreign body of unspecified wrist, sequela +C2849530|T037|PT|S60.859S|ICD10CM|Superficial foreign body of unspecified wrist, sequela|Superficial foreign body of unspecified wrist, sequela +C0433032|T037|AB|S60.86|ICD10CM|Insect bite (nonvenomous) of wrist|Insect bite (nonvenomous) of wrist +C0433032|T037|HT|S60.86|ICD10CM|Insect bite (nonvenomous) of wrist|Insect bite (nonvenomous) of wrist +C2849531|T037|AB|S60.861|ICD10CM|Insect bite (nonvenomous) of right wrist|Insect bite (nonvenomous) of right wrist +C2849531|T037|HT|S60.861|ICD10CM|Insect bite (nonvenomous) of right wrist|Insect bite (nonvenomous) of right wrist +C2849532|T037|AB|S60.861A|ICD10CM|Insect bite (nonvenomous) of right wrist, initial encounter|Insect bite (nonvenomous) of right wrist, initial encounter +C2849532|T037|PT|S60.861A|ICD10CM|Insect bite (nonvenomous) of right wrist, initial encounter|Insect bite (nonvenomous) of right wrist, initial encounter +C2849533|T037|AB|S60.861D|ICD10CM|Insect bite (nonvenomous) of right wrist, subs encntr|Insect bite (nonvenomous) of right wrist, subs encntr +C2849533|T037|PT|S60.861D|ICD10CM|Insect bite (nonvenomous) of right wrist, subsequent encounter|Insect bite (nonvenomous) of right wrist, subsequent encounter +C2849534|T037|AB|S60.861S|ICD10CM|Insect bite (nonvenomous) of right wrist, sequela|Insect bite (nonvenomous) of right wrist, sequela +C2849534|T037|PT|S60.861S|ICD10CM|Insect bite (nonvenomous) of right wrist, sequela|Insect bite (nonvenomous) of right wrist, sequela +C2849535|T037|AB|S60.862|ICD10CM|Insect bite (nonvenomous) of left wrist|Insect bite (nonvenomous) of left wrist +C2849535|T037|HT|S60.862|ICD10CM|Insect bite (nonvenomous) of left wrist|Insect bite (nonvenomous) of left wrist +C2849536|T037|AB|S60.862A|ICD10CM|Insect bite (nonvenomous) of left wrist, initial encounter|Insect bite (nonvenomous) of left wrist, initial encounter +C2849536|T037|PT|S60.862A|ICD10CM|Insect bite (nonvenomous) of left wrist, initial encounter|Insect bite (nonvenomous) of left wrist, initial encounter +C2849537|T037|AB|S60.862D|ICD10CM|Insect bite (nonvenomous) of left wrist, subs encntr|Insect bite (nonvenomous) of left wrist, subs encntr +C2849537|T037|PT|S60.862D|ICD10CM|Insect bite (nonvenomous) of left wrist, subsequent encounter|Insect bite (nonvenomous) of left wrist, subsequent encounter +C2849538|T037|AB|S60.862S|ICD10CM|Insect bite (nonvenomous) of left wrist, sequela|Insect bite (nonvenomous) of left wrist, sequela +C2849538|T037|PT|S60.862S|ICD10CM|Insect bite (nonvenomous) of left wrist, sequela|Insect bite (nonvenomous) of left wrist, sequela +C2849539|T037|AB|S60.869|ICD10CM|Insect bite (nonvenomous) of unspecified wrist|Insect bite (nonvenomous) of unspecified wrist +C2849539|T037|HT|S60.869|ICD10CM|Insect bite (nonvenomous) of unspecified wrist|Insect bite (nonvenomous) of unspecified wrist +C2849540|T037|AB|S60.869A|ICD10CM|Insect bite (nonvenomous) of unspecified wrist, init encntr|Insect bite (nonvenomous) of unspecified wrist, init encntr +C2849540|T037|PT|S60.869A|ICD10CM|Insect bite (nonvenomous) of unspecified wrist, initial encounter|Insect bite (nonvenomous) of unspecified wrist, initial encounter +C2849541|T037|AB|S60.869D|ICD10CM|Insect bite (nonvenomous) of unspecified wrist, subs encntr|Insect bite (nonvenomous) of unspecified wrist, subs encntr +C2849541|T037|PT|S60.869D|ICD10CM|Insect bite (nonvenomous) of unspecified wrist, subsequent encounter|Insect bite (nonvenomous) of unspecified wrist, subsequent encounter +C2849542|T037|AB|S60.869S|ICD10CM|Insect bite (nonvenomous) of unspecified wrist, sequela|Insect bite (nonvenomous) of unspecified wrist, sequela +C2849542|T037|PT|S60.869S|ICD10CM|Insect bite (nonvenomous) of unspecified wrist, sequela|Insect bite (nonvenomous) of unspecified wrist, sequela +C2849543|T037|AB|S60.87|ICD10CM|Other superficial bite of wrist|Other superficial bite of wrist +C2849543|T037|HT|S60.87|ICD10CM|Other superficial bite of wrist|Other superficial bite of wrist +C2849544|T037|AB|S60.871|ICD10CM|Other superficial bite of right wrist|Other superficial bite of right wrist +C2849544|T037|HT|S60.871|ICD10CM|Other superficial bite of right wrist|Other superficial bite of right wrist +C2849545|T037|AB|S60.871A|ICD10CM|Other superficial bite of right wrist, initial encounter|Other superficial bite of right wrist, initial encounter +C2849545|T037|PT|S60.871A|ICD10CM|Other superficial bite of right wrist, initial encounter|Other superficial bite of right wrist, initial encounter +C2849546|T037|AB|S60.871D|ICD10CM|Other superficial bite of right wrist, subsequent encounter|Other superficial bite of right wrist, subsequent encounter +C2849546|T037|PT|S60.871D|ICD10CM|Other superficial bite of right wrist, subsequent encounter|Other superficial bite of right wrist, subsequent encounter +C2849547|T037|AB|S60.871S|ICD10CM|Other superficial bite of right wrist, sequela|Other superficial bite of right wrist, sequela +C2849547|T037|PT|S60.871S|ICD10CM|Other superficial bite of right wrist, sequela|Other superficial bite of right wrist, sequela +C2849548|T037|AB|S60.872|ICD10CM|Other superficial bite of left wrist|Other superficial bite of left wrist +C2849548|T037|HT|S60.872|ICD10CM|Other superficial bite of left wrist|Other superficial bite of left wrist +C2849549|T037|AB|S60.872A|ICD10CM|Other superficial bite of left wrist, initial encounter|Other superficial bite of left wrist, initial encounter +C2849549|T037|PT|S60.872A|ICD10CM|Other superficial bite of left wrist, initial encounter|Other superficial bite of left wrist, initial encounter +C2849550|T037|AB|S60.872D|ICD10CM|Other superficial bite of left wrist, subsequent encounter|Other superficial bite of left wrist, subsequent encounter +C2849550|T037|PT|S60.872D|ICD10CM|Other superficial bite of left wrist, subsequent encounter|Other superficial bite of left wrist, subsequent encounter +C2849551|T037|AB|S60.872S|ICD10CM|Other superficial bite of left wrist, sequela|Other superficial bite of left wrist, sequela +C2849551|T037|PT|S60.872S|ICD10CM|Other superficial bite of left wrist, sequela|Other superficial bite of left wrist, sequela +C2849552|T037|AB|S60.879|ICD10CM|Other superficial bite of unspecified wrist|Other superficial bite of unspecified wrist +C2849552|T037|HT|S60.879|ICD10CM|Other superficial bite of unspecified wrist|Other superficial bite of unspecified wrist +C2849553|T037|AB|S60.879A|ICD10CM|Other superficial bite of unspecified wrist, init encntr|Other superficial bite of unspecified wrist, init encntr +C2849553|T037|PT|S60.879A|ICD10CM|Other superficial bite of unspecified wrist, initial encounter|Other superficial bite of unspecified wrist, initial encounter +C2849554|T037|AB|S60.879D|ICD10CM|Other superficial bite of unspecified wrist, subs encntr|Other superficial bite of unspecified wrist, subs encntr +C2849554|T037|PT|S60.879D|ICD10CM|Other superficial bite of unspecified wrist, subsequent encounter|Other superficial bite of unspecified wrist, subsequent encounter +C2849555|T037|AB|S60.879S|ICD10CM|Other superficial bite of unspecified wrist, sequela|Other superficial bite of unspecified wrist, sequela +C2849555|T037|PT|S60.879S|ICD10CM|Other superficial bite of unspecified wrist, sequela|Other superficial bite of unspecified wrist, sequela +C0495892|T037|PT|S60.9|ICD10|Superficial injury of wrist and hand, unspecified|Superficial injury of wrist and hand, unspecified +C2849556|T037|AB|S60.9|ICD10CM|Unspecified superficial injury of wrist, hand and fingers|Unspecified superficial injury of wrist, hand and fingers +C2849556|T037|HT|S60.9|ICD10CM|Unspecified superficial injury of wrist, hand and fingers|Unspecified superficial injury of wrist, hand and fingers +C2849557|T037|AB|S60.91|ICD10CM|Unspecified superficial injury of wrist|Unspecified superficial injury of wrist +C2849557|T037|HT|S60.91|ICD10CM|Unspecified superficial injury of wrist|Unspecified superficial injury of wrist +C2849558|T037|AB|S60.911|ICD10CM|Unspecified superficial injury of right wrist|Unspecified superficial injury of right wrist +C2849558|T037|HT|S60.911|ICD10CM|Unspecified superficial injury of right wrist|Unspecified superficial injury of right wrist +C2849559|T037|AB|S60.911A|ICD10CM|Unspecified superficial injury of right wrist, init encntr|Unspecified superficial injury of right wrist, init encntr +C2849559|T037|PT|S60.911A|ICD10CM|Unspecified superficial injury of right wrist, initial encounter|Unspecified superficial injury of right wrist, initial encounter +C2849560|T037|AB|S60.911D|ICD10CM|Unspecified superficial injury of right wrist, subs encntr|Unspecified superficial injury of right wrist, subs encntr +C2849560|T037|PT|S60.911D|ICD10CM|Unspecified superficial injury of right wrist, subsequent encounter|Unspecified superficial injury of right wrist, subsequent encounter +C2849561|T037|AB|S60.911S|ICD10CM|Unspecified superficial injury of right wrist, sequela|Unspecified superficial injury of right wrist, sequela +C2849561|T037|PT|S60.911S|ICD10CM|Unspecified superficial injury of right wrist, sequela|Unspecified superficial injury of right wrist, sequela +C2849562|T037|AB|S60.912|ICD10CM|Unspecified superficial injury of left wrist|Unspecified superficial injury of left wrist +C2849562|T037|HT|S60.912|ICD10CM|Unspecified superficial injury of left wrist|Unspecified superficial injury of left wrist +C2849563|T037|AB|S60.912A|ICD10CM|Unspecified superficial injury of left wrist, init encntr|Unspecified superficial injury of left wrist, init encntr +C2849563|T037|PT|S60.912A|ICD10CM|Unspecified superficial injury of left wrist, initial encounter|Unspecified superficial injury of left wrist, initial encounter +C2849564|T037|AB|S60.912D|ICD10CM|Unspecified superficial injury of left wrist, subs encntr|Unspecified superficial injury of left wrist, subs encntr +C2849564|T037|PT|S60.912D|ICD10CM|Unspecified superficial injury of left wrist, subsequent encounter|Unspecified superficial injury of left wrist, subsequent encounter +C2849565|T037|AB|S60.912S|ICD10CM|Unspecified superficial injury of left wrist, sequela|Unspecified superficial injury of left wrist, sequela +C2849565|T037|PT|S60.912S|ICD10CM|Unspecified superficial injury of left wrist, sequela|Unspecified superficial injury of left wrist, sequela +C2849566|T037|AB|S60.919|ICD10CM|Unspecified superficial injury of unspecified wrist|Unspecified superficial injury of unspecified wrist +C2849566|T037|HT|S60.919|ICD10CM|Unspecified superficial injury of unspecified wrist|Unspecified superficial injury of unspecified wrist +C2849567|T037|AB|S60.919A|ICD10CM|Unsp superficial injury of unspecified wrist, init encntr|Unsp superficial injury of unspecified wrist, init encntr +C2849567|T037|PT|S60.919A|ICD10CM|Unspecified superficial injury of unspecified wrist, initial encounter|Unspecified superficial injury of unspecified wrist, initial encounter +C2849568|T037|AB|S60.919D|ICD10CM|Unsp superficial injury of unspecified wrist, subs encntr|Unsp superficial injury of unspecified wrist, subs encntr +C2849568|T037|PT|S60.919D|ICD10CM|Unspecified superficial injury of unspecified wrist, subsequent encounter|Unspecified superficial injury of unspecified wrist, subsequent encounter +C2849569|T037|AB|S60.919S|ICD10CM|Unspecified superficial injury of unspecified wrist, sequela|Unspecified superficial injury of unspecified wrist, sequela +C2849569|T037|PT|S60.919S|ICD10CM|Unspecified superficial injury of unspecified wrist, sequela|Unspecified superficial injury of unspecified wrist, sequela +C2849570|T037|AB|S60.92|ICD10CM|Unspecified superficial injury of hand|Unspecified superficial injury of hand +C2849570|T037|HT|S60.92|ICD10CM|Unspecified superficial injury of hand|Unspecified superficial injury of hand +C2849571|T037|AB|S60.921|ICD10CM|Unspecified superficial injury of right hand|Unspecified superficial injury of right hand +C2849571|T037|HT|S60.921|ICD10CM|Unspecified superficial injury of right hand|Unspecified superficial injury of right hand +C2849572|T037|AB|S60.921A|ICD10CM|Unspecified superficial injury of right hand, init encntr|Unspecified superficial injury of right hand, init encntr +C2849572|T037|PT|S60.921A|ICD10CM|Unspecified superficial injury of right hand, initial encounter|Unspecified superficial injury of right hand, initial encounter +C2849573|T037|AB|S60.921D|ICD10CM|Unspecified superficial injury of right hand, subs encntr|Unspecified superficial injury of right hand, subs encntr +C2849573|T037|PT|S60.921D|ICD10CM|Unspecified superficial injury of right hand, subsequent encounter|Unspecified superficial injury of right hand, subsequent encounter +C2849574|T037|AB|S60.921S|ICD10CM|Unspecified superficial injury of right hand, sequela|Unspecified superficial injury of right hand, sequela +C2849574|T037|PT|S60.921S|ICD10CM|Unspecified superficial injury of right hand, sequela|Unspecified superficial injury of right hand, sequela +C2849575|T037|AB|S60.922|ICD10CM|Unspecified superficial injury of left hand|Unspecified superficial injury of left hand +C2849575|T037|HT|S60.922|ICD10CM|Unspecified superficial injury of left hand|Unspecified superficial injury of left hand +C2849576|T037|AB|S60.922A|ICD10CM|Unspecified superficial injury of left hand, init encntr|Unspecified superficial injury of left hand, init encntr +C2849576|T037|PT|S60.922A|ICD10CM|Unspecified superficial injury of left hand, initial encounter|Unspecified superficial injury of left hand, initial encounter +C2849577|T037|AB|S60.922D|ICD10CM|Unspecified superficial injury of left hand, subs encntr|Unspecified superficial injury of left hand, subs encntr +C2849577|T037|PT|S60.922D|ICD10CM|Unspecified superficial injury of left hand, subsequent encounter|Unspecified superficial injury of left hand, subsequent encounter +C2849578|T037|AB|S60.922S|ICD10CM|Unspecified superficial injury of left hand, sequela|Unspecified superficial injury of left hand, sequela +C2849578|T037|PT|S60.922S|ICD10CM|Unspecified superficial injury of left hand, sequela|Unspecified superficial injury of left hand, sequela +C2849579|T037|AB|S60.929|ICD10CM|Unspecified superficial injury of unspecified hand|Unspecified superficial injury of unspecified hand +C2849579|T037|HT|S60.929|ICD10CM|Unspecified superficial injury of unspecified hand|Unspecified superficial injury of unspecified hand +C2849580|T037|AB|S60.929A|ICD10CM|Unsp superficial injury of unspecified hand, init encntr|Unsp superficial injury of unspecified hand, init encntr +C2849580|T037|PT|S60.929A|ICD10CM|Unspecified superficial injury of unspecified hand, initial encounter|Unspecified superficial injury of unspecified hand, initial encounter +C2849581|T037|AB|S60.929D|ICD10CM|Unsp superficial injury of unspecified hand, subs encntr|Unsp superficial injury of unspecified hand, subs encntr +C2849581|T037|PT|S60.929D|ICD10CM|Unspecified superficial injury of unspecified hand, subsequent encounter|Unspecified superficial injury of unspecified hand, subsequent encounter +C2849582|T037|AB|S60.929S|ICD10CM|Unspecified superficial injury of unspecified hand, sequela|Unspecified superficial injury of unspecified hand, sequela +C2849582|T037|PT|S60.929S|ICD10CM|Unspecified superficial injury of unspecified hand, sequela|Unspecified superficial injury of unspecified hand, sequela +C2849583|T037|AB|S60.93|ICD10CM|Unspecified superficial injury of thumb|Unspecified superficial injury of thumb +C2849583|T037|HT|S60.93|ICD10CM|Unspecified superficial injury of thumb|Unspecified superficial injury of thumb +C2849584|T037|AB|S60.931|ICD10CM|Unspecified superficial injury of right thumb|Unspecified superficial injury of right thumb +C2849584|T037|HT|S60.931|ICD10CM|Unspecified superficial injury of right thumb|Unspecified superficial injury of right thumb +C2849585|T037|AB|S60.931A|ICD10CM|Unspecified superficial injury of right thumb, init encntr|Unspecified superficial injury of right thumb, init encntr +C2849585|T037|PT|S60.931A|ICD10CM|Unspecified superficial injury of right thumb, initial encounter|Unspecified superficial injury of right thumb, initial encounter +C2849586|T037|AB|S60.931D|ICD10CM|Unspecified superficial injury of right thumb, subs encntr|Unspecified superficial injury of right thumb, subs encntr +C2849586|T037|PT|S60.931D|ICD10CM|Unspecified superficial injury of right thumb, subsequent encounter|Unspecified superficial injury of right thumb, subsequent encounter +C2849587|T037|AB|S60.931S|ICD10CM|Unspecified superficial injury of right thumb, sequela|Unspecified superficial injury of right thumb, sequela +C2849587|T037|PT|S60.931S|ICD10CM|Unspecified superficial injury of right thumb, sequela|Unspecified superficial injury of right thumb, sequela +C2849588|T037|AB|S60.932|ICD10CM|Unspecified superficial injury of left thumb|Unspecified superficial injury of left thumb +C2849588|T037|HT|S60.932|ICD10CM|Unspecified superficial injury of left thumb|Unspecified superficial injury of left thumb +C2849589|T037|AB|S60.932A|ICD10CM|Unspecified superficial injury of left thumb, init encntr|Unspecified superficial injury of left thumb, init encntr +C2849589|T037|PT|S60.932A|ICD10CM|Unspecified superficial injury of left thumb, initial encounter|Unspecified superficial injury of left thumb, initial encounter +C2849590|T037|AB|S60.932D|ICD10CM|Unspecified superficial injury of left thumb, subs encntr|Unspecified superficial injury of left thumb, subs encntr +C2849590|T037|PT|S60.932D|ICD10CM|Unspecified superficial injury of left thumb, subsequent encounter|Unspecified superficial injury of left thumb, subsequent encounter +C2849591|T037|AB|S60.932S|ICD10CM|Unspecified superficial injury of left thumb, sequela|Unspecified superficial injury of left thumb, sequela +C2849591|T037|PT|S60.932S|ICD10CM|Unspecified superficial injury of left thumb, sequela|Unspecified superficial injury of left thumb, sequela +C2849592|T037|AB|S60.939|ICD10CM|Unspecified superficial injury of unspecified thumb|Unspecified superficial injury of unspecified thumb +C2849592|T037|HT|S60.939|ICD10CM|Unspecified superficial injury of unspecified thumb|Unspecified superficial injury of unspecified thumb +C2849593|T037|AB|S60.939A|ICD10CM|Unsp superficial injury of unspecified thumb, init encntr|Unsp superficial injury of unspecified thumb, init encntr +C2849593|T037|PT|S60.939A|ICD10CM|Unspecified superficial injury of unspecified thumb, initial encounter|Unspecified superficial injury of unspecified thumb, initial encounter +C2849594|T037|AB|S60.939D|ICD10CM|Unsp superficial injury of unspecified thumb, subs encntr|Unsp superficial injury of unspecified thumb, subs encntr +C2849594|T037|PT|S60.939D|ICD10CM|Unspecified superficial injury of unspecified thumb, subsequent encounter|Unspecified superficial injury of unspecified thumb, subsequent encounter +C2849595|T037|AB|S60.939S|ICD10CM|Unspecified superficial injury of unspecified thumb, sequela|Unspecified superficial injury of unspecified thumb, sequela +C2849595|T037|PT|S60.939S|ICD10CM|Unspecified superficial injury of unspecified thumb, sequela|Unspecified superficial injury of unspecified thumb, sequela +C2849629|T037|AB|S60.94|ICD10CM|Unspecified superficial injury of other fingers|Unspecified superficial injury of other fingers +C2849629|T037|HT|S60.94|ICD10CM|Unspecified superficial injury of other fingers|Unspecified superficial injury of other fingers +C2849596|T037|AB|S60.940|ICD10CM|Unspecified superficial injury of right index finger|Unspecified superficial injury of right index finger +C2849596|T037|HT|S60.940|ICD10CM|Unspecified superficial injury of right index finger|Unspecified superficial injury of right index finger +C2849597|T037|AB|S60.940A|ICD10CM|Unsp superficial injury of right index finger, init encntr|Unsp superficial injury of right index finger, init encntr +C2849597|T037|PT|S60.940A|ICD10CM|Unspecified superficial injury of right index finger, initial encounter|Unspecified superficial injury of right index finger, initial encounter +C2849598|T037|AB|S60.940D|ICD10CM|Unsp superficial injury of right index finger, subs encntr|Unsp superficial injury of right index finger, subs encntr +C2849598|T037|PT|S60.940D|ICD10CM|Unspecified superficial injury of right index finger, subsequent encounter|Unspecified superficial injury of right index finger, subsequent encounter +C2849599|T037|AB|S60.940S|ICD10CM|Unsp superficial injury of right index finger, sequela|Unsp superficial injury of right index finger, sequela +C2849599|T037|PT|S60.940S|ICD10CM|Unspecified superficial injury of right index finger, sequela|Unspecified superficial injury of right index finger, sequela +C2849600|T037|AB|S60.941|ICD10CM|Unspecified superficial injury of left index finger|Unspecified superficial injury of left index finger +C2849600|T037|HT|S60.941|ICD10CM|Unspecified superficial injury of left index finger|Unspecified superficial injury of left index finger +C2849601|T037|AB|S60.941A|ICD10CM|Unsp superficial injury of left index finger, init encntr|Unsp superficial injury of left index finger, init encntr +C2849601|T037|PT|S60.941A|ICD10CM|Unspecified superficial injury of left index finger, initial encounter|Unspecified superficial injury of left index finger, initial encounter +C2849602|T037|AB|S60.941D|ICD10CM|Unsp superficial injury of left index finger, subs encntr|Unsp superficial injury of left index finger, subs encntr +C2849602|T037|PT|S60.941D|ICD10CM|Unspecified superficial injury of left index finger, subsequent encounter|Unspecified superficial injury of left index finger, subsequent encounter +C2849603|T037|AB|S60.941S|ICD10CM|Unspecified superficial injury of left index finger, sequela|Unspecified superficial injury of left index finger, sequela +C2849603|T037|PT|S60.941S|ICD10CM|Unspecified superficial injury of left index finger, sequela|Unspecified superficial injury of left index finger, sequela +C2849604|T037|AB|S60.942|ICD10CM|Unspecified superficial injury of right middle finger|Unspecified superficial injury of right middle finger +C2849604|T037|HT|S60.942|ICD10CM|Unspecified superficial injury of right middle finger|Unspecified superficial injury of right middle finger +C2849605|T037|AB|S60.942A|ICD10CM|Unsp superficial injury of right middle finger, init encntr|Unsp superficial injury of right middle finger, init encntr +C2849605|T037|PT|S60.942A|ICD10CM|Unspecified superficial injury of right middle finger, initial encounter|Unspecified superficial injury of right middle finger, initial encounter +C2849606|T037|AB|S60.942D|ICD10CM|Unsp superficial injury of right middle finger, subs encntr|Unsp superficial injury of right middle finger, subs encntr +C2849606|T037|PT|S60.942D|ICD10CM|Unspecified superficial injury of right middle finger, subsequent encounter|Unspecified superficial injury of right middle finger, subsequent encounter +C2849607|T037|AB|S60.942S|ICD10CM|Unsp superficial injury of right middle finger, sequela|Unsp superficial injury of right middle finger, sequela +C2849607|T037|PT|S60.942S|ICD10CM|Unspecified superficial injury of right middle finger, sequela|Unspecified superficial injury of right middle finger, sequela +C2849608|T037|AB|S60.943|ICD10CM|Unspecified superficial injury of left middle finger|Unspecified superficial injury of left middle finger +C2849608|T037|HT|S60.943|ICD10CM|Unspecified superficial injury of left middle finger|Unspecified superficial injury of left middle finger +C2849609|T037|AB|S60.943A|ICD10CM|Unsp superficial injury of left middle finger, init encntr|Unsp superficial injury of left middle finger, init encntr +C2849609|T037|PT|S60.943A|ICD10CM|Unspecified superficial injury of left middle finger, initial encounter|Unspecified superficial injury of left middle finger, initial encounter +C2849610|T037|AB|S60.943D|ICD10CM|Unsp superficial injury of left middle finger, subs encntr|Unsp superficial injury of left middle finger, subs encntr +C2849610|T037|PT|S60.943D|ICD10CM|Unspecified superficial injury of left middle finger, subsequent encounter|Unspecified superficial injury of left middle finger, subsequent encounter +C2849611|T037|AB|S60.943S|ICD10CM|Unsp superficial injury of left middle finger, sequela|Unsp superficial injury of left middle finger, sequela +C2849611|T037|PT|S60.943S|ICD10CM|Unspecified superficial injury of left middle finger, sequela|Unspecified superficial injury of left middle finger, sequela +C2849612|T037|AB|S60.944|ICD10CM|Unspecified superficial injury of right ring finger|Unspecified superficial injury of right ring finger +C2849612|T037|HT|S60.944|ICD10CM|Unspecified superficial injury of right ring finger|Unspecified superficial injury of right ring finger +C2849613|T037|AB|S60.944A|ICD10CM|Unsp superficial injury of right ring finger, init encntr|Unsp superficial injury of right ring finger, init encntr +C2849613|T037|PT|S60.944A|ICD10CM|Unspecified superficial injury of right ring finger, initial encounter|Unspecified superficial injury of right ring finger, initial encounter +C2849614|T037|AB|S60.944D|ICD10CM|Unsp superficial injury of right ring finger, subs encntr|Unsp superficial injury of right ring finger, subs encntr +C2849614|T037|PT|S60.944D|ICD10CM|Unspecified superficial injury of right ring finger, subsequent encounter|Unspecified superficial injury of right ring finger, subsequent encounter +C2849615|T037|AB|S60.944S|ICD10CM|Unspecified superficial injury of right ring finger, sequela|Unspecified superficial injury of right ring finger, sequela +C2849615|T037|PT|S60.944S|ICD10CM|Unspecified superficial injury of right ring finger, sequela|Unspecified superficial injury of right ring finger, sequela +C2849616|T037|AB|S60.945|ICD10CM|Unspecified superficial injury of left ring finger|Unspecified superficial injury of left ring finger +C2849616|T037|HT|S60.945|ICD10CM|Unspecified superficial injury of left ring finger|Unspecified superficial injury of left ring finger +C2849617|T037|AB|S60.945A|ICD10CM|Unsp superficial injury of left ring finger, init encntr|Unsp superficial injury of left ring finger, init encntr +C2849617|T037|PT|S60.945A|ICD10CM|Unspecified superficial injury of left ring finger, initial encounter|Unspecified superficial injury of left ring finger, initial encounter +C2849618|T037|AB|S60.945D|ICD10CM|Unsp superficial injury of left ring finger, subs encntr|Unsp superficial injury of left ring finger, subs encntr +C2849618|T037|PT|S60.945D|ICD10CM|Unspecified superficial injury of left ring finger, subsequent encounter|Unspecified superficial injury of left ring finger, subsequent encounter +C2849619|T037|AB|S60.945S|ICD10CM|Unspecified superficial injury of left ring finger, sequela|Unspecified superficial injury of left ring finger, sequela +C2849619|T037|PT|S60.945S|ICD10CM|Unspecified superficial injury of left ring finger, sequela|Unspecified superficial injury of left ring finger, sequela +C2849620|T037|AB|S60.946|ICD10CM|Unspecified superficial injury of right little finger|Unspecified superficial injury of right little finger +C2849620|T037|HT|S60.946|ICD10CM|Unspecified superficial injury of right little finger|Unspecified superficial injury of right little finger +C2849621|T037|AB|S60.946A|ICD10CM|Unsp superficial injury of right little finger, init encntr|Unsp superficial injury of right little finger, init encntr +C2849621|T037|PT|S60.946A|ICD10CM|Unspecified superficial injury of right little finger, initial encounter|Unspecified superficial injury of right little finger, initial encounter +C2849622|T037|AB|S60.946D|ICD10CM|Unsp superficial injury of right little finger, subs encntr|Unsp superficial injury of right little finger, subs encntr +C2849622|T037|PT|S60.946D|ICD10CM|Unspecified superficial injury of right little finger, subsequent encounter|Unspecified superficial injury of right little finger, subsequent encounter +C2849623|T037|AB|S60.946S|ICD10CM|Unsp superficial injury of right little finger, sequela|Unsp superficial injury of right little finger, sequela +C2849623|T037|PT|S60.946S|ICD10CM|Unspecified superficial injury of right little finger, sequela|Unspecified superficial injury of right little finger, sequela +C2849624|T037|AB|S60.947|ICD10CM|Unspecified superficial injury of left little finger|Unspecified superficial injury of left little finger +C2849624|T037|HT|S60.947|ICD10CM|Unspecified superficial injury of left little finger|Unspecified superficial injury of left little finger +C2849625|T037|AB|S60.947A|ICD10CM|Unsp superficial injury of left little finger, init encntr|Unsp superficial injury of left little finger, init encntr +C2849625|T037|PT|S60.947A|ICD10CM|Unspecified superficial injury of left little finger, initial encounter|Unspecified superficial injury of left little finger, initial encounter +C2849626|T037|AB|S60.947D|ICD10CM|Unsp superficial injury of left little finger, subs encntr|Unsp superficial injury of left little finger, subs encntr +C2849626|T037|PT|S60.947D|ICD10CM|Unspecified superficial injury of left little finger, subsequent encounter|Unspecified superficial injury of left little finger, subsequent encounter +C2849627|T037|AB|S60.947S|ICD10CM|Unsp superficial injury of left little finger, sequela|Unsp superficial injury of left little finger, sequela +C2849627|T037|PT|S60.947S|ICD10CM|Unspecified superficial injury of left little finger, sequela|Unspecified superficial injury of left little finger, sequela +C2849629|T037|AB|S60.948|ICD10CM|Unspecified superficial injury of other finger|Unspecified superficial injury of other finger +C2849629|T037|HT|S60.948|ICD10CM|Unspecified superficial injury of other finger|Unspecified superficial injury of other finger +C2849628|T037|ET|S60.948|ICD10CM|Unspecified superficial injury of specified finger with unspecified laterality|Unspecified superficial injury of specified finger with unspecified laterality +C2849630|T037|AB|S60.948A|ICD10CM|Unspecified superficial injury of other finger, init encntr|Unspecified superficial injury of other finger, init encntr +C2849630|T037|PT|S60.948A|ICD10CM|Unspecified superficial injury of other finger, initial encounter|Unspecified superficial injury of other finger, initial encounter +C2849631|T037|AB|S60.948D|ICD10CM|Unspecified superficial injury of other finger, subs encntr|Unspecified superficial injury of other finger, subs encntr +C2849631|T037|PT|S60.948D|ICD10CM|Unspecified superficial injury of other finger, subsequent encounter|Unspecified superficial injury of other finger, subsequent encounter +C2849632|T037|AB|S60.948S|ICD10CM|Unspecified superficial injury of other finger, sequela|Unspecified superficial injury of other finger, sequela +C2849632|T037|PT|S60.948S|ICD10CM|Unspecified superficial injury of other finger, sequela|Unspecified superficial injury of other finger, sequela +C2849633|T037|AB|S60.949|ICD10CM|Unspecified superficial injury of unspecified finger|Unspecified superficial injury of unspecified finger +C2849633|T037|HT|S60.949|ICD10CM|Unspecified superficial injury of unspecified finger|Unspecified superficial injury of unspecified finger +C2849634|T037|AB|S60.949A|ICD10CM|Unsp superficial injury of unspecified finger, init encntr|Unsp superficial injury of unspecified finger, init encntr +C2849634|T037|PT|S60.949A|ICD10CM|Unspecified superficial injury of unspecified finger, initial encounter|Unspecified superficial injury of unspecified finger, initial encounter +C2849635|T037|AB|S60.949D|ICD10CM|Unsp superficial injury of unspecified finger, subs encntr|Unsp superficial injury of unspecified finger, subs encntr +C2849635|T037|PT|S60.949D|ICD10CM|Unspecified superficial injury of unspecified finger, subsequent encounter|Unspecified superficial injury of unspecified finger, subsequent encounter +C2849636|T037|AB|S60.949S|ICD10CM|Unsp superficial injury of unspecified finger, sequela|Unsp superficial injury of unspecified finger, sequela +C2849636|T037|PT|S60.949S|ICD10CM|Unspecified superficial injury of unspecified finger, sequela|Unspecified superficial injury of unspecified finger, sequela +C0495896|T037|HT|S61|ICD10|Open wound of wrist and hand|Open wound of wrist and hand +C2849637|T037|AB|S61|ICD10CM|Open wound of wrist, hand and fingers|Open wound of wrist, hand and fingers +C2849637|T037|HT|S61|ICD10CM|Open wound of wrist, hand and fingers|Open wound of wrist, hand and fingers +C0495897|T037|PT|S61.0|ICD10|Open wound of finger(s) without damage to nail|Open wound of finger(s) without damage to nail +C2849638|T037|HT|S61.0|ICD10CM|Open wound of thumb without damage to nail|Open wound of thumb without damage to nail +C2849638|T037|AB|S61.0|ICD10CM|Open wound of thumb without damage to nail|Open wound of thumb without damage to nail +C2849639|T037|AB|S61.00|ICD10CM|Unspecified open wound of thumb without damage to nail|Unspecified open wound of thumb without damage to nail +C2849639|T037|HT|S61.00|ICD10CM|Unspecified open wound of thumb without damage to nail|Unspecified open wound of thumb without damage to nail +C2849640|T037|AB|S61.001|ICD10CM|Unspecified open wound of right thumb without damage to nail|Unspecified open wound of right thumb without damage to nail +C2849640|T037|HT|S61.001|ICD10CM|Unspecified open wound of right thumb without damage to nail|Unspecified open wound of right thumb without damage to nail +C2849641|T037|AB|S61.001A|ICD10CM|Unsp open wound of right thumb w/o damage to nail, init|Unsp open wound of right thumb w/o damage to nail, init +C2849641|T037|PT|S61.001A|ICD10CM|Unspecified open wound of right thumb without damage to nail, initial encounter|Unspecified open wound of right thumb without damage to nail, initial encounter +C2849642|T037|AB|S61.001D|ICD10CM|Unsp open wound of right thumb w/o damage to nail, subs|Unsp open wound of right thumb w/o damage to nail, subs +C2849642|T037|PT|S61.001D|ICD10CM|Unspecified open wound of right thumb without damage to nail, subsequent encounter|Unspecified open wound of right thumb without damage to nail, subsequent encounter +C2849643|T037|AB|S61.001S|ICD10CM|Unsp open wound of right thumb w/o damage to nail, sequela|Unsp open wound of right thumb w/o damage to nail, sequela +C2849643|T037|PT|S61.001S|ICD10CM|Unspecified open wound of right thumb without damage to nail, sequela|Unspecified open wound of right thumb without damage to nail, sequela +C2849644|T037|AB|S61.002|ICD10CM|Unspecified open wound of left thumb without damage to nail|Unspecified open wound of left thumb without damage to nail +C2849644|T037|HT|S61.002|ICD10CM|Unspecified open wound of left thumb without damage to nail|Unspecified open wound of left thumb without damage to nail +C2849645|T037|AB|S61.002A|ICD10CM|Unsp open wound of left thumb w/o damage to nail, init|Unsp open wound of left thumb w/o damage to nail, init +C2849645|T037|PT|S61.002A|ICD10CM|Unspecified open wound of left thumb without damage to nail, initial encounter|Unspecified open wound of left thumb without damage to nail, initial encounter +C2849646|T037|AB|S61.002D|ICD10CM|Unsp open wound of left thumb w/o damage to nail, subs|Unsp open wound of left thumb w/o damage to nail, subs +C2849646|T037|PT|S61.002D|ICD10CM|Unspecified open wound of left thumb without damage to nail, subsequent encounter|Unspecified open wound of left thumb without damage to nail, subsequent encounter +C2849647|T037|AB|S61.002S|ICD10CM|Unsp open wound of left thumb w/o damage to nail, sequela|Unsp open wound of left thumb w/o damage to nail, sequela +C2849647|T037|PT|S61.002S|ICD10CM|Unspecified open wound of left thumb without damage to nail, sequela|Unspecified open wound of left thumb without damage to nail, sequela +C2849648|T037|AB|S61.009|ICD10CM|Unsp open wound of unspecified thumb without damage to nail|Unsp open wound of unspecified thumb without damage to nail +C2849648|T037|HT|S61.009|ICD10CM|Unspecified open wound of unspecified thumb without damage to nail|Unspecified open wound of unspecified thumb without damage to nail +C2849649|T037|AB|S61.009A|ICD10CM|Unsp open wound of unsp thumb w/o damage to nail, init|Unsp open wound of unsp thumb w/o damage to nail, init +C2849649|T037|PT|S61.009A|ICD10CM|Unspecified open wound of unspecified thumb without damage to nail, initial encounter|Unspecified open wound of unspecified thumb without damage to nail, initial encounter +C2849650|T037|AB|S61.009D|ICD10CM|Unsp open wound of unsp thumb w/o damage to nail, subs|Unsp open wound of unsp thumb w/o damage to nail, subs +C2849650|T037|PT|S61.009D|ICD10CM|Unspecified open wound of unspecified thumb without damage to nail, subsequent encounter|Unspecified open wound of unspecified thumb without damage to nail, subsequent encounter +C2849651|T037|AB|S61.009S|ICD10CM|Unsp open wound of unsp thumb w/o damage to nail, sequela|Unsp open wound of unsp thumb w/o damage to nail, sequela +C2849651|T037|PT|S61.009S|ICD10CM|Unspecified open wound of unspecified thumb without damage to nail, sequela|Unspecified open wound of unspecified thumb without damage to nail, sequela +C2849652|T037|AB|S61.01|ICD10CM|Laceration w/o foreign body of thumb without damage to nail|Laceration w/o foreign body of thumb without damage to nail +C2849652|T037|HT|S61.01|ICD10CM|Laceration without foreign body of thumb without damage to nail|Laceration without foreign body of thumb without damage to nail +C2849653|T037|AB|S61.011|ICD10CM|Laceration w/o fb of right thumb w/o damage to nail|Laceration w/o fb of right thumb w/o damage to nail +C2849653|T037|HT|S61.011|ICD10CM|Laceration without foreign body of right thumb without damage to nail|Laceration without foreign body of right thumb without damage to nail +C2849654|T037|AB|S61.011A|ICD10CM|Laceration w/o fb of right thumb w/o damage to nail, init|Laceration w/o fb of right thumb w/o damage to nail, init +C2849654|T037|PT|S61.011A|ICD10CM|Laceration without foreign body of right thumb without damage to nail, initial encounter|Laceration without foreign body of right thumb without damage to nail, initial encounter +C2849655|T037|AB|S61.011D|ICD10CM|Laceration w/o fb of right thumb w/o damage to nail, subs|Laceration w/o fb of right thumb w/o damage to nail, subs +C2849655|T037|PT|S61.011D|ICD10CM|Laceration without foreign body of right thumb without damage to nail, subsequent encounter|Laceration without foreign body of right thumb without damage to nail, subsequent encounter +C2849656|T037|AB|S61.011S|ICD10CM|Laceration w/o fb of right thumb w/o damage to nail, sequela|Laceration w/o fb of right thumb w/o damage to nail, sequela +C2849656|T037|PT|S61.011S|ICD10CM|Laceration without foreign body of right thumb without damage to nail, sequela|Laceration without foreign body of right thumb without damage to nail, sequela +C2849657|T037|AB|S61.012|ICD10CM|Laceration w/o foreign body of left thumb w/o damage to nail|Laceration w/o foreign body of left thumb w/o damage to nail +C2849657|T037|HT|S61.012|ICD10CM|Laceration without foreign body of left thumb without damage to nail|Laceration without foreign body of left thumb without damage to nail +C2849658|T037|AB|S61.012A|ICD10CM|Laceration w/o fb of left thumb w/o damage to nail, init|Laceration w/o fb of left thumb w/o damage to nail, init +C2849658|T037|PT|S61.012A|ICD10CM|Laceration without foreign body of left thumb without damage to nail, initial encounter|Laceration without foreign body of left thumb without damage to nail, initial encounter +C2849659|T037|AB|S61.012D|ICD10CM|Laceration w/o fb of left thumb w/o damage to nail, subs|Laceration w/o fb of left thumb w/o damage to nail, subs +C2849659|T037|PT|S61.012D|ICD10CM|Laceration without foreign body of left thumb without damage to nail, subsequent encounter|Laceration without foreign body of left thumb without damage to nail, subsequent encounter +C2849660|T037|AB|S61.012S|ICD10CM|Laceration w/o fb of left thumb w/o damage to nail, sequela|Laceration w/o fb of left thumb w/o damage to nail, sequela +C2849660|T037|PT|S61.012S|ICD10CM|Laceration without foreign body of left thumb without damage to nail, sequela|Laceration without foreign body of left thumb without damage to nail, sequela +C2849661|T037|AB|S61.019|ICD10CM|Laceration w/o foreign body of unsp thumb w/o damage to nail|Laceration w/o foreign body of unsp thumb w/o damage to nail +C2849661|T037|HT|S61.019|ICD10CM|Laceration without foreign body of unspecified thumb without damage to nail|Laceration without foreign body of unspecified thumb without damage to nail +C2849662|T037|AB|S61.019A|ICD10CM|Laceration w/o foreign body of thmb w/o damage to nail, init|Laceration w/o foreign body of thmb w/o damage to nail, init +C2849662|T037|PT|S61.019A|ICD10CM|Laceration without foreign body of unspecified thumb without damage to nail, initial encounter|Laceration without foreign body of unspecified thumb without damage to nail, initial encounter +C2849663|T037|AB|S61.019D|ICD10CM|Laceration w/o foreign body of thmb w/o damage to nail, subs|Laceration w/o foreign body of thmb w/o damage to nail, subs +C2849663|T037|PT|S61.019D|ICD10CM|Laceration without foreign body of unspecified thumb without damage to nail, subsequent encounter|Laceration without foreign body of unspecified thumb without damage to nail, subsequent encounter +C2849664|T037|AB|S61.019S|ICD10CM|Laceration w/o fb of thmb w/o damage to nail, sequela|Laceration w/o fb of thmb w/o damage to nail, sequela +C2849664|T037|PT|S61.019S|ICD10CM|Laceration without foreign body of unspecified thumb without damage to nail, sequela|Laceration without foreign body of unspecified thumb without damage to nail, sequela +C2849665|T037|AB|S61.02|ICD10CM|Laceration with foreign body of thumb without damage to nail|Laceration with foreign body of thumb without damage to nail +C2849665|T037|HT|S61.02|ICD10CM|Laceration with foreign body of thumb without damage to nail|Laceration with foreign body of thumb without damage to nail +C2849666|T037|AB|S61.021|ICD10CM|Laceration w foreign body of right thumb w/o damage to nail|Laceration w foreign body of right thumb w/o damage to nail +C2849666|T037|HT|S61.021|ICD10CM|Laceration with foreign body of right thumb without damage to nail|Laceration with foreign body of right thumb without damage to nail +C2849667|T037|AB|S61.021A|ICD10CM|Laceration w fb of right thumb w/o damage to nail, init|Laceration w fb of right thumb w/o damage to nail, init +C2849667|T037|PT|S61.021A|ICD10CM|Laceration with foreign body of right thumb without damage to nail, initial encounter|Laceration with foreign body of right thumb without damage to nail, initial encounter +C2849668|T037|AB|S61.021D|ICD10CM|Laceration w fb of right thumb w/o damage to nail, subs|Laceration w fb of right thumb w/o damage to nail, subs +C2849668|T037|PT|S61.021D|ICD10CM|Laceration with foreign body of right thumb without damage to nail, subsequent encounter|Laceration with foreign body of right thumb without damage to nail, subsequent encounter +C2849669|T037|AB|S61.021S|ICD10CM|Laceration w fb of right thumb w/o damage to nail, sequela|Laceration w fb of right thumb w/o damage to nail, sequela +C2849669|T037|PT|S61.021S|ICD10CM|Laceration with foreign body of right thumb without damage to nail, sequela|Laceration with foreign body of right thumb without damage to nail, sequela +C2849670|T037|AB|S61.022|ICD10CM|Laceration w foreign body of left thumb w/o damage to nail|Laceration w foreign body of left thumb w/o damage to nail +C2849670|T037|HT|S61.022|ICD10CM|Laceration with foreign body of left thumb without damage to nail|Laceration with foreign body of left thumb without damage to nail +C2849671|T037|AB|S61.022A|ICD10CM|Laceration w fb of left thumb w/o damage to nail, init|Laceration w fb of left thumb w/o damage to nail, init +C2849671|T037|PT|S61.022A|ICD10CM|Laceration with foreign body of left thumb without damage to nail, initial encounter|Laceration with foreign body of left thumb without damage to nail, initial encounter +C2849672|T037|AB|S61.022D|ICD10CM|Laceration w fb of left thumb w/o damage to nail, subs|Laceration w fb of left thumb w/o damage to nail, subs +C2849672|T037|PT|S61.022D|ICD10CM|Laceration with foreign body of left thumb without damage to nail, subsequent encounter|Laceration with foreign body of left thumb without damage to nail, subsequent encounter +C2849673|T037|AB|S61.022S|ICD10CM|Laceration w fb of left thumb w/o damage to nail, sequela|Laceration w fb of left thumb w/o damage to nail, sequela +C2849673|T037|PT|S61.022S|ICD10CM|Laceration with foreign body of left thumb without damage to nail, sequela|Laceration with foreign body of left thumb without damage to nail, sequela +C2849674|T037|AB|S61.029|ICD10CM|Laceration w foreign body of unsp thumb w/o damage to nail|Laceration w foreign body of unsp thumb w/o damage to nail +C2849674|T037|HT|S61.029|ICD10CM|Laceration with foreign body of unspecified thumb without damage to nail|Laceration with foreign body of unspecified thumb without damage to nail +C2849675|T037|AB|S61.029A|ICD10CM|Laceration w foreign body of thmb w/o damage to nail, init|Laceration w foreign body of thmb w/o damage to nail, init +C2849675|T037|PT|S61.029A|ICD10CM|Laceration with foreign body of unspecified thumb without damage to nail, initial encounter|Laceration with foreign body of unspecified thumb without damage to nail, initial encounter +C2849676|T037|AB|S61.029D|ICD10CM|Laceration w foreign body of thmb w/o damage to nail, subs|Laceration w foreign body of thmb w/o damage to nail, subs +C2849676|T037|PT|S61.029D|ICD10CM|Laceration with foreign body of unspecified thumb without damage to nail, subsequent encounter|Laceration with foreign body of unspecified thumb without damage to nail, subsequent encounter +C2849677|T037|AB|S61.029S|ICD10CM|Laceration w fb of thmb w/o damage to nail, sequela|Laceration w fb of thmb w/o damage to nail, sequela +C2849677|T037|PT|S61.029S|ICD10CM|Laceration with foreign body of unspecified thumb without damage to nail, sequela|Laceration with foreign body of unspecified thumb without damage to nail, sequela +C2849678|T037|AB|S61.03|ICD10CM|Puncture wound w/o foreign body of thumb w/o damage to nail|Puncture wound w/o foreign body of thumb w/o damage to nail +C2849678|T037|HT|S61.03|ICD10CM|Puncture wound without foreign body of thumb without damage to nail|Puncture wound without foreign body of thumb without damage to nail +C2849679|T037|AB|S61.031|ICD10CM|Pnctr w/o foreign body of right thumb w/o damage to nail|Pnctr w/o foreign body of right thumb w/o damage to nail +C2849679|T037|HT|S61.031|ICD10CM|Puncture wound without foreign body of right thumb without damage to nail|Puncture wound without foreign body of right thumb without damage to nail +C2849680|T037|AB|S61.031A|ICD10CM|Pnctr w/o fb of right thumb w/o damage to nail, init|Pnctr w/o fb of right thumb w/o damage to nail, init +C2849680|T037|PT|S61.031A|ICD10CM|Puncture wound without foreign body of right thumb without damage to nail, initial encounter|Puncture wound without foreign body of right thumb without damage to nail, initial encounter +C2849681|T037|AB|S61.031D|ICD10CM|Pnctr w/o fb of right thumb w/o damage to nail, subs|Pnctr w/o fb of right thumb w/o damage to nail, subs +C2849681|T037|PT|S61.031D|ICD10CM|Puncture wound without foreign body of right thumb without damage to nail, subsequent encounter|Puncture wound without foreign body of right thumb without damage to nail, subsequent encounter +C2849682|T037|AB|S61.031S|ICD10CM|Pnctr w/o fb of right thumb w/o damage to nail, sequela|Pnctr w/o fb of right thumb w/o damage to nail, sequela +C2849682|T037|PT|S61.031S|ICD10CM|Puncture wound without foreign body of right thumb without damage to nail, sequela|Puncture wound without foreign body of right thumb without damage to nail, sequela +C2849683|T037|AB|S61.032|ICD10CM|Pnctr w/o foreign body of left thumb w/o damage to nail|Pnctr w/o foreign body of left thumb w/o damage to nail +C2849683|T037|HT|S61.032|ICD10CM|Puncture wound without foreign body of left thumb without damage to nail|Puncture wound without foreign body of left thumb without damage to nail +C2849684|T037|AB|S61.032A|ICD10CM|Pnctr w/o fb of left thumb w/o damage to nail, init|Pnctr w/o fb of left thumb w/o damage to nail, init +C2849684|T037|PT|S61.032A|ICD10CM|Puncture wound without foreign body of left thumb without damage to nail, initial encounter|Puncture wound without foreign body of left thumb without damage to nail, initial encounter +C2849685|T037|AB|S61.032D|ICD10CM|Pnctr w/o fb of left thumb w/o damage to nail, subs|Pnctr w/o fb of left thumb w/o damage to nail, subs +C2849685|T037|PT|S61.032D|ICD10CM|Puncture wound without foreign body of left thumb without damage to nail, subsequent encounter|Puncture wound without foreign body of left thumb without damage to nail, subsequent encounter +C2849686|T037|AB|S61.032S|ICD10CM|Pnctr w/o fb of left thumb w/o damage to nail, sequela|Pnctr w/o fb of left thumb w/o damage to nail, sequela +C2849686|T037|PT|S61.032S|ICD10CM|Puncture wound without foreign body of left thumb without damage to nail, sequela|Puncture wound without foreign body of left thumb without damage to nail, sequela +C2849687|T037|AB|S61.039|ICD10CM|Puncture wound w/o foreign body of thmb w/o damage to nail|Puncture wound w/o foreign body of thmb w/o damage to nail +C2849687|T037|HT|S61.039|ICD10CM|Puncture wound without foreign body of unspecified thumb without damage to nail|Puncture wound without foreign body of unspecified thumb without damage to nail +C2849688|T037|AB|S61.039A|ICD10CM|Pnctr w/o foreign body of thmb w/o damage to nail, init|Pnctr w/o foreign body of thmb w/o damage to nail, init +C2849688|T037|PT|S61.039A|ICD10CM|Puncture wound without foreign body of unspecified thumb without damage to nail, initial encounter|Puncture wound without foreign body of unspecified thumb without damage to nail, initial encounter +C2849689|T037|AB|S61.039D|ICD10CM|Pnctr w/o foreign body of thmb w/o damage to nail, subs|Pnctr w/o foreign body of thmb w/o damage to nail, subs +C2849690|T037|AB|S61.039S|ICD10CM|Pnctr w/o foreign body of thmb w/o damage to nail, sequela|Pnctr w/o foreign body of thmb w/o damage to nail, sequela +C2849690|T037|PT|S61.039S|ICD10CM|Puncture wound without foreign body of unspecified thumb without damage to nail, sequela|Puncture wound without foreign body of unspecified thumb without damage to nail, sequela +C2849691|T037|AB|S61.04|ICD10CM|Puncture wound with foreign body of thumb w/o damage to nail|Puncture wound with foreign body of thumb w/o damage to nail +C2849691|T037|HT|S61.04|ICD10CM|Puncture wound with foreign body of thumb without damage to nail|Puncture wound with foreign body of thumb without damage to nail +C2849692|T037|AB|S61.041|ICD10CM|Pnctr w foreign body of right thumb w/o damage to nail|Pnctr w foreign body of right thumb w/o damage to nail +C2849692|T037|HT|S61.041|ICD10CM|Puncture wound with foreign body of right thumb without damage to nail|Puncture wound with foreign body of right thumb without damage to nail +C2849693|T037|AB|S61.041A|ICD10CM|Pnctr w foreign body of right thumb w/o damage to nail, init|Pnctr w foreign body of right thumb w/o damage to nail, init +C2849693|T037|PT|S61.041A|ICD10CM|Puncture wound with foreign body of right thumb without damage to nail, initial encounter|Puncture wound with foreign body of right thumb without damage to nail, initial encounter +C2849694|T037|AB|S61.041D|ICD10CM|Pnctr w foreign body of right thumb w/o damage to nail, subs|Pnctr w foreign body of right thumb w/o damage to nail, subs +C2849694|T037|PT|S61.041D|ICD10CM|Puncture wound with foreign body of right thumb without damage to nail, subsequent encounter|Puncture wound with foreign body of right thumb without damage to nail, subsequent encounter +C2849695|T037|AB|S61.041S|ICD10CM|Pnctr w fb of right thumb w/o damage to nail, sequela|Pnctr w fb of right thumb w/o damage to nail, sequela +C2849695|T037|PT|S61.041S|ICD10CM|Puncture wound with foreign body of right thumb without damage to nail, sequela|Puncture wound with foreign body of right thumb without damage to nail, sequela +C2849696|T037|AB|S61.042|ICD10CM|Pnctr w foreign body of left thumb w/o damage to nail|Pnctr w foreign body of left thumb w/o damage to nail +C2849696|T037|HT|S61.042|ICD10CM|Puncture wound with foreign body of left thumb without damage to nail|Puncture wound with foreign body of left thumb without damage to nail +C2849697|T037|AB|S61.042A|ICD10CM|Pnctr w foreign body of left thumb w/o damage to nail, init|Pnctr w foreign body of left thumb w/o damage to nail, init +C2849697|T037|PT|S61.042A|ICD10CM|Puncture wound with foreign body of left thumb without damage to nail, initial encounter|Puncture wound with foreign body of left thumb without damage to nail, initial encounter +C2849698|T037|AB|S61.042D|ICD10CM|Pnctr w foreign body of left thumb w/o damage to nail, subs|Pnctr w foreign body of left thumb w/o damage to nail, subs +C2849698|T037|PT|S61.042D|ICD10CM|Puncture wound with foreign body of left thumb without damage to nail, subsequent encounter|Puncture wound with foreign body of left thumb without damage to nail, subsequent encounter +C2849699|T037|AB|S61.042S|ICD10CM|Pnctr w fb of left thumb w/o damage to nail, sequela|Pnctr w fb of left thumb w/o damage to nail, sequela +C2849699|T037|PT|S61.042S|ICD10CM|Puncture wound with foreign body of left thumb without damage to nail, sequela|Puncture wound with foreign body of left thumb without damage to nail, sequela +C2849700|T037|AB|S61.049|ICD10CM|Puncture wound w foreign body of thmb w/o damage to nail|Puncture wound w foreign body of thmb w/o damage to nail +C2849700|T037|HT|S61.049|ICD10CM|Puncture wound with foreign body of unspecified thumb without damage to nail|Puncture wound with foreign body of unspecified thumb without damage to nail +C2849701|T037|AB|S61.049A|ICD10CM|Pnctr w foreign body of thmb w/o damage to nail, init|Pnctr w foreign body of thmb w/o damage to nail, init +C2849701|T037|PT|S61.049A|ICD10CM|Puncture wound with foreign body of unspecified thumb without damage to nail, initial encounter|Puncture wound with foreign body of unspecified thumb without damage to nail, initial encounter +C2849702|T037|AB|S61.049D|ICD10CM|Pnctr w foreign body of thmb w/o damage to nail, subs|Pnctr w foreign body of thmb w/o damage to nail, subs +C2849702|T037|PT|S61.049D|ICD10CM|Puncture wound with foreign body of unspecified thumb without damage to nail, subsequent encounter|Puncture wound with foreign body of unspecified thumb without damage to nail, subsequent encounter +C2849703|T037|AB|S61.049S|ICD10CM|Pnctr w foreign body of thmb w/o damage to nail, sequela|Pnctr w foreign body of thmb w/o damage to nail, sequela +C2849703|T037|PT|S61.049S|ICD10CM|Puncture wound with foreign body of unspecified thumb without damage to nail, sequela|Puncture wound with foreign body of unspecified thumb without damage to nail, sequela +C2849704|T037|ET|S61.05|ICD10CM|Bite of thumb NOS|Bite of thumb NOS +C2849705|T037|HT|S61.05|ICD10CM|Open bite of thumb without damage to nail|Open bite of thumb without damage to nail +C2849705|T037|AB|S61.05|ICD10CM|Open bite of thumb without damage to nail|Open bite of thumb without damage to nail +C2849706|T037|AB|S61.051|ICD10CM|Open bite of right thumb without damage to nail|Open bite of right thumb without damage to nail +C2849706|T037|HT|S61.051|ICD10CM|Open bite of right thumb without damage to nail|Open bite of right thumb without damage to nail +C2849707|T037|AB|S61.051A|ICD10CM|Open bite of right thumb without damage to nail, init encntr|Open bite of right thumb without damage to nail, init encntr +C2849707|T037|PT|S61.051A|ICD10CM|Open bite of right thumb without damage to nail, initial encounter|Open bite of right thumb without damage to nail, initial encounter +C2849708|T037|AB|S61.051D|ICD10CM|Open bite of right thumb without damage to nail, subs encntr|Open bite of right thumb without damage to nail, subs encntr +C2849708|T037|PT|S61.051D|ICD10CM|Open bite of right thumb without damage to nail, subsequent encounter|Open bite of right thumb without damage to nail, subsequent encounter +C2849709|T037|AB|S61.051S|ICD10CM|Open bite of right thumb without damage to nail, sequela|Open bite of right thumb without damage to nail, sequela +C2849709|T037|PT|S61.051S|ICD10CM|Open bite of right thumb without damage to nail, sequela|Open bite of right thumb without damage to nail, sequela +C2849710|T037|AB|S61.052|ICD10CM|Open bite of left thumb without damage to nail|Open bite of left thumb without damage to nail +C2849710|T037|HT|S61.052|ICD10CM|Open bite of left thumb without damage to nail|Open bite of left thumb without damage to nail +C2849711|T037|AB|S61.052A|ICD10CM|Open bite of left thumb without damage to nail, init encntr|Open bite of left thumb without damage to nail, init encntr +C2849711|T037|PT|S61.052A|ICD10CM|Open bite of left thumb without damage to nail, initial encounter|Open bite of left thumb without damage to nail, initial encounter +C2849712|T037|AB|S61.052D|ICD10CM|Open bite of left thumb without damage to nail, subs encntr|Open bite of left thumb without damage to nail, subs encntr +C2849712|T037|PT|S61.052D|ICD10CM|Open bite of left thumb without damage to nail, subsequent encounter|Open bite of left thumb without damage to nail, subsequent encounter +C2849713|T037|AB|S61.052S|ICD10CM|Open bite of left thumb without damage to nail, sequela|Open bite of left thumb without damage to nail, sequela +C2849713|T037|PT|S61.052S|ICD10CM|Open bite of left thumb without damage to nail, sequela|Open bite of left thumb without damage to nail, sequela +C2849714|T037|AB|S61.059|ICD10CM|Open bite of unspecified thumb without damage to nail|Open bite of unspecified thumb without damage to nail +C2849714|T037|HT|S61.059|ICD10CM|Open bite of unspecified thumb without damage to nail|Open bite of unspecified thumb without damage to nail +C2849715|T037|AB|S61.059A|ICD10CM|Open bite of unsp thumb without damage to nail, init encntr|Open bite of unsp thumb without damage to nail, init encntr +C2849715|T037|PT|S61.059A|ICD10CM|Open bite of unspecified thumb without damage to nail, initial encounter|Open bite of unspecified thumb without damage to nail, initial encounter +C2849716|T037|AB|S61.059D|ICD10CM|Open bite of unsp thumb without damage to nail, subs encntr|Open bite of unsp thumb without damage to nail, subs encntr +C2849716|T037|PT|S61.059D|ICD10CM|Open bite of unspecified thumb without damage to nail, subsequent encounter|Open bite of unspecified thumb without damage to nail, subsequent encounter +C2849717|T037|AB|S61.059S|ICD10CM|Open bite of unsp thumb without damage to nail, sequela|Open bite of unsp thumb without damage to nail, sequela +C2849717|T037|PT|S61.059S|ICD10CM|Open bite of unspecified thumb without damage to nail, sequela|Open bite of unspecified thumb without damage to nail, sequela +C0495898|T037|PT|S61.1|ICD10|Open wound of finger(s) with damage to nail|Open wound of finger(s) with damage to nail +C2849718|T037|HT|S61.1|ICD10CM|Open wound of thumb with damage to nail|Open wound of thumb with damage to nail +C2849718|T037|AB|S61.1|ICD10CM|Open wound of thumb with damage to nail|Open wound of thumb with damage to nail +C2849719|T037|AB|S61.10|ICD10CM|Unspecified open wound of thumb with damage to nail|Unspecified open wound of thumb with damage to nail +C2849719|T037|HT|S61.10|ICD10CM|Unspecified open wound of thumb with damage to nail|Unspecified open wound of thumb with damage to nail +C2849720|T037|AB|S61.101|ICD10CM|Unspecified open wound of right thumb with damage to nail|Unspecified open wound of right thumb with damage to nail +C2849720|T037|HT|S61.101|ICD10CM|Unspecified open wound of right thumb with damage to nail|Unspecified open wound of right thumb with damage to nail +C2849721|T037|AB|S61.101A|ICD10CM|Unsp open wound of right thumb w damage to nail, init encntr|Unsp open wound of right thumb w damage to nail, init encntr +C2849721|T037|PT|S61.101A|ICD10CM|Unspecified open wound of right thumb with damage to nail, initial encounter|Unspecified open wound of right thumb with damage to nail, initial encounter +C2849722|T037|AB|S61.101D|ICD10CM|Unsp open wound of right thumb w damage to nail, subs encntr|Unsp open wound of right thumb w damage to nail, subs encntr +C2849722|T037|PT|S61.101D|ICD10CM|Unspecified open wound of right thumb with damage to nail, subsequent encounter|Unspecified open wound of right thumb with damage to nail, subsequent encounter +C2849723|T037|AB|S61.101S|ICD10CM|Unsp open wound of right thumb with damage to nail, sequela|Unsp open wound of right thumb with damage to nail, sequela +C2849723|T037|PT|S61.101S|ICD10CM|Unspecified open wound of right thumb with damage to nail, sequela|Unspecified open wound of right thumb with damage to nail, sequela +C2849724|T037|AB|S61.102|ICD10CM|Unspecified open wound of left thumb with damage to nail|Unspecified open wound of left thumb with damage to nail +C2849724|T037|HT|S61.102|ICD10CM|Unspecified open wound of left thumb with damage to nail|Unspecified open wound of left thumb with damage to nail +C2849725|T037|AB|S61.102A|ICD10CM|Unsp open wound of left thumb w damage to nail, init encntr|Unsp open wound of left thumb w damage to nail, init encntr +C2849725|T037|PT|S61.102A|ICD10CM|Unspecified open wound of left thumb with damage to nail, initial encounter|Unspecified open wound of left thumb with damage to nail, initial encounter +C2849726|T037|AB|S61.102D|ICD10CM|Unsp open wound of left thumb w damage to nail, subs encntr|Unsp open wound of left thumb w damage to nail, subs encntr +C2849726|T037|PT|S61.102D|ICD10CM|Unspecified open wound of left thumb with damage to nail, subsequent encounter|Unspecified open wound of left thumb with damage to nail, subsequent encounter +C2849727|T037|AB|S61.102S|ICD10CM|Unsp open wound of left thumb with damage to nail, sequela|Unsp open wound of left thumb with damage to nail, sequela +C2849727|T037|PT|S61.102S|ICD10CM|Unspecified open wound of left thumb with damage to nail, sequela|Unspecified open wound of left thumb with damage to nail, sequela +C2849728|T037|AB|S61.109|ICD10CM|Unsp open wound of unspecified thumb with damage to nail|Unsp open wound of unspecified thumb with damage to nail +C2849728|T037|HT|S61.109|ICD10CM|Unspecified open wound of unspecified thumb with damage to nail|Unspecified open wound of unspecified thumb with damage to nail +C2849729|T037|AB|S61.109A|ICD10CM|Unsp open wound of unsp thumb w damage to nail, init encntr|Unsp open wound of unsp thumb w damage to nail, init encntr +C2849729|T037|PT|S61.109A|ICD10CM|Unspecified open wound of unspecified thumb with damage to nail, initial encounter|Unspecified open wound of unspecified thumb with damage to nail, initial encounter +C2849730|T037|AB|S61.109D|ICD10CM|Unsp open wound of unsp thumb w damage to nail, subs encntr|Unsp open wound of unsp thumb w damage to nail, subs encntr +C2849730|T037|PT|S61.109D|ICD10CM|Unspecified open wound of unspecified thumb with damage to nail, subsequent encounter|Unspecified open wound of unspecified thumb with damage to nail, subsequent encounter +C2849731|T037|AB|S61.109S|ICD10CM|Unsp open wound of unsp thumb with damage to nail, sequela|Unsp open wound of unsp thumb with damage to nail, sequela +C2849731|T037|PT|S61.109S|ICD10CM|Unspecified open wound of unspecified thumb with damage to nail, sequela|Unspecified open wound of unspecified thumb with damage to nail, sequela +C2849732|T037|AB|S61.11|ICD10CM|Laceration without foreign body of thumb with damage to nail|Laceration without foreign body of thumb with damage to nail +C2849732|T037|HT|S61.11|ICD10CM|Laceration without foreign body of thumb with damage to nail|Laceration without foreign body of thumb with damage to nail +C2849733|T037|AB|S61.111|ICD10CM|Laceration w/o foreign body of right thumb w damage to nail|Laceration w/o foreign body of right thumb w damage to nail +C2849733|T037|HT|S61.111|ICD10CM|Laceration without foreign body of right thumb with damage to nail|Laceration without foreign body of right thumb with damage to nail +C2849734|T037|AB|S61.111A|ICD10CM|Laceration w/o fb of right thumb w damage to nail, init|Laceration w/o fb of right thumb w damage to nail, init +C2849734|T037|PT|S61.111A|ICD10CM|Laceration without foreign body of right thumb with damage to nail, initial encounter|Laceration without foreign body of right thumb with damage to nail, initial encounter +C2849735|T037|AB|S61.111D|ICD10CM|Laceration w/o fb of right thumb w damage to nail, subs|Laceration w/o fb of right thumb w damage to nail, subs +C2849735|T037|PT|S61.111D|ICD10CM|Laceration without foreign body of right thumb with damage to nail, subsequent encounter|Laceration without foreign body of right thumb with damage to nail, subsequent encounter +C2849736|T037|AB|S61.111S|ICD10CM|Laceration w/o fb of right thumb w damage to nail, sequela|Laceration w/o fb of right thumb w damage to nail, sequela +C2849736|T037|PT|S61.111S|ICD10CM|Laceration without foreign body of right thumb with damage to nail, sequela|Laceration without foreign body of right thumb with damage to nail, sequela +C2849737|T037|AB|S61.112|ICD10CM|Laceration w/o foreign body of left thumb w damage to nail|Laceration w/o foreign body of left thumb w damage to nail +C2849737|T037|HT|S61.112|ICD10CM|Laceration without foreign body of left thumb with damage to nail|Laceration without foreign body of left thumb with damage to nail +C2849738|T037|AB|S61.112A|ICD10CM|Laceration w/o fb of left thumb w damage to nail, init|Laceration w/o fb of left thumb w damage to nail, init +C2849738|T037|PT|S61.112A|ICD10CM|Laceration without foreign body of left thumb with damage to nail, initial encounter|Laceration without foreign body of left thumb with damage to nail, initial encounter +C2849739|T037|AB|S61.112D|ICD10CM|Laceration w/o fb of left thumb w damage to nail, subs|Laceration w/o fb of left thumb w damage to nail, subs +C2849739|T037|PT|S61.112D|ICD10CM|Laceration without foreign body of left thumb with damage to nail, subsequent encounter|Laceration without foreign body of left thumb with damage to nail, subsequent encounter +C2849740|T037|AB|S61.112S|ICD10CM|Laceration w/o fb of left thumb w damage to nail, sequela|Laceration w/o fb of left thumb w damage to nail, sequela +C2849740|T037|PT|S61.112S|ICD10CM|Laceration without foreign body of left thumb with damage to nail, sequela|Laceration without foreign body of left thumb with damage to nail, sequela +C2849741|T037|AB|S61.119|ICD10CM|Laceration w/o foreign body of unsp thumb w damage to nail|Laceration w/o foreign body of unsp thumb w damage to nail +C2849741|T037|HT|S61.119|ICD10CM|Laceration without foreign body of unspecified thumb with damage to nail|Laceration without foreign body of unspecified thumb with damage to nail +C2849742|T037|AB|S61.119A|ICD10CM|Laceration w/o foreign body of thmb w damage to nail, init|Laceration w/o foreign body of thmb w damage to nail, init +C2849742|T037|PT|S61.119A|ICD10CM|Laceration without foreign body of unspecified thumb with damage to nail, initial encounter|Laceration without foreign body of unspecified thumb with damage to nail, initial encounter +C2849743|T037|AB|S61.119D|ICD10CM|Laceration w/o foreign body of thmb w damage to nail, subs|Laceration w/o foreign body of thmb w damage to nail, subs +C2849743|T037|PT|S61.119D|ICD10CM|Laceration without foreign body of unspecified thumb with damage to nail, subsequent encounter|Laceration without foreign body of unspecified thumb with damage to nail, subsequent encounter +C2849744|T037|AB|S61.119S|ICD10CM|Laceration w/o fb of thmb w damage to nail, sequela|Laceration w/o fb of thmb w damage to nail, sequela +C2849744|T037|PT|S61.119S|ICD10CM|Laceration without foreign body of unspecified thumb with damage to nail, sequela|Laceration without foreign body of unspecified thumb with damage to nail, sequela +C2849745|T037|AB|S61.12|ICD10CM|Laceration with foreign body of thumb with damage to nail|Laceration with foreign body of thumb with damage to nail +C2849745|T037|HT|S61.12|ICD10CM|Laceration with foreign body of thumb with damage to nail|Laceration with foreign body of thumb with damage to nail +C2849746|T037|AB|S61.121|ICD10CM|Laceration w foreign body of right thumb with damage to nail|Laceration w foreign body of right thumb with damage to nail +C2849746|T037|HT|S61.121|ICD10CM|Laceration with foreign body of right thumb with damage to nail|Laceration with foreign body of right thumb with damage to nail +C2849747|T037|AB|S61.121A|ICD10CM|Laceration w fb of right thumb w damage to nail, init|Laceration w fb of right thumb w damage to nail, init +C2849747|T037|PT|S61.121A|ICD10CM|Laceration with foreign body of right thumb with damage to nail, initial encounter|Laceration with foreign body of right thumb with damage to nail, initial encounter +C2849748|T037|AB|S61.121D|ICD10CM|Laceration w fb of right thumb w damage to nail, subs|Laceration w fb of right thumb w damage to nail, subs +C2849748|T037|PT|S61.121D|ICD10CM|Laceration with foreign body of right thumb with damage to nail, subsequent encounter|Laceration with foreign body of right thumb with damage to nail, subsequent encounter +C2849749|T037|AB|S61.121S|ICD10CM|Laceration w fb of right thumb w damage to nail, sequela|Laceration w fb of right thumb w damage to nail, sequela +C2849749|T037|PT|S61.121S|ICD10CM|Laceration with foreign body of right thumb with damage to nail, sequela|Laceration with foreign body of right thumb with damage to nail, sequela +C2849750|T037|AB|S61.122|ICD10CM|Laceration w foreign body of left thumb with damage to nail|Laceration w foreign body of left thumb with damage to nail +C2849750|T037|HT|S61.122|ICD10CM|Laceration with foreign body of left thumb with damage to nail|Laceration with foreign body of left thumb with damage to nail +C2849751|T037|AB|S61.122A|ICD10CM|Laceration w fb of left thumb w damage to nail, init|Laceration w fb of left thumb w damage to nail, init +C2849751|T037|PT|S61.122A|ICD10CM|Laceration with foreign body of left thumb with damage to nail, initial encounter|Laceration with foreign body of left thumb with damage to nail, initial encounter +C2849752|T037|AB|S61.122D|ICD10CM|Laceration w fb of left thumb w damage to nail, subs|Laceration w fb of left thumb w damage to nail, subs +C2849752|T037|PT|S61.122D|ICD10CM|Laceration with foreign body of left thumb with damage to nail, subsequent encounter|Laceration with foreign body of left thumb with damage to nail, subsequent encounter +C2849753|T037|AB|S61.122S|ICD10CM|Laceration w fb of left thumb w damage to nail, sequela|Laceration w fb of left thumb w damage to nail, sequela +C2849753|T037|PT|S61.122S|ICD10CM|Laceration with foreign body of left thumb with damage to nail, sequela|Laceration with foreign body of left thumb with damage to nail, sequela +C2849754|T037|AB|S61.129|ICD10CM|Laceration w foreign body of unsp thumb with damage to nail|Laceration w foreign body of unsp thumb with damage to nail +C2849754|T037|HT|S61.129|ICD10CM|Laceration with foreign body of unspecified thumb with damage to nail|Laceration with foreign body of unspecified thumb with damage to nail +C2849755|T037|AB|S61.129A|ICD10CM|Laceration w foreign body of thmb w damage to nail, init|Laceration w foreign body of thmb w damage to nail, init +C2849755|T037|PT|S61.129A|ICD10CM|Laceration with foreign body of unspecified thumb with damage to nail, initial encounter|Laceration with foreign body of unspecified thumb with damage to nail, initial encounter +C2849756|T037|AB|S61.129D|ICD10CM|Laceration w foreign body of thmb w damage to nail, subs|Laceration w foreign body of thmb w damage to nail, subs +C2849756|T037|PT|S61.129D|ICD10CM|Laceration with foreign body of unspecified thumb with damage to nail, subsequent encounter|Laceration with foreign body of unspecified thumb with damage to nail, subsequent encounter +C2849757|T037|AB|S61.129S|ICD10CM|Laceration w foreign body of thmb w damage to nail, sequela|Laceration w foreign body of thmb w damage to nail, sequela +C2849757|T037|PT|S61.129S|ICD10CM|Laceration with foreign body of unspecified thumb with damage to nail, sequela|Laceration with foreign body of unspecified thumb with damage to nail, sequela +C2849758|T037|AB|S61.13|ICD10CM|Puncture wound w/o foreign body of thumb with damage to nail|Puncture wound w/o foreign body of thumb with damage to nail +C2849758|T037|HT|S61.13|ICD10CM|Puncture wound without foreign body of thumb with damage to nail|Puncture wound without foreign body of thumb with damage to nail +C2849759|T037|AB|S61.131|ICD10CM|Pnctr w/o foreign body of right thumb w damage to nail|Pnctr w/o foreign body of right thumb w damage to nail +C2849759|T037|HT|S61.131|ICD10CM|Puncture wound without foreign body of right thumb with damage to nail|Puncture wound without foreign body of right thumb with damage to nail +C2849760|T037|AB|S61.131A|ICD10CM|Pnctr w/o foreign body of right thumb w damage to nail, init|Pnctr w/o foreign body of right thumb w damage to nail, init +C2849760|T037|PT|S61.131A|ICD10CM|Puncture wound without foreign body of right thumb with damage to nail, initial encounter|Puncture wound without foreign body of right thumb with damage to nail, initial encounter +C2849761|T037|AB|S61.131D|ICD10CM|Pnctr w/o foreign body of right thumb w damage to nail, subs|Pnctr w/o foreign body of right thumb w damage to nail, subs +C2849761|T037|PT|S61.131D|ICD10CM|Puncture wound without foreign body of right thumb with damage to nail, subsequent encounter|Puncture wound without foreign body of right thumb with damage to nail, subsequent encounter +C2849762|T037|AB|S61.131S|ICD10CM|Pnctr w/o fb of right thumb w damage to nail, sequela|Pnctr w/o fb of right thumb w damage to nail, sequela +C2849762|T037|PT|S61.131S|ICD10CM|Puncture wound without foreign body of right thumb with damage to nail, sequela|Puncture wound without foreign body of right thumb with damage to nail, sequela +C2849763|T037|AB|S61.132|ICD10CM|Pnctr w/o foreign body of left thumb w damage to nail|Pnctr w/o foreign body of left thumb w damage to nail +C2849763|T037|HT|S61.132|ICD10CM|Puncture wound without foreign body of left thumb with damage to nail|Puncture wound without foreign body of left thumb with damage to nail +C2849764|T037|AB|S61.132A|ICD10CM|Pnctr w/o foreign body of left thumb w damage to nail, init|Pnctr w/o foreign body of left thumb w damage to nail, init +C2849764|T037|PT|S61.132A|ICD10CM|Puncture wound without foreign body of left thumb with damage to nail, initial encounter|Puncture wound without foreign body of left thumb with damage to nail, initial encounter +C2849765|T037|AB|S61.132D|ICD10CM|Pnctr w/o foreign body of left thumb w damage to nail, subs|Pnctr w/o foreign body of left thumb w damage to nail, subs +C2849765|T037|PT|S61.132D|ICD10CM|Puncture wound without foreign body of left thumb with damage to nail, subsequent encounter|Puncture wound without foreign body of left thumb with damage to nail, subsequent encounter +C2849766|T037|AB|S61.132S|ICD10CM|Pnctr w/o fb of left thumb w damage to nail, sequela|Pnctr w/o fb of left thumb w damage to nail, sequela +C2849766|T037|PT|S61.132S|ICD10CM|Puncture wound without foreign body of left thumb with damage to nail, sequela|Puncture wound without foreign body of left thumb with damage to nail, sequela +C2849767|T037|AB|S61.139|ICD10CM|Puncture wound w/o foreign body of thmb w damage to nail|Puncture wound w/o foreign body of thmb w damage to nail +C2849767|T037|HT|S61.139|ICD10CM|Puncture wound without foreign body of unspecified thumb with damage to nail|Puncture wound without foreign body of unspecified thumb with damage to nail +C2849768|T037|AB|S61.139A|ICD10CM|Pnctr w/o foreign body of thmb w damage to nail, init|Pnctr w/o foreign body of thmb w damage to nail, init +C2849768|T037|PT|S61.139A|ICD10CM|Puncture wound without foreign body of unspecified thumb with damage to nail, initial encounter|Puncture wound without foreign body of unspecified thumb with damage to nail, initial encounter +C2849769|T037|AB|S61.139D|ICD10CM|Pnctr w/o foreign body of thmb w damage to nail, subs|Pnctr w/o foreign body of thmb w damage to nail, subs +C2849769|T037|PT|S61.139D|ICD10CM|Puncture wound without foreign body of unspecified thumb with damage to nail, subsequent encounter|Puncture wound without foreign body of unspecified thumb with damage to nail, subsequent encounter +C2849770|T037|AB|S61.139S|ICD10CM|Pnctr w/o foreign body of thmb w damage to nail, sequela|Pnctr w/o foreign body of thmb w damage to nail, sequela +C2849770|T037|PT|S61.139S|ICD10CM|Puncture wound without foreign body of unspecified thumb with damage to nail, sequela|Puncture wound without foreign body of unspecified thumb with damage to nail, sequela +C2849771|T037|AB|S61.14|ICD10CM|Puncture wound w foreign body of thumb with damage to nail|Puncture wound w foreign body of thumb with damage to nail +C2849771|T037|HT|S61.14|ICD10CM|Puncture wound with foreign body of thumb with damage to nail|Puncture wound with foreign body of thumb with damage to nail +C2849772|T037|AB|S61.141|ICD10CM|Pnctr w foreign body of right thumb w damage to nail|Pnctr w foreign body of right thumb w damage to nail +C2849772|T037|HT|S61.141|ICD10CM|Puncture wound with foreign body of right thumb with damage to nail|Puncture wound with foreign body of right thumb with damage to nail +C2849773|T037|AB|S61.141A|ICD10CM|Pnctr w foreign body of right thumb w damage to nail, init|Pnctr w foreign body of right thumb w damage to nail, init +C2849773|T037|PT|S61.141A|ICD10CM|Puncture wound with foreign body of right thumb with damage to nail, initial encounter|Puncture wound with foreign body of right thumb with damage to nail, initial encounter +C2849774|T037|AB|S61.141D|ICD10CM|Pnctr w foreign body of right thumb w damage to nail, subs|Pnctr w foreign body of right thumb w damage to nail, subs +C2849774|T037|PT|S61.141D|ICD10CM|Puncture wound with foreign body of right thumb with damage to nail, subsequent encounter|Puncture wound with foreign body of right thumb with damage to nail, subsequent encounter +C2849775|T037|AB|S61.141S|ICD10CM|Pnctr w fb of right thumb w damage to nail, sequela|Pnctr w fb of right thumb w damage to nail, sequela +C2849775|T037|PT|S61.141S|ICD10CM|Puncture wound with foreign body of right thumb with damage to nail, sequela|Puncture wound with foreign body of right thumb with damage to nail, sequela +C2849776|T037|AB|S61.142|ICD10CM|Puncture wound w foreign body of left thumb w damage to nail|Puncture wound w foreign body of left thumb w damage to nail +C2849776|T037|HT|S61.142|ICD10CM|Puncture wound with foreign body of left thumb with damage to nail|Puncture wound with foreign body of left thumb with damage to nail +C2849777|T037|AB|S61.142A|ICD10CM|Pnctr w foreign body of left thumb w damage to nail, init|Pnctr w foreign body of left thumb w damage to nail, init +C2849777|T037|PT|S61.142A|ICD10CM|Puncture wound with foreign body of left thumb with damage to nail, initial encounter|Puncture wound with foreign body of left thumb with damage to nail, initial encounter +C2849778|T037|AB|S61.142D|ICD10CM|Pnctr w foreign body of left thumb w damage to nail, subs|Pnctr w foreign body of left thumb w damage to nail, subs +C2849778|T037|PT|S61.142D|ICD10CM|Puncture wound with foreign body of left thumb with damage to nail, subsequent encounter|Puncture wound with foreign body of left thumb with damage to nail, subsequent encounter +C2849779|T037|AB|S61.142S|ICD10CM|Pnctr w foreign body of left thumb w damage to nail, sequela|Pnctr w foreign body of left thumb w damage to nail, sequela +C2849779|T037|PT|S61.142S|ICD10CM|Puncture wound with foreign body of left thumb with damage to nail, sequela|Puncture wound with foreign body of left thumb with damage to nail, sequela +C2849780|T037|AB|S61.149|ICD10CM|Puncture wound w foreign body of unsp thumb w damage to nail|Puncture wound w foreign body of unsp thumb w damage to nail +C2849780|T037|HT|S61.149|ICD10CM|Puncture wound with foreign body of unspecified thumb with damage to nail|Puncture wound with foreign body of unspecified thumb with damage to nail +C2849781|T037|AB|S61.149A|ICD10CM|Puncture wound w foreign body of thmb w damage to nail, init|Puncture wound w foreign body of thmb w damage to nail, init +C2849781|T037|PT|S61.149A|ICD10CM|Puncture wound with foreign body of unspecified thumb with damage to nail, initial encounter|Puncture wound with foreign body of unspecified thumb with damage to nail, initial encounter +C2849782|T037|AB|S61.149D|ICD10CM|Puncture wound w foreign body of thmb w damage to nail, subs|Puncture wound w foreign body of thmb w damage to nail, subs +C2849782|T037|PT|S61.149D|ICD10CM|Puncture wound with foreign body of unspecified thumb with damage to nail, subsequent encounter|Puncture wound with foreign body of unspecified thumb with damage to nail, subsequent encounter +C2849783|T037|AB|S61.149S|ICD10CM|Pnctr w foreign body of thmb w damage to nail, sequela|Pnctr w foreign body of thmb w damage to nail, sequela +C2849783|T037|PT|S61.149S|ICD10CM|Puncture wound with foreign body of unspecified thumb with damage to nail, sequela|Puncture wound with foreign body of unspecified thumb with damage to nail, sequela +C2849784|T037|ET|S61.15|ICD10CM|Bite of thumb with damage to nail NOS|Bite of thumb with damage to nail NOS +C2849785|T037|HT|S61.15|ICD10CM|Open bite of thumb with damage to nail|Open bite of thumb with damage to nail +C2849785|T037|AB|S61.15|ICD10CM|Open bite of thumb with damage to nail|Open bite of thumb with damage to nail +C2849786|T037|AB|S61.151|ICD10CM|Open bite of right thumb with damage to nail|Open bite of right thumb with damage to nail +C2849786|T037|HT|S61.151|ICD10CM|Open bite of right thumb with damage to nail|Open bite of right thumb with damage to nail +C2849787|T037|AB|S61.151A|ICD10CM|Open bite of right thumb with damage to nail, init encntr|Open bite of right thumb with damage to nail, init encntr +C2849787|T037|PT|S61.151A|ICD10CM|Open bite of right thumb with damage to nail, initial encounter|Open bite of right thumb with damage to nail, initial encounter +C2849788|T037|AB|S61.151D|ICD10CM|Open bite of right thumb with damage to nail, subs encntr|Open bite of right thumb with damage to nail, subs encntr +C2849788|T037|PT|S61.151D|ICD10CM|Open bite of right thumb with damage to nail, subsequent encounter|Open bite of right thumb with damage to nail, subsequent encounter +C2849789|T037|AB|S61.151S|ICD10CM|Open bite of right thumb with damage to nail, sequela|Open bite of right thumb with damage to nail, sequela +C2849789|T037|PT|S61.151S|ICD10CM|Open bite of right thumb with damage to nail, sequela|Open bite of right thumb with damage to nail, sequela +C2849790|T037|AB|S61.152|ICD10CM|Open bite of left thumb with damage to nail|Open bite of left thumb with damage to nail +C2849790|T037|HT|S61.152|ICD10CM|Open bite of left thumb with damage to nail|Open bite of left thumb with damage to nail +C2849791|T037|AB|S61.152A|ICD10CM|Open bite of left thumb with damage to nail, init encntr|Open bite of left thumb with damage to nail, init encntr +C2849791|T037|PT|S61.152A|ICD10CM|Open bite of left thumb with damage to nail, initial encounter|Open bite of left thumb with damage to nail, initial encounter +C2849792|T037|AB|S61.152D|ICD10CM|Open bite of left thumb with damage to nail, subs encntr|Open bite of left thumb with damage to nail, subs encntr +C2849792|T037|PT|S61.152D|ICD10CM|Open bite of left thumb with damage to nail, subsequent encounter|Open bite of left thumb with damage to nail, subsequent encounter +C2849793|T037|AB|S61.152S|ICD10CM|Open bite of left thumb with damage to nail, sequela|Open bite of left thumb with damage to nail, sequela +C2849793|T037|PT|S61.152S|ICD10CM|Open bite of left thumb with damage to nail, sequela|Open bite of left thumb with damage to nail, sequela +C2849794|T037|AB|S61.159|ICD10CM|Open bite of unspecified thumb with damage to nail|Open bite of unspecified thumb with damage to nail +C2849794|T037|HT|S61.159|ICD10CM|Open bite of unspecified thumb with damage to nail|Open bite of unspecified thumb with damage to nail +C2849795|T037|AB|S61.159A|ICD10CM|Open bite of unsp thumb with damage to nail, init encntr|Open bite of unsp thumb with damage to nail, init encntr +C2849795|T037|PT|S61.159A|ICD10CM|Open bite of unspecified thumb with damage to nail, initial encounter|Open bite of unspecified thumb with damage to nail, initial encounter +C2849796|T037|AB|S61.159D|ICD10CM|Open bite of unsp thumb with damage to nail, subs encntr|Open bite of unsp thumb with damage to nail, subs encntr +C2849796|T037|PT|S61.159D|ICD10CM|Open bite of unspecified thumb with damage to nail, subsequent encounter|Open bite of unspecified thumb with damage to nail, subsequent encounter +C2849797|T037|AB|S61.159S|ICD10CM|Open bite of unspecified thumb with damage to nail, sequela|Open bite of unspecified thumb with damage to nail, sequela +C2849797|T037|PT|S61.159S|ICD10CM|Open bite of unspecified thumb with damage to nail, sequela|Open bite of unspecified thumb with damage to nail, sequela +C2849798|T037|AB|S61.2|ICD10CM|Open wound of other finger without damage to nail|Open wound of other finger without damage to nail +C2849798|T037|HT|S61.2|ICD10CM|Open wound of other finger without damage to nail|Open wound of other finger without damage to nail +C2849799|T037|AB|S61.20|ICD10CM|Unsp open wound of other finger without damage to nail|Unsp open wound of other finger without damage to nail +C2849799|T037|HT|S61.20|ICD10CM|Unspecified open wound of other finger without damage to nail|Unspecified open wound of other finger without damage to nail +C2849800|T037|AB|S61.200|ICD10CM|Unsp open wound of right index finger without damage to nail|Unsp open wound of right index finger without damage to nail +C2849800|T037|HT|S61.200|ICD10CM|Unspecified open wound of right index finger without damage to nail|Unspecified open wound of right index finger without damage to nail +C2849801|T037|AB|S61.200A|ICD10CM|Unsp open wound of r idx fngr w/o damage to nail, init|Unsp open wound of r idx fngr w/o damage to nail, init +C2849801|T037|PT|S61.200A|ICD10CM|Unspecified open wound of right index finger without damage to nail, initial encounter|Unspecified open wound of right index finger without damage to nail, initial encounter +C2849802|T037|AB|S61.200D|ICD10CM|Unsp open wound of r idx fngr w/o damage to nail, subs|Unsp open wound of r idx fngr w/o damage to nail, subs +C2849802|T037|PT|S61.200D|ICD10CM|Unspecified open wound of right index finger without damage to nail, subsequent encounter|Unspecified open wound of right index finger without damage to nail, subsequent encounter +C2849803|T037|AB|S61.200S|ICD10CM|Unsp open wound of r idx fngr w/o damage to nail, sequela|Unsp open wound of r idx fngr w/o damage to nail, sequela +C2849803|T037|PT|S61.200S|ICD10CM|Unspecified open wound of right index finger without damage to nail, sequela|Unspecified open wound of right index finger without damage to nail, sequela +C2849804|T037|AB|S61.201|ICD10CM|Unsp open wound of left index finger without damage to nail|Unsp open wound of left index finger without damage to nail +C2849804|T037|HT|S61.201|ICD10CM|Unspecified open wound of left index finger without damage to nail|Unspecified open wound of left index finger without damage to nail +C2849805|T037|AB|S61.201A|ICD10CM|Unsp open wound of l idx fngr w/o damage to nail, init|Unsp open wound of l idx fngr w/o damage to nail, init +C2849805|T037|PT|S61.201A|ICD10CM|Unspecified open wound of left index finger without damage to nail, initial encounter|Unspecified open wound of left index finger without damage to nail, initial encounter +C2849806|T037|AB|S61.201D|ICD10CM|Unsp open wound of l idx fngr w/o damage to nail, subs|Unsp open wound of l idx fngr w/o damage to nail, subs +C2849806|T037|PT|S61.201D|ICD10CM|Unspecified open wound of left index finger without damage to nail, subsequent encounter|Unspecified open wound of left index finger without damage to nail, subsequent encounter +C2849807|T037|AB|S61.201S|ICD10CM|Unsp open wound of l idx fngr w/o damage to nail, sequela|Unsp open wound of l idx fngr w/o damage to nail, sequela +C2849807|T037|PT|S61.201S|ICD10CM|Unspecified open wound of left index finger without damage to nail, sequela|Unspecified open wound of left index finger without damage to nail, sequela +C2849808|T037|AB|S61.202|ICD10CM|Unsp open wound of right middle finger w/o damage to nail|Unsp open wound of right middle finger w/o damage to nail +C2849808|T037|HT|S61.202|ICD10CM|Unspecified open wound of right middle finger without damage to nail|Unspecified open wound of right middle finger without damage to nail +C2849809|T037|AB|S61.202A|ICD10CM|Unsp open wound of r mid finger w/o damage to nail, init|Unsp open wound of r mid finger w/o damage to nail, init +C2849809|T037|PT|S61.202A|ICD10CM|Unspecified open wound of right middle finger without damage to nail, initial encounter|Unspecified open wound of right middle finger without damage to nail, initial encounter +C2849810|T037|AB|S61.202D|ICD10CM|Unsp open wound of r mid finger w/o damage to nail, subs|Unsp open wound of r mid finger w/o damage to nail, subs +C2849810|T037|PT|S61.202D|ICD10CM|Unspecified open wound of right middle finger without damage to nail, subsequent encounter|Unspecified open wound of right middle finger without damage to nail, subsequent encounter +C2849811|T037|AB|S61.202S|ICD10CM|Unsp open wound of r mid finger w/o damage to nail, sequela|Unsp open wound of r mid finger w/o damage to nail, sequela +C2849811|T037|PT|S61.202S|ICD10CM|Unspecified open wound of right middle finger without damage to nail, sequela|Unspecified open wound of right middle finger without damage to nail, sequela +C2849812|T037|AB|S61.203|ICD10CM|Unsp open wound of left middle finger without damage to nail|Unsp open wound of left middle finger without damage to nail +C2849812|T037|HT|S61.203|ICD10CM|Unspecified open wound of left middle finger without damage to nail|Unspecified open wound of left middle finger without damage to nail +C2849813|T037|AB|S61.203A|ICD10CM|Unsp open wound of l mid finger w/o damage to nail, init|Unsp open wound of l mid finger w/o damage to nail, init +C2849813|T037|PT|S61.203A|ICD10CM|Unspecified open wound of left middle finger without damage to nail, initial encounter|Unspecified open wound of left middle finger without damage to nail, initial encounter +C2849814|T037|AB|S61.203D|ICD10CM|Unsp open wound of l mid finger w/o damage to nail, subs|Unsp open wound of l mid finger w/o damage to nail, subs +C2849814|T037|PT|S61.203D|ICD10CM|Unspecified open wound of left middle finger without damage to nail, subsequent encounter|Unspecified open wound of left middle finger without damage to nail, subsequent encounter +C2849815|T037|AB|S61.203S|ICD10CM|Unsp open wound of l mid finger w/o damage to nail, sequela|Unsp open wound of l mid finger w/o damage to nail, sequela +C2849815|T037|PT|S61.203S|ICD10CM|Unspecified open wound of left middle finger without damage to nail, sequela|Unspecified open wound of left middle finger without damage to nail, sequela +C2849816|T037|AB|S61.204|ICD10CM|Unsp open wound of right ring finger without damage to nail|Unsp open wound of right ring finger without damage to nail +C2849816|T037|HT|S61.204|ICD10CM|Unspecified open wound of right ring finger without damage to nail|Unspecified open wound of right ring finger without damage to nail +C2849817|T037|AB|S61.204A|ICD10CM|Unsp open wound of r rng fngr w/o damage to nail, init|Unsp open wound of r rng fngr w/o damage to nail, init +C2849817|T037|PT|S61.204A|ICD10CM|Unspecified open wound of right ring finger without damage to nail, initial encounter|Unspecified open wound of right ring finger without damage to nail, initial encounter +C2849818|T037|AB|S61.204D|ICD10CM|Unsp open wound of r rng fngr w/o damage to nail, subs|Unsp open wound of r rng fngr w/o damage to nail, subs +C2849818|T037|PT|S61.204D|ICD10CM|Unspecified open wound of right ring finger without damage to nail, subsequent encounter|Unspecified open wound of right ring finger without damage to nail, subsequent encounter +C2849819|T037|AB|S61.204S|ICD10CM|Unsp open wound of r rng fngr w/o damage to nail, sequela|Unsp open wound of r rng fngr w/o damage to nail, sequela +C2849819|T037|PT|S61.204S|ICD10CM|Unspecified open wound of right ring finger without damage to nail, sequela|Unspecified open wound of right ring finger without damage to nail, sequela +C2849820|T037|AB|S61.205|ICD10CM|Unsp open wound of left ring finger without damage to nail|Unsp open wound of left ring finger without damage to nail +C2849820|T037|HT|S61.205|ICD10CM|Unspecified open wound of left ring finger without damage to nail|Unspecified open wound of left ring finger without damage to nail +C2849821|T037|AB|S61.205A|ICD10CM|Unsp open wound of left ring finger w/o damage to nail, init|Unsp open wound of left ring finger w/o damage to nail, init +C2849821|T037|PT|S61.205A|ICD10CM|Unspecified open wound of left ring finger without damage to nail, initial encounter|Unspecified open wound of left ring finger without damage to nail, initial encounter +C2849822|T037|AB|S61.205D|ICD10CM|Unsp open wound of left ring finger w/o damage to nail, subs|Unsp open wound of left ring finger w/o damage to nail, subs +C2849822|T037|PT|S61.205D|ICD10CM|Unspecified open wound of left ring finger without damage to nail, subsequent encounter|Unspecified open wound of left ring finger without damage to nail, subsequent encounter +C2849823|T037|AB|S61.205S|ICD10CM|Unsp open wound of l rng fngr w/o damage to nail, sequela|Unsp open wound of l rng fngr w/o damage to nail, sequela +C2849823|T037|PT|S61.205S|ICD10CM|Unspecified open wound of left ring finger without damage to nail, sequela|Unspecified open wound of left ring finger without damage to nail, sequela +C2849824|T037|AB|S61.206|ICD10CM|Unsp open wound of right little finger w/o damage to nail|Unsp open wound of right little finger w/o damage to nail +C2849824|T037|HT|S61.206|ICD10CM|Unspecified open wound of right little finger without damage to nail|Unspecified open wound of right little finger without damage to nail +C2849825|T037|AB|S61.206A|ICD10CM|Unsp open wound of r little finger w/o damage to nail, init|Unsp open wound of r little finger w/o damage to nail, init +C2849825|T037|PT|S61.206A|ICD10CM|Unspecified open wound of right little finger without damage to nail, initial encounter|Unspecified open wound of right little finger without damage to nail, initial encounter +C2849826|T037|AB|S61.206D|ICD10CM|Unsp open wound of r little finger w/o damage to nail, subs|Unsp open wound of r little finger w/o damage to nail, subs +C2849826|T037|PT|S61.206D|ICD10CM|Unspecified open wound of right little finger without damage to nail, subsequent encounter|Unspecified open wound of right little finger without damage to nail, subsequent encounter +C2849827|T037|AB|S61.206S|ICD10CM|Unsp opn wnd r little finger w/o damage to nail, sequela|Unsp opn wnd r little finger w/o damage to nail, sequela +C2849827|T037|PT|S61.206S|ICD10CM|Unspecified open wound of right little finger without damage to nail, sequela|Unspecified open wound of right little finger without damage to nail, sequela +C2849828|T037|AB|S61.207|ICD10CM|Unsp open wound of left little finger without damage to nail|Unsp open wound of left little finger without damage to nail +C2849828|T037|HT|S61.207|ICD10CM|Unspecified open wound of left little finger without damage to nail|Unspecified open wound of left little finger without damage to nail +C2849829|T037|AB|S61.207A|ICD10CM|Unsp open wound of l little finger w/o damage to nail, init|Unsp open wound of l little finger w/o damage to nail, init +C2849829|T037|PT|S61.207A|ICD10CM|Unspecified open wound of left little finger without damage to nail, initial encounter|Unspecified open wound of left little finger without damage to nail, initial encounter +C2849830|T037|AB|S61.207D|ICD10CM|Unsp open wound of l little finger w/o damage to nail, subs|Unsp open wound of l little finger w/o damage to nail, subs +C2849830|T037|PT|S61.207D|ICD10CM|Unspecified open wound of left little finger without damage to nail, subsequent encounter|Unspecified open wound of left little finger without damage to nail, subsequent encounter +C2849831|T037|AB|S61.207S|ICD10CM|Unsp opn wnd l little finger w/o damage to nail, sequela|Unsp opn wnd l little finger w/o damage to nail, sequela +C2849831|T037|PT|S61.207S|ICD10CM|Unspecified open wound of left little finger without damage to nail, sequela|Unspecified open wound of left little finger without damage to nail, sequela +C2849799|T037|AB|S61.208|ICD10CM|Unsp open wound of other finger without damage to nail|Unsp open wound of other finger without damage to nail +C2849799|T037|HT|S61.208|ICD10CM|Unspecified open wound of other finger without damage to nail|Unspecified open wound of other finger without damage to nail +C2849832|T037|ET|S61.208|ICD10CM|Unspecified open wound of specified finger with unspecified laterality without damage to nail|Unspecified open wound of specified finger with unspecified laterality without damage to nail +C2849833|T037|AB|S61.208A|ICD10CM|Unsp open wound of oth finger w/o damage to nail, init|Unsp open wound of oth finger w/o damage to nail, init +C2849833|T037|PT|S61.208A|ICD10CM|Unspecified open wound of other finger without damage to nail, initial encounter|Unspecified open wound of other finger without damage to nail, initial encounter +C2849834|T037|AB|S61.208D|ICD10CM|Unsp open wound of oth finger w/o damage to nail, subs|Unsp open wound of oth finger w/o damage to nail, subs +C2849834|T037|PT|S61.208D|ICD10CM|Unspecified open wound of other finger without damage to nail, subsequent encounter|Unspecified open wound of other finger without damage to nail, subsequent encounter +C2849835|T037|AB|S61.208S|ICD10CM|Unsp open wound of other finger w/o damage to nail, sequela|Unsp open wound of other finger w/o damage to nail, sequela +C2849835|T037|PT|S61.208S|ICD10CM|Unspecified open wound of other finger without damage to nail, sequela|Unspecified open wound of other finger without damage to nail, sequela +C2849836|T037|AB|S61.209|ICD10CM|Unsp open wound of unspecified finger without damage to nail|Unsp open wound of unspecified finger without damage to nail +C2849836|T037|HT|S61.209|ICD10CM|Unspecified open wound of unspecified finger without damage to nail|Unspecified open wound of unspecified finger without damage to nail +C2849837|T037|AB|S61.209A|ICD10CM|Unsp open wound of unsp finger w/o damage to nail, init|Unsp open wound of unsp finger w/o damage to nail, init +C2849837|T037|PT|S61.209A|ICD10CM|Unspecified open wound of unspecified finger without damage to nail, initial encounter|Unspecified open wound of unspecified finger without damage to nail, initial encounter +C2849838|T037|AB|S61.209D|ICD10CM|Unsp open wound of unsp finger w/o damage to nail, subs|Unsp open wound of unsp finger w/o damage to nail, subs +C2849838|T037|PT|S61.209D|ICD10CM|Unspecified open wound of unspecified finger without damage to nail, subsequent encounter|Unspecified open wound of unspecified finger without damage to nail, subsequent encounter +C2849839|T037|AB|S61.209S|ICD10CM|Unsp open wound of unsp finger w/o damage to nail, sequela|Unsp open wound of unsp finger w/o damage to nail, sequela +C2849839|T037|PT|S61.209S|ICD10CM|Unspecified open wound of unspecified finger without damage to nail, sequela|Unspecified open wound of unspecified finger without damage to nail, sequela +C2849840|T037|AB|S61.21|ICD10CM|Laceration w/o foreign body of finger without damage to nail|Laceration w/o foreign body of finger without damage to nail +C2849840|T037|HT|S61.21|ICD10CM|Laceration without foreign body of finger without damage to nail|Laceration without foreign body of finger without damage to nail +C2849841|T037|AB|S61.210|ICD10CM|Laceration w/o foreign body of r idx fngr w/o damage to nail|Laceration w/o foreign body of r idx fngr w/o damage to nail +C2849841|T037|HT|S61.210|ICD10CM|Laceration without foreign body of right index finger without damage to nail|Laceration without foreign body of right index finger without damage to nail +C2849842|T037|AB|S61.210A|ICD10CM|Laceration w/o fb of r idx fngr w/o damage to nail, init|Laceration w/o fb of r idx fngr w/o damage to nail, init +C2849842|T037|PT|S61.210A|ICD10CM|Laceration without foreign body of right index finger without damage to nail, initial encounter|Laceration without foreign body of right index finger without damage to nail, initial encounter +C2849843|T037|AB|S61.210D|ICD10CM|Laceration w/o fb of r idx fngr w/o damage to nail, subs|Laceration w/o fb of r idx fngr w/o damage to nail, subs +C2849843|T037|PT|S61.210D|ICD10CM|Laceration without foreign body of right index finger without damage to nail, subsequent encounter|Laceration without foreign body of right index finger without damage to nail, subsequent encounter +C2849844|T037|AB|S61.210S|ICD10CM|Laceration w/o fb of r idx fngr w/o damage to nail, sequela|Laceration w/o fb of r idx fngr w/o damage to nail, sequela +C2849844|T037|PT|S61.210S|ICD10CM|Laceration without foreign body of right index finger without damage to nail, sequela|Laceration without foreign body of right index finger without damage to nail, sequela +C2849845|T037|AB|S61.211|ICD10CM|Laceration w/o foreign body of l idx fngr w/o damage to nail|Laceration w/o foreign body of l idx fngr w/o damage to nail +C2849845|T037|HT|S61.211|ICD10CM|Laceration without foreign body of left index finger without damage to nail|Laceration without foreign body of left index finger without damage to nail +C2849846|T037|AB|S61.211A|ICD10CM|Laceration w/o fb of l idx fngr w/o damage to nail, init|Laceration w/o fb of l idx fngr w/o damage to nail, init +C2849846|T037|PT|S61.211A|ICD10CM|Laceration without foreign body of left index finger without damage to nail, initial encounter|Laceration without foreign body of left index finger without damage to nail, initial encounter +C2849847|T037|AB|S61.211D|ICD10CM|Laceration w/o fb of l idx fngr w/o damage to nail, subs|Laceration w/o fb of l idx fngr w/o damage to nail, subs +C2849847|T037|PT|S61.211D|ICD10CM|Laceration without foreign body of left index finger without damage to nail, subsequent encounter|Laceration without foreign body of left index finger without damage to nail, subsequent encounter +C2849848|T037|AB|S61.211S|ICD10CM|Laceration w/o fb of l idx fngr w/o damage to nail, sequela|Laceration w/o fb of l idx fngr w/o damage to nail, sequela +C2849848|T037|PT|S61.211S|ICD10CM|Laceration without foreign body of left index finger without damage to nail, sequela|Laceration without foreign body of left index finger without damage to nail, sequela +C2849849|T037|AB|S61.212|ICD10CM|Laceration w/o fb of r mid finger w/o damage to nail|Laceration w/o fb of r mid finger w/o damage to nail +C2849849|T037|HT|S61.212|ICD10CM|Laceration without foreign body of right middle finger without damage to nail|Laceration without foreign body of right middle finger without damage to nail +C2849850|T037|AB|S61.212A|ICD10CM|Laceration w/o fb of r mid finger w/o damage to nail, init|Laceration w/o fb of r mid finger w/o damage to nail, init +C2849850|T037|PT|S61.212A|ICD10CM|Laceration without foreign body of right middle finger without damage to nail, initial encounter|Laceration without foreign body of right middle finger without damage to nail, initial encounter +C2849851|T037|AB|S61.212D|ICD10CM|Laceration w/o fb of r mid finger w/o damage to nail, subs|Laceration w/o fb of r mid finger w/o damage to nail, subs +C2849851|T037|PT|S61.212D|ICD10CM|Laceration without foreign body of right middle finger without damage to nail, subsequent encounter|Laceration without foreign body of right middle finger without damage to nail, subsequent encounter +C2849852|T037|AB|S61.212S|ICD10CM|Lac w/o fb of r mid finger w/o damage to nail, sequela|Lac w/o fb of r mid finger w/o damage to nail, sequela +C2849852|T037|PT|S61.212S|ICD10CM|Laceration without foreign body of right middle finger without damage to nail, sequela|Laceration without foreign body of right middle finger without damage to nail, sequela +C2849853|T037|AB|S61.213|ICD10CM|Laceration w/o fb of l mid finger w/o damage to nail|Laceration w/o fb of l mid finger w/o damage to nail +C2849853|T037|HT|S61.213|ICD10CM|Laceration without foreign body of left middle finger without damage to nail|Laceration without foreign body of left middle finger without damage to nail +C2849854|T037|AB|S61.213A|ICD10CM|Laceration w/o fb of l mid finger w/o damage to nail, init|Laceration w/o fb of l mid finger w/o damage to nail, init +C2849854|T037|PT|S61.213A|ICD10CM|Laceration without foreign body of left middle finger without damage to nail, initial encounter|Laceration without foreign body of left middle finger without damage to nail, initial encounter +C2849855|T037|AB|S61.213D|ICD10CM|Laceration w/o fb of l mid finger w/o damage to nail, subs|Laceration w/o fb of l mid finger w/o damage to nail, subs +C2849855|T037|PT|S61.213D|ICD10CM|Laceration without foreign body of left middle finger without damage to nail, subsequent encounter|Laceration without foreign body of left middle finger without damage to nail, subsequent encounter +C2849856|T037|AB|S61.213S|ICD10CM|Lac w/o fb of l mid finger w/o damage to nail, sequela|Lac w/o fb of l mid finger w/o damage to nail, sequela +C2849856|T037|PT|S61.213S|ICD10CM|Laceration without foreign body of left middle finger without damage to nail, sequela|Laceration without foreign body of left middle finger without damage to nail, sequela +C2849857|T037|AB|S61.214|ICD10CM|Laceration w/o foreign body of r rng fngr w/o damage to nail|Laceration w/o foreign body of r rng fngr w/o damage to nail +C2849857|T037|HT|S61.214|ICD10CM|Laceration without foreign body of right ring finger without damage to nail|Laceration without foreign body of right ring finger without damage to nail +C2849858|T037|AB|S61.214A|ICD10CM|Laceration w/o fb of r rng fngr w/o damage to nail, init|Laceration w/o fb of r rng fngr w/o damage to nail, init +C2849858|T037|PT|S61.214A|ICD10CM|Laceration without foreign body of right ring finger without damage to nail, initial encounter|Laceration without foreign body of right ring finger without damage to nail, initial encounter +C2849859|T037|AB|S61.214D|ICD10CM|Laceration w/o fb of r rng fngr w/o damage to nail, subs|Laceration w/o fb of r rng fngr w/o damage to nail, subs +C2849859|T037|PT|S61.214D|ICD10CM|Laceration without foreign body of right ring finger without damage to nail, subsequent encounter|Laceration without foreign body of right ring finger without damage to nail, subsequent encounter +C2849860|T037|AB|S61.214S|ICD10CM|Laceration w/o fb of r rng fngr w/o damage to nail, sequela|Laceration w/o fb of r rng fngr w/o damage to nail, sequela +C2849860|T037|PT|S61.214S|ICD10CM|Laceration without foreign body of right ring finger without damage to nail, sequela|Laceration without foreign body of right ring finger without damage to nail, sequela +C2849861|T037|AB|S61.215|ICD10CM|Laceration w/o foreign body of l rng fngr w/o damage to nail|Laceration w/o foreign body of l rng fngr w/o damage to nail +C2849861|T037|HT|S61.215|ICD10CM|Laceration without foreign body of left ring finger without damage to nail|Laceration without foreign body of left ring finger without damage to nail +C2849862|T037|AB|S61.215A|ICD10CM|Laceration w/o fb of l rng fngr w/o damage to nail, init|Laceration w/o fb of l rng fngr w/o damage to nail, init +C2849862|T037|PT|S61.215A|ICD10CM|Laceration without foreign body of left ring finger without damage to nail, initial encounter|Laceration without foreign body of left ring finger without damage to nail, initial encounter +C2849863|T037|AB|S61.215D|ICD10CM|Laceration w/o fb of l rng fngr w/o damage to nail, subs|Laceration w/o fb of l rng fngr w/o damage to nail, subs +C2849863|T037|PT|S61.215D|ICD10CM|Laceration without foreign body of left ring finger without damage to nail, subsequent encounter|Laceration without foreign body of left ring finger without damage to nail, subsequent encounter +C2849864|T037|AB|S61.215S|ICD10CM|Laceration w/o fb of l rng fngr w/o damage to nail, sequela|Laceration w/o fb of l rng fngr w/o damage to nail, sequela +C2849864|T037|PT|S61.215S|ICD10CM|Laceration without foreign body of left ring finger without damage to nail, sequela|Laceration without foreign body of left ring finger without damage to nail, sequela +C2849865|T037|AB|S61.216|ICD10CM|Laceration w/o fb of r little finger w/o damage to nail|Laceration w/o fb of r little finger w/o damage to nail +C2849865|T037|HT|S61.216|ICD10CM|Laceration without foreign body of right little finger without damage to nail|Laceration without foreign body of right little finger without damage to nail +C2849866|T037|AB|S61.216A|ICD10CM|Lac w/o fb of r little finger w/o damage to nail, init|Lac w/o fb of r little finger w/o damage to nail, init +C2849866|T037|PT|S61.216A|ICD10CM|Laceration without foreign body of right little finger without damage to nail, initial encounter|Laceration without foreign body of right little finger without damage to nail, initial encounter +C2849867|T037|AB|S61.216D|ICD10CM|Lac w/o fb of r little finger w/o damage to nail, subs|Lac w/o fb of r little finger w/o damage to nail, subs +C2849867|T037|PT|S61.216D|ICD10CM|Laceration without foreign body of right little finger without damage to nail, subsequent encounter|Laceration without foreign body of right little finger without damage to nail, subsequent encounter +C2849868|T037|AB|S61.216S|ICD10CM|Lac w/o fb of r little finger w/o damage to nail, sequela|Lac w/o fb of r little finger w/o damage to nail, sequela +C2849868|T037|PT|S61.216S|ICD10CM|Laceration without foreign body of right little finger without damage to nail, sequela|Laceration without foreign body of right little finger without damage to nail, sequela +C2849869|T037|AB|S61.217|ICD10CM|Laceration w/o fb of l little finger w/o damage to nail|Laceration w/o fb of l little finger w/o damage to nail +C2849869|T037|HT|S61.217|ICD10CM|Laceration without foreign body of left little finger without damage to nail|Laceration without foreign body of left little finger without damage to nail +C2849870|T037|AB|S61.217A|ICD10CM|Lac w/o fb of l little finger w/o damage to nail, init|Lac w/o fb of l little finger w/o damage to nail, init +C2849870|T037|PT|S61.217A|ICD10CM|Laceration without foreign body of left little finger without damage to nail, initial encounter|Laceration without foreign body of left little finger without damage to nail, initial encounter +C2849871|T037|AB|S61.217D|ICD10CM|Lac w/o fb of l little finger w/o damage to nail, subs|Lac w/o fb of l little finger w/o damage to nail, subs +C2849871|T037|PT|S61.217D|ICD10CM|Laceration without foreign body of left little finger without damage to nail, subsequent encounter|Laceration without foreign body of left little finger without damage to nail, subsequent encounter +C2849872|T037|AB|S61.217S|ICD10CM|Lac w/o fb of l little finger w/o damage to nail, sequela|Lac w/o fb of l little finger w/o damage to nail, sequela +C2849872|T037|PT|S61.217S|ICD10CM|Laceration without foreign body of left little finger without damage to nail, sequela|Laceration without foreign body of left little finger without damage to nail, sequela +C2849874|T037|AB|S61.218|ICD10CM|Laceration w/o foreign body of oth finger w/o damage to nail|Laceration w/o foreign body of oth finger w/o damage to nail +C2849874|T037|HT|S61.218|ICD10CM|Laceration without foreign body of other finger without damage to nail|Laceration without foreign body of other finger without damage to nail +C2849875|T037|AB|S61.218A|ICD10CM|Laceration w/o fb of finger w/o damage to nail, init|Laceration w/o fb of finger w/o damage to nail, init +C2849875|T037|PT|S61.218A|ICD10CM|Laceration without foreign body of other finger without damage to nail, initial encounter|Laceration without foreign body of other finger without damage to nail, initial encounter +C2849876|T037|AB|S61.218D|ICD10CM|Laceration w/o fb of finger w/o damage to nail, subs|Laceration w/o fb of finger w/o damage to nail, subs +C2849876|T037|PT|S61.218D|ICD10CM|Laceration without foreign body of other finger without damage to nail, subsequent encounter|Laceration without foreign body of other finger without damage to nail, subsequent encounter +C2849877|T037|AB|S61.218S|ICD10CM|Laceration w/o fb of finger w/o damage to nail, sequela|Laceration w/o fb of finger w/o damage to nail, sequela +C2849877|T037|PT|S61.218S|ICD10CM|Laceration without foreign body of other finger without damage to nail, sequela|Laceration without foreign body of other finger without damage to nail, sequela +C2849878|T037|AB|S61.219|ICD10CM|Laceration w/o fb of unsp finger w/o damage to nail|Laceration w/o fb of unsp finger w/o damage to nail +C2849878|T037|HT|S61.219|ICD10CM|Laceration without foreign body of unspecified finger without damage to nail|Laceration without foreign body of unspecified finger without damage to nail +C2849879|T037|AB|S61.219A|ICD10CM|Laceration w/o fb of unsp finger w/o damage to nail, init|Laceration w/o fb of unsp finger w/o damage to nail, init +C2849879|T037|PT|S61.219A|ICD10CM|Laceration without foreign body of unspecified finger without damage to nail, initial encounter|Laceration without foreign body of unspecified finger without damage to nail, initial encounter +C2849880|T037|AB|S61.219D|ICD10CM|Laceration w/o fb of unsp finger w/o damage to nail, subs|Laceration w/o fb of unsp finger w/o damage to nail, subs +C2849880|T037|PT|S61.219D|ICD10CM|Laceration without foreign body of unspecified finger without damage to nail, subsequent encounter|Laceration without foreign body of unspecified finger without damage to nail, subsequent encounter +C2849881|T037|AB|S61.219S|ICD10CM|Laceration w/o fb of unsp finger w/o damage to nail, sequela|Laceration w/o fb of unsp finger w/o damage to nail, sequela +C2849881|T037|PT|S61.219S|ICD10CM|Laceration without foreign body of unspecified finger without damage to nail, sequela|Laceration without foreign body of unspecified finger without damage to nail, sequela +C2849882|T037|AB|S61.22|ICD10CM|Laceration with foreign body of finger w/o damage to nail|Laceration with foreign body of finger w/o damage to nail +C2849882|T037|HT|S61.22|ICD10CM|Laceration with foreign body of finger without damage to nail|Laceration with foreign body of finger without damage to nail +C2849883|T037|AB|S61.220|ICD10CM|Laceration w foreign body of r idx fngr w/o damage to nail|Laceration w foreign body of r idx fngr w/o damage to nail +C2849883|T037|HT|S61.220|ICD10CM|Laceration with foreign body of right index finger without damage to nail|Laceration with foreign body of right index finger without damage to nail +C2849884|T037|AB|S61.220A|ICD10CM|Laceration w fb of r idx fngr w/o damage to nail, init|Laceration w fb of r idx fngr w/o damage to nail, init +C2849884|T037|PT|S61.220A|ICD10CM|Laceration with foreign body of right index finger without damage to nail, initial encounter|Laceration with foreign body of right index finger without damage to nail, initial encounter +C2849885|T037|AB|S61.220D|ICD10CM|Laceration w fb of r idx fngr w/o damage to nail, subs|Laceration w fb of r idx fngr w/o damage to nail, subs +C2849885|T037|PT|S61.220D|ICD10CM|Laceration with foreign body of right index finger without damage to nail, subsequent encounter|Laceration with foreign body of right index finger without damage to nail, subsequent encounter +C2849886|T037|AB|S61.220S|ICD10CM|Laceration w fb of r idx fngr w/o damage to nail, sequela|Laceration w fb of r idx fngr w/o damage to nail, sequela +C2849886|T037|PT|S61.220S|ICD10CM|Laceration with foreign body of right index finger without damage to nail, sequela|Laceration with foreign body of right index finger without damage to nail, sequela +C2849887|T037|AB|S61.221|ICD10CM|Laceration w foreign body of l idx fngr w/o damage to nail|Laceration w foreign body of l idx fngr w/o damage to nail +C2849887|T037|HT|S61.221|ICD10CM|Laceration with foreign body of left index finger without damage to nail|Laceration with foreign body of left index finger without damage to nail +C2849888|T037|AB|S61.221A|ICD10CM|Laceration w fb of l idx fngr w/o damage to nail, init|Laceration w fb of l idx fngr w/o damage to nail, init +C2849888|T037|PT|S61.221A|ICD10CM|Laceration with foreign body of left index finger without damage to nail, initial encounter|Laceration with foreign body of left index finger without damage to nail, initial encounter +C2849889|T037|AB|S61.221D|ICD10CM|Laceration w fb of l idx fngr w/o damage to nail, subs|Laceration w fb of l idx fngr w/o damage to nail, subs +C2849889|T037|PT|S61.221D|ICD10CM|Laceration with foreign body of left index finger without damage to nail, subsequent encounter|Laceration with foreign body of left index finger without damage to nail, subsequent encounter +C2849890|T037|AB|S61.221S|ICD10CM|Laceration w fb of l idx fngr w/o damage to nail, sequela|Laceration w fb of l idx fngr w/o damage to nail, sequela +C2849890|T037|PT|S61.221S|ICD10CM|Laceration with foreign body of left index finger without damage to nail, sequela|Laceration with foreign body of left index finger without damage to nail, sequela +C2849891|T037|AB|S61.222|ICD10CM|Laceration w foreign body of r mid finger w/o damage to nail|Laceration w foreign body of r mid finger w/o damage to nail +C2849891|T037|HT|S61.222|ICD10CM|Laceration with foreign body of right middle finger without damage to nail|Laceration with foreign body of right middle finger without damage to nail +C2849892|T037|AB|S61.222A|ICD10CM|Laceration w fb of r mid finger w/o damage to nail, init|Laceration w fb of r mid finger w/o damage to nail, init +C2849892|T037|PT|S61.222A|ICD10CM|Laceration with foreign body of right middle finger without damage to nail, initial encounter|Laceration with foreign body of right middle finger without damage to nail, initial encounter +C2849893|T037|AB|S61.222D|ICD10CM|Laceration w fb of r mid finger w/o damage to nail, subs|Laceration w fb of r mid finger w/o damage to nail, subs +C2849893|T037|PT|S61.222D|ICD10CM|Laceration with foreign body of right middle finger without damage to nail, subsequent encounter|Laceration with foreign body of right middle finger without damage to nail, subsequent encounter +C2849894|T037|AB|S61.222S|ICD10CM|Laceration w fb of r mid finger w/o damage to nail, sequela|Laceration w fb of r mid finger w/o damage to nail, sequela +C2849894|T037|PT|S61.222S|ICD10CM|Laceration with foreign body of right middle finger without damage to nail, sequela|Laceration with foreign body of right middle finger without damage to nail, sequela +C2849895|T037|AB|S61.223|ICD10CM|Laceration w foreign body of l mid finger w/o damage to nail|Laceration w foreign body of l mid finger w/o damage to nail +C2849895|T037|HT|S61.223|ICD10CM|Laceration with foreign body of left middle finger without damage to nail|Laceration with foreign body of left middle finger without damage to nail +C2849896|T037|AB|S61.223A|ICD10CM|Laceration w fb of l mid finger w/o damage to nail, init|Laceration w fb of l mid finger w/o damage to nail, init +C2849896|T037|PT|S61.223A|ICD10CM|Laceration with foreign body of left middle finger without damage to nail, initial encounter|Laceration with foreign body of left middle finger without damage to nail, initial encounter +C2849897|T037|AB|S61.223D|ICD10CM|Laceration w fb of l mid finger w/o damage to nail, subs|Laceration w fb of l mid finger w/o damage to nail, subs +C2849897|T037|PT|S61.223D|ICD10CM|Laceration with foreign body of left middle finger without damage to nail, subsequent encounter|Laceration with foreign body of left middle finger without damage to nail, subsequent encounter +C2849898|T037|AB|S61.223S|ICD10CM|Laceration w fb of l mid finger w/o damage to nail, sequela|Laceration w fb of l mid finger w/o damage to nail, sequela +C2849898|T037|PT|S61.223S|ICD10CM|Laceration with foreign body of left middle finger without damage to nail, sequela|Laceration with foreign body of left middle finger without damage to nail, sequela +C2849899|T037|AB|S61.224|ICD10CM|Laceration w foreign body of r rng fngr w/o damage to nail|Laceration w foreign body of r rng fngr w/o damage to nail +C2849899|T037|HT|S61.224|ICD10CM|Laceration with foreign body of right ring finger without damage to nail|Laceration with foreign body of right ring finger without damage to nail +C2849900|T037|AB|S61.224A|ICD10CM|Laceration w fb of r rng fngr w/o damage to nail, init|Laceration w fb of r rng fngr w/o damage to nail, init +C2849900|T037|PT|S61.224A|ICD10CM|Laceration with foreign body of right ring finger without damage to nail, initial encounter|Laceration with foreign body of right ring finger without damage to nail, initial encounter +C2849901|T037|AB|S61.224D|ICD10CM|Laceration w fb of r rng fngr w/o damage to nail, subs|Laceration w fb of r rng fngr w/o damage to nail, subs +C2849901|T037|PT|S61.224D|ICD10CM|Laceration with foreign body of right ring finger without damage to nail, subsequent encounter|Laceration with foreign body of right ring finger without damage to nail, subsequent encounter +C2849902|T037|AB|S61.224S|ICD10CM|Laceration w fb of r rng fngr w/o damage to nail, sequela|Laceration w fb of r rng fngr w/o damage to nail, sequela +C2849902|T037|PT|S61.224S|ICD10CM|Laceration with foreign body of right ring finger without damage to nail, sequela|Laceration with foreign body of right ring finger without damage to nail, sequela +C2849903|T037|AB|S61.225|ICD10CM|Laceration w foreign body of l rng fngr w/o damage to nail|Laceration w foreign body of l rng fngr w/o damage to nail +C2849903|T037|HT|S61.225|ICD10CM|Laceration with foreign body of left ring finger without damage to nail|Laceration with foreign body of left ring finger without damage to nail +C2849904|T037|AB|S61.225A|ICD10CM|Laceration w fb of l rng fngr w/o damage to nail, init|Laceration w fb of l rng fngr w/o damage to nail, init +C2849904|T037|PT|S61.225A|ICD10CM|Laceration with foreign body of left ring finger without damage to nail, initial encounter|Laceration with foreign body of left ring finger without damage to nail, initial encounter +C2849905|T037|AB|S61.225D|ICD10CM|Laceration w fb of l rng fngr w/o damage to nail, subs|Laceration w fb of l rng fngr w/o damage to nail, subs +C2849905|T037|PT|S61.225D|ICD10CM|Laceration with foreign body of left ring finger without damage to nail, subsequent encounter|Laceration with foreign body of left ring finger without damage to nail, subsequent encounter +C2849906|T037|AB|S61.225S|ICD10CM|Laceration w fb of l rng fngr w/o damage to nail, sequela|Laceration w fb of l rng fngr w/o damage to nail, sequela +C2849906|T037|PT|S61.225S|ICD10CM|Laceration with foreign body of left ring finger without damage to nail, sequela|Laceration with foreign body of left ring finger without damage to nail, sequela +C2849907|T037|AB|S61.226|ICD10CM|Laceration w fb of r little finger w/o damage to nail|Laceration w fb of r little finger w/o damage to nail +C2849907|T037|HT|S61.226|ICD10CM|Laceration with foreign body of right little finger without damage to nail|Laceration with foreign body of right little finger without damage to nail +C2849908|T037|AB|S61.226A|ICD10CM|Laceration w fb of r little finger w/o damage to nail, init|Laceration w fb of r little finger w/o damage to nail, init +C2849908|T037|PT|S61.226A|ICD10CM|Laceration with foreign body of right little finger without damage to nail, initial encounter|Laceration with foreign body of right little finger without damage to nail, initial encounter +C2849909|T037|AB|S61.226D|ICD10CM|Laceration w fb of r little finger w/o damage to nail, subs|Laceration w fb of r little finger w/o damage to nail, subs +C2849909|T037|PT|S61.226D|ICD10CM|Laceration with foreign body of right little finger without damage to nail, subsequent encounter|Laceration with foreign body of right little finger without damage to nail, subsequent encounter +C2849910|T037|AB|S61.226S|ICD10CM|Lac w fb of r little finger w/o damage to nail, sequela|Lac w fb of r little finger w/o damage to nail, sequela +C2849910|T037|PT|S61.226S|ICD10CM|Laceration with foreign body of right little finger without damage to nail, sequela|Laceration with foreign body of right little finger without damage to nail, sequela +C2849911|T037|AB|S61.227|ICD10CM|Laceration w fb of l little finger w/o damage to nail|Laceration w fb of l little finger w/o damage to nail +C2849911|T037|HT|S61.227|ICD10CM|Laceration with foreign body of left little finger without damage to nail|Laceration with foreign body of left little finger without damage to nail +C2849912|T037|AB|S61.227A|ICD10CM|Laceration w fb of l little finger w/o damage to nail, init|Laceration w fb of l little finger w/o damage to nail, init +C2849912|T037|PT|S61.227A|ICD10CM|Laceration with foreign body of left little finger without damage to nail, initial encounter|Laceration with foreign body of left little finger without damage to nail, initial encounter +C2849913|T037|AB|S61.227D|ICD10CM|Laceration w fb of l little finger w/o damage to nail, subs|Laceration w fb of l little finger w/o damage to nail, subs +C2849913|T037|PT|S61.227D|ICD10CM|Laceration with foreign body of left little finger without damage to nail, subsequent encounter|Laceration with foreign body of left little finger without damage to nail, subsequent encounter +C2849914|T037|AB|S61.227S|ICD10CM|Lac w fb of l little finger w/o damage to nail, sequela|Lac w fb of l little finger w/o damage to nail, sequela +C2849914|T037|PT|S61.227S|ICD10CM|Laceration with foreign body of left little finger without damage to nail, sequela|Laceration with foreign body of left little finger without damage to nail, sequela +C2849916|T037|AB|S61.228|ICD10CM|Laceration w foreign body of oth finger w/o damage to nail|Laceration w foreign body of oth finger w/o damage to nail +C2849916|T037|HT|S61.228|ICD10CM|Laceration with foreign body of other finger without damage to nail|Laceration with foreign body of other finger without damage to nail +C2849915|T037|ET|S61.228|ICD10CM|Laceration with foreign body of specified finger with unspecified laterality without damage to nail|Laceration with foreign body of specified finger with unspecified laterality without damage to nail +C2849917|T037|AB|S61.228A|ICD10CM|Laceration w foreign body of finger w/o damage to nail, init|Laceration w foreign body of finger w/o damage to nail, init +C2849917|T037|PT|S61.228A|ICD10CM|Laceration with foreign body of other finger without damage to nail, initial encounter|Laceration with foreign body of other finger without damage to nail, initial encounter +C2849918|T037|AB|S61.228D|ICD10CM|Laceration w foreign body of finger w/o damage to nail, subs|Laceration w foreign body of finger w/o damage to nail, subs +C2849918|T037|PT|S61.228D|ICD10CM|Laceration with foreign body of other finger without damage to nail, subsequent encounter|Laceration with foreign body of other finger without damage to nail, subsequent encounter +C2849919|T037|AB|S61.228S|ICD10CM|Laceration w fb of finger w/o damage to nail, sequela|Laceration w fb of finger w/o damage to nail, sequela +C2849919|T037|PT|S61.228S|ICD10CM|Laceration with foreign body of other finger without damage to nail, sequela|Laceration with foreign body of other finger without damage to nail, sequela +C2849920|T037|AB|S61.229|ICD10CM|Laceration w foreign body of unsp finger w/o damage to nail|Laceration w foreign body of unsp finger w/o damage to nail +C2849920|T037|HT|S61.229|ICD10CM|Laceration with foreign body of unspecified finger without damage to nail|Laceration with foreign body of unspecified finger without damage to nail +C2849921|T037|AB|S61.229A|ICD10CM|Laceration w fb of unsp finger w/o damage to nail, init|Laceration w fb of unsp finger w/o damage to nail, init +C2849921|T037|PT|S61.229A|ICD10CM|Laceration with foreign body of unspecified finger without damage to nail, initial encounter|Laceration with foreign body of unspecified finger without damage to nail, initial encounter +C2849922|T037|AB|S61.229D|ICD10CM|Laceration w fb of unsp finger w/o damage to nail, subs|Laceration w fb of unsp finger w/o damage to nail, subs +C2849922|T037|PT|S61.229D|ICD10CM|Laceration with foreign body of unspecified finger without damage to nail, subsequent encounter|Laceration with foreign body of unspecified finger without damage to nail, subsequent encounter +C2849923|T037|AB|S61.229S|ICD10CM|Laceration w fb of unsp finger w/o damage to nail, sequela|Laceration w fb of unsp finger w/o damage to nail, sequela +C2849923|T037|PT|S61.229S|ICD10CM|Laceration with foreign body of unspecified finger without damage to nail, sequela|Laceration with foreign body of unspecified finger without damage to nail, sequela +C2849924|T037|AB|S61.23|ICD10CM|Puncture wound w/o foreign body of finger w/o damage to nail|Puncture wound w/o foreign body of finger w/o damage to nail +C2849924|T037|HT|S61.23|ICD10CM|Puncture wound without foreign body of finger without damage to nail|Puncture wound without foreign body of finger without damage to nail +C2849925|T037|AB|S61.230|ICD10CM|Pnctr w/o foreign body of r idx fngr w/o damage to nail|Pnctr w/o foreign body of r idx fngr w/o damage to nail +C2849925|T037|HT|S61.230|ICD10CM|Puncture wound without foreign body of right index finger without damage to nail|Puncture wound without foreign body of right index finger without damage to nail +C2849926|T037|AB|S61.230A|ICD10CM|Pnctr w/o fb of r idx fngr w/o damage to nail, init|Pnctr w/o fb of r idx fngr w/o damage to nail, init +C2849926|T037|PT|S61.230A|ICD10CM|Puncture wound without foreign body of right index finger without damage to nail, initial encounter|Puncture wound without foreign body of right index finger without damage to nail, initial encounter +C2849927|T037|AB|S61.230D|ICD10CM|Pnctr w/o fb of r idx fngr w/o damage to nail, subs|Pnctr w/o fb of r idx fngr w/o damage to nail, subs +C2849928|T037|AB|S61.230S|ICD10CM|Pnctr w/o fb of r idx fngr w/o damage to nail, sequela|Pnctr w/o fb of r idx fngr w/o damage to nail, sequela +C2849928|T037|PT|S61.230S|ICD10CM|Puncture wound without foreign body of right index finger without damage to nail, sequela|Puncture wound without foreign body of right index finger without damage to nail, sequela +C2849929|T037|AB|S61.231|ICD10CM|Pnctr w/o foreign body of l idx fngr w/o damage to nail|Pnctr w/o foreign body of l idx fngr w/o damage to nail +C2849929|T037|HT|S61.231|ICD10CM|Puncture wound without foreign body of left index finger without damage to nail|Puncture wound without foreign body of left index finger without damage to nail +C2849930|T037|AB|S61.231A|ICD10CM|Pnctr w/o fb of l idx fngr w/o damage to nail, init|Pnctr w/o fb of l idx fngr w/o damage to nail, init +C2849930|T037|PT|S61.231A|ICD10CM|Puncture wound without foreign body of left index finger without damage to nail, initial encounter|Puncture wound without foreign body of left index finger without damage to nail, initial encounter +C2849931|T037|AB|S61.231D|ICD10CM|Pnctr w/o fb of l idx fngr w/o damage to nail, subs|Pnctr w/o fb of l idx fngr w/o damage to nail, subs +C2849932|T037|AB|S61.231S|ICD10CM|Pnctr w/o fb of l idx fngr w/o damage to nail, sequela|Pnctr w/o fb of l idx fngr w/o damage to nail, sequela +C2849932|T037|PT|S61.231S|ICD10CM|Puncture wound without foreign body of left index finger without damage to nail, sequela|Puncture wound without foreign body of left index finger without damage to nail, sequela +C2849933|T037|AB|S61.232|ICD10CM|Pnctr w/o foreign body of r mid finger w/o damage to nail|Pnctr w/o foreign body of r mid finger w/o damage to nail +C2849933|T037|HT|S61.232|ICD10CM|Puncture wound without foreign body of right middle finger without damage to nail|Puncture wound without foreign body of right middle finger without damage to nail +C2849934|T037|AB|S61.232A|ICD10CM|Pnctr w/o fb of r mid finger w/o damage to nail, init|Pnctr w/o fb of r mid finger w/o damage to nail, init +C2849934|T037|PT|S61.232A|ICD10CM|Puncture wound without foreign body of right middle finger without damage to nail, initial encounter|Puncture wound without foreign body of right middle finger without damage to nail, initial encounter +C2849935|T037|AB|S61.232D|ICD10CM|Pnctr w/o fb of r mid finger w/o damage to nail, subs|Pnctr w/o fb of r mid finger w/o damage to nail, subs +C2849936|T037|AB|S61.232S|ICD10CM|Pnctr w/o fb of r mid finger w/o damage to nail, sequela|Pnctr w/o fb of r mid finger w/o damage to nail, sequela +C2849936|T037|PT|S61.232S|ICD10CM|Puncture wound without foreign body of right middle finger without damage to nail, sequela|Puncture wound without foreign body of right middle finger without damage to nail, sequela +C2849937|T037|AB|S61.233|ICD10CM|Pnctr w/o foreign body of l mid finger w/o damage to nail|Pnctr w/o foreign body of l mid finger w/o damage to nail +C2849937|T037|HT|S61.233|ICD10CM|Puncture wound without foreign body of left middle finger without damage to nail|Puncture wound without foreign body of left middle finger without damage to nail +C2849938|T037|AB|S61.233A|ICD10CM|Pnctr w/o fb of l mid finger w/o damage to nail, init|Pnctr w/o fb of l mid finger w/o damage to nail, init +C2849938|T037|PT|S61.233A|ICD10CM|Puncture wound without foreign body of left middle finger without damage to nail, initial encounter|Puncture wound without foreign body of left middle finger without damage to nail, initial encounter +C2849939|T037|AB|S61.233D|ICD10CM|Pnctr w/o fb of l mid finger w/o damage to nail, subs|Pnctr w/o fb of l mid finger w/o damage to nail, subs +C2849940|T037|AB|S61.233S|ICD10CM|Pnctr w/o fb of l mid finger w/o damage to nail, sequela|Pnctr w/o fb of l mid finger w/o damage to nail, sequela +C2849940|T037|PT|S61.233S|ICD10CM|Puncture wound without foreign body of left middle finger without damage to nail, sequela|Puncture wound without foreign body of left middle finger without damage to nail, sequela +C2849941|T037|AB|S61.234|ICD10CM|Pnctr w/o foreign body of r rng fngr w/o damage to nail|Pnctr w/o foreign body of r rng fngr w/o damage to nail +C2849941|T037|HT|S61.234|ICD10CM|Puncture wound without foreign body of right ring finger without damage to nail|Puncture wound without foreign body of right ring finger without damage to nail +C2849942|T037|AB|S61.234A|ICD10CM|Pnctr w/o fb of r rng fngr w/o damage to nail, init|Pnctr w/o fb of r rng fngr w/o damage to nail, init +C2849942|T037|PT|S61.234A|ICD10CM|Puncture wound without foreign body of right ring finger without damage to nail, initial encounter|Puncture wound without foreign body of right ring finger without damage to nail, initial encounter +C2849943|T037|AB|S61.234D|ICD10CM|Pnctr w/o fb of r rng fngr w/o damage to nail, subs|Pnctr w/o fb of r rng fngr w/o damage to nail, subs +C2849944|T037|AB|S61.234S|ICD10CM|Pnctr w/o fb of r rng fngr w/o damage to nail, sequela|Pnctr w/o fb of r rng fngr w/o damage to nail, sequela +C2849944|T037|PT|S61.234S|ICD10CM|Puncture wound without foreign body of right ring finger without damage to nail, sequela|Puncture wound without foreign body of right ring finger without damage to nail, sequela +C2849945|T037|AB|S61.235|ICD10CM|Pnctr w/o foreign body of l rng fngr w/o damage to nail|Pnctr w/o foreign body of l rng fngr w/o damage to nail +C2849945|T037|HT|S61.235|ICD10CM|Puncture wound without foreign body of left ring finger without damage to nail|Puncture wound without foreign body of left ring finger without damage to nail +C2849946|T037|AB|S61.235A|ICD10CM|Pnctr w/o fb of l rng fngr w/o damage to nail, init|Pnctr w/o fb of l rng fngr w/o damage to nail, init +C2849946|T037|PT|S61.235A|ICD10CM|Puncture wound without foreign body of left ring finger without damage to nail, initial encounter|Puncture wound without foreign body of left ring finger without damage to nail, initial encounter +C2849947|T037|AB|S61.235D|ICD10CM|Pnctr w/o fb of l rng fngr w/o damage to nail, subs|Pnctr w/o fb of l rng fngr w/o damage to nail, subs +C2849947|T037|PT|S61.235D|ICD10CM|Puncture wound without foreign body of left ring finger without damage to nail, subsequent encounter|Puncture wound without foreign body of left ring finger without damage to nail, subsequent encounter +C2849948|T037|AB|S61.235S|ICD10CM|Pnctr w/o fb of l rng fngr w/o damage to nail, sequela|Pnctr w/o fb of l rng fngr w/o damage to nail, sequela +C2849948|T037|PT|S61.235S|ICD10CM|Puncture wound without foreign body of left ring finger without damage to nail, sequela|Puncture wound without foreign body of left ring finger without damage to nail, sequela +C2849949|T037|AB|S61.236|ICD10CM|Pnctr w/o foreign body of r little finger w/o damage to nail|Pnctr w/o foreign body of r little finger w/o damage to nail +C2849949|T037|HT|S61.236|ICD10CM|Puncture wound without foreign body of right little finger without damage to nail|Puncture wound without foreign body of right little finger without damage to nail +C2849950|T037|AB|S61.236A|ICD10CM|Pnctr w/o fb of r little finger w/o damage to nail, init|Pnctr w/o fb of r little finger w/o damage to nail, init +C2849950|T037|PT|S61.236A|ICD10CM|Puncture wound without foreign body of right little finger without damage to nail, initial encounter|Puncture wound without foreign body of right little finger without damage to nail, initial encounter +C2849951|T037|AB|S61.236D|ICD10CM|Pnctr w/o fb of r little finger w/o damage to nail, subs|Pnctr w/o fb of r little finger w/o damage to nail, subs +C2849952|T037|AB|S61.236S|ICD10CM|Pnctr w/o fb of r little finger w/o damage to nail, sequela|Pnctr w/o fb of r little finger w/o damage to nail, sequela +C2849952|T037|PT|S61.236S|ICD10CM|Puncture wound without foreign body of right little finger without damage to nail, sequela|Puncture wound without foreign body of right little finger without damage to nail, sequela +C2849953|T037|AB|S61.237|ICD10CM|Pnctr w/o foreign body of l little finger w/o damage to nail|Pnctr w/o foreign body of l little finger w/o damage to nail +C2849953|T037|HT|S61.237|ICD10CM|Puncture wound without foreign body of left little finger without damage to nail|Puncture wound without foreign body of left little finger without damage to nail +C2849954|T037|AB|S61.237A|ICD10CM|Pnctr w/o fb of l little finger w/o damage to nail, init|Pnctr w/o fb of l little finger w/o damage to nail, init +C2849954|T037|PT|S61.237A|ICD10CM|Puncture wound without foreign body of left little finger without damage to nail, initial encounter|Puncture wound without foreign body of left little finger without damage to nail, initial encounter +C2849955|T037|AB|S61.237D|ICD10CM|Pnctr w/o fb of l little finger w/o damage to nail, subs|Pnctr w/o fb of l little finger w/o damage to nail, subs +C2849956|T037|AB|S61.237S|ICD10CM|Pnctr w/o fb of l little finger w/o damage to nail, sequela|Pnctr w/o fb of l little finger w/o damage to nail, sequela +C2849956|T037|PT|S61.237S|ICD10CM|Puncture wound without foreign body of left little finger without damage to nail, sequela|Puncture wound without foreign body of left little finger without damage to nail, sequela +C2849958|T037|AB|S61.238|ICD10CM|Puncture wound w/o foreign body of finger w/o damage to nail|Puncture wound w/o foreign body of finger w/o damage to nail +C2849958|T037|HT|S61.238|ICD10CM|Puncture wound without foreign body of other finger without damage to nail|Puncture wound without foreign body of other finger without damage to nail +C2849959|T037|AB|S61.238A|ICD10CM|Pnctr w/o foreign body of finger w/o damage to nail, init|Pnctr w/o foreign body of finger w/o damage to nail, init +C2849959|T037|PT|S61.238A|ICD10CM|Puncture wound without foreign body of other finger without damage to nail, initial encounter|Puncture wound without foreign body of other finger without damage to nail, initial encounter +C2849960|T037|AB|S61.238D|ICD10CM|Pnctr w/o foreign body of finger w/o damage to nail, subs|Pnctr w/o foreign body of finger w/o damage to nail, subs +C2849960|T037|PT|S61.238D|ICD10CM|Puncture wound without foreign body of other finger without damage to nail, subsequent encounter|Puncture wound without foreign body of other finger without damage to nail, subsequent encounter +C2849961|T037|AB|S61.238S|ICD10CM|Pnctr w/o foreign body of finger w/o damage to nail, sequela|Pnctr w/o foreign body of finger w/o damage to nail, sequela +C2849961|T037|PT|S61.238S|ICD10CM|Puncture wound without foreign body of other finger without damage to nail, sequela|Puncture wound without foreign body of other finger without damage to nail, sequela +C2849962|T037|AB|S61.239|ICD10CM|Pnctr w/o foreign body of unsp finger w/o damage to nail|Pnctr w/o foreign body of unsp finger w/o damage to nail +C2849962|T037|HT|S61.239|ICD10CM|Puncture wound without foreign body of unspecified finger without damage to nail|Puncture wound without foreign body of unspecified finger without damage to nail +C2849963|T037|AB|S61.239A|ICD10CM|Pnctr w/o fb of unsp finger w/o damage to nail, init|Pnctr w/o fb of unsp finger w/o damage to nail, init +C2849963|T037|PT|S61.239A|ICD10CM|Puncture wound without foreign body of unspecified finger without damage to nail, initial encounter|Puncture wound without foreign body of unspecified finger without damage to nail, initial encounter +C2849964|T037|AB|S61.239D|ICD10CM|Pnctr w/o fb of unsp finger w/o damage to nail, subs|Pnctr w/o fb of unsp finger w/o damage to nail, subs +C2849965|T037|AB|S61.239S|ICD10CM|Pnctr w/o fb of unsp finger w/o damage to nail, sequela|Pnctr w/o fb of unsp finger w/o damage to nail, sequela +C2849965|T037|PT|S61.239S|ICD10CM|Puncture wound without foreign body of unspecified finger without damage to nail, sequela|Puncture wound without foreign body of unspecified finger without damage to nail, sequela +C2849966|T037|AB|S61.24|ICD10CM|Puncture wound w foreign body of finger w/o damage to nail|Puncture wound w foreign body of finger w/o damage to nail +C2849966|T037|HT|S61.24|ICD10CM|Puncture wound with foreign body of finger without damage to nail|Puncture wound with foreign body of finger without damage to nail +C2849967|T037|AB|S61.240|ICD10CM|Pnctr w foreign body of r idx fngr w/o damage to nail|Pnctr w foreign body of r idx fngr w/o damage to nail +C2849967|T037|HT|S61.240|ICD10CM|Puncture wound with foreign body of right index finger without damage to nail|Puncture wound with foreign body of right index finger without damage to nail +C2849968|T037|AB|S61.240A|ICD10CM|Pnctr w foreign body of r idx fngr w/o damage to nail, init|Pnctr w foreign body of r idx fngr w/o damage to nail, init +C2849968|T037|PT|S61.240A|ICD10CM|Puncture wound with foreign body of right index finger without damage to nail, initial encounter|Puncture wound with foreign body of right index finger without damage to nail, initial encounter +C2849969|T037|AB|S61.240D|ICD10CM|Pnctr w foreign body of r idx fngr w/o damage to nail, subs|Pnctr w foreign body of r idx fngr w/o damage to nail, subs +C2849969|T037|PT|S61.240D|ICD10CM|Puncture wound with foreign body of right index finger without damage to nail, subsequent encounter|Puncture wound with foreign body of right index finger without damage to nail, subsequent encounter +C2849970|T037|AB|S61.240S|ICD10CM|Pnctr w fb of r idx fngr w/o damage to nail, sequela|Pnctr w fb of r idx fngr w/o damage to nail, sequela +C2849970|T037|PT|S61.240S|ICD10CM|Puncture wound with foreign body of right index finger without damage to nail, sequela|Puncture wound with foreign body of right index finger without damage to nail, sequela +C2849971|T037|AB|S61.241|ICD10CM|Pnctr w foreign body of l idx fngr w/o damage to nail|Pnctr w foreign body of l idx fngr w/o damage to nail +C2849971|T037|HT|S61.241|ICD10CM|Puncture wound with foreign body of left index finger without damage to nail|Puncture wound with foreign body of left index finger without damage to nail +C2849972|T037|AB|S61.241A|ICD10CM|Pnctr w foreign body of l idx fngr w/o damage to nail, init|Pnctr w foreign body of l idx fngr w/o damage to nail, init +C2849972|T037|PT|S61.241A|ICD10CM|Puncture wound with foreign body of left index finger without damage to nail, initial encounter|Puncture wound with foreign body of left index finger without damage to nail, initial encounter +C2849973|T037|AB|S61.241D|ICD10CM|Pnctr w foreign body of l idx fngr w/o damage to nail, subs|Pnctr w foreign body of l idx fngr w/o damage to nail, subs +C2849973|T037|PT|S61.241D|ICD10CM|Puncture wound with foreign body of left index finger without damage to nail, subsequent encounter|Puncture wound with foreign body of left index finger without damage to nail, subsequent encounter +C2849974|T037|AB|S61.241S|ICD10CM|Pnctr w fb of l idx fngr w/o damage to nail, sequela|Pnctr w fb of l idx fngr w/o damage to nail, sequela +C2849974|T037|PT|S61.241S|ICD10CM|Puncture wound with foreign body of left index finger without damage to nail, sequela|Puncture wound with foreign body of left index finger without damage to nail, sequela +C2849975|T037|AB|S61.242|ICD10CM|Pnctr w foreign body of r mid finger w/o damage to nail|Pnctr w foreign body of r mid finger w/o damage to nail +C2849975|T037|HT|S61.242|ICD10CM|Puncture wound with foreign body of right middle finger without damage to nail|Puncture wound with foreign body of right middle finger without damage to nail +C2849976|T037|AB|S61.242A|ICD10CM|Pnctr w fb of r mid finger w/o damage to nail, init|Pnctr w fb of r mid finger w/o damage to nail, init +C2849976|T037|PT|S61.242A|ICD10CM|Puncture wound with foreign body of right middle finger without damage to nail, initial encounter|Puncture wound with foreign body of right middle finger without damage to nail, initial encounter +C2849977|T037|AB|S61.242D|ICD10CM|Pnctr w fb of r mid finger w/o damage to nail, subs|Pnctr w fb of r mid finger w/o damage to nail, subs +C2849977|T037|PT|S61.242D|ICD10CM|Puncture wound with foreign body of right middle finger without damage to nail, subsequent encounter|Puncture wound with foreign body of right middle finger without damage to nail, subsequent encounter +C2849978|T037|AB|S61.242S|ICD10CM|Pnctr w fb of r mid finger w/o damage to nail, sequela|Pnctr w fb of r mid finger w/o damage to nail, sequela +C2849978|T037|PT|S61.242S|ICD10CM|Puncture wound with foreign body of right middle finger without damage to nail, sequela|Puncture wound with foreign body of right middle finger without damage to nail, sequela +C2849979|T037|AB|S61.243|ICD10CM|Pnctr w foreign body of l mid finger w/o damage to nail|Pnctr w foreign body of l mid finger w/o damage to nail +C2849979|T037|HT|S61.243|ICD10CM|Puncture wound with foreign body of left middle finger without damage to nail|Puncture wound with foreign body of left middle finger without damage to nail +C2849980|T037|AB|S61.243A|ICD10CM|Pnctr w fb of l mid finger w/o damage to nail, init|Pnctr w fb of l mid finger w/o damage to nail, init +C2849980|T037|PT|S61.243A|ICD10CM|Puncture wound with foreign body of left middle finger without damage to nail, initial encounter|Puncture wound with foreign body of left middle finger without damage to nail, initial encounter +C2849981|T037|AB|S61.243D|ICD10CM|Pnctr w fb of l mid finger w/o damage to nail, subs|Pnctr w fb of l mid finger w/o damage to nail, subs +C2849981|T037|PT|S61.243D|ICD10CM|Puncture wound with foreign body of left middle finger without damage to nail, subsequent encounter|Puncture wound with foreign body of left middle finger without damage to nail, subsequent encounter +C2849982|T037|AB|S61.243S|ICD10CM|Pnctr w fb of l mid finger w/o damage to nail, sequela|Pnctr w fb of l mid finger w/o damage to nail, sequela +C2849982|T037|PT|S61.243S|ICD10CM|Puncture wound with foreign body of left middle finger without damage to nail, sequela|Puncture wound with foreign body of left middle finger without damage to nail, sequela +C2849983|T037|AB|S61.244|ICD10CM|Pnctr w foreign body of r rng fngr w/o damage to nail|Pnctr w foreign body of r rng fngr w/o damage to nail +C2849983|T037|HT|S61.244|ICD10CM|Puncture wound with foreign body of right ring finger without damage to nail|Puncture wound with foreign body of right ring finger without damage to nail +C2849984|T037|AB|S61.244A|ICD10CM|Pnctr w foreign body of r rng fngr w/o damage to nail, init|Pnctr w foreign body of r rng fngr w/o damage to nail, init +C2849984|T037|PT|S61.244A|ICD10CM|Puncture wound with foreign body of right ring finger without damage to nail, initial encounter|Puncture wound with foreign body of right ring finger without damage to nail, initial encounter +C2849985|T037|AB|S61.244D|ICD10CM|Pnctr w foreign body of r rng fngr w/o damage to nail, subs|Pnctr w foreign body of r rng fngr w/o damage to nail, subs +C2849985|T037|PT|S61.244D|ICD10CM|Puncture wound with foreign body of right ring finger without damage to nail, subsequent encounter|Puncture wound with foreign body of right ring finger without damage to nail, subsequent encounter +C2849986|T037|AB|S61.244S|ICD10CM|Pnctr w fb of r rng fngr w/o damage to nail, sequela|Pnctr w fb of r rng fngr w/o damage to nail, sequela +C2849986|T037|PT|S61.244S|ICD10CM|Puncture wound with foreign body of right ring finger without damage to nail, sequela|Puncture wound with foreign body of right ring finger without damage to nail, sequela +C2849987|T037|AB|S61.245|ICD10CM|Pnctr w foreign body of l rng fngr w/o damage to nail|Pnctr w foreign body of l rng fngr w/o damage to nail +C2849987|T037|HT|S61.245|ICD10CM|Puncture wound with foreign body of left ring finger without damage to nail|Puncture wound with foreign body of left ring finger without damage to nail +C2849988|T037|AB|S61.245A|ICD10CM|Pnctr w foreign body of l rng fngr w/o damage to nail, init|Pnctr w foreign body of l rng fngr w/o damage to nail, init +C2849988|T037|PT|S61.245A|ICD10CM|Puncture wound with foreign body of left ring finger without damage to nail, initial encounter|Puncture wound with foreign body of left ring finger without damage to nail, initial encounter +C2849989|T037|AB|S61.245D|ICD10CM|Pnctr w foreign body of l rng fngr w/o damage to nail, subs|Pnctr w foreign body of l rng fngr w/o damage to nail, subs +C2849989|T037|PT|S61.245D|ICD10CM|Puncture wound with foreign body of left ring finger without damage to nail, subsequent encounter|Puncture wound with foreign body of left ring finger without damage to nail, subsequent encounter +C2849990|T037|AB|S61.245S|ICD10CM|Pnctr w fb of l rng fngr w/o damage to nail, sequela|Pnctr w fb of l rng fngr w/o damage to nail, sequela +C2849990|T037|PT|S61.245S|ICD10CM|Puncture wound with foreign body of left ring finger without damage to nail, sequela|Puncture wound with foreign body of left ring finger without damage to nail, sequela +C2849991|T037|AB|S61.246|ICD10CM|Pnctr w foreign body of r little finger w/o damage to nail|Pnctr w foreign body of r little finger w/o damage to nail +C2849991|T037|HT|S61.246|ICD10CM|Puncture wound with foreign body of right little finger without damage to nail|Puncture wound with foreign body of right little finger without damage to nail +C2849992|T037|AB|S61.246A|ICD10CM|Pnctr w fb of r little finger w/o damage to nail, init|Pnctr w fb of r little finger w/o damage to nail, init +C2849992|T037|PT|S61.246A|ICD10CM|Puncture wound with foreign body of right little finger without damage to nail, initial encounter|Puncture wound with foreign body of right little finger without damage to nail, initial encounter +C2849993|T037|AB|S61.246D|ICD10CM|Pnctr w fb of r little finger w/o damage to nail, subs|Pnctr w fb of r little finger w/o damage to nail, subs +C2849993|T037|PT|S61.246D|ICD10CM|Puncture wound with foreign body of right little finger without damage to nail, subsequent encounter|Puncture wound with foreign body of right little finger without damage to nail, subsequent encounter +C2849994|T037|AB|S61.246S|ICD10CM|Pnctr w fb of r little finger w/o damage to nail, sequela|Pnctr w fb of r little finger w/o damage to nail, sequela +C2849994|T037|PT|S61.246S|ICD10CM|Puncture wound with foreign body of right little finger without damage to nail, sequela|Puncture wound with foreign body of right little finger without damage to nail, sequela +C2849995|T037|AB|S61.247|ICD10CM|Pnctr w foreign body of l little finger w/o damage to nail|Pnctr w foreign body of l little finger w/o damage to nail +C2849995|T037|HT|S61.247|ICD10CM|Puncture wound with foreign body of left little finger without damage to nail|Puncture wound with foreign body of left little finger without damage to nail +C2849996|T037|AB|S61.247A|ICD10CM|Pnctr w fb of l little finger w/o damage to nail, init|Pnctr w fb of l little finger w/o damage to nail, init +C2849996|T037|PT|S61.247A|ICD10CM|Puncture wound with foreign body of left little finger without damage to nail, initial encounter|Puncture wound with foreign body of left little finger without damage to nail, initial encounter +C2849997|T037|AB|S61.247D|ICD10CM|Pnctr w fb of l little finger w/o damage to nail, subs|Pnctr w fb of l little finger w/o damage to nail, subs +C2849997|T037|PT|S61.247D|ICD10CM|Puncture wound with foreign body of left little finger without damage to nail, subsequent encounter|Puncture wound with foreign body of left little finger without damage to nail, subsequent encounter +C2849998|T037|AB|S61.247S|ICD10CM|Pnctr w fb of l little finger w/o damage to nail, sequela|Pnctr w fb of l little finger w/o damage to nail, sequela +C2849998|T037|PT|S61.247S|ICD10CM|Puncture wound with foreign body of left little finger without damage to nail, sequela|Puncture wound with foreign body of left little finger without damage to nail, sequela +C2850000|T037|AB|S61.248|ICD10CM|Puncture wound w foreign body of finger w/o damage to nail|Puncture wound w foreign body of finger w/o damage to nail +C2850000|T037|HT|S61.248|ICD10CM|Puncture wound with foreign body of other finger without damage to nail|Puncture wound with foreign body of other finger without damage to nail +C2850001|T037|AB|S61.248A|ICD10CM|Pnctr w foreign body of finger w/o damage to nail, init|Pnctr w foreign body of finger w/o damage to nail, init +C2850001|T037|PT|S61.248A|ICD10CM|Puncture wound with foreign body of other finger without damage to nail, initial encounter|Puncture wound with foreign body of other finger without damage to nail, initial encounter +C2850002|T037|AB|S61.248D|ICD10CM|Pnctr w foreign body of finger w/o damage to nail, subs|Pnctr w foreign body of finger w/o damage to nail, subs +C2850002|T037|PT|S61.248D|ICD10CM|Puncture wound with foreign body of other finger without damage to nail, subsequent encounter|Puncture wound with foreign body of other finger without damage to nail, subsequent encounter +C2850003|T037|AB|S61.248S|ICD10CM|Pnctr w foreign body of finger w/o damage to nail, sequela|Pnctr w foreign body of finger w/o damage to nail, sequela +C2850003|T037|PT|S61.248S|ICD10CM|Puncture wound with foreign body of other finger without damage to nail, sequela|Puncture wound with foreign body of other finger without damage to nail, sequela +C2850004|T037|AB|S61.249|ICD10CM|Pnctr w foreign body of unsp finger w/o damage to nail|Pnctr w foreign body of unsp finger w/o damage to nail +C2850004|T037|HT|S61.249|ICD10CM|Puncture wound with foreign body of unspecified finger without damage to nail|Puncture wound with foreign body of unspecified finger without damage to nail +C2850005|T037|AB|S61.249A|ICD10CM|Pnctr w foreign body of unsp finger w/o damage to nail, init|Pnctr w foreign body of unsp finger w/o damage to nail, init +C2850005|T037|PT|S61.249A|ICD10CM|Puncture wound with foreign body of unspecified finger without damage to nail, initial encounter|Puncture wound with foreign body of unspecified finger without damage to nail, initial encounter +C2850006|T037|AB|S61.249D|ICD10CM|Pnctr w foreign body of unsp finger w/o damage to nail, subs|Pnctr w foreign body of unsp finger w/o damage to nail, subs +C2850006|T037|PT|S61.249D|ICD10CM|Puncture wound with foreign body of unspecified finger without damage to nail, subsequent encounter|Puncture wound with foreign body of unspecified finger without damage to nail, subsequent encounter +C2850007|T037|AB|S61.249S|ICD10CM|Pnctr w fb of unsp finger w/o damage to nail, sequela|Pnctr w fb of unsp finger w/o damage to nail, sequela +C2850007|T037|PT|S61.249S|ICD10CM|Puncture wound with foreign body of unspecified finger without damage to nail, sequela|Puncture wound with foreign body of unspecified finger without damage to nail, sequela +C2850008|T037|ET|S61.25|ICD10CM|Bite of finger without damage to nail NOS|Bite of finger without damage to nail NOS +C2850009|T037|HT|S61.25|ICD10CM|Open bite of finger without damage to nail|Open bite of finger without damage to nail +C2850009|T037|AB|S61.25|ICD10CM|Open bite of finger without damage to nail|Open bite of finger without damage to nail +C2850010|T037|AB|S61.250|ICD10CM|Open bite of right index finger without damage to nail|Open bite of right index finger without damage to nail +C2850010|T037|HT|S61.250|ICD10CM|Open bite of right index finger without damage to nail|Open bite of right index finger without damage to nail +C2850011|T037|AB|S61.250A|ICD10CM|Open bite of right index finger w/o damage to nail, init|Open bite of right index finger w/o damage to nail, init +C2850011|T037|PT|S61.250A|ICD10CM|Open bite of right index finger without damage to nail, initial encounter|Open bite of right index finger without damage to nail, initial encounter +C2850012|T037|AB|S61.250D|ICD10CM|Open bite of right index finger w/o damage to nail, subs|Open bite of right index finger w/o damage to nail, subs +C2850012|T037|PT|S61.250D|ICD10CM|Open bite of right index finger without damage to nail, subsequent encounter|Open bite of right index finger without damage to nail, subsequent encounter +C2850013|T037|AB|S61.250S|ICD10CM|Open bite of right index finger w/o damage to nail, sequela|Open bite of right index finger w/o damage to nail, sequela +C2850013|T037|PT|S61.250S|ICD10CM|Open bite of right index finger without damage to nail, sequela|Open bite of right index finger without damage to nail, sequela +C2850014|T037|AB|S61.251|ICD10CM|Open bite of left index finger without damage to nail|Open bite of left index finger without damage to nail +C2850014|T037|HT|S61.251|ICD10CM|Open bite of left index finger without damage to nail|Open bite of left index finger without damage to nail +C2850015|T037|AB|S61.251A|ICD10CM|Open bite of left index finger w/o damage to nail, init|Open bite of left index finger w/o damage to nail, init +C2850015|T037|PT|S61.251A|ICD10CM|Open bite of left index finger without damage to nail, initial encounter|Open bite of left index finger without damage to nail, initial encounter +C2850016|T037|AB|S61.251D|ICD10CM|Open bite of left index finger w/o damage to nail, subs|Open bite of left index finger w/o damage to nail, subs +C2850016|T037|PT|S61.251D|ICD10CM|Open bite of left index finger without damage to nail, subsequent encounter|Open bite of left index finger without damage to nail, subsequent encounter +C2850017|T037|AB|S61.251S|ICD10CM|Open bite of left index finger w/o damage to nail, sequela|Open bite of left index finger w/o damage to nail, sequela +C2850017|T037|PT|S61.251S|ICD10CM|Open bite of left index finger without damage to nail, sequela|Open bite of left index finger without damage to nail, sequela +C2850018|T037|AB|S61.252|ICD10CM|Open bite of right middle finger without damage to nail|Open bite of right middle finger without damage to nail +C2850018|T037|HT|S61.252|ICD10CM|Open bite of right middle finger without damage to nail|Open bite of right middle finger without damage to nail +C2850019|T037|AB|S61.252A|ICD10CM|Open bite of right middle finger w/o damage to nail, init|Open bite of right middle finger w/o damage to nail, init +C2850019|T037|PT|S61.252A|ICD10CM|Open bite of right middle finger without damage to nail, initial encounter|Open bite of right middle finger without damage to nail, initial encounter +C2850020|T037|AB|S61.252D|ICD10CM|Open bite of right middle finger w/o damage to nail, subs|Open bite of right middle finger w/o damage to nail, subs +C2850020|T037|PT|S61.252D|ICD10CM|Open bite of right middle finger without damage to nail, subsequent encounter|Open bite of right middle finger without damage to nail, subsequent encounter +C2850021|T037|AB|S61.252S|ICD10CM|Open bite of right middle finger w/o damage to nail, sequela|Open bite of right middle finger w/o damage to nail, sequela +C2850021|T037|PT|S61.252S|ICD10CM|Open bite of right middle finger without damage to nail, sequela|Open bite of right middle finger without damage to nail, sequela +C2850022|T037|AB|S61.253|ICD10CM|Open bite of left middle finger without damage to nail|Open bite of left middle finger without damage to nail +C2850022|T037|HT|S61.253|ICD10CM|Open bite of left middle finger without damage to nail|Open bite of left middle finger without damage to nail +C2850023|T037|AB|S61.253A|ICD10CM|Open bite of left middle finger w/o damage to nail, init|Open bite of left middle finger w/o damage to nail, init +C2850023|T037|PT|S61.253A|ICD10CM|Open bite of left middle finger without damage to nail, initial encounter|Open bite of left middle finger without damage to nail, initial encounter +C2850024|T037|AB|S61.253D|ICD10CM|Open bite of left middle finger w/o damage to nail, subs|Open bite of left middle finger w/o damage to nail, subs +C2850024|T037|PT|S61.253D|ICD10CM|Open bite of left middle finger without damage to nail, subsequent encounter|Open bite of left middle finger without damage to nail, subsequent encounter +C2850025|T037|AB|S61.253S|ICD10CM|Open bite of left middle finger w/o damage to nail, sequela|Open bite of left middle finger w/o damage to nail, sequela +C2850025|T037|PT|S61.253S|ICD10CM|Open bite of left middle finger without damage to nail, sequela|Open bite of left middle finger without damage to nail, sequela +C2850026|T037|AB|S61.254|ICD10CM|Open bite of right ring finger without damage to nail|Open bite of right ring finger without damage to nail +C2850026|T037|HT|S61.254|ICD10CM|Open bite of right ring finger without damage to nail|Open bite of right ring finger without damage to nail +C2850027|T037|AB|S61.254A|ICD10CM|Open bite of right ring finger w/o damage to nail, init|Open bite of right ring finger w/o damage to nail, init +C2850027|T037|PT|S61.254A|ICD10CM|Open bite of right ring finger without damage to nail, initial encounter|Open bite of right ring finger without damage to nail, initial encounter +C2850028|T037|AB|S61.254D|ICD10CM|Open bite of right ring finger w/o damage to nail, subs|Open bite of right ring finger w/o damage to nail, subs +C2850028|T037|PT|S61.254D|ICD10CM|Open bite of right ring finger without damage to nail, subsequent encounter|Open bite of right ring finger without damage to nail, subsequent encounter +C2850029|T037|AB|S61.254S|ICD10CM|Open bite of right ring finger w/o damage to nail, sequela|Open bite of right ring finger w/o damage to nail, sequela +C2850029|T037|PT|S61.254S|ICD10CM|Open bite of right ring finger without damage to nail, sequela|Open bite of right ring finger without damage to nail, sequela +C2850030|T037|AB|S61.255|ICD10CM|Open bite of left ring finger without damage to nail|Open bite of left ring finger without damage to nail +C2850030|T037|HT|S61.255|ICD10CM|Open bite of left ring finger without damage to nail|Open bite of left ring finger without damage to nail +C2850031|T037|AB|S61.255A|ICD10CM|Open bite of left ring finger w/o damage to nail, init|Open bite of left ring finger w/o damage to nail, init +C2850031|T037|PT|S61.255A|ICD10CM|Open bite of left ring finger without damage to nail, initial encounter|Open bite of left ring finger without damage to nail, initial encounter +C2850032|T037|AB|S61.255D|ICD10CM|Open bite of left ring finger w/o damage to nail, subs|Open bite of left ring finger w/o damage to nail, subs +C2850032|T037|PT|S61.255D|ICD10CM|Open bite of left ring finger without damage to nail, subsequent encounter|Open bite of left ring finger without damage to nail, subsequent encounter +C2850033|T037|AB|S61.255S|ICD10CM|Open bite of left ring finger w/o damage to nail, sequela|Open bite of left ring finger w/o damage to nail, sequela +C2850033|T037|PT|S61.255S|ICD10CM|Open bite of left ring finger without damage to nail, sequela|Open bite of left ring finger without damage to nail, sequela +C2850034|T037|AB|S61.256|ICD10CM|Open bite of right little finger without damage to nail|Open bite of right little finger without damage to nail +C2850034|T037|HT|S61.256|ICD10CM|Open bite of right little finger without damage to nail|Open bite of right little finger without damage to nail +C2850035|T037|AB|S61.256A|ICD10CM|Open bite of right little finger w/o damage to nail, init|Open bite of right little finger w/o damage to nail, init +C2850035|T037|PT|S61.256A|ICD10CM|Open bite of right little finger without damage to nail, initial encounter|Open bite of right little finger without damage to nail, initial encounter +C2850036|T037|AB|S61.256D|ICD10CM|Open bite of right little finger w/o damage to nail, subs|Open bite of right little finger w/o damage to nail, subs +C2850036|T037|PT|S61.256D|ICD10CM|Open bite of right little finger without damage to nail, subsequent encounter|Open bite of right little finger without damage to nail, subsequent encounter +C2850037|T037|AB|S61.256S|ICD10CM|Open bite of right little finger w/o damage to nail, sequela|Open bite of right little finger w/o damage to nail, sequela +C2850037|T037|PT|S61.256S|ICD10CM|Open bite of right little finger without damage to nail, sequela|Open bite of right little finger without damage to nail, sequela +C2850038|T037|AB|S61.257|ICD10CM|Open bite of left little finger without damage to nail|Open bite of left little finger without damage to nail +C2850038|T037|HT|S61.257|ICD10CM|Open bite of left little finger without damage to nail|Open bite of left little finger without damage to nail +C2850039|T037|AB|S61.257A|ICD10CM|Open bite of left little finger w/o damage to nail, init|Open bite of left little finger w/o damage to nail, init +C2850039|T037|PT|S61.257A|ICD10CM|Open bite of left little finger without damage to nail, initial encounter|Open bite of left little finger without damage to nail, initial encounter +C2850040|T037|AB|S61.257D|ICD10CM|Open bite of left little finger w/o damage to nail, subs|Open bite of left little finger w/o damage to nail, subs +C2850040|T037|PT|S61.257D|ICD10CM|Open bite of left little finger without damage to nail, subsequent encounter|Open bite of left little finger without damage to nail, subsequent encounter +C2850041|T037|AB|S61.257S|ICD10CM|Open bite of left little finger w/o damage to nail, sequela|Open bite of left little finger w/o damage to nail, sequela +C2850041|T037|PT|S61.257S|ICD10CM|Open bite of left little finger without damage to nail, sequela|Open bite of left little finger without damage to nail, sequela +C2850043|T037|AB|S61.258|ICD10CM|Open bite of other finger without damage to nail|Open bite of other finger without damage to nail +C2850043|T037|HT|S61.258|ICD10CM|Open bite of other finger without damage to nail|Open bite of other finger without damage to nail +C2850042|T037|ET|S61.258|ICD10CM|Open bite of specified finger with unspecified laterality without damage to nail|Open bite of specified finger with unspecified laterality without damage to nail +C2850044|T037|AB|S61.258A|ICD10CM|Open bite of other finger w/o damage to nail, init encntr|Open bite of other finger w/o damage to nail, init encntr +C2850044|T037|PT|S61.258A|ICD10CM|Open bite of other finger without damage to nail, initial encounter|Open bite of other finger without damage to nail, initial encounter +C2850045|T037|AB|S61.258D|ICD10CM|Open bite of other finger w/o damage to nail, subs encntr|Open bite of other finger w/o damage to nail, subs encntr +C2850045|T037|PT|S61.258D|ICD10CM|Open bite of other finger without damage to nail, subsequent encounter|Open bite of other finger without damage to nail, subsequent encounter +C2850046|T037|AB|S61.258S|ICD10CM|Open bite of other finger without damage to nail, sequela|Open bite of other finger without damage to nail, sequela +C2850046|T037|PT|S61.258S|ICD10CM|Open bite of other finger without damage to nail, sequela|Open bite of other finger without damage to nail, sequela +C2850047|T037|AB|S61.259|ICD10CM|Open bite of unspecified finger without damage to nail|Open bite of unspecified finger without damage to nail +C2850047|T037|HT|S61.259|ICD10CM|Open bite of unspecified finger without damage to nail|Open bite of unspecified finger without damage to nail +C2850048|T037|AB|S61.259A|ICD10CM|Open bite of unsp finger without damage to nail, init encntr|Open bite of unsp finger without damage to nail, init encntr +C2850048|T037|PT|S61.259A|ICD10CM|Open bite of unspecified finger without damage to nail, initial encounter|Open bite of unspecified finger without damage to nail, initial encounter +C2850049|T037|AB|S61.259D|ICD10CM|Open bite of unsp finger without damage to nail, subs encntr|Open bite of unsp finger without damage to nail, subs encntr +C2850049|T037|PT|S61.259D|ICD10CM|Open bite of unspecified finger without damage to nail, subsequent encounter|Open bite of unspecified finger without damage to nail, subsequent encounter +C2850050|T037|AB|S61.259S|ICD10CM|Open bite of unsp finger without damage to nail, sequela|Open bite of unsp finger without damage to nail, sequela +C2850050|T037|PT|S61.259S|ICD10CM|Open bite of unspecified finger without damage to nail, sequela|Open bite of unspecified finger without damage to nail, sequela +C2850051|T037|AB|S61.3|ICD10CM|Open wound of other finger with damage to nail|Open wound of other finger with damage to nail +C2850051|T037|HT|S61.3|ICD10CM|Open wound of other finger with damage to nail|Open wound of other finger with damage to nail +C2850052|T037|AB|S61.30|ICD10CM|Unspecified open wound of finger with damage to nail|Unspecified open wound of finger with damage to nail +C2850052|T037|HT|S61.30|ICD10CM|Unspecified open wound of finger with damage to nail|Unspecified open wound of finger with damage to nail +C2850053|T037|AB|S61.300|ICD10CM|Unsp open wound of right index finger with damage to nail|Unsp open wound of right index finger with damage to nail +C2850053|T037|HT|S61.300|ICD10CM|Unspecified open wound of right index finger with damage to nail|Unspecified open wound of right index finger with damage to nail +C2850054|T037|AB|S61.300A|ICD10CM|Unsp open wound of right index finger w damage to nail, init|Unsp open wound of right index finger w damage to nail, init +C2850054|T037|PT|S61.300A|ICD10CM|Unspecified open wound of right index finger with damage to nail, initial encounter|Unspecified open wound of right index finger with damage to nail, initial encounter +C2850055|T037|AB|S61.300D|ICD10CM|Unsp open wound of right index finger w damage to nail, subs|Unsp open wound of right index finger w damage to nail, subs +C2850055|T037|PT|S61.300D|ICD10CM|Unspecified open wound of right index finger with damage to nail, subsequent encounter|Unspecified open wound of right index finger with damage to nail, subsequent encounter +C2850056|T037|AB|S61.300S|ICD10CM|Unsp open wound of r idx fngr w damage to nail, sequela|Unsp open wound of r idx fngr w damage to nail, sequela +C2850056|T037|PT|S61.300S|ICD10CM|Unspecified open wound of right index finger with damage to nail, sequela|Unspecified open wound of right index finger with damage to nail, sequela +C2850057|T037|AB|S61.301|ICD10CM|Unsp open wound of left index finger with damage to nail|Unsp open wound of left index finger with damage to nail +C2850057|T037|HT|S61.301|ICD10CM|Unspecified open wound of left index finger with damage to nail|Unspecified open wound of left index finger with damage to nail +C2850058|T037|AB|S61.301A|ICD10CM|Unsp open wound of left index finger w damage to nail, init|Unsp open wound of left index finger w damage to nail, init +C2850058|T037|PT|S61.301A|ICD10CM|Unspecified open wound of left index finger with damage to nail, initial encounter|Unspecified open wound of left index finger with damage to nail, initial encounter +C2850059|T037|AB|S61.301D|ICD10CM|Unsp open wound of left index finger w damage to nail, subs|Unsp open wound of left index finger w damage to nail, subs +C2850059|T037|PT|S61.301D|ICD10CM|Unspecified open wound of left index finger with damage to nail, subsequent encounter|Unspecified open wound of left index finger with damage to nail, subsequent encounter +C2850060|T037|AB|S61.301S|ICD10CM|Unsp open wound of l idx fngr w damage to nail, sequela|Unsp open wound of l idx fngr w damage to nail, sequela +C2850060|T037|PT|S61.301S|ICD10CM|Unspecified open wound of left index finger with damage to nail, sequela|Unspecified open wound of left index finger with damage to nail, sequela +C2850061|T037|AB|S61.302|ICD10CM|Unsp open wound of right middle finger with damage to nail|Unsp open wound of right middle finger with damage to nail +C2850061|T037|HT|S61.302|ICD10CM|Unspecified open wound of right middle finger with damage to nail|Unspecified open wound of right middle finger with damage to nail +C2850062|T037|AB|S61.302A|ICD10CM|Unsp open wound of r mid finger w damage to nail, init|Unsp open wound of r mid finger w damage to nail, init +C2850062|T037|PT|S61.302A|ICD10CM|Unspecified open wound of right middle finger with damage to nail, initial encounter|Unspecified open wound of right middle finger with damage to nail, initial encounter +C2850063|T037|AB|S61.302D|ICD10CM|Unsp open wound of r mid finger w damage to nail, subs|Unsp open wound of r mid finger w damage to nail, subs +C2850063|T037|PT|S61.302D|ICD10CM|Unspecified open wound of right middle finger with damage to nail, subsequent encounter|Unspecified open wound of right middle finger with damage to nail, subsequent encounter +C2850064|T037|AB|S61.302S|ICD10CM|Unsp open wound of r mid finger w damage to nail, sequela|Unsp open wound of r mid finger w damage to nail, sequela +C2850064|T037|PT|S61.302S|ICD10CM|Unspecified open wound of right middle finger with damage to nail, sequela|Unspecified open wound of right middle finger with damage to nail, sequela +C2850065|T037|AB|S61.303|ICD10CM|Unsp open wound of left middle finger with damage to nail|Unsp open wound of left middle finger with damage to nail +C2850065|T037|HT|S61.303|ICD10CM|Unspecified open wound of left middle finger with damage to nail|Unspecified open wound of left middle finger with damage to nail +C2850066|T037|AB|S61.303A|ICD10CM|Unsp open wound of left middle finger w damage to nail, init|Unsp open wound of left middle finger w damage to nail, init +C2850066|T037|PT|S61.303A|ICD10CM|Unspecified open wound of left middle finger with damage to nail, initial encounter|Unspecified open wound of left middle finger with damage to nail, initial encounter +C2850067|T037|AB|S61.303D|ICD10CM|Unsp open wound of left middle finger w damage to nail, subs|Unsp open wound of left middle finger w damage to nail, subs +C2850067|T037|PT|S61.303D|ICD10CM|Unspecified open wound of left middle finger with damage to nail, subsequent encounter|Unspecified open wound of left middle finger with damage to nail, subsequent encounter +C2850068|T037|AB|S61.303S|ICD10CM|Unsp open wound of l mid finger w damage to nail, sequela|Unsp open wound of l mid finger w damage to nail, sequela +C2850068|T037|PT|S61.303S|ICD10CM|Unspecified open wound of left middle finger with damage to nail, sequela|Unspecified open wound of left middle finger with damage to nail, sequela +C2850069|T037|AB|S61.304|ICD10CM|Unsp open wound of right ring finger with damage to nail|Unsp open wound of right ring finger with damage to nail +C2850069|T037|HT|S61.304|ICD10CM|Unspecified open wound of right ring finger with damage to nail|Unspecified open wound of right ring finger with damage to nail +C2850070|T037|AB|S61.304A|ICD10CM|Unsp open wound of right ring finger w damage to nail, init|Unsp open wound of right ring finger w damage to nail, init +C2850070|T037|PT|S61.304A|ICD10CM|Unspecified open wound of right ring finger with damage to nail, initial encounter|Unspecified open wound of right ring finger with damage to nail, initial encounter +C2850071|T037|AB|S61.304D|ICD10CM|Unsp open wound of right ring finger w damage to nail, subs|Unsp open wound of right ring finger w damage to nail, subs +C2850071|T037|PT|S61.304D|ICD10CM|Unspecified open wound of right ring finger with damage to nail, subsequent encounter|Unspecified open wound of right ring finger with damage to nail, subsequent encounter +C2850072|T037|AB|S61.304S|ICD10CM|Unsp open wound of r rng fngr w damage to nail, sequela|Unsp open wound of r rng fngr w damage to nail, sequela +C2850072|T037|PT|S61.304S|ICD10CM|Unspecified open wound of right ring finger with damage to nail, sequela|Unspecified open wound of right ring finger with damage to nail, sequela +C2850073|T037|AB|S61.305|ICD10CM|Unsp open wound of left ring finger with damage to nail|Unsp open wound of left ring finger with damage to nail +C2850073|T037|HT|S61.305|ICD10CM|Unspecified open wound of left ring finger with damage to nail|Unspecified open wound of left ring finger with damage to nail +C2850074|T037|AB|S61.305A|ICD10CM|Unsp open wound of left ring finger w damage to nail, init|Unsp open wound of left ring finger w damage to nail, init +C2850074|T037|PT|S61.305A|ICD10CM|Unspecified open wound of left ring finger with damage to nail, initial encounter|Unspecified open wound of left ring finger with damage to nail, initial encounter +C2850075|T037|AB|S61.305D|ICD10CM|Unsp open wound of left ring finger w damage to nail, subs|Unsp open wound of left ring finger w damage to nail, subs +C2850075|T037|PT|S61.305D|ICD10CM|Unspecified open wound of left ring finger with damage to nail, subsequent encounter|Unspecified open wound of left ring finger with damage to nail, subsequent encounter +C2850076|T037|AB|S61.305S|ICD10CM|Unsp open wound of l rng fngr w damage to nail, sequela|Unsp open wound of l rng fngr w damage to nail, sequela +C2850076|T037|PT|S61.305S|ICD10CM|Unspecified open wound of left ring finger with damage to nail, sequela|Unspecified open wound of left ring finger with damage to nail, sequela +C2850077|T037|AB|S61.306|ICD10CM|Unsp open wound of right little finger with damage to nail|Unsp open wound of right little finger with damage to nail +C2850077|T037|HT|S61.306|ICD10CM|Unspecified open wound of right little finger with damage to nail|Unspecified open wound of right little finger with damage to nail +C2850078|T037|AB|S61.306A|ICD10CM|Unsp open wound of r little finger w damage to nail, init|Unsp open wound of r little finger w damage to nail, init +C2850078|T037|PT|S61.306A|ICD10CM|Unspecified open wound of right little finger with damage to nail, initial encounter|Unspecified open wound of right little finger with damage to nail, initial encounter +C2850079|T037|AB|S61.306D|ICD10CM|Unsp open wound of r little finger w damage to nail, subs|Unsp open wound of r little finger w damage to nail, subs +C2850079|T037|PT|S61.306D|ICD10CM|Unspecified open wound of right little finger with damage to nail, subsequent encounter|Unspecified open wound of right little finger with damage to nail, subsequent encounter +C2850080|T037|AB|S61.306S|ICD10CM|Unsp open wound of r little finger w damage to nail, sequela|Unsp open wound of r little finger w damage to nail, sequela +C2850080|T037|PT|S61.306S|ICD10CM|Unspecified open wound of right little finger with damage to nail, sequela|Unspecified open wound of right little finger with damage to nail, sequela +C2850081|T037|AB|S61.307|ICD10CM|Unsp open wound of left little finger with damage to nail|Unsp open wound of left little finger with damage to nail +C2850081|T037|HT|S61.307|ICD10CM|Unspecified open wound of left little finger with damage to nail|Unspecified open wound of left little finger with damage to nail +C2850082|T037|AB|S61.307A|ICD10CM|Unsp open wound of left little finger w damage to nail, init|Unsp open wound of left little finger w damage to nail, init +C2850082|T037|PT|S61.307A|ICD10CM|Unspecified open wound of left little finger with damage to nail, initial encounter|Unspecified open wound of left little finger with damage to nail, initial encounter +C2850083|T037|AB|S61.307D|ICD10CM|Unsp open wound of left little finger w damage to nail, subs|Unsp open wound of left little finger w damage to nail, subs +C2850083|T037|PT|S61.307D|ICD10CM|Unspecified open wound of left little finger with damage to nail, subsequent encounter|Unspecified open wound of left little finger with damage to nail, subsequent encounter +C2850084|T037|AB|S61.307S|ICD10CM|Unsp open wound of l little finger w damage to nail, sequela|Unsp open wound of l little finger w damage to nail, sequela +C2850084|T037|PT|S61.307S|ICD10CM|Unspecified open wound of left little finger with damage to nail, sequela|Unspecified open wound of left little finger with damage to nail, sequela +C2850086|T037|AB|S61.308|ICD10CM|Unspecified open wound of other finger with damage to nail|Unspecified open wound of other finger with damage to nail +C2850086|T037|HT|S61.308|ICD10CM|Unspecified open wound of other finger with damage to nail|Unspecified open wound of other finger with damage to nail +C2850085|T037|ET|S61.308|ICD10CM|Unspecified open wound of specified finger with unspecified laterality with damage to nail|Unspecified open wound of specified finger with unspecified laterality with damage to nail +C2850087|T037|AB|S61.308A|ICD10CM|Unsp open wound of oth finger w damage to nail, init encntr|Unsp open wound of oth finger w damage to nail, init encntr +C2850087|T037|PT|S61.308A|ICD10CM|Unspecified open wound of other finger with damage to nail, initial encounter|Unspecified open wound of other finger with damage to nail, initial encounter +C2850088|T037|AB|S61.308D|ICD10CM|Unsp open wound of oth finger w damage to nail, subs encntr|Unsp open wound of oth finger w damage to nail, subs encntr +C2850088|T037|PT|S61.308D|ICD10CM|Unspecified open wound of other finger with damage to nail, subsequent encounter|Unspecified open wound of other finger with damage to nail, subsequent encounter +C2850089|T037|AB|S61.308S|ICD10CM|Unsp open wound of other finger with damage to nail, sequela|Unsp open wound of other finger with damage to nail, sequela +C2850089|T037|PT|S61.308S|ICD10CM|Unspecified open wound of other finger with damage to nail, sequela|Unspecified open wound of other finger with damage to nail, sequela +C2850090|T037|AB|S61.309|ICD10CM|Unsp open wound of unspecified finger with damage to nail|Unsp open wound of unspecified finger with damage to nail +C2850090|T037|HT|S61.309|ICD10CM|Unspecified open wound of unspecified finger with damage to nail|Unspecified open wound of unspecified finger with damage to nail +C2850091|T037|AB|S61.309A|ICD10CM|Unsp open wound of unsp finger w damage to nail, init encntr|Unsp open wound of unsp finger w damage to nail, init encntr +C2850091|T037|PT|S61.309A|ICD10CM|Unspecified open wound of unspecified finger with damage to nail, initial encounter|Unspecified open wound of unspecified finger with damage to nail, initial encounter +C2850092|T037|AB|S61.309D|ICD10CM|Unsp open wound of unsp finger w damage to nail, subs encntr|Unsp open wound of unsp finger w damage to nail, subs encntr +C2850092|T037|PT|S61.309D|ICD10CM|Unspecified open wound of unspecified finger with damage to nail, subsequent encounter|Unspecified open wound of unspecified finger with damage to nail, subsequent encounter +C2850093|T037|AB|S61.309S|ICD10CM|Unsp open wound of unsp finger with damage to nail, sequela|Unsp open wound of unsp finger with damage to nail, sequela +C2850093|T037|PT|S61.309S|ICD10CM|Unspecified open wound of unspecified finger with damage to nail, sequela|Unspecified open wound of unspecified finger with damage to nail, sequela +C2850094|T037|AB|S61.31|ICD10CM|Laceration w/o foreign body of finger with damage to nail|Laceration w/o foreign body of finger with damage to nail +C2850094|T037|HT|S61.31|ICD10CM|Laceration without foreign body of finger with damage to nail|Laceration without foreign body of finger with damage to nail +C2850095|T037|AB|S61.310|ICD10CM|Laceration w/o foreign body of r idx fngr w damage to nail|Laceration w/o foreign body of r idx fngr w damage to nail +C2850095|T037|HT|S61.310|ICD10CM|Laceration without foreign body of right index finger with damage to nail|Laceration without foreign body of right index finger with damage to nail +C2850096|T037|AB|S61.310A|ICD10CM|Laceration w/o fb of r idx fngr w damage to nail, init|Laceration w/o fb of r idx fngr w damage to nail, init +C2850096|T037|PT|S61.310A|ICD10CM|Laceration without foreign body of right index finger with damage to nail, initial encounter|Laceration without foreign body of right index finger with damage to nail, initial encounter +C2850097|T037|AB|S61.310D|ICD10CM|Laceration w/o fb of r idx fngr w damage to nail, subs|Laceration w/o fb of r idx fngr w damage to nail, subs +C2850097|T037|PT|S61.310D|ICD10CM|Laceration without foreign body of right index finger with damage to nail, subsequent encounter|Laceration without foreign body of right index finger with damage to nail, subsequent encounter +C2850098|T037|AB|S61.310S|ICD10CM|Laceration w/o fb of r idx fngr w damage to nail, sequela|Laceration w/o fb of r idx fngr w damage to nail, sequela +C2850098|T037|PT|S61.310S|ICD10CM|Laceration without foreign body of right index finger with damage to nail, sequela|Laceration without foreign body of right index finger with damage to nail, sequela +C2850099|T037|AB|S61.311|ICD10CM|Laceration w/o foreign body of l idx fngr w damage to nail|Laceration w/o foreign body of l idx fngr w damage to nail +C2850099|T037|HT|S61.311|ICD10CM|Laceration without foreign body of left index finger with damage to nail|Laceration without foreign body of left index finger with damage to nail +C2850100|T037|AB|S61.311A|ICD10CM|Laceration w/o fb of l idx fngr w damage to nail, init|Laceration w/o fb of l idx fngr w damage to nail, init +C2850100|T037|PT|S61.311A|ICD10CM|Laceration without foreign body of left index finger with damage to nail, initial encounter|Laceration without foreign body of left index finger with damage to nail, initial encounter +C2850101|T037|AB|S61.311D|ICD10CM|Laceration w/o fb of l idx fngr w damage to nail, subs|Laceration w/o fb of l idx fngr w damage to nail, subs +C2850101|T037|PT|S61.311D|ICD10CM|Laceration without foreign body of left index finger with damage to nail, subsequent encounter|Laceration without foreign body of left index finger with damage to nail, subsequent encounter +C2850102|T037|AB|S61.311S|ICD10CM|Laceration w/o fb of l idx fngr w damage to nail, sequela|Laceration w/o fb of l idx fngr w damage to nail, sequela +C2850102|T037|PT|S61.311S|ICD10CM|Laceration without foreign body of left index finger with damage to nail, sequela|Laceration without foreign body of left index finger with damage to nail, sequela +C2850103|T037|AB|S61.312|ICD10CM|Laceration w/o foreign body of r mid finger w damage to nail|Laceration w/o foreign body of r mid finger w damage to nail +C2850103|T037|HT|S61.312|ICD10CM|Laceration without foreign body of right middle finger with damage to nail|Laceration without foreign body of right middle finger with damage to nail +C2850104|T037|AB|S61.312A|ICD10CM|Laceration w/o fb of r mid finger w damage to nail, init|Laceration w/o fb of r mid finger w damage to nail, init +C2850104|T037|PT|S61.312A|ICD10CM|Laceration without foreign body of right middle finger with damage to nail, initial encounter|Laceration without foreign body of right middle finger with damage to nail, initial encounter +C2850105|T037|AB|S61.312D|ICD10CM|Laceration w/o fb of r mid finger w damage to nail, subs|Laceration w/o fb of r mid finger w damage to nail, subs +C2850105|T037|PT|S61.312D|ICD10CM|Laceration without foreign body of right middle finger with damage to nail, subsequent encounter|Laceration without foreign body of right middle finger with damage to nail, subsequent encounter +C2850106|T037|AB|S61.312S|ICD10CM|Laceration w/o fb of r mid finger w damage to nail, sequela|Laceration w/o fb of r mid finger w damage to nail, sequela +C2850106|T037|PT|S61.312S|ICD10CM|Laceration without foreign body of right middle finger with damage to nail, sequela|Laceration without foreign body of right middle finger with damage to nail, sequela +C2850107|T037|AB|S61.313|ICD10CM|Laceration w/o foreign body of l mid finger w damage to nail|Laceration w/o foreign body of l mid finger w damage to nail +C2850107|T037|HT|S61.313|ICD10CM|Laceration without foreign body of left middle finger with damage to nail|Laceration without foreign body of left middle finger with damage to nail +C2850108|T037|AB|S61.313A|ICD10CM|Laceration w/o fb of l mid finger w damage to nail, init|Laceration w/o fb of l mid finger w damage to nail, init +C2850108|T037|PT|S61.313A|ICD10CM|Laceration without foreign body of left middle finger with damage to nail, initial encounter|Laceration without foreign body of left middle finger with damage to nail, initial encounter +C2850109|T037|AB|S61.313D|ICD10CM|Laceration w/o fb of l mid finger w damage to nail, subs|Laceration w/o fb of l mid finger w damage to nail, subs +C2850109|T037|PT|S61.313D|ICD10CM|Laceration without foreign body of left middle finger with damage to nail, subsequent encounter|Laceration without foreign body of left middle finger with damage to nail, subsequent encounter +C2850110|T037|AB|S61.313S|ICD10CM|Laceration w/o fb of l mid finger w damage to nail, sequela|Laceration w/o fb of l mid finger w damage to nail, sequela +C2850110|T037|PT|S61.313S|ICD10CM|Laceration without foreign body of left middle finger with damage to nail, sequela|Laceration without foreign body of left middle finger with damage to nail, sequela +C2850111|T037|AB|S61.314|ICD10CM|Laceration w/o foreign body of r rng fngr w damage to nail|Laceration w/o foreign body of r rng fngr w damage to nail +C2850111|T037|HT|S61.314|ICD10CM|Laceration without foreign body of right ring finger with damage to nail|Laceration without foreign body of right ring finger with damage to nail +C2850112|T037|AB|S61.314A|ICD10CM|Laceration w/o fb of r rng fngr w damage to nail, init|Laceration w/o fb of r rng fngr w damage to nail, init +C2850112|T037|PT|S61.314A|ICD10CM|Laceration without foreign body of right ring finger with damage to nail, initial encounter|Laceration without foreign body of right ring finger with damage to nail, initial encounter +C2850113|T037|AB|S61.314D|ICD10CM|Laceration w/o fb of r rng fngr w damage to nail, subs|Laceration w/o fb of r rng fngr w damage to nail, subs +C2850113|T037|PT|S61.314D|ICD10CM|Laceration without foreign body of right ring finger with damage to nail, subsequent encounter|Laceration without foreign body of right ring finger with damage to nail, subsequent encounter +C2850114|T037|AB|S61.314S|ICD10CM|Laceration w/o fb of r rng fngr w damage to nail, sequela|Laceration w/o fb of r rng fngr w damage to nail, sequela +C2850114|T037|PT|S61.314S|ICD10CM|Laceration without foreign body of right ring finger with damage to nail, sequela|Laceration without foreign body of right ring finger with damage to nail, sequela +C2850115|T037|AB|S61.315|ICD10CM|Laceration w/o foreign body of l rng fngr w damage to nail|Laceration w/o foreign body of l rng fngr w damage to nail +C2850115|T037|HT|S61.315|ICD10CM|Laceration without foreign body of left ring finger with damage to nail|Laceration without foreign body of left ring finger with damage to nail +C2850116|T037|AB|S61.315A|ICD10CM|Laceration w/o fb of l rng fngr w damage to nail, init|Laceration w/o fb of l rng fngr w damage to nail, init +C2850116|T037|PT|S61.315A|ICD10CM|Laceration without foreign body of left ring finger with damage to nail, initial encounter|Laceration without foreign body of left ring finger with damage to nail, initial encounter +C2850117|T037|AB|S61.315D|ICD10CM|Laceration w/o fb of l rng fngr w damage to nail, subs|Laceration w/o fb of l rng fngr w damage to nail, subs +C2850117|T037|PT|S61.315D|ICD10CM|Laceration without foreign body of left ring finger with damage to nail, subsequent encounter|Laceration without foreign body of left ring finger with damage to nail, subsequent encounter +C2850118|T037|AB|S61.315S|ICD10CM|Laceration w/o fb of l rng fngr w damage to nail, sequela|Laceration w/o fb of l rng fngr w damage to nail, sequela +C2850118|T037|PT|S61.315S|ICD10CM|Laceration without foreign body of left ring finger with damage to nail, sequela|Laceration without foreign body of left ring finger with damage to nail, sequela +C2850119|T037|AB|S61.316|ICD10CM|Laceration w/o fb of r little finger w damage to nail|Laceration w/o fb of r little finger w damage to nail +C2850119|T037|HT|S61.316|ICD10CM|Laceration without foreign body of right little finger with damage to nail|Laceration without foreign body of right little finger with damage to nail +C2850120|T037|AB|S61.316A|ICD10CM|Laceration w/o fb of r little finger w damage to nail, init|Laceration w/o fb of r little finger w damage to nail, init +C2850120|T037|PT|S61.316A|ICD10CM|Laceration without foreign body of right little finger with damage to nail, initial encounter|Laceration without foreign body of right little finger with damage to nail, initial encounter +C2850121|T037|AB|S61.316D|ICD10CM|Laceration w/o fb of r little finger w damage to nail, subs|Laceration w/o fb of r little finger w damage to nail, subs +C2850121|T037|PT|S61.316D|ICD10CM|Laceration without foreign body of right little finger with damage to nail, subsequent encounter|Laceration without foreign body of right little finger with damage to nail, subsequent encounter +C2850122|T037|AB|S61.316S|ICD10CM|Lac w/o fb of r little finger w damage to nail, sequela|Lac w/o fb of r little finger w damage to nail, sequela +C2850122|T037|PT|S61.316S|ICD10CM|Laceration without foreign body of right little finger with damage to nail, sequela|Laceration without foreign body of right little finger with damage to nail, sequela +C2850123|T037|AB|S61.317|ICD10CM|Laceration w/o fb of l little finger w damage to nail|Laceration w/o fb of l little finger w damage to nail +C2850123|T037|HT|S61.317|ICD10CM|Laceration without foreign body of left little finger with damage to nail|Laceration without foreign body of left little finger with damage to nail +C2850124|T037|AB|S61.317A|ICD10CM|Laceration w/o fb of l little finger w damage to nail, init|Laceration w/o fb of l little finger w damage to nail, init +C2850124|T037|PT|S61.317A|ICD10CM|Laceration without foreign body of left little finger with damage to nail, initial encounter|Laceration without foreign body of left little finger with damage to nail, initial encounter +C2850125|T037|AB|S61.317D|ICD10CM|Laceration w/o fb of l little finger w damage to nail, subs|Laceration w/o fb of l little finger w damage to nail, subs +C2850125|T037|PT|S61.317D|ICD10CM|Laceration without foreign body of left little finger with damage to nail, subsequent encounter|Laceration without foreign body of left little finger with damage to nail, subsequent encounter +C2850126|T037|AB|S61.317S|ICD10CM|Lac w/o fb of l little finger w damage to nail, sequela|Lac w/o fb of l little finger w damage to nail, sequela +C2850126|T037|PT|S61.317S|ICD10CM|Laceration without foreign body of left little finger with damage to nail, sequela|Laceration without foreign body of left little finger with damage to nail, sequela +C2850128|T037|AB|S61.318|ICD10CM|Laceration w/o foreign body of oth finger w damage to nail|Laceration w/o foreign body of oth finger w damage to nail +C2850128|T037|HT|S61.318|ICD10CM|Laceration without foreign body of other finger with damage to nail|Laceration without foreign body of other finger with damage to nail +C2850127|T037|ET|S61.318|ICD10CM|Laceration without foreign body of specified finger with unspecified laterality with damage to nail|Laceration without foreign body of specified finger with unspecified laterality with damage to nail +C2850129|T037|AB|S61.318A|ICD10CM|Laceration w/o foreign body of finger w damage to nail, init|Laceration w/o foreign body of finger w damage to nail, init +C2850129|T037|PT|S61.318A|ICD10CM|Laceration without foreign body of other finger with damage to nail, initial encounter|Laceration without foreign body of other finger with damage to nail, initial encounter +C2850130|T037|AB|S61.318D|ICD10CM|Laceration w/o foreign body of finger w damage to nail, subs|Laceration w/o foreign body of finger w damage to nail, subs +C2850130|T037|PT|S61.318D|ICD10CM|Laceration without foreign body of other finger with damage to nail, subsequent encounter|Laceration without foreign body of other finger with damage to nail, subsequent encounter +C2850131|T037|AB|S61.318S|ICD10CM|Laceration w/o fb of finger w damage to nail, sequela|Laceration w/o fb of finger w damage to nail, sequela +C2850131|T037|PT|S61.318S|ICD10CM|Laceration without foreign body of other finger with damage to nail, sequela|Laceration without foreign body of other finger with damage to nail, sequela +C2850132|T037|AB|S61.319|ICD10CM|Laceration w/o foreign body of unsp finger w damage to nail|Laceration w/o foreign body of unsp finger w damage to nail +C2850132|T037|HT|S61.319|ICD10CM|Laceration without foreign body of unspecified finger with damage to nail|Laceration without foreign body of unspecified finger with damage to nail +C2850133|T037|AB|S61.319A|ICD10CM|Laceration w/o fb of unsp finger w damage to nail, init|Laceration w/o fb of unsp finger w damage to nail, init +C2850133|T037|PT|S61.319A|ICD10CM|Laceration without foreign body of unspecified finger with damage to nail, initial encounter|Laceration without foreign body of unspecified finger with damage to nail, initial encounter +C2850134|T037|AB|S61.319D|ICD10CM|Laceration w/o fb of unsp finger w damage to nail, subs|Laceration w/o fb of unsp finger w damage to nail, subs +C2850134|T037|PT|S61.319D|ICD10CM|Laceration without foreign body of unspecified finger with damage to nail, subsequent encounter|Laceration without foreign body of unspecified finger with damage to nail, subsequent encounter +C2850135|T037|AB|S61.319S|ICD10CM|Laceration w/o fb of unsp finger w damage to nail, sequela|Laceration w/o fb of unsp finger w damage to nail, sequela +C2850135|T037|PT|S61.319S|ICD10CM|Laceration without foreign body of unspecified finger with damage to nail, sequela|Laceration without foreign body of unspecified finger with damage to nail, sequela +C2850136|T037|AB|S61.32|ICD10CM|Laceration with foreign body of finger with damage to nail|Laceration with foreign body of finger with damage to nail +C2850136|T037|HT|S61.32|ICD10CM|Laceration with foreign body of finger with damage to nail|Laceration with foreign body of finger with damage to nail +C2850137|T037|AB|S61.320|ICD10CM|Laceration w foreign body of r idx fngr w damage to nail|Laceration w foreign body of r idx fngr w damage to nail +C2850137|T037|HT|S61.320|ICD10CM|Laceration with foreign body of right index finger with damage to nail|Laceration with foreign body of right index finger with damage to nail +C2850138|T037|AB|S61.320A|ICD10CM|Laceration w fb of r idx fngr w damage to nail, init|Laceration w fb of r idx fngr w damage to nail, init +C2850138|T037|PT|S61.320A|ICD10CM|Laceration with foreign body of right index finger with damage to nail, initial encounter|Laceration with foreign body of right index finger with damage to nail, initial encounter +C2850139|T037|AB|S61.320D|ICD10CM|Laceration w fb of r idx fngr w damage to nail, subs|Laceration w fb of r idx fngr w damage to nail, subs +C2850139|T037|PT|S61.320D|ICD10CM|Laceration with foreign body of right index finger with damage to nail, subsequent encounter|Laceration with foreign body of right index finger with damage to nail, subsequent encounter +C2850140|T037|AB|S61.320S|ICD10CM|Laceration w fb of r idx fngr w damage to nail, sequela|Laceration w fb of r idx fngr w damage to nail, sequela +C2850140|T037|PT|S61.320S|ICD10CM|Laceration with foreign body of right index finger with damage to nail, sequela|Laceration with foreign body of right index finger with damage to nail, sequela +C2850141|T037|AB|S61.321|ICD10CM|Laceration w foreign body of l idx fngr w damage to nail|Laceration w foreign body of l idx fngr w damage to nail +C2850141|T037|HT|S61.321|ICD10CM|Laceration with foreign body of left index finger with damage to nail|Laceration with foreign body of left index finger with damage to nail +C2850142|T037|AB|S61.321A|ICD10CM|Laceration w fb of l idx fngr w damage to nail, init|Laceration w fb of l idx fngr w damage to nail, init +C2850142|T037|PT|S61.321A|ICD10CM|Laceration with foreign body of left index finger with damage to nail, initial encounter|Laceration with foreign body of left index finger with damage to nail, initial encounter +C2850143|T037|AB|S61.321D|ICD10CM|Laceration w fb of l idx fngr w damage to nail, subs|Laceration w fb of l idx fngr w damage to nail, subs +C2850143|T037|PT|S61.321D|ICD10CM|Laceration with foreign body of left index finger with damage to nail, subsequent encounter|Laceration with foreign body of left index finger with damage to nail, subsequent encounter +C2850144|T037|AB|S61.321S|ICD10CM|Laceration w fb of l idx fngr w damage to nail, sequela|Laceration w fb of l idx fngr w damage to nail, sequela +C2850144|T037|PT|S61.321S|ICD10CM|Laceration with foreign body of left index finger with damage to nail, sequela|Laceration with foreign body of left index finger with damage to nail, sequela +C2850145|T037|AB|S61.322|ICD10CM|Laceration w foreign body of r mid finger w damage to nail|Laceration w foreign body of r mid finger w damage to nail +C2850145|T037|HT|S61.322|ICD10CM|Laceration with foreign body of right middle finger with damage to nail|Laceration with foreign body of right middle finger with damage to nail +C2850146|T037|AB|S61.322A|ICD10CM|Laceration w fb of r mid finger w damage to nail, init|Laceration w fb of r mid finger w damage to nail, init +C2850146|T037|PT|S61.322A|ICD10CM|Laceration with foreign body of right middle finger with damage to nail, initial encounter|Laceration with foreign body of right middle finger with damage to nail, initial encounter +C2850147|T037|AB|S61.322D|ICD10CM|Laceration w fb of r mid finger w damage to nail, subs|Laceration w fb of r mid finger w damage to nail, subs +C2850147|T037|PT|S61.322D|ICD10CM|Laceration with foreign body of right middle finger with damage to nail, subsequent encounter|Laceration with foreign body of right middle finger with damage to nail, subsequent encounter +C2850148|T037|AB|S61.322S|ICD10CM|Laceration w fb of r mid finger w damage to nail, sequela|Laceration w fb of r mid finger w damage to nail, sequela +C2850148|T037|PT|S61.322S|ICD10CM|Laceration with foreign body of right middle finger with damage to nail, sequela|Laceration with foreign body of right middle finger with damage to nail, sequela +C2850149|T037|AB|S61.323|ICD10CM|Laceration w foreign body of l mid finger w damage to nail|Laceration w foreign body of l mid finger w damage to nail +C2850149|T037|HT|S61.323|ICD10CM|Laceration with foreign body of left middle finger with damage to nail|Laceration with foreign body of left middle finger with damage to nail +C2850150|T037|AB|S61.323A|ICD10CM|Laceration w fb of l mid finger w damage to nail, init|Laceration w fb of l mid finger w damage to nail, init +C2850150|T037|PT|S61.323A|ICD10CM|Laceration with foreign body of left middle finger with damage to nail, initial encounter|Laceration with foreign body of left middle finger with damage to nail, initial encounter +C2850151|T037|AB|S61.323D|ICD10CM|Laceration w fb of l mid finger w damage to nail, subs|Laceration w fb of l mid finger w damage to nail, subs +C2850151|T037|PT|S61.323D|ICD10CM|Laceration with foreign body of left middle finger with damage to nail, subsequent encounter|Laceration with foreign body of left middle finger with damage to nail, subsequent encounter +C2850152|T037|AB|S61.323S|ICD10CM|Laceration w fb of l mid finger w damage to nail, sequela|Laceration w fb of l mid finger w damage to nail, sequela +C2850152|T037|PT|S61.323S|ICD10CM|Laceration with foreign body of left middle finger with damage to nail, sequela|Laceration with foreign body of left middle finger with damage to nail, sequela +C2850153|T037|AB|S61.324|ICD10CM|Laceration w foreign body of r rng fngr w damage to nail|Laceration w foreign body of r rng fngr w damage to nail +C2850153|T037|HT|S61.324|ICD10CM|Laceration with foreign body of right ring finger with damage to nail|Laceration with foreign body of right ring finger with damage to nail +C2850154|T037|AB|S61.324A|ICD10CM|Laceration w fb of r rng fngr w damage to nail, init|Laceration w fb of r rng fngr w damage to nail, init +C2850154|T037|PT|S61.324A|ICD10CM|Laceration with foreign body of right ring finger with damage to nail, initial encounter|Laceration with foreign body of right ring finger with damage to nail, initial encounter +C2850155|T037|AB|S61.324D|ICD10CM|Laceration w fb of r rng fngr w damage to nail, subs|Laceration w fb of r rng fngr w damage to nail, subs +C2850155|T037|PT|S61.324D|ICD10CM|Laceration with foreign body of right ring finger with damage to nail, subsequent encounter|Laceration with foreign body of right ring finger with damage to nail, subsequent encounter +C2850156|T037|AB|S61.324S|ICD10CM|Laceration w fb of r rng fngr w damage to nail, sequela|Laceration w fb of r rng fngr w damage to nail, sequela +C2850156|T037|PT|S61.324S|ICD10CM|Laceration with foreign body of right ring finger with damage to nail, sequela|Laceration with foreign body of right ring finger with damage to nail, sequela +C2850157|T037|AB|S61.325|ICD10CM|Laceration w foreign body of l rng fngr w damage to nail|Laceration w foreign body of l rng fngr w damage to nail +C2850157|T037|HT|S61.325|ICD10CM|Laceration with foreign body of left ring finger with damage to nail|Laceration with foreign body of left ring finger with damage to nail +C2850158|T037|AB|S61.325A|ICD10CM|Laceration w fb of l rng fngr w damage to nail, init|Laceration w fb of l rng fngr w damage to nail, init +C2850158|T037|PT|S61.325A|ICD10CM|Laceration with foreign body of left ring finger with damage to nail, initial encounter|Laceration with foreign body of left ring finger with damage to nail, initial encounter +C2850159|T037|AB|S61.325D|ICD10CM|Laceration w fb of l rng fngr w damage to nail, subs|Laceration w fb of l rng fngr w damage to nail, subs +C2850159|T037|PT|S61.325D|ICD10CM|Laceration with foreign body of left ring finger with damage to nail, subsequent encounter|Laceration with foreign body of left ring finger with damage to nail, subsequent encounter +C2850160|T037|AB|S61.325S|ICD10CM|Laceration w fb of l rng fngr w damage to nail, sequela|Laceration w fb of l rng fngr w damage to nail, sequela +C2850160|T037|PT|S61.325S|ICD10CM|Laceration with foreign body of left ring finger with damage to nail, sequela|Laceration with foreign body of left ring finger with damage to nail, sequela +C2850161|T037|AB|S61.326|ICD10CM|Laceration w fb of r little finger w damage to nail|Laceration w fb of r little finger w damage to nail +C2850161|T037|HT|S61.326|ICD10CM|Laceration with foreign body of right little finger with damage to nail|Laceration with foreign body of right little finger with damage to nail +C2850162|T037|AB|S61.326A|ICD10CM|Laceration w fb of r little finger w damage to nail, init|Laceration w fb of r little finger w damage to nail, init +C2850162|T037|PT|S61.326A|ICD10CM|Laceration with foreign body of right little finger with damage to nail, initial encounter|Laceration with foreign body of right little finger with damage to nail, initial encounter +C2850163|T037|AB|S61.326D|ICD10CM|Laceration w fb of r little finger w damage to nail, subs|Laceration w fb of r little finger w damage to nail, subs +C2850163|T037|PT|S61.326D|ICD10CM|Laceration with foreign body of right little finger with damage to nail, subsequent encounter|Laceration with foreign body of right little finger with damage to nail, subsequent encounter +C2850164|T037|AB|S61.326S|ICD10CM|Laceration w fb of r little finger w damage to nail, sequela|Laceration w fb of r little finger w damage to nail, sequela +C2850164|T037|PT|S61.326S|ICD10CM|Laceration with foreign body of right little finger with damage to nail, sequela|Laceration with foreign body of right little finger with damage to nail, sequela +C2850165|T037|AB|S61.327|ICD10CM|Laceration w fb of l little finger w damage to nail|Laceration w fb of l little finger w damage to nail +C2850165|T037|HT|S61.327|ICD10CM|Laceration with foreign body of left little finger with damage to nail|Laceration with foreign body of left little finger with damage to nail +C2850166|T037|AB|S61.327A|ICD10CM|Laceration w fb of l little finger w damage to nail, init|Laceration w fb of l little finger w damage to nail, init +C2850166|T037|PT|S61.327A|ICD10CM|Laceration with foreign body of left little finger with damage to nail, initial encounter|Laceration with foreign body of left little finger with damage to nail, initial encounter +C2850167|T037|AB|S61.327D|ICD10CM|Laceration w fb of l little finger w damage to nail, subs|Laceration w fb of l little finger w damage to nail, subs +C2850167|T037|PT|S61.327D|ICD10CM|Laceration with foreign body of left little finger with damage to nail, subsequent encounter|Laceration with foreign body of left little finger with damage to nail, subsequent encounter +C2850168|T037|AB|S61.327S|ICD10CM|Laceration w fb of l little finger w damage to nail, sequela|Laceration w fb of l little finger w damage to nail, sequela +C2850168|T037|PT|S61.327S|ICD10CM|Laceration with foreign body of left little finger with damage to nail, sequela|Laceration with foreign body of left little finger with damage to nail, sequela +C2850170|T037|AB|S61.328|ICD10CM|Laceration w foreign body of oth finger with damage to nail|Laceration w foreign body of oth finger with damage to nail +C2850170|T037|HT|S61.328|ICD10CM|Laceration with foreign body of other finger with damage to nail|Laceration with foreign body of other finger with damage to nail +C2850169|T037|ET|S61.328|ICD10CM|Laceration with foreign body of specified finger with unspecified laterality with damage to nail|Laceration with foreign body of specified finger with unspecified laterality with damage to nail +C2850171|T037|AB|S61.328A|ICD10CM|Laceration w foreign body of finger w damage to nail, init|Laceration w foreign body of finger w damage to nail, init +C2850171|T037|PT|S61.328A|ICD10CM|Laceration with foreign body of other finger with damage to nail, initial encounter|Laceration with foreign body of other finger with damage to nail, initial encounter +C2850172|T037|AB|S61.328D|ICD10CM|Laceration w foreign body of finger w damage to nail, subs|Laceration w foreign body of finger w damage to nail, subs +C2850172|T037|PT|S61.328D|ICD10CM|Laceration with foreign body of other finger with damage to nail, subsequent encounter|Laceration with foreign body of other finger with damage to nail, subsequent encounter +C2850173|T037|AB|S61.328S|ICD10CM|Laceration w fb of finger w damage to nail, sequela|Laceration w fb of finger w damage to nail, sequela +C2850173|T037|PT|S61.328S|ICD10CM|Laceration with foreign body of other finger with damage to nail, sequela|Laceration with foreign body of other finger with damage to nail, sequela +C2850174|T037|AB|S61.329|ICD10CM|Laceration w foreign body of unsp finger with damage to nail|Laceration w foreign body of unsp finger with damage to nail +C2850174|T037|HT|S61.329|ICD10CM|Laceration with foreign body of unspecified finger with damage to nail|Laceration with foreign body of unspecified finger with damage to nail +C2850175|T037|AB|S61.329A|ICD10CM|Laceration w fb of unsp finger w damage to nail, init|Laceration w fb of unsp finger w damage to nail, init +C2850175|T037|PT|S61.329A|ICD10CM|Laceration with foreign body of unspecified finger with damage to nail, initial encounter|Laceration with foreign body of unspecified finger with damage to nail, initial encounter +C2850176|T037|AB|S61.329D|ICD10CM|Laceration w fb of unsp finger w damage to nail, subs|Laceration w fb of unsp finger w damage to nail, subs +C2850176|T037|PT|S61.329D|ICD10CM|Laceration with foreign body of unspecified finger with damage to nail, subsequent encounter|Laceration with foreign body of unspecified finger with damage to nail, subsequent encounter +C2850177|T037|AB|S61.329S|ICD10CM|Laceration w fb of unsp finger w damage to nail, sequela|Laceration w fb of unsp finger w damage to nail, sequela +C2850177|T037|PT|S61.329S|ICD10CM|Laceration with foreign body of unspecified finger with damage to nail, sequela|Laceration with foreign body of unspecified finger with damage to nail, sequela +C2850178|T037|AB|S61.33|ICD10CM|Puncture wound w/o foreign body of finger w damage to nail|Puncture wound w/o foreign body of finger w damage to nail +C2850178|T037|HT|S61.33|ICD10CM|Puncture wound without foreign body of finger with damage to nail|Puncture wound without foreign body of finger with damage to nail +C2850179|T037|AB|S61.330|ICD10CM|Pnctr w/o foreign body of r idx fngr w damage to nail|Pnctr w/o foreign body of r idx fngr w damage to nail +C2850179|T037|HT|S61.330|ICD10CM|Puncture wound without foreign body of right index finger with damage to nail|Puncture wound without foreign body of right index finger with damage to nail +C2850180|T037|AB|S61.330A|ICD10CM|Pnctr w/o foreign body of r idx fngr w damage to nail, init|Pnctr w/o foreign body of r idx fngr w damage to nail, init +C2850180|T037|PT|S61.330A|ICD10CM|Puncture wound without foreign body of right index finger with damage to nail, initial encounter|Puncture wound without foreign body of right index finger with damage to nail, initial encounter +C2850181|T037|AB|S61.330D|ICD10CM|Pnctr w/o foreign body of r idx fngr w damage to nail, subs|Pnctr w/o foreign body of r idx fngr w damage to nail, subs +C2850181|T037|PT|S61.330D|ICD10CM|Puncture wound without foreign body of right index finger with damage to nail, subsequent encounter|Puncture wound without foreign body of right index finger with damage to nail, subsequent encounter +C2850182|T037|AB|S61.330S|ICD10CM|Pnctr w/o fb of r idx fngr w damage to nail, sequela|Pnctr w/o fb of r idx fngr w damage to nail, sequela +C2850182|T037|PT|S61.330S|ICD10CM|Puncture wound without foreign body of right index finger with damage to nail, sequela|Puncture wound without foreign body of right index finger with damage to nail, sequela +C2850183|T037|AB|S61.331|ICD10CM|Pnctr w/o foreign body of l idx fngr w damage to nail|Pnctr w/o foreign body of l idx fngr w damage to nail +C2850183|T037|HT|S61.331|ICD10CM|Puncture wound without foreign body of left index finger with damage to nail|Puncture wound without foreign body of left index finger with damage to nail +C2850184|T037|AB|S61.331A|ICD10CM|Pnctr w/o foreign body of l idx fngr w damage to nail, init|Pnctr w/o foreign body of l idx fngr w damage to nail, init +C2850184|T037|PT|S61.331A|ICD10CM|Puncture wound without foreign body of left index finger with damage to nail, initial encounter|Puncture wound without foreign body of left index finger with damage to nail, initial encounter +C2850185|T037|AB|S61.331D|ICD10CM|Pnctr w/o foreign body of l idx fngr w damage to nail, subs|Pnctr w/o foreign body of l idx fngr w damage to nail, subs +C2850185|T037|PT|S61.331D|ICD10CM|Puncture wound without foreign body of left index finger with damage to nail, subsequent encounter|Puncture wound without foreign body of left index finger with damage to nail, subsequent encounter +C2850186|T037|AB|S61.331S|ICD10CM|Pnctr w/o fb of l idx fngr w damage to nail, sequela|Pnctr w/o fb of l idx fngr w damage to nail, sequela +C2850186|T037|PT|S61.331S|ICD10CM|Puncture wound without foreign body of left index finger with damage to nail, sequela|Puncture wound without foreign body of left index finger with damage to nail, sequela +C2850187|T037|AB|S61.332|ICD10CM|Pnctr w/o foreign body of r mid finger w damage to nail|Pnctr w/o foreign body of r mid finger w damage to nail +C2850187|T037|HT|S61.332|ICD10CM|Puncture wound without foreign body of right middle finger with damage to nail|Puncture wound without foreign body of right middle finger with damage to nail +C2850188|T037|AB|S61.332A|ICD10CM|Pnctr w/o fb of r mid finger w damage to nail, init|Pnctr w/o fb of r mid finger w damage to nail, init +C2850188|T037|PT|S61.332A|ICD10CM|Puncture wound without foreign body of right middle finger with damage to nail, initial encounter|Puncture wound without foreign body of right middle finger with damage to nail, initial encounter +C2850189|T037|AB|S61.332D|ICD10CM|Pnctr w/o fb of r mid finger w damage to nail, subs|Pnctr w/o fb of r mid finger w damage to nail, subs +C2850189|T037|PT|S61.332D|ICD10CM|Puncture wound without foreign body of right middle finger with damage to nail, subsequent encounter|Puncture wound without foreign body of right middle finger with damage to nail, subsequent encounter +C2850190|T037|AB|S61.332S|ICD10CM|Pnctr w/o fb of r mid finger w damage to nail, sequela|Pnctr w/o fb of r mid finger w damage to nail, sequela +C2850190|T037|PT|S61.332S|ICD10CM|Puncture wound without foreign body of right middle finger with damage to nail, sequela|Puncture wound without foreign body of right middle finger with damage to nail, sequela +C2850191|T037|AB|S61.333|ICD10CM|Pnctr w/o foreign body of l mid finger w damage to nail|Pnctr w/o foreign body of l mid finger w damage to nail +C2850191|T037|HT|S61.333|ICD10CM|Puncture wound without foreign body of left middle finger with damage to nail|Puncture wound without foreign body of left middle finger with damage to nail +C2850192|T037|AB|S61.333A|ICD10CM|Pnctr w/o fb of l mid finger w damage to nail, init|Pnctr w/o fb of l mid finger w damage to nail, init +C2850192|T037|PT|S61.333A|ICD10CM|Puncture wound without foreign body of left middle finger with damage to nail, initial encounter|Puncture wound without foreign body of left middle finger with damage to nail, initial encounter +C2850193|T037|AB|S61.333D|ICD10CM|Pnctr w/o fb of l mid finger w damage to nail, subs|Pnctr w/o fb of l mid finger w damage to nail, subs +C2850193|T037|PT|S61.333D|ICD10CM|Puncture wound without foreign body of left middle finger with damage to nail, subsequent encounter|Puncture wound without foreign body of left middle finger with damage to nail, subsequent encounter +C2850194|T037|AB|S61.333S|ICD10CM|Pnctr w/o fb of l mid finger w damage to nail, sequela|Pnctr w/o fb of l mid finger w damage to nail, sequela +C2850194|T037|PT|S61.333S|ICD10CM|Puncture wound without foreign body of left middle finger with damage to nail, sequela|Puncture wound without foreign body of left middle finger with damage to nail, sequela +C2850195|T037|AB|S61.334|ICD10CM|Pnctr w/o foreign body of r rng fngr w damage to nail|Pnctr w/o foreign body of r rng fngr w damage to nail +C2850195|T037|HT|S61.334|ICD10CM|Puncture wound without foreign body of right ring finger with damage to nail|Puncture wound without foreign body of right ring finger with damage to nail +C2850196|T037|AB|S61.334A|ICD10CM|Pnctr w/o foreign body of r rng fngr w damage to nail, init|Pnctr w/o foreign body of r rng fngr w damage to nail, init +C2850196|T037|PT|S61.334A|ICD10CM|Puncture wound without foreign body of right ring finger with damage to nail, initial encounter|Puncture wound without foreign body of right ring finger with damage to nail, initial encounter +C2850197|T037|AB|S61.334D|ICD10CM|Pnctr w/o foreign body of r rng fngr w damage to nail, subs|Pnctr w/o foreign body of r rng fngr w damage to nail, subs +C2850197|T037|PT|S61.334D|ICD10CM|Puncture wound without foreign body of right ring finger with damage to nail, subsequent encounter|Puncture wound without foreign body of right ring finger with damage to nail, subsequent encounter +C2850198|T037|AB|S61.334S|ICD10CM|Pnctr w/o fb of r rng fngr w damage to nail, sequela|Pnctr w/o fb of r rng fngr w damage to nail, sequela +C2850198|T037|PT|S61.334S|ICD10CM|Puncture wound without foreign body of right ring finger with damage to nail, sequela|Puncture wound without foreign body of right ring finger with damage to nail, sequela +C2850199|T037|AB|S61.335|ICD10CM|Pnctr w/o foreign body of l rng fngr w damage to nail|Pnctr w/o foreign body of l rng fngr w damage to nail +C2850199|T037|HT|S61.335|ICD10CM|Puncture wound without foreign body of left ring finger with damage to nail|Puncture wound without foreign body of left ring finger with damage to nail +C2850200|T037|AB|S61.335A|ICD10CM|Pnctr w/o foreign body of l rng fngr w damage to nail, init|Pnctr w/o foreign body of l rng fngr w damage to nail, init +C2850200|T037|PT|S61.335A|ICD10CM|Puncture wound without foreign body of left ring finger with damage to nail, initial encounter|Puncture wound without foreign body of left ring finger with damage to nail, initial encounter +C2850201|T037|AB|S61.335D|ICD10CM|Pnctr w/o foreign body of l rng fngr w damage to nail, subs|Pnctr w/o foreign body of l rng fngr w damage to nail, subs +C2850201|T037|PT|S61.335D|ICD10CM|Puncture wound without foreign body of left ring finger with damage to nail, subsequent encounter|Puncture wound without foreign body of left ring finger with damage to nail, subsequent encounter +C2850202|T037|AB|S61.335S|ICD10CM|Pnctr w/o fb of l rng fngr w damage to nail, sequela|Pnctr w/o fb of l rng fngr w damage to nail, sequela +C2850202|T037|PT|S61.335S|ICD10CM|Puncture wound without foreign body of left ring finger with damage to nail, sequela|Puncture wound without foreign body of left ring finger with damage to nail, sequela +C2850203|T037|AB|S61.336|ICD10CM|Pnctr w/o foreign body of r little finger w damage to nail|Pnctr w/o foreign body of r little finger w damage to nail +C2850203|T037|HT|S61.336|ICD10CM|Puncture wound without foreign body of right little finger with damage to nail|Puncture wound without foreign body of right little finger with damage to nail +C2850204|T037|AB|S61.336A|ICD10CM|Pnctr w/o fb of r little finger w damage to nail, init|Pnctr w/o fb of r little finger w damage to nail, init +C2850204|T037|PT|S61.336A|ICD10CM|Puncture wound without foreign body of right little finger with damage to nail, initial encounter|Puncture wound without foreign body of right little finger with damage to nail, initial encounter +C2850205|T037|AB|S61.336D|ICD10CM|Pnctr w/o fb of r little finger w damage to nail, subs|Pnctr w/o fb of r little finger w damage to nail, subs +C2850205|T037|PT|S61.336D|ICD10CM|Puncture wound without foreign body of right little finger with damage to nail, subsequent encounter|Puncture wound without foreign body of right little finger with damage to nail, subsequent encounter +C2850206|T037|AB|S61.336S|ICD10CM|Pnctr w/o fb of r little finger w damage to nail, sequela|Pnctr w/o fb of r little finger w damage to nail, sequela +C2850206|T037|PT|S61.336S|ICD10CM|Puncture wound without foreign body of right little finger with damage to nail, sequela|Puncture wound without foreign body of right little finger with damage to nail, sequela +C2850207|T037|AB|S61.337|ICD10CM|Pnctr w/o foreign body of l little finger w damage to nail|Pnctr w/o foreign body of l little finger w damage to nail +C2850207|T037|HT|S61.337|ICD10CM|Puncture wound without foreign body of left little finger with damage to nail|Puncture wound without foreign body of left little finger with damage to nail +C2850208|T037|AB|S61.337A|ICD10CM|Pnctr w/o fb of l little finger w damage to nail, init|Pnctr w/o fb of l little finger w damage to nail, init +C2850208|T037|PT|S61.337A|ICD10CM|Puncture wound without foreign body of left little finger with damage to nail, initial encounter|Puncture wound without foreign body of left little finger with damage to nail, initial encounter +C2850209|T037|AB|S61.337D|ICD10CM|Pnctr w/o fb of l little finger w damage to nail, subs|Pnctr w/o fb of l little finger w damage to nail, subs +C2850209|T037|PT|S61.337D|ICD10CM|Puncture wound without foreign body of left little finger with damage to nail, subsequent encounter|Puncture wound without foreign body of left little finger with damage to nail, subsequent encounter +C2850210|T037|AB|S61.337S|ICD10CM|Pnctr w/o fb of l little finger w damage to nail, sequela|Pnctr w/o fb of l little finger w damage to nail, sequela +C2850210|T037|PT|S61.337S|ICD10CM|Puncture wound without foreign body of left little finger with damage to nail, sequela|Puncture wound without foreign body of left little finger with damage to nail, sequela +C2850178|T037|AB|S61.338|ICD10CM|Puncture wound w/o foreign body of finger w damage to nail|Puncture wound w/o foreign body of finger w damage to nail +C2850178|T037|HT|S61.338|ICD10CM|Puncture wound without foreign body of other finger with damage to nail|Puncture wound without foreign body of other finger with damage to nail +C2850213|T037|AB|S61.338A|ICD10CM|Pnctr w/o foreign body of finger w damage to nail, init|Pnctr w/o foreign body of finger w damage to nail, init +C2850213|T037|PT|S61.338A|ICD10CM|Puncture wound without foreign body of other finger with damage to nail, initial encounter|Puncture wound without foreign body of other finger with damage to nail, initial encounter +C2850214|T037|AB|S61.338D|ICD10CM|Pnctr w/o foreign body of finger w damage to nail, subs|Pnctr w/o foreign body of finger w damage to nail, subs +C2850214|T037|PT|S61.338D|ICD10CM|Puncture wound without foreign body of other finger with damage to nail, subsequent encounter|Puncture wound without foreign body of other finger with damage to nail, subsequent encounter +C2850215|T037|AB|S61.338S|ICD10CM|Pnctr w/o foreign body of finger w damage to nail, sequela|Pnctr w/o foreign body of finger w damage to nail, sequela +C2850215|T037|PT|S61.338S|ICD10CM|Puncture wound without foreign body of other finger with damage to nail, sequela|Puncture wound without foreign body of other finger with damage to nail, sequela +C2850216|T037|AB|S61.339|ICD10CM|Pnctr w/o foreign body of unsp finger w damage to nail|Pnctr w/o foreign body of unsp finger w damage to nail +C2850216|T037|HT|S61.339|ICD10CM|Puncture wound without foreign body of unspecified finger with damage to nail|Puncture wound without foreign body of unspecified finger with damage to nail +C2850217|T037|AB|S61.339A|ICD10CM|Pnctr w/o foreign body of unsp finger w damage to nail, init|Pnctr w/o foreign body of unsp finger w damage to nail, init +C2850217|T037|PT|S61.339A|ICD10CM|Puncture wound without foreign body of unspecified finger with damage to nail, initial encounter|Puncture wound without foreign body of unspecified finger with damage to nail, initial encounter +C2850218|T037|AB|S61.339D|ICD10CM|Pnctr w/o foreign body of unsp finger w damage to nail, subs|Pnctr w/o foreign body of unsp finger w damage to nail, subs +C2850218|T037|PT|S61.339D|ICD10CM|Puncture wound without foreign body of unspecified finger with damage to nail, subsequent encounter|Puncture wound without foreign body of unspecified finger with damage to nail, subsequent encounter +C2850219|T037|AB|S61.339S|ICD10CM|Pnctr w/o fb of unsp finger w damage to nail, sequela|Pnctr w/o fb of unsp finger w damage to nail, sequela +C2850219|T037|PT|S61.339S|ICD10CM|Puncture wound without foreign body of unspecified finger with damage to nail, sequela|Puncture wound without foreign body of unspecified finger with damage to nail, sequela +C2850220|T037|AB|S61.34|ICD10CM|Puncture wound w foreign body of finger with damage to nail|Puncture wound w foreign body of finger with damage to nail +C2850220|T037|HT|S61.34|ICD10CM|Puncture wound with foreign body of finger with damage to nail|Puncture wound with foreign body of finger with damage to nail +C2850221|T037|AB|S61.340|ICD10CM|Puncture wound w foreign body of r idx fngr w damage to nail|Puncture wound w foreign body of r idx fngr w damage to nail +C2850221|T037|HT|S61.340|ICD10CM|Puncture wound with foreign body of right index finger with damage to nail|Puncture wound with foreign body of right index finger with damage to nail +C2850222|T037|AB|S61.340A|ICD10CM|Pnctr w foreign body of r idx fngr w damage to nail, init|Pnctr w foreign body of r idx fngr w damage to nail, init +C2850222|T037|PT|S61.340A|ICD10CM|Puncture wound with foreign body of right index finger with damage to nail, initial encounter|Puncture wound with foreign body of right index finger with damage to nail, initial encounter +C2850223|T037|AB|S61.340D|ICD10CM|Pnctr w foreign body of r idx fngr w damage to nail, subs|Pnctr w foreign body of r idx fngr w damage to nail, subs +C2850223|T037|PT|S61.340D|ICD10CM|Puncture wound with foreign body of right index finger with damage to nail, subsequent encounter|Puncture wound with foreign body of right index finger with damage to nail, subsequent encounter +C2850224|T037|AB|S61.340S|ICD10CM|Pnctr w foreign body of r idx fngr w damage to nail, sequela|Pnctr w foreign body of r idx fngr w damage to nail, sequela +C2850224|T037|PT|S61.340S|ICD10CM|Puncture wound with foreign body of right index finger with damage to nail, sequela|Puncture wound with foreign body of right index finger with damage to nail, sequela +C2850225|T037|AB|S61.341|ICD10CM|Puncture wound w foreign body of l idx fngr w damage to nail|Puncture wound w foreign body of l idx fngr w damage to nail +C2850225|T037|HT|S61.341|ICD10CM|Puncture wound with foreign body of left index finger with damage to nail|Puncture wound with foreign body of left index finger with damage to nail +C2850226|T037|AB|S61.341A|ICD10CM|Pnctr w foreign body of l idx fngr w damage to nail, init|Pnctr w foreign body of l idx fngr w damage to nail, init +C2850226|T037|PT|S61.341A|ICD10CM|Puncture wound with foreign body of left index finger with damage to nail, initial encounter|Puncture wound with foreign body of left index finger with damage to nail, initial encounter +C2850227|T037|AB|S61.341D|ICD10CM|Pnctr w foreign body of l idx fngr w damage to nail, subs|Pnctr w foreign body of l idx fngr w damage to nail, subs +C2850227|T037|PT|S61.341D|ICD10CM|Puncture wound with foreign body of left index finger with damage to nail, subsequent encounter|Puncture wound with foreign body of left index finger with damage to nail, subsequent encounter +C2850228|T037|AB|S61.341S|ICD10CM|Pnctr w foreign body of l idx fngr w damage to nail, sequela|Pnctr w foreign body of l idx fngr w damage to nail, sequela +C2850228|T037|PT|S61.341S|ICD10CM|Puncture wound with foreign body of left index finger with damage to nail, sequela|Puncture wound with foreign body of left index finger with damage to nail, sequela +C2850229|T037|AB|S61.342|ICD10CM|Pnctr w foreign body of r mid finger w damage to nail|Pnctr w foreign body of r mid finger w damage to nail +C2850229|T037|HT|S61.342|ICD10CM|Puncture wound with foreign body of right middle finger with damage to nail|Puncture wound with foreign body of right middle finger with damage to nail +C2850230|T037|AB|S61.342A|ICD10CM|Pnctr w foreign body of r mid finger w damage to nail, init|Pnctr w foreign body of r mid finger w damage to nail, init +C2850230|T037|PT|S61.342A|ICD10CM|Puncture wound with foreign body of right middle finger with damage to nail, initial encounter|Puncture wound with foreign body of right middle finger with damage to nail, initial encounter +C2850231|T037|AB|S61.342D|ICD10CM|Pnctr w foreign body of r mid finger w damage to nail, subs|Pnctr w foreign body of r mid finger w damage to nail, subs +C2850231|T037|PT|S61.342D|ICD10CM|Puncture wound with foreign body of right middle finger with damage to nail, subsequent encounter|Puncture wound with foreign body of right middle finger with damage to nail, subsequent encounter +C2850232|T037|AB|S61.342S|ICD10CM|Pnctr w fb of r mid finger w damage to nail, sequela|Pnctr w fb of r mid finger w damage to nail, sequela +C2850232|T037|PT|S61.342S|ICD10CM|Puncture wound with foreign body of right middle finger with damage to nail, sequela|Puncture wound with foreign body of right middle finger with damage to nail, sequela +C2850233|T037|AB|S61.343|ICD10CM|Pnctr w foreign body of l mid finger w damage to nail|Pnctr w foreign body of l mid finger w damage to nail +C2850233|T037|HT|S61.343|ICD10CM|Puncture wound with foreign body of left middle finger with damage to nail|Puncture wound with foreign body of left middle finger with damage to nail +C2850234|T037|AB|S61.343A|ICD10CM|Pnctr w foreign body of l mid finger w damage to nail, init|Pnctr w foreign body of l mid finger w damage to nail, init +C2850234|T037|PT|S61.343A|ICD10CM|Puncture wound with foreign body of left middle finger with damage to nail, initial encounter|Puncture wound with foreign body of left middle finger with damage to nail, initial encounter +C2850235|T037|AB|S61.343D|ICD10CM|Pnctr w foreign body of l mid finger w damage to nail, subs|Pnctr w foreign body of l mid finger w damage to nail, subs +C2850235|T037|PT|S61.343D|ICD10CM|Puncture wound with foreign body of left middle finger with damage to nail, subsequent encounter|Puncture wound with foreign body of left middle finger with damage to nail, subsequent encounter +C2850236|T037|AB|S61.343S|ICD10CM|Pnctr w fb of l mid finger w damage to nail, sequela|Pnctr w fb of l mid finger w damage to nail, sequela +C2850236|T037|PT|S61.343S|ICD10CM|Puncture wound with foreign body of left middle finger with damage to nail, sequela|Puncture wound with foreign body of left middle finger with damage to nail, sequela +C2850237|T037|AB|S61.344|ICD10CM|Puncture wound w foreign body of r rng fngr w damage to nail|Puncture wound w foreign body of r rng fngr w damage to nail +C2850237|T037|HT|S61.344|ICD10CM|Puncture wound with foreign body of right ring finger with damage to nail|Puncture wound with foreign body of right ring finger with damage to nail +C2850238|T037|AB|S61.344A|ICD10CM|Pnctr w foreign body of r rng fngr w damage to nail, init|Pnctr w foreign body of r rng fngr w damage to nail, init +C2850238|T037|PT|S61.344A|ICD10CM|Puncture wound with foreign body of right ring finger with damage to nail, initial encounter|Puncture wound with foreign body of right ring finger with damage to nail, initial encounter +C2850239|T037|AB|S61.344D|ICD10CM|Pnctr w foreign body of r rng fngr w damage to nail, subs|Pnctr w foreign body of r rng fngr w damage to nail, subs +C2850239|T037|PT|S61.344D|ICD10CM|Puncture wound with foreign body of right ring finger with damage to nail, subsequent encounter|Puncture wound with foreign body of right ring finger with damage to nail, subsequent encounter +C2850240|T037|AB|S61.344S|ICD10CM|Pnctr w foreign body of r rng fngr w damage to nail, sequela|Pnctr w foreign body of r rng fngr w damage to nail, sequela +C2850240|T037|PT|S61.344S|ICD10CM|Puncture wound with foreign body of right ring finger with damage to nail, sequela|Puncture wound with foreign body of right ring finger with damage to nail, sequela +C2850241|T037|AB|S61.345|ICD10CM|Puncture wound w foreign body of l rng fngr w damage to nail|Puncture wound w foreign body of l rng fngr w damage to nail +C2850241|T037|HT|S61.345|ICD10CM|Puncture wound with foreign body of left ring finger with damage to nail|Puncture wound with foreign body of left ring finger with damage to nail +C2850242|T037|AB|S61.345A|ICD10CM|Pnctr w foreign body of l rng fngr w damage to nail, init|Pnctr w foreign body of l rng fngr w damage to nail, init +C2850242|T037|PT|S61.345A|ICD10CM|Puncture wound with foreign body of left ring finger with damage to nail, initial encounter|Puncture wound with foreign body of left ring finger with damage to nail, initial encounter +C2850243|T037|AB|S61.345D|ICD10CM|Pnctr w foreign body of l rng fngr w damage to nail, subs|Pnctr w foreign body of l rng fngr w damage to nail, subs +C2850243|T037|PT|S61.345D|ICD10CM|Puncture wound with foreign body of left ring finger with damage to nail, subsequent encounter|Puncture wound with foreign body of left ring finger with damage to nail, subsequent encounter +C2850244|T037|AB|S61.345S|ICD10CM|Pnctr w foreign body of l rng fngr w damage to nail, sequela|Pnctr w foreign body of l rng fngr w damage to nail, sequela +C2850244|T037|PT|S61.345S|ICD10CM|Puncture wound with foreign body of left ring finger with damage to nail, sequela|Puncture wound with foreign body of left ring finger with damage to nail, sequela +C2850245|T037|AB|S61.346|ICD10CM|Pnctr w foreign body of r little finger w damage to nail|Pnctr w foreign body of r little finger w damage to nail +C2850245|T037|HT|S61.346|ICD10CM|Puncture wound with foreign body of right little finger with damage to nail|Puncture wound with foreign body of right little finger with damage to nail +C2850246|T037|AB|S61.346A|ICD10CM|Pnctr w fb of r little finger w damage to nail, init|Pnctr w fb of r little finger w damage to nail, init +C2850246|T037|PT|S61.346A|ICD10CM|Puncture wound with foreign body of right little finger with damage to nail, initial encounter|Puncture wound with foreign body of right little finger with damage to nail, initial encounter +C2850247|T037|AB|S61.346D|ICD10CM|Pnctr w fb of r little finger w damage to nail, subs|Pnctr w fb of r little finger w damage to nail, subs +C2850247|T037|PT|S61.346D|ICD10CM|Puncture wound with foreign body of right little finger with damage to nail, subsequent encounter|Puncture wound with foreign body of right little finger with damage to nail, subsequent encounter +C2850248|T037|AB|S61.346S|ICD10CM|Pnctr w fb of r little finger w damage to nail, sequela|Pnctr w fb of r little finger w damage to nail, sequela +C2850248|T037|PT|S61.346S|ICD10CM|Puncture wound with foreign body of right little finger with damage to nail, sequela|Puncture wound with foreign body of right little finger with damage to nail, sequela +C2850249|T037|AB|S61.347|ICD10CM|Pnctr w foreign body of l little finger w damage to nail|Pnctr w foreign body of l little finger w damage to nail +C2850249|T037|HT|S61.347|ICD10CM|Puncture wound with foreign body of left little finger with damage to nail|Puncture wound with foreign body of left little finger with damage to nail +C2850250|T037|AB|S61.347A|ICD10CM|Pnctr w fb of l little finger w damage to nail, init|Pnctr w fb of l little finger w damage to nail, init +C2850250|T037|PT|S61.347A|ICD10CM|Puncture wound with foreign body of left little finger with damage to nail, initial encounter|Puncture wound with foreign body of left little finger with damage to nail, initial encounter +C2850251|T037|AB|S61.347D|ICD10CM|Pnctr w fb of l little finger w damage to nail, subs|Pnctr w fb of l little finger w damage to nail, subs +C2850251|T037|PT|S61.347D|ICD10CM|Puncture wound with foreign body of left little finger with damage to nail, subsequent encounter|Puncture wound with foreign body of left little finger with damage to nail, subsequent encounter +C2850252|T037|AB|S61.347S|ICD10CM|Pnctr w fb of l little finger w damage to nail, sequela|Pnctr w fb of l little finger w damage to nail, sequela +C2850252|T037|PT|S61.347S|ICD10CM|Puncture wound with foreign body of left little finger with damage to nail, sequela|Puncture wound with foreign body of left little finger with damage to nail, sequela +C2850254|T037|AB|S61.348|ICD10CM|Puncture wound w foreign body of oth finger w damage to nail|Puncture wound w foreign body of oth finger w damage to nail +C2850254|T037|HT|S61.348|ICD10CM|Puncture wound with foreign body of other finger with damage to nail|Puncture wound with foreign body of other finger with damage to nail +C2850253|T037|ET|S61.348|ICD10CM|Puncture wound with foreign body of specified finger with unspecified laterality with damage to nail|Puncture wound with foreign body of specified finger with unspecified laterality with damage to nail +C2850255|T037|AB|S61.348A|ICD10CM|Pnctr w foreign body of finger w damage to nail, init|Pnctr w foreign body of finger w damage to nail, init +C2850255|T037|PT|S61.348A|ICD10CM|Puncture wound with foreign body of other finger with damage to nail, initial encounter|Puncture wound with foreign body of other finger with damage to nail, initial encounter +C2850256|T037|AB|S61.348D|ICD10CM|Pnctr w foreign body of finger w damage to nail, subs|Pnctr w foreign body of finger w damage to nail, subs +C2850256|T037|PT|S61.348D|ICD10CM|Puncture wound with foreign body of other finger with damage to nail, subsequent encounter|Puncture wound with foreign body of other finger with damage to nail, subsequent encounter +C2850257|T037|AB|S61.348S|ICD10CM|Pnctr w foreign body of finger w damage to nail, sequela|Pnctr w foreign body of finger w damage to nail, sequela +C2850257|T037|PT|S61.348S|ICD10CM|Puncture wound with foreign body of other finger with damage to nail, sequela|Puncture wound with foreign body of other finger with damage to nail, sequela +C2850258|T037|AB|S61.349|ICD10CM|Pnctr w foreign body of unsp finger w damage to nail|Pnctr w foreign body of unsp finger w damage to nail +C2850258|T037|HT|S61.349|ICD10CM|Puncture wound with foreign body of unspecified finger with damage to nail|Puncture wound with foreign body of unspecified finger with damage to nail +C2850259|T037|AB|S61.349A|ICD10CM|Pnctr w foreign body of unsp finger w damage to nail, init|Pnctr w foreign body of unsp finger w damage to nail, init +C2850259|T037|PT|S61.349A|ICD10CM|Puncture wound with foreign body of unspecified finger with damage to nail, initial encounter|Puncture wound with foreign body of unspecified finger with damage to nail, initial encounter +C2850260|T037|AB|S61.349D|ICD10CM|Pnctr w foreign body of unsp finger w damage to nail, subs|Pnctr w foreign body of unsp finger w damage to nail, subs +C2850260|T037|PT|S61.349D|ICD10CM|Puncture wound with foreign body of unspecified finger with damage to nail, subsequent encounter|Puncture wound with foreign body of unspecified finger with damage to nail, subsequent encounter +C2850261|T037|AB|S61.349S|ICD10CM|Pnctr w fb of unsp finger w damage to nail, sequela|Pnctr w fb of unsp finger w damage to nail, sequela +C2850261|T037|PT|S61.349S|ICD10CM|Puncture wound with foreign body of unspecified finger with damage to nail, sequela|Puncture wound with foreign body of unspecified finger with damage to nail, sequela +C2850262|T037|ET|S61.35|ICD10CM|Bite of finger with damage to nail NOS|Bite of finger with damage to nail NOS +C2850263|T037|HT|S61.35|ICD10CM|Open bite of finger with damage to nail|Open bite of finger with damage to nail +C2850263|T037|AB|S61.35|ICD10CM|Open bite of finger with damage to nail|Open bite of finger with damage to nail +C2850264|T037|AB|S61.350|ICD10CM|Open bite of right index finger with damage to nail|Open bite of right index finger with damage to nail +C2850264|T037|HT|S61.350|ICD10CM|Open bite of right index finger with damage to nail|Open bite of right index finger with damage to nail +C2850265|T037|AB|S61.350A|ICD10CM|Open bite of right index finger w damage to nail, init|Open bite of right index finger w damage to nail, init +C2850265|T037|PT|S61.350A|ICD10CM|Open bite of right index finger with damage to nail, initial encounter|Open bite of right index finger with damage to nail, initial encounter +C2850266|T037|AB|S61.350D|ICD10CM|Open bite of right index finger w damage to nail, subs|Open bite of right index finger w damage to nail, subs +C2850266|T037|PT|S61.350D|ICD10CM|Open bite of right index finger with damage to nail, subsequent encounter|Open bite of right index finger with damage to nail, subsequent encounter +C2850267|T037|AB|S61.350S|ICD10CM|Open bite of right index finger with damage to nail, sequela|Open bite of right index finger with damage to nail, sequela +C2850267|T037|PT|S61.350S|ICD10CM|Open bite of right index finger with damage to nail, sequela|Open bite of right index finger with damage to nail, sequela +C2850268|T037|AB|S61.351|ICD10CM|Open bite of left index finger with damage to nail|Open bite of left index finger with damage to nail +C2850268|T037|HT|S61.351|ICD10CM|Open bite of left index finger with damage to nail|Open bite of left index finger with damage to nail +C2850269|T037|AB|S61.351A|ICD10CM|Open bite of left index finger w damage to nail, init encntr|Open bite of left index finger w damage to nail, init encntr +C2850269|T037|PT|S61.351A|ICD10CM|Open bite of left index finger with damage to nail, initial encounter|Open bite of left index finger with damage to nail, initial encounter +C2850270|T037|AB|S61.351D|ICD10CM|Open bite of left index finger w damage to nail, subs encntr|Open bite of left index finger w damage to nail, subs encntr +C2850270|T037|PT|S61.351D|ICD10CM|Open bite of left index finger with damage to nail, subsequent encounter|Open bite of left index finger with damage to nail, subsequent encounter +C2850271|T037|AB|S61.351S|ICD10CM|Open bite of left index finger with damage to nail, sequela|Open bite of left index finger with damage to nail, sequela +C2850271|T037|PT|S61.351S|ICD10CM|Open bite of left index finger with damage to nail, sequela|Open bite of left index finger with damage to nail, sequela +C2850272|T037|AB|S61.352|ICD10CM|Open bite of right middle finger with damage to nail|Open bite of right middle finger with damage to nail +C2850272|T037|HT|S61.352|ICD10CM|Open bite of right middle finger with damage to nail|Open bite of right middle finger with damage to nail +C2850273|T037|AB|S61.352A|ICD10CM|Open bite of right middle finger w damage to nail, init|Open bite of right middle finger w damage to nail, init +C2850273|T037|PT|S61.352A|ICD10CM|Open bite of right middle finger with damage to nail, initial encounter|Open bite of right middle finger with damage to nail, initial encounter +C2850274|T037|AB|S61.352D|ICD10CM|Open bite of right middle finger w damage to nail, subs|Open bite of right middle finger w damage to nail, subs +C2850274|T037|PT|S61.352D|ICD10CM|Open bite of right middle finger with damage to nail, subsequent encounter|Open bite of right middle finger with damage to nail, subsequent encounter +C2850275|T037|AB|S61.352S|ICD10CM|Open bite of right middle finger w damage to nail, sequela|Open bite of right middle finger w damage to nail, sequela +C2850275|T037|PT|S61.352S|ICD10CM|Open bite of right middle finger with damage to nail, sequela|Open bite of right middle finger with damage to nail, sequela +C2850276|T037|AB|S61.353|ICD10CM|Open bite of left middle finger with damage to nail|Open bite of left middle finger with damage to nail +C2850276|T037|HT|S61.353|ICD10CM|Open bite of left middle finger with damage to nail|Open bite of left middle finger with damage to nail +C2850277|T037|AB|S61.353A|ICD10CM|Open bite of left middle finger w damage to nail, init|Open bite of left middle finger w damage to nail, init +C2850277|T037|PT|S61.353A|ICD10CM|Open bite of left middle finger with damage to nail, initial encounter|Open bite of left middle finger with damage to nail, initial encounter +C2850278|T037|AB|S61.353D|ICD10CM|Open bite of left middle finger w damage to nail, subs|Open bite of left middle finger w damage to nail, subs +C2850278|T037|PT|S61.353D|ICD10CM|Open bite of left middle finger with damage to nail, subsequent encounter|Open bite of left middle finger with damage to nail, subsequent encounter +C2850279|T037|AB|S61.353S|ICD10CM|Open bite of left middle finger with damage to nail, sequela|Open bite of left middle finger with damage to nail, sequela +C2850279|T037|PT|S61.353S|ICD10CM|Open bite of left middle finger with damage to nail, sequela|Open bite of left middle finger with damage to nail, sequela +C2850280|T037|AB|S61.354|ICD10CM|Open bite of right ring finger with damage to nail|Open bite of right ring finger with damage to nail +C2850280|T037|HT|S61.354|ICD10CM|Open bite of right ring finger with damage to nail|Open bite of right ring finger with damage to nail +C2850281|T037|AB|S61.354A|ICD10CM|Open bite of right ring finger w damage to nail, init encntr|Open bite of right ring finger w damage to nail, init encntr +C2850281|T037|PT|S61.354A|ICD10CM|Open bite of right ring finger with damage to nail, initial encounter|Open bite of right ring finger with damage to nail, initial encounter +C2850282|T037|AB|S61.354D|ICD10CM|Open bite of right ring finger w damage to nail, subs encntr|Open bite of right ring finger w damage to nail, subs encntr +C2850282|T037|PT|S61.354D|ICD10CM|Open bite of right ring finger with damage to nail, subsequent encounter|Open bite of right ring finger with damage to nail, subsequent encounter +C2850283|T037|AB|S61.354S|ICD10CM|Open bite of right ring finger with damage to nail, sequela|Open bite of right ring finger with damage to nail, sequela +C2850283|T037|PT|S61.354S|ICD10CM|Open bite of right ring finger with damage to nail, sequela|Open bite of right ring finger with damage to nail, sequela +C2850284|T037|AB|S61.355|ICD10CM|Open bite of left ring finger with damage to nail|Open bite of left ring finger with damage to nail +C2850284|T037|HT|S61.355|ICD10CM|Open bite of left ring finger with damage to nail|Open bite of left ring finger with damage to nail +C2850285|T037|AB|S61.355A|ICD10CM|Open bite of left ring finger w damage to nail, init encntr|Open bite of left ring finger w damage to nail, init encntr +C2850285|T037|PT|S61.355A|ICD10CM|Open bite of left ring finger with damage to nail, initial encounter|Open bite of left ring finger with damage to nail, initial encounter +C2850286|T037|AB|S61.355D|ICD10CM|Open bite of left ring finger w damage to nail, subs encntr|Open bite of left ring finger w damage to nail, subs encntr +C2850286|T037|PT|S61.355D|ICD10CM|Open bite of left ring finger with damage to nail, subsequent encounter|Open bite of left ring finger with damage to nail, subsequent encounter +C2850287|T037|AB|S61.355S|ICD10CM|Open bite of left ring finger with damage to nail, sequela|Open bite of left ring finger with damage to nail, sequela +C2850287|T037|PT|S61.355S|ICD10CM|Open bite of left ring finger with damage to nail, sequela|Open bite of left ring finger with damage to nail, sequela +C2850288|T037|AB|S61.356|ICD10CM|Open bite of right little finger with damage to nail|Open bite of right little finger with damage to nail +C2850288|T037|HT|S61.356|ICD10CM|Open bite of right little finger with damage to nail|Open bite of right little finger with damage to nail +C2850289|T037|AB|S61.356A|ICD10CM|Open bite of right little finger w damage to nail, init|Open bite of right little finger w damage to nail, init +C2850289|T037|PT|S61.356A|ICD10CM|Open bite of right little finger with damage to nail, initial encounter|Open bite of right little finger with damage to nail, initial encounter +C2850290|T037|AB|S61.356D|ICD10CM|Open bite of right little finger w damage to nail, subs|Open bite of right little finger w damage to nail, subs +C2850290|T037|PT|S61.356D|ICD10CM|Open bite of right little finger with damage to nail, subsequent encounter|Open bite of right little finger with damage to nail, subsequent encounter +C2850291|T037|AB|S61.356S|ICD10CM|Open bite of right little finger w damage to nail, sequela|Open bite of right little finger w damage to nail, sequela +C2850291|T037|PT|S61.356S|ICD10CM|Open bite of right little finger with damage to nail, sequela|Open bite of right little finger with damage to nail, sequela +C2850292|T037|AB|S61.357|ICD10CM|Open bite of left little finger with damage to nail|Open bite of left little finger with damage to nail +C2850292|T037|HT|S61.357|ICD10CM|Open bite of left little finger with damage to nail|Open bite of left little finger with damage to nail +C2850293|T037|AB|S61.357A|ICD10CM|Open bite of left little finger w damage to nail, init|Open bite of left little finger w damage to nail, init +C2850293|T037|PT|S61.357A|ICD10CM|Open bite of left little finger with damage to nail, initial encounter|Open bite of left little finger with damage to nail, initial encounter +C2850294|T037|AB|S61.357D|ICD10CM|Open bite of left little finger w damage to nail, subs|Open bite of left little finger w damage to nail, subs +C2850294|T037|PT|S61.357D|ICD10CM|Open bite of left little finger with damage to nail, subsequent encounter|Open bite of left little finger with damage to nail, subsequent encounter +C2850295|T037|AB|S61.357S|ICD10CM|Open bite of left little finger with damage to nail, sequela|Open bite of left little finger with damage to nail, sequela +C2850295|T037|PT|S61.357S|ICD10CM|Open bite of left little finger with damage to nail, sequela|Open bite of left little finger with damage to nail, sequela +C2850297|T037|AB|S61.358|ICD10CM|Open bite of other finger with damage to nail|Open bite of other finger with damage to nail +C2850297|T037|HT|S61.358|ICD10CM|Open bite of other finger with damage to nail|Open bite of other finger with damage to nail +C2850296|T037|ET|S61.358|ICD10CM|Open bite of specified finger with unspecified laterality with damage to nail|Open bite of specified finger with unspecified laterality with damage to nail +C2850298|T037|AB|S61.358A|ICD10CM|Open bite of other finger with damage to nail, init encntr|Open bite of other finger with damage to nail, init encntr +C2850298|T037|PT|S61.358A|ICD10CM|Open bite of other finger with damage to nail, initial encounter|Open bite of other finger with damage to nail, initial encounter +C2850299|T037|AB|S61.358D|ICD10CM|Open bite of other finger with damage to nail, subs encntr|Open bite of other finger with damage to nail, subs encntr +C2850299|T037|PT|S61.358D|ICD10CM|Open bite of other finger with damage to nail, subsequent encounter|Open bite of other finger with damage to nail, subsequent encounter +C2850300|T037|AB|S61.358S|ICD10CM|Open bite of other finger with damage to nail, sequela|Open bite of other finger with damage to nail, sequela +C2850300|T037|PT|S61.358S|ICD10CM|Open bite of other finger with damage to nail, sequela|Open bite of other finger with damage to nail, sequela +C2850301|T037|AB|S61.359|ICD10CM|Open bite of unspecified finger with damage to nail|Open bite of unspecified finger with damage to nail +C2850301|T037|HT|S61.359|ICD10CM|Open bite of unspecified finger with damage to nail|Open bite of unspecified finger with damage to nail +C2850302|T037|AB|S61.359A|ICD10CM|Open bite of unsp finger with damage to nail, init encntr|Open bite of unsp finger with damage to nail, init encntr +C2850302|T037|PT|S61.359A|ICD10CM|Open bite of unspecified finger with damage to nail, initial encounter|Open bite of unspecified finger with damage to nail, initial encounter +C2850303|T037|AB|S61.359D|ICD10CM|Open bite of unsp finger with damage to nail, subs encntr|Open bite of unsp finger with damage to nail, subs encntr +C2850303|T037|PT|S61.359D|ICD10CM|Open bite of unspecified finger with damage to nail, subsequent encounter|Open bite of unspecified finger with damage to nail, subsequent encounter +C2850304|T037|AB|S61.359S|ICD10CM|Open bite of unspecified finger with damage to nail, sequela|Open bite of unspecified finger with damage to nail, sequela +C2850304|T037|PT|S61.359S|ICD10CM|Open bite of unspecified finger with damage to nail, sequela|Open bite of unspecified finger with damage to nail, sequela +C0558407|T037|HT|S61.4|ICD10CM|Open wound of hand|Open wound of hand +C0558407|T037|AB|S61.4|ICD10CM|Open wound of hand|Open wound of hand +C2850305|T037|AB|S61.40|ICD10CM|Unspecified open wound of hand|Unspecified open wound of hand +C2850305|T037|HT|S61.40|ICD10CM|Unspecified open wound of hand|Unspecified open wound of hand +C2850306|T037|AB|S61.401|ICD10CM|Unspecified open wound of right hand|Unspecified open wound of right hand +C2850306|T037|HT|S61.401|ICD10CM|Unspecified open wound of right hand|Unspecified open wound of right hand +C2850307|T037|AB|S61.401A|ICD10CM|Unspecified open wound of right hand, initial encounter|Unspecified open wound of right hand, initial encounter +C2850307|T037|PT|S61.401A|ICD10CM|Unspecified open wound of right hand, initial encounter|Unspecified open wound of right hand, initial encounter +C2850308|T037|AB|S61.401D|ICD10CM|Unspecified open wound of right hand, subsequent encounter|Unspecified open wound of right hand, subsequent encounter +C2850308|T037|PT|S61.401D|ICD10CM|Unspecified open wound of right hand, subsequent encounter|Unspecified open wound of right hand, subsequent encounter +C2850309|T037|AB|S61.401S|ICD10CM|Unspecified open wound of right hand, sequela|Unspecified open wound of right hand, sequela +C2850309|T037|PT|S61.401S|ICD10CM|Unspecified open wound of right hand, sequela|Unspecified open wound of right hand, sequela +C2850310|T037|AB|S61.402|ICD10CM|Unspecified open wound of left hand|Unspecified open wound of left hand +C2850310|T037|HT|S61.402|ICD10CM|Unspecified open wound of left hand|Unspecified open wound of left hand +C2850311|T037|AB|S61.402A|ICD10CM|Unspecified open wound of left hand, initial encounter|Unspecified open wound of left hand, initial encounter +C2850311|T037|PT|S61.402A|ICD10CM|Unspecified open wound of left hand, initial encounter|Unspecified open wound of left hand, initial encounter +C2850312|T037|AB|S61.402D|ICD10CM|Unspecified open wound of left hand, subsequent encounter|Unspecified open wound of left hand, subsequent encounter +C2850312|T037|PT|S61.402D|ICD10CM|Unspecified open wound of left hand, subsequent encounter|Unspecified open wound of left hand, subsequent encounter +C2850313|T037|AB|S61.402S|ICD10CM|Unspecified open wound of left hand, sequela|Unspecified open wound of left hand, sequela +C2850313|T037|PT|S61.402S|ICD10CM|Unspecified open wound of left hand, sequela|Unspecified open wound of left hand, sequela +C2850314|T037|AB|S61.409|ICD10CM|Unspecified open wound of unspecified hand|Unspecified open wound of unspecified hand +C2850314|T037|HT|S61.409|ICD10CM|Unspecified open wound of unspecified hand|Unspecified open wound of unspecified hand +C2850315|T037|AB|S61.409A|ICD10CM|Unspecified open wound of unspecified hand, init encntr|Unspecified open wound of unspecified hand, init encntr +C2850315|T037|PT|S61.409A|ICD10CM|Unspecified open wound of unspecified hand, initial encounter|Unspecified open wound of unspecified hand, initial encounter +C2850316|T037|AB|S61.409D|ICD10CM|Unspecified open wound of unspecified hand, subs encntr|Unspecified open wound of unspecified hand, subs encntr +C2850316|T037|PT|S61.409D|ICD10CM|Unspecified open wound of unspecified hand, subsequent encounter|Unspecified open wound of unspecified hand, subsequent encounter +C2850317|T037|AB|S61.409S|ICD10CM|Unspecified open wound of unspecified hand, sequela|Unspecified open wound of unspecified hand, sequela +C2850317|T037|PT|S61.409S|ICD10CM|Unspecified open wound of unspecified hand, sequela|Unspecified open wound of unspecified hand, sequela +C2850318|T037|AB|S61.41|ICD10CM|Laceration without foreign body of hand|Laceration without foreign body of hand +C2850318|T037|HT|S61.41|ICD10CM|Laceration without foreign body of hand|Laceration without foreign body of hand +C2850319|T037|AB|S61.411|ICD10CM|Laceration without foreign body of right hand|Laceration without foreign body of right hand +C2850319|T037|HT|S61.411|ICD10CM|Laceration without foreign body of right hand|Laceration without foreign body of right hand +C2850320|T037|AB|S61.411A|ICD10CM|Laceration without foreign body of right hand, init encntr|Laceration without foreign body of right hand, init encntr +C2850320|T037|PT|S61.411A|ICD10CM|Laceration without foreign body of right hand, initial encounter|Laceration without foreign body of right hand, initial encounter +C2850321|T037|AB|S61.411D|ICD10CM|Laceration without foreign body of right hand, subs encntr|Laceration without foreign body of right hand, subs encntr +C2850321|T037|PT|S61.411D|ICD10CM|Laceration without foreign body of right hand, subsequent encounter|Laceration without foreign body of right hand, subsequent encounter +C2850322|T037|AB|S61.411S|ICD10CM|Laceration without foreign body of right hand, sequela|Laceration without foreign body of right hand, sequela +C2850322|T037|PT|S61.411S|ICD10CM|Laceration without foreign body of right hand, sequela|Laceration without foreign body of right hand, sequela +C2850323|T037|AB|S61.412|ICD10CM|Laceration without foreign body of left hand|Laceration without foreign body of left hand +C2850323|T037|HT|S61.412|ICD10CM|Laceration without foreign body of left hand|Laceration without foreign body of left hand +C2850324|T037|AB|S61.412A|ICD10CM|Laceration without foreign body of left hand, init encntr|Laceration without foreign body of left hand, init encntr +C2850324|T037|PT|S61.412A|ICD10CM|Laceration without foreign body of left hand, initial encounter|Laceration without foreign body of left hand, initial encounter +C2850325|T037|AB|S61.412D|ICD10CM|Laceration without foreign body of left hand, subs encntr|Laceration without foreign body of left hand, subs encntr +C2850325|T037|PT|S61.412D|ICD10CM|Laceration without foreign body of left hand, subsequent encounter|Laceration without foreign body of left hand, subsequent encounter +C2850326|T037|AB|S61.412S|ICD10CM|Laceration without foreign body of left hand, sequela|Laceration without foreign body of left hand, sequela +C2850326|T037|PT|S61.412S|ICD10CM|Laceration without foreign body of left hand, sequela|Laceration without foreign body of left hand, sequela +C2850327|T037|AB|S61.419|ICD10CM|Laceration without foreign body of unspecified hand|Laceration without foreign body of unspecified hand +C2850327|T037|HT|S61.419|ICD10CM|Laceration without foreign body of unspecified hand|Laceration without foreign body of unspecified hand +C2850328|T037|AB|S61.419A|ICD10CM|Laceration without foreign body of unsp hand, init encntr|Laceration without foreign body of unsp hand, init encntr +C2850328|T037|PT|S61.419A|ICD10CM|Laceration without foreign body of unspecified hand, initial encounter|Laceration without foreign body of unspecified hand, initial encounter +C2850329|T037|AB|S61.419D|ICD10CM|Laceration without foreign body of unsp hand, subs encntr|Laceration without foreign body of unsp hand, subs encntr +C2850329|T037|PT|S61.419D|ICD10CM|Laceration without foreign body of unspecified hand, subsequent encounter|Laceration without foreign body of unspecified hand, subsequent encounter +C2850330|T037|AB|S61.419S|ICD10CM|Laceration without foreign body of unspecified hand, sequela|Laceration without foreign body of unspecified hand, sequela +C2850330|T037|PT|S61.419S|ICD10CM|Laceration without foreign body of unspecified hand, sequela|Laceration without foreign body of unspecified hand, sequela +C2850331|T037|HT|S61.42|ICD10CM|Laceration with foreign body of hand|Laceration with foreign body of hand +C2850331|T037|AB|S61.42|ICD10CM|Laceration with foreign body of hand|Laceration with foreign body of hand +C2850332|T037|AB|S61.421|ICD10CM|Laceration with foreign body of right hand|Laceration with foreign body of right hand +C2850332|T037|HT|S61.421|ICD10CM|Laceration with foreign body of right hand|Laceration with foreign body of right hand +C2850333|T037|AB|S61.421A|ICD10CM|Laceration with foreign body of right hand, init encntr|Laceration with foreign body of right hand, init encntr +C2850333|T037|PT|S61.421A|ICD10CM|Laceration with foreign body of right hand, initial encounter|Laceration with foreign body of right hand, initial encounter +C2850334|T037|AB|S61.421D|ICD10CM|Laceration with foreign body of right hand, subs encntr|Laceration with foreign body of right hand, subs encntr +C2850334|T037|PT|S61.421D|ICD10CM|Laceration with foreign body of right hand, subsequent encounter|Laceration with foreign body of right hand, subsequent encounter +C2850335|T037|AB|S61.421S|ICD10CM|Laceration with foreign body of right hand, sequela|Laceration with foreign body of right hand, sequela +C2850335|T037|PT|S61.421S|ICD10CM|Laceration with foreign body of right hand, sequela|Laceration with foreign body of right hand, sequela +C2850336|T037|AB|S61.422|ICD10CM|Laceration with foreign body of left hand|Laceration with foreign body of left hand +C2850336|T037|HT|S61.422|ICD10CM|Laceration with foreign body of left hand|Laceration with foreign body of left hand +C2850337|T037|AB|S61.422A|ICD10CM|Laceration with foreign body of left hand, initial encounter|Laceration with foreign body of left hand, initial encounter +C2850337|T037|PT|S61.422A|ICD10CM|Laceration with foreign body of left hand, initial encounter|Laceration with foreign body of left hand, initial encounter +C2850338|T037|AB|S61.422D|ICD10CM|Laceration with foreign body of left hand, subs encntr|Laceration with foreign body of left hand, subs encntr +C2850338|T037|PT|S61.422D|ICD10CM|Laceration with foreign body of left hand, subsequent encounter|Laceration with foreign body of left hand, subsequent encounter +C2850339|T037|AB|S61.422S|ICD10CM|Laceration with foreign body of left hand, sequela|Laceration with foreign body of left hand, sequela +C2850339|T037|PT|S61.422S|ICD10CM|Laceration with foreign body of left hand, sequela|Laceration with foreign body of left hand, sequela +C2850340|T037|AB|S61.429|ICD10CM|Laceration with foreign body of unspecified hand|Laceration with foreign body of unspecified hand +C2850340|T037|HT|S61.429|ICD10CM|Laceration with foreign body of unspecified hand|Laceration with foreign body of unspecified hand +C2850341|T037|AB|S61.429A|ICD10CM|Laceration with foreign body of unsp hand, init encntr|Laceration with foreign body of unsp hand, init encntr +C2850341|T037|PT|S61.429A|ICD10CM|Laceration with foreign body of unspecified hand, initial encounter|Laceration with foreign body of unspecified hand, initial encounter +C2850342|T037|AB|S61.429D|ICD10CM|Laceration with foreign body of unsp hand, subs encntr|Laceration with foreign body of unsp hand, subs encntr +C2850342|T037|PT|S61.429D|ICD10CM|Laceration with foreign body of unspecified hand, subsequent encounter|Laceration with foreign body of unspecified hand, subsequent encounter +C2850343|T037|AB|S61.429S|ICD10CM|Laceration with foreign body of unspecified hand, sequela|Laceration with foreign body of unspecified hand, sequela +C2850343|T037|PT|S61.429S|ICD10CM|Laceration with foreign body of unspecified hand, sequela|Laceration with foreign body of unspecified hand, sequela +C2850344|T037|AB|S61.43|ICD10CM|Puncture wound without foreign body of hand|Puncture wound without foreign body of hand +C2850344|T037|HT|S61.43|ICD10CM|Puncture wound without foreign body of hand|Puncture wound without foreign body of hand +C2850345|T037|AB|S61.431|ICD10CM|Puncture wound without foreign body of right hand|Puncture wound without foreign body of right hand +C2850345|T037|HT|S61.431|ICD10CM|Puncture wound without foreign body of right hand|Puncture wound without foreign body of right hand +C2850346|T037|AB|S61.431A|ICD10CM|Puncture wound w/o foreign body of right hand, init encntr|Puncture wound w/o foreign body of right hand, init encntr +C2850346|T037|PT|S61.431A|ICD10CM|Puncture wound without foreign body of right hand, initial encounter|Puncture wound without foreign body of right hand, initial encounter +C2850347|T037|AB|S61.431D|ICD10CM|Puncture wound w/o foreign body of right hand, subs encntr|Puncture wound w/o foreign body of right hand, subs encntr +C2850347|T037|PT|S61.431D|ICD10CM|Puncture wound without foreign body of right hand, subsequent encounter|Puncture wound without foreign body of right hand, subsequent encounter +C2850348|T037|AB|S61.431S|ICD10CM|Puncture wound without foreign body of right hand, sequela|Puncture wound without foreign body of right hand, sequela +C2850348|T037|PT|S61.431S|ICD10CM|Puncture wound without foreign body of right hand, sequela|Puncture wound without foreign body of right hand, sequela +C2850349|T037|AB|S61.432|ICD10CM|Puncture wound without foreign body of left hand|Puncture wound without foreign body of left hand +C2850349|T037|HT|S61.432|ICD10CM|Puncture wound without foreign body of left hand|Puncture wound without foreign body of left hand +C2850350|T037|AB|S61.432A|ICD10CM|Puncture wound w/o foreign body of left hand, init encntr|Puncture wound w/o foreign body of left hand, init encntr +C2850350|T037|PT|S61.432A|ICD10CM|Puncture wound without foreign body of left hand, initial encounter|Puncture wound without foreign body of left hand, initial encounter +C2850351|T037|AB|S61.432D|ICD10CM|Puncture wound w/o foreign body of left hand, subs encntr|Puncture wound w/o foreign body of left hand, subs encntr +C2850351|T037|PT|S61.432D|ICD10CM|Puncture wound without foreign body of left hand, subsequent encounter|Puncture wound without foreign body of left hand, subsequent encounter +C2850352|T037|AB|S61.432S|ICD10CM|Puncture wound without foreign body of left hand, sequela|Puncture wound without foreign body of left hand, sequela +C2850352|T037|PT|S61.432S|ICD10CM|Puncture wound without foreign body of left hand, sequela|Puncture wound without foreign body of left hand, sequela +C2850353|T037|AB|S61.439|ICD10CM|Puncture wound without foreign body of unspecified hand|Puncture wound without foreign body of unspecified hand +C2850353|T037|HT|S61.439|ICD10CM|Puncture wound without foreign body of unspecified hand|Puncture wound without foreign body of unspecified hand +C2850354|T037|AB|S61.439A|ICD10CM|Puncture wound w/o foreign body of unsp hand, init encntr|Puncture wound w/o foreign body of unsp hand, init encntr +C2850354|T037|PT|S61.439A|ICD10CM|Puncture wound without foreign body of unspecified hand, initial encounter|Puncture wound without foreign body of unspecified hand, initial encounter +C2850355|T037|AB|S61.439D|ICD10CM|Puncture wound w/o foreign body of unsp hand, subs encntr|Puncture wound w/o foreign body of unsp hand, subs encntr +C2850355|T037|PT|S61.439D|ICD10CM|Puncture wound without foreign body of unspecified hand, subsequent encounter|Puncture wound without foreign body of unspecified hand, subsequent encounter +C2850356|T037|AB|S61.439S|ICD10CM|Puncture wound without foreign body of unsp hand, sequela|Puncture wound without foreign body of unsp hand, sequela +C2850356|T037|PT|S61.439S|ICD10CM|Puncture wound without foreign body of unspecified hand, sequela|Puncture wound without foreign body of unspecified hand, sequela +C2850357|T037|HT|S61.44|ICD10CM|Puncture wound with foreign body of hand|Puncture wound with foreign body of hand +C2850357|T037|AB|S61.44|ICD10CM|Puncture wound with foreign body of hand|Puncture wound with foreign body of hand +C2850358|T037|AB|S61.441|ICD10CM|Puncture wound with foreign body of right hand|Puncture wound with foreign body of right hand +C2850358|T037|HT|S61.441|ICD10CM|Puncture wound with foreign body of right hand|Puncture wound with foreign body of right hand +C2850359|T037|AB|S61.441A|ICD10CM|Puncture wound with foreign body of right hand, init encntr|Puncture wound with foreign body of right hand, init encntr +C2850359|T037|PT|S61.441A|ICD10CM|Puncture wound with foreign body of right hand, initial encounter|Puncture wound with foreign body of right hand, initial encounter +C2850360|T037|AB|S61.441D|ICD10CM|Puncture wound with foreign body of right hand, subs encntr|Puncture wound with foreign body of right hand, subs encntr +C2850360|T037|PT|S61.441D|ICD10CM|Puncture wound with foreign body of right hand, subsequent encounter|Puncture wound with foreign body of right hand, subsequent encounter +C2850361|T037|AB|S61.441S|ICD10CM|Puncture wound with foreign body of right hand, sequela|Puncture wound with foreign body of right hand, sequela +C2850361|T037|PT|S61.441S|ICD10CM|Puncture wound with foreign body of right hand, sequela|Puncture wound with foreign body of right hand, sequela +C2850362|T037|AB|S61.442|ICD10CM|Puncture wound with foreign body of left hand|Puncture wound with foreign body of left hand +C2850362|T037|HT|S61.442|ICD10CM|Puncture wound with foreign body of left hand|Puncture wound with foreign body of left hand +C2850363|T037|AB|S61.442A|ICD10CM|Puncture wound with foreign body of left hand, init encntr|Puncture wound with foreign body of left hand, init encntr +C2850363|T037|PT|S61.442A|ICD10CM|Puncture wound with foreign body of left hand, initial encounter|Puncture wound with foreign body of left hand, initial encounter +C2850364|T037|AB|S61.442D|ICD10CM|Puncture wound with foreign body of left hand, subs encntr|Puncture wound with foreign body of left hand, subs encntr +C2850364|T037|PT|S61.442D|ICD10CM|Puncture wound with foreign body of left hand, subsequent encounter|Puncture wound with foreign body of left hand, subsequent encounter +C2850365|T037|AB|S61.442S|ICD10CM|Puncture wound with foreign body of left hand, sequela|Puncture wound with foreign body of left hand, sequela +C2850365|T037|PT|S61.442S|ICD10CM|Puncture wound with foreign body of left hand, sequela|Puncture wound with foreign body of left hand, sequela +C2850366|T037|AB|S61.449|ICD10CM|Puncture wound with foreign body of unspecified hand|Puncture wound with foreign body of unspecified hand +C2850366|T037|HT|S61.449|ICD10CM|Puncture wound with foreign body of unspecified hand|Puncture wound with foreign body of unspecified hand +C2850367|T037|AB|S61.449A|ICD10CM|Puncture wound with foreign body of unsp hand, init encntr|Puncture wound with foreign body of unsp hand, init encntr +C2850367|T037|PT|S61.449A|ICD10CM|Puncture wound with foreign body of unspecified hand, initial encounter|Puncture wound with foreign body of unspecified hand, initial encounter +C2850368|T037|AB|S61.449D|ICD10CM|Puncture wound with foreign body of unsp hand, subs encntr|Puncture wound with foreign body of unsp hand, subs encntr +C2850368|T037|PT|S61.449D|ICD10CM|Puncture wound with foreign body of unspecified hand, subsequent encounter|Puncture wound with foreign body of unspecified hand, subsequent encounter +C2850369|T037|AB|S61.449S|ICD10CM|Puncture wound with foreign body of unsp hand, sequela|Puncture wound with foreign body of unsp hand, sequela +C2850369|T037|PT|S61.449S|ICD10CM|Puncture wound with foreign body of unspecified hand, sequela|Puncture wound with foreign body of unspecified hand, sequela +C2919008|T037|ET|S61.45|ICD10CM|Bite of hand NOS|Bite of hand NOS +C2850370|T037|HT|S61.45|ICD10CM|Open bite of hand|Open bite of hand +C2850370|T037|AB|S61.45|ICD10CM|Open bite of hand|Open bite of hand +C2850371|T037|AB|S61.451|ICD10CM|Open bite of right hand|Open bite of right hand +C2850371|T037|HT|S61.451|ICD10CM|Open bite of right hand|Open bite of right hand +C2850372|T037|AB|S61.451A|ICD10CM|Open bite of right hand, initial encounter|Open bite of right hand, initial encounter +C2850372|T037|PT|S61.451A|ICD10CM|Open bite of right hand, initial encounter|Open bite of right hand, initial encounter +C2850373|T037|AB|S61.451D|ICD10CM|Open bite of right hand, subsequent encounter|Open bite of right hand, subsequent encounter +C2850373|T037|PT|S61.451D|ICD10CM|Open bite of right hand, subsequent encounter|Open bite of right hand, subsequent encounter +C2850374|T037|AB|S61.451S|ICD10CM|Open bite of right hand, sequela|Open bite of right hand, sequela +C2850374|T037|PT|S61.451S|ICD10CM|Open bite of right hand, sequela|Open bite of right hand, sequela +C2850375|T037|AB|S61.452|ICD10CM|Open bite of left hand|Open bite of left hand +C2850375|T037|HT|S61.452|ICD10CM|Open bite of left hand|Open bite of left hand +C2850376|T037|AB|S61.452A|ICD10CM|Open bite of left hand, initial encounter|Open bite of left hand, initial encounter +C2850376|T037|PT|S61.452A|ICD10CM|Open bite of left hand, initial encounter|Open bite of left hand, initial encounter +C2850377|T037|AB|S61.452D|ICD10CM|Open bite of left hand, subsequent encounter|Open bite of left hand, subsequent encounter +C2850377|T037|PT|S61.452D|ICD10CM|Open bite of left hand, subsequent encounter|Open bite of left hand, subsequent encounter +C2850378|T037|AB|S61.452S|ICD10CM|Open bite of left hand, sequela|Open bite of left hand, sequela +C2850378|T037|PT|S61.452S|ICD10CM|Open bite of left hand, sequela|Open bite of left hand, sequela +C2850379|T037|AB|S61.459|ICD10CM|Open bite of unspecified hand|Open bite of unspecified hand +C2850379|T037|HT|S61.459|ICD10CM|Open bite of unspecified hand|Open bite of unspecified hand +C2850380|T037|AB|S61.459A|ICD10CM|Open bite of unspecified hand, initial encounter|Open bite of unspecified hand, initial encounter +C2850380|T037|PT|S61.459A|ICD10CM|Open bite of unspecified hand, initial encounter|Open bite of unspecified hand, initial encounter +C2850381|T037|AB|S61.459D|ICD10CM|Open bite of unspecified hand, subsequent encounter|Open bite of unspecified hand, subsequent encounter +C2850381|T037|PT|S61.459D|ICD10CM|Open bite of unspecified hand, subsequent encounter|Open bite of unspecified hand, subsequent encounter +C2850382|T037|AB|S61.459S|ICD10CM|Open bite of unspecified hand, sequela|Open bite of unspecified hand, sequela +C2850382|T037|PT|S61.459S|ICD10CM|Open bite of unspecified hand, sequela|Open bite of unspecified hand, sequela +C0432966|T037|HT|S61.5|ICD10CM|Open wound of wrist|Open wound of wrist +C0432966|T037|AB|S61.5|ICD10CM|Open wound of wrist|Open wound of wrist +C0432966|T037|AB|S61.50|ICD10CM|Unspecified open wound of wrist|Unspecified open wound of wrist +C0432966|T037|HT|S61.50|ICD10CM|Unspecified open wound of wrist|Unspecified open wound of wrist +C2850383|T037|AB|S61.501|ICD10CM|Unspecified open wound of right wrist|Unspecified open wound of right wrist +C2850383|T037|HT|S61.501|ICD10CM|Unspecified open wound of right wrist|Unspecified open wound of right wrist +C2850384|T037|AB|S61.501A|ICD10CM|Unspecified open wound of right wrist, initial encounter|Unspecified open wound of right wrist, initial encounter +C2850384|T037|PT|S61.501A|ICD10CM|Unspecified open wound of right wrist, initial encounter|Unspecified open wound of right wrist, initial encounter +C2850385|T037|AB|S61.501D|ICD10CM|Unspecified open wound of right wrist, subsequent encounter|Unspecified open wound of right wrist, subsequent encounter +C2850385|T037|PT|S61.501D|ICD10CM|Unspecified open wound of right wrist, subsequent encounter|Unspecified open wound of right wrist, subsequent encounter +C2850386|T037|AB|S61.501S|ICD10CM|Unspecified open wound of right wrist, sequela|Unspecified open wound of right wrist, sequela +C2850386|T037|PT|S61.501S|ICD10CM|Unspecified open wound of right wrist, sequela|Unspecified open wound of right wrist, sequela +C2850387|T037|AB|S61.502|ICD10CM|Unspecified open wound of left wrist|Unspecified open wound of left wrist +C2850387|T037|HT|S61.502|ICD10CM|Unspecified open wound of left wrist|Unspecified open wound of left wrist +C2850388|T037|AB|S61.502A|ICD10CM|Unspecified open wound of left wrist, initial encounter|Unspecified open wound of left wrist, initial encounter +C2850388|T037|PT|S61.502A|ICD10CM|Unspecified open wound of left wrist, initial encounter|Unspecified open wound of left wrist, initial encounter +C2850389|T037|AB|S61.502D|ICD10CM|Unspecified open wound of left wrist, subsequent encounter|Unspecified open wound of left wrist, subsequent encounter +C2850389|T037|PT|S61.502D|ICD10CM|Unspecified open wound of left wrist, subsequent encounter|Unspecified open wound of left wrist, subsequent encounter +C2850390|T037|AB|S61.502S|ICD10CM|Unspecified open wound of left wrist, sequela|Unspecified open wound of left wrist, sequela +C2850390|T037|PT|S61.502S|ICD10CM|Unspecified open wound of left wrist, sequela|Unspecified open wound of left wrist, sequela +C2850391|T037|AB|S61.509|ICD10CM|Unspecified open wound of unspecified wrist|Unspecified open wound of unspecified wrist +C2850391|T037|HT|S61.509|ICD10CM|Unspecified open wound of unspecified wrist|Unspecified open wound of unspecified wrist +C2850392|T037|AB|S61.509A|ICD10CM|Unspecified open wound of unspecified wrist, init encntr|Unspecified open wound of unspecified wrist, init encntr +C2850392|T037|PT|S61.509A|ICD10CM|Unspecified open wound of unspecified wrist, initial encounter|Unspecified open wound of unspecified wrist, initial encounter +C2850393|T037|AB|S61.509D|ICD10CM|Unspecified open wound of unspecified wrist, subs encntr|Unspecified open wound of unspecified wrist, subs encntr +C2850393|T037|PT|S61.509D|ICD10CM|Unspecified open wound of unspecified wrist, subsequent encounter|Unspecified open wound of unspecified wrist, subsequent encounter +C2850394|T037|AB|S61.509S|ICD10CM|Unspecified open wound of unspecified wrist, sequela|Unspecified open wound of unspecified wrist, sequela +C2850394|T037|PT|S61.509S|ICD10CM|Unspecified open wound of unspecified wrist, sequela|Unspecified open wound of unspecified wrist, sequela +C2850395|T037|AB|S61.51|ICD10CM|Laceration without foreign body of wrist|Laceration without foreign body of wrist +C2850395|T037|HT|S61.51|ICD10CM|Laceration without foreign body of wrist|Laceration without foreign body of wrist +C2850396|T037|AB|S61.511|ICD10CM|Laceration without foreign body of right wrist|Laceration without foreign body of right wrist +C2850396|T037|HT|S61.511|ICD10CM|Laceration without foreign body of right wrist|Laceration without foreign body of right wrist +C2850397|T037|AB|S61.511A|ICD10CM|Laceration without foreign body of right wrist, init encntr|Laceration without foreign body of right wrist, init encntr +C2850397|T037|PT|S61.511A|ICD10CM|Laceration without foreign body of right wrist, initial encounter|Laceration without foreign body of right wrist, initial encounter +C2850398|T037|AB|S61.511D|ICD10CM|Laceration without foreign body of right wrist, subs encntr|Laceration without foreign body of right wrist, subs encntr +C2850398|T037|PT|S61.511D|ICD10CM|Laceration without foreign body of right wrist, subsequent encounter|Laceration without foreign body of right wrist, subsequent encounter +C2850399|T037|AB|S61.511S|ICD10CM|Laceration without foreign body of right wrist, sequela|Laceration without foreign body of right wrist, sequela +C2850399|T037|PT|S61.511S|ICD10CM|Laceration without foreign body of right wrist, sequela|Laceration without foreign body of right wrist, sequela +C2850400|T037|AB|S61.512|ICD10CM|Laceration without foreign body of left wrist|Laceration without foreign body of left wrist +C2850400|T037|HT|S61.512|ICD10CM|Laceration without foreign body of left wrist|Laceration without foreign body of left wrist +C2850401|T037|AB|S61.512A|ICD10CM|Laceration without foreign body of left wrist, init encntr|Laceration without foreign body of left wrist, init encntr +C2850401|T037|PT|S61.512A|ICD10CM|Laceration without foreign body of left wrist, initial encounter|Laceration without foreign body of left wrist, initial encounter +C2850402|T037|AB|S61.512D|ICD10CM|Laceration without foreign body of left wrist, subs encntr|Laceration without foreign body of left wrist, subs encntr +C2850402|T037|PT|S61.512D|ICD10CM|Laceration without foreign body of left wrist, subsequent encounter|Laceration without foreign body of left wrist, subsequent encounter +C2850403|T037|AB|S61.512S|ICD10CM|Laceration without foreign body of left wrist, sequela|Laceration without foreign body of left wrist, sequela +C2850403|T037|PT|S61.512S|ICD10CM|Laceration without foreign body of left wrist, sequela|Laceration without foreign body of left wrist, sequela +C2850404|T037|AB|S61.519|ICD10CM|Laceration without foreign body of unspecified wrist|Laceration without foreign body of unspecified wrist +C2850404|T037|HT|S61.519|ICD10CM|Laceration without foreign body of unspecified wrist|Laceration without foreign body of unspecified wrist +C2850405|T037|AB|S61.519A|ICD10CM|Laceration without foreign body of unsp wrist, init encntr|Laceration without foreign body of unsp wrist, init encntr +C2850405|T037|PT|S61.519A|ICD10CM|Laceration without foreign body of unspecified wrist, initial encounter|Laceration without foreign body of unspecified wrist, initial encounter +C2850406|T037|AB|S61.519D|ICD10CM|Laceration without foreign body of unsp wrist, subs encntr|Laceration without foreign body of unsp wrist, subs encntr +C2850406|T037|PT|S61.519D|ICD10CM|Laceration without foreign body of unspecified wrist, subsequent encounter|Laceration without foreign body of unspecified wrist, subsequent encounter +C2850407|T037|AB|S61.519S|ICD10CM|Laceration without foreign body of unsp wrist, sequela|Laceration without foreign body of unsp wrist, sequela +C2850407|T037|PT|S61.519S|ICD10CM|Laceration without foreign body of unspecified wrist, sequela|Laceration without foreign body of unspecified wrist, sequela +C2850408|T037|HT|S61.52|ICD10CM|Laceration with foreign body of wrist|Laceration with foreign body of wrist +C2850408|T037|AB|S61.52|ICD10CM|Laceration with foreign body of wrist|Laceration with foreign body of wrist +C2850409|T037|AB|S61.521|ICD10CM|Laceration with foreign body of right wrist|Laceration with foreign body of right wrist +C2850409|T037|HT|S61.521|ICD10CM|Laceration with foreign body of right wrist|Laceration with foreign body of right wrist +C2850410|T037|AB|S61.521A|ICD10CM|Laceration with foreign body of right wrist, init encntr|Laceration with foreign body of right wrist, init encntr +C2850410|T037|PT|S61.521A|ICD10CM|Laceration with foreign body of right wrist, initial encounter|Laceration with foreign body of right wrist, initial encounter +C2850411|T037|AB|S61.521D|ICD10CM|Laceration with foreign body of right wrist, subs encntr|Laceration with foreign body of right wrist, subs encntr +C2850411|T037|PT|S61.521D|ICD10CM|Laceration with foreign body of right wrist, subsequent encounter|Laceration with foreign body of right wrist, subsequent encounter +C2850412|T037|AB|S61.521S|ICD10CM|Laceration with foreign body of right wrist, sequela|Laceration with foreign body of right wrist, sequela +C2850412|T037|PT|S61.521S|ICD10CM|Laceration with foreign body of right wrist, sequela|Laceration with foreign body of right wrist, sequela +C2850413|T037|AB|S61.522|ICD10CM|Laceration with foreign body of left wrist|Laceration with foreign body of left wrist +C2850413|T037|HT|S61.522|ICD10CM|Laceration with foreign body of left wrist|Laceration with foreign body of left wrist +C2850414|T037|AB|S61.522A|ICD10CM|Laceration with foreign body of left wrist, init encntr|Laceration with foreign body of left wrist, init encntr +C2850414|T037|PT|S61.522A|ICD10CM|Laceration with foreign body of left wrist, initial encounter|Laceration with foreign body of left wrist, initial encounter +C2850415|T037|AB|S61.522D|ICD10CM|Laceration with foreign body of left wrist, subs encntr|Laceration with foreign body of left wrist, subs encntr +C2850415|T037|PT|S61.522D|ICD10CM|Laceration with foreign body of left wrist, subsequent encounter|Laceration with foreign body of left wrist, subsequent encounter +C2850416|T037|AB|S61.522S|ICD10CM|Laceration with foreign body of left wrist, sequela|Laceration with foreign body of left wrist, sequela +C2850416|T037|PT|S61.522S|ICD10CM|Laceration with foreign body of left wrist, sequela|Laceration with foreign body of left wrist, sequela +C2850417|T037|AB|S61.529|ICD10CM|Laceration with foreign body of unspecified wrist|Laceration with foreign body of unspecified wrist +C2850417|T037|HT|S61.529|ICD10CM|Laceration with foreign body of unspecified wrist|Laceration with foreign body of unspecified wrist +C2850418|T037|AB|S61.529A|ICD10CM|Laceration with foreign body of unsp wrist, init encntr|Laceration with foreign body of unsp wrist, init encntr +C2850418|T037|PT|S61.529A|ICD10CM|Laceration with foreign body of unspecified wrist, initial encounter|Laceration with foreign body of unspecified wrist, initial encounter +C2850419|T037|AB|S61.529D|ICD10CM|Laceration with foreign body of unsp wrist, subs encntr|Laceration with foreign body of unsp wrist, subs encntr +C2850419|T037|PT|S61.529D|ICD10CM|Laceration with foreign body of unspecified wrist, subsequent encounter|Laceration with foreign body of unspecified wrist, subsequent encounter +C2850420|T037|AB|S61.529S|ICD10CM|Laceration with foreign body of unspecified wrist, sequela|Laceration with foreign body of unspecified wrist, sequela +C2850420|T037|PT|S61.529S|ICD10CM|Laceration with foreign body of unspecified wrist, sequela|Laceration with foreign body of unspecified wrist, sequela +C2850421|T037|AB|S61.53|ICD10CM|Puncture wound without foreign body of wrist|Puncture wound without foreign body of wrist +C2850421|T037|HT|S61.53|ICD10CM|Puncture wound without foreign body of wrist|Puncture wound without foreign body of wrist +C2850422|T037|AB|S61.531|ICD10CM|Puncture wound without foreign body of right wrist|Puncture wound without foreign body of right wrist +C2850422|T037|HT|S61.531|ICD10CM|Puncture wound without foreign body of right wrist|Puncture wound without foreign body of right wrist +C2850423|T037|AB|S61.531A|ICD10CM|Puncture wound w/o foreign body of right wrist, init encntr|Puncture wound w/o foreign body of right wrist, init encntr +C2850423|T037|PT|S61.531A|ICD10CM|Puncture wound without foreign body of right wrist, initial encounter|Puncture wound without foreign body of right wrist, initial encounter +C2850424|T037|AB|S61.531D|ICD10CM|Puncture wound w/o foreign body of right wrist, subs encntr|Puncture wound w/o foreign body of right wrist, subs encntr +C2850424|T037|PT|S61.531D|ICD10CM|Puncture wound without foreign body of right wrist, subsequent encounter|Puncture wound without foreign body of right wrist, subsequent encounter +C2850425|T037|AB|S61.531S|ICD10CM|Puncture wound without foreign body of right wrist, sequela|Puncture wound without foreign body of right wrist, sequela +C2850425|T037|PT|S61.531S|ICD10CM|Puncture wound without foreign body of right wrist, sequela|Puncture wound without foreign body of right wrist, sequela +C2850426|T037|AB|S61.532|ICD10CM|Puncture wound without foreign body of left wrist|Puncture wound without foreign body of left wrist +C2850426|T037|HT|S61.532|ICD10CM|Puncture wound without foreign body of left wrist|Puncture wound without foreign body of left wrist +C2850427|T037|AB|S61.532A|ICD10CM|Puncture wound w/o foreign body of left wrist, init encntr|Puncture wound w/o foreign body of left wrist, init encntr +C2850427|T037|PT|S61.532A|ICD10CM|Puncture wound without foreign body of left wrist, initial encounter|Puncture wound without foreign body of left wrist, initial encounter +C2850428|T037|AB|S61.532D|ICD10CM|Puncture wound w/o foreign body of left wrist, subs encntr|Puncture wound w/o foreign body of left wrist, subs encntr +C2850428|T037|PT|S61.532D|ICD10CM|Puncture wound without foreign body of left wrist, subsequent encounter|Puncture wound without foreign body of left wrist, subsequent encounter +C2850429|T037|AB|S61.532S|ICD10CM|Puncture wound without foreign body of left wrist, sequela|Puncture wound without foreign body of left wrist, sequela +C2850429|T037|PT|S61.532S|ICD10CM|Puncture wound without foreign body of left wrist, sequela|Puncture wound without foreign body of left wrist, sequela +C2850430|T037|AB|S61.539|ICD10CM|Puncture wound without foreign body of unspecified wrist|Puncture wound without foreign body of unspecified wrist +C2850430|T037|HT|S61.539|ICD10CM|Puncture wound without foreign body of unspecified wrist|Puncture wound without foreign body of unspecified wrist +C2850431|T037|AB|S61.539A|ICD10CM|Puncture wound w/o foreign body of unsp wrist, init encntr|Puncture wound w/o foreign body of unsp wrist, init encntr +C2850431|T037|PT|S61.539A|ICD10CM|Puncture wound without foreign body of unspecified wrist, initial encounter|Puncture wound without foreign body of unspecified wrist, initial encounter +C2850432|T037|AB|S61.539D|ICD10CM|Puncture wound w/o foreign body of unsp wrist, subs encntr|Puncture wound w/o foreign body of unsp wrist, subs encntr +C2850432|T037|PT|S61.539D|ICD10CM|Puncture wound without foreign body of unspecified wrist, subsequent encounter|Puncture wound without foreign body of unspecified wrist, subsequent encounter +C2850433|T037|AB|S61.539S|ICD10CM|Puncture wound without foreign body of unsp wrist, sequela|Puncture wound without foreign body of unsp wrist, sequela +C2850433|T037|PT|S61.539S|ICD10CM|Puncture wound without foreign body of unspecified wrist, sequela|Puncture wound without foreign body of unspecified wrist, sequela +C2850434|T037|HT|S61.54|ICD10CM|Puncture wound with foreign body of wrist|Puncture wound with foreign body of wrist +C2850434|T037|AB|S61.54|ICD10CM|Puncture wound with foreign body of wrist|Puncture wound with foreign body of wrist +C2850435|T037|AB|S61.541|ICD10CM|Puncture wound with foreign body of right wrist|Puncture wound with foreign body of right wrist +C2850435|T037|HT|S61.541|ICD10CM|Puncture wound with foreign body of right wrist|Puncture wound with foreign body of right wrist +C2850436|T037|AB|S61.541A|ICD10CM|Puncture wound with foreign body of right wrist, init encntr|Puncture wound with foreign body of right wrist, init encntr +C2850436|T037|PT|S61.541A|ICD10CM|Puncture wound with foreign body of right wrist, initial encounter|Puncture wound with foreign body of right wrist, initial encounter +C2850437|T037|AB|S61.541D|ICD10CM|Puncture wound with foreign body of right wrist, subs encntr|Puncture wound with foreign body of right wrist, subs encntr +C2850437|T037|PT|S61.541D|ICD10CM|Puncture wound with foreign body of right wrist, subsequent encounter|Puncture wound with foreign body of right wrist, subsequent encounter +C2850438|T037|AB|S61.541S|ICD10CM|Puncture wound with foreign body of right wrist, sequela|Puncture wound with foreign body of right wrist, sequela +C2850438|T037|PT|S61.541S|ICD10CM|Puncture wound with foreign body of right wrist, sequela|Puncture wound with foreign body of right wrist, sequela +C2850439|T037|AB|S61.542|ICD10CM|Puncture wound with foreign body of left wrist|Puncture wound with foreign body of left wrist +C2850439|T037|HT|S61.542|ICD10CM|Puncture wound with foreign body of left wrist|Puncture wound with foreign body of left wrist +C2850440|T037|AB|S61.542A|ICD10CM|Puncture wound with foreign body of left wrist, init encntr|Puncture wound with foreign body of left wrist, init encntr +C2850440|T037|PT|S61.542A|ICD10CM|Puncture wound with foreign body of left wrist, initial encounter|Puncture wound with foreign body of left wrist, initial encounter +C2850441|T037|AB|S61.542D|ICD10CM|Puncture wound with foreign body of left wrist, subs encntr|Puncture wound with foreign body of left wrist, subs encntr +C2850441|T037|PT|S61.542D|ICD10CM|Puncture wound with foreign body of left wrist, subsequent encounter|Puncture wound with foreign body of left wrist, subsequent encounter +C2850442|T037|AB|S61.542S|ICD10CM|Puncture wound with foreign body of left wrist, sequela|Puncture wound with foreign body of left wrist, sequela +C2850442|T037|PT|S61.542S|ICD10CM|Puncture wound with foreign body of left wrist, sequela|Puncture wound with foreign body of left wrist, sequela +C2850443|T037|AB|S61.549|ICD10CM|Puncture wound with foreign body of unspecified wrist|Puncture wound with foreign body of unspecified wrist +C2850443|T037|HT|S61.549|ICD10CM|Puncture wound with foreign body of unspecified wrist|Puncture wound with foreign body of unspecified wrist +C2850444|T037|AB|S61.549A|ICD10CM|Puncture wound with foreign body of unsp wrist, init encntr|Puncture wound with foreign body of unsp wrist, init encntr +C2850444|T037|PT|S61.549A|ICD10CM|Puncture wound with foreign body of unspecified wrist, initial encounter|Puncture wound with foreign body of unspecified wrist, initial encounter +C2850445|T037|AB|S61.549D|ICD10CM|Puncture wound with foreign body of unsp wrist, subs encntr|Puncture wound with foreign body of unsp wrist, subs encntr +C2850445|T037|PT|S61.549D|ICD10CM|Puncture wound with foreign body of unspecified wrist, subsequent encounter|Puncture wound with foreign body of unspecified wrist, subsequent encounter +C2850446|T037|AB|S61.549S|ICD10CM|Puncture wound with foreign body of unsp wrist, sequela|Puncture wound with foreign body of unsp wrist, sequela +C2850446|T037|PT|S61.549S|ICD10CM|Puncture wound with foreign body of unspecified wrist, sequela|Puncture wound with foreign body of unspecified wrist, sequela +C2850447|T037|ET|S61.55|ICD10CM|Bite of wrist NOS|Bite of wrist NOS +C2850447|T037|HT|S61.55|ICD10CM|Open bite of wrist|Open bite of wrist +C2850447|T037|AB|S61.55|ICD10CM|Open bite of wrist|Open bite of wrist +C2850448|T037|AB|S61.551|ICD10CM|Open bite of right wrist|Open bite of right wrist +C2850448|T037|HT|S61.551|ICD10CM|Open bite of right wrist|Open bite of right wrist +C2850449|T037|AB|S61.551A|ICD10CM|Open bite of right wrist, initial encounter|Open bite of right wrist, initial encounter +C2850449|T037|PT|S61.551A|ICD10CM|Open bite of right wrist, initial encounter|Open bite of right wrist, initial encounter +C2850450|T037|AB|S61.551D|ICD10CM|Open bite of right wrist, subsequent encounter|Open bite of right wrist, subsequent encounter +C2850450|T037|PT|S61.551D|ICD10CM|Open bite of right wrist, subsequent encounter|Open bite of right wrist, subsequent encounter +C2850451|T037|AB|S61.551S|ICD10CM|Open bite of right wrist, sequela|Open bite of right wrist, sequela +C2850451|T037|PT|S61.551S|ICD10CM|Open bite of right wrist, sequela|Open bite of right wrist, sequela +C2850452|T037|AB|S61.552|ICD10CM|Open bite of left wrist|Open bite of left wrist +C2850452|T037|HT|S61.552|ICD10CM|Open bite of left wrist|Open bite of left wrist +C2850453|T037|AB|S61.552A|ICD10CM|Open bite of left wrist, initial encounter|Open bite of left wrist, initial encounter +C2850453|T037|PT|S61.552A|ICD10CM|Open bite of left wrist, initial encounter|Open bite of left wrist, initial encounter +C2850454|T037|AB|S61.552D|ICD10CM|Open bite of left wrist, subsequent encounter|Open bite of left wrist, subsequent encounter +C2850454|T037|PT|S61.552D|ICD10CM|Open bite of left wrist, subsequent encounter|Open bite of left wrist, subsequent encounter +C2850455|T037|AB|S61.552S|ICD10CM|Open bite of left wrist, sequela|Open bite of left wrist, sequela +C2850455|T037|PT|S61.552S|ICD10CM|Open bite of left wrist, sequela|Open bite of left wrist, sequela +C2850456|T037|AB|S61.559|ICD10CM|Open bite of unspecified wrist|Open bite of unspecified wrist +C2850456|T037|HT|S61.559|ICD10CM|Open bite of unspecified wrist|Open bite of unspecified wrist +C2850457|T037|AB|S61.559A|ICD10CM|Open bite of unspecified wrist, initial encounter|Open bite of unspecified wrist, initial encounter +C2850457|T037|PT|S61.559A|ICD10CM|Open bite of unspecified wrist, initial encounter|Open bite of unspecified wrist, initial encounter +C2850458|T037|AB|S61.559D|ICD10CM|Open bite of unspecified wrist, subsequent encounter|Open bite of unspecified wrist, subsequent encounter +C2850458|T037|PT|S61.559D|ICD10CM|Open bite of unspecified wrist, subsequent encounter|Open bite of unspecified wrist, subsequent encounter +C2850459|T037|AB|S61.559S|ICD10CM|Open bite of unspecified wrist, sequela|Open bite of unspecified wrist, sequela +C2850459|T037|PT|S61.559S|ICD10CM|Open bite of unspecified wrist, sequela|Open bite of unspecified wrist, sequela +C0495899|T037|PT|S61.7|ICD10|Multiple open wounds of wrist and hand|Multiple open wounds of wrist and hand +C0478304|T037|PT|S61.8|ICD10|Open wound of other parts of wrist and hand|Open wound of other parts of wrist and hand +C0495900|T037|PT|S61.9|ICD10|Open wound of wrist and hand part, part unspecified|Open wound of wrist and hand part, part unspecified +C0452088|T037|HT|S62|ICD10|Fracture at wrist and hand level|Fracture at wrist and hand level +C0452088|T037|HT|S62|ICD10CM|Fracture at wrist and hand level|Fracture at wrist and hand level +C0452088|T037|AB|S62|ICD10CM|Fracture at wrist and hand level|Fracture at wrist and hand level +C0495901|T037|PT|S62.0|ICD10|Fracture of navicular [scaphoid] bone of hand|Fracture of navicular [scaphoid] bone of hand +C2850460|T037|AB|S62.0|ICD10CM|Fracture of navicular [scaphoid] bone of wrist|Fracture of navicular [scaphoid] bone of wrist +C2850460|T037|HT|S62.0|ICD10CM|Fracture of navicular [scaphoid] bone of wrist|Fracture of navicular [scaphoid] bone of wrist +C2850461|T037|AB|S62.00|ICD10CM|Unspecified fracture of navicular [scaphoid] bone of wrist|Unspecified fracture of navicular [scaphoid] bone of wrist +C2850461|T037|HT|S62.00|ICD10CM|Unspecified fracture of navicular [scaphoid] bone of wrist|Unspecified fracture of navicular [scaphoid] bone of wrist +C2850462|T037|HT|S62.001|ICD10CM|Unspecified fracture of navicular [scaphoid] bone of right wrist|Unspecified fracture of navicular [scaphoid] bone of right wrist +C2850462|T037|AB|S62.001|ICD10CM|Unspecified fracture of navicular bone of right wrist|Unspecified fracture of navicular bone of right wrist +C2850463|T037|AB|S62.001A|ICD10CM|Unsp fracture of navicular bone of right wrist, init|Unsp fracture of navicular bone of right wrist, init +C2850464|T037|AB|S62.001B|ICD10CM|Unsp fx navicular bone of right wrist, init for opn fx|Unsp fx navicular bone of right wrist, init for opn fx +C2850465|T037|AB|S62.001D|ICD10CM|Unsp fx navicular bone of r wrist, subs for fx w routn heal|Unsp fx navicular bone of r wrist, subs for fx w routn heal +C2850466|T037|AB|S62.001G|ICD10CM|Unsp fx navicular bone of r wrist, subs for fx w delay heal|Unsp fx navicular bone of r wrist, subs for fx w delay heal +C2850467|T037|AB|S62.001K|ICD10CM|Unsp fx navicular bone of r wrist, subs for fx w nonunion|Unsp fx navicular bone of r wrist, subs for fx w nonunion +C2850468|T037|AB|S62.001P|ICD10CM|Unsp fx navicular bone of r wrist, subs for fx w malunion|Unsp fx navicular bone of r wrist, subs for fx w malunion +C2850469|T037|AB|S62.001S|ICD10CM|Unsp fracture of navicular bone of right wrist, sequela|Unsp fracture of navicular bone of right wrist, sequela +C2850469|T037|PT|S62.001S|ICD10CM|Unspecified fracture of navicular [scaphoid] bone of right wrist, sequela|Unspecified fracture of navicular [scaphoid] bone of right wrist, sequela +C2850470|T037|HT|S62.002|ICD10CM|Unspecified fracture of navicular [scaphoid] bone of left wrist|Unspecified fracture of navicular [scaphoid] bone of left wrist +C2850470|T037|AB|S62.002|ICD10CM|Unspecified fracture of navicular bone of left wrist|Unspecified fracture of navicular bone of left wrist +C2850471|T037|AB|S62.002A|ICD10CM|Unsp fracture of navicular bone of left wrist, init|Unsp fracture of navicular bone of left wrist, init +C2850472|T037|AB|S62.002B|ICD10CM|Unsp fx navicular bone of left wrist, init for opn fx|Unsp fx navicular bone of left wrist, init for opn fx +C2850472|T037|PT|S62.002B|ICD10CM|Unspecified fracture of navicular [scaphoid] bone of left wrist, initial encounter for open fracture|Unspecified fracture of navicular [scaphoid] bone of left wrist, initial encounter for open fracture +C2850473|T037|AB|S62.002D|ICD10CM|Unsp fx navicular bone of l wrist, subs for fx w routn heal|Unsp fx navicular bone of l wrist, subs for fx w routn heal +C2850474|T037|AB|S62.002G|ICD10CM|Unsp fx navicular bone of l wrist, subs for fx w delay heal|Unsp fx navicular bone of l wrist, subs for fx w delay heal +C2850475|T037|AB|S62.002K|ICD10CM|Unsp fx navicular bone of left wrist, subs for fx w nonunion|Unsp fx navicular bone of left wrist, subs for fx w nonunion +C2850476|T037|AB|S62.002P|ICD10CM|Unsp fx navicular bone of left wrist, subs for fx w malunion|Unsp fx navicular bone of left wrist, subs for fx w malunion +C2850477|T037|AB|S62.002S|ICD10CM|Unsp fracture of navicular bone of left wrist, sequela|Unsp fracture of navicular bone of left wrist, sequela +C2850477|T037|PT|S62.002S|ICD10CM|Unspecified fracture of navicular [scaphoid] bone of left wrist, sequela|Unspecified fracture of navicular [scaphoid] bone of left wrist, sequela +C2850478|T037|HT|S62.009|ICD10CM|Unspecified fracture of navicular [scaphoid] bone of unspecified wrist|Unspecified fracture of navicular [scaphoid] bone of unspecified wrist +C2850478|T037|AB|S62.009|ICD10CM|Unspecified fracture of navicular bone of unspecified wrist|Unspecified fracture of navicular bone of unspecified wrist +C2850479|T037|AB|S62.009A|ICD10CM|Unsp fracture of navicular bone of unsp wrist, init|Unsp fracture of navicular bone of unsp wrist, init +C2850480|T037|AB|S62.009B|ICD10CM|Unsp fx navicular bone of unsp wrist, init for opn fx|Unsp fx navicular bone of unsp wrist, init for opn fx +C2850481|T037|AB|S62.009D|ICD10CM|Unsp fx navic bone of unsp wrist, subs for fx w routn heal|Unsp fx navic bone of unsp wrist, subs for fx w routn heal +C2850482|T037|AB|S62.009G|ICD10CM|Unsp fx navic bone of unsp wrist, subs for fx w delay heal|Unsp fx navic bone of unsp wrist, subs for fx w delay heal +C2850483|T037|AB|S62.009K|ICD10CM|Unsp fx navicular bone of unsp wrist, subs for fx w nonunion|Unsp fx navicular bone of unsp wrist, subs for fx w nonunion +C2850484|T037|AB|S62.009P|ICD10CM|Unsp fx navicular bone of unsp wrist, subs for fx w malunion|Unsp fx navicular bone of unsp wrist, subs for fx w malunion +C2850485|T037|AB|S62.009S|ICD10CM|Unsp fracture of navicular bone of unsp wrist, sequela|Unsp fracture of navicular bone of unsp wrist, sequela +C2850485|T037|PT|S62.009S|ICD10CM|Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, sequela|Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, sequela +C2850487|T037|HT|S62.01|ICD10CM|Fracture of distal pole of navicular [scaphoid] bone of wrist|Fracture of distal pole of navicular [scaphoid] bone of wrist +C2850487|T037|AB|S62.01|ICD10CM|Fracture of distal pole of navicular bone of wrist|Fracture of distal pole of navicular bone of wrist +C2850486|T037|ET|S62.01|ICD10CM|Fracture of volar tuberosity of navicular [scaphoid] bone of wrist|Fracture of volar tuberosity of navicular [scaphoid] bone of wrist +C2850488|T037|AB|S62.011|ICD10CM|Disp fx of distal pole of navicular bone of right wrist|Disp fx of distal pole of navicular bone of right wrist +C2850488|T037|HT|S62.011|ICD10CM|Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist|Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist +C2850489|T037|AB|S62.011A|ICD10CM|Disp fx of distal pole of navicular bone of r wrist, init|Disp fx of distal pole of navicular bone of r wrist, init +C2850490|T037|AB|S62.011B|ICD10CM|Disp fx of dist pole of navic bone of r wrs, init for opn fx|Disp fx of dist pole of navic bone of r wrs, init for opn fx +C2850491|T037|AB|S62.011D|ICD10CM|Disp fx of dist pole of navic bone of r wrs, 7thD|Disp fx of dist pole of navic bone of r wrs, 7thD +C2850492|T037|AB|S62.011G|ICD10CM|Disp fx of dist pole of navic bone of r wrs, 7thG|Disp fx of dist pole of navic bone of r wrs, 7thG +C2850493|T037|AB|S62.011K|ICD10CM|Disp fx of dist pole of navic bone of r wrs, 7thK|Disp fx of dist pole of navic bone of r wrs, 7thK +C2850494|T037|AB|S62.011P|ICD10CM|Disp fx of dist pole of navic bone of r wrs, 7thP|Disp fx of dist pole of navic bone of r wrs, 7thP +C2850495|T037|AB|S62.011S|ICD10CM|Disp fx of distal pole of navicular bone of r wrist, sequela|Disp fx of distal pole of navicular bone of r wrist, sequela +C2850495|T037|PT|S62.011S|ICD10CM|Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, sequela|Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, sequela +C2850496|T037|AB|S62.012|ICD10CM|Disp fx of distal pole of navicular bone of left wrist|Disp fx of distal pole of navicular bone of left wrist +C2850496|T037|HT|S62.012|ICD10CM|Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist|Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist +C2850497|T037|AB|S62.012A|ICD10CM|Disp fx of distal pole of navicular bone of left wrist, init|Disp fx of distal pole of navicular bone of left wrist, init +C2850498|T037|AB|S62.012B|ICD10CM|Disp fx of dist pole of navic bone of l wrs, init for opn fx|Disp fx of dist pole of navic bone of l wrs, init for opn fx +C2850499|T037|AB|S62.012D|ICD10CM|Disp fx of dist pole of navic bone of l wrs, 7thD|Disp fx of dist pole of navic bone of l wrs, 7thD +C2850500|T037|AB|S62.012G|ICD10CM|Disp fx of dist pole of navic bone of l wrs, 7thG|Disp fx of dist pole of navic bone of l wrs, 7thG +C2850501|T037|AB|S62.012K|ICD10CM|Disp fx of dist pole of navic bone of l wrs, 7thK|Disp fx of dist pole of navic bone of l wrs, 7thK +C2850502|T037|AB|S62.012P|ICD10CM|Disp fx of dist pole of navic bone of l wrs, 7thP|Disp fx of dist pole of navic bone of l wrs, 7thP +C2850503|T037|AB|S62.012S|ICD10CM|Disp fx of distal pole of navicular bone of l wrist, sequela|Disp fx of distal pole of navicular bone of l wrist, sequela +C2850503|T037|PT|S62.012S|ICD10CM|Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, sequela|Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, sequela +C2850504|T037|AB|S62.013|ICD10CM|Disp fx of distal pole of navicular bone of unsp wrist|Disp fx of distal pole of navicular bone of unsp wrist +C2850504|T037|HT|S62.013|ICD10CM|Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist|Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist +C2850505|T037|AB|S62.013A|ICD10CM|Disp fx of distal pole of navicular bone of unsp wrist, init|Disp fx of distal pole of navicular bone of unsp wrist, init +C2850506|T037|AB|S62.013B|ICD10CM|Disp fx of dist pole of navic bone of unsp wrs, 7thB|Disp fx of dist pole of navic bone of unsp wrs, 7thB +C2850507|T037|AB|S62.013D|ICD10CM|Disp fx of dist pole of navic bone of unsp wrs, 7thD|Disp fx of dist pole of navic bone of unsp wrs, 7thD +C2850508|T037|AB|S62.013G|ICD10CM|Disp fx of dist pole of navic bone of unsp wrs, 7thG|Disp fx of dist pole of navic bone of unsp wrs, 7thG +C2850509|T037|AB|S62.013K|ICD10CM|Disp fx of dist pole of navic bone of unsp wrs, 7thK|Disp fx of dist pole of navic bone of unsp wrs, 7thK +C2850510|T037|AB|S62.013P|ICD10CM|Disp fx of dist pole of navic bone of unsp wrs, 7thP|Disp fx of dist pole of navic bone of unsp wrs, 7thP +C2850511|T037|AB|S62.013S|ICD10CM|Disp fx of distal pole of navic bone of unsp wrist, sequela|Disp fx of distal pole of navic bone of unsp wrist, sequela +C2850511|T037|PT|S62.013S|ICD10CM|Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, sequela|Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, sequela +C2850512|T037|AB|S62.014|ICD10CM|Nondisp fx of distal pole of navicular bone of right wrist|Nondisp fx of distal pole of navicular bone of right wrist +C2850512|T037|HT|S62.014|ICD10CM|Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist|Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist +C2850513|T037|AB|S62.014A|ICD10CM|Nondisp fx of distal pole of navicular bone of r wrist, init|Nondisp fx of distal pole of navicular bone of r wrist, init +C2850514|T037|AB|S62.014B|ICD10CM|Nondisp fx of dist pole of navic bone of r wrs, 7thB|Nondisp fx of dist pole of navic bone of r wrs, 7thB +C2850515|T037|AB|S62.014D|ICD10CM|Nondisp fx of dist pole of navic bone of r wrs, 7thD|Nondisp fx of dist pole of navic bone of r wrs, 7thD +C2850516|T037|AB|S62.014G|ICD10CM|Nondisp fx of dist pole of navic bone of r wrs, 7thG|Nondisp fx of dist pole of navic bone of r wrs, 7thG +C2850517|T037|AB|S62.014K|ICD10CM|Nondisp fx of dist pole of navic bone of r wrs, 7thK|Nondisp fx of dist pole of navic bone of r wrs, 7thK +C2850518|T037|AB|S62.014P|ICD10CM|Nondisp fx of dist pole of navic bone of r wrs, 7thP|Nondisp fx of dist pole of navic bone of r wrs, 7thP +C2850519|T037|AB|S62.014S|ICD10CM|Nondisp fx of distal pole of navic bone of r wrist, sequela|Nondisp fx of distal pole of navic bone of r wrist, sequela +C2850519|T037|PT|S62.014S|ICD10CM|Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, sequela|Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, sequela +C2850520|T037|AB|S62.015|ICD10CM|Nondisp fx of distal pole of navicular bone of left wrist|Nondisp fx of distal pole of navicular bone of left wrist +C2850520|T037|HT|S62.015|ICD10CM|Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist|Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist +C2850521|T037|AB|S62.015A|ICD10CM|Nondisp fx of distal pole of navicular bone of l wrist, init|Nondisp fx of distal pole of navicular bone of l wrist, init +C2850522|T037|AB|S62.015B|ICD10CM|Nondisp fx of dist pole of navic bone of l wrs, 7thB|Nondisp fx of dist pole of navic bone of l wrs, 7thB +C2850523|T037|AB|S62.015D|ICD10CM|Nondisp fx of dist pole of navic bone of l wrs, 7thD|Nondisp fx of dist pole of navic bone of l wrs, 7thD +C2850524|T037|AB|S62.015G|ICD10CM|Nondisp fx of dist pole of navic bone of l wrs, 7thG|Nondisp fx of dist pole of navic bone of l wrs, 7thG +C2850525|T037|AB|S62.015K|ICD10CM|Nondisp fx of dist pole of navic bone of l wrs, 7thK|Nondisp fx of dist pole of navic bone of l wrs, 7thK +C2850526|T037|AB|S62.015P|ICD10CM|Nondisp fx of dist pole of navic bone of l wrs, 7thP|Nondisp fx of dist pole of navic bone of l wrs, 7thP +C2850527|T037|AB|S62.015S|ICD10CM|Nondisp fx of distal pole of navic bone of l wrist, sequela|Nondisp fx of distal pole of navic bone of l wrist, sequela +C2850527|T037|PT|S62.015S|ICD10CM|Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, sequela|Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, sequela +C2850528|T037|AB|S62.016|ICD10CM|Nondisp fx of distal pole of navicular bone of unsp wrist|Nondisp fx of distal pole of navicular bone of unsp wrist +C2850528|T037|HT|S62.016|ICD10CM|Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist|Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist +C2850529|T037|AB|S62.016A|ICD10CM|Nondisp fx of distal pole of navic bone of unsp wrist, init|Nondisp fx of distal pole of navic bone of unsp wrist, init +C2850530|T037|AB|S62.016B|ICD10CM|Nondisp fx of dist pole of navic bone of unsp wrs, 7thB|Nondisp fx of dist pole of navic bone of unsp wrs, 7thB +C2850531|T037|AB|S62.016D|ICD10CM|Nondisp fx of dist pole of navic bone of unsp wrs, 7thD|Nondisp fx of dist pole of navic bone of unsp wrs, 7thD +C2850532|T037|AB|S62.016G|ICD10CM|Nondisp fx of dist pole of navic bone of unsp wrs, 7thG|Nondisp fx of dist pole of navic bone of unsp wrs, 7thG +C2850533|T037|AB|S62.016K|ICD10CM|Nondisp fx of dist pole of navic bone of unsp wrs, 7thK|Nondisp fx of dist pole of navic bone of unsp wrs, 7thK +C2850534|T037|AB|S62.016P|ICD10CM|Nondisp fx of dist pole of navic bone of unsp wrs, 7thP|Nondisp fx of dist pole of navic bone of unsp wrs, 7thP +C2850535|T037|AB|S62.016S|ICD10CM|Nondisp fx of distal pole of navic bone of unsp wrist, sqla|Nondisp fx of distal pole of navic bone of unsp wrist, sqla +C2850535|T037|PT|S62.016S|ICD10CM|Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, sequela|Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, sequela +C2850536|T037|HT|S62.02|ICD10CM|Fracture of middle third of navicular [scaphoid] bone of wrist|Fracture of middle third of navicular [scaphoid] bone of wrist +C2850536|T037|AB|S62.02|ICD10CM|Fracture of middle third of navicular bone of wrist|Fracture of middle third of navicular bone of wrist +C2850537|T037|AB|S62.021|ICD10CM|Disp fx of middle third of navicular bone of right wrist|Disp fx of middle third of navicular bone of right wrist +C2850537|T037|HT|S62.021|ICD10CM|Displaced fracture of middle third of navicular [scaphoid] bone of right wrist|Displaced fracture of middle third of navicular [scaphoid] bone of right wrist +C2850538|T037|AB|S62.021A|ICD10CM|Disp fx of middle third of navicular bone of r wrist, init|Disp fx of middle third of navicular bone of r wrist, init +C2850539|T037|AB|S62.021B|ICD10CM|Disp fx of mid 3rd of navic bone of r wrist, init for opn fx|Disp fx of mid 3rd of navic bone of r wrist, init for opn fx +C2850540|T037|AB|S62.021D|ICD10CM|Disp fx of mid 3rd of navic bone of r wrs, 7thD|Disp fx of mid 3rd of navic bone of r wrs, 7thD +C2850541|T037|AB|S62.021G|ICD10CM|Disp fx of mid 3rd of navic bone of r wrs, 7thG|Disp fx of mid 3rd of navic bone of r wrs, 7thG +C2850542|T037|AB|S62.021K|ICD10CM|Disp fx of mid 3rd of navic bone of r wrs, 7thK|Disp fx of mid 3rd of navic bone of r wrs, 7thK +C2850543|T037|AB|S62.021P|ICD10CM|Disp fx of mid 3rd of navic bone of r wrs, 7thP|Disp fx of mid 3rd of navic bone of r wrs, 7thP +C2850544|T037|AB|S62.021S|ICD10CM|Disp fx of middle third of navic bone of r wrist, sequela|Disp fx of middle third of navic bone of r wrist, sequela +C2850544|T037|PT|S62.021S|ICD10CM|Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, sequela|Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, sequela +C2850545|T037|AB|S62.022|ICD10CM|Disp fx of middle third of navicular bone of left wrist|Disp fx of middle third of navicular bone of left wrist +C2850545|T037|HT|S62.022|ICD10CM|Displaced fracture of middle third of navicular [scaphoid] bone of left wrist|Displaced fracture of middle third of navicular [scaphoid] bone of left wrist +C2850546|T037|AB|S62.022A|ICD10CM|Disp fx of middle third of navicular bone of l wrist, init|Disp fx of middle third of navicular bone of l wrist, init +C2850547|T037|AB|S62.022B|ICD10CM|Disp fx of mid 3rd of navic bone of l wrist, init for opn fx|Disp fx of mid 3rd of navic bone of l wrist, init for opn fx +C2850548|T037|AB|S62.022D|ICD10CM|Disp fx of mid 3rd of navic bone of l wrs, 7thD|Disp fx of mid 3rd of navic bone of l wrs, 7thD +C2850549|T037|AB|S62.022G|ICD10CM|Disp fx of mid 3rd of navic bone of l wrs, 7thG|Disp fx of mid 3rd of navic bone of l wrs, 7thG +C2850550|T037|AB|S62.022K|ICD10CM|Disp fx of mid 3rd of navic bone of l wrs, 7thK|Disp fx of mid 3rd of navic bone of l wrs, 7thK +C2850551|T037|AB|S62.022P|ICD10CM|Disp fx of mid 3rd of navic bone of l wrs, 7thP|Disp fx of mid 3rd of navic bone of l wrs, 7thP +C2850552|T037|AB|S62.022S|ICD10CM|Disp fx of middle third of navic bone of l wrist, sequela|Disp fx of middle third of navic bone of l wrist, sequela +C2850552|T037|PT|S62.022S|ICD10CM|Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, sequela|Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, sequela +C2850553|T037|AB|S62.023|ICD10CM|Disp fx of middle third of navicular bone of unsp wrist|Disp fx of middle third of navicular bone of unsp wrist +C2850553|T037|HT|S62.023|ICD10CM|Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist|Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist +C2850554|T037|AB|S62.023A|ICD10CM|Disp fx of middle third of navic bone of unsp wrist, init|Disp fx of middle third of navic bone of unsp wrist, init +C2850555|T037|AB|S62.023B|ICD10CM|Disp fx of mid 3rd of navic bone of unsp wrs, 7thB|Disp fx of mid 3rd of navic bone of unsp wrs, 7thB +C2850556|T037|AB|S62.023D|ICD10CM|Disp fx of mid 3rd of navic bone of unsp wrs, 7thD|Disp fx of mid 3rd of navic bone of unsp wrs, 7thD +C2850557|T037|AB|S62.023G|ICD10CM|Disp fx of mid 3rd of navic bone of unsp wrs, 7thG|Disp fx of mid 3rd of navic bone of unsp wrs, 7thG +C2850558|T037|AB|S62.023K|ICD10CM|Disp fx of mid 3rd of navic bone of unsp wrs, 7thK|Disp fx of mid 3rd of navic bone of unsp wrs, 7thK +C2850559|T037|AB|S62.023P|ICD10CM|Disp fx of mid 3rd of navic bone of unsp wrs, 7thP|Disp fx of mid 3rd of navic bone of unsp wrs, 7thP +C2850560|T037|AB|S62.023S|ICD10CM|Disp fx of middle third of navic bone of unsp wrist, sequela|Disp fx of middle third of navic bone of unsp wrist, sequela +C2850560|T037|PT|S62.023S|ICD10CM|Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, sequela|Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, sequela +C2850561|T037|AB|S62.024|ICD10CM|Nondisp fx of middle third of navicular bone of right wrist|Nondisp fx of middle third of navicular bone of right wrist +C2850561|T037|HT|S62.024|ICD10CM|Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist|Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist +C2850562|T037|AB|S62.024A|ICD10CM|Nondisp fx of middle third of navic bone of r wrist, init|Nondisp fx of middle third of navic bone of r wrist, init +C2850563|T037|AB|S62.024B|ICD10CM|Nondisp fx of mid 3rd of navic bone of r wrs, 7thB|Nondisp fx of mid 3rd of navic bone of r wrs, 7thB +C2850564|T037|AB|S62.024D|ICD10CM|Nondisp fx of mid 3rd of navic bone of r wrs, 7thD|Nondisp fx of mid 3rd of navic bone of r wrs, 7thD +C2850565|T037|AB|S62.024G|ICD10CM|Nondisp fx of mid 3rd of navic bone of r wrs, 7thG|Nondisp fx of mid 3rd of navic bone of r wrs, 7thG +C2850566|T037|AB|S62.024K|ICD10CM|Nondisp fx of mid 3rd of navic bone of r wrs, 7thK|Nondisp fx of mid 3rd of navic bone of r wrs, 7thK +C2850567|T037|AB|S62.024P|ICD10CM|Nondisp fx of mid 3rd of navic bone of r wrs, 7thP|Nondisp fx of mid 3rd of navic bone of r wrs, 7thP +C2850568|T037|AB|S62.024S|ICD10CM|Nondisp fx of middle third of navic bone of r wrist, sequela|Nondisp fx of middle third of navic bone of r wrist, sequela +C2850568|T037|PT|S62.024S|ICD10CM|Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, sequela|Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, sequela +C2850569|T037|AB|S62.025|ICD10CM|Nondisp fx of middle third of navicular bone of left wrist|Nondisp fx of middle third of navicular bone of left wrist +C2850569|T037|HT|S62.025|ICD10CM|Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist|Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist +C2850570|T037|AB|S62.025A|ICD10CM|Nondisp fx of middle third of navic bone of l wrist, init|Nondisp fx of middle third of navic bone of l wrist, init +C2850571|T037|AB|S62.025B|ICD10CM|Nondisp fx of mid 3rd of navic bone of l wrs, 7thB|Nondisp fx of mid 3rd of navic bone of l wrs, 7thB +C2850572|T037|AB|S62.025D|ICD10CM|Nondisp fx of mid 3rd of navic bone of l wrs, 7thD|Nondisp fx of mid 3rd of navic bone of l wrs, 7thD +C2850573|T037|AB|S62.025G|ICD10CM|Nondisp fx of mid 3rd of navic bone of l wrs, 7thG|Nondisp fx of mid 3rd of navic bone of l wrs, 7thG +C2850574|T037|AB|S62.025K|ICD10CM|Nondisp fx of mid 3rd of navic bone of l wrs, 7thK|Nondisp fx of mid 3rd of navic bone of l wrs, 7thK +C2850575|T037|AB|S62.025P|ICD10CM|Nondisp fx of mid 3rd of navic bone of l wrs, 7thP|Nondisp fx of mid 3rd of navic bone of l wrs, 7thP +C2850576|T037|AB|S62.025S|ICD10CM|Nondisp fx of middle third of navic bone of l wrist, sequela|Nondisp fx of middle third of navic bone of l wrist, sequela +C2850576|T037|PT|S62.025S|ICD10CM|Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, sequela|Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, sequela +C2850577|T037|AB|S62.026|ICD10CM|Nondisp fx of middle third of navicular bone of unsp wrist|Nondisp fx of middle third of navicular bone of unsp wrist +C2850577|T037|HT|S62.026|ICD10CM|Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist|Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist +C2850578|T037|AB|S62.026A|ICD10CM|Nondisp fx of middle third of navic bone of unsp wrist, init|Nondisp fx of middle third of navic bone of unsp wrist, init +C2850579|T037|AB|S62.026B|ICD10CM|Nondisp fx of mid 3rd of navic bone of unsp wrs, 7thB|Nondisp fx of mid 3rd of navic bone of unsp wrs, 7thB +C2850580|T037|AB|S62.026D|ICD10CM|Nondisp fx of mid 3rd of navic bone of unsp wrs, 7thD|Nondisp fx of mid 3rd of navic bone of unsp wrs, 7thD +C2850581|T037|AB|S62.026G|ICD10CM|Nondisp fx of mid 3rd of navic bone of unsp wrs, 7thG|Nondisp fx of mid 3rd of navic bone of unsp wrs, 7thG +C2850582|T037|AB|S62.026K|ICD10CM|Nondisp fx of mid 3rd of navic bone of unsp wrs, 7thK|Nondisp fx of mid 3rd of navic bone of unsp wrs, 7thK +C2850583|T037|AB|S62.026P|ICD10CM|Nondisp fx of mid 3rd of navic bone of unsp wrs, 7thP|Nondisp fx of mid 3rd of navic bone of unsp wrs, 7thP +C2850584|T037|AB|S62.026S|ICD10CM|Nondisp fx of middle third of navic bone of unsp wrist, sqla|Nondisp fx of middle third of navic bone of unsp wrist, sqla +C2850584|T037|PT|S62.026S|ICD10CM|Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, sequela|Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, sequela +C2850585|T037|HT|S62.03|ICD10CM|Fracture of proximal third of navicular [scaphoid] bone of wrist|Fracture of proximal third of navicular [scaphoid] bone of wrist +C2850585|T037|AB|S62.03|ICD10CM|Fracture of proximal third of navicular bone of wrist|Fracture of proximal third of navicular bone of wrist +C2850586|T037|AB|S62.031|ICD10CM|Disp fx of proximal third of navicular bone of right wrist|Disp fx of proximal third of navicular bone of right wrist +C2850586|T037|HT|S62.031|ICD10CM|Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist|Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist +C2850587|T037|AB|S62.031A|ICD10CM|Disp fx of proximal third of navicular bone of r wrist, init|Disp fx of proximal third of navicular bone of r wrist, init +C2850588|T037|AB|S62.031B|ICD10CM|Disp fx of prox 3rd of navic bone of r wrs, init for opn fx|Disp fx of prox 3rd of navic bone of r wrs, init for opn fx +C2850589|T037|AB|S62.031D|ICD10CM|Disp fx of prox 3rd of navic bone of r wrs, 7thD|Disp fx of prox 3rd of navic bone of r wrs, 7thD +C2850590|T037|AB|S62.031G|ICD10CM|Disp fx of prox 3rd of navic bone of r wrs, 7thG|Disp fx of prox 3rd of navic bone of r wrs, 7thG +C2850591|T037|AB|S62.031K|ICD10CM|Disp fx of prox 3rd of navic bone of r wrs, 7thK|Disp fx of prox 3rd of navic bone of r wrs, 7thK +C2850592|T037|AB|S62.031P|ICD10CM|Disp fx of prox 3rd of navic bone of r wrs, 7thP|Disp fx of prox 3rd of navic bone of r wrs, 7thP +C2850593|T037|AB|S62.031S|ICD10CM|Disp fx of proximal third of navic bone of r wrist, sequela|Disp fx of proximal third of navic bone of r wrist, sequela +C2850593|T037|PT|S62.031S|ICD10CM|Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, sequela|Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, sequela +C2850594|T037|AB|S62.032|ICD10CM|Disp fx of proximal third of navicular bone of left wrist|Disp fx of proximal third of navicular bone of left wrist +C2850594|T037|HT|S62.032|ICD10CM|Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist|Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist +C2850595|T037|AB|S62.032A|ICD10CM|Disp fx of proximal third of navicular bone of l wrist, init|Disp fx of proximal third of navicular bone of l wrist, init +C2850596|T037|AB|S62.032B|ICD10CM|Disp fx of prox 3rd of navic bone of l wrs, init for opn fx|Disp fx of prox 3rd of navic bone of l wrs, init for opn fx +C2850597|T037|AB|S62.032D|ICD10CM|Disp fx of prox 3rd of navic bone of l wrs, 7thD|Disp fx of prox 3rd of navic bone of l wrs, 7thD +C2850598|T037|AB|S62.032G|ICD10CM|Disp fx of prox 3rd of navic bone of l wrs, 7thG|Disp fx of prox 3rd of navic bone of l wrs, 7thG +C2850599|T037|AB|S62.032K|ICD10CM|Disp fx of prox 3rd of navic bone of l wrs, 7thK|Disp fx of prox 3rd of navic bone of l wrs, 7thK +C2850600|T037|AB|S62.032P|ICD10CM|Disp fx of prox 3rd of navic bone of l wrs, 7thP|Disp fx of prox 3rd of navic bone of l wrs, 7thP +C2850601|T037|AB|S62.032S|ICD10CM|Disp fx of proximal third of navic bone of l wrist, sequela|Disp fx of proximal third of navic bone of l wrist, sequela +C2850601|T037|PT|S62.032S|ICD10CM|Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, sequela|Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, sequela +C2850602|T037|AB|S62.033|ICD10CM|Disp fx of proximal third of navicular bone of unsp wrist|Disp fx of proximal third of navicular bone of unsp wrist +C2850602|T037|HT|S62.033|ICD10CM|Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist|Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist +C2850603|T037|AB|S62.033A|ICD10CM|Disp fx of proximal third of navic bone of unsp wrist, init|Disp fx of proximal third of navic bone of unsp wrist, init +C2850604|T037|AB|S62.033B|ICD10CM|Disp fx of prox 3rd of navic bone of unsp wrs, 7thB|Disp fx of prox 3rd of navic bone of unsp wrs, 7thB +C2850605|T037|AB|S62.033D|ICD10CM|Disp fx of prox 3rd of navic bone of unsp wrs, 7thD|Disp fx of prox 3rd of navic bone of unsp wrs, 7thD +C2850606|T037|AB|S62.033G|ICD10CM|Disp fx of prox 3rd of navic bone of unsp wrs, 7thG|Disp fx of prox 3rd of navic bone of unsp wrs, 7thG +C2850607|T037|AB|S62.033K|ICD10CM|Disp fx of prox 3rd of navic bone of unsp wrs, 7thK|Disp fx of prox 3rd of navic bone of unsp wrs, 7thK +C2850608|T037|AB|S62.033P|ICD10CM|Disp fx of prox 3rd of navic bone of unsp wrs, 7thP|Disp fx of prox 3rd of navic bone of unsp wrs, 7thP +C2850609|T037|AB|S62.033S|ICD10CM|Disp fx of prox third of navic bone of unsp wrist, sequela|Disp fx of prox third of navic bone of unsp wrist, sequela +C2850609|T037|PT|S62.033S|ICD10CM|Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, sequela|Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, sequela +C2850610|T037|AB|S62.034|ICD10CM|Nondisp fx of proximal third of navicular bone of r wrist|Nondisp fx of proximal third of navicular bone of r wrist +C2850610|T037|HT|S62.034|ICD10CM|Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist|Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist +C2850611|T037|AB|S62.034A|ICD10CM|Nondisp fx of proximal third of navic bone of r wrist, init|Nondisp fx of proximal third of navic bone of r wrist, init +C2850612|T037|AB|S62.034B|ICD10CM|Nondisp fx of prox 3rd of navic bone of r wrs, 7thB|Nondisp fx of prox 3rd of navic bone of r wrs, 7thB +C2850613|T037|AB|S62.034D|ICD10CM|Nondisp fx of prox 3rd of navic bone of r wrs, 7thD|Nondisp fx of prox 3rd of navic bone of r wrs, 7thD +C2850614|T037|AB|S62.034G|ICD10CM|Nondisp fx of prox 3rd of navic bone of r wrs, 7thG|Nondisp fx of prox 3rd of navic bone of r wrs, 7thG +C2850615|T037|AB|S62.034K|ICD10CM|Nondisp fx of prox 3rd of navic bone of r wrs, 7thK|Nondisp fx of prox 3rd of navic bone of r wrs, 7thK +C2850616|T037|AB|S62.034P|ICD10CM|Nondisp fx of prox 3rd of navic bone of r wrs, 7thP|Nondisp fx of prox 3rd of navic bone of r wrs, 7thP +C2850617|T037|AB|S62.034S|ICD10CM|Nondisp fx of prox third of navic bone of r wrist, sequela|Nondisp fx of prox third of navic bone of r wrist, sequela +C2850617|T037|PT|S62.034S|ICD10CM|Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, sequela|Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, sequela +C2850618|T037|AB|S62.035|ICD10CM|Nondisp fx of proximal third of navicular bone of left wrist|Nondisp fx of proximal third of navicular bone of left wrist +C2850618|T037|HT|S62.035|ICD10CM|Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist|Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist +C2850619|T037|AB|S62.035A|ICD10CM|Nondisp fx of proximal third of navic bone of l wrist, init|Nondisp fx of proximal third of navic bone of l wrist, init +C2850620|T037|AB|S62.035B|ICD10CM|Nondisp fx of prox 3rd of navic bone of l wrs, 7thB|Nondisp fx of prox 3rd of navic bone of l wrs, 7thB +C2850621|T037|AB|S62.035D|ICD10CM|Nondisp fx of prox 3rd of navic bone of l wrs, 7thD|Nondisp fx of prox 3rd of navic bone of l wrs, 7thD +C2850622|T037|AB|S62.035G|ICD10CM|Nondisp fx of prox 3rd of navic bone of l wrs, 7thG|Nondisp fx of prox 3rd of navic bone of l wrs, 7thG +C2850623|T037|AB|S62.035K|ICD10CM|Nondisp fx of prox 3rd of navic bone of l wrs, 7thK|Nondisp fx of prox 3rd of navic bone of l wrs, 7thK +C2850624|T037|AB|S62.035P|ICD10CM|Nondisp fx of prox 3rd of navic bone of l wrs, 7thP|Nondisp fx of prox 3rd of navic bone of l wrs, 7thP +C2850625|T037|AB|S62.035S|ICD10CM|Nondisp fx of prox third of navic bone of l wrist, sequela|Nondisp fx of prox third of navic bone of l wrist, sequela +C2850625|T037|PT|S62.035S|ICD10CM|Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, sequela|Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, sequela +C2850626|T037|AB|S62.036|ICD10CM|Nondisp fx of proximal third of navicular bone of unsp wrist|Nondisp fx of proximal third of navicular bone of unsp wrist +C2850626|T037|HT|S62.036|ICD10CM|Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist|Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist +C2850627|T037|AB|S62.036A|ICD10CM|Nondisp fx of prox third of navic bone of unsp wrist, init|Nondisp fx of prox third of navic bone of unsp wrist, init +C2850628|T037|AB|S62.036B|ICD10CM|Nondisp fx of prox 3rd of navic bone of unsp wrs, 7thB|Nondisp fx of prox 3rd of navic bone of unsp wrs, 7thB +C2850629|T037|AB|S62.036D|ICD10CM|Nondisp fx of prox 3rd of navic bone of unsp wrs, 7thD|Nondisp fx of prox 3rd of navic bone of unsp wrs, 7thD +C2850630|T037|AB|S62.036G|ICD10CM|Nondisp fx of prox 3rd of navic bone of unsp wrs, 7thG|Nondisp fx of prox 3rd of navic bone of unsp wrs, 7thG +C2850631|T037|AB|S62.036K|ICD10CM|Nondisp fx of prox 3rd of navic bone of unsp wrs, 7thK|Nondisp fx of prox 3rd of navic bone of unsp wrs, 7thK +C2850632|T037|AB|S62.036P|ICD10CM|Nondisp fx of prox 3rd of navic bone of unsp wrs, 7thP|Nondisp fx of prox 3rd of navic bone of unsp wrs, 7thP +C2850633|T037|AB|S62.036S|ICD10CM|Nondisp fx of prox third of navic bone of unsp wrist, sqla|Nondisp fx of prox third of navic bone of unsp wrist, sqla +C2850633|T037|PT|S62.036S|ICD10CM|Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, sequela|Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, sequela +C2850634|T037|AB|S62.1|ICD10CM|Fracture of other and unspecified carpal bone(s)|Fracture of other and unspecified carpal bone(s) +C2850634|T037|HT|S62.1|ICD10CM|Fracture of other and unspecified carpal bone(s)|Fracture of other and unspecified carpal bone(s) +C0478305|T037|PT|S62.1|ICD10|Fracture of other carpal bone(s)|Fracture of other carpal bone(s) +C0840635|T037|AB|S62.10|ICD10CM|Fracture of unspecified carpal bone|Fracture of unspecified carpal bone +C0840635|T037|HT|S62.10|ICD10CM|Fracture of unspecified carpal bone|Fracture of unspecified carpal bone +C0435630|T037|ET|S62.10|ICD10CM|Fracture of wrist NOS|Fracture of wrist NOS +C2850635|T037|AB|S62.101|ICD10CM|Fracture of unspecified carpal bone, right wrist|Fracture of unspecified carpal bone, right wrist +C2850635|T037|HT|S62.101|ICD10CM|Fracture of unspecified carpal bone, right wrist|Fracture of unspecified carpal bone, right wrist +C2850636|T037|AB|S62.101A|ICD10CM|Fracture of unsp carpal bone, right wrist, init for clos fx|Fracture of unsp carpal bone, right wrist, init for clos fx +C2850636|T037|PT|S62.101A|ICD10CM|Fracture of unspecified carpal bone, right wrist, initial encounter for closed fracture|Fracture of unspecified carpal bone, right wrist, initial encounter for closed fracture +C2850637|T037|AB|S62.101B|ICD10CM|Fracture of unsp carpal bone, right wrist, init for opn fx|Fracture of unsp carpal bone, right wrist, init for opn fx +C2850637|T037|PT|S62.101B|ICD10CM|Fracture of unspecified carpal bone, right wrist, initial encounter for open fracture|Fracture of unspecified carpal bone, right wrist, initial encounter for open fracture +C2850638|T037|AB|S62.101D|ICD10CM|Fx unsp carpal bone, right wrist, subs for fx w routn heal|Fx unsp carpal bone, right wrist, subs for fx w routn heal +C2850639|T037|AB|S62.101G|ICD10CM|Fx unsp carpal bone, right wrist, subs for fx w delay heal|Fx unsp carpal bone, right wrist, subs for fx w delay heal +C2850640|T037|PT|S62.101K|ICD10CM|Fracture of unspecified carpal bone, right wrist, subsequent encounter for fracture with nonunion|Fracture of unspecified carpal bone, right wrist, subsequent encounter for fracture with nonunion +C2850640|T037|AB|S62.101K|ICD10CM|Fx unsp carpal bone, right wrist, subs for fx w nonunion|Fx unsp carpal bone, right wrist, subs for fx w nonunion +C2850641|T037|PT|S62.101P|ICD10CM|Fracture of unspecified carpal bone, right wrist, subsequent encounter for fracture with malunion|Fracture of unspecified carpal bone, right wrist, subsequent encounter for fracture with malunion +C2850641|T037|AB|S62.101P|ICD10CM|Fx unsp carpal bone, right wrist, subs for fx w malunion|Fx unsp carpal bone, right wrist, subs for fx w malunion +C2850642|T037|AB|S62.101S|ICD10CM|Fracture of unspecified carpal bone, right wrist, sequela|Fracture of unspecified carpal bone, right wrist, sequela +C2850642|T037|PT|S62.101S|ICD10CM|Fracture of unspecified carpal bone, right wrist, sequela|Fracture of unspecified carpal bone, right wrist, sequela +C2850643|T037|AB|S62.102|ICD10CM|Fracture of unspecified carpal bone, left wrist|Fracture of unspecified carpal bone, left wrist +C2850643|T037|HT|S62.102|ICD10CM|Fracture of unspecified carpal bone, left wrist|Fracture of unspecified carpal bone, left wrist +C2850644|T037|AB|S62.102A|ICD10CM|Fracture of unsp carpal bone, left wrist, init for clos fx|Fracture of unsp carpal bone, left wrist, init for clos fx +C2850644|T037|PT|S62.102A|ICD10CM|Fracture of unspecified carpal bone, left wrist, initial encounter for closed fracture|Fracture of unspecified carpal bone, left wrist, initial encounter for closed fracture +C2850645|T037|AB|S62.102B|ICD10CM|Fracture of unsp carpal bone, left wrist, init for opn fx|Fracture of unsp carpal bone, left wrist, init for opn fx +C2850645|T037|PT|S62.102B|ICD10CM|Fracture of unspecified carpal bone, left wrist, initial encounter for open fracture|Fracture of unspecified carpal bone, left wrist, initial encounter for open fracture +C2850646|T037|AB|S62.102D|ICD10CM|Fx unsp carpal bone, left wrist, subs for fx w routn heal|Fx unsp carpal bone, left wrist, subs for fx w routn heal +C2850647|T037|AB|S62.102G|ICD10CM|Fx unsp carpal bone, left wrist, subs for fx w delay heal|Fx unsp carpal bone, left wrist, subs for fx w delay heal +C2850648|T037|PT|S62.102K|ICD10CM|Fracture of unspecified carpal bone, left wrist, subsequent encounter for fracture with nonunion|Fracture of unspecified carpal bone, left wrist, subsequent encounter for fracture with nonunion +C2850648|T037|AB|S62.102K|ICD10CM|Fx unsp carpal bone, left wrist, subs for fx w nonunion|Fx unsp carpal bone, left wrist, subs for fx w nonunion +C2850649|T037|PT|S62.102P|ICD10CM|Fracture of unspecified carpal bone, left wrist, subsequent encounter for fracture with malunion|Fracture of unspecified carpal bone, left wrist, subsequent encounter for fracture with malunion +C2850649|T037|AB|S62.102P|ICD10CM|Fx unsp carpal bone, left wrist, subs for fx w malunion|Fx unsp carpal bone, left wrist, subs for fx w malunion +C2850650|T037|AB|S62.102S|ICD10CM|Fracture of unspecified carpal bone, left wrist, sequela|Fracture of unspecified carpal bone, left wrist, sequela +C2850650|T037|PT|S62.102S|ICD10CM|Fracture of unspecified carpal bone, left wrist, sequela|Fracture of unspecified carpal bone, left wrist, sequela +C2850651|T037|AB|S62.109|ICD10CM|Fracture of unspecified carpal bone, unspecified wrist|Fracture of unspecified carpal bone, unspecified wrist +C2850651|T037|HT|S62.109|ICD10CM|Fracture of unspecified carpal bone, unspecified wrist|Fracture of unspecified carpal bone, unspecified wrist +C2850652|T037|AB|S62.109A|ICD10CM|Fracture of unsp carpal bone, unsp wrist, init for clos fx|Fracture of unsp carpal bone, unsp wrist, init for clos fx +C2850652|T037|PT|S62.109A|ICD10CM|Fracture of unspecified carpal bone, unspecified wrist, initial encounter for closed fracture|Fracture of unspecified carpal bone, unspecified wrist, initial encounter for closed fracture +C2850653|T037|AB|S62.109B|ICD10CM|Fracture of unsp carpal bone, unsp wrist, init for opn fx|Fracture of unsp carpal bone, unsp wrist, init for opn fx +C2850653|T037|PT|S62.109B|ICD10CM|Fracture of unspecified carpal bone, unspecified wrist, initial encounter for open fracture|Fracture of unspecified carpal bone, unspecified wrist, initial encounter for open fracture +C2850654|T037|AB|S62.109D|ICD10CM|Fx unsp carpal bone, unsp wrist, subs for fx w routn heal|Fx unsp carpal bone, unsp wrist, subs for fx w routn heal +C2850655|T037|AB|S62.109G|ICD10CM|Fx unsp carpal bone, unsp wrist, subs for fx w delay heal|Fx unsp carpal bone, unsp wrist, subs for fx w delay heal +C2850656|T037|AB|S62.109K|ICD10CM|Fx unsp carpal bone, unsp wrist, subs for fx w nonunion|Fx unsp carpal bone, unsp wrist, subs for fx w nonunion +C2850657|T037|AB|S62.109P|ICD10CM|Fx unsp carpal bone, unsp wrist, subs for fx w malunion|Fx unsp carpal bone, unsp wrist, subs for fx w malunion +C2850658|T037|AB|S62.109S|ICD10CM|Fracture of unsp carpal bone, unspecified wrist, sequela|Fracture of unsp carpal bone, unspecified wrist, sequela +C2850658|T037|PT|S62.109S|ICD10CM|Fracture of unspecified carpal bone, unspecified wrist, sequela|Fracture of unspecified carpal bone, unspecified wrist, sequela +C2850659|T037|AB|S62.11|ICD10CM|Fracture of triquetrum [cuneiform] bone of wrist|Fracture of triquetrum [cuneiform] bone of wrist +C2850659|T037|HT|S62.11|ICD10CM|Fracture of triquetrum [cuneiform] bone of wrist|Fracture of triquetrum [cuneiform] bone of wrist +C3511167|T037|HT|S62.111|ICD10CM|Displaced fracture of triquetrum [cuneiform] bone, right wrist|Displaced fracture of triquetrum [cuneiform] bone, right wrist +C3511167|T037|AB|S62.111|ICD10CM|Displaced fracture of triquetrum bone, right wrist|Displaced fracture of triquetrum bone, right wrist +C2850661|T037|AB|S62.111A|ICD10CM|Disp fx of triquetrum bone, right wrist, init for clos fx|Disp fx of triquetrum bone, right wrist, init for clos fx +C2850662|T037|AB|S62.111B|ICD10CM|Disp fx of triquetrum bone, right wrist, init for opn fx|Disp fx of triquetrum bone, right wrist, init for opn fx +C2850662|T037|PT|S62.111B|ICD10CM|Displaced fracture of triquetrum [cuneiform] bone, right wrist, initial encounter for open fracture|Displaced fracture of triquetrum [cuneiform] bone, right wrist, initial encounter for open fracture +C2850663|T037|AB|S62.111D|ICD10CM|Disp fx of triquetrum bone, r wrs, subs for fx w routn heal|Disp fx of triquetrum bone, r wrs, subs for fx w routn heal +C2850664|T037|AB|S62.111G|ICD10CM|Disp fx of triquetrum bone, r wrs, subs for fx w delay heal|Disp fx of triquetrum bone, r wrs, subs for fx w delay heal +C2850665|T037|AB|S62.111K|ICD10CM|Disp fx of triquetrum bone, r wrist, subs for fx w nonunion|Disp fx of triquetrum bone, r wrist, subs for fx w nonunion +C2850666|T037|AB|S62.111P|ICD10CM|Disp fx of triquetrum bone, r wrist, subs for fx w malunion|Disp fx of triquetrum bone, r wrist, subs for fx w malunion +C2850667|T037|PT|S62.111S|ICD10CM|Displaced fracture of triquetrum [cuneiform] bone, right wrist, sequela|Displaced fracture of triquetrum [cuneiform] bone, right wrist, sequela +C2850667|T037|AB|S62.111S|ICD10CM|Displaced fracture of triquetrum bone, right wrist, sequela|Displaced fracture of triquetrum bone, right wrist, sequela +C3511168|T037|HT|S62.112|ICD10CM|Displaced fracture of triquetrum [cuneiform] bone, left wrist|Displaced fracture of triquetrum [cuneiform] bone, left wrist +C3511168|T037|AB|S62.112|ICD10CM|Displaced fracture of triquetrum bone, left wrist|Displaced fracture of triquetrum bone, left wrist +C2850669|T037|AB|S62.112A|ICD10CM|Disp fx of triquetrum bone, left wrist, init for clos fx|Disp fx of triquetrum bone, left wrist, init for clos fx +C2850669|T037|PT|S62.112A|ICD10CM|Displaced fracture of triquetrum [cuneiform] bone, left wrist, initial encounter for closed fracture|Displaced fracture of triquetrum [cuneiform] bone, left wrist, initial encounter for closed fracture +C2850670|T037|AB|S62.112B|ICD10CM|Disp fx of triquetrum bone, left wrist, init for opn fx|Disp fx of triquetrum bone, left wrist, init for opn fx +C2850670|T037|PT|S62.112B|ICD10CM|Displaced fracture of triquetrum [cuneiform] bone, left wrist, initial encounter for open fracture|Displaced fracture of triquetrum [cuneiform] bone, left wrist, initial encounter for open fracture +C2850671|T037|AB|S62.112D|ICD10CM|Disp fx of triquetrum bone, l wrs, subs for fx w routn heal|Disp fx of triquetrum bone, l wrs, subs for fx w routn heal +C2850672|T037|AB|S62.112G|ICD10CM|Disp fx of triquetrum bone, l wrs, subs for fx w delay heal|Disp fx of triquetrum bone, l wrs, subs for fx w delay heal +C2850673|T037|AB|S62.112K|ICD10CM|Disp fx of triquetrum bone, l wrist, subs for fx w nonunion|Disp fx of triquetrum bone, l wrist, subs for fx w nonunion +C2850674|T037|AB|S62.112P|ICD10CM|Disp fx of triquetrum bone, l wrist, subs for fx w malunion|Disp fx of triquetrum bone, l wrist, subs for fx w malunion +C2850675|T037|PT|S62.112S|ICD10CM|Displaced fracture of triquetrum [cuneiform] bone, left wrist, sequela|Displaced fracture of triquetrum [cuneiform] bone, left wrist, sequela +C2850675|T037|AB|S62.112S|ICD10CM|Displaced fracture of triquetrum bone, left wrist, sequela|Displaced fracture of triquetrum bone, left wrist, sequela +C2850676|T037|HT|S62.113|ICD10CM|Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist|Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist +C2850676|T037|AB|S62.113|ICD10CM|Displaced fracture of triquetrum bone, unspecified wrist|Displaced fracture of triquetrum bone, unspecified wrist +C2850677|T037|AB|S62.113A|ICD10CM|Disp fx of triquetrum bone, unsp wrist, init for clos fx|Disp fx of triquetrum bone, unsp wrist, init for clos fx +C2850678|T037|AB|S62.113B|ICD10CM|Disp fx of triquetrum bone, unsp wrist, init for opn fx|Disp fx of triquetrum bone, unsp wrist, init for opn fx +C2850679|T037|AB|S62.113D|ICD10CM|Disp fx of triquetrum bone, unsp wrs, 7thD|Disp fx of triquetrum bone, unsp wrs, 7thD +C2850680|T037|AB|S62.113G|ICD10CM|Disp fx of triquetrum bone, unsp wrs, 7thG|Disp fx of triquetrum bone, unsp wrs, 7thG +C2850681|T037|AB|S62.113K|ICD10CM|Disp fx of triquetrum bone, unsp wrs, subs for fx w nonunion|Disp fx of triquetrum bone, unsp wrs, subs for fx w nonunion +C2850682|T037|AB|S62.113P|ICD10CM|Disp fx of triquetrum bone, unsp wrs, subs for fx w malunion|Disp fx of triquetrum bone, unsp wrs, subs for fx w malunion +C2850683|T037|AB|S62.113S|ICD10CM|Disp fx of triquetrum bone, unspecified wrist, sequela|Disp fx of triquetrum bone, unspecified wrist, sequela +C2850683|T037|PT|S62.113S|ICD10CM|Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, sequela|Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, sequela +C3511164|T037|HT|S62.114|ICD10CM|Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist|Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist +C3511164|T037|AB|S62.114|ICD10CM|Nondisplaced fracture of triquetrum bone, right wrist|Nondisplaced fracture of triquetrum bone, right wrist +C2850685|T037|AB|S62.114A|ICD10CM|Nondisp fx of triquetrum bone, right wrist, init for clos fx|Nondisp fx of triquetrum bone, right wrist, init for clos fx +C2850686|T037|AB|S62.114B|ICD10CM|Nondisp fx of triquetrum bone, right wrist, init for opn fx|Nondisp fx of triquetrum bone, right wrist, init for opn fx +C2850687|T037|AB|S62.114D|ICD10CM|Nondisp fx of triquetrum bone, r wrs, 7thD|Nondisp fx of triquetrum bone, r wrs, 7thD +C2850688|T037|AB|S62.114G|ICD10CM|Nondisp fx of triquetrum bone, r wrs, 7thG|Nondisp fx of triquetrum bone, r wrs, 7thG +C2850689|T037|AB|S62.114K|ICD10CM|Nondisp fx of triquetrum bone, r wrs, subs for fx w nonunion|Nondisp fx of triquetrum bone, r wrs, subs for fx w nonunion +C2850690|T037|AB|S62.114P|ICD10CM|Nondisp fx of triquetrum bone, r wrs, subs for fx w malunion|Nondisp fx of triquetrum bone, r wrs, subs for fx w malunion +C2850691|T037|AB|S62.114S|ICD10CM|Nondisp fx of triquetrum bone, right wrist, sequela|Nondisp fx of triquetrum bone, right wrist, sequela +C2850691|T037|PT|S62.114S|ICD10CM|Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, sequela|Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, sequela +C3511165|T037|HT|S62.115|ICD10CM|Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist|Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist +C3511165|T037|AB|S62.115|ICD10CM|Nondisplaced fracture of triquetrum bone, left wrist|Nondisplaced fracture of triquetrum bone, left wrist +C2850693|T037|AB|S62.115A|ICD10CM|Nondisp fx of triquetrum bone, left wrist, init for clos fx|Nondisp fx of triquetrum bone, left wrist, init for clos fx +C2850694|T037|AB|S62.115B|ICD10CM|Nondisp fx of triquetrum bone, left wrist, init for opn fx|Nondisp fx of triquetrum bone, left wrist, init for opn fx +C2850695|T037|AB|S62.115D|ICD10CM|Nondisp fx of triquetrum bone, l wrs, 7thD|Nondisp fx of triquetrum bone, l wrs, 7thD +C2850696|T037|AB|S62.115G|ICD10CM|Nondisp fx of triquetrum bone, l wrs, 7thG|Nondisp fx of triquetrum bone, l wrs, 7thG +C2850697|T037|AB|S62.115K|ICD10CM|Nondisp fx of triquetrum bone, l wrs, subs for fx w nonunion|Nondisp fx of triquetrum bone, l wrs, subs for fx w nonunion +C2850698|T037|AB|S62.115P|ICD10CM|Nondisp fx of triquetrum bone, l wrs, subs for fx w malunion|Nondisp fx of triquetrum bone, l wrs, subs for fx w malunion +C2850699|T037|AB|S62.115S|ICD10CM|Nondisp fx of triquetrum bone, left wrist, sequela|Nondisp fx of triquetrum bone, left wrist, sequela +C2850699|T037|PT|S62.115S|ICD10CM|Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, sequela|Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, sequela +C2850700|T037|HT|S62.116|ICD10CM|Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist|Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist +C2850700|T037|AB|S62.116|ICD10CM|Nondisplaced fracture of triquetrum bone, unspecified wrist|Nondisplaced fracture of triquetrum bone, unspecified wrist +C2850701|T037|AB|S62.116A|ICD10CM|Nondisp fx of triquetrum bone, unsp wrist, init for clos fx|Nondisp fx of triquetrum bone, unsp wrist, init for clos fx +C2850702|T037|AB|S62.116B|ICD10CM|Nondisp fx of triquetrum bone, unsp wrist, init for opn fx|Nondisp fx of triquetrum bone, unsp wrist, init for opn fx +C2850703|T037|AB|S62.116D|ICD10CM|Nondisp fx of triquetrum bone, unsp wrs, 7thD|Nondisp fx of triquetrum bone, unsp wrs, 7thD +C2850704|T037|AB|S62.116G|ICD10CM|Nondisp fx of triquetrum bone, unsp wrs, 7thG|Nondisp fx of triquetrum bone, unsp wrs, 7thG +C2850705|T037|AB|S62.116K|ICD10CM|Nondisp fx of triquetrum bone, unsp wrs, 7thK|Nondisp fx of triquetrum bone, unsp wrs, 7thK +C2850706|T037|AB|S62.116P|ICD10CM|Nondisp fx of triquetrum bone, unsp wrs, 7thP|Nondisp fx of triquetrum bone, unsp wrs, 7thP +C2850707|T037|AB|S62.116S|ICD10CM|Nondisp fx of triquetrum bone, unspecified wrist, sequela|Nondisp fx of triquetrum bone, unspecified wrist, sequela +C2850707|T037|PT|S62.116S|ICD10CM|Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, sequela|Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, sequela +C2850708|T037|AB|S62.12|ICD10CM|Fracture of lunate [semilunar]|Fracture of lunate [semilunar] +C2850708|T037|HT|S62.12|ICD10CM|Fracture of lunate [semilunar]|Fracture of lunate [semilunar] +C2850709|T037|AB|S62.121|ICD10CM|Displaced fracture of lunate [semilunar], right wrist|Displaced fracture of lunate [semilunar], right wrist +C2850709|T037|HT|S62.121|ICD10CM|Displaced fracture of lunate [semilunar], right wrist|Displaced fracture of lunate [semilunar], right wrist +C2850710|T037|AB|S62.121A|ICD10CM|Disp fx of lunate, right wrist, init for clos fx|Disp fx of lunate, right wrist, init for clos fx +C2850710|T037|PT|S62.121A|ICD10CM|Displaced fracture of lunate [semilunar], right wrist, initial encounter for closed fracture|Displaced fracture of lunate [semilunar], right wrist, initial encounter for closed fracture +C2850711|T037|AB|S62.121B|ICD10CM|Disp fx of lunate, right wrist, init for opn fx|Disp fx of lunate, right wrist, init for opn fx +C2850711|T037|PT|S62.121B|ICD10CM|Displaced fracture of lunate [semilunar], right wrist, initial encounter for open fracture|Displaced fracture of lunate [semilunar], right wrist, initial encounter for open fracture +C2850712|T037|AB|S62.121D|ICD10CM|Disp fx of lunate, right wrist, subs for fx w routn heal|Disp fx of lunate, right wrist, subs for fx w routn heal +C2850713|T037|AB|S62.121G|ICD10CM|Disp fx of lunate, right wrist, subs for fx w delay heal|Disp fx of lunate, right wrist, subs for fx w delay heal +C2850714|T037|AB|S62.121K|ICD10CM|Disp fx of lunate, right wrist, subs for fx w nonunion|Disp fx of lunate, right wrist, subs for fx w nonunion +C2850715|T037|AB|S62.121P|ICD10CM|Disp fx of lunate, right wrist, subs for fx w malunion|Disp fx of lunate, right wrist, subs for fx w malunion +C2850716|T037|PT|S62.121S|ICD10CM|Displaced fracture of lunate [semilunar], right wrist, sequela|Displaced fracture of lunate [semilunar], right wrist, sequela +C2850716|T037|AB|S62.121S|ICD10CM|Displaced fracture of lunate, right wrist, sequela|Displaced fracture of lunate, right wrist, sequela +C2850717|T037|AB|S62.122|ICD10CM|Displaced fracture of lunate [semilunar], left wrist|Displaced fracture of lunate [semilunar], left wrist +C2850717|T037|HT|S62.122|ICD10CM|Displaced fracture of lunate [semilunar], left wrist|Displaced fracture of lunate [semilunar], left wrist +C2850718|T037|AB|S62.122A|ICD10CM|Disp fx of lunate, left wrist, init for clos fx|Disp fx of lunate, left wrist, init for clos fx +C2850718|T037|PT|S62.122A|ICD10CM|Displaced fracture of lunate [semilunar], left wrist, initial encounter for closed fracture|Displaced fracture of lunate [semilunar], left wrist, initial encounter for closed fracture +C2850719|T037|AB|S62.122B|ICD10CM|Disp fx of lunate, left wrist, init encntr for open fracture|Disp fx of lunate, left wrist, init encntr for open fracture +C2850719|T037|PT|S62.122B|ICD10CM|Displaced fracture of lunate [semilunar], left wrist, initial encounter for open fracture|Displaced fracture of lunate [semilunar], left wrist, initial encounter for open fracture +C2850720|T037|AB|S62.122D|ICD10CM|Disp fx of lunate, left wrist, subs for fx w routn heal|Disp fx of lunate, left wrist, subs for fx w routn heal +C2850721|T037|AB|S62.122G|ICD10CM|Disp fx of lunate, left wrist, subs for fx w delay heal|Disp fx of lunate, left wrist, subs for fx w delay heal +C2850722|T037|AB|S62.122K|ICD10CM|Disp fx of lunate, left wrist, subs for fx w nonunion|Disp fx of lunate, left wrist, subs for fx w nonunion +C2850723|T037|AB|S62.122P|ICD10CM|Disp fx of lunate, left wrist, subs for fx w malunion|Disp fx of lunate, left wrist, subs for fx w malunion +C2850724|T037|PT|S62.122S|ICD10CM|Displaced fracture of lunate [semilunar], left wrist, sequela|Displaced fracture of lunate [semilunar], left wrist, sequela +C2850724|T037|AB|S62.122S|ICD10CM|Displaced fracture of lunate, left wrist, sequela|Displaced fracture of lunate, left wrist, sequela +C2850725|T037|AB|S62.123|ICD10CM|Displaced fracture of lunate [semilunar], unspecified wrist|Displaced fracture of lunate [semilunar], unspecified wrist +C2850725|T037|HT|S62.123|ICD10CM|Displaced fracture of lunate [semilunar], unspecified wrist|Displaced fracture of lunate [semilunar], unspecified wrist +C2850726|T037|AB|S62.123A|ICD10CM|Disp fx of lunate, unsp wrist, init for clos fx|Disp fx of lunate, unsp wrist, init for clos fx +C2850726|T037|PT|S62.123A|ICD10CM|Displaced fracture of lunate [semilunar], unspecified wrist, initial encounter for closed fracture|Displaced fracture of lunate [semilunar], unspecified wrist, initial encounter for closed fracture +C2850727|T037|AB|S62.123B|ICD10CM|Disp fx of lunate, unsp wrist, init encntr for open fracture|Disp fx of lunate, unsp wrist, init encntr for open fracture +C2850727|T037|PT|S62.123B|ICD10CM|Displaced fracture of lunate [semilunar], unspecified wrist, initial encounter for open fracture|Displaced fracture of lunate [semilunar], unspecified wrist, initial encounter for open fracture +C2850728|T037|AB|S62.123D|ICD10CM|Disp fx of lunate, unsp wrist, subs for fx w routn heal|Disp fx of lunate, unsp wrist, subs for fx w routn heal +C2850729|T037|AB|S62.123G|ICD10CM|Disp fx of lunate, unsp wrist, subs for fx w delay heal|Disp fx of lunate, unsp wrist, subs for fx w delay heal +C2850730|T037|AB|S62.123K|ICD10CM|Disp fx of lunate, unsp wrist, subs for fx w nonunion|Disp fx of lunate, unsp wrist, subs for fx w nonunion +C2850731|T037|AB|S62.123P|ICD10CM|Disp fx of lunate, unsp wrist, subs for fx w malunion|Disp fx of lunate, unsp wrist, subs for fx w malunion +C2850732|T037|PT|S62.123S|ICD10CM|Displaced fracture of lunate [semilunar], unspecified wrist, sequela|Displaced fracture of lunate [semilunar], unspecified wrist, sequela +C2850732|T037|AB|S62.123S|ICD10CM|Displaced fracture of lunate, unspecified wrist, sequela|Displaced fracture of lunate, unspecified wrist, sequela +C2850733|T037|AB|S62.124|ICD10CM|Nondisplaced fracture of lunate [semilunar], right wrist|Nondisplaced fracture of lunate [semilunar], right wrist +C2850733|T037|HT|S62.124|ICD10CM|Nondisplaced fracture of lunate [semilunar], right wrist|Nondisplaced fracture of lunate [semilunar], right wrist +C2850734|T037|AB|S62.124A|ICD10CM|Nondisp fx of lunate, right wrist, init for clos fx|Nondisp fx of lunate, right wrist, init for clos fx +C2850734|T037|PT|S62.124A|ICD10CM|Nondisplaced fracture of lunate [semilunar], right wrist, initial encounter for closed fracture|Nondisplaced fracture of lunate [semilunar], right wrist, initial encounter for closed fracture +C2850735|T037|AB|S62.124B|ICD10CM|Nondisp fx of lunate, right wrist, init for opn fx|Nondisp fx of lunate, right wrist, init for opn fx +C2850735|T037|PT|S62.124B|ICD10CM|Nondisplaced fracture of lunate [semilunar], right wrist, initial encounter for open fracture|Nondisplaced fracture of lunate [semilunar], right wrist, initial encounter for open fracture +C2850736|T037|AB|S62.124D|ICD10CM|Nondisp fx of lunate, right wrist, subs for fx w routn heal|Nondisp fx of lunate, right wrist, subs for fx w routn heal +C2850737|T037|AB|S62.124G|ICD10CM|Nondisp fx of lunate, right wrist, subs for fx w delay heal|Nondisp fx of lunate, right wrist, subs for fx w delay heal +C2850738|T037|AB|S62.124K|ICD10CM|Nondisp fx of lunate, right wrist, subs for fx w nonunion|Nondisp fx of lunate, right wrist, subs for fx w nonunion +C2850739|T037|AB|S62.124P|ICD10CM|Nondisp fx of lunate, right wrist, subs for fx w malunion|Nondisp fx of lunate, right wrist, subs for fx w malunion +C2850740|T037|PT|S62.124S|ICD10CM|Nondisplaced fracture of lunate [semilunar], right wrist, sequela|Nondisplaced fracture of lunate [semilunar], right wrist, sequela +C2850740|T037|AB|S62.124S|ICD10CM|Nondisplaced fracture of lunate, right wrist, sequela|Nondisplaced fracture of lunate, right wrist, sequela +C2850741|T037|AB|S62.125|ICD10CM|Nondisplaced fracture of lunate [semilunar], left wrist|Nondisplaced fracture of lunate [semilunar], left wrist +C2850741|T037|HT|S62.125|ICD10CM|Nondisplaced fracture of lunate [semilunar], left wrist|Nondisplaced fracture of lunate [semilunar], left wrist +C2850742|T037|AB|S62.125A|ICD10CM|Nondisp fx of lunate, left wrist, init for clos fx|Nondisp fx of lunate, left wrist, init for clos fx +C2850742|T037|PT|S62.125A|ICD10CM|Nondisplaced fracture of lunate [semilunar], left wrist, initial encounter for closed fracture|Nondisplaced fracture of lunate [semilunar], left wrist, initial encounter for closed fracture +C2850743|T037|AB|S62.125B|ICD10CM|Nondisp fx of lunate, left wrist, init for opn fx|Nondisp fx of lunate, left wrist, init for opn fx +C2850743|T037|PT|S62.125B|ICD10CM|Nondisplaced fracture of lunate [semilunar], left wrist, initial encounter for open fracture|Nondisplaced fracture of lunate [semilunar], left wrist, initial encounter for open fracture +C2850744|T037|AB|S62.125D|ICD10CM|Nondisp fx of lunate, left wrist, subs for fx w routn heal|Nondisp fx of lunate, left wrist, subs for fx w routn heal +C2850745|T037|AB|S62.125G|ICD10CM|Nondisp fx of lunate, left wrist, subs for fx w delay heal|Nondisp fx of lunate, left wrist, subs for fx w delay heal +C2850746|T037|AB|S62.125K|ICD10CM|Nondisp fx of lunate, left wrist, subs for fx w nonunion|Nondisp fx of lunate, left wrist, subs for fx w nonunion +C2850747|T037|AB|S62.125P|ICD10CM|Nondisp fx of lunate, left wrist, subs for fx w malunion|Nondisp fx of lunate, left wrist, subs for fx w malunion +C2850748|T037|PT|S62.125S|ICD10CM|Nondisplaced fracture of lunate [semilunar], left wrist, sequela|Nondisplaced fracture of lunate [semilunar], left wrist, sequela +C2850748|T037|AB|S62.125S|ICD10CM|Nondisplaced fracture of lunate, left wrist, sequela|Nondisplaced fracture of lunate, left wrist, sequela +C2850749|T037|HT|S62.126|ICD10CM|Nondisplaced fracture of lunate [semilunar], unspecified wrist|Nondisplaced fracture of lunate [semilunar], unspecified wrist +C2850749|T037|AB|S62.126|ICD10CM|Nondisplaced fracture of lunate, unspecified wrist|Nondisplaced fracture of lunate, unspecified wrist +C2850750|T037|AB|S62.126A|ICD10CM|Nondisp fx of lunate, unsp wrist, init for clos fx|Nondisp fx of lunate, unsp wrist, init for clos fx +C2850751|T037|AB|S62.126B|ICD10CM|Nondisp fx of lunate, unsp wrist, init for opn fx|Nondisp fx of lunate, unsp wrist, init for opn fx +C2850751|T037|PT|S62.126B|ICD10CM|Nondisplaced fracture of lunate [semilunar], unspecified wrist, initial encounter for open fracture|Nondisplaced fracture of lunate [semilunar], unspecified wrist, initial encounter for open fracture +C2850752|T037|AB|S62.126D|ICD10CM|Nondisp fx of lunate, unsp wrist, subs for fx w routn heal|Nondisp fx of lunate, unsp wrist, subs for fx w routn heal +C2850753|T037|AB|S62.126G|ICD10CM|Nondisp fx of lunate, unsp wrist, subs for fx w delay heal|Nondisp fx of lunate, unsp wrist, subs for fx w delay heal +C2850754|T037|AB|S62.126K|ICD10CM|Nondisp fx of lunate, unsp wrist, subs for fx w nonunion|Nondisp fx of lunate, unsp wrist, subs for fx w nonunion +C2850755|T037|AB|S62.126P|ICD10CM|Nondisp fx of lunate, unsp wrist, subs for fx w malunion|Nondisp fx of lunate, unsp wrist, subs for fx w malunion +C2850756|T037|PT|S62.126S|ICD10CM|Nondisplaced fracture of lunate [semilunar], unspecified wrist, sequela|Nondisplaced fracture of lunate [semilunar], unspecified wrist, sequela +C2850756|T037|AB|S62.126S|ICD10CM|Nondisplaced fracture of lunate, unspecified wrist, sequela|Nondisplaced fracture of lunate, unspecified wrist, sequela +C2850757|T037|AB|S62.13|ICD10CM|Fracture of capitate [os magnum] bone|Fracture of capitate [os magnum] bone +C2850757|T037|HT|S62.13|ICD10CM|Fracture of capitate [os magnum] bone|Fracture of capitate [os magnum] bone +C2850758|T037|AB|S62.131|ICD10CM|Displaced fracture of capitate [os magnum] bone, right wrist|Displaced fracture of capitate [os magnum] bone, right wrist +C2850758|T037|HT|S62.131|ICD10CM|Displaced fracture of capitate [os magnum] bone, right wrist|Displaced fracture of capitate [os magnum] bone, right wrist +C2850759|T037|AB|S62.131A|ICD10CM|Disp fx of capitate bone, right wrist, init for clos fx|Disp fx of capitate bone, right wrist, init for clos fx +C2850759|T037|PT|S62.131A|ICD10CM|Displaced fracture of capitate [os magnum] bone, right wrist, initial encounter for closed fracture|Displaced fracture of capitate [os magnum] bone, right wrist, initial encounter for closed fracture +C2850760|T037|AB|S62.131B|ICD10CM|Disp fx of capitate bone, right wrist, init for opn fx|Disp fx of capitate bone, right wrist, init for opn fx +C2850760|T037|PT|S62.131B|ICD10CM|Displaced fracture of capitate [os magnum] bone, right wrist, initial encounter for open fracture|Displaced fracture of capitate [os magnum] bone, right wrist, initial encounter for open fracture +C2850761|T037|AB|S62.131D|ICD10CM|Disp fx of capitate bone, r wrist, subs for fx w routn heal|Disp fx of capitate bone, r wrist, subs for fx w routn heal +C2850762|T037|AB|S62.131G|ICD10CM|Disp fx of capitate bone, r wrist, subs for fx w delay heal|Disp fx of capitate bone, r wrist, subs for fx w delay heal +C2850763|T037|AB|S62.131K|ICD10CM|Disp fx of capitate bone, r wrist, subs for fx w nonunion|Disp fx of capitate bone, r wrist, subs for fx w nonunion +C2850764|T037|AB|S62.131P|ICD10CM|Disp fx of capitate bone, r wrist, subs for fx w malunion|Disp fx of capitate bone, r wrist, subs for fx w malunion +C2850765|T037|PT|S62.131S|ICD10CM|Displaced fracture of capitate [os magnum] bone, right wrist, sequela|Displaced fracture of capitate [os magnum] bone, right wrist, sequela +C2850765|T037|AB|S62.131S|ICD10CM|Displaced fracture of capitate bone, right wrist, sequela|Displaced fracture of capitate bone, right wrist, sequela +C2850766|T037|AB|S62.132|ICD10CM|Displaced fracture of capitate [os magnum] bone, left wrist|Displaced fracture of capitate [os magnum] bone, left wrist +C2850766|T037|HT|S62.132|ICD10CM|Displaced fracture of capitate [os magnum] bone, left wrist|Displaced fracture of capitate [os magnum] bone, left wrist +C2850767|T037|AB|S62.132A|ICD10CM|Disp fx of capitate bone, left wrist, init for clos fx|Disp fx of capitate bone, left wrist, init for clos fx +C2850767|T037|PT|S62.132A|ICD10CM|Displaced fracture of capitate [os magnum] bone, left wrist, initial encounter for closed fracture|Displaced fracture of capitate [os magnum] bone, left wrist, initial encounter for closed fracture +C2850768|T037|AB|S62.132B|ICD10CM|Disp fx of capitate bone, left wrist, init for opn fx|Disp fx of capitate bone, left wrist, init for opn fx +C2850768|T037|PT|S62.132B|ICD10CM|Displaced fracture of capitate [os magnum] bone, left wrist, initial encounter for open fracture|Displaced fracture of capitate [os magnum] bone, left wrist, initial encounter for open fracture +C2850769|T037|AB|S62.132D|ICD10CM|Disp fx of capitate bone, l wrist, subs for fx w routn heal|Disp fx of capitate bone, l wrist, subs for fx w routn heal +C2850770|T037|AB|S62.132G|ICD10CM|Disp fx of capitate bone, l wrist, subs for fx w delay heal|Disp fx of capitate bone, l wrist, subs for fx w delay heal +C2850771|T037|AB|S62.132K|ICD10CM|Disp fx of capitate bone, left wrist, subs for fx w nonunion|Disp fx of capitate bone, left wrist, subs for fx w nonunion +C2850772|T037|AB|S62.132P|ICD10CM|Disp fx of capitate bone, left wrist, subs for fx w malunion|Disp fx of capitate bone, left wrist, subs for fx w malunion +C2850773|T037|PT|S62.132S|ICD10CM|Displaced fracture of capitate [os magnum] bone, left wrist, sequela|Displaced fracture of capitate [os magnum] bone, left wrist, sequela +C2850773|T037|AB|S62.132S|ICD10CM|Displaced fracture of capitate bone, left wrist, sequela|Displaced fracture of capitate bone, left wrist, sequela +C2850774|T037|HT|S62.133|ICD10CM|Displaced fracture of capitate [os magnum] bone, unspecified wrist|Displaced fracture of capitate [os magnum] bone, unspecified wrist +C2850774|T037|AB|S62.133|ICD10CM|Displaced fracture of capitate bone, unspecified wrist|Displaced fracture of capitate bone, unspecified wrist +C2850775|T037|AB|S62.133A|ICD10CM|Disp fx of capitate bone, unsp wrist, init for clos fx|Disp fx of capitate bone, unsp wrist, init for clos fx +C2850776|T037|AB|S62.133B|ICD10CM|Disp fx of capitate bone, unsp wrist, init for opn fx|Disp fx of capitate bone, unsp wrist, init for opn fx +C2850777|T037|AB|S62.133D|ICD10CM|Disp fx of capitate bone, unsp wrs, subs for fx w routn heal|Disp fx of capitate bone, unsp wrs, subs for fx w routn heal +C2850778|T037|AB|S62.133G|ICD10CM|Disp fx of capitate bone, unsp wrs, subs for fx w delay heal|Disp fx of capitate bone, unsp wrs, subs for fx w delay heal +C2850779|T037|AB|S62.133K|ICD10CM|Disp fx of capitate bone, unsp wrist, subs for fx w nonunion|Disp fx of capitate bone, unsp wrist, subs for fx w nonunion +C2850780|T037|AB|S62.133P|ICD10CM|Disp fx of capitate bone, unsp wrist, subs for fx w malunion|Disp fx of capitate bone, unsp wrist, subs for fx w malunion +C2850781|T037|AB|S62.133S|ICD10CM|Disp fx of capitate bone, unspecified wrist, sequela|Disp fx of capitate bone, unspecified wrist, sequela +C2850781|T037|PT|S62.133S|ICD10CM|Displaced fracture of capitate [os magnum] bone, unspecified wrist, sequela|Displaced fracture of capitate [os magnum] bone, unspecified wrist, sequela +C3511175|T037|HT|S62.134|ICD10CM|Nondisplaced fracture of capitate [os magnum] bone, right wrist|Nondisplaced fracture of capitate [os magnum] bone, right wrist +C3511175|T037|AB|S62.134|ICD10CM|Nondisplaced fracture of capitate bone, right wrist|Nondisplaced fracture of capitate bone, right wrist +C2850783|T037|AB|S62.134A|ICD10CM|Nondisp fx of capitate bone, right wrist, init for clos fx|Nondisp fx of capitate bone, right wrist, init for clos fx +C2850784|T037|AB|S62.134B|ICD10CM|Nondisp fx of capitate bone, right wrist, init for opn fx|Nondisp fx of capitate bone, right wrist, init for opn fx +C2850784|T037|PT|S62.134B|ICD10CM|Nondisplaced fracture of capitate [os magnum] bone, right wrist, initial encounter for open fracture|Nondisplaced fracture of capitate [os magnum] bone, right wrist, initial encounter for open fracture +C2850785|T037|AB|S62.134D|ICD10CM|Nondisp fx of capitate bone, r wrs, subs for fx w routn heal|Nondisp fx of capitate bone, r wrs, subs for fx w routn heal +C2850786|T037|AB|S62.134G|ICD10CM|Nondisp fx of capitate bone, r wrs, subs for fx w delay heal|Nondisp fx of capitate bone, r wrs, subs for fx w delay heal +C2850787|T037|AB|S62.134K|ICD10CM|Nondisp fx of capitate bone, r wrist, subs for fx w nonunion|Nondisp fx of capitate bone, r wrist, subs for fx w nonunion +C2850788|T037|AB|S62.134P|ICD10CM|Nondisp fx of capitate bone, r wrist, subs for fx w malunion|Nondisp fx of capitate bone, r wrist, subs for fx w malunion +C2850789|T037|PT|S62.134S|ICD10CM|Nondisplaced fracture of capitate [os magnum] bone, right wrist, sequela|Nondisplaced fracture of capitate [os magnum] bone, right wrist, sequela +C2850789|T037|AB|S62.134S|ICD10CM|Nondisplaced fracture of capitate bone, right wrist, sequela|Nondisplaced fracture of capitate bone, right wrist, sequela +C3511176|T037|HT|S62.135|ICD10CM|Nondisplaced fracture of capitate [os magnum] bone, left wrist|Nondisplaced fracture of capitate [os magnum] bone, left wrist +C3511176|T037|AB|S62.135|ICD10CM|Nondisplaced fracture of capitate bone, left wrist|Nondisplaced fracture of capitate bone, left wrist +C2850791|T037|AB|S62.135A|ICD10CM|Nondisp fx of capitate bone, left wrist, init for clos fx|Nondisp fx of capitate bone, left wrist, init for clos fx +C2850792|T037|AB|S62.135B|ICD10CM|Nondisp fx of capitate bone, left wrist, init for opn fx|Nondisp fx of capitate bone, left wrist, init for opn fx +C2850792|T037|PT|S62.135B|ICD10CM|Nondisplaced fracture of capitate [os magnum] bone, left wrist, initial encounter for open fracture|Nondisplaced fracture of capitate [os magnum] bone, left wrist, initial encounter for open fracture +C2850793|T037|AB|S62.135D|ICD10CM|Nondisp fx of capitate bone, l wrs, subs for fx w routn heal|Nondisp fx of capitate bone, l wrs, subs for fx w routn heal +C2850794|T037|AB|S62.135G|ICD10CM|Nondisp fx of capitate bone, l wrs, subs for fx w delay heal|Nondisp fx of capitate bone, l wrs, subs for fx w delay heal +C2850795|T037|AB|S62.135K|ICD10CM|Nondisp fx of capitate bone, l wrist, subs for fx w nonunion|Nondisp fx of capitate bone, l wrist, subs for fx w nonunion +C2850796|T037|AB|S62.135P|ICD10CM|Nondisp fx of capitate bone, l wrist, subs for fx w malunion|Nondisp fx of capitate bone, l wrist, subs for fx w malunion +C2850797|T037|PT|S62.135S|ICD10CM|Nondisplaced fracture of capitate [os magnum] bone, left wrist, sequela|Nondisplaced fracture of capitate [os magnum] bone, left wrist, sequela +C2850797|T037|AB|S62.135S|ICD10CM|Nondisplaced fracture of capitate bone, left wrist, sequela|Nondisplaced fracture of capitate bone, left wrist, sequela +C2850798|T037|HT|S62.136|ICD10CM|Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist|Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist +C2850798|T037|AB|S62.136|ICD10CM|Nondisplaced fracture of capitate bone, unspecified wrist|Nondisplaced fracture of capitate bone, unspecified wrist +C2850799|T037|AB|S62.136A|ICD10CM|Nondisp fx of capitate bone, unsp wrist, init for clos fx|Nondisp fx of capitate bone, unsp wrist, init for clos fx +C2850800|T037|AB|S62.136B|ICD10CM|Nondisp fx of capitate bone, unsp wrist, init for opn fx|Nondisp fx of capitate bone, unsp wrist, init for opn fx +C2850801|T037|AB|S62.136D|ICD10CM|Nondisp fx of capitate bone, unsp wrs, 7thD|Nondisp fx of capitate bone, unsp wrs, 7thD +C2850802|T037|AB|S62.136G|ICD10CM|Nondisp fx of capitate bone, unsp wrs, 7thG|Nondisp fx of capitate bone, unsp wrs, 7thG +C2850803|T037|AB|S62.136K|ICD10CM|Nondisp fx of capitate bone, unsp wrs, 7thK|Nondisp fx of capitate bone, unsp wrs, 7thK +C2850804|T037|AB|S62.136P|ICD10CM|Nondisp fx of capitate bone, unsp wrs, 7thP|Nondisp fx of capitate bone, unsp wrs, 7thP +C2850805|T037|AB|S62.136S|ICD10CM|Nondisp fx of capitate bone, unspecified wrist, sequela|Nondisp fx of capitate bone, unspecified wrist, sequela +C2850805|T037|PT|S62.136S|ICD10CM|Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, sequela|Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, sequela +C2850807|T037|AB|S62.14|ICD10CM|Fracture of body of hamate [unciform] bone|Fracture of body of hamate [unciform] bone +C2850807|T037|HT|S62.14|ICD10CM|Fracture of body of hamate [unciform] bone|Fracture of body of hamate [unciform] bone +C2850806|T037|ET|S62.14|ICD10CM|Fracture of hamate [unciform] bone NOS|Fracture of hamate [unciform] bone NOS +C3511185|T037|HT|S62.141|ICD10CM|Displaced fracture of body of hamate [unciform] bone, right wrist|Displaced fracture of body of hamate [unciform] bone, right wrist +C3511185|T037|AB|S62.141|ICD10CM|Displaced fracture of body of hamate bone, right wrist|Displaced fracture of body of hamate bone, right wrist +C2850809|T037|AB|S62.141A|ICD10CM|Disp fx of body of hamate bone, right wrist, init|Disp fx of body of hamate bone, right wrist, init +C2850810|T037|AB|S62.141B|ICD10CM|Disp fx of body of hamate bone, right wrist, init for opn fx|Disp fx of body of hamate bone, right wrist, init for opn fx +C2850811|T037|AB|S62.141D|ICD10CM|Disp fx of body of hamate bone, r wrs, 7thD|Disp fx of body of hamate bone, r wrs, 7thD +C2850812|T037|AB|S62.141G|ICD10CM|Disp fx of body of hamate bone, r wrs, 7thG|Disp fx of body of hamate bone, r wrs, 7thG +C2850813|T037|AB|S62.141K|ICD10CM|Disp fx of body of hamate bone, r wrs, 7thK|Disp fx of body of hamate bone, r wrs, 7thK +C2850814|T037|AB|S62.141P|ICD10CM|Disp fx of body of hamate bone, r wrs, 7thP|Disp fx of body of hamate bone, r wrs, 7thP +C2850815|T037|AB|S62.141S|ICD10CM|Disp fx of body of hamate bone, right wrist, sequela|Disp fx of body of hamate bone, right wrist, sequela +C2850815|T037|PT|S62.141S|ICD10CM|Displaced fracture of body of hamate [unciform] bone, right wrist, sequela|Displaced fracture of body of hamate [unciform] bone, right wrist, sequela +C3511186|T037|HT|S62.142|ICD10CM|Displaced fracture of body of hamate [unciform] bone, left wrist|Displaced fracture of body of hamate [unciform] bone, left wrist +C3511186|T037|AB|S62.142|ICD10CM|Displaced fracture of body of hamate bone, left wrist|Displaced fracture of body of hamate bone, left wrist +C2850817|T037|AB|S62.142A|ICD10CM|Disp fx of body of hamate bone, left wrist, init for clos fx|Disp fx of body of hamate bone, left wrist, init for clos fx +C2850818|T037|AB|S62.142B|ICD10CM|Disp fx of body of hamate bone, left wrist, init for opn fx|Disp fx of body of hamate bone, left wrist, init for opn fx +C2850819|T037|AB|S62.142D|ICD10CM|Disp fx of body of hamate bone, l wrs, 7thD|Disp fx of body of hamate bone, l wrs, 7thD +C2850820|T037|AB|S62.142G|ICD10CM|Disp fx of body of hamate bone, l wrs, 7thG|Disp fx of body of hamate bone, l wrs, 7thG +C2850821|T037|AB|S62.142K|ICD10CM|Disp fx of body of hamate bone, l wrs, 7thK|Disp fx of body of hamate bone, l wrs, 7thK +C2850822|T037|AB|S62.142P|ICD10CM|Disp fx of body of hamate bone, l wrs, 7thP|Disp fx of body of hamate bone, l wrs, 7thP +C2850823|T037|AB|S62.142S|ICD10CM|Disp fx of body of hamate bone, left wrist, sequela|Disp fx of body of hamate bone, left wrist, sequela +C2850823|T037|PT|S62.142S|ICD10CM|Displaced fracture of body of hamate [unciform] bone, left wrist, sequela|Displaced fracture of body of hamate [unciform] bone, left wrist, sequela +C2850824|T037|HT|S62.143|ICD10CM|Displaced fracture of body of hamate [unciform] bone, unspecified wrist|Displaced fracture of body of hamate [unciform] bone, unspecified wrist +C2850824|T037|AB|S62.143|ICD10CM|Displaced fracture of body of hamate bone, unspecified wrist|Displaced fracture of body of hamate bone, unspecified wrist +C2850825|T037|AB|S62.143A|ICD10CM|Disp fx of body of hamate bone, unsp wrist, init for clos fx|Disp fx of body of hamate bone, unsp wrist, init for clos fx +C2850826|T037|AB|S62.143B|ICD10CM|Disp fx of body of hamate bone, unsp wrist, init for opn fx|Disp fx of body of hamate bone, unsp wrist, init for opn fx +C2850827|T037|AB|S62.143D|ICD10CM|Disp fx of body of hamate bone, unsp wrs, 7thD|Disp fx of body of hamate bone, unsp wrs, 7thD +C2850828|T037|AB|S62.143G|ICD10CM|Disp fx of body of hamate bone, unsp wrs, 7thG|Disp fx of body of hamate bone, unsp wrs, 7thG +C2850829|T037|AB|S62.143K|ICD10CM|Disp fx of body of hamate bone, unsp wrs, 7thK|Disp fx of body of hamate bone, unsp wrs, 7thK +C2850830|T037|AB|S62.143P|ICD10CM|Disp fx of body of hamate bone, unsp wrs, 7thP|Disp fx of body of hamate bone, unsp wrs, 7thP +C2850831|T037|AB|S62.143S|ICD10CM|Disp fx of body of hamate bone, unspecified wrist, sequela|Disp fx of body of hamate bone, unspecified wrist, sequela +C2850831|T037|PT|S62.143S|ICD10CM|Displaced fracture of body of hamate [unciform] bone, unspecified wrist, sequela|Displaced fracture of body of hamate [unciform] bone, unspecified wrist, sequela +C3511182|T037|HT|S62.144|ICD10CM|Nondisplaced fracture of body of hamate [unciform] bone, right wrist|Nondisplaced fracture of body of hamate [unciform] bone, right wrist +C3511182|T037|AB|S62.144|ICD10CM|Nondisplaced fracture of body of hamate bone, right wrist|Nondisplaced fracture of body of hamate bone, right wrist +C2850833|T037|AB|S62.144A|ICD10CM|Nondisp fx of body of hamate bone, right wrist, init|Nondisp fx of body of hamate bone, right wrist, init +C2850834|T037|AB|S62.144B|ICD10CM|Nondisp fx of body of hamate bone, r wrist, init for opn fx|Nondisp fx of body of hamate bone, r wrist, init for opn fx +C2850835|T037|AB|S62.144D|ICD10CM|Nondisp fx of body of hamate bone, r wrs, 7thD|Nondisp fx of body of hamate bone, r wrs, 7thD +C2850836|T037|AB|S62.144G|ICD10CM|Nondisp fx of body of hamate bone, r wrs, 7thG|Nondisp fx of body of hamate bone, r wrs, 7thG +C2850837|T037|AB|S62.144K|ICD10CM|Nondisp fx of body of hamate bone, r wrs, 7thK|Nondisp fx of body of hamate bone, r wrs, 7thK +C2850838|T037|AB|S62.144P|ICD10CM|Nondisp fx of body of hamate bone, r wrs, 7thP|Nondisp fx of body of hamate bone, r wrs, 7thP +C2850839|T037|AB|S62.144S|ICD10CM|Nondisp fx of body of hamate bone, right wrist, sequela|Nondisp fx of body of hamate bone, right wrist, sequela +C2850839|T037|PT|S62.144S|ICD10CM|Nondisplaced fracture of body of hamate [unciform] bone, right wrist, sequela|Nondisplaced fracture of body of hamate [unciform] bone, right wrist, sequela +C3511183|T037|HT|S62.145|ICD10CM|Nondisplaced fracture of body of hamate [unciform] bone, left wrist|Nondisplaced fracture of body of hamate [unciform] bone, left wrist +C3511183|T037|AB|S62.145|ICD10CM|Nondisplaced fracture of body of hamate bone, left wrist|Nondisplaced fracture of body of hamate bone, left wrist +C2850841|T037|AB|S62.145A|ICD10CM|Nondisp fx of body of hamate bone, left wrist, init|Nondisp fx of body of hamate bone, left wrist, init +C2850842|T037|AB|S62.145B|ICD10CM|Nondisp fx of body of hamate bone, l wrist, init for opn fx|Nondisp fx of body of hamate bone, l wrist, init for opn fx +C2850843|T037|AB|S62.145D|ICD10CM|Nondisp fx of body of hamate bone, l wrs, 7thD|Nondisp fx of body of hamate bone, l wrs, 7thD +C2850844|T037|AB|S62.145G|ICD10CM|Nondisp fx of body of hamate bone, l wrs, 7thG|Nondisp fx of body of hamate bone, l wrs, 7thG +C2850845|T037|AB|S62.145K|ICD10CM|Nondisp fx of body of hamate bone, l wrs, 7thK|Nondisp fx of body of hamate bone, l wrs, 7thK +C2850846|T037|AB|S62.145P|ICD10CM|Nondisp fx of body of hamate bone, l wrs, 7thP|Nondisp fx of body of hamate bone, l wrs, 7thP +C2850847|T037|AB|S62.145S|ICD10CM|Nondisp fx of body of hamate bone, left wrist, sequela|Nondisp fx of body of hamate bone, left wrist, sequela +C2850847|T037|PT|S62.145S|ICD10CM|Nondisplaced fracture of body of hamate [unciform] bone, left wrist, sequela|Nondisplaced fracture of body of hamate [unciform] bone, left wrist, sequela +C2850848|T037|AB|S62.146|ICD10CM|Nondisp fx of body of hamate bone, unspecified wrist|Nondisp fx of body of hamate bone, unspecified wrist +C2850848|T037|HT|S62.146|ICD10CM|Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist|Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist +C2850849|T037|AB|S62.146A|ICD10CM|Nondisp fx of body of hamate bone, unsp wrist, init|Nondisp fx of body of hamate bone, unsp wrist, init +C2850850|T037|AB|S62.146B|ICD10CM|Nondisp fx of body of hamate bone, unsp wrs, init for opn fx|Nondisp fx of body of hamate bone, unsp wrs, init for opn fx +C2850851|T037|AB|S62.146D|ICD10CM|Nondisp fx of body of hamate bone, unsp wrs, 7thD|Nondisp fx of body of hamate bone, unsp wrs, 7thD +C2850852|T037|AB|S62.146G|ICD10CM|Nondisp fx of body of hamate bone, unsp wrs, 7thG|Nondisp fx of body of hamate bone, unsp wrs, 7thG +C2850853|T037|AB|S62.146K|ICD10CM|Nondisp fx of body of hamate bone, unsp wrs, 7thK|Nondisp fx of body of hamate bone, unsp wrs, 7thK +C2850854|T037|AB|S62.146P|ICD10CM|Nondisp fx of body of hamate bone, unsp wrs, 7thP|Nondisp fx of body of hamate bone, unsp wrs, 7thP +C2850855|T037|AB|S62.146S|ICD10CM|Nondisp fx of body of hamate bone, unsp wrist, sequela|Nondisp fx of body of hamate bone, unsp wrist, sequela +C2850855|T037|PT|S62.146S|ICD10CM|Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, sequela|Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, sequela +C2850857|T037|AB|S62.15|ICD10CM|Fracture of hook process of hamate [unciform] bone|Fracture of hook process of hamate [unciform] bone +C2850857|T037|HT|S62.15|ICD10CM|Fracture of hook process of hamate [unciform] bone|Fracture of hook process of hamate [unciform] bone +C2850856|T037|ET|S62.15|ICD10CM|Fracture of unciform process of hamate [unciform] bone|Fracture of unciform process of hamate [unciform] bone +C2850858|T037|AB|S62.151|ICD10CM|Disp fx of hook process of hamate bone, right wrist|Disp fx of hook process of hamate bone, right wrist +C2850858|T037|HT|S62.151|ICD10CM|Displaced fracture of hook process of hamate [unciform] bone, right wrist|Displaced fracture of hook process of hamate [unciform] bone, right wrist +C2850859|T037|AB|S62.151A|ICD10CM|Disp fx of hook process of hamate bone, right wrist, init|Disp fx of hook process of hamate bone, right wrist, init +C2850860|T037|AB|S62.151B|ICD10CM|Disp fx of hook pro of hamate bone, r wrist, init for opn fx|Disp fx of hook pro of hamate bone, r wrist, init for opn fx +C2850861|T037|AB|S62.151D|ICD10CM|Disp fx of hook pro of hamate bone, r wrs, 7thD|Disp fx of hook pro of hamate bone, r wrs, 7thD +C2850862|T037|AB|S62.151G|ICD10CM|Disp fx of hook pro of hamate bone, r wrs, 7thG|Disp fx of hook pro of hamate bone, r wrs, 7thG +C2850863|T037|AB|S62.151K|ICD10CM|Disp fx of hook pro of hamate bone, r wrs, 7thK|Disp fx of hook pro of hamate bone, r wrs, 7thK +C2850864|T037|AB|S62.151P|ICD10CM|Disp fx of hook pro of hamate bone, r wrs, 7thP|Disp fx of hook pro of hamate bone, r wrs, 7thP +C2850865|T037|AB|S62.151S|ICD10CM|Disp fx of hook process of hamate bone, right wrist, sequela|Disp fx of hook process of hamate bone, right wrist, sequela +C2850865|T037|PT|S62.151S|ICD10CM|Displaced fracture of hook process of hamate [unciform] bone, right wrist, sequela|Displaced fracture of hook process of hamate [unciform] bone, right wrist, sequela +C2850866|T037|AB|S62.152|ICD10CM|Disp fx of hook process of hamate bone, left wrist|Disp fx of hook process of hamate bone, left wrist +C2850866|T037|HT|S62.152|ICD10CM|Displaced fracture of hook process of hamate [unciform] bone, left wrist|Displaced fracture of hook process of hamate [unciform] bone, left wrist +C2850867|T037|AB|S62.152A|ICD10CM|Disp fx of hook process of hamate bone, left wrist, init|Disp fx of hook process of hamate bone, left wrist, init +C2850868|T037|AB|S62.152B|ICD10CM|Disp fx of hook pro of hamate bone, l wrist, init for opn fx|Disp fx of hook pro of hamate bone, l wrist, init for opn fx +C2850869|T037|AB|S62.152D|ICD10CM|Disp fx of hook pro of hamate bone, l wrs, 7thD|Disp fx of hook pro of hamate bone, l wrs, 7thD +C2850870|T037|AB|S62.152G|ICD10CM|Disp fx of hook pro of hamate bone, l wrs, 7thG|Disp fx of hook pro of hamate bone, l wrs, 7thG +C2850871|T037|AB|S62.152K|ICD10CM|Disp fx of hook pro of hamate bone, l wrs, 7thK|Disp fx of hook pro of hamate bone, l wrs, 7thK +C2850872|T037|AB|S62.152P|ICD10CM|Disp fx of hook pro of hamate bone, l wrs, 7thP|Disp fx of hook pro of hamate bone, l wrs, 7thP +C2850873|T037|AB|S62.152S|ICD10CM|Disp fx of hook process of hamate bone, left wrist, sequela|Disp fx of hook process of hamate bone, left wrist, sequela +C2850873|T037|PT|S62.152S|ICD10CM|Displaced fracture of hook process of hamate [unciform] bone, left wrist, sequela|Displaced fracture of hook process of hamate [unciform] bone, left wrist, sequela +C2850874|T037|AB|S62.153|ICD10CM|Disp fx of hook process of hamate bone, unspecified wrist|Disp fx of hook process of hamate bone, unspecified wrist +C2850874|T037|HT|S62.153|ICD10CM|Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist|Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist +C2850875|T037|AB|S62.153A|ICD10CM|Disp fx of hook process of hamate bone, unsp wrist, init|Disp fx of hook process of hamate bone, unsp wrist, init +C2850876|T037|AB|S62.153B|ICD10CM|Disp fx of hook pro of hamate bone, unsp wrs, 7thB|Disp fx of hook pro of hamate bone, unsp wrs, 7thB +C2850877|T037|AB|S62.153D|ICD10CM|Disp fx of hook pro of hamate bone, unsp wrs, 7thD|Disp fx of hook pro of hamate bone, unsp wrs, 7thD +C2850878|T037|AB|S62.153G|ICD10CM|Disp fx of hook pro of hamate bone, unsp wrs, 7thG|Disp fx of hook pro of hamate bone, unsp wrs, 7thG +C2850879|T037|AB|S62.153K|ICD10CM|Disp fx of hook pro of hamate bone, unsp wrs, 7thK|Disp fx of hook pro of hamate bone, unsp wrs, 7thK +C2850880|T037|AB|S62.153P|ICD10CM|Disp fx of hook pro of hamate bone, unsp wrs, 7thP|Disp fx of hook pro of hamate bone, unsp wrs, 7thP +C2850881|T037|AB|S62.153S|ICD10CM|Disp fx of hook process of hamate bone, unsp wrist, sequela|Disp fx of hook process of hamate bone, unsp wrist, sequela +C2850881|T037|PT|S62.153S|ICD10CM|Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, sequela|Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, sequela +C2850882|T037|AB|S62.154|ICD10CM|Nondisp fx of hook process of hamate bone, right wrist|Nondisp fx of hook process of hamate bone, right wrist +C2850882|T037|HT|S62.154|ICD10CM|Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist|Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist +C2850883|T037|AB|S62.154A|ICD10CM|Nondisp fx of hook process of hamate bone, right wrist, init|Nondisp fx of hook process of hamate bone, right wrist, init +C2850884|T037|AB|S62.154B|ICD10CM|Nondisp fx of hook pro of hamate bone, r wrs, 7thB|Nondisp fx of hook pro of hamate bone, r wrs, 7thB +C2850885|T037|AB|S62.154D|ICD10CM|Nondisp fx of hook pro of hamate bone, r wrs, 7thD|Nondisp fx of hook pro of hamate bone, r wrs, 7thD +C2850886|T037|AB|S62.154G|ICD10CM|Nondisp fx of hook pro of hamate bone, r wrs, 7thG|Nondisp fx of hook pro of hamate bone, r wrs, 7thG +C2850887|T037|AB|S62.154K|ICD10CM|Nondisp fx of hook pro of hamate bone, r wrs, 7thK|Nondisp fx of hook pro of hamate bone, r wrs, 7thK +C2850888|T037|AB|S62.154P|ICD10CM|Nondisp fx of hook pro of hamate bone, r wrs, 7thP|Nondisp fx of hook pro of hamate bone, r wrs, 7thP +C2850889|T037|AB|S62.154S|ICD10CM|Nondisp fx of hook process of hamate bone, r wrist, sequela|Nondisp fx of hook process of hamate bone, r wrist, sequela +C2850889|T037|PT|S62.154S|ICD10CM|Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, sequela|Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, sequela +C2850890|T037|AB|S62.155|ICD10CM|Nondisp fx of hook process of hamate bone, left wrist|Nondisp fx of hook process of hamate bone, left wrist +C2850890|T037|HT|S62.155|ICD10CM|Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist|Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist +C2850891|T037|AB|S62.155A|ICD10CM|Nondisp fx of hook process of hamate bone, left wrist, init|Nondisp fx of hook process of hamate bone, left wrist, init +C2850892|T037|AB|S62.155B|ICD10CM|Nondisp fx of hook pro of hamate bone, l wrs, 7thB|Nondisp fx of hook pro of hamate bone, l wrs, 7thB +C2850893|T037|AB|S62.155D|ICD10CM|Nondisp fx of hook pro of hamate bone, l wrs, 7thD|Nondisp fx of hook pro of hamate bone, l wrs, 7thD +C2850894|T037|AB|S62.155G|ICD10CM|Nondisp fx of hook pro of hamate bone, l wrs, 7thG|Nondisp fx of hook pro of hamate bone, l wrs, 7thG +C2850895|T037|AB|S62.155K|ICD10CM|Nondisp fx of hook pro of hamate bone, l wrs, 7thK|Nondisp fx of hook pro of hamate bone, l wrs, 7thK +C2850896|T037|AB|S62.155P|ICD10CM|Nondisp fx of hook pro of hamate bone, l wrs, 7thP|Nondisp fx of hook pro of hamate bone, l wrs, 7thP +C2850897|T037|AB|S62.155S|ICD10CM|Nondisp fx of hook process of hamate bone, l wrist, sequela|Nondisp fx of hook process of hamate bone, l wrist, sequela +C2850897|T037|PT|S62.155S|ICD10CM|Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, sequela|Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, sequela +C2850898|T037|AB|S62.156|ICD10CM|Nondisp fx of hook process of hamate bone, unspecified wrist|Nondisp fx of hook process of hamate bone, unspecified wrist +C2850898|T037|HT|S62.156|ICD10CM|Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist|Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist +C2850899|T037|AB|S62.156A|ICD10CM|Nondisp fx of hook process of hamate bone, unsp wrist, init|Nondisp fx of hook process of hamate bone, unsp wrist, init +C2850900|T037|AB|S62.156B|ICD10CM|Nondisp fx of hook pro of hamate bone, unsp wrs, 7thB|Nondisp fx of hook pro of hamate bone, unsp wrs, 7thB +C2850901|T037|AB|S62.156D|ICD10CM|Nondisp fx of hook pro of hamate bone, unsp wrs, 7thD|Nondisp fx of hook pro of hamate bone, unsp wrs, 7thD +C2850902|T037|AB|S62.156G|ICD10CM|Nondisp fx of hook pro of hamate bone, unsp wrs, 7thG|Nondisp fx of hook pro of hamate bone, unsp wrs, 7thG +C2850903|T037|AB|S62.156K|ICD10CM|Nondisp fx of hook pro of hamate bone, unsp wrs, 7thK|Nondisp fx of hook pro of hamate bone, unsp wrs, 7thK +C2850904|T037|AB|S62.156P|ICD10CM|Nondisp fx of hook pro of hamate bone, unsp wrs, 7thP|Nondisp fx of hook pro of hamate bone, unsp wrs, 7thP +C2850905|T037|AB|S62.156S|ICD10CM|Nondisp fx of hook pro of hamate bone, unsp wrist, sequela|Nondisp fx of hook pro of hamate bone, unsp wrist, sequela +C2850905|T037|PT|S62.156S|ICD10CM|Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, sequela|Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, sequela +C0559422|T037|HT|S62.16|ICD10CM|Fracture of pisiform|Fracture of pisiform +C0559422|T037|AB|S62.16|ICD10CM|Fracture of pisiform|Fracture of pisiform +C2850906|T037|AB|S62.161|ICD10CM|Displaced fracture of pisiform, right wrist|Displaced fracture of pisiform, right wrist +C2850906|T037|HT|S62.161|ICD10CM|Displaced fracture of pisiform, right wrist|Displaced fracture of pisiform, right wrist +C2850907|T037|AB|S62.161A|ICD10CM|Disp fx of pisiform, right wrist, init for clos fx|Disp fx of pisiform, right wrist, init for clos fx +C2850907|T037|PT|S62.161A|ICD10CM|Displaced fracture of pisiform, right wrist, initial encounter for closed fracture|Displaced fracture of pisiform, right wrist, initial encounter for closed fracture +C2850908|T037|AB|S62.161B|ICD10CM|Disp fx of pisiform, right wrist, init for opn fx|Disp fx of pisiform, right wrist, init for opn fx +C2850908|T037|PT|S62.161B|ICD10CM|Displaced fracture of pisiform, right wrist, initial encounter for open fracture|Displaced fracture of pisiform, right wrist, initial encounter for open fracture +C2850909|T037|AB|S62.161D|ICD10CM|Disp fx of pisiform, right wrist, subs for fx w routn heal|Disp fx of pisiform, right wrist, subs for fx w routn heal +C2850909|T037|PT|S62.161D|ICD10CM|Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with routine healing|Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with routine healing +C2850910|T037|AB|S62.161G|ICD10CM|Disp fx of pisiform, right wrist, subs for fx w delay heal|Disp fx of pisiform, right wrist, subs for fx w delay heal +C2850910|T037|PT|S62.161G|ICD10CM|Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with delayed healing|Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with delayed healing +C2850911|T037|AB|S62.161K|ICD10CM|Disp fx of pisiform, right wrist, subs for fx w nonunion|Disp fx of pisiform, right wrist, subs for fx w nonunion +C2850911|T037|PT|S62.161K|ICD10CM|Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with nonunion|Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with nonunion +C2850912|T037|AB|S62.161P|ICD10CM|Disp fx of pisiform, right wrist, subs for fx w malunion|Disp fx of pisiform, right wrist, subs for fx w malunion +C2850912|T037|PT|S62.161P|ICD10CM|Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with malunion|Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with malunion +C2850913|T037|PT|S62.161S|ICD10CM|Displaced fracture of pisiform, right wrist, sequela|Displaced fracture of pisiform, right wrist, sequela +C2850913|T037|AB|S62.161S|ICD10CM|Displaced fracture of pisiform, right wrist, sequela|Displaced fracture of pisiform, right wrist, sequela +C2850914|T037|AB|S62.162|ICD10CM|Displaced fracture of pisiform, left wrist|Displaced fracture of pisiform, left wrist +C2850914|T037|HT|S62.162|ICD10CM|Displaced fracture of pisiform, left wrist|Displaced fracture of pisiform, left wrist +C2850915|T037|AB|S62.162A|ICD10CM|Disp fx of pisiform, left wrist, init for clos fx|Disp fx of pisiform, left wrist, init for clos fx +C2850915|T037|PT|S62.162A|ICD10CM|Displaced fracture of pisiform, left wrist, initial encounter for closed fracture|Displaced fracture of pisiform, left wrist, initial encounter for closed fracture +C2850916|T037|AB|S62.162B|ICD10CM|Disp fx of pisiform, left wrist, init for opn fx|Disp fx of pisiform, left wrist, init for opn fx +C2850916|T037|PT|S62.162B|ICD10CM|Displaced fracture of pisiform, left wrist, initial encounter for open fracture|Displaced fracture of pisiform, left wrist, initial encounter for open fracture +C2850917|T037|AB|S62.162D|ICD10CM|Disp fx of pisiform, left wrist, subs for fx w routn heal|Disp fx of pisiform, left wrist, subs for fx w routn heal +C2850917|T037|PT|S62.162D|ICD10CM|Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with routine healing|Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with routine healing +C2850918|T037|AB|S62.162G|ICD10CM|Disp fx of pisiform, left wrist, subs for fx w delay heal|Disp fx of pisiform, left wrist, subs for fx w delay heal +C2850918|T037|PT|S62.162G|ICD10CM|Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with delayed healing|Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with delayed healing +C2850919|T037|AB|S62.162K|ICD10CM|Disp fx of pisiform, left wrist, subs for fx w nonunion|Disp fx of pisiform, left wrist, subs for fx w nonunion +C2850919|T037|PT|S62.162K|ICD10CM|Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with nonunion|Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with nonunion +C2850920|T037|AB|S62.162P|ICD10CM|Disp fx of pisiform, left wrist, subs for fx w malunion|Disp fx of pisiform, left wrist, subs for fx w malunion +C2850920|T037|PT|S62.162P|ICD10CM|Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with malunion|Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with malunion +C2850921|T037|PT|S62.162S|ICD10CM|Displaced fracture of pisiform, left wrist, sequela|Displaced fracture of pisiform, left wrist, sequela +C2850921|T037|AB|S62.162S|ICD10CM|Displaced fracture of pisiform, left wrist, sequela|Displaced fracture of pisiform, left wrist, sequela +C2850922|T037|AB|S62.163|ICD10CM|Displaced fracture of pisiform, unspecified wrist|Displaced fracture of pisiform, unspecified wrist +C2850922|T037|HT|S62.163|ICD10CM|Displaced fracture of pisiform, unspecified wrist|Displaced fracture of pisiform, unspecified wrist +C2850923|T037|AB|S62.163A|ICD10CM|Disp fx of pisiform, unsp wrist, init for clos fx|Disp fx of pisiform, unsp wrist, init for clos fx +C2850923|T037|PT|S62.163A|ICD10CM|Displaced fracture of pisiform, unspecified wrist, initial encounter for closed fracture|Displaced fracture of pisiform, unspecified wrist, initial encounter for closed fracture +C2850924|T037|AB|S62.163B|ICD10CM|Disp fx of pisiform, unsp wrist, init for opn fx|Disp fx of pisiform, unsp wrist, init for opn fx +C2850924|T037|PT|S62.163B|ICD10CM|Displaced fracture of pisiform, unspecified wrist, initial encounter for open fracture|Displaced fracture of pisiform, unspecified wrist, initial encounter for open fracture +C2850925|T037|AB|S62.163D|ICD10CM|Disp fx of pisiform, unsp wrist, subs for fx w routn heal|Disp fx of pisiform, unsp wrist, subs for fx w routn heal +C2850926|T037|AB|S62.163G|ICD10CM|Disp fx of pisiform, unsp wrist, subs for fx w delay heal|Disp fx of pisiform, unsp wrist, subs for fx w delay heal +C2850927|T037|AB|S62.163K|ICD10CM|Disp fx of pisiform, unsp wrist, subs for fx w nonunion|Disp fx of pisiform, unsp wrist, subs for fx w nonunion +C2850927|T037|PT|S62.163K|ICD10CM|Displaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with nonunion|Displaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with nonunion +C2850928|T037|AB|S62.163P|ICD10CM|Disp fx of pisiform, unsp wrist, subs for fx w malunion|Disp fx of pisiform, unsp wrist, subs for fx w malunion +C2850928|T037|PT|S62.163P|ICD10CM|Displaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with malunion|Displaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with malunion +C2850929|T037|PT|S62.163S|ICD10CM|Displaced fracture of pisiform, unspecified wrist, sequela|Displaced fracture of pisiform, unspecified wrist, sequela +C2850929|T037|AB|S62.163S|ICD10CM|Displaced fracture of pisiform, unspecified wrist, sequela|Displaced fracture of pisiform, unspecified wrist, sequela +C2850930|T037|AB|S62.164|ICD10CM|Nondisplaced fracture of pisiform, right wrist|Nondisplaced fracture of pisiform, right wrist +C2850930|T037|HT|S62.164|ICD10CM|Nondisplaced fracture of pisiform, right wrist|Nondisplaced fracture of pisiform, right wrist +C2850931|T037|AB|S62.164A|ICD10CM|Nondisp fx of pisiform, right wrist, init for clos fx|Nondisp fx of pisiform, right wrist, init for clos fx +C2850931|T037|PT|S62.164A|ICD10CM|Nondisplaced fracture of pisiform, right wrist, initial encounter for closed fracture|Nondisplaced fracture of pisiform, right wrist, initial encounter for closed fracture +C2850932|T037|AB|S62.164B|ICD10CM|Nondisp fx of pisiform, right wrist, init for opn fx|Nondisp fx of pisiform, right wrist, init for opn fx +C2850932|T037|PT|S62.164B|ICD10CM|Nondisplaced fracture of pisiform, right wrist, initial encounter for open fracture|Nondisplaced fracture of pisiform, right wrist, initial encounter for open fracture +C2850933|T037|AB|S62.164D|ICD10CM|Nondisp fx of pisiform, r wrist, subs for fx w routn heal|Nondisp fx of pisiform, r wrist, subs for fx w routn heal +C2850934|T037|AB|S62.164G|ICD10CM|Nondisp fx of pisiform, r wrist, subs for fx w delay heal|Nondisp fx of pisiform, r wrist, subs for fx w delay heal +C2850935|T037|AB|S62.164K|ICD10CM|Nondisp fx of pisiform, right wrist, subs for fx w nonunion|Nondisp fx of pisiform, right wrist, subs for fx w nonunion +C2850935|T037|PT|S62.164K|ICD10CM|Nondisplaced fracture of pisiform, right wrist, subsequent encounter for fracture with nonunion|Nondisplaced fracture of pisiform, right wrist, subsequent encounter for fracture with nonunion +C2850936|T037|AB|S62.164P|ICD10CM|Nondisp fx of pisiform, right wrist, subs for fx w malunion|Nondisp fx of pisiform, right wrist, subs for fx w malunion +C2850936|T037|PT|S62.164P|ICD10CM|Nondisplaced fracture of pisiform, right wrist, subsequent encounter for fracture with malunion|Nondisplaced fracture of pisiform, right wrist, subsequent encounter for fracture with malunion +C2850937|T037|PT|S62.164S|ICD10CM|Nondisplaced fracture of pisiform, right wrist, sequela|Nondisplaced fracture of pisiform, right wrist, sequela +C2850937|T037|AB|S62.164S|ICD10CM|Nondisplaced fracture of pisiform, right wrist, sequela|Nondisplaced fracture of pisiform, right wrist, sequela +C2850938|T037|AB|S62.165|ICD10CM|Nondisplaced fracture of pisiform, left wrist|Nondisplaced fracture of pisiform, left wrist +C2850938|T037|HT|S62.165|ICD10CM|Nondisplaced fracture of pisiform, left wrist|Nondisplaced fracture of pisiform, left wrist +C2850939|T037|AB|S62.165A|ICD10CM|Nondisp fx of pisiform, left wrist, init for clos fx|Nondisp fx of pisiform, left wrist, init for clos fx +C2850939|T037|PT|S62.165A|ICD10CM|Nondisplaced fracture of pisiform, left wrist, initial encounter for closed fracture|Nondisplaced fracture of pisiform, left wrist, initial encounter for closed fracture +C2850940|T037|AB|S62.165B|ICD10CM|Nondisp fx of pisiform, left wrist, init for opn fx|Nondisp fx of pisiform, left wrist, init for opn fx +C2850940|T037|PT|S62.165B|ICD10CM|Nondisplaced fracture of pisiform, left wrist, initial encounter for open fracture|Nondisplaced fracture of pisiform, left wrist, initial encounter for open fracture +C2850941|T037|AB|S62.165D|ICD10CM|Nondisp fx of pisiform, left wrist, subs for fx w routn heal|Nondisp fx of pisiform, left wrist, subs for fx w routn heal +C2850942|T037|AB|S62.165G|ICD10CM|Nondisp fx of pisiform, left wrist, subs for fx w delay heal|Nondisp fx of pisiform, left wrist, subs for fx w delay heal +C2850943|T037|AB|S62.165K|ICD10CM|Nondisp fx of pisiform, left wrist, subs for fx w nonunion|Nondisp fx of pisiform, left wrist, subs for fx w nonunion +C2850943|T037|PT|S62.165K|ICD10CM|Nondisplaced fracture of pisiform, left wrist, subsequent encounter for fracture with nonunion|Nondisplaced fracture of pisiform, left wrist, subsequent encounter for fracture with nonunion +C2850944|T037|AB|S62.165P|ICD10CM|Nondisp fx of pisiform, left wrist, subs for fx w malunion|Nondisp fx of pisiform, left wrist, subs for fx w malunion +C2850944|T037|PT|S62.165P|ICD10CM|Nondisplaced fracture of pisiform, left wrist, subsequent encounter for fracture with malunion|Nondisplaced fracture of pisiform, left wrist, subsequent encounter for fracture with malunion +C2850945|T037|PT|S62.165S|ICD10CM|Nondisplaced fracture of pisiform, left wrist, sequela|Nondisplaced fracture of pisiform, left wrist, sequela +C2850945|T037|AB|S62.165S|ICD10CM|Nondisplaced fracture of pisiform, left wrist, sequela|Nondisplaced fracture of pisiform, left wrist, sequela +C2850946|T037|AB|S62.166|ICD10CM|Nondisplaced fracture of pisiform, unspecified wrist|Nondisplaced fracture of pisiform, unspecified wrist +C2850946|T037|HT|S62.166|ICD10CM|Nondisplaced fracture of pisiform, unspecified wrist|Nondisplaced fracture of pisiform, unspecified wrist +C2850947|T037|AB|S62.166A|ICD10CM|Nondisp fx of pisiform, unsp wrist, init for clos fx|Nondisp fx of pisiform, unsp wrist, init for clos fx +C2850947|T037|PT|S62.166A|ICD10CM|Nondisplaced fracture of pisiform, unspecified wrist, initial encounter for closed fracture|Nondisplaced fracture of pisiform, unspecified wrist, initial encounter for closed fracture +C2850948|T037|AB|S62.166B|ICD10CM|Nondisp fx of pisiform, unsp wrist, init for opn fx|Nondisp fx of pisiform, unsp wrist, init for opn fx +C2850948|T037|PT|S62.166B|ICD10CM|Nondisplaced fracture of pisiform, unspecified wrist, initial encounter for open fracture|Nondisplaced fracture of pisiform, unspecified wrist, initial encounter for open fracture +C2850949|T037|AB|S62.166D|ICD10CM|Nondisp fx of pisiform, unsp wrist, subs for fx w routn heal|Nondisp fx of pisiform, unsp wrist, subs for fx w routn heal +C2850950|T037|AB|S62.166G|ICD10CM|Nondisp fx of pisiform, unsp wrist, subs for fx w delay heal|Nondisp fx of pisiform, unsp wrist, subs for fx w delay heal +C2850951|T037|AB|S62.166K|ICD10CM|Nondisp fx of pisiform, unsp wrist, subs for fx w nonunion|Nondisp fx of pisiform, unsp wrist, subs for fx w nonunion +C2850952|T037|AB|S62.166P|ICD10CM|Nondisp fx of pisiform, unsp wrist, subs for fx w malunion|Nondisp fx of pisiform, unsp wrist, subs for fx w malunion +C2850953|T037|AB|S62.166S|ICD10CM|Nondisp fx of pisiform, unspecified wrist, sequela|Nondisp fx of pisiform, unspecified wrist, sequela +C2850953|T037|PT|S62.166S|ICD10CM|Nondisplaced fracture of pisiform, unspecified wrist, sequela|Nondisplaced fracture of pisiform, unspecified wrist, sequela +C2850954|T037|AB|S62.17|ICD10CM|Fracture of trapezium [larger multangular]|Fracture of trapezium [larger multangular] +C2850954|T037|HT|S62.17|ICD10CM|Fracture of trapezium [larger multangular]|Fracture of trapezium [larger multangular] +C2850955|T037|HT|S62.171|ICD10CM|Displaced fracture of trapezium [larger multangular], right wrist|Displaced fracture of trapezium [larger multangular], right wrist +C2850955|T037|AB|S62.171|ICD10CM|Displaced fracture of trapezium, right wrist|Displaced fracture of trapezium, right wrist +C2850956|T037|AB|S62.171A|ICD10CM|Disp fx of trapezium, right wrist, init for clos fx|Disp fx of trapezium, right wrist, init for clos fx +C2850957|T037|AB|S62.171B|ICD10CM|Disp fx of trapezium, right wrist, init for opn fx|Disp fx of trapezium, right wrist, init for opn fx +C2850958|T037|AB|S62.171D|ICD10CM|Disp fx of trapezium, right wrist, subs for fx w routn heal|Disp fx of trapezium, right wrist, subs for fx w routn heal +C2850959|T037|AB|S62.171G|ICD10CM|Disp fx of trapezium, right wrist, subs for fx w delay heal|Disp fx of trapezium, right wrist, subs for fx w delay heal +C2850960|T037|AB|S62.171K|ICD10CM|Disp fx of trapezium, right wrist, subs for fx w nonunion|Disp fx of trapezium, right wrist, subs for fx w nonunion +C2850961|T037|AB|S62.171P|ICD10CM|Disp fx of trapezium, right wrist, subs for fx w malunion|Disp fx of trapezium, right wrist, subs for fx w malunion +C2850962|T037|PT|S62.171S|ICD10CM|Displaced fracture of trapezium [larger multangular], right wrist, sequela|Displaced fracture of trapezium [larger multangular], right wrist, sequela +C2850962|T037|AB|S62.171S|ICD10CM|Displaced fracture of trapezium, right wrist, sequela|Displaced fracture of trapezium, right wrist, sequela +C2850963|T037|HT|S62.172|ICD10CM|Displaced fracture of trapezium [larger multangular], left wrist|Displaced fracture of trapezium [larger multangular], left wrist +C2850963|T037|AB|S62.172|ICD10CM|Displaced fracture of trapezium, left wrist|Displaced fracture of trapezium, left wrist +C2850964|T037|AB|S62.172A|ICD10CM|Disp fx of trapezium, left wrist, init for clos fx|Disp fx of trapezium, left wrist, init for clos fx +C2850965|T037|AB|S62.172B|ICD10CM|Disp fx of trapezium, left wrist, init for opn fx|Disp fx of trapezium, left wrist, init for opn fx +C2850966|T037|AB|S62.172D|ICD10CM|Disp fx of trapezium, left wrist, subs for fx w routn heal|Disp fx of trapezium, left wrist, subs for fx w routn heal +C2850967|T037|AB|S62.172G|ICD10CM|Disp fx of trapezium, left wrist, subs for fx w delay heal|Disp fx of trapezium, left wrist, subs for fx w delay heal +C2850968|T037|AB|S62.172K|ICD10CM|Disp fx of trapezium, left wrist, subs for fx w nonunion|Disp fx of trapezium, left wrist, subs for fx w nonunion +C2850969|T037|AB|S62.172P|ICD10CM|Disp fx of trapezium, left wrist, subs for fx w malunion|Disp fx of trapezium, left wrist, subs for fx w malunion +C2850970|T037|PT|S62.172S|ICD10CM|Displaced fracture of trapezium [larger multangular], left wrist, sequela|Displaced fracture of trapezium [larger multangular], left wrist, sequela +C2850970|T037|AB|S62.172S|ICD10CM|Displaced fracture of trapezium, left wrist, sequela|Displaced fracture of trapezium, left wrist, sequela +C2850971|T037|HT|S62.173|ICD10CM|Displaced fracture of trapezium [larger multangular], unspecified wrist|Displaced fracture of trapezium [larger multangular], unspecified wrist +C2850971|T037|AB|S62.173|ICD10CM|Displaced fracture of trapezium, unspecified wrist|Displaced fracture of trapezium, unspecified wrist +C2850972|T037|AB|S62.173A|ICD10CM|Disp fx of trapezium, unsp wrist, init for clos fx|Disp fx of trapezium, unsp wrist, init for clos fx +C2850973|T037|AB|S62.173B|ICD10CM|Disp fx of trapezium, unsp wrist, init for opn fx|Disp fx of trapezium, unsp wrist, init for opn fx +C2850974|T037|AB|S62.173D|ICD10CM|Disp fx of trapezium, unsp wrist, subs for fx w routn heal|Disp fx of trapezium, unsp wrist, subs for fx w routn heal +C2850975|T037|AB|S62.173G|ICD10CM|Disp fx of trapezium, unsp wrist, subs for fx w delay heal|Disp fx of trapezium, unsp wrist, subs for fx w delay heal +C2850976|T037|AB|S62.173K|ICD10CM|Disp fx of trapezium, unsp wrist, subs for fx w nonunion|Disp fx of trapezium, unsp wrist, subs for fx w nonunion +C2850977|T037|AB|S62.173P|ICD10CM|Disp fx of trapezium, unsp wrist, subs for fx w malunion|Disp fx of trapezium, unsp wrist, subs for fx w malunion +C2850978|T037|PT|S62.173S|ICD10CM|Displaced fracture of trapezium [larger multangular], unspecified wrist, sequela|Displaced fracture of trapezium [larger multangular], unspecified wrist, sequela +C2850978|T037|AB|S62.173S|ICD10CM|Displaced fracture of trapezium, unspecified wrist, sequela|Displaced fracture of trapezium, unspecified wrist, sequela +C2850979|T037|HT|S62.174|ICD10CM|Nondisplaced fracture of trapezium [larger multangular], right wrist|Nondisplaced fracture of trapezium [larger multangular], right wrist +C2850979|T037|AB|S62.174|ICD10CM|Nondisplaced fracture of trapezium, right wrist|Nondisplaced fracture of trapezium, right wrist +C2850980|T037|AB|S62.174A|ICD10CM|Nondisp fx of trapezium, right wrist, init for clos fx|Nondisp fx of trapezium, right wrist, init for clos fx +C2850981|T037|AB|S62.174B|ICD10CM|Nondisp fx of trapezium, right wrist, init for opn fx|Nondisp fx of trapezium, right wrist, init for opn fx +C2850982|T037|AB|S62.174D|ICD10CM|Nondisp fx of trapezium, r wrist, subs for fx w routn heal|Nondisp fx of trapezium, r wrist, subs for fx w routn heal +C2850983|T037|AB|S62.174G|ICD10CM|Nondisp fx of trapezium, r wrist, subs for fx w delay heal|Nondisp fx of trapezium, r wrist, subs for fx w delay heal +C2850984|T037|AB|S62.174K|ICD10CM|Nondisp fx of trapezium, right wrist, subs for fx w nonunion|Nondisp fx of trapezium, right wrist, subs for fx w nonunion +C2850985|T037|AB|S62.174P|ICD10CM|Nondisp fx of trapezium, right wrist, subs for fx w malunion|Nondisp fx of trapezium, right wrist, subs for fx w malunion +C2850986|T037|PT|S62.174S|ICD10CM|Nondisplaced fracture of trapezium [larger multangular], right wrist, sequela|Nondisplaced fracture of trapezium [larger multangular], right wrist, sequela +C2850986|T037|AB|S62.174S|ICD10CM|Nondisplaced fracture of trapezium, right wrist, sequela|Nondisplaced fracture of trapezium, right wrist, sequela +C2850987|T037|HT|S62.175|ICD10CM|Nondisplaced fracture of trapezium [larger multangular], left wrist|Nondisplaced fracture of trapezium [larger multangular], left wrist +C2850987|T037|AB|S62.175|ICD10CM|Nondisplaced fracture of trapezium, left wrist|Nondisplaced fracture of trapezium, left wrist +C2850988|T037|AB|S62.175A|ICD10CM|Nondisp fx of trapezium, left wrist, init for clos fx|Nondisp fx of trapezium, left wrist, init for clos fx +C2850989|T037|AB|S62.175B|ICD10CM|Nondisp fx of trapezium, left wrist, init for opn fx|Nondisp fx of trapezium, left wrist, init for opn fx +C2850990|T037|AB|S62.175D|ICD10CM|Nondisp fx of trapezium, l wrist, subs for fx w routn heal|Nondisp fx of trapezium, l wrist, subs for fx w routn heal +C2850991|T037|AB|S62.175G|ICD10CM|Nondisp fx of trapezium, l wrist, subs for fx w delay heal|Nondisp fx of trapezium, l wrist, subs for fx w delay heal +C2850992|T037|AB|S62.175K|ICD10CM|Nondisp fx of trapezium, left wrist, subs for fx w nonunion|Nondisp fx of trapezium, left wrist, subs for fx w nonunion +C2850993|T037|AB|S62.175P|ICD10CM|Nondisp fx of trapezium, left wrist, subs for fx w malunion|Nondisp fx of trapezium, left wrist, subs for fx w malunion +C2850994|T037|PT|S62.175S|ICD10CM|Nondisplaced fracture of trapezium [larger multangular], left wrist, sequela|Nondisplaced fracture of trapezium [larger multangular], left wrist, sequela +C2850994|T037|AB|S62.175S|ICD10CM|Nondisplaced fracture of trapezium, left wrist, sequela|Nondisplaced fracture of trapezium, left wrist, sequela +C2850995|T037|HT|S62.176|ICD10CM|Nondisplaced fracture of trapezium [larger multangular], unspecified wrist|Nondisplaced fracture of trapezium [larger multangular], unspecified wrist +C2850995|T037|AB|S62.176|ICD10CM|Nondisplaced fracture of trapezium, unspecified wrist|Nondisplaced fracture of trapezium, unspecified wrist +C2850996|T037|AB|S62.176A|ICD10CM|Nondisp fx of trapezium, unsp wrist, init for clos fx|Nondisp fx of trapezium, unsp wrist, init for clos fx +C2850997|T037|AB|S62.176B|ICD10CM|Nondisp fx of trapezium, unsp wrist, init for opn fx|Nondisp fx of trapezium, unsp wrist, init for opn fx +C2850998|T037|AB|S62.176D|ICD10CM|Nondisp fx of trapezm, unsp wrist, subs for fx w routn heal|Nondisp fx of trapezm, unsp wrist, subs for fx w routn heal +C2850999|T037|AB|S62.176G|ICD10CM|Nondisp fx of trapezm, unsp wrist, subs for fx w delay heal|Nondisp fx of trapezm, unsp wrist, subs for fx w delay heal +C2851000|T037|AB|S62.176K|ICD10CM|Nondisp fx of trapezium, unsp wrist, subs for fx w nonunion|Nondisp fx of trapezium, unsp wrist, subs for fx w nonunion +C2851001|T037|AB|S62.176P|ICD10CM|Nondisp fx of trapezium, unsp wrist, subs for fx w malunion|Nondisp fx of trapezium, unsp wrist, subs for fx w malunion +C2851002|T037|AB|S62.176S|ICD10CM|Nondisp fx of trapezium, unspecified wrist, sequela|Nondisp fx of trapezium, unspecified wrist, sequela +C2851002|T037|PT|S62.176S|ICD10CM|Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, sequela|Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, sequela +C2851003|T037|AB|S62.18|ICD10CM|Fracture of trapezoid [smaller multangular]|Fracture of trapezoid [smaller multangular] +C2851003|T037|HT|S62.18|ICD10CM|Fracture of trapezoid [smaller multangular]|Fracture of trapezoid [smaller multangular] +C2851004|T037|HT|S62.181|ICD10CM|Displaced fracture of trapezoid [smaller multangular], right wrist|Displaced fracture of trapezoid [smaller multangular], right wrist +C2851004|T037|AB|S62.181|ICD10CM|Displaced fracture of trapezoid, right wrist|Displaced fracture of trapezoid, right wrist +C2851005|T037|AB|S62.181A|ICD10CM|Disp fx of trapezoid, right wrist, init for clos fx|Disp fx of trapezoid, right wrist, init for clos fx +C2851006|T037|AB|S62.181B|ICD10CM|Disp fx of trapezoid, right wrist, init for opn fx|Disp fx of trapezoid, right wrist, init for opn fx +C2851007|T037|AB|S62.181D|ICD10CM|Disp fx of trapezoid, right wrist, subs for fx w routn heal|Disp fx of trapezoid, right wrist, subs for fx w routn heal +C2851008|T037|AB|S62.181G|ICD10CM|Disp fx of trapezoid, right wrist, subs for fx w delay heal|Disp fx of trapezoid, right wrist, subs for fx w delay heal +C2851009|T037|AB|S62.181K|ICD10CM|Disp fx of trapezoid, right wrist, subs for fx w nonunion|Disp fx of trapezoid, right wrist, subs for fx w nonunion +C2851010|T037|AB|S62.181P|ICD10CM|Disp fx of trapezoid, right wrist, subs for fx w malunion|Disp fx of trapezoid, right wrist, subs for fx w malunion +C2851011|T037|PT|S62.181S|ICD10CM|Displaced fracture of trapezoid [smaller multangular], right wrist, sequela|Displaced fracture of trapezoid [smaller multangular], right wrist, sequela +C2851011|T037|AB|S62.181S|ICD10CM|Displaced fracture of trapezoid, right wrist, sequela|Displaced fracture of trapezoid, right wrist, sequela +C2851012|T037|HT|S62.182|ICD10CM|Displaced fracture of trapezoid [smaller multangular], left wrist|Displaced fracture of trapezoid [smaller multangular], left wrist +C2851012|T037|AB|S62.182|ICD10CM|Displaced fracture of trapezoid, left wrist|Displaced fracture of trapezoid, left wrist +C2851013|T037|AB|S62.182A|ICD10CM|Disp fx of trapezoid, left wrist, init for clos fx|Disp fx of trapezoid, left wrist, init for clos fx +C2851014|T037|AB|S62.182B|ICD10CM|Disp fx of trapezoid, left wrist, init for opn fx|Disp fx of trapezoid, left wrist, init for opn fx +C2851015|T037|AB|S62.182D|ICD10CM|Disp fx of trapezoid, left wrist, subs for fx w routn heal|Disp fx of trapezoid, left wrist, subs for fx w routn heal +C2851016|T037|AB|S62.182G|ICD10CM|Disp fx of trapezoid, left wrist, subs for fx w delay heal|Disp fx of trapezoid, left wrist, subs for fx w delay heal +C2851017|T037|AB|S62.182K|ICD10CM|Disp fx of trapezoid, left wrist, subs for fx w nonunion|Disp fx of trapezoid, left wrist, subs for fx w nonunion +C2851018|T037|AB|S62.182P|ICD10CM|Disp fx of trapezoid, left wrist, subs for fx w malunion|Disp fx of trapezoid, left wrist, subs for fx w malunion +C2851019|T037|PT|S62.182S|ICD10CM|Displaced fracture of trapezoid [smaller multangular], left wrist, sequela|Displaced fracture of trapezoid [smaller multangular], left wrist, sequela +C2851019|T037|AB|S62.182S|ICD10CM|Displaced fracture of trapezoid, left wrist, sequela|Displaced fracture of trapezoid, left wrist, sequela +C2851020|T037|HT|S62.183|ICD10CM|Displaced fracture of trapezoid [smaller multangular], unspecified wrist|Displaced fracture of trapezoid [smaller multangular], unspecified wrist +C2851020|T037|AB|S62.183|ICD10CM|Displaced fracture of trapezoid, unspecified wrist|Displaced fracture of trapezoid, unspecified wrist +C2851021|T037|AB|S62.183A|ICD10CM|Disp fx of trapezoid, unsp wrist, init for clos fx|Disp fx of trapezoid, unsp wrist, init for clos fx +C2851022|T037|AB|S62.183B|ICD10CM|Disp fx of trapezoid, unsp wrist, init for opn fx|Disp fx of trapezoid, unsp wrist, init for opn fx +C2851023|T037|AB|S62.183D|ICD10CM|Disp fx of trapezoid, unsp wrist, subs for fx w routn heal|Disp fx of trapezoid, unsp wrist, subs for fx w routn heal +C2851024|T037|AB|S62.183G|ICD10CM|Disp fx of trapezoid, unsp wrist, subs for fx w delay heal|Disp fx of trapezoid, unsp wrist, subs for fx w delay heal +C2851025|T037|AB|S62.183K|ICD10CM|Disp fx of trapezoid, unsp wrist, subs for fx w nonunion|Disp fx of trapezoid, unsp wrist, subs for fx w nonunion +C2851026|T037|AB|S62.183P|ICD10CM|Disp fx of trapezoid, unsp wrist, subs for fx w malunion|Disp fx of trapezoid, unsp wrist, subs for fx w malunion +C2851027|T037|PT|S62.183S|ICD10CM|Displaced fracture of trapezoid [smaller multangular], unspecified wrist, sequela|Displaced fracture of trapezoid [smaller multangular], unspecified wrist, sequela +C2851027|T037|AB|S62.183S|ICD10CM|Displaced fracture of trapezoid, unspecified wrist, sequela|Displaced fracture of trapezoid, unspecified wrist, sequela +C2851028|T037|HT|S62.184|ICD10CM|Nondisplaced fracture of trapezoid [smaller multangular], right wrist|Nondisplaced fracture of trapezoid [smaller multangular], right wrist +C2851028|T037|AB|S62.184|ICD10CM|Nondisplaced fracture of trapezoid, right wrist|Nondisplaced fracture of trapezoid, right wrist +C2851029|T037|AB|S62.184A|ICD10CM|Nondisp fx of trapezoid, right wrist, init for clos fx|Nondisp fx of trapezoid, right wrist, init for clos fx +C2851030|T037|AB|S62.184B|ICD10CM|Nondisp fx of trapezoid, right wrist, init for opn fx|Nondisp fx of trapezoid, right wrist, init for opn fx +C2851031|T037|AB|S62.184D|ICD10CM|Nondisp fx of trapezoid, r wrist, subs for fx w routn heal|Nondisp fx of trapezoid, r wrist, subs for fx w routn heal +C2851032|T037|AB|S62.184G|ICD10CM|Nondisp fx of trapezoid, r wrist, subs for fx w delay heal|Nondisp fx of trapezoid, r wrist, subs for fx w delay heal +C2851033|T037|AB|S62.184K|ICD10CM|Nondisp fx of trapezoid, right wrist, subs for fx w nonunion|Nondisp fx of trapezoid, right wrist, subs for fx w nonunion +C2851034|T037|AB|S62.184P|ICD10CM|Nondisp fx of trapezoid, right wrist, subs for fx w malunion|Nondisp fx of trapezoid, right wrist, subs for fx w malunion +C2851035|T037|PT|S62.184S|ICD10CM|Nondisplaced fracture of trapezoid [smaller multangular], right wrist, sequela|Nondisplaced fracture of trapezoid [smaller multangular], right wrist, sequela +C2851035|T037|AB|S62.184S|ICD10CM|Nondisplaced fracture of trapezoid, right wrist, sequela|Nondisplaced fracture of trapezoid, right wrist, sequela +C2851036|T037|HT|S62.185|ICD10CM|Nondisplaced fracture of trapezoid [smaller multangular], left wrist|Nondisplaced fracture of trapezoid [smaller multangular], left wrist +C2851036|T037|AB|S62.185|ICD10CM|Nondisplaced fracture of trapezoid, left wrist|Nondisplaced fracture of trapezoid, left wrist +C2851037|T037|AB|S62.185A|ICD10CM|Nondisp fx of trapezoid, left wrist, init for clos fx|Nondisp fx of trapezoid, left wrist, init for clos fx +C2851038|T037|AB|S62.185B|ICD10CM|Nondisp fx of trapezoid, left wrist, init for opn fx|Nondisp fx of trapezoid, left wrist, init for opn fx +C2851039|T037|AB|S62.185D|ICD10CM|Nondisp fx of trapezoid, l wrist, subs for fx w routn heal|Nondisp fx of trapezoid, l wrist, subs for fx w routn heal +C2851040|T037|AB|S62.185G|ICD10CM|Nondisp fx of trapezoid, l wrist, subs for fx w delay heal|Nondisp fx of trapezoid, l wrist, subs for fx w delay heal +C2851041|T037|AB|S62.185K|ICD10CM|Nondisp fx of trapezoid, left wrist, subs for fx w nonunion|Nondisp fx of trapezoid, left wrist, subs for fx w nonunion +C2851042|T037|AB|S62.185P|ICD10CM|Nondisp fx of trapezoid, left wrist, subs for fx w malunion|Nondisp fx of trapezoid, left wrist, subs for fx w malunion +C2851043|T037|PT|S62.185S|ICD10CM|Nondisplaced fracture of trapezoid [smaller multangular], left wrist, sequela|Nondisplaced fracture of trapezoid [smaller multangular], left wrist, sequela +C2851043|T037|AB|S62.185S|ICD10CM|Nondisplaced fracture of trapezoid, left wrist, sequela|Nondisplaced fracture of trapezoid, left wrist, sequela +C2851044|T037|HT|S62.186|ICD10CM|Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist|Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist +C2851044|T037|AB|S62.186|ICD10CM|Nondisplaced fracture of trapezoid, unspecified wrist|Nondisplaced fracture of trapezoid, unspecified wrist +C2851045|T037|AB|S62.186A|ICD10CM|Nondisp fx of trapezoid, unsp wrist, init for clos fx|Nondisp fx of trapezoid, unsp wrist, init for clos fx +C2851046|T037|AB|S62.186B|ICD10CM|Nondisp fx of trapezoid, unsp wrist, init for opn fx|Nondisp fx of trapezoid, unsp wrist, init for opn fx +C2851047|T037|AB|S62.186D|ICD10CM|Nondisp fx of trapezd, unsp wrist, subs for fx w routn heal|Nondisp fx of trapezd, unsp wrist, subs for fx w routn heal +C2851048|T037|AB|S62.186G|ICD10CM|Nondisp fx of trapezd, unsp wrist, subs for fx w delay heal|Nondisp fx of trapezd, unsp wrist, subs for fx w delay heal +C2851049|T037|AB|S62.186K|ICD10CM|Nondisp fx of trapezoid, unsp wrist, subs for fx w nonunion|Nondisp fx of trapezoid, unsp wrist, subs for fx w nonunion +C2851050|T037|AB|S62.186P|ICD10CM|Nondisp fx of trapezoid, unsp wrist, subs for fx w malunion|Nondisp fx of trapezoid, unsp wrist, subs for fx w malunion +C2851051|T037|AB|S62.186S|ICD10CM|Nondisp fx of trapezoid, unspecified wrist, sequela|Nondisp fx of trapezoid, unspecified wrist, sequela +C2851051|T037|PT|S62.186S|ICD10CM|Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, sequela|Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, sequela +C0272678|T037|HT|S62.2|ICD10CM|Fracture of first metacarpal bone|Fracture of first metacarpal bone +C0272678|T037|AB|S62.2|ICD10CM|Fracture of first metacarpal bone|Fracture of first metacarpal bone +C0272678|T037|PT|S62.2|ICD10|Fracture of first metacarpal bone|Fracture of first metacarpal bone +C2851052|T037|AB|S62.20|ICD10CM|Unspecified fracture of first metacarpal bone|Unspecified fracture of first metacarpal bone +C2851052|T037|HT|S62.20|ICD10CM|Unspecified fracture of first metacarpal bone|Unspecified fracture of first metacarpal bone +C2851053|T037|AB|S62.201|ICD10CM|Unspecified fracture of first metacarpal bone, right hand|Unspecified fracture of first metacarpal bone, right hand +C2851053|T037|HT|S62.201|ICD10CM|Unspecified fracture of first metacarpal bone, right hand|Unspecified fracture of first metacarpal bone, right hand +C2851054|T037|AB|S62.201A|ICD10CM|Unsp fracture of first metacarpal bone, right hand, init|Unsp fracture of first metacarpal bone, right hand, init +C2851054|T037|PT|S62.201A|ICD10CM|Unspecified fracture of first metacarpal bone, right hand, initial encounter for closed fracture|Unspecified fracture of first metacarpal bone, right hand, initial encounter for closed fracture +C2851055|T037|AB|S62.201B|ICD10CM|Unsp fx first metacarpal bone, right hand, init for opn fx|Unsp fx first metacarpal bone, right hand, init for opn fx +C2851055|T037|PT|S62.201B|ICD10CM|Unspecified fracture of first metacarpal bone, right hand, initial encounter for open fracture|Unspecified fracture of first metacarpal bone, right hand, initial encounter for open fracture +C2851056|T037|AB|S62.201D|ICD10CM|Unsp fx first MC bone, right hand, subs for fx w routn heal|Unsp fx first MC bone, right hand, subs for fx w routn heal +C2851057|T037|AB|S62.201G|ICD10CM|Unsp fx first MC bone, right hand, subs for fx w delay heal|Unsp fx first MC bone, right hand, subs for fx w delay heal +C2851058|T037|AB|S62.201K|ICD10CM|Unsp fx first MC bone, right hand, subs for fx w nonunion|Unsp fx first MC bone, right hand, subs for fx w nonunion +C2851059|T037|AB|S62.201P|ICD10CM|Unsp fx first MC bone, right hand, subs for fx w malunion|Unsp fx first MC bone, right hand, subs for fx w malunion +C2851060|T037|AB|S62.201S|ICD10CM|Unsp fracture of first metacarpal bone, right hand, sequela|Unsp fracture of first metacarpal bone, right hand, sequela +C2851060|T037|PT|S62.201S|ICD10CM|Unspecified fracture of first metacarpal bone, right hand, sequela|Unspecified fracture of first metacarpal bone, right hand, sequela +C2851061|T037|AB|S62.202|ICD10CM|Unspecified fracture of first metacarpal bone, left hand|Unspecified fracture of first metacarpal bone, left hand +C2851061|T037|HT|S62.202|ICD10CM|Unspecified fracture of first metacarpal bone, left hand|Unspecified fracture of first metacarpal bone, left hand +C2851062|T037|AB|S62.202A|ICD10CM|Unsp fracture of first metacarpal bone, left hand, init|Unsp fracture of first metacarpal bone, left hand, init +C2851062|T037|PT|S62.202A|ICD10CM|Unspecified fracture of first metacarpal bone, left hand, initial encounter for closed fracture|Unspecified fracture of first metacarpal bone, left hand, initial encounter for closed fracture +C2851063|T037|AB|S62.202B|ICD10CM|Unsp fx first metacarpal bone, left hand, init for opn fx|Unsp fx first metacarpal bone, left hand, init for opn fx +C2851063|T037|PT|S62.202B|ICD10CM|Unspecified fracture of first metacarpal bone, left hand, initial encounter for open fracture|Unspecified fracture of first metacarpal bone, left hand, initial encounter for open fracture +C2851064|T037|AB|S62.202D|ICD10CM|Unsp fx first MC bone, left hand, subs for fx w routn heal|Unsp fx first MC bone, left hand, subs for fx w routn heal +C2851065|T037|AB|S62.202G|ICD10CM|Unsp fx first MC bone, left hand, subs for fx w delay heal|Unsp fx first MC bone, left hand, subs for fx w delay heal +C2851066|T037|AB|S62.202K|ICD10CM|Unsp fx first MC bone, left hand, subs for fx w nonunion|Unsp fx first MC bone, left hand, subs for fx w nonunion +C2851067|T037|AB|S62.202P|ICD10CM|Unsp fx first MC bone, left hand, subs for fx w malunion|Unsp fx first MC bone, left hand, subs for fx w malunion +C2851068|T037|AB|S62.202S|ICD10CM|Unsp fracture of first metacarpal bone, left hand, sequela|Unsp fracture of first metacarpal bone, left hand, sequela +C2851068|T037|PT|S62.202S|ICD10CM|Unspecified fracture of first metacarpal bone, left hand, sequela|Unspecified fracture of first metacarpal bone, left hand, sequela +C2851069|T037|AB|S62.209|ICD10CM|Unsp fracture of first metacarpal bone, unspecified hand|Unsp fracture of first metacarpal bone, unspecified hand +C2851069|T037|HT|S62.209|ICD10CM|Unspecified fracture of first metacarpal bone, unspecified hand|Unspecified fracture of first metacarpal bone, unspecified hand +C2851070|T037|AB|S62.209A|ICD10CM|Unsp fracture of first metacarpal bone, unsp hand, init|Unsp fracture of first metacarpal bone, unsp hand, init +C2851071|T037|AB|S62.209B|ICD10CM|Unsp fx first metacarpal bone, unsp hand, init for opn fx|Unsp fx first metacarpal bone, unsp hand, init for opn fx +C2851071|T037|PT|S62.209B|ICD10CM|Unspecified fracture of first metacarpal bone, unspecified hand, initial encounter for open fracture|Unspecified fracture of first metacarpal bone, unspecified hand, initial encounter for open fracture +C2851072|T037|AB|S62.209D|ICD10CM|Unsp fx first MC bone, unsp hand, subs for fx w routn heal|Unsp fx first MC bone, unsp hand, subs for fx w routn heal +C2851073|T037|AB|S62.209G|ICD10CM|Unsp fx first MC bone, unsp hand, subs for fx w delay heal|Unsp fx first MC bone, unsp hand, subs for fx w delay heal +C2851074|T037|AB|S62.209K|ICD10CM|Unsp fx first MC bone, unsp hand, subs for fx w nonunion|Unsp fx first MC bone, unsp hand, subs for fx w nonunion +C2851075|T037|AB|S62.209P|ICD10CM|Unsp fx first MC bone, unsp hand, subs for fx w malunion|Unsp fx first MC bone, unsp hand, subs for fx w malunion +C2851076|T037|AB|S62.209S|ICD10CM|Unsp fracture of first metacarpal bone, unsp hand, sequela|Unsp fracture of first metacarpal bone, unsp hand, sequela +C2851076|T037|PT|S62.209S|ICD10CM|Unspecified fracture of first metacarpal bone, unspecified hand, sequela|Unspecified fracture of first metacarpal bone, unspecified hand, sequela +C0559411|T037|HT|S62.21|ICD10CM|Bennett's fracture|Bennett's fracture +C0559411|T037|AB|S62.21|ICD10CM|Bennett's fracture|Bennett's fracture +C2851077|T037|AB|S62.211|ICD10CM|Bennett's fracture, right hand|Bennett's fracture, right hand +C2851077|T037|HT|S62.211|ICD10CM|Bennett's fracture, right hand|Bennett's fracture, right hand +C2851078|T037|AB|S62.211A|ICD10CM|Bennett's fracture, right hand, init for clos fx|Bennett's fracture, right hand, init for clos fx +C2851078|T037|PT|S62.211A|ICD10CM|Bennett's fracture, right hand, initial encounter for closed fracture|Bennett's fracture, right hand, initial encounter for closed fracture +C2851079|T037|AB|S62.211B|ICD10CM|Bennett's fracture, right hand, init for opn fx|Bennett's fracture, right hand, init for opn fx +C2851079|T037|PT|S62.211B|ICD10CM|Bennett's fracture, right hand, initial encounter for open fracture|Bennett's fracture, right hand, initial encounter for open fracture +C2851080|T037|AB|S62.211D|ICD10CM|Bennett's fracture, right hand, subs for fx w routn heal|Bennett's fracture, right hand, subs for fx w routn heal +C2851080|T037|PT|S62.211D|ICD10CM|Bennett's fracture, right hand, subsequent encounter for fracture with routine healing|Bennett's fracture, right hand, subsequent encounter for fracture with routine healing +C2851081|T037|AB|S62.211G|ICD10CM|Bennett's fracture, right hand, subs for fx w delay heal|Bennett's fracture, right hand, subs for fx w delay heal +C2851081|T037|PT|S62.211G|ICD10CM|Bennett's fracture, right hand, subsequent encounter for fracture with delayed healing|Bennett's fracture, right hand, subsequent encounter for fracture with delayed healing +C2851082|T037|AB|S62.211K|ICD10CM|Bennett's fracture, right hand, subs for fx w nonunion|Bennett's fracture, right hand, subs for fx w nonunion +C2851082|T037|PT|S62.211K|ICD10CM|Bennett's fracture, right hand, subsequent encounter for fracture with nonunion|Bennett's fracture, right hand, subsequent encounter for fracture with nonunion +C2851083|T037|AB|S62.211P|ICD10CM|Bennett's fracture, right hand, subs for fx w malunion|Bennett's fracture, right hand, subs for fx w malunion +C2851083|T037|PT|S62.211P|ICD10CM|Bennett's fracture, right hand, subsequent encounter for fracture with malunion|Bennett's fracture, right hand, subsequent encounter for fracture with malunion +C2851084|T037|PT|S62.211S|ICD10CM|Bennett's fracture, right hand, sequela|Bennett's fracture, right hand, sequela +C2851084|T037|AB|S62.211S|ICD10CM|Bennett's fracture, right hand, sequela|Bennett's fracture, right hand, sequela +C2851085|T037|AB|S62.212|ICD10CM|Bennett's fracture, left hand|Bennett's fracture, left hand +C2851085|T037|HT|S62.212|ICD10CM|Bennett's fracture, left hand|Bennett's fracture, left hand +C2851086|T037|AB|S62.212A|ICD10CM|Bennett's fracture, left hand, init for clos fx|Bennett's fracture, left hand, init for clos fx +C2851086|T037|PT|S62.212A|ICD10CM|Bennett's fracture, left hand, initial encounter for closed fracture|Bennett's fracture, left hand, initial encounter for closed fracture +C2851087|T037|AB|S62.212B|ICD10CM|Bennett's fracture, left hand, init encntr for open fracture|Bennett's fracture, left hand, init encntr for open fracture +C2851087|T037|PT|S62.212B|ICD10CM|Bennett's fracture, left hand, initial encounter for open fracture|Bennett's fracture, left hand, initial encounter for open fracture +C2851088|T037|AB|S62.212D|ICD10CM|Bennett's fracture, left hand, subs for fx w routn heal|Bennett's fracture, left hand, subs for fx w routn heal +C2851088|T037|PT|S62.212D|ICD10CM|Bennett's fracture, left hand, subsequent encounter for fracture with routine healing|Bennett's fracture, left hand, subsequent encounter for fracture with routine healing +C2851089|T037|AB|S62.212G|ICD10CM|Bennett's fracture, left hand, subs for fx w delay heal|Bennett's fracture, left hand, subs for fx w delay heal +C2851089|T037|PT|S62.212G|ICD10CM|Bennett's fracture, left hand, subsequent encounter for fracture with delayed healing|Bennett's fracture, left hand, subsequent encounter for fracture with delayed healing +C2851090|T037|AB|S62.212K|ICD10CM|Bennett's fracture, left hand, subs for fx w nonunion|Bennett's fracture, left hand, subs for fx w nonunion +C2851090|T037|PT|S62.212K|ICD10CM|Bennett's fracture, left hand, subsequent encounter for fracture with nonunion|Bennett's fracture, left hand, subsequent encounter for fracture with nonunion +C2851091|T037|AB|S62.212P|ICD10CM|Bennett's fracture, left hand, subs for fx w malunion|Bennett's fracture, left hand, subs for fx w malunion +C2851091|T037|PT|S62.212P|ICD10CM|Bennett's fracture, left hand, subsequent encounter for fracture with malunion|Bennett's fracture, left hand, subsequent encounter for fracture with malunion +C2851092|T037|PT|S62.212S|ICD10CM|Bennett's fracture, left hand, sequela|Bennett's fracture, left hand, sequela +C2851092|T037|AB|S62.212S|ICD10CM|Bennett's fracture, left hand, sequela|Bennett's fracture, left hand, sequela +C2851093|T037|AB|S62.213|ICD10CM|Bennett's fracture, unspecified hand|Bennett's fracture, unspecified hand +C2851093|T037|HT|S62.213|ICD10CM|Bennett's fracture, unspecified hand|Bennett's fracture, unspecified hand +C2851094|T037|AB|S62.213A|ICD10CM|Bennett's fracture, unsp hand, init for clos fx|Bennett's fracture, unsp hand, init for clos fx +C2851094|T037|PT|S62.213A|ICD10CM|Bennett's fracture, unspecified hand, initial encounter for closed fracture|Bennett's fracture, unspecified hand, initial encounter for closed fracture +C2851095|T037|AB|S62.213B|ICD10CM|Bennett's fracture, unsp hand, init encntr for open fracture|Bennett's fracture, unsp hand, init encntr for open fracture +C2851095|T037|PT|S62.213B|ICD10CM|Bennett's fracture, unspecified hand, initial encounter for open fracture|Bennett's fracture, unspecified hand, initial encounter for open fracture +C2851096|T037|AB|S62.213D|ICD10CM|Bennett's fracture, unsp hand, subs for fx w routn heal|Bennett's fracture, unsp hand, subs for fx w routn heal +C2851096|T037|PT|S62.213D|ICD10CM|Bennett's fracture, unspecified hand, subsequent encounter for fracture with routine healing|Bennett's fracture, unspecified hand, subsequent encounter for fracture with routine healing +C2851097|T037|AB|S62.213G|ICD10CM|Bennett's fracture, unsp hand, subs for fx w delay heal|Bennett's fracture, unsp hand, subs for fx w delay heal +C2851097|T037|PT|S62.213G|ICD10CM|Bennett's fracture, unspecified hand, subsequent encounter for fracture with delayed healing|Bennett's fracture, unspecified hand, subsequent encounter for fracture with delayed healing +C2851098|T037|AB|S62.213K|ICD10CM|Bennett's fracture, unsp hand, subs for fx w nonunion|Bennett's fracture, unsp hand, subs for fx w nonunion +C2851098|T037|PT|S62.213K|ICD10CM|Bennett's fracture, unspecified hand, subsequent encounter for fracture with nonunion|Bennett's fracture, unspecified hand, subsequent encounter for fracture with nonunion +C2851099|T037|AB|S62.213P|ICD10CM|Bennett's fracture, unsp hand, subs for fx w malunion|Bennett's fracture, unsp hand, subs for fx w malunion +C2851099|T037|PT|S62.213P|ICD10CM|Bennett's fracture, unspecified hand, subsequent encounter for fracture with malunion|Bennett's fracture, unspecified hand, subsequent encounter for fracture with malunion +C2851100|T037|PT|S62.213S|ICD10CM|Bennett's fracture, unspecified hand, sequela|Bennett's fracture, unspecified hand, sequela +C2851100|T037|AB|S62.213S|ICD10CM|Bennett's fracture, unspecified hand, sequela|Bennett's fracture, unspecified hand, sequela +C2851101|T037|AB|S62.22|ICD10CM|Rolando's fracture|Rolando's fracture +C2851101|T037|HT|S62.22|ICD10CM|Rolando's fracture|Rolando's fracture +C2851102|T037|AB|S62.221|ICD10CM|Displaced Rolando's fracture, right hand|Displaced Rolando's fracture, right hand +C2851102|T037|HT|S62.221|ICD10CM|Displaced Rolando's fracture, right hand|Displaced Rolando's fracture, right hand +C2851103|T037|AB|S62.221A|ICD10CM|Displaced Rolando's fracture, right hand, init for clos fx|Displaced Rolando's fracture, right hand, init for clos fx +C2851103|T037|PT|S62.221A|ICD10CM|Displaced Rolando's fracture, right hand, initial encounter for closed fracture|Displaced Rolando's fracture, right hand, initial encounter for closed fracture +C2851104|T037|AB|S62.221B|ICD10CM|Displaced Rolando's fracture, right hand, init for opn fx|Displaced Rolando's fracture, right hand, init for opn fx +C2851104|T037|PT|S62.221B|ICD10CM|Displaced Rolando's fracture, right hand, initial encounter for open fracture|Displaced Rolando's fracture, right hand, initial encounter for open fracture +C2851105|T037|AB|S62.221D|ICD10CM|Displ Rolando's fracture, r hand, subs for fx w routn heal|Displ Rolando's fracture, r hand, subs for fx w routn heal +C2851105|T037|PT|S62.221D|ICD10CM|Displaced Rolando's fracture, right hand, subsequent encounter for fracture with routine healing|Displaced Rolando's fracture, right hand, subsequent encounter for fracture with routine healing +C2851106|T037|AB|S62.221G|ICD10CM|Displ Rolando's fracture, r hand, subs for fx w delay heal|Displ Rolando's fracture, r hand, subs for fx w delay heal +C2851106|T037|PT|S62.221G|ICD10CM|Displaced Rolando's fracture, right hand, subsequent encounter for fracture with delayed healing|Displaced Rolando's fracture, right hand, subsequent encounter for fracture with delayed healing +C2851107|T037|AB|S62.221K|ICD10CM|Displaced Rolando's fracture, r hand, subs for fx w nonunion|Displaced Rolando's fracture, r hand, subs for fx w nonunion +C2851107|T037|PT|S62.221K|ICD10CM|Displaced Rolando's fracture, right hand, subsequent encounter for fracture with nonunion|Displaced Rolando's fracture, right hand, subsequent encounter for fracture with nonunion +C2851108|T037|AB|S62.221P|ICD10CM|Displaced Rolando's fracture, r hand, subs for fx w malunion|Displaced Rolando's fracture, r hand, subs for fx w malunion +C2851108|T037|PT|S62.221P|ICD10CM|Displaced Rolando's fracture, right hand, subsequent encounter for fracture with malunion|Displaced Rolando's fracture, right hand, subsequent encounter for fracture with malunion +C2851109|T037|PT|S62.221S|ICD10CM|Displaced Rolando's fracture, right hand, sequela|Displaced Rolando's fracture, right hand, sequela +C2851109|T037|AB|S62.221S|ICD10CM|Displaced Rolando's fracture, right hand, sequela|Displaced Rolando's fracture, right hand, sequela +C2851110|T037|AB|S62.222|ICD10CM|Displaced Rolando's fracture, left hand|Displaced Rolando's fracture, left hand +C2851110|T037|HT|S62.222|ICD10CM|Displaced Rolando's fracture, left hand|Displaced Rolando's fracture, left hand +C2851111|T037|AB|S62.222A|ICD10CM|Displaced Rolando's fracture, left hand, init for clos fx|Displaced Rolando's fracture, left hand, init for clos fx +C2851111|T037|PT|S62.222A|ICD10CM|Displaced Rolando's fracture, left hand, initial encounter for closed fracture|Displaced Rolando's fracture, left hand, initial encounter for closed fracture +C2851112|T037|AB|S62.222B|ICD10CM|Displaced Rolando's fracture, left hand, init for opn fx|Displaced Rolando's fracture, left hand, init for opn fx +C2851112|T037|PT|S62.222B|ICD10CM|Displaced Rolando's fracture, left hand, initial encounter for open fracture|Displaced Rolando's fracture, left hand, initial encounter for open fracture +C2851113|T037|AB|S62.222D|ICD10CM|Displ Rolando's fracture, l hand, subs for fx w routn heal|Displ Rolando's fracture, l hand, subs for fx w routn heal +C2851113|T037|PT|S62.222D|ICD10CM|Displaced Rolando's fracture, left hand, subsequent encounter for fracture with routine healing|Displaced Rolando's fracture, left hand, subsequent encounter for fracture with routine healing +C2851114|T037|AB|S62.222G|ICD10CM|Displ Rolando's fracture, l hand, subs for fx w delay heal|Displ Rolando's fracture, l hand, subs for fx w delay heal +C2851114|T037|PT|S62.222G|ICD10CM|Displaced Rolando's fracture, left hand, subsequent encounter for fracture with delayed healing|Displaced Rolando's fracture, left hand, subsequent encounter for fracture with delayed healing +C2851115|T037|AB|S62.222K|ICD10CM|Displ Rolando's fracture, left hand, subs for fx w nonunion|Displ Rolando's fracture, left hand, subs for fx w nonunion +C2851115|T037|PT|S62.222K|ICD10CM|Displaced Rolando's fracture, left hand, subsequent encounter for fracture with nonunion|Displaced Rolando's fracture, left hand, subsequent encounter for fracture with nonunion +C2851116|T037|AB|S62.222P|ICD10CM|Displ Rolando's fracture, left hand, subs for fx w malunion|Displ Rolando's fracture, left hand, subs for fx w malunion +C2851116|T037|PT|S62.222P|ICD10CM|Displaced Rolando's fracture, left hand, subsequent encounter for fracture with malunion|Displaced Rolando's fracture, left hand, subsequent encounter for fracture with malunion +C2851117|T037|PT|S62.222S|ICD10CM|Displaced Rolando's fracture, left hand, sequela|Displaced Rolando's fracture, left hand, sequela +C2851117|T037|AB|S62.222S|ICD10CM|Displaced Rolando's fracture, left hand, sequela|Displaced Rolando's fracture, left hand, sequela +C2851118|T037|AB|S62.223|ICD10CM|Displaced Rolando's fracture, unspecified hand|Displaced Rolando's fracture, unspecified hand +C2851118|T037|HT|S62.223|ICD10CM|Displaced Rolando's fracture, unspecified hand|Displaced Rolando's fracture, unspecified hand +C2851119|T037|AB|S62.223A|ICD10CM|Displaced Rolando's fracture, unsp hand, init for clos fx|Displaced Rolando's fracture, unsp hand, init for clos fx +C2851119|T037|PT|S62.223A|ICD10CM|Displaced Rolando's fracture, unspecified hand, initial encounter for closed fracture|Displaced Rolando's fracture, unspecified hand, initial encounter for closed fracture +C2851120|T037|AB|S62.223B|ICD10CM|Displaced Rolando's fracture, unsp hand, init for opn fx|Displaced Rolando's fracture, unsp hand, init for opn fx +C2851120|T037|PT|S62.223B|ICD10CM|Displaced Rolando's fracture, unspecified hand, initial encounter for open fracture|Displaced Rolando's fracture, unspecified hand, initial encounter for open fracture +C2851121|T037|AB|S62.223D|ICD10CM|Displ Rolando's fx, unsp hand, subs for fx w routn heal|Displ Rolando's fx, unsp hand, subs for fx w routn heal +C2851122|T037|AB|S62.223G|ICD10CM|Displ Rolando's fx, unsp hand, subs for fx w delay heal|Displ Rolando's fx, unsp hand, subs for fx w delay heal +C2851123|T037|AB|S62.223K|ICD10CM|Displ Rolando's fracture, unsp hand, subs for fx w nonunion|Displ Rolando's fracture, unsp hand, subs for fx w nonunion +C2851123|T037|PT|S62.223K|ICD10CM|Displaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with nonunion|Displaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with nonunion +C2851124|T037|AB|S62.223P|ICD10CM|Displ Rolando's fracture, unsp hand, subs for fx w malunion|Displ Rolando's fracture, unsp hand, subs for fx w malunion +C2851124|T037|PT|S62.223P|ICD10CM|Displaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with malunion|Displaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with malunion +C2851125|T037|PT|S62.223S|ICD10CM|Displaced Rolando's fracture, unspecified hand, sequela|Displaced Rolando's fracture, unspecified hand, sequela +C2851125|T037|AB|S62.223S|ICD10CM|Displaced Rolando's fracture, unspecified hand, sequela|Displaced Rolando's fracture, unspecified hand, sequela +C2851126|T037|AB|S62.224|ICD10CM|Nondisplaced Rolando's fracture, right hand|Nondisplaced Rolando's fracture, right hand +C2851126|T037|HT|S62.224|ICD10CM|Nondisplaced Rolando's fracture, right hand|Nondisplaced Rolando's fracture, right hand +C2851127|T037|AB|S62.224A|ICD10CM|Nondisplaced Rolando's fracture, right hand, init|Nondisplaced Rolando's fracture, right hand, init +C2851127|T037|PT|S62.224A|ICD10CM|Nondisplaced Rolando's fracture, right hand, initial encounter for closed fracture|Nondisplaced Rolando's fracture, right hand, initial encounter for closed fracture +C2851128|T037|AB|S62.224B|ICD10CM|Nondisplaced Rolando's fracture, right hand, init for opn fx|Nondisplaced Rolando's fracture, right hand, init for opn fx +C2851128|T037|PT|S62.224B|ICD10CM|Nondisplaced Rolando's fracture, right hand, initial encounter for open fracture|Nondisplaced Rolando's fracture, right hand, initial encounter for open fracture +C2851129|T037|AB|S62.224D|ICD10CM|Nondisp Rolando's fracture, r hand, subs for fx w routn heal|Nondisp Rolando's fracture, r hand, subs for fx w routn heal +C2851129|T037|PT|S62.224D|ICD10CM|Nondisplaced Rolando's fracture, right hand, subsequent encounter for fracture with routine healing|Nondisplaced Rolando's fracture, right hand, subsequent encounter for fracture with routine healing +C2851130|T037|AB|S62.224G|ICD10CM|Nondisp Rolando's fracture, r hand, subs for fx w delay heal|Nondisp Rolando's fracture, r hand, subs for fx w delay heal +C2851130|T037|PT|S62.224G|ICD10CM|Nondisplaced Rolando's fracture, right hand, subsequent encounter for fracture with delayed healing|Nondisplaced Rolando's fracture, right hand, subsequent encounter for fracture with delayed healing +C2851131|T037|AB|S62.224K|ICD10CM|Nondisp Rolando's fracture, r hand, subs for fx w nonunion|Nondisp Rolando's fracture, r hand, subs for fx w nonunion +C2851131|T037|PT|S62.224K|ICD10CM|Nondisplaced Rolando's fracture, right hand, subsequent encounter for fracture with nonunion|Nondisplaced Rolando's fracture, right hand, subsequent encounter for fracture with nonunion +C2851132|T037|AB|S62.224P|ICD10CM|Nondisp Rolando's fracture, r hand, subs for fx w malunion|Nondisp Rolando's fracture, r hand, subs for fx w malunion +C2851132|T037|PT|S62.224P|ICD10CM|Nondisplaced Rolando's fracture, right hand, subsequent encounter for fracture with malunion|Nondisplaced Rolando's fracture, right hand, subsequent encounter for fracture with malunion +C2851133|T037|PT|S62.224S|ICD10CM|Nondisplaced Rolando's fracture, right hand, sequela|Nondisplaced Rolando's fracture, right hand, sequela +C2851133|T037|AB|S62.224S|ICD10CM|Nondisplaced Rolando's fracture, right hand, sequela|Nondisplaced Rolando's fracture, right hand, sequela +C2851134|T037|AB|S62.225|ICD10CM|Nondisplaced Rolando's fracture, left hand|Nondisplaced Rolando's fracture, left hand +C2851134|T037|HT|S62.225|ICD10CM|Nondisplaced Rolando's fracture, left hand|Nondisplaced Rolando's fracture, left hand +C2851135|T037|AB|S62.225A|ICD10CM|Nondisplaced Rolando's fracture, left hand, init for clos fx|Nondisplaced Rolando's fracture, left hand, init for clos fx +C2851135|T037|PT|S62.225A|ICD10CM|Nondisplaced Rolando's fracture, left hand, initial encounter for closed fracture|Nondisplaced Rolando's fracture, left hand, initial encounter for closed fracture +C2851136|T037|AB|S62.225B|ICD10CM|Nondisplaced Rolando's fracture, left hand, init for opn fx|Nondisplaced Rolando's fracture, left hand, init for opn fx +C2851136|T037|PT|S62.225B|ICD10CM|Nondisplaced Rolando's fracture, left hand, initial encounter for open fracture|Nondisplaced Rolando's fracture, left hand, initial encounter for open fracture +C2851137|T037|AB|S62.225D|ICD10CM|Nondisp Rolando's fracture, l hand, subs for fx w routn heal|Nondisp Rolando's fracture, l hand, subs for fx w routn heal +C2851137|T037|PT|S62.225D|ICD10CM|Nondisplaced Rolando's fracture, left hand, subsequent encounter for fracture with routine healing|Nondisplaced Rolando's fracture, left hand, subsequent encounter for fracture with routine healing +C2851138|T037|AB|S62.225G|ICD10CM|Nondisp Rolando's fracture, l hand, subs for fx w delay heal|Nondisp Rolando's fracture, l hand, subs for fx w delay heal +C2851138|T037|PT|S62.225G|ICD10CM|Nondisplaced Rolando's fracture, left hand, subsequent encounter for fracture with delayed healing|Nondisplaced Rolando's fracture, left hand, subsequent encounter for fracture with delayed healing +C2851139|T037|AB|S62.225K|ICD10CM|Nondisp Rolando's fracture, l hand, subs for fx w nonunion|Nondisp Rolando's fracture, l hand, subs for fx w nonunion +C2851139|T037|PT|S62.225K|ICD10CM|Nondisplaced Rolando's fracture, left hand, subsequent encounter for fracture with nonunion|Nondisplaced Rolando's fracture, left hand, subsequent encounter for fracture with nonunion +C2851140|T037|AB|S62.225P|ICD10CM|Nondisp Rolando's fracture, l hand, subs for fx w malunion|Nondisp Rolando's fracture, l hand, subs for fx w malunion +C2851140|T037|PT|S62.225P|ICD10CM|Nondisplaced Rolando's fracture, left hand, subsequent encounter for fracture with malunion|Nondisplaced Rolando's fracture, left hand, subsequent encounter for fracture with malunion +C2851141|T037|PT|S62.225S|ICD10CM|Nondisplaced Rolando's fracture, left hand, sequela|Nondisplaced Rolando's fracture, left hand, sequela +C2851141|T037|AB|S62.225S|ICD10CM|Nondisplaced Rolando's fracture, left hand, sequela|Nondisplaced Rolando's fracture, left hand, sequela +C2851142|T037|AB|S62.226|ICD10CM|Nondisplaced Rolando's fracture, unspecified hand|Nondisplaced Rolando's fracture, unspecified hand +C2851142|T037|HT|S62.226|ICD10CM|Nondisplaced Rolando's fracture, unspecified hand|Nondisplaced Rolando's fracture, unspecified hand +C2851143|T037|AB|S62.226A|ICD10CM|Nondisplaced Rolando's fracture, unsp hand, init for clos fx|Nondisplaced Rolando's fracture, unsp hand, init for clos fx +C2851143|T037|PT|S62.226A|ICD10CM|Nondisplaced Rolando's fracture, unspecified hand, initial encounter for closed fracture|Nondisplaced Rolando's fracture, unspecified hand, initial encounter for closed fracture +C2851144|T037|AB|S62.226B|ICD10CM|Nondisplaced Rolando's fracture, unsp hand, init for opn fx|Nondisplaced Rolando's fracture, unsp hand, init for opn fx +C2851144|T037|PT|S62.226B|ICD10CM|Nondisplaced Rolando's fracture, unspecified hand, initial encounter for open fracture|Nondisplaced Rolando's fracture, unspecified hand, initial encounter for open fracture +C2851145|T037|AB|S62.226D|ICD10CM|Nondisp Rolando's fx, unsp hand, subs for fx w routn heal|Nondisp Rolando's fx, unsp hand, subs for fx w routn heal +C2851146|T037|AB|S62.226G|ICD10CM|Nondisp Rolando's fx, unsp hand, subs for fx w delay heal|Nondisp Rolando's fx, unsp hand, subs for fx w delay heal +C2851147|T037|AB|S62.226K|ICD10CM|Nondisp Rolando's fx, unsp hand, subs for fx w nonunion|Nondisp Rolando's fx, unsp hand, subs for fx w nonunion +C2851147|T037|PT|S62.226K|ICD10CM|Nondisplaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with nonunion|Nondisplaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with nonunion +C2851148|T037|AB|S62.226P|ICD10CM|Nondisp Rolando's fx, unsp hand, subs for fx w malunion|Nondisp Rolando's fx, unsp hand, subs for fx w malunion +C2851148|T037|PT|S62.226P|ICD10CM|Nondisplaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with malunion|Nondisplaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with malunion +C2851149|T037|PT|S62.226S|ICD10CM|Nondisplaced Rolando's fracture, unspecified hand, sequela|Nondisplaced Rolando's fracture, unspecified hand, sequela +C2851149|T037|AB|S62.226S|ICD10CM|Nondisplaced Rolando's fracture, unspecified hand, sequela|Nondisplaced Rolando's fracture, unspecified hand, sequela +C2851150|T037|AB|S62.23|ICD10CM|Other fracture of base of first metacarpal bone|Other fracture of base of first metacarpal bone +C2851150|T037|HT|S62.23|ICD10CM|Other fracture of base of first metacarpal bone|Other fracture of base of first metacarpal bone +C2851151|T037|AB|S62.231|ICD10CM|Other disp fx of base of first metacarpal bone, right hand|Other disp fx of base of first metacarpal bone, right hand +C2851151|T037|HT|S62.231|ICD10CM|Other displaced fracture of base of first metacarpal bone, right hand|Other displaced fracture of base of first metacarpal bone, right hand +C2851152|T037|AB|S62.231A|ICD10CM|Oth disp fx of base of first MC bone, right hand, init|Oth disp fx of base of first MC bone, right hand, init +C2851153|T037|AB|S62.231B|ICD10CM|Oth disp fx of base of 1st MC bone, r hand, init for opn fx|Oth disp fx of base of 1st MC bone, r hand, init for opn fx +C2851154|T037|AB|S62.231D|ICD10CM|Oth disp fx of base of 1st MC bone, r hand, 7thD|Oth disp fx of base of 1st MC bone, r hand, 7thD +C2851155|T037|AB|S62.231G|ICD10CM|Oth disp fx of base of 1st MC bone, r hand, 7thG|Oth disp fx of base of 1st MC bone, r hand, 7thG +C2851156|T037|AB|S62.231K|ICD10CM|Oth disp fx of base of 1st MC bone, r hand, 7thK|Oth disp fx of base of 1st MC bone, r hand, 7thK +C2851157|T037|AB|S62.231P|ICD10CM|Oth disp fx of base of 1st MC bone, r hand, 7thP|Oth disp fx of base of 1st MC bone, r hand, 7thP +C2851158|T037|AB|S62.231S|ICD10CM|Oth disp fx of base of first MC bone, right hand, sequela|Oth disp fx of base of first MC bone, right hand, sequela +C2851158|T037|PT|S62.231S|ICD10CM|Other displaced fracture of base of first metacarpal bone, right hand, sequela|Other displaced fracture of base of first metacarpal bone, right hand, sequela +C2851159|T037|AB|S62.232|ICD10CM|Other disp fx of base of first metacarpal bone, left hand|Other disp fx of base of first metacarpal bone, left hand +C2851159|T037|HT|S62.232|ICD10CM|Other displaced fracture of base of first metacarpal bone, left hand|Other displaced fracture of base of first metacarpal bone, left hand +C2851160|T037|AB|S62.232A|ICD10CM|Oth disp fx of base of first MC bone, left hand, init|Oth disp fx of base of first MC bone, left hand, init +C2851161|T037|AB|S62.232B|ICD10CM|Oth disp fx of base of 1st MC bone, l hand, init for opn fx|Oth disp fx of base of 1st MC bone, l hand, init for opn fx +C2851162|T037|AB|S62.232D|ICD10CM|Oth disp fx of base of 1st MC bone, l hand, 7thD|Oth disp fx of base of 1st MC bone, l hand, 7thD +C2851163|T037|AB|S62.232G|ICD10CM|Oth disp fx of base of 1st MC bone, l hand, 7thG|Oth disp fx of base of 1st MC bone, l hand, 7thG +C2851164|T037|AB|S62.232K|ICD10CM|Oth disp fx of base of 1st MC bone, l hand, 7thK|Oth disp fx of base of 1st MC bone, l hand, 7thK +C2851165|T037|AB|S62.232P|ICD10CM|Oth disp fx of base of 1st MC bone, l hand, 7thP|Oth disp fx of base of 1st MC bone, l hand, 7thP +C2851166|T037|AB|S62.232S|ICD10CM|Oth disp fx of base of first MC bone, left hand, sequela|Oth disp fx of base of first MC bone, left hand, sequela +C2851166|T037|PT|S62.232S|ICD10CM|Other displaced fracture of base of first metacarpal bone, left hand, sequela|Other displaced fracture of base of first metacarpal bone, left hand, sequela +C2851167|T037|AB|S62.233|ICD10CM|Other disp fx of base of first metacarpal bone, unsp hand|Other disp fx of base of first metacarpal bone, unsp hand +C2851167|T037|HT|S62.233|ICD10CM|Other displaced fracture of base of first metacarpal bone, unspecified hand|Other displaced fracture of base of first metacarpal bone, unspecified hand +C2851168|T037|AB|S62.233A|ICD10CM|Oth disp fx of base of first MC bone, unsp hand, init|Oth disp fx of base of first MC bone, unsp hand, init +C2851169|T037|AB|S62.233B|ICD10CM|Oth disp fx of base of 1st MC bone, unsp hand, 7thB|Oth disp fx of base of 1st MC bone, unsp hand, 7thB +C2851170|T037|AB|S62.233D|ICD10CM|Oth disp fx of base of 1st MC bone, unsp hand, 7thD|Oth disp fx of base of 1st MC bone, unsp hand, 7thD +C2851171|T037|AB|S62.233G|ICD10CM|Oth disp fx of base of 1st MC bone, unsp hand, 7thG|Oth disp fx of base of 1st MC bone, unsp hand, 7thG +C2851172|T037|AB|S62.233K|ICD10CM|Oth disp fx of base of 1st MC bone, unsp hand, 7thK|Oth disp fx of base of 1st MC bone, unsp hand, 7thK +C2851173|T037|AB|S62.233P|ICD10CM|Oth disp fx of base of 1st MC bone, unsp hand, 7thP|Oth disp fx of base of 1st MC bone, unsp hand, 7thP +C2851174|T037|AB|S62.233S|ICD10CM|Oth disp fx of base of first MC bone, unsp hand, sequela|Oth disp fx of base of first MC bone, unsp hand, sequela +C2851174|T037|PT|S62.233S|ICD10CM|Other displaced fracture of base of first metacarpal bone, unspecified hand, sequela|Other displaced fracture of base of first metacarpal bone, unspecified hand, sequela +C2851175|T037|AB|S62.234|ICD10CM|Oth nondisp fx of base of first metacarpal bone, right hand|Oth nondisp fx of base of first metacarpal bone, right hand +C2851175|T037|HT|S62.234|ICD10CM|Other nondisplaced fracture of base of first metacarpal bone, right hand|Other nondisplaced fracture of base of first metacarpal bone, right hand +C2851176|T037|AB|S62.234A|ICD10CM|Oth nondisp fx of base of first MC bone, right hand, init|Oth nondisp fx of base of first MC bone, right hand, init +C2851177|T037|AB|S62.234B|ICD10CM|Oth nondisp fx of base of 1st MC bone, r hand, 7thB|Oth nondisp fx of base of 1st MC bone, r hand, 7thB +C2851178|T037|AB|S62.234D|ICD10CM|Oth nondisp fx of base of 1st MC bone, r hand, 7thD|Oth nondisp fx of base of 1st MC bone, r hand, 7thD +C2851179|T037|AB|S62.234G|ICD10CM|Oth nondisp fx of base of 1st MC bone, r hand, 7thG|Oth nondisp fx of base of 1st MC bone, r hand, 7thG +C2851180|T037|AB|S62.234K|ICD10CM|Oth nondisp fx of base of 1st MC bone, r hand, 7thK|Oth nondisp fx of base of 1st MC bone, r hand, 7thK +C2851181|T037|AB|S62.234P|ICD10CM|Oth nondisp fx of base of 1st MC bone, r hand, 7thP|Oth nondisp fx of base of 1st MC bone, r hand, 7thP +C2851182|T037|AB|S62.234S|ICD10CM|Oth nondisp fx of base of first MC bone, right hand, sequela|Oth nondisp fx of base of first MC bone, right hand, sequela +C2851182|T037|PT|S62.234S|ICD10CM|Other nondisplaced fracture of base of first metacarpal bone, right hand, sequela|Other nondisplaced fracture of base of first metacarpal bone, right hand, sequela +C2851183|T037|AB|S62.235|ICD10CM|Other nondisp fx of base of first metacarpal bone, left hand|Other nondisp fx of base of first metacarpal bone, left hand +C2851183|T037|HT|S62.235|ICD10CM|Other nondisplaced fracture of base of first metacarpal bone, left hand|Other nondisplaced fracture of base of first metacarpal bone, left hand +C2851184|T037|AB|S62.235A|ICD10CM|Oth nondisp fx of base of first MC bone, left hand, init|Oth nondisp fx of base of first MC bone, left hand, init +C2851185|T037|AB|S62.235B|ICD10CM|Oth nondisp fx of base of 1st MC bone, l hand, 7thB|Oth nondisp fx of base of 1st MC bone, l hand, 7thB +C2851186|T037|AB|S62.235D|ICD10CM|Oth nondisp fx of base of 1st MC bone, l hand, 7thD|Oth nondisp fx of base of 1st MC bone, l hand, 7thD +C2851187|T037|AB|S62.235G|ICD10CM|Oth nondisp fx of base of 1st MC bone, l hand, 7thG|Oth nondisp fx of base of 1st MC bone, l hand, 7thG +C2851188|T037|AB|S62.235K|ICD10CM|Oth nondisp fx of base of 1st MC bone, l hand, 7thK|Oth nondisp fx of base of 1st MC bone, l hand, 7thK +C2851189|T037|AB|S62.235P|ICD10CM|Oth nondisp fx of base of 1st MC bone, l hand, 7thP|Oth nondisp fx of base of 1st MC bone, l hand, 7thP +C2851190|T037|AB|S62.235S|ICD10CM|Oth nondisp fx of base of first MC bone, left hand, sequela|Oth nondisp fx of base of first MC bone, left hand, sequela +C2851190|T037|PT|S62.235S|ICD10CM|Other nondisplaced fracture of base of first metacarpal bone, left hand, sequela|Other nondisplaced fracture of base of first metacarpal bone, left hand, sequela +C2851191|T037|AB|S62.236|ICD10CM|Other nondisp fx of base of first metacarpal bone, unsp hand|Other nondisp fx of base of first metacarpal bone, unsp hand +C2851191|T037|HT|S62.236|ICD10CM|Other nondisplaced fracture of base of first metacarpal bone, unspecified hand|Other nondisplaced fracture of base of first metacarpal bone, unspecified hand +C2851192|T037|AB|S62.236A|ICD10CM|Oth nondisp fx of base of first MC bone, unsp hand, init|Oth nondisp fx of base of first MC bone, unsp hand, init +C2851193|T037|AB|S62.236B|ICD10CM|Oth nondisp fx of base of 1st MC bone, unsp hand, 7thB|Oth nondisp fx of base of 1st MC bone, unsp hand, 7thB +C2851194|T037|AB|S62.236D|ICD10CM|Oth nondisp fx of base of 1st MC bone, unsp hand, 7thD|Oth nondisp fx of base of 1st MC bone, unsp hand, 7thD +C2851195|T037|AB|S62.236G|ICD10CM|Oth nondisp fx of base of 1st MC bone, unsp hand, 7thG|Oth nondisp fx of base of 1st MC bone, unsp hand, 7thG +C2851196|T037|AB|S62.236K|ICD10CM|Oth nondisp fx of base of 1st MC bone, unsp hand, 7thK|Oth nondisp fx of base of 1st MC bone, unsp hand, 7thK +C2851197|T037|AB|S62.236P|ICD10CM|Oth nondisp fx of base of 1st MC bone, unsp hand, 7thP|Oth nondisp fx of base of 1st MC bone, unsp hand, 7thP +C2851198|T037|AB|S62.236S|ICD10CM|Oth nondisp fx of base of first MC bone, unsp hand, sequela|Oth nondisp fx of base of first MC bone, unsp hand, sequela +C2851198|T037|PT|S62.236S|ICD10CM|Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, sequela|Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, sequela +C0840643|T037|HT|S62.24|ICD10CM|Fracture of shaft of first metacarpal bone|Fracture of shaft of first metacarpal bone +C0840643|T037|AB|S62.24|ICD10CM|Fracture of shaft of first metacarpal bone|Fracture of shaft of first metacarpal bone +C2851199|T037|AB|S62.241|ICD10CM|Disp fx of shaft of first metacarpal bone, right hand|Disp fx of shaft of first metacarpal bone, right hand +C2851199|T037|HT|S62.241|ICD10CM|Displaced fracture of shaft of first metacarpal bone, right hand|Displaced fracture of shaft of first metacarpal bone, right hand +C2851200|T037|AB|S62.241A|ICD10CM|Disp fx of shaft of first metacarpal bone, right hand, init|Disp fx of shaft of first metacarpal bone, right hand, init +C2851201|T037|AB|S62.241B|ICD10CM|Disp fx of shaft of first MC bone, r hand, init for opn fx|Disp fx of shaft of first MC bone, r hand, init for opn fx +C2851202|T037|AB|S62.241D|ICD10CM|Disp fx of shaft of 1st MC bone, r hand, 7thD|Disp fx of shaft of 1st MC bone, r hand, 7thD +C2851203|T037|AB|S62.241G|ICD10CM|Disp fx of shaft of 1st MC bone, r hand, 7thG|Disp fx of shaft of 1st MC bone, r hand, 7thG +C2851204|T037|AB|S62.241K|ICD10CM|Disp fx of shaft of 1st MC bone, r hand, 7thK|Disp fx of shaft of 1st MC bone, r hand, 7thK +C2851205|T037|AB|S62.241P|ICD10CM|Disp fx of shaft of 1st MC bone, r hand, 7thP|Disp fx of shaft of 1st MC bone, r hand, 7thP +C2851206|T037|AB|S62.241S|ICD10CM|Disp fx of shaft of first MC bone, right hand, sequela|Disp fx of shaft of first MC bone, right hand, sequela +C2851206|T037|PT|S62.241S|ICD10CM|Displaced fracture of shaft of first metacarpal bone, right hand, sequela|Displaced fracture of shaft of first metacarpal bone, right hand, sequela +C2851207|T037|AB|S62.242|ICD10CM|Disp fx of shaft of first metacarpal bone, left hand|Disp fx of shaft of first metacarpal bone, left hand +C2851207|T037|HT|S62.242|ICD10CM|Displaced fracture of shaft of first metacarpal bone, left hand|Displaced fracture of shaft of first metacarpal bone, left hand +C2851208|T037|AB|S62.242A|ICD10CM|Disp fx of shaft of first metacarpal bone, left hand, init|Disp fx of shaft of first metacarpal bone, left hand, init +C2851209|T037|AB|S62.242B|ICD10CM|Disp fx of shaft of first MC bone, l hand, init for opn fx|Disp fx of shaft of first MC bone, l hand, init for opn fx +C2851209|T037|PT|S62.242B|ICD10CM|Displaced fracture of shaft of first metacarpal bone, left hand, initial encounter for open fracture|Displaced fracture of shaft of first metacarpal bone, left hand, initial encounter for open fracture +C2851210|T037|AB|S62.242D|ICD10CM|Disp fx of shaft of 1st MC bone, l hand, 7thD|Disp fx of shaft of 1st MC bone, l hand, 7thD +C2851211|T037|AB|S62.242G|ICD10CM|Disp fx of shaft of 1st MC bone, l hand, 7thG|Disp fx of shaft of 1st MC bone, l hand, 7thG +C2851212|T037|AB|S62.242K|ICD10CM|Disp fx of shaft of 1st MC bone, l hand, 7thK|Disp fx of shaft of 1st MC bone, l hand, 7thK +C2851213|T037|AB|S62.242P|ICD10CM|Disp fx of shaft of 1st MC bone, l hand, 7thP|Disp fx of shaft of 1st MC bone, l hand, 7thP +C2851214|T037|AB|S62.242S|ICD10CM|Disp fx of shaft of first MC bone, left hand, sequela|Disp fx of shaft of first MC bone, left hand, sequela +C2851214|T037|PT|S62.242S|ICD10CM|Displaced fracture of shaft of first metacarpal bone, left hand, sequela|Displaced fracture of shaft of first metacarpal bone, left hand, sequela +C2851215|T037|AB|S62.243|ICD10CM|Disp fx of shaft of first metacarpal bone, unspecified hand|Disp fx of shaft of first metacarpal bone, unspecified hand +C2851215|T037|HT|S62.243|ICD10CM|Displaced fracture of shaft of first metacarpal bone, unspecified hand|Displaced fracture of shaft of first metacarpal bone, unspecified hand +C2851216|T037|AB|S62.243A|ICD10CM|Disp fx of shaft of first metacarpal bone, unsp hand, init|Disp fx of shaft of first metacarpal bone, unsp hand, init +C2851217|T037|AB|S62.243B|ICD10CM|Disp fx of shaft of 1st MC bone, unsp hand, init for opn fx|Disp fx of shaft of 1st MC bone, unsp hand, init for opn fx +C2851218|T037|AB|S62.243D|ICD10CM|Disp fx of shaft of 1st MC bone, unsp hand, 7thD|Disp fx of shaft of 1st MC bone, unsp hand, 7thD +C2851219|T037|AB|S62.243G|ICD10CM|Disp fx of shaft of 1st MC bone, unsp hand, 7thG|Disp fx of shaft of 1st MC bone, unsp hand, 7thG +C2851220|T037|AB|S62.243K|ICD10CM|Disp fx of shaft of 1st MC bone, unsp hand, 7thK|Disp fx of shaft of 1st MC bone, unsp hand, 7thK +C2851221|T037|AB|S62.243P|ICD10CM|Disp fx of shaft of 1st MC bone, unsp hand, 7thP|Disp fx of shaft of 1st MC bone, unsp hand, 7thP +C2851222|T037|AB|S62.243S|ICD10CM|Disp fx of shaft of first MC bone, unsp hand, sequela|Disp fx of shaft of first MC bone, unsp hand, sequela +C2851222|T037|PT|S62.243S|ICD10CM|Displaced fracture of shaft of first metacarpal bone, unspecified hand, sequela|Displaced fracture of shaft of first metacarpal bone, unspecified hand, sequela +C2851223|T037|AB|S62.244|ICD10CM|Nondisp fx of shaft of first metacarpal bone, right hand|Nondisp fx of shaft of first metacarpal bone, right hand +C2851223|T037|HT|S62.244|ICD10CM|Nondisplaced fracture of shaft of first metacarpal bone, right hand|Nondisplaced fracture of shaft of first metacarpal bone, right hand +C2851224|T037|AB|S62.244A|ICD10CM|Nondisp fx of shaft of first MC bone, right hand, init|Nondisp fx of shaft of first MC bone, right hand, init +C2851225|T037|AB|S62.244B|ICD10CM|Nondisp fx of shaft of 1st MC bone, r hand, init for opn fx|Nondisp fx of shaft of 1st MC bone, r hand, init for opn fx +C2851226|T037|AB|S62.244D|ICD10CM|Nondisp fx of shaft of 1st MC bone, r hand, 7thD|Nondisp fx of shaft of 1st MC bone, r hand, 7thD +C2851227|T037|AB|S62.244G|ICD10CM|Nondisp fx of shaft of 1st MC bone, r hand, 7thG|Nondisp fx of shaft of 1st MC bone, r hand, 7thG +C2851228|T037|AB|S62.244K|ICD10CM|Nondisp fx of shaft of 1st MC bone, r hand, 7thK|Nondisp fx of shaft of 1st MC bone, r hand, 7thK +C2851229|T037|AB|S62.244P|ICD10CM|Nondisp fx of shaft of 1st MC bone, r hand, 7thP|Nondisp fx of shaft of 1st MC bone, r hand, 7thP +C2851230|T037|AB|S62.244S|ICD10CM|Nondisp fx of shaft of first MC bone, right hand, sequela|Nondisp fx of shaft of first MC bone, right hand, sequela +C2851230|T037|PT|S62.244S|ICD10CM|Nondisplaced fracture of shaft of first metacarpal bone, right hand, sequela|Nondisplaced fracture of shaft of first metacarpal bone, right hand, sequela +C2851231|T037|AB|S62.245|ICD10CM|Nondisp fx of shaft of first metacarpal bone, left hand|Nondisp fx of shaft of first metacarpal bone, left hand +C2851231|T037|HT|S62.245|ICD10CM|Nondisplaced fracture of shaft of first metacarpal bone, left hand|Nondisplaced fracture of shaft of first metacarpal bone, left hand +C2851232|T037|AB|S62.245A|ICD10CM|Nondisp fx of shaft of first MC bone, left hand, init|Nondisp fx of shaft of first MC bone, left hand, init +C2851233|T037|AB|S62.245B|ICD10CM|Nondisp fx of shaft of 1st MC bone, l hand, init for opn fx|Nondisp fx of shaft of 1st MC bone, l hand, init for opn fx +C2851234|T037|AB|S62.245D|ICD10CM|Nondisp fx of shaft of 1st MC bone, l hand, 7thD|Nondisp fx of shaft of 1st MC bone, l hand, 7thD +C2851235|T037|AB|S62.245G|ICD10CM|Nondisp fx of shaft of 1st MC bone, l hand, 7thG|Nondisp fx of shaft of 1st MC bone, l hand, 7thG +C2851236|T037|AB|S62.245K|ICD10CM|Nondisp fx of shaft of 1st MC bone, l hand, 7thK|Nondisp fx of shaft of 1st MC bone, l hand, 7thK +C2851237|T037|AB|S62.245P|ICD10CM|Nondisp fx of shaft of 1st MC bone, l hand, 7thP|Nondisp fx of shaft of 1st MC bone, l hand, 7thP +C2851238|T037|AB|S62.245S|ICD10CM|Nondisp fx of shaft of first MC bone, left hand, sequela|Nondisp fx of shaft of first MC bone, left hand, sequela +C2851238|T037|PT|S62.245S|ICD10CM|Nondisplaced fracture of shaft of first metacarpal bone, left hand, sequela|Nondisplaced fracture of shaft of first metacarpal bone, left hand, sequela +C2851239|T037|AB|S62.246|ICD10CM|Nondisp fx of shaft of first metacarpal bone, unsp hand|Nondisp fx of shaft of first metacarpal bone, unsp hand +C2851239|T037|HT|S62.246|ICD10CM|Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand|Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand +C2851240|T037|AB|S62.246A|ICD10CM|Nondisp fx of shaft of first MC bone, unsp hand, init|Nondisp fx of shaft of first MC bone, unsp hand, init +C2851241|T037|AB|S62.246B|ICD10CM|Nondisp fx of shaft of 1st MC bone, unsp hand, 7thB|Nondisp fx of shaft of 1st MC bone, unsp hand, 7thB +C2851242|T037|AB|S62.246D|ICD10CM|Nondisp fx of shaft of 1st MC bone, unsp hand, 7thD|Nondisp fx of shaft of 1st MC bone, unsp hand, 7thD +C2851243|T037|AB|S62.246G|ICD10CM|Nondisp fx of shaft of 1st MC bone, unsp hand, 7thG|Nondisp fx of shaft of 1st MC bone, unsp hand, 7thG +C2851244|T037|AB|S62.246K|ICD10CM|Nondisp fx of shaft of 1st MC bone, unsp hand, 7thK|Nondisp fx of shaft of 1st MC bone, unsp hand, 7thK +C2851245|T037|AB|S62.246P|ICD10CM|Nondisp fx of shaft of 1st MC bone, unsp hand, 7thP|Nondisp fx of shaft of 1st MC bone, unsp hand, 7thP +C2851246|T037|AB|S62.246S|ICD10CM|Nondisp fx of shaft of first MC bone, unsp hand, sequela|Nondisp fx of shaft of first MC bone, unsp hand, sequela +C2851246|T037|PT|S62.246S|ICD10CM|Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, sequela|Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, sequela +C0840644|T037|HT|S62.25|ICD10CM|Fracture of neck of first metacarpal bone|Fracture of neck of first metacarpal bone +C0840644|T037|AB|S62.25|ICD10CM|Fracture of neck of first metacarpal bone|Fracture of neck of first metacarpal bone +C2851247|T037|AB|S62.251|ICD10CM|Disp fx of neck of first metacarpal bone, right hand|Disp fx of neck of first metacarpal bone, right hand +C2851247|T037|HT|S62.251|ICD10CM|Displaced fracture of neck of first metacarpal bone, right hand|Displaced fracture of neck of first metacarpal bone, right hand +C2851248|T037|AB|S62.251A|ICD10CM|Disp fx of neck of first metacarpal bone, right hand, init|Disp fx of neck of first metacarpal bone, right hand, init +C2851249|T037|AB|S62.251B|ICD10CM|Disp fx of neck of first MC bone, r hand, init for opn fx|Disp fx of neck of first MC bone, r hand, init for opn fx +C2851249|T037|PT|S62.251B|ICD10CM|Displaced fracture of neck of first metacarpal bone, right hand, initial encounter for open fracture|Displaced fracture of neck of first metacarpal bone, right hand, initial encounter for open fracture +C2851250|T037|AB|S62.251D|ICD10CM|Disp fx of nk of 1st MC bone, r hand, 7thD|Disp fx of nk of 1st MC bone, r hand, 7thD +C2851251|T037|AB|S62.251G|ICD10CM|Disp fx of nk of 1st MC bone, r hand, 7thG|Disp fx of nk of 1st MC bone, r hand, 7thG +C2851252|T037|AB|S62.251K|ICD10CM|Disp fx of nk of 1st MC bone, r hand, subs for fx w nonunion|Disp fx of nk of 1st MC bone, r hand, subs for fx w nonunion +C2851253|T037|AB|S62.251P|ICD10CM|Disp fx of nk of 1st MC bone, r hand, subs for fx w malunion|Disp fx of nk of 1st MC bone, r hand, subs for fx w malunion +C2851254|T037|AB|S62.251S|ICD10CM|Disp fx of neck of first MC bone, right hand, sequela|Disp fx of neck of first MC bone, right hand, sequela +C2851254|T037|PT|S62.251S|ICD10CM|Displaced fracture of neck of first metacarpal bone, right hand, sequela|Displaced fracture of neck of first metacarpal bone, right hand, sequela +C2851255|T037|AB|S62.252|ICD10CM|Disp fx of neck of first metacarpal bone, left hand|Disp fx of neck of first metacarpal bone, left hand +C2851255|T037|HT|S62.252|ICD10CM|Displaced fracture of neck of first metacarpal bone, left hand|Displaced fracture of neck of first metacarpal bone, left hand +C2851256|T037|AB|S62.252A|ICD10CM|Disp fx of neck of first metacarpal bone, left hand, init|Disp fx of neck of first metacarpal bone, left hand, init +C2851257|T037|AB|S62.252B|ICD10CM|Disp fx of neck of first MC bone, left hand, init for opn fx|Disp fx of neck of first MC bone, left hand, init for opn fx +C2851257|T037|PT|S62.252B|ICD10CM|Displaced fracture of neck of first metacarpal bone, left hand, initial encounter for open fracture|Displaced fracture of neck of first metacarpal bone, left hand, initial encounter for open fracture +C2851258|T037|AB|S62.252D|ICD10CM|Disp fx of nk of 1st MC bone, l hand, 7thD|Disp fx of nk of 1st MC bone, l hand, 7thD +C2851259|T037|AB|S62.252G|ICD10CM|Disp fx of nk of 1st MC bone, l hand, 7thG|Disp fx of nk of 1st MC bone, l hand, 7thG +C2851260|T037|AB|S62.252K|ICD10CM|Disp fx of nk of 1st MC bone, l hand, subs for fx w nonunion|Disp fx of nk of 1st MC bone, l hand, subs for fx w nonunion +C2851261|T037|AB|S62.252P|ICD10CM|Disp fx of nk of 1st MC bone, l hand, subs for fx w malunion|Disp fx of nk of 1st MC bone, l hand, subs for fx w malunion +C2851262|T037|AB|S62.252S|ICD10CM|Disp fx of neck of first metacarpal bone, left hand, sequela|Disp fx of neck of first metacarpal bone, left hand, sequela +C2851262|T037|PT|S62.252S|ICD10CM|Displaced fracture of neck of first metacarpal bone, left hand, sequela|Displaced fracture of neck of first metacarpal bone, left hand, sequela +C2851263|T037|AB|S62.253|ICD10CM|Disp fx of neck of first metacarpal bone, unspecified hand|Disp fx of neck of first metacarpal bone, unspecified hand +C2851263|T037|HT|S62.253|ICD10CM|Displaced fracture of neck of first metacarpal bone, unspecified hand|Displaced fracture of neck of first metacarpal bone, unspecified hand +C2851264|T037|AB|S62.253A|ICD10CM|Disp fx of neck of first metacarpal bone, unsp hand, init|Disp fx of neck of first metacarpal bone, unsp hand, init +C2851265|T037|AB|S62.253B|ICD10CM|Disp fx of neck of first MC bone, unsp hand, init for opn fx|Disp fx of neck of first MC bone, unsp hand, init for opn fx +C2851266|T037|AB|S62.253D|ICD10CM|Disp fx of nk of 1st MC bone, unsp hand, 7thD|Disp fx of nk of 1st MC bone, unsp hand, 7thD +C2851267|T037|AB|S62.253G|ICD10CM|Disp fx of nk of 1st MC bone, unsp hand, 7thG|Disp fx of nk of 1st MC bone, unsp hand, 7thG +C2851268|T037|AB|S62.253K|ICD10CM|Disp fx of nk of 1st MC bone, unsp hand, 7thK|Disp fx of nk of 1st MC bone, unsp hand, 7thK +C2851269|T037|AB|S62.253P|ICD10CM|Disp fx of nk of 1st MC bone, unsp hand, 7thP|Disp fx of nk of 1st MC bone, unsp hand, 7thP +C2851270|T037|AB|S62.253S|ICD10CM|Disp fx of neck of first metacarpal bone, unsp hand, sequela|Disp fx of neck of first metacarpal bone, unsp hand, sequela +C2851270|T037|PT|S62.253S|ICD10CM|Displaced fracture of neck of first metacarpal bone, unspecified hand, sequela|Displaced fracture of neck of first metacarpal bone, unspecified hand, sequela +C2851271|T037|AB|S62.254|ICD10CM|Nondisp fx of neck of first metacarpal bone, right hand|Nondisp fx of neck of first metacarpal bone, right hand +C2851271|T037|HT|S62.254|ICD10CM|Nondisplaced fracture of neck of first metacarpal bone, right hand|Nondisplaced fracture of neck of first metacarpal bone, right hand +C2851272|T037|AB|S62.254A|ICD10CM|Nondisp fx of neck of first MC bone, right hand, init|Nondisp fx of neck of first MC bone, right hand, init +C2851273|T037|AB|S62.254B|ICD10CM|Nondisp fx of neck of first MC bone, r hand, init for opn fx|Nondisp fx of neck of first MC bone, r hand, init for opn fx +C2851274|T037|AB|S62.254D|ICD10CM|Nondisp fx of nk of 1st MC bone, r hand, 7thD|Nondisp fx of nk of 1st MC bone, r hand, 7thD +C2851275|T037|AB|S62.254G|ICD10CM|Nondisp fx of nk of 1st MC bone, r hand, 7thG|Nondisp fx of nk of 1st MC bone, r hand, 7thG +C2851276|T037|AB|S62.254K|ICD10CM|Nondisp fx of nk of 1st MC bone, r hand, 7thK|Nondisp fx of nk of 1st MC bone, r hand, 7thK +C2851277|T037|AB|S62.254P|ICD10CM|Nondisp fx of nk of 1st MC bone, r hand, 7thP|Nondisp fx of nk of 1st MC bone, r hand, 7thP +C2851278|T037|AB|S62.254S|ICD10CM|Nondisp fx of neck of first MC bone, right hand, sequela|Nondisp fx of neck of first MC bone, right hand, sequela +C2851278|T037|PT|S62.254S|ICD10CM|Nondisplaced fracture of neck of first metacarpal bone, right hand, sequela|Nondisplaced fracture of neck of first metacarpal bone, right hand, sequela +C2851279|T037|AB|S62.255|ICD10CM|Nondisp fx of neck of first metacarpal bone, left hand|Nondisp fx of neck of first metacarpal bone, left hand +C2851279|T037|HT|S62.255|ICD10CM|Nondisplaced fracture of neck of first metacarpal bone, left hand|Nondisplaced fracture of neck of first metacarpal bone, left hand +C2851280|T037|AB|S62.255A|ICD10CM|Nondisp fx of neck of first metacarpal bone, left hand, init|Nondisp fx of neck of first metacarpal bone, left hand, init +C2851281|T037|AB|S62.255B|ICD10CM|Nondisp fx of neck of first MC bone, l hand, init for opn fx|Nondisp fx of neck of first MC bone, l hand, init for opn fx +C2851282|T037|AB|S62.255D|ICD10CM|Nondisp fx of nk of 1st MC bone, l hand, 7thD|Nondisp fx of nk of 1st MC bone, l hand, 7thD +C2851283|T037|AB|S62.255G|ICD10CM|Nondisp fx of nk of 1st MC bone, l hand, 7thG|Nondisp fx of nk of 1st MC bone, l hand, 7thG +C2851284|T037|AB|S62.255K|ICD10CM|Nondisp fx of nk of 1st MC bone, l hand, 7thK|Nondisp fx of nk of 1st MC bone, l hand, 7thK +C2851285|T037|AB|S62.255P|ICD10CM|Nondisp fx of nk of 1st MC bone, l hand, 7thP|Nondisp fx of nk of 1st MC bone, l hand, 7thP +C2851286|T037|AB|S62.255S|ICD10CM|Nondisp fx of neck of first MC bone, left hand, sequela|Nondisp fx of neck of first MC bone, left hand, sequela +C2851286|T037|PT|S62.255S|ICD10CM|Nondisplaced fracture of neck of first metacarpal bone, left hand, sequela|Nondisplaced fracture of neck of first metacarpal bone, left hand, sequela +C2851287|T037|AB|S62.256|ICD10CM|Nondisp fx of neck of first metacarpal bone, unsp hand|Nondisp fx of neck of first metacarpal bone, unsp hand +C2851287|T037|HT|S62.256|ICD10CM|Nondisplaced fracture of neck of first metacarpal bone, unspecified hand|Nondisplaced fracture of neck of first metacarpal bone, unspecified hand +C2851288|T037|AB|S62.256A|ICD10CM|Nondisp fx of neck of first metacarpal bone, unsp hand, init|Nondisp fx of neck of first metacarpal bone, unsp hand, init +C2851289|T037|AB|S62.256B|ICD10CM|Nondisp fx of nk of 1st MC bone, unsp hand, init for opn fx|Nondisp fx of nk of 1st MC bone, unsp hand, init for opn fx +C2851290|T037|AB|S62.256D|ICD10CM|Nondisp fx of nk of 1st MC bone, unsp hand, 7thD|Nondisp fx of nk of 1st MC bone, unsp hand, 7thD +C2851291|T037|AB|S62.256G|ICD10CM|Nondisp fx of nk of 1st MC bone, unsp hand, 7thG|Nondisp fx of nk of 1st MC bone, unsp hand, 7thG +C2851292|T037|AB|S62.256K|ICD10CM|Nondisp fx of nk of 1st MC bone, unsp hand, 7thK|Nondisp fx of nk of 1st MC bone, unsp hand, 7thK +C2851293|T037|AB|S62.256P|ICD10CM|Nondisp fx of nk of 1st MC bone, unsp hand, 7thP|Nondisp fx of nk of 1st MC bone, unsp hand, 7thP +C2851294|T037|AB|S62.256S|ICD10CM|Nondisp fx of neck of first MC bone, unsp hand, sequela|Nondisp fx of neck of first MC bone, unsp hand, sequela +C2851294|T037|PT|S62.256S|ICD10CM|Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, sequela|Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, sequela +C2851295|T037|AB|S62.29|ICD10CM|Other fracture of first metacarpal bone|Other fracture of first metacarpal bone +C2851295|T037|HT|S62.29|ICD10CM|Other fracture of first metacarpal bone|Other fracture of first metacarpal bone +C2851296|T037|AB|S62.291|ICD10CM|Other fracture of first metacarpal bone, right hand|Other fracture of first metacarpal bone, right hand +C2851296|T037|HT|S62.291|ICD10CM|Other fracture of first metacarpal bone, right hand|Other fracture of first metacarpal bone, right hand +C2851297|T037|AB|S62.291A|ICD10CM|Oth fracture of first metacarpal bone, right hand, init|Oth fracture of first metacarpal bone, right hand, init +C2851297|T037|PT|S62.291A|ICD10CM|Other fracture of first metacarpal bone, right hand, initial encounter for closed fracture|Other fracture of first metacarpal bone, right hand, initial encounter for closed fracture +C2851298|T037|AB|S62.291B|ICD10CM|Oth fx first metacarpal bone, right hand, init for opn fx|Oth fx first metacarpal bone, right hand, init for opn fx +C2851298|T037|PT|S62.291B|ICD10CM|Other fracture of first metacarpal bone, right hand, initial encounter for open fracture|Other fracture of first metacarpal bone, right hand, initial encounter for open fracture +C2851299|T037|AB|S62.291D|ICD10CM|Oth fx first MC bone, right hand, subs for fx w routn heal|Oth fx first MC bone, right hand, subs for fx w routn heal +C2851300|T037|AB|S62.291G|ICD10CM|Oth fx first MC bone, right hand, subs for fx w delay heal|Oth fx first MC bone, right hand, subs for fx w delay heal +C2851301|T037|AB|S62.291K|ICD10CM|Oth fx first MC bone, right hand, subs for fx w nonunion|Oth fx first MC bone, right hand, subs for fx w nonunion +C2851301|T037|PT|S62.291K|ICD10CM|Other fracture of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion|Other fracture of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion +C2851302|T037|AB|S62.291P|ICD10CM|Oth fx first MC bone, right hand, subs for fx w malunion|Oth fx first MC bone, right hand, subs for fx w malunion +C2851302|T037|PT|S62.291P|ICD10CM|Other fracture of first metacarpal bone, right hand, subsequent encounter for fracture with malunion|Other fracture of first metacarpal bone, right hand, subsequent encounter for fracture with malunion +C2851303|T037|AB|S62.291S|ICD10CM|Other fracture of first metacarpal bone, right hand, sequela|Other fracture of first metacarpal bone, right hand, sequela +C2851303|T037|PT|S62.291S|ICD10CM|Other fracture of first metacarpal bone, right hand, sequela|Other fracture of first metacarpal bone, right hand, sequela +C2851304|T037|AB|S62.292|ICD10CM|Other fracture of first metacarpal bone, left hand|Other fracture of first metacarpal bone, left hand +C2851304|T037|HT|S62.292|ICD10CM|Other fracture of first metacarpal bone, left hand|Other fracture of first metacarpal bone, left hand +C2851305|T037|AB|S62.292A|ICD10CM|Oth fracture of first metacarpal bone, left hand, init|Oth fracture of first metacarpal bone, left hand, init +C2851305|T037|PT|S62.292A|ICD10CM|Other fracture of first metacarpal bone, left hand, initial encounter for closed fracture|Other fracture of first metacarpal bone, left hand, initial encounter for closed fracture +C2851306|T037|AB|S62.292B|ICD10CM|Oth fx first metacarpal bone, left hand, init for opn fx|Oth fx first metacarpal bone, left hand, init for opn fx +C2851306|T037|PT|S62.292B|ICD10CM|Other fracture of first metacarpal bone, left hand, initial encounter for open fracture|Other fracture of first metacarpal bone, left hand, initial encounter for open fracture +C2851307|T037|AB|S62.292D|ICD10CM|Oth fx first MC bone, left hand, subs for fx w routn heal|Oth fx first MC bone, left hand, subs for fx w routn heal +C2851308|T037|AB|S62.292G|ICD10CM|Oth fx first MC bone, left hand, subs for fx w delay heal|Oth fx first MC bone, left hand, subs for fx w delay heal +C2851309|T037|AB|S62.292K|ICD10CM|Oth fx first MC bone, left hand, subs for fx w nonunion|Oth fx first MC bone, left hand, subs for fx w nonunion +C2851309|T037|PT|S62.292K|ICD10CM|Other fracture of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion|Other fracture of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion +C2851310|T037|AB|S62.292P|ICD10CM|Oth fx first MC bone, left hand, subs for fx w malunion|Oth fx first MC bone, left hand, subs for fx w malunion +C2851310|T037|PT|S62.292P|ICD10CM|Other fracture of first metacarpal bone, left hand, subsequent encounter for fracture with malunion|Other fracture of first metacarpal bone, left hand, subsequent encounter for fracture with malunion +C2851311|T037|PT|S62.292S|ICD10CM|Other fracture of first metacarpal bone, left hand, sequela|Other fracture of first metacarpal bone, left hand, sequela +C2851311|T037|AB|S62.292S|ICD10CM|Other fracture of first metacarpal bone, left hand, sequela|Other fracture of first metacarpal bone, left hand, sequela +C2851312|T037|AB|S62.299|ICD10CM|Other fracture of first metacarpal bone, unspecified hand|Other fracture of first metacarpal bone, unspecified hand +C2851312|T037|HT|S62.299|ICD10CM|Other fracture of first metacarpal bone, unspecified hand|Other fracture of first metacarpal bone, unspecified hand +C2851313|T037|AB|S62.299A|ICD10CM|Oth fracture of first metacarpal bone, unsp hand, init|Oth fracture of first metacarpal bone, unsp hand, init +C2851313|T037|PT|S62.299A|ICD10CM|Other fracture of first metacarpal bone, unspecified hand, initial encounter for closed fracture|Other fracture of first metacarpal bone, unspecified hand, initial encounter for closed fracture +C2851314|T037|AB|S62.299B|ICD10CM|Oth fx first metacarpal bone, unsp hand, init for opn fx|Oth fx first metacarpal bone, unsp hand, init for opn fx +C2851314|T037|PT|S62.299B|ICD10CM|Other fracture of first metacarpal bone, unspecified hand, initial encounter for open fracture|Other fracture of first metacarpal bone, unspecified hand, initial encounter for open fracture +C2851315|T037|AB|S62.299D|ICD10CM|Oth fx first MC bone, unsp hand, subs for fx w routn heal|Oth fx first MC bone, unsp hand, subs for fx w routn heal +C2851316|T037|AB|S62.299G|ICD10CM|Oth fx first MC bone, unsp hand, subs for fx w delay heal|Oth fx first MC bone, unsp hand, subs for fx w delay heal +C2851317|T037|AB|S62.299K|ICD10CM|Oth fx first MC bone, unsp hand, subs for fx w nonunion|Oth fx first MC bone, unsp hand, subs for fx w nonunion +C2851318|T037|AB|S62.299P|ICD10CM|Oth fx first MC bone, unsp hand, subs for fx w malunion|Oth fx first MC bone, unsp hand, subs for fx w malunion +C2851319|T037|AB|S62.299S|ICD10CM|Other fracture of first metacarpal bone, unsp hand, sequela|Other fracture of first metacarpal bone, unsp hand, sequela +C2851319|T037|PT|S62.299S|ICD10CM|Other fracture of first metacarpal bone, unspecified hand, sequela|Other fracture of first metacarpal bone, unspecified hand, sequela +C2851320|T037|AB|S62.3|ICD10CM|Fracture of other and unspecified metacarpal bone|Fracture of other and unspecified metacarpal bone +C2851320|T037|HT|S62.3|ICD10CM|Fracture of other and unspecified metacarpal bone|Fracture of other and unspecified metacarpal bone +C0478306|T037|PT|S62.3|ICD10|Fracture of other metacarpal bone|Fracture of other metacarpal bone +C2851321|T037|AB|S62.30|ICD10CM|Unspecified fracture of other metacarpal bone|Unspecified fracture of other metacarpal bone +C2851321|T037|HT|S62.30|ICD10CM|Unspecified fracture of other metacarpal bone|Unspecified fracture of other metacarpal bone +C2851322|T037|AB|S62.300|ICD10CM|Unspecified fracture of second metacarpal bone, right hand|Unspecified fracture of second metacarpal bone, right hand +C2851322|T037|HT|S62.300|ICD10CM|Unspecified fracture of second metacarpal bone, right hand|Unspecified fracture of second metacarpal bone, right hand +C2851323|T037|AB|S62.300A|ICD10CM|Unsp fracture of second metacarpal bone, right hand, init|Unsp fracture of second metacarpal bone, right hand, init +C2851323|T037|PT|S62.300A|ICD10CM|Unspecified fracture of second metacarpal bone, right hand, initial encounter for closed fracture|Unspecified fracture of second metacarpal bone, right hand, initial encounter for closed fracture +C2851324|T037|AB|S62.300B|ICD10CM|Unsp fx second metacarpal bone, right hand, init for opn fx|Unsp fx second metacarpal bone, right hand, init for opn fx +C2851324|T037|PT|S62.300B|ICD10CM|Unspecified fracture of second metacarpal bone, right hand, initial encounter for open fracture|Unspecified fracture of second metacarpal bone, right hand, initial encounter for open fracture +C2851325|T037|AB|S62.300D|ICD10CM|Unsp fx second MC bone, right hand, subs for fx w routn heal|Unsp fx second MC bone, right hand, subs for fx w routn heal +C2851326|T037|AB|S62.300G|ICD10CM|Unsp fx second MC bone, right hand, subs for fx w delay heal|Unsp fx second MC bone, right hand, subs for fx w delay heal +C2851327|T037|AB|S62.300K|ICD10CM|Unsp fx second MC bone, right hand, subs for fx w nonunion|Unsp fx second MC bone, right hand, subs for fx w nonunion +C2851328|T037|AB|S62.300P|ICD10CM|Unsp fx second MC bone, right hand, subs for fx w malunion|Unsp fx second MC bone, right hand, subs for fx w malunion +C2851329|T037|AB|S62.300S|ICD10CM|Unsp fracture of second metacarpal bone, right hand, sequela|Unsp fracture of second metacarpal bone, right hand, sequela +C2851329|T037|PT|S62.300S|ICD10CM|Unspecified fracture of second metacarpal bone, right hand, sequela|Unspecified fracture of second metacarpal bone, right hand, sequela +C2851330|T037|AB|S62.301|ICD10CM|Unspecified fracture of second metacarpal bone, left hand|Unspecified fracture of second metacarpal bone, left hand +C2851330|T037|HT|S62.301|ICD10CM|Unspecified fracture of second metacarpal bone, left hand|Unspecified fracture of second metacarpal bone, left hand +C2851331|T037|AB|S62.301A|ICD10CM|Unsp fracture of second metacarpal bone, left hand, init|Unsp fracture of second metacarpal bone, left hand, init +C2851331|T037|PT|S62.301A|ICD10CM|Unspecified fracture of second metacarpal bone, left hand, initial encounter for closed fracture|Unspecified fracture of second metacarpal bone, left hand, initial encounter for closed fracture +C2851332|T037|AB|S62.301B|ICD10CM|Unsp fx second metacarpal bone, left hand, init for opn fx|Unsp fx second metacarpal bone, left hand, init for opn fx +C2851332|T037|PT|S62.301B|ICD10CM|Unspecified fracture of second metacarpal bone, left hand, initial encounter for open fracture|Unspecified fracture of second metacarpal bone, left hand, initial encounter for open fracture +C2851333|T037|AB|S62.301D|ICD10CM|Unsp fx second MC bone, left hand, subs for fx w routn heal|Unsp fx second MC bone, left hand, subs for fx w routn heal +C2851334|T037|AB|S62.301G|ICD10CM|Unsp fx second MC bone, left hand, subs for fx w delay heal|Unsp fx second MC bone, left hand, subs for fx w delay heal +C2851335|T037|AB|S62.301K|ICD10CM|Unsp fx second MC bone, left hand, subs for fx w nonunion|Unsp fx second MC bone, left hand, subs for fx w nonunion +C2851336|T037|AB|S62.301P|ICD10CM|Unsp fx second MC bone, left hand, subs for fx w malunion|Unsp fx second MC bone, left hand, subs for fx w malunion +C2851337|T037|AB|S62.301S|ICD10CM|Unsp fracture of second metacarpal bone, left hand, sequela|Unsp fracture of second metacarpal bone, left hand, sequela +C2851337|T037|PT|S62.301S|ICD10CM|Unspecified fracture of second metacarpal bone, left hand, sequela|Unspecified fracture of second metacarpal bone, left hand, sequela +C2851338|T037|AB|S62.302|ICD10CM|Unspecified fracture of third metacarpal bone, right hand|Unspecified fracture of third metacarpal bone, right hand +C2851338|T037|HT|S62.302|ICD10CM|Unspecified fracture of third metacarpal bone, right hand|Unspecified fracture of third metacarpal bone, right hand +C2851339|T037|AB|S62.302A|ICD10CM|Unsp fracture of third metacarpal bone, right hand, init|Unsp fracture of third metacarpal bone, right hand, init +C2851339|T037|PT|S62.302A|ICD10CM|Unspecified fracture of third metacarpal bone, right hand, initial encounter for closed fracture|Unspecified fracture of third metacarpal bone, right hand, initial encounter for closed fracture +C2851340|T037|AB|S62.302B|ICD10CM|Unsp fx third metacarpal bone, right hand, init for opn fx|Unsp fx third metacarpal bone, right hand, init for opn fx +C2851340|T037|PT|S62.302B|ICD10CM|Unspecified fracture of third metacarpal bone, right hand, initial encounter for open fracture|Unspecified fracture of third metacarpal bone, right hand, initial encounter for open fracture +C2851341|T037|AB|S62.302D|ICD10CM|Unsp fx third MC bone, right hand, subs for fx w routn heal|Unsp fx third MC bone, right hand, subs for fx w routn heal +C2851342|T037|AB|S62.302G|ICD10CM|Unsp fx third MC bone, right hand, subs for fx w delay heal|Unsp fx third MC bone, right hand, subs for fx w delay heal +C2851343|T037|AB|S62.302K|ICD10CM|Unsp fx third MC bone, right hand, subs for fx w nonunion|Unsp fx third MC bone, right hand, subs for fx w nonunion +C2851344|T037|AB|S62.302P|ICD10CM|Unsp fx third MC bone, right hand, subs for fx w malunion|Unsp fx third MC bone, right hand, subs for fx w malunion +C2851345|T037|AB|S62.302S|ICD10CM|Unsp fracture of third metacarpal bone, right hand, sequela|Unsp fracture of third metacarpal bone, right hand, sequela +C2851345|T037|PT|S62.302S|ICD10CM|Unspecified fracture of third metacarpal bone, right hand, sequela|Unspecified fracture of third metacarpal bone, right hand, sequela +C2851346|T037|AB|S62.303|ICD10CM|Unspecified fracture of third metacarpal bone, left hand|Unspecified fracture of third metacarpal bone, left hand +C2851346|T037|HT|S62.303|ICD10CM|Unspecified fracture of third metacarpal bone, left hand|Unspecified fracture of third metacarpal bone, left hand +C2851347|T037|AB|S62.303A|ICD10CM|Unsp fracture of third metacarpal bone, left hand, init|Unsp fracture of third metacarpal bone, left hand, init +C2851347|T037|PT|S62.303A|ICD10CM|Unspecified fracture of third metacarpal bone, left hand, initial encounter for closed fracture|Unspecified fracture of third metacarpal bone, left hand, initial encounter for closed fracture +C2851348|T037|AB|S62.303B|ICD10CM|Unsp fx third metacarpal bone, left hand, init for opn fx|Unsp fx third metacarpal bone, left hand, init for opn fx +C2851348|T037|PT|S62.303B|ICD10CM|Unspecified fracture of third metacarpal bone, left hand, initial encounter for open fracture|Unspecified fracture of third metacarpal bone, left hand, initial encounter for open fracture +C2851349|T037|AB|S62.303D|ICD10CM|Unsp fx third MC bone, left hand, subs for fx w routn heal|Unsp fx third MC bone, left hand, subs for fx w routn heal +C2851350|T037|AB|S62.303G|ICD10CM|Unsp fx third MC bone, left hand, subs for fx w delay heal|Unsp fx third MC bone, left hand, subs for fx w delay heal +C2851351|T037|AB|S62.303K|ICD10CM|Unsp fx third MC bone, left hand, subs for fx w nonunion|Unsp fx third MC bone, left hand, subs for fx w nonunion +C2851352|T037|AB|S62.303P|ICD10CM|Unsp fx third MC bone, left hand, subs for fx w malunion|Unsp fx third MC bone, left hand, subs for fx w malunion +C2851353|T037|AB|S62.303S|ICD10CM|Unsp fracture of third metacarpal bone, left hand, sequela|Unsp fracture of third metacarpal bone, left hand, sequela +C2851353|T037|PT|S62.303S|ICD10CM|Unspecified fracture of third metacarpal bone, left hand, sequela|Unspecified fracture of third metacarpal bone, left hand, sequela +C2851354|T037|AB|S62.304|ICD10CM|Unspecified fracture of fourth metacarpal bone, right hand|Unspecified fracture of fourth metacarpal bone, right hand +C2851354|T037|HT|S62.304|ICD10CM|Unspecified fracture of fourth metacarpal bone, right hand|Unspecified fracture of fourth metacarpal bone, right hand +C2851355|T037|AB|S62.304A|ICD10CM|Unsp fracture of fourth metacarpal bone, right hand, init|Unsp fracture of fourth metacarpal bone, right hand, init +C2851355|T037|PT|S62.304A|ICD10CM|Unspecified fracture of fourth metacarpal bone, right hand, initial encounter for closed fracture|Unspecified fracture of fourth metacarpal bone, right hand, initial encounter for closed fracture +C2851356|T037|AB|S62.304B|ICD10CM|Unsp fx fourth metacarpal bone, right hand, init for opn fx|Unsp fx fourth metacarpal bone, right hand, init for opn fx +C2851356|T037|PT|S62.304B|ICD10CM|Unspecified fracture of fourth metacarpal bone, right hand, initial encounter for open fracture|Unspecified fracture of fourth metacarpal bone, right hand, initial encounter for open fracture +C2851357|T037|AB|S62.304D|ICD10CM|Unsp fx fourth MC bone, right hand, subs for fx w routn heal|Unsp fx fourth MC bone, right hand, subs for fx w routn heal +C2851358|T037|AB|S62.304G|ICD10CM|Unsp fx fourth MC bone, right hand, subs for fx w delay heal|Unsp fx fourth MC bone, right hand, subs for fx w delay heal +C2851359|T037|AB|S62.304K|ICD10CM|Unsp fx fourth MC bone, right hand, subs for fx w nonunion|Unsp fx fourth MC bone, right hand, subs for fx w nonunion +C2851360|T037|AB|S62.304P|ICD10CM|Unsp fx fourth MC bone, right hand, subs for fx w malunion|Unsp fx fourth MC bone, right hand, subs for fx w malunion +C2851361|T037|AB|S62.304S|ICD10CM|Unsp fracture of fourth metacarpal bone, right hand, sequela|Unsp fracture of fourth metacarpal bone, right hand, sequela +C2851361|T037|PT|S62.304S|ICD10CM|Unspecified fracture of fourth metacarpal bone, right hand, sequela|Unspecified fracture of fourth metacarpal bone, right hand, sequela +C2851362|T037|AB|S62.305|ICD10CM|Unspecified fracture of fourth metacarpal bone, left hand|Unspecified fracture of fourth metacarpal bone, left hand +C2851362|T037|HT|S62.305|ICD10CM|Unspecified fracture of fourth metacarpal bone, left hand|Unspecified fracture of fourth metacarpal bone, left hand +C2851363|T037|AB|S62.305A|ICD10CM|Unsp fracture of fourth metacarpal bone, left hand, init|Unsp fracture of fourth metacarpal bone, left hand, init +C2851363|T037|PT|S62.305A|ICD10CM|Unspecified fracture of fourth metacarpal bone, left hand, initial encounter for closed fracture|Unspecified fracture of fourth metacarpal bone, left hand, initial encounter for closed fracture +C2851364|T037|AB|S62.305B|ICD10CM|Unsp fx fourth metacarpal bone, left hand, init for opn fx|Unsp fx fourth metacarpal bone, left hand, init for opn fx +C2851364|T037|PT|S62.305B|ICD10CM|Unspecified fracture of fourth metacarpal bone, left hand, initial encounter for open fracture|Unspecified fracture of fourth metacarpal bone, left hand, initial encounter for open fracture +C2851365|T037|AB|S62.305D|ICD10CM|Unsp fx fourth MC bone, left hand, subs for fx w routn heal|Unsp fx fourth MC bone, left hand, subs for fx w routn heal +C2851366|T037|AB|S62.305G|ICD10CM|Unsp fx fourth MC bone, left hand, subs for fx w delay heal|Unsp fx fourth MC bone, left hand, subs for fx w delay heal +C2851367|T037|AB|S62.305K|ICD10CM|Unsp fx fourth MC bone, left hand, subs for fx w nonunion|Unsp fx fourth MC bone, left hand, subs for fx w nonunion +C2851368|T037|AB|S62.305P|ICD10CM|Unsp fx fourth MC bone, left hand, subs for fx w malunion|Unsp fx fourth MC bone, left hand, subs for fx w malunion +C2851369|T037|AB|S62.305S|ICD10CM|Unsp fracture of fourth metacarpal bone, left hand, sequela|Unsp fracture of fourth metacarpal bone, left hand, sequela +C2851369|T037|PT|S62.305S|ICD10CM|Unspecified fracture of fourth metacarpal bone, left hand, sequela|Unspecified fracture of fourth metacarpal bone, left hand, sequela +C2851370|T037|AB|S62.306|ICD10CM|Unspecified fracture of fifth metacarpal bone, right hand|Unspecified fracture of fifth metacarpal bone, right hand +C2851370|T037|HT|S62.306|ICD10CM|Unspecified fracture of fifth metacarpal bone, right hand|Unspecified fracture of fifth metacarpal bone, right hand +C2851371|T037|AB|S62.306A|ICD10CM|Unsp fracture of fifth metacarpal bone, right hand, init|Unsp fracture of fifth metacarpal bone, right hand, init +C2851371|T037|PT|S62.306A|ICD10CM|Unspecified fracture of fifth metacarpal bone, right hand, initial encounter for closed fracture|Unspecified fracture of fifth metacarpal bone, right hand, initial encounter for closed fracture +C2851372|T037|AB|S62.306B|ICD10CM|Unsp fx fifth metacarpal bone, right hand, init for opn fx|Unsp fx fifth metacarpal bone, right hand, init for opn fx +C2851372|T037|PT|S62.306B|ICD10CM|Unspecified fracture of fifth metacarpal bone, right hand, initial encounter for open fracture|Unspecified fracture of fifth metacarpal bone, right hand, initial encounter for open fracture +C2851373|T037|AB|S62.306D|ICD10CM|Unsp fx fifth MC bone, right hand, subs for fx w routn heal|Unsp fx fifth MC bone, right hand, subs for fx w routn heal +C2851374|T037|AB|S62.306G|ICD10CM|Unsp fx fifth MC bone, right hand, subs for fx w delay heal|Unsp fx fifth MC bone, right hand, subs for fx w delay heal +C2851375|T037|AB|S62.306K|ICD10CM|Unsp fx fifth MC bone, right hand, subs for fx w nonunion|Unsp fx fifth MC bone, right hand, subs for fx w nonunion +C2851376|T037|AB|S62.306P|ICD10CM|Unsp fx fifth MC bone, right hand, subs for fx w malunion|Unsp fx fifth MC bone, right hand, subs for fx w malunion +C2851377|T037|AB|S62.306S|ICD10CM|Unsp fracture of fifth metacarpal bone, right hand, sequela|Unsp fracture of fifth metacarpal bone, right hand, sequela +C2851377|T037|PT|S62.306S|ICD10CM|Unspecified fracture of fifth metacarpal bone, right hand, sequela|Unspecified fracture of fifth metacarpal bone, right hand, sequela +C2851378|T037|AB|S62.307|ICD10CM|Unspecified fracture of fifth metacarpal bone, left hand|Unspecified fracture of fifth metacarpal bone, left hand +C2851378|T037|HT|S62.307|ICD10CM|Unspecified fracture of fifth metacarpal bone, left hand|Unspecified fracture of fifth metacarpal bone, left hand +C2851379|T037|AB|S62.307A|ICD10CM|Unsp fracture of fifth metacarpal bone, left hand, init|Unsp fracture of fifth metacarpal bone, left hand, init +C2851379|T037|PT|S62.307A|ICD10CM|Unspecified fracture of fifth metacarpal bone, left hand, initial encounter for closed fracture|Unspecified fracture of fifth metacarpal bone, left hand, initial encounter for closed fracture +C2851380|T037|AB|S62.307B|ICD10CM|Unsp fx fifth metacarpal bone, left hand, init for opn fx|Unsp fx fifth metacarpal bone, left hand, init for opn fx +C2851380|T037|PT|S62.307B|ICD10CM|Unspecified fracture of fifth metacarpal bone, left hand, initial encounter for open fracture|Unspecified fracture of fifth metacarpal bone, left hand, initial encounter for open fracture +C2851381|T037|AB|S62.307D|ICD10CM|Unsp fx fifth MC bone, left hand, subs for fx w routn heal|Unsp fx fifth MC bone, left hand, subs for fx w routn heal +C2851382|T037|AB|S62.307G|ICD10CM|Unsp fx fifth MC bone, left hand, subs for fx w delay heal|Unsp fx fifth MC bone, left hand, subs for fx w delay heal +C2851383|T037|AB|S62.307K|ICD10CM|Unsp fx fifth MC bone, left hand, subs for fx w nonunion|Unsp fx fifth MC bone, left hand, subs for fx w nonunion +C2851384|T037|AB|S62.307P|ICD10CM|Unsp fx fifth MC bone, left hand, subs for fx w malunion|Unsp fx fifth MC bone, left hand, subs for fx w malunion +C2851385|T037|AB|S62.307S|ICD10CM|Unsp fracture of fifth metacarpal bone, left hand, sequela|Unsp fracture of fifth metacarpal bone, left hand, sequela +C2851385|T037|PT|S62.307S|ICD10CM|Unspecified fracture of fifth metacarpal bone, left hand, sequela|Unspecified fracture of fifth metacarpal bone, left hand, sequela +C2851321|T037|HT|S62.308|ICD10CM|Unspecified fracture of other metacarpal bone|Unspecified fracture of other metacarpal bone +C2851321|T037|AB|S62.308|ICD10CM|Unspecified fracture of other metacarpal bone|Unspecified fracture of other metacarpal bone +C2851386|T037|ET|S62.308|ICD10CM|Unspecified fracture of specified metacarpal bone with unspecified laterality|Unspecified fracture of specified metacarpal bone with unspecified laterality +C2851387|T037|AB|S62.308A|ICD10CM|Unsp fracture of oth metacarpal bone, init for clos fx|Unsp fracture of oth metacarpal bone, init for clos fx +C2851387|T037|PT|S62.308A|ICD10CM|Unspecified fracture of other metacarpal bone, initial encounter for closed fracture|Unspecified fracture of other metacarpal bone, initial encounter for closed fracture +C2851388|T037|AB|S62.308B|ICD10CM|Unsp fracture of oth metacarpal bone, init for opn fx|Unsp fracture of oth metacarpal bone, init for opn fx +C2851388|T037|PT|S62.308B|ICD10CM|Unspecified fracture of other metacarpal bone, initial encounter for open fracture|Unspecified fracture of other metacarpal bone, initial encounter for open fracture +C2851389|T037|AB|S62.308D|ICD10CM|Unsp fracture of metacarpal bone, subs for fx w routn heal|Unsp fracture of metacarpal bone, subs for fx w routn heal +C2851390|T037|AB|S62.308G|ICD10CM|Unsp fracture of metacarpal bone, subs for fx w delay heal|Unsp fracture of metacarpal bone, subs for fx w delay heal +C2851391|T037|AB|S62.308K|ICD10CM|Unsp fracture of oth metacarpal bone, subs for fx w nonunion|Unsp fracture of oth metacarpal bone, subs for fx w nonunion +C2851391|T037|PT|S62.308K|ICD10CM|Unspecified fracture of other metacarpal bone, subsequent encounter for fracture with nonunion|Unspecified fracture of other metacarpal bone, subsequent encounter for fracture with nonunion +C2851392|T037|AB|S62.308P|ICD10CM|Unsp fracture of oth metacarpal bone, subs for fx w malunion|Unsp fracture of oth metacarpal bone, subs for fx w malunion +C2851392|T037|PT|S62.308P|ICD10CM|Unspecified fracture of other metacarpal bone, subsequent encounter for fracture with malunion|Unspecified fracture of other metacarpal bone, subsequent encounter for fracture with malunion +C2851393|T037|PT|S62.308S|ICD10CM|Unspecified fracture of other metacarpal bone, sequela|Unspecified fracture of other metacarpal bone, sequela +C2851393|T037|AB|S62.308S|ICD10CM|Unspecified fracture of other metacarpal bone, sequela|Unspecified fracture of other metacarpal bone, sequela +C2851394|T037|AB|S62.309|ICD10CM|Unspecified fracture of unspecified metacarpal bone|Unspecified fracture of unspecified metacarpal bone +C2851394|T037|HT|S62.309|ICD10CM|Unspecified fracture of unspecified metacarpal bone|Unspecified fracture of unspecified metacarpal bone +C2851395|T037|AB|S62.309A|ICD10CM|Unsp fracture of unsp metacarpal bone, init for clos fx|Unsp fracture of unsp metacarpal bone, init for clos fx +C2851395|T037|PT|S62.309A|ICD10CM|Unspecified fracture of unspecified metacarpal bone, initial encounter for closed fracture|Unspecified fracture of unspecified metacarpal bone, initial encounter for closed fracture +C2851396|T037|AB|S62.309B|ICD10CM|Unsp fracture of unsp metacarpal bone, init for opn fx|Unsp fracture of unsp metacarpal bone, init for opn fx +C2851396|T037|PT|S62.309B|ICD10CM|Unspecified fracture of unspecified metacarpal bone, initial encounter for open fracture|Unspecified fracture of unspecified metacarpal bone, initial encounter for open fracture +C2851397|T037|AB|S62.309D|ICD10CM|Unsp fx unsp metacarpal bone, subs for fx w routn heal|Unsp fx unsp metacarpal bone, subs for fx w routn heal +C2851398|T037|AB|S62.309G|ICD10CM|Unsp fx unsp metacarpal bone, subs for fx w delay heal|Unsp fx unsp metacarpal bone, subs for fx w delay heal +C2851399|T037|AB|S62.309K|ICD10CM|Unsp fx unsp metacarpal bone, subs for fx w nonunion|Unsp fx unsp metacarpal bone, subs for fx w nonunion +C2851399|T037|PT|S62.309K|ICD10CM|Unspecified fracture of unspecified metacarpal bone, subsequent encounter for fracture with nonunion|Unspecified fracture of unspecified metacarpal bone, subsequent encounter for fracture with nonunion +C2851400|T037|AB|S62.309P|ICD10CM|Unsp fx unsp metacarpal bone, subs for fx w malunion|Unsp fx unsp metacarpal bone, subs for fx w malunion +C2851400|T037|PT|S62.309P|ICD10CM|Unspecified fracture of unspecified metacarpal bone, subsequent encounter for fracture with malunion|Unspecified fracture of unspecified metacarpal bone, subsequent encounter for fracture with malunion +C2851401|T037|AB|S62.309S|ICD10CM|Unspecified fracture of unspecified metacarpal bone, sequela|Unspecified fracture of unspecified metacarpal bone, sequela +C2851401|T037|PT|S62.309S|ICD10CM|Unspecified fracture of unspecified metacarpal bone, sequela|Unspecified fracture of unspecified metacarpal bone, sequela +C2851402|T037|HT|S62.31|ICD10CM|Displaced fracture of base of other metacarpal bone|Displaced fracture of base of other metacarpal bone +C2851402|T037|AB|S62.31|ICD10CM|Displaced fracture of base of other metacarpal bone|Displaced fracture of base of other metacarpal bone +C2851403|T037|AB|S62.310|ICD10CM|Disp fx of base of second metacarpal bone, right hand|Disp fx of base of second metacarpal bone, right hand +C2851403|T037|HT|S62.310|ICD10CM|Displaced fracture of base of second metacarpal bone, right hand|Displaced fracture of base of second metacarpal bone, right hand +C2851404|T037|AB|S62.310A|ICD10CM|Disp fx of base of second metacarpal bone, right hand, init|Disp fx of base of second metacarpal bone, right hand, init +C2851405|T037|AB|S62.310B|ICD10CM|Disp fx of base of second MC bone, r hand, init for opn fx|Disp fx of base of second MC bone, r hand, init for opn fx +C2851406|T037|AB|S62.310D|ICD10CM|Disp fx of base of 2nd MC bone, r hand, 7thD|Disp fx of base of 2nd MC bone, r hand, 7thD +C2851407|T037|AB|S62.310G|ICD10CM|Disp fx of base of 2nd MC bone, r hand, 7thG|Disp fx of base of 2nd MC bone, r hand, 7thG +C2851408|T037|AB|S62.310K|ICD10CM|Disp fx of base of 2nd MC bone, r hand, 7thK|Disp fx of base of 2nd MC bone, r hand, 7thK +C2851409|T037|AB|S62.310P|ICD10CM|Disp fx of base of 2nd MC bone, r hand, 7thP|Disp fx of base of 2nd MC bone, r hand, 7thP +C2851410|T037|AB|S62.310S|ICD10CM|Disp fx of base of second MC bone, right hand, sequela|Disp fx of base of second MC bone, right hand, sequela +C2851410|T037|PT|S62.310S|ICD10CM|Displaced fracture of base of second metacarpal bone, right hand, sequela|Displaced fracture of base of second metacarpal bone, right hand, sequela +C2851411|T037|AB|S62.311|ICD10CM|Disp fx of base of second metacarpal bone, left hand|Disp fx of base of second metacarpal bone, left hand +C2851411|T037|HT|S62.311|ICD10CM|Displaced fracture of base of second metacarpal bone, left hand|Displaced fracture of base of second metacarpal bone, left hand +C2851412|T037|AB|S62.311A|ICD10CM|Disp fx of base of second metacarpal bone, left hand, init|Disp fx of base of second metacarpal bone, left hand, init +C2851413|T037|AB|S62.311B|ICD10CM|Disp fx of base of second metacarpal bone, left hand, 7thB|Disp fx of base of second metacarpal bone, left hand, 7thB +C2851413|T037|PT|S62.311B|ICD10CM|Displaced fracture of base of second metacarpal bone, left hand, initial encounter for open fracture|Displaced fracture of base of second metacarpal bone, left hand, initial encounter for open fracture +C2851414|T037|AB|S62.311D|ICD10CM|Disp fx of base of second metacarpal bone, left hand, 7thD|Disp fx of base of second metacarpal bone, left hand, 7thD +C2851415|T037|AB|S62.311G|ICD10CM|Disp fx of base of second metacarpal bone, left hand, 7thG|Disp fx of base of second metacarpal bone, left hand, 7thG +C2851416|T037|AB|S62.311K|ICD10CM|Disp fx of base of second metacarpal bone, left hand, 7thK|Disp fx of base of second metacarpal bone, left hand, 7thK +C2851417|T037|AB|S62.311P|ICD10CM|Disp fx of base of second metacarpal bone, left hand, 7thP|Disp fx of base of second metacarpal bone, left hand, 7thP +C2851418|T037|AB|S62.311S|ICD10CM|Disp fx of base of second MC bone, left hand, sequela|Disp fx of base of second MC bone, left hand, sequela +C2851418|T037|PT|S62.311S|ICD10CM|Displaced fracture of base of second metacarpal bone, left hand, sequela|Displaced fracture of base of second metacarpal bone, left hand, sequela +C2851419|T037|AB|S62.312|ICD10CM|Disp fx of base of third metacarpal bone, right hand|Disp fx of base of third metacarpal bone, right hand +C2851419|T037|HT|S62.312|ICD10CM|Displaced fracture of base of third metacarpal bone, right hand|Displaced fracture of base of third metacarpal bone, right hand +C2851420|T037|AB|S62.312A|ICD10CM|Disp fx of base of third metacarpal bone, right hand, init|Disp fx of base of third metacarpal bone, right hand, init +C2851421|T037|AB|S62.312B|ICD10CM|Disp fx of base of third MC bone, r hand, init for opn fx|Disp fx of base of third MC bone, r hand, init for opn fx +C2851421|T037|PT|S62.312B|ICD10CM|Displaced fracture of base of third metacarpal bone, right hand, initial encounter for open fracture|Displaced fracture of base of third metacarpal bone, right hand, initial encounter for open fracture +C2851422|T037|AB|S62.312D|ICD10CM|Disp fx of base of 3rd MC bone, r hand, 7thD|Disp fx of base of 3rd MC bone, r hand, 7thD +C2851423|T037|AB|S62.312G|ICD10CM|Disp fx of base of 3rd MC bone, r hand, 7thG|Disp fx of base of 3rd MC bone, r hand, 7thG +C2851424|T037|AB|S62.312K|ICD10CM|Disp fx of base of 3rd MC bone, r hand, 7thK|Disp fx of base of 3rd MC bone, r hand, 7thK +C2851425|T037|AB|S62.312P|ICD10CM|Disp fx of base of 3rd MC bone, r hand, 7thP|Disp fx of base of 3rd MC bone, r hand, 7thP +C2851426|T037|AB|S62.312S|ICD10CM|Disp fx of base of third MC bone, right hand, sequela|Disp fx of base of third MC bone, right hand, sequela +C2851426|T037|PT|S62.312S|ICD10CM|Displaced fracture of base of third metacarpal bone, right hand, sequela|Displaced fracture of base of third metacarpal bone, right hand, sequela +C2851427|T037|AB|S62.313|ICD10CM|Disp fx of base of third metacarpal bone, left hand|Disp fx of base of third metacarpal bone, left hand +C2851427|T037|HT|S62.313|ICD10CM|Displaced fracture of base of third metacarpal bone, left hand|Displaced fracture of base of third metacarpal bone, left hand +C2851428|T037|AB|S62.313A|ICD10CM|Disp fx of base of third metacarpal bone, left hand, init|Disp fx of base of third metacarpal bone, left hand, init +C2851429|T037|AB|S62.313B|ICD10CM|Disp fx of base of third MC bone, left hand, init for opn fx|Disp fx of base of third MC bone, left hand, init for opn fx +C2851429|T037|PT|S62.313B|ICD10CM|Displaced fracture of base of third metacarpal bone, left hand, initial encounter for open fracture|Displaced fracture of base of third metacarpal bone, left hand, initial encounter for open fracture +C2851430|T037|AB|S62.313D|ICD10CM|Disp fx of base of 3rd MC bone, l hand, 7thD|Disp fx of base of 3rd MC bone, l hand, 7thD +C2851431|T037|AB|S62.313G|ICD10CM|Disp fx of base of 3rd MC bone, l hand, 7thG|Disp fx of base of 3rd MC bone, l hand, 7thG +C2851432|T037|AB|S62.313K|ICD10CM|Disp fx of base of 3rd MC bone, l hand, 7thK|Disp fx of base of 3rd MC bone, l hand, 7thK +C2851433|T037|AB|S62.313P|ICD10CM|Disp fx of base of 3rd MC bone, l hand, 7thP|Disp fx of base of 3rd MC bone, l hand, 7thP +C2851434|T037|AB|S62.313S|ICD10CM|Disp fx of base of third metacarpal bone, left hand, sequela|Disp fx of base of third metacarpal bone, left hand, sequela +C2851434|T037|PT|S62.313S|ICD10CM|Displaced fracture of base of third metacarpal bone, left hand, sequela|Displaced fracture of base of third metacarpal bone, left hand, sequela +C2851435|T037|AB|S62.314|ICD10CM|Disp fx of base of fourth metacarpal bone, right hand|Disp fx of base of fourth metacarpal bone, right hand +C2851435|T037|HT|S62.314|ICD10CM|Displaced fracture of base of fourth metacarpal bone, right hand|Displaced fracture of base of fourth metacarpal bone, right hand +C2851436|T037|AB|S62.314A|ICD10CM|Disp fx of base of fourth metacarpal bone, right hand, init|Disp fx of base of fourth metacarpal bone, right hand, init +C2851437|T037|AB|S62.314B|ICD10CM|Disp fx of base of fourth MC bone, r hand, init for opn fx|Disp fx of base of fourth MC bone, r hand, init for opn fx +C2851438|T037|AB|S62.314D|ICD10CM|Disp fx of base of 4th MC bone, r hand, 7thD|Disp fx of base of 4th MC bone, r hand, 7thD +C2851439|T037|AB|S62.314G|ICD10CM|Disp fx of base of 4th MC bone, r hand, 7thG|Disp fx of base of 4th MC bone, r hand, 7thG +C2851440|T037|AB|S62.314K|ICD10CM|Disp fx of base of 4th MC bone, r hand, 7thK|Disp fx of base of 4th MC bone, r hand, 7thK +C2851441|T037|AB|S62.314P|ICD10CM|Disp fx of base of 4th MC bone, r hand, 7thP|Disp fx of base of 4th MC bone, r hand, 7thP +C2851442|T037|AB|S62.314S|ICD10CM|Disp fx of base of fourth MC bone, right hand, sequela|Disp fx of base of fourth MC bone, right hand, sequela +C2851442|T037|PT|S62.314S|ICD10CM|Displaced fracture of base of fourth metacarpal bone, right hand, sequela|Displaced fracture of base of fourth metacarpal bone, right hand, sequela +C2851443|T037|AB|S62.315|ICD10CM|Disp fx of base of fourth metacarpal bone, left hand|Disp fx of base of fourth metacarpal bone, left hand +C2851443|T037|HT|S62.315|ICD10CM|Displaced fracture of base of fourth metacarpal bone, left hand|Displaced fracture of base of fourth metacarpal bone, left hand +C2851444|T037|AB|S62.315A|ICD10CM|Disp fx of base of fourth metacarpal bone, left hand, init|Disp fx of base of fourth metacarpal bone, left hand, init +C2851445|T037|AB|S62.315B|ICD10CM|Disp fx of base of fourth MC bone, l hand, init for opn fx|Disp fx of base of fourth MC bone, l hand, init for opn fx +C2851445|T037|PT|S62.315B|ICD10CM|Displaced fracture of base of fourth metacarpal bone, left hand, initial encounter for open fracture|Displaced fracture of base of fourth metacarpal bone, left hand, initial encounter for open fracture +C2851446|T037|AB|S62.315D|ICD10CM|Disp fx of base of 4th MC bone, l hand, 7thD|Disp fx of base of 4th MC bone, l hand, 7thD +C2851447|T037|AB|S62.315G|ICD10CM|Disp fx of base of 4th MC bone, l hand, 7thG|Disp fx of base of 4th MC bone, l hand, 7thG +C2851448|T037|AB|S62.315K|ICD10CM|Disp fx of base of 4th MC bone, l hand, 7thK|Disp fx of base of 4th MC bone, l hand, 7thK +C2851449|T037|AB|S62.315P|ICD10CM|Disp fx of base of 4th MC bone, l hand, 7thP|Disp fx of base of 4th MC bone, l hand, 7thP +C2851450|T037|AB|S62.315S|ICD10CM|Disp fx of base of fourth MC bone, left hand, sequela|Disp fx of base of fourth MC bone, left hand, sequela +C2851450|T037|PT|S62.315S|ICD10CM|Displaced fracture of base of fourth metacarpal bone, left hand, sequela|Displaced fracture of base of fourth metacarpal bone, left hand, sequela +C2851451|T037|AB|S62.316|ICD10CM|Disp fx of base of fifth metacarpal bone, right hand|Disp fx of base of fifth metacarpal bone, right hand +C2851451|T037|HT|S62.316|ICD10CM|Displaced fracture of base of fifth metacarpal bone, right hand|Displaced fracture of base of fifth metacarpal bone, right hand +C2851452|T037|AB|S62.316A|ICD10CM|Disp fx of base of fifth metacarpal bone, right hand, init|Disp fx of base of fifth metacarpal bone, right hand, init +C2851453|T037|AB|S62.316B|ICD10CM|Disp fx of base of fifth MC bone, r hand, init for opn fx|Disp fx of base of fifth MC bone, r hand, init for opn fx +C2851453|T037|PT|S62.316B|ICD10CM|Displaced fracture of base of fifth metacarpal bone, right hand, initial encounter for open fracture|Displaced fracture of base of fifth metacarpal bone, right hand, initial encounter for open fracture +C2851454|T037|AB|S62.316D|ICD10CM|Disp fx of base of 5th MC bone, r hand, 7thD|Disp fx of base of 5th MC bone, r hand, 7thD +C2851455|T037|AB|S62.316G|ICD10CM|Disp fx of base of 5th MC bone, r hand, 7thG|Disp fx of base of 5th MC bone, r hand, 7thG +C2851456|T037|AB|S62.316K|ICD10CM|Disp fx of base of 5th MC bone, r hand, 7thK|Disp fx of base of 5th MC bone, r hand, 7thK +C2851457|T037|AB|S62.316P|ICD10CM|Disp fx of base of 5th MC bone, r hand, 7thP|Disp fx of base of 5th MC bone, r hand, 7thP +C2851458|T037|AB|S62.316S|ICD10CM|Disp fx of base of fifth MC bone, right hand, sequela|Disp fx of base of fifth MC bone, right hand, sequela +C2851458|T037|PT|S62.316S|ICD10CM|Displaced fracture of base of fifth metacarpal bone, right hand, sequela|Displaced fracture of base of fifth metacarpal bone, right hand, sequela +C2851459|T037|AB|S62.317|ICD10CM|Disp fx of base of fifth metacarpal bone, left hand|Disp fx of base of fifth metacarpal bone, left hand +C2851459|T037|HT|S62.317|ICD10CM|Displaced fracture of base of fifth metacarpal bone, left hand|Displaced fracture of base of fifth metacarpal bone, left hand +C2851460|T037|AB|S62.317A|ICD10CM|Disp fx of base of fifth metacarpal bone, left hand, init|Disp fx of base of fifth metacarpal bone, left hand, init +C2851461|T037|AB|S62.317B|ICD10CM|Disp fx of base of fifth metacarpal bone, left hand, 7thB|Disp fx of base of fifth metacarpal bone, left hand, 7thB +C2851461|T037|PT|S62.317B|ICD10CM|Displaced fracture of base of fifth metacarpal bone, left hand, initial encounter for open fracture|Displaced fracture of base of fifth metacarpal bone, left hand, initial encounter for open fracture +C2851462|T037|AB|S62.317D|ICD10CM|Disp fx of base of fifth metacarpal bone, left hand, 7thD|Disp fx of base of fifth metacarpal bone, left hand, 7thD +C2851463|T037|AB|S62.317G|ICD10CM|Disp fx of base of fifth metacarpal bone, left hand, 7thG|Disp fx of base of fifth metacarpal bone, left hand, 7thG +C2851464|T037|AB|S62.317K|ICD10CM|Disp fx of base of fifth metacarpal bone, left hand, 7thK|Disp fx of base of fifth metacarpal bone, left hand, 7thK +C2851465|T037|AB|S62.317P|ICD10CM|Disp fx of base of fifth metacarpal bone, left hand, 7thP|Disp fx of base of fifth metacarpal bone, left hand, 7thP +C2851466|T037|AB|S62.317S|ICD10CM|Disp fx of base of fifth metacarpal bone, left hand, sequela|Disp fx of base of fifth metacarpal bone, left hand, sequela +C2851466|T037|PT|S62.317S|ICD10CM|Displaced fracture of base of fifth metacarpal bone, left hand, sequela|Displaced fracture of base of fifth metacarpal bone, left hand, sequela +C2851402|T037|AB|S62.318|ICD10CM|Displaced fracture of base of other metacarpal bone|Displaced fracture of base of other metacarpal bone +C2851402|T037|HT|S62.318|ICD10CM|Displaced fracture of base of other metacarpal bone|Displaced fracture of base of other metacarpal bone +C2851467|T037|ET|S62.318|ICD10CM|Displaced fracture of base of specified metacarpal bone with unspecified laterality|Displaced fracture of base of specified metacarpal bone with unspecified laterality +C2851468|T037|AB|S62.318A|ICD10CM|Disp fx of base of oth metacarpal bone, init for clos fx|Disp fx of base of oth metacarpal bone, init for clos fx +C2851468|T037|PT|S62.318A|ICD10CM|Displaced fracture of base of other metacarpal bone, initial encounter for closed fracture|Displaced fracture of base of other metacarpal bone, initial encounter for closed fracture +C2851469|T037|AB|S62.318B|ICD10CM|Disp fx of base of oth metacarpal bone, init for opn fx|Disp fx of base of oth metacarpal bone, init for opn fx +C2851469|T037|PT|S62.318B|ICD10CM|Displaced fracture of base of other metacarpal bone, initial encounter for open fracture|Displaced fracture of base of other metacarpal bone, initial encounter for open fracture +C2851470|T037|AB|S62.318D|ICD10CM|Disp fx of base of metacarpal bone, subs for fx w routn heal|Disp fx of base of metacarpal bone, subs for fx w routn heal +C2851471|T037|AB|S62.318G|ICD10CM|Disp fx of base of metacarpal bone, subs for fx w delay heal|Disp fx of base of metacarpal bone, subs for fx w delay heal +C2851472|T037|AB|S62.318K|ICD10CM|Disp fx of base of metacarpal bone, subs for fx w nonunion|Disp fx of base of metacarpal bone, subs for fx w nonunion +C2851472|T037|PT|S62.318K|ICD10CM|Displaced fracture of base of other metacarpal bone, subsequent encounter for fracture with nonunion|Displaced fracture of base of other metacarpal bone, subsequent encounter for fracture with nonunion +C2851473|T037|AB|S62.318P|ICD10CM|Disp fx of base of metacarpal bone, subs for fx w malunion|Disp fx of base of metacarpal bone, subs for fx w malunion +C2851473|T037|PT|S62.318P|ICD10CM|Displaced fracture of base of other metacarpal bone, subsequent encounter for fracture with malunion|Displaced fracture of base of other metacarpal bone, subsequent encounter for fracture with malunion +C2851474|T037|AB|S62.318S|ICD10CM|Displaced fracture of base of other metacarpal bone, sequela|Displaced fracture of base of other metacarpal bone, sequela +C2851474|T037|PT|S62.318S|ICD10CM|Displaced fracture of base of other metacarpal bone, sequela|Displaced fracture of base of other metacarpal bone, sequela +C2851475|T037|AB|S62.319|ICD10CM|Displaced fracture of base of unspecified metacarpal bone|Displaced fracture of base of unspecified metacarpal bone +C2851475|T037|HT|S62.319|ICD10CM|Displaced fracture of base of unspecified metacarpal bone|Displaced fracture of base of unspecified metacarpal bone +C2851476|T037|AB|S62.319A|ICD10CM|Disp fx of base of unsp metacarpal bone, init for clos fx|Disp fx of base of unsp metacarpal bone, init for clos fx +C2851476|T037|PT|S62.319A|ICD10CM|Displaced fracture of base of unspecified metacarpal bone, initial encounter for closed fracture|Displaced fracture of base of unspecified metacarpal bone, initial encounter for closed fracture +C2851477|T037|AB|S62.319B|ICD10CM|Disp fx of base of unsp metacarpal bone, init for opn fx|Disp fx of base of unsp metacarpal bone, init for opn fx +C2851477|T037|PT|S62.319B|ICD10CM|Displaced fracture of base of unspecified metacarpal bone, initial encounter for open fracture|Displaced fracture of base of unspecified metacarpal bone, initial encounter for open fracture +C2851478|T037|AB|S62.319D|ICD10CM|Disp fx of base of unsp MC bone, subs for fx w routn heal|Disp fx of base of unsp MC bone, subs for fx w routn heal +C2851479|T037|AB|S62.319G|ICD10CM|Disp fx of base of unsp MC bone, subs for fx w delay heal|Disp fx of base of unsp MC bone, subs for fx w delay heal +C2851480|T037|AB|S62.319K|ICD10CM|Disp fx of base of unsp MC bone, subs for fx w nonunion|Disp fx of base of unsp MC bone, subs for fx w nonunion +C2851481|T037|AB|S62.319P|ICD10CM|Disp fx of base of unsp MC bone, subs for fx w malunion|Disp fx of base of unsp MC bone, subs for fx w malunion +C2851482|T037|AB|S62.319S|ICD10CM|Disp fx of base of unspecified metacarpal bone, sequela|Disp fx of base of unspecified metacarpal bone, sequela +C2851482|T037|PT|S62.319S|ICD10CM|Displaced fracture of base of unspecified metacarpal bone, sequela|Displaced fracture of base of unspecified metacarpal bone, sequela +C2851483|T037|HT|S62.32|ICD10CM|Displaced fracture of shaft of other metacarpal bone|Displaced fracture of shaft of other metacarpal bone +C2851483|T037|AB|S62.32|ICD10CM|Displaced fracture of shaft of other metacarpal bone|Displaced fracture of shaft of other metacarpal bone +C2851484|T037|AB|S62.320|ICD10CM|Disp fx of shaft of second metacarpal bone, right hand|Disp fx of shaft of second metacarpal bone, right hand +C2851484|T037|HT|S62.320|ICD10CM|Displaced fracture of shaft of second metacarpal bone, right hand|Displaced fracture of shaft of second metacarpal bone, right hand +C2851485|T037|AB|S62.320A|ICD10CM|Disp fx of shaft of second metacarpal bone, right hand, init|Disp fx of shaft of second metacarpal bone, right hand, init +C2851486|T037|AB|S62.320B|ICD10CM|Disp fx of shaft of second MC bone, r hand, init for opn fx|Disp fx of shaft of second MC bone, r hand, init for opn fx +C2851487|T037|AB|S62.320D|ICD10CM|Disp fx of shaft of 2nd MC bone, r hand, 7thD|Disp fx of shaft of 2nd MC bone, r hand, 7thD +C2851488|T037|AB|S62.320G|ICD10CM|Disp fx of shaft of 2nd MC bone, r hand, 7thG|Disp fx of shaft of 2nd MC bone, r hand, 7thG +C2851489|T037|AB|S62.320K|ICD10CM|Disp fx of shaft of 2nd MC bone, r hand, 7thK|Disp fx of shaft of 2nd MC bone, r hand, 7thK +C2851490|T037|AB|S62.320P|ICD10CM|Disp fx of shaft of 2nd MC bone, r hand, 7thP|Disp fx of shaft of 2nd MC bone, r hand, 7thP +C2851491|T037|AB|S62.320S|ICD10CM|Disp fx of shaft of second MC bone, right hand, sequela|Disp fx of shaft of second MC bone, right hand, sequela +C2851491|T037|PT|S62.320S|ICD10CM|Displaced fracture of shaft of second metacarpal bone, right hand, sequela|Displaced fracture of shaft of second metacarpal bone, right hand, sequela +C2851492|T037|AB|S62.321|ICD10CM|Disp fx of shaft of second metacarpal bone, left hand|Disp fx of shaft of second metacarpal bone, left hand +C2851492|T037|HT|S62.321|ICD10CM|Displaced fracture of shaft of second metacarpal bone, left hand|Displaced fracture of shaft of second metacarpal bone, left hand +C2851493|T037|AB|S62.321A|ICD10CM|Disp fx of shaft of second metacarpal bone, left hand, init|Disp fx of shaft of second metacarpal bone, left hand, init +C2851494|T037|AB|S62.321B|ICD10CM|Disp fx of shaft of second MC bone, l hand, init for opn fx|Disp fx of shaft of second MC bone, l hand, init for opn fx +C2851495|T037|AB|S62.321D|ICD10CM|Disp fx of shaft of 2nd MC bone, l hand, 7thD|Disp fx of shaft of 2nd MC bone, l hand, 7thD +C2851496|T037|AB|S62.321G|ICD10CM|Disp fx of shaft of 2nd MC bone, l hand, 7thG|Disp fx of shaft of 2nd MC bone, l hand, 7thG +C2851497|T037|AB|S62.321K|ICD10CM|Disp fx of shaft of 2nd MC bone, l hand, 7thK|Disp fx of shaft of 2nd MC bone, l hand, 7thK +C2851498|T037|AB|S62.321P|ICD10CM|Disp fx of shaft of 2nd MC bone, l hand, 7thP|Disp fx of shaft of 2nd MC bone, l hand, 7thP +C2851499|T037|AB|S62.321S|ICD10CM|Disp fx of shaft of second MC bone, left hand, sequela|Disp fx of shaft of second MC bone, left hand, sequela +C2851499|T037|PT|S62.321S|ICD10CM|Displaced fracture of shaft of second metacarpal bone, left hand, sequela|Displaced fracture of shaft of second metacarpal bone, left hand, sequela +C2851500|T037|AB|S62.322|ICD10CM|Disp fx of shaft of third metacarpal bone, right hand|Disp fx of shaft of third metacarpal bone, right hand +C2851500|T037|HT|S62.322|ICD10CM|Displaced fracture of shaft of third metacarpal bone, right hand|Displaced fracture of shaft of third metacarpal bone, right hand +C2851501|T037|AB|S62.322A|ICD10CM|Disp fx of shaft of third metacarpal bone, right hand, init|Disp fx of shaft of third metacarpal bone, right hand, init +C2851502|T037|AB|S62.322B|ICD10CM|Disp fx of shaft of third MC bone, r hand, init for opn fx|Disp fx of shaft of third MC bone, r hand, init for opn fx +C2851503|T037|AB|S62.322D|ICD10CM|Disp fx of shaft of 3rd MC bone, r hand, 7thD|Disp fx of shaft of 3rd MC bone, r hand, 7thD +C2851504|T037|AB|S62.322G|ICD10CM|Disp fx of shaft of 3rd MC bone, r hand, 7thG|Disp fx of shaft of 3rd MC bone, r hand, 7thG +C2851505|T037|AB|S62.322K|ICD10CM|Disp fx of shaft of 3rd MC bone, r hand, 7thK|Disp fx of shaft of 3rd MC bone, r hand, 7thK +C2851506|T037|AB|S62.322P|ICD10CM|Disp fx of shaft of 3rd MC bone, r hand, 7thP|Disp fx of shaft of 3rd MC bone, r hand, 7thP +C2851507|T037|AB|S62.322S|ICD10CM|Disp fx of shaft of third MC bone, right hand, sequela|Disp fx of shaft of third MC bone, right hand, sequela +C2851507|T037|PT|S62.322S|ICD10CM|Displaced fracture of shaft of third metacarpal bone, right hand, sequela|Displaced fracture of shaft of third metacarpal bone, right hand, sequela +C2851508|T037|AB|S62.323|ICD10CM|Disp fx of shaft of third metacarpal bone, left hand|Disp fx of shaft of third metacarpal bone, left hand +C2851508|T037|HT|S62.323|ICD10CM|Displaced fracture of shaft of third metacarpal bone, left hand|Displaced fracture of shaft of third metacarpal bone, left hand +C2851509|T037|AB|S62.323A|ICD10CM|Disp fx of shaft of third metacarpal bone, left hand, init|Disp fx of shaft of third metacarpal bone, left hand, init +C2851510|T037|AB|S62.323B|ICD10CM|Disp fx of shaft of third MC bone, l hand, init for opn fx|Disp fx of shaft of third MC bone, l hand, init for opn fx +C2851510|T037|PT|S62.323B|ICD10CM|Displaced fracture of shaft of third metacarpal bone, left hand, initial encounter for open fracture|Displaced fracture of shaft of third metacarpal bone, left hand, initial encounter for open fracture +C2851511|T037|AB|S62.323D|ICD10CM|Disp fx of shaft of 3rd MC bone, l hand, 7thD|Disp fx of shaft of 3rd MC bone, l hand, 7thD +C2851512|T037|AB|S62.323G|ICD10CM|Disp fx of shaft of 3rd MC bone, l hand, 7thG|Disp fx of shaft of 3rd MC bone, l hand, 7thG +C2851513|T037|AB|S62.323K|ICD10CM|Disp fx of shaft of 3rd MC bone, l hand, 7thK|Disp fx of shaft of 3rd MC bone, l hand, 7thK +C2851514|T037|AB|S62.323P|ICD10CM|Disp fx of shaft of 3rd MC bone, l hand, 7thP|Disp fx of shaft of 3rd MC bone, l hand, 7thP +C2851515|T037|AB|S62.323S|ICD10CM|Disp fx of shaft of third MC bone, left hand, sequela|Disp fx of shaft of third MC bone, left hand, sequela +C2851515|T037|PT|S62.323S|ICD10CM|Displaced fracture of shaft of third metacarpal bone, left hand, sequela|Displaced fracture of shaft of third metacarpal bone, left hand, sequela +C2851516|T037|AB|S62.324|ICD10CM|Disp fx of shaft of fourth metacarpal bone, right hand|Disp fx of shaft of fourth metacarpal bone, right hand +C2851516|T037|HT|S62.324|ICD10CM|Displaced fracture of shaft of fourth metacarpal bone, right hand|Displaced fracture of shaft of fourth metacarpal bone, right hand +C2851517|T037|AB|S62.324A|ICD10CM|Disp fx of shaft of fourth metacarpal bone, right hand, init|Disp fx of shaft of fourth metacarpal bone, right hand, init +C2851518|T037|AB|S62.324B|ICD10CM|Disp fx of shaft of fourth MC bone, r hand, init for opn fx|Disp fx of shaft of fourth MC bone, r hand, init for opn fx +C2851519|T037|AB|S62.324D|ICD10CM|Disp fx of shaft of 4th MC bone, r hand, 7thD|Disp fx of shaft of 4th MC bone, r hand, 7thD +C2851520|T037|AB|S62.324G|ICD10CM|Disp fx of shaft of 4th MC bone, r hand, 7thG|Disp fx of shaft of 4th MC bone, r hand, 7thG +C2851521|T037|AB|S62.324K|ICD10CM|Disp fx of shaft of 4th MC bone, r hand, 7thK|Disp fx of shaft of 4th MC bone, r hand, 7thK +C2851522|T037|AB|S62.324P|ICD10CM|Disp fx of shaft of 4th MC bone, r hand, 7thP|Disp fx of shaft of 4th MC bone, r hand, 7thP +C2851523|T037|AB|S62.324S|ICD10CM|Disp fx of shaft of fourth MC bone, right hand, sequela|Disp fx of shaft of fourth MC bone, right hand, sequela +C2851523|T037|PT|S62.324S|ICD10CM|Displaced fracture of shaft of fourth metacarpal bone, right hand, sequela|Displaced fracture of shaft of fourth metacarpal bone, right hand, sequela +C2851524|T037|AB|S62.325|ICD10CM|Disp fx of shaft of fourth metacarpal bone, left hand|Disp fx of shaft of fourth metacarpal bone, left hand +C2851524|T037|HT|S62.325|ICD10CM|Displaced fracture of shaft of fourth metacarpal bone, left hand|Displaced fracture of shaft of fourth metacarpal bone, left hand +C2851525|T037|AB|S62.325A|ICD10CM|Disp fx of shaft of fourth metacarpal bone, left hand, init|Disp fx of shaft of fourth metacarpal bone, left hand, init +C2851526|T037|AB|S62.325B|ICD10CM|Disp fx of shaft of fourth MC bone, l hand, init for opn fx|Disp fx of shaft of fourth MC bone, l hand, init for opn fx +C2851527|T037|AB|S62.325D|ICD10CM|Disp fx of shaft of 4th MC bone, l hand, 7thD|Disp fx of shaft of 4th MC bone, l hand, 7thD +C2851528|T037|AB|S62.325G|ICD10CM|Disp fx of shaft of 4th MC bone, l hand, 7thG|Disp fx of shaft of 4th MC bone, l hand, 7thG +C2851529|T037|AB|S62.325K|ICD10CM|Disp fx of shaft of 4th MC bone, l hand, 7thK|Disp fx of shaft of 4th MC bone, l hand, 7thK +C2851530|T037|AB|S62.325P|ICD10CM|Disp fx of shaft of 4th MC bone, l hand, 7thP|Disp fx of shaft of 4th MC bone, l hand, 7thP +C2851531|T037|AB|S62.325S|ICD10CM|Disp fx of shaft of fourth MC bone, left hand, sequela|Disp fx of shaft of fourth MC bone, left hand, sequela +C2851531|T037|PT|S62.325S|ICD10CM|Displaced fracture of shaft of fourth metacarpal bone, left hand, sequela|Displaced fracture of shaft of fourth metacarpal bone, left hand, sequela +C2851532|T037|AB|S62.326|ICD10CM|Disp fx of shaft of fifth metacarpal bone, right hand|Disp fx of shaft of fifth metacarpal bone, right hand +C2851532|T037|HT|S62.326|ICD10CM|Displaced fracture of shaft of fifth metacarpal bone, right hand|Displaced fracture of shaft of fifth metacarpal bone, right hand +C2851533|T037|AB|S62.326A|ICD10CM|Disp fx of shaft of fifth metacarpal bone, right hand, init|Disp fx of shaft of fifth metacarpal bone, right hand, init +C2851534|T037|AB|S62.326B|ICD10CM|Disp fx of shaft of fifth MC bone, r hand, init for opn fx|Disp fx of shaft of fifth MC bone, r hand, init for opn fx +C2851535|T037|AB|S62.326D|ICD10CM|Disp fx of shaft of 5th MC bone, r hand, 7thD|Disp fx of shaft of 5th MC bone, r hand, 7thD +C2851536|T037|AB|S62.326G|ICD10CM|Disp fx of shaft of 5th MC bone, r hand, 7thG|Disp fx of shaft of 5th MC bone, r hand, 7thG +C2851537|T037|AB|S62.326K|ICD10CM|Disp fx of shaft of 5th MC bone, r hand, 7thK|Disp fx of shaft of 5th MC bone, r hand, 7thK +C2851538|T037|AB|S62.326P|ICD10CM|Disp fx of shaft of 5th MC bone, r hand, 7thP|Disp fx of shaft of 5th MC bone, r hand, 7thP +C2851539|T037|AB|S62.326S|ICD10CM|Disp fx of shaft of fifth MC bone, right hand, sequela|Disp fx of shaft of fifth MC bone, right hand, sequela +C2851539|T037|PT|S62.326S|ICD10CM|Displaced fracture of shaft of fifth metacarpal bone, right hand, sequela|Displaced fracture of shaft of fifth metacarpal bone, right hand, sequela +C2851540|T037|AB|S62.327|ICD10CM|Disp fx of shaft of fifth metacarpal bone, left hand|Disp fx of shaft of fifth metacarpal bone, left hand +C2851540|T037|HT|S62.327|ICD10CM|Displaced fracture of shaft of fifth metacarpal bone, left hand|Displaced fracture of shaft of fifth metacarpal bone, left hand +C2851541|T037|AB|S62.327A|ICD10CM|Disp fx of shaft of fifth metacarpal bone, left hand, init|Disp fx of shaft of fifth metacarpal bone, left hand, init +C2851542|T037|AB|S62.327B|ICD10CM|Disp fx of shaft of fifth MC bone, l hand, init for opn fx|Disp fx of shaft of fifth MC bone, l hand, init for opn fx +C2851542|T037|PT|S62.327B|ICD10CM|Displaced fracture of shaft of fifth metacarpal bone, left hand, initial encounter for open fracture|Displaced fracture of shaft of fifth metacarpal bone, left hand, initial encounter for open fracture +C2851543|T037|AB|S62.327D|ICD10CM|Disp fx of shaft of 5th MC bone, l hand, 7thD|Disp fx of shaft of 5th MC bone, l hand, 7thD +C2851544|T037|AB|S62.327G|ICD10CM|Disp fx of shaft of 5th MC bone, l hand, 7thG|Disp fx of shaft of 5th MC bone, l hand, 7thG +C2851545|T037|AB|S62.327K|ICD10CM|Disp fx of shaft of 5th MC bone, l hand, 7thK|Disp fx of shaft of 5th MC bone, l hand, 7thK +C2851546|T037|AB|S62.327P|ICD10CM|Disp fx of shaft of 5th MC bone, l hand, 7thP|Disp fx of shaft of 5th MC bone, l hand, 7thP +C2851547|T037|AB|S62.327S|ICD10CM|Disp fx of shaft of fifth MC bone, left hand, sequela|Disp fx of shaft of fifth MC bone, left hand, sequela +C2851547|T037|PT|S62.327S|ICD10CM|Displaced fracture of shaft of fifth metacarpal bone, left hand, sequela|Displaced fracture of shaft of fifth metacarpal bone, left hand, sequela +C2851483|T037|AB|S62.328|ICD10CM|Displaced fracture of shaft of other metacarpal bone|Displaced fracture of shaft of other metacarpal bone +C2851483|T037|HT|S62.328|ICD10CM|Displaced fracture of shaft of other metacarpal bone|Displaced fracture of shaft of other metacarpal bone +C2851548|T037|ET|S62.328|ICD10CM|Displaced fracture of shaft of specified metacarpal bone with unspecified laterality|Displaced fracture of shaft of specified metacarpal bone with unspecified laterality +C2851549|T037|AB|S62.328A|ICD10CM|Disp fx of shaft of oth metacarpal bone, init for clos fx|Disp fx of shaft of oth metacarpal bone, init for clos fx +C2851549|T037|PT|S62.328A|ICD10CM|Displaced fracture of shaft of other metacarpal bone, initial encounter for closed fracture|Displaced fracture of shaft of other metacarpal bone, initial encounter for closed fracture +C2851550|T037|AB|S62.328B|ICD10CM|Disp fx of shaft of oth metacarpal bone, init for opn fx|Disp fx of shaft of oth metacarpal bone, init for opn fx +C2851550|T037|PT|S62.328B|ICD10CM|Displaced fracture of shaft of other metacarpal bone, initial encounter for open fracture|Displaced fracture of shaft of other metacarpal bone, initial encounter for open fracture +C2851551|T037|AB|S62.328D|ICD10CM|Disp fx of shaft of MC bone, subs for fx w routn heal|Disp fx of shaft of MC bone, subs for fx w routn heal +C2851552|T037|AB|S62.328G|ICD10CM|Disp fx of shaft of MC bone, subs for fx w delay heal|Disp fx of shaft of MC bone, subs for fx w delay heal +C2851553|T037|AB|S62.328K|ICD10CM|Disp fx of shaft of metacarpal bone, subs for fx w nonunion|Disp fx of shaft of metacarpal bone, subs for fx w nonunion +C2851554|T037|AB|S62.328P|ICD10CM|Disp fx of shaft of metacarpal bone, subs for fx w malunion|Disp fx of shaft of metacarpal bone, subs for fx w malunion +C2851555|T037|AB|S62.328S|ICD10CM|Disp fx of shaft of other metacarpal bone, sequela|Disp fx of shaft of other metacarpal bone, sequela +C2851555|T037|PT|S62.328S|ICD10CM|Displaced fracture of shaft of other metacarpal bone, sequela|Displaced fracture of shaft of other metacarpal bone, sequela +C2851556|T037|AB|S62.329|ICD10CM|Displaced fracture of shaft of unspecified metacarpal bone|Displaced fracture of shaft of unspecified metacarpal bone +C2851556|T037|HT|S62.329|ICD10CM|Displaced fracture of shaft of unspecified metacarpal bone|Displaced fracture of shaft of unspecified metacarpal bone +C2851557|T037|AB|S62.329A|ICD10CM|Disp fx of shaft of unsp metacarpal bone, init for clos fx|Disp fx of shaft of unsp metacarpal bone, init for clos fx +C2851557|T037|PT|S62.329A|ICD10CM|Displaced fracture of shaft of unspecified metacarpal bone, initial encounter for closed fracture|Displaced fracture of shaft of unspecified metacarpal bone, initial encounter for closed fracture +C2851558|T037|AB|S62.329B|ICD10CM|Disp fx of shaft of unsp metacarpal bone, init for opn fx|Disp fx of shaft of unsp metacarpal bone, init for opn fx +C2851558|T037|PT|S62.329B|ICD10CM|Displaced fracture of shaft of unspecified metacarpal bone, initial encounter for open fracture|Displaced fracture of shaft of unspecified metacarpal bone, initial encounter for open fracture +C2851559|T037|AB|S62.329D|ICD10CM|Disp fx of shaft of unsp MC bone, subs for fx w routn heal|Disp fx of shaft of unsp MC bone, subs for fx w routn heal +C2851560|T037|AB|S62.329G|ICD10CM|Disp fx of shaft of unsp MC bone, subs for fx w delay heal|Disp fx of shaft of unsp MC bone, subs for fx w delay heal +C2851561|T037|AB|S62.329K|ICD10CM|Disp fx of shaft of unsp MC bone, subs for fx w nonunion|Disp fx of shaft of unsp MC bone, subs for fx w nonunion +C2851562|T037|AB|S62.329P|ICD10CM|Disp fx of shaft of unsp MC bone, subs for fx w malunion|Disp fx of shaft of unsp MC bone, subs for fx w malunion +C2851563|T037|AB|S62.329S|ICD10CM|Disp fx of shaft of unspecified metacarpal bone, sequela|Disp fx of shaft of unspecified metacarpal bone, sequela +C2851563|T037|PT|S62.329S|ICD10CM|Displaced fracture of shaft of unspecified metacarpal bone, sequela|Displaced fracture of shaft of unspecified metacarpal bone, sequela +C2851564|T037|HT|S62.33|ICD10CM|Displaced fracture of neck of other metacarpal bone|Displaced fracture of neck of other metacarpal bone +C2851564|T037|AB|S62.33|ICD10CM|Displaced fracture of neck of other metacarpal bone|Displaced fracture of neck of other metacarpal bone +C2851565|T037|AB|S62.330|ICD10CM|Disp fx of neck of second metacarpal bone, right hand|Disp fx of neck of second metacarpal bone, right hand +C2851565|T037|HT|S62.330|ICD10CM|Displaced fracture of neck of second metacarpal bone, right hand|Displaced fracture of neck of second metacarpal bone, right hand +C2851566|T037|AB|S62.330A|ICD10CM|Disp fx of neck of second metacarpal bone, right hand, init|Disp fx of neck of second metacarpal bone, right hand, init +C2851567|T037|AB|S62.330B|ICD10CM|Disp fx of neck of second MC bone, r hand, init for opn fx|Disp fx of neck of second MC bone, r hand, init for opn fx +C2851568|T037|AB|S62.330D|ICD10CM|Disp fx of nk of 2nd MC bone, r hand, 7thD|Disp fx of nk of 2nd MC bone, r hand, 7thD +C2851569|T037|AB|S62.330G|ICD10CM|Disp fx of nk of 2nd MC bone, r hand, 7thG|Disp fx of nk of 2nd MC bone, r hand, 7thG +C2851570|T037|AB|S62.330K|ICD10CM|Disp fx of nk of 2nd MC bone, r hand, subs for fx w nonunion|Disp fx of nk of 2nd MC bone, r hand, subs for fx w nonunion +C2851571|T037|AB|S62.330P|ICD10CM|Disp fx of nk of 2nd MC bone, r hand, subs for fx w malunion|Disp fx of nk of 2nd MC bone, r hand, subs for fx w malunion +C2851572|T037|AB|S62.330S|ICD10CM|Disp fx of neck of second MC bone, right hand, sequela|Disp fx of neck of second MC bone, right hand, sequela +C2851572|T037|PT|S62.330S|ICD10CM|Displaced fracture of neck of second metacarpal bone, right hand, sequela|Displaced fracture of neck of second metacarpal bone, right hand, sequela +C2851573|T037|AB|S62.331|ICD10CM|Disp fx of neck of second metacarpal bone, left hand|Disp fx of neck of second metacarpal bone, left hand +C2851573|T037|HT|S62.331|ICD10CM|Displaced fracture of neck of second metacarpal bone, left hand|Displaced fracture of neck of second metacarpal bone, left hand +C2851574|T037|AB|S62.331A|ICD10CM|Disp fx of neck of second metacarpal bone, left hand, init|Disp fx of neck of second metacarpal bone, left hand, init +C2851575|T037|AB|S62.331B|ICD10CM|Disp fx of neck of second MC bone, l hand, init for opn fx|Disp fx of neck of second MC bone, l hand, init for opn fx +C2851575|T037|PT|S62.331B|ICD10CM|Displaced fracture of neck of second metacarpal bone, left hand, initial encounter for open fracture|Displaced fracture of neck of second metacarpal bone, left hand, initial encounter for open fracture +C2851576|T037|AB|S62.331D|ICD10CM|Disp fx of nk of 2nd MC bone, l hand, 7thD|Disp fx of nk of 2nd MC bone, l hand, 7thD +C2851577|T037|AB|S62.331G|ICD10CM|Disp fx of nk of 2nd MC bone, l hand, 7thG|Disp fx of nk of 2nd MC bone, l hand, 7thG +C2851578|T037|AB|S62.331K|ICD10CM|Disp fx of nk of 2nd MC bone, l hand, subs for fx w nonunion|Disp fx of nk of 2nd MC bone, l hand, subs for fx w nonunion +C2851579|T037|AB|S62.331P|ICD10CM|Disp fx of nk of 2nd MC bone, l hand, subs for fx w malunion|Disp fx of nk of 2nd MC bone, l hand, subs for fx w malunion +C2851580|T037|AB|S62.331S|ICD10CM|Disp fx of neck of second MC bone, left hand, sequela|Disp fx of neck of second MC bone, left hand, sequela +C2851580|T037|PT|S62.331S|ICD10CM|Displaced fracture of neck of second metacarpal bone, left hand, sequela|Displaced fracture of neck of second metacarpal bone, left hand, sequela +C2851581|T037|AB|S62.332|ICD10CM|Disp fx of neck of third metacarpal bone, right hand|Disp fx of neck of third metacarpal bone, right hand +C2851581|T037|HT|S62.332|ICD10CM|Displaced fracture of neck of third metacarpal bone, right hand|Displaced fracture of neck of third metacarpal bone, right hand +C2851582|T037|AB|S62.332A|ICD10CM|Disp fx of neck of third metacarpal bone, right hand, init|Disp fx of neck of third metacarpal bone, right hand, init +C2851583|T037|AB|S62.332B|ICD10CM|Disp fx of neck of third MC bone, r hand, init for opn fx|Disp fx of neck of third MC bone, r hand, init for opn fx +C2851583|T037|PT|S62.332B|ICD10CM|Displaced fracture of neck of third metacarpal bone, right hand, initial encounter for open fracture|Displaced fracture of neck of third metacarpal bone, right hand, initial encounter for open fracture +C2851584|T037|AB|S62.332D|ICD10CM|Disp fx of nk of 3rd MC bone, r hand, 7thD|Disp fx of nk of 3rd MC bone, r hand, 7thD +C2851585|T037|AB|S62.332G|ICD10CM|Disp fx of nk of 3rd MC bone, r hand, 7thG|Disp fx of nk of 3rd MC bone, r hand, 7thG +C2851586|T037|AB|S62.332K|ICD10CM|Disp fx of nk of 3rd MC bone, r hand, subs for fx w nonunion|Disp fx of nk of 3rd MC bone, r hand, subs for fx w nonunion +C2851587|T037|AB|S62.332P|ICD10CM|Disp fx of nk of 3rd MC bone, r hand, subs for fx w malunion|Disp fx of nk of 3rd MC bone, r hand, subs for fx w malunion +C2851588|T037|AB|S62.332S|ICD10CM|Disp fx of neck of third MC bone, right hand, sequela|Disp fx of neck of third MC bone, right hand, sequela +C2851588|T037|PT|S62.332S|ICD10CM|Displaced fracture of neck of third metacarpal bone, right hand, sequela|Displaced fracture of neck of third metacarpal bone, right hand, sequela +C2851589|T037|AB|S62.333|ICD10CM|Disp fx of neck of third metacarpal bone, left hand|Disp fx of neck of third metacarpal bone, left hand +C2851589|T037|HT|S62.333|ICD10CM|Displaced fracture of neck of third metacarpal bone, left hand|Displaced fracture of neck of third metacarpal bone, left hand +C2851590|T037|AB|S62.333A|ICD10CM|Disp fx of neck of third metacarpal bone, left hand, init|Disp fx of neck of third metacarpal bone, left hand, init +C2851591|T037|AB|S62.333B|ICD10CM|Disp fx of neck of third MC bone, left hand, init for opn fx|Disp fx of neck of third MC bone, left hand, init for opn fx +C2851591|T037|PT|S62.333B|ICD10CM|Displaced fracture of neck of third metacarpal bone, left hand, initial encounter for open fracture|Displaced fracture of neck of third metacarpal bone, left hand, initial encounter for open fracture +C2851592|T037|AB|S62.333D|ICD10CM|Disp fx of nk of 3rd MC bone, l hand, 7thD|Disp fx of nk of 3rd MC bone, l hand, 7thD +C2851593|T037|AB|S62.333G|ICD10CM|Disp fx of nk of 3rd MC bone, l hand, 7thG|Disp fx of nk of 3rd MC bone, l hand, 7thG +C2851594|T037|AB|S62.333K|ICD10CM|Disp fx of nk of 3rd MC bone, l hand, subs for fx w nonunion|Disp fx of nk of 3rd MC bone, l hand, subs for fx w nonunion +C2851595|T037|AB|S62.333P|ICD10CM|Disp fx of nk of 3rd MC bone, l hand, subs for fx w malunion|Disp fx of nk of 3rd MC bone, l hand, subs for fx w malunion +C2851596|T037|AB|S62.333S|ICD10CM|Disp fx of neck of third metacarpal bone, left hand, sequela|Disp fx of neck of third metacarpal bone, left hand, sequela +C2851596|T037|PT|S62.333S|ICD10CM|Displaced fracture of neck of third metacarpal bone, left hand, sequela|Displaced fracture of neck of third metacarpal bone, left hand, sequela +C2851597|T037|AB|S62.334|ICD10CM|Disp fx of neck of fourth metacarpal bone, right hand|Disp fx of neck of fourth metacarpal bone, right hand +C2851597|T037|HT|S62.334|ICD10CM|Displaced fracture of neck of fourth metacarpal bone, right hand|Displaced fracture of neck of fourth metacarpal bone, right hand +C2851598|T037|AB|S62.334A|ICD10CM|Disp fx of neck of fourth metacarpal bone, right hand, init|Disp fx of neck of fourth metacarpal bone, right hand, init +C2851599|T037|AB|S62.334B|ICD10CM|Disp fx of neck of fourth MC bone, r hand, init for opn fx|Disp fx of neck of fourth MC bone, r hand, init for opn fx +C2851600|T037|AB|S62.334D|ICD10CM|Disp fx of nk of 4th MC bone, r hand, 7thD|Disp fx of nk of 4th MC bone, r hand, 7thD +C2851601|T037|AB|S62.334G|ICD10CM|Disp fx of nk of 4th MC bone, r hand, 7thG|Disp fx of nk of 4th MC bone, r hand, 7thG +C2851602|T037|AB|S62.334K|ICD10CM|Disp fx of nk of 4th MC bone, r hand, subs for fx w nonunion|Disp fx of nk of 4th MC bone, r hand, subs for fx w nonunion +C2851603|T037|AB|S62.334P|ICD10CM|Disp fx of nk of 4th MC bone, r hand, subs for fx w malunion|Disp fx of nk of 4th MC bone, r hand, subs for fx w malunion +C2851604|T037|AB|S62.334S|ICD10CM|Disp fx of neck of fourth MC bone, right hand, sequela|Disp fx of neck of fourth MC bone, right hand, sequela +C2851604|T037|PT|S62.334S|ICD10CM|Displaced fracture of neck of fourth metacarpal bone, right hand, sequela|Displaced fracture of neck of fourth metacarpal bone, right hand, sequela +C2851605|T037|AB|S62.335|ICD10CM|Disp fx of neck of fourth metacarpal bone, left hand|Disp fx of neck of fourth metacarpal bone, left hand +C2851605|T037|HT|S62.335|ICD10CM|Displaced fracture of neck of fourth metacarpal bone, left hand|Displaced fracture of neck of fourth metacarpal bone, left hand +C2851606|T037|AB|S62.335A|ICD10CM|Disp fx of neck of fourth metacarpal bone, left hand, init|Disp fx of neck of fourth metacarpal bone, left hand, init +C2851607|T037|AB|S62.335B|ICD10CM|Disp fx of neck of fourth MC bone, l hand, init for opn fx|Disp fx of neck of fourth MC bone, l hand, init for opn fx +C2851607|T037|PT|S62.335B|ICD10CM|Displaced fracture of neck of fourth metacarpal bone, left hand, initial encounter for open fracture|Displaced fracture of neck of fourth metacarpal bone, left hand, initial encounter for open fracture +C2851608|T037|AB|S62.335D|ICD10CM|Disp fx of nk of 4th MC bone, l hand, 7thD|Disp fx of nk of 4th MC bone, l hand, 7thD +C2851609|T037|AB|S62.335G|ICD10CM|Disp fx of nk of 4th MC bone, l hand, 7thG|Disp fx of nk of 4th MC bone, l hand, 7thG +C2851610|T037|AB|S62.335K|ICD10CM|Disp fx of nk of 4th MC bone, l hand, subs for fx w nonunion|Disp fx of nk of 4th MC bone, l hand, subs for fx w nonunion +C2851611|T037|AB|S62.335P|ICD10CM|Disp fx of nk of 4th MC bone, l hand, subs for fx w malunion|Disp fx of nk of 4th MC bone, l hand, subs for fx w malunion +C2851612|T037|AB|S62.335S|ICD10CM|Disp fx of neck of fourth MC bone, left hand, sequela|Disp fx of neck of fourth MC bone, left hand, sequela +C2851612|T037|PT|S62.335S|ICD10CM|Displaced fracture of neck of fourth metacarpal bone, left hand, sequela|Displaced fracture of neck of fourth metacarpal bone, left hand, sequela +C2851613|T037|AB|S62.336|ICD10CM|Disp fx of neck of fifth metacarpal bone, right hand|Disp fx of neck of fifth metacarpal bone, right hand +C2851613|T037|HT|S62.336|ICD10CM|Displaced fracture of neck of fifth metacarpal bone, right hand|Displaced fracture of neck of fifth metacarpal bone, right hand +C2851614|T037|AB|S62.336A|ICD10CM|Disp fx of neck of fifth metacarpal bone, right hand, init|Disp fx of neck of fifth metacarpal bone, right hand, init +C2851615|T037|AB|S62.336B|ICD10CM|Disp fx of neck of fifth MC bone, r hand, init for opn fx|Disp fx of neck of fifth MC bone, r hand, init for opn fx +C2851615|T037|PT|S62.336B|ICD10CM|Displaced fracture of neck of fifth metacarpal bone, right hand, initial encounter for open fracture|Displaced fracture of neck of fifth metacarpal bone, right hand, initial encounter for open fracture +C2851616|T037|AB|S62.336D|ICD10CM|Disp fx of nk of 5th MC bone, r hand, 7thD|Disp fx of nk of 5th MC bone, r hand, 7thD +C2851617|T037|AB|S62.336G|ICD10CM|Disp fx of nk of 5th MC bone, r hand, 7thG|Disp fx of nk of 5th MC bone, r hand, 7thG +C2851618|T037|AB|S62.336K|ICD10CM|Disp fx of nk of 5th MC bone, r hand, subs for fx w nonunion|Disp fx of nk of 5th MC bone, r hand, subs for fx w nonunion +C2851619|T037|AB|S62.336P|ICD10CM|Disp fx of nk of 5th MC bone, r hand, subs for fx w malunion|Disp fx of nk of 5th MC bone, r hand, subs for fx w malunion +C2851620|T037|AB|S62.336S|ICD10CM|Disp fx of neck of fifth MC bone, right hand, sequela|Disp fx of neck of fifth MC bone, right hand, sequela +C2851620|T037|PT|S62.336S|ICD10CM|Displaced fracture of neck of fifth metacarpal bone, right hand, sequela|Displaced fracture of neck of fifth metacarpal bone, right hand, sequela +C2851621|T037|AB|S62.337|ICD10CM|Disp fx of neck of fifth metacarpal bone, left hand|Disp fx of neck of fifth metacarpal bone, left hand +C2851621|T037|HT|S62.337|ICD10CM|Displaced fracture of neck of fifth metacarpal bone, left hand|Displaced fracture of neck of fifth metacarpal bone, left hand +C2851622|T037|AB|S62.337A|ICD10CM|Disp fx of neck of fifth metacarpal bone, left hand, init|Disp fx of neck of fifth metacarpal bone, left hand, init +C2851623|T037|AB|S62.337B|ICD10CM|Disp fx of neck of fifth MC bone, left hand, init for opn fx|Disp fx of neck of fifth MC bone, left hand, init for opn fx +C2851623|T037|PT|S62.337B|ICD10CM|Displaced fracture of neck of fifth metacarpal bone, left hand, initial encounter for open fracture|Displaced fracture of neck of fifth metacarpal bone, left hand, initial encounter for open fracture +C2851624|T037|AB|S62.337D|ICD10CM|Disp fx of nk of 5th MC bone, l hand, 7thD|Disp fx of nk of 5th MC bone, l hand, 7thD +C2851625|T037|AB|S62.337G|ICD10CM|Disp fx of nk of 5th MC bone, l hand, 7thG|Disp fx of nk of 5th MC bone, l hand, 7thG +C2851626|T037|AB|S62.337K|ICD10CM|Disp fx of nk of 5th MC bone, l hand, subs for fx w nonunion|Disp fx of nk of 5th MC bone, l hand, subs for fx w nonunion +C2851627|T037|AB|S62.337P|ICD10CM|Disp fx of nk of 5th MC bone, l hand, subs for fx w malunion|Disp fx of nk of 5th MC bone, l hand, subs for fx w malunion +C2851628|T037|AB|S62.337S|ICD10CM|Disp fx of neck of fifth metacarpal bone, left hand, sequela|Disp fx of neck of fifth metacarpal bone, left hand, sequela +C2851628|T037|PT|S62.337S|ICD10CM|Displaced fracture of neck of fifth metacarpal bone, left hand, sequela|Displaced fracture of neck of fifth metacarpal bone, left hand, sequela +C2851564|T037|AB|S62.338|ICD10CM|Displaced fracture of neck of other metacarpal bone|Displaced fracture of neck of other metacarpal bone +C2851564|T037|HT|S62.338|ICD10CM|Displaced fracture of neck of other metacarpal bone|Displaced fracture of neck of other metacarpal bone +C2851629|T037|ET|S62.338|ICD10CM|Displaced fracture of neck of specified metacarpal bone with unspecified laterality|Displaced fracture of neck of specified metacarpal bone with unspecified laterality +C2851630|T037|AB|S62.338A|ICD10CM|Disp fx of neck of oth metacarpal bone, init for clos fx|Disp fx of neck of oth metacarpal bone, init for clos fx +C2851630|T037|PT|S62.338A|ICD10CM|Displaced fracture of neck of other metacarpal bone, initial encounter for closed fracture|Displaced fracture of neck of other metacarpal bone, initial encounter for closed fracture +C2851631|T037|AB|S62.338B|ICD10CM|Disp fx of neck of oth metacarpal bone, init for opn fx|Disp fx of neck of oth metacarpal bone, init for opn fx +C2851631|T037|PT|S62.338B|ICD10CM|Displaced fracture of neck of other metacarpal bone, initial encounter for open fracture|Displaced fracture of neck of other metacarpal bone, initial encounter for open fracture +C2851632|T037|AB|S62.338D|ICD10CM|Disp fx of neck of metacarpal bone, subs for fx w routn heal|Disp fx of neck of metacarpal bone, subs for fx w routn heal +C2851633|T037|AB|S62.338G|ICD10CM|Disp fx of neck of metacarpal bone, subs for fx w delay heal|Disp fx of neck of metacarpal bone, subs for fx w delay heal +C2851634|T037|AB|S62.338K|ICD10CM|Disp fx of neck of metacarpal bone, subs for fx w nonunion|Disp fx of neck of metacarpal bone, subs for fx w nonunion +C2851634|T037|PT|S62.338K|ICD10CM|Displaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with nonunion|Displaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with nonunion +C2851635|T037|AB|S62.338P|ICD10CM|Disp fx of neck of metacarpal bone, subs for fx w malunion|Disp fx of neck of metacarpal bone, subs for fx w malunion +C2851635|T037|PT|S62.338P|ICD10CM|Displaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with malunion|Displaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with malunion +C2851636|T037|AB|S62.338S|ICD10CM|Displaced fracture of neck of other metacarpal bone, sequela|Displaced fracture of neck of other metacarpal bone, sequela +C2851636|T037|PT|S62.338S|ICD10CM|Displaced fracture of neck of other metacarpal bone, sequela|Displaced fracture of neck of other metacarpal bone, sequela +C2851637|T037|AB|S62.339|ICD10CM|Displaced fracture of neck of unspecified metacarpal bone|Displaced fracture of neck of unspecified metacarpal bone +C2851637|T037|HT|S62.339|ICD10CM|Displaced fracture of neck of unspecified metacarpal bone|Displaced fracture of neck of unspecified metacarpal bone +C2851638|T037|AB|S62.339A|ICD10CM|Disp fx of neck of unsp metacarpal bone, init for clos fx|Disp fx of neck of unsp metacarpal bone, init for clos fx +C2851638|T037|PT|S62.339A|ICD10CM|Displaced fracture of neck of unspecified metacarpal bone, initial encounter for closed fracture|Displaced fracture of neck of unspecified metacarpal bone, initial encounter for closed fracture +C2851639|T037|AB|S62.339B|ICD10CM|Disp fx of neck of unsp metacarpal bone, init for opn fx|Disp fx of neck of unsp metacarpal bone, init for opn fx +C2851639|T037|PT|S62.339B|ICD10CM|Displaced fracture of neck of unspecified metacarpal bone, initial encounter for open fracture|Displaced fracture of neck of unspecified metacarpal bone, initial encounter for open fracture +C2851640|T037|AB|S62.339D|ICD10CM|Disp fx of neck of unsp MC bone, subs for fx w routn heal|Disp fx of neck of unsp MC bone, subs for fx w routn heal +C2851641|T037|AB|S62.339G|ICD10CM|Disp fx of neck of unsp MC bone, subs for fx w delay heal|Disp fx of neck of unsp MC bone, subs for fx w delay heal +C2851642|T037|AB|S62.339K|ICD10CM|Disp fx of neck of unsp MC bone, subs for fx w nonunion|Disp fx of neck of unsp MC bone, subs for fx w nonunion +C2851643|T037|AB|S62.339P|ICD10CM|Disp fx of neck of unsp MC bone, subs for fx w malunion|Disp fx of neck of unsp MC bone, subs for fx w malunion +C2851644|T037|AB|S62.339S|ICD10CM|Disp fx of neck of unspecified metacarpal bone, sequela|Disp fx of neck of unspecified metacarpal bone, sequela +C2851644|T037|PT|S62.339S|ICD10CM|Displaced fracture of neck of unspecified metacarpal bone, sequela|Displaced fracture of neck of unspecified metacarpal bone, sequela +C2851645|T037|HT|S62.34|ICD10CM|Nondisplaced fracture of base of other metacarpal bone|Nondisplaced fracture of base of other metacarpal bone +C2851645|T037|AB|S62.34|ICD10CM|Nondisplaced fracture of base of other metacarpal bone|Nondisplaced fracture of base of other metacarpal bone +C2851646|T037|AB|S62.340|ICD10CM|Nondisp fx of base of second metacarpal bone, right hand|Nondisp fx of base of second metacarpal bone, right hand +C2851646|T037|HT|S62.340|ICD10CM|Nondisplaced fracture of base of second metacarpal bone, right hand|Nondisplaced fracture of base of second metacarpal bone, right hand +C2851647|T037|AB|S62.340A|ICD10CM|Nondisp fx of base of second MC bone, right hand, init|Nondisp fx of base of second MC bone, right hand, init +C2851648|T037|AB|S62.340B|ICD10CM|Nondisp fx of base of 2nd MC bone, r hand, init for opn fx|Nondisp fx of base of 2nd MC bone, r hand, init for opn fx +C2851649|T037|AB|S62.340D|ICD10CM|Nondisp fx of base of 2nd MC bone, r hand, 7thD|Nondisp fx of base of 2nd MC bone, r hand, 7thD +C2851650|T037|AB|S62.340G|ICD10CM|Nondisp fx of base of 2nd MC bone, r hand, 7thG|Nondisp fx of base of 2nd MC bone, r hand, 7thG +C2851651|T037|AB|S62.340K|ICD10CM|Nondisp fx of base of 2nd MC bone, r hand, 7thK|Nondisp fx of base of 2nd MC bone, r hand, 7thK +C2851652|T037|AB|S62.340P|ICD10CM|Nondisp fx of base of 2nd MC bone, r hand, 7thP|Nondisp fx of base of 2nd MC bone, r hand, 7thP +C2851653|T037|AB|S62.340S|ICD10CM|Nondisp fx of base of second MC bone, right hand, sequela|Nondisp fx of base of second MC bone, right hand, sequela +C2851653|T037|PT|S62.340S|ICD10CM|Nondisplaced fracture of base of second metacarpal bone, right hand, sequela|Nondisplaced fracture of base of second metacarpal bone, right hand, sequela +C2851654|T037|AB|S62.341|ICD10CM|Nondisp fx of base of second metacarpal bone, left hand|Nondisp fx of base of second metacarpal bone, left hand +C2851654|T037|HT|S62.341|ICD10CM|Nondisplaced fracture of base of second metacarpal bone, left hand|Nondisplaced fracture of base of second metacarpal bone, left hand +C2851655|T037|AB|S62.341A|ICD10CM|Nondisp fx of base of second MC bone, left hand, init|Nondisp fx of base of second MC bone, left hand, init +C2851656|T037|AB|S62.341B|ICD10CM|Nondisp fx of base of second MC bone, left hand, 7thB|Nondisp fx of base of second MC bone, left hand, 7thB +C2851657|T037|AB|S62.341D|ICD10CM|Nondisp fx of base of second MC bone, left hand, 7thD|Nondisp fx of base of second MC bone, left hand, 7thD +C2851658|T037|AB|S62.341G|ICD10CM|Nondisp fx of base of second MC bone, left hand, 7thG|Nondisp fx of base of second MC bone, left hand, 7thG +C2851659|T037|AB|S62.341K|ICD10CM|Nondisp fx of base of second MC bone, left hand, 7thK|Nondisp fx of base of second MC bone, left hand, 7thK +C2851660|T037|AB|S62.341P|ICD10CM|Nondisp fx of base of second MC bone, left hand, 7thP|Nondisp fx of base of second MC bone, left hand, 7thP +C2851661|T037|AB|S62.341S|ICD10CM|Nondisp fx of base of second MC bone, left hand, sequela|Nondisp fx of base of second MC bone, left hand, sequela +C2851661|T037|PT|S62.341S|ICD10CM|Nondisplaced fracture of base of second metacarpal bone, left hand, sequela|Nondisplaced fracture of base of second metacarpal bone, left hand, sequela +C2851662|T037|AB|S62.342|ICD10CM|Nondisp fx of base of third metacarpal bone, right hand|Nondisp fx of base of third metacarpal bone, right hand +C2851662|T037|HT|S62.342|ICD10CM|Nondisplaced fracture of base of third metacarpal bone, right hand|Nondisplaced fracture of base of third metacarpal bone, right hand +C2851663|T037|AB|S62.342A|ICD10CM|Nondisp fx of base of third MC bone, right hand, init|Nondisp fx of base of third MC bone, right hand, init +C2851664|T037|AB|S62.342B|ICD10CM|Nondisp fx of base of third MC bone, r hand, init for opn fx|Nondisp fx of base of third MC bone, r hand, init for opn fx +C2851665|T037|AB|S62.342D|ICD10CM|Nondisp fx of base of 3rd MC bone, r hand, 7thD|Nondisp fx of base of 3rd MC bone, r hand, 7thD +C2851666|T037|AB|S62.342G|ICD10CM|Nondisp fx of base of 3rd MC bone, r hand, 7thG|Nondisp fx of base of 3rd MC bone, r hand, 7thG +C2851667|T037|AB|S62.342K|ICD10CM|Nondisp fx of base of 3rd MC bone, r hand, 7thK|Nondisp fx of base of 3rd MC bone, r hand, 7thK +C2851668|T037|AB|S62.342P|ICD10CM|Nondisp fx of base of 3rd MC bone, r hand, 7thP|Nondisp fx of base of 3rd MC bone, r hand, 7thP +C2851669|T037|AB|S62.342S|ICD10CM|Nondisp fx of base of third MC bone, right hand, sequela|Nondisp fx of base of third MC bone, right hand, sequela +C2851669|T037|PT|S62.342S|ICD10CM|Nondisplaced fracture of base of third metacarpal bone, right hand, sequela|Nondisplaced fracture of base of third metacarpal bone, right hand, sequela +C2851670|T037|AB|S62.343|ICD10CM|Nondisp fx of base of third metacarpal bone, left hand|Nondisp fx of base of third metacarpal bone, left hand +C2851670|T037|HT|S62.343|ICD10CM|Nondisplaced fracture of base of third metacarpal bone, left hand|Nondisplaced fracture of base of third metacarpal bone, left hand +C2851671|T037|AB|S62.343A|ICD10CM|Nondisp fx of base of third metacarpal bone, left hand, init|Nondisp fx of base of third metacarpal bone, left hand, init +C2851672|T037|AB|S62.343B|ICD10CM|Nondisp fx of base of third MC bone, l hand, init for opn fx|Nondisp fx of base of third MC bone, l hand, init for opn fx +C2851673|T037|AB|S62.343D|ICD10CM|Nondisp fx of base of 3rd MC bone, l hand, 7thD|Nondisp fx of base of 3rd MC bone, l hand, 7thD +C2851674|T037|AB|S62.343G|ICD10CM|Nondisp fx of base of 3rd MC bone, l hand, 7thG|Nondisp fx of base of 3rd MC bone, l hand, 7thG +C2851675|T037|AB|S62.343K|ICD10CM|Nondisp fx of base of 3rd MC bone, l hand, 7thK|Nondisp fx of base of 3rd MC bone, l hand, 7thK +C2851676|T037|AB|S62.343P|ICD10CM|Nondisp fx of base of 3rd MC bone, l hand, 7thP|Nondisp fx of base of 3rd MC bone, l hand, 7thP +C2851677|T037|AB|S62.343S|ICD10CM|Nondisp fx of base of third MC bone, left hand, sequela|Nondisp fx of base of third MC bone, left hand, sequela +C2851677|T037|PT|S62.343S|ICD10CM|Nondisplaced fracture of base of third metacarpal bone, left hand, sequela|Nondisplaced fracture of base of third metacarpal bone, left hand, sequela +C2851678|T037|AB|S62.344|ICD10CM|Nondisp fx of base of fourth metacarpal bone, right hand|Nondisp fx of base of fourth metacarpal bone, right hand +C2851678|T037|HT|S62.344|ICD10CM|Nondisplaced fracture of base of fourth metacarpal bone, right hand|Nondisplaced fracture of base of fourth metacarpal bone, right hand +C2851679|T037|AB|S62.344A|ICD10CM|Nondisp fx of base of fourth MC bone, right hand, init|Nondisp fx of base of fourth MC bone, right hand, init +C2851680|T037|AB|S62.344B|ICD10CM|Nondisp fx of base of 4th MC bone, r hand, init for opn fx|Nondisp fx of base of 4th MC bone, r hand, init for opn fx +C2851681|T037|AB|S62.344D|ICD10CM|Nondisp fx of base of 4th MC bone, r hand, 7thD|Nondisp fx of base of 4th MC bone, r hand, 7thD +C2851682|T037|AB|S62.344G|ICD10CM|Nondisp fx of base of 4th MC bone, r hand, 7thG|Nondisp fx of base of 4th MC bone, r hand, 7thG +C2851683|T037|AB|S62.344K|ICD10CM|Nondisp fx of base of 4th MC bone, r hand, 7thK|Nondisp fx of base of 4th MC bone, r hand, 7thK +C2851684|T037|AB|S62.344P|ICD10CM|Nondisp fx of base of 4th MC bone, r hand, 7thP|Nondisp fx of base of 4th MC bone, r hand, 7thP +C2851685|T037|AB|S62.344S|ICD10CM|Nondisp fx of base of fourth MC bone, right hand, sequela|Nondisp fx of base of fourth MC bone, right hand, sequela +C2851685|T037|PT|S62.344S|ICD10CM|Nondisplaced fracture of base of fourth metacarpal bone, right hand, sequela|Nondisplaced fracture of base of fourth metacarpal bone, right hand, sequela +C2851686|T037|AB|S62.345|ICD10CM|Nondisp fx of base of fourth metacarpal bone, left hand|Nondisp fx of base of fourth metacarpal bone, left hand +C2851686|T037|HT|S62.345|ICD10CM|Nondisplaced fracture of base of fourth metacarpal bone, left hand|Nondisplaced fracture of base of fourth metacarpal bone, left hand +C2851687|T037|AB|S62.345A|ICD10CM|Nondisp fx of base of fourth MC bone, left hand, init|Nondisp fx of base of fourth MC bone, left hand, init +C2851688|T037|AB|S62.345B|ICD10CM|Nondisp fx of base of 4th MC bone, l hand, init for opn fx|Nondisp fx of base of 4th MC bone, l hand, init for opn fx +C2851689|T037|AB|S62.345D|ICD10CM|Nondisp fx of base of 4th MC bone, l hand, 7thD|Nondisp fx of base of 4th MC bone, l hand, 7thD +C2851690|T037|AB|S62.345G|ICD10CM|Nondisp fx of base of 4th MC bone, l hand, 7thG|Nondisp fx of base of 4th MC bone, l hand, 7thG +C2851691|T037|AB|S62.345K|ICD10CM|Nondisp fx of base of 4th MC bone, l hand, 7thK|Nondisp fx of base of 4th MC bone, l hand, 7thK +C2851692|T037|AB|S62.345P|ICD10CM|Nondisp fx of base of 4th MC bone, l hand, 7thP|Nondisp fx of base of 4th MC bone, l hand, 7thP +C2851693|T037|AB|S62.345S|ICD10CM|Nondisp fx of base of fourth MC bone, left hand, sequela|Nondisp fx of base of fourth MC bone, left hand, sequela +C2851693|T037|PT|S62.345S|ICD10CM|Nondisplaced fracture of base of fourth metacarpal bone, left hand, sequela|Nondisplaced fracture of base of fourth metacarpal bone, left hand, sequela +C2851694|T037|AB|S62.346|ICD10CM|Nondisp fx of base of fifth metacarpal bone, right hand|Nondisp fx of base of fifth metacarpal bone, right hand +C2851694|T037|HT|S62.346|ICD10CM|Nondisplaced fracture of base of fifth metacarpal bone, right hand|Nondisplaced fracture of base of fifth metacarpal bone, right hand +C2851695|T037|AB|S62.346A|ICD10CM|Nondisp fx of base of fifth MC bone, right hand, init|Nondisp fx of base of fifth MC bone, right hand, init +C2851696|T037|AB|S62.346B|ICD10CM|Nondisp fx of base of fifth MC bone, r hand, init for opn fx|Nondisp fx of base of fifth MC bone, r hand, init for opn fx +C2851697|T037|AB|S62.346D|ICD10CM|Nondisp fx of base of 5th MC bone, r hand, 7thD|Nondisp fx of base of 5th MC bone, r hand, 7thD +C2851698|T037|AB|S62.346G|ICD10CM|Nondisp fx of base of 5th MC bone, r hand, 7thG|Nondisp fx of base of 5th MC bone, r hand, 7thG +C2851699|T037|AB|S62.346K|ICD10CM|Nondisp fx of base of 5th MC bone, r hand, 7thK|Nondisp fx of base of 5th MC bone, r hand, 7thK +C2851700|T037|AB|S62.346P|ICD10CM|Nondisp fx of base of 5th MC bone, r hand, 7thP|Nondisp fx of base of 5th MC bone, r hand, 7thP +C2851701|T037|AB|S62.346S|ICD10CM|Nondisp fx of base of fifth MC bone, right hand, sequela|Nondisp fx of base of fifth MC bone, right hand, sequela +C2851701|T037|PT|S62.346S|ICD10CM|Nondisplaced fracture of base of fifth metacarpal bone, right hand, sequela|Nondisplaced fracture of base of fifth metacarpal bone, right hand, sequela +C2851702|T037|AB|S62.347|ICD10CM|Nondisp fx of base of fifth metacarpal bone, left hand|Nondisp fx of base of fifth metacarpal bone, left hand +C2851702|T037|HT|S62.347|ICD10CM|Nondisplaced fracture of base of fifth metacarpal bone, left hand|Nondisplaced fracture of base of fifth metacarpal bone, left hand +C2851703|T037|AB|S62.347A|ICD10CM|Nondisp fx of base of fifth metacarpal bone, left hand, init|Nondisp fx of base of fifth metacarpal bone, left hand, init +C2851704|T037|AB|S62.347B|ICD10CM|Nondisp fx of base of fifth metacarpal bone, left hand, 7thB|Nondisp fx of base of fifth metacarpal bone, left hand, 7thB +C2851705|T037|AB|S62.347D|ICD10CM|Nondisp fx of base of fifth metacarpal bone, left hand, 7thD|Nondisp fx of base of fifth metacarpal bone, left hand, 7thD +C2851706|T037|AB|S62.347G|ICD10CM|Nondisp fx of base of fifth metacarpal bone, left hand, 7thG|Nondisp fx of base of fifth metacarpal bone, left hand, 7thG +C2851707|T037|AB|S62.347K|ICD10CM|Nondisp fx of base of fifth metacarpal bone, left hand, 7thK|Nondisp fx of base of fifth metacarpal bone, left hand, 7thK +C2851708|T037|AB|S62.347P|ICD10CM|Nondisp fx of base of fifth metacarpal bone, left hand, 7thP|Nondisp fx of base of fifth metacarpal bone, left hand, 7thP +C2851709|T037|AB|S62.347S|ICD10CM|Nondisp fx of base of fifth MC bone, left hand, sequela|Nondisp fx of base of fifth MC bone, left hand, sequela +C2851709|T037|PT|S62.347S|ICD10CM|Nondisplaced fracture of base of fifth metacarpal bone, left hand, sequela|Nondisplaced fracture of base of fifth metacarpal bone, left hand, sequela +C2851645|T037|AB|S62.348|ICD10CM|Nondisplaced fracture of base of other metacarpal bone|Nondisplaced fracture of base of other metacarpal bone +C2851645|T037|HT|S62.348|ICD10CM|Nondisplaced fracture of base of other metacarpal bone|Nondisplaced fracture of base of other metacarpal bone +C2851710|T037|ET|S62.348|ICD10CM|Nondisplaced fracture of base of specified metacarpal bone with unspecified laterality|Nondisplaced fracture of base of specified metacarpal bone with unspecified laterality +C2851711|T037|AB|S62.348A|ICD10CM|Nondisp fx of base of oth metacarpal bone, init for clos fx|Nondisp fx of base of oth metacarpal bone, init for clos fx +C2851711|T037|PT|S62.348A|ICD10CM|Nondisplaced fracture of base of other metacarpal bone, initial encounter for closed fracture|Nondisplaced fracture of base of other metacarpal bone, initial encounter for closed fracture +C2851712|T037|AB|S62.348B|ICD10CM|Nondisp fx of base of oth metacarpal bone, init for opn fx|Nondisp fx of base of oth metacarpal bone, init for opn fx +C2851712|T037|PT|S62.348B|ICD10CM|Nondisplaced fracture of base of other metacarpal bone, initial encounter for open fracture|Nondisplaced fracture of base of other metacarpal bone, initial encounter for open fracture +C2851713|T037|AB|S62.348D|ICD10CM|Nondisp fx of base of MC bone, subs for fx w routn heal|Nondisp fx of base of MC bone, subs for fx w routn heal +C2851714|T037|AB|S62.348G|ICD10CM|Nondisp fx of base of MC bone, subs for fx w delay heal|Nondisp fx of base of MC bone, subs for fx w delay heal +C2851715|T037|AB|S62.348K|ICD10CM|Nondisp fx of base of MC bone, subs for fx w nonunion|Nondisp fx of base of MC bone, subs for fx w nonunion +C2851716|T037|AB|S62.348P|ICD10CM|Nondisp fx of base of MC bone, subs for fx w malunion|Nondisp fx of base of MC bone, subs for fx w malunion +C2851717|T037|AB|S62.348S|ICD10CM|Nondisp fx of base of other metacarpal bone, sequela|Nondisp fx of base of other metacarpal bone, sequela +C2851717|T037|PT|S62.348S|ICD10CM|Nondisplaced fracture of base of other metacarpal bone, sequela|Nondisplaced fracture of base of other metacarpal bone, sequela +C2851718|T037|AB|S62.349|ICD10CM|Nondisplaced fracture of base of unspecified metacarpal bone|Nondisplaced fracture of base of unspecified metacarpal bone +C2851718|T037|HT|S62.349|ICD10CM|Nondisplaced fracture of base of unspecified metacarpal bone|Nondisplaced fracture of base of unspecified metacarpal bone +C2851719|T037|AB|S62.349A|ICD10CM|Nondisp fx of base of unsp metacarpal bone, init for clos fx|Nondisp fx of base of unsp metacarpal bone, init for clos fx +C2851719|T037|PT|S62.349A|ICD10CM|Nondisplaced fracture of base of unspecified metacarpal bone, initial encounter for closed fracture|Nondisplaced fracture of base of unspecified metacarpal bone, initial encounter for closed fracture +C2851720|T037|AB|S62.349B|ICD10CM|Nondisp fx of base of unsp metacarpal bone, init for opn fx|Nondisp fx of base of unsp metacarpal bone, init for opn fx +C2851720|T037|PT|S62.349B|ICD10CM|Nondisplaced fracture of base of unspecified metacarpal bone, initial encounter for open fracture|Nondisplaced fracture of base of unspecified metacarpal bone, initial encounter for open fracture +C2851721|T037|AB|S62.349D|ICD10CM|Nondisp fx of base of unsp MC bone, subs for fx w routn heal|Nondisp fx of base of unsp MC bone, subs for fx w routn heal +C2851722|T037|AB|S62.349G|ICD10CM|Nondisp fx of base of unsp MC bone, subs for fx w delay heal|Nondisp fx of base of unsp MC bone, subs for fx w delay heal +C2851723|T037|AB|S62.349K|ICD10CM|Nondisp fx of base of unsp MC bone, subs for fx w nonunion|Nondisp fx of base of unsp MC bone, subs for fx w nonunion +C2851724|T037|AB|S62.349P|ICD10CM|Nondisp fx of base of unsp MC bone, subs for fx w malunion|Nondisp fx of base of unsp MC bone, subs for fx w malunion +C2851725|T037|AB|S62.349S|ICD10CM|Nondisp fx of base of unspecified metacarpal bone, sequela|Nondisp fx of base of unspecified metacarpal bone, sequela +C2851725|T037|PT|S62.349S|ICD10CM|Nondisplaced fracture of base of unspecified metacarpal bone, sequela|Nondisplaced fracture of base of unspecified metacarpal bone, sequela +C2851726|T037|AB|S62.35|ICD10CM|Nondisplaced fracture of shaft of other metacarpal bone|Nondisplaced fracture of shaft of other metacarpal bone +C2851726|T037|HT|S62.35|ICD10CM|Nondisplaced fracture of shaft of other metacarpal bone|Nondisplaced fracture of shaft of other metacarpal bone +C2851727|T037|AB|S62.350|ICD10CM|Nondisp fx of shaft of second metacarpal bone, right hand|Nondisp fx of shaft of second metacarpal bone, right hand +C2851727|T037|HT|S62.350|ICD10CM|Nondisplaced fracture of shaft of second metacarpal bone, right hand|Nondisplaced fracture of shaft of second metacarpal bone, right hand +C2851728|T037|AB|S62.350A|ICD10CM|Nondisp fx of shaft of second MC bone, right hand, init|Nondisp fx of shaft of second MC bone, right hand, init +C2851729|T037|AB|S62.350B|ICD10CM|Nondisp fx of shaft of 2nd MC bone, r hand, init for opn fx|Nondisp fx of shaft of 2nd MC bone, r hand, init for opn fx +C2851730|T037|AB|S62.350D|ICD10CM|Nondisp fx of shaft of 2nd MC bone, r hand, 7thD|Nondisp fx of shaft of 2nd MC bone, r hand, 7thD +C2851731|T037|AB|S62.350G|ICD10CM|Nondisp fx of shaft of 2nd MC bone, r hand, 7thG|Nondisp fx of shaft of 2nd MC bone, r hand, 7thG +C2851732|T037|AB|S62.350K|ICD10CM|Nondisp fx of shaft of 2nd MC bone, r hand, 7thK|Nondisp fx of shaft of 2nd MC bone, r hand, 7thK +C2851733|T037|AB|S62.350P|ICD10CM|Nondisp fx of shaft of 2nd MC bone, r hand, 7thP|Nondisp fx of shaft of 2nd MC bone, r hand, 7thP +C2851734|T037|AB|S62.350S|ICD10CM|Nondisp fx of shaft of second MC bone, right hand, sequela|Nondisp fx of shaft of second MC bone, right hand, sequela +C2851734|T037|PT|S62.350S|ICD10CM|Nondisplaced fracture of shaft of second metacarpal bone, right hand, sequela|Nondisplaced fracture of shaft of second metacarpal bone, right hand, sequela +C2851735|T037|AB|S62.351|ICD10CM|Nondisp fx of shaft of second metacarpal bone, left hand|Nondisp fx of shaft of second metacarpal bone, left hand +C2851735|T037|HT|S62.351|ICD10CM|Nondisplaced fracture of shaft of second metacarpal bone, left hand|Nondisplaced fracture of shaft of second metacarpal bone, left hand +C2851736|T037|AB|S62.351A|ICD10CM|Nondisp fx of shaft of second MC bone, left hand, init|Nondisp fx of shaft of second MC bone, left hand, init +C2851737|T037|AB|S62.351B|ICD10CM|Nondisp fx of shaft of 2nd MC bone, l hand, init for opn fx|Nondisp fx of shaft of 2nd MC bone, l hand, init for opn fx +C2851738|T037|AB|S62.351D|ICD10CM|Nondisp fx of shaft of 2nd MC bone, l hand, 7thD|Nondisp fx of shaft of 2nd MC bone, l hand, 7thD +C2851739|T037|AB|S62.351G|ICD10CM|Nondisp fx of shaft of 2nd MC bone, l hand, 7thG|Nondisp fx of shaft of 2nd MC bone, l hand, 7thG +C2851740|T037|AB|S62.351K|ICD10CM|Nondisp fx of shaft of 2nd MC bone, l hand, 7thK|Nondisp fx of shaft of 2nd MC bone, l hand, 7thK +C2851741|T037|AB|S62.351P|ICD10CM|Nondisp fx of shaft of 2nd MC bone, l hand, 7thP|Nondisp fx of shaft of 2nd MC bone, l hand, 7thP +C2851742|T037|AB|S62.351S|ICD10CM|Nondisp fx of shaft of second MC bone, left hand, sequela|Nondisp fx of shaft of second MC bone, left hand, sequela +C2851742|T037|PT|S62.351S|ICD10CM|Nondisplaced fracture of shaft of second metacarpal bone, left hand, sequela|Nondisplaced fracture of shaft of second metacarpal bone, left hand, sequela +C2851743|T037|AB|S62.352|ICD10CM|Nondisp fx of shaft of third metacarpal bone, right hand|Nondisp fx of shaft of third metacarpal bone, right hand +C2851743|T037|HT|S62.352|ICD10CM|Nondisplaced fracture of shaft of third metacarpal bone, right hand|Nondisplaced fracture of shaft of third metacarpal bone, right hand +C2851744|T037|AB|S62.352A|ICD10CM|Nondisp fx of shaft of third MC bone, right hand, init|Nondisp fx of shaft of third MC bone, right hand, init +C2851745|T037|AB|S62.352B|ICD10CM|Nondisp fx of shaft of 3rd MC bone, r hand, init for opn fx|Nondisp fx of shaft of 3rd MC bone, r hand, init for opn fx +C2851746|T037|AB|S62.352D|ICD10CM|Nondisp fx of shaft of 3rd MC bone, r hand, 7thD|Nondisp fx of shaft of 3rd MC bone, r hand, 7thD +C2851747|T037|AB|S62.352G|ICD10CM|Nondisp fx of shaft of 3rd MC bone, r hand, 7thG|Nondisp fx of shaft of 3rd MC bone, r hand, 7thG +C2851748|T037|AB|S62.352K|ICD10CM|Nondisp fx of shaft of 3rd MC bone, r hand, 7thK|Nondisp fx of shaft of 3rd MC bone, r hand, 7thK +C2851749|T037|AB|S62.352P|ICD10CM|Nondisp fx of shaft of 3rd MC bone, r hand, 7thP|Nondisp fx of shaft of 3rd MC bone, r hand, 7thP +C2851750|T037|AB|S62.352S|ICD10CM|Nondisp fx of shaft of third MC bone, right hand, sequela|Nondisp fx of shaft of third MC bone, right hand, sequela +C2851750|T037|PT|S62.352S|ICD10CM|Nondisplaced fracture of shaft of third metacarpal bone, right hand, sequela|Nondisplaced fracture of shaft of third metacarpal bone, right hand, sequela +C2851751|T037|AB|S62.353|ICD10CM|Nondisp fx of shaft of third metacarpal bone, left hand|Nondisp fx of shaft of third metacarpal bone, left hand +C2851751|T037|HT|S62.353|ICD10CM|Nondisplaced fracture of shaft of third metacarpal bone, left hand|Nondisplaced fracture of shaft of third metacarpal bone, left hand +C2851752|T037|AB|S62.353A|ICD10CM|Nondisp fx of shaft of third MC bone, left hand, init|Nondisp fx of shaft of third MC bone, left hand, init +C2851753|T037|AB|S62.353B|ICD10CM|Nondisp fx of shaft of 3rd MC bone, l hand, init for opn fx|Nondisp fx of shaft of 3rd MC bone, l hand, init for opn fx +C2851754|T037|AB|S62.353D|ICD10CM|Nondisp fx of shaft of 3rd MC bone, l hand, 7thD|Nondisp fx of shaft of 3rd MC bone, l hand, 7thD +C2851755|T037|AB|S62.353G|ICD10CM|Nondisp fx of shaft of 3rd MC bone, l hand, 7thG|Nondisp fx of shaft of 3rd MC bone, l hand, 7thG +C2851756|T037|AB|S62.353K|ICD10CM|Nondisp fx of shaft of 3rd MC bone, l hand, 7thK|Nondisp fx of shaft of 3rd MC bone, l hand, 7thK +C2851757|T037|AB|S62.353P|ICD10CM|Nondisp fx of shaft of 3rd MC bone, l hand, 7thP|Nondisp fx of shaft of 3rd MC bone, l hand, 7thP +C2851758|T037|AB|S62.353S|ICD10CM|Nondisp fx of shaft of third MC bone, left hand, sequela|Nondisp fx of shaft of third MC bone, left hand, sequela +C2851758|T037|PT|S62.353S|ICD10CM|Nondisplaced fracture of shaft of third metacarpal bone, left hand, sequela|Nondisplaced fracture of shaft of third metacarpal bone, left hand, sequela +C2851759|T037|AB|S62.354|ICD10CM|Nondisp fx of shaft of fourth metacarpal bone, right hand|Nondisp fx of shaft of fourth metacarpal bone, right hand +C2851759|T037|HT|S62.354|ICD10CM|Nondisplaced fracture of shaft of fourth metacarpal bone, right hand|Nondisplaced fracture of shaft of fourth metacarpal bone, right hand +C2851760|T037|AB|S62.354A|ICD10CM|Nondisp fx of shaft of fourth MC bone, right hand, init|Nondisp fx of shaft of fourth MC bone, right hand, init +C2851761|T037|AB|S62.354B|ICD10CM|Nondisp fx of shaft of 4th MC bone, r hand, init for opn fx|Nondisp fx of shaft of 4th MC bone, r hand, init for opn fx +C2851762|T037|AB|S62.354D|ICD10CM|Nondisp fx of shaft of 4th MC bone, r hand, 7thD|Nondisp fx of shaft of 4th MC bone, r hand, 7thD +C2851763|T037|AB|S62.354G|ICD10CM|Nondisp fx of shaft of 4th MC bone, r hand, 7thG|Nondisp fx of shaft of 4th MC bone, r hand, 7thG +C2851764|T037|AB|S62.354K|ICD10CM|Nondisp fx of shaft of 4th MC bone, r hand, 7thK|Nondisp fx of shaft of 4th MC bone, r hand, 7thK +C2851765|T037|AB|S62.354P|ICD10CM|Nondisp fx of shaft of 4th MC bone, r hand, 7thP|Nondisp fx of shaft of 4th MC bone, r hand, 7thP +C2851766|T037|AB|S62.354S|ICD10CM|Nondisp fx of shaft of fourth MC bone, right hand, sequela|Nondisp fx of shaft of fourth MC bone, right hand, sequela +C2851766|T037|PT|S62.354S|ICD10CM|Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, sequela|Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, sequela +C2851767|T037|AB|S62.355|ICD10CM|Nondisp fx of shaft of fourth metacarpal bone, left hand|Nondisp fx of shaft of fourth metacarpal bone, left hand +C2851767|T037|HT|S62.355|ICD10CM|Nondisplaced fracture of shaft of fourth metacarpal bone, left hand|Nondisplaced fracture of shaft of fourth metacarpal bone, left hand +C2851768|T037|AB|S62.355A|ICD10CM|Nondisp fx of shaft of fourth MC bone, left hand, init|Nondisp fx of shaft of fourth MC bone, left hand, init +C2851769|T037|AB|S62.355B|ICD10CM|Nondisp fx of shaft of 4th MC bone, l hand, init for opn fx|Nondisp fx of shaft of 4th MC bone, l hand, init for opn fx +C2851770|T037|AB|S62.355D|ICD10CM|Nondisp fx of shaft of 4th MC bone, l hand, 7thD|Nondisp fx of shaft of 4th MC bone, l hand, 7thD +C2851771|T037|AB|S62.355G|ICD10CM|Nondisp fx of shaft of 4th MC bone, l hand, 7thG|Nondisp fx of shaft of 4th MC bone, l hand, 7thG +C2851772|T037|AB|S62.355K|ICD10CM|Nondisp fx of shaft of 4th MC bone, l hand, 7thK|Nondisp fx of shaft of 4th MC bone, l hand, 7thK +C2851773|T037|AB|S62.355P|ICD10CM|Nondisp fx of shaft of 4th MC bone, l hand, 7thP|Nondisp fx of shaft of 4th MC bone, l hand, 7thP +C2851774|T037|AB|S62.355S|ICD10CM|Nondisp fx of shaft of fourth MC bone, left hand, sequela|Nondisp fx of shaft of fourth MC bone, left hand, sequela +C2851774|T037|PT|S62.355S|ICD10CM|Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, sequela|Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, sequela +C2851775|T037|AB|S62.356|ICD10CM|Nondisp fx of shaft of fifth metacarpal bone, right hand|Nondisp fx of shaft of fifth metacarpal bone, right hand +C2851775|T037|HT|S62.356|ICD10CM|Nondisplaced fracture of shaft of fifth metacarpal bone, right hand|Nondisplaced fracture of shaft of fifth metacarpal bone, right hand +C2851776|T037|AB|S62.356A|ICD10CM|Nondisp fx of shaft of fifth MC bone, right hand, init|Nondisp fx of shaft of fifth MC bone, right hand, init +C2851777|T037|AB|S62.356B|ICD10CM|Nondisp fx of shaft of 5th MC bone, r hand, init for opn fx|Nondisp fx of shaft of 5th MC bone, r hand, init for opn fx +C2851778|T037|AB|S62.356D|ICD10CM|Nondisp fx of shaft of 5th MC bone, r hand, 7thD|Nondisp fx of shaft of 5th MC bone, r hand, 7thD +C2851779|T037|AB|S62.356G|ICD10CM|Nondisp fx of shaft of 5th MC bone, r hand, 7thG|Nondisp fx of shaft of 5th MC bone, r hand, 7thG +C2851780|T037|AB|S62.356K|ICD10CM|Nondisp fx of shaft of 5th MC bone, r hand, 7thK|Nondisp fx of shaft of 5th MC bone, r hand, 7thK +C2851781|T037|AB|S62.356P|ICD10CM|Nondisp fx of shaft of 5th MC bone, r hand, 7thP|Nondisp fx of shaft of 5th MC bone, r hand, 7thP +C2851782|T037|AB|S62.356S|ICD10CM|Nondisp fx of shaft of fifth MC bone, right hand, sequela|Nondisp fx of shaft of fifth MC bone, right hand, sequela +C2851782|T037|PT|S62.356S|ICD10CM|Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, sequela|Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, sequela +C2851783|T037|AB|S62.357|ICD10CM|Nondisp fx of shaft of fifth metacarpal bone, left hand|Nondisp fx of shaft of fifth metacarpal bone, left hand +C2851783|T037|HT|S62.357|ICD10CM|Nondisplaced fracture of shaft of fifth metacarpal bone, left hand|Nondisplaced fracture of shaft of fifth metacarpal bone, left hand +C2851784|T037|AB|S62.357A|ICD10CM|Nondisp fx of shaft of fifth MC bone, left hand, init|Nondisp fx of shaft of fifth MC bone, left hand, init +C2851785|T037|AB|S62.357B|ICD10CM|Nondisp fx of shaft of 5th MC bone, l hand, init for opn fx|Nondisp fx of shaft of 5th MC bone, l hand, init for opn fx +C2851786|T037|AB|S62.357D|ICD10CM|Nondisp fx of shaft of 5th MC bone, l hand, 7thD|Nondisp fx of shaft of 5th MC bone, l hand, 7thD +C2851787|T037|AB|S62.357G|ICD10CM|Nondisp fx of shaft of 5th MC bone, l hand, 7thG|Nondisp fx of shaft of 5th MC bone, l hand, 7thG +C2851788|T037|AB|S62.357K|ICD10CM|Nondisp fx of shaft of 5th MC bone, l hand, 7thK|Nondisp fx of shaft of 5th MC bone, l hand, 7thK +C2851789|T037|AB|S62.357P|ICD10CM|Nondisp fx of shaft of 5th MC bone, l hand, 7thP|Nondisp fx of shaft of 5th MC bone, l hand, 7thP +C2851790|T037|AB|S62.357S|ICD10CM|Nondisp fx of shaft of fifth MC bone, left hand, sequela|Nondisp fx of shaft of fifth MC bone, left hand, sequela +C2851790|T037|PT|S62.357S|ICD10CM|Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, sequela|Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, sequela +C2851726|T037|HT|S62.358|ICD10CM|Nondisplaced fracture of shaft of other metacarpal bone|Nondisplaced fracture of shaft of other metacarpal bone +C2851726|T037|AB|S62.358|ICD10CM|Nondisplaced fracture of shaft of other metacarpal bone|Nondisplaced fracture of shaft of other metacarpal bone +C2851791|T037|ET|S62.358|ICD10CM|Nondisplaced fracture of shaft of specified metacarpal bone with unspecified laterality|Nondisplaced fracture of shaft of specified metacarpal bone with unspecified laterality +C2851792|T037|AB|S62.358A|ICD10CM|Nondisp fx of shaft of oth metacarpal bone, init for clos fx|Nondisp fx of shaft of oth metacarpal bone, init for clos fx +C2851792|T037|PT|S62.358A|ICD10CM|Nondisplaced fracture of shaft of other metacarpal bone, initial encounter for closed fracture|Nondisplaced fracture of shaft of other metacarpal bone, initial encounter for closed fracture +C2851793|T037|AB|S62.358B|ICD10CM|Nondisp fx of shaft of oth metacarpal bone, init for opn fx|Nondisp fx of shaft of oth metacarpal bone, init for opn fx +C2851793|T037|PT|S62.358B|ICD10CM|Nondisplaced fracture of shaft of other metacarpal bone, initial encounter for open fracture|Nondisplaced fracture of shaft of other metacarpal bone, initial encounter for open fracture +C2851794|T037|AB|S62.358D|ICD10CM|Nondisp fx of shaft of MC bone, subs for fx w routn heal|Nondisp fx of shaft of MC bone, subs for fx w routn heal +C2851795|T037|AB|S62.358G|ICD10CM|Nondisp fx of shaft of MC bone, subs for fx w delay heal|Nondisp fx of shaft of MC bone, subs for fx w delay heal +C2851796|T037|AB|S62.358K|ICD10CM|Nondisp fx of shaft of MC bone, subs for fx w nonunion|Nondisp fx of shaft of MC bone, subs for fx w nonunion +C2851797|T037|AB|S62.358P|ICD10CM|Nondisp fx of shaft of MC bone, subs for fx w malunion|Nondisp fx of shaft of MC bone, subs for fx w malunion +C2851798|T037|AB|S62.358S|ICD10CM|Nondisp fx of shaft of other metacarpal bone, sequela|Nondisp fx of shaft of other metacarpal bone, sequela +C2851798|T037|PT|S62.358S|ICD10CM|Nondisplaced fracture of shaft of other metacarpal bone, sequela|Nondisplaced fracture of shaft of other metacarpal bone, sequela +C2851799|T037|AB|S62.359|ICD10CM|Nondisp fx of shaft of unspecified metacarpal bone|Nondisp fx of shaft of unspecified metacarpal bone +C2851799|T037|HT|S62.359|ICD10CM|Nondisplaced fracture of shaft of unspecified metacarpal bone|Nondisplaced fracture of shaft of unspecified metacarpal bone +C2851800|T037|AB|S62.359A|ICD10CM|Nondisp fx of shaft of unsp metacarpal bone, init|Nondisp fx of shaft of unsp metacarpal bone, init +C2851800|T037|PT|S62.359A|ICD10CM|Nondisplaced fracture of shaft of unspecified metacarpal bone, initial encounter for closed fracture|Nondisplaced fracture of shaft of unspecified metacarpal bone, initial encounter for closed fracture +C2851801|T037|AB|S62.359B|ICD10CM|Nondisp fx of shaft of unsp metacarpal bone, init for opn fx|Nondisp fx of shaft of unsp metacarpal bone, init for opn fx +C2851801|T037|PT|S62.359B|ICD10CM|Nondisplaced fracture of shaft of unspecified metacarpal bone, initial encounter for open fracture|Nondisplaced fracture of shaft of unspecified metacarpal bone, initial encounter for open fracture +C2851802|T037|AB|S62.359D|ICD10CM|Nondisp fx of shaft of unsp MC bone, 7thD|Nondisp fx of shaft of unsp MC bone, 7thD +C2851803|T037|AB|S62.359G|ICD10CM|Nondisp fx of shaft of unsp MC bone, 7thG|Nondisp fx of shaft of unsp MC bone, 7thG +C2851804|T037|AB|S62.359K|ICD10CM|Nondisp fx of shaft of unsp MC bone, subs for fx w nonunion|Nondisp fx of shaft of unsp MC bone, subs for fx w nonunion +C2851805|T037|AB|S62.359P|ICD10CM|Nondisp fx of shaft of unsp MC bone, subs for fx w malunion|Nondisp fx of shaft of unsp MC bone, subs for fx w malunion +C2851806|T037|AB|S62.359S|ICD10CM|Nondisp fx of shaft of unspecified metacarpal bone, sequela|Nondisp fx of shaft of unspecified metacarpal bone, sequela +C2851806|T037|PT|S62.359S|ICD10CM|Nondisplaced fracture of shaft of unspecified metacarpal bone, sequela|Nondisplaced fracture of shaft of unspecified metacarpal bone, sequela +C2851807|T037|HT|S62.36|ICD10CM|Nondisplaced fracture of neck of other metacarpal bone|Nondisplaced fracture of neck of other metacarpal bone +C2851807|T037|AB|S62.36|ICD10CM|Nondisplaced fracture of neck of other metacarpal bone|Nondisplaced fracture of neck of other metacarpal bone +C2851808|T037|AB|S62.360|ICD10CM|Nondisp fx of neck of second metacarpal bone, right hand|Nondisp fx of neck of second metacarpal bone, right hand +C2851808|T037|HT|S62.360|ICD10CM|Nondisplaced fracture of neck of second metacarpal bone, right hand|Nondisplaced fracture of neck of second metacarpal bone, right hand +C2851809|T037|AB|S62.360A|ICD10CM|Nondisp fx of neck of second MC bone, right hand, init|Nondisp fx of neck of second MC bone, right hand, init +C2851810|T037|AB|S62.360B|ICD10CM|Nondisp fx of neck of 2nd MC bone, r hand, init for opn fx|Nondisp fx of neck of 2nd MC bone, r hand, init for opn fx +C2851811|T037|AB|S62.360D|ICD10CM|Nondisp fx of nk of 2nd MC bone, r hand, 7thD|Nondisp fx of nk of 2nd MC bone, r hand, 7thD +C2851812|T037|AB|S62.360G|ICD10CM|Nondisp fx of nk of 2nd MC bone, r hand, 7thG|Nondisp fx of nk of 2nd MC bone, r hand, 7thG +C2851813|T037|AB|S62.360K|ICD10CM|Nondisp fx of nk of 2nd MC bone, r hand, 7thK|Nondisp fx of nk of 2nd MC bone, r hand, 7thK +C2851814|T037|AB|S62.360P|ICD10CM|Nondisp fx of nk of 2nd MC bone, r hand, 7thP|Nondisp fx of nk of 2nd MC bone, r hand, 7thP +C2851815|T037|AB|S62.360S|ICD10CM|Nondisp fx of neck of second MC bone, right hand, sequela|Nondisp fx of neck of second MC bone, right hand, sequela +C2851815|T037|PT|S62.360S|ICD10CM|Nondisplaced fracture of neck of second metacarpal bone, right hand, sequela|Nondisplaced fracture of neck of second metacarpal bone, right hand, sequela +C2851816|T037|AB|S62.361|ICD10CM|Nondisp fx of neck of second metacarpal bone, left hand|Nondisp fx of neck of second metacarpal bone, left hand +C2851816|T037|HT|S62.361|ICD10CM|Nondisplaced fracture of neck of second metacarpal bone, left hand|Nondisplaced fracture of neck of second metacarpal bone, left hand +C2851817|T037|AB|S62.361A|ICD10CM|Nondisp fx of neck of second MC bone, left hand, init|Nondisp fx of neck of second MC bone, left hand, init +C2851818|T037|AB|S62.361B|ICD10CM|Nondisp fx of neck of 2nd MC bone, l hand, init for opn fx|Nondisp fx of neck of 2nd MC bone, l hand, init for opn fx +C2851819|T037|AB|S62.361D|ICD10CM|Nondisp fx of nk of 2nd MC bone, l hand, 7thD|Nondisp fx of nk of 2nd MC bone, l hand, 7thD +C2851820|T037|AB|S62.361G|ICD10CM|Nondisp fx of nk of 2nd MC bone, l hand, 7thG|Nondisp fx of nk of 2nd MC bone, l hand, 7thG +C2851821|T037|AB|S62.361K|ICD10CM|Nondisp fx of nk of 2nd MC bone, l hand, 7thK|Nondisp fx of nk of 2nd MC bone, l hand, 7thK +C2851822|T037|AB|S62.361P|ICD10CM|Nondisp fx of nk of 2nd MC bone, l hand, 7thP|Nondisp fx of nk of 2nd MC bone, l hand, 7thP +C2851823|T037|AB|S62.361S|ICD10CM|Nondisp fx of neck of second MC bone, left hand, sequela|Nondisp fx of neck of second MC bone, left hand, sequela +C2851823|T037|PT|S62.361S|ICD10CM|Nondisplaced fracture of neck of second metacarpal bone, left hand, sequela|Nondisplaced fracture of neck of second metacarpal bone, left hand, sequela +C2851824|T037|AB|S62.362|ICD10CM|Nondisp fx of neck of third metacarpal bone, right hand|Nondisp fx of neck of third metacarpal bone, right hand +C2851824|T037|HT|S62.362|ICD10CM|Nondisplaced fracture of neck of third metacarpal bone, right hand|Nondisplaced fracture of neck of third metacarpal bone, right hand +C2851825|T037|AB|S62.362A|ICD10CM|Nondisp fx of neck of third MC bone, right hand, init|Nondisp fx of neck of third MC bone, right hand, init +C2851826|T037|AB|S62.362B|ICD10CM|Nondisp fx of neck of third MC bone, r hand, init for opn fx|Nondisp fx of neck of third MC bone, r hand, init for opn fx +C2851827|T037|AB|S62.362D|ICD10CM|Nondisp fx of nk of 3rd MC bone, r hand, 7thD|Nondisp fx of nk of 3rd MC bone, r hand, 7thD +C2851828|T037|AB|S62.362G|ICD10CM|Nondisp fx of nk of 3rd MC bone, r hand, 7thG|Nondisp fx of nk of 3rd MC bone, r hand, 7thG +C2851829|T037|AB|S62.362K|ICD10CM|Nondisp fx of nk of 3rd MC bone, r hand, 7thK|Nondisp fx of nk of 3rd MC bone, r hand, 7thK +C2851830|T037|AB|S62.362P|ICD10CM|Nondisp fx of nk of 3rd MC bone, r hand, 7thP|Nondisp fx of nk of 3rd MC bone, r hand, 7thP +C2851831|T037|AB|S62.362S|ICD10CM|Nondisp fx of neck of third MC bone, right hand, sequela|Nondisp fx of neck of third MC bone, right hand, sequela +C2851831|T037|PT|S62.362S|ICD10CM|Nondisplaced fracture of neck of third metacarpal bone, right hand, sequela|Nondisplaced fracture of neck of third metacarpal bone, right hand, sequela +C2851832|T037|AB|S62.363|ICD10CM|Nondisp fx of neck of third metacarpal bone, left hand|Nondisp fx of neck of third metacarpal bone, left hand +C2851832|T037|HT|S62.363|ICD10CM|Nondisplaced fracture of neck of third metacarpal bone, left hand|Nondisplaced fracture of neck of third metacarpal bone, left hand +C2851833|T037|AB|S62.363A|ICD10CM|Nondisp fx of neck of third metacarpal bone, left hand, init|Nondisp fx of neck of third metacarpal bone, left hand, init +C2851834|T037|AB|S62.363B|ICD10CM|Nondisp fx of neck of third MC bone, l hand, init for opn fx|Nondisp fx of neck of third MC bone, l hand, init for opn fx +C2851835|T037|AB|S62.363D|ICD10CM|Nondisp fx of nk of 3rd MC bone, l hand, 7thD|Nondisp fx of nk of 3rd MC bone, l hand, 7thD +C2851836|T037|AB|S62.363G|ICD10CM|Nondisp fx of nk of 3rd MC bone, l hand, 7thG|Nondisp fx of nk of 3rd MC bone, l hand, 7thG +C2851837|T037|AB|S62.363K|ICD10CM|Nondisp fx of nk of 3rd MC bone, l hand, 7thK|Nondisp fx of nk of 3rd MC bone, l hand, 7thK +C2851838|T037|AB|S62.363P|ICD10CM|Nondisp fx of nk of 3rd MC bone, l hand, 7thP|Nondisp fx of nk of 3rd MC bone, l hand, 7thP +C2851839|T037|AB|S62.363S|ICD10CM|Nondisp fx of neck of third MC bone, left hand, sequela|Nondisp fx of neck of third MC bone, left hand, sequela +C2851839|T037|PT|S62.363S|ICD10CM|Nondisplaced fracture of neck of third metacarpal bone, left hand, sequela|Nondisplaced fracture of neck of third metacarpal bone, left hand, sequela +C2851840|T037|AB|S62.364|ICD10CM|Nondisp fx of neck of fourth metacarpal bone, right hand|Nondisp fx of neck of fourth metacarpal bone, right hand +C2851840|T037|HT|S62.364|ICD10CM|Nondisplaced fracture of neck of fourth metacarpal bone, right hand|Nondisplaced fracture of neck of fourth metacarpal bone, right hand +C2851841|T037|AB|S62.364A|ICD10CM|Nondisp fx of neck of fourth MC bone, right hand, init|Nondisp fx of neck of fourth MC bone, right hand, init +C2851842|T037|AB|S62.364B|ICD10CM|Nondisp fx of neck of 4th MC bone, r hand, init for opn fx|Nondisp fx of neck of 4th MC bone, r hand, init for opn fx +C2851843|T037|AB|S62.364D|ICD10CM|Nondisp fx of nk of 4th MC bone, r hand, 7thD|Nondisp fx of nk of 4th MC bone, r hand, 7thD +C2851844|T037|AB|S62.364G|ICD10CM|Nondisp fx of nk of 4th MC bone, r hand, 7thG|Nondisp fx of nk of 4th MC bone, r hand, 7thG +C2851845|T037|AB|S62.364K|ICD10CM|Nondisp fx of nk of 4th MC bone, r hand, 7thK|Nondisp fx of nk of 4th MC bone, r hand, 7thK +C2851846|T037|AB|S62.364P|ICD10CM|Nondisp fx of nk of 4th MC bone, r hand, 7thP|Nondisp fx of nk of 4th MC bone, r hand, 7thP +C2851847|T037|AB|S62.364S|ICD10CM|Nondisp fx of neck of fourth MC bone, right hand, sequela|Nondisp fx of neck of fourth MC bone, right hand, sequela +C2851847|T037|PT|S62.364S|ICD10CM|Nondisplaced fracture of neck of fourth metacarpal bone, right hand, sequela|Nondisplaced fracture of neck of fourth metacarpal bone, right hand, sequela +C2851848|T037|AB|S62.365|ICD10CM|Nondisp fx of neck of fourth metacarpal bone, left hand|Nondisp fx of neck of fourth metacarpal bone, left hand +C2851848|T037|HT|S62.365|ICD10CM|Nondisplaced fracture of neck of fourth metacarpal bone, left hand|Nondisplaced fracture of neck of fourth metacarpal bone, left hand +C2851849|T037|AB|S62.365A|ICD10CM|Nondisp fx of neck of fourth MC bone, left hand, init|Nondisp fx of neck of fourth MC bone, left hand, init +C2851850|T037|AB|S62.365B|ICD10CM|Nondisp fx of neck of 4th MC bone, l hand, init for opn fx|Nondisp fx of neck of 4th MC bone, l hand, init for opn fx +C2851851|T037|AB|S62.365D|ICD10CM|Nondisp fx of nk of 4th MC bone, l hand, 7thD|Nondisp fx of nk of 4th MC bone, l hand, 7thD +C2851852|T037|AB|S62.365G|ICD10CM|Nondisp fx of nk of 4th MC bone, l hand, 7thG|Nondisp fx of nk of 4th MC bone, l hand, 7thG +C2851853|T037|AB|S62.365K|ICD10CM|Nondisp fx of nk of 4th MC bone, l hand, 7thK|Nondisp fx of nk of 4th MC bone, l hand, 7thK +C2851854|T037|AB|S62.365P|ICD10CM|Nondisp fx of nk of 4th MC bone, l hand, 7thP|Nondisp fx of nk of 4th MC bone, l hand, 7thP +C2851855|T037|AB|S62.365S|ICD10CM|Nondisp fx of neck of fourth MC bone, left hand, sequela|Nondisp fx of neck of fourth MC bone, left hand, sequela +C2851855|T037|PT|S62.365S|ICD10CM|Nondisplaced fracture of neck of fourth metacarpal bone, left hand, sequela|Nondisplaced fracture of neck of fourth metacarpal bone, left hand, sequela +C2851856|T037|AB|S62.366|ICD10CM|Nondisp fx of neck of fifth metacarpal bone, right hand|Nondisp fx of neck of fifth metacarpal bone, right hand +C2851856|T037|HT|S62.366|ICD10CM|Nondisplaced fracture of neck of fifth metacarpal bone, right hand|Nondisplaced fracture of neck of fifth metacarpal bone, right hand +C2851857|T037|AB|S62.366A|ICD10CM|Nondisp fx of neck of fifth MC bone, right hand, init|Nondisp fx of neck of fifth MC bone, right hand, init +C2851858|T037|AB|S62.366B|ICD10CM|Nondisp fx of neck of fifth MC bone, r hand, init for opn fx|Nondisp fx of neck of fifth MC bone, r hand, init for opn fx +C2851859|T037|AB|S62.366D|ICD10CM|Nondisp fx of nk of 5th MC bone, r hand, 7thD|Nondisp fx of nk of 5th MC bone, r hand, 7thD +C2851860|T037|AB|S62.366G|ICD10CM|Nondisp fx of nk of 5th MC bone, r hand, 7thG|Nondisp fx of nk of 5th MC bone, r hand, 7thG +C2851861|T037|AB|S62.366K|ICD10CM|Nondisp fx of nk of 5th MC bone, r hand, 7thK|Nondisp fx of nk of 5th MC bone, r hand, 7thK +C2851862|T037|AB|S62.366P|ICD10CM|Nondisp fx of nk of 5th MC bone, r hand, 7thP|Nondisp fx of nk of 5th MC bone, r hand, 7thP +C2851863|T037|AB|S62.366S|ICD10CM|Nondisp fx of neck of fifth MC bone, right hand, sequela|Nondisp fx of neck of fifth MC bone, right hand, sequela +C2851863|T037|PT|S62.366S|ICD10CM|Nondisplaced fracture of neck of fifth metacarpal bone, right hand, sequela|Nondisplaced fracture of neck of fifth metacarpal bone, right hand, sequela +C2851864|T037|AB|S62.367|ICD10CM|Nondisp fx of neck of fifth metacarpal bone, left hand|Nondisp fx of neck of fifth metacarpal bone, left hand +C2851864|T037|HT|S62.367|ICD10CM|Nondisplaced fracture of neck of fifth metacarpal bone, left hand|Nondisplaced fracture of neck of fifth metacarpal bone, left hand +C2851865|T037|AB|S62.367A|ICD10CM|Nondisp fx of neck of fifth metacarpal bone, left hand, init|Nondisp fx of neck of fifth metacarpal bone, left hand, init +C2851866|T037|AB|S62.367B|ICD10CM|Nondisp fx of neck of fifth MC bone, l hand, init for opn fx|Nondisp fx of neck of fifth MC bone, l hand, init for opn fx +C2851867|T037|AB|S62.367D|ICD10CM|Nondisp fx of nk of 5th MC bone, l hand, 7thD|Nondisp fx of nk of 5th MC bone, l hand, 7thD +C2851868|T037|AB|S62.367G|ICD10CM|Nondisp fx of nk of 5th MC bone, l hand, 7thG|Nondisp fx of nk of 5th MC bone, l hand, 7thG +C2851869|T037|AB|S62.367K|ICD10CM|Nondisp fx of nk of 5th MC bone, l hand, 7thK|Nondisp fx of nk of 5th MC bone, l hand, 7thK +C2851870|T037|AB|S62.367P|ICD10CM|Nondisp fx of nk of 5th MC bone, l hand, 7thP|Nondisp fx of nk of 5th MC bone, l hand, 7thP +C2851871|T037|AB|S62.367S|ICD10CM|Nondisp fx of neck of fifth MC bone, left hand, sequela|Nondisp fx of neck of fifth MC bone, left hand, sequela +C2851871|T037|PT|S62.367S|ICD10CM|Nondisplaced fracture of neck of fifth metacarpal bone, left hand, sequela|Nondisplaced fracture of neck of fifth metacarpal bone, left hand, sequela +C2851807|T037|AB|S62.368|ICD10CM|Nondisplaced fracture of neck of other metacarpal bone|Nondisplaced fracture of neck of other metacarpal bone +C2851807|T037|HT|S62.368|ICD10CM|Nondisplaced fracture of neck of other metacarpal bone|Nondisplaced fracture of neck of other metacarpal bone +C2851872|T037|ET|S62.368|ICD10CM|Nondisplaced fracture of neck of specified metacarpal bone with unspecified laterality|Nondisplaced fracture of neck of specified metacarpal bone with unspecified laterality +C2851873|T037|AB|S62.368A|ICD10CM|Nondisp fx of neck of oth metacarpal bone, init for clos fx|Nondisp fx of neck of oth metacarpal bone, init for clos fx +C2851873|T037|PT|S62.368A|ICD10CM|Nondisplaced fracture of neck of other metacarpal bone, initial encounter for closed fracture|Nondisplaced fracture of neck of other metacarpal bone, initial encounter for closed fracture +C2851874|T037|AB|S62.368B|ICD10CM|Nondisp fx of neck of oth metacarpal bone, init for opn fx|Nondisp fx of neck of oth metacarpal bone, init for opn fx +C2851874|T037|PT|S62.368B|ICD10CM|Nondisplaced fracture of neck of other metacarpal bone, initial encounter for open fracture|Nondisplaced fracture of neck of other metacarpal bone, initial encounter for open fracture +C2851875|T037|AB|S62.368D|ICD10CM|Nondisp fx of neck of MC bone, subs for fx w routn heal|Nondisp fx of neck of MC bone, subs for fx w routn heal +C2851876|T037|AB|S62.368G|ICD10CM|Nondisp fx of neck of MC bone, subs for fx w delay heal|Nondisp fx of neck of MC bone, subs for fx w delay heal +C2851877|T037|AB|S62.368K|ICD10CM|Nondisp fx of neck of MC bone, subs for fx w nonunion|Nondisp fx of neck of MC bone, subs for fx w nonunion +C2851878|T037|AB|S62.368P|ICD10CM|Nondisp fx of neck of MC bone, subs for fx w malunion|Nondisp fx of neck of MC bone, subs for fx w malunion +C2851879|T037|AB|S62.368S|ICD10CM|Nondisp fx of neck of other metacarpal bone, sequela|Nondisp fx of neck of other metacarpal bone, sequela +C2851879|T037|PT|S62.368S|ICD10CM|Nondisplaced fracture of neck of other metacarpal bone, sequela|Nondisplaced fracture of neck of other metacarpal bone, sequela +C2851880|T037|AB|S62.369|ICD10CM|Nondisplaced fracture of neck of unspecified metacarpal bone|Nondisplaced fracture of neck of unspecified metacarpal bone +C2851880|T037|HT|S62.369|ICD10CM|Nondisplaced fracture of neck of unspecified metacarpal bone|Nondisplaced fracture of neck of unspecified metacarpal bone +C2851881|T037|AB|S62.369A|ICD10CM|Nondisp fx of neck of unsp metacarpal bone, init for clos fx|Nondisp fx of neck of unsp metacarpal bone, init for clos fx +C2851881|T037|PT|S62.369A|ICD10CM|Nondisplaced fracture of neck of unspecified metacarpal bone, initial encounter for closed fracture|Nondisplaced fracture of neck of unspecified metacarpal bone, initial encounter for closed fracture +C2851882|T037|AB|S62.369B|ICD10CM|Nondisp fx of neck of unsp metacarpal bone, init for opn fx|Nondisp fx of neck of unsp metacarpal bone, init for opn fx +C2851882|T037|PT|S62.369B|ICD10CM|Nondisplaced fracture of neck of unspecified metacarpal bone, initial encounter for open fracture|Nondisplaced fracture of neck of unspecified metacarpal bone, initial encounter for open fracture +C2851883|T037|AB|S62.369D|ICD10CM|Nondisp fx of neck of unsp MC bone, subs for fx w routn heal|Nondisp fx of neck of unsp MC bone, subs for fx w routn heal +C2851884|T037|AB|S62.369G|ICD10CM|Nondisp fx of neck of unsp MC bone, subs for fx w delay heal|Nondisp fx of neck of unsp MC bone, subs for fx w delay heal +C2851885|T037|AB|S62.369K|ICD10CM|Nondisp fx of neck of unsp MC bone, subs for fx w nonunion|Nondisp fx of neck of unsp MC bone, subs for fx w nonunion +C2851886|T037|AB|S62.369P|ICD10CM|Nondisp fx of neck of unsp MC bone, subs for fx w malunion|Nondisp fx of neck of unsp MC bone, subs for fx w malunion +C2851887|T037|AB|S62.369S|ICD10CM|Nondisp fx of neck of unspecified metacarpal bone, sequela|Nondisp fx of neck of unspecified metacarpal bone, sequela +C2851887|T037|PT|S62.369S|ICD10CM|Nondisplaced fracture of neck of unspecified metacarpal bone, sequela|Nondisplaced fracture of neck of unspecified metacarpal bone, sequela +C2851888|T037|HT|S62.39|ICD10CM|Other fracture of other metacarpal bone|Other fracture of other metacarpal bone +C2851888|T037|AB|S62.39|ICD10CM|Other fracture of other metacarpal bone|Other fracture of other metacarpal bone +C2851889|T037|AB|S62.390|ICD10CM|Other fracture of second metacarpal bone, right hand|Other fracture of second metacarpal bone, right hand +C2851889|T037|HT|S62.390|ICD10CM|Other fracture of second metacarpal bone, right hand|Other fracture of second metacarpal bone, right hand +C2851890|T037|AB|S62.390A|ICD10CM|Oth fracture of second metacarpal bone, right hand, init|Oth fracture of second metacarpal bone, right hand, init +C2851890|T037|PT|S62.390A|ICD10CM|Other fracture of second metacarpal bone, right hand, initial encounter for closed fracture|Other fracture of second metacarpal bone, right hand, initial encounter for closed fracture +C2851891|T037|AB|S62.390B|ICD10CM|Oth fx second metacarpal bone, right hand, init for opn fx|Oth fx second metacarpal bone, right hand, init for opn fx +C2851891|T037|PT|S62.390B|ICD10CM|Other fracture of second metacarpal bone, right hand, initial encounter for open fracture|Other fracture of second metacarpal bone, right hand, initial encounter for open fracture +C2851892|T037|AB|S62.390D|ICD10CM|Oth fx second MC bone, right hand, subs for fx w routn heal|Oth fx second MC bone, right hand, subs for fx w routn heal +C2851893|T037|AB|S62.390G|ICD10CM|Oth fx second MC bone, right hand, subs for fx w delay heal|Oth fx second MC bone, right hand, subs for fx w delay heal +C2851894|T037|AB|S62.390K|ICD10CM|Oth fx second MC bone, right hand, subs for fx w nonunion|Oth fx second MC bone, right hand, subs for fx w nonunion +C2851895|T037|AB|S62.390P|ICD10CM|Oth fx second MC bone, right hand, subs for fx w malunion|Oth fx second MC bone, right hand, subs for fx w malunion +C2851896|T037|AB|S62.390S|ICD10CM|Oth fracture of second metacarpal bone, right hand, sequela|Oth fracture of second metacarpal bone, right hand, sequela +C2851896|T037|PT|S62.390S|ICD10CM|Other fracture of second metacarpal bone, right hand, sequela|Other fracture of second metacarpal bone, right hand, sequela +C2851897|T037|AB|S62.391|ICD10CM|Other fracture of second metacarpal bone, left hand|Other fracture of second metacarpal bone, left hand +C2851897|T037|HT|S62.391|ICD10CM|Other fracture of second metacarpal bone, left hand|Other fracture of second metacarpal bone, left hand +C2851898|T037|AB|S62.391A|ICD10CM|Oth fracture of second metacarpal bone, left hand, init|Oth fracture of second metacarpal bone, left hand, init +C2851898|T037|PT|S62.391A|ICD10CM|Other fracture of second metacarpal bone, left hand, initial encounter for closed fracture|Other fracture of second metacarpal bone, left hand, initial encounter for closed fracture +C2851899|T037|AB|S62.391B|ICD10CM|Oth fx second metacarpal bone, left hand, init for opn fx|Oth fx second metacarpal bone, left hand, init for opn fx +C2851899|T037|PT|S62.391B|ICD10CM|Other fracture of second metacarpal bone, left hand, initial encounter for open fracture|Other fracture of second metacarpal bone, left hand, initial encounter for open fracture +C2851900|T037|AB|S62.391D|ICD10CM|Oth fx second MC bone, left hand, subs for fx w routn heal|Oth fx second MC bone, left hand, subs for fx w routn heal +C2851901|T037|AB|S62.391G|ICD10CM|Oth fx second MC bone, left hand, subs for fx w delay heal|Oth fx second MC bone, left hand, subs for fx w delay heal +C2851902|T037|AB|S62.391K|ICD10CM|Oth fx second MC bone, left hand, subs for fx w nonunion|Oth fx second MC bone, left hand, subs for fx w nonunion +C2851902|T037|PT|S62.391K|ICD10CM|Other fracture of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion|Other fracture of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion +C2851903|T037|AB|S62.391P|ICD10CM|Oth fx second MC bone, left hand, subs for fx w malunion|Oth fx second MC bone, left hand, subs for fx w malunion +C2851903|T037|PT|S62.391P|ICD10CM|Other fracture of second metacarpal bone, left hand, subsequent encounter for fracture with malunion|Other fracture of second metacarpal bone, left hand, subsequent encounter for fracture with malunion +C2851904|T037|AB|S62.391S|ICD10CM|Other fracture of second metacarpal bone, left hand, sequela|Other fracture of second metacarpal bone, left hand, sequela +C2851904|T037|PT|S62.391S|ICD10CM|Other fracture of second metacarpal bone, left hand, sequela|Other fracture of second metacarpal bone, left hand, sequela +C2851905|T037|AB|S62.392|ICD10CM|Other fracture of third metacarpal bone, right hand|Other fracture of third metacarpal bone, right hand +C2851905|T037|HT|S62.392|ICD10CM|Other fracture of third metacarpal bone, right hand|Other fracture of third metacarpal bone, right hand +C2851906|T037|AB|S62.392A|ICD10CM|Oth fracture of third metacarpal bone, right hand, init|Oth fracture of third metacarpal bone, right hand, init +C2851906|T037|PT|S62.392A|ICD10CM|Other fracture of third metacarpal bone, right hand, initial encounter for closed fracture|Other fracture of third metacarpal bone, right hand, initial encounter for closed fracture +C2851907|T037|AB|S62.392B|ICD10CM|Oth fx third metacarpal bone, right hand, init for opn fx|Oth fx third metacarpal bone, right hand, init for opn fx +C2851907|T037|PT|S62.392B|ICD10CM|Other fracture of third metacarpal bone, right hand, initial encounter for open fracture|Other fracture of third metacarpal bone, right hand, initial encounter for open fracture +C2851908|T037|AB|S62.392D|ICD10CM|Oth fx third MC bone, right hand, subs for fx w routn heal|Oth fx third MC bone, right hand, subs for fx w routn heal +C2851909|T037|AB|S62.392G|ICD10CM|Oth fx third MC bone, right hand, subs for fx w delay heal|Oth fx third MC bone, right hand, subs for fx w delay heal +C2851910|T037|AB|S62.392K|ICD10CM|Oth fx third MC bone, right hand, subs for fx w nonunion|Oth fx third MC bone, right hand, subs for fx w nonunion +C2851910|T037|PT|S62.392K|ICD10CM|Other fracture of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion|Other fracture of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion +C2851911|T037|AB|S62.392P|ICD10CM|Oth fx third MC bone, right hand, subs for fx w malunion|Oth fx third MC bone, right hand, subs for fx w malunion +C2851911|T037|PT|S62.392P|ICD10CM|Other fracture of third metacarpal bone, right hand, subsequent encounter for fracture with malunion|Other fracture of third metacarpal bone, right hand, subsequent encounter for fracture with malunion +C2851912|T037|AB|S62.392S|ICD10CM|Other fracture of third metacarpal bone, right hand, sequela|Other fracture of third metacarpal bone, right hand, sequela +C2851912|T037|PT|S62.392S|ICD10CM|Other fracture of third metacarpal bone, right hand, sequela|Other fracture of third metacarpal bone, right hand, sequela +C2851913|T037|AB|S62.393|ICD10CM|Other fracture of third metacarpal bone, left hand|Other fracture of third metacarpal bone, left hand +C2851913|T037|HT|S62.393|ICD10CM|Other fracture of third metacarpal bone, left hand|Other fracture of third metacarpal bone, left hand +C2851914|T037|AB|S62.393A|ICD10CM|Oth fracture of third metacarpal bone, left hand, init|Oth fracture of third metacarpal bone, left hand, init +C2851914|T037|PT|S62.393A|ICD10CM|Other fracture of third metacarpal bone, left hand, initial encounter for closed fracture|Other fracture of third metacarpal bone, left hand, initial encounter for closed fracture +C2851915|T037|AB|S62.393B|ICD10CM|Oth fx third metacarpal bone, left hand, init for opn fx|Oth fx third metacarpal bone, left hand, init for opn fx +C2851915|T037|PT|S62.393B|ICD10CM|Other fracture of third metacarpal bone, left hand, initial encounter for open fracture|Other fracture of third metacarpal bone, left hand, initial encounter for open fracture +C2851916|T037|AB|S62.393D|ICD10CM|Oth fx third MC bone, left hand, subs for fx w routn heal|Oth fx third MC bone, left hand, subs for fx w routn heal +C2851917|T037|AB|S62.393G|ICD10CM|Oth fx third MC bone, left hand, subs for fx w delay heal|Oth fx third MC bone, left hand, subs for fx w delay heal +C2851918|T037|AB|S62.393K|ICD10CM|Oth fx third MC bone, left hand, subs for fx w nonunion|Oth fx third MC bone, left hand, subs for fx w nonunion +C2851918|T037|PT|S62.393K|ICD10CM|Other fracture of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion|Other fracture of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion +C2851919|T037|AB|S62.393P|ICD10CM|Oth fx third MC bone, left hand, subs for fx w malunion|Oth fx third MC bone, left hand, subs for fx w malunion +C2851919|T037|PT|S62.393P|ICD10CM|Other fracture of third metacarpal bone, left hand, subsequent encounter for fracture with malunion|Other fracture of third metacarpal bone, left hand, subsequent encounter for fracture with malunion +C2851920|T037|PT|S62.393S|ICD10CM|Other fracture of third metacarpal bone, left hand, sequela|Other fracture of third metacarpal bone, left hand, sequela +C2851920|T037|AB|S62.393S|ICD10CM|Other fracture of third metacarpal bone, left hand, sequela|Other fracture of third metacarpal bone, left hand, sequela +C2851921|T037|AB|S62.394|ICD10CM|Other fracture of fourth metacarpal bone, right hand|Other fracture of fourth metacarpal bone, right hand +C2851921|T037|HT|S62.394|ICD10CM|Other fracture of fourth metacarpal bone, right hand|Other fracture of fourth metacarpal bone, right hand +C2851922|T037|AB|S62.394A|ICD10CM|Oth fracture of fourth metacarpal bone, right hand, init|Oth fracture of fourth metacarpal bone, right hand, init +C2851922|T037|PT|S62.394A|ICD10CM|Other fracture of fourth metacarpal bone, right hand, initial encounter for closed fracture|Other fracture of fourth metacarpal bone, right hand, initial encounter for closed fracture +C2851923|T037|AB|S62.394B|ICD10CM|Oth fx fourth metacarpal bone, right hand, init for opn fx|Oth fx fourth metacarpal bone, right hand, init for opn fx +C2851923|T037|PT|S62.394B|ICD10CM|Other fracture of fourth metacarpal bone, right hand, initial encounter for open fracture|Other fracture of fourth metacarpal bone, right hand, initial encounter for open fracture +C2851924|T037|AB|S62.394D|ICD10CM|Oth fx fourth MC bone, right hand, subs for fx w routn heal|Oth fx fourth MC bone, right hand, subs for fx w routn heal +C2851925|T037|AB|S62.394G|ICD10CM|Oth fx fourth MC bone, right hand, subs for fx w delay heal|Oth fx fourth MC bone, right hand, subs for fx w delay heal +C2851926|T037|AB|S62.394K|ICD10CM|Oth fx fourth MC bone, right hand, subs for fx w nonunion|Oth fx fourth MC bone, right hand, subs for fx w nonunion +C2851927|T037|AB|S62.394P|ICD10CM|Oth fx fourth MC bone, right hand, subs for fx w malunion|Oth fx fourth MC bone, right hand, subs for fx w malunion +C2851928|T037|AB|S62.394S|ICD10CM|Oth fracture of fourth metacarpal bone, right hand, sequela|Oth fracture of fourth metacarpal bone, right hand, sequela +C2851928|T037|PT|S62.394S|ICD10CM|Other fracture of fourth metacarpal bone, right hand, sequela|Other fracture of fourth metacarpal bone, right hand, sequela +C2851929|T037|AB|S62.395|ICD10CM|Other fracture of fourth metacarpal bone, left hand|Other fracture of fourth metacarpal bone, left hand +C2851929|T037|HT|S62.395|ICD10CM|Other fracture of fourth metacarpal bone, left hand|Other fracture of fourth metacarpal bone, left hand +C2851930|T037|AB|S62.395A|ICD10CM|Oth fracture of fourth metacarpal bone, left hand, init|Oth fracture of fourth metacarpal bone, left hand, init +C2851930|T037|PT|S62.395A|ICD10CM|Other fracture of fourth metacarpal bone, left hand, initial encounter for closed fracture|Other fracture of fourth metacarpal bone, left hand, initial encounter for closed fracture +C2851931|T037|AB|S62.395B|ICD10CM|Oth fx fourth metacarpal bone, left hand, init for opn fx|Oth fx fourth metacarpal bone, left hand, init for opn fx +C2851931|T037|PT|S62.395B|ICD10CM|Other fracture of fourth metacarpal bone, left hand, initial encounter for open fracture|Other fracture of fourth metacarpal bone, left hand, initial encounter for open fracture +C2851932|T037|AB|S62.395D|ICD10CM|Oth fx fourth MC bone, left hand, subs for fx w routn heal|Oth fx fourth MC bone, left hand, subs for fx w routn heal +C2851933|T037|AB|S62.395G|ICD10CM|Oth fx fourth MC bone, left hand, subs for fx w delay heal|Oth fx fourth MC bone, left hand, subs for fx w delay heal +C2851934|T037|AB|S62.395K|ICD10CM|Oth fx fourth MC bone, left hand, subs for fx w nonunion|Oth fx fourth MC bone, left hand, subs for fx w nonunion +C2851934|T037|PT|S62.395K|ICD10CM|Other fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion|Other fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion +C2851935|T037|AB|S62.395P|ICD10CM|Oth fx fourth MC bone, left hand, subs for fx w malunion|Oth fx fourth MC bone, left hand, subs for fx w malunion +C2851935|T037|PT|S62.395P|ICD10CM|Other fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion|Other fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion +C2851936|T037|AB|S62.395S|ICD10CM|Other fracture of fourth metacarpal bone, left hand, sequela|Other fracture of fourth metacarpal bone, left hand, sequela +C2851936|T037|PT|S62.395S|ICD10CM|Other fracture of fourth metacarpal bone, left hand, sequela|Other fracture of fourth metacarpal bone, left hand, sequela +C2851937|T037|AB|S62.396|ICD10CM|Other fracture of fifth metacarpal bone, right hand|Other fracture of fifth metacarpal bone, right hand +C2851937|T037|HT|S62.396|ICD10CM|Other fracture of fifth metacarpal bone, right hand|Other fracture of fifth metacarpal bone, right hand +C2851938|T037|AB|S62.396A|ICD10CM|Oth fracture of fifth metacarpal bone, right hand, init|Oth fracture of fifth metacarpal bone, right hand, init +C2851938|T037|PT|S62.396A|ICD10CM|Other fracture of fifth metacarpal bone, right hand, initial encounter for closed fracture|Other fracture of fifth metacarpal bone, right hand, initial encounter for closed fracture +C2851939|T037|AB|S62.396B|ICD10CM|Oth fx fifth metacarpal bone, right hand, init for opn fx|Oth fx fifth metacarpal bone, right hand, init for opn fx +C2851939|T037|PT|S62.396B|ICD10CM|Other fracture of fifth metacarpal bone, right hand, initial encounter for open fracture|Other fracture of fifth metacarpal bone, right hand, initial encounter for open fracture +C2851940|T037|AB|S62.396D|ICD10CM|Oth fx fifth MC bone, right hand, subs for fx w routn heal|Oth fx fifth MC bone, right hand, subs for fx w routn heal +C2851941|T037|AB|S62.396G|ICD10CM|Oth fx fifth MC bone, right hand, subs for fx w delay heal|Oth fx fifth MC bone, right hand, subs for fx w delay heal +C2851942|T037|AB|S62.396K|ICD10CM|Oth fx fifth MC bone, right hand, subs for fx w nonunion|Oth fx fifth MC bone, right hand, subs for fx w nonunion +C2851942|T037|PT|S62.396K|ICD10CM|Other fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion|Other fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion +C2851943|T037|AB|S62.396P|ICD10CM|Oth fx fifth MC bone, right hand, subs for fx w malunion|Oth fx fifth MC bone, right hand, subs for fx w malunion +C2851943|T037|PT|S62.396P|ICD10CM|Other fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion|Other fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion +C2851944|T037|AB|S62.396S|ICD10CM|Other fracture of fifth metacarpal bone, right hand, sequela|Other fracture of fifth metacarpal bone, right hand, sequela +C2851944|T037|PT|S62.396S|ICD10CM|Other fracture of fifth metacarpal bone, right hand, sequela|Other fracture of fifth metacarpal bone, right hand, sequela +C2851945|T037|AB|S62.397|ICD10CM|Other fracture of fifth metacarpal bone, left hand|Other fracture of fifth metacarpal bone, left hand +C2851945|T037|HT|S62.397|ICD10CM|Other fracture of fifth metacarpal bone, left hand|Other fracture of fifth metacarpal bone, left hand +C2851946|T037|AB|S62.397A|ICD10CM|Oth fracture of fifth metacarpal bone, left hand, init|Oth fracture of fifth metacarpal bone, left hand, init +C2851946|T037|PT|S62.397A|ICD10CM|Other fracture of fifth metacarpal bone, left hand, initial encounter for closed fracture|Other fracture of fifth metacarpal bone, left hand, initial encounter for closed fracture +C2851947|T037|AB|S62.397B|ICD10CM|Oth fx fifth metacarpal bone, left hand, init for opn fx|Oth fx fifth metacarpal bone, left hand, init for opn fx +C2851947|T037|PT|S62.397B|ICD10CM|Other fracture of fifth metacarpal bone, left hand, initial encounter for open fracture|Other fracture of fifth metacarpal bone, left hand, initial encounter for open fracture +C2851948|T037|AB|S62.397D|ICD10CM|Oth fx fifth MC bone, left hand, subs for fx w routn heal|Oth fx fifth MC bone, left hand, subs for fx w routn heal +C2851949|T037|AB|S62.397G|ICD10CM|Oth fx fifth MC bone, left hand, subs for fx w delay heal|Oth fx fifth MC bone, left hand, subs for fx w delay heal +C2851950|T037|AB|S62.397K|ICD10CM|Oth fx fifth MC bone, left hand, subs for fx w nonunion|Oth fx fifth MC bone, left hand, subs for fx w nonunion +C2851950|T037|PT|S62.397K|ICD10CM|Other fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion|Other fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion +C2851951|T037|AB|S62.397P|ICD10CM|Oth fx fifth MC bone, left hand, subs for fx w malunion|Oth fx fifth MC bone, left hand, subs for fx w malunion +C2851951|T037|PT|S62.397P|ICD10CM|Other fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion|Other fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion +C2851952|T037|PT|S62.397S|ICD10CM|Other fracture of fifth metacarpal bone, left hand, sequela|Other fracture of fifth metacarpal bone, left hand, sequela +C2851952|T037|AB|S62.397S|ICD10CM|Other fracture of fifth metacarpal bone, left hand, sequela|Other fracture of fifth metacarpal bone, left hand, sequela +C2851888|T037|AB|S62.398|ICD10CM|Other fracture of other metacarpal bone|Other fracture of other metacarpal bone +C2851888|T037|HT|S62.398|ICD10CM|Other fracture of other metacarpal bone|Other fracture of other metacarpal bone +C2851953|T037|ET|S62.398|ICD10CM|Other fracture of specified metacarpal bone with unspecified laterality|Other fracture of specified metacarpal bone with unspecified laterality +C2851954|T037|AB|S62.398A|ICD10CM|Oth fracture of oth metacarpal bone, init for clos fx|Oth fracture of oth metacarpal bone, init for clos fx +C2851954|T037|PT|S62.398A|ICD10CM|Other fracture of other metacarpal bone, initial encounter for closed fracture|Other fracture of other metacarpal bone, initial encounter for closed fracture +C2851955|T037|AB|S62.398B|ICD10CM|Oth fracture of oth metacarpal bone, init for opn fx|Oth fracture of oth metacarpal bone, init for opn fx +C2851955|T037|PT|S62.398B|ICD10CM|Other fracture of other metacarpal bone, initial encounter for open fracture|Other fracture of other metacarpal bone, initial encounter for open fracture +C2851956|T037|AB|S62.398D|ICD10CM|Oth fracture of metacarpal bone, subs for fx w routn heal|Oth fracture of metacarpal bone, subs for fx w routn heal +C2851956|T037|PT|S62.398D|ICD10CM|Other fracture of other metacarpal bone, subsequent encounter for fracture with routine healing|Other fracture of other metacarpal bone, subsequent encounter for fracture with routine healing +C2851957|T037|AB|S62.398G|ICD10CM|Oth fracture of metacarpal bone, subs for fx w delay heal|Oth fracture of metacarpal bone, subs for fx w delay heal +C2851957|T037|PT|S62.398G|ICD10CM|Other fracture of other metacarpal bone, subsequent encounter for fracture with delayed healing|Other fracture of other metacarpal bone, subsequent encounter for fracture with delayed healing +C2851958|T037|AB|S62.398K|ICD10CM|Oth fracture of oth metacarpal bone, subs for fx w nonunion|Oth fracture of oth metacarpal bone, subs for fx w nonunion +C2851958|T037|PT|S62.398K|ICD10CM|Other fracture of other metacarpal bone, subsequent encounter for fracture with nonunion|Other fracture of other metacarpal bone, subsequent encounter for fracture with nonunion +C2851959|T037|AB|S62.398P|ICD10CM|Oth fracture of oth metacarpal bone, subs for fx w malunion|Oth fracture of oth metacarpal bone, subs for fx w malunion +C2851959|T037|PT|S62.398P|ICD10CM|Other fracture of other metacarpal bone, subsequent encounter for fracture with malunion|Other fracture of other metacarpal bone, subsequent encounter for fracture with malunion +C2851960|T037|PT|S62.398S|ICD10CM|Other fracture of other metacarpal bone, sequela|Other fracture of other metacarpal bone, sequela +C2851960|T037|AB|S62.398S|ICD10CM|Other fracture of other metacarpal bone, sequela|Other fracture of other metacarpal bone, sequela +C2851961|T037|AB|S62.399|ICD10CM|Other fracture of unspecified metacarpal bone|Other fracture of unspecified metacarpal bone +C2851961|T037|HT|S62.399|ICD10CM|Other fracture of unspecified metacarpal bone|Other fracture of unspecified metacarpal bone +C2851962|T037|AB|S62.399A|ICD10CM|Oth fracture of unsp metacarpal bone, init for clos fx|Oth fracture of unsp metacarpal bone, init for clos fx +C2851962|T037|PT|S62.399A|ICD10CM|Other fracture of unspecified metacarpal bone, initial encounter for closed fracture|Other fracture of unspecified metacarpal bone, initial encounter for closed fracture +C2851963|T037|AB|S62.399B|ICD10CM|Oth fracture of unsp metacarpal bone, init for opn fx|Oth fracture of unsp metacarpal bone, init for opn fx +C2851963|T037|PT|S62.399B|ICD10CM|Other fracture of unspecified metacarpal bone, initial encounter for open fracture|Other fracture of unspecified metacarpal bone, initial encounter for open fracture +C2851964|T037|AB|S62.399D|ICD10CM|Oth fx unsp metacarpal bone, subs for fx w routn heal|Oth fx unsp metacarpal bone, subs for fx w routn heal +C2851965|T037|AB|S62.399G|ICD10CM|Oth fx unsp metacarpal bone, subs for fx w delay heal|Oth fx unsp metacarpal bone, subs for fx w delay heal +C2851966|T037|AB|S62.399K|ICD10CM|Oth fracture of unsp metacarpal bone, subs for fx w nonunion|Oth fracture of unsp metacarpal bone, subs for fx w nonunion +C2851966|T037|PT|S62.399K|ICD10CM|Other fracture of unspecified metacarpal bone, subsequent encounter for fracture with nonunion|Other fracture of unspecified metacarpal bone, subsequent encounter for fracture with nonunion +C2851967|T037|AB|S62.399P|ICD10CM|Oth fracture of unsp metacarpal bone, subs for fx w malunion|Oth fracture of unsp metacarpal bone, subs for fx w malunion +C2851967|T037|PT|S62.399P|ICD10CM|Other fracture of unspecified metacarpal bone, subsequent encounter for fracture with malunion|Other fracture of unspecified metacarpal bone, subsequent encounter for fracture with malunion +C2851968|T037|AB|S62.399S|ICD10CM|Other fracture of unspecified metacarpal bone, sequela|Other fracture of unspecified metacarpal bone, sequela +C2851968|T037|PT|S62.399S|ICD10CM|Other fracture of unspecified metacarpal bone, sequela|Other fracture of unspecified metacarpal bone, sequela +C0452085|T037|PT|S62.4|ICD10|Multiple fractures of metacarpal bones|Multiple fractures of metacarpal bones +C0555337|T037|PT|S62.5|ICD10|Fracture of thumb|Fracture of thumb +C0555337|T037|HT|S62.5|ICD10CM|Fracture of thumb|Fracture of thumb +C0555337|T037|AB|S62.5|ICD10CM|Fracture of thumb|Fracture of thumb +C2851969|T037|AB|S62.50|ICD10CM|Fracture of unspecified phalanx of thumb|Fracture of unspecified phalanx of thumb +C2851969|T037|HT|S62.50|ICD10CM|Fracture of unspecified phalanx of thumb|Fracture of unspecified phalanx of thumb +C2851970|T037|AB|S62.501|ICD10CM|Fracture of unspecified phalanx of right thumb|Fracture of unspecified phalanx of right thumb +C2851970|T037|HT|S62.501|ICD10CM|Fracture of unspecified phalanx of right thumb|Fracture of unspecified phalanx of right thumb +C2851971|T037|AB|S62.501A|ICD10CM|Fracture of unsp phalanx of right thumb, init for clos fx|Fracture of unsp phalanx of right thumb, init for clos fx +C2851971|T037|PT|S62.501A|ICD10CM|Fracture of unspecified phalanx of right thumb, initial encounter for closed fracture|Fracture of unspecified phalanx of right thumb, initial encounter for closed fracture +C2851972|T037|AB|S62.501B|ICD10CM|Fracture of unsp phalanx of right thumb, init for opn fx|Fracture of unsp phalanx of right thumb, init for opn fx +C2851972|T037|PT|S62.501B|ICD10CM|Fracture of unspecified phalanx of right thumb, initial encounter for open fracture|Fracture of unspecified phalanx of right thumb, initial encounter for open fracture +C2851973|T037|AB|S62.501D|ICD10CM|Fx unsp phalanx of right thumb, subs for fx w routn heal|Fx unsp phalanx of right thumb, subs for fx w routn heal +C2851974|T037|AB|S62.501G|ICD10CM|Fx unsp phalanx of right thumb, subs for fx w delay heal|Fx unsp phalanx of right thumb, subs for fx w delay heal +C2851975|T037|PT|S62.501K|ICD10CM|Fracture of unspecified phalanx of right thumb, subsequent encounter for fracture with nonunion|Fracture of unspecified phalanx of right thumb, subsequent encounter for fracture with nonunion +C2851975|T037|AB|S62.501K|ICD10CM|Fx unsp phalanx of right thumb, subs for fx w nonunion|Fx unsp phalanx of right thumb, subs for fx w nonunion +C2851976|T037|PT|S62.501P|ICD10CM|Fracture of unspecified phalanx of right thumb, subsequent encounter for fracture with malunion|Fracture of unspecified phalanx of right thumb, subsequent encounter for fracture with malunion +C2851976|T037|AB|S62.501P|ICD10CM|Fx unsp phalanx of right thumb, subs for fx w malunion|Fx unsp phalanx of right thumb, subs for fx w malunion +C2851977|T037|AB|S62.501S|ICD10CM|Fracture of unspecified phalanx of right thumb, sequela|Fracture of unspecified phalanx of right thumb, sequela +C2851977|T037|PT|S62.501S|ICD10CM|Fracture of unspecified phalanx of right thumb, sequela|Fracture of unspecified phalanx of right thumb, sequela +C2851978|T037|AB|S62.502|ICD10CM|Fracture of unspecified phalanx of left thumb|Fracture of unspecified phalanx of left thumb +C2851978|T037|HT|S62.502|ICD10CM|Fracture of unspecified phalanx of left thumb|Fracture of unspecified phalanx of left thumb +C2851979|T037|AB|S62.502A|ICD10CM|Fracture of unsp phalanx of left thumb, init for clos fx|Fracture of unsp phalanx of left thumb, init for clos fx +C2851979|T037|PT|S62.502A|ICD10CM|Fracture of unspecified phalanx of left thumb, initial encounter for closed fracture|Fracture of unspecified phalanx of left thumb, initial encounter for closed fracture +C2851980|T037|AB|S62.502B|ICD10CM|Fracture of unsp phalanx of left thumb, init for opn fx|Fracture of unsp phalanx of left thumb, init for opn fx +C2851980|T037|PT|S62.502B|ICD10CM|Fracture of unspecified phalanx of left thumb, initial encounter for open fracture|Fracture of unspecified phalanx of left thumb, initial encounter for open fracture +C2851981|T037|AB|S62.502D|ICD10CM|Fx unsp phalanx of left thumb, subs for fx w routn heal|Fx unsp phalanx of left thumb, subs for fx w routn heal +C2851982|T037|AB|S62.502G|ICD10CM|Fx unsp phalanx of left thumb, subs for fx w delay heal|Fx unsp phalanx of left thumb, subs for fx w delay heal +C2851983|T037|PT|S62.502K|ICD10CM|Fracture of unspecified phalanx of left thumb, subsequent encounter for fracture with nonunion|Fracture of unspecified phalanx of left thumb, subsequent encounter for fracture with nonunion +C2851983|T037|AB|S62.502K|ICD10CM|Fx unsp phalanx of left thumb, subs for fx w nonunion|Fx unsp phalanx of left thumb, subs for fx w nonunion +C2851984|T037|PT|S62.502P|ICD10CM|Fracture of unspecified phalanx of left thumb, subsequent encounter for fracture with malunion|Fracture of unspecified phalanx of left thumb, subsequent encounter for fracture with malunion +C2851984|T037|AB|S62.502P|ICD10CM|Fx unsp phalanx of left thumb, subs for fx w malunion|Fx unsp phalanx of left thumb, subs for fx w malunion +C2851985|T037|AB|S62.502S|ICD10CM|Fracture of unspecified phalanx of left thumb, sequela|Fracture of unspecified phalanx of left thumb, sequela +C2851985|T037|PT|S62.502S|ICD10CM|Fracture of unspecified phalanx of left thumb, sequela|Fracture of unspecified phalanx of left thumb, sequela +C2851986|T037|AB|S62.509|ICD10CM|Fracture of unspecified phalanx of unspecified thumb|Fracture of unspecified phalanx of unspecified thumb +C2851986|T037|HT|S62.509|ICD10CM|Fracture of unspecified phalanx of unspecified thumb|Fracture of unspecified phalanx of unspecified thumb +C2851987|T037|AB|S62.509A|ICD10CM|Fracture of unsp phalanx of unsp thumb, init for clos fx|Fracture of unsp phalanx of unsp thumb, init for clos fx +C2851987|T037|PT|S62.509A|ICD10CM|Fracture of unspecified phalanx of unspecified thumb, initial encounter for closed fracture|Fracture of unspecified phalanx of unspecified thumb, initial encounter for closed fracture +C2851988|T037|AB|S62.509B|ICD10CM|Fracture of unsp phalanx of unsp thumb, init for opn fx|Fracture of unsp phalanx of unsp thumb, init for opn fx +C2851988|T037|PT|S62.509B|ICD10CM|Fracture of unspecified phalanx of unspecified thumb, initial encounter for open fracture|Fracture of unspecified phalanx of unspecified thumb, initial encounter for open fracture +C2851989|T037|AB|S62.509D|ICD10CM|Fracture of unsp phalanx of thmb, subs for fx w routn heal|Fracture of unsp phalanx of thmb, subs for fx w routn heal +C2851990|T037|AB|S62.509G|ICD10CM|Fracture of unsp phalanx of thmb, subs for fx w delay heal|Fracture of unsp phalanx of thmb, subs for fx w delay heal +C2851991|T037|AB|S62.509K|ICD10CM|Fracture of unsp phalanx of thmb, subs for fx w nonunion|Fracture of unsp phalanx of thmb, subs for fx w nonunion +C2851992|T037|AB|S62.509P|ICD10CM|Fracture of unsp phalanx of thmb, subs for fx w malunion|Fracture of unsp phalanx of thmb, subs for fx w malunion +C2851993|T037|AB|S62.509S|ICD10CM|Fracture of unsp phalanx of unspecified thumb, sequela|Fracture of unsp phalanx of unspecified thumb, sequela +C2851993|T037|PT|S62.509S|ICD10CM|Fracture of unspecified phalanx of unspecified thumb, sequela|Fracture of unspecified phalanx of unspecified thumb, sequela +C0573990|T037|HT|S62.51|ICD10CM|Fracture of proximal phalanx of thumb|Fracture of proximal phalanx of thumb +C0573990|T037|AB|S62.51|ICD10CM|Fracture of proximal phalanx of thumb|Fracture of proximal phalanx of thumb +C2851994|T037|HT|S62.511|ICD10CM|Displaced fracture of proximal phalanx of right thumb|Displaced fracture of proximal phalanx of right thumb +C2851994|T037|AB|S62.511|ICD10CM|Displaced fracture of proximal phalanx of right thumb|Displaced fracture of proximal phalanx of right thumb +C2851995|T037|AB|S62.511A|ICD10CM|Disp fx of proximal phalanx of right thumb, init for clos fx|Disp fx of proximal phalanx of right thumb, init for clos fx +C2851995|T037|PT|S62.511A|ICD10CM|Displaced fracture of proximal phalanx of right thumb, initial encounter for closed fracture|Displaced fracture of proximal phalanx of right thumb, initial encounter for closed fracture +C2851996|T037|AB|S62.511B|ICD10CM|Disp fx of proximal phalanx of right thumb, init for opn fx|Disp fx of proximal phalanx of right thumb, init for opn fx +C2851996|T037|PT|S62.511B|ICD10CM|Displaced fracture of proximal phalanx of right thumb, initial encounter for open fracture|Displaced fracture of proximal phalanx of right thumb, initial encounter for open fracture +C2851997|T037|AB|S62.511D|ICD10CM|Disp fx of prox phalanx of r thm, subs for fx w routn heal|Disp fx of prox phalanx of r thm, subs for fx w routn heal +C2851998|T037|AB|S62.511G|ICD10CM|Disp fx of prox phalanx of r thm, subs for fx w delay heal|Disp fx of prox phalanx of r thm, subs for fx w delay heal +C2851999|T037|AB|S62.511K|ICD10CM|Disp fx of proximal phalanx of r thm, subs for fx w nonunion|Disp fx of proximal phalanx of r thm, subs for fx w nonunion +C2852000|T037|AB|S62.511P|ICD10CM|Disp fx of proximal phalanx of r thm, subs for fx w malunion|Disp fx of proximal phalanx of r thm, subs for fx w malunion +C2852001|T037|AB|S62.511S|ICD10CM|Disp fx of proximal phalanx of right thumb, sequela|Disp fx of proximal phalanx of right thumb, sequela +C2852001|T037|PT|S62.511S|ICD10CM|Displaced fracture of proximal phalanx of right thumb, sequela|Displaced fracture of proximal phalanx of right thumb, sequela +C2852002|T037|HT|S62.512|ICD10CM|Displaced fracture of proximal phalanx of left thumb|Displaced fracture of proximal phalanx of left thumb +C2852002|T037|AB|S62.512|ICD10CM|Displaced fracture of proximal phalanx of left thumb|Displaced fracture of proximal phalanx of left thumb +C2852003|T037|AB|S62.512A|ICD10CM|Disp fx of proximal phalanx of left thumb, init for clos fx|Disp fx of proximal phalanx of left thumb, init for clos fx +C2852003|T037|PT|S62.512A|ICD10CM|Displaced fracture of proximal phalanx of left thumb, initial encounter for closed fracture|Displaced fracture of proximal phalanx of left thumb, initial encounter for closed fracture +C2852004|T037|AB|S62.512B|ICD10CM|Disp fx of proximal phalanx of left thumb, init for opn fx|Disp fx of proximal phalanx of left thumb, init for opn fx +C2852004|T037|PT|S62.512B|ICD10CM|Displaced fracture of proximal phalanx of left thumb, initial encounter for open fracture|Displaced fracture of proximal phalanx of left thumb, initial encounter for open fracture +C2852005|T037|AB|S62.512D|ICD10CM|Disp fx of prox phalanx of l thm, subs for fx w routn heal|Disp fx of prox phalanx of l thm, subs for fx w routn heal +C2852006|T037|AB|S62.512G|ICD10CM|Disp fx of prox phalanx of l thm, subs for fx w delay heal|Disp fx of prox phalanx of l thm, subs for fx w delay heal +C2852007|T037|AB|S62.512K|ICD10CM|Disp fx of proximal phalanx of l thm, subs for fx w nonunion|Disp fx of proximal phalanx of l thm, subs for fx w nonunion +C2852008|T037|AB|S62.512P|ICD10CM|Disp fx of proximal phalanx of l thm, subs for fx w malunion|Disp fx of proximal phalanx of l thm, subs for fx w malunion +C2852009|T037|AB|S62.512S|ICD10CM|Disp fx of proximal phalanx of left thumb, sequela|Disp fx of proximal phalanx of left thumb, sequela +C2852009|T037|PT|S62.512S|ICD10CM|Displaced fracture of proximal phalanx of left thumb, sequela|Displaced fracture of proximal phalanx of left thumb, sequela +C2852010|T037|AB|S62.513|ICD10CM|Displaced fracture of proximal phalanx of unspecified thumb|Displaced fracture of proximal phalanx of unspecified thumb +C2852010|T037|HT|S62.513|ICD10CM|Displaced fracture of proximal phalanx of unspecified thumb|Displaced fracture of proximal phalanx of unspecified thumb +C2852011|T037|AB|S62.513A|ICD10CM|Disp fx of proximal phalanx of unsp thumb, init for clos fx|Disp fx of proximal phalanx of unsp thumb, init for clos fx +C2852011|T037|PT|S62.513A|ICD10CM|Displaced fracture of proximal phalanx of unspecified thumb, initial encounter for closed fracture|Displaced fracture of proximal phalanx of unspecified thumb, initial encounter for closed fracture +C2852012|T037|AB|S62.513B|ICD10CM|Disp fx of proximal phalanx of unsp thumb, init for opn fx|Disp fx of proximal phalanx of unsp thumb, init for opn fx +C2852012|T037|PT|S62.513B|ICD10CM|Displaced fracture of proximal phalanx of unspecified thumb, initial encounter for open fracture|Displaced fracture of proximal phalanx of unspecified thumb, initial encounter for open fracture +C2852013|T037|AB|S62.513D|ICD10CM|Disp fx of prox phalanx of thmb, subs for fx w routn heal|Disp fx of prox phalanx of thmb, subs for fx w routn heal +C2852014|T037|AB|S62.513G|ICD10CM|Disp fx of prox phalanx of thmb, subs for fx w delay heal|Disp fx of prox phalanx of thmb, subs for fx w delay heal +C2852015|T037|AB|S62.513K|ICD10CM|Disp fx of proximal phalanx of thmb, subs for fx w nonunion|Disp fx of proximal phalanx of thmb, subs for fx w nonunion +C2852016|T037|AB|S62.513P|ICD10CM|Disp fx of proximal phalanx of thmb, subs for fx w malunion|Disp fx of proximal phalanx of thmb, subs for fx w malunion +C2852017|T037|AB|S62.513S|ICD10CM|Disp fx of proximal phalanx of unspecified thumb, sequela|Disp fx of proximal phalanx of unspecified thumb, sequela +C2852017|T037|PT|S62.513S|ICD10CM|Displaced fracture of proximal phalanx of unspecified thumb, sequela|Displaced fracture of proximal phalanx of unspecified thumb, sequela +C2852018|T037|AB|S62.514|ICD10CM|Nondisplaced fracture of proximal phalanx of right thumb|Nondisplaced fracture of proximal phalanx of right thumb +C2852018|T037|HT|S62.514|ICD10CM|Nondisplaced fracture of proximal phalanx of right thumb|Nondisplaced fracture of proximal phalanx of right thumb +C2852019|T037|AB|S62.514A|ICD10CM|Nondisp fx of proximal phalanx of right thumb, init|Nondisp fx of proximal phalanx of right thumb, init +C2852019|T037|PT|S62.514A|ICD10CM|Nondisplaced fracture of proximal phalanx of right thumb, initial encounter for closed fracture|Nondisplaced fracture of proximal phalanx of right thumb, initial encounter for closed fracture +C2852020|T037|AB|S62.514B|ICD10CM|Nondisp fx of proximal phalanx of r thm, init for opn fx|Nondisp fx of proximal phalanx of r thm, init for opn fx +C2852020|T037|PT|S62.514B|ICD10CM|Nondisplaced fracture of proximal phalanx of right thumb, initial encounter for open fracture|Nondisplaced fracture of proximal phalanx of right thumb, initial encounter for open fracture +C2852021|T037|AB|S62.514D|ICD10CM|Nondisp fx of prox phalanx of r thm, 7thD|Nondisp fx of prox phalanx of r thm, 7thD +C2852022|T037|AB|S62.514G|ICD10CM|Nondisp fx of prox phalanx of r thm, 7thG|Nondisp fx of prox phalanx of r thm, 7thG +C2852023|T037|AB|S62.514K|ICD10CM|Nondisp fx of prox phalanx of r thm, subs for fx w nonunion|Nondisp fx of prox phalanx of r thm, subs for fx w nonunion +C2852024|T037|AB|S62.514P|ICD10CM|Nondisp fx of prox phalanx of r thm, subs for fx w malunion|Nondisp fx of prox phalanx of r thm, subs for fx w malunion +C2852025|T037|AB|S62.514S|ICD10CM|Nondisp fx of proximal phalanx of right thumb, sequela|Nondisp fx of proximal phalanx of right thumb, sequela +C2852025|T037|PT|S62.514S|ICD10CM|Nondisplaced fracture of proximal phalanx of right thumb, sequela|Nondisplaced fracture of proximal phalanx of right thumb, sequela +C2852026|T037|AB|S62.515|ICD10CM|Nondisplaced fracture of proximal phalanx of left thumb|Nondisplaced fracture of proximal phalanx of left thumb +C2852026|T037|HT|S62.515|ICD10CM|Nondisplaced fracture of proximal phalanx of left thumb|Nondisplaced fracture of proximal phalanx of left thumb +C2852027|T037|AB|S62.515A|ICD10CM|Nondisp fx of proximal phalanx of left thumb, init|Nondisp fx of proximal phalanx of left thumb, init +C2852027|T037|PT|S62.515A|ICD10CM|Nondisplaced fracture of proximal phalanx of left thumb, initial encounter for closed fracture|Nondisplaced fracture of proximal phalanx of left thumb, initial encounter for closed fracture +C2852028|T037|AB|S62.515B|ICD10CM|Nondisp fx of proximal phalanx of l thm, init for opn fx|Nondisp fx of proximal phalanx of l thm, init for opn fx +C2852028|T037|PT|S62.515B|ICD10CM|Nondisplaced fracture of proximal phalanx of left thumb, initial encounter for open fracture|Nondisplaced fracture of proximal phalanx of left thumb, initial encounter for open fracture +C2852029|T037|AB|S62.515D|ICD10CM|Nondisp fx of prox phalanx of l thm, 7thD|Nondisp fx of prox phalanx of l thm, 7thD +C2852030|T037|AB|S62.515G|ICD10CM|Nondisp fx of prox phalanx of l thm, 7thG|Nondisp fx of prox phalanx of l thm, 7thG +C2852031|T037|AB|S62.515K|ICD10CM|Nondisp fx of prox phalanx of l thm, subs for fx w nonunion|Nondisp fx of prox phalanx of l thm, subs for fx w nonunion +C2852032|T037|AB|S62.515P|ICD10CM|Nondisp fx of prox phalanx of l thm, subs for fx w malunion|Nondisp fx of prox phalanx of l thm, subs for fx w malunion +C2852033|T037|AB|S62.515S|ICD10CM|Nondisp fx of proximal phalanx of left thumb, sequela|Nondisp fx of proximal phalanx of left thumb, sequela +C2852033|T037|PT|S62.515S|ICD10CM|Nondisplaced fracture of proximal phalanx of left thumb, sequela|Nondisplaced fracture of proximal phalanx of left thumb, sequela +C2852034|T037|AB|S62.516|ICD10CM|Nondisp fx of proximal phalanx of unspecified thumb|Nondisp fx of proximal phalanx of unspecified thumb +C2852034|T037|HT|S62.516|ICD10CM|Nondisplaced fracture of proximal phalanx of unspecified thumb|Nondisplaced fracture of proximal phalanx of unspecified thumb +C2852035|T037|AB|S62.516A|ICD10CM|Nondisp fx of proximal phalanx of unsp thumb, init|Nondisp fx of proximal phalanx of unsp thumb, init +C2852036|T037|AB|S62.516B|ICD10CM|Nondisp fx of proximal phalanx of thmb, init for opn fx|Nondisp fx of proximal phalanx of thmb, init for opn fx +C2852036|T037|PT|S62.516B|ICD10CM|Nondisplaced fracture of proximal phalanx of unspecified thumb, initial encounter for open fracture|Nondisplaced fracture of proximal phalanx of unspecified thumb, initial encounter for open fracture +C2852037|T037|AB|S62.516D|ICD10CM|Nondisp fx of prox phalanx of thmb, subs for fx w routn heal|Nondisp fx of prox phalanx of thmb, subs for fx w routn heal +C2852038|T037|AB|S62.516G|ICD10CM|Nondisp fx of prox phalanx of thmb, subs for fx w delay heal|Nondisp fx of prox phalanx of thmb, subs for fx w delay heal +C2852039|T037|AB|S62.516K|ICD10CM|Nondisp fx of prox phalanx of thmb, subs for fx w nonunion|Nondisp fx of prox phalanx of thmb, subs for fx w nonunion +C2852040|T037|AB|S62.516P|ICD10CM|Nondisp fx of prox phalanx of thmb, subs for fx w malunion|Nondisp fx of prox phalanx of thmb, subs for fx w malunion +C2852041|T037|AB|S62.516S|ICD10CM|Nondisp fx of proximal phalanx of unspecified thumb, sequela|Nondisp fx of proximal phalanx of unspecified thumb, sequela +C2852041|T037|PT|S62.516S|ICD10CM|Nondisplaced fracture of proximal phalanx of unspecified thumb, sequela|Nondisplaced fracture of proximal phalanx of unspecified thumb, sequela +C0573989|T037|HT|S62.52|ICD10CM|Fracture of distal phalanx of thumb|Fracture of distal phalanx of thumb +C0573989|T037|AB|S62.52|ICD10CM|Fracture of distal phalanx of thumb|Fracture of distal phalanx of thumb +C2852042|T037|AB|S62.521|ICD10CM|Displaced fracture of distal phalanx of right thumb|Displaced fracture of distal phalanx of right thumb +C2852042|T037|HT|S62.521|ICD10CM|Displaced fracture of distal phalanx of right thumb|Displaced fracture of distal phalanx of right thumb +C2852043|T037|AB|S62.521A|ICD10CM|Disp fx of distal phalanx of right thumb, init for clos fx|Disp fx of distal phalanx of right thumb, init for clos fx +C2852043|T037|PT|S62.521A|ICD10CM|Displaced fracture of distal phalanx of right thumb, initial encounter for closed fracture|Displaced fracture of distal phalanx of right thumb, initial encounter for closed fracture +C2852044|T037|AB|S62.521B|ICD10CM|Disp fx of distal phalanx of right thumb, init for opn fx|Disp fx of distal phalanx of right thumb, init for opn fx +C2852044|T037|PT|S62.521B|ICD10CM|Displaced fracture of distal phalanx of right thumb, initial encounter for open fracture|Displaced fracture of distal phalanx of right thumb, initial encounter for open fracture +C2852045|T037|AB|S62.521D|ICD10CM|Disp fx of distal phalanx of r thm, subs for fx w routn heal|Disp fx of distal phalanx of r thm, subs for fx w routn heal +C2852046|T037|AB|S62.521G|ICD10CM|Disp fx of distal phalanx of r thm, subs for fx w delay heal|Disp fx of distal phalanx of r thm, subs for fx w delay heal +C2852047|T037|AB|S62.521K|ICD10CM|Disp fx of distal phalanx of r thm, subs for fx w nonunion|Disp fx of distal phalanx of r thm, subs for fx w nonunion +C2852047|T037|PT|S62.521K|ICD10CM|Displaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with nonunion|Displaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with nonunion +C2852048|T037|AB|S62.521P|ICD10CM|Disp fx of distal phalanx of r thm, subs for fx w malunion|Disp fx of distal phalanx of r thm, subs for fx w malunion +C2852048|T037|PT|S62.521P|ICD10CM|Displaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with malunion|Displaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with malunion +C2852049|T037|AB|S62.521S|ICD10CM|Displaced fracture of distal phalanx of right thumb, sequela|Displaced fracture of distal phalanx of right thumb, sequela +C2852049|T037|PT|S62.521S|ICD10CM|Displaced fracture of distal phalanx of right thumb, sequela|Displaced fracture of distal phalanx of right thumb, sequela +C2852050|T037|AB|S62.522|ICD10CM|Displaced fracture of distal phalanx of left thumb|Displaced fracture of distal phalanx of left thumb +C2852050|T037|HT|S62.522|ICD10CM|Displaced fracture of distal phalanx of left thumb|Displaced fracture of distal phalanx of left thumb +C2852051|T037|AB|S62.522A|ICD10CM|Disp fx of distal phalanx of left thumb, init for clos fx|Disp fx of distal phalanx of left thumb, init for clos fx +C2852051|T037|PT|S62.522A|ICD10CM|Displaced fracture of distal phalanx of left thumb, initial encounter for closed fracture|Displaced fracture of distal phalanx of left thumb, initial encounter for closed fracture +C2852052|T037|AB|S62.522B|ICD10CM|Disp fx of distal phalanx of left thumb, init for opn fx|Disp fx of distal phalanx of left thumb, init for opn fx +C2852052|T037|PT|S62.522B|ICD10CM|Displaced fracture of distal phalanx of left thumb, initial encounter for open fracture|Displaced fracture of distal phalanx of left thumb, initial encounter for open fracture +C2852053|T037|AB|S62.522D|ICD10CM|Disp fx of distal phalanx of l thm, subs for fx w routn heal|Disp fx of distal phalanx of l thm, subs for fx w routn heal +C2852054|T037|AB|S62.522G|ICD10CM|Disp fx of distal phalanx of l thm, subs for fx w delay heal|Disp fx of distal phalanx of l thm, subs for fx w delay heal +C2852055|T037|AB|S62.522K|ICD10CM|Disp fx of distal phalanx of l thm, subs for fx w nonunion|Disp fx of distal phalanx of l thm, subs for fx w nonunion +C2852055|T037|PT|S62.522K|ICD10CM|Displaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with nonunion|Displaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with nonunion +C2852056|T037|AB|S62.522P|ICD10CM|Disp fx of distal phalanx of l thm, subs for fx w malunion|Disp fx of distal phalanx of l thm, subs for fx w malunion +C2852056|T037|PT|S62.522P|ICD10CM|Displaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with malunion|Displaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with malunion +C2852057|T037|PT|S62.522S|ICD10CM|Displaced fracture of distal phalanx of left thumb, sequela|Displaced fracture of distal phalanx of left thumb, sequela +C2852057|T037|AB|S62.522S|ICD10CM|Displaced fracture of distal phalanx of left thumb, sequela|Displaced fracture of distal phalanx of left thumb, sequela +C2852058|T037|AB|S62.523|ICD10CM|Displaced fracture of distal phalanx of unspecified thumb|Displaced fracture of distal phalanx of unspecified thumb +C2852058|T037|HT|S62.523|ICD10CM|Displaced fracture of distal phalanx of unspecified thumb|Displaced fracture of distal phalanx of unspecified thumb +C2852059|T037|AB|S62.523A|ICD10CM|Disp fx of distal phalanx of unsp thumb, init for clos fx|Disp fx of distal phalanx of unsp thumb, init for clos fx +C2852059|T037|PT|S62.523A|ICD10CM|Displaced fracture of distal phalanx of unspecified thumb, initial encounter for closed fracture|Displaced fracture of distal phalanx of unspecified thumb, initial encounter for closed fracture +C2852060|T037|AB|S62.523B|ICD10CM|Disp fx of distal phalanx of unsp thumb, init for opn fx|Disp fx of distal phalanx of unsp thumb, init for opn fx +C2852060|T037|PT|S62.523B|ICD10CM|Displaced fracture of distal phalanx of unspecified thumb, initial encounter for open fracture|Displaced fracture of distal phalanx of unspecified thumb, initial encounter for open fracture +C2852061|T037|AB|S62.523D|ICD10CM|Disp fx of distal phalanx of thmb, subs for fx w routn heal|Disp fx of distal phalanx of thmb, subs for fx w routn heal +C2852062|T037|AB|S62.523G|ICD10CM|Disp fx of distal phalanx of thmb, subs for fx w delay heal|Disp fx of distal phalanx of thmb, subs for fx w delay heal +C2852063|T037|AB|S62.523K|ICD10CM|Disp fx of distal phalanx of thmb, subs for fx w nonunion|Disp fx of distal phalanx of thmb, subs for fx w nonunion +C2852064|T037|AB|S62.523P|ICD10CM|Disp fx of distal phalanx of thmb, subs for fx w malunion|Disp fx of distal phalanx of thmb, subs for fx w malunion +C2852065|T037|AB|S62.523S|ICD10CM|Disp fx of distal phalanx of unspecified thumb, sequela|Disp fx of distal phalanx of unspecified thumb, sequela +C2852065|T037|PT|S62.523S|ICD10CM|Displaced fracture of distal phalanx of unspecified thumb, sequela|Displaced fracture of distal phalanx of unspecified thumb, sequela +C2852066|T037|AB|S62.524|ICD10CM|Nondisplaced fracture of distal phalanx of right thumb|Nondisplaced fracture of distal phalanx of right thumb +C2852066|T037|HT|S62.524|ICD10CM|Nondisplaced fracture of distal phalanx of right thumb|Nondisplaced fracture of distal phalanx of right thumb +C2852067|T037|AB|S62.524A|ICD10CM|Nondisp fx of distal phalanx of right thumb, init|Nondisp fx of distal phalanx of right thumb, init +C2852067|T037|PT|S62.524A|ICD10CM|Nondisplaced fracture of distal phalanx of right thumb, initial encounter for closed fracture|Nondisplaced fracture of distal phalanx of right thumb, initial encounter for closed fracture +C2852068|T037|AB|S62.524B|ICD10CM|Nondisp fx of distal phalanx of right thumb, init for opn fx|Nondisp fx of distal phalanx of right thumb, init for opn fx +C2852068|T037|PT|S62.524B|ICD10CM|Nondisplaced fracture of distal phalanx of right thumb, initial encounter for open fracture|Nondisplaced fracture of distal phalanx of right thumb, initial encounter for open fracture +C2852069|T037|AB|S62.524D|ICD10CM|Nondisp fx of dist phalanx of r thm, 7thD|Nondisp fx of dist phalanx of r thm, 7thD +C2852070|T037|AB|S62.524G|ICD10CM|Nondisp fx of dist phalanx of r thm, 7thG|Nondisp fx of dist phalanx of r thm, 7thG +C2852071|T037|AB|S62.524K|ICD10CM|Nondisp fx of dist phalanx of r thm, subs for fx w nonunion|Nondisp fx of dist phalanx of r thm, subs for fx w nonunion +C2852072|T037|AB|S62.524P|ICD10CM|Nondisp fx of dist phalanx of r thm, subs for fx w malunion|Nondisp fx of dist phalanx of r thm, subs for fx w malunion +C2852073|T037|AB|S62.524S|ICD10CM|Nondisp fx of distal phalanx of right thumb, sequela|Nondisp fx of distal phalanx of right thumb, sequela +C2852073|T037|PT|S62.524S|ICD10CM|Nondisplaced fracture of distal phalanx of right thumb, sequela|Nondisplaced fracture of distal phalanx of right thumb, sequela +C2852074|T037|AB|S62.525|ICD10CM|Nondisplaced fracture of distal phalanx of left thumb|Nondisplaced fracture of distal phalanx of left thumb +C2852074|T037|HT|S62.525|ICD10CM|Nondisplaced fracture of distal phalanx of left thumb|Nondisplaced fracture of distal phalanx of left thumb +C2852075|T037|AB|S62.525A|ICD10CM|Nondisp fx of distal phalanx of left thumb, init for clos fx|Nondisp fx of distal phalanx of left thumb, init for clos fx +C2852075|T037|PT|S62.525A|ICD10CM|Nondisplaced fracture of distal phalanx of left thumb, initial encounter for closed fracture|Nondisplaced fracture of distal phalanx of left thumb, initial encounter for closed fracture +C2852076|T037|AB|S62.525B|ICD10CM|Nondisp fx of distal phalanx of left thumb, init for opn fx|Nondisp fx of distal phalanx of left thumb, init for opn fx +C2852076|T037|PT|S62.525B|ICD10CM|Nondisplaced fracture of distal phalanx of left thumb, initial encounter for open fracture|Nondisplaced fracture of distal phalanx of left thumb, initial encounter for open fracture +C2852077|T037|AB|S62.525D|ICD10CM|Nondisp fx of dist phalanx of l thm, 7thD|Nondisp fx of dist phalanx of l thm, 7thD +C2852078|T037|AB|S62.525G|ICD10CM|Nondisp fx of dist phalanx of l thm, 7thG|Nondisp fx of dist phalanx of l thm, 7thG +C2852079|T037|AB|S62.525K|ICD10CM|Nondisp fx of dist phalanx of l thm, subs for fx w nonunion|Nondisp fx of dist phalanx of l thm, subs for fx w nonunion +C2852080|T037|AB|S62.525P|ICD10CM|Nondisp fx of dist phalanx of l thm, subs for fx w malunion|Nondisp fx of dist phalanx of l thm, subs for fx w malunion +C2852081|T037|AB|S62.525S|ICD10CM|Nondisp fx of distal phalanx of left thumb, sequela|Nondisp fx of distal phalanx of left thumb, sequela +C2852081|T037|PT|S62.525S|ICD10CM|Nondisplaced fracture of distal phalanx of left thumb, sequela|Nondisplaced fracture of distal phalanx of left thumb, sequela +C2852082|T037|AB|S62.526|ICD10CM|Nondisplaced fracture of distal phalanx of unspecified thumb|Nondisplaced fracture of distal phalanx of unspecified thumb +C2852082|T037|HT|S62.526|ICD10CM|Nondisplaced fracture of distal phalanx of unspecified thumb|Nondisplaced fracture of distal phalanx of unspecified thumb +C2852083|T037|AB|S62.526A|ICD10CM|Nondisp fx of distal phalanx of unsp thumb, init for clos fx|Nondisp fx of distal phalanx of unsp thumb, init for clos fx +C2852083|T037|PT|S62.526A|ICD10CM|Nondisplaced fracture of distal phalanx of unspecified thumb, initial encounter for closed fracture|Nondisplaced fracture of distal phalanx of unspecified thumb, initial encounter for closed fracture +C2852084|T037|AB|S62.526B|ICD10CM|Nondisp fx of distal phalanx of unsp thumb, init for opn fx|Nondisp fx of distal phalanx of unsp thumb, init for opn fx +C2852084|T037|PT|S62.526B|ICD10CM|Nondisplaced fracture of distal phalanx of unspecified thumb, initial encounter for open fracture|Nondisplaced fracture of distal phalanx of unspecified thumb, initial encounter for open fracture +C2852085|T037|AB|S62.526D|ICD10CM|Nondisp fx of dist phalanx of thmb, subs for fx w routn heal|Nondisp fx of dist phalanx of thmb, subs for fx w routn heal +C2852086|T037|AB|S62.526G|ICD10CM|Nondisp fx of dist phalanx of thmb, subs for fx w delay heal|Nondisp fx of dist phalanx of thmb, subs for fx w delay heal +C2852087|T037|AB|S62.526K|ICD10CM|Nondisp fx of distal phalanx of thmb, subs for fx w nonunion|Nondisp fx of distal phalanx of thmb, subs for fx w nonunion +C2852088|T037|AB|S62.526P|ICD10CM|Nondisp fx of distal phalanx of thmb, subs for fx w malunion|Nondisp fx of distal phalanx of thmb, subs for fx w malunion +C2852089|T037|AB|S62.526S|ICD10CM|Nondisp fx of distal phalanx of unspecified thumb, sequela|Nondisp fx of distal phalanx of unspecified thumb, sequela +C2852089|T037|PT|S62.526S|ICD10CM|Nondisplaced fracture of distal phalanx of unspecified thumb, sequela|Nondisplaced fracture of distal phalanx of unspecified thumb, sequela +C2852090|T037|AB|S62.6|ICD10CM|Fracture of other and unspecified finger(s)|Fracture of other and unspecified finger(s) +C2852090|T037|HT|S62.6|ICD10CM|Fracture of other and unspecified finger(s)|Fracture of other and unspecified finger(s) +C0452086|T037|PT|S62.6|ICD10|Fracture of other finger|Fracture of other finger +C2852091|T037|AB|S62.60|ICD10CM|Fracture of unspecified phalanx of finger|Fracture of unspecified phalanx of finger +C2852091|T037|HT|S62.60|ICD10CM|Fracture of unspecified phalanx of finger|Fracture of unspecified phalanx of finger +C2852092|T037|AB|S62.600|ICD10CM|Fracture of unspecified phalanx of right index finger|Fracture of unspecified phalanx of right index finger +C2852092|T037|HT|S62.600|ICD10CM|Fracture of unspecified phalanx of right index finger|Fracture of unspecified phalanx of right index finger +C2852093|T037|AB|S62.600A|ICD10CM|Fracture of unsp phalanx of right index finger, init|Fracture of unsp phalanx of right index finger, init +C2852093|T037|PT|S62.600A|ICD10CM|Fracture of unspecified phalanx of right index finger, initial encounter for closed fracture|Fracture of unspecified phalanx of right index finger, initial encounter for closed fracture +C2852094|T037|AB|S62.600B|ICD10CM|Fracture of unsp phalanx of r idx fngr, init for opn fx|Fracture of unsp phalanx of r idx fngr, init for opn fx +C2852094|T037|PT|S62.600B|ICD10CM|Fracture of unspecified phalanx of right index finger, initial encounter for open fracture|Fracture of unspecified phalanx of right index finger, initial encounter for open fracture +C2852095|T037|AB|S62.600D|ICD10CM|Fx unsp phalanx of r idx fngr, subs for fx w routn heal|Fx unsp phalanx of r idx fngr, subs for fx w routn heal +C2852096|T037|AB|S62.600G|ICD10CM|Fx unsp phalanx of r idx fngr, subs for fx w delay heal|Fx unsp phalanx of r idx fngr, subs for fx w delay heal +C2852097|T037|AB|S62.600K|ICD10CM|Fx unsp phalanx of r idx fngr, subs for fx w nonunion|Fx unsp phalanx of r idx fngr, subs for fx w nonunion +C2852098|T037|AB|S62.600P|ICD10CM|Fx unsp phalanx of r idx fngr, subs for fx w malunion|Fx unsp phalanx of r idx fngr, subs for fx w malunion +C2852099|T037|AB|S62.600S|ICD10CM|Fracture of unsp phalanx of right index finger, sequela|Fracture of unsp phalanx of right index finger, sequela +C2852099|T037|PT|S62.600S|ICD10CM|Fracture of unspecified phalanx of right index finger, sequela|Fracture of unspecified phalanx of right index finger, sequela +C2852100|T037|AB|S62.601|ICD10CM|Fracture of unspecified phalanx of left index finger|Fracture of unspecified phalanx of left index finger +C2852100|T037|HT|S62.601|ICD10CM|Fracture of unspecified phalanx of left index finger|Fracture of unspecified phalanx of left index finger +C2852101|T037|AB|S62.601A|ICD10CM|Fracture of unsp phalanx of left index finger, init|Fracture of unsp phalanx of left index finger, init +C2852101|T037|PT|S62.601A|ICD10CM|Fracture of unspecified phalanx of left index finger, initial encounter for closed fracture|Fracture of unspecified phalanx of left index finger, initial encounter for closed fracture +C2852102|T037|AB|S62.601B|ICD10CM|Fracture of unsp phalanx of l idx fngr, init for opn fx|Fracture of unsp phalanx of l idx fngr, init for opn fx +C2852102|T037|PT|S62.601B|ICD10CM|Fracture of unspecified phalanx of left index finger, initial encounter for open fracture|Fracture of unspecified phalanx of left index finger, initial encounter for open fracture +C2852103|T037|AB|S62.601D|ICD10CM|Fx unsp phalanx of l idx fngr, subs for fx w routn heal|Fx unsp phalanx of l idx fngr, subs for fx w routn heal +C2852104|T037|AB|S62.601G|ICD10CM|Fx unsp phalanx of l idx fngr, subs for fx w delay heal|Fx unsp phalanx of l idx fngr, subs for fx w delay heal +C2852105|T037|AB|S62.601K|ICD10CM|Fx unsp phalanx of l idx fngr, subs for fx w nonunion|Fx unsp phalanx of l idx fngr, subs for fx w nonunion +C2852106|T037|AB|S62.601P|ICD10CM|Fx unsp phalanx of l idx fngr, subs for fx w malunion|Fx unsp phalanx of l idx fngr, subs for fx w malunion +C2852107|T037|AB|S62.601S|ICD10CM|Fracture of unsp phalanx of left index finger, sequela|Fracture of unsp phalanx of left index finger, sequela +C2852107|T037|PT|S62.601S|ICD10CM|Fracture of unspecified phalanx of left index finger, sequela|Fracture of unspecified phalanx of left index finger, sequela +C2852108|T037|AB|S62.602|ICD10CM|Fracture of unspecified phalanx of right middle finger|Fracture of unspecified phalanx of right middle finger +C2852108|T037|HT|S62.602|ICD10CM|Fracture of unspecified phalanx of right middle finger|Fracture of unspecified phalanx of right middle finger +C2852109|T037|AB|S62.602A|ICD10CM|Fracture of unsp phalanx of right middle finger, init|Fracture of unsp phalanx of right middle finger, init +C2852109|T037|PT|S62.602A|ICD10CM|Fracture of unspecified phalanx of right middle finger, initial encounter for closed fracture|Fracture of unspecified phalanx of right middle finger, initial encounter for closed fracture +C2852110|T037|AB|S62.602B|ICD10CM|Fracture of unsp phalanx of r mid finger, init for opn fx|Fracture of unsp phalanx of r mid finger, init for opn fx +C2852110|T037|PT|S62.602B|ICD10CM|Fracture of unspecified phalanx of right middle finger, initial encounter for open fracture|Fracture of unspecified phalanx of right middle finger, initial encounter for open fracture +C2852111|T037|AB|S62.602D|ICD10CM|Fx unsp phalanx of r mid finger, subs for fx w routn heal|Fx unsp phalanx of r mid finger, subs for fx w routn heal +C2852112|T037|AB|S62.602G|ICD10CM|Fx unsp phalanx of r mid finger, subs for fx w delay heal|Fx unsp phalanx of r mid finger, subs for fx w delay heal +C2852113|T037|AB|S62.602K|ICD10CM|Fx unsp phalanx of r mid finger, subs for fx w nonunion|Fx unsp phalanx of r mid finger, subs for fx w nonunion +C2852114|T037|AB|S62.602P|ICD10CM|Fx unsp phalanx of r mid finger, subs for fx w malunion|Fx unsp phalanx of r mid finger, subs for fx w malunion +C2852115|T037|AB|S62.602S|ICD10CM|Fracture of unsp phalanx of right middle finger, sequela|Fracture of unsp phalanx of right middle finger, sequela +C2852115|T037|PT|S62.602S|ICD10CM|Fracture of unspecified phalanx of right middle finger, sequela|Fracture of unspecified phalanx of right middle finger, sequela +C2852116|T037|AB|S62.603|ICD10CM|Fracture of unspecified phalanx of left middle finger|Fracture of unspecified phalanx of left middle finger +C2852116|T037|HT|S62.603|ICD10CM|Fracture of unspecified phalanx of left middle finger|Fracture of unspecified phalanx of left middle finger +C2852117|T037|AB|S62.603A|ICD10CM|Fracture of unsp phalanx of left middle finger, init|Fracture of unsp phalanx of left middle finger, init +C2852117|T037|PT|S62.603A|ICD10CM|Fracture of unspecified phalanx of left middle finger, initial encounter for closed fracture|Fracture of unspecified phalanx of left middle finger, initial encounter for closed fracture +C2852118|T037|AB|S62.603B|ICD10CM|Fracture of unsp phalanx of l mid finger, init for opn fx|Fracture of unsp phalanx of l mid finger, init for opn fx +C2852118|T037|PT|S62.603B|ICD10CM|Fracture of unspecified phalanx of left middle finger, initial encounter for open fracture|Fracture of unspecified phalanx of left middle finger, initial encounter for open fracture +C2852119|T037|AB|S62.603D|ICD10CM|Fx unsp phalanx of l mid finger, subs for fx w routn heal|Fx unsp phalanx of l mid finger, subs for fx w routn heal +C2852120|T037|AB|S62.603G|ICD10CM|Fx unsp phalanx of l mid finger, subs for fx w delay heal|Fx unsp phalanx of l mid finger, subs for fx w delay heal +C2852121|T037|AB|S62.603K|ICD10CM|Fx unsp phalanx of l mid finger, subs for fx w nonunion|Fx unsp phalanx of l mid finger, subs for fx w nonunion +C2852122|T037|AB|S62.603P|ICD10CM|Fx unsp phalanx of l mid finger, subs for fx w malunion|Fx unsp phalanx of l mid finger, subs for fx w malunion +C2852123|T037|AB|S62.603S|ICD10CM|Fracture of unsp phalanx of left middle finger, sequela|Fracture of unsp phalanx of left middle finger, sequela +C2852123|T037|PT|S62.603S|ICD10CM|Fracture of unspecified phalanx of left middle finger, sequela|Fracture of unspecified phalanx of left middle finger, sequela +C2852124|T037|AB|S62.604|ICD10CM|Fracture of unspecified phalanx of right ring finger|Fracture of unspecified phalanx of right ring finger +C2852124|T037|HT|S62.604|ICD10CM|Fracture of unspecified phalanx of right ring finger|Fracture of unspecified phalanx of right ring finger +C2852125|T037|AB|S62.604A|ICD10CM|Fracture of unsp phalanx of right ring finger, init|Fracture of unsp phalanx of right ring finger, init +C2852125|T037|PT|S62.604A|ICD10CM|Fracture of unspecified phalanx of right ring finger, initial encounter for closed fracture|Fracture of unspecified phalanx of right ring finger, initial encounter for closed fracture +C2852126|T037|AB|S62.604B|ICD10CM|Fracture of unsp phalanx of r rng fngr, init for opn fx|Fracture of unsp phalanx of r rng fngr, init for opn fx +C2852126|T037|PT|S62.604B|ICD10CM|Fracture of unspecified phalanx of right ring finger, initial encounter for open fracture|Fracture of unspecified phalanx of right ring finger, initial encounter for open fracture +C2852127|T037|AB|S62.604D|ICD10CM|Fx unsp phalanx of r rng fngr, subs for fx w routn heal|Fx unsp phalanx of r rng fngr, subs for fx w routn heal +C2852128|T037|AB|S62.604G|ICD10CM|Fx unsp phalanx of r rng fngr, subs for fx w delay heal|Fx unsp phalanx of r rng fngr, subs for fx w delay heal +C2852129|T037|AB|S62.604K|ICD10CM|Fx unsp phalanx of r rng fngr, subs for fx w nonunion|Fx unsp phalanx of r rng fngr, subs for fx w nonunion +C2852130|T037|AB|S62.604P|ICD10CM|Fx unsp phalanx of r rng fngr, subs for fx w malunion|Fx unsp phalanx of r rng fngr, subs for fx w malunion +C2852131|T037|AB|S62.604S|ICD10CM|Fracture of unsp phalanx of right ring finger, sequela|Fracture of unsp phalanx of right ring finger, sequela +C2852131|T037|PT|S62.604S|ICD10CM|Fracture of unspecified phalanx of right ring finger, sequela|Fracture of unspecified phalanx of right ring finger, sequela +C2852132|T037|AB|S62.605|ICD10CM|Fracture of unspecified phalanx of left ring finger|Fracture of unspecified phalanx of left ring finger +C2852132|T037|HT|S62.605|ICD10CM|Fracture of unspecified phalanx of left ring finger|Fracture of unspecified phalanx of left ring finger +C2852133|T037|AB|S62.605A|ICD10CM|Fracture of unsp phalanx of left ring finger, init|Fracture of unsp phalanx of left ring finger, init +C2852133|T037|PT|S62.605A|ICD10CM|Fracture of unspecified phalanx of left ring finger, initial encounter for closed fracture|Fracture of unspecified phalanx of left ring finger, initial encounter for closed fracture +C2852134|T037|AB|S62.605B|ICD10CM|Fracture of unsp phalanx of l rng fngr, init for opn fx|Fracture of unsp phalanx of l rng fngr, init for opn fx +C2852134|T037|PT|S62.605B|ICD10CM|Fracture of unspecified phalanx of left ring finger, initial encounter for open fracture|Fracture of unspecified phalanx of left ring finger, initial encounter for open fracture +C2852135|T037|AB|S62.605D|ICD10CM|Fx unsp phalanx of l rng fngr, subs for fx w routn heal|Fx unsp phalanx of l rng fngr, subs for fx w routn heal +C2852136|T037|AB|S62.605G|ICD10CM|Fx unsp phalanx of l rng fngr, subs for fx w delay heal|Fx unsp phalanx of l rng fngr, subs for fx w delay heal +C2852137|T037|PT|S62.605K|ICD10CM|Fracture of unspecified phalanx of left ring finger, subsequent encounter for fracture with nonunion|Fracture of unspecified phalanx of left ring finger, subsequent encounter for fracture with nonunion +C2852137|T037|AB|S62.605K|ICD10CM|Fx unsp phalanx of l rng fngr, subs for fx w nonunion|Fx unsp phalanx of l rng fngr, subs for fx w nonunion +C2852138|T037|PT|S62.605P|ICD10CM|Fracture of unspecified phalanx of left ring finger, subsequent encounter for fracture with malunion|Fracture of unspecified phalanx of left ring finger, subsequent encounter for fracture with malunion +C2852138|T037|AB|S62.605P|ICD10CM|Fx unsp phalanx of l rng fngr, subs for fx w malunion|Fx unsp phalanx of l rng fngr, subs for fx w malunion +C2852139|T037|AB|S62.605S|ICD10CM|Fracture of unspecified phalanx of left ring finger, sequela|Fracture of unspecified phalanx of left ring finger, sequela +C2852139|T037|PT|S62.605S|ICD10CM|Fracture of unspecified phalanx of left ring finger, sequela|Fracture of unspecified phalanx of left ring finger, sequela +C2852140|T037|AB|S62.606|ICD10CM|Fracture of unspecified phalanx of right little finger|Fracture of unspecified phalanx of right little finger +C2852140|T037|HT|S62.606|ICD10CM|Fracture of unspecified phalanx of right little finger|Fracture of unspecified phalanx of right little finger +C2852141|T037|AB|S62.606A|ICD10CM|Fracture of unsp phalanx of right little finger, init|Fracture of unsp phalanx of right little finger, init +C2852141|T037|PT|S62.606A|ICD10CM|Fracture of unspecified phalanx of right little finger, initial encounter for closed fracture|Fracture of unspecified phalanx of right little finger, initial encounter for closed fracture +C2852142|T037|AB|S62.606B|ICD10CM|Fracture of unsp phalanx of r little finger, init for opn fx|Fracture of unsp phalanx of r little finger, init for opn fx +C2852142|T037|PT|S62.606B|ICD10CM|Fracture of unspecified phalanx of right little finger, initial encounter for open fracture|Fracture of unspecified phalanx of right little finger, initial encounter for open fracture +C2852143|T037|AB|S62.606D|ICD10CM|Fx unsp phalanx of r little finger, subs for fx w routn heal|Fx unsp phalanx of r little finger, subs for fx w routn heal +C2852144|T037|AB|S62.606G|ICD10CM|Fx unsp phalanx of r little finger, subs for fx w delay heal|Fx unsp phalanx of r little finger, subs for fx w delay heal +C2852145|T037|AB|S62.606K|ICD10CM|Fx unsp phalanx of r little finger, subs for fx w nonunion|Fx unsp phalanx of r little finger, subs for fx w nonunion +C2852146|T037|AB|S62.606P|ICD10CM|Fx unsp phalanx of r little finger, subs for fx w malunion|Fx unsp phalanx of r little finger, subs for fx w malunion +C2852147|T037|AB|S62.606S|ICD10CM|Fracture of unsp phalanx of right little finger, sequela|Fracture of unsp phalanx of right little finger, sequela +C2852147|T037|PT|S62.606S|ICD10CM|Fracture of unspecified phalanx of right little finger, sequela|Fracture of unspecified phalanx of right little finger, sequela +C2852148|T037|AB|S62.607|ICD10CM|Fracture of unspecified phalanx of left little finger|Fracture of unspecified phalanx of left little finger +C2852148|T037|HT|S62.607|ICD10CM|Fracture of unspecified phalanx of left little finger|Fracture of unspecified phalanx of left little finger +C2852149|T037|AB|S62.607A|ICD10CM|Fracture of unsp phalanx of left little finger, init|Fracture of unsp phalanx of left little finger, init +C2852149|T037|PT|S62.607A|ICD10CM|Fracture of unspecified phalanx of left little finger, initial encounter for closed fracture|Fracture of unspecified phalanx of left little finger, initial encounter for closed fracture +C2852150|T037|AB|S62.607B|ICD10CM|Fracture of unsp phalanx of l little finger, init for opn fx|Fracture of unsp phalanx of l little finger, init for opn fx +C2852150|T037|PT|S62.607B|ICD10CM|Fracture of unspecified phalanx of left little finger, initial encounter for open fracture|Fracture of unspecified phalanx of left little finger, initial encounter for open fracture +C2852151|T037|AB|S62.607D|ICD10CM|Fx unsp phalanx of l little finger, subs for fx w routn heal|Fx unsp phalanx of l little finger, subs for fx w routn heal +C2852152|T037|AB|S62.607G|ICD10CM|Fx unsp phalanx of l little finger, subs for fx w delay heal|Fx unsp phalanx of l little finger, subs for fx w delay heal +C2852153|T037|AB|S62.607K|ICD10CM|Fx unsp phalanx of l little finger, subs for fx w nonunion|Fx unsp phalanx of l little finger, subs for fx w nonunion +C2852154|T037|AB|S62.607P|ICD10CM|Fx unsp phalanx of l little finger, subs for fx w malunion|Fx unsp phalanx of l little finger, subs for fx w malunion +C2852155|T037|AB|S62.607S|ICD10CM|Fracture of unsp phalanx of left little finger, sequela|Fracture of unsp phalanx of left little finger, sequela +C2852155|T037|PT|S62.607S|ICD10CM|Fracture of unspecified phalanx of left little finger, sequela|Fracture of unspecified phalanx of left little finger, sequela +C2852157|T037|AB|S62.608|ICD10CM|Fracture of unspecified phalanx of other finger|Fracture of unspecified phalanx of other finger +C2852157|T037|HT|S62.608|ICD10CM|Fracture of unspecified phalanx of other finger|Fracture of unspecified phalanx of other finger +C2852156|T037|ET|S62.608|ICD10CM|Fracture of unspecified phalanx of specified finger with unspecified laterality|Fracture of unspecified phalanx of specified finger with unspecified laterality +C2852158|T037|AB|S62.608A|ICD10CM|Fracture of unsp phalanx of oth finger, init for clos fx|Fracture of unsp phalanx of oth finger, init for clos fx +C2852158|T037|PT|S62.608A|ICD10CM|Fracture of unspecified phalanx of other finger, initial encounter for closed fracture|Fracture of unspecified phalanx of other finger, initial encounter for closed fracture +C2852159|T037|AB|S62.608B|ICD10CM|Fracture of unsp phalanx of oth finger, init for opn fx|Fracture of unsp phalanx of oth finger, init for opn fx +C2852159|T037|PT|S62.608B|ICD10CM|Fracture of unspecified phalanx of other finger, initial encounter for open fracture|Fracture of unspecified phalanx of other finger, initial encounter for open fracture +C2852160|T037|AB|S62.608D|ICD10CM|Fracture of unsp phalanx of finger, subs for fx w routn heal|Fracture of unsp phalanx of finger, subs for fx w routn heal +C2852161|T037|AB|S62.608G|ICD10CM|Fracture of unsp phalanx of finger, subs for fx w delay heal|Fracture of unsp phalanx of finger, subs for fx w delay heal +C2852162|T037|AB|S62.608K|ICD10CM|Fracture of unsp phalanx of finger, subs for fx w nonunion|Fracture of unsp phalanx of finger, subs for fx w nonunion +C2852162|T037|PT|S62.608K|ICD10CM|Fracture of unspecified phalanx of other finger, subsequent encounter for fracture with nonunion|Fracture of unspecified phalanx of other finger, subsequent encounter for fracture with nonunion +C2852163|T037|AB|S62.608P|ICD10CM|Fracture of unsp phalanx of finger, subs for fx w malunion|Fracture of unsp phalanx of finger, subs for fx w malunion +C2852163|T037|PT|S62.608P|ICD10CM|Fracture of unspecified phalanx of other finger, subsequent encounter for fracture with malunion|Fracture of unspecified phalanx of other finger, subsequent encounter for fracture with malunion +C2852164|T037|AB|S62.608S|ICD10CM|Fracture of unspecified phalanx of other finger, sequela|Fracture of unspecified phalanx of other finger, sequela +C2852164|T037|PT|S62.608S|ICD10CM|Fracture of unspecified phalanx of other finger, sequela|Fracture of unspecified phalanx of other finger, sequela +C2852165|T037|AB|S62.609|ICD10CM|Fracture of unspecified phalanx of unspecified finger|Fracture of unspecified phalanx of unspecified finger +C2852165|T037|HT|S62.609|ICD10CM|Fracture of unspecified phalanx of unspecified finger|Fracture of unspecified phalanx of unspecified finger +C2852166|T037|AB|S62.609A|ICD10CM|Fracture of unsp phalanx of unsp finger, init for clos fx|Fracture of unsp phalanx of unsp finger, init for clos fx +C2852166|T037|PT|S62.609A|ICD10CM|Fracture of unspecified phalanx of unspecified finger, initial encounter for closed fracture|Fracture of unspecified phalanx of unspecified finger, initial encounter for closed fracture +C2852167|T037|AB|S62.609B|ICD10CM|Fracture of unsp phalanx of unsp finger, init for opn fx|Fracture of unsp phalanx of unsp finger, init for opn fx +C2852167|T037|PT|S62.609B|ICD10CM|Fracture of unspecified phalanx of unspecified finger, initial encounter for open fracture|Fracture of unspecified phalanx of unspecified finger, initial encounter for open fracture +C2852168|T037|AB|S62.609D|ICD10CM|Fx unsp phalanx of unsp finger, subs for fx w routn heal|Fx unsp phalanx of unsp finger, subs for fx w routn heal +C2852169|T037|AB|S62.609G|ICD10CM|Fx unsp phalanx of unsp finger, subs for fx w delay heal|Fx unsp phalanx of unsp finger, subs for fx w delay heal +C2852170|T037|AB|S62.609K|ICD10CM|Fx unsp phalanx of unsp finger, subs for fx w nonunion|Fx unsp phalanx of unsp finger, subs for fx w nonunion +C2852171|T037|AB|S62.609P|ICD10CM|Fx unsp phalanx of unsp finger, subs for fx w malunion|Fx unsp phalanx of unsp finger, subs for fx w malunion +C2852172|T037|AB|S62.609S|ICD10CM|Fracture of unsp phalanx of unspecified finger, sequela|Fracture of unsp phalanx of unspecified finger, sequela +C2852172|T037|PT|S62.609S|ICD10CM|Fracture of unspecified phalanx of unspecified finger, sequela|Fracture of unspecified phalanx of unspecified finger, sequela +C2852173|T037|AB|S62.61|ICD10CM|Displaced fracture of proximal phalanx of finger|Displaced fracture of proximal phalanx of finger +C2852173|T037|HT|S62.61|ICD10CM|Displaced fracture of proximal phalanx of finger|Displaced fracture of proximal phalanx of finger +C2852174|T037|AB|S62.610|ICD10CM|Displaced fracture of proximal phalanx of right index finger|Displaced fracture of proximal phalanx of right index finger +C2852174|T037|HT|S62.610|ICD10CM|Displaced fracture of proximal phalanx of right index finger|Displaced fracture of proximal phalanx of right index finger +C2852175|T037|AB|S62.610A|ICD10CM|Disp fx of proximal phalanx of right index finger, init|Disp fx of proximal phalanx of right index finger, init +C2852175|T037|PT|S62.610A|ICD10CM|Displaced fracture of proximal phalanx of right index finger, initial encounter for closed fracture|Displaced fracture of proximal phalanx of right index finger, initial encounter for closed fracture +C2852176|T037|AB|S62.610B|ICD10CM|Disp fx of proximal phalanx of r idx fngr, init for opn fx|Disp fx of proximal phalanx of r idx fngr, init for opn fx +C2852176|T037|PT|S62.610B|ICD10CM|Displaced fracture of proximal phalanx of right index finger, initial encounter for open fracture|Displaced fracture of proximal phalanx of right index finger, initial encounter for open fracture +C2852177|T037|AB|S62.610D|ICD10CM|Disp fx of prox phalanx of r idx fngr, 7thD|Disp fx of prox phalanx of r idx fngr, 7thD +C2852178|T037|AB|S62.610G|ICD10CM|Disp fx of prox phalanx of r idx fngr, 7thG|Disp fx of prox phalanx of r idx fngr, 7thG +C2852179|T037|AB|S62.610K|ICD10CM|Disp fx of prox phalanx of r idx fngr, 7thK|Disp fx of prox phalanx of r idx fngr, 7thK +C2852180|T037|AB|S62.610P|ICD10CM|Disp fx of prox phalanx of r idx fngr, 7thP|Disp fx of prox phalanx of r idx fngr, 7thP +C2852181|T037|AB|S62.610S|ICD10CM|Disp fx of proximal phalanx of right index finger, sequela|Disp fx of proximal phalanx of right index finger, sequela +C2852181|T037|PT|S62.610S|ICD10CM|Displaced fracture of proximal phalanx of right index finger, sequela|Displaced fracture of proximal phalanx of right index finger, sequela +C2852182|T037|AB|S62.611|ICD10CM|Displaced fracture of proximal phalanx of left index finger|Displaced fracture of proximal phalanx of left index finger +C2852182|T037|HT|S62.611|ICD10CM|Displaced fracture of proximal phalanx of left index finger|Displaced fracture of proximal phalanx of left index finger +C2852183|T037|AB|S62.611A|ICD10CM|Disp fx of proximal phalanx of left index finger, init|Disp fx of proximal phalanx of left index finger, init +C2852183|T037|PT|S62.611A|ICD10CM|Displaced fracture of proximal phalanx of left index finger, initial encounter for closed fracture|Displaced fracture of proximal phalanx of left index finger, initial encounter for closed fracture +C2852184|T037|AB|S62.611B|ICD10CM|Disp fx of proximal phalanx of l idx fngr, init for opn fx|Disp fx of proximal phalanx of l idx fngr, init for opn fx +C2852184|T037|PT|S62.611B|ICD10CM|Displaced fracture of proximal phalanx of left index finger, initial encounter for open fracture|Displaced fracture of proximal phalanx of left index finger, initial encounter for open fracture +C2852185|T037|AB|S62.611D|ICD10CM|Disp fx of prox phalanx of l idx fngr, 7thD|Disp fx of prox phalanx of l idx fngr, 7thD +C2852186|T037|AB|S62.611G|ICD10CM|Disp fx of prox phalanx of l idx fngr, 7thG|Disp fx of prox phalanx of l idx fngr, 7thG +C2852187|T037|AB|S62.611K|ICD10CM|Disp fx of prox phalanx of l idx fngr, 7thK|Disp fx of prox phalanx of l idx fngr, 7thK +C2852188|T037|AB|S62.611P|ICD10CM|Disp fx of prox phalanx of l idx fngr, 7thP|Disp fx of prox phalanx of l idx fngr, 7thP +C2852189|T037|AB|S62.611S|ICD10CM|Disp fx of proximal phalanx of left index finger, sequela|Disp fx of proximal phalanx of left index finger, sequela +C2852189|T037|PT|S62.611S|ICD10CM|Displaced fracture of proximal phalanx of left index finger, sequela|Displaced fracture of proximal phalanx of left index finger, sequela +C2852190|T037|AB|S62.612|ICD10CM|Disp fx of proximal phalanx of right middle finger|Disp fx of proximal phalanx of right middle finger +C2852190|T037|HT|S62.612|ICD10CM|Displaced fracture of proximal phalanx of right middle finger|Displaced fracture of proximal phalanx of right middle finger +C2852191|T037|AB|S62.612A|ICD10CM|Disp fx of proximal phalanx of right middle finger, init|Disp fx of proximal phalanx of right middle finger, init +C2852191|T037|PT|S62.612A|ICD10CM|Displaced fracture of proximal phalanx of right middle finger, initial encounter for closed fracture|Displaced fracture of proximal phalanx of right middle finger, initial encounter for closed fracture +C2852192|T037|AB|S62.612B|ICD10CM|Disp fx of proximal phalanx of r mid finger, init for opn fx|Disp fx of proximal phalanx of r mid finger, init for opn fx +C2852192|T037|PT|S62.612B|ICD10CM|Displaced fracture of proximal phalanx of right middle finger, initial encounter for open fracture|Displaced fracture of proximal phalanx of right middle finger, initial encounter for open fracture +C2852193|T037|AB|S62.612D|ICD10CM|Disp fx of prox phalanx of r mid fngr, 7thD|Disp fx of prox phalanx of r mid fngr, 7thD +C2852194|T037|AB|S62.612G|ICD10CM|Disp fx of prox phalanx of r mid fngr, 7thG|Disp fx of prox phalanx of r mid fngr, 7thG +C2852195|T037|AB|S62.612K|ICD10CM|Disp fx of prox phalanx of r mid fngr, 7thK|Disp fx of prox phalanx of r mid fngr, 7thK +C2852196|T037|AB|S62.612P|ICD10CM|Disp fx of prox phalanx of r mid fngr, 7thP|Disp fx of prox phalanx of r mid fngr, 7thP +C2852197|T037|AB|S62.612S|ICD10CM|Disp fx of proximal phalanx of right middle finger, sequela|Disp fx of proximal phalanx of right middle finger, sequela +C2852197|T037|PT|S62.612S|ICD10CM|Displaced fracture of proximal phalanx of right middle finger, sequela|Displaced fracture of proximal phalanx of right middle finger, sequela +C2852198|T037|AB|S62.613|ICD10CM|Displaced fracture of proximal phalanx of left middle finger|Displaced fracture of proximal phalanx of left middle finger +C2852198|T037|HT|S62.613|ICD10CM|Displaced fracture of proximal phalanx of left middle finger|Displaced fracture of proximal phalanx of left middle finger +C2852199|T037|AB|S62.613A|ICD10CM|Disp fx of proximal phalanx of left middle finger, init|Disp fx of proximal phalanx of left middle finger, init +C2852199|T037|PT|S62.613A|ICD10CM|Displaced fracture of proximal phalanx of left middle finger, initial encounter for closed fracture|Displaced fracture of proximal phalanx of left middle finger, initial encounter for closed fracture +C2852200|T037|AB|S62.613B|ICD10CM|Disp fx of proximal phalanx of l mid finger, init for opn fx|Disp fx of proximal phalanx of l mid finger, init for opn fx +C2852200|T037|PT|S62.613B|ICD10CM|Displaced fracture of proximal phalanx of left middle finger, initial encounter for open fracture|Displaced fracture of proximal phalanx of left middle finger, initial encounter for open fracture +C2852201|T037|AB|S62.613D|ICD10CM|Disp fx of prox phalanx of l mid fngr, 7thD|Disp fx of prox phalanx of l mid fngr, 7thD +C2852202|T037|AB|S62.613G|ICD10CM|Disp fx of prox phalanx of l mid fngr, 7thG|Disp fx of prox phalanx of l mid fngr, 7thG +C2852203|T037|AB|S62.613K|ICD10CM|Disp fx of prox phalanx of l mid fngr, 7thK|Disp fx of prox phalanx of l mid fngr, 7thK +C2852204|T037|AB|S62.613P|ICD10CM|Disp fx of prox phalanx of l mid fngr, 7thP|Disp fx of prox phalanx of l mid fngr, 7thP +C2852205|T037|AB|S62.613S|ICD10CM|Disp fx of proximal phalanx of left middle finger, sequela|Disp fx of proximal phalanx of left middle finger, sequela +C2852205|T037|PT|S62.613S|ICD10CM|Displaced fracture of proximal phalanx of left middle finger, sequela|Displaced fracture of proximal phalanx of left middle finger, sequela +C2852206|T037|AB|S62.614|ICD10CM|Displaced fracture of proximal phalanx of right ring finger|Displaced fracture of proximal phalanx of right ring finger +C2852206|T037|HT|S62.614|ICD10CM|Displaced fracture of proximal phalanx of right ring finger|Displaced fracture of proximal phalanx of right ring finger +C2852207|T037|AB|S62.614A|ICD10CM|Disp fx of proximal phalanx of right ring finger, init|Disp fx of proximal phalanx of right ring finger, init +C2852207|T037|PT|S62.614A|ICD10CM|Displaced fracture of proximal phalanx of right ring finger, initial encounter for closed fracture|Displaced fracture of proximal phalanx of right ring finger, initial encounter for closed fracture +C2852208|T037|AB|S62.614B|ICD10CM|Disp fx of proximal phalanx of r rng fngr, init for opn fx|Disp fx of proximal phalanx of r rng fngr, init for opn fx +C2852208|T037|PT|S62.614B|ICD10CM|Displaced fracture of proximal phalanx of right ring finger, initial encounter for open fracture|Displaced fracture of proximal phalanx of right ring finger, initial encounter for open fracture +C2852209|T037|AB|S62.614D|ICD10CM|Disp fx of prox phalanx of r rng fngr, 7thD|Disp fx of prox phalanx of r rng fngr, 7thD +C2852210|T037|AB|S62.614G|ICD10CM|Disp fx of prox phalanx of r rng fngr, 7thG|Disp fx of prox phalanx of r rng fngr, 7thG +C2852211|T037|AB|S62.614K|ICD10CM|Disp fx of prox phalanx of r rng fngr, 7thK|Disp fx of prox phalanx of r rng fngr, 7thK +C2852212|T037|AB|S62.614P|ICD10CM|Disp fx of prox phalanx of r rng fngr, 7thP|Disp fx of prox phalanx of r rng fngr, 7thP +C2852213|T037|AB|S62.614S|ICD10CM|Disp fx of proximal phalanx of right ring finger, sequela|Disp fx of proximal phalanx of right ring finger, sequela +C2852213|T037|PT|S62.614S|ICD10CM|Displaced fracture of proximal phalanx of right ring finger, sequela|Displaced fracture of proximal phalanx of right ring finger, sequela +C2852214|T037|AB|S62.615|ICD10CM|Displaced fracture of proximal phalanx of left ring finger|Displaced fracture of proximal phalanx of left ring finger +C2852214|T037|HT|S62.615|ICD10CM|Displaced fracture of proximal phalanx of left ring finger|Displaced fracture of proximal phalanx of left ring finger +C2852215|T037|AB|S62.615A|ICD10CM|Disp fx of proximal phalanx of left ring finger, init|Disp fx of proximal phalanx of left ring finger, init +C2852215|T037|PT|S62.615A|ICD10CM|Displaced fracture of proximal phalanx of left ring finger, initial encounter for closed fracture|Displaced fracture of proximal phalanx of left ring finger, initial encounter for closed fracture +C2852216|T037|AB|S62.615B|ICD10CM|Disp fx of proximal phalanx of l rng fngr, init for opn fx|Disp fx of proximal phalanx of l rng fngr, init for opn fx +C2852216|T037|PT|S62.615B|ICD10CM|Displaced fracture of proximal phalanx of left ring finger, initial encounter for open fracture|Displaced fracture of proximal phalanx of left ring finger, initial encounter for open fracture +C2852217|T037|AB|S62.615D|ICD10CM|Disp fx of prox phalanx of l rng fngr, 7thD|Disp fx of prox phalanx of l rng fngr, 7thD +C2852218|T037|AB|S62.615G|ICD10CM|Disp fx of prox phalanx of l rng fngr, 7thG|Disp fx of prox phalanx of l rng fngr, 7thG +C2852219|T037|AB|S62.615K|ICD10CM|Disp fx of prox phalanx of l rng fngr, 7thK|Disp fx of prox phalanx of l rng fngr, 7thK +C2852220|T037|AB|S62.615P|ICD10CM|Disp fx of prox phalanx of l rng fngr, 7thP|Disp fx of prox phalanx of l rng fngr, 7thP +C2852221|T037|AB|S62.615S|ICD10CM|Disp fx of proximal phalanx of left ring finger, sequela|Disp fx of proximal phalanx of left ring finger, sequela +C2852221|T037|PT|S62.615S|ICD10CM|Displaced fracture of proximal phalanx of left ring finger, sequela|Displaced fracture of proximal phalanx of left ring finger, sequela +C2852222|T037|AB|S62.616|ICD10CM|Disp fx of proximal phalanx of right little finger|Disp fx of proximal phalanx of right little finger +C2852222|T037|HT|S62.616|ICD10CM|Displaced fracture of proximal phalanx of right little finger|Displaced fracture of proximal phalanx of right little finger +C2852223|T037|AB|S62.616A|ICD10CM|Disp fx of proximal phalanx of right little finger, init|Disp fx of proximal phalanx of right little finger, init +C2852223|T037|PT|S62.616A|ICD10CM|Displaced fracture of proximal phalanx of right little finger, initial encounter for closed fracture|Displaced fracture of proximal phalanx of right little finger, initial encounter for closed fracture +C2852224|T037|AB|S62.616B|ICD10CM|Disp fx of prox phalanx of r little finger, init for opn fx|Disp fx of prox phalanx of r little finger, init for opn fx +C2852224|T037|PT|S62.616B|ICD10CM|Displaced fracture of proximal phalanx of right little finger, initial encounter for open fracture|Displaced fracture of proximal phalanx of right little finger, initial encounter for open fracture +C2852225|T037|AB|S62.616D|ICD10CM|Disp fx of prox phalanx of r lit fngr, 7thD|Disp fx of prox phalanx of r lit fngr, 7thD +C2852226|T037|AB|S62.616G|ICD10CM|Disp fx of prox phalanx of r lit fngr, 7thG|Disp fx of prox phalanx of r lit fngr, 7thG +C2852227|T037|AB|S62.616K|ICD10CM|Disp fx of prox phalanx of r lit fngr, 7thK|Disp fx of prox phalanx of r lit fngr, 7thK +C2852228|T037|AB|S62.616P|ICD10CM|Disp fx of prox phalanx of r lit fngr, 7thP|Disp fx of prox phalanx of r lit fngr, 7thP +C2852229|T037|AB|S62.616S|ICD10CM|Disp fx of proximal phalanx of right little finger, sequela|Disp fx of proximal phalanx of right little finger, sequela +C2852229|T037|PT|S62.616S|ICD10CM|Displaced fracture of proximal phalanx of right little finger, sequela|Displaced fracture of proximal phalanx of right little finger, sequela +C2852230|T037|AB|S62.617|ICD10CM|Displaced fracture of proximal phalanx of left little finger|Displaced fracture of proximal phalanx of left little finger +C2852230|T037|HT|S62.617|ICD10CM|Displaced fracture of proximal phalanx of left little finger|Displaced fracture of proximal phalanx of left little finger +C2852231|T037|AB|S62.617A|ICD10CM|Disp fx of proximal phalanx of left little finger, init|Disp fx of proximal phalanx of left little finger, init +C2852231|T037|PT|S62.617A|ICD10CM|Displaced fracture of proximal phalanx of left little finger, initial encounter for closed fracture|Displaced fracture of proximal phalanx of left little finger, initial encounter for closed fracture +C2852232|T037|AB|S62.617B|ICD10CM|Disp fx of prox phalanx of l little finger, init for opn fx|Disp fx of prox phalanx of l little finger, init for opn fx +C2852232|T037|PT|S62.617B|ICD10CM|Displaced fracture of proximal phalanx of left little finger, initial encounter for open fracture|Displaced fracture of proximal phalanx of left little finger, initial encounter for open fracture +C2852233|T037|AB|S62.617D|ICD10CM|Disp fx of prox phalanx of l lit fngr, 7thD|Disp fx of prox phalanx of l lit fngr, 7thD +C2852234|T037|AB|S62.617G|ICD10CM|Disp fx of prox phalanx of l lit fngr, 7thG|Disp fx of prox phalanx of l lit fngr, 7thG +C2852235|T037|AB|S62.617K|ICD10CM|Disp fx of prox phalanx of l lit fngr, 7thK|Disp fx of prox phalanx of l lit fngr, 7thK +C2852236|T037|AB|S62.617P|ICD10CM|Disp fx of prox phalanx of l lit fngr, 7thP|Disp fx of prox phalanx of l lit fngr, 7thP +C2852237|T037|AB|S62.617S|ICD10CM|Disp fx of proximal phalanx of left little finger, sequela|Disp fx of proximal phalanx of left little finger, sequela +C2852237|T037|PT|S62.617S|ICD10CM|Displaced fracture of proximal phalanx of left little finger, sequela|Displaced fracture of proximal phalanx of left little finger, sequela +C2852239|T037|AB|S62.618|ICD10CM|Displaced fracture of proximal phalanx of other finger|Displaced fracture of proximal phalanx of other finger +C2852239|T037|HT|S62.618|ICD10CM|Displaced fracture of proximal phalanx of other finger|Displaced fracture of proximal phalanx of other finger +C2852238|T037|ET|S62.618|ICD10CM|Displaced fracture of proximal phalanx of specified finger with unspecified laterality|Displaced fracture of proximal phalanx of specified finger with unspecified laterality +C2852240|T037|AB|S62.618A|ICD10CM|Disp fx of proximal phalanx of oth finger, init for clos fx|Disp fx of proximal phalanx of oth finger, init for clos fx +C2852240|T037|PT|S62.618A|ICD10CM|Displaced fracture of proximal phalanx of other finger, initial encounter for closed fracture|Displaced fracture of proximal phalanx of other finger, initial encounter for closed fracture +C2852241|T037|AB|S62.618B|ICD10CM|Disp fx of proximal phalanx of oth finger, init for opn fx|Disp fx of proximal phalanx of oth finger, init for opn fx +C2852241|T037|PT|S62.618B|ICD10CM|Displaced fracture of proximal phalanx of other finger, initial encounter for open fracture|Displaced fracture of proximal phalanx of other finger, initial encounter for open fracture +C2852242|T037|AB|S62.618D|ICD10CM|Disp fx of prox phalanx of finger, subs for fx w routn heal|Disp fx of prox phalanx of finger, subs for fx w routn heal +C2852243|T037|AB|S62.618G|ICD10CM|Disp fx of prox phalanx of finger, subs for fx w delay heal|Disp fx of prox phalanx of finger, subs for fx w delay heal +C2852244|T037|AB|S62.618K|ICD10CM|Disp fx of prox phalanx of finger, subs for fx w nonunion|Disp fx of prox phalanx of finger, subs for fx w nonunion +C2852245|T037|AB|S62.618P|ICD10CM|Disp fx of prox phalanx of finger, subs for fx w malunion|Disp fx of prox phalanx of finger, subs for fx w malunion +C2852246|T037|AB|S62.618S|ICD10CM|Disp fx of proximal phalanx of other finger, sequela|Disp fx of proximal phalanx of other finger, sequela +C2852246|T037|PT|S62.618S|ICD10CM|Displaced fracture of proximal phalanx of other finger, sequela|Displaced fracture of proximal phalanx of other finger, sequela +C2852247|T037|AB|S62.619|ICD10CM|Displaced fracture of proximal phalanx of unspecified finger|Displaced fracture of proximal phalanx of unspecified finger +C2852247|T037|HT|S62.619|ICD10CM|Displaced fracture of proximal phalanx of unspecified finger|Displaced fracture of proximal phalanx of unspecified finger +C2852248|T037|AB|S62.619A|ICD10CM|Disp fx of proximal phalanx of unsp finger, init for clos fx|Disp fx of proximal phalanx of unsp finger, init for clos fx +C2852248|T037|PT|S62.619A|ICD10CM|Displaced fracture of proximal phalanx of unspecified finger, initial encounter for closed fracture|Displaced fracture of proximal phalanx of unspecified finger, initial encounter for closed fracture +C2852249|T037|AB|S62.619B|ICD10CM|Disp fx of proximal phalanx of unsp finger, init for opn fx|Disp fx of proximal phalanx of unsp finger, init for opn fx +C2852249|T037|PT|S62.619B|ICD10CM|Displaced fracture of proximal phalanx of unspecified finger, initial encounter for open fracture|Displaced fracture of proximal phalanx of unspecified finger, initial encounter for open fracture +C2852250|T037|AB|S62.619D|ICD10CM|Disp fx of prox phalanx of unsp fngr, 7thD|Disp fx of prox phalanx of unsp fngr, 7thD +C2852251|T037|AB|S62.619G|ICD10CM|Disp fx of prox phalanx of unsp fngr, 7thG|Disp fx of prox phalanx of unsp fngr, 7thG +C2852252|T037|AB|S62.619K|ICD10CM|Disp fx of prox phalanx of unsp fngr, subs for fx w nonunion|Disp fx of prox phalanx of unsp fngr, subs for fx w nonunion +C2852253|T037|AB|S62.619P|ICD10CM|Disp fx of prox phalanx of unsp fngr, subs for fx w malunion|Disp fx of prox phalanx of unsp fngr, subs for fx w malunion +C2852254|T037|AB|S62.619S|ICD10CM|Disp fx of proximal phalanx of unspecified finger, sequela|Disp fx of proximal phalanx of unspecified finger, sequela +C2852254|T037|PT|S62.619S|ICD10CM|Displaced fracture of proximal phalanx of unspecified finger, sequela|Displaced fracture of proximal phalanx of unspecified finger, sequela +C3511339|T037|AB|S62.62|ICD10CM|Displaced fracture of middle phalanx of finger|Displaced fracture of middle phalanx of finger +C3511339|T037|HT|S62.62|ICD10CM|Displaced fracture of middle phalanx of finger|Displaced fracture of middle phalanx of finger +C2852256|T037|AB|S62.620|ICD10CM|Displaced fracture of middle phalanx of right index finger|Displaced fracture of middle phalanx of right index finger +C2852256|T037|HT|S62.620|ICD10CM|Displaced fracture of middle phalanx of right index finger|Displaced fracture of middle phalanx of right index finger +C2852257|T037|AB|S62.620A|ICD10CM|Disp fx of middle phalanx of right index finger, init|Disp fx of middle phalanx of right index finger, init +C2852257|T037|PT|S62.620A|ICD10CM|Displaced fracture of middle phalanx of right index finger, initial encounter for closed fracture|Displaced fracture of middle phalanx of right index finger, initial encounter for closed fracture +C2852258|T037|AB|S62.620B|ICD10CM|Disp fx of middle phalanx of right index finger, 7thB|Disp fx of middle phalanx of right index finger, 7thB +C2852258|T037|PT|S62.620B|ICD10CM|Displaced fracture of middle phalanx of right index finger, initial encounter for open fracture|Displaced fracture of middle phalanx of right index finger, initial encounter for open fracture +C2852259|T037|AB|S62.620D|ICD10CM|Disp fx of middle phalanx of right index finger, 7thD|Disp fx of middle phalanx of right index finger, 7thD +C2852260|T037|AB|S62.620G|ICD10CM|Disp fx of middle phalanx of right index finger, 7thG|Disp fx of middle phalanx of right index finger, 7thG +C2852261|T037|AB|S62.620K|ICD10CM|Disp fx of middle phalanx of right index finger, 7thK|Disp fx of middle phalanx of right index finger, 7thK +C2852262|T037|AB|S62.620P|ICD10CM|Disp fx of middle phalanx of right index finger, 7thP|Disp fx of middle phalanx of right index finger, 7thP +C2852263|T037|AB|S62.620S|ICD10CM|Disp fx of middle phalanx of right index finger, sequela|Disp fx of middle phalanx of right index finger, sequela +C2852263|T037|PT|S62.620S|ICD10CM|Displaced fracture of middle phalanx of right index finger, sequela|Displaced fracture of middle phalanx of right index finger, sequela +C2852264|T037|AB|S62.621|ICD10CM|Displaced fracture of middle phalanx of left index finger|Displaced fracture of middle phalanx of left index finger +C2852264|T037|HT|S62.621|ICD10CM|Displaced fracture of middle phalanx of left index finger|Displaced fracture of middle phalanx of left index finger +C2852265|T037|AB|S62.621A|ICD10CM|Disp fx of middle phalanx of left index finger, init|Disp fx of middle phalanx of left index finger, init +C2852265|T037|PT|S62.621A|ICD10CM|Displaced fracture of middle phalanx of left index finger, initial encounter for closed fracture|Displaced fracture of middle phalanx of left index finger, initial encounter for closed fracture +C2852266|T037|AB|S62.621B|ICD10CM|Disp fx of middle phalanx of left index finger, 7thB|Disp fx of middle phalanx of left index finger, 7thB +C2852266|T037|PT|S62.621B|ICD10CM|Displaced fracture of middle phalanx of left index finger, initial encounter for open fracture|Displaced fracture of middle phalanx of left index finger, initial encounter for open fracture +C2852267|T037|AB|S62.621D|ICD10CM|Disp fx of middle phalanx of left index finger, 7thD|Disp fx of middle phalanx of left index finger, 7thD +C2852268|T037|AB|S62.621G|ICD10CM|Disp fx of middle phalanx of left index finger, 7thG|Disp fx of middle phalanx of left index finger, 7thG +C2852269|T037|AB|S62.621K|ICD10CM|Disp fx of middle phalanx of left index finger, 7thK|Disp fx of middle phalanx of left index finger, 7thK +C2852270|T037|AB|S62.621P|ICD10CM|Disp fx of middle phalanx of left index finger, 7thP|Disp fx of middle phalanx of left index finger, 7thP +C2852271|T037|AB|S62.621S|ICD10CM|Disp fx of middle phalanx of left index finger, sequela|Disp fx of middle phalanx of left index finger, sequela +C2852271|T037|PT|S62.621S|ICD10CM|Displaced fracture of middle phalanx of left index finger, sequela|Displaced fracture of middle phalanx of left index finger, sequela +C2852272|T037|AB|S62.622|ICD10CM|Displaced fracture of middle phalanx of right middle finger|Displaced fracture of middle phalanx of right middle finger +C2852272|T037|HT|S62.622|ICD10CM|Displaced fracture of middle phalanx of right middle finger|Displaced fracture of middle phalanx of right middle finger +C2852273|T037|AB|S62.622A|ICD10CM|Displaced fracture of middle phalanx of r mid finger, init|Displaced fracture of middle phalanx of r mid finger, init +C2852273|T037|PT|S62.622A|ICD10CM|Displaced fracture of middle phalanx of right middle finger, initial encounter for closed fracture|Displaced fracture of middle phalanx of right middle finger, initial encounter for closed fracture +C2852274|T037|AB|S62.622B|ICD10CM|Displaced fracture of middle phalanx of r mid finger, 7thB|Displaced fracture of middle phalanx of r mid finger, 7thB +C2852274|T037|PT|S62.622B|ICD10CM|Displaced fracture of middle phalanx of right middle finger, initial encounter for open fracture|Displaced fracture of middle phalanx of right middle finger, initial encounter for open fracture +C2852275|T037|AB|S62.622D|ICD10CM|Displaced fracture of middle phalanx of r mid finger, 7thD|Displaced fracture of middle phalanx of r mid finger, 7thD +C2852276|T037|AB|S62.622G|ICD10CM|Displaced fracture of middle phalanx of r mid finger, 7thG|Displaced fracture of middle phalanx of r mid finger, 7thG +C2852277|T037|AB|S62.622K|ICD10CM|Displaced fracture of middle phalanx of r mid finger, 7thK|Displaced fracture of middle phalanx of r mid finger, 7thK +C2852278|T037|AB|S62.622P|ICD10CM|Displaced fracture of middle phalanx of r mid finger, 7thP|Displaced fracture of middle phalanx of r mid finger, 7thP +C2852279|T037|AB|S62.622S|ICD10CM|Disp fx of middle phalanx of r mid finger, sequela|Disp fx of middle phalanx of r mid finger, sequela +C2852279|T037|PT|S62.622S|ICD10CM|Displaced fracture of middle phalanx of right middle finger, sequela|Displaced fracture of middle phalanx of right middle finger, sequela +C2852280|T037|AB|S62.623|ICD10CM|Displaced fracture of middle phalanx of left middle finger|Displaced fracture of middle phalanx of left middle finger +C2852280|T037|HT|S62.623|ICD10CM|Displaced fracture of middle phalanx of left middle finger|Displaced fracture of middle phalanx of left middle finger +C2852281|T037|AB|S62.623A|ICD10CM|Disp fx of middle phalanx of left middle finger, init|Disp fx of middle phalanx of left middle finger, init +C2852281|T037|PT|S62.623A|ICD10CM|Displaced fracture of middle phalanx of left middle finger, initial encounter for closed fracture|Displaced fracture of middle phalanx of left middle finger, initial encounter for closed fracture +C2852282|T037|AB|S62.623B|ICD10CM|Disp fx of middle phalanx of left middle finger, 7thB|Disp fx of middle phalanx of left middle finger, 7thB +C2852282|T037|PT|S62.623B|ICD10CM|Displaced fracture of middle phalanx of left middle finger, initial encounter for open fracture|Displaced fracture of middle phalanx of left middle finger, initial encounter for open fracture +C2852283|T037|AB|S62.623D|ICD10CM|Disp fx of middle phalanx of left middle finger, 7thD|Disp fx of middle phalanx of left middle finger, 7thD +C2852284|T037|AB|S62.623G|ICD10CM|Disp fx of middle phalanx of left middle finger, 7thG|Disp fx of middle phalanx of left middle finger, 7thG +C2852285|T037|AB|S62.623K|ICD10CM|Disp fx of middle phalanx of left middle finger, 7thK|Disp fx of middle phalanx of left middle finger, 7thK +C2852286|T037|AB|S62.623P|ICD10CM|Disp fx of middle phalanx of left middle finger, 7thP|Disp fx of middle phalanx of left middle finger, 7thP +C2852287|T037|AB|S62.623S|ICD10CM|Disp fx of middle phalanx of left middle finger, sequela|Disp fx of middle phalanx of left middle finger, sequela +C2852287|T037|PT|S62.623S|ICD10CM|Displaced fracture of middle phalanx of left middle finger, sequela|Displaced fracture of middle phalanx of left middle finger, sequela +C2852288|T037|AB|S62.624|ICD10CM|Displaced fracture of middle phalanx of right ring finger|Displaced fracture of middle phalanx of right ring finger +C2852288|T037|HT|S62.624|ICD10CM|Displaced fracture of middle phalanx of right ring finger|Displaced fracture of middle phalanx of right ring finger +C2852289|T037|AB|S62.624A|ICD10CM|Disp fx of middle phalanx of right ring finger, init|Disp fx of middle phalanx of right ring finger, init +C2852289|T037|PT|S62.624A|ICD10CM|Displaced fracture of middle phalanx of right ring finger, initial encounter for closed fracture|Displaced fracture of middle phalanx of right ring finger, initial encounter for closed fracture +C2852290|T037|AB|S62.624B|ICD10CM|Disp fx of middle phalanx of right ring finger, 7thB|Disp fx of middle phalanx of right ring finger, 7thB +C2852290|T037|PT|S62.624B|ICD10CM|Displaced fracture of middle phalanx of right ring finger, initial encounter for open fracture|Displaced fracture of middle phalanx of right ring finger, initial encounter for open fracture +C2852291|T037|AB|S62.624D|ICD10CM|Disp fx of middle phalanx of right ring finger, 7thD|Disp fx of middle phalanx of right ring finger, 7thD +C2852292|T037|AB|S62.624G|ICD10CM|Disp fx of middle phalanx of right ring finger, 7thG|Disp fx of middle phalanx of right ring finger, 7thG +C2852293|T037|AB|S62.624K|ICD10CM|Disp fx of middle phalanx of right ring finger, 7thK|Disp fx of middle phalanx of right ring finger, 7thK +C2852294|T037|AB|S62.624P|ICD10CM|Disp fx of middle phalanx of right ring finger, 7thP|Disp fx of middle phalanx of right ring finger, 7thP +C2852295|T037|AB|S62.624S|ICD10CM|Disp fx of middle phalanx of right ring finger, sequela|Disp fx of middle phalanx of right ring finger, sequela +C2852295|T037|PT|S62.624S|ICD10CM|Displaced fracture of middle phalanx of right ring finger, sequela|Displaced fracture of middle phalanx of right ring finger, sequela +C2852296|T037|AB|S62.625|ICD10CM|Displaced fracture of middle phalanx of left ring finger|Displaced fracture of middle phalanx of left ring finger +C2852296|T037|HT|S62.625|ICD10CM|Displaced fracture of middle phalanx of left ring finger|Displaced fracture of middle phalanx of left ring finger +C2852297|T037|AB|S62.625A|ICD10CM|Disp fx of middle phalanx of left ring finger, init|Disp fx of middle phalanx of left ring finger, init +C2852297|T037|PT|S62.625A|ICD10CM|Displaced fracture of middle phalanx of left ring finger, initial encounter for closed fracture|Displaced fracture of middle phalanx of left ring finger, initial encounter for closed fracture +C2852298|T037|AB|S62.625B|ICD10CM|Disp fx of middle phalanx of left ring finger, 7thB|Disp fx of middle phalanx of left ring finger, 7thB +C2852298|T037|PT|S62.625B|ICD10CM|Displaced fracture of middle phalanx of left ring finger, initial encounter for open fracture|Displaced fracture of middle phalanx of left ring finger, initial encounter for open fracture +C2852299|T037|AB|S62.625D|ICD10CM|Disp fx of middle phalanx of left ring finger, 7thD|Disp fx of middle phalanx of left ring finger, 7thD +C2852300|T037|AB|S62.625G|ICD10CM|Disp fx of middle phalanx of left ring finger, 7thG|Disp fx of middle phalanx of left ring finger, 7thG +C2852301|T037|AB|S62.625K|ICD10CM|Disp fx of middle phalanx of left ring finger, 7thK|Disp fx of middle phalanx of left ring finger, 7thK +C2852302|T037|AB|S62.625P|ICD10CM|Disp fx of middle phalanx of left ring finger, 7thP|Disp fx of middle phalanx of left ring finger, 7thP +C2852303|T037|AB|S62.625S|ICD10CM|Disp fx of middle phalanx of left ring finger, sequela|Disp fx of middle phalanx of left ring finger, sequela +C2852303|T037|PT|S62.625S|ICD10CM|Displaced fracture of middle phalanx of left ring finger, sequela|Displaced fracture of middle phalanx of left ring finger, sequela +C2852304|T037|AB|S62.626|ICD10CM|Displaced fracture of middle phalanx of right little finger|Displaced fracture of middle phalanx of right little finger +C2852304|T037|HT|S62.626|ICD10CM|Displaced fracture of middle phalanx of right little finger|Displaced fracture of middle phalanx of right little finger +C2852305|T037|AB|S62.626A|ICD10CM|Disp fx of middle phalanx of r little finger, init|Disp fx of middle phalanx of r little finger, init +C2852305|T037|PT|S62.626A|ICD10CM|Displaced fracture of middle phalanx of right little finger, initial encounter for closed fracture|Displaced fracture of middle phalanx of right little finger, initial encounter for closed fracture +C2852306|T037|AB|S62.626B|ICD10CM|Disp fx of middle phalanx of r little finger, 7thB|Disp fx of middle phalanx of r little finger, 7thB +C2852306|T037|PT|S62.626B|ICD10CM|Displaced fracture of middle phalanx of right little finger, initial encounter for open fracture|Displaced fracture of middle phalanx of right little finger, initial encounter for open fracture +C2852307|T037|AB|S62.626D|ICD10CM|Disp fx of middle phalanx of r little finger, 7thD|Disp fx of middle phalanx of r little finger, 7thD +C2852308|T037|AB|S62.626G|ICD10CM|Disp fx of middle phalanx of r little finger, 7thG|Disp fx of middle phalanx of r little finger, 7thG +C2852309|T037|AB|S62.626K|ICD10CM|Disp fx of middle phalanx of r little finger, 7thK|Disp fx of middle phalanx of r little finger, 7thK +C2852310|T037|AB|S62.626P|ICD10CM|Disp fx of middle phalanx of r little finger, 7thP|Disp fx of middle phalanx of r little finger, 7thP +C2852311|T037|AB|S62.626S|ICD10CM|Disp fx of middle phalanx of r little finger, sequela|Disp fx of middle phalanx of r little finger, sequela +C2852311|T037|PT|S62.626S|ICD10CM|Displaced fracture of middle phalanx of right little finger, sequela|Displaced fracture of middle phalanx of right little finger, sequela +C2852312|T037|AB|S62.627|ICD10CM|Displaced fracture of middle phalanx of left little finger|Displaced fracture of middle phalanx of left little finger +C2852312|T037|HT|S62.627|ICD10CM|Displaced fracture of middle phalanx of left little finger|Displaced fracture of middle phalanx of left little finger +C2852313|T037|AB|S62.627A|ICD10CM|Disp fx of middle phalanx of left little finger, init|Disp fx of middle phalanx of left little finger, init +C2852313|T037|PT|S62.627A|ICD10CM|Displaced fracture of middle phalanx of left little finger, initial encounter for closed fracture|Displaced fracture of middle phalanx of left little finger, initial encounter for closed fracture +C2852314|T037|AB|S62.627B|ICD10CM|Disp fx of middle phalanx of left little finger, 7thB|Disp fx of middle phalanx of left little finger, 7thB +C2852314|T037|PT|S62.627B|ICD10CM|Displaced fracture of middle phalanx of left little finger, initial encounter for open fracture|Displaced fracture of middle phalanx of left little finger, initial encounter for open fracture +C2852315|T037|AB|S62.627D|ICD10CM|Disp fx of middle phalanx of left little finger, 7thD|Disp fx of middle phalanx of left little finger, 7thD +C2852316|T037|AB|S62.627G|ICD10CM|Disp fx of middle phalanx of left little finger, 7thG|Disp fx of middle phalanx of left little finger, 7thG +C2852317|T037|AB|S62.627K|ICD10CM|Disp fx of middle phalanx of left little finger, 7thK|Disp fx of middle phalanx of left little finger, 7thK +C2852318|T037|AB|S62.627P|ICD10CM|Disp fx of middle phalanx of left little finger, 7thP|Disp fx of middle phalanx of left little finger, 7thP +C2852319|T037|AB|S62.627S|ICD10CM|Disp fx of middle phalanx of left little finger, sequela|Disp fx of middle phalanx of left little finger, sequela +C2852319|T037|PT|S62.627S|ICD10CM|Displaced fracture of middle phalanx of left little finger, sequela|Displaced fracture of middle phalanx of left little finger, sequela +C2852321|T037|AB|S62.628|ICD10CM|Displaced fracture of middle phalanx of other finger|Displaced fracture of middle phalanx of other finger +C2852321|T037|HT|S62.628|ICD10CM|Displaced fracture of middle phalanx of other finger|Displaced fracture of middle phalanx of other finger +C2852320|T037|ET|S62.628|ICD10CM|Displaced fracture of middle phalanx of specified finger with unspecified laterality|Displaced fracture of middle phalanx of specified finger with unspecified laterality +C2852322|T037|AB|S62.628A|ICD10CM|Displaced fracture of middle phalanx of other finger, init|Displaced fracture of middle phalanx of other finger, init +C2852322|T037|PT|S62.628A|ICD10CM|Displaced fracture of middle phalanx of other finger, initial encounter for closed fracture|Displaced fracture of middle phalanx of other finger, initial encounter for closed fracture +C2852323|T037|AB|S62.628B|ICD10CM|Displaced fracture of middle phalanx of other finger, 7thB|Displaced fracture of middle phalanx of other finger, 7thB +C2852323|T037|PT|S62.628B|ICD10CM|Displaced fracture of middle phalanx of other finger, initial encounter for open fracture|Displaced fracture of middle phalanx of other finger, initial encounter for open fracture +C2852324|T037|AB|S62.628D|ICD10CM|Displaced fracture of middle phalanx of other finger, 7thD|Displaced fracture of middle phalanx of other finger, 7thD +C2852325|T037|AB|S62.628G|ICD10CM|Displaced fracture of middle phalanx of other finger, 7thG|Displaced fracture of middle phalanx of other finger, 7thG +C2852326|T037|AB|S62.628K|ICD10CM|Displaced fracture of middle phalanx of other finger, 7thK|Displaced fracture of middle phalanx of other finger, 7thK +C2852327|T037|AB|S62.628P|ICD10CM|Displaced fracture of middle phalanx of other finger, 7thP|Displaced fracture of middle phalanx of other finger, 7thP +C2852328|T037|AB|S62.628S|ICD10CM|Disp fx of middle phalanx of other finger, sequela|Disp fx of middle phalanx of other finger, sequela +C2852328|T037|PT|S62.628S|ICD10CM|Displaced fracture of middle phalanx of other finger, sequela|Displaced fracture of middle phalanx of other finger, sequela +C2852329|T037|AB|S62.629|ICD10CM|Displaced fracture of middle phalanx of unspecified finger|Displaced fracture of middle phalanx of unspecified finger +C2852329|T037|HT|S62.629|ICD10CM|Displaced fracture of middle phalanx of unspecified finger|Displaced fracture of middle phalanx of unspecified finger +C2852330|T037|AB|S62.629A|ICD10CM|Disp fx of middle phalanx of unspecified finger, init|Disp fx of middle phalanx of unspecified finger, init +C2852330|T037|PT|S62.629A|ICD10CM|Displaced fracture of middle phalanx of unspecified finger, initial encounter for closed fracture|Displaced fracture of middle phalanx of unspecified finger, initial encounter for closed fracture +C2852331|T037|AB|S62.629B|ICD10CM|Disp fx of middle phalanx of unspecified finger, 7thB|Disp fx of middle phalanx of unspecified finger, 7thB +C2852331|T037|PT|S62.629B|ICD10CM|Displaced fracture of middle phalanx of unspecified finger, initial encounter for open fracture|Displaced fracture of middle phalanx of unspecified finger, initial encounter for open fracture +C2852332|T037|AB|S62.629D|ICD10CM|Disp fx of middle phalanx of unspecified finger, 7thD|Disp fx of middle phalanx of unspecified finger, 7thD +C2852333|T037|AB|S62.629G|ICD10CM|Disp fx of middle phalanx of unspecified finger, 7thG|Disp fx of middle phalanx of unspecified finger, 7thG +C2852334|T037|AB|S62.629K|ICD10CM|Disp fx of middle phalanx of unspecified finger, 7thK|Disp fx of middle phalanx of unspecified finger, 7thK +C2852335|T037|AB|S62.629P|ICD10CM|Disp fx of middle phalanx of unspecified finger, 7thP|Disp fx of middle phalanx of unspecified finger, 7thP +C2852336|T037|AB|S62.629S|ICD10CM|Disp fx of middle phalanx of unspecified finger, sequela|Disp fx of middle phalanx of unspecified finger, sequela +C2852336|T037|PT|S62.629S|ICD10CM|Displaced fracture of middle phalanx of unspecified finger, sequela|Displaced fracture of middle phalanx of unspecified finger, sequela +C2852337|T037|AB|S62.63|ICD10CM|Displaced fracture of distal phalanx of finger|Displaced fracture of distal phalanx of finger +C2852337|T037|HT|S62.63|ICD10CM|Displaced fracture of distal phalanx of finger|Displaced fracture of distal phalanx of finger +C2852338|T037|AB|S62.630|ICD10CM|Displaced fracture of distal phalanx of right index finger|Displaced fracture of distal phalanx of right index finger +C2852338|T037|HT|S62.630|ICD10CM|Displaced fracture of distal phalanx of right index finger|Displaced fracture of distal phalanx of right index finger +C2852339|T037|AB|S62.630A|ICD10CM|Disp fx of distal phalanx of right index finger, init|Disp fx of distal phalanx of right index finger, init +C2852339|T037|PT|S62.630A|ICD10CM|Displaced fracture of distal phalanx of right index finger, initial encounter for closed fracture|Displaced fracture of distal phalanx of right index finger, initial encounter for closed fracture +C2852340|T037|AB|S62.630B|ICD10CM|Disp fx of distal phalanx of r idx fngr, init for opn fx|Disp fx of distal phalanx of r idx fngr, init for opn fx +C2852340|T037|PT|S62.630B|ICD10CM|Displaced fracture of distal phalanx of right index finger, initial encounter for open fracture|Displaced fracture of distal phalanx of right index finger, initial encounter for open fracture +C2852341|T037|AB|S62.630D|ICD10CM|Disp fx of dist phalanx of r idx fngr, 7thD|Disp fx of dist phalanx of r idx fngr, 7thD +C2852342|T037|AB|S62.630G|ICD10CM|Disp fx of dist phalanx of r idx fngr, 7thG|Disp fx of dist phalanx of r idx fngr, 7thG +C2852343|T037|AB|S62.630K|ICD10CM|Disp fx of dist phalanx of r idx fngr, 7thK|Disp fx of dist phalanx of r idx fngr, 7thK +C2852344|T037|AB|S62.630P|ICD10CM|Disp fx of dist phalanx of r idx fngr, 7thP|Disp fx of dist phalanx of r idx fngr, 7thP +C2852345|T037|AB|S62.630S|ICD10CM|Disp fx of distal phalanx of right index finger, sequela|Disp fx of distal phalanx of right index finger, sequela +C2852345|T037|PT|S62.630S|ICD10CM|Displaced fracture of distal phalanx of right index finger, sequela|Displaced fracture of distal phalanx of right index finger, sequela +C2852346|T037|AB|S62.631|ICD10CM|Displaced fracture of distal phalanx of left index finger|Displaced fracture of distal phalanx of left index finger +C2852346|T037|HT|S62.631|ICD10CM|Displaced fracture of distal phalanx of left index finger|Displaced fracture of distal phalanx of left index finger +C2852347|T037|AB|S62.631A|ICD10CM|Disp fx of distal phalanx of left index finger, init|Disp fx of distal phalanx of left index finger, init +C2852347|T037|PT|S62.631A|ICD10CM|Displaced fracture of distal phalanx of left index finger, initial encounter for closed fracture|Displaced fracture of distal phalanx of left index finger, initial encounter for closed fracture +C2852348|T037|AB|S62.631B|ICD10CM|Disp fx of distal phalanx of l idx fngr, init for opn fx|Disp fx of distal phalanx of l idx fngr, init for opn fx +C2852348|T037|PT|S62.631B|ICD10CM|Displaced fracture of distal phalanx of left index finger, initial encounter for open fracture|Displaced fracture of distal phalanx of left index finger, initial encounter for open fracture +C2852349|T037|AB|S62.631D|ICD10CM|Disp fx of dist phalanx of l idx fngr, 7thD|Disp fx of dist phalanx of l idx fngr, 7thD +C2852350|T037|AB|S62.631G|ICD10CM|Disp fx of dist phalanx of l idx fngr, 7thG|Disp fx of dist phalanx of l idx fngr, 7thG +C2852351|T037|AB|S62.631K|ICD10CM|Disp fx of dist phalanx of l idx fngr, 7thK|Disp fx of dist phalanx of l idx fngr, 7thK +C2852352|T037|AB|S62.631P|ICD10CM|Disp fx of dist phalanx of l idx fngr, 7thP|Disp fx of dist phalanx of l idx fngr, 7thP +C2852353|T037|AB|S62.631S|ICD10CM|Disp fx of distal phalanx of left index finger, sequela|Disp fx of distal phalanx of left index finger, sequela +C2852353|T037|PT|S62.631S|ICD10CM|Displaced fracture of distal phalanx of left index finger, sequela|Displaced fracture of distal phalanx of left index finger, sequela +C2852354|T037|AB|S62.632|ICD10CM|Displaced fracture of distal phalanx of right middle finger|Displaced fracture of distal phalanx of right middle finger +C2852354|T037|HT|S62.632|ICD10CM|Displaced fracture of distal phalanx of right middle finger|Displaced fracture of distal phalanx of right middle finger +C2852355|T037|AB|S62.632A|ICD10CM|Disp fx of distal phalanx of right middle finger, init|Disp fx of distal phalanx of right middle finger, init +C2852355|T037|PT|S62.632A|ICD10CM|Displaced fracture of distal phalanx of right middle finger, initial encounter for closed fracture|Displaced fracture of distal phalanx of right middle finger, initial encounter for closed fracture +C2852356|T037|AB|S62.632B|ICD10CM|Disp fx of distal phalanx of r mid finger, init for opn fx|Disp fx of distal phalanx of r mid finger, init for opn fx +C2852356|T037|PT|S62.632B|ICD10CM|Displaced fracture of distal phalanx of right middle finger, initial encounter for open fracture|Displaced fracture of distal phalanx of right middle finger, initial encounter for open fracture +C2852357|T037|AB|S62.632D|ICD10CM|Disp fx of dist phalanx of r mid fngr, 7thD|Disp fx of dist phalanx of r mid fngr, 7thD +C2852358|T037|AB|S62.632G|ICD10CM|Disp fx of dist phalanx of r mid fngr, 7thG|Disp fx of dist phalanx of r mid fngr, 7thG +C2852359|T037|AB|S62.632K|ICD10CM|Disp fx of dist phalanx of r mid fngr, 7thK|Disp fx of dist phalanx of r mid fngr, 7thK +C2852360|T037|AB|S62.632P|ICD10CM|Disp fx of dist phalanx of r mid fngr, 7thP|Disp fx of dist phalanx of r mid fngr, 7thP +C2852361|T037|AB|S62.632S|ICD10CM|Disp fx of distal phalanx of right middle finger, sequela|Disp fx of distal phalanx of right middle finger, sequela +C2852361|T037|PT|S62.632S|ICD10CM|Displaced fracture of distal phalanx of right middle finger, sequela|Displaced fracture of distal phalanx of right middle finger, sequela +C2852362|T037|AB|S62.633|ICD10CM|Displaced fracture of distal phalanx of left middle finger|Displaced fracture of distal phalanx of left middle finger +C2852362|T037|HT|S62.633|ICD10CM|Displaced fracture of distal phalanx of left middle finger|Displaced fracture of distal phalanx of left middle finger +C2852363|T037|AB|S62.633A|ICD10CM|Disp fx of distal phalanx of left middle finger, init|Disp fx of distal phalanx of left middle finger, init +C2852363|T037|PT|S62.633A|ICD10CM|Displaced fracture of distal phalanx of left middle finger, initial encounter for closed fracture|Displaced fracture of distal phalanx of left middle finger, initial encounter for closed fracture +C2852364|T037|AB|S62.633B|ICD10CM|Disp fx of distal phalanx of l mid finger, init for opn fx|Disp fx of distal phalanx of l mid finger, init for opn fx +C2852364|T037|PT|S62.633B|ICD10CM|Displaced fracture of distal phalanx of left middle finger, initial encounter for open fracture|Displaced fracture of distal phalanx of left middle finger, initial encounter for open fracture +C2852365|T037|AB|S62.633D|ICD10CM|Disp fx of dist phalanx of l mid fngr, 7thD|Disp fx of dist phalanx of l mid fngr, 7thD +C2852366|T037|AB|S62.633G|ICD10CM|Disp fx of dist phalanx of l mid fngr, 7thG|Disp fx of dist phalanx of l mid fngr, 7thG +C2852367|T037|AB|S62.633K|ICD10CM|Disp fx of dist phalanx of l mid fngr, 7thK|Disp fx of dist phalanx of l mid fngr, 7thK +C2852368|T037|AB|S62.633P|ICD10CM|Disp fx of dist phalanx of l mid fngr, 7thP|Disp fx of dist phalanx of l mid fngr, 7thP +C2852369|T037|AB|S62.633S|ICD10CM|Disp fx of distal phalanx of left middle finger, sequela|Disp fx of distal phalanx of left middle finger, sequela +C2852369|T037|PT|S62.633S|ICD10CM|Displaced fracture of distal phalanx of left middle finger, sequela|Displaced fracture of distal phalanx of left middle finger, sequela +C2852370|T037|AB|S62.634|ICD10CM|Displaced fracture of distal phalanx of right ring finger|Displaced fracture of distal phalanx of right ring finger +C2852370|T037|HT|S62.634|ICD10CM|Displaced fracture of distal phalanx of right ring finger|Displaced fracture of distal phalanx of right ring finger +C2852371|T037|AB|S62.634A|ICD10CM|Disp fx of distal phalanx of right ring finger, init|Disp fx of distal phalanx of right ring finger, init +C2852371|T037|PT|S62.634A|ICD10CM|Displaced fracture of distal phalanx of right ring finger, initial encounter for closed fracture|Displaced fracture of distal phalanx of right ring finger, initial encounter for closed fracture +C2852372|T037|AB|S62.634B|ICD10CM|Disp fx of distal phalanx of r rng fngr, init for opn fx|Disp fx of distal phalanx of r rng fngr, init for opn fx +C2852372|T037|PT|S62.634B|ICD10CM|Displaced fracture of distal phalanx of right ring finger, initial encounter for open fracture|Displaced fracture of distal phalanx of right ring finger, initial encounter for open fracture +C2852373|T037|AB|S62.634D|ICD10CM|Disp fx of dist phalanx of r rng fngr, 7thD|Disp fx of dist phalanx of r rng fngr, 7thD +C2852374|T037|AB|S62.634G|ICD10CM|Disp fx of dist phalanx of r rng fngr, 7thG|Disp fx of dist phalanx of r rng fngr, 7thG +C2852375|T037|AB|S62.634K|ICD10CM|Disp fx of dist phalanx of r rng fngr, 7thK|Disp fx of dist phalanx of r rng fngr, 7thK +C2852376|T037|AB|S62.634P|ICD10CM|Disp fx of dist phalanx of r rng fngr, 7thP|Disp fx of dist phalanx of r rng fngr, 7thP +C2852377|T037|AB|S62.634S|ICD10CM|Disp fx of distal phalanx of right ring finger, sequela|Disp fx of distal phalanx of right ring finger, sequela +C2852377|T037|PT|S62.634S|ICD10CM|Displaced fracture of distal phalanx of right ring finger, sequela|Displaced fracture of distal phalanx of right ring finger, sequela +C2852378|T037|AB|S62.635|ICD10CM|Displaced fracture of distal phalanx of left ring finger|Displaced fracture of distal phalanx of left ring finger +C2852378|T037|HT|S62.635|ICD10CM|Displaced fracture of distal phalanx of left ring finger|Displaced fracture of distal phalanx of left ring finger +C2852379|T037|AB|S62.635A|ICD10CM|Disp fx of distal phalanx of left ring finger, init|Disp fx of distal phalanx of left ring finger, init +C2852379|T037|PT|S62.635A|ICD10CM|Displaced fracture of distal phalanx of left ring finger, initial encounter for closed fracture|Displaced fracture of distal phalanx of left ring finger, initial encounter for closed fracture +C2852380|T037|AB|S62.635B|ICD10CM|Disp fx of distal phalanx of l rng fngr, init for opn fx|Disp fx of distal phalanx of l rng fngr, init for opn fx +C2852380|T037|PT|S62.635B|ICD10CM|Displaced fracture of distal phalanx of left ring finger, initial encounter for open fracture|Displaced fracture of distal phalanx of left ring finger, initial encounter for open fracture +C2852381|T037|AB|S62.635D|ICD10CM|Disp fx of dist phalanx of l rng fngr, 7thD|Disp fx of dist phalanx of l rng fngr, 7thD +C2852382|T037|AB|S62.635G|ICD10CM|Disp fx of dist phalanx of l rng fngr, 7thG|Disp fx of dist phalanx of l rng fngr, 7thG +C2852383|T037|AB|S62.635K|ICD10CM|Disp fx of dist phalanx of l rng fngr, 7thK|Disp fx of dist phalanx of l rng fngr, 7thK +C2852384|T037|AB|S62.635P|ICD10CM|Disp fx of dist phalanx of l rng fngr, 7thP|Disp fx of dist phalanx of l rng fngr, 7thP +C2852385|T037|AB|S62.635S|ICD10CM|Disp fx of distal phalanx of left ring finger, sequela|Disp fx of distal phalanx of left ring finger, sequela +C2852385|T037|PT|S62.635S|ICD10CM|Displaced fracture of distal phalanx of left ring finger, sequela|Displaced fracture of distal phalanx of left ring finger, sequela +C2852386|T037|AB|S62.636|ICD10CM|Displaced fracture of distal phalanx of right little finger|Displaced fracture of distal phalanx of right little finger +C2852386|T037|HT|S62.636|ICD10CM|Displaced fracture of distal phalanx of right little finger|Displaced fracture of distal phalanx of right little finger +C2852387|T037|AB|S62.636A|ICD10CM|Disp fx of distal phalanx of right little finger, init|Disp fx of distal phalanx of right little finger, init +C2852387|T037|PT|S62.636A|ICD10CM|Displaced fracture of distal phalanx of right little finger, initial encounter for closed fracture|Displaced fracture of distal phalanx of right little finger, initial encounter for closed fracture +C2852388|T037|AB|S62.636B|ICD10CM|Disp fx of dist phalanx of r little finger, init for opn fx|Disp fx of dist phalanx of r little finger, init for opn fx +C2852388|T037|PT|S62.636B|ICD10CM|Displaced fracture of distal phalanx of right little finger, initial encounter for open fracture|Displaced fracture of distal phalanx of right little finger, initial encounter for open fracture +C2852389|T037|AB|S62.636D|ICD10CM|Disp fx of dist phalanx of r lit fngr, 7thD|Disp fx of dist phalanx of r lit fngr, 7thD +C2852390|T037|AB|S62.636G|ICD10CM|Disp fx of dist phalanx of r lit fngr, 7thG|Disp fx of dist phalanx of r lit fngr, 7thG +C2852391|T037|AB|S62.636K|ICD10CM|Disp fx of dist phalanx of r lit fngr, 7thK|Disp fx of dist phalanx of r lit fngr, 7thK +C2852392|T037|AB|S62.636P|ICD10CM|Disp fx of dist phalanx of r lit fngr, 7thP|Disp fx of dist phalanx of r lit fngr, 7thP +C2852393|T037|AB|S62.636S|ICD10CM|Disp fx of distal phalanx of right little finger, sequela|Disp fx of distal phalanx of right little finger, sequela +C2852393|T037|PT|S62.636S|ICD10CM|Displaced fracture of distal phalanx of right little finger, sequela|Displaced fracture of distal phalanx of right little finger, sequela +C2852394|T037|AB|S62.637|ICD10CM|Displaced fracture of distal phalanx of left little finger|Displaced fracture of distal phalanx of left little finger +C2852394|T037|HT|S62.637|ICD10CM|Displaced fracture of distal phalanx of left little finger|Displaced fracture of distal phalanx of left little finger +C2852395|T037|AB|S62.637A|ICD10CM|Disp fx of distal phalanx of left little finger, init|Disp fx of distal phalanx of left little finger, init +C2852395|T037|PT|S62.637A|ICD10CM|Displaced fracture of distal phalanx of left little finger, initial encounter for closed fracture|Displaced fracture of distal phalanx of left little finger, initial encounter for closed fracture +C2852396|T037|AB|S62.637B|ICD10CM|Disp fx of dist phalanx of l little finger, init for opn fx|Disp fx of dist phalanx of l little finger, init for opn fx +C2852396|T037|PT|S62.637B|ICD10CM|Displaced fracture of distal phalanx of left little finger, initial encounter for open fracture|Displaced fracture of distal phalanx of left little finger, initial encounter for open fracture +C2852397|T037|AB|S62.637D|ICD10CM|Disp fx of dist phalanx of l lit fngr, 7thD|Disp fx of dist phalanx of l lit fngr, 7thD +C2852398|T037|AB|S62.637G|ICD10CM|Disp fx of dist phalanx of l lit fngr, 7thG|Disp fx of dist phalanx of l lit fngr, 7thG +C2852399|T037|AB|S62.637K|ICD10CM|Disp fx of dist phalanx of l lit fngr, 7thK|Disp fx of dist phalanx of l lit fngr, 7thK +C2852400|T037|AB|S62.637P|ICD10CM|Disp fx of dist phalanx of l lit fngr, 7thP|Disp fx of dist phalanx of l lit fngr, 7thP +C2852401|T037|AB|S62.637S|ICD10CM|Disp fx of distal phalanx of left little finger, sequela|Disp fx of distal phalanx of left little finger, sequela +C2852401|T037|PT|S62.637S|ICD10CM|Displaced fracture of distal phalanx of left little finger, sequela|Displaced fracture of distal phalanx of left little finger, sequela +C2852403|T037|AB|S62.638|ICD10CM|Displaced fracture of distal phalanx of other finger|Displaced fracture of distal phalanx of other finger +C2852403|T037|HT|S62.638|ICD10CM|Displaced fracture of distal phalanx of other finger|Displaced fracture of distal phalanx of other finger +C2852402|T037|ET|S62.638|ICD10CM|Displaced fracture of distal phalanx of specified finger with unspecified laterality|Displaced fracture of distal phalanx of specified finger with unspecified laterality +C2852404|T037|AB|S62.638A|ICD10CM|Disp fx of distal phalanx of oth finger, init for clos fx|Disp fx of distal phalanx of oth finger, init for clos fx +C2852404|T037|PT|S62.638A|ICD10CM|Displaced fracture of distal phalanx of other finger, initial encounter for closed fracture|Displaced fracture of distal phalanx of other finger, initial encounter for closed fracture +C2852405|T037|AB|S62.638B|ICD10CM|Disp fx of distal phalanx of oth finger, init for opn fx|Disp fx of distal phalanx of oth finger, init for opn fx +C2852405|T037|PT|S62.638B|ICD10CM|Displaced fracture of distal phalanx of other finger, initial encounter for open fracture|Displaced fracture of distal phalanx of other finger, initial encounter for open fracture +C2852406|T037|AB|S62.638D|ICD10CM|Disp fx of dist phalanx of finger, subs for fx w routn heal|Disp fx of dist phalanx of finger, subs for fx w routn heal +C2852407|T037|AB|S62.638G|ICD10CM|Disp fx of dist phalanx of finger, subs for fx w delay heal|Disp fx of dist phalanx of finger, subs for fx w delay heal +C2852408|T037|AB|S62.638K|ICD10CM|Disp fx of distal phalanx of finger, subs for fx w nonunion|Disp fx of distal phalanx of finger, subs for fx w nonunion +C2852409|T037|AB|S62.638P|ICD10CM|Disp fx of distal phalanx of finger, subs for fx w malunion|Disp fx of distal phalanx of finger, subs for fx w malunion +C2852410|T037|AB|S62.638S|ICD10CM|Disp fx of distal phalanx of other finger, sequela|Disp fx of distal phalanx of other finger, sequela +C2852410|T037|PT|S62.638S|ICD10CM|Displaced fracture of distal phalanx of other finger, sequela|Displaced fracture of distal phalanx of other finger, sequela +C2852411|T037|AB|S62.639|ICD10CM|Displaced fracture of distal phalanx of unspecified finger|Displaced fracture of distal phalanx of unspecified finger +C2852411|T037|HT|S62.639|ICD10CM|Displaced fracture of distal phalanx of unspecified finger|Displaced fracture of distal phalanx of unspecified finger +C2852412|T037|AB|S62.639A|ICD10CM|Disp fx of distal phalanx of unsp finger, init for clos fx|Disp fx of distal phalanx of unsp finger, init for clos fx +C2852412|T037|PT|S62.639A|ICD10CM|Displaced fracture of distal phalanx of unspecified finger, initial encounter for closed fracture|Displaced fracture of distal phalanx of unspecified finger, initial encounter for closed fracture +C2852413|T037|AB|S62.639B|ICD10CM|Disp fx of distal phalanx of unsp finger, init for opn fx|Disp fx of distal phalanx of unsp finger, init for opn fx +C2852413|T037|PT|S62.639B|ICD10CM|Displaced fracture of distal phalanx of unspecified finger, initial encounter for open fracture|Displaced fracture of distal phalanx of unspecified finger, initial encounter for open fracture +C2852414|T037|AB|S62.639D|ICD10CM|Disp fx of dist phalanx of unsp fngr, 7thD|Disp fx of dist phalanx of unsp fngr, 7thD +C2852415|T037|AB|S62.639G|ICD10CM|Disp fx of dist phalanx of unsp fngr, 7thG|Disp fx of dist phalanx of unsp fngr, 7thG +C2852416|T037|AB|S62.639K|ICD10CM|Disp fx of dist phalanx of unsp fngr, subs for fx w nonunion|Disp fx of dist phalanx of unsp fngr, subs for fx w nonunion +C2852417|T037|AB|S62.639P|ICD10CM|Disp fx of dist phalanx of unsp fngr, subs for fx w malunion|Disp fx of dist phalanx of unsp fngr, subs for fx w malunion +C2852418|T037|AB|S62.639S|ICD10CM|Disp fx of distal phalanx of unspecified finger, sequela|Disp fx of distal phalanx of unspecified finger, sequela +C2852418|T037|PT|S62.639S|ICD10CM|Displaced fracture of distal phalanx of unspecified finger, sequela|Displaced fracture of distal phalanx of unspecified finger, sequela +C2852419|T037|AB|S62.64|ICD10CM|Nondisplaced fracture of proximal phalanx of finger|Nondisplaced fracture of proximal phalanx of finger +C2852419|T037|HT|S62.64|ICD10CM|Nondisplaced fracture of proximal phalanx of finger|Nondisplaced fracture of proximal phalanx of finger +C2852420|T037|AB|S62.640|ICD10CM|Nondisp fx of proximal phalanx of right index finger|Nondisp fx of proximal phalanx of right index finger +C2852420|T037|HT|S62.640|ICD10CM|Nondisplaced fracture of proximal phalanx of right index finger|Nondisplaced fracture of proximal phalanx of right index finger +C2852421|T037|AB|S62.640A|ICD10CM|Nondisp fx of proximal phalanx of right index finger, init|Nondisp fx of proximal phalanx of right index finger, init +C2852422|T037|AB|S62.640B|ICD10CM|Nondisp fx of prox phalanx of r idx fngr, init for opn fx|Nondisp fx of prox phalanx of r idx fngr, init for opn fx +C2852422|T037|PT|S62.640B|ICD10CM|Nondisplaced fracture of proximal phalanx of right index finger, initial encounter for open fracture|Nondisplaced fracture of proximal phalanx of right index finger, initial encounter for open fracture +C2852423|T037|AB|S62.640D|ICD10CM|Nondisp fx of prox phalanx of r idx fngr, 7thD|Nondisp fx of prox phalanx of r idx fngr, 7thD +C2852424|T037|AB|S62.640G|ICD10CM|Nondisp fx of prox phalanx of r idx fngr, 7thG|Nondisp fx of prox phalanx of r idx fngr, 7thG +C2852425|T037|AB|S62.640K|ICD10CM|Nondisp fx of prox phalanx of r idx fngr, 7thK|Nondisp fx of prox phalanx of r idx fngr, 7thK +C2852426|T037|AB|S62.640P|ICD10CM|Nondisp fx of prox phalanx of r idx fngr, 7thP|Nondisp fx of prox phalanx of r idx fngr, 7thP +C2852427|T037|AB|S62.640S|ICD10CM|Nondisp fx of proximal phalanx of r idx fngr, sequela|Nondisp fx of proximal phalanx of r idx fngr, sequela +C2852427|T037|PT|S62.640S|ICD10CM|Nondisplaced fracture of proximal phalanx of right index finger, sequela|Nondisplaced fracture of proximal phalanx of right index finger, sequela +C2852428|T037|AB|S62.641|ICD10CM|Nondisp fx of proximal phalanx of left index finger|Nondisp fx of proximal phalanx of left index finger +C2852428|T037|HT|S62.641|ICD10CM|Nondisplaced fracture of proximal phalanx of left index finger|Nondisplaced fracture of proximal phalanx of left index finger +C2852429|T037|AB|S62.641A|ICD10CM|Nondisp fx of proximal phalanx of left index finger, init|Nondisp fx of proximal phalanx of left index finger, init +C2852430|T037|AB|S62.641B|ICD10CM|Nondisp fx of prox phalanx of l idx fngr, init for opn fx|Nondisp fx of prox phalanx of l idx fngr, init for opn fx +C2852430|T037|PT|S62.641B|ICD10CM|Nondisplaced fracture of proximal phalanx of left index finger, initial encounter for open fracture|Nondisplaced fracture of proximal phalanx of left index finger, initial encounter for open fracture +C2852431|T037|AB|S62.641D|ICD10CM|Nondisp fx of prox phalanx of l idx fngr, 7thD|Nondisp fx of prox phalanx of l idx fngr, 7thD +C2852432|T037|AB|S62.641G|ICD10CM|Nondisp fx of prox phalanx of l idx fngr, 7thG|Nondisp fx of prox phalanx of l idx fngr, 7thG +C2852433|T037|AB|S62.641K|ICD10CM|Nondisp fx of prox phalanx of l idx fngr, 7thK|Nondisp fx of prox phalanx of l idx fngr, 7thK +C2852434|T037|AB|S62.641P|ICD10CM|Nondisp fx of prox phalanx of l idx fngr, 7thP|Nondisp fx of prox phalanx of l idx fngr, 7thP +C2852435|T037|AB|S62.641S|ICD10CM|Nondisp fx of proximal phalanx of left index finger, sequela|Nondisp fx of proximal phalanx of left index finger, sequela +C2852435|T037|PT|S62.641S|ICD10CM|Nondisplaced fracture of proximal phalanx of left index finger, sequela|Nondisplaced fracture of proximal phalanx of left index finger, sequela +C2852436|T037|AB|S62.642|ICD10CM|Nondisp fx of proximal phalanx of right middle finger|Nondisp fx of proximal phalanx of right middle finger +C2852436|T037|HT|S62.642|ICD10CM|Nondisplaced fracture of proximal phalanx of right middle finger|Nondisplaced fracture of proximal phalanx of right middle finger +C2852437|T037|AB|S62.642A|ICD10CM|Nondisp fx of proximal phalanx of right middle finger, init|Nondisp fx of proximal phalanx of right middle finger, init +C2852438|T037|AB|S62.642B|ICD10CM|Nondisp fx of prox phalanx of r mid finger, init for opn fx|Nondisp fx of prox phalanx of r mid finger, init for opn fx +C2852439|T037|AB|S62.642D|ICD10CM|Nondisp fx of prox phalanx of r mid fngr, 7thD|Nondisp fx of prox phalanx of r mid fngr, 7thD +C2852440|T037|AB|S62.642G|ICD10CM|Nondisp fx of prox phalanx of r mid fngr, 7thG|Nondisp fx of prox phalanx of r mid fngr, 7thG +C2852441|T037|AB|S62.642K|ICD10CM|Nondisp fx of prox phalanx of r mid fngr, 7thK|Nondisp fx of prox phalanx of r mid fngr, 7thK +C2852442|T037|AB|S62.642P|ICD10CM|Nondisp fx of prox phalanx of r mid fngr, 7thP|Nondisp fx of prox phalanx of r mid fngr, 7thP +C2852443|T037|AB|S62.642S|ICD10CM|Nondisp fx of proximal phalanx of r mid finger, sequela|Nondisp fx of proximal phalanx of r mid finger, sequela +C2852443|T037|PT|S62.642S|ICD10CM|Nondisplaced fracture of proximal phalanx of right middle finger, sequela|Nondisplaced fracture of proximal phalanx of right middle finger, sequela +C2852444|T037|AB|S62.643|ICD10CM|Nondisp fx of proximal phalanx of left middle finger|Nondisp fx of proximal phalanx of left middle finger +C2852444|T037|HT|S62.643|ICD10CM|Nondisplaced fracture of proximal phalanx of left middle finger|Nondisplaced fracture of proximal phalanx of left middle finger +C2852445|T037|AB|S62.643A|ICD10CM|Nondisp fx of proximal phalanx of left middle finger, init|Nondisp fx of proximal phalanx of left middle finger, init +C2852446|T037|AB|S62.643B|ICD10CM|Nondisp fx of prox phalanx of l mid finger, init for opn fx|Nondisp fx of prox phalanx of l mid finger, init for opn fx +C2852446|T037|PT|S62.643B|ICD10CM|Nondisplaced fracture of proximal phalanx of left middle finger, initial encounter for open fracture|Nondisplaced fracture of proximal phalanx of left middle finger, initial encounter for open fracture +C2852447|T037|AB|S62.643D|ICD10CM|Nondisp fx of prox phalanx of l mid fngr, 7thD|Nondisp fx of prox phalanx of l mid fngr, 7thD +C2852448|T037|AB|S62.643G|ICD10CM|Nondisp fx of prox phalanx of l mid fngr, 7thG|Nondisp fx of prox phalanx of l mid fngr, 7thG +C2852449|T037|AB|S62.643K|ICD10CM|Nondisp fx of prox phalanx of l mid fngr, 7thK|Nondisp fx of prox phalanx of l mid fngr, 7thK +C2852450|T037|AB|S62.643P|ICD10CM|Nondisp fx of prox phalanx of l mid fngr, 7thP|Nondisp fx of prox phalanx of l mid fngr, 7thP +C2852451|T037|AB|S62.643S|ICD10CM|Nondisp fx of proximal phalanx of l mid finger, sequela|Nondisp fx of proximal phalanx of l mid finger, sequela +C2852451|T037|PT|S62.643S|ICD10CM|Nondisplaced fracture of proximal phalanx of left middle finger, sequela|Nondisplaced fracture of proximal phalanx of left middle finger, sequela +C2852452|T037|AB|S62.644|ICD10CM|Nondisp fx of proximal phalanx of right ring finger|Nondisp fx of proximal phalanx of right ring finger +C2852452|T037|HT|S62.644|ICD10CM|Nondisplaced fracture of proximal phalanx of right ring finger|Nondisplaced fracture of proximal phalanx of right ring finger +C2852453|T037|AB|S62.644A|ICD10CM|Nondisp fx of proximal phalanx of right ring finger, init|Nondisp fx of proximal phalanx of right ring finger, init +C2852454|T037|AB|S62.644B|ICD10CM|Nondisp fx of prox phalanx of r rng fngr, init for opn fx|Nondisp fx of prox phalanx of r rng fngr, init for opn fx +C2852454|T037|PT|S62.644B|ICD10CM|Nondisplaced fracture of proximal phalanx of right ring finger, initial encounter for open fracture|Nondisplaced fracture of proximal phalanx of right ring finger, initial encounter for open fracture +C2852455|T037|AB|S62.644D|ICD10CM|Nondisp fx of prox phalanx of r rng fngr, 7thD|Nondisp fx of prox phalanx of r rng fngr, 7thD +C2852456|T037|AB|S62.644G|ICD10CM|Nondisp fx of prox phalanx of r rng fngr, 7thG|Nondisp fx of prox phalanx of r rng fngr, 7thG +C2852457|T037|AB|S62.644K|ICD10CM|Nondisp fx of prox phalanx of r rng fngr, 7thK|Nondisp fx of prox phalanx of r rng fngr, 7thK +C2852458|T037|AB|S62.644P|ICD10CM|Nondisp fx of prox phalanx of r rng fngr, 7thP|Nondisp fx of prox phalanx of r rng fngr, 7thP +C2852459|T037|AB|S62.644S|ICD10CM|Nondisp fx of proximal phalanx of right ring finger, sequela|Nondisp fx of proximal phalanx of right ring finger, sequela +C2852459|T037|PT|S62.644S|ICD10CM|Nondisplaced fracture of proximal phalanx of right ring finger, sequela|Nondisplaced fracture of proximal phalanx of right ring finger, sequela +C2852460|T037|AB|S62.645|ICD10CM|Nondisp fx of proximal phalanx of left ring finger|Nondisp fx of proximal phalanx of left ring finger +C2852460|T037|HT|S62.645|ICD10CM|Nondisplaced fracture of proximal phalanx of left ring finger|Nondisplaced fracture of proximal phalanx of left ring finger +C2852461|T037|AB|S62.645A|ICD10CM|Nondisp fx of proximal phalanx of left ring finger, init|Nondisp fx of proximal phalanx of left ring finger, init +C2852461|T037|PT|S62.645A|ICD10CM|Nondisplaced fracture of proximal phalanx of left ring finger, initial encounter for closed fracture|Nondisplaced fracture of proximal phalanx of left ring finger, initial encounter for closed fracture +C2852462|T037|AB|S62.645B|ICD10CM|Nondisp fx of prox phalanx of l rng fngr, init for opn fx|Nondisp fx of prox phalanx of l rng fngr, init for opn fx +C2852462|T037|PT|S62.645B|ICD10CM|Nondisplaced fracture of proximal phalanx of left ring finger, initial encounter for open fracture|Nondisplaced fracture of proximal phalanx of left ring finger, initial encounter for open fracture +C2852463|T037|AB|S62.645D|ICD10CM|Nondisp fx of prox phalanx of l rng fngr, 7thD|Nondisp fx of prox phalanx of l rng fngr, 7thD +C2852464|T037|AB|S62.645G|ICD10CM|Nondisp fx of prox phalanx of l rng fngr, 7thG|Nondisp fx of prox phalanx of l rng fngr, 7thG +C2852465|T037|AB|S62.645K|ICD10CM|Nondisp fx of prox phalanx of l rng fngr, 7thK|Nondisp fx of prox phalanx of l rng fngr, 7thK +C2852466|T037|AB|S62.645P|ICD10CM|Nondisp fx of prox phalanx of l rng fngr, 7thP|Nondisp fx of prox phalanx of l rng fngr, 7thP +C2852467|T037|AB|S62.645S|ICD10CM|Nondisp fx of proximal phalanx of left ring finger, sequela|Nondisp fx of proximal phalanx of left ring finger, sequela +C2852467|T037|PT|S62.645S|ICD10CM|Nondisplaced fracture of proximal phalanx of left ring finger, sequela|Nondisplaced fracture of proximal phalanx of left ring finger, sequela +C2852468|T037|AB|S62.646|ICD10CM|Nondisp fx of proximal phalanx of right little finger|Nondisp fx of proximal phalanx of right little finger +C2852468|T037|HT|S62.646|ICD10CM|Nondisplaced fracture of proximal phalanx of right little finger|Nondisplaced fracture of proximal phalanx of right little finger +C2852469|T037|AB|S62.646A|ICD10CM|Nondisp fx of proximal phalanx of right little finger, init|Nondisp fx of proximal phalanx of right little finger, init +C2852470|T037|AB|S62.646B|ICD10CM|Nondisp fx of prox phalanx of r little fngr, init for opn fx|Nondisp fx of prox phalanx of r little fngr, init for opn fx +C2852471|T037|AB|S62.646D|ICD10CM|Nondisp fx of prox phalanx of r lit fngr, 7thD|Nondisp fx of prox phalanx of r lit fngr, 7thD +C2852472|T037|AB|S62.646G|ICD10CM|Nondisp fx of prox phalanx of r lit fngr, 7thG|Nondisp fx of prox phalanx of r lit fngr, 7thG +C2852473|T037|AB|S62.646K|ICD10CM|Nondisp fx of prox phalanx of r lit fngr, 7thK|Nondisp fx of prox phalanx of r lit fngr, 7thK +C2852474|T037|AB|S62.646P|ICD10CM|Nondisp fx of prox phalanx of r lit fngr, 7thP|Nondisp fx of prox phalanx of r lit fngr, 7thP +C2852475|T037|AB|S62.646S|ICD10CM|Nondisp fx of proximal phalanx of r little finger, sequela|Nondisp fx of proximal phalanx of r little finger, sequela +C2852475|T037|PT|S62.646S|ICD10CM|Nondisplaced fracture of proximal phalanx of right little finger, sequela|Nondisplaced fracture of proximal phalanx of right little finger, sequela +C2852476|T037|AB|S62.647|ICD10CM|Nondisp fx of proximal phalanx of left little finger|Nondisp fx of proximal phalanx of left little finger +C2852476|T037|HT|S62.647|ICD10CM|Nondisplaced fracture of proximal phalanx of left little finger|Nondisplaced fracture of proximal phalanx of left little finger +C2852477|T037|AB|S62.647A|ICD10CM|Nondisp fx of proximal phalanx of left little finger, init|Nondisp fx of proximal phalanx of left little finger, init +C2852478|T037|AB|S62.647B|ICD10CM|Nondisp fx of prox phalanx of l little fngr, init for opn fx|Nondisp fx of prox phalanx of l little fngr, init for opn fx +C2852478|T037|PT|S62.647B|ICD10CM|Nondisplaced fracture of proximal phalanx of left little finger, initial encounter for open fracture|Nondisplaced fracture of proximal phalanx of left little finger, initial encounter for open fracture +C2852479|T037|AB|S62.647D|ICD10CM|Nondisp fx of prox phalanx of l lit fngr, 7thD|Nondisp fx of prox phalanx of l lit fngr, 7thD +C2852480|T037|AB|S62.647G|ICD10CM|Nondisp fx of prox phalanx of l lit fngr, 7thG|Nondisp fx of prox phalanx of l lit fngr, 7thG +C2852481|T037|AB|S62.647K|ICD10CM|Nondisp fx of prox phalanx of l lit fngr, 7thK|Nondisp fx of prox phalanx of l lit fngr, 7thK +C2852482|T037|AB|S62.647P|ICD10CM|Nondisp fx of prox phalanx of l lit fngr, 7thP|Nondisp fx of prox phalanx of l lit fngr, 7thP +C2852483|T037|AB|S62.647S|ICD10CM|Nondisp fx of proximal phalanx of l little finger, sequela|Nondisp fx of proximal phalanx of l little finger, sequela +C2852483|T037|PT|S62.647S|ICD10CM|Nondisplaced fracture of proximal phalanx of left little finger, sequela|Nondisplaced fracture of proximal phalanx of left little finger, sequela +C2852485|T037|AB|S62.648|ICD10CM|Nondisplaced fracture of proximal phalanx of other finger|Nondisplaced fracture of proximal phalanx of other finger +C2852485|T037|HT|S62.648|ICD10CM|Nondisplaced fracture of proximal phalanx of other finger|Nondisplaced fracture of proximal phalanx of other finger +C2852484|T037|ET|S62.648|ICD10CM|Nondisplaced fracture of proximal phalanx of specified finger with unspecified laterality|Nondisplaced fracture of proximal phalanx of specified finger with unspecified laterality +C2852486|T037|AB|S62.648A|ICD10CM|Nondisp fx of proximal phalanx of oth finger, init|Nondisp fx of proximal phalanx of oth finger, init +C2852486|T037|PT|S62.648A|ICD10CM|Nondisplaced fracture of proximal phalanx of other finger, initial encounter for closed fracture|Nondisplaced fracture of proximal phalanx of other finger, initial encounter for closed fracture +C2852487|T037|AB|S62.648B|ICD10CM|Nondisp fx of proximal phalanx of finger, init for opn fx|Nondisp fx of proximal phalanx of finger, init for opn fx +C2852487|T037|PT|S62.648B|ICD10CM|Nondisplaced fracture of proximal phalanx of other finger, initial encounter for open fracture|Nondisplaced fracture of proximal phalanx of other finger, initial encounter for open fracture +C2852488|T037|AB|S62.648D|ICD10CM|Nondisp fx of prox phalanx of fngr, subs for fx w routn heal|Nondisp fx of prox phalanx of fngr, subs for fx w routn heal +C2852489|T037|AB|S62.648G|ICD10CM|Nondisp fx of prox phalanx of fngr, subs for fx w delay heal|Nondisp fx of prox phalanx of fngr, subs for fx w delay heal +C2852490|T037|AB|S62.648K|ICD10CM|Nondisp fx of prox phalanx of finger, subs for fx w nonunion|Nondisp fx of prox phalanx of finger, subs for fx w nonunion +C2852491|T037|AB|S62.648P|ICD10CM|Nondisp fx of prox phalanx of finger, subs for fx w malunion|Nondisp fx of prox phalanx of finger, subs for fx w malunion +C2852492|T037|AB|S62.648S|ICD10CM|Nondisp fx of proximal phalanx of other finger, sequela|Nondisp fx of proximal phalanx of other finger, sequela +C2852492|T037|PT|S62.648S|ICD10CM|Nondisplaced fracture of proximal phalanx of other finger, sequela|Nondisplaced fracture of proximal phalanx of other finger, sequela +C2852493|T037|AB|S62.649|ICD10CM|Nondisp fx of proximal phalanx of unspecified finger|Nondisp fx of proximal phalanx of unspecified finger +C2852493|T037|HT|S62.649|ICD10CM|Nondisplaced fracture of proximal phalanx of unspecified finger|Nondisplaced fracture of proximal phalanx of unspecified finger +C2852494|T037|AB|S62.649A|ICD10CM|Nondisp fx of proximal phalanx of unsp finger, init|Nondisp fx of proximal phalanx of unsp finger, init +C2852495|T037|AB|S62.649B|ICD10CM|Nondisp fx of prox phalanx of unsp finger, init for opn fx|Nondisp fx of prox phalanx of unsp finger, init for opn fx +C2852495|T037|PT|S62.649B|ICD10CM|Nondisplaced fracture of proximal phalanx of unspecified finger, initial encounter for open fracture|Nondisplaced fracture of proximal phalanx of unspecified finger, initial encounter for open fracture +C2852496|T037|AB|S62.649D|ICD10CM|Nondisp fx of prox phalanx of unsp fngr, 7thD|Nondisp fx of prox phalanx of unsp fngr, 7thD +C2852497|T037|AB|S62.649G|ICD10CM|Nondisp fx of prox phalanx of unsp fngr, 7thG|Nondisp fx of prox phalanx of unsp fngr, 7thG +C2852498|T037|AB|S62.649K|ICD10CM|Nondisp fx of prox phalanx of unsp fngr, 7thK|Nondisp fx of prox phalanx of unsp fngr, 7thK +C2852499|T037|AB|S62.649P|ICD10CM|Nondisp fx of prox phalanx of unsp fngr, 7thP|Nondisp fx of prox phalanx of unsp fngr, 7thP +C2852500|T037|AB|S62.649S|ICD10CM|Nondisp fx of proximal phalanx of unsp finger, sequela|Nondisp fx of proximal phalanx of unsp finger, sequela +C2852500|T037|PT|S62.649S|ICD10CM|Nondisplaced fracture of proximal phalanx of unspecified finger, sequela|Nondisplaced fracture of proximal phalanx of unspecified finger, sequela +C3511338|T037|AB|S62.65|ICD10CM|Nondisplaced fracture of middle phalanx of finger|Nondisplaced fracture of middle phalanx of finger +C3511338|T037|HT|S62.65|ICD10CM|Nondisplaced fracture of middle phalanx of finger|Nondisplaced fracture of middle phalanx of finger +C2852502|T037|AB|S62.650|ICD10CM|Nondisp fx of middle phalanx of right index finger|Nondisp fx of middle phalanx of right index finger +C2852502|T037|HT|S62.650|ICD10CM|Nondisplaced fracture of middle phalanx of right index finger|Nondisplaced fracture of middle phalanx of right index finger +C2852503|T037|AB|S62.650A|ICD10CM|Nondisp fx of middle phalanx of right index finger, init|Nondisp fx of middle phalanx of right index finger, init +C2852503|T037|PT|S62.650A|ICD10CM|Nondisplaced fracture of middle phalanx of right index finger, initial encounter for closed fracture|Nondisplaced fracture of middle phalanx of right index finger, initial encounter for closed fracture +C2852504|T037|AB|S62.650B|ICD10CM|Nondisp fx of middle phalanx of right index finger, 7thB|Nondisp fx of middle phalanx of right index finger, 7thB +C2852504|T037|PT|S62.650B|ICD10CM|Nondisplaced fracture of middle phalanx of right index finger, initial encounter for open fracture|Nondisplaced fracture of middle phalanx of right index finger, initial encounter for open fracture +C2852505|T037|AB|S62.650D|ICD10CM|Nondisp fx of middle phalanx of right index finger, 7thD|Nondisp fx of middle phalanx of right index finger, 7thD +C2852506|T037|AB|S62.650G|ICD10CM|Nondisp fx of middle phalanx of right index finger, 7thG|Nondisp fx of middle phalanx of right index finger, 7thG +C2852507|T037|AB|S62.650K|ICD10CM|Nondisp fx of middle phalanx of right index finger, 7thK|Nondisp fx of middle phalanx of right index finger, 7thK +C2852508|T037|AB|S62.650P|ICD10CM|Nondisp fx of middle phalanx of right index finger, 7thP|Nondisp fx of middle phalanx of right index finger, 7thP +C2852509|T037|AB|S62.650S|ICD10CM|Nondisp fx of middle phalanx of right index finger, sequela|Nondisp fx of middle phalanx of right index finger, sequela +C2852509|T037|PT|S62.650S|ICD10CM|Nondisplaced fracture of middle phalanx of right index finger, sequela|Nondisplaced fracture of middle phalanx of right index finger, sequela +C2852510|T037|AB|S62.651|ICD10CM|Nondisplaced fracture of middle phalanx of left index finger|Nondisplaced fracture of middle phalanx of left index finger +C2852510|T037|HT|S62.651|ICD10CM|Nondisplaced fracture of middle phalanx of left index finger|Nondisplaced fracture of middle phalanx of left index finger +C2852511|T037|AB|S62.651A|ICD10CM|Nondisp fx of middle phalanx of left index finger, init|Nondisp fx of middle phalanx of left index finger, init +C2852511|T037|PT|S62.651A|ICD10CM|Nondisplaced fracture of middle phalanx of left index finger, initial encounter for closed fracture|Nondisplaced fracture of middle phalanx of left index finger, initial encounter for closed fracture +C2852512|T037|AB|S62.651B|ICD10CM|Nondisp fx of middle phalanx of left index finger, 7thB|Nondisp fx of middle phalanx of left index finger, 7thB +C2852512|T037|PT|S62.651B|ICD10CM|Nondisplaced fracture of middle phalanx of left index finger, initial encounter for open fracture|Nondisplaced fracture of middle phalanx of left index finger, initial encounter for open fracture +C2852513|T037|AB|S62.651D|ICD10CM|Nondisp fx of middle phalanx of left index finger, 7thD|Nondisp fx of middle phalanx of left index finger, 7thD +C2852514|T037|AB|S62.651G|ICD10CM|Nondisp fx of middle phalanx of left index finger, 7thG|Nondisp fx of middle phalanx of left index finger, 7thG +C2852515|T037|AB|S62.651K|ICD10CM|Nondisp fx of middle phalanx of left index finger, 7thK|Nondisp fx of middle phalanx of left index finger, 7thK +C2852516|T037|AB|S62.651P|ICD10CM|Nondisp fx of middle phalanx of left index finger, 7thP|Nondisp fx of middle phalanx of left index finger, 7thP +C2852517|T037|AB|S62.651S|ICD10CM|Nondisp fx of middle phalanx of left index finger, sequela|Nondisp fx of middle phalanx of left index finger, sequela +C2852517|T037|PT|S62.651S|ICD10CM|Nondisplaced fracture of middle phalanx of left index finger, sequela|Nondisplaced fracture of middle phalanx of left index finger, sequela +C2852518|T037|AB|S62.652|ICD10CM|Nondisp fx of middle phalanx of right middle finger|Nondisp fx of middle phalanx of right middle finger +C2852518|T037|HT|S62.652|ICD10CM|Nondisplaced fracture of middle phalanx of right middle finger|Nondisplaced fracture of middle phalanx of right middle finger +C2852519|T037|AB|S62.652A|ICD10CM|Nondisp fx of middle phalanx of right middle finger, init|Nondisp fx of middle phalanx of right middle finger, init +C2852520|T037|AB|S62.652B|ICD10CM|Nondisp fx of middle phalanx of right middle finger, 7thB|Nondisp fx of middle phalanx of right middle finger, 7thB +C2852520|T037|PT|S62.652B|ICD10CM|Nondisplaced fracture of middle phalanx of right middle finger, initial encounter for open fracture|Nondisplaced fracture of middle phalanx of right middle finger, initial encounter for open fracture +C2852521|T037|AB|S62.652D|ICD10CM|Nondisp fx of middle phalanx of right middle finger, 7thD|Nondisp fx of middle phalanx of right middle finger, 7thD +C2852522|T037|AB|S62.652G|ICD10CM|Nondisp fx of middle phalanx of right middle finger, 7thG|Nondisp fx of middle phalanx of right middle finger, 7thG +C2852523|T037|AB|S62.652K|ICD10CM|Nondisp fx of middle phalanx of right middle finger, 7thK|Nondisp fx of middle phalanx of right middle finger, 7thK +C2852524|T037|AB|S62.652P|ICD10CM|Nondisp fx of middle phalanx of right middle finger, 7thP|Nondisp fx of middle phalanx of right middle finger, 7thP +C2852525|T037|AB|S62.652S|ICD10CM|Nondisp fx of middle phalanx of right middle finger, sequela|Nondisp fx of middle phalanx of right middle finger, sequela +C2852525|T037|PT|S62.652S|ICD10CM|Nondisplaced fracture of middle phalanx of right middle finger, sequela|Nondisplaced fracture of middle phalanx of right middle finger, sequela +C2852526|T037|AB|S62.653|ICD10CM|Nondisp fx of middle phalanx of left middle finger|Nondisp fx of middle phalanx of left middle finger +C2852526|T037|HT|S62.653|ICD10CM|Nondisplaced fracture of middle phalanx of left middle finger|Nondisplaced fracture of middle phalanx of left middle finger +C2852527|T037|AB|S62.653A|ICD10CM|Nondisp fx of middle phalanx of left middle finger, init|Nondisp fx of middle phalanx of left middle finger, init +C2852527|T037|PT|S62.653A|ICD10CM|Nondisplaced fracture of middle phalanx of left middle finger, initial encounter for closed fracture|Nondisplaced fracture of middle phalanx of left middle finger, initial encounter for closed fracture +C2852528|T037|AB|S62.653B|ICD10CM|Nondisp fx of middle phalanx of left middle finger, 7thB|Nondisp fx of middle phalanx of left middle finger, 7thB +C2852528|T037|PT|S62.653B|ICD10CM|Nondisplaced fracture of middle phalanx of left middle finger, initial encounter for open fracture|Nondisplaced fracture of middle phalanx of left middle finger, initial encounter for open fracture +C2852529|T037|AB|S62.653D|ICD10CM|Nondisp fx of middle phalanx of left middle finger, 7thD|Nondisp fx of middle phalanx of left middle finger, 7thD +C2852530|T037|AB|S62.653G|ICD10CM|Nondisp fx of middle phalanx of left middle finger, 7thG|Nondisp fx of middle phalanx of left middle finger, 7thG +C2852531|T037|AB|S62.653K|ICD10CM|Nondisp fx of middle phalanx of left middle finger, 7thK|Nondisp fx of middle phalanx of left middle finger, 7thK +C2852532|T037|AB|S62.653P|ICD10CM|Nondisp fx of middle phalanx of left middle finger, 7thP|Nondisp fx of middle phalanx of left middle finger, 7thP +C2852533|T037|AB|S62.653S|ICD10CM|Nondisp fx of middle phalanx of left middle finger, sequela|Nondisp fx of middle phalanx of left middle finger, sequela +C2852533|T037|PT|S62.653S|ICD10CM|Nondisplaced fracture of middle phalanx of left middle finger, sequela|Nondisplaced fracture of middle phalanx of left middle finger, sequela +C2852534|T037|AB|S62.654|ICD10CM|Nondisplaced fracture of middle phalanx of right ring finger|Nondisplaced fracture of middle phalanx of right ring finger +C2852534|T037|HT|S62.654|ICD10CM|Nondisplaced fracture of middle phalanx of right ring finger|Nondisplaced fracture of middle phalanx of right ring finger +C2852535|T037|AB|S62.654A|ICD10CM|Nondisp fx of middle phalanx of right ring finger, init|Nondisp fx of middle phalanx of right ring finger, init +C2852535|T037|PT|S62.654A|ICD10CM|Nondisplaced fracture of middle phalanx of right ring finger, initial encounter for closed fracture|Nondisplaced fracture of middle phalanx of right ring finger, initial encounter for closed fracture +C2852536|T037|AB|S62.654B|ICD10CM|Nondisp fx of middle phalanx of right ring finger, 7thB|Nondisp fx of middle phalanx of right ring finger, 7thB +C2852536|T037|PT|S62.654B|ICD10CM|Nondisplaced fracture of middle phalanx of right ring finger, initial encounter for open fracture|Nondisplaced fracture of middle phalanx of right ring finger, initial encounter for open fracture +C2852537|T037|AB|S62.654D|ICD10CM|Nondisp fx of middle phalanx of right ring finger, 7thD|Nondisp fx of middle phalanx of right ring finger, 7thD +C2852538|T037|AB|S62.654G|ICD10CM|Nondisp fx of middle phalanx of right ring finger, 7thG|Nondisp fx of middle phalanx of right ring finger, 7thG +C2852539|T037|AB|S62.654K|ICD10CM|Nondisp fx of middle phalanx of right ring finger, 7thK|Nondisp fx of middle phalanx of right ring finger, 7thK +C2852540|T037|AB|S62.654P|ICD10CM|Nondisp fx of middle phalanx of right ring finger, 7thP|Nondisp fx of middle phalanx of right ring finger, 7thP +C2852541|T037|AB|S62.654S|ICD10CM|Nondisp fx of middle phalanx of right ring finger, sequela|Nondisp fx of middle phalanx of right ring finger, sequela +C2852541|T037|PT|S62.654S|ICD10CM|Nondisplaced fracture of middle phalanx of right ring finger, sequela|Nondisplaced fracture of middle phalanx of right ring finger, sequela +C2852542|T037|AB|S62.655|ICD10CM|Nondisplaced fracture of middle phalanx of left ring finger|Nondisplaced fracture of middle phalanx of left ring finger +C2852542|T037|HT|S62.655|ICD10CM|Nondisplaced fracture of middle phalanx of left ring finger|Nondisplaced fracture of middle phalanx of left ring finger +C2852543|T037|AB|S62.655A|ICD10CM|Nondisp fx of middle phalanx of left ring finger, init|Nondisp fx of middle phalanx of left ring finger, init +C2852543|T037|PT|S62.655A|ICD10CM|Nondisplaced fracture of middle phalanx of left ring finger, initial encounter for closed fracture|Nondisplaced fracture of middle phalanx of left ring finger, initial encounter for closed fracture +C2852544|T037|AB|S62.655B|ICD10CM|Nondisp fx of middle phalanx of left ring finger, 7thB|Nondisp fx of middle phalanx of left ring finger, 7thB +C2852544|T037|PT|S62.655B|ICD10CM|Nondisplaced fracture of middle phalanx of left ring finger, initial encounter for open fracture|Nondisplaced fracture of middle phalanx of left ring finger, initial encounter for open fracture +C2852545|T037|AB|S62.655D|ICD10CM|Nondisp fx of middle phalanx of left ring finger, 7thD|Nondisp fx of middle phalanx of left ring finger, 7thD +C2852546|T037|AB|S62.655G|ICD10CM|Nondisp fx of middle phalanx of left ring finger, 7thG|Nondisp fx of middle phalanx of left ring finger, 7thG +C2852547|T037|AB|S62.655K|ICD10CM|Nondisp fx of middle phalanx of left ring finger, 7thK|Nondisp fx of middle phalanx of left ring finger, 7thK +C2852548|T037|AB|S62.655P|ICD10CM|Nondisp fx of middle phalanx of left ring finger, 7thP|Nondisp fx of middle phalanx of left ring finger, 7thP +C2852549|T037|AB|S62.655S|ICD10CM|Nondisp fx of middle phalanx of left ring finger, sequela|Nondisp fx of middle phalanx of left ring finger, sequela +C2852549|T037|PT|S62.655S|ICD10CM|Nondisplaced fracture of middle phalanx of left ring finger, sequela|Nondisplaced fracture of middle phalanx of left ring finger, sequela +C2852550|T037|AB|S62.656|ICD10CM|Nondisp fx of middle phalanx of right little finger|Nondisp fx of middle phalanx of right little finger +C2852550|T037|HT|S62.656|ICD10CM|Nondisplaced fracture of middle phalanx of right little finger|Nondisplaced fracture of middle phalanx of right little finger +C2852551|T037|AB|S62.656A|ICD10CM|Nondisp fx of middle phalanx of right little finger, init|Nondisp fx of middle phalanx of right little finger, init +C2852552|T037|AB|S62.656B|ICD10CM|Nondisp fx of middle phalanx of right little finger, 7thB|Nondisp fx of middle phalanx of right little finger, 7thB +C2852552|T037|PT|S62.656B|ICD10CM|Nondisplaced fracture of middle phalanx of right little finger, initial encounter for open fracture|Nondisplaced fracture of middle phalanx of right little finger, initial encounter for open fracture +C2852553|T037|AB|S62.656D|ICD10CM|Nondisp fx of middle phalanx of right little finger, 7thD|Nondisp fx of middle phalanx of right little finger, 7thD +C2852554|T037|AB|S62.656G|ICD10CM|Nondisp fx of middle phalanx of right little finger, 7thG|Nondisp fx of middle phalanx of right little finger, 7thG +C2852555|T037|AB|S62.656K|ICD10CM|Nondisp fx of middle phalanx of right little finger, 7thK|Nondisp fx of middle phalanx of right little finger, 7thK +C2852556|T037|AB|S62.656P|ICD10CM|Nondisp fx of middle phalanx of right little finger, 7thP|Nondisp fx of middle phalanx of right little finger, 7thP +C2852557|T037|AB|S62.656S|ICD10CM|Nondisp fx of middle phalanx of right little finger, sequela|Nondisp fx of middle phalanx of right little finger, sequela +C2852557|T037|PT|S62.656S|ICD10CM|Nondisplaced fracture of middle phalanx of right little finger, sequela|Nondisplaced fracture of middle phalanx of right little finger, sequela +C2852558|T037|AB|S62.657|ICD10CM|Nondisp fx of middle phalanx of left little finger|Nondisp fx of middle phalanx of left little finger +C2852558|T037|HT|S62.657|ICD10CM|Nondisplaced fracture of middle phalanx of left little finger|Nondisplaced fracture of middle phalanx of left little finger +C2852559|T037|AB|S62.657A|ICD10CM|Nondisp fx of middle phalanx of left little finger, init|Nondisp fx of middle phalanx of left little finger, init +C2852559|T037|PT|S62.657A|ICD10CM|Nondisplaced fracture of middle phalanx of left little finger, initial encounter for closed fracture|Nondisplaced fracture of middle phalanx of left little finger, initial encounter for closed fracture +C2852560|T037|AB|S62.657B|ICD10CM|Nondisp fx of middle phalanx of left little finger, 7thB|Nondisp fx of middle phalanx of left little finger, 7thB +C2852560|T037|PT|S62.657B|ICD10CM|Nondisplaced fracture of middle phalanx of left little finger, initial encounter for open fracture|Nondisplaced fracture of middle phalanx of left little finger, initial encounter for open fracture +C2852561|T037|AB|S62.657D|ICD10CM|Nondisp fx of middle phalanx of left little finger, 7thD|Nondisp fx of middle phalanx of left little finger, 7thD +C2852562|T037|AB|S62.657G|ICD10CM|Nondisp fx of middle phalanx of left little finger, 7thG|Nondisp fx of middle phalanx of left little finger, 7thG +C2852563|T037|AB|S62.657K|ICD10CM|Nondisp fx of middle phalanx of left little finger, 7thK|Nondisp fx of middle phalanx of left little finger, 7thK +C2852564|T037|AB|S62.657P|ICD10CM|Nondisp fx of middle phalanx of left little finger, 7thP|Nondisp fx of middle phalanx of left little finger, 7thP +C2852565|T037|AB|S62.657S|ICD10CM|Nondisp fx of middle phalanx of left little finger, sequela|Nondisp fx of middle phalanx of left little finger, sequela +C2852565|T037|PT|S62.657S|ICD10CM|Nondisplaced fracture of middle phalanx of left little finger, sequela|Nondisplaced fracture of middle phalanx of left little finger, sequela +C2852567|T037|AB|S62.658|ICD10CM|Nondisplaced fracture of middle phalanx of other finger|Nondisplaced fracture of middle phalanx of other finger +C2852567|T037|HT|S62.658|ICD10CM|Nondisplaced fracture of middle phalanx of other finger|Nondisplaced fracture of middle phalanx of other finger +C2852566|T037|ET|S62.658|ICD10CM|Nondisplaced fracture of middle phalanx of specified finger with unspecified laterality|Nondisplaced fracture of middle phalanx of specified finger with unspecified laterality +C2852568|T037|AB|S62.658A|ICD10CM|Nondisp fx of middle phalanx of other finger, init|Nondisp fx of middle phalanx of other finger, init +C2852568|T037|PT|S62.658A|ICD10CM|Nondisplaced fracture of middle phalanx of other finger, initial encounter for closed fracture|Nondisplaced fracture of middle phalanx of other finger, initial encounter for closed fracture +C2852569|T037|AB|S62.658B|ICD10CM|Nondisp fx of middle phalanx of other finger, 7thB|Nondisp fx of middle phalanx of other finger, 7thB +C2852569|T037|PT|S62.658B|ICD10CM|Nondisplaced fracture of middle phalanx of other finger, initial encounter for open fracture|Nondisplaced fracture of middle phalanx of other finger, initial encounter for open fracture +C2852570|T037|AB|S62.658D|ICD10CM|Nondisp fx of middle phalanx of other finger, 7thD|Nondisp fx of middle phalanx of other finger, 7thD +C2852571|T037|AB|S62.658G|ICD10CM|Nondisp fx of middle phalanx of other finger, 7thG|Nondisp fx of middle phalanx of other finger, 7thG +C2852572|T037|AB|S62.658K|ICD10CM|Nondisp fx of middle phalanx of other finger, 7thK|Nondisp fx of middle phalanx of other finger, 7thK +C2852573|T037|AB|S62.658P|ICD10CM|Nondisp fx of middle phalanx of other finger, 7thP|Nondisp fx of middle phalanx of other finger, 7thP +C2852574|T037|AB|S62.658S|ICD10CM|Nondisp fx of middle phalanx of other finger, sequela|Nondisp fx of middle phalanx of other finger, sequela +C2852574|T037|PT|S62.658S|ICD10CM|Nondisplaced fracture of middle phalanx of other finger, sequela|Nondisplaced fracture of middle phalanx of other finger, sequela +C2852575|T037|AB|S62.659|ICD10CM|Nondisp fx of middle phalanx of unspecified finger|Nondisp fx of middle phalanx of unspecified finger +C2852575|T037|HT|S62.659|ICD10CM|Nondisplaced fracture of middle phalanx of unspecified finger|Nondisplaced fracture of middle phalanx of unspecified finger +C2852576|T037|AB|S62.659A|ICD10CM|Nondisp fx of middle phalanx of unspecified finger, init|Nondisp fx of middle phalanx of unspecified finger, init +C2852576|T037|PT|S62.659A|ICD10CM|Nondisplaced fracture of middle phalanx of unspecified finger, initial encounter for closed fracture|Nondisplaced fracture of middle phalanx of unspecified finger, initial encounter for closed fracture +C2852577|T037|AB|S62.659B|ICD10CM|Nondisp fx of middle phalanx of unspecified finger, 7thB|Nondisp fx of middle phalanx of unspecified finger, 7thB +C2852577|T037|PT|S62.659B|ICD10CM|Nondisplaced fracture of middle phalanx of unspecified finger, initial encounter for open fracture|Nondisplaced fracture of middle phalanx of unspecified finger, initial encounter for open fracture +C2852578|T037|AB|S62.659D|ICD10CM|Nondisp fx of middle phalanx of unspecified finger, 7thD|Nondisp fx of middle phalanx of unspecified finger, 7thD +C2852579|T037|AB|S62.659G|ICD10CM|Nondisp fx of middle phalanx of unspecified finger, 7thG|Nondisp fx of middle phalanx of unspecified finger, 7thG +C2852580|T037|AB|S62.659K|ICD10CM|Nondisp fx of middle phalanx of unspecified finger, 7thK|Nondisp fx of middle phalanx of unspecified finger, 7thK +C2852581|T037|AB|S62.659P|ICD10CM|Nondisp fx of middle phalanx of unspecified finger, 7thP|Nondisp fx of middle phalanx of unspecified finger, 7thP +C2852582|T037|AB|S62.659S|ICD10CM|Nondisp fx of middle phalanx of unspecified finger, sequela|Nondisp fx of middle phalanx of unspecified finger, sequela +C2852582|T037|PT|S62.659S|ICD10CM|Nondisplaced fracture of middle phalanx of unspecified finger, sequela|Nondisplaced fracture of middle phalanx of unspecified finger, sequela +C2852583|T037|AB|S62.66|ICD10CM|Nondisplaced fracture of distal phalanx of finger|Nondisplaced fracture of distal phalanx of finger +C2852583|T037|HT|S62.66|ICD10CM|Nondisplaced fracture of distal phalanx of finger|Nondisplaced fracture of distal phalanx of finger +C2852584|T037|AB|S62.660|ICD10CM|Nondisp fx of distal phalanx of right index finger|Nondisp fx of distal phalanx of right index finger +C2852584|T037|HT|S62.660|ICD10CM|Nondisplaced fracture of distal phalanx of right index finger|Nondisplaced fracture of distal phalanx of right index finger +C2852585|T037|AB|S62.660A|ICD10CM|Nondisp fx of distal phalanx of right index finger, init|Nondisp fx of distal phalanx of right index finger, init +C2852585|T037|PT|S62.660A|ICD10CM|Nondisplaced fracture of distal phalanx of right index finger, initial encounter for closed fracture|Nondisplaced fracture of distal phalanx of right index finger, initial encounter for closed fracture +C2852586|T037|AB|S62.660B|ICD10CM|Nondisp fx of distal phalanx of r idx fngr, init for opn fx|Nondisp fx of distal phalanx of r idx fngr, init for opn fx +C2852586|T037|PT|S62.660B|ICD10CM|Nondisplaced fracture of distal phalanx of right index finger, initial encounter for open fracture|Nondisplaced fracture of distal phalanx of right index finger, initial encounter for open fracture +C2852587|T037|AB|S62.660D|ICD10CM|Nondisp fx of dist phalanx of r idx fngr, 7thD|Nondisp fx of dist phalanx of r idx fngr, 7thD +C2852588|T037|AB|S62.660G|ICD10CM|Nondisp fx of dist phalanx of r idx fngr, 7thG|Nondisp fx of dist phalanx of r idx fngr, 7thG +C2852589|T037|AB|S62.660K|ICD10CM|Nondisp fx of dist phalanx of r idx fngr, 7thK|Nondisp fx of dist phalanx of r idx fngr, 7thK +C2852590|T037|AB|S62.660P|ICD10CM|Nondisp fx of dist phalanx of r idx fngr, 7thP|Nondisp fx of dist phalanx of r idx fngr, 7thP +C2852591|T037|AB|S62.660S|ICD10CM|Nondisp fx of distal phalanx of right index finger, sequela|Nondisp fx of distal phalanx of right index finger, sequela +C2852591|T037|PT|S62.660S|ICD10CM|Nondisplaced fracture of distal phalanx of right index finger, sequela|Nondisplaced fracture of distal phalanx of right index finger, sequela +C2852592|T037|AB|S62.661|ICD10CM|Nondisplaced fracture of distal phalanx of left index finger|Nondisplaced fracture of distal phalanx of left index finger +C2852592|T037|HT|S62.661|ICD10CM|Nondisplaced fracture of distal phalanx of left index finger|Nondisplaced fracture of distal phalanx of left index finger +C2852593|T037|AB|S62.661A|ICD10CM|Nondisp fx of distal phalanx of left index finger, init|Nondisp fx of distal phalanx of left index finger, init +C2852593|T037|PT|S62.661A|ICD10CM|Nondisplaced fracture of distal phalanx of left index finger, initial encounter for closed fracture|Nondisplaced fracture of distal phalanx of left index finger, initial encounter for closed fracture +C2852594|T037|AB|S62.661B|ICD10CM|Nondisp fx of distal phalanx of l idx fngr, init for opn fx|Nondisp fx of distal phalanx of l idx fngr, init for opn fx +C2852594|T037|PT|S62.661B|ICD10CM|Nondisplaced fracture of distal phalanx of left index finger, initial encounter for open fracture|Nondisplaced fracture of distal phalanx of left index finger, initial encounter for open fracture +C2852595|T037|AB|S62.661D|ICD10CM|Nondisp fx of dist phalanx of l idx fngr, 7thD|Nondisp fx of dist phalanx of l idx fngr, 7thD +C2852596|T037|AB|S62.661G|ICD10CM|Nondisp fx of dist phalanx of l idx fngr, 7thG|Nondisp fx of dist phalanx of l idx fngr, 7thG +C2852597|T037|AB|S62.661K|ICD10CM|Nondisp fx of dist phalanx of l idx fngr, 7thK|Nondisp fx of dist phalanx of l idx fngr, 7thK +C2852598|T037|AB|S62.661P|ICD10CM|Nondisp fx of dist phalanx of l idx fngr, 7thP|Nondisp fx of dist phalanx of l idx fngr, 7thP +C2852599|T037|AB|S62.661S|ICD10CM|Nondisp fx of distal phalanx of left index finger, sequela|Nondisp fx of distal phalanx of left index finger, sequela +C2852599|T037|PT|S62.661S|ICD10CM|Nondisplaced fracture of distal phalanx of left index finger, sequela|Nondisplaced fracture of distal phalanx of left index finger, sequela +C2852600|T037|AB|S62.662|ICD10CM|Nondisp fx of distal phalanx of right middle finger|Nondisp fx of distal phalanx of right middle finger +C2852600|T037|HT|S62.662|ICD10CM|Nondisplaced fracture of distal phalanx of right middle finger|Nondisplaced fracture of distal phalanx of right middle finger +C2852601|T037|AB|S62.662A|ICD10CM|Nondisp fx of distal phalanx of right middle finger, init|Nondisp fx of distal phalanx of right middle finger, init +C2852602|T037|AB|S62.662B|ICD10CM|Nondisp fx of dist phalanx of r mid finger, init for opn fx|Nondisp fx of dist phalanx of r mid finger, init for opn fx +C2852602|T037|PT|S62.662B|ICD10CM|Nondisplaced fracture of distal phalanx of right middle finger, initial encounter for open fracture|Nondisplaced fracture of distal phalanx of right middle finger, initial encounter for open fracture +C2852603|T037|AB|S62.662D|ICD10CM|Nondisp fx of dist phalanx of r mid fngr, 7thD|Nondisp fx of dist phalanx of r mid fngr, 7thD +C2852604|T037|AB|S62.662G|ICD10CM|Nondisp fx of dist phalanx of r mid fngr, 7thG|Nondisp fx of dist phalanx of r mid fngr, 7thG +C2852605|T037|AB|S62.662K|ICD10CM|Nondisp fx of dist phalanx of r mid fngr, 7thK|Nondisp fx of dist phalanx of r mid fngr, 7thK +C2852606|T037|AB|S62.662P|ICD10CM|Nondisp fx of dist phalanx of r mid fngr, 7thP|Nondisp fx of dist phalanx of r mid fngr, 7thP +C2852607|T037|AB|S62.662S|ICD10CM|Nondisp fx of distal phalanx of right middle finger, sequela|Nondisp fx of distal phalanx of right middle finger, sequela +C2852607|T037|PT|S62.662S|ICD10CM|Nondisplaced fracture of distal phalanx of right middle finger, sequela|Nondisplaced fracture of distal phalanx of right middle finger, sequela +C2852608|T037|AB|S62.663|ICD10CM|Nondisp fx of distal phalanx of left middle finger|Nondisp fx of distal phalanx of left middle finger +C2852608|T037|HT|S62.663|ICD10CM|Nondisplaced fracture of distal phalanx of left middle finger|Nondisplaced fracture of distal phalanx of left middle finger +C2852609|T037|AB|S62.663A|ICD10CM|Nondisp fx of distal phalanx of left middle finger, init|Nondisp fx of distal phalanx of left middle finger, init +C2852609|T037|PT|S62.663A|ICD10CM|Nondisplaced fracture of distal phalanx of left middle finger, initial encounter for closed fracture|Nondisplaced fracture of distal phalanx of left middle finger, initial encounter for closed fracture +C2852610|T037|AB|S62.663B|ICD10CM|Nondisp fx of dist phalanx of l mid finger, init for opn fx|Nondisp fx of dist phalanx of l mid finger, init for opn fx +C2852610|T037|PT|S62.663B|ICD10CM|Nondisplaced fracture of distal phalanx of left middle finger, initial encounter for open fracture|Nondisplaced fracture of distal phalanx of left middle finger, initial encounter for open fracture +C2852611|T037|AB|S62.663D|ICD10CM|Nondisp fx of dist phalanx of l mid fngr, 7thD|Nondisp fx of dist phalanx of l mid fngr, 7thD +C2852612|T037|AB|S62.663G|ICD10CM|Nondisp fx of dist phalanx of l mid fngr, 7thG|Nondisp fx of dist phalanx of l mid fngr, 7thG +C2852613|T037|AB|S62.663K|ICD10CM|Nondisp fx of dist phalanx of l mid fngr, 7thK|Nondisp fx of dist phalanx of l mid fngr, 7thK +C2852614|T037|AB|S62.663P|ICD10CM|Nondisp fx of dist phalanx of l mid fngr, 7thP|Nondisp fx of dist phalanx of l mid fngr, 7thP +C2852615|T037|AB|S62.663S|ICD10CM|Nondisp fx of distal phalanx of left middle finger, sequela|Nondisp fx of distal phalanx of left middle finger, sequela +C2852615|T037|PT|S62.663S|ICD10CM|Nondisplaced fracture of distal phalanx of left middle finger, sequela|Nondisplaced fracture of distal phalanx of left middle finger, sequela +C2852616|T037|AB|S62.664|ICD10CM|Nondisplaced fracture of distal phalanx of right ring finger|Nondisplaced fracture of distal phalanx of right ring finger +C2852616|T037|HT|S62.664|ICD10CM|Nondisplaced fracture of distal phalanx of right ring finger|Nondisplaced fracture of distal phalanx of right ring finger +C2852617|T037|AB|S62.664A|ICD10CM|Nondisp fx of distal phalanx of right ring finger, init|Nondisp fx of distal phalanx of right ring finger, init +C2852617|T037|PT|S62.664A|ICD10CM|Nondisplaced fracture of distal phalanx of right ring finger, initial encounter for closed fracture|Nondisplaced fracture of distal phalanx of right ring finger, initial encounter for closed fracture +C2852618|T037|AB|S62.664B|ICD10CM|Nondisp fx of distal phalanx of r rng fngr, init for opn fx|Nondisp fx of distal phalanx of r rng fngr, init for opn fx +C2852618|T037|PT|S62.664B|ICD10CM|Nondisplaced fracture of distal phalanx of right ring finger, initial encounter for open fracture|Nondisplaced fracture of distal phalanx of right ring finger, initial encounter for open fracture +C2852619|T037|AB|S62.664D|ICD10CM|Nondisp fx of dist phalanx of r rng fngr, 7thD|Nondisp fx of dist phalanx of r rng fngr, 7thD +C2852620|T037|AB|S62.664G|ICD10CM|Nondisp fx of dist phalanx of r rng fngr, 7thG|Nondisp fx of dist phalanx of r rng fngr, 7thG +C2852621|T037|AB|S62.664K|ICD10CM|Nondisp fx of dist phalanx of r rng fngr, 7thK|Nondisp fx of dist phalanx of r rng fngr, 7thK +C2852622|T037|AB|S62.664P|ICD10CM|Nondisp fx of dist phalanx of r rng fngr, 7thP|Nondisp fx of dist phalanx of r rng fngr, 7thP +C2852623|T037|AB|S62.664S|ICD10CM|Nondisp fx of distal phalanx of right ring finger, sequela|Nondisp fx of distal phalanx of right ring finger, sequela +C2852623|T037|PT|S62.664S|ICD10CM|Nondisplaced fracture of distal phalanx of right ring finger, sequela|Nondisplaced fracture of distal phalanx of right ring finger, sequela +C2852624|T037|AB|S62.665|ICD10CM|Nondisplaced fracture of distal phalanx of left ring finger|Nondisplaced fracture of distal phalanx of left ring finger +C2852624|T037|HT|S62.665|ICD10CM|Nondisplaced fracture of distal phalanx of left ring finger|Nondisplaced fracture of distal phalanx of left ring finger +C2852625|T037|AB|S62.665A|ICD10CM|Nondisp fx of distal phalanx of left ring finger, init|Nondisp fx of distal phalanx of left ring finger, init +C2852625|T037|PT|S62.665A|ICD10CM|Nondisplaced fracture of distal phalanx of left ring finger, initial encounter for closed fracture|Nondisplaced fracture of distal phalanx of left ring finger, initial encounter for closed fracture +C2852626|T037|AB|S62.665B|ICD10CM|Nondisp fx of distal phalanx of l rng fngr, init for opn fx|Nondisp fx of distal phalanx of l rng fngr, init for opn fx +C2852626|T037|PT|S62.665B|ICD10CM|Nondisplaced fracture of distal phalanx of left ring finger, initial encounter for open fracture|Nondisplaced fracture of distal phalanx of left ring finger, initial encounter for open fracture +C2852627|T037|AB|S62.665D|ICD10CM|Nondisp fx of dist phalanx of l rng fngr, 7thD|Nondisp fx of dist phalanx of l rng fngr, 7thD +C2852628|T037|AB|S62.665G|ICD10CM|Nondisp fx of dist phalanx of l rng fngr, 7thG|Nondisp fx of dist phalanx of l rng fngr, 7thG +C2852629|T037|AB|S62.665K|ICD10CM|Nondisp fx of dist phalanx of l rng fngr, 7thK|Nondisp fx of dist phalanx of l rng fngr, 7thK +C2852630|T037|AB|S62.665P|ICD10CM|Nondisp fx of dist phalanx of l rng fngr, 7thP|Nondisp fx of dist phalanx of l rng fngr, 7thP +C2852631|T037|AB|S62.665S|ICD10CM|Nondisp fx of distal phalanx of left ring finger, sequela|Nondisp fx of distal phalanx of left ring finger, sequela +C2852631|T037|PT|S62.665S|ICD10CM|Nondisplaced fracture of distal phalanx of left ring finger, sequela|Nondisplaced fracture of distal phalanx of left ring finger, sequela +C2852632|T037|AB|S62.666|ICD10CM|Nondisp fx of distal phalanx of right little finger|Nondisp fx of distal phalanx of right little finger +C2852632|T037|HT|S62.666|ICD10CM|Nondisplaced fracture of distal phalanx of right little finger|Nondisplaced fracture of distal phalanx of right little finger +C2852633|T037|AB|S62.666A|ICD10CM|Nondisp fx of distal phalanx of right little finger, init|Nondisp fx of distal phalanx of right little finger, init +C2852634|T037|AB|S62.666B|ICD10CM|Nondisp fx of dist phalanx of r little fngr, init for opn fx|Nondisp fx of dist phalanx of r little fngr, init for opn fx +C2852634|T037|PT|S62.666B|ICD10CM|Nondisplaced fracture of distal phalanx of right little finger, initial encounter for open fracture|Nondisplaced fracture of distal phalanx of right little finger, initial encounter for open fracture +C2852635|T037|AB|S62.666D|ICD10CM|Nondisp fx of dist phalanx of r lit fngr, 7thD|Nondisp fx of dist phalanx of r lit fngr, 7thD +C2852636|T037|AB|S62.666G|ICD10CM|Nondisp fx of dist phalanx of r lit fngr, 7thG|Nondisp fx of dist phalanx of r lit fngr, 7thG +C2852637|T037|AB|S62.666K|ICD10CM|Nondisp fx of dist phalanx of r lit fngr, 7thK|Nondisp fx of dist phalanx of r lit fngr, 7thK +C2852638|T037|AB|S62.666P|ICD10CM|Nondisp fx of dist phalanx of r lit fngr, 7thP|Nondisp fx of dist phalanx of r lit fngr, 7thP +C2852639|T037|AB|S62.666S|ICD10CM|Nondisp fx of distal phalanx of right little finger, sequela|Nondisp fx of distal phalanx of right little finger, sequela +C2852639|T037|PT|S62.666S|ICD10CM|Nondisplaced fracture of distal phalanx of right little finger, sequela|Nondisplaced fracture of distal phalanx of right little finger, sequela +C2852640|T037|AB|S62.667|ICD10CM|Nondisp fx of distal phalanx of left little finger|Nondisp fx of distal phalanx of left little finger +C2852640|T037|HT|S62.667|ICD10CM|Nondisplaced fracture of distal phalanx of left little finger|Nondisplaced fracture of distal phalanx of left little finger +C2852641|T037|AB|S62.667A|ICD10CM|Nondisp fx of distal phalanx of left little finger, init|Nondisp fx of distal phalanx of left little finger, init +C2852641|T037|PT|S62.667A|ICD10CM|Nondisplaced fracture of distal phalanx of left little finger, initial encounter for closed fracture|Nondisplaced fracture of distal phalanx of left little finger, initial encounter for closed fracture +C2852642|T037|AB|S62.667B|ICD10CM|Nondisp fx of dist phalanx of l little fngr, init for opn fx|Nondisp fx of dist phalanx of l little fngr, init for opn fx +C2852642|T037|PT|S62.667B|ICD10CM|Nondisplaced fracture of distal phalanx of left little finger, initial encounter for open fracture|Nondisplaced fracture of distal phalanx of left little finger, initial encounter for open fracture +C2852643|T037|AB|S62.667D|ICD10CM|Nondisp fx of dist phalanx of l lit fngr, 7thD|Nondisp fx of dist phalanx of l lit fngr, 7thD +C2852644|T037|AB|S62.667G|ICD10CM|Nondisp fx of dist phalanx of l lit fngr, 7thG|Nondisp fx of dist phalanx of l lit fngr, 7thG +C2852645|T037|AB|S62.667K|ICD10CM|Nondisp fx of dist phalanx of l lit fngr, 7thK|Nondisp fx of dist phalanx of l lit fngr, 7thK +C2852646|T037|AB|S62.667P|ICD10CM|Nondisp fx of dist phalanx of l lit fngr, 7thP|Nondisp fx of dist phalanx of l lit fngr, 7thP +C2852647|T037|AB|S62.667S|ICD10CM|Nondisp fx of distal phalanx of left little finger, sequela|Nondisp fx of distal phalanx of left little finger, sequela +C2852647|T037|PT|S62.667S|ICD10CM|Nondisplaced fracture of distal phalanx of left little finger, sequela|Nondisplaced fracture of distal phalanx of left little finger, sequela +C2852649|T037|AB|S62.668|ICD10CM|Nondisplaced fracture of distal phalanx of other finger|Nondisplaced fracture of distal phalanx of other finger +C2852649|T037|HT|S62.668|ICD10CM|Nondisplaced fracture of distal phalanx of other finger|Nondisplaced fracture of distal phalanx of other finger +C2852648|T037|ET|S62.668|ICD10CM|Nondisplaced fracture of distal phalanx of specified finger with unspecified laterality|Nondisplaced fracture of distal phalanx of specified finger with unspecified laterality +C2852650|T037|AB|S62.668A|ICD10CM|Nondisp fx of distal phalanx of oth finger, init for clos fx|Nondisp fx of distal phalanx of oth finger, init for clos fx +C2852650|T037|PT|S62.668A|ICD10CM|Nondisplaced fracture of distal phalanx of other finger, initial encounter for closed fracture|Nondisplaced fracture of distal phalanx of other finger, initial encounter for closed fracture +C2852651|T037|AB|S62.668B|ICD10CM|Nondisp fx of distal phalanx of oth finger, init for opn fx|Nondisp fx of distal phalanx of oth finger, init for opn fx +C2852651|T037|PT|S62.668B|ICD10CM|Nondisplaced fracture of distal phalanx of other finger, initial encounter for open fracture|Nondisplaced fracture of distal phalanx of other finger, initial encounter for open fracture +C2852652|T037|AB|S62.668D|ICD10CM|Nondisp fx of dist phalanx of fngr, subs for fx w routn heal|Nondisp fx of dist phalanx of fngr, subs for fx w routn heal +C2852653|T037|AB|S62.668G|ICD10CM|Nondisp fx of dist phalanx of fngr, subs for fx w delay heal|Nondisp fx of dist phalanx of fngr, subs for fx w delay heal +C2852654|T037|AB|S62.668K|ICD10CM|Nondisp fx of dist phalanx of finger, subs for fx w nonunion|Nondisp fx of dist phalanx of finger, subs for fx w nonunion +C2852655|T037|AB|S62.668P|ICD10CM|Nondisp fx of dist phalanx of finger, subs for fx w malunion|Nondisp fx of dist phalanx of finger, subs for fx w malunion +C2852656|T037|AB|S62.668S|ICD10CM|Nondisp fx of distal phalanx of other finger, sequela|Nondisp fx of distal phalanx of other finger, sequela +C2852656|T037|PT|S62.668S|ICD10CM|Nondisplaced fracture of distal phalanx of other finger, sequela|Nondisplaced fracture of distal phalanx of other finger, sequela +C2852657|T037|AB|S62.669|ICD10CM|Nondisp fx of distal phalanx of unspecified finger|Nondisp fx of distal phalanx of unspecified finger +C2852657|T037|HT|S62.669|ICD10CM|Nondisplaced fracture of distal phalanx of unspecified finger|Nondisplaced fracture of distal phalanx of unspecified finger +C2852658|T037|AB|S62.669A|ICD10CM|Nondisp fx of distal phalanx of unsp finger, init|Nondisp fx of distal phalanx of unsp finger, init +C2852658|T037|PT|S62.669A|ICD10CM|Nondisplaced fracture of distal phalanx of unspecified finger, initial encounter for closed fracture|Nondisplaced fracture of distal phalanx of unspecified finger, initial encounter for closed fracture +C2852659|T037|AB|S62.669B|ICD10CM|Nondisp fx of distal phalanx of unsp finger, init for opn fx|Nondisp fx of distal phalanx of unsp finger, init for opn fx +C2852659|T037|PT|S62.669B|ICD10CM|Nondisplaced fracture of distal phalanx of unspecified finger, initial encounter for open fracture|Nondisplaced fracture of distal phalanx of unspecified finger, initial encounter for open fracture +C2852660|T037|AB|S62.669D|ICD10CM|Nondisp fx of dist phalanx of unsp fngr, 7thD|Nondisp fx of dist phalanx of unsp fngr, 7thD +C2852661|T037|AB|S62.669G|ICD10CM|Nondisp fx of dist phalanx of unsp fngr, 7thG|Nondisp fx of dist phalanx of unsp fngr, 7thG +C2852662|T037|AB|S62.669K|ICD10CM|Nondisp fx of dist phalanx of unsp fngr, 7thK|Nondisp fx of dist phalanx of unsp fngr, 7thK +C2852663|T037|AB|S62.669P|ICD10CM|Nondisp fx of dist phalanx of unsp fngr, 7thP|Nondisp fx of dist phalanx of unsp fngr, 7thP +C2852664|T037|AB|S62.669S|ICD10CM|Nondisp fx of distal phalanx of unspecified finger, sequela|Nondisp fx of distal phalanx of unspecified finger, sequela +C2852664|T037|PT|S62.669S|ICD10CM|Nondisplaced fracture of distal phalanx of unspecified finger, sequela|Nondisplaced fracture of distal phalanx of unspecified finger, sequela +C0452087|T037|PT|S62.7|ICD10|Multiple fractures of fingers|Multiple fractures of fingers +C0478307|T037|PT|S62.8|ICD10|Fracture of other and unspecified parts of wrist and hand|Fracture of other and unspecified parts of wrist and hand +C2852665|T037|AB|S62.9|ICD10CM|Unspecified fracture of wrist and hand|Unspecified fracture of wrist and hand +C2852665|T037|HT|S62.9|ICD10CM|Unspecified fracture of wrist and hand|Unspecified fracture of wrist and hand +C2852666|T037|AB|S62.90|ICD10CM|Unspecified fracture of unspecified wrist and hand|Unspecified fracture of unspecified wrist and hand +C2852666|T037|HT|S62.90|ICD10CM|Unspecified fracture of unspecified wrist and hand|Unspecified fracture of unspecified wrist and hand +C2852667|T037|AB|S62.90XA|ICD10CM|Unsp fracture of unsp wrist and hand, init for clos fx|Unsp fracture of unsp wrist and hand, init for clos fx +C2852667|T037|PT|S62.90XA|ICD10CM|Unspecified fracture of unspecified wrist and hand, initial encounter for closed fracture|Unspecified fracture of unspecified wrist and hand, initial encounter for closed fracture +C2852668|T037|AB|S62.90XB|ICD10CM|Unsp fracture of unsp wrist and hand, init for opn fx|Unsp fracture of unsp wrist and hand, init for opn fx +C2852668|T037|PT|S62.90XB|ICD10CM|Unspecified fracture of unspecified wrist and hand, initial encounter for open fracture|Unspecified fracture of unspecified wrist and hand, initial encounter for open fracture +C2852669|T037|AB|S62.90XD|ICD10CM|Unsp fracture of unsp wrs/hnd, subs for fx w routn heal|Unsp fracture of unsp wrs/hnd, subs for fx w routn heal +C2852670|T037|AB|S62.90XG|ICD10CM|Unsp fracture of unsp wrs/hnd, subs for fx w delay heal|Unsp fracture of unsp wrs/hnd, subs for fx w delay heal +C2852671|T037|AB|S62.90XK|ICD10CM|Unsp fracture of unsp wrist and hand, subs for fx w nonunion|Unsp fracture of unsp wrist and hand, subs for fx w nonunion +C2852671|T037|PT|S62.90XK|ICD10CM|Unspecified fracture of unspecified wrist and hand, subsequent encounter for fracture with nonunion|Unspecified fracture of unspecified wrist and hand, subsequent encounter for fracture with nonunion +C2852672|T037|AB|S62.90XP|ICD10CM|Unsp fracture of unsp wrist and hand, subs for fx w malunion|Unsp fracture of unsp wrist and hand, subs for fx w malunion +C2852672|T037|PT|S62.90XP|ICD10CM|Unspecified fracture of unspecified wrist and hand, subsequent encounter for fracture with malunion|Unspecified fracture of unspecified wrist and hand, subsequent encounter for fracture with malunion +C2852673|T037|AB|S62.90XS|ICD10CM|Unspecified fracture of unspecified wrist and hand, sequela|Unspecified fracture of unspecified wrist and hand, sequela +C2852673|T037|PT|S62.90XS|ICD10CM|Unspecified fracture of unspecified wrist and hand, sequela|Unspecified fracture of unspecified wrist and hand, sequela +C2852674|T037|AB|S62.91|ICD10CM|Unspecified fracture of right wrist and hand|Unspecified fracture of right wrist and hand +C2852674|T037|HT|S62.91|ICD10CM|Unspecified fracture of right wrist and hand|Unspecified fracture of right wrist and hand +C2852675|T037|AB|S62.91XA|ICD10CM|Unsp fracture of right wrist and hand, init for clos fx|Unsp fracture of right wrist and hand, init for clos fx +C2852675|T037|PT|S62.91XA|ICD10CM|Unspecified fracture of right wrist and hand, initial encounter for closed fracture|Unspecified fracture of right wrist and hand, initial encounter for closed fracture +C2852676|T037|AB|S62.91XB|ICD10CM|Unsp fracture of right wrist and hand, init for opn fx|Unsp fracture of right wrist and hand, init for opn fx +C2852676|T037|PT|S62.91XB|ICD10CM|Unspecified fracture of right wrist and hand, initial encounter for open fracture|Unspecified fracture of right wrist and hand, initial encounter for open fracture +C2852677|T037|AB|S62.91XD|ICD10CM|Unsp fracture of right wrs/hnd, subs for fx w routn heal|Unsp fracture of right wrs/hnd, subs for fx w routn heal +C2852677|T037|PT|S62.91XD|ICD10CM|Unspecified fracture of right wrist and hand, subsequent encounter for fracture with routine healing|Unspecified fracture of right wrist and hand, subsequent encounter for fracture with routine healing +C2852678|T037|AB|S62.91XG|ICD10CM|Unsp fracture of right wrs/hnd, subs for fx w delay heal|Unsp fracture of right wrs/hnd, subs for fx w delay heal +C2852678|T037|PT|S62.91XG|ICD10CM|Unspecified fracture of right wrist and hand, subsequent encounter for fracture with delayed healing|Unspecified fracture of right wrist and hand, subsequent encounter for fracture with delayed healing +C2852679|T037|AB|S62.91XK|ICD10CM|Unsp fracture of right wrs/hnd, subs for fx w nonunion|Unsp fracture of right wrs/hnd, subs for fx w nonunion +C2852679|T037|PT|S62.91XK|ICD10CM|Unspecified fracture of right wrist and hand, subsequent encounter for fracture with nonunion|Unspecified fracture of right wrist and hand, subsequent encounter for fracture with nonunion +C2852680|T037|AB|S62.91XP|ICD10CM|Unsp fracture of right wrs/hnd, subs for fx w malunion|Unsp fracture of right wrs/hnd, subs for fx w malunion +C2852680|T037|PT|S62.91XP|ICD10CM|Unspecified fracture of right wrist and hand, subsequent encounter for fracture with malunion|Unspecified fracture of right wrist and hand, subsequent encounter for fracture with malunion +C2852681|T037|AB|S62.91XS|ICD10CM|Unspecified fracture of right wrist and hand, sequela|Unspecified fracture of right wrist and hand, sequela +C2852681|T037|PT|S62.91XS|ICD10CM|Unspecified fracture of right wrist and hand, sequela|Unspecified fracture of right wrist and hand, sequela +C2852682|T037|AB|S62.92|ICD10CM|Unspecified fracture of left wrist and hand|Unspecified fracture of left wrist and hand +C2852682|T037|HT|S62.92|ICD10CM|Unspecified fracture of left wrist and hand|Unspecified fracture of left wrist and hand +C2852683|T037|AB|S62.92XA|ICD10CM|Unsp fracture of left wrist and hand, init for clos fx|Unsp fracture of left wrist and hand, init for clos fx +C2852683|T037|PT|S62.92XA|ICD10CM|Unspecified fracture of left wrist and hand, initial encounter for closed fracture|Unspecified fracture of left wrist and hand, initial encounter for closed fracture +C2852684|T037|AB|S62.92XB|ICD10CM|Unsp fracture of left wrist and hand, init for opn fx|Unsp fracture of left wrist and hand, init for opn fx +C2852684|T037|PT|S62.92XB|ICD10CM|Unspecified fracture of left wrist and hand, initial encounter for open fracture|Unspecified fracture of left wrist and hand, initial encounter for open fracture +C2852685|T037|AB|S62.92XD|ICD10CM|Unsp fracture of left wrs/hnd, subs for fx w routn heal|Unsp fracture of left wrs/hnd, subs for fx w routn heal +C2852685|T037|PT|S62.92XD|ICD10CM|Unspecified fracture of left wrist and hand, subsequent encounter for fracture with routine healing|Unspecified fracture of left wrist and hand, subsequent encounter for fracture with routine healing +C2852686|T037|AB|S62.92XG|ICD10CM|Unsp fracture of left wrs/hnd, subs for fx w delay heal|Unsp fracture of left wrs/hnd, subs for fx w delay heal +C2852686|T037|PT|S62.92XG|ICD10CM|Unspecified fracture of left wrist and hand, subsequent encounter for fracture with delayed healing|Unspecified fracture of left wrist and hand, subsequent encounter for fracture with delayed healing +C2852687|T037|AB|S62.92XK|ICD10CM|Unsp fracture of left wrist and hand, subs for fx w nonunion|Unsp fracture of left wrist and hand, subs for fx w nonunion +C2852687|T037|PT|S62.92XK|ICD10CM|Unspecified fracture of left wrist and hand, subsequent encounter for fracture with nonunion|Unspecified fracture of left wrist and hand, subsequent encounter for fracture with nonunion +C2852688|T037|AB|S62.92XP|ICD10CM|Unsp fracture of left wrist and hand, subs for fx w malunion|Unsp fracture of left wrist and hand, subs for fx w malunion +C2852688|T037|PT|S62.92XP|ICD10CM|Unspecified fracture of left wrist and hand, subsequent encounter for fracture with malunion|Unspecified fracture of left wrist and hand, subsequent encounter for fracture with malunion +C2852689|T037|AB|S62.92XS|ICD10CM|Unspecified fracture of left wrist and hand, sequela|Unspecified fracture of left wrist and hand, sequela +C2852689|T037|PT|S62.92XS|ICD10CM|Unspecified fracture of left wrist and hand, sequela|Unspecified fracture of left wrist and hand, sequela +C4290358|T037|ET|S63|ICD10CM|avulsion of joint or ligament at wrist and hand level|avulsion of joint or ligament at wrist and hand level +C2852697|T037|HT|S63|ICD10CM|Dislocation and sprain of joints and ligaments at wrist and hand level|Dislocation and sprain of joints and ligaments at wrist and hand level +C2852697|T037|AB|S63|ICD10CM|Dislocation and sprain of joints and ligaments at wrs/hnd lv|Dislocation and sprain of joints and ligaments at wrs/hnd lv +C0495902|T037|HT|S63|ICD10|Dislocation, sprain and strain of joints and ligaments at wrist and hand level|Dislocation, sprain and strain of joints and ligaments at wrist and hand level +C4290359|T037|ET|S63|ICD10CM|laceration of cartilage, joint or ligament at wrist and hand level|laceration of cartilage, joint or ligament at wrist and hand level +C4290360|T037|ET|S63|ICD10CM|sprain of cartilage, joint or ligament at wrist and hand level|sprain of cartilage, joint or ligament at wrist and hand level +C4290361|T037|ET|S63|ICD10CM|traumatic hemarthrosis of joint or ligament at wrist and hand level|traumatic hemarthrosis of joint or ligament at wrist and hand level +C4290362|T037|ET|S63|ICD10CM|traumatic rupture of joint or ligament at wrist and hand level|traumatic rupture of joint or ligament at wrist and hand level +C4290363|T037|ET|S63|ICD10CM|traumatic subluxation of joint or ligament at wrist and hand level|traumatic subluxation of joint or ligament at wrist and hand level +C4290364|T037|ET|S63|ICD10CM|traumatic tear of joint or ligament at wrist and hand level|traumatic tear of joint or ligament at wrist and hand level +C0159941|T037|PT|S63.0|ICD10|Dislocation of wrist|Dislocation of wrist +C2852698|T037|AB|S63.0|ICD10CM|Subluxation and dislocation of wrist and hand joints|Subluxation and dislocation of wrist and hand joints +C2852698|T037|HT|S63.0|ICD10CM|Subluxation and dislocation of wrist and hand joints|Subluxation and dislocation of wrist and hand joints +C0867032|T037|ET|S63.00|ICD10CM|Dislocation of carpal bone NOS|Dislocation of carpal bone NOS +C0555320|T037|ET|S63.00|ICD10CM|Dislocation of distal end of radius NOS|Dislocation of distal end of radius NOS +C2852699|T037|ET|S63.00|ICD10CM|Subluxation of carpal bone NOS|Subluxation of carpal bone NOS +C2852700|T037|ET|S63.00|ICD10CM|Subluxation of distal end of radius NOS|Subluxation of distal end of radius NOS +C2852701|T037|AB|S63.00|ICD10CM|Unspecified subluxation and dislocation of wrist and hand|Unspecified subluxation and dislocation of wrist and hand +C2852701|T037|HT|S63.00|ICD10CM|Unspecified subluxation and dislocation of wrist and hand|Unspecified subluxation and dislocation of wrist and hand +C2852702|T037|AB|S63.001|ICD10CM|Unspecified subluxation of right wrist and hand|Unspecified subluxation of right wrist and hand +C2852702|T037|HT|S63.001|ICD10CM|Unspecified subluxation of right wrist and hand|Unspecified subluxation of right wrist and hand +C2852703|T037|AB|S63.001A|ICD10CM|Unspecified subluxation of right wrist and hand, init encntr|Unspecified subluxation of right wrist and hand, init encntr +C2852703|T037|PT|S63.001A|ICD10CM|Unspecified subluxation of right wrist and hand, initial encounter|Unspecified subluxation of right wrist and hand, initial encounter +C2852704|T037|AB|S63.001D|ICD10CM|Unspecified subluxation of right wrist and hand, subs encntr|Unspecified subluxation of right wrist and hand, subs encntr +C2852704|T037|PT|S63.001D|ICD10CM|Unspecified subluxation of right wrist and hand, subsequent encounter|Unspecified subluxation of right wrist and hand, subsequent encounter +C2852705|T037|PT|S63.001S|ICD10CM|Unspecified subluxation of right wrist and hand, sequela|Unspecified subluxation of right wrist and hand, sequela +C2852705|T037|AB|S63.001S|ICD10CM|Unspecified subluxation of right wrist and hand, sequela|Unspecified subluxation of right wrist and hand, sequela +C2852706|T037|AB|S63.002|ICD10CM|Unspecified subluxation of left wrist and hand|Unspecified subluxation of left wrist and hand +C2852706|T037|HT|S63.002|ICD10CM|Unspecified subluxation of left wrist and hand|Unspecified subluxation of left wrist and hand +C2852707|T037|AB|S63.002A|ICD10CM|Unspecified subluxation of left wrist and hand, init encntr|Unspecified subluxation of left wrist and hand, init encntr +C2852707|T037|PT|S63.002A|ICD10CM|Unspecified subluxation of left wrist and hand, initial encounter|Unspecified subluxation of left wrist and hand, initial encounter +C2852708|T037|AB|S63.002D|ICD10CM|Unspecified subluxation of left wrist and hand, subs encntr|Unspecified subluxation of left wrist and hand, subs encntr +C2852708|T037|PT|S63.002D|ICD10CM|Unspecified subluxation of left wrist and hand, subsequent encounter|Unspecified subluxation of left wrist and hand, subsequent encounter +C2852709|T037|PT|S63.002S|ICD10CM|Unspecified subluxation of left wrist and hand, sequela|Unspecified subluxation of left wrist and hand, sequela +C2852709|T037|AB|S63.002S|ICD10CM|Unspecified subluxation of left wrist and hand, sequela|Unspecified subluxation of left wrist and hand, sequela +C2852710|T037|AB|S63.003|ICD10CM|Unspecified subluxation of unspecified wrist and hand|Unspecified subluxation of unspecified wrist and hand +C2852710|T037|HT|S63.003|ICD10CM|Unspecified subluxation of unspecified wrist and hand|Unspecified subluxation of unspecified wrist and hand +C2852711|T037|AB|S63.003A|ICD10CM|Unsp subluxation of unspecified wrist and hand, init encntr|Unsp subluxation of unspecified wrist and hand, init encntr +C2852711|T037|PT|S63.003A|ICD10CM|Unspecified subluxation of unspecified wrist and hand, initial encounter|Unspecified subluxation of unspecified wrist and hand, initial encounter +C2852712|T037|AB|S63.003D|ICD10CM|Unsp subluxation of unspecified wrist and hand, subs encntr|Unsp subluxation of unspecified wrist and hand, subs encntr +C2852712|T037|PT|S63.003D|ICD10CM|Unspecified subluxation of unspecified wrist and hand, subsequent encounter|Unspecified subluxation of unspecified wrist and hand, subsequent encounter +C2852713|T037|AB|S63.003S|ICD10CM|Unsp subluxation of unspecified wrist and hand, sequela|Unsp subluxation of unspecified wrist and hand, sequela +C2852713|T037|PT|S63.003S|ICD10CM|Unspecified subluxation of unspecified wrist and hand, sequela|Unspecified subluxation of unspecified wrist and hand, sequela +C2852714|T037|AB|S63.004|ICD10CM|Unspecified dislocation of right wrist and hand|Unspecified dislocation of right wrist and hand +C2852714|T037|HT|S63.004|ICD10CM|Unspecified dislocation of right wrist and hand|Unspecified dislocation of right wrist and hand +C2852715|T037|AB|S63.004A|ICD10CM|Unspecified dislocation of right wrist and hand, init encntr|Unspecified dislocation of right wrist and hand, init encntr +C2852715|T037|PT|S63.004A|ICD10CM|Unspecified dislocation of right wrist and hand, initial encounter|Unspecified dislocation of right wrist and hand, initial encounter +C2852716|T037|AB|S63.004D|ICD10CM|Unspecified dislocation of right wrist and hand, subs encntr|Unspecified dislocation of right wrist and hand, subs encntr +C2852716|T037|PT|S63.004D|ICD10CM|Unspecified dislocation of right wrist and hand, subsequent encounter|Unspecified dislocation of right wrist and hand, subsequent encounter +C2852717|T037|PT|S63.004S|ICD10CM|Unspecified dislocation of right wrist and hand, sequela|Unspecified dislocation of right wrist and hand, sequela +C2852717|T037|AB|S63.004S|ICD10CM|Unspecified dislocation of right wrist and hand, sequela|Unspecified dislocation of right wrist and hand, sequela +C2852718|T037|AB|S63.005|ICD10CM|Unspecified dislocation of left wrist and hand|Unspecified dislocation of left wrist and hand +C2852718|T037|HT|S63.005|ICD10CM|Unspecified dislocation of left wrist and hand|Unspecified dislocation of left wrist and hand +C2852719|T037|AB|S63.005A|ICD10CM|Unspecified dislocation of left wrist and hand, init encntr|Unspecified dislocation of left wrist and hand, init encntr +C2852719|T037|PT|S63.005A|ICD10CM|Unspecified dislocation of left wrist and hand, initial encounter|Unspecified dislocation of left wrist and hand, initial encounter +C2852720|T037|AB|S63.005D|ICD10CM|Unspecified dislocation of left wrist and hand, subs encntr|Unspecified dislocation of left wrist and hand, subs encntr +C2852720|T037|PT|S63.005D|ICD10CM|Unspecified dislocation of left wrist and hand, subsequent encounter|Unspecified dislocation of left wrist and hand, subsequent encounter +C2852721|T037|PT|S63.005S|ICD10CM|Unspecified dislocation of left wrist and hand, sequela|Unspecified dislocation of left wrist and hand, sequela +C2852721|T037|AB|S63.005S|ICD10CM|Unspecified dislocation of left wrist and hand, sequela|Unspecified dislocation of left wrist and hand, sequela +C2852722|T037|AB|S63.006|ICD10CM|Unspecified dislocation of unspecified wrist and hand|Unspecified dislocation of unspecified wrist and hand +C2852722|T037|HT|S63.006|ICD10CM|Unspecified dislocation of unspecified wrist and hand|Unspecified dislocation of unspecified wrist and hand +C2852723|T037|AB|S63.006A|ICD10CM|Unsp dislocation of unspecified wrist and hand, init encntr|Unsp dislocation of unspecified wrist and hand, init encntr +C2852723|T037|PT|S63.006A|ICD10CM|Unspecified dislocation of unspecified wrist and hand, initial encounter|Unspecified dislocation of unspecified wrist and hand, initial encounter +C2852724|T037|AB|S63.006D|ICD10CM|Unsp dislocation of unspecified wrist and hand, subs encntr|Unsp dislocation of unspecified wrist and hand, subs encntr +C2852724|T037|PT|S63.006D|ICD10CM|Unspecified dislocation of unspecified wrist and hand, subsequent encounter|Unspecified dislocation of unspecified wrist and hand, subsequent encounter +C2852725|T037|AB|S63.006S|ICD10CM|Unsp dislocation of unspecified wrist and hand, sequela|Unsp dislocation of unspecified wrist and hand, sequela +C2852725|T037|PT|S63.006S|ICD10CM|Unspecified dislocation of unspecified wrist and hand, sequela|Unspecified dislocation of unspecified wrist and hand, sequela +C2852726|T037|AB|S63.01|ICD10CM|Subluxation and dislocation of distal radioulnar joint|Subluxation and dislocation of distal radioulnar joint +C2852726|T037|HT|S63.01|ICD10CM|Subluxation and dislocation of distal radioulnar joint|Subluxation and dislocation of distal radioulnar joint +C2852727|T037|AB|S63.011|ICD10CM|Subluxation of distal radioulnar joint of right wrist|Subluxation of distal radioulnar joint of right wrist +C2852727|T037|HT|S63.011|ICD10CM|Subluxation of distal radioulnar joint of right wrist|Subluxation of distal radioulnar joint of right wrist +C2852728|T037|AB|S63.011A|ICD10CM|Subluxation of distal radioulnar joint of right wrist, init|Subluxation of distal radioulnar joint of right wrist, init +C2852728|T037|PT|S63.011A|ICD10CM|Subluxation of distal radioulnar joint of right wrist, initial encounter|Subluxation of distal radioulnar joint of right wrist, initial encounter +C2852729|T037|AB|S63.011D|ICD10CM|Subluxation of distal radioulnar joint of right wrist, subs|Subluxation of distal radioulnar joint of right wrist, subs +C2852729|T037|PT|S63.011D|ICD10CM|Subluxation of distal radioulnar joint of right wrist, subsequent encounter|Subluxation of distal radioulnar joint of right wrist, subsequent encounter +C2852730|T037|AB|S63.011S|ICD10CM|Subluxation of distal radioulnar joint of r wrist, sequela|Subluxation of distal radioulnar joint of r wrist, sequela +C2852730|T037|PT|S63.011S|ICD10CM|Subluxation of distal radioulnar joint of right wrist, sequela|Subluxation of distal radioulnar joint of right wrist, sequela +C2852731|T037|AB|S63.012|ICD10CM|Subluxation of distal radioulnar joint of left wrist|Subluxation of distal radioulnar joint of left wrist +C2852731|T037|HT|S63.012|ICD10CM|Subluxation of distal radioulnar joint of left wrist|Subluxation of distal radioulnar joint of left wrist +C2852732|T037|AB|S63.012A|ICD10CM|Subluxation of distal radioulnar joint of left wrist, init|Subluxation of distal radioulnar joint of left wrist, init +C2852732|T037|PT|S63.012A|ICD10CM|Subluxation of distal radioulnar joint of left wrist, initial encounter|Subluxation of distal radioulnar joint of left wrist, initial encounter +C2852733|T037|AB|S63.012D|ICD10CM|Subluxation of distal radioulnar joint of left wrist, subs|Subluxation of distal radioulnar joint of left wrist, subs +C2852733|T037|PT|S63.012D|ICD10CM|Subluxation of distal radioulnar joint of left wrist, subsequent encounter|Subluxation of distal radioulnar joint of left wrist, subsequent encounter +C2852734|T037|AB|S63.012S|ICD10CM|Sublux of distal radioulnar joint of left wrist, sequela|Sublux of distal radioulnar joint of left wrist, sequela +C2852734|T037|PT|S63.012S|ICD10CM|Subluxation of distal radioulnar joint of left wrist, sequela|Subluxation of distal radioulnar joint of left wrist, sequela +C2852735|T037|AB|S63.013|ICD10CM|Subluxation of distal radioulnar joint of unspecified wrist|Subluxation of distal radioulnar joint of unspecified wrist +C2852735|T037|HT|S63.013|ICD10CM|Subluxation of distal radioulnar joint of unspecified wrist|Subluxation of distal radioulnar joint of unspecified wrist +C2852736|T037|AB|S63.013A|ICD10CM|Subluxation of distal radioulnar joint of unsp wrist, init|Subluxation of distal radioulnar joint of unsp wrist, init +C2852736|T037|PT|S63.013A|ICD10CM|Subluxation of distal radioulnar joint of unspecified wrist, initial encounter|Subluxation of distal radioulnar joint of unspecified wrist, initial encounter +C2852737|T037|AB|S63.013D|ICD10CM|Subluxation of distal radioulnar joint of unsp wrist, subs|Subluxation of distal radioulnar joint of unsp wrist, subs +C2852737|T037|PT|S63.013D|ICD10CM|Subluxation of distal radioulnar joint of unspecified wrist, subsequent encounter|Subluxation of distal radioulnar joint of unspecified wrist, subsequent encounter +C2852738|T037|AB|S63.013S|ICD10CM|Sublux of distal radioulnar joint of unsp wrist, sequela|Sublux of distal radioulnar joint of unsp wrist, sequela +C2852738|T037|PT|S63.013S|ICD10CM|Subluxation of distal radioulnar joint of unspecified wrist, sequela|Subluxation of distal radioulnar joint of unspecified wrist, sequela +C2852739|T037|AB|S63.014|ICD10CM|Dislocation of distal radioulnar joint of right wrist|Dislocation of distal radioulnar joint of right wrist +C2852739|T037|HT|S63.014|ICD10CM|Dislocation of distal radioulnar joint of right wrist|Dislocation of distal radioulnar joint of right wrist +C2852740|T037|AB|S63.014A|ICD10CM|Dislocation of distal radioulnar joint of right wrist, init|Dislocation of distal radioulnar joint of right wrist, init +C2852740|T037|PT|S63.014A|ICD10CM|Dislocation of distal radioulnar joint of right wrist, initial encounter|Dislocation of distal radioulnar joint of right wrist, initial encounter +C2852741|T037|AB|S63.014D|ICD10CM|Dislocation of distal radioulnar joint of right wrist, subs|Dislocation of distal radioulnar joint of right wrist, subs +C2852741|T037|PT|S63.014D|ICD10CM|Dislocation of distal radioulnar joint of right wrist, subsequent encounter|Dislocation of distal radioulnar joint of right wrist, subsequent encounter +C2852742|T037|AB|S63.014S|ICD10CM|Disloc of distal radioulnar joint of right wrist, sequela|Disloc of distal radioulnar joint of right wrist, sequela +C2852742|T037|PT|S63.014S|ICD10CM|Dislocation of distal radioulnar joint of right wrist, sequela|Dislocation of distal radioulnar joint of right wrist, sequela +C2852743|T037|AB|S63.015|ICD10CM|Dislocation of distal radioulnar joint of left wrist|Dislocation of distal radioulnar joint of left wrist +C2852743|T037|HT|S63.015|ICD10CM|Dislocation of distal radioulnar joint of left wrist|Dislocation of distal radioulnar joint of left wrist +C2852744|T037|AB|S63.015A|ICD10CM|Dislocation of distal radioulnar joint of left wrist, init|Dislocation of distal radioulnar joint of left wrist, init +C2852744|T037|PT|S63.015A|ICD10CM|Dislocation of distal radioulnar joint of left wrist, initial encounter|Dislocation of distal radioulnar joint of left wrist, initial encounter +C2852745|T037|AB|S63.015D|ICD10CM|Dislocation of distal radioulnar joint of left wrist, subs|Dislocation of distal radioulnar joint of left wrist, subs +C2852745|T037|PT|S63.015D|ICD10CM|Dislocation of distal radioulnar joint of left wrist, subsequent encounter|Dislocation of distal radioulnar joint of left wrist, subsequent encounter +C2852746|T037|AB|S63.015S|ICD10CM|Disloc of distal radioulnar joint of left wrist, sequela|Disloc of distal radioulnar joint of left wrist, sequela +C2852746|T037|PT|S63.015S|ICD10CM|Dislocation of distal radioulnar joint of left wrist, sequela|Dislocation of distal radioulnar joint of left wrist, sequela +C2852747|T037|AB|S63.016|ICD10CM|Dislocation of distal radioulnar joint of unspecified wrist|Dislocation of distal radioulnar joint of unspecified wrist +C2852747|T037|HT|S63.016|ICD10CM|Dislocation of distal radioulnar joint of unspecified wrist|Dislocation of distal radioulnar joint of unspecified wrist +C2852748|T037|AB|S63.016A|ICD10CM|Dislocation of distal radioulnar joint of unsp wrist, init|Dislocation of distal radioulnar joint of unsp wrist, init +C2852748|T037|PT|S63.016A|ICD10CM|Dislocation of distal radioulnar joint of unspecified wrist, initial encounter|Dislocation of distal radioulnar joint of unspecified wrist, initial encounter +C2852749|T037|AB|S63.016D|ICD10CM|Dislocation of distal radioulnar joint of unsp wrist, subs|Dislocation of distal radioulnar joint of unsp wrist, subs +C2852749|T037|PT|S63.016D|ICD10CM|Dislocation of distal radioulnar joint of unspecified wrist, subsequent encounter|Dislocation of distal radioulnar joint of unspecified wrist, subsequent encounter +C2852750|T037|AB|S63.016S|ICD10CM|Disloc of distal radioulnar joint of unsp wrist, sequela|Disloc of distal radioulnar joint of unsp wrist, sequela +C2852750|T037|PT|S63.016S|ICD10CM|Dislocation of distal radioulnar joint of unspecified wrist, sequela|Dislocation of distal radioulnar joint of unspecified wrist, sequela +C2852751|T037|AB|S63.02|ICD10CM|Subluxation and dislocation of radiocarpal joint|Subluxation and dislocation of radiocarpal joint +C2852751|T037|HT|S63.02|ICD10CM|Subluxation and dislocation of radiocarpal joint|Subluxation and dislocation of radiocarpal joint +C2852752|T037|AB|S63.021|ICD10CM|Subluxation of radiocarpal joint of right wrist|Subluxation of radiocarpal joint of right wrist +C2852752|T037|HT|S63.021|ICD10CM|Subluxation of radiocarpal joint of right wrist|Subluxation of radiocarpal joint of right wrist +C2852753|T037|AB|S63.021A|ICD10CM|Subluxation of radiocarpal joint of right wrist, init encntr|Subluxation of radiocarpal joint of right wrist, init encntr +C2852753|T037|PT|S63.021A|ICD10CM|Subluxation of radiocarpal joint of right wrist, initial encounter|Subluxation of radiocarpal joint of right wrist, initial encounter +C2852754|T037|AB|S63.021D|ICD10CM|Subluxation of radiocarpal joint of right wrist, subs encntr|Subluxation of radiocarpal joint of right wrist, subs encntr +C2852754|T037|PT|S63.021D|ICD10CM|Subluxation of radiocarpal joint of right wrist, subsequent encounter|Subluxation of radiocarpal joint of right wrist, subsequent encounter +C2852755|T037|PT|S63.021S|ICD10CM|Subluxation of radiocarpal joint of right wrist, sequela|Subluxation of radiocarpal joint of right wrist, sequela +C2852755|T037|AB|S63.021S|ICD10CM|Subluxation of radiocarpal joint of right wrist, sequela|Subluxation of radiocarpal joint of right wrist, sequela +C2852756|T037|AB|S63.022|ICD10CM|Subluxation of radiocarpal joint of left wrist|Subluxation of radiocarpal joint of left wrist +C2852756|T037|HT|S63.022|ICD10CM|Subluxation of radiocarpal joint of left wrist|Subluxation of radiocarpal joint of left wrist +C2852757|T037|AB|S63.022A|ICD10CM|Subluxation of radiocarpal joint of left wrist, init encntr|Subluxation of radiocarpal joint of left wrist, init encntr +C2852757|T037|PT|S63.022A|ICD10CM|Subluxation of radiocarpal joint of left wrist, initial encounter|Subluxation of radiocarpal joint of left wrist, initial encounter +C2852758|T037|AB|S63.022D|ICD10CM|Subluxation of radiocarpal joint of left wrist, subs encntr|Subluxation of radiocarpal joint of left wrist, subs encntr +C2852758|T037|PT|S63.022D|ICD10CM|Subluxation of radiocarpal joint of left wrist, subsequent encounter|Subluxation of radiocarpal joint of left wrist, subsequent encounter +C2852759|T037|PT|S63.022S|ICD10CM|Subluxation of radiocarpal joint of left wrist, sequela|Subluxation of radiocarpal joint of left wrist, sequela +C2852759|T037|AB|S63.022S|ICD10CM|Subluxation of radiocarpal joint of left wrist, sequela|Subluxation of radiocarpal joint of left wrist, sequela +C2852760|T037|AB|S63.023|ICD10CM|Subluxation of radiocarpal joint of unspecified wrist|Subluxation of radiocarpal joint of unspecified wrist +C2852760|T037|HT|S63.023|ICD10CM|Subluxation of radiocarpal joint of unspecified wrist|Subluxation of radiocarpal joint of unspecified wrist +C2852761|T037|AB|S63.023A|ICD10CM|Subluxation of radiocarpal joint of unsp wrist, init encntr|Subluxation of radiocarpal joint of unsp wrist, init encntr +C2852761|T037|PT|S63.023A|ICD10CM|Subluxation of radiocarpal joint of unspecified wrist, initial encounter|Subluxation of radiocarpal joint of unspecified wrist, initial encounter +C2852762|T037|AB|S63.023D|ICD10CM|Subluxation of radiocarpal joint of unsp wrist, subs encntr|Subluxation of radiocarpal joint of unsp wrist, subs encntr +C2852762|T037|PT|S63.023D|ICD10CM|Subluxation of radiocarpal joint of unspecified wrist, subsequent encounter|Subluxation of radiocarpal joint of unspecified wrist, subsequent encounter +C2852763|T037|AB|S63.023S|ICD10CM|Subluxation of radiocarpal joint of unsp wrist, sequela|Subluxation of radiocarpal joint of unsp wrist, sequela +C2852763|T037|PT|S63.023S|ICD10CM|Subluxation of radiocarpal joint of unspecified wrist, sequela|Subluxation of radiocarpal joint of unspecified wrist, sequela +C2852764|T037|AB|S63.024|ICD10CM|Dislocation of radiocarpal joint of right wrist|Dislocation of radiocarpal joint of right wrist +C2852764|T037|HT|S63.024|ICD10CM|Dislocation of radiocarpal joint of right wrist|Dislocation of radiocarpal joint of right wrist +C2852765|T037|AB|S63.024A|ICD10CM|Dislocation of radiocarpal joint of right wrist, init encntr|Dislocation of radiocarpal joint of right wrist, init encntr +C2852765|T037|PT|S63.024A|ICD10CM|Dislocation of radiocarpal joint of right wrist, initial encounter|Dislocation of radiocarpal joint of right wrist, initial encounter +C2852766|T037|AB|S63.024D|ICD10CM|Dislocation of radiocarpal joint of right wrist, subs encntr|Dislocation of radiocarpal joint of right wrist, subs encntr +C2852766|T037|PT|S63.024D|ICD10CM|Dislocation of radiocarpal joint of right wrist, subsequent encounter|Dislocation of radiocarpal joint of right wrist, subsequent encounter +C2852767|T037|PT|S63.024S|ICD10CM|Dislocation of radiocarpal joint of right wrist, sequela|Dislocation of radiocarpal joint of right wrist, sequela +C2852767|T037|AB|S63.024S|ICD10CM|Dislocation of radiocarpal joint of right wrist, sequela|Dislocation of radiocarpal joint of right wrist, sequela +C2852768|T037|AB|S63.025|ICD10CM|Dislocation of radiocarpal joint of left wrist|Dislocation of radiocarpal joint of left wrist +C2852768|T037|HT|S63.025|ICD10CM|Dislocation of radiocarpal joint of left wrist|Dislocation of radiocarpal joint of left wrist +C2852769|T037|AB|S63.025A|ICD10CM|Dislocation of radiocarpal joint of left wrist, init encntr|Dislocation of radiocarpal joint of left wrist, init encntr +C2852769|T037|PT|S63.025A|ICD10CM|Dislocation of radiocarpal joint of left wrist, initial encounter|Dislocation of radiocarpal joint of left wrist, initial encounter +C2852770|T037|AB|S63.025D|ICD10CM|Dislocation of radiocarpal joint of left wrist, subs encntr|Dislocation of radiocarpal joint of left wrist, subs encntr +C2852770|T037|PT|S63.025D|ICD10CM|Dislocation of radiocarpal joint of left wrist, subsequent encounter|Dislocation of radiocarpal joint of left wrist, subsequent encounter +C2852771|T037|PT|S63.025S|ICD10CM|Dislocation of radiocarpal joint of left wrist, sequela|Dislocation of radiocarpal joint of left wrist, sequela +C2852771|T037|AB|S63.025S|ICD10CM|Dislocation of radiocarpal joint of left wrist, sequela|Dislocation of radiocarpal joint of left wrist, sequela +C2852772|T037|AB|S63.026|ICD10CM|Dislocation of radiocarpal joint of unspecified wrist|Dislocation of radiocarpal joint of unspecified wrist +C2852772|T037|HT|S63.026|ICD10CM|Dislocation of radiocarpal joint of unspecified wrist|Dislocation of radiocarpal joint of unspecified wrist +C2852773|T037|AB|S63.026A|ICD10CM|Dislocation of radiocarpal joint of unsp wrist, init encntr|Dislocation of radiocarpal joint of unsp wrist, init encntr +C2852773|T037|PT|S63.026A|ICD10CM|Dislocation of radiocarpal joint of unspecified wrist, initial encounter|Dislocation of radiocarpal joint of unspecified wrist, initial encounter +C2852774|T037|AB|S63.026D|ICD10CM|Dislocation of radiocarpal joint of unsp wrist, subs encntr|Dislocation of radiocarpal joint of unsp wrist, subs encntr +C2852774|T037|PT|S63.026D|ICD10CM|Dislocation of radiocarpal joint of unspecified wrist, subsequent encounter|Dislocation of radiocarpal joint of unspecified wrist, subsequent encounter +C2852775|T037|AB|S63.026S|ICD10CM|Dislocation of radiocarpal joint of unsp wrist, sequela|Dislocation of radiocarpal joint of unsp wrist, sequela +C2852775|T037|PT|S63.026S|ICD10CM|Dislocation of radiocarpal joint of unspecified wrist, sequela|Dislocation of radiocarpal joint of unspecified wrist, sequela +C2852776|T037|AB|S63.03|ICD10CM|Subluxation and dislocation of midcarpal joint|Subluxation and dislocation of midcarpal joint +C2852776|T037|HT|S63.03|ICD10CM|Subluxation and dislocation of midcarpal joint|Subluxation and dislocation of midcarpal joint +C2852777|T037|AB|S63.031|ICD10CM|Subluxation of midcarpal joint of right wrist|Subluxation of midcarpal joint of right wrist +C2852777|T037|HT|S63.031|ICD10CM|Subluxation of midcarpal joint of right wrist|Subluxation of midcarpal joint of right wrist +C2852778|T037|AB|S63.031A|ICD10CM|Subluxation of midcarpal joint of right wrist, init encntr|Subluxation of midcarpal joint of right wrist, init encntr +C2852778|T037|PT|S63.031A|ICD10CM|Subluxation of midcarpal joint of right wrist, initial encounter|Subluxation of midcarpal joint of right wrist, initial encounter +C2852779|T037|AB|S63.031D|ICD10CM|Subluxation of midcarpal joint of right wrist, subs encntr|Subluxation of midcarpal joint of right wrist, subs encntr +C2852779|T037|PT|S63.031D|ICD10CM|Subluxation of midcarpal joint of right wrist, subsequent encounter|Subluxation of midcarpal joint of right wrist, subsequent encounter +C2852780|T037|PT|S63.031S|ICD10CM|Subluxation of midcarpal joint of right wrist, sequela|Subluxation of midcarpal joint of right wrist, sequela +C2852780|T037|AB|S63.031S|ICD10CM|Subluxation of midcarpal joint of right wrist, sequela|Subluxation of midcarpal joint of right wrist, sequela +C2852781|T037|AB|S63.032|ICD10CM|Subluxation of midcarpal joint of left wrist|Subluxation of midcarpal joint of left wrist +C2852781|T037|HT|S63.032|ICD10CM|Subluxation of midcarpal joint of left wrist|Subluxation of midcarpal joint of left wrist +C2852782|T037|AB|S63.032A|ICD10CM|Subluxation of midcarpal joint of left wrist, init encntr|Subluxation of midcarpal joint of left wrist, init encntr +C2852782|T037|PT|S63.032A|ICD10CM|Subluxation of midcarpal joint of left wrist, initial encounter|Subluxation of midcarpal joint of left wrist, initial encounter +C2852783|T037|AB|S63.032D|ICD10CM|Subluxation of midcarpal joint of left wrist, subs encntr|Subluxation of midcarpal joint of left wrist, subs encntr +C2852783|T037|PT|S63.032D|ICD10CM|Subluxation of midcarpal joint of left wrist, subsequent encounter|Subluxation of midcarpal joint of left wrist, subsequent encounter +C2852784|T037|PT|S63.032S|ICD10CM|Subluxation of midcarpal joint of left wrist, sequela|Subluxation of midcarpal joint of left wrist, sequela +C2852784|T037|AB|S63.032S|ICD10CM|Subluxation of midcarpal joint of left wrist, sequela|Subluxation of midcarpal joint of left wrist, sequela +C2852785|T037|AB|S63.033|ICD10CM|Subluxation of midcarpal joint of unspecified wrist|Subluxation of midcarpal joint of unspecified wrist +C2852785|T037|HT|S63.033|ICD10CM|Subluxation of midcarpal joint of unspecified wrist|Subluxation of midcarpal joint of unspecified wrist +C2852786|T037|AB|S63.033A|ICD10CM|Subluxation of midcarpal joint of unsp wrist, init encntr|Subluxation of midcarpal joint of unsp wrist, init encntr +C2852786|T037|PT|S63.033A|ICD10CM|Subluxation of midcarpal joint of unspecified wrist, initial encounter|Subluxation of midcarpal joint of unspecified wrist, initial encounter +C2852787|T037|AB|S63.033D|ICD10CM|Subluxation of midcarpal joint of unsp wrist, subs encntr|Subluxation of midcarpal joint of unsp wrist, subs encntr +C2852787|T037|PT|S63.033D|ICD10CM|Subluxation of midcarpal joint of unspecified wrist, subsequent encounter|Subluxation of midcarpal joint of unspecified wrist, subsequent encounter +C2852788|T037|AB|S63.033S|ICD10CM|Subluxation of midcarpal joint of unspecified wrist, sequela|Subluxation of midcarpal joint of unspecified wrist, sequela +C2852788|T037|PT|S63.033S|ICD10CM|Subluxation of midcarpal joint of unspecified wrist, sequela|Subluxation of midcarpal joint of unspecified wrist, sequela +C2852789|T037|AB|S63.034|ICD10CM|Dislocation of midcarpal joint of right wrist|Dislocation of midcarpal joint of right wrist +C2852789|T037|HT|S63.034|ICD10CM|Dislocation of midcarpal joint of right wrist|Dislocation of midcarpal joint of right wrist +C2852790|T037|AB|S63.034A|ICD10CM|Dislocation of midcarpal joint of right wrist, init encntr|Dislocation of midcarpal joint of right wrist, init encntr +C2852790|T037|PT|S63.034A|ICD10CM|Dislocation of midcarpal joint of right wrist, initial encounter|Dislocation of midcarpal joint of right wrist, initial encounter +C2852791|T037|AB|S63.034D|ICD10CM|Dislocation of midcarpal joint of right wrist, subs encntr|Dislocation of midcarpal joint of right wrist, subs encntr +C2852791|T037|PT|S63.034D|ICD10CM|Dislocation of midcarpal joint of right wrist, subsequent encounter|Dislocation of midcarpal joint of right wrist, subsequent encounter +C2852792|T037|PT|S63.034S|ICD10CM|Dislocation of midcarpal joint of right wrist, sequela|Dislocation of midcarpal joint of right wrist, sequela +C2852792|T037|AB|S63.034S|ICD10CM|Dislocation of midcarpal joint of right wrist, sequela|Dislocation of midcarpal joint of right wrist, sequela +C2852793|T037|AB|S63.035|ICD10CM|Dislocation of midcarpal joint of left wrist|Dislocation of midcarpal joint of left wrist +C2852793|T037|HT|S63.035|ICD10CM|Dislocation of midcarpal joint of left wrist|Dislocation of midcarpal joint of left wrist +C2852794|T037|AB|S63.035A|ICD10CM|Dislocation of midcarpal joint of left wrist, init encntr|Dislocation of midcarpal joint of left wrist, init encntr +C2852794|T037|PT|S63.035A|ICD10CM|Dislocation of midcarpal joint of left wrist, initial encounter|Dislocation of midcarpal joint of left wrist, initial encounter +C2852795|T037|AB|S63.035D|ICD10CM|Dislocation of midcarpal joint of left wrist, subs encntr|Dislocation of midcarpal joint of left wrist, subs encntr +C2852795|T037|PT|S63.035D|ICD10CM|Dislocation of midcarpal joint of left wrist, subsequent encounter|Dislocation of midcarpal joint of left wrist, subsequent encounter +C2852796|T037|PT|S63.035S|ICD10CM|Dislocation of midcarpal joint of left wrist, sequela|Dislocation of midcarpal joint of left wrist, sequela +C2852796|T037|AB|S63.035S|ICD10CM|Dislocation of midcarpal joint of left wrist, sequela|Dislocation of midcarpal joint of left wrist, sequela +C2852797|T037|AB|S63.036|ICD10CM|Dislocation of midcarpal joint of unspecified wrist|Dislocation of midcarpal joint of unspecified wrist +C2852797|T037|HT|S63.036|ICD10CM|Dislocation of midcarpal joint of unspecified wrist|Dislocation of midcarpal joint of unspecified wrist +C2852798|T037|AB|S63.036A|ICD10CM|Dislocation of midcarpal joint of unsp wrist, init encntr|Dislocation of midcarpal joint of unsp wrist, init encntr +C2852798|T037|PT|S63.036A|ICD10CM|Dislocation of midcarpal joint of unspecified wrist, initial encounter|Dislocation of midcarpal joint of unspecified wrist, initial encounter +C2852799|T037|AB|S63.036D|ICD10CM|Dislocation of midcarpal joint of unsp wrist, subs encntr|Dislocation of midcarpal joint of unsp wrist, subs encntr +C2852799|T037|PT|S63.036D|ICD10CM|Dislocation of midcarpal joint of unspecified wrist, subsequent encounter|Dislocation of midcarpal joint of unspecified wrist, subsequent encounter +C2852800|T037|AB|S63.036S|ICD10CM|Dislocation of midcarpal joint of unspecified wrist, sequela|Dislocation of midcarpal joint of unspecified wrist, sequela +C2852800|T037|PT|S63.036S|ICD10CM|Dislocation of midcarpal joint of unspecified wrist, sequela|Dislocation of midcarpal joint of unspecified wrist, sequela +C2852801|T037|AB|S63.04|ICD10CM|Subluxation and dislocation of carpometacarp joint of thumb|Subluxation and dislocation of carpometacarp joint of thumb +C2852801|T037|HT|S63.04|ICD10CM|Subluxation and dislocation of carpometacarpal joint of thumb|Subluxation and dislocation of carpometacarpal joint of thumb +C2852802|T037|AB|S63.041|ICD10CM|Subluxation of carpometacarpal joint of right thumb|Subluxation of carpometacarpal joint of right thumb +C2852802|T037|HT|S63.041|ICD10CM|Subluxation of carpometacarpal joint of right thumb|Subluxation of carpometacarpal joint of right thumb +C2852803|T037|AB|S63.041A|ICD10CM|Subluxation of carpometacarpal joint of right thumb, init|Subluxation of carpometacarpal joint of right thumb, init +C2852803|T037|PT|S63.041A|ICD10CM|Subluxation of carpometacarpal joint of right thumb, initial encounter|Subluxation of carpometacarpal joint of right thumb, initial encounter +C2852804|T037|AB|S63.041D|ICD10CM|Subluxation of carpometacarpal joint of right thumb, subs|Subluxation of carpometacarpal joint of right thumb, subs +C2852804|T037|PT|S63.041D|ICD10CM|Subluxation of carpometacarpal joint of right thumb, subsequent encounter|Subluxation of carpometacarpal joint of right thumb, subsequent encounter +C2852805|T037|AB|S63.041S|ICD10CM|Subluxation of carpometacarpal joint of right thumb, sequela|Subluxation of carpometacarpal joint of right thumb, sequela +C2852805|T037|PT|S63.041S|ICD10CM|Subluxation of carpometacarpal joint of right thumb, sequela|Subluxation of carpometacarpal joint of right thumb, sequela +C2852806|T037|AB|S63.042|ICD10CM|Subluxation of carpometacarpal joint of left thumb|Subluxation of carpometacarpal joint of left thumb +C2852806|T037|HT|S63.042|ICD10CM|Subluxation of carpometacarpal joint of left thumb|Subluxation of carpometacarpal joint of left thumb +C2852807|T037|AB|S63.042A|ICD10CM|Subluxation of carpometacarpal joint of left thumb, init|Subluxation of carpometacarpal joint of left thumb, init +C2852807|T037|PT|S63.042A|ICD10CM|Subluxation of carpometacarpal joint of left thumb, initial encounter|Subluxation of carpometacarpal joint of left thumb, initial encounter +C2852808|T037|AB|S63.042D|ICD10CM|Subluxation of carpometacarpal joint of left thumb, subs|Subluxation of carpometacarpal joint of left thumb, subs +C2852808|T037|PT|S63.042D|ICD10CM|Subluxation of carpometacarpal joint of left thumb, subsequent encounter|Subluxation of carpometacarpal joint of left thumb, subsequent encounter +C2852809|T037|PT|S63.042S|ICD10CM|Subluxation of carpometacarpal joint of left thumb, sequela|Subluxation of carpometacarpal joint of left thumb, sequela +C2852809|T037|AB|S63.042S|ICD10CM|Subluxation of carpometacarpal joint of left thumb, sequela|Subluxation of carpometacarpal joint of left thumb, sequela +C2852810|T037|AB|S63.043|ICD10CM|Subluxation of carpometacarpal joint of unspecified thumb|Subluxation of carpometacarpal joint of unspecified thumb +C2852810|T037|HT|S63.043|ICD10CM|Subluxation of carpometacarpal joint of unspecified thumb|Subluxation of carpometacarpal joint of unspecified thumb +C2852811|T037|AB|S63.043A|ICD10CM|Subluxation of carpometacarpal joint of unsp thumb, init|Subluxation of carpometacarpal joint of unsp thumb, init +C2852811|T037|PT|S63.043A|ICD10CM|Subluxation of carpometacarpal joint of unspecified thumb, initial encounter|Subluxation of carpometacarpal joint of unspecified thumb, initial encounter +C2852812|T037|AB|S63.043D|ICD10CM|Subluxation of carpometacarpal joint of unsp thumb, subs|Subluxation of carpometacarpal joint of unsp thumb, subs +C2852812|T037|PT|S63.043D|ICD10CM|Subluxation of carpometacarpal joint of unspecified thumb, subsequent encounter|Subluxation of carpometacarpal joint of unspecified thumb, subsequent encounter +C2852813|T037|AB|S63.043S|ICD10CM|Subluxation of carpometacarpal joint of unsp thumb, sequela|Subluxation of carpometacarpal joint of unsp thumb, sequela +C2852813|T037|PT|S63.043S|ICD10CM|Subluxation of carpometacarpal joint of unspecified thumb, sequela|Subluxation of carpometacarpal joint of unspecified thumb, sequela +C2852814|T037|AB|S63.044|ICD10CM|Dislocation of carpometacarpal joint of right thumb|Dislocation of carpometacarpal joint of right thumb +C2852814|T037|HT|S63.044|ICD10CM|Dislocation of carpometacarpal joint of right thumb|Dislocation of carpometacarpal joint of right thumb +C2852815|T037|AB|S63.044A|ICD10CM|Dislocation of carpometacarpal joint of right thumb, init|Dislocation of carpometacarpal joint of right thumb, init +C2852815|T037|PT|S63.044A|ICD10CM|Dislocation of carpometacarpal joint of right thumb, initial encounter|Dislocation of carpometacarpal joint of right thumb, initial encounter +C2852816|T037|AB|S63.044D|ICD10CM|Dislocation of carpometacarpal joint of right thumb, subs|Dislocation of carpometacarpal joint of right thumb, subs +C2852816|T037|PT|S63.044D|ICD10CM|Dislocation of carpometacarpal joint of right thumb, subsequent encounter|Dislocation of carpometacarpal joint of right thumb, subsequent encounter +C2852817|T037|AB|S63.044S|ICD10CM|Dislocation of carpometacarpal joint of right thumb, sequela|Dislocation of carpometacarpal joint of right thumb, sequela +C2852817|T037|PT|S63.044S|ICD10CM|Dislocation of carpometacarpal joint of right thumb, sequela|Dislocation of carpometacarpal joint of right thumb, sequela +C2852818|T037|AB|S63.045|ICD10CM|Dislocation of carpometacarpal joint of left thumb|Dislocation of carpometacarpal joint of left thumb +C2852818|T037|HT|S63.045|ICD10CM|Dislocation of carpometacarpal joint of left thumb|Dislocation of carpometacarpal joint of left thumb +C2852819|T037|AB|S63.045A|ICD10CM|Dislocation of carpometacarpal joint of left thumb, init|Dislocation of carpometacarpal joint of left thumb, init +C2852819|T037|PT|S63.045A|ICD10CM|Dislocation of carpometacarpal joint of left thumb, initial encounter|Dislocation of carpometacarpal joint of left thumb, initial encounter +C2852820|T037|AB|S63.045D|ICD10CM|Dislocation of carpometacarpal joint of left thumb, subs|Dislocation of carpometacarpal joint of left thumb, subs +C2852820|T037|PT|S63.045D|ICD10CM|Dislocation of carpometacarpal joint of left thumb, subsequent encounter|Dislocation of carpometacarpal joint of left thumb, subsequent encounter +C2852821|T037|PT|S63.045S|ICD10CM|Dislocation of carpometacarpal joint of left thumb, sequela|Dislocation of carpometacarpal joint of left thumb, sequela +C2852821|T037|AB|S63.045S|ICD10CM|Dislocation of carpometacarpal joint of left thumb, sequela|Dislocation of carpometacarpal joint of left thumb, sequela +C2852822|T037|AB|S63.046|ICD10CM|Dislocation of carpometacarpal joint of unspecified thumb|Dislocation of carpometacarpal joint of unspecified thumb +C2852822|T037|HT|S63.046|ICD10CM|Dislocation of carpometacarpal joint of unspecified thumb|Dislocation of carpometacarpal joint of unspecified thumb +C2852823|T037|AB|S63.046A|ICD10CM|Dislocation of carpometacarpal joint of unsp thumb, init|Dislocation of carpometacarpal joint of unsp thumb, init +C2852823|T037|PT|S63.046A|ICD10CM|Dislocation of carpometacarpal joint of unspecified thumb, initial encounter|Dislocation of carpometacarpal joint of unspecified thumb, initial encounter +C2852824|T037|AB|S63.046D|ICD10CM|Dislocation of carpometacarpal joint of unsp thumb, subs|Dislocation of carpometacarpal joint of unsp thumb, subs +C2852824|T037|PT|S63.046D|ICD10CM|Dislocation of carpometacarpal joint of unspecified thumb, subsequent encounter|Dislocation of carpometacarpal joint of unspecified thumb, subsequent encounter +C2852825|T037|AB|S63.046S|ICD10CM|Dislocation of carpometacarpal joint of unsp thumb, sequela|Dislocation of carpometacarpal joint of unsp thumb, sequela +C2852825|T037|PT|S63.046S|ICD10CM|Dislocation of carpometacarpal joint of unspecified thumb, sequela|Dislocation of carpometacarpal joint of unspecified thumb, sequela +C2852826|T037|AB|S63.05|ICD10CM|Subluxation and dislocation of other carpometacarpal joint|Subluxation and dislocation of other carpometacarpal joint +C2852826|T037|HT|S63.05|ICD10CM|Subluxation and dislocation of other carpometacarpal joint|Subluxation and dislocation of other carpometacarpal joint +C2852827|T037|AB|S63.051|ICD10CM|Subluxation of other carpometacarpal joint of right hand|Subluxation of other carpometacarpal joint of right hand +C2852827|T037|HT|S63.051|ICD10CM|Subluxation of other carpometacarpal joint of right hand|Subluxation of other carpometacarpal joint of right hand +C2852828|T037|AB|S63.051A|ICD10CM|Subluxation of oth carpometacarpal joint of right hand, init|Subluxation of oth carpometacarpal joint of right hand, init +C2852828|T037|PT|S63.051A|ICD10CM|Subluxation of other carpometacarpal joint of right hand, initial encounter|Subluxation of other carpometacarpal joint of right hand, initial encounter +C2852829|T037|AB|S63.051D|ICD10CM|Subluxation of oth carpometacarpal joint of right hand, subs|Subluxation of oth carpometacarpal joint of right hand, subs +C2852829|T037|PT|S63.051D|ICD10CM|Subluxation of other carpometacarpal joint of right hand, subsequent encounter|Subluxation of other carpometacarpal joint of right hand, subsequent encounter +C2852830|T037|AB|S63.051S|ICD10CM|Subluxation of carpometacarpal joint of right hand, sequela|Subluxation of carpometacarpal joint of right hand, sequela +C2852830|T037|PT|S63.051S|ICD10CM|Subluxation of other carpometacarpal joint of right hand, sequela|Subluxation of other carpometacarpal joint of right hand, sequela +C2852831|T037|AB|S63.052|ICD10CM|Subluxation of other carpometacarpal joint of left hand|Subluxation of other carpometacarpal joint of left hand +C2852831|T037|HT|S63.052|ICD10CM|Subluxation of other carpometacarpal joint of left hand|Subluxation of other carpometacarpal joint of left hand +C2852832|T037|AB|S63.052A|ICD10CM|Subluxation of oth carpometacarpal joint of left hand, init|Subluxation of oth carpometacarpal joint of left hand, init +C2852832|T037|PT|S63.052A|ICD10CM|Subluxation of other carpometacarpal joint of left hand, initial encounter|Subluxation of other carpometacarpal joint of left hand, initial encounter +C2852833|T037|AB|S63.052D|ICD10CM|Subluxation of oth carpometacarpal joint of left hand, subs|Subluxation of oth carpometacarpal joint of left hand, subs +C2852833|T037|PT|S63.052D|ICD10CM|Subluxation of other carpometacarpal joint of left hand, subsequent encounter|Subluxation of other carpometacarpal joint of left hand, subsequent encounter +C2852834|T037|AB|S63.052S|ICD10CM|Subluxation of carpometacarpal joint of left hand, sequela|Subluxation of carpometacarpal joint of left hand, sequela +C2852834|T037|PT|S63.052S|ICD10CM|Subluxation of other carpometacarpal joint of left hand, sequela|Subluxation of other carpometacarpal joint of left hand, sequela +C2852835|T037|AB|S63.053|ICD10CM|Subluxation of other carpometacarpal joint of unsp hand|Subluxation of other carpometacarpal joint of unsp hand +C2852835|T037|HT|S63.053|ICD10CM|Subluxation of other carpometacarpal joint of unspecified hand|Subluxation of other carpometacarpal joint of unspecified hand +C2852836|T037|AB|S63.053A|ICD10CM|Subluxation of oth carpometacarpal joint of unsp hand, init|Subluxation of oth carpometacarpal joint of unsp hand, init +C2852836|T037|PT|S63.053A|ICD10CM|Subluxation of other carpometacarpal joint of unspecified hand, initial encounter|Subluxation of other carpometacarpal joint of unspecified hand, initial encounter +C2852837|T037|AB|S63.053D|ICD10CM|Subluxation of oth carpometacarpal joint of unsp hand, subs|Subluxation of oth carpometacarpal joint of unsp hand, subs +C2852837|T037|PT|S63.053D|ICD10CM|Subluxation of other carpometacarpal joint of unspecified hand, subsequent encounter|Subluxation of other carpometacarpal joint of unspecified hand, subsequent encounter +C2852838|T037|AB|S63.053S|ICD10CM|Subluxation of carpometacarpal joint of unsp hand, sequela|Subluxation of carpometacarpal joint of unsp hand, sequela +C2852838|T037|PT|S63.053S|ICD10CM|Subluxation of other carpometacarpal joint of unspecified hand, sequela|Subluxation of other carpometacarpal joint of unspecified hand, sequela +C2852839|T037|AB|S63.054|ICD10CM|Dislocation of other carpometacarpal joint of right hand|Dislocation of other carpometacarpal joint of right hand +C2852839|T037|HT|S63.054|ICD10CM|Dislocation of other carpometacarpal joint of right hand|Dislocation of other carpometacarpal joint of right hand +C2852840|T037|AB|S63.054A|ICD10CM|Dislocation of oth carpometacarpal joint of right hand, init|Dislocation of oth carpometacarpal joint of right hand, init +C2852840|T037|PT|S63.054A|ICD10CM|Dislocation of other carpometacarpal joint of right hand, initial encounter|Dislocation of other carpometacarpal joint of right hand, initial encounter +C2852841|T037|AB|S63.054D|ICD10CM|Dislocation of oth carpometacarpal joint of right hand, subs|Dislocation of oth carpometacarpal joint of right hand, subs +C2852841|T037|PT|S63.054D|ICD10CM|Dislocation of other carpometacarpal joint of right hand, subsequent encounter|Dislocation of other carpometacarpal joint of right hand, subsequent encounter +C2852842|T037|AB|S63.054S|ICD10CM|Dislocation of carpometacarpal joint of right hand, sequela|Dislocation of carpometacarpal joint of right hand, sequela +C2852842|T037|PT|S63.054S|ICD10CM|Dislocation of other carpometacarpal joint of right hand, sequela|Dislocation of other carpometacarpal joint of right hand, sequela +C2852843|T037|AB|S63.055|ICD10CM|Dislocation of other carpometacarpal joint of left hand|Dislocation of other carpometacarpal joint of left hand +C2852843|T037|HT|S63.055|ICD10CM|Dislocation of other carpometacarpal joint of left hand|Dislocation of other carpometacarpal joint of left hand +C2852844|T037|AB|S63.055A|ICD10CM|Dislocation of oth carpometacarpal joint of left hand, init|Dislocation of oth carpometacarpal joint of left hand, init +C2852844|T037|PT|S63.055A|ICD10CM|Dislocation of other carpometacarpal joint of left hand, initial encounter|Dislocation of other carpometacarpal joint of left hand, initial encounter +C2852845|T037|AB|S63.055D|ICD10CM|Dislocation of oth carpometacarpal joint of left hand, subs|Dislocation of oth carpometacarpal joint of left hand, subs +C2852845|T037|PT|S63.055D|ICD10CM|Dislocation of other carpometacarpal joint of left hand, subsequent encounter|Dislocation of other carpometacarpal joint of left hand, subsequent encounter +C2852846|T037|AB|S63.055S|ICD10CM|Dislocation of carpometacarpal joint of left hand, sequela|Dislocation of carpometacarpal joint of left hand, sequela +C2852846|T037|PT|S63.055S|ICD10CM|Dislocation of other carpometacarpal joint of left hand, sequela|Dislocation of other carpometacarpal joint of left hand, sequela +C2852847|T037|AB|S63.056|ICD10CM|Dislocation of other carpometacarpal joint of unsp hand|Dislocation of other carpometacarpal joint of unsp hand +C2852847|T037|HT|S63.056|ICD10CM|Dislocation of other carpometacarpal joint of unspecified hand|Dislocation of other carpometacarpal joint of unspecified hand +C2852848|T037|AB|S63.056A|ICD10CM|Dislocation of oth carpometacarpal joint of unsp hand, init|Dislocation of oth carpometacarpal joint of unsp hand, init +C2852848|T037|PT|S63.056A|ICD10CM|Dislocation of other carpometacarpal joint of unspecified hand, initial encounter|Dislocation of other carpometacarpal joint of unspecified hand, initial encounter +C2852849|T037|AB|S63.056D|ICD10CM|Dislocation of oth carpometacarpal joint of unsp hand, subs|Dislocation of oth carpometacarpal joint of unsp hand, subs +C2852849|T037|PT|S63.056D|ICD10CM|Dislocation of other carpometacarpal joint of unspecified hand, subsequent encounter|Dislocation of other carpometacarpal joint of unspecified hand, subsequent encounter +C2852850|T037|AB|S63.056S|ICD10CM|Dislocation of carpometacarpal joint of unsp hand, sequela|Dislocation of carpometacarpal joint of unsp hand, sequela +C2852850|T037|PT|S63.056S|ICD10CM|Dislocation of other carpometacarpal joint of unspecified hand, sequela|Dislocation of other carpometacarpal joint of unspecified hand, sequela +C2852851|T037|AB|S63.06|ICD10CM|Subluxation and disloc of metacarpal (bone), proximal end|Subluxation and disloc of metacarpal (bone), proximal end +C2852851|T037|HT|S63.06|ICD10CM|Subluxation and dislocation of metacarpal (bone), proximal end|Subluxation and dislocation of metacarpal (bone), proximal end +C2852852|T037|AB|S63.061|ICD10CM|Subluxation of metacarpal (bone), proximal end of right hand|Subluxation of metacarpal (bone), proximal end of right hand +C2852852|T037|HT|S63.061|ICD10CM|Subluxation of metacarpal (bone), proximal end of right hand|Subluxation of metacarpal (bone), proximal end of right hand +C2852853|T037|AB|S63.061A|ICD10CM|Sublux of MC (bone), proximal end of right hand, init|Sublux of MC (bone), proximal end of right hand, init +C2852853|T037|PT|S63.061A|ICD10CM|Subluxation of metacarpal (bone), proximal end of right hand, initial encounter|Subluxation of metacarpal (bone), proximal end of right hand, initial encounter +C2852854|T037|AB|S63.061D|ICD10CM|Sublux of MC (bone), proximal end of right hand, subs|Sublux of MC (bone), proximal end of right hand, subs +C2852854|T037|PT|S63.061D|ICD10CM|Subluxation of metacarpal (bone), proximal end of right hand, subsequent encounter|Subluxation of metacarpal (bone), proximal end of right hand, subsequent encounter +C2852855|T037|AB|S63.061S|ICD10CM|Sublux of MC (bone), proximal end of right hand, sequela|Sublux of MC (bone), proximal end of right hand, sequela +C2852855|T037|PT|S63.061S|ICD10CM|Subluxation of metacarpal (bone), proximal end of right hand, sequela|Subluxation of metacarpal (bone), proximal end of right hand, sequela +C2852856|T037|AB|S63.062|ICD10CM|Subluxation of metacarpal (bone), proximal end of left hand|Subluxation of metacarpal (bone), proximal end of left hand +C2852856|T037|HT|S63.062|ICD10CM|Subluxation of metacarpal (bone), proximal end of left hand|Subluxation of metacarpal (bone), proximal end of left hand +C2852857|T037|AB|S63.062A|ICD10CM|Sublux of metacarpal (bone), proximal end of left hand, init|Sublux of metacarpal (bone), proximal end of left hand, init +C2852857|T037|PT|S63.062A|ICD10CM|Subluxation of metacarpal (bone), proximal end of left hand, initial encounter|Subluxation of metacarpal (bone), proximal end of left hand, initial encounter +C2852858|T037|AB|S63.062D|ICD10CM|Sublux of metacarpal (bone), proximal end of left hand, subs|Sublux of metacarpal (bone), proximal end of left hand, subs +C2852858|T037|PT|S63.062D|ICD10CM|Subluxation of metacarpal (bone), proximal end of left hand, subsequent encounter|Subluxation of metacarpal (bone), proximal end of left hand, subsequent encounter +C2852859|T037|AB|S63.062S|ICD10CM|Sublux of MC (bone), proximal end of left hand, sequela|Sublux of MC (bone), proximal end of left hand, sequela +C2852859|T037|PT|S63.062S|ICD10CM|Subluxation of metacarpal (bone), proximal end of left hand, sequela|Subluxation of metacarpal (bone), proximal end of left hand, sequela +C2852860|T037|AB|S63.063|ICD10CM|Subluxation of metacarpal (bone), proximal end of unsp hand|Subluxation of metacarpal (bone), proximal end of unsp hand +C2852860|T037|HT|S63.063|ICD10CM|Subluxation of metacarpal (bone), proximal end of unspecified hand|Subluxation of metacarpal (bone), proximal end of unspecified hand +C2852861|T037|AB|S63.063A|ICD10CM|Sublux of metacarpal (bone), proximal end of unsp hand, init|Sublux of metacarpal (bone), proximal end of unsp hand, init +C2852861|T037|PT|S63.063A|ICD10CM|Subluxation of metacarpal (bone), proximal end of unspecified hand, initial encounter|Subluxation of metacarpal (bone), proximal end of unspecified hand, initial encounter +C2852862|T037|AB|S63.063D|ICD10CM|Sublux of metacarpal (bone), proximal end of unsp hand, subs|Sublux of metacarpal (bone), proximal end of unsp hand, subs +C2852862|T037|PT|S63.063D|ICD10CM|Subluxation of metacarpal (bone), proximal end of unspecified hand, subsequent encounter|Subluxation of metacarpal (bone), proximal end of unspecified hand, subsequent encounter +C2852863|T037|AB|S63.063S|ICD10CM|Sublux of MC (bone), proximal end of unsp hand, sequela|Sublux of MC (bone), proximal end of unsp hand, sequela +C2852863|T037|PT|S63.063S|ICD10CM|Subluxation of metacarpal (bone), proximal end of unspecified hand, sequela|Subluxation of metacarpal (bone), proximal end of unspecified hand, sequela +C2852864|T037|AB|S63.064|ICD10CM|Dislocation of metacarpal (bone), proximal end of right hand|Dislocation of metacarpal (bone), proximal end of right hand +C2852864|T037|HT|S63.064|ICD10CM|Dislocation of metacarpal (bone), proximal end of right hand|Dislocation of metacarpal (bone), proximal end of right hand +C2852865|T037|AB|S63.064A|ICD10CM|Disloc of MC (bone), proximal end of right hand, init|Disloc of MC (bone), proximal end of right hand, init +C2852865|T037|PT|S63.064A|ICD10CM|Dislocation of metacarpal (bone), proximal end of right hand, initial encounter|Dislocation of metacarpal (bone), proximal end of right hand, initial encounter +C2852866|T037|AB|S63.064D|ICD10CM|Disloc of MC (bone), proximal end of right hand, subs|Disloc of MC (bone), proximal end of right hand, subs +C2852866|T037|PT|S63.064D|ICD10CM|Dislocation of metacarpal (bone), proximal end of right hand, subsequent encounter|Dislocation of metacarpal (bone), proximal end of right hand, subsequent encounter +C2852867|T037|AB|S63.064S|ICD10CM|Disloc of MC (bone), proximal end of right hand, sequela|Disloc of MC (bone), proximal end of right hand, sequela +C2852867|T037|PT|S63.064S|ICD10CM|Dislocation of metacarpal (bone), proximal end of right hand, sequela|Dislocation of metacarpal (bone), proximal end of right hand, sequela +C2852868|T037|AB|S63.065|ICD10CM|Dislocation of metacarpal (bone), proximal end of left hand|Dislocation of metacarpal (bone), proximal end of left hand +C2852868|T037|HT|S63.065|ICD10CM|Dislocation of metacarpal (bone), proximal end of left hand|Dislocation of metacarpal (bone), proximal end of left hand +C2852869|T037|AB|S63.065A|ICD10CM|Disloc of metacarpal (bone), proximal end of left hand, init|Disloc of metacarpal (bone), proximal end of left hand, init +C2852869|T037|PT|S63.065A|ICD10CM|Dislocation of metacarpal (bone), proximal end of left hand, initial encounter|Dislocation of metacarpal (bone), proximal end of left hand, initial encounter +C2852870|T037|AB|S63.065D|ICD10CM|Disloc of metacarpal (bone), proximal end of left hand, subs|Disloc of metacarpal (bone), proximal end of left hand, subs +C2852870|T037|PT|S63.065D|ICD10CM|Dislocation of metacarpal (bone), proximal end of left hand, subsequent encounter|Dislocation of metacarpal (bone), proximal end of left hand, subsequent encounter +C2852871|T037|AB|S63.065S|ICD10CM|Disloc of MC (bone), proximal end of left hand, sequela|Disloc of MC (bone), proximal end of left hand, sequela +C2852871|T037|PT|S63.065S|ICD10CM|Dislocation of metacarpal (bone), proximal end of left hand, sequela|Dislocation of metacarpal (bone), proximal end of left hand, sequela +C2852872|T037|AB|S63.066|ICD10CM|Dislocation of metacarpal (bone), proximal end of unsp hand|Dislocation of metacarpal (bone), proximal end of unsp hand +C2852872|T037|HT|S63.066|ICD10CM|Dislocation of metacarpal (bone), proximal end of unspecified hand|Dislocation of metacarpal (bone), proximal end of unspecified hand +C2852873|T037|AB|S63.066A|ICD10CM|Disloc of metacarpal (bone), proximal end of unsp hand, init|Disloc of metacarpal (bone), proximal end of unsp hand, init +C2852873|T037|PT|S63.066A|ICD10CM|Dislocation of metacarpal (bone), proximal end of unspecified hand, initial encounter|Dislocation of metacarpal (bone), proximal end of unspecified hand, initial encounter +C2852874|T037|AB|S63.066D|ICD10CM|Disloc of metacarpal (bone), proximal end of unsp hand, subs|Disloc of metacarpal (bone), proximal end of unsp hand, subs +C2852874|T037|PT|S63.066D|ICD10CM|Dislocation of metacarpal (bone), proximal end of unspecified hand, subsequent encounter|Dislocation of metacarpal (bone), proximal end of unspecified hand, subsequent encounter +C2852875|T037|AB|S63.066S|ICD10CM|Disloc of MC (bone), proximal end of unsp hand, sequela|Disloc of MC (bone), proximal end of unsp hand, sequela +C2852875|T037|PT|S63.066S|ICD10CM|Dislocation of metacarpal (bone), proximal end of unspecified hand, sequela|Dislocation of metacarpal (bone), proximal end of unspecified hand, sequela +C2852876|T037|AB|S63.07|ICD10CM|Subluxation and dislocation of distal end of ulna|Subluxation and dislocation of distal end of ulna +C2852876|T037|HT|S63.07|ICD10CM|Subluxation and dislocation of distal end of ulna|Subluxation and dislocation of distal end of ulna +C2852877|T037|AB|S63.071|ICD10CM|Subluxation of distal end of right ulna|Subluxation of distal end of right ulna +C2852877|T037|HT|S63.071|ICD10CM|Subluxation of distal end of right ulna|Subluxation of distal end of right ulna +C2852878|T037|PT|S63.071A|ICD10CM|Subluxation of distal end of right ulna, initial encounter|Subluxation of distal end of right ulna, initial encounter +C2852878|T037|AB|S63.071A|ICD10CM|Subluxation of distal end of right ulna, initial encounter|Subluxation of distal end of right ulna, initial encounter +C2852879|T037|AB|S63.071D|ICD10CM|Subluxation of distal end of right ulna, subs encntr|Subluxation of distal end of right ulna, subs encntr +C2852879|T037|PT|S63.071D|ICD10CM|Subluxation of distal end of right ulna, subsequent encounter|Subluxation of distal end of right ulna, subsequent encounter +C2852880|T037|PT|S63.071S|ICD10CM|Subluxation of distal end of right ulna, sequela|Subluxation of distal end of right ulna, sequela +C2852880|T037|AB|S63.071S|ICD10CM|Subluxation of distal end of right ulna, sequela|Subluxation of distal end of right ulna, sequela +C2852881|T037|AB|S63.072|ICD10CM|Subluxation of distal end of left ulna|Subluxation of distal end of left ulna +C2852881|T037|HT|S63.072|ICD10CM|Subluxation of distal end of left ulna|Subluxation of distal end of left ulna +C2852882|T037|PT|S63.072A|ICD10CM|Subluxation of distal end of left ulna, initial encounter|Subluxation of distal end of left ulna, initial encounter +C2852882|T037|AB|S63.072A|ICD10CM|Subluxation of distal end of left ulna, initial encounter|Subluxation of distal end of left ulna, initial encounter +C2852883|T037|AB|S63.072D|ICD10CM|Subluxation of distal end of left ulna, subsequent encounter|Subluxation of distal end of left ulna, subsequent encounter +C2852883|T037|PT|S63.072D|ICD10CM|Subluxation of distal end of left ulna, subsequent encounter|Subluxation of distal end of left ulna, subsequent encounter +C2852884|T037|PT|S63.072S|ICD10CM|Subluxation of distal end of left ulna, sequela|Subluxation of distal end of left ulna, sequela +C2852884|T037|AB|S63.072S|ICD10CM|Subluxation of distal end of left ulna, sequela|Subluxation of distal end of left ulna, sequela +C2852885|T037|AB|S63.073|ICD10CM|Subluxation of distal end of unspecified ulna|Subluxation of distal end of unspecified ulna +C2852885|T037|HT|S63.073|ICD10CM|Subluxation of distal end of unspecified ulna|Subluxation of distal end of unspecified ulna +C2852886|T037|AB|S63.073A|ICD10CM|Subluxation of distal end of unspecified ulna, init encntr|Subluxation of distal end of unspecified ulna, init encntr +C2852886|T037|PT|S63.073A|ICD10CM|Subluxation of distal end of unspecified ulna, initial encounter|Subluxation of distal end of unspecified ulna, initial encounter +C2852887|T037|AB|S63.073D|ICD10CM|Subluxation of distal end of unspecified ulna, subs encntr|Subluxation of distal end of unspecified ulna, subs encntr +C2852887|T037|PT|S63.073D|ICD10CM|Subluxation of distal end of unspecified ulna, subsequent encounter|Subluxation of distal end of unspecified ulna, subsequent encounter +C2852888|T037|PT|S63.073S|ICD10CM|Subluxation of distal end of unspecified ulna, sequela|Subluxation of distal end of unspecified ulna, sequela +C2852888|T037|AB|S63.073S|ICD10CM|Subluxation of distal end of unspecified ulna, sequela|Subluxation of distal end of unspecified ulna, sequela +C2852889|T037|AB|S63.074|ICD10CM|Dislocation of distal end of right ulna|Dislocation of distal end of right ulna +C2852889|T037|HT|S63.074|ICD10CM|Dislocation of distal end of right ulna|Dislocation of distal end of right ulna +C2852890|T037|PT|S63.074A|ICD10CM|Dislocation of distal end of right ulna, initial encounter|Dislocation of distal end of right ulna, initial encounter +C2852890|T037|AB|S63.074A|ICD10CM|Dislocation of distal end of right ulna, initial encounter|Dislocation of distal end of right ulna, initial encounter +C2852891|T037|AB|S63.074D|ICD10CM|Dislocation of distal end of right ulna, subs encntr|Dislocation of distal end of right ulna, subs encntr +C2852891|T037|PT|S63.074D|ICD10CM|Dislocation of distal end of right ulna, subsequent encounter|Dislocation of distal end of right ulna, subsequent encounter +C2852892|T037|PT|S63.074S|ICD10CM|Dislocation of distal end of right ulna, sequela|Dislocation of distal end of right ulna, sequela +C2852892|T037|AB|S63.074S|ICD10CM|Dislocation of distal end of right ulna, sequela|Dislocation of distal end of right ulna, sequela +C2852893|T037|AB|S63.075|ICD10CM|Dislocation of distal end of left ulna|Dislocation of distal end of left ulna +C2852893|T037|HT|S63.075|ICD10CM|Dislocation of distal end of left ulna|Dislocation of distal end of left ulna +C2852894|T037|PT|S63.075A|ICD10CM|Dislocation of distal end of left ulna, initial encounter|Dislocation of distal end of left ulna, initial encounter +C2852894|T037|AB|S63.075A|ICD10CM|Dislocation of distal end of left ulna, initial encounter|Dislocation of distal end of left ulna, initial encounter +C2852895|T037|AB|S63.075D|ICD10CM|Dislocation of distal end of left ulna, subsequent encounter|Dislocation of distal end of left ulna, subsequent encounter +C2852895|T037|PT|S63.075D|ICD10CM|Dislocation of distal end of left ulna, subsequent encounter|Dislocation of distal end of left ulna, subsequent encounter +C2852896|T037|PT|S63.075S|ICD10CM|Dislocation of distal end of left ulna, sequela|Dislocation of distal end of left ulna, sequela +C2852896|T037|AB|S63.075S|ICD10CM|Dislocation of distal end of left ulna, sequela|Dislocation of distal end of left ulna, sequela +C2852897|T037|AB|S63.076|ICD10CM|Dislocation of distal end of unspecified ulna|Dislocation of distal end of unspecified ulna +C2852897|T037|HT|S63.076|ICD10CM|Dislocation of distal end of unspecified ulna|Dislocation of distal end of unspecified ulna +C2852898|T037|AB|S63.076A|ICD10CM|Dislocation of distal end of unspecified ulna, init encntr|Dislocation of distal end of unspecified ulna, init encntr +C2852898|T037|PT|S63.076A|ICD10CM|Dislocation of distal end of unspecified ulna, initial encounter|Dislocation of distal end of unspecified ulna, initial encounter +C2852899|T037|AB|S63.076D|ICD10CM|Dislocation of distal end of unspecified ulna, subs encntr|Dislocation of distal end of unspecified ulna, subs encntr +C2852899|T037|PT|S63.076D|ICD10CM|Dislocation of distal end of unspecified ulna, subsequent encounter|Dislocation of distal end of unspecified ulna, subsequent encounter +C2852900|T037|PT|S63.076S|ICD10CM|Dislocation of distal end of unspecified ulna, sequela|Dislocation of distal end of unspecified ulna, sequela +C2852900|T037|AB|S63.076S|ICD10CM|Dislocation of distal end of unspecified ulna, sequela|Dislocation of distal end of unspecified ulna, sequela +C2852901|T037|AB|S63.09|ICD10CM|Other subluxation and dislocation of wrist and hand|Other subluxation and dislocation of wrist and hand +C2852901|T037|HT|S63.09|ICD10CM|Other subluxation and dislocation of wrist and hand|Other subluxation and dislocation of wrist and hand +C2852902|T037|AB|S63.091|ICD10CM|Other subluxation of right wrist and hand|Other subluxation of right wrist and hand +C2852902|T037|HT|S63.091|ICD10CM|Other subluxation of right wrist and hand|Other subluxation of right wrist and hand +C2852903|T037|AB|S63.091A|ICD10CM|Other subluxation of right wrist and hand, initial encounter|Other subluxation of right wrist and hand, initial encounter +C2852903|T037|PT|S63.091A|ICD10CM|Other subluxation of right wrist and hand, initial encounter|Other subluxation of right wrist and hand, initial encounter +C2852904|T037|AB|S63.091D|ICD10CM|Other subluxation of right wrist and hand, subs encntr|Other subluxation of right wrist and hand, subs encntr +C2852904|T037|PT|S63.091D|ICD10CM|Other subluxation of right wrist and hand, subsequent encounter|Other subluxation of right wrist and hand, subsequent encounter +C2852905|T037|PT|S63.091S|ICD10CM|Other subluxation of right wrist and hand, sequela|Other subluxation of right wrist and hand, sequela +C2852905|T037|AB|S63.091S|ICD10CM|Other subluxation of right wrist and hand, sequela|Other subluxation of right wrist and hand, sequela +C2852906|T037|AB|S63.092|ICD10CM|Other subluxation of left wrist and hand|Other subluxation of left wrist and hand +C2852906|T037|HT|S63.092|ICD10CM|Other subluxation of left wrist and hand|Other subluxation of left wrist and hand +C2852907|T037|PT|S63.092A|ICD10CM|Other subluxation of left wrist and hand, initial encounter|Other subluxation of left wrist and hand, initial encounter +C2852907|T037|AB|S63.092A|ICD10CM|Other subluxation of left wrist and hand, initial encounter|Other subluxation of left wrist and hand, initial encounter +C2852908|T037|AB|S63.092D|ICD10CM|Other subluxation of left wrist and hand, subs encntr|Other subluxation of left wrist and hand, subs encntr +C2852908|T037|PT|S63.092D|ICD10CM|Other subluxation of left wrist and hand, subsequent encounter|Other subluxation of left wrist and hand, subsequent encounter +C2852909|T037|PT|S63.092S|ICD10CM|Other subluxation of left wrist and hand, sequela|Other subluxation of left wrist and hand, sequela +C2852909|T037|AB|S63.092S|ICD10CM|Other subluxation of left wrist and hand, sequela|Other subluxation of left wrist and hand, sequela +C2852910|T037|AB|S63.093|ICD10CM|Other subluxation of unspecified wrist and hand|Other subluxation of unspecified wrist and hand +C2852910|T037|HT|S63.093|ICD10CM|Other subluxation of unspecified wrist and hand|Other subluxation of unspecified wrist and hand +C2852911|T037|AB|S63.093A|ICD10CM|Other subluxation of unspecified wrist and hand, init encntr|Other subluxation of unspecified wrist and hand, init encntr +C2852911|T037|PT|S63.093A|ICD10CM|Other subluxation of unspecified wrist and hand, initial encounter|Other subluxation of unspecified wrist and hand, initial encounter +C2852912|T037|AB|S63.093D|ICD10CM|Other subluxation of unspecified wrist and hand, subs encntr|Other subluxation of unspecified wrist and hand, subs encntr +C2852912|T037|PT|S63.093D|ICD10CM|Other subluxation of unspecified wrist and hand, subsequent encounter|Other subluxation of unspecified wrist and hand, subsequent encounter +C2852913|T037|PT|S63.093S|ICD10CM|Other subluxation of unspecified wrist and hand, sequela|Other subluxation of unspecified wrist and hand, sequela +C2852913|T037|AB|S63.093S|ICD10CM|Other subluxation of unspecified wrist and hand, sequela|Other subluxation of unspecified wrist and hand, sequela +C2852914|T037|AB|S63.094|ICD10CM|Other dislocation of right wrist and hand|Other dislocation of right wrist and hand +C2852914|T037|HT|S63.094|ICD10CM|Other dislocation of right wrist and hand|Other dislocation of right wrist and hand +C2852915|T037|AB|S63.094A|ICD10CM|Other dislocation of right wrist and hand, initial encounter|Other dislocation of right wrist and hand, initial encounter +C2852915|T037|PT|S63.094A|ICD10CM|Other dislocation of right wrist and hand, initial encounter|Other dislocation of right wrist and hand, initial encounter +C2852916|T037|AB|S63.094D|ICD10CM|Other dislocation of right wrist and hand, subs encntr|Other dislocation of right wrist and hand, subs encntr +C2852916|T037|PT|S63.094D|ICD10CM|Other dislocation of right wrist and hand, subsequent encounter|Other dislocation of right wrist and hand, subsequent encounter +C2852917|T037|PT|S63.094S|ICD10CM|Other dislocation of right wrist and hand, sequela|Other dislocation of right wrist and hand, sequela +C2852917|T037|AB|S63.094S|ICD10CM|Other dislocation of right wrist and hand, sequela|Other dislocation of right wrist and hand, sequela +C2852918|T037|AB|S63.095|ICD10CM|Other dislocation of left wrist and hand|Other dislocation of left wrist and hand +C2852918|T037|HT|S63.095|ICD10CM|Other dislocation of left wrist and hand|Other dislocation of left wrist and hand +C2852919|T037|PT|S63.095A|ICD10CM|Other dislocation of left wrist and hand, initial encounter|Other dislocation of left wrist and hand, initial encounter +C2852919|T037|AB|S63.095A|ICD10CM|Other dislocation of left wrist and hand, initial encounter|Other dislocation of left wrist and hand, initial encounter +C2852920|T037|AB|S63.095D|ICD10CM|Other dislocation of left wrist and hand, subs encntr|Other dislocation of left wrist and hand, subs encntr +C2852920|T037|PT|S63.095D|ICD10CM|Other dislocation of left wrist and hand, subsequent encounter|Other dislocation of left wrist and hand, subsequent encounter +C2852921|T037|PT|S63.095S|ICD10CM|Other dislocation of left wrist and hand, sequela|Other dislocation of left wrist and hand, sequela +C2852921|T037|AB|S63.095S|ICD10CM|Other dislocation of left wrist and hand, sequela|Other dislocation of left wrist and hand, sequela +C2852922|T037|AB|S63.096|ICD10CM|Other dislocation of unspecified wrist and hand|Other dislocation of unspecified wrist and hand +C2852922|T037|HT|S63.096|ICD10CM|Other dislocation of unspecified wrist and hand|Other dislocation of unspecified wrist and hand +C2852923|T037|AB|S63.096A|ICD10CM|Other dislocation of unspecified wrist and hand, init encntr|Other dislocation of unspecified wrist and hand, init encntr +C2852923|T037|PT|S63.096A|ICD10CM|Other dislocation of unspecified wrist and hand, initial encounter|Other dislocation of unspecified wrist and hand, initial encounter +C2852924|T037|AB|S63.096D|ICD10CM|Other dislocation of unspecified wrist and hand, subs encntr|Other dislocation of unspecified wrist and hand, subs encntr +C2852924|T037|PT|S63.096D|ICD10CM|Other dislocation of unspecified wrist and hand, subsequent encounter|Other dislocation of unspecified wrist and hand, subsequent encounter +C2852925|T037|PT|S63.096S|ICD10CM|Other dislocation of unspecified wrist and hand, sequela|Other dislocation of unspecified wrist and hand, sequela +C2852925|T037|AB|S63.096S|ICD10CM|Other dislocation of unspecified wrist and hand, sequela|Other dislocation of unspecified wrist and hand, sequela +C0159956|T037|PT|S63.1|ICD10|Dislocation of finger|Dislocation of finger +C2852926|T037|AB|S63.1|ICD10CM|Subluxation and dislocation of thumb|Subluxation and dislocation of thumb +C2852926|T037|HT|S63.1|ICD10CM|Subluxation and dislocation of thumb|Subluxation and dislocation of thumb +C2852927|T037|AB|S63.10|ICD10CM|Unspecified subluxation and dislocation of thumb|Unspecified subluxation and dislocation of thumb +C2852927|T037|HT|S63.10|ICD10CM|Unspecified subluxation and dislocation of thumb|Unspecified subluxation and dislocation of thumb +C2852928|T037|AB|S63.101|ICD10CM|Unspecified subluxation of right thumb|Unspecified subluxation of right thumb +C2852928|T037|HT|S63.101|ICD10CM|Unspecified subluxation of right thumb|Unspecified subluxation of right thumb +C2852929|T037|AB|S63.101A|ICD10CM|Unspecified subluxation of right thumb, initial encounter|Unspecified subluxation of right thumb, initial encounter +C2852929|T037|PT|S63.101A|ICD10CM|Unspecified subluxation of right thumb, initial encounter|Unspecified subluxation of right thumb, initial encounter +C2852930|T037|AB|S63.101D|ICD10CM|Unspecified subluxation of right thumb, subsequent encounter|Unspecified subluxation of right thumb, subsequent encounter +C2852930|T037|PT|S63.101D|ICD10CM|Unspecified subluxation of right thumb, subsequent encounter|Unspecified subluxation of right thumb, subsequent encounter +C2852931|T037|AB|S63.101S|ICD10CM|Unspecified subluxation of right thumb, sequela|Unspecified subluxation of right thumb, sequela +C2852931|T037|PT|S63.101S|ICD10CM|Unspecified subluxation of right thumb, sequela|Unspecified subluxation of right thumb, sequela +C2852932|T037|AB|S63.102|ICD10CM|Unspecified subluxation of left thumb|Unspecified subluxation of left thumb +C2852932|T037|HT|S63.102|ICD10CM|Unspecified subluxation of left thumb|Unspecified subluxation of left thumb +C2852933|T037|AB|S63.102A|ICD10CM|Unspecified subluxation of left thumb, initial encounter|Unspecified subluxation of left thumb, initial encounter +C2852933|T037|PT|S63.102A|ICD10CM|Unspecified subluxation of left thumb, initial encounter|Unspecified subluxation of left thumb, initial encounter +C2852934|T037|AB|S63.102D|ICD10CM|Unspecified subluxation of left thumb, subsequent encounter|Unspecified subluxation of left thumb, subsequent encounter +C2852934|T037|PT|S63.102D|ICD10CM|Unspecified subluxation of left thumb, subsequent encounter|Unspecified subluxation of left thumb, subsequent encounter +C2852935|T037|AB|S63.102S|ICD10CM|Unspecified subluxation of left thumb, sequela|Unspecified subluxation of left thumb, sequela +C2852935|T037|PT|S63.102S|ICD10CM|Unspecified subluxation of left thumb, sequela|Unspecified subluxation of left thumb, sequela +C2852936|T037|AB|S63.103|ICD10CM|Unspecified subluxation of unspecified thumb|Unspecified subluxation of unspecified thumb +C2852936|T037|HT|S63.103|ICD10CM|Unspecified subluxation of unspecified thumb|Unspecified subluxation of unspecified thumb +C2852937|T037|AB|S63.103A|ICD10CM|Unspecified subluxation of unspecified thumb, init encntr|Unspecified subluxation of unspecified thumb, init encntr +C2852937|T037|PT|S63.103A|ICD10CM|Unspecified subluxation of unspecified thumb, initial encounter|Unspecified subluxation of unspecified thumb, initial encounter +C2852938|T037|AB|S63.103D|ICD10CM|Unspecified subluxation of unspecified thumb, subs encntr|Unspecified subluxation of unspecified thumb, subs encntr +C2852938|T037|PT|S63.103D|ICD10CM|Unspecified subluxation of unspecified thumb, subsequent encounter|Unspecified subluxation of unspecified thumb, subsequent encounter +C2852939|T037|AB|S63.103S|ICD10CM|Unspecified subluxation of unspecified thumb, sequela|Unspecified subluxation of unspecified thumb, sequela +C2852939|T037|PT|S63.103S|ICD10CM|Unspecified subluxation of unspecified thumb, sequela|Unspecified subluxation of unspecified thumb, sequela +C2852940|T037|AB|S63.104|ICD10CM|Unspecified dislocation of right thumb|Unspecified dislocation of right thumb +C2852940|T037|HT|S63.104|ICD10CM|Unspecified dislocation of right thumb|Unspecified dislocation of right thumb +C2852941|T037|AB|S63.104A|ICD10CM|Unspecified dislocation of right thumb, initial encounter|Unspecified dislocation of right thumb, initial encounter +C2852941|T037|PT|S63.104A|ICD10CM|Unspecified dislocation of right thumb, initial encounter|Unspecified dislocation of right thumb, initial encounter +C2852942|T037|AB|S63.104D|ICD10CM|Unspecified dislocation of right thumb, subsequent encounter|Unspecified dislocation of right thumb, subsequent encounter +C2852942|T037|PT|S63.104D|ICD10CM|Unspecified dislocation of right thumb, subsequent encounter|Unspecified dislocation of right thumb, subsequent encounter +C2852943|T037|AB|S63.104S|ICD10CM|Unspecified dislocation of right thumb, sequela|Unspecified dislocation of right thumb, sequela +C2852943|T037|PT|S63.104S|ICD10CM|Unspecified dislocation of right thumb, sequela|Unspecified dislocation of right thumb, sequela +C2852944|T037|AB|S63.105|ICD10CM|Unspecified dislocation of left thumb|Unspecified dislocation of left thumb +C2852944|T037|HT|S63.105|ICD10CM|Unspecified dislocation of left thumb|Unspecified dislocation of left thumb +C2852945|T037|AB|S63.105A|ICD10CM|Unspecified dislocation of left thumb, initial encounter|Unspecified dislocation of left thumb, initial encounter +C2852945|T037|PT|S63.105A|ICD10CM|Unspecified dislocation of left thumb, initial encounter|Unspecified dislocation of left thumb, initial encounter +C2852946|T037|AB|S63.105D|ICD10CM|Unspecified dislocation of left thumb, subsequent encounter|Unspecified dislocation of left thumb, subsequent encounter +C2852946|T037|PT|S63.105D|ICD10CM|Unspecified dislocation of left thumb, subsequent encounter|Unspecified dislocation of left thumb, subsequent encounter +C2852947|T037|AB|S63.105S|ICD10CM|Unspecified dislocation of left thumb, sequela|Unspecified dislocation of left thumb, sequela +C2852947|T037|PT|S63.105S|ICD10CM|Unspecified dislocation of left thumb, sequela|Unspecified dislocation of left thumb, sequela +C2852948|T037|AB|S63.106|ICD10CM|Unspecified dislocation of unspecified thumb|Unspecified dislocation of unspecified thumb +C2852948|T037|HT|S63.106|ICD10CM|Unspecified dislocation of unspecified thumb|Unspecified dislocation of unspecified thumb +C2852949|T037|AB|S63.106A|ICD10CM|Unspecified dislocation of unspecified thumb, init encntr|Unspecified dislocation of unspecified thumb, init encntr +C2852949|T037|PT|S63.106A|ICD10CM|Unspecified dislocation of unspecified thumb, initial encounter|Unspecified dislocation of unspecified thumb, initial encounter +C2852950|T037|AB|S63.106D|ICD10CM|Unspecified dislocation of unspecified thumb, subs encntr|Unspecified dislocation of unspecified thumb, subs encntr +C2852950|T037|PT|S63.106D|ICD10CM|Unspecified dislocation of unspecified thumb, subsequent encounter|Unspecified dislocation of unspecified thumb, subsequent encounter +C2852951|T037|AB|S63.106S|ICD10CM|Unspecified dislocation of unspecified thumb, sequela|Unspecified dislocation of unspecified thumb, sequela +C2852951|T037|PT|S63.106S|ICD10CM|Unspecified dislocation of unspecified thumb, sequela|Unspecified dislocation of unspecified thumb, sequela +C2852952|T037|AB|S63.11|ICD10CM|Subluxation and dislocation of MCP joint of thumb|Subluxation and dislocation of MCP joint of thumb +C2852952|T037|HT|S63.11|ICD10CM|Subluxation and dislocation of metacarpophalangeal joint of thumb|Subluxation and dislocation of metacarpophalangeal joint of thumb +C2036857|T037|AB|S63.111|ICD10CM|Subluxation of metacarpophalangeal joint of right thumb|Subluxation of metacarpophalangeal joint of right thumb +C2036857|T037|HT|S63.111|ICD10CM|Subluxation of metacarpophalangeal joint of right thumb|Subluxation of metacarpophalangeal joint of right thumb +C2852953|T037|AB|S63.111A|ICD10CM|Subluxation of MCP joint of right thumb, init|Subluxation of MCP joint of right thumb, init +C2852953|T037|PT|S63.111A|ICD10CM|Subluxation of metacarpophalangeal joint of right thumb, initial encounter|Subluxation of metacarpophalangeal joint of right thumb, initial encounter +C2852954|T037|AB|S63.111D|ICD10CM|Subluxation of MCP joint of right thumb, subs|Subluxation of MCP joint of right thumb, subs +C2852954|T037|PT|S63.111D|ICD10CM|Subluxation of metacarpophalangeal joint of right thumb, subsequent encounter|Subluxation of metacarpophalangeal joint of right thumb, subsequent encounter +C2852955|T037|AB|S63.111S|ICD10CM|Subluxation of MCP joint of right thumb, sequela|Subluxation of MCP joint of right thumb, sequela +C2852955|T037|PT|S63.111S|ICD10CM|Subluxation of metacarpophalangeal joint of right thumb, sequela|Subluxation of metacarpophalangeal joint of right thumb, sequela +C2036851|T037|AB|S63.112|ICD10CM|Subluxation of metacarpophalangeal joint of left thumb|Subluxation of metacarpophalangeal joint of left thumb +C2036851|T037|HT|S63.112|ICD10CM|Subluxation of metacarpophalangeal joint of left thumb|Subluxation of metacarpophalangeal joint of left thumb +C2852956|T037|AB|S63.112A|ICD10CM|Subluxation of metacarpophalangeal joint of left thumb, init|Subluxation of metacarpophalangeal joint of left thumb, init +C2852956|T037|PT|S63.112A|ICD10CM|Subluxation of metacarpophalangeal joint of left thumb, initial encounter|Subluxation of metacarpophalangeal joint of left thumb, initial encounter +C2852957|T037|AB|S63.112D|ICD10CM|Subluxation of metacarpophalangeal joint of left thumb, subs|Subluxation of metacarpophalangeal joint of left thumb, subs +C2852957|T037|PT|S63.112D|ICD10CM|Subluxation of metacarpophalangeal joint of left thumb, subsequent encounter|Subluxation of metacarpophalangeal joint of left thumb, subsequent encounter +C2852958|T037|AB|S63.112S|ICD10CM|Subluxation of MCP joint of left thumb, sequela|Subluxation of MCP joint of left thumb, sequela +C2852958|T037|PT|S63.112S|ICD10CM|Subluxation of metacarpophalangeal joint of left thumb, sequela|Subluxation of metacarpophalangeal joint of left thumb, sequela +C2852959|T037|AB|S63.113|ICD10CM|Subluxation of metacarpophalangeal joint of unsp thumb|Subluxation of metacarpophalangeal joint of unsp thumb +C2852959|T037|HT|S63.113|ICD10CM|Subluxation of metacarpophalangeal joint of unspecified thumb|Subluxation of metacarpophalangeal joint of unspecified thumb +C2852960|T037|AB|S63.113A|ICD10CM|Subluxation of metacarpophalangeal joint of unsp thumb, init|Subluxation of metacarpophalangeal joint of unsp thumb, init +C2852960|T037|PT|S63.113A|ICD10CM|Subluxation of metacarpophalangeal joint of unspecified thumb, initial encounter|Subluxation of metacarpophalangeal joint of unspecified thumb, initial encounter +C2852961|T037|AB|S63.113D|ICD10CM|Subluxation of metacarpophalangeal joint of unsp thumb, subs|Subluxation of metacarpophalangeal joint of unsp thumb, subs +C2852961|T037|PT|S63.113D|ICD10CM|Subluxation of metacarpophalangeal joint of unspecified thumb, subsequent encounter|Subluxation of metacarpophalangeal joint of unspecified thumb, subsequent encounter +C2852962|T037|AB|S63.113S|ICD10CM|Subluxation of metacarpophalangeal joint of thmb, sequela|Subluxation of metacarpophalangeal joint of thmb, sequela +C2852962|T037|PT|S63.113S|ICD10CM|Subluxation of metacarpophalangeal joint of unspecified thumb, sequela|Subluxation of metacarpophalangeal joint of unspecified thumb, sequela +C2852963|T037|AB|S63.114|ICD10CM|Dislocation of metacarpophalangeal joint of right thumb|Dislocation of metacarpophalangeal joint of right thumb +C2852963|T037|HT|S63.114|ICD10CM|Dislocation of metacarpophalangeal joint of right thumb|Dislocation of metacarpophalangeal joint of right thumb +C2852964|T037|AB|S63.114A|ICD10CM|Dislocation of MCP joint of right thumb, init|Dislocation of MCP joint of right thumb, init +C2852964|T037|PT|S63.114A|ICD10CM|Dislocation of metacarpophalangeal joint of right thumb, initial encounter|Dislocation of metacarpophalangeal joint of right thumb, initial encounter +C2852965|T037|AB|S63.114D|ICD10CM|Dislocation of MCP joint of right thumb, subs|Dislocation of MCP joint of right thumb, subs +C2852965|T037|PT|S63.114D|ICD10CM|Dislocation of metacarpophalangeal joint of right thumb, subsequent encounter|Dislocation of metacarpophalangeal joint of right thumb, subsequent encounter +C2852966|T037|AB|S63.114S|ICD10CM|Dislocation of MCP joint of right thumb, sequela|Dislocation of MCP joint of right thumb, sequela +C2852966|T037|PT|S63.114S|ICD10CM|Dislocation of metacarpophalangeal joint of right thumb, sequela|Dislocation of metacarpophalangeal joint of right thumb, sequela +C2852967|T037|AB|S63.115|ICD10CM|Dislocation of metacarpophalangeal joint of left thumb|Dislocation of metacarpophalangeal joint of left thumb +C2852967|T037|HT|S63.115|ICD10CM|Dislocation of metacarpophalangeal joint of left thumb|Dislocation of metacarpophalangeal joint of left thumb +C2852968|T037|AB|S63.115A|ICD10CM|Dislocation of metacarpophalangeal joint of left thumb, init|Dislocation of metacarpophalangeal joint of left thumb, init +C2852968|T037|PT|S63.115A|ICD10CM|Dislocation of metacarpophalangeal joint of left thumb, initial encounter|Dislocation of metacarpophalangeal joint of left thumb, initial encounter +C2852969|T037|AB|S63.115D|ICD10CM|Dislocation of metacarpophalangeal joint of left thumb, subs|Dislocation of metacarpophalangeal joint of left thumb, subs +C2852969|T037|PT|S63.115D|ICD10CM|Dislocation of metacarpophalangeal joint of left thumb, subsequent encounter|Dislocation of metacarpophalangeal joint of left thumb, subsequent encounter +C2852970|T037|AB|S63.115S|ICD10CM|Dislocation of MCP joint of left thumb, sequela|Dislocation of MCP joint of left thumb, sequela +C2852970|T037|PT|S63.115S|ICD10CM|Dislocation of metacarpophalangeal joint of left thumb, sequela|Dislocation of metacarpophalangeal joint of left thumb, sequela +C2852971|T037|AB|S63.116|ICD10CM|Dislocation of metacarpophalangeal joint of unsp thumb|Dislocation of metacarpophalangeal joint of unsp thumb +C2852971|T037|HT|S63.116|ICD10CM|Dislocation of metacarpophalangeal joint of unspecified thumb|Dislocation of metacarpophalangeal joint of unspecified thumb +C2852972|T037|AB|S63.116A|ICD10CM|Dislocation of metacarpophalangeal joint of unsp thumb, init|Dislocation of metacarpophalangeal joint of unsp thumb, init +C2852972|T037|PT|S63.116A|ICD10CM|Dislocation of metacarpophalangeal joint of unspecified thumb, initial encounter|Dislocation of metacarpophalangeal joint of unspecified thumb, initial encounter +C2852973|T037|AB|S63.116D|ICD10CM|Dislocation of metacarpophalangeal joint of unsp thumb, subs|Dislocation of metacarpophalangeal joint of unsp thumb, subs +C2852973|T037|PT|S63.116D|ICD10CM|Dislocation of metacarpophalangeal joint of unspecified thumb, subsequent encounter|Dislocation of metacarpophalangeal joint of unspecified thumb, subsequent encounter +C2852974|T037|AB|S63.116S|ICD10CM|Dislocation of metacarpophalangeal joint of thmb, sequela|Dislocation of metacarpophalangeal joint of thmb, sequela +C2852974|T037|PT|S63.116S|ICD10CM|Dislocation of metacarpophalangeal joint of unspecified thumb, sequela|Dislocation of metacarpophalangeal joint of unspecified thumb, sequela +C2852975|T037|HT|S63.12|ICD10CM|Subluxation and dislocation of interphalangeal joint of thumb|Subluxation and dislocation of interphalangeal joint of thumb +C2852975|T037|AB|S63.12|ICD10CM|Subluxation and dislocation of interphaln joint of thumb|Subluxation and dislocation of interphaln joint of thumb +C3507016|T037|AB|S63.121|ICD10CM|Subluxation of interphalangeal joint of right thumb|Subluxation of interphalangeal joint of right thumb +C3507016|T037|HT|S63.121|ICD10CM|Subluxation of interphalangeal joint of right thumb|Subluxation of interphalangeal joint of right thumb +C2852977|T037|AB|S63.121A|ICD10CM|Subluxation of interphalangeal joint of right thumb, init|Subluxation of interphalangeal joint of right thumb, init +C2852977|T037|PT|S63.121A|ICD10CM|Subluxation of interphalangeal joint of right thumb, initial encounter|Subluxation of interphalangeal joint of right thumb, initial encounter +C2852978|T037|AB|S63.121D|ICD10CM|Subluxation of interphalangeal joint of right thumb, subs|Subluxation of interphalangeal joint of right thumb, subs +C2852978|T037|PT|S63.121D|ICD10CM|Subluxation of interphalangeal joint of right thumb, subsequent encounter|Subluxation of interphalangeal joint of right thumb, subsequent encounter +C2852979|T037|AB|S63.121S|ICD10CM|Subluxation of interphalangeal joint of right thumb, sequela|Subluxation of interphalangeal joint of right thumb, sequela +C2852979|T037|PT|S63.121S|ICD10CM|Subluxation of interphalangeal joint of right thumb, sequela|Subluxation of interphalangeal joint of right thumb, sequela +C3507017|T037|AB|S63.122|ICD10CM|Subluxation of interphalangeal joint of left thumb|Subluxation of interphalangeal joint of left thumb +C3507017|T037|HT|S63.122|ICD10CM|Subluxation of interphalangeal joint of left thumb|Subluxation of interphalangeal joint of left thumb +C2852981|T037|AB|S63.122A|ICD10CM|Subluxation of interphalangeal joint of left thumb, init|Subluxation of interphalangeal joint of left thumb, init +C2852981|T037|PT|S63.122A|ICD10CM|Subluxation of interphalangeal joint of left thumb, initial encounter|Subluxation of interphalangeal joint of left thumb, initial encounter +C2852982|T037|AB|S63.122D|ICD10CM|Subluxation of interphalangeal joint of left thumb, subs|Subluxation of interphalangeal joint of left thumb, subs +C2852982|T037|PT|S63.122D|ICD10CM|Subluxation of interphalangeal joint of left thumb, subsequent encounter|Subluxation of interphalangeal joint of left thumb, subsequent encounter +C2852983|T037|PT|S63.122S|ICD10CM|Subluxation of interphalangeal joint of left thumb, sequela|Subluxation of interphalangeal joint of left thumb, sequela +C2852983|T037|AB|S63.122S|ICD10CM|Subluxation of interphalangeal joint of left thumb, sequela|Subluxation of interphalangeal joint of left thumb, sequela +C2852984|T037|AB|S63.123|ICD10CM|Subluxation of interphalangeal joint of unspecified thumb|Subluxation of interphalangeal joint of unspecified thumb +C2852984|T037|HT|S63.123|ICD10CM|Subluxation of interphalangeal joint of unspecified thumb|Subluxation of interphalangeal joint of unspecified thumb +C2852985|T037|AB|S63.123A|ICD10CM|Subluxation of interphalangeal joint of thmb, init|Subluxation of interphalangeal joint of thmb, init +C2852985|T037|PT|S63.123A|ICD10CM|Subluxation of interphalangeal joint of unspecified thumb, initial encounter|Subluxation of interphalangeal joint of unspecified thumb, initial encounter +C2852986|T037|AB|S63.123D|ICD10CM|Subluxation of interphalangeal joint of thmb, subs|Subluxation of interphalangeal joint of thmb, subs +C2852986|T037|PT|S63.123D|ICD10CM|Subluxation of interphalangeal joint of unspecified thumb, subsequent encounter|Subluxation of interphalangeal joint of unspecified thumb, subsequent encounter +C2852987|T037|AB|S63.123S|ICD10CM|Subluxation of interphalangeal joint of thmb, sequela|Subluxation of interphalangeal joint of thmb, sequela +C2852987|T037|PT|S63.123S|ICD10CM|Subluxation of interphalangeal joint of unspecified thumb, sequela|Subluxation of interphalangeal joint of unspecified thumb, sequela +C3506981|T037|AB|S63.124|ICD10CM|Dislocation of interphalangeal joint of right thumb|Dislocation of interphalangeal joint of right thumb +C3506981|T037|HT|S63.124|ICD10CM|Dislocation of interphalangeal joint of right thumb|Dislocation of interphalangeal joint of right thumb +C2852989|T037|AB|S63.124A|ICD10CM|Dislocation of interphalangeal joint of right thumb, init|Dislocation of interphalangeal joint of right thumb, init +C2852989|T037|PT|S63.124A|ICD10CM|Dislocation of interphalangeal joint of right thumb, initial encounter|Dislocation of interphalangeal joint of right thumb, initial encounter +C2852990|T037|AB|S63.124D|ICD10CM|Dislocation of interphalangeal joint of right thumb, subs|Dislocation of interphalangeal joint of right thumb, subs +C2852990|T037|PT|S63.124D|ICD10CM|Dislocation of interphalangeal joint of right thumb, subsequent encounter|Dislocation of interphalangeal joint of right thumb, subsequent encounter +C2852991|T037|AB|S63.124S|ICD10CM|Dislocation of interphalangeal joint of right thumb, sequela|Dislocation of interphalangeal joint of right thumb, sequela +C2852991|T037|PT|S63.124S|ICD10CM|Dislocation of interphalangeal joint of right thumb, sequela|Dislocation of interphalangeal joint of right thumb, sequela +C3506982|T037|AB|S63.125|ICD10CM|Dislocation of interphalangeal joint of left thumb|Dislocation of interphalangeal joint of left thumb +C3506982|T037|HT|S63.125|ICD10CM|Dislocation of interphalangeal joint of left thumb|Dislocation of interphalangeal joint of left thumb +C2852993|T037|AB|S63.125A|ICD10CM|Dislocation of interphalangeal joint of left thumb, init|Dislocation of interphalangeal joint of left thumb, init +C2852993|T037|PT|S63.125A|ICD10CM|Dislocation of interphalangeal joint of left thumb, initial encounter|Dislocation of interphalangeal joint of left thumb, initial encounter +C2852994|T037|AB|S63.125D|ICD10CM|Dislocation of interphalangeal joint of left thumb, subs|Dislocation of interphalangeal joint of left thumb, subs +C2852994|T037|PT|S63.125D|ICD10CM|Dislocation of interphalangeal joint of left thumb, subsequent encounter|Dislocation of interphalangeal joint of left thumb, subsequent encounter +C2852995|T037|PT|S63.125S|ICD10CM|Dislocation of interphalangeal joint of left thumb, sequela|Dislocation of interphalangeal joint of left thumb, sequela +C2852995|T037|AB|S63.125S|ICD10CM|Dislocation of interphalangeal joint of left thumb, sequela|Dislocation of interphalangeal joint of left thumb, sequela +C2852996|T037|AB|S63.126|ICD10CM|Dislocation of interphalangeal joint of unspecified thumb|Dislocation of interphalangeal joint of unspecified thumb +C2852996|T037|HT|S63.126|ICD10CM|Dislocation of interphalangeal joint of unspecified thumb|Dislocation of interphalangeal joint of unspecified thumb +C2852997|T037|AB|S63.126A|ICD10CM|Dislocation of interphalangeal joint of thmb, init|Dislocation of interphalangeal joint of thmb, init +C2852997|T037|PT|S63.126A|ICD10CM|Dislocation of interphalangeal joint of unspecified thumb, initial encounter|Dislocation of interphalangeal joint of unspecified thumb, initial encounter +C2852998|T037|AB|S63.126D|ICD10CM|Dislocation of interphalangeal joint of thmb, subs|Dislocation of interphalangeal joint of thmb, subs +C2852998|T037|PT|S63.126D|ICD10CM|Dislocation of interphalangeal joint of unspecified thumb, subsequent encounter|Dislocation of interphalangeal joint of unspecified thumb, subsequent encounter +C2852999|T037|AB|S63.126S|ICD10CM|Dislocation of interphalangeal joint of thmb, sequela|Dislocation of interphalangeal joint of thmb, sequela +C2852999|T037|PT|S63.126S|ICD10CM|Dislocation of interphalangeal joint of unspecified thumb, sequela|Dislocation of interphalangeal joint of unspecified thumb, sequela +C0495903|T037|PT|S63.2|ICD10|Multiple dislocations of fingers|Multiple dislocations of fingers +C2853050|T037|AB|S63.2|ICD10CM|Subluxation and dislocation of other finger(s)|Subluxation and dislocation of other finger(s) +C2853050|T037|HT|S63.2|ICD10CM|Subluxation and dislocation of other finger(s)|Subluxation and dislocation of other finger(s) +C2853051|T037|AB|S63.20|ICD10CM|Unspecified subluxation of other finger|Unspecified subluxation of other finger +C2853051|T037|HT|S63.20|ICD10CM|Unspecified subluxation of other finger|Unspecified subluxation of other finger +C2853052|T037|AB|S63.200|ICD10CM|Unspecified subluxation of right index finger|Unspecified subluxation of right index finger +C2853052|T037|HT|S63.200|ICD10CM|Unspecified subluxation of right index finger|Unspecified subluxation of right index finger +C2853053|T037|AB|S63.200A|ICD10CM|Unspecified subluxation of right index finger, init encntr|Unspecified subluxation of right index finger, init encntr +C2853053|T037|PT|S63.200A|ICD10CM|Unspecified subluxation of right index finger, initial encounter|Unspecified subluxation of right index finger, initial encounter +C2853054|T037|AB|S63.200D|ICD10CM|Unspecified subluxation of right index finger, subs encntr|Unspecified subluxation of right index finger, subs encntr +C2853054|T037|PT|S63.200D|ICD10CM|Unspecified subluxation of right index finger, subsequent encounter|Unspecified subluxation of right index finger, subsequent encounter +C2853055|T037|AB|S63.200S|ICD10CM|Unspecified subluxation of right index finger, sequela|Unspecified subluxation of right index finger, sequela +C2853055|T037|PT|S63.200S|ICD10CM|Unspecified subluxation of right index finger, sequela|Unspecified subluxation of right index finger, sequela +C2853056|T037|AB|S63.201|ICD10CM|Unspecified subluxation of left index finger|Unspecified subluxation of left index finger +C2853056|T037|HT|S63.201|ICD10CM|Unspecified subluxation of left index finger|Unspecified subluxation of left index finger +C2853057|T037|AB|S63.201A|ICD10CM|Unspecified subluxation of left index finger, init encntr|Unspecified subluxation of left index finger, init encntr +C2853057|T037|PT|S63.201A|ICD10CM|Unspecified subluxation of left index finger, initial encounter|Unspecified subluxation of left index finger, initial encounter +C2853058|T037|AB|S63.201D|ICD10CM|Unspecified subluxation of left index finger, subs encntr|Unspecified subluxation of left index finger, subs encntr +C2853058|T037|PT|S63.201D|ICD10CM|Unspecified subluxation of left index finger, subsequent encounter|Unspecified subluxation of left index finger, subsequent encounter +C2853059|T037|AB|S63.201S|ICD10CM|Unspecified subluxation of left index finger, sequela|Unspecified subluxation of left index finger, sequela +C2853059|T037|PT|S63.201S|ICD10CM|Unspecified subluxation of left index finger, sequela|Unspecified subluxation of left index finger, sequela +C2853060|T037|AB|S63.202|ICD10CM|Unspecified subluxation of right middle finger|Unspecified subluxation of right middle finger +C2853060|T037|HT|S63.202|ICD10CM|Unspecified subluxation of right middle finger|Unspecified subluxation of right middle finger +C2853061|T037|AB|S63.202A|ICD10CM|Unspecified subluxation of right middle finger, init encntr|Unspecified subluxation of right middle finger, init encntr +C2853061|T037|PT|S63.202A|ICD10CM|Unspecified subluxation of right middle finger, initial encounter|Unspecified subluxation of right middle finger, initial encounter +C2853062|T037|AB|S63.202D|ICD10CM|Unspecified subluxation of right middle finger, subs encntr|Unspecified subluxation of right middle finger, subs encntr +C2853062|T037|PT|S63.202D|ICD10CM|Unspecified subluxation of right middle finger, subsequent encounter|Unspecified subluxation of right middle finger, subsequent encounter +C2853063|T037|AB|S63.202S|ICD10CM|Unspecified subluxation of right middle finger, sequela|Unspecified subluxation of right middle finger, sequela +C2853063|T037|PT|S63.202S|ICD10CM|Unspecified subluxation of right middle finger, sequela|Unspecified subluxation of right middle finger, sequela +C2853064|T037|AB|S63.203|ICD10CM|Unspecified subluxation of left middle finger|Unspecified subluxation of left middle finger +C2853064|T037|HT|S63.203|ICD10CM|Unspecified subluxation of left middle finger|Unspecified subluxation of left middle finger +C2853065|T037|AB|S63.203A|ICD10CM|Unspecified subluxation of left middle finger, init encntr|Unspecified subluxation of left middle finger, init encntr +C2853065|T037|PT|S63.203A|ICD10CM|Unspecified subluxation of left middle finger, initial encounter|Unspecified subluxation of left middle finger, initial encounter +C2853066|T037|AB|S63.203D|ICD10CM|Unspecified subluxation of left middle finger, subs encntr|Unspecified subluxation of left middle finger, subs encntr +C2853066|T037|PT|S63.203D|ICD10CM|Unspecified subluxation of left middle finger, subsequent encounter|Unspecified subluxation of left middle finger, subsequent encounter +C2853067|T037|AB|S63.203S|ICD10CM|Unspecified subluxation of left middle finger, sequela|Unspecified subluxation of left middle finger, sequela +C2853067|T037|PT|S63.203S|ICD10CM|Unspecified subluxation of left middle finger, sequela|Unspecified subluxation of left middle finger, sequela +C2853068|T037|AB|S63.204|ICD10CM|Unspecified subluxation of right ring finger|Unspecified subluxation of right ring finger +C2853068|T037|HT|S63.204|ICD10CM|Unspecified subluxation of right ring finger|Unspecified subluxation of right ring finger +C2853069|T037|AB|S63.204A|ICD10CM|Unspecified subluxation of right ring finger, init encntr|Unspecified subluxation of right ring finger, init encntr +C2853069|T037|PT|S63.204A|ICD10CM|Unspecified subluxation of right ring finger, initial encounter|Unspecified subluxation of right ring finger, initial encounter +C2853070|T037|AB|S63.204D|ICD10CM|Unspecified subluxation of right ring finger, subs encntr|Unspecified subluxation of right ring finger, subs encntr +C2853070|T037|PT|S63.204D|ICD10CM|Unspecified subluxation of right ring finger, subsequent encounter|Unspecified subluxation of right ring finger, subsequent encounter +C2853071|T037|AB|S63.204S|ICD10CM|Unspecified subluxation of right ring finger, sequela|Unspecified subluxation of right ring finger, sequela +C2853071|T037|PT|S63.204S|ICD10CM|Unspecified subluxation of right ring finger, sequela|Unspecified subluxation of right ring finger, sequela +C2853072|T037|AB|S63.205|ICD10CM|Unspecified subluxation of left ring finger|Unspecified subluxation of left ring finger +C2853072|T037|HT|S63.205|ICD10CM|Unspecified subluxation of left ring finger|Unspecified subluxation of left ring finger +C2853073|T037|AB|S63.205A|ICD10CM|Unspecified subluxation of left ring finger, init encntr|Unspecified subluxation of left ring finger, init encntr +C2853073|T037|PT|S63.205A|ICD10CM|Unspecified subluxation of left ring finger, initial encounter|Unspecified subluxation of left ring finger, initial encounter +C2853074|T037|AB|S63.205D|ICD10CM|Unspecified subluxation of left ring finger, subs encntr|Unspecified subluxation of left ring finger, subs encntr +C2853074|T037|PT|S63.205D|ICD10CM|Unspecified subluxation of left ring finger, subsequent encounter|Unspecified subluxation of left ring finger, subsequent encounter +C2853075|T037|AB|S63.205S|ICD10CM|Unspecified subluxation of left ring finger, sequela|Unspecified subluxation of left ring finger, sequela +C2853075|T037|PT|S63.205S|ICD10CM|Unspecified subluxation of left ring finger, sequela|Unspecified subluxation of left ring finger, sequela +C2853076|T037|AB|S63.206|ICD10CM|Unspecified subluxation of right little finger|Unspecified subluxation of right little finger +C2853076|T037|HT|S63.206|ICD10CM|Unspecified subluxation of right little finger|Unspecified subluxation of right little finger +C2853077|T037|AB|S63.206A|ICD10CM|Unspecified subluxation of right little finger, init encntr|Unspecified subluxation of right little finger, init encntr +C2853077|T037|PT|S63.206A|ICD10CM|Unspecified subluxation of right little finger, initial encounter|Unspecified subluxation of right little finger, initial encounter +C2853078|T037|AB|S63.206D|ICD10CM|Unspecified subluxation of right little finger, subs encntr|Unspecified subluxation of right little finger, subs encntr +C2853078|T037|PT|S63.206D|ICD10CM|Unspecified subluxation of right little finger, subsequent encounter|Unspecified subluxation of right little finger, subsequent encounter +C2853079|T037|AB|S63.206S|ICD10CM|Unspecified subluxation of right little finger, sequela|Unspecified subluxation of right little finger, sequela +C2853079|T037|PT|S63.206S|ICD10CM|Unspecified subluxation of right little finger, sequela|Unspecified subluxation of right little finger, sequela +C2853080|T037|AB|S63.207|ICD10CM|Unspecified subluxation of left little finger|Unspecified subluxation of left little finger +C2853080|T037|HT|S63.207|ICD10CM|Unspecified subluxation of left little finger|Unspecified subluxation of left little finger +C2853081|T037|AB|S63.207A|ICD10CM|Unspecified subluxation of left little finger, init encntr|Unspecified subluxation of left little finger, init encntr +C2853081|T037|PT|S63.207A|ICD10CM|Unspecified subluxation of left little finger, initial encounter|Unspecified subluxation of left little finger, initial encounter +C2853082|T037|AB|S63.207D|ICD10CM|Unspecified subluxation of left little finger, subs encntr|Unspecified subluxation of left little finger, subs encntr +C2853082|T037|PT|S63.207D|ICD10CM|Unspecified subluxation of left little finger, subsequent encounter|Unspecified subluxation of left little finger, subsequent encounter +C2853083|T037|AB|S63.207S|ICD10CM|Unspecified subluxation of left little finger, sequela|Unspecified subluxation of left little finger, sequela +C2853083|T037|PT|S63.207S|ICD10CM|Unspecified subluxation of left little finger, sequela|Unspecified subluxation of left little finger, sequela +C2853051|T037|HT|S63.208|ICD10CM|Unspecified subluxation of other finger|Unspecified subluxation of other finger +C2853051|T037|AB|S63.208|ICD10CM|Unspecified subluxation of other finger|Unspecified subluxation of other finger +C2853084|T037|ET|S63.208|ICD10CM|Unspecified subluxation of specified finger with unspecified laterality|Unspecified subluxation of specified finger with unspecified laterality +C2853085|T037|AB|S63.208A|ICD10CM|Unspecified subluxation of other finger, initial encounter|Unspecified subluxation of other finger, initial encounter +C2853085|T037|PT|S63.208A|ICD10CM|Unspecified subluxation of other finger, initial encounter|Unspecified subluxation of other finger, initial encounter +C2853086|T037|AB|S63.208D|ICD10CM|Unspecified subluxation of other finger, subs encntr|Unspecified subluxation of other finger, subs encntr +C2853086|T037|PT|S63.208D|ICD10CM|Unspecified subluxation of other finger, subsequent encounter|Unspecified subluxation of other finger, subsequent encounter +C2853087|T037|AB|S63.208S|ICD10CM|Unspecified subluxation of other finger, sequela|Unspecified subluxation of other finger, sequela +C2853087|T037|PT|S63.208S|ICD10CM|Unspecified subluxation of other finger, sequela|Unspecified subluxation of other finger, sequela +C2853088|T037|AB|S63.209|ICD10CM|Unspecified subluxation of unspecified finger|Unspecified subluxation of unspecified finger +C2853088|T037|HT|S63.209|ICD10CM|Unspecified subluxation of unspecified finger|Unspecified subluxation of unspecified finger +C2853089|T037|AB|S63.209A|ICD10CM|Unspecified subluxation of unspecified finger, init encntr|Unspecified subluxation of unspecified finger, init encntr +C2853089|T037|PT|S63.209A|ICD10CM|Unspecified subluxation of unspecified finger, initial encounter|Unspecified subluxation of unspecified finger, initial encounter +C2853090|T037|AB|S63.209D|ICD10CM|Unspecified subluxation of unspecified finger, subs encntr|Unspecified subluxation of unspecified finger, subs encntr +C2853090|T037|PT|S63.209D|ICD10CM|Unspecified subluxation of unspecified finger, subsequent encounter|Unspecified subluxation of unspecified finger, subsequent encounter +C2853091|T037|AB|S63.209S|ICD10CM|Unspecified subluxation of unspecified finger, sequela|Unspecified subluxation of unspecified finger, sequela +C2853091|T037|PT|S63.209S|ICD10CM|Unspecified subluxation of unspecified finger, sequela|Unspecified subluxation of unspecified finger, sequela +C4025363|T037|HT|S63.21|ICD10CM|Subluxation of metacarpophalangeal joint of finger|Subluxation of metacarpophalangeal joint of finger +C4025363|T037|AB|S63.21|ICD10CM|Subluxation of metacarpophalangeal joint of finger|Subluxation of metacarpophalangeal joint of finger +C2853093|T037|AB|S63.210|ICD10CM|Subluxation of MCP joint of right index finger|Subluxation of MCP joint of right index finger +C2853093|T037|HT|S63.210|ICD10CM|Subluxation of metacarpophalangeal joint of right index finger|Subluxation of metacarpophalangeal joint of right index finger +C2853094|T037|AB|S63.210A|ICD10CM|Subluxation of MCP joint of right index finger, init|Subluxation of MCP joint of right index finger, init +C2853094|T037|PT|S63.210A|ICD10CM|Subluxation of metacarpophalangeal joint of right index finger, initial encounter|Subluxation of metacarpophalangeal joint of right index finger, initial encounter +C2853095|T037|AB|S63.210D|ICD10CM|Subluxation of MCP joint of right index finger, subs|Subluxation of MCP joint of right index finger, subs +C2853095|T037|PT|S63.210D|ICD10CM|Subluxation of metacarpophalangeal joint of right index finger, subsequent encounter|Subluxation of metacarpophalangeal joint of right index finger, subsequent encounter +C2853096|T037|AB|S63.210S|ICD10CM|Subluxation of MCP joint of right index finger, sequela|Subluxation of MCP joint of right index finger, sequela +C2853096|T037|PT|S63.210S|ICD10CM|Subluxation of metacarpophalangeal joint of right index finger, sequela|Subluxation of metacarpophalangeal joint of right index finger, sequela +C2853097|T037|AB|S63.211|ICD10CM|Subluxation of MCP joint of left index finger|Subluxation of MCP joint of left index finger +C2853097|T037|HT|S63.211|ICD10CM|Subluxation of metacarpophalangeal joint of left index finger|Subluxation of metacarpophalangeal joint of left index finger +C2853098|T037|AB|S63.211A|ICD10CM|Subluxation of MCP joint of left index finger, init|Subluxation of MCP joint of left index finger, init +C2853098|T037|PT|S63.211A|ICD10CM|Subluxation of metacarpophalangeal joint of left index finger, initial encounter|Subluxation of metacarpophalangeal joint of left index finger, initial encounter +C2853099|T037|AB|S63.211D|ICD10CM|Subluxation of MCP joint of left index finger, subs|Subluxation of MCP joint of left index finger, subs +C2853099|T037|PT|S63.211D|ICD10CM|Subluxation of metacarpophalangeal joint of left index finger, subsequent encounter|Subluxation of metacarpophalangeal joint of left index finger, subsequent encounter +C2853100|T037|AB|S63.211S|ICD10CM|Subluxation of MCP joint of left index finger, sequela|Subluxation of MCP joint of left index finger, sequela +C2853100|T037|PT|S63.211S|ICD10CM|Subluxation of metacarpophalangeal joint of left index finger, sequela|Subluxation of metacarpophalangeal joint of left index finger, sequela +C2853101|T037|AB|S63.212|ICD10CM|Subluxation of MCP joint of right middle finger|Subluxation of MCP joint of right middle finger +C2853101|T037|HT|S63.212|ICD10CM|Subluxation of metacarpophalangeal joint of right middle finger|Subluxation of metacarpophalangeal joint of right middle finger +C2853102|T037|AB|S63.212A|ICD10CM|Subluxation of MCP joint of right middle finger, init|Subluxation of MCP joint of right middle finger, init +C2853102|T037|PT|S63.212A|ICD10CM|Subluxation of metacarpophalangeal joint of right middle finger, initial encounter|Subluxation of metacarpophalangeal joint of right middle finger, initial encounter +C2853103|T037|AB|S63.212D|ICD10CM|Subluxation of MCP joint of right middle finger, subs|Subluxation of MCP joint of right middle finger, subs +C2853103|T037|PT|S63.212D|ICD10CM|Subluxation of metacarpophalangeal joint of right middle finger, subsequent encounter|Subluxation of metacarpophalangeal joint of right middle finger, subsequent encounter +C2853104|T037|AB|S63.212S|ICD10CM|Subluxation of MCP joint of right middle finger, sequela|Subluxation of MCP joint of right middle finger, sequela +C2853104|T037|PT|S63.212S|ICD10CM|Subluxation of metacarpophalangeal joint of right middle finger, sequela|Subluxation of metacarpophalangeal joint of right middle finger, sequela +C2036849|T037|AB|S63.213|ICD10CM|Subluxation of MCP joint of left middle finger|Subluxation of MCP joint of left middle finger +C2036849|T037|HT|S63.213|ICD10CM|Subluxation of metacarpophalangeal joint of left middle finger|Subluxation of metacarpophalangeal joint of left middle finger +C2853106|T037|AB|S63.213A|ICD10CM|Subluxation of MCP joint of left middle finger, init|Subluxation of MCP joint of left middle finger, init +C2853106|T037|PT|S63.213A|ICD10CM|Subluxation of metacarpophalangeal joint of left middle finger, initial encounter|Subluxation of metacarpophalangeal joint of left middle finger, initial encounter +C2853107|T037|AB|S63.213D|ICD10CM|Subluxation of MCP joint of left middle finger, subs|Subluxation of MCP joint of left middle finger, subs +C2853107|T037|PT|S63.213D|ICD10CM|Subluxation of metacarpophalangeal joint of left middle finger, subsequent encounter|Subluxation of metacarpophalangeal joint of left middle finger, subsequent encounter +C2853108|T037|AB|S63.213S|ICD10CM|Subluxation of MCP joint of left middle finger, sequela|Subluxation of MCP joint of left middle finger, sequela +C2853108|T037|PT|S63.213S|ICD10CM|Subluxation of metacarpophalangeal joint of left middle finger, sequela|Subluxation of metacarpophalangeal joint of left middle finger, sequela +C2036856|T037|AB|S63.214|ICD10CM|Subluxation of MCP joint of right ring finger|Subluxation of MCP joint of right ring finger +C2036856|T037|HT|S63.214|ICD10CM|Subluxation of metacarpophalangeal joint of right ring finger|Subluxation of metacarpophalangeal joint of right ring finger +C2853110|T037|AB|S63.214A|ICD10CM|Subluxation of MCP joint of right ring finger, init|Subluxation of MCP joint of right ring finger, init +C2853110|T037|PT|S63.214A|ICD10CM|Subluxation of metacarpophalangeal joint of right ring finger, initial encounter|Subluxation of metacarpophalangeal joint of right ring finger, initial encounter +C2853111|T037|AB|S63.214D|ICD10CM|Subluxation of MCP joint of right ring finger, subs|Subluxation of MCP joint of right ring finger, subs +C2853111|T037|PT|S63.214D|ICD10CM|Subluxation of metacarpophalangeal joint of right ring finger, subsequent encounter|Subluxation of metacarpophalangeal joint of right ring finger, subsequent encounter +C2853112|T037|AB|S63.214S|ICD10CM|Subluxation of MCP joint of right ring finger, sequela|Subluxation of MCP joint of right ring finger, sequela +C2853112|T037|PT|S63.214S|ICD10CM|Subluxation of metacarpophalangeal joint of right ring finger, sequela|Subluxation of metacarpophalangeal joint of right ring finger, sequela +C2853113|T037|AB|S63.215|ICD10CM|Subluxation of metacarpophalangeal joint of left ring finger|Subluxation of metacarpophalangeal joint of left ring finger +C2853113|T037|HT|S63.215|ICD10CM|Subluxation of metacarpophalangeal joint of left ring finger|Subluxation of metacarpophalangeal joint of left ring finger +C2853114|T037|AB|S63.215A|ICD10CM|Subluxation of MCP joint of left ring finger, init|Subluxation of MCP joint of left ring finger, init +C2853114|T037|PT|S63.215A|ICD10CM|Subluxation of metacarpophalangeal joint of left ring finger, initial encounter|Subluxation of metacarpophalangeal joint of left ring finger, initial encounter +C2853115|T037|AB|S63.215D|ICD10CM|Subluxation of MCP joint of left ring finger, subs|Subluxation of MCP joint of left ring finger, subs +C2853115|T037|PT|S63.215D|ICD10CM|Subluxation of metacarpophalangeal joint of left ring finger, subsequent encounter|Subluxation of metacarpophalangeal joint of left ring finger, subsequent encounter +C2853116|T037|AB|S63.215S|ICD10CM|Subluxation of MCP joint of left ring finger, sequela|Subluxation of MCP joint of left ring finger, sequela +C2853116|T037|PT|S63.215S|ICD10CM|Subluxation of metacarpophalangeal joint of left ring finger, sequela|Subluxation of metacarpophalangeal joint of left ring finger, sequela +C2036854|T037|AB|S63.216|ICD10CM|Subluxation of MCP joint of right little finger|Subluxation of MCP joint of right little finger +C2036854|T037|HT|S63.216|ICD10CM|Subluxation of metacarpophalangeal joint of right little finger|Subluxation of metacarpophalangeal joint of right little finger +C2853118|T037|AB|S63.216A|ICD10CM|Subluxation of MCP joint of right little finger, init|Subluxation of MCP joint of right little finger, init +C2853118|T037|PT|S63.216A|ICD10CM|Subluxation of metacarpophalangeal joint of right little finger, initial encounter|Subluxation of metacarpophalangeal joint of right little finger, initial encounter +C2853119|T037|AB|S63.216D|ICD10CM|Subluxation of MCP joint of right little finger, subs|Subluxation of MCP joint of right little finger, subs +C2853119|T037|PT|S63.216D|ICD10CM|Subluxation of metacarpophalangeal joint of right little finger, subsequent encounter|Subluxation of metacarpophalangeal joint of right little finger, subsequent encounter +C2853120|T037|AB|S63.216S|ICD10CM|Subluxation of MCP joint of right little finger, sequela|Subluxation of MCP joint of right little finger, sequela +C2853120|T037|PT|S63.216S|ICD10CM|Subluxation of metacarpophalangeal joint of right little finger, sequela|Subluxation of metacarpophalangeal joint of right little finger, sequela +C2036848|T037|AB|S63.217|ICD10CM|Subluxation of MCP joint of left little finger|Subluxation of MCP joint of left little finger +C2036848|T037|HT|S63.217|ICD10CM|Subluxation of metacarpophalangeal joint of left little finger|Subluxation of metacarpophalangeal joint of left little finger +C2853122|T037|AB|S63.217A|ICD10CM|Subluxation of MCP joint of left little finger, init|Subluxation of MCP joint of left little finger, init +C2853122|T037|PT|S63.217A|ICD10CM|Subluxation of metacarpophalangeal joint of left little finger, initial encounter|Subluxation of metacarpophalangeal joint of left little finger, initial encounter +C2853123|T037|AB|S63.217D|ICD10CM|Subluxation of MCP joint of left little finger, subs|Subluxation of MCP joint of left little finger, subs +C2853123|T037|PT|S63.217D|ICD10CM|Subluxation of metacarpophalangeal joint of left little finger, subsequent encounter|Subluxation of metacarpophalangeal joint of left little finger, subsequent encounter +C2853124|T037|AB|S63.217S|ICD10CM|Subluxation of MCP joint of left little finger, sequela|Subluxation of MCP joint of left little finger, sequela +C2853124|T037|PT|S63.217S|ICD10CM|Subluxation of metacarpophalangeal joint of left little finger, sequela|Subluxation of metacarpophalangeal joint of left little finger, sequela +C2853126|T037|AB|S63.218|ICD10CM|Subluxation of metacarpophalangeal joint of other finger|Subluxation of metacarpophalangeal joint of other finger +C2853126|T037|HT|S63.218|ICD10CM|Subluxation of metacarpophalangeal joint of other finger|Subluxation of metacarpophalangeal joint of other finger +C2853125|T037|ET|S63.218|ICD10CM|Subluxation of metacarpophalangeal joint of specified finger with unspecified laterality|Subluxation of metacarpophalangeal joint of specified finger with unspecified laterality +C2853127|T037|AB|S63.218A|ICD10CM|Subluxation of metacarpophalangeal joint of oth finger, init|Subluxation of metacarpophalangeal joint of oth finger, init +C2853127|T037|PT|S63.218A|ICD10CM|Subluxation of metacarpophalangeal joint of other finger, initial encounter|Subluxation of metacarpophalangeal joint of other finger, initial encounter +C2853128|T037|AB|S63.218D|ICD10CM|Subluxation of metacarpophalangeal joint of oth finger, subs|Subluxation of metacarpophalangeal joint of oth finger, subs +C2853128|T037|PT|S63.218D|ICD10CM|Subluxation of metacarpophalangeal joint of other finger, subsequent encounter|Subluxation of metacarpophalangeal joint of other finger, subsequent encounter +C2853129|T037|AB|S63.218S|ICD10CM|Subluxation of metacarpophalangeal joint of finger, sequela|Subluxation of metacarpophalangeal joint of finger, sequela +C2853129|T037|PT|S63.218S|ICD10CM|Subluxation of metacarpophalangeal joint of other finger, sequela|Subluxation of metacarpophalangeal joint of other finger, sequela +C2853130|T037|AB|S63.219|ICD10CM|Subluxation of metacarpophalangeal joint of unsp finger|Subluxation of metacarpophalangeal joint of unsp finger +C2853130|T037|HT|S63.219|ICD10CM|Subluxation of metacarpophalangeal joint of unspecified finger|Subluxation of metacarpophalangeal joint of unspecified finger +C2853131|T037|AB|S63.219A|ICD10CM|Subluxation of MCP joint of unsp finger, init|Subluxation of MCP joint of unsp finger, init +C2853131|T037|PT|S63.219A|ICD10CM|Subluxation of metacarpophalangeal joint of unspecified finger, initial encounter|Subluxation of metacarpophalangeal joint of unspecified finger, initial encounter +C2853132|T037|AB|S63.219D|ICD10CM|Subluxation of MCP joint of unsp finger, subs|Subluxation of MCP joint of unsp finger, subs +C2853132|T037|PT|S63.219D|ICD10CM|Subluxation of metacarpophalangeal joint of unspecified finger, subsequent encounter|Subluxation of metacarpophalangeal joint of unspecified finger, subsequent encounter +C2853133|T037|AB|S63.219S|ICD10CM|Subluxation of MCP joint of unsp finger, sequela|Subluxation of MCP joint of unsp finger, sequela +C2853133|T037|PT|S63.219S|ICD10CM|Subluxation of metacarpophalangeal joint of unspecified finger, sequela|Subluxation of metacarpophalangeal joint of unspecified finger, sequela +C2853134|T037|AB|S63.22|ICD10CM|Subluxation of unspecified interphalangeal joint of finger|Subluxation of unspecified interphalangeal joint of finger +C2853134|T037|HT|S63.22|ICD10CM|Subluxation of unspecified interphalangeal joint of finger|Subluxation of unspecified interphalangeal joint of finger +C2853135|T037|AB|S63.220|ICD10CM|Subluxation of unsp interphalangeal joint of r idx fngr|Subluxation of unsp interphalangeal joint of r idx fngr +C2853135|T037|HT|S63.220|ICD10CM|Subluxation of unspecified interphalangeal joint of right index finger|Subluxation of unspecified interphalangeal joint of right index finger +C2853136|T037|AB|S63.220A|ICD10CM|Subluxation of unsp interphaln joint of r idx fngr, init|Subluxation of unsp interphaln joint of r idx fngr, init +C2853136|T037|PT|S63.220A|ICD10CM|Subluxation of unspecified interphalangeal joint of right index finger, initial encounter|Subluxation of unspecified interphalangeal joint of right index finger, initial encounter +C2853137|T037|AB|S63.220D|ICD10CM|Subluxation of unsp interphaln joint of r idx fngr, subs|Subluxation of unsp interphaln joint of r idx fngr, subs +C2853137|T037|PT|S63.220D|ICD10CM|Subluxation of unspecified interphalangeal joint of right index finger, subsequent encounter|Subluxation of unspecified interphalangeal joint of right index finger, subsequent encounter +C2853138|T037|AB|S63.220S|ICD10CM|Subluxation of unsp interphaln joint of r idx fngr, sequela|Subluxation of unsp interphaln joint of r idx fngr, sequela +C2853138|T037|PT|S63.220S|ICD10CM|Subluxation of unspecified interphalangeal joint of right index finger, sequela|Subluxation of unspecified interphalangeal joint of right index finger, sequela +C2853139|T037|AB|S63.221|ICD10CM|Subluxation of unsp interphalangeal joint of l idx fngr|Subluxation of unsp interphalangeal joint of l idx fngr +C2853139|T037|HT|S63.221|ICD10CM|Subluxation of unspecified interphalangeal joint of left index finger|Subluxation of unspecified interphalangeal joint of left index finger +C2853140|T037|AB|S63.221A|ICD10CM|Subluxation of unsp interphaln joint of l idx fngr, init|Subluxation of unsp interphaln joint of l idx fngr, init +C2853140|T037|PT|S63.221A|ICD10CM|Subluxation of unspecified interphalangeal joint of left index finger, initial encounter|Subluxation of unspecified interphalangeal joint of left index finger, initial encounter +C2853141|T037|AB|S63.221D|ICD10CM|Subluxation of unsp interphaln joint of l idx fngr, subs|Subluxation of unsp interphaln joint of l idx fngr, subs +C2853141|T037|PT|S63.221D|ICD10CM|Subluxation of unspecified interphalangeal joint of left index finger, subsequent encounter|Subluxation of unspecified interphalangeal joint of left index finger, subsequent encounter +C2853142|T037|AB|S63.221S|ICD10CM|Subluxation of unsp interphaln joint of l idx fngr, sequela|Subluxation of unsp interphaln joint of l idx fngr, sequela +C2853142|T037|PT|S63.221S|ICD10CM|Subluxation of unspecified interphalangeal joint of left index finger, sequela|Subluxation of unspecified interphalangeal joint of left index finger, sequela +C2853143|T037|AB|S63.222|ICD10CM|Subluxation of unsp interphalangeal joint of r mid finger|Subluxation of unsp interphalangeal joint of r mid finger +C2853143|T037|HT|S63.222|ICD10CM|Subluxation of unspecified interphalangeal joint of right middle finger|Subluxation of unspecified interphalangeal joint of right middle finger +C2853144|T037|AB|S63.222A|ICD10CM|Subluxation of unsp interphaln joint of r mid finger, init|Subluxation of unsp interphaln joint of r mid finger, init +C2853144|T037|PT|S63.222A|ICD10CM|Subluxation of unspecified interphalangeal joint of right middle finger, initial encounter|Subluxation of unspecified interphalangeal joint of right middle finger, initial encounter +C2853145|T037|AB|S63.222D|ICD10CM|Subluxation of unsp interphaln joint of r mid finger, subs|Subluxation of unsp interphaln joint of r mid finger, subs +C2853145|T037|PT|S63.222D|ICD10CM|Subluxation of unspecified interphalangeal joint of right middle finger, subsequent encounter|Subluxation of unspecified interphalangeal joint of right middle finger, subsequent encounter +C2853146|T037|AB|S63.222S|ICD10CM|Sublux of unsp interphaln joint of r mid finger, sequela|Sublux of unsp interphaln joint of r mid finger, sequela +C2853146|T037|PT|S63.222S|ICD10CM|Subluxation of unspecified interphalangeal joint of right middle finger, sequela|Subluxation of unspecified interphalangeal joint of right middle finger, sequela +C2853147|T037|AB|S63.223|ICD10CM|Subluxation of unsp interphalangeal joint of l mid finger|Subluxation of unsp interphalangeal joint of l mid finger +C2853147|T037|HT|S63.223|ICD10CM|Subluxation of unspecified interphalangeal joint of left middle finger|Subluxation of unspecified interphalangeal joint of left middle finger +C2853148|T037|AB|S63.223A|ICD10CM|Subluxation of unsp interphaln joint of l mid finger, init|Subluxation of unsp interphaln joint of l mid finger, init +C2853148|T037|PT|S63.223A|ICD10CM|Subluxation of unspecified interphalangeal joint of left middle finger, initial encounter|Subluxation of unspecified interphalangeal joint of left middle finger, initial encounter +C2853149|T037|AB|S63.223D|ICD10CM|Subluxation of unsp interphaln joint of l mid finger, subs|Subluxation of unsp interphaln joint of l mid finger, subs +C2853149|T037|PT|S63.223D|ICD10CM|Subluxation of unspecified interphalangeal joint of left middle finger, subsequent encounter|Subluxation of unspecified interphalangeal joint of left middle finger, subsequent encounter +C2853150|T037|AB|S63.223S|ICD10CM|Sublux of unsp interphaln joint of l mid finger, sequela|Sublux of unsp interphaln joint of l mid finger, sequela +C2853150|T037|PT|S63.223S|ICD10CM|Subluxation of unspecified interphalangeal joint of left middle finger, sequela|Subluxation of unspecified interphalangeal joint of left middle finger, sequela +C2853151|T037|AB|S63.224|ICD10CM|Subluxation of unsp interphalangeal joint of r rng fngr|Subluxation of unsp interphalangeal joint of r rng fngr +C2853151|T037|HT|S63.224|ICD10CM|Subluxation of unspecified interphalangeal joint of right ring finger|Subluxation of unspecified interphalangeal joint of right ring finger +C2853152|T037|AB|S63.224A|ICD10CM|Subluxation of unsp interphaln joint of r rng fngr, init|Subluxation of unsp interphaln joint of r rng fngr, init +C2853152|T037|PT|S63.224A|ICD10CM|Subluxation of unspecified interphalangeal joint of right ring finger, initial encounter|Subluxation of unspecified interphalangeal joint of right ring finger, initial encounter +C2853153|T037|AB|S63.224D|ICD10CM|Subluxation of unsp interphaln joint of r rng fngr, subs|Subluxation of unsp interphaln joint of r rng fngr, subs +C2853153|T037|PT|S63.224D|ICD10CM|Subluxation of unspecified interphalangeal joint of right ring finger, subsequent encounter|Subluxation of unspecified interphalangeal joint of right ring finger, subsequent encounter +C2853154|T037|AB|S63.224S|ICD10CM|Subluxation of unsp interphaln joint of r rng fngr, sequela|Subluxation of unsp interphaln joint of r rng fngr, sequela +C2853154|T037|PT|S63.224S|ICD10CM|Subluxation of unspecified interphalangeal joint of right ring finger, sequela|Subluxation of unspecified interphalangeal joint of right ring finger, sequela +C2853155|T037|AB|S63.225|ICD10CM|Subluxation of unsp interphalangeal joint of l rng fngr|Subluxation of unsp interphalangeal joint of l rng fngr +C2853155|T037|HT|S63.225|ICD10CM|Subluxation of unspecified interphalangeal joint of left ring finger|Subluxation of unspecified interphalangeal joint of left ring finger +C2853156|T037|AB|S63.225A|ICD10CM|Subluxation of unsp interphaln joint of l rng fngr, init|Subluxation of unsp interphaln joint of l rng fngr, init +C2853156|T037|PT|S63.225A|ICD10CM|Subluxation of unspecified interphalangeal joint of left ring finger, initial encounter|Subluxation of unspecified interphalangeal joint of left ring finger, initial encounter +C2853157|T037|AB|S63.225D|ICD10CM|Subluxation of unsp interphaln joint of l rng fngr, subs|Subluxation of unsp interphaln joint of l rng fngr, subs +C2853157|T037|PT|S63.225D|ICD10CM|Subluxation of unspecified interphalangeal joint of left ring finger, subsequent encounter|Subluxation of unspecified interphalangeal joint of left ring finger, subsequent encounter +C2853158|T037|AB|S63.225S|ICD10CM|Subluxation of unsp interphaln joint of l rng fngr, sequela|Subluxation of unsp interphaln joint of l rng fngr, sequela +C2853158|T037|PT|S63.225S|ICD10CM|Subluxation of unspecified interphalangeal joint of left ring finger, sequela|Subluxation of unspecified interphalangeal joint of left ring finger, sequela +C2853159|T037|AB|S63.226|ICD10CM|Subluxation of unsp interphalangeal joint of r little finger|Subluxation of unsp interphalangeal joint of r little finger +C2853159|T037|HT|S63.226|ICD10CM|Subluxation of unspecified interphalangeal joint of right little finger|Subluxation of unspecified interphalangeal joint of right little finger +C2853160|T037|AB|S63.226A|ICD10CM|Sublux of unsp interphaln joint of r little finger, init|Sublux of unsp interphaln joint of r little finger, init +C2853160|T037|PT|S63.226A|ICD10CM|Subluxation of unspecified interphalangeal joint of right little finger, initial encounter|Subluxation of unspecified interphalangeal joint of right little finger, initial encounter +C2853161|T037|AB|S63.226D|ICD10CM|Sublux of unsp interphaln joint of r little finger, subs|Sublux of unsp interphaln joint of r little finger, subs +C2853161|T037|PT|S63.226D|ICD10CM|Subluxation of unspecified interphalangeal joint of right little finger, subsequent encounter|Subluxation of unspecified interphalangeal joint of right little finger, subsequent encounter +C2853162|T037|AB|S63.226S|ICD10CM|Sublux of unsp interphaln joint of r little finger, sequela|Sublux of unsp interphaln joint of r little finger, sequela +C2853162|T037|PT|S63.226S|ICD10CM|Subluxation of unspecified interphalangeal joint of right little finger, sequela|Subluxation of unspecified interphalangeal joint of right little finger, sequela +C2853163|T037|AB|S63.227|ICD10CM|Subluxation of unsp interphalangeal joint of l little finger|Subluxation of unsp interphalangeal joint of l little finger +C2853163|T037|HT|S63.227|ICD10CM|Subluxation of unspecified interphalangeal joint of left little finger|Subluxation of unspecified interphalangeal joint of left little finger +C2853164|T037|AB|S63.227A|ICD10CM|Sublux of unsp interphaln joint of l little finger, init|Sublux of unsp interphaln joint of l little finger, init +C2853164|T037|PT|S63.227A|ICD10CM|Subluxation of unspecified interphalangeal joint of left little finger, initial encounter|Subluxation of unspecified interphalangeal joint of left little finger, initial encounter +C2853165|T037|AB|S63.227D|ICD10CM|Sublux of unsp interphaln joint of l little finger, subs|Sublux of unsp interphaln joint of l little finger, subs +C2853165|T037|PT|S63.227D|ICD10CM|Subluxation of unspecified interphalangeal joint of left little finger, subsequent encounter|Subluxation of unspecified interphalangeal joint of left little finger, subsequent encounter +C2853166|T037|AB|S63.227S|ICD10CM|Sublux of unsp interphaln joint of l little finger, sequela|Sublux of unsp interphaln joint of l little finger, sequela +C2853166|T037|PT|S63.227S|ICD10CM|Subluxation of unspecified interphalangeal joint of left little finger, sequela|Subluxation of unspecified interphalangeal joint of left little finger, sequela +C2853168|T037|AB|S63.228|ICD10CM|Subluxation of unsp interphalangeal joint of other finger|Subluxation of unsp interphalangeal joint of other finger +C2853168|T037|HT|S63.228|ICD10CM|Subluxation of unspecified interphalangeal joint of other finger|Subluxation of unspecified interphalangeal joint of other finger +C2853167|T037|ET|S63.228|ICD10CM|Subluxation of unspecified interphalangeal joint of specified finger with unspecified laterality|Subluxation of unspecified interphalangeal joint of specified finger with unspecified laterality +C2853169|T037|AB|S63.228A|ICD10CM|Subluxation of unsp interphalangeal joint of finger, init|Subluxation of unsp interphalangeal joint of finger, init +C2853169|T037|PT|S63.228A|ICD10CM|Subluxation of unspecified interphalangeal joint of other finger, initial encounter|Subluxation of unspecified interphalangeal joint of other finger, initial encounter +C2853170|T037|AB|S63.228D|ICD10CM|Subluxation of unsp interphalangeal joint of finger, subs|Subluxation of unsp interphalangeal joint of finger, subs +C2853170|T037|PT|S63.228D|ICD10CM|Subluxation of unspecified interphalangeal joint of other finger, subsequent encounter|Subluxation of unspecified interphalangeal joint of other finger, subsequent encounter +C2853171|T037|AB|S63.228S|ICD10CM|Subluxation of unsp interphalangeal joint of finger, sequela|Subluxation of unsp interphalangeal joint of finger, sequela +C2853171|T037|PT|S63.228S|ICD10CM|Subluxation of unspecified interphalangeal joint of other finger, sequela|Subluxation of unspecified interphalangeal joint of other finger, sequela +C2853172|T037|AB|S63.229|ICD10CM|Subluxation of unsp interphalangeal joint of unsp finger|Subluxation of unsp interphalangeal joint of unsp finger +C2853172|T037|HT|S63.229|ICD10CM|Subluxation of unspecified interphalangeal joint of unspecified finger|Subluxation of unspecified interphalangeal joint of unspecified finger +C2853173|T037|AB|S63.229A|ICD10CM|Subluxation of unsp interphaln joint of unsp finger, init|Subluxation of unsp interphaln joint of unsp finger, init +C2853173|T037|PT|S63.229A|ICD10CM|Subluxation of unspecified interphalangeal joint of unspecified finger, initial encounter|Subluxation of unspecified interphalangeal joint of unspecified finger, initial encounter +C2853174|T037|AB|S63.229D|ICD10CM|Subluxation of unsp interphaln joint of unsp finger, subs|Subluxation of unsp interphaln joint of unsp finger, subs +C2853174|T037|PT|S63.229D|ICD10CM|Subluxation of unspecified interphalangeal joint of unspecified finger, subsequent encounter|Subluxation of unspecified interphalangeal joint of unspecified finger, subsequent encounter +C2853175|T037|AB|S63.229S|ICD10CM|Subluxation of unsp interphaln joint of unsp finger, sequela|Subluxation of unsp interphaln joint of unsp finger, sequela +C2853175|T037|PT|S63.229S|ICD10CM|Subluxation of unspecified interphalangeal joint of unspecified finger, sequela|Subluxation of unspecified interphalangeal joint of unspecified finger, sequela +C2853176|T037|AB|S63.23|ICD10CM|Subluxation of proximal interphalangeal joint of finger|Subluxation of proximal interphalangeal joint of finger +C2853176|T037|HT|S63.23|ICD10CM|Subluxation of proximal interphalangeal joint of finger|Subluxation of proximal interphalangeal joint of finger +C2853177|T037|AB|S63.230|ICD10CM|Subluxation of proximal interphalangeal joint of r idx fngr|Subluxation of proximal interphalangeal joint of r idx fngr +C2853177|T037|HT|S63.230|ICD10CM|Subluxation of proximal interphalangeal joint of right index finger|Subluxation of proximal interphalangeal joint of right index finger +C2853178|T037|PT|S63.230A|ICD10CM|Subluxation of proximal interphalangeal joint of right index finger, initial encounter|Subluxation of proximal interphalangeal joint of right index finger, initial encounter +C2853178|T037|AB|S63.230A|ICD10CM|Subluxation of proximal interphaln joint of r idx fngr, init|Subluxation of proximal interphaln joint of r idx fngr, init +C2853179|T037|PT|S63.230D|ICD10CM|Subluxation of proximal interphalangeal joint of right index finger, subsequent encounter|Subluxation of proximal interphalangeal joint of right index finger, subsequent encounter +C2853179|T037|AB|S63.230D|ICD10CM|Subluxation of proximal interphaln joint of r idx fngr, subs|Subluxation of proximal interphaln joint of r idx fngr, subs +C2853180|T037|AB|S63.230S|ICD10CM|Sublux of proximal interphaln joint of r idx fngr, sequela|Sublux of proximal interphaln joint of r idx fngr, sequela +C2853180|T037|PT|S63.230S|ICD10CM|Subluxation of proximal interphalangeal joint of right index finger, sequela|Subluxation of proximal interphalangeal joint of right index finger, sequela +C2853181|T037|AB|S63.231|ICD10CM|Subluxation of proximal interphalangeal joint of l idx fngr|Subluxation of proximal interphalangeal joint of l idx fngr +C2853181|T037|HT|S63.231|ICD10CM|Subluxation of proximal interphalangeal joint of left index finger|Subluxation of proximal interphalangeal joint of left index finger +C2853182|T037|PT|S63.231A|ICD10CM|Subluxation of proximal interphalangeal joint of left index finger, initial encounter|Subluxation of proximal interphalangeal joint of left index finger, initial encounter +C2853182|T037|AB|S63.231A|ICD10CM|Subluxation of proximal interphaln joint of l idx fngr, init|Subluxation of proximal interphaln joint of l idx fngr, init +C2853183|T037|PT|S63.231D|ICD10CM|Subluxation of proximal interphalangeal joint of left index finger, subsequent encounter|Subluxation of proximal interphalangeal joint of left index finger, subsequent encounter +C2853183|T037|AB|S63.231D|ICD10CM|Subluxation of proximal interphaln joint of l idx fngr, subs|Subluxation of proximal interphaln joint of l idx fngr, subs +C2853184|T037|AB|S63.231S|ICD10CM|Sublux of proximal interphaln joint of l idx fngr, sequela|Sublux of proximal interphaln joint of l idx fngr, sequela +C2853184|T037|PT|S63.231S|ICD10CM|Subluxation of proximal interphalangeal joint of left index finger, sequela|Subluxation of proximal interphalangeal joint of left index finger, sequela +C2853185|T037|HT|S63.232|ICD10CM|Subluxation of proximal interphalangeal joint of right middle finger|Subluxation of proximal interphalangeal joint of right middle finger +C2853185|T037|AB|S63.232|ICD10CM|Subluxation of proximal interphaln joint of r mid finger|Subluxation of proximal interphaln joint of r mid finger +C2853186|T037|AB|S63.232A|ICD10CM|Sublux of proximal interphaln joint of r mid finger, init|Sublux of proximal interphaln joint of r mid finger, init +C2853186|T037|PT|S63.232A|ICD10CM|Subluxation of proximal interphalangeal joint of right middle finger, initial encounter|Subluxation of proximal interphalangeal joint of right middle finger, initial encounter +C2853187|T037|AB|S63.232D|ICD10CM|Sublux of proximal interphaln joint of r mid finger, subs|Sublux of proximal interphaln joint of r mid finger, subs +C2853187|T037|PT|S63.232D|ICD10CM|Subluxation of proximal interphalangeal joint of right middle finger, subsequent encounter|Subluxation of proximal interphalangeal joint of right middle finger, subsequent encounter +C2853188|T037|AB|S63.232S|ICD10CM|Sublux of proximal interphaln joint of r mid finger, sequela|Sublux of proximal interphaln joint of r mid finger, sequela +C2853188|T037|PT|S63.232S|ICD10CM|Subluxation of proximal interphalangeal joint of right middle finger, sequela|Subluxation of proximal interphalangeal joint of right middle finger, sequela +C2853189|T037|HT|S63.233|ICD10CM|Subluxation of proximal interphalangeal joint of left middle finger|Subluxation of proximal interphalangeal joint of left middle finger +C2853189|T037|AB|S63.233|ICD10CM|Subluxation of proximal interphaln joint of l mid finger|Subluxation of proximal interphaln joint of l mid finger +C2853190|T037|AB|S63.233A|ICD10CM|Sublux of proximal interphaln joint of l mid finger, init|Sublux of proximal interphaln joint of l mid finger, init +C2853190|T037|PT|S63.233A|ICD10CM|Subluxation of proximal interphalangeal joint of left middle finger, initial encounter|Subluxation of proximal interphalangeal joint of left middle finger, initial encounter +C2853191|T037|AB|S63.233D|ICD10CM|Sublux of proximal interphaln joint of l mid finger, subs|Sublux of proximal interphaln joint of l mid finger, subs +C2853191|T037|PT|S63.233D|ICD10CM|Subluxation of proximal interphalangeal joint of left middle finger, subsequent encounter|Subluxation of proximal interphalangeal joint of left middle finger, subsequent encounter +C2853192|T037|AB|S63.233S|ICD10CM|Sublux of proximal interphaln joint of l mid finger, sequela|Sublux of proximal interphaln joint of l mid finger, sequela +C2853192|T037|PT|S63.233S|ICD10CM|Subluxation of proximal interphalangeal joint of left middle finger, sequela|Subluxation of proximal interphalangeal joint of left middle finger, sequela +C2853193|T037|AB|S63.234|ICD10CM|Subluxation of proximal interphalangeal joint of r rng fngr|Subluxation of proximal interphalangeal joint of r rng fngr +C2853193|T037|HT|S63.234|ICD10CM|Subluxation of proximal interphalangeal joint of right ring finger|Subluxation of proximal interphalangeal joint of right ring finger +C2853194|T037|PT|S63.234A|ICD10CM|Subluxation of proximal interphalangeal joint of right ring finger, initial encounter|Subluxation of proximal interphalangeal joint of right ring finger, initial encounter +C2853194|T037|AB|S63.234A|ICD10CM|Subluxation of proximal interphaln joint of r rng fngr, init|Subluxation of proximal interphaln joint of r rng fngr, init +C2853195|T037|PT|S63.234D|ICD10CM|Subluxation of proximal interphalangeal joint of right ring finger, subsequent encounter|Subluxation of proximal interphalangeal joint of right ring finger, subsequent encounter +C2853195|T037|AB|S63.234D|ICD10CM|Subluxation of proximal interphaln joint of r rng fngr, subs|Subluxation of proximal interphaln joint of r rng fngr, subs +C2853196|T037|AB|S63.234S|ICD10CM|Sublux of proximal interphaln joint of r rng fngr, sequela|Sublux of proximal interphaln joint of r rng fngr, sequela +C2853196|T037|PT|S63.234S|ICD10CM|Subluxation of proximal interphalangeal joint of right ring finger, sequela|Subluxation of proximal interphalangeal joint of right ring finger, sequela +C2853197|T037|AB|S63.235|ICD10CM|Subluxation of proximal interphalangeal joint of l rng fngr|Subluxation of proximal interphalangeal joint of l rng fngr +C2853197|T037|HT|S63.235|ICD10CM|Subluxation of proximal interphalangeal joint of left ring finger|Subluxation of proximal interphalangeal joint of left ring finger +C2853198|T037|PT|S63.235A|ICD10CM|Subluxation of proximal interphalangeal joint of left ring finger, initial encounter|Subluxation of proximal interphalangeal joint of left ring finger, initial encounter +C2853198|T037|AB|S63.235A|ICD10CM|Subluxation of proximal interphaln joint of l rng fngr, init|Subluxation of proximal interphaln joint of l rng fngr, init +C2853199|T037|PT|S63.235D|ICD10CM|Subluxation of proximal interphalangeal joint of left ring finger, subsequent encounter|Subluxation of proximal interphalangeal joint of left ring finger, subsequent encounter +C2853199|T037|AB|S63.235D|ICD10CM|Subluxation of proximal interphaln joint of l rng fngr, subs|Subluxation of proximal interphaln joint of l rng fngr, subs +C2853200|T037|AB|S63.235S|ICD10CM|Sublux of proximal interphaln joint of l rng fngr, sequela|Sublux of proximal interphaln joint of l rng fngr, sequela +C2853200|T037|PT|S63.235S|ICD10CM|Subluxation of proximal interphalangeal joint of left ring finger, sequela|Subluxation of proximal interphalangeal joint of left ring finger, sequela +C2853201|T037|HT|S63.236|ICD10CM|Subluxation of proximal interphalangeal joint of right little finger|Subluxation of proximal interphalangeal joint of right little finger +C2853201|T037|AB|S63.236|ICD10CM|Subluxation of proximal interphaln joint of r little finger|Subluxation of proximal interphaln joint of r little finger +C2853202|T037|AB|S63.236A|ICD10CM|Sublux of proximal interphaln joint of r little finger, init|Sublux of proximal interphaln joint of r little finger, init +C2853202|T037|PT|S63.236A|ICD10CM|Subluxation of proximal interphalangeal joint of right little finger, initial encounter|Subluxation of proximal interphalangeal joint of right little finger, initial encounter +C2853203|T037|AB|S63.236D|ICD10CM|Sublux of proximal interphaln joint of r little finger, subs|Sublux of proximal interphaln joint of r little finger, subs +C2853203|T037|PT|S63.236D|ICD10CM|Subluxation of proximal interphalangeal joint of right little finger, subsequent encounter|Subluxation of proximal interphalangeal joint of right little finger, subsequent encounter +C2853204|T037|AB|S63.236S|ICD10CM|Sublux of prox interphaln joint of r little finger, sequela|Sublux of prox interphaln joint of r little finger, sequela +C2853204|T037|PT|S63.236S|ICD10CM|Subluxation of proximal interphalangeal joint of right little finger, sequela|Subluxation of proximal interphalangeal joint of right little finger, sequela +C2853205|T037|HT|S63.237|ICD10CM|Subluxation of proximal interphalangeal joint of left little finger|Subluxation of proximal interphalangeal joint of left little finger +C2853205|T037|AB|S63.237|ICD10CM|Subluxation of proximal interphaln joint of l little finger|Subluxation of proximal interphaln joint of l little finger +C2853206|T037|AB|S63.237A|ICD10CM|Sublux of proximal interphaln joint of l little finger, init|Sublux of proximal interphaln joint of l little finger, init +C2853206|T037|PT|S63.237A|ICD10CM|Subluxation of proximal interphalangeal joint of left little finger, initial encounter|Subluxation of proximal interphalangeal joint of left little finger, initial encounter +C2853207|T037|AB|S63.237D|ICD10CM|Sublux of proximal interphaln joint of l little finger, subs|Sublux of proximal interphaln joint of l little finger, subs +C2853207|T037|PT|S63.237D|ICD10CM|Subluxation of proximal interphalangeal joint of left little finger, subsequent encounter|Subluxation of proximal interphalangeal joint of left little finger, subsequent encounter +C2853208|T037|AB|S63.237S|ICD10CM|Sublux of prox interphaln joint of l little finger, sequela|Sublux of prox interphaln joint of l little finger, sequela +C2853208|T037|PT|S63.237S|ICD10CM|Subluxation of proximal interphalangeal joint of left little finger, sequela|Subluxation of proximal interphalangeal joint of left little finger, sequela +C2853210|T037|AB|S63.238|ICD10CM|Subluxation of proximal interphalangeal joint of oth finger|Subluxation of proximal interphalangeal joint of oth finger +C2853210|T037|HT|S63.238|ICD10CM|Subluxation of proximal interphalangeal joint of other finger|Subluxation of proximal interphalangeal joint of other finger +C2853209|T037|ET|S63.238|ICD10CM|Subluxation of proximal interphalangeal joint of specified finger with unspecified laterality|Subluxation of proximal interphalangeal joint of specified finger with unspecified laterality +C2853211|T037|PT|S63.238A|ICD10CM|Subluxation of proximal interphalangeal joint of other finger, initial encounter|Subluxation of proximal interphalangeal joint of other finger, initial encounter +C2853211|T037|AB|S63.238A|ICD10CM|Subluxation of proximal interphaln joint of finger, init|Subluxation of proximal interphaln joint of finger, init +C2853212|T037|PT|S63.238D|ICD10CM|Subluxation of proximal interphalangeal joint of other finger, subsequent encounter|Subluxation of proximal interphalangeal joint of other finger, subsequent encounter +C2853212|T037|AB|S63.238D|ICD10CM|Subluxation of proximal interphaln joint of finger, subs|Subluxation of proximal interphaln joint of finger, subs +C2853213|T037|PT|S63.238S|ICD10CM|Subluxation of proximal interphalangeal joint of other finger, sequela|Subluxation of proximal interphalangeal joint of other finger, sequela +C2853213|T037|AB|S63.238S|ICD10CM|Subluxation of proximal interphaln joint of finger, sequela|Subluxation of proximal interphaln joint of finger, sequela +C2853214|T037|AB|S63.239|ICD10CM|Subluxation of proximal interphalangeal joint of unsp finger|Subluxation of proximal interphalangeal joint of unsp finger +C2853214|T037|HT|S63.239|ICD10CM|Subluxation of proximal interphalangeal joint of unspecified finger|Subluxation of proximal interphalangeal joint of unspecified finger +C2853215|T037|AB|S63.239A|ICD10CM|Sublux of proximal interphaln joint of unsp finger, init|Sublux of proximal interphaln joint of unsp finger, init +C2853215|T037|PT|S63.239A|ICD10CM|Subluxation of proximal interphalangeal joint of unspecified finger, initial encounter|Subluxation of proximal interphalangeal joint of unspecified finger, initial encounter +C2853216|T037|AB|S63.239D|ICD10CM|Sublux of proximal interphaln joint of unsp finger, subs|Sublux of proximal interphaln joint of unsp finger, subs +C2853216|T037|PT|S63.239D|ICD10CM|Subluxation of proximal interphalangeal joint of unspecified finger, subsequent encounter|Subluxation of proximal interphalangeal joint of unspecified finger, subsequent encounter +C2853217|T037|AB|S63.239S|ICD10CM|Sublux of proximal interphaln joint of unsp finger, sequela|Sublux of proximal interphaln joint of unsp finger, sequela +C2853217|T037|PT|S63.239S|ICD10CM|Subluxation of proximal interphalangeal joint of unspecified finger, sequela|Subluxation of proximal interphalangeal joint of unspecified finger, sequela +C2853218|T037|AB|S63.24|ICD10CM|Subluxation of distal interphalangeal joint of finger|Subluxation of distal interphalangeal joint of finger +C2853218|T037|HT|S63.24|ICD10CM|Subluxation of distal interphalangeal joint of finger|Subluxation of distal interphalangeal joint of finger +C2853219|T037|AB|S63.240|ICD10CM|Subluxation of distal interphalangeal joint of r idx fngr|Subluxation of distal interphalangeal joint of r idx fngr +C2853219|T037|HT|S63.240|ICD10CM|Subluxation of distal interphalangeal joint of right index finger|Subluxation of distal interphalangeal joint of right index finger +C2853220|T037|PT|S63.240A|ICD10CM|Subluxation of distal interphalangeal joint of right index finger, initial encounter|Subluxation of distal interphalangeal joint of right index finger, initial encounter +C2853220|T037|AB|S63.240A|ICD10CM|Subluxation of distal interphaln joint of r idx fngr, init|Subluxation of distal interphaln joint of r idx fngr, init +C2853221|T037|PT|S63.240D|ICD10CM|Subluxation of distal interphalangeal joint of right index finger, subsequent encounter|Subluxation of distal interphalangeal joint of right index finger, subsequent encounter +C2853221|T037|AB|S63.240D|ICD10CM|Subluxation of distal interphaln joint of r idx fngr, subs|Subluxation of distal interphaln joint of r idx fngr, subs +C2853222|T037|AB|S63.240S|ICD10CM|Sublux of distal interphaln joint of r idx fngr, sequela|Sublux of distal interphaln joint of r idx fngr, sequela +C2853222|T037|PT|S63.240S|ICD10CM|Subluxation of distal interphalangeal joint of right index finger, sequela|Subluxation of distal interphalangeal joint of right index finger, sequela +C2853223|T037|AB|S63.241|ICD10CM|Subluxation of distal interphalangeal joint of l idx fngr|Subluxation of distal interphalangeal joint of l idx fngr +C2853223|T037|HT|S63.241|ICD10CM|Subluxation of distal interphalangeal joint of left index finger|Subluxation of distal interphalangeal joint of left index finger +C2853224|T037|PT|S63.241A|ICD10CM|Subluxation of distal interphalangeal joint of left index finger, initial encounter|Subluxation of distal interphalangeal joint of left index finger, initial encounter +C2853224|T037|AB|S63.241A|ICD10CM|Subluxation of distal interphaln joint of l idx fngr, init|Subluxation of distal interphaln joint of l idx fngr, init +C2853225|T037|PT|S63.241D|ICD10CM|Subluxation of distal interphalangeal joint of left index finger, subsequent encounter|Subluxation of distal interphalangeal joint of left index finger, subsequent encounter +C2853225|T037|AB|S63.241D|ICD10CM|Subluxation of distal interphaln joint of l idx fngr, subs|Subluxation of distal interphaln joint of l idx fngr, subs +C2853226|T037|AB|S63.241S|ICD10CM|Sublux of distal interphaln joint of l idx fngr, sequela|Sublux of distal interphaln joint of l idx fngr, sequela +C2853226|T037|PT|S63.241S|ICD10CM|Subluxation of distal interphalangeal joint of left index finger, sequela|Subluxation of distal interphalangeal joint of left index finger, sequela +C2853227|T037|AB|S63.242|ICD10CM|Subluxation of distal interphalangeal joint of r mid finger|Subluxation of distal interphalangeal joint of r mid finger +C2853227|T037|HT|S63.242|ICD10CM|Subluxation of distal interphalangeal joint of right middle finger|Subluxation of distal interphalangeal joint of right middle finger +C2853228|T037|PT|S63.242A|ICD10CM|Subluxation of distal interphalangeal joint of right middle finger, initial encounter|Subluxation of distal interphalangeal joint of right middle finger, initial encounter +C2853228|T037|AB|S63.242A|ICD10CM|Subluxation of distal interphaln joint of r mid finger, init|Subluxation of distal interphaln joint of r mid finger, init +C2853229|T037|PT|S63.242D|ICD10CM|Subluxation of distal interphalangeal joint of right middle finger, subsequent encounter|Subluxation of distal interphalangeal joint of right middle finger, subsequent encounter +C2853229|T037|AB|S63.242D|ICD10CM|Subluxation of distal interphaln joint of r mid finger, subs|Subluxation of distal interphaln joint of r mid finger, subs +C2853230|T037|AB|S63.242S|ICD10CM|Sublux of distal interphaln joint of r mid finger, sequela|Sublux of distal interphaln joint of r mid finger, sequela +C2853230|T037|PT|S63.242S|ICD10CM|Subluxation of distal interphalangeal joint of right middle finger, sequela|Subluxation of distal interphalangeal joint of right middle finger, sequela +C2853231|T037|AB|S63.243|ICD10CM|Subluxation of distal interphalangeal joint of l mid finger|Subluxation of distal interphalangeal joint of l mid finger +C2853231|T037|HT|S63.243|ICD10CM|Subluxation of distal interphalangeal joint of left middle finger|Subluxation of distal interphalangeal joint of left middle finger +C2853232|T037|PT|S63.243A|ICD10CM|Subluxation of distal interphalangeal joint of left middle finger, initial encounter|Subluxation of distal interphalangeal joint of left middle finger, initial encounter +C2853232|T037|AB|S63.243A|ICD10CM|Subluxation of distal interphaln joint of l mid finger, init|Subluxation of distal interphaln joint of l mid finger, init +C2853233|T037|PT|S63.243D|ICD10CM|Subluxation of distal interphalangeal joint of left middle finger, subsequent encounter|Subluxation of distal interphalangeal joint of left middle finger, subsequent encounter +C2853233|T037|AB|S63.243D|ICD10CM|Subluxation of distal interphaln joint of l mid finger, subs|Subluxation of distal interphaln joint of l mid finger, subs +C2853234|T037|AB|S63.243S|ICD10CM|Sublux of distal interphaln joint of l mid finger, sequela|Sublux of distal interphaln joint of l mid finger, sequela +C2853234|T037|PT|S63.243S|ICD10CM|Subluxation of distal interphalangeal joint of left middle finger, sequela|Subluxation of distal interphalangeal joint of left middle finger, sequela +C2853235|T037|AB|S63.244|ICD10CM|Subluxation of distal interphalangeal joint of r rng fngr|Subluxation of distal interphalangeal joint of r rng fngr +C2853235|T037|HT|S63.244|ICD10CM|Subluxation of distal interphalangeal joint of right ring finger|Subluxation of distal interphalangeal joint of right ring finger +C2853236|T037|PT|S63.244A|ICD10CM|Subluxation of distal interphalangeal joint of right ring finger, initial encounter|Subluxation of distal interphalangeal joint of right ring finger, initial encounter +C2853236|T037|AB|S63.244A|ICD10CM|Subluxation of distal interphaln joint of r rng fngr, init|Subluxation of distal interphaln joint of r rng fngr, init +C2853237|T037|PT|S63.244D|ICD10CM|Subluxation of distal interphalangeal joint of right ring finger, subsequent encounter|Subluxation of distal interphalangeal joint of right ring finger, subsequent encounter +C2853237|T037|AB|S63.244D|ICD10CM|Subluxation of distal interphaln joint of r rng fngr, subs|Subluxation of distal interphaln joint of r rng fngr, subs +C2853238|T037|AB|S63.244S|ICD10CM|Sublux of distal interphaln joint of r rng fngr, sequela|Sublux of distal interphaln joint of r rng fngr, sequela +C2853238|T037|PT|S63.244S|ICD10CM|Subluxation of distal interphalangeal joint of right ring finger, sequela|Subluxation of distal interphalangeal joint of right ring finger, sequela +C2853239|T037|AB|S63.245|ICD10CM|Subluxation of distal interphalangeal joint of l rng fngr|Subluxation of distal interphalangeal joint of l rng fngr +C2853239|T037|HT|S63.245|ICD10CM|Subluxation of distal interphalangeal joint of left ring finger|Subluxation of distal interphalangeal joint of left ring finger +C2853240|T037|PT|S63.245A|ICD10CM|Subluxation of distal interphalangeal joint of left ring finger, initial encounter|Subluxation of distal interphalangeal joint of left ring finger, initial encounter +C2853240|T037|AB|S63.245A|ICD10CM|Subluxation of distal interphaln joint of l rng fngr, init|Subluxation of distal interphaln joint of l rng fngr, init +C2853241|T037|PT|S63.245D|ICD10CM|Subluxation of distal interphalangeal joint of left ring finger, subsequent encounter|Subluxation of distal interphalangeal joint of left ring finger, subsequent encounter +C2853241|T037|AB|S63.245D|ICD10CM|Subluxation of distal interphaln joint of l rng fngr, subs|Subluxation of distal interphaln joint of l rng fngr, subs +C2853242|T037|AB|S63.245S|ICD10CM|Sublux of distal interphaln joint of l rng fngr, sequela|Sublux of distal interphaln joint of l rng fngr, sequela +C2853242|T037|PT|S63.245S|ICD10CM|Subluxation of distal interphalangeal joint of left ring finger, sequela|Subluxation of distal interphalangeal joint of left ring finger, sequela +C2853243|T037|HT|S63.246|ICD10CM|Subluxation of distal interphalangeal joint of right little finger|Subluxation of distal interphalangeal joint of right little finger +C2853243|T037|AB|S63.246|ICD10CM|Subluxation of distal interphaln joint of r little finger|Subluxation of distal interphaln joint of r little finger +C2853244|T037|AB|S63.246A|ICD10CM|Sublux of distal interphaln joint of r little finger, init|Sublux of distal interphaln joint of r little finger, init +C2853244|T037|PT|S63.246A|ICD10CM|Subluxation of distal interphalangeal joint of right little finger, initial encounter|Subluxation of distal interphalangeal joint of right little finger, initial encounter +C2853245|T037|AB|S63.246D|ICD10CM|Sublux of distal interphaln joint of r little finger, subs|Sublux of distal interphaln joint of r little finger, subs +C2853245|T037|PT|S63.246D|ICD10CM|Subluxation of distal interphalangeal joint of right little finger, subsequent encounter|Subluxation of distal interphalangeal joint of right little finger, subsequent encounter +C2853246|T037|AB|S63.246S|ICD10CM|Sublux of distal interphaln joint of r little finger, sqla|Sublux of distal interphaln joint of r little finger, sqla +C2853246|T037|PT|S63.246S|ICD10CM|Subluxation of distal interphalangeal joint of right little finger, sequela|Subluxation of distal interphalangeal joint of right little finger, sequela +C2853247|T037|HT|S63.247|ICD10CM|Subluxation of distal interphalangeal joint of left little finger|Subluxation of distal interphalangeal joint of left little finger +C2853247|T037|AB|S63.247|ICD10CM|Subluxation of distal interphaln joint of l little finger|Subluxation of distal interphaln joint of l little finger +C2853248|T037|AB|S63.247A|ICD10CM|Sublux of distal interphaln joint of l little finger, init|Sublux of distal interphaln joint of l little finger, init +C2853248|T037|PT|S63.247A|ICD10CM|Subluxation of distal interphalangeal joint of left little finger, initial encounter|Subluxation of distal interphalangeal joint of left little finger, initial encounter +C2853249|T037|AB|S63.247D|ICD10CM|Sublux of distal interphaln joint of l little finger, subs|Sublux of distal interphaln joint of l little finger, subs +C2853249|T037|PT|S63.247D|ICD10CM|Subluxation of distal interphalangeal joint of left little finger, subsequent encounter|Subluxation of distal interphalangeal joint of left little finger, subsequent encounter +C2853250|T037|AB|S63.247S|ICD10CM|Sublux of distal interphaln joint of l little finger, sqla|Sublux of distal interphaln joint of l little finger, sqla +C2853250|T037|PT|S63.247S|ICD10CM|Subluxation of distal interphalangeal joint of left little finger, sequela|Subluxation of distal interphalangeal joint of left little finger, sequela +C2853252|T037|AB|S63.248|ICD10CM|Subluxation of distal interphalangeal joint of other finger|Subluxation of distal interphalangeal joint of other finger +C2853252|T037|HT|S63.248|ICD10CM|Subluxation of distal interphalangeal joint of other finger|Subluxation of distal interphalangeal joint of other finger +C2853251|T037|ET|S63.248|ICD10CM|Subluxation of distal interphalangeal joint of specified finger with unspecified laterality|Subluxation of distal interphalangeal joint of specified finger with unspecified laterality +C2853253|T037|AB|S63.248A|ICD10CM|Subluxation of distal interphalangeal joint of finger, init|Subluxation of distal interphalangeal joint of finger, init +C2853253|T037|PT|S63.248A|ICD10CM|Subluxation of distal interphalangeal joint of other finger, initial encounter|Subluxation of distal interphalangeal joint of other finger, initial encounter +C2853254|T037|AB|S63.248D|ICD10CM|Subluxation of distal interphalangeal joint of finger, subs|Subluxation of distal interphalangeal joint of finger, subs +C2853254|T037|PT|S63.248D|ICD10CM|Subluxation of distal interphalangeal joint of other finger, subsequent encounter|Subluxation of distal interphalangeal joint of other finger, subsequent encounter +C2853255|T037|PT|S63.248S|ICD10CM|Subluxation of distal interphalangeal joint of other finger, sequela|Subluxation of distal interphalangeal joint of other finger, sequela +C2853255|T037|AB|S63.248S|ICD10CM|Subluxation of distal interphaln joint of finger, sequela|Subluxation of distal interphaln joint of finger, sequela +C2853256|T037|AB|S63.249|ICD10CM|Subluxation of distal interphalangeal joint of unsp finger|Subluxation of distal interphalangeal joint of unsp finger +C2853256|T037|HT|S63.249|ICD10CM|Subluxation of distal interphalangeal joint of unspecified finger|Subluxation of distal interphalangeal joint of unspecified finger +C2853257|T037|PT|S63.249A|ICD10CM|Subluxation of distal interphalangeal joint of unspecified finger, initial encounter|Subluxation of distal interphalangeal joint of unspecified finger, initial encounter +C2853257|T037|AB|S63.249A|ICD10CM|Subluxation of distal interphaln joint of unsp finger, init|Subluxation of distal interphaln joint of unsp finger, init +C2853258|T037|PT|S63.249D|ICD10CM|Subluxation of distal interphalangeal joint of unspecified finger, subsequent encounter|Subluxation of distal interphalangeal joint of unspecified finger, subsequent encounter +C2853258|T037|AB|S63.249D|ICD10CM|Subluxation of distal interphaln joint of unsp finger, subs|Subluxation of distal interphaln joint of unsp finger, subs +C2853259|T037|AB|S63.249S|ICD10CM|Sublux of distal interphaln joint of unsp finger, sequela|Sublux of distal interphaln joint of unsp finger, sequela +C2853259|T037|PT|S63.249S|ICD10CM|Subluxation of distal interphalangeal joint of unspecified finger, sequela|Subluxation of distal interphalangeal joint of unspecified finger, sequela +C2853260|T037|AB|S63.25|ICD10CM|Unspecified dislocation of other finger|Unspecified dislocation of other finger +C2853260|T037|HT|S63.25|ICD10CM|Unspecified dislocation of other finger|Unspecified dislocation of other finger +C2853261|T037|AB|S63.250|ICD10CM|Unspecified dislocation of right index finger|Unspecified dislocation of right index finger +C2853261|T037|HT|S63.250|ICD10CM|Unspecified dislocation of right index finger|Unspecified dislocation of right index finger +C2853262|T037|AB|S63.250A|ICD10CM|Unspecified dislocation of right index finger, init encntr|Unspecified dislocation of right index finger, init encntr +C2853262|T037|PT|S63.250A|ICD10CM|Unspecified dislocation of right index finger, initial encounter|Unspecified dislocation of right index finger, initial encounter +C2853263|T037|AB|S63.250D|ICD10CM|Unspecified dislocation of right index finger, subs encntr|Unspecified dislocation of right index finger, subs encntr +C2853263|T037|PT|S63.250D|ICD10CM|Unspecified dislocation of right index finger, subsequent encounter|Unspecified dislocation of right index finger, subsequent encounter +C2853264|T037|AB|S63.250S|ICD10CM|Unspecified dislocation of right index finger, sequela|Unspecified dislocation of right index finger, sequela +C2853264|T037|PT|S63.250S|ICD10CM|Unspecified dislocation of right index finger, sequela|Unspecified dislocation of right index finger, sequela +C2853265|T037|AB|S63.251|ICD10CM|Unspecified dislocation of left index finger|Unspecified dislocation of left index finger +C2853265|T037|HT|S63.251|ICD10CM|Unspecified dislocation of left index finger|Unspecified dislocation of left index finger +C2853266|T037|AB|S63.251A|ICD10CM|Unspecified dislocation of left index finger, init encntr|Unspecified dislocation of left index finger, init encntr +C2853266|T037|PT|S63.251A|ICD10CM|Unspecified dislocation of left index finger, initial encounter|Unspecified dislocation of left index finger, initial encounter +C2853267|T037|AB|S63.251D|ICD10CM|Unspecified dislocation of left index finger, subs encntr|Unspecified dislocation of left index finger, subs encntr +C2853267|T037|PT|S63.251D|ICD10CM|Unspecified dislocation of left index finger, subsequent encounter|Unspecified dislocation of left index finger, subsequent encounter +C2853268|T037|AB|S63.251S|ICD10CM|Unspecified dislocation of left index finger, sequela|Unspecified dislocation of left index finger, sequela +C2853268|T037|PT|S63.251S|ICD10CM|Unspecified dislocation of left index finger, sequela|Unspecified dislocation of left index finger, sequela +C2853269|T037|AB|S63.252|ICD10CM|Unspecified dislocation of right middle finger|Unspecified dislocation of right middle finger +C2853269|T037|HT|S63.252|ICD10CM|Unspecified dislocation of right middle finger|Unspecified dislocation of right middle finger +C2853270|T037|AB|S63.252A|ICD10CM|Unspecified dislocation of right middle finger, init encntr|Unspecified dislocation of right middle finger, init encntr +C2853270|T037|PT|S63.252A|ICD10CM|Unspecified dislocation of right middle finger, initial encounter|Unspecified dislocation of right middle finger, initial encounter +C2853271|T037|AB|S63.252D|ICD10CM|Unspecified dislocation of right middle finger, subs encntr|Unspecified dislocation of right middle finger, subs encntr +C2853271|T037|PT|S63.252D|ICD10CM|Unspecified dislocation of right middle finger, subsequent encounter|Unspecified dislocation of right middle finger, subsequent encounter +C2853272|T037|AB|S63.252S|ICD10CM|Unspecified dislocation of right middle finger, sequela|Unspecified dislocation of right middle finger, sequela +C2853272|T037|PT|S63.252S|ICD10CM|Unspecified dislocation of right middle finger, sequela|Unspecified dislocation of right middle finger, sequela +C2853273|T037|AB|S63.253|ICD10CM|Unspecified dislocation of left middle finger|Unspecified dislocation of left middle finger +C2853273|T037|HT|S63.253|ICD10CM|Unspecified dislocation of left middle finger|Unspecified dislocation of left middle finger +C2853274|T037|AB|S63.253A|ICD10CM|Unspecified dislocation of left middle finger, init encntr|Unspecified dislocation of left middle finger, init encntr +C2853274|T037|PT|S63.253A|ICD10CM|Unspecified dislocation of left middle finger, initial encounter|Unspecified dislocation of left middle finger, initial encounter +C2853275|T037|AB|S63.253D|ICD10CM|Unspecified dislocation of left middle finger, subs encntr|Unspecified dislocation of left middle finger, subs encntr +C2853275|T037|PT|S63.253D|ICD10CM|Unspecified dislocation of left middle finger, subsequent encounter|Unspecified dislocation of left middle finger, subsequent encounter +C2853276|T037|AB|S63.253S|ICD10CM|Unspecified dislocation of left middle finger, sequela|Unspecified dislocation of left middle finger, sequela +C2853276|T037|PT|S63.253S|ICD10CM|Unspecified dislocation of left middle finger, sequela|Unspecified dislocation of left middle finger, sequela +C2853277|T037|AB|S63.254|ICD10CM|Unspecified dislocation of right ring finger|Unspecified dislocation of right ring finger +C2853277|T037|HT|S63.254|ICD10CM|Unspecified dislocation of right ring finger|Unspecified dislocation of right ring finger +C2853278|T037|AB|S63.254A|ICD10CM|Unspecified dislocation of right ring finger, init encntr|Unspecified dislocation of right ring finger, init encntr +C2853278|T037|PT|S63.254A|ICD10CM|Unspecified dislocation of right ring finger, initial encounter|Unspecified dislocation of right ring finger, initial encounter +C2853279|T037|AB|S63.254D|ICD10CM|Unspecified dislocation of right ring finger, subs encntr|Unspecified dislocation of right ring finger, subs encntr +C2853279|T037|PT|S63.254D|ICD10CM|Unspecified dislocation of right ring finger, subsequent encounter|Unspecified dislocation of right ring finger, subsequent encounter +C2853280|T037|AB|S63.254S|ICD10CM|Unspecified dislocation of right ring finger, sequela|Unspecified dislocation of right ring finger, sequela +C2853280|T037|PT|S63.254S|ICD10CM|Unspecified dislocation of right ring finger, sequela|Unspecified dislocation of right ring finger, sequela +C2853281|T037|AB|S63.255|ICD10CM|Unspecified dislocation of left ring finger|Unspecified dislocation of left ring finger +C2853281|T037|HT|S63.255|ICD10CM|Unspecified dislocation of left ring finger|Unspecified dislocation of left ring finger +C2853282|T037|AB|S63.255A|ICD10CM|Unspecified dislocation of left ring finger, init encntr|Unspecified dislocation of left ring finger, init encntr +C2853282|T037|PT|S63.255A|ICD10CM|Unspecified dislocation of left ring finger, initial encounter|Unspecified dislocation of left ring finger, initial encounter +C2853283|T037|AB|S63.255D|ICD10CM|Unspecified dislocation of left ring finger, subs encntr|Unspecified dislocation of left ring finger, subs encntr +C2853283|T037|PT|S63.255D|ICD10CM|Unspecified dislocation of left ring finger, subsequent encounter|Unspecified dislocation of left ring finger, subsequent encounter +C2853284|T037|AB|S63.255S|ICD10CM|Unspecified dislocation of left ring finger, sequela|Unspecified dislocation of left ring finger, sequela +C2853284|T037|PT|S63.255S|ICD10CM|Unspecified dislocation of left ring finger, sequela|Unspecified dislocation of left ring finger, sequela +C2853285|T037|AB|S63.256|ICD10CM|Unspecified dislocation of right little finger|Unspecified dislocation of right little finger +C2853285|T037|HT|S63.256|ICD10CM|Unspecified dislocation of right little finger|Unspecified dislocation of right little finger +C2853286|T037|AB|S63.256A|ICD10CM|Unspecified dislocation of right little finger, init encntr|Unspecified dislocation of right little finger, init encntr +C2853286|T037|PT|S63.256A|ICD10CM|Unspecified dislocation of right little finger, initial encounter|Unspecified dislocation of right little finger, initial encounter +C2853287|T037|AB|S63.256D|ICD10CM|Unspecified dislocation of right little finger, subs encntr|Unspecified dislocation of right little finger, subs encntr +C2853287|T037|PT|S63.256D|ICD10CM|Unspecified dislocation of right little finger, subsequent encounter|Unspecified dislocation of right little finger, subsequent encounter +C2853288|T037|AB|S63.256S|ICD10CM|Unspecified dislocation of right little finger, sequela|Unspecified dislocation of right little finger, sequela +C2853288|T037|PT|S63.256S|ICD10CM|Unspecified dislocation of right little finger, sequela|Unspecified dislocation of right little finger, sequela +C2853289|T037|AB|S63.257|ICD10CM|Unspecified dislocation of left little finger|Unspecified dislocation of left little finger +C2853289|T037|HT|S63.257|ICD10CM|Unspecified dislocation of left little finger|Unspecified dislocation of left little finger +C2853290|T037|AB|S63.257A|ICD10CM|Unspecified dislocation of left little finger, init encntr|Unspecified dislocation of left little finger, init encntr +C2853290|T037|PT|S63.257A|ICD10CM|Unspecified dislocation of left little finger, initial encounter|Unspecified dislocation of left little finger, initial encounter +C2853291|T037|AB|S63.257D|ICD10CM|Unspecified dislocation of left little finger, subs encntr|Unspecified dislocation of left little finger, subs encntr +C2853291|T037|PT|S63.257D|ICD10CM|Unspecified dislocation of left little finger, subsequent encounter|Unspecified dislocation of left little finger, subsequent encounter +C2853292|T037|AB|S63.257S|ICD10CM|Unspecified dislocation of left little finger, sequela|Unspecified dislocation of left little finger, sequela +C2853292|T037|PT|S63.257S|ICD10CM|Unspecified dislocation of left little finger, sequela|Unspecified dislocation of left little finger, sequela +C2853260|T037|HT|S63.258|ICD10CM|Unspecified dislocation of other finger|Unspecified dislocation of other finger +C2853260|T037|AB|S63.258|ICD10CM|Unspecified dislocation of other finger|Unspecified dislocation of other finger +C2853296|T037|ET|S63.258|ICD10CM|Unspecified dislocation of specified finger with unspecified laterality|Unspecified dislocation of specified finger with unspecified laterality +C2853293|T037|AB|S63.258A|ICD10CM|Unspecified dislocation of other finger, initial encounter|Unspecified dislocation of other finger, initial encounter +C2853293|T037|PT|S63.258A|ICD10CM|Unspecified dislocation of other finger, initial encounter|Unspecified dislocation of other finger, initial encounter +C2853294|T037|AB|S63.258D|ICD10CM|Unspecified dislocation of other finger, subs encntr|Unspecified dislocation of other finger, subs encntr +C2853294|T037|PT|S63.258D|ICD10CM|Unspecified dislocation of other finger, subsequent encounter|Unspecified dislocation of other finger, subsequent encounter +C2853295|T037|AB|S63.258S|ICD10CM|Unspecified dislocation of other finger, sequela|Unspecified dislocation of other finger, sequela +C2853295|T037|PT|S63.258S|ICD10CM|Unspecified dislocation of other finger, sequela|Unspecified dislocation of other finger, sequela +C2853297|T037|AB|S63.259|ICD10CM|Unspecified dislocation of unspecified finger|Unspecified dislocation of unspecified finger +C2853297|T037|HT|S63.259|ICD10CM|Unspecified dislocation of unspecified finger|Unspecified dislocation of unspecified finger +C4509454|T037|ET|S63.259|ICD10CM|Unspecified dislocation of unspecified finger with unspecified laterality|Unspecified dislocation of unspecified finger with unspecified laterality +C2853298|T037|AB|S63.259A|ICD10CM|Unspecified dislocation of unspecified finger, init encntr|Unspecified dislocation of unspecified finger, init encntr +C2853298|T037|PT|S63.259A|ICD10CM|Unspecified dislocation of unspecified finger, initial encounter|Unspecified dislocation of unspecified finger, initial encounter +C2853299|T037|AB|S63.259D|ICD10CM|Unspecified dislocation of unspecified finger, subs encntr|Unspecified dislocation of unspecified finger, subs encntr +C2853299|T037|PT|S63.259D|ICD10CM|Unspecified dislocation of unspecified finger, subsequent encounter|Unspecified dislocation of unspecified finger, subsequent encounter +C2853300|T037|AB|S63.259S|ICD10CM|Unspecified dislocation of unspecified finger, sequela|Unspecified dislocation of unspecified finger, sequela +C2853300|T037|PT|S63.259S|ICD10CM|Unspecified dislocation of unspecified finger, sequela|Unspecified dislocation of unspecified finger, sequela +C0730221|T037|AB|S63.26|ICD10CM|Dislocation of metacarpophalangeal joint of finger|Dislocation of metacarpophalangeal joint of finger +C0730221|T037|HT|S63.26|ICD10CM|Dislocation of metacarpophalangeal joint of finger|Dislocation of metacarpophalangeal joint of finger +C2853302|T037|AB|S63.260|ICD10CM|Dislocation of MCP joint of right index finger|Dislocation of MCP joint of right index finger +C2853302|T037|HT|S63.260|ICD10CM|Dislocation of metacarpophalangeal joint of right index finger|Dislocation of metacarpophalangeal joint of right index finger +C2853303|T037|AB|S63.260A|ICD10CM|Dislocation of MCP joint of right index finger, init|Dislocation of MCP joint of right index finger, init +C2853303|T037|PT|S63.260A|ICD10CM|Dislocation of metacarpophalangeal joint of right index finger, initial encounter|Dislocation of metacarpophalangeal joint of right index finger, initial encounter +C2853304|T037|AB|S63.260D|ICD10CM|Dislocation of MCP joint of right index finger, subs|Dislocation of MCP joint of right index finger, subs +C2853304|T037|PT|S63.260D|ICD10CM|Dislocation of metacarpophalangeal joint of right index finger, subsequent encounter|Dislocation of metacarpophalangeal joint of right index finger, subsequent encounter +C2853305|T037|AB|S63.260S|ICD10CM|Dislocation of MCP joint of right index finger, sequela|Dislocation of MCP joint of right index finger, sequela +C2853305|T037|PT|S63.260S|ICD10CM|Dislocation of metacarpophalangeal joint of right index finger, sequela|Dislocation of metacarpophalangeal joint of right index finger, sequela +C2853306|T037|AB|S63.261|ICD10CM|Dislocation of MCP joint of left index finger|Dislocation of MCP joint of left index finger +C2853306|T037|HT|S63.261|ICD10CM|Dislocation of metacarpophalangeal joint of left index finger|Dislocation of metacarpophalangeal joint of left index finger +C2853307|T037|AB|S63.261A|ICD10CM|Dislocation of MCP joint of left index finger, init|Dislocation of MCP joint of left index finger, init +C2853307|T037|PT|S63.261A|ICD10CM|Dislocation of metacarpophalangeal joint of left index finger, initial encounter|Dislocation of metacarpophalangeal joint of left index finger, initial encounter +C2853308|T037|AB|S63.261D|ICD10CM|Dislocation of MCP joint of left index finger, subs|Dislocation of MCP joint of left index finger, subs +C2853308|T037|PT|S63.261D|ICD10CM|Dislocation of metacarpophalangeal joint of left index finger, subsequent encounter|Dislocation of metacarpophalangeal joint of left index finger, subsequent encounter +C2853309|T037|AB|S63.261S|ICD10CM|Dislocation of MCP joint of left index finger, sequela|Dislocation of MCP joint of left index finger, sequela +C2853309|T037|PT|S63.261S|ICD10CM|Dislocation of metacarpophalangeal joint of left index finger, sequela|Dislocation of metacarpophalangeal joint of left index finger, sequela +C2853310|T037|AB|S63.262|ICD10CM|Dislocation of MCP joint of right middle finger|Dislocation of MCP joint of right middle finger +C2853310|T037|HT|S63.262|ICD10CM|Dislocation of metacarpophalangeal joint of right middle finger|Dislocation of metacarpophalangeal joint of right middle finger +C2853311|T037|AB|S63.262A|ICD10CM|Dislocation of MCP joint of right middle finger, init|Dislocation of MCP joint of right middle finger, init +C2853311|T037|PT|S63.262A|ICD10CM|Dislocation of metacarpophalangeal joint of right middle finger, initial encounter|Dislocation of metacarpophalangeal joint of right middle finger, initial encounter +C2853312|T037|AB|S63.262D|ICD10CM|Dislocation of MCP joint of right middle finger, subs|Dislocation of MCP joint of right middle finger, subs +C2853312|T037|PT|S63.262D|ICD10CM|Dislocation of metacarpophalangeal joint of right middle finger, subsequent encounter|Dislocation of metacarpophalangeal joint of right middle finger, subsequent encounter +C2853313|T037|AB|S63.262S|ICD10CM|Dislocation of MCP joint of right middle finger, sequela|Dislocation of MCP joint of right middle finger, sequela +C2853313|T037|PT|S63.262S|ICD10CM|Dislocation of metacarpophalangeal joint of right middle finger, sequela|Dislocation of metacarpophalangeal joint of right middle finger, sequela +C2853314|T037|AB|S63.263|ICD10CM|Dislocation of MCP joint of left middle finger|Dislocation of MCP joint of left middle finger +C2853314|T037|HT|S63.263|ICD10CM|Dislocation of metacarpophalangeal joint of left middle finger|Dislocation of metacarpophalangeal joint of left middle finger +C2853315|T037|AB|S63.263A|ICD10CM|Dislocation of MCP joint of left middle finger, init|Dislocation of MCP joint of left middle finger, init +C2853315|T037|PT|S63.263A|ICD10CM|Dislocation of metacarpophalangeal joint of left middle finger, initial encounter|Dislocation of metacarpophalangeal joint of left middle finger, initial encounter +C2853316|T037|AB|S63.263D|ICD10CM|Dislocation of MCP joint of left middle finger, subs|Dislocation of MCP joint of left middle finger, subs +C2853316|T037|PT|S63.263D|ICD10CM|Dislocation of metacarpophalangeal joint of left middle finger, subsequent encounter|Dislocation of metacarpophalangeal joint of left middle finger, subsequent encounter +C2853317|T037|AB|S63.263S|ICD10CM|Dislocation of MCP joint of left middle finger, sequela|Dislocation of MCP joint of left middle finger, sequela +C2853317|T037|PT|S63.263S|ICD10CM|Dislocation of metacarpophalangeal joint of left middle finger, sequela|Dislocation of metacarpophalangeal joint of left middle finger, sequela +C2853318|T037|AB|S63.264|ICD10CM|Dislocation of MCP joint of right ring finger|Dislocation of MCP joint of right ring finger +C2853318|T037|HT|S63.264|ICD10CM|Dislocation of metacarpophalangeal joint of right ring finger|Dislocation of metacarpophalangeal joint of right ring finger +C2853319|T037|AB|S63.264A|ICD10CM|Dislocation of MCP joint of right ring finger, init|Dislocation of MCP joint of right ring finger, init +C2853319|T037|PT|S63.264A|ICD10CM|Dislocation of metacarpophalangeal joint of right ring finger, initial encounter|Dislocation of metacarpophalangeal joint of right ring finger, initial encounter +C2853320|T037|AB|S63.264D|ICD10CM|Dislocation of MCP joint of right ring finger, subs|Dislocation of MCP joint of right ring finger, subs +C2853320|T037|PT|S63.264D|ICD10CM|Dislocation of metacarpophalangeal joint of right ring finger, subsequent encounter|Dislocation of metacarpophalangeal joint of right ring finger, subsequent encounter +C2853321|T037|AB|S63.264S|ICD10CM|Dislocation of MCP joint of right ring finger, sequela|Dislocation of MCP joint of right ring finger, sequela +C2853321|T037|PT|S63.264S|ICD10CM|Dislocation of metacarpophalangeal joint of right ring finger, sequela|Dislocation of metacarpophalangeal joint of right ring finger, sequela +C2853322|T037|AB|S63.265|ICD10CM|Dislocation of metacarpophalangeal joint of left ring finger|Dislocation of metacarpophalangeal joint of left ring finger +C2853322|T037|HT|S63.265|ICD10CM|Dislocation of metacarpophalangeal joint of left ring finger|Dislocation of metacarpophalangeal joint of left ring finger +C2853323|T037|AB|S63.265A|ICD10CM|Dislocation of MCP joint of left ring finger, init|Dislocation of MCP joint of left ring finger, init +C2853323|T037|PT|S63.265A|ICD10CM|Dislocation of metacarpophalangeal joint of left ring finger, initial encounter|Dislocation of metacarpophalangeal joint of left ring finger, initial encounter +C2853324|T037|AB|S63.265D|ICD10CM|Dislocation of MCP joint of left ring finger, subs|Dislocation of MCP joint of left ring finger, subs +C2853324|T037|PT|S63.265D|ICD10CM|Dislocation of metacarpophalangeal joint of left ring finger, subsequent encounter|Dislocation of metacarpophalangeal joint of left ring finger, subsequent encounter +C2853325|T037|AB|S63.265S|ICD10CM|Dislocation of MCP joint of left ring finger, sequela|Dislocation of MCP joint of left ring finger, sequela +C2853325|T037|PT|S63.265S|ICD10CM|Dislocation of metacarpophalangeal joint of left ring finger, sequela|Dislocation of metacarpophalangeal joint of left ring finger, sequela +C2853326|T037|AB|S63.266|ICD10CM|Dislocation of MCP joint of right little finger|Dislocation of MCP joint of right little finger +C2853326|T037|HT|S63.266|ICD10CM|Dislocation of metacarpophalangeal joint of right little finger|Dislocation of metacarpophalangeal joint of right little finger +C2853327|T037|AB|S63.266A|ICD10CM|Dislocation of MCP joint of right little finger, init|Dislocation of MCP joint of right little finger, init +C2853327|T037|PT|S63.266A|ICD10CM|Dislocation of metacarpophalangeal joint of right little finger, initial encounter|Dislocation of metacarpophalangeal joint of right little finger, initial encounter +C2853328|T037|AB|S63.266D|ICD10CM|Dislocation of MCP joint of right little finger, subs|Dislocation of MCP joint of right little finger, subs +C2853328|T037|PT|S63.266D|ICD10CM|Dislocation of metacarpophalangeal joint of right little finger, subsequent encounter|Dislocation of metacarpophalangeal joint of right little finger, subsequent encounter +C2853329|T037|AB|S63.266S|ICD10CM|Dislocation of MCP joint of right little finger, sequela|Dislocation of MCP joint of right little finger, sequela +C2853329|T037|PT|S63.266S|ICD10CM|Dislocation of metacarpophalangeal joint of right little finger, sequela|Dislocation of metacarpophalangeal joint of right little finger, sequela +C2853330|T037|AB|S63.267|ICD10CM|Dislocation of MCP joint of left little finger|Dislocation of MCP joint of left little finger +C2853330|T037|HT|S63.267|ICD10CM|Dislocation of metacarpophalangeal joint of left little finger|Dislocation of metacarpophalangeal joint of left little finger +C2853331|T037|AB|S63.267A|ICD10CM|Dislocation of MCP joint of left little finger, init|Dislocation of MCP joint of left little finger, init +C2853331|T037|PT|S63.267A|ICD10CM|Dislocation of metacarpophalangeal joint of left little finger, initial encounter|Dislocation of metacarpophalangeal joint of left little finger, initial encounter +C2853332|T037|AB|S63.267D|ICD10CM|Dislocation of MCP joint of left little finger, subs|Dislocation of MCP joint of left little finger, subs +C2853332|T037|PT|S63.267D|ICD10CM|Dislocation of metacarpophalangeal joint of left little finger, subsequent encounter|Dislocation of metacarpophalangeal joint of left little finger, subsequent encounter +C2853333|T037|AB|S63.267S|ICD10CM|Dislocation of MCP joint of left little finger, sequela|Dislocation of MCP joint of left little finger, sequela +C2853333|T037|PT|S63.267S|ICD10CM|Dislocation of metacarpophalangeal joint of left little finger, sequela|Dislocation of metacarpophalangeal joint of left little finger, sequela +C2853335|T037|AB|S63.268|ICD10CM|Dislocation of metacarpophalangeal joint of other finger|Dislocation of metacarpophalangeal joint of other finger +C2853335|T037|HT|S63.268|ICD10CM|Dislocation of metacarpophalangeal joint of other finger|Dislocation of metacarpophalangeal joint of other finger +C2853334|T037|ET|S63.268|ICD10CM|Dislocation of metacarpophalangeal joint of specified finger with unspecified laterality|Dislocation of metacarpophalangeal joint of specified finger with unspecified laterality +C2853336|T037|AB|S63.268A|ICD10CM|Dislocation of metacarpophalangeal joint of oth finger, init|Dislocation of metacarpophalangeal joint of oth finger, init +C2853336|T037|PT|S63.268A|ICD10CM|Dislocation of metacarpophalangeal joint of other finger, initial encounter|Dislocation of metacarpophalangeal joint of other finger, initial encounter +C2853337|T037|AB|S63.268D|ICD10CM|Dislocation of metacarpophalangeal joint of oth finger, subs|Dislocation of metacarpophalangeal joint of oth finger, subs +C2853337|T037|PT|S63.268D|ICD10CM|Dislocation of metacarpophalangeal joint of other finger, subsequent encounter|Dislocation of metacarpophalangeal joint of other finger, subsequent encounter +C2853338|T037|AB|S63.268S|ICD10CM|Dislocation of metacarpophalangeal joint of finger, sequela|Dislocation of metacarpophalangeal joint of finger, sequela +C2853338|T037|PT|S63.268S|ICD10CM|Dislocation of metacarpophalangeal joint of other finger, sequela|Dislocation of metacarpophalangeal joint of other finger, sequela +C2853339|T037|AB|S63.269|ICD10CM|Dislocation of metacarpophalangeal joint of unsp finger|Dislocation of metacarpophalangeal joint of unsp finger +C2853339|T037|HT|S63.269|ICD10CM|Dislocation of metacarpophalangeal joint of unspecified finger|Dislocation of metacarpophalangeal joint of unspecified finger +C2853340|T037|AB|S63.269A|ICD10CM|Dislocation of MCP joint of unsp finger, init|Dislocation of MCP joint of unsp finger, init +C2853340|T037|PT|S63.269A|ICD10CM|Dislocation of metacarpophalangeal joint of unspecified finger, initial encounter|Dislocation of metacarpophalangeal joint of unspecified finger, initial encounter +C2853341|T037|AB|S63.269D|ICD10CM|Dislocation of MCP joint of unsp finger, subs|Dislocation of MCP joint of unsp finger, subs +C2853341|T037|PT|S63.269D|ICD10CM|Dislocation of metacarpophalangeal joint of unspecified finger, subsequent encounter|Dislocation of metacarpophalangeal joint of unspecified finger, subsequent encounter +C2853342|T037|AB|S63.269S|ICD10CM|Dislocation of MCP joint of unsp finger, sequela|Dislocation of MCP joint of unsp finger, sequela +C2853342|T037|PT|S63.269S|ICD10CM|Dislocation of metacarpophalangeal joint of unspecified finger, sequela|Dislocation of metacarpophalangeal joint of unspecified finger, sequela +C2853343|T037|AB|S63.27|ICD10CM|Dislocation of unspecified interphalangeal joint of finger|Dislocation of unspecified interphalangeal joint of finger +C2853343|T037|HT|S63.27|ICD10CM|Dislocation of unspecified interphalangeal joint of finger|Dislocation of unspecified interphalangeal joint of finger +C2853344|T037|AB|S63.270|ICD10CM|Dislocation of unsp interphalangeal joint of r idx fngr|Dislocation of unsp interphalangeal joint of r idx fngr +C2853344|T037|HT|S63.270|ICD10CM|Dislocation of unspecified interphalangeal joint of right index finger|Dislocation of unspecified interphalangeal joint of right index finger +C2853345|T037|AB|S63.270A|ICD10CM|Dislocation of unsp interphaln joint of r idx fngr, init|Dislocation of unsp interphaln joint of r idx fngr, init +C2853345|T037|PT|S63.270A|ICD10CM|Dislocation of unspecified interphalangeal joint of right index finger, initial encounter|Dislocation of unspecified interphalangeal joint of right index finger, initial encounter +C2853346|T037|AB|S63.270D|ICD10CM|Dislocation of unsp interphaln joint of r idx fngr, subs|Dislocation of unsp interphaln joint of r idx fngr, subs +C2853346|T037|PT|S63.270D|ICD10CM|Dislocation of unspecified interphalangeal joint of right index finger, subsequent encounter|Dislocation of unspecified interphalangeal joint of right index finger, subsequent encounter +C2853347|T037|AB|S63.270S|ICD10CM|Dislocation of unsp interphaln joint of r idx fngr, sequela|Dislocation of unsp interphaln joint of r idx fngr, sequela +C2853347|T037|PT|S63.270S|ICD10CM|Dislocation of unspecified interphalangeal joint of right index finger, sequela|Dislocation of unspecified interphalangeal joint of right index finger, sequela +C2853348|T037|AB|S63.271|ICD10CM|Dislocation of unsp interphalangeal joint of l idx fngr|Dislocation of unsp interphalangeal joint of l idx fngr +C2853348|T037|HT|S63.271|ICD10CM|Dislocation of unspecified interphalangeal joint of left index finger|Dislocation of unspecified interphalangeal joint of left index finger +C2853349|T037|AB|S63.271A|ICD10CM|Dislocation of unsp interphaln joint of l idx fngr, init|Dislocation of unsp interphaln joint of l idx fngr, init +C2853349|T037|PT|S63.271A|ICD10CM|Dislocation of unspecified interphalangeal joint of left index finger, initial encounter|Dislocation of unspecified interphalangeal joint of left index finger, initial encounter +C2853350|T037|AB|S63.271D|ICD10CM|Dislocation of unsp interphaln joint of l idx fngr, subs|Dislocation of unsp interphaln joint of l idx fngr, subs +C2853350|T037|PT|S63.271D|ICD10CM|Dislocation of unspecified interphalangeal joint of left index finger, subsequent encounter|Dislocation of unspecified interphalangeal joint of left index finger, subsequent encounter +C2853351|T037|AB|S63.271S|ICD10CM|Dislocation of unsp interphaln joint of l idx fngr, sequela|Dislocation of unsp interphaln joint of l idx fngr, sequela +C2853351|T037|PT|S63.271S|ICD10CM|Dislocation of unspecified interphalangeal joint of left index finger, sequela|Dislocation of unspecified interphalangeal joint of left index finger, sequela +C2853352|T037|AB|S63.272|ICD10CM|Dislocation of unsp interphalangeal joint of r mid finger|Dislocation of unsp interphalangeal joint of r mid finger +C2853352|T037|HT|S63.272|ICD10CM|Dislocation of unspecified interphalangeal joint of right middle finger|Dislocation of unspecified interphalangeal joint of right middle finger +C2853353|T037|AB|S63.272A|ICD10CM|Dislocation of unsp interphaln joint of r mid finger, init|Dislocation of unsp interphaln joint of r mid finger, init +C2853353|T037|PT|S63.272A|ICD10CM|Dislocation of unspecified interphalangeal joint of right middle finger, initial encounter|Dislocation of unspecified interphalangeal joint of right middle finger, initial encounter +C2853354|T037|AB|S63.272D|ICD10CM|Dislocation of unsp interphaln joint of r mid finger, subs|Dislocation of unsp interphaln joint of r mid finger, subs +C2853354|T037|PT|S63.272D|ICD10CM|Dislocation of unspecified interphalangeal joint of right middle finger, subsequent encounter|Dislocation of unspecified interphalangeal joint of right middle finger, subsequent encounter +C2853355|T037|AB|S63.272S|ICD10CM|Disloc of unsp interphaln joint of r mid finger, sequela|Disloc of unsp interphaln joint of r mid finger, sequela +C2853355|T037|PT|S63.272S|ICD10CM|Dislocation of unspecified interphalangeal joint of right middle finger, sequela|Dislocation of unspecified interphalangeal joint of right middle finger, sequela +C2853356|T037|AB|S63.273|ICD10CM|Dislocation of unsp interphalangeal joint of l mid finger|Dislocation of unsp interphalangeal joint of l mid finger +C2853356|T037|HT|S63.273|ICD10CM|Dislocation of unspecified interphalangeal joint of left middle finger|Dislocation of unspecified interphalangeal joint of left middle finger +C2853357|T037|AB|S63.273A|ICD10CM|Dislocation of unsp interphaln joint of l mid finger, init|Dislocation of unsp interphaln joint of l mid finger, init +C2853357|T037|PT|S63.273A|ICD10CM|Dislocation of unspecified interphalangeal joint of left middle finger, initial encounter|Dislocation of unspecified interphalangeal joint of left middle finger, initial encounter +C2853358|T037|AB|S63.273D|ICD10CM|Dislocation of unsp interphaln joint of l mid finger, subs|Dislocation of unsp interphaln joint of l mid finger, subs +C2853358|T037|PT|S63.273D|ICD10CM|Dislocation of unspecified interphalangeal joint of left middle finger, subsequent encounter|Dislocation of unspecified interphalangeal joint of left middle finger, subsequent encounter +C2853359|T037|AB|S63.273S|ICD10CM|Disloc of unsp interphaln joint of l mid finger, sequela|Disloc of unsp interphaln joint of l mid finger, sequela +C2853359|T037|PT|S63.273S|ICD10CM|Dislocation of unspecified interphalangeal joint of left middle finger, sequela|Dislocation of unspecified interphalangeal joint of left middle finger, sequela +C2853360|T037|AB|S63.274|ICD10CM|Dislocation of unsp interphalangeal joint of r rng fngr|Dislocation of unsp interphalangeal joint of r rng fngr +C2853360|T037|HT|S63.274|ICD10CM|Dislocation of unspecified interphalangeal joint of right ring finger|Dislocation of unspecified interphalangeal joint of right ring finger +C2853361|T037|AB|S63.274A|ICD10CM|Dislocation of unsp interphaln joint of r rng fngr, init|Dislocation of unsp interphaln joint of r rng fngr, init +C2853361|T037|PT|S63.274A|ICD10CM|Dislocation of unspecified interphalangeal joint of right ring finger, initial encounter|Dislocation of unspecified interphalangeal joint of right ring finger, initial encounter +C2853362|T037|AB|S63.274D|ICD10CM|Dislocation of unsp interphaln joint of r rng fngr, subs|Dislocation of unsp interphaln joint of r rng fngr, subs +C2853362|T037|PT|S63.274D|ICD10CM|Dislocation of unspecified interphalangeal joint of right ring finger, subsequent encounter|Dislocation of unspecified interphalangeal joint of right ring finger, subsequent encounter +C2853363|T037|AB|S63.274S|ICD10CM|Dislocation of unsp interphaln joint of r rng fngr, sequela|Dislocation of unsp interphaln joint of r rng fngr, sequela +C2853363|T037|PT|S63.274S|ICD10CM|Dislocation of unspecified interphalangeal joint of right ring finger, sequela|Dislocation of unspecified interphalangeal joint of right ring finger, sequela +C2853364|T037|AB|S63.275|ICD10CM|Dislocation of unsp interphalangeal joint of l rng fngr|Dislocation of unsp interphalangeal joint of l rng fngr +C2853364|T037|HT|S63.275|ICD10CM|Dislocation of unspecified interphalangeal joint of left ring finger|Dislocation of unspecified interphalangeal joint of left ring finger +C2853365|T037|AB|S63.275A|ICD10CM|Dislocation of unsp interphaln joint of l rng fngr, init|Dislocation of unsp interphaln joint of l rng fngr, init +C2853365|T037|PT|S63.275A|ICD10CM|Dislocation of unspecified interphalangeal joint of left ring finger, initial encounter|Dislocation of unspecified interphalangeal joint of left ring finger, initial encounter +C2853366|T037|AB|S63.275D|ICD10CM|Dislocation of unsp interphaln joint of l rng fngr, subs|Dislocation of unsp interphaln joint of l rng fngr, subs +C2853366|T037|PT|S63.275D|ICD10CM|Dislocation of unspecified interphalangeal joint of left ring finger, subsequent encounter|Dislocation of unspecified interphalangeal joint of left ring finger, subsequent encounter +C2853367|T037|AB|S63.275S|ICD10CM|Dislocation of unsp interphaln joint of l rng fngr, sequela|Dislocation of unsp interphaln joint of l rng fngr, sequela +C2853367|T037|PT|S63.275S|ICD10CM|Dislocation of unspecified interphalangeal joint of left ring finger, sequela|Dislocation of unspecified interphalangeal joint of left ring finger, sequela +C2853368|T037|AB|S63.276|ICD10CM|Dislocation of unsp interphalangeal joint of r little finger|Dislocation of unsp interphalangeal joint of r little finger +C2853368|T037|HT|S63.276|ICD10CM|Dislocation of unspecified interphalangeal joint of right little finger|Dislocation of unspecified interphalangeal joint of right little finger +C2853369|T037|AB|S63.276A|ICD10CM|Disloc of unsp interphaln joint of r little finger, init|Disloc of unsp interphaln joint of r little finger, init +C2853369|T037|PT|S63.276A|ICD10CM|Dislocation of unspecified interphalangeal joint of right little finger, initial encounter|Dislocation of unspecified interphalangeal joint of right little finger, initial encounter +C2853370|T037|AB|S63.276D|ICD10CM|Disloc of unsp interphaln joint of r little finger, subs|Disloc of unsp interphaln joint of r little finger, subs +C2853370|T037|PT|S63.276D|ICD10CM|Dislocation of unspecified interphalangeal joint of right little finger, subsequent encounter|Dislocation of unspecified interphalangeal joint of right little finger, subsequent encounter +C2853371|T037|AB|S63.276S|ICD10CM|Disloc of unsp interphaln joint of r little finger, sequela|Disloc of unsp interphaln joint of r little finger, sequela +C2853371|T037|PT|S63.276S|ICD10CM|Dislocation of unspecified interphalangeal joint of right little finger, sequela|Dislocation of unspecified interphalangeal joint of right little finger, sequela +C2853372|T037|AB|S63.277|ICD10CM|Dislocation of unsp interphalangeal joint of l little finger|Dislocation of unsp interphalangeal joint of l little finger +C2853372|T037|HT|S63.277|ICD10CM|Dislocation of unspecified interphalangeal joint of left little finger|Dislocation of unspecified interphalangeal joint of left little finger +C2853373|T037|AB|S63.277A|ICD10CM|Disloc of unsp interphaln joint of l little finger, init|Disloc of unsp interphaln joint of l little finger, init +C2853373|T037|PT|S63.277A|ICD10CM|Dislocation of unspecified interphalangeal joint of left little finger, initial encounter|Dislocation of unspecified interphalangeal joint of left little finger, initial encounter +C2853374|T037|AB|S63.277D|ICD10CM|Disloc of unsp interphaln joint of l little finger, subs|Disloc of unsp interphaln joint of l little finger, subs +C2853374|T037|PT|S63.277D|ICD10CM|Dislocation of unspecified interphalangeal joint of left little finger, subsequent encounter|Dislocation of unspecified interphalangeal joint of left little finger, subsequent encounter +C2853375|T037|AB|S63.277S|ICD10CM|Disloc of unsp interphaln joint of l little finger, sequela|Disloc of unsp interphaln joint of l little finger, sequela +C2853375|T037|PT|S63.277S|ICD10CM|Dislocation of unspecified interphalangeal joint of left little finger, sequela|Dislocation of unspecified interphalangeal joint of left little finger, sequela +C2853377|T037|AB|S63.278|ICD10CM|Dislocation of unsp interphalangeal joint of other finger|Dislocation of unsp interphalangeal joint of other finger +C2853377|T037|HT|S63.278|ICD10CM|Dislocation of unspecified interphalangeal joint of other finger|Dislocation of unspecified interphalangeal joint of other finger +C2853376|T037|ET|S63.278|ICD10CM|Dislocation of unspecified interphalangeal joint of specified finger with unspecified laterality|Dislocation of unspecified interphalangeal joint of specified finger with unspecified laterality +C2853378|T037|AB|S63.278A|ICD10CM|Dislocation of unsp interphalangeal joint of finger, init|Dislocation of unsp interphalangeal joint of finger, init +C2853378|T037|PT|S63.278A|ICD10CM|Dislocation of unspecified interphalangeal joint of other finger, initial encounter|Dislocation of unspecified interphalangeal joint of other finger, initial encounter +C2853379|T037|AB|S63.278D|ICD10CM|Dislocation of unsp interphalangeal joint of finger, subs|Dislocation of unsp interphalangeal joint of finger, subs +C2853379|T037|PT|S63.278D|ICD10CM|Dislocation of unspecified interphalangeal joint of other finger, subsequent encounter|Dislocation of unspecified interphalangeal joint of other finger, subsequent encounter +C2853380|T037|AB|S63.278S|ICD10CM|Dislocation of unsp interphalangeal joint of finger, sequela|Dislocation of unsp interphalangeal joint of finger, sequela +C2853380|T037|PT|S63.278S|ICD10CM|Dislocation of unspecified interphalangeal joint of other finger, sequela|Dislocation of unspecified interphalangeal joint of other finger, sequela +C2853382|T037|AB|S63.279|ICD10CM|Dislocation of unsp interphalangeal joint of unsp finger|Dislocation of unsp interphalangeal joint of unsp finger +C2853382|T037|HT|S63.279|ICD10CM|Dislocation of unspecified interphalangeal joint of unspecified finger|Dislocation of unspecified interphalangeal joint of unspecified finger +C4509455|T037|ET|S63.279|ICD10CM|Dislocation of unspecified interphalangeal joint of unspecified finger without specified laterality|Dislocation of unspecified interphalangeal joint of unspecified finger without specified laterality +C2853383|T037|AB|S63.279A|ICD10CM|Dislocation of unsp interphaln joint of unsp finger, init|Dislocation of unsp interphaln joint of unsp finger, init +C2853383|T037|PT|S63.279A|ICD10CM|Dislocation of unspecified interphalangeal joint of unspecified finger, initial encounter|Dislocation of unspecified interphalangeal joint of unspecified finger, initial encounter +C2853384|T037|AB|S63.279D|ICD10CM|Dislocation of unsp interphaln joint of unsp finger, subs|Dislocation of unsp interphaln joint of unsp finger, subs +C2853384|T037|PT|S63.279D|ICD10CM|Dislocation of unspecified interphalangeal joint of unspecified finger, subsequent encounter|Dislocation of unspecified interphalangeal joint of unspecified finger, subsequent encounter +C2853385|T037|AB|S63.279S|ICD10CM|Dislocation of unsp interphaln joint of unsp finger, sequela|Dislocation of unsp interphaln joint of unsp finger, sequela +C2853385|T037|PT|S63.279S|ICD10CM|Dislocation of unspecified interphalangeal joint of unspecified finger, sequela|Dislocation of unspecified interphalangeal joint of unspecified finger, sequela +C2853386|T037|AB|S63.28|ICD10CM|Dislocation of proximal interphalangeal joint of finger|Dislocation of proximal interphalangeal joint of finger +C2853386|T037|HT|S63.28|ICD10CM|Dislocation of proximal interphalangeal joint of finger|Dislocation of proximal interphalangeal joint of finger +C2853387|T037|AB|S63.280|ICD10CM|Dislocation of proximal interphalangeal joint of r idx fngr|Dislocation of proximal interphalangeal joint of r idx fngr +C2853387|T037|HT|S63.280|ICD10CM|Dislocation of proximal interphalangeal joint of right index finger|Dislocation of proximal interphalangeal joint of right index finger +C2853388|T037|PT|S63.280A|ICD10CM|Dislocation of proximal interphalangeal joint of right index finger, initial encounter|Dislocation of proximal interphalangeal joint of right index finger, initial encounter +C2853388|T037|AB|S63.280A|ICD10CM|Dislocation of proximal interphaln joint of r idx fngr, init|Dislocation of proximal interphaln joint of r idx fngr, init +C2853389|T037|PT|S63.280D|ICD10CM|Dislocation of proximal interphalangeal joint of right index finger, subsequent encounter|Dislocation of proximal interphalangeal joint of right index finger, subsequent encounter +C2853389|T037|AB|S63.280D|ICD10CM|Dislocation of proximal interphaln joint of r idx fngr, subs|Dislocation of proximal interphaln joint of r idx fngr, subs +C2853390|T037|AB|S63.280S|ICD10CM|Disloc of proximal interphaln joint of r idx fngr, sequela|Disloc of proximal interphaln joint of r idx fngr, sequela +C2853390|T037|PT|S63.280S|ICD10CM|Dislocation of proximal interphalangeal joint of right index finger, sequela|Dislocation of proximal interphalangeal joint of right index finger, sequela +C2853391|T037|AB|S63.281|ICD10CM|Dislocation of proximal interphalangeal joint of l idx fngr|Dislocation of proximal interphalangeal joint of l idx fngr +C2853391|T037|HT|S63.281|ICD10CM|Dislocation of proximal interphalangeal joint of left index finger|Dislocation of proximal interphalangeal joint of left index finger +C2853392|T037|PT|S63.281A|ICD10CM|Dislocation of proximal interphalangeal joint of left index finger, initial encounter|Dislocation of proximal interphalangeal joint of left index finger, initial encounter +C2853392|T037|AB|S63.281A|ICD10CM|Dislocation of proximal interphaln joint of l idx fngr, init|Dislocation of proximal interphaln joint of l idx fngr, init +C2853393|T037|PT|S63.281D|ICD10CM|Dislocation of proximal interphalangeal joint of left index finger, subsequent encounter|Dislocation of proximal interphalangeal joint of left index finger, subsequent encounter +C2853393|T037|AB|S63.281D|ICD10CM|Dislocation of proximal interphaln joint of l idx fngr, subs|Dislocation of proximal interphaln joint of l idx fngr, subs +C2853394|T037|AB|S63.281S|ICD10CM|Disloc of proximal interphaln joint of l idx fngr, sequela|Disloc of proximal interphaln joint of l idx fngr, sequela +C2853394|T037|PT|S63.281S|ICD10CM|Dislocation of proximal interphalangeal joint of left index finger, sequela|Dislocation of proximal interphalangeal joint of left index finger, sequela +C2853395|T037|HT|S63.282|ICD10CM|Dislocation of proximal interphalangeal joint of right middle finger|Dislocation of proximal interphalangeal joint of right middle finger +C2853395|T037|AB|S63.282|ICD10CM|Dislocation of proximal interphaln joint of r mid finger|Dislocation of proximal interphaln joint of r mid finger +C2853396|T037|AB|S63.282A|ICD10CM|Disloc of proximal interphaln joint of r mid finger, init|Disloc of proximal interphaln joint of r mid finger, init +C2853396|T037|PT|S63.282A|ICD10CM|Dislocation of proximal interphalangeal joint of right middle finger, initial encounter|Dislocation of proximal interphalangeal joint of right middle finger, initial encounter +C2853397|T037|AB|S63.282D|ICD10CM|Disloc of proximal interphaln joint of r mid finger, subs|Disloc of proximal interphaln joint of r mid finger, subs +C2853397|T037|PT|S63.282D|ICD10CM|Dislocation of proximal interphalangeal joint of right middle finger, subsequent encounter|Dislocation of proximal interphalangeal joint of right middle finger, subsequent encounter +C2853398|T037|AB|S63.282S|ICD10CM|Disloc of proximal interphaln joint of r mid finger, sequela|Disloc of proximal interphaln joint of r mid finger, sequela +C2853398|T037|PT|S63.282S|ICD10CM|Dislocation of proximal interphalangeal joint of right middle finger, sequela|Dislocation of proximal interphalangeal joint of right middle finger, sequela +C2853399|T037|HT|S63.283|ICD10CM|Dislocation of proximal interphalangeal joint of left middle finger|Dislocation of proximal interphalangeal joint of left middle finger +C2853399|T037|AB|S63.283|ICD10CM|Dislocation of proximal interphaln joint of l mid finger|Dislocation of proximal interphaln joint of l mid finger +C2853400|T037|AB|S63.283A|ICD10CM|Disloc of proximal interphaln joint of l mid finger, init|Disloc of proximal interphaln joint of l mid finger, init +C2853400|T037|PT|S63.283A|ICD10CM|Dislocation of proximal interphalangeal joint of left middle finger, initial encounter|Dislocation of proximal interphalangeal joint of left middle finger, initial encounter +C2853401|T037|AB|S63.283D|ICD10CM|Disloc of proximal interphaln joint of l mid finger, subs|Disloc of proximal interphaln joint of l mid finger, subs +C2853401|T037|PT|S63.283D|ICD10CM|Dislocation of proximal interphalangeal joint of left middle finger, subsequent encounter|Dislocation of proximal interphalangeal joint of left middle finger, subsequent encounter +C2853402|T037|AB|S63.283S|ICD10CM|Disloc of proximal interphaln joint of l mid finger, sequela|Disloc of proximal interphaln joint of l mid finger, sequela +C2853402|T037|PT|S63.283S|ICD10CM|Dislocation of proximal interphalangeal joint of left middle finger, sequela|Dislocation of proximal interphalangeal joint of left middle finger, sequela +C2853403|T037|AB|S63.284|ICD10CM|Dislocation of proximal interphalangeal joint of r rng fngr|Dislocation of proximal interphalangeal joint of r rng fngr +C2853403|T037|HT|S63.284|ICD10CM|Dislocation of proximal interphalangeal joint of right ring finger|Dislocation of proximal interphalangeal joint of right ring finger +C2853404|T037|PT|S63.284A|ICD10CM|Dislocation of proximal interphalangeal joint of right ring finger, initial encounter|Dislocation of proximal interphalangeal joint of right ring finger, initial encounter +C2853404|T037|AB|S63.284A|ICD10CM|Dislocation of proximal interphaln joint of r rng fngr, init|Dislocation of proximal interphaln joint of r rng fngr, init +C2853405|T037|PT|S63.284D|ICD10CM|Dislocation of proximal interphalangeal joint of right ring finger, subsequent encounter|Dislocation of proximal interphalangeal joint of right ring finger, subsequent encounter +C2853405|T037|AB|S63.284D|ICD10CM|Dislocation of proximal interphaln joint of r rng fngr, subs|Dislocation of proximal interphaln joint of r rng fngr, subs +C2853406|T037|AB|S63.284S|ICD10CM|Disloc of proximal interphaln joint of r rng fngr, sequela|Disloc of proximal interphaln joint of r rng fngr, sequela +C2853406|T037|PT|S63.284S|ICD10CM|Dislocation of proximal interphalangeal joint of right ring finger, sequela|Dislocation of proximal interphalangeal joint of right ring finger, sequela +C2853407|T037|AB|S63.285|ICD10CM|Dislocation of proximal interphalangeal joint of l rng fngr|Dislocation of proximal interphalangeal joint of l rng fngr +C2853407|T037|HT|S63.285|ICD10CM|Dislocation of proximal interphalangeal joint of left ring finger|Dislocation of proximal interphalangeal joint of left ring finger +C2853408|T037|PT|S63.285A|ICD10CM|Dislocation of proximal interphalangeal joint of left ring finger, initial encounter|Dislocation of proximal interphalangeal joint of left ring finger, initial encounter +C2853408|T037|AB|S63.285A|ICD10CM|Dislocation of proximal interphaln joint of l rng fngr, init|Dislocation of proximal interphaln joint of l rng fngr, init +C2853409|T037|PT|S63.285D|ICD10CM|Dislocation of proximal interphalangeal joint of left ring finger, subsequent encounter|Dislocation of proximal interphalangeal joint of left ring finger, subsequent encounter +C2853409|T037|AB|S63.285D|ICD10CM|Dislocation of proximal interphaln joint of l rng fngr, subs|Dislocation of proximal interphaln joint of l rng fngr, subs +C2853410|T037|AB|S63.285S|ICD10CM|Disloc of proximal interphaln joint of l rng fngr, sequela|Disloc of proximal interphaln joint of l rng fngr, sequela +C2853410|T037|PT|S63.285S|ICD10CM|Dislocation of proximal interphalangeal joint of left ring finger, sequela|Dislocation of proximal interphalangeal joint of left ring finger, sequela +C2853411|T037|HT|S63.286|ICD10CM|Dislocation of proximal interphalangeal joint of right little finger|Dislocation of proximal interphalangeal joint of right little finger +C2853411|T037|AB|S63.286|ICD10CM|Dislocation of proximal interphaln joint of r little finger|Dislocation of proximal interphaln joint of r little finger +C2853412|T037|AB|S63.286A|ICD10CM|Disloc of proximal interphaln joint of r little finger, init|Disloc of proximal interphaln joint of r little finger, init +C2853412|T037|PT|S63.286A|ICD10CM|Dislocation of proximal interphalangeal joint of right little finger, initial encounter|Dislocation of proximal interphalangeal joint of right little finger, initial encounter +C2853413|T037|AB|S63.286D|ICD10CM|Disloc of proximal interphaln joint of r little finger, subs|Disloc of proximal interphaln joint of r little finger, subs +C2853413|T037|PT|S63.286D|ICD10CM|Dislocation of proximal interphalangeal joint of right little finger, subsequent encounter|Dislocation of proximal interphalangeal joint of right little finger, subsequent encounter +C2853414|T037|AB|S63.286S|ICD10CM|Disloc of prox interphaln joint of r little finger, sequela|Disloc of prox interphaln joint of r little finger, sequela +C2853414|T037|PT|S63.286S|ICD10CM|Dislocation of proximal interphalangeal joint of right little finger, sequela|Dislocation of proximal interphalangeal joint of right little finger, sequela +C2853415|T037|HT|S63.287|ICD10CM|Dislocation of proximal interphalangeal joint of left little finger|Dislocation of proximal interphalangeal joint of left little finger +C2853415|T037|AB|S63.287|ICD10CM|Dislocation of proximal interphaln joint of l little finger|Dislocation of proximal interphaln joint of l little finger +C2853416|T037|AB|S63.287A|ICD10CM|Disloc of proximal interphaln joint of l little finger, init|Disloc of proximal interphaln joint of l little finger, init +C2853416|T037|PT|S63.287A|ICD10CM|Dislocation of proximal interphalangeal joint of left little finger, initial encounter|Dislocation of proximal interphalangeal joint of left little finger, initial encounter +C2853417|T037|AB|S63.287D|ICD10CM|Disloc of proximal interphaln joint of l little finger, subs|Disloc of proximal interphaln joint of l little finger, subs +C2853417|T037|PT|S63.287D|ICD10CM|Dislocation of proximal interphalangeal joint of left little finger, subsequent encounter|Dislocation of proximal interphalangeal joint of left little finger, subsequent encounter +C2853418|T037|AB|S63.287S|ICD10CM|Disloc of prox interphaln joint of l little finger, sequela|Disloc of prox interphaln joint of l little finger, sequela +C2853418|T037|PT|S63.287S|ICD10CM|Dislocation of proximal interphalangeal joint of left little finger, sequela|Dislocation of proximal interphalangeal joint of left little finger, sequela +C2853420|T037|AB|S63.288|ICD10CM|Dislocation of proximal interphalangeal joint of oth finger|Dislocation of proximal interphalangeal joint of oth finger +C2853420|T037|HT|S63.288|ICD10CM|Dislocation of proximal interphalangeal joint of other finger|Dislocation of proximal interphalangeal joint of other finger +C2853419|T037|ET|S63.288|ICD10CM|Dislocation of proximal interphalangeal joint of specified finger with unspecified laterality|Dislocation of proximal interphalangeal joint of specified finger with unspecified laterality +C2853421|T037|PT|S63.288A|ICD10CM|Dislocation of proximal interphalangeal joint of other finger, initial encounter|Dislocation of proximal interphalangeal joint of other finger, initial encounter +C2853421|T037|AB|S63.288A|ICD10CM|Dislocation of proximal interphaln joint of finger, init|Dislocation of proximal interphaln joint of finger, init +C2853422|T037|PT|S63.288D|ICD10CM|Dislocation of proximal interphalangeal joint of other finger, subsequent encounter|Dislocation of proximal interphalangeal joint of other finger, subsequent encounter +C2853422|T037|AB|S63.288D|ICD10CM|Dislocation of proximal interphaln joint of finger, subs|Dislocation of proximal interphaln joint of finger, subs +C2853423|T037|PT|S63.288S|ICD10CM|Dislocation of proximal interphalangeal joint of other finger, sequela|Dislocation of proximal interphalangeal joint of other finger, sequela +C2853423|T037|AB|S63.288S|ICD10CM|Dislocation of proximal interphaln joint of finger, sequela|Dislocation of proximal interphaln joint of finger, sequela +C2853424|T037|AB|S63.289|ICD10CM|Dislocation of proximal interphalangeal joint of unsp finger|Dislocation of proximal interphalangeal joint of unsp finger +C2853424|T037|HT|S63.289|ICD10CM|Dislocation of proximal interphalangeal joint of unspecified finger|Dislocation of proximal interphalangeal joint of unspecified finger +C2853425|T037|AB|S63.289A|ICD10CM|Disloc of proximal interphaln joint of unsp finger, init|Disloc of proximal interphaln joint of unsp finger, init +C2853425|T037|PT|S63.289A|ICD10CM|Dislocation of proximal interphalangeal joint of unspecified finger, initial encounter|Dislocation of proximal interphalangeal joint of unspecified finger, initial encounter +C2853426|T037|AB|S63.289D|ICD10CM|Disloc of proximal interphaln joint of unsp finger, subs|Disloc of proximal interphaln joint of unsp finger, subs +C2853426|T037|PT|S63.289D|ICD10CM|Dislocation of proximal interphalangeal joint of unspecified finger, subsequent encounter|Dislocation of proximal interphalangeal joint of unspecified finger, subsequent encounter +C2853427|T037|AB|S63.289S|ICD10CM|Disloc of proximal interphaln joint of unsp finger, sequela|Disloc of proximal interphaln joint of unsp finger, sequela +C2853427|T037|PT|S63.289S|ICD10CM|Dislocation of proximal interphalangeal joint of unspecified finger, sequela|Dislocation of proximal interphalangeal joint of unspecified finger, sequela +C2853428|T037|AB|S63.29|ICD10CM|Dislocation of distal interphalangeal joint of finger|Dislocation of distal interphalangeal joint of finger +C2853428|T037|HT|S63.29|ICD10CM|Dislocation of distal interphalangeal joint of finger|Dislocation of distal interphalangeal joint of finger +C2853429|T037|AB|S63.290|ICD10CM|Dislocation of distal interphalangeal joint of r idx fngr|Dislocation of distal interphalangeal joint of r idx fngr +C2853429|T037|HT|S63.290|ICD10CM|Dislocation of distal interphalangeal joint of right index finger|Dislocation of distal interphalangeal joint of right index finger +C2853430|T037|PT|S63.290A|ICD10CM|Dislocation of distal interphalangeal joint of right index finger, initial encounter|Dislocation of distal interphalangeal joint of right index finger, initial encounter +C2853430|T037|AB|S63.290A|ICD10CM|Dislocation of distal interphaln joint of r idx fngr, init|Dislocation of distal interphaln joint of r idx fngr, init +C2853431|T037|PT|S63.290D|ICD10CM|Dislocation of distal interphalangeal joint of right index finger, subsequent encounter|Dislocation of distal interphalangeal joint of right index finger, subsequent encounter +C2853431|T037|AB|S63.290D|ICD10CM|Dislocation of distal interphaln joint of r idx fngr, subs|Dislocation of distal interphaln joint of r idx fngr, subs +C2853432|T037|AB|S63.290S|ICD10CM|Disloc of distal interphaln joint of r idx fngr, sequela|Disloc of distal interphaln joint of r idx fngr, sequela +C2853432|T037|PT|S63.290S|ICD10CM|Dislocation of distal interphalangeal joint of right index finger, sequela|Dislocation of distal interphalangeal joint of right index finger, sequela +C2853433|T037|AB|S63.291|ICD10CM|Dislocation of distal interphalangeal joint of l idx fngr|Dislocation of distal interphalangeal joint of l idx fngr +C2853433|T037|HT|S63.291|ICD10CM|Dislocation of distal interphalangeal joint of left index finger|Dislocation of distal interphalangeal joint of left index finger +C2853434|T037|PT|S63.291A|ICD10CM|Dislocation of distal interphalangeal joint of left index finger, initial encounter|Dislocation of distal interphalangeal joint of left index finger, initial encounter +C2853434|T037|AB|S63.291A|ICD10CM|Dislocation of distal interphaln joint of l idx fngr, init|Dislocation of distal interphaln joint of l idx fngr, init +C2853435|T037|PT|S63.291D|ICD10CM|Dislocation of distal interphalangeal joint of left index finger, subsequent encounter|Dislocation of distal interphalangeal joint of left index finger, subsequent encounter +C2853435|T037|AB|S63.291D|ICD10CM|Dislocation of distal interphaln joint of l idx fngr, subs|Dislocation of distal interphaln joint of l idx fngr, subs +C2853436|T037|AB|S63.291S|ICD10CM|Disloc of distal interphaln joint of l idx fngr, sequela|Disloc of distal interphaln joint of l idx fngr, sequela +C2853436|T037|PT|S63.291S|ICD10CM|Dislocation of distal interphalangeal joint of left index finger, sequela|Dislocation of distal interphalangeal joint of left index finger, sequela +C2853437|T037|AB|S63.292|ICD10CM|Dislocation of distal interphalangeal joint of r mid finger|Dislocation of distal interphalangeal joint of r mid finger +C2853437|T037|HT|S63.292|ICD10CM|Dislocation of distal interphalangeal joint of right middle finger|Dislocation of distal interphalangeal joint of right middle finger +C2853438|T037|PT|S63.292A|ICD10CM|Dislocation of distal interphalangeal joint of right middle finger, initial encounter|Dislocation of distal interphalangeal joint of right middle finger, initial encounter +C2853438|T037|AB|S63.292A|ICD10CM|Dislocation of distal interphaln joint of r mid finger, init|Dislocation of distal interphaln joint of r mid finger, init +C2853439|T037|PT|S63.292D|ICD10CM|Dislocation of distal interphalangeal joint of right middle finger, subsequent encounter|Dislocation of distal interphalangeal joint of right middle finger, subsequent encounter +C2853439|T037|AB|S63.292D|ICD10CM|Dislocation of distal interphaln joint of r mid finger, subs|Dislocation of distal interphaln joint of r mid finger, subs +C2853440|T037|AB|S63.292S|ICD10CM|Disloc of distal interphaln joint of r mid finger, sequela|Disloc of distal interphaln joint of r mid finger, sequela +C2853440|T037|PT|S63.292S|ICD10CM|Dislocation of distal interphalangeal joint of right middle finger, sequela|Dislocation of distal interphalangeal joint of right middle finger, sequela +C2853441|T037|AB|S63.293|ICD10CM|Dislocation of distal interphalangeal joint of l mid finger|Dislocation of distal interphalangeal joint of l mid finger +C2853441|T037|HT|S63.293|ICD10CM|Dislocation of distal interphalangeal joint of left middle finger|Dislocation of distal interphalangeal joint of left middle finger +C2853442|T037|PT|S63.293A|ICD10CM|Dislocation of distal interphalangeal joint of left middle finger, initial encounter|Dislocation of distal interphalangeal joint of left middle finger, initial encounter +C2853442|T037|AB|S63.293A|ICD10CM|Dislocation of distal interphaln joint of l mid finger, init|Dislocation of distal interphaln joint of l mid finger, init +C2853443|T037|PT|S63.293D|ICD10CM|Dislocation of distal interphalangeal joint of left middle finger, subsequent encounter|Dislocation of distal interphalangeal joint of left middle finger, subsequent encounter +C2853443|T037|AB|S63.293D|ICD10CM|Dislocation of distal interphaln joint of l mid finger, subs|Dislocation of distal interphaln joint of l mid finger, subs +C2853444|T037|AB|S63.293S|ICD10CM|Disloc of distal interphaln joint of l mid finger, sequela|Disloc of distal interphaln joint of l mid finger, sequela +C2853444|T037|PT|S63.293S|ICD10CM|Dislocation of distal interphalangeal joint of left middle finger, sequela|Dislocation of distal interphalangeal joint of left middle finger, sequela +C2853445|T037|AB|S63.294|ICD10CM|Dislocation of distal interphalangeal joint of r rng fngr|Dislocation of distal interphalangeal joint of r rng fngr +C2853445|T037|HT|S63.294|ICD10CM|Dislocation of distal interphalangeal joint of right ring finger|Dislocation of distal interphalangeal joint of right ring finger +C2853446|T037|PT|S63.294A|ICD10CM|Dislocation of distal interphalangeal joint of right ring finger, initial encounter|Dislocation of distal interphalangeal joint of right ring finger, initial encounter +C2853446|T037|AB|S63.294A|ICD10CM|Dislocation of distal interphaln joint of r rng fngr, init|Dislocation of distal interphaln joint of r rng fngr, init +C2853447|T037|PT|S63.294D|ICD10CM|Dislocation of distal interphalangeal joint of right ring finger, subsequent encounter|Dislocation of distal interphalangeal joint of right ring finger, subsequent encounter +C2853447|T037|AB|S63.294D|ICD10CM|Dislocation of distal interphaln joint of r rng fngr, subs|Dislocation of distal interphaln joint of r rng fngr, subs +C2853448|T037|AB|S63.294S|ICD10CM|Disloc of distal interphaln joint of r rng fngr, sequela|Disloc of distal interphaln joint of r rng fngr, sequela +C2853448|T037|PT|S63.294S|ICD10CM|Dislocation of distal interphalangeal joint of right ring finger, sequela|Dislocation of distal interphalangeal joint of right ring finger, sequela +C2853449|T037|AB|S63.295|ICD10CM|Dislocation of distal interphalangeal joint of l rng fngr|Dislocation of distal interphalangeal joint of l rng fngr +C2853449|T037|HT|S63.295|ICD10CM|Dislocation of distal interphalangeal joint of left ring finger|Dislocation of distal interphalangeal joint of left ring finger +C2853450|T037|PT|S63.295A|ICD10CM|Dislocation of distal interphalangeal joint of left ring finger, initial encounter|Dislocation of distal interphalangeal joint of left ring finger, initial encounter +C2853450|T037|AB|S63.295A|ICD10CM|Dislocation of distal interphaln joint of l rng fngr, init|Dislocation of distal interphaln joint of l rng fngr, init +C2853451|T037|PT|S63.295D|ICD10CM|Dislocation of distal interphalangeal joint of left ring finger, subsequent encounter|Dislocation of distal interphalangeal joint of left ring finger, subsequent encounter +C2853451|T037|AB|S63.295D|ICD10CM|Dislocation of distal interphaln joint of l rng fngr, subs|Dislocation of distal interphaln joint of l rng fngr, subs +C2853452|T037|AB|S63.295S|ICD10CM|Disloc of distal interphaln joint of l rng fngr, sequela|Disloc of distal interphaln joint of l rng fngr, sequela +C2853452|T037|PT|S63.295S|ICD10CM|Dislocation of distal interphalangeal joint of left ring finger, sequela|Dislocation of distal interphalangeal joint of left ring finger, sequela +C2853453|T037|HT|S63.296|ICD10CM|Dislocation of distal interphalangeal joint of right little finger|Dislocation of distal interphalangeal joint of right little finger +C2853453|T037|AB|S63.296|ICD10CM|Dislocation of distal interphaln joint of r little finger|Dislocation of distal interphaln joint of r little finger +C2853454|T037|AB|S63.296A|ICD10CM|Disloc of distal interphaln joint of r little finger, init|Disloc of distal interphaln joint of r little finger, init +C2853454|T037|PT|S63.296A|ICD10CM|Dislocation of distal interphalangeal joint of right little finger, initial encounter|Dislocation of distal interphalangeal joint of right little finger, initial encounter +C2853455|T037|AB|S63.296D|ICD10CM|Disloc of distal interphaln joint of r little finger, subs|Disloc of distal interphaln joint of r little finger, subs +C2853455|T037|PT|S63.296D|ICD10CM|Dislocation of distal interphalangeal joint of right little finger, subsequent encounter|Dislocation of distal interphalangeal joint of right little finger, subsequent encounter +C2853456|T037|AB|S63.296S|ICD10CM|Disloc of distal interphaln joint of r little finger, sqla|Disloc of distal interphaln joint of r little finger, sqla +C2853456|T037|PT|S63.296S|ICD10CM|Dislocation of distal interphalangeal joint of right little finger, sequela|Dislocation of distal interphalangeal joint of right little finger, sequela +C2853457|T037|HT|S63.297|ICD10CM|Dislocation of distal interphalangeal joint of left little finger|Dislocation of distal interphalangeal joint of left little finger +C2853457|T037|AB|S63.297|ICD10CM|Dislocation of distal interphaln joint of l little finger|Dislocation of distal interphaln joint of l little finger +C2853458|T037|AB|S63.297A|ICD10CM|Disloc of distal interphaln joint of l little finger, init|Disloc of distal interphaln joint of l little finger, init +C2853458|T037|PT|S63.297A|ICD10CM|Dislocation of distal interphalangeal joint of left little finger, initial encounter|Dislocation of distal interphalangeal joint of left little finger, initial encounter +C2853459|T037|AB|S63.297D|ICD10CM|Disloc of distal interphaln joint of l little finger, subs|Disloc of distal interphaln joint of l little finger, subs +C2853459|T037|PT|S63.297D|ICD10CM|Dislocation of distal interphalangeal joint of left little finger, subsequent encounter|Dislocation of distal interphalangeal joint of left little finger, subsequent encounter +C2853460|T037|AB|S63.297S|ICD10CM|Disloc of distal interphaln joint of l little finger, sqla|Disloc of distal interphaln joint of l little finger, sqla +C2853460|T037|PT|S63.297S|ICD10CM|Dislocation of distal interphalangeal joint of left little finger, sequela|Dislocation of distal interphalangeal joint of left little finger, sequela +C2853462|T037|AB|S63.298|ICD10CM|Dislocation of distal interphalangeal joint of other finger|Dislocation of distal interphalangeal joint of other finger +C2853462|T037|HT|S63.298|ICD10CM|Dislocation of distal interphalangeal joint of other finger|Dislocation of distal interphalangeal joint of other finger +C2853461|T037|ET|S63.298|ICD10CM|Dislocation of distal interphalangeal joint of specified finger with unspecified laterality|Dislocation of distal interphalangeal joint of specified finger with unspecified laterality +C2853463|T037|AB|S63.298A|ICD10CM|Dislocation of distal interphalangeal joint of finger, init|Dislocation of distal interphalangeal joint of finger, init +C2853463|T037|PT|S63.298A|ICD10CM|Dislocation of distal interphalangeal joint of other finger, initial encounter|Dislocation of distal interphalangeal joint of other finger, initial encounter +C2853464|T037|AB|S63.298D|ICD10CM|Dislocation of distal interphalangeal joint of finger, subs|Dislocation of distal interphalangeal joint of finger, subs +C2853464|T037|PT|S63.298D|ICD10CM|Dislocation of distal interphalangeal joint of other finger, subsequent encounter|Dislocation of distal interphalangeal joint of other finger, subsequent encounter +C2853465|T037|PT|S63.298S|ICD10CM|Dislocation of distal interphalangeal joint of other finger, sequela|Dislocation of distal interphalangeal joint of other finger, sequela +C2853465|T037|AB|S63.298S|ICD10CM|Dislocation of distal interphaln joint of finger, sequela|Dislocation of distal interphaln joint of finger, sequela +C2853466|T037|AB|S63.299|ICD10CM|Dislocation of distal interphalangeal joint of unsp finger|Dislocation of distal interphalangeal joint of unsp finger +C2853466|T037|HT|S63.299|ICD10CM|Dislocation of distal interphalangeal joint of unspecified finger|Dislocation of distal interphalangeal joint of unspecified finger +C2853467|T037|PT|S63.299A|ICD10CM|Dislocation of distal interphalangeal joint of unspecified finger, initial encounter|Dislocation of distal interphalangeal joint of unspecified finger, initial encounter +C2853467|T037|AB|S63.299A|ICD10CM|Dislocation of distal interphaln joint of unsp finger, init|Dislocation of distal interphaln joint of unsp finger, init +C2853468|T037|PT|S63.299D|ICD10CM|Dislocation of distal interphalangeal joint of unspecified finger, subsequent encounter|Dislocation of distal interphalangeal joint of unspecified finger, subsequent encounter +C2853468|T037|AB|S63.299D|ICD10CM|Dislocation of distal interphaln joint of unsp finger, subs|Dislocation of distal interphaln joint of unsp finger, subs +C2853469|T037|AB|S63.299S|ICD10CM|Disloc of distal interphaln joint of unsp finger, sequela|Disloc of distal interphaln joint of unsp finger, sequela +C2853469|T037|PT|S63.299S|ICD10CM|Dislocation of distal interphalangeal joint of unspecified finger, sequela|Dislocation of distal interphalangeal joint of unspecified finger, sequela +C1406448|T037|HT|S63.3|ICD10CM|Traumatic rupture of ligament of wrist|Traumatic rupture of ligament of wrist +C1406448|T037|AB|S63.3|ICD10CM|Traumatic rupture of ligament of wrist|Traumatic rupture of ligament of wrist +C0495904|T037|PT|S63.3|ICD10|Traumatic rupture of ligament of wrist and carpus|Traumatic rupture of ligament of wrist and carpus +C2853470|T037|AB|S63.30|ICD10CM|Traumatic rupture of unspecified ligament of wrist|Traumatic rupture of unspecified ligament of wrist +C2853470|T037|HT|S63.30|ICD10CM|Traumatic rupture of unspecified ligament of wrist|Traumatic rupture of unspecified ligament of wrist +C2853471|T037|AB|S63.301|ICD10CM|Traumatic rupture of unspecified ligament of right wrist|Traumatic rupture of unspecified ligament of right wrist +C2853471|T037|HT|S63.301|ICD10CM|Traumatic rupture of unspecified ligament of right wrist|Traumatic rupture of unspecified ligament of right wrist +C2853472|T037|AB|S63.301A|ICD10CM|Traumatic rupture of unsp ligament of right wrist, init|Traumatic rupture of unsp ligament of right wrist, init +C2853472|T037|PT|S63.301A|ICD10CM|Traumatic rupture of unspecified ligament of right wrist, initial encounter|Traumatic rupture of unspecified ligament of right wrist, initial encounter +C2853473|T037|AB|S63.301D|ICD10CM|Traumatic rupture of unsp ligament of right wrist, subs|Traumatic rupture of unsp ligament of right wrist, subs +C2853473|T037|PT|S63.301D|ICD10CM|Traumatic rupture of unspecified ligament of right wrist, subsequent encounter|Traumatic rupture of unspecified ligament of right wrist, subsequent encounter +C2853474|T037|AB|S63.301S|ICD10CM|Traumatic rupture of unsp ligament of right wrist, sequela|Traumatic rupture of unsp ligament of right wrist, sequela +C2853474|T037|PT|S63.301S|ICD10CM|Traumatic rupture of unspecified ligament of right wrist, sequela|Traumatic rupture of unspecified ligament of right wrist, sequela +C2853475|T037|AB|S63.302|ICD10CM|Traumatic rupture of unspecified ligament of left wrist|Traumatic rupture of unspecified ligament of left wrist +C2853475|T037|HT|S63.302|ICD10CM|Traumatic rupture of unspecified ligament of left wrist|Traumatic rupture of unspecified ligament of left wrist +C2853476|T037|AB|S63.302A|ICD10CM|Traumatic rupture of unsp ligament of left wrist, init|Traumatic rupture of unsp ligament of left wrist, init +C2853476|T037|PT|S63.302A|ICD10CM|Traumatic rupture of unspecified ligament of left wrist, initial encounter|Traumatic rupture of unspecified ligament of left wrist, initial encounter +C2853477|T037|AB|S63.302D|ICD10CM|Traumatic rupture of unsp ligament of left wrist, subs|Traumatic rupture of unsp ligament of left wrist, subs +C2853477|T037|PT|S63.302D|ICD10CM|Traumatic rupture of unspecified ligament of left wrist, subsequent encounter|Traumatic rupture of unspecified ligament of left wrist, subsequent encounter +C2853478|T037|AB|S63.302S|ICD10CM|Traumatic rupture of unsp ligament of left wrist, sequela|Traumatic rupture of unsp ligament of left wrist, sequela +C2853478|T037|PT|S63.302S|ICD10CM|Traumatic rupture of unspecified ligament of left wrist, sequela|Traumatic rupture of unspecified ligament of left wrist, sequela +C2853479|T037|AB|S63.309|ICD10CM|Traumatic rupture of unsp ligament of unspecified wrist|Traumatic rupture of unsp ligament of unspecified wrist +C2853479|T037|HT|S63.309|ICD10CM|Traumatic rupture of unspecified ligament of unspecified wrist|Traumatic rupture of unspecified ligament of unspecified wrist +C2853480|T037|AB|S63.309A|ICD10CM|Traumatic rupture of unsp ligament of unsp wrist, init|Traumatic rupture of unsp ligament of unsp wrist, init +C2853480|T037|PT|S63.309A|ICD10CM|Traumatic rupture of unspecified ligament of unspecified wrist, initial encounter|Traumatic rupture of unspecified ligament of unspecified wrist, initial encounter +C2853481|T037|AB|S63.309D|ICD10CM|Traumatic rupture of unsp ligament of unsp wrist, subs|Traumatic rupture of unsp ligament of unsp wrist, subs +C2853481|T037|PT|S63.309D|ICD10CM|Traumatic rupture of unspecified ligament of unspecified wrist, subsequent encounter|Traumatic rupture of unspecified ligament of unspecified wrist, subsequent encounter +C2853482|T037|AB|S63.309S|ICD10CM|Traumatic rupture of unsp ligament of unsp wrist, sequela|Traumatic rupture of unsp ligament of unsp wrist, sequela +C2853482|T037|PT|S63.309S|ICD10CM|Traumatic rupture of unspecified ligament of unspecified wrist, sequela|Traumatic rupture of unspecified ligament of unspecified wrist, sequela +C1406444|T037|HT|S63.31|ICD10CM|Traumatic rupture of collateral ligament of wrist|Traumatic rupture of collateral ligament of wrist +C1406444|T037|AB|S63.31|ICD10CM|Traumatic rupture of collateral ligament of wrist|Traumatic rupture of collateral ligament of wrist +C2853483|T037|AB|S63.311|ICD10CM|Traumatic rupture of collateral ligament of right wrist|Traumatic rupture of collateral ligament of right wrist +C2853483|T037|HT|S63.311|ICD10CM|Traumatic rupture of collateral ligament of right wrist|Traumatic rupture of collateral ligament of right wrist +C2853484|T037|AB|S63.311A|ICD10CM|Traumatic rupture of collateral ligament of r wrist, init|Traumatic rupture of collateral ligament of r wrist, init +C2853484|T037|PT|S63.311A|ICD10CM|Traumatic rupture of collateral ligament of right wrist, initial encounter|Traumatic rupture of collateral ligament of right wrist, initial encounter +C2853485|T037|AB|S63.311D|ICD10CM|Traumatic rupture of collateral ligament of r wrist, subs|Traumatic rupture of collateral ligament of r wrist, subs +C2853485|T037|PT|S63.311D|ICD10CM|Traumatic rupture of collateral ligament of right wrist, subsequent encounter|Traumatic rupture of collateral ligament of right wrist, subsequent encounter +C2853486|T037|AB|S63.311S|ICD10CM|Traumatic rupture of collateral ligament of r wrist, sequela|Traumatic rupture of collateral ligament of r wrist, sequela +C2853486|T037|PT|S63.311S|ICD10CM|Traumatic rupture of collateral ligament of right wrist, sequela|Traumatic rupture of collateral ligament of right wrist, sequela +C2853487|T037|AB|S63.312|ICD10CM|Traumatic rupture of collateral ligament of left wrist|Traumatic rupture of collateral ligament of left wrist +C2853487|T037|HT|S63.312|ICD10CM|Traumatic rupture of collateral ligament of left wrist|Traumatic rupture of collateral ligament of left wrist +C2853488|T037|AB|S63.312A|ICD10CM|Traumatic rupture of collateral ligament of left wrist, init|Traumatic rupture of collateral ligament of left wrist, init +C2853488|T037|PT|S63.312A|ICD10CM|Traumatic rupture of collateral ligament of left wrist, initial encounter|Traumatic rupture of collateral ligament of left wrist, initial encounter +C2853489|T037|AB|S63.312D|ICD10CM|Traumatic rupture of collateral ligament of left wrist, subs|Traumatic rupture of collateral ligament of left wrist, subs +C2853489|T037|PT|S63.312D|ICD10CM|Traumatic rupture of collateral ligament of left wrist, subsequent encounter|Traumatic rupture of collateral ligament of left wrist, subsequent encounter +C2853490|T037|AB|S63.312S|ICD10CM|Traumatic rupture of collat ligament of left wrist, sequela|Traumatic rupture of collat ligament of left wrist, sequela +C2853490|T037|PT|S63.312S|ICD10CM|Traumatic rupture of collateral ligament of left wrist, sequela|Traumatic rupture of collateral ligament of left wrist, sequela +C2853491|T037|AB|S63.319|ICD10CM|Traumatic rupture of collateral ligament of unsp wrist|Traumatic rupture of collateral ligament of unsp wrist +C2853491|T037|HT|S63.319|ICD10CM|Traumatic rupture of collateral ligament of unspecified wrist|Traumatic rupture of collateral ligament of unspecified wrist +C2853492|T037|AB|S63.319A|ICD10CM|Traumatic rupture of collateral ligament of unsp wrist, init|Traumatic rupture of collateral ligament of unsp wrist, init +C2853492|T037|PT|S63.319A|ICD10CM|Traumatic rupture of collateral ligament of unspecified wrist, initial encounter|Traumatic rupture of collateral ligament of unspecified wrist, initial encounter +C2853493|T037|AB|S63.319D|ICD10CM|Traumatic rupture of collateral ligament of unsp wrist, subs|Traumatic rupture of collateral ligament of unsp wrist, subs +C2853493|T037|PT|S63.319D|ICD10CM|Traumatic rupture of collateral ligament of unspecified wrist, subsequent encounter|Traumatic rupture of collateral ligament of unspecified wrist, subsequent encounter +C2853494|T037|AB|S63.319S|ICD10CM|Traumatic rupture of collat ligament of unsp wrist, sequela|Traumatic rupture of collat ligament of unsp wrist, sequela +C2853494|T037|PT|S63.319S|ICD10CM|Traumatic rupture of collateral ligament of unspecified wrist, sequela|Traumatic rupture of collateral ligament of unspecified wrist, sequela +C1406449|T037|HT|S63.32|ICD10CM|Traumatic rupture of radiocarpal ligament|Traumatic rupture of radiocarpal ligament +C1406449|T037|AB|S63.32|ICD10CM|Traumatic rupture of radiocarpal ligament|Traumatic rupture of radiocarpal ligament +C2853495|T037|AB|S63.321|ICD10CM|Traumatic rupture of right radiocarpal ligament|Traumatic rupture of right radiocarpal ligament +C2853495|T037|HT|S63.321|ICD10CM|Traumatic rupture of right radiocarpal ligament|Traumatic rupture of right radiocarpal ligament +C2853496|T037|AB|S63.321A|ICD10CM|Traumatic rupture of right radiocarpal ligament, init encntr|Traumatic rupture of right radiocarpal ligament, init encntr +C2853496|T037|PT|S63.321A|ICD10CM|Traumatic rupture of right radiocarpal ligament, initial encounter|Traumatic rupture of right radiocarpal ligament, initial encounter +C2853497|T037|AB|S63.321D|ICD10CM|Traumatic rupture of right radiocarpal ligament, subs encntr|Traumatic rupture of right radiocarpal ligament, subs encntr +C2853497|T037|PT|S63.321D|ICD10CM|Traumatic rupture of right radiocarpal ligament, subsequent encounter|Traumatic rupture of right radiocarpal ligament, subsequent encounter +C2853498|T037|AB|S63.321S|ICD10CM|Traumatic rupture of right radiocarpal ligament, sequela|Traumatic rupture of right radiocarpal ligament, sequela +C2853498|T037|PT|S63.321S|ICD10CM|Traumatic rupture of right radiocarpal ligament, sequela|Traumatic rupture of right radiocarpal ligament, sequela +C2853499|T037|AB|S63.322|ICD10CM|Traumatic rupture of left radiocarpal ligament|Traumatic rupture of left radiocarpal ligament +C2853499|T037|HT|S63.322|ICD10CM|Traumatic rupture of left radiocarpal ligament|Traumatic rupture of left radiocarpal ligament +C2853500|T037|AB|S63.322A|ICD10CM|Traumatic rupture of left radiocarpal ligament, init encntr|Traumatic rupture of left radiocarpal ligament, init encntr +C2853500|T037|PT|S63.322A|ICD10CM|Traumatic rupture of left radiocarpal ligament, initial encounter|Traumatic rupture of left radiocarpal ligament, initial encounter +C2853501|T037|AB|S63.322D|ICD10CM|Traumatic rupture of left radiocarpal ligament, subs encntr|Traumatic rupture of left radiocarpal ligament, subs encntr +C2853501|T037|PT|S63.322D|ICD10CM|Traumatic rupture of left radiocarpal ligament, subsequent encounter|Traumatic rupture of left radiocarpal ligament, subsequent encounter +C2853502|T037|AB|S63.322S|ICD10CM|Traumatic rupture of left radiocarpal ligament, sequela|Traumatic rupture of left radiocarpal ligament, sequela +C2853502|T037|PT|S63.322S|ICD10CM|Traumatic rupture of left radiocarpal ligament, sequela|Traumatic rupture of left radiocarpal ligament, sequela +C2853503|T037|AB|S63.329|ICD10CM|Traumatic rupture of unspecified radiocarpal ligament|Traumatic rupture of unspecified radiocarpal ligament +C2853503|T037|HT|S63.329|ICD10CM|Traumatic rupture of unspecified radiocarpal ligament|Traumatic rupture of unspecified radiocarpal ligament +C2853504|T037|AB|S63.329A|ICD10CM|Traumatic rupture of unsp radiocarpal ligament, init encntr|Traumatic rupture of unsp radiocarpal ligament, init encntr +C2853504|T037|PT|S63.329A|ICD10CM|Traumatic rupture of unspecified radiocarpal ligament, initial encounter|Traumatic rupture of unspecified radiocarpal ligament, initial encounter +C2853505|T037|AB|S63.329D|ICD10CM|Traumatic rupture of unsp radiocarpal ligament, subs encntr|Traumatic rupture of unsp radiocarpal ligament, subs encntr +C2853505|T037|PT|S63.329D|ICD10CM|Traumatic rupture of unspecified radiocarpal ligament, subsequent encounter|Traumatic rupture of unspecified radiocarpal ligament, subsequent encounter +C2853506|T037|AB|S63.329S|ICD10CM|Traumatic rupture of unsp radiocarpal ligament, sequela|Traumatic rupture of unsp radiocarpal ligament, sequela +C2853506|T037|PT|S63.329S|ICD10CM|Traumatic rupture of unspecified radiocarpal ligament, sequela|Traumatic rupture of unspecified radiocarpal ligament, sequela +C2853507|T037|AB|S63.33|ICD10CM|Traumatic rupture of ulnocarpal (palmar) ligament|Traumatic rupture of ulnocarpal (palmar) ligament +C2853507|T037|HT|S63.33|ICD10CM|Traumatic rupture of ulnocarpal (palmar) ligament|Traumatic rupture of ulnocarpal (palmar) ligament +C2853508|T037|AB|S63.331|ICD10CM|Traumatic rupture of right ulnocarpal (palmar) ligament|Traumatic rupture of right ulnocarpal (palmar) ligament +C2853508|T037|HT|S63.331|ICD10CM|Traumatic rupture of right ulnocarpal (palmar) ligament|Traumatic rupture of right ulnocarpal (palmar) ligament +C2853509|T037|AB|S63.331A|ICD10CM|Traum rupture of right ulnocarpal (palmar) ligament, init|Traum rupture of right ulnocarpal (palmar) ligament, init +C2853509|T037|PT|S63.331A|ICD10CM|Traumatic rupture of right ulnocarpal (palmar) ligament, initial encounter|Traumatic rupture of right ulnocarpal (palmar) ligament, initial encounter +C2853510|T037|AB|S63.331D|ICD10CM|Traum rupture of right ulnocarpal (palmar) ligament, subs|Traum rupture of right ulnocarpal (palmar) ligament, subs +C2853510|T037|PT|S63.331D|ICD10CM|Traumatic rupture of right ulnocarpal (palmar) ligament, subsequent encounter|Traumatic rupture of right ulnocarpal (palmar) ligament, subsequent encounter +C2853511|T037|AB|S63.331S|ICD10CM|Traum rupture of right ulnocarpal (palmar) ligament, sequela|Traum rupture of right ulnocarpal (palmar) ligament, sequela +C2853511|T037|PT|S63.331S|ICD10CM|Traumatic rupture of right ulnocarpal (palmar) ligament, sequela|Traumatic rupture of right ulnocarpal (palmar) ligament, sequela +C2853512|T037|AB|S63.332|ICD10CM|Traumatic rupture of left ulnocarpal (palmar) ligament|Traumatic rupture of left ulnocarpal (palmar) ligament +C2853512|T037|HT|S63.332|ICD10CM|Traumatic rupture of left ulnocarpal (palmar) ligament|Traumatic rupture of left ulnocarpal (palmar) ligament +C2853513|T037|AB|S63.332A|ICD10CM|Traumatic rupture of left ulnocarpal (palmar) ligament, init|Traumatic rupture of left ulnocarpal (palmar) ligament, init +C2853513|T037|PT|S63.332A|ICD10CM|Traumatic rupture of left ulnocarpal (palmar) ligament, initial encounter|Traumatic rupture of left ulnocarpal (palmar) ligament, initial encounter +C2853514|T037|AB|S63.332D|ICD10CM|Traumatic rupture of left ulnocarpal (palmar) ligament, subs|Traumatic rupture of left ulnocarpal (palmar) ligament, subs +C2853514|T037|PT|S63.332D|ICD10CM|Traumatic rupture of left ulnocarpal (palmar) ligament, subsequent encounter|Traumatic rupture of left ulnocarpal (palmar) ligament, subsequent encounter +C2853515|T037|AB|S63.332S|ICD10CM|Traum rupture of left ulnocarpal (palmar) ligament, sequela|Traum rupture of left ulnocarpal (palmar) ligament, sequela +C2853515|T037|PT|S63.332S|ICD10CM|Traumatic rupture of left ulnocarpal (palmar) ligament, sequela|Traumatic rupture of left ulnocarpal (palmar) ligament, sequela +C2853516|T037|AB|S63.339|ICD10CM|Traumatic rupture of unsp ulnocarpal (palmar) ligament|Traumatic rupture of unsp ulnocarpal (palmar) ligament +C2853516|T037|HT|S63.339|ICD10CM|Traumatic rupture of unspecified ulnocarpal (palmar) ligament|Traumatic rupture of unspecified ulnocarpal (palmar) ligament +C2853517|T037|AB|S63.339A|ICD10CM|Traumatic rupture of unsp ulnocarpal (palmar) ligament, init|Traumatic rupture of unsp ulnocarpal (palmar) ligament, init +C2853517|T037|PT|S63.339A|ICD10CM|Traumatic rupture of unspecified ulnocarpal (palmar) ligament, initial encounter|Traumatic rupture of unspecified ulnocarpal (palmar) ligament, initial encounter +C2853518|T037|AB|S63.339D|ICD10CM|Traumatic rupture of unsp ulnocarpal (palmar) ligament, subs|Traumatic rupture of unsp ulnocarpal (palmar) ligament, subs +C2853518|T037|PT|S63.339D|ICD10CM|Traumatic rupture of unspecified ulnocarpal (palmar) ligament, subsequent encounter|Traumatic rupture of unspecified ulnocarpal (palmar) ligament, subsequent encounter +C2853519|T037|AB|S63.339S|ICD10CM|Traum rupture of unsp ulnocarpal (palmar) ligament, sequela|Traum rupture of unsp ulnocarpal (palmar) ligament, sequela +C2853519|T037|PT|S63.339S|ICD10CM|Traumatic rupture of unspecified ulnocarpal (palmar) ligament, sequela|Traumatic rupture of unspecified ulnocarpal (palmar) ligament, sequela +C2853520|T037|AB|S63.39|ICD10CM|Traumatic rupture of other ligament of wrist|Traumatic rupture of other ligament of wrist +C2853520|T037|HT|S63.39|ICD10CM|Traumatic rupture of other ligament of wrist|Traumatic rupture of other ligament of wrist +C2853521|T037|AB|S63.391|ICD10CM|Traumatic rupture of other ligament of right wrist|Traumatic rupture of other ligament of right wrist +C2853521|T037|HT|S63.391|ICD10CM|Traumatic rupture of other ligament of right wrist|Traumatic rupture of other ligament of right wrist +C2853522|T037|AB|S63.391A|ICD10CM|Traumatic rupture of oth ligament of right wrist, init|Traumatic rupture of oth ligament of right wrist, init +C2853522|T037|PT|S63.391A|ICD10CM|Traumatic rupture of other ligament of right wrist, initial encounter|Traumatic rupture of other ligament of right wrist, initial encounter +C2853523|T037|AB|S63.391D|ICD10CM|Traumatic rupture of oth ligament of right wrist, subs|Traumatic rupture of oth ligament of right wrist, subs +C2853523|T037|PT|S63.391D|ICD10CM|Traumatic rupture of other ligament of right wrist, subsequent encounter|Traumatic rupture of other ligament of right wrist, subsequent encounter +C2853524|T037|AB|S63.391S|ICD10CM|Traumatic rupture of other ligament of right wrist, sequela|Traumatic rupture of other ligament of right wrist, sequela +C2853524|T037|PT|S63.391S|ICD10CM|Traumatic rupture of other ligament of right wrist, sequela|Traumatic rupture of other ligament of right wrist, sequela +C2853525|T037|AB|S63.392|ICD10CM|Traumatic rupture of other ligament of left wrist|Traumatic rupture of other ligament of left wrist +C2853525|T037|HT|S63.392|ICD10CM|Traumatic rupture of other ligament of left wrist|Traumatic rupture of other ligament of left wrist +C2853526|T037|AB|S63.392A|ICD10CM|Traumatic rupture of oth ligament of left wrist, init encntr|Traumatic rupture of oth ligament of left wrist, init encntr +C2853526|T037|PT|S63.392A|ICD10CM|Traumatic rupture of other ligament of left wrist, initial encounter|Traumatic rupture of other ligament of left wrist, initial encounter +C2853527|T037|AB|S63.392D|ICD10CM|Traumatic rupture of oth ligament of left wrist, subs encntr|Traumatic rupture of oth ligament of left wrist, subs encntr +C2853527|T037|PT|S63.392D|ICD10CM|Traumatic rupture of other ligament of left wrist, subsequent encounter|Traumatic rupture of other ligament of left wrist, subsequent encounter +C2853528|T037|AB|S63.392S|ICD10CM|Traumatic rupture of other ligament of left wrist, sequela|Traumatic rupture of other ligament of left wrist, sequela +C2853528|T037|PT|S63.392S|ICD10CM|Traumatic rupture of other ligament of left wrist, sequela|Traumatic rupture of other ligament of left wrist, sequela +C2853529|T037|AB|S63.399|ICD10CM|Traumatic rupture of other ligament of unspecified wrist|Traumatic rupture of other ligament of unspecified wrist +C2853529|T037|HT|S63.399|ICD10CM|Traumatic rupture of other ligament of unspecified wrist|Traumatic rupture of other ligament of unspecified wrist +C2853530|T037|AB|S63.399A|ICD10CM|Traumatic rupture of oth ligament of unsp wrist, init encntr|Traumatic rupture of oth ligament of unsp wrist, init encntr +C2853530|T037|PT|S63.399A|ICD10CM|Traumatic rupture of other ligament of unspecified wrist, initial encounter|Traumatic rupture of other ligament of unspecified wrist, initial encounter +C2853531|T037|AB|S63.399D|ICD10CM|Traumatic rupture of oth ligament of unsp wrist, subs encntr|Traumatic rupture of oth ligament of unsp wrist, subs encntr +C2853531|T037|PT|S63.399D|ICD10CM|Traumatic rupture of other ligament of unspecified wrist, subsequent encounter|Traumatic rupture of other ligament of unspecified wrist, subsequent encounter +C2853532|T037|AB|S63.399S|ICD10CM|Traumatic rupture of other ligament of unsp wrist, sequela|Traumatic rupture of other ligament of unsp wrist, sequela +C2853532|T037|PT|S63.399S|ICD10CM|Traumatic rupture of other ligament of unspecified wrist, sequela|Traumatic rupture of other ligament of unspecified wrist, sequela +C0495905|T037|AB|S63.4|ICD10CM|Traum rupt of ligmt of finger at MCP and interphaln joint(s)|Traum rupt of ligmt of finger at MCP and interphaln joint(s) +C0495905|T037|HT|S63.4|ICD10CM|Traumatic rupture of ligament of finger at metacarpophalangeal and interphalangeal joint(s)|Traumatic rupture of ligament of finger at metacarpophalangeal and interphalangeal joint(s) +C0495905|T037|PT|S63.4|ICD10|Traumatic rupture of ligament of finger at metacarpophalangeal and interphalangeal joint(s)|Traumatic rupture of ligament of finger at metacarpophalangeal and interphalangeal joint(s) +C2853533|T037|AB|S63.40|ICD10CM|Traumatic rupture of unsp ligament of finger at MCP/IP jt|Traumatic rupture of unsp ligament of finger at MCP/IP jt +C2853533|T037|HT|S63.40|ICD10CM|Traumatic rupture of unspecified ligament of finger at metacarpophalangeal and interphalangeal joint|Traumatic rupture of unspecified ligament of finger at metacarpophalangeal and interphalangeal joint +C2853534|T037|AB|S63.400|ICD10CM|Traum rupture of unsp ligament of r idx fngr at MCP/IP jt|Traum rupture of unsp ligament of r idx fngr at MCP/IP jt +C2853535|T037|AB|S63.400A|ICD10CM|Traum rupture of unsp ligmt of r idx fngr at MCP/IP jt, init|Traum rupture of unsp ligmt of r idx fngr at MCP/IP jt, init +C2853536|T037|AB|S63.400D|ICD10CM|Traum rupture of unsp ligmt of r idx fngr at MCP/IP jt, subs|Traum rupture of unsp ligmt of r idx fngr at MCP/IP jt, subs +C2853537|T037|AB|S63.400S|ICD10CM|Traum rupt of unsp ligmt of r idx fngr at MCP/IP jt, sequela|Traum rupt of unsp ligmt of r idx fngr at MCP/IP jt, sequela +C2853538|T037|AB|S63.401|ICD10CM|Traum rupture of unsp ligament of l idx fngr at MCP/IP jt|Traum rupture of unsp ligament of l idx fngr at MCP/IP jt +C2853539|T037|AB|S63.401A|ICD10CM|Traum rupture of unsp ligmt of l idx fngr at MCP/IP jt, init|Traum rupture of unsp ligmt of l idx fngr at MCP/IP jt, init +C2853540|T037|AB|S63.401D|ICD10CM|Traum rupture of unsp ligmt of l idx fngr at MCP/IP jt, subs|Traum rupture of unsp ligmt of l idx fngr at MCP/IP jt, subs +C2853541|T037|AB|S63.401S|ICD10CM|Traum rupt of unsp ligmt of l idx fngr at MCP/IP jt, sequela|Traum rupt of unsp ligmt of l idx fngr at MCP/IP jt, sequela +C2853542|T037|AB|S63.402|ICD10CM|Traum rupture of unsp ligament of r mid finger at MCP/IP jt|Traum rupture of unsp ligament of r mid finger at MCP/IP jt +C2853543|T037|AB|S63.402A|ICD10CM|Traum rupt of unsp ligmt of r mid finger at MCP/IP jt, init|Traum rupt of unsp ligmt of r mid finger at MCP/IP jt, init +C2853544|T037|AB|S63.402D|ICD10CM|Traum rupt of unsp ligmt of r mid finger at MCP/IP jt, subs|Traum rupt of unsp ligmt of r mid finger at MCP/IP jt, subs +C2853545|T037|AB|S63.402S|ICD10CM|Traum rupt of unsp ligmt of r mid finger at MCP/IP jt, sqla|Traum rupt of unsp ligmt of r mid finger at MCP/IP jt, sqla +C2853546|T037|AB|S63.403|ICD10CM|Traum rupture of unsp ligament of l mid finger at MCP/IP jt|Traum rupture of unsp ligament of l mid finger at MCP/IP jt +C2853547|T037|AB|S63.403A|ICD10CM|Traum rupt of unsp ligmt of l mid finger at MCP/IP jt, init|Traum rupt of unsp ligmt of l mid finger at MCP/IP jt, init +C2853548|T037|AB|S63.403D|ICD10CM|Traum rupt of unsp ligmt of l mid finger at MCP/IP jt, subs|Traum rupt of unsp ligmt of l mid finger at MCP/IP jt, subs +C2853549|T037|AB|S63.403S|ICD10CM|Traum rupt of unsp ligmt of l mid finger at MCP/IP jt, sqla|Traum rupt of unsp ligmt of l mid finger at MCP/IP jt, sqla +C2853550|T037|AB|S63.404|ICD10CM|Traum rupture of unsp ligament of r rng fngr at MCP/IP jt|Traum rupture of unsp ligament of r rng fngr at MCP/IP jt +C2853551|T037|AB|S63.404A|ICD10CM|Traum rupture of unsp ligmt of r rng fngr at MCP/IP jt, init|Traum rupture of unsp ligmt of r rng fngr at MCP/IP jt, init +C2853552|T037|AB|S63.404D|ICD10CM|Traum rupture of unsp ligmt of r rng fngr at MCP/IP jt, subs|Traum rupture of unsp ligmt of r rng fngr at MCP/IP jt, subs +C2853553|T037|AB|S63.404S|ICD10CM|Traum rupt of unsp ligmt of r rng fngr at MCP/IP jt, sequela|Traum rupt of unsp ligmt of r rng fngr at MCP/IP jt, sequela +C2853554|T037|AB|S63.405|ICD10CM|Traum rupture of unsp ligament of l rng fngr at MCP/IP jt|Traum rupture of unsp ligament of l rng fngr at MCP/IP jt +C2853555|T037|AB|S63.405A|ICD10CM|Traum rupture of unsp ligmt of l rng fngr at MCP/IP jt, init|Traum rupture of unsp ligmt of l rng fngr at MCP/IP jt, init +C2853556|T037|AB|S63.405D|ICD10CM|Traum rupture of unsp ligmt of l rng fngr at MCP/IP jt, subs|Traum rupture of unsp ligmt of l rng fngr at MCP/IP jt, subs +C2853557|T037|AB|S63.405S|ICD10CM|Traum rupt of unsp ligmt of l rng fngr at MCP/IP jt, sequela|Traum rupt of unsp ligmt of l rng fngr at MCP/IP jt, sequela +C2853558|T037|AB|S63.406|ICD10CM|Traum rupture of unsp ligmt of r little finger at MCP/IP jt|Traum rupture of unsp ligmt of r little finger at MCP/IP jt +C2853559|T037|AB|S63.406A|ICD10CM|Traum rupt of unsp ligmt of r little fngr at MCP/IP jt, init|Traum rupt of unsp ligmt of r little fngr at MCP/IP jt, init +C2853560|T037|AB|S63.406D|ICD10CM|Traum rupt of unsp ligmt of r little fngr at MCP/IP jt, subs|Traum rupt of unsp ligmt of r little fngr at MCP/IP jt, subs +C2853561|T037|AB|S63.406S|ICD10CM|Traum rupt of unsp ligmt of r little fngr at MCP/IP jt, sqla|Traum rupt of unsp ligmt of r little fngr at MCP/IP jt, sqla +C2853562|T037|AB|S63.407|ICD10CM|Traum rupture of unsp ligmt of l little finger at MCP/IP jt|Traum rupture of unsp ligmt of l little finger at MCP/IP jt +C2853563|T037|AB|S63.407A|ICD10CM|Traum rupt of unsp ligmt of l little fngr at MCP/IP jt, init|Traum rupt of unsp ligmt of l little fngr at MCP/IP jt, init +C2853564|T037|AB|S63.407D|ICD10CM|Traum rupt of unsp ligmt of l little fngr at MCP/IP jt, subs|Traum rupt of unsp ligmt of l little fngr at MCP/IP jt, subs +C2853565|T037|AB|S63.407S|ICD10CM|Traum rupt of unsp ligmt of l little fngr at MCP/IP jt, sqla|Traum rupt of unsp ligmt of l little fngr at MCP/IP jt, sqla +C2853533|T037|AB|S63.408|ICD10CM|Traumatic rupture of unsp ligament of finger at MCP/IP jt|Traumatic rupture of unsp ligament of finger at MCP/IP jt +C2853568|T037|AB|S63.408A|ICD10CM|Traum rupture of unsp ligament of finger at MCP/IP jt, init|Traum rupture of unsp ligament of finger at MCP/IP jt, init +C2853569|T037|AB|S63.408D|ICD10CM|Traum rupture of unsp ligament of finger at MCP/IP jt, subs|Traum rupture of unsp ligament of finger at MCP/IP jt, subs +C2853570|T037|AB|S63.408S|ICD10CM|Traum rupture of unsp ligmt of finger at MCP/IP jt, sequela|Traum rupture of unsp ligmt of finger at MCP/IP jt, sequela +C2853571|T037|AB|S63.409|ICD10CM|Traum rupture of unsp ligament of unsp finger at MCP/IP jt|Traum rupture of unsp ligament of unsp finger at MCP/IP jt +C2853572|T037|AB|S63.409A|ICD10CM|Traum rupt of unsp ligmt of unsp finger at MCP/IP jt, init|Traum rupt of unsp ligmt of unsp finger at MCP/IP jt, init +C2853573|T037|AB|S63.409D|ICD10CM|Traum rupt of unsp ligmt of unsp finger at MCP/IP jt, subs|Traum rupt of unsp ligmt of unsp finger at MCP/IP jt, subs +C2853574|T037|AB|S63.409S|ICD10CM|Traum rupt of unsp ligmt of unsp finger at MCP/IP jt, sqla|Traum rupt of unsp ligmt of unsp finger at MCP/IP jt, sqla +C2853575|T037|AB|S63.41|ICD10CM|Traumatic rupture of collat ligament of finger at MCP/IP jt|Traumatic rupture of collat ligament of finger at MCP/IP jt +C2853575|T037|HT|S63.41|ICD10CM|Traumatic rupture of collateral ligament of finger at metacarpophalangeal and interphalangeal joint|Traumatic rupture of collateral ligament of finger at metacarpophalangeal and interphalangeal joint +C2853576|T037|AB|S63.410|ICD10CM|Traum rupture of collat ligament of r idx fngr at MCP/IP jt|Traum rupture of collat ligament of r idx fngr at MCP/IP jt +C2853577|T037|AB|S63.410A|ICD10CM|Traum rupt of collat ligmt of r idx fngr at MCP/IP jt, init|Traum rupt of collat ligmt of r idx fngr at MCP/IP jt, init +C2853578|T037|AB|S63.410D|ICD10CM|Traum rupt of collat ligmt of r idx fngr at MCP/IP jt, subs|Traum rupt of collat ligmt of r idx fngr at MCP/IP jt, subs +C2853579|T037|AB|S63.410S|ICD10CM|Traum rupt of collat ligmt of r idx fngr at MCP/IP jt, sqla|Traum rupt of collat ligmt of r idx fngr at MCP/IP jt, sqla +C2853580|T037|AB|S63.411|ICD10CM|Traum rupture of collat ligament of l idx fngr at MCP/IP jt|Traum rupture of collat ligament of l idx fngr at MCP/IP jt +C2853581|T037|AB|S63.411A|ICD10CM|Traum rupt of collat ligmt of l idx fngr at MCP/IP jt, init|Traum rupt of collat ligmt of l idx fngr at MCP/IP jt, init +C2853582|T037|AB|S63.411D|ICD10CM|Traum rupt of collat ligmt of l idx fngr at MCP/IP jt, subs|Traum rupt of collat ligmt of l idx fngr at MCP/IP jt, subs +C2853583|T037|AB|S63.411S|ICD10CM|Traum rupt of collat ligmt of l idx fngr at MCP/IP jt, sqla|Traum rupt of collat ligmt of l idx fngr at MCP/IP jt, sqla +C2853584|T037|AB|S63.412|ICD10CM|Traum rupture of collat ligmt of r mid finger at MCP/IP jt|Traum rupture of collat ligmt of r mid finger at MCP/IP jt +C2853585|T037|AB|S63.412A|ICD10CM|Traum rupt of collat ligmt of r mid fngr at MCP/IP jt, init|Traum rupt of collat ligmt of r mid fngr at MCP/IP jt, init +C2853586|T037|AB|S63.412D|ICD10CM|Traum rupt of collat ligmt of r mid fngr at MCP/IP jt, subs|Traum rupt of collat ligmt of r mid fngr at MCP/IP jt, subs +C2853587|T037|AB|S63.412S|ICD10CM|Traum rupt of collat ligmt of r mid fngr at MCP/IP jt, sqla|Traum rupt of collat ligmt of r mid fngr at MCP/IP jt, sqla +C2853588|T037|AB|S63.413|ICD10CM|Traum rupture of collat ligmt of l mid finger at MCP/IP jt|Traum rupture of collat ligmt of l mid finger at MCP/IP jt +C2853589|T037|AB|S63.413A|ICD10CM|Traum rupt of collat ligmt of l mid fngr at MCP/IP jt, init|Traum rupt of collat ligmt of l mid fngr at MCP/IP jt, init +C2853590|T037|AB|S63.413D|ICD10CM|Traum rupt of collat ligmt of l mid fngr at MCP/IP jt, subs|Traum rupt of collat ligmt of l mid fngr at MCP/IP jt, subs +C2853591|T037|AB|S63.413S|ICD10CM|Traum rupt of collat ligmt of l mid fngr at MCP/IP jt, sqla|Traum rupt of collat ligmt of l mid fngr at MCP/IP jt, sqla +C2853592|T037|AB|S63.414|ICD10CM|Traum rupture of collat ligament of r rng fngr at MCP/IP jt|Traum rupture of collat ligament of r rng fngr at MCP/IP jt +C2853593|T037|AB|S63.414A|ICD10CM|Traum rupt of collat ligmt of r rng fngr at MCP/IP jt, init|Traum rupt of collat ligmt of r rng fngr at MCP/IP jt, init +C2853594|T037|AB|S63.414D|ICD10CM|Traum rupt of collat ligmt of r rng fngr at MCP/IP jt, subs|Traum rupt of collat ligmt of r rng fngr at MCP/IP jt, subs +C2853595|T037|AB|S63.414S|ICD10CM|Traum rupt of collat ligmt of r rng fngr at MCP/IP jt, sqla|Traum rupt of collat ligmt of r rng fngr at MCP/IP jt, sqla +C2853596|T037|AB|S63.415|ICD10CM|Traum rupture of collat ligament of l rng fngr at MCP/IP jt|Traum rupture of collat ligament of l rng fngr at MCP/IP jt +C2853597|T037|AB|S63.415A|ICD10CM|Traum rupt of collat ligmt of l rng fngr at MCP/IP jt, init|Traum rupt of collat ligmt of l rng fngr at MCP/IP jt, init +C2853598|T037|AB|S63.415D|ICD10CM|Traum rupt of collat ligmt of l rng fngr at MCP/IP jt, subs|Traum rupt of collat ligmt of l rng fngr at MCP/IP jt, subs +C2853599|T037|AB|S63.415S|ICD10CM|Traum rupt of collat ligmt of l rng fngr at MCP/IP jt, sqla|Traum rupt of collat ligmt of l rng fngr at MCP/IP jt, sqla +C2853600|T037|AB|S63.416|ICD10CM|Traum rupt of collat ligmt of r little finger at MCP/IP jt|Traum rupt of collat ligmt of r little finger at MCP/IP jt +C2853601|T037|AB|S63.416A|ICD10CM|Traum rupt of collat ligmt of r lit fngr at MCP/IP jt, init|Traum rupt of collat ligmt of r lit fngr at MCP/IP jt, init +C2853602|T037|AB|S63.416D|ICD10CM|Traum rupt of collat ligmt of r lit fngr at MCP/IP jt, subs|Traum rupt of collat ligmt of r lit fngr at MCP/IP jt, subs +C2853603|T037|AB|S63.416S|ICD10CM|Traum rupt of collat ligmt of r lit fngr at MCP/IP jt, sqla|Traum rupt of collat ligmt of r lit fngr at MCP/IP jt, sqla +C2853604|T037|AB|S63.417|ICD10CM|Traum rupt of collat ligmt of l little finger at MCP/IP jt|Traum rupt of collat ligmt of l little finger at MCP/IP jt +C2853605|T037|AB|S63.417A|ICD10CM|Traum rupt of collat ligmt of l lit fngr at MCP/IP jt, init|Traum rupt of collat ligmt of l lit fngr at MCP/IP jt, init +C2853606|T037|AB|S63.417D|ICD10CM|Traum rupt of collat ligmt of l lit fngr at MCP/IP jt, subs|Traum rupt of collat ligmt of l lit fngr at MCP/IP jt, subs +C2853607|T037|AB|S63.417S|ICD10CM|Traum rupt of collat ligmt of l lit fngr at MCP/IP jt, sqla|Traum rupt of collat ligmt of l lit fngr at MCP/IP jt, sqla +C2853609|T037|AB|S63.418|ICD10CM|Traumatic rupture of collat ligament of finger at MCP/IP jt|Traumatic rupture of collat ligament of finger at MCP/IP jt +C2853610|T037|AB|S63.418A|ICD10CM|Traum rupture of collat ligmt of finger at MCP/IP jt, init|Traum rupture of collat ligmt of finger at MCP/IP jt, init +C2853611|T037|AB|S63.418D|ICD10CM|Traum rupture of collat ligmt of finger at MCP/IP jt, subs|Traum rupture of collat ligmt of finger at MCP/IP jt, subs +C2853612|T037|AB|S63.418S|ICD10CM|Traum rupt of collat ligmt of finger at MCP/IP jt, sequela|Traum rupt of collat ligmt of finger at MCP/IP jt, sequela +C2853613|T037|AB|S63.419|ICD10CM|Traum rupture of collat ligament of unsp finger at MCP/IP jt|Traum rupture of collat ligament of unsp finger at MCP/IP jt +C2853614|T037|AB|S63.419A|ICD10CM|Traum rupt of collat ligmt of unsp finger at MCP/IP jt, init|Traum rupt of collat ligmt of unsp finger at MCP/IP jt, init +C2853615|T037|AB|S63.419D|ICD10CM|Traum rupt of collat ligmt of unsp finger at MCP/IP jt, subs|Traum rupt of collat ligmt of unsp finger at MCP/IP jt, subs +C2853616|T037|AB|S63.419S|ICD10CM|Traum rupt of collat ligmt of unsp finger at MCP/IP jt, sqla|Traum rupt of collat ligmt of unsp finger at MCP/IP jt, sqla +C2853617|T037|AB|S63.42|ICD10CM|Traumatic rupture of palmar ligament of finger at MCP/IP jt|Traumatic rupture of palmar ligament of finger at MCP/IP jt +C2853617|T037|HT|S63.42|ICD10CM|Traumatic rupture of palmar ligament of finger at metacarpophalangeal and interphalangeal joint|Traumatic rupture of palmar ligament of finger at metacarpophalangeal and interphalangeal joint +C2853618|T037|AB|S63.420|ICD10CM|Traum rupture of palmar ligament of r idx fngr at MCP/IP jt|Traum rupture of palmar ligament of r idx fngr at MCP/IP jt +C2853619|T037|AB|S63.420A|ICD10CM|Traum rupt of palmar ligmt of r idx fngr at MCP/IP jt, init|Traum rupt of palmar ligmt of r idx fngr at MCP/IP jt, init +C2853620|T037|AB|S63.420D|ICD10CM|Traum rupt of palmar ligmt of r idx fngr at MCP/IP jt, subs|Traum rupt of palmar ligmt of r idx fngr at MCP/IP jt, subs +C2853621|T037|AB|S63.420S|ICD10CM|Traum rupt of palmar ligmt of r idx fngr at MCP/IP jt, sqla|Traum rupt of palmar ligmt of r idx fngr at MCP/IP jt, sqla +C2853622|T037|AB|S63.421|ICD10CM|Traum rupture of palmar ligament of l idx fngr at MCP/IP jt|Traum rupture of palmar ligament of l idx fngr at MCP/IP jt +C2853623|T037|AB|S63.421A|ICD10CM|Traum rupt of palmar ligmt of l idx fngr at MCP/IP jt, init|Traum rupt of palmar ligmt of l idx fngr at MCP/IP jt, init +C2853624|T037|AB|S63.421D|ICD10CM|Traum rupt of palmar ligmt of l idx fngr at MCP/IP jt, subs|Traum rupt of palmar ligmt of l idx fngr at MCP/IP jt, subs +C2853625|T037|AB|S63.421S|ICD10CM|Traum rupt of palmar ligmt of l idx fngr at MCP/IP jt, sqla|Traum rupt of palmar ligmt of l idx fngr at MCP/IP jt, sqla +C2853626|T037|AB|S63.422|ICD10CM|Traum rupture of palmar ligmt of r mid finger at MCP/IP jt|Traum rupture of palmar ligmt of r mid finger at MCP/IP jt +C2853627|T037|AB|S63.422A|ICD10CM|Traum rupt of palmar ligmt of r mid fngr at MCP/IP jt, init|Traum rupt of palmar ligmt of r mid fngr at MCP/IP jt, init +C2853628|T037|AB|S63.422D|ICD10CM|Traum rupt of palmar ligmt of r mid fngr at MCP/IP jt, subs|Traum rupt of palmar ligmt of r mid fngr at MCP/IP jt, subs +C2853629|T037|AB|S63.422S|ICD10CM|Traum rupt of palmar ligmt of r mid fngr at MCP/IP jt, sqla|Traum rupt of palmar ligmt of r mid fngr at MCP/IP jt, sqla +C2853630|T037|AB|S63.423|ICD10CM|Traum rupture of palmar ligmt of l mid finger at MCP/IP jt|Traum rupture of palmar ligmt of l mid finger at MCP/IP jt +C2853631|T037|AB|S63.423A|ICD10CM|Traum rupt of palmar ligmt of l mid fngr at MCP/IP jt, init|Traum rupt of palmar ligmt of l mid fngr at MCP/IP jt, init +C2853632|T037|AB|S63.423D|ICD10CM|Traum rupt of palmar ligmt of l mid fngr at MCP/IP jt, subs|Traum rupt of palmar ligmt of l mid fngr at MCP/IP jt, subs +C2853633|T037|AB|S63.423S|ICD10CM|Traum rupt of palmar ligmt of l mid fngr at MCP/IP jt, sqla|Traum rupt of palmar ligmt of l mid fngr at MCP/IP jt, sqla +C2853634|T037|AB|S63.424|ICD10CM|Traum rupture of palmar ligament of r rng fngr at MCP/IP jt|Traum rupture of palmar ligament of r rng fngr at MCP/IP jt +C2853635|T037|AB|S63.424A|ICD10CM|Traum rupt of palmar ligmt of r rng fngr at MCP/IP jt, init|Traum rupt of palmar ligmt of r rng fngr at MCP/IP jt, init +C2853636|T037|AB|S63.424D|ICD10CM|Traum rupt of palmar ligmt of r rng fngr at MCP/IP jt, subs|Traum rupt of palmar ligmt of r rng fngr at MCP/IP jt, subs +C2853637|T037|AB|S63.424S|ICD10CM|Traum rupt of palmar ligmt of r rng fngr at MCP/IP jt, sqla|Traum rupt of palmar ligmt of r rng fngr at MCP/IP jt, sqla +C2853638|T037|AB|S63.425|ICD10CM|Traum rupture of palmar ligament of l rng fngr at MCP/IP jt|Traum rupture of palmar ligament of l rng fngr at MCP/IP jt +C2853639|T037|AB|S63.425A|ICD10CM|Traum rupt of palmar ligmt of l rng fngr at MCP/IP jt, init|Traum rupt of palmar ligmt of l rng fngr at MCP/IP jt, init +C2853640|T037|AB|S63.425D|ICD10CM|Traum rupt of palmar ligmt of l rng fngr at MCP/IP jt, subs|Traum rupt of palmar ligmt of l rng fngr at MCP/IP jt, subs +C2853641|T037|AB|S63.425S|ICD10CM|Traum rupt of palmar ligmt of l rng fngr at MCP/IP jt, sqla|Traum rupt of palmar ligmt of l rng fngr at MCP/IP jt, sqla +C2853642|T037|AB|S63.426|ICD10CM|Traum rupt of palmar ligmt of r little finger at MCP/IP jt|Traum rupt of palmar ligmt of r little finger at MCP/IP jt +C2853643|T037|AB|S63.426A|ICD10CM|Traum rupt of palmar ligmt of r lit fngr at MCP/IP jt, init|Traum rupt of palmar ligmt of r lit fngr at MCP/IP jt, init +C2853644|T037|AB|S63.426D|ICD10CM|Traum rupt of palmar ligmt of r lit fngr at MCP/IP jt, subs|Traum rupt of palmar ligmt of r lit fngr at MCP/IP jt, subs +C2853645|T037|AB|S63.426S|ICD10CM|Traum rupt of palmar ligmt of r lit fngr at MCP/IP jt, sqla|Traum rupt of palmar ligmt of r lit fngr at MCP/IP jt, sqla +C2853646|T037|AB|S63.427|ICD10CM|Traum rupt of palmar ligmt of l little finger at MCP/IP jt|Traum rupt of palmar ligmt of l little finger at MCP/IP jt +C2853647|T037|AB|S63.427A|ICD10CM|Traum rupt of palmar ligmt of l lit fngr at MCP/IP jt, init|Traum rupt of palmar ligmt of l lit fngr at MCP/IP jt, init +C2853648|T037|AB|S63.427D|ICD10CM|Traum rupt of palmar ligmt of l lit fngr at MCP/IP jt, subs|Traum rupt of palmar ligmt of l lit fngr at MCP/IP jt, subs +C2853649|T037|AB|S63.427S|ICD10CM|Traum rupt of palmar ligmt of l lit fngr at MCP/IP jt, sqla|Traum rupt of palmar ligmt of l lit fngr at MCP/IP jt, sqla +C2853651|T037|AB|S63.428|ICD10CM|Traumatic rupture of palmar ligament of finger at MCP/IP jt|Traumatic rupture of palmar ligament of finger at MCP/IP jt +C2853652|T037|AB|S63.428A|ICD10CM|Traum rupture of palmar ligmt of finger at MCP/IP jt, init|Traum rupture of palmar ligmt of finger at MCP/IP jt, init +C2853653|T037|AB|S63.428D|ICD10CM|Traum rupture of palmar ligmt of finger at MCP/IP jt, subs|Traum rupture of palmar ligmt of finger at MCP/IP jt, subs +C2853654|T037|AB|S63.428S|ICD10CM|Traum rupt of palmar ligmt of finger at MCP/IP jt, sequela|Traum rupt of palmar ligmt of finger at MCP/IP jt, sequela +C2853655|T037|AB|S63.429|ICD10CM|Traum rupture of palmar ligament of unsp finger at MCP/IP jt|Traum rupture of palmar ligament of unsp finger at MCP/IP jt +C2853656|T037|AB|S63.429A|ICD10CM|Traum rupt of palmar ligmt of unsp finger at MCP/IP jt, init|Traum rupt of palmar ligmt of unsp finger at MCP/IP jt, init +C2853657|T037|AB|S63.429D|ICD10CM|Traum rupt of palmar ligmt of unsp finger at MCP/IP jt, subs|Traum rupt of palmar ligmt of unsp finger at MCP/IP jt, subs +C2853658|T037|AB|S63.429S|ICD10CM|Traum rupt of palmar ligmt of unsp finger at MCP/IP jt, sqla|Traum rupt of palmar ligmt of unsp finger at MCP/IP jt, sqla +C2853659|T037|AB|S63.43|ICD10CM|Traumatic rupture of volar plate of finger at MCP/IP jt|Traumatic rupture of volar plate of finger at MCP/IP jt +C2853659|T037|HT|S63.43|ICD10CM|Traumatic rupture of volar plate of finger at metacarpophalangeal and interphalangeal joint|Traumatic rupture of volar plate of finger at metacarpophalangeal and interphalangeal joint +C2853660|T037|AB|S63.430|ICD10CM|Traumatic rupture of volar plate of r idx fngr at MCP/IP jt|Traumatic rupture of volar plate of r idx fngr at MCP/IP jt +C2853661|T037|AB|S63.430A|ICD10CM|Traum rupt of volar plate of r idx fngr at MCP/IP jt, init|Traum rupt of volar plate of r idx fngr at MCP/IP jt, init +C2853662|T037|AB|S63.430D|ICD10CM|Traum rupt of volar plate of r idx fngr at MCP/IP jt, subs|Traum rupt of volar plate of r idx fngr at MCP/IP jt, subs +C2853663|T037|AB|S63.430S|ICD10CM|Traum rupt of volar plate of r idx fngr at MCP/IP jt, sqla|Traum rupt of volar plate of r idx fngr at MCP/IP jt, sqla +C2853664|T037|AB|S63.431|ICD10CM|Traumatic rupture of volar plate of l idx fngr at MCP/IP jt|Traumatic rupture of volar plate of l idx fngr at MCP/IP jt +C2853665|T037|AB|S63.431A|ICD10CM|Traum rupt of volar plate of l idx fngr at MCP/IP jt, init|Traum rupt of volar plate of l idx fngr at MCP/IP jt, init +C2853666|T037|AB|S63.431D|ICD10CM|Traum rupt of volar plate of l idx fngr at MCP/IP jt, subs|Traum rupt of volar plate of l idx fngr at MCP/IP jt, subs +C2853667|T037|AB|S63.431S|ICD10CM|Traum rupt of volar plate of l idx fngr at MCP/IP jt, sqla|Traum rupt of volar plate of l idx fngr at MCP/IP jt, sqla +C2853668|T037|AB|S63.432|ICD10CM|Traum rupture of volar plate of r mid finger at MCP/IP jt|Traum rupture of volar plate of r mid finger at MCP/IP jt +C2853669|T037|AB|S63.432A|ICD10CM|Traum rupt of volar plate of r mid finger at MCP/IP jt, init|Traum rupt of volar plate of r mid finger at MCP/IP jt, init +C2853670|T037|AB|S63.432D|ICD10CM|Traum rupt of volar plate of r mid finger at MCP/IP jt, subs|Traum rupt of volar plate of r mid finger at MCP/IP jt, subs +C2853671|T037|AB|S63.432S|ICD10CM|Traum rupt of volar plate of r mid finger at MCP/IP jt, sqla|Traum rupt of volar plate of r mid finger at MCP/IP jt, sqla +C2853672|T037|AB|S63.433|ICD10CM|Traum rupture of volar plate of l mid finger at MCP/IP jt|Traum rupture of volar plate of l mid finger at MCP/IP jt +C2853673|T037|AB|S63.433A|ICD10CM|Traum rupt of volar plate of l mid finger at MCP/IP jt, init|Traum rupt of volar plate of l mid finger at MCP/IP jt, init +C2853674|T037|AB|S63.433D|ICD10CM|Traum rupt of volar plate of l mid finger at MCP/IP jt, subs|Traum rupt of volar plate of l mid finger at MCP/IP jt, subs +C2853675|T037|AB|S63.433S|ICD10CM|Traum rupt of volar plate of l mid finger at MCP/IP jt, sqla|Traum rupt of volar plate of l mid finger at MCP/IP jt, sqla +C2853676|T037|AB|S63.434|ICD10CM|Traumatic rupture of volar plate of r rng fngr at MCP/IP jt|Traumatic rupture of volar plate of r rng fngr at MCP/IP jt +C2853677|T037|AB|S63.434A|ICD10CM|Traum rupt of volar plate of r rng fngr at MCP/IP jt, init|Traum rupt of volar plate of r rng fngr at MCP/IP jt, init +C2853678|T037|AB|S63.434D|ICD10CM|Traum rupt of volar plate of r rng fngr at MCP/IP jt, subs|Traum rupt of volar plate of r rng fngr at MCP/IP jt, subs +C2853679|T037|AB|S63.434S|ICD10CM|Traum rupt of volar plate of r rng fngr at MCP/IP jt, sqla|Traum rupt of volar plate of r rng fngr at MCP/IP jt, sqla +C2853680|T037|AB|S63.435|ICD10CM|Traumatic rupture of volar plate of l rng fngr at MCP/IP jt|Traumatic rupture of volar plate of l rng fngr at MCP/IP jt +C2853681|T037|AB|S63.435A|ICD10CM|Traum rupt of volar plate of l rng fngr at MCP/IP jt, init|Traum rupt of volar plate of l rng fngr at MCP/IP jt, init +C2853682|T037|AB|S63.435D|ICD10CM|Traum rupt of volar plate of l rng fngr at MCP/IP jt, subs|Traum rupt of volar plate of l rng fngr at MCP/IP jt, subs +C2853683|T037|AB|S63.435S|ICD10CM|Traum rupt of volar plate of l rng fngr at MCP/IP jt, sqla|Traum rupt of volar plate of l rng fngr at MCP/IP jt, sqla +C2853684|T037|AB|S63.436|ICD10CM|Traum rupture of volar plate of r little finger at MCP/IP jt|Traum rupture of volar plate of r little finger at MCP/IP jt +C2853685|T037|AB|S63.436A|ICD10CM|Traum rupt of volar plate of r lit fngr at MCP/IP jt, init|Traum rupt of volar plate of r lit fngr at MCP/IP jt, init +C2853686|T037|AB|S63.436D|ICD10CM|Traum rupt of volar plate of r lit fngr at MCP/IP jt, subs|Traum rupt of volar plate of r lit fngr at MCP/IP jt, subs +C2853687|T037|AB|S63.436S|ICD10CM|Traum rupt of volar plate of r lit fngr at MCP/IP jt, sqla|Traum rupt of volar plate of r lit fngr at MCP/IP jt, sqla +C2853688|T037|AB|S63.437|ICD10CM|Traum rupture of volar plate of l little finger at MCP/IP jt|Traum rupture of volar plate of l little finger at MCP/IP jt +C2853689|T037|AB|S63.437A|ICD10CM|Traum rupt of volar plate of l lit fngr at MCP/IP jt, init|Traum rupt of volar plate of l lit fngr at MCP/IP jt, init +C2853690|T037|AB|S63.437D|ICD10CM|Traum rupt of volar plate of l lit fngr at MCP/IP jt, subs|Traum rupt of volar plate of l lit fngr at MCP/IP jt, subs +C2853691|T037|AB|S63.437S|ICD10CM|Traum rupt of volar plate of l lit fngr at MCP/IP jt, sqla|Traum rupt of volar plate of l lit fngr at MCP/IP jt, sqla +C2853659|T037|AB|S63.438|ICD10CM|Traumatic rupture of volar plate of finger at MCP/IP jt|Traumatic rupture of volar plate of finger at MCP/IP jt +C2853659|T037|HT|S63.438|ICD10CM|Traumatic rupture of volar plate of other finger at metacarpophalangeal and interphalangeal joint|Traumatic rupture of volar plate of other finger at metacarpophalangeal and interphalangeal joint +C2853694|T037|AB|S63.438A|ICD10CM|Traum rupture of volar plate of finger at MCP/IP jt, init|Traum rupture of volar plate of finger at MCP/IP jt, init +C2853695|T037|AB|S63.438D|ICD10CM|Traum rupture of volar plate of finger at MCP/IP jt, subs|Traum rupture of volar plate of finger at MCP/IP jt, subs +C2853696|T037|AB|S63.438S|ICD10CM|Traum rupture of volar plate of finger at MCP/IP jt, sequela|Traum rupture of volar plate of finger at MCP/IP jt, sequela +C2853697|T037|AB|S63.439|ICD10CM|Traumatic rupture of volar plate of unsp finger at MCP/IP jt|Traumatic rupture of volar plate of unsp finger at MCP/IP jt +C2853698|T037|AB|S63.439A|ICD10CM|Traum rupt of volar plate of unsp finger at MCP/IP jt, init|Traum rupt of volar plate of unsp finger at MCP/IP jt, init +C2853699|T037|AB|S63.439D|ICD10CM|Traum rupt of volar plate of unsp finger at MCP/IP jt, subs|Traum rupt of volar plate of unsp finger at MCP/IP jt, subs +C2853700|T037|AB|S63.439S|ICD10CM|Traum rupt of volar plate of unsp finger at MCP/IP jt, sqla|Traum rupt of volar plate of unsp finger at MCP/IP jt, sqla +C2853701|T037|AB|S63.49|ICD10CM|Traumatic rupture of ligament of finger at MCP/IP jt|Traumatic rupture of ligament of finger at MCP/IP jt +C2853701|T037|HT|S63.49|ICD10CM|Traumatic rupture of other ligament of finger at metacarpophalangeal and interphalangeal joint|Traumatic rupture of other ligament of finger at metacarpophalangeal and interphalangeal joint +C2853702|T037|AB|S63.490|ICD10CM|Traumatic rupture of ligament of r idx fngr at MCP/IP jt|Traumatic rupture of ligament of r idx fngr at MCP/IP jt +C2853703|T037|AB|S63.490A|ICD10CM|Traum rupture of ligament of r idx fngr at MCP/IP jt, init|Traum rupture of ligament of r idx fngr at MCP/IP jt, init +C2853704|T037|AB|S63.490D|ICD10CM|Traum rupture of ligament of r idx fngr at MCP/IP jt, subs|Traum rupture of ligament of r idx fngr at MCP/IP jt, subs +C2853705|T037|AB|S63.490S|ICD10CM|Traum rupture of ligmt of r idx fngr at MCP/IP jt, sequela|Traum rupture of ligmt of r idx fngr at MCP/IP jt, sequela +C2853706|T037|AB|S63.491|ICD10CM|Traumatic rupture of ligament of l idx fngr at MCP/IP jt|Traumatic rupture of ligament of l idx fngr at MCP/IP jt +C2853707|T037|AB|S63.491A|ICD10CM|Traum rupture of ligament of l idx fngr at MCP/IP jt, init|Traum rupture of ligament of l idx fngr at MCP/IP jt, init +C2853708|T037|AB|S63.491D|ICD10CM|Traum rupture of ligament of l idx fngr at MCP/IP jt, subs|Traum rupture of ligament of l idx fngr at MCP/IP jt, subs +C2853709|T037|AB|S63.491S|ICD10CM|Traum rupture of ligmt of l idx fngr at MCP/IP jt, sequela|Traum rupture of ligmt of l idx fngr at MCP/IP jt, sequela +C2854123|T037|AB|S63.492|ICD10CM|Traumatic rupture of ligament of r mid finger at MCP/IP jt|Traumatic rupture of ligament of r mid finger at MCP/IP jt +C2854124|T037|AB|S63.492A|ICD10CM|Traum rupture of ligament of r mid finger at MCP/IP jt, init|Traum rupture of ligament of r mid finger at MCP/IP jt, init +C2854125|T037|AB|S63.492D|ICD10CM|Traum rupture of ligament of r mid finger at MCP/IP jt, subs|Traum rupture of ligament of r mid finger at MCP/IP jt, subs +C2854126|T037|AB|S63.492S|ICD10CM|Traum rupture of ligmt of r mid finger at MCP/IP jt, sequela|Traum rupture of ligmt of r mid finger at MCP/IP jt, sequela +C2854127|T037|AB|S63.493|ICD10CM|Traumatic rupture of ligament of l mid finger at MCP/IP jt|Traumatic rupture of ligament of l mid finger at MCP/IP jt +C2854128|T037|AB|S63.493A|ICD10CM|Traum rupture of ligament of l mid finger at MCP/IP jt, init|Traum rupture of ligament of l mid finger at MCP/IP jt, init +C2854129|T037|AB|S63.493D|ICD10CM|Traum rupture of ligament of l mid finger at MCP/IP jt, subs|Traum rupture of ligament of l mid finger at MCP/IP jt, subs +C2854130|T037|AB|S63.493S|ICD10CM|Traum rupture of ligmt of l mid finger at MCP/IP jt, sequela|Traum rupture of ligmt of l mid finger at MCP/IP jt, sequela +C2854131|T037|AB|S63.494|ICD10CM|Traumatic rupture of ligament of r rng fngr at MCP/IP jt|Traumatic rupture of ligament of r rng fngr at MCP/IP jt +C2854132|T037|AB|S63.494A|ICD10CM|Traum rupture of ligament of r rng fngr at MCP/IP jt, init|Traum rupture of ligament of r rng fngr at MCP/IP jt, init +C2854133|T037|AB|S63.494D|ICD10CM|Traum rupture of ligament of r rng fngr at MCP/IP jt, subs|Traum rupture of ligament of r rng fngr at MCP/IP jt, subs +C2854134|T037|AB|S63.494S|ICD10CM|Traum rupture of ligmt of r rng fngr at MCP/IP jt, sequela|Traum rupture of ligmt of r rng fngr at MCP/IP jt, sequela +C2854135|T037|AB|S63.495|ICD10CM|Traumatic rupture of ligament of l rng fngr at MCP/IP jt|Traumatic rupture of ligament of l rng fngr at MCP/IP jt +C2854136|T037|AB|S63.495A|ICD10CM|Traum rupture of ligament of l rng fngr at MCP/IP jt, init|Traum rupture of ligament of l rng fngr at MCP/IP jt, init +C2854137|T037|AB|S63.495D|ICD10CM|Traum rupture of ligament of l rng fngr at MCP/IP jt, subs|Traum rupture of ligament of l rng fngr at MCP/IP jt, subs +C2854138|T037|AB|S63.495S|ICD10CM|Traum rupture of ligmt of l rng fngr at MCP/IP jt, sequela|Traum rupture of ligmt of l rng fngr at MCP/IP jt, sequela +C2854139|T037|AB|S63.496|ICD10CM|Traum rupture of ligament of r little finger at MCP/IP jt|Traum rupture of ligament of r little finger at MCP/IP jt +C2854140|T037|AB|S63.496A|ICD10CM|Traum rupture of ligmt of r little finger at MCP/IP jt, init|Traum rupture of ligmt of r little finger at MCP/IP jt, init +C2854141|T037|AB|S63.496D|ICD10CM|Traum rupture of ligmt of r little finger at MCP/IP jt, subs|Traum rupture of ligmt of r little finger at MCP/IP jt, subs +C2854142|T037|AB|S63.496S|ICD10CM|Traum rupt of ligmt of r little finger at MCP/IP jt, sequela|Traum rupt of ligmt of r little finger at MCP/IP jt, sequela +C2854143|T037|AB|S63.497|ICD10CM|Traum rupture of ligament of l little finger at MCP/IP jt|Traum rupture of ligament of l little finger at MCP/IP jt +C2854144|T037|AB|S63.497A|ICD10CM|Traum rupture of ligmt of l little finger at MCP/IP jt, init|Traum rupture of ligmt of l little finger at MCP/IP jt, init +C2854145|T037|AB|S63.497D|ICD10CM|Traum rupture of ligmt of l little finger at MCP/IP jt, subs|Traum rupture of ligmt of l little finger at MCP/IP jt, subs +C2854146|T037|AB|S63.497S|ICD10CM|Traum rupt of ligmt of l little finger at MCP/IP jt, sequela|Traum rupt of ligmt of l little finger at MCP/IP jt, sequela +C2854148|T037|AB|S63.498|ICD10CM|Traumatic rupture of ligament of finger at MCP/IP jt|Traumatic rupture of ligament of finger at MCP/IP jt +C2854148|T037|HT|S63.498|ICD10CM|Traumatic rupture of other ligament of other finger at metacarpophalangeal and interphalangeal joint|Traumatic rupture of other ligament of other finger at metacarpophalangeal and interphalangeal joint +C2854149|T037|AB|S63.498A|ICD10CM|Traumatic rupture of ligament of finger at MCP/IP jt, init|Traumatic rupture of ligament of finger at MCP/IP jt, init +C2854150|T037|AB|S63.498D|ICD10CM|Traumatic rupture of ligament of finger at MCP/IP jt, subs|Traumatic rupture of ligament of finger at MCP/IP jt, subs +C2854151|T037|AB|S63.498S|ICD10CM|Traum rupture of ligament of finger at MCP/IP jt, sequela|Traum rupture of ligament of finger at MCP/IP jt, sequela +C2854152|T037|AB|S63.499|ICD10CM|Traumatic rupture of ligament of unsp finger at MCP/IP jt|Traumatic rupture of ligament of unsp finger at MCP/IP jt +C2854153|T037|AB|S63.499A|ICD10CM|Traum rupture of ligament of unsp finger at MCP/IP jt, init|Traum rupture of ligament of unsp finger at MCP/IP jt, init +C2854154|T037|AB|S63.499D|ICD10CM|Traum rupture of ligament of unsp finger at MCP/IP jt, subs|Traum rupture of ligament of unsp finger at MCP/IP jt, subs +C2854155|T037|AB|S63.499S|ICD10CM|Traum rupture of ligmt of unsp finger at MCP/IP jt, sequela|Traum rupture of ligmt of unsp finger at MCP/IP jt, sequela +C2854156|T037|AB|S63.5|ICD10CM|Other and unspecified sprain of wrist|Other and unspecified sprain of wrist +C2854156|T037|HT|S63.5|ICD10CM|Other and unspecified sprain of wrist|Other and unspecified sprain of wrist +C0392092|T037|PT|S63.5|ICD10|Sprain and strain of wrist|Sprain and strain of wrist +C0160063|T037|AB|S63.50|ICD10CM|Unspecified sprain of wrist|Unspecified sprain of wrist +C0160063|T037|HT|S63.50|ICD10CM|Unspecified sprain of wrist|Unspecified sprain of wrist +C2854157|T037|AB|S63.501|ICD10CM|Unspecified sprain of right wrist|Unspecified sprain of right wrist +C2854157|T037|HT|S63.501|ICD10CM|Unspecified sprain of right wrist|Unspecified sprain of right wrist +C2854158|T037|AB|S63.501A|ICD10CM|Unspecified sprain of right wrist, initial encounter|Unspecified sprain of right wrist, initial encounter +C2854158|T037|PT|S63.501A|ICD10CM|Unspecified sprain of right wrist, initial encounter|Unspecified sprain of right wrist, initial encounter +C2854159|T037|AB|S63.501D|ICD10CM|Unspecified sprain of right wrist, subsequent encounter|Unspecified sprain of right wrist, subsequent encounter +C2854159|T037|PT|S63.501D|ICD10CM|Unspecified sprain of right wrist, subsequent encounter|Unspecified sprain of right wrist, subsequent encounter +C2854160|T037|AB|S63.501S|ICD10CM|Unspecified sprain of right wrist, sequela|Unspecified sprain of right wrist, sequela +C2854160|T037|PT|S63.501S|ICD10CM|Unspecified sprain of right wrist, sequela|Unspecified sprain of right wrist, sequela +C2854161|T037|AB|S63.502|ICD10CM|Unspecified sprain of left wrist|Unspecified sprain of left wrist +C2854161|T037|HT|S63.502|ICD10CM|Unspecified sprain of left wrist|Unspecified sprain of left wrist +C2854162|T037|AB|S63.502A|ICD10CM|Unspecified sprain of left wrist, initial encounter|Unspecified sprain of left wrist, initial encounter +C2854162|T037|PT|S63.502A|ICD10CM|Unspecified sprain of left wrist, initial encounter|Unspecified sprain of left wrist, initial encounter +C2854163|T037|AB|S63.502D|ICD10CM|Unspecified sprain of left wrist, subsequent encounter|Unspecified sprain of left wrist, subsequent encounter +C2854163|T037|PT|S63.502D|ICD10CM|Unspecified sprain of left wrist, subsequent encounter|Unspecified sprain of left wrist, subsequent encounter +C2854164|T037|AB|S63.502S|ICD10CM|Unspecified sprain of left wrist, sequela|Unspecified sprain of left wrist, sequela +C2854164|T037|PT|S63.502S|ICD10CM|Unspecified sprain of left wrist, sequela|Unspecified sprain of left wrist, sequela +C2854165|T037|AB|S63.509|ICD10CM|Unspecified sprain of unspecified wrist|Unspecified sprain of unspecified wrist +C2854165|T037|HT|S63.509|ICD10CM|Unspecified sprain of unspecified wrist|Unspecified sprain of unspecified wrist +C2854166|T037|AB|S63.509A|ICD10CM|Unspecified sprain of unspecified wrist, initial encounter|Unspecified sprain of unspecified wrist, initial encounter +C2854166|T037|PT|S63.509A|ICD10CM|Unspecified sprain of unspecified wrist, initial encounter|Unspecified sprain of unspecified wrist, initial encounter +C2854167|T037|AB|S63.509D|ICD10CM|Unspecified sprain of unspecified wrist, subs encntr|Unspecified sprain of unspecified wrist, subs encntr +C2854167|T037|PT|S63.509D|ICD10CM|Unspecified sprain of unspecified wrist, subsequent encounter|Unspecified sprain of unspecified wrist, subsequent encounter +C2854168|T037|AB|S63.509S|ICD10CM|Unspecified sprain of unspecified wrist, sequela|Unspecified sprain of unspecified wrist, sequela +C2854168|T037|PT|S63.509S|ICD10CM|Unspecified sprain of unspecified wrist, sequela|Unspecified sprain of unspecified wrist, sequela +C0272880|T037|AB|S63.51|ICD10CM|Sprain of carpal (joint)|Sprain of carpal (joint) +C0272880|T037|HT|S63.51|ICD10CM|Sprain of carpal (joint)|Sprain of carpal (joint) +C2854169|T037|AB|S63.511|ICD10CM|Sprain of carpal joint of right wrist|Sprain of carpal joint of right wrist +C2854169|T037|HT|S63.511|ICD10CM|Sprain of carpal joint of right wrist|Sprain of carpal joint of right wrist +C2854170|T037|AB|S63.511A|ICD10CM|Sprain of carpal joint of right wrist, initial encounter|Sprain of carpal joint of right wrist, initial encounter +C2854170|T037|PT|S63.511A|ICD10CM|Sprain of carpal joint of right wrist, initial encounter|Sprain of carpal joint of right wrist, initial encounter +C2854171|T037|AB|S63.511D|ICD10CM|Sprain of carpal joint of right wrist, subsequent encounter|Sprain of carpal joint of right wrist, subsequent encounter +C2854171|T037|PT|S63.511D|ICD10CM|Sprain of carpal joint of right wrist, subsequent encounter|Sprain of carpal joint of right wrist, subsequent encounter +C2854172|T037|AB|S63.511S|ICD10CM|Sprain of carpal joint of right wrist, sequela|Sprain of carpal joint of right wrist, sequela +C2854172|T037|PT|S63.511S|ICD10CM|Sprain of carpal joint of right wrist, sequela|Sprain of carpal joint of right wrist, sequela +C2854173|T037|AB|S63.512|ICD10CM|Sprain of carpal joint of left wrist|Sprain of carpal joint of left wrist +C2854173|T037|HT|S63.512|ICD10CM|Sprain of carpal joint of left wrist|Sprain of carpal joint of left wrist +C2854174|T037|AB|S63.512A|ICD10CM|Sprain of carpal joint of left wrist, initial encounter|Sprain of carpal joint of left wrist, initial encounter +C2854174|T037|PT|S63.512A|ICD10CM|Sprain of carpal joint of left wrist, initial encounter|Sprain of carpal joint of left wrist, initial encounter +C2854175|T037|AB|S63.512D|ICD10CM|Sprain of carpal joint of left wrist, subsequent encounter|Sprain of carpal joint of left wrist, subsequent encounter +C2854175|T037|PT|S63.512D|ICD10CM|Sprain of carpal joint of left wrist, subsequent encounter|Sprain of carpal joint of left wrist, subsequent encounter +C2854176|T037|AB|S63.512S|ICD10CM|Sprain of carpal joint of left wrist, sequela|Sprain of carpal joint of left wrist, sequela +C2854176|T037|PT|S63.512S|ICD10CM|Sprain of carpal joint of left wrist, sequela|Sprain of carpal joint of left wrist, sequela +C2854177|T037|AB|S63.519|ICD10CM|Sprain of carpal joint of unspecified wrist|Sprain of carpal joint of unspecified wrist +C2854177|T037|HT|S63.519|ICD10CM|Sprain of carpal joint of unspecified wrist|Sprain of carpal joint of unspecified wrist +C2854178|T037|AB|S63.519A|ICD10CM|Sprain of carpal joint of unspecified wrist, init encntr|Sprain of carpal joint of unspecified wrist, init encntr +C2854178|T037|PT|S63.519A|ICD10CM|Sprain of carpal joint of unspecified wrist, initial encounter|Sprain of carpal joint of unspecified wrist, initial encounter +C2854179|T037|AB|S63.519D|ICD10CM|Sprain of carpal joint of unspecified wrist, subs encntr|Sprain of carpal joint of unspecified wrist, subs encntr +C2854179|T037|PT|S63.519D|ICD10CM|Sprain of carpal joint of unspecified wrist, subsequent encounter|Sprain of carpal joint of unspecified wrist, subsequent encounter +C2854180|T037|AB|S63.519S|ICD10CM|Sprain of carpal joint of unspecified wrist, sequela|Sprain of carpal joint of unspecified wrist, sequela +C2854180|T037|PT|S63.519S|ICD10CM|Sprain of carpal joint of unspecified wrist, sequela|Sprain of carpal joint of unspecified wrist, sequela +C0272881|T037|AB|S63.52|ICD10CM|Sprain of radiocarpal joint|Sprain of radiocarpal joint +C0272881|T037|HT|S63.52|ICD10CM|Sprain of radiocarpal joint|Sprain of radiocarpal joint +C2854181|T037|AB|S63.521|ICD10CM|Sprain of radiocarpal joint of right wrist|Sprain of radiocarpal joint of right wrist +C2854181|T037|HT|S63.521|ICD10CM|Sprain of radiocarpal joint of right wrist|Sprain of radiocarpal joint of right wrist +C2854182|T037|AB|S63.521A|ICD10CM|Sprain of radiocarpal joint of right wrist, init encntr|Sprain of radiocarpal joint of right wrist, init encntr +C2854182|T037|PT|S63.521A|ICD10CM|Sprain of radiocarpal joint of right wrist, initial encounter|Sprain of radiocarpal joint of right wrist, initial encounter +C2854183|T037|AB|S63.521D|ICD10CM|Sprain of radiocarpal joint of right wrist, subs encntr|Sprain of radiocarpal joint of right wrist, subs encntr +C2854183|T037|PT|S63.521D|ICD10CM|Sprain of radiocarpal joint of right wrist, subsequent encounter|Sprain of radiocarpal joint of right wrist, subsequent encounter +C2854184|T037|PT|S63.521S|ICD10CM|Sprain of radiocarpal joint of right wrist, sequela|Sprain of radiocarpal joint of right wrist, sequela +C2854184|T037|AB|S63.521S|ICD10CM|Sprain of radiocarpal joint of right wrist, sequela|Sprain of radiocarpal joint of right wrist, sequela +C2854185|T037|AB|S63.522|ICD10CM|Sprain of radiocarpal joint of left wrist|Sprain of radiocarpal joint of left wrist +C2854185|T037|HT|S63.522|ICD10CM|Sprain of radiocarpal joint of left wrist|Sprain of radiocarpal joint of left wrist +C2854186|T037|AB|S63.522A|ICD10CM|Sprain of radiocarpal joint of left wrist, initial encounter|Sprain of radiocarpal joint of left wrist, initial encounter +C2854186|T037|PT|S63.522A|ICD10CM|Sprain of radiocarpal joint of left wrist, initial encounter|Sprain of radiocarpal joint of left wrist, initial encounter +C2854187|T037|AB|S63.522D|ICD10CM|Sprain of radiocarpal joint of left wrist, subs encntr|Sprain of radiocarpal joint of left wrist, subs encntr +C2854187|T037|PT|S63.522D|ICD10CM|Sprain of radiocarpal joint of left wrist, subsequent encounter|Sprain of radiocarpal joint of left wrist, subsequent encounter +C2854188|T037|PT|S63.522S|ICD10CM|Sprain of radiocarpal joint of left wrist, sequela|Sprain of radiocarpal joint of left wrist, sequela +C2854188|T037|AB|S63.522S|ICD10CM|Sprain of radiocarpal joint of left wrist, sequela|Sprain of radiocarpal joint of left wrist, sequela +C2854189|T037|AB|S63.529|ICD10CM|Sprain of radiocarpal joint of unspecified wrist|Sprain of radiocarpal joint of unspecified wrist +C2854189|T037|HT|S63.529|ICD10CM|Sprain of radiocarpal joint of unspecified wrist|Sprain of radiocarpal joint of unspecified wrist +C2854190|T037|AB|S63.529A|ICD10CM|Sprain of radiocarpal joint of unsp wrist, init encntr|Sprain of radiocarpal joint of unsp wrist, init encntr +C2854190|T037|PT|S63.529A|ICD10CM|Sprain of radiocarpal joint of unspecified wrist, initial encounter|Sprain of radiocarpal joint of unspecified wrist, initial encounter +C2854191|T037|AB|S63.529D|ICD10CM|Sprain of radiocarpal joint of unsp wrist, subs encntr|Sprain of radiocarpal joint of unsp wrist, subs encntr +C2854191|T037|PT|S63.529D|ICD10CM|Sprain of radiocarpal joint of unspecified wrist, subsequent encounter|Sprain of radiocarpal joint of unspecified wrist, subsequent encounter +C2854192|T037|PT|S63.529S|ICD10CM|Sprain of radiocarpal joint of unspecified wrist, sequela|Sprain of radiocarpal joint of unspecified wrist, sequela +C2854192|T037|AB|S63.529S|ICD10CM|Sprain of radiocarpal joint of unspecified wrist, sequela|Sprain of radiocarpal joint of unspecified wrist, sequela +C0160067|T037|AB|S63.59|ICD10CM|Other specified sprain of wrist|Other specified sprain of wrist +C0160067|T037|HT|S63.59|ICD10CM|Other specified sprain of wrist|Other specified sprain of wrist +C2854193|T037|AB|S63.591|ICD10CM|Other specified sprain of right wrist|Other specified sprain of right wrist +C2854193|T037|HT|S63.591|ICD10CM|Other specified sprain of right wrist|Other specified sprain of right wrist +C2854194|T037|AB|S63.591A|ICD10CM|Other specified sprain of right wrist, initial encounter|Other specified sprain of right wrist, initial encounter +C2854194|T037|PT|S63.591A|ICD10CM|Other specified sprain of right wrist, initial encounter|Other specified sprain of right wrist, initial encounter +C2854195|T037|AB|S63.591D|ICD10CM|Other specified sprain of right wrist, subsequent encounter|Other specified sprain of right wrist, subsequent encounter +C2854195|T037|PT|S63.591D|ICD10CM|Other specified sprain of right wrist, subsequent encounter|Other specified sprain of right wrist, subsequent encounter +C2854196|T037|AB|S63.591S|ICD10CM|Other specified sprain of right wrist, sequela|Other specified sprain of right wrist, sequela +C2854196|T037|PT|S63.591S|ICD10CM|Other specified sprain of right wrist, sequela|Other specified sprain of right wrist, sequela +C2854197|T037|AB|S63.592|ICD10CM|Other specified sprain of left wrist|Other specified sprain of left wrist +C2854197|T037|HT|S63.592|ICD10CM|Other specified sprain of left wrist|Other specified sprain of left wrist +C2854198|T037|AB|S63.592A|ICD10CM|Other specified sprain of left wrist, initial encounter|Other specified sprain of left wrist, initial encounter +C2854198|T037|PT|S63.592A|ICD10CM|Other specified sprain of left wrist, initial encounter|Other specified sprain of left wrist, initial encounter +C2854199|T037|AB|S63.592D|ICD10CM|Other specified sprain of left wrist, subsequent encounter|Other specified sprain of left wrist, subsequent encounter +C2854199|T037|PT|S63.592D|ICD10CM|Other specified sprain of left wrist, subsequent encounter|Other specified sprain of left wrist, subsequent encounter +C2854200|T037|AB|S63.592S|ICD10CM|Other specified sprain of left wrist, sequela|Other specified sprain of left wrist, sequela +C2854200|T037|PT|S63.592S|ICD10CM|Other specified sprain of left wrist, sequela|Other specified sprain of left wrist, sequela +C2854201|T037|AB|S63.599|ICD10CM|Other specified sprain of unspecified wrist|Other specified sprain of unspecified wrist +C2854201|T037|HT|S63.599|ICD10CM|Other specified sprain of unspecified wrist|Other specified sprain of unspecified wrist +C2854202|T037|AB|S63.599A|ICD10CM|Other specified sprain of unspecified wrist, init encntr|Other specified sprain of unspecified wrist, init encntr +C2854202|T037|PT|S63.599A|ICD10CM|Other specified sprain of unspecified wrist, initial encounter|Other specified sprain of unspecified wrist, initial encounter +C2854203|T037|AB|S63.599D|ICD10CM|Other specified sprain of unspecified wrist, subs encntr|Other specified sprain of unspecified wrist, subs encntr +C2854203|T037|PT|S63.599D|ICD10CM|Other specified sprain of unspecified wrist, subsequent encounter|Other specified sprain of unspecified wrist, subsequent encounter +C2854204|T037|AB|S63.599S|ICD10CM|Other specified sprain of unspecified wrist, sequela|Other specified sprain of unspecified wrist, sequela +C2854204|T037|PT|S63.599S|ICD10CM|Other specified sprain of unspecified wrist, sequela|Other specified sprain of unspecified wrist, sequela +C2854205|T037|AB|S63.6|ICD10CM|Other and unspecified sprain of finger(s)|Other and unspecified sprain of finger(s) +C2854205|T037|HT|S63.6|ICD10CM|Other and unspecified sprain of finger(s)|Other and unspecified sprain of finger(s) +C0495906|T037|PT|S63.6|ICD10|Sprain and strain of finger(s)|Sprain and strain of finger(s) +C2854206|T037|AB|S63.60|ICD10CM|Unspecified sprain of thumb|Unspecified sprain of thumb +C2854206|T037|HT|S63.60|ICD10CM|Unspecified sprain of thumb|Unspecified sprain of thumb +C2854207|T037|AB|S63.601|ICD10CM|Unspecified sprain of right thumb|Unspecified sprain of right thumb +C2854207|T037|HT|S63.601|ICD10CM|Unspecified sprain of right thumb|Unspecified sprain of right thumb +C2854208|T037|PT|S63.601A|ICD10CM|Unspecified sprain of right thumb, initial encounter|Unspecified sprain of right thumb, initial encounter +C2854208|T037|AB|S63.601A|ICD10CM|Unspecified sprain of right thumb, initial encounter|Unspecified sprain of right thumb, initial encounter +C2854209|T037|PT|S63.601D|ICD10CM|Unspecified sprain of right thumb, subsequent encounter|Unspecified sprain of right thumb, subsequent encounter +C2854209|T037|AB|S63.601D|ICD10CM|Unspecified sprain of right thumb, subsequent encounter|Unspecified sprain of right thumb, subsequent encounter +C2854210|T037|PT|S63.601S|ICD10CM|Unspecified sprain of right thumb, sequela|Unspecified sprain of right thumb, sequela +C2854210|T037|AB|S63.601S|ICD10CM|Unspecified sprain of right thumb, sequela|Unspecified sprain of right thumb, sequela +C2854211|T037|AB|S63.602|ICD10CM|Unspecified sprain of left thumb|Unspecified sprain of left thumb +C2854211|T037|HT|S63.602|ICD10CM|Unspecified sprain of left thumb|Unspecified sprain of left thumb +C2854212|T037|PT|S63.602A|ICD10CM|Unspecified sprain of left thumb, initial encounter|Unspecified sprain of left thumb, initial encounter +C2854212|T037|AB|S63.602A|ICD10CM|Unspecified sprain of left thumb, initial encounter|Unspecified sprain of left thumb, initial encounter +C2854213|T037|PT|S63.602D|ICD10CM|Unspecified sprain of left thumb, subsequent encounter|Unspecified sprain of left thumb, subsequent encounter +C2854213|T037|AB|S63.602D|ICD10CM|Unspecified sprain of left thumb, subsequent encounter|Unspecified sprain of left thumb, subsequent encounter +C2854214|T037|PT|S63.602S|ICD10CM|Unspecified sprain of left thumb, sequela|Unspecified sprain of left thumb, sequela +C2854214|T037|AB|S63.602S|ICD10CM|Unspecified sprain of left thumb, sequela|Unspecified sprain of left thumb, sequela +C2854215|T037|AB|S63.609|ICD10CM|Unspecified sprain of unspecified thumb|Unspecified sprain of unspecified thumb +C2854215|T037|HT|S63.609|ICD10CM|Unspecified sprain of unspecified thumb|Unspecified sprain of unspecified thumb +C2854216|T037|PT|S63.609A|ICD10CM|Unspecified sprain of unspecified thumb, initial encounter|Unspecified sprain of unspecified thumb, initial encounter +C2854216|T037|AB|S63.609A|ICD10CM|Unspecified sprain of unspecified thumb, initial encounter|Unspecified sprain of unspecified thumb, initial encounter +C2854217|T037|AB|S63.609D|ICD10CM|Unspecified sprain of unspecified thumb, subs encntr|Unspecified sprain of unspecified thumb, subs encntr +C2854217|T037|PT|S63.609D|ICD10CM|Unspecified sprain of unspecified thumb, subsequent encounter|Unspecified sprain of unspecified thumb, subsequent encounter +C2854218|T037|PT|S63.609S|ICD10CM|Unspecified sprain of unspecified thumb, sequela|Unspecified sprain of unspecified thumb, sequela +C2854218|T037|AB|S63.609S|ICD10CM|Unspecified sprain of unspecified thumb, sequela|Unspecified sprain of unspecified thumb, sequela +C2854219|T037|AB|S63.61|ICD10CM|Unspecified sprain of other and unspecified finger(s)|Unspecified sprain of other and unspecified finger(s) +C2854219|T037|HT|S63.61|ICD10CM|Unspecified sprain of other and unspecified finger(s)|Unspecified sprain of other and unspecified finger(s) +C2854220|T037|AB|S63.610|ICD10CM|Unspecified sprain of right index finger|Unspecified sprain of right index finger +C2854220|T037|HT|S63.610|ICD10CM|Unspecified sprain of right index finger|Unspecified sprain of right index finger +C2854221|T037|PT|S63.610A|ICD10CM|Unspecified sprain of right index finger, initial encounter|Unspecified sprain of right index finger, initial encounter +C2854221|T037|AB|S63.610A|ICD10CM|Unspecified sprain of right index finger, initial encounter|Unspecified sprain of right index finger, initial encounter +C2854222|T037|AB|S63.610D|ICD10CM|Unspecified sprain of right index finger, subs encntr|Unspecified sprain of right index finger, subs encntr +C2854222|T037|PT|S63.610D|ICD10CM|Unspecified sprain of right index finger, subsequent encounter|Unspecified sprain of right index finger, subsequent encounter +C2854223|T037|PT|S63.610S|ICD10CM|Unspecified sprain of right index finger, sequela|Unspecified sprain of right index finger, sequela +C2854223|T037|AB|S63.610S|ICD10CM|Unspecified sprain of right index finger, sequela|Unspecified sprain of right index finger, sequela +C2854224|T037|AB|S63.611|ICD10CM|Unspecified sprain of left index finger|Unspecified sprain of left index finger +C2854224|T037|HT|S63.611|ICD10CM|Unspecified sprain of left index finger|Unspecified sprain of left index finger +C2854225|T037|PT|S63.611A|ICD10CM|Unspecified sprain of left index finger, initial encounter|Unspecified sprain of left index finger, initial encounter +C2854225|T037|AB|S63.611A|ICD10CM|Unspecified sprain of left index finger, initial encounter|Unspecified sprain of left index finger, initial encounter +C2854226|T037|AB|S63.611D|ICD10CM|Unspecified sprain of left index finger, subs encntr|Unspecified sprain of left index finger, subs encntr +C2854226|T037|PT|S63.611D|ICD10CM|Unspecified sprain of left index finger, subsequent encounter|Unspecified sprain of left index finger, subsequent encounter +C2854227|T037|PT|S63.611S|ICD10CM|Unspecified sprain of left index finger, sequela|Unspecified sprain of left index finger, sequela +C2854227|T037|AB|S63.611S|ICD10CM|Unspecified sprain of left index finger, sequela|Unspecified sprain of left index finger, sequela +C2854228|T037|AB|S63.612|ICD10CM|Unspecified sprain of right middle finger|Unspecified sprain of right middle finger +C2854228|T037|HT|S63.612|ICD10CM|Unspecified sprain of right middle finger|Unspecified sprain of right middle finger +C2854229|T037|AB|S63.612A|ICD10CM|Unspecified sprain of right middle finger, initial encounter|Unspecified sprain of right middle finger, initial encounter +C2854229|T037|PT|S63.612A|ICD10CM|Unspecified sprain of right middle finger, initial encounter|Unspecified sprain of right middle finger, initial encounter +C2854230|T037|AB|S63.612D|ICD10CM|Unspecified sprain of right middle finger, subs encntr|Unspecified sprain of right middle finger, subs encntr +C2854230|T037|PT|S63.612D|ICD10CM|Unspecified sprain of right middle finger, subsequent encounter|Unspecified sprain of right middle finger, subsequent encounter +C2854231|T037|PT|S63.612S|ICD10CM|Unspecified sprain of right middle finger, sequela|Unspecified sprain of right middle finger, sequela +C2854231|T037|AB|S63.612S|ICD10CM|Unspecified sprain of right middle finger, sequela|Unspecified sprain of right middle finger, sequela +C2854232|T037|AB|S63.613|ICD10CM|Unspecified sprain of left middle finger|Unspecified sprain of left middle finger +C2854232|T037|HT|S63.613|ICD10CM|Unspecified sprain of left middle finger|Unspecified sprain of left middle finger +C2854233|T037|PT|S63.613A|ICD10CM|Unspecified sprain of left middle finger, initial encounter|Unspecified sprain of left middle finger, initial encounter +C2854233|T037|AB|S63.613A|ICD10CM|Unspecified sprain of left middle finger, initial encounter|Unspecified sprain of left middle finger, initial encounter +C2854234|T037|AB|S63.613D|ICD10CM|Unspecified sprain of left middle finger, subs encntr|Unspecified sprain of left middle finger, subs encntr +C2854234|T037|PT|S63.613D|ICD10CM|Unspecified sprain of left middle finger, subsequent encounter|Unspecified sprain of left middle finger, subsequent encounter +C2854235|T037|PT|S63.613S|ICD10CM|Unspecified sprain of left middle finger, sequela|Unspecified sprain of left middle finger, sequela +C2854235|T037|AB|S63.613S|ICD10CM|Unspecified sprain of left middle finger, sequela|Unspecified sprain of left middle finger, sequela +C2854236|T037|AB|S63.614|ICD10CM|Unspecified sprain of right ring finger|Unspecified sprain of right ring finger +C2854236|T037|HT|S63.614|ICD10CM|Unspecified sprain of right ring finger|Unspecified sprain of right ring finger +C2854237|T037|PT|S63.614A|ICD10CM|Unspecified sprain of right ring finger, initial encounter|Unspecified sprain of right ring finger, initial encounter +C2854237|T037|AB|S63.614A|ICD10CM|Unspecified sprain of right ring finger, initial encounter|Unspecified sprain of right ring finger, initial encounter +C2854238|T037|AB|S63.614D|ICD10CM|Unspecified sprain of right ring finger, subs encntr|Unspecified sprain of right ring finger, subs encntr +C2854238|T037|PT|S63.614D|ICD10CM|Unspecified sprain of right ring finger, subsequent encounter|Unspecified sprain of right ring finger, subsequent encounter +C2854239|T037|PT|S63.614S|ICD10CM|Unspecified sprain of right ring finger, sequela|Unspecified sprain of right ring finger, sequela +C2854239|T037|AB|S63.614S|ICD10CM|Unspecified sprain of right ring finger, sequela|Unspecified sprain of right ring finger, sequela +C2854240|T037|AB|S63.615|ICD10CM|Unspecified sprain of left ring finger|Unspecified sprain of left ring finger +C2854240|T037|HT|S63.615|ICD10CM|Unspecified sprain of left ring finger|Unspecified sprain of left ring finger +C2854241|T037|PT|S63.615A|ICD10CM|Unspecified sprain of left ring finger, initial encounter|Unspecified sprain of left ring finger, initial encounter +C2854241|T037|AB|S63.615A|ICD10CM|Unspecified sprain of left ring finger, initial encounter|Unspecified sprain of left ring finger, initial encounter +C2854242|T037|AB|S63.615D|ICD10CM|Unspecified sprain of left ring finger, subsequent encounter|Unspecified sprain of left ring finger, subsequent encounter +C2854242|T037|PT|S63.615D|ICD10CM|Unspecified sprain of left ring finger, subsequent encounter|Unspecified sprain of left ring finger, subsequent encounter +C2854243|T037|PT|S63.615S|ICD10CM|Unspecified sprain of left ring finger, sequela|Unspecified sprain of left ring finger, sequela +C2854243|T037|AB|S63.615S|ICD10CM|Unspecified sprain of left ring finger, sequela|Unspecified sprain of left ring finger, sequela +C2854244|T037|AB|S63.616|ICD10CM|Unspecified sprain of right little finger|Unspecified sprain of right little finger +C2854244|T037|HT|S63.616|ICD10CM|Unspecified sprain of right little finger|Unspecified sprain of right little finger +C2854245|T037|AB|S63.616A|ICD10CM|Unspecified sprain of right little finger, initial encounter|Unspecified sprain of right little finger, initial encounter +C2854245|T037|PT|S63.616A|ICD10CM|Unspecified sprain of right little finger, initial encounter|Unspecified sprain of right little finger, initial encounter +C2854246|T037|AB|S63.616D|ICD10CM|Unspecified sprain of right little finger, subs encntr|Unspecified sprain of right little finger, subs encntr +C2854246|T037|PT|S63.616D|ICD10CM|Unspecified sprain of right little finger, subsequent encounter|Unspecified sprain of right little finger, subsequent encounter +C2854247|T037|PT|S63.616S|ICD10CM|Unspecified sprain of right little finger, sequela|Unspecified sprain of right little finger, sequela +C2854247|T037|AB|S63.616S|ICD10CM|Unspecified sprain of right little finger, sequela|Unspecified sprain of right little finger, sequela +C2854248|T037|AB|S63.617|ICD10CM|Unspecified sprain of left little finger|Unspecified sprain of left little finger +C2854248|T037|HT|S63.617|ICD10CM|Unspecified sprain of left little finger|Unspecified sprain of left little finger +C2854249|T037|PT|S63.617A|ICD10CM|Unspecified sprain of left little finger, initial encounter|Unspecified sprain of left little finger, initial encounter +C2854249|T037|AB|S63.617A|ICD10CM|Unspecified sprain of left little finger, initial encounter|Unspecified sprain of left little finger, initial encounter +C2854250|T037|AB|S63.617D|ICD10CM|Unspecified sprain of left little finger, subs encntr|Unspecified sprain of left little finger, subs encntr +C2854250|T037|PT|S63.617D|ICD10CM|Unspecified sprain of left little finger, subsequent encounter|Unspecified sprain of left little finger, subsequent encounter +C2854251|T037|PT|S63.617S|ICD10CM|Unspecified sprain of left little finger, sequela|Unspecified sprain of left little finger, sequela +C2854251|T037|AB|S63.617S|ICD10CM|Unspecified sprain of left little finger, sequela|Unspecified sprain of left little finger, sequela +C2854253|T037|AB|S63.618|ICD10CM|Unspecified sprain of other finger|Unspecified sprain of other finger +C2854253|T037|HT|S63.618|ICD10CM|Unspecified sprain of other finger|Unspecified sprain of other finger +C2854252|T037|ET|S63.618|ICD10CM|Unspecified sprain of specified finger with unspecified laterality|Unspecified sprain of specified finger with unspecified laterality +C2854254|T037|PT|S63.618A|ICD10CM|Unspecified sprain of other finger, initial encounter|Unspecified sprain of other finger, initial encounter +C2854254|T037|AB|S63.618A|ICD10CM|Unspecified sprain of other finger, initial encounter|Unspecified sprain of other finger, initial encounter +C2854255|T037|PT|S63.618D|ICD10CM|Unspecified sprain of other finger, subsequent encounter|Unspecified sprain of other finger, subsequent encounter +C2854255|T037|AB|S63.618D|ICD10CM|Unspecified sprain of other finger, subsequent encounter|Unspecified sprain of other finger, subsequent encounter +C2854256|T037|PT|S63.618S|ICD10CM|Unspecified sprain of other finger, sequela|Unspecified sprain of other finger, sequela +C2854256|T037|AB|S63.618S|ICD10CM|Unspecified sprain of other finger, sequela|Unspecified sprain of other finger, sequela +C2854257|T037|AB|S63.619|ICD10CM|Unspecified sprain of unspecified finger|Unspecified sprain of unspecified finger +C2854257|T037|HT|S63.619|ICD10CM|Unspecified sprain of unspecified finger|Unspecified sprain of unspecified finger +C2854258|T037|PT|S63.619A|ICD10CM|Unspecified sprain of unspecified finger, initial encounter|Unspecified sprain of unspecified finger, initial encounter +C2854258|T037|AB|S63.619A|ICD10CM|Unspecified sprain of unspecified finger, initial encounter|Unspecified sprain of unspecified finger, initial encounter +C2854259|T037|AB|S63.619D|ICD10CM|Unspecified sprain of unspecified finger, subs encntr|Unspecified sprain of unspecified finger, subs encntr +C2854259|T037|PT|S63.619D|ICD10CM|Unspecified sprain of unspecified finger, subsequent encounter|Unspecified sprain of unspecified finger, subsequent encounter +C2854260|T037|PT|S63.619S|ICD10CM|Unspecified sprain of unspecified finger, sequela|Unspecified sprain of unspecified finger, sequela +C2854260|T037|AB|S63.619S|ICD10CM|Unspecified sprain of unspecified finger, sequela|Unspecified sprain of unspecified finger, sequela +C2854261|T037|AB|S63.62|ICD10CM|Sprain of interphalangeal joint of thumb|Sprain of interphalangeal joint of thumb +C2854261|T037|HT|S63.62|ICD10CM|Sprain of interphalangeal joint of thumb|Sprain of interphalangeal joint of thumb +C2211260|T037|AB|S63.621|ICD10CM|Sprain of interphalangeal joint of right thumb|Sprain of interphalangeal joint of right thumb +C2211260|T037|HT|S63.621|ICD10CM|Sprain of interphalangeal joint of right thumb|Sprain of interphalangeal joint of right thumb +C2854262|T037|AB|S63.621A|ICD10CM|Sprain of interphalangeal joint of right thumb, init encntr|Sprain of interphalangeal joint of right thumb, init encntr +C2854262|T037|PT|S63.621A|ICD10CM|Sprain of interphalangeal joint of right thumb, initial encounter|Sprain of interphalangeal joint of right thumb, initial encounter +C2854263|T037|AB|S63.621D|ICD10CM|Sprain of interphalangeal joint of right thumb, subs encntr|Sprain of interphalangeal joint of right thumb, subs encntr +C2854263|T037|PT|S63.621D|ICD10CM|Sprain of interphalangeal joint of right thumb, subsequent encounter|Sprain of interphalangeal joint of right thumb, subsequent encounter +C2854264|T037|AB|S63.621S|ICD10CM|Sprain of interphalangeal joint of right thumb, sequela|Sprain of interphalangeal joint of right thumb, sequela +C2854264|T037|PT|S63.621S|ICD10CM|Sprain of interphalangeal joint of right thumb, sequela|Sprain of interphalangeal joint of right thumb, sequela +C2211281|T037|AB|S63.622|ICD10CM|Sprain of interphalangeal joint of left thumb|Sprain of interphalangeal joint of left thumb +C2211281|T037|HT|S63.622|ICD10CM|Sprain of interphalangeal joint of left thumb|Sprain of interphalangeal joint of left thumb +C2854265|T037|AB|S63.622A|ICD10CM|Sprain of interphalangeal joint of left thumb, init encntr|Sprain of interphalangeal joint of left thumb, init encntr +C2854265|T037|PT|S63.622A|ICD10CM|Sprain of interphalangeal joint of left thumb, initial encounter|Sprain of interphalangeal joint of left thumb, initial encounter +C2854266|T037|AB|S63.622D|ICD10CM|Sprain of interphalangeal joint of left thumb, subs encntr|Sprain of interphalangeal joint of left thumb, subs encntr +C2854266|T037|PT|S63.622D|ICD10CM|Sprain of interphalangeal joint of left thumb, subsequent encounter|Sprain of interphalangeal joint of left thumb, subsequent encounter +C2854267|T037|PT|S63.622S|ICD10CM|Sprain of interphalangeal joint of left thumb, sequela|Sprain of interphalangeal joint of left thumb, sequela +C2854267|T037|AB|S63.622S|ICD10CM|Sprain of interphalangeal joint of left thumb, sequela|Sprain of interphalangeal joint of left thumb, sequela +C2854268|T037|AB|S63.629|ICD10CM|Sprain of interphalangeal joint of unspecified thumb|Sprain of interphalangeal joint of unspecified thumb +C2854268|T037|HT|S63.629|ICD10CM|Sprain of interphalangeal joint of unspecified thumb|Sprain of interphalangeal joint of unspecified thumb +C2854269|T037|AB|S63.629A|ICD10CM|Sprain of interphalangeal joint of unsp thumb, init encntr|Sprain of interphalangeal joint of unsp thumb, init encntr +C2854269|T037|PT|S63.629A|ICD10CM|Sprain of interphalangeal joint of unspecified thumb, initial encounter|Sprain of interphalangeal joint of unspecified thumb, initial encounter +C2854270|T037|AB|S63.629D|ICD10CM|Sprain of interphalangeal joint of unsp thumb, subs encntr|Sprain of interphalangeal joint of unsp thumb, subs encntr +C2854270|T037|PT|S63.629D|ICD10CM|Sprain of interphalangeal joint of unspecified thumb, subsequent encounter|Sprain of interphalangeal joint of unspecified thumb, subsequent encounter +C2854271|T037|AB|S63.629S|ICD10CM|Sprain of interphalangeal joint of unsp thumb, sequela|Sprain of interphalangeal joint of unsp thumb, sequela +C2854271|T037|PT|S63.629S|ICD10CM|Sprain of interphalangeal joint of unspecified thumb, sequela|Sprain of interphalangeal joint of unspecified thumb, sequela +C2854272|T037|AB|S63.63|ICD10CM|Sprain of interphalangeal joint of other and unsp finger(s)|Sprain of interphalangeal joint of other and unsp finger(s) +C2854272|T037|HT|S63.63|ICD10CM|Sprain of interphalangeal joint of other and unspecified finger(s)|Sprain of interphalangeal joint of other and unspecified finger(s) +C2854273|T037|AB|S63.630|ICD10CM|Sprain of interphalangeal joint of right index finger|Sprain of interphalangeal joint of right index finger +C2854273|T037|HT|S63.630|ICD10CM|Sprain of interphalangeal joint of right index finger|Sprain of interphalangeal joint of right index finger +C2854274|T037|AB|S63.630A|ICD10CM|Sprain of interphalangeal joint of right index finger, init|Sprain of interphalangeal joint of right index finger, init +C2854274|T037|PT|S63.630A|ICD10CM|Sprain of interphalangeal joint of right index finger, initial encounter|Sprain of interphalangeal joint of right index finger, initial encounter +C2854275|T037|AB|S63.630D|ICD10CM|Sprain of interphalangeal joint of right index finger, subs|Sprain of interphalangeal joint of right index finger, subs +C2854275|T037|PT|S63.630D|ICD10CM|Sprain of interphalangeal joint of right index finger, subsequent encounter|Sprain of interphalangeal joint of right index finger, subsequent encounter +C2854276|T037|AB|S63.630S|ICD10CM|Sprain of interphalangeal joint of r idx fngr, sequela|Sprain of interphalangeal joint of r idx fngr, sequela +C2854276|T037|PT|S63.630S|ICD10CM|Sprain of interphalangeal joint of right index finger, sequela|Sprain of interphalangeal joint of right index finger, sequela +C2854277|T037|AB|S63.631|ICD10CM|Sprain of interphalangeal joint of left index finger|Sprain of interphalangeal joint of left index finger +C2854277|T037|HT|S63.631|ICD10CM|Sprain of interphalangeal joint of left index finger|Sprain of interphalangeal joint of left index finger +C2854278|T037|AB|S63.631A|ICD10CM|Sprain of interphalangeal joint of left index finger, init|Sprain of interphalangeal joint of left index finger, init +C2854278|T037|PT|S63.631A|ICD10CM|Sprain of interphalangeal joint of left index finger, initial encounter|Sprain of interphalangeal joint of left index finger, initial encounter +C2854279|T037|AB|S63.631D|ICD10CM|Sprain of interphalangeal joint of left index finger, subs|Sprain of interphalangeal joint of left index finger, subs +C2854279|T037|PT|S63.631D|ICD10CM|Sprain of interphalangeal joint of left index finger, subsequent encounter|Sprain of interphalangeal joint of left index finger, subsequent encounter +C2854280|T037|AB|S63.631S|ICD10CM|Sprain of interphalangeal joint of l idx fngr, sequela|Sprain of interphalangeal joint of l idx fngr, sequela +C2854280|T037|PT|S63.631S|ICD10CM|Sprain of interphalangeal joint of left index finger, sequela|Sprain of interphalangeal joint of left index finger, sequela +C2854281|T037|AB|S63.632|ICD10CM|Sprain of interphalangeal joint of right middle finger|Sprain of interphalangeal joint of right middle finger +C2854281|T037|HT|S63.632|ICD10CM|Sprain of interphalangeal joint of right middle finger|Sprain of interphalangeal joint of right middle finger +C2854282|T037|AB|S63.632A|ICD10CM|Sprain of interphalangeal joint of right middle finger, init|Sprain of interphalangeal joint of right middle finger, init +C2854282|T037|PT|S63.632A|ICD10CM|Sprain of interphalangeal joint of right middle finger, initial encounter|Sprain of interphalangeal joint of right middle finger, initial encounter +C2854283|T037|AB|S63.632D|ICD10CM|Sprain of interphalangeal joint of right middle finger, subs|Sprain of interphalangeal joint of right middle finger, subs +C2854283|T037|PT|S63.632D|ICD10CM|Sprain of interphalangeal joint of right middle finger, subsequent encounter|Sprain of interphalangeal joint of right middle finger, subsequent encounter +C2854284|T037|AB|S63.632S|ICD10CM|Sprain of interphalangeal joint of r mid finger, sequela|Sprain of interphalangeal joint of r mid finger, sequela +C2854284|T037|PT|S63.632S|ICD10CM|Sprain of interphalangeal joint of right middle finger, sequela|Sprain of interphalangeal joint of right middle finger, sequela +C2854285|T037|AB|S63.633|ICD10CM|Sprain of interphalangeal joint of left middle finger|Sprain of interphalangeal joint of left middle finger +C2854285|T037|HT|S63.633|ICD10CM|Sprain of interphalangeal joint of left middle finger|Sprain of interphalangeal joint of left middle finger +C2854286|T037|AB|S63.633A|ICD10CM|Sprain of interphalangeal joint of left middle finger, init|Sprain of interphalangeal joint of left middle finger, init +C2854286|T037|PT|S63.633A|ICD10CM|Sprain of interphalangeal joint of left middle finger, initial encounter|Sprain of interphalangeal joint of left middle finger, initial encounter +C2854287|T037|AB|S63.633D|ICD10CM|Sprain of interphalangeal joint of left middle finger, subs|Sprain of interphalangeal joint of left middle finger, subs +C2854287|T037|PT|S63.633D|ICD10CM|Sprain of interphalangeal joint of left middle finger, subsequent encounter|Sprain of interphalangeal joint of left middle finger, subsequent encounter +C2854288|T037|AB|S63.633S|ICD10CM|Sprain of interphalangeal joint of l mid finger, sequela|Sprain of interphalangeal joint of l mid finger, sequela +C2854288|T037|PT|S63.633S|ICD10CM|Sprain of interphalangeal joint of left middle finger, sequela|Sprain of interphalangeal joint of left middle finger, sequela +C2854289|T037|AB|S63.634|ICD10CM|Sprain of interphalangeal joint of right ring finger|Sprain of interphalangeal joint of right ring finger +C2854289|T037|HT|S63.634|ICD10CM|Sprain of interphalangeal joint of right ring finger|Sprain of interphalangeal joint of right ring finger +C2854290|T037|AB|S63.634A|ICD10CM|Sprain of interphalangeal joint of right ring finger, init|Sprain of interphalangeal joint of right ring finger, init +C2854290|T037|PT|S63.634A|ICD10CM|Sprain of interphalangeal joint of right ring finger, initial encounter|Sprain of interphalangeal joint of right ring finger, initial encounter +C2854291|T037|AB|S63.634D|ICD10CM|Sprain of interphalangeal joint of right ring finger, subs|Sprain of interphalangeal joint of right ring finger, subs +C2854291|T037|PT|S63.634D|ICD10CM|Sprain of interphalangeal joint of right ring finger, subsequent encounter|Sprain of interphalangeal joint of right ring finger, subsequent encounter +C2854292|T037|AB|S63.634S|ICD10CM|Sprain of interphalangeal joint of r rng fngr, sequela|Sprain of interphalangeal joint of r rng fngr, sequela +C2854292|T037|PT|S63.634S|ICD10CM|Sprain of interphalangeal joint of right ring finger, sequela|Sprain of interphalangeal joint of right ring finger, sequela +C2854293|T037|AB|S63.635|ICD10CM|Sprain of interphalangeal joint of left ring finger|Sprain of interphalangeal joint of left ring finger +C2854293|T037|HT|S63.635|ICD10CM|Sprain of interphalangeal joint of left ring finger|Sprain of interphalangeal joint of left ring finger +C2854294|T037|AB|S63.635A|ICD10CM|Sprain of interphalangeal joint of left ring finger, init|Sprain of interphalangeal joint of left ring finger, init +C2854294|T037|PT|S63.635A|ICD10CM|Sprain of interphalangeal joint of left ring finger, initial encounter|Sprain of interphalangeal joint of left ring finger, initial encounter +C2854295|T037|AB|S63.635D|ICD10CM|Sprain of interphalangeal joint of left ring finger, subs|Sprain of interphalangeal joint of left ring finger, subs +C2854295|T037|PT|S63.635D|ICD10CM|Sprain of interphalangeal joint of left ring finger, subsequent encounter|Sprain of interphalangeal joint of left ring finger, subsequent encounter +C2854296|T037|AB|S63.635S|ICD10CM|Sprain of interphalangeal joint of left ring finger, sequela|Sprain of interphalangeal joint of left ring finger, sequela +C2854296|T037|PT|S63.635S|ICD10CM|Sprain of interphalangeal joint of left ring finger, sequela|Sprain of interphalangeal joint of left ring finger, sequela +C2854297|T037|AB|S63.636|ICD10CM|Sprain of interphalangeal joint of right little finger|Sprain of interphalangeal joint of right little finger +C2854297|T037|HT|S63.636|ICD10CM|Sprain of interphalangeal joint of right little finger|Sprain of interphalangeal joint of right little finger +C2854298|T037|AB|S63.636A|ICD10CM|Sprain of interphalangeal joint of right little finger, init|Sprain of interphalangeal joint of right little finger, init +C2854298|T037|PT|S63.636A|ICD10CM|Sprain of interphalangeal joint of right little finger, initial encounter|Sprain of interphalangeal joint of right little finger, initial encounter +C2854299|T037|AB|S63.636D|ICD10CM|Sprain of interphalangeal joint of right little finger, subs|Sprain of interphalangeal joint of right little finger, subs +C2854299|T037|PT|S63.636D|ICD10CM|Sprain of interphalangeal joint of right little finger, subsequent encounter|Sprain of interphalangeal joint of right little finger, subsequent encounter +C2854300|T037|AB|S63.636S|ICD10CM|Sprain of interphalangeal joint of r little finger, sequela|Sprain of interphalangeal joint of r little finger, sequela +C2854300|T037|PT|S63.636S|ICD10CM|Sprain of interphalangeal joint of right little finger, sequela|Sprain of interphalangeal joint of right little finger, sequela +C2854301|T037|AB|S63.637|ICD10CM|Sprain of interphalangeal joint of left little finger|Sprain of interphalangeal joint of left little finger +C2854301|T037|HT|S63.637|ICD10CM|Sprain of interphalangeal joint of left little finger|Sprain of interphalangeal joint of left little finger +C2854302|T037|AB|S63.637A|ICD10CM|Sprain of interphalangeal joint of left little finger, init|Sprain of interphalangeal joint of left little finger, init +C2854302|T037|PT|S63.637A|ICD10CM|Sprain of interphalangeal joint of left little finger, initial encounter|Sprain of interphalangeal joint of left little finger, initial encounter +C2854303|T037|AB|S63.637D|ICD10CM|Sprain of interphalangeal joint of left little finger, subs|Sprain of interphalangeal joint of left little finger, subs +C2854303|T037|PT|S63.637D|ICD10CM|Sprain of interphalangeal joint of left little finger, subsequent encounter|Sprain of interphalangeal joint of left little finger, subsequent encounter +C2854304|T037|AB|S63.637S|ICD10CM|Sprain of interphalangeal joint of l little finger, sequela|Sprain of interphalangeal joint of l little finger, sequela +C2854304|T037|PT|S63.637S|ICD10CM|Sprain of interphalangeal joint of left little finger, sequela|Sprain of interphalangeal joint of left little finger, sequela +C2854305|T037|AB|S63.638|ICD10CM|Sprain of interphalangeal joint of other finger|Sprain of interphalangeal joint of other finger +C2854305|T037|HT|S63.638|ICD10CM|Sprain of interphalangeal joint of other finger|Sprain of interphalangeal joint of other finger +C2854306|T037|AB|S63.638A|ICD10CM|Sprain of interphalangeal joint of other finger, init encntr|Sprain of interphalangeal joint of other finger, init encntr +C2854306|T037|PT|S63.638A|ICD10CM|Sprain of interphalangeal joint of other finger, initial encounter|Sprain of interphalangeal joint of other finger, initial encounter +C2854307|T037|AB|S63.638D|ICD10CM|Sprain of interphalangeal joint of other finger, subs encntr|Sprain of interphalangeal joint of other finger, subs encntr +C2854307|T037|PT|S63.638D|ICD10CM|Sprain of interphalangeal joint of other finger, subsequent encounter|Sprain of interphalangeal joint of other finger, subsequent encounter +C2854308|T037|AB|S63.638S|ICD10CM|Sprain of interphalangeal joint of other finger, sequela|Sprain of interphalangeal joint of other finger, sequela +C2854308|T037|PT|S63.638S|ICD10CM|Sprain of interphalangeal joint of other finger, sequela|Sprain of interphalangeal joint of other finger, sequela +C2854309|T037|AB|S63.639|ICD10CM|Sprain of interphalangeal joint of unspecified finger|Sprain of interphalangeal joint of unspecified finger +C2854309|T037|HT|S63.639|ICD10CM|Sprain of interphalangeal joint of unspecified finger|Sprain of interphalangeal joint of unspecified finger +C2854310|T037|AB|S63.639A|ICD10CM|Sprain of interphalangeal joint of unsp finger, init encntr|Sprain of interphalangeal joint of unsp finger, init encntr +C2854310|T037|PT|S63.639A|ICD10CM|Sprain of interphalangeal joint of unspecified finger, initial encounter|Sprain of interphalangeal joint of unspecified finger, initial encounter +C2854311|T037|AB|S63.639D|ICD10CM|Sprain of interphalangeal joint of unsp finger, subs encntr|Sprain of interphalangeal joint of unsp finger, subs encntr +C2854311|T037|PT|S63.639D|ICD10CM|Sprain of interphalangeal joint of unspecified finger, subsequent encounter|Sprain of interphalangeal joint of unspecified finger, subsequent encounter +C2854312|T037|AB|S63.639S|ICD10CM|Sprain of interphalangeal joint of unsp finger, sequela|Sprain of interphalangeal joint of unsp finger, sequela +C2854312|T037|PT|S63.639S|ICD10CM|Sprain of interphalangeal joint of unspecified finger, sequela|Sprain of interphalangeal joint of unspecified finger, sequela +C2854313|T037|AB|S63.64|ICD10CM|Sprain of metacarpophalangeal joint of thumb|Sprain of metacarpophalangeal joint of thumb +C2854313|T037|HT|S63.64|ICD10CM|Sprain of metacarpophalangeal joint of thumb|Sprain of metacarpophalangeal joint of thumb +C2211259|T037|AB|S63.641|ICD10CM|Sprain of metacarpophalangeal joint of right thumb|Sprain of metacarpophalangeal joint of right thumb +C2211259|T037|HT|S63.641|ICD10CM|Sprain of metacarpophalangeal joint of right thumb|Sprain of metacarpophalangeal joint of right thumb +C2854314|T037|AB|S63.641A|ICD10CM|Sprain of metacarpophalangeal joint of right thumb, init|Sprain of metacarpophalangeal joint of right thumb, init +C2854314|T037|PT|S63.641A|ICD10CM|Sprain of metacarpophalangeal joint of right thumb, initial encounter|Sprain of metacarpophalangeal joint of right thumb, initial encounter +C2854315|T037|AB|S63.641D|ICD10CM|Sprain of metacarpophalangeal joint of right thumb, subs|Sprain of metacarpophalangeal joint of right thumb, subs +C2854315|T037|PT|S63.641D|ICD10CM|Sprain of metacarpophalangeal joint of right thumb, subsequent encounter|Sprain of metacarpophalangeal joint of right thumb, subsequent encounter +C2854316|T037|PT|S63.641S|ICD10CM|Sprain of metacarpophalangeal joint of right thumb, sequela|Sprain of metacarpophalangeal joint of right thumb, sequela +C2854316|T037|AB|S63.641S|ICD10CM|Sprain of metacarpophalangeal joint of right thumb, sequela|Sprain of metacarpophalangeal joint of right thumb, sequela +C2211280|T037|AB|S63.642|ICD10CM|Sprain of metacarpophalangeal joint of left thumb|Sprain of metacarpophalangeal joint of left thumb +C2211280|T037|HT|S63.642|ICD10CM|Sprain of metacarpophalangeal joint of left thumb|Sprain of metacarpophalangeal joint of left thumb +C2854317|T037|AB|S63.642A|ICD10CM|Sprain of metacarpophalangeal joint of left thumb, init|Sprain of metacarpophalangeal joint of left thumb, init +C2854317|T037|PT|S63.642A|ICD10CM|Sprain of metacarpophalangeal joint of left thumb, initial encounter|Sprain of metacarpophalangeal joint of left thumb, initial encounter +C2854318|T037|AB|S63.642D|ICD10CM|Sprain of metacarpophalangeal joint of left thumb, subs|Sprain of metacarpophalangeal joint of left thumb, subs +C2854318|T037|PT|S63.642D|ICD10CM|Sprain of metacarpophalangeal joint of left thumb, subsequent encounter|Sprain of metacarpophalangeal joint of left thumb, subsequent encounter +C2854319|T037|PT|S63.642S|ICD10CM|Sprain of metacarpophalangeal joint of left thumb, sequela|Sprain of metacarpophalangeal joint of left thumb, sequela +C2854319|T037|AB|S63.642S|ICD10CM|Sprain of metacarpophalangeal joint of left thumb, sequela|Sprain of metacarpophalangeal joint of left thumb, sequela +C2854320|T037|AB|S63.649|ICD10CM|Sprain of metacarpophalangeal joint of unspecified thumb|Sprain of metacarpophalangeal joint of unspecified thumb +C2854320|T037|HT|S63.649|ICD10CM|Sprain of metacarpophalangeal joint of unspecified thumb|Sprain of metacarpophalangeal joint of unspecified thumb +C2854321|T037|AB|S63.649A|ICD10CM|Sprain of metacarpophalangeal joint of unsp thumb, init|Sprain of metacarpophalangeal joint of unsp thumb, init +C2854321|T037|PT|S63.649A|ICD10CM|Sprain of metacarpophalangeal joint of unspecified thumb, initial encounter|Sprain of metacarpophalangeal joint of unspecified thumb, initial encounter +C2854322|T037|AB|S63.649D|ICD10CM|Sprain of metacarpophalangeal joint of unsp thumb, subs|Sprain of metacarpophalangeal joint of unsp thumb, subs +C2854322|T037|PT|S63.649D|ICD10CM|Sprain of metacarpophalangeal joint of unspecified thumb, subsequent encounter|Sprain of metacarpophalangeal joint of unspecified thumb, subsequent encounter +C2854323|T037|AB|S63.649S|ICD10CM|Sprain of metacarpophalangeal joint of unsp thumb, sequela|Sprain of metacarpophalangeal joint of unsp thumb, sequela +C2854323|T037|PT|S63.649S|ICD10CM|Sprain of metacarpophalangeal joint of unspecified thumb, sequela|Sprain of metacarpophalangeal joint of unspecified thumb, sequela +C2854324|T037|AB|S63.65|ICD10CM|Sprain of metacarpophalangeal joint of and unsp finger(s)|Sprain of metacarpophalangeal joint of and unsp finger(s) +C2854324|T037|HT|S63.65|ICD10CM|Sprain of metacarpophalangeal joint of other and unspecified finger(s)|Sprain of metacarpophalangeal joint of other and unspecified finger(s) +C2854325|T037|AB|S63.650|ICD10CM|Sprain of metacarpophalangeal joint of right index finger|Sprain of metacarpophalangeal joint of right index finger +C2854325|T037|HT|S63.650|ICD10CM|Sprain of metacarpophalangeal joint of right index finger|Sprain of metacarpophalangeal joint of right index finger +C2854326|T037|AB|S63.650A|ICD10CM|Sprain of MCP joint of right index finger, init|Sprain of MCP joint of right index finger, init +C2854326|T037|PT|S63.650A|ICD10CM|Sprain of metacarpophalangeal joint of right index finger, initial encounter|Sprain of metacarpophalangeal joint of right index finger, initial encounter +C2854327|T037|AB|S63.650D|ICD10CM|Sprain of MCP joint of right index finger, subs|Sprain of MCP joint of right index finger, subs +C2854327|T037|PT|S63.650D|ICD10CM|Sprain of metacarpophalangeal joint of right index finger, subsequent encounter|Sprain of metacarpophalangeal joint of right index finger, subsequent encounter +C2854328|T037|AB|S63.650S|ICD10CM|Sprain of MCP joint of right index finger, sequela|Sprain of MCP joint of right index finger, sequela +C2854328|T037|PT|S63.650S|ICD10CM|Sprain of metacarpophalangeal joint of right index finger, sequela|Sprain of metacarpophalangeal joint of right index finger, sequela +C2854329|T037|AB|S63.651|ICD10CM|Sprain of metacarpophalangeal joint of left index finger|Sprain of metacarpophalangeal joint of left index finger +C2854329|T037|HT|S63.651|ICD10CM|Sprain of metacarpophalangeal joint of left index finger|Sprain of metacarpophalangeal joint of left index finger +C2854330|T037|AB|S63.651A|ICD10CM|Sprain of MCP joint of left index finger, init|Sprain of MCP joint of left index finger, init +C2854330|T037|PT|S63.651A|ICD10CM|Sprain of metacarpophalangeal joint of left index finger, initial encounter|Sprain of metacarpophalangeal joint of left index finger, initial encounter +C2854331|T037|AB|S63.651D|ICD10CM|Sprain of MCP joint of left index finger, subs|Sprain of MCP joint of left index finger, subs +C2854331|T037|PT|S63.651D|ICD10CM|Sprain of metacarpophalangeal joint of left index finger, subsequent encounter|Sprain of metacarpophalangeal joint of left index finger, subsequent encounter +C2854332|T037|AB|S63.651S|ICD10CM|Sprain of MCP joint of left index finger, sequela|Sprain of MCP joint of left index finger, sequela +C2854332|T037|PT|S63.651S|ICD10CM|Sprain of metacarpophalangeal joint of left index finger, sequela|Sprain of metacarpophalangeal joint of left index finger, sequela +C2854333|T037|AB|S63.652|ICD10CM|Sprain of metacarpophalangeal joint of right middle finger|Sprain of metacarpophalangeal joint of right middle finger +C2854333|T037|HT|S63.652|ICD10CM|Sprain of metacarpophalangeal joint of right middle finger|Sprain of metacarpophalangeal joint of right middle finger +C2854334|T037|AB|S63.652A|ICD10CM|Sprain of MCP joint of right middle finger, init|Sprain of MCP joint of right middle finger, init +C2854334|T037|PT|S63.652A|ICD10CM|Sprain of metacarpophalangeal joint of right middle finger, initial encounter|Sprain of metacarpophalangeal joint of right middle finger, initial encounter +C2854335|T037|AB|S63.652D|ICD10CM|Sprain of MCP joint of right middle finger, subs|Sprain of MCP joint of right middle finger, subs +C2854335|T037|PT|S63.652D|ICD10CM|Sprain of metacarpophalangeal joint of right middle finger, subsequent encounter|Sprain of metacarpophalangeal joint of right middle finger, subsequent encounter +C2854336|T037|AB|S63.652S|ICD10CM|Sprain of MCP joint of right middle finger, sequela|Sprain of MCP joint of right middle finger, sequela +C2854336|T037|PT|S63.652S|ICD10CM|Sprain of metacarpophalangeal joint of right middle finger, sequela|Sprain of metacarpophalangeal joint of right middle finger, sequela +C2854337|T037|AB|S63.653|ICD10CM|Sprain of metacarpophalangeal joint of left middle finger|Sprain of metacarpophalangeal joint of left middle finger +C2854337|T037|HT|S63.653|ICD10CM|Sprain of metacarpophalangeal joint of left middle finger|Sprain of metacarpophalangeal joint of left middle finger +C2854338|T037|AB|S63.653A|ICD10CM|Sprain of MCP joint of left middle finger, init|Sprain of MCP joint of left middle finger, init +C2854338|T037|PT|S63.653A|ICD10CM|Sprain of metacarpophalangeal joint of left middle finger, initial encounter|Sprain of metacarpophalangeal joint of left middle finger, initial encounter +C2854339|T037|AB|S63.653D|ICD10CM|Sprain of MCP joint of left middle finger, subs|Sprain of MCP joint of left middle finger, subs +C2854339|T037|PT|S63.653D|ICD10CM|Sprain of metacarpophalangeal joint of left middle finger, subsequent encounter|Sprain of metacarpophalangeal joint of left middle finger, subsequent encounter +C2854340|T037|AB|S63.653S|ICD10CM|Sprain of MCP joint of left middle finger, sequela|Sprain of MCP joint of left middle finger, sequela +C2854340|T037|PT|S63.653S|ICD10CM|Sprain of metacarpophalangeal joint of left middle finger, sequela|Sprain of metacarpophalangeal joint of left middle finger, sequela +C2854341|T037|AB|S63.654|ICD10CM|Sprain of metacarpophalangeal joint of right ring finger|Sprain of metacarpophalangeal joint of right ring finger +C2854341|T037|HT|S63.654|ICD10CM|Sprain of metacarpophalangeal joint of right ring finger|Sprain of metacarpophalangeal joint of right ring finger +C2854342|T037|AB|S63.654A|ICD10CM|Sprain of MCP joint of right ring finger, init|Sprain of MCP joint of right ring finger, init +C2854342|T037|PT|S63.654A|ICD10CM|Sprain of metacarpophalangeal joint of right ring finger, initial encounter|Sprain of metacarpophalangeal joint of right ring finger, initial encounter +C2854343|T037|AB|S63.654D|ICD10CM|Sprain of MCP joint of right ring finger, subs|Sprain of MCP joint of right ring finger, subs +C2854343|T037|PT|S63.654D|ICD10CM|Sprain of metacarpophalangeal joint of right ring finger, subsequent encounter|Sprain of metacarpophalangeal joint of right ring finger, subsequent encounter +C2854344|T037|AB|S63.654S|ICD10CM|Sprain of MCP joint of right ring finger, sequela|Sprain of MCP joint of right ring finger, sequela +C2854344|T037|PT|S63.654S|ICD10CM|Sprain of metacarpophalangeal joint of right ring finger, sequela|Sprain of metacarpophalangeal joint of right ring finger, sequela +C2854345|T037|AB|S63.655|ICD10CM|Sprain of metacarpophalangeal joint of left ring finger|Sprain of metacarpophalangeal joint of left ring finger +C2854345|T037|HT|S63.655|ICD10CM|Sprain of metacarpophalangeal joint of left ring finger|Sprain of metacarpophalangeal joint of left ring finger +C2854346|T037|AB|S63.655A|ICD10CM|Sprain of MCP joint of left ring finger, init|Sprain of MCP joint of left ring finger, init +C2854346|T037|PT|S63.655A|ICD10CM|Sprain of metacarpophalangeal joint of left ring finger, initial encounter|Sprain of metacarpophalangeal joint of left ring finger, initial encounter +C2854347|T037|AB|S63.655D|ICD10CM|Sprain of MCP joint of left ring finger, subs|Sprain of MCP joint of left ring finger, subs +C2854347|T037|PT|S63.655D|ICD10CM|Sprain of metacarpophalangeal joint of left ring finger, subsequent encounter|Sprain of metacarpophalangeal joint of left ring finger, subsequent encounter +C2854348|T037|AB|S63.655S|ICD10CM|Sprain of MCP joint of left ring finger, sequela|Sprain of MCP joint of left ring finger, sequela +C2854348|T037|PT|S63.655S|ICD10CM|Sprain of metacarpophalangeal joint of left ring finger, sequela|Sprain of metacarpophalangeal joint of left ring finger, sequela +C2854349|T037|AB|S63.656|ICD10CM|Sprain of metacarpophalangeal joint of right little finger|Sprain of metacarpophalangeal joint of right little finger +C2854349|T037|HT|S63.656|ICD10CM|Sprain of metacarpophalangeal joint of right little finger|Sprain of metacarpophalangeal joint of right little finger +C2854350|T037|AB|S63.656A|ICD10CM|Sprain of MCP joint of right little finger, init|Sprain of MCP joint of right little finger, init +C2854350|T037|PT|S63.656A|ICD10CM|Sprain of metacarpophalangeal joint of right little finger, initial encounter|Sprain of metacarpophalangeal joint of right little finger, initial encounter +C2854351|T037|AB|S63.656D|ICD10CM|Sprain of MCP joint of right little finger, subs|Sprain of MCP joint of right little finger, subs +C2854351|T037|PT|S63.656D|ICD10CM|Sprain of metacarpophalangeal joint of right little finger, subsequent encounter|Sprain of metacarpophalangeal joint of right little finger, subsequent encounter +C2854352|T037|AB|S63.656S|ICD10CM|Sprain of MCP joint of right little finger, sequela|Sprain of MCP joint of right little finger, sequela +C2854352|T037|PT|S63.656S|ICD10CM|Sprain of metacarpophalangeal joint of right little finger, sequela|Sprain of metacarpophalangeal joint of right little finger, sequela +C2854353|T037|AB|S63.657|ICD10CM|Sprain of metacarpophalangeal joint of left little finger|Sprain of metacarpophalangeal joint of left little finger +C2854353|T037|HT|S63.657|ICD10CM|Sprain of metacarpophalangeal joint of left little finger|Sprain of metacarpophalangeal joint of left little finger +C2854354|T037|AB|S63.657A|ICD10CM|Sprain of MCP joint of left little finger, init|Sprain of MCP joint of left little finger, init +C2854354|T037|PT|S63.657A|ICD10CM|Sprain of metacarpophalangeal joint of left little finger, initial encounter|Sprain of metacarpophalangeal joint of left little finger, initial encounter +C2854355|T037|AB|S63.657D|ICD10CM|Sprain of MCP joint of left little finger, subs|Sprain of MCP joint of left little finger, subs +C2854355|T037|PT|S63.657D|ICD10CM|Sprain of metacarpophalangeal joint of left little finger, subsequent encounter|Sprain of metacarpophalangeal joint of left little finger, subsequent encounter +C2854356|T037|AB|S63.657S|ICD10CM|Sprain of MCP joint of left little finger, sequela|Sprain of MCP joint of left little finger, sequela +C2854356|T037|PT|S63.657S|ICD10CM|Sprain of metacarpophalangeal joint of left little finger, sequela|Sprain of metacarpophalangeal joint of left little finger, sequela +C2854358|T037|AB|S63.658|ICD10CM|Sprain of metacarpophalangeal joint of other finger|Sprain of metacarpophalangeal joint of other finger +C2854358|T037|HT|S63.658|ICD10CM|Sprain of metacarpophalangeal joint of other finger|Sprain of metacarpophalangeal joint of other finger +C2854357|T037|ET|S63.658|ICD10CM|Sprain of metacarpophalangeal joint of specified finger with unspecified laterality|Sprain of metacarpophalangeal joint of specified finger with unspecified laterality +C2854359|T037|AB|S63.658A|ICD10CM|Sprain of metacarpophalangeal joint of oth finger, init|Sprain of metacarpophalangeal joint of oth finger, init +C2854359|T037|PT|S63.658A|ICD10CM|Sprain of metacarpophalangeal joint of other finger, initial encounter|Sprain of metacarpophalangeal joint of other finger, initial encounter +C2854360|T037|AB|S63.658D|ICD10CM|Sprain of metacarpophalangeal joint of oth finger, subs|Sprain of metacarpophalangeal joint of oth finger, subs +C2854360|T037|PT|S63.658D|ICD10CM|Sprain of metacarpophalangeal joint of other finger, subsequent encounter|Sprain of metacarpophalangeal joint of other finger, subsequent encounter +C2854361|T037|AB|S63.658S|ICD10CM|Sprain of metacarpophalangeal joint of other finger, sequela|Sprain of metacarpophalangeal joint of other finger, sequela +C2854361|T037|PT|S63.658S|ICD10CM|Sprain of metacarpophalangeal joint of other finger, sequela|Sprain of metacarpophalangeal joint of other finger, sequela +C2854362|T037|AB|S63.659|ICD10CM|Sprain of metacarpophalangeal joint of unspecified finger|Sprain of metacarpophalangeal joint of unspecified finger +C2854362|T037|HT|S63.659|ICD10CM|Sprain of metacarpophalangeal joint of unspecified finger|Sprain of metacarpophalangeal joint of unspecified finger +C2854363|T037|AB|S63.659A|ICD10CM|Sprain of metacarpophalangeal joint of unsp finger, init|Sprain of metacarpophalangeal joint of unsp finger, init +C2854363|T037|PT|S63.659A|ICD10CM|Sprain of metacarpophalangeal joint of unspecified finger, initial encounter|Sprain of metacarpophalangeal joint of unspecified finger, initial encounter +C2854364|T037|AB|S63.659D|ICD10CM|Sprain of metacarpophalangeal joint of unsp finger, subs|Sprain of metacarpophalangeal joint of unsp finger, subs +C2854364|T037|PT|S63.659D|ICD10CM|Sprain of metacarpophalangeal joint of unspecified finger, subsequent encounter|Sprain of metacarpophalangeal joint of unspecified finger, subsequent encounter +C2854365|T037|AB|S63.659S|ICD10CM|Sprain of metacarpophalangeal joint of unsp finger, sequela|Sprain of metacarpophalangeal joint of unsp finger, sequela +C2854365|T037|PT|S63.659S|ICD10CM|Sprain of metacarpophalangeal joint of unspecified finger, sequela|Sprain of metacarpophalangeal joint of unspecified finger, sequela +C2854366|T037|AB|S63.68|ICD10CM|Other sprain of thumb|Other sprain of thumb +C2854366|T037|HT|S63.68|ICD10CM|Other sprain of thumb|Other sprain of thumb +C2854367|T037|AB|S63.681|ICD10CM|Other sprain of right thumb|Other sprain of right thumb +C2854367|T037|HT|S63.681|ICD10CM|Other sprain of right thumb|Other sprain of right thumb +C2854368|T037|PT|S63.681A|ICD10CM|Other sprain of right thumb, initial encounter|Other sprain of right thumb, initial encounter +C2854368|T037|AB|S63.681A|ICD10CM|Other sprain of right thumb, initial encounter|Other sprain of right thumb, initial encounter +C2854369|T037|PT|S63.681D|ICD10CM|Other sprain of right thumb, subsequent encounter|Other sprain of right thumb, subsequent encounter +C2854369|T037|AB|S63.681D|ICD10CM|Other sprain of right thumb, subsequent encounter|Other sprain of right thumb, subsequent encounter +C2854370|T037|PT|S63.681S|ICD10CM|Other sprain of right thumb, sequela|Other sprain of right thumb, sequela +C2854370|T037|AB|S63.681S|ICD10CM|Other sprain of right thumb, sequela|Other sprain of right thumb, sequela +C2854371|T037|AB|S63.682|ICD10CM|Other sprain of left thumb|Other sprain of left thumb +C2854371|T037|HT|S63.682|ICD10CM|Other sprain of left thumb|Other sprain of left thumb +C2854372|T037|PT|S63.682A|ICD10CM|Other sprain of left thumb, initial encounter|Other sprain of left thumb, initial encounter +C2854372|T037|AB|S63.682A|ICD10CM|Other sprain of left thumb, initial encounter|Other sprain of left thumb, initial encounter +C2854373|T037|PT|S63.682D|ICD10CM|Other sprain of left thumb, subsequent encounter|Other sprain of left thumb, subsequent encounter +C2854373|T037|AB|S63.682D|ICD10CM|Other sprain of left thumb, subsequent encounter|Other sprain of left thumb, subsequent encounter +C2854374|T037|PT|S63.682S|ICD10CM|Other sprain of left thumb, sequela|Other sprain of left thumb, sequela +C2854374|T037|AB|S63.682S|ICD10CM|Other sprain of left thumb, sequela|Other sprain of left thumb, sequela +C2854375|T037|AB|S63.689|ICD10CM|Other sprain of unspecified thumb|Other sprain of unspecified thumb +C2854375|T037|HT|S63.689|ICD10CM|Other sprain of unspecified thumb|Other sprain of unspecified thumb +C2854376|T037|PT|S63.689A|ICD10CM|Other sprain of unspecified thumb, initial encounter|Other sprain of unspecified thumb, initial encounter +C2854376|T037|AB|S63.689A|ICD10CM|Other sprain of unspecified thumb, initial encounter|Other sprain of unspecified thumb, initial encounter +C2854377|T037|PT|S63.689D|ICD10CM|Other sprain of unspecified thumb, subsequent encounter|Other sprain of unspecified thumb, subsequent encounter +C2854377|T037|AB|S63.689D|ICD10CM|Other sprain of unspecified thumb, subsequent encounter|Other sprain of unspecified thumb, subsequent encounter +C2854378|T037|PT|S63.689S|ICD10CM|Other sprain of unspecified thumb, sequela|Other sprain of unspecified thumb, sequela +C2854378|T037|AB|S63.689S|ICD10CM|Other sprain of unspecified thumb, sequela|Other sprain of unspecified thumb, sequela +C2854379|T037|AB|S63.69|ICD10CM|Other sprain of other and unspecified finger(s)|Other sprain of other and unspecified finger(s) +C2854379|T037|HT|S63.69|ICD10CM|Other sprain of other and unspecified finger(s)|Other sprain of other and unspecified finger(s) +C2854380|T037|AB|S63.690|ICD10CM|Other sprain of right index finger|Other sprain of right index finger +C2854380|T037|HT|S63.690|ICD10CM|Other sprain of right index finger|Other sprain of right index finger +C2854381|T037|PT|S63.690A|ICD10CM|Other sprain of right index finger, initial encounter|Other sprain of right index finger, initial encounter +C2854381|T037|AB|S63.690A|ICD10CM|Other sprain of right index finger, initial encounter|Other sprain of right index finger, initial encounter +C2854382|T037|PT|S63.690D|ICD10CM|Other sprain of right index finger, subsequent encounter|Other sprain of right index finger, subsequent encounter +C2854382|T037|AB|S63.690D|ICD10CM|Other sprain of right index finger, subsequent encounter|Other sprain of right index finger, subsequent encounter +C2854383|T037|PT|S63.690S|ICD10CM|Other sprain of right index finger, sequela|Other sprain of right index finger, sequela +C2854383|T037|AB|S63.690S|ICD10CM|Other sprain of right index finger, sequela|Other sprain of right index finger, sequela +C2854384|T037|AB|S63.691|ICD10CM|Other sprain of left index finger|Other sprain of left index finger +C2854384|T037|HT|S63.691|ICD10CM|Other sprain of left index finger|Other sprain of left index finger +C2854385|T037|PT|S63.691A|ICD10CM|Other sprain of left index finger, initial encounter|Other sprain of left index finger, initial encounter +C2854385|T037|AB|S63.691A|ICD10CM|Other sprain of left index finger, initial encounter|Other sprain of left index finger, initial encounter +C2854386|T037|PT|S63.691D|ICD10CM|Other sprain of left index finger, subsequent encounter|Other sprain of left index finger, subsequent encounter +C2854386|T037|AB|S63.691D|ICD10CM|Other sprain of left index finger, subsequent encounter|Other sprain of left index finger, subsequent encounter +C2854387|T037|PT|S63.691S|ICD10CM|Other sprain of left index finger, sequela|Other sprain of left index finger, sequela +C2854387|T037|AB|S63.691S|ICD10CM|Other sprain of left index finger, sequela|Other sprain of left index finger, sequela +C2854388|T037|AB|S63.692|ICD10CM|Other sprain of right middle finger|Other sprain of right middle finger +C2854388|T037|HT|S63.692|ICD10CM|Other sprain of right middle finger|Other sprain of right middle finger +C2854389|T037|AB|S63.692A|ICD10CM|Other sprain of right middle finger, initial encounter|Other sprain of right middle finger, initial encounter +C2854389|T037|PT|S63.692A|ICD10CM|Other sprain of right middle finger, initial encounter|Other sprain of right middle finger, initial encounter +C2854390|T037|PT|S63.692D|ICD10CM|Other sprain of right middle finger, subsequent encounter|Other sprain of right middle finger, subsequent encounter +C2854390|T037|AB|S63.692D|ICD10CM|Other sprain of right middle finger, subsequent encounter|Other sprain of right middle finger, subsequent encounter +C2854391|T037|PT|S63.692S|ICD10CM|Other sprain of right middle finger, sequela|Other sprain of right middle finger, sequela +C2854391|T037|AB|S63.692S|ICD10CM|Other sprain of right middle finger, sequela|Other sprain of right middle finger, sequela +C2854392|T037|AB|S63.693|ICD10CM|Other sprain of left middle finger|Other sprain of left middle finger +C2854392|T037|HT|S63.693|ICD10CM|Other sprain of left middle finger|Other sprain of left middle finger +C2854393|T037|PT|S63.693A|ICD10CM|Other sprain of left middle finger, initial encounter|Other sprain of left middle finger, initial encounter +C2854393|T037|AB|S63.693A|ICD10CM|Other sprain of left middle finger, initial encounter|Other sprain of left middle finger, initial encounter +C2854394|T037|PT|S63.693D|ICD10CM|Other sprain of left middle finger, subsequent encounter|Other sprain of left middle finger, subsequent encounter +C2854394|T037|AB|S63.693D|ICD10CM|Other sprain of left middle finger, subsequent encounter|Other sprain of left middle finger, subsequent encounter +C2854395|T037|PT|S63.693S|ICD10CM|Other sprain of left middle finger, sequela|Other sprain of left middle finger, sequela +C2854395|T037|AB|S63.693S|ICD10CM|Other sprain of left middle finger, sequela|Other sprain of left middle finger, sequela +C2854396|T037|AB|S63.694|ICD10CM|Other sprain of right ring finger|Other sprain of right ring finger +C2854396|T037|HT|S63.694|ICD10CM|Other sprain of right ring finger|Other sprain of right ring finger +C2854397|T037|PT|S63.694A|ICD10CM|Other sprain of right ring finger, initial encounter|Other sprain of right ring finger, initial encounter +C2854397|T037|AB|S63.694A|ICD10CM|Other sprain of right ring finger, initial encounter|Other sprain of right ring finger, initial encounter +C2854398|T037|PT|S63.694D|ICD10CM|Other sprain of right ring finger, subsequent encounter|Other sprain of right ring finger, subsequent encounter +C2854398|T037|AB|S63.694D|ICD10CM|Other sprain of right ring finger, subsequent encounter|Other sprain of right ring finger, subsequent encounter +C2854399|T037|PT|S63.694S|ICD10CM|Other sprain of right ring finger, sequela|Other sprain of right ring finger, sequela +C2854399|T037|AB|S63.694S|ICD10CM|Other sprain of right ring finger, sequela|Other sprain of right ring finger, sequela +C2854400|T037|AB|S63.695|ICD10CM|Other sprain of left ring finger|Other sprain of left ring finger +C2854400|T037|HT|S63.695|ICD10CM|Other sprain of left ring finger|Other sprain of left ring finger +C2854401|T037|PT|S63.695A|ICD10CM|Other sprain of left ring finger, initial encounter|Other sprain of left ring finger, initial encounter +C2854401|T037|AB|S63.695A|ICD10CM|Other sprain of left ring finger, initial encounter|Other sprain of left ring finger, initial encounter +C2854402|T037|AB|S63.695D|ICD10CM|Other sprain of left ring finger, subsequent encounter|Other sprain of left ring finger, subsequent encounter +C2854402|T037|PT|S63.695D|ICD10CM|Other sprain of left ring finger, subsequent encounter|Other sprain of left ring finger, subsequent encounter +C2854403|T037|PT|S63.695S|ICD10CM|Other sprain of left ring finger, sequela|Other sprain of left ring finger, sequela +C2854403|T037|AB|S63.695S|ICD10CM|Other sprain of left ring finger, sequela|Other sprain of left ring finger, sequela +C2854404|T037|AB|S63.696|ICD10CM|Other sprain of right little finger|Other sprain of right little finger +C2854404|T037|HT|S63.696|ICD10CM|Other sprain of right little finger|Other sprain of right little finger +C2854405|T037|AB|S63.696A|ICD10CM|Other sprain of right little finger, initial encounter|Other sprain of right little finger, initial encounter +C2854405|T037|PT|S63.696A|ICD10CM|Other sprain of right little finger, initial encounter|Other sprain of right little finger, initial encounter +C2854406|T037|PT|S63.696D|ICD10CM|Other sprain of right little finger, subsequent encounter|Other sprain of right little finger, subsequent encounter +C2854406|T037|AB|S63.696D|ICD10CM|Other sprain of right little finger, subsequent encounter|Other sprain of right little finger, subsequent encounter +C2854407|T037|PT|S63.696S|ICD10CM|Other sprain of right little finger, sequela|Other sprain of right little finger, sequela +C2854407|T037|AB|S63.696S|ICD10CM|Other sprain of right little finger, sequela|Other sprain of right little finger, sequela +C2854408|T037|AB|S63.697|ICD10CM|Other sprain of left little finger|Other sprain of left little finger +C2854408|T037|HT|S63.697|ICD10CM|Other sprain of left little finger|Other sprain of left little finger +C2854409|T037|PT|S63.697A|ICD10CM|Other sprain of left little finger, initial encounter|Other sprain of left little finger, initial encounter +C2854409|T037|AB|S63.697A|ICD10CM|Other sprain of left little finger, initial encounter|Other sprain of left little finger, initial encounter +C2854410|T037|PT|S63.697D|ICD10CM|Other sprain of left little finger, subsequent encounter|Other sprain of left little finger, subsequent encounter +C2854410|T037|AB|S63.697D|ICD10CM|Other sprain of left little finger, subsequent encounter|Other sprain of left little finger, subsequent encounter +C2854411|T037|PT|S63.697S|ICD10CM|Other sprain of left little finger, sequela|Other sprain of left little finger, sequela +C2854411|T037|AB|S63.697S|ICD10CM|Other sprain of left little finger, sequela|Other sprain of left little finger, sequela +C2854413|T037|AB|S63.698|ICD10CM|Other sprain of other finger|Other sprain of other finger +C2854413|T037|HT|S63.698|ICD10CM|Other sprain of other finger|Other sprain of other finger +C2854412|T037|ET|S63.698|ICD10CM|Other sprain of specified finger with unspecified laterality|Other sprain of specified finger with unspecified laterality +C2854414|T037|PT|S63.698A|ICD10CM|Other sprain of other finger, initial encounter|Other sprain of other finger, initial encounter +C2854414|T037|AB|S63.698A|ICD10CM|Other sprain of other finger, initial encounter|Other sprain of other finger, initial encounter +C2854415|T037|PT|S63.698D|ICD10CM|Other sprain of other finger, subsequent encounter|Other sprain of other finger, subsequent encounter +C2854415|T037|AB|S63.698D|ICD10CM|Other sprain of other finger, subsequent encounter|Other sprain of other finger, subsequent encounter +C2854416|T037|PT|S63.698S|ICD10CM|Other sprain of other finger, sequela|Other sprain of other finger, sequela +C2854416|T037|AB|S63.698S|ICD10CM|Other sprain of other finger, sequela|Other sprain of other finger, sequela +C2854417|T037|AB|S63.699|ICD10CM|Other sprain of unspecified finger|Other sprain of unspecified finger +C2854417|T037|HT|S63.699|ICD10CM|Other sprain of unspecified finger|Other sprain of unspecified finger +C2854418|T037|PT|S63.699A|ICD10CM|Other sprain of unspecified finger, initial encounter|Other sprain of unspecified finger, initial encounter +C2854418|T037|AB|S63.699A|ICD10CM|Other sprain of unspecified finger, initial encounter|Other sprain of unspecified finger, initial encounter +C2854419|T037|PT|S63.699D|ICD10CM|Other sprain of unspecified finger, subsequent encounter|Other sprain of unspecified finger, subsequent encounter +C2854419|T037|AB|S63.699D|ICD10CM|Other sprain of unspecified finger, subsequent encounter|Other sprain of unspecified finger, subsequent encounter +C2854420|T037|PT|S63.699S|ICD10CM|Other sprain of unspecified finger, sequela|Other sprain of unspecified finger, sequela +C2854420|T037|AB|S63.699S|ICD10CM|Other sprain of unspecified finger, sequela|Other sprain of unspecified finger, sequela +C0495907|T037|PT|S63.7|ICD10|Sprain and strain of other and unspecified parts of hand|Sprain and strain of other and unspecified parts of hand +C2854421|T037|AB|S63.8|ICD10CM|Sprain of other part of wrist and hand|Sprain of other part of wrist and hand +C2854421|T037|HT|S63.8|ICD10CM|Sprain of other part of wrist and hand|Sprain of other part of wrist and hand +C2854421|T037|HT|S63.8X|ICD10CM|Sprain of other part of wrist and hand|Sprain of other part of wrist and hand +C2854421|T037|AB|S63.8X|ICD10CM|Sprain of other part of wrist and hand|Sprain of other part of wrist and hand +C2854422|T037|AB|S63.8X1|ICD10CM|Sprain of other part of right wrist and hand|Sprain of other part of right wrist and hand +C2854422|T037|HT|S63.8X1|ICD10CM|Sprain of other part of right wrist and hand|Sprain of other part of right wrist and hand +C2854423|T037|AB|S63.8X1A|ICD10CM|Sprain of other part of right wrist and hand, init encntr|Sprain of other part of right wrist and hand, init encntr +C2854423|T037|PT|S63.8X1A|ICD10CM|Sprain of other part of right wrist and hand, initial encounter|Sprain of other part of right wrist and hand, initial encounter +C2854424|T037|AB|S63.8X1D|ICD10CM|Sprain of other part of right wrist and hand, subs encntr|Sprain of other part of right wrist and hand, subs encntr +C2854424|T037|PT|S63.8X1D|ICD10CM|Sprain of other part of right wrist and hand, subsequent encounter|Sprain of other part of right wrist and hand, subsequent encounter +C2854425|T037|AB|S63.8X1S|ICD10CM|Sprain of other part of right wrist and hand, sequela|Sprain of other part of right wrist and hand, sequela +C2854425|T037|PT|S63.8X1S|ICD10CM|Sprain of other part of right wrist and hand, sequela|Sprain of other part of right wrist and hand, sequela +C2854426|T037|AB|S63.8X2|ICD10CM|Sprain of other part of left wrist and hand|Sprain of other part of left wrist and hand +C2854426|T037|HT|S63.8X2|ICD10CM|Sprain of other part of left wrist and hand|Sprain of other part of left wrist and hand +C2854427|T037|AB|S63.8X2A|ICD10CM|Sprain of other part of left wrist and hand, init encntr|Sprain of other part of left wrist and hand, init encntr +C2854427|T037|PT|S63.8X2A|ICD10CM|Sprain of other part of left wrist and hand, initial encounter|Sprain of other part of left wrist and hand, initial encounter +C2854428|T037|AB|S63.8X2D|ICD10CM|Sprain of other part of left wrist and hand, subs encntr|Sprain of other part of left wrist and hand, subs encntr +C2854428|T037|PT|S63.8X2D|ICD10CM|Sprain of other part of left wrist and hand, subsequent encounter|Sprain of other part of left wrist and hand, subsequent encounter +C2854429|T037|AB|S63.8X2S|ICD10CM|Sprain of other part of left wrist and hand, sequela|Sprain of other part of left wrist and hand, sequela +C2854429|T037|PT|S63.8X2S|ICD10CM|Sprain of other part of left wrist and hand, sequela|Sprain of other part of left wrist and hand, sequela +C2854430|T037|AB|S63.8X9|ICD10CM|Sprain of other part of unspecified wrist and hand|Sprain of other part of unspecified wrist and hand +C2854430|T037|HT|S63.8X9|ICD10CM|Sprain of other part of unspecified wrist and hand|Sprain of other part of unspecified wrist and hand +C2854431|T037|AB|S63.8X9A|ICD10CM|Sprain of other part of unsp wrist and hand, init encntr|Sprain of other part of unsp wrist and hand, init encntr +C2854431|T037|PT|S63.8X9A|ICD10CM|Sprain of other part of unspecified wrist and hand, initial encounter|Sprain of other part of unspecified wrist and hand, initial encounter +C2854432|T037|AB|S63.8X9D|ICD10CM|Sprain of other part of unsp wrist and hand, subs encntr|Sprain of other part of unsp wrist and hand, subs encntr +C2854432|T037|PT|S63.8X9D|ICD10CM|Sprain of other part of unspecified wrist and hand, subsequent encounter|Sprain of other part of unspecified wrist and hand, subsequent encounter +C2854433|T037|AB|S63.8X9S|ICD10CM|Sprain of other part of unspecified wrist and hand, sequela|Sprain of other part of unspecified wrist and hand, sequela +C2854433|T037|PT|S63.8X9S|ICD10CM|Sprain of other part of unspecified wrist and hand, sequela|Sprain of other part of unspecified wrist and hand, sequela +C2854434|T037|AB|S63.9|ICD10CM|Sprain of unspecified part of wrist and hand|Sprain of unspecified part of wrist and hand +C2854434|T037|HT|S63.9|ICD10CM|Sprain of unspecified part of wrist and hand|Sprain of unspecified part of wrist and hand +C2854435|T037|AB|S63.90|ICD10CM|Sprain of unspecified part of unspecified wrist and hand|Sprain of unspecified part of unspecified wrist and hand +C2854435|T037|HT|S63.90|ICD10CM|Sprain of unspecified part of unspecified wrist and hand|Sprain of unspecified part of unspecified wrist and hand +C2854436|T037|AB|S63.90XA|ICD10CM|Sprain of unsp part of unsp wrist and hand, init encntr|Sprain of unsp part of unsp wrist and hand, init encntr +C2854436|T037|PT|S63.90XA|ICD10CM|Sprain of unspecified part of unspecified wrist and hand, initial encounter|Sprain of unspecified part of unspecified wrist and hand, initial encounter +C2854437|T037|AB|S63.90XD|ICD10CM|Sprain of unsp part of unsp wrist and hand, subs encntr|Sprain of unsp part of unsp wrist and hand, subs encntr +C2854437|T037|PT|S63.90XD|ICD10CM|Sprain of unspecified part of unspecified wrist and hand, subsequent encounter|Sprain of unspecified part of unspecified wrist and hand, subsequent encounter +C2854438|T037|AB|S63.90XS|ICD10CM|Sprain of unsp part of unspecified wrist and hand, sequela|Sprain of unsp part of unspecified wrist and hand, sequela +C2854438|T037|PT|S63.90XS|ICD10CM|Sprain of unspecified part of unspecified wrist and hand, sequela|Sprain of unspecified part of unspecified wrist and hand, sequela +C2854439|T037|AB|S63.91|ICD10CM|Sprain of unspecified part of right wrist and hand|Sprain of unspecified part of right wrist and hand +C2854439|T037|HT|S63.91|ICD10CM|Sprain of unspecified part of right wrist and hand|Sprain of unspecified part of right wrist and hand +C2854440|T037|AB|S63.91XA|ICD10CM|Sprain of unsp part of right wrist and hand, init encntr|Sprain of unsp part of right wrist and hand, init encntr +C2854440|T037|PT|S63.91XA|ICD10CM|Sprain of unspecified part of right wrist and hand, initial encounter|Sprain of unspecified part of right wrist and hand, initial encounter +C2854441|T037|AB|S63.91XD|ICD10CM|Sprain of unsp part of right wrist and hand, subs encntr|Sprain of unsp part of right wrist and hand, subs encntr +C2854441|T037|PT|S63.91XD|ICD10CM|Sprain of unspecified part of right wrist and hand, subsequent encounter|Sprain of unspecified part of right wrist and hand, subsequent encounter +C2854442|T037|AB|S63.91XS|ICD10CM|Sprain of unspecified part of right wrist and hand, sequela|Sprain of unspecified part of right wrist and hand, sequela +C2854442|T037|PT|S63.91XS|ICD10CM|Sprain of unspecified part of right wrist and hand, sequela|Sprain of unspecified part of right wrist and hand, sequela +C2854443|T037|AB|S63.92|ICD10CM|Sprain of unspecified part of left wrist and hand|Sprain of unspecified part of left wrist and hand +C2854443|T037|HT|S63.92|ICD10CM|Sprain of unspecified part of left wrist and hand|Sprain of unspecified part of left wrist and hand +C2854444|T037|AB|S63.92XA|ICD10CM|Sprain of unsp part of left wrist and hand, init encntr|Sprain of unsp part of left wrist and hand, init encntr +C2854444|T037|PT|S63.92XA|ICD10CM|Sprain of unspecified part of left wrist and hand, initial encounter|Sprain of unspecified part of left wrist and hand, initial encounter +C2854445|T037|AB|S63.92XD|ICD10CM|Sprain of unsp part of left wrist and hand, subs encntr|Sprain of unsp part of left wrist and hand, subs encntr +C2854445|T037|PT|S63.92XD|ICD10CM|Sprain of unspecified part of left wrist and hand, subsequent encounter|Sprain of unspecified part of left wrist and hand, subsequent encounter +C2854446|T037|AB|S63.92XS|ICD10CM|Sprain of unspecified part of left wrist and hand, sequela|Sprain of unspecified part of left wrist and hand, sequela +C2854446|T037|PT|S63.92XS|ICD10CM|Sprain of unspecified part of left wrist and hand, sequela|Sprain of unspecified part of left wrist and hand, sequela +C0478310|T037|HT|S64|ICD10|Injury of nerves at wrist and hand level|Injury of nerves at wrist and hand level +C0478310|T037|AB|S64|ICD10CM|Injury of nerves at wrist and hand level|Injury of nerves at wrist and hand level +C0478310|T037|HT|S64|ICD10CM|Injury of nerves at wrist and hand level|Injury of nerves at wrist and hand level +C0451649|T037|HT|S64.0|ICD10CM|Injury of ulnar nerve at wrist and hand level|Injury of ulnar nerve at wrist and hand level +C0451649|T037|AB|S64.0|ICD10CM|Injury of ulnar nerve at wrist and hand level|Injury of ulnar nerve at wrist and hand level +C0451649|T037|PT|S64.0|ICD10|Injury of ulnar nerve at wrist and hand level|Injury of ulnar nerve at wrist and hand level +C2854447|T037|AB|S64.00|ICD10CM|Injury of ulnar nerve at wrist and hand level of unsp arm|Injury of ulnar nerve at wrist and hand level of unsp arm +C2854447|T037|HT|S64.00|ICD10CM|Injury of ulnar nerve at wrist and hand level of unspecified arm|Injury of ulnar nerve at wrist and hand level of unspecified arm +C2854448|T037|PT|S64.00XA|ICD10CM|Injury of ulnar nerve at wrist and hand level of unspecified arm, initial encounter|Injury of ulnar nerve at wrist and hand level of unspecified arm, initial encounter +C2854448|T037|AB|S64.00XA|ICD10CM|Injury of ulnar nerve at wrs/hnd lv of unsp arm, init|Injury of ulnar nerve at wrs/hnd lv of unsp arm, init +C2854449|T037|PT|S64.00XD|ICD10CM|Injury of ulnar nerve at wrist and hand level of unspecified arm, subsequent encounter|Injury of ulnar nerve at wrist and hand level of unspecified arm, subsequent encounter +C2854449|T037|AB|S64.00XD|ICD10CM|Injury of ulnar nerve at wrs/hnd lv of unsp arm, subs|Injury of ulnar nerve at wrs/hnd lv of unsp arm, subs +C2854450|T037|PT|S64.00XS|ICD10CM|Injury of ulnar nerve at wrist and hand level of unspecified arm, sequela|Injury of ulnar nerve at wrist and hand level of unspecified arm, sequela +C2854450|T037|AB|S64.00XS|ICD10CM|Injury of ulnar nerve at wrs/hnd lv of unsp arm, sequela|Injury of ulnar nerve at wrs/hnd lv of unsp arm, sequela +C2854451|T037|AB|S64.01|ICD10CM|Injury of ulnar nerve at wrist and hand level of right arm|Injury of ulnar nerve at wrist and hand level of right arm +C2854451|T037|HT|S64.01|ICD10CM|Injury of ulnar nerve at wrist and hand level of right arm|Injury of ulnar nerve at wrist and hand level of right arm +C2854452|T037|PT|S64.01XA|ICD10CM|Injury of ulnar nerve at wrist and hand level of right arm, initial encounter|Injury of ulnar nerve at wrist and hand level of right arm, initial encounter +C2854452|T037|AB|S64.01XA|ICD10CM|Injury of ulnar nerve at wrs/hnd lv of right arm, init|Injury of ulnar nerve at wrs/hnd lv of right arm, init +C2854453|T037|PT|S64.01XD|ICD10CM|Injury of ulnar nerve at wrist and hand level of right arm, subsequent encounter|Injury of ulnar nerve at wrist and hand level of right arm, subsequent encounter +C2854453|T037|AB|S64.01XD|ICD10CM|Injury of ulnar nerve at wrs/hnd lv of right arm, subs|Injury of ulnar nerve at wrs/hnd lv of right arm, subs +C2854454|T037|PT|S64.01XS|ICD10CM|Injury of ulnar nerve at wrist and hand level of right arm, sequela|Injury of ulnar nerve at wrist and hand level of right arm, sequela +C2854454|T037|AB|S64.01XS|ICD10CM|Injury of ulnar nerve at wrs/hnd lv of right arm, sequela|Injury of ulnar nerve at wrs/hnd lv of right arm, sequela +C2854455|T037|AB|S64.02|ICD10CM|Injury of ulnar nerve at wrist and hand level of left arm|Injury of ulnar nerve at wrist and hand level of left arm +C2854455|T037|HT|S64.02|ICD10CM|Injury of ulnar nerve at wrist and hand level of left arm|Injury of ulnar nerve at wrist and hand level of left arm +C2854456|T037|PT|S64.02XA|ICD10CM|Injury of ulnar nerve at wrist and hand level of left arm, initial encounter|Injury of ulnar nerve at wrist and hand level of left arm, initial encounter +C2854456|T037|AB|S64.02XA|ICD10CM|Injury of ulnar nerve at wrs/hnd lv of left arm, init|Injury of ulnar nerve at wrs/hnd lv of left arm, init +C2854457|T037|PT|S64.02XD|ICD10CM|Injury of ulnar nerve at wrist and hand level of left arm, subsequent encounter|Injury of ulnar nerve at wrist and hand level of left arm, subsequent encounter +C2854457|T037|AB|S64.02XD|ICD10CM|Injury of ulnar nerve at wrs/hnd lv of left arm, subs|Injury of ulnar nerve at wrs/hnd lv of left arm, subs +C2854458|T037|PT|S64.02XS|ICD10CM|Injury of ulnar nerve at wrist and hand level of left arm, sequela|Injury of ulnar nerve at wrist and hand level of left arm, sequela +C2854458|T037|AB|S64.02XS|ICD10CM|Injury of ulnar nerve at wrs/hnd lv of left arm, sequela|Injury of ulnar nerve at wrs/hnd lv of left arm, sequela +C0495909|T037|PT|S64.1|ICD10|Injury of median nerve at wrist and hand level|Injury of median nerve at wrist and hand level +C0495909|T037|HT|S64.1|ICD10CM|Injury of median nerve at wrist and hand level|Injury of median nerve at wrist and hand level +C0495909|T037|AB|S64.1|ICD10CM|Injury of median nerve at wrist and hand level|Injury of median nerve at wrist and hand level +C2854459|T037|AB|S64.10|ICD10CM|Injury of median nerve at wrist and hand level of unsp arm|Injury of median nerve at wrist and hand level of unsp arm +C2854459|T037|HT|S64.10|ICD10CM|Injury of median nerve at wrist and hand level of unspecified arm|Injury of median nerve at wrist and hand level of unspecified arm +C2854460|T037|PT|S64.10XA|ICD10CM|Injury of median nerve at wrist and hand level of unspecified arm, initial encounter|Injury of median nerve at wrist and hand level of unspecified arm, initial encounter +C2854460|T037|AB|S64.10XA|ICD10CM|Injury of median nerve at wrs/hnd lv of unsp arm, init|Injury of median nerve at wrs/hnd lv of unsp arm, init +C2854461|T037|PT|S64.10XD|ICD10CM|Injury of median nerve at wrist and hand level of unspecified arm, subsequent encounter|Injury of median nerve at wrist and hand level of unspecified arm, subsequent encounter +C2854461|T037|AB|S64.10XD|ICD10CM|Injury of median nerve at wrs/hnd lv of unsp arm, subs|Injury of median nerve at wrs/hnd lv of unsp arm, subs +C2854462|T037|PT|S64.10XS|ICD10CM|Injury of median nerve at wrist and hand level of unspecified arm, sequela|Injury of median nerve at wrist and hand level of unspecified arm, sequela +C2854462|T037|AB|S64.10XS|ICD10CM|Injury of median nerve at wrs/hnd lv of unsp arm, sequela|Injury of median nerve at wrs/hnd lv of unsp arm, sequela +C2854463|T037|AB|S64.11|ICD10CM|Injury of median nerve at wrist and hand level of right arm|Injury of median nerve at wrist and hand level of right arm +C2854463|T037|HT|S64.11|ICD10CM|Injury of median nerve at wrist and hand level of right arm|Injury of median nerve at wrist and hand level of right arm +C2854464|T037|PT|S64.11XA|ICD10CM|Injury of median nerve at wrist and hand level of right arm, initial encounter|Injury of median nerve at wrist and hand level of right arm, initial encounter +C2854464|T037|AB|S64.11XA|ICD10CM|Injury of median nerve at wrs/hnd lv of right arm, init|Injury of median nerve at wrs/hnd lv of right arm, init +C2854465|T037|PT|S64.11XD|ICD10CM|Injury of median nerve at wrist and hand level of right arm, subsequent encounter|Injury of median nerve at wrist and hand level of right arm, subsequent encounter +C2854465|T037|AB|S64.11XD|ICD10CM|Injury of median nerve at wrs/hnd lv of right arm, subs|Injury of median nerve at wrs/hnd lv of right arm, subs +C2854466|T037|PT|S64.11XS|ICD10CM|Injury of median nerve at wrist and hand level of right arm, sequela|Injury of median nerve at wrist and hand level of right arm, sequela +C2854466|T037|AB|S64.11XS|ICD10CM|Injury of median nerve at wrs/hnd lv of right arm, sequela|Injury of median nerve at wrs/hnd lv of right arm, sequela +C2854467|T037|AB|S64.12|ICD10CM|Injury of median nerve at wrist and hand level of left arm|Injury of median nerve at wrist and hand level of left arm +C2854467|T037|HT|S64.12|ICD10CM|Injury of median nerve at wrist and hand level of left arm|Injury of median nerve at wrist and hand level of left arm +C2854468|T037|PT|S64.12XA|ICD10CM|Injury of median nerve at wrist and hand level of left arm, initial encounter|Injury of median nerve at wrist and hand level of left arm, initial encounter +C2854468|T037|AB|S64.12XA|ICD10CM|Injury of median nerve at wrs/hnd lv of left arm, init|Injury of median nerve at wrs/hnd lv of left arm, init +C2854469|T037|PT|S64.12XD|ICD10CM|Injury of median nerve at wrist and hand level of left arm, subsequent encounter|Injury of median nerve at wrist and hand level of left arm, subsequent encounter +C2854469|T037|AB|S64.12XD|ICD10CM|Injury of median nerve at wrs/hnd lv of left arm, subs|Injury of median nerve at wrs/hnd lv of left arm, subs +C2854470|T037|PT|S64.12XS|ICD10CM|Injury of median nerve at wrist and hand level of left arm, sequela|Injury of median nerve at wrist and hand level of left arm, sequela +C2854470|T037|AB|S64.12XS|ICD10CM|Injury of median nerve at wrs/hnd lv of left arm, sequela|Injury of median nerve at wrs/hnd lv of left arm, sequela +C0451651|T037|PT|S64.2|ICD10|Injury of radial nerve at wrist and hand level|Injury of radial nerve at wrist and hand level +C0451651|T037|HT|S64.2|ICD10CM|Injury of radial nerve at wrist and hand level|Injury of radial nerve at wrist and hand level +C0451651|T037|AB|S64.2|ICD10CM|Injury of radial nerve at wrist and hand level|Injury of radial nerve at wrist and hand level +C2854471|T037|AB|S64.20|ICD10CM|Injury of radial nerve at wrist and hand level of unsp arm|Injury of radial nerve at wrist and hand level of unsp arm +C2854471|T037|HT|S64.20|ICD10CM|Injury of radial nerve at wrist and hand level of unspecified arm|Injury of radial nerve at wrist and hand level of unspecified arm +C2854472|T037|PT|S64.20XA|ICD10CM|Injury of radial nerve at wrist and hand level of unspecified arm, initial encounter|Injury of radial nerve at wrist and hand level of unspecified arm, initial encounter +C2854472|T037|AB|S64.20XA|ICD10CM|Injury of radial nerve at wrs/hnd lv of unsp arm, init|Injury of radial nerve at wrs/hnd lv of unsp arm, init +C2854473|T037|PT|S64.20XD|ICD10CM|Injury of radial nerve at wrist and hand level of unspecified arm, subsequent encounter|Injury of radial nerve at wrist and hand level of unspecified arm, subsequent encounter +C2854473|T037|AB|S64.20XD|ICD10CM|Injury of radial nerve at wrs/hnd lv of unsp arm, subs|Injury of radial nerve at wrs/hnd lv of unsp arm, subs +C2854474|T037|PT|S64.20XS|ICD10CM|Injury of radial nerve at wrist and hand level of unspecified arm, sequela|Injury of radial nerve at wrist and hand level of unspecified arm, sequela +C2854474|T037|AB|S64.20XS|ICD10CM|Injury of radial nerve at wrs/hnd lv of unsp arm, sequela|Injury of radial nerve at wrs/hnd lv of unsp arm, sequela +C2854475|T037|AB|S64.21|ICD10CM|Injury of radial nerve at wrist and hand level of right arm|Injury of radial nerve at wrist and hand level of right arm +C2854475|T037|HT|S64.21|ICD10CM|Injury of radial nerve at wrist and hand level of right arm|Injury of radial nerve at wrist and hand level of right arm +C2854476|T037|PT|S64.21XA|ICD10CM|Injury of radial nerve at wrist and hand level of right arm, initial encounter|Injury of radial nerve at wrist and hand level of right arm, initial encounter +C2854476|T037|AB|S64.21XA|ICD10CM|Injury of radial nerve at wrs/hnd lv of right arm, init|Injury of radial nerve at wrs/hnd lv of right arm, init +C2854477|T037|PT|S64.21XD|ICD10CM|Injury of radial nerve at wrist and hand level of right arm, subsequent encounter|Injury of radial nerve at wrist and hand level of right arm, subsequent encounter +C2854477|T037|AB|S64.21XD|ICD10CM|Injury of radial nerve at wrs/hnd lv of right arm, subs|Injury of radial nerve at wrs/hnd lv of right arm, subs +C2854478|T037|PT|S64.21XS|ICD10CM|Injury of radial nerve at wrist and hand level of right arm, sequela|Injury of radial nerve at wrist and hand level of right arm, sequela +C2854478|T037|AB|S64.21XS|ICD10CM|Injury of radial nerve at wrs/hnd lv of right arm, sequela|Injury of radial nerve at wrs/hnd lv of right arm, sequela +C2854479|T037|AB|S64.22|ICD10CM|Injury of radial nerve at wrist and hand level of left arm|Injury of radial nerve at wrist and hand level of left arm +C2854479|T037|HT|S64.22|ICD10CM|Injury of radial nerve at wrist and hand level of left arm|Injury of radial nerve at wrist and hand level of left arm +C2854480|T037|PT|S64.22XA|ICD10CM|Injury of radial nerve at wrist and hand level of left arm, initial encounter|Injury of radial nerve at wrist and hand level of left arm, initial encounter +C2854480|T037|AB|S64.22XA|ICD10CM|Injury of radial nerve at wrs/hnd lv of left arm, init|Injury of radial nerve at wrs/hnd lv of left arm, init +C2854481|T037|PT|S64.22XD|ICD10CM|Injury of radial nerve at wrist and hand level of left arm, subsequent encounter|Injury of radial nerve at wrist and hand level of left arm, subsequent encounter +C2854481|T037|AB|S64.22XD|ICD10CM|Injury of radial nerve at wrs/hnd lv of left arm, subs|Injury of radial nerve at wrs/hnd lv of left arm, subs +C2854482|T037|PT|S64.22XS|ICD10CM|Injury of radial nerve at wrist and hand level of left arm, sequela|Injury of radial nerve at wrist and hand level of left arm, sequela +C2854482|T037|AB|S64.22XS|ICD10CM|Injury of radial nerve at wrs/hnd lv of left arm, sequela|Injury of radial nerve at wrs/hnd lv of left arm, sequela +C0451653|T037|HT|S64.3|ICD10CM|Injury of digital nerve of thumb|Injury of digital nerve of thumb +C0451653|T037|AB|S64.3|ICD10CM|Injury of digital nerve of thumb|Injury of digital nerve of thumb +C0451653|T037|PT|S64.3|ICD10|Injury of digital nerve of thumb|Injury of digital nerve of thumb +C2854483|T037|AB|S64.30|ICD10CM|Injury of digital nerve of unspecified thumb|Injury of digital nerve of unspecified thumb +C2854483|T037|HT|S64.30|ICD10CM|Injury of digital nerve of unspecified thumb|Injury of digital nerve of unspecified thumb +C2854484|T037|AB|S64.30XA|ICD10CM|Injury of digital nerve of unspecified thumb, init encntr|Injury of digital nerve of unspecified thumb, init encntr +C2854484|T037|PT|S64.30XA|ICD10CM|Injury of digital nerve of unspecified thumb, initial encounter|Injury of digital nerve of unspecified thumb, initial encounter +C2854485|T037|AB|S64.30XD|ICD10CM|Injury of digital nerve of unspecified thumb, subs encntr|Injury of digital nerve of unspecified thumb, subs encntr +C2854485|T037|PT|S64.30XD|ICD10CM|Injury of digital nerve of unspecified thumb, subsequent encounter|Injury of digital nerve of unspecified thumb, subsequent encounter +C2854486|T037|AB|S64.30XS|ICD10CM|Injury of digital nerve of unspecified thumb, sequela|Injury of digital nerve of unspecified thumb, sequela +C2854486|T037|PT|S64.30XS|ICD10CM|Injury of digital nerve of unspecified thumb, sequela|Injury of digital nerve of unspecified thumb, sequela +C2854487|T037|AB|S64.31|ICD10CM|Injury of digital nerve of right thumb|Injury of digital nerve of right thumb +C2854487|T037|HT|S64.31|ICD10CM|Injury of digital nerve of right thumb|Injury of digital nerve of right thumb +C2854488|T037|AB|S64.31XA|ICD10CM|Injury of digital nerve of right thumb, initial encounter|Injury of digital nerve of right thumb, initial encounter +C2854488|T037|PT|S64.31XA|ICD10CM|Injury of digital nerve of right thumb, initial encounter|Injury of digital nerve of right thumb, initial encounter +C2854489|T037|AB|S64.31XD|ICD10CM|Injury of digital nerve of right thumb, subsequent encounter|Injury of digital nerve of right thumb, subsequent encounter +C2854489|T037|PT|S64.31XD|ICD10CM|Injury of digital nerve of right thumb, subsequent encounter|Injury of digital nerve of right thumb, subsequent encounter +C2854490|T037|AB|S64.31XS|ICD10CM|Injury of digital nerve of right thumb, sequela|Injury of digital nerve of right thumb, sequela +C2854490|T037|PT|S64.31XS|ICD10CM|Injury of digital nerve of right thumb, sequela|Injury of digital nerve of right thumb, sequela +C2854491|T037|AB|S64.32|ICD10CM|Injury of digital nerve of left thumb|Injury of digital nerve of left thumb +C2854491|T037|HT|S64.32|ICD10CM|Injury of digital nerve of left thumb|Injury of digital nerve of left thumb +C2854492|T037|AB|S64.32XA|ICD10CM|Injury of digital nerve of left thumb, initial encounter|Injury of digital nerve of left thumb, initial encounter +C2854492|T037|PT|S64.32XA|ICD10CM|Injury of digital nerve of left thumb, initial encounter|Injury of digital nerve of left thumb, initial encounter +C2854493|T037|AB|S64.32XD|ICD10CM|Injury of digital nerve of left thumb, subsequent encounter|Injury of digital nerve of left thumb, subsequent encounter +C2854493|T037|PT|S64.32XD|ICD10CM|Injury of digital nerve of left thumb, subsequent encounter|Injury of digital nerve of left thumb, subsequent encounter +C2854494|T037|AB|S64.32XS|ICD10CM|Injury of digital nerve of left thumb, sequela|Injury of digital nerve of left thumb, sequela +C2854494|T037|PT|S64.32XS|ICD10CM|Injury of digital nerve of left thumb, sequela|Injury of digital nerve of left thumb, sequela +C2854495|T037|AB|S64.4|ICD10CM|Injury of digital nerve of other and unspecified finger|Injury of digital nerve of other and unspecified finger +C2854495|T037|HT|S64.4|ICD10CM|Injury of digital nerve of other and unspecified finger|Injury of digital nerve of other and unspecified finger +C0495910|T037|PT|S64.4|ICD10|Injury of digital nerve of other finger|Injury of digital nerve of other finger +C2854496|T037|AB|S64.40|ICD10CM|Injury of digital nerve of unspecified finger|Injury of digital nerve of unspecified finger +C2854496|T037|HT|S64.40|ICD10CM|Injury of digital nerve of unspecified finger|Injury of digital nerve of unspecified finger +C2854497|T037|AB|S64.40XA|ICD10CM|Injury of digital nerve of unspecified finger, init encntr|Injury of digital nerve of unspecified finger, init encntr +C2854497|T037|PT|S64.40XA|ICD10CM|Injury of digital nerve of unspecified finger, initial encounter|Injury of digital nerve of unspecified finger, initial encounter +C2854498|T037|AB|S64.40XD|ICD10CM|Injury of digital nerve of unspecified finger, subs encntr|Injury of digital nerve of unspecified finger, subs encntr +C2854498|T037|PT|S64.40XD|ICD10CM|Injury of digital nerve of unspecified finger, subsequent encounter|Injury of digital nerve of unspecified finger, subsequent encounter +C2854499|T037|AB|S64.40XS|ICD10CM|Injury of digital nerve of unspecified finger, sequela|Injury of digital nerve of unspecified finger, sequela +C2854499|T037|PT|S64.40XS|ICD10CM|Injury of digital nerve of unspecified finger, sequela|Injury of digital nerve of unspecified finger, sequela +C0495910|T037|HT|S64.49|ICD10CM|Injury of digital nerve of other finger|Injury of digital nerve of other finger +C0495910|T037|AB|S64.49|ICD10CM|Injury of digital nerve of other finger|Injury of digital nerve of other finger +C2854500|T037|AB|S64.490|ICD10CM|Injury of digital nerve of right index finger|Injury of digital nerve of right index finger +C2854500|T037|HT|S64.490|ICD10CM|Injury of digital nerve of right index finger|Injury of digital nerve of right index finger +C2854501|T037|AB|S64.490A|ICD10CM|Injury of digital nerve of right index finger, init encntr|Injury of digital nerve of right index finger, init encntr +C2854501|T037|PT|S64.490A|ICD10CM|Injury of digital nerve of right index finger, initial encounter|Injury of digital nerve of right index finger, initial encounter +C2854502|T037|AB|S64.490D|ICD10CM|Injury of digital nerve of right index finger, subs encntr|Injury of digital nerve of right index finger, subs encntr +C2854502|T037|PT|S64.490D|ICD10CM|Injury of digital nerve of right index finger, subsequent encounter|Injury of digital nerve of right index finger, subsequent encounter +C2854503|T037|AB|S64.490S|ICD10CM|Injury of digital nerve of right index finger, sequela|Injury of digital nerve of right index finger, sequela +C2854503|T037|PT|S64.490S|ICD10CM|Injury of digital nerve of right index finger, sequela|Injury of digital nerve of right index finger, sequela +C2854504|T037|AB|S64.491|ICD10CM|Injury of digital nerve of left index finger|Injury of digital nerve of left index finger +C2854504|T037|HT|S64.491|ICD10CM|Injury of digital nerve of left index finger|Injury of digital nerve of left index finger +C2854505|T037|AB|S64.491A|ICD10CM|Injury of digital nerve of left index finger, init encntr|Injury of digital nerve of left index finger, init encntr +C2854505|T037|PT|S64.491A|ICD10CM|Injury of digital nerve of left index finger, initial encounter|Injury of digital nerve of left index finger, initial encounter +C2854506|T037|AB|S64.491D|ICD10CM|Injury of digital nerve of left index finger, subs encntr|Injury of digital nerve of left index finger, subs encntr +C2854506|T037|PT|S64.491D|ICD10CM|Injury of digital nerve of left index finger, subsequent encounter|Injury of digital nerve of left index finger, subsequent encounter +C2854507|T037|AB|S64.491S|ICD10CM|Injury of digital nerve of left index finger, sequela|Injury of digital nerve of left index finger, sequela +C2854507|T037|PT|S64.491S|ICD10CM|Injury of digital nerve of left index finger, sequela|Injury of digital nerve of left index finger, sequela +C2854508|T037|AB|S64.492|ICD10CM|Injury of digital nerve of right middle finger|Injury of digital nerve of right middle finger +C2854508|T037|HT|S64.492|ICD10CM|Injury of digital nerve of right middle finger|Injury of digital nerve of right middle finger +C2854509|T037|AB|S64.492A|ICD10CM|Injury of digital nerve of right middle finger, init encntr|Injury of digital nerve of right middle finger, init encntr +C2854509|T037|PT|S64.492A|ICD10CM|Injury of digital nerve of right middle finger, initial encounter|Injury of digital nerve of right middle finger, initial encounter +C2854510|T037|AB|S64.492D|ICD10CM|Injury of digital nerve of right middle finger, subs encntr|Injury of digital nerve of right middle finger, subs encntr +C2854510|T037|PT|S64.492D|ICD10CM|Injury of digital nerve of right middle finger, subsequent encounter|Injury of digital nerve of right middle finger, subsequent encounter +C2854511|T037|AB|S64.492S|ICD10CM|Injury of digital nerve of right middle finger, sequela|Injury of digital nerve of right middle finger, sequela +C2854511|T037|PT|S64.492S|ICD10CM|Injury of digital nerve of right middle finger, sequela|Injury of digital nerve of right middle finger, sequela +C2854512|T037|AB|S64.493|ICD10CM|Injury of digital nerve of left middle finger|Injury of digital nerve of left middle finger +C2854512|T037|HT|S64.493|ICD10CM|Injury of digital nerve of left middle finger|Injury of digital nerve of left middle finger +C2854513|T037|AB|S64.493A|ICD10CM|Injury of digital nerve of left middle finger, init encntr|Injury of digital nerve of left middle finger, init encntr +C2854513|T037|PT|S64.493A|ICD10CM|Injury of digital nerve of left middle finger, initial encounter|Injury of digital nerve of left middle finger, initial encounter +C2854514|T037|AB|S64.493D|ICD10CM|Injury of digital nerve of left middle finger, subs encntr|Injury of digital nerve of left middle finger, subs encntr +C2854514|T037|PT|S64.493D|ICD10CM|Injury of digital nerve of left middle finger, subsequent encounter|Injury of digital nerve of left middle finger, subsequent encounter +C2854515|T037|AB|S64.493S|ICD10CM|Injury of digital nerve of left middle finger, sequela|Injury of digital nerve of left middle finger, sequela +C2854515|T037|PT|S64.493S|ICD10CM|Injury of digital nerve of left middle finger, sequela|Injury of digital nerve of left middle finger, sequela +C2854516|T037|AB|S64.494|ICD10CM|Injury of digital nerve of right ring finger|Injury of digital nerve of right ring finger +C2854516|T037|HT|S64.494|ICD10CM|Injury of digital nerve of right ring finger|Injury of digital nerve of right ring finger +C2854517|T037|AB|S64.494A|ICD10CM|Injury of digital nerve of right ring finger, init encntr|Injury of digital nerve of right ring finger, init encntr +C2854517|T037|PT|S64.494A|ICD10CM|Injury of digital nerve of right ring finger, initial encounter|Injury of digital nerve of right ring finger, initial encounter +C2854518|T037|AB|S64.494D|ICD10CM|Injury of digital nerve of right ring finger, subs encntr|Injury of digital nerve of right ring finger, subs encntr +C2854518|T037|PT|S64.494D|ICD10CM|Injury of digital nerve of right ring finger, subsequent encounter|Injury of digital nerve of right ring finger, subsequent encounter +C2854519|T037|AB|S64.494S|ICD10CM|Injury of digital nerve of right ring finger, sequela|Injury of digital nerve of right ring finger, sequela +C2854519|T037|PT|S64.494S|ICD10CM|Injury of digital nerve of right ring finger, sequela|Injury of digital nerve of right ring finger, sequela +C2854520|T037|AB|S64.495|ICD10CM|Injury of digital nerve of left ring finger|Injury of digital nerve of left ring finger +C2854520|T037|HT|S64.495|ICD10CM|Injury of digital nerve of left ring finger|Injury of digital nerve of left ring finger +C2854521|T037|AB|S64.495A|ICD10CM|Injury of digital nerve of left ring finger, init encntr|Injury of digital nerve of left ring finger, init encntr +C2854521|T037|PT|S64.495A|ICD10CM|Injury of digital nerve of left ring finger, initial encounter|Injury of digital nerve of left ring finger, initial encounter +C2854522|T037|AB|S64.495D|ICD10CM|Injury of digital nerve of left ring finger, subs encntr|Injury of digital nerve of left ring finger, subs encntr +C2854522|T037|PT|S64.495D|ICD10CM|Injury of digital nerve of left ring finger, subsequent encounter|Injury of digital nerve of left ring finger, subsequent encounter +C2854523|T037|AB|S64.495S|ICD10CM|Injury of digital nerve of left ring finger, sequela|Injury of digital nerve of left ring finger, sequela +C2854523|T037|PT|S64.495S|ICD10CM|Injury of digital nerve of left ring finger, sequela|Injury of digital nerve of left ring finger, sequela +C2854524|T037|AB|S64.496|ICD10CM|Injury of digital nerve of right little finger|Injury of digital nerve of right little finger +C2854524|T037|HT|S64.496|ICD10CM|Injury of digital nerve of right little finger|Injury of digital nerve of right little finger +C2854525|T037|AB|S64.496A|ICD10CM|Injury of digital nerve of right little finger, init encntr|Injury of digital nerve of right little finger, init encntr +C2854525|T037|PT|S64.496A|ICD10CM|Injury of digital nerve of right little finger, initial encounter|Injury of digital nerve of right little finger, initial encounter +C2854526|T037|AB|S64.496D|ICD10CM|Injury of digital nerve of right little finger, subs encntr|Injury of digital nerve of right little finger, subs encntr +C2854526|T037|PT|S64.496D|ICD10CM|Injury of digital nerve of right little finger, subsequent encounter|Injury of digital nerve of right little finger, subsequent encounter +C2854527|T037|AB|S64.496S|ICD10CM|Injury of digital nerve of right little finger, sequela|Injury of digital nerve of right little finger, sequela +C2854527|T037|PT|S64.496S|ICD10CM|Injury of digital nerve of right little finger, sequela|Injury of digital nerve of right little finger, sequela +C2854528|T037|AB|S64.497|ICD10CM|Injury of digital nerve of left little finger|Injury of digital nerve of left little finger +C2854528|T037|HT|S64.497|ICD10CM|Injury of digital nerve of left little finger|Injury of digital nerve of left little finger +C2854529|T037|AB|S64.497A|ICD10CM|Injury of digital nerve of left little finger, init encntr|Injury of digital nerve of left little finger, init encntr +C2854529|T037|PT|S64.497A|ICD10CM|Injury of digital nerve of left little finger, initial encounter|Injury of digital nerve of left little finger, initial encounter +C2854530|T037|AB|S64.497D|ICD10CM|Injury of digital nerve of left little finger, subs encntr|Injury of digital nerve of left little finger, subs encntr +C2854530|T037|PT|S64.497D|ICD10CM|Injury of digital nerve of left little finger, subsequent encounter|Injury of digital nerve of left little finger, subsequent encounter +C2854531|T037|AB|S64.497S|ICD10CM|Injury of digital nerve of left little finger, sequela|Injury of digital nerve of left little finger, sequela +C2854531|T037|PT|S64.497S|ICD10CM|Injury of digital nerve of left little finger, sequela|Injury of digital nerve of left little finger, sequela +C0495910|T037|HT|S64.498|ICD10CM|Injury of digital nerve of other finger|Injury of digital nerve of other finger +C0495910|T037|AB|S64.498|ICD10CM|Injury of digital nerve of other finger|Injury of digital nerve of other finger +C2854532|T037|ET|S64.498|ICD10CM|Injury of digital nerve of specified finger with unspecified laterality|Injury of digital nerve of specified finger with unspecified laterality +C2854533|T037|AB|S64.498A|ICD10CM|Injury of digital nerve of other finger, initial encounter|Injury of digital nerve of other finger, initial encounter +C2854533|T037|PT|S64.498A|ICD10CM|Injury of digital nerve of other finger, initial encounter|Injury of digital nerve of other finger, initial encounter +C2854534|T037|AB|S64.498D|ICD10CM|Injury of digital nerve of other finger, subs encntr|Injury of digital nerve of other finger, subs encntr +C2854534|T037|PT|S64.498D|ICD10CM|Injury of digital nerve of other finger, subsequent encounter|Injury of digital nerve of other finger, subsequent encounter +C2854535|T037|AB|S64.498S|ICD10CM|Injury of digital nerve of other finger, sequela|Injury of digital nerve of other finger, sequela +C2854535|T037|PT|S64.498S|ICD10CM|Injury of digital nerve of other finger, sequela|Injury of digital nerve of other finger, sequela +C0495911|T037|PT|S64.7|ICD10|Injury of multiple nerves at wrist and hand level|Injury of multiple nerves at wrist and hand level +C0478309|T037|PT|S64.8|ICD10|Injury of other nerves at wrist and hand level|Injury of other nerves at wrist and hand level +C0478309|T037|HT|S64.8|ICD10CM|Injury of other nerves at wrist and hand level|Injury of other nerves at wrist and hand level +C0478309|T037|AB|S64.8|ICD10CM|Injury of other nerves at wrist and hand level|Injury of other nerves at wrist and hand level +C0478309|T037|HT|S64.8X|ICD10CM|Injury of other nerves at wrist and hand level|Injury of other nerves at wrist and hand level +C0478309|T037|AB|S64.8X|ICD10CM|Injury of other nerves at wrist and hand level|Injury of other nerves at wrist and hand level +C2854536|T037|AB|S64.8X1|ICD10CM|Injury of other nerves at wrist and hand level of right arm|Injury of other nerves at wrist and hand level of right arm +C2854536|T037|HT|S64.8X1|ICD10CM|Injury of other nerves at wrist and hand level of right arm|Injury of other nerves at wrist and hand level of right arm +C2854537|T037|AB|S64.8X1A|ICD10CM|Injury of nerves at wrist and hand level of right arm, init|Injury of nerves at wrist and hand level of right arm, init +C2854537|T037|PT|S64.8X1A|ICD10CM|Injury of other nerves at wrist and hand level of right arm, initial encounter|Injury of other nerves at wrist and hand level of right arm, initial encounter +C2854538|T037|AB|S64.8X1D|ICD10CM|Injury of nerves at wrist and hand level of right arm, subs|Injury of nerves at wrist and hand level of right arm, subs +C2854538|T037|PT|S64.8X1D|ICD10CM|Injury of other nerves at wrist and hand level of right arm, subsequent encounter|Injury of other nerves at wrist and hand level of right arm, subsequent encounter +C2854539|T037|AB|S64.8X1S|ICD10CM|Injury of nerves at wrs/hnd lv of right arm, sequela|Injury of nerves at wrs/hnd lv of right arm, sequela +C2854539|T037|PT|S64.8X1S|ICD10CM|Injury of other nerves at wrist and hand level of right arm, sequela|Injury of other nerves at wrist and hand level of right arm, sequela +C2854540|T037|AB|S64.8X2|ICD10CM|Injury of other nerves at wrist and hand level of left arm|Injury of other nerves at wrist and hand level of left arm +C2854540|T037|HT|S64.8X2|ICD10CM|Injury of other nerves at wrist and hand level of left arm|Injury of other nerves at wrist and hand level of left arm +C2854541|T037|AB|S64.8X2A|ICD10CM|Injury of nerves at wrist and hand level of left arm, init|Injury of nerves at wrist and hand level of left arm, init +C2854541|T037|PT|S64.8X2A|ICD10CM|Injury of other nerves at wrist and hand level of left arm, initial encounter|Injury of other nerves at wrist and hand level of left arm, initial encounter +C2854542|T037|AB|S64.8X2D|ICD10CM|Injury of nerves at wrist and hand level of left arm, subs|Injury of nerves at wrist and hand level of left arm, subs +C2854542|T037|PT|S64.8X2D|ICD10CM|Injury of other nerves at wrist and hand level of left arm, subsequent encounter|Injury of other nerves at wrist and hand level of left arm, subsequent encounter +C2854543|T037|AB|S64.8X2S|ICD10CM|Injury of nerves at wrs/hnd lv of left arm, sequela|Injury of nerves at wrs/hnd lv of left arm, sequela +C2854543|T037|PT|S64.8X2S|ICD10CM|Injury of other nerves at wrist and hand level of left arm, sequela|Injury of other nerves at wrist and hand level of left arm, sequela +C2854544|T037|AB|S64.8X9|ICD10CM|Injury of other nerves at wrist and hand level of unsp arm|Injury of other nerves at wrist and hand level of unsp arm +C2854544|T037|HT|S64.8X9|ICD10CM|Injury of other nerves at wrist and hand level of unspecified arm|Injury of other nerves at wrist and hand level of unspecified arm +C2854545|T037|AB|S64.8X9A|ICD10CM|Injury of nerves at wrist and hand level of unsp arm, init|Injury of nerves at wrist and hand level of unsp arm, init +C2854545|T037|PT|S64.8X9A|ICD10CM|Injury of other nerves at wrist and hand level of unspecified arm, initial encounter|Injury of other nerves at wrist and hand level of unspecified arm, initial encounter +C2854546|T037|AB|S64.8X9D|ICD10CM|Injury of nerves at wrist and hand level of unsp arm, subs|Injury of nerves at wrist and hand level of unsp arm, subs +C2854546|T037|PT|S64.8X9D|ICD10CM|Injury of other nerves at wrist and hand level of unspecified arm, subsequent encounter|Injury of other nerves at wrist and hand level of unspecified arm, subsequent encounter +C2854547|T037|AB|S64.8X9S|ICD10CM|Injury of nerves at wrs/hnd lv of unsp arm, sequela|Injury of nerves at wrs/hnd lv of unsp arm, sequela +C2854547|T037|PT|S64.8X9S|ICD10CM|Injury of other nerves at wrist and hand level of unspecified arm, sequela|Injury of other nerves at wrist and hand level of unspecified arm, sequela +C0478310|T037|HT|S64.9|ICD10CM|Injury of unspecified nerve at wrist and hand level|Injury of unspecified nerve at wrist and hand level +C0478310|T037|AB|S64.9|ICD10CM|Injury of unspecified nerve at wrist and hand level|Injury of unspecified nerve at wrist and hand level +C0478310|T037|PT|S64.9|ICD10|Injury of unspecified nerve at wrist and hand level|Injury of unspecified nerve at wrist and hand level +C2854548|T037|AB|S64.90|ICD10CM|Injury of unsp nerve at wrist and hand level of unsp arm|Injury of unsp nerve at wrist and hand level of unsp arm +C2854548|T037|HT|S64.90|ICD10CM|Injury of unspecified nerve at wrist and hand level of unspecified arm|Injury of unspecified nerve at wrist and hand level of unspecified arm +C2854549|T037|AB|S64.90XA|ICD10CM|Injury of unsp nerve at wrs/hnd lv of unsp arm, init|Injury of unsp nerve at wrs/hnd lv of unsp arm, init +C2854549|T037|PT|S64.90XA|ICD10CM|Injury of unspecified nerve at wrist and hand level of unspecified arm, initial encounter|Injury of unspecified nerve at wrist and hand level of unspecified arm, initial encounter +C2854550|T037|AB|S64.90XD|ICD10CM|Injury of unsp nerve at wrs/hnd lv of unsp arm, subs|Injury of unsp nerve at wrs/hnd lv of unsp arm, subs +C2854550|T037|PT|S64.90XD|ICD10CM|Injury of unspecified nerve at wrist and hand level of unspecified arm, subsequent encounter|Injury of unspecified nerve at wrist and hand level of unspecified arm, subsequent encounter +C2854551|T037|AB|S64.90XS|ICD10CM|Injury of unsp nerve at wrs/hnd lv of unsp arm, sequela|Injury of unsp nerve at wrs/hnd lv of unsp arm, sequela +C2854551|T037|PT|S64.90XS|ICD10CM|Injury of unspecified nerve at wrist and hand level of unspecified arm, sequela|Injury of unspecified nerve at wrist and hand level of unspecified arm, sequela +C2854552|T037|AB|S64.91|ICD10CM|Injury of unsp nerve at wrist and hand level of right arm|Injury of unsp nerve at wrist and hand level of right arm +C2854552|T037|HT|S64.91|ICD10CM|Injury of unspecified nerve at wrist and hand level of right arm|Injury of unspecified nerve at wrist and hand level of right arm +C2854553|T037|AB|S64.91XA|ICD10CM|Injury of unsp nerve at wrs/hnd lv of right arm, init|Injury of unsp nerve at wrs/hnd lv of right arm, init +C2854553|T037|PT|S64.91XA|ICD10CM|Injury of unspecified nerve at wrist and hand level of right arm, initial encounter|Injury of unspecified nerve at wrist and hand level of right arm, initial encounter +C2854554|T037|AB|S64.91XD|ICD10CM|Injury of unsp nerve at wrs/hnd lv of right arm, subs|Injury of unsp nerve at wrs/hnd lv of right arm, subs +C2854554|T037|PT|S64.91XD|ICD10CM|Injury of unspecified nerve at wrist and hand level of right arm, subsequent encounter|Injury of unspecified nerve at wrist and hand level of right arm, subsequent encounter +C2854555|T037|AB|S64.91XS|ICD10CM|Injury of unsp nerve at wrs/hnd lv of right arm, sequela|Injury of unsp nerve at wrs/hnd lv of right arm, sequela +C2854555|T037|PT|S64.91XS|ICD10CM|Injury of unspecified nerve at wrist and hand level of right arm, sequela|Injury of unspecified nerve at wrist and hand level of right arm, sequela +C2854556|T037|AB|S64.92|ICD10CM|Injury of unsp nerve at wrist and hand level of left arm|Injury of unsp nerve at wrist and hand level of left arm +C2854556|T037|HT|S64.92|ICD10CM|Injury of unspecified nerve at wrist and hand level of left arm|Injury of unspecified nerve at wrist and hand level of left arm +C2854557|T037|AB|S64.92XA|ICD10CM|Injury of unsp nerve at wrs/hnd lv of left arm, init|Injury of unsp nerve at wrs/hnd lv of left arm, init +C2854557|T037|PT|S64.92XA|ICD10CM|Injury of unspecified nerve at wrist and hand level of left arm, initial encounter|Injury of unspecified nerve at wrist and hand level of left arm, initial encounter +C2854558|T037|AB|S64.92XD|ICD10CM|Injury of unsp nerve at wrs/hnd lv of left arm, subs|Injury of unsp nerve at wrs/hnd lv of left arm, subs +C2854558|T037|PT|S64.92XD|ICD10CM|Injury of unspecified nerve at wrist and hand level of left arm, subsequent encounter|Injury of unspecified nerve at wrist and hand level of left arm, subsequent encounter +C2854559|T037|AB|S64.92XS|ICD10CM|Injury of unsp nerve at wrs/hnd lv of left arm, sequela|Injury of unsp nerve at wrs/hnd lv of left arm, sequela +C2854559|T037|PT|S64.92XS|ICD10CM|Injury of unspecified nerve at wrist and hand level of left arm, sequela|Injury of unspecified nerve at wrist and hand level of left arm, sequela +C0478312|T037|HT|S65|ICD10|Injury of blood vessels at wrist and hand level|Injury of blood vessels at wrist and hand level +C0478312|T037|AB|S65|ICD10CM|Injury of blood vessels at wrist and hand level|Injury of blood vessels at wrist and hand level +C0478312|T037|HT|S65|ICD10CM|Injury of blood vessels at wrist and hand level|Injury of blood vessels at wrist and hand level +C0452063|T037|HT|S65.0|ICD10CM|Injury of ulnar artery at wrist and hand level|Injury of ulnar artery at wrist and hand level +C0452063|T037|AB|S65.0|ICD10CM|Injury of ulnar artery at wrist and hand level|Injury of ulnar artery at wrist and hand level +C0452063|T037|PT|S65.0|ICD10|Injury of ulnar artery at wrist and hand level|Injury of ulnar artery at wrist and hand level +C2854560|T037|AB|S65.00|ICD10CM|Unspecified injury of ulnar artery at wrist and hand level|Unspecified injury of ulnar artery at wrist and hand level +C2854560|T037|HT|S65.00|ICD10CM|Unspecified injury of ulnar artery at wrist and hand level|Unspecified injury of ulnar artery at wrist and hand level +C2854561|T037|AB|S65.001|ICD10CM|Unsp injury of ulnar artery at wrs/hnd lv of right arm|Unsp injury of ulnar artery at wrs/hnd lv of right arm +C2854561|T037|HT|S65.001|ICD10CM|Unspecified injury of ulnar artery at wrist and hand level of right arm|Unspecified injury of ulnar artery at wrist and hand level of right arm +C2854562|T037|AB|S65.001A|ICD10CM|Unsp injury of ulnar artery at wrs/hnd lv of right arm, init|Unsp injury of ulnar artery at wrs/hnd lv of right arm, init +C2854562|T037|PT|S65.001A|ICD10CM|Unspecified injury of ulnar artery at wrist and hand level of right arm, initial encounter|Unspecified injury of ulnar artery at wrist and hand level of right arm, initial encounter +C2854563|T037|AB|S65.001D|ICD10CM|Unsp injury of ulnar artery at wrs/hnd lv of right arm, subs|Unsp injury of ulnar artery at wrs/hnd lv of right arm, subs +C2854563|T037|PT|S65.001D|ICD10CM|Unspecified injury of ulnar artery at wrist and hand level of right arm, subsequent encounter|Unspecified injury of ulnar artery at wrist and hand level of right arm, subsequent encounter +C2854564|T037|AB|S65.001S|ICD10CM|Unsp injury of ulnar art at wrs/hnd lv of right arm, sequela|Unsp injury of ulnar art at wrs/hnd lv of right arm, sequela +C2854564|T037|PT|S65.001S|ICD10CM|Unspecified injury of ulnar artery at wrist and hand level of right arm, sequela|Unspecified injury of ulnar artery at wrist and hand level of right arm, sequela +C2854565|T037|AB|S65.002|ICD10CM|Unsp injury of ulnar artery at wrs/hnd lv of left arm|Unsp injury of ulnar artery at wrs/hnd lv of left arm +C2854565|T037|HT|S65.002|ICD10CM|Unspecified injury of ulnar artery at wrist and hand level of left arm|Unspecified injury of ulnar artery at wrist and hand level of left arm +C2854566|T037|AB|S65.002A|ICD10CM|Unsp injury of ulnar artery at wrs/hnd lv of left arm, init|Unsp injury of ulnar artery at wrs/hnd lv of left arm, init +C2854566|T037|PT|S65.002A|ICD10CM|Unspecified injury of ulnar artery at wrist and hand level of left arm, initial encounter|Unspecified injury of ulnar artery at wrist and hand level of left arm, initial encounter +C2854567|T037|AB|S65.002D|ICD10CM|Unsp injury of ulnar artery at wrs/hnd lv of left arm, subs|Unsp injury of ulnar artery at wrs/hnd lv of left arm, subs +C2854567|T037|PT|S65.002D|ICD10CM|Unspecified injury of ulnar artery at wrist and hand level of left arm, subsequent encounter|Unspecified injury of ulnar artery at wrist and hand level of left arm, subsequent encounter +C2854568|T037|AB|S65.002S|ICD10CM|Unsp injury of ulnar art at wrs/hnd lv of left arm, sequela|Unsp injury of ulnar art at wrs/hnd lv of left arm, sequela +C2854568|T037|PT|S65.002S|ICD10CM|Unspecified injury of ulnar artery at wrist and hand level of left arm, sequela|Unspecified injury of ulnar artery at wrist and hand level of left arm, sequela +C2854569|T037|AB|S65.009|ICD10CM|Unsp injury of ulnar artery at wrs/hnd lv of unsp arm|Unsp injury of ulnar artery at wrs/hnd lv of unsp arm +C2854569|T037|HT|S65.009|ICD10CM|Unspecified injury of ulnar artery at wrist and hand level of unspecified arm|Unspecified injury of ulnar artery at wrist and hand level of unspecified arm +C2854570|T037|AB|S65.009A|ICD10CM|Unsp injury of ulnar artery at wrs/hnd lv of unsp arm, init|Unsp injury of ulnar artery at wrs/hnd lv of unsp arm, init +C2854570|T037|PT|S65.009A|ICD10CM|Unspecified injury of ulnar artery at wrist and hand level of unspecified arm, initial encounter|Unspecified injury of ulnar artery at wrist and hand level of unspecified arm, initial encounter +C2854571|T037|AB|S65.009D|ICD10CM|Unsp injury of ulnar artery at wrs/hnd lv of unsp arm, subs|Unsp injury of ulnar artery at wrs/hnd lv of unsp arm, subs +C2854571|T037|PT|S65.009D|ICD10CM|Unspecified injury of ulnar artery at wrist and hand level of unspecified arm, subsequent encounter|Unspecified injury of ulnar artery at wrist and hand level of unspecified arm, subsequent encounter +C2854572|T037|AB|S65.009S|ICD10CM|Unsp injury of ulnar art at wrs/hnd lv of unsp arm, sequela|Unsp injury of ulnar art at wrs/hnd lv of unsp arm, sequela +C2854572|T037|PT|S65.009S|ICD10CM|Unspecified injury of ulnar artery at wrist and hand level of unspecified arm, sequela|Unspecified injury of ulnar artery at wrist and hand level of unspecified arm, sequela +C2854573|T037|AB|S65.01|ICD10CM|Laceration of ulnar artery at wrist and hand level|Laceration of ulnar artery at wrist and hand level +C2854573|T037|HT|S65.01|ICD10CM|Laceration of ulnar artery at wrist and hand level|Laceration of ulnar artery at wrist and hand level +C2854574|T037|HT|S65.011|ICD10CM|Laceration of ulnar artery at wrist and hand level of right arm|Laceration of ulnar artery at wrist and hand level of right arm +C2854574|T037|AB|S65.011|ICD10CM|Laceration of ulnar artery at wrs/hnd lv of right arm|Laceration of ulnar artery at wrs/hnd lv of right arm +C2854575|T037|PT|S65.011A|ICD10CM|Laceration of ulnar artery at wrist and hand level of right arm, initial encounter|Laceration of ulnar artery at wrist and hand level of right arm, initial encounter +C2854575|T037|AB|S65.011A|ICD10CM|Laceration of ulnar artery at wrs/hnd lv of right arm, init|Laceration of ulnar artery at wrs/hnd lv of right arm, init +C2854576|T037|PT|S65.011D|ICD10CM|Laceration of ulnar artery at wrist and hand level of right arm, subsequent encounter|Laceration of ulnar artery at wrist and hand level of right arm, subsequent encounter +C2854576|T037|AB|S65.011D|ICD10CM|Laceration of ulnar artery at wrs/hnd lv of right arm, subs|Laceration of ulnar artery at wrs/hnd lv of right arm, subs +C2854577|T037|AB|S65.011S|ICD10CM|Lacerat ulnar artery at wrs/hnd lv of right arm, sequela|Lacerat ulnar artery at wrs/hnd lv of right arm, sequela +C2854577|T037|PT|S65.011S|ICD10CM|Laceration of ulnar artery at wrist and hand level of right arm, sequela|Laceration of ulnar artery at wrist and hand level of right arm, sequela +C2854578|T037|HT|S65.012|ICD10CM|Laceration of ulnar artery at wrist and hand level of left arm|Laceration of ulnar artery at wrist and hand level of left arm +C2854578|T037|AB|S65.012|ICD10CM|Laceration of ulnar artery at wrs/hnd lv of left arm|Laceration of ulnar artery at wrs/hnd lv of left arm +C2854579|T037|PT|S65.012A|ICD10CM|Laceration of ulnar artery at wrist and hand level of left arm, initial encounter|Laceration of ulnar artery at wrist and hand level of left arm, initial encounter +C2854579|T037|AB|S65.012A|ICD10CM|Laceration of ulnar artery at wrs/hnd lv of left arm, init|Laceration of ulnar artery at wrs/hnd lv of left arm, init +C2854580|T037|PT|S65.012D|ICD10CM|Laceration of ulnar artery at wrist and hand level of left arm, subsequent encounter|Laceration of ulnar artery at wrist and hand level of left arm, subsequent encounter +C2854580|T037|AB|S65.012D|ICD10CM|Laceration of ulnar artery at wrs/hnd lv of left arm, subs|Laceration of ulnar artery at wrs/hnd lv of left arm, subs +C2854581|T037|AB|S65.012S|ICD10CM|Lacerat ulnar artery at wrs/hnd lv of left arm, sequela|Lacerat ulnar artery at wrs/hnd lv of left arm, sequela +C2854581|T037|PT|S65.012S|ICD10CM|Laceration of ulnar artery at wrist and hand level of left arm, sequela|Laceration of ulnar artery at wrist and hand level of left arm, sequela +C2854582|T037|HT|S65.019|ICD10CM|Laceration of ulnar artery at wrist and hand level of unspecified arm|Laceration of ulnar artery at wrist and hand level of unspecified arm +C2854582|T037|AB|S65.019|ICD10CM|Laceration of ulnar artery at wrs/hnd lv of unsp arm|Laceration of ulnar artery at wrs/hnd lv of unsp arm +C2854583|T037|PT|S65.019A|ICD10CM|Laceration of ulnar artery at wrist and hand level of unspecified arm, initial encounter|Laceration of ulnar artery at wrist and hand level of unspecified arm, initial encounter +C2854583|T037|AB|S65.019A|ICD10CM|Laceration of ulnar artery at wrs/hnd lv of unsp arm, init|Laceration of ulnar artery at wrs/hnd lv of unsp arm, init +C2854584|T037|PT|S65.019D|ICD10CM|Laceration of ulnar artery at wrist and hand level of unspecified arm, subsequent encounter|Laceration of ulnar artery at wrist and hand level of unspecified arm, subsequent encounter +C2854584|T037|AB|S65.019D|ICD10CM|Laceration of ulnar artery at wrs/hnd lv of unsp arm, subs|Laceration of ulnar artery at wrs/hnd lv of unsp arm, subs +C2854585|T037|AB|S65.019S|ICD10CM|Lacerat ulnar artery at wrs/hnd lv of unsp arm, sequela|Lacerat ulnar artery at wrs/hnd lv of unsp arm, sequela +C2854585|T037|PT|S65.019S|ICD10CM|Laceration of ulnar artery at wrist and hand level of unspecified arm, sequela|Laceration of ulnar artery at wrist and hand level of unspecified arm, sequela +C2854586|T037|AB|S65.09|ICD10CM|Oth injury of ulnar artery at wrist and hand level|Oth injury of ulnar artery at wrist and hand level +C2854586|T037|HT|S65.09|ICD10CM|Other specified injury of ulnar artery at wrist and hand level|Other specified injury of ulnar artery at wrist and hand level +C2854587|T037|AB|S65.091|ICD10CM|Inj ulnar artery at wrist and hand level of right arm|Inj ulnar artery at wrist and hand level of right arm +C2854587|T037|HT|S65.091|ICD10CM|Other specified injury of ulnar artery at wrist and hand level of right arm|Other specified injury of ulnar artery at wrist and hand level of right arm +C2854588|T037|AB|S65.091A|ICD10CM|Inj ulnar artery at wrist and hand level of right arm, init|Inj ulnar artery at wrist and hand level of right arm, init +C2854588|T037|PT|S65.091A|ICD10CM|Other specified injury of ulnar artery at wrist and hand level of right arm, initial encounter|Other specified injury of ulnar artery at wrist and hand level of right arm, initial encounter +C2854589|T037|AB|S65.091D|ICD10CM|Inj ulnar artery at wrist and hand level of right arm, subs|Inj ulnar artery at wrist and hand level of right arm, subs +C2854589|T037|PT|S65.091D|ICD10CM|Other specified injury of ulnar artery at wrist and hand level of right arm, subsequent encounter|Other specified injury of ulnar artery at wrist and hand level of right arm, subsequent encounter +C2854590|T037|AB|S65.091S|ICD10CM|Inj ulnar artery at wrs/hnd lv of right arm, sequela|Inj ulnar artery at wrs/hnd lv of right arm, sequela +C2854590|T037|PT|S65.091S|ICD10CM|Other specified injury of ulnar artery at wrist and hand level of right arm, sequela|Other specified injury of ulnar artery at wrist and hand level of right arm, sequela +C2854591|T037|AB|S65.092|ICD10CM|Inj ulnar artery at wrist and hand level of left arm|Inj ulnar artery at wrist and hand level of left arm +C2854591|T037|HT|S65.092|ICD10CM|Other specified injury of ulnar artery at wrist and hand level of left arm|Other specified injury of ulnar artery at wrist and hand level of left arm +C2854592|T037|AB|S65.092A|ICD10CM|Inj ulnar artery at wrist and hand level of left arm, init|Inj ulnar artery at wrist and hand level of left arm, init +C2854592|T037|PT|S65.092A|ICD10CM|Other specified injury of ulnar artery at wrist and hand level of left arm, initial encounter|Other specified injury of ulnar artery at wrist and hand level of left arm, initial encounter +C2854593|T037|AB|S65.092D|ICD10CM|Inj ulnar artery at wrist and hand level of left arm, subs|Inj ulnar artery at wrist and hand level of left arm, subs +C2854593|T037|PT|S65.092D|ICD10CM|Other specified injury of ulnar artery at wrist and hand level of left arm, subsequent encounter|Other specified injury of ulnar artery at wrist and hand level of left arm, subsequent encounter +C2854594|T037|AB|S65.092S|ICD10CM|Inj ulnar artery at wrs/hnd lv of left arm, sequela|Inj ulnar artery at wrs/hnd lv of left arm, sequela +C2854594|T037|PT|S65.092S|ICD10CM|Other specified injury of ulnar artery at wrist and hand level of left arm, sequela|Other specified injury of ulnar artery at wrist and hand level of left arm, sequela +C2854595|T037|AB|S65.099|ICD10CM|Inj ulnar artery at wrist and hand level of unsp arm|Inj ulnar artery at wrist and hand level of unsp arm +C2854595|T037|HT|S65.099|ICD10CM|Other specified injury of ulnar artery at wrist and hand level of unspecified arm|Other specified injury of ulnar artery at wrist and hand level of unspecified arm +C2854596|T037|AB|S65.099A|ICD10CM|Inj ulnar artery at wrist and hand level of unsp arm, init|Inj ulnar artery at wrist and hand level of unsp arm, init +C2854596|T037|PT|S65.099A|ICD10CM|Other specified injury of ulnar artery at wrist and hand level of unspecified arm, initial encounter|Other specified injury of ulnar artery at wrist and hand level of unspecified arm, initial encounter +C2854597|T037|AB|S65.099D|ICD10CM|Inj ulnar artery at wrist and hand level of unsp arm, subs|Inj ulnar artery at wrist and hand level of unsp arm, subs +C2854598|T037|AB|S65.099S|ICD10CM|Inj ulnar artery at wrs/hnd lv of unsp arm, sequela|Inj ulnar artery at wrs/hnd lv of unsp arm, sequela +C2854598|T037|PT|S65.099S|ICD10CM|Other specified injury of ulnar artery at wrist and hand level of unspecified arm, sequela|Other specified injury of ulnar artery at wrist and hand level of unspecified arm, sequela +C0452059|T037|PT|S65.1|ICD10|Injury of radial artery at wrist and hand level|Injury of radial artery at wrist and hand level +C0452059|T037|HT|S65.1|ICD10CM|Injury of radial artery at wrist and hand level|Injury of radial artery at wrist and hand level +C0452059|T037|AB|S65.1|ICD10CM|Injury of radial artery at wrist and hand level|Injury of radial artery at wrist and hand level +C2854599|T037|AB|S65.10|ICD10CM|Unspecified injury of radial artery at wrist and hand level|Unspecified injury of radial artery at wrist and hand level +C2854599|T037|HT|S65.10|ICD10CM|Unspecified injury of radial artery at wrist and hand level|Unspecified injury of radial artery at wrist and hand level +C2854600|T037|AB|S65.101|ICD10CM|Unsp injury of radial artery at wrs/hnd lv of right arm|Unsp injury of radial artery at wrs/hnd lv of right arm +C2854600|T037|HT|S65.101|ICD10CM|Unspecified injury of radial artery at wrist and hand level of right arm|Unspecified injury of radial artery at wrist and hand level of right arm +C2854601|T037|AB|S65.101A|ICD10CM|Unsp injury of radial art at wrs/hnd lv of right arm, init|Unsp injury of radial art at wrs/hnd lv of right arm, init +C2854601|T037|PT|S65.101A|ICD10CM|Unspecified injury of radial artery at wrist and hand level of right arm, initial encounter|Unspecified injury of radial artery at wrist and hand level of right arm, initial encounter +C2854602|T037|AB|S65.101D|ICD10CM|Unsp injury of radial art at wrs/hnd lv of right arm, subs|Unsp injury of radial art at wrs/hnd lv of right arm, subs +C2854602|T037|PT|S65.101D|ICD10CM|Unspecified injury of radial artery at wrist and hand level of right arm, subsequent encounter|Unspecified injury of radial artery at wrist and hand level of right arm, subsequent encounter +C2854603|T037|AB|S65.101S|ICD10CM|Unsp inj radial art at wrs/hnd lv of right arm, sequela|Unsp inj radial art at wrs/hnd lv of right arm, sequela +C2854603|T037|PT|S65.101S|ICD10CM|Unspecified injury of radial artery at wrist and hand level of right arm, sequela|Unspecified injury of radial artery at wrist and hand level of right arm, sequela +C2854604|T037|AB|S65.102|ICD10CM|Unsp injury of radial artery at wrs/hnd lv of left arm|Unsp injury of radial artery at wrs/hnd lv of left arm +C2854604|T037|HT|S65.102|ICD10CM|Unspecified injury of radial artery at wrist and hand level of left arm|Unspecified injury of radial artery at wrist and hand level of left arm +C2854605|T037|AB|S65.102A|ICD10CM|Unsp injury of radial artery at wrs/hnd lv of left arm, init|Unsp injury of radial artery at wrs/hnd lv of left arm, init +C2854605|T037|PT|S65.102A|ICD10CM|Unspecified injury of radial artery at wrist and hand level of left arm, initial encounter|Unspecified injury of radial artery at wrist and hand level of left arm, initial encounter +C2854606|T037|AB|S65.102D|ICD10CM|Unsp injury of radial artery at wrs/hnd lv of left arm, subs|Unsp injury of radial artery at wrs/hnd lv of left arm, subs +C2854606|T037|PT|S65.102D|ICD10CM|Unspecified injury of radial artery at wrist and hand level of left arm, subsequent encounter|Unspecified injury of radial artery at wrist and hand level of left arm, subsequent encounter +C2854607|T037|AB|S65.102S|ICD10CM|Unsp injury of radial art at wrs/hnd lv of left arm, sequela|Unsp injury of radial art at wrs/hnd lv of left arm, sequela +C2854607|T037|PT|S65.102S|ICD10CM|Unspecified injury of radial artery at wrist and hand level of left arm, sequela|Unspecified injury of radial artery at wrist and hand level of left arm, sequela +C2854608|T037|AB|S65.109|ICD10CM|Unsp injury of radial artery at wrs/hnd lv of unsp arm|Unsp injury of radial artery at wrs/hnd lv of unsp arm +C2854608|T037|HT|S65.109|ICD10CM|Unspecified injury of radial artery at wrist and hand level of unspecified arm|Unspecified injury of radial artery at wrist and hand level of unspecified arm +C2854609|T037|AB|S65.109A|ICD10CM|Unsp injury of radial artery at wrs/hnd lv of unsp arm, init|Unsp injury of radial artery at wrs/hnd lv of unsp arm, init +C2854609|T037|PT|S65.109A|ICD10CM|Unspecified injury of radial artery at wrist and hand level of unspecified arm, initial encounter|Unspecified injury of radial artery at wrist and hand level of unspecified arm, initial encounter +C2854610|T037|AB|S65.109D|ICD10CM|Unsp injury of radial artery at wrs/hnd lv of unsp arm, subs|Unsp injury of radial artery at wrs/hnd lv of unsp arm, subs +C2854610|T037|PT|S65.109D|ICD10CM|Unspecified injury of radial artery at wrist and hand level of unspecified arm, subsequent encounter|Unspecified injury of radial artery at wrist and hand level of unspecified arm, subsequent encounter +C2854611|T037|AB|S65.109S|ICD10CM|Unsp injury of radial art at wrs/hnd lv of unsp arm, sequela|Unsp injury of radial art at wrs/hnd lv of unsp arm, sequela +C2854611|T037|PT|S65.109S|ICD10CM|Unspecified injury of radial artery at wrist and hand level of unspecified arm, sequela|Unspecified injury of radial artery at wrist and hand level of unspecified arm, sequela +C2854612|T037|AB|S65.11|ICD10CM|Laceration of radial artery at wrist and hand level|Laceration of radial artery at wrist and hand level +C2854612|T037|HT|S65.11|ICD10CM|Laceration of radial artery at wrist and hand level|Laceration of radial artery at wrist and hand level +C2854613|T037|HT|S65.111|ICD10CM|Laceration of radial artery at wrist and hand level of right arm|Laceration of radial artery at wrist and hand level of right arm +C2854613|T037|AB|S65.111|ICD10CM|Laceration of radial artery at wrs/hnd lv of right arm|Laceration of radial artery at wrs/hnd lv of right arm +C2854614|T037|PT|S65.111A|ICD10CM|Laceration of radial artery at wrist and hand level of right arm, initial encounter|Laceration of radial artery at wrist and hand level of right arm, initial encounter +C2854614|T037|AB|S65.111A|ICD10CM|Laceration of radial artery at wrs/hnd lv of right arm, init|Laceration of radial artery at wrs/hnd lv of right arm, init +C2854615|T037|PT|S65.111D|ICD10CM|Laceration of radial artery at wrist and hand level of right arm, subsequent encounter|Laceration of radial artery at wrist and hand level of right arm, subsequent encounter +C2854615|T037|AB|S65.111D|ICD10CM|Laceration of radial artery at wrs/hnd lv of right arm, subs|Laceration of radial artery at wrs/hnd lv of right arm, subs +C2854616|T037|AB|S65.111S|ICD10CM|Lacerat radial artery at wrs/hnd lv of right arm, sequela|Lacerat radial artery at wrs/hnd lv of right arm, sequela +C2854616|T037|PT|S65.111S|ICD10CM|Laceration of radial artery at wrist and hand level of right arm, sequela|Laceration of radial artery at wrist and hand level of right arm, sequela +C2854617|T037|HT|S65.112|ICD10CM|Laceration of radial artery at wrist and hand level of left arm|Laceration of radial artery at wrist and hand level of left arm +C2854617|T037|AB|S65.112|ICD10CM|Laceration of radial artery at wrs/hnd lv of left arm|Laceration of radial artery at wrs/hnd lv of left arm +C2854618|T037|PT|S65.112A|ICD10CM|Laceration of radial artery at wrist and hand level of left arm, initial encounter|Laceration of radial artery at wrist and hand level of left arm, initial encounter +C2854618|T037|AB|S65.112A|ICD10CM|Laceration of radial artery at wrs/hnd lv of left arm, init|Laceration of radial artery at wrs/hnd lv of left arm, init +C2854619|T037|PT|S65.112D|ICD10CM|Laceration of radial artery at wrist and hand level of left arm, subsequent encounter|Laceration of radial artery at wrist and hand level of left arm, subsequent encounter +C2854619|T037|AB|S65.112D|ICD10CM|Laceration of radial artery at wrs/hnd lv of left arm, subs|Laceration of radial artery at wrs/hnd lv of left arm, subs +C2854620|T037|AB|S65.112S|ICD10CM|Lacerat radial artery at wrs/hnd lv of left arm, sequela|Lacerat radial artery at wrs/hnd lv of left arm, sequela +C2854620|T037|PT|S65.112S|ICD10CM|Laceration of radial artery at wrist and hand level of left arm, sequela|Laceration of radial artery at wrist and hand level of left arm, sequela +C2854621|T037|HT|S65.119|ICD10CM|Laceration of radial artery at wrist and hand level of unspecified arm|Laceration of radial artery at wrist and hand level of unspecified arm +C2854621|T037|AB|S65.119|ICD10CM|Laceration of radial artery at wrs/hnd lv of unsp arm|Laceration of radial artery at wrs/hnd lv of unsp arm +C2854622|T037|PT|S65.119A|ICD10CM|Laceration of radial artery at wrist and hand level of unspecified arm, initial encounter|Laceration of radial artery at wrist and hand level of unspecified arm, initial encounter +C2854622|T037|AB|S65.119A|ICD10CM|Laceration of radial artery at wrs/hnd lv of unsp arm, init|Laceration of radial artery at wrs/hnd lv of unsp arm, init +C2854623|T037|PT|S65.119D|ICD10CM|Laceration of radial artery at wrist and hand level of unspecified arm, subsequent encounter|Laceration of radial artery at wrist and hand level of unspecified arm, subsequent encounter +C2854623|T037|AB|S65.119D|ICD10CM|Laceration of radial artery at wrs/hnd lv of unsp arm, subs|Laceration of radial artery at wrs/hnd lv of unsp arm, subs +C2854624|T037|AB|S65.119S|ICD10CM|Lacerat radial artery at wrs/hnd lv of unsp arm, sequela|Lacerat radial artery at wrs/hnd lv of unsp arm, sequela +C2854624|T037|PT|S65.119S|ICD10CM|Laceration of radial artery at wrist and hand level of unspecified arm, sequela|Laceration of radial artery at wrist and hand level of unspecified arm, sequela +C2854625|T037|AB|S65.19|ICD10CM|Oth injury of radial artery at wrist and hand level|Oth injury of radial artery at wrist and hand level +C2854625|T037|HT|S65.19|ICD10CM|Other specified injury of radial artery at wrist and hand level|Other specified injury of radial artery at wrist and hand level +C2854626|T037|AB|S65.191|ICD10CM|Inj radial artery at wrist and hand level of right arm|Inj radial artery at wrist and hand level of right arm +C2854626|T037|HT|S65.191|ICD10CM|Other specified injury of radial artery at wrist and hand level of right arm|Other specified injury of radial artery at wrist and hand level of right arm +C2854627|T037|AB|S65.191A|ICD10CM|Inj radial artery at wrist and hand level of right arm, init|Inj radial artery at wrist and hand level of right arm, init +C2854627|T037|PT|S65.191A|ICD10CM|Other specified injury of radial artery at wrist and hand level of right arm, initial encounter|Other specified injury of radial artery at wrist and hand level of right arm, initial encounter +C2854628|T037|AB|S65.191D|ICD10CM|Inj radial artery at wrist and hand level of right arm, subs|Inj radial artery at wrist and hand level of right arm, subs +C2854628|T037|PT|S65.191D|ICD10CM|Other specified injury of radial artery at wrist and hand level of right arm, subsequent encounter|Other specified injury of radial artery at wrist and hand level of right arm, subsequent encounter +C2854629|T037|AB|S65.191S|ICD10CM|Inj radial artery at wrs/hnd lv of right arm, sequela|Inj radial artery at wrs/hnd lv of right arm, sequela +C2854629|T037|PT|S65.191S|ICD10CM|Other specified injury of radial artery at wrist and hand level of right arm, sequela|Other specified injury of radial artery at wrist and hand level of right arm, sequela +C2854630|T037|AB|S65.192|ICD10CM|Inj radial artery at wrist and hand level of left arm|Inj radial artery at wrist and hand level of left arm +C2854630|T037|HT|S65.192|ICD10CM|Other specified injury of radial artery at wrist and hand level of left arm|Other specified injury of radial artery at wrist and hand level of left arm +C2854631|T037|AB|S65.192A|ICD10CM|Inj radial artery at wrist and hand level of left arm, init|Inj radial artery at wrist and hand level of left arm, init +C2854631|T037|PT|S65.192A|ICD10CM|Other specified injury of radial artery at wrist and hand level of left arm, initial encounter|Other specified injury of radial artery at wrist and hand level of left arm, initial encounter +C2854632|T037|AB|S65.192D|ICD10CM|Inj radial artery at wrist and hand level of left arm, subs|Inj radial artery at wrist and hand level of left arm, subs +C2854632|T037|PT|S65.192D|ICD10CM|Other specified injury of radial artery at wrist and hand level of left arm, subsequent encounter|Other specified injury of radial artery at wrist and hand level of left arm, subsequent encounter +C2854633|T037|AB|S65.192S|ICD10CM|Inj radial artery at wrs/hnd lv of left arm, sequela|Inj radial artery at wrs/hnd lv of left arm, sequela +C2854633|T037|PT|S65.192S|ICD10CM|Other specified injury of radial artery at wrist and hand level of left arm, sequela|Other specified injury of radial artery at wrist and hand level of left arm, sequela +C2854634|T037|AB|S65.199|ICD10CM|Inj radial artery at wrist and hand level of unsp arm|Inj radial artery at wrist and hand level of unsp arm +C2854634|T037|HT|S65.199|ICD10CM|Other specified injury of radial artery at wrist and hand level of unspecified arm|Other specified injury of radial artery at wrist and hand level of unspecified arm +C2854635|T037|AB|S65.199A|ICD10CM|Inj radial artery at wrist and hand level of unsp arm, init|Inj radial artery at wrist and hand level of unsp arm, init +C2854636|T037|AB|S65.199D|ICD10CM|Inj radial artery at wrist and hand level of unsp arm, subs|Inj radial artery at wrist and hand level of unsp arm, subs +C2854637|T037|AB|S65.199S|ICD10CM|Inj radial artery at wrs/hnd lv of unsp arm, sequela|Inj radial artery at wrs/hnd lv of unsp arm, sequela +C2854637|T037|PT|S65.199S|ICD10CM|Other specified injury of radial artery at wrist and hand level of unspecified arm, sequela|Other specified injury of radial artery at wrist and hand level of unspecified arm, sequela +C0452061|T037|HT|S65.2|ICD10CM|Injury of superficial palmar arch|Injury of superficial palmar arch +C0452061|T037|AB|S65.2|ICD10CM|Injury of superficial palmar arch|Injury of superficial palmar arch +C0452061|T037|PT|S65.2|ICD10|Injury of superficial palmar arch|Injury of superficial palmar arch +C2854638|T037|AB|S65.20|ICD10CM|Unspecified injury of superficial palmar arch|Unspecified injury of superficial palmar arch +C2854638|T037|HT|S65.20|ICD10CM|Unspecified injury of superficial palmar arch|Unspecified injury of superficial palmar arch +C2854639|T037|AB|S65.201|ICD10CM|Unspecified injury of superficial palmar arch of right hand|Unspecified injury of superficial palmar arch of right hand +C2854639|T037|HT|S65.201|ICD10CM|Unspecified injury of superficial palmar arch of right hand|Unspecified injury of superficial palmar arch of right hand +C2854640|T037|AB|S65.201A|ICD10CM|Unsp injury of superficial palmar arch of right hand, init|Unsp injury of superficial palmar arch of right hand, init +C2854640|T037|PT|S65.201A|ICD10CM|Unspecified injury of superficial palmar arch of right hand, initial encounter|Unspecified injury of superficial palmar arch of right hand, initial encounter +C2854641|T037|AB|S65.201D|ICD10CM|Unsp injury of superficial palmar arch of right hand, subs|Unsp injury of superficial palmar arch of right hand, subs +C2854641|T037|PT|S65.201D|ICD10CM|Unspecified injury of superficial palmar arch of right hand, subsequent encounter|Unspecified injury of superficial palmar arch of right hand, subsequent encounter +C2854642|T037|AB|S65.201S|ICD10CM|Unsp injury of superfic palmar arch of right hand, sequela|Unsp injury of superfic palmar arch of right hand, sequela +C2854642|T037|PT|S65.201S|ICD10CM|Unspecified injury of superficial palmar arch of right hand, sequela|Unspecified injury of superficial palmar arch of right hand, sequela +C2854643|T037|AB|S65.202|ICD10CM|Unspecified injury of superficial palmar arch of left hand|Unspecified injury of superficial palmar arch of left hand +C2854643|T037|HT|S65.202|ICD10CM|Unspecified injury of superficial palmar arch of left hand|Unspecified injury of superficial palmar arch of left hand +C2854644|T037|AB|S65.202A|ICD10CM|Unsp injury of superficial palmar arch of left hand, init|Unsp injury of superficial palmar arch of left hand, init +C2854644|T037|PT|S65.202A|ICD10CM|Unspecified injury of superficial palmar arch of left hand, initial encounter|Unspecified injury of superficial palmar arch of left hand, initial encounter +C2854645|T037|AB|S65.202D|ICD10CM|Unsp injury of superficial palmar arch of left hand, subs|Unsp injury of superficial palmar arch of left hand, subs +C2854645|T037|PT|S65.202D|ICD10CM|Unspecified injury of superficial palmar arch of left hand, subsequent encounter|Unspecified injury of superficial palmar arch of left hand, subsequent encounter +C2854646|T037|AB|S65.202S|ICD10CM|Unsp injury of superficial palmar arch of left hand, sequela|Unsp injury of superficial palmar arch of left hand, sequela +C2854646|T037|PT|S65.202S|ICD10CM|Unspecified injury of superficial palmar arch of left hand, sequela|Unspecified injury of superficial palmar arch of left hand, sequela +C2854647|T037|AB|S65.209|ICD10CM|Unsp injury of superficial palmar arch of unspecified hand|Unsp injury of superficial palmar arch of unspecified hand +C2854647|T037|HT|S65.209|ICD10CM|Unspecified injury of superficial palmar arch of unspecified hand|Unspecified injury of superficial palmar arch of unspecified hand +C2854648|T037|AB|S65.209A|ICD10CM|Unsp injury of superficial palmar arch of unsp hand, init|Unsp injury of superficial palmar arch of unsp hand, init +C2854648|T037|PT|S65.209A|ICD10CM|Unspecified injury of superficial palmar arch of unspecified hand, initial encounter|Unspecified injury of superficial palmar arch of unspecified hand, initial encounter +C2854649|T037|AB|S65.209D|ICD10CM|Unsp injury of superficial palmar arch of unsp hand, subs|Unsp injury of superficial palmar arch of unsp hand, subs +C2854649|T037|PT|S65.209D|ICD10CM|Unspecified injury of superficial palmar arch of unspecified hand, subsequent encounter|Unspecified injury of superficial palmar arch of unspecified hand, subsequent encounter +C2854650|T037|AB|S65.209S|ICD10CM|Unsp injury of superficial palmar arch of unsp hand, sequela|Unsp injury of superficial palmar arch of unsp hand, sequela +C2854650|T037|PT|S65.209S|ICD10CM|Unspecified injury of superficial palmar arch of unspecified hand, sequela|Unspecified injury of superficial palmar arch of unspecified hand, sequela +C2854651|T037|HT|S65.21|ICD10CM|Laceration of superficial palmar arch|Laceration of superficial palmar arch +C2854651|T037|AB|S65.21|ICD10CM|Laceration of superficial palmar arch|Laceration of superficial palmar arch +C2854652|T037|AB|S65.211|ICD10CM|Laceration of superficial palmar arch of right hand|Laceration of superficial palmar arch of right hand +C2854652|T037|HT|S65.211|ICD10CM|Laceration of superficial palmar arch of right hand|Laceration of superficial palmar arch of right hand +C2854653|T037|AB|S65.211A|ICD10CM|Laceration of superficial palmar arch of right hand, init|Laceration of superficial palmar arch of right hand, init +C2854653|T037|PT|S65.211A|ICD10CM|Laceration of superficial palmar arch of right hand, initial encounter|Laceration of superficial palmar arch of right hand, initial encounter +C2854654|T037|AB|S65.211D|ICD10CM|Laceration of superficial palmar arch of right hand, subs|Laceration of superficial palmar arch of right hand, subs +C2854654|T037|PT|S65.211D|ICD10CM|Laceration of superficial palmar arch of right hand, subsequent encounter|Laceration of superficial palmar arch of right hand, subsequent encounter +C2854655|T037|AB|S65.211S|ICD10CM|Laceration of superficial palmar arch of right hand, sequela|Laceration of superficial palmar arch of right hand, sequela +C2854655|T037|PT|S65.211S|ICD10CM|Laceration of superficial palmar arch of right hand, sequela|Laceration of superficial palmar arch of right hand, sequela +C2854656|T037|AB|S65.212|ICD10CM|Laceration of superficial palmar arch of left hand|Laceration of superficial palmar arch of left hand +C2854656|T037|HT|S65.212|ICD10CM|Laceration of superficial palmar arch of left hand|Laceration of superficial palmar arch of left hand +C2854657|T037|AB|S65.212A|ICD10CM|Laceration of superficial palmar arch of left hand, init|Laceration of superficial palmar arch of left hand, init +C2854657|T037|PT|S65.212A|ICD10CM|Laceration of superficial palmar arch of left hand, initial encounter|Laceration of superficial palmar arch of left hand, initial encounter +C2854658|T037|AB|S65.212D|ICD10CM|Laceration of superficial palmar arch of left hand, subs|Laceration of superficial palmar arch of left hand, subs +C2854658|T037|PT|S65.212D|ICD10CM|Laceration of superficial palmar arch of left hand, subsequent encounter|Laceration of superficial palmar arch of left hand, subsequent encounter +C2854659|T037|AB|S65.212S|ICD10CM|Laceration of superficial palmar arch of left hand, sequela|Laceration of superficial palmar arch of left hand, sequela +C2854659|T037|PT|S65.212S|ICD10CM|Laceration of superficial palmar arch of left hand, sequela|Laceration of superficial palmar arch of left hand, sequela +C2854660|T037|AB|S65.219|ICD10CM|Laceration of superficial palmar arch of unspecified hand|Laceration of superficial palmar arch of unspecified hand +C2854660|T037|HT|S65.219|ICD10CM|Laceration of superficial palmar arch of unspecified hand|Laceration of superficial palmar arch of unspecified hand +C2854661|T037|AB|S65.219A|ICD10CM|Laceration of superficial palmar arch of unsp hand, init|Laceration of superficial palmar arch of unsp hand, init +C2854661|T037|PT|S65.219A|ICD10CM|Laceration of superficial palmar arch of unspecified hand, initial encounter|Laceration of superficial palmar arch of unspecified hand, initial encounter +C2854662|T037|AB|S65.219D|ICD10CM|Laceration of superficial palmar arch of unsp hand, subs|Laceration of superficial palmar arch of unsp hand, subs +C2854662|T037|PT|S65.219D|ICD10CM|Laceration of superficial palmar arch of unspecified hand, subsequent encounter|Laceration of superficial palmar arch of unspecified hand, subsequent encounter +C2854663|T037|AB|S65.219S|ICD10CM|Laceration of superficial palmar arch of unsp hand, sequela|Laceration of superficial palmar arch of unsp hand, sequela +C2854663|T037|PT|S65.219S|ICD10CM|Laceration of superficial palmar arch of unspecified hand, sequela|Laceration of superficial palmar arch of unspecified hand, sequela +C2854664|T037|AB|S65.29|ICD10CM|Other specified injury of superficial palmar arch|Other specified injury of superficial palmar arch +C2854664|T037|HT|S65.29|ICD10CM|Other specified injury of superficial palmar arch|Other specified injury of superficial palmar arch +C2854665|T037|AB|S65.291|ICD10CM|Oth injury of superficial palmar arch of right hand|Oth injury of superficial palmar arch of right hand +C2854665|T037|HT|S65.291|ICD10CM|Other specified injury of superficial palmar arch of right hand|Other specified injury of superficial palmar arch of right hand +C2854666|T037|AB|S65.291A|ICD10CM|Inj superficial palmar arch of right hand, init encntr|Inj superficial palmar arch of right hand, init encntr +C2854666|T037|PT|S65.291A|ICD10CM|Other specified injury of superficial palmar arch of right hand, initial encounter|Other specified injury of superficial palmar arch of right hand, initial encounter +C2854667|T037|AB|S65.291D|ICD10CM|Inj superficial palmar arch of right hand, subs encntr|Inj superficial palmar arch of right hand, subs encntr +C2854667|T037|PT|S65.291D|ICD10CM|Other specified injury of superficial palmar arch of right hand, subsequent encounter|Other specified injury of superficial palmar arch of right hand, subsequent encounter +C2854668|T037|AB|S65.291S|ICD10CM|Oth injury of superficial palmar arch of right hand, sequela|Oth injury of superficial palmar arch of right hand, sequela +C2854668|T037|PT|S65.291S|ICD10CM|Other specified injury of superficial palmar arch of right hand, sequela|Other specified injury of superficial palmar arch of right hand, sequela +C2854669|T037|AB|S65.292|ICD10CM|Oth injury of superficial palmar arch of left hand|Oth injury of superficial palmar arch of left hand +C2854669|T037|HT|S65.292|ICD10CM|Other specified injury of superficial palmar arch of left hand|Other specified injury of superficial palmar arch of left hand +C2854670|T037|AB|S65.292A|ICD10CM|Inj superficial palmar arch of left hand, init encntr|Inj superficial palmar arch of left hand, init encntr +C2854670|T037|PT|S65.292A|ICD10CM|Other specified injury of superficial palmar arch of left hand, initial encounter|Other specified injury of superficial palmar arch of left hand, initial encounter +C2854671|T037|AB|S65.292D|ICD10CM|Inj superficial palmar arch of left hand, subs encntr|Inj superficial palmar arch of left hand, subs encntr +C2854671|T037|PT|S65.292D|ICD10CM|Other specified injury of superficial palmar arch of left hand, subsequent encounter|Other specified injury of superficial palmar arch of left hand, subsequent encounter +C2854672|T037|AB|S65.292S|ICD10CM|Oth injury of superficial palmar arch of left hand, sequela|Oth injury of superficial palmar arch of left hand, sequela +C2854672|T037|PT|S65.292S|ICD10CM|Other specified injury of superficial palmar arch of left hand, sequela|Other specified injury of superficial palmar arch of left hand, sequela +C2854673|T037|AB|S65.299|ICD10CM|Oth injury of superficial palmar arch of unspecified hand|Oth injury of superficial palmar arch of unspecified hand +C2854673|T037|HT|S65.299|ICD10CM|Other specified injury of superficial palmar arch of unspecified hand|Other specified injury of superficial palmar arch of unspecified hand +C2854674|T037|AB|S65.299A|ICD10CM|Inj superficial palmar arch of unsp hand, init encntr|Inj superficial palmar arch of unsp hand, init encntr +C2854674|T037|PT|S65.299A|ICD10CM|Other specified injury of superficial palmar arch of unspecified hand, initial encounter|Other specified injury of superficial palmar arch of unspecified hand, initial encounter +C2854675|T037|AB|S65.299D|ICD10CM|Inj superficial palmar arch of unsp hand, subs encntr|Inj superficial palmar arch of unsp hand, subs encntr +C2854675|T037|PT|S65.299D|ICD10CM|Other specified injury of superficial palmar arch of unspecified hand, subsequent encounter|Other specified injury of superficial palmar arch of unspecified hand, subsequent encounter +C2854676|T037|AB|S65.299S|ICD10CM|Oth injury of superficial palmar arch of unsp hand, sequela|Oth injury of superficial palmar arch of unsp hand, sequela +C2854676|T037|PT|S65.299S|ICD10CM|Other specified injury of superficial palmar arch of unspecified hand, sequela|Other specified injury of superficial palmar arch of unspecified hand, sequela +C0452062|T037|PT|S65.3|ICD10|Injury of deep palmar arch|Injury of deep palmar arch +C0452062|T037|HT|S65.3|ICD10CM|Injury of deep palmar arch|Injury of deep palmar arch +C0452062|T037|AB|S65.3|ICD10CM|Injury of deep palmar arch|Injury of deep palmar arch +C2854677|T037|AB|S65.30|ICD10CM|Unspecified injury of deep palmar arch|Unspecified injury of deep palmar arch +C2854677|T037|HT|S65.30|ICD10CM|Unspecified injury of deep palmar arch|Unspecified injury of deep palmar arch +C2854678|T037|AB|S65.301|ICD10CM|Unspecified injury of deep palmar arch of right hand|Unspecified injury of deep palmar arch of right hand +C2854678|T037|HT|S65.301|ICD10CM|Unspecified injury of deep palmar arch of right hand|Unspecified injury of deep palmar arch of right hand +C2854679|T037|AB|S65.301A|ICD10CM|Unsp injury of deep palmar arch of right hand, init encntr|Unsp injury of deep palmar arch of right hand, init encntr +C2854679|T037|PT|S65.301A|ICD10CM|Unspecified injury of deep palmar arch of right hand, initial encounter|Unspecified injury of deep palmar arch of right hand, initial encounter +C2854680|T037|AB|S65.301D|ICD10CM|Unsp injury of deep palmar arch of right hand, subs encntr|Unsp injury of deep palmar arch of right hand, subs encntr +C2854680|T037|PT|S65.301D|ICD10CM|Unspecified injury of deep palmar arch of right hand, subsequent encounter|Unspecified injury of deep palmar arch of right hand, subsequent encounter +C2854681|T037|AB|S65.301S|ICD10CM|Unsp injury of deep palmar arch of right hand, sequela|Unsp injury of deep palmar arch of right hand, sequela +C2854681|T037|PT|S65.301S|ICD10CM|Unspecified injury of deep palmar arch of right hand, sequela|Unspecified injury of deep palmar arch of right hand, sequela +C2854682|T037|AB|S65.302|ICD10CM|Unspecified injury of deep palmar arch of left hand|Unspecified injury of deep palmar arch of left hand +C2854682|T037|HT|S65.302|ICD10CM|Unspecified injury of deep palmar arch of left hand|Unspecified injury of deep palmar arch of left hand +C2854683|T037|AB|S65.302A|ICD10CM|Unsp injury of deep palmar arch of left hand, init encntr|Unsp injury of deep palmar arch of left hand, init encntr +C2854683|T037|PT|S65.302A|ICD10CM|Unspecified injury of deep palmar arch of left hand, initial encounter|Unspecified injury of deep palmar arch of left hand, initial encounter +C2854684|T037|AB|S65.302D|ICD10CM|Unsp injury of deep palmar arch of left hand, subs encntr|Unsp injury of deep palmar arch of left hand, subs encntr +C2854684|T037|PT|S65.302D|ICD10CM|Unspecified injury of deep palmar arch of left hand, subsequent encounter|Unspecified injury of deep palmar arch of left hand, subsequent encounter +C2854685|T037|AB|S65.302S|ICD10CM|Unspecified injury of deep palmar arch of left hand, sequela|Unspecified injury of deep palmar arch of left hand, sequela +C2854685|T037|PT|S65.302S|ICD10CM|Unspecified injury of deep palmar arch of left hand, sequela|Unspecified injury of deep palmar arch of left hand, sequela +C2854686|T037|AB|S65.309|ICD10CM|Unspecified injury of deep palmar arch of unspecified hand|Unspecified injury of deep palmar arch of unspecified hand +C2854686|T037|HT|S65.309|ICD10CM|Unspecified injury of deep palmar arch of unspecified hand|Unspecified injury of deep palmar arch of unspecified hand +C2854687|T037|AB|S65.309A|ICD10CM|Unsp injury of deep palmar arch of unsp hand, init encntr|Unsp injury of deep palmar arch of unsp hand, init encntr +C2854687|T037|PT|S65.309A|ICD10CM|Unspecified injury of deep palmar arch of unspecified hand, initial encounter|Unspecified injury of deep palmar arch of unspecified hand, initial encounter +C2854688|T037|AB|S65.309D|ICD10CM|Unsp injury of deep palmar arch of unsp hand, subs encntr|Unsp injury of deep palmar arch of unsp hand, subs encntr +C2854688|T037|PT|S65.309D|ICD10CM|Unspecified injury of deep palmar arch of unspecified hand, subsequent encounter|Unspecified injury of deep palmar arch of unspecified hand, subsequent encounter +C2854689|T037|AB|S65.309S|ICD10CM|Unsp injury of deep palmar arch of unspecified hand, sequela|Unsp injury of deep palmar arch of unspecified hand, sequela +C2854689|T037|PT|S65.309S|ICD10CM|Unspecified injury of deep palmar arch of unspecified hand, sequela|Unspecified injury of deep palmar arch of unspecified hand, sequela +C2854690|T037|HT|S65.31|ICD10CM|Laceration of deep palmar arch|Laceration of deep palmar arch +C2854690|T037|AB|S65.31|ICD10CM|Laceration of deep palmar arch|Laceration of deep palmar arch +C2854691|T037|AB|S65.311|ICD10CM|Laceration of deep palmar arch of right hand|Laceration of deep palmar arch of right hand +C2854691|T037|HT|S65.311|ICD10CM|Laceration of deep palmar arch of right hand|Laceration of deep palmar arch of right hand +C2854692|T037|AB|S65.311A|ICD10CM|Laceration of deep palmar arch of right hand, init encntr|Laceration of deep palmar arch of right hand, init encntr +C2854692|T037|PT|S65.311A|ICD10CM|Laceration of deep palmar arch of right hand, initial encounter|Laceration of deep palmar arch of right hand, initial encounter +C2854693|T037|AB|S65.311D|ICD10CM|Laceration of deep palmar arch of right hand, subs encntr|Laceration of deep palmar arch of right hand, subs encntr +C2854693|T037|PT|S65.311D|ICD10CM|Laceration of deep palmar arch of right hand, subsequent encounter|Laceration of deep palmar arch of right hand, subsequent encounter +C2854694|T037|AB|S65.311S|ICD10CM|Laceration of deep palmar arch of right hand, sequela|Laceration of deep palmar arch of right hand, sequela +C2854694|T037|PT|S65.311S|ICD10CM|Laceration of deep palmar arch of right hand, sequela|Laceration of deep palmar arch of right hand, sequela +C2854695|T037|AB|S65.312|ICD10CM|Laceration of deep palmar arch of left hand|Laceration of deep palmar arch of left hand +C2854695|T037|HT|S65.312|ICD10CM|Laceration of deep palmar arch of left hand|Laceration of deep palmar arch of left hand +C2854696|T037|AB|S65.312A|ICD10CM|Laceration of deep palmar arch of left hand, init encntr|Laceration of deep palmar arch of left hand, init encntr +C2854696|T037|PT|S65.312A|ICD10CM|Laceration of deep palmar arch of left hand, initial encounter|Laceration of deep palmar arch of left hand, initial encounter +C2854697|T037|AB|S65.312D|ICD10CM|Laceration of deep palmar arch of left hand, subs encntr|Laceration of deep palmar arch of left hand, subs encntr +C2854697|T037|PT|S65.312D|ICD10CM|Laceration of deep palmar arch of left hand, subsequent encounter|Laceration of deep palmar arch of left hand, subsequent encounter +C2854698|T037|AB|S65.312S|ICD10CM|Laceration of deep palmar arch of left hand, sequela|Laceration of deep palmar arch of left hand, sequela +C2854698|T037|PT|S65.312S|ICD10CM|Laceration of deep palmar arch of left hand, sequela|Laceration of deep palmar arch of left hand, sequela +C2854699|T037|AB|S65.319|ICD10CM|Laceration of deep palmar arch of unspecified hand|Laceration of deep palmar arch of unspecified hand +C2854699|T037|HT|S65.319|ICD10CM|Laceration of deep palmar arch of unspecified hand|Laceration of deep palmar arch of unspecified hand +C2854700|T037|AB|S65.319A|ICD10CM|Laceration of deep palmar arch of unsp hand, init encntr|Laceration of deep palmar arch of unsp hand, init encntr +C2854700|T037|PT|S65.319A|ICD10CM|Laceration of deep palmar arch of unspecified hand, initial encounter|Laceration of deep palmar arch of unspecified hand, initial encounter +C2854701|T037|AB|S65.319D|ICD10CM|Laceration of deep palmar arch of unsp hand, subs encntr|Laceration of deep palmar arch of unsp hand, subs encntr +C2854701|T037|PT|S65.319D|ICD10CM|Laceration of deep palmar arch of unspecified hand, subsequent encounter|Laceration of deep palmar arch of unspecified hand, subsequent encounter +C2854702|T037|AB|S65.319S|ICD10CM|Laceration of deep palmar arch of unspecified hand, sequela|Laceration of deep palmar arch of unspecified hand, sequela +C2854702|T037|PT|S65.319S|ICD10CM|Laceration of deep palmar arch of unspecified hand, sequela|Laceration of deep palmar arch of unspecified hand, sequela +C2854703|T037|AB|S65.39|ICD10CM|Other specified injury of deep palmar arch|Other specified injury of deep palmar arch +C2854703|T037|HT|S65.39|ICD10CM|Other specified injury of deep palmar arch|Other specified injury of deep palmar arch +C2854704|T037|AB|S65.391|ICD10CM|Other specified injury of deep palmar arch of right hand|Other specified injury of deep palmar arch of right hand +C2854704|T037|HT|S65.391|ICD10CM|Other specified injury of deep palmar arch of right hand|Other specified injury of deep palmar arch of right hand +C2854705|T037|AB|S65.391A|ICD10CM|Oth injury of deep palmar arch of right hand, init encntr|Oth injury of deep palmar arch of right hand, init encntr +C2854705|T037|PT|S65.391A|ICD10CM|Other specified injury of deep palmar arch of right hand, initial encounter|Other specified injury of deep palmar arch of right hand, initial encounter +C2854706|T037|AB|S65.391D|ICD10CM|Oth injury of deep palmar arch of right hand, subs encntr|Oth injury of deep palmar arch of right hand, subs encntr +C2854706|T037|PT|S65.391D|ICD10CM|Other specified injury of deep palmar arch of right hand, subsequent encounter|Other specified injury of deep palmar arch of right hand, subsequent encounter +C2854707|T037|AB|S65.391S|ICD10CM|Oth injury of deep palmar arch of right hand, sequela|Oth injury of deep palmar arch of right hand, sequela +C2854707|T037|PT|S65.391S|ICD10CM|Other specified injury of deep palmar arch of right hand, sequela|Other specified injury of deep palmar arch of right hand, sequela +C2854708|T037|AB|S65.392|ICD10CM|Other specified injury of deep palmar arch of left hand|Other specified injury of deep palmar arch of left hand +C2854708|T037|HT|S65.392|ICD10CM|Other specified injury of deep palmar arch of left hand|Other specified injury of deep palmar arch of left hand +C2854709|T037|AB|S65.392A|ICD10CM|Oth injury of deep palmar arch of left hand, init encntr|Oth injury of deep palmar arch of left hand, init encntr +C2854709|T037|PT|S65.392A|ICD10CM|Other specified injury of deep palmar arch of left hand, initial encounter|Other specified injury of deep palmar arch of left hand, initial encounter +C2854710|T037|AB|S65.392D|ICD10CM|Oth injury of deep palmar arch of left hand, subs encntr|Oth injury of deep palmar arch of left hand, subs encntr +C2854710|T037|PT|S65.392D|ICD10CM|Other specified injury of deep palmar arch of left hand, subsequent encounter|Other specified injury of deep palmar arch of left hand, subsequent encounter +C2854711|T037|AB|S65.392S|ICD10CM|Oth injury of deep palmar arch of left hand, sequela|Oth injury of deep palmar arch of left hand, sequela +C2854711|T037|PT|S65.392S|ICD10CM|Other specified injury of deep palmar arch of left hand, sequela|Other specified injury of deep palmar arch of left hand, sequela +C2854712|T037|AB|S65.399|ICD10CM|Oth injury of deep palmar arch of unspecified hand|Oth injury of deep palmar arch of unspecified hand +C2854712|T037|HT|S65.399|ICD10CM|Other specified injury of deep palmar arch of unspecified hand|Other specified injury of deep palmar arch of unspecified hand +C2854713|T037|AB|S65.399A|ICD10CM|Oth injury of deep palmar arch of unsp hand, init encntr|Oth injury of deep palmar arch of unsp hand, init encntr +C2854713|T037|PT|S65.399A|ICD10CM|Other specified injury of deep palmar arch of unspecified hand, initial encounter|Other specified injury of deep palmar arch of unspecified hand, initial encounter +C2854714|T037|AB|S65.399D|ICD10CM|Oth injury of deep palmar arch of unsp hand, subs encntr|Oth injury of deep palmar arch of unsp hand, subs encntr +C2854714|T037|PT|S65.399D|ICD10CM|Other specified injury of deep palmar arch of unspecified hand, subsequent encounter|Other specified injury of deep palmar arch of unspecified hand, subsequent encounter +C2854715|T037|AB|S65.399S|ICD10CM|Oth injury of deep palmar arch of unspecified hand, sequela|Oth injury of deep palmar arch of unspecified hand, sequela +C2854715|T037|PT|S65.399S|ICD10CM|Other specified injury of deep palmar arch of unspecified hand, sequela|Other specified injury of deep palmar arch of unspecified hand, sequela +C0452060|T037|HT|S65.4|ICD10CM|Injury of blood vessel of thumb|Injury of blood vessel of thumb +C0452060|T037|AB|S65.4|ICD10CM|Injury of blood vessel of thumb|Injury of blood vessel of thumb +C0452060|T037|PT|S65.4|ICD10|Injury of blood vessel(s) of thumb|Injury of blood vessel(s) of thumb +C2854716|T037|AB|S65.40|ICD10CM|Unspecified injury of blood vessel of thumb|Unspecified injury of blood vessel of thumb +C2854716|T037|HT|S65.40|ICD10CM|Unspecified injury of blood vessel of thumb|Unspecified injury of blood vessel of thumb +C2854717|T037|AB|S65.401|ICD10CM|Unspecified injury of blood vessel of right thumb|Unspecified injury of blood vessel of right thumb +C2854717|T037|HT|S65.401|ICD10CM|Unspecified injury of blood vessel of right thumb|Unspecified injury of blood vessel of right thumb +C2854718|T037|AB|S65.401A|ICD10CM|Unsp injury of blood vessel of right thumb, init encntr|Unsp injury of blood vessel of right thumb, init encntr +C2854718|T037|PT|S65.401A|ICD10CM|Unspecified injury of blood vessel of right thumb, initial encounter|Unspecified injury of blood vessel of right thumb, initial encounter +C2854719|T037|AB|S65.401D|ICD10CM|Unsp injury of blood vessel of right thumb, subs encntr|Unsp injury of blood vessel of right thumb, subs encntr +C2854719|T037|PT|S65.401D|ICD10CM|Unspecified injury of blood vessel of right thumb, subsequent encounter|Unspecified injury of blood vessel of right thumb, subsequent encounter +C2854720|T037|AB|S65.401S|ICD10CM|Unspecified injury of blood vessel of right thumb, sequela|Unspecified injury of blood vessel of right thumb, sequela +C2854720|T037|PT|S65.401S|ICD10CM|Unspecified injury of blood vessel of right thumb, sequela|Unspecified injury of blood vessel of right thumb, sequela +C2854721|T037|AB|S65.402|ICD10CM|Unspecified injury of blood vessel of left thumb|Unspecified injury of blood vessel of left thumb +C2854721|T037|HT|S65.402|ICD10CM|Unspecified injury of blood vessel of left thumb|Unspecified injury of blood vessel of left thumb +C2854722|T037|AB|S65.402A|ICD10CM|Unsp injury of blood vessel of left thumb, init encntr|Unsp injury of blood vessel of left thumb, init encntr +C2854722|T037|PT|S65.402A|ICD10CM|Unspecified injury of blood vessel of left thumb, initial encounter|Unspecified injury of blood vessel of left thumb, initial encounter +C2854723|T037|AB|S65.402D|ICD10CM|Unsp injury of blood vessel of left thumb, subs encntr|Unsp injury of blood vessel of left thumb, subs encntr +C2854723|T037|PT|S65.402D|ICD10CM|Unspecified injury of blood vessel of left thumb, subsequent encounter|Unspecified injury of blood vessel of left thumb, subsequent encounter +C2854724|T037|AB|S65.402S|ICD10CM|Unspecified injury of blood vessel of left thumb, sequela|Unspecified injury of blood vessel of left thumb, sequela +C2854724|T037|PT|S65.402S|ICD10CM|Unspecified injury of blood vessel of left thumb, sequela|Unspecified injury of blood vessel of left thumb, sequela +C2854725|T037|AB|S65.409|ICD10CM|Unspecified injury of blood vessel of unspecified thumb|Unspecified injury of blood vessel of unspecified thumb +C2854725|T037|HT|S65.409|ICD10CM|Unspecified injury of blood vessel of unspecified thumb|Unspecified injury of blood vessel of unspecified thumb +C2854726|T037|AB|S65.409A|ICD10CM|Unsp injury of blood vessel of unsp thumb, init encntr|Unsp injury of blood vessel of unsp thumb, init encntr +C2854726|T037|PT|S65.409A|ICD10CM|Unspecified injury of blood vessel of unspecified thumb, initial encounter|Unspecified injury of blood vessel of unspecified thumb, initial encounter +C2854727|T037|AB|S65.409D|ICD10CM|Unsp injury of blood vessel of unsp thumb, subs encntr|Unsp injury of blood vessel of unsp thumb, subs encntr +C2854727|T037|PT|S65.409D|ICD10CM|Unspecified injury of blood vessel of unspecified thumb, subsequent encounter|Unspecified injury of blood vessel of unspecified thumb, subsequent encounter +C2854728|T037|AB|S65.409S|ICD10CM|Unsp injury of blood vessel of unspecified thumb, sequela|Unsp injury of blood vessel of unspecified thumb, sequela +C2854728|T037|PT|S65.409S|ICD10CM|Unspecified injury of blood vessel of unspecified thumb, sequela|Unspecified injury of blood vessel of unspecified thumb, sequela +C2854729|T037|HT|S65.41|ICD10CM|Laceration of blood vessel of thumb|Laceration of blood vessel of thumb +C2854729|T037|AB|S65.41|ICD10CM|Laceration of blood vessel of thumb|Laceration of blood vessel of thumb +C2854730|T037|AB|S65.411|ICD10CM|Laceration of blood vessel of right thumb|Laceration of blood vessel of right thumb +C2854730|T037|HT|S65.411|ICD10CM|Laceration of blood vessel of right thumb|Laceration of blood vessel of right thumb +C2854731|T037|AB|S65.411A|ICD10CM|Laceration of blood vessel of right thumb, initial encounter|Laceration of blood vessel of right thumb, initial encounter +C2854731|T037|PT|S65.411A|ICD10CM|Laceration of blood vessel of right thumb, initial encounter|Laceration of blood vessel of right thumb, initial encounter +C2854732|T037|AB|S65.411D|ICD10CM|Laceration of blood vessel of right thumb, subs encntr|Laceration of blood vessel of right thumb, subs encntr +C2854732|T037|PT|S65.411D|ICD10CM|Laceration of blood vessel of right thumb, subsequent encounter|Laceration of blood vessel of right thumb, subsequent encounter +C2854733|T037|AB|S65.411S|ICD10CM|Laceration of blood vessel of right thumb, sequela|Laceration of blood vessel of right thumb, sequela +C2854733|T037|PT|S65.411S|ICD10CM|Laceration of blood vessel of right thumb, sequela|Laceration of blood vessel of right thumb, sequela +C2854734|T037|AB|S65.412|ICD10CM|Laceration of blood vessel of left thumb|Laceration of blood vessel of left thumb +C2854734|T037|HT|S65.412|ICD10CM|Laceration of blood vessel of left thumb|Laceration of blood vessel of left thumb +C2854735|T037|AB|S65.412A|ICD10CM|Laceration of blood vessel of left thumb, initial encounter|Laceration of blood vessel of left thumb, initial encounter +C2854735|T037|PT|S65.412A|ICD10CM|Laceration of blood vessel of left thumb, initial encounter|Laceration of blood vessel of left thumb, initial encounter +C2854736|T037|AB|S65.412D|ICD10CM|Laceration of blood vessel of left thumb, subs encntr|Laceration of blood vessel of left thumb, subs encntr +C2854736|T037|PT|S65.412D|ICD10CM|Laceration of blood vessel of left thumb, subsequent encounter|Laceration of blood vessel of left thumb, subsequent encounter +C2854737|T037|AB|S65.412S|ICD10CM|Laceration of blood vessel of left thumb, sequela|Laceration of blood vessel of left thumb, sequela +C2854737|T037|PT|S65.412S|ICD10CM|Laceration of blood vessel of left thumb, sequela|Laceration of blood vessel of left thumb, sequela +C2854738|T037|AB|S65.419|ICD10CM|Laceration of blood vessel of unspecified thumb|Laceration of blood vessel of unspecified thumb +C2854738|T037|HT|S65.419|ICD10CM|Laceration of blood vessel of unspecified thumb|Laceration of blood vessel of unspecified thumb +C2854739|T037|AB|S65.419A|ICD10CM|Laceration of blood vessel of unspecified thumb, init encntr|Laceration of blood vessel of unspecified thumb, init encntr +C2854739|T037|PT|S65.419A|ICD10CM|Laceration of blood vessel of unspecified thumb, initial encounter|Laceration of blood vessel of unspecified thumb, initial encounter +C2854740|T037|AB|S65.419D|ICD10CM|Laceration of blood vessel of unspecified thumb, subs encntr|Laceration of blood vessel of unspecified thumb, subs encntr +C2854740|T037|PT|S65.419D|ICD10CM|Laceration of blood vessel of unspecified thumb, subsequent encounter|Laceration of blood vessel of unspecified thumb, subsequent encounter +C2854741|T037|AB|S65.419S|ICD10CM|Laceration of blood vessel of unspecified thumb, sequela|Laceration of blood vessel of unspecified thumb, sequela +C2854741|T037|PT|S65.419S|ICD10CM|Laceration of blood vessel of unspecified thumb, sequela|Laceration of blood vessel of unspecified thumb, sequela +C2854742|T037|AB|S65.49|ICD10CM|Other specified injury of blood vessel of thumb|Other specified injury of blood vessel of thumb +C2854742|T037|HT|S65.49|ICD10CM|Other specified injury of blood vessel of thumb|Other specified injury of blood vessel of thumb +C2854743|T037|AB|S65.491|ICD10CM|Other specified injury of blood vessel of right thumb|Other specified injury of blood vessel of right thumb +C2854743|T037|HT|S65.491|ICD10CM|Other specified injury of blood vessel of right thumb|Other specified injury of blood vessel of right thumb +C2854744|T037|AB|S65.491A|ICD10CM|Oth injury of blood vessel of right thumb, init encntr|Oth injury of blood vessel of right thumb, init encntr +C2854744|T037|PT|S65.491A|ICD10CM|Other specified injury of blood vessel of right thumb, initial encounter|Other specified injury of blood vessel of right thumb, initial encounter +C2854745|T037|AB|S65.491D|ICD10CM|Oth injury of blood vessel of right thumb, subs encntr|Oth injury of blood vessel of right thumb, subs encntr +C2854745|T037|PT|S65.491D|ICD10CM|Other specified injury of blood vessel of right thumb, subsequent encounter|Other specified injury of blood vessel of right thumb, subsequent encounter +C2854746|T037|AB|S65.491S|ICD10CM|Oth injury of blood vessel of right thumb, sequela|Oth injury of blood vessel of right thumb, sequela +C2854746|T037|PT|S65.491S|ICD10CM|Other specified injury of blood vessel of right thumb, sequela|Other specified injury of blood vessel of right thumb, sequela +C2854747|T037|AB|S65.492|ICD10CM|Other specified injury of blood vessel of left thumb|Other specified injury of blood vessel of left thumb +C2854747|T037|HT|S65.492|ICD10CM|Other specified injury of blood vessel of left thumb|Other specified injury of blood vessel of left thumb +C2854748|T037|AB|S65.492A|ICD10CM|Oth injury of blood vessel of left thumb, init encntr|Oth injury of blood vessel of left thumb, init encntr +C2854748|T037|PT|S65.492A|ICD10CM|Other specified injury of blood vessel of left thumb, initial encounter|Other specified injury of blood vessel of left thumb, initial encounter +C2854749|T037|AB|S65.492D|ICD10CM|Oth injury of blood vessel of left thumb, subs encntr|Oth injury of blood vessel of left thumb, subs encntr +C2854749|T037|PT|S65.492D|ICD10CM|Other specified injury of blood vessel of left thumb, subsequent encounter|Other specified injury of blood vessel of left thumb, subsequent encounter +C2854750|T037|AB|S65.492S|ICD10CM|Oth injury of blood vessel of left thumb, sequela|Oth injury of blood vessel of left thumb, sequela +C2854750|T037|PT|S65.492S|ICD10CM|Other specified injury of blood vessel of left thumb, sequela|Other specified injury of blood vessel of left thumb, sequela +C2854751|T037|AB|S65.499|ICD10CM|Other specified injury of blood vessel of unspecified thumb|Other specified injury of blood vessel of unspecified thumb +C2854751|T037|HT|S65.499|ICD10CM|Other specified injury of blood vessel of unspecified thumb|Other specified injury of blood vessel of unspecified thumb +C2854752|T037|AB|S65.499A|ICD10CM|Oth injury of blood vessel of unspecified thumb, init encntr|Oth injury of blood vessel of unspecified thumb, init encntr +C2854752|T037|PT|S65.499A|ICD10CM|Other specified injury of blood vessel of unspecified thumb, initial encounter|Other specified injury of blood vessel of unspecified thumb, initial encounter +C2854753|T037|AB|S65.499D|ICD10CM|Oth injury of blood vessel of unspecified thumb, subs encntr|Oth injury of blood vessel of unspecified thumb, subs encntr +C2854753|T037|PT|S65.499D|ICD10CM|Other specified injury of blood vessel of unspecified thumb, subsequent encounter|Other specified injury of blood vessel of unspecified thumb, subsequent encounter +C2854754|T037|AB|S65.499S|ICD10CM|Oth injury of blood vessel of unspecified thumb, sequela|Oth injury of blood vessel of unspecified thumb, sequela +C2854754|T037|PT|S65.499S|ICD10CM|Other specified injury of blood vessel of unspecified thumb, sequela|Other specified injury of blood vessel of unspecified thumb, sequela +C2854755|T037|AB|S65.5|ICD10CM|Injury of blood vessel of other and unspecified finger|Injury of blood vessel of other and unspecified finger +C2854755|T037|HT|S65.5|ICD10CM|Injury of blood vessel of other and unspecified finger|Injury of blood vessel of other and unspecified finger +C0495913|T037|PT|S65.5|ICD10|Injury of blood vessel(s) of other finger|Injury of blood vessel(s) of other finger +C2854756|T037|AB|S65.50|ICD10CM|Unsp injury of blood vessel of other and unspecified finger|Unsp injury of blood vessel of other and unspecified finger +C2854756|T037|HT|S65.50|ICD10CM|Unspecified injury of blood vessel of other and unspecified finger|Unspecified injury of blood vessel of other and unspecified finger +C2854757|T037|AB|S65.500|ICD10CM|Unspecified injury of blood vessel of right index finger|Unspecified injury of blood vessel of right index finger +C2854757|T037|HT|S65.500|ICD10CM|Unspecified injury of blood vessel of right index finger|Unspecified injury of blood vessel of right index finger +C2854758|T037|AB|S65.500A|ICD10CM|Unsp injury of blood vessel of right index finger, init|Unsp injury of blood vessel of right index finger, init +C2854758|T037|PT|S65.500A|ICD10CM|Unspecified injury of blood vessel of right index finger, initial encounter|Unspecified injury of blood vessel of right index finger, initial encounter +C2854759|T037|AB|S65.500D|ICD10CM|Unsp injury of blood vessel of right index finger, subs|Unsp injury of blood vessel of right index finger, subs +C2854759|T037|PT|S65.500D|ICD10CM|Unspecified injury of blood vessel of right index finger, subsequent encounter|Unspecified injury of blood vessel of right index finger, subsequent encounter +C2854760|T037|AB|S65.500S|ICD10CM|Unsp injury of blood vessel of right index finger, sequela|Unsp injury of blood vessel of right index finger, sequela +C2854760|T037|PT|S65.500S|ICD10CM|Unspecified injury of blood vessel of right index finger, sequela|Unspecified injury of blood vessel of right index finger, sequela +C2854761|T037|AB|S65.501|ICD10CM|Unspecified injury of blood vessel of left index finger|Unspecified injury of blood vessel of left index finger +C2854761|T037|HT|S65.501|ICD10CM|Unspecified injury of blood vessel of left index finger|Unspecified injury of blood vessel of left index finger +C2854762|T037|AB|S65.501A|ICD10CM|Unsp injury of blood vessel of left index finger, init|Unsp injury of blood vessel of left index finger, init +C2854762|T037|PT|S65.501A|ICD10CM|Unspecified injury of blood vessel of left index finger, initial encounter|Unspecified injury of blood vessel of left index finger, initial encounter +C2854763|T037|AB|S65.501D|ICD10CM|Unsp injury of blood vessel of left index finger, subs|Unsp injury of blood vessel of left index finger, subs +C2854763|T037|PT|S65.501D|ICD10CM|Unspecified injury of blood vessel of left index finger, subsequent encounter|Unspecified injury of blood vessel of left index finger, subsequent encounter +C2854764|T037|AB|S65.501S|ICD10CM|Unsp injury of blood vessel of left index finger, sequela|Unsp injury of blood vessel of left index finger, sequela +C2854764|T037|PT|S65.501S|ICD10CM|Unspecified injury of blood vessel of left index finger, sequela|Unspecified injury of blood vessel of left index finger, sequela +C2854765|T037|AB|S65.502|ICD10CM|Unspecified injury of blood vessel of right middle finger|Unspecified injury of blood vessel of right middle finger +C2854765|T037|HT|S65.502|ICD10CM|Unspecified injury of blood vessel of right middle finger|Unspecified injury of blood vessel of right middle finger +C2854766|T037|AB|S65.502A|ICD10CM|Unsp injury of blood vessel of right middle finger, init|Unsp injury of blood vessel of right middle finger, init +C2854766|T037|PT|S65.502A|ICD10CM|Unspecified injury of blood vessel of right middle finger, initial encounter|Unspecified injury of blood vessel of right middle finger, initial encounter +C2854767|T037|AB|S65.502D|ICD10CM|Unsp injury of blood vessel of right middle finger, subs|Unsp injury of blood vessel of right middle finger, subs +C2854767|T037|PT|S65.502D|ICD10CM|Unspecified injury of blood vessel of right middle finger, subsequent encounter|Unspecified injury of blood vessel of right middle finger, subsequent encounter +C2854768|T037|AB|S65.502S|ICD10CM|Unsp injury of blood vessel of right middle finger, sequela|Unsp injury of blood vessel of right middle finger, sequela +C2854768|T037|PT|S65.502S|ICD10CM|Unspecified injury of blood vessel of right middle finger, sequela|Unspecified injury of blood vessel of right middle finger, sequela +C2854769|T037|AB|S65.503|ICD10CM|Unspecified injury of blood vessel of left middle finger|Unspecified injury of blood vessel of left middle finger +C2854769|T037|HT|S65.503|ICD10CM|Unspecified injury of blood vessel of left middle finger|Unspecified injury of blood vessel of left middle finger +C2854770|T037|AB|S65.503A|ICD10CM|Unsp injury of blood vessel of left middle finger, init|Unsp injury of blood vessel of left middle finger, init +C2854770|T037|PT|S65.503A|ICD10CM|Unspecified injury of blood vessel of left middle finger, initial encounter|Unspecified injury of blood vessel of left middle finger, initial encounter +C2854771|T037|AB|S65.503D|ICD10CM|Unsp injury of blood vessel of left middle finger, subs|Unsp injury of blood vessel of left middle finger, subs +C2854771|T037|PT|S65.503D|ICD10CM|Unspecified injury of blood vessel of left middle finger, subsequent encounter|Unspecified injury of blood vessel of left middle finger, subsequent encounter +C2854772|T037|AB|S65.503S|ICD10CM|Unsp injury of blood vessel of left middle finger, sequela|Unsp injury of blood vessel of left middle finger, sequela +C2854772|T037|PT|S65.503S|ICD10CM|Unspecified injury of blood vessel of left middle finger, sequela|Unspecified injury of blood vessel of left middle finger, sequela +C2854773|T037|AB|S65.504|ICD10CM|Unspecified injury of blood vessel of right ring finger|Unspecified injury of blood vessel of right ring finger +C2854773|T037|HT|S65.504|ICD10CM|Unspecified injury of blood vessel of right ring finger|Unspecified injury of blood vessel of right ring finger +C2854774|T037|AB|S65.504A|ICD10CM|Unsp injury of blood vessel of right ring finger, init|Unsp injury of blood vessel of right ring finger, init +C2854774|T037|PT|S65.504A|ICD10CM|Unspecified injury of blood vessel of right ring finger, initial encounter|Unspecified injury of blood vessel of right ring finger, initial encounter +C2854775|T037|AB|S65.504D|ICD10CM|Unsp injury of blood vessel of right ring finger, subs|Unsp injury of blood vessel of right ring finger, subs +C2854775|T037|PT|S65.504D|ICD10CM|Unspecified injury of blood vessel of right ring finger, subsequent encounter|Unspecified injury of blood vessel of right ring finger, subsequent encounter +C2854776|T037|AB|S65.504S|ICD10CM|Unsp injury of blood vessel of right ring finger, sequela|Unsp injury of blood vessel of right ring finger, sequela +C2854776|T037|PT|S65.504S|ICD10CM|Unspecified injury of blood vessel of right ring finger, sequela|Unspecified injury of blood vessel of right ring finger, sequela +C2854777|T037|AB|S65.505|ICD10CM|Unspecified injury of blood vessel of left ring finger|Unspecified injury of blood vessel of left ring finger +C2854777|T037|HT|S65.505|ICD10CM|Unspecified injury of blood vessel of left ring finger|Unspecified injury of blood vessel of left ring finger +C2854778|T037|AB|S65.505A|ICD10CM|Unsp injury of blood vessel of left ring finger, init encntr|Unsp injury of blood vessel of left ring finger, init encntr +C2854778|T037|PT|S65.505A|ICD10CM|Unspecified injury of blood vessel of left ring finger, initial encounter|Unspecified injury of blood vessel of left ring finger, initial encounter +C2854779|T037|AB|S65.505D|ICD10CM|Unsp injury of blood vessel of left ring finger, subs encntr|Unsp injury of blood vessel of left ring finger, subs encntr +C2854779|T037|PT|S65.505D|ICD10CM|Unspecified injury of blood vessel of left ring finger, subsequent encounter|Unspecified injury of blood vessel of left ring finger, subsequent encounter +C2854780|T037|AB|S65.505S|ICD10CM|Unsp injury of blood vessel of left ring finger, sequela|Unsp injury of blood vessel of left ring finger, sequela +C2854780|T037|PT|S65.505S|ICD10CM|Unspecified injury of blood vessel of left ring finger, sequela|Unspecified injury of blood vessel of left ring finger, sequela +C2854781|T037|AB|S65.506|ICD10CM|Unspecified injury of blood vessel of right little finger|Unspecified injury of blood vessel of right little finger +C2854781|T037|HT|S65.506|ICD10CM|Unspecified injury of blood vessel of right little finger|Unspecified injury of blood vessel of right little finger +C2854782|T037|AB|S65.506A|ICD10CM|Unsp injury of blood vessel of right little finger, init|Unsp injury of blood vessel of right little finger, init +C2854782|T037|PT|S65.506A|ICD10CM|Unspecified injury of blood vessel of right little finger, initial encounter|Unspecified injury of blood vessel of right little finger, initial encounter +C2854783|T037|AB|S65.506D|ICD10CM|Unsp injury of blood vessel of right little finger, subs|Unsp injury of blood vessel of right little finger, subs +C2854783|T037|PT|S65.506D|ICD10CM|Unspecified injury of blood vessel of right little finger, subsequent encounter|Unspecified injury of blood vessel of right little finger, subsequent encounter +C2854784|T037|AB|S65.506S|ICD10CM|Unsp injury of blood vessel of right little finger, sequela|Unsp injury of blood vessel of right little finger, sequela +C2854784|T037|PT|S65.506S|ICD10CM|Unspecified injury of blood vessel of right little finger, sequela|Unspecified injury of blood vessel of right little finger, sequela +C2854785|T037|AB|S65.507|ICD10CM|Unspecified injury of blood vessel of left little finger|Unspecified injury of blood vessel of left little finger +C2854785|T037|HT|S65.507|ICD10CM|Unspecified injury of blood vessel of left little finger|Unspecified injury of blood vessel of left little finger +C2854786|T037|AB|S65.507A|ICD10CM|Unsp injury of blood vessel of left little finger, init|Unsp injury of blood vessel of left little finger, init +C2854786|T037|PT|S65.507A|ICD10CM|Unspecified injury of blood vessel of left little finger, initial encounter|Unspecified injury of blood vessel of left little finger, initial encounter +C2854787|T037|AB|S65.507D|ICD10CM|Unsp injury of blood vessel of left little finger, subs|Unsp injury of blood vessel of left little finger, subs +C2854787|T037|PT|S65.507D|ICD10CM|Unspecified injury of blood vessel of left little finger, subsequent encounter|Unspecified injury of blood vessel of left little finger, subsequent encounter +C2854788|T037|AB|S65.507S|ICD10CM|Unsp injury of blood vessel of left little finger, sequela|Unsp injury of blood vessel of left little finger, sequela +C2854788|T037|PT|S65.507S|ICD10CM|Unspecified injury of blood vessel of left little finger, sequela|Unspecified injury of blood vessel of left little finger, sequela +C2854790|T037|AB|S65.508|ICD10CM|Unspecified injury of blood vessel of other finger|Unspecified injury of blood vessel of other finger +C2854790|T037|HT|S65.508|ICD10CM|Unspecified injury of blood vessel of other finger|Unspecified injury of blood vessel of other finger +C2854789|T037|ET|S65.508|ICD10CM|Unspecified injury of blood vessel of specified finger with unspecified laterality|Unspecified injury of blood vessel of specified finger with unspecified laterality +C2854791|T037|AB|S65.508A|ICD10CM|Unsp injury of blood vessel of other finger, init encntr|Unsp injury of blood vessel of other finger, init encntr +C2854791|T037|PT|S65.508A|ICD10CM|Unspecified injury of blood vessel of other finger, initial encounter|Unspecified injury of blood vessel of other finger, initial encounter +C2854792|T037|AB|S65.508D|ICD10CM|Unsp injury of blood vessel of other finger, subs encntr|Unsp injury of blood vessel of other finger, subs encntr +C2854792|T037|PT|S65.508D|ICD10CM|Unspecified injury of blood vessel of other finger, subsequent encounter|Unspecified injury of blood vessel of other finger, subsequent encounter +C2854793|T037|AB|S65.508S|ICD10CM|Unspecified injury of blood vessel of other finger, sequela|Unspecified injury of blood vessel of other finger, sequela +C2854793|T037|PT|S65.508S|ICD10CM|Unspecified injury of blood vessel of other finger, sequela|Unspecified injury of blood vessel of other finger, sequela +C2854794|T037|AB|S65.509|ICD10CM|Unspecified injury of blood vessel of unspecified finger|Unspecified injury of blood vessel of unspecified finger +C2854794|T037|HT|S65.509|ICD10CM|Unspecified injury of blood vessel of unspecified finger|Unspecified injury of blood vessel of unspecified finger +C2854795|T037|AB|S65.509A|ICD10CM|Unsp injury of blood vessel of unsp finger, init encntr|Unsp injury of blood vessel of unsp finger, init encntr +C2854795|T037|PT|S65.509A|ICD10CM|Unspecified injury of blood vessel of unspecified finger, initial encounter|Unspecified injury of blood vessel of unspecified finger, initial encounter +C2854796|T037|AB|S65.509D|ICD10CM|Unsp injury of blood vessel of unsp finger, subs encntr|Unsp injury of blood vessel of unsp finger, subs encntr +C2854796|T037|PT|S65.509D|ICD10CM|Unspecified injury of blood vessel of unspecified finger, subsequent encounter|Unspecified injury of blood vessel of unspecified finger, subsequent encounter +C2854797|T037|AB|S65.509S|ICD10CM|Unsp injury of blood vessel of unspecified finger, sequela|Unsp injury of blood vessel of unspecified finger, sequela +C2854797|T037|PT|S65.509S|ICD10CM|Unspecified injury of blood vessel of unspecified finger, sequela|Unspecified injury of blood vessel of unspecified finger, sequela +C2854798|T037|AB|S65.51|ICD10CM|Laceration of blood vessel of other and unspecified finger|Laceration of blood vessel of other and unspecified finger +C2854798|T037|HT|S65.51|ICD10CM|Laceration of blood vessel of other and unspecified finger|Laceration of blood vessel of other and unspecified finger +C2854799|T037|AB|S65.510|ICD10CM|Laceration of blood vessel of right index finger|Laceration of blood vessel of right index finger +C2854799|T037|HT|S65.510|ICD10CM|Laceration of blood vessel of right index finger|Laceration of blood vessel of right index finger +C2854800|T037|AB|S65.510A|ICD10CM|Laceration of blood vessel of right index finger, init|Laceration of blood vessel of right index finger, init +C2854800|T037|PT|S65.510A|ICD10CM|Laceration of blood vessel of right index finger, initial encounter|Laceration of blood vessel of right index finger, initial encounter +C2854801|T037|AB|S65.510D|ICD10CM|Laceration of blood vessel of right index finger, subs|Laceration of blood vessel of right index finger, subs +C2854801|T037|PT|S65.510D|ICD10CM|Laceration of blood vessel of right index finger, subsequent encounter|Laceration of blood vessel of right index finger, subsequent encounter +C2854802|T037|AB|S65.510S|ICD10CM|Laceration of blood vessel of right index finger, sequela|Laceration of blood vessel of right index finger, sequela +C2854802|T037|PT|S65.510S|ICD10CM|Laceration of blood vessel of right index finger, sequela|Laceration of blood vessel of right index finger, sequela +C2854803|T037|AB|S65.511|ICD10CM|Laceration of blood vessel of left index finger|Laceration of blood vessel of left index finger +C2854803|T037|HT|S65.511|ICD10CM|Laceration of blood vessel of left index finger|Laceration of blood vessel of left index finger +C2854804|T037|AB|S65.511A|ICD10CM|Laceration of blood vessel of left index finger, init encntr|Laceration of blood vessel of left index finger, init encntr +C2854804|T037|PT|S65.511A|ICD10CM|Laceration of blood vessel of left index finger, initial encounter|Laceration of blood vessel of left index finger, initial encounter +C2854805|T037|AB|S65.511D|ICD10CM|Laceration of blood vessel of left index finger, subs encntr|Laceration of blood vessel of left index finger, subs encntr +C2854805|T037|PT|S65.511D|ICD10CM|Laceration of blood vessel of left index finger, subsequent encounter|Laceration of blood vessel of left index finger, subsequent encounter +C2854806|T037|AB|S65.511S|ICD10CM|Laceration of blood vessel of left index finger, sequela|Laceration of blood vessel of left index finger, sequela +C2854806|T037|PT|S65.511S|ICD10CM|Laceration of blood vessel of left index finger, sequela|Laceration of blood vessel of left index finger, sequela +C2854807|T037|AB|S65.512|ICD10CM|Laceration of blood vessel of right middle finger|Laceration of blood vessel of right middle finger +C2854807|T037|HT|S65.512|ICD10CM|Laceration of blood vessel of right middle finger|Laceration of blood vessel of right middle finger +C2854808|T037|AB|S65.512A|ICD10CM|Laceration of blood vessel of right middle finger, init|Laceration of blood vessel of right middle finger, init +C2854808|T037|PT|S65.512A|ICD10CM|Laceration of blood vessel of right middle finger, initial encounter|Laceration of blood vessel of right middle finger, initial encounter +C2854809|T037|AB|S65.512D|ICD10CM|Laceration of blood vessel of right middle finger, subs|Laceration of blood vessel of right middle finger, subs +C2854809|T037|PT|S65.512D|ICD10CM|Laceration of blood vessel of right middle finger, subsequent encounter|Laceration of blood vessel of right middle finger, subsequent encounter +C2854810|T037|AB|S65.512S|ICD10CM|Laceration of blood vessel of right middle finger, sequela|Laceration of blood vessel of right middle finger, sequela +C2854810|T037|PT|S65.512S|ICD10CM|Laceration of blood vessel of right middle finger, sequela|Laceration of blood vessel of right middle finger, sequela +C2854811|T037|AB|S65.513|ICD10CM|Laceration of blood vessel of left middle finger|Laceration of blood vessel of left middle finger +C2854811|T037|HT|S65.513|ICD10CM|Laceration of blood vessel of left middle finger|Laceration of blood vessel of left middle finger +C2854812|T037|AB|S65.513A|ICD10CM|Laceration of blood vessel of left middle finger, init|Laceration of blood vessel of left middle finger, init +C2854812|T037|PT|S65.513A|ICD10CM|Laceration of blood vessel of left middle finger, initial encounter|Laceration of blood vessel of left middle finger, initial encounter +C2854813|T037|AB|S65.513D|ICD10CM|Laceration of blood vessel of left middle finger, subs|Laceration of blood vessel of left middle finger, subs +C2854813|T037|PT|S65.513D|ICD10CM|Laceration of blood vessel of left middle finger, subsequent encounter|Laceration of blood vessel of left middle finger, subsequent encounter +C2854814|T037|AB|S65.513S|ICD10CM|Laceration of blood vessel of left middle finger, sequela|Laceration of blood vessel of left middle finger, sequela +C2854814|T037|PT|S65.513S|ICD10CM|Laceration of blood vessel of left middle finger, sequela|Laceration of blood vessel of left middle finger, sequela +C2854815|T037|AB|S65.514|ICD10CM|Laceration of blood vessel of right ring finger|Laceration of blood vessel of right ring finger +C2854815|T037|HT|S65.514|ICD10CM|Laceration of blood vessel of right ring finger|Laceration of blood vessel of right ring finger +C2854816|T037|AB|S65.514A|ICD10CM|Laceration of blood vessel of right ring finger, init encntr|Laceration of blood vessel of right ring finger, init encntr +C2854816|T037|PT|S65.514A|ICD10CM|Laceration of blood vessel of right ring finger, initial encounter|Laceration of blood vessel of right ring finger, initial encounter +C2854817|T037|AB|S65.514D|ICD10CM|Laceration of blood vessel of right ring finger, subs encntr|Laceration of blood vessel of right ring finger, subs encntr +C2854817|T037|PT|S65.514D|ICD10CM|Laceration of blood vessel of right ring finger, subsequent encounter|Laceration of blood vessel of right ring finger, subsequent encounter +C2854818|T037|AB|S65.514S|ICD10CM|Laceration of blood vessel of right ring finger, sequela|Laceration of blood vessel of right ring finger, sequela +C2854818|T037|PT|S65.514S|ICD10CM|Laceration of blood vessel of right ring finger, sequela|Laceration of blood vessel of right ring finger, sequela +C2854819|T037|AB|S65.515|ICD10CM|Laceration of blood vessel of left ring finger|Laceration of blood vessel of left ring finger +C2854819|T037|HT|S65.515|ICD10CM|Laceration of blood vessel of left ring finger|Laceration of blood vessel of left ring finger +C2854820|T037|AB|S65.515A|ICD10CM|Laceration of blood vessel of left ring finger, init encntr|Laceration of blood vessel of left ring finger, init encntr +C2854820|T037|PT|S65.515A|ICD10CM|Laceration of blood vessel of left ring finger, initial encounter|Laceration of blood vessel of left ring finger, initial encounter +C2854821|T037|AB|S65.515D|ICD10CM|Laceration of blood vessel of left ring finger, subs encntr|Laceration of blood vessel of left ring finger, subs encntr +C2854821|T037|PT|S65.515D|ICD10CM|Laceration of blood vessel of left ring finger, subsequent encounter|Laceration of blood vessel of left ring finger, subsequent encounter +C2854822|T037|AB|S65.515S|ICD10CM|Laceration of blood vessel of left ring finger, sequela|Laceration of blood vessel of left ring finger, sequela +C2854822|T037|PT|S65.515S|ICD10CM|Laceration of blood vessel of left ring finger, sequela|Laceration of blood vessel of left ring finger, sequela +C2854823|T037|AB|S65.516|ICD10CM|Laceration of blood vessel of right little finger|Laceration of blood vessel of right little finger +C2854823|T037|HT|S65.516|ICD10CM|Laceration of blood vessel of right little finger|Laceration of blood vessel of right little finger +C2854824|T037|AB|S65.516A|ICD10CM|Laceration of blood vessel of right little finger, init|Laceration of blood vessel of right little finger, init +C2854824|T037|PT|S65.516A|ICD10CM|Laceration of blood vessel of right little finger, initial encounter|Laceration of blood vessel of right little finger, initial encounter +C2854825|T037|AB|S65.516D|ICD10CM|Laceration of blood vessel of right little finger, subs|Laceration of blood vessel of right little finger, subs +C2854825|T037|PT|S65.516D|ICD10CM|Laceration of blood vessel of right little finger, subsequent encounter|Laceration of blood vessel of right little finger, subsequent encounter +C2854826|T037|AB|S65.516S|ICD10CM|Laceration of blood vessel of right little finger, sequela|Laceration of blood vessel of right little finger, sequela +C2854826|T037|PT|S65.516S|ICD10CM|Laceration of blood vessel of right little finger, sequela|Laceration of blood vessel of right little finger, sequela +C2854827|T037|AB|S65.517|ICD10CM|Laceration of blood vessel of left little finger|Laceration of blood vessel of left little finger +C2854827|T037|HT|S65.517|ICD10CM|Laceration of blood vessel of left little finger|Laceration of blood vessel of left little finger +C2854828|T037|AB|S65.517A|ICD10CM|Laceration of blood vessel of left little finger, init|Laceration of blood vessel of left little finger, init +C2854828|T037|PT|S65.517A|ICD10CM|Laceration of blood vessel of left little finger, initial encounter|Laceration of blood vessel of left little finger, initial encounter +C2854829|T037|AB|S65.517D|ICD10CM|Laceration of blood vessel of left little finger, subs|Laceration of blood vessel of left little finger, subs +C2854829|T037|PT|S65.517D|ICD10CM|Laceration of blood vessel of left little finger, subsequent encounter|Laceration of blood vessel of left little finger, subsequent encounter +C2854830|T037|AB|S65.517S|ICD10CM|Laceration of blood vessel of left little finger, sequela|Laceration of blood vessel of left little finger, sequela +C2854830|T037|PT|S65.517S|ICD10CM|Laceration of blood vessel of left little finger, sequela|Laceration of blood vessel of left little finger, sequela +C2854832|T037|AB|S65.518|ICD10CM|Laceration of blood vessel of other finger|Laceration of blood vessel of other finger +C2854832|T037|HT|S65.518|ICD10CM|Laceration of blood vessel of other finger|Laceration of blood vessel of other finger +C2854831|T037|ET|S65.518|ICD10CM|Laceration of blood vessel of specified finger with unspecified laterality|Laceration of blood vessel of specified finger with unspecified laterality +C2854833|T037|AB|S65.518A|ICD10CM|Laceration of blood vessel of other finger, init encntr|Laceration of blood vessel of other finger, init encntr +C2854833|T037|PT|S65.518A|ICD10CM|Laceration of blood vessel of other finger, initial encounter|Laceration of blood vessel of other finger, initial encounter +C2854834|T037|AB|S65.518D|ICD10CM|Laceration of blood vessel of other finger, subs encntr|Laceration of blood vessel of other finger, subs encntr +C2854834|T037|PT|S65.518D|ICD10CM|Laceration of blood vessel of other finger, subsequent encounter|Laceration of blood vessel of other finger, subsequent encounter +C2854835|T037|AB|S65.518S|ICD10CM|Laceration of blood vessel of other finger, sequela|Laceration of blood vessel of other finger, sequela +C2854835|T037|PT|S65.518S|ICD10CM|Laceration of blood vessel of other finger, sequela|Laceration of blood vessel of other finger, sequela +C2854836|T037|AB|S65.519|ICD10CM|Laceration of blood vessel of unspecified finger|Laceration of blood vessel of unspecified finger +C2854836|T037|HT|S65.519|ICD10CM|Laceration of blood vessel of unspecified finger|Laceration of blood vessel of unspecified finger +C2854837|T037|AB|S65.519A|ICD10CM|Laceration of blood vessel of unsp finger, init encntr|Laceration of blood vessel of unsp finger, init encntr +C2854837|T037|PT|S65.519A|ICD10CM|Laceration of blood vessel of unspecified finger, initial encounter|Laceration of blood vessel of unspecified finger, initial encounter +C2854838|T037|AB|S65.519D|ICD10CM|Laceration of blood vessel of unsp finger, subs encntr|Laceration of blood vessel of unsp finger, subs encntr +C2854838|T037|PT|S65.519D|ICD10CM|Laceration of blood vessel of unspecified finger, subsequent encounter|Laceration of blood vessel of unspecified finger, subsequent encounter +C2854839|T037|AB|S65.519S|ICD10CM|Laceration of blood vessel of unspecified finger, sequela|Laceration of blood vessel of unspecified finger, sequela +C2854839|T037|PT|S65.519S|ICD10CM|Laceration of blood vessel of unspecified finger, sequela|Laceration of blood vessel of unspecified finger, sequela +C2854840|T037|AB|S65.59|ICD10CM|Oth injury of blood vessel of other and unspecified finger|Oth injury of blood vessel of other and unspecified finger +C2854840|T037|HT|S65.59|ICD10CM|Other specified injury of blood vessel of other and unspecified finger|Other specified injury of blood vessel of other and unspecified finger +C2854841|T037|AB|S65.590|ICD10CM|Other specified injury of blood vessel of right index finger|Other specified injury of blood vessel of right index finger +C2854841|T037|HT|S65.590|ICD10CM|Other specified injury of blood vessel of right index finger|Other specified injury of blood vessel of right index finger +C2854842|T037|AB|S65.590A|ICD10CM|Inj blood vessel of right index finger, init encntr|Inj blood vessel of right index finger, init encntr +C2854842|T037|PT|S65.590A|ICD10CM|Other specified injury of blood vessel of right index finger, initial encounter|Other specified injury of blood vessel of right index finger, initial encounter +C2854843|T037|AB|S65.590D|ICD10CM|Inj blood vessel of right index finger, subs encntr|Inj blood vessel of right index finger, subs encntr +C2854843|T037|PT|S65.590D|ICD10CM|Other specified injury of blood vessel of right index finger, subsequent encounter|Other specified injury of blood vessel of right index finger, subsequent encounter +C2854844|T037|AB|S65.590S|ICD10CM|Oth injury of blood vessel of right index finger, sequela|Oth injury of blood vessel of right index finger, sequela +C2854844|T037|PT|S65.590S|ICD10CM|Other specified injury of blood vessel of right index finger, sequela|Other specified injury of blood vessel of right index finger, sequela +C2854845|T037|AB|S65.591|ICD10CM|Other specified injury of blood vessel of left index finger|Other specified injury of blood vessel of left index finger +C2854845|T037|HT|S65.591|ICD10CM|Other specified injury of blood vessel of left index finger|Other specified injury of blood vessel of left index finger +C2854846|T037|AB|S65.591A|ICD10CM|Oth injury of blood vessel of left index finger, init encntr|Oth injury of blood vessel of left index finger, init encntr +C2854846|T037|PT|S65.591A|ICD10CM|Other specified injury of blood vessel of left index finger, initial encounter|Other specified injury of blood vessel of left index finger, initial encounter +C2854847|T037|AB|S65.591D|ICD10CM|Oth injury of blood vessel of left index finger, subs encntr|Oth injury of blood vessel of left index finger, subs encntr +C2854847|T037|PT|S65.591D|ICD10CM|Other specified injury of blood vessel of left index finger, subsequent encounter|Other specified injury of blood vessel of left index finger, subsequent encounter +C2854848|T037|AB|S65.591S|ICD10CM|Oth injury of blood vessel of left index finger, sequela|Oth injury of blood vessel of left index finger, sequela +C2854848|T037|PT|S65.591S|ICD10CM|Other specified injury of blood vessel of left index finger, sequela|Other specified injury of blood vessel of left index finger, sequela +C2854849|T037|AB|S65.592|ICD10CM|Oth injury of blood vessel of right middle finger|Oth injury of blood vessel of right middle finger +C2854849|T037|HT|S65.592|ICD10CM|Other specified injury of blood vessel of right middle finger|Other specified injury of blood vessel of right middle finger +C2854850|T037|AB|S65.592A|ICD10CM|Inj blood vessel of right middle finger, init encntr|Inj blood vessel of right middle finger, init encntr +C2854850|T037|PT|S65.592A|ICD10CM|Other specified injury of blood vessel of right middle finger, initial encounter|Other specified injury of blood vessel of right middle finger, initial encounter +C2854851|T037|AB|S65.592D|ICD10CM|Inj blood vessel of right middle finger, subs encntr|Inj blood vessel of right middle finger, subs encntr +C2854851|T037|PT|S65.592D|ICD10CM|Other specified injury of blood vessel of right middle finger, subsequent encounter|Other specified injury of blood vessel of right middle finger, subsequent encounter +C2854852|T037|AB|S65.592S|ICD10CM|Oth injury of blood vessel of right middle finger, sequela|Oth injury of blood vessel of right middle finger, sequela +C2854852|T037|PT|S65.592S|ICD10CM|Other specified injury of blood vessel of right middle finger, sequela|Other specified injury of blood vessel of right middle finger, sequela +C2854853|T037|AB|S65.593|ICD10CM|Other specified injury of blood vessel of left middle finger|Other specified injury of blood vessel of left middle finger +C2854853|T037|HT|S65.593|ICD10CM|Other specified injury of blood vessel of left middle finger|Other specified injury of blood vessel of left middle finger +C2854854|T037|AB|S65.593A|ICD10CM|Inj blood vessel of left middle finger, init encntr|Inj blood vessel of left middle finger, init encntr +C2854854|T037|PT|S65.593A|ICD10CM|Other specified injury of blood vessel of left middle finger, initial encounter|Other specified injury of blood vessel of left middle finger, initial encounter +C2854855|T037|AB|S65.593D|ICD10CM|Inj blood vessel of left middle finger, subs encntr|Inj blood vessel of left middle finger, subs encntr +C2854855|T037|PT|S65.593D|ICD10CM|Other specified injury of blood vessel of left middle finger, subsequent encounter|Other specified injury of blood vessel of left middle finger, subsequent encounter +C2854856|T037|AB|S65.593S|ICD10CM|Oth injury of blood vessel of left middle finger, sequela|Oth injury of blood vessel of left middle finger, sequela +C2854856|T037|PT|S65.593S|ICD10CM|Other specified injury of blood vessel of left middle finger, sequela|Other specified injury of blood vessel of left middle finger, sequela +C2854857|T037|AB|S65.594|ICD10CM|Other specified injury of blood vessel of right ring finger|Other specified injury of blood vessel of right ring finger +C2854857|T037|HT|S65.594|ICD10CM|Other specified injury of blood vessel of right ring finger|Other specified injury of blood vessel of right ring finger +C2854858|T037|AB|S65.594A|ICD10CM|Oth injury of blood vessel of right ring finger, init encntr|Oth injury of blood vessel of right ring finger, init encntr +C2854858|T037|PT|S65.594A|ICD10CM|Other specified injury of blood vessel of right ring finger, initial encounter|Other specified injury of blood vessel of right ring finger, initial encounter +C2854859|T037|AB|S65.594D|ICD10CM|Oth injury of blood vessel of right ring finger, subs encntr|Oth injury of blood vessel of right ring finger, subs encntr +C2854859|T037|PT|S65.594D|ICD10CM|Other specified injury of blood vessel of right ring finger, subsequent encounter|Other specified injury of blood vessel of right ring finger, subsequent encounter +C2854860|T037|AB|S65.594S|ICD10CM|Oth injury of blood vessel of right ring finger, sequela|Oth injury of blood vessel of right ring finger, sequela +C2854860|T037|PT|S65.594S|ICD10CM|Other specified injury of blood vessel of right ring finger, sequela|Other specified injury of blood vessel of right ring finger, sequela +C2854861|T037|AB|S65.595|ICD10CM|Other specified injury of blood vessel of left ring finger|Other specified injury of blood vessel of left ring finger +C2854861|T037|HT|S65.595|ICD10CM|Other specified injury of blood vessel of left ring finger|Other specified injury of blood vessel of left ring finger +C2854862|T037|AB|S65.595A|ICD10CM|Oth injury of blood vessel of left ring finger, init encntr|Oth injury of blood vessel of left ring finger, init encntr +C2854862|T037|PT|S65.595A|ICD10CM|Other specified injury of blood vessel of left ring finger, initial encounter|Other specified injury of blood vessel of left ring finger, initial encounter +C2854863|T037|AB|S65.595D|ICD10CM|Oth injury of blood vessel of left ring finger, subs encntr|Oth injury of blood vessel of left ring finger, subs encntr +C2854863|T037|PT|S65.595D|ICD10CM|Other specified injury of blood vessel of left ring finger, subsequent encounter|Other specified injury of blood vessel of left ring finger, subsequent encounter +C2854864|T037|AB|S65.595S|ICD10CM|Oth injury of blood vessel of left ring finger, sequela|Oth injury of blood vessel of left ring finger, sequela +C2854864|T037|PT|S65.595S|ICD10CM|Other specified injury of blood vessel of left ring finger, sequela|Other specified injury of blood vessel of left ring finger, sequela +C2854865|T037|AB|S65.596|ICD10CM|Oth injury of blood vessel of right little finger|Oth injury of blood vessel of right little finger +C2854865|T037|HT|S65.596|ICD10CM|Other specified injury of blood vessel of right little finger|Other specified injury of blood vessel of right little finger +C2854866|T037|AB|S65.596A|ICD10CM|Inj blood vessel of right little finger, init encntr|Inj blood vessel of right little finger, init encntr +C2854866|T037|PT|S65.596A|ICD10CM|Other specified injury of blood vessel of right little finger, initial encounter|Other specified injury of blood vessel of right little finger, initial encounter +C2854867|T037|AB|S65.596D|ICD10CM|Inj blood vessel of right little finger, subs encntr|Inj blood vessel of right little finger, subs encntr +C2854867|T037|PT|S65.596D|ICD10CM|Other specified injury of blood vessel of right little finger, subsequent encounter|Other specified injury of blood vessel of right little finger, subsequent encounter +C2854868|T037|AB|S65.596S|ICD10CM|Oth injury of blood vessel of right little finger, sequela|Oth injury of blood vessel of right little finger, sequela +C2854868|T037|PT|S65.596S|ICD10CM|Other specified injury of blood vessel of right little finger, sequela|Other specified injury of blood vessel of right little finger, sequela +C2854869|T037|AB|S65.597|ICD10CM|Other specified injury of blood vessel of left little finger|Other specified injury of blood vessel of left little finger +C2854869|T037|HT|S65.597|ICD10CM|Other specified injury of blood vessel of left little finger|Other specified injury of blood vessel of left little finger +C2854870|T037|AB|S65.597A|ICD10CM|Inj blood vessel of left little finger, init encntr|Inj blood vessel of left little finger, init encntr +C2854870|T037|PT|S65.597A|ICD10CM|Other specified injury of blood vessel of left little finger, initial encounter|Other specified injury of blood vessel of left little finger, initial encounter +C2854871|T037|AB|S65.597D|ICD10CM|Inj blood vessel of left little finger, subs encntr|Inj blood vessel of left little finger, subs encntr +C2854871|T037|PT|S65.597D|ICD10CM|Other specified injury of blood vessel of left little finger, subsequent encounter|Other specified injury of blood vessel of left little finger, subsequent encounter +C2854872|T037|AB|S65.597S|ICD10CM|Oth injury of blood vessel of left little finger, sequela|Oth injury of blood vessel of left little finger, sequela +C2854872|T037|PT|S65.597S|ICD10CM|Other specified injury of blood vessel of left little finger, sequela|Other specified injury of blood vessel of left little finger, sequela +C2854874|T037|AB|S65.598|ICD10CM|Other specified injury of blood vessel of other finger|Other specified injury of blood vessel of other finger +C2854874|T037|HT|S65.598|ICD10CM|Other specified injury of blood vessel of other finger|Other specified injury of blood vessel of other finger +C2854873|T037|ET|S65.598|ICD10CM|Other specified injury of blood vessel of specified finger with unspecified laterality|Other specified injury of blood vessel of specified finger with unspecified laterality +C2854875|T037|AB|S65.598A|ICD10CM|Oth injury of blood vessel of other finger, init encntr|Oth injury of blood vessel of other finger, init encntr +C2854875|T037|PT|S65.598A|ICD10CM|Other specified injury of blood vessel of other finger, initial encounter|Other specified injury of blood vessel of other finger, initial encounter +C2854876|T037|AB|S65.598D|ICD10CM|Oth injury of blood vessel of other finger, subs encntr|Oth injury of blood vessel of other finger, subs encntr +C2854876|T037|PT|S65.598D|ICD10CM|Other specified injury of blood vessel of other finger, subsequent encounter|Other specified injury of blood vessel of other finger, subsequent encounter +C2854877|T037|AB|S65.598S|ICD10CM|Oth injury of blood vessel of other finger, sequela|Oth injury of blood vessel of other finger, sequela +C2854877|T037|PT|S65.598S|ICD10CM|Other specified injury of blood vessel of other finger, sequela|Other specified injury of blood vessel of other finger, sequela +C2854878|T037|AB|S65.599|ICD10CM|Other specified injury of blood vessel of unspecified finger|Other specified injury of blood vessel of unspecified finger +C2854878|T037|HT|S65.599|ICD10CM|Other specified injury of blood vessel of unspecified finger|Other specified injury of blood vessel of unspecified finger +C2854879|T037|AB|S65.599A|ICD10CM|Oth injury of blood vessel of unsp finger, init encntr|Oth injury of blood vessel of unsp finger, init encntr +C2854879|T037|PT|S65.599A|ICD10CM|Other specified injury of blood vessel of unspecified finger, initial encounter|Other specified injury of blood vessel of unspecified finger, initial encounter +C2854880|T037|AB|S65.599D|ICD10CM|Oth injury of blood vessel of unsp finger, subs encntr|Oth injury of blood vessel of unsp finger, subs encntr +C2854880|T037|PT|S65.599D|ICD10CM|Other specified injury of blood vessel of unspecified finger, subsequent encounter|Other specified injury of blood vessel of unspecified finger, subsequent encounter +C2854881|T037|AB|S65.599S|ICD10CM|Oth injury of blood vessel of unspecified finger, sequela|Oth injury of blood vessel of unspecified finger, sequela +C2854881|T037|PT|S65.599S|ICD10CM|Other specified injury of blood vessel of unspecified finger, sequela|Other specified injury of blood vessel of unspecified finger, sequela +C0495914|T037|PT|S65.7|ICD10|Injury of multiple blood vessels at wrist and hand level|Injury of multiple blood vessels at wrist and hand level +C0478311|T037|PT|S65.8|ICD10|Injury of other blood vessels at wrist and hand level|Injury of other blood vessels at wrist and hand level +C0478311|T037|HT|S65.8|ICD10CM|Injury of other blood vessels at wrist and hand level|Injury of other blood vessels at wrist and hand level +C0478311|T037|AB|S65.8|ICD10CM|Injury of other blood vessels at wrist and hand level|Injury of other blood vessels at wrist and hand level +C2854882|T037|AB|S65.80|ICD10CM|Unsp injury of other blood vessels at wrist and hand level|Unsp injury of other blood vessels at wrist and hand level +C2854882|T037|HT|S65.80|ICD10CM|Unspecified injury of other blood vessels at wrist and hand level|Unspecified injury of other blood vessels at wrist and hand level +C2854883|T037|AB|S65.801|ICD10CM|Unsp injury of blood vessels at wrs/hnd lv of right arm|Unsp injury of blood vessels at wrs/hnd lv of right arm +C2854883|T037|HT|S65.801|ICD10CM|Unspecified injury of other blood vessels at wrist and hand level of right arm|Unspecified injury of other blood vessels at wrist and hand level of right arm +C2854884|T037|AB|S65.801A|ICD10CM|Unsp inj blood vessels at wrs/hnd lv of right arm, init|Unsp inj blood vessels at wrs/hnd lv of right arm, init +C2854884|T037|PT|S65.801A|ICD10CM|Unspecified injury of other blood vessels at wrist and hand level of right arm, initial encounter|Unspecified injury of other blood vessels at wrist and hand level of right arm, initial encounter +C2854885|T037|AB|S65.801D|ICD10CM|Unsp inj blood vessels at wrs/hnd lv of right arm, subs|Unsp inj blood vessels at wrs/hnd lv of right arm, subs +C2854885|T037|PT|S65.801D|ICD10CM|Unspecified injury of other blood vessels at wrist and hand level of right arm, subsequent encounter|Unspecified injury of other blood vessels at wrist and hand level of right arm, subsequent encounter +C2854886|T037|AB|S65.801S|ICD10CM|Unsp inj blood vessels at wrs/hnd lv of right arm, sequela|Unsp inj blood vessels at wrs/hnd lv of right arm, sequela +C2854886|T037|PT|S65.801S|ICD10CM|Unspecified injury of other blood vessels at wrist and hand level of right arm, sequela|Unspecified injury of other blood vessels at wrist and hand level of right arm, sequela +C2854887|T037|AB|S65.802|ICD10CM|Unsp injury of blood vessels at wrs/hnd lv of left arm|Unsp injury of blood vessels at wrs/hnd lv of left arm +C2854887|T037|HT|S65.802|ICD10CM|Unspecified injury of other blood vessels at wrist and hand level of left arm|Unspecified injury of other blood vessels at wrist and hand level of left arm +C2854888|T037|AB|S65.802A|ICD10CM|Unsp injury of blood vessels at wrs/hnd lv of left arm, init|Unsp injury of blood vessels at wrs/hnd lv of left arm, init +C2854888|T037|PT|S65.802A|ICD10CM|Unspecified injury of other blood vessels at wrist and hand level of left arm, initial encounter|Unspecified injury of other blood vessels at wrist and hand level of left arm, initial encounter +C2854889|T037|AB|S65.802D|ICD10CM|Unsp injury of blood vessels at wrs/hnd lv of left arm, subs|Unsp injury of blood vessels at wrs/hnd lv of left arm, subs +C2854889|T037|PT|S65.802D|ICD10CM|Unspecified injury of other blood vessels at wrist and hand level of left arm, subsequent encounter|Unspecified injury of other blood vessels at wrist and hand level of left arm, subsequent encounter +C2854890|T037|AB|S65.802S|ICD10CM|Unsp inj blood vessels at wrs/hnd lv of left arm, sequela|Unsp inj blood vessels at wrs/hnd lv of left arm, sequela +C2854890|T037|PT|S65.802S|ICD10CM|Unspecified injury of other blood vessels at wrist and hand level of left arm, sequela|Unspecified injury of other blood vessels at wrist and hand level of left arm, sequela +C2854891|T037|AB|S65.809|ICD10CM|Unsp injury of blood vessels at wrs/hnd lv of unsp arm|Unsp injury of blood vessels at wrs/hnd lv of unsp arm +C2854891|T037|HT|S65.809|ICD10CM|Unspecified injury of other blood vessels at wrist and hand level of unspecified arm|Unspecified injury of other blood vessels at wrist and hand level of unspecified arm +C2854892|T037|AB|S65.809A|ICD10CM|Unsp injury of blood vessels at wrs/hnd lv of unsp arm, init|Unsp injury of blood vessels at wrs/hnd lv of unsp arm, init +C2854893|T037|AB|S65.809D|ICD10CM|Unsp injury of blood vessels at wrs/hnd lv of unsp arm, subs|Unsp injury of blood vessels at wrs/hnd lv of unsp arm, subs +C2854894|T037|AB|S65.809S|ICD10CM|Unsp inj blood vessels at wrs/hnd lv of unsp arm, sequela|Unsp inj blood vessels at wrs/hnd lv of unsp arm, sequela +C2854894|T037|PT|S65.809S|ICD10CM|Unspecified injury of other blood vessels at wrist and hand level of unspecified arm, sequela|Unspecified injury of other blood vessels at wrist and hand level of unspecified arm, sequela +C2854895|T037|AB|S65.81|ICD10CM|Laceration of other blood vessels at wrist and hand level|Laceration of other blood vessels at wrist and hand level +C2854895|T037|HT|S65.81|ICD10CM|Laceration of other blood vessels at wrist and hand level|Laceration of other blood vessels at wrist and hand level +C2854896|T037|AB|S65.811|ICD10CM|Laceration of blood vessels at wrs/hnd lv of right arm|Laceration of blood vessels at wrs/hnd lv of right arm +C2854896|T037|HT|S65.811|ICD10CM|Laceration of other blood vessels at wrist and hand level of right arm|Laceration of other blood vessels at wrist and hand level of right arm +C2854897|T037|AB|S65.811A|ICD10CM|Laceration of blood vessels at wrs/hnd lv of right arm, init|Laceration of blood vessels at wrs/hnd lv of right arm, init +C2854897|T037|PT|S65.811A|ICD10CM|Laceration of other blood vessels at wrist and hand level of right arm, initial encounter|Laceration of other blood vessels at wrist and hand level of right arm, initial encounter +C2854898|T037|AB|S65.811D|ICD10CM|Laceration of blood vessels at wrs/hnd lv of right arm, subs|Laceration of blood vessels at wrs/hnd lv of right arm, subs +C2854898|T037|PT|S65.811D|ICD10CM|Laceration of other blood vessels at wrist and hand level of right arm, subsequent encounter|Laceration of other blood vessels at wrist and hand level of right arm, subsequent encounter +C2854899|T037|AB|S65.811S|ICD10CM|Lacerat blood vessels at wrs/hnd lv of right arm, sequela|Lacerat blood vessels at wrs/hnd lv of right arm, sequela +C2854899|T037|PT|S65.811S|ICD10CM|Laceration of other blood vessels at wrist and hand level of right arm, sequela|Laceration of other blood vessels at wrist and hand level of right arm, sequela +C2854900|T037|AB|S65.812|ICD10CM|Laceration of blood vessels at wrs/hnd lv of left arm|Laceration of blood vessels at wrs/hnd lv of left arm +C2854900|T037|HT|S65.812|ICD10CM|Laceration of other blood vessels at wrist and hand level of left arm|Laceration of other blood vessels at wrist and hand level of left arm +C2854901|T037|AB|S65.812A|ICD10CM|Laceration of blood vessels at wrs/hnd lv of left arm, init|Laceration of blood vessels at wrs/hnd lv of left arm, init +C2854901|T037|PT|S65.812A|ICD10CM|Laceration of other blood vessels at wrist and hand level of left arm, initial encounter|Laceration of other blood vessels at wrist and hand level of left arm, initial encounter +C2854902|T037|AB|S65.812D|ICD10CM|Laceration of blood vessels at wrs/hnd lv of left arm, subs|Laceration of blood vessels at wrs/hnd lv of left arm, subs +C2854902|T037|PT|S65.812D|ICD10CM|Laceration of other blood vessels at wrist and hand level of left arm, subsequent encounter|Laceration of other blood vessels at wrist and hand level of left arm, subsequent encounter +C2854903|T037|AB|S65.812S|ICD10CM|Lacerat blood vessels at wrs/hnd lv of left arm, sequela|Lacerat blood vessels at wrs/hnd lv of left arm, sequela +C2854903|T037|PT|S65.812S|ICD10CM|Laceration of other blood vessels at wrist and hand level of left arm, sequela|Laceration of other blood vessels at wrist and hand level of left arm, sequela +C2854904|T037|AB|S65.819|ICD10CM|Laceration of blood vessels at wrs/hnd lv of unsp arm|Laceration of blood vessels at wrs/hnd lv of unsp arm +C2854904|T037|HT|S65.819|ICD10CM|Laceration of other blood vessels at wrist and hand level of unspecified arm|Laceration of other blood vessels at wrist and hand level of unspecified arm +C2854905|T037|AB|S65.819A|ICD10CM|Laceration of blood vessels at wrs/hnd lv of unsp arm, init|Laceration of blood vessels at wrs/hnd lv of unsp arm, init +C2854905|T037|PT|S65.819A|ICD10CM|Laceration of other blood vessels at wrist and hand level of unspecified arm, initial encounter|Laceration of other blood vessels at wrist and hand level of unspecified arm, initial encounter +C2854906|T037|AB|S65.819D|ICD10CM|Laceration of blood vessels at wrs/hnd lv of unsp arm, subs|Laceration of blood vessels at wrs/hnd lv of unsp arm, subs +C2854906|T037|PT|S65.819D|ICD10CM|Laceration of other blood vessels at wrist and hand level of unspecified arm, subsequent encounter|Laceration of other blood vessels at wrist and hand level of unspecified arm, subsequent encounter +C2854907|T037|AB|S65.819S|ICD10CM|Lacerat blood vessels at wrs/hnd lv of unsp arm, sequela|Lacerat blood vessels at wrs/hnd lv of unsp arm, sequela +C2854907|T037|PT|S65.819S|ICD10CM|Laceration of other blood vessels at wrist and hand level of unspecified arm, sequela|Laceration of other blood vessels at wrist and hand level of unspecified arm, sequela +C2854908|T037|AB|S65.89|ICD10CM|Oth injury of other blood vessels at wrist and hand level|Oth injury of other blood vessels at wrist and hand level +C2854908|T037|HT|S65.89|ICD10CM|Other specified injury of other blood vessels at wrist and hand level|Other specified injury of other blood vessels at wrist and hand level +C2854909|T037|AB|S65.891|ICD10CM|Inj oth blood vessels at wrist and hand level of right arm|Inj oth blood vessels at wrist and hand level of right arm +C2854909|T037|HT|S65.891|ICD10CM|Other specified injury of other blood vessels at wrist and hand level of right arm|Other specified injury of other blood vessels at wrist and hand level of right arm +C2854910|T037|AB|S65.891A|ICD10CM|Inj oth blood vessels at wrs/hnd lv of right arm, init|Inj oth blood vessels at wrs/hnd lv of right arm, init +C2854911|T037|AB|S65.891D|ICD10CM|Inj oth blood vessels at wrs/hnd lv of right arm, subs|Inj oth blood vessels at wrs/hnd lv of right arm, subs +C2854912|T037|AB|S65.891S|ICD10CM|Inj oth blood vessels at wrs/hnd lv of right arm, sequela|Inj oth blood vessels at wrs/hnd lv of right arm, sequela +C2854912|T037|PT|S65.891S|ICD10CM|Other specified injury of other blood vessels at wrist and hand level of right arm, sequela|Other specified injury of other blood vessels at wrist and hand level of right arm, sequela +C2854913|T037|AB|S65.892|ICD10CM|Inj oth blood vessels at wrist and hand level of left arm|Inj oth blood vessels at wrist and hand level of left arm +C2854913|T037|HT|S65.892|ICD10CM|Other specified injury of other blood vessels at wrist and hand level of left arm|Other specified injury of other blood vessels at wrist and hand level of left arm +C2854914|T037|AB|S65.892A|ICD10CM|Inj oth blood vessels at wrs/hnd lv of left arm, init|Inj oth blood vessels at wrs/hnd lv of left arm, init +C2854914|T037|PT|S65.892A|ICD10CM|Other specified injury of other blood vessels at wrist and hand level of left arm, initial encounter|Other specified injury of other blood vessels at wrist and hand level of left arm, initial encounter +C2854915|T037|AB|S65.892D|ICD10CM|Inj oth blood vessels at wrs/hnd lv of left arm, subs|Inj oth blood vessels at wrs/hnd lv of left arm, subs +C2854916|T037|AB|S65.892S|ICD10CM|Inj oth blood vessels at wrs/hnd lv of left arm, sequela|Inj oth blood vessels at wrs/hnd lv of left arm, sequela +C2854916|T037|PT|S65.892S|ICD10CM|Other specified injury of other blood vessels at wrist and hand level of left arm, sequela|Other specified injury of other blood vessels at wrist and hand level of left arm, sequela +C2854917|T037|AB|S65.899|ICD10CM|Inj oth blood vessels at wrist and hand level of unsp arm|Inj oth blood vessels at wrist and hand level of unsp arm +C2854917|T037|HT|S65.899|ICD10CM|Other specified injury of other blood vessels at wrist and hand level of unspecified arm|Other specified injury of other blood vessels at wrist and hand level of unspecified arm +C2854918|T037|AB|S65.899A|ICD10CM|Inj oth blood vessels at wrs/hnd lv of unsp arm, init|Inj oth blood vessels at wrs/hnd lv of unsp arm, init +C2854919|T037|AB|S65.899D|ICD10CM|Inj oth blood vessels at wrs/hnd lv of unsp arm, subs|Inj oth blood vessels at wrs/hnd lv of unsp arm, subs +C2854920|T037|AB|S65.899S|ICD10CM|Inj oth blood vessels at wrs/hnd lv of unsp arm, sequela|Inj oth blood vessels at wrs/hnd lv of unsp arm, sequela +C2854920|T037|PT|S65.899S|ICD10CM|Other specified injury of other blood vessels at wrist and hand level of unspecified arm, sequela|Other specified injury of other blood vessels at wrist and hand level of unspecified arm, sequela +C0478312|T037|HT|S65.9|ICD10CM|Injury of unspecified blood vessel at wrist and hand level|Injury of unspecified blood vessel at wrist and hand level +C0478312|T037|AB|S65.9|ICD10CM|Injury of unspecified blood vessel at wrist and hand level|Injury of unspecified blood vessel at wrist and hand level +C0478312|T037|PT|S65.9|ICD10|Injury of unspecified blood vessel at wrist and hand level|Injury of unspecified blood vessel at wrist and hand level +C2854921|T037|AB|S65.90|ICD10CM|Unsp injury of unsp blood vessel at wrist and hand level|Unsp injury of unsp blood vessel at wrist and hand level +C2854921|T037|HT|S65.90|ICD10CM|Unspecified injury of unspecified blood vessel at wrist and hand level|Unspecified injury of unspecified blood vessel at wrist and hand level +C2854922|T037|AB|S65.901|ICD10CM|Unsp injury of unsp blood vessel at wrs/hnd lv of right arm|Unsp injury of unsp blood vessel at wrs/hnd lv of right arm +C2854922|T037|HT|S65.901|ICD10CM|Unspecified injury of unspecified blood vessel at wrist and hand level of right arm|Unspecified injury of unspecified blood vessel at wrist and hand level of right arm +C2854923|T037|AB|S65.901A|ICD10CM|Unsp inj unsp blood vess at wrs/hnd lv of right arm, init|Unsp inj unsp blood vess at wrs/hnd lv of right arm, init +C2854924|T037|AB|S65.901D|ICD10CM|Unsp inj unsp blood vess at wrs/hnd lv of right arm, subs|Unsp inj unsp blood vess at wrs/hnd lv of right arm, subs +C2854925|T037|AB|S65.901S|ICD10CM|Unsp inj unsp blood vess at wrs/hnd lv of right arm, sequela|Unsp inj unsp blood vess at wrs/hnd lv of right arm, sequela +C2854925|T037|PT|S65.901S|ICD10CM|Unspecified injury of unspecified blood vessel at wrist and hand level of right arm, sequela|Unspecified injury of unspecified blood vessel at wrist and hand level of right arm, sequela +C2854926|T037|AB|S65.902|ICD10CM|Unsp injury of unsp blood vessel at wrs/hnd lv of left arm|Unsp injury of unsp blood vessel at wrs/hnd lv of left arm +C2854926|T037|HT|S65.902|ICD10CM|Unspecified injury of unspecified blood vessel at wrist and hand level of left arm|Unspecified injury of unspecified blood vessel at wrist and hand level of left arm +C2854927|T037|AB|S65.902A|ICD10CM|Unsp inj unsp blood vess at wrs/hnd lv of left arm, init|Unsp inj unsp blood vess at wrs/hnd lv of left arm, init +C2854928|T037|AB|S65.902D|ICD10CM|Unsp inj unsp blood vess at wrs/hnd lv of left arm, subs|Unsp inj unsp blood vess at wrs/hnd lv of left arm, subs +C2854929|T037|AB|S65.902S|ICD10CM|Unsp inj unsp blood vess at wrs/hnd lv of left arm, sequela|Unsp inj unsp blood vess at wrs/hnd lv of left arm, sequela +C2854929|T037|PT|S65.902S|ICD10CM|Unspecified injury of unspecified blood vessel at wrist and hand level of left arm, sequela|Unspecified injury of unspecified blood vessel at wrist and hand level of left arm, sequela +C2854930|T037|AB|S65.909|ICD10CM|Unsp injury of unsp blood vessel at wrs/hnd lv of unsp arm|Unsp injury of unsp blood vessel at wrs/hnd lv of unsp arm +C2854930|T037|HT|S65.909|ICD10CM|Unspecified injury of unspecified blood vessel at wrist and hand level of unspecified arm|Unspecified injury of unspecified blood vessel at wrist and hand level of unspecified arm +C2854931|T037|AB|S65.909A|ICD10CM|Unsp inj unsp blood vess at wrs/hnd lv of unsp arm, init|Unsp inj unsp blood vess at wrs/hnd lv of unsp arm, init +C2854932|T037|AB|S65.909D|ICD10CM|Unsp inj unsp blood vess at wrs/hnd lv of unsp arm, subs|Unsp inj unsp blood vess at wrs/hnd lv of unsp arm, subs +C2854933|T037|AB|S65.909S|ICD10CM|Unsp inj unsp blood vess at wrs/hnd lv of unsp arm, sequela|Unsp inj unsp blood vess at wrs/hnd lv of unsp arm, sequela +C2854933|T037|PT|S65.909S|ICD10CM|Unspecified injury of unspecified blood vessel at wrist and hand level of unspecified arm, sequela|Unspecified injury of unspecified blood vessel at wrist and hand level of unspecified arm, sequela +C2854934|T037|AB|S65.91|ICD10CM|Laceration of unsp blood vessel at wrist and hand level|Laceration of unsp blood vessel at wrist and hand level +C2854934|T037|HT|S65.91|ICD10CM|Laceration of unspecified blood vessel at wrist and hand level|Laceration of unspecified blood vessel at wrist and hand level +C2854935|T037|AB|S65.911|ICD10CM|Laceration of unsp blood vessel at wrs/hnd lv of right arm|Laceration of unsp blood vessel at wrs/hnd lv of right arm +C2854935|T037|HT|S65.911|ICD10CM|Laceration of unspecified blood vessel at wrist and hand level of right arm|Laceration of unspecified blood vessel at wrist and hand level of right arm +C2854936|T037|AB|S65.911A|ICD10CM|Lacerat unsp blood vessel at wrs/hnd lv of right arm, init|Lacerat unsp blood vessel at wrs/hnd lv of right arm, init +C2854936|T037|PT|S65.911A|ICD10CM|Laceration of unspecified blood vessel at wrist and hand level of right arm, initial encounter|Laceration of unspecified blood vessel at wrist and hand level of right arm, initial encounter +C2854937|T037|AB|S65.911D|ICD10CM|Lacerat unsp blood vessel at wrs/hnd lv of right arm, subs|Lacerat unsp blood vessel at wrs/hnd lv of right arm, subs +C2854937|T037|PT|S65.911D|ICD10CM|Laceration of unspecified blood vessel at wrist and hand level of right arm, subsequent encounter|Laceration of unspecified blood vessel at wrist and hand level of right arm, subsequent encounter +C2854938|T037|AB|S65.911S|ICD10CM|Lacerat unsp blood vess at wrs/hnd lv of right arm, sequela|Lacerat unsp blood vess at wrs/hnd lv of right arm, sequela +C2854938|T037|PT|S65.911S|ICD10CM|Laceration of unspecified blood vessel at wrist and hand level of right arm, sequela|Laceration of unspecified blood vessel at wrist and hand level of right arm, sequela +C2854939|T037|AB|S65.912|ICD10CM|Laceration of unsp blood vessel at wrs/hnd lv of left arm|Laceration of unsp blood vessel at wrs/hnd lv of left arm +C2854939|T037|HT|S65.912|ICD10CM|Laceration of unspecified blood vessel at wrist and hand level of left arm|Laceration of unspecified blood vessel at wrist and hand level of left arm +C2854940|T037|AB|S65.912A|ICD10CM|Lacerat unsp blood vessel at wrs/hnd lv of left arm, init|Lacerat unsp blood vessel at wrs/hnd lv of left arm, init +C2854940|T037|PT|S65.912A|ICD10CM|Laceration of unspecified blood vessel at wrist and hand level of left arm, initial encounter|Laceration of unspecified blood vessel at wrist and hand level of left arm, initial encounter +C2854941|T037|AB|S65.912D|ICD10CM|Lacerat unsp blood vessel at wrs/hnd lv of left arm, subs|Lacerat unsp blood vessel at wrs/hnd lv of left arm, subs +C2854941|T037|PT|S65.912D|ICD10CM|Laceration of unspecified blood vessel at wrist and hand level of left arm, subsequent encounter|Laceration of unspecified blood vessel at wrist and hand level of left arm, subsequent encounter +C2854942|T037|AB|S65.912S|ICD10CM|Lacerat unsp blood vessel at wrs/hnd lv of left arm, sequela|Lacerat unsp blood vessel at wrs/hnd lv of left arm, sequela +C2854942|T037|PT|S65.912S|ICD10CM|Laceration of unspecified blood vessel at wrist and hand level of left arm, sequela|Laceration of unspecified blood vessel at wrist and hand level of left arm, sequela +C2854943|T037|AB|S65.919|ICD10CM|Laceration of unsp blood vessel at wrs/hnd lv of unsp arm|Laceration of unsp blood vessel at wrs/hnd lv of unsp arm +C2854943|T037|HT|S65.919|ICD10CM|Laceration of unspecified blood vessel at wrist and hand level of unspecified arm|Laceration of unspecified blood vessel at wrist and hand level of unspecified arm +C2854944|T037|AB|S65.919A|ICD10CM|Lacerat unsp blood vessel at wrs/hnd lv of unsp arm, init|Lacerat unsp blood vessel at wrs/hnd lv of unsp arm, init +C2854944|T037|PT|S65.919A|ICD10CM|Laceration of unspecified blood vessel at wrist and hand level of unspecified arm, initial encounter|Laceration of unspecified blood vessel at wrist and hand level of unspecified arm, initial encounter +C2854945|T037|AB|S65.919D|ICD10CM|Lacerat unsp blood vessel at wrs/hnd lv of unsp arm, subs|Lacerat unsp blood vessel at wrs/hnd lv of unsp arm, subs +C2854946|T037|AB|S65.919S|ICD10CM|Lacerat unsp blood vessel at wrs/hnd lv of unsp arm, sequela|Lacerat unsp blood vessel at wrs/hnd lv of unsp arm, sequela +C2854946|T037|PT|S65.919S|ICD10CM|Laceration of unspecified blood vessel at wrist and hand level of unspecified arm, sequela|Laceration of unspecified blood vessel at wrist and hand level of unspecified arm, sequela +C2854947|T037|AB|S65.99|ICD10CM|Oth injury of unsp blood vessel at wrist and hand level|Oth injury of unsp blood vessel at wrist and hand level +C2854947|T037|HT|S65.99|ICD10CM|Other specified injury of unspecified blood vessel at wrist and hand level|Other specified injury of unspecified blood vessel at wrist and hand level +C2854948|T037|AB|S65.991|ICD10CM|Inj unsp blood vessel at wrist and hand of right arm|Inj unsp blood vessel at wrist and hand of right arm +C2854948|T037|HT|S65.991|ICD10CM|Other specified injury of unspecified blood vessel at wrist and hand of right arm|Other specified injury of unspecified blood vessel at wrist and hand of right arm +C2854949|T037|AB|S65.991A|ICD10CM|Inj unsp blood vessel at wrist and hand of right arm, init|Inj unsp blood vessel at wrist and hand of right arm, init +C2854949|T037|PT|S65.991A|ICD10CM|Other specified injury of unspecified blood vessel at wrist and hand of right arm, initial encounter|Other specified injury of unspecified blood vessel at wrist and hand of right arm, initial encounter +C2854950|T037|AB|S65.991D|ICD10CM|Inj unsp blood vessel at wrist and hand of right arm, subs|Inj unsp blood vessel at wrist and hand of right arm, subs +C2854951|T037|AB|S65.991S|ICD10CM|Inj unsp blood vessel at wrs/hnd of right arm, sequela|Inj unsp blood vessel at wrs/hnd of right arm, sequela +C2854951|T037|PT|S65.991S|ICD10CM|Other specified injury of unspecified blood vessel at wrist and hand of right arm, sequela|Other specified injury of unspecified blood vessel at wrist and hand of right arm, sequela +C2854952|T037|AB|S65.992|ICD10CM|Inj unsp blood vessel at wrist and hand of left arm|Inj unsp blood vessel at wrist and hand of left arm +C2854952|T037|HT|S65.992|ICD10CM|Other specified injury of unspecified blood vessel at wrist and hand of left arm|Other specified injury of unspecified blood vessel at wrist and hand of left arm +C2854953|T037|AB|S65.992A|ICD10CM|Inj unsp blood vessel at wrist and hand of left arm, init|Inj unsp blood vessel at wrist and hand of left arm, init +C2854953|T037|PT|S65.992A|ICD10CM|Other specified injury of unspecified blood vessel at wrist and hand of left arm, initial encounter|Other specified injury of unspecified blood vessel at wrist and hand of left arm, initial encounter +C2854954|T037|AB|S65.992D|ICD10CM|Inj unsp blood vessel at wrist and hand of left arm, subs|Inj unsp blood vessel at wrist and hand of left arm, subs +C2854955|T037|AB|S65.992S|ICD10CM|Inj unsp blood vessel at wrist and hand of left arm, sequela|Inj unsp blood vessel at wrist and hand of left arm, sequela +C2854955|T037|PT|S65.992S|ICD10CM|Other specified injury of unspecified blood vessel at wrist and hand of left arm, sequela|Other specified injury of unspecified blood vessel at wrist and hand of left arm, sequela +C2854956|T037|AB|S65.999|ICD10CM|Inj unsp blood vessel at wrist and hand of unsp arm|Inj unsp blood vessel at wrist and hand of unsp arm +C2854956|T037|HT|S65.999|ICD10CM|Other specified injury of unspecified blood vessel at wrist and hand of unspecified arm|Other specified injury of unspecified blood vessel at wrist and hand of unspecified arm +C2854957|T037|AB|S65.999A|ICD10CM|Inj unsp blood vessel at wrist and hand of unsp arm, init|Inj unsp blood vessel at wrist and hand of unsp arm, init +C2854958|T037|AB|S65.999D|ICD10CM|Inj unsp blood vessel at wrist and hand of unsp arm, subs|Inj unsp blood vessel at wrist and hand of unsp arm, subs +C2854959|T037|AB|S65.999S|ICD10CM|Inj unsp blood vessel at wrist and hand of unsp arm, sequela|Inj unsp blood vessel at wrist and hand of unsp arm, sequela +C2854959|T037|PT|S65.999S|ICD10CM|Other specified injury of unspecified blood vessel at wrist and hand of unspecified arm, sequela|Other specified injury of unspecified blood vessel at wrist and hand of unspecified arm, sequela +C0478316|T037|HT|S66|ICD10|Injury of muscle and tendon at wrist and hand level|Injury of muscle and tendon at wrist and hand level +C2854960|T037|AB|S66|ICD10CM|Injury of muscle, fascia and tendon at wrist and hand level|Injury of muscle, fascia and tendon at wrist and hand level +C2854960|T037|HT|S66|ICD10CM|Injury of muscle, fascia and tendon at wrist and hand level|Injury of muscle, fascia and tendon at wrist and hand level +C2854961|T037|AB|S66.0|ICD10CM|Injury of long flexor musc/fasc/tend thumb at wrs/hnd lv|Injury of long flexor musc/fasc/tend thumb at wrs/hnd lv +C0495915|T037|PT|S66.0|ICD10|Injury of long flexor muscle and tendon of thumb at wrist and hand level|Injury of long flexor muscle and tendon of thumb at wrist and hand level +C2854961|T037|HT|S66.0|ICD10CM|Injury of long flexor muscle, fascia and tendon of thumb at wrist and hand level|Injury of long flexor muscle, fascia and tendon of thumb at wrist and hand level +C2854962|T037|AB|S66.00|ICD10CM|Unsp inj long flexor musc/fasc/tend thumb at wrs/hnd lv|Unsp inj long flexor musc/fasc/tend thumb at wrs/hnd lv +C2854962|T037|HT|S66.00|ICD10CM|Unspecified injury of long flexor muscle, fascia and tendon of thumb at wrist and hand level|Unspecified injury of long flexor muscle, fascia and tendon of thumb at wrist and hand level +C2854963|T037|AB|S66.001|ICD10CM|Unsp inj long flexor musc/fasc/tend r thm at wrs/hnd lv|Unsp inj long flexor musc/fasc/tend r thm at wrs/hnd lv +C2854963|T037|HT|S66.001|ICD10CM|Unspecified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level|Unspecified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level +C2854964|T037|AB|S66.001A|ICD10CM|Unsp inj long flxr musc/fasc/tend r thm at wrs/hnd lv, init|Unsp inj long flxr musc/fasc/tend r thm at wrs/hnd lv, init +C2854965|T037|AB|S66.001D|ICD10CM|Unsp inj long flxr musc/fasc/tend r thm at wrs/hnd lv, subs|Unsp inj long flxr musc/fasc/tend r thm at wrs/hnd lv, subs +C2854966|T037|AB|S66.001S|ICD10CM|Unsp inj long flxr musc/fasc/tend r thm at wrs/hnd lv, sqla|Unsp inj long flxr musc/fasc/tend r thm at wrs/hnd lv, sqla +C2854967|T037|AB|S66.002|ICD10CM|Unsp inj long flexor musc/fasc/tend l thm at wrs/hnd lv|Unsp inj long flexor musc/fasc/tend l thm at wrs/hnd lv +C2854967|T037|HT|S66.002|ICD10CM|Unspecified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level|Unspecified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level +C2854968|T037|AB|S66.002A|ICD10CM|Unsp inj long flxr musc/fasc/tend l thm at wrs/hnd lv, init|Unsp inj long flxr musc/fasc/tend l thm at wrs/hnd lv, init +C2854969|T037|AB|S66.002D|ICD10CM|Unsp inj long flxr musc/fasc/tend l thm at wrs/hnd lv, subs|Unsp inj long flxr musc/fasc/tend l thm at wrs/hnd lv, subs +C2854970|T037|AB|S66.002S|ICD10CM|Unsp inj long flxr musc/fasc/tend l thm at wrs/hnd lv, sqla|Unsp inj long flxr musc/fasc/tend l thm at wrs/hnd lv, sqla +C2854971|T037|AB|S66.009|ICD10CM|Unsp injury of long flexor musc/fasc/tend thmb at wrs/hnd lv|Unsp injury of long flexor musc/fasc/tend thmb at wrs/hnd lv +C2854972|T037|AB|S66.009A|ICD10CM|Unsp inj long flexor musc/fasc/tend thmb at wrs/hnd lv, init|Unsp inj long flexor musc/fasc/tend thmb at wrs/hnd lv, init +C2854973|T037|AB|S66.009D|ICD10CM|Unsp inj long flexor musc/fasc/tend thmb at wrs/hnd lv, subs|Unsp inj long flexor musc/fasc/tend thmb at wrs/hnd lv, subs +C2854974|T037|AB|S66.009S|ICD10CM|Unsp inj long flexor musc/fasc/tend thmb at wrs/hnd lv, sqla|Unsp inj long flexor musc/fasc/tend thmb at wrs/hnd lv, sqla +C2854975|T037|AB|S66.01|ICD10CM|Strain of long flexor musc/fasc/tend thumb at wrs/hnd lv|Strain of long flexor musc/fasc/tend thumb at wrs/hnd lv +C2854975|T037|HT|S66.01|ICD10CM|Strain of long flexor muscle, fascia and tendon of thumb at wrist and hand level|Strain of long flexor muscle, fascia and tendon of thumb at wrist and hand level +C2854976|T037|AB|S66.011|ICD10CM|Strain of long flexor musc/fasc/tend r thm at wrs/hnd lv|Strain of long flexor musc/fasc/tend r thm at wrs/hnd lv +C2854976|T037|HT|S66.011|ICD10CM|Strain of long flexor muscle, fascia and tendon of right thumb at wrist and hand level|Strain of long flexor muscle, fascia and tendon of right thumb at wrist and hand level +C2854977|T037|AB|S66.011A|ICD10CM|Strain long flexor musc/fasc/tend r thm at wrs/hnd lv, init|Strain long flexor musc/fasc/tend r thm at wrs/hnd lv, init +C2854978|T037|AB|S66.011D|ICD10CM|Strain long flexor musc/fasc/tend r thm at wrs/hnd lv, subs|Strain long flexor musc/fasc/tend r thm at wrs/hnd lv, subs +C2854979|T037|AB|S66.011S|ICD10CM|Strain long flexor musc/fasc/tend r thm at wrs/hnd lv, sqla|Strain long flexor musc/fasc/tend r thm at wrs/hnd lv, sqla +C2854979|T037|PT|S66.011S|ICD10CM|Strain of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, sequela|Strain of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, sequela +C2854980|T037|AB|S66.012|ICD10CM|Strain of long flexor musc/fasc/tend l thm at wrs/hnd lv|Strain of long flexor musc/fasc/tend l thm at wrs/hnd lv +C2854980|T037|HT|S66.012|ICD10CM|Strain of long flexor muscle, fascia and tendon of left thumb at wrist and hand level|Strain of long flexor muscle, fascia and tendon of left thumb at wrist and hand level +C2854981|T037|AB|S66.012A|ICD10CM|Strain long flexor musc/fasc/tend l thm at wrs/hnd lv, init|Strain long flexor musc/fasc/tend l thm at wrs/hnd lv, init +C2854982|T037|AB|S66.012D|ICD10CM|Strain long flexor musc/fasc/tend l thm at wrs/hnd lv, subs|Strain long flexor musc/fasc/tend l thm at wrs/hnd lv, subs +C2854983|T037|AB|S66.012S|ICD10CM|Strain long flexor musc/fasc/tend l thm at wrs/hnd lv, sqla|Strain long flexor musc/fasc/tend l thm at wrs/hnd lv, sqla +C2854983|T037|PT|S66.012S|ICD10CM|Strain of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, sequela|Strain of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, sequela +C2854984|T037|AB|S66.019|ICD10CM|Strain of long flexor musc/fasc/tend thmb at wrs/hnd lv|Strain of long flexor musc/fasc/tend thmb at wrs/hnd lv +C2854984|T037|HT|S66.019|ICD10CM|Strain of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level|Strain of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level +C2854985|T037|AB|S66.019A|ICD10CM|Strain long flexor musc/fasc/tend thmb at wrs/hnd lv, init|Strain long flexor musc/fasc/tend thmb at wrs/hnd lv, init +C2854986|T037|AB|S66.019D|ICD10CM|Strain long flexor musc/fasc/tend thmb at wrs/hnd lv, subs|Strain long flexor musc/fasc/tend thmb at wrs/hnd lv, subs +C2854987|T037|AB|S66.019S|ICD10CM|Strain long flexor musc/fasc/tend thmb at wrs/hnd lv, sqla|Strain long flexor musc/fasc/tend thmb at wrs/hnd lv, sqla +C2854988|T037|AB|S66.02|ICD10CM|Laceration of long flexor musc/fasc/tend thumb at wrs/hnd lv|Laceration of long flexor musc/fasc/tend thumb at wrs/hnd lv +C2854988|T037|HT|S66.02|ICD10CM|Laceration of long flexor muscle, fascia and tendon of thumb at wrist and hand level|Laceration of long flexor muscle, fascia and tendon of thumb at wrist and hand level +C2854989|T037|AB|S66.021|ICD10CM|Lacerat long flexor musc/fasc/tend right thumb at wrs/hnd lv|Lacerat long flexor musc/fasc/tend right thumb at wrs/hnd lv +C2854989|T037|HT|S66.021|ICD10CM|Laceration of long flexor muscle, fascia and tendon of right thumb at wrist and hand level|Laceration of long flexor muscle, fascia and tendon of right thumb at wrist and hand level +C2854990|T037|AB|S66.021A|ICD10CM|Lacerat long flexor musc/fasc/tend r thm at wrs/hnd lv, init|Lacerat long flexor musc/fasc/tend r thm at wrs/hnd lv, init +C2854991|T037|AB|S66.021D|ICD10CM|Lacerat long flexor musc/fasc/tend r thm at wrs/hnd lv, subs|Lacerat long flexor musc/fasc/tend r thm at wrs/hnd lv, subs +C2854992|T037|AB|S66.021S|ICD10CM|Lacerat long flexor musc/fasc/tend r thm at wrs/hnd lv, sqla|Lacerat long flexor musc/fasc/tend r thm at wrs/hnd lv, sqla +C2854992|T037|PT|S66.021S|ICD10CM|Laceration of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, sequela|Laceration of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, sequela +C2854993|T037|AB|S66.022|ICD10CM|Lacerat long flexor musc/fasc/tend left thumb at wrs/hnd lv|Lacerat long flexor musc/fasc/tend left thumb at wrs/hnd lv +C2854993|T037|HT|S66.022|ICD10CM|Laceration of long flexor muscle, fascia and tendon of left thumb at wrist and hand level|Laceration of long flexor muscle, fascia and tendon of left thumb at wrist and hand level +C2854994|T037|AB|S66.022A|ICD10CM|Lacerat long flexor musc/fasc/tend l thm at wrs/hnd lv, init|Lacerat long flexor musc/fasc/tend l thm at wrs/hnd lv, init +C2854995|T037|AB|S66.022D|ICD10CM|Lacerat long flexor musc/fasc/tend l thm at wrs/hnd lv, subs|Lacerat long flexor musc/fasc/tend l thm at wrs/hnd lv, subs +C2854996|T037|AB|S66.022S|ICD10CM|Lacerat long flexor musc/fasc/tend l thm at wrs/hnd lv, sqla|Lacerat long flexor musc/fasc/tend l thm at wrs/hnd lv, sqla +C2854996|T037|PT|S66.022S|ICD10CM|Laceration of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, sequela|Laceration of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, sequela +C2854997|T037|AB|S66.029|ICD10CM|Laceration of long flexor musc/fasc/tend thmb at wrs/hnd lv|Laceration of long flexor musc/fasc/tend thmb at wrs/hnd lv +C2854997|T037|HT|S66.029|ICD10CM|Laceration of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level|Laceration of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level +C2854998|T037|AB|S66.029A|ICD10CM|Lacerat long flexor musc/fasc/tend thmb at wrs/hnd lv, init|Lacerat long flexor musc/fasc/tend thmb at wrs/hnd lv, init +C2854999|T037|AB|S66.029D|ICD10CM|Lacerat long flexor musc/fasc/tend thmb at wrs/hnd lv, subs|Lacerat long flexor musc/fasc/tend thmb at wrs/hnd lv, subs +C2855000|T037|AB|S66.029S|ICD10CM|Lacerat long flexor musc/fasc/tend thmb at wrs/hnd lv, sqla|Lacerat long flexor musc/fasc/tend thmb at wrs/hnd lv, sqla +C2855001|T037|AB|S66.09|ICD10CM|Inj long flexor musc/fasc/tend thumb at wrist and hand level|Inj long flexor musc/fasc/tend thumb at wrist and hand level +C2855001|T037|HT|S66.09|ICD10CM|Other specified injury of long flexor muscle, fascia and tendon of thumb at wrist and hand level|Other specified injury of long flexor muscle, fascia and tendon of thumb at wrist and hand level +C2855002|T037|AB|S66.091|ICD10CM|Inj long flexor musc/fasc/tend right thumb at wrs/hnd lv|Inj long flexor musc/fasc/tend right thumb at wrs/hnd lv +C2855003|T037|AB|S66.091A|ICD10CM|Inj long flexor musc/fasc/tend r thm at wrs/hnd lv, init|Inj long flexor musc/fasc/tend r thm at wrs/hnd lv, init +C2855004|T037|AB|S66.091D|ICD10CM|Inj long flexor musc/fasc/tend r thm at wrs/hnd lv, subs|Inj long flexor musc/fasc/tend r thm at wrs/hnd lv, subs +C2855005|T037|AB|S66.091S|ICD10CM|Inj long flexor musc/fasc/tend r thm at wrs/hnd lv, sequela|Inj long flexor musc/fasc/tend r thm at wrs/hnd lv, sequela +C2855006|T037|AB|S66.092|ICD10CM|Inj long flexor musc/fasc/tend left thumb at wrs/hnd lv|Inj long flexor musc/fasc/tend left thumb at wrs/hnd lv +C2855007|T037|AB|S66.092A|ICD10CM|Inj long flexor musc/fasc/tend l thm at wrs/hnd lv, init|Inj long flexor musc/fasc/tend l thm at wrs/hnd lv, init +C2855008|T037|AB|S66.092D|ICD10CM|Inj long flexor musc/fasc/tend l thm at wrs/hnd lv, subs|Inj long flexor musc/fasc/tend l thm at wrs/hnd lv, subs +C2855009|T037|AB|S66.092S|ICD10CM|Inj long flexor musc/fasc/tend l thm at wrs/hnd lv, sequela|Inj long flexor musc/fasc/tend l thm at wrs/hnd lv, sequela +C2855010|T037|AB|S66.099|ICD10CM|Inj long flexor musc/fasc/tend thmb at wrist and hand level|Inj long flexor musc/fasc/tend thmb at wrist and hand level +C2855011|T037|AB|S66.099A|ICD10CM|Inj long flexor musc/fasc/tend thmb at wrs/hnd lv, init|Inj long flexor musc/fasc/tend thmb at wrs/hnd lv, init +C2855012|T037|AB|S66.099D|ICD10CM|Inj long flexor musc/fasc/tend thmb at wrs/hnd lv, subs|Inj long flexor musc/fasc/tend thmb at wrs/hnd lv, subs +C2855013|T037|AB|S66.099S|ICD10CM|Inj long flexor musc/fasc/tend thmb at wrs/hnd lv, sequela|Inj long flexor musc/fasc/tend thmb at wrs/hnd lv, sequela +C2855014|T037|AB|S66.1|ICD10CM|Inj flexor musc/fasc/tend and unsp finger at wrs/hnd lv|Inj flexor musc/fasc/tend and unsp finger at wrs/hnd lv +C0495916|T037|PT|S66.1|ICD10|Injury of flexor muscle and tendon of other finger at wrist and hand level|Injury of flexor muscle and tendon of other finger at wrist and hand level +C2855014|T037|HT|S66.1|ICD10CM|Injury of flexor muscle, fascia and tendon of other and unspecified finger at wrist and hand level|Injury of flexor muscle, fascia and tendon of other and unspecified finger at wrist and hand level +C2855015|T037|AB|S66.10|ICD10CM|Unsp inj flexor musc/fasc/tend and unsp finger at wrs/hnd lv|Unsp inj flexor musc/fasc/tend and unsp finger at wrs/hnd lv +C2855016|T037|AB|S66.100|ICD10CM|Unsp inj flexor musc/fasc/tend r idx fngr at wrs/hnd lv|Unsp inj flexor musc/fasc/tend r idx fngr at wrs/hnd lv +C2855016|T037|HT|S66.100|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level|Unspecified injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level +C2855017|T037|AB|S66.100A|ICD10CM|Unsp inj flxr musc/fasc/tend r idx fngr at wrs/hnd lv, init|Unsp inj flxr musc/fasc/tend r idx fngr at wrs/hnd lv, init +C2855018|T037|AB|S66.100D|ICD10CM|Unsp inj flxr musc/fasc/tend r idx fngr at wrs/hnd lv, subs|Unsp inj flxr musc/fasc/tend r idx fngr at wrs/hnd lv, subs +C2855019|T037|AB|S66.100S|ICD10CM|Unsp inj flxr musc/fasc/tend r idx fngr at wrs/hnd lv, sqla|Unsp inj flxr musc/fasc/tend r idx fngr at wrs/hnd lv, sqla +C2855020|T037|AB|S66.101|ICD10CM|Unsp inj flexor musc/fasc/tend l idx fngr at wrs/hnd lv|Unsp inj flexor musc/fasc/tend l idx fngr at wrs/hnd lv +C2855020|T037|HT|S66.101|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level|Unspecified injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level +C2855021|T037|AB|S66.101A|ICD10CM|Unsp inj flxr musc/fasc/tend l idx fngr at wrs/hnd lv, init|Unsp inj flxr musc/fasc/tend l idx fngr at wrs/hnd lv, init +C2855022|T037|AB|S66.101D|ICD10CM|Unsp inj flxr musc/fasc/tend l idx fngr at wrs/hnd lv, subs|Unsp inj flxr musc/fasc/tend l idx fngr at wrs/hnd lv, subs +C2855023|T037|AB|S66.101S|ICD10CM|Unsp inj flxr musc/fasc/tend l idx fngr at wrs/hnd lv, sqla|Unsp inj flxr musc/fasc/tend l idx fngr at wrs/hnd lv, sqla +C2855024|T037|AB|S66.102|ICD10CM|Unsp inj flexor musc/fasc/tend r mid finger at wrs/hnd lv|Unsp inj flexor musc/fasc/tend r mid finger at wrs/hnd lv +C2855025|T037|AB|S66.102A|ICD10CM|Unsp inj flxr musc/fasc/tend r mid fngr at wrs/hnd lv, init|Unsp inj flxr musc/fasc/tend r mid fngr at wrs/hnd lv, init +C2855026|T037|AB|S66.102D|ICD10CM|Unsp inj flxr musc/fasc/tend r mid fngr at wrs/hnd lv, subs|Unsp inj flxr musc/fasc/tend r mid fngr at wrs/hnd lv, subs +C2855027|T037|AB|S66.102S|ICD10CM|Unsp inj flxr musc/fasc/tend r mid fngr at wrs/hnd lv, sqla|Unsp inj flxr musc/fasc/tend r mid fngr at wrs/hnd lv, sqla +C2855028|T037|AB|S66.103|ICD10CM|Unsp inj flexor musc/fasc/tend l mid finger at wrs/hnd lv|Unsp inj flexor musc/fasc/tend l mid finger at wrs/hnd lv +C2855028|T037|HT|S66.103|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level|Unspecified injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level +C2855029|T037|AB|S66.103A|ICD10CM|Unsp inj flxr musc/fasc/tend l mid fngr at wrs/hnd lv, init|Unsp inj flxr musc/fasc/tend l mid fngr at wrs/hnd lv, init +C2855030|T037|AB|S66.103D|ICD10CM|Unsp inj flxr musc/fasc/tend l mid fngr at wrs/hnd lv, subs|Unsp inj flxr musc/fasc/tend l mid fngr at wrs/hnd lv, subs +C2855031|T037|AB|S66.103S|ICD10CM|Unsp inj flxr musc/fasc/tend l mid fngr at wrs/hnd lv, sqla|Unsp inj flxr musc/fasc/tend l mid fngr at wrs/hnd lv, sqla +C2855032|T037|AB|S66.104|ICD10CM|Unsp inj flexor musc/fasc/tend r rng fngr at wrs/hnd lv|Unsp inj flexor musc/fasc/tend r rng fngr at wrs/hnd lv +C2855032|T037|HT|S66.104|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level|Unspecified injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level +C2855033|T037|AB|S66.104A|ICD10CM|Unsp inj flxr musc/fasc/tend r rng fngr at wrs/hnd lv, init|Unsp inj flxr musc/fasc/tend r rng fngr at wrs/hnd lv, init +C2855034|T037|AB|S66.104D|ICD10CM|Unsp inj flxr musc/fasc/tend r rng fngr at wrs/hnd lv, subs|Unsp inj flxr musc/fasc/tend r rng fngr at wrs/hnd lv, subs +C2855035|T037|AB|S66.104S|ICD10CM|Unsp inj flxr musc/fasc/tend r rng fngr at wrs/hnd lv, sqla|Unsp inj flxr musc/fasc/tend r rng fngr at wrs/hnd lv, sqla +C2855036|T037|AB|S66.105|ICD10CM|Unsp inj flexor musc/fasc/tend l rng fngr at wrs/hnd lv|Unsp inj flexor musc/fasc/tend l rng fngr at wrs/hnd lv +C2855036|T037|HT|S66.105|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level|Unspecified injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level +C2855037|T037|AB|S66.105A|ICD10CM|Unsp inj flxr musc/fasc/tend l rng fngr at wrs/hnd lv, init|Unsp inj flxr musc/fasc/tend l rng fngr at wrs/hnd lv, init +C2855038|T037|AB|S66.105D|ICD10CM|Unsp inj flxr musc/fasc/tend l rng fngr at wrs/hnd lv, subs|Unsp inj flxr musc/fasc/tend l rng fngr at wrs/hnd lv, subs +C2855039|T037|AB|S66.105S|ICD10CM|Unsp inj flxr musc/fasc/tend l rng fngr at wrs/hnd lv, sqla|Unsp inj flxr musc/fasc/tend l rng fngr at wrs/hnd lv, sqla +C2855040|T037|AB|S66.106|ICD10CM|Unsp inj flexor musc/fasc/tend r little finger at wrs/hnd lv|Unsp inj flexor musc/fasc/tend r little finger at wrs/hnd lv +C2855041|T037|AB|S66.106A|ICD10CM|Unsp inj flxr musc/fasc/tend r lit fngr at wrs/hnd lv, init|Unsp inj flxr musc/fasc/tend r lit fngr at wrs/hnd lv, init +C2855042|T037|AB|S66.106D|ICD10CM|Unsp inj flxr musc/fasc/tend r lit fngr at wrs/hnd lv, subs|Unsp inj flxr musc/fasc/tend r lit fngr at wrs/hnd lv, subs +C2855043|T037|AB|S66.106S|ICD10CM|Unsp inj flxr musc/fasc/tend r lit fngr at wrs/hnd lv, sqla|Unsp inj flxr musc/fasc/tend r lit fngr at wrs/hnd lv, sqla +C2855044|T037|AB|S66.107|ICD10CM|Unsp inj flexor musc/fasc/tend l little finger at wrs/hnd lv|Unsp inj flexor musc/fasc/tend l little finger at wrs/hnd lv +C2855044|T037|HT|S66.107|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level|Unspecified injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level +C2855045|T037|AB|S66.107A|ICD10CM|Unsp inj flxr musc/fasc/tend l lit fngr at wrs/hnd lv, init|Unsp inj flxr musc/fasc/tend l lit fngr at wrs/hnd lv, init +C2855046|T037|AB|S66.107D|ICD10CM|Unsp inj flxr musc/fasc/tend l lit fngr at wrs/hnd lv, subs|Unsp inj flxr musc/fasc/tend l lit fngr at wrs/hnd lv, subs +C2855047|T037|AB|S66.107S|ICD10CM|Unsp inj flxr musc/fasc/tend l lit fngr at wrs/hnd lv, sqla|Unsp inj flxr musc/fasc/tend l lit fngr at wrs/hnd lv, sqla +C2855049|T037|AB|S66.108|ICD10CM|Unsp injury of flexor musc/fasc/tend finger at wrs/hnd lv|Unsp injury of flexor musc/fasc/tend finger at wrs/hnd lv +C2855049|T037|HT|S66.108|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of other finger at wrist and hand level|Unspecified injury of flexor muscle, fascia and tendon of other finger at wrist and hand level +C2855050|T037|AB|S66.108A|ICD10CM|Unsp inj flexor musc/fasc/tend finger at wrs/hnd lv, init|Unsp inj flexor musc/fasc/tend finger at wrs/hnd lv, init +C2855051|T037|AB|S66.108D|ICD10CM|Unsp inj flexor musc/fasc/tend finger at wrs/hnd lv, subs|Unsp inj flexor musc/fasc/tend finger at wrs/hnd lv, subs +C2855052|T037|AB|S66.108S|ICD10CM|Unsp inj flexor musc/fasc/tend finger at wrs/hnd lv, sequela|Unsp inj flexor musc/fasc/tend finger at wrs/hnd lv, sequela +C2855015|T037|AB|S66.109|ICD10CM|Unsp inj flexor musc/fasc/tend unsp finger at wrs/hnd lv|Unsp inj flexor musc/fasc/tend unsp finger at wrs/hnd lv +C2855015|T037|HT|S66.109|ICD10CM|Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level|Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level +C2855054|T037|AB|S66.109A|ICD10CM|Unsp inj flexor musc/fasc/tend unsp fngr at wrs/hnd lv, init|Unsp inj flexor musc/fasc/tend unsp fngr at wrs/hnd lv, init +C2855055|T037|AB|S66.109D|ICD10CM|Unsp inj flexor musc/fasc/tend unsp fngr at wrs/hnd lv, subs|Unsp inj flexor musc/fasc/tend unsp fngr at wrs/hnd lv, subs +C2855056|T037|AB|S66.109S|ICD10CM|Unsp inj flexor musc/fasc/tend unsp fngr at wrs/hnd lv, sqla|Unsp inj flexor musc/fasc/tend unsp fngr at wrs/hnd lv, sqla +C2855057|T037|AB|S66.11|ICD10CM|Strain flexor musc/fasc/tend and unsp finger at wrs/hnd lv|Strain flexor musc/fasc/tend and unsp finger at wrs/hnd lv +C2855057|T037|HT|S66.11|ICD10CM|Strain of flexor muscle, fascia and tendon of other and unspecified finger at wrist and hand level|Strain of flexor muscle, fascia and tendon of other and unspecified finger at wrist and hand level +C2855058|T037|AB|S66.110|ICD10CM|Strain of flexor musc/fasc/tend r idx fngr at wrs/hnd lv|Strain of flexor musc/fasc/tend r idx fngr at wrs/hnd lv +C2855058|T037|HT|S66.110|ICD10CM|Strain of flexor muscle, fascia and tendon of right index finger at wrist and hand level|Strain of flexor muscle, fascia and tendon of right index finger at wrist and hand level +C2855059|T037|AB|S66.110A|ICD10CM|Strain flexor musc/fasc/tend r idx fngr at wrs/hnd lv, init|Strain flexor musc/fasc/tend r idx fngr at wrs/hnd lv, init +C2855060|T037|AB|S66.110D|ICD10CM|Strain flexor musc/fasc/tend r idx fngr at wrs/hnd lv, subs|Strain flexor musc/fasc/tend r idx fngr at wrs/hnd lv, subs +C2855061|T037|AB|S66.110S|ICD10CM|Strain flexor musc/fasc/tend r idx fngr at wrs/hnd lv, sqla|Strain flexor musc/fasc/tend r idx fngr at wrs/hnd lv, sqla +C2855061|T037|PT|S66.110S|ICD10CM|Strain of flexor muscle, fascia and tendon of right index finger at wrist and hand level, sequela|Strain of flexor muscle, fascia and tendon of right index finger at wrist and hand level, sequela +C2855062|T037|AB|S66.111|ICD10CM|Strain of flexor musc/fasc/tend l idx fngr at wrs/hnd lv|Strain of flexor musc/fasc/tend l idx fngr at wrs/hnd lv +C2855062|T037|HT|S66.111|ICD10CM|Strain of flexor muscle, fascia and tendon of left index finger at wrist and hand level|Strain of flexor muscle, fascia and tendon of left index finger at wrist and hand level +C2855063|T037|AB|S66.111A|ICD10CM|Strain flexor musc/fasc/tend l idx fngr at wrs/hnd lv, init|Strain flexor musc/fasc/tend l idx fngr at wrs/hnd lv, init +C2855064|T037|AB|S66.111D|ICD10CM|Strain flexor musc/fasc/tend l idx fngr at wrs/hnd lv, subs|Strain flexor musc/fasc/tend l idx fngr at wrs/hnd lv, subs +C2855065|T037|AB|S66.111S|ICD10CM|Strain flexor musc/fasc/tend l idx fngr at wrs/hnd lv, sqla|Strain flexor musc/fasc/tend l idx fngr at wrs/hnd lv, sqla +C2855065|T037|PT|S66.111S|ICD10CM|Strain of flexor muscle, fascia and tendon of left index finger at wrist and hand level, sequela|Strain of flexor muscle, fascia and tendon of left index finger at wrist and hand level, sequela +C2855066|T037|AB|S66.112|ICD10CM|Strain of flexor musc/fasc/tend r mid finger at wrs/hnd lv|Strain of flexor musc/fasc/tend r mid finger at wrs/hnd lv +C2855066|T037|HT|S66.112|ICD10CM|Strain of flexor muscle, fascia and tendon of right middle finger at wrist and hand level|Strain of flexor muscle, fascia and tendon of right middle finger at wrist and hand level +C2855067|T037|AB|S66.112A|ICD10CM|Strain flexor musc/fasc/tend r mid fngr at wrs/hnd lv, init|Strain flexor musc/fasc/tend r mid fngr at wrs/hnd lv, init +C2855068|T037|AB|S66.112D|ICD10CM|Strain flexor musc/fasc/tend r mid fngr at wrs/hnd lv, subs|Strain flexor musc/fasc/tend r mid fngr at wrs/hnd lv, subs +C2855069|T037|AB|S66.112S|ICD10CM|Strain flexor musc/fasc/tend r mid fngr at wrs/hnd lv, sqla|Strain flexor musc/fasc/tend r mid fngr at wrs/hnd lv, sqla +C2855069|T037|PT|S66.112S|ICD10CM|Strain of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela|Strain of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela +C2855070|T037|AB|S66.113|ICD10CM|Strain of flexor musc/fasc/tend l mid finger at wrs/hnd lv|Strain of flexor musc/fasc/tend l mid finger at wrs/hnd lv +C2855070|T037|HT|S66.113|ICD10CM|Strain of flexor muscle, fascia and tendon of left middle finger at wrist and hand level|Strain of flexor muscle, fascia and tendon of left middle finger at wrist and hand level +C2855071|T037|AB|S66.113A|ICD10CM|Strain flexor musc/fasc/tend l mid fngr at wrs/hnd lv, init|Strain flexor musc/fasc/tend l mid fngr at wrs/hnd lv, init +C2855072|T037|AB|S66.113D|ICD10CM|Strain flexor musc/fasc/tend l mid fngr at wrs/hnd lv, subs|Strain flexor musc/fasc/tend l mid fngr at wrs/hnd lv, subs +C2855073|T037|AB|S66.113S|ICD10CM|Strain flexor musc/fasc/tend l mid fngr at wrs/hnd lv, sqla|Strain flexor musc/fasc/tend l mid fngr at wrs/hnd lv, sqla +C2855073|T037|PT|S66.113S|ICD10CM|Strain of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela|Strain of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela +C2855074|T037|AB|S66.114|ICD10CM|Strain of flexor musc/fasc/tend r rng fngr at wrs/hnd lv|Strain of flexor musc/fasc/tend r rng fngr at wrs/hnd lv +C2855074|T037|HT|S66.114|ICD10CM|Strain of flexor muscle, fascia and tendon of right ring finger at wrist and hand level|Strain of flexor muscle, fascia and tendon of right ring finger at wrist and hand level +C2855075|T037|AB|S66.114A|ICD10CM|Strain flexor musc/fasc/tend r rng fngr at wrs/hnd lv, init|Strain flexor musc/fasc/tend r rng fngr at wrs/hnd lv, init +C2855076|T037|AB|S66.114D|ICD10CM|Strain flexor musc/fasc/tend r rng fngr at wrs/hnd lv, subs|Strain flexor musc/fasc/tend r rng fngr at wrs/hnd lv, subs +C2855077|T037|AB|S66.114S|ICD10CM|Strain flexor musc/fasc/tend r rng fngr at wrs/hnd lv, sqla|Strain flexor musc/fasc/tend r rng fngr at wrs/hnd lv, sqla +C2855077|T037|PT|S66.114S|ICD10CM|Strain of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela|Strain of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela +C2855078|T037|AB|S66.115|ICD10CM|Strain of flexor musc/fasc/tend l rng fngr at wrs/hnd lv|Strain of flexor musc/fasc/tend l rng fngr at wrs/hnd lv +C2855078|T037|HT|S66.115|ICD10CM|Strain of flexor muscle, fascia and tendon of left ring finger at wrist and hand level|Strain of flexor muscle, fascia and tendon of left ring finger at wrist and hand level +C2855079|T037|AB|S66.115A|ICD10CM|Strain flexor musc/fasc/tend l rng fngr at wrs/hnd lv, init|Strain flexor musc/fasc/tend l rng fngr at wrs/hnd lv, init +C2855080|T037|AB|S66.115D|ICD10CM|Strain flexor musc/fasc/tend l rng fngr at wrs/hnd lv, subs|Strain flexor musc/fasc/tend l rng fngr at wrs/hnd lv, subs +C2855081|T037|AB|S66.115S|ICD10CM|Strain flexor musc/fasc/tend l rng fngr at wrs/hnd lv, sqla|Strain flexor musc/fasc/tend l rng fngr at wrs/hnd lv, sqla +C2855081|T037|PT|S66.115S|ICD10CM|Strain of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela|Strain of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela +C2855082|T037|AB|S66.116|ICD10CM|Strain flexor musc/fasc/tend r little finger at wrs/hnd lv|Strain flexor musc/fasc/tend r little finger at wrs/hnd lv +C2855082|T037|HT|S66.116|ICD10CM|Strain of flexor muscle, fascia and tendon of right little finger at wrist and hand level|Strain of flexor muscle, fascia and tendon of right little finger at wrist and hand level +C2855083|T037|AB|S66.116A|ICD10CM|Strain flxr musc/fasc/tend r little fngr at wrs/hnd lv, init|Strain flxr musc/fasc/tend r little fngr at wrs/hnd lv, init +C2855084|T037|AB|S66.116D|ICD10CM|Strain flxr musc/fasc/tend r little fngr at wrs/hnd lv, subs|Strain flxr musc/fasc/tend r little fngr at wrs/hnd lv, subs +C2855085|T037|AB|S66.116S|ICD10CM|Strain flxr musc/fasc/tend r little fngr at wrs/hnd lv, sqla|Strain flxr musc/fasc/tend r little fngr at wrs/hnd lv, sqla +C2855085|T037|PT|S66.116S|ICD10CM|Strain of flexor muscle, fascia and tendon of right little finger at wrist and hand level, sequela|Strain of flexor muscle, fascia and tendon of right little finger at wrist and hand level, sequela +C2855086|T037|AB|S66.117|ICD10CM|Strain flexor musc/fasc/tend l little finger at wrs/hnd lv|Strain flexor musc/fasc/tend l little finger at wrs/hnd lv +C2855086|T037|HT|S66.117|ICD10CM|Strain of flexor muscle, fascia and tendon of left little finger at wrist and hand level|Strain of flexor muscle, fascia and tendon of left little finger at wrist and hand level +C2855087|T037|AB|S66.117A|ICD10CM|Strain flxr musc/fasc/tend l little fngr at wrs/hnd lv, init|Strain flxr musc/fasc/tend l little fngr at wrs/hnd lv, init +C2855088|T037|AB|S66.117D|ICD10CM|Strain flxr musc/fasc/tend l little fngr at wrs/hnd lv, subs|Strain flxr musc/fasc/tend l little fngr at wrs/hnd lv, subs +C2855089|T037|AB|S66.117S|ICD10CM|Strain flxr musc/fasc/tend l little fngr at wrs/hnd lv, sqla|Strain flxr musc/fasc/tend l little fngr at wrs/hnd lv, sqla +C2855089|T037|PT|S66.117S|ICD10CM|Strain of flexor muscle, fascia and tendon of left little finger at wrist and hand level, sequela|Strain of flexor muscle, fascia and tendon of left little finger at wrist and hand level, sequela +C2855091|T037|AB|S66.118|ICD10CM|Strain of flexor musc/fasc/tend finger at wrs/hnd lv|Strain of flexor musc/fasc/tend finger at wrs/hnd lv +C2855091|T037|HT|S66.118|ICD10CM|Strain of flexor muscle, fascia and tendon of other finger at wrist and hand level|Strain of flexor muscle, fascia and tendon of other finger at wrist and hand level +C2855092|T037|AB|S66.118A|ICD10CM|Strain of flexor musc/fasc/tend finger at wrs/hnd lv, init|Strain of flexor musc/fasc/tend finger at wrs/hnd lv, init +C2855093|T037|AB|S66.118D|ICD10CM|Strain of flexor musc/fasc/tend finger at wrs/hnd lv, subs|Strain of flexor musc/fasc/tend finger at wrs/hnd lv, subs +C2855094|T037|AB|S66.118S|ICD10CM|Strain flexor musc/fasc/tend finger at wrs/hnd lv, sequela|Strain flexor musc/fasc/tend finger at wrs/hnd lv, sequela +C2855094|T037|PT|S66.118S|ICD10CM|Strain of flexor muscle, fascia and tendon of other finger at wrist and hand level, sequela|Strain of flexor muscle, fascia and tendon of other finger at wrist and hand level, sequela +C2855057|T037|AB|S66.119|ICD10CM|Strain of flexor musc/fasc/tend unsp finger at wrs/hnd lv|Strain of flexor musc/fasc/tend unsp finger at wrs/hnd lv +C2855057|T037|HT|S66.119|ICD10CM|Strain of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level|Strain of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level +C2855096|T037|AB|S66.119A|ICD10CM|Strain flexor musc/fasc/tend unsp finger at wrs/hnd lv, init|Strain flexor musc/fasc/tend unsp finger at wrs/hnd lv, init +C2855097|T037|AB|S66.119D|ICD10CM|Strain flexor musc/fasc/tend unsp finger at wrs/hnd lv, subs|Strain flexor musc/fasc/tend unsp finger at wrs/hnd lv, subs +C2855098|T037|AB|S66.119S|ICD10CM|Strain flexor musc/fasc/tend unsp finger at wrs/hnd lv, sqla|Strain flexor musc/fasc/tend unsp finger at wrs/hnd lv, sqla +C2855098|T037|PT|S66.119S|ICD10CM|Strain of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela|Strain of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela +C2855099|T037|AB|S66.12|ICD10CM|Lacerat flexor musc/fasc/tend and unsp finger at wrs/hnd lv|Lacerat flexor musc/fasc/tend and unsp finger at wrs/hnd lv +C2855100|T037|AB|S66.120|ICD10CM|Laceration of flexor musc/fasc/tend r idx fngr at wrs/hnd lv|Laceration of flexor musc/fasc/tend r idx fngr at wrs/hnd lv +C2855100|T037|HT|S66.120|ICD10CM|Laceration of flexor muscle, fascia and tendon of right index finger at wrist and hand level|Laceration of flexor muscle, fascia and tendon of right index finger at wrist and hand level +C2855101|T037|AB|S66.120A|ICD10CM|Lacerat flexor musc/fasc/tend r idx fngr at wrs/hnd lv, init|Lacerat flexor musc/fasc/tend r idx fngr at wrs/hnd lv, init +C2855102|T037|AB|S66.120D|ICD10CM|Lacerat flexor musc/fasc/tend r idx fngr at wrs/hnd lv, subs|Lacerat flexor musc/fasc/tend r idx fngr at wrs/hnd lv, subs +C2855103|T037|AB|S66.120S|ICD10CM|Lacerat flexor musc/fasc/tend r idx fngr at wrs/hnd lv, sqla|Lacerat flexor musc/fasc/tend r idx fngr at wrs/hnd lv, sqla +C2855104|T037|AB|S66.121|ICD10CM|Laceration of flexor musc/fasc/tend l idx fngr at wrs/hnd lv|Laceration of flexor musc/fasc/tend l idx fngr at wrs/hnd lv +C2855104|T037|HT|S66.121|ICD10CM|Laceration of flexor muscle, fascia and tendon of left index finger at wrist and hand level|Laceration of flexor muscle, fascia and tendon of left index finger at wrist and hand level +C2855105|T037|AB|S66.121A|ICD10CM|Lacerat flexor musc/fasc/tend l idx fngr at wrs/hnd lv, init|Lacerat flexor musc/fasc/tend l idx fngr at wrs/hnd lv, init +C2855106|T037|AB|S66.121D|ICD10CM|Lacerat flexor musc/fasc/tend l idx fngr at wrs/hnd lv, subs|Lacerat flexor musc/fasc/tend l idx fngr at wrs/hnd lv, subs +C2855107|T037|AB|S66.121S|ICD10CM|Lacerat flexor musc/fasc/tend l idx fngr at wrs/hnd lv, sqla|Lacerat flexor musc/fasc/tend l idx fngr at wrs/hnd lv, sqla +C2855107|T037|PT|S66.121S|ICD10CM|Laceration of flexor muscle, fascia and tendon of left index finger at wrist and hand level, sequela|Laceration of flexor muscle, fascia and tendon of left index finger at wrist and hand level, sequela +C2855108|T037|AB|S66.122|ICD10CM|Lacerat flexor musc/fasc/tend r mid finger at wrs/hnd lv|Lacerat flexor musc/fasc/tend r mid finger at wrs/hnd lv +C2855108|T037|HT|S66.122|ICD10CM|Laceration of flexor muscle, fascia and tendon of right middle finger at wrist and hand level|Laceration of flexor muscle, fascia and tendon of right middle finger at wrist and hand level +C2855109|T037|AB|S66.122A|ICD10CM|Lacerat flexor musc/fasc/tend r mid fngr at wrs/hnd lv, init|Lacerat flexor musc/fasc/tend r mid fngr at wrs/hnd lv, init +C2855110|T037|AB|S66.122D|ICD10CM|Lacerat flexor musc/fasc/tend r mid fngr at wrs/hnd lv, subs|Lacerat flexor musc/fasc/tend r mid fngr at wrs/hnd lv, subs +C2855111|T037|AB|S66.122S|ICD10CM|Lacerat flexor musc/fasc/tend r mid fngr at wrs/hnd lv, sqla|Lacerat flexor musc/fasc/tend r mid fngr at wrs/hnd lv, sqla +C2855112|T037|AB|S66.123|ICD10CM|Lacerat flexor musc/fasc/tend l mid finger at wrs/hnd lv|Lacerat flexor musc/fasc/tend l mid finger at wrs/hnd lv +C2855112|T037|HT|S66.123|ICD10CM|Laceration of flexor muscle, fascia and tendon of left middle finger at wrist and hand level|Laceration of flexor muscle, fascia and tendon of left middle finger at wrist and hand level +C2855113|T037|AB|S66.123A|ICD10CM|Lacerat flexor musc/fasc/tend l mid fngr at wrs/hnd lv, init|Lacerat flexor musc/fasc/tend l mid fngr at wrs/hnd lv, init +C2855114|T037|AB|S66.123D|ICD10CM|Lacerat flexor musc/fasc/tend l mid fngr at wrs/hnd lv, subs|Lacerat flexor musc/fasc/tend l mid fngr at wrs/hnd lv, subs +C2855115|T037|AB|S66.123S|ICD10CM|Lacerat flexor musc/fasc/tend l mid fngr at wrs/hnd lv, sqla|Lacerat flexor musc/fasc/tend l mid fngr at wrs/hnd lv, sqla +C2855116|T037|AB|S66.124|ICD10CM|Laceration of flexor musc/fasc/tend r rng fngr at wrs/hnd lv|Laceration of flexor musc/fasc/tend r rng fngr at wrs/hnd lv +C2855116|T037|HT|S66.124|ICD10CM|Laceration of flexor muscle, fascia and tendon of right ring finger at wrist and hand level|Laceration of flexor muscle, fascia and tendon of right ring finger at wrist and hand level +C2855117|T037|AB|S66.124A|ICD10CM|Lacerat flexor musc/fasc/tend r rng fngr at wrs/hnd lv, init|Lacerat flexor musc/fasc/tend r rng fngr at wrs/hnd lv, init +C2855118|T037|AB|S66.124D|ICD10CM|Lacerat flexor musc/fasc/tend r rng fngr at wrs/hnd lv, subs|Lacerat flexor musc/fasc/tend r rng fngr at wrs/hnd lv, subs +C2855119|T037|AB|S66.124S|ICD10CM|Lacerat flexor musc/fasc/tend r rng fngr at wrs/hnd lv, sqla|Lacerat flexor musc/fasc/tend r rng fngr at wrs/hnd lv, sqla +C2855119|T037|PT|S66.124S|ICD10CM|Laceration of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela|Laceration of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela +C2855120|T037|AB|S66.125|ICD10CM|Laceration of flexor musc/fasc/tend l rng fngr at wrs/hnd lv|Laceration of flexor musc/fasc/tend l rng fngr at wrs/hnd lv +C2855120|T037|HT|S66.125|ICD10CM|Laceration of flexor muscle, fascia and tendon of left ring finger at wrist and hand level|Laceration of flexor muscle, fascia and tendon of left ring finger at wrist and hand level +C2855121|T037|AB|S66.125A|ICD10CM|Lacerat flexor musc/fasc/tend l rng fngr at wrs/hnd lv, init|Lacerat flexor musc/fasc/tend l rng fngr at wrs/hnd lv, init +C2855122|T037|AB|S66.125D|ICD10CM|Lacerat flexor musc/fasc/tend l rng fngr at wrs/hnd lv, subs|Lacerat flexor musc/fasc/tend l rng fngr at wrs/hnd lv, subs +C2855123|T037|AB|S66.125S|ICD10CM|Lacerat flexor musc/fasc/tend l rng fngr at wrs/hnd lv, sqla|Lacerat flexor musc/fasc/tend l rng fngr at wrs/hnd lv, sqla +C2855123|T037|PT|S66.125S|ICD10CM|Laceration of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela|Laceration of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela +C2855124|T037|AB|S66.126|ICD10CM|Lacerat flexor musc/fasc/tend r little finger at wrs/hnd lv|Lacerat flexor musc/fasc/tend r little finger at wrs/hnd lv +C2855124|T037|HT|S66.126|ICD10CM|Laceration of flexor muscle, fascia and tendon of right little finger at wrist and hand level|Laceration of flexor muscle, fascia and tendon of right little finger at wrist and hand level +C2855125|T037|AB|S66.126A|ICD10CM|Lacerat flxr musc/fasc/tend r lit fngr at wrs/hnd lv, init|Lacerat flxr musc/fasc/tend r lit fngr at wrs/hnd lv, init +C2855126|T037|AB|S66.126D|ICD10CM|Lacerat flxr musc/fasc/tend r lit fngr at wrs/hnd lv, subs|Lacerat flxr musc/fasc/tend r lit fngr at wrs/hnd lv, subs +C2855127|T037|AB|S66.126S|ICD10CM|Lacerat flxr musc/fasc/tend r lit fngr at wrs/hnd lv, sqla|Lacerat flxr musc/fasc/tend r lit fngr at wrs/hnd lv, sqla +C2855128|T037|AB|S66.127|ICD10CM|Lacerat flexor musc/fasc/tend l little finger at wrs/hnd lv|Lacerat flexor musc/fasc/tend l little finger at wrs/hnd lv +C2855128|T037|HT|S66.127|ICD10CM|Laceration of flexor muscle, fascia and tendon of left little finger at wrist and hand level|Laceration of flexor muscle, fascia and tendon of left little finger at wrist and hand level +C2855129|T037|AB|S66.127A|ICD10CM|Lacerat flxr musc/fasc/tend l lit fngr at wrs/hnd lv, init|Lacerat flxr musc/fasc/tend l lit fngr at wrs/hnd lv, init +C2855130|T037|AB|S66.127D|ICD10CM|Lacerat flxr musc/fasc/tend l lit fngr at wrs/hnd lv, subs|Lacerat flxr musc/fasc/tend l lit fngr at wrs/hnd lv, subs +C2855131|T037|AB|S66.127S|ICD10CM|Lacerat flxr musc/fasc/tend l lit fngr at wrs/hnd lv, sqla|Lacerat flxr musc/fasc/tend l lit fngr at wrs/hnd lv, sqla +C2855133|T037|AB|S66.128|ICD10CM|Laceration of flexor musc/fasc/tend finger at wrs/hnd lv|Laceration of flexor musc/fasc/tend finger at wrs/hnd lv +C2855133|T037|HT|S66.128|ICD10CM|Laceration of flexor muscle, fascia and tendon of other finger at wrist and hand level|Laceration of flexor muscle, fascia and tendon of other finger at wrist and hand level +C2855134|T037|AB|S66.128A|ICD10CM|Lacerat flexor musc/fasc/tend finger at wrs/hnd lv, init|Lacerat flexor musc/fasc/tend finger at wrs/hnd lv, init +C2855135|T037|AB|S66.128D|ICD10CM|Lacerat flexor musc/fasc/tend finger at wrs/hnd lv, subs|Lacerat flexor musc/fasc/tend finger at wrs/hnd lv, subs +C2855136|T037|AB|S66.128S|ICD10CM|Lacerat flexor musc/fasc/tend finger at wrs/hnd lv, sequela|Lacerat flexor musc/fasc/tend finger at wrs/hnd lv, sequela +C2855136|T037|PT|S66.128S|ICD10CM|Laceration of flexor muscle, fascia and tendon of other finger at wrist and hand level, sequela|Laceration of flexor muscle, fascia and tendon of other finger at wrist and hand level, sequela +C2855099|T037|AB|S66.129|ICD10CM|Lacerat flexor musc/fasc/tend unsp finger at wrs/hnd lv|Lacerat flexor musc/fasc/tend unsp finger at wrs/hnd lv +C2855099|T037|HT|S66.129|ICD10CM|Laceration of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level|Laceration of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level +C2855138|T037|AB|S66.129A|ICD10CM|Lacerat flexor musc/fasc/tend unsp fngr at wrs/hnd lv, init|Lacerat flexor musc/fasc/tend unsp fngr at wrs/hnd lv, init +C2855139|T037|AB|S66.129D|ICD10CM|Lacerat flexor musc/fasc/tend unsp fngr at wrs/hnd lv, subs|Lacerat flexor musc/fasc/tend unsp fngr at wrs/hnd lv, subs +C2855140|T037|AB|S66.129S|ICD10CM|Lacerat flexor musc/fasc/tend unsp fngr at wrs/hnd lv, sqla|Lacerat flexor musc/fasc/tend unsp fngr at wrs/hnd lv, sqla +C2855141|T037|AB|S66.19|ICD10CM|Inj flexor musc/fasc/tend and unsp finger at wrs/hnd lv|Inj flexor musc/fasc/tend and unsp finger at wrs/hnd lv +C2855142|T037|AB|S66.190|ICD10CM|Inj flexor musc/fasc/tend right index finger at wrs/hnd lv|Inj flexor musc/fasc/tend right index finger at wrs/hnd lv +C2855142|T037|HT|S66.190|ICD10CM|Other injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level|Other injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level +C2855143|T037|AB|S66.190A|ICD10CM|Inj flexor musc/fasc/tend r idx fngr at wrs/hnd lv, init|Inj flexor musc/fasc/tend r idx fngr at wrs/hnd lv, init +C2855144|T037|AB|S66.190D|ICD10CM|Inj flexor musc/fasc/tend r idx fngr at wrs/hnd lv, subs|Inj flexor musc/fasc/tend r idx fngr at wrs/hnd lv, subs +C2855145|T037|AB|S66.190S|ICD10CM|Inj flexor musc/fasc/tend r idx fngr at wrs/hnd lv, sequela|Inj flexor musc/fasc/tend r idx fngr at wrs/hnd lv, sequela +C2855146|T037|AB|S66.191|ICD10CM|Inj flexor musc/fasc/tend left index finger at wrs/hnd lv|Inj flexor musc/fasc/tend left index finger at wrs/hnd lv +C2855146|T037|HT|S66.191|ICD10CM|Other injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level|Other injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level +C2855147|T037|AB|S66.191A|ICD10CM|Inj flexor musc/fasc/tend l idx fngr at wrs/hnd lv, init|Inj flexor musc/fasc/tend l idx fngr at wrs/hnd lv, init +C2855148|T037|AB|S66.191D|ICD10CM|Inj flexor musc/fasc/tend l idx fngr at wrs/hnd lv, subs|Inj flexor musc/fasc/tend l idx fngr at wrs/hnd lv, subs +C2855149|T037|AB|S66.191S|ICD10CM|Inj flexor musc/fasc/tend l idx fngr at wrs/hnd lv, sequela|Inj flexor musc/fasc/tend l idx fngr at wrs/hnd lv, sequela +C2855150|T037|AB|S66.192|ICD10CM|Inj flexor musc/fasc/tend right middle finger at wrs/hnd lv|Inj flexor musc/fasc/tend right middle finger at wrs/hnd lv +C2855150|T037|HT|S66.192|ICD10CM|Other injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level|Other injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level +C2855151|T037|AB|S66.192A|ICD10CM|Inj flexor musc/fasc/tend r mid finger at wrs/hnd lv, init|Inj flexor musc/fasc/tend r mid finger at wrs/hnd lv, init +C2855152|T037|AB|S66.192D|ICD10CM|Inj flexor musc/fasc/tend r mid finger at wrs/hnd lv, subs|Inj flexor musc/fasc/tend r mid finger at wrs/hnd lv, subs +C2855153|T037|AB|S66.192S|ICD10CM|Inj flexor musc/fasc/tend r mid finger at wrs/hnd lv, sqla|Inj flexor musc/fasc/tend r mid finger at wrs/hnd lv, sqla +C2855154|T037|AB|S66.193|ICD10CM|Inj flexor musc/fasc/tend left middle finger at wrs/hnd lv|Inj flexor musc/fasc/tend left middle finger at wrs/hnd lv +C2855154|T037|HT|S66.193|ICD10CM|Other injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level|Other injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level +C2855155|T037|AB|S66.193A|ICD10CM|Inj flexor musc/fasc/tend l mid finger at wrs/hnd lv, init|Inj flexor musc/fasc/tend l mid finger at wrs/hnd lv, init +C2855156|T037|AB|S66.193D|ICD10CM|Inj flexor musc/fasc/tend l mid finger at wrs/hnd lv, subs|Inj flexor musc/fasc/tend l mid finger at wrs/hnd lv, subs +C2855157|T037|AB|S66.193S|ICD10CM|Inj flexor musc/fasc/tend l mid finger at wrs/hnd lv, sqla|Inj flexor musc/fasc/tend l mid finger at wrs/hnd lv, sqla +C2855158|T037|AB|S66.194|ICD10CM|Inj flexor musc/fasc/tend right ring finger at wrs/hnd lv|Inj flexor musc/fasc/tend right ring finger at wrs/hnd lv +C2855158|T037|HT|S66.194|ICD10CM|Other injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level|Other injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level +C2855159|T037|AB|S66.194A|ICD10CM|Inj flexor musc/fasc/tend r rng fngr at wrs/hnd lv, init|Inj flexor musc/fasc/tend r rng fngr at wrs/hnd lv, init +C2855160|T037|AB|S66.194D|ICD10CM|Inj flexor musc/fasc/tend r rng fngr at wrs/hnd lv, subs|Inj flexor musc/fasc/tend r rng fngr at wrs/hnd lv, subs +C2855161|T037|AB|S66.194S|ICD10CM|Inj flexor musc/fasc/tend r rng fngr at wrs/hnd lv, sequela|Inj flexor musc/fasc/tend r rng fngr at wrs/hnd lv, sequela +C2855162|T037|AB|S66.195|ICD10CM|Inj flexor musc/fasc/tend left ring finger at wrs/hnd lv|Inj flexor musc/fasc/tend left ring finger at wrs/hnd lv +C2855162|T037|HT|S66.195|ICD10CM|Other injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level|Other injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level +C2855163|T037|AB|S66.195A|ICD10CM|Inj flexor musc/fasc/tend l rng fngr at wrs/hnd lv, init|Inj flexor musc/fasc/tend l rng fngr at wrs/hnd lv, init +C2855164|T037|AB|S66.195D|ICD10CM|Inj flexor musc/fasc/tend l rng fngr at wrs/hnd lv, subs|Inj flexor musc/fasc/tend l rng fngr at wrs/hnd lv, subs +C2855165|T037|AB|S66.195S|ICD10CM|Inj flexor musc/fasc/tend l rng fngr at wrs/hnd lv, sequela|Inj flexor musc/fasc/tend l rng fngr at wrs/hnd lv, sequela +C2855166|T037|AB|S66.196|ICD10CM|Inj flexor musc/fasc/tend right little finger at wrs/hnd lv|Inj flexor musc/fasc/tend right little finger at wrs/hnd lv +C2855166|T037|HT|S66.196|ICD10CM|Other injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level|Other injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level +C2855167|T037|AB|S66.196A|ICD10CM|Inj flexor musc/fasc/tend r little fngr at wrs/hnd lv, init|Inj flexor musc/fasc/tend r little fngr at wrs/hnd lv, init +C2855168|T037|AB|S66.196D|ICD10CM|Inj flexor musc/fasc/tend r little fngr at wrs/hnd lv, subs|Inj flexor musc/fasc/tend r little fngr at wrs/hnd lv, subs +C2855169|T037|AB|S66.196S|ICD10CM|Inj flexor musc/fasc/tend r little fngr at wrs/hnd lv, sqla|Inj flexor musc/fasc/tend r little fngr at wrs/hnd lv, sqla +C2855170|T037|AB|S66.197|ICD10CM|Inj flexor musc/fasc/tend left little finger at wrs/hnd lv|Inj flexor musc/fasc/tend left little finger at wrs/hnd lv +C2855170|T037|HT|S66.197|ICD10CM|Other injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level|Other injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level +C2855171|T037|AB|S66.197A|ICD10CM|Inj flexor musc/fasc/tend l little fngr at wrs/hnd lv, init|Inj flexor musc/fasc/tend l little fngr at wrs/hnd lv, init +C2855172|T037|AB|S66.197D|ICD10CM|Inj flexor musc/fasc/tend l little fngr at wrs/hnd lv, subs|Inj flexor musc/fasc/tend l little fngr at wrs/hnd lv, subs +C2855173|T037|AB|S66.197S|ICD10CM|Inj flexor musc/fasc/tend l little fngr at wrs/hnd lv, sqla|Inj flexor musc/fasc/tend l little fngr at wrs/hnd lv, sqla +C2855175|T037|AB|S66.198|ICD10CM|Inj flexor musc/fasc/tend finger at wrist and hand level|Inj flexor musc/fasc/tend finger at wrist and hand level +C2855175|T037|HT|S66.198|ICD10CM|Other injury of flexor muscle, fascia and tendon of other finger at wrist and hand level|Other injury of flexor muscle, fascia and tendon of other finger at wrist and hand level +C2855176|T037|AB|S66.198A|ICD10CM|Inj flexor musc/fasc/tend finger at wrs/hnd lv, init|Inj flexor musc/fasc/tend finger at wrs/hnd lv, init +C2855177|T037|AB|S66.198D|ICD10CM|Inj flexor musc/fasc/tend finger at wrs/hnd lv, subs|Inj flexor musc/fasc/tend finger at wrs/hnd lv, subs +C2855178|T037|AB|S66.198S|ICD10CM|Inj flexor musc/fasc/tend finger at wrs/hnd lv, sequela|Inj flexor musc/fasc/tend finger at wrs/hnd lv, sequela +C2855178|T037|PT|S66.198S|ICD10CM|Other injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, sequela|Other injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, sequela +C2855141|T037|AB|S66.199|ICD10CM|Inj flexor musc/fasc/tend unsp finger at wrs/hnd lv|Inj flexor musc/fasc/tend unsp finger at wrs/hnd lv +C2855141|T037|HT|S66.199|ICD10CM|Other injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level|Other injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level +C2855180|T037|AB|S66.199A|ICD10CM|Inj flexor musc/fasc/tend unsp finger at wrs/hnd lv, init|Inj flexor musc/fasc/tend unsp finger at wrs/hnd lv, init +C2855181|T037|AB|S66.199D|ICD10CM|Inj flexor musc/fasc/tend unsp finger at wrs/hnd lv, subs|Inj flexor musc/fasc/tend unsp finger at wrs/hnd lv, subs +C2855182|T037|AB|S66.199S|ICD10CM|Inj flexor musc/fasc/tend unsp finger at wrs/hnd lv, sequela|Inj flexor musc/fasc/tend unsp finger at wrs/hnd lv, sequela +C2855183|T037|AB|S66.2|ICD10CM|Injury of extensor musc/fasc/tend thumb at wrs/hnd lv|Injury of extensor musc/fasc/tend thumb at wrs/hnd lv +C0495917|T037|PT|S66.2|ICD10|Injury of extensor muscle and tendon of thumb at wrist and hand level|Injury of extensor muscle and tendon of thumb at wrist and hand level +C2855183|T037|HT|S66.2|ICD10CM|Injury of extensor muscle, fascia and tendon of thumb at wrist and hand level|Injury of extensor muscle, fascia and tendon of thumb at wrist and hand level +C2855184|T037|AB|S66.20|ICD10CM|Unsp injury of extensor musc/fasc/tend thumb at wrs/hnd lv|Unsp injury of extensor musc/fasc/tend thumb at wrs/hnd lv +C2855184|T037|HT|S66.20|ICD10CM|Unspecified injury of extensor muscle, fascia and tendon of thumb at wrist and hand level|Unspecified injury of extensor muscle, fascia and tendon of thumb at wrist and hand level +C2855185|T037|AB|S66.201|ICD10CM|Unsp injury of extensor musc/fasc/tend r thm at wrs/hnd lv|Unsp injury of extensor musc/fasc/tend r thm at wrs/hnd lv +C2855185|T037|HT|S66.201|ICD10CM|Unspecified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level|Unspecified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level +C2855186|T037|AB|S66.201A|ICD10CM|Unsp inj extensor musc/fasc/tend r thm at wrs/hnd lv, init|Unsp inj extensor musc/fasc/tend r thm at wrs/hnd lv, init +C2855187|T037|AB|S66.201D|ICD10CM|Unsp inj extensor musc/fasc/tend r thm at wrs/hnd lv, subs|Unsp inj extensor musc/fasc/tend r thm at wrs/hnd lv, subs +C2855188|T037|AB|S66.201S|ICD10CM|Unsp inj extn musc/fasc/tend r thm at wrs/hnd lv, sequela|Unsp inj extn musc/fasc/tend r thm at wrs/hnd lv, sequela +C2855189|T037|AB|S66.202|ICD10CM|Unsp injury of extensor musc/fasc/tend l thm at wrs/hnd lv|Unsp injury of extensor musc/fasc/tend l thm at wrs/hnd lv +C2855189|T037|HT|S66.202|ICD10CM|Unspecified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level|Unspecified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level +C2855190|T037|AB|S66.202A|ICD10CM|Unsp inj extensor musc/fasc/tend l thm at wrs/hnd lv, init|Unsp inj extensor musc/fasc/tend l thm at wrs/hnd lv, init +C2855191|T037|AB|S66.202D|ICD10CM|Unsp inj extensor musc/fasc/tend l thm at wrs/hnd lv, subs|Unsp inj extensor musc/fasc/tend l thm at wrs/hnd lv, subs +C2855192|T037|AB|S66.202S|ICD10CM|Unsp inj extn musc/fasc/tend l thm at wrs/hnd lv, sequela|Unsp inj extn musc/fasc/tend l thm at wrs/hnd lv, sequela +C2855193|T037|AB|S66.209|ICD10CM|Unsp injury of extensor musc/fasc/tend thmb at wrs/hnd lv|Unsp injury of extensor musc/fasc/tend thmb at wrs/hnd lv +C2855194|T037|AB|S66.209A|ICD10CM|Unsp inj extensor musc/fasc/tend thmb at wrs/hnd lv, init|Unsp inj extensor musc/fasc/tend thmb at wrs/hnd lv, init +C2855195|T037|AB|S66.209D|ICD10CM|Unsp inj extensor musc/fasc/tend thmb at wrs/hnd lv, subs|Unsp inj extensor musc/fasc/tend thmb at wrs/hnd lv, subs +C2855196|T037|AB|S66.209S|ICD10CM|Unsp inj extensor musc/fasc/tend thmb at wrs/hnd lv, sequela|Unsp inj extensor musc/fasc/tend thmb at wrs/hnd lv, sequela +C2855197|T037|AB|S66.21|ICD10CM|Strain of extensor musc/fasc/tend thumb at wrs/hnd lv|Strain of extensor musc/fasc/tend thumb at wrs/hnd lv +C2855197|T037|HT|S66.21|ICD10CM|Strain of extensor muscle, fascia and tendon of thumb at wrist and hand level|Strain of extensor muscle, fascia and tendon of thumb at wrist and hand level +C2855198|T037|AB|S66.211|ICD10CM|Strain of extensor musc/fasc/tend right thumb at wrs/hnd lv|Strain of extensor musc/fasc/tend right thumb at wrs/hnd lv +C2855198|T037|HT|S66.211|ICD10CM|Strain of extensor muscle, fascia and tendon of right thumb at wrist and hand level|Strain of extensor muscle, fascia and tendon of right thumb at wrist and hand level +C2855199|T037|AB|S66.211A|ICD10CM|Strain of extensor musc/fasc/tend r thm at wrs/hnd lv, init|Strain of extensor musc/fasc/tend r thm at wrs/hnd lv, init +C2855200|T037|AB|S66.211D|ICD10CM|Strain of extensor musc/fasc/tend r thm at wrs/hnd lv, subs|Strain of extensor musc/fasc/tend r thm at wrs/hnd lv, subs +C2855201|T037|AB|S66.211S|ICD10CM|Strain extensor musc/fasc/tend r thm at wrs/hnd lv, sequela|Strain extensor musc/fasc/tend r thm at wrs/hnd lv, sequela +C2855201|T037|PT|S66.211S|ICD10CM|Strain of extensor muscle, fascia and tendon of right thumb at wrist and hand level, sequela|Strain of extensor muscle, fascia and tendon of right thumb at wrist and hand level, sequela +C2855202|T037|AB|S66.212|ICD10CM|Strain of extensor musc/fasc/tend left thumb at wrs/hnd lv|Strain of extensor musc/fasc/tend left thumb at wrs/hnd lv +C2855202|T037|HT|S66.212|ICD10CM|Strain of extensor muscle, fascia and tendon of left thumb at wrist and hand level|Strain of extensor muscle, fascia and tendon of left thumb at wrist and hand level +C2855203|T037|AB|S66.212A|ICD10CM|Strain of extensor musc/fasc/tend l thm at wrs/hnd lv, init|Strain of extensor musc/fasc/tend l thm at wrs/hnd lv, init +C2855204|T037|AB|S66.212D|ICD10CM|Strain of extensor musc/fasc/tend l thm at wrs/hnd lv, subs|Strain of extensor musc/fasc/tend l thm at wrs/hnd lv, subs +C2855205|T037|AB|S66.212S|ICD10CM|Strain extensor musc/fasc/tend l thm at wrs/hnd lv, sequela|Strain extensor musc/fasc/tend l thm at wrs/hnd lv, sequela +C2855205|T037|PT|S66.212S|ICD10CM|Strain of extensor muscle, fascia and tendon of left thumb at wrist and hand level, sequela|Strain of extensor muscle, fascia and tendon of left thumb at wrist and hand level, sequela +C2855206|T037|AB|S66.219|ICD10CM|Strain of extensor musc/fasc/tend thmb at wrs/hnd lv|Strain of extensor musc/fasc/tend thmb at wrs/hnd lv +C2855206|T037|HT|S66.219|ICD10CM|Strain of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level|Strain of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level +C2855207|T037|AB|S66.219A|ICD10CM|Strain of extensor musc/fasc/tend thmb at wrs/hnd lv, init|Strain of extensor musc/fasc/tend thmb at wrs/hnd lv, init +C2855208|T037|AB|S66.219D|ICD10CM|Strain of extensor musc/fasc/tend thmb at wrs/hnd lv, subs|Strain of extensor musc/fasc/tend thmb at wrs/hnd lv, subs +C2855209|T037|AB|S66.219S|ICD10CM|Strain extensor musc/fasc/tend thmb at wrs/hnd lv, sequela|Strain extensor musc/fasc/tend thmb at wrs/hnd lv, sequela +C2855209|T037|PT|S66.219S|ICD10CM|Strain of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela|Strain of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela +C2855210|T037|AB|S66.22|ICD10CM|Laceration of extensor musc/fasc/tend thumb at wrs/hnd lv|Laceration of extensor musc/fasc/tend thumb at wrs/hnd lv +C2855210|T037|HT|S66.22|ICD10CM|Laceration of extensor muscle, fascia and tendon of thumb at wrist and hand level|Laceration of extensor muscle, fascia and tendon of thumb at wrist and hand level +C2855211|T037|AB|S66.221|ICD10CM|Lacerat extensor musc/fasc/tend right thumb at wrs/hnd lv|Lacerat extensor musc/fasc/tend right thumb at wrs/hnd lv +C2855211|T037|HT|S66.221|ICD10CM|Laceration of extensor muscle, fascia and tendon of right thumb at wrist and hand level|Laceration of extensor muscle, fascia and tendon of right thumb at wrist and hand level +C2855212|T037|AB|S66.221A|ICD10CM|Lacerat extensor musc/fasc/tend r thm at wrs/hnd lv, init|Lacerat extensor musc/fasc/tend r thm at wrs/hnd lv, init +C2855213|T037|AB|S66.221D|ICD10CM|Lacerat extensor musc/fasc/tend r thm at wrs/hnd lv, subs|Lacerat extensor musc/fasc/tend r thm at wrs/hnd lv, subs +C2855214|T037|AB|S66.221S|ICD10CM|Lacerat extensor musc/fasc/tend r thm at wrs/hnd lv, sequela|Lacerat extensor musc/fasc/tend r thm at wrs/hnd lv, sequela +C2855214|T037|PT|S66.221S|ICD10CM|Laceration of extensor muscle, fascia and tendon of right thumb at wrist and hand level, sequela|Laceration of extensor muscle, fascia and tendon of right thumb at wrist and hand level, sequela +C2855215|T037|AB|S66.222|ICD10CM|Lacerat extensor musc/fasc/tend left thumb at wrs/hnd lv|Lacerat extensor musc/fasc/tend left thumb at wrs/hnd lv +C2855215|T037|HT|S66.222|ICD10CM|Laceration of extensor muscle, fascia and tendon of left thumb at wrist and hand level|Laceration of extensor muscle, fascia and tendon of left thumb at wrist and hand level +C2855216|T037|AB|S66.222A|ICD10CM|Lacerat extensor musc/fasc/tend l thm at wrs/hnd lv, init|Lacerat extensor musc/fasc/tend l thm at wrs/hnd lv, init +C2855217|T037|AB|S66.222D|ICD10CM|Lacerat extensor musc/fasc/tend l thm at wrs/hnd lv, subs|Lacerat extensor musc/fasc/tend l thm at wrs/hnd lv, subs +C2855218|T037|AB|S66.222S|ICD10CM|Lacerat extensor musc/fasc/tend l thm at wrs/hnd lv, sequela|Lacerat extensor musc/fasc/tend l thm at wrs/hnd lv, sequela +C2855218|T037|PT|S66.222S|ICD10CM|Laceration of extensor muscle, fascia and tendon of left thumb at wrist and hand level, sequela|Laceration of extensor muscle, fascia and tendon of left thumb at wrist and hand level, sequela +C2855219|T037|AB|S66.229|ICD10CM|Laceration of extensor musc/fasc/tend thmb at wrs/hnd lv|Laceration of extensor musc/fasc/tend thmb at wrs/hnd lv +C2855219|T037|HT|S66.229|ICD10CM|Laceration of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level|Laceration of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level +C2855220|T037|AB|S66.229A|ICD10CM|Lacerat extensor musc/fasc/tend thmb at wrs/hnd lv, init|Lacerat extensor musc/fasc/tend thmb at wrs/hnd lv, init +C2855221|T037|AB|S66.229D|ICD10CM|Lacerat extensor musc/fasc/tend thmb at wrs/hnd lv, subs|Lacerat extensor musc/fasc/tend thmb at wrs/hnd lv, subs +C2855222|T037|AB|S66.229S|ICD10CM|Lacerat extensor musc/fasc/tend thmb at wrs/hnd lv, sequela|Lacerat extensor musc/fasc/tend thmb at wrs/hnd lv, sequela +C2855223|T037|AB|S66.29|ICD10CM|Inj extensor musc/fasc/tend thumb at wrist and hand level|Inj extensor musc/fasc/tend thumb at wrist and hand level +C2855223|T037|HT|S66.29|ICD10CM|Other specified injury of extensor muscle, fascia and tendon of thumb at wrist and hand level|Other specified injury of extensor muscle, fascia and tendon of thumb at wrist and hand level +C2855224|T037|AB|S66.291|ICD10CM|Inj extensor musc/fasc/tend right thumb at wrs/hnd lv|Inj extensor musc/fasc/tend right thumb at wrs/hnd lv +C2855224|T037|HT|S66.291|ICD10CM|Other specified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level|Other specified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level +C2855225|T037|AB|S66.291A|ICD10CM|Inj extensor musc/fasc/tend right thumb at wrs/hnd lv, init|Inj extensor musc/fasc/tend right thumb at wrs/hnd lv, init +C2855226|T037|AB|S66.291D|ICD10CM|Inj extensor musc/fasc/tend right thumb at wrs/hnd lv, subs|Inj extensor musc/fasc/tend right thumb at wrs/hnd lv, subs +C2855227|T037|AB|S66.291S|ICD10CM|Inj extensor musc/fasc/tend r thm at wrs/hnd lv, sequela|Inj extensor musc/fasc/tend r thm at wrs/hnd lv, sequela +C2855228|T037|AB|S66.292|ICD10CM|Inj extensor musc/fasc/tend left thumb at wrs/hnd lv|Inj extensor musc/fasc/tend left thumb at wrs/hnd lv +C2855228|T037|HT|S66.292|ICD10CM|Other specified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level|Other specified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level +C2855229|T037|AB|S66.292A|ICD10CM|Inj extensor musc/fasc/tend left thumb at wrs/hnd lv, init|Inj extensor musc/fasc/tend left thumb at wrs/hnd lv, init +C2855230|T037|AB|S66.292D|ICD10CM|Inj extensor musc/fasc/tend left thumb at wrs/hnd lv, subs|Inj extensor musc/fasc/tend left thumb at wrs/hnd lv, subs +C2855231|T037|AB|S66.292S|ICD10CM|Inj extensor musc/fasc/tend l thm at wrs/hnd lv, sequela|Inj extensor musc/fasc/tend l thm at wrs/hnd lv, sequela +C2855232|T037|AB|S66.299|ICD10CM|Inj extensor musc/fasc/tend thmb at wrist and hand level|Inj extensor musc/fasc/tend thmb at wrist and hand level +C2855233|T037|AB|S66.299A|ICD10CM|Inj extensor musc/fasc/tend thmb at wrs/hnd lv, init|Inj extensor musc/fasc/tend thmb at wrs/hnd lv, init +C2855234|T037|AB|S66.299D|ICD10CM|Inj extensor musc/fasc/tend thmb at wrs/hnd lv, subs|Inj extensor musc/fasc/tend thmb at wrs/hnd lv, subs +C2855235|T037|AB|S66.299S|ICD10CM|Inj extensor musc/fasc/tend thmb at wrs/hnd lv, sequela|Inj extensor musc/fasc/tend thmb at wrs/hnd lv, sequela +C2855236|T037|AB|S66.3|ICD10CM|Inj extensor musc/fasc/tend and unsp finger at wrs/hnd lv|Inj extensor musc/fasc/tend and unsp finger at wrs/hnd lv +C0478313|T037|PT|S66.3|ICD10|Injury of extensor muscle and tendon of other finger at wrist and hand level|Injury of extensor muscle and tendon of other finger at wrist and hand level +C2855236|T037|HT|S66.3|ICD10CM|Injury of extensor muscle, fascia and tendon of other and unspecified finger at wrist and hand level|Injury of extensor muscle, fascia and tendon of other and unspecified finger at wrist and hand level +C2855237|T037|AB|S66.30|ICD10CM|Unsp inj extn musc/fasc/tend and unsp finger at wrs/hnd lv|Unsp inj extn musc/fasc/tend and unsp finger at wrs/hnd lv +C2855238|T037|AB|S66.300|ICD10CM|Unsp inj extensor musc/fasc/tend r idx fngr at wrs/hnd lv|Unsp inj extensor musc/fasc/tend r idx fngr at wrs/hnd lv +C2855239|T037|AB|S66.300A|ICD10CM|Unsp inj extn musc/fasc/tend r idx fngr at wrs/hnd lv, init|Unsp inj extn musc/fasc/tend r idx fngr at wrs/hnd lv, init +C2855240|T037|AB|S66.300D|ICD10CM|Unsp inj extn musc/fasc/tend r idx fngr at wrs/hnd lv, subs|Unsp inj extn musc/fasc/tend r idx fngr at wrs/hnd lv, subs +C2855241|T037|AB|S66.300S|ICD10CM|Unsp inj extn musc/fasc/tend r idx fngr at wrs/hnd lv, sqla|Unsp inj extn musc/fasc/tend r idx fngr at wrs/hnd lv, sqla +C2855242|T037|AB|S66.301|ICD10CM|Unsp inj extensor musc/fasc/tend l idx fngr at wrs/hnd lv|Unsp inj extensor musc/fasc/tend l idx fngr at wrs/hnd lv +C2855243|T037|AB|S66.301A|ICD10CM|Unsp inj extn musc/fasc/tend l idx fngr at wrs/hnd lv, init|Unsp inj extn musc/fasc/tend l idx fngr at wrs/hnd lv, init +C2855244|T037|AB|S66.301D|ICD10CM|Unsp inj extn musc/fasc/tend l idx fngr at wrs/hnd lv, subs|Unsp inj extn musc/fasc/tend l idx fngr at wrs/hnd lv, subs +C2855245|T037|AB|S66.301S|ICD10CM|Unsp inj extn musc/fasc/tend l idx fngr at wrs/hnd lv, sqla|Unsp inj extn musc/fasc/tend l idx fngr at wrs/hnd lv, sqla +C2855246|T037|AB|S66.302|ICD10CM|Unsp inj extensor musc/fasc/tend r mid finger at wrs/hnd lv|Unsp inj extensor musc/fasc/tend r mid finger at wrs/hnd lv +C2855247|T037|AB|S66.302A|ICD10CM|Unsp inj extn musc/fasc/tend r mid fngr at wrs/hnd lv, init|Unsp inj extn musc/fasc/tend r mid fngr at wrs/hnd lv, init +C2855248|T037|AB|S66.302D|ICD10CM|Unsp inj extn musc/fasc/tend r mid fngr at wrs/hnd lv, subs|Unsp inj extn musc/fasc/tend r mid fngr at wrs/hnd lv, subs +C2855249|T037|AB|S66.302S|ICD10CM|Unsp inj extn musc/fasc/tend r mid fngr at wrs/hnd lv, sqla|Unsp inj extn musc/fasc/tend r mid fngr at wrs/hnd lv, sqla +C2855250|T037|AB|S66.303|ICD10CM|Unsp inj extensor musc/fasc/tend l mid finger at wrs/hnd lv|Unsp inj extensor musc/fasc/tend l mid finger at wrs/hnd lv +C2855251|T037|AB|S66.303A|ICD10CM|Unsp inj extn musc/fasc/tend l mid fngr at wrs/hnd lv, init|Unsp inj extn musc/fasc/tend l mid fngr at wrs/hnd lv, init +C2855252|T037|AB|S66.303D|ICD10CM|Unsp inj extn musc/fasc/tend l mid fngr at wrs/hnd lv, subs|Unsp inj extn musc/fasc/tend l mid fngr at wrs/hnd lv, subs +C2855253|T037|AB|S66.303S|ICD10CM|Unsp inj extn musc/fasc/tend l mid fngr at wrs/hnd lv, sqla|Unsp inj extn musc/fasc/tend l mid fngr at wrs/hnd lv, sqla +C2855254|T037|AB|S66.304|ICD10CM|Unsp inj extensor musc/fasc/tend r rng fngr at wrs/hnd lv|Unsp inj extensor musc/fasc/tend r rng fngr at wrs/hnd lv +C2855255|T037|AB|S66.304A|ICD10CM|Unsp inj extn musc/fasc/tend r rng fngr at wrs/hnd lv, init|Unsp inj extn musc/fasc/tend r rng fngr at wrs/hnd lv, init +C2855256|T037|AB|S66.304D|ICD10CM|Unsp inj extn musc/fasc/tend r rng fngr at wrs/hnd lv, subs|Unsp inj extn musc/fasc/tend r rng fngr at wrs/hnd lv, subs +C2855257|T037|AB|S66.304S|ICD10CM|Unsp inj extn musc/fasc/tend r rng fngr at wrs/hnd lv, sqla|Unsp inj extn musc/fasc/tend r rng fngr at wrs/hnd lv, sqla +C2855258|T037|AB|S66.305|ICD10CM|Unsp inj extensor musc/fasc/tend l rng fngr at wrs/hnd lv|Unsp inj extensor musc/fasc/tend l rng fngr at wrs/hnd lv +C2855258|T037|HT|S66.305|ICD10CM|Unspecified injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level|Unspecified injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level +C2855259|T037|AB|S66.305A|ICD10CM|Unsp inj extn musc/fasc/tend l rng fngr at wrs/hnd lv, init|Unsp inj extn musc/fasc/tend l rng fngr at wrs/hnd lv, init +C2855260|T037|AB|S66.305D|ICD10CM|Unsp inj extn musc/fasc/tend l rng fngr at wrs/hnd lv, subs|Unsp inj extn musc/fasc/tend l rng fngr at wrs/hnd lv, subs +C2855261|T037|AB|S66.305S|ICD10CM|Unsp inj extn musc/fasc/tend l rng fngr at wrs/hnd lv, sqla|Unsp inj extn musc/fasc/tend l rng fngr at wrs/hnd lv, sqla +C2855262|T037|AB|S66.306|ICD10CM|Unsp inj extn musc/fasc/tend r little finger at wrs/hnd lv|Unsp inj extn musc/fasc/tend r little finger at wrs/hnd lv +C2855263|T037|AB|S66.306A|ICD10CM|Unsp inj extn musc/fasc/tend r lit fngr at wrs/hnd lv, init|Unsp inj extn musc/fasc/tend r lit fngr at wrs/hnd lv, init +C2855264|T037|AB|S66.306D|ICD10CM|Unsp inj extn musc/fasc/tend r lit fngr at wrs/hnd lv, subs|Unsp inj extn musc/fasc/tend r lit fngr at wrs/hnd lv, subs +C2855265|T037|AB|S66.306S|ICD10CM|Unsp inj extn musc/fasc/tend r lit fngr at wrs/hnd lv, sqla|Unsp inj extn musc/fasc/tend r lit fngr at wrs/hnd lv, sqla +C2855266|T037|AB|S66.307|ICD10CM|Unsp inj extn musc/fasc/tend l little finger at wrs/hnd lv|Unsp inj extn musc/fasc/tend l little finger at wrs/hnd lv +C2855267|T037|AB|S66.307A|ICD10CM|Unsp inj extn musc/fasc/tend l lit fngr at wrs/hnd lv, init|Unsp inj extn musc/fasc/tend l lit fngr at wrs/hnd lv, init +C2855268|T037|AB|S66.307D|ICD10CM|Unsp inj extn musc/fasc/tend l lit fngr at wrs/hnd lv, subs|Unsp inj extn musc/fasc/tend l lit fngr at wrs/hnd lv, subs +C2855269|T037|AB|S66.307S|ICD10CM|Unsp inj extn musc/fasc/tend l lit fngr at wrs/hnd lv, sqla|Unsp inj extn musc/fasc/tend l lit fngr at wrs/hnd lv, sqla +C2855271|T037|AB|S66.308|ICD10CM|Unsp injury of extensor musc/fasc/tend finger at wrs/hnd lv|Unsp injury of extensor musc/fasc/tend finger at wrs/hnd lv +C2855271|T037|HT|S66.308|ICD10CM|Unspecified injury of extensor muscle, fascia and tendon of other finger at wrist and hand level|Unspecified injury of extensor muscle, fascia and tendon of other finger at wrist and hand level +C2855272|T037|AB|S66.308A|ICD10CM|Unsp inj extensor musc/fasc/tend finger at wrs/hnd lv, init|Unsp inj extensor musc/fasc/tend finger at wrs/hnd lv, init +C2855273|T037|AB|S66.308D|ICD10CM|Unsp inj extensor musc/fasc/tend finger at wrs/hnd lv, subs|Unsp inj extensor musc/fasc/tend finger at wrs/hnd lv, subs +C2855274|T037|AB|S66.308S|ICD10CM|Unsp inj extn musc/fasc/tend finger at wrs/hnd lv, sequela|Unsp inj extn musc/fasc/tend finger at wrs/hnd lv, sequela +C2855275|T037|AB|S66.309|ICD10CM|Unsp inj extensor musc/fasc/tend unsp finger at wrs/hnd lv|Unsp inj extensor musc/fasc/tend unsp finger at wrs/hnd lv +C2855276|T037|AB|S66.309A|ICD10CM|Unsp inj extn musc/fasc/tend unsp finger at wrs/hnd lv, init|Unsp inj extn musc/fasc/tend unsp finger at wrs/hnd lv, init +C2855277|T037|AB|S66.309D|ICD10CM|Unsp inj extn musc/fasc/tend unsp finger at wrs/hnd lv, subs|Unsp inj extn musc/fasc/tend unsp finger at wrs/hnd lv, subs +C2855278|T037|AB|S66.309S|ICD10CM|Unsp inj extn musc/fasc/tend unsp finger at wrs/hnd lv, sqla|Unsp inj extn musc/fasc/tend unsp finger at wrs/hnd lv, sqla +C2855279|T037|AB|S66.31|ICD10CM|Strain extensor musc/fasc/tend and unsp finger at wrs/hnd lv|Strain extensor musc/fasc/tend and unsp finger at wrs/hnd lv +C2855279|T037|HT|S66.31|ICD10CM|Strain of extensor muscle, fascia and tendon of other and unspecified finger at wrist and hand level|Strain of extensor muscle, fascia and tendon of other and unspecified finger at wrist and hand level +C2855280|T037|AB|S66.310|ICD10CM|Strain of extensor musc/fasc/tend r idx fngr at wrs/hnd lv|Strain of extensor musc/fasc/tend r idx fngr at wrs/hnd lv +C2855280|T037|HT|S66.310|ICD10CM|Strain of extensor muscle, fascia and tendon of right index finger at wrist and hand level|Strain of extensor muscle, fascia and tendon of right index finger at wrist and hand level +C2855281|T037|AB|S66.310A|ICD10CM|Strain extn musc/fasc/tend r idx fngr at wrs/hnd lv, init|Strain extn musc/fasc/tend r idx fngr at wrs/hnd lv, init +C2855282|T037|AB|S66.310D|ICD10CM|Strain extn musc/fasc/tend r idx fngr at wrs/hnd lv, subs|Strain extn musc/fasc/tend r idx fngr at wrs/hnd lv, subs +C2855283|T037|AB|S66.310S|ICD10CM|Strain extn musc/fasc/tend r idx fngr at wrs/hnd lv, sequela|Strain extn musc/fasc/tend r idx fngr at wrs/hnd lv, sequela +C2855283|T037|PT|S66.310S|ICD10CM|Strain of extensor muscle, fascia and tendon of right index finger at wrist and hand level, sequela|Strain of extensor muscle, fascia and tendon of right index finger at wrist and hand level, sequela +C2855284|T037|AB|S66.311|ICD10CM|Strain of extensor musc/fasc/tend l idx fngr at wrs/hnd lv|Strain of extensor musc/fasc/tend l idx fngr at wrs/hnd lv +C2855284|T037|HT|S66.311|ICD10CM|Strain of extensor muscle, fascia and tendon of left index finger at wrist and hand level|Strain of extensor muscle, fascia and tendon of left index finger at wrist and hand level +C2855285|T037|AB|S66.311A|ICD10CM|Strain extn musc/fasc/tend l idx fngr at wrs/hnd lv, init|Strain extn musc/fasc/tend l idx fngr at wrs/hnd lv, init +C2855286|T037|AB|S66.311D|ICD10CM|Strain extn musc/fasc/tend l idx fngr at wrs/hnd lv, subs|Strain extn musc/fasc/tend l idx fngr at wrs/hnd lv, subs +C2855287|T037|AB|S66.311S|ICD10CM|Strain extn musc/fasc/tend l idx fngr at wrs/hnd lv, sequela|Strain extn musc/fasc/tend l idx fngr at wrs/hnd lv, sequela +C2855287|T037|PT|S66.311S|ICD10CM|Strain of extensor muscle, fascia and tendon of left index finger at wrist and hand level, sequela|Strain of extensor muscle, fascia and tendon of left index finger at wrist and hand level, sequela +C2855288|T037|AB|S66.312|ICD10CM|Strain of extensor musc/fasc/tend r mid finger at wrs/hnd lv|Strain of extensor musc/fasc/tend r mid finger at wrs/hnd lv +C2855288|T037|HT|S66.312|ICD10CM|Strain of extensor muscle, fascia and tendon of right middle finger at wrist and hand level|Strain of extensor muscle, fascia and tendon of right middle finger at wrist and hand level +C2855289|T037|AB|S66.312A|ICD10CM|Strain extn musc/fasc/tend r mid finger at wrs/hnd lv, init|Strain extn musc/fasc/tend r mid finger at wrs/hnd lv, init +C2855290|T037|AB|S66.312D|ICD10CM|Strain extn musc/fasc/tend r mid finger at wrs/hnd lv, subs|Strain extn musc/fasc/tend r mid finger at wrs/hnd lv, subs +C2855291|T037|AB|S66.312S|ICD10CM|Strain extn musc/fasc/tend r mid finger at wrs/hnd lv, sqla|Strain extn musc/fasc/tend r mid finger at wrs/hnd lv, sqla +C2855291|T037|PT|S66.312S|ICD10CM|Strain of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela|Strain of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela +C2855292|T037|AB|S66.313|ICD10CM|Strain of extensor musc/fasc/tend l mid finger at wrs/hnd lv|Strain of extensor musc/fasc/tend l mid finger at wrs/hnd lv +C2855292|T037|HT|S66.313|ICD10CM|Strain of extensor muscle, fascia and tendon of left middle finger at wrist and hand level|Strain of extensor muscle, fascia and tendon of left middle finger at wrist and hand level +C2855293|T037|AB|S66.313A|ICD10CM|Strain extn musc/fasc/tend l mid finger at wrs/hnd lv, init|Strain extn musc/fasc/tend l mid finger at wrs/hnd lv, init +C2855294|T037|AB|S66.313D|ICD10CM|Strain extn musc/fasc/tend l mid finger at wrs/hnd lv, subs|Strain extn musc/fasc/tend l mid finger at wrs/hnd lv, subs +C2855295|T037|AB|S66.313S|ICD10CM|Strain extn musc/fasc/tend l mid finger at wrs/hnd lv, sqla|Strain extn musc/fasc/tend l mid finger at wrs/hnd lv, sqla +C2855295|T037|PT|S66.313S|ICD10CM|Strain of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela|Strain of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela +C2855296|T037|AB|S66.314|ICD10CM|Strain of extensor musc/fasc/tend r rng fngr at wrs/hnd lv|Strain of extensor musc/fasc/tend r rng fngr at wrs/hnd lv +C2855296|T037|HT|S66.314|ICD10CM|Strain of extensor muscle, fascia and tendon of right ring finger at wrist and hand level|Strain of extensor muscle, fascia and tendon of right ring finger at wrist and hand level +C2855297|T037|AB|S66.314A|ICD10CM|Strain extn musc/fasc/tend r rng fngr at wrs/hnd lv, init|Strain extn musc/fasc/tend r rng fngr at wrs/hnd lv, init +C2855298|T037|AB|S66.314D|ICD10CM|Strain extn musc/fasc/tend r rng fngr at wrs/hnd lv, subs|Strain extn musc/fasc/tend r rng fngr at wrs/hnd lv, subs +C2855299|T037|AB|S66.314S|ICD10CM|Strain extn musc/fasc/tend r rng fngr at wrs/hnd lv, sequela|Strain extn musc/fasc/tend r rng fngr at wrs/hnd lv, sequela +C2855299|T037|PT|S66.314S|ICD10CM|Strain of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela|Strain of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela +C2855300|T037|AB|S66.315|ICD10CM|Strain of extensor musc/fasc/tend l rng fngr at wrs/hnd lv|Strain of extensor musc/fasc/tend l rng fngr at wrs/hnd lv +C2855300|T037|HT|S66.315|ICD10CM|Strain of extensor muscle, fascia and tendon of left ring finger at wrist and hand level|Strain of extensor muscle, fascia and tendon of left ring finger at wrist and hand level +C2855301|T037|AB|S66.315A|ICD10CM|Strain extn musc/fasc/tend l rng fngr at wrs/hnd lv, init|Strain extn musc/fasc/tend l rng fngr at wrs/hnd lv, init +C2855302|T037|AB|S66.315D|ICD10CM|Strain extn musc/fasc/tend l rng fngr at wrs/hnd lv, subs|Strain extn musc/fasc/tend l rng fngr at wrs/hnd lv, subs +C2855303|T037|AB|S66.315S|ICD10CM|Strain extn musc/fasc/tend l rng fngr at wrs/hnd lv, sequela|Strain extn musc/fasc/tend l rng fngr at wrs/hnd lv, sequela +C2855303|T037|PT|S66.315S|ICD10CM|Strain of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela|Strain of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela +C2855304|T037|AB|S66.316|ICD10CM|Strain extensor musc/fasc/tend r little finger at wrs/hnd lv|Strain extensor musc/fasc/tend r little finger at wrs/hnd lv +C2855304|T037|HT|S66.316|ICD10CM|Strain of extensor muscle, fascia and tendon of right little finger at wrist and hand level|Strain of extensor muscle, fascia and tendon of right little finger at wrist and hand level +C2855305|T037|AB|S66.316A|ICD10CM|Strain extn musc/fasc/tend r little fngr at wrs/hnd lv, init|Strain extn musc/fasc/tend r little fngr at wrs/hnd lv, init +C2855306|T037|AB|S66.316D|ICD10CM|Strain extn musc/fasc/tend r little fngr at wrs/hnd lv, subs|Strain extn musc/fasc/tend r little fngr at wrs/hnd lv, subs +C2855307|T037|AB|S66.316S|ICD10CM|Strain extn musc/fasc/tend r little fngr at wrs/hnd lv, sqla|Strain extn musc/fasc/tend r little fngr at wrs/hnd lv, sqla +C2855307|T037|PT|S66.316S|ICD10CM|Strain of extensor muscle, fascia and tendon of right little finger at wrist and hand level, sequela|Strain of extensor muscle, fascia and tendon of right little finger at wrist and hand level, sequela +C2855308|T037|AB|S66.317|ICD10CM|Strain extensor musc/fasc/tend l little finger at wrs/hnd lv|Strain extensor musc/fasc/tend l little finger at wrs/hnd lv +C2855308|T037|HT|S66.317|ICD10CM|Strain of extensor muscle, fascia and tendon of left little finger at wrist and hand level|Strain of extensor muscle, fascia and tendon of left little finger at wrist and hand level +C2855309|T037|AB|S66.317A|ICD10CM|Strain extn musc/fasc/tend l little fngr at wrs/hnd lv, init|Strain extn musc/fasc/tend l little fngr at wrs/hnd lv, init +C2855310|T037|AB|S66.317D|ICD10CM|Strain extn musc/fasc/tend l little fngr at wrs/hnd lv, subs|Strain extn musc/fasc/tend l little fngr at wrs/hnd lv, subs +C2855311|T037|AB|S66.317S|ICD10CM|Strain extn musc/fasc/tend l little fngr at wrs/hnd lv, sqla|Strain extn musc/fasc/tend l little fngr at wrs/hnd lv, sqla +C2855311|T037|PT|S66.317S|ICD10CM|Strain of extensor muscle, fascia and tendon of left little finger at wrist and hand level, sequela|Strain of extensor muscle, fascia and tendon of left little finger at wrist and hand level, sequela +C2855313|T037|AB|S66.318|ICD10CM|Strain of extensor musc/fasc/tend finger at wrs/hnd lv|Strain of extensor musc/fasc/tend finger at wrs/hnd lv +C2855313|T037|HT|S66.318|ICD10CM|Strain of extensor muscle, fascia and tendon of other finger at wrist and hand level|Strain of extensor muscle, fascia and tendon of other finger at wrist and hand level +C2855314|T037|AB|S66.318A|ICD10CM|Strain of extensor musc/fasc/tend finger at wrs/hnd lv, init|Strain of extensor musc/fasc/tend finger at wrs/hnd lv, init +C2855315|T037|AB|S66.318D|ICD10CM|Strain of extensor musc/fasc/tend finger at wrs/hnd lv, subs|Strain of extensor musc/fasc/tend finger at wrs/hnd lv, subs +C2855316|T037|AB|S66.318S|ICD10CM|Strain extensor musc/fasc/tend finger at wrs/hnd lv, sequela|Strain extensor musc/fasc/tend finger at wrs/hnd lv, sequela +C2855316|T037|PT|S66.318S|ICD10CM|Strain of extensor muscle, fascia and tendon of other finger at wrist and hand level, sequela|Strain of extensor muscle, fascia and tendon of other finger at wrist and hand level, sequela +C2855279|T037|AB|S66.319|ICD10CM|Strain of extensor musc/fasc/tend unsp finger at wrs/hnd lv|Strain of extensor musc/fasc/tend unsp finger at wrs/hnd lv +C2855279|T037|HT|S66.319|ICD10CM|Strain of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level|Strain of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level +C2855318|T037|AB|S66.319A|ICD10CM|Strain extn musc/fasc/tend unsp finger at wrs/hnd lv, init|Strain extn musc/fasc/tend unsp finger at wrs/hnd lv, init +C2855319|T037|AB|S66.319D|ICD10CM|Strain extn musc/fasc/tend unsp finger at wrs/hnd lv, subs|Strain extn musc/fasc/tend unsp finger at wrs/hnd lv, subs +C2855320|T037|AB|S66.319S|ICD10CM|Strain extn musc/fasc/tend unsp finger at wrs/hnd lv, sqla|Strain extn musc/fasc/tend unsp finger at wrs/hnd lv, sqla +C2855320|T037|PT|S66.319S|ICD10CM|Strain of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela|Strain of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela +C2855321|T037|AB|S66.32|ICD10CM|Lacerat extn musc/fasc/tend and unsp finger at wrs/hnd lv|Lacerat extn musc/fasc/tend and unsp finger at wrs/hnd lv +C2855322|T037|AB|S66.320|ICD10CM|Lacerat extensor musc/fasc/tend r idx fngr at wrs/hnd lv|Lacerat extensor musc/fasc/tend r idx fngr at wrs/hnd lv +C2855322|T037|HT|S66.320|ICD10CM|Laceration of extensor muscle, fascia and tendon of right index finger at wrist and hand level|Laceration of extensor muscle, fascia and tendon of right index finger at wrist and hand level +C2855323|T037|AB|S66.320A|ICD10CM|Lacerat extn musc/fasc/tend r idx fngr at wrs/hnd lv, init|Lacerat extn musc/fasc/tend r idx fngr at wrs/hnd lv, init +C2855324|T037|AB|S66.320D|ICD10CM|Lacerat extn musc/fasc/tend r idx fngr at wrs/hnd lv, subs|Lacerat extn musc/fasc/tend r idx fngr at wrs/hnd lv, subs +C2855325|T037|AB|S66.320S|ICD10CM|Lacerat extn musc/fasc/tend r idx fngr at wrs/hnd lv, sqla|Lacerat extn musc/fasc/tend r idx fngr at wrs/hnd lv, sqla +C2855326|T037|AB|S66.321|ICD10CM|Lacerat extensor musc/fasc/tend l idx fngr at wrs/hnd lv|Lacerat extensor musc/fasc/tend l idx fngr at wrs/hnd lv +C2855326|T037|HT|S66.321|ICD10CM|Laceration of extensor muscle, fascia and tendon of left index finger at wrist and hand level|Laceration of extensor muscle, fascia and tendon of left index finger at wrist and hand level +C2855327|T037|AB|S66.321A|ICD10CM|Lacerat extn musc/fasc/tend l idx fngr at wrs/hnd lv, init|Lacerat extn musc/fasc/tend l idx fngr at wrs/hnd lv, init +C2855328|T037|AB|S66.321D|ICD10CM|Lacerat extn musc/fasc/tend l idx fngr at wrs/hnd lv, subs|Lacerat extn musc/fasc/tend l idx fngr at wrs/hnd lv, subs +C2855329|T037|AB|S66.321S|ICD10CM|Lacerat extn musc/fasc/tend l idx fngr at wrs/hnd lv, sqla|Lacerat extn musc/fasc/tend l idx fngr at wrs/hnd lv, sqla +C2855330|T037|AB|S66.322|ICD10CM|Lacerat extensor musc/fasc/tend r mid finger at wrs/hnd lv|Lacerat extensor musc/fasc/tend r mid finger at wrs/hnd lv +C2855330|T037|HT|S66.322|ICD10CM|Laceration of extensor muscle, fascia and tendon of right middle finger at wrist and hand level|Laceration of extensor muscle, fascia and tendon of right middle finger at wrist and hand level +C2855331|T037|AB|S66.322A|ICD10CM|Lacerat extn musc/fasc/tend r mid finger at wrs/hnd lv, init|Lacerat extn musc/fasc/tend r mid finger at wrs/hnd lv, init +C2855332|T037|AB|S66.322D|ICD10CM|Lacerat extn musc/fasc/tend r mid finger at wrs/hnd lv, subs|Lacerat extn musc/fasc/tend r mid finger at wrs/hnd lv, subs +C2855333|T037|AB|S66.322S|ICD10CM|Lacerat extn musc/fasc/tend r mid finger at wrs/hnd lv, sqla|Lacerat extn musc/fasc/tend r mid finger at wrs/hnd lv, sqla +C2855334|T037|AB|S66.323|ICD10CM|Lacerat extensor musc/fasc/tend l mid finger at wrs/hnd lv|Lacerat extensor musc/fasc/tend l mid finger at wrs/hnd lv +C2855334|T037|HT|S66.323|ICD10CM|Laceration of extensor muscle, fascia and tendon of left middle finger at wrist and hand level|Laceration of extensor muscle, fascia and tendon of left middle finger at wrist and hand level +C2855335|T037|AB|S66.323A|ICD10CM|Lacerat extn musc/fasc/tend l mid finger at wrs/hnd lv, init|Lacerat extn musc/fasc/tend l mid finger at wrs/hnd lv, init +C2855336|T037|AB|S66.323D|ICD10CM|Lacerat extn musc/fasc/tend l mid finger at wrs/hnd lv, subs|Lacerat extn musc/fasc/tend l mid finger at wrs/hnd lv, subs +C2855337|T037|AB|S66.323S|ICD10CM|Lacerat extn musc/fasc/tend l mid finger at wrs/hnd lv, sqla|Lacerat extn musc/fasc/tend l mid finger at wrs/hnd lv, sqla +C2855338|T037|AB|S66.324|ICD10CM|Lacerat extensor musc/fasc/tend r rng fngr at wrs/hnd lv|Lacerat extensor musc/fasc/tend r rng fngr at wrs/hnd lv +C2855338|T037|HT|S66.324|ICD10CM|Laceration of extensor muscle, fascia and tendon of right ring finger at wrist and hand level|Laceration of extensor muscle, fascia and tendon of right ring finger at wrist and hand level +C2855339|T037|AB|S66.324A|ICD10CM|Lacerat extn musc/fasc/tend r rng fngr at wrs/hnd lv, init|Lacerat extn musc/fasc/tend r rng fngr at wrs/hnd lv, init +C2855340|T037|AB|S66.324D|ICD10CM|Lacerat extn musc/fasc/tend r rng fngr at wrs/hnd lv, subs|Lacerat extn musc/fasc/tend r rng fngr at wrs/hnd lv, subs +C2855341|T037|AB|S66.324S|ICD10CM|Lacerat extn musc/fasc/tend r rng fngr at wrs/hnd lv, sqla|Lacerat extn musc/fasc/tend r rng fngr at wrs/hnd lv, sqla +C2855342|T037|AB|S66.325|ICD10CM|Lacerat extensor musc/fasc/tend l rng fngr at wrs/hnd lv|Lacerat extensor musc/fasc/tend l rng fngr at wrs/hnd lv +C2855342|T037|HT|S66.325|ICD10CM|Laceration of extensor muscle, fascia and tendon of left ring finger at wrist and hand level|Laceration of extensor muscle, fascia and tendon of left ring finger at wrist and hand level +C2855343|T037|AB|S66.325A|ICD10CM|Lacerat extn musc/fasc/tend l rng fngr at wrs/hnd lv, init|Lacerat extn musc/fasc/tend l rng fngr at wrs/hnd lv, init +C2855344|T037|AB|S66.325D|ICD10CM|Lacerat extn musc/fasc/tend l rng fngr at wrs/hnd lv, subs|Lacerat extn musc/fasc/tend l rng fngr at wrs/hnd lv, subs +C2855345|T037|AB|S66.325S|ICD10CM|Lacerat extn musc/fasc/tend l rng fngr at wrs/hnd lv, sqla|Lacerat extn musc/fasc/tend l rng fngr at wrs/hnd lv, sqla +C2855346|T037|AB|S66.326|ICD10CM|Lacerat extn musc/fasc/tend r little finger at wrs/hnd lv|Lacerat extn musc/fasc/tend r little finger at wrs/hnd lv +C2855346|T037|HT|S66.326|ICD10CM|Laceration of extensor muscle, fascia and tendon of right little finger at wrist and hand level|Laceration of extensor muscle, fascia and tendon of right little finger at wrist and hand level +C2855347|T037|AB|S66.326A|ICD10CM|Lacerat extn musc/fasc/tend r lit fngr at wrs/hnd lv, init|Lacerat extn musc/fasc/tend r lit fngr at wrs/hnd lv, init +C2855348|T037|AB|S66.326D|ICD10CM|Lacerat extn musc/fasc/tend r lit fngr at wrs/hnd lv, subs|Lacerat extn musc/fasc/tend r lit fngr at wrs/hnd lv, subs +C2855349|T037|AB|S66.326S|ICD10CM|Lacerat extn musc/fasc/tend r lit fngr at wrs/hnd lv, sqla|Lacerat extn musc/fasc/tend r lit fngr at wrs/hnd lv, sqla +C2855350|T037|AB|S66.327|ICD10CM|Lacerat extn musc/fasc/tend l little finger at wrs/hnd lv|Lacerat extn musc/fasc/tend l little finger at wrs/hnd lv +C2855350|T037|HT|S66.327|ICD10CM|Laceration of extensor muscle, fascia and tendon of left little finger at wrist and hand level|Laceration of extensor muscle, fascia and tendon of left little finger at wrist and hand level +C2855351|T037|AB|S66.327A|ICD10CM|Lacerat extn musc/fasc/tend l lit fngr at wrs/hnd lv, init|Lacerat extn musc/fasc/tend l lit fngr at wrs/hnd lv, init +C2855352|T037|AB|S66.327D|ICD10CM|Lacerat extn musc/fasc/tend l lit fngr at wrs/hnd lv, subs|Lacerat extn musc/fasc/tend l lit fngr at wrs/hnd lv, subs +C2855353|T037|AB|S66.327S|ICD10CM|Lacerat extn musc/fasc/tend l lit fngr at wrs/hnd lv, sqla|Lacerat extn musc/fasc/tend l lit fngr at wrs/hnd lv, sqla +C2855355|T037|AB|S66.328|ICD10CM|Laceration of extensor musc/fasc/tend finger at wrs/hnd lv|Laceration of extensor musc/fasc/tend finger at wrs/hnd lv +C2855355|T037|HT|S66.328|ICD10CM|Laceration of extensor muscle, fascia and tendon of other finger at wrist and hand level|Laceration of extensor muscle, fascia and tendon of other finger at wrist and hand level +C2855356|T037|AB|S66.328A|ICD10CM|Lacerat extensor musc/fasc/tend finger at wrs/hnd lv, init|Lacerat extensor musc/fasc/tend finger at wrs/hnd lv, init +C2855357|T037|AB|S66.328D|ICD10CM|Lacerat extensor musc/fasc/tend finger at wrs/hnd lv, subs|Lacerat extensor musc/fasc/tend finger at wrs/hnd lv, subs +C2855358|T037|AB|S66.328S|ICD10CM|Lacerat extn musc/fasc/tend finger at wrs/hnd lv, sequela|Lacerat extn musc/fasc/tend finger at wrs/hnd lv, sequela +C2855358|T037|PT|S66.328S|ICD10CM|Laceration of extensor muscle, fascia and tendon of other finger at wrist and hand level, sequela|Laceration of extensor muscle, fascia and tendon of other finger at wrist and hand level, sequela +C2855359|T037|AB|S66.329|ICD10CM|Lacerat extensor musc/fasc/tend unsp finger at wrs/hnd lv|Lacerat extensor musc/fasc/tend unsp finger at wrs/hnd lv +C2855359|T037|HT|S66.329|ICD10CM|Laceration of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level|Laceration of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level +C2855360|T037|AB|S66.329A|ICD10CM|Lacerat extn musc/fasc/tend unsp finger at wrs/hnd lv, init|Lacerat extn musc/fasc/tend unsp finger at wrs/hnd lv, init +C2855361|T037|AB|S66.329D|ICD10CM|Lacerat extn musc/fasc/tend unsp finger at wrs/hnd lv, subs|Lacerat extn musc/fasc/tend unsp finger at wrs/hnd lv, subs +C2855362|T037|AB|S66.329S|ICD10CM|Lacerat extn musc/fasc/tend unsp finger at wrs/hnd lv, sqla|Lacerat extn musc/fasc/tend unsp finger at wrs/hnd lv, sqla +C2855363|T037|AB|S66.39|ICD10CM|Inj extensor musc/fasc/tend and unsp finger at wrs/hnd lv|Inj extensor musc/fasc/tend and unsp finger at wrs/hnd lv +C2855364|T037|AB|S66.390|ICD10CM|Inj extensor musc/fasc/tend right index finger at wrs/hnd lv|Inj extensor musc/fasc/tend right index finger at wrs/hnd lv +C2855364|T037|HT|S66.390|ICD10CM|Other injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level|Other injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level +C2855365|T037|AB|S66.390A|ICD10CM|Inj extensor musc/fasc/tend r idx fngr at wrs/hnd lv, init|Inj extensor musc/fasc/tend r idx fngr at wrs/hnd lv, init +C2855366|T037|AB|S66.390D|ICD10CM|Inj extensor musc/fasc/tend r idx fngr at wrs/hnd lv, subs|Inj extensor musc/fasc/tend r idx fngr at wrs/hnd lv, subs +C2855367|T037|AB|S66.390S|ICD10CM|Inj extn musc/fasc/tend r idx fngr at wrs/hnd lv, sequela|Inj extn musc/fasc/tend r idx fngr at wrs/hnd lv, sequela +C2855368|T037|AB|S66.391|ICD10CM|Inj extensor musc/fasc/tend left index finger at wrs/hnd lv|Inj extensor musc/fasc/tend left index finger at wrs/hnd lv +C2855368|T037|HT|S66.391|ICD10CM|Other injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level|Other injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level +C2855369|T037|AB|S66.391A|ICD10CM|Inj extensor musc/fasc/tend l idx fngr at wrs/hnd lv, init|Inj extensor musc/fasc/tend l idx fngr at wrs/hnd lv, init +C2855370|T037|AB|S66.391D|ICD10CM|Inj extensor musc/fasc/tend l idx fngr at wrs/hnd lv, subs|Inj extensor musc/fasc/tend l idx fngr at wrs/hnd lv, subs +C2855371|T037|AB|S66.391S|ICD10CM|Inj extn musc/fasc/tend l idx fngr at wrs/hnd lv, sequela|Inj extn musc/fasc/tend l idx fngr at wrs/hnd lv, sequela +C2855372|T037|AB|S66.392|ICD10CM|Inj extensor musc/fasc/tend r mid finger at wrs/hnd lv|Inj extensor musc/fasc/tend r mid finger at wrs/hnd lv +C2855372|T037|HT|S66.392|ICD10CM|Other injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level|Other injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level +C2855373|T037|AB|S66.392A|ICD10CM|Inj extensor musc/fasc/tend r mid finger at wrs/hnd lv, init|Inj extensor musc/fasc/tend r mid finger at wrs/hnd lv, init +C2855374|T037|AB|S66.392D|ICD10CM|Inj extensor musc/fasc/tend r mid finger at wrs/hnd lv, subs|Inj extensor musc/fasc/tend r mid finger at wrs/hnd lv, subs +C2855375|T037|AB|S66.392S|ICD10CM|Inj extn musc/fasc/tend r mid finger at wrs/hnd lv, sequela|Inj extn musc/fasc/tend r mid finger at wrs/hnd lv, sequela +C2855376|T037|AB|S66.393|ICD10CM|Inj extensor musc/fasc/tend left middle finger at wrs/hnd lv|Inj extensor musc/fasc/tend left middle finger at wrs/hnd lv +C2855376|T037|HT|S66.393|ICD10CM|Other injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level|Other injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level +C2855377|T037|AB|S66.393A|ICD10CM|Inj extensor musc/fasc/tend l mid finger at wrs/hnd lv, init|Inj extensor musc/fasc/tend l mid finger at wrs/hnd lv, init +C2855378|T037|AB|S66.393D|ICD10CM|Inj extensor musc/fasc/tend l mid finger at wrs/hnd lv, subs|Inj extensor musc/fasc/tend l mid finger at wrs/hnd lv, subs +C2855379|T037|AB|S66.393S|ICD10CM|Inj extn musc/fasc/tend l mid finger at wrs/hnd lv, sequela|Inj extn musc/fasc/tend l mid finger at wrs/hnd lv, sequela +C2855380|T037|AB|S66.394|ICD10CM|Inj extensor musc/fasc/tend right ring finger at wrs/hnd lv|Inj extensor musc/fasc/tend right ring finger at wrs/hnd lv +C2855380|T037|HT|S66.394|ICD10CM|Other injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level|Other injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level +C2855381|T037|AB|S66.394A|ICD10CM|Inj extensor musc/fasc/tend r rng fngr at wrs/hnd lv, init|Inj extensor musc/fasc/tend r rng fngr at wrs/hnd lv, init +C2855382|T037|AB|S66.394D|ICD10CM|Inj extensor musc/fasc/tend r rng fngr at wrs/hnd lv, subs|Inj extensor musc/fasc/tend r rng fngr at wrs/hnd lv, subs +C2855383|T037|AB|S66.394S|ICD10CM|Inj extn musc/fasc/tend r rng fngr at wrs/hnd lv, sequela|Inj extn musc/fasc/tend r rng fngr at wrs/hnd lv, sequela +C2855384|T037|AB|S66.395|ICD10CM|Inj extensor musc/fasc/tend left ring finger at wrs/hnd lv|Inj extensor musc/fasc/tend left ring finger at wrs/hnd lv +C2855384|T037|HT|S66.395|ICD10CM|Other injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level|Other injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level +C2855385|T037|AB|S66.395A|ICD10CM|Inj extensor musc/fasc/tend l rng fngr at wrs/hnd lv, init|Inj extensor musc/fasc/tend l rng fngr at wrs/hnd lv, init +C2855386|T037|AB|S66.395D|ICD10CM|Inj extensor musc/fasc/tend l rng fngr at wrs/hnd lv, subs|Inj extensor musc/fasc/tend l rng fngr at wrs/hnd lv, subs +C2855387|T037|AB|S66.395S|ICD10CM|Inj extn musc/fasc/tend l rng fngr at wrs/hnd lv, sequela|Inj extn musc/fasc/tend l rng fngr at wrs/hnd lv, sequela +C2855388|T037|AB|S66.396|ICD10CM|Inj extensor musc/fasc/tend r little finger at wrs/hnd lv|Inj extensor musc/fasc/tend r little finger at wrs/hnd lv +C2855388|T037|HT|S66.396|ICD10CM|Other injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level|Other injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level +C2855389|T037|AB|S66.396A|ICD10CM|Inj extn musc/fasc/tend r little finger at wrs/hnd lv, init|Inj extn musc/fasc/tend r little finger at wrs/hnd lv, init +C2855390|T037|AB|S66.396D|ICD10CM|Inj extn musc/fasc/tend r little finger at wrs/hnd lv, subs|Inj extn musc/fasc/tend r little finger at wrs/hnd lv, subs +C2855391|T037|AB|S66.396S|ICD10CM|Inj extn musc/fasc/tend r little finger at wrs/hnd lv, sqla|Inj extn musc/fasc/tend r little finger at wrs/hnd lv, sqla +C2855392|T037|AB|S66.397|ICD10CM|Inj extensor musc/fasc/tend left little finger at wrs/hnd lv|Inj extensor musc/fasc/tend left little finger at wrs/hnd lv +C2855392|T037|HT|S66.397|ICD10CM|Other injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level|Other injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level +C2855393|T037|AB|S66.397A|ICD10CM|Inj extn musc/fasc/tend l little finger at wrs/hnd lv, init|Inj extn musc/fasc/tend l little finger at wrs/hnd lv, init +C2855394|T037|AB|S66.397D|ICD10CM|Inj extn musc/fasc/tend l little finger at wrs/hnd lv, subs|Inj extn musc/fasc/tend l little finger at wrs/hnd lv, subs +C2855395|T037|AB|S66.397S|ICD10CM|Inj extn musc/fasc/tend l little finger at wrs/hnd lv, sqla|Inj extn musc/fasc/tend l little finger at wrs/hnd lv, sqla +C2855397|T037|AB|S66.398|ICD10CM|Inj extensor musc/fasc/tend finger at wrist and hand level|Inj extensor musc/fasc/tend finger at wrist and hand level +C2855397|T037|HT|S66.398|ICD10CM|Other injury of extensor muscle, fascia and tendon of other finger at wrist and hand level|Other injury of extensor muscle, fascia and tendon of other finger at wrist and hand level +C2855398|T037|AB|S66.398A|ICD10CM|Inj extensor musc/fasc/tend finger at wrs/hnd lv, init|Inj extensor musc/fasc/tend finger at wrs/hnd lv, init +C2855399|T037|AB|S66.398D|ICD10CM|Inj extensor musc/fasc/tend finger at wrs/hnd lv, subs|Inj extensor musc/fasc/tend finger at wrs/hnd lv, subs +C2855400|T037|AB|S66.398S|ICD10CM|Inj extensor musc/fasc/tend finger at wrs/hnd lv, sequela|Inj extensor musc/fasc/tend finger at wrs/hnd lv, sequela +C2855400|T037|PT|S66.398S|ICD10CM|Other injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, sequela|Other injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, sequela +C2855363|T037|AB|S66.399|ICD10CM|Inj extensor musc/fasc/tend unsp finger at wrs/hnd lv|Inj extensor musc/fasc/tend unsp finger at wrs/hnd lv +C2855363|T037|HT|S66.399|ICD10CM|Other injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level|Other injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level +C2855402|T037|AB|S66.399A|ICD10CM|Inj extensor musc/fasc/tend unsp finger at wrs/hnd lv, init|Inj extensor musc/fasc/tend unsp finger at wrs/hnd lv, init +C2855403|T037|AB|S66.399D|ICD10CM|Inj extensor musc/fasc/tend unsp finger at wrs/hnd lv, subs|Inj extensor musc/fasc/tend unsp finger at wrs/hnd lv, subs +C2855404|T037|AB|S66.399S|ICD10CM|Inj extn musc/fasc/tend unsp finger at wrs/hnd lv, sequela|Inj extn musc/fasc/tend unsp finger at wrs/hnd lv, sequela +C2855405|T037|AB|S66.4|ICD10CM|Injury of intrinsic musc/fasc/tend thumb at wrs/hnd lv|Injury of intrinsic musc/fasc/tend thumb at wrs/hnd lv +C0495918|T037|PT|S66.4|ICD10|Injury of intrinsic muscle and tendon of thumb at wrist and hand level|Injury of intrinsic muscle and tendon of thumb at wrist and hand level +C2855405|T037|HT|S66.4|ICD10CM|Injury of intrinsic muscle, fascia and tendon of thumb at wrist and hand level|Injury of intrinsic muscle, fascia and tendon of thumb at wrist and hand level +C2855406|T037|AB|S66.40|ICD10CM|Unsp injury of intrinsic musc/fasc/tend thumb at wrs/hnd lv|Unsp injury of intrinsic musc/fasc/tend thumb at wrs/hnd lv +C2855406|T037|HT|S66.40|ICD10CM|Unspecified injury of intrinsic muscle, fascia and tendon of thumb at wrist and hand level|Unspecified injury of intrinsic muscle, fascia and tendon of thumb at wrist and hand level +C2855407|T037|AB|S66.401|ICD10CM|Unsp injury of intrinsic musc/fasc/tend r thm at wrs/hnd lv|Unsp injury of intrinsic musc/fasc/tend r thm at wrs/hnd lv +C2855407|T037|HT|S66.401|ICD10CM|Unspecified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level|Unspecified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level +C2855408|T037|AB|S66.401A|ICD10CM|Unsp inj intrinsic musc/fasc/tend r thm at wrs/hnd lv, init|Unsp inj intrinsic musc/fasc/tend r thm at wrs/hnd lv, init +C2855409|T037|AB|S66.401D|ICD10CM|Unsp inj intrinsic musc/fasc/tend r thm at wrs/hnd lv, subs|Unsp inj intrinsic musc/fasc/tend r thm at wrs/hnd lv, subs +C2855410|T037|AB|S66.401S|ICD10CM|Unsp inj intrns musc/fasc/tend r thm at wrs/hnd lv, sequela|Unsp inj intrns musc/fasc/tend r thm at wrs/hnd lv, sequela +C2855411|T037|AB|S66.402|ICD10CM|Unsp injury of intrinsic musc/fasc/tend l thm at wrs/hnd lv|Unsp injury of intrinsic musc/fasc/tend l thm at wrs/hnd lv +C2855411|T037|HT|S66.402|ICD10CM|Unspecified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level|Unspecified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level +C2855412|T037|AB|S66.402A|ICD10CM|Unsp inj intrinsic musc/fasc/tend l thm at wrs/hnd lv, init|Unsp inj intrinsic musc/fasc/tend l thm at wrs/hnd lv, init +C2855413|T037|AB|S66.402D|ICD10CM|Unsp inj intrinsic musc/fasc/tend l thm at wrs/hnd lv, subs|Unsp inj intrinsic musc/fasc/tend l thm at wrs/hnd lv, subs +C2855414|T037|AB|S66.402S|ICD10CM|Unsp inj intrns musc/fasc/tend l thm at wrs/hnd lv, sequela|Unsp inj intrns musc/fasc/tend l thm at wrs/hnd lv, sequela +C2855415|T037|AB|S66.409|ICD10CM|Unsp injury of intrinsic musc/fasc/tend thmb at wrs/hnd lv|Unsp injury of intrinsic musc/fasc/tend thmb at wrs/hnd lv +C2855416|T037|AB|S66.409A|ICD10CM|Unsp inj intrinsic musc/fasc/tend thmb at wrs/hnd lv, init|Unsp inj intrinsic musc/fasc/tend thmb at wrs/hnd lv, init +C2855417|T037|AB|S66.409D|ICD10CM|Unsp inj intrinsic musc/fasc/tend thmb at wrs/hnd lv, subs|Unsp inj intrinsic musc/fasc/tend thmb at wrs/hnd lv, subs +C2855418|T037|AB|S66.409S|ICD10CM|Unsp inj intrns musc/fasc/tend thmb at wrs/hnd lv, sequela|Unsp inj intrns musc/fasc/tend thmb at wrs/hnd lv, sequela +C2855419|T037|AB|S66.41|ICD10CM|Strain of intrinsic musc/fasc/tend thumb at wrs/hnd lv|Strain of intrinsic musc/fasc/tend thumb at wrs/hnd lv +C2855419|T037|HT|S66.41|ICD10CM|Strain of intrinsic muscle, fascia and tendon of thumb at wrist and hand level|Strain of intrinsic muscle, fascia and tendon of thumb at wrist and hand level +C2855420|T037|AB|S66.411|ICD10CM|Strain of intrinsic musc/fasc/tend right thumb at wrs/hnd lv|Strain of intrinsic musc/fasc/tend right thumb at wrs/hnd lv +C2855420|T037|HT|S66.411|ICD10CM|Strain of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level|Strain of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level +C2855421|T037|AB|S66.411A|ICD10CM|Strain of intrinsic musc/fasc/tend r thm at wrs/hnd lv, init|Strain of intrinsic musc/fasc/tend r thm at wrs/hnd lv, init +C2855422|T037|AB|S66.411D|ICD10CM|Strain of intrinsic musc/fasc/tend r thm at wrs/hnd lv, subs|Strain of intrinsic musc/fasc/tend r thm at wrs/hnd lv, subs +C2855423|T037|PT|S66.411S|ICD10CM|Strain of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, sequela|Strain of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, sequela +C2855423|T037|AB|S66.411S|ICD10CM|Strain of intrns musc/fasc/tend r thm at wrs/hnd lv, sequela|Strain of intrns musc/fasc/tend r thm at wrs/hnd lv, sequela +C2855424|T037|AB|S66.412|ICD10CM|Strain of intrinsic musc/fasc/tend left thumb at wrs/hnd lv|Strain of intrinsic musc/fasc/tend left thumb at wrs/hnd lv +C2855424|T037|HT|S66.412|ICD10CM|Strain of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level|Strain of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level +C2855425|T037|AB|S66.412A|ICD10CM|Strain of intrinsic musc/fasc/tend l thm at wrs/hnd lv, init|Strain of intrinsic musc/fasc/tend l thm at wrs/hnd lv, init +C2855426|T037|AB|S66.412D|ICD10CM|Strain of intrinsic musc/fasc/tend l thm at wrs/hnd lv, subs|Strain of intrinsic musc/fasc/tend l thm at wrs/hnd lv, subs +C2855427|T037|PT|S66.412S|ICD10CM|Strain of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, sequela|Strain of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, sequela +C2855427|T037|AB|S66.412S|ICD10CM|Strain of intrns musc/fasc/tend l thm at wrs/hnd lv, sequela|Strain of intrns musc/fasc/tend l thm at wrs/hnd lv, sequela +C2855428|T037|AB|S66.419|ICD10CM|Strain of intrinsic musc/fasc/tend thmb at wrs/hnd lv|Strain of intrinsic musc/fasc/tend thmb at wrs/hnd lv +C2855428|T037|HT|S66.419|ICD10CM|Strain of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level|Strain of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level +C2855429|T037|AB|S66.419A|ICD10CM|Strain of intrinsic musc/fasc/tend thmb at wrs/hnd lv, init|Strain of intrinsic musc/fasc/tend thmb at wrs/hnd lv, init +C2855430|T037|AB|S66.419D|ICD10CM|Strain of intrinsic musc/fasc/tend thmb at wrs/hnd lv, subs|Strain of intrinsic musc/fasc/tend thmb at wrs/hnd lv, subs +C2855431|T037|PT|S66.419S|ICD10CM|Strain of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela|Strain of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela +C2855431|T037|AB|S66.419S|ICD10CM|Strain of intrns musc/fasc/tend thmb at wrs/hnd lv, sequela|Strain of intrns musc/fasc/tend thmb at wrs/hnd lv, sequela +C2855432|T037|AB|S66.42|ICD10CM|Laceration of intrinsic musc/fasc/tend thumb at wrs/hnd lv|Laceration of intrinsic musc/fasc/tend thumb at wrs/hnd lv +C2855432|T037|HT|S66.42|ICD10CM|Laceration of intrinsic muscle, fascia and tendon of thumb at wrist and hand level|Laceration of intrinsic muscle, fascia and tendon of thumb at wrist and hand level +C2855433|T037|AB|S66.421|ICD10CM|Lacerat intrinsic musc/fasc/tend right thumb at wrs/hnd lv|Lacerat intrinsic musc/fasc/tend right thumb at wrs/hnd lv +C2855433|T037|HT|S66.421|ICD10CM|Laceration of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level|Laceration of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level +C2855434|T037|AB|S66.421A|ICD10CM|Lacerat intrinsic musc/fasc/tend r thm at wrs/hnd lv, init|Lacerat intrinsic musc/fasc/tend r thm at wrs/hnd lv, init +C2855435|T037|AB|S66.421D|ICD10CM|Lacerat intrinsic musc/fasc/tend r thm at wrs/hnd lv, subs|Lacerat intrinsic musc/fasc/tend r thm at wrs/hnd lv, subs +C2855436|T037|AB|S66.421S|ICD10CM|Lacerat intrns musc/fasc/tend r thm at wrs/hnd lv, sequela|Lacerat intrns musc/fasc/tend r thm at wrs/hnd lv, sequela +C2855436|T037|PT|S66.421S|ICD10CM|Laceration of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, sequela|Laceration of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, sequela +C2855437|T037|AB|S66.422|ICD10CM|Lacerat intrinsic musc/fasc/tend left thumb at wrs/hnd lv|Lacerat intrinsic musc/fasc/tend left thumb at wrs/hnd lv +C2855437|T037|HT|S66.422|ICD10CM|Laceration of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level|Laceration of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level +C2855438|T037|AB|S66.422A|ICD10CM|Lacerat intrinsic musc/fasc/tend l thm at wrs/hnd lv, init|Lacerat intrinsic musc/fasc/tend l thm at wrs/hnd lv, init +C2855439|T037|AB|S66.422D|ICD10CM|Lacerat intrinsic musc/fasc/tend l thm at wrs/hnd lv, subs|Lacerat intrinsic musc/fasc/tend l thm at wrs/hnd lv, subs +C2855440|T037|AB|S66.422S|ICD10CM|Lacerat intrns musc/fasc/tend l thm at wrs/hnd lv, sequela|Lacerat intrns musc/fasc/tend l thm at wrs/hnd lv, sequela +C2855440|T037|PT|S66.422S|ICD10CM|Laceration of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, sequela|Laceration of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, sequela +C2855441|T037|AB|S66.429|ICD10CM|Laceration of intrinsic musc/fasc/tend thmb at wrs/hnd lv|Laceration of intrinsic musc/fasc/tend thmb at wrs/hnd lv +C2855441|T037|HT|S66.429|ICD10CM|Laceration of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level|Laceration of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level +C2855442|T037|AB|S66.429A|ICD10CM|Lacerat intrinsic musc/fasc/tend thmb at wrs/hnd lv, init|Lacerat intrinsic musc/fasc/tend thmb at wrs/hnd lv, init +C2855443|T037|AB|S66.429D|ICD10CM|Lacerat intrinsic musc/fasc/tend thmb at wrs/hnd lv, subs|Lacerat intrinsic musc/fasc/tend thmb at wrs/hnd lv, subs +C2855444|T037|AB|S66.429S|ICD10CM|Lacerat intrinsic musc/fasc/tend thmb at wrs/hnd lv, sequela|Lacerat intrinsic musc/fasc/tend thmb at wrs/hnd lv, sequela +C2855445|T037|AB|S66.49|ICD10CM|Inj intrinsic musc/fasc/tend thumb at wrist and hand level|Inj intrinsic musc/fasc/tend thumb at wrist and hand level +C2855445|T037|HT|S66.49|ICD10CM|Other specified injury of intrinsic muscle, fascia and tendon of thumb at wrist and hand level|Other specified injury of intrinsic muscle, fascia and tendon of thumb at wrist and hand level +C2855446|T037|AB|S66.491|ICD10CM|Inj intrinsic musc/fasc/tend right thumb at wrs/hnd lv|Inj intrinsic musc/fasc/tend right thumb at wrs/hnd lv +C2855446|T037|HT|S66.491|ICD10CM|Other specified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level|Other specified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level +C2855447|T037|AB|S66.491A|ICD10CM|Inj intrinsic musc/fasc/tend right thumb at wrs/hnd lv, init|Inj intrinsic musc/fasc/tend right thumb at wrs/hnd lv, init +C2855448|T037|AB|S66.491D|ICD10CM|Inj intrinsic musc/fasc/tend right thumb at wrs/hnd lv, subs|Inj intrinsic musc/fasc/tend right thumb at wrs/hnd lv, subs +C2855449|T037|AB|S66.491S|ICD10CM|Inj intrinsic musc/fasc/tend r thm at wrs/hnd lv, sequela|Inj intrinsic musc/fasc/tend r thm at wrs/hnd lv, sequela +C2855450|T037|AB|S66.492|ICD10CM|Inj intrinsic musc/fasc/tend left thumb at wrs/hnd lv|Inj intrinsic musc/fasc/tend left thumb at wrs/hnd lv +C2855450|T037|HT|S66.492|ICD10CM|Other specified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level|Other specified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level +C2855451|T037|AB|S66.492A|ICD10CM|Inj intrinsic musc/fasc/tend left thumb at wrs/hnd lv, init|Inj intrinsic musc/fasc/tend left thumb at wrs/hnd lv, init +C2855452|T037|AB|S66.492D|ICD10CM|Inj intrinsic musc/fasc/tend left thumb at wrs/hnd lv, subs|Inj intrinsic musc/fasc/tend left thumb at wrs/hnd lv, subs +C2855453|T037|AB|S66.492S|ICD10CM|Inj intrinsic musc/fasc/tend l thm at wrs/hnd lv, sequela|Inj intrinsic musc/fasc/tend l thm at wrs/hnd lv, sequela +C2855454|T037|AB|S66.499|ICD10CM|Inj intrinsic musc/fasc/tend thmb at wrist and hand level|Inj intrinsic musc/fasc/tend thmb at wrist and hand level +C2855455|T037|AB|S66.499A|ICD10CM|Inj intrinsic musc/fasc/tend thmb at wrs/hnd lv, init|Inj intrinsic musc/fasc/tend thmb at wrs/hnd lv, init +C2855456|T037|AB|S66.499D|ICD10CM|Inj intrinsic musc/fasc/tend thmb at wrs/hnd lv, subs|Inj intrinsic musc/fasc/tend thmb at wrs/hnd lv, subs +C2855457|T037|AB|S66.499S|ICD10CM|Inj intrinsic musc/fasc/tend thmb at wrs/hnd lv, sequela|Inj intrinsic musc/fasc/tend thmb at wrs/hnd lv, sequela +C2855458|T037|AB|S66.5|ICD10CM|Inj intrinsic musc/fasc/tend and unsp finger at wrs/hnd lv|Inj intrinsic musc/fasc/tend and unsp finger at wrs/hnd lv +C0478314|T037|PT|S66.5|ICD10|Injury of intrinsic muscle and tendon of other finger at wrist and hand level|Injury of intrinsic muscle and tendon of other finger at wrist and hand level +C2855459|T037|AB|S66.50|ICD10CM|Unsp inj intrns musc/fasc/tend and unsp finger at wrs/hnd lv|Unsp inj intrns musc/fasc/tend and unsp finger at wrs/hnd lv +C2855460|T037|AB|S66.500|ICD10CM|Unsp inj intrinsic musc/fasc/tend r idx fngr at wrs/hnd lv|Unsp inj intrinsic musc/fasc/tend r idx fngr at wrs/hnd lv +C2855461|T037|AB|S66.500A|ICD10CM|Unsp inj intrns musc/fasc/tend r idx fngr at wrs/hnd lv,init|Unsp inj intrns musc/fasc/tend r idx fngr at wrs/hnd lv,init +C2855462|T037|AB|S66.500D|ICD10CM|Unsp inj intrns musc/fasc/tend r idx fngr at wrs/hnd lv,subs|Unsp inj intrns musc/fasc/tend r idx fngr at wrs/hnd lv,subs +C2855463|T037|AB|S66.500S|ICD10CM|Unsp inj intrns musc/fasc/tend r idx fngr at wrs/hnd lv,sqla|Unsp inj intrns musc/fasc/tend r idx fngr at wrs/hnd lv,sqla +C2855464|T037|AB|S66.501|ICD10CM|Unsp inj intrinsic musc/fasc/tend l idx fngr at wrs/hnd lv|Unsp inj intrinsic musc/fasc/tend l idx fngr at wrs/hnd lv +C2855465|T037|AB|S66.501A|ICD10CM|Unsp inj intrns musc/fasc/tend l idx fngr at wrs/hnd lv,init|Unsp inj intrns musc/fasc/tend l idx fngr at wrs/hnd lv,init +C2855466|T037|AB|S66.501D|ICD10CM|Unsp inj intrns musc/fasc/tend l idx fngr at wrs/hnd lv,subs|Unsp inj intrns musc/fasc/tend l idx fngr at wrs/hnd lv,subs +C2855467|T037|AB|S66.501S|ICD10CM|Unsp inj intrns musc/fasc/tend l idx fngr at wrs/hnd lv,sqla|Unsp inj intrns musc/fasc/tend l idx fngr at wrs/hnd lv,sqla +C2855468|T037|AB|S66.502|ICD10CM|Unsp inj intrinsic musc/fasc/tend r mid finger at wrs/hnd lv|Unsp inj intrinsic musc/fasc/tend r mid finger at wrs/hnd lv +C2855469|T037|AB|S66.502A|ICD10CM|Unsp inj intrns musc/fasc/tend r mid fngr at wrs/hnd lv,init|Unsp inj intrns musc/fasc/tend r mid fngr at wrs/hnd lv,init +C2855470|T037|AB|S66.502D|ICD10CM|Unsp inj intrns musc/fasc/tend r mid fngr at wrs/hnd lv,subs|Unsp inj intrns musc/fasc/tend r mid fngr at wrs/hnd lv,subs +C2855471|T037|AB|S66.502S|ICD10CM|Unsp inj intrns musc/fasc/tend r mid fngr at wrs/hnd lv,sqla|Unsp inj intrns musc/fasc/tend r mid fngr at wrs/hnd lv,sqla +C2855472|T037|AB|S66.503|ICD10CM|Unsp inj intrinsic musc/fasc/tend l mid finger at wrs/hnd lv|Unsp inj intrinsic musc/fasc/tend l mid finger at wrs/hnd lv +C2855473|T037|AB|S66.503A|ICD10CM|Unsp inj intrns musc/fasc/tend l mid fngr at wrs/hnd lv,init|Unsp inj intrns musc/fasc/tend l mid fngr at wrs/hnd lv,init +C2855474|T037|AB|S66.503D|ICD10CM|Unsp inj intrns musc/fasc/tend l mid fngr at wrs/hnd lv,subs|Unsp inj intrns musc/fasc/tend l mid fngr at wrs/hnd lv,subs +C2855475|T037|AB|S66.503S|ICD10CM|Unsp inj intrns musc/fasc/tend l mid fngr at wrs/hnd lv,sqla|Unsp inj intrns musc/fasc/tend l mid fngr at wrs/hnd lv,sqla +C2855476|T037|AB|S66.504|ICD10CM|Unsp inj intrinsic musc/fasc/tend r rng fngr at wrs/hnd lv|Unsp inj intrinsic musc/fasc/tend r rng fngr at wrs/hnd lv +C2855477|T037|AB|S66.504A|ICD10CM|Unsp inj intrns musc/fasc/tend r rng fngr at wrs/hnd lv,init|Unsp inj intrns musc/fasc/tend r rng fngr at wrs/hnd lv,init +C2855478|T037|AB|S66.504D|ICD10CM|Unsp inj intrns musc/fasc/tend r rng fngr at wrs/hnd lv,subs|Unsp inj intrns musc/fasc/tend r rng fngr at wrs/hnd lv,subs +C2855479|T037|AB|S66.504S|ICD10CM|Unsp inj intrns musc/fasc/tend r rng fngr at wrs/hnd lv,sqla|Unsp inj intrns musc/fasc/tend r rng fngr at wrs/hnd lv,sqla +C2855480|T037|AB|S66.505|ICD10CM|Unsp inj intrinsic musc/fasc/tend l rng fngr at wrs/hnd lv|Unsp inj intrinsic musc/fasc/tend l rng fngr at wrs/hnd lv +C2855481|T037|AB|S66.505A|ICD10CM|Unsp inj intrns musc/fasc/tend l rng fngr at wrs/hnd lv,init|Unsp inj intrns musc/fasc/tend l rng fngr at wrs/hnd lv,init +C2855482|T037|AB|S66.505D|ICD10CM|Unsp inj intrns musc/fasc/tend l rng fngr at wrs/hnd lv,subs|Unsp inj intrns musc/fasc/tend l rng fngr at wrs/hnd lv,subs +C2855483|T037|AB|S66.505S|ICD10CM|Unsp inj intrns musc/fasc/tend l rng fngr at wrs/hnd lv,sqla|Unsp inj intrns musc/fasc/tend l rng fngr at wrs/hnd lv,sqla +C2855484|T037|AB|S66.506|ICD10CM|Unsp inj intrns musc/fasc/tend r little finger at wrs/hnd lv|Unsp inj intrns musc/fasc/tend r little finger at wrs/hnd lv +C2855485|T037|AB|S66.506A|ICD10CM|Unsp inj intrns musc/fasc/tend r lit fngr at wrs/hnd lv,init|Unsp inj intrns musc/fasc/tend r lit fngr at wrs/hnd lv,init +C2855486|T037|AB|S66.506D|ICD10CM|Unsp inj intrns musc/fasc/tend r lit fngr at wrs/hnd lv,subs|Unsp inj intrns musc/fasc/tend r lit fngr at wrs/hnd lv,subs +C2855487|T037|AB|S66.506S|ICD10CM|Unsp inj intrns musc/fasc/tend r lit fngr at wrs/hnd lv,sqla|Unsp inj intrns musc/fasc/tend r lit fngr at wrs/hnd lv,sqla +C2855488|T037|AB|S66.507|ICD10CM|Unsp inj intrns musc/fasc/tend l little finger at wrs/hnd lv|Unsp inj intrns musc/fasc/tend l little finger at wrs/hnd lv +C2855489|T037|AB|S66.507A|ICD10CM|Unsp inj intrns musc/fasc/tend l lit fngr at wrs/hnd lv,init|Unsp inj intrns musc/fasc/tend l lit fngr at wrs/hnd lv,init +C2855490|T037|AB|S66.507D|ICD10CM|Unsp inj intrns musc/fasc/tend l lit fngr at wrs/hnd lv,subs|Unsp inj intrns musc/fasc/tend l lit fngr at wrs/hnd lv,subs +C2855491|T037|AB|S66.507S|ICD10CM|Unsp inj intrns musc/fasc/tend l lit fngr at wrs/hnd lv,sqla|Unsp inj intrns musc/fasc/tend l lit fngr at wrs/hnd lv,sqla +C2855493|T037|AB|S66.508|ICD10CM|Unsp injury of intrinsic musc/fasc/tend finger at wrs/hnd lv|Unsp injury of intrinsic musc/fasc/tend finger at wrs/hnd lv +C2855493|T037|HT|S66.508|ICD10CM|Unspecified injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level|Unspecified injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level +C2855494|T037|AB|S66.508A|ICD10CM|Unsp inj intrinsic musc/fasc/tend finger at wrs/hnd lv, init|Unsp inj intrinsic musc/fasc/tend finger at wrs/hnd lv, init +C2855495|T037|AB|S66.508D|ICD10CM|Unsp inj intrinsic musc/fasc/tend finger at wrs/hnd lv, subs|Unsp inj intrinsic musc/fasc/tend finger at wrs/hnd lv, subs +C2855496|T037|AB|S66.508S|ICD10CM|Unsp inj intrns musc/fasc/tend finger at wrs/hnd lv, sequela|Unsp inj intrns musc/fasc/tend finger at wrs/hnd lv, sequela +C2855497|T037|AB|S66.509|ICD10CM|Unsp inj intrinsic musc/fasc/tend unsp finger at wrs/hnd lv|Unsp inj intrinsic musc/fasc/tend unsp finger at wrs/hnd lv +C2855498|T037|AB|S66.509A|ICD10CM|Unsp inj intrns musc/fasc/tend unsp fngr at wrs/hnd lv, init|Unsp inj intrns musc/fasc/tend unsp fngr at wrs/hnd lv, init +C2855499|T037|AB|S66.509D|ICD10CM|Unsp inj intrns musc/fasc/tend unsp fngr at wrs/hnd lv, subs|Unsp inj intrns musc/fasc/tend unsp fngr at wrs/hnd lv, subs +C2855500|T037|AB|S66.509S|ICD10CM|Unsp inj intrns musc/fasc/tend unsp fngr at wrs/hnd lv, sqla|Unsp inj intrns musc/fasc/tend unsp fngr at wrs/hnd lv, sqla +C2855501|T037|AB|S66.51|ICD10CM|Strain intrns musc/fasc/tend and unsp finger at wrs/hnd lv|Strain intrns musc/fasc/tend and unsp finger at wrs/hnd lv +C2855502|T037|AB|S66.510|ICD10CM|Strain of intrinsic musc/fasc/tend r idx fngr at wrs/hnd lv|Strain of intrinsic musc/fasc/tend r idx fngr at wrs/hnd lv +C2855502|T037|HT|S66.510|ICD10CM|Strain of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level|Strain of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level +C2855503|T037|AB|S66.510A|ICD10CM|Strain intrns musc/fasc/tend r idx fngr at wrs/hnd lv, init|Strain intrns musc/fasc/tend r idx fngr at wrs/hnd lv, init +C2855504|T037|AB|S66.510D|ICD10CM|Strain intrns musc/fasc/tend r idx fngr at wrs/hnd lv, subs|Strain intrns musc/fasc/tend r idx fngr at wrs/hnd lv, subs +C2855505|T037|AB|S66.510S|ICD10CM|Strain intrns musc/fasc/tend r idx fngr at wrs/hnd lv, sqla|Strain intrns musc/fasc/tend r idx fngr at wrs/hnd lv, sqla +C2855505|T037|PT|S66.510S|ICD10CM|Strain of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, sequela|Strain of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, sequela +C2855506|T037|AB|S66.511|ICD10CM|Strain of intrinsic musc/fasc/tend l idx fngr at wrs/hnd lv|Strain of intrinsic musc/fasc/tend l idx fngr at wrs/hnd lv +C2855506|T037|HT|S66.511|ICD10CM|Strain of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level|Strain of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level +C2855507|T037|AB|S66.511A|ICD10CM|Strain intrns musc/fasc/tend l idx fngr at wrs/hnd lv, init|Strain intrns musc/fasc/tend l idx fngr at wrs/hnd lv, init +C2855508|T037|AB|S66.511D|ICD10CM|Strain intrns musc/fasc/tend l idx fngr at wrs/hnd lv, subs|Strain intrns musc/fasc/tend l idx fngr at wrs/hnd lv, subs +C2855509|T037|AB|S66.511S|ICD10CM|Strain intrns musc/fasc/tend l idx fngr at wrs/hnd lv, sqla|Strain intrns musc/fasc/tend l idx fngr at wrs/hnd lv, sqla +C2855509|T037|PT|S66.511S|ICD10CM|Strain of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, sequela|Strain of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, sequela +C2855510|T037|HT|S66.512|ICD10CM|Strain of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level|Strain of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level +C2855510|T037|AB|S66.512|ICD10CM|Strain of intrns musc/fasc/tend r mid finger at wrs/hnd lv|Strain of intrns musc/fasc/tend r mid finger at wrs/hnd lv +C2855511|T037|AB|S66.512A|ICD10CM|Strain intrns musc/fasc/tend r mid fngr at wrs/hnd lv, init|Strain intrns musc/fasc/tend r mid fngr at wrs/hnd lv, init +C2855512|T037|AB|S66.512D|ICD10CM|Strain intrns musc/fasc/tend r mid fngr at wrs/hnd lv, subs|Strain intrns musc/fasc/tend r mid fngr at wrs/hnd lv, subs +C2855513|T037|AB|S66.512S|ICD10CM|Strain intrns musc/fasc/tend r mid fngr at wrs/hnd lv, sqla|Strain intrns musc/fasc/tend r mid fngr at wrs/hnd lv, sqla +C2855514|T037|HT|S66.513|ICD10CM|Strain of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level|Strain of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level +C2855514|T037|AB|S66.513|ICD10CM|Strain of intrns musc/fasc/tend l mid finger at wrs/hnd lv|Strain of intrns musc/fasc/tend l mid finger at wrs/hnd lv +C2855515|T037|AB|S66.513A|ICD10CM|Strain intrns musc/fasc/tend l mid fngr at wrs/hnd lv, init|Strain intrns musc/fasc/tend l mid fngr at wrs/hnd lv, init +C2855516|T037|AB|S66.513D|ICD10CM|Strain intrns musc/fasc/tend l mid fngr at wrs/hnd lv, subs|Strain intrns musc/fasc/tend l mid fngr at wrs/hnd lv, subs +C2855517|T037|AB|S66.513S|ICD10CM|Strain intrns musc/fasc/tend l mid fngr at wrs/hnd lv, sqla|Strain intrns musc/fasc/tend l mid fngr at wrs/hnd lv, sqla +C2855517|T037|PT|S66.513S|ICD10CM|Strain of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, sequela|Strain of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, sequela +C2855518|T037|AB|S66.514|ICD10CM|Strain of intrinsic musc/fasc/tend r rng fngr at wrs/hnd lv|Strain of intrinsic musc/fasc/tend r rng fngr at wrs/hnd lv +C2855518|T037|HT|S66.514|ICD10CM|Strain of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level|Strain of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level +C2855519|T037|AB|S66.514A|ICD10CM|Strain intrns musc/fasc/tend r rng fngr at wrs/hnd lv, init|Strain intrns musc/fasc/tend r rng fngr at wrs/hnd lv, init +C2855520|T037|AB|S66.514D|ICD10CM|Strain intrns musc/fasc/tend r rng fngr at wrs/hnd lv, subs|Strain intrns musc/fasc/tend r rng fngr at wrs/hnd lv, subs +C2855521|T037|AB|S66.514S|ICD10CM|Strain intrns musc/fasc/tend r rng fngr at wrs/hnd lv, sqla|Strain intrns musc/fasc/tend r rng fngr at wrs/hnd lv, sqla +C2855521|T037|PT|S66.514S|ICD10CM|Strain of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, sequela|Strain of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, sequela +C2855522|T037|AB|S66.515|ICD10CM|Strain of intrinsic musc/fasc/tend l rng fngr at wrs/hnd lv|Strain of intrinsic musc/fasc/tend l rng fngr at wrs/hnd lv +C2855522|T037|HT|S66.515|ICD10CM|Strain of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level|Strain of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level +C2855523|T037|AB|S66.515A|ICD10CM|Strain intrns musc/fasc/tend l rng fngr at wrs/hnd lv, init|Strain intrns musc/fasc/tend l rng fngr at wrs/hnd lv, init +C2855524|T037|AB|S66.515D|ICD10CM|Strain intrns musc/fasc/tend l rng fngr at wrs/hnd lv, subs|Strain intrns musc/fasc/tend l rng fngr at wrs/hnd lv, subs +C2855525|T037|AB|S66.515S|ICD10CM|Strain intrns musc/fasc/tend l rng fngr at wrs/hnd lv, sqla|Strain intrns musc/fasc/tend l rng fngr at wrs/hnd lv, sqla +C2855525|T037|PT|S66.515S|ICD10CM|Strain of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, sequela|Strain of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, sequela +C2855526|T037|AB|S66.516|ICD10CM|Strain intrns musc/fasc/tend r little finger at wrs/hnd lv|Strain intrns musc/fasc/tend r little finger at wrs/hnd lv +C2855526|T037|HT|S66.516|ICD10CM|Strain of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level|Strain of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level +C2855527|T037|AB|S66.516A|ICD10CM|Strain intrns musc/fasc/tend r lit fngr at wrs/hnd lv, init|Strain intrns musc/fasc/tend r lit fngr at wrs/hnd lv, init +C2855528|T037|AB|S66.516D|ICD10CM|Strain intrns musc/fasc/tend r lit fngr at wrs/hnd lv, subs|Strain intrns musc/fasc/tend r lit fngr at wrs/hnd lv, subs +C2855529|T037|AB|S66.516S|ICD10CM|Strain intrns musc/fasc/tend r lit fngr at wrs/hnd lv, sqla|Strain intrns musc/fasc/tend r lit fngr at wrs/hnd lv, sqla +C2855530|T037|AB|S66.517|ICD10CM|Strain intrns musc/fasc/tend l little finger at wrs/hnd lv|Strain intrns musc/fasc/tend l little finger at wrs/hnd lv +C2855530|T037|HT|S66.517|ICD10CM|Strain of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level|Strain of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level +C2855531|T037|AB|S66.517A|ICD10CM|Strain intrns musc/fasc/tend l lit fngr at wrs/hnd lv, init|Strain intrns musc/fasc/tend l lit fngr at wrs/hnd lv, init +C2855532|T037|AB|S66.517D|ICD10CM|Strain intrns musc/fasc/tend l lit fngr at wrs/hnd lv, subs|Strain intrns musc/fasc/tend l lit fngr at wrs/hnd lv, subs +C2855533|T037|AB|S66.517S|ICD10CM|Strain intrns musc/fasc/tend l lit fngr at wrs/hnd lv, sqla|Strain intrns musc/fasc/tend l lit fngr at wrs/hnd lv, sqla +C2855533|T037|PT|S66.517S|ICD10CM|Strain of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, sequela|Strain of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, sequela +C2855535|T037|AB|S66.518|ICD10CM|Strain of intrinsic musc/fasc/tend finger at wrs/hnd lv|Strain of intrinsic musc/fasc/tend finger at wrs/hnd lv +C2855535|T037|HT|S66.518|ICD10CM|Strain of intrinsic muscle, fascia and tendon of other finger at wrist and hand level|Strain of intrinsic muscle, fascia and tendon of other finger at wrist and hand level +C2855536|T037|AB|S66.518A|ICD10CM|Strain of intrns musc/fasc/tend finger at wrs/hnd lv, init|Strain of intrns musc/fasc/tend finger at wrs/hnd lv, init +C2855537|T037|AB|S66.518D|ICD10CM|Strain of intrns musc/fasc/tend finger at wrs/hnd lv, subs|Strain of intrns musc/fasc/tend finger at wrs/hnd lv, subs +C2855538|T037|AB|S66.518S|ICD10CM|Strain intrns musc/fasc/tend finger at wrs/hnd lv, sequela|Strain intrns musc/fasc/tend finger at wrs/hnd lv, sequela +C2855538|T037|PT|S66.518S|ICD10CM|Strain of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, sequela|Strain of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, sequela +C2855539|T037|AB|S66.519|ICD10CM|Strain of intrinsic musc/fasc/tend unsp finger at wrs/hnd lv|Strain of intrinsic musc/fasc/tend unsp finger at wrs/hnd lv +C2855539|T037|HT|S66.519|ICD10CM|Strain of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level|Strain of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level +C2855540|T037|AB|S66.519A|ICD10CM|Strain intrns musc/fasc/tend unsp finger at wrs/hnd lv, init|Strain intrns musc/fasc/tend unsp finger at wrs/hnd lv, init +C2855541|T037|AB|S66.519D|ICD10CM|Strain intrns musc/fasc/tend unsp finger at wrs/hnd lv, subs|Strain intrns musc/fasc/tend unsp finger at wrs/hnd lv, subs +C2855542|T037|AB|S66.519S|ICD10CM|Strain intrns musc/fasc/tend unsp finger at wrs/hnd lv, sqla|Strain intrns musc/fasc/tend unsp finger at wrs/hnd lv, sqla +C2855542|T037|PT|S66.519S|ICD10CM|Strain of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela|Strain of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela +C2855543|T037|AB|S66.52|ICD10CM|Lacerat intrns musc/fasc/tend and unsp finger at wrs/hnd lv|Lacerat intrns musc/fasc/tend and unsp finger at wrs/hnd lv +C2855544|T037|AB|S66.520|ICD10CM|Lacerat intrinsic musc/fasc/tend r idx fngr at wrs/hnd lv|Lacerat intrinsic musc/fasc/tend r idx fngr at wrs/hnd lv +C2855544|T037|HT|S66.520|ICD10CM|Laceration of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level|Laceration of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level +C2855545|T037|AB|S66.520A|ICD10CM|Lacerat intrns musc/fasc/tend r idx fngr at wrs/hnd lv, init|Lacerat intrns musc/fasc/tend r idx fngr at wrs/hnd lv, init +C2855546|T037|AB|S66.520D|ICD10CM|Lacerat intrns musc/fasc/tend r idx fngr at wrs/hnd lv, subs|Lacerat intrns musc/fasc/tend r idx fngr at wrs/hnd lv, subs +C2855547|T037|AB|S66.520S|ICD10CM|Lacerat intrns musc/fasc/tend r idx fngr at wrs/hnd lv, sqla|Lacerat intrns musc/fasc/tend r idx fngr at wrs/hnd lv, sqla +C2855548|T037|AB|S66.521|ICD10CM|Lacerat intrinsic musc/fasc/tend l idx fngr at wrs/hnd lv|Lacerat intrinsic musc/fasc/tend l idx fngr at wrs/hnd lv +C2855548|T037|HT|S66.521|ICD10CM|Laceration of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level|Laceration of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level +C2855549|T037|AB|S66.521A|ICD10CM|Lacerat intrns musc/fasc/tend l idx fngr at wrs/hnd lv, init|Lacerat intrns musc/fasc/tend l idx fngr at wrs/hnd lv, init +C2855550|T037|AB|S66.521D|ICD10CM|Lacerat intrns musc/fasc/tend l idx fngr at wrs/hnd lv, subs|Lacerat intrns musc/fasc/tend l idx fngr at wrs/hnd lv, subs +C2855551|T037|AB|S66.521S|ICD10CM|Lacerat intrns musc/fasc/tend l idx fngr at wrs/hnd lv, sqla|Lacerat intrns musc/fasc/tend l idx fngr at wrs/hnd lv, sqla +C2855552|T037|AB|S66.522|ICD10CM|Lacerat intrinsic musc/fasc/tend r mid finger at wrs/hnd lv|Lacerat intrinsic musc/fasc/tend r mid finger at wrs/hnd lv +C2855552|T037|HT|S66.522|ICD10CM|Laceration of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level|Laceration of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level +C2855553|T037|AB|S66.522A|ICD10CM|Lacerat intrns musc/fasc/tend r mid fngr at wrs/hnd lv, init|Lacerat intrns musc/fasc/tend r mid fngr at wrs/hnd lv, init +C2855554|T037|AB|S66.522D|ICD10CM|Lacerat intrns musc/fasc/tend r mid fngr at wrs/hnd lv, subs|Lacerat intrns musc/fasc/tend r mid fngr at wrs/hnd lv, subs +C2855555|T037|AB|S66.522S|ICD10CM|Lacerat intrns musc/fasc/tend r mid fngr at wrs/hnd lv, sqla|Lacerat intrns musc/fasc/tend r mid fngr at wrs/hnd lv, sqla +C2855556|T037|AB|S66.523|ICD10CM|Lacerat intrinsic musc/fasc/tend l mid finger at wrs/hnd lv|Lacerat intrinsic musc/fasc/tend l mid finger at wrs/hnd lv +C2855556|T037|HT|S66.523|ICD10CM|Laceration of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level|Laceration of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level +C2855557|T037|AB|S66.523A|ICD10CM|Lacerat intrns musc/fasc/tend l mid fngr at wrs/hnd lv, init|Lacerat intrns musc/fasc/tend l mid fngr at wrs/hnd lv, init +C2855558|T037|AB|S66.523D|ICD10CM|Lacerat intrns musc/fasc/tend l mid fngr at wrs/hnd lv, subs|Lacerat intrns musc/fasc/tend l mid fngr at wrs/hnd lv, subs +C2855559|T037|AB|S66.523S|ICD10CM|Lacerat intrns musc/fasc/tend l mid fngr at wrs/hnd lv, sqla|Lacerat intrns musc/fasc/tend l mid fngr at wrs/hnd lv, sqla +C2855560|T037|AB|S66.524|ICD10CM|Lacerat intrinsic musc/fasc/tend r rng fngr at wrs/hnd lv|Lacerat intrinsic musc/fasc/tend r rng fngr at wrs/hnd lv +C2855560|T037|HT|S66.524|ICD10CM|Laceration of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level|Laceration of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level +C2855561|T037|AB|S66.524A|ICD10CM|Lacerat intrns musc/fasc/tend r rng fngr at wrs/hnd lv, init|Lacerat intrns musc/fasc/tend r rng fngr at wrs/hnd lv, init +C2855562|T037|AB|S66.524D|ICD10CM|Lacerat intrns musc/fasc/tend r rng fngr at wrs/hnd lv, subs|Lacerat intrns musc/fasc/tend r rng fngr at wrs/hnd lv, subs +C2855563|T037|AB|S66.524S|ICD10CM|Lacerat intrns musc/fasc/tend r rng fngr at wrs/hnd lv, sqla|Lacerat intrns musc/fasc/tend r rng fngr at wrs/hnd lv, sqla +C2855564|T037|AB|S66.525|ICD10CM|Lacerat intrinsic musc/fasc/tend l rng fngr at wrs/hnd lv|Lacerat intrinsic musc/fasc/tend l rng fngr at wrs/hnd lv +C2855564|T037|HT|S66.525|ICD10CM|Laceration of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level|Laceration of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level +C2855565|T037|AB|S66.525A|ICD10CM|Lacerat intrns musc/fasc/tend l rng fngr at wrs/hnd lv, init|Lacerat intrns musc/fasc/tend l rng fngr at wrs/hnd lv, init +C2855566|T037|AB|S66.525D|ICD10CM|Lacerat intrns musc/fasc/tend l rng fngr at wrs/hnd lv, subs|Lacerat intrns musc/fasc/tend l rng fngr at wrs/hnd lv, subs +C2855567|T037|AB|S66.525S|ICD10CM|Lacerat intrns musc/fasc/tend l rng fngr at wrs/hnd lv, sqla|Lacerat intrns musc/fasc/tend l rng fngr at wrs/hnd lv, sqla +C2855568|T037|AB|S66.526|ICD10CM|Lacerat intrns musc/fasc/tend r little finger at wrs/hnd lv|Lacerat intrns musc/fasc/tend r little finger at wrs/hnd lv +C2855568|T037|HT|S66.526|ICD10CM|Laceration of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level|Laceration of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level +C2855569|T037|AB|S66.526A|ICD10CM|Lacerat intrns musc/fasc/tend r lit fngr at wrs/hnd lv, init|Lacerat intrns musc/fasc/tend r lit fngr at wrs/hnd lv, init +C2855570|T037|AB|S66.526D|ICD10CM|Lacerat intrns musc/fasc/tend r lit fngr at wrs/hnd lv, subs|Lacerat intrns musc/fasc/tend r lit fngr at wrs/hnd lv, subs +C2855571|T037|AB|S66.526S|ICD10CM|Lacerat intrns musc/fasc/tend r lit fngr at wrs/hnd lv, sqla|Lacerat intrns musc/fasc/tend r lit fngr at wrs/hnd lv, sqla +C2855572|T037|AB|S66.527|ICD10CM|Lacerat intrns musc/fasc/tend l little finger at wrs/hnd lv|Lacerat intrns musc/fasc/tend l little finger at wrs/hnd lv +C2855572|T037|HT|S66.527|ICD10CM|Laceration of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level|Laceration of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level +C2855573|T037|AB|S66.527A|ICD10CM|Lacerat intrns musc/fasc/tend l lit fngr at wrs/hnd lv, init|Lacerat intrns musc/fasc/tend l lit fngr at wrs/hnd lv, init +C2855574|T037|AB|S66.527D|ICD10CM|Lacerat intrns musc/fasc/tend l lit fngr at wrs/hnd lv, subs|Lacerat intrns musc/fasc/tend l lit fngr at wrs/hnd lv, subs +C2855575|T037|AB|S66.527S|ICD10CM|Lacerat intrns musc/fasc/tend l lit fngr at wrs/hnd lv, sqla|Lacerat intrns musc/fasc/tend l lit fngr at wrs/hnd lv, sqla +C2855577|T037|AB|S66.528|ICD10CM|Laceration of intrinsic musc/fasc/tend finger at wrs/hnd lv|Laceration of intrinsic musc/fasc/tend finger at wrs/hnd lv +C2855577|T037|HT|S66.528|ICD10CM|Laceration of intrinsic muscle, fascia and tendon of other finger at wrist and hand level|Laceration of intrinsic muscle, fascia and tendon of other finger at wrist and hand level +C2855578|T037|AB|S66.528A|ICD10CM|Lacerat intrinsic musc/fasc/tend finger at wrs/hnd lv, init|Lacerat intrinsic musc/fasc/tend finger at wrs/hnd lv, init +C2855579|T037|AB|S66.528D|ICD10CM|Lacerat intrinsic musc/fasc/tend finger at wrs/hnd lv, subs|Lacerat intrinsic musc/fasc/tend finger at wrs/hnd lv, subs +C2855580|T037|AB|S66.528S|ICD10CM|Lacerat intrns musc/fasc/tend finger at wrs/hnd lv, sequela|Lacerat intrns musc/fasc/tend finger at wrs/hnd lv, sequela +C2855580|T037|PT|S66.528S|ICD10CM|Laceration of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, sequela|Laceration of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, sequela +C2855581|T037|AB|S66.529|ICD10CM|Lacerat intrinsic musc/fasc/tend unsp finger at wrs/hnd lv|Lacerat intrinsic musc/fasc/tend unsp finger at wrs/hnd lv +C2855581|T037|HT|S66.529|ICD10CM|Laceration of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level|Laceration of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level +C2855582|T037|AB|S66.529A|ICD10CM|Lacerat intrns musc/fasc/tend unsp fngr at wrs/hnd lv, init|Lacerat intrns musc/fasc/tend unsp fngr at wrs/hnd lv, init +C2855583|T037|AB|S66.529D|ICD10CM|Lacerat intrns musc/fasc/tend unsp fngr at wrs/hnd lv, subs|Lacerat intrns musc/fasc/tend unsp fngr at wrs/hnd lv, subs +C2855584|T037|AB|S66.529S|ICD10CM|Lacerat intrns musc/fasc/tend unsp fngr at wrs/hnd lv, sqla|Lacerat intrns musc/fasc/tend unsp fngr at wrs/hnd lv, sqla +C2855458|T037|AB|S66.59|ICD10CM|Inj intrinsic musc/fasc/tend and unsp finger at wrs/hnd lv|Inj intrinsic musc/fasc/tend and unsp finger at wrs/hnd lv +C2855586|T037|AB|S66.590|ICD10CM|Inj intrinsic musc/fasc/tend r idx fngr at wrs/hnd lv|Inj intrinsic musc/fasc/tend r idx fngr at wrs/hnd lv +C2855586|T037|HT|S66.590|ICD10CM|Other injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level|Other injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level +C2855587|T037|AB|S66.590A|ICD10CM|Inj intrinsic musc/fasc/tend r idx fngr at wrs/hnd lv, init|Inj intrinsic musc/fasc/tend r idx fngr at wrs/hnd lv, init +C2855588|T037|AB|S66.590D|ICD10CM|Inj intrinsic musc/fasc/tend r idx fngr at wrs/hnd lv, subs|Inj intrinsic musc/fasc/tend r idx fngr at wrs/hnd lv, subs +C2855589|T037|AB|S66.590S|ICD10CM|Inj intrns musc/fasc/tend r idx fngr at wrs/hnd lv, sequela|Inj intrns musc/fasc/tend r idx fngr at wrs/hnd lv, sequela +C2855590|T037|AB|S66.591|ICD10CM|Inj intrinsic musc/fasc/tend left index finger at wrs/hnd lv|Inj intrinsic musc/fasc/tend left index finger at wrs/hnd lv +C2855590|T037|HT|S66.591|ICD10CM|Other injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level|Other injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level +C2855591|T037|AB|S66.591A|ICD10CM|Inj intrinsic musc/fasc/tend l idx fngr at wrs/hnd lv, init|Inj intrinsic musc/fasc/tend l idx fngr at wrs/hnd lv, init +C2855592|T037|AB|S66.591D|ICD10CM|Inj intrinsic musc/fasc/tend l idx fngr at wrs/hnd lv, subs|Inj intrinsic musc/fasc/tend l idx fngr at wrs/hnd lv, subs +C2855593|T037|AB|S66.591S|ICD10CM|Inj intrns musc/fasc/tend l idx fngr at wrs/hnd lv, sequela|Inj intrns musc/fasc/tend l idx fngr at wrs/hnd lv, sequela +C2855594|T037|AB|S66.592|ICD10CM|Inj intrinsic musc/fasc/tend r mid finger at wrs/hnd lv|Inj intrinsic musc/fasc/tend r mid finger at wrs/hnd lv +C2855594|T037|HT|S66.592|ICD10CM|Other injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level|Other injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level +C2855595|T037|AB|S66.592A|ICD10CM|Inj intrns musc/fasc/tend r mid finger at wrs/hnd lv, init|Inj intrns musc/fasc/tend r mid finger at wrs/hnd lv, init +C2855596|T037|AB|S66.592D|ICD10CM|Inj intrns musc/fasc/tend r mid finger at wrs/hnd lv, subs|Inj intrns musc/fasc/tend r mid finger at wrs/hnd lv, subs +C2855597|T037|AB|S66.592S|ICD10CM|Inj intrns musc/fasc/tend r mid finger at wrs/hnd lv, sqla|Inj intrns musc/fasc/tend r mid finger at wrs/hnd lv, sqla +C2855598|T037|AB|S66.593|ICD10CM|Inj intrinsic musc/fasc/tend l mid finger at wrs/hnd lv|Inj intrinsic musc/fasc/tend l mid finger at wrs/hnd lv +C2855598|T037|HT|S66.593|ICD10CM|Other injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level|Other injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level +C2855599|T037|AB|S66.593A|ICD10CM|Inj intrns musc/fasc/tend l mid finger at wrs/hnd lv, init|Inj intrns musc/fasc/tend l mid finger at wrs/hnd lv, init +C2855600|T037|AB|S66.593D|ICD10CM|Inj intrns musc/fasc/tend l mid finger at wrs/hnd lv, subs|Inj intrns musc/fasc/tend l mid finger at wrs/hnd lv, subs +C2855601|T037|AB|S66.593S|ICD10CM|Inj intrns musc/fasc/tend l mid finger at wrs/hnd lv, sqla|Inj intrns musc/fasc/tend l mid finger at wrs/hnd lv, sqla +C2855602|T037|AB|S66.594|ICD10CM|Inj intrinsic musc/fasc/tend right ring finger at wrs/hnd lv|Inj intrinsic musc/fasc/tend right ring finger at wrs/hnd lv +C2855602|T037|HT|S66.594|ICD10CM|Other injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level|Other injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level +C2855603|T037|AB|S66.594A|ICD10CM|Inj intrinsic musc/fasc/tend r rng fngr at wrs/hnd lv, init|Inj intrinsic musc/fasc/tend r rng fngr at wrs/hnd lv, init +C2855604|T037|AB|S66.594D|ICD10CM|Inj intrinsic musc/fasc/tend r rng fngr at wrs/hnd lv, subs|Inj intrinsic musc/fasc/tend r rng fngr at wrs/hnd lv, subs +C2855605|T037|AB|S66.594S|ICD10CM|Inj intrns musc/fasc/tend r rng fngr at wrs/hnd lv, sequela|Inj intrns musc/fasc/tend r rng fngr at wrs/hnd lv, sequela +C2855606|T037|AB|S66.595|ICD10CM|Inj intrinsic musc/fasc/tend left ring finger at wrs/hnd lv|Inj intrinsic musc/fasc/tend left ring finger at wrs/hnd lv +C2855606|T037|HT|S66.595|ICD10CM|Other injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level|Other injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level +C2855607|T037|AB|S66.595A|ICD10CM|Inj intrinsic musc/fasc/tend l rng fngr at wrs/hnd lv, init|Inj intrinsic musc/fasc/tend l rng fngr at wrs/hnd lv, init +C2855608|T037|AB|S66.595D|ICD10CM|Inj intrinsic musc/fasc/tend l rng fngr at wrs/hnd lv, subs|Inj intrinsic musc/fasc/tend l rng fngr at wrs/hnd lv, subs +C2855609|T037|AB|S66.595S|ICD10CM|Inj intrns musc/fasc/tend l rng fngr at wrs/hnd lv, sequela|Inj intrns musc/fasc/tend l rng fngr at wrs/hnd lv, sequela +C2855610|T037|AB|S66.596|ICD10CM|Inj intrinsic musc/fasc/tend r little finger at wrs/hnd lv|Inj intrinsic musc/fasc/tend r little finger at wrs/hnd lv +C2855610|T037|HT|S66.596|ICD10CM|Other injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level|Other injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level +C2855611|T037|AB|S66.596A|ICD10CM|Inj intrns musc/fasc/tend r little fngr at wrs/hnd lv, init|Inj intrns musc/fasc/tend r little fngr at wrs/hnd lv, init +C2855612|T037|AB|S66.596D|ICD10CM|Inj intrns musc/fasc/tend r little fngr at wrs/hnd lv, subs|Inj intrns musc/fasc/tend r little fngr at wrs/hnd lv, subs +C2855613|T037|AB|S66.596S|ICD10CM|Inj intrns musc/fasc/tend r little fngr at wrs/hnd lv, sqla|Inj intrns musc/fasc/tend r little fngr at wrs/hnd lv, sqla +C2855614|T037|AB|S66.597|ICD10CM|Inj intrinsic musc/fasc/tend l little finger at wrs/hnd lv|Inj intrinsic musc/fasc/tend l little finger at wrs/hnd lv +C2855614|T037|HT|S66.597|ICD10CM|Other injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level|Other injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level +C2855615|T037|AB|S66.597A|ICD10CM|Inj intrns musc/fasc/tend l little fngr at wrs/hnd lv, init|Inj intrns musc/fasc/tend l little fngr at wrs/hnd lv, init +C2855616|T037|AB|S66.597D|ICD10CM|Inj intrns musc/fasc/tend l little fngr at wrs/hnd lv, subs|Inj intrns musc/fasc/tend l little fngr at wrs/hnd lv, subs +C2855617|T037|AB|S66.597S|ICD10CM|Inj intrns musc/fasc/tend l little fngr at wrs/hnd lv, sqla|Inj intrns musc/fasc/tend l little fngr at wrs/hnd lv, sqla +C2855619|T037|AB|S66.598|ICD10CM|Inj intrinsic musc/fasc/tend finger at wrist and hand level|Inj intrinsic musc/fasc/tend finger at wrist and hand level +C2855619|T037|HT|S66.598|ICD10CM|Other injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level|Other injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level +C2855620|T037|AB|S66.598A|ICD10CM|Inj intrinsic musc/fasc/tend finger at wrs/hnd lv, init|Inj intrinsic musc/fasc/tend finger at wrs/hnd lv, init +C2855621|T037|AB|S66.598D|ICD10CM|Inj intrinsic musc/fasc/tend finger at wrs/hnd lv, subs|Inj intrinsic musc/fasc/tend finger at wrs/hnd lv, subs +C2855622|T037|AB|S66.598S|ICD10CM|Inj intrinsic musc/fasc/tend finger at wrs/hnd lv, sequela|Inj intrinsic musc/fasc/tend finger at wrs/hnd lv, sequela +C2855622|T037|PT|S66.598S|ICD10CM|Other injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, sequela|Other injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, sequela +C2855623|T037|AB|S66.599|ICD10CM|Inj intrinsic musc/fasc/tend unsp finger at wrs/hnd lv|Inj intrinsic musc/fasc/tend unsp finger at wrs/hnd lv +C2855623|T037|HT|S66.599|ICD10CM|Other injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level|Other injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level +C2855624|T037|AB|S66.599A|ICD10CM|Inj intrinsic musc/fasc/tend unsp finger at wrs/hnd lv, init|Inj intrinsic musc/fasc/tend unsp finger at wrs/hnd lv, init +C2855625|T037|AB|S66.599D|ICD10CM|Inj intrinsic musc/fasc/tend unsp finger at wrs/hnd lv, subs|Inj intrinsic musc/fasc/tend unsp finger at wrs/hnd lv, subs +C2855626|T037|AB|S66.599S|ICD10CM|Inj intrns musc/fasc/tend unsp finger at wrs/hnd lv, sequela|Inj intrns musc/fasc/tend unsp finger at wrs/hnd lv, sequela +C0495919|T037|PT|S66.6|ICD10|Injury of multiple flexor muscles and tendons at wrist and hand level|Injury of multiple flexor muscles and tendons at wrist and hand level +C0495920|T037|PT|S66.7|ICD10|Injury of multiple extensor muscles and tendons at wrist and hand level|Injury of multiple extensor muscles and tendons at wrist and hand level +C2855627|T037|AB|S66.8|ICD10CM|Injury of musc/fasc/tend at wrist and hand level|Injury of musc/fasc/tend at wrist and hand level +C0478315|T037|PT|S66.8|ICD10|Injury of other muscles and tendons at wrist and hand level|Injury of other muscles and tendons at wrist and hand level +C2855627|T037|HT|S66.8|ICD10CM|Injury of other specified muscles, fascia and tendons at wrist and hand level|Injury of other specified muscles, fascia and tendons at wrist and hand level +C2855628|T037|AB|S66.80|ICD10CM|Unsp injury of musc/fasc/tend at wrist and hand level|Unsp injury of musc/fasc/tend at wrist and hand level +C2855628|T037|HT|S66.80|ICD10CM|Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level|Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level +C2855629|T037|AB|S66.801|ICD10CM|Unsp injury of musc/fasc/tend at wrs/hnd lv, right hand|Unsp injury of musc/fasc/tend at wrs/hnd lv, right hand +C2855630|T037|AB|S66.801A|ICD10CM|Unsp injury of musc/fasc/tend at wrs/hnd lv, r hand, init|Unsp injury of musc/fasc/tend at wrs/hnd lv, r hand, init +C2855631|T037|AB|S66.801D|ICD10CM|Unsp injury of musc/fasc/tend at wrs/hnd lv, r hand, subs|Unsp injury of musc/fasc/tend at wrs/hnd lv, r hand, subs +C2855632|T037|AB|S66.801S|ICD10CM|Unsp injury of musc/fasc/tend at wrs/hnd lv, r hand, sequela|Unsp injury of musc/fasc/tend at wrs/hnd lv, r hand, sequela +C2855633|T037|AB|S66.802|ICD10CM|Unsp injury of musc/fasc/tend at wrs/hnd lv, left hand|Unsp injury of musc/fasc/tend at wrs/hnd lv, left hand +C2855633|T037|HT|S66.802|ICD10CM|Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, left hand|Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, left hand +C2855634|T037|AB|S66.802A|ICD10CM|Unsp injury of musc/fasc/tend at wrs/hnd lv, left hand, init|Unsp injury of musc/fasc/tend at wrs/hnd lv, left hand, init +C2855635|T037|AB|S66.802D|ICD10CM|Unsp injury of musc/fasc/tend at wrs/hnd lv, left hand, subs|Unsp injury of musc/fasc/tend at wrs/hnd lv, left hand, subs +C2855636|T037|AB|S66.802S|ICD10CM|Unsp inj musc/fasc/tend at wrs/hnd lv, left hand, sequela|Unsp inj musc/fasc/tend at wrs/hnd lv, left hand, sequela +C2855637|T037|AB|S66.809|ICD10CM|Unsp injury of musc/fasc/tend at wrs/hnd lv, unsp hand|Unsp injury of musc/fasc/tend at wrs/hnd lv, unsp hand +C2855638|T037|AB|S66.809A|ICD10CM|Unsp injury of musc/fasc/tend at wrs/hnd lv, unsp hand, init|Unsp injury of musc/fasc/tend at wrs/hnd lv, unsp hand, init +C2855639|T037|AB|S66.809D|ICD10CM|Unsp injury of musc/fasc/tend at wrs/hnd lv, unsp hand, subs|Unsp injury of musc/fasc/tend at wrs/hnd lv, unsp hand, subs +C2855640|T037|AB|S66.809S|ICD10CM|Unsp inj musc/fasc/tend at wrs/hnd lv, unsp hand, sequela|Unsp inj musc/fasc/tend at wrs/hnd lv, unsp hand, sequela +C2855641|T037|AB|S66.81|ICD10CM|Strain of musc/fasc/tend at wrist and hand level|Strain of musc/fasc/tend at wrist and hand level +C2855641|T037|HT|S66.81|ICD10CM|Strain of other specified muscles, fascia and tendons at wrist and hand level|Strain of other specified muscles, fascia and tendons at wrist and hand level +C2855642|T037|AB|S66.811|ICD10CM|Strain of musc/fasc/tend at wrist and hand level, right hand|Strain of musc/fasc/tend at wrist and hand level, right hand +C2855642|T037|HT|S66.811|ICD10CM|Strain of other specified muscles, fascia and tendons at wrist and hand level, right hand|Strain of other specified muscles, fascia and tendons at wrist and hand level, right hand +C2855643|T037|AB|S66.811A|ICD10CM|Strain of musc/fasc/tend at wrs/hnd lv, right hand, init|Strain of musc/fasc/tend at wrs/hnd lv, right hand, init +C2855644|T037|AB|S66.811D|ICD10CM|Strain of musc/fasc/tend at wrs/hnd lv, right hand, subs|Strain of musc/fasc/tend at wrs/hnd lv, right hand, subs +C2855645|T037|AB|S66.811S|ICD10CM|Strain of musc/fasc/tend at wrs/hnd lv, right hand, sequela|Strain of musc/fasc/tend at wrs/hnd lv, right hand, sequela +C2855645|T037|PT|S66.811S|ICD10CM|Strain of other specified muscles, fascia and tendons at wrist and hand level, right hand, sequela|Strain of other specified muscles, fascia and tendons at wrist and hand level, right hand, sequela +C2855646|T037|AB|S66.812|ICD10CM|Strain of musc/fasc/tend at wrist and hand level, left hand|Strain of musc/fasc/tend at wrist and hand level, left hand +C2855646|T037|HT|S66.812|ICD10CM|Strain of other specified muscles, fascia and tendons at wrist and hand level, left hand|Strain of other specified muscles, fascia and tendons at wrist and hand level, left hand +C2855647|T037|AB|S66.812A|ICD10CM|Strain of musc/fasc/tend at wrs/hnd lv, left hand, init|Strain of musc/fasc/tend at wrs/hnd lv, left hand, init +C2855648|T037|AB|S66.812D|ICD10CM|Strain of musc/fasc/tend at wrs/hnd lv, left hand, subs|Strain of musc/fasc/tend at wrs/hnd lv, left hand, subs +C2855649|T037|AB|S66.812S|ICD10CM|Strain of musc/fasc/tend at wrs/hnd lv, left hand, sequela|Strain of musc/fasc/tend at wrs/hnd lv, left hand, sequela +C2855649|T037|PT|S66.812S|ICD10CM|Strain of other specified muscles, fascia and tendons at wrist and hand level, left hand, sequela|Strain of other specified muscles, fascia and tendons at wrist and hand level, left hand, sequela +C2855650|T037|AB|S66.819|ICD10CM|Strain of musc/fasc/tend at wrist and hand level, unsp hand|Strain of musc/fasc/tend at wrist and hand level, unsp hand +C2855650|T037|HT|S66.819|ICD10CM|Strain of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand|Strain of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand +C2855651|T037|AB|S66.819A|ICD10CM|Strain of musc/fasc/tend at wrs/hnd lv, unsp hand, init|Strain of musc/fasc/tend at wrs/hnd lv, unsp hand, init +C2855652|T037|AB|S66.819D|ICD10CM|Strain of musc/fasc/tend at wrs/hnd lv, unsp hand, subs|Strain of musc/fasc/tend at wrs/hnd lv, unsp hand, subs +C2855653|T037|AB|S66.819S|ICD10CM|Strain of musc/fasc/tend at wrs/hnd lv, unsp hand, sequela|Strain of musc/fasc/tend at wrs/hnd lv, unsp hand, sequela +C2855654|T037|AB|S66.82|ICD10CM|Laceration of musc/fasc/tend at wrist and hand level|Laceration of musc/fasc/tend at wrist and hand level +C2855654|T037|HT|S66.82|ICD10CM|Laceration of other specified muscles, fascia and tendons at wrist and hand level|Laceration of other specified muscles, fascia and tendons at wrist and hand level +C2855655|T037|AB|S66.821|ICD10CM|Laceration of musc/fasc/tend at wrs/hnd lv, right hand|Laceration of musc/fasc/tend at wrs/hnd lv, right hand +C2855655|T037|HT|S66.821|ICD10CM|Laceration of other specified muscles, fascia and tendons at wrist and hand level, right hand|Laceration of other specified muscles, fascia and tendons at wrist and hand level, right hand +C2855656|T037|AB|S66.821A|ICD10CM|Laceration of musc/fasc/tend at wrs/hnd lv, right hand, init|Laceration of musc/fasc/tend at wrs/hnd lv, right hand, init +C2855657|T037|AB|S66.821D|ICD10CM|Laceration of musc/fasc/tend at wrs/hnd lv, right hand, subs|Laceration of musc/fasc/tend at wrs/hnd lv, right hand, subs +C2855658|T037|AB|S66.821S|ICD10CM|Lacerat musc/fasc/tend at wrs/hnd lv, right hand, sequela|Lacerat musc/fasc/tend at wrs/hnd lv, right hand, sequela +C2855659|T037|AB|S66.822|ICD10CM|Laceration of musc/fasc/tend at wrs/hnd lv, left hand|Laceration of musc/fasc/tend at wrs/hnd lv, left hand +C2855659|T037|HT|S66.822|ICD10CM|Laceration of other specified muscles, fascia and tendons at wrist and hand level, left hand|Laceration of other specified muscles, fascia and tendons at wrist and hand level, left hand +C2855660|T037|AB|S66.822A|ICD10CM|Laceration of musc/fasc/tend at wrs/hnd lv, left hand, init|Laceration of musc/fasc/tend at wrs/hnd lv, left hand, init +C2855661|T037|AB|S66.822D|ICD10CM|Laceration of musc/fasc/tend at wrs/hnd lv, left hand, subs|Laceration of musc/fasc/tend at wrs/hnd lv, left hand, subs +C2855662|T037|AB|S66.822S|ICD10CM|Lacerat musc/fasc/tend at wrs/hnd lv, left hand, sequela|Lacerat musc/fasc/tend at wrs/hnd lv, left hand, sequela +C2855663|T037|AB|S66.829|ICD10CM|Laceration of musc/fasc/tend at wrs/hnd lv, unsp hand|Laceration of musc/fasc/tend at wrs/hnd lv, unsp hand +C2855663|T037|HT|S66.829|ICD10CM|Laceration of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand|Laceration of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand +C2855664|T037|AB|S66.829A|ICD10CM|Laceration of musc/fasc/tend at wrs/hnd lv, unsp hand, init|Laceration of musc/fasc/tend at wrs/hnd lv, unsp hand, init +C2855665|T037|AB|S66.829D|ICD10CM|Laceration of musc/fasc/tend at wrs/hnd lv, unsp hand, subs|Laceration of musc/fasc/tend at wrs/hnd lv, unsp hand, subs +C2855666|T037|AB|S66.829S|ICD10CM|Lacerat musc/fasc/tend at wrs/hnd lv, unsp hand, sequela|Lacerat musc/fasc/tend at wrs/hnd lv, unsp hand, sequela +C2855667|T037|AB|S66.89|ICD10CM|Oth injury of musc/fasc/tend at wrist and hand level|Oth injury of musc/fasc/tend at wrist and hand level +C2855667|T037|HT|S66.89|ICD10CM|Other injury of other specified muscles, fascia and tendons at wrist and hand level|Other injury of other specified muscles, fascia and tendons at wrist and hand level +C2855668|T037|AB|S66.891|ICD10CM|Inj musc/fasc/tend at wrist and hand level, right hand|Inj musc/fasc/tend at wrist and hand level, right hand +C2855668|T037|HT|S66.891|ICD10CM|Other injury of other specified muscles, fascia and tendons at wrist and hand level, right hand|Other injury of other specified muscles, fascia and tendons at wrist and hand level, right hand +C2855669|T037|AB|S66.891A|ICD10CM|Inj musc/fasc/tend at wrist and hand level, right hand, init|Inj musc/fasc/tend at wrist and hand level, right hand, init +C2855670|T037|AB|S66.891D|ICD10CM|Inj musc/fasc/tend at wrist and hand level, right hand, subs|Inj musc/fasc/tend at wrist and hand level, right hand, subs +C2855671|T037|AB|S66.891S|ICD10CM|Inj musc/fasc/tend at wrs/hnd lv, right hand, sequela|Inj musc/fasc/tend at wrs/hnd lv, right hand, sequela +C2855672|T037|AB|S66.892|ICD10CM|Inj musc/fasc/tend at wrist and hand level, left hand|Inj musc/fasc/tend at wrist and hand level, left hand +C2855672|T037|HT|S66.892|ICD10CM|Other injury of other specified muscles, fascia and tendons at wrist and hand level, left hand|Other injury of other specified muscles, fascia and tendons at wrist and hand level, left hand +C2855673|T037|AB|S66.892A|ICD10CM|Inj musc/fasc/tend at wrist and hand level, left hand, init|Inj musc/fasc/tend at wrist and hand level, left hand, init +C2855674|T037|AB|S66.892D|ICD10CM|Inj musc/fasc/tend at wrist and hand level, left hand, subs|Inj musc/fasc/tend at wrist and hand level, left hand, subs +C2855675|T037|AB|S66.892S|ICD10CM|Inj musc/fasc/tend at wrs/hnd lv, left hand, sequela|Inj musc/fasc/tend at wrs/hnd lv, left hand, sequela +C2855676|T037|AB|S66.899|ICD10CM|Inj musc/fasc/tend at wrist and hand level, unsp hand|Inj musc/fasc/tend at wrist and hand level, unsp hand +C2855677|T037|AB|S66.899A|ICD10CM|Inj musc/fasc/tend at wrist and hand level, unsp hand, init|Inj musc/fasc/tend at wrist and hand level, unsp hand, init +C2855678|T037|AB|S66.899D|ICD10CM|Inj musc/fasc/tend at wrist and hand level, unsp hand, subs|Inj musc/fasc/tend at wrist and hand level, unsp hand, subs +C2855679|T037|AB|S66.899S|ICD10CM|Inj musc/fasc/tend at wrs/hnd lv, unsp hand, sequela|Inj musc/fasc/tend at wrs/hnd lv, unsp hand, sequela +C2855680|T037|AB|S66.9|ICD10CM|Injury of unsp musc/fasc/tend at wrist and hand level|Injury of unsp musc/fasc/tend at wrist and hand level +C0478316|T037|PT|S66.9|ICD10|Injury of unspecified muscle and tendon at wrist and hand level|Injury of unspecified muscle and tendon at wrist and hand level +C2855680|T037|HT|S66.9|ICD10CM|Injury of unspecified muscle, fascia and tendon at wrist and hand level|Injury of unspecified muscle, fascia and tendon at wrist and hand level +C2855681|T037|AB|S66.90|ICD10CM|Unsp injury of unsp musc/fasc/tend at wrist and hand level|Unsp injury of unsp musc/fasc/tend at wrist and hand level +C2855681|T037|HT|S66.90|ICD10CM|Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level|Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level +C2855682|T037|AB|S66.901|ICD10CM|Unsp injury of unsp musc/fasc/tend at wrs/hnd lv, right hand|Unsp injury of unsp musc/fasc/tend at wrs/hnd lv, right hand +C2855682|T037|HT|S66.901|ICD10CM|Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand|Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand +C2855683|T037|AB|S66.901A|ICD10CM|Unsp inj unsp musc/fasc/tend at wrs/hnd lv, r hand, init|Unsp inj unsp musc/fasc/tend at wrs/hnd lv, r hand, init +C2855684|T037|AB|S66.901D|ICD10CM|Unsp inj unsp musc/fasc/tend at wrs/hnd lv, r hand, subs|Unsp inj unsp musc/fasc/tend at wrs/hnd lv, r hand, subs +C2855685|T037|AB|S66.901S|ICD10CM|Unsp inj unsp musc/fasc/tend at wrs/hnd lv, r hand, sequela|Unsp inj unsp musc/fasc/tend at wrs/hnd lv, r hand, sequela +C2855686|T037|AB|S66.902|ICD10CM|Unsp injury of unsp musc/fasc/tend at wrs/hnd lv, left hand|Unsp injury of unsp musc/fasc/tend at wrs/hnd lv, left hand +C2855686|T037|HT|S66.902|ICD10CM|Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand|Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand +C2855687|T037|AB|S66.902A|ICD10CM|Unsp inj unsp musc/fasc/tend at wrs/hnd lv, left hand, init|Unsp inj unsp musc/fasc/tend at wrs/hnd lv, left hand, init +C2855688|T037|AB|S66.902D|ICD10CM|Unsp inj unsp musc/fasc/tend at wrs/hnd lv, left hand, subs|Unsp inj unsp musc/fasc/tend at wrs/hnd lv, left hand, subs +C2855689|T037|AB|S66.902S|ICD10CM|Unsp inj unsp musc/fasc/tend at wrs/hnd lv, l hand, sequela|Unsp inj unsp musc/fasc/tend at wrs/hnd lv, l hand, sequela +C2855690|T037|AB|S66.909|ICD10CM|Unsp injury of unsp musc/fasc/tend at wrs/hnd lv, unsp hand|Unsp injury of unsp musc/fasc/tend at wrs/hnd lv, unsp hand +C2855691|T037|AB|S66.909A|ICD10CM|Unsp inj unsp musc/fasc/tend at wrs/hnd lv, unsp hand, init|Unsp inj unsp musc/fasc/tend at wrs/hnd lv, unsp hand, init +C2855692|T037|AB|S66.909D|ICD10CM|Unsp inj unsp musc/fasc/tend at wrs/hnd lv, unsp hand, subs|Unsp inj unsp musc/fasc/tend at wrs/hnd lv, unsp hand, subs +C2855693|T037|AB|S66.909S|ICD10CM|Unsp inj unsp musc/fasc/tend at wrs/hnd lv, unsp hand, sqla|Unsp inj unsp musc/fasc/tend at wrs/hnd lv, unsp hand, sqla +C2855694|T037|AB|S66.91|ICD10CM|Strain of unsp musc/fasc/tend at wrist and hand level|Strain of unsp musc/fasc/tend at wrist and hand level +C2855694|T037|HT|S66.91|ICD10CM|Strain of unspecified muscle, fascia and tendon at wrist and hand level|Strain of unspecified muscle, fascia and tendon at wrist and hand level +C2855695|T037|AB|S66.911|ICD10CM|Strain of unsp musc/fasc/tend at wrs/hnd lv, right hand|Strain of unsp musc/fasc/tend at wrs/hnd lv, right hand +C2855695|T037|HT|S66.911|ICD10CM|Strain of unspecified muscle, fascia and tendon at wrist and hand level, right hand|Strain of unspecified muscle, fascia and tendon at wrist and hand level, right hand +C2855696|T037|AB|S66.911A|ICD10CM|Strain of unsp musc/fasc/tend at wrs/hnd lv, r hand, init|Strain of unsp musc/fasc/tend at wrs/hnd lv, r hand, init +C2855697|T037|AB|S66.911D|ICD10CM|Strain of unsp musc/fasc/tend at wrs/hnd lv, r hand, subs|Strain of unsp musc/fasc/tend at wrs/hnd lv, r hand, subs +C2855698|T037|AB|S66.911S|ICD10CM|Strain of unsp musc/fasc/tend at wrs/hnd lv, r hand, sequela|Strain of unsp musc/fasc/tend at wrs/hnd lv, r hand, sequela +C2855698|T037|PT|S66.911S|ICD10CM|Strain of unspecified muscle, fascia and tendon at wrist and hand level, right hand, sequela|Strain of unspecified muscle, fascia and tendon at wrist and hand level, right hand, sequela +C2855699|T037|AB|S66.912|ICD10CM|Strain of unsp musc/fasc/tend at wrs/hnd lv, left hand|Strain of unsp musc/fasc/tend at wrs/hnd lv, left hand +C2855699|T037|HT|S66.912|ICD10CM|Strain of unspecified muscle, fascia and tendon at wrist and hand level, left hand|Strain of unspecified muscle, fascia and tendon at wrist and hand level, left hand +C2855700|T037|AB|S66.912A|ICD10CM|Strain of unsp musc/fasc/tend at wrs/hnd lv, left hand, init|Strain of unsp musc/fasc/tend at wrs/hnd lv, left hand, init +C2855701|T037|AB|S66.912D|ICD10CM|Strain of unsp musc/fasc/tend at wrs/hnd lv, left hand, subs|Strain of unsp musc/fasc/tend at wrs/hnd lv, left hand, subs +C2855702|T037|AB|S66.912S|ICD10CM|Strain of unsp musc/fasc/tend at wrs/hnd lv, l hand, sequela|Strain of unsp musc/fasc/tend at wrs/hnd lv, l hand, sequela +C2855702|T037|PT|S66.912S|ICD10CM|Strain of unspecified muscle, fascia and tendon at wrist and hand level, left hand, sequela|Strain of unspecified muscle, fascia and tendon at wrist and hand level, left hand, sequela +C2855703|T037|AB|S66.919|ICD10CM|Strain of unsp musc/fasc/tend at wrs/hnd lv, unsp hand|Strain of unsp musc/fasc/tend at wrs/hnd lv, unsp hand +C2855703|T037|HT|S66.919|ICD10CM|Strain of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand|Strain of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand +C2855704|T037|AB|S66.919A|ICD10CM|Strain of unsp musc/fasc/tend at wrs/hnd lv, unsp hand, init|Strain of unsp musc/fasc/tend at wrs/hnd lv, unsp hand, init +C2855705|T037|AB|S66.919D|ICD10CM|Strain of unsp musc/fasc/tend at wrs/hnd lv, unsp hand, subs|Strain of unsp musc/fasc/tend at wrs/hnd lv, unsp hand, subs +C2855706|T037|PT|S66.919S|ICD10CM|Strain of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, sequela|Strain of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, sequela +C2855706|T037|AB|S66.919S|ICD10CM|Strain unsp musc/fasc/tend at wrs/hnd lv, unsp hand, sequela|Strain unsp musc/fasc/tend at wrs/hnd lv, unsp hand, sequela +C2855707|T037|AB|S66.92|ICD10CM|Laceration of unsp musc/fasc/tend at wrist and hand level|Laceration of unsp musc/fasc/tend at wrist and hand level +C2855707|T037|HT|S66.92|ICD10CM|Laceration of unspecified muscle, fascia and tendon at wrist and hand level|Laceration of unspecified muscle, fascia and tendon at wrist and hand level +C2855708|T037|AB|S66.921|ICD10CM|Laceration of unsp musc/fasc/tend at wrs/hnd lv, right hand|Laceration of unsp musc/fasc/tend at wrs/hnd lv, right hand +C2855708|T037|HT|S66.921|ICD10CM|Laceration of unspecified muscle, fascia and tendon at wrist and hand level, right hand|Laceration of unspecified muscle, fascia and tendon at wrist and hand level, right hand +C2855709|T037|AB|S66.921A|ICD10CM|Lacerat unsp musc/fasc/tend at wrs/hnd lv, right hand, init|Lacerat unsp musc/fasc/tend at wrs/hnd lv, right hand, init +C2855710|T037|AB|S66.921D|ICD10CM|Lacerat unsp musc/fasc/tend at wrs/hnd lv, right hand, subs|Lacerat unsp musc/fasc/tend at wrs/hnd lv, right hand, subs +C2855711|T037|AB|S66.921S|ICD10CM|Lacerat unsp musc/fasc/tend at wrs/hnd lv, r hand, sequela|Lacerat unsp musc/fasc/tend at wrs/hnd lv, r hand, sequela +C2855711|T037|PT|S66.921S|ICD10CM|Laceration of unspecified muscle, fascia and tendon at wrist and hand level, right hand, sequela|Laceration of unspecified muscle, fascia and tendon at wrist and hand level, right hand, sequela +C2855712|T037|AB|S66.922|ICD10CM|Laceration of unsp musc/fasc/tend at wrs/hnd lv, left hand|Laceration of unsp musc/fasc/tend at wrs/hnd lv, left hand +C2855712|T037|HT|S66.922|ICD10CM|Laceration of unspecified muscle, fascia and tendon at wrist and hand level, left hand|Laceration of unspecified muscle, fascia and tendon at wrist and hand level, left hand +C2855713|T037|AB|S66.922A|ICD10CM|Lacerat unsp musc/fasc/tend at wrs/hnd lv, left hand, init|Lacerat unsp musc/fasc/tend at wrs/hnd lv, left hand, init +C2855714|T037|AB|S66.922D|ICD10CM|Lacerat unsp musc/fasc/tend at wrs/hnd lv, left hand, subs|Lacerat unsp musc/fasc/tend at wrs/hnd lv, left hand, subs +C2855715|T037|AB|S66.922S|ICD10CM|Lacerat unsp musc/fasc/tend at wrs/hnd lv, l hand, sequela|Lacerat unsp musc/fasc/tend at wrs/hnd lv, l hand, sequela +C2855715|T037|PT|S66.922S|ICD10CM|Laceration of unspecified muscle, fascia and tendon at wrist and hand level, left hand, sequela|Laceration of unspecified muscle, fascia and tendon at wrist and hand level, left hand, sequela +C2855716|T037|AB|S66.929|ICD10CM|Laceration of unsp musc/fasc/tend at wrs/hnd lv, unsp hand|Laceration of unsp musc/fasc/tend at wrs/hnd lv, unsp hand +C2855716|T037|HT|S66.929|ICD10CM|Laceration of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand|Laceration of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand +C2855717|T037|AB|S66.929A|ICD10CM|Lacerat unsp musc/fasc/tend at wrs/hnd lv, unsp hand, init|Lacerat unsp musc/fasc/tend at wrs/hnd lv, unsp hand, init +C2855718|T037|AB|S66.929D|ICD10CM|Lacerat unsp musc/fasc/tend at wrs/hnd lv, unsp hand, subs|Lacerat unsp musc/fasc/tend at wrs/hnd lv, unsp hand, subs +C2855719|T037|AB|S66.929S|ICD10CM|Lacerat unsp musc/fasc/tend at wrs/hnd lv, unsp hand, sqla|Lacerat unsp musc/fasc/tend at wrs/hnd lv, unsp hand, sqla +C2855720|T037|AB|S66.99|ICD10CM|Inj unsp muscle, fascia and tendon at wrist and hand level|Inj unsp muscle, fascia and tendon at wrist and hand level +C2855720|T037|HT|S66.99|ICD10CM|Other injury of unspecified muscle, fascia and tendon at wrist and hand level|Other injury of unspecified muscle, fascia and tendon at wrist and hand level +C2855721|T037|AB|S66.991|ICD10CM|Inj unsp musc/fasc/tend at wrist and hand level, right hand|Inj unsp musc/fasc/tend at wrist and hand level, right hand +C2855721|T037|HT|S66.991|ICD10CM|Other injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand|Other injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand +C2855722|T037|AB|S66.991A|ICD10CM|Inj unsp musc/fasc/tend at wrs/hnd lv, right hand, init|Inj unsp musc/fasc/tend at wrs/hnd lv, right hand, init +C2855723|T037|AB|S66.991D|ICD10CM|Inj unsp musc/fasc/tend at wrs/hnd lv, right hand, subs|Inj unsp musc/fasc/tend at wrs/hnd lv, right hand, subs +C2855724|T037|AB|S66.991S|ICD10CM|Inj unsp musc/fasc/tend at wrs/hnd lv, right hand, sequela|Inj unsp musc/fasc/tend at wrs/hnd lv, right hand, sequela +C2855724|T037|PT|S66.991S|ICD10CM|Other injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, sequela|Other injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, sequela +C2855725|T037|AB|S66.992|ICD10CM|Inj unsp musc/fasc/tend at wrist and hand level, left hand|Inj unsp musc/fasc/tend at wrist and hand level, left hand +C2855725|T037|HT|S66.992|ICD10CM|Other injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand|Other injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand +C2855726|T037|AB|S66.992A|ICD10CM|Inj unsp musc/fasc/tend at wrs/hnd lv, left hand, init|Inj unsp musc/fasc/tend at wrs/hnd lv, left hand, init +C2855727|T037|AB|S66.992D|ICD10CM|Inj unsp musc/fasc/tend at wrs/hnd lv, left hand, subs|Inj unsp musc/fasc/tend at wrs/hnd lv, left hand, subs +C2855728|T037|AB|S66.992S|ICD10CM|Inj unsp musc/fasc/tend at wrs/hnd lv, left hand, sequela|Inj unsp musc/fasc/tend at wrs/hnd lv, left hand, sequela +C2855728|T037|PT|S66.992S|ICD10CM|Other injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, sequela|Other injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, sequela +C2855729|T037|AB|S66.999|ICD10CM|Inj unsp musc/fasc/tend at wrist and hand level, unsp hand|Inj unsp musc/fasc/tend at wrist and hand level, unsp hand +C2855729|T037|HT|S66.999|ICD10CM|Other injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand|Other injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand +C2855730|T037|AB|S66.999A|ICD10CM|Inj unsp musc/fasc/tend at wrs/hnd lv, unsp hand, init|Inj unsp musc/fasc/tend at wrs/hnd lv, unsp hand, init +C2855731|T037|AB|S66.999D|ICD10CM|Inj unsp musc/fasc/tend at wrs/hnd lv, unsp hand, subs|Inj unsp musc/fasc/tend at wrs/hnd lv, unsp hand, subs +C2855732|T037|AB|S66.999S|ICD10CM|Inj unsp musc/fasc/tend at wrs/hnd lv, unsp hand, sequela|Inj unsp musc/fasc/tend at wrs/hnd lv, unsp hand, sequela +C3495376|T037|HT|S67|ICD10|Crushing injury of wrist and hand|Crushing injury of wrist and hand +C1394248|T037|AB|S67|ICD10CM|Crushing injury of wrist, hand and fingers|Crushing injury of wrist, hand and fingers +C1394248|T037|HT|S67|ICD10CM|Crushing injury of wrist, hand and fingers|Crushing injury of wrist, hand and fingers +C0555299|T037|AB|S67.0|ICD10CM|Crushing injury of thumb|Crushing injury of thumb +C0555299|T037|HT|S67.0|ICD10CM|Crushing injury of thumb|Crushing injury of thumb +C0495921|T037|PT|S67.0|ICD10|Crushing injury of thumb and other finger(s)|Crushing injury of thumb and other finger(s) +C2855733|T037|AB|S67.00|ICD10CM|Crushing injury of unspecified thumb|Crushing injury of unspecified thumb +C2855733|T037|HT|S67.00|ICD10CM|Crushing injury of unspecified thumb|Crushing injury of unspecified thumb +C2977948|T037|AB|S67.00XA|ICD10CM|Crushing injury of unspecified thumb, initial encounter|Crushing injury of unspecified thumb, initial encounter +C2977948|T037|PT|S67.00XA|ICD10CM|Crushing injury of unspecified thumb, initial encounter|Crushing injury of unspecified thumb, initial encounter +C2977949|T037|AB|S67.00XD|ICD10CM|Crushing injury of unspecified thumb, subsequent encounter|Crushing injury of unspecified thumb, subsequent encounter +C2977949|T037|PT|S67.00XD|ICD10CM|Crushing injury of unspecified thumb, subsequent encounter|Crushing injury of unspecified thumb, subsequent encounter +C2977950|T037|AB|S67.00XS|ICD10CM|Crushing injury of unspecified thumb, sequela|Crushing injury of unspecified thumb, sequela +C2977950|T037|PT|S67.00XS|ICD10CM|Crushing injury of unspecified thumb, sequela|Crushing injury of unspecified thumb, sequela +C2855737|T037|AB|S67.01|ICD10CM|Crushing injury of right thumb|Crushing injury of right thumb +C2855737|T037|HT|S67.01|ICD10CM|Crushing injury of right thumb|Crushing injury of right thumb +C2855738|T037|AB|S67.01XA|ICD10CM|Crushing injury of right thumb, initial encounter|Crushing injury of right thumb, initial encounter +C2855738|T037|PT|S67.01XA|ICD10CM|Crushing injury of right thumb, initial encounter|Crushing injury of right thumb, initial encounter +C2855739|T037|AB|S67.01XD|ICD10CM|Crushing injury of right thumb, subsequent encounter|Crushing injury of right thumb, subsequent encounter +C2855739|T037|PT|S67.01XD|ICD10CM|Crushing injury of right thumb, subsequent encounter|Crushing injury of right thumb, subsequent encounter +C2855740|T037|AB|S67.01XS|ICD10CM|Crushing injury of right thumb, sequela|Crushing injury of right thumb, sequela +C2855740|T037|PT|S67.01XS|ICD10CM|Crushing injury of right thumb, sequela|Crushing injury of right thumb, sequela +C2855741|T037|AB|S67.02|ICD10CM|Crushing injury of left thumb|Crushing injury of left thumb +C2855741|T037|HT|S67.02|ICD10CM|Crushing injury of left thumb|Crushing injury of left thumb +C2855742|T037|AB|S67.02XA|ICD10CM|Crushing injury of left thumb, initial encounter|Crushing injury of left thumb, initial encounter +C2855742|T037|PT|S67.02XA|ICD10CM|Crushing injury of left thumb, initial encounter|Crushing injury of left thumb, initial encounter +C2855743|T037|AB|S67.02XD|ICD10CM|Crushing injury of left thumb, subsequent encounter|Crushing injury of left thumb, subsequent encounter +C2855743|T037|PT|S67.02XD|ICD10CM|Crushing injury of left thumb, subsequent encounter|Crushing injury of left thumb, subsequent encounter +C2855744|T037|AB|S67.02XS|ICD10CM|Crushing injury of left thumb, sequela|Crushing injury of left thumb, sequela +C2855744|T037|PT|S67.02XS|ICD10CM|Crushing injury of left thumb, sequela|Crushing injury of left thumb, sequela +C2855745|T037|AB|S67.1|ICD10CM|Crushing injury of other and unspecified finger(s)|Crushing injury of other and unspecified finger(s) +C2855745|T037|HT|S67.1|ICD10CM|Crushing injury of other and unspecified finger(s)|Crushing injury of other and unspecified finger(s) +C2855746|T037|AB|S67.10|ICD10CM|Crushing injury of unspecified finger(s)|Crushing injury of unspecified finger(s) +C2855746|T037|HT|S67.10|ICD10CM|Crushing injury of unspecified finger(s)|Crushing injury of unspecified finger(s) +C2855747|T037|AB|S67.10XA|ICD10CM|Crushing injury of unspecified finger(s), initial encounter|Crushing injury of unspecified finger(s), initial encounter +C2855747|T037|PT|S67.10XA|ICD10CM|Crushing injury of unspecified finger(s), initial encounter|Crushing injury of unspecified finger(s), initial encounter +C2855748|T037|AB|S67.10XD|ICD10CM|Crushing injury of unspecified finger(s), subs encntr|Crushing injury of unspecified finger(s), subs encntr +C2855748|T037|PT|S67.10XD|ICD10CM|Crushing injury of unspecified finger(s), subsequent encounter|Crushing injury of unspecified finger(s), subsequent encounter +C2855749|T037|AB|S67.10XS|ICD10CM|Crushing injury of unspecified finger(s), sequela|Crushing injury of unspecified finger(s), sequela +C2855749|T037|PT|S67.10XS|ICD10CM|Crushing injury of unspecified finger(s), sequela|Crushing injury of unspecified finger(s), sequela +C2855750|T037|AB|S67.19|ICD10CM|Crushing injury of other finger(s)|Crushing injury of other finger(s) +C2855750|T037|HT|S67.19|ICD10CM|Crushing injury of other finger(s)|Crushing injury of other finger(s) +C2855751|T037|AB|S67.190|ICD10CM|Crushing injury of right index finger|Crushing injury of right index finger +C2855751|T037|HT|S67.190|ICD10CM|Crushing injury of right index finger|Crushing injury of right index finger +C2855752|T037|AB|S67.190A|ICD10CM|Crushing injury of right index finger, initial encounter|Crushing injury of right index finger, initial encounter +C2855752|T037|PT|S67.190A|ICD10CM|Crushing injury of right index finger, initial encounter|Crushing injury of right index finger, initial encounter +C2855753|T037|AB|S67.190D|ICD10CM|Crushing injury of right index finger, subsequent encounter|Crushing injury of right index finger, subsequent encounter +C2855753|T037|PT|S67.190D|ICD10CM|Crushing injury of right index finger, subsequent encounter|Crushing injury of right index finger, subsequent encounter +C2855754|T037|AB|S67.190S|ICD10CM|Crushing injury of right index finger, sequela|Crushing injury of right index finger, sequela +C2855754|T037|PT|S67.190S|ICD10CM|Crushing injury of right index finger, sequela|Crushing injury of right index finger, sequela +C2855755|T037|AB|S67.191|ICD10CM|Crushing injury of left index finger|Crushing injury of left index finger +C2855755|T037|HT|S67.191|ICD10CM|Crushing injury of left index finger|Crushing injury of left index finger +C2855756|T037|AB|S67.191A|ICD10CM|Crushing injury of left index finger, initial encounter|Crushing injury of left index finger, initial encounter +C2855756|T037|PT|S67.191A|ICD10CM|Crushing injury of left index finger, initial encounter|Crushing injury of left index finger, initial encounter +C2855757|T037|AB|S67.191D|ICD10CM|Crushing injury of left index finger, subsequent encounter|Crushing injury of left index finger, subsequent encounter +C2855757|T037|PT|S67.191D|ICD10CM|Crushing injury of left index finger, subsequent encounter|Crushing injury of left index finger, subsequent encounter +C2855758|T037|AB|S67.191S|ICD10CM|Crushing injury of left index finger, sequela|Crushing injury of left index finger, sequela +C2855758|T037|PT|S67.191S|ICD10CM|Crushing injury of left index finger, sequela|Crushing injury of left index finger, sequela +C2855759|T037|AB|S67.192|ICD10CM|Crushing injury of right middle finger|Crushing injury of right middle finger +C2855759|T037|HT|S67.192|ICD10CM|Crushing injury of right middle finger|Crushing injury of right middle finger +C2855760|T037|AB|S67.192A|ICD10CM|Crushing injury of right middle finger, initial encounter|Crushing injury of right middle finger, initial encounter +C2855760|T037|PT|S67.192A|ICD10CM|Crushing injury of right middle finger, initial encounter|Crushing injury of right middle finger, initial encounter +C2855761|T037|AB|S67.192D|ICD10CM|Crushing injury of right middle finger, subsequent encounter|Crushing injury of right middle finger, subsequent encounter +C2855761|T037|PT|S67.192D|ICD10CM|Crushing injury of right middle finger, subsequent encounter|Crushing injury of right middle finger, subsequent encounter +C2855762|T037|AB|S67.192S|ICD10CM|Crushing injury of right middle finger, sequela|Crushing injury of right middle finger, sequela +C2855762|T037|PT|S67.192S|ICD10CM|Crushing injury of right middle finger, sequela|Crushing injury of right middle finger, sequela +C2855763|T037|AB|S67.193|ICD10CM|Crushing injury of left middle finger|Crushing injury of left middle finger +C2855763|T037|HT|S67.193|ICD10CM|Crushing injury of left middle finger|Crushing injury of left middle finger +C2855764|T037|AB|S67.193A|ICD10CM|Crushing injury of left middle finger, initial encounter|Crushing injury of left middle finger, initial encounter +C2855764|T037|PT|S67.193A|ICD10CM|Crushing injury of left middle finger, initial encounter|Crushing injury of left middle finger, initial encounter +C2855765|T037|AB|S67.193D|ICD10CM|Crushing injury of left middle finger, subsequent encounter|Crushing injury of left middle finger, subsequent encounter +C2855765|T037|PT|S67.193D|ICD10CM|Crushing injury of left middle finger, subsequent encounter|Crushing injury of left middle finger, subsequent encounter +C2855766|T037|AB|S67.193S|ICD10CM|Crushing injury of left middle finger, sequela|Crushing injury of left middle finger, sequela +C2855766|T037|PT|S67.193S|ICD10CM|Crushing injury of left middle finger, sequela|Crushing injury of left middle finger, sequela +C2855767|T037|AB|S67.194|ICD10CM|Crushing injury of right ring finger|Crushing injury of right ring finger +C2855767|T037|HT|S67.194|ICD10CM|Crushing injury of right ring finger|Crushing injury of right ring finger +C2855768|T037|AB|S67.194A|ICD10CM|Crushing injury of right ring finger, initial encounter|Crushing injury of right ring finger, initial encounter +C2855768|T037|PT|S67.194A|ICD10CM|Crushing injury of right ring finger, initial encounter|Crushing injury of right ring finger, initial encounter +C2855769|T037|AB|S67.194D|ICD10CM|Crushing injury of right ring finger, subsequent encounter|Crushing injury of right ring finger, subsequent encounter +C2855769|T037|PT|S67.194D|ICD10CM|Crushing injury of right ring finger, subsequent encounter|Crushing injury of right ring finger, subsequent encounter +C2855770|T037|AB|S67.194S|ICD10CM|Crushing injury of right ring finger, sequela|Crushing injury of right ring finger, sequela +C2855770|T037|PT|S67.194S|ICD10CM|Crushing injury of right ring finger, sequela|Crushing injury of right ring finger, sequela +C2855771|T037|AB|S67.195|ICD10CM|Crushing injury of left ring finger|Crushing injury of left ring finger +C2855771|T037|HT|S67.195|ICD10CM|Crushing injury of left ring finger|Crushing injury of left ring finger +C2855772|T037|AB|S67.195A|ICD10CM|Crushing injury of left ring finger, initial encounter|Crushing injury of left ring finger, initial encounter +C2855772|T037|PT|S67.195A|ICD10CM|Crushing injury of left ring finger, initial encounter|Crushing injury of left ring finger, initial encounter +C2855773|T037|AB|S67.195D|ICD10CM|Crushing injury of left ring finger, subsequent encounter|Crushing injury of left ring finger, subsequent encounter +C2855773|T037|PT|S67.195D|ICD10CM|Crushing injury of left ring finger, subsequent encounter|Crushing injury of left ring finger, subsequent encounter +C2855774|T037|AB|S67.195S|ICD10CM|Crushing injury of left ring finger, sequela|Crushing injury of left ring finger, sequela +C2855774|T037|PT|S67.195S|ICD10CM|Crushing injury of left ring finger, sequela|Crushing injury of left ring finger, sequela +C2855775|T037|AB|S67.196|ICD10CM|Crushing injury of right little finger|Crushing injury of right little finger +C2855775|T037|HT|S67.196|ICD10CM|Crushing injury of right little finger|Crushing injury of right little finger +C2855776|T037|AB|S67.196A|ICD10CM|Crushing injury of right little finger, initial encounter|Crushing injury of right little finger, initial encounter +C2855776|T037|PT|S67.196A|ICD10CM|Crushing injury of right little finger, initial encounter|Crushing injury of right little finger, initial encounter +C2855777|T037|AB|S67.196D|ICD10CM|Crushing injury of right little finger, subsequent encounter|Crushing injury of right little finger, subsequent encounter +C2855777|T037|PT|S67.196D|ICD10CM|Crushing injury of right little finger, subsequent encounter|Crushing injury of right little finger, subsequent encounter +C2855778|T037|AB|S67.196S|ICD10CM|Crushing injury of right little finger, sequela|Crushing injury of right little finger, sequela +C2855778|T037|PT|S67.196S|ICD10CM|Crushing injury of right little finger, sequela|Crushing injury of right little finger, sequela +C2855779|T037|AB|S67.197|ICD10CM|Crushing injury of left little finger|Crushing injury of left little finger +C2855779|T037|HT|S67.197|ICD10CM|Crushing injury of left little finger|Crushing injury of left little finger +C2855780|T037|AB|S67.197A|ICD10CM|Crushing injury of left little finger, initial encounter|Crushing injury of left little finger, initial encounter +C2855780|T037|PT|S67.197A|ICD10CM|Crushing injury of left little finger, initial encounter|Crushing injury of left little finger, initial encounter +C2855781|T037|AB|S67.197D|ICD10CM|Crushing injury of left little finger, subsequent encounter|Crushing injury of left little finger, subsequent encounter +C2855781|T037|PT|S67.197D|ICD10CM|Crushing injury of left little finger, subsequent encounter|Crushing injury of left little finger, subsequent encounter +C2855782|T037|AB|S67.197S|ICD10CM|Crushing injury of left little finger, sequela|Crushing injury of left little finger, sequela +C2855782|T037|PT|S67.197S|ICD10CM|Crushing injury of left little finger, sequela|Crushing injury of left little finger, sequela +C2855750|T037|AB|S67.198|ICD10CM|Crushing injury of other finger|Crushing injury of other finger +C2855750|T037|HT|S67.198|ICD10CM|Crushing injury of other finger|Crushing injury of other finger +C2855783|T037|ET|S67.198|ICD10CM|Crushing injury of specified finger with unspecified laterality|Crushing injury of specified finger with unspecified laterality +C2855784|T037|AB|S67.198A|ICD10CM|Crushing injury of other finger, initial encounter|Crushing injury of other finger, initial encounter +C2855784|T037|PT|S67.198A|ICD10CM|Crushing injury of other finger, initial encounter|Crushing injury of other finger, initial encounter +C2855785|T037|AB|S67.198D|ICD10CM|Crushing injury of other finger, subsequent encounter|Crushing injury of other finger, subsequent encounter +C2855785|T037|PT|S67.198D|ICD10CM|Crushing injury of other finger, subsequent encounter|Crushing injury of other finger, subsequent encounter +C2855786|T037|AB|S67.198S|ICD10CM|Crushing injury of other finger, sequela|Crushing injury of other finger, sequela +C2855786|T037|PT|S67.198S|ICD10CM|Crushing injury of other finger, sequela|Crushing injury of other finger, sequela +C0273444|T037|HT|S67.2|ICD10CM|Crushing injury of hand|Crushing injury of hand +C0273444|T037|AB|S67.2|ICD10CM|Crushing injury of hand|Crushing injury of hand +C2855787|T037|AB|S67.20|ICD10CM|Crushing injury of unspecified hand|Crushing injury of unspecified hand +C2855787|T037|HT|S67.20|ICD10CM|Crushing injury of unspecified hand|Crushing injury of unspecified hand +C2855788|T037|AB|S67.20XA|ICD10CM|Crushing injury of unspecified hand, initial encounter|Crushing injury of unspecified hand, initial encounter +C2855788|T037|PT|S67.20XA|ICD10CM|Crushing injury of unspecified hand, initial encounter|Crushing injury of unspecified hand, initial encounter +C2855789|T037|AB|S67.20XD|ICD10CM|Crushing injury of unspecified hand, subsequent encounter|Crushing injury of unspecified hand, subsequent encounter +C2855789|T037|PT|S67.20XD|ICD10CM|Crushing injury of unspecified hand, subsequent encounter|Crushing injury of unspecified hand, subsequent encounter +C2855790|T037|AB|S67.20XS|ICD10CM|Crushing injury of unspecified hand, sequela|Crushing injury of unspecified hand, sequela +C2855790|T037|PT|S67.20XS|ICD10CM|Crushing injury of unspecified hand, sequela|Crushing injury of unspecified hand, sequela +C2138549|T037|AB|S67.21|ICD10CM|Crushing injury of right hand|Crushing injury of right hand +C2138549|T037|HT|S67.21|ICD10CM|Crushing injury of right hand|Crushing injury of right hand +C2855791|T037|AB|S67.21XA|ICD10CM|Crushing injury of right hand, initial encounter|Crushing injury of right hand, initial encounter +C2855791|T037|PT|S67.21XA|ICD10CM|Crushing injury of right hand, initial encounter|Crushing injury of right hand, initial encounter +C2855792|T037|AB|S67.21XD|ICD10CM|Crushing injury of right hand, subsequent encounter|Crushing injury of right hand, subsequent encounter +C2855792|T037|PT|S67.21XD|ICD10CM|Crushing injury of right hand, subsequent encounter|Crushing injury of right hand, subsequent encounter +C2855793|T037|AB|S67.21XS|ICD10CM|Crushing injury of right hand, sequela|Crushing injury of right hand, sequela +C2855793|T037|PT|S67.21XS|ICD10CM|Crushing injury of right hand, sequela|Crushing injury of right hand, sequela +C2138527|T037|AB|S67.22|ICD10CM|Crushing injury of left hand|Crushing injury of left hand +C2138527|T037|HT|S67.22|ICD10CM|Crushing injury of left hand|Crushing injury of left hand +C2855794|T037|AB|S67.22XA|ICD10CM|Crushing injury of left hand, initial encounter|Crushing injury of left hand, initial encounter +C2855794|T037|PT|S67.22XA|ICD10CM|Crushing injury of left hand, initial encounter|Crushing injury of left hand, initial encounter +C2855795|T037|AB|S67.22XD|ICD10CM|Crushing injury of left hand, subsequent encounter|Crushing injury of left hand, subsequent encounter +C2855795|T037|PT|S67.22XD|ICD10CM|Crushing injury of left hand, subsequent encounter|Crushing injury of left hand, subsequent encounter +C2855796|T037|AB|S67.22XS|ICD10CM|Crushing injury of left hand, sequela|Crushing injury of left hand, sequela +C2855796|T037|PT|S67.22XS|ICD10CM|Crushing injury of left hand, sequela|Crushing injury of left hand, sequela +C0160981|T037|HT|S67.3|ICD10CM|Crushing injury of wrist|Crushing injury of wrist +C0160981|T037|AB|S67.3|ICD10CM|Crushing injury of wrist|Crushing injury of wrist +C2855797|T037|AB|S67.30|ICD10CM|Crushing injury of unspecified wrist|Crushing injury of unspecified wrist +C2855797|T037|HT|S67.30|ICD10CM|Crushing injury of unspecified wrist|Crushing injury of unspecified wrist +C2855798|T037|AB|S67.30XA|ICD10CM|Crushing injury of unspecified wrist, initial encounter|Crushing injury of unspecified wrist, initial encounter +C2855798|T037|PT|S67.30XA|ICD10CM|Crushing injury of unspecified wrist, initial encounter|Crushing injury of unspecified wrist, initial encounter +C2855799|T037|AB|S67.30XD|ICD10CM|Crushing injury of unspecified wrist, subsequent encounter|Crushing injury of unspecified wrist, subsequent encounter +C2855799|T037|PT|S67.30XD|ICD10CM|Crushing injury of unspecified wrist, subsequent encounter|Crushing injury of unspecified wrist, subsequent encounter +C2855800|T037|AB|S67.30XS|ICD10CM|Crushing injury of unspecified wrist, sequela|Crushing injury of unspecified wrist, sequela +C2855800|T037|PT|S67.30XS|ICD10CM|Crushing injury of unspecified wrist, sequela|Crushing injury of unspecified wrist, sequela +C2138557|T037|AB|S67.31|ICD10CM|Crushing injury of right wrist|Crushing injury of right wrist +C2138557|T037|HT|S67.31|ICD10CM|Crushing injury of right wrist|Crushing injury of right wrist +C2855801|T037|AB|S67.31XA|ICD10CM|Crushing injury of right wrist, initial encounter|Crushing injury of right wrist, initial encounter +C2855801|T037|PT|S67.31XA|ICD10CM|Crushing injury of right wrist, initial encounter|Crushing injury of right wrist, initial encounter +C2855802|T037|AB|S67.31XD|ICD10CM|Crushing injury of right wrist, subsequent encounter|Crushing injury of right wrist, subsequent encounter +C2855802|T037|PT|S67.31XD|ICD10CM|Crushing injury of right wrist, subsequent encounter|Crushing injury of right wrist, subsequent encounter +C2855803|T037|AB|S67.31XS|ICD10CM|Crushing injury of right wrist, sequela|Crushing injury of right wrist, sequela +C2855803|T037|PT|S67.31XS|ICD10CM|Crushing injury of right wrist, sequela|Crushing injury of right wrist, sequela +C2138535|T037|AB|S67.32|ICD10CM|Crushing injury of left wrist|Crushing injury of left wrist +C2138535|T037|HT|S67.32|ICD10CM|Crushing injury of left wrist|Crushing injury of left wrist +C2855804|T037|AB|S67.32XA|ICD10CM|Crushing injury of left wrist, initial encounter|Crushing injury of left wrist, initial encounter +C2855804|T037|PT|S67.32XA|ICD10CM|Crushing injury of left wrist, initial encounter|Crushing injury of left wrist, initial encounter +C2855805|T037|AB|S67.32XD|ICD10CM|Crushing injury of left wrist, subsequent encounter|Crushing injury of left wrist, subsequent encounter +C2855805|T037|PT|S67.32XD|ICD10CM|Crushing injury of left wrist, subsequent encounter|Crushing injury of left wrist, subsequent encounter +C2855806|T037|AB|S67.32XS|ICD10CM|Crushing injury of left wrist, sequela|Crushing injury of left wrist, sequela +C2855806|T037|PT|S67.32XS|ICD10CM|Crushing injury of left wrist, sequela|Crushing injury of left wrist, sequela +C3495376|T037|AB|S67.4|ICD10CM|Crushing injury of wrist and hand|Crushing injury of wrist and hand +C3495376|T037|HT|S67.4|ICD10CM|Crushing injury of wrist and hand|Crushing injury of wrist and hand +C2855807|T037|AB|S67.40|ICD10CM|Crushing injury of unspecified wrist and hand|Crushing injury of unspecified wrist and hand +C2855807|T037|HT|S67.40|ICD10CM|Crushing injury of unspecified wrist and hand|Crushing injury of unspecified wrist and hand +C2855808|T037|AB|S67.40XA|ICD10CM|Crushing injury of unspecified wrist and hand, init encntr|Crushing injury of unspecified wrist and hand, init encntr +C2855808|T037|PT|S67.40XA|ICD10CM|Crushing injury of unspecified wrist and hand, initial encounter|Crushing injury of unspecified wrist and hand, initial encounter +C2855809|T037|AB|S67.40XD|ICD10CM|Crushing injury of unspecified wrist and hand, subs encntr|Crushing injury of unspecified wrist and hand, subs encntr +C2855809|T037|PT|S67.40XD|ICD10CM|Crushing injury of unspecified wrist and hand, subsequent encounter|Crushing injury of unspecified wrist and hand, subsequent encounter +C2855810|T037|AB|S67.40XS|ICD10CM|Crushing injury of unspecified wrist and hand, sequela|Crushing injury of unspecified wrist and hand, sequela +C2855810|T037|PT|S67.40XS|ICD10CM|Crushing injury of unspecified wrist and hand, sequela|Crushing injury of unspecified wrist and hand, sequela +C2855811|T037|AB|S67.41|ICD10CM|Crushing injury of right wrist and hand|Crushing injury of right wrist and hand +C2855811|T037|HT|S67.41|ICD10CM|Crushing injury of right wrist and hand|Crushing injury of right wrist and hand +C2855812|T037|AB|S67.41XA|ICD10CM|Crushing injury of right wrist and hand, initial encounter|Crushing injury of right wrist and hand, initial encounter +C2855812|T037|PT|S67.41XA|ICD10CM|Crushing injury of right wrist and hand, initial encounter|Crushing injury of right wrist and hand, initial encounter +C2855813|T037|AB|S67.41XD|ICD10CM|Crushing injury of right wrist and hand, subs encntr|Crushing injury of right wrist and hand, subs encntr +C2855813|T037|PT|S67.41XD|ICD10CM|Crushing injury of right wrist and hand, subsequent encounter|Crushing injury of right wrist and hand, subsequent encounter +C2855814|T037|AB|S67.41XS|ICD10CM|Crushing injury of right wrist and hand, sequela|Crushing injury of right wrist and hand, sequela +C2855814|T037|PT|S67.41XS|ICD10CM|Crushing injury of right wrist and hand, sequela|Crushing injury of right wrist and hand, sequela +C2855815|T037|AB|S67.42|ICD10CM|Crushing injury of left wrist and hand|Crushing injury of left wrist and hand +C2855815|T037|HT|S67.42|ICD10CM|Crushing injury of left wrist and hand|Crushing injury of left wrist and hand +C2855816|T037|AB|S67.42XA|ICD10CM|Crushing injury of left wrist and hand, initial encounter|Crushing injury of left wrist and hand, initial encounter +C2855816|T037|PT|S67.42XA|ICD10CM|Crushing injury of left wrist and hand, initial encounter|Crushing injury of left wrist and hand, initial encounter +C2855817|T037|AB|S67.42XD|ICD10CM|Crushing injury of left wrist and hand, subsequent encounter|Crushing injury of left wrist and hand, subsequent encounter +C2855817|T037|PT|S67.42XD|ICD10CM|Crushing injury of left wrist and hand, subsequent encounter|Crushing injury of left wrist and hand, subsequent encounter +C2855818|T037|AB|S67.42XS|ICD10CM|Crushing injury of left wrist and hand, sequela|Crushing injury of left wrist and hand, sequela +C2855818|T037|PT|S67.42XS|ICD10CM|Crushing injury of left wrist and hand, sequela|Crushing injury of left wrist and hand, sequela +C0478317|T037|PT|S67.8|ICD10|Crushing injury of other and unspecified parts of wrist and hand|Crushing injury of other and unspecified parts of wrist and hand +C2855819|T037|AB|S67.9|ICD10CM|Crushing injury of unsp part(s) of wrist, hand and fingers|Crushing injury of unsp part(s) of wrist, hand and fingers +C2855819|T037|HT|S67.9|ICD10CM|Crushing injury of unspecified part(s) of wrist, hand and fingers|Crushing injury of unspecified part(s) of wrist, hand and fingers +C2855820|T037|AB|S67.90|ICD10CM|Crushing inj unsp part(s) of unsp wrist, hand and fingers|Crushing inj unsp part(s) of unsp wrist, hand and fingers +C2855820|T037|HT|S67.90|ICD10CM|Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers|Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers +C2977951|T037|AB|S67.90XA|ICD10CM|Crush inj unsp part(s) of unsp wrist, hand and fingers, init|Crush inj unsp part(s) of unsp wrist, hand and fingers, init +C2977951|T037|PT|S67.90XA|ICD10CM|Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers, initial encounter|Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers, initial encounter +C2977952|T037|AB|S67.90XD|ICD10CM|Crush inj unsp part(s) of unsp wrist, hand and fingers, subs|Crush inj unsp part(s) of unsp wrist, hand and fingers, subs +C2977952|T037|PT|S67.90XD|ICD10CM|Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers, subsequent encounter|Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers, subsequent encounter +C2977953|T037|AB|S67.90XS|ICD10CM|Crush inj unsp part(s) of unsp wrist, hand and fngr, sequela|Crush inj unsp part(s) of unsp wrist, hand and fngr, sequela +C2977953|T037|PT|S67.90XS|ICD10CM|Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers, sequela|Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers, sequela +C2855824|T037|AB|S67.91|ICD10CM|Crushing injury of unsp part(s) of r wrist, hand and fingers|Crushing injury of unsp part(s) of r wrist, hand and fingers +C2855824|T037|HT|S67.91|ICD10CM|Crushing injury of unspecified part(s) of right wrist, hand and fingers|Crushing injury of unspecified part(s) of right wrist, hand and fingers +C2855825|T037|AB|S67.91XA|ICD10CM|Crushing inj unsp part(s) of r wrist, hand and fingers, init|Crushing inj unsp part(s) of r wrist, hand and fingers, init +C2855825|T037|PT|S67.91XA|ICD10CM|Crushing injury of unspecified part(s) of right wrist, hand and fingers, initial encounter|Crushing injury of unspecified part(s) of right wrist, hand and fingers, initial encounter +C2855826|T037|AB|S67.91XD|ICD10CM|Crushing inj unsp part(s) of r wrist, hand and fingers, subs|Crushing inj unsp part(s) of r wrist, hand and fingers, subs +C2855826|T037|PT|S67.91XD|ICD10CM|Crushing injury of unspecified part(s) of right wrist, hand and fingers, subsequent encounter|Crushing injury of unspecified part(s) of right wrist, hand and fingers, subsequent encounter +C2855827|T037|AB|S67.91XS|ICD10CM|Crush inj unsp part(s) of r wrist, hand and fingers, sequela|Crush inj unsp part(s) of r wrist, hand and fingers, sequela +C2855827|T037|PT|S67.91XS|ICD10CM|Crushing injury of unspecified part(s) of right wrist, hand and fingers, sequela|Crushing injury of unspecified part(s) of right wrist, hand and fingers, sequela +C2855828|T037|AB|S67.92|ICD10CM|Crushing injury of unsp part(s) of l wrist, hand and fingers|Crushing injury of unsp part(s) of l wrist, hand and fingers +C2855828|T037|HT|S67.92|ICD10CM|Crushing injury of unspecified part(s) of left wrist, hand and fingers|Crushing injury of unspecified part(s) of left wrist, hand and fingers +C2855829|T037|AB|S67.92XA|ICD10CM|Crushing inj unsp part(s) of l wrist, hand and fingers, init|Crushing inj unsp part(s) of l wrist, hand and fingers, init +C2855829|T037|PT|S67.92XA|ICD10CM|Crushing injury of unspecified part(s) of left wrist, hand and fingers, initial encounter|Crushing injury of unspecified part(s) of left wrist, hand and fingers, initial encounter +C2855830|T037|AB|S67.92XD|ICD10CM|Crushing inj unsp part(s) of l wrist, hand and fingers, subs|Crushing inj unsp part(s) of l wrist, hand and fingers, subs +C2855830|T037|PT|S67.92XD|ICD10CM|Crushing injury of unspecified part(s) of left wrist, hand and fingers, subsequent encounter|Crushing injury of unspecified part(s) of left wrist, hand and fingers, subsequent encounter +C2855831|T037|AB|S67.92XS|ICD10CM|Crush inj unsp part(s) of l wrist, hand and fingers, sequela|Crush inj unsp part(s) of l wrist, hand and fingers, sequela +C2855831|T037|PT|S67.92XS|ICD10CM|Crushing injury of unspecified part(s) of left wrist, hand and fingers, sequela|Crushing injury of unspecified part(s) of left wrist, hand and fingers, sequela +C2977737|T033|ET|S68|ICD10CM|An amputation not identified as partial or complete should be coded to complete|An amputation not identified as partial or complete should be coded to complete +C0478321|T037|HT|S68|ICD10|Traumatic amputation of wrist and hand|Traumatic amputation of wrist and hand +C2855832|T037|AB|S68|ICD10CM|Traumatic amputation of wrist, hand and fingers|Traumatic amputation of wrist, hand and fingers +C2855832|T037|HT|S68|ICD10CM|Traumatic amputation of wrist, hand and fingers|Traumatic amputation of wrist, hand and fingers +C0160627|T037|PT|S68.0|ICD10|Traumatic amputation of thumb (complete) (partial)|Traumatic amputation of thumb (complete) (partial) +C0160628|T037|ET|S68.0|ICD10CM|Traumatic amputation of thumb NOS|Traumatic amputation of thumb NOS +C0433640|T037|AB|S68.0|ICD10CM|Traumatic metacarpophalangeal amputation of thumb|Traumatic metacarpophalangeal amputation of thumb +C0433640|T037|HT|S68.0|ICD10CM|Traumatic metacarpophalangeal amputation of thumb|Traumatic metacarpophalangeal amputation of thumb +C2855834|T037|AB|S68.01|ICD10CM|Complete traumatic metacarpophalangeal amputation of thumb|Complete traumatic metacarpophalangeal amputation of thumb +C2855834|T037|HT|S68.01|ICD10CM|Complete traumatic metacarpophalangeal amputation of thumb|Complete traumatic metacarpophalangeal amputation of thumb +C2855835|T037|AB|S68.011|ICD10CM|Complete traumatic MCP amputation of right thumb|Complete traumatic MCP amputation of right thumb +C2855835|T037|HT|S68.011|ICD10CM|Complete traumatic metacarpophalangeal amputation of right thumb|Complete traumatic metacarpophalangeal amputation of right thumb +C2855836|T037|AB|S68.011A|ICD10CM|Complete traumatic MCP amputation of right thumb, init|Complete traumatic MCP amputation of right thumb, init +C2855836|T037|PT|S68.011A|ICD10CM|Complete traumatic metacarpophalangeal amputation of right thumb, initial encounter|Complete traumatic metacarpophalangeal amputation of right thumb, initial encounter +C2855837|T037|AB|S68.011D|ICD10CM|Complete traumatic MCP amputation of right thumb, subs|Complete traumatic MCP amputation of right thumb, subs +C2855837|T037|PT|S68.011D|ICD10CM|Complete traumatic metacarpophalangeal amputation of right thumb, subsequent encounter|Complete traumatic metacarpophalangeal amputation of right thumb, subsequent encounter +C2855838|T037|AB|S68.011S|ICD10CM|Complete traumatic MCP amputation of right thumb, sequela|Complete traumatic MCP amputation of right thumb, sequela +C2855838|T037|PT|S68.011S|ICD10CM|Complete traumatic metacarpophalangeal amputation of right thumb, sequela|Complete traumatic metacarpophalangeal amputation of right thumb, sequela +C2855839|T037|AB|S68.012|ICD10CM|Complete traumatic MCP amputation of left thumb|Complete traumatic MCP amputation of left thumb +C2855839|T037|HT|S68.012|ICD10CM|Complete traumatic metacarpophalangeal amputation of left thumb|Complete traumatic metacarpophalangeal amputation of left thumb +C2855840|T037|AB|S68.012A|ICD10CM|Complete traumatic MCP amputation of left thumb, init|Complete traumatic MCP amputation of left thumb, init +C2855840|T037|PT|S68.012A|ICD10CM|Complete traumatic metacarpophalangeal amputation of left thumb, initial encounter|Complete traumatic metacarpophalangeal amputation of left thumb, initial encounter +C2855841|T037|AB|S68.012D|ICD10CM|Complete traumatic MCP amputation of left thumb, subs|Complete traumatic MCP amputation of left thumb, subs +C2855841|T037|PT|S68.012D|ICD10CM|Complete traumatic metacarpophalangeal amputation of left thumb, subsequent encounter|Complete traumatic metacarpophalangeal amputation of left thumb, subsequent encounter +C2855842|T037|AB|S68.012S|ICD10CM|Complete traumatic MCP amputation of left thumb, sequela|Complete traumatic MCP amputation of left thumb, sequela +C2855842|T037|PT|S68.012S|ICD10CM|Complete traumatic metacarpophalangeal amputation of left thumb, sequela|Complete traumatic metacarpophalangeal amputation of left thumb, sequela +C2855843|T037|AB|S68.019|ICD10CM|Complete traumatic metacarpophalangeal amputation of thmb|Complete traumatic metacarpophalangeal amputation of thmb +C2855843|T037|HT|S68.019|ICD10CM|Complete traumatic metacarpophalangeal amputation of unspecified thumb|Complete traumatic metacarpophalangeal amputation of unspecified thumb +C2855844|T037|AB|S68.019A|ICD10CM|Complete traumatic MCP amputation of thmb, init|Complete traumatic MCP amputation of thmb, init +C2855844|T037|PT|S68.019A|ICD10CM|Complete traumatic metacarpophalangeal amputation of unspecified thumb, initial encounter|Complete traumatic metacarpophalangeal amputation of unspecified thumb, initial encounter +C2855845|T037|AB|S68.019D|ICD10CM|Complete traumatic MCP amputation of thmb, subs|Complete traumatic MCP amputation of thmb, subs +C2855845|T037|PT|S68.019D|ICD10CM|Complete traumatic metacarpophalangeal amputation of unspecified thumb, subsequent encounter|Complete traumatic metacarpophalangeal amputation of unspecified thumb, subsequent encounter +C2855846|T037|AB|S68.019S|ICD10CM|Complete traumatic MCP amputation of thmb, sequela|Complete traumatic MCP amputation of thmb, sequela +C2855846|T037|PT|S68.019S|ICD10CM|Complete traumatic metacarpophalangeal amputation of unspecified thumb, sequela|Complete traumatic metacarpophalangeal amputation of unspecified thumb, sequela +C2855847|T037|AB|S68.02|ICD10CM|Partial traumatic metacarpophalangeal amputation of thumb|Partial traumatic metacarpophalangeal amputation of thumb +C2855847|T037|HT|S68.02|ICD10CM|Partial traumatic metacarpophalangeal amputation of thumb|Partial traumatic metacarpophalangeal amputation of thumb +C2855848|T037|AB|S68.021|ICD10CM|Partial traumatic MCP amputation of right thumb|Partial traumatic MCP amputation of right thumb +C2855848|T037|HT|S68.021|ICD10CM|Partial traumatic metacarpophalangeal amputation of right thumb|Partial traumatic metacarpophalangeal amputation of right thumb +C2855849|T037|AB|S68.021A|ICD10CM|Partial traumatic MCP amputation of right thumb, init|Partial traumatic MCP amputation of right thumb, init +C2855849|T037|PT|S68.021A|ICD10CM|Partial traumatic metacarpophalangeal amputation of right thumb, initial encounter|Partial traumatic metacarpophalangeal amputation of right thumb, initial encounter +C2855850|T037|AB|S68.021D|ICD10CM|Partial traumatic MCP amputation of right thumb, subs|Partial traumatic MCP amputation of right thumb, subs +C2855850|T037|PT|S68.021D|ICD10CM|Partial traumatic metacarpophalangeal amputation of right thumb, subsequent encounter|Partial traumatic metacarpophalangeal amputation of right thumb, subsequent encounter +C2855851|T037|AB|S68.021S|ICD10CM|Partial traumatic MCP amputation of right thumb, sequela|Partial traumatic MCP amputation of right thumb, sequela +C2855851|T037|PT|S68.021S|ICD10CM|Partial traumatic metacarpophalangeal amputation of right thumb, sequela|Partial traumatic metacarpophalangeal amputation of right thumb, sequela +C2855852|T037|AB|S68.022|ICD10CM|Partial traumatic MCP amputation of left thumb|Partial traumatic MCP amputation of left thumb +C2855852|T037|HT|S68.022|ICD10CM|Partial traumatic metacarpophalangeal amputation of left thumb|Partial traumatic metacarpophalangeal amputation of left thumb +C2855853|T037|AB|S68.022A|ICD10CM|Partial traumatic MCP amputation of left thumb, init|Partial traumatic MCP amputation of left thumb, init +C2855853|T037|PT|S68.022A|ICD10CM|Partial traumatic metacarpophalangeal amputation of left thumb, initial encounter|Partial traumatic metacarpophalangeal amputation of left thumb, initial encounter +C2855854|T037|AB|S68.022D|ICD10CM|Partial traumatic MCP amputation of left thumb, subs|Partial traumatic MCP amputation of left thumb, subs +C2855854|T037|PT|S68.022D|ICD10CM|Partial traumatic metacarpophalangeal amputation of left thumb, subsequent encounter|Partial traumatic metacarpophalangeal amputation of left thumb, subsequent encounter +C2855855|T037|AB|S68.022S|ICD10CM|Partial traumatic MCP amputation of left thumb, sequela|Partial traumatic MCP amputation of left thumb, sequela +C2855855|T037|PT|S68.022S|ICD10CM|Partial traumatic metacarpophalangeal amputation of left thumb, sequela|Partial traumatic metacarpophalangeal amputation of left thumb, sequela +C2855856|T037|AB|S68.029|ICD10CM|Partial traumatic metacarpophalangeal amputation of thmb|Partial traumatic metacarpophalangeal amputation of thmb +C2855856|T037|HT|S68.029|ICD10CM|Partial traumatic metacarpophalangeal amputation of unspecified thumb|Partial traumatic metacarpophalangeal amputation of unspecified thumb +C2855857|T037|AB|S68.029A|ICD10CM|Partial traumatic MCP amputation of thmb, init|Partial traumatic MCP amputation of thmb, init +C2855857|T037|PT|S68.029A|ICD10CM|Partial traumatic metacarpophalangeal amputation of unspecified thumb, initial encounter|Partial traumatic metacarpophalangeal amputation of unspecified thumb, initial encounter +C2855858|T037|AB|S68.029D|ICD10CM|Partial traumatic MCP amputation of thmb, subs|Partial traumatic MCP amputation of thmb, subs +C2855858|T037|PT|S68.029D|ICD10CM|Partial traumatic metacarpophalangeal amputation of unspecified thumb, subsequent encounter|Partial traumatic metacarpophalangeal amputation of unspecified thumb, subsequent encounter +C2855859|T037|AB|S68.029S|ICD10CM|Partial traumatic MCP amputation of thmb, sequela|Partial traumatic MCP amputation of thmb, sequela +C2855859|T037|PT|S68.029S|ICD10CM|Partial traumatic metacarpophalangeal amputation of unspecified thumb, sequela|Partial traumatic metacarpophalangeal amputation of unspecified thumb, sequela +C0347584|T037|ET|S68.1|ICD10CM|Traumatic amputation of finger NOS|Traumatic amputation of finger NOS +C0495922|T037|PT|S68.1|ICD10|Traumatic amputation of other single finger (complete) (partial)|Traumatic amputation of other single finger (complete) (partial) +C2855860|T037|AB|S68.1|ICD10CM|Traumatic metacarpophalangeal amputation of and unsp finger|Traumatic metacarpophalangeal amputation of and unsp finger +C2855860|T037|HT|S68.1|ICD10CM|Traumatic metacarpophalangeal amputation of other and unspecified finger|Traumatic metacarpophalangeal amputation of other and unspecified finger +C2855861|T037|AB|S68.11|ICD10CM|Complete traumatic MCP amputation of and unsp finger|Complete traumatic MCP amputation of and unsp finger +C2855861|T037|HT|S68.11|ICD10CM|Complete traumatic metacarpophalangeal amputation of other and unspecified finger|Complete traumatic metacarpophalangeal amputation of other and unspecified finger +C2855862|T037|AB|S68.110|ICD10CM|Complete traumatic MCP amputation of right index finger|Complete traumatic MCP amputation of right index finger +C2855862|T037|HT|S68.110|ICD10CM|Complete traumatic metacarpophalangeal amputation of right index finger|Complete traumatic metacarpophalangeal amputation of right index finger +C2855863|T037|AB|S68.110A|ICD10CM|Complete traumatic MCP amputation of r idx fngr, init|Complete traumatic MCP amputation of r idx fngr, init +C2855863|T037|PT|S68.110A|ICD10CM|Complete traumatic metacarpophalangeal amputation of right index finger, initial encounter|Complete traumatic metacarpophalangeal amputation of right index finger, initial encounter +C2855864|T037|AB|S68.110D|ICD10CM|Complete traumatic MCP amputation of r idx fngr, subs|Complete traumatic MCP amputation of r idx fngr, subs +C2855864|T037|PT|S68.110D|ICD10CM|Complete traumatic metacarpophalangeal amputation of right index finger, subsequent encounter|Complete traumatic metacarpophalangeal amputation of right index finger, subsequent encounter +C2855865|T037|AB|S68.110S|ICD10CM|Complete traumatic MCP amputation of r idx fngr, sequela|Complete traumatic MCP amputation of r idx fngr, sequela +C2855865|T037|PT|S68.110S|ICD10CM|Complete traumatic metacarpophalangeal amputation of right index finger, sequela|Complete traumatic metacarpophalangeal amputation of right index finger, sequela +C2855866|T037|AB|S68.111|ICD10CM|Complete traumatic MCP amputation of left index finger|Complete traumatic MCP amputation of left index finger +C2855866|T037|HT|S68.111|ICD10CM|Complete traumatic metacarpophalangeal amputation of left index finger|Complete traumatic metacarpophalangeal amputation of left index finger +C2855867|T037|AB|S68.111A|ICD10CM|Complete traumatic MCP amputation of left index finger, init|Complete traumatic MCP amputation of left index finger, init +C2855867|T037|PT|S68.111A|ICD10CM|Complete traumatic metacarpophalangeal amputation of left index finger, initial encounter|Complete traumatic metacarpophalangeal amputation of left index finger, initial encounter +C2855868|T037|AB|S68.111D|ICD10CM|Complete traumatic MCP amputation of left index finger, subs|Complete traumatic MCP amputation of left index finger, subs +C2855868|T037|PT|S68.111D|ICD10CM|Complete traumatic metacarpophalangeal amputation of left index finger, subsequent encounter|Complete traumatic metacarpophalangeal amputation of left index finger, subsequent encounter +C2855869|T037|AB|S68.111S|ICD10CM|Complete traumatic MCP amputation of l idx fngr, sequela|Complete traumatic MCP amputation of l idx fngr, sequela +C2855869|T037|PT|S68.111S|ICD10CM|Complete traumatic metacarpophalangeal amputation of left index finger, sequela|Complete traumatic metacarpophalangeal amputation of left index finger, sequela +C2855870|T037|AB|S68.112|ICD10CM|Complete traumatic MCP amputation of right middle finger|Complete traumatic MCP amputation of right middle finger +C2855870|T037|HT|S68.112|ICD10CM|Complete traumatic metacarpophalangeal amputation of right middle finger|Complete traumatic metacarpophalangeal amputation of right middle finger +C2855871|T037|AB|S68.112A|ICD10CM|Complete traumatic MCP amputation of r mid finger, init|Complete traumatic MCP amputation of r mid finger, init +C2855871|T037|PT|S68.112A|ICD10CM|Complete traumatic metacarpophalangeal amputation of right middle finger, initial encounter|Complete traumatic metacarpophalangeal amputation of right middle finger, initial encounter +C2855872|T037|AB|S68.112D|ICD10CM|Complete traumatic MCP amputation of r mid finger, subs|Complete traumatic MCP amputation of r mid finger, subs +C2855872|T037|PT|S68.112D|ICD10CM|Complete traumatic metacarpophalangeal amputation of right middle finger, subsequent encounter|Complete traumatic metacarpophalangeal amputation of right middle finger, subsequent encounter +C2855873|T037|AB|S68.112S|ICD10CM|Complete traumatic MCP amputation of r mid finger, sequela|Complete traumatic MCP amputation of r mid finger, sequela +C2855873|T037|PT|S68.112S|ICD10CM|Complete traumatic metacarpophalangeal amputation of right middle finger, sequela|Complete traumatic metacarpophalangeal amputation of right middle finger, sequela +C2855874|T037|AB|S68.113|ICD10CM|Complete traumatic MCP amputation of left middle finger|Complete traumatic MCP amputation of left middle finger +C2855874|T037|HT|S68.113|ICD10CM|Complete traumatic metacarpophalangeal amputation of left middle finger|Complete traumatic metacarpophalangeal amputation of left middle finger +C2855875|T037|AB|S68.113A|ICD10CM|Complete traumatic MCP amputation of l mid finger, init|Complete traumatic MCP amputation of l mid finger, init +C2855875|T037|PT|S68.113A|ICD10CM|Complete traumatic metacarpophalangeal amputation of left middle finger, initial encounter|Complete traumatic metacarpophalangeal amputation of left middle finger, initial encounter +C2855876|T037|AB|S68.113D|ICD10CM|Complete traumatic MCP amputation of l mid finger, subs|Complete traumatic MCP amputation of l mid finger, subs +C2855876|T037|PT|S68.113D|ICD10CM|Complete traumatic metacarpophalangeal amputation of left middle finger, subsequent encounter|Complete traumatic metacarpophalangeal amputation of left middle finger, subsequent encounter +C2855877|T037|AB|S68.113S|ICD10CM|Complete traumatic MCP amputation of l mid finger, sequela|Complete traumatic MCP amputation of l mid finger, sequela +C2855877|T037|PT|S68.113S|ICD10CM|Complete traumatic metacarpophalangeal amputation of left middle finger, sequela|Complete traumatic metacarpophalangeal amputation of left middle finger, sequela +C2855878|T037|AB|S68.114|ICD10CM|Complete traumatic MCP amputation of right ring finger|Complete traumatic MCP amputation of right ring finger +C2855878|T037|HT|S68.114|ICD10CM|Complete traumatic metacarpophalangeal amputation of right ring finger|Complete traumatic metacarpophalangeal amputation of right ring finger +C2855879|T037|AB|S68.114A|ICD10CM|Complete traumatic MCP amputation of right ring finger, init|Complete traumatic MCP amputation of right ring finger, init +C2855879|T037|PT|S68.114A|ICD10CM|Complete traumatic metacarpophalangeal amputation of right ring finger, initial encounter|Complete traumatic metacarpophalangeal amputation of right ring finger, initial encounter +C2855880|T037|AB|S68.114D|ICD10CM|Complete traumatic MCP amputation of right ring finger, subs|Complete traumatic MCP amputation of right ring finger, subs +C2855880|T037|PT|S68.114D|ICD10CM|Complete traumatic metacarpophalangeal amputation of right ring finger, subsequent encounter|Complete traumatic metacarpophalangeal amputation of right ring finger, subsequent encounter +C2855881|T037|AB|S68.114S|ICD10CM|Complete traumatic MCP amputation of r rng fngr, sequela|Complete traumatic MCP amputation of r rng fngr, sequela +C2855881|T037|PT|S68.114S|ICD10CM|Complete traumatic metacarpophalangeal amputation of right ring finger, sequela|Complete traumatic metacarpophalangeal amputation of right ring finger, sequela +C2855882|T037|AB|S68.115|ICD10CM|Complete traumatic MCP amputation of left ring finger|Complete traumatic MCP amputation of left ring finger +C2855882|T037|HT|S68.115|ICD10CM|Complete traumatic metacarpophalangeal amputation of left ring finger|Complete traumatic metacarpophalangeal amputation of left ring finger +C2855883|T037|AB|S68.115A|ICD10CM|Complete traumatic MCP amputation of left ring finger, init|Complete traumatic MCP amputation of left ring finger, init +C2855883|T037|PT|S68.115A|ICD10CM|Complete traumatic metacarpophalangeal amputation of left ring finger, initial encounter|Complete traumatic metacarpophalangeal amputation of left ring finger, initial encounter +C2855884|T037|AB|S68.115D|ICD10CM|Complete traumatic MCP amputation of left ring finger, subs|Complete traumatic MCP amputation of left ring finger, subs +C2855884|T037|PT|S68.115D|ICD10CM|Complete traumatic metacarpophalangeal amputation of left ring finger, subsequent encounter|Complete traumatic metacarpophalangeal amputation of left ring finger, subsequent encounter +C2855885|T037|AB|S68.115S|ICD10CM|Complete traumatic MCP amputation of l rng fngr, sequela|Complete traumatic MCP amputation of l rng fngr, sequela +C2855885|T037|PT|S68.115S|ICD10CM|Complete traumatic metacarpophalangeal amputation of left ring finger, sequela|Complete traumatic metacarpophalangeal amputation of left ring finger, sequela +C2855886|T037|AB|S68.116|ICD10CM|Complete traumatic MCP amputation of right little finger|Complete traumatic MCP amputation of right little finger +C2855886|T037|HT|S68.116|ICD10CM|Complete traumatic metacarpophalangeal amputation of right little finger|Complete traumatic metacarpophalangeal amputation of right little finger +C2855887|T037|AB|S68.116A|ICD10CM|Complete traumatic MCP amputation of r little finger, init|Complete traumatic MCP amputation of r little finger, init +C2855887|T037|PT|S68.116A|ICD10CM|Complete traumatic metacarpophalangeal amputation of right little finger, initial encounter|Complete traumatic metacarpophalangeal amputation of right little finger, initial encounter +C2855888|T037|AB|S68.116D|ICD10CM|Complete traumatic MCP amputation of r little finger, subs|Complete traumatic MCP amputation of r little finger, subs +C2855888|T037|PT|S68.116D|ICD10CM|Complete traumatic metacarpophalangeal amputation of right little finger, subsequent encounter|Complete traumatic metacarpophalangeal amputation of right little finger, subsequent encounter +C2855889|T037|AB|S68.116S|ICD10CM|Complete traumatic MCP amp of r little finger, sequela|Complete traumatic MCP amp of r little finger, sequela +C2855889|T037|PT|S68.116S|ICD10CM|Complete traumatic metacarpophalangeal amputation of right little finger, sequela|Complete traumatic metacarpophalangeal amputation of right little finger, sequela +C2855890|T037|AB|S68.117|ICD10CM|Complete traumatic MCP amputation of left little finger|Complete traumatic MCP amputation of left little finger +C2855890|T037|HT|S68.117|ICD10CM|Complete traumatic metacarpophalangeal amputation of left little finger|Complete traumatic metacarpophalangeal amputation of left little finger +C2855891|T037|AB|S68.117A|ICD10CM|Complete traumatic MCP amputation of l little finger, init|Complete traumatic MCP amputation of l little finger, init +C2855891|T037|PT|S68.117A|ICD10CM|Complete traumatic metacarpophalangeal amputation of left little finger, initial encounter|Complete traumatic metacarpophalangeal amputation of left little finger, initial encounter +C2855892|T037|AB|S68.117D|ICD10CM|Complete traumatic MCP amputation of l little finger, subs|Complete traumatic MCP amputation of l little finger, subs +C2855892|T037|PT|S68.117D|ICD10CM|Complete traumatic metacarpophalangeal amputation of left little finger, subsequent encounter|Complete traumatic metacarpophalangeal amputation of left little finger, subsequent encounter +C2855893|T037|AB|S68.117S|ICD10CM|Complete traumatic MCP amp of l little finger, sequela|Complete traumatic MCP amp of l little finger, sequela +C2855893|T037|PT|S68.117S|ICD10CM|Complete traumatic metacarpophalangeal amputation of left little finger, sequela|Complete traumatic metacarpophalangeal amputation of left little finger, sequela +C3511443|T037|AB|S68.118|ICD10CM|Complete traumatic metacarpophalangeal amputation of finger|Complete traumatic metacarpophalangeal amputation of finger +C3511443|T037|HT|S68.118|ICD10CM|Complete traumatic metacarpophalangeal amputation of other finger|Complete traumatic metacarpophalangeal amputation of other finger +C2855894|T037|ET|S68.118|ICD10CM|Complete traumatic metacarpophalangeal amputation of specified finger with unspecified laterality|Complete traumatic metacarpophalangeal amputation of specified finger with unspecified laterality +C2855896|T037|AB|S68.118A|ICD10CM|Complete traumatic MCP amputation of finger, init|Complete traumatic MCP amputation of finger, init +C2855896|T037|PT|S68.118A|ICD10CM|Complete traumatic metacarpophalangeal amputation of other finger, initial encounter|Complete traumatic metacarpophalangeal amputation of other finger, initial encounter +C2855897|T037|AB|S68.118D|ICD10CM|Complete traumatic MCP amputation of finger, subs|Complete traumatic MCP amputation of finger, subs +C2855897|T037|PT|S68.118D|ICD10CM|Complete traumatic metacarpophalangeal amputation of other finger, subsequent encounter|Complete traumatic metacarpophalangeal amputation of other finger, subsequent encounter +C2855898|T037|AB|S68.118S|ICD10CM|Complete traumatic MCP amputation of finger, sequela|Complete traumatic MCP amputation of finger, sequela +C2855898|T037|PT|S68.118S|ICD10CM|Complete traumatic metacarpophalangeal amputation of other finger, sequela|Complete traumatic metacarpophalangeal amputation of other finger, sequela +C2855861|T037|AB|S68.119|ICD10CM|Complete traumatic MCP amputation of unsp finger|Complete traumatic MCP amputation of unsp finger +C2855861|T037|HT|S68.119|ICD10CM|Complete traumatic metacarpophalangeal amputation of unspecified finger|Complete traumatic metacarpophalangeal amputation of unspecified finger +C2855900|T037|AB|S68.119A|ICD10CM|Complete traumatic MCP amputation of unsp finger, init|Complete traumatic MCP amputation of unsp finger, init +C2855900|T037|PT|S68.119A|ICD10CM|Complete traumatic metacarpophalangeal amputation of unspecified finger, initial encounter|Complete traumatic metacarpophalangeal amputation of unspecified finger, initial encounter +C2855901|T037|AB|S68.119D|ICD10CM|Complete traumatic MCP amputation of unsp finger, subs|Complete traumatic MCP amputation of unsp finger, subs +C2855901|T037|PT|S68.119D|ICD10CM|Complete traumatic metacarpophalangeal amputation of unspecified finger, subsequent encounter|Complete traumatic metacarpophalangeal amputation of unspecified finger, subsequent encounter +C2855902|T037|AB|S68.119S|ICD10CM|Complete traumatic MCP amputation of unsp finger, sequela|Complete traumatic MCP amputation of unsp finger, sequela +C2855902|T037|PT|S68.119S|ICD10CM|Complete traumatic metacarpophalangeal amputation of unspecified finger, sequela|Complete traumatic metacarpophalangeal amputation of unspecified finger, sequela +C2855903|T037|AB|S68.12|ICD10CM|Partial traumatic MCP amputation of and unsp finger|Partial traumatic MCP amputation of and unsp finger +C2855903|T037|HT|S68.12|ICD10CM|Partial traumatic metacarpophalangeal amputation of other and unspecified finger|Partial traumatic metacarpophalangeal amputation of other and unspecified finger +C2855904|T037|AB|S68.120|ICD10CM|Partial traumatic MCP amputation of right index finger|Partial traumatic MCP amputation of right index finger +C2855904|T037|HT|S68.120|ICD10CM|Partial traumatic metacarpophalangeal amputation of right index finger|Partial traumatic metacarpophalangeal amputation of right index finger +C2855905|T037|AB|S68.120A|ICD10CM|Partial traumatic MCP amputation of right index finger, init|Partial traumatic MCP amputation of right index finger, init +C2855905|T037|PT|S68.120A|ICD10CM|Partial traumatic metacarpophalangeal amputation of right index finger, initial encounter|Partial traumatic metacarpophalangeal amputation of right index finger, initial encounter +C2855906|T037|AB|S68.120D|ICD10CM|Partial traumatic MCP amputation of right index finger, subs|Partial traumatic MCP amputation of right index finger, subs +C2855906|T037|PT|S68.120D|ICD10CM|Partial traumatic metacarpophalangeal amputation of right index finger, subsequent encounter|Partial traumatic metacarpophalangeal amputation of right index finger, subsequent encounter +C2855907|T037|AB|S68.120S|ICD10CM|Partial traumatic MCP amputation of r idx fngr, sequela|Partial traumatic MCP amputation of r idx fngr, sequela +C2855907|T037|PT|S68.120S|ICD10CM|Partial traumatic metacarpophalangeal amputation of right index finger, sequela|Partial traumatic metacarpophalangeal amputation of right index finger, sequela +C2855908|T037|AB|S68.121|ICD10CM|Partial traumatic MCP amputation of left index finger|Partial traumatic MCP amputation of left index finger +C2855908|T037|HT|S68.121|ICD10CM|Partial traumatic metacarpophalangeal amputation of left index finger|Partial traumatic metacarpophalangeal amputation of left index finger +C2855909|T037|AB|S68.121A|ICD10CM|Partial traumatic MCP amputation of left index finger, init|Partial traumatic MCP amputation of left index finger, init +C2855909|T037|PT|S68.121A|ICD10CM|Partial traumatic metacarpophalangeal amputation of left index finger, initial encounter|Partial traumatic metacarpophalangeal amputation of left index finger, initial encounter +C2855910|T037|AB|S68.121D|ICD10CM|Partial traumatic MCP amputation of left index finger, subs|Partial traumatic MCP amputation of left index finger, subs +C2855910|T037|PT|S68.121D|ICD10CM|Partial traumatic metacarpophalangeal amputation of left index finger, subsequent encounter|Partial traumatic metacarpophalangeal amputation of left index finger, subsequent encounter +C2855911|T037|AB|S68.121S|ICD10CM|Partial traumatic MCP amputation of l idx fngr, sequela|Partial traumatic MCP amputation of l idx fngr, sequela +C2855911|T037|PT|S68.121S|ICD10CM|Partial traumatic metacarpophalangeal amputation of left index finger, sequela|Partial traumatic metacarpophalangeal amputation of left index finger, sequela +C2855912|T037|AB|S68.122|ICD10CM|Partial traumatic MCP amputation of right middle finger|Partial traumatic MCP amputation of right middle finger +C2855912|T037|HT|S68.122|ICD10CM|Partial traumatic metacarpophalangeal amputation of right middle finger|Partial traumatic metacarpophalangeal amputation of right middle finger +C2855913|T037|AB|S68.122A|ICD10CM|Partial traumatic MCP amputation of r mid finger, init|Partial traumatic MCP amputation of r mid finger, init +C2855913|T037|PT|S68.122A|ICD10CM|Partial traumatic metacarpophalangeal amputation of right middle finger, initial encounter|Partial traumatic metacarpophalangeal amputation of right middle finger, initial encounter +C2855914|T037|AB|S68.122D|ICD10CM|Partial traumatic MCP amputation of r mid finger, subs|Partial traumatic MCP amputation of r mid finger, subs +C2855914|T037|PT|S68.122D|ICD10CM|Partial traumatic metacarpophalangeal amputation of right middle finger, subsequent encounter|Partial traumatic metacarpophalangeal amputation of right middle finger, subsequent encounter +C2855915|T037|AB|S68.122S|ICD10CM|Partial traumatic MCP amputation of r mid finger, sequela|Partial traumatic MCP amputation of r mid finger, sequela +C2855915|T037|PT|S68.122S|ICD10CM|Partial traumatic metacarpophalangeal amputation of right middle finger, sequela|Partial traumatic metacarpophalangeal amputation of right middle finger, sequela +C2855916|T037|AB|S68.123|ICD10CM|Partial traumatic MCP amputation of left middle finger|Partial traumatic MCP amputation of left middle finger +C2855916|T037|HT|S68.123|ICD10CM|Partial traumatic metacarpophalangeal amputation of left middle finger|Partial traumatic metacarpophalangeal amputation of left middle finger +C2855917|T037|AB|S68.123A|ICD10CM|Partial traumatic MCP amputation of left middle finger, init|Partial traumatic MCP amputation of left middle finger, init +C2855917|T037|PT|S68.123A|ICD10CM|Partial traumatic metacarpophalangeal amputation of left middle finger, initial encounter|Partial traumatic metacarpophalangeal amputation of left middle finger, initial encounter +C2855918|T037|AB|S68.123D|ICD10CM|Partial traumatic MCP amputation of left middle finger, subs|Partial traumatic MCP amputation of left middle finger, subs +C2855918|T037|PT|S68.123D|ICD10CM|Partial traumatic metacarpophalangeal amputation of left middle finger, subsequent encounter|Partial traumatic metacarpophalangeal amputation of left middle finger, subsequent encounter +C2855919|T037|AB|S68.123S|ICD10CM|Partial traumatic MCP amputation of l mid finger, sequela|Partial traumatic MCP amputation of l mid finger, sequela +C2855919|T037|PT|S68.123S|ICD10CM|Partial traumatic metacarpophalangeal amputation of left middle finger, sequela|Partial traumatic metacarpophalangeal amputation of left middle finger, sequela +C2855920|T037|AB|S68.124|ICD10CM|Partial traumatic MCP amputation of right ring finger|Partial traumatic MCP amputation of right ring finger +C2855920|T037|HT|S68.124|ICD10CM|Partial traumatic metacarpophalangeal amputation of right ring finger|Partial traumatic metacarpophalangeal amputation of right ring finger +C2855921|T037|AB|S68.124A|ICD10CM|Partial traumatic MCP amputation of right ring finger, init|Partial traumatic MCP amputation of right ring finger, init +C2855921|T037|PT|S68.124A|ICD10CM|Partial traumatic metacarpophalangeal amputation of right ring finger, initial encounter|Partial traumatic metacarpophalangeal amputation of right ring finger, initial encounter +C2855922|T037|AB|S68.124D|ICD10CM|Partial traumatic MCP amputation of right ring finger, subs|Partial traumatic MCP amputation of right ring finger, subs +C2855922|T037|PT|S68.124D|ICD10CM|Partial traumatic metacarpophalangeal amputation of right ring finger, subsequent encounter|Partial traumatic metacarpophalangeal amputation of right ring finger, subsequent encounter +C2855923|T037|AB|S68.124S|ICD10CM|Partial traumatic MCP amputation of r rng fngr, sequela|Partial traumatic MCP amputation of r rng fngr, sequela +C2855923|T037|PT|S68.124S|ICD10CM|Partial traumatic metacarpophalangeal amputation of right ring finger, sequela|Partial traumatic metacarpophalangeal amputation of right ring finger, sequela +C2855924|T037|AB|S68.125|ICD10CM|Partial traumatic MCP amputation of left ring finger|Partial traumatic MCP amputation of left ring finger +C2855924|T037|HT|S68.125|ICD10CM|Partial traumatic metacarpophalangeal amputation of left ring finger|Partial traumatic metacarpophalangeal amputation of left ring finger +C2855925|T037|AB|S68.125A|ICD10CM|Partial traumatic MCP amputation of left ring finger, init|Partial traumatic MCP amputation of left ring finger, init +C2855925|T037|PT|S68.125A|ICD10CM|Partial traumatic metacarpophalangeal amputation of left ring finger, initial encounter|Partial traumatic metacarpophalangeal amputation of left ring finger, initial encounter +C2855926|T037|AB|S68.125D|ICD10CM|Partial traumatic MCP amputation of left ring finger, subs|Partial traumatic MCP amputation of left ring finger, subs +C2855926|T037|PT|S68.125D|ICD10CM|Partial traumatic metacarpophalangeal amputation of left ring finger, subsequent encounter|Partial traumatic metacarpophalangeal amputation of left ring finger, subsequent encounter +C2855927|T037|AB|S68.125S|ICD10CM|Partial traumatic MCP amputation of l rng fngr, sequela|Partial traumatic MCP amputation of l rng fngr, sequela +C2855927|T037|PT|S68.125S|ICD10CM|Partial traumatic metacarpophalangeal amputation of left ring finger, sequela|Partial traumatic metacarpophalangeal amputation of left ring finger, sequela +C2855928|T037|AB|S68.126|ICD10CM|Partial traumatic MCP amputation of right little finger|Partial traumatic MCP amputation of right little finger +C2855928|T037|HT|S68.126|ICD10CM|Partial traumatic metacarpophalangeal amputation of right little finger|Partial traumatic metacarpophalangeal amputation of right little finger +C2855929|T037|AB|S68.126A|ICD10CM|Partial traumatic MCP amputation of r little finger, init|Partial traumatic MCP amputation of r little finger, init +C2855929|T037|PT|S68.126A|ICD10CM|Partial traumatic metacarpophalangeal amputation of right little finger, initial encounter|Partial traumatic metacarpophalangeal amputation of right little finger, initial encounter +C2855930|T037|AB|S68.126D|ICD10CM|Partial traumatic MCP amputation of r little finger, subs|Partial traumatic MCP amputation of r little finger, subs +C2855930|T037|PT|S68.126D|ICD10CM|Partial traumatic metacarpophalangeal amputation of right little finger, subsequent encounter|Partial traumatic metacarpophalangeal amputation of right little finger, subsequent encounter +C2855931|T037|AB|S68.126S|ICD10CM|Partial traumatic MCP amputation of r little finger, sequela|Partial traumatic MCP amputation of r little finger, sequela +C2855931|T037|PT|S68.126S|ICD10CM|Partial traumatic metacarpophalangeal amputation of right little finger, sequela|Partial traumatic metacarpophalangeal amputation of right little finger, sequela +C2855932|T037|AB|S68.127|ICD10CM|Partial traumatic MCP amputation of left little finger|Partial traumatic MCP amputation of left little finger +C2855932|T037|HT|S68.127|ICD10CM|Partial traumatic metacarpophalangeal amputation of left little finger|Partial traumatic metacarpophalangeal amputation of left little finger +C2855933|T037|AB|S68.127A|ICD10CM|Partial traumatic MCP amputation of left little finger, init|Partial traumatic MCP amputation of left little finger, init +C2855933|T037|PT|S68.127A|ICD10CM|Partial traumatic metacarpophalangeal amputation of left little finger, initial encounter|Partial traumatic metacarpophalangeal amputation of left little finger, initial encounter +C2855934|T037|AB|S68.127D|ICD10CM|Partial traumatic MCP amputation of left little finger, subs|Partial traumatic MCP amputation of left little finger, subs +C2855934|T037|PT|S68.127D|ICD10CM|Partial traumatic metacarpophalangeal amputation of left little finger, subsequent encounter|Partial traumatic metacarpophalangeal amputation of left little finger, subsequent encounter +C2855935|T037|AB|S68.127S|ICD10CM|Partial traumatic MCP amputation of l little finger, sequela|Partial traumatic MCP amputation of l little finger, sequela +C2855935|T037|PT|S68.127S|ICD10CM|Partial traumatic metacarpophalangeal amputation of left little finger, sequela|Partial traumatic metacarpophalangeal amputation of left little finger, sequela +C3511444|T037|AB|S68.128|ICD10CM|Partial traumatic metacarpophalangeal amputation of finger|Partial traumatic metacarpophalangeal amputation of finger +C3511444|T037|HT|S68.128|ICD10CM|Partial traumatic metacarpophalangeal amputation of other finger|Partial traumatic metacarpophalangeal amputation of other finger +C2855936|T037|ET|S68.128|ICD10CM|Partial traumatic metacarpophalangeal amputation of specified finger with unspecified laterality|Partial traumatic metacarpophalangeal amputation of specified finger with unspecified laterality +C2855938|T037|AB|S68.128A|ICD10CM|Partial traumatic MCP amputation of finger, init|Partial traumatic MCP amputation of finger, init +C2855938|T037|PT|S68.128A|ICD10CM|Partial traumatic metacarpophalangeal amputation of other finger, initial encounter|Partial traumatic metacarpophalangeal amputation of other finger, initial encounter +C2855939|T037|AB|S68.128D|ICD10CM|Partial traumatic MCP amputation of finger, subs|Partial traumatic MCP amputation of finger, subs +C2855939|T037|PT|S68.128D|ICD10CM|Partial traumatic metacarpophalangeal amputation of other finger, subsequent encounter|Partial traumatic metacarpophalangeal amputation of other finger, subsequent encounter +C2855940|T037|AB|S68.128S|ICD10CM|Partial traumatic MCP amputation of finger, sequela|Partial traumatic MCP amputation of finger, sequela +C2855940|T037|PT|S68.128S|ICD10CM|Partial traumatic metacarpophalangeal amputation of other finger, sequela|Partial traumatic metacarpophalangeal amputation of other finger, sequela +C2855941|T037|AB|S68.129|ICD10CM|Partial traumatic MCP amputation of unsp finger|Partial traumatic MCP amputation of unsp finger +C2855941|T037|HT|S68.129|ICD10CM|Partial traumatic metacarpophalangeal amputation of unspecified finger|Partial traumatic metacarpophalangeal amputation of unspecified finger +C2855942|T037|AB|S68.129A|ICD10CM|Partial traumatic MCP amputation of unsp finger, init|Partial traumatic MCP amputation of unsp finger, init +C2855942|T037|PT|S68.129A|ICD10CM|Partial traumatic metacarpophalangeal amputation of unspecified finger, initial encounter|Partial traumatic metacarpophalangeal amputation of unspecified finger, initial encounter +C2855943|T037|AB|S68.129D|ICD10CM|Partial traumatic MCP amputation of unsp finger, subs|Partial traumatic MCP amputation of unsp finger, subs +C2855943|T037|PT|S68.129D|ICD10CM|Partial traumatic metacarpophalangeal amputation of unspecified finger, subsequent encounter|Partial traumatic metacarpophalangeal amputation of unspecified finger, subsequent encounter +C2855944|T037|AB|S68.129S|ICD10CM|Partial traumatic MCP amputation of unsp finger, sequela|Partial traumatic MCP amputation of unsp finger, sequela +C2855944|T037|PT|S68.129S|ICD10CM|Partial traumatic metacarpophalangeal amputation of unspecified finger, sequela|Partial traumatic metacarpophalangeal amputation of unspecified finger, sequela +C0478318|T037|PT|S68.2|ICD10|Traumatic amputation of two or more fingers alone (complete) (partial)|Traumatic amputation of two or more fingers alone (complete) (partial) +C0478319|T037|PT|S68.3|ICD10|Combined traumatic amputation of (part of) finger(s) with other parts of wrist and hand|Combined traumatic amputation of (part of) finger(s) with other parts of wrist and hand +C0495923|T037|PT|S68.4|ICD10|Traumatic amputation of hand at wrist level|Traumatic amputation of hand at wrist level +C0495923|T037|HT|S68.4|ICD10CM|Traumatic amputation of hand at wrist level|Traumatic amputation of hand at wrist level +C0495923|T037|AB|S68.4|ICD10CM|Traumatic amputation of hand at wrist level|Traumatic amputation of hand at wrist level +C0347583|T037|ET|S68.4|ICD10CM|Traumatic amputation of hand NOS|Traumatic amputation of hand NOS +C0478321|T037|ET|S68.4|ICD10CM|Traumatic amputation of wrist|Traumatic amputation of wrist +C2855945|T037|AB|S68.41|ICD10CM|Complete traumatic amputation of hand at wrist level|Complete traumatic amputation of hand at wrist level +C2855945|T037|HT|S68.41|ICD10CM|Complete traumatic amputation of hand at wrist level|Complete traumatic amputation of hand at wrist level +C2855946|T037|AB|S68.411|ICD10CM|Complete traumatic amputation of right hand at wrist level|Complete traumatic amputation of right hand at wrist level +C2855946|T037|HT|S68.411|ICD10CM|Complete traumatic amputation of right hand at wrist level|Complete traumatic amputation of right hand at wrist level +C2855947|T037|AB|S68.411A|ICD10CM|Complete traumatic amp of right hand at wrist level, init|Complete traumatic amp of right hand at wrist level, init +C2855947|T037|PT|S68.411A|ICD10CM|Complete traumatic amputation of right hand at wrist level, initial encounter|Complete traumatic amputation of right hand at wrist level, initial encounter +C2855948|T037|AB|S68.411D|ICD10CM|Complete traumatic amp of right hand at wrist level, subs|Complete traumatic amp of right hand at wrist level, subs +C2855948|T037|PT|S68.411D|ICD10CM|Complete traumatic amputation of right hand at wrist level, subsequent encounter|Complete traumatic amputation of right hand at wrist level, subsequent encounter +C2855949|T037|AB|S68.411S|ICD10CM|Complete traumatic amp of right hand at wrist level, sequela|Complete traumatic amp of right hand at wrist level, sequela +C2855949|T037|PT|S68.411S|ICD10CM|Complete traumatic amputation of right hand at wrist level, sequela|Complete traumatic amputation of right hand at wrist level, sequela +C2855950|T037|AB|S68.412|ICD10CM|Complete traumatic amputation of left hand at wrist level|Complete traumatic amputation of left hand at wrist level +C2855950|T037|HT|S68.412|ICD10CM|Complete traumatic amputation of left hand at wrist level|Complete traumatic amputation of left hand at wrist level +C2855951|T037|AB|S68.412A|ICD10CM|Complete traumatic amp of left hand at wrist level, init|Complete traumatic amp of left hand at wrist level, init +C2855951|T037|PT|S68.412A|ICD10CM|Complete traumatic amputation of left hand at wrist level, initial encounter|Complete traumatic amputation of left hand at wrist level, initial encounter +C2855952|T037|AB|S68.412D|ICD10CM|Complete traumatic amp of left hand at wrist level, subs|Complete traumatic amp of left hand at wrist level, subs +C2855952|T037|PT|S68.412D|ICD10CM|Complete traumatic amputation of left hand at wrist level, subsequent encounter|Complete traumatic amputation of left hand at wrist level, subsequent encounter +C2855953|T037|AB|S68.412S|ICD10CM|Complete traumatic amp of left hand at wrist level, sequela|Complete traumatic amp of left hand at wrist level, sequela +C2855953|T037|PT|S68.412S|ICD10CM|Complete traumatic amputation of left hand at wrist level, sequela|Complete traumatic amputation of left hand at wrist level, sequela +C2855954|T037|AB|S68.419|ICD10CM|Complete traumatic amputation of unsp hand at wrist level|Complete traumatic amputation of unsp hand at wrist level +C2855954|T037|HT|S68.419|ICD10CM|Complete traumatic amputation of unspecified hand at wrist level|Complete traumatic amputation of unspecified hand at wrist level +C2855955|T037|AB|S68.419A|ICD10CM|Complete traumatic amp of unsp hand at wrist level, init|Complete traumatic amp of unsp hand at wrist level, init +C2855955|T037|PT|S68.419A|ICD10CM|Complete traumatic amputation of unspecified hand at wrist level, initial encounter|Complete traumatic amputation of unspecified hand at wrist level, initial encounter +C2855956|T037|AB|S68.419D|ICD10CM|Complete traumatic amp of unsp hand at wrist level, subs|Complete traumatic amp of unsp hand at wrist level, subs +C2855956|T037|PT|S68.419D|ICD10CM|Complete traumatic amputation of unspecified hand at wrist level, subsequent encounter|Complete traumatic amputation of unspecified hand at wrist level, subsequent encounter +C2855957|T037|AB|S68.419S|ICD10CM|Complete traumatic amp of unsp hand at wrist level, sequela|Complete traumatic amp of unsp hand at wrist level, sequela +C2855957|T037|PT|S68.419S|ICD10CM|Complete traumatic amputation of unspecified hand at wrist level, sequela|Complete traumatic amputation of unspecified hand at wrist level, sequela +C2855958|T037|AB|S68.42|ICD10CM|Partial traumatic amputation of hand at wrist level|Partial traumatic amputation of hand at wrist level +C2855958|T037|HT|S68.42|ICD10CM|Partial traumatic amputation of hand at wrist level|Partial traumatic amputation of hand at wrist level +C2855959|T037|AB|S68.421|ICD10CM|Partial traumatic amputation of right hand at wrist level|Partial traumatic amputation of right hand at wrist level +C2855959|T037|HT|S68.421|ICD10CM|Partial traumatic amputation of right hand at wrist level|Partial traumatic amputation of right hand at wrist level +C2855960|T037|AB|S68.421A|ICD10CM|Partial traumatic amp of right hand at wrist level, init|Partial traumatic amp of right hand at wrist level, init +C2855960|T037|PT|S68.421A|ICD10CM|Partial traumatic amputation of right hand at wrist level, initial encounter|Partial traumatic amputation of right hand at wrist level, initial encounter +C2855961|T037|AB|S68.421D|ICD10CM|Partial traumatic amp of right hand at wrist level, subs|Partial traumatic amp of right hand at wrist level, subs +C2855961|T037|PT|S68.421D|ICD10CM|Partial traumatic amputation of right hand at wrist level, subsequent encounter|Partial traumatic amputation of right hand at wrist level, subsequent encounter +C2855962|T037|AB|S68.421S|ICD10CM|Partial traumatic amp of right hand at wrist level, sequela|Partial traumatic amp of right hand at wrist level, sequela +C2855962|T037|PT|S68.421S|ICD10CM|Partial traumatic amputation of right hand at wrist level, sequela|Partial traumatic amputation of right hand at wrist level, sequela +C2855963|T037|AB|S68.422|ICD10CM|Partial traumatic amputation of left hand at wrist level|Partial traumatic amputation of left hand at wrist level +C2855963|T037|HT|S68.422|ICD10CM|Partial traumatic amputation of left hand at wrist level|Partial traumatic amputation of left hand at wrist level +C2855964|T037|AB|S68.422A|ICD10CM|Partial traumatic amp of left hand at wrist level, init|Partial traumatic amp of left hand at wrist level, init +C2855964|T037|PT|S68.422A|ICD10CM|Partial traumatic amputation of left hand at wrist level, initial encounter|Partial traumatic amputation of left hand at wrist level, initial encounter +C2855965|T037|AB|S68.422D|ICD10CM|Partial traumatic amp of left hand at wrist level, subs|Partial traumatic amp of left hand at wrist level, subs +C2855965|T037|PT|S68.422D|ICD10CM|Partial traumatic amputation of left hand at wrist level, subsequent encounter|Partial traumatic amputation of left hand at wrist level, subsequent encounter +C2855966|T037|AB|S68.422S|ICD10CM|Partial traumatic amp of left hand at wrist level, sequela|Partial traumatic amp of left hand at wrist level, sequela +C2855966|T037|PT|S68.422S|ICD10CM|Partial traumatic amputation of left hand at wrist level, sequela|Partial traumatic amputation of left hand at wrist level, sequela +C2855967|T037|AB|S68.429|ICD10CM|Partial traumatic amputation of unsp hand at wrist level|Partial traumatic amputation of unsp hand at wrist level +C2855967|T037|HT|S68.429|ICD10CM|Partial traumatic amputation of unspecified hand at wrist level|Partial traumatic amputation of unspecified hand at wrist level +C2855968|T037|AB|S68.429A|ICD10CM|Partial traumatic amp of unsp hand at wrist level, init|Partial traumatic amp of unsp hand at wrist level, init +C2855968|T037|PT|S68.429A|ICD10CM|Partial traumatic amputation of unspecified hand at wrist level, initial encounter|Partial traumatic amputation of unspecified hand at wrist level, initial encounter +C2855969|T037|AB|S68.429D|ICD10CM|Partial traumatic amp of unsp hand at wrist level, subs|Partial traumatic amp of unsp hand at wrist level, subs +C2855969|T037|PT|S68.429D|ICD10CM|Partial traumatic amputation of unspecified hand at wrist level, subsequent encounter|Partial traumatic amputation of unspecified hand at wrist level, subsequent encounter +C2855970|T037|AB|S68.429S|ICD10CM|Partial traumatic amp of unsp hand at wrist level, sequela|Partial traumatic amp of unsp hand at wrist level, sequela +C2855970|T037|PT|S68.429S|ICD10CM|Partial traumatic amputation of unspecified hand at wrist level, sequela|Partial traumatic amputation of unspecified hand at wrist level, sequela +C2855971|T037|ET|S68.5|ICD10CM|Traumatic interphalangeal joint amputation of thumb|Traumatic interphalangeal joint amputation of thumb +C2855971|T037|AB|S68.5|ICD10CM|Traumatic transphalangeal amputation of thumb|Traumatic transphalangeal amputation of thumb +C2855971|T037|HT|S68.5|ICD10CM|Traumatic transphalangeal amputation of thumb|Traumatic transphalangeal amputation of thumb +C2855972|T037|AB|S68.51|ICD10CM|Complete traumatic transphalangeal amputation of thumb|Complete traumatic transphalangeal amputation of thumb +C2855972|T037|HT|S68.51|ICD10CM|Complete traumatic transphalangeal amputation of thumb|Complete traumatic transphalangeal amputation of thumb +C2855973|T037|AB|S68.511|ICD10CM|Complete traumatic transphalangeal amputation of right thumb|Complete traumatic transphalangeal amputation of right thumb +C2855973|T037|HT|S68.511|ICD10CM|Complete traumatic transphalangeal amputation of right thumb|Complete traumatic transphalangeal amputation of right thumb +C2855974|T037|PT|S68.511A|ICD10CM|Complete traumatic transphalangeal amputation of right thumb, initial encounter|Complete traumatic transphalangeal amputation of right thumb, initial encounter +C2855974|T037|AB|S68.511A|ICD10CM|Complete traumatic trnsphal amputation of right thumb, init|Complete traumatic trnsphal amputation of right thumb, init +C2855975|T037|PT|S68.511D|ICD10CM|Complete traumatic transphalangeal amputation of right thumb, subsequent encounter|Complete traumatic transphalangeal amputation of right thumb, subsequent encounter +C2855975|T037|AB|S68.511D|ICD10CM|Complete traumatic trnsphal amputation of right thumb, subs|Complete traumatic trnsphal amputation of right thumb, subs +C2855976|T037|PT|S68.511S|ICD10CM|Complete traumatic transphalangeal amputation of right thumb, sequela|Complete traumatic transphalangeal amputation of right thumb, sequela +C2855976|T037|AB|S68.511S|ICD10CM|Complete traumatic trnsphal amputation of r thm, sequela|Complete traumatic trnsphal amputation of r thm, sequela +C2855977|T037|AB|S68.512|ICD10CM|Complete traumatic transphalangeal amputation of left thumb|Complete traumatic transphalangeal amputation of left thumb +C2855977|T037|HT|S68.512|ICD10CM|Complete traumatic transphalangeal amputation of left thumb|Complete traumatic transphalangeal amputation of left thumb +C2855978|T037|PT|S68.512A|ICD10CM|Complete traumatic transphalangeal amputation of left thumb, initial encounter|Complete traumatic transphalangeal amputation of left thumb, initial encounter +C2855978|T037|AB|S68.512A|ICD10CM|Complete traumatic trnsphal amputation of left thumb, init|Complete traumatic trnsphal amputation of left thumb, init +C2855979|T037|PT|S68.512D|ICD10CM|Complete traumatic transphalangeal amputation of left thumb, subsequent encounter|Complete traumatic transphalangeal amputation of left thumb, subsequent encounter +C2855979|T037|AB|S68.512D|ICD10CM|Complete traumatic trnsphal amputation of left thumb, subs|Complete traumatic trnsphal amputation of left thumb, subs +C2855980|T037|PT|S68.512S|ICD10CM|Complete traumatic transphalangeal amputation of left thumb, sequela|Complete traumatic transphalangeal amputation of left thumb, sequela +C2855980|T037|AB|S68.512S|ICD10CM|Complete traumatic trnsphal amp of left thumb, sequela|Complete traumatic trnsphal amp of left thumb, sequela +C2855981|T037|AB|S68.519|ICD10CM|Complete traumatic transphalangeal amputation of unsp thumb|Complete traumatic transphalangeal amputation of unsp thumb +C2855981|T037|HT|S68.519|ICD10CM|Complete traumatic transphalangeal amputation of unspecified thumb|Complete traumatic transphalangeal amputation of unspecified thumb +C2855982|T037|AB|S68.519A|ICD10CM|Complete traumatic transphalangeal amputation of thmb, init|Complete traumatic transphalangeal amputation of thmb, init +C2855982|T037|PT|S68.519A|ICD10CM|Complete traumatic transphalangeal amputation of unspecified thumb, initial encounter|Complete traumatic transphalangeal amputation of unspecified thumb, initial encounter +C2855983|T037|AB|S68.519D|ICD10CM|Complete traumatic transphalangeal amputation of thmb, subs|Complete traumatic transphalangeal amputation of thmb, subs +C2855983|T037|PT|S68.519D|ICD10CM|Complete traumatic transphalangeal amputation of unspecified thumb, subsequent encounter|Complete traumatic transphalangeal amputation of unspecified thumb, subsequent encounter +C2855984|T037|PT|S68.519S|ICD10CM|Complete traumatic transphalangeal amputation of unspecified thumb, sequela|Complete traumatic transphalangeal amputation of unspecified thumb, sequela +C2855984|T037|AB|S68.519S|ICD10CM|Complete traumatic trnsphal amputation of thmb, sequela|Complete traumatic trnsphal amputation of thmb, sequela +C2855985|T037|AB|S68.52|ICD10CM|Partial traumatic transphalangeal amputation of thumb|Partial traumatic transphalangeal amputation of thumb +C2855985|T037|HT|S68.52|ICD10CM|Partial traumatic transphalangeal amputation of thumb|Partial traumatic transphalangeal amputation of thumb +C2855986|T037|AB|S68.521|ICD10CM|Partial traumatic transphalangeal amputation of right thumb|Partial traumatic transphalangeal amputation of right thumb +C2855986|T037|HT|S68.521|ICD10CM|Partial traumatic transphalangeal amputation of right thumb|Partial traumatic transphalangeal amputation of right thumb +C2855987|T037|PT|S68.521A|ICD10CM|Partial traumatic transphalangeal amputation of right thumb, initial encounter|Partial traumatic transphalangeal amputation of right thumb, initial encounter +C2855987|T037|AB|S68.521A|ICD10CM|Partial traumatic trnsphal amputation of right thumb, init|Partial traumatic trnsphal amputation of right thumb, init +C2855988|T037|PT|S68.521D|ICD10CM|Partial traumatic transphalangeal amputation of right thumb, subsequent encounter|Partial traumatic transphalangeal amputation of right thumb, subsequent encounter +C2855988|T037|AB|S68.521D|ICD10CM|Partial traumatic trnsphal amputation of right thumb, subs|Partial traumatic trnsphal amputation of right thumb, subs +C2855989|T037|PT|S68.521S|ICD10CM|Partial traumatic transphalangeal amputation of right thumb, sequela|Partial traumatic transphalangeal amputation of right thumb, sequela +C2855989|T037|AB|S68.521S|ICD10CM|Partial traumatic trnsphal amputation of r thm, sequela|Partial traumatic trnsphal amputation of r thm, sequela +C2855990|T037|AB|S68.522|ICD10CM|Partial traumatic transphalangeal amputation of left thumb|Partial traumatic transphalangeal amputation of left thumb +C2855990|T037|HT|S68.522|ICD10CM|Partial traumatic transphalangeal amputation of left thumb|Partial traumatic transphalangeal amputation of left thumb +C2855991|T037|PT|S68.522A|ICD10CM|Partial traumatic transphalangeal amputation of left thumb, initial encounter|Partial traumatic transphalangeal amputation of left thumb, initial encounter +C2855991|T037|AB|S68.522A|ICD10CM|Partial traumatic trnsphal amputation of left thumb, init|Partial traumatic trnsphal amputation of left thumb, init +C2855992|T037|PT|S68.522D|ICD10CM|Partial traumatic transphalangeal amputation of left thumb, subsequent encounter|Partial traumatic transphalangeal amputation of left thumb, subsequent encounter +C2855992|T037|AB|S68.522D|ICD10CM|Partial traumatic trnsphal amputation of left thumb, subs|Partial traumatic trnsphal amputation of left thumb, subs +C2855993|T037|PT|S68.522S|ICD10CM|Partial traumatic transphalangeal amputation of left thumb, sequela|Partial traumatic transphalangeal amputation of left thumb, sequela +C2855993|T037|AB|S68.522S|ICD10CM|Partial traumatic trnsphal amputation of left thumb, sequela|Partial traumatic trnsphal amputation of left thumb, sequela +C2855994|T037|AB|S68.529|ICD10CM|Partial traumatic transphalangeal amputation of unsp thumb|Partial traumatic transphalangeal amputation of unsp thumb +C2855994|T037|HT|S68.529|ICD10CM|Partial traumatic transphalangeal amputation of unspecified thumb|Partial traumatic transphalangeal amputation of unspecified thumb +C2855995|T037|AB|S68.529A|ICD10CM|Partial traumatic transphalangeal amputation of thmb, init|Partial traumatic transphalangeal amputation of thmb, init +C2855995|T037|PT|S68.529A|ICD10CM|Partial traumatic transphalangeal amputation of unspecified thumb, initial encounter|Partial traumatic transphalangeal amputation of unspecified thumb, initial encounter +C2855996|T037|AB|S68.529D|ICD10CM|Partial traumatic transphalangeal amputation of thmb, subs|Partial traumatic transphalangeal amputation of thmb, subs +C2855996|T037|PT|S68.529D|ICD10CM|Partial traumatic transphalangeal amputation of unspecified thumb, subsequent encounter|Partial traumatic transphalangeal amputation of unspecified thumb, subsequent encounter +C2855997|T037|PT|S68.529S|ICD10CM|Partial traumatic transphalangeal amputation of unspecified thumb, sequela|Partial traumatic transphalangeal amputation of unspecified thumb, sequela +C2855997|T037|AB|S68.529S|ICD10CM|Partial traumatic trnsphal amputation of thmb, sequela|Partial traumatic trnsphal amputation of thmb, sequela +C2855998|T037|AB|S68.6|ICD10CM|Traumatic transphalangeal amputation of oth and unsp finger|Traumatic transphalangeal amputation of oth and unsp finger +C2855998|T037|HT|S68.6|ICD10CM|Traumatic transphalangeal amputation of other and unspecified finger|Traumatic transphalangeal amputation of other and unspecified finger +C2855999|T037|HT|S68.61|ICD10CM|Complete traumatic transphalangeal amputation of other and unspecified finger(s)|Complete traumatic transphalangeal amputation of other and unspecified finger(s) +C2855999|T037|AB|S68.61|ICD10CM|Complete traumatic trnsphal amputation of and unsp finger(s)|Complete traumatic trnsphal amputation of and unsp finger(s) +C2856000|T037|AB|S68.610|ICD10CM|Complete traumatic transphalangeal amputation of r idx fngr|Complete traumatic transphalangeal amputation of r idx fngr +C2856000|T037|HT|S68.610|ICD10CM|Complete traumatic transphalangeal amputation of right index finger|Complete traumatic transphalangeal amputation of right index finger +C2856001|T037|PT|S68.610A|ICD10CM|Complete traumatic transphalangeal amputation of right index finger, initial encounter|Complete traumatic transphalangeal amputation of right index finger, initial encounter +C2856001|T037|AB|S68.610A|ICD10CM|Complete traumatic trnsphal amputation of r idx fngr, init|Complete traumatic trnsphal amputation of r idx fngr, init +C2856002|T037|PT|S68.610D|ICD10CM|Complete traumatic transphalangeal amputation of right index finger, subsequent encounter|Complete traumatic transphalangeal amputation of right index finger, subsequent encounter +C2856002|T037|AB|S68.610D|ICD10CM|Complete traumatic trnsphal amputation of r idx fngr, subs|Complete traumatic trnsphal amputation of r idx fngr, subs +C2856003|T037|PT|S68.610S|ICD10CM|Complete traumatic transphalangeal amputation of right index finger, sequela|Complete traumatic transphalangeal amputation of right index finger, sequela +C2856003|T037|AB|S68.610S|ICD10CM|Complete traumatic trnsphal amp of r idx fngr, sequela|Complete traumatic trnsphal amp of r idx fngr, sequela +C2856004|T037|AB|S68.611|ICD10CM|Complete traumatic transphalangeal amputation of l idx fngr|Complete traumatic transphalangeal amputation of l idx fngr +C2856004|T037|HT|S68.611|ICD10CM|Complete traumatic transphalangeal amputation of left index finger|Complete traumatic transphalangeal amputation of left index finger +C2856005|T037|PT|S68.611A|ICD10CM|Complete traumatic transphalangeal amputation of left index finger, initial encounter|Complete traumatic transphalangeal amputation of left index finger, initial encounter +C2856005|T037|AB|S68.611A|ICD10CM|Complete traumatic trnsphal amputation of l idx fngr, init|Complete traumatic trnsphal amputation of l idx fngr, init +C2856006|T037|PT|S68.611D|ICD10CM|Complete traumatic transphalangeal amputation of left index finger, subsequent encounter|Complete traumatic transphalangeal amputation of left index finger, subsequent encounter +C2856006|T037|AB|S68.611D|ICD10CM|Complete traumatic trnsphal amputation of l idx fngr, subs|Complete traumatic trnsphal amputation of l idx fngr, subs +C2856007|T037|PT|S68.611S|ICD10CM|Complete traumatic transphalangeal amputation of left index finger, sequela|Complete traumatic transphalangeal amputation of left index finger, sequela +C2856007|T037|AB|S68.611S|ICD10CM|Complete traumatic trnsphal amp of l idx fngr, sequela|Complete traumatic trnsphal amp of l idx fngr, sequela +C2856008|T037|HT|S68.612|ICD10CM|Complete traumatic transphalangeal amputation of right middle finger|Complete traumatic transphalangeal amputation of right middle finger +C2856008|T037|AB|S68.612|ICD10CM|Complete traumatic trnsphal amputation of r mid finger|Complete traumatic trnsphal amputation of r mid finger +C2856009|T037|PT|S68.612A|ICD10CM|Complete traumatic transphalangeal amputation of right middle finger, initial encounter|Complete traumatic transphalangeal amputation of right middle finger, initial encounter +C2856009|T037|AB|S68.612A|ICD10CM|Complete traumatic trnsphal amputation of r mid finger, init|Complete traumatic trnsphal amputation of r mid finger, init +C2856010|T037|PT|S68.612D|ICD10CM|Complete traumatic transphalangeal amputation of right middle finger, subsequent encounter|Complete traumatic transphalangeal amputation of right middle finger, subsequent encounter +C2856010|T037|AB|S68.612D|ICD10CM|Complete traumatic trnsphal amputation of r mid finger, subs|Complete traumatic trnsphal amputation of r mid finger, subs +C2856011|T037|PT|S68.612S|ICD10CM|Complete traumatic transphalangeal amputation of right middle finger, sequela|Complete traumatic transphalangeal amputation of right middle finger, sequela +C2856011|T037|AB|S68.612S|ICD10CM|Complete traumatic trnsphal amp of r mid finger, sequela|Complete traumatic trnsphal amp of r mid finger, sequela +C2856012|T037|HT|S68.613|ICD10CM|Complete traumatic transphalangeal amputation of left middle finger|Complete traumatic transphalangeal amputation of left middle finger +C2856012|T037|AB|S68.613|ICD10CM|Complete traumatic trnsphal amputation of l mid finger|Complete traumatic trnsphal amputation of l mid finger +C2856013|T037|PT|S68.613A|ICD10CM|Complete traumatic transphalangeal amputation of left middle finger, initial encounter|Complete traumatic transphalangeal amputation of left middle finger, initial encounter +C2856013|T037|AB|S68.613A|ICD10CM|Complete traumatic trnsphal amputation of l mid finger, init|Complete traumatic trnsphal amputation of l mid finger, init +C2856014|T037|PT|S68.613D|ICD10CM|Complete traumatic transphalangeal amputation of left middle finger, subsequent encounter|Complete traumatic transphalangeal amputation of left middle finger, subsequent encounter +C2856014|T037|AB|S68.613D|ICD10CM|Complete traumatic trnsphal amputation of l mid finger, subs|Complete traumatic trnsphal amputation of l mid finger, subs +C2856015|T037|PT|S68.613S|ICD10CM|Complete traumatic transphalangeal amputation of left middle finger, sequela|Complete traumatic transphalangeal amputation of left middle finger, sequela +C2856015|T037|AB|S68.613S|ICD10CM|Complete traumatic trnsphal amp of l mid finger, sequela|Complete traumatic trnsphal amp of l mid finger, sequela +C2856016|T037|AB|S68.614|ICD10CM|Complete traumatic transphalangeal amputation of r rng fngr|Complete traumatic transphalangeal amputation of r rng fngr +C2856016|T037|HT|S68.614|ICD10CM|Complete traumatic transphalangeal amputation of right ring finger|Complete traumatic transphalangeal amputation of right ring finger +C2856017|T037|PT|S68.614A|ICD10CM|Complete traumatic transphalangeal amputation of right ring finger, initial encounter|Complete traumatic transphalangeal amputation of right ring finger, initial encounter +C2856017|T037|AB|S68.614A|ICD10CM|Complete traumatic trnsphal amputation of r rng fngr, init|Complete traumatic trnsphal amputation of r rng fngr, init +C2856018|T037|PT|S68.614D|ICD10CM|Complete traumatic transphalangeal amputation of right ring finger, subsequent encounter|Complete traumatic transphalangeal amputation of right ring finger, subsequent encounter +C2856018|T037|AB|S68.614D|ICD10CM|Complete traumatic trnsphal amputation of r rng fngr, subs|Complete traumatic trnsphal amputation of r rng fngr, subs +C2856019|T037|PT|S68.614S|ICD10CM|Complete traumatic transphalangeal amputation of right ring finger, sequela|Complete traumatic transphalangeal amputation of right ring finger, sequela +C2856019|T037|AB|S68.614S|ICD10CM|Complete traumatic trnsphal amp of r rng fngr, sequela|Complete traumatic trnsphal amp of r rng fngr, sequela +C2856020|T037|AB|S68.615|ICD10CM|Complete traumatic transphalangeal amputation of l rng fngr|Complete traumatic transphalangeal amputation of l rng fngr +C2856020|T037|HT|S68.615|ICD10CM|Complete traumatic transphalangeal amputation of left ring finger|Complete traumatic transphalangeal amputation of left ring finger +C2856021|T037|PT|S68.615A|ICD10CM|Complete traumatic transphalangeal amputation of left ring finger, initial encounter|Complete traumatic transphalangeal amputation of left ring finger, initial encounter +C2856021|T037|AB|S68.615A|ICD10CM|Complete traumatic trnsphal amputation of l rng fngr, init|Complete traumatic trnsphal amputation of l rng fngr, init +C2856022|T037|PT|S68.615D|ICD10CM|Complete traumatic transphalangeal amputation of left ring finger, subsequent encounter|Complete traumatic transphalangeal amputation of left ring finger, subsequent encounter +C2856022|T037|AB|S68.615D|ICD10CM|Complete traumatic trnsphal amputation of l rng fngr, subs|Complete traumatic trnsphal amputation of l rng fngr, subs +C2856023|T037|PT|S68.615S|ICD10CM|Complete traumatic transphalangeal amputation of left ring finger, sequela|Complete traumatic transphalangeal amputation of left ring finger, sequela +C2856023|T037|AB|S68.615S|ICD10CM|Complete traumatic trnsphal amp of l rng fngr, sequela|Complete traumatic trnsphal amp of l rng fngr, sequela +C2856024|T037|HT|S68.616|ICD10CM|Complete traumatic transphalangeal amputation of right little finger|Complete traumatic transphalangeal amputation of right little finger +C2856024|T037|AB|S68.616|ICD10CM|Complete traumatic trnsphal amputation of r little finger|Complete traumatic trnsphal amputation of r little finger +C2856025|T037|PT|S68.616A|ICD10CM|Complete traumatic transphalangeal amputation of right little finger, initial encounter|Complete traumatic transphalangeal amputation of right little finger, initial encounter +C2856025|T037|AB|S68.616A|ICD10CM|Complete traumatic trnsphal amp of r little finger, init|Complete traumatic trnsphal amp of r little finger, init +C2856026|T037|PT|S68.616D|ICD10CM|Complete traumatic transphalangeal amputation of right little finger, subsequent encounter|Complete traumatic transphalangeal amputation of right little finger, subsequent encounter +C2856026|T037|AB|S68.616D|ICD10CM|Complete traumatic trnsphal amp of r little finger, subs|Complete traumatic trnsphal amp of r little finger, subs +C2856027|T037|PT|S68.616S|ICD10CM|Complete traumatic transphalangeal amputation of right little finger, sequela|Complete traumatic transphalangeal amputation of right little finger, sequela +C2856027|T037|AB|S68.616S|ICD10CM|Complete traumatic trnsphal amp of r little finger, sequela|Complete traumatic trnsphal amp of r little finger, sequela +C2856028|T037|HT|S68.617|ICD10CM|Complete traumatic transphalangeal amputation of left little finger|Complete traumatic transphalangeal amputation of left little finger +C2856028|T037|AB|S68.617|ICD10CM|Complete traumatic trnsphal amputation of l little finger|Complete traumatic trnsphal amputation of l little finger +C2856029|T037|PT|S68.617A|ICD10CM|Complete traumatic transphalangeal amputation of left little finger, initial encounter|Complete traumatic transphalangeal amputation of left little finger, initial encounter +C2856029|T037|AB|S68.617A|ICD10CM|Complete traumatic trnsphal amp of l little finger, init|Complete traumatic trnsphal amp of l little finger, init +C2856030|T037|PT|S68.617D|ICD10CM|Complete traumatic transphalangeal amputation of left little finger, subsequent encounter|Complete traumatic transphalangeal amputation of left little finger, subsequent encounter +C2856030|T037|AB|S68.617D|ICD10CM|Complete traumatic trnsphal amp of l little finger, subs|Complete traumatic trnsphal amp of l little finger, subs +C2856031|T037|PT|S68.617S|ICD10CM|Complete traumatic transphalangeal amputation of left little finger, sequela|Complete traumatic transphalangeal amputation of left little finger, sequela +C2856031|T037|AB|S68.617S|ICD10CM|Complete traumatic trnsphal amp of l little finger, sequela|Complete traumatic trnsphal amp of l little finger, sequela +C2856033|T037|AB|S68.618|ICD10CM|Complete traumatic transphalangeal amputation of oth finger|Complete traumatic transphalangeal amputation of oth finger +C2856033|T037|HT|S68.618|ICD10CM|Complete traumatic transphalangeal amputation of other finger|Complete traumatic transphalangeal amputation of other finger +C2856032|T037|ET|S68.618|ICD10CM|Complete traumatic transphalangeal amputation of specified finger with unspecified laterality|Complete traumatic transphalangeal amputation of specified finger with unspecified laterality +C2856034|T037|PT|S68.618A|ICD10CM|Complete traumatic transphalangeal amputation of other finger, initial encounter|Complete traumatic transphalangeal amputation of other finger, initial encounter +C2856034|T037|AB|S68.618A|ICD10CM|Complete traumatic trnsphal amputation of finger, init|Complete traumatic trnsphal amputation of finger, init +C2856035|T037|PT|S68.618D|ICD10CM|Complete traumatic transphalangeal amputation of other finger, subsequent encounter|Complete traumatic transphalangeal amputation of other finger, subsequent encounter +C2856035|T037|AB|S68.618D|ICD10CM|Complete traumatic trnsphal amputation of finger, subs|Complete traumatic trnsphal amputation of finger, subs +C2856036|T037|PT|S68.618S|ICD10CM|Complete traumatic transphalangeal amputation of other finger, sequela|Complete traumatic transphalangeal amputation of other finger, sequela +C2856036|T037|AB|S68.618S|ICD10CM|Complete traumatic trnsphal amputation of finger, sequela|Complete traumatic trnsphal amputation of finger, sequela +C2856037|T037|AB|S68.619|ICD10CM|Complete traumatic transphalangeal amputation of unsp finger|Complete traumatic transphalangeal amputation of unsp finger +C2856037|T037|HT|S68.619|ICD10CM|Complete traumatic transphalangeal amputation of unspecified finger|Complete traumatic transphalangeal amputation of unspecified finger +C2856038|T037|PT|S68.619A|ICD10CM|Complete traumatic transphalangeal amputation of unspecified finger, initial encounter|Complete traumatic transphalangeal amputation of unspecified finger, initial encounter +C2856038|T037|AB|S68.619A|ICD10CM|Complete traumatic trnsphal amputation of unsp finger, init|Complete traumatic trnsphal amputation of unsp finger, init +C2856039|T037|PT|S68.619D|ICD10CM|Complete traumatic transphalangeal amputation of unspecified finger, subsequent encounter|Complete traumatic transphalangeal amputation of unspecified finger, subsequent encounter +C2856039|T037|AB|S68.619D|ICD10CM|Complete traumatic trnsphal amputation of unsp finger, subs|Complete traumatic trnsphal amputation of unsp finger, subs +C2856040|T037|PT|S68.619S|ICD10CM|Complete traumatic transphalangeal amputation of unspecified finger, sequela|Complete traumatic transphalangeal amputation of unspecified finger, sequela +C2856040|T037|AB|S68.619S|ICD10CM|Complete traumatic trnsphal amp of unsp finger, sequela|Complete traumatic trnsphal amp of unsp finger, sequela +C2856041|T037|HT|S68.62|ICD10CM|Partial traumatic transphalangeal amputation of other and unspecified finger|Partial traumatic transphalangeal amputation of other and unspecified finger +C2856041|T037|AB|S68.62|ICD10CM|Partial traumatic trnsphal amputation of and unsp finger|Partial traumatic trnsphal amputation of and unsp finger +C2856042|T037|AB|S68.620|ICD10CM|Partial traumatic transphalangeal amputation of r idx fngr|Partial traumatic transphalangeal amputation of r idx fngr +C2856042|T037|HT|S68.620|ICD10CM|Partial traumatic transphalangeal amputation of right index finger|Partial traumatic transphalangeal amputation of right index finger +C2856043|T037|PT|S68.620A|ICD10CM|Partial traumatic transphalangeal amputation of right index finger, initial encounter|Partial traumatic transphalangeal amputation of right index finger, initial encounter +C2856043|T037|AB|S68.620A|ICD10CM|Partial traumatic trnsphal amputation of r idx fngr, init|Partial traumatic trnsphal amputation of r idx fngr, init +C2856044|T037|PT|S68.620D|ICD10CM|Partial traumatic transphalangeal amputation of right index finger, subsequent encounter|Partial traumatic transphalangeal amputation of right index finger, subsequent encounter +C2856044|T037|AB|S68.620D|ICD10CM|Partial traumatic trnsphal amputation of r idx fngr, subs|Partial traumatic trnsphal amputation of r idx fngr, subs +C2856045|T037|PT|S68.620S|ICD10CM|Partial traumatic transphalangeal amputation of right index finger, sequela|Partial traumatic transphalangeal amputation of right index finger, sequela +C2856045|T037|AB|S68.620S|ICD10CM|Partial traumatic trnsphal amputation of r idx fngr, sequela|Partial traumatic trnsphal amputation of r idx fngr, sequela +C2856046|T037|AB|S68.621|ICD10CM|Partial traumatic transphalangeal amputation of l idx fngr|Partial traumatic transphalangeal amputation of l idx fngr +C2856046|T037|HT|S68.621|ICD10CM|Partial traumatic transphalangeal amputation of left index finger|Partial traumatic transphalangeal amputation of left index finger +C2856047|T037|PT|S68.621A|ICD10CM|Partial traumatic transphalangeal amputation of left index finger, initial encounter|Partial traumatic transphalangeal amputation of left index finger, initial encounter +C2856047|T037|AB|S68.621A|ICD10CM|Partial traumatic trnsphal amputation of l idx fngr, init|Partial traumatic trnsphal amputation of l idx fngr, init +C2856048|T037|PT|S68.621D|ICD10CM|Partial traumatic transphalangeal amputation of left index finger, subsequent encounter|Partial traumatic transphalangeal amputation of left index finger, subsequent encounter +C2856048|T037|AB|S68.621D|ICD10CM|Partial traumatic trnsphal amputation of l idx fngr, subs|Partial traumatic trnsphal amputation of l idx fngr, subs +C2856049|T037|PT|S68.621S|ICD10CM|Partial traumatic transphalangeal amputation of left index finger, sequela|Partial traumatic transphalangeal amputation of left index finger, sequela +C2856049|T037|AB|S68.621S|ICD10CM|Partial traumatic trnsphal amputation of l idx fngr, sequela|Partial traumatic trnsphal amputation of l idx fngr, sequela +C2856050|T037|AB|S68.622|ICD10CM|Partial traumatic transphalangeal amputation of r mid finger|Partial traumatic transphalangeal amputation of r mid finger +C2856050|T037|HT|S68.622|ICD10CM|Partial traumatic transphalangeal amputation of right middle finger|Partial traumatic transphalangeal amputation of right middle finger +C2856051|T037|PT|S68.622A|ICD10CM|Partial traumatic transphalangeal amputation of right middle finger, initial encounter|Partial traumatic transphalangeal amputation of right middle finger, initial encounter +C2856051|T037|AB|S68.622A|ICD10CM|Partial traumatic trnsphal amputation of r mid finger, init|Partial traumatic trnsphal amputation of r mid finger, init +C2856052|T037|PT|S68.622D|ICD10CM|Partial traumatic transphalangeal amputation of right middle finger, subsequent encounter|Partial traumatic transphalangeal amputation of right middle finger, subsequent encounter +C2856052|T037|AB|S68.622D|ICD10CM|Partial traumatic trnsphal amputation of r mid finger, subs|Partial traumatic trnsphal amputation of r mid finger, subs +C2856053|T037|PT|S68.622S|ICD10CM|Partial traumatic transphalangeal amputation of right middle finger, sequela|Partial traumatic transphalangeal amputation of right middle finger, sequela +C2856053|T037|AB|S68.622S|ICD10CM|Partial traumatic trnsphal amp of r mid finger, sequela|Partial traumatic trnsphal amp of r mid finger, sequela +C2856054|T037|AB|S68.623|ICD10CM|Partial traumatic transphalangeal amputation of l mid finger|Partial traumatic transphalangeal amputation of l mid finger +C2856054|T037|HT|S68.623|ICD10CM|Partial traumatic transphalangeal amputation of left middle finger|Partial traumatic transphalangeal amputation of left middle finger +C2856055|T037|PT|S68.623A|ICD10CM|Partial traumatic transphalangeal amputation of left middle finger, initial encounter|Partial traumatic transphalangeal amputation of left middle finger, initial encounter +C2856055|T037|AB|S68.623A|ICD10CM|Partial traumatic trnsphal amputation of l mid finger, init|Partial traumatic trnsphal amputation of l mid finger, init +C2856056|T037|PT|S68.623D|ICD10CM|Partial traumatic transphalangeal amputation of left middle finger, subsequent encounter|Partial traumatic transphalangeal amputation of left middle finger, subsequent encounter +C2856056|T037|AB|S68.623D|ICD10CM|Partial traumatic trnsphal amputation of l mid finger, subs|Partial traumatic trnsphal amputation of l mid finger, subs +C2856057|T037|PT|S68.623S|ICD10CM|Partial traumatic transphalangeal amputation of left middle finger, sequela|Partial traumatic transphalangeal amputation of left middle finger, sequela +C2856057|T037|AB|S68.623S|ICD10CM|Partial traumatic trnsphal amp of l mid finger, sequela|Partial traumatic trnsphal amp of l mid finger, sequela +C2856058|T037|AB|S68.624|ICD10CM|Partial traumatic transphalangeal amputation of r rng fngr|Partial traumatic transphalangeal amputation of r rng fngr +C2856058|T037|HT|S68.624|ICD10CM|Partial traumatic transphalangeal amputation of right ring finger|Partial traumatic transphalangeal amputation of right ring finger +C2856059|T037|PT|S68.624A|ICD10CM|Partial traumatic transphalangeal amputation of right ring finger, initial encounter|Partial traumatic transphalangeal amputation of right ring finger, initial encounter +C2856059|T037|AB|S68.624A|ICD10CM|Partial traumatic trnsphal amputation of r rng fngr, init|Partial traumatic trnsphal amputation of r rng fngr, init +C2856060|T037|PT|S68.624D|ICD10CM|Partial traumatic transphalangeal amputation of right ring finger, subsequent encounter|Partial traumatic transphalangeal amputation of right ring finger, subsequent encounter +C2856060|T037|AB|S68.624D|ICD10CM|Partial traumatic trnsphal amputation of r rng fngr, subs|Partial traumatic trnsphal amputation of r rng fngr, subs +C2856061|T037|PT|S68.624S|ICD10CM|Partial traumatic transphalangeal amputation of right ring finger, sequela|Partial traumatic transphalangeal amputation of right ring finger, sequela +C2856061|T037|AB|S68.624S|ICD10CM|Partial traumatic trnsphal amputation of r rng fngr, sequela|Partial traumatic trnsphal amputation of r rng fngr, sequela +C2856062|T037|AB|S68.625|ICD10CM|Partial traumatic transphalangeal amputation of l rng fngr|Partial traumatic transphalangeal amputation of l rng fngr +C2856062|T037|HT|S68.625|ICD10CM|Partial traumatic transphalangeal amputation of left ring finger|Partial traumatic transphalangeal amputation of left ring finger +C2856063|T037|PT|S68.625A|ICD10CM|Partial traumatic transphalangeal amputation of left ring finger, initial encounter|Partial traumatic transphalangeal amputation of left ring finger, initial encounter +C2856063|T037|AB|S68.625A|ICD10CM|Partial traumatic trnsphal amputation of l rng fngr, init|Partial traumatic trnsphal amputation of l rng fngr, init +C2856064|T037|PT|S68.625D|ICD10CM|Partial traumatic transphalangeal amputation of left ring finger, subsequent encounter|Partial traumatic transphalangeal amputation of left ring finger, subsequent encounter +C2856064|T037|AB|S68.625D|ICD10CM|Partial traumatic trnsphal amputation of l rng fngr, subs|Partial traumatic trnsphal amputation of l rng fngr, subs +C2856065|T037|PT|S68.625S|ICD10CM|Partial traumatic transphalangeal amputation of left ring finger, sequela|Partial traumatic transphalangeal amputation of left ring finger, sequela +C2856065|T037|AB|S68.625S|ICD10CM|Partial traumatic trnsphal amputation of l rng fngr, sequela|Partial traumatic trnsphal amputation of l rng fngr, sequela +C2856066|T037|HT|S68.626|ICD10CM|Partial traumatic transphalangeal amputation of right little finger|Partial traumatic transphalangeal amputation of right little finger +C2856066|T037|AB|S68.626|ICD10CM|Partial traumatic trnsphal amputation of r little finger|Partial traumatic trnsphal amputation of r little finger +C2856067|T037|PT|S68.626A|ICD10CM|Partial traumatic transphalangeal amputation of right little finger, initial encounter|Partial traumatic transphalangeal amputation of right little finger, initial encounter +C2856067|T037|AB|S68.626A|ICD10CM|Partial traumatic trnsphal amp of r little finger, init|Partial traumatic trnsphal amp of r little finger, init +C2856068|T037|PT|S68.626D|ICD10CM|Partial traumatic transphalangeal amputation of right little finger, subsequent encounter|Partial traumatic transphalangeal amputation of right little finger, subsequent encounter +C2856068|T037|AB|S68.626D|ICD10CM|Partial traumatic trnsphal amp of r little finger, subs|Partial traumatic trnsphal amp of r little finger, subs +C2856069|T037|PT|S68.626S|ICD10CM|Partial traumatic transphalangeal amputation of right little finger, sequela|Partial traumatic transphalangeal amputation of right little finger, sequela +C2856069|T037|AB|S68.626S|ICD10CM|Partial traumatic trnsphal amp of r little finger, sequela|Partial traumatic trnsphal amp of r little finger, sequela +C2856070|T037|HT|S68.627|ICD10CM|Partial traumatic transphalangeal amputation of left little finger|Partial traumatic transphalangeal amputation of left little finger +C2856070|T037|AB|S68.627|ICD10CM|Partial traumatic trnsphal amputation of l little finger|Partial traumatic trnsphal amputation of l little finger +C2856071|T037|PT|S68.627A|ICD10CM|Partial traumatic transphalangeal amputation of left little finger, initial encounter|Partial traumatic transphalangeal amputation of left little finger, initial encounter +C2856071|T037|AB|S68.627A|ICD10CM|Partial traumatic trnsphal amp of l little finger, init|Partial traumatic trnsphal amp of l little finger, init +C2856072|T037|PT|S68.627D|ICD10CM|Partial traumatic transphalangeal amputation of left little finger, subsequent encounter|Partial traumatic transphalangeal amputation of left little finger, subsequent encounter +C2856072|T037|AB|S68.627D|ICD10CM|Partial traumatic trnsphal amp of l little finger, subs|Partial traumatic trnsphal amp of l little finger, subs +C2856073|T037|PT|S68.627S|ICD10CM|Partial traumatic transphalangeal amputation of left little finger, sequela|Partial traumatic transphalangeal amputation of left little finger, sequela +C2856073|T037|AB|S68.627S|ICD10CM|Partial traumatic trnsphal amp of l little finger, sequela|Partial traumatic trnsphal amp of l little finger, sequela +C2856075|T037|AB|S68.628|ICD10CM|Partial traumatic transphalangeal amputation of other finger|Partial traumatic transphalangeal amputation of other finger +C2856075|T037|HT|S68.628|ICD10CM|Partial traumatic transphalangeal amputation of other finger|Partial traumatic transphalangeal amputation of other finger +C2856074|T037|ET|S68.628|ICD10CM|Partial traumatic transphalangeal amputation of specified finger with unspecified laterality|Partial traumatic transphalangeal amputation of specified finger with unspecified laterality +C2856076|T037|AB|S68.628A|ICD10CM|Partial traumatic transphalangeal amputation of finger, init|Partial traumatic transphalangeal amputation of finger, init +C2856076|T037|PT|S68.628A|ICD10CM|Partial traumatic transphalangeal amputation of other finger, initial encounter|Partial traumatic transphalangeal amputation of other finger, initial encounter +C2856077|T037|AB|S68.628D|ICD10CM|Partial traumatic transphalangeal amputation of finger, subs|Partial traumatic transphalangeal amputation of finger, subs +C2856077|T037|PT|S68.628D|ICD10CM|Partial traumatic transphalangeal amputation of other finger, subsequent encounter|Partial traumatic transphalangeal amputation of other finger, subsequent encounter +C2856078|T037|PT|S68.628S|ICD10CM|Partial traumatic transphalangeal amputation of other finger, sequela|Partial traumatic transphalangeal amputation of other finger, sequela +C2856078|T037|AB|S68.628S|ICD10CM|Partial traumatic trnsphal amputation of finger, sequela|Partial traumatic trnsphal amputation of finger, sequela +C2856079|T037|AB|S68.629|ICD10CM|Partial traumatic transphalangeal amputation of unsp finger|Partial traumatic transphalangeal amputation of unsp finger +C2856079|T037|HT|S68.629|ICD10CM|Partial traumatic transphalangeal amputation of unspecified finger|Partial traumatic transphalangeal amputation of unspecified finger +C2856080|T037|PT|S68.629A|ICD10CM|Partial traumatic transphalangeal amputation of unspecified finger, initial encounter|Partial traumatic transphalangeal amputation of unspecified finger, initial encounter +C2856080|T037|AB|S68.629A|ICD10CM|Partial traumatic trnsphal amputation of unsp finger, init|Partial traumatic trnsphal amputation of unsp finger, init +C2856081|T037|PT|S68.629D|ICD10CM|Partial traumatic transphalangeal amputation of unspecified finger, subsequent encounter|Partial traumatic transphalangeal amputation of unspecified finger, subsequent encounter +C2856081|T037|AB|S68.629D|ICD10CM|Partial traumatic trnsphal amputation of unsp finger, subs|Partial traumatic trnsphal amputation of unsp finger, subs +C2856082|T037|PT|S68.629S|ICD10CM|Partial traumatic transphalangeal amputation of unspecified finger, sequela|Partial traumatic transphalangeal amputation of unspecified finger, sequela +C2856082|T037|AB|S68.629S|ICD10CM|Partial traumatic trnsphal amp of unsp finger, sequela|Partial traumatic trnsphal amp of unsp finger, sequela +C2856083|T037|AB|S68.7|ICD10CM|Traumatic transmetacarpal amputation of hand|Traumatic transmetacarpal amputation of hand +C2856083|T037|HT|S68.7|ICD10CM|Traumatic transmetacarpal amputation of hand|Traumatic transmetacarpal amputation of hand +C2856084|T037|AB|S68.71|ICD10CM|Complete traumatic transmetacarpal amputation of hand|Complete traumatic transmetacarpal amputation of hand +C2856084|T037|HT|S68.71|ICD10CM|Complete traumatic transmetacarpal amputation of hand|Complete traumatic transmetacarpal amputation of hand +C2856085|T037|AB|S68.711|ICD10CM|Complete traumatic transmetacarpal amputation of right hand|Complete traumatic transmetacarpal amputation of right hand +C2856085|T037|HT|S68.711|ICD10CM|Complete traumatic transmetacarpal amputation of right hand|Complete traumatic transmetacarpal amputation of right hand +C2856086|T037|PT|S68.711A|ICD10CM|Complete traumatic transmetacarpal amputation of right hand, initial encounter|Complete traumatic transmetacarpal amputation of right hand, initial encounter +C2856086|T037|AB|S68.711A|ICD10CM|Complete traumatic transmetcrpl amp of right hand, init|Complete traumatic transmetcrpl amp of right hand, init +C2856087|T037|PT|S68.711D|ICD10CM|Complete traumatic transmetacarpal amputation of right hand, subsequent encounter|Complete traumatic transmetacarpal amputation of right hand, subsequent encounter +C2856087|T037|AB|S68.711D|ICD10CM|Complete traumatic transmetcrpl amp of right hand, subs|Complete traumatic transmetcrpl amp of right hand, subs +C2856088|T037|PT|S68.711S|ICD10CM|Complete traumatic transmetacarpal amputation of right hand, sequela|Complete traumatic transmetacarpal amputation of right hand, sequela +C2856088|T037|AB|S68.711S|ICD10CM|Complete traumatic transmetcrpl amp of right hand, sequela|Complete traumatic transmetcrpl amp of right hand, sequela +C2856089|T037|AB|S68.712|ICD10CM|Complete traumatic transmetacarpal amputation of left hand|Complete traumatic transmetacarpal amputation of left hand +C2856089|T037|HT|S68.712|ICD10CM|Complete traumatic transmetacarpal amputation of left hand|Complete traumatic transmetacarpal amputation of left hand +C2856090|T037|PT|S68.712A|ICD10CM|Complete traumatic transmetacarpal amputation of left hand, initial encounter|Complete traumatic transmetacarpal amputation of left hand, initial encounter +C2856090|T037|AB|S68.712A|ICD10CM|Complete traumatic transmetcrpl amp of left hand, init|Complete traumatic transmetcrpl amp of left hand, init +C2856091|T037|PT|S68.712D|ICD10CM|Complete traumatic transmetacarpal amputation of left hand, subsequent encounter|Complete traumatic transmetacarpal amputation of left hand, subsequent encounter +C2856091|T037|AB|S68.712D|ICD10CM|Complete traumatic transmetcrpl amp of left hand, subs|Complete traumatic transmetcrpl amp of left hand, subs +C2856092|T037|PT|S68.712S|ICD10CM|Complete traumatic transmetacarpal amputation of left hand, sequela|Complete traumatic transmetacarpal amputation of left hand, sequela +C2856092|T037|AB|S68.712S|ICD10CM|Complete traumatic transmetcrpl amp of left hand, sequela|Complete traumatic transmetcrpl amp of left hand, sequela +C2856093|T037|AB|S68.719|ICD10CM|Complete traumatic transmetacarpal amputation of unsp hand|Complete traumatic transmetacarpal amputation of unsp hand +C2856093|T037|HT|S68.719|ICD10CM|Complete traumatic transmetacarpal amputation of unspecified hand|Complete traumatic transmetacarpal amputation of unspecified hand +C2856094|T037|PT|S68.719A|ICD10CM|Complete traumatic transmetacarpal amputation of unspecified hand, initial encounter|Complete traumatic transmetacarpal amputation of unspecified hand, initial encounter +C2856094|T037|AB|S68.719A|ICD10CM|Complete traumatic transmetcrpl amp of unsp hand, init|Complete traumatic transmetcrpl amp of unsp hand, init +C2856095|T037|PT|S68.719D|ICD10CM|Complete traumatic transmetacarpal amputation of unspecified hand, subsequent encounter|Complete traumatic transmetacarpal amputation of unspecified hand, subsequent encounter +C2856095|T037|AB|S68.719D|ICD10CM|Complete traumatic transmetcrpl amp of unsp hand, subs|Complete traumatic transmetcrpl amp of unsp hand, subs +C2856096|T037|PT|S68.719S|ICD10CM|Complete traumatic transmetacarpal amputation of unspecified hand, sequela|Complete traumatic transmetacarpal amputation of unspecified hand, sequela +C2856096|T037|AB|S68.719S|ICD10CM|Complete traumatic transmetcrpl amp of unsp hand, sequela|Complete traumatic transmetcrpl amp of unsp hand, sequela +C2856097|T037|AB|S68.72|ICD10CM|Partial traumatic transmetacarpal amputation of hand|Partial traumatic transmetacarpal amputation of hand +C2856097|T037|HT|S68.72|ICD10CM|Partial traumatic transmetacarpal amputation of hand|Partial traumatic transmetacarpal amputation of hand +C2856098|T037|AB|S68.721|ICD10CM|Partial traumatic transmetacarpal amputation of right hand|Partial traumatic transmetacarpal amputation of right hand +C2856098|T037|HT|S68.721|ICD10CM|Partial traumatic transmetacarpal amputation of right hand|Partial traumatic transmetacarpal amputation of right hand +C2856099|T037|PT|S68.721A|ICD10CM|Partial traumatic transmetacarpal amputation of right hand, initial encounter|Partial traumatic transmetacarpal amputation of right hand, initial encounter +C2856099|T037|AB|S68.721A|ICD10CM|Partial traumatic transmetcrpl amp of right hand, init|Partial traumatic transmetcrpl amp of right hand, init +C2856100|T037|PT|S68.721D|ICD10CM|Partial traumatic transmetacarpal amputation of right hand, subsequent encounter|Partial traumatic transmetacarpal amputation of right hand, subsequent encounter +C2856100|T037|AB|S68.721D|ICD10CM|Partial traumatic transmetcrpl amp of right hand, subs|Partial traumatic transmetcrpl amp of right hand, subs +C2856101|T037|PT|S68.721S|ICD10CM|Partial traumatic transmetacarpal amputation of right hand, sequela|Partial traumatic transmetacarpal amputation of right hand, sequela +C2856101|T037|AB|S68.721S|ICD10CM|Partial traumatic transmetcrpl amp of right hand, sequela|Partial traumatic transmetcrpl amp of right hand, sequela +C2856102|T037|AB|S68.722|ICD10CM|Partial traumatic transmetacarpal amputation of left hand|Partial traumatic transmetacarpal amputation of left hand +C2856102|T037|HT|S68.722|ICD10CM|Partial traumatic transmetacarpal amputation of left hand|Partial traumatic transmetacarpal amputation of left hand +C2856103|T037|PT|S68.722A|ICD10CM|Partial traumatic transmetacarpal amputation of left hand, initial encounter|Partial traumatic transmetacarpal amputation of left hand, initial encounter +C2856103|T037|AB|S68.722A|ICD10CM|Partial traumatic transmetcrpl amputation of left hand, init|Partial traumatic transmetcrpl amputation of left hand, init +C2856104|T037|PT|S68.722D|ICD10CM|Partial traumatic transmetacarpal amputation of left hand, subsequent encounter|Partial traumatic transmetacarpal amputation of left hand, subsequent encounter +C2856104|T037|AB|S68.722D|ICD10CM|Partial traumatic transmetcrpl amputation of left hand, subs|Partial traumatic transmetcrpl amputation of left hand, subs +C2856105|T037|PT|S68.722S|ICD10CM|Partial traumatic transmetacarpal amputation of left hand, sequela|Partial traumatic transmetacarpal amputation of left hand, sequela +C2856105|T037|AB|S68.722S|ICD10CM|Partial traumatic transmetcrpl amp of left hand, sequela|Partial traumatic transmetcrpl amp of left hand, sequela +C2856106|T037|AB|S68.729|ICD10CM|Partial traumatic transmetacarpal amputation of unsp hand|Partial traumatic transmetacarpal amputation of unsp hand +C2856106|T037|HT|S68.729|ICD10CM|Partial traumatic transmetacarpal amputation of unspecified hand|Partial traumatic transmetacarpal amputation of unspecified hand +C2856107|T037|PT|S68.729A|ICD10CM|Partial traumatic transmetacarpal amputation of unspecified hand, initial encounter|Partial traumatic transmetacarpal amputation of unspecified hand, initial encounter +C2856107|T037|AB|S68.729A|ICD10CM|Partial traumatic transmetcrpl amputation of unsp hand, init|Partial traumatic transmetcrpl amputation of unsp hand, init +C2856108|T037|PT|S68.729D|ICD10CM|Partial traumatic transmetacarpal amputation of unspecified hand, subsequent encounter|Partial traumatic transmetacarpal amputation of unspecified hand, subsequent encounter +C2856108|T037|AB|S68.729D|ICD10CM|Partial traumatic transmetcrpl amputation of unsp hand, subs|Partial traumatic transmetcrpl amputation of unsp hand, subs +C2856109|T037|PT|S68.729S|ICD10CM|Partial traumatic transmetacarpal amputation of unspecified hand, sequela|Partial traumatic transmetacarpal amputation of unspecified hand, sequela +C2856109|T037|AB|S68.729S|ICD10CM|Partial traumatic transmetcrpl amp of unsp hand, sequela|Partial traumatic transmetcrpl amp of unsp hand, sequela +C0478320|T037|PT|S68.8|ICD10|Traumatic amputation of other parts of wrist and hand|Traumatic amputation of other parts of wrist and hand +C0478321|T037|PT|S68.9|ICD10|Traumatic amputation of wrist and hand, level unspecified|Traumatic amputation of wrist and hand, level unspecified +C0495924|T037|HT|S69|ICD10|Other and unspecified injuries of wrist and hand|Other and unspecified injuries of wrist and hand +C2856110|T037|AB|S69|ICD10CM|Other and unspecified injuries of wrist, hand and finger(s)|Other and unspecified injuries of wrist, hand and finger(s) +C2856110|T037|HT|S69|ICD10CM|Other and unspecified injuries of wrist, hand and finger(s)|Other and unspecified injuries of wrist, hand and finger(s) +C0495925|T037|PT|S69.7|ICD10|Multiple injuries of wrist and hand|Multiple injuries of wrist and hand +C0478322|T037|PT|S69.8|ICD10|Other specified injuries of wrist and hand|Other specified injuries of wrist and hand +C2856111|T037|AB|S69.8|ICD10CM|Other specified injuries of wrist, hand and finger(s)|Other specified injuries of wrist, hand and finger(s) +C2856111|T037|HT|S69.8|ICD10CM|Other specified injuries of wrist, hand and finger(s)|Other specified injuries of wrist, hand and finger(s) +C2856112|T037|AB|S69.80|ICD10CM|Oth injuries of unspecified wrist, hand and finger(s)|Oth injuries of unspecified wrist, hand and finger(s) +C2856112|T037|HT|S69.80|ICD10CM|Other specified injuries of unspecified wrist, hand and finger(s)|Other specified injuries of unspecified wrist, hand and finger(s) +C2977954|T037|AB|S69.80XA|ICD10CM|Oth injuries of unsp wrist, hand and finger(s), init encntr|Oth injuries of unsp wrist, hand and finger(s), init encntr +C2977954|T037|PT|S69.80XA|ICD10CM|Other specified injuries of unspecified wrist, hand and finger(s), initial encounter|Other specified injuries of unspecified wrist, hand and finger(s), initial encounter +C2977955|T037|AB|S69.80XD|ICD10CM|Oth injuries of unsp wrist, hand and finger(s), subs encntr|Oth injuries of unsp wrist, hand and finger(s), subs encntr +C2977955|T037|PT|S69.80XD|ICD10CM|Other specified injuries of unspecified wrist, hand and finger(s), subsequent encounter|Other specified injuries of unspecified wrist, hand and finger(s), subsequent encounter +C2977956|T037|AB|S69.80XS|ICD10CM|Oth injuries of unsp wrist, hand and finger(s), sequela|Oth injuries of unsp wrist, hand and finger(s), sequela +C2977956|T037|PT|S69.80XS|ICD10CM|Other specified injuries of unspecified wrist, hand and finger(s), sequela|Other specified injuries of unspecified wrist, hand and finger(s), sequela +C2856116|T037|AB|S69.81|ICD10CM|Other specified injuries of right wrist, hand and finger(s)|Other specified injuries of right wrist, hand and finger(s) +C2856116|T037|HT|S69.81|ICD10CM|Other specified injuries of right wrist, hand and finger(s)|Other specified injuries of right wrist, hand and finger(s) +C2856117|T037|AB|S69.81XA|ICD10CM|Oth injuries of right wrist, hand and finger(s), init encntr|Oth injuries of right wrist, hand and finger(s), init encntr +C2856117|T037|PT|S69.81XA|ICD10CM|Other specified injuries of right wrist, hand and finger(s), initial encounter|Other specified injuries of right wrist, hand and finger(s), initial encounter +C2856118|T037|AB|S69.81XD|ICD10CM|Oth injuries of right wrist, hand and finger(s), subs encntr|Oth injuries of right wrist, hand and finger(s), subs encntr +C2856118|T037|PT|S69.81XD|ICD10CM|Other specified injuries of right wrist, hand and finger(s), subsequent encounter|Other specified injuries of right wrist, hand and finger(s), subsequent encounter +C2856119|T037|AB|S69.81XS|ICD10CM|Oth injuries of right wrist, hand and finger(s), sequela|Oth injuries of right wrist, hand and finger(s), sequela +C2856119|T037|PT|S69.81XS|ICD10CM|Other specified injuries of right wrist, hand and finger(s), sequela|Other specified injuries of right wrist, hand and finger(s), sequela +C2856120|T037|AB|S69.82|ICD10CM|Other specified injuries of left wrist, hand and finger(s)|Other specified injuries of left wrist, hand and finger(s) +C2856120|T037|HT|S69.82|ICD10CM|Other specified injuries of left wrist, hand and finger(s)|Other specified injuries of left wrist, hand and finger(s) +C2856121|T037|AB|S69.82XA|ICD10CM|Oth injuries of left wrist, hand and finger(s), init encntr|Oth injuries of left wrist, hand and finger(s), init encntr +C2856121|T037|PT|S69.82XA|ICD10CM|Other specified injuries of left wrist, hand and finger(s), initial encounter|Other specified injuries of left wrist, hand and finger(s), initial encounter +C2856122|T037|AB|S69.82XD|ICD10CM|Oth injuries of left wrist, hand and finger(s), subs encntr|Oth injuries of left wrist, hand and finger(s), subs encntr +C2856122|T037|PT|S69.82XD|ICD10CM|Other specified injuries of left wrist, hand and finger(s), subsequent encounter|Other specified injuries of left wrist, hand and finger(s), subsequent encounter +C2856123|T037|AB|S69.82XS|ICD10CM|Oth injuries of left wrist, hand and finger(s), sequela|Oth injuries of left wrist, hand and finger(s), sequela +C2856123|T037|PT|S69.82XS|ICD10CM|Other specified injuries of left wrist, hand and finger(s), sequela|Other specified injuries of left wrist, hand and finger(s), sequela +C0495926|T037|PT|S69.9|ICD10|Unspecified injury of wrist and hand|Unspecified injury of wrist and hand +C2856124|T037|AB|S69.9|ICD10CM|Unspecified injury of wrist, hand and finger(s)|Unspecified injury of wrist, hand and finger(s) +C2856124|T037|HT|S69.9|ICD10CM|Unspecified injury of wrist, hand and finger(s)|Unspecified injury of wrist, hand and finger(s) +C2856125|T037|AB|S69.90|ICD10CM|Unspecified injury of unspecified wrist, hand and finger(s)|Unspecified injury of unspecified wrist, hand and finger(s) +C2856125|T037|HT|S69.90|ICD10CM|Unspecified injury of unspecified wrist, hand and finger(s)|Unspecified injury of unspecified wrist, hand and finger(s) +C2977957|T037|AB|S69.90XA|ICD10CM|Unsp injury of unsp wrist, hand and finger(s), init encntr|Unsp injury of unsp wrist, hand and finger(s), init encntr +C2977957|T037|PT|S69.90XA|ICD10CM|Unspecified injury of unspecified wrist, hand and finger(s), initial encounter|Unspecified injury of unspecified wrist, hand and finger(s), initial encounter +C2977958|T037|AB|S69.90XD|ICD10CM|Unsp injury of unsp wrist, hand and finger(s), subs encntr|Unsp injury of unsp wrist, hand and finger(s), subs encntr +C2977958|T037|PT|S69.90XD|ICD10CM|Unspecified injury of unspecified wrist, hand and finger(s), subsequent encounter|Unspecified injury of unspecified wrist, hand and finger(s), subsequent encounter +C2977959|T037|AB|S69.90XS|ICD10CM|Unsp injury of unsp wrist, hand and finger(s), sequela|Unsp injury of unsp wrist, hand and finger(s), sequela +C2977959|T037|PT|S69.90XS|ICD10CM|Unspecified injury of unspecified wrist, hand and finger(s), sequela|Unspecified injury of unspecified wrist, hand and finger(s), sequela +C2856129|T037|AB|S69.91|ICD10CM|Unspecified injury of right wrist, hand and finger(s)|Unspecified injury of right wrist, hand and finger(s) +C2856129|T037|HT|S69.91|ICD10CM|Unspecified injury of right wrist, hand and finger(s)|Unspecified injury of right wrist, hand and finger(s) +C2856130|T037|AB|S69.91XA|ICD10CM|Unsp injury of right wrist, hand and finger(s), init encntr|Unsp injury of right wrist, hand and finger(s), init encntr +C2856130|T037|PT|S69.91XA|ICD10CM|Unspecified injury of right wrist, hand and finger(s), initial encounter|Unspecified injury of right wrist, hand and finger(s), initial encounter +C2856131|T037|AB|S69.91XD|ICD10CM|Unsp injury of right wrist, hand and finger(s), subs encntr|Unsp injury of right wrist, hand and finger(s), subs encntr +C2856131|T037|PT|S69.91XD|ICD10CM|Unspecified injury of right wrist, hand and finger(s), subsequent encounter|Unspecified injury of right wrist, hand and finger(s), subsequent encounter +C2856132|T037|AB|S69.91XS|ICD10CM|Unsp injury of right wrist, hand and finger(s), sequela|Unsp injury of right wrist, hand and finger(s), sequela +C2856132|T037|PT|S69.91XS|ICD10CM|Unspecified injury of right wrist, hand and finger(s), sequela|Unspecified injury of right wrist, hand and finger(s), sequela +C2856133|T037|AB|S69.92|ICD10CM|Unspecified injury of left wrist, hand and finger(s)|Unspecified injury of left wrist, hand and finger(s) +C2856133|T037|HT|S69.92|ICD10CM|Unspecified injury of left wrist, hand and finger(s)|Unspecified injury of left wrist, hand and finger(s) +C2856134|T037|AB|S69.92XA|ICD10CM|Unsp injury of left wrist, hand and finger(s), init encntr|Unsp injury of left wrist, hand and finger(s), init encntr +C2856134|T037|PT|S69.92XA|ICD10CM|Unspecified injury of left wrist, hand and finger(s), initial encounter|Unspecified injury of left wrist, hand and finger(s), initial encounter +C2856135|T037|AB|S69.92XD|ICD10CM|Unsp injury of left wrist, hand and finger(s), subs encntr|Unsp injury of left wrist, hand and finger(s), subs encntr +C2856135|T037|PT|S69.92XD|ICD10CM|Unspecified injury of left wrist, hand and finger(s), subsequent encounter|Unspecified injury of left wrist, hand and finger(s), subsequent encounter +C2856136|T037|AB|S69.92XS|ICD10CM|Unsp injury of left wrist, hand and finger(s), sequela|Unsp injury of left wrist, hand and finger(s), sequela +C2856136|T037|PT|S69.92XS|ICD10CM|Unspecified injury of left wrist, hand and finger(s), sequela|Unspecified injury of left wrist, hand and finger(s), sequela +C0495927|T037|HT|S70|ICD10|Superficial injury of hip and thigh|Superficial injury of hip and thigh +C0495927|T037|HT|S70|ICD10CM|Superficial injury of hip and thigh|Superficial injury of hip and thigh +C0495927|T037|AB|S70|ICD10CM|Superficial injury of hip and thigh|Superficial injury of hip and thigh +C0272445|T037|HT|S70-S79|ICD10CM|Injuries to the hip and thigh (S70-S79)|Injuries to the hip and thigh (S70-S79) +C0272445|T037|HT|S70-S79.9|ICD10|Injuries to the hip and thigh|Injuries to the hip and thigh +C0160950|T037|PT|S70.0|ICD10|Contusion of hip|Contusion of hip +C0160950|T037|HT|S70.0|ICD10CM|Contusion of hip|Contusion of hip +C0160950|T037|AB|S70.0|ICD10CM|Contusion of hip|Contusion of hip +C2856137|T037|AB|S70.00|ICD10CM|Contusion of unspecified hip|Contusion of unspecified hip +C2856137|T037|HT|S70.00|ICD10CM|Contusion of unspecified hip|Contusion of unspecified hip +C2856138|T037|AB|S70.00XA|ICD10CM|Contusion of unspecified hip, initial encounter|Contusion of unspecified hip, initial encounter +C2856138|T037|PT|S70.00XA|ICD10CM|Contusion of unspecified hip, initial encounter|Contusion of unspecified hip, initial encounter +C2856139|T037|AB|S70.00XD|ICD10CM|Contusion of unspecified hip, subsequent encounter|Contusion of unspecified hip, subsequent encounter +C2856139|T037|PT|S70.00XD|ICD10CM|Contusion of unspecified hip, subsequent encounter|Contusion of unspecified hip, subsequent encounter +C2856140|T037|AB|S70.00XS|ICD10CM|Contusion of unspecified hip, sequela|Contusion of unspecified hip, sequela +C2856140|T037|PT|S70.00XS|ICD10CM|Contusion of unspecified hip, sequela|Contusion of unspecified hip, sequela +C2202110|T037|AB|S70.01|ICD10CM|Contusion of right hip|Contusion of right hip +C2202110|T037|HT|S70.01|ICD10CM|Contusion of right hip|Contusion of right hip +C2856141|T037|AB|S70.01XA|ICD10CM|Contusion of right hip, initial encounter|Contusion of right hip, initial encounter +C2856141|T037|PT|S70.01XA|ICD10CM|Contusion of right hip, initial encounter|Contusion of right hip, initial encounter +C2856142|T037|AB|S70.01XD|ICD10CM|Contusion of right hip, subsequent encounter|Contusion of right hip, subsequent encounter +C2856142|T037|PT|S70.01XD|ICD10CM|Contusion of right hip, subsequent encounter|Contusion of right hip, subsequent encounter +C2856143|T037|AB|S70.01XS|ICD10CM|Contusion of right hip, sequela|Contusion of right hip, sequela +C2856143|T037|PT|S70.01XS|ICD10CM|Contusion of right hip, sequela|Contusion of right hip, sequela +C2141979|T037|AB|S70.02|ICD10CM|Contusion of left hip|Contusion of left hip +C2141979|T037|HT|S70.02|ICD10CM|Contusion of left hip|Contusion of left hip +C2856144|T037|AB|S70.02XA|ICD10CM|Contusion of left hip, initial encounter|Contusion of left hip, initial encounter +C2856144|T037|PT|S70.02XA|ICD10CM|Contusion of left hip, initial encounter|Contusion of left hip, initial encounter +C2856145|T037|AB|S70.02XD|ICD10CM|Contusion of left hip, subsequent encounter|Contusion of left hip, subsequent encounter +C2856145|T037|PT|S70.02XD|ICD10CM|Contusion of left hip, subsequent encounter|Contusion of left hip, subsequent encounter +C2856146|T037|AB|S70.02XS|ICD10CM|Contusion of left hip, sequela|Contusion of left hip, sequela +C2856146|T037|PT|S70.02XS|ICD10CM|Contusion of left hip, sequela|Contusion of left hip, sequela +C0160949|T037|HT|S70.1|ICD10CM|Contusion of thigh|Contusion of thigh +C0160949|T037|AB|S70.1|ICD10CM|Contusion of thigh|Contusion of thigh +C0160949|T037|PT|S70.1|ICD10|Contusion of thigh|Contusion of thigh +C2856147|T037|AB|S70.10|ICD10CM|Contusion of unspecified thigh|Contusion of unspecified thigh +C2856147|T037|HT|S70.10|ICD10CM|Contusion of unspecified thigh|Contusion of unspecified thigh +C2856148|T037|AB|S70.10XA|ICD10CM|Contusion of unspecified thigh, initial encounter|Contusion of unspecified thigh, initial encounter +C2856148|T037|PT|S70.10XA|ICD10CM|Contusion of unspecified thigh, initial encounter|Contusion of unspecified thigh, initial encounter +C2856149|T037|AB|S70.10XD|ICD10CM|Contusion of unspecified thigh, subsequent encounter|Contusion of unspecified thigh, subsequent encounter +C2856149|T037|PT|S70.10XD|ICD10CM|Contusion of unspecified thigh, subsequent encounter|Contusion of unspecified thigh, subsequent encounter +C2856150|T037|AB|S70.10XS|ICD10CM|Contusion of unspecified thigh, sequela|Contusion of unspecified thigh, sequela +C2856150|T037|PT|S70.10XS|ICD10CM|Contusion of unspecified thigh, sequela|Contusion of unspecified thigh, sequela +C2218801|T037|HT|S70.11|ICD10CM|Contusion of right thigh|Contusion of right thigh +C2218801|T037|AB|S70.11|ICD10CM|Contusion of right thigh|Contusion of right thigh +C2856151|T037|AB|S70.11XA|ICD10CM|Contusion of right thigh, initial encounter|Contusion of right thigh, initial encounter +C2856151|T037|PT|S70.11XA|ICD10CM|Contusion of right thigh, initial encounter|Contusion of right thigh, initial encounter +C2856152|T037|AB|S70.11XD|ICD10CM|Contusion of right thigh, subsequent encounter|Contusion of right thigh, subsequent encounter +C2856152|T037|PT|S70.11XD|ICD10CM|Contusion of right thigh, subsequent encounter|Contusion of right thigh, subsequent encounter +C2856153|T037|AB|S70.11XS|ICD10CM|Contusion of right thigh, sequela|Contusion of right thigh, sequela +C2856153|T037|PT|S70.11XS|ICD10CM|Contusion of right thigh, sequela|Contusion of right thigh, sequela +C2167279|T037|HT|S70.12|ICD10CM|Contusion of left thigh|Contusion of left thigh +C2167279|T037|AB|S70.12|ICD10CM|Contusion of left thigh|Contusion of left thigh +C2856154|T037|AB|S70.12XA|ICD10CM|Contusion of left thigh, initial encounter|Contusion of left thigh, initial encounter +C2856154|T037|PT|S70.12XA|ICD10CM|Contusion of left thigh, initial encounter|Contusion of left thigh, initial encounter +C2856155|T037|AB|S70.12XD|ICD10CM|Contusion of left thigh, subsequent encounter|Contusion of left thigh, subsequent encounter +C2856155|T037|PT|S70.12XD|ICD10CM|Contusion of left thigh, subsequent encounter|Contusion of left thigh, subsequent encounter +C2856156|T037|AB|S70.12XS|ICD10CM|Contusion of left thigh, sequela|Contusion of left thigh, sequela +C2856156|T037|PT|S70.12XS|ICD10CM|Contusion of left thigh, sequela|Contusion of left thigh, sequela +C2856157|T037|AB|S70.2|ICD10CM|Other superficial injuries of hip|Other superficial injuries of hip +C2856157|T037|HT|S70.2|ICD10CM|Other superficial injuries of hip|Other superficial injuries of hip +C0432858|T037|AB|S70.21|ICD10CM|Abrasion of hip|Abrasion of hip +C0432858|T037|HT|S70.21|ICD10CM|Abrasion of hip|Abrasion of hip +C2041977|T037|AB|S70.211|ICD10CM|Abrasion, right hip|Abrasion, right hip +C2041977|T037|HT|S70.211|ICD10CM|Abrasion, right hip|Abrasion, right hip +C2856158|T037|AB|S70.211A|ICD10CM|Abrasion, right hip, initial encounter|Abrasion, right hip, initial encounter +C2856158|T037|PT|S70.211A|ICD10CM|Abrasion, right hip, initial encounter|Abrasion, right hip, initial encounter +C2856159|T037|AB|S70.211D|ICD10CM|Abrasion, right hip, subsequent encounter|Abrasion, right hip, subsequent encounter +C2856159|T037|PT|S70.211D|ICD10CM|Abrasion, right hip, subsequent encounter|Abrasion, right hip, subsequent encounter +C2856160|T037|AB|S70.211S|ICD10CM|Abrasion, right hip, sequela|Abrasion, right hip, sequela +C2856160|T037|PT|S70.211S|ICD10CM|Abrasion, right hip, sequela|Abrasion, right hip, sequela +C2004762|T037|AB|S70.212|ICD10CM|Abrasion, left hip|Abrasion, left hip +C2004762|T037|HT|S70.212|ICD10CM|Abrasion, left hip|Abrasion, left hip +C2856161|T037|AB|S70.212A|ICD10CM|Abrasion, left hip, initial encounter|Abrasion, left hip, initial encounter +C2856161|T037|PT|S70.212A|ICD10CM|Abrasion, left hip, initial encounter|Abrasion, left hip, initial encounter +C2856162|T037|AB|S70.212D|ICD10CM|Abrasion, left hip, subsequent encounter|Abrasion, left hip, subsequent encounter +C2856162|T037|PT|S70.212D|ICD10CM|Abrasion, left hip, subsequent encounter|Abrasion, left hip, subsequent encounter +C2856163|T037|AB|S70.212S|ICD10CM|Abrasion, left hip, sequela|Abrasion, left hip, sequela +C2856163|T037|PT|S70.212S|ICD10CM|Abrasion, left hip, sequela|Abrasion, left hip, sequela +C2856164|T037|AB|S70.219|ICD10CM|Abrasion, unspecified hip|Abrasion, unspecified hip +C2856164|T037|HT|S70.219|ICD10CM|Abrasion, unspecified hip|Abrasion, unspecified hip +C2856165|T037|AB|S70.219A|ICD10CM|Abrasion, unspecified hip, initial encounter|Abrasion, unspecified hip, initial encounter +C2856165|T037|PT|S70.219A|ICD10CM|Abrasion, unspecified hip, initial encounter|Abrasion, unspecified hip, initial encounter +C2856166|T037|AB|S70.219D|ICD10CM|Abrasion, unspecified hip, subsequent encounter|Abrasion, unspecified hip, subsequent encounter +C2856166|T037|PT|S70.219D|ICD10CM|Abrasion, unspecified hip, subsequent encounter|Abrasion, unspecified hip, subsequent encounter +C2856167|T037|AB|S70.219S|ICD10CM|Abrasion, unspecified hip, sequela|Abrasion, unspecified hip, sequela +C2856167|T037|PT|S70.219S|ICD10CM|Abrasion, unspecified hip, sequela|Abrasion, unspecified hip, sequela +C2856168|T037|AB|S70.22|ICD10CM|Blister (nonthermal) of hip|Blister (nonthermal) of hip +C2856168|T037|HT|S70.22|ICD10CM|Blister (nonthermal) of hip|Blister (nonthermal) of hip +C2856169|T037|AB|S70.221|ICD10CM|Blister (nonthermal), right hip|Blister (nonthermal), right hip +C2856169|T037|HT|S70.221|ICD10CM|Blister (nonthermal), right hip|Blister (nonthermal), right hip +C2856170|T037|AB|S70.221A|ICD10CM|Blister (nonthermal), right hip, initial encounter|Blister (nonthermal), right hip, initial encounter +C2856170|T037|PT|S70.221A|ICD10CM|Blister (nonthermal), right hip, initial encounter|Blister (nonthermal), right hip, initial encounter +C2856171|T037|AB|S70.221D|ICD10CM|Blister (nonthermal), right hip, subsequent encounter|Blister (nonthermal), right hip, subsequent encounter +C2856171|T037|PT|S70.221D|ICD10CM|Blister (nonthermal), right hip, subsequent encounter|Blister (nonthermal), right hip, subsequent encounter +C2856172|T037|AB|S70.221S|ICD10CM|Blister (nonthermal), right hip, sequela|Blister (nonthermal), right hip, sequela +C2856172|T037|PT|S70.221S|ICD10CM|Blister (nonthermal), right hip, sequela|Blister (nonthermal), right hip, sequela +C2856173|T037|AB|S70.222|ICD10CM|Blister (nonthermal), left hip|Blister (nonthermal), left hip +C2856173|T037|HT|S70.222|ICD10CM|Blister (nonthermal), left hip|Blister (nonthermal), left hip +C2856174|T037|AB|S70.222A|ICD10CM|Blister (nonthermal), left hip, initial encounter|Blister (nonthermal), left hip, initial encounter +C2856174|T037|PT|S70.222A|ICD10CM|Blister (nonthermal), left hip, initial encounter|Blister (nonthermal), left hip, initial encounter +C2856175|T037|AB|S70.222D|ICD10CM|Blister (nonthermal), left hip, subsequent encounter|Blister (nonthermal), left hip, subsequent encounter +C2856175|T037|PT|S70.222D|ICD10CM|Blister (nonthermal), left hip, subsequent encounter|Blister (nonthermal), left hip, subsequent encounter +C2856176|T037|AB|S70.222S|ICD10CM|Blister (nonthermal), left hip, sequela|Blister (nonthermal), left hip, sequela +C2856176|T037|PT|S70.222S|ICD10CM|Blister (nonthermal), left hip, sequela|Blister (nonthermal), left hip, sequela +C2856177|T037|AB|S70.229|ICD10CM|Blister (nonthermal), unspecified hip|Blister (nonthermal), unspecified hip +C2856177|T037|HT|S70.229|ICD10CM|Blister (nonthermal), unspecified hip|Blister (nonthermal), unspecified hip +C2856178|T037|AB|S70.229A|ICD10CM|Blister (nonthermal), unspecified hip, initial encounter|Blister (nonthermal), unspecified hip, initial encounter +C2856178|T037|PT|S70.229A|ICD10CM|Blister (nonthermal), unspecified hip, initial encounter|Blister (nonthermal), unspecified hip, initial encounter +C2856179|T037|AB|S70.229D|ICD10CM|Blister (nonthermal), unspecified hip, subsequent encounter|Blister (nonthermal), unspecified hip, subsequent encounter +C2856179|T037|PT|S70.229D|ICD10CM|Blister (nonthermal), unspecified hip, subsequent encounter|Blister (nonthermal), unspecified hip, subsequent encounter +C2856180|T037|AB|S70.229S|ICD10CM|Blister (nonthermal), unspecified hip, sequela|Blister (nonthermal), unspecified hip, sequela +C2856180|T037|PT|S70.229S|ICD10CM|Blister (nonthermal), unspecified hip, sequela|Blister (nonthermal), unspecified hip, sequela +C2856181|T037|HT|S70.24|ICD10CM|External constriction of hip|External constriction of hip +C2856181|T037|AB|S70.24|ICD10CM|External constriction of hip|External constriction of hip +C2856182|T037|AB|S70.241|ICD10CM|External constriction, right hip|External constriction, right hip +C2856182|T037|HT|S70.241|ICD10CM|External constriction, right hip|External constriction, right hip +C2856183|T037|AB|S70.241A|ICD10CM|External constriction, right hip, initial encounter|External constriction, right hip, initial encounter +C2856183|T037|PT|S70.241A|ICD10CM|External constriction, right hip, initial encounter|External constriction, right hip, initial encounter +C2856184|T037|AB|S70.241D|ICD10CM|External constriction, right hip, subsequent encounter|External constriction, right hip, subsequent encounter +C2856184|T037|PT|S70.241D|ICD10CM|External constriction, right hip, subsequent encounter|External constriction, right hip, subsequent encounter +C2856185|T037|AB|S70.241S|ICD10CM|External constriction, right hip, sequela|External constriction, right hip, sequela +C2856185|T037|PT|S70.241S|ICD10CM|External constriction, right hip, sequela|External constriction, right hip, sequela +C2856186|T037|AB|S70.242|ICD10CM|External constriction, left hip|External constriction, left hip +C2856186|T037|HT|S70.242|ICD10CM|External constriction, left hip|External constriction, left hip +C2856187|T037|AB|S70.242A|ICD10CM|External constriction, left hip, initial encounter|External constriction, left hip, initial encounter +C2856187|T037|PT|S70.242A|ICD10CM|External constriction, left hip, initial encounter|External constriction, left hip, initial encounter +C2856188|T037|AB|S70.242D|ICD10CM|External constriction, left hip, subsequent encounter|External constriction, left hip, subsequent encounter +C2856188|T037|PT|S70.242D|ICD10CM|External constriction, left hip, subsequent encounter|External constriction, left hip, subsequent encounter +C2856189|T037|AB|S70.242S|ICD10CM|External constriction, left hip, sequela|External constriction, left hip, sequela +C2856189|T037|PT|S70.242S|ICD10CM|External constriction, left hip, sequela|External constriction, left hip, sequela +C2856190|T037|AB|S70.249|ICD10CM|External constriction, unspecified hip|External constriction, unspecified hip +C2856190|T037|HT|S70.249|ICD10CM|External constriction, unspecified hip|External constriction, unspecified hip +C2856191|T037|AB|S70.249A|ICD10CM|External constriction, unspecified hip, initial encounter|External constriction, unspecified hip, initial encounter +C2856191|T037|PT|S70.249A|ICD10CM|External constriction, unspecified hip, initial encounter|External constriction, unspecified hip, initial encounter +C2856192|T037|AB|S70.249D|ICD10CM|External constriction, unspecified hip, subsequent encounter|External constriction, unspecified hip, subsequent encounter +C2856192|T037|PT|S70.249D|ICD10CM|External constriction, unspecified hip, subsequent encounter|External constriction, unspecified hip, subsequent encounter +C2856193|T037|AB|S70.249S|ICD10CM|External constriction, unspecified hip, sequela|External constriction, unspecified hip, sequela +C2856193|T037|PT|S70.249S|ICD10CM|External constriction, unspecified hip, sequela|External constriction, unspecified hip, sequela +C2018808|T037|ET|S70.25|ICD10CM|Splinter in the hip|Splinter in the hip +C2037285|T037|AB|S70.25|ICD10CM|Superficial foreign body of hip|Superficial foreign body of hip +C2037285|T037|HT|S70.25|ICD10CM|Superficial foreign body of hip|Superficial foreign body of hip +C2856194|T037|AB|S70.251|ICD10CM|Superficial foreign body, right hip|Superficial foreign body, right hip +C2856194|T037|HT|S70.251|ICD10CM|Superficial foreign body, right hip|Superficial foreign body, right hip +C2856195|T037|AB|S70.251A|ICD10CM|Superficial foreign body, right hip, initial encounter|Superficial foreign body, right hip, initial encounter +C2856195|T037|PT|S70.251A|ICD10CM|Superficial foreign body, right hip, initial encounter|Superficial foreign body, right hip, initial encounter +C2856196|T037|AB|S70.251D|ICD10CM|Superficial foreign body, right hip, subsequent encounter|Superficial foreign body, right hip, subsequent encounter +C2856196|T037|PT|S70.251D|ICD10CM|Superficial foreign body, right hip, subsequent encounter|Superficial foreign body, right hip, subsequent encounter +C2856197|T037|AB|S70.251S|ICD10CM|Superficial foreign body, right hip, sequela|Superficial foreign body, right hip, sequela +C2856197|T037|PT|S70.251S|ICD10CM|Superficial foreign body, right hip, sequela|Superficial foreign body, right hip, sequela +C2856198|T037|AB|S70.252|ICD10CM|Superficial foreign body, left hip|Superficial foreign body, left hip +C2856198|T037|HT|S70.252|ICD10CM|Superficial foreign body, left hip|Superficial foreign body, left hip +C2856199|T037|AB|S70.252A|ICD10CM|Superficial foreign body, left hip, initial encounter|Superficial foreign body, left hip, initial encounter +C2856199|T037|PT|S70.252A|ICD10CM|Superficial foreign body, left hip, initial encounter|Superficial foreign body, left hip, initial encounter +C2856200|T037|AB|S70.252D|ICD10CM|Superficial foreign body, left hip, subsequent encounter|Superficial foreign body, left hip, subsequent encounter +C2856200|T037|PT|S70.252D|ICD10CM|Superficial foreign body, left hip, subsequent encounter|Superficial foreign body, left hip, subsequent encounter +C2856201|T037|AB|S70.252S|ICD10CM|Superficial foreign body, left hip, sequela|Superficial foreign body, left hip, sequela +C2856201|T037|PT|S70.252S|ICD10CM|Superficial foreign body, left hip, sequela|Superficial foreign body, left hip, sequela +C2856202|T037|AB|S70.259|ICD10CM|Superficial foreign body, unspecified hip|Superficial foreign body, unspecified hip +C2856202|T037|HT|S70.259|ICD10CM|Superficial foreign body, unspecified hip|Superficial foreign body, unspecified hip +C2856203|T037|AB|S70.259A|ICD10CM|Superficial foreign body, unspecified hip, initial encounter|Superficial foreign body, unspecified hip, initial encounter +C2856203|T037|PT|S70.259A|ICD10CM|Superficial foreign body, unspecified hip, initial encounter|Superficial foreign body, unspecified hip, initial encounter +C2856204|T037|AB|S70.259D|ICD10CM|Superficial foreign body, unspecified hip, subs encntr|Superficial foreign body, unspecified hip, subs encntr +C2856204|T037|PT|S70.259D|ICD10CM|Superficial foreign body, unspecified hip, subsequent encounter|Superficial foreign body, unspecified hip, subsequent encounter +C2856205|T037|AB|S70.259S|ICD10CM|Superficial foreign body, unspecified hip, sequela|Superficial foreign body, unspecified hip, sequela +C2856205|T037|PT|S70.259S|ICD10CM|Superficial foreign body, unspecified hip, sequela|Superficial foreign body, unspecified hip, sequela +C0433034|T037|AB|S70.26|ICD10CM|Insect bite (nonvenomous) of hip|Insect bite (nonvenomous) of hip +C0433034|T037|HT|S70.26|ICD10CM|Insect bite (nonvenomous) of hip|Insect bite (nonvenomous) of hip +C2231582|T037|AB|S70.261|ICD10CM|Insect bite (nonvenomous), right hip|Insect bite (nonvenomous), right hip +C2231582|T037|HT|S70.261|ICD10CM|Insect bite (nonvenomous), right hip|Insect bite (nonvenomous), right hip +C2856206|T037|AB|S70.261A|ICD10CM|Insect bite (nonvenomous), right hip, initial encounter|Insect bite (nonvenomous), right hip, initial encounter +C2856206|T037|PT|S70.261A|ICD10CM|Insect bite (nonvenomous), right hip, initial encounter|Insect bite (nonvenomous), right hip, initial encounter +C2856207|T037|AB|S70.261D|ICD10CM|Insect bite (nonvenomous), right hip, subsequent encounter|Insect bite (nonvenomous), right hip, subsequent encounter +C2856207|T037|PT|S70.261D|ICD10CM|Insect bite (nonvenomous), right hip, subsequent encounter|Insect bite (nonvenomous), right hip, subsequent encounter +C2856208|T037|AB|S70.261S|ICD10CM|Insect bite (nonvenomous), right hip, sequela|Insect bite (nonvenomous), right hip, sequela +C2856208|T037|PT|S70.261S|ICD10CM|Insect bite (nonvenomous), right hip, sequela|Insect bite (nonvenomous), right hip, sequela +C2231583|T037|AB|S70.262|ICD10CM|Insect bite (nonvenomous), left hip|Insect bite (nonvenomous), left hip +C2231583|T037|HT|S70.262|ICD10CM|Insect bite (nonvenomous), left hip|Insect bite (nonvenomous), left hip +C2856209|T037|AB|S70.262A|ICD10CM|Insect bite (nonvenomous), left hip, initial encounter|Insect bite (nonvenomous), left hip, initial encounter +C2856209|T037|PT|S70.262A|ICD10CM|Insect bite (nonvenomous), left hip, initial encounter|Insect bite (nonvenomous), left hip, initial encounter +C2856210|T037|AB|S70.262D|ICD10CM|Insect bite (nonvenomous), left hip, subsequent encounter|Insect bite (nonvenomous), left hip, subsequent encounter +C2856210|T037|PT|S70.262D|ICD10CM|Insect bite (nonvenomous), left hip, subsequent encounter|Insect bite (nonvenomous), left hip, subsequent encounter +C2856211|T037|AB|S70.262S|ICD10CM|Insect bite (nonvenomous), left hip, sequela|Insect bite (nonvenomous), left hip, sequela +C2856211|T037|PT|S70.262S|ICD10CM|Insect bite (nonvenomous), left hip, sequela|Insect bite (nonvenomous), left hip, sequela +C2856212|T037|AB|S70.269|ICD10CM|Insect bite (nonvenomous), unspecified hip|Insect bite (nonvenomous), unspecified hip +C2856212|T037|HT|S70.269|ICD10CM|Insect bite (nonvenomous), unspecified hip|Insect bite (nonvenomous), unspecified hip +C2856213|T037|AB|S70.269A|ICD10CM|Insect bite (nonvenomous), unspecified hip, init encntr|Insect bite (nonvenomous), unspecified hip, init encntr +C2856213|T037|PT|S70.269A|ICD10CM|Insect bite (nonvenomous), unspecified hip, initial encounter|Insect bite (nonvenomous), unspecified hip, initial encounter +C2856214|T037|AB|S70.269D|ICD10CM|Insect bite (nonvenomous), unspecified hip, subs encntr|Insect bite (nonvenomous), unspecified hip, subs encntr +C2856214|T037|PT|S70.269D|ICD10CM|Insect bite (nonvenomous), unspecified hip, subsequent encounter|Insect bite (nonvenomous), unspecified hip, subsequent encounter +C2856215|T037|AB|S70.269S|ICD10CM|Insect bite (nonvenomous), unspecified hip, sequela|Insect bite (nonvenomous), unspecified hip, sequela +C2856215|T037|PT|S70.269S|ICD10CM|Insect bite (nonvenomous), unspecified hip, sequela|Insect bite (nonvenomous), unspecified hip, sequela +C2856216|T037|AB|S70.27|ICD10CM|Other superficial bite of hip|Other superficial bite of hip +C2856216|T037|HT|S70.27|ICD10CM|Other superficial bite of hip|Other superficial bite of hip +C2856217|T037|AB|S70.271|ICD10CM|Other superficial bite of hip, right hip|Other superficial bite of hip, right hip +C2856217|T037|HT|S70.271|ICD10CM|Other superficial bite of hip, right hip|Other superficial bite of hip, right hip +C2856218|T037|AB|S70.271A|ICD10CM|Other superficial bite of hip, right hip, initial encounter|Other superficial bite of hip, right hip, initial encounter +C2856218|T037|PT|S70.271A|ICD10CM|Other superficial bite of hip, right hip, initial encounter|Other superficial bite of hip, right hip, initial encounter +C2856219|T037|AB|S70.271D|ICD10CM|Other superficial bite of hip, right hip, subs encntr|Other superficial bite of hip, right hip, subs encntr +C2856219|T037|PT|S70.271D|ICD10CM|Other superficial bite of hip, right hip, subsequent encounter|Other superficial bite of hip, right hip, subsequent encounter +C2856220|T037|AB|S70.271S|ICD10CM|Other superficial bite of hip, right hip, sequela|Other superficial bite of hip, right hip, sequela +C2856220|T037|PT|S70.271S|ICD10CM|Other superficial bite of hip, right hip, sequela|Other superficial bite of hip, right hip, sequela +C2856221|T037|AB|S70.272|ICD10CM|Other superficial bite of hip, left hip|Other superficial bite of hip, left hip +C2856221|T037|HT|S70.272|ICD10CM|Other superficial bite of hip, left hip|Other superficial bite of hip, left hip +C2856222|T037|AB|S70.272A|ICD10CM|Other superficial bite of hip, left hip, initial encounter|Other superficial bite of hip, left hip, initial encounter +C2856222|T037|PT|S70.272A|ICD10CM|Other superficial bite of hip, left hip, initial encounter|Other superficial bite of hip, left hip, initial encounter +C2856223|T037|AB|S70.272D|ICD10CM|Other superficial bite of hip, left hip, subs encntr|Other superficial bite of hip, left hip, subs encntr +C2856223|T037|PT|S70.272D|ICD10CM|Other superficial bite of hip, left hip, subsequent encounter|Other superficial bite of hip, left hip, subsequent encounter +C2856224|T037|AB|S70.272S|ICD10CM|Other superficial bite of hip, left hip, sequela|Other superficial bite of hip, left hip, sequela +C2856224|T037|PT|S70.272S|ICD10CM|Other superficial bite of hip, left hip, sequela|Other superficial bite of hip, left hip, sequela +C2856225|T037|AB|S70.279|ICD10CM|Other superficial bite of hip, unspecified hip|Other superficial bite of hip, unspecified hip +C2856225|T037|HT|S70.279|ICD10CM|Other superficial bite of hip, unspecified hip|Other superficial bite of hip, unspecified hip +C2856226|T037|AB|S70.279A|ICD10CM|Other superficial bite of hip, unspecified hip, init encntr|Other superficial bite of hip, unspecified hip, init encntr +C2856226|T037|PT|S70.279A|ICD10CM|Other superficial bite of hip, unspecified hip, initial encounter|Other superficial bite of hip, unspecified hip, initial encounter +C2856227|T037|AB|S70.279D|ICD10CM|Other superficial bite of hip, unspecified hip, subs encntr|Other superficial bite of hip, unspecified hip, subs encntr +C2856227|T037|PT|S70.279D|ICD10CM|Other superficial bite of hip, unspecified hip, subsequent encounter|Other superficial bite of hip, unspecified hip, subsequent encounter +C2856228|T037|AB|S70.279S|ICD10CM|Other superficial bite of hip, unspecified hip, sequela|Other superficial bite of hip, unspecified hip, sequela +C2856228|T037|PT|S70.279S|ICD10CM|Other superficial bite of hip, unspecified hip, sequela|Other superficial bite of hip, unspecified hip, sequela +C2856229|T037|AB|S70.3|ICD10CM|Other superficial injuries of thigh|Other superficial injuries of thigh +C2856229|T037|HT|S70.3|ICD10CM|Other superficial injuries of thigh|Other superficial injuries of thigh +C0432859|T037|AB|S70.31|ICD10CM|Abrasion of thigh|Abrasion of thigh +C0432859|T037|HT|S70.31|ICD10CM|Abrasion of thigh|Abrasion of thigh +C2041998|T037|AB|S70.311|ICD10CM|Abrasion, right thigh|Abrasion, right thigh +C2041998|T037|HT|S70.311|ICD10CM|Abrasion, right thigh|Abrasion, right thigh +C2856230|T037|AB|S70.311A|ICD10CM|Abrasion, right thigh, initial encounter|Abrasion, right thigh, initial encounter +C2856230|T037|PT|S70.311A|ICD10CM|Abrasion, right thigh, initial encounter|Abrasion, right thigh, initial encounter +C2856231|T037|AB|S70.311D|ICD10CM|Abrasion, right thigh, subsequent encounter|Abrasion, right thigh, subsequent encounter +C2856231|T037|PT|S70.311D|ICD10CM|Abrasion, right thigh, subsequent encounter|Abrasion, right thigh, subsequent encounter +C2856232|T037|AB|S70.311S|ICD10CM|Abrasion, right thigh, sequela|Abrasion, right thigh, sequela +C2856232|T037|PT|S70.311S|ICD10CM|Abrasion, right thigh, sequela|Abrasion, right thigh, sequela +C2004783|T037|AB|S70.312|ICD10CM|Abrasion, left thigh|Abrasion, left thigh +C2004783|T037|HT|S70.312|ICD10CM|Abrasion, left thigh|Abrasion, left thigh +C2856233|T037|AB|S70.312A|ICD10CM|Abrasion, left thigh, initial encounter|Abrasion, left thigh, initial encounter +C2856233|T037|PT|S70.312A|ICD10CM|Abrasion, left thigh, initial encounter|Abrasion, left thigh, initial encounter +C2856234|T037|AB|S70.312D|ICD10CM|Abrasion, left thigh, subsequent encounter|Abrasion, left thigh, subsequent encounter +C2856234|T037|PT|S70.312D|ICD10CM|Abrasion, left thigh, subsequent encounter|Abrasion, left thigh, subsequent encounter +C2856235|T037|AB|S70.312S|ICD10CM|Abrasion, left thigh, sequela|Abrasion, left thigh, sequela +C2856235|T037|PT|S70.312S|ICD10CM|Abrasion, left thigh, sequela|Abrasion, left thigh, sequela +C2856236|T037|AB|S70.319|ICD10CM|Abrasion, unspecified thigh|Abrasion, unspecified thigh +C2856236|T037|HT|S70.319|ICD10CM|Abrasion, unspecified thigh|Abrasion, unspecified thigh +C2856237|T037|AB|S70.319A|ICD10CM|Abrasion, unspecified thigh, initial encounter|Abrasion, unspecified thigh, initial encounter +C2856237|T037|PT|S70.319A|ICD10CM|Abrasion, unspecified thigh, initial encounter|Abrasion, unspecified thigh, initial encounter +C2856238|T037|AB|S70.319D|ICD10CM|Abrasion, unspecified thigh, subsequent encounter|Abrasion, unspecified thigh, subsequent encounter +C2856238|T037|PT|S70.319D|ICD10CM|Abrasion, unspecified thigh, subsequent encounter|Abrasion, unspecified thigh, subsequent encounter +C2856239|T037|AB|S70.319S|ICD10CM|Abrasion, unspecified thigh, sequela|Abrasion, unspecified thigh, sequela +C2856239|T037|PT|S70.319S|ICD10CM|Abrasion, unspecified thigh, sequela|Abrasion, unspecified thigh, sequela +C2856240|T037|AB|S70.32|ICD10CM|Blister (nonthermal) of thigh|Blister (nonthermal) of thigh +C2856240|T037|HT|S70.32|ICD10CM|Blister (nonthermal) of thigh|Blister (nonthermal) of thigh +C2856241|T037|AB|S70.321|ICD10CM|Blister (nonthermal), right thigh|Blister (nonthermal), right thigh +C2856241|T037|HT|S70.321|ICD10CM|Blister (nonthermal), right thigh|Blister (nonthermal), right thigh +C2856242|T037|AB|S70.321A|ICD10CM|Blister (nonthermal), right thigh, initial encounter|Blister (nonthermal), right thigh, initial encounter +C2856242|T037|PT|S70.321A|ICD10CM|Blister (nonthermal), right thigh, initial encounter|Blister (nonthermal), right thigh, initial encounter +C2856243|T037|AB|S70.321D|ICD10CM|Blister (nonthermal), right thigh, subsequent encounter|Blister (nonthermal), right thigh, subsequent encounter +C2856243|T037|PT|S70.321D|ICD10CM|Blister (nonthermal), right thigh, subsequent encounter|Blister (nonthermal), right thigh, subsequent encounter +C2856244|T037|AB|S70.321S|ICD10CM|Blister (nonthermal), right thigh, sequela|Blister (nonthermal), right thigh, sequela +C2856244|T037|PT|S70.321S|ICD10CM|Blister (nonthermal), right thigh, sequela|Blister (nonthermal), right thigh, sequela +C2856245|T037|AB|S70.322|ICD10CM|Blister (nonthermal), left thigh|Blister (nonthermal), left thigh +C2856245|T037|HT|S70.322|ICD10CM|Blister (nonthermal), left thigh|Blister (nonthermal), left thigh +C2856246|T037|AB|S70.322A|ICD10CM|Blister (nonthermal), left thigh, initial encounter|Blister (nonthermal), left thigh, initial encounter +C2856246|T037|PT|S70.322A|ICD10CM|Blister (nonthermal), left thigh, initial encounter|Blister (nonthermal), left thigh, initial encounter +C2856247|T037|AB|S70.322D|ICD10CM|Blister (nonthermal), left thigh, subsequent encounter|Blister (nonthermal), left thigh, subsequent encounter +C2856247|T037|PT|S70.322D|ICD10CM|Blister (nonthermal), left thigh, subsequent encounter|Blister (nonthermal), left thigh, subsequent encounter +C2856248|T037|AB|S70.322S|ICD10CM|Blister (nonthermal), left thigh, sequela|Blister (nonthermal), left thigh, sequela +C2856248|T037|PT|S70.322S|ICD10CM|Blister (nonthermal), left thigh, sequela|Blister (nonthermal), left thigh, sequela +C2856249|T037|AB|S70.329|ICD10CM|Blister (nonthermal), unspecified thigh|Blister (nonthermal), unspecified thigh +C2856249|T037|HT|S70.329|ICD10CM|Blister (nonthermal), unspecified thigh|Blister (nonthermal), unspecified thigh +C2856250|T037|AB|S70.329A|ICD10CM|Blister (nonthermal), unspecified thigh, initial encounter|Blister (nonthermal), unspecified thigh, initial encounter +C2856250|T037|PT|S70.329A|ICD10CM|Blister (nonthermal), unspecified thigh, initial encounter|Blister (nonthermal), unspecified thigh, initial encounter +C2856251|T037|AB|S70.329D|ICD10CM|Blister (nonthermal), unspecified thigh, subs encntr|Blister (nonthermal), unspecified thigh, subs encntr +C2856251|T037|PT|S70.329D|ICD10CM|Blister (nonthermal), unspecified thigh, subsequent encounter|Blister (nonthermal), unspecified thigh, subsequent encounter +C2856252|T037|AB|S70.329S|ICD10CM|Blister (nonthermal), unspecified thigh, sequela|Blister (nonthermal), unspecified thigh, sequela +C2856252|T037|PT|S70.329S|ICD10CM|Blister (nonthermal), unspecified thigh, sequela|Blister (nonthermal), unspecified thigh, sequela +C2856253|T037|HT|S70.34|ICD10CM|External constriction of thigh|External constriction of thigh +C2856253|T037|AB|S70.34|ICD10CM|External constriction of thigh|External constriction of thigh +C2856254|T037|AB|S70.341|ICD10CM|External constriction, right thigh|External constriction, right thigh +C2856254|T037|HT|S70.341|ICD10CM|External constriction, right thigh|External constriction, right thigh +C2856255|T037|AB|S70.341A|ICD10CM|External constriction, right thigh, initial encounter|External constriction, right thigh, initial encounter +C2856255|T037|PT|S70.341A|ICD10CM|External constriction, right thigh, initial encounter|External constriction, right thigh, initial encounter +C2856256|T037|AB|S70.341D|ICD10CM|External constriction, right thigh, subsequent encounter|External constriction, right thigh, subsequent encounter +C2856256|T037|PT|S70.341D|ICD10CM|External constriction, right thigh, subsequent encounter|External constriction, right thigh, subsequent encounter +C2856257|T037|AB|S70.341S|ICD10CM|External constriction, right thigh, sequela|External constriction, right thigh, sequela +C2856257|T037|PT|S70.341S|ICD10CM|External constriction, right thigh, sequela|External constriction, right thigh, sequela +C2856258|T037|AB|S70.342|ICD10CM|External constriction, left thigh|External constriction, left thigh +C2856258|T037|HT|S70.342|ICD10CM|External constriction, left thigh|External constriction, left thigh +C2856259|T037|AB|S70.342A|ICD10CM|External constriction, left thigh, initial encounter|External constriction, left thigh, initial encounter +C2856259|T037|PT|S70.342A|ICD10CM|External constriction, left thigh, initial encounter|External constriction, left thigh, initial encounter +C2856260|T037|AB|S70.342D|ICD10CM|External constriction, left thigh, subsequent encounter|External constriction, left thigh, subsequent encounter +C2856260|T037|PT|S70.342D|ICD10CM|External constriction, left thigh, subsequent encounter|External constriction, left thigh, subsequent encounter +C2856261|T037|AB|S70.342S|ICD10CM|External constriction, left thigh, sequela|External constriction, left thigh, sequela +C2856261|T037|PT|S70.342S|ICD10CM|External constriction, left thigh, sequela|External constriction, left thigh, sequela +C2856262|T037|AB|S70.349|ICD10CM|External constriction, unspecified thigh|External constriction, unspecified thigh +C2856262|T037|HT|S70.349|ICD10CM|External constriction, unspecified thigh|External constriction, unspecified thigh +C2856263|T037|AB|S70.349A|ICD10CM|External constriction, unspecified thigh, initial encounter|External constriction, unspecified thigh, initial encounter +C2856263|T037|PT|S70.349A|ICD10CM|External constriction, unspecified thigh, initial encounter|External constriction, unspecified thigh, initial encounter +C2856264|T037|AB|S70.349D|ICD10CM|External constriction, unspecified thigh, subs encntr|External constriction, unspecified thigh, subs encntr +C2856264|T037|PT|S70.349D|ICD10CM|External constriction, unspecified thigh, subsequent encounter|External constriction, unspecified thigh, subsequent encounter +C2856265|T037|AB|S70.349S|ICD10CM|External constriction, unspecified thigh, sequela|External constriction, unspecified thigh, sequela +C2856265|T037|PT|S70.349S|ICD10CM|External constriction, unspecified thigh, sequela|External constriction, unspecified thigh, sequela +C2018878|T037|ET|S70.35|ICD10CM|Splinter in the thigh|Splinter in the thigh +C2037289|T037|AB|S70.35|ICD10CM|Superficial foreign body of thigh|Superficial foreign body of thigh +C2037289|T037|HT|S70.35|ICD10CM|Superficial foreign body of thigh|Superficial foreign body of thigh +C2856266|T037|AB|S70.351|ICD10CM|Superficial foreign body, right thigh|Superficial foreign body, right thigh +C2856266|T037|HT|S70.351|ICD10CM|Superficial foreign body, right thigh|Superficial foreign body, right thigh +C2856267|T037|AB|S70.351A|ICD10CM|Superficial foreign body, right thigh, initial encounter|Superficial foreign body, right thigh, initial encounter +C2856267|T037|PT|S70.351A|ICD10CM|Superficial foreign body, right thigh, initial encounter|Superficial foreign body, right thigh, initial encounter +C2856268|T037|AB|S70.351D|ICD10CM|Superficial foreign body, right thigh, subsequent encounter|Superficial foreign body, right thigh, subsequent encounter +C2856268|T037|PT|S70.351D|ICD10CM|Superficial foreign body, right thigh, subsequent encounter|Superficial foreign body, right thigh, subsequent encounter +C2856269|T037|AB|S70.351S|ICD10CM|Superficial foreign body, right thigh, sequela|Superficial foreign body, right thigh, sequela +C2856269|T037|PT|S70.351S|ICD10CM|Superficial foreign body, right thigh, sequela|Superficial foreign body, right thigh, sequela +C2856270|T037|AB|S70.352|ICD10CM|Superficial foreign body, left thigh|Superficial foreign body, left thigh +C2856270|T037|HT|S70.352|ICD10CM|Superficial foreign body, left thigh|Superficial foreign body, left thigh +C2856271|T037|AB|S70.352A|ICD10CM|Superficial foreign body, left thigh, initial encounter|Superficial foreign body, left thigh, initial encounter +C2856271|T037|PT|S70.352A|ICD10CM|Superficial foreign body, left thigh, initial encounter|Superficial foreign body, left thigh, initial encounter +C2856272|T037|AB|S70.352D|ICD10CM|Superficial foreign body, left thigh, subsequent encounter|Superficial foreign body, left thigh, subsequent encounter +C2856272|T037|PT|S70.352D|ICD10CM|Superficial foreign body, left thigh, subsequent encounter|Superficial foreign body, left thigh, subsequent encounter +C2856273|T037|AB|S70.352S|ICD10CM|Superficial foreign body, left thigh, sequela|Superficial foreign body, left thigh, sequela +C2856273|T037|PT|S70.352S|ICD10CM|Superficial foreign body, left thigh, sequela|Superficial foreign body, left thigh, sequela +C2856274|T037|AB|S70.359|ICD10CM|Superficial foreign body, unspecified thigh|Superficial foreign body, unspecified thigh +C2856274|T037|HT|S70.359|ICD10CM|Superficial foreign body, unspecified thigh|Superficial foreign body, unspecified thigh +C2856275|T037|AB|S70.359A|ICD10CM|Superficial foreign body, unspecified thigh, init encntr|Superficial foreign body, unspecified thigh, init encntr +C2856275|T037|PT|S70.359A|ICD10CM|Superficial foreign body, unspecified thigh, initial encounter|Superficial foreign body, unspecified thigh, initial encounter +C2856276|T037|AB|S70.359D|ICD10CM|Superficial foreign body, unspecified thigh, subs encntr|Superficial foreign body, unspecified thigh, subs encntr +C2856276|T037|PT|S70.359D|ICD10CM|Superficial foreign body, unspecified thigh, subsequent encounter|Superficial foreign body, unspecified thigh, subsequent encounter +C2856277|T037|AB|S70.359S|ICD10CM|Superficial foreign body, unspecified thigh, sequela|Superficial foreign body, unspecified thigh, sequela +C2856277|T037|PT|S70.359S|ICD10CM|Superficial foreign body, unspecified thigh, sequela|Superficial foreign body, unspecified thigh, sequela +C0433035|T037|AB|S70.36|ICD10CM|Insect bite (nonvenomous) of thigh|Insect bite (nonvenomous) of thigh +C0433035|T037|HT|S70.36|ICD10CM|Insect bite (nonvenomous) of thigh|Insect bite (nonvenomous) of thigh +C2231586|T037|AB|S70.361|ICD10CM|Insect bite (nonvenomous), right thigh|Insect bite (nonvenomous), right thigh +C2231586|T037|HT|S70.361|ICD10CM|Insect bite (nonvenomous), right thigh|Insect bite (nonvenomous), right thigh +C2856278|T037|AB|S70.361A|ICD10CM|Insect bite (nonvenomous), right thigh, initial encounter|Insect bite (nonvenomous), right thigh, initial encounter +C2856278|T037|PT|S70.361A|ICD10CM|Insect bite (nonvenomous), right thigh, initial encounter|Insect bite (nonvenomous), right thigh, initial encounter +C2856279|T037|AB|S70.361D|ICD10CM|Insect bite (nonvenomous), right thigh, subsequent encounter|Insect bite (nonvenomous), right thigh, subsequent encounter +C2856279|T037|PT|S70.361D|ICD10CM|Insect bite (nonvenomous), right thigh, subsequent encounter|Insect bite (nonvenomous), right thigh, subsequent encounter +C2856280|T037|AB|S70.361S|ICD10CM|Insect bite (nonvenomous), right thigh, sequela|Insect bite (nonvenomous), right thigh, sequela +C2856280|T037|PT|S70.361S|ICD10CM|Insect bite (nonvenomous), right thigh, sequela|Insect bite (nonvenomous), right thigh, sequela +C2231587|T037|AB|S70.362|ICD10CM|Insect bite (nonvenomous), left thigh|Insect bite (nonvenomous), left thigh +C2231587|T037|HT|S70.362|ICD10CM|Insect bite (nonvenomous), left thigh|Insect bite (nonvenomous), left thigh +C2856281|T037|AB|S70.362A|ICD10CM|Insect bite (nonvenomous), left thigh, initial encounter|Insect bite (nonvenomous), left thigh, initial encounter +C2856281|T037|PT|S70.362A|ICD10CM|Insect bite (nonvenomous), left thigh, initial encounter|Insect bite (nonvenomous), left thigh, initial encounter +C2856282|T037|AB|S70.362D|ICD10CM|Insect bite (nonvenomous), left thigh, subsequent encounter|Insect bite (nonvenomous), left thigh, subsequent encounter +C2856282|T037|PT|S70.362D|ICD10CM|Insect bite (nonvenomous), left thigh, subsequent encounter|Insect bite (nonvenomous), left thigh, subsequent encounter +C2856283|T037|AB|S70.362S|ICD10CM|Insect bite (nonvenomous), left thigh, sequela|Insect bite (nonvenomous), left thigh, sequela +C2856283|T037|PT|S70.362S|ICD10CM|Insect bite (nonvenomous), left thigh, sequela|Insect bite (nonvenomous), left thigh, sequela +C2856284|T037|AB|S70.369|ICD10CM|Insect bite (nonvenomous), unspecified thigh|Insect bite (nonvenomous), unspecified thigh +C2856284|T037|HT|S70.369|ICD10CM|Insect bite (nonvenomous), unspecified thigh|Insect bite (nonvenomous), unspecified thigh +C2856285|T037|AB|S70.369A|ICD10CM|Insect bite (nonvenomous), unspecified thigh, init encntr|Insect bite (nonvenomous), unspecified thigh, init encntr +C2856285|T037|PT|S70.369A|ICD10CM|Insect bite (nonvenomous), unspecified thigh, initial encounter|Insect bite (nonvenomous), unspecified thigh, initial encounter +C2856286|T037|AB|S70.369D|ICD10CM|Insect bite (nonvenomous), unspecified thigh, subs encntr|Insect bite (nonvenomous), unspecified thigh, subs encntr +C2856286|T037|PT|S70.369D|ICD10CM|Insect bite (nonvenomous), unspecified thigh, subsequent encounter|Insect bite (nonvenomous), unspecified thigh, subsequent encounter +C2856287|T037|AB|S70.369S|ICD10CM|Insect bite (nonvenomous), unspecified thigh, sequela|Insect bite (nonvenomous), unspecified thigh, sequela +C2856287|T037|PT|S70.369S|ICD10CM|Insect bite (nonvenomous), unspecified thigh, sequela|Insect bite (nonvenomous), unspecified thigh, sequela +C2856288|T037|AB|S70.37|ICD10CM|Other superficial bite of thigh|Other superficial bite of thigh +C2856288|T037|HT|S70.37|ICD10CM|Other superficial bite of thigh|Other superficial bite of thigh +C2856289|T037|AB|S70.371|ICD10CM|Other superficial bite of right thigh|Other superficial bite of right thigh +C2856289|T037|HT|S70.371|ICD10CM|Other superficial bite of right thigh|Other superficial bite of right thigh +C2856290|T037|AB|S70.371A|ICD10CM|Other superficial bite of right thigh, initial encounter|Other superficial bite of right thigh, initial encounter +C2856290|T037|PT|S70.371A|ICD10CM|Other superficial bite of right thigh, initial encounter|Other superficial bite of right thigh, initial encounter +C2856291|T037|AB|S70.371D|ICD10CM|Other superficial bite of right thigh, subsequent encounter|Other superficial bite of right thigh, subsequent encounter +C2856291|T037|PT|S70.371D|ICD10CM|Other superficial bite of right thigh, subsequent encounter|Other superficial bite of right thigh, subsequent encounter +C2856292|T037|AB|S70.371S|ICD10CM|Other superficial bite of right thigh, sequela|Other superficial bite of right thigh, sequela +C2856292|T037|PT|S70.371S|ICD10CM|Other superficial bite of right thigh, sequela|Other superficial bite of right thigh, sequela +C2856293|T037|AB|S70.372|ICD10CM|Other superficial bite of left thigh|Other superficial bite of left thigh +C2856293|T037|HT|S70.372|ICD10CM|Other superficial bite of left thigh|Other superficial bite of left thigh +C2856294|T037|AB|S70.372A|ICD10CM|Other superficial bite of left thigh, initial encounter|Other superficial bite of left thigh, initial encounter +C2856294|T037|PT|S70.372A|ICD10CM|Other superficial bite of left thigh, initial encounter|Other superficial bite of left thigh, initial encounter +C2856295|T037|AB|S70.372D|ICD10CM|Other superficial bite of left thigh, subsequent encounter|Other superficial bite of left thigh, subsequent encounter +C2856295|T037|PT|S70.372D|ICD10CM|Other superficial bite of left thigh, subsequent encounter|Other superficial bite of left thigh, subsequent encounter +C2856296|T037|AB|S70.372S|ICD10CM|Other superficial bite of left thigh, sequela|Other superficial bite of left thigh, sequela +C2856296|T037|PT|S70.372S|ICD10CM|Other superficial bite of left thigh, sequela|Other superficial bite of left thigh, sequela +C2856297|T037|AB|S70.379|ICD10CM|Other superficial bite of unspecified thigh|Other superficial bite of unspecified thigh +C2856297|T037|HT|S70.379|ICD10CM|Other superficial bite of unspecified thigh|Other superficial bite of unspecified thigh +C2856298|T037|AB|S70.379A|ICD10CM|Other superficial bite of unspecified thigh, init encntr|Other superficial bite of unspecified thigh, init encntr +C2856298|T037|PT|S70.379A|ICD10CM|Other superficial bite of unspecified thigh, initial encounter|Other superficial bite of unspecified thigh, initial encounter +C2856299|T037|AB|S70.379D|ICD10CM|Other superficial bite of unspecified thigh, subs encntr|Other superficial bite of unspecified thigh, subs encntr +C2856299|T037|PT|S70.379D|ICD10CM|Other superficial bite of unspecified thigh, subsequent encounter|Other superficial bite of unspecified thigh, subsequent encounter +C2856300|T037|AB|S70.379S|ICD10CM|Other superficial bite of unspecified thigh, sequela|Other superficial bite of unspecified thigh, sequela +C2856300|T037|PT|S70.379S|ICD10CM|Other superficial bite of unspecified thigh, sequela|Other superficial bite of unspecified thigh, sequela +C0451963|T037|PT|S70.7|ICD10|Multiple superficial injuries of hip and thigh|Multiple superficial injuries of hip and thigh +C0478323|T037|PT|S70.8|ICD10|Other superficial injuries of hip and thigh|Other superficial injuries of hip and thigh +C0495927|T037|PT|S70.9|ICD10|Superficial injury of hip and thigh, unspecified|Superficial injury of hip and thigh, unspecified +C0495927|T037|AB|S70.9|ICD10CM|Unspecified superficial injury of hip and thigh|Unspecified superficial injury of hip and thigh +C0495927|T037|HT|S70.9|ICD10CM|Unspecified superficial injury of hip and thigh|Unspecified superficial injury of hip and thigh +C2856301|T037|AB|S70.91|ICD10CM|Unspecified superficial injury of hip|Unspecified superficial injury of hip +C2856301|T037|HT|S70.91|ICD10CM|Unspecified superficial injury of hip|Unspecified superficial injury of hip +C2856302|T037|AB|S70.911|ICD10CM|Unspecified superficial injury of right hip|Unspecified superficial injury of right hip +C2856302|T037|HT|S70.911|ICD10CM|Unspecified superficial injury of right hip|Unspecified superficial injury of right hip +C2856303|T037|AB|S70.911A|ICD10CM|Unspecified superficial injury of right hip, init encntr|Unspecified superficial injury of right hip, init encntr +C2856303|T037|PT|S70.911A|ICD10CM|Unspecified superficial injury of right hip, initial encounter|Unspecified superficial injury of right hip, initial encounter +C2856304|T037|AB|S70.911D|ICD10CM|Unspecified superficial injury of right hip, subs encntr|Unspecified superficial injury of right hip, subs encntr +C2856304|T037|PT|S70.911D|ICD10CM|Unspecified superficial injury of right hip, subsequent encounter|Unspecified superficial injury of right hip, subsequent encounter +C2856305|T037|AB|S70.911S|ICD10CM|Unspecified superficial injury of right hip, sequela|Unspecified superficial injury of right hip, sequela +C2856305|T037|PT|S70.911S|ICD10CM|Unspecified superficial injury of right hip, sequela|Unspecified superficial injury of right hip, sequela +C2856306|T037|AB|S70.912|ICD10CM|Unspecified superficial injury of left hip|Unspecified superficial injury of left hip +C2856306|T037|HT|S70.912|ICD10CM|Unspecified superficial injury of left hip|Unspecified superficial injury of left hip +C2856307|T037|AB|S70.912A|ICD10CM|Unspecified superficial injury of left hip, init encntr|Unspecified superficial injury of left hip, init encntr +C2856307|T037|PT|S70.912A|ICD10CM|Unspecified superficial injury of left hip, initial encounter|Unspecified superficial injury of left hip, initial encounter +C2856308|T037|AB|S70.912D|ICD10CM|Unspecified superficial injury of left hip, subs encntr|Unspecified superficial injury of left hip, subs encntr +C2856308|T037|PT|S70.912D|ICD10CM|Unspecified superficial injury of left hip, subsequent encounter|Unspecified superficial injury of left hip, subsequent encounter +C2856309|T037|AB|S70.912S|ICD10CM|Unspecified superficial injury of left hip, sequela|Unspecified superficial injury of left hip, sequela +C2856309|T037|PT|S70.912S|ICD10CM|Unspecified superficial injury of left hip, sequela|Unspecified superficial injury of left hip, sequela +C2856310|T037|AB|S70.919|ICD10CM|Unspecified superficial injury of unspecified hip|Unspecified superficial injury of unspecified hip +C2856310|T037|HT|S70.919|ICD10CM|Unspecified superficial injury of unspecified hip|Unspecified superficial injury of unspecified hip +C2856311|T037|AB|S70.919A|ICD10CM|Unsp superficial injury of unspecified hip, init encntr|Unsp superficial injury of unspecified hip, init encntr +C2856311|T037|PT|S70.919A|ICD10CM|Unspecified superficial injury of unspecified hip, initial encounter|Unspecified superficial injury of unspecified hip, initial encounter +C2856312|T037|AB|S70.919D|ICD10CM|Unsp superficial injury of unspecified hip, subs encntr|Unsp superficial injury of unspecified hip, subs encntr +C2856312|T037|PT|S70.919D|ICD10CM|Unspecified superficial injury of unspecified hip, subsequent encounter|Unspecified superficial injury of unspecified hip, subsequent encounter +C2856313|T037|AB|S70.919S|ICD10CM|Unspecified superficial injury of unspecified hip, sequela|Unspecified superficial injury of unspecified hip, sequela +C2856313|T037|PT|S70.919S|ICD10CM|Unspecified superficial injury of unspecified hip, sequela|Unspecified superficial injury of unspecified hip, sequela +C2856314|T037|AB|S70.92|ICD10CM|Unspecified superficial injury of thigh|Unspecified superficial injury of thigh +C2856314|T037|HT|S70.92|ICD10CM|Unspecified superficial injury of thigh|Unspecified superficial injury of thigh +C2856315|T037|AB|S70.921|ICD10CM|Unspecified superficial injury of right thigh|Unspecified superficial injury of right thigh +C2856315|T037|HT|S70.921|ICD10CM|Unspecified superficial injury of right thigh|Unspecified superficial injury of right thigh +C2856316|T037|AB|S70.921A|ICD10CM|Unspecified superficial injury of right thigh, init encntr|Unspecified superficial injury of right thigh, init encntr +C2856316|T037|PT|S70.921A|ICD10CM|Unspecified superficial injury of right thigh, initial encounter|Unspecified superficial injury of right thigh, initial encounter +C2856317|T037|AB|S70.921D|ICD10CM|Unspecified superficial injury of right thigh, subs encntr|Unspecified superficial injury of right thigh, subs encntr +C2856317|T037|PT|S70.921D|ICD10CM|Unspecified superficial injury of right thigh, subsequent encounter|Unspecified superficial injury of right thigh, subsequent encounter +C2856318|T037|AB|S70.921S|ICD10CM|Unspecified superficial injury of right thigh, sequela|Unspecified superficial injury of right thigh, sequela +C2856318|T037|PT|S70.921S|ICD10CM|Unspecified superficial injury of right thigh, sequela|Unspecified superficial injury of right thigh, sequela +C2856319|T037|AB|S70.922|ICD10CM|Unspecified superficial injury of left thigh|Unspecified superficial injury of left thigh +C2856319|T037|HT|S70.922|ICD10CM|Unspecified superficial injury of left thigh|Unspecified superficial injury of left thigh +C2856320|T037|AB|S70.922A|ICD10CM|Unspecified superficial injury of left thigh, init encntr|Unspecified superficial injury of left thigh, init encntr +C2856320|T037|PT|S70.922A|ICD10CM|Unspecified superficial injury of left thigh, initial encounter|Unspecified superficial injury of left thigh, initial encounter +C2856321|T037|AB|S70.922D|ICD10CM|Unspecified superficial injury of left thigh, subs encntr|Unspecified superficial injury of left thigh, subs encntr +C2856321|T037|PT|S70.922D|ICD10CM|Unspecified superficial injury of left thigh, subsequent encounter|Unspecified superficial injury of left thigh, subsequent encounter +C2856322|T037|AB|S70.922S|ICD10CM|Unspecified superficial injury of left thigh, sequela|Unspecified superficial injury of left thigh, sequela +C2856322|T037|PT|S70.922S|ICD10CM|Unspecified superficial injury of left thigh, sequela|Unspecified superficial injury of left thigh, sequela +C2856323|T037|AB|S70.929|ICD10CM|Unspecified superficial injury of unspecified thigh|Unspecified superficial injury of unspecified thigh +C2856323|T037|HT|S70.929|ICD10CM|Unspecified superficial injury of unspecified thigh|Unspecified superficial injury of unspecified thigh +C2856324|T037|AB|S70.929A|ICD10CM|Unsp superficial injury of unspecified thigh, init encntr|Unsp superficial injury of unspecified thigh, init encntr +C2856324|T037|PT|S70.929A|ICD10CM|Unspecified superficial injury of unspecified thigh, initial encounter|Unspecified superficial injury of unspecified thigh, initial encounter +C2856325|T037|AB|S70.929D|ICD10CM|Unsp superficial injury of unspecified thigh, subs encntr|Unsp superficial injury of unspecified thigh, subs encntr +C2856325|T037|PT|S70.929D|ICD10CM|Unspecified superficial injury of unspecified thigh, subsequent encounter|Unspecified superficial injury of unspecified thigh, subsequent encounter +C2856326|T037|AB|S70.929S|ICD10CM|Unspecified superficial injury of unspecified thigh, sequela|Unspecified superficial injury of unspecified thigh, sequela +C2856326|T037|PT|S70.929S|ICD10CM|Unspecified superficial injury of unspecified thigh, sequela|Unspecified superficial injury of unspecified thigh, sequela +C0160643|T037|HT|S71|ICD10CM|Open wound of hip and thigh|Open wound of hip and thigh +C0160643|T037|AB|S71|ICD10CM|Open wound of hip and thigh|Open wound of hip and thigh +C0160643|T037|HT|S71|ICD10|Open wound of hip and thigh|Open wound of hip and thigh +C0347568|T037|PT|S71.0|ICD10|Open wound of hip|Open wound of hip +C0347568|T037|HT|S71.0|ICD10CM|Open wound of hip|Open wound of hip +C0347568|T037|AB|S71.0|ICD10CM|Open wound of hip|Open wound of hip +C2856327|T037|AB|S71.00|ICD10CM|Unspecified open wound of hip|Unspecified open wound of hip +C2856327|T037|HT|S71.00|ICD10CM|Unspecified open wound of hip|Unspecified open wound of hip +C2856328|T037|AB|S71.001|ICD10CM|Unspecified open wound, right hip|Unspecified open wound, right hip +C2856328|T037|HT|S71.001|ICD10CM|Unspecified open wound, right hip|Unspecified open wound, right hip +C2856329|T037|AB|S71.001A|ICD10CM|Unspecified open wound, right hip, initial encounter|Unspecified open wound, right hip, initial encounter +C2856329|T037|PT|S71.001A|ICD10CM|Unspecified open wound, right hip, initial encounter|Unspecified open wound, right hip, initial encounter +C2856330|T037|AB|S71.001D|ICD10CM|Unspecified open wound, right hip, subsequent encounter|Unspecified open wound, right hip, subsequent encounter +C2856330|T037|PT|S71.001D|ICD10CM|Unspecified open wound, right hip, subsequent encounter|Unspecified open wound, right hip, subsequent encounter +C2856331|T037|AB|S71.001S|ICD10CM|Unspecified open wound, right hip, sequela|Unspecified open wound, right hip, sequela +C2856331|T037|PT|S71.001S|ICD10CM|Unspecified open wound, right hip, sequela|Unspecified open wound, right hip, sequela +C2856332|T037|AB|S71.002|ICD10CM|Unspecified open wound, left hip|Unspecified open wound, left hip +C2856332|T037|HT|S71.002|ICD10CM|Unspecified open wound, left hip|Unspecified open wound, left hip +C2856333|T037|AB|S71.002A|ICD10CM|Unspecified open wound, left hip, initial encounter|Unspecified open wound, left hip, initial encounter +C2856333|T037|PT|S71.002A|ICD10CM|Unspecified open wound, left hip, initial encounter|Unspecified open wound, left hip, initial encounter +C2856334|T037|AB|S71.002D|ICD10CM|Unspecified open wound, left hip, subsequent encounter|Unspecified open wound, left hip, subsequent encounter +C2856334|T037|PT|S71.002D|ICD10CM|Unspecified open wound, left hip, subsequent encounter|Unspecified open wound, left hip, subsequent encounter +C2856335|T037|AB|S71.002S|ICD10CM|Unspecified open wound, left hip, sequela|Unspecified open wound, left hip, sequela +C2856335|T037|PT|S71.002S|ICD10CM|Unspecified open wound, left hip, sequela|Unspecified open wound, left hip, sequela +C2856336|T037|AB|S71.009|ICD10CM|Unspecified open wound, unspecified hip|Unspecified open wound, unspecified hip +C2856336|T037|HT|S71.009|ICD10CM|Unspecified open wound, unspecified hip|Unspecified open wound, unspecified hip +C2856337|T037|AB|S71.009A|ICD10CM|Unspecified open wound, unspecified hip, initial encounter|Unspecified open wound, unspecified hip, initial encounter +C2856337|T037|PT|S71.009A|ICD10CM|Unspecified open wound, unspecified hip, initial encounter|Unspecified open wound, unspecified hip, initial encounter +C2856338|T037|AB|S71.009D|ICD10CM|Unspecified open wound, unspecified hip, subs encntr|Unspecified open wound, unspecified hip, subs encntr +C2856338|T037|PT|S71.009D|ICD10CM|Unspecified open wound, unspecified hip, subsequent encounter|Unspecified open wound, unspecified hip, subsequent encounter +C2856339|T037|AB|S71.009S|ICD10CM|Unspecified open wound, unspecified hip, sequela|Unspecified open wound, unspecified hip, sequela +C2856339|T037|PT|S71.009S|ICD10CM|Unspecified open wound, unspecified hip, sequela|Unspecified open wound, unspecified hip, sequela +C2856340|T037|AB|S71.01|ICD10CM|Laceration without foreign body of hip|Laceration without foreign body of hip +C2856340|T037|HT|S71.01|ICD10CM|Laceration without foreign body of hip|Laceration without foreign body of hip +C2856341|T037|AB|S71.011|ICD10CM|Laceration without foreign body, right hip|Laceration without foreign body, right hip +C2856341|T037|HT|S71.011|ICD10CM|Laceration without foreign body, right hip|Laceration without foreign body, right hip +C2856342|T037|AB|S71.011A|ICD10CM|Laceration without foreign body, right hip, init encntr|Laceration without foreign body, right hip, init encntr +C2856342|T037|PT|S71.011A|ICD10CM|Laceration without foreign body, right hip, initial encounter|Laceration without foreign body, right hip, initial encounter +C2856343|T037|AB|S71.011D|ICD10CM|Laceration without foreign body, right hip, subs encntr|Laceration without foreign body, right hip, subs encntr +C2856343|T037|PT|S71.011D|ICD10CM|Laceration without foreign body, right hip, subsequent encounter|Laceration without foreign body, right hip, subsequent encounter +C2856344|T037|AB|S71.011S|ICD10CM|Laceration without foreign body, right hip, sequela|Laceration without foreign body, right hip, sequela +C2856344|T037|PT|S71.011S|ICD10CM|Laceration without foreign body, right hip, sequela|Laceration without foreign body, right hip, sequela +C2856345|T037|AB|S71.012|ICD10CM|Laceration without foreign body, left hip|Laceration without foreign body, left hip +C2856345|T037|HT|S71.012|ICD10CM|Laceration without foreign body, left hip|Laceration without foreign body, left hip +C2856346|T037|AB|S71.012A|ICD10CM|Laceration without foreign body, left hip, initial encounter|Laceration without foreign body, left hip, initial encounter +C2856346|T037|PT|S71.012A|ICD10CM|Laceration without foreign body, left hip, initial encounter|Laceration without foreign body, left hip, initial encounter +C2856347|T037|AB|S71.012D|ICD10CM|Laceration without foreign body, left hip, subs encntr|Laceration without foreign body, left hip, subs encntr +C2856347|T037|PT|S71.012D|ICD10CM|Laceration without foreign body, left hip, subsequent encounter|Laceration without foreign body, left hip, subsequent encounter +C2856348|T037|AB|S71.012S|ICD10CM|Laceration without foreign body, left hip, sequela|Laceration without foreign body, left hip, sequela +C2856348|T037|PT|S71.012S|ICD10CM|Laceration without foreign body, left hip, sequela|Laceration without foreign body, left hip, sequela +C2856349|T037|AB|S71.019|ICD10CM|Laceration without foreign body, unspecified hip|Laceration without foreign body, unspecified hip +C2856349|T037|HT|S71.019|ICD10CM|Laceration without foreign body, unspecified hip|Laceration without foreign body, unspecified hip +C2856350|T037|AB|S71.019A|ICD10CM|Laceration without foreign body, unsp hip, init encntr|Laceration without foreign body, unsp hip, init encntr +C2856350|T037|PT|S71.019A|ICD10CM|Laceration without foreign body, unspecified hip, initial encounter|Laceration without foreign body, unspecified hip, initial encounter +C2856351|T037|AB|S71.019D|ICD10CM|Laceration without foreign body, unsp hip, subs encntr|Laceration without foreign body, unsp hip, subs encntr +C2856351|T037|PT|S71.019D|ICD10CM|Laceration without foreign body, unspecified hip, subsequent encounter|Laceration without foreign body, unspecified hip, subsequent encounter +C2856352|T037|AB|S71.019S|ICD10CM|Laceration without foreign body, unspecified hip, sequela|Laceration without foreign body, unspecified hip, sequela +C2856352|T037|PT|S71.019S|ICD10CM|Laceration without foreign body, unspecified hip, sequela|Laceration without foreign body, unspecified hip, sequela +C2856353|T037|HT|S71.02|ICD10CM|Laceration with foreign body of hip|Laceration with foreign body of hip +C2856353|T037|AB|S71.02|ICD10CM|Laceration with foreign body of hip|Laceration with foreign body of hip +C2856354|T037|AB|S71.021|ICD10CM|Laceration with foreign body, right hip|Laceration with foreign body, right hip +C2856354|T037|HT|S71.021|ICD10CM|Laceration with foreign body, right hip|Laceration with foreign body, right hip +C2856355|T037|AB|S71.021A|ICD10CM|Laceration with foreign body, right hip, initial encounter|Laceration with foreign body, right hip, initial encounter +C2856355|T037|PT|S71.021A|ICD10CM|Laceration with foreign body, right hip, initial encounter|Laceration with foreign body, right hip, initial encounter +C2856356|T037|AB|S71.021D|ICD10CM|Laceration with foreign body, right hip, subs encntr|Laceration with foreign body, right hip, subs encntr +C2856356|T037|PT|S71.021D|ICD10CM|Laceration with foreign body, right hip, subsequent encounter|Laceration with foreign body, right hip, subsequent encounter +C2856357|T037|AB|S71.021S|ICD10CM|Laceration with foreign body, right hip, sequela|Laceration with foreign body, right hip, sequela +C2856357|T037|PT|S71.021S|ICD10CM|Laceration with foreign body, right hip, sequela|Laceration with foreign body, right hip, sequela +C2856358|T037|AB|S71.022|ICD10CM|Laceration with foreign body, left hip|Laceration with foreign body, left hip +C2856358|T037|HT|S71.022|ICD10CM|Laceration with foreign body, left hip|Laceration with foreign body, left hip +C2856359|T037|AB|S71.022A|ICD10CM|Laceration with foreign body, left hip, initial encounter|Laceration with foreign body, left hip, initial encounter +C2856359|T037|PT|S71.022A|ICD10CM|Laceration with foreign body, left hip, initial encounter|Laceration with foreign body, left hip, initial encounter +C2856360|T037|AB|S71.022D|ICD10CM|Laceration with foreign body, left hip, subsequent encounter|Laceration with foreign body, left hip, subsequent encounter +C2856360|T037|PT|S71.022D|ICD10CM|Laceration with foreign body, left hip, subsequent encounter|Laceration with foreign body, left hip, subsequent encounter +C2856361|T037|AB|S71.022S|ICD10CM|Laceration with foreign body, left hip, sequela|Laceration with foreign body, left hip, sequela +C2856361|T037|PT|S71.022S|ICD10CM|Laceration with foreign body, left hip, sequela|Laceration with foreign body, left hip, sequela +C2856362|T037|AB|S71.029|ICD10CM|Laceration with foreign body, unspecified hip|Laceration with foreign body, unspecified hip +C2856362|T037|HT|S71.029|ICD10CM|Laceration with foreign body, unspecified hip|Laceration with foreign body, unspecified hip +C2856363|T037|AB|S71.029A|ICD10CM|Laceration with foreign body, unspecified hip, init encntr|Laceration with foreign body, unspecified hip, init encntr +C2856363|T037|PT|S71.029A|ICD10CM|Laceration with foreign body, unspecified hip, initial encounter|Laceration with foreign body, unspecified hip, initial encounter +C2856364|T037|AB|S71.029D|ICD10CM|Laceration with foreign body, unspecified hip, subs encntr|Laceration with foreign body, unspecified hip, subs encntr +C2856364|T037|PT|S71.029D|ICD10CM|Laceration with foreign body, unspecified hip, subsequent encounter|Laceration with foreign body, unspecified hip, subsequent encounter +C2856365|T037|AB|S71.029S|ICD10CM|Laceration with foreign body, unspecified hip, sequela|Laceration with foreign body, unspecified hip, sequela +C2856365|T037|PT|S71.029S|ICD10CM|Laceration with foreign body, unspecified hip, sequela|Laceration with foreign body, unspecified hip, sequela +C2856366|T037|AB|S71.03|ICD10CM|Puncture wound without foreign body of hip|Puncture wound without foreign body of hip +C2856366|T037|HT|S71.03|ICD10CM|Puncture wound without foreign body of hip|Puncture wound without foreign body of hip +C2856367|T037|AB|S71.031|ICD10CM|Puncture wound without foreign body, right hip|Puncture wound without foreign body, right hip +C2856367|T037|HT|S71.031|ICD10CM|Puncture wound without foreign body, right hip|Puncture wound without foreign body, right hip +C2856368|T037|AB|S71.031A|ICD10CM|Puncture wound without foreign body, right hip, init encntr|Puncture wound without foreign body, right hip, init encntr +C2856368|T037|PT|S71.031A|ICD10CM|Puncture wound without foreign body, right hip, initial encounter|Puncture wound without foreign body, right hip, initial encounter +C2856369|T037|AB|S71.031D|ICD10CM|Puncture wound without foreign body, right hip, subs encntr|Puncture wound without foreign body, right hip, subs encntr +C2856369|T037|PT|S71.031D|ICD10CM|Puncture wound without foreign body, right hip, subsequent encounter|Puncture wound without foreign body, right hip, subsequent encounter +C2856370|T037|AB|S71.031S|ICD10CM|Puncture wound without foreign body, right hip, sequela|Puncture wound without foreign body, right hip, sequela +C2856370|T037|PT|S71.031S|ICD10CM|Puncture wound without foreign body, right hip, sequela|Puncture wound without foreign body, right hip, sequela +C2856371|T037|AB|S71.032|ICD10CM|Puncture wound without foreign body, left hip|Puncture wound without foreign body, left hip +C2856371|T037|HT|S71.032|ICD10CM|Puncture wound without foreign body, left hip|Puncture wound without foreign body, left hip +C2856372|T037|AB|S71.032A|ICD10CM|Puncture wound without foreign body, left hip, init encntr|Puncture wound without foreign body, left hip, init encntr +C2856372|T037|PT|S71.032A|ICD10CM|Puncture wound without foreign body, left hip, initial encounter|Puncture wound without foreign body, left hip, initial encounter +C2856373|T037|AB|S71.032D|ICD10CM|Puncture wound without foreign body, left hip, subs encntr|Puncture wound without foreign body, left hip, subs encntr +C2856373|T037|PT|S71.032D|ICD10CM|Puncture wound without foreign body, left hip, subsequent encounter|Puncture wound without foreign body, left hip, subsequent encounter +C2856374|T037|AB|S71.032S|ICD10CM|Puncture wound without foreign body, left hip, sequela|Puncture wound without foreign body, left hip, sequela +C2856374|T037|PT|S71.032S|ICD10CM|Puncture wound without foreign body, left hip, sequela|Puncture wound without foreign body, left hip, sequela +C2856375|T037|AB|S71.039|ICD10CM|Puncture wound without foreign body, unspecified hip|Puncture wound without foreign body, unspecified hip +C2856375|T037|HT|S71.039|ICD10CM|Puncture wound without foreign body, unspecified hip|Puncture wound without foreign body, unspecified hip +C2856376|T037|AB|S71.039A|ICD10CM|Puncture wound without foreign body, unsp hip, init encntr|Puncture wound without foreign body, unsp hip, init encntr +C2856376|T037|PT|S71.039A|ICD10CM|Puncture wound without foreign body, unspecified hip, initial encounter|Puncture wound without foreign body, unspecified hip, initial encounter +C2856377|T037|AB|S71.039D|ICD10CM|Puncture wound without foreign body, unsp hip, subs encntr|Puncture wound without foreign body, unsp hip, subs encntr +C2856377|T037|PT|S71.039D|ICD10CM|Puncture wound without foreign body, unspecified hip, subsequent encounter|Puncture wound without foreign body, unspecified hip, subsequent encounter +C2856378|T037|AB|S71.039S|ICD10CM|Puncture wound without foreign body, unsp hip, sequela|Puncture wound without foreign body, unsp hip, sequela +C2856378|T037|PT|S71.039S|ICD10CM|Puncture wound without foreign body, unspecified hip, sequela|Puncture wound without foreign body, unspecified hip, sequela +C2856379|T037|HT|S71.04|ICD10CM|Puncture wound with foreign body of hip|Puncture wound with foreign body of hip +C2856379|T037|AB|S71.04|ICD10CM|Puncture wound with foreign body of hip|Puncture wound with foreign body of hip +C2856380|T037|AB|S71.041|ICD10CM|Puncture wound with foreign body, right hip|Puncture wound with foreign body, right hip +C2856380|T037|HT|S71.041|ICD10CM|Puncture wound with foreign body, right hip|Puncture wound with foreign body, right hip +C2856381|T037|AB|S71.041A|ICD10CM|Puncture wound with foreign body, right hip, init encntr|Puncture wound with foreign body, right hip, init encntr +C2856381|T037|PT|S71.041A|ICD10CM|Puncture wound with foreign body, right hip, initial encounter|Puncture wound with foreign body, right hip, initial encounter +C2856382|T037|AB|S71.041D|ICD10CM|Puncture wound with foreign body, right hip, subs encntr|Puncture wound with foreign body, right hip, subs encntr +C2856382|T037|PT|S71.041D|ICD10CM|Puncture wound with foreign body, right hip, subsequent encounter|Puncture wound with foreign body, right hip, subsequent encounter +C2856383|T037|AB|S71.041S|ICD10CM|Puncture wound with foreign body, right hip, sequela|Puncture wound with foreign body, right hip, sequela +C2856383|T037|PT|S71.041S|ICD10CM|Puncture wound with foreign body, right hip, sequela|Puncture wound with foreign body, right hip, sequela +C2856384|T037|AB|S71.042|ICD10CM|Puncture wound with foreign body, left hip|Puncture wound with foreign body, left hip +C2856384|T037|HT|S71.042|ICD10CM|Puncture wound with foreign body, left hip|Puncture wound with foreign body, left hip +C2856385|T037|AB|S71.042A|ICD10CM|Puncture wound with foreign body, left hip, init encntr|Puncture wound with foreign body, left hip, init encntr +C2856385|T037|PT|S71.042A|ICD10CM|Puncture wound with foreign body, left hip, initial encounter|Puncture wound with foreign body, left hip, initial encounter +C2856386|T037|AB|S71.042D|ICD10CM|Puncture wound with foreign body, left hip, subs encntr|Puncture wound with foreign body, left hip, subs encntr +C2856386|T037|PT|S71.042D|ICD10CM|Puncture wound with foreign body, left hip, subsequent encounter|Puncture wound with foreign body, left hip, subsequent encounter +C2856387|T037|AB|S71.042S|ICD10CM|Puncture wound with foreign body, left hip, sequela|Puncture wound with foreign body, left hip, sequela +C2856387|T037|PT|S71.042S|ICD10CM|Puncture wound with foreign body, left hip, sequela|Puncture wound with foreign body, left hip, sequela +C2856388|T037|AB|S71.049|ICD10CM|Puncture wound with foreign body, unspecified hip|Puncture wound with foreign body, unspecified hip +C2856388|T037|HT|S71.049|ICD10CM|Puncture wound with foreign body, unspecified hip|Puncture wound with foreign body, unspecified hip +C2856389|T037|AB|S71.049A|ICD10CM|Puncture wound with foreign body, unsp hip, init encntr|Puncture wound with foreign body, unsp hip, init encntr +C2856389|T037|PT|S71.049A|ICD10CM|Puncture wound with foreign body, unspecified hip, initial encounter|Puncture wound with foreign body, unspecified hip, initial encounter +C2856390|T037|AB|S71.049D|ICD10CM|Puncture wound with foreign body, unsp hip, subs encntr|Puncture wound with foreign body, unsp hip, subs encntr +C2856390|T037|PT|S71.049D|ICD10CM|Puncture wound with foreign body, unspecified hip, subsequent encounter|Puncture wound with foreign body, unspecified hip, subsequent encounter +C2856391|T037|AB|S71.049S|ICD10CM|Puncture wound with foreign body, unspecified hip, sequela|Puncture wound with foreign body, unspecified hip, sequela +C2856391|T037|PT|S71.049S|ICD10CM|Puncture wound with foreign body, unspecified hip, sequela|Puncture wound with foreign body, unspecified hip, sequela +C2856392|T037|ET|S71.05|ICD10CM|Bite of hip NOS|Bite of hip NOS +C2856392|T037|HT|S71.05|ICD10CM|Open bite of hip|Open bite of hip +C2856392|T037|AB|S71.05|ICD10CM|Open bite of hip|Open bite of hip +C2194768|T037|AB|S71.051|ICD10CM|Open bite, right hip|Open bite, right hip +C2194768|T037|HT|S71.051|ICD10CM|Open bite, right hip|Open bite, right hip +C2856393|T037|AB|S71.051A|ICD10CM|Open bite, right hip, initial encounter|Open bite, right hip, initial encounter +C2856393|T037|PT|S71.051A|ICD10CM|Open bite, right hip, initial encounter|Open bite, right hip, initial encounter +C2856394|T037|AB|S71.051D|ICD10CM|Open bite, right hip, subsequent encounter|Open bite, right hip, subsequent encounter +C2856394|T037|PT|S71.051D|ICD10CM|Open bite, right hip, subsequent encounter|Open bite, right hip, subsequent encounter +C2856395|T037|AB|S71.051S|ICD10CM|Open bite, right hip, sequela|Open bite, right hip, sequela +C2856395|T037|PT|S71.051S|ICD10CM|Open bite, right hip, sequela|Open bite, right hip, sequela +C2141978|T037|AB|S71.052|ICD10CM|Open bite, left hip|Open bite, left hip +C2141978|T037|HT|S71.052|ICD10CM|Open bite, left hip|Open bite, left hip +C2856396|T037|AB|S71.052A|ICD10CM|Open bite, left hip, initial encounter|Open bite, left hip, initial encounter +C2856396|T037|PT|S71.052A|ICD10CM|Open bite, left hip, initial encounter|Open bite, left hip, initial encounter +C2856397|T037|AB|S71.052D|ICD10CM|Open bite, left hip, subsequent encounter|Open bite, left hip, subsequent encounter +C2856397|T037|PT|S71.052D|ICD10CM|Open bite, left hip, subsequent encounter|Open bite, left hip, subsequent encounter +C2856398|T037|AB|S71.052S|ICD10CM|Open bite, left hip, sequela|Open bite, left hip, sequela +C2856398|T037|PT|S71.052S|ICD10CM|Open bite, left hip, sequela|Open bite, left hip, sequela +C2856399|T037|AB|S71.059|ICD10CM|Open bite, unspecified hip|Open bite, unspecified hip +C2856399|T037|HT|S71.059|ICD10CM|Open bite, unspecified hip|Open bite, unspecified hip +C2856400|T037|AB|S71.059A|ICD10CM|Open bite, unspecified hip, initial encounter|Open bite, unspecified hip, initial encounter +C2856400|T037|PT|S71.059A|ICD10CM|Open bite, unspecified hip, initial encounter|Open bite, unspecified hip, initial encounter +C2856401|T037|AB|S71.059D|ICD10CM|Open bite, unspecified hip, subsequent encounter|Open bite, unspecified hip, subsequent encounter +C2856401|T037|PT|S71.059D|ICD10CM|Open bite, unspecified hip, subsequent encounter|Open bite, unspecified hip, subsequent encounter +C2856402|T037|AB|S71.059S|ICD10CM|Open bite, unspecified hip, sequela|Open bite, unspecified hip, sequela +C2856402|T037|PT|S71.059S|ICD10CM|Open bite, unspecified hip, sequela|Open bite, unspecified hip, sequela +C0347569|T037|HT|S71.1|ICD10CM|Open wound of thigh|Open wound of thigh +C0347569|T037|AB|S71.1|ICD10CM|Open wound of thigh|Open wound of thigh +C0347569|T037|PT|S71.1|ICD10|Open wound of thigh|Open wound of thigh +C2856403|T037|AB|S71.10|ICD10CM|Unspecified open wound of thigh|Unspecified open wound of thigh +C2856403|T037|HT|S71.10|ICD10CM|Unspecified open wound of thigh|Unspecified open wound of thigh +C2856404|T037|AB|S71.101|ICD10CM|Unspecified open wound, right thigh|Unspecified open wound, right thigh +C2856404|T037|HT|S71.101|ICD10CM|Unspecified open wound, right thigh|Unspecified open wound, right thigh +C2856405|T037|AB|S71.101A|ICD10CM|Unspecified open wound, right thigh, initial encounter|Unspecified open wound, right thigh, initial encounter +C2856405|T037|PT|S71.101A|ICD10CM|Unspecified open wound, right thigh, initial encounter|Unspecified open wound, right thigh, initial encounter +C2856406|T037|AB|S71.101D|ICD10CM|Unspecified open wound, right thigh, subsequent encounter|Unspecified open wound, right thigh, subsequent encounter +C2856406|T037|PT|S71.101D|ICD10CM|Unspecified open wound, right thigh, subsequent encounter|Unspecified open wound, right thigh, subsequent encounter +C2856407|T037|AB|S71.101S|ICD10CM|Unspecified open wound, right thigh, sequela|Unspecified open wound, right thigh, sequela +C2856407|T037|PT|S71.101S|ICD10CM|Unspecified open wound, right thigh, sequela|Unspecified open wound, right thigh, sequela +C2856408|T037|AB|S71.102|ICD10CM|Unspecified open wound, left thigh|Unspecified open wound, left thigh +C2856408|T037|HT|S71.102|ICD10CM|Unspecified open wound, left thigh|Unspecified open wound, left thigh +C2856409|T037|AB|S71.102A|ICD10CM|Unspecified open wound, left thigh, initial encounter|Unspecified open wound, left thigh, initial encounter +C2856409|T037|PT|S71.102A|ICD10CM|Unspecified open wound, left thigh, initial encounter|Unspecified open wound, left thigh, initial encounter +C2856410|T037|AB|S71.102D|ICD10CM|Unspecified open wound, left thigh, subsequent encounter|Unspecified open wound, left thigh, subsequent encounter +C2856410|T037|PT|S71.102D|ICD10CM|Unspecified open wound, left thigh, subsequent encounter|Unspecified open wound, left thigh, subsequent encounter +C2856411|T037|AB|S71.102S|ICD10CM|Unspecified open wound, left thigh, sequela|Unspecified open wound, left thigh, sequela +C2856411|T037|PT|S71.102S|ICD10CM|Unspecified open wound, left thigh, sequela|Unspecified open wound, left thigh, sequela +C2856412|T037|AB|S71.109|ICD10CM|Unspecified open wound, unspecified thigh|Unspecified open wound, unspecified thigh +C2856412|T037|HT|S71.109|ICD10CM|Unspecified open wound, unspecified thigh|Unspecified open wound, unspecified thigh +C2856413|T037|AB|S71.109A|ICD10CM|Unspecified open wound, unspecified thigh, initial encounter|Unspecified open wound, unspecified thigh, initial encounter +C2856413|T037|PT|S71.109A|ICD10CM|Unspecified open wound, unspecified thigh, initial encounter|Unspecified open wound, unspecified thigh, initial encounter +C2856414|T037|AB|S71.109D|ICD10CM|Unspecified open wound, unspecified thigh, subs encntr|Unspecified open wound, unspecified thigh, subs encntr +C2856414|T037|PT|S71.109D|ICD10CM|Unspecified open wound, unspecified thigh, subsequent encounter|Unspecified open wound, unspecified thigh, subsequent encounter +C2856415|T037|AB|S71.109S|ICD10CM|Unspecified open wound, unspecified thigh, sequela|Unspecified open wound, unspecified thigh, sequela +C2856415|T037|PT|S71.109S|ICD10CM|Unspecified open wound, unspecified thigh, sequela|Unspecified open wound, unspecified thigh, sequela +C2856416|T037|AB|S71.11|ICD10CM|Laceration without foreign body of thigh|Laceration without foreign body of thigh +C2856416|T037|HT|S71.11|ICD10CM|Laceration without foreign body of thigh|Laceration without foreign body of thigh +C2856417|T037|AB|S71.111|ICD10CM|Laceration without foreign body, right thigh|Laceration without foreign body, right thigh +C2856417|T037|HT|S71.111|ICD10CM|Laceration without foreign body, right thigh|Laceration without foreign body, right thigh +C2856418|T037|AB|S71.111A|ICD10CM|Laceration without foreign body, right thigh, init encntr|Laceration without foreign body, right thigh, init encntr +C2856418|T037|PT|S71.111A|ICD10CM|Laceration without foreign body, right thigh, initial encounter|Laceration without foreign body, right thigh, initial encounter +C2856419|T037|AB|S71.111D|ICD10CM|Laceration without foreign body, right thigh, subs encntr|Laceration without foreign body, right thigh, subs encntr +C2856419|T037|PT|S71.111D|ICD10CM|Laceration without foreign body, right thigh, subsequent encounter|Laceration without foreign body, right thigh, subsequent encounter +C2856420|T037|AB|S71.111S|ICD10CM|Laceration without foreign body, right thigh, sequela|Laceration without foreign body, right thigh, sequela +C2856420|T037|PT|S71.111S|ICD10CM|Laceration without foreign body, right thigh, sequela|Laceration without foreign body, right thigh, sequela +C2856421|T037|AB|S71.112|ICD10CM|Laceration without foreign body, left thigh|Laceration without foreign body, left thigh +C2856421|T037|HT|S71.112|ICD10CM|Laceration without foreign body, left thigh|Laceration without foreign body, left thigh +C2856422|T037|AB|S71.112A|ICD10CM|Laceration without foreign body, left thigh, init encntr|Laceration without foreign body, left thigh, init encntr +C2856422|T037|PT|S71.112A|ICD10CM|Laceration without foreign body, left thigh, initial encounter|Laceration without foreign body, left thigh, initial encounter +C2856423|T037|AB|S71.112D|ICD10CM|Laceration without foreign body, left thigh, subs encntr|Laceration without foreign body, left thigh, subs encntr +C2856423|T037|PT|S71.112D|ICD10CM|Laceration without foreign body, left thigh, subsequent encounter|Laceration without foreign body, left thigh, subsequent encounter +C2856424|T037|AB|S71.112S|ICD10CM|Laceration without foreign body, left thigh, sequela|Laceration without foreign body, left thigh, sequela +C2856424|T037|PT|S71.112S|ICD10CM|Laceration without foreign body, left thigh, sequela|Laceration without foreign body, left thigh, sequela +C2856425|T037|AB|S71.119|ICD10CM|Laceration without foreign body, unspecified thigh|Laceration without foreign body, unspecified thigh +C2856425|T037|HT|S71.119|ICD10CM|Laceration without foreign body, unspecified thigh|Laceration without foreign body, unspecified thigh +C2856426|T037|AB|S71.119A|ICD10CM|Laceration without foreign body, unsp thigh, init encntr|Laceration without foreign body, unsp thigh, init encntr +C2856426|T037|PT|S71.119A|ICD10CM|Laceration without foreign body, unspecified thigh, initial encounter|Laceration without foreign body, unspecified thigh, initial encounter +C2856427|T037|AB|S71.119D|ICD10CM|Laceration without foreign body, unsp thigh, subs encntr|Laceration without foreign body, unsp thigh, subs encntr +C2856427|T037|PT|S71.119D|ICD10CM|Laceration without foreign body, unspecified thigh, subsequent encounter|Laceration without foreign body, unspecified thigh, subsequent encounter +C2856428|T037|AB|S71.119S|ICD10CM|Laceration without foreign body, unspecified thigh, sequela|Laceration without foreign body, unspecified thigh, sequela +C2856428|T037|PT|S71.119S|ICD10CM|Laceration without foreign body, unspecified thigh, sequela|Laceration without foreign body, unspecified thigh, sequela +C2856429|T037|HT|S71.12|ICD10CM|Laceration with foreign body of thigh|Laceration with foreign body of thigh +C2856429|T037|AB|S71.12|ICD10CM|Laceration with foreign body of thigh|Laceration with foreign body of thigh +C2856430|T037|AB|S71.121|ICD10CM|Laceration with foreign body, right thigh|Laceration with foreign body, right thigh +C2856430|T037|HT|S71.121|ICD10CM|Laceration with foreign body, right thigh|Laceration with foreign body, right thigh +C2856431|T037|AB|S71.121A|ICD10CM|Laceration with foreign body, right thigh, initial encounter|Laceration with foreign body, right thigh, initial encounter +C2856431|T037|PT|S71.121A|ICD10CM|Laceration with foreign body, right thigh, initial encounter|Laceration with foreign body, right thigh, initial encounter +C2856432|T037|AB|S71.121D|ICD10CM|Laceration with foreign body, right thigh, subs encntr|Laceration with foreign body, right thigh, subs encntr +C2856432|T037|PT|S71.121D|ICD10CM|Laceration with foreign body, right thigh, subsequent encounter|Laceration with foreign body, right thigh, subsequent encounter +C2856433|T037|AB|S71.121S|ICD10CM|Laceration with foreign body, right thigh, sequela|Laceration with foreign body, right thigh, sequela +C2856433|T037|PT|S71.121S|ICD10CM|Laceration with foreign body, right thigh, sequela|Laceration with foreign body, right thigh, sequela +C2856434|T037|AB|S71.122|ICD10CM|Laceration with foreign body, left thigh|Laceration with foreign body, left thigh +C2856434|T037|HT|S71.122|ICD10CM|Laceration with foreign body, left thigh|Laceration with foreign body, left thigh +C2856435|T037|AB|S71.122A|ICD10CM|Laceration with foreign body, left thigh, initial encounter|Laceration with foreign body, left thigh, initial encounter +C2856435|T037|PT|S71.122A|ICD10CM|Laceration with foreign body, left thigh, initial encounter|Laceration with foreign body, left thigh, initial encounter +C2856436|T037|AB|S71.122D|ICD10CM|Laceration with foreign body, left thigh, subs encntr|Laceration with foreign body, left thigh, subs encntr +C2856436|T037|PT|S71.122D|ICD10CM|Laceration with foreign body, left thigh, subsequent encounter|Laceration with foreign body, left thigh, subsequent encounter +C2856437|T037|AB|S71.122S|ICD10CM|Laceration with foreign body, left thigh, sequela|Laceration with foreign body, left thigh, sequela +C2856437|T037|PT|S71.122S|ICD10CM|Laceration with foreign body, left thigh, sequela|Laceration with foreign body, left thigh, sequela +C2856438|T037|AB|S71.129|ICD10CM|Laceration with foreign body, unspecified thigh|Laceration with foreign body, unspecified thigh +C2856438|T037|HT|S71.129|ICD10CM|Laceration with foreign body, unspecified thigh|Laceration with foreign body, unspecified thigh +C2856439|T037|AB|S71.129A|ICD10CM|Laceration with foreign body, unspecified thigh, init encntr|Laceration with foreign body, unspecified thigh, init encntr +C2856439|T037|PT|S71.129A|ICD10CM|Laceration with foreign body, unspecified thigh, initial encounter|Laceration with foreign body, unspecified thigh, initial encounter +C2856440|T037|AB|S71.129D|ICD10CM|Laceration with foreign body, unspecified thigh, subs encntr|Laceration with foreign body, unspecified thigh, subs encntr +C2856440|T037|PT|S71.129D|ICD10CM|Laceration with foreign body, unspecified thigh, subsequent encounter|Laceration with foreign body, unspecified thigh, subsequent encounter +C2856441|T037|AB|S71.129S|ICD10CM|Laceration with foreign body, unspecified thigh, sequela|Laceration with foreign body, unspecified thigh, sequela +C2856441|T037|PT|S71.129S|ICD10CM|Laceration with foreign body, unspecified thigh, sequela|Laceration with foreign body, unspecified thigh, sequela +C2856442|T037|AB|S71.13|ICD10CM|Puncture wound without foreign body of thigh|Puncture wound without foreign body of thigh +C2856442|T037|HT|S71.13|ICD10CM|Puncture wound without foreign body of thigh|Puncture wound without foreign body of thigh +C2856443|T037|AB|S71.131|ICD10CM|Puncture wound without foreign body, right thigh|Puncture wound without foreign body, right thigh +C2856443|T037|HT|S71.131|ICD10CM|Puncture wound without foreign body, right thigh|Puncture wound without foreign body, right thigh +C2856444|T037|AB|S71.131A|ICD10CM|Puncture wound w/o foreign body, right thigh, init encntr|Puncture wound w/o foreign body, right thigh, init encntr +C2856444|T037|PT|S71.131A|ICD10CM|Puncture wound without foreign body, right thigh, initial encounter|Puncture wound without foreign body, right thigh, initial encounter +C2856445|T037|AB|S71.131D|ICD10CM|Puncture wound w/o foreign body, right thigh, subs encntr|Puncture wound w/o foreign body, right thigh, subs encntr +C2856445|T037|PT|S71.131D|ICD10CM|Puncture wound without foreign body, right thigh, subsequent encounter|Puncture wound without foreign body, right thigh, subsequent encounter +C2856446|T037|AB|S71.131S|ICD10CM|Puncture wound without foreign body, right thigh, sequela|Puncture wound without foreign body, right thigh, sequela +C2856446|T037|PT|S71.131S|ICD10CM|Puncture wound without foreign body, right thigh, sequela|Puncture wound without foreign body, right thigh, sequela +C2856447|T037|AB|S71.132|ICD10CM|Puncture wound without foreign body, left thigh|Puncture wound without foreign body, left thigh +C2856447|T037|HT|S71.132|ICD10CM|Puncture wound without foreign body, left thigh|Puncture wound without foreign body, left thigh +C2856448|T037|AB|S71.132A|ICD10CM|Puncture wound without foreign body, left thigh, init encntr|Puncture wound without foreign body, left thigh, init encntr +C2856448|T037|PT|S71.132A|ICD10CM|Puncture wound without foreign body, left thigh, initial encounter|Puncture wound without foreign body, left thigh, initial encounter +C2856449|T037|AB|S71.132D|ICD10CM|Puncture wound without foreign body, left thigh, subs encntr|Puncture wound without foreign body, left thigh, subs encntr +C2856449|T037|PT|S71.132D|ICD10CM|Puncture wound without foreign body, left thigh, subsequent encounter|Puncture wound without foreign body, left thigh, subsequent encounter +C2856450|T037|AB|S71.132S|ICD10CM|Puncture wound without foreign body, left thigh, sequela|Puncture wound without foreign body, left thigh, sequela +C2856450|T037|PT|S71.132S|ICD10CM|Puncture wound without foreign body, left thigh, sequela|Puncture wound without foreign body, left thigh, sequela +C2856451|T037|AB|S71.139|ICD10CM|Puncture wound without foreign body, unspecified thigh|Puncture wound without foreign body, unspecified thigh +C2856451|T037|HT|S71.139|ICD10CM|Puncture wound without foreign body, unspecified thigh|Puncture wound without foreign body, unspecified thigh +C2856452|T037|AB|S71.139A|ICD10CM|Puncture wound without foreign body, unsp thigh, init encntr|Puncture wound without foreign body, unsp thigh, init encntr +C2856452|T037|PT|S71.139A|ICD10CM|Puncture wound without foreign body, unspecified thigh, initial encounter|Puncture wound without foreign body, unspecified thigh, initial encounter +C2856453|T037|AB|S71.139D|ICD10CM|Puncture wound without foreign body, unsp thigh, subs encntr|Puncture wound without foreign body, unsp thigh, subs encntr +C2856453|T037|PT|S71.139D|ICD10CM|Puncture wound without foreign body, unspecified thigh, subsequent encounter|Puncture wound without foreign body, unspecified thigh, subsequent encounter +C2856454|T037|AB|S71.139S|ICD10CM|Puncture wound without foreign body, unsp thigh, sequela|Puncture wound without foreign body, unsp thigh, sequela +C2856454|T037|PT|S71.139S|ICD10CM|Puncture wound without foreign body, unspecified thigh, sequela|Puncture wound without foreign body, unspecified thigh, sequela +C2856455|T037|HT|S71.14|ICD10CM|Puncture wound with foreign body of thigh|Puncture wound with foreign body of thigh +C2856455|T037|AB|S71.14|ICD10CM|Puncture wound with foreign body of thigh|Puncture wound with foreign body of thigh +C2856456|T037|AB|S71.141|ICD10CM|Puncture wound with foreign body, right thigh|Puncture wound with foreign body, right thigh +C2856456|T037|HT|S71.141|ICD10CM|Puncture wound with foreign body, right thigh|Puncture wound with foreign body, right thigh +C2856457|T037|AB|S71.141A|ICD10CM|Puncture wound with foreign body, right thigh, init encntr|Puncture wound with foreign body, right thigh, init encntr +C2856457|T037|PT|S71.141A|ICD10CM|Puncture wound with foreign body, right thigh, initial encounter|Puncture wound with foreign body, right thigh, initial encounter +C2856458|T037|AB|S71.141D|ICD10CM|Puncture wound with foreign body, right thigh, subs encntr|Puncture wound with foreign body, right thigh, subs encntr +C2856458|T037|PT|S71.141D|ICD10CM|Puncture wound with foreign body, right thigh, subsequent encounter|Puncture wound with foreign body, right thigh, subsequent encounter +C2856459|T037|AB|S71.141S|ICD10CM|Puncture wound with foreign body, right thigh, sequela|Puncture wound with foreign body, right thigh, sequela +C2856459|T037|PT|S71.141S|ICD10CM|Puncture wound with foreign body, right thigh, sequela|Puncture wound with foreign body, right thigh, sequela +C2856460|T037|AB|S71.142|ICD10CM|Puncture wound with foreign body, left thigh|Puncture wound with foreign body, left thigh +C2856460|T037|HT|S71.142|ICD10CM|Puncture wound with foreign body, left thigh|Puncture wound with foreign body, left thigh +C2856461|T037|AB|S71.142A|ICD10CM|Puncture wound with foreign body, left thigh, init encntr|Puncture wound with foreign body, left thigh, init encntr +C2856461|T037|PT|S71.142A|ICD10CM|Puncture wound with foreign body, left thigh, initial encounter|Puncture wound with foreign body, left thigh, initial encounter +C2856462|T037|AB|S71.142D|ICD10CM|Puncture wound with foreign body, left thigh, subs encntr|Puncture wound with foreign body, left thigh, subs encntr +C2856462|T037|PT|S71.142D|ICD10CM|Puncture wound with foreign body, left thigh, subsequent encounter|Puncture wound with foreign body, left thigh, subsequent encounter +C2856463|T037|AB|S71.142S|ICD10CM|Puncture wound with foreign body, left thigh, sequela|Puncture wound with foreign body, left thigh, sequela +C2856463|T037|PT|S71.142S|ICD10CM|Puncture wound with foreign body, left thigh, sequela|Puncture wound with foreign body, left thigh, sequela +C2856464|T037|AB|S71.149|ICD10CM|Puncture wound with foreign body, unspecified thigh|Puncture wound with foreign body, unspecified thigh +C2856464|T037|HT|S71.149|ICD10CM|Puncture wound with foreign body, unspecified thigh|Puncture wound with foreign body, unspecified thigh +C2856465|T037|AB|S71.149A|ICD10CM|Puncture wound with foreign body, unsp thigh, init encntr|Puncture wound with foreign body, unsp thigh, init encntr +C2856465|T037|PT|S71.149A|ICD10CM|Puncture wound with foreign body, unspecified thigh, initial encounter|Puncture wound with foreign body, unspecified thigh, initial encounter +C2856466|T037|AB|S71.149D|ICD10CM|Puncture wound with foreign body, unsp thigh, subs encntr|Puncture wound with foreign body, unsp thigh, subs encntr +C2856466|T037|PT|S71.149D|ICD10CM|Puncture wound with foreign body, unspecified thigh, subsequent encounter|Puncture wound with foreign body, unspecified thigh, subsequent encounter +C2856467|T037|AB|S71.149S|ICD10CM|Puncture wound with foreign body, unspecified thigh, sequela|Puncture wound with foreign body, unspecified thigh, sequela +C2856467|T037|PT|S71.149S|ICD10CM|Puncture wound with foreign body, unspecified thigh, sequela|Puncture wound with foreign body, unspecified thigh, sequela +C2083460|T033|ET|S71.15|ICD10CM|Bite of thigh NOS|Bite of thigh NOS +C2856468|T037|HT|S71.15|ICD10CM|Open bite of thigh|Open bite of thigh +C2856468|T037|AB|S71.15|ICD10CM|Open bite of thigh|Open bite of thigh +C2194841|T037|AB|S71.151|ICD10CM|Open bite, right thigh|Open bite, right thigh +C2194841|T037|HT|S71.151|ICD10CM|Open bite, right thigh|Open bite, right thigh +C2856469|T037|AB|S71.151A|ICD10CM|Open bite, right thigh, initial encounter|Open bite, right thigh, initial encounter +C2856469|T037|PT|S71.151A|ICD10CM|Open bite, right thigh, initial encounter|Open bite, right thigh, initial encounter +C2856470|T037|AB|S71.151D|ICD10CM|Open bite, right thigh, subsequent encounter|Open bite, right thigh, subsequent encounter +C2856470|T037|PT|S71.151D|ICD10CM|Open bite, right thigh, subsequent encounter|Open bite, right thigh, subsequent encounter +C2856471|T037|AB|S71.151S|ICD10CM|Open bite, right thigh, sequela|Open bite, right thigh, sequela +C2856471|T037|PT|S71.151S|ICD10CM|Open bite, right thigh, sequela|Open bite, right thigh, sequela +C2856472|T037|AB|S71.152|ICD10CM|Open bite, left thigh|Open bite, left thigh +C2856472|T037|HT|S71.152|ICD10CM|Open bite, left thigh|Open bite, left thigh +C2856473|T037|AB|S71.152A|ICD10CM|Open bite, left thigh, initial encounter|Open bite, left thigh, initial encounter +C2856473|T037|PT|S71.152A|ICD10CM|Open bite, left thigh, initial encounter|Open bite, left thigh, initial encounter +C2856474|T037|AB|S71.152D|ICD10CM|Open bite, left thigh, subsequent encounter|Open bite, left thigh, subsequent encounter +C2856474|T037|PT|S71.152D|ICD10CM|Open bite, left thigh, subsequent encounter|Open bite, left thigh, subsequent encounter +C2856475|T037|AB|S71.152S|ICD10CM|Open bite, left thigh, sequela|Open bite, left thigh, sequela +C2856475|T037|PT|S71.152S|ICD10CM|Open bite, left thigh, sequela|Open bite, left thigh, sequela +C2856476|T037|AB|S71.159|ICD10CM|Open bite, unspecified thigh|Open bite, unspecified thigh +C2856476|T037|HT|S71.159|ICD10CM|Open bite, unspecified thigh|Open bite, unspecified thigh +C2856477|T037|AB|S71.159A|ICD10CM|Open bite, unspecified thigh, initial encounter|Open bite, unspecified thigh, initial encounter +C2856477|T037|PT|S71.159A|ICD10CM|Open bite, unspecified thigh, initial encounter|Open bite, unspecified thigh, initial encounter +C2856478|T037|AB|S71.159D|ICD10CM|Open bite, unspecified thigh, subsequent encounter|Open bite, unspecified thigh, subsequent encounter +C2856478|T037|PT|S71.159D|ICD10CM|Open bite, unspecified thigh, subsequent encounter|Open bite, unspecified thigh, subsequent encounter +C2856479|T037|AB|S71.159S|ICD10CM|Open bite, unspecified thigh, sequela|Open bite, unspecified thigh, sequela +C2856479|T037|PT|S71.159S|ICD10CM|Open bite, unspecified thigh, sequela|Open bite, unspecified thigh, sequela +C0451914|T037|PT|S71.7|ICD10|Multiple open wounds of hip and thigh|Multiple open wounds of hip and thigh +C0495928|T037|PT|S71.8|ICD10|Open wound of other and unspecified parts of pelvic girdle|Open wound of other and unspecified parts of pelvic girdle +C0015802|T037|HT|S72|ICD10CM|Fracture of femur|Fracture of femur +C0015802|T037|AB|S72|ICD10CM|Fracture of femur|Fracture of femur +C0015802|T037|HT|S72|ICD10|Fracture of femur|Fracture of femur +C2856480|T037|AB|S72.0|ICD10CM|Fracture of head and neck of femur|Fracture of head and neck of femur +C2856480|T037|HT|S72.0|ICD10CM|Fracture of head and neck of femur|Fracture of head and neck of femur +C0015806|T037|PT|S72.0|ICD10|Fracture of neck of femur|Fracture of neck of femur +C0019557|T037|ET|S72.00|ICD10CM|Fracture of hip NOS|Fracture of hip NOS +C0015806|T037|ET|S72.00|ICD10CM|Fracture of neck of femur NOS|Fracture of neck of femur NOS +C0840675|T037|AB|S72.00|ICD10CM|Fracture of unspecified part of neck of femur|Fracture of unspecified part of neck of femur +C0840675|T037|HT|S72.00|ICD10CM|Fracture of unspecified part of neck of femur|Fracture of unspecified part of neck of femur +C2856481|T037|AB|S72.001|ICD10CM|Fracture of unspecified part of neck of right femur|Fracture of unspecified part of neck of right femur +C2856481|T037|HT|S72.001|ICD10CM|Fracture of unspecified part of neck of right femur|Fracture of unspecified part of neck of right femur +C2856482|T037|AB|S72.001A|ICD10CM|Fracture of unsp part of neck of right femur, init|Fracture of unsp part of neck of right femur, init +C2856482|T037|PT|S72.001A|ICD10CM|Fracture of unspecified part of neck of right femur, initial encounter for closed fracture|Fracture of unspecified part of neck of right femur, initial encounter for closed fracture +C2856483|T037|AB|S72.001B|ICD10CM|Fx unsp part of neck of r femur, init for opn fx type I/2|Fx unsp part of neck of r femur, init for opn fx type I/2 +C2856484|T037|AB|S72.001C|ICD10CM|Fx unsp part of neck of r femur, init for opn fx type 3A/B/C|Fx unsp part of neck of r femur, init for opn fx type 3A/B/C +C2856485|T037|AB|S72.001D|ICD10CM|Fx unsp part of nk of r femr, subs for clos fx w routn heal|Fx unsp part of nk of r femr, subs for clos fx w routn heal +C2856486|T037|AB|S72.001E|ICD10CM|Fx unsp prt of nk of r femr, 7thE|Fx unsp prt of nk of r femr, 7thE +C2856487|T037|AB|S72.001F|ICD10CM|Fx unsp prt of nk of r femr, 7thF|Fx unsp prt of nk of r femr, 7thF +C2856488|T037|AB|S72.001G|ICD10CM|Fx unsp part of nk of r femr, subs for clos fx w delay heal|Fx unsp part of nk of r femr, subs for clos fx w delay heal +C2856489|T037|AB|S72.001H|ICD10CM|Fx unsp prt of nk of r femr, 7thH|Fx unsp prt of nk of r femr, 7thH +C2856490|T037|AB|S72.001J|ICD10CM|Fx unsp prt of nk of r femr, 7thJ|Fx unsp prt of nk of r femr, 7thJ +C2856491|T037|AB|S72.001K|ICD10CM|Fx unsp part of neck of r femur, subs for clos fx w nonunion|Fx unsp part of neck of r femur, subs for clos fx w nonunion +C2856492|T037|AB|S72.001M|ICD10CM|Fx unsp prt of nk of r femr, 7thM|Fx unsp prt of nk of r femr, 7thM +C2856493|T037|AB|S72.001N|ICD10CM|Fx unsp prt of nk of r femr, 7thN|Fx unsp prt of nk of r femr, 7thN +C2856494|T037|AB|S72.001P|ICD10CM|Fx unsp part of neck of r femur, subs for clos fx w malunion|Fx unsp part of neck of r femur, subs for clos fx w malunion +C2856495|T037|AB|S72.001Q|ICD10CM|Fx unsp prt of nk of r femr, 7thQ|Fx unsp prt of nk of r femr, 7thQ +C2856496|T037|AB|S72.001R|ICD10CM|Fx unsp prt of nk of r femr, 7thR|Fx unsp prt of nk of r femr, 7thR +C2856497|T037|AB|S72.001S|ICD10CM|Fracture of unspecified part of neck of right femur, sequela|Fracture of unspecified part of neck of right femur, sequela +C2856497|T037|PT|S72.001S|ICD10CM|Fracture of unspecified part of neck of right femur, sequela|Fracture of unspecified part of neck of right femur, sequela +C2856498|T037|AB|S72.002|ICD10CM|Fracture of unspecified part of neck of left femur|Fracture of unspecified part of neck of left femur +C2856498|T037|HT|S72.002|ICD10CM|Fracture of unspecified part of neck of left femur|Fracture of unspecified part of neck of left femur +C2856499|T037|AB|S72.002A|ICD10CM|Fracture of unsp part of neck of left femur, init|Fracture of unsp part of neck of left femur, init +C2856499|T037|PT|S72.002A|ICD10CM|Fracture of unspecified part of neck of left femur, initial encounter for closed fracture|Fracture of unspecified part of neck of left femur, initial encounter for closed fracture +C2856500|T037|PT|S72.002B|ICD10CM|Fracture of unspecified part of neck of left femur, initial encounter for open fracture type I or II|Fracture of unspecified part of neck of left femur, initial encounter for open fracture type I or II +C2856500|T037|AB|S72.002B|ICD10CM|Fx unsp part of neck of left femur, init for opn fx type I/2|Fx unsp part of neck of left femur, init for opn fx type I/2 +C2856501|T037|AB|S72.002C|ICD10CM|Fx unsp part of neck of l femur, init for opn fx type 3A/B/C|Fx unsp part of neck of l femur, init for opn fx type 3A/B/C +C2856502|T037|AB|S72.002D|ICD10CM|Fx unsp part of nk of l femr, subs for clos fx w routn heal|Fx unsp part of nk of l femr, subs for clos fx w routn heal +C2856503|T037|AB|S72.002E|ICD10CM|Fx unsp prt of nk of l femr, 7thE|Fx unsp prt of nk of l femr, 7thE +C2856504|T037|AB|S72.002F|ICD10CM|Fx unsp prt of nk of l femr, 7thF|Fx unsp prt of nk of l femr, 7thF +C2856505|T037|AB|S72.002G|ICD10CM|Fx unsp part of nk of l femr, subs for clos fx w delay heal|Fx unsp part of nk of l femr, subs for clos fx w delay heal +C2856506|T037|AB|S72.002H|ICD10CM|Fx unsp prt of nk of l femr, 7thH|Fx unsp prt of nk of l femr, 7thH +C2856507|T037|AB|S72.002J|ICD10CM|Fx unsp prt of nk of l femr, 7thJ|Fx unsp prt of nk of l femr, 7thJ +C2856508|T037|AB|S72.002K|ICD10CM|Fx unsp part of neck of l femur, subs for clos fx w nonunion|Fx unsp part of neck of l femur, subs for clos fx w nonunion +C2856509|T037|AB|S72.002M|ICD10CM|Fx unsp prt of nk of l femr, 7thM|Fx unsp prt of nk of l femr, 7thM +C2856510|T037|AB|S72.002N|ICD10CM|Fx unsp prt of nk of l femr, 7thN|Fx unsp prt of nk of l femr, 7thN +C2856511|T037|AB|S72.002P|ICD10CM|Fx unsp part of neck of l femur, subs for clos fx w malunion|Fx unsp part of neck of l femur, subs for clos fx w malunion +C2856512|T037|AB|S72.002Q|ICD10CM|Fx unsp prt of nk of l femr, 7thQ|Fx unsp prt of nk of l femr, 7thQ +C2856513|T037|AB|S72.002R|ICD10CM|Fx unsp prt of nk of l femr, 7thR|Fx unsp prt of nk of l femr, 7thR +C2856514|T037|AB|S72.002S|ICD10CM|Fracture of unspecified part of neck of left femur, sequela|Fracture of unspecified part of neck of left femur, sequela +C2856514|T037|PT|S72.002S|ICD10CM|Fracture of unspecified part of neck of left femur, sequela|Fracture of unspecified part of neck of left femur, sequela +C2856515|T037|AB|S72.009|ICD10CM|Fracture of unspecified part of neck of unspecified femur|Fracture of unspecified part of neck of unspecified femur +C2856515|T037|HT|S72.009|ICD10CM|Fracture of unspecified part of neck of unspecified femur|Fracture of unspecified part of neck of unspecified femur +C2856516|T037|AB|S72.009A|ICD10CM|Fracture of unsp part of neck of unsp femur, init|Fracture of unsp part of neck of unsp femur, init +C2856516|T037|PT|S72.009A|ICD10CM|Fracture of unspecified part of neck of unspecified femur, initial encounter for closed fracture|Fracture of unspecified part of neck of unspecified femur, initial encounter for closed fracture +C2856517|T037|AB|S72.009B|ICD10CM|Fx unsp part of neck of unsp femur, init for opn fx type I/2|Fx unsp part of neck of unsp femur, init for opn fx type I/2 +C2856518|T037|AB|S72.009C|ICD10CM|Fx unsp part of nk of unsp femr, init for opn fx type 3A/B/C|Fx unsp part of nk of unsp femr, init for opn fx type 3A/B/C +C2856519|T037|AB|S72.009D|ICD10CM|Fx unsp prt of nk of unsp femr, 7thD|Fx unsp prt of nk of unsp femr, 7thD +C2856520|T037|AB|S72.009E|ICD10CM|Fx unsp prt of nk of unsp femr, 7thE|Fx unsp prt of nk of unsp femr, 7thE +C2856521|T037|AB|S72.009F|ICD10CM|Fx unsp prt of nk of unsp femr, 7thF|Fx unsp prt of nk of unsp femr, 7thF +C2856522|T037|AB|S72.009G|ICD10CM|Fx unsp prt of nk of unsp femr, 7thG|Fx unsp prt of nk of unsp femr, 7thG +C2856523|T037|AB|S72.009H|ICD10CM|Fx unsp prt of nk of unsp femr, 7thH|Fx unsp prt of nk of unsp femr, 7thH +C2856524|T037|AB|S72.009J|ICD10CM|Fx unsp prt of nk of unsp femr, 7thJ|Fx unsp prt of nk of unsp femr, 7thJ +C2856525|T037|AB|S72.009K|ICD10CM|Fx unsp part of nk of unsp femr, subs for clos fx w nonunion|Fx unsp part of nk of unsp femr, subs for clos fx w nonunion +C2856526|T037|AB|S72.009M|ICD10CM|Fx unsp prt of nk of unsp femr, 7thM|Fx unsp prt of nk of unsp femr, 7thM +C2856527|T037|AB|S72.009N|ICD10CM|Fx unsp prt of nk of unsp femr, 7thN|Fx unsp prt of nk of unsp femr, 7thN +C2856528|T037|AB|S72.009P|ICD10CM|Fx unsp part of nk of unsp femr, subs for clos fx w malunion|Fx unsp part of nk of unsp femr, subs for clos fx w malunion +C2856529|T037|AB|S72.009Q|ICD10CM|Fx unsp prt of nk of unsp femr, 7thQ|Fx unsp prt of nk of unsp femr, 7thQ +C2856530|T037|AB|S72.009R|ICD10CM|Fx unsp prt of nk of unsp femr, 7thR|Fx unsp prt of nk of unsp femr, 7thR +C2856531|T037|AB|S72.009S|ICD10CM|Fracture of unsp part of neck of unspecified femur, sequela|Fracture of unsp part of neck of unspecified femur, sequela +C2856531|T037|PT|S72.009S|ICD10CM|Fracture of unspecified part of neck of unspecified femur, sequela|Fracture of unspecified part of neck of unspecified femur, sequela +C0347808|T037|ET|S72.01|ICD10CM|Subcapital fracture of femur|Subcapital fracture of femur +C2856532|T037|AB|S72.01|ICD10CM|Unspecified intracapsular fracture of femur|Unspecified intracapsular fracture of femur +C2856532|T037|HT|S72.01|ICD10CM|Unspecified intracapsular fracture of femur|Unspecified intracapsular fracture of femur +C2856533|T037|AB|S72.011|ICD10CM|Unspecified intracapsular fracture of right femur|Unspecified intracapsular fracture of right femur +C2856533|T037|HT|S72.011|ICD10CM|Unspecified intracapsular fracture of right femur|Unspecified intracapsular fracture of right femur +C2856534|T037|AB|S72.011A|ICD10CM|Unsp intracapsular fracture of right femur, init for clos fx|Unsp intracapsular fracture of right femur, init for clos fx +C2856534|T037|PT|S72.011A|ICD10CM|Unspecified intracapsular fracture of right femur, initial encounter for closed fracture|Unspecified intracapsular fracture of right femur, initial encounter for closed fracture +C2856535|T037|AB|S72.011B|ICD10CM|Unsp intracap fx right femur, init for opn fx type I/2|Unsp intracap fx right femur, init for opn fx type I/2 +C2856535|T037|PT|S72.011B|ICD10CM|Unspecified intracapsular fracture of right femur, initial encounter for open fracture type I or II|Unspecified intracapsular fracture of right femur, initial encounter for open fracture type I or II +C2856536|T037|AB|S72.011C|ICD10CM|Unsp intracap fx right femur, init for opn fx type 3A/B/C|Unsp intracap fx right femur, init for opn fx type 3A/B/C +C2856537|T037|AB|S72.011D|ICD10CM|Unsp intracap fx right femur, subs for clos fx w routn heal|Unsp intracap fx right femur, subs for clos fx w routn heal +C2856538|T037|AB|S72.011E|ICD10CM|Unsp intracap fx r femr, 7thE|Unsp intracap fx r femr, 7thE +C2856539|T037|AB|S72.011F|ICD10CM|Unsp intracap fx r femr, 7thF|Unsp intracap fx r femr, 7thF +C2856540|T037|AB|S72.011G|ICD10CM|Unsp intracap fx right femur, subs for clos fx w delay heal|Unsp intracap fx right femur, subs for clos fx w delay heal +C2856541|T037|AB|S72.011H|ICD10CM|Unsp intracap fx r femr, 7thH|Unsp intracap fx r femr, 7thH +C2856542|T037|AB|S72.011J|ICD10CM|Unsp intracap fx r femr, 7thJ|Unsp intracap fx r femr, 7thJ +C2856543|T037|AB|S72.011K|ICD10CM|Unsp intracap fx right femur, subs for clos fx w nonunion|Unsp intracap fx right femur, subs for clos fx w nonunion +C2856544|T037|AB|S72.011M|ICD10CM|Unsp intracap fx r femr, subs for opn fx type I/2 w nonunion|Unsp intracap fx r femr, subs for opn fx type I/2 w nonunion +C2856545|T037|AB|S72.011N|ICD10CM|Unsp intracap fx r femr, 7thN|Unsp intracap fx r femr, 7thN +C2856546|T037|AB|S72.011P|ICD10CM|Unsp intracap fx right femur, subs for clos fx w malunion|Unsp intracap fx right femur, subs for clos fx w malunion +C2856547|T037|AB|S72.011Q|ICD10CM|Unsp intracap fx r femr, subs for opn fx type I/2 w malunion|Unsp intracap fx r femr, subs for opn fx type I/2 w malunion +C2856548|T037|AB|S72.011R|ICD10CM|Unsp intracap fx r femr, 7thR|Unsp intracap fx r femr, 7thR +C2856549|T037|AB|S72.011S|ICD10CM|Unspecified intracapsular fracture of right femur, sequela|Unspecified intracapsular fracture of right femur, sequela +C2856549|T037|PT|S72.011S|ICD10CM|Unspecified intracapsular fracture of right femur, sequela|Unspecified intracapsular fracture of right femur, sequela +C2856550|T037|AB|S72.012|ICD10CM|Unspecified intracapsular fracture of left femur|Unspecified intracapsular fracture of left femur +C2856550|T037|HT|S72.012|ICD10CM|Unspecified intracapsular fracture of left femur|Unspecified intracapsular fracture of left femur +C2856551|T037|AB|S72.012A|ICD10CM|Unsp intracapsular fracture of left femur, init for clos fx|Unsp intracapsular fracture of left femur, init for clos fx +C2856551|T037|PT|S72.012A|ICD10CM|Unspecified intracapsular fracture of left femur, initial encounter for closed fracture|Unspecified intracapsular fracture of left femur, initial encounter for closed fracture +C2856552|T037|AB|S72.012B|ICD10CM|Unsp intracap fx left femur, init for opn fx type I/2|Unsp intracap fx left femur, init for opn fx type I/2 +C2856552|T037|PT|S72.012B|ICD10CM|Unspecified intracapsular fracture of left femur, initial encounter for open fracture type I or II|Unspecified intracapsular fracture of left femur, initial encounter for open fracture type I or II +C2856553|T037|AB|S72.012C|ICD10CM|Unsp intracap fx left femur, init for opn fx type 3A/B/C|Unsp intracap fx left femur, init for opn fx type 3A/B/C +C2856554|T037|AB|S72.012D|ICD10CM|Unsp intracap fx left femur, subs for clos fx w routn heal|Unsp intracap fx left femur, subs for clos fx w routn heal +C2856555|T037|AB|S72.012E|ICD10CM|Unsp intracap fx l femr, 7thE|Unsp intracap fx l femr, 7thE +C2856556|T037|AB|S72.012F|ICD10CM|Unsp intracap fx l femr, 7thF|Unsp intracap fx l femr, 7thF +C2856557|T037|AB|S72.012G|ICD10CM|Unsp intracap fx left femur, subs for clos fx w delay heal|Unsp intracap fx left femur, subs for clos fx w delay heal +C2856558|T037|AB|S72.012H|ICD10CM|Unsp intracap fx l femr, 7thH|Unsp intracap fx l femr, 7thH +C2856559|T037|AB|S72.012J|ICD10CM|Unsp intracap fx l femr, 7thJ|Unsp intracap fx l femr, 7thJ +C2856560|T037|AB|S72.012K|ICD10CM|Unsp intracap fx left femur, subs for clos fx w nonunion|Unsp intracap fx left femur, subs for clos fx w nonunion +C2856561|T037|AB|S72.012M|ICD10CM|Unsp intracap fx l femr, subs for opn fx type I/2 w nonunion|Unsp intracap fx l femr, subs for opn fx type I/2 w nonunion +C2856562|T037|AB|S72.012N|ICD10CM|Unsp intracap fx l femr, 7thN|Unsp intracap fx l femr, 7thN +C2856563|T037|AB|S72.012P|ICD10CM|Unsp intracap fx left femur, subs for clos fx w malunion|Unsp intracap fx left femur, subs for clos fx w malunion +C2856564|T037|AB|S72.012Q|ICD10CM|Unsp intracap fx l femr, subs for opn fx type I/2 w malunion|Unsp intracap fx l femr, subs for opn fx type I/2 w malunion +C2856565|T037|AB|S72.012R|ICD10CM|Unsp intracap fx l femr, 7thR|Unsp intracap fx l femr, 7thR +C2856566|T037|AB|S72.012S|ICD10CM|Unspecified intracapsular fracture of left femur, sequela|Unspecified intracapsular fracture of left femur, sequela +C2856566|T037|PT|S72.012S|ICD10CM|Unspecified intracapsular fracture of left femur, sequela|Unspecified intracapsular fracture of left femur, sequela +C2856567|T037|AB|S72.019|ICD10CM|Unspecified intracapsular fracture of unspecified femur|Unspecified intracapsular fracture of unspecified femur +C2856567|T037|HT|S72.019|ICD10CM|Unspecified intracapsular fracture of unspecified femur|Unspecified intracapsular fracture of unspecified femur +C2856568|T037|AB|S72.019A|ICD10CM|Unsp intracapsular fracture of unsp femur, init for clos fx|Unsp intracapsular fracture of unsp femur, init for clos fx +C2856568|T037|PT|S72.019A|ICD10CM|Unspecified intracapsular fracture of unspecified femur, initial encounter for closed fracture|Unspecified intracapsular fracture of unspecified femur, initial encounter for closed fracture +C2856569|T037|AB|S72.019B|ICD10CM|Unsp intracap fx unsp femur, init for opn fx type I/2|Unsp intracap fx unsp femur, init for opn fx type I/2 +C2856570|T037|AB|S72.019C|ICD10CM|Unsp intracap fx unsp femur, init for opn fx type 3A/B/C|Unsp intracap fx unsp femur, init for opn fx type 3A/B/C +C2856571|T037|AB|S72.019D|ICD10CM|Unsp intracap fx unsp femur, subs for clos fx w routn heal|Unsp intracap fx unsp femur, subs for clos fx w routn heal +C2856572|T037|AB|S72.019E|ICD10CM|Unsp intracap fx unsp femr, 7thE|Unsp intracap fx unsp femr, 7thE +C2856573|T037|AB|S72.019F|ICD10CM|Unsp intracap fx unsp femr, 7thF|Unsp intracap fx unsp femr, 7thF +C2856574|T037|AB|S72.019G|ICD10CM|Unsp intracap fx unsp femur, subs for clos fx w delay heal|Unsp intracap fx unsp femur, subs for clos fx w delay heal +C2856575|T037|AB|S72.019H|ICD10CM|Unsp intracap fx unsp femr, 7thH|Unsp intracap fx unsp femr, 7thH +C2856576|T037|AB|S72.019J|ICD10CM|Unsp intracap fx unsp femr, 7thJ|Unsp intracap fx unsp femr, 7thJ +C2856577|T037|AB|S72.019K|ICD10CM|Unsp intracap fx unsp femur, subs for clos fx w nonunion|Unsp intracap fx unsp femur, subs for clos fx w nonunion +C2856578|T037|AB|S72.019M|ICD10CM|Unsp intracap fx unsp femr, 7thM|Unsp intracap fx unsp femr, 7thM +C2856579|T037|AB|S72.019N|ICD10CM|Unsp intracap fx unsp femr, 7thN|Unsp intracap fx unsp femr, 7thN +C2856580|T037|AB|S72.019P|ICD10CM|Unsp intracap fx unsp femur, subs for clos fx w malunion|Unsp intracap fx unsp femur, subs for clos fx w malunion +C2856581|T037|AB|S72.019Q|ICD10CM|Unsp intracap fx unsp femr, 7thQ|Unsp intracap fx unsp femr, 7thQ +C2856582|T037|AB|S72.019R|ICD10CM|Unsp intracap fx unsp femr, 7thR|Unsp intracap fx unsp femr, 7thR +C2856583|T037|AB|S72.019S|ICD10CM|Unsp intracapsular fracture of unspecified femur, sequela|Unsp intracapsular fracture of unspecified femur, sequela +C2856583|T037|PT|S72.019S|ICD10CM|Unspecified intracapsular fracture of unspecified femur, sequela|Unspecified intracapsular fracture of unspecified femur, sequela +C0840677|T037|HT|S72.02|ICD10CM|Fracture of epiphysis (separation) (upper) of femur|Fracture of epiphysis (separation) (upper) of femur +C0840677|T037|AB|S72.02|ICD10CM|Fracture of epiphysis (separation) (upper) of femur|Fracture of epiphysis (separation) (upper) of femur +C2856584|T037|ET|S72.02|ICD10CM|Transepiphyseal fracture of femur|Transepiphyseal fracture of femur +C2856585|T037|AB|S72.021|ICD10CM|Disp fx of epiphysis (separation) (upper) of right femur|Disp fx of epiphysis (separation) (upper) of right femur +C2856585|T037|HT|S72.021|ICD10CM|Displaced fracture of epiphysis (separation) (upper) of right femur|Displaced fracture of epiphysis (separation) (upper) of right femur +C2856586|T037|AB|S72.021A|ICD10CM|Disp fx of epiphysis (separation) (upper) of r femur, init|Disp fx of epiphysis (separation) (upper) of r femur, init +C2856587|T037|AB|S72.021B|ICD10CM|Disp fx of epiphy (separation) (upper) of r femr, 7thB|Disp fx of epiphy (separation) (upper) of r femr, 7thB +C2856588|T037|AB|S72.021C|ICD10CM|Disp fx of epiphy (separation) (upper) of r femr, 7thC|Disp fx of epiphy (separation) (upper) of r femr, 7thC +C2856589|T037|AB|S72.021D|ICD10CM|Disp fx of epiphy (separation) (upper) of r femr, 7thD|Disp fx of epiphy (separation) (upper) of r femr, 7thD +C2856590|T037|AB|S72.021E|ICD10CM|Disp fx of epiphy (separation) (upper) of r femr, 7thE|Disp fx of epiphy (separation) (upper) of r femr, 7thE +C2856591|T037|AB|S72.021F|ICD10CM|Disp fx of epiphy (separation) (upper) of r femr, 7thF|Disp fx of epiphy (separation) (upper) of r femr, 7thF +C2856592|T037|AB|S72.021G|ICD10CM|Disp fx of epiphy (separation) (upper) of r femr, 7thG|Disp fx of epiphy (separation) (upper) of r femr, 7thG +C2856593|T037|AB|S72.021H|ICD10CM|Disp fx of epiphy (separation) (upper) of r femr, 7thH|Disp fx of epiphy (separation) (upper) of r femr, 7thH +C2856594|T037|AB|S72.021J|ICD10CM|Disp fx of epiphy (separation) (upper) of r femr, 7thJ|Disp fx of epiphy (separation) (upper) of r femr, 7thJ +C2856595|T037|AB|S72.021K|ICD10CM|Disp fx of epiphy (separation) (upper) of r femr, 7thK|Disp fx of epiphy (separation) (upper) of r femr, 7thK +C2856596|T037|AB|S72.021M|ICD10CM|Disp fx of epiphy (separation) (upper) of r femr, 7thM|Disp fx of epiphy (separation) (upper) of r femr, 7thM +C2856597|T037|AB|S72.021N|ICD10CM|Disp fx of epiphy (separation) (upper) of r femr, 7thN|Disp fx of epiphy (separation) (upper) of r femr, 7thN +C2856598|T037|AB|S72.021P|ICD10CM|Disp fx of epiphy (separation) (upper) of r femr, 7thP|Disp fx of epiphy (separation) (upper) of r femr, 7thP +C2856599|T037|AB|S72.021Q|ICD10CM|Disp fx of epiphy (separation) (upper) of r femr, 7thQ|Disp fx of epiphy (separation) (upper) of r femr, 7thQ +C2856600|T037|AB|S72.021R|ICD10CM|Disp fx of epiphy (separation) (upper) of r femr, 7thR|Disp fx of epiphy (separation) (upper) of r femr, 7thR +C2856601|T037|AB|S72.021S|ICD10CM|Disp fx of epiphy (separation) (upper) of r femur, sequela|Disp fx of epiphy (separation) (upper) of r femur, sequela +C2856601|T037|PT|S72.021S|ICD10CM|Displaced fracture of epiphysis (separation) (upper) of right femur, sequela|Displaced fracture of epiphysis (separation) (upper) of right femur, sequela +C2856602|T037|AB|S72.022|ICD10CM|Disp fx of epiphysis (separation) (upper) of left femur|Disp fx of epiphysis (separation) (upper) of left femur +C2856602|T037|HT|S72.022|ICD10CM|Displaced fracture of epiphysis (separation) (upper) of left femur|Displaced fracture of epiphysis (separation) (upper) of left femur +C2856603|T037|AB|S72.022A|ICD10CM|Disp fx of epiphysis (separation) (upper) of l femur, init|Disp fx of epiphysis (separation) (upper) of l femur, init +C2856604|T037|AB|S72.022B|ICD10CM|Disp fx of epiphy (separation) (upper) of l femr, 7thB|Disp fx of epiphy (separation) (upper) of l femr, 7thB +C2856605|T037|AB|S72.022C|ICD10CM|Disp fx of epiphy (separation) (upper) of l femr, 7thC|Disp fx of epiphy (separation) (upper) of l femr, 7thC +C2856606|T037|AB|S72.022D|ICD10CM|Disp fx of epiphy (separation) (upper) of l femr, 7thD|Disp fx of epiphy (separation) (upper) of l femr, 7thD +C2856607|T037|AB|S72.022E|ICD10CM|Disp fx of epiphy (separation) (upper) of l femr, 7thE|Disp fx of epiphy (separation) (upper) of l femr, 7thE +C2856608|T037|AB|S72.022F|ICD10CM|Disp fx of epiphy (separation) (upper) of l femr, 7thF|Disp fx of epiphy (separation) (upper) of l femr, 7thF +C2856609|T037|AB|S72.022G|ICD10CM|Disp fx of epiphy (separation) (upper) of l femr, 7thG|Disp fx of epiphy (separation) (upper) of l femr, 7thG +C2856610|T037|AB|S72.022H|ICD10CM|Disp fx of epiphy (separation) (upper) of l femr, 7thH|Disp fx of epiphy (separation) (upper) of l femr, 7thH +C2856611|T037|AB|S72.022J|ICD10CM|Disp fx of epiphy (separation) (upper) of l femr, 7thJ|Disp fx of epiphy (separation) (upper) of l femr, 7thJ +C2856612|T037|AB|S72.022K|ICD10CM|Disp fx of epiphy (separation) (upper) of l femr, 7thK|Disp fx of epiphy (separation) (upper) of l femr, 7thK +C2856613|T037|AB|S72.022M|ICD10CM|Disp fx of epiphy (separation) (upper) of l femr, 7thM|Disp fx of epiphy (separation) (upper) of l femr, 7thM +C2856614|T037|AB|S72.022N|ICD10CM|Disp fx of epiphy (separation) (upper) of l femr, 7thN|Disp fx of epiphy (separation) (upper) of l femr, 7thN +C2856615|T037|AB|S72.022P|ICD10CM|Disp fx of epiphy (separation) (upper) of l femr, 7thP|Disp fx of epiphy (separation) (upper) of l femr, 7thP +C2856616|T037|AB|S72.022Q|ICD10CM|Disp fx of epiphy (separation) (upper) of l femr, 7thQ|Disp fx of epiphy (separation) (upper) of l femr, 7thQ +C2856617|T037|AB|S72.022R|ICD10CM|Disp fx of epiphy (separation) (upper) of l femr, 7thR|Disp fx of epiphy (separation) (upper) of l femr, 7thR +C2856618|T037|AB|S72.022S|ICD10CM|Disp fx of epiphy (separation) (upper) of l femur, sequela|Disp fx of epiphy (separation) (upper) of l femur, sequela +C2856618|T037|PT|S72.022S|ICD10CM|Displaced fracture of epiphysis (separation) (upper) of left femur, sequela|Displaced fracture of epiphysis (separation) (upper) of left femur, sequela +C2856619|T037|AB|S72.023|ICD10CM|Disp fx of epiphysis (separation) (upper) of unsp femur|Disp fx of epiphysis (separation) (upper) of unsp femur +C2856619|T037|HT|S72.023|ICD10CM|Displaced fracture of epiphysis (separation) (upper) of unspecified femur|Displaced fracture of epiphysis (separation) (upper) of unspecified femur +C2856620|T037|AB|S72.023A|ICD10CM|Disp fx of epiphy (separation) (upper) of unsp femur, init|Disp fx of epiphy (separation) (upper) of unsp femur, init +C2856621|T037|AB|S72.023B|ICD10CM|Disp fx of epiphy (separation) (upper) of unsp femr, 7thB|Disp fx of epiphy (separation) (upper) of unsp femr, 7thB +C2856622|T037|AB|S72.023C|ICD10CM|Disp fx of epiphy (separation) (upper) of unsp femr, 7thC|Disp fx of epiphy (separation) (upper) of unsp femr, 7thC +C2856623|T037|AB|S72.023D|ICD10CM|Disp fx of epiphy (separation) (upper) of unsp femr, 7thD|Disp fx of epiphy (separation) (upper) of unsp femr, 7thD +C2856624|T037|AB|S72.023E|ICD10CM|Disp fx of epiphy (separation) (upper) of unsp femr, 7thE|Disp fx of epiphy (separation) (upper) of unsp femr, 7thE +C2856625|T037|AB|S72.023F|ICD10CM|Disp fx of epiphy (separation) (upper) of unsp femr, 7thF|Disp fx of epiphy (separation) (upper) of unsp femr, 7thF +C2856626|T037|AB|S72.023G|ICD10CM|Disp fx of epiphy (separation) (upper) of unsp femr, 7thG|Disp fx of epiphy (separation) (upper) of unsp femr, 7thG +C2856627|T037|AB|S72.023H|ICD10CM|Disp fx of epiphy (separation) (upper) of unsp femr, 7thH|Disp fx of epiphy (separation) (upper) of unsp femr, 7thH +C2856628|T037|AB|S72.023J|ICD10CM|Disp fx of epiphy (separation) (upper) of unsp femr, 7thJ|Disp fx of epiphy (separation) (upper) of unsp femr, 7thJ +C2856629|T037|AB|S72.023K|ICD10CM|Disp fx of epiphy (separation) (upper) of unsp femr, 7thK|Disp fx of epiphy (separation) (upper) of unsp femr, 7thK +C2856630|T037|AB|S72.023M|ICD10CM|Disp fx of epiphy (separation) (upper) of unsp femr, 7thM|Disp fx of epiphy (separation) (upper) of unsp femr, 7thM +C2856631|T037|AB|S72.023N|ICD10CM|Disp fx of epiphy (separation) (upper) of unsp femr, 7thN|Disp fx of epiphy (separation) (upper) of unsp femr, 7thN +C2856632|T037|AB|S72.023P|ICD10CM|Disp fx of epiphy (separation) (upper) of unsp femr, 7thP|Disp fx of epiphy (separation) (upper) of unsp femr, 7thP +C2856633|T037|AB|S72.023Q|ICD10CM|Disp fx of epiphy (separation) (upper) of unsp femr, 7thQ|Disp fx of epiphy (separation) (upper) of unsp femr, 7thQ +C2856634|T037|AB|S72.023R|ICD10CM|Disp fx of epiphy (separation) (upper) of unsp femr, 7thR|Disp fx of epiphy (separation) (upper) of unsp femr, 7thR +C2856635|T037|AB|S72.023S|ICD10CM|Disp fx of epiphy (separation) (upper) of unsp femur, sqla|Disp fx of epiphy (separation) (upper) of unsp femur, sqla +C2856635|T037|PT|S72.023S|ICD10CM|Displaced fracture of epiphysis (separation) (upper) of unspecified femur, sequela|Displaced fracture of epiphysis (separation) (upper) of unspecified femur, sequela +C2856636|T037|AB|S72.024|ICD10CM|Nondisp fx of epiphysis (separation) (upper) of right femur|Nondisp fx of epiphysis (separation) (upper) of right femur +C2856636|T037|HT|S72.024|ICD10CM|Nondisplaced fracture of epiphysis (separation) (upper) of right femur|Nondisplaced fracture of epiphysis (separation) (upper) of right femur +C2856637|T037|AB|S72.024A|ICD10CM|Nondisp fx of epiphy (separation) (upper) of r femur, init|Nondisp fx of epiphy (separation) (upper) of r femur, init +C2856638|T037|AB|S72.024B|ICD10CM|Nondisp fx of epiphy (separation) (upper) of r femr, 7thB|Nondisp fx of epiphy (separation) (upper) of r femr, 7thB +C2856639|T037|AB|S72.024C|ICD10CM|Nondisp fx of epiphy (separation) (upper) of r femr, 7thC|Nondisp fx of epiphy (separation) (upper) of r femr, 7thC +C2856640|T037|AB|S72.024D|ICD10CM|Nondisp fx of epiphy (separation) (upper) of r femr, 7thD|Nondisp fx of epiphy (separation) (upper) of r femr, 7thD +C2856641|T037|AB|S72.024E|ICD10CM|Nondisp fx of epiphy (separation) (upper) of r femr, 7thE|Nondisp fx of epiphy (separation) (upper) of r femr, 7thE +C2856642|T037|AB|S72.024F|ICD10CM|Nondisp fx of epiphy (separation) (upper) of r femr, 7thF|Nondisp fx of epiphy (separation) (upper) of r femr, 7thF +C2856643|T037|AB|S72.024G|ICD10CM|Nondisp fx of epiphy (separation) (upper) of r femr, 7thG|Nondisp fx of epiphy (separation) (upper) of r femr, 7thG +C2856644|T037|AB|S72.024H|ICD10CM|Nondisp fx of epiphy (separation) (upper) of r femr, 7thH|Nondisp fx of epiphy (separation) (upper) of r femr, 7thH +C2856645|T037|AB|S72.024J|ICD10CM|Nondisp fx of epiphy (separation) (upper) of r femr, 7thJ|Nondisp fx of epiphy (separation) (upper) of r femr, 7thJ +C2856646|T037|AB|S72.024K|ICD10CM|Nondisp fx of epiphy (separation) (upper) of r femr, 7thK|Nondisp fx of epiphy (separation) (upper) of r femr, 7thK +C2856647|T037|AB|S72.024M|ICD10CM|Nondisp fx of epiphy (separation) (upper) of r femr, 7thM|Nondisp fx of epiphy (separation) (upper) of r femr, 7thM +C2856648|T037|AB|S72.024N|ICD10CM|Nondisp fx of epiphy (separation) (upper) of r femr, 7thN|Nondisp fx of epiphy (separation) (upper) of r femr, 7thN +C2856649|T037|AB|S72.024P|ICD10CM|Nondisp fx of epiphy (separation) (upper) of r femr, 7thP|Nondisp fx of epiphy (separation) (upper) of r femr, 7thP +C2856650|T037|AB|S72.024Q|ICD10CM|Nondisp fx of epiphy (separation) (upper) of r femr, 7thQ|Nondisp fx of epiphy (separation) (upper) of r femr, 7thQ +C2856651|T037|AB|S72.024R|ICD10CM|Nondisp fx of epiphy (separation) (upper) of r femr, 7thR|Nondisp fx of epiphy (separation) (upper) of r femr, 7thR +C2856652|T037|AB|S72.024S|ICD10CM|Nondisp fx of epiphy (separation) (upper) of r femur, sqla|Nondisp fx of epiphy (separation) (upper) of r femur, sqla +C2856652|T037|PT|S72.024S|ICD10CM|Nondisplaced fracture of epiphysis (separation) (upper) of right femur, sequela|Nondisplaced fracture of epiphysis (separation) (upper) of right femur, sequela +C2856653|T037|AB|S72.025|ICD10CM|Nondisp fx of epiphysis (separation) (upper) of left femur|Nondisp fx of epiphysis (separation) (upper) of left femur +C2856653|T037|HT|S72.025|ICD10CM|Nondisplaced fracture of epiphysis (separation) (upper) of left femur|Nondisplaced fracture of epiphysis (separation) (upper) of left femur +C2856654|T037|AB|S72.025A|ICD10CM|Nondisp fx of epiphy (separation) (upper) of l femur, init|Nondisp fx of epiphy (separation) (upper) of l femur, init +C2856655|T037|AB|S72.025B|ICD10CM|Nondisp fx of epiphy (separation) (upper) of l femr, 7thB|Nondisp fx of epiphy (separation) (upper) of l femr, 7thB +C2856656|T037|AB|S72.025C|ICD10CM|Nondisp fx of epiphy (separation) (upper) of l femr, 7thC|Nondisp fx of epiphy (separation) (upper) of l femr, 7thC +C2856657|T037|AB|S72.025D|ICD10CM|Nondisp fx of epiphy (separation) (upper) of l femr, 7thD|Nondisp fx of epiphy (separation) (upper) of l femr, 7thD +C2856658|T037|AB|S72.025E|ICD10CM|Nondisp fx of epiphy (separation) (upper) of l femr, 7thE|Nondisp fx of epiphy (separation) (upper) of l femr, 7thE +C2856659|T037|AB|S72.025F|ICD10CM|Nondisp fx of epiphy (separation) (upper) of l femr, 7thF|Nondisp fx of epiphy (separation) (upper) of l femr, 7thF +C2856660|T037|AB|S72.025G|ICD10CM|Nondisp fx of epiphy (separation) (upper) of l femr, 7thG|Nondisp fx of epiphy (separation) (upper) of l femr, 7thG +C2856661|T037|AB|S72.025H|ICD10CM|Nondisp fx of epiphy (separation) (upper) of l femr, 7thH|Nondisp fx of epiphy (separation) (upper) of l femr, 7thH +C2856662|T037|AB|S72.025J|ICD10CM|Nondisp fx of epiphy (separation) (upper) of l femr, 7thJ|Nondisp fx of epiphy (separation) (upper) of l femr, 7thJ +C2856663|T037|AB|S72.025K|ICD10CM|Nondisp fx of epiphy (separation) (upper) of l femr, 7thK|Nondisp fx of epiphy (separation) (upper) of l femr, 7thK +C2856664|T037|AB|S72.025M|ICD10CM|Nondisp fx of epiphy (separation) (upper) of l femr, 7thM|Nondisp fx of epiphy (separation) (upper) of l femr, 7thM +C2856665|T037|AB|S72.025N|ICD10CM|Nondisp fx of epiphy (separation) (upper) of l femr, 7thN|Nondisp fx of epiphy (separation) (upper) of l femr, 7thN +C2856666|T037|AB|S72.025P|ICD10CM|Nondisp fx of epiphy (separation) (upper) of l femr, 7thP|Nondisp fx of epiphy (separation) (upper) of l femr, 7thP +C2856667|T037|AB|S72.025Q|ICD10CM|Nondisp fx of epiphy (separation) (upper) of l femr, 7thQ|Nondisp fx of epiphy (separation) (upper) of l femr, 7thQ +C2856668|T037|AB|S72.025R|ICD10CM|Nondisp fx of epiphy (separation) (upper) of l femr, 7thR|Nondisp fx of epiphy (separation) (upper) of l femr, 7thR +C2856669|T037|AB|S72.025S|ICD10CM|Nondisp fx of epiphy (separation) (upper) of l femur, sqla|Nondisp fx of epiphy (separation) (upper) of l femur, sqla +C2856669|T037|PT|S72.025S|ICD10CM|Nondisplaced fracture of epiphysis (separation) (upper) of left femur, sequela|Nondisplaced fracture of epiphysis (separation) (upper) of left femur, sequela +C2856670|T037|AB|S72.026|ICD10CM|Nondisp fx of epiphysis (separation) (upper) of unsp femur|Nondisp fx of epiphysis (separation) (upper) of unsp femur +C2856670|T037|HT|S72.026|ICD10CM|Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur|Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur +C2856671|T037|AB|S72.026A|ICD10CM|Nondisp fx of epiphy (separation) (upper) of unsp femr, init|Nondisp fx of epiphy (separation) (upper) of unsp femr, init +C2856672|T037|AB|S72.026B|ICD10CM|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thB|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thB +C2856673|T037|AB|S72.026C|ICD10CM|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thC|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thC +C2856674|T037|AB|S72.026D|ICD10CM|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thD|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thD +C2856675|T037|AB|S72.026E|ICD10CM|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thE|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thE +C2856676|T037|AB|S72.026F|ICD10CM|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thF|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thF +C2856677|T037|AB|S72.026G|ICD10CM|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thG|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thG +C2856678|T037|AB|S72.026H|ICD10CM|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thH|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thH +C2856679|T037|AB|S72.026J|ICD10CM|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thJ|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thJ +C2856680|T037|AB|S72.026K|ICD10CM|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thK|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thK +C2856681|T037|AB|S72.026M|ICD10CM|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thM|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thM +C2856682|T037|AB|S72.026N|ICD10CM|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thN|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thN +C2856683|T037|AB|S72.026P|ICD10CM|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thP|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thP +C2856684|T037|AB|S72.026Q|ICD10CM|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thQ|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thQ +C2856685|T037|AB|S72.026R|ICD10CM|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thR|Nondisp fx of epiphy (separation) (upper) of unsp femr, 7thR +C2856686|T037|AB|S72.026S|ICD10CM|Nondisp fx of epiphy (separation) (upper) of unsp femr, sqla|Nondisp fx of epiphy (separation) (upper) of unsp femr, sqla +C2856686|T037|PT|S72.026S|ICD10CM|Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, sequela|Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, sequela +C0347810|T037|AB|S72.03|ICD10CM|Midcervical fracture of femur|Midcervical fracture of femur +C0347810|T037|HT|S72.03|ICD10CM|Midcervical fracture of femur|Midcervical fracture of femur +C0347810|T037|ET|S72.03|ICD10CM|Transcervical fracture of femur NOS|Transcervical fracture of femur NOS +C2856689|T037|AB|S72.031|ICD10CM|Displaced midcervical fracture of right femur|Displaced midcervical fracture of right femur +C2856689|T037|HT|S72.031|ICD10CM|Displaced midcervical fracture of right femur|Displaced midcervical fracture of right femur +C2856690|T037|AB|S72.031A|ICD10CM|Displaced midcervical fracture of right femur, init|Displaced midcervical fracture of right femur, init +C2856690|T037|PT|S72.031A|ICD10CM|Displaced midcervical fracture of right femur, initial encounter for closed fracture|Displaced midcervical fracture of right femur, initial encounter for closed fracture +C2856691|T037|PT|S72.031B|ICD10CM|Displaced midcervical fracture of right femur, initial encounter for open fracture type I or II|Displaced midcervical fracture of right femur, initial encounter for open fracture type I or II +C2856691|T037|AB|S72.031B|ICD10CM|Displaced midcervical fx r femur, init for opn fx type I/2|Displaced midcervical fx r femur, init for opn fx type I/2 +C2856692|T037|AB|S72.031C|ICD10CM|Displ midcervical fx r femur, init for opn fx type 3A/B/C|Displ midcervical fx r femur, init for opn fx type 3A/B/C +C2856693|T037|AB|S72.031D|ICD10CM|Displ midcervical fx r femur, subs for clos fx w routn heal|Displ midcervical fx r femur, subs for clos fx w routn heal +C2856694|T037|AB|S72.031E|ICD10CM|Displ midcervical fx r femr, 7thE|Displ midcervical fx r femr, 7thE +C2856695|T037|AB|S72.031F|ICD10CM|Displ midcervical fx r femr, 7thF|Displ midcervical fx r femr, 7thF +C2856696|T037|AB|S72.031G|ICD10CM|Displ midcervical fx r femur, subs for clos fx w delay heal|Displ midcervical fx r femur, subs for clos fx w delay heal +C2856697|T037|AB|S72.031H|ICD10CM|Displ midcervical fx r femr, 7thH|Displ midcervical fx r femr, 7thH +C2856698|T037|AB|S72.031J|ICD10CM|Displ midcervical fx r femr, 7thJ|Displ midcervical fx r femr, 7thJ +C2856699|T037|AB|S72.031K|ICD10CM|Displ midcervical fx r femur, subs for clos fx w nonunion|Displ midcervical fx r femur, subs for clos fx w nonunion +C2856700|T037|AB|S72.031M|ICD10CM|Displ midcervical fx r femr, 7thM|Displ midcervical fx r femr, 7thM +C2856701|T037|AB|S72.031N|ICD10CM|Displ midcervical fx r femr, 7thN|Displ midcervical fx r femr, 7thN +C2856702|T037|AB|S72.031P|ICD10CM|Displ midcervical fx r femur, subs for clos fx w malunion|Displ midcervical fx r femur, subs for clos fx w malunion +C2856703|T037|AB|S72.031Q|ICD10CM|Displ midcervical fx r femr, 7thQ|Displ midcervical fx r femr, 7thQ +C2856704|T037|AB|S72.031R|ICD10CM|Displ midcervical fx r femr, 7thR|Displ midcervical fx r femr, 7thR +C2856705|T037|PT|S72.031S|ICD10CM|Displaced midcervical fracture of right femur, sequela|Displaced midcervical fracture of right femur, sequela +C2856705|T037|AB|S72.031S|ICD10CM|Displaced midcervical fracture of right femur, sequela|Displaced midcervical fracture of right femur, sequela +C2856706|T037|AB|S72.032|ICD10CM|Displaced midcervical fracture of left femur|Displaced midcervical fracture of left femur +C2856706|T037|HT|S72.032|ICD10CM|Displaced midcervical fracture of left femur|Displaced midcervical fracture of left femur +C2856707|T037|AB|S72.032A|ICD10CM|Displaced midcervical fracture of left femur, init|Displaced midcervical fracture of left femur, init +C2856707|T037|PT|S72.032A|ICD10CM|Displaced midcervical fracture of left femur, initial encounter for closed fracture|Displaced midcervical fracture of left femur, initial encounter for closed fracture +C2856708|T037|PT|S72.032B|ICD10CM|Displaced midcervical fracture of left femur, initial encounter for open fracture type I or II|Displaced midcervical fracture of left femur, initial encounter for open fracture type I or II +C2856708|T037|AB|S72.032B|ICD10CM|Displaced midcervical fx l femur, init for opn fx type I/2|Displaced midcervical fx l femur, init for opn fx type I/2 +C2856709|T037|AB|S72.032C|ICD10CM|Displ midcervical fx l femur, init for opn fx type 3A/B/C|Displ midcervical fx l femur, init for opn fx type 3A/B/C +C2856710|T037|AB|S72.032D|ICD10CM|Displ midcervical fx l femur, subs for clos fx w routn heal|Displ midcervical fx l femur, subs for clos fx w routn heal +C2856711|T037|AB|S72.032E|ICD10CM|Displ midcervical fx l femr, 7thE|Displ midcervical fx l femr, 7thE +C2856712|T037|AB|S72.032F|ICD10CM|Displ midcervical fx l femr, 7thF|Displ midcervical fx l femr, 7thF +C2856713|T037|AB|S72.032G|ICD10CM|Displ midcervical fx l femur, subs for clos fx w delay heal|Displ midcervical fx l femur, subs for clos fx w delay heal +C2856714|T037|AB|S72.032H|ICD10CM|Displ midcervical fx l femr, 7thH|Displ midcervical fx l femr, 7thH +C2856715|T037|AB|S72.032J|ICD10CM|Displ midcervical fx l femr, 7thJ|Displ midcervical fx l femr, 7thJ +C2856716|T037|AB|S72.032K|ICD10CM|Displ midcervical fx l femur, subs for clos fx w nonunion|Displ midcervical fx l femur, subs for clos fx w nonunion +C2856716|T037|PT|S72.032K|ICD10CM|Displaced midcervical fracture of left femur, subsequent encounter for closed fracture with nonunion|Displaced midcervical fracture of left femur, subsequent encounter for closed fracture with nonunion +C2856717|T037|AB|S72.032M|ICD10CM|Displ midcervical fx l femr, 7thM|Displ midcervical fx l femr, 7thM +C2856718|T037|AB|S72.032N|ICD10CM|Displ midcervical fx l femr, 7thN|Displ midcervical fx l femr, 7thN +C2856719|T037|AB|S72.032P|ICD10CM|Displ midcervical fx l femur, subs for clos fx w malunion|Displ midcervical fx l femur, subs for clos fx w malunion +C2856719|T037|PT|S72.032P|ICD10CM|Displaced midcervical fracture of left femur, subsequent encounter for closed fracture with malunion|Displaced midcervical fracture of left femur, subsequent encounter for closed fracture with malunion +C2856720|T037|AB|S72.032Q|ICD10CM|Displ midcervical fx l femr, 7thQ|Displ midcervical fx l femr, 7thQ +C2856721|T037|AB|S72.032R|ICD10CM|Displ midcervical fx l femr, 7thR|Displ midcervical fx l femr, 7thR +C2856722|T037|PT|S72.032S|ICD10CM|Displaced midcervical fracture of left femur, sequela|Displaced midcervical fracture of left femur, sequela +C2856722|T037|AB|S72.032S|ICD10CM|Displaced midcervical fracture of left femur, sequela|Displaced midcervical fracture of left femur, sequela +C2856723|T037|AB|S72.033|ICD10CM|Displaced midcervical fracture of unspecified femur|Displaced midcervical fracture of unspecified femur +C2856723|T037|HT|S72.033|ICD10CM|Displaced midcervical fracture of unspecified femur|Displaced midcervical fracture of unspecified femur +C2856724|T037|AB|S72.033A|ICD10CM|Displaced midcervical fracture of unsp femur, init|Displaced midcervical fracture of unsp femur, init +C2856724|T037|PT|S72.033A|ICD10CM|Displaced midcervical fracture of unspecified femur, initial encounter for closed fracture|Displaced midcervical fracture of unspecified femur, initial encounter for closed fracture +C2856725|T037|AB|S72.033B|ICD10CM|Displ midcervical fx unsp femur, init for opn fx type I/2|Displ midcervical fx unsp femur, init for opn fx type I/2 +C2856726|T037|AB|S72.033C|ICD10CM|Displ midcervical fx unsp femur, init for opn fx type 3A/B/C|Displ midcervical fx unsp femur, init for opn fx type 3A/B/C +C2856727|T037|AB|S72.033D|ICD10CM|Displ midcervical fx unsp femr, 7thD|Displ midcervical fx unsp femr, 7thD +C2856728|T037|AB|S72.033E|ICD10CM|Displ midcervical fx unsp femr, 7thE|Displ midcervical fx unsp femr, 7thE +C2856729|T037|AB|S72.033F|ICD10CM|Displ midcervical fx unsp femr, 7thF|Displ midcervical fx unsp femr, 7thF +C2856730|T037|AB|S72.033G|ICD10CM|Displ midcervical fx unsp femr, 7thG|Displ midcervical fx unsp femr, 7thG +C2856731|T037|AB|S72.033H|ICD10CM|Displ midcervical fx unsp femr, 7thH|Displ midcervical fx unsp femr, 7thH +C2856732|T037|AB|S72.033J|ICD10CM|Displ midcervical fx unsp femr, 7thJ|Displ midcervical fx unsp femr, 7thJ +C2856733|T037|AB|S72.033K|ICD10CM|Displ midcervical fx unsp femur, subs for clos fx w nonunion|Displ midcervical fx unsp femur, subs for clos fx w nonunion +C2856734|T037|AB|S72.033M|ICD10CM|Displ midcervical fx unsp femr, 7thM|Displ midcervical fx unsp femr, 7thM +C2856735|T037|AB|S72.033N|ICD10CM|Displ midcervical fx unsp femr, 7thN|Displ midcervical fx unsp femr, 7thN +C2856736|T037|AB|S72.033P|ICD10CM|Displ midcervical fx unsp femur, subs for clos fx w malunion|Displ midcervical fx unsp femur, subs for clos fx w malunion +C2856737|T037|AB|S72.033Q|ICD10CM|Displ midcervical fx unsp femr, 7thQ|Displ midcervical fx unsp femr, 7thQ +C2856738|T037|AB|S72.033R|ICD10CM|Displ midcervical fx unsp femr, 7thR|Displ midcervical fx unsp femr, 7thR +C2856739|T037|AB|S72.033S|ICD10CM|Displaced midcervical fracture of unspecified femur, sequela|Displaced midcervical fracture of unspecified femur, sequela +C2856739|T037|PT|S72.033S|ICD10CM|Displaced midcervical fracture of unspecified femur, sequela|Displaced midcervical fracture of unspecified femur, sequela +C2856740|T037|AB|S72.034|ICD10CM|Nondisplaced midcervical fracture of right femur|Nondisplaced midcervical fracture of right femur +C2856740|T037|HT|S72.034|ICD10CM|Nondisplaced midcervical fracture of right femur|Nondisplaced midcervical fracture of right femur +C2856741|T037|AB|S72.034A|ICD10CM|Nondisplaced midcervical fracture of right femur, init|Nondisplaced midcervical fracture of right femur, init +C2856741|T037|PT|S72.034A|ICD10CM|Nondisplaced midcervical fracture of right femur, initial encounter for closed fracture|Nondisplaced midcervical fracture of right femur, initial encounter for closed fracture +C2856742|T037|AB|S72.034B|ICD10CM|Nondisp midcervical fx right femur, init for opn fx type I/2|Nondisp midcervical fx right femur, init for opn fx type I/2 +C2856742|T037|PT|S72.034B|ICD10CM|Nondisplaced midcervical fracture of right femur, initial encounter for open fracture type I or II|Nondisplaced midcervical fracture of right femur, initial encounter for open fracture type I or II +C2856743|T037|AB|S72.034C|ICD10CM|Nondisp midcervical fx r femur, init for opn fx type 3A/B/C|Nondisp midcervical fx r femur, init for opn fx type 3A/B/C +C2856744|T037|AB|S72.034D|ICD10CM|Nondisp midcervical fx r femr, subs for clos fx w routn heal|Nondisp midcervical fx r femr, subs for clos fx w routn heal +C2856745|T037|AB|S72.034E|ICD10CM|Nondisp midcervical fx r femr, 7thE|Nondisp midcervical fx r femr, 7thE +C2856746|T037|AB|S72.034F|ICD10CM|Nondisp midcervical fx r femr, 7thF|Nondisp midcervical fx r femr, 7thF +C2856747|T037|AB|S72.034G|ICD10CM|Nondisp midcervical fx r femr, subs for clos fx w delay heal|Nondisp midcervical fx r femr, subs for clos fx w delay heal +C2856748|T037|AB|S72.034H|ICD10CM|Nondisp midcervical fx r femr, 7thH|Nondisp midcervical fx r femr, 7thH +C2856749|T037|AB|S72.034J|ICD10CM|Nondisp midcervical fx r femr, 7thJ|Nondisp midcervical fx r femr, 7thJ +C2856750|T037|AB|S72.034K|ICD10CM|Nondisp midcervical fx r femur, subs for clos fx w nonunion|Nondisp midcervical fx r femur, subs for clos fx w nonunion +C2856751|T037|AB|S72.034M|ICD10CM|Nondisp midcervical fx r femr, 7thM|Nondisp midcervical fx r femr, 7thM +C2856752|T037|AB|S72.034N|ICD10CM|Nondisp midcervical fx r femr, 7thN|Nondisp midcervical fx r femr, 7thN +C2856753|T037|AB|S72.034P|ICD10CM|Nondisp midcervical fx r femur, subs for clos fx w malunion|Nondisp midcervical fx r femur, subs for clos fx w malunion +C2856754|T037|AB|S72.034Q|ICD10CM|Nondisp midcervical fx r femr, 7thQ|Nondisp midcervical fx r femr, 7thQ +C2856755|T037|AB|S72.034R|ICD10CM|Nondisp midcervical fx r femr, 7thR|Nondisp midcervical fx r femr, 7thR +C2856756|T037|PT|S72.034S|ICD10CM|Nondisplaced midcervical fracture of right femur, sequela|Nondisplaced midcervical fracture of right femur, sequela +C2856756|T037|AB|S72.034S|ICD10CM|Nondisplaced midcervical fracture of right femur, sequela|Nondisplaced midcervical fracture of right femur, sequela +C2856757|T037|AB|S72.035|ICD10CM|Nondisplaced midcervical fracture of left femur|Nondisplaced midcervical fracture of left femur +C2856757|T037|HT|S72.035|ICD10CM|Nondisplaced midcervical fracture of left femur|Nondisplaced midcervical fracture of left femur +C2856758|T037|AB|S72.035A|ICD10CM|Nondisplaced midcervical fracture of left femur, init|Nondisplaced midcervical fracture of left femur, init +C2856758|T037|PT|S72.035A|ICD10CM|Nondisplaced midcervical fracture of left femur, initial encounter for closed fracture|Nondisplaced midcervical fracture of left femur, initial encounter for closed fracture +C2856759|T037|AB|S72.035B|ICD10CM|Nondisp midcervical fx left femur, init for opn fx type I/2|Nondisp midcervical fx left femur, init for opn fx type I/2 +C2856759|T037|PT|S72.035B|ICD10CM|Nondisplaced midcervical fracture of left femur, initial encounter for open fracture type I or II|Nondisplaced midcervical fracture of left femur, initial encounter for open fracture type I or II +C2856760|T037|AB|S72.035C|ICD10CM|Nondisp midcervical fx l femur, init for opn fx type 3A/B/C|Nondisp midcervical fx l femur, init for opn fx type 3A/B/C +C2856761|T037|AB|S72.035D|ICD10CM|Nondisp midcervical fx l femr, subs for clos fx w routn heal|Nondisp midcervical fx l femr, subs for clos fx w routn heal +C2856762|T037|AB|S72.035E|ICD10CM|Nondisp midcervical fx l femr, 7thE|Nondisp midcervical fx l femr, 7thE +C2856763|T037|AB|S72.035F|ICD10CM|Nondisp midcervical fx l femr, 7thF|Nondisp midcervical fx l femr, 7thF +C2856764|T037|AB|S72.035G|ICD10CM|Nondisp midcervical fx l femr, subs for clos fx w delay heal|Nondisp midcervical fx l femr, subs for clos fx w delay heal +C2856765|T037|AB|S72.035H|ICD10CM|Nondisp midcervical fx l femr, 7thH|Nondisp midcervical fx l femr, 7thH +C2856766|T037|AB|S72.035J|ICD10CM|Nondisp midcervical fx l femr, 7thJ|Nondisp midcervical fx l femr, 7thJ +C2856767|T037|AB|S72.035K|ICD10CM|Nondisp midcervical fx l femur, subs for clos fx w nonunion|Nondisp midcervical fx l femur, subs for clos fx w nonunion +C2856768|T037|AB|S72.035M|ICD10CM|Nondisp midcervical fx l femr, 7thM|Nondisp midcervical fx l femr, 7thM +C2856769|T037|AB|S72.035N|ICD10CM|Nondisp midcervical fx l femr, 7thN|Nondisp midcervical fx l femr, 7thN +C2856770|T037|AB|S72.035P|ICD10CM|Nondisp midcervical fx l femur, subs for clos fx w malunion|Nondisp midcervical fx l femur, subs for clos fx w malunion +C2856771|T037|AB|S72.035Q|ICD10CM|Nondisp midcervical fx l femr, 7thQ|Nondisp midcervical fx l femr, 7thQ +C2856772|T037|AB|S72.035R|ICD10CM|Nondisp midcervical fx l femr, 7thR|Nondisp midcervical fx l femr, 7thR +C2856773|T037|PT|S72.035S|ICD10CM|Nondisplaced midcervical fracture of left femur, sequela|Nondisplaced midcervical fracture of left femur, sequela +C2856773|T037|AB|S72.035S|ICD10CM|Nondisplaced midcervical fracture of left femur, sequela|Nondisplaced midcervical fracture of left femur, sequela +C2856774|T037|AB|S72.036|ICD10CM|Nondisplaced midcervical fracture of unspecified femur|Nondisplaced midcervical fracture of unspecified femur +C2856774|T037|HT|S72.036|ICD10CM|Nondisplaced midcervical fracture of unspecified femur|Nondisplaced midcervical fracture of unspecified femur +C2856775|T037|AB|S72.036A|ICD10CM|Nondisplaced midcervical fracture of unsp femur, init|Nondisplaced midcervical fracture of unsp femur, init +C2856775|T037|PT|S72.036A|ICD10CM|Nondisplaced midcervical fracture of unspecified femur, initial encounter for closed fracture|Nondisplaced midcervical fracture of unspecified femur, initial encounter for closed fracture +C2856776|T037|AB|S72.036B|ICD10CM|Nondisp midcervical fx unsp femur, init for opn fx type I/2|Nondisp midcervical fx unsp femur, init for opn fx type I/2 +C2856777|T037|AB|S72.036C|ICD10CM|Nondisp midcervical fx unsp femr, 7thC|Nondisp midcervical fx unsp femr, 7thC +C2856778|T037|AB|S72.036D|ICD10CM|Nondisp midcervical fx unsp femr, 7thD|Nondisp midcervical fx unsp femr, 7thD +C2856779|T037|AB|S72.036E|ICD10CM|Nondisp midcervical fx unsp femr, 7thE|Nondisp midcervical fx unsp femr, 7thE +C2856780|T037|AB|S72.036F|ICD10CM|Nondisp midcervical fx unsp femr, 7thF|Nondisp midcervical fx unsp femr, 7thF +C2856781|T037|AB|S72.036G|ICD10CM|Nondisp midcervical fx unsp femr, 7thG|Nondisp midcervical fx unsp femr, 7thG +C2856782|T037|AB|S72.036H|ICD10CM|Nondisp midcervical fx unsp femr, 7thH|Nondisp midcervical fx unsp femr, 7thH +C2856783|T037|AB|S72.036J|ICD10CM|Nondisp midcervical fx unsp femr, 7thJ|Nondisp midcervical fx unsp femr, 7thJ +C2856784|T037|AB|S72.036K|ICD10CM|Nondisp midcervical fx unsp femr, 7thK|Nondisp midcervical fx unsp femr, 7thK +C2856785|T037|AB|S72.036M|ICD10CM|Nondisp midcervical fx unsp femr, 7thM|Nondisp midcervical fx unsp femr, 7thM +C2856786|T037|AB|S72.036N|ICD10CM|Nondisp midcervical fx unsp femr, 7thN|Nondisp midcervical fx unsp femr, 7thN +C2856787|T037|AB|S72.036P|ICD10CM|Nondisp midcervical fx unsp femr, 7thP|Nondisp midcervical fx unsp femr, 7thP +C2856788|T037|AB|S72.036Q|ICD10CM|Nondisp midcervical fx unsp femr, 7thQ|Nondisp midcervical fx unsp femr, 7thQ +C2856789|T037|AB|S72.036R|ICD10CM|Nondisp midcervical fx unsp femr, 7thR|Nondisp midcervical fx unsp femr, 7thR +C2856790|T037|AB|S72.036S|ICD10CM|Nondisplaced midcervical fracture of unsp femur, sequela|Nondisplaced midcervical fracture of unsp femur, sequela +C2856790|T037|PT|S72.036S|ICD10CM|Nondisplaced midcervical fracture of unspecified femur, sequela|Nondisplaced midcervical fracture of unspecified femur, sequela +C2856791|T037|ET|S72.04|ICD10CM|Cervicotrochanteric fracture of femur|Cervicotrochanteric fracture of femur +C0840680|T037|HT|S72.04|ICD10CM|Fracture of base of neck of femur|Fracture of base of neck of femur +C0840680|T037|AB|S72.04|ICD10CM|Fracture of base of neck of femur|Fracture of base of neck of femur +C2856792|T037|AB|S72.041|ICD10CM|Displaced fracture of base of neck of right femur|Displaced fracture of base of neck of right femur +C2856792|T037|HT|S72.041|ICD10CM|Displaced fracture of base of neck of right femur|Displaced fracture of base of neck of right femur +C2856793|T037|AB|S72.041A|ICD10CM|Disp fx of base of neck of right femur, init for clos fx|Disp fx of base of neck of right femur, init for clos fx +C2856793|T037|PT|S72.041A|ICD10CM|Displaced fracture of base of neck of right femur, initial encounter for closed fracture|Displaced fracture of base of neck of right femur, initial encounter for closed fracture +C2856794|T037|AB|S72.041B|ICD10CM|Disp fx of base of neck of r femur, init for opn fx type I/2|Disp fx of base of neck of r femur, init for opn fx type I/2 +C2856794|T037|PT|S72.041B|ICD10CM|Displaced fracture of base of neck of right femur, initial encounter for open fracture type I or II|Displaced fracture of base of neck of right femur, initial encounter for open fracture type I or II +C2856795|T037|AB|S72.041C|ICD10CM|Disp fx of base of nk of r femr, init for opn fx type 3A/B/C|Disp fx of base of nk of r femr, init for opn fx type 3A/B/C +C2856796|T037|AB|S72.041D|ICD10CM|Disp fx of base of nk of r femr, 7thD|Disp fx of base of nk of r femr, 7thD +C2856797|T037|AB|S72.041E|ICD10CM|Disp fx of base of nk of r femr, 7thE|Disp fx of base of nk of r femr, 7thE +C2856798|T037|AB|S72.041F|ICD10CM|Disp fx of base of nk of r femr, 7thF|Disp fx of base of nk of r femr, 7thF +C2856799|T037|AB|S72.041G|ICD10CM|Disp fx of base of nk of r femr, 7thG|Disp fx of base of nk of r femr, 7thG +C2856800|T037|AB|S72.041H|ICD10CM|Disp fx of base of nk of r femr, 7thH|Disp fx of base of nk of r femr, 7thH +C2856801|T037|AB|S72.041J|ICD10CM|Disp fx of base of nk of r femr, 7thJ|Disp fx of base of nk of r femr, 7thJ +C2856802|T037|AB|S72.041K|ICD10CM|Disp fx of base of nk of r femr, subs for clos fx w nonunion|Disp fx of base of nk of r femr, subs for clos fx w nonunion +C2856803|T037|AB|S72.041M|ICD10CM|Disp fx of base of nk of r femr, 7thM|Disp fx of base of nk of r femr, 7thM +C2856804|T037|AB|S72.041N|ICD10CM|Disp fx of base of nk of r femr, 7thN|Disp fx of base of nk of r femr, 7thN +C2856805|T037|AB|S72.041P|ICD10CM|Disp fx of base of nk of r femr, subs for clos fx w malunion|Disp fx of base of nk of r femr, subs for clos fx w malunion +C2856806|T037|AB|S72.041Q|ICD10CM|Disp fx of base of nk of r femr, 7thQ|Disp fx of base of nk of r femr, 7thQ +C2856807|T037|AB|S72.041R|ICD10CM|Disp fx of base of nk of r femr, 7thR|Disp fx of base of nk of r femr, 7thR +C2856808|T037|PT|S72.041S|ICD10CM|Displaced fracture of base of neck of right femur, sequela|Displaced fracture of base of neck of right femur, sequela +C2856808|T037|AB|S72.041S|ICD10CM|Displaced fracture of base of neck of right femur, sequela|Displaced fracture of base of neck of right femur, sequela +C2856809|T037|AB|S72.042|ICD10CM|Displaced fracture of base of neck of left femur|Displaced fracture of base of neck of left femur +C2856809|T037|HT|S72.042|ICD10CM|Displaced fracture of base of neck of left femur|Displaced fracture of base of neck of left femur +C2856810|T037|AB|S72.042A|ICD10CM|Disp fx of base of neck of left femur, init for clos fx|Disp fx of base of neck of left femur, init for clos fx +C2856810|T037|PT|S72.042A|ICD10CM|Displaced fracture of base of neck of left femur, initial encounter for closed fracture|Displaced fracture of base of neck of left femur, initial encounter for closed fracture +C2856811|T037|AB|S72.042B|ICD10CM|Disp fx of base of neck of l femur, init for opn fx type I/2|Disp fx of base of neck of l femur, init for opn fx type I/2 +C2856811|T037|PT|S72.042B|ICD10CM|Displaced fracture of base of neck of left femur, initial encounter for open fracture type I or II|Displaced fracture of base of neck of left femur, initial encounter for open fracture type I or II +C2856812|T037|AB|S72.042C|ICD10CM|Disp fx of base of nk of l femr, init for opn fx type 3A/B/C|Disp fx of base of nk of l femr, init for opn fx type 3A/B/C +C2856813|T037|AB|S72.042D|ICD10CM|Disp fx of base of nk of l femr, 7thD|Disp fx of base of nk of l femr, 7thD +C2856814|T037|AB|S72.042E|ICD10CM|Disp fx of base of nk of l femr, 7thE|Disp fx of base of nk of l femr, 7thE +C2856815|T037|AB|S72.042F|ICD10CM|Disp fx of base of nk of l femr, 7thF|Disp fx of base of nk of l femr, 7thF +C2856816|T037|AB|S72.042G|ICD10CM|Disp fx of base of nk of l femr, 7thG|Disp fx of base of nk of l femr, 7thG +C2856817|T037|AB|S72.042H|ICD10CM|Disp fx of base of nk of l femr, 7thH|Disp fx of base of nk of l femr, 7thH +C2856818|T037|AB|S72.042J|ICD10CM|Disp fx of base of nk of l femr, 7thJ|Disp fx of base of nk of l femr, 7thJ +C2856819|T037|AB|S72.042K|ICD10CM|Disp fx of base of nk of l femr, subs for clos fx w nonunion|Disp fx of base of nk of l femr, subs for clos fx w nonunion +C2856820|T037|AB|S72.042M|ICD10CM|Disp fx of base of nk of l femr, 7thM|Disp fx of base of nk of l femr, 7thM +C2856821|T037|AB|S72.042N|ICD10CM|Disp fx of base of nk of l femr, 7thN|Disp fx of base of nk of l femr, 7thN +C2856822|T037|AB|S72.042P|ICD10CM|Disp fx of base of nk of l femr, subs for clos fx w malunion|Disp fx of base of nk of l femr, subs for clos fx w malunion +C2856823|T037|AB|S72.042Q|ICD10CM|Disp fx of base of nk of l femr, 7thQ|Disp fx of base of nk of l femr, 7thQ +C2856824|T037|AB|S72.042R|ICD10CM|Disp fx of base of nk of l femr, 7thR|Disp fx of base of nk of l femr, 7thR +C2856825|T037|AB|S72.042S|ICD10CM|Displaced fracture of base of neck of left femur, sequela|Displaced fracture of base of neck of left femur, sequela +C2856825|T037|PT|S72.042S|ICD10CM|Displaced fracture of base of neck of left femur, sequela|Displaced fracture of base of neck of left femur, sequela +C2856826|T037|AB|S72.043|ICD10CM|Displaced fracture of base of neck of unspecified femur|Displaced fracture of base of neck of unspecified femur +C2856826|T037|HT|S72.043|ICD10CM|Displaced fracture of base of neck of unspecified femur|Displaced fracture of base of neck of unspecified femur +C2856827|T037|AB|S72.043A|ICD10CM|Disp fx of base of neck of unsp femur, init for clos fx|Disp fx of base of neck of unsp femur, init for clos fx +C2856827|T037|PT|S72.043A|ICD10CM|Displaced fracture of base of neck of unspecified femur, initial encounter for closed fracture|Displaced fracture of base of neck of unspecified femur, initial encounter for closed fracture +C2856828|T037|AB|S72.043B|ICD10CM|Disp fx of base of nk of unsp femr, init for opn fx type I/2|Disp fx of base of nk of unsp femr, init for opn fx type I/2 +C2856829|T037|AB|S72.043C|ICD10CM|Disp fx of base of nk of unsp femr, 7thC|Disp fx of base of nk of unsp femr, 7thC +C2856830|T037|AB|S72.043D|ICD10CM|Disp fx of base of nk of unsp femr, 7thD|Disp fx of base of nk of unsp femr, 7thD +C2856831|T037|AB|S72.043E|ICD10CM|Disp fx of base of nk of unsp femr, 7thE|Disp fx of base of nk of unsp femr, 7thE +C2856832|T037|AB|S72.043F|ICD10CM|Disp fx of base of nk of unsp femr, 7thF|Disp fx of base of nk of unsp femr, 7thF +C2856833|T037|AB|S72.043G|ICD10CM|Disp fx of base of nk of unsp femr, 7thG|Disp fx of base of nk of unsp femr, 7thG +C2856834|T037|AB|S72.043H|ICD10CM|Disp fx of base of nk of unsp femr, 7thH|Disp fx of base of nk of unsp femr, 7thH +C2856835|T037|AB|S72.043J|ICD10CM|Disp fx of base of nk of unsp femr, 7thJ|Disp fx of base of nk of unsp femr, 7thJ +C2856836|T037|AB|S72.043K|ICD10CM|Disp fx of base of nk of unsp femr, 7thK|Disp fx of base of nk of unsp femr, 7thK +C2856837|T037|AB|S72.043M|ICD10CM|Disp fx of base of nk of unsp femr, 7thM|Disp fx of base of nk of unsp femr, 7thM +C2856838|T037|AB|S72.043N|ICD10CM|Disp fx of base of nk of unsp femr, 7thN|Disp fx of base of nk of unsp femr, 7thN +C2856839|T037|AB|S72.043P|ICD10CM|Disp fx of base of nk of unsp femr, 7thP|Disp fx of base of nk of unsp femr, 7thP +C2856840|T037|AB|S72.043Q|ICD10CM|Disp fx of base of nk of unsp femr, 7thQ|Disp fx of base of nk of unsp femr, 7thQ +C2856841|T037|AB|S72.043R|ICD10CM|Disp fx of base of nk of unsp femr, 7thR|Disp fx of base of nk of unsp femr, 7thR +C2856842|T037|AB|S72.043S|ICD10CM|Disp fx of base of neck of unspecified femur, sequela|Disp fx of base of neck of unspecified femur, sequela +C2856842|T037|PT|S72.043S|ICD10CM|Displaced fracture of base of neck of unspecified femur, sequela|Displaced fracture of base of neck of unspecified femur, sequela +C2856843|T037|AB|S72.044|ICD10CM|Nondisplaced fracture of base of neck of right femur|Nondisplaced fracture of base of neck of right femur +C2856843|T037|HT|S72.044|ICD10CM|Nondisplaced fracture of base of neck of right femur|Nondisplaced fracture of base of neck of right femur +C2856844|T037|AB|S72.044A|ICD10CM|Nondisp fx of base of neck of right femur, init for clos fx|Nondisp fx of base of neck of right femur, init for clos fx +C2856844|T037|PT|S72.044A|ICD10CM|Nondisplaced fracture of base of neck of right femur, initial encounter for closed fracture|Nondisplaced fracture of base of neck of right femur, initial encounter for closed fracture +C2856845|T037|AB|S72.044B|ICD10CM|Nondisp fx of base of nk of r femr, init for opn fx type I/2|Nondisp fx of base of nk of r femr, init for opn fx type I/2 +C2856846|T037|AB|S72.044C|ICD10CM|Nondisp fx of base of nk of r femr, 7thC|Nondisp fx of base of nk of r femr, 7thC +C2856847|T037|AB|S72.044D|ICD10CM|Nondisp fx of base of nk of r femr, 7thD|Nondisp fx of base of nk of r femr, 7thD +C2856848|T037|AB|S72.044E|ICD10CM|Nondisp fx of base of nk of r femr, 7thE|Nondisp fx of base of nk of r femr, 7thE +C2856849|T037|AB|S72.044F|ICD10CM|Nondisp fx of base of nk of r femr, 7thF|Nondisp fx of base of nk of r femr, 7thF +C2856850|T037|AB|S72.044G|ICD10CM|Nondisp fx of base of nk of r femr, 7thG|Nondisp fx of base of nk of r femr, 7thG +C2856851|T037|AB|S72.044H|ICD10CM|Nondisp fx of base of nk of r femr, 7thH|Nondisp fx of base of nk of r femr, 7thH +C2856852|T037|AB|S72.044J|ICD10CM|Nondisp fx of base of nk of r femr, 7thJ|Nondisp fx of base of nk of r femr, 7thJ +C2856853|T037|AB|S72.044K|ICD10CM|Nondisp fx of base of nk of r femr, 7thK|Nondisp fx of base of nk of r femr, 7thK +C2856854|T037|AB|S72.044M|ICD10CM|Nondisp fx of base of nk of r femr, 7thM|Nondisp fx of base of nk of r femr, 7thM +C2856855|T037|AB|S72.044N|ICD10CM|Nondisp fx of base of nk of r femr, 7thN|Nondisp fx of base of nk of r femr, 7thN +C2856856|T037|AB|S72.044P|ICD10CM|Nondisp fx of base of nk of r femr, 7thP|Nondisp fx of base of nk of r femr, 7thP +C2856857|T037|AB|S72.044Q|ICD10CM|Nondisp fx of base of nk of r femr, 7thQ|Nondisp fx of base of nk of r femr, 7thQ +C2856858|T037|AB|S72.044R|ICD10CM|Nondisp fx of base of nk of r femr, 7thR|Nondisp fx of base of nk of r femr, 7thR +C2856859|T037|AB|S72.044S|ICD10CM|Nondisp fx of base of neck of right femur, sequela|Nondisp fx of base of neck of right femur, sequela +C2856859|T037|PT|S72.044S|ICD10CM|Nondisplaced fracture of base of neck of right femur, sequela|Nondisplaced fracture of base of neck of right femur, sequela +C2856860|T037|AB|S72.045|ICD10CM|Nondisplaced fracture of base of neck of left femur|Nondisplaced fracture of base of neck of left femur +C2856860|T037|HT|S72.045|ICD10CM|Nondisplaced fracture of base of neck of left femur|Nondisplaced fracture of base of neck of left femur +C2856861|T037|AB|S72.045A|ICD10CM|Nondisp fx of base of neck of left femur, init for clos fx|Nondisp fx of base of neck of left femur, init for clos fx +C2856861|T037|PT|S72.045A|ICD10CM|Nondisplaced fracture of base of neck of left femur, initial encounter for closed fracture|Nondisplaced fracture of base of neck of left femur, initial encounter for closed fracture +C2856862|T037|AB|S72.045B|ICD10CM|Nondisp fx of base of nk of l femr, init for opn fx type I/2|Nondisp fx of base of nk of l femr, init for opn fx type I/2 +C2856863|T037|AB|S72.045C|ICD10CM|Nondisp fx of base of nk of l femr, 7thC|Nondisp fx of base of nk of l femr, 7thC +C2856864|T037|AB|S72.045D|ICD10CM|Nondisp fx of base of nk of l femr, 7thD|Nondisp fx of base of nk of l femr, 7thD +C2856865|T037|AB|S72.045E|ICD10CM|Nondisp fx of base of nk of l femr, 7thE|Nondisp fx of base of nk of l femr, 7thE +C2856866|T037|AB|S72.045F|ICD10CM|Nondisp fx of base of nk of l femr, 7thF|Nondisp fx of base of nk of l femr, 7thF +C2856867|T037|AB|S72.045G|ICD10CM|Nondisp fx of base of nk of l femr, 7thG|Nondisp fx of base of nk of l femr, 7thG +C2856868|T037|AB|S72.045H|ICD10CM|Nondisp fx of base of nk of l femr, 7thH|Nondisp fx of base of nk of l femr, 7thH +C2856869|T037|AB|S72.045J|ICD10CM|Nondisp fx of base of nk of l femr, 7thJ|Nondisp fx of base of nk of l femr, 7thJ +C2856870|T037|AB|S72.045K|ICD10CM|Nondisp fx of base of nk of l femr, 7thK|Nondisp fx of base of nk of l femr, 7thK +C2856871|T037|AB|S72.045M|ICD10CM|Nondisp fx of base of nk of l femr, 7thM|Nondisp fx of base of nk of l femr, 7thM +C2856872|T037|AB|S72.045N|ICD10CM|Nondisp fx of base of nk of l femr, 7thN|Nondisp fx of base of nk of l femr, 7thN +C2856873|T037|AB|S72.045P|ICD10CM|Nondisp fx of base of nk of l femr, 7thP|Nondisp fx of base of nk of l femr, 7thP +C2856874|T037|AB|S72.045Q|ICD10CM|Nondisp fx of base of nk of l femr, 7thQ|Nondisp fx of base of nk of l femr, 7thQ +C2856875|T037|AB|S72.045R|ICD10CM|Nondisp fx of base of nk of l femr, 7thR|Nondisp fx of base of nk of l femr, 7thR +C2856876|T037|AB|S72.045S|ICD10CM|Nondisplaced fracture of base of neck of left femur, sequela|Nondisplaced fracture of base of neck of left femur, sequela +C2856876|T037|PT|S72.045S|ICD10CM|Nondisplaced fracture of base of neck of left femur, sequela|Nondisplaced fracture of base of neck of left femur, sequela +C2856877|T037|AB|S72.046|ICD10CM|Nondisplaced fracture of base of neck of unspecified femur|Nondisplaced fracture of base of neck of unspecified femur +C2856877|T037|HT|S72.046|ICD10CM|Nondisplaced fracture of base of neck of unspecified femur|Nondisplaced fracture of base of neck of unspecified femur +C2856878|T037|AB|S72.046A|ICD10CM|Nondisp fx of base of neck of unsp femur, init for clos fx|Nondisp fx of base of neck of unsp femur, init for clos fx +C2856878|T037|PT|S72.046A|ICD10CM|Nondisplaced fracture of base of neck of unspecified femur, initial encounter for closed fracture|Nondisplaced fracture of base of neck of unspecified femur, initial encounter for closed fracture +C2856879|T037|AB|S72.046B|ICD10CM|Nondisp fx of base of nk of unsp femr, 7thB|Nondisp fx of base of nk of unsp femr, 7thB +C2856880|T037|AB|S72.046C|ICD10CM|Nondisp fx of base of nk of unsp femr, 7thC|Nondisp fx of base of nk of unsp femr, 7thC +C2856881|T037|AB|S72.046D|ICD10CM|Nondisp fx of base of nk of unsp femr, 7thD|Nondisp fx of base of nk of unsp femr, 7thD +C2856882|T037|AB|S72.046E|ICD10CM|Nondisp fx of base of nk of unsp femr, 7thE|Nondisp fx of base of nk of unsp femr, 7thE +C2856883|T037|AB|S72.046F|ICD10CM|Nondisp fx of base of nk of unsp femr, 7thF|Nondisp fx of base of nk of unsp femr, 7thF +C2856884|T037|AB|S72.046G|ICD10CM|Nondisp fx of base of nk of unsp femr, 7thG|Nondisp fx of base of nk of unsp femr, 7thG +C2856885|T037|AB|S72.046H|ICD10CM|Nondisp fx of base of nk of unsp femr, 7thH|Nondisp fx of base of nk of unsp femr, 7thH +C2856886|T037|AB|S72.046J|ICD10CM|Nondisp fx of base of nk of unsp femr, 7thJ|Nondisp fx of base of nk of unsp femr, 7thJ +C2856887|T037|AB|S72.046K|ICD10CM|Nondisp fx of base of nk of unsp femr, 7thK|Nondisp fx of base of nk of unsp femr, 7thK +C2856888|T037|AB|S72.046M|ICD10CM|Nondisp fx of base of nk of unsp femr, 7thM|Nondisp fx of base of nk of unsp femr, 7thM +C2856889|T037|AB|S72.046N|ICD10CM|Nondisp fx of base of nk of unsp femr, 7thN|Nondisp fx of base of nk of unsp femr, 7thN +C2856890|T037|AB|S72.046P|ICD10CM|Nondisp fx of base of nk of unsp femr, 7thP|Nondisp fx of base of nk of unsp femr, 7thP +C2856891|T037|AB|S72.046Q|ICD10CM|Nondisp fx of base of nk of unsp femr, 7thQ|Nondisp fx of base of nk of unsp femr, 7thQ +C2856892|T037|AB|S72.046R|ICD10CM|Nondisp fx of base of nk of unsp femr, 7thR|Nondisp fx of base of nk of unsp femr, 7thR +C2856893|T037|AB|S72.046S|ICD10CM|Nondisp fx of base of neck of unspecified femur, sequela|Nondisp fx of base of neck of unspecified femur, sequela +C2856893|T037|PT|S72.046S|ICD10CM|Nondisplaced fracture of base of neck of unspecified femur, sequela|Nondisplaced fracture of base of neck of unspecified femur, sequela +C0743887|T037|ET|S72.05|ICD10CM|Fracture of head of femur NOS|Fracture of head of femur NOS +C2856894|T037|AB|S72.05|ICD10CM|Unspecified fracture of head of femur|Unspecified fracture of head of femur +C2856894|T037|HT|S72.05|ICD10CM|Unspecified fracture of head of femur|Unspecified fracture of head of femur +C2856895|T037|AB|S72.051|ICD10CM|Unspecified fracture of head of right femur|Unspecified fracture of head of right femur +C2856895|T037|HT|S72.051|ICD10CM|Unspecified fracture of head of right femur|Unspecified fracture of head of right femur +C2856896|T037|AB|S72.051A|ICD10CM|Unsp fracture of head of right femur, init for clos fx|Unsp fracture of head of right femur, init for clos fx +C2856896|T037|PT|S72.051A|ICD10CM|Unspecified fracture of head of right femur, initial encounter for closed fracture|Unspecified fracture of head of right femur, initial encounter for closed fracture +C2856897|T037|AB|S72.051B|ICD10CM|Unsp fx head of right femur, init for opn fx type I/2|Unsp fx head of right femur, init for opn fx type I/2 +C2856897|T037|PT|S72.051B|ICD10CM|Unspecified fracture of head of right femur, initial encounter for open fracture type I or II|Unspecified fracture of head of right femur, initial encounter for open fracture type I or II +C2856898|T037|AB|S72.051C|ICD10CM|Unsp fx head of right femur, init for opn fx type 3A/B/C|Unsp fx head of right femur, init for opn fx type 3A/B/C +C2856899|T037|AB|S72.051D|ICD10CM|Unsp fx head of right femur, subs for clos fx w routn heal|Unsp fx head of right femur, subs for clos fx w routn heal +C2856900|T037|AB|S72.051E|ICD10CM|Unsp fx head of r femr, 7thE|Unsp fx head of r femr, 7thE +C2856901|T037|AB|S72.051F|ICD10CM|Unsp fx head of r femr, 7thF|Unsp fx head of r femr, 7thF +C2856902|T037|AB|S72.051G|ICD10CM|Unsp fx head of right femur, subs for clos fx w delay heal|Unsp fx head of right femur, subs for clos fx w delay heal +C2856903|T037|AB|S72.051H|ICD10CM|Unsp fx head of r femr, 7thH|Unsp fx head of r femr, 7thH +C2856904|T037|AB|S72.051J|ICD10CM|Unsp fx head of r femr, 7thJ|Unsp fx head of r femr, 7thJ +C2856905|T037|AB|S72.051K|ICD10CM|Unsp fx head of right femur, subs for clos fx w nonunion|Unsp fx head of right femur, subs for clos fx w nonunion +C2856905|T037|PT|S72.051K|ICD10CM|Unspecified fracture of head of right femur, subsequent encounter for closed fracture with nonunion|Unspecified fracture of head of right femur, subsequent encounter for closed fracture with nonunion +C2856906|T037|AB|S72.051M|ICD10CM|Unsp fx head of r femur, subs for opn fx type I/2 w nonunion|Unsp fx head of r femur, subs for opn fx type I/2 w nonunion +C2856907|T037|AB|S72.051N|ICD10CM|Unsp fx head of r femr, 7thN|Unsp fx head of r femr, 7thN +C2856908|T037|AB|S72.051P|ICD10CM|Unsp fx head of right femur, subs for clos fx w malunion|Unsp fx head of right femur, subs for clos fx w malunion +C2856908|T037|PT|S72.051P|ICD10CM|Unspecified fracture of head of right femur, subsequent encounter for closed fracture with malunion|Unspecified fracture of head of right femur, subsequent encounter for closed fracture with malunion +C2856909|T037|AB|S72.051Q|ICD10CM|Unsp fx head of r femur, subs for opn fx type I/2 w malunion|Unsp fx head of r femur, subs for opn fx type I/2 w malunion +C2856910|T037|AB|S72.051R|ICD10CM|Unsp fx head of r femr, 7thR|Unsp fx head of r femr, 7thR +C2856911|T037|AB|S72.051S|ICD10CM|Unspecified fracture of head of right femur, sequela|Unspecified fracture of head of right femur, sequela +C2856911|T037|PT|S72.051S|ICD10CM|Unspecified fracture of head of right femur, sequela|Unspecified fracture of head of right femur, sequela +C2856912|T037|AB|S72.052|ICD10CM|Unspecified fracture of head of left femur|Unspecified fracture of head of left femur +C2856912|T037|HT|S72.052|ICD10CM|Unspecified fracture of head of left femur|Unspecified fracture of head of left femur +C2856913|T037|AB|S72.052A|ICD10CM|Unsp fracture of head of left femur, init for clos fx|Unsp fracture of head of left femur, init for clos fx +C2856913|T037|PT|S72.052A|ICD10CM|Unspecified fracture of head of left femur, initial encounter for closed fracture|Unspecified fracture of head of left femur, initial encounter for closed fracture +C2856914|T037|AB|S72.052B|ICD10CM|Unsp fx head of left femur, init for opn fx type I/2|Unsp fx head of left femur, init for opn fx type I/2 +C2856914|T037|PT|S72.052B|ICD10CM|Unspecified fracture of head of left femur, initial encounter for open fracture type I or II|Unspecified fracture of head of left femur, initial encounter for open fracture type I or II +C2856915|T037|AB|S72.052C|ICD10CM|Unsp fx head of left femur, init for opn fx type 3A/B/C|Unsp fx head of left femur, init for opn fx type 3A/B/C +C2856916|T037|AB|S72.052D|ICD10CM|Unsp fx head of left femur, subs for clos fx w routn heal|Unsp fx head of left femur, subs for clos fx w routn heal +C2856917|T037|AB|S72.052E|ICD10CM|Unsp fx head of l femr, 7thE|Unsp fx head of l femr, 7thE +C2856918|T037|AB|S72.052F|ICD10CM|Unsp fx head of l femr, 7thF|Unsp fx head of l femr, 7thF +C2856919|T037|AB|S72.052G|ICD10CM|Unsp fx head of left femur, subs for clos fx w delay heal|Unsp fx head of left femur, subs for clos fx w delay heal +C2856920|T037|AB|S72.052H|ICD10CM|Unsp fx head of l femr, 7thH|Unsp fx head of l femr, 7thH +C2856921|T037|AB|S72.052J|ICD10CM|Unsp fx head of l femr, 7thJ|Unsp fx head of l femr, 7thJ +C2856922|T037|AB|S72.052K|ICD10CM|Unsp fx head of left femur, subs for clos fx w nonunion|Unsp fx head of left femur, subs for clos fx w nonunion +C2856922|T037|PT|S72.052K|ICD10CM|Unspecified fracture of head of left femur, subsequent encounter for closed fracture with nonunion|Unspecified fracture of head of left femur, subsequent encounter for closed fracture with nonunion +C2856923|T037|AB|S72.052M|ICD10CM|Unsp fx head of l femur, subs for opn fx type I/2 w nonunion|Unsp fx head of l femur, subs for opn fx type I/2 w nonunion +C2856924|T037|AB|S72.052N|ICD10CM|Unsp fx head of l femr, 7thN|Unsp fx head of l femr, 7thN +C2856925|T037|AB|S72.052P|ICD10CM|Unsp fx head of left femur, subs for clos fx w malunion|Unsp fx head of left femur, subs for clos fx w malunion +C2856925|T037|PT|S72.052P|ICD10CM|Unspecified fracture of head of left femur, subsequent encounter for closed fracture with malunion|Unspecified fracture of head of left femur, subsequent encounter for closed fracture with malunion +C2856926|T037|AB|S72.052Q|ICD10CM|Unsp fx head of l femur, subs for opn fx type I/2 w malunion|Unsp fx head of l femur, subs for opn fx type I/2 w malunion +C2856927|T037|AB|S72.052R|ICD10CM|Unsp fx head of l femr, 7thR|Unsp fx head of l femr, 7thR +C2856928|T037|AB|S72.052S|ICD10CM|Unspecified fracture of head of left femur, sequela|Unspecified fracture of head of left femur, sequela +C2856928|T037|PT|S72.052S|ICD10CM|Unspecified fracture of head of left femur, sequela|Unspecified fracture of head of left femur, sequela +C2856929|T037|AB|S72.059|ICD10CM|Unspecified fracture of head of unspecified femur|Unspecified fracture of head of unspecified femur +C2856929|T037|HT|S72.059|ICD10CM|Unspecified fracture of head of unspecified femur|Unspecified fracture of head of unspecified femur +C2856930|T037|AB|S72.059A|ICD10CM|Unsp fracture of head of unsp femur, init for clos fx|Unsp fracture of head of unsp femur, init for clos fx +C2856930|T037|PT|S72.059A|ICD10CM|Unspecified fracture of head of unspecified femur, initial encounter for closed fracture|Unspecified fracture of head of unspecified femur, initial encounter for closed fracture +C2856931|T037|AB|S72.059B|ICD10CM|Unsp fx head of unsp femur, init for opn fx type I/2|Unsp fx head of unsp femur, init for opn fx type I/2 +C2856931|T037|PT|S72.059B|ICD10CM|Unspecified fracture of head of unspecified femur, initial encounter for open fracture type I or II|Unspecified fracture of head of unspecified femur, initial encounter for open fracture type I or II +C2856932|T037|AB|S72.059C|ICD10CM|Unsp fx head of unsp femur, init for opn fx type 3A/B/C|Unsp fx head of unsp femur, init for opn fx type 3A/B/C +C2856933|T037|AB|S72.059D|ICD10CM|Unsp fx head of unsp femur, subs for clos fx w routn heal|Unsp fx head of unsp femur, subs for clos fx w routn heal +C2856934|T037|AB|S72.059E|ICD10CM|Unsp fx head of unsp femr, 7thE|Unsp fx head of unsp femr, 7thE +C2856935|T037|AB|S72.059F|ICD10CM|Unsp fx head of unsp femr, 7thF|Unsp fx head of unsp femr, 7thF +C2856936|T037|AB|S72.059G|ICD10CM|Unsp fx head of unsp femur, subs for clos fx w delay heal|Unsp fx head of unsp femur, subs for clos fx w delay heal +C2856937|T037|AB|S72.059H|ICD10CM|Unsp fx head of unsp femr, 7thH|Unsp fx head of unsp femr, 7thH +C2856938|T037|AB|S72.059J|ICD10CM|Unsp fx head of unsp femr, 7thJ|Unsp fx head of unsp femr, 7thJ +C2856939|T037|AB|S72.059K|ICD10CM|Unsp fx head of unsp femur, subs for clos fx w nonunion|Unsp fx head of unsp femur, subs for clos fx w nonunion +C2856940|T037|AB|S72.059M|ICD10CM|Unsp fx head of unsp femr, 7thM|Unsp fx head of unsp femr, 7thM +C2856941|T037|AB|S72.059N|ICD10CM|Unsp fx head of unsp femr, 7thN|Unsp fx head of unsp femr, 7thN +C2856942|T037|AB|S72.059P|ICD10CM|Unsp fx head of unsp femur, subs for clos fx w malunion|Unsp fx head of unsp femur, subs for clos fx w malunion +C2856943|T037|AB|S72.059Q|ICD10CM|Unsp fx head of unsp femr, 7thQ|Unsp fx head of unsp femr, 7thQ +C2856944|T037|AB|S72.059R|ICD10CM|Unsp fx head of unsp femr, 7thR|Unsp fx head of unsp femr, 7thR +C2856945|T037|AB|S72.059S|ICD10CM|Unspecified fracture of head of unspecified femur, sequela|Unspecified fracture of head of unspecified femur, sequela +C2856945|T037|PT|S72.059S|ICD10CM|Unspecified fracture of head of unspecified femur, sequela|Unspecified fracture of head of unspecified femur, sequela +C2856946|T037|AB|S72.06|ICD10CM|Articular fracture of head of femur|Articular fracture of head of femur +C2856946|T037|HT|S72.06|ICD10CM|Articular fracture of head of femur|Articular fracture of head of femur +C2856947|T037|AB|S72.061|ICD10CM|Displaced articular fracture of head of right femur|Displaced articular fracture of head of right femur +C2856947|T037|HT|S72.061|ICD10CM|Displaced articular fracture of head of right femur|Displaced articular fracture of head of right femur +C2856948|T037|AB|S72.061A|ICD10CM|Displaced articular fracture of head of right femur, init|Displaced articular fracture of head of right femur, init +C2856948|T037|PT|S72.061A|ICD10CM|Displaced articular fracture of head of right femur, initial encounter for closed fracture|Displaced articular fracture of head of right femur, initial encounter for closed fracture +C2856949|T037|AB|S72.061B|ICD10CM|Displaced artic fx head of r femur, init for opn fx type I/2|Displaced artic fx head of r femur, init for opn fx type I/2 +C2856950|T037|AB|S72.061C|ICD10CM|Displ artic fx head of r femur, init for opn fx type 3A/B/C|Displ artic fx head of r femur, init for opn fx type 3A/B/C +C2856951|T037|AB|S72.061D|ICD10CM|Displ artic fx head of r femr, subs for clos fx w routn heal|Displ artic fx head of r femr, subs for clos fx w routn heal +C2856952|T037|AB|S72.061E|ICD10CM|Displ artic fx head of r femr, 7thE|Displ artic fx head of r femr, 7thE +C2856953|T037|AB|S72.061F|ICD10CM|Displ artic fx head of r femr, 7thF|Displ artic fx head of r femr, 7thF +C2856954|T037|AB|S72.061G|ICD10CM|Displ artic fx head of r femr, subs for clos fx w delay heal|Displ artic fx head of r femr, subs for clos fx w delay heal +C2856955|T037|AB|S72.061H|ICD10CM|Displ artic fx head of r femr, 7thH|Displ artic fx head of r femr, 7thH +C2856956|T037|AB|S72.061J|ICD10CM|Displ artic fx head of r femr, 7thJ|Displ artic fx head of r femr, 7thJ +C2856957|T037|AB|S72.061K|ICD10CM|Displ artic fx head of r femur, subs for clos fx w nonunion|Displ artic fx head of r femur, subs for clos fx w nonunion +C2856958|T037|AB|S72.061M|ICD10CM|Displ artic fx head of r femr, 7thM|Displ artic fx head of r femr, 7thM +C2856959|T037|AB|S72.061N|ICD10CM|Displ artic fx head of r femr, 7thN|Displ artic fx head of r femr, 7thN +C2856960|T037|AB|S72.061P|ICD10CM|Displ artic fx head of r femur, subs for clos fx w malunion|Displ artic fx head of r femur, subs for clos fx w malunion +C2856961|T037|AB|S72.061Q|ICD10CM|Displ artic fx head of r femr, 7thQ|Displ artic fx head of r femr, 7thQ +C2856962|T037|AB|S72.061R|ICD10CM|Displ artic fx head of r femr, 7thR|Displ artic fx head of r femr, 7thR +C2856963|T037|AB|S72.061S|ICD10CM|Displaced articular fracture of head of right femur, sequela|Displaced articular fracture of head of right femur, sequela +C2856963|T037|PT|S72.061S|ICD10CM|Displaced articular fracture of head of right femur, sequela|Displaced articular fracture of head of right femur, sequela +C2856964|T037|AB|S72.062|ICD10CM|Displaced articular fracture of head of left femur|Displaced articular fracture of head of left femur +C2856964|T037|HT|S72.062|ICD10CM|Displaced articular fracture of head of left femur|Displaced articular fracture of head of left femur +C2856965|T037|AB|S72.062A|ICD10CM|Displaced articular fracture of head of left femur, init|Displaced articular fracture of head of left femur, init +C2856965|T037|PT|S72.062A|ICD10CM|Displaced articular fracture of head of left femur, initial encounter for closed fracture|Displaced articular fracture of head of left femur, initial encounter for closed fracture +C2856966|T037|AB|S72.062B|ICD10CM|Displaced artic fx head of l femur, init for opn fx type I/2|Displaced artic fx head of l femur, init for opn fx type I/2 +C2856966|T037|PT|S72.062B|ICD10CM|Displaced articular fracture of head of left femur, initial encounter for open fracture type I or II|Displaced articular fracture of head of left femur, initial encounter for open fracture type I or II +C2856967|T037|AB|S72.062C|ICD10CM|Displ artic fx head of l femur, init for opn fx type 3A/B/C|Displ artic fx head of l femur, init for opn fx type 3A/B/C +C2856968|T037|AB|S72.062D|ICD10CM|Displ artic fx head of l femr, subs for clos fx w routn heal|Displ artic fx head of l femr, subs for clos fx w routn heal +C2856969|T037|AB|S72.062E|ICD10CM|Displ artic fx head of l femr, 7thE|Displ artic fx head of l femr, 7thE +C2856970|T037|AB|S72.062F|ICD10CM|Displ artic fx head of l femr, 7thF|Displ artic fx head of l femr, 7thF +C2856971|T037|AB|S72.062G|ICD10CM|Displ artic fx head of l femr, subs for clos fx w delay heal|Displ artic fx head of l femr, subs for clos fx w delay heal +C2856972|T037|AB|S72.062H|ICD10CM|Displ artic fx head of l femr, 7thH|Displ artic fx head of l femr, 7thH +C2856973|T037|AB|S72.062J|ICD10CM|Displ artic fx head of l femr, 7thJ|Displ artic fx head of l femr, 7thJ +C2856974|T037|AB|S72.062K|ICD10CM|Displ artic fx head of l femur, subs for clos fx w nonunion|Displ artic fx head of l femur, subs for clos fx w nonunion +C2856975|T037|AB|S72.062M|ICD10CM|Displ artic fx head of l femr, 7thM|Displ artic fx head of l femr, 7thM +C2856976|T037|AB|S72.062N|ICD10CM|Displ artic fx head of l femr, 7thN|Displ artic fx head of l femr, 7thN +C2856977|T037|AB|S72.062P|ICD10CM|Displ artic fx head of l femur, subs for clos fx w malunion|Displ artic fx head of l femur, subs for clos fx w malunion +C2856978|T037|AB|S72.062Q|ICD10CM|Displ artic fx head of l femr, 7thQ|Displ artic fx head of l femr, 7thQ +C2856979|T037|AB|S72.062R|ICD10CM|Displ artic fx head of l femr, 7thR|Displ artic fx head of l femr, 7thR +C2856980|T037|PT|S72.062S|ICD10CM|Displaced articular fracture of head of left femur, sequela|Displaced articular fracture of head of left femur, sequela +C2856980|T037|AB|S72.062S|ICD10CM|Displaced articular fracture of head of left femur, sequela|Displaced articular fracture of head of left femur, sequela +C2856981|T037|AB|S72.063|ICD10CM|Displaced articular fracture of head of unspecified femur|Displaced articular fracture of head of unspecified femur +C2856981|T037|HT|S72.063|ICD10CM|Displaced articular fracture of head of unspecified femur|Displaced articular fracture of head of unspecified femur +C2856982|T037|AB|S72.063A|ICD10CM|Displaced articular fracture of head of unsp femur, init|Displaced articular fracture of head of unsp femur, init +C2856982|T037|PT|S72.063A|ICD10CM|Displaced articular fracture of head of unspecified femur, initial encounter for closed fracture|Displaced articular fracture of head of unspecified femur, initial encounter for closed fracture +C2856983|T037|AB|S72.063B|ICD10CM|Displ artic fx head of unsp femur, init for opn fx type I/2|Displ artic fx head of unsp femur, init for opn fx type I/2 +C2856984|T037|AB|S72.063C|ICD10CM|Displ artic fx head of unsp femr, 7thC|Displ artic fx head of unsp femr, 7thC +C2856985|T037|AB|S72.063D|ICD10CM|Displ artic fx head of unsp femr, 7thD|Displ artic fx head of unsp femr, 7thD +C2856986|T037|AB|S72.063E|ICD10CM|Displ artic fx head of unsp femr, 7thE|Displ artic fx head of unsp femr, 7thE +C2856987|T037|AB|S72.063F|ICD10CM|Displ artic fx head of unsp femr, 7thF|Displ artic fx head of unsp femr, 7thF +C2856988|T037|AB|S72.063G|ICD10CM|Displ artic fx head of unsp femr, 7thG|Displ artic fx head of unsp femr, 7thG +C2856989|T037|AB|S72.063H|ICD10CM|Displ artic fx head of unsp femr, 7thH|Displ artic fx head of unsp femr, 7thH +C2856990|T037|AB|S72.063J|ICD10CM|Displ artic fx head of unsp femr, 7thJ|Displ artic fx head of unsp femr, 7thJ +C2856991|T037|AB|S72.063K|ICD10CM|Displ artic fx head of unsp femr, 7thK|Displ artic fx head of unsp femr, 7thK +C2856992|T037|AB|S72.063M|ICD10CM|Displ artic fx head of unsp femr, 7thM|Displ artic fx head of unsp femr, 7thM +C2856993|T037|AB|S72.063N|ICD10CM|Displ artic fx head of unsp femr, 7thN|Displ artic fx head of unsp femr, 7thN +C2856994|T037|AB|S72.063P|ICD10CM|Displ artic fx head of unsp femr, 7thP|Displ artic fx head of unsp femr, 7thP +C2856995|T037|AB|S72.063Q|ICD10CM|Displ artic fx head of unsp femr, 7thQ|Displ artic fx head of unsp femr, 7thQ +C2856996|T037|AB|S72.063R|ICD10CM|Displ artic fx head of unsp femr, 7thR|Displ artic fx head of unsp femr, 7thR +C2856997|T037|AB|S72.063S|ICD10CM|Displaced articular fracture of head of unsp femur, sequela|Displaced articular fracture of head of unsp femur, sequela +C2856997|T037|PT|S72.063S|ICD10CM|Displaced articular fracture of head of unspecified femur, sequela|Displaced articular fracture of head of unspecified femur, sequela +C2856998|T037|AB|S72.064|ICD10CM|Nondisplaced articular fracture of head of right femur|Nondisplaced articular fracture of head of right femur +C2856998|T037|HT|S72.064|ICD10CM|Nondisplaced articular fracture of head of right femur|Nondisplaced articular fracture of head of right femur +C2856999|T037|AB|S72.064A|ICD10CM|Nondisplaced articular fracture of head of right femur, init|Nondisplaced articular fracture of head of right femur, init +C2856999|T037|PT|S72.064A|ICD10CM|Nondisplaced articular fracture of head of right femur, initial encounter for closed fracture|Nondisplaced articular fracture of head of right femur, initial encounter for closed fracture +C2857000|T037|AB|S72.064B|ICD10CM|Nondisp artic fx head of r femur, init for opn fx type I/2|Nondisp artic fx head of r femur, init for opn fx type I/2 +C2857001|T037|AB|S72.064C|ICD10CM|Nondisp artic fx head of r femr, init for opn fx type 3A/B/C|Nondisp artic fx head of r femr, init for opn fx type 3A/B/C +C2857002|T037|AB|S72.064D|ICD10CM|Nondisp artic fx head of r femr, 7thD|Nondisp artic fx head of r femr, 7thD +C2857003|T037|AB|S72.064E|ICD10CM|Nondisp artic fx head of r femr, 7thE|Nondisp artic fx head of r femr, 7thE +C2857004|T037|AB|S72.064F|ICD10CM|Nondisp artic fx head of r femr, 7thF|Nondisp artic fx head of r femr, 7thF +C2857005|T037|AB|S72.064G|ICD10CM|Nondisp artic fx head of r femr, 7thG|Nondisp artic fx head of r femr, 7thG +C2857006|T037|AB|S72.064H|ICD10CM|Nondisp artic fx head of r femr, 7thH|Nondisp artic fx head of r femr, 7thH +C2857007|T037|AB|S72.064J|ICD10CM|Nondisp artic fx head of r femr, 7thJ|Nondisp artic fx head of r femr, 7thJ +C2857008|T037|AB|S72.064K|ICD10CM|Nondisp artic fx head of r femr, subs for clos fx w nonunion|Nondisp artic fx head of r femr, subs for clos fx w nonunion +C2857009|T037|AB|S72.064M|ICD10CM|Nondisp artic fx head of r femr, 7thM|Nondisp artic fx head of r femr, 7thM +C2857010|T037|AB|S72.064N|ICD10CM|Nondisp artic fx head of r femr, 7thN|Nondisp artic fx head of r femr, 7thN +C2857011|T037|AB|S72.064P|ICD10CM|Nondisp artic fx head of r femr, subs for clos fx w malunion|Nondisp artic fx head of r femr, subs for clos fx w malunion +C2857012|T037|AB|S72.064Q|ICD10CM|Nondisp artic fx head of r femr, 7thQ|Nondisp artic fx head of r femr, 7thQ +C2857013|T037|AB|S72.064R|ICD10CM|Nondisp artic fx head of r femr, 7thR|Nondisp artic fx head of r femr, 7thR +C2857014|T037|AB|S72.064S|ICD10CM|Nondisp articular fracture of head of right femur, sequela|Nondisp articular fracture of head of right femur, sequela +C2857014|T037|PT|S72.064S|ICD10CM|Nondisplaced articular fracture of head of right femur, sequela|Nondisplaced articular fracture of head of right femur, sequela +C2857015|T037|AB|S72.065|ICD10CM|Nondisplaced articular fracture of head of left femur|Nondisplaced articular fracture of head of left femur +C2857015|T037|HT|S72.065|ICD10CM|Nondisplaced articular fracture of head of left femur|Nondisplaced articular fracture of head of left femur +C2857016|T037|AB|S72.065A|ICD10CM|Nondisplaced articular fracture of head of left femur, init|Nondisplaced articular fracture of head of left femur, init +C2857016|T037|PT|S72.065A|ICD10CM|Nondisplaced articular fracture of head of left femur, initial encounter for closed fracture|Nondisplaced articular fracture of head of left femur, initial encounter for closed fracture +C2857017|T037|AB|S72.065B|ICD10CM|Nondisp artic fx head of l femur, init for opn fx type I/2|Nondisp artic fx head of l femur, init for opn fx type I/2 +C2857018|T037|AB|S72.065C|ICD10CM|Nondisp artic fx head of l femr, init for opn fx type 3A/B/C|Nondisp artic fx head of l femr, init for opn fx type 3A/B/C +C2857019|T037|AB|S72.065D|ICD10CM|Nondisp artic fx head of l femr, 7thD|Nondisp artic fx head of l femr, 7thD +C2857020|T037|AB|S72.065E|ICD10CM|Nondisp artic fx head of l femr, 7thE|Nondisp artic fx head of l femr, 7thE +C2857021|T037|AB|S72.065F|ICD10CM|Nondisp artic fx head of l femr, 7thF|Nondisp artic fx head of l femr, 7thF +C2857022|T037|AB|S72.065G|ICD10CM|Nondisp artic fx head of l femr, 7thG|Nondisp artic fx head of l femr, 7thG +C2857023|T037|AB|S72.065H|ICD10CM|Nondisp artic fx head of l femr, 7thH|Nondisp artic fx head of l femr, 7thH +C2857024|T037|AB|S72.065J|ICD10CM|Nondisp artic fx head of l femr, 7thJ|Nondisp artic fx head of l femr, 7thJ +C2857025|T037|AB|S72.065K|ICD10CM|Nondisp artic fx head of l femr, subs for clos fx w nonunion|Nondisp artic fx head of l femr, subs for clos fx w nonunion +C2857026|T037|AB|S72.065M|ICD10CM|Nondisp artic fx head of l femr, 7thM|Nondisp artic fx head of l femr, 7thM +C2857027|T037|AB|S72.065N|ICD10CM|Nondisp artic fx head of l femr, 7thN|Nondisp artic fx head of l femr, 7thN +C2857028|T037|AB|S72.065P|ICD10CM|Nondisp artic fx head of l femr, subs for clos fx w malunion|Nondisp artic fx head of l femr, subs for clos fx w malunion +C2857029|T037|AB|S72.065Q|ICD10CM|Nondisp artic fx head of l femr, 7thQ|Nondisp artic fx head of l femr, 7thQ +C2857030|T037|AB|S72.065R|ICD10CM|Nondisp artic fx head of l femr, 7thR|Nondisp artic fx head of l femr, 7thR +C2857031|T037|AB|S72.065S|ICD10CM|Nondisp articular fracture of head of left femur, sequela|Nondisp articular fracture of head of left femur, sequela +C2857031|T037|PT|S72.065S|ICD10CM|Nondisplaced articular fracture of head of left femur, sequela|Nondisplaced articular fracture of head of left femur, sequela +C2857032|T037|AB|S72.066|ICD10CM|Nondisplaced articular fracture of head of unspecified femur|Nondisplaced articular fracture of head of unspecified femur +C2857032|T037|HT|S72.066|ICD10CM|Nondisplaced articular fracture of head of unspecified femur|Nondisplaced articular fracture of head of unspecified femur +C2857033|T037|AB|S72.066A|ICD10CM|Nondisplaced articular fracture of head of unsp femur, init|Nondisplaced articular fracture of head of unsp femur, init +C2857033|T037|PT|S72.066A|ICD10CM|Nondisplaced articular fracture of head of unspecified femur, initial encounter for closed fracture|Nondisplaced articular fracture of head of unspecified femur, initial encounter for closed fracture +C2857034|T037|AB|S72.066B|ICD10CM|Nondisp artic fx head of unsp femr, init for opn fx type I/2|Nondisp artic fx head of unsp femr, init for opn fx type I/2 +C2857035|T037|AB|S72.066C|ICD10CM|Nondisp artic fx head of unsp femr, 7thC|Nondisp artic fx head of unsp femr, 7thC +C2857036|T037|AB|S72.066D|ICD10CM|Nondisp artic fx head of unsp femr, 7thD|Nondisp artic fx head of unsp femr, 7thD +C2857037|T037|AB|S72.066E|ICD10CM|Nondisp artic fx head of unsp femr, 7thE|Nondisp artic fx head of unsp femr, 7thE +C2857038|T037|AB|S72.066F|ICD10CM|Nondisp artic fx head of unsp femr, 7thF|Nondisp artic fx head of unsp femr, 7thF +C2857039|T037|AB|S72.066G|ICD10CM|Nondisp artic fx head of unsp femr, 7thG|Nondisp artic fx head of unsp femr, 7thG +C2857040|T037|AB|S72.066H|ICD10CM|Nondisp artic fx head of unsp femr, 7thH|Nondisp artic fx head of unsp femr, 7thH +C2857041|T037|AB|S72.066J|ICD10CM|Nondisp artic fx head of unsp femr, 7thJ|Nondisp artic fx head of unsp femr, 7thJ +C2857042|T037|AB|S72.066K|ICD10CM|Nondisp artic fx head of unsp femr, 7thK|Nondisp artic fx head of unsp femr, 7thK +C2857043|T037|AB|S72.066M|ICD10CM|Nondisp artic fx head of unsp femr, 7thM|Nondisp artic fx head of unsp femr, 7thM +C2857044|T037|AB|S72.066N|ICD10CM|Nondisp artic fx head of unsp femr, 7thN|Nondisp artic fx head of unsp femr, 7thN +C2857045|T037|AB|S72.066P|ICD10CM|Nondisp artic fx head of unsp femr, 7thP|Nondisp artic fx head of unsp femr, 7thP +C2857046|T037|AB|S72.066Q|ICD10CM|Nondisp artic fx head of unsp femr, 7thQ|Nondisp artic fx head of unsp femr, 7thQ +C2857047|T037|AB|S72.066R|ICD10CM|Nondisp artic fx head of unsp femr, 7thR|Nondisp artic fx head of unsp femr, 7thR +C2857048|T037|AB|S72.066S|ICD10CM|Nondisp articular fracture of head of unsp femur, sequela|Nondisp articular fracture of head of unsp femur, sequela +C2857048|T037|PT|S72.066S|ICD10CM|Nondisplaced articular fracture of head of unspecified femur, sequela|Nondisplaced articular fracture of head of unspecified femur, sequela +C2857049|T037|AB|S72.09|ICD10CM|Other fracture of head and neck of femur|Other fracture of head and neck of femur +C2857049|T037|HT|S72.09|ICD10CM|Other fracture of head and neck of femur|Other fracture of head and neck of femur +C2857050|T037|AB|S72.091|ICD10CM|Other fracture of head and neck of right femur|Other fracture of head and neck of right femur +C2857050|T037|HT|S72.091|ICD10CM|Other fracture of head and neck of right femur|Other fracture of head and neck of right femur +C2857051|T037|AB|S72.091A|ICD10CM|Oth fracture of head and neck of right femur, init|Oth fracture of head and neck of right femur, init +C2857051|T037|PT|S72.091A|ICD10CM|Other fracture of head and neck of right femur, initial encounter for closed fracture|Other fracture of head and neck of right femur, initial encounter for closed fracture +C2857052|T037|AB|S72.091B|ICD10CM|Oth fx head/neck of right femur, init for opn fx type I/2|Oth fx head/neck of right femur, init for opn fx type I/2 +C2857052|T037|PT|S72.091B|ICD10CM|Other fracture of head and neck of right femur, initial encounter for open fracture type I or II|Other fracture of head and neck of right femur, initial encounter for open fracture type I or II +C2857053|T037|AB|S72.091C|ICD10CM|Oth fx head/neck of right femur, init for opn fx type 3A/B/C|Oth fx head/neck of right femur, init for opn fx type 3A/B/C +C2857054|T037|AB|S72.091D|ICD10CM|Oth fx head/neck of r femur, subs for clos fx w routn heal|Oth fx head/neck of r femur, subs for clos fx w routn heal +C2857055|T037|AB|S72.091E|ICD10CM|Oth fx head/neck of r femr, 7thE|Oth fx head/neck of r femr, 7thE +C2857056|T037|AB|S72.091F|ICD10CM|Oth fx head/neck of r femr, 7thF|Oth fx head/neck of r femr, 7thF +C2857057|T037|AB|S72.091G|ICD10CM|Oth fx head/neck of r femur, subs for clos fx w delay heal|Oth fx head/neck of r femur, subs for clos fx w delay heal +C2857058|T037|AB|S72.091H|ICD10CM|Oth fx head/neck of r femr, 7thH|Oth fx head/neck of r femr, 7thH +C2857059|T037|AB|S72.091J|ICD10CM|Oth fx head/neck of r femr, 7thJ|Oth fx head/neck of r femr, 7thJ +C2857060|T037|AB|S72.091K|ICD10CM|Oth fx head/neck of right femur, subs for clos fx w nonunion|Oth fx head/neck of right femur, subs for clos fx w nonunion +C2857061|T037|AB|S72.091M|ICD10CM|Oth fx head/neck of r femr, 7thM|Oth fx head/neck of r femr, 7thM +C2857062|T037|AB|S72.091N|ICD10CM|Oth fx head/neck of r femr, 7thN|Oth fx head/neck of r femr, 7thN +C2857063|T037|AB|S72.091P|ICD10CM|Oth fx head/neck of right femur, subs for clos fx w malunion|Oth fx head/neck of right femur, subs for clos fx w malunion +C2857064|T037|AB|S72.091Q|ICD10CM|Oth fx head/neck of r femr, 7thQ|Oth fx head/neck of r femr, 7thQ +C2857065|T037|AB|S72.091R|ICD10CM|Oth fx head/neck of r femr, 7thR|Oth fx head/neck of r femr, 7thR +C2857066|T037|AB|S72.091S|ICD10CM|Other fracture of head and neck of right femur, sequela|Other fracture of head and neck of right femur, sequela +C2857066|T037|PT|S72.091S|ICD10CM|Other fracture of head and neck of right femur, sequela|Other fracture of head and neck of right femur, sequela +C2857067|T037|AB|S72.092|ICD10CM|Other fracture of head and neck of left femur|Other fracture of head and neck of left femur +C2857067|T037|HT|S72.092|ICD10CM|Other fracture of head and neck of left femur|Other fracture of head and neck of left femur +C2857068|T037|AB|S72.092A|ICD10CM|Oth fracture of head and neck of left femur, init|Oth fracture of head and neck of left femur, init +C2857068|T037|PT|S72.092A|ICD10CM|Other fracture of head and neck of left femur, initial encounter for closed fracture|Other fracture of head and neck of left femur, initial encounter for closed fracture +C2857069|T037|AB|S72.092B|ICD10CM|Oth fx head/neck of left femur, init for opn fx type I/2|Oth fx head/neck of left femur, init for opn fx type I/2 +C2857069|T037|PT|S72.092B|ICD10CM|Other fracture of head and neck of left femur, initial encounter for open fracture type I or II|Other fracture of head and neck of left femur, initial encounter for open fracture type I or II +C2857070|T037|AB|S72.092C|ICD10CM|Oth fx head/neck of left femur, init for opn fx type 3A/B/C|Oth fx head/neck of left femur, init for opn fx type 3A/B/C +C2857071|T037|AB|S72.092D|ICD10CM|Oth fx head/neck of l femur, subs for clos fx w routn heal|Oth fx head/neck of l femur, subs for clos fx w routn heal +C2857072|T037|AB|S72.092E|ICD10CM|Oth fx head/neck of l femr, 7thE|Oth fx head/neck of l femr, 7thE +C2857073|T037|AB|S72.092F|ICD10CM|Oth fx head/neck of l femr, 7thF|Oth fx head/neck of l femr, 7thF +C2857074|T037|AB|S72.092G|ICD10CM|Oth fx head/neck of l femur, subs for clos fx w delay heal|Oth fx head/neck of l femur, subs for clos fx w delay heal +C2857075|T037|AB|S72.092H|ICD10CM|Oth fx head/neck of l femr, 7thH|Oth fx head/neck of l femr, 7thH +C2857076|T037|AB|S72.092J|ICD10CM|Oth fx head/neck of l femr, 7thJ|Oth fx head/neck of l femr, 7thJ +C2857077|T037|AB|S72.092K|ICD10CM|Oth fx head/neck of left femur, subs for clos fx w nonunion|Oth fx head/neck of left femur, subs for clos fx w nonunion +C2857078|T037|AB|S72.092M|ICD10CM|Oth fx head/neck of l femr, 7thM|Oth fx head/neck of l femr, 7thM +C2857079|T037|AB|S72.092N|ICD10CM|Oth fx head/neck of l femr, 7thN|Oth fx head/neck of l femr, 7thN +C2857080|T037|AB|S72.092P|ICD10CM|Oth fx head/neck of left femur, subs for clos fx w malunion|Oth fx head/neck of left femur, subs for clos fx w malunion +C2857081|T037|AB|S72.092Q|ICD10CM|Oth fx head/neck of l femr, 7thQ|Oth fx head/neck of l femr, 7thQ +C2857082|T037|AB|S72.092R|ICD10CM|Oth fx head/neck of l femr, 7thR|Oth fx head/neck of l femr, 7thR +C2857083|T037|AB|S72.092S|ICD10CM|Other fracture of head and neck of left femur, sequela|Other fracture of head and neck of left femur, sequela +C2857083|T037|PT|S72.092S|ICD10CM|Other fracture of head and neck of left femur, sequela|Other fracture of head and neck of left femur, sequela +C2857084|T037|AB|S72.099|ICD10CM|Other fracture of head and neck of unspecified femur|Other fracture of head and neck of unspecified femur +C2857084|T037|HT|S72.099|ICD10CM|Other fracture of head and neck of unspecified femur|Other fracture of head and neck of unspecified femur +C2857085|T037|AB|S72.099A|ICD10CM|Oth fracture of head and neck of unsp femur, init|Oth fracture of head and neck of unsp femur, init +C2857085|T037|PT|S72.099A|ICD10CM|Other fracture of head and neck of unspecified femur, initial encounter for closed fracture|Other fracture of head and neck of unspecified femur, initial encounter for closed fracture +C2857086|T037|AB|S72.099B|ICD10CM|Oth fx head/neck of unsp femur, init for opn fx type I/2|Oth fx head/neck of unsp femur, init for opn fx type I/2 +C2857087|T037|AB|S72.099C|ICD10CM|Oth fx head/neck of unsp femur, init for opn fx type 3A/B/C|Oth fx head/neck of unsp femur, init for opn fx type 3A/B/C +C2857088|T037|AB|S72.099D|ICD10CM|Oth fx head/neck of unsp femr, subs for clos fx w routn heal|Oth fx head/neck of unsp femr, subs for clos fx w routn heal +C2857089|T037|AB|S72.099E|ICD10CM|Oth fx head/neck of unsp femr, 7thE|Oth fx head/neck of unsp femr, 7thE +C2857090|T037|AB|S72.099F|ICD10CM|Oth fx head/neck of unsp femr, 7thF|Oth fx head/neck of unsp femr, 7thF +C2857091|T037|AB|S72.099G|ICD10CM|Oth fx head/neck of unsp femr, subs for clos fx w delay heal|Oth fx head/neck of unsp femr, subs for clos fx w delay heal +C2857092|T037|AB|S72.099H|ICD10CM|Oth fx head/neck of unsp femr, 7thH|Oth fx head/neck of unsp femr, 7thH +C2857093|T037|AB|S72.099J|ICD10CM|Oth fx head/neck of unsp femr, 7thJ|Oth fx head/neck of unsp femr, 7thJ +C2857094|T037|AB|S72.099K|ICD10CM|Oth fx head/neck of unsp femur, subs for clos fx w nonunion|Oth fx head/neck of unsp femur, subs for clos fx w nonunion +C2857095|T037|AB|S72.099M|ICD10CM|Oth fx head/neck of unsp femr, 7thM|Oth fx head/neck of unsp femr, 7thM +C2857096|T037|AB|S72.099N|ICD10CM|Oth fx head/neck of unsp femr, 7thN|Oth fx head/neck of unsp femr, 7thN +C2857097|T037|AB|S72.099P|ICD10CM|Oth fx head/neck of unsp femur, subs for clos fx w malunion|Oth fx head/neck of unsp femur, subs for clos fx w malunion +C2857098|T037|AB|S72.099Q|ICD10CM|Oth fx head/neck of unsp femr, 7thQ|Oth fx head/neck of unsp femr, 7thQ +C2857099|T037|AB|S72.099R|ICD10CM|Oth fx head/neck of unsp femr, 7thR|Oth fx head/neck of unsp femr, 7thR +C2857100|T037|AB|S72.099S|ICD10CM|Other fracture of head and neck of unsp femur, sequela|Other fracture of head and neck of unsp femur, sequela +C2857100|T037|PT|S72.099S|ICD10CM|Other fracture of head and neck of unspecified femur, sequela|Other fracture of head and neck of unspecified femur, sequela +C0281883|T037|HT|S72.1|ICD10CM|Pertrochanteric fracture|Pertrochanteric fracture +C0281883|T037|AB|S72.1|ICD10CM|Pertrochanteric fracture|Pertrochanteric fracture +C0281883|T037|PT|S72.1|ICD10|Pertrochanteric fracture|Pertrochanteric fracture +C1397791|T037|ET|S72.10|ICD10CM|Fracture of trochanter NOS|Fracture of trochanter NOS +C2857101|T037|AB|S72.10|ICD10CM|Unspecified trochanteric fracture of femur|Unspecified trochanteric fracture of femur +C2857101|T037|HT|S72.10|ICD10CM|Unspecified trochanteric fracture of femur|Unspecified trochanteric fracture of femur +C2857102|T037|AB|S72.101|ICD10CM|Unspecified trochanteric fracture of right femur|Unspecified trochanteric fracture of right femur +C2857102|T037|HT|S72.101|ICD10CM|Unspecified trochanteric fracture of right femur|Unspecified trochanteric fracture of right femur +C2857103|T037|AB|S72.101A|ICD10CM|Unsp trochanteric fracture of right femur, init for clos fx|Unsp trochanteric fracture of right femur, init for clos fx +C2857103|T037|PT|S72.101A|ICD10CM|Unspecified trochanteric fracture of right femur, initial encounter for closed fracture|Unspecified trochanteric fracture of right femur, initial encounter for closed fracture +C2857104|T037|AB|S72.101B|ICD10CM|Unsp trochan fx right femur, init for opn fx type I/2|Unsp trochan fx right femur, init for opn fx type I/2 +C2857104|T037|PT|S72.101B|ICD10CM|Unspecified trochanteric fracture of right femur, initial encounter for open fracture type I or II|Unspecified trochanteric fracture of right femur, initial encounter for open fracture type I or II +C2857105|T037|AB|S72.101C|ICD10CM|Unsp trochan fx right femur, init for opn fx type 3A/B/C|Unsp trochan fx right femur, init for opn fx type 3A/B/C +C2857106|T037|AB|S72.101D|ICD10CM|Unsp trochan fx right femur, subs for clos fx w routn heal|Unsp trochan fx right femur, subs for clos fx w routn heal +C2857107|T037|AB|S72.101E|ICD10CM|Unsp trochan fx r femr, 7thE|Unsp trochan fx r femr, 7thE +C2857108|T037|AB|S72.101F|ICD10CM|Unsp trochan fx r femr, 7thF|Unsp trochan fx r femr, 7thF +C2857109|T037|AB|S72.101G|ICD10CM|Unsp trochan fx right femur, subs for clos fx w delay heal|Unsp trochan fx right femur, subs for clos fx w delay heal +C2857110|T037|AB|S72.101H|ICD10CM|Unsp trochan fx r femr, 7thH|Unsp trochan fx r femr, 7thH +C2857111|T037|AB|S72.101J|ICD10CM|Unsp trochan fx r femr, 7thJ|Unsp trochan fx r femr, 7thJ +C2857112|T037|AB|S72.101K|ICD10CM|Unsp trochan fx right femur, subs for clos fx w nonunion|Unsp trochan fx right femur, subs for clos fx w nonunion +C2857113|T037|AB|S72.101M|ICD10CM|Unsp trochan fx r femur, subs for opn fx type I/2 w nonunion|Unsp trochan fx r femur, subs for opn fx type I/2 w nonunion +C2857114|T037|AB|S72.101N|ICD10CM|Unsp trochan fx r femr, 7thN|Unsp trochan fx r femr, 7thN +C2857115|T037|AB|S72.101P|ICD10CM|Unsp trochan fx right femur, subs for clos fx w malunion|Unsp trochan fx right femur, subs for clos fx w malunion +C2857116|T037|AB|S72.101Q|ICD10CM|Unsp trochan fx r femur, subs for opn fx type I/2 w malunion|Unsp trochan fx r femur, subs for opn fx type I/2 w malunion +C2857117|T037|AB|S72.101R|ICD10CM|Unsp trochan fx r femr, 7thR|Unsp trochan fx r femr, 7thR +C2857118|T037|AB|S72.101S|ICD10CM|Unspecified trochanteric fracture of right femur, sequela|Unspecified trochanteric fracture of right femur, sequela +C2857118|T037|PT|S72.101S|ICD10CM|Unspecified trochanteric fracture of right femur, sequela|Unspecified trochanteric fracture of right femur, sequela +C2857119|T037|AB|S72.102|ICD10CM|Unspecified trochanteric fracture of left femur|Unspecified trochanteric fracture of left femur +C2857119|T037|HT|S72.102|ICD10CM|Unspecified trochanteric fracture of left femur|Unspecified trochanteric fracture of left femur +C2857120|T037|AB|S72.102A|ICD10CM|Unsp trochanteric fracture of left femur, init for clos fx|Unsp trochanteric fracture of left femur, init for clos fx +C2857120|T037|PT|S72.102A|ICD10CM|Unspecified trochanteric fracture of left femur, initial encounter for closed fracture|Unspecified trochanteric fracture of left femur, initial encounter for closed fracture +C2857121|T037|AB|S72.102B|ICD10CM|Unsp trochan fx left femur, init for opn fx type I/2|Unsp trochan fx left femur, init for opn fx type I/2 +C2857121|T037|PT|S72.102B|ICD10CM|Unspecified trochanteric fracture of left femur, initial encounter for open fracture type I or II|Unspecified trochanteric fracture of left femur, initial encounter for open fracture type I or II +C2857122|T037|AB|S72.102C|ICD10CM|Unsp trochan fx left femur, init for opn fx type 3A/B/C|Unsp trochan fx left femur, init for opn fx type 3A/B/C +C2857123|T037|AB|S72.102D|ICD10CM|Unsp trochan fx left femur, subs for clos fx w routn heal|Unsp trochan fx left femur, subs for clos fx w routn heal +C2857124|T037|AB|S72.102E|ICD10CM|Unsp trochan fx l femr, 7thE|Unsp trochan fx l femr, 7thE +C2857125|T037|AB|S72.102F|ICD10CM|Unsp trochan fx l femr, 7thF|Unsp trochan fx l femr, 7thF +C2857126|T037|AB|S72.102G|ICD10CM|Unsp trochan fx left femur, subs for clos fx w delay heal|Unsp trochan fx left femur, subs for clos fx w delay heal +C2857127|T037|AB|S72.102H|ICD10CM|Unsp trochan fx l femr, 7thH|Unsp trochan fx l femr, 7thH +C2857128|T037|AB|S72.102J|ICD10CM|Unsp trochan fx l femr, 7thJ|Unsp trochan fx l femr, 7thJ +C2857129|T037|AB|S72.102K|ICD10CM|Unsp trochan fx left femur, subs for clos fx w nonunion|Unsp trochan fx left femur, subs for clos fx w nonunion +C2857130|T037|AB|S72.102M|ICD10CM|Unsp trochan fx l femur, subs for opn fx type I/2 w nonunion|Unsp trochan fx l femur, subs for opn fx type I/2 w nonunion +C2857131|T037|AB|S72.102N|ICD10CM|Unsp trochan fx l femr, 7thN|Unsp trochan fx l femr, 7thN +C2857132|T037|AB|S72.102P|ICD10CM|Unsp trochan fx left femur, subs for clos fx w malunion|Unsp trochan fx left femur, subs for clos fx w malunion +C2857133|T037|AB|S72.102Q|ICD10CM|Unsp trochan fx l femur, subs for opn fx type I/2 w malunion|Unsp trochan fx l femur, subs for opn fx type I/2 w malunion +C2857134|T037|AB|S72.102R|ICD10CM|Unsp trochan fx l femr, 7thR|Unsp trochan fx l femr, 7thR +C2857135|T037|AB|S72.102S|ICD10CM|Unspecified trochanteric fracture of left femur, sequela|Unspecified trochanteric fracture of left femur, sequela +C2857135|T037|PT|S72.102S|ICD10CM|Unspecified trochanteric fracture of left femur, sequela|Unspecified trochanteric fracture of left femur, sequela +C2857136|T037|AB|S72.109|ICD10CM|Unspecified trochanteric fracture of unspecified femur|Unspecified trochanteric fracture of unspecified femur +C2857136|T037|HT|S72.109|ICD10CM|Unspecified trochanteric fracture of unspecified femur|Unspecified trochanteric fracture of unspecified femur +C2857137|T037|AB|S72.109A|ICD10CM|Unsp trochanteric fracture of unsp femur, init for clos fx|Unsp trochanteric fracture of unsp femur, init for clos fx +C2857137|T037|PT|S72.109A|ICD10CM|Unspecified trochanteric fracture of unspecified femur, initial encounter for closed fracture|Unspecified trochanteric fracture of unspecified femur, initial encounter for closed fracture +C2857138|T037|AB|S72.109B|ICD10CM|Unsp trochan fx unsp femur, init for opn fx type I/2|Unsp trochan fx unsp femur, init for opn fx type I/2 +C2857139|T037|AB|S72.109C|ICD10CM|Unsp trochan fx unsp femur, init for opn fx type 3A/B/C|Unsp trochan fx unsp femur, init for opn fx type 3A/B/C +C2857140|T037|AB|S72.109D|ICD10CM|Unsp trochan fx unsp femur, subs for clos fx w routn heal|Unsp trochan fx unsp femur, subs for clos fx w routn heal +C2857141|T037|AB|S72.109E|ICD10CM|Unsp trochan fx unsp femr, 7thE|Unsp trochan fx unsp femr, 7thE +C2857142|T037|AB|S72.109F|ICD10CM|Unsp trochan fx unsp femr, 7thF|Unsp trochan fx unsp femr, 7thF +C2857143|T037|AB|S72.109G|ICD10CM|Unsp trochan fx unsp femur, subs for clos fx w delay heal|Unsp trochan fx unsp femur, subs for clos fx w delay heal +C2857144|T037|AB|S72.109H|ICD10CM|Unsp trochan fx unsp femr, 7thH|Unsp trochan fx unsp femr, 7thH +C2857145|T037|AB|S72.109J|ICD10CM|Unsp trochan fx unsp femr, 7thJ|Unsp trochan fx unsp femr, 7thJ +C2857146|T037|AB|S72.109K|ICD10CM|Unsp trochan fx unsp femur, subs for clos fx w nonunion|Unsp trochan fx unsp femur, subs for clos fx w nonunion +C2857147|T037|AB|S72.109M|ICD10CM|Unsp trochan fx unsp femr, 7thM|Unsp trochan fx unsp femr, 7thM +C2857148|T037|AB|S72.109N|ICD10CM|Unsp trochan fx unsp femr, 7thN|Unsp trochan fx unsp femr, 7thN +C2857149|T037|AB|S72.109P|ICD10CM|Unsp trochan fx unsp femur, subs for clos fx w malunion|Unsp trochan fx unsp femur, subs for clos fx w malunion +C2857150|T037|AB|S72.109Q|ICD10CM|Unsp trochan fx unsp femr, 7thQ|Unsp trochan fx unsp femr, 7thQ +C2857151|T037|AB|S72.109R|ICD10CM|Unsp trochan fx unsp femr, 7thR|Unsp trochan fx unsp femr, 7thR +C2857152|T037|AB|S72.109S|ICD10CM|Unsp trochanteric fracture of unspecified femur, sequela|Unsp trochanteric fracture of unspecified femur, sequela +C2857152|T037|PT|S72.109S|ICD10CM|Unspecified trochanteric fracture of unspecified femur, sequela|Unspecified trochanteric fracture of unspecified femur, sequela +C0919975|T037|AB|S72.11|ICD10CM|Fracture of greater trochanter of femur|Fracture of greater trochanter of femur +C0919975|T037|HT|S72.11|ICD10CM|Fracture of greater trochanter of femur|Fracture of greater trochanter of femur +C2857153|T037|AB|S72.111|ICD10CM|Displaced fracture of greater trochanter of right femur|Displaced fracture of greater trochanter of right femur +C2857153|T037|HT|S72.111|ICD10CM|Displaced fracture of greater trochanter of right femur|Displaced fracture of greater trochanter of right femur +C2857154|T037|AB|S72.111A|ICD10CM|Disp fx of greater trochanter of right femur, init|Disp fx of greater trochanter of right femur, init +C2857154|T037|PT|S72.111A|ICD10CM|Displaced fracture of greater trochanter of right femur, initial encounter for closed fracture|Displaced fracture of greater trochanter of right femur, initial encounter for closed fracture +C2857155|T037|AB|S72.111B|ICD10CM|Disp fx of greater trochanter of r femr, 7thB|Disp fx of greater trochanter of r femr, 7thB +C2857156|T037|AB|S72.111C|ICD10CM|Disp fx of greater trochanter of r femr, 7thC|Disp fx of greater trochanter of r femr, 7thC +C2857157|T037|AB|S72.111D|ICD10CM|Disp fx of greater trochanter of r femr, 7thD|Disp fx of greater trochanter of r femr, 7thD +C2857158|T037|AB|S72.111E|ICD10CM|Disp fx of greater trochanter of r femr, 7thE|Disp fx of greater trochanter of r femr, 7thE +C2857159|T037|AB|S72.111F|ICD10CM|Disp fx of greater trochanter of r femr, 7thF|Disp fx of greater trochanter of r femr, 7thF +C2857160|T037|AB|S72.111G|ICD10CM|Disp fx of greater trochanter of r femr, 7thG|Disp fx of greater trochanter of r femr, 7thG +C2857161|T037|AB|S72.111H|ICD10CM|Disp fx of greater trochanter of r femr, 7thH|Disp fx of greater trochanter of r femr, 7thH +C2857162|T037|AB|S72.111J|ICD10CM|Disp fx of greater trochanter of r femr, 7thJ|Disp fx of greater trochanter of r femr, 7thJ +C2857163|T037|AB|S72.111K|ICD10CM|Disp fx of greater trochanter of r femr, 7thK|Disp fx of greater trochanter of r femr, 7thK +C2857164|T037|AB|S72.111M|ICD10CM|Disp fx of greater trochanter of r femr, 7thM|Disp fx of greater trochanter of r femr, 7thM +C2857165|T037|AB|S72.111N|ICD10CM|Disp fx of greater trochanter of r femr, 7thN|Disp fx of greater trochanter of r femr, 7thN +C2857166|T037|AB|S72.111P|ICD10CM|Disp fx of greater trochanter of r femr, 7thP|Disp fx of greater trochanter of r femr, 7thP +C2857167|T037|AB|S72.111Q|ICD10CM|Disp fx of greater trochanter of r femr, 7thQ|Disp fx of greater trochanter of r femr, 7thQ +C2857168|T037|AB|S72.111R|ICD10CM|Disp fx of greater trochanter of r femr, 7thR|Disp fx of greater trochanter of r femr, 7thR +C2857169|T037|AB|S72.111S|ICD10CM|Disp fx of greater trochanter of right femur, sequela|Disp fx of greater trochanter of right femur, sequela +C2857169|T037|PT|S72.111S|ICD10CM|Displaced fracture of greater trochanter of right femur, sequela|Displaced fracture of greater trochanter of right femur, sequela +C2857170|T037|AB|S72.112|ICD10CM|Displaced fracture of greater trochanter of left femur|Displaced fracture of greater trochanter of left femur +C2857170|T037|HT|S72.112|ICD10CM|Displaced fracture of greater trochanter of left femur|Displaced fracture of greater trochanter of left femur +C2857171|T037|AB|S72.112A|ICD10CM|Disp fx of greater trochanter of left femur, init|Disp fx of greater trochanter of left femur, init +C2857171|T037|PT|S72.112A|ICD10CM|Displaced fracture of greater trochanter of left femur, initial encounter for closed fracture|Displaced fracture of greater trochanter of left femur, initial encounter for closed fracture +C2857172|T037|AB|S72.112B|ICD10CM|Disp fx of greater trochanter of l femr, 7thB|Disp fx of greater trochanter of l femr, 7thB +C2857173|T037|AB|S72.112C|ICD10CM|Disp fx of greater trochanter of l femr, 7thC|Disp fx of greater trochanter of l femr, 7thC +C2857174|T037|AB|S72.112D|ICD10CM|Disp fx of greater trochanter of l femr, 7thD|Disp fx of greater trochanter of l femr, 7thD +C2857175|T037|AB|S72.112E|ICD10CM|Disp fx of greater trochanter of l femr, 7thE|Disp fx of greater trochanter of l femr, 7thE +C2857176|T037|AB|S72.112F|ICD10CM|Disp fx of greater trochanter of l femr, 7thF|Disp fx of greater trochanter of l femr, 7thF +C2857177|T037|AB|S72.112G|ICD10CM|Disp fx of greater trochanter of l femr, 7thG|Disp fx of greater trochanter of l femr, 7thG +C2857178|T037|AB|S72.112H|ICD10CM|Disp fx of greater trochanter of l femr, 7thH|Disp fx of greater trochanter of l femr, 7thH +C2857179|T037|AB|S72.112J|ICD10CM|Disp fx of greater trochanter of l femr, 7thJ|Disp fx of greater trochanter of l femr, 7thJ +C2857180|T037|AB|S72.112K|ICD10CM|Disp fx of greater trochanter of l femr, 7thK|Disp fx of greater trochanter of l femr, 7thK +C2857181|T037|AB|S72.112M|ICD10CM|Disp fx of greater trochanter of l femr, 7thM|Disp fx of greater trochanter of l femr, 7thM +C2857182|T037|AB|S72.112N|ICD10CM|Disp fx of greater trochanter of l femr, 7thN|Disp fx of greater trochanter of l femr, 7thN +C2857183|T037|AB|S72.112P|ICD10CM|Disp fx of greater trochanter of l femr, 7thP|Disp fx of greater trochanter of l femr, 7thP +C2857184|T037|AB|S72.112Q|ICD10CM|Disp fx of greater trochanter of l femr, 7thQ|Disp fx of greater trochanter of l femr, 7thQ +C2857185|T037|AB|S72.112R|ICD10CM|Disp fx of greater trochanter of l femr, 7thR|Disp fx of greater trochanter of l femr, 7thR +C2857186|T037|AB|S72.112S|ICD10CM|Disp fx of greater trochanter of left femur, sequela|Disp fx of greater trochanter of left femur, sequela +C2857186|T037|PT|S72.112S|ICD10CM|Displaced fracture of greater trochanter of left femur, sequela|Displaced fracture of greater trochanter of left femur, sequela +C2857187|T037|AB|S72.113|ICD10CM|Disp fx of greater trochanter of unspecified femur|Disp fx of greater trochanter of unspecified femur +C2857187|T037|HT|S72.113|ICD10CM|Displaced fracture of greater trochanter of unspecified femur|Displaced fracture of greater trochanter of unspecified femur +C2857188|T037|AB|S72.113A|ICD10CM|Disp fx of greater trochanter of unsp femur, init|Disp fx of greater trochanter of unsp femur, init +C2857188|T037|PT|S72.113A|ICD10CM|Displaced fracture of greater trochanter of unspecified femur, initial encounter for closed fracture|Displaced fracture of greater trochanter of unspecified femur, initial encounter for closed fracture +C2857189|T037|AB|S72.113B|ICD10CM|Disp fx of greater trochanter of unsp femr, 7thB|Disp fx of greater trochanter of unsp femr, 7thB +C2857190|T037|AB|S72.113C|ICD10CM|Disp fx of greater trochanter of unsp femr, 7thC|Disp fx of greater trochanter of unsp femr, 7thC +C2857191|T037|AB|S72.113D|ICD10CM|Disp fx of greater trochanter of unsp femr, 7thD|Disp fx of greater trochanter of unsp femr, 7thD +C2857192|T037|AB|S72.113E|ICD10CM|Disp fx of greater trochanter of unsp femr, 7thE|Disp fx of greater trochanter of unsp femr, 7thE +C2857193|T037|AB|S72.113F|ICD10CM|Disp fx of greater trochanter of unsp femr, 7thF|Disp fx of greater trochanter of unsp femr, 7thF +C2857194|T037|AB|S72.113G|ICD10CM|Disp fx of greater trochanter of unsp femr, 7thG|Disp fx of greater trochanter of unsp femr, 7thG +C2857195|T037|AB|S72.113H|ICD10CM|Disp fx of greater trochanter of unsp femr, 7thH|Disp fx of greater trochanter of unsp femr, 7thH +C2857196|T037|AB|S72.113J|ICD10CM|Disp fx of greater trochanter of unsp femr, 7thJ|Disp fx of greater trochanter of unsp femr, 7thJ +C2857197|T037|AB|S72.113K|ICD10CM|Disp fx of greater trochanter of unsp femr, 7thK|Disp fx of greater trochanter of unsp femr, 7thK +C2857198|T037|AB|S72.113M|ICD10CM|Disp fx of greater trochanter of unsp femr, 7thM|Disp fx of greater trochanter of unsp femr, 7thM +C2857199|T037|AB|S72.113N|ICD10CM|Disp fx of greater trochanter of unsp femr, 7thN|Disp fx of greater trochanter of unsp femr, 7thN +C2857200|T037|AB|S72.113P|ICD10CM|Disp fx of greater trochanter of unsp femr, 7thP|Disp fx of greater trochanter of unsp femr, 7thP +C2857201|T037|AB|S72.113Q|ICD10CM|Disp fx of greater trochanter of unsp femr, 7thQ|Disp fx of greater trochanter of unsp femr, 7thQ +C2857202|T037|AB|S72.113R|ICD10CM|Disp fx of greater trochanter of unsp femr, 7thR|Disp fx of greater trochanter of unsp femr, 7thR +C2857203|T037|AB|S72.113S|ICD10CM|Disp fx of greater trochanter of unspecified femur, sequela|Disp fx of greater trochanter of unspecified femur, sequela +C2857203|T037|PT|S72.113S|ICD10CM|Displaced fracture of greater trochanter of unspecified femur, sequela|Displaced fracture of greater trochanter of unspecified femur, sequela +C2857204|T037|AB|S72.114|ICD10CM|Nondisplaced fracture of greater trochanter of right femur|Nondisplaced fracture of greater trochanter of right femur +C2857204|T037|HT|S72.114|ICD10CM|Nondisplaced fracture of greater trochanter of right femur|Nondisplaced fracture of greater trochanter of right femur +C2857205|T037|AB|S72.114A|ICD10CM|Nondisp fx of greater trochanter of right femur, init|Nondisp fx of greater trochanter of right femur, init +C2857205|T037|PT|S72.114A|ICD10CM|Nondisplaced fracture of greater trochanter of right femur, initial encounter for closed fracture|Nondisplaced fracture of greater trochanter of right femur, initial encounter for closed fracture +C2857206|T037|AB|S72.114B|ICD10CM|Nondisp fx of greater trochanter of r femr, 7thB|Nondisp fx of greater trochanter of r femr, 7thB +C2857207|T037|AB|S72.114C|ICD10CM|Nondisp fx of greater trochanter of r femr, 7thC|Nondisp fx of greater trochanter of r femr, 7thC +C2857208|T037|AB|S72.114D|ICD10CM|Nondisp fx of greater trochanter of r femr, 7thD|Nondisp fx of greater trochanter of r femr, 7thD +C2857209|T037|AB|S72.114E|ICD10CM|Nondisp fx of greater trochanter of r femr, 7thE|Nondisp fx of greater trochanter of r femr, 7thE +C2857210|T037|AB|S72.114F|ICD10CM|Nondisp fx of greater trochanter of r femr, 7thF|Nondisp fx of greater trochanter of r femr, 7thF +C2857211|T037|AB|S72.114G|ICD10CM|Nondisp fx of greater trochanter of r femr, 7thG|Nondisp fx of greater trochanter of r femr, 7thG +C2857212|T037|AB|S72.114H|ICD10CM|Nondisp fx of greater trochanter of r femr, 7thH|Nondisp fx of greater trochanter of r femr, 7thH +C2857213|T037|AB|S72.114J|ICD10CM|Nondisp fx of greater trochanter of r femr, 7thJ|Nondisp fx of greater trochanter of r femr, 7thJ +C2857214|T037|AB|S72.114K|ICD10CM|Nondisp fx of greater trochanter of r femr, 7thK|Nondisp fx of greater trochanter of r femr, 7thK +C2857215|T037|AB|S72.114M|ICD10CM|Nondisp fx of greater trochanter of r femr, 7thM|Nondisp fx of greater trochanter of r femr, 7thM +C2857216|T037|AB|S72.114N|ICD10CM|Nondisp fx of greater trochanter of r femr, 7thN|Nondisp fx of greater trochanter of r femr, 7thN +C2857217|T037|AB|S72.114P|ICD10CM|Nondisp fx of greater trochanter of r femr, 7thP|Nondisp fx of greater trochanter of r femr, 7thP +C2857218|T037|AB|S72.114Q|ICD10CM|Nondisp fx of greater trochanter of r femr, 7thQ|Nondisp fx of greater trochanter of r femr, 7thQ +C2857219|T037|AB|S72.114R|ICD10CM|Nondisp fx of greater trochanter of r femr, 7thR|Nondisp fx of greater trochanter of r femr, 7thR +C2857220|T037|AB|S72.114S|ICD10CM|Nondisp fx of greater trochanter of right femur, sequela|Nondisp fx of greater trochanter of right femur, sequela +C2857220|T037|PT|S72.114S|ICD10CM|Nondisplaced fracture of greater trochanter of right femur, sequela|Nondisplaced fracture of greater trochanter of right femur, sequela +C2857221|T037|AB|S72.115|ICD10CM|Nondisplaced fracture of greater trochanter of left femur|Nondisplaced fracture of greater trochanter of left femur +C2857221|T037|HT|S72.115|ICD10CM|Nondisplaced fracture of greater trochanter of left femur|Nondisplaced fracture of greater trochanter of left femur +C2857222|T037|AB|S72.115A|ICD10CM|Nondisp fx of greater trochanter of left femur, init|Nondisp fx of greater trochanter of left femur, init +C2857222|T037|PT|S72.115A|ICD10CM|Nondisplaced fracture of greater trochanter of left femur, initial encounter for closed fracture|Nondisplaced fracture of greater trochanter of left femur, initial encounter for closed fracture +C2857223|T037|AB|S72.115B|ICD10CM|Nondisp fx of greater trochanter of l femr, 7thB|Nondisp fx of greater trochanter of l femr, 7thB +C2857224|T037|AB|S72.115C|ICD10CM|Nondisp fx of greater trochanter of l femr, 7thC|Nondisp fx of greater trochanter of l femr, 7thC +C2857225|T037|AB|S72.115D|ICD10CM|Nondisp fx of greater trochanter of l femr, 7thD|Nondisp fx of greater trochanter of l femr, 7thD +C2857226|T037|AB|S72.115E|ICD10CM|Nondisp fx of greater trochanter of l femr, 7thE|Nondisp fx of greater trochanter of l femr, 7thE +C2857227|T037|AB|S72.115F|ICD10CM|Nondisp fx of greater trochanter of l femr, 7thF|Nondisp fx of greater trochanter of l femr, 7thF +C2857228|T037|AB|S72.115G|ICD10CM|Nondisp fx of greater trochanter of l femr, 7thG|Nondisp fx of greater trochanter of l femr, 7thG +C2857229|T037|AB|S72.115H|ICD10CM|Nondisp fx of greater trochanter of l femr, 7thH|Nondisp fx of greater trochanter of l femr, 7thH +C2857230|T037|AB|S72.115J|ICD10CM|Nondisp fx of greater trochanter of l femr, 7thJ|Nondisp fx of greater trochanter of l femr, 7thJ +C2857231|T037|AB|S72.115K|ICD10CM|Nondisp fx of greater trochanter of l femr, 7thK|Nondisp fx of greater trochanter of l femr, 7thK +C2857232|T037|AB|S72.115M|ICD10CM|Nondisp fx of greater trochanter of l femr, 7thM|Nondisp fx of greater trochanter of l femr, 7thM +C2857233|T037|AB|S72.115N|ICD10CM|Nondisp fx of greater trochanter of l femr, 7thN|Nondisp fx of greater trochanter of l femr, 7thN +C2857234|T037|AB|S72.115P|ICD10CM|Nondisp fx of greater trochanter of l femr, 7thP|Nondisp fx of greater trochanter of l femr, 7thP +C2857235|T037|AB|S72.115Q|ICD10CM|Nondisp fx of greater trochanter of l femr, 7thQ|Nondisp fx of greater trochanter of l femr, 7thQ +C2857236|T037|AB|S72.115R|ICD10CM|Nondisp fx of greater trochanter of l femr, 7thR|Nondisp fx of greater trochanter of l femr, 7thR +C2857237|T037|AB|S72.115S|ICD10CM|Nondisp fx of greater trochanter of left femur, sequela|Nondisp fx of greater trochanter of left femur, sequela +C2857237|T037|PT|S72.115S|ICD10CM|Nondisplaced fracture of greater trochanter of left femur, sequela|Nondisplaced fracture of greater trochanter of left femur, sequela +C2857238|T037|AB|S72.116|ICD10CM|Nondisp fx of greater trochanter of unspecified femur|Nondisp fx of greater trochanter of unspecified femur +C2857238|T037|HT|S72.116|ICD10CM|Nondisplaced fracture of greater trochanter of unspecified femur|Nondisplaced fracture of greater trochanter of unspecified femur +C2857239|T037|AB|S72.116A|ICD10CM|Nondisp fx of greater trochanter of unsp femur, init|Nondisp fx of greater trochanter of unsp femur, init +C2857240|T037|AB|S72.116B|ICD10CM|Nondisp fx of greater trochanter of unsp femr, 7thB|Nondisp fx of greater trochanter of unsp femr, 7thB +C2857241|T037|AB|S72.116C|ICD10CM|Nondisp fx of greater trochanter of unsp femr, 7thC|Nondisp fx of greater trochanter of unsp femr, 7thC +C2857242|T037|AB|S72.116D|ICD10CM|Nondisp fx of greater trochanter of unsp femr, 7thD|Nondisp fx of greater trochanter of unsp femr, 7thD +C2857243|T037|AB|S72.116E|ICD10CM|Nondisp fx of greater trochanter of unsp femr, 7thE|Nondisp fx of greater trochanter of unsp femr, 7thE +C2857244|T037|AB|S72.116F|ICD10CM|Nondisp fx of greater trochanter of unsp femr, 7thF|Nondisp fx of greater trochanter of unsp femr, 7thF +C2857245|T037|AB|S72.116G|ICD10CM|Nondisp fx of greater trochanter of unsp femr, 7thG|Nondisp fx of greater trochanter of unsp femr, 7thG +C2857246|T037|AB|S72.116H|ICD10CM|Nondisp fx of greater trochanter of unsp femr, 7thH|Nondisp fx of greater trochanter of unsp femr, 7thH +C2857247|T037|AB|S72.116J|ICD10CM|Nondisp fx of greater trochanter of unsp femr, 7thJ|Nondisp fx of greater trochanter of unsp femr, 7thJ +C2857248|T037|AB|S72.116K|ICD10CM|Nondisp fx of greater trochanter of unsp femr, 7thK|Nondisp fx of greater trochanter of unsp femr, 7thK +C2857249|T037|AB|S72.116M|ICD10CM|Nondisp fx of greater trochanter of unsp femr, 7thM|Nondisp fx of greater trochanter of unsp femr, 7thM +C2857250|T037|AB|S72.116N|ICD10CM|Nondisp fx of greater trochanter of unsp femr, 7thN|Nondisp fx of greater trochanter of unsp femr, 7thN +C2857251|T037|AB|S72.116P|ICD10CM|Nondisp fx of greater trochanter of unsp femr, 7thP|Nondisp fx of greater trochanter of unsp femr, 7thP +C2857252|T037|AB|S72.116Q|ICD10CM|Nondisp fx of greater trochanter of unsp femr, 7thQ|Nondisp fx of greater trochanter of unsp femr, 7thQ +C2857253|T037|AB|S72.116R|ICD10CM|Nondisp fx of greater trochanter of unsp femr, 7thR|Nondisp fx of greater trochanter of unsp femr, 7thR +C2857254|T037|AB|S72.116S|ICD10CM|Nondisp fx of greater trochanter of unsp femur, sequela|Nondisp fx of greater trochanter of unsp femur, sequela +C2857254|T037|PT|S72.116S|ICD10CM|Nondisplaced fracture of greater trochanter of unspecified femur, sequela|Nondisplaced fracture of greater trochanter of unspecified femur, sequela +C2857255|T037|AB|S72.12|ICD10CM|Fracture of lesser trochanter of femur|Fracture of lesser trochanter of femur +C2857255|T037|HT|S72.12|ICD10CM|Fracture of lesser trochanter of femur|Fracture of lesser trochanter of femur +C2857256|T037|AB|S72.121|ICD10CM|Displaced fracture of lesser trochanter of right femur|Displaced fracture of lesser trochanter of right femur +C2857256|T037|HT|S72.121|ICD10CM|Displaced fracture of lesser trochanter of right femur|Displaced fracture of lesser trochanter of right femur +C2857257|T037|AB|S72.121A|ICD10CM|Disp fx of lesser trochanter of right femur, init|Disp fx of lesser trochanter of right femur, init +C2857257|T037|PT|S72.121A|ICD10CM|Displaced fracture of lesser trochanter of right femur, initial encounter for closed fracture|Displaced fracture of lesser trochanter of right femur, initial encounter for closed fracture +C2857258|T037|AB|S72.121B|ICD10CM|Disp fx of less trochanter of r femr, 7thB|Disp fx of less trochanter of r femr, 7thB +C2857259|T037|AB|S72.121C|ICD10CM|Disp fx of less trochanter of r femr, 7thC|Disp fx of less trochanter of r femr, 7thC +C2857260|T037|AB|S72.121D|ICD10CM|Disp fx of less trochanter of r femr, 7thD|Disp fx of less trochanter of r femr, 7thD +C2857261|T037|AB|S72.121E|ICD10CM|Disp fx of less trochanter of r femr, 7thE|Disp fx of less trochanter of r femr, 7thE +C2857262|T037|AB|S72.121F|ICD10CM|Disp fx of less trochanter of r femr, 7thF|Disp fx of less trochanter of r femr, 7thF +C2857263|T037|AB|S72.121G|ICD10CM|Disp fx of less trochanter of r femr, 7thG|Disp fx of less trochanter of r femr, 7thG +C2857264|T037|AB|S72.121H|ICD10CM|Disp fx of less trochanter of r femr, 7thH|Disp fx of less trochanter of r femr, 7thH +C2857265|T037|AB|S72.121J|ICD10CM|Disp fx of less trochanter of r femr, 7thJ|Disp fx of less trochanter of r femr, 7thJ +C2857266|T037|AB|S72.121K|ICD10CM|Disp fx of less trochanter of r femr, 7thK|Disp fx of less trochanter of r femr, 7thK +C2857267|T037|AB|S72.121M|ICD10CM|Disp fx of less trochanter of r femr, 7thM|Disp fx of less trochanter of r femr, 7thM +C2857268|T037|AB|S72.121N|ICD10CM|Disp fx of less trochanter of r femr, 7thN|Disp fx of less trochanter of r femr, 7thN +C2857269|T037|AB|S72.121P|ICD10CM|Disp fx of less trochanter of r femr, 7thP|Disp fx of less trochanter of r femr, 7thP +C2857270|T037|AB|S72.121Q|ICD10CM|Disp fx of less trochanter of r femr, 7thQ|Disp fx of less trochanter of r femr, 7thQ +C2857271|T037|AB|S72.121R|ICD10CM|Disp fx of less trochanter of r femr, 7thR|Disp fx of less trochanter of r femr, 7thR +C2857272|T037|AB|S72.121S|ICD10CM|Disp fx of lesser trochanter of right femur, sequela|Disp fx of lesser trochanter of right femur, sequela +C2857272|T037|PT|S72.121S|ICD10CM|Displaced fracture of lesser trochanter of right femur, sequela|Displaced fracture of lesser trochanter of right femur, sequela +C2857273|T037|AB|S72.122|ICD10CM|Displaced fracture of lesser trochanter of left femur|Displaced fracture of lesser trochanter of left femur +C2857273|T037|HT|S72.122|ICD10CM|Displaced fracture of lesser trochanter of left femur|Displaced fracture of lesser trochanter of left femur +C2857274|T037|AB|S72.122A|ICD10CM|Disp fx of lesser trochanter of left femur, init for clos fx|Disp fx of lesser trochanter of left femur, init for clos fx +C2857274|T037|PT|S72.122A|ICD10CM|Displaced fracture of lesser trochanter of left femur, initial encounter for closed fracture|Displaced fracture of lesser trochanter of left femur, initial encounter for closed fracture +C2857275|T037|AB|S72.122B|ICD10CM|Disp fx of less trochanter of l femr, 7thB|Disp fx of less trochanter of l femr, 7thB +C2857276|T037|AB|S72.122C|ICD10CM|Disp fx of less trochanter of l femr, 7thC|Disp fx of less trochanter of l femr, 7thC +C2857277|T037|AB|S72.122D|ICD10CM|Disp fx of less trochanter of l femr, 7thD|Disp fx of less trochanter of l femr, 7thD +C2857278|T037|AB|S72.122E|ICD10CM|Disp fx of less trochanter of l femr, 7thE|Disp fx of less trochanter of l femr, 7thE +C2857279|T037|AB|S72.122F|ICD10CM|Disp fx of less trochanter of l femr, 7thF|Disp fx of less trochanter of l femr, 7thF +C2857280|T037|AB|S72.122G|ICD10CM|Disp fx of less trochanter of l femr, 7thG|Disp fx of less trochanter of l femr, 7thG +C2857281|T037|AB|S72.122H|ICD10CM|Disp fx of less trochanter of l femr, 7thH|Disp fx of less trochanter of l femr, 7thH +C2857282|T037|AB|S72.122J|ICD10CM|Disp fx of less trochanter of l femr, 7thJ|Disp fx of less trochanter of l femr, 7thJ +C2857283|T037|AB|S72.122K|ICD10CM|Disp fx of less trochanter of l femr, 7thK|Disp fx of less trochanter of l femr, 7thK +C2857284|T037|AB|S72.122M|ICD10CM|Disp fx of less trochanter of l femr, 7thM|Disp fx of less trochanter of l femr, 7thM +C2857285|T037|AB|S72.122N|ICD10CM|Disp fx of less trochanter of l femr, 7thN|Disp fx of less trochanter of l femr, 7thN +C2857286|T037|AB|S72.122P|ICD10CM|Disp fx of less trochanter of l femr, 7thP|Disp fx of less trochanter of l femr, 7thP +C2857287|T037|AB|S72.122Q|ICD10CM|Disp fx of less trochanter of l femr, 7thQ|Disp fx of less trochanter of l femr, 7thQ +C2857288|T037|AB|S72.122R|ICD10CM|Disp fx of less trochanter of l femr, 7thR|Disp fx of less trochanter of l femr, 7thR +C2857289|T037|AB|S72.122S|ICD10CM|Disp fx of lesser trochanter of left femur, sequela|Disp fx of lesser trochanter of left femur, sequela +C2857289|T037|PT|S72.122S|ICD10CM|Displaced fracture of lesser trochanter of left femur, sequela|Displaced fracture of lesser trochanter of left femur, sequela +C2857290|T037|AB|S72.123|ICD10CM|Displaced fracture of lesser trochanter of unspecified femur|Displaced fracture of lesser trochanter of unspecified femur +C2857290|T037|HT|S72.123|ICD10CM|Displaced fracture of lesser trochanter of unspecified femur|Displaced fracture of lesser trochanter of unspecified femur +C2857291|T037|AB|S72.123A|ICD10CM|Disp fx of lesser trochanter of unsp femur, init for clos fx|Disp fx of lesser trochanter of unsp femur, init for clos fx +C2857291|T037|PT|S72.123A|ICD10CM|Displaced fracture of lesser trochanter of unspecified femur, initial encounter for closed fracture|Displaced fracture of lesser trochanter of unspecified femur, initial encounter for closed fracture +C2857292|T037|AB|S72.123B|ICD10CM|Disp fx of less trochanter of unsp femr, 7thB|Disp fx of less trochanter of unsp femr, 7thB +C2857293|T037|AB|S72.123C|ICD10CM|Disp fx of less trochanter of unsp femr, 7thC|Disp fx of less trochanter of unsp femr, 7thC +C2857294|T037|AB|S72.123D|ICD10CM|Disp fx of less trochanter of unsp femr, 7thD|Disp fx of less trochanter of unsp femr, 7thD +C2857295|T037|AB|S72.123E|ICD10CM|Disp fx of less trochanter of unsp femr, 7thE|Disp fx of less trochanter of unsp femr, 7thE +C2857296|T037|AB|S72.123F|ICD10CM|Disp fx of less trochanter of unsp femr, 7thF|Disp fx of less trochanter of unsp femr, 7thF +C2857297|T037|AB|S72.123G|ICD10CM|Disp fx of less trochanter of unsp femr, 7thG|Disp fx of less trochanter of unsp femr, 7thG +C2857298|T037|AB|S72.123H|ICD10CM|Disp fx of less trochanter of unsp femr, 7thH|Disp fx of less trochanter of unsp femr, 7thH +C2857299|T037|AB|S72.123J|ICD10CM|Disp fx of less trochanter of unsp femr, 7thJ|Disp fx of less trochanter of unsp femr, 7thJ +C2857300|T037|AB|S72.123K|ICD10CM|Disp fx of less trochanter of unsp femr, 7thK|Disp fx of less trochanter of unsp femr, 7thK +C2857301|T037|AB|S72.123M|ICD10CM|Disp fx of less trochanter of unsp femr, 7thM|Disp fx of less trochanter of unsp femr, 7thM +C2857302|T037|AB|S72.123N|ICD10CM|Disp fx of less trochanter of unsp femr, 7thN|Disp fx of less trochanter of unsp femr, 7thN +C2857303|T037|AB|S72.123P|ICD10CM|Disp fx of less trochanter of unsp femr, 7thP|Disp fx of less trochanter of unsp femr, 7thP +C2857304|T037|AB|S72.123Q|ICD10CM|Disp fx of less trochanter of unsp femr, 7thQ|Disp fx of less trochanter of unsp femr, 7thQ +C2857305|T037|AB|S72.123R|ICD10CM|Disp fx of less trochanter of unsp femr, 7thR|Disp fx of less trochanter of unsp femr, 7thR +C2857306|T037|AB|S72.123S|ICD10CM|Disp fx of lesser trochanter of unspecified femur, sequela|Disp fx of lesser trochanter of unspecified femur, sequela +C2857306|T037|PT|S72.123S|ICD10CM|Displaced fracture of lesser trochanter of unspecified femur, sequela|Displaced fracture of lesser trochanter of unspecified femur, sequela +C2857307|T037|AB|S72.124|ICD10CM|Nondisplaced fracture of lesser trochanter of right femur|Nondisplaced fracture of lesser trochanter of right femur +C2857307|T037|HT|S72.124|ICD10CM|Nondisplaced fracture of lesser trochanter of right femur|Nondisplaced fracture of lesser trochanter of right femur +C2857308|T037|AB|S72.124A|ICD10CM|Nondisp fx of lesser trochanter of right femur, init|Nondisp fx of lesser trochanter of right femur, init +C2857308|T037|PT|S72.124A|ICD10CM|Nondisplaced fracture of lesser trochanter of right femur, initial encounter for closed fracture|Nondisplaced fracture of lesser trochanter of right femur, initial encounter for closed fracture +C2857309|T037|AB|S72.124B|ICD10CM|Nondisp fx of less trochanter of r femr, 7thB|Nondisp fx of less trochanter of r femr, 7thB +C2857310|T037|AB|S72.124C|ICD10CM|Nondisp fx of less trochanter of r femr, 7thC|Nondisp fx of less trochanter of r femr, 7thC +C2857311|T037|AB|S72.124D|ICD10CM|Nondisp fx of less trochanter of r femr, 7thD|Nondisp fx of less trochanter of r femr, 7thD +C2857312|T037|AB|S72.124E|ICD10CM|Nondisp fx of less trochanter of r femr, 7thE|Nondisp fx of less trochanter of r femr, 7thE +C2857313|T037|AB|S72.124F|ICD10CM|Nondisp fx of less trochanter of r femr, 7thF|Nondisp fx of less trochanter of r femr, 7thF +C2857314|T037|AB|S72.124G|ICD10CM|Nondisp fx of less trochanter of r femr, 7thG|Nondisp fx of less trochanter of r femr, 7thG +C2857315|T037|AB|S72.124H|ICD10CM|Nondisp fx of less trochanter of r femr, 7thH|Nondisp fx of less trochanter of r femr, 7thH +C2857316|T037|AB|S72.124J|ICD10CM|Nondisp fx of less trochanter of r femr, 7thJ|Nondisp fx of less trochanter of r femr, 7thJ +C2857317|T037|AB|S72.124K|ICD10CM|Nondisp fx of less trochanter of r femr, 7thK|Nondisp fx of less trochanter of r femr, 7thK +C2857318|T037|AB|S72.124M|ICD10CM|Nondisp fx of less trochanter of r femr, 7thM|Nondisp fx of less trochanter of r femr, 7thM +C2857319|T037|AB|S72.124N|ICD10CM|Nondisp fx of less trochanter of r femr, 7thN|Nondisp fx of less trochanter of r femr, 7thN +C2857320|T037|AB|S72.124P|ICD10CM|Nondisp fx of less trochanter of r femr, 7thP|Nondisp fx of less trochanter of r femr, 7thP +C2857321|T037|AB|S72.124Q|ICD10CM|Nondisp fx of less trochanter of r femr, 7thQ|Nondisp fx of less trochanter of r femr, 7thQ +C2857322|T037|AB|S72.124R|ICD10CM|Nondisp fx of less trochanter of r femr, 7thR|Nondisp fx of less trochanter of r femr, 7thR +C2857323|T037|AB|S72.124S|ICD10CM|Nondisp fx of lesser trochanter of right femur, sequela|Nondisp fx of lesser trochanter of right femur, sequela +C2857323|T037|PT|S72.124S|ICD10CM|Nondisplaced fracture of lesser trochanter of right femur, sequela|Nondisplaced fracture of lesser trochanter of right femur, sequela +C2857324|T037|AB|S72.125|ICD10CM|Nondisplaced fracture of lesser trochanter of left femur|Nondisplaced fracture of lesser trochanter of left femur +C2857324|T037|HT|S72.125|ICD10CM|Nondisplaced fracture of lesser trochanter of left femur|Nondisplaced fracture of lesser trochanter of left femur +C2857325|T037|AB|S72.125A|ICD10CM|Nondisp fx of lesser trochanter of left femur, init|Nondisp fx of lesser trochanter of left femur, init +C2857325|T037|PT|S72.125A|ICD10CM|Nondisplaced fracture of lesser trochanter of left femur, initial encounter for closed fracture|Nondisplaced fracture of lesser trochanter of left femur, initial encounter for closed fracture +C2857326|T037|AB|S72.125B|ICD10CM|Nondisp fx of less trochanter of l femr, 7thB|Nondisp fx of less trochanter of l femr, 7thB +C2857327|T037|AB|S72.125C|ICD10CM|Nondisp fx of less trochanter of l femr, 7thC|Nondisp fx of less trochanter of l femr, 7thC +C2857328|T037|AB|S72.125D|ICD10CM|Nondisp fx of less trochanter of l femr, 7thD|Nondisp fx of less trochanter of l femr, 7thD +C2857329|T037|AB|S72.125E|ICD10CM|Nondisp fx of less trochanter of l femr, 7thE|Nondisp fx of less trochanter of l femr, 7thE +C2857330|T037|AB|S72.125F|ICD10CM|Nondisp fx of less trochanter of l femr, 7thF|Nondisp fx of less trochanter of l femr, 7thF +C2857331|T037|AB|S72.125G|ICD10CM|Nondisp fx of less trochanter of l femr, 7thG|Nondisp fx of less trochanter of l femr, 7thG +C2857332|T037|AB|S72.125H|ICD10CM|Nondisp fx of less trochanter of l femr, 7thH|Nondisp fx of less trochanter of l femr, 7thH +C2857333|T037|AB|S72.125J|ICD10CM|Nondisp fx of less trochanter of l femr, 7thJ|Nondisp fx of less trochanter of l femr, 7thJ +C2857334|T037|AB|S72.125K|ICD10CM|Nondisp fx of less trochanter of l femr, 7thK|Nondisp fx of less trochanter of l femr, 7thK +C2857335|T037|AB|S72.125M|ICD10CM|Nondisp fx of less trochanter of l femr, 7thM|Nondisp fx of less trochanter of l femr, 7thM +C2857336|T037|AB|S72.125N|ICD10CM|Nondisp fx of less trochanter of l femr, 7thN|Nondisp fx of less trochanter of l femr, 7thN +C2857337|T037|AB|S72.125P|ICD10CM|Nondisp fx of less trochanter of l femr, 7thP|Nondisp fx of less trochanter of l femr, 7thP +C2857338|T037|AB|S72.125Q|ICD10CM|Nondisp fx of less trochanter of l femr, 7thQ|Nondisp fx of less trochanter of l femr, 7thQ +C2857339|T037|AB|S72.125R|ICD10CM|Nondisp fx of less trochanter of l femr, 7thR|Nondisp fx of less trochanter of l femr, 7thR +C2857340|T037|AB|S72.125S|ICD10CM|Nondisp fx of lesser trochanter of left femur, sequela|Nondisp fx of lesser trochanter of left femur, sequela +C2857340|T037|PT|S72.125S|ICD10CM|Nondisplaced fracture of lesser trochanter of left femur, sequela|Nondisplaced fracture of lesser trochanter of left femur, sequela +C2857341|T037|AB|S72.126|ICD10CM|Nondisp fx of lesser trochanter of unspecified femur|Nondisp fx of lesser trochanter of unspecified femur +C2857341|T037|HT|S72.126|ICD10CM|Nondisplaced fracture of lesser trochanter of unspecified femur|Nondisplaced fracture of lesser trochanter of unspecified femur +C2857342|T037|AB|S72.126A|ICD10CM|Nondisp fx of lesser trochanter of unsp femur, init|Nondisp fx of lesser trochanter of unsp femur, init +C2857343|T037|AB|S72.126B|ICD10CM|Nondisp fx of less trochanter of unsp femr, 7thB|Nondisp fx of less trochanter of unsp femr, 7thB +C2857344|T037|AB|S72.126C|ICD10CM|Nondisp fx of less trochanter of unsp femr, 7thC|Nondisp fx of less trochanter of unsp femr, 7thC +C2857345|T037|AB|S72.126D|ICD10CM|Nondisp fx of less trochanter of unsp femr, 7thD|Nondisp fx of less trochanter of unsp femr, 7thD +C2857346|T037|AB|S72.126E|ICD10CM|Nondisp fx of less trochanter of unsp femr, 7thE|Nondisp fx of less trochanter of unsp femr, 7thE +C2857347|T037|AB|S72.126F|ICD10CM|Nondisp fx of less trochanter of unsp femr, 7thF|Nondisp fx of less trochanter of unsp femr, 7thF +C2857348|T037|AB|S72.126G|ICD10CM|Nondisp fx of less trochanter of unsp femr, 7thG|Nondisp fx of less trochanter of unsp femr, 7thG +C2857349|T037|AB|S72.126H|ICD10CM|Nondisp fx of less trochanter of unsp femr, 7thH|Nondisp fx of less trochanter of unsp femr, 7thH +C2857350|T037|AB|S72.126J|ICD10CM|Nondisp fx of less trochanter of unsp femr, 7thJ|Nondisp fx of less trochanter of unsp femr, 7thJ +C2857351|T037|AB|S72.126K|ICD10CM|Nondisp fx of less trochanter of unsp femr, 7thK|Nondisp fx of less trochanter of unsp femr, 7thK +C2857352|T037|AB|S72.126M|ICD10CM|Nondisp fx of less trochanter of unsp femr, 7thM|Nondisp fx of less trochanter of unsp femr, 7thM +C2857353|T037|AB|S72.126N|ICD10CM|Nondisp fx of less trochanter of unsp femr, 7thN|Nondisp fx of less trochanter of unsp femr, 7thN +C2857354|T037|AB|S72.126P|ICD10CM|Nondisp fx of less trochanter of unsp femr, 7thP|Nondisp fx of less trochanter of unsp femr, 7thP +C2857355|T037|AB|S72.126Q|ICD10CM|Nondisp fx of less trochanter of unsp femr, 7thQ|Nondisp fx of less trochanter of unsp femr, 7thQ +C2857356|T037|AB|S72.126R|ICD10CM|Nondisp fx of less trochanter of unsp femr, 7thR|Nondisp fx of less trochanter of unsp femr, 7thR +C2857357|T037|AB|S72.126S|ICD10CM|Nondisp fx of lesser trochanter of unsp femur, sequela|Nondisp fx of lesser trochanter of unsp femur, sequela +C2857357|T037|PT|S72.126S|ICD10CM|Nondisplaced fracture of lesser trochanter of unspecified femur, sequela|Nondisplaced fracture of lesser trochanter of unspecified femur, sequela +C2857358|T037|AB|S72.13|ICD10CM|Apophyseal fracture of femur|Apophyseal fracture of femur +C2857358|T037|HT|S72.13|ICD10CM|Apophyseal fracture of femur|Apophyseal fracture of femur +C2857359|T037|AB|S72.131|ICD10CM|Displaced apophyseal fracture of right femur|Displaced apophyseal fracture of right femur +C2857359|T037|HT|S72.131|ICD10CM|Displaced apophyseal fracture of right femur|Displaced apophyseal fracture of right femur +C2857360|T037|AB|S72.131A|ICD10CM|Displaced apophyseal fracture of right femur, init|Displaced apophyseal fracture of right femur, init +C2857360|T037|PT|S72.131A|ICD10CM|Displaced apophyseal fracture of right femur, initial encounter for closed fracture|Displaced apophyseal fracture of right femur, initial encounter for closed fracture +C2857361|T037|PT|S72.131B|ICD10CM|Displaced apophyseal fracture of right femur, initial encounter for open fracture type I or II|Displaced apophyseal fracture of right femur, initial encounter for open fracture type I or II +C2857361|T037|AB|S72.131B|ICD10CM|Displaced apophyseal fx r femur, init for opn fx type I/2|Displaced apophyseal fx r femur, init for opn fx type I/2 +C2857362|T037|AB|S72.131C|ICD10CM|Displaced apophyseal fx r femur, init for opn fx type 3A/B/C|Displaced apophyseal fx r femur, init for opn fx type 3A/B/C +C2857363|T037|AB|S72.131D|ICD10CM|Displ apophyseal fx r femur, subs for clos fx w routn heal|Displ apophyseal fx r femur, subs for clos fx w routn heal +C2857364|T037|AB|S72.131E|ICD10CM|Displ apophyseal fx r femr, 7thE|Displ apophyseal fx r femr, 7thE +C2857365|T037|AB|S72.131F|ICD10CM|Displ apophyseal fx r femr, 7thF|Displ apophyseal fx r femr, 7thF +C2857366|T037|AB|S72.131G|ICD10CM|Displ apophyseal fx r femur, subs for clos fx w delay heal|Displ apophyseal fx r femur, subs for clos fx w delay heal +C2857367|T037|AB|S72.131H|ICD10CM|Displ apophyseal fx r femr, 7thH|Displ apophyseal fx r femr, 7thH +C2857368|T037|AB|S72.131J|ICD10CM|Displ apophyseal fx r femr, 7thJ|Displ apophyseal fx r femr, 7thJ +C2857369|T037|PT|S72.131K|ICD10CM|Displaced apophyseal fracture of right femur, subsequent encounter for closed fracture with nonunion|Displaced apophyseal fracture of right femur, subsequent encounter for closed fracture with nonunion +C2857369|T037|AB|S72.131K|ICD10CM|Displaced apophyseal fx r femur, subs for clos fx w nonunion|Displaced apophyseal fx r femur, subs for clos fx w nonunion +C2857370|T037|AB|S72.131M|ICD10CM|Displ apophyseal fx r femr, 7thM|Displ apophyseal fx r femr, 7thM +C2857371|T037|AB|S72.131N|ICD10CM|Displ apophyseal fx r femr, 7thN|Displ apophyseal fx r femr, 7thN +C2857372|T037|PT|S72.131P|ICD10CM|Displaced apophyseal fracture of right femur, subsequent encounter for closed fracture with malunion|Displaced apophyseal fracture of right femur, subsequent encounter for closed fracture with malunion +C2857372|T037|AB|S72.131P|ICD10CM|Displaced apophyseal fx r femur, subs for clos fx w malunion|Displaced apophyseal fx r femur, subs for clos fx w malunion +C2857373|T037|AB|S72.131Q|ICD10CM|Displ apophyseal fx r femr, 7thQ|Displ apophyseal fx r femr, 7thQ +C2857374|T037|AB|S72.131R|ICD10CM|Displ apophyseal fx r femr, 7thR|Displ apophyseal fx r femr, 7thR +C2857375|T037|PT|S72.131S|ICD10CM|Displaced apophyseal fracture of right femur, sequela|Displaced apophyseal fracture of right femur, sequela +C2857375|T037|AB|S72.131S|ICD10CM|Displaced apophyseal fracture of right femur, sequela|Displaced apophyseal fracture of right femur, sequela +C2857376|T037|AB|S72.132|ICD10CM|Displaced apophyseal fracture of left femur|Displaced apophyseal fracture of left femur +C2857376|T037|HT|S72.132|ICD10CM|Displaced apophyseal fracture of left femur|Displaced apophyseal fracture of left femur +C2857377|T037|AB|S72.132A|ICD10CM|Displaced apophyseal fracture of left femur, init|Displaced apophyseal fracture of left femur, init +C2857377|T037|PT|S72.132A|ICD10CM|Displaced apophyseal fracture of left femur, initial encounter for closed fracture|Displaced apophyseal fracture of left femur, initial encounter for closed fracture +C2857378|T037|PT|S72.132B|ICD10CM|Displaced apophyseal fracture of left femur, initial encounter for open fracture type I or II|Displaced apophyseal fracture of left femur, initial encounter for open fracture type I or II +C2857378|T037|AB|S72.132B|ICD10CM|Displaced apophyseal fx left femur, init for opn fx type I/2|Displaced apophyseal fx left femur, init for opn fx type I/2 +C2857379|T037|AB|S72.132C|ICD10CM|Displaced apophyseal fx l femur, init for opn fx type 3A/B/C|Displaced apophyseal fx l femur, init for opn fx type 3A/B/C +C2857380|T037|AB|S72.132D|ICD10CM|Displ apophyseal fx l femur, subs for clos fx w routn heal|Displ apophyseal fx l femur, subs for clos fx w routn heal +C2857381|T037|AB|S72.132E|ICD10CM|Displ apophyseal fx l femr, 7thE|Displ apophyseal fx l femr, 7thE +C2857382|T037|AB|S72.132F|ICD10CM|Displ apophyseal fx l femr, 7thF|Displ apophyseal fx l femr, 7thF +C2857383|T037|AB|S72.132G|ICD10CM|Displ apophyseal fx l femur, subs for clos fx w delay heal|Displ apophyseal fx l femur, subs for clos fx w delay heal +C2857384|T037|AB|S72.132H|ICD10CM|Displ apophyseal fx l femr, 7thH|Displ apophyseal fx l femr, 7thH +C2857385|T037|AB|S72.132J|ICD10CM|Displ apophyseal fx l femr, 7thJ|Displ apophyseal fx l femr, 7thJ +C2857386|T037|PT|S72.132K|ICD10CM|Displaced apophyseal fracture of left femur, subsequent encounter for closed fracture with nonunion|Displaced apophyseal fracture of left femur, subsequent encounter for closed fracture with nonunion +C2857386|T037|AB|S72.132K|ICD10CM|Displaced apophyseal fx l femur, subs for clos fx w nonunion|Displaced apophyseal fx l femur, subs for clos fx w nonunion +C2857387|T037|AB|S72.132M|ICD10CM|Displ apophyseal fx l femr, 7thM|Displ apophyseal fx l femr, 7thM +C2857388|T037|AB|S72.132N|ICD10CM|Displ apophyseal fx l femr, 7thN|Displ apophyseal fx l femr, 7thN +C2857389|T037|PT|S72.132P|ICD10CM|Displaced apophyseal fracture of left femur, subsequent encounter for closed fracture with malunion|Displaced apophyseal fracture of left femur, subsequent encounter for closed fracture with malunion +C2857389|T037|AB|S72.132P|ICD10CM|Displaced apophyseal fx l femur, subs for clos fx w malunion|Displaced apophyseal fx l femur, subs for clos fx w malunion +C2857390|T037|AB|S72.132Q|ICD10CM|Displ apophyseal fx l femr, 7thQ|Displ apophyseal fx l femr, 7thQ +C2857391|T037|AB|S72.132R|ICD10CM|Displ apophyseal fx l femr, 7thR|Displ apophyseal fx l femr, 7thR +C2857392|T037|PT|S72.132S|ICD10CM|Displaced apophyseal fracture of left femur, sequela|Displaced apophyseal fracture of left femur, sequela +C2857392|T037|AB|S72.132S|ICD10CM|Displaced apophyseal fracture of left femur, sequela|Displaced apophyseal fracture of left femur, sequela +C2857393|T037|AB|S72.133|ICD10CM|Displaced apophyseal fracture of unspecified femur|Displaced apophyseal fracture of unspecified femur +C2857393|T037|HT|S72.133|ICD10CM|Displaced apophyseal fracture of unspecified femur|Displaced apophyseal fracture of unspecified femur +C2857394|T037|AB|S72.133A|ICD10CM|Displaced apophyseal fracture of unsp femur, init|Displaced apophyseal fracture of unsp femur, init +C2857394|T037|PT|S72.133A|ICD10CM|Displaced apophyseal fracture of unspecified femur, initial encounter for closed fracture|Displaced apophyseal fracture of unspecified femur, initial encounter for closed fracture +C2857395|T037|PT|S72.133B|ICD10CM|Displaced apophyseal fracture of unspecified femur, initial encounter for open fracture type I or II|Displaced apophyseal fracture of unspecified femur, initial encounter for open fracture type I or II +C2857395|T037|AB|S72.133B|ICD10CM|Displaced apophyseal fx unsp femur, init for opn fx type I/2|Displaced apophyseal fx unsp femur, init for opn fx type I/2 +C2857396|T037|AB|S72.133C|ICD10CM|Displ apophyseal fx unsp femur, init for opn fx type 3A/B/C|Displ apophyseal fx unsp femur, init for opn fx type 3A/B/C +C2857397|T037|AB|S72.133D|ICD10CM|Displ apophyseal fx unsp femr, subs for clos fx w routn heal|Displ apophyseal fx unsp femr, subs for clos fx w routn heal +C2857398|T037|AB|S72.133E|ICD10CM|Displ apophyseal fx unsp femr, 7thE|Displ apophyseal fx unsp femr, 7thE +C2857399|T037|AB|S72.133F|ICD10CM|Displ apophyseal fx unsp femr, 7thF|Displ apophyseal fx unsp femr, 7thF +C2857400|T037|AB|S72.133G|ICD10CM|Displ apophyseal fx unsp femr, subs for clos fx w delay heal|Displ apophyseal fx unsp femr, subs for clos fx w delay heal +C2857401|T037|AB|S72.133H|ICD10CM|Displ apophyseal fx unsp femr, 7thH|Displ apophyseal fx unsp femr, 7thH +C2857402|T037|AB|S72.133J|ICD10CM|Displ apophyseal fx unsp femr, 7thJ|Displ apophyseal fx unsp femr, 7thJ +C2857403|T037|AB|S72.133K|ICD10CM|Displ apophyseal fx unsp femur, subs for clos fx w nonunion|Displ apophyseal fx unsp femur, subs for clos fx w nonunion +C2857404|T037|AB|S72.133M|ICD10CM|Displ apophyseal fx unsp femr, 7thM|Displ apophyseal fx unsp femr, 7thM +C2857405|T037|AB|S72.133N|ICD10CM|Displ apophyseal fx unsp femr, 7thN|Displ apophyseal fx unsp femr, 7thN +C2857406|T037|AB|S72.133P|ICD10CM|Displ apophyseal fx unsp femur, subs for clos fx w malunion|Displ apophyseal fx unsp femur, subs for clos fx w malunion +C2857407|T037|AB|S72.133Q|ICD10CM|Displ apophyseal fx unsp femr, 7thQ|Displ apophyseal fx unsp femr, 7thQ +C2857408|T037|AB|S72.133R|ICD10CM|Displ apophyseal fx unsp femr, 7thR|Displ apophyseal fx unsp femr, 7thR +C2857409|T037|PT|S72.133S|ICD10CM|Displaced apophyseal fracture of unspecified femur, sequela|Displaced apophyseal fracture of unspecified femur, sequela +C2857409|T037|AB|S72.133S|ICD10CM|Displaced apophyseal fracture of unspecified femur, sequela|Displaced apophyseal fracture of unspecified femur, sequela +C2857410|T037|AB|S72.134|ICD10CM|Nondisplaced apophyseal fracture of right femur|Nondisplaced apophyseal fracture of right femur +C2857410|T037|HT|S72.134|ICD10CM|Nondisplaced apophyseal fracture of right femur|Nondisplaced apophyseal fracture of right femur +C2857411|T037|AB|S72.134A|ICD10CM|Nondisplaced apophyseal fracture of right femur, init|Nondisplaced apophyseal fracture of right femur, init +C2857411|T037|PT|S72.134A|ICD10CM|Nondisplaced apophyseal fracture of right femur, initial encounter for closed fracture|Nondisplaced apophyseal fracture of right femur, initial encounter for closed fracture +C2857412|T037|AB|S72.134B|ICD10CM|Nondisp apophyseal fx right femur, init for opn fx type I/2|Nondisp apophyseal fx right femur, init for opn fx type I/2 +C2857412|T037|PT|S72.134B|ICD10CM|Nondisplaced apophyseal fracture of right femur, initial encounter for open fracture type I or II|Nondisplaced apophyseal fracture of right femur, initial encounter for open fracture type I or II +C2857413|T037|AB|S72.134C|ICD10CM|Nondisp apophyseal fx r femur, init for opn fx type 3A/B/C|Nondisp apophyseal fx r femur, init for opn fx type 3A/B/C +C2857414|T037|AB|S72.134D|ICD10CM|Nondisp apophyseal fx r femur, subs for clos fx w routn heal|Nondisp apophyseal fx r femur, subs for clos fx w routn heal +C2857415|T037|AB|S72.134E|ICD10CM|Nondisp apophyseal fx r femr, 7thE|Nondisp apophyseal fx r femr, 7thE +C2857416|T037|AB|S72.134F|ICD10CM|Nondisp apophyseal fx r femr, 7thF|Nondisp apophyseal fx r femr, 7thF +C2857417|T037|AB|S72.134G|ICD10CM|Nondisp apophyseal fx r femur, subs for clos fx w delay heal|Nondisp apophyseal fx r femur, subs for clos fx w delay heal +C2857418|T037|AB|S72.134H|ICD10CM|Nondisp apophyseal fx r femr, 7thH|Nondisp apophyseal fx r femr, 7thH +C2857419|T037|AB|S72.134J|ICD10CM|Nondisp apophyseal fx r femr, 7thJ|Nondisp apophyseal fx r femr, 7thJ +C2857420|T037|AB|S72.134K|ICD10CM|Nondisp apophyseal fx r femur, subs for clos fx w nonunion|Nondisp apophyseal fx r femur, subs for clos fx w nonunion +C2857421|T037|AB|S72.134M|ICD10CM|Nondisp apophyseal fx r femr, 7thM|Nondisp apophyseal fx r femr, 7thM +C2857422|T037|AB|S72.134N|ICD10CM|Nondisp apophyseal fx r femr, 7thN|Nondisp apophyseal fx r femr, 7thN +C2857423|T037|AB|S72.134P|ICD10CM|Nondisp apophyseal fx r femur, subs for clos fx w malunion|Nondisp apophyseal fx r femur, subs for clos fx w malunion +C2857424|T037|AB|S72.134Q|ICD10CM|Nondisp apophyseal fx r femr, 7thQ|Nondisp apophyseal fx r femr, 7thQ +C2857425|T037|AB|S72.134R|ICD10CM|Nondisp apophyseal fx r femr, 7thR|Nondisp apophyseal fx r femr, 7thR +C2857426|T037|PT|S72.134S|ICD10CM|Nondisplaced apophyseal fracture of right femur, sequela|Nondisplaced apophyseal fracture of right femur, sequela +C2857426|T037|AB|S72.134S|ICD10CM|Nondisplaced apophyseal fracture of right femur, sequela|Nondisplaced apophyseal fracture of right femur, sequela +C2857427|T037|AB|S72.135|ICD10CM|Nondisplaced apophyseal fracture of left femur|Nondisplaced apophyseal fracture of left femur +C2857427|T037|HT|S72.135|ICD10CM|Nondisplaced apophyseal fracture of left femur|Nondisplaced apophyseal fracture of left femur +C2857428|T037|AB|S72.135A|ICD10CM|Nondisplaced apophyseal fracture of left femur, init|Nondisplaced apophyseal fracture of left femur, init +C2857428|T037|PT|S72.135A|ICD10CM|Nondisplaced apophyseal fracture of left femur, initial encounter for closed fracture|Nondisplaced apophyseal fracture of left femur, initial encounter for closed fracture +C2857429|T037|AB|S72.135B|ICD10CM|Nondisp apophyseal fx left femur, init for opn fx type I/2|Nondisp apophyseal fx left femur, init for opn fx type I/2 +C2857429|T037|PT|S72.135B|ICD10CM|Nondisplaced apophyseal fracture of left femur, initial encounter for open fracture type I or II|Nondisplaced apophyseal fracture of left femur, initial encounter for open fracture type I or II +C2857430|T037|AB|S72.135C|ICD10CM|Nondisp apophyseal fx l femur, init for opn fx type 3A/B/C|Nondisp apophyseal fx l femur, init for opn fx type 3A/B/C +C2857431|T037|AB|S72.135D|ICD10CM|Nondisp apophyseal fx l femur, subs for clos fx w routn heal|Nondisp apophyseal fx l femur, subs for clos fx w routn heal +C2857432|T037|AB|S72.135E|ICD10CM|Nondisp apophyseal fx l femr, 7thE|Nondisp apophyseal fx l femr, 7thE +C2857433|T037|AB|S72.135F|ICD10CM|Nondisp apophyseal fx l femr, 7thF|Nondisp apophyseal fx l femr, 7thF +C2857434|T037|AB|S72.135G|ICD10CM|Nondisp apophyseal fx l femur, subs for clos fx w delay heal|Nondisp apophyseal fx l femur, subs for clos fx w delay heal +C2857435|T037|AB|S72.135H|ICD10CM|Nondisp apophyseal fx l femr, 7thH|Nondisp apophyseal fx l femr, 7thH +C2857436|T037|AB|S72.135J|ICD10CM|Nondisp apophyseal fx l femr, 7thJ|Nondisp apophyseal fx l femr, 7thJ +C2857437|T037|AB|S72.135K|ICD10CM|Nondisp apophyseal fx l femur, subs for clos fx w nonunion|Nondisp apophyseal fx l femur, subs for clos fx w nonunion +C2857438|T037|AB|S72.135M|ICD10CM|Nondisp apophyseal fx l femr, 7thM|Nondisp apophyseal fx l femr, 7thM +C2857439|T037|AB|S72.135N|ICD10CM|Nondisp apophyseal fx l femr, 7thN|Nondisp apophyseal fx l femr, 7thN +C2857440|T037|AB|S72.135P|ICD10CM|Nondisp apophyseal fx l femur, subs for clos fx w malunion|Nondisp apophyseal fx l femur, subs for clos fx w malunion +C2857441|T037|AB|S72.135Q|ICD10CM|Nondisp apophyseal fx l femr, 7thQ|Nondisp apophyseal fx l femr, 7thQ +C2857442|T037|AB|S72.135R|ICD10CM|Nondisp apophyseal fx l femr, 7thR|Nondisp apophyseal fx l femr, 7thR +C2857443|T037|PT|S72.135S|ICD10CM|Nondisplaced apophyseal fracture of left femur, sequela|Nondisplaced apophyseal fracture of left femur, sequela +C2857443|T037|AB|S72.135S|ICD10CM|Nondisplaced apophyseal fracture of left femur, sequela|Nondisplaced apophyseal fracture of left femur, sequela +C2857444|T037|AB|S72.136|ICD10CM|Nondisplaced apophyseal fracture of unspecified femur|Nondisplaced apophyseal fracture of unspecified femur +C2857444|T037|HT|S72.136|ICD10CM|Nondisplaced apophyseal fracture of unspecified femur|Nondisplaced apophyseal fracture of unspecified femur +C2857445|T037|AB|S72.136A|ICD10CM|Nondisplaced apophyseal fracture of unsp femur, init|Nondisplaced apophyseal fracture of unsp femur, init +C2857445|T037|PT|S72.136A|ICD10CM|Nondisplaced apophyseal fracture of unspecified femur, initial encounter for closed fracture|Nondisplaced apophyseal fracture of unspecified femur, initial encounter for closed fracture +C2857446|T037|AB|S72.136B|ICD10CM|Nondisp apophyseal fx unsp femur, init for opn fx type I/2|Nondisp apophyseal fx unsp femur, init for opn fx type I/2 +C2857447|T037|AB|S72.136C|ICD10CM|Nondisp apophyseal fx unsp femr, init for opn fx type 3A/B/C|Nondisp apophyseal fx unsp femr, init for opn fx type 3A/B/C +C2857448|T037|AB|S72.136D|ICD10CM|Nondisp apophyseal fx unsp femr, 7thD|Nondisp apophyseal fx unsp femr, 7thD +C2857449|T037|AB|S72.136E|ICD10CM|Nondisp apophyseal fx unsp femr, 7thE|Nondisp apophyseal fx unsp femr, 7thE +C2857450|T037|AB|S72.136F|ICD10CM|Nondisp apophyseal fx unsp femr, 7thF|Nondisp apophyseal fx unsp femr, 7thF +C2857451|T037|AB|S72.136G|ICD10CM|Nondisp apophyseal fx unsp femr, 7thG|Nondisp apophyseal fx unsp femr, 7thG +C2857452|T037|AB|S72.136H|ICD10CM|Nondisp apophyseal fx unsp femr, 7thH|Nondisp apophyseal fx unsp femr, 7thH +C2857453|T037|AB|S72.136J|ICD10CM|Nondisp apophyseal fx unsp femr, 7thJ|Nondisp apophyseal fx unsp femr, 7thJ +C2857454|T037|AB|S72.136K|ICD10CM|Nondisp apophyseal fx unsp femr, subs for clos fx w nonunion|Nondisp apophyseal fx unsp femr, subs for clos fx w nonunion +C2857455|T037|AB|S72.136M|ICD10CM|Nondisp apophyseal fx unsp femr, 7thM|Nondisp apophyseal fx unsp femr, 7thM +C2857456|T037|AB|S72.136N|ICD10CM|Nondisp apophyseal fx unsp femr, 7thN|Nondisp apophyseal fx unsp femr, 7thN +C2857457|T037|AB|S72.136P|ICD10CM|Nondisp apophyseal fx unsp femr, subs for clos fx w malunion|Nondisp apophyseal fx unsp femr, subs for clos fx w malunion +C2857458|T037|AB|S72.136Q|ICD10CM|Nondisp apophyseal fx unsp femr, 7thQ|Nondisp apophyseal fx unsp femr, 7thQ +C2857459|T037|AB|S72.136R|ICD10CM|Nondisp apophyseal fx unsp femr, 7thR|Nondisp apophyseal fx unsp femr, 7thR +C2857460|T037|AB|S72.136S|ICD10CM|Nondisplaced apophyseal fracture of unsp femur, sequela|Nondisplaced apophyseal fracture of unsp femur, sequela +C2857460|T037|PT|S72.136S|ICD10CM|Nondisplaced apophyseal fracture of unspecified femur, sequela|Nondisplaced apophyseal fracture of unspecified femur, sequela +C0162385|T037|HT|S72.14|ICD10CM|Intertrochanteric fracture of femur|Intertrochanteric fracture of femur +C0162385|T037|AB|S72.14|ICD10CM|Intertrochanteric fracture of femur|Intertrochanteric fracture of femur +C2857461|T037|AB|S72.141|ICD10CM|Displaced intertrochanteric fracture of right femur|Displaced intertrochanteric fracture of right femur +C2857461|T037|HT|S72.141|ICD10CM|Displaced intertrochanteric fracture of right femur|Displaced intertrochanteric fracture of right femur +C2857462|T037|AB|S72.141A|ICD10CM|Displaced intertrochanteric fracture of right femur, init|Displaced intertrochanteric fracture of right femur, init +C2857462|T037|PT|S72.141A|ICD10CM|Displaced intertrochanteric fracture of right femur, initial encounter for closed fracture|Displaced intertrochanteric fracture of right femur, initial encounter for closed fracture +C2857463|T037|AB|S72.141B|ICD10CM|Displaced intertroch fx r femur, init for opn fx type I/2|Displaced intertroch fx r femur, init for opn fx type I/2 +C2857464|T037|AB|S72.141C|ICD10CM|Displaced intertroch fx r femur, init for opn fx type 3A/B/C|Displaced intertroch fx r femur, init for opn fx type 3A/B/C +C2857465|T037|AB|S72.141D|ICD10CM|Displ intertroch fx r femur, subs for clos fx w routn heal|Displ intertroch fx r femur, subs for clos fx w routn heal +C2857466|T037|AB|S72.141E|ICD10CM|Displ intertroch fx r femr, 7thE|Displ intertroch fx r femr, 7thE +C2857467|T037|AB|S72.141F|ICD10CM|Displ intertroch fx r femr, 7thF|Displ intertroch fx r femr, 7thF +C2857468|T037|AB|S72.141G|ICD10CM|Displ intertroch fx r femur, subs for clos fx w delay heal|Displ intertroch fx r femur, subs for clos fx w delay heal +C2857469|T037|AB|S72.141H|ICD10CM|Displ intertroch fx r femr, 7thH|Displ intertroch fx r femr, 7thH +C2857470|T037|AB|S72.141J|ICD10CM|Displ intertroch fx r femr, 7thJ|Displ intertroch fx r femr, 7thJ +C2857471|T037|AB|S72.141K|ICD10CM|Displaced intertroch fx r femur, subs for clos fx w nonunion|Displaced intertroch fx r femur, subs for clos fx w nonunion +C2857472|T037|AB|S72.141M|ICD10CM|Displ intertroch fx r femr, 7thM|Displ intertroch fx r femr, 7thM +C2857473|T037|AB|S72.141N|ICD10CM|Displ intertroch fx r femr, 7thN|Displ intertroch fx r femr, 7thN +C2857474|T037|AB|S72.141P|ICD10CM|Displaced intertroch fx r femur, subs for clos fx w malunion|Displaced intertroch fx r femur, subs for clos fx w malunion +C2857475|T037|AB|S72.141Q|ICD10CM|Displ intertroch fx r femr, 7thQ|Displ intertroch fx r femr, 7thQ +C2857476|T037|AB|S72.141R|ICD10CM|Displ intertroch fx r femr, 7thR|Displ intertroch fx r femr, 7thR +C2857477|T037|AB|S72.141S|ICD10CM|Displaced intertrochanteric fracture of right femur, sequela|Displaced intertrochanteric fracture of right femur, sequela +C2857477|T037|PT|S72.141S|ICD10CM|Displaced intertrochanteric fracture of right femur, sequela|Displaced intertrochanteric fracture of right femur, sequela +C2857478|T037|AB|S72.142|ICD10CM|Displaced intertrochanteric fracture of left femur|Displaced intertrochanteric fracture of left femur +C2857478|T037|HT|S72.142|ICD10CM|Displaced intertrochanteric fracture of left femur|Displaced intertrochanteric fracture of left femur +C2857479|T037|AB|S72.142A|ICD10CM|Displaced intertrochanteric fracture of left femur, init|Displaced intertrochanteric fracture of left femur, init +C2857479|T037|PT|S72.142A|ICD10CM|Displaced intertrochanteric fracture of left femur, initial encounter for closed fracture|Displaced intertrochanteric fracture of left femur, initial encounter for closed fracture +C2857480|T037|AB|S72.142B|ICD10CM|Displaced intertroch fx left femur, init for opn fx type I/2|Displaced intertroch fx left femur, init for opn fx type I/2 +C2857480|T037|PT|S72.142B|ICD10CM|Displaced intertrochanteric fracture of left femur, initial encounter for open fracture type I or II|Displaced intertrochanteric fracture of left femur, initial encounter for open fracture type I or II +C2857481|T037|AB|S72.142C|ICD10CM|Displaced intertroch fx l femur, init for opn fx type 3A/B/C|Displaced intertroch fx l femur, init for opn fx type 3A/B/C +C2857482|T037|AB|S72.142D|ICD10CM|Displ intertroch fx l femur, subs for clos fx w routn heal|Displ intertroch fx l femur, subs for clos fx w routn heal +C2857483|T037|AB|S72.142E|ICD10CM|Displ intertroch fx l femr, 7thE|Displ intertroch fx l femr, 7thE +C2857484|T037|AB|S72.142F|ICD10CM|Displ intertroch fx l femr, 7thF|Displ intertroch fx l femr, 7thF +C2857485|T037|AB|S72.142G|ICD10CM|Displ intertroch fx l femur, subs for clos fx w delay heal|Displ intertroch fx l femur, subs for clos fx w delay heal +C2857486|T037|AB|S72.142H|ICD10CM|Displ intertroch fx l femr, 7thH|Displ intertroch fx l femr, 7thH +C2857487|T037|AB|S72.142J|ICD10CM|Displ intertroch fx l femr, 7thJ|Displ intertroch fx l femr, 7thJ +C2857488|T037|AB|S72.142K|ICD10CM|Displaced intertroch fx l femur, subs for clos fx w nonunion|Displaced intertroch fx l femur, subs for clos fx w nonunion +C2857489|T037|AB|S72.142M|ICD10CM|Displ intertroch fx l femr, 7thM|Displ intertroch fx l femr, 7thM +C2857490|T037|AB|S72.142N|ICD10CM|Displ intertroch fx l femr, 7thN|Displ intertroch fx l femr, 7thN +C2857491|T037|AB|S72.142P|ICD10CM|Displaced intertroch fx l femur, subs for clos fx w malunion|Displaced intertroch fx l femur, subs for clos fx w malunion +C2857492|T037|AB|S72.142Q|ICD10CM|Displ intertroch fx l femr, 7thQ|Displ intertroch fx l femr, 7thQ +C2857493|T037|AB|S72.142R|ICD10CM|Displ intertroch fx l femr, 7thR|Displ intertroch fx l femr, 7thR +C2857494|T037|PT|S72.142S|ICD10CM|Displaced intertrochanteric fracture of left femur, sequela|Displaced intertrochanteric fracture of left femur, sequela +C2857494|T037|AB|S72.142S|ICD10CM|Displaced intertrochanteric fracture of left femur, sequela|Displaced intertrochanteric fracture of left femur, sequela +C2857495|T037|AB|S72.143|ICD10CM|Displaced intertrochanteric fracture of unspecified femur|Displaced intertrochanteric fracture of unspecified femur +C2857495|T037|HT|S72.143|ICD10CM|Displaced intertrochanteric fracture of unspecified femur|Displaced intertrochanteric fracture of unspecified femur +C2857496|T037|AB|S72.143A|ICD10CM|Displaced intertrochanteric fracture of unsp femur, init|Displaced intertrochanteric fracture of unsp femur, init +C2857496|T037|PT|S72.143A|ICD10CM|Displaced intertrochanteric fracture of unspecified femur, initial encounter for closed fracture|Displaced intertrochanteric fracture of unspecified femur, initial encounter for closed fracture +C2857497|T037|AB|S72.143B|ICD10CM|Displaced intertroch fx unsp femur, init for opn fx type I/2|Displaced intertroch fx unsp femur, init for opn fx type I/2 +C2857498|T037|AB|S72.143C|ICD10CM|Displ intertroch fx unsp femur, init for opn fx type 3A/B/C|Displ intertroch fx unsp femur, init for opn fx type 3A/B/C +C2857499|T037|AB|S72.143D|ICD10CM|Displ intertroch fx unsp femr, subs for clos fx w routn heal|Displ intertroch fx unsp femr, subs for clos fx w routn heal +C2857500|T037|AB|S72.143E|ICD10CM|Displ intertroch fx unsp femr, 7thE|Displ intertroch fx unsp femr, 7thE +C2857501|T037|AB|S72.143F|ICD10CM|Displ intertroch fx unsp femr, 7thF|Displ intertroch fx unsp femr, 7thF +C2857502|T037|AB|S72.143G|ICD10CM|Displ intertroch fx unsp femr, subs for clos fx w delay heal|Displ intertroch fx unsp femr, subs for clos fx w delay heal +C2857503|T037|AB|S72.143H|ICD10CM|Displ intertroch fx unsp femr, 7thH|Displ intertroch fx unsp femr, 7thH +C2857504|T037|AB|S72.143J|ICD10CM|Displ intertroch fx unsp femr, 7thJ|Displ intertroch fx unsp femr, 7thJ +C2857505|T037|AB|S72.143K|ICD10CM|Displ intertroch fx unsp femur, subs for clos fx w nonunion|Displ intertroch fx unsp femur, subs for clos fx w nonunion +C2857506|T037|AB|S72.143M|ICD10CM|Displ intertroch fx unsp femr, 7thM|Displ intertroch fx unsp femr, 7thM +C2857507|T037|AB|S72.143N|ICD10CM|Displ intertroch fx unsp femr, 7thN|Displ intertroch fx unsp femr, 7thN +C2857508|T037|AB|S72.143P|ICD10CM|Displ intertroch fx unsp femur, subs for clos fx w malunion|Displ intertroch fx unsp femur, subs for clos fx w malunion +C2857509|T037|AB|S72.143Q|ICD10CM|Displ intertroch fx unsp femr, 7thQ|Displ intertroch fx unsp femr, 7thQ +C2857510|T037|AB|S72.143R|ICD10CM|Displ intertroch fx unsp femr, 7thR|Displ intertroch fx unsp femr, 7thR +C2857511|T037|AB|S72.143S|ICD10CM|Displaced intertrochanteric fracture of unsp femur, sequela|Displaced intertrochanteric fracture of unsp femur, sequela +C2857511|T037|PT|S72.143S|ICD10CM|Displaced intertrochanteric fracture of unspecified femur, sequela|Displaced intertrochanteric fracture of unspecified femur, sequela +C2857512|T037|AB|S72.144|ICD10CM|Nondisplaced intertrochanteric fracture of right femur|Nondisplaced intertrochanteric fracture of right femur +C2857512|T037|HT|S72.144|ICD10CM|Nondisplaced intertrochanteric fracture of right femur|Nondisplaced intertrochanteric fracture of right femur +C2857513|T037|AB|S72.144A|ICD10CM|Nondisplaced intertrochanteric fracture of right femur, init|Nondisplaced intertrochanteric fracture of right femur, init +C2857513|T037|PT|S72.144A|ICD10CM|Nondisplaced intertrochanteric fracture of right femur, initial encounter for closed fracture|Nondisplaced intertrochanteric fracture of right femur, initial encounter for closed fracture +C2857514|T037|AB|S72.144B|ICD10CM|Nondisp intertroch fx right femur, init for opn fx type I/2|Nondisp intertroch fx right femur, init for opn fx type I/2 +C2857515|T037|AB|S72.144C|ICD10CM|Nondisp intertroch fx r femur, init for opn fx type 3A/B/C|Nondisp intertroch fx r femur, init for opn fx type 3A/B/C +C2857516|T037|AB|S72.144D|ICD10CM|Nondisp intertroch fx r femur, subs for clos fx w routn heal|Nondisp intertroch fx r femur, subs for clos fx w routn heal +C2857517|T037|AB|S72.144E|ICD10CM|Nondisp intertroch fx r femr, 7thE|Nondisp intertroch fx r femr, 7thE +C2857518|T037|AB|S72.144F|ICD10CM|Nondisp intertroch fx r femr, 7thF|Nondisp intertroch fx r femr, 7thF +C2857519|T037|AB|S72.144G|ICD10CM|Nondisp intertroch fx r femur, subs for clos fx w delay heal|Nondisp intertroch fx r femur, subs for clos fx w delay heal +C2857520|T037|AB|S72.144H|ICD10CM|Nondisp intertroch fx r femr, 7thH|Nondisp intertroch fx r femr, 7thH +C2857521|T037|AB|S72.144J|ICD10CM|Nondisp intertroch fx r femr, 7thJ|Nondisp intertroch fx r femr, 7thJ +C2857522|T037|AB|S72.144K|ICD10CM|Nondisp intertroch fx r femur, subs for clos fx w nonunion|Nondisp intertroch fx r femur, subs for clos fx w nonunion +C2857523|T037|AB|S72.144M|ICD10CM|Nondisp intertroch fx r femr, 7thM|Nondisp intertroch fx r femr, 7thM +C2857524|T037|AB|S72.144N|ICD10CM|Nondisp intertroch fx r femr, 7thN|Nondisp intertroch fx r femr, 7thN +C2857525|T037|AB|S72.144P|ICD10CM|Nondisp intertroch fx r femur, subs for clos fx w malunion|Nondisp intertroch fx r femur, subs for clos fx w malunion +C2857526|T037|AB|S72.144Q|ICD10CM|Nondisp intertroch fx r femr, 7thQ|Nondisp intertroch fx r femr, 7thQ +C2857527|T037|AB|S72.144R|ICD10CM|Nondisp intertroch fx r femr, 7thR|Nondisp intertroch fx r femr, 7thR +C2857528|T037|AB|S72.144S|ICD10CM|Nondisplaced intertroch fracture of right femur, sequela|Nondisplaced intertroch fracture of right femur, sequela +C2857528|T037|PT|S72.144S|ICD10CM|Nondisplaced intertrochanteric fracture of right femur, sequela|Nondisplaced intertrochanteric fracture of right femur, sequela +C2857529|T037|AB|S72.145|ICD10CM|Nondisplaced intertrochanteric fracture of left femur|Nondisplaced intertrochanteric fracture of left femur +C2857529|T037|HT|S72.145|ICD10CM|Nondisplaced intertrochanteric fracture of left femur|Nondisplaced intertrochanteric fracture of left femur +C2857530|T037|AB|S72.145A|ICD10CM|Nondisplaced intertrochanteric fracture of left femur, init|Nondisplaced intertrochanteric fracture of left femur, init +C2857530|T037|PT|S72.145A|ICD10CM|Nondisplaced intertrochanteric fracture of left femur, initial encounter for closed fracture|Nondisplaced intertrochanteric fracture of left femur, initial encounter for closed fracture +C2857531|T037|AB|S72.145B|ICD10CM|Nondisp intertroch fx left femur, init for opn fx type I/2|Nondisp intertroch fx left femur, init for opn fx type I/2 +C2857532|T037|AB|S72.145C|ICD10CM|Nondisp intertroch fx l femur, init for opn fx type 3A/B/C|Nondisp intertroch fx l femur, init for opn fx type 3A/B/C +C2857533|T037|AB|S72.145D|ICD10CM|Nondisp intertroch fx l femur, subs for clos fx w routn heal|Nondisp intertroch fx l femur, subs for clos fx w routn heal +C2857534|T037|AB|S72.145E|ICD10CM|Nondisp intertroch fx l femr, 7thE|Nondisp intertroch fx l femr, 7thE +C2857535|T037|AB|S72.145F|ICD10CM|Nondisp intertroch fx l femr, 7thF|Nondisp intertroch fx l femr, 7thF +C2857536|T037|AB|S72.145G|ICD10CM|Nondisp intertroch fx l femur, subs for clos fx w delay heal|Nondisp intertroch fx l femur, subs for clos fx w delay heal +C2857537|T037|AB|S72.145H|ICD10CM|Nondisp intertroch fx l femr, 7thH|Nondisp intertroch fx l femr, 7thH +C2857538|T037|AB|S72.145J|ICD10CM|Nondisp intertroch fx l femr, 7thJ|Nondisp intertroch fx l femr, 7thJ +C2857539|T037|AB|S72.145K|ICD10CM|Nondisp intertroch fx l femur, subs for clos fx w nonunion|Nondisp intertroch fx l femur, subs for clos fx w nonunion +C2857540|T037|AB|S72.145M|ICD10CM|Nondisp intertroch fx l femr, 7thM|Nondisp intertroch fx l femr, 7thM +C2857541|T037|AB|S72.145N|ICD10CM|Nondisp intertroch fx l femr, 7thN|Nondisp intertroch fx l femr, 7thN +C2857542|T037|AB|S72.145P|ICD10CM|Nondisp intertroch fx l femur, subs for clos fx w malunion|Nondisp intertroch fx l femur, subs for clos fx w malunion +C2857543|T037|AB|S72.145Q|ICD10CM|Nondisp intertroch fx l femr, 7thQ|Nondisp intertroch fx l femr, 7thQ +C2857544|T037|AB|S72.145R|ICD10CM|Nondisp intertroch fx l femr, 7thR|Nondisp intertroch fx l femr, 7thR +C2857545|T037|AB|S72.145S|ICD10CM|Nondisplaced intertroch fracture of left femur, sequela|Nondisplaced intertroch fracture of left femur, sequela +C2857545|T037|PT|S72.145S|ICD10CM|Nondisplaced intertrochanteric fracture of left femur, sequela|Nondisplaced intertrochanteric fracture of left femur, sequela +C2857546|T037|AB|S72.146|ICD10CM|Nondisplaced intertrochanteric fracture of unspecified femur|Nondisplaced intertrochanteric fracture of unspecified femur +C2857546|T037|HT|S72.146|ICD10CM|Nondisplaced intertrochanteric fracture of unspecified femur|Nondisplaced intertrochanteric fracture of unspecified femur +C2857547|T037|AB|S72.146A|ICD10CM|Nondisplaced intertrochanteric fracture of unsp femur, init|Nondisplaced intertrochanteric fracture of unsp femur, init +C2857547|T037|PT|S72.146A|ICD10CM|Nondisplaced intertrochanteric fracture of unspecified femur, initial encounter for closed fracture|Nondisplaced intertrochanteric fracture of unspecified femur, initial encounter for closed fracture +C2857548|T037|AB|S72.146B|ICD10CM|Nondisp intertroch fx unsp femur, init for opn fx type I/2|Nondisp intertroch fx unsp femur, init for opn fx type I/2 +C2857549|T037|AB|S72.146C|ICD10CM|Nondisp intertroch fx unsp femr, init for opn fx type 3A/B/C|Nondisp intertroch fx unsp femr, init for opn fx type 3A/B/C +C2857550|T037|AB|S72.146D|ICD10CM|Nondisp intertroch fx unsp femr, 7thD|Nondisp intertroch fx unsp femr, 7thD +C2857551|T037|AB|S72.146E|ICD10CM|Nondisp intertroch fx unsp femr, 7thE|Nondisp intertroch fx unsp femr, 7thE +C2857552|T037|AB|S72.146F|ICD10CM|Nondisp intertroch fx unsp femr, 7thF|Nondisp intertroch fx unsp femr, 7thF +C2857553|T037|AB|S72.146G|ICD10CM|Nondisp intertroch fx unsp femr, 7thG|Nondisp intertroch fx unsp femr, 7thG +C2857554|T037|AB|S72.146H|ICD10CM|Nondisp intertroch fx unsp femr, 7thH|Nondisp intertroch fx unsp femr, 7thH +C2857555|T037|AB|S72.146J|ICD10CM|Nondisp intertroch fx unsp femr, 7thJ|Nondisp intertroch fx unsp femr, 7thJ +C2857556|T037|AB|S72.146K|ICD10CM|Nondisp intertroch fx unsp femr, subs for clos fx w nonunion|Nondisp intertroch fx unsp femr, subs for clos fx w nonunion +C2857557|T037|AB|S72.146M|ICD10CM|Nondisp intertroch fx unsp femr, 7thM|Nondisp intertroch fx unsp femr, 7thM +C2857558|T037|AB|S72.146N|ICD10CM|Nondisp intertroch fx unsp femr, 7thN|Nondisp intertroch fx unsp femr, 7thN +C2857559|T037|AB|S72.146P|ICD10CM|Nondisp intertroch fx unsp femr, subs for clos fx w malunion|Nondisp intertroch fx unsp femr, subs for clos fx w malunion +C2857560|T037|AB|S72.146Q|ICD10CM|Nondisp intertroch fx unsp femr, 7thQ|Nondisp intertroch fx unsp femr, 7thQ +C2857561|T037|AB|S72.146R|ICD10CM|Nondisp intertroch fx unsp femr, 7thR|Nondisp intertroch fx unsp femr, 7thR +C2857562|T037|AB|S72.146S|ICD10CM|Nondisplaced intertroch fracture of unsp femur, sequela|Nondisplaced intertroch fracture of unsp femur, sequela +C2857562|T037|PT|S72.146S|ICD10CM|Nondisplaced intertrochanteric fracture of unspecified femur, sequela|Nondisplaced intertrochanteric fracture of unspecified femur, sequela +C0162386|T037|PT|S72.2|ICD10|Subtrochanteric fracture|Subtrochanteric fracture +C0162386|T037|HT|S72.2|ICD10CM|Subtrochanteric fracture of femur|Subtrochanteric fracture of femur +C0162386|T037|AB|S72.2|ICD10CM|Subtrochanteric fracture of femur|Subtrochanteric fracture of femur +C2857563|T037|AB|S72.21|ICD10CM|Displaced subtrochanteric fracture of right femur|Displaced subtrochanteric fracture of right femur +C2857563|T037|HT|S72.21|ICD10CM|Displaced subtrochanteric fracture of right femur|Displaced subtrochanteric fracture of right femur +C2857564|T037|AB|S72.21XA|ICD10CM|Displaced subtrochanteric fracture of right femur, init|Displaced subtrochanteric fracture of right femur, init +C2857564|T037|PT|S72.21XA|ICD10CM|Displaced subtrochanteric fracture of right femur, initial encounter for closed fracture|Displaced subtrochanteric fracture of right femur, initial encounter for closed fracture +C2857565|T037|PT|S72.21XB|ICD10CM|Displaced subtrochanteric fracture of right femur, initial encounter for open fracture type I or II|Displaced subtrochanteric fracture of right femur, initial encounter for open fracture type I or II +C2857565|T037|AB|S72.21XB|ICD10CM|Displaced subtrochnt fx r femur, init for opn fx type I/2|Displaced subtrochnt fx r femur, init for opn fx type I/2 +C2857566|T037|AB|S72.21XC|ICD10CM|Displaced subtrochnt fx r femur, init for opn fx type 3A/B/C|Displaced subtrochnt fx r femur, init for opn fx type 3A/B/C +C2857567|T037|AB|S72.21XD|ICD10CM|Displ subtrochnt fx r femur, subs for clos fx w routn heal|Displ subtrochnt fx r femur, subs for clos fx w routn heal +C2857568|T037|AB|S72.21XE|ICD10CM|Displ subtrochnt fx r femr, 7thE|Displ subtrochnt fx r femr, 7thE +C2857569|T037|AB|S72.21XF|ICD10CM|Displ subtrochnt fx r femr, 7thF|Displ subtrochnt fx r femr, 7thF +C2857570|T037|AB|S72.21XG|ICD10CM|Displ subtrochnt fx r femur, subs for clos fx w delay heal|Displ subtrochnt fx r femur, subs for clos fx w delay heal +C2857571|T037|AB|S72.21XH|ICD10CM|Displ subtrochnt fx r femr, 7thH|Displ subtrochnt fx r femr, 7thH +C2857572|T037|AB|S72.21XJ|ICD10CM|Displ subtrochnt fx r femr, 7thJ|Displ subtrochnt fx r femr, 7thJ +C2857573|T037|AB|S72.21XK|ICD10CM|Displaced subtrochnt fx r femur, subs for clos fx w nonunion|Displaced subtrochnt fx r femur, subs for clos fx w nonunion +C2857574|T037|AB|S72.21XM|ICD10CM|Displ subtrochnt fx r femr, 7thM|Displ subtrochnt fx r femr, 7thM +C2857575|T037|AB|S72.21XN|ICD10CM|Displ subtrochnt fx r femr, 7thN|Displ subtrochnt fx r femr, 7thN +C2857576|T037|AB|S72.21XP|ICD10CM|Displaced subtrochnt fx r femur, subs for clos fx w malunion|Displaced subtrochnt fx r femur, subs for clos fx w malunion +C2857577|T037|AB|S72.21XQ|ICD10CM|Displ subtrochnt fx r femr, 7thQ|Displ subtrochnt fx r femr, 7thQ +C2857578|T037|AB|S72.21XR|ICD10CM|Displ subtrochnt fx r femr, 7thR|Displ subtrochnt fx r femr, 7thR +C2857579|T037|PT|S72.21XS|ICD10CM|Displaced subtrochanteric fracture of right femur, sequela|Displaced subtrochanteric fracture of right femur, sequela +C2857579|T037|AB|S72.21XS|ICD10CM|Displaced subtrochanteric fracture of right femur, sequela|Displaced subtrochanteric fracture of right femur, sequela +C2857580|T037|AB|S72.22|ICD10CM|Displaced subtrochanteric fracture of left femur|Displaced subtrochanteric fracture of left femur +C2857580|T037|HT|S72.22|ICD10CM|Displaced subtrochanteric fracture of left femur|Displaced subtrochanteric fracture of left femur +C2857581|T037|AB|S72.22XA|ICD10CM|Displaced subtrochanteric fracture of left femur, init|Displaced subtrochanteric fracture of left femur, init +C2857581|T037|PT|S72.22XA|ICD10CM|Displaced subtrochanteric fracture of left femur, initial encounter for closed fracture|Displaced subtrochanteric fracture of left femur, initial encounter for closed fracture +C2857582|T037|PT|S72.22XB|ICD10CM|Displaced subtrochanteric fracture of left femur, initial encounter for open fracture type I or II|Displaced subtrochanteric fracture of left femur, initial encounter for open fracture type I or II +C2857582|T037|AB|S72.22XB|ICD10CM|Displaced subtrochnt fx left femur, init for opn fx type I/2|Displaced subtrochnt fx left femur, init for opn fx type I/2 +C2857583|T037|AB|S72.22XC|ICD10CM|Displaced subtrochnt fx l femur, init for opn fx type 3A/B/C|Displaced subtrochnt fx l femur, init for opn fx type 3A/B/C +C2857584|T037|AB|S72.22XD|ICD10CM|Displ subtrochnt fx l femur, subs for clos fx w routn heal|Displ subtrochnt fx l femur, subs for clos fx w routn heal +C2857585|T037|AB|S72.22XE|ICD10CM|Displ subtrochnt fx l femr, 7thE|Displ subtrochnt fx l femr, 7thE +C2857586|T037|AB|S72.22XF|ICD10CM|Displ subtrochnt fx l femr, 7thF|Displ subtrochnt fx l femr, 7thF +C2857587|T037|AB|S72.22XG|ICD10CM|Displ subtrochnt fx l femur, subs for clos fx w delay heal|Displ subtrochnt fx l femur, subs for clos fx w delay heal +C2857588|T037|AB|S72.22XH|ICD10CM|Displ subtrochnt fx l femr, 7thH|Displ subtrochnt fx l femr, 7thH +C2857589|T037|AB|S72.22XJ|ICD10CM|Displ subtrochnt fx l femr, 7thJ|Displ subtrochnt fx l femr, 7thJ +C2857590|T037|AB|S72.22XK|ICD10CM|Displaced subtrochnt fx l femur, subs for clos fx w nonunion|Displaced subtrochnt fx l femur, subs for clos fx w nonunion +C2857591|T037|AB|S72.22XM|ICD10CM|Displ subtrochnt fx l femr, 7thM|Displ subtrochnt fx l femr, 7thM +C2857592|T037|AB|S72.22XN|ICD10CM|Displ subtrochnt fx l femr, 7thN|Displ subtrochnt fx l femr, 7thN +C2857593|T037|AB|S72.22XP|ICD10CM|Displaced subtrochnt fx l femur, subs for clos fx w malunion|Displaced subtrochnt fx l femur, subs for clos fx w malunion +C2857594|T037|AB|S72.22XQ|ICD10CM|Displ subtrochnt fx l femr, 7thQ|Displ subtrochnt fx l femr, 7thQ +C2857595|T037|AB|S72.22XR|ICD10CM|Displ subtrochnt fx l femr, 7thR|Displ subtrochnt fx l femr, 7thR +C2857596|T037|AB|S72.22XS|ICD10CM|Displaced subtrochanteric fracture of left femur, sequela|Displaced subtrochanteric fracture of left femur, sequela +C2857596|T037|PT|S72.22XS|ICD10CM|Displaced subtrochanteric fracture of left femur, sequela|Displaced subtrochanteric fracture of left femur, sequela +C2857597|T037|AB|S72.23|ICD10CM|Displaced subtrochanteric fracture of unspecified femur|Displaced subtrochanteric fracture of unspecified femur +C2857597|T037|HT|S72.23|ICD10CM|Displaced subtrochanteric fracture of unspecified femur|Displaced subtrochanteric fracture of unspecified femur +C2857598|T037|AB|S72.23XA|ICD10CM|Displaced subtrochanteric fracture of unsp femur, init|Displaced subtrochanteric fracture of unsp femur, init +C2857598|T037|PT|S72.23XA|ICD10CM|Displaced subtrochanteric fracture of unspecified femur, initial encounter for closed fracture|Displaced subtrochanteric fracture of unspecified femur, initial encounter for closed fracture +C2857599|T037|AB|S72.23XB|ICD10CM|Displaced subtrochnt fx unsp femur, init for opn fx type I/2|Displaced subtrochnt fx unsp femur, init for opn fx type I/2 +C2857600|T037|AB|S72.23XC|ICD10CM|Displ subtrochnt fx unsp femur, init for opn fx type 3A/B/C|Displ subtrochnt fx unsp femur, init for opn fx type 3A/B/C +C2857601|T037|AB|S72.23XD|ICD10CM|Displ subtrochnt fx unsp femr, subs for clos fx w routn heal|Displ subtrochnt fx unsp femr, subs for clos fx w routn heal +C2857602|T037|AB|S72.23XE|ICD10CM|Displ subtrochnt fx unsp femr, 7thE|Displ subtrochnt fx unsp femr, 7thE +C2857603|T037|AB|S72.23XF|ICD10CM|Displ subtrochnt fx unsp femr, 7thF|Displ subtrochnt fx unsp femr, 7thF +C2857604|T037|AB|S72.23XG|ICD10CM|Displ subtrochnt fx unsp femr, subs for clos fx w delay heal|Displ subtrochnt fx unsp femr, subs for clos fx w delay heal +C2857605|T037|AB|S72.23XH|ICD10CM|Displ subtrochnt fx unsp femr, 7thH|Displ subtrochnt fx unsp femr, 7thH +C2857606|T037|AB|S72.23XJ|ICD10CM|Displ subtrochnt fx unsp femr, 7thJ|Displ subtrochnt fx unsp femr, 7thJ +C2857607|T037|AB|S72.23XK|ICD10CM|Displ subtrochnt fx unsp femur, subs for clos fx w nonunion|Displ subtrochnt fx unsp femur, subs for clos fx w nonunion +C2857608|T037|AB|S72.23XM|ICD10CM|Displ subtrochnt fx unsp femr, 7thM|Displ subtrochnt fx unsp femr, 7thM +C2857609|T037|AB|S72.23XN|ICD10CM|Displ subtrochnt fx unsp femr, 7thN|Displ subtrochnt fx unsp femr, 7thN +C2857610|T037|AB|S72.23XP|ICD10CM|Displ subtrochnt fx unsp femur, subs for clos fx w malunion|Displ subtrochnt fx unsp femur, subs for clos fx w malunion +C2857611|T037|AB|S72.23XQ|ICD10CM|Displ subtrochnt fx unsp femr, 7thQ|Displ subtrochnt fx unsp femr, 7thQ +C2857612|T037|AB|S72.23XR|ICD10CM|Displ subtrochnt fx unsp femr, 7thR|Displ subtrochnt fx unsp femr, 7thR +C2857613|T037|AB|S72.23XS|ICD10CM|Displaced subtrochanteric fracture of unsp femur, sequela|Displaced subtrochanteric fracture of unsp femur, sequela +C2857613|T037|PT|S72.23XS|ICD10CM|Displaced subtrochanteric fracture of unspecified femur, sequela|Displaced subtrochanteric fracture of unspecified femur, sequela +C2857614|T037|AB|S72.24|ICD10CM|Nondisplaced subtrochanteric fracture of right femur|Nondisplaced subtrochanteric fracture of right femur +C2857614|T037|HT|S72.24|ICD10CM|Nondisplaced subtrochanteric fracture of right femur|Nondisplaced subtrochanteric fracture of right femur +C2857615|T037|AB|S72.24XA|ICD10CM|Nondisplaced subtrochanteric fracture of right femur, init|Nondisplaced subtrochanteric fracture of right femur, init +C2857615|T037|PT|S72.24XA|ICD10CM|Nondisplaced subtrochanteric fracture of right femur, initial encounter for closed fracture|Nondisplaced subtrochanteric fracture of right femur, initial encounter for closed fracture +C2857616|T037|AB|S72.24XB|ICD10CM|Nondisp subtrochnt fx right femur, init for opn fx type I/2|Nondisp subtrochnt fx right femur, init for opn fx type I/2 +C2857617|T037|AB|S72.24XC|ICD10CM|Nondisp subtrochnt fx r femur, init for opn fx type 3A/B/C|Nondisp subtrochnt fx r femur, init for opn fx type 3A/B/C +C2857618|T037|AB|S72.24XD|ICD10CM|Nondisp subtrochnt fx r femur, subs for clos fx w routn heal|Nondisp subtrochnt fx r femur, subs for clos fx w routn heal +C2857619|T037|AB|S72.24XE|ICD10CM|Nondisp subtrochnt fx r femr, 7thE|Nondisp subtrochnt fx r femr, 7thE +C2857620|T037|AB|S72.24XF|ICD10CM|Nondisp subtrochnt fx r femr, 7thF|Nondisp subtrochnt fx r femr, 7thF +C2857621|T037|AB|S72.24XG|ICD10CM|Nondisp subtrochnt fx r femur, subs for clos fx w delay heal|Nondisp subtrochnt fx r femur, subs for clos fx w delay heal +C2857622|T037|AB|S72.24XH|ICD10CM|Nondisp subtrochnt fx r femr, 7thH|Nondisp subtrochnt fx r femr, 7thH +C2857623|T037|AB|S72.24XJ|ICD10CM|Nondisp subtrochnt fx r femr, 7thJ|Nondisp subtrochnt fx r femr, 7thJ +C2857624|T037|AB|S72.24XK|ICD10CM|Nondisp subtrochnt fx r femur, subs for clos fx w nonunion|Nondisp subtrochnt fx r femur, subs for clos fx w nonunion +C2857625|T037|AB|S72.24XM|ICD10CM|Nondisp subtrochnt fx r femr, 7thM|Nondisp subtrochnt fx r femr, 7thM +C2857626|T037|AB|S72.24XN|ICD10CM|Nondisp subtrochnt fx r femr, 7thN|Nondisp subtrochnt fx r femr, 7thN +C2857627|T037|AB|S72.24XP|ICD10CM|Nondisp subtrochnt fx r femur, subs for clos fx w malunion|Nondisp subtrochnt fx r femur, subs for clos fx w malunion +C2857628|T037|AB|S72.24XQ|ICD10CM|Nondisp subtrochnt fx r femr, 7thQ|Nondisp subtrochnt fx r femr, 7thQ +C2857629|T037|AB|S72.24XR|ICD10CM|Nondisp subtrochnt fx r femr, 7thR|Nondisp subtrochnt fx r femr, 7thR +C2857630|T037|PT|S72.24XS|ICD10CM|Nondisplaced subtrochanteric fracture of right femur, sequela|Nondisplaced subtrochanteric fracture of right femur, sequela +C2857630|T037|AB|S72.24XS|ICD10CM|Nondisplaced subtrochnt fracture of right femur, sequela|Nondisplaced subtrochnt fracture of right femur, sequela +C2857631|T037|AB|S72.25|ICD10CM|Nondisplaced subtrochanteric fracture of left femur|Nondisplaced subtrochanteric fracture of left femur +C2857631|T037|HT|S72.25|ICD10CM|Nondisplaced subtrochanteric fracture of left femur|Nondisplaced subtrochanteric fracture of left femur +C2857632|T037|AB|S72.25XA|ICD10CM|Nondisplaced subtrochanteric fracture of left femur, init|Nondisplaced subtrochanteric fracture of left femur, init +C2857632|T037|PT|S72.25XA|ICD10CM|Nondisplaced subtrochanteric fracture of left femur, initial encounter for closed fracture|Nondisplaced subtrochanteric fracture of left femur, initial encounter for closed fracture +C2857633|T037|AB|S72.25XB|ICD10CM|Nondisp subtrochnt fx left femur, init for opn fx type I/2|Nondisp subtrochnt fx left femur, init for opn fx type I/2 +C2857634|T037|AB|S72.25XC|ICD10CM|Nondisp subtrochnt fx l femur, init for opn fx type 3A/B/C|Nondisp subtrochnt fx l femur, init for opn fx type 3A/B/C +C2857635|T037|AB|S72.25XD|ICD10CM|Nondisp subtrochnt fx l femur, subs for clos fx w routn heal|Nondisp subtrochnt fx l femur, subs for clos fx w routn heal +C2857636|T037|AB|S72.25XE|ICD10CM|Nondisp subtrochnt fx l femr, 7thE|Nondisp subtrochnt fx l femr, 7thE +C2857637|T037|AB|S72.25XF|ICD10CM|Nondisp subtrochnt fx l femr, 7thF|Nondisp subtrochnt fx l femr, 7thF +C2857638|T037|AB|S72.25XG|ICD10CM|Nondisp subtrochnt fx l femur, subs for clos fx w delay heal|Nondisp subtrochnt fx l femur, subs for clos fx w delay heal +C2857639|T037|AB|S72.25XH|ICD10CM|Nondisp subtrochnt fx l femr, 7thH|Nondisp subtrochnt fx l femr, 7thH +C2857640|T037|AB|S72.25XJ|ICD10CM|Nondisp subtrochnt fx l femr, 7thJ|Nondisp subtrochnt fx l femr, 7thJ +C2857641|T037|AB|S72.25XK|ICD10CM|Nondisp subtrochnt fx l femur, subs for clos fx w nonunion|Nondisp subtrochnt fx l femur, subs for clos fx w nonunion +C2857642|T037|AB|S72.25XM|ICD10CM|Nondisp subtrochnt fx l femr, 7thM|Nondisp subtrochnt fx l femr, 7thM +C2857643|T037|AB|S72.25XN|ICD10CM|Nondisp subtrochnt fx l femr, 7thN|Nondisp subtrochnt fx l femr, 7thN +C2857644|T037|AB|S72.25XP|ICD10CM|Nondisp subtrochnt fx l femur, subs for clos fx w malunion|Nondisp subtrochnt fx l femur, subs for clos fx w malunion +C2857645|T037|AB|S72.25XQ|ICD10CM|Nondisp subtrochnt fx l femr, 7thQ|Nondisp subtrochnt fx l femr, 7thQ +C2857646|T037|AB|S72.25XR|ICD10CM|Nondisp subtrochnt fx l femr, 7thR|Nondisp subtrochnt fx l femr, 7thR +C2857647|T037|AB|S72.25XS|ICD10CM|Nondisplaced subtrochanteric fracture of left femur, sequela|Nondisplaced subtrochanteric fracture of left femur, sequela +C2857647|T037|PT|S72.25XS|ICD10CM|Nondisplaced subtrochanteric fracture of left femur, sequela|Nondisplaced subtrochanteric fracture of left femur, sequela +C2857648|T037|AB|S72.26|ICD10CM|Nondisplaced subtrochanteric fracture of unspecified femur|Nondisplaced subtrochanteric fracture of unspecified femur +C2857648|T037|HT|S72.26|ICD10CM|Nondisplaced subtrochanteric fracture of unspecified femur|Nondisplaced subtrochanteric fracture of unspecified femur +C2857649|T037|AB|S72.26XA|ICD10CM|Nondisplaced subtrochanteric fracture of unsp femur, init|Nondisplaced subtrochanteric fracture of unsp femur, init +C2857649|T037|PT|S72.26XA|ICD10CM|Nondisplaced subtrochanteric fracture of unspecified femur, initial encounter for closed fracture|Nondisplaced subtrochanteric fracture of unspecified femur, initial encounter for closed fracture +C2857650|T037|AB|S72.26XB|ICD10CM|Nondisp subtrochnt fx unsp femur, init for opn fx type I/2|Nondisp subtrochnt fx unsp femur, init for opn fx type I/2 +C2857651|T037|AB|S72.26XC|ICD10CM|Nondisp subtrochnt fx unsp femr, init for opn fx type 3A/B/C|Nondisp subtrochnt fx unsp femr, init for opn fx type 3A/B/C +C2857652|T037|AB|S72.26XD|ICD10CM|Nondisp subtrochnt fx unsp femr, 7thD|Nondisp subtrochnt fx unsp femr, 7thD +C2857653|T037|AB|S72.26XE|ICD10CM|Nondisp subtrochnt fx unsp femr, 7thE|Nondisp subtrochnt fx unsp femr, 7thE +C2857654|T037|AB|S72.26XF|ICD10CM|Nondisp subtrochnt fx unsp femr, 7thF|Nondisp subtrochnt fx unsp femr, 7thF +C2857655|T037|AB|S72.26XG|ICD10CM|Nondisp subtrochnt fx unsp femr, 7thG|Nondisp subtrochnt fx unsp femr, 7thG +C2857656|T037|AB|S72.26XH|ICD10CM|Nondisp subtrochnt fx unsp femr, 7thH|Nondisp subtrochnt fx unsp femr, 7thH +C2857657|T037|AB|S72.26XJ|ICD10CM|Nondisp subtrochnt fx unsp femr, 7thJ|Nondisp subtrochnt fx unsp femr, 7thJ +C2857658|T037|AB|S72.26XK|ICD10CM|Nondisp subtrochnt fx unsp femr, subs for clos fx w nonunion|Nondisp subtrochnt fx unsp femr, subs for clos fx w nonunion +C2857659|T037|AB|S72.26XM|ICD10CM|Nondisp subtrochnt fx unsp femr, 7thM|Nondisp subtrochnt fx unsp femr, 7thM +C2857660|T037|AB|S72.26XN|ICD10CM|Nondisp subtrochnt fx unsp femr, 7thN|Nondisp subtrochnt fx unsp femr, 7thN +C2857661|T037|AB|S72.26XP|ICD10CM|Nondisp subtrochnt fx unsp femr, subs for clos fx w malunion|Nondisp subtrochnt fx unsp femr, subs for clos fx w malunion +C2857662|T037|AB|S72.26XQ|ICD10CM|Nondisp subtrochnt fx unsp femr, 7thQ|Nondisp subtrochnt fx unsp femr, 7thQ +C2857663|T037|AB|S72.26XR|ICD10CM|Nondisp subtrochnt fx unsp femr, 7thR|Nondisp subtrochnt fx unsp femr, 7thR +C2857664|T037|AB|S72.26XS|ICD10CM|Nondisplaced subtrochanteric fracture of unsp femur, sequela|Nondisplaced subtrochanteric fracture of unsp femur, sequela +C2857664|T037|PT|S72.26XS|ICD10CM|Nondisplaced subtrochanteric fracture of unspecified femur, sequela|Nondisplaced subtrochanteric fracture of unspecified femur, sequela +C0272753|T037|HT|S72.3|ICD10CM|Fracture of shaft of femur|Fracture of shaft of femur +C0272753|T037|AB|S72.3|ICD10CM|Fracture of shaft of femur|Fracture of shaft of femur +C0272753|T037|PT|S72.3|ICD10|Fracture of shaft of femur|Fracture of shaft of femur +C2857665|T037|AB|S72.30|ICD10CM|Unspecified fracture of shaft of femur|Unspecified fracture of shaft of femur +C2857665|T037|HT|S72.30|ICD10CM|Unspecified fracture of shaft of femur|Unspecified fracture of shaft of femur +C2857666|T037|AB|S72.301|ICD10CM|Unspecified fracture of shaft of right femur|Unspecified fracture of shaft of right femur +C2857666|T037|HT|S72.301|ICD10CM|Unspecified fracture of shaft of right femur|Unspecified fracture of shaft of right femur +C2857667|T037|AB|S72.301A|ICD10CM|Unsp fracture of shaft of right femur, init for clos fx|Unsp fracture of shaft of right femur, init for clos fx +C2857667|T037|PT|S72.301A|ICD10CM|Unspecified fracture of shaft of right femur, initial encounter for closed fracture|Unspecified fracture of shaft of right femur, initial encounter for closed fracture +C2857668|T037|AB|S72.301B|ICD10CM|Unsp fx shaft of right femur, init for opn fx type I/2|Unsp fx shaft of right femur, init for opn fx type I/2 +C2857668|T037|PT|S72.301B|ICD10CM|Unspecified fracture of shaft of right femur, initial encounter for open fracture type I or II|Unspecified fracture of shaft of right femur, initial encounter for open fracture type I or II +C2857669|T037|AB|S72.301C|ICD10CM|Unsp fx shaft of right femur, init for opn fx type 3A/B/C|Unsp fx shaft of right femur, init for opn fx type 3A/B/C +C2857670|T037|AB|S72.301D|ICD10CM|Unsp fx shaft of right femur, subs for clos fx w routn heal|Unsp fx shaft of right femur, subs for clos fx w routn heal +C2857671|T037|AB|S72.301E|ICD10CM|Unsp fx shaft of r femr, 7thE|Unsp fx shaft of r femr, 7thE +C2857672|T037|AB|S72.301F|ICD10CM|Unsp fx shaft of r femr, 7thF|Unsp fx shaft of r femr, 7thF +C2857673|T037|AB|S72.301G|ICD10CM|Unsp fx shaft of right femur, subs for clos fx w delay heal|Unsp fx shaft of right femur, subs for clos fx w delay heal +C2857674|T037|AB|S72.301H|ICD10CM|Unsp fx shaft of r femr, 7thH|Unsp fx shaft of r femr, 7thH +C2857675|T037|AB|S72.301J|ICD10CM|Unsp fx shaft of r femr, 7thJ|Unsp fx shaft of r femr, 7thJ +C2857676|T037|AB|S72.301K|ICD10CM|Unsp fx shaft of right femur, subs for clos fx w nonunion|Unsp fx shaft of right femur, subs for clos fx w nonunion +C2857676|T037|PT|S72.301K|ICD10CM|Unspecified fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion|Unspecified fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion +C2857677|T037|AB|S72.301M|ICD10CM|Unsp fx shaft of r femr, subs for opn fx type I/2 w nonunion|Unsp fx shaft of r femr, subs for opn fx type I/2 w nonunion +C2857678|T037|AB|S72.301N|ICD10CM|Unsp fx shaft of r femr, 7thN|Unsp fx shaft of r femr, 7thN +C2857679|T037|AB|S72.301P|ICD10CM|Unsp fx shaft of right femur, subs for clos fx w malunion|Unsp fx shaft of right femur, subs for clos fx w malunion +C2857679|T037|PT|S72.301P|ICD10CM|Unspecified fracture of shaft of right femur, subsequent encounter for closed fracture with malunion|Unspecified fracture of shaft of right femur, subsequent encounter for closed fracture with malunion +C2857680|T037|AB|S72.301Q|ICD10CM|Unsp fx shaft of r femr, subs for opn fx type I/2 w malunion|Unsp fx shaft of r femr, subs for opn fx type I/2 w malunion +C2857681|T037|AB|S72.301R|ICD10CM|Unsp fx shaft of r femr, 7thR|Unsp fx shaft of r femr, 7thR +C2857682|T037|PT|S72.301S|ICD10CM|Unspecified fracture of shaft of right femur, sequela|Unspecified fracture of shaft of right femur, sequela +C2857682|T037|AB|S72.301S|ICD10CM|Unspecified fracture of shaft of right femur, sequela|Unspecified fracture of shaft of right femur, sequela +C2857683|T037|AB|S72.302|ICD10CM|Unspecified fracture of shaft of left femur|Unspecified fracture of shaft of left femur +C2857683|T037|HT|S72.302|ICD10CM|Unspecified fracture of shaft of left femur|Unspecified fracture of shaft of left femur +C2857684|T037|AB|S72.302A|ICD10CM|Unsp fracture of shaft of left femur, init for clos fx|Unsp fracture of shaft of left femur, init for clos fx +C2857684|T037|PT|S72.302A|ICD10CM|Unspecified fracture of shaft of left femur, initial encounter for closed fracture|Unspecified fracture of shaft of left femur, initial encounter for closed fracture +C2857685|T037|AB|S72.302B|ICD10CM|Unsp fx shaft of left femur, init for opn fx type I/2|Unsp fx shaft of left femur, init for opn fx type I/2 +C2857685|T037|PT|S72.302B|ICD10CM|Unspecified fracture of shaft of left femur, initial encounter for open fracture type I or II|Unspecified fracture of shaft of left femur, initial encounter for open fracture type I or II +C2857686|T037|AB|S72.302C|ICD10CM|Unsp fx shaft of left femur, init for opn fx type 3A/B/C|Unsp fx shaft of left femur, init for opn fx type 3A/B/C +C2857687|T037|AB|S72.302D|ICD10CM|Unsp fx shaft of left femur, subs for clos fx w routn heal|Unsp fx shaft of left femur, subs for clos fx w routn heal +C2857688|T037|AB|S72.302E|ICD10CM|Unsp fx shaft of l femr, 7thE|Unsp fx shaft of l femr, 7thE +C2857689|T037|AB|S72.302F|ICD10CM|Unsp fx shaft of l femr, 7thF|Unsp fx shaft of l femr, 7thF +C2857690|T037|AB|S72.302G|ICD10CM|Unsp fx shaft of left femur, subs for clos fx w delay heal|Unsp fx shaft of left femur, subs for clos fx w delay heal +C2857691|T037|AB|S72.302H|ICD10CM|Unsp fx shaft of l femr, 7thH|Unsp fx shaft of l femr, 7thH +C2857692|T037|AB|S72.302J|ICD10CM|Unsp fx shaft of l femr, 7thJ|Unsp fx shaft of l femr, 7thJ +C2857693|T037|AB|S72.302K|ICD10CM|Unsp fx shaft of left femur, subs for clos fx w nonunion|Unsp fx shaft of left femur, subs for clos fx w nonunion +C2857693|T037|PT|S72.302K|ICD10CM|Unspecified fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion|Unspecified fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion +C2857694|T037|AB|S72.302M|ICD10CM|Unsp fx shaft of l femr, subs for opn fx type I/2 w nonunion|Unsp fx shaft of l femr, subs for opn fx type I/2 w nonunion +C2857695|T037|AB|S72.302N|ICD10CM|Unsp fx shaft of l femr, 7thN|Unsp fx shaft of l femr, 7thN +C2857696|T037|AB|S72.302P|ICD10CM|Unsp fx shaft of left femur, subs for clos fx w malunion|Unsp fx shaft of left femur, subs for clos fx w malunion +C2857696|T037|PT|S72.302P|ICD10CM|Unspecified fracture of shaft of left femur, subsequent encounter for closed fracture with malunion|Unspecified fracture of shaft of left femur, subsequent encounter for closed fracture with malunion +C2857697|T037|AB|S72.302Q|ICD10CM|Unsp fx shaft of l femr, subs for opn fx type I/2 w malunion|Unsp fx shaft of l femr, subs for opn fx type I/2 w malunion +C2857698|T037|AB|S72.302R|ICD10CM|Unsp fx shaft of l femr, 7thR|Unsp fx shaft of l femr, 7thR +C2857699|T037|PT|S72.302S|ICD10CM|Unspecified fracture of shaft of left femur, sequela|Unspecified fracture of shaft of left femur, sequela +C2857699|T037|AB|S72.302S|ICD10CM|Unspecified fracture of shaft of left femur, sequela|Unspecified fracture of shaft of left femur, sequela +C2857700|T037|AB|S72.309|ICD10CM|Unspecified fracture of shaft of unspecified femur|Unspecified fracture of shaft of unspecified femur +C2857700|T037|HT|S72.309|ICD10CM|Unspecified fracture of shaft of unspecified femur|Unspecified fracture of shaft of unspecified femur +C2857701|T037|AB|S72.309A|ICD10CM|Unsp fracture of shaft of unsp femur, init for clos fx|Unsp fracture of shaft of unsp femur, init for clos fx +C2857701|T037|PT|S72.309A|ICD10CM|Unspecified fracture of shaft of unspecified femur, initial encounter for closed fracture|Unspecified fracture of shaft of unspecified femur, initial encounter for closed fracture +C2857702|T037|AB|S72.309B|ICD10CM|Unsp fx shaft of unsp femur, init for opn fx type I/2|Unsp fx shaft of unsp femur, init for opn fx type I/2 +C2857702|T037|PT|S72.309B|ICD10CM|Unspecified fracture of shaft of unspecified femur, initial encounter for open fracture type I or II|Unspecified fracture of shaft of unspecified femur, initial encounter for open fracture type I or II +C2857703|T037|AB|S72.309C|ICD10CM|Unsp fx shaft of unsp femur, init for opn fx type 3A/B/C|Unsp fx shaft of unsp femur, init for opn fx type 3A/B/C +C2857704|T037|AB|S72.309D|ICD10CM|Unsp fx shaft of unsp femur, subs for clos fx w routn heal|Unsp fx shaft of unsp femur, subs for clos fx w routn heal +C2857705|T037|AB|S72.309E|ICD10CM|Unsp fx shaft of unsp femr, 7thE|Unsp fx shaft of unsp femr, 7thE +C2857706|T037|AB|S72.309F|ICD10CM|Unsp fx shaft of unsp femr, 7thF|Unsp fx shaft of unsp femr, 7thF +C2857707|T037|AB|S72.309G|ICD10CM|Unsp fx shaft of unsp femur, subs for clos fx w delay heal|Unsp fx shaft of unsp femur, subs for clos fx w delay heal +C2857708|T037|AB|S72.309H|ICD10CM|Unsp fx shaft of unsp femr, 7thH|Unsp fx shaft of unsp femr, 7thH +C2857709|T037|AB|S72.309J|ICD10CM|Unsp fx shaft of unsp femr, 7thJ|Unsp fx shaft of unsp femr, 7thJ +C2857710|T037|AB|S72.309K|ICD10CM|Unsp fx shaft of unsp femur, subs for clos fx w nonunion|Unsp fx shaft of unsp femur, subs for clos fx w nonunion +C2857711|T037|AB|S72.309M|ICD10CM|Unsp fx shaft of unsp femr, 7thM|Unsp fx shaft of unsp femr, 7thM +C2857712|T037|AB|S72.309N|ICD10CM|Unsp fx shaft of unsp femr, 7thN|Unsp fx shaft of unsp femr, 7thN +C2857713|T037|AB|S72.309P|ICD10CM|Unsp fx shaft of unsp femur, subs for clos fx w malunion|Unsp fx shaft of unsp femur, subs for clos fx w malunion +C2857714|T037|AB|S72.309Q|ICD10CM|Unsp fx shaft of unsp femr, 7thQ|Unsp fx shaft of unsp femr, 7thQ +C2857715|T037|AB|S72.309R|ICD10CM|Unsp fx shaft of unsp femr, 7thR|Unsp fx shaft of unsp femr, 7thR +C2857716|T037|PT|S72.309S|ICD10CM|Unspecified fracture of shaft of unspecified femur, sequela|Unspecified fracture of shaft of unspecified femur, sequela +C2857716|T037|AB|S72.309S|ICD10CM|Unspecified fracture of shaft of unspecified femur, sequela|Unspecified fracture of shaft of unspecified femur, sequela +C2857717|T037|AB|S72.32|ICD10CM|Transverse fracture of shaft of femur|Transverse fracture of shaft of femur +C2857717|T037|HT|S72.32|ICD10CM|Transverse fracture of shaft of femur|Transverse fracture of shaft of femur +C2857718|T037|AB|S72.321|ICD10CM|Displaced transverse fracture of shaft of right femur|Displaced transverse fracture of shaft of right femur +C2857718|T037|HT|S72.321|ICD10CM|Displaced transverse fracture of shaft of right femur|Displaced transverse fracture of shaft of right femur +C2857719|T037|AB|S72.321A|ICD10CM|Displaced transverse fracture of shaft of right femur, init|Displaced transverse fracture of shaft of right femur, init +C2857719|T037|PT|S72.321A|ICD10CM|Displaced transverse fracture of shaft of right femur, initial encounter for closed fracture|Displaced transverse fracture of shaft of right femur, initial encounter for closed fracture +C2857720|T037|AB|S72.321B|ICD10CM|Displ transverse fx shaft of r femr, 7thB|Displ transverse fx shaft of r femr, 7thB +C2857721|T037|AB|S72.321C|ICD10CM|Displ transverse fx shaft of r femr, 7thC|Displ transverse fx shaft of r femr, 7thC +C2857722|T037|AB|S72.321D|ICD10CM|Displ transverse fx shaft of r femr, 7thD|Displ transverse fx shaft of r femr, 7thD +C2857723|T037|AB|S72.321E|ICD10CM|Displ transverse fx shaft of r femr, 7thE|Displ transverse fx shaft of r femr, 7thE +C2857724|T037|AB|S72.321F|ICD10CM|Displ transverse fx shaft of r femr, 7thF|Displ transverse fx shaft of r femr, 7thF +C2857725|T037|AB|S72.321G|ICD10CM|Displ transverse fx shaft of r femr, 7thG|Displ transverse fx shaft of r femr, 7thG +C2857726|T037|AB|S72.321H|ICD10CM|Displ transverse fx shaft of r femr, 7thH|Displ transverse fx shaft of r femr, 7thH +C2857727|T037|AB|S72.321J|ICD10CM|Displ transverse fx shaft of r femr, 7thJ|Displ transverse fx shaft of r femr, 7thJ +C2857728|T037|AB|S72.321K|ICD10CM|Displ transverse fx shaft of r femr, 7thK|Displ transverse fx shaft of r femr, 7thK +C2857729|T037|AB|S72.321M|ICD10CM|Displ transverse fx shaft of r femr, 7thM|Displ transverse fx shaft of r femr, 7thM +C2857730|T037|AB|S72.321N|ICD10CM|Displ transverse fx shaft of r femr, 7thN|Displ transverse fx shaft of r femr, 7thN +C2857731|T037|AB|S72.321P|ICD10CM|Displ transverse fx shaft of r femr, 7thP|Displ transverse fx shaft of r femr, 7thP +C2857732|T037|AB|S72.321Q|ICD10CM|Displ transverse fx shaft of r femr, 7thQ|Displ transverse fx shaft of r femr, 7thQ +C2857733|T037|AB|S72.321R|ICD10CM|Displ transverse fx shaft of r femr, 7thR|Displ transverse fx shaft of r femr, 7thR +C2857734|T037|PT|S72.321S|ICD10CM|Displaced transverse fracture of shaft of right femur, sequela|Displaced transverse fracture of shaft of right femur, sequela +C2857734|T037|AB|S72.321S|ICD10CM|Displaced transverse fx shaft of right femur, sequela|Displaced transverse fx shaft of right femur, sequela +C2857735|T037|AB|S72.322|ICD10CM|Displaced transverse fracture of shaft of left femur|Displaced transverse fracture of shaft of left femur +C2857735|T037|HT|S72.322|ICD10CM|Displaced transverse fracture of shaft of left femur|Displaced transverse fracture of shaft of left femur +C2857736|T037|AB|S72.322A|ICD10CM|Displaced transverse fracture of shaft of left femur, init|Displaced transverse fracture of shaft of left femur, init +C2857736|T037|PT|S72.322A|ICD10CM|Displaced transverse fracture of shaft of left femur, initial encounter for closed fracture|Displaced transverse fracture of shaft of left femur, initial encounter for closed fracture +C2857737|T037|AB|S72.322B|ICD10CM|Displ transverse fx shaft of l femr, 7thB|Displ transverse fx shaft of l femr, 7thB +C2857738|T037|AB|S72.322C|ICD10CM|Displ transverse fx shaft of l femr, 7thC|Displ transverse fx shaft of l femr, 7thC +C2857739|T037|AB|S72.322D|ICD10CM|Displ transverse fx shaft of l femr, 7thD|Displ transverse fx shaft of l femr, 7thD +C2857740|T037|AB|S72.322E|ICD10CM|Displ transverse fx shaft of l femr, 7thE|Displ transverse fx shaft of l femr, 7thE +C2857741|T037|AB|S72.322F|ICD10CM|Displ transverse fx shaft of l femr, 7thF|Displ transverse fx shaft of l femr, 7thF +C2857742|T037|AB|S72.322G|ICD10CM|Displ transverse fx shaft of l femr, 7thG|Displ transverse fx shaft of l femr, 7thG +C2857743|T037|AB|S72.322H|ICD10CM|Displ transverse fx shaft of l femr, 7thH|Displ transverse fx shaft of l femr, 7thH +C2857744|T037|AB|S72.322J|ICD10CM|Displ transverse fx shaft of l femr, 7thJ|Displ transverse fx shaft of l femr, 7thJ +C2857745|T037|AB|S72.322K|ICD10CM|Displ transverse fx shaft of l femr, 7thK|Displ transverse fx shaft of l femr, 7thK +C2857746|T037|AB|S72.322M|ICD10CM|Displ transverse fx shaft of l femr, 7thM|Displ transverse fx shaft of l femr, 7thM +C2857747|T037|AB|S72.322N|ICD10CM|Displ transverse fx shaft of l femr, 7thN|Displ transverse fx shaft of l femr, 7thN +C2857748|T037|AB|S72.322P|ICD10CM|Displ transverse fx shaft of l femr, 7thP|Displ transverse fx shaft of l femr, 7thP +C2857749|T037|AB|S72.322Q|ICD10CM|Displ transverse fx shaft of l femr, 7thQ|Displ transverse fx shaft of l femr, 7thQ +C2857750|T037|AB|S72.322R|ICD10CM|Displ transverse fx shaft of l femr, 7thR|Displ transverse fx shaft of l femr, 7thR +C2857751|T037|PT|S72.322S|ICD10CM|Displaced transverse fracture of shaft of left femur, sequela|Displaced transverse fracture of shaft of left femur, sequela +C2857751|T037|AB|S72.322S|ICD10CM|Displaced transverse fx shaft of left femur, sequela|Displaced transverse fx shaft of left femur, sequela +C2857752|T037|AB|S72.323|ICD10CM|Displaced transverse fracture of shaft of unspecified femur|Displaced transverse fracture of shaft of unspecified femur +C2857752|T037|HT|S72.323|ICD10CM|Displaced transverse fracture of shaft of unspecified femur|Displaced transverse fracture of shaft of unspecified femur +C2857753|T037|AB|S72.323A|ICD10CM|Displaced transverse fracture of shaft of unsp femur, init|Displaced transverse fracture of shaft of unsp femur, init +C2857753|T037|PT|S72.323A|ICD10CM|Displaced transverse fracture of shaft of unspecified femur, initial encounter for closed fracture|Displaced transverse fracture of shaft of unspecified femur, initial encounter for closed fracture +C2857754|T037|AB|S72.323B|ICD10CM|Displ transverse fx shaft of unsp femr, 7thB|Displ transverse fx shaft of unsp femr, 7thB +C2857755|T037|AB|S72.323C|ICD10CM|Displ transverse fx shaft of unsp femr, 7thC|Displ transverse fx shaft of unsp femr, 7thC +C2857756|T037|AB|S72.323D|ICD10CM|Displ transverse fx shaft of unsp femr, 7thD|Displ transverse fx shaft of unsp femr, 7thD +C2857757|T037|AB|S72.323E|ICD10CM|Displ transverse fx shaft of unsp femr, 7thE|Displ transverse fx shaft of unsp femr, 7thE +C2857758|T037|AB|S72.323F|ICD10CM|Displ transverse fx shaft of unsp femr, 7thF|Displ transverse fx shaft of unsp femr, 7thF +C2857759|T037|AB|S72.323G|ICD10CM|Displ transverse fx shaft of unsp femr, 7thG|Displ transverse fx shaft of unsp femr, 7thG +C2857760|T037|AB|S72.323H|ICD10CM|Displ transverse fx shaft of unsp femr, 7thH|Displ transverse fx shaft of unsp femr, 7thH +C2857761|T037|AB|S72.323J|ICD10CM|Displ transverse fx shaft of unsp femr, 7thJ|Displ transverse fx shaft of unsp femr, 7thJ +C2857762|T037|AB|S72.323K|ICD10CM|Displ transverse fx shaft of unsp femr, 7thK|Displ transverse fx shaft of unsp femr, 7thK +C2857763|T037|AB|S72.323M|ICD10CM|Displ transverse fx shaft of unsp femr, 7thM|Displ transverse fx shaft of unsp femr, 7thM +C2857764|T037|AB|S72.323N|ICD10CM|Displ transverse fx shaft of unsp femr, 7thN|Displ transverse fx shaft of unsp femr, 7thN +C2857765|T037|AB|S72.323P|ICD10CM|Displ transverse fx shaft of unsp femr, 7thP|Displ transverse fx shaft of unsp femr, 7thP +C2857766|T037|AB|S72.323Q|ICD10CM|Displ transverse fx shaft of unsp femr, 7thQ|Displ transverse fx shaft of unsp femr, 7thQ +C2857767|T037|AB|S72.323R|ICD10CM|Displ transverse fx shaft of unsp femr, 7thR|Displ transverse fx shaft of unsp femr, 7thR +C2857768|T037|PT|S72.323S|ICD10CM|Displaced transverse fracture of shaft of unspecified femur, sequela|Displaced transverse fracture of shaft of unspecified femur, sequela +C2857768|T037|AB|S72.323S|ICD10CM|Displaced transverse fx shaft of unsp femur, sequela|Displaced transverse fx shaft of unsp femur, sequela +C2857769|T037|AB|S72.324|ICD10CM|Nondisplaced transverse fracture of shaft of right femur|Nondisplaced transverse fracture of shaft of right femur +C2857769|T037|HT|S72.324|ICD10CM|Nondisplaced transverse fracture of shaft of right femur|Nondisplaced transverse fracture of shaft of right femur +C2857770|T037|AB|S72.324A|ICD10CM|Nondisp transverse fracture of shaft of right femur, init|Nondisp transverse fracture of shaft of right femur, init +C2857770|T037|PT|S72.324A|ICD10CM|Nondisplaced transverse fracture of shaft of right femur, initial encounter for closed fracture|Nondisplaced transverse fracture of shaft of right femur, initial encounter for closed fracture +C2857771|T037|AB|S72.324B|ICD10CM|Nondisp transverse fx shaft of r femr, 7thB|Nondisp transverse fx shaft of r femr, 7thB +C2857772|T037|AB|S72.324C|ICD10CM|Nondisp transverse fx shaft of r femr, 7thC|Nondisp transverse fx shaft of r femr, 7thC +C2857773|T037|AB|S72.324D|ICD10CM|Nondisp transverse fx shaft of r femr, 7thD|Nondisp transverse fx shaft of r femr, 7thD +C2857774|T037|AB|S72.324E|ICD10CM|Nondisp transverse fx shaft of r femr, 7thE|Nondisp transverse fx shaft of r femr, 7thE +C2857775|T037|AB|S72.324F|ICD10CM|Nondisp transverse fx shaft of r femr, 7thF|Nondisp transverse fx shaft of r femr, 7thF +C2857776|T037|AB|S72.324G|ICD10CM|Nondisp transverse fx shaft of r femr, 7thG|Nondisp transverse fx shaft of r femr, 7thG +C2857777|T037|AB|S72.324H|ICD10CM|Nondisp transverse fx shaft of r femr, 7thH|Nondisp transverse fx shaft of r femr, 7thH +C2857778|T037|AB|S72.324J|ICD10CM|Nondisp transverse fx shaft of r femr, 7thJ|Nondisp transverse fx shaft of r femr, 7thJ +C2857779|T037|AB|S72.324K|ICD10CM|Nondisp transverse fx shaft of r femr, 7thK|Nondisp transverse fx shaft of r femr, 7thK +C2857780|T037|AB|S72.324M|ICD10CM|Nondisp transverse fx shaft of r femr, 7thM|Nondisp transverse fx shaft of r femr, 7thM +C2857781|T037|AB|S72.324N|ICD10CM|Nondisp transverse fx shaft of r femr, 7thN|Nondisp transverse fx shaft of r femr, 7thN +C2857782|T037|AB|S72.324P|ICD10CM|Nondisp transverse fx shaft of r femr, 7thP|Nondisp transverse fx shaft of r femr, 7thP +C2857783|T037|AB|S72.324Q|ICD10CM|Nondisp transverse fx shaft of r femr, 7thQ|Nondisp transverse fx shaft of r femr, 7thQ +C2857784|T037|AB|S72.324R|ICD10CM|Nondisp transverse fx shaft of r femr, 7thR|Nondisp transverse fx shaft of r femr, 7thR +C2857785|T037|AB|S72.324S|ICD10CM|Nondisp transverse fracture of shaft of right femur, sequela|Nondisp transverse fracture of shaft of right femur, sequela +C2857785|T037|PT|S72.324S|ICD10CM|Nondisplaced transverse fracture of shaft of right femur, sequela|Nondisplaced transverse fracture of shaft of right femur, sequela +C2857786|T037|AB|S72.325|ICD10CM|Nondisplaced transverse fracture of shaft of left femur|Nondisplaced transverse fracture of shaft of left femur +C2857786|T037|HT|S72.325|ICD10CM|Nondisplaced transverse fracture of shaft of left femur|Nondisplaced transverse fracture of shaft of left femur +C2857787|T037|AB|S72.325A|ICD10CM|Nondisp transverse fracture of shaft of left femur, init|Nondisp transverse fracture of shaft of left femur, init +C2857787|T037|PT|S72.325A|ICD10CM|Nondisplaced transverse fracture of shaft of left femur, initial encounter for closed fracture|Nondisplaced transverse fracture of shaft of left femur, initial encounter for closed fracture +C2857788|T037|AB|S72.325B|ICD10CM|Nondisp transverse fx shaft of l femr, 7thB|Nondisp transverse fx shaft of l femr, 7thB +C2857789|T037|AB|S72.325C|ICD10CM|Nondisp transverse fx shaft of l femr, 7thC|Nondisp transverse fx shaft of l femr, 7thC +C2857790|T037|AB|S72.325D|ICD10CM|Nondisp transverse fx shaft of l femr, 7thD|Nondisp transverse fx shaft of l femr, 7thD +C2857791|T037|AB|S72.325E|ICD10CM|Nondisp transverse fx shaft of l femr, 7thE|Nondisp transverse fx shaft of l femr, 7thE +C2857792|T037|AB|S72.325F|ICD10CM|Nondisp transverse fx shaft of l femr, 7thF|Nondisp transverse fx shaft of l femr, 7thF +C2857793|T037|AB|S72.325G|ICD10CM|Nondisp transverse fx shaft of l femr, 7thG|Nondisp transverse fx shaft of l femr, 7thG +C2857794|T037|AB|S72.325H|ICD10CM|Nondisp transverse fx shaft of l femr, 7thH|Nondisp transverse fx shaft of l femr, 7thH +C2857795|T037|AB|S72.325J|ICD10CM|Nondisp transverse fx shaft of l femr, 7thJ|Nondisp transverse fx shaft of l femr, 7thJ +C2857796|T037|AB|S72.325K|ICD10CM|Nondisp transverse fx shaft of l femr, 7thK|Nondisp transverse fx shaft of l femr, 7thK +C2857797|T037|AB|S72.325M|ICD10CM|Nondisp transverse fx shaft of l femr, 7thM|Nondisp transverse fx shaft of l femr, 7thM +C2857798|T037|AB|S72.325N|ICD10CM|Nondisp transverse fx shaft of l femr, 7thN|Nondisp transverse fx shaft of l femr, 7thN +C2857799|T037|AB|S72.325P|ICD10CM|Nondisp transverse fx shaft of l femr, 7thP|Nondisp transverse fx shaft of l femr, 7thP +C2857800|T037|AB|S72.325Q|ICD10CM|Nondisp transverse fx shaft of l femr, 7thQ|Nondisp transverse fx shaft of l femr, 7thQ +C2857801|T037|AB|S72.325R|ICD10CM|Nondisp transverse fx shaft of l femr, 7thR|Nondisp transverse fx shaft of l femr, 7thR +C2857802|T037|AB|S72.325S|ICD10CM|Nondisp transverse fracture of shaft of left femur, sequela|Nondisp transverse fracture of shaft of left femur, sequela +C2857802|T037|PT|S72.325S|ICD10CM|Nondisplaced transverse fracture of shaft of left femur, sequela|Nondisplaced transverse fracture of shaft of left femur, sequela +C2857803|T037|AB|S72.326|ICD10CM|Nondisplaced transverse fracture of shaft of unsp femur|Nondisplaced transverse fracture of shaft of unsp femur +C2857803|T037|HT|S72.326|ICD10CM|Nondisplaced transverse fracture of shaft of unspecified femur|Nondisplaced transverse fracture of shaft of unspecified femur +C2857804|T037|AB|S72.326A|ICD10CM|Nondisp transverse fracture of shaft of unsp femur, init|Nondisp transverse fracture of shaft of unsp femur, init +C2857805|T037|AB|S72.326B|ICD10CM|Nondisp transverse fx shaft of unsp femr, 7thB|Nondisp transverse fx shaft of unsp femr, 7thB +C2857806|T037|AB|S72.326C|ICD10CM|Nondisp transverse fx shaft of unsp femr, 7thC|Nondisp transverse fx shaft of unsp femr, 7thC +C2857807|T037|AB|S72.326D|ICD10CM|Nondisp transverse fx shaft of unsp femr, 7thD|Nondisp transverse fx shaft of unsp femr, 7thD +C2857808|T037|AB|S72.326E|ICD10CM|Nondisp transverse fx shaft of unsp femr, 7thE|Nondisp transverse fx shaft of unsp femr, 7thE +C2857809|T037|AB|S72.326F|ICD10CM|Nondisp transverse fx shaft of unsp femr, 7thF|Nondisp transverse fx shaft of unsp femr, 7thF +C2857810|T037|AB|S72.326G|ICD10CM|Nondisp transverse fx shaft of unsp femr, 7thG|Nondisp transverse fx shaft of unsp femr, 7thG +C2857811|T037|AB|S72.326H|ICD10CM|Nondisp transverse fx shaft of unsp femr, 7thH|Nondisp transverse fx shaft of unsp femr, 7thH +C2857812|T037|AB|S72.326J|ICD10CM|Nondisp transverse fx shaft of unsp femr, 7thJ|Nondisp transverse fx shaft of unsp femr, 7thJ +C2857813|T037|AB|S72.326K|ICD10CM|Nondisp transverse fx shaft of unsp femr, 7thK|Nondisp transverse fx shaft of unsp femr, 7thK +C2857814|T037|AB|S72.326M|ICD10CM|Nondisp transverse fx shaft of unsp femr, 7thM|Nondisp transverse fx shaft of unsp femr, 7thM +C2857815|T037|AB|S72.326N|ICD10CM|Nondisp transverse fx shaft of unsp femr, 7thN|Nondisp transverse fx shaft of unsp femr, 7thN +C2857816|T037|AB|S72.326P|ICD10CM|Nondisp transverse fx shaft of unsp femr, 7thP|Nondisp transverse fx shaft of unsp femr, 7thP +C2857817|T037|AB|S72.326Q|ICD10CM|Nondisp transverse fx shaft of unsp femr, 7thQ|Nondisp transverse fx shaft of unsp femr, 7thQ +C2857818|T037|AB|S72.326R|ICD10CM|Nondisp transverse fx shaft of unsp femr, 7thR|Nondisp transverse fx shaft of unsp femr, 7thR +C2857819|T037|AB|S72.326S|ICD10CM|Nondisp transverse fracture of shaft of unsp femur, sequela|Nondisp transverse fracture of shaft of unsp femur, sequela +C2857819|T037|PT|S72.326S|ICD10CM|Nondisplaced transverse fracture of shaft of unspecified femur, sequela|Nondisplaced transverse fracture of shaft of unspecified femur, sequela +C2857820|T037|AB|S72.33|ICD10CM|Oblique fracture of shaft of femur|Oblique fracture of shaft of femur +C2857820|T037|HT|S72.33|ICD10CM|Oblique fracture of shaft of femur|Oblique fracture of shaft of femur +C2857821|T037|AB|S72.331|ICD10CM|Displaced oblique fracture of shaft of right femur|Displaced oblique fracture of shaft of right femur +C2857821|T037|HT|S72.331|ICD10CM|Displaced oblique fracture of shaft of right femur|Displaced oblique fracture of shaft of right femur +C2857822|T037|AB|S72.331A|ICD10CM|Displaced oblique fracture of shaft of right femur, init|Displaced oblique fracture of shaft of right femur, init +C2857822|T037|PT|S72.331A|ICD10CM|Displaced oblique fracture of shaft of right femur, initial encounter for closed fracture|Displaced oblique fracture of shaft of right femur, initial encounter for closed fracture +C2857823|T037|AB|S72.331B|ICD10CM|Displ oblique fx shaft of r femur, init for opn fx type I/2|Displ oblique fx shaft of r femur, init for opn fx type I/2 +C2857823|T037|PT|S72.331B|ICD10CM|Displaced oblique fracture of shaft of right femur, initial encounter for open fracture type I or II|Displaced oblique fracture of shaft of right femur, initial encounter for open fracture type I or II +C2857824|T037|AB|S72.331C|ICD10CM|Displ oblique fx shaft of r femr, 7thC|Displ oblique fx shaft of r femr, 7thC +C2857825|T037|AB|S72.331D|ICD10CM|Displ oblique fx shaft of r femr, 7thD|Displ oblique fx shaft of r femr, 7thD +C2857826|T037|AB|S72.331E|ICD10CM|Displ oblique fx shaft of r femr, 7thE|Displ oblique fx shaft of r femr, 7thE +C2857827|T037|AB|S72.331F|ICD10CM|Displ oblique fx shaft of r femr, 7thF|Displ oblique fx shaft of r femr, 7thF +C2857828|T037|AB|S72.331G|ICD10CM|Displ oblique fx shaft of r femr, 7thG|Displ oblique fx shaft of r femr, 7thG +C2857829|T037|AB|S72.331H|ICD10CM|Displ oblique fx shaft of r femr, 7thH|Displ oblique fx shaft of r femr, 7thH +C2857830|T037|AB|S72.331J|ICD10CM|Displ oblique fx shaft of r femr, 7thJ|Displ oblique fx shaft of r femr, 7thJ +C2857831|T037|AB|S72.331K|ICD10CM|Displ oblique fx shaft of r femr, 7thK|Displ oblique fx shaft of r femr, 7thK +C2857832|T037|AB|S72.331M|ICD10CM|Displ oblique fx shaft of r femr, 7thM|Displ oblique fx shaft of r femr, 7thM +C2857833|T037|AB|S72.331N|ICD10CM|Displ oblique fx shaft of r femr, 7thN|Displ oblique fx shaft of r femr, 7thN +C2857834|T037|AB|S72.331P|ICD10CM|Displ oblique fx shaft of r femr, 7thP|Displ oblique fx shaft of r femr, 7thP +C2857835|T037|AB|S72.331Q|ICD10CM|Displ oblique fx shaft of r femr, 7thQ|Displ oblique fx shaft of r femr, 7thQ +C2857836|T037|AB|S72.331R|ICD10CM|Displ oblique fx shaft of r femr, 7thR|Displ oblique fx shaft of r femr, 7thR +C2857837|T037|PT|S72.331S|ICD10CM|Displaced oblique fracture of shaft of right femur, sequela|Displaced oblique fracture of shaft of right femur, sequela +C2857837|T037|AB|S72.331S|ICD10CM|Displaced oblique fracture of shaft of right femur, sequela|Displaced oblique fracture of shaft of right femur, sequela +C2857838|T037|AB|S72.332|ICD10CM|Displaced oblique fracture of shaft of left femur|Displaced oblique fracture of shaft of left femur +C2857838|T037|HT|S72.332|ICD10CM|Displaced oblique fracture of shaft of left femur|Displaced oblique fracture of shaft of left femur +C2857839|T037|AB|S72.332A|ICD10CM|Displaced oblique fracture of shaft of left femur, init|Displaced oblique fracture of shaft of left femur, init +C2857839|T037|PT|S72.332A|ICD10CM|Displaced oblique fracture of shaft of left femur, initial encounter for closed fracture|Displaced oblique fracture of shaft of left femur, initial encounter for closed fracture +C2857840|T037|AB|S72.332B|ICD10CM|Displ oblique fx shaft of l femur, init for opn fx type I/2|Displ oblique fx shaft of l femur, init for opn fx type I/2 +C2857840|T037|PT|S72.332B|ICD10CM|Displaced oblique fracture of shaft of left femur, initial encounter for open fracture type I or II|Displaced oblique fracture of shaft of left femur, initial encounter for open fracture type I or II +C2857841|T037|AB|S72.332C|ICD10CM|Displ oblique fx shaft of l femr, 7thC|Displ oblique fx shaft of l femr, 7thC +C2857842|T037|AB|S72.332D|ICD10CM|Displ oblique fx shaft of l femr, 7thD|Displ oblique fx shaft of l femr, 7thD +C2857843|T037|AB|S72.332E|ICD10CM|Displ oblique fx shaft of l femr, 7thE|Displ oblique fx shaft of l femr, 7thE +C2857844|T037|AB|S72.332F|ICD10CM|Displ oblique fx shaft of l femr, 7thF|Displ oblique fx shaft of l femr, 7thF +C2857845|T037|AB|S72.332G|ICD10CM|Displ oblique fx shaft of l femr, 7thG|Displ oblique fx shaft of l femr, 7thG +C2857846|T037|AB|S72.332H|ICD10CM|Displ oblique fx shaft of l femr, 7thH|Displ oblique fx shaft of l femr, 7thH +C2857847|T037|AB|S72.332J|ICD10CM|Displ oblique fx shaft of l femr, 7thJ|Displ oblique fx shaft of l femr, 7thJ +C2857848|T037|AB|S72.332K|ICD10CM|Displ oblique fx shaft of l femr, 7thK|Displ oblique fx shaft of l femr, 7thK +C2857849|T037|AB|S72.332M|ICD10CM|Displ oblique fx shaft of l femr, 7thM|Displ oblique fx shaft of l femr, 7thM +C2857850|T037|AB|S72.332N|ICD10CM|Displ oblique fx shaft of l femr, 7thN|Displ oblique fx shaft of l femr, 7thN +C2857851|T037|AB|S72.332P|ICD10CM|Displ oblique fx shaft of l femr, 7thP|Displ oblique fx shaft of l femr, 7thP +C2857852|T037|AB|S72.332Q|ICD10CM|Displ oblique fx shaft of l femr, 7thQ|Displ oblique fx shaft of l femr, 7thQ +C2857853|T037|AB|S72.332R|ICD10CM|Displ oblique fx shaft of l femr, 7thR|Displ oblique fx shaft of l femr, 7thR +C2857854|T037|PT|S72.332S|ICD10CM|Displaced oblique fracture of shaft of left femur, sequela|Displaced oblique fracture of shaft of left femur, sequela +C2857854|T037|AB|S72.332S|ICD10CM|Displaced oblique fracture of shaft of left femur, sequela|Displaced oblique fracture of shaft of left femur, sequela +C2857855|T037|AB|S72.333|ICD10CM|Displaced oblique fracture of shaft of unspecified femur|Displaced oblique fracture of shaft of unspecified femur +C2857855|T037|HT|S72.333|ICD10CM|Displaced oblique fracture of shaft of unspecified femur|Displaced oblique fracture of shaft of unspecified femur +C2857856|T037|AB|S72.333A|ICD10CM|Displaced oblique fracture of shaft of unsp femur, init|Displaced oblique fracture of shaft of unsp femur, init +C2857856|T037|PT|S72.333A|ICD10CM|Displaced oblique fracture of shaft of unspecified femur, initial encounter for closed fracture|Displaced oblique fracture of shaft of unspecified femur, initial encounter for closed fracture +C2857857|T037|AB|S72.333B|ICD10CM|Displ oblique fx shaft of unsp femr, 7thB|Displ oblique fx shaft of unsp femr, 7thB +C2857858|T037|AB|S72.333C|ICD10CM|Displ oblique fx shaft of unsp femr, 7thC|Displ oblique fx shaft of unsp femr, 7thC +C2857859|T037|AB|S72.333D|ICD10CM|Displ oblique fx shaft of unsp femr, 7thD|Displ oblique fx shaft of unsp femr, 7thD +C2857860|T037|AB|S72.333E|ICD10CM|Displ oblique fx shaft of unsp femr, 7thE|Displ oblique fx shaft of unsp femr, 7thE +C2857861|T037|AB|S72.333F|ICD10CM|Displ oblique fx shaft of unsp femr, 7thF|Displ oblique fx shaft of unsp femr, 7thF +C2857862|T037|AB|S72.333G|ICD10CM|Displ oblique fx shaft of unsp femr, 7thG|Displ oblique fx shaft of unsp femr, 7thG +C2857863|T037|AB|S72.333H|ICD10CM|Displ oblique fx shaft of unsp femr, 7thH|Displ oblique fx shaft of unsp femr, 7thH +C2857864|T037|AB|S72.333J|ICD10CM|Displ oblique fx shaft of unsp femr, 7thJ|Displ oblique fx shaft of unsp femr, 7thJ +C2857865|T037|AB|S72.333K|ICD10CM|Displ oblique fx shaft of unsp femr, 7thK|Displ oblique fx shaft of unsp femr, 7thK +C2857866|T037|AB|S72.333M|ICD10CM|Displ oblique fx shaft of unsp femr, 7thM|Displ oblique fx shaft of unsp femr, 7thM +C2857867|T037|AB|S72.333N|ICD10CM|Displ oblique fx shaft of unsp femr, 7thN|Displ oblique fx shaft of unsp femr, 7thN +C2857868|T037|AB|S72.333P|ICD10CM|Displ oblique fx shaft of unsp femr, 7thP|Displ oblique fx shaft of unsp femr, 7thP +C2857869|T037|AB|S72.333Q|ICD10CM|Displ oblique fx shaft of unsp femr, 7thQ|Displ oblique fx shaft of unsp femr, 7thQ +C2857870|T037|AB|S72.333R|ICD10CM|Displ oblique fx shaft of unsp femr, 7thR|Displ oblique fx shaft of unsp femr, 7thR +C2857871|T037|AB|S72.333S|ICD10CM|Displaced oblique fracture of shaft of unsp femur, sequela|Displaced oblique fracture of shaft of unsp femur, sequela +C2857871|T037|PT|S72.333S|ICD10CM|Displaced oblique fracture of shaft of unspecified femur, sequela|Displaced oblique fracture of shaft of unspecified femur, sequela +C2857872|T037|AB|S72.334|ICD10CM|Nondisplaced oblique fracture of shaft of right femur|Nondisplaced oblique fracture of shaft of right femur +C2857872|T037|HT|S72.334|ICD10CM|Nondisplaced oblique fracture of shaft of right femur|Nondisplaced oblique fracture of shaft of right femur +C2857873|T037|AB|S72.334A|ICD10CM|Nondisplaced oblique fracture of shaft of right femur, init|Nondisplaced oblique fracture of shaft of right femur, init +C2857873|T037|PT|S72.334A|ICD10CM|Nondisplaced oblique fracture of shaft of right femur, initial encounter for closed fracture|Nondisplaced oblique fracture of shaft of right femur, initial encounter for closed fracture +C2857874|T037|AB|S72.334B|ICD10CM|Nondisp oblique fx shaft of r femr, init for opn fx type I/2|Nondisp oblique fx shaft of r femr, init for opn fx type I/2 +C2857875|T037|AB|S72.334C|ICD10CM|Nondisp oblique fx shaft of r femr, 7thC|Nondisp oblique fx shaft of r femr, 7thC +C2857876|T037|AB|S72.334D|ICD10CM|Nondisp oblique fx shaft of r femr, 7thD|Nondisp oblique fx shaft of r femr, 7thD +C2857877|T037|AB|S72.334E|ICD10CM|Nondisp oblique fx shaft of r femr, 7thE|Nondisp oblique fx shaft of r femr, 7thE +C2857878|T037|AB|S72.334F|ICD10CM|Nondisp oblique fx shaft of r femr, 7thF|Nondisp oblique fx shaft of r femr, 7thF +C2857879|T037|AB|S72.334G|ICD10CM|Nondisp oblique fx shaft of r femr, 7thG|Nondisp oblique fx shaft of r femr, 7thG +C2857880|T037|AB|S72.334H|ICD10CM|Nondisp oblique fx shaft of r femr, 7thH|Nondisp oblique fx shaft of r femr, 7thH +C2857881|T037|AB|S72.334J|ICD10CM|Nondisp oblique fx shaft of r femr, 7thJ|Nondisp oblique fx shaft of r femr, 7thJ +C2857882|T037|AB|S72.334K|ICD10CM|Nondisp oblique fx shaft of r femr, 7thK|Nondisp oblique fx shaft of r femr, 7thK +C2857883|T037|AB|S72.334M|ICD10CM|Nondisp oblique fx shaft of r femr, 7thM|Nondisp oblique fx shaft of r femr, 7thM +C2857884|T037|AB|S72.334N|ICD10CM|Nondisp oblique fx shaft of r femr, 7thN|Nondisp oblique fx shaft of r femr, 7thN +C2857885|T037|AB|S72.334P|ICD10CM|Nondisp oblique fx shaft of r femr, 7thP|Nondisp oblique fx shaft of r femr, 7thP +C2857886|T037|AB|S72.334Q|ICD10CM|Nondisp oblique fx shaft of r femr, 7thQ|Nondisp oblique fx shaft of r femr, 7thQ +C2857887|T037|AB|S72.334R|ICD10CM|Nondisp oblique fx shaft of r femr, 7thR|Nondisp oblique fx shaft of r femr, 7thR +C2857888|T037|AB|S72.334S|ICD10CM|Nondisp oblique fracture of shaft of right femur, sequela|Nondisp oblique fracture of shaft of right femur, sequela +C2857888|T037|PT|S72.334S|ICD10CM|Nondisplaced oblique fracture of shaft of right femur, sequela|Nondisplaced oblique fracture of shaft of right femur, sequela +C2857889|T037|AB|S72.335|ICD10CM|Nondisplaced oblique fracture of shaft of left femur|Nondisplaced oblique fracture of shaft of left femur +C2857889|T037|HT|S72.335|ICD10CM|Nondisplaced oblique fracture of shaft of left femur|Nondisplaced oblique fracture of shaft of left femur +C2857890|T037|AB|S72.335A|ICD10CM|Nondisplaced oblique fracture of shaft of left femur, init|Nondisplaced oblique fracture of shaft of left femur, init +C2857890|T037|PT|S72.335A|ICD10CM|Nondisplaced oblique fracture of shaft of left femur, initial encounter for closed fracture|Nondisplaced oblique fracture of shaft of left femur, initial encounter for closed fracture +C2857891|T037|AB|S72.335B|ICD10CM|Nondisp oblique fx shaft of l femr, init for opn fx type I/2|Nondisp oblique fx shaft of l femr, init for opn fx type I/2 +C2857892|T037|AB|S72.335C|ICD10CM|Nondisp oblique fx shaft of l femr, 7thC|Nondisp oblique fx shaft of l femr, 7thC +C2857893|T037|AB|S72.335D|ICD10CM|Nondisp oblique fx shaft of l femr, 7thD|Nondisp oblique fx shaft of l femr, 7thD +C2857894|T037|AB|S72.335E|ICD10CM|Nondisp oblique fx shaft of l femr, 7thE|Nondisp oblique fx shaft of l femr, 7thE +C2857895|T037|AB|S72.335F|ICD10CM|Nondisp oblique fx shaft of l femr, 7thF|Nondisp oblique fx shaft of l femr, 7thF +C2857896|T037|AB|S72.335G|ICD10CM|Nondisp oblique fx shaft of l femr, 7thG|Nondisp oblique fx shaft of l femr, 7thG +C2857897|T037|AB|S72.335H|ICD10CM|Nondisp oblique fx shaft of l femr, 7thH|Nondisp oblique fx shaft of l femr, 7thH +C2857898|T037|AB|S72.335J|ICD10CM|Nondisp oblique fx shaft of l femr, 7thJ|Nondisp oblique fx shaft of l femr, 7thJ +C2857899|T037|AB|S72.335K|ICD10CM|Nondisp oblique fx shaft of l femr, 7thK|Nondisp oblique fx shaft of l femr, 7thK +C2857900|T037|AB|S72.335M|ICD10CM|Nondisp oblique fx shaft of l femr, 7thM|Nondisp oblique fx shaft of l femr, 7thM +C2857901|T037|AB|S72.335N|ICD10CM|Nondisp oblique fx shaft of l femr, 7thN|Nondisp oblique fx shaft of l femr, 7thN +C2857902|T037|AB|S72.335P|ICD10CM|Nondisp oblique fx shaft of l femr, 7thP|Nondisp oblique fx shaft of l femr, 7thP +C2857903|T037|AB|S72.335Q|ICD10CM|Nondisp oblique fx shaft of l femr, 7thQ|Nondisp oblique fx shaft of l femr, 7thQ +C2857904|T037|AB|S72.335R|ICD10CM|Nondisp oblique fx shaft of l femr, 7thR|Nondisp oblique fx shaft of l femr, 7thR +C2857905|T037|AB|S72.335S|ICD10CM|Nondisp oblique fracture of shaft of left femur, sequela|Nondisp oblique fracture of shaft of left femur, sequela +C2857905|T037|PT|S72.335S|ICD10CM|Nondisplaced oblique fracture of shaft of left femur, sequela|Nondisplaced oblique fracture of shaft of left femur, sequela +C2857906|T037|AB|S72.336|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified femur|Nondisplaced oblique fracture of shaft of unspecified femur +C2857906|T037|HT|S72.336|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified femur|Nondisplaced oblique fracture of shaft of unspecified femur +C2857907|T037|AB|S72.336A|ICD10CM|Nondisplaced oblique fracture of shaft of unsp femur, init|Nondisplaced oblique fracture of shaft of unsp femur, init +C2857907|T037|PT|S72.336A|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified femur, initial encounter for closed fracture|Nondisplaced oblique fracture of shaft of unspecified femur, initial encounter for closed fracture +C2857908|T037|AB|S72.336B|ICD10CM|Nondisp oblique fx shaft of unsp femr, 7thB|Nondisp oblique fx shaft of unsp femr, 7thB +C2857909|T037|AB|S72.336C|ICD10CM|Nondisp oblique fx shaft of unsp femr, 7thC|Nondisp oblique fx shaft of unsp femr, 7thC +C2857910|T037|AB|S72.336D|ICD10CM|Nondisp oblique fx shaft of unsp femr, 7thD|Nondisp oblique fx shaft of unsp femr, 7thD +C2857911|T037|AB|S72.336E|ICD10CM|Nondisp oblique fx shaft of unsp femr, 7thE|Nondisp oblique fx shaft of unsp femr, 7thE +C2857912|T037|AB|S72.336F|ICD10CM|Nondisp oblique fx shaft of unsp femr, 7thF|Nondisp oblique fx shaft of unsp femr, 7thF +C2857913|T037|AB|S72.336G|ICD10CM|Nondisp oblique fx shaft of unsp femr, 7thG|Nondisp oblique fx shaft of unsp femr, 7thG +C2857914|T037|AB|S72.336H|ICD10CM|Nondisp oblique fx shaft of unsp femr, 7thH|Nondisp oblique fx shaft of unsp femr, 7thH +C2857915|T037|AB|S72.336J|ICD10CM|Nondisp oblique fx shaft of unsp femr, 7thJ|Nondisp oblique fx shaft of unsp femr, 7thJ +C2857916|T037|AB|S72.336K|ICD10CM|Nondisp oblique fx shaft of unsp femr, 7thK|Nondisp oblique fx shaft of unsp femr, 7thK +C2857917|T037|AB|S72.336M|ICD10CM|Nondisp oblique fx shaft of unsp femr, 7thM|Nondisp oblique fx shaft of unsp femr, 7thM +C2857918|T037|AB|S72.336N|ICD10CM|Nondisp oblique fx shaft of unsp femr, 7thN|Nondisp oblique fx shaft of unsp femr, 7thN +C2857919|T037|AB|S72.336P|ICD10CM|Nondisp oblique fx shaft of unsp femr, 7thP|Nondisp oblique fx shaft of unsp femr, 7thP +C2857920|T037|AB|S72.336Q|ICD10CM|Nondisp oblique fx shaft of unsp femr, 7thQ|Nondisp oblique fx shaft of unsp femr, 7thQ +C2857921|T037|AB|S72.336R|ICD10CM|Nondisp oblique fx shaft of unsp femr, 7thR|Nondisp oblique fx shaft of unsp femr, 7thR +C2857922|T037|AB|S72.336S|ICD10CM|Nondisp oblique fracture of shaft of unsp femur, sequela|Nondisp oblique fracture of shaft of unsp femur, sequela +C2857922|T037|PT|S72.336S|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified femur, sequela|Nondisplaced oblique fracture of shaft of unspecified femur, sequela +C2857923|T037|AB|S72.34|ICD10CM|Spiral fracture of shaft of femur|Spiral fracture of shaft of femur +C2857923|T037|HT|S72.34|ICD10CM|Spiral fracture of shaft of femur|Spiral fracture of shaft of femur +C2857924|T037|AB|S72.341|ICD10CM|Displaced spiral fracture of shaft of right femur|Displaced spiral fracture of shaft of right femur +C2857924|T037|HT|S72.341|ICD10CM|Displaced spiral fracture of shaft of right femur|Displaced spiral fracture of shaft of right femur +C2857925|T037|AB|S72.341A|ICD10CM|Displaced spiral fracture of shaft of right femur, init|Displaced spiral fracture of shaft of right femur, init +C2857925|T037|PT|S72.341A|ICD10CM|Displaced spiral fracture of shaft of right femur, initial encounter for closed fracture|Displaced spiral fracture of shaft of right femur, initial encounter for closed fracture +C2857926|T037|AB|S72.341B|ICD10CM|Displ spiral fx shaft of r femur, init for opn fx type I/2|Displ spiral fx shaft of r femur, init for opn fx type I/2 +C2857926|T037|PT|S72.341B|ICD10CM|Displaced spiral fracture of shaft of right femur, initial encounter for open fracture type I or II|Displaced spiral fracture of shaft of right femur, initial encounter for open fracture type I or II +C2857927|T037|AB|S72.341C|ICD10CM|Displ spiral fx shaft of r femr, init for opn fx type 3A/B/C|Displ spiral fx shaft of r femr, init for opn fx type 3A/B/C +C2857928|T037|AB|S72.341D|ICD10CM|Displ spiral fx shaft of r femr, 7thD|Displ spiral fx shaft of r femr, 7thD +C2857929|T037|AB|S72.341E|ICD10CM|Displ spiral fx shaft of r femr, 7thE|Displ spiral fx shaft of r femr, 7thE +C2857930|T037|AB|S72.341F|ICD10CM|Displ spiral fx shaft of r femr, 7thF|Displ spiral fx shaft of r femr, 7thF +C2857931|T037|AB|S72.341G|ICD10CM|Displ spiral fx shaft of r femr, 7thG|Displ spiral fx shaft of r femr, 7thG +C2857932|T037|AB|S72.341H|ICD10CM|Displ spiral fx shaft of r femr, 7thH|Displ spiral fx shaft of r femr, 7thH +C2857933|T037|AB|S72.341J|ICD10CM|Displ spiral fx shaft of r femr, 7thJ|Displ spiral fx shaft of r femr, 7thJ +C2857934|T037|AB|S72.341K|ICD10CM|Displ spiral fx shaft of r femr, subs for clos fx w nonunion|Displ spiral fx shaft of r femr, subs for clos fx w nonunion +C2857935|T037|AB|S72.341M|ICD10CM|Displ spiral fx shaft of r femr, 7thM|Displ spiral fx shaft of r femr, 7thM +C2857936|T037|AB|S72.341N|ICD10CM|Displ spiral fx shaft of r femr, 7thN|Displ spiral fx shaft of r femr, 7thN +C2857937|T037|AB|S72.341P|ICD10CM|Displ spiral fx shaft of r femr, subs for clos fx w malunion|Displ spiral fx shaft of r femr, subs for clos fx w malunion +C2857938|T037|AB|S72.341Q|ICD10CM|Displ spiral fx shaft of r femr, 7thQ|Displ spiral fx shaft of r femr, 7thQ +C2857939|T037|AB|S72.341R|ICD10CM|Displ spiral fx shaft of r femr, 7thR|Displ spiral fx shaft of r femr, 7thR +C2857940|T037|PT|S72.341S|ICD10CM|Displaced spiral fracture of shaft of right femur, sequela|Displaced spiral fracture of shaft of right femur, sequela +C2857940|T037|AB|S72.341S|ICD10CM|Displaced spiral fracture of shaft of right femur, sequela|Displaced spiral fracture of shaft of right femur, sequela +C2857941|T037|AB|S72.342|ICD10CM|Displaced spiral fracture of shaft of left femur|Displaced spiral fracture of shaft of left femur +C2857941|T037|HT|S72.342|ICD10CM|Displaced spiral fracture of shaft of left femur|Displaced spiral fracture of shaft of left femur +C2857942|T037|AB|S72.342A|ICD10CM|Displaced spiral fracture of shaft of left femur, init|Displaced spiral fracture of shaft of left femur, init +C2857942|T037|PT|S72.342A|ICD10CM|Displaced spiral fracture of shaft of left femur, initial encounter for closed fracture|Displaced spiral fracture of shaft of left femur, initial encounter for closed fracture +C2857943|T037|AB|S72.342B|ICD10CM|Displ spiral fx shaft of l femur, init for opn fx type I/2|Displ spiral fx shaft of l femur, init for opn fx type I/2 +C2857943|T037|PT|S72.342B|ICD10CM|Displaced spiral fracture of shaft of left femur, initial encounter for open fracture type I or II|Displaced spiral fracture of shaft of left femur, initial encounter for open fracture type I or II +C2857944|T037|AB|S72.342C|ICD10CM|Displ spiral fx shaft of l femr, init for opn fx type 3A/B/C|Displ spiral fx shaft of l femr, init for opn fx type 3A/B/C +C2857945|T037|AB|S72.342D|ICD10CM|Displ spiral fx shaft of l femr, 7thD|Displ spiral fx shaft of l femr, 7thD +C2857946|T037|AB|S72.342E|ICD10CM|Displ spiral fx shaft of l femr, 7thE|Displ spiral fx shaft of l femr, 7thE +C2857947|T037|AB|S72.342F|ICD10CM|Displ spiral fx shaft of l femr, 7thF|Displ spiral fx shaft of l femr, 7thF +C2857948|T037|AB|S72.342G|ICD10CM|Displ spiral fx shaft of l femr, 7thG|Displ spiral fx shaft of l femr, 7thG +C2857949|T037|AB|S72.342H|ICD10CM|Displ spiral fx shaft of l femr, 7thH|Displ spiral fx shaft of l femr, 7thH +C2857950|T037|AB|S72.342J|ICD10CM|Displ spiral fx shaft of l femr, 7thJ|Displ spiral fx shaft of l femr, 7thJ +C2857951|T037|AB|S72.342K|ICD10CM|Displ spiral fx shaft of l femr, subs for clos fx w nonunion|Displ spiral fx shaft of l femr, subs for clos fx w nonunion +C2857952|T037|AB|S72.342M|ICD10CM|Displ spiral fx shaft of l femr, 7thM|Displ spiral fx shaft of l femr, 7thM +C2857953|T037|AB|S72.342N|ICD10CM|Displ spiral fx shaft of l femr, 7thN|Displ spiral fx shaft of l femr, 7thN +C2857954|T037|AB|S72.342P|ICD10CM|Displ spiral fx shaft of l femr, subs for clos fx w malunion|Displ spiral fx shaft of l femr, subs for clos fx w malunion +C2857955|T037|AB|S72.342Q|ICD10CM|Displ spiral fx shaft of l femr, 7thQ|Displ spiral fx shaft of l femr, 7thQ +C2857956|T037|AB|S72.342R|ICD10CM|Displ spiral fx shaft of l femr, 7thR|Displ spiral fx shaft of l femr, 7thR +C2857957|T037|AB|S72.342S|ICD10CM|Displaced spiral fracture of shaft of left femur, sequela|Displaced spiral fracture of shaft of left femur, sequela +C2857957|T037|PT|S72.342S|ICD10CM|Displaced spiral fracture of shaft of left femur, sequela|Displaced spiral fracture of shaft of left femur, sequela +C2857958|T037|AB|S72.343|ICD10CM|Displaced spiral fracture of shaft of unspecified femur|Displaced spiral fracture of shaft of unspecified femur +C2857958|T037|HT|S72.343|ICD10CM|Displaced spiral fracture of shaft of unspecified femur|Displaced spiral fracture of shaft of unspecified femur +C2857959|T037|AB|S72.343A|ICD10CM|Displaced spiral fracture of shaft of unsp femur, init|Displaced spiral fracture of shaft of unsp femur, init +C2857959|T037|PT|S72.343A|ICD10CM|Displaced spiral fracture of shaft of unspecified femur, initial encounter for closed fracture|Displaced spiral fracture of shaft of unspecified femur, initial encounter for closed fracture +C2857960|T037|AB|S72.343B|ICD10CM|Displ spiral fx shaft of unsp femr, init for opn fx type I/2|Displ spiral fx shaft of unsp femr, init for opn fx type I/2 +C2857961|T037|AB|S72.343C|ICD10CM|Displ spiral fx shaft of unsp femr, 7thC|Displ spiral fx shaft of unsp femr, 7thC +C2857962|T037|AB|S72.343D|ICD10CM|Displ spiral fx shaft of unsp femr, 7thD|Displ spiral fx shaft of unsp femr, 7thD +C2857963|T037|AB|S72.343E|ICD10CM|Displ spiral fx shaft of unsp femr, 7thE|Displ spiral fx shaft of unsp femr, 7thE +C2857964|T037|AB|S72.343F|ICD10CM|Displ spiral fx shaft of unsp femr, 7thF|Displ spiral fx shaft of unsp femr, 7thF +C2857965|T037|AB|S72.343G|ICD10CM|Displ spiral fx shaft of unsp femr, 7thG|Displ spiral fx shaft of unsp femr, 7thG +C2857966|T037|AB|S72.343H|ICD10CM|Displ spiral fx shaft of unsp femr, 7thH|Displ spiral fx shaft of unsp femr, 7thH +C2857967|T037|AB|S72.343J|ICD10CM|Displ spiral fx shaft of unsp femr, 7thJ|Displ spiral fx shaft of unsp femr, 7thJ +C2857968|T037|AB|S72.343K|ICD10CM|Displ spiral fx shaft of unsp femr, 7thK|Displ spiral fx shaft of unsp femr, 7thK +C2857969|T037|AB|S72.343M|ICD10CM|Displ spiral fx shaft of unsp femr, 7thM|Displ spiral fx shaft of unsp femr, 7thM +C2857970|T037|AB|S72.343N|ICD10CM|Displ spiral fx shaft of unsp femr, 7thN|Displ spiral fx shaft of unsp femr, 7thN +C2857971|T037|AB|S72.343P|ICD10CM|Displ spiral fx shaft of unsp femr, 7thP|Displ spiral fx shaft of unsp femr, 7thP +C2857972|T037|AB|S72.343Q|ICD10CM|Displ spiral fx shaft of unsp femr, 7thQ|Displ spiral fx shaft of unsp femr, 7thQ +C2857973|T037|AB|S72.343R|ICD10CM|Displ spiral fx shaft of unsp femr, 7thR|Displ spiral fx shaft of unsp femr, 7thR +C2857974|T037|AB|S72.343S|ICD10CM|Displaced spiral fracture of shaft of unsp femur, sequela|Displaced spiral fracture of shaft of unsp femur, sequela +C2857974|T037|PT|S72.343S|ICD10CM|Displaced spiral fracture of shaft of unspecified femur, sequela|Displaced spiral fracture of shaft of unspecified femur, sequela +C2857975|T037|AB|S72.344|ICD10CM|Nondisplaced spiral fracture of shaft of right femur|Nondisplaced spiral fracture of shaft of right femur +C2857975|T037|HT|S72.344|ICD10CM|Nondisplaced spiral fracture of shaft of right femur|Nondisplaced spiral fracture of shaft of right femur +C2857976|T037|AB|S72.344A|ICD10CM|Nondisplaced spiral fracture of shaft of right femur, init|Nondisplaced spiral fracture of shaft of right femur, init +C2857976|T037|PT|S72.344A|ICD10CM|Nondisplaced spiral fracture of shaft of right femur, initial encounter for closed fracture|Nondisplaced spiral fracture of shaft of right femur, initial encounter for closed fracture +C2857977|T037|AB|S72.344B|ICD10CM|Nondisp spiral fx shaft of r femur, init for opn fx type I/2|Nondisp spiral fx shaft of r femur, init for opn fx type I/2 +C2857978|T037|AB|S72.344C|ICD10CM|Nondisp spiral fx shaft of r femr, 7thC|Nondisp spiral fx shaft of r femr, 7thC +C2857979|T037|AB|S72.344D|ICD10CM|Nondisp spiral fx shaft of r femr, 7thD|Nondisp spiral fx shaft of r femr, 7thD +C2857980|T037|AB|S72.344E|ICD10CM|Nondisp spiral fx shaft of r femr, 7thE|Nondisp spiral fx shaft of r femr, 7thE +C2857981|T037|AB|S72.344F|ICD10CM|Nondisp spiral fx shaft of r femr, 7thF|Nondisp spiral fx shaft of r femr, 7thF +C2857982|T037|AB|S72.344G|ICD10CM|Nondisp spiral fx shaft of r femr, 7thG|Nondisp spiral fx shaft of r femr, 7thG +C2857983|T037|AB|S72.344H|ICD10CM|Nondisp spiral fx shaft of r femr, 7thH|Nondisp spiral fx shaft of r femr, 7thH +C2857984|T037|AB|S72.344J|ICD10CM|Nondisp spiral fx shaft of r femr, 7thJ|Nondisp spiral fx shaft of r femr, 7thJ +C2857985|T037|AB|S72.344K|ICD10CM|Nondisp spiral fx shaft of r femr, 7thK|Nondisp spiral fx shaft of r femr, 7thK +C2857986|T037|AB|S72.344M|ICD10CM|Nondisp spiral fx shaft of r femr, 7thM|Nondisp spiral fx shaft of r femr, 7thM +C2857987|T037|AB|S72.344N|ICD10CM|Nondisp spiral fx shaft of r femr, 7thN|Nondisp spiral fx shaft of r femr, 7thN +C2857988|T037|AB|S72.344P|ICD10CM|Nondisp spiral fx shaft of r femr, 7thP|Nondisp spiral fx shaft of r femr, 7thP +C2857989|T037|AB|S72.344Q|ICD10CM|Nondisp spiral fx shaft of r femr, 7thQ|Nondisp spiral fx shaft of r femr, 7thQ +C2857990|T037|AB|S72.344R|ICD10CM|Nondisp spiral fx shaft of r femr, 7thR|Nondisp spiral fx shaft of r femr, 7thR +C2857991|T037|AB|S72.344S|ICD10CM|Nondisp spiral fracture of shaft of right femur, sequela|Nondisp spiral fracture of shaft of right femur, sequela +C2857991|T037|PT|S72.344S|ICD10CM|Nondisplaced spiral fracture of shaft of right femur, sequela|Nondisplaced spiral fracture of shaft of right femur, sequela +C2857992|T037|AB|S72.345|ICD10CM|Nondisplaced spiral fracture of shaft of left femur|Nondisplaced spiral fracture of shaft of left femur +C2857992|T037|HT|S72.345|ICD10CM|Nondisplaced spiral fracture of shaft of left femur|Nondisplaced spiral fracture of shaft of left femur +C2857993|T037|AB|S72.345A|ICD10CM|Nondisplaced spiral fracture of shaft of left femur, init|Nondisplaced spiral fracture of shaft of left femur, init +C2857993|T037|PT|S72.345A|ICD10CM|Nondisplaced spiral fracture of shaft of left femur, initial encounter for closed fracture|Nondisplaced spiral fracture of shaft of left femur, initial encounter for closed fracture +C2857994|T037|AB|S72.345B|ICD10CM|Nondisp spiral fx shaft of l femur, init for opn fx type I/2|Nondisp spiral fx shaft of l femur, init for opn fx type I/2 +C2857995|T037|AB|S72.345C|ICD10CM|Nondisp spiral fx shaft of l femr, 7thC|Nondisp spiral fx shaft of l femr, 7thC +C2857996|T037|AB|S72.345D|ICD10CM|Nondisp spiral fx shaft of l femr, 7thD|Nondisp spiral fx shaft of l femr, 7thD +C2857997|T037|AB|S72.345E|ICD10CM|Nondisp spiral fx shaft of l femr, 7thE|Nondisp spiral fx shaft of l femr, 7thE +C2857998|T037|AB|S72.345F|ICD10CM|Nondisp spiral fx shaft of l femr, 7thF|Nondisp spiral fx shaft of l femr, 7thF +C2857999|T037|AB|S72.345G|ICD10CM|Nondisp spiral fx shaft of l femr, 7thG|Nondisp spiral fx shaft of l femr, 7thG +C2858000|T037|AB|S72.345H|ICD10CM|Nondisp spiral fx shaft of l femr, 7thH|Nondisp spiral fx shaft of l femr, 7thH +C2858001|T037|AB|S72.345J|ICD10CM|Nondisp spiral fx shaft of l femr, 7thJ|Nondisp spiral fx shaft of l femr, 7thJ +C2858002|T037|AB|S72.345K|ICD10CM|Nondisp spiral fx shaft of l femr, 7thK|Nondisp spiral fx shaft of l femr, 7thK +C2858003|T037|AB|S72.345M|ICD10CM|Nondisp spiral fx shaft of l femr, 7thM|Nondisp spiral fx shaft of l femr, 7thM +C2858004|T037|AB|S72.345N|ICD10CM|Nondisp spiral fx shaft of l femr, 7thN|Nondisp spiral fx shaft of l femr, 7thN +C2858005|T037|AB|S72.345P|ICD10CM|Nondisp spiral fx shaft of l femr, 7thP|Nondisp spiral fx shaft of l femr, 7thP +C2858006|T037|AB|S72.345Q|ICD10CM|Nondisp spiral fx shaft of l femr, 7thQ|Nondisp spiral fx shaft of l femr, 7thQ +C2858007|T037|AB|S72.345R|ICD10CM|Nondisp spiral fx shaft of l femr, 7thR|Nondisp spiral fx shaft of l femr, 7thR +C2858008|T037|AB|S72.345S|ICD10CM|Nondisplaced spiral fracture of shaft of left femur, sequela|Nondisplaced spiral fracture of shaft of left femur, sequela +C2858008|T037|PT|S72.345S|ICD10CM|Nondisplaced spiral fracture of shaft of left femur, sequela|Nondisplaced spiral fracture of shaft of left femur, sequela +C2858009|T037|AB|S72.346|ICD10CM|Nondisplaced spiral fracture of shaft of unspecified femur|Nondisplaced spiral fracture of shaft of unspecified femur +C2858009|T037|HT|S72.346|ICD10CM|Nondisplaced spiral fracture of shaft of unspecified femur|Nondisplaced spiral fracture of shaft of unspecified femur +C2858010|T037|AB|S72.346A|ICD10CM|Nondisplaced spiral fracture of shaft of unsp femur, init|Nondisplaced spiral fracture of shaft of unsp femur, init +C2858010|T037|PT|S72.346A|ICD10CM|Nondisplaced spiral fracture of shaft of unspecified femur, initial encounter for closed fracture|Nondisplaced spiral fracture of shaft of unspecified femur, initial encounter for closed fracture +C2858011|T037|AB|S72.346B|ICD10CM|Nondisp spiral fx shaft of unsp femr, 7thB|Nondisp spiral fx shaft of unsp femr, 7thB +C2858012|T037|AB|S72.346C|ICD10CM|Nondisp spiral fx shaft of unsp femr, 7thC|Nondisp spiral fx shaft of unsp femr, 7thC +C2858013|T037|AB|S72.346D|ICD10CM|Nondisp spiral fx shaft of unsp femr, 7thD|Nondisp spiral fx shaft of unsp femr, 7thD +C2858014|T037|AB|S72.346E|ICD10CM|Nondisp spiral fx shaft of unsp femr, 7thE|Nondisp spiral fx shaft of unsp femr, 7thE +C2858015|T037|AB|S72.346F|ICD10CM|Nondisp spiral fx shaft of unsp femr, 7thF|Nondisp spiral fx shaft of unsp femr, 7thF +C2858016|T037|AB|S72.346G|ICD10CM|Nondisp spiral fx shaft of unsp femr, 7thG|Nondisp spiral fx shaft of unsp femr, 7thG +C2858017|T037|AB|S72.346H|ICD10CM|Nondisp spiral fx shaft of unsp femr, 7thH|Nondisp spiral fx shaft of unsp femr, 7thH +C2858018|T037|AB|S72.346J|ICD10CM|Nondisp spiral fx shaft of unsp femr, 7thJ|Nondisp spiral fx shaft of unsp femr, 7thJ +C2858019|T037|AB|S72.346K|ICD10CM|Nondisp spiral fx shaft of unsp femr, 7thK|Nondisp spiral fx shaft of unsp femr, 7thK +C2858020|T037|AB|S72.346M|ICD10CM|Nondisp spiral fx shaft of unsp femr, 7thM|Nondisp spiral fx shaft of unsp femr, 7thM +C2858021|T037|AB|S72.346N|ICD10CM|Nondisp spiral fx shaft of unsp femr, 7thN|Nondisp spiral fx shaft of unsp femr, 7thN +C2858022|T037|AB|S72.346P|ICD10CM|Nondisp spiral fx shaft of unsp femr, 7thP|Nondisp spiral fx shaft of unsp femr, 7thP +C2858023|T037|AB|S72.346Q|ICD10CM|Nondisp spiral fx shaft of unsp femr, 7thQ|Nondisp spiral fx shaft of unsp femr, 7thQ +C2858024|T037|AB|S72.346R|ICD10CM|Nondisp spiral fx shaft of unsp femr, 7thR|Nondisp spiral fx shaft of unsp femr, 7thR +C2858025|T037|AB|S72.346S|ICD10CM|Nondisplaced spiral fracture of shaft of unsp femur, sequela|Nondisplaced spiral fracture of shaft of unsp femur, sequela +C2858025|T037|PT|S72.346S|ICD10CM|Nondisplaced spiral fracture of shaft of unspecified femur, sequela|Nondisplaced spiral fracture of shaft of unspecified femur, sequela +C2858026|T037|AB|S72.35|ICD10CM|Comminuted fracture of shaft of femur|Comminuted fracture of shaft of femur +C2858026|T037|HT|S72.35|ICD10CM|Comminuted fracture of shaft of femur|Comminuted fracture of shaft of femur +C2858027|T037|AB|S72.351|ICD10CM|Displaced comminuted fracture of shaft of right femur|Displaced comminuted fracture of shaft of right femur +C2858027|T037|HT|S72.351|ICD10CM|Displaced comminuted fracture of shaft of right femur|Displaced comminuted fracture of shaft of right femur +C2858028|T037|AB|S72.351A|ICD10CM|Displaced comminuted fracture of shaft of right femur, init|Displaced comminuted fracture of shaft of right femur, init +C2858028|T037|PT|S72.351A|ICD10CM|Displaced comminuted fracture of shaft of right femur, initial encounter for closed fracture|Displaced comminuted fracture of shaft of right femur, initial encounter for closed fracture +C2858029|T037|AB|S72.351B|ICD10CM|Displ commnt fx shaft of r femur, init for opn fx type I/2|Displ commnt fx shaft of r femur, init for opn fx type I/2 +C2858030|T037|AB|S72.351C|ICD10CM|Displ commnt fx shaft of r femr, init for opn fx type 3A/B/C|Displ commnt fx shaft of r femr, init for opn fx type 3A/B/C +C2858031|T037|AB|S72.351D|ICD10CM|Displ commnt fx shaft of r femr, 7thD|Displ commnt fx shaft of r femr, 7thD +C2858032|T037|AB|S72.351E|ICD10CM|Displ commnt fx shaft of r femr, 7thE|Displ commnt fx shaft of r femr, 7thE +C2858033|T037|AB|S72.351F|ICD10CM|Displ commnt fx shaft of r femr, 7thF|Displ commnt fx shaft of r femr, 7thF +C2858034|T037|AB|S72.351G|ICD10CM|Displ commnt fx shaft of r femr, 7thG|Displ commnt fx shaft of r femr, 7thG +C2858035|T037|AB|S72.351H|ICD10CM|Displ commnt fx shaft of r femr, 7thH|Displ commnt fx shaft of r femr, 7thH +C2858036|T037|AB|S72.351J|ICD10CM|Displ commnt fx shaft of r femr, 7thJ|Displ commnt fx shaft of r femr, 7thJ +C2858037|T037|AB|S72.351K|ICD10CM|Displ commnt fx shaft of r femr, subs for clos fx w nonunion|Displ commnt fx shaft of r femr, subs for clos fx w nonunion +C2858038|T037|AB|S72.351M|ICD10CM|Displ commnt fx shaft of r femr, 7thM|Displ commnt fx shaft of r femr, 7thM +C2858039|T037|AB|S72.351N|ICD10CM|Displ commnt fx shaft of r femr, 7thN|Displ commnt fx shaft of r femr, 7thN +C2858040|T037|AB|S72.351P|ICD10CM|Displ commnt fx shaft of r femr, subs for clos fx w malunion|Displ commnt fx shaft of r femr, subs for clos fx w malunion +C2858041|T037|AB|S72.351Q|ICD10CM|Displ commnt fx shaft of r femr, 7thQ|Displ commnt fx shaft of r femr, 7thQ +C2858042|T037|AB|S72.351R|ICD10CM|Displ commnt fx shaft of r femr, 7thR|Displ commnt fx shaft of r femr, 7thR +C2858043|T037|PT|S72.351S|ICD10CM|Displaced comminuted fracture of shaft of right femur, sequela|Displaced comminuted fracture of shaft of right femur, sequela +C2858043|T037|AB|S72.351S|ICD10CM|Displaced comminuted fx shaft of right femur, sequela|Displaced comminuted fx shaft of right femur, sequela +C2858044|T037|AB|S72.352|ICD10CM|Displaced comminuted fracture of shaft of left femur|Displaced comminuted fracture of shaft of left femur +C2858044|T037|HT|S72.352|ICD10CM|Displaced comminuted fracture of shaft of left femur|Displaced comminuted fracture of shaft of left femur +C2858045|T037|AB|S72.352A|ICD10CM|Displaced comminuted fracture of shaft of left femur, init|Displaced comminuted fracture of shaft of left femur, init +C2858045|T037|PT|S72.352A|ICD10CM|Displaced comminuted fracture of shaft of left femur, initial encounter for closed fracture|Displaced comminuted fracture of shaft of left femur, initial encounter for closed fracture +C2858046|T037|AB|S72.352B|ICD10CM|Displ commnt fx shaft of l femur, init for opn fx type I/2|Displ commnt fx shaft of l femur, init for opn fx type I/2 +C2858047|T037|AB|S72.352C|ICD10CM|Displ commnt fx shaft of l femr, init for opn fx type 3A/B/C|Displ commnt fx shaft of l femr, init for opn fx type 3A/B/C +C2858048|T037|AB|S72.352D|ICD10CM|Displ commnt fx shaft of l femr, 7thD|Displ commnt fx shaft of l femr, 7thD +C2858049|T037|AB|S72.352E|ICD10CM|Displ commnt fx shaft of l femr, 7thE|Displ commnt fx shaft of l femr, 7thE +C2858050|T037|AB|S72.352F|ICD10CM|Displ commnt fx shaft of l femr, 7thF|Displ commnt fx shaft of l femr, 7thF +C2858051|T037|AB|S72.352G|ICD10CM|Displ commnt fx shaft of l femr, 7thG|Displ commnt fx shaft of l femr, 7thG +C2858052|T037|AB|S72.352H|ICD10CM|Displ commnt fx shaft of l femr, 7thH|Displ commnt fx shaft of l femr, 7thH +C2858053|T037|AB|S72.352J|ICD10CM|Displ commnt fx shaft of l femr, 7thJ|Displ commnt fx shaft of l femr, 7thJ +C2858054|T037|AB|S72.352K|ICD10CM|Displ commnt fx shaft of l femr, subs for clos fx w nonunion|Displ commnt fx shaft of l femr, subs for clos fx w nonunion +C2858055|T037|AB|S72.352M|ICD10CM|Displ commnt fx shaft of l femr, 7thM|Displ commnt fx shaft of l femr, 7thM +C2858056|T037|AB|S72.352N|ICD10CM|Displ commnt fx shaft of l femr, 7thN|Displ commnt fx shaft of l femr, 7thN +C2858057|T037|AB|S72.352P|ICD10CM|Displ commnt fx shaft of l femr, subs for clos fx w malunion|Displ commnt fx shaft of l femr, subs for clos fx w malunion +C2858058|T037|AB|S72.352Q|ICD10CM|Displ commnt fx shaft of l femr, 7thQ|Displ commnt fx shaft of l femr, 7thQ +C2858059|T037|AB|S72.352R|ICD10CM|Displ commnt fx shaft of l femr, 7thR|Displ commnt fx shaft of l femr, 7thR +C2858060|T037|PT|S72.352S|ICD10CM|Displaced comminuted fracture of shaft of left femur, sequela|Displaced comminuted fracture of shaft of left femur, sequela +C2858060|T037|AB|S72.352S|ICD10CM|Displaced comminuted fx shaft of left femur, sequela|Displaced comminuted fx shaft of left femur, sequela +C2858061|T037|AB|S72.353|ICD10CM|Displaced comminuted fracture of shaft of unspecified femur|Displaced comminuted fracture of shaft of unspecified femur +C2858061|T037|HT|S72.353|ICD10CM|Displaced comminuted fracture of shaft of unspecified femur|Displaced comminuted fracture of shaft of unspecified femur +C2858062|T037|AB|S72.353A|ICD10CM|Displaced comminuted fracture of shaft of unsp femur, init|Displaced comminuted fracture of shaft of unsp femur, init +C2858062|T037|PT|S72.353A|ICD10CM|Displaced comminuted fracture of shaft of unspecified femur, initial encounter for closed fracture|Displaced comminuted fracture of shaft of unspecified femur, initial encounter for closed fracture +C2858063|T037|AB|S72.353B|ICD10CM|Displ commnt fx shaft of unsp femr, init for opn fx type I/2|Displ commnt fx shaft of unsp femr, init for opn fx type I/2 +C2858064|T037|AB|S72.353C|ICD10CM|Displ commnt fx shaft of unsp femr, 7thC|Displ commnt fx shaft of unsp femr, 7thC +C2858065|T037|AB|S72.353D|ICD10CM|Displ commnt fx shaft of unsp femr, 7thD|Displ commnt fx shaft of unsp femr, 7thD +C2858066|T037|AB|S72.353E|ICD10CM|Displ commnt fx shaft of unsp femr, 7thE|Displ commnt fx shaft of unsp femr, 7thE +C2858067|T037|AB|S72.353F|ICD10CM|Displ commnt fx shaft of unsp femr, 7thF|Displ commnt fx shaft of unsp femr, 7thF +C2858068|T037|AB|S72.353G|ICD10CM|Displ commnt fx shaft of unsp femr, 7thG|Displ commnt fx shaft of unsp femr, 7thG +C2858069|T037|AB|S72.353H|ICD10CM|Displ commnt fx shaft of unsp femr, 7thH|Displ commnt fx shaft of unsp femr, 7thH +C2858070|T037|AB|S72.353J|ICD10CM|Displ commnt fx shaft of unsp femr, 7thJ|Displ commnt fx shaft of unsp femr, 7thJ +C2858071|T037|AB|S72.353K|ICD10CM|Displ commnt fx shaft of unsp femr, 7thK|Displ commnt fx shaft of unsp femr, 7thK +C2858072|T037|AB|S72.353M|ICD10CM|Displ commnt fx shaft of unsp femr, 7thM|Displ commnt fx shaft of unsp femr, 7thM +C2858073|T037|AB|S72.353N|ICD10CM|Displ commnt fx shaft of unsp femr, 7thN|Displ commnt fx shaft of unsp femr, 7thN +C2858074|T037|AB|S72.353P|ICD10CM|Displ commnt fx shaft of unsp femr, 7thP|Displ commnt fx shaft of unsp femr, 7thP +C2858075|T037|AB|S72.353Q|ICD10CM|Displ commnt fx shaft of unsp femr, 7thQ|Displ commnt fx shaft of unsp femr, 7thQ +C2858076|T037|AB|S72.353R|ICD10CM|Displ commnt fx shaft of unsp femr, 7thR|Displ commnt fx shaft of unsp femr, 7thR +C2858077|T037|PT|S72.353S|ICD10CM|Displaced comminuted fracture of shaft of unspecified femur, sequela|Displaced comminuted fracture of shaft of unspecified femur, sequela +C2858077|T037|AB|S72.353S|ICD10CM|Displaced comminuted fx shaft of unsp femur, sequela|Displaced comminuted fx shaft of unsp femur, sequela +C2858078|T037|AB|S72.354|ICD10CM|Nondisplaced comminuted fracture of shaft of right femur|Nondisplaced comminuted fracture of shaft of right femur +C2858078|T037|HT|S72.354|ICD10CM|Nondisplaced comminuted fracture of shaft of right femur|Nondisplaced comminuted fracture of shaft of right femur +C2858079|T037|AB|S72.354A|ICD10CM|Nondisp comminuted fracture of shaft of right femur, init|Nondisp comminuted fracture of shaft of right femur, init +C2858079|T037|PT|S72.354A|ICD10CM|Nondisplaced comminuted fracture of shaft of right femur, initial encounter for closed fracture|Nondisplaced comminuted fracture of shaft of right femur, initial encounter for closed fracture +C2858080|T037|AB|S72.354B|ICD10CM|Nondisp commnt fx shaft of r femur, init for opn fx type I/2|Nondisp commnt fx shaft of r femur, init for opn fx type I/2 +C2858081|T037|AB|S72.354C|ICD10CM|Nondisp commnt fx shaft of r femr, 7thC|Nondisp commnt fx shaft of r femr, 7thC +C2858082|T037|AB|S72.354D|ICD10CM|Nondisp commnt fx shaft of r femr, 7thD|Nondisp commnt fx shaft of r femr, 7thD +C2858083|T037|AB|S72.354E|ICD10CM|Nondisp commnt fx shaft of r femr, 7thE|Nondisp commnt fx shaft of r femr, 7thE +C2858084|T037|AB|S72.354F|ICD10CM|Nondisp commnt fx shaft of r femr, 7thF|Nondisp commnt fx shaft of r femr, 7thF +C2858085|T037|AB|S72.354G|ICD10CM|Nondisp commnt fx shaft of r femr, 7thG|Nondisp commnt fx shaft of r femr, 7thG +C2858086|T037|AB|S72.354H|ICD10CM|Nondisp commnt fx shaft of r femr, 7thH|Nondisp commnt fx shaft of r femr, 7thH +C2858087|T037|AB|S72.354J|ICD10CM|Nondisp commnt fx shaft of r femr, 7thJ|Nondisp commnt fx shaft of r femr, 7thJ +C2858088|T037|AB|S72.354K|ICD10CM|Nondisp commnt fx shaft of r femr, 7thK|Nondisp commnt fx shaft of r femr, 7thK +C2858089|T037|AB|S72.354M|ICD10CM|Nondisp commnt fx shaft of r femr, 7thM|Nondisp commnt fx shaft of r femr, 7thM +C2858090|T037|AB|S72.354N|ICD10CM|Nondisp commnt fx shaft of r femr, 7thN|Nondisp commnt fx shaft of r femr, 7thN +C2858091|T037|AB|S72.354P|ICD10CM|Nondisp commnt fx shaft of r femr, 7thP|Nondisp commnt fx shaft of r femr, 7thP +C2858092|T037|AB|S72.354Q|ICD10CM|Nondisp commnt fx shaft of r femr, 7thQ|Nondisp commnt fx shaft of r femr, 7thQ +C2858093|T037|AB|S72.354R|ICD10CM|Nondisp commnt fx shaft of r femr, 7thR|Nondisp commnt fx shaft of r femr, 7thR +C2858094|T037|AB|S72.354S|ICD10CM|Nondisp comminuted fracture of shaft of right femur, sequela|Nondisp comminuted fracture of shaft of right femur, sequela +C2858094|T037|PT|S72.354S|ICD10CM|Nondisplaced comminuted fracture of shaft of right femur, sequela|Nondisplaced comminuted fracture of shaft of right femur, sequela +C2858095|T037|AB|S72.355|ICD10CM|Nondisplaced comminuted fracture of shaft of left femur|Nondisplaced comminuted fracture of shaft of left femur +C2858095|T037|HT|S72.355|ICD10CM|Nondisplaced comminuted fracture of shaft of left femur|Nondisplaced comminuted fracture of shaft of left femur +C2858096|T037|AB|S72.355A|ICD10CM|Nondisp comminuted fracture of shaft of left femur, init|Nondisp comminuted fracture of shaft of left femur, init +C2858096|T037|PT|S72.355A|ICD10CM|Nondisplaced comminuted fracture of shaft of left femur, initial encounter for closed fracture|Nondisplaced comminuted fracture of shaft of left femur, initial encounter for closed fracture +C2858097|T037|AB|S72.355B|ICD10CM|Nondisp commnt fx shaft of l femur, init for opn fx type I/2|Nondisp commnt fx shaft of l femur, init for opn fx type I/2 +C2858098|T037|AB|S72.355C|ICD10CM|Nondisp commnt fx shaft of l femr, 7thC|Nondisp commnt fx shaft of l femr, 7thC +C2858099|T037|AB|S72.355D|ICD10CM|Nondisp commnt fx shaft of l femr, 7thD|Nondisp commnt fx shaft of l femr, 7thD +C2858100|T037|AB|S72.355E|ICD10CM|Nondisp commnt fx shaft of l femr, 7thE|Nondisp commnt fx shaft of l femr, 7thE +C2858101|T037|AB|S72.355F|ICD10CM|Nondisp commnt fx shaft of l femr, 7thF|Nondisp commnt fx shaft of l femr, 7thF +C2858102|T037|AB|S72.355G|ICD10CM|Nondisp commnt fx shaft of l femr, 7thG|Nondisp commnt fx shaft of l femr, 7thG +C2858103|T037|AB|S72.355H|ICD10CM|Nondisp commnt fx shaft of l femr, 7thH|Nondisp commnt fx shaft of l femr, 7thH +C2858104|T037|AB|S72.355J|ICD10CM|Nondisp commnt fx shaft of l femr, 7thJ|Nondisp commnt fx shaft of l femr, 7thJ +C2858105|T037|AB|S72.355K|ICD10CM|Nondisp commnt fx shaft of l femr, 7thK|Nondisp commnt fx shaft of l femr, 7thK +C2858106|T037|AB|S72.355M|ICD10CM|Nondisp commnt fx shaft of l femr, 7thM|Nondisp commnt fx shaft of l femr, 7thM +C2858107|T037|AB|S72.355N|ICD10CM|Nondisp commnt fx shaft of l femr, 7thN|Nondisp commnt fx shaft of l femr, 7thN +C2858108|T037|AB|S72.355P|ICD10CM|Nondisp commnt fx shaft of l femr, 7thP|Nondisp commnt fx shaft of l femr, 7thP +C2858109|T037|AB|S72.355Q|ICD10CM|Nondisp commnt fx shaft of l femr, 7thQ|Nondisp commnt fx shaft of l femr, 7thQ +C2858110|T037|AB|S72.355R|ICD10CM|Nondisp commnt fx shaft of l femr, 7thR|Nondisp commnt fx shaft of l femr, 7thR +C2858111|T037|AB|S72.355S|ICD10CM|Nondisp comminuted fracture of shaft of left femur, sequela|Nondisp comminuted fracture of shaft of left femur, sequela +C2858111|T037|PT|S72.355S|ICD10CM|Nondisplaced comminuted fracture of shaft of left femur, sequela|Nondisplaced comminuted fracture of shaft of left femur, sequela +C2858112|T037|AB|S72.356|ICD10CM|Nondisplaced comminuted fracture of shaft of unsp femur|Nondisplaced comminuted fracture of shaft of unsp femur +C2858112|T037|HT|S72.356|ICD10CM|Nondisplaced comminuted fracture of shaft of unspecified femur|Nondisplaced comminuted fracture of shaft of unspecified femur +C2858113|T037|AB|S72.356A|ICD10CM|Nondisp comminuted fracture of shaft of unsp femur, init|Nondisp comminuted fracture of shaft of unsp femur, init +C2858114|T037|AB|S72.356B|ICD10CM|Nondisp commnt fx shaft of unsp femr, 7thB|Nondisp commnt fx shaft of unsp femr, 7thB +C2858115|T037|AB|S72.356C|ICD10CM|Nondisp commnt fx shaft of unsp femr, 7thC|Nondisp commnt fx shaft of unsp femr, 7thC +C2858116|T037|AB|S72.356D|ICD10CM|Nondisp commnt fx shaft of unsp femr, 7thD|Nondisp commnt fx shaft of unsp femr, 7thD +C2858117|T037|AB|S72.356E|ICD10CM|Nondisp commnt fx shaft of unsp femr, 7thE|Nondisp commnt fx shaft of unsp femr, 7thE +C2858118|T037|AB|S72.356F|ICD10CM|Nondisp commnt fx shaft of unsp femr, 7thF|Nondisp commnt fx shaft of unsp femr, 7thF +C2858119|T037|AB|S72.356G|ICD10CM|Nondisp commnt fx shaft of unsp femr, 7thG|Nondisp commnt fx shaft of unsp femr, 7thG +C2858120|T037|AB|S72.356H|ICD10CM|Nondisp commnt fx shaft of unsp femr, 7thH|Nondisp commnt fx shaft of unsp femr, 7thH +C2858121|T037|AB|S72.356J|ICD10CM|Nondisp commnt fx shaft of unsp femr, 7thJ|Nondisp commnt fx shaft of unsp femr, 7thJ +C2858122|T037|AB|S72.356K|ICD10CM|Nondisp commnt fx shaft of unsp femr, 7thK|Nondisp commnt fx shaft of unsp femr, 7thK +C2858123|T037|AB|S72.356M|ICD10CM|Nondisp commnt fx shaft of unsp femr, 7thM|Nondisp commnt fx shaft of unsp femr, 7thM +C2858124|T037|AB|S72.356N|ICD10CM|Nondisp commnt fx shaft of unsp femr, 7thN|Nondisp commnt fx shaft of unsp femr, 7thN +C2858125|T037|AB|S72.356P|ICD10CM|Nondisp commnt fx shaft of unsp femr, 7thP|Nondisp commnt fx shaft of unsp femr, 7thP +C2858126|T037|AB|S72.356Q|ICD10CM|Nondisp commnt fx shaft of unsp femr, 7thQ|Nondisp commnt fx shaft of unsp femr, 7thQ +C2858127|T037|AB|S72.356R|ICD10CM|Nondisp commnt fx shaft of unsp femr, 7thR|Nondisp commnt fx shaft of unsp femr, 7thR +C2858128|T037|AB|S72.356S|ICD10CM|Nondisp comminuted fracture of shaft of unsp femur, sequela|Nondisp comminuted fracture of shaft of unsp femur, sequela +C2858128|T037|PT|S72.356S|ICD10CM|Nondisplaced comminuted fracture of shaft of unspecified femur, sequela|Nondisplaced comminuted fracture of shaft of unspecified femur, sequela +C2858129|T037|AB|S72.36|ICD10CM|Segmental fracture of shaft of femur|Segmental fracture of shaft of femur +C2858129|T037|HT|S72.36|ICD10CM|Segmental fracture of shaft of femur|Segmental fracture of shaft of femur +C2858130|T037|HT|S72.361|ICD10CM|Displaced segmental fracture of shaft of right femur|Displaced segmental fracture of shaft of right femur +C2858130|T037|AB|S72.361|ICD10CM|Displaced segmental fracture of shaft of right femur|Displaced segmental fracture of shaft of right femur +C2858131|T037|AB|S72.361A|ICD10CM|Displaced segmental fracture of shaft of right femur, init|Displaced segmental fracture of shaft of right femur, init +C2858131|T037|PT|S72.361A|ICD10CM|Displaced segmental fracture of shaft of right femur, initial encounter for closed fracture|Displaced segmental fracture of shaft of right femur, initial encounter for closed fracture +C2858132|T037|AB|S72.361B|ICD10CM|Displ seg fx shaft of r femur, init for opn fx type I/2|Displ seg fx shaft of r femur, init for opn fx type I/2 +C2858133|T037|AB|S72.361C|ICD10CM|Displ seg fx shaft of r femur, init for opn fx type 3A/B/C|Displ seg fx shaft of r femur, init for opn fx type 3A/B/C +C2858134|T037|AB|S72.361D|ICD10CM|Displ seg fx shaft of r femur, subs for clos fx w routn heal|Displ seg fx shaft of r femur, subs for clos fx w routn heal +C2858135|T037|AB|S72.361E|ICD10CM|Displ seg fx shaft of r femr, 7thE|Displ seg fx shaft of r femr, 7thE +C2858136|T037|AB|S72.361F|ICD10CM|Displ seg fx shaft of r femr, 7thF|Displ seg fx shaft of r femr, 7thF +C2858137|T037|AB|S72.361G|ICD10CM|Displ seg fx shaft of r femur, subs for clos fx w delay heal|Displ seg fx shaft of r femur, subs for clos fx w delay heal +C2858138|T037|AB|S72.361H|ICD10CM|Displ seg fx shaft of r femr, 7thH|Displ seg fx shaft of r femr, 7thH +C2858139|T037|AB|S72.361J|ICD10CM|Displ seg fx shaft of r femr, 7thJ|Displ seg fx shaft of r femr, 7thJ +C2858140|T037|AB|S72.361K|ICD10CM|Displ seg fx shaft of r femur, subs for clos fx w nonunion|Displ seg fx shaft of r femur, subs for clos fx w nonunion +C2858141|T037|AB|S72.361M|ICD10CM|Displ seg fx shaft of r femr, 7thM|Displ seg fx shaft of r femr, 7thM +C2858142|T037|AB|S72.361N|ICD10CM|Displ seg fx shaft of r femr, 7thN|Displ seg fx shaft of r femr, 7thN +C2858143|T037|AB|S72.361P|ICD10CM|Displ seg fx shaft of r femur, subs for clos fx w malunion|Displ seg fx shaft of r femur, subs for clos fx w malunion +C2858144|T037|AB|S72.361Q|ICD10CM|Displ seg fx shaft of r femr, 7thQ|Displ seg fx shaft of r femr, 7thQ +C2858145|T037|AB|S72.361R|ICD10CM|Displ seg fx shaft of r femr, 7thR|Displ seg fx shaft of r femr, 7thR +C2858146|T037|PT|S72.361S|ICD10CM|Displaced segmental fracture of shaft of right femur, sequela|Displaced segmental fracture of shaft of right femur, sequela +C2858146|T037|AB|S72.361S|ICD10CM|Displaced segmental fx shaft of right femur, sequela|Displaced segmental fx shaft of right femur, sequela +C2858147|T037|AB|S72.362|ICD10CM|Displaced segmental fracture of shaft of left femur|Displaced segmental fracture of shaft of left femur +C2858147|T037|HT|S72.362|ICD10CM|Displaced segmental fracture of shaft of left femur|Displaced segmental fracture of shaft of left femur +C2858148|T037|AB|S72.362A|ICD10CM|Displaced segmental fracture of shaft of left femur, init|Displaced segmental fracture of shaft of left femur, init +C2858148|T037|PT|S72.362A|ICD10CM|Displaced segmental fracture of shaft of left femur, initial encounter for closed fracture|Displaced segmental fracture of shaft of left femur, initial encounter for closed fracture +C2858149|T037|AB|S72.362B|ICD10CM|Displ seg fx shaft of l femur, init for opn fx type I/2|Displ seg fx shaft of l femur, init for opn fx type I/2 +C2858150|T037|AB|S72.362C|ICD10CM|Displ seg fx shaft of l femur, init for opn fx type 3A/B/C|Displ seg fx shaft of l femur, init for opn fx type 3A/B/C +C2858151|T037|AB|S72.362D|ICD10CM|Displ seg fx shaft of l femur, subs for clos fx w routn heal|Displ seg fx shaft of l femur, subs for clos fx w routn heal +C2858152|T037|AB|S72.362E|ICD10CM|Displ seg fx shaft of l femr, 7thE|Displ seg fx shaft of l femr, 7thE +C2858153|T037|AB|S72.362F|ICD10CM|Displ seg fx shaft of l femr, 7thF|Displ seg fx shaft of l femr, 7thF +C2858154|T037|AB|S72.362G|ICD10CM|Displ seg fx shaft of l femur, subs for clos fx w delay heal|Displ seg fx shaft of l femur, subs for clos fx w delay heal +C2858155|T037|AB|S72.362H|ICD10CM|Displ seg fx shaft of l femr, 7thH|Displ seg fx shaft of l femr, 7thH +C2858156|T037|AB|S72.362J|ICD10CM|Displ seg fx shaft of l femr, 7thJ|Displ seg fx shaft of l femr, 7thJ +C2858157|T037|AB|S72.362K|ICD10CM|Displ seg fx shaft of l femur, subs for clos fx w nonunion|Displ seg fx shaft of l femur, subs for clos fx w nonunion +C2858158|T037|AB|S72.362M|ICD10CM|Displ seg fx shaft of l femr, 7thM|Displ seg fx shaft of l femr, 7thM +C2858159|T037|AB|S72.362N|ICD10CM|Displ seg fx shaft of l femr, 7thN|Displ seg fx shaft of l femr, 7thN +C2858160|T037|AB|S72.362P|ICD10CM|Displ seg fx shaft of l femur, subs for clos fx w malunion|Displ seg fx shaft of l femur, subs for clos fx w malunion +C2858161|T037|AB|S72.362Q|ICD10CM|Displ seg fx shaft of l femr, 7thQ|Displ seg fx shaft of l femr, 7thQ +C2858162|T037|AB|S72.362R|ICD10CM|Displ seg fx shaft of l femr, 7thR|Displ seg fx shaft of l femr, 7thR +C2858163|T037|AB|S72.362S|ICD10CM|Displaced segmental fracture of shaft of left femur, sequela|Displaced segmental fracture of shaft of left femur, sequela +C2858163|T037|PT|S72.362S|ICD10CM|Displaced segmental fracture of shaft of left femur, sequela|Displaced segmental fracture of shaft of left femur, sequela +C2858164|T037|AB|S72.363|ICD10CM|Displaced segmental fracture of shaft of unspecified femur|Displaced segmental fracture of shaft of unspecified femur +C2858164|T037|HT|S72.363|ICD10CM|Displaced segmental fracture of shaft of unspecified femur|Displaced segmental fracture of shaft of unspecified femur +C2858165|T037|AB|S72.363A|ICD10CM|Displaced segmental fracture of shaft of unsp femur, init|Displaced segmental fracture of shaft of unsp femur, init +C2858165|T037|PT|S72.363A|ICD10CM|Displaced segmental fracture of shaft of unspecified femur, initial encounter for closed fracture|Displaced segmental fracture of shaft of unspecified femur, initial encounter for closed fracture +C2858166|T037|AB|S72.363B|ICD10CM|Displ seg fx shaft of unsp femur, init for opn fx type I/2|Displ seg fx shaft of unsp femur, init for opn fx type I/2 +C2858167|T037|AB|S72.363C|ICD10CM|Displ seg fx shaft of unsp femr, init for opn fx type 3A/B/C|Displ seg fx shaft of unsp femr, init for opn fx type 3A/B/C +C2858168|T037|AB|S72.363D|ICD10CM|Displ seg fx shaft of unsp femr, 7thD|Displ seg fx shaft of unsp femr, 7thD +C2858169|T037|AB|S72.363E|ICD10CM|Displ seg fx shaft of unsp femr, 7thE|Displ seg fx shaft of unsp femr, 7thE +C2858170|T037|AB|S72.363F|ICD10CM|Displ seg fx shaft of unsp femr, 7thF|Displ seg fx shaft of unsp femr, 7thF +C2858171|T037|AB|S72.363G|ICD10CM|Displ seg fx shaft of unsp femr, 7thG|Displ seg fx shaft of unsp femr, 7thG +C2858172|T037|AB|S72.363H|ICD10CM|Displ seg fx shaft of unsp femr, 7thH|Displ seg fx shaft of unsp femr, 7thH +C2858173|T037|AB|S72.363J|ICD10CM|Displ seg fx shaft of unsp femr, 7thJ|Displ seg fx shaft of unsp femr, 7thJ +C2858174|T037|AB|S72.363K|ICD10CM|Displ seg fx shaft of unsp femr, subs for clos fx w nonunion|Displ seg fx shaft of unsp femr, subs for clos fx w nonunion +C2858175|T037|AB|S72.363M|ICD10CM|Displ seg fx shaft of unsp femr, 7thM|Displ seg fx shaft of unsp femr, 7thM +C2858176|T037|AB|S72.363N|ICD10CM|Displ seg fx shaft of unsp femr, 7thN|Displ seg fx shaft of unsp femr, 7thN +C2858177|T037|AB|S72.363P|ICD10CM|Displ seg fx shaft of unsp femr, subs for clos fx w malunion|Displ seg fx shaft of unsp femr, subs for clos fx w malunion +C2858178|T037|AB|S72.363Q|ICD10CM|Displ seg fx shaft of unsp femr, 7thQ|Displ seg fx shaft of unsp femr, 7thQ +C2858179|T037|AB|S72.363R|ICD10CM|Displ seg fx shaft of unsp femr, 7thR|Displ seg fx shaft of unsp femr, 7thR +C2858180|T037|AB|S72.363S|ICD10CM|Displaced segmental fracture of shaft of unsp femur, sequela|Displaced segmental fracture of shaft of unsp femur, sequela +C2858180|T037|PT|S72.363S|ICD10CM|Displaced segmental fracture of shaft of unspecified femur, sequela|Displaced segmental fracture of shaft of unspecified femur, sequela +C2858181|T037|AB|S72.364|ICD10CM|Nondisplaced segmental fracture of shaft of right femur|Nondisplaced segmental fracture of shaft of right femur +C2858181|T037|HT|S72.364|ICD10CM|Nondisplaced segmental fracture of shaft of right femur|Nondisplaced segmental fracture of shaft of right femur +C2858182|T037|AB|S72.364A|ICD10CM|Nondisp segmental fracture of shaft of right femur, init|Nondisp segmental fracture of shaft of right femur, init +C2858182|T037|PT|S72.364A|ICD10CM|Nondisplaced segmental fracture of shaft of right femur, initial encounter for closed fracture|Nondisplaced segmental fracture of shaft of right femur, initial encounter for closed fracture +C2858183|T037|AB|S72.364B|ICD10CM|Nondisp seg fx shaft of r femur, init for opn fx type I/2|Nondisp seg fx shaft of r femur, init for opn fx type I/2 +C2858184|T037|AB|S72.364C|ICD10CM|Nondisp seg fx shaft of r femur, init for opn fx type 3A/B/C|Nondisp seg fx shaft of r femur, init for opn fx type 3A/B/C +C2858185|T037|AB|S72.364D|ICD10CM|Nondisp seg fx shaft of r femr, 7thD|Nondisp seg fx shaft of r femr, 7thD +C2858186|T037|AB|S72.364E|ICD10CM|Nondisp seg fx shaft of r femr, 7thE|Nondisp seg fx shaft of r femr, 7thE +C2858187|T037|AB|S72.364F|ICD10CM|Nondisp seg fx shaft of r femr, 7thF|Nondisp seg fx shaft of r femr, 7thF +C2858188|T037|AB|S72.364G|ICD10CM|Nondisp seg fx shaft of r femr, 7thG|Nondisp seg fx shaft of r femr, 7thG +C2858189|T037|AB|S72.364H|ICD10CM|Nondisp seg fx shaft of r femr, 7thH|Nondisp seg fx shaft of r femr, 7thH +C2858190|T037|AB|S72.364J|ICD10CM|Nondisp seg fx shaft of r femr, 7thJ|Nondisp seg fx shaft of r femr, 7thJ +C2858191|T037|AB|S72.364K|ICD10CM|Nondisp seg fx shaft of r femur, subs for clos fx w nonunion|Nondisp seg fx shaft of r femur, subs for clos fx w nonunion +C2858192|T037|AB|S72.364M|ICD10CM|Nondisp seg fx shaft of r femr, 7thM|Nondisp seg fx shaft of r femr, 7thM +C2858193|T037|AB|S72.364N|ICD10CM|Nondisp seg fx shaft of r femr, 7thN|Nondisp seg fx shaft of r femr, 7thN +C2858194|T037|AB|S72.364P|ICD10CM|Nondisp seg fx shaft of r femur, subs for clos fx w malunion|Nondisp seg fx shaft of r femur, subs for clos fx w malunion +C2858195|T037|AB|S72.364Q|ICD10CM|Nondisp seg fx shaft of r femr, 7thQ|Nondisp seg fx shaft of r femr, 7thQ +C2858196|T037|AB|S72.364R|ICD10CM|Nondisp seg fx shaft of r femr, 7thR|Nondisp seg fx shaft of r femr, 7thR +C2858197|T037|AB|S72.364S|ICD10CM|Nondisp segmental fracture of shaft of right femur, sequela|Nondisp segmental fracture of shaft of right femur, sequela +C2858197|T037|PT|S72.364S|ICD10CM|Nondisplaced segmental fracture of shaft of right femur, sequela|Nondisplaced segmental fracture of shaft of right femur, sequela +C2858198|T037|AB|S72.365|ICD10CM|Nondisplaced segmental fracture of shaft of left femur|Nondisplaced segmental fracture of shaft of left femur +C2858198|T037|HT|S72.365|ICD10CM|Nondisplaced segmental fracture of shaft of left femur|Nondisplaced segmental fracture of shaft of left femur +C2858199|T037|AB|S72.365A|ICD10CM|Nondisplaced segmental fracture of shaft of left femur, init|Nondisplaced segmental fracture of shaft of left femur, init +C2858199|T037|PT|S72.365A|ICD10CM|Nondisplaced segmental fracture of shaft of left femur, initial encounter for closed fracture|Nondisplaced segmental fracture of shaft of left femur, initial encounter for closed fracture +C2858200|T037|AB|S72.365B|ICD10CM|Nondisp seg fx shaft of l femur, init for opn fx type I/2|Nondisp seg fx shaft of l femur, init for opn fx type I/2 +C2858201|T037|AB|S72.365C|ICD10CM|Nondisp seg fx shaft of l femur, init for opn fx type 3A/B/C|Nondisp seg fx shaft of l femur, init for opn fx type 3A/B/C +C2858202|T037|AB|S72.365D|ICD10CM|Nondisp seg fx shaft of l femr, 7thD|Nondisp seg fx shaft of l femr, 7thD +C2858203|T037|AB|S72.365E|ICD10CM|Nondisp seg fx shaft of l femr, 7thE|Nondisp seg fx shaft of l femr, 7thE +C2858204|T037|AB|S72.365F|ICD10CM|Nondisp seg fx shaft of l femr, 7thF|Nondisp seg fx shaft of l femr, 7thF +C2858205|T037|AB|S72.365G|ICD10CM|Nondisp seg fx shaft of l femr, 7thG|Nondisp seg fx shaft of l femr, 7thG +C2858206|T037|AB|S72.365H|ICD10CM|Nondisp seg fx shaft of l femr, 7thH|Nondisp seg fx shaft of l femr, 7thH +C2858207|T037|AB|S72.365J|ICD10CM|Nondisp seg fx shaft of l femr, 7thJ|Nondisp seg fx shaft of l femr, 7thJ +C2858208|T037|AB|S72.365K|ICD10CM|Nondisp seg fx shaft of l femur, subs for clos fx w nonunion|Nondisp seg fx shaft of l femur, subs for clos fx w nonunion +C2858209|T037|AB|S72.365M|ICD10CM|Nondisp seg fx shaft of l femr, 7thM|Nondisp seg fx shaft of l femr, 7thM +C2858210|T037|AB|S72.365N|ICD10CM|Nondisp seg fx shaft of l femr, 7thN|Nondisp seg fx shaft of l femr, 7thN +C2858211|T037|AB|S72.365P|ICD10CM|Nondisp seg fx shaft of l femur, subs for clos fx w malunion|Nondisp seg fx shaft of l femur, subs for clos fx w malunion +C2858212|T037|AB|S72.365Q|ICD10CM|Nondisp seg fx shaft of l femr, 7thQ|Nondisp seg fx shaft of l femr, 7thQ +C2858213|T037|AB|S72.365R|ICD10CM|Nondisp seg fx shaft of l femr, 7thR|Nondisp seg fx shaft of l femr, 7thR +C2858214|T037|AB|S72.365S|ICD10CM|Nondisp segmental fracture of shaft of left femur, sequela|Nondisp segmental fracture of shaft of left femur, sequela +C2858214|T037|PT|S72.365S|ICD10CM|Nondisplaced segmental fracture of shaft of left femur, sequela|Nondisplaced segmental fracture of shaft of left femur, sequela +C2858215|T037|AB|S72.366|ICD10CM|Nondisplaced segmental fracture of shaft of unsp femur|Nondisplaced segmental fracture of shaft of unsp femur +C2858215|T037|HT|S72.366|ICD10CM|Nondisplaced segmental fracture of shaft of unspecified femur|Nondisplaced segmental fracture of shaft of unspecified femur +C2858216|T037|AB|S72.366A|ICD10CM|Nondisplaced segmental fracture of shaft of unsp femur, init|Nondisplaced segmental fracture of shaft of unsp femur, init +C2858216|T037|PT|S72.366A|ICD10CM|Nondisplaced segmental fracture of shaft of unspecified femur, initial encounter for closed fracture|Nondisplaced segmental fracture of shaft of unspecified femur, initial encounter for closed fracture +C2858217|T037|AB|S72.366B|ICD10CM|Nondisp seg fx shaft of unsp femur, init for opn fx type I/2|Nondisp seg fx shaft of unsp femur, init for opn fx type I/2 +C2858218|T037|AB|S72.366C|ICD10CM|Nondisp seg fx shaft of unsp femr, 7thC|Nondisp seg fx shaft of unsp femr, 7thC +C2858219|T037|AB|S72.366D|ICD10CM|Nondisp seg fx shaft of unsp femr, 7thD|Nondisp seg fx shaft of unsp femr, 7thD +C2858220|T037|AB|S72.366E|ICD10CM|Nondisp seg fx shaft of unsp femr, 7thE|Nondisp seg fx shaft of unsp femr, 7thE +C2858221|T037|AB|S72.366F|ICD10CM|Nondisp seg fx shaft of unsp femr, 7thF|Nondisp seg fx shaft of unsp femr, 7thF +C2858222|T037|AB|S72.366G|ICD10CM|Nondisp seg fx shaft of unsp femr, 7thG|Nondisp seg fx shaft of unsp femr, 7thG +C2858223|T037|AB|S72.366H|ICD10CM|Nondisp seg fx shaft of unsp femr, 7thH|Nondisp seg fx shaft of unsp femr, 7thH +C2858224|T037|AB|S72.366J|ICD10CM|Nondisp seg fx shaft of unsp femr, 7thJ|Nondisp seg fx shaft of unsp femr, 7thJ +C2858225|T037|AB|S72.366K|ICD10CM|Nondisp seg fx shaft of unsp femr, 7thK|Nondisp seg fx shaft of unsp femr, 7thK +C2858226|T037|AB|S72.366M|ICD10CM|Nondisp seg fx shaft of unsp femr, 7thM|Nondisp seg fx shaft of unsp femr, 7thM +C2858227|T037|AB|S72.366N|ICD10CM|Nondisp seg fx shaft of unsp femr, 7thN|Nondisp seg fx shaft of unsp femr, 7thN +C2858228|T037|AB|S72.366P|ICD10CM|Nondisp seg fx shaft of unsp femr, 7thP|Nondisp seg fx shaft of unsp femr, 7thP +C2858229|T037|AB|S72.366Q|ICD10CM|Nondisp seg fx shaft of unsp femr, 7thQ|Nondisp seg fx shaft of unsp femr, 7thQ +C2858230|T037|AB|S72.366R|ICD10CM|Nondisp seg fx shaft of unsp femr, 7thR|Nondisp seg fx shaft of unsp femr, 7thR +C2858231|T037|AB|S72.366S|ICD10CM|Nondisp segmental fracture of shaft of unsp femur, sequela|Nondisp segmental fracture of shaft of unsp femur, sequela +C2858231|T037|PT|S72.366S|ICD10CM|Nondisplaced segmental fracture of shaft of unspecified femur, sequela|Nondisplaced segmental fracture of shaft of unspecified femur, sequela +C2858232|T037|AB|S72.39|ICD10CM|Other fracture of shaft of femur|Other fracture of shaft of femur +C2858232|T037|HT|S72.39|ICD10CM|Other fracture of shaft of femur|Other fracture of shaft of femur +C2858233|T037|AB|S72.391|ICD10CM|Other fracture of shaft of right femur|Other fracture of shaft of right femur +C2858233|T037|HT|S72.391|ICD10CM|Other fracture of shaft of right femur|Other fracture of shaft of right femur +C2858234|T037|AB|S72.391A|ICD10CM|Oth fracture of shaft of right femur, init for clos fx|Oth fracture of shaft of right femur, init for clos fx +C2858234|T037|PT|S72.391A|ICD10CM|Other fracture of shaft of right femur, initial encounter for closed fracture|Other fracture of shaft of right femur, initial encounter for closed fracture +C2858235|T037|AB|S72.391B|ICD10CM|Oth fx shaft of right femur, init for opn fx type I/2|Oth fx shaft of right femur, init for opn fx type I/2 +C2858235|T037|PT|S72.391B|ICD10CM|Other fracture of shaft of right femur, initial encounter for open fracture type I or II|Other fracture of shaft of right femur, initial encounter for open fracture type I or II +C2858236|T037|AB|S72.391C|ICD10CM|Oth fx shaft of right femur, init for opn fx type 3A/B/C|Oth fx shaft of right femur, init for opn fx type 3A/B/C +C2858236|T037|PT|S72.391C|ICD10CM|Other fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC|Other fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2858237|T037|AB|S72.391D|ICD10CM|Oth fx shaft of right femur, subs for clos fx w routn heal|Oth fx shaft of right femur, subs for clos fx w routn heal +C2858238|T037|AB|S72.391E|ICD10CM|Oth fx shaft of r femr, 7thE|Oth fx shaft of r femr, 7thE +C2858239|T037|AB|S72.391F|ICD10CM|Oth fx shaft of r femr, 7thF|Oth fx shaft of r femr, 7thF +C2858240|T037|AB|S72.391G|ICD10CM|Oth fx shaft of right femur, subs for clos fx w delay heal|Oth fx shaft of right femur, subs for clos fx w delay heal +C2858241|T037|AB|S72.391H|ICD10CM|Oth fx shaft of r femr, 7thH|Oth fx shaft of r femr, 7thH +C2858242|T037|AB|S72.391J|ICD10CM|Oth fx shaft of r femr, 7thJ|Oth fx shaft of r femr, 7thJ +C2858243|T037|AB|S72.391K|ICD10CM|Oth fx shaft of right femur, subs for clos fx w nonunion|Oth fx shaft of right femur, subs for clos fx w nonunion +C2858243|T037|PT|S72.391K|ICD10CM|Other fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion|Other fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion +C2858244|T037|AB|S72.391M|ICD10CM|Oth fx shaft of r femur, subs for opn fx type I/2 w nonunion|Oth fx shaft of r femur, subs for opn fx type I/2 w nonunion +C2858245|T037|AB|S72.391N|ICD10CM|Oth fx shaft of r femr, 7thN|Oth fx shaft of r femr, 7thN +C2858246|T037|AB|S72.391P|ICD10CM|Oth fx shaft of right femur, subs for clos fx w malunion|Oth fx shaft of right femur, subs for clos fx w malunion +C2858246|T037|PT|S72.391P|ICD10CM|Other fracture of shaft of right femur, subsequent encounter for closed fracture with malunion|Other fracture of shaft of right femur, subsequent encounter for closed fracture with malunion +C2858247|T037|AB|S72.391Q|ICD10CM|Oth fx shaft of r femur, subs for opn fx type I/2 w malunion|Oth fx shaft of r femur, subs for opn fx type I/2 w malunion +C2858248|T037|AB|S72.391R|ICD10CM|Oth fx shaft of r femr, 7thR|Oth fx shaft of r femr, 7thR +C2858249|T037|PT|S72.391S|ICD10CM|Other fracture of shaft of right femur, sequela|Other fracture of shaft of right femur, sequela +C2858249|T037|AB|S72.391S|ICD10CM|Other fracture of shaft of right femur, sequela|Other fracture of shaft of right femur, sequela +C2858250|T037|AB|S72.392|ICD10CM|Other fracture of shaft of left femur|Other fracture of shaft of left femur +C2858250|T037|HT|S72.392|ICD10CM|Other fracture of shaft of left femur|Other fracture of shaft of left femur +C2858251|T037|AB|S72.392A|ICD10CM|Oth fracture of shaft of left femur, init for clos fx|Oth fracture of shaft of left femur, init for clos fx +C2858251|T037|PT|S72.392A|ICD10CM|Other fracture of shaft of left femur, initial encounter for closed fracture|Other fracture of shaft of left femur, initial encounter for closed fracture +C2858252|T037|AB|S72.392B|ICD10CM|Oth fx shaft of left femur, init for opn fx type I/2|Oth fx shaft of left femur, init for opn fx type I/2 +C2858252|T037|PT|S72.392B|ICD10CM|Other fracture of shaft of left femur, initial encounter for open fracture type I or II|Other fracture of shaft of left femur, initial encounter for open fracture type I or II +C2858253|T037|AB|S72.392C|ICD10CM|Oth fx shaft of left femur, init for opn fx type 3A/B/C|Oth fx shaft of left femur, init for opn fx type 3A/B/C +C2858253|T037|PT|S72.392C|ICD10CM|Other fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC|Other fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2858254|T037|AB|S72.392D|ICD10CM|Oth fx shaft of left femur, subs for clos fx w routn heal|Oth fx shaft of left femur, subs for clos fx w routn heal +C2858254|T037|PT|S72.392D|ICD10CM|Other fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing|Other fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing +C2858255|T037|AB|S72.392E|ICD10CM|Oth fx shaft of l femr, 7thE|Oth fx shaft of l femr, 7thE +C2858256|T037|AB|S72.392F|ICD10CM|Oth fx shaft of l femr, 7thF|Oth fx shaft of l femr, 7thF +C2858257|T037|AB|S72.392G|ICD10CM|Oth fx shaft of left femur, subs for clos fx w delay heal|Oth fx shaft of left femur, subs for clos fx w delay heal +C2858257|T037|PT|S72.392G|ICD10CM|Other fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing|Other fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing +C2858258|T037|AB|S72.392H|ICD10CM|Oth fx shaft of l femr, 7thH|Oth fx shaft of l femr, 7thH +C2858259|T037|AB|S72.392J|ICD10CM|Oth fx shaft of l femr, 7thJ|Oth fx shaft of l femr, 7thJ +C2858260|T037|AB|S72.392K|ICD10CM|Oth fx shaft of left femur, subs for clos fx w nonunion|Oth fx shaft of left femur, subs for clos fx w nonunion +C2858260|T037|PT|S72.392K|ICD10CM|Other fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion|Other fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion +C2858261|T037|AB|S72.392M|ICD10CM|Oth fx shaft of l femur, subs for opn fx type I/2 w nonunion|Oth fx shaft of l femur, subs for opn fx type I/2 w nonunion +C2858262|T037|AB|S72.392N|ICD10CM|Oth fx shaft of l femr, 7thN|Oth fx shaft of l femr, 7thN +C2858263|T037|AB|S72.392P|ICD10CM|Oth fx shaft of left femur, subs for clos fx w malunion|Oth fx shaft of left femur, subs for clos fx w malunion +C2858263|T037|PT|S72.392P|ICD10CM|Other fracture of shaft of left femur, subsequent encounter for closed fracture with malunion|Other fracture of shaft of left femur, subsequent encounter for closed fracture with malunion +C2858264|T037|AB|S72.392Q|ICD10CM|Oth fx shaft of l femur, subs for opn fx type I/2 w malunion|Oth fx shaft of l femur, subs for opn fx type I/2 w malunion +C2858265|T037|AB|S72.392R|ICD10CM|Oth fx shaft of l femr, 7thR|Oth fx shaft of l femr, 7thR +C2858266|T037|PT|S72.392S|ICD10CM|Other fracture of shaft of left femur, sequela|Other fracture of shaft of left femur, sequela +C2858266|T037|AB|S72.392S|ICD10CM|Other fracture of shaft of left femur, sequela|Other fracture of shaft of left femur, sequela +C2858267|T037|AB|S72.399|ICD10CM|Other fracture of shaft of unspecified femur|Other fracture of shaft of unspecified femur +C2858267|T037|HT|S72.399|ICD10CM|Other fracture of shaft of unspecified femur|Other fracture of shaft of unspecified femur +C2858268|T037|AB|S72.399A|ICD10CM|Oth fracture of shaft of unsp femur, init for clos fx|Oth fracture of shaft of unsp femur, init for clos fx +C2858268|T037|PT|S72.399A|ICD10CM|Other fracture of shaft of unspecified femur, initial encounter for closed fracture|Other fracture of shaft of unspecified femur, initial encounter for closed fracture +C2858269|T037|AB|S72.399B|ICD10CM|Oth fx shaft of unsp femur, init for opn fx type I/2|Oth fx shaft of unsp femur, init for opn fx type I/2 +C2858269|T037|PT|S72.399B|ICD10CM|Other fracture of shaft of unspecified femur, initial encounter for open fracture type I or II|Other fracture of shaft of unspecified femur, initial encounter for open fracture type I or II +C2858270|T037|AB|S72.399C|ICD10CM|Oth fx shaft of unsp femur, init for opn fx type 3A/B/C|Oth fx shaft of unsp femur, init for opn fx type 3A/B/C +C2858271|T037|AB|S72.399D|ICD10CM|Oth fx shaft of unsp femur, subs for clos fx w routn heal|Oth fx shaft of unsp femur, subs for clos fx w routn heal +C2858272|T037|AB|S72.399E|ICD10CM|Oth fx shaft of unsp femr, 7thE|Oth fx shaft of unsp femr, 7thE +C2858273|T037|AB|S72.399F|ICD10CM|Oth fx shaft of unsp femr, 7thF|Oth fx shaft of unsp femr, 7thF +C2858274|T037|AB|S72.399G|ICD10CM|Oth fx shaft of unsp femur, subs for clos fx w delay heal|Oth fx shaft of unsp femur, subs for clos fx w delay heal +C2858275|T037|AB|S72.399H|ICD10CM|Oth fx shaft of unsp femr, 7thH|Oth fx shaft of unsp femr, 7thH +C2858276|T037|AB|S72.399J|ICD10CM|Oth fx shaft of unsp femr, 7thJ|Oth fx shaft of unsp femr, 7thJ +C2858277|T037|AB|S72.399K|ICD10CM|Oth fx shaft of unsp femur, subs for clos fx w nonunion|Oth fx shaft of unsp femur, subs for clos fx w nonunion +C2858277|T037|PT|S72.399K|ICD10CM|Other fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion|Other fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion +C2858278|T037|AB|S72.399M|ICD10CM|Oth fx shaft of unsp femr, 7thM|Oth fx shaft of unsp femr, 7thM +C2858279|T037|AB|S72.399N|ICD10CM|Oth fx shaft of unsp femr, 7thN|Oth fx shaft of unsp femr, 7thN +C2858280|T037|AB|S72.399P|ICD10CM|Oth fx shaft of unsp femur, subs for clos fx w malunion|Oth fx shaft of unsp femur, subs for clos fx w malunion +C2858280|T037|PT|S72.399P|ICD10CM|Other fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion|Other fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion +C2858281|T037|AB|S72.399Q|ICD10CM|Oth fx shaft of unsp femr, 7thQ|Oth fx shaft of unsp femr, 7thQ +C2858282|T037|AB|S72.399R|ICD10CM|Oth fx shaft of unsp femr, 7thR|Oth fx shaft of unsp femr, 7thR +C2858283|T037|PT|S72.399S|ICD10CM|Other fracture of shaft of unspecified femur, sequela|Other fracture of shaft of unspecified femur, sequela +C2858283|T037|AB|S72.399S|ICD10CM|Other fracture of shaft of unspecified femur, sequela|Other fracture of shaft of unspecified femur, sequela +C0435839|T037|ET|S72.4|ICD10CM|Fracture of distal end of femur|Fracture of distal end of femur +C0435839|T037|HT|S72.4|ICD10CM|Fracture of lower end of femur|Fracture of lower end of femur +C0435839|T037|AB|S72.4|ICD10CM|Fracture of lower end of femur|Fracture of lower end of femur +C0435839|T037|PT|S72.4|ICD10|Fracture of lower end of femur|Fracture of lower end of femur +C2858284|T037|AB|S72.40|ICD10CM|Unspecified fracture of lower end of femur|Unspecified fracture of lower end of femur +C2858284|T037|HT|S72.40|ICD10CM|Unspecified fracture of lower end of femur|Unspecified fracture of lower end of femur +C2858285|T037|AB|S72.401|ICD10CM|Unspecified fracture of lower end of right femur|Unspecified fracture of lower end of right femur +C2858285|T037|HT|S72.401|ICD10CM|Unspecified fracture of lower end of right femur|Unspecified fracture of lower end of right femur +C2858286|T037|AB|S72.401A|ICD10CM|Unsp fracture of lower end of right femur, init for clos fx|Unsp fracture of lower end of right femur, init for clos fx +C2858286|T037|PT|S72.401A|ICD10CM|Unspecified fracture of lower end of right femur, initial encounter for closed fracture|Unspecified fracture of lower end of right femur, initial encounter for closed fracture +C2858287|T037|AB|S72.401B|ICD10CM|Unsp fx lower end of right femur, init for opn fx type I/2|Unsp fx lower end of right femur, init for opn fx type I/2 +C2858287|T037|PT|S72.401B|ICD10CM|Unspecified fracture of lower end of right femur, initial encounter for open fracture type I or II|Unspecified fracture of lower end of right femur, initial encounter for open fracture type I or II +C2858288|T037|AB|S72.401C|ICD10CM|Unsp fx lower end of r femur, init for opn fx type 3A/B/C|Unsp fx lower end of r femur, init for opn fx type 3A/B/C +C2858289|T037|AB|S72.401D|ICD10CM|Unsp fx lower end of r femur, subs for clos fx w routn heal|Unsp fx lower end of r femur, subs for clos fx w routn heal +C2858290|T037|AB|S72.401E|ICD10CM|Unsp fx low end r femr, 7thE|Unsp fx low end r femr, 7thE +C2858291|T037|AB|S72.401F|ICD10CM|Unsp fx low end r femr, 7thF|Unsp fx low end r femr, 7thF +C2858292|T037|AB|S72.401G|ICD10CM|Unsp fx lower end of r femur, subs for clos fx w delay heal|Unsp fx lower end of r femur, subs for clos fx w delay heal +C2858293|T037|AB|S72.401H|ICD10CM|Unsp fx low end r femr, 7thH|Unsp fx low end r femr, 7thH +C2858294|T037|AB|S72.401J|ICD10CM|Unsp fx low end r femr, 7thJ|Unsp fx low end r femr, 7thJ +C2858295|T037|AB|S72.401K|ICD10CM|Unsp fx lower end of r femur, subs for clos fx w nonunion|Unsp fx lower end of r femur, subs for clos fx w nonunion +C2858296|T037|AB|S72.401M|ICD10CM|Unsp fx low end r femr, subs for opn fx type I/2 w nonunion|Unsp fx low end r femr, subs for opn fx type I/2 w nonunion +C2858297|T037|AB|S72.401N|ICD10CM|Unsp fx low end r femr, 7thN|Unsp fx low end r femr, 7thN +C2858298|T037|AB|S72.401P|ICD10CM|Unsp fx lower end of r femur, subs for clos fx w malunion|Unsp fx lower end of r femur, subs for clos fx w malunion +C2858299|T037|AB|S72.401Q|ICD10CM|Unsp fx low end r femr, subs for opn fx type I/2 w malunion|Unsp fx low end r femr, subs for opn fx type I/2 w malunion +C2858300|T037|AB|S72.401R|ICD10CM|Unsp fx low end r femr, 7thR|Unsp fx low end r femr, 7thR +C2858301|T037|PT|S72.401S|ICD10CM|Unspecified fracture of lower end of right femur, sequela|Unspecified fracture of lower end of right femur, sequela +C2858301|T037|AB|S72.401S|ICD10CM|Unspecified fracture of lower end of right femur, sequela|Unspecified fracture of lower end of right femur, sequela +C2858302|T037|AB|S72.402|ICD10CM|Unspecified fracture of lower end of left femur|Unspecified fracture of lower end of left femur +C2858302|T037|HT|S72.402|ICD10CM|Unspecified fracture of lower end of left femur|Unspecified fracture of lower end of left femur +C2858303|T037|AB|S72.402A|ICD10CM|Unsp fracture of lower end of left femur, init for clos fx|Unsp fracture of lower end of left femur, init for clos fx +C2858303|T037|PT|S72.402A|ICD10CM|Unspecified fracture of lower end of left femur, initial encounter for closed fracture|Unspecified fracture of lower end of left femur, initial encounter for closed fracture +C2858304|T037|AB|S72.402B|ICD10CM|Unsp fx lower end of left femur, init for opn fx type I/2|Unsp fx lower end of left femur, init for opn fx type I/2 +C2858304|T037|PT|S72.402B|ICD10CM|Unspecified fracture of lower end of left femur, initial encounter for open fracture type I or II|Unspecified fracture of lower end of left femur, initial encounter for open fracture type I or II +C2858305|T037|AB|S72.402C|ICD10CM|Unsp fx lower end of left femur, init for opn fx type 3A/B/C|Unsp fx lower end of left femur, init for opn fx type 3A/B/C +C2858306|T037|AB|S72.402D|ICD10CM|Unsp fx lower end of l femur, subs for clos fx w routn heal|Unsp fx lower end of l femur, subs for clos fx w routn heal +C2858307|T037|AB|S72.402E|ICD10CM|Unsp fx low end l femr, 7thE|Unsp fx low end l femr, 7thE +C2858308|T037|AB|S72.402F|ICD10CM|Unsp fx low end l femr, 7thF|Unsp fx low end l femr, 7thF +C2858309|T037|AB|S72.402G|ICD10CM|Unsp fx lower end of l femur, subs for clos fx w delay heal|Unsp fx lower end of l femur, subs for clos fx w delay heal +C2858310|T037|AB|S72.402H|ICD10CM|Unsp fx low end l femr, 7thH|Unsp fx low end l femr, 7thH +C2858311|T037|AB|S72.402J|ICD10CM|Unsp fx low end l femr, 7thJ|Unsp fx low end l femr, 7thJ +C2858312|T037|AB|S72.402K|ICD10CM|Unsp fx lower end of left femur, subs for clos fx w nonunion|Unsp fx lower end of left femur, subs for clos fx w nonunion +C2858313|T037|AB|S72.402M|ICD10CM|Unsp fx low end l femr, subs for opn fx type I/2 w nonunion|Unsp fx low end l femr, subs for opn fx type I/2 w nonunion +C2858314|T037|AB|S72.402N|ICD10CM|Unsp fx low end l femr, 7thN|Unsp fx low end l femr, 7thN +C2858315|T037|AB|S72.402P|ICD10CM|Unsp fx lower end of left femur, subs for clos fx w malunion|Unsp fx lower end of left femur, subs for clos fx w malunion +C2858316|T037|AB|S72.402Q|ICD10CM|Unsp fx low end l femr, subs for opn fx type I/2 w malunion|Unsp fx low end l femr, subs for opn fx type I/2 w malunion +C2858317|T037|AB|S72.402R|ICD10CM|Unsp fx low end l femr, 7thR|Unsp fx low end l femr, 7thR +C2858318|T037|PT|S72.402S|ICD10CM|Unspecified fracture of lower end of left femur, sequela|Unspecified fracture of lower end of left femur, sequela +C2858318|T037|AB|S72.402S|ICD10CM|Unspecified fracture of lower end of left femur, sequela|Unspecified fracture of lower end of left femur, sequela +C2858319|T037|AB|S72.409|ICD10CM|Unspecified fracture of lower end of unspecified femur|Unspecified fracture of lower end of unspecified femur +C2858319|T037|HT|S72.409|ICD10CM|Unspecified fracture of lower end of unspecified femur|Unspecified fracture of lower end of unspecified femur +C2858320|T037|AB|S72.409A|ICD10CM|Unsp fracture of lower end of unsp femur, init for clos fx|Unsp fracture of lower end of unsp femur, init for clos fx +C2858320|T037|PT|S72.409A|ICD10CM|Unspecified fracture of lower end of unspecified femur, initial encounter for closed fracture|Unspecified fracture of lower end of unspecified femur, initial encounter for closed fracture +C2858321|T037|AB|S72.409B|ICD10CM|Unsp fx lower end of unsp femur, init for opn fx type I/2|Unsp fx lower end of unsp femur, init for opn fx type I/2 +C2858322|T037|AB|S72.409C|ICD10CM|Unsp fx lower end of unsp femur, init for opn fx type 3A/B/C|Unsp fx lower end of unsp femur, init for opn fx type 3A/B/C +C2858323|T037|AB|S72.409D|ICD10CM|Unsp fx lower end unsp femur, subs for clos fx w routn heal|Unsp fx lower end unsp femur, subs for clos fx w routn heal +C2858324|T037|AB|S72.409E|ICD10CM|Unsp fx low end unsp femr, 7thE|Unsp fx low end unsp femr, 7thE +C2858325|T037|AB|S72.409F|ICD10CM|Unsp fx low end unsp femr, 7thF|Unsp fx low end unsp femr, 7thF +C2858326|T037|AB|S72.409G|ICD10CM|Unsp fx lower end unsp femur, subs for clos fx w delay heal|Unsp fx lower end unsp femur, subs for clos fx w delay heal +C2858327|T037|AB|S72.409H|ICD10CM|Unsp fx low end unsp femr, 7thH|Unsp fx low end unsp femr, 7thH +C2858328|T037|AB|S72.409J|ICD10CM|Unsp fx low end unsp femr, 7thJ|Unsp fx low end unsp femr, 7thJ +C2858329|T037|AB|S72.409K|ICD10CM|Unsp fx lower end of unsp femur, subs for clos fx w nonunion|Unsp fx lower end of unsp femur, subs for clos fx w nonunion +C2858330|T037|AB|S72.409M|ICD10CM|Unsp fx low end unsp femr, 7thM|Unsp fx low end unsp femr, 7thM +C2858331|T037|AB|S72.409N|ICD10CM|Unsp fx low end unsp femr, 7thN|Unsp fx low end unsp femr, 7thN +C2858332|T037|AB|S72.409P|ICD10CM|Unsp fx lower end of unsp femur, subs for clos fx w malunion|Unsp fx lower end of unsp femur, subs for clos fx w malunion +C2858333|T037|AB|S72.409Q|ICD10CM|Unsp fx low end unsp femr, 7thQ|Unsp fx low end unsp femr, 7thQ +C2858334|T037|AB|S72.409R|ICD10CM|Unsp fx low end unsp femr, 7thR|Unsp fx low end unsp femr, 7thR +C2858335|T037|AB|S72.409S|ICD10CM|Unsp fracture of lower end of unspecified femur, sequela|Unsp fracture of lower end of unspecified femur, sequela +C2858335|T037|PT|S72.409S|ICD10CM|Unspecified fracture of lower end of unspecified femur, sequela|Unspecified fracture of lower end of unspecified femur, sequela +C0435846|T037|ET|S72.41|ICD10CM|Condyle fracture of femur NOS|Condyle fracture of femur NOS +C2858336|T037|AB|S72.41|ICD10CM|Unspecified condyle fracture of lower end of femur|Unspecified condyle fracture of lower end of femur +C2858336|T037|HT|S72.41|ICD10CM|Unspecified condyle fracture of lower end of femur|Unspecified condyle fracture of lower end of femur +C2858337|T037|AB|S72.411|ICD10CM|Displaced unsp condyle fracture of lower end of right femur|Displaced unsp condyle fracture of lower end of right femur +C2858337|T037|HT|S72.411|ICD10CM|Displaced unspecified condyle fracture of lower end of right femur|Displaced unspecified condyle fracture of lower end of right femur +C2858338|T037|AB|S72.411A|ICD10CM|Displaced unsp condyle fx lower end of right femur, init|Displaced unsp condyle fx lower end of right femur, init +C2858339|T037|AB|S72.411B|ICD10CM|Displ unsp condyle fx low end r femr, 7thB|Displ unsp condyle fx low end r femr, 7thB +C2858340|T037|AB|S72.411C|ICD10CM|Displ unsp condyle fx low end r femr, 7thC|Displ unsp condyle fx low end r femr, 7thC +C2858341|T037|AB|S72.411D|ICD10CM|Displ unsp condyle fx low end r femr, 7thD|Displ unsp condyle fx low end r femr, 7thD +C2858342|T037|AB|S72.411E|ICD10CM|Displ unsp condyle fx low end r femr, 7thE|Displ unsp condyle fx low end r femr, 7thE +C2858343|T037|AB|S72.411F|ICD10CM|Displ unsp condyle fx low end r femr, 7thF|Displ unsp condyle fx low end r femr, 7thF +C2858344|T037|AB|S72.411G|ICD10CM|Displ unsp condyle fx low end r femr, 7thG|Displ unsp condyle fx low end r femr, 7thG +C2858345|T037|AB|S72.411H|ICD10CM|Displ unsp condyle fx low end r femr, 7thH|Displ unsp condyle fx low end r femr, 7thH +C2858346|T037|AB|S72.411J|ICD10CM|Displ unsp condyle fx low end r femr, 7thJ|Displ unsp condyle fx low end r femr, 7thJ +C2858347|T037|AB|S72.411K|ICD10CM|Displ unsp condyle fx low end r femr, 7thK|Displ unsp condyle fx low end r femr, 7thK +C2858348|T037|AB|S72.411M|ICD10CM|Displ unsp condyle fx low end r femr, 7thM|Displ unsp condyle fx low end r femr, 7thM +C2858349|T037|AB|S72.411N|ICD10CM|Displ unsp condyle fx low end r femr, 7thN|Displ unsp condyle fx low end r femr, 7thN +C2858350|T037|AB|S72.411P|ICD10CM|Displ unsp condyle fx low end r femr, 7thP|Displ unsp condyle fx low end r femr, 7thP +C2858351|T037|AB|S72.411Q|ICD10CM|Displ unsp condyle fx low end r femr, 7thQ|Displ unsp condyle fx low end r femr, 7thQ +C2858352|T037|AB|S72.411R|ICD10CM|Displ unsp condyle fx low end r femr, 7thR|Displ unsp condyle fx low end r femr, 7thR +C2858353|T037|AB|S72.411S|ICD10CM|Displaced unsp condyle fx lower end of right femur, sequela|Displaced unsp condyle fx lower end of right femur, sequela +C2858353|T037|PT|S72.411S|ICD10CM|Displaced unspecified condyle fracture of lower end of right femur, sequela|Displaced unspecified condyle fracture of lower end of right femur, sequela +C2858354|T037|AB|S72.412|ICD10CM|Displaced unsp condyle fracture of lower end of left femur|Displaced unsp condyle fracture of lower end of left femur +C2858354|T037|HT|S72.412|ICD10CM|Displaced unspecified condyle fracture of lower end of left femur|Displaced unspecified condyle fracture of lower end of left femur +C2858355|T037|AB|S72.412A|ICD10CM|Displaced unsp condyle fx lower end of left femur, init|Displaced unsp condyle fx lower end of left femur, init +C2858356|T037|AB|S72.412B|ICD10CM|Displ unsp condyle fx low end l femr, 7thB|Displ unsp condyle fx low end l femr, 7thB +C2858357|T037|AB|S72.412C|ICD10CM|Displ unsp condyle fx low end l femr, 7thC|Displ unsp condyle fx low end l femr, 7thC +C2858358|T037|AB|S72.412D|ICD10CM|Displ unsp condyle fx low end l femr, 7thD|Displ unsp condyle fx low end l femr, 7thD +C2858359|T037|AB|S72.412E|ICD10CM|Displ unsp condyle fx low end l femr, 7thE|Displ unsp condyle fx low end l femr, 7thE +C2858360|T037|AB|S72.412F|ICD10CM|Displ unsp condyle fx low end l femr, 7thF|Displ unsp condyle fx low end l femr, 7thF +C2858361|T037|AB|S72.412G|ICD10CM|Displ unsp condyle fx low end l femr, 7thG|Displ unsp condyle fx low end l femr, 7thG +C2858362|T037|AB|S72.412H|ICD10CM|Displ unsp condyle fx low end l femr, 7thH|Displ unsp condyle fx low end l femr, 7thH +C2858363|T037|AB|S72.412J|ICD10CM|Displ unsp condyle fx low end l femr, 7thJ|Displ unsp condyle fx low end l femr, 7thJ +C2858364|T037|AB|S72.412K|ICD10CM|Displ unsp condyle fx low end l femr, 7thK|Displ unsp condyle fx low end l femr, 7thK +C2858365|T037|AB|S72.412M|ICD10CM|Displ unsp condyle fx low end l femr, 7thM|Displ unsp condyle fx low end l femr, 7thM +C2858366|T037|AB|S72.412N|ICD10CM|Displ unsp condyle fx low end l femr, 7thN|Displ unsp condyle fx low end l femr, 7thN +C2858367|T037|AB|S72.412P|ICD10CM|Displ unsp condyle fx low end l femr, 7thP|Displ unsp condyle fx low end l femr, 7thP +C2858368|T037|AB|S72.412Q|ICD10CM|Displ unsp condyle fx low end l femr, 7thQ|Displ unsp condyle fx low end l femr, 7thQ +C2858369|T037|AB|S72.412R|ICD10CM|Displ unsp condyle fx low end l femr, 7thR|Displ unsp condyle fx low end l femr, 7thR +C2858370|T037|AB|S72.412S|ICD10CM|Displaced unsp condyle fx lower end of left femur, sequela|Displaced unsp condyle fx lower end of left femur, sequela +C2858370|T037|PT|S72.412S|ICD10CM|Displaced unspecified condyle fracture of lower end of left femur, sequela|Displaced unspecified condyle fracture of lower end of left femur, sequela +C2858371|T037|AB|S72.413|ICD10CM|Displaced unsp condyle fracture of lower end of unsp femur|Displaced unsp condyle fracture of lower end of unsp femur +C2858371|T037|HT|S72.413|ICD10CM|Displaced unspecified condyle fracture of lower end of unspecified femur|Displaced unspecified condyle fracture of lower end of unspecified femur +C2858372|T037|AB|S72.413A|ICD10CM|Displaced unsp condyle fx lower end of unsp femur, init|Displaced unsp condyle fx lower end of unsp femur, init +C2858373|T037|AB|S72.413B|ICD10CM|Displ unsp condyle fx low end unsp femr, 7thB|Displ unsp condyle fx low end unsp femr, 7thB +C2858374|T037|AB|S72.413C|ICD10CM|Displ unsp condyle fx low end unsp femr, 7thC|Displ unsp condyle fx low end unsp femr, 7thC +C2858375|T037|AB|S72.413D|ICD10CM|Displ unsp condyle fx low end unsp femr, 7thD|Displ unsp condyle fx low end unsp femr, 7thD +C2858376|T037|AB|S72.413E|ICD10CM|Displ unsp condyle fx low end unsp femr, 7thE|Displ unsp condyle fx low end unsp femr, 7thE +C2858377|T037|AB|S72.413F|ICD10CM|Displ unsp condyle fx low end unsp femr, 7thF|Displ unsp condyle fx low end unsp femr, 7thF +C2858378|T037|AB|S72.413G|ICD10CM|Displ unsp condyle fx low end unsp femr, 7thG|Displ unsp condyle fx low end unsp femr, 7thG +C2858379|T037|AB|S72.413H|ICD10CM|Displ unsp condyle fx low end unsp femr, 7thH|Displ unsp condyle fx low end unsp femr, 7thH +C2858380|T037|AB|S72.413J|ICD10CM|Displ unsp condyle fx low end unsp femr, 7thJ|Displ unsp condyle fx low end unsp femr, 7thJ +C2858381|T037|AB|S72.413K|ICD10CM|Displ unsp condyle fx low end unsp femr, 7thK|Displ unsp condyle fx low end unsp femr, 7thK +C2858382|T037|AB|S72.413M|ICD10CM|Displ unsp condyle fx low end unsp femr, 7thM|Displ unsp condyle fx low end unsp femr, 7thM +C2858383|T037|AB|S72.413N|ICD10CM|Displ unsp condyle fx low end unsp femr, 7thN|Displ unsp condyle fx low end unsp femr, 7thN +C2858384|T037|AB|S72.413P|ICD10CM|Displ unsp condyle fx low end unsp femr, 7thP|Displ unsp condyle fx low end unsp femr, 7thP +C2858385|T037|AB|S72.413Q|ICD10CM|Displ unsp condyle fx low end unsp femr, 7thQ|Displ unsp condyle fx low end unsp femr, 7thQ +C2858386|T037|AB|S72.413R|ICD10CM|Displ unsp condyle fx low end unsp femr, 7thR|Displ unsp condyle fx low end unsp femr, 7thR +C2858387|T037|AB|S72.413S|ICD10CM|Displaced unsp condyle fx lower end of unsp femur, sequela|Displaced unsp condyle fx lower end of unsp femur, sequela +C2858387|T037|PT|S72.413S|ICD10CM|Displaced unspecified condyle fracture of lower end of unspecified femur, sequela|Displaced unspecified condyle fracture of lower end of unspecified femur, sequela +C2858388|T037|AB|S72.414|ICD10CM|Nondisp unsp condyle fracture of lower end of right femur|Nondisp unsp condyle fracture of lower end of right femur +C2858388|T037|HT|S72.414|ICD10CM|Nondisplaced unspecified condyle fracture of lower end of right femur|Nondisplaced unspecified condyle fracture of lower end of right femur +C2858389|T037|AB|S72.414A|ICD10CM|Nondisp unsp condyle fx lower end of right femur, init|Nondisp unsp condyle fx lower end of right femur, init +C2858390|T037|AB|S72.414B|ICD10CM|Nondisp unsp condyle fx low end r femr, 7thB|Nondisp unsp condyle fx low end r femr, 7thB +C2858391|T037|AB|S72.414C|ICD10CM|Nondisp unsp condyle fx low end r femr, 7thC|Nondisp unsp condyle fx low end r femr, 7thC +C2858392|T037|AB|S72.414D|ICD10CM|Nondisp unsp condyle fx low end r femr, 7thD|Nondisp unsp condyle fx low end r femr, 7thD +C2858393|T037|AB|S72.414E|ICD10CM|Nondisp unsp condyle fx low end r femr, 7thE|Nondisp unsp condyle fx low end r femr, 7thE +C2858394|T037|AB|S72.414F|ICD10CM|Nondisp unsp condyle fx low end r femr, 7thF|Nondisp unsp condyle fx low end r femr, 7thF +C2858395|T037|AB|S72.414G|ICD10CM|Nondisp unsp condyle fx low end r femr, 7thG|Nondisp unsp condyle fx low end r femr, 7thG +C2858396|T037|AB|S72.414H|ICD10CM|Nondisp unsp condyle fx low end r femr, 7thH|Nondisp unsp condyle fx low end r femr, 7thH +C2858397|T037|AB|S72.414J|ICD10CM|Nondisp unsp condyle fx low end r femr, 7thJ|Nondisp unsp condyle fx low end r femr, 7thJ +C2858398|T037|AB|S72.414K|ICD10CM|Nondisp unsp condyle fx low end r femr, 7thK|Nondisp unsp condyle fx low end r femr, 7thK +C2858399|T037|AB|S72.414M|ICD10CM|Nondisp unsp condyle fx low end r femr, 7thM|Nondisp unsp condyle fx low end r femr, 7thM +C2858400|T037|AB|S72.414N|ICD10CM|Nondisp unsp condyle fx low end r femr, 7thN|Nondisp unsp condyle fx low end r femr, 7thN +C2858401|T037|AB|S72.414P|ICD10CM|Nondisp unsp condyle fx low end r femr, 7thP|Nondisp unsp condyle fx low end r femr, 7thP +C2858402|T037|AB|S72.414Q|ICD10CM|Nondisp unsp condyle fx low end r femr, 7thQ|Nondisp unsp condyle fx low end r femr, 7thQ +C2858403|T037|AB|S72.414R|ICD10CM|Nondisp unsp condyle fx low end r femr, 7thR|Nondisp unsp condyle fx low end r femr, 7thR +C2858404|T037|AB|S72.414S|ICD10CM|Nondisp unsp condyle fx lower end of right femur, sequela|Nondisp unsp condyle fx lower end of right femur, sequela +C2858404|T037|PT|S72.414S|ICD10CM|Nondisplaced unspecified condyle fracture of lower end of right femur, sequela|Nondisplaced unspecified condyle fracture of lower end of right femur, sequela +C2858405|T037|AB|S72.415|ICD10CM|Nondisp unsp condyle fracture of lower end of left femur|Nondisp unsp condyle fracture of lower end of left femur +C2858405|T037|HT|S72.415|ICD10CM|Nondisplaced unspecified condyle fracture of lower end of left femur|Nondisplaced unspecified condyle fracture of lower end of left femur +C2858406|T037|AB|S72.415A|ICD10CM|Nondisp unsp condyle fx lower end of left femur, init|Nondisp unsp condyle fx lower end of left femur, init +C2858407|T037|AB|S72.415B|ICD10CM|Nondisp unsp condyle fx low end l femr, 7thB|Nondisp unsp condyle fx low end l femr, 7thB +C2858408|T037|AB|S72.415C|ICD10CM|Nondisp unsp condyle fx low end l femr, 7thC|Nondisp unsp condyle fx low end l femr, 7thC +C2858409|T037|AB|S72.415D|ICD10CM|Nondisp unsp condyle fx low end l femr, 7thD|Nondisp unsp condyle fx low end l femr, 7thD +C2858410|T037|AB|S72.415E|ICD10CM|Nondisp unsp condyle fx low end l femr, 7thE|Nondisp unsp condyle fx low end l femr, 7thE +C2858411|T037|AB|S72.415F|ICD10CM|Nondisp unsp condyle fx low end l femr, 7thF|Nondisp unsp condyle fx low end l femr, 7thF +C2858412|T037|AB|S72.415G|ICD10CM|Nondisp unsp condyle fx low end l femr, 7thG|Nondisp unsp condyle fx low end l femr, 7thG +C2858413|T037|AB|S72.415H|ICD10CM|Nondisp unsp condyle fx low end l femr, 7thH|Nondisp unsp condyle fx low end l femr, 7thH +C2858414|T037|AB|S72.415J|ICD10CM|Nondisp unsp condyle fx low end l femr, 7thJ|Nondisp unsp condyle fx low end l femr, 7thJ +C2858415|T037|AB|S72.415K|ICD10CM|Nondisp unsp condyle fx low end l femr, 7thK|Nondisp unsp condyle fx low end l femr, 7thK +C2858416|T037|AB|S72.415M|ICD10CM|Nondisp unsp condyle fx low end l femr, 7thM|Nondisp unsp condyle fx low end l femr, 7thM +C2858417|T037|AB|S72.415N|ICD10CM|Nondisp unsp condyle fx low end l femr, 7thN|Nondisp unsp condyle fx low end l femr, 7thN +C2858418|T037|AB|S72.415P|ICD10CM|Nondisp unsp condyle fx low end l femr, 7thP|Nondisp unsp condyle fx low end l femr, 7thP +C2858419|T037|AB|S72.415Q|ICD10CM|Nondisp unsp condyle fx low end l femr, 7thQ|Nondisp unsp condyle fx low end l femr, 7thQ +C2858420|T037|AB|S72.415R|ICD10CM|Nondisp unsp condyle fx low end l femr, 7thR|Nondisp unsp condyle fx low end l femr, 7thR +C2858421|T037|AB|S72.415S|ICD10CM|Nondisp unsp condyle fx lower end of left femur, sequela|Nondisp unsp condyle fx lower end of left femur, sequela +C2858421|T037|PT|S72.415S|ICD10CM|Nondisplaced unspecified condyle fracture of lower end of left femur, sequela|Nondisplaced unspecified condyle fracture of lower end of left femur, sequela +C2858422|T037|AB|S72.416|ICD10CM|Nondisp unsp condyle fracture of lower end of unsp femur|Nondisp unsp condyle fracture of lower end of unsp femur +C2858422|T037|HT|S72.416|ICD10CM|Nondisplaced unspecified condyle fracture of lower end of unspecified femur|Nondisplaced unspecified condyle fracture of lower end of unspecified femur +C2858423|T037|AB|S72.416A|ICD10CM|Nondisp unsp condyle fx lower end of unsp femur, init|Nondisp unsp condyle fx lower end of unsp femur, init +C2858424|T037|AB|S72.416B|ICD10CM|Nondisp unsp condyle fx low end unsp femr, 7thB|Nondisp unsp condyle fx low end unsp femr, 7thB +C2858425|T037|AB|S72.416C|ICD10CM|Nondisp unsp condyle fx low end unsp femr, 7thC|Nondisp unsp condyle fx low end unsp femr, 7thC +C2858426|T037|AB|S72.416D|ICD10CM|Nondisp unsp condyle fx low end unsp femr, 7thD|Nondisp unsp condyle fx low end unsp femr, 7thD +C2858427|T037|AB|S72.416E|ICD10CM|Nondisp unsp condyle fx low end unsp femr, 7thE|Nondisp unsp condyle fx low end unsp femr, 7thE +C2858428|T037|AB|S72.416F|ICD10CM|Nondisp unsp condyle fx low end unsp femr, 7thF|Nondisp unsp condyle fx low end unsp femr, 7thF +C2858429|T037|AB|S72.416G|ICD10CM|Nondisp unsp condyle fx low end unsp femr, 7thG|Nondisp unsp condyle fx low end unsp femr, 7thG +C2858430|T037|AB|S72.416H|ICD10CM|Nondisp unsp condyle fx low end unsp femr, 7thH|Nondisp unsp condyle fx low end unsp femr, 7thH +C2858431|T037|AB|S72.416J|ICD10CM|Nondisp unsp condyle fx low end unsp femr, 7thJ|Nondisp unsp condyle fx low end unsp femr, 7thJ +C2858432|T037|AB|S72.416K|ICD10CM|Nondisp unsp condyle fx low end unsp femr, 7thK|Nondisp unsp condyle fx low end unsp femr, 7thK +C2858433|T037|AB|S72.416M|ICD10CM|Nondisp unsp condyle fx low end unsp femr, 7thM|Nondisp unsp condyle fx low end unsp femr, 7thM +C2858434|T037|AB|S72.416N|ICD10CM|Nondisp unsp condyle fx low end unsp femr, 7thN|Nondisp unsp condyle fx low end unsp femr, 7thN +C2858435|T037|AB|S72.416P|ICD10CM|Nondisp unsp condyle fx low end unsp femr, 7thP|Nondisp unsp condyle fx low end unsp femr, 7thP +C2858436|T037|AB|S72.416Q|ICD10CM|Nondisp unsp condyle fx low end unsp femr, 7thQ|Nondisp unsp condyle fx low end unsp femr, 7thQ +C2858437|T037|AB|S72.416R|ICD10CM|Nondisp unsp condyle fx low end unsp femr, 7thR|Nondisp unsp condyle fx low end unsp femr, 7thR +C2858438|T037|AB|S72.416S|ICD10CM|Nondisp unsp condyle fx lower end of unsp femur, sequela|Nondisp unsp condyle fx lower end of unsp femur, sequela +C2858438|T037|PT|S72.416S|ICD10CM|Nondisplaced unspecified condyle fracture of lower end of unspecified femur, sequela|Nondisplaced unspecified condyle fracture of lower end of unspecified femur, sequela +C0743872|T037|AB|S72.42|ICD10CM|Fracture of lateral condyle of femur|Fracture of lateral condyle of femur +C0743872|T037|HT|S72.42|ICD10CM|Fracture of lateral condyle of femur|Fracture of lateral condyle of femur +C2858439|T037|AB|S72.421|ICD10CM|Displaced fracture of lateral condyle of right femur|Displaced fracture of lateral condyle of right femur +C2858439|T037|HT|S72.421|ICD10CM|Displaced fracture of lateral condyle of right femur|Displaced fracture of lateral condyle of right femur +C2858440|T037|AB|S72.421A|ICD10CM|Disp fx of lateral condyle of right femur, init for clos fx|Disp fx of lateral condyle of right femur, init for clos fx +C2858440|T037|PT|S72.421A|ICD10CM|Displaced fracture of lateral condyle of right femur, initial encounter for closed fracture|Displaced fracture of lateral condyle of right femur, initial encounter for closed fracture +C2858441|T037|AB|S72.421B|ICD10CM|Disp fx of lateral condyle of r femr, 7thB|Disp fx of lateral condyle of r femr, 7thB +C2858442|T037|AB|S72.421C|ICD10CM|Disp fx of lateral condyle of r femr, 7thC|Disp fx of lateral condyle of r femr, 7thC +C2858443|T037|AB|S72.421D|ICD10CM|Disp fx of lateral condyle of r femr, 7thD|Disp fx of lateral condyle of r femr, 7thD +C2858444|T037|AB|S72.421E|ICD10CM|Disp fx of lateral condyle of r femr, 7thE|Disp fx of lateral condyle of r femr, 7thE +C2858445|T037|AB|S72.421F|ICD10CM|Disp fx of lateral condyle of r femr, 7thF|Disp fx of lateral condyle of r femr, 7thF +C2858446|T037|AB|S72.421G|ICD10CM|Disp fx of lateral condyle of r femr, 7thG|Disp fx of lateral condyle of r femr, 7thG +C2858447|T037|AB|S72.421H|ICD10CM|Disp fx of lateral condyle of r femr, 7thH|Disp fx of lateral condyle of r femr, 7thH +C2858448|T037|AB|S72.421J|ICD10CM|Disp fx of lateral condyle of r femr, 7thJ|Disp fx of lateral condyle of r femr, 7thJ +C2858449|T037|AB|S72.421K|ICD10CM|Disp fx of lateral condyle of r femr, 7thK|Disp fx of lateral condyle of r femr, 7thK +C2858450|T037|AB|S72.421M|ICD10CM|Disp fx of lateral condyle of r femr, 7thM|Disp fx of lateral condyle of r femr, 7thM +C2858451|T037|AB|S72.421N|ICD10CM|Disp fx of lateral condyle of r femr, 7thN|Disp fx of lateral condyle of r femr, 7thN +C2858452|T037|AB|S72.421P|ICD10CM|Disp fx of lateral condyle of r femr, 7thP|Disp fx of lateral condyle of r femr, 7thP +C2858453|T037|AB|S72.421Q|ICD10CM|Disp fx of lateral condyle of r femr, 7thQ|Disp fx of lateral condyle of r femr, 7thQ +C2858454|T037|AB|S72.421R|ICD10CM|Disp fx of lateral condyle of r femr, 7thR|Disp fx of lateral condyle of r femr, 7thR +C2858455|T037|AB|S72.421S|ICD10CM|Disp fx of lateral condyle of right femur, sequela|Disp fx of lateral condyle of right femur, sequela +C2858455|T037|PT|S72.421S|ICD10CM|Displaced fracture of lateral condyle of right femur, sequela|Displaced fracture of lateral condyle of right femur, sequela +C2858456|T037|AB|S72.422|ICD10CM|Displaced fracture of lateral condyle of left femur|Displaced fracture of lateral condyle of left femur +C2858456|T037|HT|S72.422|ICD10CM|Displaced fracture of lateral condyle of left femur|Displaced fracture of lateral condyle of left femur +C2858457|T037|AB|S72.422A|ICD10CM|Disp fx of lateral condyle of left femur, init for clos fx|Disp fx of lateral condyle of left femur, init for clos fx +C2858457|T037|PT|S72.422A|ICD10CM|Displaced fracture of lateral condyle of left femur, initial encounter for closed fracture|Displaced fracture of lateral condyle of left femur, initial encounter for closed fracture +C2858458|T037|AB|S72.422B|ICD10CM|Disp fx of lateral condyle of l femr, 7thB|Disp fx of lateral condyle of l femr, 7thB +C2858459|T037|AB|S72.422C|ICD10CM|Disp fx of lateral condyle of l femr, 7thC|Disp fx of lateral condyle of l femr, 7thC +C2858460|T037|AB|S72.422D|ICD10CM|Disp fx of lateral condyle of l femr, 7thD|Disp fx of lateral condyle of l femr, 7thD +C2858461|T037|AB|S72.422E|ICD10CM|Disp fx of lateral condyle of l femr, 7thE|Disp fx of lateral condyle of l femr, 7thE +C2858462|T037|AB|S72.422F|ICD10CM|Disp fx of lateral condyle of l femr, 7thF|Disp fx of lateral condyle of l femr, 7thF +C2858463|T037|AB|S72.422G|ICD10CM|Disp fx of lateral condyle of l femr, 7thG|Disp fx of lateral condyle of l femr, 7thG +C2858464|T037|AB|S72.422H|ICD10CM|Disp fx of lateral condyle of l femr, 7thH|Disp fx of lateral condyle of l femr, 7thH +C2858465|T037|AB|S72.422J|ICD10CM|Disp fx of lateral condyle of l femr, 7thJ|Disp fx of lateral condyle of l femr, 7thJ +C2858466|T037|AB|S72.422K|ICD10CM|Disp fx of lateral condyle of l femr, 7thK|Disp fx of lateral condyle of l femr, 7thK +C2858467|T037|AB|S72.422M|ICD10CM|Disp fx of lateral condyle of l femr, 7thM|Disp fx of lateral condyle of l femr, 7thM +C2858468|T037|AB|S72.422N|ICD10CM|Disp fx of lateral condyle of l femr, 7thN|Disp fx of lateral condyle of l femr, 7thN +C2858469|T037|AB|S72.422P|ICD10CM|Disp fx of lateral condyle of l femr, 7thP|Disp fx of lateral condyle of l femr, 7thP +C2858470|T037|AB|S72.422Q|ICD10CM|Disp fx of lateral condyle of l femr, 7thQ|Disp fx of lateral condyle of l femr, 7thQ +C2858471|T037|AB|S72.422R|ICD10CM|Disp fx of lateral condyle of l femr, 7thR|Disp fx of lateral condyle of l femr, 7thR +C2858472|T037|AB|S72.422S|ICD10CM|Displaced fracture of lateral condyle of left femur, sequela|Displaced fracture of lateral condyle of left femur, sequela +C2858472|T037|PT|S72.422S|ICD10CM|Displaced fracture of lateral condyle of left femur, sequela|Displaced fracture of lateral condyle of left femur, sequela +C2858473|T037|AB|S72.423|ICD10CM|Displaced fracture of lateral condyle of unspecified femur|Displaced fracture of lateral condyle of unspecified femur +C2858473|T037|HT|S72.423|ICD10CM|Displaced fracture of lateral condyle of unspecified femur|Displaced fracture of lateral condyle of unspecified femur +C2858474|T037|AB|S72.423A|ICD10CM|Disp fx of lateral condyle of unsp femur, init for clos fx|Disp fx of lateral condyle of unsp femur, init for clos fx +C2858474|T037|PT|S72.423A|ICD10CM|Displaced fracture of lateral condyle of unspecified femur, initial encounter for closed fracture|Displaced fracture of lateral condyle of unspecified femur, initial encounter for closed fracture +C2858475|T037|AB|S72.423B|ICD10CM|Disp fx of lateral condyle of unsp femr, 7thB|Disp fx of lateral condyle of unsp femr, 7thB +C2858476|T037|AB|S72.423C|ICD10CM|Disp fx of lateral condyle of unsp femr, 7thC|Disp fx of lateral condyle of unsp femr, 7thC +C2858477|T037|AB|S72.423D|ICD10CM|Disp fx of lateral condyle of unsp femr, 7thD|Disp fx of lateral condyle of unsp femr, 7thD +C2858478|T037|AB|S72.423E|ICD10CM|Disp fx of lateral condyle of unsp femr, 7thE|Disp fx of lateral condyle of unsp femr, 7thE +C2858479|T037|AB|S72.423F|ICD10CM|Disp fx of lateral condyle of unsp femr, 7thF|Disp fx of lateral condyle of unsp femr, 7thF +C2858480|T037|AB|S72.423G|ICD10CM|Disp fx of lateral condyle of unsp femr, 7thG|Disp fx of lateral condyle of unsp femr, 7thG +C2858481|T037|AB|S72.423H|ICD10CM|Disp fx of lateral condyle of unsp femr, 7thH|Disp fx of lateral condyle of unsp femr, 7thH +C2858482|T037|AB|S72.423J|ICD10CM|Disp fx of lateral condyle of unsp femr, 7thJ|Disp fx of lateral condyle of unsp femr, 7thJ +C2858483|T037|AB|S72.423K|ICD10CM|Disp fx of lateral condyle of unsp femr, 7thK|Disp fx of lateral condyle of unsp femr, 7thK +C2858484|T037|AB|S72.423M|ICD10CM|Disp fx of lateral condyle of unsp femr, 7thM|Disp fx of lateral condyle of unsp femr, 7thM +C2858485|T037|AB|S72.423N|ICD10CM|Disp fx of lateral condyle of unsp femr, 7thN|Disp fx of lateral condyle of unsp femr, 7thN +C2858486|T037|AB|S72.423P|ICD10CM|Disp fx of lateral condyle of unsp femr, 7thP|Disp fx of lateral condyle of unsp femr, 7thP +C2858487|T037|AB|S72.423Q|ICD10CM|Disp fx of lateral condyle of unsp femr, 7thQ|Disp fx of lateral condyle of unsp femr, 7thQ +C2858488|T037|AB|S72.423R|ICD10CM|Disp fx of lateral condyle of unsp femr, 7thR|Disp fx of lateral condyle of unsp femr, 7thR +C2858489|T037|AB|S72.423S|ICD10CM|Disp fx of lateral condyle of unspecified femur, sequela|Disp fx of lateral condyle of unspecified femur, sequela +C2858489|T037|PT|S72.423S|ICD10CM|Displaced fracture of lateral condyle of unspecified femur, sequela|Displaced fracture of lateral condyle of unspecified femur, sequela +C2858490|T037|AB|S72.424|ICD10CM|Nondisplaced fracture of lateral condyle of right femur|Nondisplaced fracture of lateral condyle of right femur +C2858490|T037|HT|S72.424|ICD10CM|Nondisplaced fracture of lateral condyle of right femur|Nondisplaced fracture of lateral condyle of right femur +C2858491|T037|AB|S72.424A|ICD10CM|Nondisp fx of lateral condyle of right femur, init|Nondisp fx of lateral condyle of right femur, init +C2858491|T037|PT|S72.424A|ICD10CM|Nondisplaced fracture of lateral condyle of right femur, initial encounter for closed fracture|Nondisplaced fracture of lateral condyle of right femur, initial encounter for closed fracture +C2858492|T037|AB|S72.424B|ICD10CM|Nondisp fx of lateral condyle of r femr, 7thB|Nondisp fx of lateral condyle of r femr, 7thB +C2858493|T037|AB|S72.424C|ICD10CM|Nondisp fx of lateral condyle of r femr, 7thC|Nondisp fx of lateral condyle of r femr, 7thC +C2858494|T037|AB|S72.424D|ICD10CM|Nondisp fx of lateral condyle of r femr, 7thD|Nondisp fx of lateral condyle of r femr, 7thD +C2858495|T037|AB|S72.424E|ICD10CM|Nondisp fx of lateral condyle of r femr, 7thE|Nondisp fx of lateral condyle of r femr, 7thE +C2858496|T037|AB|S72.424F|ICD10CM|Nondisp fx of lateral condyle of r femr, 7thF|Nondisp fx of lateral condyle of r femr, 7thF +C2858497|T037|AB|S72.424G|ICD10CM|Nondisp fx of lateral condyle of r femr, 7thG|Nondisp fx of lateral condyle of r femr, 7thG +C2858498|T037|AB|S72.424H|ICD10CM|Nondisp fx of lateral condyle of r femr, 7thH|Nondisp fx of lateral condyle of r femr, 7thH +C2858499|T037|AB|S72.424J|ICD10CM|Nondisp fx of lateral condyle of r femr, 7thJ|Nondisp fx of lateral condyle of r femr, 7thJ +C2858500|T037|AB|S72.424K|ICD10CM|Nondisp fx of lateral condyle of r femr, 7thK|Nondisp fx of lateral condyle of r femr, 7thK +C2858501|T037|AB|S72.424M|ICD10CM|Nondisp fx of lateral condyle of r femr, 7thM|Nondisp fx of lateral condyle of r femr, 7thM +C2858502|T037|AB|S72.424N|ICD10CM|Nondisp fx of lateral condyle of r femr, 7thN|Nondisp fx of lateral condyle of r femr, 7thN +C2858503|T037|AB|S72.424P|ICD10CM|Nondisp fx of lateral condyle of r femr, 7thP|Nondisp fx of lateral condyle of r femr, 7thP +C2858504|T037|AB|S72.424Q|ICD10CM|Nondisp fx of lateral condyle of r femr, 7thQ|Nondisp fx of lateral condyle of r femr, 7thQ +C2858505|T037|AB|S72.424R|ICD10CM|Nondisp fx of lateral condyle of r femr, 7thR|Nondisp fx of lateral condyle of r femr, 7thR +C2858506|T037|AB|S72.424S|ICD10CM|Nondisp fx of lateral condyle of right femur, sequela|Nondisp fx of lateral condyle of right femur, sequela +C2858506|T037|PT|S72.424S|ICD10CM|Nondisplaced fracture of lateral condyle of right femur, sequela|Nondisplaced fracture of lateral condyle of right femur, sequela +C2858507|T037|AB|S72.425|ICD10CM|Nondisplaced fracture of lateral condyle of left femur|Nondisplaced fracture of lateral condyle of left femur +C2858507|T037|HT|S72.425|ICD10CM|Nondisplaced fracture of lateral condyle of left femur|Nondisplaced fracture of lateral condyle of left femur +C2858508|T037|AB|S72.425A|ICD10CM|Nondisp fx of lateral condyle of left femur, init|Nondisp fx of lateral condyle of left femur, init +C2858508|T037|PT|S72.425A|ICD10CM|Nondisplaced fracture of lateral condyle of left femur, initial encounter for closed fracture|Nondisplaced fracture of lateral condyle of left femur, initial encounter for closed fracture +C2858509|T037|AB|S72.425B|ICD10CM|Nondisp fx of lateral condyle of l femr, 7thB|Nondisp fx of lateral condyle of l femr, 7thB +C2858510|T037|AB|S72.425C|ICD10CM|Nondisp fx of lateral condyle of l femr, 7thC|Nondisp fx of lateral condyle of l femr, 7thC +C2858511|T037|AB|S72.425D|ICD10CM|Nondisp fx of lateral condyle of l femr, 7thD|Nondisp fx of lateral condyle of l femr, 7thD +C2858512|T037|AB|S72.425E|ICD10CM|Nondisp fx of lateral condyle of l femr, 7thE|Nondisp fx of lateral condyle of l femr, 7thE +C2858513|T037|AB|S72.425F|ICD10CM|Nondisp fx of lateral condyle of l femr, 7thF|Nondisp fx of lateral condyle of l femr, 7thF +C2858514|T037|AB|S72.425G|ICD10CM|Nondisp fx of lateral condyle of l femr, 7thG|Nondisp fx of lateral condyle of l femr, 7thG +C2858515|T037|AB|S72.425H|ICD10CM|Nondisp fx of lateral condyle of l femr, 7thH|Nondisp fx of lateral condyle of l femr, 7thH +C2858516|T037|AB|S72.425J|ICD10CM|Nondisp fx of lateral condyle of l femr, 7thJ|Nondisp fx of lateral condyle of l femr, 7thJ +C2858517|T037|AB|S72.425K|ICD10CM|Nondisp fx of lateral condyle of l femr, 7thK|Nondisp fx of lateral condyle of l femr, 7thK +C2858518|T037|AB|S72.425M|ICD10CM|Nondisp fx of lateral condyle of l femr, 7thM|Nondisp fx of lateral condyle of l femr, 7thM +C2858519|T037|AB|S72.425N|ICD10CM|Nondisp fx of lateral condyle of l femr, 7thN|Nondisp fx of lateral condyle of l femr, 7thN +C2858520|T037|AB|S72.425P|ICD10CM|Nondisp fx of lateral condyle of l femr, 7thP|Nondisp fx of lateral condyle of l femr, 7thP +C2858521|T037|AB|S72.425Q|ICD10CM|Nondisp fx of lateral condyle of l femr, 7thQ|Nondisp fx of lateral condyle of l femr, 7thQ +C2858522|T037|AB|S72.425R|ICD10CM|Nondisp fx of lateral condyle of l femr, 7thR|Nondisp fx of lateral condyle of l femr, 7thR +C2858523|T037|AB|S72.425S|ICD10CM|Nondisp fx of lateral condyle of left femur, sequela|Nondisp fx of lateral condyle of left femur, sequela +C2858523|T037|PT|S72.425S|ICD10CM|Nondisplaced fracture of lateral condyle of left femur, sequela|Nondisplaced fracture of lateral condyle of left femur, sequela +C2858524|T037|AB|S72.426|ICD10CM|Nondisp fx of lateral condyle of unspecified femur|Nondisp fx of lateral condyle of unspecified femur +C2858524|T037|HT|S72.426|ICD10CM|Nondisplaced fracture of lateral condyle of unspecified femur|Nondisplaced fracture of lateral condyle of unspecified femur +C2858525|T037|AB|S72.426A|ICD10CM|Nondisp fx of lateral condyle of unsp femur, init|Nondisp fx of lateral condyle of unsp femur, init +C2858525|T037|PT|S72.426A|ICD10CM|Nondisplaced fracture of lateral condyle of unspecified femur, initial encounter for closed fracture|Nondisplaced fracture of lateral condyle of unspecified femur, initial encounter for closed fracture +C2858526|T037|AB|S72.426B|ICD10CM|Nondisp fx of lateral condyle of unsp femr, 7thB|Nondisp fx of lateral condyle of unsp femr, 7thB +C2858527|T037|AB|S72.426C|ICD10CM|Nondisp fx of lateral condyle of unsp femr, 7thC|Nondisp fx of lateral condyle of unsp femr, 7thC +C2858528|T037|AB|S72.426D|ICD10CM|Nondisp fx of lateral condyle of unsp femr, 7thD|Nondisp fx of lateral condyle of unsp femr, 7thD +C2858529|T037|AB|S72.426E|ICD10CM|Nondisp fx of lateral condyle of unsp femr, 7thE|Nondisp fx of lateral condyle of unsp femr, 7thE +C2858530|T037|AB|S72.426F|ICD10CM|Nondisp fx of lateral condyle of unsp femr, 7thF|Nondisp fx of lateral condyle of unsp femr, 7thF +C2858531|T037|AB|S72.426G|ICD10CM|Nondisp fx of lateral condyle of unsp femr, 7thG|Nondisp fx of lateral condyle of unsp femr, 7thG +C2858532|T037|AB|S72.426H|ICD10CM|Nondisp fx of lateral condyle of unsp femr, 7thH|Nondisp fx of lateral condyle of unsp femr, 7thH +C2858533|T037|AB|S72.426J|ICD10CM|Nondisp fx of lateral condyle of unsp femr, 7thJ|Nondisp fx of lateral condyle of unsp femr, 7thJ +C2858534|T037|AB|S72.426K|ICD10CM|Nondisp fx of lateral condyle of unsp femr, 7thK|Nondisp fx of lateral condyle of unsp femr, 7thK +C2858535|T037|AB|S72.426M|ICD10CM|Nondisp fx of lateral condyle of unsp femr, 7thM|Nondisp fx of lateral condyle of unsp femr, 7thM +C2858536|T037|AB|S72.426N|ICD10CM|Nondisp fx of lateral condyle of unsp femr, 7thN|Nondisp fx of lateral condyle of unsp femr, 7thN +C2858537|T037|AB|S72.426P|ICD10CM|Nondisp fx of lateral condyle of unsp femr, 7thP|Nondisp fx of lateral condyle of unsp femr, 7thP +C2858538|T037|AB|S72.426Q|ICD10CM|Nondisp fx of lateral condyle of unsp femr, 7thQ|Nondisp fx of lateral condyle of unsp femr, 7thQ +C2858539|T037|AB|S72.426R|ICD10CM|Nondisp fx of lateral condyle of unsp femr, 7thR|Nondisp fx of lateral condyle of unsp femr, 7thR +C2858540|T037|AB|S72.426S|ICD10CM|Nondisp fx of lateral condyle of unspecified femur, sequela|Nondisp fx of lateral condyle of unspecified femur, sequela +C2858540|T037|PT|S72.426S|ICD10CM|Nondisplaced fracture of lateral condyle of unspecified femur, sequela|Nondisplaced fracture of lateral condyle of unspecified femur, sequela +C0743874|T037|AB|S72.43|ICD10CM|Fracture of medial condyle of femur|Fracture of medial condyle of femur +C0743874|T037|HT|S72.43|ICD10CM|Fracture of medial condyle of femur|Fracture of medial condyle of femur +C2858541|T037|AB|S72.431|ICD10CM|Displaced fracture of medial condyle of right femur|Displaced fracture of medial condyle of right femur +C2858541|T037|HT|S72.431|ICD10CM|Displaced fracture of medial condyle of right femur|Displaced fracture of medial condyle of right femur +C2858542|T037|AB|S72.431A|ICD10CM|Disp fx of medial condyle of right femur, init for clos fx|Disp fx of medial condyle of right femur, init for clos fx +C2858542|T037|PT|S72.431A|ICD10CM|Displaced fracture of medial condyle of right femur, initial encounter for closed fracture|Displaced fracture of medial condyle of right femur, initial encounter for closed fracture +C2858543|T037|AB|S72.431B|ICD10CM|Disp fx of med condyle of r femur, init for opn fx type I/2|Disp fx of med condyle of r femur, init for opn fx type I/2 +C2858544|T037|AB|S72.431C|ICD10CM|Disp fx of med condyle of r femr, 7thC|Disp fx of med condyle of r femr, 7thC +C2858545|T037|AB|S72.431D|ICD10CM|Disp fx of med condyle of r femr, 7thD|Disp fx of med condyle of r femr, 7thD +C2858546|T037|AB|S72.431E|ICD10CM|Disp fx of med condyle of r femr, 7thE|Disp fx of med condyle of r femr, 7thE +C2858547|T037|AB|S72.431F|ICD10CM|Disp fx of med condyle of r femr, 7thF|Disp fx of med condyle of r femr, 7thF +C2858548|T037|AB|S72.431G|ICD10CM|Disp fx of med condyle of r femr, 7thG|Disp fx of med condyle of r femr, 7thG +C2858549|T037|AB|S72.431H|ICD10CM|Disp fx of med condyle of r femr, 7thH|Disp fx of med condyle of r femr, 7thH +C2858550|T037|AB|S72.431J|ICD10CM|Disp fx of med condyle of r femr, 7thJ|Disp fx of med condyle of r femr, 7thJ +C2858551|T037|AB|S72.431K|ICD10CM|Disp fx of med condyle of r femr, 7thK|Disp fx of med condyle of r femr, 7thK +C2858552|T037|AB|S72.431M|ICD10CM|Disp fx of med condyle of r femr, 7thM|Disp fx of med condyle of r femr, 7thM +C2858553|T037|AB|S72.431N|ICD10CM|Disp fx of med condyle of r femr, 7thN|Disp fx of med condyle of r femr, 7thN +C2858554|T037|AB|S72.431P|ICD10CM|Disp fx of med condyle of r femr, 7thP|Disp fx of med condyle of r femr, 7thP +C2858555|T037|AB|S72.431Q|ICD10CM|Disp fx of med condyle of r femr, 7thQ|Disp fx of med condyle of r femr, 7thQ +C2858556|T037|AB|S72.431R|ICD10CM|Disp fx of med condyle of r femr, 7thR|Disp fx of med condyle of r femr, 7thR +C2858557|T037|AB|S72.431S|ICD10CM|Displaced fracture of medial condyle of right femur, sequela|Displaced fracture of medial condyle of right femur, sequela +C2858557|T037|PT|S72.431S|ICD10CM|Displaced fracture of medial condyle of right femur, sequela|Displaced fracture of medial condyle of right femur, sequela +C2858558|T037|AB|S72.432|ICD10CM|Displaced fracture of medial condyle of left femur|Displaced fracture of medial condyle of left femur +C2858558|T037|HT|S72.432|ICD10CM|Displaced fracture of medial condyle of left femur|Displaced fracture of medial condyle of left femur +C2858559|T037|AB|S72.432A|ICD10CM|Disp fx of medial condyle of left femur, init for clos fx|Disp fx of medial condyle of left femur, init for clos fx +C2858559|T037|PT|S72.432A|ICD10CM|Displaced fracture of medial condyle of left femur, initial encounter for closed fracture|Displaced fracture of medial condyle of left femur, initial encounter for closed fracture +C2858560|T037|AB|S72.432B|ICD10CM|Disp fx of med condyle of l femur, init for opn fx type I/2|Disp fx of med condyle of l femur, init for opn fx type I/2 +C2858560|T037|PT|S72.432B|ICD10CM|Displaced fracture of medial condyle of left femur, initial encounter for open fracture type I or II|Displaced fracture of medial condyle of left femur, initial encounter for open fracture type I or II +C2858561|T037|AB|S72.432C|ICD10CM|Disp fx of med condyle of l femr, 7thC|Disp fx of med condyle of l femr, 7thC +C2858562|T037|AB|S72.432D|ICD10CM|Disp fx of med condyle of l femr, 7thD|Disp fx of med condyle of l femr, 7thD +C2858563|T037|AB|S72.432E|ICD10CM|Disp fx of med condyle of l femr, 7thE|Disp fx of med condyle of l femr, 7thE +C2858564|T037|AB|S72.432F|ICD10CM|Disp fx of med condyle of l femr, 7thF|Disp fx of med condyle of l femr, 7thF +C2858565|T037|AB|S72.432G|ICD10CM|Disp fx of med condyle of l femr, 7thG|Disp fx of med condyle of l femr, 7thG +C2858566|T037|AB|S72.432H|ICD10CM|Disp fx of med condyle of l femr, 7thH|Disp fx of med condyle of l femr, 7thH +C2858567|T037|AB|S72.432J|ICD10CM|Disp fx of med condyle of l femr, 7thJ|Disp fx of med condyle of l femr, 7thJ +C2858568|T037|AB|S72.432K|ICD10CM|Disp fx of med condyle of l femr, 7thK|Disp fx of med condyle of l femr, 7thK +C2858569|T037|AB|S72.432M|ICD10CM|Disp fx of med condyle of l femr, 7thM|Disp fx of med condyle of l femr, 7thM +C2858570|T037|AB|S72.432N|ICD10CM|Disp fx of med condyle of l femr, 7thN|Disp fx of med condyle of l femr, 7thN +C2858571|T037|AB|S72.432P|ICD10CM|Disp fx of med condyle of l femr, 7thP|Disp fx of med condyle of l femr, 7thP +C2858572|T037|AB|S72.432Q|ICD10CM|Disp fx of med condyle of l femr, 7thQ|Disp fx of med condyle of l femr, 7thQ +C2858573|T037|AB|S72.432R|ICD10CM|Disp fx of med condyle of l femr, 7thR|Disp fx of med condyle of l femr, 7thR +C2858574|T037|PT|S72.432S|ICD10CM|Displaced fracture of medial condyle of left femur, sequela|Displaced fracture of medial condyle of left femur, sequela +C2858574|T037|AB|S72.432S|ICD10CM|Displaced fracture of medial condyle of left femur, sequela|Displaced fracture of medial condyle of left femur, sequela +C2858575|T037|AB|S72.433|ICD10CM|Displaced fracture of medial condyle of unspecified femur|Displaced fracture of medial condyle of unspecified femur +C2858575|T037|HT|S72.433|ICD10CM|Displaced fracture of medial condyle of unspecified femur|Displaced fracture of medial condyle of unspecified femur +C2858576|T037|AB|S72.433A|ICD10CM|Disp fx of medial condyle of unsp femur, init for clos fx|Disp fx of medial condyle of unsp femur, init for clos fx +C2858576|T037|PT|S72.433A|ICD10CM|Displaced fracture of medial condyle of unspecified femur, initial encounter for closed fracture|Displaced fracture of medial condyle of unspecified femur, initial encounter for closed fracture +C2858577|T037|AB|S72.433B|ICD10CM|Disp fx of med condyle of unsp femr, 7thB|Disp fx of med condyle of unsp femr, 7thB +C2858578|T037|AB|S72.433C|ICD10CM|Disp fx of med condyle of unsp femr, 7thC|Disp fx of med condyle of unsp femr, 7thC +C2858579|T037|AB|S72.433D|ICD10CM|Disp fx of med condyle of unsp femr, 7thD|Disp fx of med condyle of unsp femr, 7thD +C2858580|T037|AB|S72.433E|ICD10CM|Disp fx of med condyle of unsp femr, 7thE|Disp fx of med condyle of unsp femr, 7thE +C2858581|T037|AB|S72.433F|ICD10CM|Disp fx of med condyle of unsp femr, 7thF|Disp fx of med condyle of unsp femr, 7thF +C2858582|T037|AB|S72.433G|ICD10CM|Disp fx of med condyle of unsp femr, 7thG|Disp fx of med condyle of unsp femr, 7thG +C2858583|T037|AB|S72.433H|ICD10CM|Disp fx of med condyle of unsp femr, 7thH|Disp fx of med condyle of unsp femr, 7thH +C2858584|T037|AB|S72.433J|ICD10CM|Disp fx of med condyle of unsp femr, 7thJ|Disp fx of med condyle of unsp femr, 7thJ +C2858585|T037|AB|S72.433K|ICD10CM|Disp fx of med condyle of unsp femr, 7thK|Disp fx of med condyle of unsp femr, 7thK +C2858586|T037|AB|S72.433M|ICD10CM|Disp fx of med condyle of unsp femr, 7thM|Disp fx of med condyle of unsp femr, 7thM +C2858587|T037|AB|S72.433N|ICD10CM|Disp fx of med condyle of unsp femr, 7thN|Disp fx of med condyle of unsp femr, 7thN +C2858588|T037|AB|S72.433P|ICD10CM|Disp fx of med condyle of unsp femr, 7thP|Disp fx of med condyle of unsp femr, 7thP +C2858589|T037|AB|S72.433Q|ICD10CM|Disp fx of med condyle of unsp femr, 7thQ|Disp fx of med condyle of unsp femr, 7thQ +C2858590|T037|AB|S72.433R|ICD10CM|Disp fx of med condyle of unsp femr, 7thR|Disp fx of med condyle of unsp femr, 7thR +C2858591|T037|AB|S72.433S|ICD10CM|Disp fx of medial condyle of unspecified femur, sequela|Disp fx of medial condyle of unspecified femur, sequela +C2858591|T037|PT|S72.433S|ICD10CM|Displaced fracture of medial condyle of unspecified femur, sequela|Displaced fracture of medial condyle of unspecified femur, sequela +C2858592|T037|AB|S72.434|ICD10CM|Nondisplaced fracture of medial condyle of right femur|Nondisplaced fracture of medial condyle of right femur +C2858592|T037|HT|S72.434|ICD10CM|Nondisplaced fracture of medial condyle of right femur|Nondisplaced fracture of medial condyle of right femur +C2858593|T037|AB|S72.434A|ICD10CM|Nondisp fx of medial condyle of right femur, init|Nondisp fx of medial condyle of right femur, init +C2858593|T037|PT|S72.434A|ICD10CM|Nondisplaced fracture of medial condyle of right femur, initial encounter for closed fracture|Nondisplaced fracture of medial condyle of right femur, initial encounter for closed fracture +C2858594|T037|AB|S72.434B|ICD10CM|Nondisp fx of med condyle of r femr, 7thB|Nondisp fx of med condyle of r femr, 7thB +C2858595|T037|AB|S72.434C|ICD10CM|Nondisp fx of med condyle of r femr, 7thC|Nondisp fx of med condyle of r femr, 7thC +C2858596|T037|AB|S72.434D|ICD10CM|Nondisp fx of med condyle of r femr, 7thD|Nondisp fx of med condyle of r femr, 7thD +C2858597|T037|AB|S72.434E|ICD10CM|Nondisp fx of med condyle of r femr, 7thE|Nondisp fx of med condyle of r femr, 7thE +C2858598|T037|AB|S72.434F|ICD10CM|Nondisp fx of med condyle of r femr, 7thF|Nondisp fx of med condyle of r femr, 7thF +C2858599|T037|AB|S72.434G|ICD10CM|Nondisp fx of med condyle of r femr, 7thG|Nondisp fx of med condyle of r femr, 7thG +C2858600|T037|AB|S72.434H|ICD10CM|Nondisp fx of med condyle of r femr, 7thH|Nondisp fx of med condyle of r femr, 7thH +C2858601|T037|AB|S72.434J|ICD10CM|Nondisp fx of med condyle of r femr, 7thJ|Nondisp fx of med condyle of r femr, 7thJ +C2858602|T037|AB|S72.434K|ICD10CM|Nondisp fx of med condyle of r femr, 7thK|Nondisp fx of med condyle of r femr, 7thK +C2858603|T037|AB|S72.434M|ICD10CM|Nondisp fx of med condyle of r femr, 7thM|Nondisp fx of med condyle of r femr, 7thM +C2858604|T037|AB|S72.434N|ICD10CM|Nondisp fx of med condyle of r femr, 7thN|Nondisp fx of med condyle of r femr, 7thN +C2858605|T037|AB|S72.434P|ICD10CM|Nondisp fx of med condyle of r femr, 7thP|Nondisp fx of med condyle of r femr, 7thP +C2858606|T037|AB|S72.434Q|ICD10CM|Nondisp fx of med condyle of r femr, 7thQ|Nondisp fx of med condyle of r femr, 7thQ +C2858607|T037|AB|S72.434R|ICD10CM|Nondisp fx of med condyle of r femr, 7thR|Nondisp fx of med condyle of r femr, 7thR +C2858608|T037|AB|S72.434S|ICD10CM|Nondisp fx of medial condyle of right femur, sequela|Nondisp fx of medial condyle of right femur, sequela +C2858608|T037|PT|S72.434S|ICD10CM|Nondisplaced fracture of medial condyle of right femur, sequela|Nondisplaced fracture of medial condyle of right femur, sequela +C2858609|T037|AB|S72.435|ICD10CM|Nondisplaced fracture of medial condyle of left femur|Nondisplaced fracture of medial condyle of left femur +C2858609|T037|HT|S72.435|ICD10CM|Nondisplaced fracture of medial condyle of left femur|Nondisplaced fracture of medial condyle of left femur +C2858610|T037|AB|S72.435A|ICD10CM|Nondisp fx of medial condyle of left femur, init for clos fx|Nondisp fx of medial condyle of left femur, init for clos fx +C2858610|T037|PT|S72.435A|ICD10CM|Nondisplaced fracture of medial condyle of left femur, initial encounter for closed fracture|Nondisplaced fracture of medial condyle of left femur, initial encounter for closed fracture +C2858611|T037|AB|S72.435B|ICD10CM|Nondisp fx of med condyle of l femr, 7thB|Nondisp fx of med condyle of l femr, 7thB +C2858612|T037|AB|S72.435C|ICD10CM|Nondisp fx of med condyle of l femr, 7thC|Nondisp fx of med condyle of l femr, 7thC +C2858613|T037|AB|S72.435D|ICD10CM|Nondisp fx of med condyle of l femr, 7thD|Nondisp fx of med condyle of l femr, 7thD +C2858614|T037|AB|S72.435E|ICD10CM|Nondisp fx of med condyle of l femr, 7thE|Nondisp fx of med condyle of l femr, 7thE +C2858615|T037|AB|S72.435F|ICD10CM|Nondisp fx of med condyle of l femr, 7thF|Nondisp fx of med condyle of l femr, 7thF +C2858616|T037|AB|S72.435G|ICD10CM|Nondisp fx of med condyle of l femr, 7thG|Nondisp fx of med condyle of l femr, 7thG +C2858617|T037|AB|S72.435H|ICD10CM|Nondisp fx of med condyle of l femr, 7thH|Nondisp fx of med condyle of l femr, 7thH +C2858618|T037|AB|S72.435J|ICD10CM|Nondisp fx of med condyle of l femr, 7thJ|Nondisp fx of med condyle of l femr, 7thJ +C2858619|T037|AB|S72.435K|ICD10CM|Nondisp fx of med condyle of l femr, 7thK|Nondisp fx of med condyle of l femr, 7thK +C2858620|T037|AB|S72.435M|ICD10CM|Nondisp fx of med condyle of l femr, 7thM|Nondisp fx of med condyle of l femr, 7thM +C2858621|T037|AB|S72.435N|ICD10CM|Nondisp fx of med condyle of l femr, 7thN|Nondisp fx of med condyle of l femr, 7thN +C2858622|T037|AB|S72.435P|ICD10CM|Nondisp fx of med condyle of l femr, 7thP|Nondisp fx of med condyle of l femr, 7thP +C2858623|T037|AB|S72.435Q|ICD10CM|Nondisp fx of med condyle of l femr, 7thQ|Nondisp fx of med condyle of l femr, 7thQ +C2858624|T037|AB|S72.435R|ICD10CM|Nondisp fx of med condyle of l femr, 7thR|Nondisp fx of med condyle of l femr, 7thR +C2858625|T037|AB|S72.435S|ICD10CM|Nondisp fx of medial condyle of left femur, sequela|Nondisp fx of medial condyle of left femur, sequela +C2858625|T037|PT|S72.435S|ICD10CM|Nondisplaced fracture of medial condyle of left femur, sequela|Nondisplaced fracture of medial condyle of left femur, sequela +C2858626|T037|AB|S72.436|ICD10CM|Nondisplaced fracture of medial condyle of unspecified femur|Nondisplaced fracture of medial condyle of unspecified femur +C2858626|T037|HT|S72.436|ICD10CM|Nondisplaced fracture of medial condyle of unspecified femur|Nondisplaced fracture of medial condyle of unspecified femur +C2858627|T037|AB|S72.436A|ICD10CM|Nondisp fx of medial condyle of unsp femur, init for clos fx|Nondisp fx of medial condyle of unsp femur, init for clos fx +C2858627|T037|PT|S72.436A|ICD10CM|Nondisplaced fracture of medial condyle of unspecified femur, initial encounter for closed fracture|Nondisplaced fracture of medial condyle of unspecified femur, initial encounter for closed fracture +C2858628|T037|AB|S72.436B|ICD10CM|Nondisp fx of med condyle of unsp femr, 7thB|Nondisp fx of med condyle of unsp femr, 7thB +C2858629|T037|AB|S72.436C|ICD10CM|Nondisp fx of med condyle of unsp femr, 7thC|Nondisp fx of med condyle of unsp femr, 7thC +C2858630|T037|AB|S72.436D|ICD10CM|Nondisp fx of med condyle of unsp femr, 7thD|Nondisp fx of med condyle of unsp femr, 7thD +C2858631|T037|AB|S72.436E|ICD10CM|Nondisp fx of med condyle of unsp femr, 7thE|Nondisp fx of med condyle of unsp femr, 7thE +C2858632|T037|AB|S72.436F|ICD10CM|Nondisp fx of med condyle of unsp femr, 7thF|Nondisp fx of med condyle of unsp femr, 7thF +C2858633|T037|AB|S72.436G|ICD10CM|Nondisp fx of med condyle of unsp femr, 7thG|Nondisp fx of med condyle of unsp femr, 7thG +C2858634|T037|AB|S72.436H|ICD10CM|Nondisp fx of med condyle of unsp femr, 7thH|Nondisp fx of med condyle of unsp femr, 7thH +C2858635|T037|AB|S72.436J|ICD10CM|Nondisp fx of med condyle of unsp femr, 7thJ|Nondisp fx of med condyle of unsp femr, 7thJ +C2858636|T037|AB|S72.436K|ICD10CM|Nondisp fx of med condyle of unsp femr, 7thK|Nondisp fx of med condyle of unsp femr, 7thK +C2858637|T037|AB|S72.436M|ICD10CM|Nondisp fx of med condyle of unsp femr, 7thM|Nondisp fx of med condyle of unsp femr, 7thM +C2858638|T037|AB|S72.436N|ICD10CM|Nondisp fx of med condyle of unsp femr, 7thN|Nondisp fx of med condyle of unsp femr, 7thN +C2858639|T037|AB|S72.436P|ICD10CM|Nondisp fx of med condyle of unsp femr, 7thP|Nondisp fx of med condyle of unsp femr, 7thP +C2858640|T037|AB|S72.436Q|ICD10CM|Nondisp fx of med condyle of unsp femr, 7thQ|Nondisp fx of med condyle of unsp femr, 7thQ +C2858641|T037|AB|S72.436R|ICD10CM|Nondisp fx of med condyle of unsp femr, 7thR|Nondisp fx of med condyle of unsp femr, 7thR +C2858642|T037|AB|S72.436S|ICD10CM|Nondisp fx of medial condyle of unspecified femur, sequela|Nondisp fx of medial condyle of unspecified femur, sequela +C2858642|T037|PT|S72.436S|ICD10CM|Nondisplaced fracture of medial condyle of unspecified femur, sequela|Nondisplaced fracture of medial condyle of unspecified femur, sequela +C0840685|T037|AB|S72.44|ICD10CM|Fracture of lower epiphysis (separation) of femur|Fracture of lower epiphysis (separation) of femur +C0840685|T037|HT|S72.44|ICD10CM|Fracture of lower epiphysis (separation) of femur|Fracture of lower epiphysis (separation) of femur +C2858643|T037|AB|S72.441|ICD10CM|Disp fx of lower epiphysis (separation) of right femur|Disp fx of lower epiphysis (separation) of right femur +C2858643|T037|HT|S72.441|ICD10CM|Displaced fracture of lower epiphysis (separation) of right femur|Displaced fracture of lower epiphysis (separation) of right femur +C2858644|T037|AB|S72.441A|ICD10CM|Disp fx of lower epiphysis (separation) of right femur, init|Disp fx of lower epiphysis (separation) of right femur, init +C2858645|T037|AB|S72.441B|ICD10CM|Disp fx of low epiphy (separation) of r femr, 7thB|Disp fx of low epiphy (separation) of r femr, 7thB +C2858646|T037|AB|S72.441C|ICD10CM|Disp fx of low epiphy (separation) of r femr, 7thC|Disp fx of low epiphy (separation) of r femr, 7thC +C2858647|T037|AB|S72.441D|ICD10CM|Disp fx of low epiphy (separation) of r femr, 7thD|Disp fx of low epiphy (separation) of r femr, 7thD +C2858648|T037|AB|S72.441E|ICD10CM|Disp fx of low epiphy (separation) of r femr, 7thE|Disp fx of low epiphy (separation) of r femr, 7thE +C2858649|T037|AB|S72.441F|ICD10CM|Disp fx of low epiphy (separation) of r femr, 7thF|Disp fx of low epiphy (separation) of r femr, 7thF +C2858650|T037|AB|S72.441G|ICD10CM|Disp fx of low epiphy (separation) of r femr, 7thG|Disp fx of low epiphy (separation) of r femr, 7thG +C2858651|T037|AB|S72.441H|ICD10CM|Disp fx of low epiphy (separation) of r femr, 7thH|Disp fx of low epiphy (separation) of r femr, 7thH +C2858652|T037|AB|S72.441J|ICD10CM|Disp fx of low epiphy (separation) of r femr, 7thJ|Disp fx of low epiphy (separation) of r femr, 7thJ +C2858653|T037|AB|S72.441K|ICD10CM|Disp fx of low epiphy (separation) of r femr, 7thK|Disp fx of low epiphy (separation) of r femr, 7thK +C2858654|T037|AB|S72.441M|ICD10CM|Disp fx of low epiphy (separation) of r femr, 7thM|Disp fx of low epiphy (separation) of r femr, 7thM +C2858655|T037|AB|S72.441N|ICD10CM|Disp fx of low epiphy (separation) of r femr, 7thN|Disp fx of low epiphy (separation) of r femr, 7thN +C2858656|T037|AB|S72.441P|ICD10CM|Disp fx of low epiphy (separation) of r femr, 7thP|Disp fx of low epiphy (separation) of r femr, 7thP +C2858657|T037|AB|S72.441Q|ICD10CM|Disp fx of low epiphy (separation) of r femr, 7thQ|Disp fx of low epiphy (separation) of r femr, 7thQ +C2858658|T037|AB|S72.441R|ICD10CM|Disp fx of low epiphy (separation) of r femr, 7thR|Disp fx of low epiphy (separation) of r femr, 7thR +C2858659|T037|AB|S72.441S|ICD10CM|Disp fx of lower epiphysis (separation) of r femur, sequela|Disp fx of lower epiphysis (separation) of r femur, sequela +C2858659|T037|PT|S72.441S|ICD10CM|Displaced fracture of lower epiphysis (separation) of right femur, sequela|Displaced fracture of lower epiphysis (separation) of right femur, sequela +C2858660|T037|AB|S72.442|ICD10CM|Disp fx of lower epiphysis (separation) of left femur|Disp fx of lower epiphysis (separation) of left femur +C2858660|T037|HT|S72.442|ICD10CM|Displaced fracture of lower epiphysis (separation) of left femur|Displaced fracture of lower epiphysis (separation) of left femur +C2858661|T037|AB|S72.442A|ICD10CM|Disp fx of lower epiphysis (separation) of left femur, init|Disp fx of lower epiphysis (separation) of left femur, init +C2858662|T037|AB|S72.442B|ICD10CM|Disp fx of low epiphy (separation) of l femr, 7thB|Disp fx of low epiphy (separation) of l femr, 7thB +C2858663|T037|AB|S72.442C|ICD10CM|Disp fx of low epiphy (separation) of l femr, 7thC|Disp fx of low epiphy (separation) of l femr, 7thC +C2858664|T037|AB|S72.442D|ICD10CM|Disp fx of low epiphy (separation) of l femr, 7thD|Disp fx of low epiphy (separation) of l femr, 7thD +C2858665|T037|AB|S72.442E|ICD10CM|Disp fx of low epiphy (separation) of l femr, 7thE|Disp fx of low epiphy (separation) of l femr, 7thE +C2858666|T037|AB|S72.442F|ICD10CM|Disp fx of low epiphy (separation) of l femr, 7thF|Disp fx of low epiphy (separation) of l femr, 7thF +C2858667|T037|AB|S72.442G|ICD10CM|Disp fx of low epiphy (separation) of l femr, 7thG|Disp fx of low epiphy (separation) of l femr, 7thG +C2858668|T037|AB|S72.442H|ICD10CM|Disp fx of low epiphy (separation) of l femr, 7thH|Disp fx of low epiphy (separation) of l femr, 7thH +C2858669|T037|AB|S72.442J|ICD10CM|Disp fx of low epiphy (separation) of l femr, 7thJ|Disp fx of low epiphy (separation) of l femr, 7thJ +C2858670|T037|AB|S72.442K|ICD10CM|Disp fx of low epiphy (separation) of l femr, 7thK|Disp fx of low epiphy (separation) of l femr, 7thK +C2858671|T037|AB|S72.442M|ICD10CM|Disp fx of low epiphy (separation) of l femr, 7thM|Disp fx of low epiphy (separation) of l femr, 7thM +C2858672|T037|AB|S72.442N|ICD10CM|Disp fx of low epiphy (separation) of l femr, 7thN|Disp fx of low epiphy (separation) of l femr, 7thN +C2858673|T037|AB|S72.442P|ICD10CM|Disp fx of low epiphy (separation) of l femr, 7thP|Disp fx of low epiphy (separation) of l femr, 7thP +C2858674|T037|AB|S72.442Q|ICD10CM|Disp fx of low epiphy (separation) of l femr, 7thQ|Disp fx of low epiphy (separation) of l femr, 7thQ +C2858675|T037|AB|S72.442R|ICD10CM|Disp fx of low epiphy (separation) of l femr, 7thR|Disp fx of low epiphy (separation) of l femr, 7thR +C2858676|T037|AB|S72.442S|ICD10CM|Disp fx of lower epiphysis (separation) of l femur, sequela|Disp fx of lower epiphysis (separation) of l femur, sequela +C2858676|T037|PT|S72.442S|ICD10CM|Displaced fracture of lower epiphysis (separation) of left femur, sequela|Displaced fracture of lower epiphysis (separation) of left femur, sequela +C2858677|T037|AB|S72.443|ICD10CM|Disp fx of lower epiphysis (separation) of unspecified femur|Disp fx of lower epiphysis (separation) of unspecified femur +C2858677|T037|HT|S72.443|ICD10CM|Displaced fracture of lower epiphysis (separation) of unspecified femur|Displaced fracture of lower epiphysis (separation) of unspecified femur +C2858678|T037|AB|S72.443A|ICD10CM|Disp fx of lower epiphysis (separation) of unsp femur, init|Disp fx of lower epiphysis (separation) of unsp femur, init +C2858679|T037|AB|S72.443B|ICD10CM|Disp fx of low epiphy (separation) of unsp femr, 7thB|Disp fx of low epiphy (separation) of unsp femr, 7thB +C2858680|T037|AB|S72.443C|ICD10CM|Disp fx of low epiphy (separation) of unsp femr, 7thC|Disp fx of low epiphy (separation) of unsp femr, 7thC +C2858681|T037|AB|S72.443D|ICD10CM|Disp fx of low epiphy (separation) of unsp femr, 7thD|Disp fx of low epiphy (separation) of unsp femr, 7thD +C2858682|T037|AB|S72.443E|ICD10CM|Disp fx of low epiphy (separation) of unsp femr, 7thE|Disp fx of low epiphy (separation) of unsp femr, 7thE +C2858683|T037|AB|S72.443F|ICD10CM|Disp fx of low epiphy (separation) of unsp femr, 7thF|Disp fx of low epiphy (separation) of unsp femr, 7thF +C2858684|T037|AB|S72.443G|ICD10CM|Disp fx of low epiphy (separation) of unsp femr, 7thG|Disp fx of low epiphy (separation) of unsp femr, 7thG +C2858685|T037|AB|S72.443H|ICD10CM|Disp fx of low epiphy (separation) of unsp femr, 7thH|Disp fx of low epiphy (separation) of unsp femr, 7thH +C2858686|T037|AB|S72.443J|ICD10CM|Disp fx of low epiphy (separation) of unsp femr, 7thJ|Disp fx of low epiphy (separation) of unsp femr, 7thJ +C2858687|T037|AB|S72.443K|ICD10CM|Disp fx of low epiphy (separation) of unsp femr, 7thK|Disp fx of low epiphy (separation) of unsp femr, 7thK +C2858688|T037|AB|S72.443M|ICD10CM|Disp fx of low epiphy (separation) of unsp femr, 7thM|Disp fx of low epiphy (separation) of unsp femr, 7thM +C2858689|T037|AB|S72.443N|ICD10CM|Disp fx of low epiphy (separation) of unsp femr, 7thN|Disp fx of low epiphy (separation) of unsp femr, 7thN +C2858690|T037|AB|S72.443P|ICD10CM|Disp fx of low epiphy (separation) of unsp femr, 7thP|Disp fx of low epiphy (separation) of unsp femr, 7thP +C2858691|T037|AB|S72.443Q|ICD10CM|Disp fx of low epiphy (separation) of unsp femr, 7thQ|Disp fx of low epiphy (separation) of unsp femr, 7thQ +C2858692|T037|AB|S72.443R|ICD10CM|Disp fx of low epiphy (separation) of unsp femr, 7thR|Disp fx of low epiphy (separation) of unsp femr, 7thR +C2858693|T037|AB|S72.443S|ICD10CM|Disp fx of lower epiphy (separation) of unsp femur, sequela|Disp fx of lower epiphy (separation) of unsp femur, sequela +C2858693|T037|PT|S72.443S|ICD10CM|Displaced fracture of lower epiphysis (separation) of unspecified femur, sequela|Displaced fracture of lower epiphysis (separation) of unspecified femur, sequela +C2858694|T037|AB|S72.444|ICD10CM|Nondisp fx of lower epiphysis (separation) of right femur|Nondisp fx of lower epiphysis (separation) of right femur +C2858694|T037|HT|S72.444|ICD10CM|Nondisplaced fracture of lower epiphysis (separation) of right femur|Nondisplaced fracture of lower epiphysis (separation) of right femur +C2858695|T037|AB|S72.444A|ICD10CM|Nondisp fx of lower epiphysis (separation) of r femur, init|Nondisp fx of lower epiphysis (separation) of r femur, init +C2858696|T037|AB|S72.444B|ICD10CM|Nondisp fx of low epiphy (separation) of r femr, 7thB|Nondisp fx of low epiphy (separation) of r femr, 7thB +C2858697|T037|AB|S72.444C|ICD10CM|Nondisp fx of low epiphy (separation) of r femr, 7thC|Nondisp fx of low epiphy (separation) of r femr, 7thC +C2858698|T037|AB|S72.444D|ICD10CM|Nondisp fx of low epiphy (separation) of r femr, 7thD|Nondisp fx of low epiphy (separation) of r femr, 7thD +C2858699|T037|AB|S72.444E|ICD10CM|Nondisp fx of low epiphy (separation) of r femr, 7thE|Nondisp fx of low epiphy (separation) of r femr, 7thE +C2858700|T037|AB|S72.444F|ICD10CM|Nondisp fx of low epiphy (separation) of r femr, 7thF|Nondisp fx of low epiphy (separation) of r femr, 7thF +C2858701|T037|AB|S72.444G|ICD10CM|Nondisp fx of low epiphy (separation) of r femr, 7thG|Nondisp fx of low epiphy (separation) of r femr, 7thG +C2858702|T037|AB|S72.444H|ICD10CM|Nondisp fx of low epiphy (separation) of r femr, 7thH|Nondisp fx of low epiphy (separation) of r femr, 7thH +C2858703|T037|AB|S72.444J|ICD10CM|Nondisp fx of low epiphy (separation) of r femr, 7thJ|Nondisp fx of low epiphy (separation) of r femr, 7thJ +C2858704|T037|AB|S72.444K|ICD10CM|Nondisp fx of low epiphy (separation) of r femr, 7thK|Nondisp fx of low epiphy (separation) of r femr, 7thK +C2858705|T037|AB|S72.444M|ICD10CM|Nondisp fx of low epiphy (separation) of r femr, 7thM|Nondisp fx of low epiphy (separation) of r femr, 7thM +C2858706|T037|AB|S72.444N|ICD10CM|Nondisp fx of low epiphy (separation) of r femr, 7thN|Nondisp fx of low epiphy (separation) of r femr, 7thN +C2858707|T037|AB|S72.444P|ICD10CM|Nondisp fx of low epiphy (separation) of r femr, 7thP|Nondisp fx of low epiphy (separation) of r femr, 7thP +C2858708|T037|AB|S72.444Q|ICD10CM|Nondisp fx of low epiphy (separation) of r femr, 7thQ|Nondisp fx of low epiphy (separation) of r femr, 7thQ +C2858709|T037|AB|S72.444R|ICD10CM|Nondisp fx of low epiphy (separation) of r femr, 7thR|Nondisp fx of low epiphy (separation) of r femr, 7thR +C2858710|T037|AB|S72.444S|ICD10CM|Nondisp fx of lower epiphy (separation) of r femur, sequela|Nondisp fx of lower epiphy (separation) of r femur, sequela +C2858710|T037|PT|S72.444S|ICD10CM|Nondisplaced fracture of lower epiphysis (separation) of right femur, sequela|Nondisplaced fracture of lower epiphysis (separation) of right femur, sequela +C2858711|T037|AB|S72.445|ICD10CM|Nondisp fx of lower epiphysis (separation) of left femur|Nondisp fx of lower epiphysis (separation) of left femur +C2858711|T037|HT|S72.445|ICD10CM|Nondisplaced fracture of lower epiphysis (separation) of left femur|Nondisplaced fracture of lower epiphysis (separation) of left femur +C2858712|T037|AB|S72.445A|ICD10CM|Nondisp fx of lower epiphysis (separation) of l femur, init|Nondisp fx of lower epiphysis (separation) of l femur, init +C2858713|T037|AB|S72.445B|ICD10CM|Nondisp fx of low epiphy (separation) of l femr, 7thB|Nondisp fx of low epiphy (separation) of l femr, 7thB +C2858714|T037|AB|S72.445C|ICD10CM|Nondisp fx of low epiphy (separation) of l femr, 7thC|Nondisp fx of low epiphy (separation) of l femr, 7thC +C2858715|T037|AB|S72.445D|ICD10CM|Nondisp fx of low epiphy (separation) of l femr, 7thD|Nondisp fx of low epiphy (separation) of l femr, 7thD +C2858716|T037|AB|S72.445E|ICD10CM|Nondisp fx of low epiphy (separation) of l femr, 7thE|Nondisp fx of low epiphy (separation) of l femr, 7thE +C2858717|T037|AB|S72.445F|ICD10CM|Nondisp fx of low epiphy (separation) of l femr, 7thF|Nondisp fx of low epiphy (separation) of l femr, 7thF +C2858718|T037|AB|S72.445G|ICD10CM|Nondisp fx of low epiphy (separation) of l femr, 7thG|Nondisp fx of low epiphy (separation) of l femr, 7thG +C2858719|T037|AB|S72.445H|ICD10CM|Nondisp fx of low epiphy (separation) of l femr, 7thH|Nondisp fx of low epiphy (separation) of l femr, 7thH +C2858720|T037|AB|S72.445J|ICD10CM|Nondisp fx of low epiphy (separation) of l femr, 7thJ|Nondisp fx of low epiphy (separation) of l femr, 7thJ +C2858721|T037|AB|S72.445K|ICD10CM|Nondisp fx of low epiphy (separation) of l femr, 7thK|Nondisp fx of low epiphy (separation) of l femr, 7thK +C2858722|T037|AB|S72.445M|ICD10CM|Nondisp fx of low epiphy (separation) of l femr, 7thM|Nondisp fx of low epiphy (separation) of l femr, 7thM +C2858723|T037|AB|S72.445N|ICD10CM|Nondisp fx of low epiphy (separation) of l femr, 7thN|Nondisp fx of low epiphy (separation) of l femr, 7thN +C2858724|T037|AB|S72.445P|ICD10CM|Nondisp fx of low epiphy (separation) of l femr, 7thP|Nondisp fx of low epiphy (separation) of l femr, 7thP +C2858725|T037|AB|S72.445Q|ICD10CM|Nondisp fx of low epiphy (separation) of l femr, 7thQ|Nondisp fx of low epiphy (separation) of l femr, 7thQ +C2858726|T037|AB|S72.445R|ICD10CM|Nondisp fx of low epiphy (separation) of l femr, 7thR|Nondisp fx of low epiphy (separation) of l femr, 7thR +C2858727|T037|AB|S72.445S|ICD10CM|Nondisp fx of lower epiphy (separation) of l femur, sequela|Nondisp fx of lower epiphy (separation) of l femur, sequela +C2858727|T037|PT|S72.445S|ICD10CM|Nondisplaced fracture of lower epiphysis (separation) of left femur, sequela|Nondisplaced fracture of lower epiphysis (separation) of left femur, sequela +C2858728|T037|AB|S72.446|ICD10CM|Nondisp fx of lower epiphysis (separation) of unsp femur|Nondisp fx of lower epiphysis (separation) of unsp femur +C2858728|T037|HT|S72.446|ICD10CM|Nondisplaced fracture of lower epiphysis (separation) of unspecified femur|Nondisplaced fracture of lower epiphysis (separation) of unspecified femur +C2858729|T037|AB|S72.446A|ICD10CM|Nondisp fx of lower epiphy (separation) of unsp femur, init|Nondisp fx of lower epiphy (separation) of unsp femur, init +C2858730|T037|AB|S72.446B|ICD10CM|Nondisp fx of low epiphy (separation) of unsp femr, 7thB|Nondisp fx of low epiphy (separation) of unsp femr, 7thB +C2858731|T037|AB|S72.446C|ICD10CM|Nondisp fx of low epiphy (separation) of unsp femr, 7thC|Nondisp fx of low epiphy (separation) of unsp femr, 7thC +C2858732|T037|AB|S72.446D|ICD10CM|Nondisp fx of low epiphy (separation) of unsp femr, 7thD|Nondisp fx of low epiphy (separation) of unsp femr, 7thD +C2858733|T037|AB|S72.446E|ICD10CM|Nondisp fx of low epiphy (separation) of unsp femr, 7thE|Nondisp fx of low epiphy (separation) of unsp femr, 7thE +C2858734|T037|AB|S72.446F|ICD10CM|Nondisp fx of low epiphy (separation) of unsp femr, 7thF|Nondisp fx of low epiphy (separation) of unsp femr, 7thF +C2858735|T037|AB|S72.446G|ICD10CM|Nondisp fx of low epiphy (separation) of unsp femr, 7thG|Nondisp fx of low epiphy (separation) of unsp femr, 7thG +C2858736|T037|AB|S72.446H|ICD10CM|Nondisp fx of low epiphy (separation) of unsp femr, 7thH|Nondisp fx of low epiphy (separation) of unsp femr, 7thH +C2858737|T037|AB|S72.446J|ICD10CM|Nondisp fx of low epiphy (separation) of unsp femr, 7thJ|Nondisp fx of low epiphy (separation) of unsp femr, 7thJ +C2858738|T037|AB|S72.446K|ICD10CM|Nondisp fx of low epiphy (separation) of unsp femr, 7thK|Nondisp fx of low epiphy (separation) of unsp femr, 7thK +C2858739|T037|AB|S72.446M|ICD10CM|Nondisp fx of low epiphy (separation) of unsp femr, 7thM|Nondisp fx of low epiphy (separation) of unsp femr, 7thM +C2858740|T037|AB|S72.446N|ICD10CM|Nondisp fx of low epiphy (separation) of unsp femr, 7thN|Nondisp fx of low epiphy (separation) of unsp femr, 7thN +C2858741|T037|AB|S72.446P|ICD10CM|Nondisp fx of low epiphy (separation) of unsp femr, 7thP|Nondisp fx of low epiphy (separation) of unsp femr, 7thP +C2858742|T037|AB|S72.446Q|ICD10CM|Nondisp fx of low epiphy (separation) of unsp femr, 7thQ|Nondisp fx of low epiphy (separation) of unsp femr, 7thQ +C2858743|T037|AB|S72.446R|ICD10CM|Nondisp fx of low epiphy (separation) of unsp femr, 7thR|Nondisp fx of low epiphy (separation) of unsp femr, 7thR +C2858744|T037|AB|S72.446S|ICD10CM|Nondisp fx of lower epiphy (separation) of unsp femur, sqla|Nondisp fx of lower epiphy (separation) of unsp femur, sqla +C2858744|T037|PT|S72.446S|ICD10CM|Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, sequela|Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, sequela +C2858745|T037|ET|S72.45|ICD10CM|Supracondylar fracture of lower end of femur NOS|Supracondylar fracture of lower end of femur NOS +C2858746|T037|HT|S72.45|ICD10CM|Supracondylar fracture without intracondylar extension of lower end of femur|Supracondylar fracture without intracondylar extension of lower end of femur +C2858746|T037|AB|S72.45|ICD10CM|Suprcndl fracture w/o intrcndl extn lower end of femur|Suprcndl fracture w/o intrcndl extn lower end of femur +C2858747|T037|AB|S72.451|ICD10CM|Displ suprcndl fx w/o intrcndl extn lower end of r femur|Displ suprcndl fx w/o intrcndl extn lower end of r femur +C2858747|T037|HT|S72.451|ICD10CM|Displaced supracondylar fracture without intracondylar extension of lower end of right femur|Displaced supracondylar fracture without intracondylar extension of lower end of right femur +C2858748|T037|AB|S72.451A|ICD10CM|Displ suprcndl fx w/o intrcndl extn lower end r femur, init|Displ suprcndl fx w/o intrcndl extn lower end r femur, init +C2858749|T037|AB|S72.451B|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thB|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thB +C2858750|T037|AB|S72.451C|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thC|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thC +C2858751|T037|AB|S72.451D|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thD|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thD +C2858752|T037|AB|S72.451E|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thE|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thE +C2858753|T037|AB|S72.451F|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thF|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thF +C2858754|T037|AB|S72.451G|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thG|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thG +C2858755|T037|AB|S72.451H|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thH|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thH +C2858756|T037|AB|S72.451J|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thJ|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thJ +C2858757|T037|AB|S72.451K|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thK|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thK +C2858758|T037|AB|S72.451M|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thM|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thM +C2858759|T037|AB|S72.451N|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thN|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thN +C2858760|T037|AB|S72.451P|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thP|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thP +C2858761|T037|AB|S72.451Q|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thQ|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thQ +C2858762|T037|AB|S72.451R|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thR|Displ suprcndl fx w/o intrcndl extn low end r femr, 7thR +C2858763|T037|AB|S72.451S|ICD10CM|Displ suprcndl fx w/o intrcndl extn lower end r femur, sqla|Displ suprcndl fx w/o intrcndl extn lower end r femur, sqla +C2858764|T037|AB|S72.452|ICD10CM|Displ suprcndl fx w/o intrcndl extn lower end of l femur|Displ suprcndl fx w/o intrcndl extn lower end of l femur +C2858764|T037|HT|S72.452|ICD10CM|Displaced supracondylar fracture without intracondylar extension of lower end of left femur|Displaced supracondylar fracture without intracondylar extension of lower end of left femur +C2858765|T037|AB|S72.452A|ICD10CM|Displ suprcndl fx w/o intrcndl extn lower end l femur, init|Displ suprcndl fx w/o intrcndl extn lower end l femur, init +C2858766|T037|AB|S72.452B|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thB|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thB +C2858767|T037|AB|S72.452C|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thC|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thC +C2858768|T037|AB|S72.452D|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thD|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thD +C2858769|T037|AB|S72.452E|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thE|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thE +C2858770|T037|AB|S72.452F|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thF|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thF +C2858771|T037|AB|S72.452G|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thG|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thG +C2858772|T037|AB|S72.452H|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thH|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thH +C2858773|T037|AB|S72.452J|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thJ|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thJ +C2858774|T037|AB|S72.452K|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thK|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thK +C2858775|T037|AB|S72.452M|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thM|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thM +C2858776|T037|AB|S72.452N|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thN|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thN +C2858777|T037|AB|S72.452P|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thP|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thP +C2858778|T037|AB|S72.452Q|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thQ|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thQ +C2858779|T037|AB|S72.452R|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thR|Displ suprcndl fx w/o intrcndl extn low end l femr, 7thR +C2858780|T037|AB|S72.452S|ICD10CM|Displ suprcndl fx w/o intrcndl extn lower end l femur, sqla|Displ suprcndl fx w/o intrcndl extn lower end l femur, sqla +C2858780|T037|PT|S72.452S|ICD10CM|Displaced supracondylar fracture without intracondylar extension of lower end of left femur, sequela|Displaced supracondylar fracture without intracondylar extension of lower end of left femur, sequela +C2858781|T037|AB|S72.453|ICD10CM|Displ suprcndl fx w/o intrcndl extn lower end of unsp femur|Displ suprcndl fx w/o intrcndl extn lower end of unsp femur +C2858781|T037|HT|S72.453|ICD10CM|Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur|Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur +C2858782|T037|AB|S72.453A|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end unsp femr, init|Displ suprcndl fx w/o intrcndl extn low end unsp femr, init +C2858783|T037|AB|S72.453B|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thB|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thB +C2858784|T037|AB|S72.453C|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thC|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thC +C2858785|T037|AB|S72.453D|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thD|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thD +C2858786|T037|AB|S72.453E|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thE|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thE +C2858787|T037|AB|S72.453F|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thF|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thF +C2858788|T037|AB|S72.453G|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thG|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thG +C2858789|T037|AB|S72.453H|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thH|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thH +C2858790|T037|AB|S72.453J|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thJ|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thJ +C2858791|T037|AB|S72.453K|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thK|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thK +C2858792|T037|AB|S72.453M|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thM|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thM +C2858793|T037|AB|S72.453N|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thN|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thN +C2858794|T037|AB|S72.453P|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thP|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thP +C2858795|T037|AB|S72.453Q|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thQ|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thQ +C2858796|T037|AB|S72.453R|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thR|Displ suprcndl fx w/o intrcndl extn low end unsp femr, 7thR +C2858797|T037|AB|S72.453S|ICD10CM|Displ suprcndl fx w/o intrcndl extn low end unsp femr, sqla|Displ suprcndl fx w/o intrcndl extn low end unsp femr, sqla +C2858798|T037|AB|S72.454|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn lower end of r femur|Nondisp suprcndl fx w/o intrcndl extn lower end of r femur +C2858798|T037|HT|S72.454|ICD10CM|Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur|Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur +C2858799|T037|AB|S72.454A|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn lower end r femr, init|Nondisp suprcndl fx w/o intrcndl extn lower end r femr, init +C2858800|T037|AB|S72.454B|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thB|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thB +C2858801|T037|AB|S72.454C|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thC|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thC +C2858802|T037|AB|S72.454D|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thD|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thD +C2858803|T037|AB|S72.454E|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thE|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thE +C2858804|T037|AB|S72.454F|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thF|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thF +C2858805|T037|AB|S72.454G|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thG|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thG +C2858806|T037|AB|S72.454H|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thH|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thH +C2858807|T037|AB|S72.454J|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thJ|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thJ +C2858808|T037|AB|S72.454K|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thK|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thK +C2858809|T037|AB|S72.454M|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thM|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thM +C2858810|T037|AB|S72.454N|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thN|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thN +C2858811|T037|AB|S72.454P|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thP|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thP +C2858812|T037|AB|S72.454Q|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thQ|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thQ +C2858813|T037|AB|S72.454R|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thR|Nondisp suprcndl fx w/o intrcndl extn low end r femr, 7thR +C2858814|T037|AB|S72.454S|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn lower end r femr, sqla|Nondisp suprcndl fx w/o intrcndl extn lower end r femr, sqla +C2858815|T037|AB|S72.455|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn lower end of l femur|Nondisp suprcndl fx w/o intrcndl extn lower end of l femur +C2858815|T037|HT|S72.455|ICD10CM|Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur|Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur +C2858816|T037|AB|S72.455A|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn lower end l femr, init|Nondisp suprcndl fx w/o intrcndl extn lower end l femr, init +C2858817|T037|AB|S72.455B|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thB|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thB +C2858818|T037|AB|S72.455C|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thC|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thC +C2858819|T037|AB|S72.455D|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thD|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thD +C2858820|T037|AB|S72.455E|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thE|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thE +C2858821|T037|AB|S72.455F|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thF|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thF +C2858822|T037|AB|S72.455G|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thG|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thG +C2858823|T037|AB|S72.455H|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thH|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thH +C2858824|T037|AB|S72.455J|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thJ|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thJ +C2858825|T037|AB|S72.455K|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thK|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thK +C2858826|T037|AB|S72.455M|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thM|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thM +C2858827|T037|AB|S72.455N|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thN|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thN +C2858828|T037|AB|S72.455P|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thP|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thP +C2858829|T037|AB|S72.455Q|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thQ|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thQ +C2858830|T037|AB|S72.455R|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thR|Nondisp suprcndl fx w/o intrcndl extn low end l femr, 7thR +C2858831|T037|AB|S72.455S|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn lower end l femr, sqla|Nondisp suprcndl fx w/o intrcndl extn lower end l femr, sqla +C2858832|T037|AB|S72.456|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn lower end unsp femur|Nondisp suprcndl fx w/o intrcndl extn lower end unsp femur +C2858833|T037|AB|S72.456A|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,init|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,init +C2858834|T037|AB|S72.456B|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thB|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thB +C2858835|T037|AB|S72.456C|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thC|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thC +C2858836|T037|AB|S72.456D|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thD|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thD +C2858837|T037|AB|S72.456E|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thE|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thE +C2858838|T037|AB|S72.456F|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thF|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thF +C2858839|T037|AB|S72.456G|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thG|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thG +C2858840|T037|AB|S72.456H|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thH|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thH +C2858841|T037|AB|S72.456J|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thJ|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thJ +C2858842|T037|AB|S72.456K|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thK|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thK +C2858843|T037|AB|S72.456M|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thM|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thM +C2858844|T037|AB|S72.456N|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thN|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thN +C2858845|T037|AB|S72.456P|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thP|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thP +C2858846|T037|AB|S72.456Q|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thQ|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thQ +C2858847|T037|AB|S72.456R|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thR|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,7thR +C2858848|T037|AB|S72.456S|ICD10CM|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,sqla|Nondisp suprcndl fx w/o intrcndl extn low end unsp femr,sqla +C2858849|T037|HT|S72.46|ICD10CM|Supracondylar fracture with intracondylar extension of lower end of femur|Supracondylar fracture with intracondylar extension of lower end of femur +C2858849|T037|AB|S72.46|ICD10CM|Suprcndl fracture w intrcndl extension of lower end of femur|Suprcndl fracture w intrcndl extension of lower end of femur +C2858850|T037|AB|S72.461|ICD10CM|Displ suprcndl fracture w intrcndl extn lower end of r femur|Displ suprcndl fracture w intrcndl extn lower end of r femur +C2858850|T037|HT|S72.461|ICD10CM|Displaced supracondylar fracture with intracondylar extension of lower end of right femur|Displaced supracondylar fracture with intracondylar extension of lower end of right femur +C2858851|T037|AB|S72.461A|ICD10CM|Displ suprcndl fx w intrcndl extn lower end of r femur, init|Displ suprcndl fx w intrcndl extn lower end of r femur, init +C2858852|T037|AB|S72.461B|ICD10CM|Displ suprcndl fx w intrcndl extn low end r femr, 7thB|Displ suprcndl fx w intrcndl extn low end r femr, 7thB +C2858853|T037|AB|S72.461C|ICD10CM|Displ suprcndl fx w intrcndl extn low end r femr, 7thC|Displ suprcndl fx w intrcndl extn low end r femr, 7thC +C2858854|T037|AB|S72.461D|ICD10CM|Displ suprcndl fx w intrcndl extn low end r femr, 7thD|Displ suprcndl fx w intrcndl extn low end r femr, 7thD +C2858855|T037|AB|S72.461E|ICD10CM|Displ suprcndl fx w intrcndl extn low end r femr, 7thE|Displ suprcndl fx w intrcndl extn low end r femr, 7thE +C2858856|T037|AB|S72.461F|ICD10CM|Displ suprcndl fx w intrcndl extn low end r femr, 7thF|Displ suprcndl fx w intrcndl extn low end r femr, 7thF +C2858857|T037|AB|S72.461G|ICD10CM|Displ suprcndl fx w intrcndl extn low end r femr, 7thG|Displ suprcndl fx w intrcndl extn low end r femr, 7thG +C2858858|T037|AB|S72.461H|ICD10CM|Displ suprcndl fx w intrcndl extn low end r femr, 7thH|Displ suprcndl fx w intrcndl extn low end r femr, 7thH +C2858859|T037|AB|S72.461J|ICD10CM|Displ suprcndl fx w intrcndl extn low end r femr, 7thJ|Displ suprcndl fx w intrcndl extn low end r femr, 7thJ +C2858860|T037|AB|S72.461K|ICD10CM|Displ suprcndl fx w intrcndl extn low end r femr, 7thK|Displ suprcndl fx w intrcndl extn low end r femr, 7thK +C2858861|T037|AB|S72.461M|ICD10CM|Displ suprcndl fx w intrcndl extn low end r femr, 7thM|Displ suprcndl fx w intrcndl extn low end r femr, 7thM +C2858862|T037|AB|S72.461N|ICD10CM|Displ suprcndl fx w intrcndl extn low end r femr, 7thN|Displ suprcndl fx w intrcndl extn low end r femr, 7thN +C2858863|T037|AB|S72.461P|ICD10CM|Displ suprcndl fx w intrcndl extn low end r femr, 7thP|Displ suprcndl fx w intrcndl extn low end r femr, 7thP +C2858864|T037|AB|S72.461Q|ICD10CM|Displ suprcndl fx w intrcndl extn low end r femr, 7thQ|Displ suprcndl fx w intrcndl extn low end r femr, 7thQ +C2858865|T037|AB|S72.461R|ICD10CM|Displ suprcndl fx w intrcndl extn low end r femr, 7thR|Displ suprcndl fx w intrcndl extn low end r femr, 7thR +C2858866|T037|AB|S72.461S|ICD10CM|Displ suprcndl fx w intrcndl extn lower end of r femur, sqla|Displ suprcndl fx w intrcndl extn lower end of r femur, sqla +C2858866|T037|PT|S72.461S|ICD10CM|Displaced supracondylar fracture with intracondylar extension of lower end of right femur, sequela|Displaced supracondylar fracture with intracondylar extension of lower end of right femur, sequela +C2858867|T037|AB|S72.462|ICD10CM|Displ suprcndl fracture w intrcndl extn lower end of l femur|Displ suprcndl fracture w intrcndl extn lower end of l femur +C2858867|T037|HT|S72.462|ICD10CM|Displaced supracondylar fracture with intracondylar extension of lower end of left femur|Displaced supracondylar fracture with intracondylar extension of lower end of left femur +C2858868|T037|AB|S72.462A|ICD10CM|Displ suprcndl fx w intrcndl extn lower end of l femur, init|Displ suprcndl fx w intrcndl extn lower end of l femur, init +C2858869|T037|AB|S72.462B|ICD10CM|Displ suprcndl fx w intrcndl extn low end l femr, 7thB|Displ suprcndl fx w intrcndl extn low end l femr, 7thB +C2858870|T037|AB|S72.462C|ICD10CM|Displ suprcndl fx w intrcndl extn low end l femr, 7thC|Displ suprcndl fx w intrcndl extn low end l femr, 7thC +C2858871|T037|AB|S72.462D|ICD10CM|Displ suprcndl fx w intrcndl extn low end l femr, 7thD|Displ suprcndl fx w intrcndl extn low end l femr, 7thD +C2858872|T037|AB|S72.462E|ICD10CM|Displ suprcndl fx w intrcndl extn low end l femr, 7thE|Displ suprcndl fx w intrcndl extn low end l femr, 7thE +C2858873|T037|AB|S72.462F|ICD10CM|Displ suprcndl fx w intrcndl extn low end l femr, 7thF|Displ suprcndl fx w intrcndl extn low end l femr, 7thF +C2858874|T037|AB|S72.462G|ICD10CM|Displ suprcndl fx w intrcndl extn low end l femr, 7thG|Displ suprcndl fx w intrcndl extn low end l femr, 7thG +C2858875|T037|AB|S72.462H|ICD10CM|Displ suprcndl fx w intrcndl extn low end l femr, 7thH|Displ suprcndl fx w intrcndl extn low end l femr, 7thH +C2858876|T037|AB|S72.462J|ICD10CM|Displ suprcndl fx w intrcndl extn low end l femr, 7thJ|Displ suprcndl fx w intrcndl extn low end l femr, 7thJ +C2858877|T037|AB|S72.462K|ICD10CM|Displ suprcndl fx w intrcndl extn low end l femr, 7thK|Displ suprcndl fx w intrcndl extn low end l femr, 7thK +C2858878|T037|AB|S72.462M|ICD10CM|Displ suprcndl fx w intrcndl extn low end l femr, 7thM|Displ suprcndl fx w intrcndl extn low end l femr, 7thM +C2858879|T037|AB|S72.462N|ICD10CM|Displ suprcndl fx w intrcndl extn low end l femr, 7thN|Displ suprcndl fx w intrcndl extn low end l femr, 7thN +C2858880|T037|AB|S72.462P|ICD10CM|Displ suprcndl fx w intrcndl extn low end l femr, 7thP|Displ suprcndl fx w intrcndl extn low end l femr, 7thP +C2858881|T037|AB|S72.462Q|ICD10CM|Displ suprcndl fx w intrcndl extn low end l femr, 7thQ|Displ suprcndl fx w intrcndl extn low end l femr, 7thQ +C2858882|T037|AB|S72.462R|ICD10CM|Displ suprcndl fx w intrcndl extn low end l femr, 7thR|Displ suprcndl fx w intrcndl extn low end l femr, 7thR +C2858883|T037|AB|S72.462S|ICD10CM|Displ suprcndl fx w intrcndl extn lower end of l femur, sqla|Displ suprcndl fx w intrcndl extn lower end of l femur, sqla +C2858883|T037|PT|S72.462S|ICD10CM|Displaced supracondylar fracture with intracondylar extension of lower end of left femur, sequela|Displaced supracondylar fracture with intracondylar extension of lower end of left femur, sequela +C2858884|T037|AB|S72.463|ICD10CM|Displ suprcndl fx w intrcndl extn lower end of unsp femur|Displ suprcndl fx w intrcndl extn lower end of unsp femur +C2858884|T037|HT|S72.463|ICD10CM|Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur|Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur +C2858885|T037|AB|S72.463A|ICD10CM|Displ suprcndl fx w intrcndl extn lower end unsp femur, init|Displ suprcndl fx w intrcndl extn lower end unsp femur, init +C2858886|T037|AB|S72.463B|ICD10CM|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thB|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thB +C2858887|T037|AB|S72.463C|ICD10CM|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thC|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thC +C2858888|T037|AB|S72.463D|ICD10CM|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thD|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thD +C2858889|T037|AB|S72.463E|ICD10CM|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thE|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thE +C2858890|T037|AB|S72.463F|ICD10CM|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thF|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thF +C2858891|T037|AB|S72.463G|ICD10CM|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thG|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thG +C2858892|T037|AB|S72.463H|ICD10CM|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thH|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thH +C2858893|T037|AB|S72.463J|ICD10CM|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thJ|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thJ +C2858894|T037|AB|S72.463K|ICD10CM|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thK|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thK +C2858895|T037|AB|S72.463M|ICD10CM|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thM|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thM +C2858896|T037|AB|S72.463N|ICD10CM|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thN|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thN +C2858897|T037|AB|S72.463P|ICD10CM|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thP|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thP +C2858898|T037|AB|S72.463Q|ICD10CM|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thQ|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thQ +C2858899|T037|AB|S72.463R|ICD10CM|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thR|Displ suprcndl fx w intrcndl extn low end unsp femr, 7thR +C2858900|T037|AB|S72.463S|ICD10CM|Displ suprcndl fx w intrcndl extn lower end unsp femur, sqla|Displ suprcndl fx w intrcndl extn lower end unsp femur, sqla +C2858901|T037|AB|S72.464|ICD10CM|Nondisp suprcndl fx w intrcndl extn lower end of r femur|Nondisp suprcndl fx w intrcndl extn lower end of r femur +C2858901|T037|HT|S72.464|ICD10CM|Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur|Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur +C2858902|T037|AB|S72.464A|ICD10CM|Nondisp suprcndl fx w intrcndl extn lower end r femur, init|Nondisp suprcndl fx w intrcndl extn lower end r femur, init +C2858903|T037|AB|S72.464B|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thB|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thB +C2858904|T037|AB|S72.464C|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thC|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thC +C2858905|T037|AB|S72.464D|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thD|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thD +C2858906|T037|AB|S72.464E|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thE|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thE +C2858907|T037|AB|S72.464F|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thF|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thF +C2858908|T037|AB|S72.464G|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thG|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thG +C2858909|T037|AB|S72.464H|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thH|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thH +C2858910|T037|AB|S72.464J|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thJ|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thJ +C2858911|T037|AB|S72.464K|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thK|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thK +C2858912|T037|AB|S72.464M|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thM|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thM +C2858913|T037|AB|S72.464N|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thN|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thN +C2858914|T037|AB|S72.464P|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thP|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thP +C2858915|T037|AB|S72.464Q|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thQ|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thQ +C2858916|T037|AB|S72.464R|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thR|Nondisp suprcndl fx w intrcndl extn low end r femr, 7thR +C2858917|T037|AB|S72.464S|ICD10CM|Nondisp suprcndl fx w intrcndl extn lower end r femur, sqla|Nondisp suprcndl fx w intrcndl extn lower end r femur, sqla +C2858918|T037|AB|S72.465|ICD10CM|Nondisp suprcndl fx w intrcndl extn lower end of l femur|Nondisp suprcndl fx w intrcndl extn lower end of l femur +C2858918|T037|HT|S72.465|ICD10CM|Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur|Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur +C2858919|T037|AB|S72.465A|ICD10CM|Nondisp suprcndl fx w intrcndl extn lower end l femur, init|Nondisp suprcndl fx w intrcndl extn lower end l femur, init +C2858920|T037|AB|S72.465B|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thB|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thB +C2858921|T037|AB|S72.465C|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thC|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thC +C2858922|T037|AB|S72.465D|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thD|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thD +C2858923|T037|AB|S72.465E|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thE|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thE +C2858924|T037|AB|S72.465F|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thF|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thF +C2858925|T037|AB|S72.465G|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thG|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thG +C2858926|T037|AB|S72.465H|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thH|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thH +C2858927|T037|AB|S72.465J|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thJ|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thJ +C2858928|T037|AB|S72.465K|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thK|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thK +C2858929|T037|AB|S72.465M|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thM|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thM +C2858930|T037|AB|S72.465N|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thN|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thN +C2858931|T037|AB|S72.465P|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thP|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thP +C2858932|T037|AB|S72.465Q|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thQ|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thQ +C2858933|T037|AB|S72.465R|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thR|Nondisp suprcndl fx w intrcndl extn low end l femr, 7thR +C2858934|T037|AB|S72.465S|ICD10CM|Nondisp suprcndl fx w intrcndl extn lower end l femur, sqla|Nondisp suprcndl fx w intrcndl extn lower end l femur, sqla +C2858934|T037|PT|S72.465S|ICD10CM|Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, sequela|Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, sequela +C2858935|T037|AB|S72.466|ICD10CM|Nondisp suprcndl fx w intrcndl extn lower end of unsp femur|Nondisp suprcndl fx w intrcndl extn lower end of unsp femur +C2858935|T037|HT|S72.466|ICD10CM|Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur|Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur +C2858936|T037|AB|S72.466A|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end unsp femr, init|Nondisp suprcndl fx w intrcndl extn low end unsp femr, init +C2858937|T037|AB|S72.466B|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thB|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thB +C2858938|T037|AB|S72.466C|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thC|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thC +C2858939|T037|AB|S72.466D|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thD|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thD +C2858940|T037|AB|S72.466E|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thE|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thE +C2858941|T037|AB|S72.466F|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thF|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thF +C2858942|T037|AB|S72.466G|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thG|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thG +C2858943|T037|AB|S72.466H|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thH|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thH +C2858944|T037|AB|S72.466J|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thJ|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thJ +C2858945|T037|AB|S72.466K|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thK|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thK +C2858946|T037|AB|S72.466M|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thM|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thM +C2858947|T037|AB|S72.466N|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thN|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thN +C2858948|T037|AB|S72.466P|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thP|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thP +C2858949|T037|AB|S72.466Q|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thQ|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thQ +C2858950|T037|AB|S72.466R|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thR|Nondisp suprcndl fx w intrcndl extn low end unsp femr, 7thR +C2858951|T037|AB|S72.466S|ICD10CM|Nondisp suprcndl fx w intrcndl extn low end unsp femr, sqla|Nondisp suprcndl fx w intrcndl extn low end unsp femr, sqla +C2858952|T037|AB|S72.47|ICD10CM|Torus fracture of lower end of femur|Torus fracture of lower end of femur +C2858952|T037|HT|S72.47|ICD10CM|Torus fracture of lower end of femur|Torus fracture of lower end of femur +C2858953|T037|AB|S72.471|ICD10CM|Torus fracture of lower end of right femur|Torus fracture of lower end of right femur +C2858953|T037|HT|S72.471|ICD10CM|Torus fracture of lower end of right femur|Torus fracture of lower end of right femur +C2858954|T037|AB|S72.471A|ICD10CM|Torus fracture of lower end of right femur, init for clos fx|Torus fracture of lower end of right femur, init for clos fx +C2858954|T037|PT|S72.471A|ICD10CM|Torus fracture of lower end of right femur, initial encounter for closed fracture|Torus fracture of lower end of right femur, initial encounter for closed fracture +C2858955|T037|PT|S72.471D|ICD10CM|Torus fracture of lower end of right femur, subsequent encounter for fracture with routine healing|Torus fracture of lower end of right femur, subsequent encounter for fracture with routine healing +C2858955|T037|AB|S72.471D|ICD10CM|Torus fx lower end of right femur, subs for fx w routn heal|Torus fx lower end of right femur, subs for fx w routn heal +C2858956|T037|PT|S72.471G|ICD10CM|Torus fracture of lower end of right femur, subsequent encounter for fracture with delayed healing|Torus fracture of lower end of right femur, subsequent encounter for fracture with delayed healing +C2858956|T037|AB|S72.471G|ICD10CM|Torus fx lower end of right femur, subs for fx w delay heal|Torus fx lower end of right femur, subs for fx w delay heal +C2858957|T037|PT|S72.471K|ICD10CM|Torus fracture of lower end of right femur, subsequent encounter for fracture with nonunion|Torus fracture of lower end of right femur, subsequent encounter for fracture with nonunion +C2858957|T037|AB|S72.471K|ICD10CM|Torus fx lower end of right femur, subs for fx w nonunion|Torus fx lower end of right femur, subs for fx w nonunion +C2858958|T037|PT|S72.471P|ICD10CM|Torus fracture of lower end of right femur, subsequent encounter for fracture with malunion|Torus fracture of lower end of right femur, subsequent encounter for fracture with malunion +C2858958|T037|AB|S72.471P|ICD10CM|Torus fx lower end of right femur, subs for fx w malunion|Torus fx lower end of right femur, subs for fx w malunion +C2858959|T037|PT|S72.471S|ICD10CM|Torus fracture of lower end of right femur, sequela|Torus fracture of lower end of right femur, sequela +C2858959|T037|AB|S72.471S|ICD10CM|Torus fracture of lower end of right femur, sequela|Torus fracture of lower end of right femur, sequela +C2858960|T037|AB|S72.472|ICD10CM|Torus fracture of lower end of left femur|Torus fracture of lower end of left femur +C2858960|T037|HT|S72.472|ICD10CM|Torus fracture of lower end of left femur|Torus fracture of lower end of left femur +C2858961|T037|AB|S72.472A|ICD10CM|Torus fracture of lower end of left femur, init for clos fx|Torus fracture of lower end of left femur, init for clos fx +C2858961|T037|PT|S72.472A|ICD10CM|Torus fracture of lower end of left femur, initial encounter for closed fracture|Torus fracture of lower end of left femur, initial encounter for closed fracture +C2858962|T037|PT|S72.472D|ICD10CM|Torus fracture of lower end of left femur, subsequent encounter for fracture with routine healing|Torus fracture of lower end of left femur, subsequent encounter for fracture with routine healing +C2858962|T037|AB|S72.472D|ICD10CM|Torus fx lower end of left femur, subs for fx w routn heal|Torus fx lower end of left femur, subs for fx w routn heal +C2858963|T037|PT|S72.472G|ICD10CM|Torus fracture of lower end of left femur, subsequent encounter for fracture with delayed healing|Torus fracture of lower end of left femur, subsequent encounter for fracture with delayed healing +C2858963|T037|AB|S72.472G|ICD10CM|Torus fx lower end of left femur, subs for fx w delay heal|Torus fx lower end of left femur, subs for fx w delay heal +C2858964|T037|PT|S72.472K|ICD10CM|Torus fracture of lower end of left femur, subsequent encounter for fracture with nonunion|Torus fracture of lower end of left femur, subsequent encounter for fracture with nonunion +C2858964|T037|AB|S72.472K|ICD10CM|Torus fx lower end of left femur, subs for fx w nonunion|Torus fx lower end of left femur, subs for fx w nonunion +C2858965|T037|PT|S72.472P|ICD10CM|Torus fracture of lower end of left femur, subsequent encounter for fracture with malunion|Torus fracture of lower end of left femur, subsequent encounter for fracture with malunion +C2858965|T037|AB|S72.472P|ICD10CM|Torus fx lower end of left femur, subs for fx w malunion|Torus fx lower end of left femur, subs for fx w malunion +C2858966|T037|PT|S72.472S|ICD10CM|Torus fracture of lower end of left femur, sequela|Torus fracture of lower end of left femur, sequela +C2858966|T037|AB|S72.472S|ICD10CM|Torus fracture of lower end of left femur, sequela|Torus fracture of lower end of left femur, sequela +C2858967|T037|AB|S72.479|ICD10CM|Torus fracture of lower end of unspecified femur|Torus fracture of lower end of unspecified femur +C2858967|T037|HT|S72.479|ICD10CM|Torus fracture of lower end of unspecified femur|Torus fracture of lower end of unspecified femur +C2858968|T037|AB|S72.479A|ICD10CM|Torus fracture of lower end of unsp femur, init for clos fx|Torus fracture of lower end of unsp femur, init for clos fx +C2858968|T037|PT|S72.479A|ICD10CM|Torus fracture of lower end of unspecified femur, initial encounter for closed fracture|Torus fracture of lower end of unspecified femur, initial encounter for closed fracture +C2858969|T037|AB|S72.479D|ICD10CM|Torus fx lower end of unsp femur, subs for fx w routn heal|Torus fx lower end of unsp femur, subs for fx w routn heal +C2858970|T037|AB|S72.479G|ICD10CM|Torus fx lower end of unsp femur, subs for fx w delay heal|Torus fx lower end of unsp femur, subs for fx w delay heal +C2858971|T037|PT|S72.479K|ICD10CM|Torus fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion|Torus fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion +C2858971|T037|AB|S72.479K|ICD10CM|Torus fx lower end of unsp femur, subs for fx w nonunion|Torus fx lower end of unsp femur, subs for fx w nonunion +C2858972|T037|PT|S72.479P|ICD10CM|Torus fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion|Torus fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion +C2858972|T037|AB|S72.479P|ICD10CM|Torus fx lower end of unsp femur, subs for fx w malunion|Torus fx lower end of unsp femur, subs for fx w malunion +C2858973|T037|PT|S72.479S|ICD10CM|Torus fracture of lower end of unspecified femur, sequela|Torus fracture of lower end of unspecified femur, sequela +C2858973|T037|AB|S72.479S|ICD10CM|Torus fracture of lower end of unspecified femur, sequela|Torus fracture of lower end of unspecified femur, sequela +C2858974|T037|AB|S72.49|ICD10CM|Other fracture of lower end of femur|Other fracture of lower end of femur +C2858974|T037|HT|S72.49|ICD10CM|Other fracture of lower end of femur|Other fracture of lower end of femur +C2858975|T037|AB|S72.491|ICD10CM|Other fracture of lower end of right femur|Other fracture of lower end of right femur +C2858975|T037|HT|S72.491|ICD10CM|Other fracture of lower end of right femur|Other fracture of lower end of right femur +C2858976|T037|AB|S72.491A|ICD10CM|Oth fracture of lower end of right femur, init for clos fx|Oth fracture of lower end of right femur, init for clos fx +C2858976|T037|PT|S72.491A|ICD10CM|Other fracture of lower end of right femur, initial encounter for closed fracture|Other fracture of lower end of right femur, initial encounter for closed fracture +C2858977|T037|AB|S72.491B|ICD10CM|Oth fx lower end of right femur, init for opn fx type I/2|Oth fx lower end of right femur, init for opn fx type I/2 +C2858977|T037|PT|S72.491B|ICD10CM|Other fracture of lower end of right femur, initial encounter for open fracture type I or II|Other fracture of lower end of right femur, initial encounter for open fracture type I or II +C2858978|T037|AB|S72.491C|ICD10CM|Oth fx lower end of right femur, init for opn fx type 3A/B/C|Oth fx lower end of right femur, init for opn fx type 3A/B/C +C2858979|T037|AB|S72.491D|ICD10CM|Oth fx lower end of r femur, subs for clos fx w routn heal|Oth fx lower end of r femur, subs for clos fx w routn heal +C2858980|T037|AB|S72.491E|ICD10CM|Oth fx low end r femr, subs for opn fx type I/2 w routn heal|Oth fx low end r femr, subs for opn fx type I/2 w routn heal +C2858981|T037|AB|S72.491F|ICD10CM|Oth fx low end r femr, 7thF|Oth fx low end r femr, 7thF +C2858982|T037|AB|S72.491G|ICD10CM|Oth fx lower end of r femur, subs for clos fx w delay heal|Oth fx lower end of r femur, subs for clos fx w delay heal +C2858983|T037|AB|S72.491H|ICD10CM|Oth fx low end r femr, subs for opn fx type I/2 w delay heal|Oth fx low end r femr, subs for opn fx type I/2 w delay heal +C2858984|T037|AB|S72.491J|ICD10CM|Oth fx low end r femr, 7thJ|Oth fx low end r femr, 7thJ +C2858985|T037|AB|S72.491K|ICD10CM|Oth fx lower end of right femur, subs for clos fx w nonunion|Oth fx lower end of right femur, subs for clos fx w nonunion +C2858985|T037|PT|S72.491K|ICD10CM|Other fracture of lower end of right femur, subsequent encounter for closed fracture with nonunion|Other fracture of lower end of right femur, subsequent encounter for closed fracture with nonunion +C2858986|T037|AB|S72.491M|ICD10CM|Oth fx lower end r femr, subs for opn fx type I/2 w nonunion|Oth fx lower end r femr, subs for opn fx type I/2 w nonunion +C2858987|T037|AB|S72.491N|ICD10CM|Oth fx low end r femr, 7thN|Oth fx low end r femr, 7thN +C2858988|T037|AB|S72.491P|ICD10CM|Oth fx lower end of right femur, subs for clos fx w malunion|Oth fx lower end of right femur, subs for clos fx w malunion +C2858988|T037|PT|S72.491P|ICD10CM|Other fracture of lower end of right femur, subsequent encounter for closed fracture with malunion|Other fracture of lower end of right femur, subsequent encounter for closed fracture with malunion +C2858989|T037|AB|S72.491Q|ICD10CM|Oth fx lower end r femr, subs for opn fx type I/2 w malunion|Oth fx lower end r femr, subs for opn fx type I/2 w malunion +C2858990|T037|AB|S72.491R|ICD10CM|Oth fx low end r femr, 7thR|Oth fx low end r femr, 7thR +C2858991|T037|PT|S72.491S|ICD10CM|Other fracture of lower end of right femur, sequela|Other fracture of lower end of right femur, sequela +C2858991|T037|AB|S72.491S|ICD10CM|Other fracture of lower end of right femur, sequela|Other fracture of lower end of right femur, sequela +C2858992|T037|AB|S72.492|ICD10CM|Other fracture of lower end of left femur|Other fracture of lower end of left femur +C2858992|T037|HT|S72.492|ICD10CM|Other fracture of lower end of left femur|Other fracture of lower end of left femur +C2858993|T037|AB|S72.492A|ICD10CM|Oth fracture of lower end of left femur, init for clos fx|Oth fracture of lower end of left femur, init for clos fx +C2858993|T037|PT|S72.492A|ICD10CM|Other fracture of lower end of left femur, initial encounter for closed fracture|Other fracture of lower end of left femur, initial encounter for closed fracture +C2858994|T037|AB|S72.492B|ICD10CM|Oth fx lower end of left femur, init for opn fx type I/2|Oth fx lower end of left femur, init for opn fx type I/2 +C2858994|T037|PT|S72.492B|ICD10CM|Other fracture of lower end of left femur, initial encounter for open fracture type I or II|Other fracture of lower end of left femur, initial encounter for open fracture type I or II +C2858995|T037|AB|S72.492C|ICD10CM|Oth fx lower end of left femur, init for opn fx type 3A/B/C|Oth fx lower end of left femur, init for opn fx type 3A/B/C +C2858996|T037|AB|S72.492D|ICD10CM|Oth fx lower end of l femur, subs for clos fx w routn heal|Oth fx lower end of l femur, subs for clos fx w routn heal +C2858997|T037|AB|S72.492E|ICD10CM|Oth fx low end l femr, subs for opn fx type I/2 w routn heal|Oth fx low end l femr, subs for opn fx type I/2 w routn heal +C2858998|T037|AB|S72.492F|ICD10CM|Oth fx low end l femr, 7thF|Oth fx low end l femr, 7thF +C2858999|T037|AB|S72.492G|ICD10CM|Oth fx lower end of l femur, subs for clos fx w delay heal|Oth fx lower end of l femur, subs for clos fx w delay heal +C2859000|T037|AB|S72.492H|ICD10CM|Oth fx low end l femr, subs for opn fx type I/2 w delay heal|Oth fx low end l femr, subs for opn fx type I/2 w delay heal +C2859001|T037|AB|S72.492J|ICD10CM|Oth fx low end l femr, 7thJ|Oth fx low end l femr, 7thJ +C2859002|T037|AB|S72.492K|ICD10CM|Oth fx lower end of left femur, subs for clos fx w nonunion|Oth fx lower end of left femur, subs for clos fx w nonunion +C2859002|T037|PT|S72.492K|ICD10CM|Other fracture of lower end of left femur, subsequent encounter for closed fracture with nonunion|Other fracture of lower end of left femur, subsequent encounter for closed fracture with nonunion +C2859003|T037|AB|S72.492M|ICD10CM|Oth fx lower end l femr, subs for opn fx type I/2 w nonunion|Oth fx lower end l femr, subs for opn fx type I/2 w nonunion +C2859004|T037|AB|S72.492N|ICD10CM|Oth fx low end l femr, 7thN|Oth fx low end l femr, 7thN +C2859005|T037|AB|S72.492P|ICD10CM|Oth fx lower end of left femur, subs for clos fx w malunion|Oth fx lower end of left femur, subs for clos fx w malunion +C2859005|T037|PT|S72.492P|ICD10CM|Other fracture of lower end of left femur, subsequent encounter for closed fracture with malunion|Other fracture of lower end of left femur, subsequent encounter for closed fracture with malunion +C2859006|T037|AB|S72.492Q|ICD10CM|Oth fx lower end l femr, subs for opn fx type I/2 w malunion|Oth fx lower end l femr, subs for opn fx type I/2 w malunion +C2859007|T037|AB|S72.492R|ICD10CM|Oth fx low end l femr, 7thR|Oth fx low end l femr, 7thR +C2859008|T037|PT|S72.492S|ICD10CM|Other fracture of lower end of left femur, sequela|Other fracture of lower end of left femur, sequela +C2859008|T037|AB|S72.492S|ICD10CM|Other fracture of lower end of left femur, sequela|Other fracture of lower end of left femur, sequela +C2859009|T037|AB|S72.499|ICD10CM|Other fracture of lower end of unspecified femur|Other fracture of lower end of unspecified femur +C2859009|T037|HT|S72.499|ICD10CM|Other fracture of lower end of unspecified femur|Other fracture of lower end of unspecified femur +C2859010|T037|AB|S72.499A|ICD10CM|Oth fracture of lower end of unsp femur, init for clos fx|Oth fracture of lower end of unsp femur, init for clos fx +C2859010|T037|PT|S72.499A|ICD10CM|Other fracture of lower end of unspecified femur, initial encounter for closed fracture|Other fracture of lower end of unspecified femur, initial encounter for closed fracture +C2859011|T037|AB|S72.499B|ICD10CM|Oth fx lower end of unsp femur, init for opn fx type I/2|Oth fx lower end of unsp femur, init for opn fx type I/2 +C2859011|T037|PT|S72.499B|ICD10CM|Other fracture of lower end of unspecified femur, initial encounter for open fracture type I or II|Other fracture of lower end of unspecified femur, initial encounter for open fracture type I or II +C2859012|T037|AB|S72.499C|ICD10CM|Oth fx lower end of unsp femur, init for opn fx type 3A/B/C|Oth fx lower end of unsp femur, init for opn fx type 3A/B/C +C2859013|T037|AB|S72.499D|ICD10CM|Oth fx lower end unsp femur, subs for clos fx w routn heal|Oth fx lower end unsp femur, subs for clos fx w routn heal +C2859014|T037|AB|S72.499E|ICD10CM|Oth fx low end unsp femr, 7thE|Oth fx low end unsp femr, 7thE +C2859015|T037|AB|S72.499F|ICD10CM|Oth fx low end unsp femr, 7thF|Oth fx low end unsp femr, 7thF +C2859016|T037|AB|S72.499G|ICD10CM|Oth fx lower end unsp femur, subs for clos fx w delay heal|Oth fx lower end unsp femur, subs for clos fx w delay heal +C2859017|T037|AB|S72.499H|ICD10CM|Oth fx low end unsp femr, 7thH|Oth fx low end unsp femr, 7thH +C2859018|T037|AB|S72.499J|ICD10CM|Oth fx low end unsp femr, 7thJ|Oth fx low end unsp femr, 7thJ +C2859019|T037|AB|S72.499K|ICD10CM|Oth fx lower end of unsp femur, subs for clos fx w nonunion|Oth fx lower end of unsp femur, subs for clos fx w nonunion +C2859020|T037|AB|S72.499M|ICD10CM|Oth fx low end unsp femr, 7thM|Oth fx low end unsp femr, 7thM +C2859021|T037|AB|S72.499N|ICD10CM|Oth fx low end unsp femr, 7thN|Oth fx low end unsp femr, 7thN +C2859022|T037|AB|S72.499P|ICD10CM|Oth fx lower end of unsp femur, subs for clos fx w malunion|Oth fx lower end of unsp femur, subs for clos fx w malunion +C2859023|T037|AB|S72.499Q|ICD10CM|Oth fx low end unsp femr, 7thQ|Oth fx low end unsp femr, 7thQ +C2859024|T037|AB|S72.499R|ICD10CM|Oth fx low end unsp femr, 7thR|Oth fx low end unsp femr, 7thR +C2859025|T037|PT|S72.499S|ICD10CM|Other fracture of lower end of unspecified femur, sequela|Other fracture of lower end of unspecified femur, sequela +C2859025|T037|AB|S72.499S|ICD10CM|Other fracture of lower end of unspecified femur, sequela|Other fracture of lower end of unspecified femur, sequela +C0452092|T037|PT|S72.7|ICD10|Multiple fractures of femur|Multiple fractures of femur +C0478325|T037|PT|S72.8|ICD10|Fractures of other parts of femur|Fractures of other parts of femur +C0435804|T037|AB|S72.8|ICD10CM|Other fracture of femur|Other fracture of femur +C0435804|T037|HT|S72.8|ICD10CM|Other fracture of femur|Other fracture of femur +C0435804|T037|HT|S72.8X|ICD10CM|Other fracture of femur|Other fracture of femur +C0435804|T037|AB|S72.8X|ICD10CM|Other fracture of femur|Other fracture of femur +C2859026|T037|AB|S72.8X1|ICD10CM|Other fracture of right femur|Other fracture of right femur +C2859026|T037|HT|S72.8X1|ICD10CM|Other fracture of right femur|Other fracture of right femur +C2859027|T037|AB|S72.8X1A|ICD10CM|Oth fracture of right femur, init encntr for closed fracture|Oth fracture of right femur, init encntr for closed fracture +C2859027|T037|PT|S72.8X1A|ICD10CM|Other fracture of right femur, initial encounter for closed fracture|Other fracture of right femur, initial encounter for closed fracture +C2859028|T037|AB|S72.8X1B|ICD10CM|Oth fracture of right femur, init for opn fx type I/2|Oth fracture of right femur, init for opn fx type I/2 +C2859028|T037|PT|S72.8X1B|ICD10CM|Other fracture of right femur, initial encounter for open fracture type I or II|Other fracture of right femur, initial encounter for open fracture type I or II +C2859029|T037|AB|S72.8X1C|ICD10CM|Oth fracture of right femur, init for opn fx type 3A/B/C|Oth fracture of right femur, init for opn fx type 3A/B/C +C2859029|T037|PT|S72.8X1C|ICD10CM|Other fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC|Other fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2859030|T037|AB|S72.8X1D|ICD10CM|Oth fracture of right femur, subs for clos fx w routn heal|Oth fracture of right femur, subs for clos fx w routn heal +C2859030|T037|PT|S72.8X1D|ICD10CM|Other fracture of right femur, subsequent encounter for closed fracture with routine healing|Other fracture of right femur, subsequent encounter for closed fracture with routine healing +C2859031|T037|AB|S72.8X1E|ICD10CM|Oth fx right femur, subs for opn fx type I/2 w routn heal|Oth fx right femur, subs for opn fx type I/2 w routn heal +C2859032|T037|AB|S72.8X1F|ICD10CM|Oth fx right femur, subs for opn fx type 3A/B/C w routn heal|Oth fx right femur, subs for opn fx type 3A/B/C w routn heal +C2859033|T037|AB|S72.8X1G|ICD10CM|Oth fracture of right femur, subs for clos fx w delay heal|Oth fracture of right femur, subs for clos fx w delay heal +C2859033|T037|PT|S72.8X1G|ICD10CM|Other fracture of right femur, subsequent encounter for closed fracture with delayed healing|Other fracture of right femur, subsequent encounter for closed fracture with delayed healing +C2859034|T037|AB|S72.8X1H|ICD10CM|Oth fx right femur, subs for opn fx type I/2 w delay heal|Oth fx right femur, subs for opn fx type I/2 w delay heal +C2859035|T037|AB|S72.8X1J|ICD10CM|Oth fx right femur, subs for opn fx type 3A/B/C w delay heal|Oth fx right femur, subs for opn fx type 3A/B/C w delay heal +C2859036|T037|AB|S72.8X1K|ICD10CM|Oth fracture of right femur, subs for clos fx w nonunion|Oth fracture of right femur, subs for clos fx w nonunion +C2859036|T037|PT|S72.8X1K|ICD10CM|Other fracture of right femur, subsequent encounter for closed fracture with nonunion|Other fracture of right femur, subsequent encounter for closed fracture with nonunion +C2859037|T037|AB|S72.8X1M|ICD10CM|Oth fx right femur, subs for opn fx type I/2 w nonunion|Oth fx right femur, subs for opn fx type I/2 w nonunion +C2859037|T037|PT|S72.8X1M|ICD10CM|Other fracture of right femur, subsequent encounter for open fracture type I or II with nonunion|Other fracture of right femur, subsequent encounter for open fracture type I or II with nonunion +C2859038|T037|AB|S72.8X1N|ICD10CM|Oth fx right femur, subs for opn fx type 3A/B/C w nonunion|Oth fx right femur, subs for opn fx type 3A/B/C w nonunion +C2859039|T037|AB|S72.8X1P|ICD10CM|Oth fracture of right femur, subs for clos fx w malunion|Oth fracture of right femur, subs for clos fx w malunion +C2859039|T037|PT|S72.8X1P|ICD10CM|Other fracture of right femur, subsequent encounter for closed fracture with malunion|Other fracture of right femur, subsequent encounter for closed fracture with malunion +C2859040|T037|AB|S72.8X1Q|ICD10CM|Oth fx right femur, subs for opn fx type I/2 w malunion|Oth fx right femur, subs for opn fx type I/2 w malunion +C2859040|T037|PT|S72.8X1Q|ICD10CM|Other fracture of right femur, subsequent encounter for open fracture type I or II with malunion|Other fracture of right femur, subsequent encounter for open fracture type I or II with malunion +C2859041|T037|AB|S72.8X1R|ICD10CM|Oth fx right femur, subs for opn fx type 3A/B/C w malunion|Oth fx right femur, subs for opn fx type 3A/B/C w malunion +C2859042|T037|PT|S72.8X1S|ICD10CM|Other fracture of right femur, sequela|Other fracture of right femur, sequela +C2859042|T037|AB|S72.8X1S|ICD10CM|Other fracture of right femur, sequela|Other fracture of right femur, sequela +C2859043|T037|AB|S72.8X2|ICD10CM|Other fracture of left femur|Other fracture of left femur +C2859043|T037|HT|S72.8X2|ICD10CM|Other fracture of left femur|Other fracture of left femur +C2859044|T037|AB|S72.8X2A|ICD10CM|Oth fracture of left femur, init encntr for closed fracture|Oth fracture of left femur, init encntr for closed fracture +C2859044|T037|PT|S72.8X2A|ICD10CM|Other fracture of left femur, initial encounter for closed fracture|Other fracture of left femur, initial encounter for closed fracture +C2859045|T037|AB|S72.8X2B|ICD10CM|Oth fracture of left femur, init for opn fx type I/2|Oth fracture of left femur, init for opn fx type I/2 +C2859045|T037|PT|S72.8X2B|ICD10CM|Other fracture of left femur, initial encounter for open fracture type I or II|Other fracture of left femur, initial encounter for open fracture type I or II +C2859046|T037|AB|S72.8X2C|ICD10CM|Oth fracture of left femur, init for opn fx type 3A/B/C|Oth fracture of left femur, init for opn fx type 3A/B/C +C2859046|T037|PT|S72.8X2C|ICD10CM|Other fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC|Other fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2859047|T037|AB|S72.8X2D|ICD10CM|Oth fracture of left femur, subs for clos fx w routn heal|Oth fracture of left femur, subs for clos fx w routn heal +C2859047|T037|PT|S72.8X2D|ICD10CM|Other fracture of left femur, subsequent encounter for closed fracture with routine healing|Other fracture of left femur, subsequent encounter for closed fracture with routine healing +C2859048|T037|AB|S72.8X2E|ICD10CM|Oth fx left femur, subs for opn fx type I/2 w routn heal|Oth fx left femur, subs for opn fx type I/2 w routn heal +C2859049|T037|AB|S72.8X2F|ICD10CM|Oth fx left femur, subs for opn fx type 3A/B/C w routn heal|Oth fx left femur, subs for opn fx type 3A/B/C w routn heal +C2859050|T037|AB|S72.8X2G|ICD10CM|Oth fracture of left femur, subs for clos fx w delay heal|Oth fracture of left femur, subs for clos fx w delay heal +C2859050|T037|PT|S72.8X2G|ICD10CM|Other fracture of left femur, subsequent encounter for closed fracture with delayed healing|Other fracture of left femur, subsequent encounter for closed fracture with delayed healing +C2859051|T037|AB|S72.8X2H|ICD10CM|Oth fx left femur, subs for opn fx type I/2 w delay heal|Oth fx left femur, subs for opn fx type I/2 w delay heal +C2859052|T037|AB|S72.8X2J|ICD10CM|Oth fx left femur, subs for opn fx type 3A/B/C w delay heal|Oth fx left femur, subs for opn fx type 3A/B/C w delay heal +C2859053|T037|AB|S72.8X2K|ICD10CM|Oth fracture of left femur, subs for clos fx w nonunion|Oth fracture of left femur, subs for clos fx w nonunion +C2859053|T037|PT|S72.8X2K|ICD10CM|Other fracture of left femur, subsequent encounter for closed fracture with nonunion|Other fracture of left femur, subsequent encounter for closed fracture with nonunion +C2859054|T037|AB|S72.8X2M|ICD10CM|Oth fx left femur, subs for opn fx type I/2 w nonunion|Oth fx left femur, subs for opn fx type I/2 w nonunion +C2859054|T037|PT|S72.8X2M|ICD10CM|Other fracture of left femur, subsequent encounter for open fracture type I or II with nonunion|Other fracture of left femur, subsequent encounter for open fracture type I or II with nonunion +C2859055|T037|AB|S72.8X2N|ICD10CM|Oth fx left femur, subs for opn fx type 3A/B/C w nonunion|Oth fx left femur, subs for opn fx type 3A/B/C w nonunion +C2859056|T037|AB|S72.8X2P|ICD10CM|Oth fracture of left femur, subs for clos fx w malunion|Oth fracture of left femur, subs for clos fx w malunion +C2859056|T037|PT|S72.8X2P|ICD10CM|Other fracture of left femur, subsequent encounter for closed fracture with malunion|Other fracture of left femur, subsequent encounter for closed fracture with malunion +C2859057|T037|AB|S72.8X2Q|ICD10CM|Oth fx left femur, subs for opn fx type I/2 w malunion|Oth fx left femur, subs for opn fx type I/2 w malunion +C2859057|T037|PT|S72.8X2Q|ICD10CM|Other fracture of left femur, subsequent encounter for open fracture type I or II with malunion|Other fracture of left femur, subsequent encounter for open fracture type I or II with malunion +C2859058|T037|AB|S72.8X2R|ICD10CM|Oth fx left femur, subs for opn fx type 3A/B/C w malunion|Oth fx left femur, subs for opn fx type 3A/B/C w malunion +C2859059|T037|PT|S72.8X2S|ICD10CM|Other fracture of left femur, sequela|Other fracture of left femur, sequela +C2859059|T037|AB|S72.8X2S|ICD10CM|Other fracture of left femur, sequela|Other fracture of left femur, sequela +C2859060|T037|AB|S72.8X9|ICD10CM|Other fracture of unspecified femur|Other fracture of unspecified femur +C2859060|T037|HT|S72.8X9|ICD10CM|Other fracture of unspecified femur|Other fracture of unspecified femur +C2859061|T037|AB|S72.8X9A|ICD10CM|Oth fracture of unsp femur, init encntr for closed fracture|Oth fracture of unsp femur, init encntr for closed fracture +C2859061|T037|PT|S72.8X9A|ICD10CM|Other fracture of unspecified femur, initial encounter for closed fracture|Other fracture of unspecified femur, initial encounter for closed fracture +C2859062|T037|AB|S72.8X9B|ICD10CM|Oth fracture of unsp femur, init for opn fx type I/2|Oth fracture of unsp femur, init for opn fx type I/2 +C2859062|T037|PT|S72.8X9B|ICD10CM|Other fracture of unspecified femur, initial encounter for open fracture type I or II|Other fracture of unspecified femur, initial encounter for open fracture type I or II +C2859063|T037|AB|S72.8X9C|ICD10CM|Oth fracture of unsp femur, init for opn fx type 3A/B/C|Oth fracture of unsp femur, init for opn fx type 3A/B/C +C2859063|T037|PT|S72.8X9C|ICD10CM|Other fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC|Other fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2859064|T037|AB|S72.8X9D|ICD10CM|Oth fracture of unsp femur, subs for clos fx w routn heal|Oth fracture of unsp femur, subs for clos fx w routn heal +C2859064|T037|PT|S72.8X9D|ICD10CM|Other fracture of unspecified femur, subsequent encounter for closed fracture with routine healing|Other fracture of unspecified femur, subsequent encounter for closed fracture with routine healing +C2859065|T037|AB|S72.8X9E|ICD10CM|Oth fx unsp femur, subs for opn fx type I/2 w routn heal|Oth fx unsp femur, subs for opn fx type I/2 w routn heal +C2859066|T037|AB|S72.8X9F|ICD10CM|Oth fx unsp femur, subs for opn fx type 3A/B/C w routn heal|Oth fx unsp femur, subs for opn fx type 3A/B/C w routn heal +C2859067|T037|AB|S72.8X9G|ICD10CM|Oth fracture of unsp femur, subs for clos fx w delay heal|Oth fracture of unsp femur, subs for clos fx w delay heal +C2859067|T037|PT|S72.8X9G|ICD10CM|Other fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing|Other fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing +C2859068|T037|AB|S72.8X9H|ICD10CM|Oth fx unsp femur, subs for opn fx type I/2 w delay heal|Oth fx unsp femur, subs for opn fx type I/2 w delay heal +C2859069|T037|AB|S72.8X9J|ICD10CM|Oth fx unsp femur, subs for opn fx type 3A/B/C w delay heal|Oth fx unsp femur, subs for opn fx type 3A/B/C w delay heal +C2859070|T037|AB|S72.8X9K|ICD10CM|Oth fracture of unsp femur, subs for clos fx w nonunion|Oth fracture of unsp femur, subs for clos fx w nonunion +C2859070|T037|PT|S72.8X9K|ICD10CM|Other fracture of unspecified femur, subsequent encounter for closed fracture with nonunion|Other fracture of unspecified femur, subsequent encounter for closed fracture with nonunion +C2859071|T037|AB|S72.8X9M|ICD10CM|Oth fx unsp femur, subs for opn fx type I/2 w nonunion|Oth fx unsp femur, subs for opn fx type I/2 w nonunion +C2859072|T037|AB|S72.8X9N|ICD10CM|Oth fx unsp femur, subs for opn fx type 3A/B/C w nonunion|Oth fx unsp femur, subs for opn fx type 3A/B/C w nonunion +C2859073|T037|AB|S72.8X9P|ICD10CM|Oth fracture of unsp femur, subs for clos fx w malunion|Oth fracture of unsp femur, subs for clos fx w malunion +C2859073|T037|PT|S72.8X9P|ICD10CM|Other fracture of unspecified femur, subsequent encounter for closed fracture with malunion|Other fracture of unspecified femur, subsequent encounter for closed fracture with malunion +C2859074|T037|AB|S72.8X9Q|ICD10CM|Oth fx unsp femur, subs for opn fx type I/2 w malunion|Oth fx unsp femur, subs for opn fx type I/2 w malunion +C2859075|T037|AB|S72.8X9R|ICD10CM|Oth fx unsp femur, subs for opn fx type 3A/B/C w malunion|Oth fx unsp femur, subs for opn fx type 3A/B/C w malunion +C2859076|T037|PT|S72.8X9S|ICD10CM|Other fracture of unspecified femur, sequela|Other fracture of unspecified femur, sequela +C2859076|T037|AB|S72.8X9S|ICD10CM|Other fracture of unspecified femur, sequela|Other fracture of unspecified femur, sequela +C0015802|T037|PT|S72.9|ICD10|Fracture of femur, part unspecified|Fracture of femur, part unspecified +C0015802|T037|ET|S72.9|ICD10CM|Fracture of thigh NOS|Fracture of thigh NOS +C0015802|T037|ET|S72.9|ICD10CM|Fracture of upper leg NOS|Fracture of upper leg NOS +C2859077|T037|AB|S72.9|ICD10CM|Unspecified fracture of femur|Unspecified fracture of femur +C2859077|T037|HT|S72.9|ICD10CM|Unspecified fracture of femur|Unspecified fracture of femur +C2859078|T037|AB|S72.90|ICD10CM|Unspecified fracture of unspecified femur|Unspecified fracture of unspecified femur +C2859078|T037|HT|S72.90|ICD10CM|Unspecified fracture of unspecified femur|Unspecified fracture of unspecified femur +C2859079|T037|AB|S72.90XA|ICD10CM|Unsp fracture of unsp femur, init encntr for closed fracture|Unsp fracture of unsp femur, init encntr for closed fracture +C2859079|T037|PT|S72.90XA|ICD10CM|Unspecified fracture of unspecified femur, initial encounter for closed fracture|Unspecified fracture of unspecified femur, initial encounter for closed fracture +C2859080|T037|AB|S72.90XB|ICD10CM|Unsp fracture of unsp femur, init for opn fx type I/2|Unsp fracture of unsp femur, init for opn fx type I/2 +C2859080|T037|PT|S72.90XB|ICD10CM|Unspecified fracture of unspecified femur, initial encounter for open fracture type I or II|Unspecified fracture of unspecified femur, initial encounter for open fracture type I or II +C2859081|T037|AB|S72.90XC|ICD10CM|Unsp fracture of unsp femur, init for opn fx type 3A/B/C|Unsp fracture of unsp femur, init for opn fx type 3A/B/C +C2859082|T037|AB|S72.90XD|ICD10CM|Unsp fracture of unsp femur, subs for clos fx w routn heal|Unsp fracture of unsp femur, subs for clos fx w routn heal +C2859083|T037|AB|S72.90XE|ICD10CM|Unsp fx unsp femur, subs for opn fx type I/2 w routn heal|Unsp fx unsp femur, subs for opn fx type I/2 w routn heal +C2859084|T037|AB|S72.90XF|ICD10CM|Unsp fx unsp femur, subs for opn fx type 3A/B/C w routn heal|Unsp fx unsp femur, subs for opn fx type 3A/B/C w routn heal +C2859085|T037|AB|S72.90XG|ICD10CM|Unsp fracture of unsp femur, subs for clos fx w delay heal|Unsp fracture of unsp femur, subs for clos fx w delay heal +C2859086|T037|AB|S72.90XH|ICD10CM|Unsp fx unsp femur, subs for opn fx type I/2 w delay heal|Unsp fx unsp femur, subs for opn fx type I/2 w delay heal +C2859087|T037|AB|S72.90XJ|ICD10CM|Unsp fx unsp femur, subs for opn fx type 3A/B/C w delay heal|Unsp fx unsp femur, subs for opn fx type 3A/B/C w delay heal +C2859088|T037|AB|S72.90XK|ICD10CM|Unsp fracture of unsp femur, subs for clos fx w nonunion|Unsp fracture of unsp femur, subs for clos fx w nonunion +C2859088|T037|PT|S72.90XK|ICD10CM|Unspecified fracture of unspecified femur, subsequent encounter for closed fracture with nonunion|Unspecified fracture of unspecified femur, subsequent encounter for closed fracture with nonunion +C2859089|T037|AB|S72.90XM|ICD10CM|Unsp fx unsp femur, subs for opn fx type I/2 w nonunion|Unsp fx unsp femur, subs for opn fx type I/2 w nonunion +C2859090|T037|AB|S72.90XN|ICD10CM|Unsp fx unsp femur, subs for opn fx type 3A/B/C w nonunion|Unsp fx unsp femur, subs for opn fx type 3A/B/C w nonunion +C2859091|T037|AB|S72.90XP|ICD10CM|Unsp fracture of unsp femur, subs for clos fx w malunion|Unsp fracture of unsp femur, subs for clos fx w malunion +C2859091|T037|PT|S72.90XP|ICD10CM|Unspecified fracture of unspecified femur, subsequent encounter for closed fracture with malunion|Unspecified fracture of unspecified femur, subsequent encounter for closed fracture with malunion +C2859092|T037|AB|S72.90XQ|ICD10CM|Unsp fx unsp femur, subs for opn fx type I/2 w malunion|Unsp fx unsp femur, subs for opn fx type I/2 w malunion +C2859093|T037|AB|S72.90XR|ICD10CM|Unsp fx unsp femur, subs for opn fx type 3A/B/C w malunion|Unsp fx unsp femur, subs for opn fx type 3A/B/C w malunion +C2859094|T037|PT|S72.90XS|ICD10CM|Unspecified fracture of unspecified femur, sequela|Unspecified fracture of unspecified femur, sequela +C2859094|T037|AB|S72.90XS|ICD10CM|Unspecified fracture of unspecified femur, sequela|Unspecified fracture of unspecified femur, sequela +C2859095|T037|AB|S72.91|ICD10CM|Unspecified fracture of right femur|Unspecified fracture of right femur +C2859095|T037|HT|S72.91|ICD10CM|Unspecified fracture of right femur|Unspecified fracture of right femur +C2859096|T037|AB|S72.91XA|ICD10CM|Unsp fracture of right femur, init for clos fx|Unsp fracture of right femur, init for clos fx +C2859096|T037|PT|S72.91XA|ICD10CM|Unspecified fracture of right femur, initial encounter for closed fracture|Unspecified fracture of right femur, initial encounter for closed fracture +C2859097|T037|AB|S72.91XB|ICD10CM|Unsp fracture of right femur, init for opn fx type I/2|Unsp fracture of right femur, init for opn fx type I/2 +C2859097|T037|PT|S72.91XB|ICD10CM|Unspecified fracture of right femur, initial encounter for open fracture type I or II|Unspecified fracture of right femur, initial encounter for open fracture type I or II +C2859098|T037|AB|S72.91XC|ICD10CM|Unsp fracture of right femur, init for opn fx type 3A/B/C|Unsp fracture of right femur, init for opn fx type 3A/B/C +C2859098|T037|PT|S72.91XC|ICD10CM|Unspecified fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC|Unspecified fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2859099|T037|AB|S72.91XD|ICD10CM|Unsp fracture of right femur, subs for clos fx w routn heal|Unsp fracture of right femur, subs for clos fx w routn heal +C2859099|T037|PT|S72.91XD|ICD10CM|Unspecified fracture of right femur, subsequent encounter for closed fracture with routine healing|Unspecified fracture of right femur, subsequent encounter for closed fracture with routine healing +C2859100|T037|AB|S72.91XE|ICD10CM|Unsp fx right femur, subs for opn fx type I/2 w routn heal|Unsp fx right femur, subs for opn fx type I/2 w routn heal +C2859101|T037|AB|S72.91XF|ICD10CM|Unsp fx r femur, subs for opn fx type 3A/B/C w routn heal|Unsp fx r femur, subs for opn fx type 3A/B/C w routn heal +C2859102|T037|AB|S72.91XG|ICD10CM|Unsp fracture of right femur, subs for clos fx w delay heal|Unsp fracture of right femur, subs for clos fx w delay heal +C2859102|T037|PT|S72.91XG|ICD10CM|Unspecified fracture of right femur, subsequent encounter for closed fracture with delayed healing|Unspecified fracture of right femur, subsequent encounter for closed fracture with delayed healing +C2859103|T037|AB|S72.91XH|ICD10CM|Unsp fx right femur, subs for opn fx type I/2 w delay heal|Unsp fx right femur, subs for opn fx type I/2 w delay heal +C2859104|T037|AB|S72.91XJ|ICD10CM|Unsp fx r femur, subs for opn fx type 3A/B/C w delay heal|Unsp fx r femur, subs for opn fx type 3A/B/C w delay heal +C2859105|T037|AB|S72.91XK|ICD10CM|Unsp fracture of right femur, subs for clos fx w nonunion|Unsp fracture of right femur, subs for clos fx w nonunion +C2859105|T037|PT|S72.91XK|ICD10CM|Unspecified fracture of right femur, subsequent encounter for closed fracture with nonunion|Unspecified fracture of right femur, subsequent encounter for closed fracture with nonunion +C2859106|T037|AB|S72.91XM|ICD10CM|Unsp fx right femur, subs for opn fx type I/2 w nonunion|Unsp fx right femur, subs for opn fx type I/2 w nonunion +C2859107|T037|AB|S72.91XN|ICD10CM|Unsp fx right femur, subs for opn fx type 3A/B/C w nonunion|Unsp fx right femur, subs for opn fx type 3A/B/C w nonunion +C2859108|T037|AB|S72.91XP|ICD10CM|Unsp fracture of right femur, subs for clos fx w malunion|Unsp fracture of right femur, subs for clos fx w malunion +C2859108|T037|PT|S72.91XP|ICD10CM|Unspecified fracture of right femur, subsequent encounter for closed fracture with malunion|Unspecified fracture of right femur, subsequent encounter for closed fracture with malunion +C2859109|T037|AB|S72.91XQ|ICD10CM|Unsp fx right femur, subs for opn fx type I/2 w malunion|Unsp fx right femur, subs for opn fx type I/2 w malunion +C2859110|T037|AB|S72.91XR|ICD10CM|Unsp fx right femur, subs for opn fx type 3A/B/C w malunion|Unsp fx right femur, subs for opn fx type 3A/B/C w malunion +C2859111|T037|PT|S72.91XS|ICD10CM|Unspecified fracture of right femur, sequela|Unspecified fracture of right femur, sequela +C2859111|T037|AB|S72.91XS|ICD10CM|Unspecified fracture of right femur, sequela|Unspecified fracture of right femur, sequela +C2859112|T037|AB|S72.92|ICD10CM|Unspecified fracture of left femur|Unspecified fracture of left femur +C2859112|T037|HT|S72.92|ICD10CM|Unspecified fracture of left femur|Unspecified fracture of left femur +C2859113|T037|AB|S72.92XA|ICD10CM|Unsp fracture of left femur, init encntr for closed fracture|Unsp fracture of left femur, init encntr for closed fracture +C2859113|T037|PT|S72.92XA|ICD10CM|Unspecified fracture of left femur, initial encounter for closed fracture|Unspecified fracture of left femur, initial encounter for closed fracture +C2859114|T037|AB|S72.92XB|ICD10CM|Unsp fracture of left femur, init for opn fx type I/2|Unsp fracture of left femur, init for opn fx type I/2 +C2859114|T037|PT|S72.92XB|ICD10CM|Unspecified fracture of left femur, initial encounter for open fracture type I or II|Unspecified fracture of left femur, initial encounter for open fracture type I or II +C2859115|T037|AB|S72.92XC|ICD10CM|Unsp fracture of left femur, init for opn fx type 3A/B/C|Unsp fracture of left femur, init for opn fx type 3A/B/C +C2859115|T037|PT|S72.92XC|ICD10CM|Unspecified fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC|Unspecified fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2859116|T037|AB|S72.92XD|ICD10CM|Unsp fracture of left femur, subs for clos fx w routn heal|Unsp fracture of left femur, subs for clos fx w routn heal +C2859116|T037|PT|S72.92XD|ICD10CM|Unspecified fracture of left femur, subsequent encounter for closed fracture with routine healing|Unspecified fracture of left femur, subsequent encounter for closed fracture with routine healing +C2859117|T037|AB|S72.92XE|ICD10CM|Unsp fx left femur, subs for opn fx type I/2 w routn heal|Unsp fx left femur, subs for opn fx type I/2 w routn heal +C2859118|T037|AB|S72.92XF|ICD10CM|Unsp fx left femur, subs for opn fx type 3A/B/C w routn heal|Unsp fx left femur, subs for opn fx type 3A/B/C w routn heal +C2859119|T037|AB|S72.92XG|ICD10CM|Unsp fracture of left femur, subs for clos fx w delay heal|Unsp fracture of left femur, subs for clos fx w delay heal +C2859119|T037|PT|S72.92XG|ICD10CM|Unspecified fracture of left femur, subsequent encounter for closed fracture with delayed healing|Unspecified fracture of left femur, subsequent encounter for closed fracture with delayed healing +C2859120|T037|AB|S72.92XH|ICD10CM|Unsp fx left femur, subs for opn fx type I/2 w delay heal|Unsp fx left femur, subs for opn fx type I/2 w delay heal +C2859121|T037|AB|S72.92XJ|ICD10CM|Unsp fx left femur, subs for opn fx type 3A/B/C w delay heal|Unsp fx left femur, subs for opn fx type 3A/B/C w delay heal +C2859122|T037|AB|S72.92XK|ICD10CM|Unsp fracture of left femur, subs for clos fx w nonunion|Unsp fracture of left femur, subs for clos fx w nonunion +C2859122|T037|PT|S72.92XK|ICD10CM|Unspecified fracture of left femur, subsequent encounter for closed fracture with nonunion|Unspecified fracture of left femur, subsequent encounter for closed fracture with nonunion +C2859123|T037|AB|S72.92XM|ICD10CM|Unsp fx left femur, subs for opn fx type I/2 w nonunion|Unsp fx left femur, subs for opn fx type I/2 w nonunion +C2859124|T037|AB|S72.92XN|ICD10CM|Unsp fx left femur, subs for opn fx type 3A/B/C w nonunion|Unsp fx left femur, subs for opn fx type 3A/B/C w nonunion +C2859125|T037|AB|S72.92XP|ICD10CM|Unsp fracture of left femur, subs for clos fx w malunion|Unsp fracture of left femur, subs for clos fx w malunion +C2859125|T037|PT|S72.92XP|ICD10CM|Unspecified fracture of left femur, subsequent encounter for closed fracture with malunion|Unspecified fracture of left femur, subsequent encounter for closed fracture with malunion +C2859126|T037|AB|S72.92XQ|ICD10CM|Unsp fx left femur, subs for opn fx type I/2 w malunion|Unsp fx left femur, subs for opn fx type I/2 w malunion +C2859127|T037|AB|S72.92XR|ICD10CM|Unsp fx left femur, subs for opn fx type 3A/B/C w malunion|Unsp fx left femur, subs for opn fx type 3A/B/C w malunion +C2859128|T037|PT|S72.92XS|ICD10CM|Unspecified fracture of left femur, sequela|Unspecified fracture of left femur, sequela +C2859128|T037|AB|S72.92XS|ICD10CM|Unspecified fracture of left femur, sequela|Unspecified fracture of left femur, sequela +C4290365|T037|ET|S73|ICD10CM|avulsion of joint or ligament of hip|avulsion of joint or ligament of hip +C2859136|T037|AB|S73|ICD10CM|Dislocation and sprain of joint and ligaments of hip|Dislocation and sprain of joint and ligaments of hip +C2859136|T037|HT|S73|ICD10CM|Dislocation and sprain of joint and ligaments of hip|Dislocation and sprain of joint and ligaments of hip +C0495929|T037|HT|S73|ICD10|Dislocation, sprain and strain of joint and ligaments of hip|Dislocation, sprain and strain of joint and ligaments of hip +C4290366|T037|ET|S73|ICD10CM|laceration of cartilage, joint or ligament of hip|laceration of cartilage, joint or ligament of hip +C4290367|T037|ET|S73|ICD10CM|sprain of cartilage, joint or ligament of hip|sprain of cartilage, joint or ligament of hip +C4290368|T037|ET|S73|ICD10CM|traumatic hemarthrosis of joint or ligament of hip|traumatic hemarthrosis of joint or ligament of hip +C4290369|T037|ET|S73|ICD10CM|traumatic rupture of joint or ligament of hip|traumatic rupture of joint or ligament of hip +C4290370|T037|ET|S73|ICD10CM|traumatic subluxation of joint or ligament of hip|traumatic subluxation of joint or ligament of hip +C4290371|T037|ET|S73|ICD10CM|traumatic tear of joint or ligament of hip|traumatic tear of joint or ligament of hip +C0019554|T037|PT|S73.0|ICD10|Dislocation of hip|Dislocation of hip +C2859137|T037|HT|S73.0|ICD10CM|Subluxation and dislocation of hip|Subluxation and dislocation of hip +C2859137|T037|AB|S73.0|ICD10CM|Subluxation and dislocation of hip|Subluxation and dislocation of hip +C0019554|T037|ET|S73.00|ICD10CM|Dislocation of hip NOS|Dislocation of hip NOS +C0434785|T037|ET|S73.00|ICD10CM|Subluxation of hip NOS|Subluxation of hip NOS +C2859138|T037|AB|S73.00|ICD10CM|Unspecified subluxation and dislocation of hip|Unspecified subluxation and dislocation of hip +C2859138|T037|HT|S73.00|ICD10CM|Unspecified subluxation and dislocation of hip|Unspecified subluxation and dislocation of hip +C2859139|T037|AB|S73.001|ICD10CM|Unspecified subluxation of right hip|Unspecified subluxation of right hip +C2859139|T037|HT|S73.001|ICD10CM|Unspecified subluxation of right hip|Unspecified subluxation of right hip +C2859140|T037|PT|S73.001A|ICD10CM|Unspecified subluxation of right hip, initial encounter|Unspecified subluxation of right hip, initial encounter +C2859140|T037|AB|S73.001A|ICD10CM|Unspecified subluxation of right hip, initial encounter|Unspecified subluxation of right hip, initial encounter +C2859141|T037|PT|S73.001D|ICD10CM|Unspecified subluxation of right hip, subsequent encounter|Unspecified subluxation of right hip, subsequent encounter +C2859141|T037|AB|S73.001D|ICD10CM|Unspecified subluxation of right hip, subsequent encounter|Unspecified subluxation of right hip, subsequent encounter +C2859142|T037|PT|S73.001S|ICD10CM|Unspecified subluxation of right hip, sequela|Unspecified subluxation of right hip, sequela +C2859142|T037|AB|S73.001S|ICD10CM|Unspecified subluxation of right hip, sequela|Unspecified subluxation of right hip, sequela +C2859143|T037|AB|S73.002|ICD10CM|Unspecified subluxation of left hip|Unspecified subluxation of left hip +C2859143|T037|HT|S73.002|ICD10CM|Unspecified subluxation of left hip|Unspecified subluxation of left hip +C2859144|T037|PT|S73.002A|ICD10CM|Unspecified subluxation of left hip, initial encounter|Unspecified subluxation of left hip, initial encounter +C2859144|T037|AB|S73.002A|ICD10CM|Unspecified subluxation of left hip, initial encounter|Unspecified subluxation of left hip, initial encounter +C2859145|T037|PT|S73.002D|ICD10CM|Unspecified subluxation of left hip, subsequent encounter|Unspecified subluxation of left hip, subsequent encounter +C2859145|T037|AB|S73.002D|ICD10CM|Unspecified subluxation of left hip, subsequent encounter|Unspecified subluxation of left hip, subsequent encounter +C2859146|T037|PT|S73.002S|ICD10CM|Unspecified subluxation of left hip, sequela|Unspecified subluxation of left hip, sequela +C2859146|T037|AB|S73.002S|ICD10CM|Unspecified subluxation of left hip, sequela|Unspecified subluxation of left hip, sequela +C2859147|T037|AB|S73.003|ICD10CM|Unspecified subluxation of unspecified hip|Unspecified subluxation of unspecified hip +C2859147|T037|HT|S73.003|ICD10CM|Unspecified subluxation of unspecified hip|Unspecified subluxation of unspecified hip +C2859148|T037|AB|S73.003A|ICD10CM|Unspecified subluxation of unspecified hip, init encntr|Unspecified subluxation of unspecified hip, init encntr +C2859148|T037|PT|S73.003A|ICD10CM|Unspecified subluxation of unspecified hip, initial encounter|Unspecified subluxation of unspecified hip, initial encounter +C2859149|T037|AB|S73.003D|ICD10CM|Unspecified subluxation of unspecified hip, subs encntr|Unspecified subluxation of unspecified hip, subs encntr +C2859149|T037|PT|S73.003D|ICD10CM|Unspecified subluxation of unspecified hip, subsequent encounter|Unspecified subluxation of unspecified hip, subsequent encounter +C2859150|T037|PT|S73.003S|ICD10CM|Unspecified subluxation of unspecified hip, sequela|Unspecified subluxation of unspecified hip, sequela +C2859150|T037|AB|S73.003S|ICD10CM|Unspecified subluxation of unspecified hip, sequela|Unspecified subluxation of unspecified hip, sequela +C2859151|T037|AB|S73.004|ICD10CM|Unspecified dislocation of right hip|Unspecified dislocation of right hip +C2859151|T037|HT|S73.004|ICD10CM|Unspecified dislocation of right hip|Unspecified dislocation of right hip +C2859152|T037|PT|S73.004A|ICD10CM|Unspecified dislocation of right hip, initial encounter|Unspecified dislocation of right hip, initial encounter +C2859152|T037|AB|S73.004A|ICD10CM|Unspecified dislocation of right hip, initial encounter|Unspecified dislocation of right hip, initial encounter +C2859153|T037|PT|S73.004D|ICD10CM|Unspecified dislocation of right hip, subsequent encounter|Unspecified dislocation of right hip, subsequent encounter +C2859153|T037|AB|S73.004D|ICD10CM|Unspecified dislocation of right hip, subsequent encounter|Unspecified dislocation of right hip, subsequent encounter +C2859154|T037|PT|S73.004S|ICD10CM|Unspecified dislocation of right hip, sequela|Unspecified dislocation of right hip, sequela +C2859154|T037|AB|S73.004S|ICD10CM|Unspecified dislocation of right hip, sequela|Unspecified dislocation of right hip, sequela +C2859155|T037|AB|S73.005|ICD10CM|Unspecified dislocation of left hip|Unspecified dislocation of left hip +C2859155|T037|HT|S73.005|ICD10CM|Unspecified dislocation of left hip|Unspecified dislocation of left hip +C2859156|T037|PT|S73.005A|ICD10CM|Unspecified dislocation of left hip, initial encounter|Unspecified dislocation of left hip, initial encounter +C2859156|T037|AB|S73.005A|ICD10CM|Unspecified dislocation of left hip, initial encounter|Unspecified dislocation of left hip, initial encounter +C2859157|T037|PT|S73.005D|ICD10CM|Unspecified dislocation of left hip, subsequent encounter|Unspecified dislocation of left hip, subsequent encounter +C2859157|T037|AB|S73.005D|ICD10CM|Unspecified dislocation of left hip, subsequent encounter|Unspecified dislocation of left hip, subsequent encounter +C2859158|T037|PT|S73.005S|ICD10CM|Unspecified dislocation of left hip, sequela|Unspecified dislocation of left hip, sequela +C2859158|T037|AB|S73.005S|ICD10CM|Unspecified dislocation of left hip, sequela|Unspecified dislocation of left hip, sequela +C2859159|T037|AB|S73.006|ICD10CM|Unspecified dislocation of unspecified hip|Unspecified dislocation of unspecified hip +C2859159|T037|HT|S73.006|ICD10CM|Unspecified dislocation of unspecified hip|Unspecified dislocation of unspecified hip +C2859160|T037|AB|S73.006A|ICD10CM|Unspecified dislocation of unspecified hip, init encntr|Unspecified dislocation of unspecified hip, init encntr +C2859160|T037|PT|S73.006A|ICD10CM|Unspecified dislocation of unspecified hip, initial encounter|Unspecified dislocation of unspecified hip, initial encounter +C2859161|T037|AB|S73.006D|ICD10CM|Unspecified dislocation of unspecified hip, subs encntr|Unspecified dislocation of unspecified hip, subs encntr +C2859161|T037|PT|S73.006D|ICD10CM|Unspecified dislocation of unspecified hip, subsequent encounter|Unspecified dislocation of unspecified hip, subsequent encounter +C2859162|T037|PT|S73.006S|ICD10CM|Unspecified dislocation of unspecified hip, sequela|Unspecified dislocation of unspecified hip, sequela +C2859162|T037|AB|S73.006S|ICD10CM|Unspecified dislocation of unspecified hip, sequela|Unspecified dislocation of unspecified hip, sequela +C2859163|T037|AB|S73.01|ICD10CM|Posterior subluxation and dislocation of hip|Posterior subluxation and dislocation of hip +C2859163|T037|HT|S73.01|ICD10CM|Posterior subluxation and dislocation of hip|Posterior subluxation and dislocation of hip +C2112486|T037|HT|S73.011|ICD10CM|Posterior subluxation of right hip|Posterior subluxation of right hip +C2112486|T037|AB|S73.011|ICD10CM|Posterior subluxation of right hip|Posterior subluxation of right hip +C2859164|T037|PT|S73.011A|ICD10CM|Posterior subluxation of right hip, initial encounter|Posterior subluxation of right hip, initial encounter +C2859164|T037|AB|S73.011A|ICD10CM|Posterior subluxation of right hip, initial encounter|Posterior subluxation of right hip, initial encounter +C2859165|T037|PT|S73.011D|ICD10CM|Posterior subluxation of right hip, subsequent encounter|Posterior subluxation of right hip, subsequent encounter +C2859165|T037|AB|S73.011D|ICD10CM|Posterior subluxation of right hip, subsequent encounter|Posterior subluxation of right hip, subsequent encounter +C2859166|T037|PT|S73.011S|ICD10CM|Posterior subluxation of right hip, sequela|Posterior subluxation of right hip, sequela +C2859166|T037|AB|S73.011S|ICD10CM|Posterior subluxation of right hip, sequela|Posterior subluxation of right hip, sequela +C2112485|T037|AB|S73.012|ICD10CM|Posterior subluxation of left hip|Posterior subluxation of left hip +C2112485|T037|HT|S73.012|ICD10CM|Posterior subluxation of left hip|Posterior subluxation of left hip +C2859167|T037|PT|S73.012A|ICD10CM|Posterior subluxation of left hip, initial encounter|Posterior subluxation of left hip, initial encounter +C2859167|T037|AB|S73.012A|ICD10CM|Posterior subluxation of left hip, initial encounter|Posterior subluxation of left hip, initial encounter +C2859168|T037|PT|S73.012D|ICD10CM|Posterior subluxation of left hip, subsequent encounter|Posterior subluxation of left hip, subsequent encounter +C2859168|T037|AB|S73.012D|ICD10CM|Posterior subluxation of left hip, subsequent encounter|Posterior subluxation of left hip, subsequent encounter +C2859169|T037|PT|S73.012S|ICD10CM|Posterior subluxation of left hip, sequela|Posterior subluxation of left hip, sequela +C2859169|T037|AB|S73.012S|ICD10CM|Posterior subluxation of left hip, sequela|Posterior subluxation of left hip, sequela +C2859170|T037|AB|S73.013|ICD10CM|Posterior subluxation of unspecified hip|Posterior subluxation of unspecified hip +C2859170|T037|HT|S73.013|ICD10CM|Posterior subluxation of unspecified hip|Posterior subluxation of unspecified hip +C2859171|T037|PT|S73.013A|ICD10CM|Posterior subluxation of unspecified hip, initial encounter|Posterior subluxation of unspecified hip, initial encounter +C2859171|T037|AB|S73.013A|ICD10CM|Posterior subluxation of unspecified hip, initial encounter|Posterior subluxation of unspecified hip, initial encounter +C2859172|T037|AB|S73.013D|ICD10CM|Posterior subluxation of unspecified hip, subs encntr|Posterior subluxation of unspecified hip, subs encntr +C2859172|T037|PT|S73.013D|ICD10CM|Posterior subluxation of unspecified hip, subsequent encounter|Posterior subluxation of unspecified hip, subsequent encounter +C2859173|T037|PT|S73.013S|ICD10CM|Posterior subluxation of unspecified hip, sequela|Posterior subluxation of unspecified hip, sequela +C2859173|T037|AB|S73.013S|ICD10CM|Posterior subluxation of unspecified hip, sequela|Posterior subluxation of unspecified hip, sequela +C2112233|T037|AB|S73.014|ICD10CM|Posterior dislocation of right hip|Posterior dislocation of right hip +C2112233|T037|HT|S73.014|ICD10CM|Posterior dislocation of right hip|Posterior dislocation of right hip +C2859174|T037|PT|S73.014A|ICD10CM|Posterior dislocation of right hip, initial encounter|Posterior dislocation of right hip, initial encounter +C2859174|T037|AB|S73.014A|ICD10CM|Posterior dislocation of right hip, initial encounter|Posterior dislocation of right hip, initial encounter +C2859175|T037|PT|S73.014D|ICD10CM|Posterior dislocation of right hip, subsequent encounter|Posterior dislocation of right hip, subsequent encounter +C2859175|T037|AB|S73.014D|ICD10CM|Posterior dislocation of right hip, subsequent encounter|Posterior dislocation of right hip, subsequent encounter +C2859176|T037|PT|S73.014S|ICD10CM|Posterior dislocation of right hip, sequela|Posterior dislocation of right hip, sequela +C2859176|T037|AB|S73.014S|ICD10CM|Posterior dislocation of right hip, sequela|Posterior dislocation of right hip, sequela +C2112230|T037|AB|S73.015|ICD10CM|Posterior dislocation of left hip|Posterior dislocation of left hip +C2112230|T037|HT|S73.015|ICD10CM|Posterior dislocation of left hip|Posterior dislocation of left hip +C2859177|T037|PT|S73.015A|ICD10CM|Posterior dislocation of left hip, initial encounter|Posterior dislocation of left hip, initial encounter +C2859177|T037|AB|S73.015A|ICD10CM|Posterior dislocation of left hip, initial encounter|Posterior dislocation of left hip, initial encounter +C2859178|T037|PT|S73.015D|ICD10CM|Posterior dislocation of left hip, subsequent encounter|Posterior dislocation of left hip, subsequent encounter +C2859178|T037|AB|S73.015D|ICD10CM|Posterior dislocation of left hip, subsequent encounter|Posterior dislocation of left hip, subsequent encounter +C2859179|T037|PT|S73.015S|ICD10CM|Posterior dislocation of left hip, sequela|Posterior dislocation of left hip, sequela +C2859179|T037|AB|S73.015S|ICD10CM|Posterior dislocation of left hip, sequela|Posterior dislocation of left hip, sequela +C2859180|T037|AB|S73.016|ICD10CM|Posterior dislocation of unspecified hip|Posterior dislocation of unspecified hip +C2859180|T037|HT|S73.016|ICD10CM|Posterior dislocation of unspecified hip|Posterior dislocation of unspecified hip +C2859181|T037|PT|S73.016A|ICD10CM|Posterior dislocation of unspecified hip, initial encounter|Posterior dislocation of unspecified hip, initial encounter +C2859181|T037|AB|S73.016A|ICD10CM|Posterior dislocation of unspecified hip, initial encounter|Posterior dislocation of unspecified hip, initial encounter +C2859182|T037|AB|S73.016D|ICD10CM|Posterior dislocation of unspecified hip, subs encntr|Posterior dislocation of unspecified hip, subs encntr +C2859182|T037|PT|S73.016D|ICD10CM|Posterior dislocation of unspecified hip, subsequent encounter|Posterior dislocation of unspecified hip, subsequent encounter +C2859183|T037|PT|S73.016S|ICD10CM|Posterior dislocation of unspecified hip, sequela|Posterior dislocation of unspecified hip, sequela +C2859183|T037|AB|S73.016S|ICD10CM|Posterior dislocation of unspecified hip, sequela|Posterior dislocation of unspecified hip, sequela +C2859184|T037|AB|S73.02|ICD10CM|Obturator subluxation and dislocation of hip|Obturator subluxation and dislocation of hip +C2859184|T037|HT|S73.02|ICD10CM|Obturator subluxation and dislocation of hip|Obturator subluxation and dislocation of hip +C2859185|T037|AB|S73.021|ICD10CM|Obturator subluxation of right hip|Obturator subluxation of right hip +C2859185|T037|HT|S73.021|ICD10CM|Obturator subluxation of right hip|Obturator subluxation of right hip +C2859186|T037|PT|S73.021A|ICD10CM|Obturator subluxation of right hip, initial encounter|Obturator subluxation of right hip, initial encounter +C2859186|T037|AB|S73.021A|ICD10CM|Obturator subluxation of right hip, initial encounter|Obturator subluxation of right hip, initial encounter +C2859187|T037|PT|S73.021D|ICD10CM|Obturator subluxation of right hip, subsequent encounter|Obturator subluxation of right hip, subsequent encounter +C2859187|T037|AB|S73.021D|ICD10CM|Obturator subluxation of right hip, subsequent encounter|Obturator subluxation of right hip, subsequent encounter +C2859188|T037|PT|S73.021S|ICD10CM|Obturator subluxation of right hip, sequela|Obturator subluxation of right hip, sequela +C2859188|T037|AB|S73.021S|ICD10CM|Obturator subluxation of right hip, sequela|Obturator subluxation of right hip, sequela +C2859189|T037|AB|S73.022|ICD10CM|Obturator subluxation of left hip|Obturator subluxation of left hip +C2859189|T037|HT|S73.022|ICD10CM|Obturator subluxation of left hip|Obturator subluxation of left hip +C2859190|T037|PT|S73.022A|ICD10CM|Obturator subluxation of left hip, initial encounter|Obturator subluxation of left hip, initial encounter +C2859190|T037|AB|S73.022A|ICD10CM|Obturator subluxation of left hip, initial encounter|Obturator subluxation of left hip, initial encounter +C2859191|T037|PT|S73.022D|ICD10CM|Obturator subluxation of left hip, subsequent encounter|Obturator subluxation of left hip, subsequent encounter +C2859191|T037|AB|S73.022D|ICD10CM|Obturator subluxation of left hip, subsequent encounter|Obturator subluxation of left hip, subsequent encounter +C2859192|T037|PT|S73.022S|ICD10CM|Obturator subluxation of left hip, sequela|Obturator subluxation of left hip, sequela +C2859192|T037|AB|S73.022S|ICD10CM|Obturator subluxation of left hip, sequela|Obturator subluxation of left hip, sequela +C2859193|T037|AB|S73.023|ICD10CM|Obturator subluxation of unspecified hip|Obturator subluxation of unspecified hip +C2859193|T037|HT|S73.023|ICD10CM|Obturator subluxation of unspecified hip|Obturator subluxation of unspecified hip +C2859194|T037|PT|S73.023A|ICD10CM|Obturator subluxation of unspecified hip, initial encounter|Obturator subluxation of unspecified hip, initial encounter +C2859194|T037|AB|S73.023A|ICD10CM|Obturator subluxation of unspecified hip, initial encounter|Obturator subluxation of unspecified hip, initial encounter +C2859195|T037|AB|S73.023D|ICD10CM|Obturator subluxation of unspecified hip, subs encntr|Obturator subluxation of unspecified hip, subs encntr +C2859195|T037|PT|S73.023D|ICD10CM|Obturator subluxation of unspecified hip, subsequent encounter|Obturator subluxation of unspecified hip, subsequent encounter +C2859196|T037|PT|S73.023S|ICD10CM|Obturator subluxation of unspecified hip, sequela|Obturator subluxation of unspecified hip, sequela +C2859196|T037|AB|S73.023S|ICD10CM|Obturator subluxation of unspecified hip, sequela|Obturator subluxation of unspecified hip, sequela +C2859197|T037|AB|S73.024|ICD10CM|Obturator dislocation of right hip|Obturator dislocation of right hip +C2859197|T037|HT|S73.024|ICD10CM|Obturator dislocation of right hip|Obturator dislocation of right hip +C2859198|T037|PT|S73.024A|ICD10CM|Obturator dislocation of right hip, initial encounter|Obturator dislocation of right hip, initial encounter +C2859198|T037|AB|S73.024A|ICD10CM|Obturator dislocation of right hip, initial encounter|Obturator dislocation of right hip, initial encounter +C2859199|T037|PT|S73.024D|ICD10CM|Obturator dislocation of right hip, subsequent encounter|Obturator dislocation of right hip, subsequent encounter +C2859199|T037|AB|S73.024D|ICD10CM|Obturator dislocation of right hip, subsequent encounter|Obturator dislocation of right hip, subsequent encounter +C2859200|T037|PT|S73.024S|ICD10CM|Obturator dislocation of right hip, sequela|Obturator dislocation of right hip, sequela +C2859200|T037|AB|S73.024S|ICD10CM|Obturator dislocation of right hip, sequela|Obturator dislocation of right hip, sequela +C2859201|T037|AB|S73.025|ICD10CM|Obturator dislocation of left hip|Obturator dislocation of left hip +C2859201|T037|HT|S73.025|ICD10CM|Obturator dislocation of left hip|Obturator dislocation of left hip +C2859202|T037|PT|S73.025A|ICD10CM|Obturator dislocation of left hip, initial encounter|Obturator dislocation of left hip, initial encounter +C2859202|T037|AB|S73.025A|ICD10CM|Obturator dislocation of left hip, initial encounter|Obturator dislocation of left hip, initial encounter +C2859203|T037|PT|S73.025D|ICD10CM|Obturator dislocation of left hip, subsequent encounter|Obturator dislocation of left hip, subsequent encounter +C2859203|T037|AB|S73.025D|ICD10CM|Obturator dislocation of left hip, subsequent encounter|Obturator dislocation of left hip, subsequent encounter +C2859204|T037|PT|S73.025S|ICD10CM|Obturator dislocation of left hip, sequela|Obturator dislocation of left hip, sequela +C2859204|T037|AB|S73.025S|ICD10CM|Obturator dislocation of left hip, sequela|Obturator dislocation of left hip, sequela +C2859205|T037|AB|S73.026|ICD10CM|Obturator dislocation of unspecified hip|Obturator dislocation of unspecified hip +C2859205|T037|HT|S73.026|ICD10CM|Obturator dislocation of unspecified hip|Obturator dislocation of unspecified hip +C2859206|T037|PT|S73.026A|ICD10CM|Obturator dislocation of unspecified hip, initial encounter|Obturator dislocation of unspecified hip, initial encounter +C2859206|T037|AB|S73.026A|ICD10CM|Obturator dislocation of unspecified hip, initial encounter|Obturator dislocation of unspecified hip, initial encounter +C2859207|T037|AB|S73.026D|ICD10CM|Obturator dislocation of unspecified hip, subs encntr|Obturator dislocation of unspecified hip, subs encntr +C2859207|T037|PT|S73.026D|ICD10CM|Obturator dislocation of unspecified hip, subsequent encounter|Obturator dislocation of unspecified hip, subsequent encounter +C2859208|T037|PT|S73.026S|ICD10CM|Obturator dislocation of unspecified hip, sequela|Obturator dislocation of unspecified hip, sequela +C2859208|T037|AB|S73.026S|ICD10CM|Obturator dislocation of unspecified hip, sequela|Obturator dislocation of unspecified hip, sequela +C4509456|T037|AB|S73.03|ICD10CM|Other anterior subluxation and dislocation of hip|Other anterior subluxation and dislocation of hip +C4509456|T037|HT|S73.03|ICD10CM|Other anterior subluxation and dislocation of hip|Other anterior subluxation and dislocation of hip +C2859210|T037|AB|S73.031|ICD10CM|Other anterior subluxation of right hip|Other anterior subluxation of right hip +C2859210|T037|HT|S73.031|ICD10CM|Other anterior subluxation of right hip|Other anterior subluxation of right hip +C2859211|T037|AB|S73.031A|ICD10CM|Other anterior subluxation of right hip, initial encounter|Other anterior subluxation of right hip, initial encounter +C2859211|T037|PT|S73.031A|ICD10CM|Other anterior subluxation of right hip, initial encounter|Other anterior subluxation of right hip, initial encounter +C2859212|T037|AB|S73.031D|ICD10CM|Other anterior subluxation of right hip, subs encntr|Other anterior subluxation of right hip, subs encntr +C2859212|T037|PT|S73.031D|ICD10CM|Other anterior subluxation of right hip, subsequent encounter|Other anterior subluxation of right hip, subsequent encounter +C2859213|T037|AB|S73.031S|ICD10CM|Other anterior subluxation of right hip, sequela|Other anterior subluxation of right hip, sequela +C2859213|T037|PT|S73.031S|ICD10CM|Other anterior subluxation of right hip, sequela|Other anterior subluxation of right hip, sequela +C2859214|T037|AB|S73.032|ICD10CM|Other anterior subluxation of left hip|Other anterior subluxation of left hip +C2859214|T037|HT|S73.032|ICD10CM|Other anterior subluxation of left hip|Other anterior subluxation of left hip +C2859215|T037|AB|S73.032A|ICD10CM|Other anterior subluxation of left hip, initial encounter|Other anterior subluxation of left hip, initial encounter +C2859215|T037|PT|S73.032A|ICD10CM|Other anterior subluxation of left hip, initial encounter|Other anterior subluxation of left hip, initial encounter +C2859216|T037|AB|S73.032D|ICD10CM|Other anterior subluxation of left hip, subsequent encounter|Other anterior subluxation of left hip, subsequent encounter +C2859216|T037|PT|S73.032D|ICD10CM|Other anterior subluxation of left hip, subsequent encounter|Other anterior subluxation of left hip, subsequent encounter +C2859217|T037|AB|S73.032S|ICD10CM|Other anterior subluxation of left hip, sequela|Other anterior subluxation of left hip, sequela +C2859217|T037|PT|S73.032S|ICD10CM|Other anterior subluxation of left hip, sequela|Other anterior subluxation of left hip, sequela +C2859218|T037|AB|S73.033|ICD10CM|Other anterior subluxation of unspecified hip|Other anterior subluxation of unspecified hip +C2859218|T037|HT|S73.033|ICD10CM|Other anterior subluxation of unspecified hip|Other anterior subluxation of unspecified hip +C2859219|T037|AB|S73.033A|ICD10CM|Other anterior subluxation of unspecified hip, init encntr|Other anterior subluxation of unspecified hip, init encntr +C2859219|T037|PT|S73.033A|ICD10CM|Other anterior subluxation of unspecified hip, initial encounter|Other anterior subluxation of unspecified hip, initial encounter +C2859220|T037|AB|S73.033D|ICD10CM|Other anterior subluxation of unspecified hip, subs encntr|Other anterior subluxation of unspecified hip, subs encntr +C2859220|T037|PT|S73.033D|ICD10CM|Other anterior subluxation of unspecified hip, subsequent encounter|Other anterior subluxation of unspecified hip, subsequent encounter +C2859221|T037|AB|S73.033S|ICD10CM|Other anterior subluxation of unspecified hip, sequela|Other anterior subluxation of unspecified hip, sequela +C2859221|T037|PT|S73.033S|ICD10CM|Other anterior subluxation of unspecified hip, sequela|Other anterior subluxation of unspecified hip, sequela +C2859222|T037|AB|S73.034|ICD10CM|Other anterior dislocation of right hip|Other anterior dislocation of right hip +C2859222|T037|HT|S73.034|ICD10CM|Other anterior dislocation of right hip|Other anterior dislocation of right hip +C2859223|T037|AB|S73.034A|ICD10CM|Other anterior dislocation of right hip, initial encounter|Other anterior dislocation of right hip, initial encounter +C2859223|T037|PT|S73.034A|ICD10CM|Other anterior dislocation of right hip, initial encounter|Other anterior dislocation of right hip, initial encounter +C2859224|T037|AB|S73.034D|ICD10CM|Other anterior dislocation of right hip, subs encntr|Other anterior dislocation of right hip, subs encntr +C2859224|T037|PT|S73.034D|ICD10CM|Other anterior dislocation of right hip, subsequent encounter|Other anterior dislocation of right hip, subsequent encounter +C2859225|T037|AB|S73.034S|ICD10CM|Other anterior dislocation of right hip, sequela|Other anterior dislocation of right hip, sequela +C2859225|T037|PT|S73.034S|ICD10CM|Other anterior dislocation of right hip, sequela|Other anterior dislocation of right hip, sequela +C2859226|T037|AB|S73.035|ICD10CM|Other anterior dislocation of left hip|Other anterior dislocation of left hip +C2859226|T037|HT|S73.035|ICD10CM|Other anterior dislocation of left hip|Other anterior dislocation of left hip +C2859227|T037|AB|S73.035A|ICD10CM|Other anterior dislocation of left hip, initial encounter|Other anterior dislocation of left hip, initial encounter +C2859227|T037|PT|S73.035A|ICD10CM|Other anterior dislocation of left hip, initial encounter|Other anterior dislocation of left hip, initial encounter +C2859228|T037|AB|S73.035D|ICD10CM|Other anterior dislocation of left hip, subsequent encounter|Other anterior dislocation of left hip, subsequent encounter +C2859228|T037|PT|S73.035D|ICD10CM|Other anterior dislocation of left hip, subsequent encounter|Other anterior dislocation of left hip, subsequent encounter +C2859229|T037|AB|S73.035S|ICD10CM|Other anterior dislocation of left hip, sequela|Other anterior dislocation of left hip, sequela +C2859229|T037|PT|S73.035S|ICD10CM|Other anterior dislocation of left hip, sequela|Other anterior dislocation of left hip, sequela +C2859230|T037|AB|S73.036|ICD10CM|Other anterior dislocation of unspecified hip|Other anterior dislocation of unspecified hip +C2859230|T037|HT|S73.036|ICD10CM|Other anterior dislocation of unspecified hip|Other anterior dislocation of unspecified hip +C2859231|T037|AB|S73.036A|ICD10CM|Other anterior dislocation of unspecified hip, init encntr|Other anterior dislocation of unspecified hip, init encntr +C2859231|T037|PT|S73.036A|ICD10CM|Other anterior dislocation of unspecified hip, initial encounter|Other anterior dislocation of unspecified hip, initial encounter +C2859232|T037|AB|S73.036D|ICD10CM|Other anterior dislocation of unspecified hip, subs encntr|Other anterior dislocation of unspecified hip, subs encntr +C2859232|T037|PT|S73.036D|ICD10CM|Other anterior dislocation of unspecified hip, subsequent encounter|Other anterior dislocation of unspecified hip, subsequent encounter +C2859233|T037|AB|S73.036S|ICD10CM|Other anterior dislocation of unspecified hip, sequela|Other anterior dislocation of unspecified hip, sequela +C2859233|T037|PT|S73.036S|ICD10CM|Other anterior dislocation of unspecified hip, sequela|Other anterior dislocation of unspecified hip, sequela +C4509457|T037|AB|S73.04|ICD10CM|Central subluxation and dislocation of hip|Central subluxation and dislocation of hip +C4509457|T037|HT|S73.04|ICD10CM|Central subluxation and dislocation of hip|Central subluxation and dislocation of hip +C2859235|T037|AB|S73.041|ICD10CM|Central subluxation of right hip|Central subluxation of right hip +C2859235|T037|HT|S73.041|ICD10CM|Central subluxation of right hip|Central subluxation of right hip +C2859236|T037|PT|S73.041A|ICD10CM|Central subluxation of right hip, initial encounter|Central subluxation of right hip, initial encounter +C2859236|T037|AB|S73.041A|ICD10CM|Central subluxation of right hip, initial encounter|Central subluxation of right hip, initial encounter +C2859237|T037|PT|S73.041D|ICD10CM|Central subluxation of right hip, subsequent encounter|Central subluxation of right hip, subsequent encounter +C2859237|T037|AB|S73.041D|ICD10CM|Central subluxation of right hip, subsequent encounter|Central subluxation of right hip, subsequent encounter +C2859238|T037|PT|S73.041S|ICD10CM|Central subluxation of right hip, sequela|Central subluxation of right hip, sequela +C2859238|T037|AB|S73.041S|ICD10CM|Central subluxation of right hip, sequela|Central subluxation of right hip, sequela +C2859239|T037|AB|S73.042|ICD10CM|Central subluxation of left hip|Central subluxation of left hip +C2859239|T037|HT|S73.042|ICD10CM|Central subluxation of left hip|Central subluxation of left hip +C2859240|T037|PT|S73.042A|ICD10CM|Central subluxation of left hip, initial encounter|Central subluxation of left hip, initial encounter +C2859240|T037|AB|S73.042A|ICD10CM|Central subluxation of left hip, initial encounter|Central subluxation of left hip, initial encounter +C2859241|T037|PT|S73.042D|ICD10CM|Central subluxation of left hip, subsequent encounter|Central subluxation of left hip, subsequent encounter +C2859241|T037|AB|S73.042D|ICD10CM|Central subluxation of left hip, subsequent encounter|Central subluxation of left hip, subsequent encounter +C2859242|T037|PT|S73.042S|ICD10CM|Central subluxation of left hip, sequela|Central subluxation of left hip, sequela +C2859242|T037|AB|S73.042S|ICD10CM|Central subluxation of left hip, sequela|Central subluxation of left hip, sequela +C2859243|T037|AB|S73.043|ICD10CM|Central subluxation of unspecified hip|Central subluxation of unspecified hip +C2859243|T037|HT|S73.043|ICD10CM|Central subluxation of unspecified hip|Central subluxation of unspecified hip +C2859244|T037|PT|S73.043A|ICD10CM|Central subluxation of unspecified hip, initial encounter|Central subluxation of unspecified hip, initial encounter +C2859244|T037|AB|S73.043A|ICD10CM|Central subluxation of unspecified hip, initial encounter|Central subluxation of unspecified hip, initial encounter +C2859245|T037|AB|S73.043D|ICD10CM|Central subluxation of unspecified hip, subsequent encounter|Central subluxation of unspecified hip, subsequent encounter +C2859245|T037|PT|S73.043D|ICD10CM|Central subluxation of unspecified hip, subsequent encounter|Central subluxation of unspecified hip, subsequent encounter +C2859246|T037|PT|S73.043S|ICD10CM|Central subluxation of unspecified hip, sequela|Central subluxation of unspecified hip, sequela +C2859246|T037|AB|S73.043S|ICD10CM|Central subluxation of unspecified hip, sequela|Central subluxation of unspecified hip, sequela +C2859247|T037|AB|S73.044|ICD10CM|Central dislocation of right hip|Central dislocation of right hip +C2859247|T037|HT|S73.044|ICD10CM|Central dislocation of right hip|Central dislocation of right hip +C2859248|T037|PT|S73.044A|ICD10CM|Central dislocation of right hip, initial encounter|Central dislocation of right hip, initial encounter +C2859248|T037|AB|S73.044A|ICD10CM|Central dislocation of right hip, initial encounter|Central dislocation of right hip, initial encounter +C2859249|T037|PT|S73.044D|ICD10CM|Central dislocation of right hip, subsequent encounter|Central dislocation of right hip, subsequent encounter +C2859249|T037|AB|S73.044D|ICD10CM|Central dislocation of right hip, subsequent encounter|Central dislocation of right hip, subsequent encounter +C2859250|T037|PT|S73.044S|ICD10CM|Central dislocation of right hip, sequela|Central dislocation of right hip, sequela +C2859250|T037|AB|S73.044S|ICD10CM|Central dislocation of right hip, sequela|Central dislocation of right hip, sequela +C2859251|T037|AB|S73.045|ICD10CM|Central dislocation of left hip|Central dislocation of left hip +C2859251|T037|HT|S73.045|ICD10CM|Central dislocation of left hip|Central dislocation of left hip +C2859252|T037|PT|S73.045A|ICD10CM|Central dislocation of left hip, initial encounter|Central dislocation of left hip, initial encounter +C2859252|T037|AB|S73.045A|ICD10CM|Central dislocation of left hip, initial encounter|Central dislocation of left hip, initial encounter +C2859253|T037|PT|S73.045D|ICD10CM|Central dislocation of left hip, subsequent encounter|Central dislocation of left hip, subsequent encounter +C2859253|T037|AB|S73.045D|ICD10CM|Central dislocation of left hip, subsequent encounter|Central dislocation of left hip, subsequent encounter +C2859254|T037|PT|S73.045S|ICD10CM|Central dislocation of left hip, sequela|Central dislocation of left hip, sequela +C2859254|T037|AB|S73.045S|ICD10CM|Central dislocation of left hip, sequela|Central dislocation of left hip, sequela +C2859255|T037|AB|S73.046|ICD10CM|Central dislocation of unspecified hip|Central dislocation of unspecified hip +C2859255|T037|HT|S73.046|ICD10CM|Central dislocation of unspecified hip|Central dislocation of unspecified hip +C2859256|T037|PT|S73.046A|ICD10CM|Central dislocation of unspecified hip, initial encounter|Central dislocation of unspecified hip, initial encounter +C2859256|T037|AB|S73.046A|ICD10CM|Central dislocation of unspecified hip, initial encounter|Central dislocation of unspecified hip, initial encounter +C2859257|T037|AB|S73.046D|ICD10CM|Central dislocation of unspecified hip, subsequent encounter|Central dislocation of unspecified hip, subsequent encounter +C2859257|T037|PT|S73.046D|ICD10CM|Central dislocation of unspecified hip, subsequent encounter|Central dislocation of unspecified hip, subsequent encounter +C2859258|T037|PT|S73.046S|ICD10CM|Central dislocation of unspecified hip, sequela|Central dislocation of unspecified hip, sequela +C2859258|T037|AB|S73.046S|ICD10CM|Central dislocation of unspecified hip, sequela|Central dislocation of unspecified hip, sequela +C0392084|T037|PT|S73.1|ICD10|Sprain and strain of hip|Sprain and strain of hip +C0272889|T037|HT|S73.1|ICD10CM|Sprain of hip|Sprain of hip +C0272889|T037|AB|S73.1|ICD10CM|Sprain of hip|Sprain of hip +C2859259|T037|AB|S73.10|ICD10CM|Unspecified sprain of hip|Unspecified sprain of hip +C2859259|T037|HT|S73.10|ICD10CM|Unspecified sprain of hip|Unspecified sprain of hip +C2859260|T037|AB|S73.101|ICD10CM|Unspecified sprain of right hip|Unspecified sprain of right hip +C2859260|T037|HT|S73.101|ICD10CM|Unspecified sprain of right hip|Unspecified sprain of right hip +C2859261|T037|PT|S73.101A|ICD10CM|Unspecified sprain of right hip, initial encounter|Unspecified sprain of right hip, initial encounter +C2859261|T037|AB|S73.101A|ICD10CM|Unspecified sprain of right hip, initial encounter|Unspecified sprain of right hip, initial encounter +C2859262|T037|PT|S73.101D|ICD10CM|Unspecified sprain of right hip, subsequent encounter|Unspecified sprain of right hip, subsequent encounter +C2859262|T037|AB|S73.101D|ICD10CM|Unspecified sprain of right hip, subsequent encounter|Unspecified sprain of right hip, subsequent encounter +C2859263|T037|PT|S73.101S|ICD10CM|Unspecified sprain of right hip, sequela|Unspecified sprain of right hip, sequela +C2859263|T037|AB|S73.101S|ICD10CM|Unspecified sprain of right hip, sequela|Unspecified sprain of right hip, sequela +C2859264|T037|AB|S73.102|ICD10CM|Unspecified sprain of left hip|Unspecified sprain of left hip +C2859264|T037|HT|S73.102|ICD10CM|Unspecified sprain of left hip|Unspecified sprain of left hip +C2859265|T037|PT|S73.102A|ICD10CM|Unspecified sprain of left hip, initial encounter|Unspecified sprain of left hip, initial encounter +C2859265|T037|AB|S73.102A|ICD10CM|Unspecified sprain of left hip, initial encounter|Unspecified sprain of left hip, initial encounter +C2859266|T037|PT|S73.102D|ICD10CM|Unspecified sprain of left hip, subsequent encounter|Unspecified sprain of left hip, subsequent encounter +C2859266|T037|AB|S73.102D|ICD10CM|Unspecified sprain of left hip, subsequent encounter|Unspecified sprain of left hip, subsequent encounter +C2859267|T037|PT|S73.102S|ICD10CM|Unspecified sprain of left hip, sequela|Unspecified sprain of left hip, sequela +C2859267|T037|AB|S73.102S|ICD10CM|Unspecified sprain of left hip, sequela|Unspecified sprain of left hip, sequela +C2859268|T037|AB|S73.109|ICD10CM|Unspecified sprain of unspecified hip|Unspecified sprain of unspecified hip +C2859268|T037|HT|S73.109|ICD10CM|Unspecified sprain of unspecified hip|Unspecified sprain of unspecified hip +C2859269|T037|PT|S73.109A|ICD10CM|Unspecified sprain of unspecified hip, initial encounter|Unspecified sprain of unspecified hip, initial encounter +C2859269|T037|AB|S73.109A|ICD10CM|Unspecified sprain of unspecified hip, initial encounter|Unspecified sprain of unspecified hip, initial encounter +C2859270|T037|PT|S73.109D|ICD10CM|Unspecified sprain of unspecified hip, subsequent encounter|Unspecified sprain of unspecified hip, subsequent encounter +C2859270|T037|AB|S73.109D|ICD10CM|Unspecified sprain of unspecified hip, subsequent encounter|Unspecified sprain of unspecified hip, subsequent encounter +C2859271|T037|PT|S73.109S|ICD10CM|Unspecified sprain of unspecified hip, sequela|Unspecified sprain of unspecified hip, sequela +C2859271|T037|AB|S73.109S|ICD10CM|Unspecified sprain of unspecified hip, sequela|Unspecified sprain of unspecified hip, sequela +C2859272|T037|AB|S73.11|ICD10CM|Iliofemoral ligament sprain of hip|Iliofemoral ligament sprain of hip +C2859272|T037|HT|S73.11|ICD10CM|Iliofemoral ligament sprain of hip|Iliofemoral ligament sprain of hip +C2859273|T037|AB|S73.111|ICD10CM|Iliofemoral ligament sprain of right hip|Iliofemoral ligament sprain of right hip +C2859273|T037|HT|S73.111|ICD10CM|Iliofemoral ligament sprain of right hip|Iliofemoral ligament sprain of right hip +C2859274|T037|PT|S73.111A|ICD10CM|Iliofemoral ligament sprain of right hip, initial encounter|Iliofemoral ligament sprain of right hip, initial encounter +C2859274|T037|AB|S73.111A|ICD10CM|Iliofemoral ligament sprain of right hip, initial encounter|Iliofemoral ligament sprain of right hip, initial encounter +C2859275|T037|AB|S73.111D|ICD10CM|Iliofemoral ligament sprain of right hip, subs encntr|Iliofemoral ligament sprain of right hip, subs encntr +C2859275|T037|PT|S73.111D|ICD10CM|Iliofemoral ligament sprain of right hip, subsequent encounter|Iliofemoral ligament sprain of right hip, subsequent encounter +C2859276|T037|PT|S73.111S|ICD10CM|Iliofemoral ligament sprain of right hip, sequela|Iliofemoral ligament sprain of right hip, sequela +C2859276|T037|AB|S73.111S|ICD10CM|Iliofemoral ligament sprain of right hip, sequela|Iliofemoral ligament sprain of right hip, sequela +C2859277|T037|AB|S73.112|ICD10CM|Iliofemoral ligament sprain of left hip|Iliofemoral ligament sprain of left hip +C2859277|T037|HT|S73.112|ICD10CM|Iliofemoral ligament sprain of left hip|Iliofemoral ligament sprain of left hip +C2859278|T037|PT|S73.112A|ICD10CM|Iliofemoral ligament sprain of left hip, initial encounter|Iliofemoral ligament sprain of left hip, initial encounter +C2859278|T037|AB|S73.112A|ICD10CM|Iliofemoral ligament sprain of left hip, initial encounter|Iliofemoral ligament sprain of left hip, initial encounter +C2859279|T037|AB|S73.112D|ICD10CM|Iliofemoral ligament sprain of left hip, subs encntr|Iliofemoral ligament sprain of left hip, subs encntr +C2859279|T037|PT|S73.112D|ICD10CM|Iliofemoral ligament sprain of left hip, subsequent encounter|Iliofemoral ligament sprain of left hip, subsequent encounter +C2859280|T037|PT|S73.112S|ICD10CM|Iliofemoral ligament sprain of left hip, sequela|Iliofemoral ligament sprain of left hip, sequela +C2859280|T037|AB|S73.112S|ICD10CM|Iliofemoral ligament sprain of left hip, sequela|Iliofemoral ligament sprain of left hip, sequela +C2859281|T037|AB|S73.119|ICD10CM|Iliofemoral ligament sprain of unspecified hip|Iliofemoral ligament sprain of unspecified hip +C2859281|T037|HT|S73.119|ICD10CM|Iliofemoral ligament sprain of unspecified hip|Iliofemoral ligament sprain of unspecified hip +C2859282|T037|AB|S73.119A|ICD10CM|Iliofemoral ligament sprain of unspecified hip, init encntr|Iliofemoral ligament sprain of unspecified hip, init encntr +C2859282|T037|PT|S73.119A|ICD10CM|Iliofemoral ligament sprain of unspecified hip, initial encounter|Iliofemoral ligament sprain of unspecified hip, initial encounter +C2859283|T037|AB|S73.119D|ICD10CM|Iliofemoral ligament sprain of unspecified hip, subs encntr|Iliofemoral ligament sprain of unspecified hip, subs encntr +C2859283|T037|PT|S73.119D|ICD10CM|Iliofemoral ligament sprain of unspecified hip, subsequent encounter|Iliofemoral ligament sprain of unspecified hip, subsequent encounter +C2859284|T037|PT|S73.119S|ICD10CM|Iliofemoral ligament sprain of unspecified hip, sequela|Iliofemoral ligament sprain of unspecified hip, sequela +C2859284|T037|AB|S73.119S|ICD10CM|Iliofemoral ligament sprain of unspecified hip, sequela|Iliofemoral ligament sprain of unspecified hip, sequela +C2859285|T037|AB|S73.12|ICD10CM|Ischiocapsular (ligament) sprain of hip|Ischiocapsular (ligament) sprain of hip +C2859285|T037|HT|S73.12|ICD10CM|Ischiocapsular (ligament) sprain of hip|Ischiocapsular (ligament) sprain of hip +C2859286|T037|AB|S73.121|ICD10CM|Ischiocapsular ligament sprain of right hip|Ischiocapsular ligament sprain of right hip +C2859286|T037|HT|S73.121|ICD10CM|Ischiocapsular ligament sprain of right hip|Ischiocapsular ligament sprain of right hip +C2859287|T037|AB|S73.121A|ICD10CM|Ischiocapsular ligament sprain of right hip, init encntr|Ischiocapsular ligament sprain of right hip, init encntr +C2859287|T037|PT|S73.121A|ICD10CM|Ischiocapsular ligament sprain of right hip, initial encounter|Ischiocapsular ligament sprain of right hip, initial encounter +C2859288|T037|AB|S73.121D|ICD10CM|Ischiocapsular ligament sprain of right hip, subs encntr|Ischiocapsular ligament sprain of right hip, subs encntr +C2859288|T037|PT|S73.121D|ICD10CM|Ischiocapsular ligament sprain of right hip, subsequent encounter|Ischiocapsular ligament sprain of right hip, subsequent encounter +C2859289|T037|PT|S73.121S|ICD10CM|Ischiocapsular ligament sprain of right hip, sequela|Ischiocapsular ligament sprain of right hip, sequela +C2859289|T037|AB|S73.121S|ICD10CM|Ischiocapsular ligament sprain of right hip, sequela|Ischiocapsular ligament sprain of right hip, sequela +C2859290|T037|AB|S73.122|ICD10CM|Ischiocapsular ligament sprain of left hip|Ischiocapsular ligament sprain of left hip +C2859290|T037|HT|S73.122|ICD10CM|Ischiocapsular ligament sprain of left hip|Ischiocapsular ligament sprain of left hip +C2859291|T037|AB|S73.122A|ICD10CM|Ischiocapsular ligament sprain of left hip, init encntr|Ischiocapsular ligament sprain of left hip, init encntr +C2859291|T037|PT|S73.122A|ICD10CM|Ischiocapsular ligament sprain of left hip, initial encounter|Ischiocapsular ligament sprain of left hip, initial encounter +C2859292|T037|AB|S73.122D|ICD10CM|Ischiocapsular ligament sprain of left hip, subs encntr|Ischiocapsular ligament sprain of left hip, subs encntr +C2859292|T037|PT|S73.122D|ICD10CM|Ischiocapsular ligament sprain of left hip, subsequent encounter|Ischiocapsular ligament sprain of left hip, subsequent encounter +C2859293|T037|PT|S73.122S|ICD10CM|Ischiocapsular ligament sprain of left hip, sequela|Ischiocapsular ligament sprain of left hip, sequela +C2859293|T037|AB|S73.122S|ICD10CM|Ischiocapsular ligament sprain of left hip, sequela|Ischiocapsular ligament sprain of left hip, sequela +C2859294|T037|AB|S73.129|ICD10CM|Ischiocapsular ligament sprain of unspecified hip|Ischiocapsular ligament sprain of unspecified hip +C2859294|T037|HT|S73.129|ICD10CM|Ischiocapsular ligament sprain of unspecified hip|Ischiocapsular ligament sprain of unspecified hip +C2859295|T037|AB|S73.129A|ICD10CM|Ischiocapsular ligament sprain of unsp hip, init encntr|Ischiocapsular ligament sprain of unsp hip, init encntr +C2859295|T037|PT|S73.129A|ICD10CM|Ischiocapsular ligament sprain of unspecified hip, initial encounter|Ischiocapsular ligament sprain of unspecified hip, initial encounter +C2859296|T037|AB|S73.129D|ICD10CM|Ischiocapsular ligament sprain of unsp hip, subs encntr|Ischiocapsular ligament sprain of unsp hip, subs encntr +C2859296|T037|PT|S73.129D|ICD10CM|Ischiocapsular ligament sprain of unspecified hip, subsequent encounter|Ischiocapsular ligament sprain of unspecified hip, subsequent encounter +C2859297|T037|PT|S73.129S|ICD10CM|Ischiocapsular ligament sprain of unspecified hip, sequela|Ischiocapsular ligament sprain of unspecified hip, sequela +C2859297|T037|AB|S73.129S|ICD10CM|Ischiocapsular ligament sprain of unspecified hip, sequela|Ischiocapsular ligament sprain of unspecified hip, sequela +C0434424|T037|AB|S73.19|ICD10CM|Other sprain of hip|Other sprain of hip +C0434424|T037|HT|S73.19|ICD10CM|Other sprain of hip|Other sprain of hip +C2859298|T037|AB|S73.191|ICD10CM|Other sprain of right hip|Other sprain of right hip +C2859298|T037|HT|S73.191|ICD10CM|Other sprain of right hip|Other sprain of right hip +C2859299|T037|PT|S73.191A|ICD10CM|Other sprain of right hip, initial encounter|Other sprain of right hip, initial encounter +C2859299|T037|AB|S73.191A|ICD10CM|Other sprain of right hip, initial encounter|Other sprain of right hip, initial encounter +C2859300|T037|PT|S73.191D|ICD10CM|Other sprain of right hip, subsequent encounter|Other sprain of right hip, subsequent encounter +C2859300|T037|AB|S73.191D|ICD10CM|Other sprain of right hip, subsequent encounter|Other sprain of right hip, subsequent encounter +C2859301|T037|PT|S73.191S|ICD10CM|Other sprain of right hip, sequela|Other sprain of right hip, sequela +C2859301|T037|AB|S73.191S|ICD10CM|Other sprain of right hip, sequela|Other sprain of right hip, sequela +C2859302|T037|AB|S73.192|ICD10CM|Other sprain of left hip|Other sprain of left hip +C2859302|T037|HT|S73.192|ICD10CM|Other sprain of left hip|Other sprain of left hip +C2859303|T037|PT|S73.192A|ICD10CM|Other sprain of left hip, initial encounter|Other sprain of left hip, initial encounter +C2859303|T037|AB|S73.192A|ICD10CM|Other sprain of left hip, initial encounter|Other sprain of left hip, initial encounter +C2859304|T037|PT|S73.192D|ICD10CM|Other sprain of left hip, subsequent encounter|Other sprain of left hip, subsequent encounter +C2859304|T037|AB|S73.192D|ICD10CM|Other sprain of left hip, subsequent encounter|Other sprain of left hip, subsequent encounter +C2859305|T037|PT|S73.192S|ICD10CM|Other sprain of left hip, sequela|Other sprain of left hip, sequela +C2859305|T037|AB|S73.192S|ICD10CM|Other sprain of left hip, sequela|Other sprain of left hip, sequela +C2859306|T037|AB|S73.199|ICD10CM|Other sprain of unspecified hip|Other sprain of unspecified hip +C2859306|T037|HT|S73.199|ICD10CM|Other sprain of unspecified hip|Other sprain of unspecified hip +C2859307|T037|PT|S73.199A|ICD10CM|Other sprain of unspecified hip, initial encounter|Other sprain of unspecified hip, initial encounter +C2859307|T037|AB|S73.199A|ICD10CM|Other sprain of unspecified hip, initial encounter|Other sprain of unspecified hip, initial encounter +C2859308|T037|PT|S73.199D|ICD10CM|Other sprain of unspecified hip, subsequent encounter|Other sprain of unspecified hip, subsequent encounter +C2859308|T037|AB|S73.199D|ICD10CM|Other sprain of unspecified hip, subsequent encounter|Other sprain of unspecified hip, subsequent encounter +C2859309|T037|PT|S73.199S|ICD10CM|Other sprain of unspecified hip, sequela|Other sprain of unspecified hip, sequela +C2859309|T037|AB|S73.199S|ICD10CM|Other sprain of unspecified hip, sequela|Other sprain of unspecified hip, sequela +C0478327|T037|AB|S74|ICD10CM|Injury of nerves at hip and thigh level|Injury of nerves at hip and thigh level +C0478327|T037|HT|S74|ICD10CM|Injury of nerves at hip and thigh level|Injury of nerves at hip and thigh level +C0478327|T037|HT|S74|ICD10|Injury of nerves at hip and thigh level|Injury of nerves at hip and thigh level +C0495931|T037|PT|S74.0|ICD10|Injury of sciatic nerve at hip and thigh level|Injury of sciatic nerve at hip and thigh level +C0495931|T037|HT|S74.0|ICD10CM|Injury of sciatic nerve at hip and thigh level|Injury of sciatic nerve at hip and thigh level +C0495931|T037|AB|S74.0|ICD10CM|Injury of sciatic nerve at hip and thigh level|Injury of sciatic nerve at hip and thigh level +C2859310|T037|AB|S74.00|ICD10CM|Injury of sciatic nerve at hip and thigh level, unsp leg|Injury of sciatic nerve at hip and thigh level, unsp leg +C2859310|T037|HT|S74.00|ICD10CM|Injury of sciatic nerve at hip and thigh level, unspecified leg|Injury of sciatic nerve at hip and thigh level, unspecified leg +C2859311|T037|PT|S74.00XA|ICD10CM|Injury of sciatic nerve at hip and thigh level, unspecified leg, initial encounter|Injury of sciatic nerve at hip and thigh level, unspecified leg, initial encounter +C2859311|T037|AB|S74.00XA|ICD10CM|Injury of sciatic nrv at hip and thigh level, unsp leg, init|Injury of sciatic nrv at hip and thigh level, unsp leg, init +C2859312|T037|PT|S74.00XD|ICD10CM|Injury of sciatic nerve at hip and thigh level, unspecified leg, subsequent encounter|Injury of sciatic nerve at hip and thigh level, unspecified leg, subsequent encounter +C2859312|T037|AB|S74.00XD|ICD10CM|Injury of sciatic nrv at hip and thigh level, unsp leg, subs|Injury of sciatic nrv at hip and thigh level, unsp leg, subs +C2859313|T037|PT|S74.00XS|ICD10CM|Injury of sciatic nerve at hip and thigh level, unspecified leg, sequela|Injury of sciatic nerve at hip and thigh level, unspecified leg, sequela +C2859313|T037|AB|S74.00XS|ICD10CM|Injury of sciatic nrv at hip and thi lev, unsp leg, sequela|Injury of sciatic nrv at hip and thi lev, unsp leg, sequela +C2859314|T037|AB|S74.01|ICD10CM|Injury of sciatic nerve at hip and thigh level, right leg|Injury of sciatic nerve at hip and thigh level, right leg +C2859314|T037|HT|S74.01|ICD10CM|Injury of sciatic nerve at hip and thigh level, right leg|Injury of sciatic nerve at hip and thigh level, right leg +C2859315|T037|PT|S74.01XA|ICD10CM|Injury of sciatic nerve at hip and thigh level, right leg, initial encounter|Injury of sciatic nerve at hip and thigh level, right leg, initial encounter +C2859315|T037|AB|S74.01XA|ICD10CM|Injury of sciatic nrv at hip and thi lev, right leg, init|Injury of sciatic nrv at hip and thi lev, right leg, init +C2859316|T037|PT|S74.01XD|ICD10CM|Injury of sciatic nerve at hip and thigh level, right leg, subsequent encounter|Injury of sciatic nerve at hip and thigh level, right leg, subsequent encounter +C2859316|T037|AB|S74.01XD|ICD10CM|Injury of sciatic nrv at hip and thi lev, right leg, subs|Injury of sciatic nrv at hip and thi lev, right leg, subs +C2859317|T037|PT|S74.01XS|ICD10CM|Injury of sciatic nerve at hip and thigh level, right leg, sequela|Injury of sciatic nerve at hip and thigh level, right leg, sequela +C2859317|T037|AB|S74.01XS|ICD10CM|Injury of sciatic nrv at hip and thi lev, right leg, sequela|Injury of sciatic nrv at hip and thi lev, right leg, sequela +C2859318|T037|AB|S74.02|ICD10CM|Injury of sciatic nerve at hip and thigh level, left leg|Injury of sciatic nerve at hip and thigh level, left leg +C2859318|T037|HT|S74.02|ICD10CM|Injury of sciatic nerve at hip and thigh level, left leg|Injury of sciatic nerve at hip and thigh level, left leg +C2859319|T037|PT|S74.02XA|ICD10CM|Injury of sciatic nerve at hip and thigh level, left leg, initial encounter|Injury of sciatic nerve at hip and thigh level, left leg, initial encounter +C2859319|T037|AB|S74.02XA|ICD10CM|Injury of sciatic nrv at hip and thigh level, left leg, init|Injury of sciatic nrv at hip and thigh level, left leg, init +C2859320|T037|PT|S74.02XD|ICD10CM|Injury of sciatic nerve at hip and thigh level, left leg, subsequent encounter|Injury of sciatic nerve at hip and thigh level, left leg, subsequent encounter +C2859320|T037|AB|S74.02XD|ICD10CM|Injury of sciatic nrv at hip and thigh level, left leg, subs|Injury of sciatic nrv at hip and thigh level, left leg, subs +C2859321|T037|PT|S74.02XS|ICD10CM|Injury of sciatic nerve at hip and thigh level, left leg, sequela|Injury of sciatic nerve at hip and thigh level, left leg, sequela +C2859321|T037|AB|S74.02XS|ICD10CM|Injury of sciatic nrv at hip and thi lev, left leg, sequela|Injury of sciatic nrv at hip and thi lev, left leg, sequela +C0495932|T037|HT|S74.1|ICD10CM|Injury of femoral nerve at hip and thigh level|Injury of femoral nerve at hip and thigh level +C0495932|T037|AB|S74.1|ICD10CM|Injury of femoral nerve at hip and thigh level|Injury of femoral nerve at hip and thigh level +C0495932|T037|PT|S74.1|ICD10|Injury of femoral nerve at hip and thigh level|Injury of femoral nerve at hip and thigh level +C2859322|T037|AB|S74.10|ICD10CM|Injury of femoral nerve at hip and thigh level, unsp leg|Injury of femoral nerve at hip and thigh level, unsp leg +C2859322|T037|HT|S74.10|ICD10CM|Injury of femoral nerve at hip and thigh level, unspecified leg|Injury of femoral nerve at hip and thigh level, unspecified leg +C2859323|T037|PT|S74.10XA|ICD10CM|Injury of femoral nerve at hip and thigh level, unspecified leg, initial encounter|Injury of femoral nerve at hip and thigh level, unspecified leg, initial encounter +C2859323|T037|AB|S74.10XA|ICD10CM|Injury of femoral nrv at hip and thigh level, unsp leg, init|Injury of femoral nrv at hip and thigh level, unsp leg, init +C2859324|T037|PT|S74.10XD|ICD10CM|Injury of femoral nerve at hip and thigh level, unspecified leg, subsequent encounter|Injury of femoral nerve at hip and thigh level, unspecified leg, subsequent encounter +C2859324|T037|AB|S74.10XD|ICD10CM|Injury of femoral nrv at hip and thigh level, unsp leg, subs|Injury of femoral nrv at hip and thigh level, unsp leg, subs +C2859325|T037|PT|S74.10XS|ICD10CM|Injury of femoral nerve at hip and thigh level, unspecified leg, sequela|Injury of femoral nerve at hip and thigh level, unspecified leg, sequela +C2859325|T037|AB|S74.10XS|ICD10CM|Injury of femoral nrv at hip and thi lev, unsp leg, sequela|Injury of femoral nrv at hip and thi lev, unsp leg, sequela +C2859326|T037|AB|S74.11|ICD10CM|Injury of femoral nerve at hip and thigh level, right leg|Injury of femoral nerve at hip and thigh level, right leg +C2859326|T037|HT|S74.11|ICD10CM|Injury of femoral nerve at hip and thigh level, right leg|Injury of femoral nerve at hip and thigh level, right leg +C2859327|T037|PT|S74.11XA|ICD10CM|Injury of femoral nerve at hip and thigh level, right leg, initial encounter|Injury of femoral nerve at hip and thigh level, right leg, initial encounter +C2859327|T037|AB|S74.11XA|ICD10CM|Injury of femoral nrv at hip and thi lev, right leg, init|Injury of femoral nrv at hip and thi lev, right leg, init +C2859328|T037|PT|S74.11XD|ICD10CM|Injury of femoral nerve at hip and thigh level, right leg, subsequent encounter|Injury of femoral nerve at hip and thigh level, right leg, subsequent encounter +C2859328|T037|AB|S74.11XD|ICD10CM|Injury of femoral nrv at hip and thi lev, right leg, subs|Injury of femoral nrv at hip and thi lev, right leg, subs +C2859329|T037|PT|S74.11XS|ICD10CM|Injury of femoral nerve at hip and thigh level, right leg, sequela|Injury of femoral nerve at hip and thigh level, right leg, sequela +C2859329|T037|AB|S74.11XS|ICD10CM|Injury of femoral nrv at hip and thi lev, right leg, sequela|Injury of femoral nrv at hip and thi lev, right leg, sequela +C2859330|T037|AB|S74.12|ICD10CM|Injury of femoral nerve at hip and thigh level, left leg|Injury of femoral nerve at hip and thigh level, left leg +C2859330|T037|HT|S74.12|ICD10CM|Injury of femoral nerve at hip and thigh level, left leg|Injury of femoral nerve at hip and thigh level, left leg +C2859331|T037|PT|S74.12XA|ICD10CM|Injury of femoral nerve at hip and thigh level, left leg, initial encounter|Injury of femoral nerve at hip and thigh level, left leg, initial encounter +C2859331|T037|AB|S74.12XA|ICD10CM|Injury of femoral nrv at hip and thigh level, left leg, init|Injury of femoral nrv at hip and thigh level, left leg, init +C2859332|T037|PT|S74.12XD|ICD10CM|Injury of femoral nerve at hip and thigh level, left leg, subsequent encounter|Injury of femoral nerve at hip and thigh level, left leg, subsequent encounter +C2859332|T037|AB|S74.12XD|ICD10CM|Injury of femoral nrv at hip and thigh level, left leg, subs|Injury of femoral nrv at hip and thigh level, left leg, subs +C2859333|T037|PT|S74.12XS|ICD10CM|Injury of femoral nerve at hip and thigh level, left leg, sequela|Injury of femoral nerve at hip and thigh level, left leg, sequela +C2859333|T037|AB|S74.12XS|ICD10CM|Injury of femoral nrv at hip and thi lev, left leg, sequela|Injury of femoral nrv at hip and thi lev, left leg, sequela +C0495933|T037|PT|S74.2|ICD10|Injury of cutaneous sensory nerve at hip and thigh level|Injury of cutaneous sensory nerve at hip and thigh level +C0495933|T037|HT|S74.2|ICD10CM|Injury of cutaneous sensory nerve at hip and thigh level|Injury of cutaneous sensory nerve at hip and thigh level +C0495933|T037|AB|S74.2|ICD10CM|Injury of cutaneous sensory nerve at hip and thigh level|Injury of cutaneous sensory nerve at hip and thigh level +C2859334|T037|AB|S74.20|ICD10CM|Injury of cutan sensory nerve at hip and thi lev, unsp leg|Injury of cutan sensory nerve at hip and thi lev, unsp leg +C2859334|T037|HT|S74.20|ICD10CM|Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg|Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg +C2859335|T037|AB|S74.20XA|ICD10CM|Inj cutan sensory nerve at hip and thi lev, unsp leg, init|Inj cutan sensory nerve at hip and thi lev, unsp leg, init +C2859335|T037|PT|S74.20XA|ICD10CM|Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg, initial encounter|Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg, initial encounter +C2859336|T037|AB|S74.20XD|ICD10CM|Inj cutan sensory nerve at hip and thi lev, unsp leg, subs|Inj cutan sensory nerve at hip and thi lev, unsp leg, subs +C2859336|T037|PT|S74.20XD|ICD10CM|Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg, subsequent encounter|Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg, subsequent encounter +C2859337|T037|AB|S74.20XS|ICD10CM|Inj cutan sens nerve at hip and thi lev, unsp leg, sequela|Inj cutan sens nerve at hip and thi lev, unsp leg, sequela +C2859337|T037|PT|S74.20XS|ICD10CM|Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg, sequela|Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg, sequela +C2859338|T037|AB|S74.21|ICD10CM|Inj cutan sensory nerve at hip and high level, right leg|Inj cutan sensory nerve at hip and high level, right leg +C2859338|T037|HT|S74.21|ICD10CM|Injury of cutaneous sensory nerve at hip and high level, right leg|Injury of cutaneous sensory nerve at hip and high level, right leg +C2859339|T037|AB|S74.21XA|ICD10CM|Inj cutan sens nerve at hip and high level, right leg, init|Inj cutan sens nerve at hip and high level, right leg, init +C2859339|T037|PT|S74.21XA|ICD10CM|Injury of cutaneous sensory nerve at hip and high level, right leg, initial encounter|Injury of cutaneous sensory nerve at hip and high level, right leg, initial encounter +C2859340|T037|AB|S74.21XD|ICD10CM|Inj cutan sens nerve at hip and high level, right leg, subs|Inj cutan sens nerve at hip and high level, right leg, subs +C2859340|T037|PT|S74.21XD|ICD10CM|Injury of cutaneous sensory nerve at hip and high level, right leg, subsequent encounter|Injury of cutaneous sensory nerve at hip and high level, right leg, subsequent encounter +C2859341|T037|AB|S74.21XS|ICD10CM|Inj cutan sens nerve at hip and high level, right leg, sqla|Inj cutan sens nerve at hip and high level, right leg, sqla +C2859341|T037|PT|S74.21XS|ICD10CM|Injury of cutaneous sensory nerve at hip and high level, right leg, sequela|Injury of cutaneous sensory nerve at hip and high level, right leg, sequela +C2859342|T037|AB|S74.22|ICD10CM|Injury of cutan sensory nerve at hip and thi lev, left leg|Injury of cutan sensory nerve at hip and thi lev, left leg +C2859342|T037|HT|S74.22|ICD10CM|Injury of cutaneous sensory nerve at hip and thigh level, left leg|Injury of cutaneous sensory nerve at hip and thigh level, left leg +C2859343|T037|AB|S74.22XA|ICD10CM|Inj cutan sensory nerve at hip and thi lev, left leg, init|Inj cutan sensory nerve at hip and thi lev, left leg, init +C2859343|T037|PT|S74.22XA|ICD10CM|Injury of cutaneous sensory nerve at hip and thigh level, left leg, initial encounter|Injury of cutaneous sensory nerve at hip and thigh level, left leg, initial encounter +C2859344|T037|AB|S74.22XD|ICD10CM|Inj cutan sensory nerve at hip and thi lev, left leg, subs|Inj cutan sensory nerve at hip and thi lev, left leg, subs +C2859344|T037|PT|S74.22XD|ICD10CM|Injury of cutaneous sensory nerve at hip and thigh level, left leg, subsequent encounter|Injury of cutaneous sensory nerve at hip and thigh level, left leg, subsequent encounter +C2859345|T037|AB|S74.22XS|ICD10CM|Inj cutan sens nerve at hip and thi lev, left leg, sequela|Inj cutan sens nerve at hip and thi lev, left leg, sequela +C2859345|T037|PT|S74.22XS|ICD10CM|Injury of cutaneous sensory nerve at hip and thigh level, left leg, sequela|Injury of cutaneous sensory nerve at hip and thigh level, left leg, sequela +C0451656|T037|PT|S74.7|ICD10|Injury of multiple nerves at hip and thigh level|Injury of multiple nerves at hip and thigh level +C0478326|T037|PT|S74.8|ICD10|Injury of other nerves at hip and thigh level|Injury of other nerves at hip and thigh level +C0478326|T037|HT|S74.8|ICD10CM|Injury of other nerves at hip and thigh level|Injury of other nerves at hip and thigh level +C0478326|T037|AB|S74.8|ICD10CM|Injury of other nerves at hip and thigh level|Injury of other nerves at hip and thigh level +C0478326|T037|HT|S74.8X|ICD10CM|Injury of other nerves at hip and thigh level|Injury of other nerves at hip and thigh level +C0478326|T037|AB|S74.8X|ICD10CM|Injury of other nerves at hip and thigh level|Injury of other nerves at hip and thigh level +C2859346|T037|AB|S74.8X1|ICD10CM|Injury of other nerves at hip and thigh level, right leg|Injury of other nerves at hip and thigh level, right leg +C2859346|T037|HT|S74.8X1|ICD10CM|Injury of other nerves at hip and thigh level, right leg|Injury of other nerves at hip and thigh level, right leg +C2859347|T037|AB|S74.8X1A|ICD10CM|Injury of oth nerves at hip and thigh level, right leg, init|Injury of oth nerves at hip and thigh level, right leg, init +C2859347|T037|PT|S74.8X1A|ICD10CM|Injury of other nerves at hip and thigh level, right leg, initial encounter|Injury of other nerves at hip and thigh level, right leg, initial encounter +C2859348|T037|AB|S74.8X1D|ICD10CM|Injury of oth nerves at hip and thigh level, right leg, subs|Injury of oth nerves at hip and thigh level, right leg, subs +C2859348|T037|PT|S74.8X1D|ICD10CM|Injury of other nerves at hip and thigh level, right leg, subsequent encounter|Injury of other nerves at hip and thigh level, right leg, subsequent encounter +C2859349|T037|AB|S74.8X1S|ICD10CM|Injury of nerves at hip and thigh level, right leg, sequela|Injury of nerves at hip and thigh level, right leg, sequela +C2859349|T037|PT|S74.8X1S|ICD10CM|Injury of other nerves at hip and thigh level, right leg, sequela|Injury of other nerves at hip and thigh level, right leg, sequela +C2859350|T037|AB|S74.8X2|ICD10CM|Injury of other nerves at hip and thigh level, left leg|Injury of other nerves at hip and thigh level, left leg +C2859350|T037|HT|S74.8X2|ICD10CM|Injury of other nerves at hip and thigh level, left leg|Injury of other nerves at hip and thigh level, left leg +C2859351|T037|AB|S74.8X2A|ICD10CM|Injury of oth nerves at hip and thigh level, left leg, init|Injury of oth nerves at hip and thigh level, left leg, init +C2859351|T037|PT|S74.8X2A|ICD10CM|Injury of other nerves at hip and thigh level, left leg, initial encounter|Injury of other nerves at hip and thigh level, left leg, initial encounter +C2859352|T037|AB|S74.8X2D|ICD10CM|Injury of oth nerves at hip and thigh level, left leg, subs|Injury of oth nerves at hip and thigh level, left leg, subs +C2859352|T037|PT|S74.8X2D|ICD10CM|Injury of other nerves at hip and thigh level, left leg, subsequent encounter|Injury of other nerves at hip and thigh level, left leg, subsequent encounter +C2859353|T037|AB|S74.8X2S|ICD10CM|Injury of nerves at hip and thigh level, left leg, sequela|Injury of nerves at hip and thigh level, left leg, sequela +C2859353|T037|PT|S74.8X2S|ICD10CM|Injury of other nerves at hip and thigh level, left leg, sequela|Injury of other nerves at hip and thigh level, left leg, sequela +C2859354|T037|AB|S74.8X9|ICD10CM|Injury of other nerves at hip and thigh level, unsp leg|Injury of other nerves at hip and thigh level, unsp leg +C2859354|T037|HT|S74.8X9|ICD10CM|Injury of other nerves at hip and thigh level, unspecified leg|Injury of other nerves at hip and thigh level, unspecified leg +C2859355|T037|AB|S74.8X9A|ICD10CM|Injury of oth nerves at hip and thigh level, unsp leg, init|Injury of oth nerves at hip and thigh level, unsp leg, init +C2859355|T037|PT|S74.8X9A|ICD10CM|Injury of other nerves at hip and thigh level, unspecified leg, initial encounter|Injury of other nerves at hip and thigh level, unspecified leg, initial encounter +C2859356|T037|AB|S74.8X9D|ICD10CM|Injury of oth nerves at hip and thigh level, unsp leg, subs|Injury of oth nerves at hip and thigh level, unsp leg, subs +C2859356|T037|PT|S74.8X9D|ICD10CM|Injury of other nerves at hip and thigh level, unspecified leg, subsequent encounter|Injury of other nerves at hip and thigh level, unspecified leg, subsequent encounter +C2859357|T037|AB|S74.8X9S|ICD10CM|Injury of nerves at hip and thigh level, unsp leg, sequela|Injury of nerves at hip and thigh level, unsp leg, sequela +C2859357|T037|PT|S74.8X9S|ICD10CM|Injury of other nerves at hip and thigh level, unspecified leg, sequela|Injury of other nerves at hip and thigh level, unspecified leg, sequela +C0478327|T037|HT|S74.9|ICD10CM|Injury of unspecified nerve at hip and thigh level|Injury of unspecified nerve at hip and thigh level +C0478327|T037|AB|S74.9|ICD10CM|Injury of unspecified nerve at hip and thigh level|Injury of unspecified nerve at hip and thigh level +C0478327|T037|PT|S74.9|ICD10|Injury of unspecified nerve at hip and thigh level|Injury of unspecified nerve at hip and thigh level +C2859358|T037|AB|S74.90|ICD10CM|Injury of unsp nerve at hip and thigh level, unspecified leg|Injury of unsp nerve at hip and thigh level, unspecified leg +C2859358|T037|HT|S74.90|ICD10CM|Injury of unspecified nerve at hip and thigh level, unspecified leg|Injury of unspecified nerve at hip and thigh level, unspecified leg +C2859359|T037|AB|S74.90XA|ICD10CM|Injury of unsp nerve at hip and thigh level, unsp leg, init|Injury of unsp nerve at hip and thigh level, unsp leg, init +C2859359|T037|PT|S74.90XA|ICD10CM|Injury of unspecified nerve at hip and thigh level, unspecified leg, initial encounter|Injury of unspecified nerve at hip and thigh level, unspecified leg, initial encounter +C2859360|T037|AB|S74.90XD|ICD10CM|Injury of unsp nerve at hip and thigh level, unsp leg, subs|Injury of unsp nerve at hip and thigh level, unsp leg, subs +C2859360|T037|PT|S74.90XD|ICD10CM|Injury of unspecified nerve at hip and thigh level, unspecified leg, subsequent encounter|Injury of unspecified nerve at hip and thigh level, unspecified leg, subsequent encounter +C2859361|T037|AB|S74.90XS|ICD10CM|Injury of unsp nerve at hip and thi lev, unsp leg, sequela|Injury of unsp nerve at hip and thi lev, unsp leg, sequela +C2859361|T037|PT|S74.90XS|ICD10CM|Injury of unspecified nerve at hip and thigh level, unspecified leg, sequela|Injury of unspecified nerve at hip and thigh level, unspecified leg, sequela +C2859362|T037|AB|S74.91|ICD10CM|Injury of unsp nerve at hip and thigh level, right leg|Injury of unsp nerve at hip and thigh level, right leg +C2859362|T037|HT|S74.91|ICD10CM|Injury of unspecified nerve at hip and thigh level, right leg|Injury of unspecified nerve at hip and thigh level, right leg +C2859363|T037|AB|S74.91XA|ICD10CM|Injury of unsp nerve at hip and thigh level, right leg, init|Injury of unsp nerve at hip and thigh level, right leg, init +C2859363|T037|PT|S74.91XA|ICD10CM|Injury of unspecified nerve at hip and thigh level, right leg, initial encounter|Injury of unspecified nerve at hip and thigh level, right leg, initial encounter +C2859364|T037|AB|S74.91XD|ICD10CM|Injury of unsp nerve at hip and thigh level, right leg, subs|Injury of unsp nerve at hip and thigh level, right leg, subs +C2859364|T037|PT|S74.91XD|ICD10CM|Injury of unspecified nerve at hip and thigh level, right leg, subsequent encounter|Injury of unspecified nerve at hip and thigh level, right leg, subsequent encounter +C2859365|T037|AB|S74.91XS|ICD10CM|Injury of unsp nerve at hip and thi lev, right leg, sequela|Injury of unsp nerve at hip and thi lev, right leg, sequela +C2859365|T037|PT|S74.91XS|ICD10CM|Injury of unspecified nerve at hip and thigh level, right leg, sequela|Injury of unspecified nerve at hip and thigh level, right leg, sequela +C2859366|T037|AB|S74.92|ICD10CM|Injury of unspecified nerve at hip and thigh level, left leg|Injury of unspecified nerve at hip and thigh level, left leg +C2859366|T037|HT|S74.92|ICD10CM|Injury of unspecified nerve at hip and thigh level, left leg|Injury of unspecified nerve at hip and thigh level, left leg +C2859367|T037|AB|S74.92XA|ICD10CM|Injury of unsp nerve at hip and thigh level, left leg, init|Injury of unsp nerve at hip and thigh level, left leg, init +C2859367|T037|PT|S74.92XA|ICD10CM|Injury of unspecified nerve at hip and thigh level, left leg, initial encounter|Injury of unspecified nerve at hip and thigh level, left leg, initial encounter +C2859368|T037|AB|S74.92XD|ICD10CM|Injury of unsp nerve at hip and thigh level, left leg, subs|Injury of unsp nerve at hip and thigh level, left leg, subs +C2859368|T037|PT|S74.92XD|ICD10CM|Injury of unspecified nerve at hip and thigh level, left leg, subsequent encounter|Injury of unspecified nerve at hip and thigh level, left leg, subsequent encounter +C2859369|T037|AB|S74.92XS|ICD10CM|Injury of unsp nerve at hip and thi lev, left leg, sequela|Injury of unsp nerve at hip and thi lev, left leg, sequela +C2859369|T037|PT|S74.92XS|ICD10CM|Injury of unspecified nerve at hip and thigh level, left leg, sequela|Injury of unspecified nerve at hip and thigh level, left leg, sequela +C0478329|T037|HT|S75|ICD10|Injury of blood vessels at hip and thigh level|Injury of blood vessels at hip and thigh level +C0478329|T037|AB|S75|ICD10CM|Injury of blood vessels at hip and thigh level|Injury of blood vessels at hip and thigh level +C0478329|T037|HT|S75|ICD10CM|Injury of blood vessels at hip and thigh level|Injury of blood vessels at hip and thigh level +C0495935|T037|HT|S75.0|ICD10CM|Injury of femoral artery|Injury of femoral artery +C0495935|T037|AB|S75.0|ICD10CM|Injury of femoral artery|Injury of femoral artery +C0495935|T037|PT|S75.0|ICD10|Injury of femoral artery|Injury of femoral artery +C2859370|T037|AB|S75.00|ICD10CM|Unspecified injury of femoral artery|Unspecified injury of femoral artery +C2859370|T037|HT|S75.00|ICD10CM|Unspecified injury of femoral artery|Unspecified injury of femoral artery +C2859371|T037|AB|S75.001|ICD10CM|Unspecified injury of femoral artery, right leg|Unspecified injury of femoral artery, right leg +C2859371|T037|HT|S75.001|ICD10CM|Unspecified injury of femoral artery, right leg|Unspecified injury of femoral artery, right leg +C2859372|T037|AB|S75.001A|ICD10CM|Unspecified injury of femoral artery, right leg, init encntr|Unspecified injury of femoral artery, right leg, init encntr +C2859372|T037|PT|S75.001A|ICD10CM|Unspecified injury of femoral artery, right leg, initial encounter|Unspecified injury of femoral artery, right leg, initial encounter +C2859373|T037|AB|S75.001D|ICD10CM|Unspecified injury of femoral artery, right leg, subs encntr|Unspecified injury of femoral artery, right leg, subs encntr +C2859373|T037|PT|S75.001D|ICD10CM|Unspecified injury of femoral artery, right leg, subsequent encounter|Unspecified injury of femoral artery, right leg, subsequent encounter +C2859374|T037|AB|S75.001S|ICD10CM|Unspecified injury of femoral artery, right leg, sequela|Unspecified injury of femoral artery, right leg, sequela +C2859374|T037|PT|S75.001S|ICD10CM|Unspecified injury of femoral artery, right leg, sequela|Unspecified injury of femoral artery, right leg, sequela +C2859375|T037|AB|S75.002|ICD10CM|Unspecified injury of femoral artery, left leg|Unspecified injury of femoral artery, left leg +C2859375|T037|HT|S75.002|ICD10CM|Unspecified injury of femoral artery, left leg|Unspecified injury of femoral artery, left leg +C2859376|T037|AB|S75.002A|ICD10CM|Unspecified injury of femoral artery, left leg, init encntr|Unspecified injury of femoral artery, left leg, init encntr +C2859376|T037|PT|S75.002A|ICD10CM|Unspecified injury of femoral artery, left leg, initial encounter|Unspecified injury of femoral artery, left leg, initial encounter +C2859377|T037|AB|S75.002D|ICD10CM|Unspecified injury of femoral artery, left leg, subs encntr|Unspecified injury of femoral artery, left leg, subs encntr +C2859377|T037|PT|S75.002D|ICD10CM|Unspecified injury of femoral artery, left leg, subsequent encounter|Unspecified injury of femoral artery, left leg, subsequent encounter +C2859378|T037|AB|S75.002S|ICD10CM|Unspecified injury of femoral artery, left leg, sequela|Unspecified injury of femoral artery, left leg, sequela +C2859378|T037|PT|S75.002S|ICD10CM|Unspecified injury of femoral artery, left leg, sequela|Unspecified injury of femoral artery, left leg, sequela +C2859379|T037|AB|S75.009|ICD10CM|Unspecified injury of femoral artery, unspecified leg|Unspecified injury of femoral artery, unspecified leg +C2859379|T037|HT|S75.009|ICD10CM|Unspecified injury of femoral artery, unspecified leg|Unspecified injury of femoral artery, unspecified leg +C2859380|T037|AB|S75.009A|ICD10CM|Unsp injury of femoral artery, unspecified leg, init encntr|Unsp injury of femoral artery, unspecified leg, init encntr +C2859380|T037|PT|S75.009A|ICD10CM|Unspecified injury of femoral artery, unspecified leg, initial encounter|Unspecified injury of femoral artery, unspecified leg, initial encounter +C2859381|T037|AB|S75.009D|ICD10CM|Unsp injury of femoral artery, unspecified leg, subs encntr|Unsp injury of femoral artery, unspecified leg, subs encntr +C2859381|T037|PT|S75.009D|ICD10CM|Unspecified injury of femoral artery, unspecified leg, subsequent encounter|Unspecified injury of femoral artery, unspecified leg, subsequent encounter +C2859382|T037|AB|S75.009S|ICD10CM|Unsp injury of femoral artery, unspecified leg, sequela|Unsp injury of femoral artery, unspecified leg, sequela +C2859382|T037|PT|S75.009S|ICD10CM|Unspecified injury of femoral artery, unspecified leg, sequela|Unspecified injury of femoral artery, unspecified leg, sequela +C2859383|T037|ET|S75.01|ICD10CM|Incomplete transection of femoral artery|Incomplete transection of femoral artery +C0743856|T037|ET|S75.01|ICD10CM|Laceration of femoral artery NOS|Laceration of femoral artery NOS +C2859384|T037|AB|S75.01|ICD10CM|Minor laceration of femoral artery|Minor laceration of femoral artery +C2859384|T037|HT|S75.01|ICD10CM|Minor laceration of femoral artery|Minor laceration of femoral artery +C0743858|T037|ET|S75.01|ICD10CM|Superficial laceration of femoral artery|Superficial laceration of femoral artery +C2859385|T037|AB|S75.011|ICD10CM|Minor laceration of femoral artery, right leg|Minor laceration of femoral artery, right leg +C2859385|T037|HT|S75.011|ICD10CM|Minor laceration of femoral artery, right leg|Minor laceration of femoral artery, right leg +C2859386|T037|AB|S75.011A|ICD10CM|Minor laceration of femoral artery, right leg, init encntr|Minor laceration of femoral artery, right leg, init encntr +C2859386|T037|PT|S75.011A|ICD10CM|Minor laceration of femoral artery, right leg, initial encounter|Minor laceration of femoral artery, right leg, initial encounter +C2859387|T037|AB|S75.011D|ICD10CM|Minor laceration of femoral artery, right leg, subs encntr|Minor laceration of femoral artery, right leg, subs encntr +C2859387|T037|PT|S75.011D|ICD10CM|Minor laceration of femoral artery, right leg, subsequent encounter|Minor laceration of femoral artery, right leg, subsequent encounter +C2859388|T037|PT|S75.011S|ICD10CM|Minor laceration of femoral artery, right leg, sequela|Minor laceration of femoral artery, right leg, sequela +C2859388|T037|AB|S75.011S|ICD10CM|Minor laceration of femoral artery, right leg, sequela|Minor laceration of femoral artery, right leg, sequela +C2859389|T037|AB|S75.012|ICD10CM|Minor laceration of femoral artery, left leg|Minor laceration of femoral artery, left leg +C2859389|T037|HT|S75.012|ICD10CM|Minor laceration of femoral artery, left leg|Minor laceration of femoral artery, left leg +C2859390|T037|AB|S75.012A|ICD10CM|Minor laceration of femoral artery, left leg, init encntr|Minor laceration of femoral artery, left leg, init encntr +C2859390|T037|PT|S75.012A|ICD10CM|Minor laceration of femoral artery, left leg, initial encounter|Minor laceration of femoral artery, left leg, initial encounter +C2859391|T037|AB|S75.012D|ICD10CM|Minor laceration of femoral artery, left leg, subs encntr|Minor laceration of femoral artery, left leg, subs encntr +C2859391|T037|PT|S75.012D|ICD10CM|Minor laceration of femoral artery, left leg, subsequent encounter|Minor laceration of femoral artery, left leg, subsequent encounter +C2859392|T037|PT|S75.012S|ICD10CM|Minor laceration of femoral artery, left leg, sequela|Minor laceration of femoral artery, left leg, sequela +C2859392|T037|AB|S75.012S|ICD10CM|Minor laceration of femoral artery, left leg, sequela|Minor laceration of femoral artery, left leg, sequela +C2859393|T037|AB|S75.019|ICD10CM|Minor laceration of femoral artery, unspecified leg|Minor laceration of femoral artery, unspecified leg +C2859393|T037|HT|S75.019|ICD10CM|Minor laceration of femoral artery, unspecified leg|Minor laceration of femoral artery, unspecified leg +C2859394|T037|AB|S75.019A|ICD10CM|Minor laceration of femoral artery, unsp leg, init encntr|Minor laceration of femoral artery, unsp leg, init encntr +C2859394|T037|PT|S75.019A|ICD10CM|Minor laceration of femoral artery, unspecified leg, initial encounter|Minor laceration of femoral artery, unspecified leg, initial encounter +C2859395|T037|AB|S75.019D|ICD10CM|Minor laceration of femoral artery, unsp leg, subs encntr|Minor laceration of femoral artery, unsp leg, subs encntr +C2859395|T037|PT|S75.019D|ICD10CM|Minor laceration of femoral artery, unspecified leg, subsequent encounter|Minor laceration of femoral artery, unspecified leg, subsequent encounter +C2859396|T037|AB|S75.019S|ICD10CM|Minor laceration of femoral artery, unspecified leg, sequela|Minor laceration of femoral artery, unspecified leg, sequela +C2859396|T037|PT|S75.019S|ICD10CM|Minor laceration of femoral artery, unspecified leg, sequela|Minor laceration of femoral artery, unspecified leg, sequela +C2859397|T037|ET|S75.02|ICD10CM|Complete transection of femoral artery|Complete transection of femoral artery +C2859399|T037|AB|S75.02|ICD10CM|Major laceration of femoral artery|Major laceration of femoral artery +C2859399|T037|HT|S75.02|ICD10CM|Major laceration of femoral artery|Major laceration of femoral artery +C2859398|T037|ET|S75.02|ICD10CM|Traumatic rupture of femoral artery|Traumatic rupture of femoral artery +C2859400|T037|AB|S75.021|ICD10CM|Major laceration of femoral artery, right leg|Major laceration of femoral artery, right leg +C2859400|T037|HT|S75.021|ICD10CM|Major laceration of femoral artery, right leg|Major laceration of femoral artery, right leg +C2859401|T037|AB|S75.021A|ICD10CM|Major laceration of femoral artery, right leg, init encntr|Major laceration of femoral artery, right leg, init encntr +C2859401|T037|PT|S75.021A|ICD10CM|Major laceration of femoral artery, right leg, initial encounter|Major laceration of femoral artery, right leg, initial encounter +C2859402|T037|AB|S75.021D|ICD10CM|Major laceration of femoral artery, right leg, subs encntr|Major laceration of femoral artery, right leg, subs encntr +C2859402|T037|PT|S75.021D|ICD10CM|Major laceration of femoral artery, right leg, subsequent encounter|Major laceration of femoral artery, right leg, subsequent encounter +C2859403|T037|PT|S75.021S|ICD10CM|Major laceration of femoral artery, right leg, sequela|Major laceration of femoral artery, right leg, sequela +C2859403|T037|AB|S75.021S|ICD10CM|Major laceration of femoral artery, right leg, sequela|Major laceration of femoral artery, right leg, sequela +C2859404|T037|AB|S75.022|ICD10CM|Major laceration of femoral artery, left leg|Major laceration of femoral artery, left leg +C2859404|T037|HT|S75.022|ICD10CM|Major laceration of femoral artery, left leg|Major laceration of femoral artery, left leg +C2859405|T037|AB|S75.022A|ICD10CM|Major laceration of femoral artery, left leg, init encntr|Major laceration of femoral artery, left leg, init encntr +C2859405|T037|PT|S75.022A|ICD10CM|Major laceration of femoral artery, left leg, initial encounter|Major laceration of femoral artery, left leg, initial encounter +C2859406|T037|AB|S75.022D|ICD10CM|Major laceration of femoral artery, left leg, subs encntr|Major laceration of femoral artery, left leg, subs encntr +C2859406|T037|PT|S75.022D|ICD10CM|Major laceration of femoral artery, left leg, subsequent encounter|Major laceration of femoral artery, left leg, subsequent encounter +C2859407|T037|PT|S75.022S|ICD10CM|Major laceration of femoral artery, left leg, sequela|Major laceration of femoral artery, left leg, sequela +C2859407|T037|AB|S75.022S|ICD10CM|Major laceration of femoral artery, left leg, sequela|Major laceration of femoral artery, left leg, sequela +C2859408|T037|AB|S75.029|ICD10CM|Major laceration of femoral artery, unspecified leg|Major laceration of femoral artery, unspecified leg +C2859408|T037|HT|S75.029|ICD10CM|Major laceration of femoral artery, unspecified leg|Major laceration of femoral artery, unspecified leg +C2859409|T037|AB|S75.029A|ICD10CM|Major laceration of femoral artery, unsp leg, init encntr|Major laceration of femoral artery, unsp leg, init encntr +C2859409|T037|PT|S75.029A|ICD10CM|Major laceration of femoral artery, unspecified leg, initial encounter|Major laceration of femoral artery, unspecified leg, initial encounter +C2859410|T037|AB|S75.029D|ICD10CM|Major laceration of femoral artery, unsp leg, subs encntr|Major laceration of femoral artery, unsp leg, subs encntr +C2859410|T037|PT|S75.029D|ICD10CM|Major laceration of femoral artery, unspecified leg, subsequent encounter|Major laceration of femoral artery, unspecified leg, subsequent encounter +C2859411|T037|AB|S75.029S|ICD10CM|Major laceration of femoral artery, unspecified leg, sequela|Major laceration of femoral artery, unspecified leg, sequela +C2859411|T037|PT|S75.029S|ICD10CM|Major laceration of femoral artery, unspecified leg, sequela|Major laceration of femoral artery, unspecified leg, sequela +C2859412|T037|AB|S75.09|ICD10CM|Other specified injury of femoral artery|Other specified injury of femoral artery +C2859412|T037|HT|S75.09|ICD10CM|Other specified injury of femoral artery|Other specified injury of femoral artery +C2859413|T037|AB|S75.091|ICD10CM|Other specified injury of femoral artery, right leg|Other specified injury of femoral artery, right leg +C2859413|T037|HT|S75.091|ICD10CM|Other specified injury of femoral artery, right leg|Other specified injury of femoral artery, right leg +C2859414|T037|AB|S75.091A|ICD10CM|Oth injury of femoral artery, right leg, init encntr|Oth injury of femoral artery, right leg, init encntr +C2859414|T037|PT|S75.091A|ICD10CM|Other specified injury of femoral artery, right leg, initial encounter|Other specified injury of femoral artery, right leg, initial encounter +C2859415|T037|AB|S75.091D|ICD10CM|Oth injury of femoral artery, right leg, subs encntr|Oth injury of femoral artery, right leg, subs encntr +C2859415|T037|PT|S75.091D|ICD10CM|Other specified injury of femoral artery, right leg, subsequent encounter|Other specified injury of femoral artery, right leg, subsequent encounter +C2859416|T037|AB|S75.091S|ICD10CM|Other specified injury of femoral artery, right leg, sequela|Other specified injury of femoral artery, right leg, sequela +C2859416|T037|PT|S75.091S|ICD10CM|Other specified injury of femoral artery, right leg, sequela|Other specified injury of femoral artery, right leg, sequela +C2859417|T037|AB|S75.092|ICD10CM|Other specified injury of femoral artery, left leg|Other specified injury of femoral artery, left leg +C2859417|T037|HT|S75.092|ICD10CM|Other specified injury of femoral artery, left leg|Other specified injury of femoral artery, left leg +C2859418|T037|AB|S75.092A|ICD10CM|Oth injury of femoral artery, left leg, init encntr|Oth injury of femoral artery, left leg, init encntr +C2859418|T037|PT|S75.092A|ICD10CM|Other specified injury of femoral artery, left leg, initial encounter|Other specified injury of femoral artery, left leg, initial encounter +C2859419|T037|AB|S75.092D|ICD10CM|Oth injury of femoral artery, left leg, subs encntr|Oth injury of femoral artery, left leg, subs encntr +C2859419|T037|PT|S75.092D|ICD10CM|Other specified injury of femoral artery, left leg, subsequent encounter|Other specified injury of femoral artery, left leg, subsequent encounter +C2859420|T037|AB|S75.092S|ICD10CM|Other specified injury of femoral artery, left leg, sequela|Other specified injury of femoral artery, left leg, sequela +C2859420|T037|PT|S75.092S|ICD10CM|Other specified injury of femoral artery, left leg, sequela|Other specified injury of femoral artery, left leg, sequela +C2859421|T037|AB|S75.099|ICD10CM|Other specified injury of femoral artery, unspecified leg|Other specified injury of femoral artery, unspecified leg +C2859421|T037|HT|S75.099|ICD10CM|Other specified injury of femoral artery, unspecified leg|Other specified injury of femoral artery, unspecified leg +C2859422|T037|AB|S75.099A|ICD10CM|Oth injury of femoral artery, unspecified leg, init encntr|Oth injury of femoral artery, unspecified leg, init encntr +C2859422|T037|PT|S75.099A|ICD10CM|Other specified injury of femoral artery, unspecified leg, initial encounter|Other specified injury of femoral artery, unspecified leg, initial encounter +C2859423|T037|AB|S75.099D|ICD10CM|Oth injury of femoral artery, unspecified leg, subs encntr|Oth injury of femoral artery, unspecified leg, subs encntr +C2859423|T037|PT|S75.099D|ICD10CM|Other specified injury of femoral artery, unspecified leg, subsequent encounter|Other specified injury of femoral artery, unspecified leg, subsequent encounter +C2859424|T037|AB|S75.099S|ICD10CM|Oth injury of femoral artery, unspecified leg, sequela|Oth injury of femoral artery, unspecified leg, sequela +C2859424|T037|PT|S75.099S|ICD10CM|Other specified injury of femoral artery, unspecified leg, sequela|Other specified injury of femoral artery, unspecified leg, sequela +C0495936|T037|HT|S75.1|ICD10CM|Injury of femoral vein at hip and thigh level|Injury of femoral vein at hip and thigh level +C0495936|T037|AB|S75.1|ICD10CM|Injury of femoral vein at hip and thigh level|Injury of femoral vein at hip and thigh level +C0495936|T037|PT|S75.1|ICD10|Injury of femoral vein at hip and thigh level|Injury of femoral vein at hip and thigh level +C2859425|T037|AB|S75.10|ICD10CM|Unspecified injury of femoral vein at hip and thigh level|Unspecified injury of femoral vein at hip and thigh level +C2859425|T037|HT|S75.10|ICD10CM|Unspecified injury of femoral vein at hip and thigh level|Unspecified injury of femoral vein at hip and thigh level +C2859426|T037|AB|S75.101|ICD10CM|Unsp injury of femor vein at hip and thigh level, right leg|Unsp injury of femor vein at hip and thigh level, right leg +C2859426|T037|HT|S75.101|ICD10CM|Unspecified injury of femoral vein at hip and thigh level, right leg|Unspecified injury of femoral vein at hip and thigh level, right leg +C2859427|T037|AB|S75.101A|ICD10CM|Unsp inj femor vein at hip and thi lev, right leg, init|Unsp inj femor vein at hip and thi lev, right leg, init +C2859427|T037|PT|S75.101A|ICD10CM|Unspecified injury of femoral vein at hip and thigh level, right leg, initial encounter|Unspecified injury of femoral vein at hip and thigh level, right leg, initial encounter +C2859428|T037|AB|S75.101D|ICD10CM|Unsp inj femor vein at hip and thi lev, right leg, subs|Unsp inj femor vein at hip and thi lev, right leg, subs +C2859428|T037|PT|S75.101D|ICD10CM|Unspecified injury of femoral vein at hip and thigh level, right leg, subsequent encounter|Unspecified injury of femoral vein at hip and thigh level, right leg, subsequent encounter +C2859429|T037|AB|S75.101S|ICD10CM|Unsp inj femor vein at hip and thi lev, right leg, sequela|Unsp inj femor vein at hip and thi lev, right leg, sequela +C2859429|T037|PT|S75.101S|ICD10CM|Unspecified injury of femoral vein at hip and thigh level, right leg, sequela|Unspecified injury of femoral vein at hip and thigh level, right leg, sequela +C2859430|T037|AB|S75.102|ICD10CM|Unsp injury of femoral vein at hip and thigh level, left leg|Unsp injury of femoral vein at hip and thigh level, left leg +C2859430|T037|HT|S75.102|ICD10CM|Unspecified injury of femoral vein at hip and thigh level, left leg|Unspecified injury of femoral vein at hip and thigh level, left leg +C2859431|T037|AB|S75.102A|ICD10CM|Unsp injury of femor vein at hip and thi lev, left leg, init|Unsp injury of femor vein at hip and thi lev, left leg, init +C2859431|T037|PT|S75.102A|ICD10CM|Unspecified injury of femoral vein at hip and thigh level, left leg, initial encounter|Unspecified injury of femoral vein at hip and thigh level, left leg, initial encounter +C2859432|T037|AB|S75.102D|ICD10CM|Unsp injury of femor vein at hip and thi lev, left leg, subs|Unsp injury of femor vein at hip and thi lev, left leg, subs +C2859432|T037|PT|S75.102D|ICD10CM|Unspecified injury of femoral vein at hip and thigh level, left leg, subsequent encounter|Unspecified injury of femoral vein at hip and thigh level, left leg, subsequent encounter +C2859433|T037|AB|S75.102S|ICD10CM|Unsp inj femor vein at hip and thi lev, left leg, sequela|Unsp inj femor vein at hip and thi lev, left leg, sequela +C2859433|T037|PT|S75.102S|ICD10CM|Unspecified injury of femoral vein at hip and thigh level, left leg, sequela|Unspecified injury of femoral vein at hip and thigh level, left leg, sequela +C2859434|T037|AB|S75.109|ICD10CM|Unsp injury of femoral vein at hip and thigh level, unsp leg|Unsp injury of femoral vein at hip and thigh level, unsp leg +C2859434|T037|HT|S75.109|ICD10CM|Unspecified injury of femoral vein at hip and thigh level, unspecified leg|Unspecified injury of femoral vein at hip and thigh level, unspecified leg +C2859435|T037|AB|S75.109A|ICD10CM|Unsp injury of femor vein at hip and thi lev, unsp leg, init|Unsp injury of femor vein at hip and thi lev, unsp leg, init +C2859435|T037|PT|S75.109A|ICD10CM|Unspecified injury of femoral vein at hip and thigh level, unspecified leg, initial encounter|Unspecified injury of femoral vein at hip and thigh level, unspecified leg, initial encounter +C2859436|T037|AB|S75.109D|ICD10CM|Unsp injury of femor vein at hip and thi lev, unsp leg, subs|Unsp injury of femor vein at hip and thi lev, unsp leg, subs +C2859436|T037|PT|S75.109D|ICD10CM|Unspecified injury of femoral vein at hip and thigh level, unspecified leg, subsequent encounter|Unspecified injury of femoral vein at hip and thigh level, unspecified leg, subsequent encounter +C2859437|T037|AB|S75.109S|ICD10CM|Unsp inj femor vein at hip and thi lev, unsp leg, sequela|Unsp inj femor vein at hip and thi lev, unsp leg, sequela +C2859437|T037|PT|S75.109S|ICD10CM|Unspecified injury of femoral vein at hip and thigh level, unspecified leg, sequela|Unspecified injury of femoral vein at hip and thigh level, unspecified leg, sequela +C2859438|T037|ET|S75.11|ICD10CM|Incomplete transection of femoral vein at hip and thigh level|Incomplete transection of femoral vein at hip and thigh level +C2859439|T037|ET|S75.11|ICD10CM|Laceration of femoral vein at hip and thigh level NOS|Laceration of femoral vein at hip and thigh level NOS +C2859441|T037|AB|S75.11|ICD10CM|Minor laceration of femoral vein at hip and thigh level|Minor laceration of femoral vein at hip and thigh level +C2859441|T037|HT|S75.11|ICD10CM|Minor laceration of femoral vein at hip and thigh level|Minor laceration of femoral vein at hip and thigh level +C2859440|T037|ET|S75.11|ICD10CM|Superficial laceration of femoral vein at hip and thigh level|Superficial laceration of femoral vein at hip and thigh level +C2859442|T037|AB|S75.111|ICD10CM|Minor lacerat femoral vein at hip and thigh level, right leg|Minor lacerat femoral vein at hip and thigh level, right leg +C2859442|T037|HT|S75.111|ICD10CM|Minor laceration of femoral vein at hip and thigh level, right leg|Minor laceration of femoral vein at hip and thigh level, right leg +C2859443|T037|AB|S75.111A|ICD10CM|Minor lacerat femor vein at hip and thi lev, right leg, init|Minor lacerat femor vein at hip and thi lev, right leg, init +C2859443|T037|PT|S75.111A|ICD10CM|Minor laceration of femoral vein at hip and thigh level, right leg, initial encounter|Minor laceration of femoral vein at hip and thigh level, right leg, initial encounter +C2859444|T037|AB|S75.111D|ICD10CM|Minor lacerat femor vein at hip and thi lev, right leg, subs|Minor lacerat femor vein at hip and thi lev, right leg, subs +C2859444|T037|PT|S75.111D|ICD10CM|Minor laceration of femoral vein at hip and thigh level, right leg, subsequent encounter|Minor laceration of femoral vein at hip and thigh level, right leg, subsequent encounter +C2859445|T037|AB|S75.111S|ICD10CM|Minor lacerat femor vein at hip and thi lev, right leg, sqla|Minor lacerat femor vein at hip and thi lev, right leg, sqla +C2859445|T037|PT|S75.111S|ICD10CM|Minor laceration of femoral vein at hip and thigh level, right leg, sequela|Minor laceration of femoral vein at hip and thigh level, right leg, sequela +C2859446|T037|AB|S75.112|ICD10CM|Minor lacerat femoral vein at hip and thigh level, left leg|Minor lacerat femoral vein at hip and thigh level, left leg +C2859446|T037|HT|S75.112|ICD10CM|Minor laceration of femoral vein at hip and thigh level, left leg|Minor laceration of femoral vein at hip and thigh level, left leg +C2859447|T037|AB|S75.112A|ICD10CM|Minor lacerat femor vein at hip and thi lev, left leg, init|Minor lacerat femor vein at hip and thi lev, left leg, init +C2859447|T037|PT|S75.112A|ICD10CM|Minor laceration of femoral vein at hip and thigh level, left leg, initial encounter|Minor laceration of femoral vein at hip and thigh level, left leg, initial encounter +C2859448|T037|AB|S75.112D|ICD10CM|Minor lacerat femor vein at hip and thi lev, left leg, subs|Minor lacerat femor vein at hip and thi lev, left leg, subs +C2859448|T037|PT|S75.112D|ICD10CM|Minor laceration of femoral vein at hip and thigh level, left leg, subsequent encounter|Minor laceration of femoral vein at hip and thigh level, left leg, subsequent encounter +C2859449|T037|AB|S75.112S|ICD10CM|Minor lacerat femor vein at hip and thi lev, left leg, sqla|Minor lacerat femor vein at hip and thi lev, left leg, sqla +C2859449|T037|PT|S75.112S|ICD10CM|Minor laceration of femoral vein at hip and thigh level, left leg, sequela|Minor laceration of femoral vein at hip and thigh level, left leg, sequela +C2859450|T037|AB|S75.119|ICD10CM|Minor lacerat femoral vein at hip and thigh level, unsp leg|Minor lacerat femoral vein at hip and thigh level, unsp leg +C2859450|T037|HT|S75.119|ICD10CM|Minor laceration of femoral vein at hip and thigh level, unspecified leg|Minor laceration of femoral vein at hip and thigh level, unspecified leg +C2859451|T037|AB|S75.119A|ICD10CM|Minor lacerat femor vein at hip and thi lev, unsp leg, init|Minor lacerat femor vein at hip and thi lev, unsp leg, init +C2859451|T037|PT|S75.119A|ICD10CM|Minor laceration of femoral vein at hip and thigh level, unspecified leg, initial encounter|Minor laceration of femoral vein at hip and thigh level, unspecified leg, initial encounter +C2859452|T037|AB|S75.119D|ICD10CM|Minor lacerat femor vein at hip and thi lev, unsp leg, subs|Minor lacerat femor vein at hip and thi lev, unsp leg, subs +C2859452|T037|PT|S75.119D|ICD10CM|Minor laceration of femoral vein at hip and thigh level, unspecified leg, subsequent encounter|Minor laceration of femoral vein at hip and thigh level, unspecified leg, subsequent encounter +C2859453|T037|AB|S75.119S|ICD10CM|Minor lacerat femor vein at hip and thi lev, unsp leg, sqla|Minor lacerat femor vein at hip and thi lev, unsp leg, sqla +C2859453|T037|PT|S75.119S|ICD10CM|Minor laceration of femoral vein at hip and thigh level, unspecified leg, sequela|Minor laceration of femoral vein at hip and thigh level, unspecified leg, sequela +C2859454|T037|ET|S75.12|ICD10CM|Complete transection of femoral vein at hip and thigh level|Complete transection of femoral vein at hip and thigh level +C2859456|T037|AB|S75.12|ICD10CM|Major laceration of femoral vein at hip and thigh level|Major laceration of femoral vein at hip and thigh level +C2859456|T037|HT|S75.12|ICD10CM|Major laceration of femoral vein at hip and thigh level|Major laceration of femoral vein at hip and thigh level +C2859455|T037|ET|S75.12|ICD10CM|Traumatic rupture of femoral vein at hip and thigh level|Traumatic rupture of femoral vein at hip and thigh level +C2859457|T037|AB|S75.121|ICD10CM|Major lacerat femoral vein at hip and thigh level, right leg|Major lacerat femoral vein at hip and thigh level, right leg +C2859457|T037|HT|S75.121|ICD10CM|Major laceration of femoral vein at hip and thigh level, right leg|Major laceration of femoral vein at hip and thigh level, right leg +C2859458|T037|AB|S75.121A|ICD10CM|Major lacerat femor vein at hip and thi lev, right leg, init|Major lacerat femor vein at hip and thi lev, right leg, init +C2859458|T037|PT|S75.121A|ICD10CM|Major laceration of femoral vein at hip and thigh level, right leg, initial encounter|Major laceration of femoral vein at hip and thigh level, right leg, initial encounter +C2859459|T037|AB|S75.121D|ICD10CM|Major lacerat femor vein at hip and thi lev, right leg, subs|Major lacerat femor vein at hip and thi lev, right leg, subs +C2859459|T037|PT|S75.121D|ICD10CM|Major laceration of femoral vein at hip and thigh level, right leg, subsequent encounter|Major laceration of femoral vein at hip and thigh level, right leg, subsequent encounter +C2859460|T037|AB|S75.121S|ICD10CM|Major lacerat femor vein at hip and thi lev, right leg, sqla|Major lacerat femor vein at hip and thi lev, right leg, sqla +C2859460|T037|PT|S75.121S|ICD10CM|Major laceration of femoral vein at hip and thigh level, right leg, sequela|Major laceration of femoral vein at hip and thigh level, right leg, sequela +C2859461|T037|AB|S75.122|ICD10CM|Major lacerat femoral vein at hip and thigh level, left leg|Major lacerat femoral vein at hip and thigh level, left leg +C2859461|T037|HT|S75.122|ICD10CM|Major laceration of femoral vein at hip and thigh level, left leg|Major laceration of femoral vein at hip and thigh level, left leg +C2859462|T037|AB|S75.122A|ICD10CM|Major lacerat femor vein at hip and thi lev, left leg, init|Major lacerat femor vein at hip and thi lev, left leg, init +C2859462|T037|PT|S75.122A|ICD10CM|Major laceration of femoral vein at hip and thigh level, left leg, initial encounter|Major laceration of femoral vein at hip and thigh level, left leg, initial encounter +C2859463|T037|AB|S75.122D|ICD10CM|Major lacerat femor vein at hip and thi lev, left leg, subs|Major lacerat femor vein at hip and thi lev, left leg, subs +C2859463|T037|PT|S75.122D|ICD10CM|Major laceration of femoral vein at hip and thigh level, left leg, subsequent encounter|Major laceration of femoral vein at hip and thigh level, left leg, subsequent encounter +C2859464|T037|AB|S75.122S|ICD10CM|Major lacerat femor vein at hip and thi lev, left leg, sqla|Major lacerat femor vein at hip and thi lev, left leg, sqla +C2859464|T037|PT|S75.122S|ICD10CM|Major laceration of femoral vein at hip and thigh level, left leg, sequela|Major laceration of femoral vein at hip and thigh level, left leg, sequela +C2859465|T037|AB|S75.129|ICD10CM|Major lacerat femoral vein at hip and thigh level, unsp leg|Major lacerat femoral vein at hip and thigh level, unsp leg +C2859465|T037|HT|S75.129|ICD10CM|Major laceration of femoral vein at hip and thigh level, unspecified leg|Major laceration of femoral vein at hip and thigh level, unspecified leg +C2859466|T037|AB|S75.129A|ICD10CM|Major lacerat femor vein at hip and thi lev, unsp leg, init|Major lacerat femor vein at hip and thi lev, unsp leg, init +C2859466|T037|PT|S75.129A|ICD10CM|Major laceration of femoral vein at hip and thigh level, unspecified leg, initial encounter|Major laceration of femoral vein at hip and thigh level, unspecified leg, initial encounter +C2859467|T037|AB|S75.129D|ICD10CM|Major lacerat femor vein at hip and thi lev, unsp leg, subs|Major lacerat femor vein at hip and thi lev, unsp leg, subs +C2859467|T037|PT|S75.129D|ICD10CM|Major laceration of femoral vein at hip and thigh level, unspecified leg, subsequent encounter|Major laceration of femoral vein at hip and thigh level, unspecified leg, subsequent encounter +C2859468|T037|AB|S75.129S|ICD10CM|Major lacerat femor vein at hip and thi lev, unsp leg, sqla|Major lacerat femor vein at hip and thi lev, unsp leg, sqla +C2859468|T037|PT|S75.129S|ICD10CM|Major laceration of femoral vein at hip and thigh level, unspecified leg, sequela|Major laceration of femoral vein at hip and thigh level, unspecified leg, sequela +C2859469|T037|AB|S75.19|ICD10CM|Oth injury of femoral vein at hip and thigh level|Oth injury of femoral vein at hip and thigh level +C2859469|T037|HT|S75.19|ICD10CM|Other specified injury of femoral vein at hip and thigh level|Other specified injury of femoral vein at hip and thigh level +C2859470|T037|AB|S75.191|ICD10CM|Oth injury of femoral vein at hip and thigh level, right leg|Oth injury of femoral vein at hip and thigh level, right leg +C2859470|T037|HT|S75.191|ICD10CM|Other specified injury of femoral vein at hip and thigh level, right leg|Other specified injury of femoral vein at hip and thigh level, right leg +C2859471|T037|AB|S75.191A|ICD10CM|Inj femoral vein at hip and thigh level, right leg, init|Inj femoral vein at hip and thigh level, right leg, init +C2859471|T037|PT|S75.191A|ICD10CM|Other specified injury of femoral vein at hip and thigh level, right leg, initial encounter|Other specified injury of femoral vein at hip and thigh level, right leg, initial encounter +C2859472|T037|AB|S75.191D|ICD10CM|Inj femoral vein at hip and thigh level, right leg, subs|Inj femoral vein at hip and thigh level, right leg, subs +C2859472|T037|PT|S75.191D|ICD10CM|Other specified injury of femoral vein at hip and thigh level, right leg, subsequent encounter|Other specified injury of femoral vein at hip and thigh level, right leg, subsequent encounter +C2859473|T037|AB|S75.191S|ICD10CM|Inj femoral vein at hip and thigh level, right leg, sequela|Inj femoral vein at hip and thigh level, right leg, sequela +C2859473|T037|PT|S75.191S|ICD10CM|Other specified injury of femoral vein at hip and thigh level, right leg, sequela|Other specified injury of femoral vein at hip and thigh level, right leg, sequela +C2859474|T037|AB|S75.192|ICD10CM|Oth injury of femoral vein at hip and thigh level, left leg|Oth injury of femoral vein at hip and thigh level, left leg +C2859474|T037|HT|S75.192|ICD10CM|Other specified injury of femoral vein at hip and thigh level, left leg|Other specified injury of femoral vein at hip and thigh level, left leg +C2859475|T037|AB|S75.192A|ICD10CM|Inj femoral vein at hip and thigh level, left leg, init|Inj femoral vein at hip and thigh level, left leg, init +C2859475|T037|PT|S75.192A|ICD10CM|Other specified injury of femoral vein at hip and thigh level, left leg, initial encounter|Other specified injury of femoral vein at hip and thigh level, left leg, initial encounter +C2859476|T037|AB|S75.192D|ICD10CM|Inj femoral vein at hip and thigh level, left leg, subs|Inj femoral vein at hip and thigh level, left leg, subs +C2859476|T037|PT|S75.192D|ICD10CM|Other specified injury of femoral vein at hip and thigh level, left leg, subsequent encounter|Other specified injury of femoral vein at hip and thigh level, left leg, subsequent encounter +C2859477|T037|AB|S75.192S|ICD10CM|Inj femoral vein at hip and thigh level, left leg, sequela|Inj femoral vein at hip and thigh level, left leg, sequela +C2859477|T037|PT|S75.192S|ICD10CM|Other specified injury of femoral vein at hip and thigh level, left leg, sequela|Other specified injury of femoral vein at hip and thigh level, left leg, sequela +C2859478|T037|AB|S75.199|ICD10CM|Oth injury of femoral vein at hip and thigh level, unsp leg|Oth injury of femoral vein at hip and thigh level, unsp leg +C2859478|T037|HT|S75.199|ICD10CM|Other specified injury of femoral vein at hip and thigh level, unspecified leg|Other specified injury of femoral vein at hip and thigh level, unspecified leg +C2859479|T037|AB|S75.199A|ICD10CM|Inj femoral vein at hip and thigh level, unsp leg, init|Inj femoral vein at hip and thigh level, unsp leg, init +C2859479|T037|PT|S75.199A|ICD10CM|Other specified injury of femoral vein at hip and thigh level, unspecified leg, initial encounter|Other specified injury of femoral vein at hip and thigh level, unspecified leg, initial encounter +C2859480|T037|AB|S75.199D|ICD10CM|Inj femoral vein at hip and thigh level, unsp leg, subs|Inj femoral vein at hip and thigh level, unsp leg, subs +C2859480|T037|PT|S75.199D|ICD10CM|Other specified injury of femoral vein at hip and thigh level, unspecified leg, subsequent encounter|Other specified injury of femoral vein at hip and thigh level, unspecified leg, subsequent encounter +C2859481|T037|AB|S75.199S|ICD10CM|Inj femoral vein at hip and thigh level, unsp leg, sequela|Inj femoral vein at hip and thigh level, unsp leg, sequela +C2859481|T037|PT|S75.199S|ICD10CM|Other specified injury of femoral vein at hip and thigh level, unspecified leg, sequela|Other specified injury of femoral vein at hip and thigh level, unspecified leg, sequela +C0495937|T037|PT|S75.2|ICD10|Injury of greater saphenous vein at hip and thigh level|Injury of greater saphenous vein at hip and thigh level +C0495937|T037|HT|S75.2|ICD10CM|Injury of greater saphenous vein at hip and thigh level|Injury of greater saphenous vein at hip and thigh level +C0495937|T037|AB|S75.2|ICD10CM|Injury of greater saphenous vein at hip and thigh level|Injury of greater saphenous vein at hip and thigh level +C2859482|T037|AB|S75.20|ICD10CM|Unsp injury of greater saphenous vein at hip and thigh level|Unsp injury of greater saphenous vein at hip and thigh level +C2859482|T037|HT|S75.20|ICD10CM|Unspecified injury of greater saphenous vein at hip and thigh level|Unspecified injury of greater saphenous vein at hip and thigh level +C2859483|T037|AB|S75.201|ICD10CM|Unsp injury of great saphenous at hip and thi lev, right leg|Unsp injury of great saphenous at hip and thi lev, right leg +C2859483|T037|HT|S75.201|ICD10CM|Unspecified injury of greater saphenous vein at hip and thigh level, right leg|Unspecified injury of greater saphenous vein at hip and thigh level, right leg +C2859484|T037|AB|S75.201A|ICD10CM|Unsp inj great saphenous at hip and thi lev, right leg, init|Unsp inj great saphenous at hip and thi lev, right leg, init +C2859484|T037|PT|S75.201A|ICD10CM|Unspecified injury of greater saphenous vein at hip and thigh level, right leg, initial encounter|Unspecified injury of greater saphenous vein at hip and thigh level, right leg, initial encounter +C2859485|T037|AB|S75.201D|ICD10CM|Unsp inj great saphenous at hip and thi lev, right leg, subs|Unsp inj great saphenous at hip and thi lev, right leg, subs +C2859485|T037|PT|S75.201D|ICD10CM|Unspecified injury of greater saphenous vein at hip and thigh level, right leg, subsequent encounter|Unspecified injury of greater saphenous vein at hip and thigh level, right leg, subsequent encounter +C2859486|T037|AB|S75.201S|ICD10CM|Unsp inj great saph at hip and thi lev, right leg, sequela|Unsp inj great saph at hip and thi lev, right leg, sequela +C2859486|T037|PT|S75.201S|ICD10CM|Unspecified injury of greater saphenous vein at hip and thigh level, right leg, sequela|Unspecified injury of greater saphenous vein at hip and thigh level, right leg, sequela +C2859487|T037|AB|S75.202|ICD10CM|Unsp injury of great saphenous at hip and thi lev, left leg|Unsp injury of great saphenous at hip and thi lev, left leg +C2859487|T037|HT|S75.202|ICD10CM|Unspecified injury of greater saphenous vein at hip and thigh level, left leg|Unspecified injury of greater saphenous vein at hip and thigh level, left leg +C2859488|T037|AB|S75.202A|ICD10CM|Unsp inj great saphenous at hip and thi lev, left leg, init|Unsp inj great saphenous at hip and thi lev, left leg, init +C2859488|T037|PT|S75.202A|ICD10CM|Unspecified injury of greater saphenous vein at hip and thigh level, left leg, initial encounter|Unspecified injury of greater saphenous vein at hip and thigh level, left leg, initial encounter +C2859489|T037|AB|S75.202D|ICD10CM|Unsp inj great saphenous at hip and thi lev, left leg, subs|Unsp inj great saphenous at hip and thi lev, left leg, subs +C2859489|T037|PT|S75.202D|ICD10CM|Unspecified injury of greater saphenous vein at hip and thigh level, left leg, subsequent encounter|Unspecified injury of greater saphenous vein at hip and thigh level, left leg, subsequent encounter +C2859490|T037|AB|S75.202S|ICD10CM|Unsp inj great saph at hip and thi lev, left leg, sequela|Unsp inj great saph at hip and thi lev, left leg, sequela +C2859490|T037|PT|S75.202S|ICD10CM|Unspecified injury of greater saphenous vein at hip and thigh level, left leg, sequela|Unspecified injury of greater saphenous vein at hip and thigh level, left leg, sequela +C2859491|T037|AB|S75.209|ICD10CM|Unsp injury of great saphenous at hip and thi lev, unsp leg|Unsp injury of great saphenous at hip and thi lev, unsp leg +C2859491|T037|HT|S75.209|ICD10CM|Unspecified injury of greater saphenous vein at hip and thigh level, unspecified leg|Unspecified injury of greater saphenous vein at hip and thigh level, unspecified leg +C2859492|T037|AB|S75.209A|ICD10CM|Unsp inj great saphenous at hip and thi lev, unsp leg, init|Unsp inj great saphenous at hip and thi lev, unsp leg, init +C2859493|T037|AB|S75.209D|ICD10CM|Unsp inj great saphenous at hip and thi lev, unsp leg, subs|Unsp inj great saphenous at hip and thi lev, unsp leg, subs +C2859494|T037|AB|S75.209S|ICD10CM|Unsp inj great saph at hip and thi lev, unsp leg, sequela|Unsp inj great saph at hip and thi lev, unsp leg, sequela +C2859494|T037|PT|S75.209S|ICD10CM|Unspecified injury of greater saphenous vein at hip and thigh level, unspecified leg, sequela|Unspecified injury of greater saphenous vein at hip and thigh level, unspecified leg, sequela +C2859495|T037|ET|S75.21|ICD10CM|Incomplete transection of greater saphenous vein at hip and thigh level|Incomplete transection of greater saphenous vein at hip and thigh level +C2859496|T037|ET|S75.21|ICD10CM|Laceration of greater saphenous vein at hip and thigh level NOS|Laceration of greater saphenous vein at hip and thigh level NOS +C2859498|T037|AB|S75.21|ICD10CM|Minor laceration of great saphenous at hip and thigh level|Minor laceration of great saphenous at hip and thigh level +C2859498|T037|HT|S75.21|ICD10CM|Minor laceration of greater saphenous vein at hip and thigh level|Minor laceration of greater saphenous vein at hip and thigh level +C2859497|T037|ET|S75.21|ICD10CM|Superficial laceration of greater saphenous vein at hip and thigh level|Superficial laceration of greater saphenous vein at hip and thigh level +C2859499|T037|AB|S75.211|ICD10CM|Minor lacerat great saphenous at hip and thi lev, right leg|Minor lacerat great saphenous at hip and thi lev, right leg +C2859499|T037|HT|S75.211|ICD10CM|Minor laceration of greater saphenous vein at hip and thigh level, right leg|Minor laceration of greater saphenous vein at hip and thigh level, right leg +C2859500|T037|AB|S75.211A|ICD10CM|Minor lacerat great saph at hip and thi lev, right leg, init|Minor lacerat great saph at hip and thi lev, right leg, init +C2859500|T037|PT|S75.211A|ICD10CM|Minor laceration of greater saphenous vein at hip and thigh level, right leg, initial encounter|Minor laceration of greater saphenous vein at hip and thigh level, right leg, initial encounter +C2859501|T037|AB|S75.211D|ICD10CM|Minor lacerat great saph at hip and thi lev, right leg, subs|Minor lacerat great saph at hip and thi lev, right leg, subs +C2859501|T037|PT|S75.211D|ICD10CM|Minor laceration of greater saphenous vein at hip and thigh level, right leg, subsequent encounter|Minor laceration of greater saphenous vein at hip and thigh level, right leg, subsequent encounter +C2859502|T037|AB|S75.211S|ICD10CM|Minor lacerat great saph at hip and thi lev, right leg, sqla|Minor lacerat great saph at hip and thi lev, right leg, sqla +C2859502|T037|PT|S75.211S|ICD10CM|Minor laceration of greater saphenous vein at hip and thigh level, right leg, sequela|Minor laceration of greater saphenous vein at hip and thigh level, right leg, sequela +C2859503|T037|AB|S75.212|ICD10CM|Minor lacerat great saphenous at hip and thi lev, left leg|Minor lacerat great saphenous at hip and thi lev, left leg +C2859503|T037|HT|S75.212|ICD10CM|Minor laceration of greater saphenous vein at hip and thigh level, left leg|Minor laceration of greater saphenous vein at hip and thigh level, left leg +C2859504|T037|AB|S75.212A|ICD10CM|Minor lacerat great saph at hip and thi lev, left leg, init|Minor lacerat great saph at hip and thi lev, left leg, init +C2859504|T037|PT|S75.212A|ICD10CM|Minor laceration of greater saphenous vein at hip and thigh level, left leg, initial encounter|Minor laceration of greater saphenous vein at hip and thigh level, left leg, initial encounter +C2859505|T037|AB|S75.212D|ICD10CM|Minor lacerat great saph at hip and thi lev, left leg, subs|Minor lacerat great saph at hip and thi lev, left leg, subs +C2859505|T037|PT|S75.212D|ICD10CM|Minor laceration of greater saphenous vein at hip and thigh level, left leg, subsequent encounter|Minor laceration of greater saphenous vein at hip and thigh level, left leg, subsequent encounter +C2859506|T037|AB|S75.212S|ICD10CM|Minor lacerat great saph at hip and thi lev, left leg, sqla|Minor lacerat great saph at hip and thi lev, left leg, sqla +C2859506|T037|PT|S75.212S|ICD10CM|Minor laceration of greater saphenous vein at hip and thigh level, left leg, sequela|Minor laceration of greater saphenous vein at hip and thigh level, left leg, sequela +C2859507|T037|AB|S75.219|ICD10CM|Minor lacerat great saphenous at hip and thi lev, unsp leg|Minor lacerat great saphenous at hip and thi lev, unsp leg +C2859507|T037|HT|S75.219|ICD10CM|Minor laceration of greater saphenous vein at hip and thigh level, unspecified leg|Minor laceration of greater saphenous vein at hip and thigh level, unspecified leg +C2859508|T037|AB|S75.219A|ICD10CM|Minor lacerat great saph at hip and thi lev, unsp leg, init|Minor lacerat great saph at hip and thi lev, unsp leg, init +C2859509|T037|AB|S75.219D|ICD10CM|Minor lacerat great saph at hip and thi lev, unsp leg, subs|Minor lacerat great saph at hip and thi lev, unsp leg, subs +C2859510|T037|AB|S75.219S|ICD10CM|Minor lacerat great saph at hip and thi lev, unsp leg, sqla|Minor lacerat great saph at hip and thi lev, unsp leg, sqla +C2859510|T037|PT|S75.219S|ICD10CM|Minor laceration of greater saphenous vein at hip and thigh level, unspecified leg, sequela|Minor laceration of greater saphenous vein at hip and thigh level, unspecified leg, sequela +C2859511|T037|ET|S75.22|ICD10CM|Complete transection of greater saphenous vein at hip and thigh level|Complete transection of greater saphenous vein at hip and thigh level +C2859513|T037|AB|S75.22|ICD10CM|Major laceration of great saphenous at hip and thigh level|Major laceration of great saphenous at hip and thigh level +C2859513|T037|HT|S75.22|ICD10CM|Major laceration of greater saphenous vein at hip and thigh level|Major laceration of greater saphenous vein at hip and thigh level +C2859512|T037|ET|S75.22|ICD10CM|Traumatic rupture of greater saphenous vein at hip and thigh level|Traumatic rupture of greater saphenous vein at hip and thigh level +C2859514|T037|AB|S75.221|ICD10CM|Major lacerat great saphenous at hip and thi lev, right leg|Major lacerat great saphenous at hip and thi lev, right leg +C2859514|T037|HT|S75.221|ICD10CM|Major laceration of greater saphenous vein at hip and thigh level, right leg|Major laceration of greater saphenous vein at hip and thigh level, right leg +C2859515|T037|AB|S75.221A|ICD10CM|Major lacerat great saph at hip and thi lev, right leg, init|Major lacerat great saph at hip and thi lev, right leg, init +C2859515|T037|PT|S75.221A|ICD10CM|Major laceration of greater saphenous vein at hip and thigh level, right leg, initial encounter|Major laceration of greater saphenous vein at hip and thigh level, right leg, initial encounter +C2859516|T037|AB|S75.221D|ICD10CM|Major lacerat great saph at hip and thi lev, right leg, subs|Major lacerat great saph at hip and thi lev, right leg, subs +C2859516|T037|PT|S75.221D|ICD10CM|Major laceration of greater saphenous vein at hip and thigh level, right leg, subsequent encounter|Major laceration of greater saphenous vein at hip and thigh level, right leg, subsequent encounter +C2859517|T037|AB|S75.221S|ICD10CM|Major lacerat great saph at hip and thi lev, right leg, sqla|Major lacerat great saph at hip and thi lev, right leg, sqla +C2859517|T037|PT|S75.221S|ICD10CM|Major laceration of greater saphenous vein at hip and thigh level, right leg, sequela|Major laceration of greater saphenous vein at hip and thigh level, right leg, sequela +C2859518|T037|AB|S75.222|ICD10CM|Major lacerat great saphenous at hip and thi lev, left leg|Major lacerat great saphenous at hip and thi lev, left leg +C2859518|T037|HT|S75.222|ICD10CM|Major laceration of greater saphenous vein at hip and thigh level, left leg|Major laceration of greater saphenous vein at hip and thigh level, left leg +C2859519|T037|AB|S75.222A|ICD10CM|Major lacerat great saph at hip and thi lev, left leg, init|Major lacerat great saph at hip and thi lev, left leg, init +C2859519|T037|PT|S75.222A|ICD10CM|Major laceration of greater saphenous vein at hip and thigh level, left leg, initial encounter|Major laceration of greater saphenous vein at hip and thigh level, left leg, initial encounter +C2859520|T037|AB|S75.222D|ICD10CM|Major lacerat great saph at hip and thi lev, left leg, subs|Major lacerat great saph at hip and thi lev, left leg, subs +C2859520|T037|PT|S75.222D|ICD10CM|Major laceration of greater saphenous vein at hip and thigh level, left leg, subsequent encounter|Major laceration of greater saphenous vein at hip and thigh level, left leg, subsequent encounter +C2859521|T037|AB|S75.222S|ICD10CM|Major lacerat great saph at hip and thi lev, left leg, sqla|Major lacerat great saph at hip and thi lev, left leg, sqla +C2859521|T037|PT|S75.222S|ICD10CM|Major laceration of greater saphenous vein at hip and thigh level, left leg, sequela|Major laceration of greater saphenous vein at hip and thigh level, left leg, sequela +C2859522|T037|AB|S75.229|ICD10CM|Major lacerat great saphenous at hip and thi lev, unsp leg|Major lacerat great saphenous at hip and thi lev, unsp leg +C2859522|T037|HT|S75.229|ICD10CM|Major laceration of greater saphenous vein at hip and thigh level, unspecified leg|Major laceration of greater saphenous vein at hip and thigh level, unspecified leg +C2859523|T037|AB|S75.229A|ICD10CM|Major lacerat great saph at hip and thi lev, unsp leg, init|Major lacerat great saph at hip and thi lev, unsp leg, init +C2859524|T037|AB|S75.229D|ICD10CM|Major lacerat great saph at hip and thi lev, unsp leg, subs|Major lacerat great saph at hip and thi lev, unsp leg, subs +C2859525|T037|AB|S75.229S|ICD10CM|Major lacerat great saph at hip and thi lev, unsp leg, sqla|Major lacerat great saph at hip and thi lev, unsp leg, sqla +C2859525|T037|PT|S75.229S|ICD10CM|Major laceration of greater saphenous vein at hip and thigh level, unspecified leg, sequela|Major laceration of greater saphenous vein at hip and thigh level, unspecified leg, sequela +C2859526|T037|AB|S75.29|ICD10CM|Oth injury of greater saphenous vein at hip and thigh level|Oth injury of greater saphenous vein at hip and thigh level +C2859526|T037|HT|S75.29|ICD10CM|Other specified injury of greater saphenous vein at hip and thigh level|Other specified injury of greater saphenous vein at hip and thigh level +C2859527|T037|AB|S75.291|ICD10CM|Inj greater saphenous vein at hip and thigh level, right leg|Inj greater saphenous vein at hip and thigh level, right leg +C2859527|T037|HT|S75.291|ICD10CM|Other specified injury of greater saphenous vein at hip and thigh level, right leg|Other specified injury of greater saphenous vein at hip and thigh level, right leg +C2859528|T037|AB|S75.291A|ICD10CM|Inj great saphenous at hip and thigh level, right leg, init|Inj great saphenous at hip and thigh level, right leg, init +C2859529|T037|AB|S75.291D|ICD10CM|Inj great saphenous at hip and thigh level, right leg, subs|Inj great saphenous at hip and thigh level, right leg, subs +C2859530|T037|AB|S75.291S|ICD10CM|Inj great saphenous at hip and thi lev, right leg, sequela|Inj great saphenous at hip and thi lev, right leg, sequela +C2859530|T037|PT|S75.291S|ICD10CM|Other specified injury of greater saphenous vein at hip and thigh level, right leg, sequela|Other specified injury of greater saphenous vein at hip and thigh level, right leg, sequela +C2859531|T037|AB|S75.292|ICD10CM|Inj greater saphenous vein at hip and thigh level, left leg|Inj greater saphenous vein at hip and thigh level, left leg +C2859531|T037|HT|S75.292|ICD10CM|Other specified injury of greater saphenous vein at hip and thigh level, left leg|Other specified injury of greater saphenous vein at hip and thigh level, left leg +C2859532|T037|AB|S75.292A|ICD10CM|Inj great saphenous at hip and thigh level, left leg, init|Inj great saphenous at hip and thigh level, left leg, init +C2859532|T037|PT|S75.292A|ICD10CM|Other specified injury of greater saphenous vein at hip and thigh level, left leg, initial encounter|Other specified injury of greater saphenous vein at hip and thigh level, left leg, initial encounter +C2859533|T037|AB|S75.292D|ICD10CM|Inj great saphenous at hip and thigh level, left leg, subs|Inj great saphenous at hip and thigh level, left leg, subs +C2859534|T037|AB|S75.292S|ICD10CM|Inj great saphenous at hip and thi lev, left leg, sequela|Inj great saphenous at hip and thi lev, left leg, sequela +C2859534|T037|PT|S75.292S|ICD10CM|Other specified injury of greater saphenous vein at hip and thigh level, left leg, sequela|Other specified injury of greater saphenous vein at hip and thigh level, left leg, sequela +C2859535|T037|AB|S75.299|ICD10CM|Inj greater saphenous vein at hip and thigh level, unsp leg|Inj greater saphenous vein at hip and thigh level, unsp leg +C2859535|T037|HT|S75.299|ICD10CM|Other specified injury of greater saphenous vein at hip and thigh level, unspecified leg|Other specified injury of greater saphenous vein at hip and thigh level, unspecified leg +C2859536|T037|AB|S75.299A|ICD10CM|Inj great saphenous at hip and thigh level, unsp leg, init|Inj great saphenous at hip and thigh level, unsp leg, init +C2859537|T037|AB|S75.299D|ICD10CM|Inj great saphenous at hip and thigh level, unsp leg, subs|Inj great saphenous at hip and thigh level, unsp leg, subs +C2859538|T037|AB|S75.299S|ICD10CM|Inj great saphenous at hip and thi lev, unsp leg, sequela|Inj great saphenous at hip and thi lev, unsp leg, sequela +C2859538|T037|PT|S75.299S|ICD10CM|Other specified injury of greater saphenous vein at hip and thigh level, unspecified leg, sequela|Other specified injury of greater saphenous vein at hip and thigh level, unspecified leg, sequela +C0452074|T037|PT|S75.7|ICD10|Injury of multiple blood vessels at hip and thigh level|Injury of multiple blood vessels at hip and thigh level +C0478328|T037|PT|S75.8|ICD10|Injury of other blood vessels at hip and thigh level|Injury of other blood vessels at hip and thigh level +C0478328|T037|HT|S75.8|ICD10CM|Injury of other blood vessels at hip and thigh level|Injury of other blood vessels at hip and thigh level +C0478328|T037|AB|S75.8|ICD10CM|Injury of other blood vessels at hip and thigh level|Injury of other blood vessels at hip and thigh level +C2859539|T037|AB|S75.80|ICD10CM|Unsp injury of other blood vessels at hip and thigh level|Unsp injury of other blood vessels at hip and thigh level +C2859539|T037|HT|S75.80|ICD10CM|Unspecified injury of other blood vessels at hip and thigh level|Unspecified injury of other blood vessels at hip and thigh level +C2859540|T037|AB|S75.801|ICD10CM|Unsp injury of blood vessels at hip and thi lev, right leg|Unsp injury of blood vessels at hip and thi lev, right leg +C2859540|T037|HT|S75.801|ICD10CM|Unspecified injury of other blood vessels at hip and thigh level, right leg|Unspecified injury of other blood vessels at hip and thigh level, right leg +C2859541|T037|AB|S75.801A|ICD10CM|Unsp inj blood vessels at hip and thi lev, right leg, init|Unsp inj blood vessels at hip and thi lev, right leg, init +C2859541|T037|PT|S75.801A|ICD10CM|Unspecified injury of other blood vessels at hip and thigh level, right leg, initial encounter|Unspecified injury of other blood vessels at hip and thigh level, right leg, initial encounter +C2859542|T037|AB|S75.801D|ICD10CM|Unsp inj blood vessels at hip and thi lev, right leg, subs|Unsp inj blood vessels at hip and thi lev, right leg, subs +C2859542|T037|PT|S75.801D|ICD10CM|Unspecified injury of other blood vessels at hip and thigh level, right leg, subsequent encounter|Unspecified injury of other blood vessels at hip and thigh level, right leg, subsequent encounter +C2859543|T037|AB|S75.801S|ICD10CM|Unsp inj blood vessels at hip and thi lev, right leg, sqla|Unsp inj blood vessels at hip and thi lev, right leg, sqla +C2859543|T037|PT|S75.801S|ICD10CM|Unspecified injury of other blood vessels at hip and thigh level, right leg, sequela|Unspecified injury of other blood vessels at hip and thigh level, right leg, sequela +C2859544|T037|AB|S75.802|ICD10CM|Unsp injury of blood vessels at hip and thi lev, left leg|Unsp injury of blood vessels at hip and thi lev, left leg +C2859544|T037|HT|S75.802|ICD10CM|Unspecified injury of other blood vessels at hip and thigh level, left leg|Unspecified injury of other blood vessels at hip and thigh level, left leg +C2859545|T037|AB|S75.802A|ICD10CM|Unsp inj blood vessels at hip and thi lev, left leg, init|Unsp inj blood vessels at hip and thi lev, left leg, init +C2859545|T037|PT|S75.802A|ICD10CM|Unspecified injury of other blood vessels at hip and thigh level, left leg, initial encounter|Unspecified injury of other blood vessels at hip and thigh level, left leg, initial encounter +C2859546|T037|AB|S75.802D|ICD10CM|Unsp inj blood vessels at hip and thi lev, left leg, subs|Unsp inj blood vessels at hip and thi lev, left leg, subs +C2859546|T037|PT|S75.802D|ICD10CM|Unspecified injury of other blood vessels at hip and thigh level, left leg, subsequent encounter|Unspecified injury of other blood vessels at hip and thigh level, left leg, subsequent encounter +C2859547|T037|AB|S75.802S|ICD10CM|Unsp inj blood vessels at hip and thi lev, left leg, sequela|Unsp inj blood vessels at hip and thi lev, left leg, sequela +C2859547|T037|PT|S75.802S|ICD10CM|Unspecified injury of other blood vessels at hip and thigh level, left leg, sequela|Unspecified injury of other blood vessels at hip and thigh level, left leg, sequela +C2859548|T037|AB|S75.809|ICD10CM|Unsp injury of blood vessels at hip and thi lev, unsp leg|Unsp injury of blood vessels at hip and thi lev, unsp leg +C2859548|T037|HT|S75.809|ICD10CM|Unspecified injury of other blood vessels at hip and thigh level, unspecified leg|Unspecified injury of other blood vessels at hip and thigh level, unspecified leg +C2859549|T037|AB|S75.809A|ICD10CM|Unsp inj blood vessels at hip and thi lev, unsp leg, init|Unsp inj blood vessels at hip and thi lev, unsp leg, init +C2859549|T037|PT|S75.809A|ICD10CM|Unspecified injury of other blood vessels at hip and thigh level, unspecified leg, initial encounter|Unspecified injury of other blood vessels at hip and thigh level, unspecified leg, initial encounter +C2859550|T037|AB|S75.809D|ICD10CM|Unsp inj blood vessels at hip and thi lev, unsp leg, subs|Unsp inj blood vessels at hip and thi lev, unsp leg, subs +C2859551|T037|AB|S75.809S|ICD10CM|Unsp inj blood vessels at hip and thi lev, unsp leg, sequela|Unsp inj blood vessels at hip and thi lev, unsp leg, sequela +C2859551|T037|PT|S75.809S|ICD10CM|Unspecified injury of other blood vessels at hip and thigh level, unspecified leg, sequela|Unspecified injury of other blood vessels at hip and thigh level, unspecified leg, sequela +C2859552|T037|AB|S75.81|ICD10CM|Laceration of other blood vessels at hip and thigh level|Laceration of other blood vessels at hip and thigh level +C2859552|T037|HT|S75.81|ICD10CM|Laceration of other blood vessels at hip and thigh level|Laceration of other blood vessels at hip and thigh level +C2859553|T037|AB|S75.811|ICD10CM|Lacerat blood vessels at hip and thigh level, right leg|Lacerat blood vessels at hip and thigh level, right leg +C2859553|T037|HT|S75.811|ICD10CM|Laceration of other blood vessels at hip and thigh level, right leg|Laceration of other blood vessels at hip and thigh level, right leg +C2859554|T037|AB|S75.811A|ICD10CM|Lacerat blood vessels at hip and thi lev, right leg, init|Lacerat blood vessels at hip and thi lev, right leg, init +C2859554|T037|PT|S75.811A|ICD10CM|Laceration of other blood vessels at hip and thigh level, right leg, initial encounter|Laceration of other blood vessels at hip and thigh level, right leg, initial encounter +C2859555|T037|AB|S75.811D|ICD10CM|Lacerat blood vessels at hip and thi lev, right leg, subs|Lacerat blood vessels at hip and thi lev, right leg, subs +C2859555|T037|PT|S75.811D|ICD10CM|Laceration of other blood vessels at hip and thigh level, right leg, subsequent encounter|Laceration of other blood vessels at hip and thigh level, right leg, subsequent encounter +C2859556|T037|AB|S75.811S|ICD10CM|Lacerat blood vessels at hip and thi lev, right leg, sequela|Lacerat blood vessels at hip and thi lev, right leg, sequela +C2859556|T037|PT|S75.811S|ICD10CM|Laceration of other blood vessels at hip and thigh level, right leg, sequela|Laceration of other blood vessels at hip and thigh level, right leg, sequela +C2859557|T037|AB|S75.812|ICD10CM|Laceration of blood vessels at hip and thigh level, left leg|Laceration of blood vessels at hip and thigh level, left leg +C2859557|T037|HT|S75.812|ICD10CM|Laceration of other blood vessels at hip and thigh level, left leg|Laceration of other blood vessels at hip and thigh level, left leg +C2859558|T037|AB|S75.812A|ICD10CM|Lacerat blood vessels at hip and thigh level, left leg, init|Lacerat blood vessels at hip and thigh level, left leg, init +C2859558|T037|PT|S75.812A|ICD10CM|Laceration of other blood vessels at hip and thigh level, left leg, initial encounter|Laceration of other blood vessels at hip and thigh level, left leg, initial encounter +C2859559|T037|AB|S75.812D|ICD10CM|Lacerat blood vessels at hip and thigh level, left leg, subs|Lacerat blood vessels at hip and thigh level, left leg, subs +C2859559|T037|PT|S75.812D|ICD10CM|Laceration of other blood vessels at hip and thigh level, left leg, subsequent encounter|Laceration of other blood vessels at hip and thigh level, left leg, subsequent encounter +C2859560|T037|AB|S75.812S|ICD10CM|Lacerat blood vessels at hip and thi lev, left leg, sequela|Lacerat blood vessels at hip and thi lev, left leg, sequela +C2859560|T037|PT|S75.812S|ICD10CM|Laceration of other blood vessels at hip and thigh level, left leg, sequela|Laceration of other blood vessels at hip and thigh level, left leg, sequela +C2859561|T037|AB|S75.819|ICD10CM|Laceration of blood vessels at hip and thigh level, unsp leg|Laceration of blood vessels at hip and thigh level, unsp leg +C2859561|T037|HT|S75.819|ICD10CM|Laceration of other blood vessels at hip and thigh level, unspecified leg|Laceration of other blood vessels at hip and thigh level, unspecified leg +C2859562|T037|AB|S75.819A|ICD10CM|Lacerat blood vessels at hip and thigh level, unsp leg, init|Lacerat blood vessels at hip and thigh level, unsp leg, init +C2859562|T037|PT|S75.819A|ICD10CM|Laceration of other blood vessels at hip and thigh level, unspecified leg, initial encounter|Laceration of other blood vessels at hip and thigh level, unspecified leg, initial encounter +C2859563|T037|AB|S75.819D|ICD10CM|Lacerat blood vessels at hip and thigh level, unsp leg, subs|Lacerat blood vessels at hip and thigh level, unsp leg, subs +C2859563|T037|PT|S75.819D|ICD10CM|Laceration of other blood vessels at hip and thigh level, unspecified leg, subsequent encounter|Laceration of other blood vessels at hip and thigh level, unspecified leg, subsequent encounter +C2859564|T037|AB|S75.819S|ICD10CM|Lacerat blood vessels at hip and thi lev, unsp leg, sequela|Lacerat blood vessels at hip and thi lev, unsp leg, sequela +C2859564|T037|PT|S75.819S|ICD10CM|Laceration of other blood vessels at hip and thigh level, unspecified leg, sequela|Laceration of other blood vessels at hip and thigh level, unspecified leg, sequela +C2859565|T037|AB|S75.89|ICD10CM|Oth injury of other blood vessels at hip and thigh level|Oth injury of other blood vessels at hip and thigh level +C2859565|T037|HT|S75.89|ICD10CM|Other specified injury of other blood vessels at hip and thigh level|Other specified injury of other blood vessels at hip and thigh level +C2859566|T037|AB|S75.891|ICD10CM|Inj oth blood vessels at hip and thigh level, right leg|Inj oth blood vessels at hip and thigh level, right leg +C2859566|T037|HT|S75.891|ICD10CM|Other specified injury of other blood vessels at hip and thigh level, right leg|Other specified injury of other blood vessels at hip and thigh level, right leg +C2859567|T037|AB|S75.891A|ICD10CM|Inj oth blood vessels at hip and thi lev, right leg, init|Inj oth blood vessels at hip and thi lev, right leg, init +C2859567|T037|PT|S75.891A|ICD10CM|Other specified injury of other blood vessels at hip and thigh level, right leg, initial encounter|Other specified injury of other blood vessels at hip and thigh level, right leg, initial encounter +C2859568|T037|AB|S75.891D|ICD10CM|Inj oth blood vessels at hip and thi lev, right leg, subs|Inj oth blood vessels at hip and thi lev, right leg, subs +C2859569|T037|AB|S75.891S|ICD10CM|Inj oth blood vessels at hip and thi lev, right leg, sequela|Inj oth blood vessels at hip and thi lev, right leg, sequela +C2859569|T037|PT|S75.891S|ICD10CM|Other specified injury of other blood vessels at hip and thigh level, right leg, sequela|Other specified injury of other blood vessels at hip and thigh level, right leg, sequela +C2859570|T037|AB|S75.892|ICD10CM|Inj oth blood vessels at hip and thigh level, left leg|Inj oth blood vessels at hip and thigh level, left leg +C2859570|T037|HT|S75.892|ICD10CM|Other specified injury of other blood vessels at hip and thigh level, left leg|Other specified injury of other blood vessels at hip and thigh level, left leg +C2859571|T037|AB|S75.892A|ICD10CM|Inj oth blood vessels at hip and thigh level, left leg, init|Inj oth blood vessels at hip and thigh level, left leg, init +C2859571|T037|PT|S75.892A|ICD10CM|Other specified injury of other blood vessels at hip and thigh level, left leg, initial encounter|Other specified injury of other blood vessels at hip and thigh level, left leg, initial encounter +C2859572|T037|AB|S75.892D|ICD10CM|Inj oth blood vessels at hip and thigh level, left leg, subs|Inj oth blood vessels at hip and thigh level, left leg, subs +C2859572|T037|PT|S75.892D|ICD10CM|Other specified injury of other blood vessels at hip and thigh level, left leg, subsequent encounter|Other specified injury of other blood vessels at hip and thigh level, left leg, subsequent encounter +C2859573|T037|AB|S75.892S|ICD10CM|Inj oth blood vessels at hip and thi lev, left leg, sequela|Inj oth blood vessels at hip and thi lev, left leg, sequela +C2859573|T037|PT|S75.892S|ICD10CM|Other specified injury of other blood vessels at hip and thigh level, left leg, sequela|Other specified injury of other blood vessels at hip and thigh level, left leg, sequela +C2859574|T037|AB|S75.899|ICD10CM|Inj oth blood vessels at hip and thigh level, unsp leg|Inj oth blood vessels at hip and thigh level, unsp leg +C2859574|T037|HT|S75.899|ICD10CM|Other specified injury of other blood vessels at hip and thigh level, unspecified leg|Other specified injury of other blood vessels at hip and thigh level, unspecified leg +C2859575|T037|AB|S75.899A|ICD10CM|Inj oth blood vessels at hip and thigh level, unsp leg, init|Inj oth blood vessels at hip and thigh level, unsp leg, init +C2859576|T037|AB|S75.899D|ICD10CM|Inj oth blood vessels at hip and thigh level, unsp leg, subs|Inj oth blood vessels at hip and thigh level, unsp leg, subs +C2859577|T037|AB|S75.899S|ICD10CM|Inj oth blood vessels at hip and thi lev, unsp leg, sequela|Inj oth blood vessels at hip and thi lev, unsp leg, sequela +C2859577|T037|PT|S75.899S|ICD10CM|Other specified injury of other blood vessels at hip and thigh level, unspecified leg, sequela|Other specified injury of other blood vessels at hip and thigh level, unspecified leg, sequela +C0478329|T037|HT|S75.9|ICD10CM|Injury of unspecified blood vessel at hip and thigh level|Injury of unspecified blood vessel at hip and thigh level +C0478329|T037|AB|S75.9|ICD10CM|Injury of unspecified blood vessel at hip and thigh level|Injury of unspecified blood vessel at hip and thigh level +C0478329|T037|PT|S75.9|ICD10|Injury of unspecified blood vessel at hip and thigh level|Injury of unspecified blood vessel at hip and thigh level +C2859578|T037|AB|S75.90|ICD10CM|Unsp injury of unsp blood vessel at hip and thigh level|Unsp injury of unsp blood vessel at hip and thigh level +C2859578|T037|HT|S75.90|ICD10CM|Unspecified injury of unspecified blood vessel at hip and thigh level|Unspecified injury of unspecified blood vessel at hip and thigh level +C2859579|T037|AB|S75.901|ICD10CM|Unsp injury of unsp blood vess at hip and thi lev, right leg|Unsp injury of unsp blood vess at hip and thi lev, right leg +C2859579|T037|HT|S75.901|ICD10CM|Unspecified injury of unspecified blood vessel at hip and thigh level, right leg|Unspecified injury of unspecified blood vessel at hip and thigh level, right leg +C2859580|T037|AB|S75.901A|ICD10CM|Unsp inj unsp blood vess at hip and thi lev, right leg, init|Unsp inj unsp blood vess at hip and thi lev, right leg, init +C2859580|T037|PT|S75.901A|ICD10CM|Unspecified injury of unspecified blood vessel at hip and thigh level, right leg, initial encounter|Unspecified injury of unspecified blood vessel at hip and thigh level, right leg, initial encounter +C2859581|T037|AB|S75.901D|ICD10CM|Unsp inj unsp blood vess at hip and thi lev, right leg, subs|Unsp inj unsp blood vess at hip and thi lev, right leg, subs +C2859582|T037|AB|S75.901S|ICD10CM|Unsp inj unsp blood vess at hip and thi lev, right leg, sqla|Unsp inj unsp blood vess at hip and thi lev, right leg, sqla +C2859582|T037|PT|S75.901S|ICD10CM|Unspecified injury of unspecified blood vessel at hip and thigh level, right leg, sequela|Unspecified injury of unspecified blood vessel at hip and thigh level, right leg, sequela +C2859583|T037|AB|S75.902|ICD10CM|Unsp injury of unsp blood vess at hip and thi lev, left leg|Unsp injury of unsp blood vess at hip and thi lev, left leg +C2859583|T037|HT|S75.902|ICD10CM|Unspecified injury of unspecified blood vessel at hip and thigh level, left leg|Unspecified injury of unspecified blood vessel at hip and thigh level, left leg +C2859584|T037|AB|S75.902A|ICD10CM|Unsp inj unsp blood vess at hip and thi lev, left leg, init|Unsp inj unsp blood vess at hip and thi lev, left leg, init +C2859584|T037|PT|S75.902A|ICD10CM|Unspecified injury of unspecified blood vessel at hip and thigh level, left leg, initial encounter|Unspecified injury of unspecified blood vessel at hip and thigh level, left leg, initial encounter +C2859585|T037|AB|S75.902D|ICD10CM|Unsp inj unsp blood vess at hip and thi lev, left leg, subs|Unsp inj unsp blood vess at hip and thi lev, left leg, subs +C2859586|T037|AB|S75.902S|ICD10CM|Unsp inj unsp blood vess at hip and thi lev, left leg, sqla|Unsp inj unsp blood vess at hip and thi lev, left leg, sqla +C2859586|T037|PT|S75.902S|ICD10CM|Unspecified injury of unspecified blood vessel at hip and thigh level, left leg, sequela|Unspecified injury of unspecified blood vessel at hip and thigh level, left leg, sequela +C2859587|T037|AB|S75.909|ICD10CM|Unsp injury of unsp blood vess at hip and thi lev, unsp leg|Unsp injury of unsp blood vess at hip and thi lev, unsp leg +C2859587|T037|HT|S75.909|ICD10CM|Unspecified injury of unspecified blood vessel at hip and thigh level, unspecified leg|Unspecified injury of unspecified blood vessel at hip and thigh level, unspecified leg +C2859588|T037|AB|S75.909A|ICD10CM|Unsp inj unsp blood vess at hip and thi lev, unsp leg, init|Unsp inj unsp blood vess at hip and thi lev, unsp leg, init +C2859589|T037|AB|S75.909D|ICD10CM|Unsp inj unsp blood vess at hip and thi lev, unsp leg, subs|Unsp inj unsp blood vess at hip and thi lev, unsp leg, subs +C2859590|T037|AB|S75.909S|ICD10CM|Unsp inj unsp blood vess at hip and thi lev, unsp leg, sqla|Unsp inj unsp blood vess at hip and thi lev, unsp leg, sqla +C2859590|T037|PT|S75.909S|ICD10CM|Unspecified injury of unspecified blood vessel at hip and thigh level, unspecified leg, sequela|Unspecified injury of unspecified blood vessel at hip and thigh level, unspecified leg, sequela +C2859591|T037|AB|S75.91|ICD10CM|Laceration of unsp blood vessel at hip and thigh level|Laceration of unsp blood vessel at hip and thigh level +C2859591|T037|HT|S75.91|ICD10CM|Laceration of unspecified blood vessel at hip and thigh level|Laceration of unspecified blood vessel at hip and thigh level +C2859592|T037|AB|S75.911|ICD10CM|Lacerat unsp blood vessel at hip and thigh level, right leg|Lacerat unsp blood vessel at hip and thigh level, right leg +C2859592|T037|HT|S75.911|ICD10CM|Laceration of unspecified blood vessel at hip and thigh level, right leg|Laceration of unspecified blood vessel at hip and thigh level, right leg +C2859593|T037|AB|S75.911A|ICD10CM|Lacerat unsp blood vess at hip and thi lev, right leg, init|Lacerat unsp blood vess at hip and thi lev, right leg, init +C2859593|T037|PT|S75.911A|ICD10CM|Laceration of unspecified blood vessel at hip and thigh level, right leg, initial encounter|Laceration of unspecified blood vessel at hip and thigh level, right leg, initial encounter +C2859594|T037|AB|S75.911D|ICD10CM|Lacerat unsp blood vess at hip and thi lev, right leg, subs|Lacerat unsp blood vess at hip and thi lev, right leg, subs +C2859594|T037|PT|S75.911D|ICD10CM|Laceration of unspecified blood vessel at hip and thigh level, right leg, subsequent encounter|Laceration of unspecified blood vessel at hip and thigh level, right leg, subsequent encounter +C2859595|T037|AB|S75.911S|ICD10CM|Lacerat unsp blood vess at hip and thi lev, right leg, sqla|Lacerat unsp blood vess at hip and thi lev, right leg, sqla +C2859595|T037|PT|S75.911S|ICD10CM|Laceration of unspecified blood vessel at hip and thigh level, right leg, sequela|Laceration of unspecified blood vessel at hip and thigh level, right leg, sequela +C2859596|T037|AB|S75.912|ICD10CM|Lacerat unsp blood vessel at hip and thigh level, left leg|Lacerat unsp blood vessel at hip and thigh level, left leg +C2859596|T037|HT|S75.912|ICD10CM|Laceration of unspecified blood vessel at hip and thigh level, left leg|Laceration of unspecified blood vessel at hip and thigh level, left leg +C2859597|T037|AB|S75.912A|ICD10CM|Lacerat unsp blood vess at hip and thi lev, left leg, init|Lacerat unsp blood vess at hip and thi lev, left leg, init +C2859597|T037|PT|S75.912A|ICD10CM|Laceration of unspecified blood vessel at hip and thigh level, left leg, initial encounter|Laceration of unspecified blood vessel at hip and thigh level, left leg, initial encounter +C2859598|T037|AB|S75.912D|ICD10CM|Lacerat unsp blood vess at hip and thi lev, left leg, subs|Lacerat unsp blood vess at hip and thi lev, left leg, subs +C2859598|T037|PT|S75.912D|ICD10CM|Laceration of unspecified blood vessel at hip and thigh level, left leg, subsequent encounter|Laceration of unspecified blood vessel at hip and thigh level, left leg, subsequent encounter +C2859599|T037|AB|S75.912S|ICD10CM|Lacerat unsp blood vess at hip and thi lev, left leg, sqla|Lacerat unsp blood vess at hip and thi lev, left leg, sqla +C2859599|T037|PT|S75.912S|ICD10CM|Laceration of unspecified blood vessel at hip and thigh level, left leg, sequela|Laceration of unspecified blood vessel at hip and thigh level, left leg, sequela +C2859600|T037|AB|S75.919|ICD10CM|Lacerat unsp blood vessel at hip and thigh level, unsp leg|Lacerat unsp blood vessel at hip and thigh level, unsp leg +C2859600|T037|HT|S75.919|ICD10CM|Laceration of unspecified blood vessel at hip and thigh level, unspecified leg|Laceration of unspecified blood vessel at hip and thigh level, unspecified leg +C2859601|T037|AB|S75.919A|ICD10CM|Lacerat unsp blood vess at hip and thi lev, unsp leg, init|Lacerat unsp blood vess at hip and thi lev, unsp leg, init +C2859601|T037|PT|S75.919A|ICD10CM|Laceration of unspecified blood vessel at hip and thigh level, unspecified leg, initial encounter|Laceration of unspecified blood vessel at hip and thigh level, unspecified leg, initial encounter +C2859602|T037|AB|S75.919D|ICD10CM|Lacerat unsp blood vess at hip and thi lev, unsp leg, subs|Lacerat unsp blood vess at hip and thi lev, unsp leg, subs +C2859602|T037|PT|S75.919D|ICD10CM|Laceration of unspecified blood vessel at hip and thigh level, unspecified leg, subsequent encounter|Laceration of unspecified blood vessel at hip and thigh level, unspecified leg, subsequent encounter +C2859603|T037|AB|S75.919S|ICD10CM|Lacerat unsp blood vess at hip and thi lev, unsp leg, sqla|Lacerat unsp blood vess at hip and thi lev, unsp leg, sqla +C2859603|T037|PT|S75.919S|ICD10CM|Laceration of unspecified blood vessel at hip and thigh level, unspecified leg, sequela|Laceration of unspecified blood vessel at hip and thigh level, unspecified leg, sequela +C2859604|T037|AB|S75.99|ICD10CM|Oth injury of unsp blood vessel at hip and thigh level|Oth injury of unsp blood vessel at hip and thigh level +C2859604|T037|HT|S75.99|ICD10CM|Other specified injury of unspecified blood vessel at hip and thigh level|Other specified injury of unspecified blood vessel at hip and thigh level +C2859605|T037|AB|S75.991|ICD10CM|Inj unsp blood vessel at hip and thigh level, right leg|Inj unsp blood vessel at hip and thigh level, right leg +C2859605|T037|HT|S75.991|ICD10CM|Other specified injury of unspecified blood vessel at hip and thigh level, right leg|Other specified injury of unspecified blood vessel at hip and thigh level, right leg +C2859606|T037|AB|S75.991A|ICD10CM|Inj unsp blood vess at hip and thigh level, right leg, init|Inj unsp blood vess at hip and thigh level, right leg, init +C2859607|T037|AB|S75.991D|ICD10CM|Inj unsp blood vess at hip and thigh level, right leg, subs|Inj unsp blood vess at hip and thigh level, right leg, subs +C2859608|T037|AB|S75.991S|ICD10CM|Inj unsp blood vess at hip and thi lev, right leg, sequela|Inj unsp blood vess at hip and thi lev, right leg, sequela +C2859608|T037|PT|S75.991S|ICD10CM|Other specified injury of unspecified blood vessel at hip and thigh level, right leg, sequela|Other specified injury of unspecified blood vessel at hip and thigh level, right leg, sequela +C2859609|T037|AB|S75.992|ICD10CM|Inj unsp blood vessel at hip and thigh level, left leg|Inj unsp blood vessel at hip and thigh level, left leg +C2859609|T037|HT|S75.992|ICD10CM|Other specified injury of unspecified blood vessel at hip and thigh level, left leg|Other specified injury of unspecified blood vessel at hip and thigh level, left leg +C2859610|T037|AB|S75.992A|ICD10CM|Inj unsp blood vessel at hip and thigh level, left leg, init|Inj unsp blood vessel at hip and thigh level, left leg, init +C2859611|T037|AB|S75.992D|ICD10CM|Inj unsp blood vessel at hip and thigh level, left leg, subs|Inj unsp blood vessel at hip and thigh level, left leg, subs +C2859612|T037|AB|S75.992S|ICD10CM|Inj unsp blood vess at hip and thi lev, left leg, sequela|Inj unsp blood vess at hip and thi lev, left leg, sequela +C2859612|T037|PT|S75.992S|ICD10CM|Other specified injury of unspecified blood vessel at hip and thigh level, left leg, sequela|Other specified injury of unspecified blood vessel at hip and thigh level, left leg, sequela +C2859613|T037|AB|S75.999|ICD10CM|Inj unsp blood vessel at hip and thigh level, unsp leg|Inj unsp blood vessel at hip and thigh level, unsp leg +C2859613|T037|HT|S75.999|ICD10CM|Other specified injury of unspecified blood vessel at hip and thigh level, unspecified leg|Other specified injury of unspecified blood vessel at hip and thigh level, unspecified leg +C2859614|T037|AB|S75.999A|ICD10CM|Inj unsp blood vessel at hip and thigh level, unsp leg, init|Inj unsp blood vessel at hip and thigh level, unsp leg, init +C2859615|T037|AB|S75.999D|ICD10CM|Inj unsp blood vessel at hip and thigh level, unsp leg, subs|Inj unsp blood vessel at hip and thigh level, unsp leg, subs +C2859616|T037|AB|S75.999S|ICD10CM|Inj unsp blood vess at hip and thi lev, unsp leg, sequela|Inj unsp blood vess at hip and thi lev, unsp leg, sequela +C2859616|T037|PT|S75.999S|ICD10CM|Other specified injury of unspecified blood vessel at hip and thigh level, unspecified leg, sequela|Other specified injury of unspecified blood vessel at hip and thigh level, unspecified leg, sequela +C0451857|T037|HT|S76|ICD10|Injury of muscle and tendon at hip and thigh level|Injury of muscle and tendon at hip and thigh level +C2859617|T037|AB|S76|ICD10CM|Injury of muscle, fascia and tendon at hip and thigh level|Injury of muscle, fascia and tendon at hip and thigh level +C2859617|T037|HT|S76|ICD10CM|Injury of muscle, fascia and tendon at hip and thigh level|Injury of muscle, fascia and tendon at hip and thigh level +C0495938|T037|PT|S76.0|ICD10|Injury of muscle and tendon of hip|Injury of muscle and tendon of hip +C2859618|T037|AB|S76.0|ICD10CM|Injury of muscle, fascia and tendon of hip|Injury of muscle, fascia and tendon of hip +C2859618|T037|HT|S76.0|ICD10CM|Injury of muscle, fascia and tendon of hip|Injury of muscle, fascia and tendon of hip +C2859619|T037|AB|S76.00|ICD10CM|Unspecified injury of muscle, fascia and tendon of hip|Unspecified injury of muscle, fascia and tendon of hip +C2859619|T037|HT|S76.00|ICD10CM|Unspecified injury of muscle, fascia and tendon of hip|Unspecified injury of muscle, fascia and tendon of hip +C2859620|T037|AB|S76.001|ICD10CM|Unspecified injury of muscle, fascia and tendon of right hip|Unspecified injury of muscle, fascia and tendon of right hip +C2859620|T037|HT|S76.001|ICD10CM|Unspecified injury of muscle, fascia and tendon of right hip|Unspecified injury of muscle, fascia and tendon of right hip +C2859621|T037|AB|S76.001A|ICD10CM|Unsp injury of muscle, fascia and tendon of right hip, init|Unsp injury of muscle, fascia and tendon of right hip, init +C2859621|T037|PT|S76.001A|ICD10CM|Unspecified injury of muscle, fascia and tendon of right hip, initial encounter|Unspecified injury of muscle, fascia and tendon of right hip, initial encounter +C2859622|T037|AB|S76.001D|ICD10CM|Unsp injury of muscle, fascia and tendon of right hip, subs|Unsp injury of muscle, fascia and tendon of right hip, subs +C2859622|T037|PT|S76.001D|ICD10CM|Unspecified injury of muscle, fascia and tendon of right hip, subsequent encounter|Unspecified injury of muscle, fascia and tendon of right hip, subsequent encounter +C2859623|T037|AB|S76.001S|ICD10CM|Unsp injury of musc/fasc/tend right hip, sequela|Unsp injury of musc/fasc/tend right hip, sequela +C2859623|T037|PT|S76.001S|ICD10CM|Unspecified injury of muscle, fascia and tendon of right hip, sequela|Unspecified injury of muscle, fascia and tendon of right hip, sequela +C2859624|T037|AB|S76.002|ICD10CM|Unspecified injury of muscle, fascia and tendon of left hip|Unspecified injury of muscle, fascia and tendon of left hip +C2859624|T037|HT|S76.002|ICD10CM|Unspecified injury of muscle, fascia and tendon of left hip|Unspecified injury of muscle, fascia and tendon of left hip +C2859625|T037|AB|S76.002A|ICD10CM|Unsp injury of muscle, fascia and tendon of left hip, init|Unsp injury of muscle, fascia and tendon of left hip, init +C2859625|T037|PT|S76.002A|ICD10CM|Unspecified injury of muscle, fascia and tendon of left hip, initial encounter|Unspecified injury of muscle, fascia and tendon of left hip, initial encounter +C2859626|T037|AB|S76.002D|ICD10CM|Unsp injury of muscle, fascia and tendon of left hip, subs|Unsp injury of muscle, fascia and tendon of left hip, subs +C2859626|T037|PT|S76.002D|ICD10CM|Unspecified injury of muscle, fascia and tendon of left hip, subsequent encounter|Unspecified injury of muscle, fascia and tendon of left hip, subsequent encounter +C2859627|T037|AB|S76.002S|ICD10CM|Unsp injury of musc/fasc/tend left hip, sequela|Unsp injury of musc/fasc/tend left hip, sequela +C2859627|T037|PT|S76.002S|ICD10CM|Unspecified injury of muscle, fascia and tendon of left hip, sequela|Unspecified injury of muscle, fascia and tendon of left hip, sequela +C2859628|T037|AB|S76.009|ICD10CM|Unsp injury of muscle, fascia and tendon of unspecified hip|Unsp injury of muscle, fascia and tendon of unspecified hip +C2859628|T037|HT|S76.009|ICD10CM|Unspecified injury of muscle, fascia and tendon of unspecified hip|Unspecified injury of muscle, fascia and tendon of unspecified hip +C2859629|T037|AB|S76.009A|ICD10CM|Unsp injury of muscle, fascia and tendon of unsp hip, init|Unsp injury of muscle, fascia and tendon of unsp hip, init +C2859629|T037|PT|S76.009A|ICD10CM|Unspecified injury of muscle, fascia and tendon of unspecified hip, initial encounter|Unspecified injury of muscle, fascia and tendon of unspecified hip, initial encounter +C2859630|T037|AB|S76.009D|ICD10CM|Unsp injury of muscle, fascia and tendon of unsp hip, subs|Unsp injury of muscle, fascia and tendon of unsp hip, subs +C2859630|T037|PT|S76.009D|ICD10CM|Unspecified injury of muscle, fascia and tendon of unspecified hip, subsequent encounter|Unspecified injury of muscle, fascia and tendon of unspecified hip, subsequent encounter +C2859631|T037|AB|S76.009S|ICD10CM|Unsp injury of musc/fasc/tend unsp hip, sequela|Unsp injury of musc/fasc/tend unsp hip, sequela +C2859631|T037|PT|S76.009S|ICD10CM|Unspecified injury of muscle, fascia and tendon of unspecified hip, sequela|Unspecified injury of muscle, fascia and tendon of unspecified hip, sequela +C2859632|T037|AB|S76.01|ICD10CM|Strain of muscle, fascia and tendon of hip|Strain of muscle, fascia and tendon of hip +C2859632|T037|HT|S76.01|ICD10CM|Strain of muscle, fascia and tendon of hip|Strain of muscle, fascia and tendon of hip +C2859633|T037|AB|S76.011|ICD10CM|Strain of muscle, fascia and tendon of right hip|Strain of muscle, fascia and tendon of right hip +C2859633|T037|HT|S76.011|ICD10CM|Strain of muscle, fascia and tendon of right hip|Strain of muscle, fascia and tendon of right hip +C2859634|T037|AB|S76.011A|ICD10CM|Strain of muscle, fascia and tendon of right hip, init|Strain of muscle, fascia and tendon of right hip, init +C2859634|T037|PT|S76.011A|ICD10CM|Strain of muscle, fascia and tendon of right hip, initial encounter|Strain of muscle, fascia and tendon of right hip, initial encounter +C2859635|T037|AB|S76.011D|ICD10CM|Strain of muscle, fascia and tendon of right hip, subs|Strain of muscle, fascia and tendon of right hip, subs +C2859635|T037|PT|S76.011D|ICD10CM|Strain of muscle, fascia and tendon of right hip, subsequent encounter|Strain of muscle, fascia and tendon of right hip, subsequent encounter +C2859636|T037|PT|S76.011S|ICD10CM|Strain of muscle, fascia and tendon of right hip, sequela|Strain of muscle, fascia and tendon of right hip, sequela +C2859636|T037|AB|S76.011S|ICD10CM|Strain of muscle, fascia and tendon of right hip, sequela|Strain of muscle, fascia and tendon of right hip, sequela +C2859637|T037|AB|S76.012|ICD10CM|Strain of muscle, fascia and tendon of left hip|Strain of muscle, fascia and tendon of left hip +C2859637|T037|HT|S76.012|ICD10CM|Strain of muscle, fascia and tendon of left hip|Strain of muscle, fascia and tendon of left hip +C2859638|T037|AB|S76.012A|ICD10CM|Strain of muscle, fascia and tendon of left hip, init encntr|Strain of muscle, fascia and tendon of left hip, init encntr +C2859638|T037|PT|S76.012A|ICD10CM|Strain of muscle, fascia and tendon of left hip, initial encounter|Strain of muscle, fascia and tendon of left hip, initial encounter +C2859639|T037|AB|S76.012D|ICD10CM|Strain of muscle, fascia and tendon of left hip, subs encntr|Strain of muscle, fascia and tendon of left hip, subs encntr +C2859639|T037|PT|S76.012D|ICD10CM|Strain of muscle, fascia and tendon of left hip, subsequent encounter|Strain of muscle, fascia and tendon of left hip, subsequent encounter +C2859640|T037|AB|S76.012S|ICD10CM|Strain of muscle, fascia and tendon of left hip, sequela|Strain of muscle, fascia and tendon of left hip, sequela +C2859640|T037|PT|S76.012S|ICD10CM|Strain of muscle, fascia and tendon of left hip, sequela|Strain of muscle, fascia and tendon of left hip, sequela +C2859641|T037|AB|S76.019|ICD10CM|Strain of muscle, fascia and tendon of unspecified hip|Strain of muscle, fascia and tendon of unspecified hip +C2859641|T037|HT|S76.019|ICD10CM|Strain of muscle, fascia and tendon of unspecified hip|Strain of muscle, fascia and tendon of unspecified hip +C2859642|T037|AB|S76.019A|ICD10CM|Strain of muscle, fascia and tendon of unsp hip, init encntr|Strain of muscle, fascia and tendon of unsp hip, init encntr +C2859642|T037|PT|S76.019A|ICD10CM|Strain of muscle, fascia and tendon of unspecified hip, initial encounter|Strain of muscle, fascia and tendon of unspecified hip, initial encounter +C2859643|T037|AB|S76.019D|ICD10CM|Strain of muscle, fascia and tendon of unsp hip, subs encntr|Strain of muscle, fascia and tendon of unsp hip, subs encntr +C2859643|T037|PT|S76.019D|ICD10CM|Strain of muscle, fascia and tendon of unspecified hip, subsequent encounter|Strain of muscle, fascia and tendon of unspecified hip, subsequent encounter +C2859644|T037|AB|S76.019S|ICD10CM|Strain of muscle, fascia and tendon of unsp hip, sequela|Strain of muscle, fascia and tendon of unsp hip, sequela +C2859644|T037|PT|S76.019S|ICD10CM|Strain of muscle, fascia and tendon of unspecified hip, sequela|Strain of muscle, fascia and tendon of unspecified hip, sequela +C2859645|T037|AB|S76.02|ICD10CM|Laceration of muscle, fascia and tendon of hip|Laceration of muscle, fascia and tendon of hip +C2859645|T037|HT|S76.02|ICD10CM|Laceration of muscle, fascia and tendon of hip|Laceration of muscle, fascia and tendon of hip +C2859646|T037|AB|S76.021|ICD10CM|Laceration of muscle, fascia and tendon of right hip|Laceration of muscle, fascia and tendon of right hip +C2859646|T037|HT|S76.021|ICD10CM|Laceration of muscle, fascia and tendon of right hip|Laceration of muscle, fascia and tendon of right hip +C2859647|T037|AB|S76.021A|ICD10CM|Laceration of muscle, fascia and tendon of right hip, init|Laceration of muscle, fascia and tendon of right hip, init +C2859647|T037|PT|S76.021A|ICD10CM|Laceration of muscle, fascia and tendon of right hip, initial encounter|Laceration of muscle, fascia and tendon of right hip, initial encounter +C2859648|T037|AB|S76.021D|ICD10CM|Laceration of muscle, fascia and tendon of right hip, subs|Laceration of muscle, fascia and tendon of right hip, subs +C2859648|T037|PT|S76.021D|ICD10CM|Laceration of muscle, fascia and tendon of right hip, subsequent encounter|Laceration of muscle, fascia and tendon of right hip, subsequent encounter +C2859649|T037|AB|S76.021S|ICD10CM|Laceration of musc/fasc/tend right hip, sequela|Laceration of musc/fasc/tend right hip, sequela +C2859649|T037|PT|S76.021S|ICD10CM|Laceration of muscle, fascia and tendon of right hip, sequela|Laceration of muscle, fascia and tendon of right hip, sequela +C2859650|T037|AB|S76.022|ICD10CM|Laceration of muscle, fascia and tendon of left hip|Laceration of muscle, fascia and tendon of left hip +C2859650|T037|HT|S76.022|ICD10CM|Laceration of muscle, fascia and tendon of left hip|Laceration of muscle, fascia and tendon of left hip +C2859651|T037|AB|S76.022A|ICD10CM|Laceration of muscle, fascia and tendon of left hip, init|Laceration of muscle, fascia and tendon of left hip, init +C2859651|T037|PT|S76.022A|ICD10CM|Laceration of muscle, fascia and tendon of left hip, initial encounter|Laceration of muscle, fascia and tendon of left hip, initial encounter +C2859652|T037|AB|S76.022D|ICD10CM|Laceration of muscle, fascia and tendon of left hip, subs|Laceration of muscle, fascia and tendon of left hip, subs +C2859652|T037|PT|S76.022D|ICD10CM|Laceration of muscle, fascia and tendon of left hip, subsequent encounter|Laceration of muscle, fascia and tendon of left hip, subsequent encounter +C2859653|T037|AB|S76.022S|ICD10CM|Laceration of muscle, fascia and tendon of left hip, sequela|Laceration of muscle, fascia and tendon of left hip, sequela +C2859653|T037|PT|S76.022S|ICD10CM|Laceration of muscle, fascia and tendon of left hip, sequela|Laceration of muscle, fascia and tendon of left hip, sequela +C2859654|T037|AB|S76.029|ICD10CM|Laceration of muscle, fascia and tendon of unspecified hip|Laceration of muscle, fascia and tendon of unspecified hip +C2859654|T037|HT|S76.029|ICD10CM|Laceration of muscle, fascia and tendon of unspecified hip|Laceration of muscle, fascia and tendon of unspecified hip +C2859655|T037|AB|S76.029A|ICD10CM|Laceration of muscle, fascia and tendon of unsp hip, init|Laceration of muscle, fascia and tendon of unsp hip, init +C2859655|T037|PT|S76.029A|ICD10CM|Laceration of muscle, fascia and tendon of unspecified hip, initial encounter|Laceration of muscle, fascia and tendon of unspecified hip, initial encounter +C2859656|T037|AB|S76.029D|ICD10CM|Laceration of muscle, fascia and tendon of unsp hip, subs|Laceration of muscle, fascia and tendon of unsp hip, subs +C2859656|T037|PT|S76.029D|ICD10CM|Laceration of muscle, fascia and tendon of unspecified hip, subsequent encounter|Laceration of muscle, fascia and tendon of unspecified hip, subsequent encounter +C2859657|T037|AB|S76.029S|ICD10CM|Laceration of muscle, fascia and tendon of unsp hip, sequela|Laceration of muscle, fascia and tendon of unsp hip, sequela +C2859657|T037|PT|S76.029S|ICD10CM|Laceration of muscle, fascia and tendon of unspecified hip, sequela|Laceration of muscle, fascia and tendon of unspecified hip, sequela +C2859658|T037|AB|S76.09|ICD10CM|Other specified injury of muscle, fascia and tendon of hip|Other specified injury of muscle, fascia and tendon of hip +C2859658|T037|HT|S76.09|ICD10CM|Other specified injury of muscle, fascia and tendon of hip|Other specified injury of muscle, fascia and tendon of hip +C2859659|T037|AB|S76.091|ICD10CM|Oth injury of muscle, fascia and tendon of right hip|Oth injury of muscle, fascia and tendon of right hip +C2859659|T037|HT|S76.091|ICD10CM|Other specified injury of muscle, fascia and tendon of right hip|Other specified injury of muscle, fascia and tendon of right hip +C2859660|T037|AB|S76.091A|ICD10CM|Inj muscle, fascia and tendon of right hip, init encntr|Inj muscle, fascia and tendon of right hip, init encntr +C2859660|T037|PT|S76.091A|ICD10CM|Other specified injury of muscle, fascia and tendon of right hip, initial encounter|Other specified injury of muscle, fascia and tendon of right hip, initial encounter +C2859661|T037|AB|S76.091D|ICD10CM|Inj muscle, fascia and tendon of right hip, subs encntr|Inj muscle, fascia and tendon of right hip, subs encntr +C2859661|T037|PT|S76.091D|ICD10CM|Other specified injury of muscle, fascia and tendon of right hip, subsequent encounter|Other specified injury of muscle, fascia and tendon of right hip, subsequent encounter +C2859662|T037|AB|S76.091S|ICD10CM|Inj muscle, fascia and tendon of right hip, sequela|Inj muscle, fascia and tendon of right hip, sequela +C2859662|T037|PT|S76.091S|ICD10CM|Other specified injury of muscle, fascia and tendon of right hip, sequela|Other specified injury of muscle, fascia and tendon of right hip, sequela +C2859663|T037|AB|S76.092|ICD10CM|Oth injury of muscle, fascia and tendon of left hip|Oth injury of muscle, fascia and tendon of left hip +C2859663|T037|HT|S76.092|ICD10CM|Other specified injury of muscle, fascia and tendon of left hip|Other specified injury of muscle, fascia and tendon of left hip +C2859664|T037|AB|S76.092A|ICD10CM|Inj muscle, fascia and tendon of left hip, init encntr|Inj muscle, fascia and tendon of left hip, init encntr +C2859664|T037|PT|S76.092A|ICD10CM|Other specified injury of muscle, fascia and tendon of left hip, initial encounter|Other specified injury of muscle, fascia and tendon of left hip, initial encounter +C2859665|T037|AB|S76.092D|ICD10CM|Inj muscle, fascia and tendon of left hip, subs encntr|Inj muscle, fascia and tendon of left hip, subs encntr +C2859665|T037|PT|S76.092D|ICD10CM|Other specified injury of muscle, fascia and tendon of left hip, subsequent encounter|Other specified injury of muscle, fascia and tendon of left hip, subsequent encounter +C2859666|T037|AB|S76.092S|ICD10CM|Oth injury of muscle, fascia and tendon of left hip, sequela|Oth injury of muscle, fascia and tendon of left hip, sequela +C2859666|T037|PT|S76.092S|ICD10CM|Other specified injury of muscle, fascia and tendon of left hip, sequela|Other specified injury of muscle, fascia and tendon of left hip, sequela +C2859667|T037|AB|S76.099|ICD10CM|Oth injury of muscle, fascia and tendon of unspecified hip|Oth injury of muscle, fascia and tendon of unspecified hip +C2859667|T037|HT|S76.099|ICD10CM|Other specified injury of muscle, fascia and tendon of unspecified hip|Other specified injury of muscle, fascia and tendon of unspecified hip +C2859668|T037|AB|S76.099A|ICD10CM|Inj muscle, fascia and tendon of unsp hip, init encntr|Inj muscle, fascia and tendon of unsp hip, init encntr +C2859668|T037|PT|S76.099A|ICD10CM|Other specified injury of muscle, fascia and tendon of unspecified hip, initial encounter|Other specified injury of muscle, fascia and tendon of unspecified hip, initial encounter +C2859669|T037|AB|S76.099D|ICD10CM|Inj muscle, fascia and tendon of unsp hip, subs encntr|Inj muscle, fascia and tendon of unsp hip, subs encntr +C2859669|T037|PT|S76.099D|ICD10CM|Other specified injury of muscle, fascia and tendon of unspecified hip, subsequent encounter|Other specified injury of muscle, fascia and tendon of unspecified hip, subsequent encounter +C2859670|T037|AB|S76.099S|ICD10CM|Oth injury of muscle, fascia and tendon of unsp hip, sequela|Oth injury of muscle, fascia and tendon of unsp hip, sequela +C2859670|T037|PT|S76.099S|ICD10CM|Other specified injury of muscle, fascia and tendon of unspecified hip, sequela|Other specified injury of muscle, fascia and tendon of unspecified hip, sequela +C2859671|T037|ET|S76.1|ICD10CM|Injury of patellar ligament (tendon)|Injury of patellar ligament (tendon) +C0495939|T037|PT|S76.1|ICD10|Injury of quadriceps muscle and tendon|Injury of quadriceps muscle and tendon +C2859672|T037|AB|S76.1|ICD10CM|Injury of quadriceps muscle, fascia and tendon|Injury of quadriceps muscle, fascia and tendon +C2859672|T037|HT|S76.1|ICD10CM|Injury of quadriceps muscle, fascia and tendon|Injury of quadriceps muscle, fascia and tendon +C2859673|T037|AB|S76.10|ICD10CM|Unspecified injury of quadriceps muscle, fascia and tendon|Unspecified injury of quadriceps muscle, fascia and tendon +C2859673|T037|HT|S76.10|ICD10CM|Unspecified injury of quadriceps muscle, fascia and tendon|Unspecified injury of quadriceps muscle, fascia and tendon +C2859674|T037|AB|S76.101|ICD10CM|Unsp injury of right quadriceps muscle, fascia and tendon|Unsp injury of right quadriceps muscle, fascia and tendon +C2859674|T037|HT|S76.101|ICD10CM|Unspecified injury of right quadriceps muscle, fascia and tendon|Unspecified injury of right quadriceps muscle, fascia and tendon +C2859675|T037|AB|S76.101A|ICD10CM|Unsp injury of right quadriceps musc/fasc/tend, init|Unsp injury of right quadriceps musc/fasc/tend, init +C2859675|T037|PT|S76.101A|ICD10CM|Unspecified injury of right quadriceps muscle, fascia and tendon, initial encounter|Unspecified injury of right quadriceps muscle, fascia and tendon, initial encounter +C2859676|T037|AB|S76.101D|ICD10CM|Unsp injury of right quadriceps musc/fasc/tend, subs|Unsp injury of right quadriceps musc/fasc/tend, subs +C2859676|T037|PT|S76.101D|ICD10CM|Unspecified injury of right quadriceps muscle, fascia and tendon, subsequent encounter|Unspecified injury of right quadriceps muscle, fascia and tendon, subsequent encounter +C2859677|T037|AB|S76.101S|ICD10CM|Unsp injury of right quadriceps musc/fasc/tend, sequela|Unsp injury of right quadriceps musc/fasc/tend, sequela +C2859677|T037|PT|S76.101S|ICD10CM|Unspecified injury of right quadriceps muscle, fascia and tendon, sequela|Unspecified injury of right quadriceps muscle, fascia and tendon, sequela +C2859678|T037|AB|S76.102|ICD10CM|Unsp injury of left quadriceps muscle, fascia and tendon|Unsp injury of left quadriceps muscle, fascia and tendon +C2859678|T037|HT|S76.102|ICD10CM|Unspecified injury of left quadriceps muscle, fascia and tendon|Unspecified injury of left quadriceps muscle, fascia and tendon +C2859679|T037|AB|S76.102A|ICD10CM|Unsp injury of left quadriceps musc/fasc/tend, init|Unsp injury of left quadriceps musc/fasc/tend, init +C2859679|T037|PT|S76.102A|ICD10CM|Unspecified injury of left quadriceps muscle, fascia and tendon, initial encounter|Unspecified injury of left quadriceps muscle, fascia and tendon, initial encounter +C2859680|T037|AB|S76.102D|ICD10CM|Unsp injury of left quadriceps musc/fasc/tend, subs|Unsp injury of left quadriceps musc/fasc/tend, subs +C2859680|T037|PT|S76.102D|ICD10CM|Unspecified injury of left quadriceps muscle, fascia and tendon, subsequent encounter|Unspecified injury of left quadriceps muscle, fascia and tendon, subsequent encounter +C2859681|T037|AB|S76.102S|ICD10CM|Unsp injury of left quadriceps musc/fasc/tend, sequela|Unsp injury of left quadriceps musc/fasc/tend, sequela +C2859681|T037|PT|S76.102S|ICD10CM|Unspecified injury of left quadriceps muscle, fascia and tendon, sequela|Unspecified injury of left quadriceps muscle, fascia and tendon, sequela +C2859682|T037|AB|S76.109|ICD10CM|Unsp injury of unsp quadriceps muscle, fascia and tendon|Unsp injury of unsp quadriceps muscle, fascia and tendon +C2859682|T037|HT|S76.109|ICD10CM|Unspecified injury of unspecified quadriceps muscle, fascia and tendon|Unspecified injury of unspecified quadriceps muscle, fascia and tendon +C2859683|T037|AB|S76.109A|ICD10CM|Unsp injury of unsp quadriceps musc/fasc/tend, init|Unsp injury of unsp quadriceps musc/fasc/tend, init +C2859683|T037|PT|S76.109A|ICD10CM|Unspecified injury of unspecified quadriceps muscle, fascia and tendon, initial encounter|Unspecified injury of unspecified quadriceps muscle, fascia and tendon, initial encounter +C2859684|T037|AB|S76.109D|ICD10CM|Unsp injury of unsp quadriceps musc/fasc/tend, subs|Unsp injury of unsp quadriceps musc/fasc/tend, subs +C2859684|T037|PT|S76.109D|ICD10CM|Unspecified injury of unspecified quadriceps muscle, fascia and tendon, subsequent encounter|Unspecified injury of unspecified quadriceps muscle, fascia and tendon, subsequent encounter +C2859685|T037|AB|S76.109S|ICD10CM|Unsp injury of unsp quadriceps musc/fasc/tend, sequela|Unsp injury of unsp quadriceps musc/fasc/tend, sequela +C2859685|T037|PT|S76.109S|ICD10CM|Unspecified injury of unspecified quadriceps muscle, fascia and tendon, sequela|Unspecified injury of unspecified quadriceps muscle, fascia and tendon, sequela +C2859686|T037|AB|S76.11|ICD10CM|Strain of quadriceps muscle, fascia and tendon|Strain of quadriceps muscle, fascia and tendon +C2859686|T037|HT|S76.11|ICD10CM|Strain of quadriceps muscle, fascia and tendon|Strain of quadriceps muscle, fascia and tendon +C2859687|T037|AB|S76.111|ICD10CM|Strain of right quadriceps muscle, fascia and tendon|Strain of right quadriceps muscle, fascia and tendon +C2859687|T037|HT|S76.111|ICD10CM|Strain of right quadriceps muscle, fascia and tendon|Strain of right quadriceps muscle, fascia and tendon +C2859688|T037|AB|S76.111A|ICD10CM|Strain of right quadriceps muscle, fascia and tendon, init|Strain of right quadriceps muscle, fascia and tendon, init +C2859688|T037|PT|S76.111A|ICD10CM|Strain of right quadriceps muscle, fascia and tendon, initial encounter|Strain of right quadriceps muscle, fascia and tendon, initial encounter +C2859689|T037|AB|S76.111D|ICD10CM|Strain of right quadriceps muscle, fascia and tendon, subs|Strain of right quadriceps muscle, fascia and tendon, subs +C2859689|T037|PT|S76.111D|ICD10CM|Strain of right quadriceps muscle, fascia and tendon, subsequent encounter|Strain of right quadriceps muscle, fascia and tendon, subsequent encounter +C2859690|T037|AB|S76.111S|ICD10CM|Strain of right quadriceps musc/fasc/tend, sequela|Strain of right quadriceps musc/fasc/tend, sequela +C2859690|T037|PT|S76.111S|ICD10CM|Strain of right quadriceps muscle, fascia and tendon, sequela|Strain of right quadriceps muscle, fascia and tendon, sequela +C2859691|T037|AB|S76.112|ICD10CM|Strain of left quadriceps muscle, fascia and tendon|Strain of left quadriceps muscle, fascia and tendon +C2859691|T037|HT|S76.112|ICD10CM|Strain of left quadriceps muscle, fascia and tendon|Strain of left quadriceps muscle, fascia and tendon +C2859692|T037|AB|S76.112A|ICD10CM|Strain of left quadriceps muscle, fascia and tendon, init|Strain of left quadriceps muscle, fascia and tendon, init +C2859692|T037|PT|S76.112A|ICD10CM|Strain of left quadriceps muscle, fascia and tendon, initial encounter|Strain of left quadriceps muscle, fascia and tendon, initial encounter +C2859693|T037|AB|S76.112D|ICD10CM|Strain of left quadriceps muscle, fascia and tendon, subs|Strain of left quadriceps muscle, fascia and tendon, subs +C2859693|T037|PT|S76.112D|ICD10CM|Strain of left quadriceps muscle, fascia and tendon, subsequent encounter|Strain of left quadriceps muscle, fascia and tendon, subsequent encounter +C2859694|T037|AB|S76.112S|ICD10CM|Strain of left quadriceps muscle, fascia and tendon, sequela|Strain of left quadriceps muscle, fascia and tendon, sequela +C2859694|T037|PT|S76.112S|ICD10CM|Strain of left quadriceps muscle, fascia and tendon, sequela|Strain of left quadriceps muscle, fascia and tendon, sequela +C2859695|T037|AB|S76.119|ICD10CM|Strain of unspecified quadriceps muscle, fascia and tendon|Strain of unspecified quadriceps muscle, fascia and tendon +C2859695|T037|HT|S76.119|ICD10CM|Strain of unspecified quadriceps muscle, fascia and tendon|Strain of unspecified quadriceps muscle, fascia and tendon +C2859696|T037|AB|S76.119A|ICD10CM|Strain of unsp quadriceps muscle, fascia and tendon, init|Strain of unsp quadriceps muscle, fascia and tendon, init +C2859696|T037|PT|S76.119A|ICD10CM|Strain of unspecified quadriceps muscle, fascia and tendon, initial encounter|Strain of unspecified quadriceps muscle, fascia and tendon, initial encounter +C2859697|T037|AB|S76.119D|ICD10CM|Strain of unsp quadriceps muscle, fascia and tendon, subs|Strain of unsp quadriceps muscle, fascia and tendon, subs +C2859697|T037|PT|S76.119D|ICD10CM|Strain of unspecified quadriceps muscle, fascia and tendon, subsequent encounter|Strain of unspecified quadriceps muscle, fascia and tendon, subsequent encounter +C2859698|T037|AB|S76.119S|ICD10CM|Strain of unsp quadriceps muscle, fascia and tendon, sequela|Strain of unsp quadriceps muscle, fascia and tendon, sequela +C2859698|T037|PT|S76.119S|ICD10CM|Strain of unspecified quadriceps muscle, fascia and tendon, sequela|Strain of unspecified quadriceps muscle, fascia and tendon, sequela +C2859699|T037|AB|S76.12|ICD10CM|Laceration of quadriceps muscle, fascia and tendon|Laceration of quadriceps muscle, fascia and tendon +C2859699|T037|HT|S76.12|ICD10CM|Laceration of quadriceps muscle, fascia and tendon|Laceration of quadriceps muscle, fascia and tendon +C2859700|T037|AB|S76.121|ICD10CM|Laceration of right quadriceps muscle, fascia and tendon|Laceration of right quadriceps muscle, fascia and tendon +C2859700|T037|HT|S76.121|ICD10CM|Laceration of right quadriceps muscle, fascia and tendon|Laceration of right quadriceps muscle, fascia and tendon +C2859701|T037|AB|S76.121A|ICD10CM|Laceration of right quadriceps musc/fasc/tend, init|Laceration of right quadriceps musc/fasc/tend, init +C2859701|T037|PT|S76.121A|ICD10CM|Laceration of right quadriceps muscle, fascia and tendon, initial encounter|Laceration of right quadriceps muscle, fascia and tendon, initial encounter +C2859702|T037|AB|S76.121D|ICD10CM|Laceration of right quadriceps musc/fasc/tend, subs|Laceration of right quadriceps musc/fasc/tend, subs +C2859702|T037|PT|S76.121D|ICD10CM|Laceration of right quadriceps muscle, fascia and tendon, subsequent encounter|Laceration of right quadriceps muscle, fascia and tendon, subsequent encounter +C2859703|T037|AB|S76.121S|ICD10CM|Laceration of right quadriceps musc/fasc/tend, sequela|Laceration of right quadriceps musc/fasc/tend, sequela +C2859703|T037|PT|S76.121S|ICD10CM|Laceration of right quadriceps muscle, fascia and tendon, sequela|Laceration of right quadriceps muscle, fascia and tendon, sequela +C2859704|T037|AB|S76.122|ICD10CM|Laceration of left quadriceps muscle, fascia and tendon|Laceration of left quadriceps muscle, fascia and tendon +C2859704|T037|HT|S76.122|ICD10CM|Laceration of left quadriceps muscle, fascia and tendon|Laceration of left quadriceps muscle, fascia and tendon +C2859705|T037|AB|S76.122A|ICD10CM|Laceration of left quadriceps musc/fasc/tend, init|Laceration of left quadriceps musc/fasc/tend, init +C2859705|T037|PT|S76.122A|ICD10CM|Laceration of left quadriceps muscle, fascia and tendon, initial encounter|Laceration of left quadriceps muscle, fascia and tendon, initial encounter +C2859706|T037|AB|S76.122D|ICD10CM|Laceration of left quadriceps musc/fasc/tend, subs|Laceration of left quadriceps musc/fasc/tend, subs +C2859706|T037|PT|S76.122D|ICD10CM|Laceration of left quadriceps muscle, fascia and tendon, subsequent encounter|Laceration of left quadriceps muscle, fascia and tendon, subsequent encounter +C2859707|T037|AB|S76.122S|ICD10CM|Laceration of left quadriceps musc/fasc/tend, sequela|Laceration of left quadriceps musc/fasc/tend, sequela +C2859707|T037|PT|S76.122S|ICD10CM|Laceration of left quadriceps muscle, fascia and tendon, sequela|Laceration of left quadriceps muscle, fascia and tendon, sequela +C2859708|T037|AB|S76.129|ICD10CM|Laceration of unsp quadriceps muscle, fascia and tendon|Laceration of unsp quadriceps muscle, fascia and tendon +C2859708|T037|HT|S76.129|ICD10CM|Laceration of unspecified quadriceps muscle, fascia and tendon|Laceration of unspecified quadriceps muscle, fascia and tendon +C2859709|T037|AB|S76.129A|ICD10CM|Laceration of unsp quadriceps musc/fasc/tend, init|Laceration of unsp quadriceps musc/fasc/tend, init +C2859709|T037|PT|S76.129A|ICD10CM|Laceration of unspecified quadriceps muscle, fascia and tendon, initial encounter|Laceration of unspecified quadriceps muscle, fascia and tendon, initial encounter +C2859710|T037|AB|S76.129D|ICD10CM|Laceration of unsp quadriceps musc/fasc/tend, subs|Laceration of unsp quadriceps musc/fasc/tend, subs +C2859710|T037|PT|S76.129D|ICD10CM|Laceration of unspecified quadriceps muscle, fascia and tendon, subsequent encounter|Laceration of unspecified quadriceps muscle, fascia and tendon, subsequent encounter +C2859711|T037|AB|S76.129S|ICD10CM|Laceration of unsp quadriceps musc/fasc/tend, sequela|Laceration of unsp quadriceps musc/fasc/tend, sequela +C2859711|T037|PT|S76.129S|ICD10CM|Laceration of unspecified quadriceps muscle, fascia and tendon, sequela|Laceration of unspecified quadriceps muscle, fascia and tendon, sequela +C2859712|T037|AB|S76.19|ICD10CM|Oth injury of quadriceps muscle, fascia and tendon|Oth injury of quadriceps muscle, fascia and tendon +C2859712|T037|HT|S76.19|ICD10CM|Other specified injury of quadriceps muscle, fascia and tendon|Other specified injury of quadriceps muscle, fascia and tendon +C2859713|T037|AB|S76.191|ICD10CM|Oth injury of right quadriceps muscle, fascia and tendon|Oth injury of right quadriceps muscle, fascia and tendon +C2859713|T037|HT|S76.191|ICD10CM|Other specified injury of right quadriceps muscle, fascia and tendon|Other specified injury of right quadriceps muscle, fascia and tendon +C2859714|T037|AB|S76.191A|ICD10CM|Inj right quadriceps muscle, fascia and tendon, init encntr|Inj right quadriceps muscle, fascia and tendon, init encntr +C2859714|T037|PT|S76.191A|ICD10CM|Other specified injury of right quadriceps muscle, fascia and tendon, initial encounter|Other specified injury of right quadriceps muscle, fascia and tendon, initial encounter +C2859715|T037|AB|S76.191D|ICD10CM|Inj right quadriceps muscle, fascia and tendon, subs encntr|Inj right quadriceps muscle, fascia and tendon, subs encntr +C2859715|T037|PT|S76.191D|ICD10CM|Other specified injury of right quadriceps muscle, fascia and tendon, subsequent encounter|Other specified injury of right quadriceps muscle, fascia and tendon, subsequent encounter +C2859716|T037|AB|S76.191S|ICD10CM|Inj right quadriceps muscle, fascia and tendon, sequela|Inj right quadriceps muscle, fascia and tendon, sequela +C2859716|T037|PT|S76.191S|ICD10CM|Other specified injury of right quadriceps muscle, fascia and tendon, sequela|Other specified injury of right quadriceps muscle, fascia and tendon, sequela +C2859717|T037|AB|S76.192|ICD10CM|Oth injury of left quadriceps muscle, fascia and tendon|Oth injury of left quadriceps muscle, fascia and tendon +C2859717|T037|HT|S76.192|ICD10CM|Other specified injury of left quadriceps muscle, fascia and tendon|Other specified injury of left quadriceps muscle, fascia and tendon +C2859718|T037|AB|S76.192A|ICD10CM|Inj left quadriceps muscle, fascia and tendon, init encntr|Inj left quadriceps muscle, fascia and tendon, init encntr +C2859718|T037|PT|S76.192A|ICD10CM|Other specified injury of left quadriceps muscle, fascia and tendon, initial encounter|Other specified injury of left quadriceps muscle, fascia and tendon, initial encounter +C2859719|T037|AB|S76.192D|ICD10CM|Inj left quadriceps muscle, fascia and tendon, subs encntr|Inj left quadriceps muscle, fascia and tendon, subs encntr +C2859719|T037|PT|S76.192D|ICD10CM|Other specified injury of left quadriceps muscle, fascia and tendon, subsequent encounter|Other specified injury of left quadriceps muscle, fascia and tendon, subsequent encounter +C2859720|T037|AB|S76.192S|ICD10CM|Inj left quadriceps muscle, fascia and tendon, sequela|Inj left quadriceps muscle, fascia and tendon, sequela +C2859720|T037|PT|S76.192S|ICD10CM|Other specified injury of left quadriceps muscle, fascia and tendon, sequela|Other specified injury of left quadriceps muscle, fascia and tendon, sequela +C2859721|T037|AB|S76.199|ICD10CM|Oth injury of unsp quadriceps muscle, fascia and tendon|Oth injury of unsp quadriceps muscle, fascia and tendon +C2859721|T037|HT|S76.199|ICD10CM|Other specified injury of unspecified quadriceps muscle, fascia and tendon|Other specified injury of unspecified quadriceps muscle, fascia and tendon +C2859722|T037|AB|S76.199A|ICD10CM|Inj unsp quadriceps muscle, fascia and tendon, init encntr|Inj unsp quadriceps muscle, fascia and tendon, init encntr +C2859722|T037|PT|S76.199A|ICD10CM|Other specified injury of unspecified quadriceps muscle, fascia and tendon, initial encounter|Other specified injury of unspecified quadriceps muscle, fascia and tendon, initial encounter +C2859723|T037|AB|S76.199D|ICD10CM|Inj unsp quadriceps muscle, fascia and tendon, subs encntr|Inj unsp quadriceps muscle, fascia and tendon, subs encntr +C2859723|T037|PT|S76.199D|ICD10CM|Other specified injury of unspecified quadriceps muscle, fascia and tendon, subsequent encounter|Other specified injury of unspecified quadriceps muscle, fascia and tendon, subsequent encounter +C2859724|T037|AB|S76.199S|ICD10CM|Inj unsp quadriceps muscle, fascia and tendon, sequela|Inj unsp quadriceps muscle, fascia and tendon, sequela +C2859724|T037|PT|S76.199S|ICD10CM|Other specified injury of unspecified quadriceps muscle, fascia and tendon, sequela|Other specified injury of unspecified quadriceps muscle, fascia and tendon, sequela +C0451858|T037|PT|S76.2|ICD10|Injury of adductor muscle and tendon of thigh|Injury of adductor muscle and tendon of thigh +C2859725|T037|AB|S76.2|ICD10CM|Injury of adductor muscle, fascia and tendon of thigh|Injury of adductor muscle, fascia and tendon of thigh +C2859725|T037|HT|S76.2|ICD10CM|Injury of adductor muscle, fascia and tendon of thigh|Injury of adductor muscle, fascia and tendon of thigh +C2859726|T037|AB|S76.20|ICD10CM|Unsp injury of adductor muscle, fascia and tendon of thigh|Unsp injury of adductor muscle, fascia and tendon of thigh +C2859726|T037|HT|S76.20|ICD10CM|Unspecified injury of adductor muscle, fascia and tendon of thigh|Unspecified injury of adductor muscle, fascia and tendon of thigh +C2859727|T037|AB|S76.201|ICD10CM|Unsp injury of adductor musc/fasc/tend right thigh|Unsp injury of adductor musc/fasc/tend right thigh +C2859727|T037|HT|S76.201|ICD10CM|Unspecified injury of adductor muscle, fascia and tendon of right thigh|Unspecified injury of adductor muscle, fascia and tendon of right thigh +C2859728|T037|AB|S76.201A|ICD10CM|Unsp injury of adductor musc/fasc/tend right thigh, init|Unsp injury of adductor musc/fasc/tend right thigh, init +C2859728|T037|PT|S76.201A|ICD10CM|Unspecified injury of adductor muscle, fascia and tendon of right thigh, initial encounter|Unspecified injury of adductor muscle, fascia and tendon of right thigh, initial encounter +C2859729|T037|AB|S76.201D|ICD10CM|Unsp injury of adductor musc/fasc/tend right thigh, subs|Unsp injury of adductor musc/fasc/tend right thigh, subs +C2859729|T037|PT|S76.201D|ICD10CM|Unspecified injury of adductor muscle, fascia and tendon of right thigh, subsequent encounter|Unspecified injury of adductor muscle, fascia and tendon of right thigh, subsequent encounter +C2859730|T037|AB|S76.201S|ICD10CM|Unsp injury of adductor musc/fasc/tend right thigh, sequela|Unsp injury of adductor musc/fasc/tend right thigh, sequela +C2859730|T037|PT|S76.201S|ICD10CM|Unspecified injury of adductor muscle, fascia and tendon of right thigh, sequela|Unspecified injury of adductor muscle, fascia and tendon of right thigh, sequela +C2859731|T037|AB|S76.202|ICD10CM|Unsp injury of adductor musc/fasc/tend left thigh|Unsp injury of adductor musc/fasc/tend left thigh +C2859731|T037|HT|S76.202|ICD10CM|Unspecified injury of adductor muscle, fascia and tendon of left thigh|Unspecified injury of adductor muscle, fascia and tendon of left thigh +C2859732|T037|AB|S76.202A|ICD10CM|Unsp injury of adductor musc/fasc/tend left thigh, init|Unsp injury of adductor musc/fasc/tend left thigh, init +C2859732|T037|PT|S76.202A|ICD10CM|Unspecified injury of adductor muscle, fascia and tendon of left thigh, initial encounter|Unspecified injury of adductor muscle, fascia and tendon of left thigh, initial encounter +C2859733|T037|AB|S76.202D|ICD10CM|Unsp injury of adductor musc/fasc/tend left thigh, subs|Unsp injury of adductor musc/fasc/tend left thigh, subs +C2859733|T037|PT|S76.202D|ICD10CM|Unspecified injury of adductor muscle, fascia and tendon of left thigh, subsequent encounter|Unspecified injury of adductor muscle, fascia and tendon of left thigh, subsequent encounter +C2859734|T037|AB|S76.202S|ICD10CM|Unsp injury of adductor musc/fasc/tend left thigh, sequela|Unsp injury of adductor musc/fasc/tend left thigh, sequela +C2859734|T037|PT|S76.202S|ICD10CM|Unspecified injury of adductor muscle, fascia and tendon of left thigh, sequela|Unspecified injury of adductor muscle, fascia and tendon of left thigh, sequela +C2859735|T037|AB|S76.209|ICD10CM|Unsp injury of adductor musc/fasc/tend unsp thigh|Unsp injury of adductor musc/fasc/tend unsp thigh +C2859735|T037|HT|S76.209|ICD10CM|Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh|Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh +C2859736|T037|AB|S76.209A|ICD10CM|Unsp injury of adductor musc/fasc/tend unsp thigh, init|Unsp injury of adductor musc/fasc/tend unsp thigh, init +C2859736|T037|PT|S76.209A|ICD10CM|Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh, initial encounter|Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh, initial encounter +C2859737|T037|AB|S76.209D|ICD10CM|Unsp injury of adductor musc/fasc/tend unsp thigh, subs|Unsp injury of adductor musc/fasc/tend unsp thigh, subs +C2859737|T037|PT|S76.209D|ICD10CM|Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter|Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter +C2859738|T037|AB|S76.209S|ICD10CM|Unsp injury of adductor musc/fasc/tend unsp thigh, sequela|Unsp injury of adductor musc/fasc/tend unsp thigh, sequela +C2859738|T037|PT|S76.209S|ICD10CM|Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh, sequela|Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh, sequela +C2859739|T037|AB|S76.21|ICD10CM|Strain of adductor muscle, fascia and tendon of thigh|Strain of adductor muscle, fascia and tendon of thigh +C2859739|T037|HT|S76.21|ICD10CM|Strain of adductor muscle, fascia and tendon of thigh|Strain of adductor muscle, fascia and tendon of thigh +C2859740|T037|AB|S76.211|ICD10CM|Strain of adductor muscle, fascia and tendon of right thigh|Strain of adductor muscle, fascia and tendon of right thigh +C2859740|T037|HT|S76.211|ICD10CM|Strain of adductor muscle, fascia and tendon of right thigh|Strain of adductor muscle, fascia and tendon of right thigh +C2859741|T037|AB|S76.211A|ICD10CM|Strain of adductor musc/fasc/tend right thigh, init|Strain of adductor musc/fasc/tend right thigh, init +C2859741|T037|PT|S76.211A|ICD10CM|Strain of adductor muscle, fascia and tendon of right thigh, initial encounter|Strain of adductor muscle, fascia and tendon of right thigh, initial encounter +C2859742|T037|AB|S76.211D|ICD10CM|Strain of adductor musc/fasc/tend right thigh, subs|Strain of adductor musc/fasc/tend right thigh, subs +C2859742|T037|PT|S76.211D|ICD10CM|Strain of adductor muscle, fascia and tendon of right thigh, subsequent encounter|Strain of adductor muscle, fascia and tendon of right thigh, subsequent encounter +C2859743|T037|AB|S76.211S|ICD10CM|Strain of adductor musc/fasc/tend right thigh, sequela|Strain of adductor musc/fasc/tend right thigh, sequela +C2859743|T037|PT|S76.211S|ICD10CM|Strain of adductor muscle, fascia and tendon of right thigh, sequela|Strain of adductor muscle, fascia and tendon of right thigh, sequela +C2859744|T037|AB|S76.212|ICD10CM|Strain of adductor muscle, fascia and tendon of left thigh|Strain of adductor muscle, fascia and tendon of left thigh +C2859744|T037|HT|S76.212|ICD10CM|Strain of adductor muscle, fascia and tendon of left thigh|Strain of adductor muscle, fascia and tendon of left thigh +C2859745|T037|AB|S76.212A|ICD10CM|Strain of adductor musc/fasc/tend left thigh, init|Strain of adductor musc/fasc/tend left thigh, init +C2859745|T037|PT|S76.212A|ICD10CM|Strain of adductor muscle, fascia and tendon of left thigh, initial encounter|Strain of adductor muscle, fascia and tendon of left thigh, initial encounter +C2859746|T037|AB|S76.212D|ICD10CM|Strain of adductor musc/fasc/tend left thigh, subs|Strain of adductor musc/fasc/tend left thigh, subs +C2859746|T037|PT|S76.212D|ICD10CM|Strain of adductor muscle, fascia and tendon of left thigh, subsequent encounter|Strain of adductor muscle, fascia and tendon of left thigh, subsequent encounter +C2859747|T037|AB|S76.212S|ICD10CM|Strain of adductor musc/fasc/tend left thigh, sequela|Strain of adductor musc/fasc/tend left thigh, sequela +C2859747|T037|PT|S76.212S|ICD10CM|Strain of adductor muscle, fascia and tendon of left thigh, sequela|Strain of adductor muscle, fascia and tendon of left thigh, sequela +C2859748|T037|AB|S76.219|ICD10CM|Strain of adductor muscle, fascia and tendon of unsp thigh|Strain of adductor muscle, fascia and tendon of unsp thigh +C2859748|T037|HT|S76.219|ICD10CM|Strain of adductor muscle, fascia and tendon of unspecified thigh|Strain of adductor muscle, fascia and tendon of unspecified thigh +C2859749|T037|AB|S76.219A|ICD10CM|Strain of adductor musc/fasc/tend unsp thigh, init|Strain of adductor musc/fasc/tend unsp thigh, init +C2859749|T037|PT|S76.219A|ICD10CM|Strain of adductor muscle, fascia and tendon of unspecified thigh, initial encounter|Strain of adductor muscle, fascia and tendon of unspecified thigh, initial encounter +C2859750|T037|AB|S76.219D|ICD10CM|Strain of adductor musc/fasc/tend unsp thigh, subs|Strain of adductor musc/fasc/tend unsp thigh, subs +C2859750|T037|PT|S76.219D|ICD10CM|Strain of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter|Strain of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter +C2859751|T037|AB|S76.219S|ICD10CM|Strain of adductor musc/fasc/tend unsp thigh, sequela|Strain of adductor musc/fasc/tend unsp thigh, sequela +C2859751|T037|PT|S76.219S|ICD10CM|Strain of adductor muscle, fascia and tendon of unspecified thigh, sequela|Strain of adductor muscle, fascia and tendon of unspecified thigh, sequela +C2859752|T037|AB|S76.22|ICD10CM|Laceration of adductor muscle, fascia and tendon of thigh|Laceration of adductor muscle, fascia and tendon of thigh +C2859752|T037|HT|S76.22|ICD10CM|Laceration of adductor muscle, fascia and tendon of thigh|Laceration of adductor muscle, fascia and tendon of thigh +C2859753|T037|AB|S76.221|ICD10CM|Laceration of adductor musc/fasc/tend right thigh|Laceration of adductor musc/fasc/tend right thigh +C2859753|T037|HT|S76.221|ICD10CM|Laceration of adductor muscle, fascia and tendon of right thigh|Laceration of adductor muscle, fascia and tendon of right thigh +C2859754|T037|AB|S76.221A|ICD10CM|Laceration of adductor musc/fasc/tend right thigh, init|Laceration of adductor musc/fasc/tend right thigh, init +C2859754|T037|PT|S76.221A|ICD10CM|Laceration of adductor muscle, fascia and tendon of right thigh, initial encounter|Laceration of adductor muscle, fascia and tendon of right thigh, initial encounter +C2859755|T037|AB|S76.221D|ICD10CM|Laceration of adductor musc/fasc/tend right thigh, subs|Laceration of adductor musc/fasc/tend right thigh, subs +C2859755|T037|PT|S76.221D|ICD10CM|Laceration of adductor muscle, fascia and tendon of right thigh, subsequent encounter|Laceration of adductor muscle, fascia and tendon of right thigh, subsequent encounter +C2859756|T037|AB|S76.221S|ICD10CM|Laceration of adductor musc/fasc/tend right thigh, sequela|Laceration of adductor musc/fasc/tend right thigh, sequela +C2859756|T037|PT|S76.221S|ICD10CM|Laceration of adductor muscle, fascia and tendon of right thigh, sequela|Laceration of adductor muscle, fascia and tendon of right thigh, sequela +C2859757|T037|AB|S76.222|ICD10CM|Laceration of adductor musc/fasc/tend left thigh|Laceration of adductor musc/fasc/tend left thigh +C2859757|T037|HT|S76.222|ICD10CM|Laceration of adductor muscle, fascia and tendon of left thigh|Laceration of adductor muscle, fascia and tendon of left thigh +C2859758|T037|AB|S76.222A|ICD10CM|Laceration of adductor musc/fasc/tend left thigh, init|Laceration of adductor musc/fasc/tend left thigh, init +C2859758|T037|PT|S76.222A|ICD10CM|Laceration of adductor muscle, fascia and tendon of left thigh, initial encounter|Laceration of adductor muscle, fascia and tendon of left thigh, initial encounter +C2859759|T037|AB|S76.222D|ICD10CM|Laceration of adductor musc/fasc/tend left thigh, subs|Laceration of adductor musc/fasc/tend left thigh, subs +C2859759|T037|PT|S76.222D|ICD10CM|Laceration of adductor muscle, fascia and tendon of left thigh, subsequent encounter|Laceration of adductor muscle, fascia and tendon of left thigh, subsequent encounter +C2859760|T037|AB|S76.222S|ICD10CM|Laceration of adductor musc/fasc/tend left thigh, sequela|Laceration of adductor musc/fasc/tend left thigh, sequela +C2859760|T037|PT|S76.222S|ICD10CM|Laceration of adductor muscle, fascia and tendon of left thigh, sequela|Laceration of adductor muscle, fascia and tendon of left thigh, sequela +C2859761|T037|AB|S76.229|ICD10CM|Laceration of adductor musc/fasc/tend unsp thigh|Laceration of adductor musc/fasc/tend unsp thigh +C2859761|T037|HT|S76.229|ICD10CM|Laceration of adductor muscle, fascia and tendon of unspecified thigh|Laceration of adductor muscle, fascia and tendon of unspecified thigh +C2859762|T037|AB|S76.229A|ICD10CM|Laceration of adductor musc/fasc/tend unsp thigh, init|Laceration of adductor musc/fasc/tend unsp thigh, init +C2859762|T037|PT|S76.229A|ICD10CM|Laceration of adductor muscle, fascia and tendon of unspecified thigh, initial encounter|Laceration of adductor muscle, fascia and tendon of unspecified thigh, initial encounter +C2859763|T037|AB|S76.229D|ICD10CM|Laceration of adductor musc/fasc/tend unsp thigh, subs|Laceration of adductor musc/fasc/tend unsp thigh, subs +C2859763|T037|PT|S76.229D|ICD10CM|Laceration of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter|Laceration of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter +C2859764|T037|AB|S76.229S|ICD10CM|Laceration of adductor musc/fasc/tend unsp thigh, sequela|Laceration of adductor musc/fasc/tend unsp thigh, sequela +C2859764|T037|PT|S76.229S|ICD10CM|Laceration of adductor muscle, fascia and tendon of unspecified thigh, sequela|Laceration of adductor muscle, fascia and tendon of unspecified thigh, sequela +C2859765|T037|AB|S76.29|ICD10CM|Other injury of adductor muscle, fascia and tendon of thigh|Other injury of adductor muscle, fascia and tendon of thigh +C2859765|T037|HT|S76.29|ICD10CM|Other injury of adductor muscle, fascia and tendon of thigh|Other injury of adductor muscle, fascia and tendon of thigh +C2859766|T037|AB|S76.291|ICD10CM|Inj adductor muscle, fascia and tendon of right thigh|Inj adductor muscle, fascia and tendon of right thigh +C2859766|T037|HT|S76.291|ICD10CM|Other injury of adductor muscle, fascia and tendon of right thigh|Other injury of adductor muscle, fascia and tendon of right thigh +C2859767|T037|AB|S76.291A|ICD10CM|Inj adductor muscle, fascia and tendon of right thigh, init|Inj adductor muscle, fascia and tendon of right thigh, init +C2859767|T037|PT|S76.291A|ICD10CM|Other injury of adductor muscle, fascia and tendon of right thigh, initial encounter|Other injury of adductor muscle, fascia and tendon of right thigh, initial encounter +C2859768|T037|AB|S76.291D|ICD10CM|Inj adductor muscle, fascia and tendon of right thigh, subs|Inj adductor muscle, fascia and tendon of right thigh, subs +C2859768|T037|PT|S76.291D|ICD10CM|Other injury of adductor muscle, fascia and tendon of right thigh, subsequent encounter|Other injury of adductor muscle, fascia and tendon of right thigh, subsequent encounter +C2859769|T037|AB|S76.291S|ICD10CM|Inj adductor musc/fasc/tend right thigh, sequela|Inj adductor musc/fasc/tend right thigh, sequela +C2859769|T037|PT|S76.291S|ICD10CM|Other injury of adductor muscle, fascia and tendon of right thigh, sequela|Other injury of adductor muscle, fascia and tendon of right thigh, sequela +C2859770|T037|AB|S76.292|ICD10CM|Inj adductor muscle, fascia and tendon of left thigh|Inj adductor muscle, fascia and tendon of left thigh +C2859770|T037|HT|S76.292|ICD10CM|Other injury of adductor muscle, fascia and tendon of left thigh|Other injury of adductor muscle, fascia and tendon of left thigh +C2859771|T037|AB|S76.292A|ICD10CM|Inj adductor muscle, fascia and tendon of left thigh, init|Inj adductor muscle, fascia and tendon of left thigh, init +C2859771|T037|PT|S76.292A|ICD10CM|Other injury of adductor muscle, fascia and tendon of left thigh, initial encounter|Other injury of adductor muscle, fascia and tendon of left thigh, initial encounter +C2859772|T037|AB|S76.292D|ICD10CM|Inj adductor muscle, fascia and tendon of left thigh, subs|Inj adductor muscle, fascia and tendon of left thigh, subs +C2859772|T037|PT|S76.292D|ICD10CM|Other injury of adductor muscle, fascia and tendon of left thigh, subsequent encounter|Other injury of adductor muscle, fascia and tendon of left thigh, subsequent encounter +C2859773|T037|AB|S76.292S|ICD10CM|Inj adductor musc/fasc/tend left thigh, sequela|Inj adductor musc/fasc/tend left thigh, sequela +C2859773|T037|PT|S76.292S|ICD10CM|Other injury of adductor muscle, fascia and tendon of left thigh, sequela|Other injury of adductor muscle, fascia and tendon of left thigh, sequela +C2859774|T037|AB|S76.299|ICD10CM|Inj adductor muscle, fascia and tendon of unsp thigh|Inj adductor muscle, fascia and tendon of unsp thigh +C2859774|T037|HT|S76.299|ICD10CM|Other injury of adductor muscle, fascia and tendon of unspecified thigh|Other injury of adductor muscle, fascia and tendon of unspecified thigh +C2859775|T037|AB|S76.299A|ICD10CM|Inj adductor muscle, fascia and tendon of unsp thigh, init|Inj adductor muscle, fascia and tendon of unsp thigh, init +C2859775|T037|PT|S76.299A|ICD10CM|Other injury of adductor muscle, fascia and tendon of unspecified thigh, initial encounter|Other injury of adductor muscle, fascia and tendon of unspecified thigh, initial encounter +C2859776|T037|AB|S76.299D|ICD10CM|Inj adductor muscle, fascia and tendon of unsp thigh, subs|Inj adductor muscle, fascia and tendon of unsp thigh, subs +C2859776|T037|PT|S76.299D|ICD10CM|Other injury of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter|Other injury of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter +C2859777|T037|AB|S76.299S|ICD10CM|Inj adductor musc/fasc/tend unsp thigh, sequela|Inj adductor musc/fasc/tend unsp thigh, sequela +C2859777|T037|PT|S76.299S|ICD10CM|Other injury of adductor muscle, fascia and tendon of unspecified thigh, sequela|Other injury of adductor muscle, fascia and tendon of unspecified thigh, sequela +C2859778|T037|AB|S76.3|ICD10CM|Injury of msl/fasc/tnd posterior muscle group at thigh level|Injury of msl/fasc/tnd posterior muscle group at thigh level +C0495940|T037|PT|S76.3|ICD10|Injury of muscle and tendon of the posterior muscle group at thigh level|Injury of muscle and tendon of the posterior muscle group at thigh level +C2859778|T037|HT|S76.3|ICD10CM|Injury of muscle, fascia and tendon of the posterior muscle group at thigh level|Injury of muscle, fascia and tendon of the posterior muscle group at thigh level +C2859779|T037|AB|S76.30|ICD10CM|Unsp injury of msl/fasc/tnd posterior grp at thigh level|Unsp injury of msl/fasc/tnd posterior grp at thigh level +C2859779|T037|HT|S76.30|ICD10CM|Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level|Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level +C2859780|T037|AB|S76.301|ICD10CM|Unsp inj msl/fasc/tnd posterior grp at thi lev, right thigh|Unsp inj msl/fasc/tnd posterior grp at thi lev, right thigh +C2859781|T037|AB|S76.301A|ICD10CM|Unsp inj msl/fasc/tnd post grp at thi lev, right thigh, init|Unsp inj msl/fasc/tnd post grp at thi lev, right thigh, init +C2859782|T037|AB|S76.301D|ICD10CM|Unsp inj msl/fasc/tnd post grp at thi lev, right thigh, subs|Unsp inj msl/fasc/tnd post grp at thi lev, right thigh, subs +C2859783|T037|AB|S76.301S|ICD10CM|Unsp inj msl/fasc/tnd post grp at thi lev, right thigh, sqla|Unsp inj msl/fasc/tnd post grp at thi lev, right thigh, sqla +C2859784|T037|AB|S76.302|ICD10CM|Unsp inj msl/fasc/tnd posterior grp at thi lev, left thigh|Unsp inj msl/fasc/tnd posterior grp at thi lev, left thigh +C2859785|T037|AB|S76.302A|ICD10CM|Unsp inj msl/fasc/tnd post grp at thi lev, left thigh, init|Unsp inj msl/fasc/tnd post grp at thi lev, left thigh, init +C2859786|T037|AB|S76.302D|ICD10CM|Unsp inj msl/fasc/tnd post grp at thi lev, left thigh, subs|Unsp inj msl/fasc/tnd post grp at thi lev, left thigh, subs +C2859787|T037|AB|S76.302S|ICD10CM|Unsp inj msl/fasc/tnd post grp at thi lev, left thigh, sqla|Unsp inj msl/fasc/tnd post grp at thi lev, left thigh, sqla +C2859788|T037|AB|S76.309|ICD10CM|Unsp inj msl/fasc/tnd posterior grp at thi lev, unsp thigh|Unsp inj msl/fasc/tnd posterior grp at thi lev, unsp thigh +C2859789|T037|AB|S76.309A|ICD10CM|Unsp inj msl/fasc/tnd post grp at thi lev, unsp thigh, init|Unsp inj msl/fasc/tnd post grp at thi lev, unsp thigh, init +C2859790|T037|AB|S76.309D|ICD10CM|Unsp inj msl/fasc/tnd post grp at thi lev, unsp thigh, subs|Unsp inj msl/fasc/tnd post grp at thi lev, unsp thigh, subs +C2859791|T037|AB|S76.309S|ICD10CM|Unsp inj msl/fasc/tnd post grp at thi lev, unsp thigh, sqla|Unsp inj msl/fasc/tnd post grp at thi lev, unsp thigh, sqla +C2859792|T037|AB|S76.31|ICD10CM|Strain of msl/fasc/tnd posterior muscle group at thigh level|Strain of msl/fasc/tnd posterior muscle group at thigh level +C2859792|T037|HT|S76.31|ICD10CM|Strain of muscle, fascia and tendon of the posterior muscle group at thigh level|Strain of muscle, fascia and tendon of the posterior muscle group at thigh level +C2859793|T037|AB|S76.311|ICD10CM|Strain of msl/fasc/tnd posterior grp at thi lev, right thigh|Strain of msl/fasc/tnd posterior grp at thi lev, right thigh +C2859793|T037|HT|S76.311|ICD10CM|Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh|Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh +C2859794|T037|AB|S76.311A|ICD10CM|Strain msl/fasc/tnd post grp at thi lev, right thigh, init|Strain msl/fasc/tnd post grp at thi lev, right thigh, init +C2859795|T037|AB|S76.311D|ICD10CM|Strain msl/fasc/tnd post grp at thi lev, right thigh, subs|Strain msl/fasc/tnd post grp at thi lev, right thigh, subs +C2859796|T037|AB|S76.311S|ICD10CM|Strain msl/fasc/tnd post grp at thi lev, right thigh, sqla|Strain msl/fasc/tnd post grp at thi lev, right thigh, sqla +C2859797|T037|AB|S76.312|ICD10CM|Strain of msl/fasc/tnd posterior grp at thi lev, left thigh|Strain of msl/fasc/tnd posterior grp at thi lev, left thigh +C2859797|T037|HT|S76.312|ICD10CM|Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh|Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh +C2859798|T037|AB|S76.312A|ICD10CM|Strain of msl/fasc/tnd post grp at thi lev, left thigh, init|Strain of msl/fasc/tnd post grp at thi lev, left thigh, init +C2859799|T037|AB|S76.312D|ICD10CM|Strain of msl/fasc/tnd post grp at thi lev, left thigh, subs|Strain of msl/fasc/tnd post grp at thi lev, left thigh, subs +C2859800|T037|AB|S76.312S|ICD10CM|Strain msl/fasc/tnd post grp at thi lev, left thigh, sequela|Strain msl/fasc/tnd post grp at thi lev, left thigh, sequela +C2859801|T037|AB|S76.319|ICD10CM|Strain of msl/fasc/tnd posterior grp at thi lev, unsp thigh|Strain of msl/fasc/tnd posterior grp at thi lev, unsp thigh +C2859801|T037|HT|S76.319|ICD10CM|Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh|Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh +C2859802|T037|AB|S76.319A|ICD10CM|Strain of msl/fasc/tnd post grp at thi lev, unsp thigh, init|Strain of msl/fasc/tnd post grp at thi lev, unsp thigh, init +C2859803|T037|AB|S76.319D|ICD10CM|Strain of msl/fasc/tnd post grp at thi lev, unsp thigh, subs|Strain of msl/fasc/tnd post grp at thi lev, unsp thigh, subs +C2859804|T037|AB|S76.319S|ICD10CM|Strain msl/fasc/tnd post grp at thi lev, unsp thigh, sequela|Strain msl/fasc/tnd post grp at thi lev, unsp thigh, sequela +C2859805|T037|AB|S76.32|ICD10CM|Lacerat msl/fasc/tnd posterior muscle group at thigh level|Lacerat msl/fasc/tnd posterior muscle group at thigh level +C2859805|T037|HT|S76.32|ICD10CM|Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level|Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level +C2859806|T037|AB|S76.321|ICD10CM|Lacerat msl/fasc/tnd posterior grp at thi lev, right thigh|Lacerat msl/fasc/tnd posterior grp at thi lev, right thigh +C2859806|T037|HT|S76.321|ICD10CM|Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh|Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh +C2859807|T037|AB|S76.321A|ICD10CM|Lacerat msl/fasc/tnd post grp at thi lev, right thigh, init|Lacerat msl/fasc/tnd post grp at thi lev, right thigh, init +C2859808|T037|AB|S76.321D|ICD10CM|Lacerat msl/fasc/tnd post grp at thi lev, right thigh, subs|Lacerat msl/fasc/tnd post grp at thi lev, right thigh, subs +C2859809|T037|AB|S76.321S|ICD10CM|Lacerat msl/fasc/tnd post grp at thi lev, right thigh, sqla|Lacerat msl/fasc/tnd post grp at thi lev, right thigh, sqla +C2859810|T037|AB|S76.322|ICD10CM|Lacerat msl/fasc/tnd posterior grp at thi lev, left thigh|Lacerat msl/fasc/tnd posterior grp at thi lev, left thigh +C2859810|T037|HT|S76.322|ICD10CM|Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh|Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh +C2859811|T037|AB|S76.322A|ICD10CM|Lacerat msl/fasc/tnd post grp at thi lev, left thigh, init|Lacerat msl/fasc/tnd post grp at thi lev, left thigh, init +C2859812|T037|AB|S76.322D|ICD10CM|Lacerat msl/fasc/tnd post grp at thi lev, left thigh, subs|Lacerat msl/fasc/tnd post grp at thi lev, left thigh, subs +C2859813|T037|AB|S76.322S|ICD10CM|Lacerat msl/fasc/tnd post grp at thi lev, left thigh, sqla|Lacerat msl/fasc/tnd post grp at thi lev, left thigh, sqla +C2859814|T037|AB|S76.329|ICD10CM|Lacerat msl/fasc/tnd posterior grp at thi lev, unsp thigh|Lacerat msl/fasc/tnd posterior grp at thi lev, unsp thigh +C2859815|T037|AB|S76.329A|ICD10CM|Lacerat msl/fasc/tnd post grp at thi lev, unsp thigh, init|Lacerat msl/fasc/tnd post grp at thi lev, unsp thigh, init +C2859816|T037|AB|S76.329D|ICD10CM|Lacerat msl/fasc/tnd post grp at thi lev, unsp thigh, subs|Lacerat msl/fasc/tnd post grp at thi lev, unsp thigh, subs +C2859817|T037|AB|S76.329S|ICD10CM|Lacerat msl/fasc/tnd post grp at thi lev, unsp thigh, sqla|Lacerat msl/fasc/tnd post grp at thi lev, unsp thigh, sqla +C2859818|T037|AB|S76.39|ICD10CM|Inj msl/fasc/tnd posterior muscle group at thigh level|Inj msl/fasc/tnd posterior muscle group at thigh level +C2859818|T037|HT|S76.39|ICD10CM|Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level|Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level +C2859819|T037|AB|S76.391|ICD10CM|Inj msl/fasc/tnd posterior grp at thigh level, right thigh|Inj msl/fasc/tnd posterior grp at thigh level, right thigh +C2859820|T037|AB|S76.391A|ICD10CM|Inj msl/fasc/tnd posterior grp at thi lev, right thigh, init|Inj msl/fasc/tnd posterior grp at thi lev, right thigh, init +C2859821|T037|AB|S76.391D|ICD10CM|Inj msl/fasc/tnd posterior grp at thi lev, right thigh, subs|Inj msl/fasc/tnd posterior grp at thi lev, right thigh, subs +C2859822|T037|AB|S76.391S|ICD10CM|Inj msl/fasc/tnd post grp at thi lev, right thigh, sequela|Inj msl/fasc/tnd post grp at thi lev, right thigh, sequela +C2859823|T037|AB|S76.392|ICD10CM|Inj msl/fasc/tnd posterior grp at thigh level, left thigh|Inj msl/fasc/tnd posterior grp at thigh level, left thigh +C2859824|T037|AB|S76.392A|ICD10CM|Inj msl/fasc/tnd posterior grp at thi lev, left thigh, init|Inj msl/fasc/tnd posterior grp at thi lev, left thigh, init +C2859825|T037|AB|S76.392D|ICD10CM|Inj msl/fasc/tnd posterior grp at thi lev, left thigh, subs|Inj msl/fasc/tnd posterior grp at thi lev, left thigh, subs +C2859826|T037|AB|S76.392S|ICD10CM|Inj msl/fasc/tnd post grp at thi lev, left thigh, sequela|Inj msl/fasc/tnd post grp at thi lev, left thigh, sequela +C2859827|T037|AB|S76.399|ICD10CM|Inj msl/fasc/tnd posterior grp at thigh level, unsp thigh|Inj msl/fasc/tnd posterior grp at thigh level, unsp thigh +C2859828|T037|AB|S76.399A|ICD10CM|Inj msl/fasc/tnd posterior grp at thi lev, unsp thigh, init|Inj msl/fasc/tnd posterior grp at thi lev, unsp thigh, init +C2859829|T037|AB|S76.399D|ICD10CM|Inj msl/fasc/tnd posterior grp at thi lev, unsp thigh, subs|Inj msl/fasc/tnd posterior grp at thi lev, unsp thigh, subs +C2859830|T037|AB|S76.399S|ICD10CM|Inj msl/fasc/tnd post grp at thi lev, unsp thigh, sequela|Inj msl/fasc/tnd post grp at thi lev, unsp thigh, sequela +C0478330|T037|PT|S76.4|ICD10|Injury of other and unspecified muscles and tendons at thigh level|Injury of other and unspecified muscles and tendons at thigh level +C0451859|T037|PT|S76.7|ICD10|Injury of multiple muscles and tendons at hip and thigh level|Injury of multiple muscles and tendons at hip and thigh level +C2859831|T037|AB|S76.8|ICD10CM|Injury of oth muscles, fascia and tendons at thigh level|Injury of oth muscles, fascia and tendons at thigh level +C2859831|T037|HT|S76.8|ICD10CM|Injury of other specified muscles, fascia and tendons at thigh level|Injury of other specified muscles, fascia and tendons at thigh level +C2859832|T037|AB|S76.80|ICD10CM|Unsp injury of musc/fasc/tend at thigh level|Unsp injury of musc/fasc/tend at thigh level +C2859832|T037|HT|S76.80|ICD10CM|Unspecified injury of other specified muscles, fascia and tendons at thigh level|Unspecified injury of other specified muscles, fascia and tendons at thigh level +C2859833|T037|AB|S76.801|ICD10CM|Unsp injury of musc/fasc/tend at thigh level, right thigh|Unsp injury of musc/fasc/tend at thigh level, right thigh +C2859833|T037|HT|S76.801|ICD10CM|Unspecified injury of other specified muscles, fascia and tendons at thigh level, right thigh|Unspecified injury of other specified muscles, fascia and tendons at thigh level, right thigh +C2859834|T037|AB|S76.801A|ICD10CM|Unsp injury of musc/fasc/tend at thi lev, right thigh, init|Unsp injury of musc/fasc/tend at thi lev, right thigh, init +C2859835|T037|AB|S76.801D|ICD10CM|Unsp injury of musc/fasc/tend at thi lev, right thigh, subs|Unsp injury of musc/fasc/tend at thi lev, right thigh, subs +C2859836|T037|AB|S76.801S|ICD10CM|Unsp inj musc/fasc/tend at thi lev, right thigh, sequela|Unsp inj musc/fasc/tend at thi lev, right thigh, sequela +C2859837|T037|AB|S76.802|ICD10CM|Unsp injury of musc/fasc/tend at thigh level, left thigh|Unsp injury of musc/fasc/tend at thigh level, left thigh +C2859837|T037|HT|S76.802|ICD10CM|Unspecified injury of other specified muscles, fascia and tendons at thigh level, left thigh|Unspecified injury of other specified muscles, fascia and tendons at thigh level, left thigh +C2859838|T037|AB|S76.802A|ICD10CM|Unsp injury of musc/fasc/tend at thi lev, left thigh, init|Unsp injury of musc/fasc/tend at thi lev, left thigh, init +C2859839|T037|AB|S76.802D|ICD10CM|Unsp injury of musc/fasc/tend at thi lev, left thigh, subs|Unsp injury of musc/fasc/tend at thi lev, left thigh, subs +C2859840|T037|AB|S76.802S|ICD10CM|Unsp inj musc/fasc/tend at thi lev, left thigh, sequela|Unsp inj musc/fasc/tend at thi lev, left thigh, sequela +C2859841|T037|AB|S76.809|ICD10CM|Unsp injury of musc/fasc/tend at thigh level, unsp thigh|Unsp injury of musc/fasc/tend at thigh level, unsp thigh +C2859841|T037|HT|S76.809|ICD10CM|Unspecified injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh|Unspecified injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh +C2859842|T037|AB|S76.809A|ICD10CM|Unsp injury of musc/fasc/tend at thi lev, unsp thigh, init|Unsp injury of musc/fasc/tend at thi lev, unsp thigh, init +C2859843|T037|AB|S76.809D|ICD10CM|Unsp injury of musc/fasc/tend at thi lev, unsp thigh, subs|Unsp injury of musc/fasc/tend at thi lev, unsp thigh, subs +C2859844|T037|AB|S76.809S|ICD10CM|Unsp inj musc/fasc/tend at thi lev, unsp thigh, sequela|Unsp inj musc/fasc/tend at thi lev, unsp thigh, sequela +C2859845|T037|AB|S76.81|ICD10CM|Strain of oth muscles, fascia and tendons at thigh level|Strain of oth muscles, fascia and tendons at thigh level +C2859845|T037|HT|S76.81|ICD10CM|Strain of other specified muscles, fascia and tendons at thigh level|Strain of other specified muscles, fascia and tendons at thigh level +C2859846|T037|AB|S76.811|ICD10CM|Strain of musc/fasc/tend at thigh level, right thigh|Strain of musc/fasc/tend at thigh level, right thigh +C2859846|T037|HT|S76.811|ICD10CM|Strain of other specified muscles, fascia and tendons at thigh level, right thigh|Strain of other specified muscles, fascia and tendons at thigh level, right thigh +C2859847|T037|AB|S76.811A|ICD10CM|Strain of musc/fasc/tend at thigh level, right thigh, init|Strain of musc/fasc/tend at thigh level, right thigh, init +C2859847|T037|PT|S76.811A|ICD10CM|Strain of other specified muscles, fascia and tendons at thigh level, right thigh, initial encounter|Strain of other specified muscles, fascia and tendons at thigh level, right thigh, initial encounter +C2859848|T037|AB|S76.811D|ICD10CM|Strain of musc/fasc/tend at thigh level, right thigh, subs|Strain of musc/fasc/tend at thigh level, right thigh, subs +C2859849|T037|AB|S76.811S|ICD10CM|Strain of musc/fasc/tend at thi lev, right thigh, sequela|Strain of musc/fasc/tend at thi lev, right thigh, sequela +C2859849|T037|PT|S76.811S|ICD10CM|Strain of other specified muscles, fascia and tendons at thigh level, right thigh, sequela|Strain of other specified muscles, fascia and tendons at thigh level, right thigh, sequela +C2859850|T037|AB|S76.812|ICD10CM|Strain of musc/fasc/tend at thigh level, left thigh|Strain of musc/fasc/tend at thigh level, left thigh +C2859850|T037|HT|S76.812|ICD10CM|Strain of other specified muscles, fascia and tendons at thigh level, left thigh|Strain of other specified muscles, fascia and tendons at thigh level, left thigh +C2859851|T037|AB|S76.812A|ICD10CM|Strain of musc/fasc/tend at thigh level, left thigh, init|Strain of musc/fasc/tend at thigh level, left thigh, init +C2859851|T037|PT|S76.812A|ICD10CM|Strain of other specified muscles, fascia and tendons at thigh level, left thigh, initial encounter|Strain of other specified muscles, fascia and tendons at thigh level, left thigh, initial encounter +C2859852|T037|AB|S76.812D|ICD10CM|Strain of musc/fasc/tend at thigh level, left thigh, subs|Strain of musc/fasc/tend at thigh level, left thigh, subs +C2859853|T037|AB|S76.812S|ICD10CM|Strain of musc/fasc/tend at thigh level, left thigh, sequela|Strain of musc/fasc/tend at thigh level, left thigh, sequela +C2859853|T037|PT|S76.812S|ICD10CM|Strain of other specified muscles, fascia and tendons at thigh level, left thigh, sequela|Strain of other specified muscles, fascia and tendons at thigh level, left thigh, sequela +C2859854|T037|AB|S76.819|ICD10CM|Strain of musc/fasc/tend at thigh level, unsp thigh|Strain of musc/fasc/tend at thigh level, unsp thigh +C2859854|T037|HT|S76.819|ICD10CM|Strain of other specified muscles, fascia and tendons at thigh level, unspecified thigh|Strain of other specified muscles, fascia and tendons at thigh level, unspecified thigh +C2859855|T037|AB|S76.819A|ICD10CM|Strain of musc/fasc/tend at thigh level, unsp thigh, init|Strain of musc/fasc/tend at thigh level, unsp thigh, init +C2859856|T037|AB|S76.819D|ICD10CM|Strain of musc/fasc/tend at thigh level, unsp thigh, subs|Strain of musc/fasc/tend at thigh level, unsp thigh, subs +C2859857|T037|AB|S76.819S|ICD10CM|Strain of musc/fasc/tend at thigh level, unsp thigh, sequela|Strain of musc/fasc/tend at thigh level, unsp thigh, sequela +C2859857|T037|PT|S76.819S|ICD10CM|Strain of other specified muscles, fascia and tendons at thigh level, unspecified thigh, sequela|Strain of other specified muscles, fascia and tendons at thigh level, unspecified thigh, sequela +C2859858|T037|AB|S76.82|ICD10CM|Laceration of oth muscles, fascia and tendons at thigh level|Laceration of oth muscles, fascia and tendons at thigh level +C2859858|T037|HT|S76.82|ICD10CM|Laceration of other specified muscles, fascia and tendons at thigh level|Laceration of other specified muscles, fascia and tendons at thigh level +C2859859|T037|AB|S76.821|ICD10CM|Laceration of musc/fasc/tend at thigh level, right thigh|Laceration of musc/fasc/tend at thigh level, right thigh +C2859859|T037|HT|S76.821|ICD10CM|Laceration of other specified muscles, fascia and tendons at thigh level, right thigh|Laceration of other specified muscles, fascia and tendons at thigh level, right thigh +C2859860|T037|AB|S76.821A|ICD10CM|Lacerat musc/fasc/tend at thigh level, right thigh, init|Lacerat musc/fasc/tend at thigh level, right thigh, init +C2859861|T037|AB|S76.821D|ICD10CM|Lacerat musc/fasc/tend at thigh level, right thigh, subs|Lacerat musc/fasc/tend at thigh level, right thigh, subs +C2859862|T037|AB|S76.821S|ICD10CM|Lacerat musc/fasc/tend at thigh level, right thigh, sequela|Lacerat musc/fasc/tend at thigh level, right thigh, sequela +C2859862|T037|PT|S76.821S|ICD10CM|Laceration of other specified muscles, fascia and tendons at thigh level, right thigh, sequela|Laceration of other specified muscles, fascia and tendons at thigh level, right thigh, sequela +C2859863|T037|AB|S76.822|ICD10CM|Laceration of musc/fasc/tend at thigh level, left thigh|Laceration of musc/fasc/tend at thigh level, left thigh +C2859863|T037|HT|S76.822|ICD10CM|Laceration of other specified muscles, fascia and tendons at thigh level, left thigh|Laceration of other specified muscles, fascia and tendons at thigh level, left thigh +C2859864|T037|AB|S76.822A|ICD10CM|Lacerat musc/fasc/tend at thigh level, left thigh, init|Lacerat musc/fasc/tend at thigh level, left thigh, init +C2859865|T037|AB|S76.822D|ICD10CM|Lacerat musc/fasc/tend at thigh level, left thigh, subs|Lacerat musc/fasc/tend at thigh level, left thigh, subs +C2859866|T037|AB|S76.822S|ICD10CM|Lacerat musc/fasc/tend at thigh level, left thigh, sequela|Lacerat musc/fasc/tend at thigh level, left thigh, sequela +C2859866|T037|PT|S76.822S|ICD10CM|Laceration of other specified muscles, fascia and tendons at thigh level, left thigh, sequela|Laceration of other specified muscles, fascia and tendons at thigh level, left thigh, sequela +C2859867|T037|AB|S76.829|ICD10CM|Laceration of musc/fasc/tend at thigh level, unsp thigh|Laceration of musc/fasc/tend at thigh level, unsp thigh +C2859867|T037|HT|S76.829|ICD10CM|Laceration of other specified muscles, fascia and tendons at thigh level, unspecified thigh|Laceration of other specified muscles, fascia and tendons at thigh level, unspecified thigh +C2859868|T037|AB|S76.829A|ICD10CM|Lacerat musc/fasc/tend at thigh level, unsp thigh, init|Lacerat musc/fasc/tend at thigh level, unsp thigh, init +C2859869|T037|AB|S76.829D|ICD10CM|Lacerat musc/fasc/tend at thigh level, unsp thigh, subs|Lacerat musc/fasc/tend at thigh level, unsp thigh, subs +C2859870|T037|AB|S76.829S|ICD10CM|Lacerat musc/fasc/tend at thigh level, unsp thigh, sequela|Lacerat musc/fasc/tend at thigh level, unsp thigh, sequela +C2859870|T037|PT|S76.829S|ICD10CM|Laceration of other specified muscles, fascia and tendons at thigh level, unspecified thigh, sequela|Laceration of other specified muscles, fascia and tendons at thigh level, unspecified thigh, sequela +C2859871|T037|AB|S76.89|ICD10CM|Oth injury of oth muscles, fascia and tendons at thigh level|Oth injury of oth muscles, fascia and tendons at thigh level +C2859871|T037|HT|S76.89|ICD10CM|Other injury of other specified muscles, fascia and tendons at thigh level|Other injury of other specified muscles, fascia and tendons at thigh level +C2859872|T037|AB|S76.891|ICD10CM|Oth injury of musc/fasc/tend at thigh level, right thigh|Oth injury of musc/fasc/tend at thigh level, right thigh +C2859872|T037|HT|S76.891|ICD10CM|Other injury of other specified muscles, fascia and tendons at thigh level, right thigh|Other injury of other specified muscles, fascia and tendons at thigh level, right thigh +C2859873|T037|AB|S76.891A|ICD10CM|Inj musc/fasc/tend at thigh level, right thigh, init encntr|Inj musc/fasc/tend at thigh level, right thigh, init encntr +C2859874|T037|AB|S76.891D|ICD10CM|Inj musc/fasc/tend at thigh level, right thigh, subs encntr|Inj musc/fasc/tend at thigh level, right thigh, subs encntr +C2859875|T037|AB|S76.891S|ICD10CM|Inj musc/fasc/tend at thigh level, right thigh, sequela|Inj musc/fasc/tend at thigh level, right thigh, sequela +C2859875|T037|PT|S76.891S|ICD10CM|Other injury of other specified muscles, fascia and tendons at thigh level, right thigh, sequela|Other injury of other specified muscles, fascia and tendons at thigh level, right thigh, sequela +C2859876|T037|AB|S76.892|ICD10CM|Oth injury of musc/fasc/tend at thigh level, left thigh|Oth injury of musc/fasc/tend at thigh level, left thigh +C2859876|T037|HT|S76.892|ICD10CM|Other injury of other specified muscles, fascia and tendons at thigh level, left thigh|Other injury of other specified muscles, fascia and tendons at thigh level, left thigh +C2859877|T037|AB|S76.892A|ICD10CM|Inj musc/fasc/tend at thigh level, left thigh, init encntr|Inj musc/fasc/tend at thigh level, left thigh, init encntr +C2859878|T037|AB|S76.892D|ICD10CM|Inj musc/fasc/tend at thigh level, left thigh, subs encntr|Inj musc/fasc/tend at thigh level, left thigh, subs encntr +C2859879|T037|AB|S76.892S|ICD10CM|Inj musc/fasc/tend at thigh level, left thigh, sequela|Inj musc/fasc/tend at thigh level, left thigh, sequela +C2859879|T037|PT|S76.892S|ICD10CM|Other injury of other specified muscles, fascia and tendons at thigh level, left thigh, sequela|Other injury of other specified muscles, fascia and tendons at thigh level, left thigh, sequela +C2859880|T037|AB|S76.899|ICD10CM|Oth injury of musc/fasc/tend at thigh level, unsp thigh|Oth injury of musc/fasc/tend at thigh level, unsp thigh +C2859880|T037|HT|S76.899|ICD10CM|Other injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh|Other injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh +C2859881|T037|AB|S76.899A|ICD10CM|Inj musc/fasc/tend at thigh level, unsp thigh, init encntr|Inj musc/fasc/tend at thigh level, unsp thigh, init encntr +C2859882|T037|AB|S76.899D|ICD10CM|Inj musc/fasc/tend at thigh level, unsp thigh, subs encntr|Inj musc/fasc/tend at thigh level, unsp thigh, subs encntr +C2859883|T037|AB|S76.899S|ICD10CM|Inj musc/fasc/tend at thigh level, unsp thigh, sequela|Inj musc/fasc/tend at thigh level, unsp thigh, sequela +C2859884|T037|AB|S76.9|ICD10CM|Injury of unsp muscles, fascia and tendons at thigh level|Injury of unsp muscles, fascia and tendons at thigh level +C2859884|T037|HT|S76.9|ICD10CM|Injury of unspecified muscles, fascia and tendons at thigh level|Injury of unspecified muscles, fascia and tendons at thigh level +C2859885|T037|AB|S76.90|ICD10CM|Unsp injury of unsp musc/fasc/tend at thigh level|Unsp injury of unsp musc/fasc/tend at thigh level +C2859885|T037|HT|S76.90|ICD10CM|Unspecified injury of unspecified muscles, fascia and tendons at thigh level|Unspecified injury of unspecified muscles, fascia and tendons at thigh level +C2859886|T037|AB|S76.901|ICD10CM|Unsp injury of unsp musc/fasc/tend at thi lev, right thigh|Unsp injury of unsp musc/fasc/tend at thi lev, right thigh +C2859886|T037|HT|S76.901|ICD10CM|Unspecified injury of unspecified muscles, fascia and tendons at thigh level, right thigh|Unspecified injury of unspecified muscles, fascia and tendons at thigh level, right thigh +C2859887|T037|AB|S76.901A|ICD10CM|Unsp inj unsp musc/fasc/tend at thi lev, right thigh, init|Unsp inj unsp musc/fasc/tend at thi lev, right thigh, init +C2859888|T037|AB|S76.901D|ICD10CM|Unsp inj unsp musc/fasc/tend at thi lev, right thigh, subs|Unsp inj unsp musc/fasc/tend at thi lev, right thigh, subs +C2859889|T037|AB|S76.901S|ICD10CM|Unsp inj unsp musc/fasc/tend at thi lev, right thigh, sqla|Unsp inj unsp musc/fasc/tend at thi lev, right thigh, sqla +C2859889|T037|PT|S76.901S|ICD10CM|Unspecified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, sequela|Unspecified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, sequela +C2859890|T037|AB|S76.902|ICD10CM|Unsp injury of unsp musc/fasc/tend at thi lev, left thigh|Unsp injury of unsp musc/fasc/tend at thi lev, left thigh +C2859890|T037|HT|S76.902|ICD10CM|Unspecified injury of unspecified muscles, fascia and tendons at thigh level, left thigh|Unspecified injury of unspecified muscles, fascia and tendons at thigh level, left thigh +C2859891|T037|AB|S76.902A|ICD10CM|Unsp inj unsp musc/fasc/tend at thi lev, left thigh, init|Unsp inj unsp musc/fasc/tend at thi lev, left thigh, init +C2859892|T037|AB|S76.902D|ICD10CM|Unsp inj unsp musc/fasc/tend at thi lev, left thigh, subs|Unsp inj unsp musc/fasc/tend at thi lev, left thigh, subs +C2859893|T037|AB|S76.902S|ICD10CM|Unsp inj unsp musc/fasc/tend at thi lev, left thigh, sequela|Unsp inj unsp musc/fasc/tend at thi lev, left thigh, sequela +C2859893|T037|PT|S76.902S|ICD10CM|Unspecified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, sequela|Unspecified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, sequela +C2859894|T037|AB|S76.909|ICD10CM|Unsp injury of unsp musc/fasc/tend at thi lev, unsp thigh|Unsp injury of unsp musc/fasc/tend at thi lev, unsp thigh +C2859894|T037|HT|S76.909|ICD10CM|Unspecified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh|Unspecified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh +C2859895|T037|AB|S76.909A|ICD10CM|Unsp inj unsp musc/fasc/tend at thi lev, unsp thigh, init|Unsp inj unsp musc/fasc/tend at thi lev, unsp thigh, init +C2859896|T037|AB|S76.909D|ICD10CM|Unsp inj unsp musc/fasc/tend at thi lev, unsp thigh, subs|Unsp inj unsp musc/fasc/tend at thi lev, unsp thigh, subs +C2859897|T037|AB|S76.909S|ICD10CM|Unsp inj unsp musc/fasc/tend at thi lev, unsp thigh, sequela|Unsp inj unsp musc/fasc/tend at thi lev, unsp thigh, sequela +C2859898|T037|AB|S76.91|ICD10CM|Strain of unsp muscles, fascia and tendons at thigh level|Strain of unsp muscles, fascia and tendons at thigh level +C2859898|T037|HT|S76.91|ICD10CM|Strain of unspecified muscles, fascia and tendons at thigh level|Strain of unspecified muscles, fascia and tendons at thigh level +C2859899|T037|AB|S76.911|ICD10CM|Strain of unsp musc/fasc/tend at thigh level, right thigh|Strain of unsp musc/fasc/tend at thigh level, right thigh +C2859899|T037|HT|S76.911|ICD10CM|Strain of unspecified muscles, fascia and tendons at thigh level, right thigh|Strain of unspecified muscles, fascia and tendons at thigh level, right thigh +C2859900|T037|AB|S76.911A|ICD10CM|Strain of unsp musc/fasc/tend at thi lev, right thigh, init|Strain of unsp musc/fasc/tend at thi lev, right thigh, init +C2859900|T037|PT|S76.911A|ICD10CM|Strain of unspecified muscles, fascia and tendons at thigh level, right thigh, initial encounter|Strain of unspecified muscles, fascia and tendons at thigh level, right thigh, initial encounter +C2859901|T037|AB|S76.911D|ICD10CM|Strain of unsp musc/fasc/tend at thi lev, right thigh, subs|Strain of unsp musc/fasc/tend at thi lev, right thigh, subs +C2859901|T037|PT|S76.911D|ICD10CM|Strain of unspecified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter|Strain of unspecified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter +C2859902|T037|PT|S76.911S|ICD10CM|Strain of unspecified muscles, fascia and tendons at thigh level, right thigh, sequela|Strain of unspecified muscles, fascia and tendons at thigh level, right thigh, sequela +C2859902|T037|AB|S76.911S|ICD10CM|Strain unsp musc/fasc/tend at thi lev, right thigh, sequela|Strain unsp musc/fasc/tend at thi lev, right thigh, sequela +C2859903|T037|AB|S76.912|ICD10CM|Strain of unsp musc/fasc/tend at thigh level, left thigh|Strain of unsp musc/fasc/tend at thigh level, left thigh +C2859903|T037|HT|S76.912|ICD10CM|Strain of unspecified muscles, fascia and tendons at thigh level, left thigh|Strain of unspecified muscles, fascia and tendons at thigh level, left thigh +C2859904|T037|AB|S76.912A|ICD10CM|Strain of unsp musc/fasc/tend at thi lev, left thigh, init|Strain of unsp musc/fasc/tend at thi lev, left thigh, init +C2859904|T037|PT|S76.912A|ICD10CM|Strain of unspecified muscles, fascia and tendons at thigh level, left thigh, initial encounter|Strain of unspecified muscles, fascia and tendons at thigh level, left thigh, initial encounter +C2859905|T037|AB|S76.912D|ICD10CM|Strain of unsp musc/fasc/tend at thi lev, left thigh, subs|Strain of unsp musc/fasc/tend at thi lev, left thigh, subs +C2859905|T037|PT|S76.912D|ICD10CM|Strain of unspecified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter|Strain of unspecified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter +C2859906|T037|PT|S76.912S|ICD10CM|Strain of unspecified muscles, fascia and tendons at thigh level, left thigh, sequela|Strain of unspecified muscles, fascia and tendons at thigh level, left thigh, sequela +C2859906|T037|AB|S76.912S|ICD10CM|Strain unsp musc/fasc/tend at thi lev, left thigh, sequela|Strain unsp musc/fasc/tend at thi lev, left thigh, sequela +C2859907|T037|AB|S76.919|ICD10CM|Strain of unsp musc/fasc/tend at thigh level, unsp thigh|Strain of unsp musc/fasc/tend at thigh level, unsp thigh +C2859907|T037|HT|S76.919|ICD10CM|Strain of unspecified muscles, fascia and tendons at thigh level, unspecified thigh|Strain of unspecified muscles, fascia and tendons at thigh level, unspecified thigh +C2859908|T037|AB|S76.919A|ICD10CM|Strain of unsp musc/fasc/tend at thi lev, unsp thigh, init|Strain of unsp musc/fasc/tend at thi lev, unsp thigh, init +C2859909|T037|AB|S76.919D|ICD10CM|Strain of unsp musc/fasc/tend at thi lev, unsp thigh, subs|Strain of unsp musc/fasc/tend at thi lev, unsp thigh, subs +C2859910|T037|PT|S76.919S|ICD10CM|Strain of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, sequela|Strain of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, sequela +C2859910|T037|AB|S76.919S|ICD10CM|Strain unsp musc/fasc/tend at thi lev, unsp thigh, sequela|Strain unsp musc/fasc/tend at thi lev, unsp thigh, sequela +C2859911|T037|AB|S76.92|ICD10CM|Laceration of unsp musc/fasc/tend at thigh level|Laceration of unsp musc/fasc/tend at thigh level +C2859911|T037|HT|S76.92|ICD10CM|Laceration of unspecified muscles, fascia and tendons at thigh level|Laceration of unspecified muscles, fascia and tendons at thigh level +C2859912|T037|AB|S76.921|ICD10CM|Lacerat unsp musc/fasc/tend at thigh level, right thigh|Lacerat unsp musc/fasc/tend at thigh level, right thigh +C2859912|T037|HT|S76.921|ICD10CM|Laceration of unspecified muscles, fascia and tendons at thigh level, right thigh|Laceration of unspecified muscles, fascia and tendons at thigh level, right thigh +C2859913|T037|AB|S76.921A|ICD10CM|Lacerat unsp musc/fasc/tend at thi lev, right thigh, init|Lacerat unsp musc/fasc/tend at thi lev, right thigh, init +C2859913|T037|PT|S76.921A|ICD10CM|Laceration of unspecified muscles, fascia and tendons at thigh level, right thigh, initial encounter|Laceration of unspecified muscles, fascia and tendons at thigh level, right thigh, initial encounter +C2859914|T037|AB|S76.921D|ICD10CM|Lacerat unsp musc/fasc/tend at thi lev, right thigh, subs|Lacerat unsp musc/fasc/tend at thi lev, right thigh, subs +C2859915|T037|AB|S76.921S|ICD10CM|Lacerat unsp musc/fasc/tend at thi lev, right thigh, sequela|Lacerat unsp musc/fasc/tend at thi lev, right thigh, sequela +C2859915|T037|PT|S76.921S|ICD10CM|Laceration of unspecified muscles, fascia and tendons at thigh level, right thigh, sequela|Laceration of unspecified muscles, fascia and tendons at thigh level, right thigh, sequela +C2859916|T037|AB|S76.922|ICD10CM|Laceration of unsp musc/fasc/tend at thigh level, left thigh|Laceration of unsp musc/fasc/tend at thigh level, left thigh +C2859916|T037|HT|S76.922|ICD10CM|Laceration of unspecified muscles, fascia and tendons at thigh level, left thigh|Laceration of unspecified muscles, fascia and tendons at thigh level, left thigh +C2859917|T037|AB|S76.922A|ICD10CM|Lacerat unsp musc/fasc/tend at thigh level, left thigh, init|Lacerat unsp musc/fasc/tend at thigh level, left thigh, init +C2859917|T037|PT|S76.922A|ICD10CM|Laceration of unspecified muscles, fascia and tendons at thigh level, left thigh, initial encounter|Laceration of unspecified muscles, fascia and tendons at thigh level, left thigh, initial encounter +C2859918|T037|AB|S76.922D|ICD10CM|Lacerat unsp musc/fasc/tend at thigh level, left thigh, subs|Lacerat unsp musc/fasc/tend at thigh level, left thigh, subs +C2859919|T037|AB|S76.922S|ICD10CM|Lacerat unsp musc/fasc/tend at thi lev, left thigh, sequela|Lacerat unsp musc/fasc/tend at thi lev, left thigh, sequela +C2859919|T037|PT|S76.922S|ICD10CM|Laceration of unspecified muscles, fascia and tendons at thigh level, left thigh, sequela|Laceration of unspecified muscles, fascia and tendons at thigh level, left thigh, sequela +C2859920|T037|AB|S76.929|ICD10CM|Laceration of unsp musc/fasc/tend at thigh level, unsp thigh|Laceration of unsp musc/fasc/tend at thigh level, unsp thigh +C2859920|T037|HT|S76.929|ICD10CM|Laceration of unspecified muscles, fascia and tendons at thigh level, unspecified thigh|Laceration of unspecified muscles, fascia and tendons at thigh level, unspecified thigh +C2859921|T037|AB|S76.929A|ICD10CM|Lacerat unsp musc/fasc/tend at thigh level, unsp thigh, init|Lacerat unsp musc/fasc/tend at thigh level, unsp thigh, init +C2859922|T037|AB|S76.929D|ICD10CM|Lacerat unsp musc/fasc/tend at thigh level, unsp thigh, subs|Lacerat unsp musc/fasc/tend at thigh level, unsp thigh, subs +C2859923|T037|AB|S76.929S|ICD10CM|Lacerat unsp musc/fasc/tend at thi lev, unsp thigh, sequela|Lacerat unsp musc/fasc/tend at thi lev, unsp thigh, sequela +C2859923|T037|PT|S76.929S|ICD10CM|Laceration of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, sequela|Laceration of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, sequela +C2859924|T037|AB|S76.99|ICD10CM|Inj unsp muscles, fascia and tendons at thigh level|Inj unsp muscles, fascia and tendons at thigh level +C2859924|T037|HT|S76.99|ICD10CM|Other specified injury of unspecified muscles, fascia and tendons at thigh level|Other specified injury of unspecified muscles, fascia and tendons at thigh level +C2859925|T037|AB|S76.991|ICD10CM|Inj unsp musc/fasc/tend at thigh level, right thigh|Inj unsp musc/fasc/tend at thigh level, right thigh +C2859925|T037|HT|S76.991|ICD10CM|Other specified injury of unspecified muscles, fascia and tendons at thigh level, right thigh|Other specified injury of unspecified muscles, fascia and tendons at thigh level, right thigh +C2859926|T037|AB|S76.991A|ICD10CM|Inj unsp musc/fasc/tend at thigh level, right thigh, init|Inj unsp musc/fasc/tend at thigh level, right thigh, init +C2859927|T037|AB|S76.991D|ICD10CM|Inj unsp musc/fasc/tend at thigh level, right thigh, subs|Inj unsp musc/fasc/tend at thigh level, right thigh, subs +C2859928|T037|AB|S76.991S|ICD10CM|Inj unsp musc/fasc/tend at thigh level, right thigh, sequela|Inj unsp musc/fasc/tend at thigh level, right thigh, sequela +C2859929|T037|AB|S76.992|ICD10CM|Inj unsp musc/fasc/tend at thigh level, left thigh|Inj unsp musc/fasc/tend at thigh level, left thigh +C2859929|T037|HT|S76.992|ICD10CM|Other specified injury of unspecified muscles, fascia and tendons at thigh level, left thigh|Other specified injury of unspecified muscles, fascia and tendons at thigh level, left thigh +C2859930|T037|AB|S76.992A|ICD10CM|Inj unsp musc/fasc/tend at thigh level, left thigh, init|Inj unsp musc/fasc/tend at thigh level, left thigh, init +C2859931|T037|AB|S76.992D|ICD10CM|Inj unsp musc/fasc/tend at thigh level, left thigh, subs|Inj unsp musc/fasc/tend at thigh level, left thigh, subs +C2859932|T037|AB|S76.992S|ICD10CM|Inj unsp musc/fasc/tend at thigh level, left thigh, sequela|Inj unsp musc/fasc/tend at thigh level, left thigh, sequela +C2859933|T037|AB|S76.999|ICD10CM|Inj unsp musc/fasc/tend at thigh level, unsp thigh|Inj unsp musc/fasc/tend at thigh level, unsp thigh +C2859933|T037|HT|S76.999|ICD10CM|Other specified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh|Other specified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh +C2859934|T037|AB|S76.999A|ICD10CM|Inj unsp musc/fasc/tend at thigh level, unsp thigh, init|Inj unsp musc/fasc/tend at thigh level, unsp thigh, init +C2859935|T037|AB|S76.999D|ICD10CM|Inj unsp musc/fasc/tend at thigh level, unsp thigh, subs|Inj unsp musc/fasc/tend at thigh level, unsp thigh, subs +C2859936|T037|AB|S76.999S|ICD10CM|Inj unsp musc/fasc/tend at thigh level, unsp thigh, sequela|Inj unsp musc/fasc/tend at thigh level, unsp thigh, sequela +C0160986|T037|HT|S77|ICD10|Crushing injury of hip and thigh|Crushing injury of hip and thigh +C0160986|T037|HT|S77|ICD10CM|Crushing injury of hip and thigh|Crushing injury of hip and thigh +C0160986|T037|AB|S77|ICD10CM|Crushing injury of hip and thigh|Crushing injury of hip and thigh +C0160988|T037|HT|S77.0|ICD10CM|Crushing injury of hip|Crushing injury of hip +C0160988|T037|AB|S77.0|ICD10CM|Crushing injury of hip|Crushing injury of hip +C0160988|T037|PT|S77.0|ICD10|Crushing injury of hip|Crushing injury of hip +C2859937|T037|AB|S77.00|ICD10CM|Crushing injury of unspecified hip|Crushing injury of unspecified hip +C2859937|T037|HT|S77.00|ICD10CM|Crushing injury of unspecified hip|Crushing injury of unspecified hip +C2976775|T037|PT|S77.00XA|ICD10CM|Crushing injury of unspecified hip, initial encounter|Crushing injury of unspecified hip, initial encounter +C2976775|T037|AB|S77.00XA|ICD10CM|Crushing injury of unspecified hip, initial encounter|Crushing injury of unspecified hip, initial encounter +C2976776|T037|PT|S77.00XD|ICD10CM|Crushing injury of unspecified hip, subsequent encounter|Crushing injury of unspecified hip, subsequent encounter +C2976776|T037|AB|S77.00XD|ICD10CM|Crushing injury of unspecified hip, subsequent encounter|Crushing injury of unspecified hip, subsequent encounter +C2976777|T037|PT|S77.00XS|ICD10CM|Crushing injury of unspecified hip, sequela|Crushing injury of unspecified hip, sequela +C2976777|T037|AB|S77.00XS|ICD10CM|Crushing injury of unspecified hip, sequela|Crushing injury of unspecified hip, sequela +C2138550|T037|HT|S77.01|ICD10CM|Crushing injury of right hip|Crushing injury of right hip +C2138550|T037|AB|S77.01|ICD10CM|Crushing injury of right hip|Crushing injury of right hip +C2859941|T037|PT|S77.01XA|ICD10CM|Crushing injury of right hip, initial encounter|Crushing injury of right hip, initial encounter +C2859941|T037|AB|S77.01XA|ICD10CM|Crushing injury of right hip, initial encounter|Crushing injury of right hip, initial encounter +C2859942|T037|PT|S77.01XD|ICD10CM|Crushing injury of right hip, subsequent encounter|Crushing injury of right hip, subsequent encounter +C2859942|T037|AB|S77.01XD|ICD10CM|Crushing injury of right hip, subsequent encounter|Crushing injury of right hip, subsequent encounter +C2859943|T037|PT|S77.01XS|ICD10CM|Crushing injury of right hip, sequela|Crushing injury of right hip, sequela +C2859943|T037|AB|S77.01XS|ICD10CM|Crushing injury of right hip, sequela|Crushing injury of right hip, sequela +C2138528|T037|HT|S77.02|ICD10CM|Crushing injury of left hip|Crushing injury of left hip +C2138528|T037|AB|S77.02|ICD10CM|Crushing injury of left hip|Crushing injury of left hip +C2859944|T037|PT|S77.02XA|ICD10CM|Crushing injury of left hip, initial encounter|Crushing injury of left hip, initial encounter +C2859944|T037|AB|S77.02XA|ICD10CM|Crushing injury of left hip, initial encounter|Crushing injury of left hip, initial encounter +C2859945|T037|PT|S77.02XD|ICD10CM|Crushing injury of left hip, subsequent encounter|Crushing injury of left hip, subsequent encounter +C2859945|T037|AB|S77.02XD|ICD10CM|Crushing injury of left hip, subsequent encounter|Crushing injury of left hip, subsequent encounter +C2859946|T037|PT|S77.02XS|ICD10CM|Crushing injury of left hip, sequela|Crushing injury of left hip, sequela +C2859946|T037|AB|S77.02XS|ICD10CM|Crushing injury of left hip, sequela|Crushing injury of left hip, sequela +C0160987|T037|PT|S77.1|ICD10|Crushing injury of thigh|Crushing injury of thigh +C0160987|T037|HT|S77.1|ICD10CM|Crushing injury of thigh|Crushing injury of thigh +C0160987|T037|AB|S77.1|ICD10CM|Crushing injury of thigh|Crushing injury of thigh +C2859947|T037|AB|S77.10|ICD10CM|Crushing injury of unspecified thigh|Crushing injury of unspecified thigh +C2859947|T037|HT|S77.10|ICD10CM|Crushing injury of unspecified thigh|Crushing injury of unspecified thigh +C2976778|T037|PT|S77.10XA|ICD10CM|Crushing injury of unspecified thigh, initial encounter|Crushing injury of unspecified thigh, initial encounter +C2976778|T037|AB|S77.10XA|ICD10CM|Crushing injury of unspecified thigh, initial encounter|Crushing injury of unspecified thigh, initial encounter +C2976779|T037|PT|S77.10XD|ICD10CM|Crushing injury of unspecified thigh, subsequent encounter|Crushing injury of unspecified thigh, subsequent encounter +C2976779|T037|AB|S77.10XD|ICD10CM|Crushing injury of unspecified thigh, subsequent encounter|Crushing injury of unspecified thigh, subsequent encounter +C2976780|T037|PT|S77.10XS|ICD10CM|Crushing injury of unspecified thigh, sequela|Crushing injury of unspecified thigh, sequela +C2976780|T037|AB|S77.10XS|ICD10CM|Crushing injury of unspecified thigh, sequela|Crushing injury of unspecified thigh, sequela +C2138555|T037|HT|S77.11|ICD10CM|Crushing injury of right thigh|Crushing injury of right thigh +C2138555|T037|AB|S77.11|ICD10CM|Crushing injury of right thigh|Crushing injury of right thigh +C2859951|T037|PT|S77.11XA|ICD10CM|Crushing injury of right thigh, initial encounter|Crushing injury of right thigh, initial encounter +C2859951|T037|AB|S77.11XA|ICD10CM|Crushing injury of right thigh, initial encounter|Crushing injury of right thigh, initial encounter +C2859952|T037|PT|S77.11XD|ICD10CM|Crushing injury of right thigh, subsequent encounter|Crushing injury of right thigh, subsequent encounter +C2859952|T037|AB|S77.11XD|ICD10CM|Crushing injury of right thigh, subsequent encounter|Crushing injury of right thigh, subsequent encounter +C2859953|T037|PT|S77.11XS|ICD10CM|Crushing injury of right thigh, sequela|Crushing injury of right thigh, sequela +C2859953|T037|AB|S77.11XS|ICD10CM|Crushing injury of right thigh, sequela|Crushing injury of right thigh, sequela +C2138533|T037|HT|S77.12|ICD10CM|Crushing injury of left thigh|Crushing injury of left thigh +C2138533|T037|AB|S77.12|ICD10CM|Crushing injury of left thigh|Crushing injury of left thigh +C2859954|T037|PT|S77.12XA|ICD10CM|Crushing injury of left thigh, initial encounter|Crushing injury of left thigh, initial encounter +C2859954|T037|AB|S77.12XA|ICD10CM|Crushing injury of left thigh, initial encounter|Crushing injury of left thigh, initial encounter +C2859955|T037|PT|S77.12XD|ICD10CM|Crushing injury of left thigh, subsequent encounter|Crushing injury of left thigh, subsequent encounter +C2859955|T037|AB|S77.12XD|ICD10CM|Crushing injury of left thigh, subsequent encounter|Crushing injury of left thigh, subsequent encounter +C2859956|T037|PT|S77.12XS|ICD10CM|Crushing injury of left thigh, sequela|Crushing injury of left thigh, sequela +C2859956|T037|AB|S77.12XS|ICD10CM|Crushing injury of left thigh, sequela|Crushing injury of left thigh, sequela +C0160986|T037|HT|S77.2|ICD10CM|Crushing injury of hip with thigh|Crushing injury of hip with thigh +C0160986|T037|AB|S77.2|ICD10CM|Crushing injury of hip with thigh|Crushing injury of hip with thigh +C0160986|T037|PT|S77.2|ICD10|Crushing injury of hip with thigh|Crushing injury of hip with thigh +C2859957|T037|AB|S77.20|ICD10CM|Crushing injury of unspecified hip with thigh|Crushing injury of unspecified hip with thigh +C2859957|T037|HT|S77.20|ICD10CM|Crushing injury of unspecified hip with thigh|Crushing injury of unspecified hip with thigh +C2976781|T037|AB|S77.20XA|ICD10CM|Crushing injury of unspecified hip with thigh, init encntr|Crushing injury of unspecified hip with thigh, init encntr +C2976781|T037|PT|S77.20XA|ICD10CM|Crushing injury of unspecified hip with thigh, initial encounter|Crushing injury of unspecified hip with thigh, initial encounter +C2976782|T037|AB|S77.20XD|ICD10CM|Crushing injury of unspecified hip with thigh, subs encntr|Crushing injury of unspecified hip with thigh, subs encntr +C2976782|T037|PT|S77.20XD|ICD10CM|Crushing injury of unspecified hip with thigh, subsequent encounter|Crushing injury of unspecified hip with thigh, subsequent encounter +C2976783|T037|AB|S77.20XS|ICD10CM|Crushing injury of unspecified hip with thigh, sequela|Crushing injury of unspecified hip with thigh, sequela +C2976783|T037|PT|S77.20XS|ICD10CM|Crushing injury of unspecified hip with thigh, sequela|Crushing injury of unspecified hip with thigh, sequela +C2859961|T037|AB|S77.21|ICD10CM|Crushing injury of right hip with thigh|Crushing injury of right hip with thigh +C2859961|T037|HT|S77.21|ICD10CM|Crushing injury of right hip with thigh|Crushing injury of right hip with thigh +C2859962|T037|AB|S77.21XA|ICD10CM|Crushing injury of right hip with thigh, initial encounter|Crushing injury of right hip with thigh, initial encounter +C2859962|T037|PT|S77.21XA|ICD10CM|Crushing injury of right hip with thigh, initial encounter|Crushing injury of right hip with thigh, initial encounter +C2859963|T037|AB|S77.21XD|ICD10CM|Crushing injury of right hip with thigh, subs encntr|Crushing injury of right hip with thigh, subs encntr +C2859963|T037|PT|S77.21XD|ICD10CM|Crushing injury of right hip with thigh, subsequent encounter|Crushing injury of right hip with thigh, subsequent encounter +C2859964|T037|AB|S77.21XS|ICD10CM|Crushing injury of right hip with thigh, sequela|Crushing injury of right hip with thigh, sequela +C2859964|T037|PT|S77.21XS|ICD10CM|Crushing injury of right hip with thigh, sequela|Crushing injury of right hip with thigh, sequela +C2859965|T037|AB|S77.22|ICD10CM|Crushing injury of left hip with thigh|Crushing injury of left hip with thigh +C2859965|T037|HT|S77.22|ICD10CM|Crushing injury of left hip with thigh|Crushing injury of left hip with thigh +C2859966|T037|AB|S77.22XA|ICD10CM|Crushing injury of left hip with thigh, initial encounter|Crushing injury of left hip with thigh, initial encounter +C2859966|T037|PT|S77.22XA|ICD10CM|Crushing injury of left hip with thigh, initial encounter|Crushing injury of left hip with thigh, initial encounter +C2859967|T037|AB|S77.22XD|ICD10CM|Crushing injury of left hip with thigh, subsequent encounter|Crushing injury of left hip with thigh, subsequent encounter +C2859967|T037|PT|S77.22XD|ICD10CM|Crushing injury of left hip with thigh, subsequent encounter|Crushing injury of left hip with thigh, subsequent encounter +C2859968|T037|AB|S77.22XS|ICD10CM|Crushing injury of left hip with thigh, sequela|Crushing injury of left hip with thigh, sequela +C2859968|T037|PT|S77.22XS|ICD10CM|Crushing injury of left hip with thigh, sequela|Crushing injury of left hip with thigh, sequela +C2977737|T033|ET|S78|ICD10CM|An amputation not identified as partial or complete should be coded to complete|An amputation not identified as partial or complete should be coded to complete +C0495941|T037|AB|S78|ICD10CM|Traumatic amputation of hip and thigh|Traumatic amputation of hip and thigh +C0495941|T037|HT|S78|ICD10CM|Traumatic amputation of hip and thigh|Traumatic amputation of hip and thigh +C0495941|T037|HT|S78|ICD10|Traumatic amputation of hip and thigh|Traumatic amputation of hip and thigh +C0495942|T037|PT|S78.0|ICD10|Traumatic amputation at hip joint|Traumatic amputation at hip joint +C0495942|T037|HT|S78.0|ICD10CM|Traumatic amputation at hip joint|Traumatic amputation at hip joint +C0495942|T037|AB|S78.0|ICD10CM|Traumatic amputation at hip joint|Traumatic amputation at hip joint +C2859969|T037|AB|S78.01|ICD10CM|Complete traumatic amputation at hip joint|Complete traumatic amputation at hip joint +C2859969|T037|HT|S78.01|ICD10CM|Complete traumatic amputation at hip joint|Complete traumatic amputation at hip joint +C2859970|T037|AB|S78.011|ICD10CM|Complete traumatic amputation at right hip joint|Complete traumatic amputation at right hip joint +C2859970|T037|HT|S78.011|ICD10CM|Complete traumatic amputation at right hip joint|Complete traumatic amputation at right hip joint +C2859971|T037|AB|S78.011A|ICD10CM|Complete traumatic amputation at right hip joint, init|Complete traumatic amputation at right hip joint, init +C2859971|T037|PT|S78.011A|ICD10CM|Complete traumatic amputation at right hip joint, initial encounter|Complete traumatic amputation at right hip joint, initial encounter +C2859972|T037|AB|S78.011D|ICD10CM|Complete traumatic amputation at right hip joint, subs|Complete traumatic amputation at right hip joint, subs +C2859972|T037|PT|S78.011D|ICD10CM|Complete traumatic amputation at right hip joint, subsequent encounter|Complete traumatic amputation at right hip joint, subsequent encounter +C2859973|T037|PT|S78.011S|ICD10CM|Complete traumatic amputation at right hip joint, sequela|Complete traumatic amputation at right hip joint, sequela +C2859973|T037|AB|S78.011S|ICD10CM|Complete traumatic amputation at right hip joint, sequela|Complete traumatic amputation at right hip joint, sequela +C2859974|T037|AB|S78.012|ICD10CM|Complete traumatic amputation at left hip joint|Complete traumatic amputation at left hip joint +C2859974|T037|HT|S78.012|ICD10CM|Complete traumatic amputation at left hip joint|Complete traumatic amputation at left hip joint +C2859975|T037|AB|S78.012A|ICD10CM|Complete traumatic amputation at left hip joint, init encntr|Complete traumatic amputation at left hip joint, init encntr +C2859975|T037|PT|S78.012A|ICD10CM|Complete traumatic amputation at left hip joint, initial encounter|Complete traumatic amputation at left hip joint, initial encounter +C2859976|T037|AB|S78.012D|ICD10CM|Complete traumatic amputation at left hip joint, subs encntr|Complete traumatic amputation at left hip joint, subs encntr +C2859976|T037|PT|S78.012D|ICD10CM|Complete traumatic amputation at left hip joint, subsequent encounter|Complete traumatic amputation at left hip joint, subsequent encounter +C2859977|T037|PT|S78.012S|ICD10CM|Complete traumatic amputation at left hip joint, sequela|Complete traumatic amputation at left hip joint, sequela +C2859977|T037|AB|S78.012S|ICD10CM|Complete traumatic amputation at left hip joint, sequela|Complete traumatic amputation at left hip joint, sequela +C2859978|T037|AB|S78.019|ICD10CM|Complete traumatic amputation at unspecified hip joint|Complete traumatic amputation at unspecified hip joint +C2859978|T037|HT|S78.019|ICD10CM|Complete traumatic amputation at unspecified hip joint|Complete traumatic amputation at unspecified hip joint +C2859979|T037|AB|S78.019A|ICD10CM|Complete traumatic amputation at unsp hip joint, init encntr|Complete traumatic amputation at unsp hip joint, init encntr +C2859979|T037|PT|S78.019A|ICD10CM|Complete traumatic amputation at unspecified hip joint, initial encounter|Complete traumatic amputation at unspecified hip joint, initial encounter +C2859980|T037|AB|S78.019D|ICD10CM|Complete traumatic amputation at unsp hip joint, subs encntr|Complete traumatic amputation at unsp hip joint, subs encntr +C2859980|T037|PT|S78.019D|ICD10CM|Complete traumatic amputation at unspecified hip joint, subsequent encounter|Complete traumatic amputation at unspecified hip joint, subsequent encounter +C2859981|T037|AB|S78.019S|ICD10CM|Complete traumatic amputation at unsp hip joint, sequela|Complete traumatic amputation at unsp hip joint, sequela +C2859981|T037|PT|S78.019S|ICD10CM|Complete traumatic amputation at unspecified hip joint, sequela|Complete traumatic amputation at unspecified hip joint, sequela +C2859982|T037|AB|S78.02|ICD10CM|Partial traumatic amputation at hip joint|Partial traumatic amputation at hip joint +C2859982|T037|HT|S78.02|ICD10CM|Partial traumatic amputation at hip joint|Partial traumatic amputation at hip joint +C2859983|T037|AB|S78.021|ICD10CM|Partial traumatic amputation at right hip joint|Partial traumatic amputation at right hip joint +C2859983|T037|HT|S78.021|ICD10CM|Partial traumatic amputation at right hip joint|Partial traumatic amputation at right hip joint +C2859984|T037|AB|S78.021A|ICD10CM|Partial traumatic amputation at right hip joint, init encntr|Partial traumatic amputation at right hip joint, init encntr +C2859984|T037|PT|S78.021A|ICD10CM|Partial traumatic amputation at right hip joint, initial encounter|Partial traumatic amputation at right hip joint, initial encounter +C2859985|T037|AB|S78.021D|ICD10CM|Partial traumatic amputation at right hip joint, subs encntr|Partial traumatic amputation at right hip joint, subs encntr +C2859985|T037|PT|S78.021D|ICD10CM|Partial traumatic amputation at right hip joint, subsequent encounter|Partial traumatic amputation at right hip joint, subsequent encounter +C2859986|T037|PT|S78.021S|ICD10CM|Partial traumatic amputation at right hip joint, sequela|Partial traumatic amputation at right hip joint, sequela +C2859986|T037|AB|S78.021S|ICD10CM|Partial traumatic amputation at right hip joint, sequela|Partial traumatic amputation at right hip joint, sequela +C2859987|T037|AB|S78.022|ICD10CM|Partial traumatic amputation at left hip joint|Partial traumatic amputation at left hip joint +C2859987|T037|HT|S78.022|ICD10CM|Partial traumatic amputation at left hip joint|Partial traumatic amputation at left hip joint +C2859988|T037|AB|S78.022A|ICD10CM|Partial traumatic amputation at left hip joint, init encntr|Partial traumatic amputation at left hip joint, init encntr +C2859988|T037|PT|S78.022A|ICD10CM|Partial traumatic amputation at left hip joint, initial encounter|Partial traumatic amputation at left hip joint, initial encounter +C2859989|T037|AB|S78.022D|ICD10CM|Partial traumatic amputation at left hip joint, subs encntr|Partial traumatic amputation at left hip joint, subs encntr +C2859989|T037|PT|S78.022D|ICD10CM|Partial traumatic amputation at left hip joint, subsequent encounter|Partial traumatic amputation at left hip joint, subsequent encounter +C2859990|T037|PT|S78.022S|ICD10CM|Partial traumatic amputation at left hip joint, sequela|Partial traumatic amputation at left hip joint, sequela +C2859990|T037|AB|S78.022S|ICD10CM|Partial traumatic amputation at left hip joint, sequela|Partial traumatic amputation at left hip joint, sequela +C2859991|T037|AB|S78.029|ICD10CM|Partial traumatic amputation at unspecified hip joint|Partial traumatic amputation at unspecified hip joint +C2859991|T037|HT|S78.029|ICD10CM|Partial traumatic amputation at unspecified hip joint|Partial traumatic amputation at unspecified hip joint +C2859992|T037|AB|S78.029A|ICD10CM|Partial traumatic amputation at unsp hip joint, init encntr|Partial traumatic amputation at unsp hip joint, init encntr +C2859992|T037|PT|S78.029A|ICD10CM|Partial traumatic amputation at unspecified hip joint, initial encounter|Partial traumatic amputation at unspecified hip joint, initial encounter +C2859993|T037|AB|S78.029D|ICD10CM|Partial traumatic amputation at unsp hip joint, subs encntr|Partial traumatic amputation at unsp hip joint, subs encntr +C2859993|T037|PT|S78.029D|ICD10CM|Partial traumatic amputation at unspecified hip joint, subsequent encounter|Partial traumatic amputation at unspecified hip joint, subsequent encounter +C2859994|T037|AB|S78.029S|ICD10CM|Partial traumatic amputation at unsp hip joint, sequela|Partial traumatic amputation at unsp hip joint, sequela +C2859994|T037|PT|S78.029S|ICD10CM|Partial traumatic amputation at unspecified hip joint, sequela|Partial traumatic amputation at unspecified hip joint, sequela +C0452038|T037|HT|S78.1|ICD10CM|Traumatic amputation at level between hip and knee|Traumatic amputation at level between hip and knee +C0452038|T037|AB|S78.1|ICD10CM|Traumatic amputation at level between hip and knee|Traumatic amputation at level between hip and knee +C0452038|T037|PT|S78.1|ICD10|Traumatic amputation at level between hip and knee|Traumatic amputation at level between hip and knee +C2859995|T037|AB|S78.11|ICD10CM|Complete traumatic amputation at level between hip and knee|Complete traumatic amputation at level between hip and knee +C2859995|T037|HT|S78.11|ICD10CM|Complete traumatic amputation at level between hip and knee|Complete traumatic amputation at level between hip and knee +C2859996|T037|AB|S78.111|ICD10CM|Complete traumatic amp at level betw right hip and knee|Complete traumatic amp at level betw right hip and knee +C2859996|T037|HT|S78.111|ICD10CM|Complete traumatic amputation at level between right hip and knee|Complete traumatic amputation at level between right hip and knee +C2859997|T037|AB|S78.111A|ICD10CM|Complete traumatic amp at level betw r hip and knee, init|Complete traumatic amp at level betw r hip and knee, init +C2859997|T037|PT|S78.111A|ICD10CM|Complete traumatic amputation at level between right hip and knee, initial encounter|Complete traumatic amputation at level between right hip and knee, initial encounter +C2859998|T037|AB|S78.111D|ICD10CM|Complete traumatic amp at level betw r hip and knee, subs|Complete traumatic amp at level betw r hip and knee, subs +C2859998|T037|PT|S78.111D|ICD10CM|Complete traumatic amputation at level between right hip and knee, subsequent encounter|Complete traumatic amputation at level between right hip and knee, subsequent encounter +C2859999|T037|AB|S78.111S|ICD10CM|Complete traumatic amp at level betw r hip and knee, sequela|Complete traumatic amp at level betw r hip and knee, sequela +C2859999|T037|PT|S78.111S|ICD10CM|Complete traumatic amputation at level between right hip and knee, sequela|Complete traumatic amputation at level between right hip and knee, sequela +C2860000|T037|AB|S78.112|ICD10CM|Complete traumatic amp at level betw left hip and knee|Complete traumatic amp at level betw left hip and knee +C2860000|T037|HT|S78.112|ICD10CM|Complete traumatic amputation at level between left hip and knee|Complete traumatic amputation at level between left hip and knee +C2860001|T037|AB|S78.112A|ICD10CM|Complete traumatic amp at level betw left hip and knee, init|Complete traumatic amp at level betw left hip and knee, init +C2860001|T037|PT|S78.112A|ICD10CM|Complete traumatic amputation at level between left hip and knee, initial encounter|Complete traumatic amputation at level between left hip and knee, initial encounter +C2860002|T037|AB|S78.112D|ICD10CM|Complete traumatic amp at level betw left hip and knee, subs|Complete traumatic amp at level betw left hip and knee, subs +C2860002|T037|PT|S78.112D|ICD10CM|Complete traumatic amputation at level between left hip and knee, subsequent encounter|Complete traumatic amputation at level between left hip and knee, subsequent encounter +C2860003|T037|AB|S78.112S|ICD10CM|Complete traum amp at level betw left hip and knee, sequela|Complete traum amp at level betw left hip and knee, sequela +C2860003|T037|PT|S78.112S|ICD10CM|Complete traumatic amputation at level between left hip and knee, sequela|Complete traumatic amputation at level between left hip and knee, sequela +C2860004|T037|AB|S78.119|ICD10CM|Complete traumatic amp at level betw unsp hip and knee|Complete traumatic amp at level betw unsp hip and knee +C2860004|T037|HT|S78.119|ICD10CM|Complete traumatic amputation at level between unspecified hip and knee|Complete traumatic amputation at level between unspecified hip and knee +C2860005|T037|AB|S78.119A|ICD10CM|Complete traumatic amp at level betw unsp hip and knee, init|Complete traumatic amp at level betw unsp hip and knee, init +C2860005|T037|PT|S78.119A|ICD10CM|Complete traumatic amputation at level between unspecified hip and knee, initial encounter|Complete traumatic amputation at level between unspecified hip and knee, initial encounter +C2860006|T037|AB|S78.119D|ICD10CM|Complete traumatic amp at level betw unsp hip and knee, subs|Complete traumatic amp at level betw unsp hip and knee, subs +C2860006|T037|PT|S78.119D|ICD10CM|Complete traumatic amputation at level between unspecified hip and knee, subsequent encounter|Complete traumatic amputation at level between unspecified hip and knee, subsequent encounter +C2860007|T037|AB|S78.119S|ICD10CM|Complete traum amp at level betw unsp hip and knee, sequela|Complete traum amp at level betw unsp hip and knee, sequela +C2860007|T037|PT|S78.119S|ICD10CM|Complete traumatic amputation at level between unspecified hip and knee, sequela|Complete traumatic amputation at level between unspecified hip and knee, sequela +C2860008|T037|AB|S78.12|ICD10CM|Partial traumatic amputation at level between hip and knee|Partial traumatic amputation at level between hip and knee +C2860008|T037|HT|S78.12|ICD10CM|Partial traumatic amputation at level between hip and knee|Partial traumatic amputation at level between hip and knee +C2860009|T037|AB|S78.121|ICD10CM|Partial traumatic amp at level betw right hip and knee|Partial traumatic amp at level betw right hip and knee +C2860009|T037|HT|S78.121|ICD10CM|Partial traumatic amputation at level between right hip and knee|Partial traumatic amputation at level between right hip and knee +C2860010|T037|AB|S78.121A|ICD10CM|Partial traumatic amp at level betw right hip and knee, init|Partial traumatic amp at level betw right hip and knee, init +C2860010|T037|PT|S78.121A|ICD10CM|Partial traumatic amputation at level between right hip and knee, initial encounter|Partial traumatic amputation at level between right hip and knee, initial encounter +C2860011|T037|AB|S78.121D|ICD10CM|Partial traumatic amp at level betw right hip and knee, subs|Partial traumatic amp at level betw right hip and knee, subs +C2860011|T037|PT|S78.121D|ICD10CM|Partial traumatic amputation at level between right hip and knee, subsequent encounter|Partial traumatic amputation at level between right hip and knee, subsequent encounter +C2860012|T037|AB|S78.121S|ICD10CM|Partial traumatic amp at level betw r hip and knee, sequela|Partial traumatic amp at level betw r hip and knee, sequela +C2860012|T037|PT|S78.121S|ICD10CM|Partial traumatic amputation at level between right hip and knee, sequela|Partial traumatic amputation at level between right hip and knee, sequela +C2860013|T037|AB|S78.122|ICD10CM|Partial traumatic amputation at level betw left hip and knee|Partial traumatic amputation at level betw left hip and knee +C2860013|T037|HT|S78.122|ICD10CM|Partial traumatic amputation at level between left hip and knee|Partial traumatic amputation at level between left hip and knee +C2860014|T037|AB|S78.122A|ICD10CM|Partial traumatic amp at level betw left hip and knee, init|Partial traumatic amp at level betw left hip and knee, init +C2860014|T037|PT|S78.122A|ICD10CM|Partial traumatic amputation at level between left hip and knee, initial encounter|Partial traumatic amputation at level between left hip and knee, initial encounter +C2860015|T037|AB|S78.122D|ICD10CM|Partial traumatic amp at level betw left hip and knee, subs|Partial traumatic amp at level betw left hip and knee, subs +C2860015|T037|PT|S78.122D|ICD10CM|Partial traumatic amputation at level between left hip and knee, subsequent encounter|Partial traumatic amputation at level between left hip and knee, subsequent encounter +C2860016|T037|AB|S78.122S|ICD10CM|Partial traum amp at level betw left hip and knee, sequela|Partial traum amp at level betw left hip and knee, sequela +C2860016|T037|PT|S78.122S|ICD10CM|Partial traumatic amputation at level between left hip and knee, sequela|Partial traumatic amputation at level between left hip and knee, sequela +C2860017|T037|AB|S78.129|ICD10CM|Partial traumatic amputation at level betw unsp hip and knee|Partial traumatic amputation at level betw unsp hip and knee +C2860017|T037|HT|S78.129|ICD10CM|Partial traumatic amputation at level between unspecified hip and knee|Partial traumatic amputation at level between unspecified hip and knee +C2860018|T037|AB|S78.129A|ICD10CM|Partial traumatic amp at level betw unsp hip and knee, init|Partial traumatic amp at level betw unsp hip and knee, init +C2860018|T037|PT|S78.129A|ICD10CM|Partial traumatic amputation at level between unspecified hip and knee, initial encounter|Partial traumatic amputation at level between unspecified hip and knee, initial encounter +C2860019|T037|AB|S78.129D|ICD10CM|Partial traumatic amp at level betw unsp hip and knee, subs|Partial traumatic amp at level betw unsp hip and knee, subs +C2860019|T037|PT|S78.129D|ICD10CM|Partial traumatic amputation at level between unspecified hip and knee, subsequent encounter|Partial traumatic amputation at level between unspecified hip and knee, subsequent encounter +C2860020|T037|AB|S78.129S|ICD10CM|Partial traum amp at level betw unsp hip and knee, sequela|Partial traum amp at level betw unsp hip and knee, sequela +C2860020|T037|PT|S78.129S|ICD10CM|Partial traumatic amputation at level between unspecified hip and knee, sequela|Partial traumatic amputation at level between unspecified hip and knee, sequela +C0495941|T037|PT|S78.9|ICD10|Traumatic amputation of hip and thigh, level unspecified|Traumatic amputation of hip and thigh, level unspecified +C0495941|T037|HT|S78.9|ICD10CM|Traumatic amputation of hip and thigh, level unspecified|Traumatic amputation of hip and thigh, level unspecified +C0495941|T037|AB|S78.9|ICD10CM|Traumatic amputation of hip and thigh, level unspecified|Traumatic amputation of hip and thigh, level unspecified +C2860021|T037|AB|S78.91|ICD10CM|Complete traumatic amputation of hip and thigh, level unsp|Complete traumatic amputation of hip and thigh, level unsp +C2860021|T037|HT|S78.91|ICD10CM|Complete traumatic amputation of hip and thigh, level unspecified|Complete traumatic amputation of hip and thigh, level unspecified +C2860022|T037|AB|S78.911|ICD10CM|Complete traumatic amp of right hip and thigh, level unsp|Complete traumatic amp of right hip and thigh, level unsp +C2860022|T037|HT|S78.911|ICD10CM|Complete traumatic amputation of right hip and thigh, level unspecified|Complete traumatic amputation of right hip and thigh, level unspecified +C2860023|T037|AB|S78.911A|ICD10CM|Complete traumatic amp of r hip and thigh, level unsp, init|Complete traumatic amp of r hip and thigh, level unsp, init +C2860023|T037|PT|S78.911A|ICD10CM|Complete traumatic amputation of right hip and thigh, level unspecified, initial encounter|Complete traumatic amputation of right hip and thigh, level unspecified, initial encounter +C2860024|T037|AB|S78.911D|ICD10CM|Complete traumatic amp of r hip and thigh, level unsp, subs|Complete traumatic amp of r hip and thigh, level unsp, subs +C2860024|T037|PT|S78.911D|ICD10CM|Complete traumatic amputation of right hip and thigh, level unspecified, subsequent encounter|Complete traumatic amputation of right hip and thigh, level unspecified, subsequent encounter +C2860025|T037|AB|S78.911S|ICD10CM|Complete traum amp of r hip and thigh, level unsp, sequela|Complete traum amp of r hip and thigh, level unsp, sequela +C2860025|T037|PT|S78.911S|ICD10CM|Complete traumatic amputation of right hip and thigh, level unspecified, sequela|Complete traumatic amputation of right hip and thigh, level unspecified, sequela +C2860026|T037|AB|S78.912|ICD10CM|Complete traumatic amp of left hip and thigh, level unsp|Complete traumatic amp of left hip and thigh, level unsp +C2860026|T037|HT|S78.912|ICD10CM|Complete traumatic amputation of left hip and thigh, level unspecified|Complete traumatic amputation of left hip and thigh, level unspecified +C2860027|T037|AB|S78.912A|ICD10CM|Complete traum amp of left hip and thigh, level unsp, init|Complete traum amp of left hip and thigh, level unsp, init +C2860027|T037|PT|S78.912A|ICD10CM|Complete traumatic amputation of left hip and thigh, level unspecified, initial encounter|Complete traumatic amputation of left hip and thigh, level unspecified, initial encounter +C2860028|T037|AB|S78.912D|ICD10CM|Complete traum amp of left hip and thigh, level unsp, subs|Complete traum amp of left hip and thigh, level unsp, subs +C2860028|T037|PT|S78.912D|ICD10CM|Complete traumatic amputation of left hip and thigh, level unspecified, subsequent encounter|Complete traumatic amputation of left hip and thigh, level unspecified, subsequent encounter +C2860029|T037|AB|S78.912S|ICD10CM|Complete traum amp of l hip and thigh, level unsp, sequela|Complete traum amp of l hip and thigh, level unsp, sequela +C2860029|T037|PT|S78.912S|ICD10CM|Complete traumatic amputation of left hip and thigh, level unspecified, sequela|Complete traumatic amputation of left hip and thigh, level unspecified, sequela +C2860030|T037|AB|S78.919|ICD10CM|Complete traumatic amp of unsp hip and thigh, level unsp|Complete traumatic amp of unsp hip and thigh, level unsp +C2860030|T037|HT|S78.919|ICD10CM|Complete traumatic amputation of unspecified hip and thigh, level unspecified|Complete traumatic amputation of unspecified hip and thigh, level unspecified +C2860031|T037|AB|S78.919A|ICD10CM|Complete traum amp of unsp hip and thigh, level unsp, init|Complete traum amp of unsp hip and thigh, level unsp, init +C2860031|T037|PT|S78.919A|ICD10CM|Complete traumatic amputation of unspecified hip and thigh, level unspecified, initial encounter|Complete traumatic amputation of unspecified hip and thigh, level unspecified, initial encounter +C2860032|T037|AB|S78.919D|ICD10CM|Complete traum amp of unsp hip and thigh, level unsp, subs|Complete traum amp of unsp hip and thigh, level unsp, subs +C2860032|T037|PT|S78.919D|ICD10CM|Complete traumatic amputation of unspecified hip and thigh, level unspecified, subsequent encounter|Complete traumatic amputation of unspecified hip and thigh, level unspecified, subsequent encounter +C2860033|T037|AB|S78.919S|ICD10CM|Complete traum amp of unsp hip and thigh, level unsp, sqla|Complete traum amp of unsp hip and thigh, level unsp, sqla +C2860033|T037|PT|S78.919S|ICD10CM|Complete traumatic amputation of unspecified hip and thigh, level unspecified, sequela|Complete traumatic amputation of unspecified hip and thigh, level unspecified, sequela +C2860034|T037|AB|S78.92|ICD10CM|Partial traumatic amputation of hip and thigh, level unsp|Partial traumatic amputation of hip and thigh, level unsp +C2860034|T037|HT|S78.92|ICD10CM|Partial traumatic amputation of hip and thigh, level unspecified|Partial traumatic amputation of hip and thigh, level unspecified +C2860035|T037|AB|S78.921|ICD10CM|Partial traumatic amp of right hip and thigh, level unsp|Partial traumatic amp of right hip and thigh, level unsp +C2860035|T037|HT|S78.921|ICD10CM|Partial traumatic amputation of right hip and thigh, level unspecified|Partial traumatic amputation of right hip and thigh, level unspecified +C2860036|T037|AB|S78.921A|ICD10CM|Partial traumatic amp of r hip and thigh, level unsp, init|Partial traumatic amp of r hip and thigh, level unsp, init +C2860036|T037|PT|S78.921A|ICD10CM|Partial traumatic amputation of right hip and thigh, level unspecified, initial encounter|Partial traumatic amputation of right hip and thigh, level unspecified, initial encounter +C2860037|T037|AB|S78.921D|ICD10CM|Partial traumatic amp of r hip and thigh, level unsp, subs|Partial traumatic amp of r hip and thigh, level unsp, subs +C2860037|T037|PT|S78.921D|ICD10CM|Partial traumatic amputation of right hip and thigh, level unspecified, subsequent encounter|Partial traumatic amputation of right hip and thigh, level unspecified, subsequent encounter +C2860038|T037|AB|S78.921S|ICD10CM|Partial traum amp of r hip and thigh, level unsp, sequela|Partial traum amp of r hip and thigh, level unsp, sequela +C2860038|T037|PT|S78.921S|ICD10CM|Partial traumatic amputation of right hip and thigh, level unspecified, sequela|Partial traumatic amputation of right hip and thigh, level unspecified, sequela +C2860039|T037|AB|S78.922|ICD10CM|Partial traumatic amp of left hip and thigh, level unsp|Partial traumatic amp of left hip and thigh, level unsp +C2860039|T037|HT|S78.922|ICD10CM|Partial traumatic amputation of left hip and thigh, level unspecified|Partial traumatic amputation of left hip and thigh, level unspecified +C2860040|T037|AB|S78.922A|ICD10CM|Partial traum amp of left hip and thigh, level unsp, init|Partial traum amp of left hip and thigh, level unsp, init +C2860040|T037|PT|S78.922A|ICD10CM|Partial traumatic amputation of left hip and thigh, level unspecified, initial encounter|Partial traumatic amputation of left hip and thigh, level unspecified, initial encounter +C2860041|T037|AB|S78.922D|ICD10CM|Partial traum amp of left hip and thigh, level unsp, subs|Partial traum amp of left hip and thigh, level unsp, subs +C2860041|T037|PT|S78.922D|ICD10CM|Partial traumatic amputation of left hip and thigh, level unspecified, subsequent encounter|Partial traumatic amputation of left hip and thigh, level unspecified, subsequent encounter +C2860042|T037|AB|S78.922S|ICD10CM|Partial traum amp of left hip and thigh, level unsp, sequela|Partial traum amp of left hip and thigh, level unsp, sequela +C2860042|T037|PT|S78.922S|ICD10CM|Partial traumatic amputation of left hip and thigh, level unspecified, sequela|Partial traumatic amputation of left hip and thigh, level unspecified, sequela +C2860043|T037|AB|S78.929|ICD10CM|Partial traumatic amp of unsp hip and thigh, level unsp|Partial traumatic amp of unsp hip and thigh, level unsp +C2860043|T037|HT|S78.929|ICD10CM|Partial traumatic amputation of unspecified hip and thigh, level unspecified|Partial traumatic amputation of unspecified hip and thigh, level unspecified +C2860044|T037|AB|S78.929A|ICD10CM|Partial traum amp of unsp hip and thigh, level unsp, init|Partial traum amp of unsp hip and thigh, level unsp, init +C2860044|T037|PT|S78.929A|ICD10CM|Partial traumatic amputation of unspecified hip and thigh, level unspecified, initial encounter|Partial traumatic amputation of unspecified hip and thigh, level unspecified, initial encounter +C2860045|T037|AB|S78.929D|ICD10CM|Partial traum amp of unsp hip and thigh, level unsp, subs|Partial traum amp of unsp hip and thigh, level unsp, subs +C2860045|T037|PT|S78.929D|ICD10CM|Partial traumatic amputation of unspecified hip and thigh, level unspecified, subsequent encounter|Partial traumatic amputation of unspecified hip and thigh, level unspecified, subsequent encounter +C2860046|T037|AB|S78.929S|ICD10CM|Partial traum amp of unsp hip and thigh, level unsp, sequela|Partial traum amp of unsp hip and thigh, level unsp, sequela +C2860046|T037|PT|S78.929S|ICD10CM|Partial traumatic amputation of unspecified hip and thigh, level unspecified, sequela|Partial traumatic amputation of unspecified hip and thigh, level unspecified, sequela +C0478331|T037|HT|S79|ICD10|Other and specified injuries of hip and thigh|Other and specified injuries of hip and thigh +C0161484|T037|AB|S79|ICD10CM|Other and unspecified injuries of hip and thigh|Other and unspecified injuries of hip and thigh +C0161484|T037|HT|S79|ICD10CM|Other and unspecified injuries of hip and thigh|Other and unspecified injuries of hip and thigh +C2860047|T037|AB|S79.0|ICD10CM|Physeal fracture of upper end of femur|Physeal fracture of upper end of femur +C2860047|T037|HT|S79.0|ICD10CM|Physeal fracture of upper end of femur|Physeal fracture of upper end of femur +C2860048|T037|AB|S79.00|ICD10CM|Unspecified physeal fracture of upper end of femur|Unspecified physeal fracture of upper end of femur +C2860048|T037|HT|S79.00|ICD10CM|Unspecified physeal fracture of upper end of femur|Unspecified physeal fracture of upper end of femur +C2860049|T037|AB|S79.001|ICD10CM|Unspecified physeal fracture of upper end of right femur|Unspecified physeal fracture of upper end of right femur +C2860049|T037|HT|S79.001|ICD10CM|Unspecified physeal fracture of upper end of right femur|Unspecified physeal fracture of upper end of right femur +C2860050|T037|AB|S79.001A|ICD10CM|Unsp physeal fracture of upper end of right femur, init|Unsp physeal fracture of upper end of right femur, init +C2860050|T037|PT|S79.001A|ICD10CM|Unspecified physeal fracture of upper end of right femur, initial encounter for closed fracture|Unspecified physeal fracture of upper end of right femur, initial encounter for closed fracture +C2860051|T037|AB|S79.001D|ICD10CM|Unsp physl fx upper end of r femur, subs for fx w routn heal|Unsp physl fx upper end of r femur, subs for fx w routn heal +C2860052|T037|AB|S79.001G|ICD10CM|Unsp physl fx upper end of r femur, subs for fx w delay heal|Unsp physl fx upper end of r femur, subs for fx w delay heal +C2860053|T037|AB|S79.001K|ICD10CM|Unsp physeal fx upper end of r femur, subs for fx w nonunion|Unsp physeal fx upper end of r femur, subs for fx w nonunion +C2860054|T037|AB|S79.001P|ICD10CM|Unsp physeal fx upper end of r femur, subs for fx w malunion|Unsp physeal fx upper end of r femur, subs for fx w malunion +C2860055|T037|AB|S79.001S|ICD10CM|Unsp physeal fracture of upper end of right femur, sequela|Unsp physeal fracture of upper end of right femur, sequela +C2860055|T037|PT|S79.001S|ICD10CM|Unspecified physeal fracture of upper end of right femur, sequela|Unspecified physeal fracture of upper end of right femur, sequela +C2860056|T037|AB|S79.002|ICD10CM|Unspecified physeal fracture of upper end of left femur|Unspecified physeal fracture of upper end of left femur +C2860056|T037|HT|S79.002|ICD10CM|Unspecified physeal fracture of upper end of left femur|Unspecified physeal fracture of upper end of left femur +C2860057|T037|AB|S79.002A|ICD10CM|Unsp physeal fracture of upper end of left femur, init|Unsp physeal fracture of upper end of left femur, init +C2860057|T037|PT|S79.002A|ICD10CM|Unspecified physeal fracture of upper end of left femur, initial encounter for closed fracture|Unspecified physeal fracture of upper end of left femur, initial encounter for closed fracture +C2860058|T037|AB|S79.002D|ICD10CM|Unsp physl fx upper end of l femur, subs for fx w routn heal|Unsp physl fx upper end of l femur, subs for fx w routn heal +C2860059|T037|AB|S79.002G|ICD10CM|Unsp physl fx upper end of l femur, subs for fx w delay heal|Unsp physl fx upper end of l femur, subs for fx w delay heal +C2860060|T037|AB|S79.002K|ICD10CM|Unsp physeal fx upper end of l femur, subs for fx w nonunion|Unsp physeal fx upper end of l femur, subs for fx w nonunion +C2860061|T037|AB|S79.002P|ICD10CM|Unsp physeal fx upper end of l femur, subs for fx w malunion|Unsp physeal fx upper end of l femur, subs for fx w malunion +C2860062|T037|AB|S79.002S|ICD10CM|Unsp physeal fracture of upper end of left femur, sequela|Unsp physeal fracture of upper end of left femur, sequela +C2860062|T037|PT|S79.002S|ICD10CM|Unspecified physeal fracture of upper end of left femur, sequela|Unspecified physeal fracture of upper end of left femur, sequela +C2860063|T037|AB|S79.009|ICD10CM|Unsp physeal fracture of upper end of unspecified femur|Unsp physeal fracture of upper end of unspecified femur +C2860063|T037|HT|S79.009|ICD10CM|Unspecified physeal fracture of upper end of unspecified femur|Unspecified physeal fracture of upper end of unspecified femur +C2860064|T037|AB|S79.009A|ICD10CM|Unsp physeal fracture of upper end of unsp femur, init|Unsp physeal fracture of upper end of unsp femur, init +C2860065|T037|AB|S79.009D|ICD10CM|Unsp physl fx upper end unsp femur, subs for fx w routn heal|Unsp physl fx upper end unsp femur, subs for fx w routn heal +C2860066|T037|AB|S79.009G|ICD10CM|Unsp physl fx upper end unsp femur, subs for fx w delay heal|Unsp physl fx upper end unsp femur, subs for fx w delay heal +C2860067|T037|AB|S79.009K|ICD10CM|Unsp physl fx upper end unsp femur, subs for fx w nonunion|Unsp physl fx upper end unsp femur, subs for fx w nonunion +C2860068|T037|AB|S79.009P|ICD10CM|Unsp physl fx upper end unsp femur, subs for fx w malunion|Unsp physl fx upper end unsp femur, subs for fx w malunion +C2860069|T037|AB|S79.009S|ICD10CM|Unsp physeal fracture of upper end of unsp femur, sequela|Unsp physeal fracture of upper end of unsp femur, sequela +C2860069|T037|PT|S79.009S|ICD10CM|Unspecified physeal fracture of upper end of unspecified femur, sequela|Unspecified physeal fracture of upper end of unspecified femur, sequela +C2860070|T047|ET|S79.01|ICD10CM|Acute on chronic slipped capital femoral epiphysis (traumatic)|Acute on chronic slipped capital femoral epiphysis (traumatic) +C2860071|T037|ET|S79.01|ICD10CM|Acute slipped capital femoral epiphysis (traumatic)|Acute slipped capital femoral epiphysis (traumatic) +C2860072|T037|ET|S79.01|ICD10CM|Capital femoral epiphyseal fracture|Capital femoral epiphyseal fracture +C2860073|T037|AB|S79.01|ICD10CM|Salter-Harris Type I physeal fracture of upper end of femur|Salter-Harris Type I physeal fracture of upper end of femur +C2860073|T037|HT|S79.01|ICD10CM|Salter-Harris Type I physeal fracture of upper end of femur|Salter-Harris Type I physeal fracture of upper end of femur +C2860074|T037|HT|S79.011|ICD10CM|Salter-Harris Type I physeal fracture of upper end of right femur|Salter-Harris Type I physeal fracture of upper end of right femur +C2860074|T037|AB|S79.011|ICD10CM|Sltr-haris Type I physeal fx upper end of right femur|Sltr-haris Type I physeal fx upper end of right femur +C2860075|T037|AB|S79.011A|ICD10CM|Sltr-haris Type I physeal fx upper end of right femur, init|Sltr-haris Type I physeal fx upper end of right femur, init +C2860076|T037|AB|S79.011D|ICD10CM|Sltr-haris Type I physl fx upr end r femr, 7thD|Sltr-haris Type I physl fx upr end r femr, 7thD +C2860077|T037|AB|S79.011G|ICD10CM|Sltr-haris Type I physl fx upr end r femr, 7thG|Sltr-haris Type I physl fx upr end r femr, 7thG +C2860078|T037|AB|S79.011K|ICD10CM|Sltr-haris Type I physl fx upr end r femr, 7thK|Sltr-haris Type I physl fx upr end r femr, 7thK +C2860079|T037|AB|S79.011P|ICD10CM|Sltr-haris Type I physl fx upr end r femr, 7thP|Sltr-haris Type I physl fx upr end r femr, 7thP +C2860080|T037|PT|S79.011S|ICD10CM|Salter-Harris Type I physeal fracture of upper end of right femur, sequela|Salter-Harris Type I physeal fracture of upper end of right femur, sequela +C2860080|T037|AB|S79.011S|ICD10CM|Sltr-haris Type I physeal fx upper end of r femur, sequela|Sltr-haris Type I physeal fx upper end of r femur, sequela +C2860081|T037|HT|S79.012|ICD10CM|Salter-Harris Type I physeal fracture of upper end of left femur|Salter-Harris Type I physeal fracture of upper end of left femur +C2860081|T037|AB|S79.012|ICD10CM|Sltr-haris Type I physeal fx upper end of left femur|Sltr-haris Type I physeal fx upper end of left femur +C2860082|T037|AB|S79.012A|ICD10CM|Sltr-haris Type I physeal fx upper end of left femur, init|Sltr-haris Type I physeal fx upper end of left femur, init +C2860083|T037|AB|S79.012D|ICD10CM|Sltr-haris Type I physl fx upr end l femr, 7thD|Sltr-haris Type I physl fx upr end l femr, 7thD +C2860084|T037|AB|S79.012G|ICD10CM|Sltr-haris Type I physl fx upr end l femr, 7thG|Sltr-haris Type I physl fx upr end l femr, 7thG +C2860085|T037|AB|S79.012K|ICD10CM|Sltr-haris Type I physl fx upr end l femr, 7thK|Sltr-haris Type I physl fx upr end l femr, 7thK +C2860086|T037|AB|S79.012P|ICD10CM|Sltr-haris Type I physl fx upr end l femr, 7thP|Sltr-haris Type I physl fx upr end l femr, 7thP +C2860087|T037|PT|S79.012S|ICD10CM|Salter-Harris Type I physeal fracture of upper end of left femur, sequela|Salter-Harris Type I physeal fracture of upper end of left femur, sequela +C2860087|T037|AB|S79.012S|ICD10CM|Sltr-haris Type I physeal fx upper end of l femur, sequela|Sltr-haris Type I physeal fx upper end of l femur, sequela +C2860088|T037|HT|S79.019|ICD10CM|Salter-Harris Type I physeal fracture of upper end of unspecified femur|Salter-Harris Type I physeal fracture of upper end of unspecified femur +C2860088|T037|AB|S79.019|ICD10CM|Sltr-haris Type I physeal fx upper end of unsp femur|Sltr-haris Type I physeal fx upper end of unsp femur +C2860089|T037|AB|S79.019A|ICD10CM|Sltr-haris Type I physeal fx upper end of unsp femur, init|Sltr-haris Type I physeal fx upper end of unsp femur, init +C2860090|T037|AB|S79.019D|ICD10CM|Sltr-haris Type I physl fx upr end unsp femr, 7thD|Sltr-haris Type I physl fx upr end unsp femr, 7thD +C2860091|T037|AB|S79.019G|ICD10CM|Sltr-haris Type I physl fx upr end unsp femr, 7thG|Sltr-haris Type I physl fx upr end unsp femr, 7thG +C2860092|T037|AB|S79.019K|ICD10CM|Sltr-haris Type I physl fx upr end unsp femr, 7thK|Sltr-haris Type I physl fx upr end unsp femr, 7thK +C2860093|T037|AB|S79.019P|ICD10CM|Sltr-haris Type I physl fx upr end unsp femr, 7thP|Sltr-haris Type I physl fx upr end unsp femr, 7thP +C2860094|T037|PT|S79.019S|ICD10CM|Salter-Harris Type I physeal fracture of upper end of unspecified femur, sequela|Salter-Harris Type I physeal fracture of upper end of unspecified femur, sequela +C2860094|T037|AB|S79.019S|ICD10CM|Sltr-haris Type I physl fx upper end of unsp femur, sequela|Sltr-haris Type I physl fx upper end of unsp femur, sequela +C2860095|T037|AB|S79.09|ICD10CM|Other physeal fracture of upper end of femur|Other physeal fracture of upper end of femur +C2860095|T037|HT|S79.09|ICD10CM|Other physeal fracture of upper end of femur|Other physeal fracture of upper end of femur +C2860096|T037|AB|S79.091|ICD10CM|Other physeal fracture of upper end of right femur|Other physeal fracture of upper end of right femur +C2860096|T037|HT|S79.091|ICD10CM|Other physeal fracture of upper end of right femur|Other physeal fracture of upper end of right femur +C2860097|T037|AB|S79.091A|ICD10CM|Oth physeal fracture of upper end of right femur, init|Oth physeal fracture of upper end of right femur, init +C2860097|T037|PT|S79.091A|ICD10CM|Other physeal fracture of upper end of right femur, initial encounter for closed fracture|Other physeal fracture of upper end of right femur, initial encounter for closed fracture +C2860098|T037|AB|S79.091D|ICD10CM|Oth physl fx upper end of r femur, subs for fx w routn heal|Oth physl fx upper end of r femur, subs for fx w routn heal +C2860099|T037|AB|S79.091G|ICD10CM|Oth physl fx upper end of r femur, subs for fx w delay heal|Oth physl fx upper end of r femur, subs for fx w delay heal +C2860100|T037|AB|S79.091K|ICD10CM|Oth physeal fx upper end of r femur, subs for fx w nonunion|Oth physeal fx upper end of r femur, subs for fx w nonunion +C2860100|T037|PT|S79.091K|ICD10CM|Other physeal fracture of upper end of right femur, subsequent encounter for fracture with nonunion|Other physeal fracture of upper end of right femur, subsequent encounter for fracture with nonunion +C2860101|T037|AB|S79.091P|ICD10CM|Oth physeal fx upper end of r femur, subs for fx w malunion|Oth physeal fx upper end of r femur, subs for fx w malunion +C2860101|T037|PT|S79.091P|ICD10CM|Other physeal fracture of upper end of right femur, subsequent encounter for fracture with malunion|Other physeal fracture of upper end of right femur, subsequent encounter for fracture with malunion +C2860102|T037|PT|S79.091S|ICD10CM|Other physeal fracture of upper end of right femur, sequela|Other physeal fracture of upper end of right femur, sequela +C2860102|T037|AB|S79.091S|ICD10CM|Other physeal fracture of upper end of right femur, sequela|Other physeal fracture of upper end of right femur, sequela +C2860103|T037|AB|S79.092|ICD10CM|Other physeal fracture of upper end of left femur|Other physeal fracture of upper end of left femur +C2860103|T037|HT|S79.092|ICD10CM|Other physeal fracture of upper end of left femur|Other physeal fracture of upper end of left femur +C2860104|T037|AB|S79.092A|ICD10CM|Oth physeal fracture of upper end of left femur, init|Oth physeal fracture of upper end of left femur, init +C2860104|T037|PT|S79.092A|ICD10CM|Other physeal fracture of upper end of left femur, initial encounter for closed fracture|Other physeal fracture of upper end of left femur, initial encounter for closed fracture +C2860105|T037|AB|S79.092D|ICD10CM|Oth physl fx upper end of l femur, subs for fx w routn heal|Oth physl fx upper end of l femur, subs for fx w routn heal +C2860106|T037|AB|S79.092G|ICD10CM|Oth physl fx upper end of l femur, subs for fx w delay heal|Oth physl fx upper end of l femur, subs for fx w delay heal +C2860107|T037|AB|S79.092K|ICD10CM|Oth physeal fx upper end of l femur, subs for fx w nonunion|Oth physeal fx upper end of l femur, subs for fx w nonunion +C2860107|T037|PT|S79.092K|ICD10CM|Other physeal fracture of upper end of left femur, subsequent encounter for fracture with nonunion|Other physeal fracture of upper end of left femur, subsequent encounter for fracture with nonunion +C2860108|T037|AB|S79.092P|ICD10CM|Oth physeal fx upper end of l femur, subs for fx w malunion|Oth physeal fx upper end of l femur, subs for fx w malunion +C2860108|T037|PT|S79.092P|ICD10CM|Other physeal fracture of upper end of left femur, subsequent encounter for fracture with malunion|Other physeal fracture of upper end of left femur, subsequent encounter for fracture with malunion +C2860109|T037|PT|S79.092S|ICD10CM|Other physeal fracture of upper end of left femur, sequela|Other physeal fracture of upper end of left femur, sequela +C2860109|T037|AB|S79.092S|ICD10CM|Other physeal fracture of upper end of left femur, sequela|Other physeal fracture of upper end of left femur, sequela +C2860110|T037|AB|S79.099|ICD10CM|Other physeal fracture of upper end of unspecified femur|Other physeal fracture of upper end of unspecified femur +C2860110|T037|HT|S79.099|ICD10CM|Other physeal fracture of upper end of unspecified femur|Other physeal fracture of upper end of unspecified femur +C2860111|T037|AB|S79.099A|ICD10CM|Oth physeal fracture of upper end of unsp femur, init|Oth physeal fracture of upper end of unsp femur, init +C2860111|T037|PT|S79.099A|ICD10CM|Other physeal fracture of upper end of unspecified femur, initial encounter for closed fracture|Other physeal fracture of upper end of unspecified femur, initial encounter for closed fracture +C2860112|T037|AB|S79.099D|ICD10CM|Oth physl fx upper end unsp femur, subs for fx w routn heal|Oth physl fx upper end unsp femur, subs for fx w routn heal +C2860113|T037|AB|S79.099G|ICD10CM|Oth physl fx upper end unsp femur, subs for fx w delay heal|Oth physl fx upper end unsp femur, subs for fx w delay heal +C2860114|T037|AB|S79.099K|ICD10CM|Oth physl fx upper end of unsp femur, subs for fx w nonunion|Oth physl fx upper end of unsp femur, subs for fx w nonunion +C2860115|T037|AB|S79.099P|ICD10CM|Oth physl fx upper end of unsp femur, subs for fx w malunion|Oth physl fx upper end of unsp femur, subs for fx w malunion +C2860116|T037|AB|S79.099S|ICD10CM|Other physeal fracture of upper end of unsp femur, sequela|Other physeal fracture of upper end of unsp femur, sequela +C2860116|T037|PT|S79.099S|ICD10CM|Other physeal fracture of upper end of unspecified femur, sequela|Other physeal fracture of upper end of unspecified femur, sequela +C2860117|T037|AB|S79.1|ICD10CM|Physeal fracture of lower end of femur|Physeal fracture of lower end of femur +C2860117|T037|HT|S79.1|ICD10CM|Physeal fracture of lower end of femur|Physeal fracture of lower end of femur +C2860118|T037|AB|S79.10|ICD10CM|Unspecified physeal fracture of lower end of femur|Unspecified physeal fracture of lower end of femur +C2860118|T037|HT|S79.10|ICD10CM|Unspecified physeal fracture of lower end of femur|Unspecified physeal fracture of lower end of femur +C2860119|T037|AB|S79.101|ICD10CM|Unspecified physeal fracture of lower end of right femur|Unspecified physeal fracture of lower end of right femur +C2860119|T037|HT|S79.101|ICD10CM|Unspecified physeal fracture of lower end of right femur|Unspecified physeal fracture of lower end of right femur +C2860120|T037|AB|S79.101A|ICD10CM|Unsp physeal fracture of lower end of right femur, init|Unsp physeal fracture of lower end of right femur, init +C2860120|T037|PT|S79.101A|ICD10CM|Unspecified physeal fracture of lower end of right femur, initial encounter for closed fracture|Unspecified physeal fracture of lower end of right femur, initial encounter for closed fracture +C2860121|T037|AB|S79.101D|ICD10CM|Unsp physl fx lower end of r femur, subs for fx w routn heal|Unsp physl fx lower end of r femur, subs for fx w routn heal +C2860122|T037|AB|S79.101G|ICD10CM|Unsp physl fx lower end of r femur, subs for fx w delay heal|Unsp physl fx lower end of r femur, subs for fx w delay heal +C2860123|T037|AB|S79.101K|ICD10CM|Unsp physeal fx lower end of r femur, subs for fx w nonunion|Unsp physeal fx lower end of r femur, subs for fx w nonunion +C2860124|T037|AB|S79.101P|ICD10CM|Unsp physeal fx lower end of r femur, subs for fx w malunion|Unsp physeal fx lower end of r femur, subs for fx w malunion +C2860125|T037|AB|S79.101S|ICD10CM|Unsp physeal fracture of lower end of right femur, sequela|Unsp physeal fracture of lower end of right femur, sequela +C2860125|T037|PT|S79.101S|ICD10CM|Unspecified physeal fracture of lower end of right femur, sequela|Unspecified physeal fracture of lower end of right femur, sequela +C2860126|T037|AB|S79.102|ICD10CM|Unspecified physeal fracture of lower end of left femur|Unspecified physeal fracture of lower end of left femur +C2860126|T037|HT|S79.102|ICD10CM|Unspecified physeal fracture of lower end of left femur|Unspecified physeal fracture of lower end of left femur +C2860127|T037|AB|S79.102A|ICD10CM|Unsp physeal fracture of lower end of left femur, init|Unsp physeal fracture of lower end of left femur, init +C2860127|T037|PT|S79.102A|ICD10CM|Unspecified physeal fracture of lower end of left femur, initial encounter for closed fracture|Unspecified physeal fracture of lower end of left femur, initial encounter for closed fracture +C2860128|T037|AB|S79.102D|ICD10CM|Unsp physl fx lower end of l femur, subs for fx w routn heal|Unsp physl fx lower end of l femur, subs for fx w routn heal +C2860129|T037|AB|S79.102G|ICD10CM|Unsp physl fx lower end of l femur, subs for fx w delay heal|Unsp physl fx lower end of l femur, subs for fx w delay heal +C2860130|T037|AB|S79.102K|ICD10CM|Unsp physeal fx lower end of l femur, subs for fx w nonunion|Unsp physeal fx lower end of l femur, subs for fx w nonunion +C2860131|T037|AB|S79.102P|ICD10CM|Unsp physeal fx lower end of l femur, subs for fx w malunion|Unsp physeal fx lower end of l femur, subs for fx w malunion +C2860132|T037|AB|S79.102S|ICD10CM|Unsp physeal fracture of lower end of left femur, sequela|Unsp physeal fracture of lower end of left femur, sequela +C2860132|T037|PT|S79.102S|ICD10CM|Unspecified physeal fracture of lower end of left femur, sequela|Unspecified physeal fracture of lower end of left femur, sequela +C2860133|T037|AB|S79.109|ICD10CM|Unsp physeal fracture of lower end of unspecified femur|Unsp physeal fracture of lower end of unspecified femur +C2860133|T037|HT|S79.109|ICD10CM|Unspecified physeal fracture of lower end of unspecified femur|Unspecified physeal fracture of lower end of unspecified femur +C2860134|T037|AB|S79.109A|ICD10CM|Unsp physeal fracture of lower end of unsp femur, init|Unsp physeal fracture of lower end of unsp femur, init +C2860135|T037|AB|S79.109D|ICD10CM|Unsp physl fx lower end unsp femur, subs for fx w routn heal|Unsp physl fx lower end unsp femur, subs for fx w routn heal +C2860136|T037|AB|S79.109G|ICD10CM|Unsp physl fx lower end unsp femur, subs for fx w delay heal|Unsp physl fx lower end unsp femur, subs for fx w delay heal +C2860137|T037|AB|S79.109K|ICD10CM|Unsp physl fx lower end unsp femur, subs for fx w nonunion|Unsp physl fx lower end unsp femur, subs for fx w nonunion +C2860138|T037|AB|S79.109P|ICD10CM|Unsp physl fx lower end unsp femur, subs for fx w malunion|Unsp physl fx lower end unsp femur, subs for fx w malunion +C2860139|T037|AB|S79.109S|ICD10CM|Unsp physeal fracture of lower end of unsp femur, sequela|Unsp physeal fracture of lower end of unsp femur, sequela +C2860139|T037|PT|S79.109S|ICD10CM|Unspecified physeal fracture of lower end of unspecified femur, sequela|Unspecified physeal fracture of lower end of unspecified femur, sequela +C2860140|T037|AB|S79.11|ICD10CM|Salter-Harris Type I physeal fracture of lower end of femur|Salter-Harris Type I physeal fracture of lower end of femur +C2860140|T037|HT|S79.11|ICD10CM|Salter-Harris Type I physeal fracture of lower end of femur|Salter-Harris Type I physeal fracture of lower end of femur +C2860141|T037|HT|S79.111|ICD10CM|Salter-Harris Type I physeal fracture of lower end of right femur|Salter-Harris Type I physeal fracture of lower end of right femur +C2860141|T037|AB|S79.111|ICD10CM|Sltr-haris Type I physeal fx lower end of right femur|Sltr-haris Type I physeal fx lower end of right femur +C2860142|T037|AB|S79.111A|ICD10CM|Sltr-haris Type I physeal fx lower end of right femur, init|Sltr-haris Type I physeal fx lower end of right femur, init +C2860143|T037|AB|S79.111D|ICD10CM|Sltr-haris Type I physl fx low end r femr, 7thD|Sltr-haris Type I physl fx low end r femr, 7thD +C2860144|T037|AB|S79.111G|ICD10CM|Sltr-haris Type I physl fx low end r femr, 7thG|Sltr-haris Type I physl fx low end r femr, 7thG +C2860145|T037|AB|S79.111K|ICD10CM|Sltr-haris Type I physl fx low end r femr, 7thK|Sltr-haris Type I physl fx low end r femr, 7thK +C2860146|T037|AB|S79.111P|ICD10CM|Sltr-haris Type I physl fx low end r femr, 7thP|Sltr-haris Type I physl fx low end r femr, 7thP +C2860147|T037|PT|S79.111S|ICD10CM|Salter-Harris Type I physeal fracture of lower end of right femur, sequela|Salter-Harris Type I physeal fracture of lower end of right femur, sequela +C2860147|T037|AB|S79.111S|ICD10CM|Sltr-haris Type I physeal fx lower end of r femur, sequela|Sltr-haris Type I physeal fx lower end of r femur, sequela +C2860148|T037|HT|S79.112|ICD10CM|Salter-Harris Type I physeal fracture of lower end of left femur|Salter-Harris Type I physeal fracture of lower end of left femur +C2860148|T037|AB|S79.112|ICD10CM|Sltr-haris Type I physeal fx lower end of left femur|Sltr-haris Type I physeal fx lower end of left femur +C2860149|T037|AB|S79.112A|ICD10CM|Sltr-haris Type I physeal fx lower end of left femur, init|Sltr-haris Type I physeal fx lower end of left femur, init +C2860150|T037|AB|S79.112D|ICD10CM|Sltr-haris Type I physl fx low end l femr, 7thD|Sltr-haris Type I physl fx low end l femr, 7thD +C2860151|T037|AB|S79.112G|ICD10CM|Sltr-haris Type I physl fx low end l femr, 7thG|Sltr-haris Type I physl fx low end l femr, 7thG +C2860152|T037|AB|S79.112K|ICD10CM|Sltr-haris Type I physl fx low end l femr, 7thK|Sltr-haris Type I physl fx low end l femr, 7thK +C2860153|T037|AB|S79.112P|ICD10CM|Sltr-haris Type I physl fx low end l femr, 7thP|Sltr-haris Type I physl fx low end l femr, 7thP +C2860154|T037|PT|S79.112S|ICD10CM|Salter-Harris Type I physeal fracture of lower end of left femur, sequela|Salter-Harris Type I physeal fracture of lower end of left femur, sequela +C2860154|T037|AB|S79.112S|ICD10CM|Sltr-haris Type I physeal fx lower end of l femur, sequela|Sltr-haris Type I physeal fx lower end of l femur, sequela +C2860155|T037|HT|S79.119|ICD10CM|Salter-Harris Type I physeal fracture of lower end of unspecified femur|Salter-Harris Type I physeal fracture of lower end of unspecified femur +C2860155|T037|AB|S79.119|ICD10CM|Sltr-haris Type I physeal fx lower end of unsp femur|Sltr-haris Type I physeal fx lower end of unsp femur +C2860156|T037|AB|S79.119A|ICD10CM|Sltr-haris Type I physeal fx lower end of unsp femur, init|Sltr-haris Type I physeal fx lower end of unsp femur, init +C2860157|T037|AB|S79.119D|ICD10CM|Sltr-haris Type I physl fx low end unsp femr, 7thD|Sltr-haris Type I physl fx low end unsp femr, 7thD +C2860158|T037|AB|S79.119G|ICD10CM|Sltr-haris Type I physl fx low end unsp femr, 7thG|Sltr-haris Type I physl fx low end unsp femr, 7thG +C2860159|T037|AB|S79.119K|ICD10CM|Sltr-haris Type I physl fx low end unsp femr, 7thK|Sltr-haris Type I physl fx low end unsp femr, 7thK +C2860160|T037|AB|S79.119P|ICD10CM|Sltr-haris Type I physl fx low end unsp femr, 7thP|Sltr-haris Type I physl fx low end unsp femr, 7thP +C2860161|T037|PT|S79.119S|ICD10CM|Salter-Harris Type I physeal fracture of lower end of unspecified femur, sequela|Salter-Harris Type I physeal fracture of lower end of unspecified femur, sequela +C2860161|T037|AB|S79.119S|ICD10CM|Sltr-haris Type I physl fx lower end of unsp femur, sequela|Sltr-haris Type I physl fx lower end of unsp femur, sequela +C2860162|T037|AB|S79.12|ICD10CM|Salter-Harris Type II physeal fracture of lower end of femur|Salter-Harris Type II physeal fracture of lower end of femur +C2860162|T037|HT|S79.12|ICD10CM|Salter-Harris Type II physeal fracture of lower end of femur|Salter-Harris Type II physeal fracture of lower end of femur +C2860163|T037|HT|S79.121|ICD10CM|Salter-Harris Type II physeal fracture of lower end of right femur|Salter-Harris Type II physeal fracture of lower end of right femur +C2860163|T037|AB|S79.121|ICD10CM|Sltr-haris Type II physeal fx lower end of right femur|Sltr-haris Type II physeal fx lower end of right femur +C2860164|T037|AB|S79.121A|ICD10CM|Sltr-haris Type II physeal fx lower end of right femur, init|Sltr-haris Type II physeal fx lower end of right femur, init +C2860165|T037|AB|S79.121D|ICD10CM|Sltr-haris Type II physl fx low end r femr, 7thD|Sltr-haris Type II physl fx low end r femr, 7thD +C2860166|T037|AB|S79.121G|ICD10CM|Sltr-haris Type II physl fx low end r femr, 7thG|Sltr-haris Type II physl fx low end r femr, 7thG +C2860167|T037|AB|S79.121K|ICD10CM|Sltr-haris Type II physl fx low end r femr, 7thK|Sltr-haris Type II physl fx low end r femr, 7thK +C2860168|T037|AB|S79.121P|ICD10CM|Sltr-haris Type II physl fx low end r femr, 7thP|Sltr-haris Type II physl fx low end r femr, 7thP +C2860169|T037|PT|S79.121S|ICD10CM|Salter-Harris Type II physeal fracture of lower end of right femur, sequela|Salter-Harris Type II physeal fracture of lower end of right femur, sequela +C2860169|T037|AB|S79.121S|ICD10CM|Sltr-haris Type II physeal fx lower end of r femur, sequela|Sltr-haris Type II physeal fx lower end of r femur, sequela +C2860170|T037|HT|S79.122|ICD10CM|Salter-Harris Type II physeal fracture of lower end of left femur|Salter-Harris Type II physeal fracture of lower end of left femur +C2860170|T037|AB|S79.122|ICD10CM|Sltr-haris Type II physeal fx lower end of left femur|Sltr-haris Type II physeal fx lower end of left femur +C2860171|T037|AB|S79.122A|ICD10CM|Sltr-haris Type II physeal fx lower end of left femur, init|Sltr-haris Type II physeal fx lower end of left femur, init +C2860172|T037|AB|S79.122D|ICD10CM|Sltr-haris Type II physl fx low end l femr, 7thD|Sltr-haris Type II physl fx low end l femr, 7thD +C2860173|T037|AB|S79.122G|ICD10CM|Sltr-haris Type II physl fx low end l femr, 7thG|Sltr-haris Type II physl fx low end l femr, 7thG +C2860174|T037|AB|S79.122K|ICD10CM|Sltr-haris Type II physl fx low end l femr, 7thK|Sltr-haris Type II physl fx low end l femr, 7thK +C2860175|T037|AB|S79.122P|ICD10CM|Sltr-haris Type II physl fx low end l femr, 7thP|Sltr-haris Type II physl fx low end l femr, 7thP +C2860176|T037|PT|S79.122S|ICD10CM|Salter-Harris Type II physeal fracture of lower end of left femur, sequela|Salter-Harris Type II physeal fracture of lower end of left femur, sequela +C2860176|T037|AB|S79.122S|ICD10CM|Sltr-haris Type II physeal fx lower end of l femur, sequela|Sltr-haris Type II physeal fx lower end of l femur, sequela +C2860177|T037|HT|S79.129|ICD10CM|Salter-Harris Type II physeal fracture of lower end of unspecified femur|Salter-Harris Type II physeal fracture of lower end of unspecified femur +C2860177|T037|AB|S79.129|ICD10CM|Sltr-haris Type II physeal fx lower end of unsp femur|Sltr-haris Type II physeal fx lower end of unsp femur +C2860178|T037|AB|S79.129A|ICD10CM|Sltr-haris Type II physeal fx lower end of unsp femur, init|Sltr-haris Type II physeal fx lower end of unsp femur, init +C2860179|T037|AB|S79.129D|ICD10CM|Sltr-haris Type II physl fx low end unsp femr, 7thD|Sltr-haris Type II physl fx low end unsp femr, 7thD +C2860180|T037|AB|S79.129G|ICD10CM|Sltr-haris Type II physl fx low end unsp femr, 7thG|Sltr-haris Type II physl fx low end unsp femr, 7thG +C2860181|T037|AB|S79.129K|ICD10CM|Sltr-haris Type II physl fx low end unsp femr, 7thK|Sltr-haris Type II physl fx low end unsp femr, 7thK +C2860182|T037|AB|S79.129P|ICD10CM|Sltr-haris Type II physl fx low end unsp femr, 7thP|Sltr-haris Type II physl fx low end unsp femr, 7thP +C2860183|T037|PT|S79.129S|ICD10CM|Salter-Harris Type II physeal fracture of lower end of unspecified femur, sequela|Salter-Harris Type II physeal fracture of lower end of unspecified femur, sequela +C2860183|T037|AB|S79.129S|ICD10CM|Sltr-haris Type II physl fx lower end of unsp femur, sequela|Sltr-haris Type II physl fx lower end of unsp femur, sequela +C2860184|T037|HT|S79.13|ICD10CM|Salter-Harris Type III physeal fracture of lower end of femur|Salter-Harris Type III physeal fracture of lower end of femur +C2860184|T037|AB|S79.13|ICD10CM|Sltr-haris Type III physeal fracture of lower end of femur|Sltr-haris Type III physeal fracture of lower end of femur +C2860185|T037|HT|S79.131|ICD10CM|Salter-Harris Type III physeal fracture of lower end of right femur|Salter-Harris Type III physeal fracture of lower end of right femur +C2860185|T037|AB|S79.131|ICD10CM|Sltr-haris Type III physeal fx lower end of right femur|Sltr-haris Type III physeal fx lower end of right femur +C2860186|T037|AB|S79.131A|ICD10CM|Sltr-haris Type III physeal fx lower end of r femur, init|Sltr-haris Type III physeal fx lower end of r femur, init +C2860187|T037|AB|S79.131D|ICD10CM|Sltr-haris Type III physl fx low end r femr, 7thD|Sltr-haris Type III physl fx low end r femr, 7thD +C2860188|T037|AB|S79.131G|ICD10CM|Sltr-haris Type III physl fx low end r femr, 7thG|Sltr-haris Type III physl fx low end r femr, 7thG +C2860189|T037|AB|S79.131K|ICD10CM|Sltr-haris Type III physl fx low end r femr, 7thK|Sltr-haris Type III physl fx low end r femr, 7thK +C2860190|T037|AB|S79.131P|ICD10CM|Sltr-haris Type III physl fx low end r femr, 7thP|Sltr-haris Type III physl fx low end r femr, 7thP +C2860191|T037|PT|S79.131S|ICD10CM|Salter-Harris Type III physeal fracture of lower end of right femur, sequela|Salter-Harris Type III physeal fracture of lower end of right femur, sequela +C2860191|T037|AB|S79.131S|ICD10CM|Sltr-haris Type III physeal fx lower end of r femur, sequela|Sltr-haris Type III physeal fx lower end of r femur, sequela +C2860192|T037|HT|S79.132|ICD10CM|Salter-Harris Type III physeal fracture of lower end of left femur|Salter-Harris Type III physeal fracture of lower end of left femur +C2860192|T037|AB|S79.132|ICD10CM|Sltr-haris Type III physeal fx lower end of left femur|Sltr-haris Type III physeal fx lower end of left femur +C2860193|T037|AB|S79.132A|ICD10CM|Sltr-haris Type III physeal fx lower end of left femur, init|Sltr-haris Type III physeal fx lower end of left femur, init +C2860194|T037|AB|S79.132D|ICD10CM|Sltr-haris Type III physl fx low end l femr, 7thD|Sltr-haris Type III physl fx low end l femr, 7thD +C2860195|T037|AB|S79.132G|ICD10CM|Sltr-haris Type III physl fx low end l femr, 7thG|Sltr-haris Type III physl fx low end l femr, 7thG +C2860196|T037|AB|S79.132K|ICD10CM|Sltr-haris Type III physl fx low end l femr, 7thK|Sltr-haris Type III physl fx low end l femr, 7thK +C2860197|T037|AB|S79.132P|ICD10CM|Sltr-haris Type III physl fx low end l femr, 7thP|Sltr-haris Type III physl fx low end l femr, 7thP +C2860198|T037|PT|S79.132S|ICD10CM|Salter-Harris Type III physeal fracture of lower end of left femur, sequela|Salter-Harris Type III physeal fracture of lower end of left femur, sequela +C2860198|T037|AB|S79.132S|ICD10CM|Sltr-haris Type III physeal fx lower end of l femur, sequela|Sltr-haris Type III physeal fx lower end of l femur, sequela +C2860199|T037|HT|S79.139|ICD10CM|Salter-Harris Type III physeal fracture of lower end of unspecified femur|Salter-Harris Type III physeal fracture of lower end of unspecified femur +C2860199|T037|AB|S79.139|ICD10CM|Sltr-haris Type III physeal fx lower end of unsp femur|Sltr-haris Type III physeal fx lower end of unsp femur +C2860200|T037|AB|S79.139A|ICD10CM|Sltr-haris Type III physeal fx lower end of unsp femur, init|Sltr-haris Type III physeal fx lower end of unsp femur, init +C2860201|T037|AB|S79.139D|ICD10CM|Sltr-haris Type III physl fx low end unsp femr, 7thD|Sltr-haris Type III physl fx low end unsp femr, 7thD +C2860202|T037|AB|S79.139G|ICD10CM|Sltr-haris Type III physl fx low end unsp femr, 7thG|Sltr-haris Type III physl fx low end unsp femr, 7thG +C2860203|T037|AB|S79.139K|ICD10CM|Sltr-haris Type III physl fx low end unsp femr, 7thK|Sltr-haris Type III physl fx low end unsp femr, 7thK +C2860204|T037|AB|S79.139P|ICD10CM|Sltr-haris Type III physl fx low end unsp femr, 7thP|Sltr-haris Type III physl fx low end unsp femr, 7thP +C2860205|T037|PT|S79.139S|ICD10CM|Salter-Harris Type III physeal fracture of lower end of unspecified femur, sequela|Salter-Harris Type III physeal fracture of lower end of unspecified femur, sequela +C2860205|T037|AB|S79.139S|ICD10CM|Sltr-haris Type III physl fx lower end of unsp femur, sqla|Sltr-haris Type III physl fx lower end of unsp femur, sqla +C2860206|T037|AB|S79.14|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of femur|Salter-Harris Type IV physeal fracture of lower end of femur +C2860206|T037|HT|S79.14|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of femur|Salter-Harris Type IV physeal fracture of lower end of femur +C2860207|T037|HT|S79.141|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of right femur|Salter-Harris Type IV physeal fracture of lower end of right femur +C2860207|T037|AB|S79.141|ICD10CM|Sltr-haris Type IV physeal fx lower end of right femur|Sltr-haris Type IV physeal fx lower end of right femur +C2860208|T037|AB|S79.141A|ICD10CM|Sltr-haris Type IV physeal fx lower end of right femur, init|Sltr-haris Type IV physeal fx lower end of right femur, init +C2860209|T037|AB|S79.141D|ICD10CM|Sltr-haris Type IV physl fx low end r femr, 7thD|Sltr-haris Type IV physl fx low end r femr, 7thD +C2860210|T037|AB|S79.141G|ICD10CM|Sltr-haris Type IV physl fx low end r femr, 7thG|Sltr-haris Type IV physl fx low end r femr, 7thG +C2860211|T037|AB|S79.141K|ICD10CM|Sltr-haris Type IV physl fx low end r femr, 7thK|Sltr-haris Type IV physl fx low end r femr, 7thK +C2860212|T037|AB|S79.141P|ICD10CM|Sltr-haris Type IV physl fx low end r femr, 7thP|Sltr-haris Type IV physl fx low end r femr, 7thP +C2860213|T037|PT|S79.141S|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of right femur, sequela|Salter-Harris Type IV physeal fracture of lower end of right femur, sequela +C2860213|T037|AB|S79.141S|ICD10CM|Sltr-haris Type IV physeal fx lower end of r femur, sequela|Sltr-haris Type IV physeal fx lower end of r femur, sequela +C2860214|T037|HT|S79.142|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of left femur|Salter-Harris Type IV physeal fracture of lower end of left femur +C2860214|T037|AB|S79.142|ICD10CM|Sltr-haris Type IV physeal fx lower end of left femur|Sltr-haris Type IV physeal fx lower end of left femur +C2860215|T037|AB|S79.142A|ICD10CM|Sltr-haris Type IV physeal fx lower end of left femur, init|Sltr-haris Type IV physeal fx lower end of left femur, init +C2860216|T037|AB|S79.142D|ICD10CM|Sltr-haris Type IV physl fx low end l femr, 7thD|Sltr-haris Type IV physl fx low end l femr, 7thD +C2860217|T037|AB|S79.142G|ICD10CM|Sltr-haris Type IV physl fx low end l femr, 7thG|Sltr-haris Type IV physl fx low end l femr, 7thG +C2860218|T037|AB|S79.142K|ICD10CM|Sltr-haris Type IV physl fx low end l femr, 7thK|Sltr-haris Type IV physl fx low end l femr, 7thK +C2860219|T037|AB|S79.142P|ICD10CM|Sltr-haris Type IV physl fx low end l femr, 7thP|Sltr-haris Type IV physl fx low end l femr, 7thP +C2860220|T037|PT|S79.142S|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of left femur, sequela|Salter-Harris Type IV physeal fracture of lower end of left femur, sequela +C2860220|T037|AB|S79.142S|ICD10CM|Sltr-haris Type IV physeal fx lower end of l femur, sequela|Sltr-haris Type IV physeal fx lower end of l femur, sequela +C2860221|T037|HT|S79.149|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of unspecified femur|Salter-Harris Type IV physeal fracture of lower end of unspecified femur +C2860221|T037|AB|S79.149|ICD10CM|Sltr-haris Type IV physeal fx lower end of unsp femur|Sltr-haris Type IV physeal fx lower end of unsp femur +C2860222|T037|AB|S79.149A|ICD10CM|Sltr-haris Type IV physeal fx lower end of unsp femur, init|Sltr-haris Type IV physeal fx lower end of unsp femur, init +C2860223|T037|AB|S79.149D|ICD10CM|Sltr-haris Type IV physl fx low end unsp femr, 7thD|Sltr-haris Type IV physl fx low end unsp femr, 7thD +C2860224|T037|AB|S79.149G|ICD10CM|Sltr-haris Type IV physl fx low end unsp femr, 7thG|Sltr-haris Type IV physl fx low end unsp femr, 7thG +C2860225|T037|AB|S79.149K|ICD10CM|Sltr-haris Type IV physl fx low end unsp femr, 7thK|Sltr-haris Type IV physl fx low end unsp femr, 7thK +C2860226|T037|AB|S79.149P|ICD10CM|Sltr-haris Type IV physl fx low end unsp femr, 7thP|Sltr-haris Type IV physl fx low end unsp femr, 7thP +C2860227|T037|PT|S79.149S|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of unspecified femur, sequela|Salter-Harris Type IV physeal fracture of lower end of unspecified femur, sequela +C2860227|T037|AB|S79.149S|ICD10CM|Sltr-haris Type IV physl fx lower end of unsp femur, sequela|Sltr-haris Type IV physl fx lower end of unsp femur, sequela +C2860228|T037|AB|S79.19|ICD10CM|Other physeal fracture of lower end of femur|Other physeal fracture of lower end of femur +C2860228|T037|HT|S79.19|ICD10CM|Other physeal fracture of lower end of femur|Other physeal fracture of lower end of femur +C2860229|T037|AB|S79.191|ICD10CM|Other physeal fracture of lower end of right femur|Other physeal fracture of lower end of right femur +C2860229|T037|HT|S79.191|ICD10CM|Other physeal fracture of lower end of right femur|Other physeal fracture of lower end of right femur +C2860230|T037|AB|S79.191A|ICD10CM|Oth physeal fracture of lower end of right femur, init|Oth physeal fracture of lower end of right femur, init +C2860230|T037|PT|S79.191A|ICD10CM|Other physeal fracture of lower end of right femur, initial encounter for closed fracture|Other physeal fracture of lower end of right femur, initial encounter for closed fracture +C2860231|T037|AB|S79.191D|ICD10CM|Oth physl fx lower end of r femur, subs for fx w routn heal|Oth physl fx lower end of r femur, subs for fx w routn heal +C2860232|T037|AB|S79.191G|ICD10CM|Oth physl fx lower end of r femur, subs for fx w delay heal|Oth physl fx lower end of r femur, subs for fx w delay heal +C2860233|T037|AB|S79.191K|ICD10CM|Oth physeal fx lower end of r femur, subs for fx w nonunion|Oth physeal fx lower end of r femur, subs for fx w nonunion +C2860233|T037|PT|S79.191K|ICD10CM|Other physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion|Other physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion +C2860234|T037|AB|S79.191P|ICD10CM|Oth physeal fx lower end of r femur, subs for fx w malunion|Oth physeal fx lower end of r femur, subs for fx w malunion +C2860234|T037|PT|S79.191P|ICD10CM|Other physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion|Other physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion +C2860235|T037|PT|S79.191S|ICD10CM|Other physeal fracture of lower end of right femur, sequela|Other physeal fracture of lower end of right femur, sequela +C2860235|T037|AB|S79.191S|ICD10CM|Other physeal fracture of lower end of right femur, sequela|Other physeal fracture of lower end of right femur, sequela +C2860236|T037|AB|S79.192|ICD10CM|Other physeal fracture of lower end of left femur|Other physeal fracture of lower end of left femur +C2860236|T037|HT|S79.192|ICD10CM|Other physeal fracture of lower end of left femur|Other physeal fracture of lower end of left femur +C2860237|T037|AB|S79.192A|ICD10CM|Oth physeal fracture of lower end of left femur, init|Oth physeal fracture of lower end of left femur, init +C2860237|T037|PT|S79.192A|ICD10CM|Other physeal fracture of lower end of left femur, initial encounter for closed fracture|Other physeal fracture of lower end of left femur, initial encounter for closed fracture +C2860238|T037|AB|S79.192D|ICD10CM|Oth physl fx lower end of l femur, subs for fx w routn heal|Oth physl fx lower end of l femur, subs for fx w routn heal +C2860239|T037|AB|S79.192G|ICD10CM|Oth physl fx lower end of l femur, subs for fx w delay heal|Oth physl fx lower end of l femur, subs for fx w delay heal +C2860240|T037|AB|S79.192K|ICD10CM|Oth physeal fx lower end of l femur, subs for fx w nonunion|Oth physeal fx lower end of l femur, subs for fx w nonunion +C2860240|T037|PT|S79.192K|ICD10CM|Other physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion|Other physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion +C2860241|T037|AB|S79.192P|ICD10CM|Oth physeal fx lower end of l femur, subs for fx w malunion|Oth physeal fx lower end of l femur, subs for fx w malunion +C2860241|T037|PT|S79.192P|ICD10CM|Other physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion|Other physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion +C2860242|T037|PT|S79.192S|ICD10CM|Other physeal fracture of lower end of left femur, sequela|Other physeal fracture of lower end of left femur, sequela +C2860242|T037|AB|S79.192S|ICD10CM|Other physeal fracture of lower end of left femur, sequela|Other physeal fracture of lower end of left femur, sequela +C2860243|T037|AB|S79.199|ICD10CM|Other physeal fracture of lower end of unspecified femur|Other physeal fracture of lower end of unspecified femur +C2860243|T037|HT|S79.199|ICD10CM|Other physeal fracture of lower end of unspecified femur|Other physeal fracture of lower end of unspecified femur +C2860244|T037|AB|S79.199A|ICD10CM|Oth physeal fracture of lower end of unsp femur, init|Oth physeal fracture of lower end of unsp femur, init +C2860244|T037|PT|S79.199A|ICD10CM|Other physeal fracture of lower end of unspecified femur, initial encounter for closed fracture|Other physeal fracture of lower end of unspecified femur, initial encounter for closed fracture +C2860245|T037|AB|S79.199D|ICD10CM|Oth physl fx lower end unsp femur, subs for fx w routn heal|Oth physl fx lower end unsp femur, subs for fx w routn heal +C2860246|T037|AB|S79.199G|ICD10CM|Oth physl fx lower end unsp femur, subs for fx w delay heal|Oth physl fx lower end unsp femur, subs for fx w delay heal +C2860247|T037|AB|S79.199K|ICD10CM|Oth physl fx lower end of unsp femur, subs for fx w nonunion|Oth physl fx lower end of unsp femur, subs for fx w nonunion +C2860248|T037|AB|S79.199P|ICD10CM|Oth physl fx lower end of unsp femur, subs for fx w malunion|Oth physl fx lower end of unsp femur, subs for fx w malunion +C2860249|T037|AB|S79.199S|ICD10CM|Other physeal fracture of lower end of unsp femur, sequela|Other physeal fracture of lower end of unsp femur, sequela +C2860249|T037|PT|S79.199S|ICD10CM|Other physeal fracture of lower end of unspecified femur, sequela|Other physeal fracture of lower end of unspecified femur, sequela +C0495943|T037|PT|S79.7|ICD10|Multiple injuries of hip and thigh|Multiple injuries of hip and thigh +C0478331|T037|PT|S79.8|ICD10|Other specified injuries of hip and thigh|Other specified injuries of hip and thigh +C0478331|T037|HT|S79.8|ICD10CM|Other specified injuries of hip and thigh|Other specified injuries of hip and thigh +C0478331|T037|AB|S79.8|ICD10CM|Other specified injuries of hip and thigh|Other specified injuries of hip and thigh +C2860250|T037|AB|S79.81|ICD10CM|Other specified injuries of hip|Other specified injuries of hip +C2860250|T037|HT|S79.81|ICD10CM|Other specified injuries of hip|Other specified injuries of hip +C2860251|T037|AB|S79.811|ICD10CM|Other specified injuries of right hip|Other specified injuries of right hip +C2860251|T037|HT|S79.811|ICD10CM|Other specified injuries of right hip|Other specified injuries of right hip +C2860252|T037|AB|S79.811A|ICD10CM|Other specified injuries of right hip, initial encounter|Other specified injuries of right hip, initial encounter +C2860252|T037|PT|S79.811A|ICD10CM|Other specified injuries of right hip, initial encounter|Other specified injuries of right hip, initial encounter +C2860253|T037|AB|S79.811D|ICD10CM|Other specified injuries of right hip, subsequent encounter|Other specified injuries of right hip, subsequent encounter +C2860253|T037|PT|S79.811D|ICD10CM|Other specified injuries of right hip, subsequent encounter|Other specified injuries of right hip, subsequent encounter +C2860254|T037|AB|S79.811S|ICD10CM|Other specified injuries of right hip, sequela|Other specified injuries of right hip, sequela +C2860254|T037|PT|S79.811S|ICD10CM|Other specified injuries of right hip, sequela|Other specified injuries of right hip, sequela +C2860255|T037|AB|S79.812|ICD10CM|Other specified injuries of left hip|Other specified injuries of left hip +C2860255|T037|HT|S79.812|ICD10CM|Other specified injuries of left hip|Other specified injuries of left hip +C2860256|T037|AB|S79.812A|ICD10CM|Other specified injuries of left hip, initial encounter|Other specified injuries of left hip, initial encounter +C2860256|T037|PT|S79.812A|ICD10CM|Other specified injuries of left hip, initial encounter|Other specified injuries of left hip, initial encounter +C2860257|T037|AB|S79.812D|ICD10CM|Other specified injuries of left hip, subsequent encounter|Other specified injuries of left hip, subsequent encounter +C2860257|T037|PT|S79.812D|ICD10CM|Other specified injuries of left hip, subsequent encounter|Other specified injuries of left hip, subsequent encounter +C2860258|T037|AB|S79.812S|ICD10CM|Other specified injuries of left hip, sequela|Other specified injuries of left hip, sequela +C2860258|T037|PT|S79.812S|ICD10CM|Other specified injuries of left hip, sequela|Other specified injuries of left hip, sequela +C2860259|T037|AB|S79.819|ICD10CM|Other specified injuries of unspecified hip|Other specified injuries of unspecified hip +C2860259|T037|HT|S79.819|ICD10CM|Other specified injuries of unspecified hip|Other specified injuries of unspecified hip +C2860260|T037|AB|S79.819A|ICD10CM|Other specified injuries of unspecified hip, init encntr|Other specified injuries of unspecified hip, init encntr +C2860260|T037|PT|S79.819A|ICD10CM|Other specified injuries of unspecified hip, initial encounter|Other specified injuries of unspecified hip, initial encounter +C2860261|T037|AB|S79.819D|ICD10CM|Other specified injuries of unspecified hip, subs encntr|Other specified injuries of unspecified hip, subs encntr +C2860261|T037|PT|S79.819D|ICD10CM|Other specified injuries of unspecified hip, subsequent encounter|Other specified injuries of unspecified hip, subsequent encounter +C2860262|T037|AB|S79.819S|ICD10CM|Other specified injuries of unspecified hip, sequela|Other specified injuries of unspecified hip, sequela +C2860262|T037|PT|S79.819S|ICD10CM|Other specified injuries of unspecified hip, sequela|Other specified injuries of unspecified hip, sequela +C2860263|T037|AB|S79.82|ICD10CM|Other specified injuries of thigh|Other specified injuries of thigh +C2860263|T037|HT|S79.82|ICD10CM|Other specified injuries of thigh|Other specified injuries of thigh +C2860264|T037|AB|S79.821|ICD10CM|Other specified injuries of right thigh|Other specified injuries of right thigh +C2860264|T037|HT|S79.821|ICD10CM|Other specified injuries of right thigh|Other specified injuries of right thigh +C2860265|T037|AB|S79.821A|ICD10CM|Other specified injuries of right thigh, initial encounter|Other specified injuries of right thigh, initial encounter +C2860265|T037|PT|S79.821A|ICD10CM|Other specified injuries of right thigh, initial encounter|Other specified injuries of right thigh, initial encounter +C2860266|T037|AB|S79.821D|ICD10CM|Other specified injuries of right thigh, subs encntr|Other specified injuries of right thigh, subs encntr +C2860266|T037|PT|S79.821D|ICD10CM|Other specified injuries of right thigh, subsequent encounter|Other specified injuries of right thigh, subsequent encounter +C2860267|T037|AB|S79.821S|ICD10CM|Other specified injuries of right thigh, sequela|Other specified injuries of right thigh, sequela +C2860267|T037|PT|S79.821S|ICD10CM|Other specified injuries of right thigh, sequela|Other specified injuries of right thigh, sequela +C2860268|T037|AB|S79.822|ICD10CM|Other specified injuries of left thigh|Other specified injuries of left thigh +C2860268|T037|HT|S79.822|ICD10CM|Other specified injuries of left thigh|Other specified injuries of left thigh +C2860269|T037|AB|S79.822A|ICD10CM|Other specified injuries of left thigh, initial encounter|Other specified injuries of left thigh, initial encounter +C2860269|T037|PT|S79.822A|ICD10CM|Other specified injuries of left thigh, initial encounter|Other specified injuries of left thigh, initial encounter +C2860270|T037|AB|S79.822D|ICD10CM|Other specified injuries of left thigh, subsequent encounter|Other specified injuries of left thigh, subsequent encounter +C2860270|T037|PT|S79.822D|ICD10CM|Other specified injuries of left thigh, subsequent encounter|Other specified injuries of left thigh, subsequent encounter +C2860271|T037|AB|S79.822S|ICD10CM|Other specified injuries of left thigh, sequela|Other specified injuries of left thigh, sequela +C2860271|T037|PT|S79.822S|ICD10CM|Other specified injuries of left thigh, sequela|Other specified injuries of left thigh, sequela +C2860272|T037|AB|S79.829|ICD10CM|Other specified injuries of unspecified thigh|Other specified injuries of unspecified thigh +C2860272|T037|HT|S79.829|ICD10CM|Other specified injuries of unspecified thigh|Other specified injuries of unspecified thigh +C2860273|T037|AB|S79.829A|ICD10CM|Other specified injuries of unspecified thigh, init encntr|Other specified injuries of unspecified thigh, init encntr +C2860273|T037|PT|S79.829A|ICD10CM|Other specified injuries of unspecified thigh, initial encounter|Other specified injuries of unspecified thigh, initial encounter +C2860274|T037|AB|S79.829D|ICD10CM|Other specified injuries of unspecified thigh, subs encntr|Other specified injuries of unspecified thigh, subs encntr +C2860274|T037|PT|S79.829D|ICD10CM|Other specified injuries of unspecified thigh, subsequent encounter|Other specified injuries of unspecified thigh, subsequent encounter +C2860275|T037|AB|S79.829S|ICD10CM|Other specified injuries of unspecified thigh, sequela|Other specified injuries of unspecified thigh, sequela +C2860275|T037|PT|S79.829S|ICD10CM|Other specified injuries of unspecified thigh, sequela|Other specified injuries of unspecified thigh, sequela +C0272445|T037|HT|S79.9|ICD10CM|Unspecified injury of hip and thigh|Unspecified injury of hip and thigh +C0272445|T037|AB|S79.9|ICD10CM|Unspecified injury of hip and thigh|Unspecified injury of hip and thigh +C0272445|T037|PT|S79.9|ICD10|Unspecified injury of hip and thigh|Unspecified injury of hip and thigh +C2860276|T037|AB|S79.91|ICD10CM|Unspecified injury of hip|Unspecified injury of hip +C2860276|T037|HT|S79.91|ICD10CM|Unspecified injury of hip|Unspecified injury of hip +C2860277|T037|AB|S79.911|ICD10CM|Unspecified injury of right hip|Unspecified injury of right hip +C2860277|T037|HT|S79.911|ICD10CM|Unspecified injury of right hip|Unspecified injury of right hip +C2860278|T037|PT|S79.911A|ICD10CM|Unspecified injury of right hip, initial encounter|Unspecified injury of right hip, initial encounter +C2860278|T037|AB|S79.911A|ICD10CM|Unspecified injury of right hip, initial encounter|Unspecified injury of right hip, initial encounter +C2860279|T037|PT|S79.911D|ICD10CM|Unspecified injury of right hip, subsequent encounter|Unspecified injury of right hip, subsequent encounter +C2860279|T037|AB|S79.911D|ICD10CM|Unspecified injury of right hip, subsequent encounter|Unspecified injury of right hip, subsequent encounter +C2860280|T037|PT|S79.911S|ICD10CM|Unspecified injury of right hip, sequela|Unspecified injury of right hip, sequela +C2860280|T037|AB|S79.911S|ICD10CM|Unspecified injury of right hip, sequela|Unspecified injury of right hip, sequela +C2860281|T037|AB|S79.912|ICD10CM|Unspecified injury of left hip|Unspecified injury of left hip +C2860281|T037|HT|S79.912|ICD10CM|Unspecified injury of left hip|Unspecified injury of left hip +C2860282|T037|PT|S79.912A|ICD10CM|Unspecified injury of left hip, initial encounter|Unspecified injury of left hip, initial encounter +C2860282|T037|AB|S79.912A|ICD10CM|Unspecified injury of left hip, initial encounter|Unspecified injury of left hip, initial encounter +C2860283|T037|PT|S79.912D|ICD10CM|Unspecified injury of left hip, subsequent encounter|Unspecified injury of left hip, subsequent encounter +C2860283|T037|AB|S79.912D|ICD10CM|Unspecified injury of left hip, subsequent encounter|Unspecified injury of left hip, subsequent encounter +C2860284|T037|PT|S79.912S|ICD10CM|Unspecified injury of left hip, sequela|Unspecified injury of left hip, sequela +C2860284|T037|AB|S79.912S|ICD10CM|Unspecified injury of left hip, sequela|Unspecified injury of left hip, sequela +C2860285|T037|AB|S79.919|ICD10CM|Unspecified injury of unspecified hip|Unspecified injury of unspecified hip +C2860285|T037|HT|S79.919|ICD10CM|Unspecified injury of unspecified hip|Unspecified injury of unspecified hip +C2860286|T037|PT|S79.919A|ICD10CM|Unspecified injury of unspecified hip, initial encounter|Unspecified injury of unspecified hip, initial encounter +C2860286|T037|AB|S79.919A|ICD10CM|Unspecified injury of unspecified hip, initial encounter|Unspecified injury of unspecified hip, initial encounter +C2860287|T037|PT|S79.919D|ICD10CM|Unspecified injury of unspecified hip, subsequent encounter|Unspecified injury of unspecified hip, subsequent encounter +C2860287|T037|AB|S79.919D|ICD10CM|Unspecified injury of unspecified hip, subsequent encounter|Unspecified injury of unspecified hip, subsequent encounter +C2860288|T037|PT|S79.919S|ICD10CM|Unspecified injury of unspecified hip, sequela|Unspecified injury of unspecified hip, sequela +C2860288|T037|AB|S79.919S|ICD10CM|Unspecified injury of unspecified hip, sequela|Unspecified injury of unspecified hip, sequela +C2860289|T037|AB|S79.92|ICD10CM|Unspecified injury of thigh|Unspecified injury of thigh +C2860289|T037|HT|S79.92|ICD10CM|Unspecified injury of thigh|Unspecified injury of thigh +C2860290|T037|AB|S79.921|ICD10CM|Unspecified injury of right thigh|Unspecified injury of right thigh +C2860290|T037|HT|S79.921|ICD10CM|Unspecified injury of right thigh|Unspecified injury of right thigh +C2860291|T037|PT|S79.921A|ICD10CM|Unspecified injury of right thigh, initial encounter|Unspecified injury of right thigh, initial encounter +C2860291|T037|AB|S79.921A|ICD10CM|Unspecified injury of right thigh, initial encounter|Unspecified injury of right thigh, initial encounter +C2860292|T037|PT|S79.921D|ICD10CM|Unspecified injury of right thigh, subsequent encounter|Unspecified injury of right thigh, subsequent encounter +C2860292|T037|AB|S79.921D|ICD10CM|Unspecified injury of right thigh, subsequent encounter|Unspecified injury of right thigh, subsequent encounter +C2860293|T037|PT|S79.921S|ICD10CM|Unspecified injury of right thigh, sequela|Unspecified injury of right thigh, sequela +C2860293|T037|AB|S79.921S|ICD10CM|Unspecified injury of right thigh, sequela|Unspecified injury of right thigh, sequela +C2860294|T037|AB|S79.922|ICD10CM|Unspecified injury of left thigh|Unspecified injury of left thigh +C2860294|T037|HT|S79.922|ICD10CM|Unspecified injury of left thigh|Unspecified injury of left thigh +C2860295|T037|PT|S79.922A|ICD10CM|Unspecified injury of left thigh, initial encounter|Unspecified injury of left thigh, initial encounter +C2860295|T037|AB|S79.922A|ICD10CM|Unspecified injury of left thigh, initial encounter|Unspecified injury of left thigh, initial encounter +C2860296|T037|PT|S79.922D|ICD10CM|Unspecified injury of left thigh, subsequent encounter|Unspecified injury of left thigh, subsequent encounter +C2860296|T037|AB|S79.922D|ICD10CM|Unspecified injury of left thigh, subsequent encounter|Unspecified injury of left thigh, subsequent encounter +C2860297|T037|PT|S79.922S|ICD10CM|Unspecified injury of left thigh, sequela|Unspecified injury of left thigh, sequela +C2860297|T037|AB|S79.922S|ICD10CM|Unspecified injury of left thigh, sequela|Unspecified injury of left thigh, sequela +C2860298|T037|AB|S79.929|ICD10CM|Unspecified injury of unspecified thigh|Unspecified injury of unspecified thigh +C2860298|T037|HT|S79.929|ICD10CM|Unspecified injury of unspecified thigh|Unspecified injury of unspecified thigh +C2860299|T037|PT|S79.929A|ICD10CM|Unspecified injury of unspecified thigh, initial encounter|Unspecified injury of unspecified thigh, initial encounter +C2860299|T037|AB|S79.929A|ICD10CM|Unspecified injury of unspecified thigh, initial encounter|Unspecified injury of unspecified thigh, initial encounter +C2860300|T037|AB|S79.929D|ICD10CM|Unspecified injury of unspecified thigh, subs encntr|Unspecified injury of unspecified thigh, subs encntr +C2860300|T037|PT|S79.929D|ICD10CM|Unspecified injury of unspecified thigh, subsequent encounter|Unspecified injury of unspecified thigh, subsequent encounter +C2860301|T037|PT|S79.929S|ICD10CM|Unspecified injury of unspecified thigh, sequela|Unspecified injury of unspecified thigh, sequela +C2860301|T037|AB|S79.929S|ICD10CM|Unspecified injury of unspecified thigh, sequela|Unspecified injury of unspecified thigh, sequela +C2860302|T037|AB|S80|ICD10CM|Superficial injury of knee and lower leg|Superficial injury of knee and lower leg +C2860302|T037|HT|S80|ICD10CM|Superficial injury of knee and lower leg|Superficial injury of knee and lower leg +C0347549|T037|HT|S80|ICD10|Superficial injury of lower leg|Superficial injury of lower leg +C0478332|T037|HT|S80-S89|ICD10CM|Injuries to the knee and lower leg (S80-S89)|Injuries to the knee and lower leg (S80-S89) +C0478332|T037|HT|S80-S89.9|ICD10|Injuries to the knee and lower leg|Injuries to the knee and lower leg +C0160953|T037|PT|S80.0|ICD10|Contusion of knee|Contusion of knee +C0160953|T037|HT|S80.0|ICD10CM|Contusion of knee|Contusion of knee +C0160953|T037|AB|S80.0|ICD10CM|Contusion of knee|Contusion of knee +C2860303|T037|AB|S80.00|ICD10CM|Contusion of unspecified knee|Contusion of unspecified knee +C2860303|T037|HT|S80.00|ICD10CM|Contusion of unspecified knee|Contusion of unspecified knee +C2860304|T037|AB|S80.00XA|ICD10CM|Contusion of unspecified knee, initial encounter|Contusion of unspecified knee, initial encounter +C2860304|T037|PT|S80.00XA|ICD10CM|Contusion of unspecified knee, initial encounter|Contusion of unspecified knee, initial encounter +C2860305|T037|AB|S80.00XD|ICD10CM|Contusion of unspecified knee, subsequent encounter|Contusion of unspecified knee, subsequent encounter +C2860305|T037|PT|S80.00XD|ICD10CM|Contusion of unspecified knee, subsequent encounter|Contusion of unspecified knee, subsequent encounter +C2860306|T037|AB|S80.00XS|ICD10CM|Contusion of unspecified knee, sequela|Contusion of unspecified knee, sequela +C2860306|T037|PT|S80.00XS|ICD10CM|Contusion of unspecified knee, sequela|Contusion of unspecified knee, sequela +C2202283|T037|HT|S80.01|ICD10CM|Contusion of right knee|Contusion of right knee +C2202283|T037|AB|S80.01|ICD10CM|Contusion of right knee|Contusion of right knee +C2860307|T037|AB|S80.01XA|ICD10CM|Contusion of right knee, initial encounter|Contusion of right knee, initial encounter +C2860307|T037|PT|S80.01XA|ICD10CM|Contusion of right knee, initial encounter|Contusion of right knee, initial encounter +C2860308|T037|AB|S80.01XD|ICD10CM|Contusion of right knee, subsequent encounter|Contusion of right knee, subsequent encounter +C2860308|T037|PT|S80.01XD|ICD10CM|Contusion of right knee, subsequent encounter|Contusion of right knee, subsequent encounter +C2860309|T037|AB|S80.01XS|ICD10CM|Contusion of right knee, sequela|Contusion of right knee, sequela +C2860309|T037|PT|S80.01XS|ICD10CM|Contusion of right knee, sequela|Contusion of right knee, sequela +C2142277|T037|HT|S80.02|ICD10CM|Contusion of left knee|Contusion of left knee +C2142277|T037|AB|S80.02|ICD10CM|Contusion of left knee|Contusion of left knee +C2860310|T037|AB|S80.02XA|ICD10CM|Contusion of left knee, initial encounter|Contusion of left knee, initial encounter +C2860310|T037|PT|S80.02XA|ICD10CM|Contusion of left knee, initial encounter|Contusion of left knee, initial encounter +C2860311|T037|AB|S80.02XD|ICD10CM|Contusion of left knee, subsequent encounter|Contusion of left knee, subsequent encounter +C2860311|T037|PT|S80.02XD|ICD10CM|Contusion of left knee, subsequent encounter|Contusion of left knee, subsequent encounter +C2860312|T037|AB|S80.02XS|ICD10CM|Contusion of left knee, sequela|Contusion of left knee, sequela +C2860312|T037|PT|S80.02XS|ICD10CM|Contusion of left knee, sequela|Contusion of left knee, sequela +C0160952|T037|HT|S80.1|ICD10CM|Contusion of lower leg|Contusion of lower leg +C0160952|T037|AB|S80.1|ICD10CM|Contusion of lower leg|Contusion of lower leg +C0478333|T037|PT|S80.1|ICD10|Contusion of other and unspecified parts of lower leg|Contusion of other and unspecified parts of lower leg +C2860313|T037|AB|S80.10|ICD10CM|Contusion of unspecified lower leg|Contusion of unspecified lower leg +C2860313|T037|HT|S80.10|ICD10CM|Contusion of unspecified lower leg|Contusion of unspecified lower leg +C2860314|T037|AB|S80.10XA|ICD10CM|Contusion of unspecified lower leg, initial encounter|Contusion of unspecified lower leg, initial encounter +C2860314|T037|PT|S80.10XA|ICD10CM|Contusion of unspecified lower leg, initial encounter|Contusion of unspecified lower leg, initial encounter +C2860315|T037|AB|S80.10XD|ICD10CM|Contusion of unspecified lower leg, subsequent encounter|Contusion of unspecified lower leg, subsequent encounter +C2860315|T037|PT|S80.10XD|ICD10CM|Contusion of unspecified lower leg, subsequent encounter|Contusion of unspecified lower leg, subsequent encounter +C2860316|T037|AB|S80.10XS|ICD10CM|Contusion of unspecified lower leg, sequela|Contusion of unspecified lower leg, sequela +C2860316|T037|PT|S80.10XS|ICD10CM|Contusion of unspecified lower leg, sequela|Contusion of unspecified lower leg, sequela +C2860317|T037|AB|S80.11|ICD10CM|Contusion of right lower leg|Contusion of right lower leg +C2860317|T037|HT|S80.11|ICD10CM|Contusion of right lower leg|Contusion of right lower leg +C2860318|T037|AB|S80.11XA|ICD10CM|Contusion of right lower leg, initial encounter|Contusion of right lower leg, initial encounter +C2860318|T037|PT|S80.11XA|ICD10CM|Contusion of right lower leg, initial encounter|Contusion of right lower leg, initial encounter +C2860319|T037|AB|S80.11XD|ICD10CM|Contusion of right lower leg, subsequent encounter|Contusion of right lower leg, subsequent encounter +C2860319|T037|PT|S80.11XD|ICD10CM|Contusion of right lower leg, subsequent encounter|Contusion of right lower leg, subsequent encounter +C2860320|T037|AB|S80.11XS|ICD10CM|Contusion of right lower leg, sequela|Contusion of right lower leg, sequela +C2860320|T037|PT|S80.11XS|ICD10CM|Contusion of right lower leg, sequela|Contusion of right lower leg, sequela +C2860321|T037|HT|S80.12|ICD10CM|Contusion of left lower leg|Contusion of left lower leg +C2860321|T037|AB|S80.12|ICD10CM|Contusion of left lower leg|Contusion of left lower leg +C2860322|T037|AB|S80.12XA|ICD10CM|Contusion of left lower leg, initial encounter|Contusion of left lower leg, initial encounter +C2860322|T037|PT|S80.12XA|ICD10CM|Contusion of left lower leg, initial encounter|Contusion of left lower leg, initial encounter +C2860323|T037|AB|S80.12XD|ICD10CM|Contusion of left lower leg, subsequent encounter|Contusion of left lower leg, subsequent encounter +C2860323|T037|PT|S80.12XD|ICD10CM|Contusion of left lower leg, subsequent encounter|Contusion of left lower leg, subsequent encounter +C2860324|T037|AB|S80.12XS|ICD10CM|Contusion of left lower leg, sequela|Contusion of left lower leg, sequela +C2860324|T037|PT|S80.12XS|ICD10CM|Contusion of left lower leg, sequela|Contusion of left lower leg, sequela +C2860325|T037|AB|S80.2|ICD10CM|Other superficial injuries of knee|Other superficial injuries of knee +C2860325|T037|HT|S80.2|ICD10CM|Other superficial injuries of knee|Other superficial injuries of knee +C0432860|T037|HT|S80.21|ICD10CM|Abrasion of knee|Abrasion of knee +C0432860|T037|AB|S80.21|ICD10CM|Abrasion of knee|Abrasion of knee +C2041978|T037|AB|S80.211|ICD10CM|Abrasion, right knee|Abrasion, right knee +C2041978|T037|HT|S80.211|ICD10CM|Abrasion, right knee|Abrasion, right knee +C2860326|T037|AB|S80.211A|ICD10CM|Abrasion, right knee, initial encounter|Abrasion, right knee, initial encounter +C2860326|T037|PT|S80.211A|ICD10CM|Abrasion, right knee, initial encounter|Abrasion, right knee, initial encounter +C2860327|T037|AB|S80.211D|ICD10CM|Abrasion, right knee, subsequent encounter|Abrasion, right knee, subsequent encounter +C2860327|T037|PT|S80.211D|ICD10CM|Abrasion, right knee, subsequent encounter|Abrasion, right knee, subsequent encounter +C2860328|T037|AB|S80.211S|ICD10CM|Abrasion, right knee, sequela|Abrasion, right knee, sequela +C2860328|T037|PT|S80.211S|ICD10CM|Abrasion, right knee, sequela|Abrasion, right knee, sequela +C2004763|T037|AB|S80.212|ICD10CM|Abrasion, left knee|Abrasion, left knee +C2004763|T037|HT|S80.212|ICD10CM|Abrasion, left knee|Abrasion, left knee +C2860329|T037|AB|S80.212A|ICD10CM|Abrasion, left knee, initial encounter|Abrasion, left knee, initial encounter +C2860329|T037|PT|S80.212A|ICD10CM|Abrasion, left knee, initial encounter|Abrasion, left knee, initial encounter +C2860330|T037|AB|S80.212D|ICD10CM|Abrasion, left knee, subsequent encounter|Abrasion, left knee, subsequent encounter +C2860330|T037|PT|S80.212D|ICD10CM|Abrasion, left knee, subsequent encounter|Abrasion, left knee, subsequent encounter +C2860331|T037|AB|S80.212S|ICD10CM|Abrasion, left knee, sequela|Abrasion, left knee, sequela +C2860331|T037|PT|S80.212S|ICD10CM|Abrasion, left knee, sequela|Abrasion, left knee, sequela +C2860332|T037|AB|S80.219|ICD10CM|Abrasion, unspecified knee|Abrasion, unspecified knee +C2860332|T037|HT|S80.219|ICD10CM|Abrasion, unspecified knee|Abrasion, unspecified knee +C2860333|T037|AB|S80.219A|ICD10CM|Abrasion, unspecified knee, initial encounter|Abrasion, unspecified knee, initial encounter +C2860333|T037|PT|S80.219A|ICD10CM|Abrasion, unspecified knee, initial encounter|Abrasion, unspecified knee, initial encounter +C2860334|T037|AB|S80.219D|ICD10CM|Abrasion, unspecified knee, subsequent encounter|Abrasion, unspecified knee, subsequent encounter +C2860334|T037|PT|S80.219D|ICD10CM|Abrasion, unspecified knee, subsequent encounter|Abrasion, unspecified knee, subsequent encounter +C2860335|T037|AB|S80.219S|ICD10CM|Abrasion, unspecified knee, sequela|Abrasion, unspecified knee, sequela +C2860335|T037|PT|S80.219S|ICD10CM|Abrasion, unspecified knee, sequela|Abrasion, unspecified knee, sequela +C2860336|T037|AB|S80.22|ICD10CM|Blister (nonthermal) of knee|Blister (nonthermal) of knee +C2860336|T037|HT|S80.22|ICD10CM|Blister (nonthermal) of knee|Blister (nonthermal) of knee +C2860337|T037|AB|S80.221|ICD10CM|Blister (nonthermal), right knee|Blister (nonthermal), right knee +C2860337|T037|HT|S80.221|ICD10CM|Blister (nonthermal), right knee|Blister (nonthermal), right knee +C2860338|T037|AB|S80.221A|ICD10CM|Blister (nonthermal), right knee, initial encounter|Blister (nonthermal), right knee, initial encounter +C2860338|T037|PT|S80.221A|ICD10CM|Blister (nonthermal), right knee, initial encounter|Blister (nonthermal), right knee, initial encounter +C2860339|T037|AB|S80.221D|ICD10CM|Blister (nonthermal), right knee, subsequent encounter|Blister (nonthermal), right knee, subsequent encounter +C2860339|T037|PT|S80.221D|ICD10CM|Blister (nonthermal), right knee, subsequent encounter|Blister (nonthermal), right knee, subsequent encounter +C2860340|T037|AB|S80.221S|ICD10CM|Blister (nonthermal), right knee, sequela|Blister (nonthermal), right knee, sequela +C2860340|T037|PT|S80.221S|ICD10CM|Blister (nonthermal), right knee, sequela|Blister (nonthermal), right knee, sequela +C2860341|T037|AB|S80.222|ICD10CM|Blister (nonthermal), left knee|Blister (nonthermal), left knee +C2860341|T037|HT|S80.222|ICD10CM|Blister (nonthermal), left knee|Blister (nonthermal), left knee +C2860342|T037|AB|S80.222A|ICD10CM|Blister (nonthermal), left knee, initial encounter|Blister (nonthermal), left knee, initial encounter +C2860342|T037|PT|S80.222A|ICD10CM|Blister (nonthermal), left knee, initial encounter|Blister (nonthermal), left knee, initial encounter +C2860343|T037|AB|S80.222D|ICD10CM|Blister (nonthermal), left knee, subsequent encounter|Blister (nonthermal), left knee, subsequent encounter +C2860343|T037|PT|S80.222D|ICD10CM|Blister (nonthermal), left knee, subsequent encounter|Blister (nonthermal), left knee, subsequent encounter +C2860344|T037|AB|S80.222S|ICD10CM|Blister (nonthermal), left knee, sequela|Blister (nonthermal), left knee, sequela +C2860344|T037|PT|S80.222S|ICD10CM|Blister (nonthermal), left knee, sequela|Blister (nonthermal), left knee, sequela +C2860345|T037|AB|S80.229|ICD10CM|Blister (nonthermal), unspecified knee|Blister (nonthermal), unspecified knee +C2860345|T037|HT|S80.229|ICD10CM|Blister (nonthermal), unspecified knee|Blister (nonthermal), unspecified knee +C2860346|T037|AB|S80.229A|ICD10CM|Blister (nonthermal), unspecified knee, initial encounter|Blister (nonthermal), unspecified knee, initial encounter +C2860346|T037|PT|S80.229A|ICD10CM|Blister (nonthermal), unspecified knee, initial encounter|Blister (nonthermal), unspecified knee, initial encounter +C2860347|T037|AB|S80.229D|ICD10CM|Blister (nonthermal), unspecified knee, subsequent encounter|Blister (nonthermal), unspecified knee, subsequent encounter +C2860347|T037|PT|S80.229D|ICD10CM|Blister (nonthermal), unspecified knee, subsequent encounter|Blister (nonthermal), unspecified knee, subsequent encounter +C2860348|T037|AB|S80.229S|ICD10CM|Blister (nonthermal), unspecified knee, sequela|Blister (nonthermal), unspecified knee, sequela +C2860348|T037|PT|S80.229S|ICD10CM|Blister (nonthermal), unspecified knee, sequela|Blister (nonthermal), unspecified knee, sequela +C2860349|T037|HT|S80.24|ICD10CM|External constriction of knee|External constriction of knee +C2860349|T037|AB|S80.24|ICD10CM|External constriction of knee|External constriction of knee +C2860350|T037|AB|S80.241|ICD10CM|External constriction, right knee|External constriction, right knee +C2860350|T037|HT|S80.241|ICD10CM|External constriction, right knee|External constriction, right knee +C2860351|T037|AB|S80.241A|ICD10CM|External constriction, right knee, initial encounter|External constriction, right knee, initial encounter +C2860351|T037|PT|S80.241A|ICD10CM|External constriction, right knee, initial encounter|External constriction, right knee, initial encounter +C2860352|T037|AB|S80.241D|ICD10CM|External constriction, right knee, subsequent encounter|External constriction, right knee, subsequent encounter +C2860352|T037|PT|S80.241D|ICD10CM|External constriction, right knee, subsequent encounter|External constriction, right knee, subsequent encounter +C2860353|T037|AB|S80.241S|ICD10CM|External constriction, right knee, sequela|External constriction, right knee, sequela +C2860353|T037|PT|S80.241S|ICD10CM|External constriction, right knee, sequela|External constriction, right knee, sequela +C2860354|T037|AB|S80.242|ICD10CM|External constriction, left knee|External constriction, left knee +C2860354|T037|HT|S80.242|ICD10CM|External constriction, left knee|External constriction, left knee +C2860355|T037|AB|S80.242A|ICD10CM|External constriction, left knee, initial encounter|External constriction, left knee, initial encounter +C2860355|T037|PT|S80.242A|ICD10CM|External constriction, left knee, initial encounter|External constriction, left knee, initial encounter +C2860356|T037|AB|S80.242D|ICD10CM|External constriction, left knee, subsequent encounter|External constriction, left knee, subsequent encounter +C2860356|T037|PT|S80.242D|ICD10CM|External constriction, left knee, subsequent encounter|External constriction, left knee, subsequent encounter +C2860357|T037|AB|S80.242S|ICD10CM|External constriction, left knee, sequela|External constriction, left knee, sequela +C2860357|T037|PT|S80.242S|ICD10CM|External constriction, left knee, sequela|External constriction, left knee, sequela +C2860358|T037|AB|S80.249|ICD10CM|External constriction, unspecified knee|External constriction, unspecified knee +C2860358|T037|HT|S80.249|ICD10CM|External constriction, unspecified knee|External constriction, unspecified knee +C2860359|T037|AB|S80.249A|ICD10CM|External constriction, unspecified knee, initial encounter|External constriction, unspecified knee, initial encounter +C2860359|T037|PT|S80.249A|ICD10CM|External constriction, unspecified knee, initial encounter|External constriction, unspecified knee, initial encounter +C2860360|T037|AB|S80.249D|ICD10CM|External constriction, unspecified knee, subs encntr|External constriction, unspecified knee, subs encntr +C2860360|T037|PT|S80.249D|ICD10CM|External constriction, unspecified knee, subsequent encounter|External constriction, unspecified knee, subsequent encounter +C2860361|T037|AB|S80.249S|ICD10CM|External constriction, unspecified knee, sequela|External constriction, unspecified knee, sequela +C2860361|T037|PT|S80.249S|ICD10CM|External constriction, unspecified knee, sequela|External constriction, unspecified knee, sequela +C2018810|T037|ET|S80.25|ICD10CM|Splinter in the knee|Splinter in the knee +C2037286|T037|AB|S80.25|ICD10CM|Superficial foreign body of knee|Superficial foreign body of knee +C2037286|T037|HT|S80.25|ICD10CM|Superficial foreign body of knee|Superficial foreign body of knee +C2860362|T037|AB|S80.251|ICD10CM|Superficial foreign body, right knee|Superficial foreign body, right knee +C2860362|T037|HT|S80.251|ICD10CM|Superficial foreign body, right knee|Superficial foreign body, right knee +C2860363|T037|AB|S80.251A|ICD10CM|Superficial foreign body, right knee, initial encounter|Superficial foreign body, right knee, initial encounter +C2860363|T037|PT|S80.251A|ICD10CM|Superficial foreign body, right knee, initial encounter|Superficial foreign body, right knee, initial encounter +C2860364|T037|AB|S80.251D|ICD10CM|Superficial foreign body, right knee, subsequent encounter|Superficial foreign body, right knee, subsequent encounter +C2860364|T037|PT|S80.251D|ICD10CM|Superficial foreign body, right knee, subsequent encounter|Superficial foreign body, right knee, subsequent encounter +C2860365|T037|AB|S80.251S|ICD10CM|Superficial foreign body, right knee, sequela|Superficial foreign body, right knee, sequela +C2860365|T037|PT|S80.251S|ICD10CM|Superficial foreign body, right knee, sequela|Superficial foreign body, right knee, sequela +C2860366|T037|AB|S80.252|ICD10CM|Superficial foreign body, left knee|Superficial foreign body, left knee +C2860366|T037|HT|S80.252|ICD10CM|Superficial foreign body, left knee|Superficial foreign body, left knee +C2860367|T037|AB|S80.252A|ICD10CM|Superficial foreign body, left knee, initial encounter|Superficial foreign body, left knee, initial encounter +C2860367|T037|PT|S80.252A|ICD10CM|Superficial foreign body, left knee, initial encounter|Superficial foreign body, left knee, initial encounter +C2860368|T037|AB|S80.252D|ICD10CM|Superficial foreign body, left knee, subsequent encounter|Superficial foreign body, left knee, subsequent encounter +C2860368|T037|PT|S80.252D|ICD10CM|Superficial foreign body, left knee, subsequent encounter|Superficial foreign body, left knee, subsequent encounter +C2860369|T037|AB|S80.252S|ICD10CM|Superficial foreign body, left knee, sequela|Superficial foreign body, left knee, sequela +C2860369|T037|PT|S80.252S|ICD10CM|Superficial foreign body, left knee, sequela|Superficial foreign body, left knee, sequela +C2860370|T037|AB|S80.259|ICD10CM|Superficial foreign body, unspecified knee|Superficial foreign body, unspecified knee +C2860370|T037|HT|S80.259|ICD10CM|Superficial foreign body, unspecified knee|Superficial foreign body, unspecified knee +C2860371|T037|AB|S80.259A|ICD10CM|Superficial foreign body, unspecified knee, init encntr|Superficial foreign body, unspecified knee, init encntr +C2860371|T037|PT|S80.259A|ICD10CM|Superficial foreign body, unspecified knee, initial encounter|Superficial foreign body, unspecified knee, initial encounter +C2860372|T037|AB|S80.259D|ICD10CM|Superficial foreign body, unspecified knee, subs encntr|Superficial foreign body, unspecified knee, subs encntr +C2860372|T037|PT|S80.259D|ICD10CM|Superficial foreign body, unspecified knee, subsequent encounter|Superficial foreign body, unspecified knee, subsequent encounter +C2860373|T037|AB|S80.259S|ICD10CM|Superficial foreign body, unspecified knee, sequela|Superficial foreign body, unspecified knee, sequela +C2860373|T037|PT|S80.259S|ICD10CM|Superficial foreign body, unspecified knee, sequela|Superficial foreign body, unspecified knee, sequela +C0433036|T037|AB|S80.26|ICD10CM|Insect bite (nonvenomous) of knee|Insect bite (nonvenomous) of knee +C0433036|T037|HT|S80.26|ICD10CM|Insect bite (nonvenomous) of knee|Insect bite (nonvenomous) of knee +C2231590|T037|AB|S80.261|ICD10CM|Insect bite (nonvenomous), right knee|Insect bite (nonvenomous), right knee +C2231590|T037|HT|S80.261|ICD10CM|Insect bite (nonvenomous), right knee|Insect bite (nonvenomous), right knee +C2860374|T037|AB|S80.261A|ICD10CM|Insect bite (nonvenomous), right knee, initial encounter|Insect bite (nonvenomous), right knee, initial encounter +C2860374|T037|PT|S80.261A|ICD10CM|Insect bite (nonvenomous), right knee, initial encounter|Insect bite (nonvenomous), right knee, initial encounter +C2860375|T037|AB|S80.261D|ICD10CM|Insect bite (nonvenomous), right knee, subsequent encounter|Insect bite (nonvenomous), right knee, subsequent encounter +C2860375|T037|PT|S80.261D|ICD10CM|Insect bite (nonvenomous), right knee, subsequent encounter|Insect bite (nonvenomous), right knee, subsequent encounter +C2860376|T037|AB|S80.261S|ICD10CM|Insect bite (nonvenomous), right knee, sequela|Insect bite (nonvenomous), right knee, sequela +C2860376|T037|PT|S80.261S|ICD10CM|Insect bite (nonvenomous), right knee, sequela|Insect bite (nonvenomous), right knee, sequela +C2231591|T037|AB|S80.262|ICD10CM|Insect bite (nonvenomous), left knee|Insect bite (nonvenomous), left knee +C2231591|T037|HT|S80.262|ICD10CM|Insect bite (nonvenomous), left knee|Insect bite (nonvenomous), left knee +C2860377|T037|AB|S80.262A|ICD10CM|Insect bite (nonvenomous), left knee, initial encounter|Insect bite (nonvenomous), left knee, initial encounter +C2860377|T037|PT|S80.262A|ICD10CM|Insect bite (nonvenomous), left knee, initial encounter|Insect bite (nonvenomous), left knee, initial encounter +C2860378|T037|AB|S80.262D|ICD10CM|Insect bite (nonvenomous), left knee, subsequent encounter|Insect bite (nonvenomous), left knee, subsequent encounter +C2860378|T037|PT|S80.262D|ICD10CM|Insect bite (nonvenomous), left knee, subsequent encounter|Insect bite (nonvenomous), left knee, subsequent encounter +C2860379|T037|AB|S80.262S|ICD10CM|Insect bite (nonvenomous), left knee, sequela|Insect bite (nonvenomous), left knee, sequela +C2860379|T037|PT|S80.262S|ICD10CM|Insect bite (nonvenomous), left knee, sequela|Insect bite (nonvenomous), left knee, sequela +C2860380|T037|AB|S80.269|ICD10CM|Insect bite (nonvenomous), unspecified knee|Insect bite (nonvenomous), unspecified knee +C2860380|T037|HT|S80.269|ICD10CM|Insect bite (nonvenomous), unspecified knee|Insect bite (nonvenomous), unspecified knee +C2860381|T037|AB|S80.269A|ICD10CM|Insect bite (nonvenomous), unspecified knee, init encntr|Insect bite (nonvenomous), unspecified knee, init encntr +C2860381|T037|PT|S80.269A|ICD10CM|Insect bite (nonvenomous), unspecified knee, initial encounter|Insect bite (nonvenomous), unspecified knee, initial encounter +C2860382|T037|AB|S80.269D|ICD10CM|Insect bite (nonvenomous), unspecified knee, subs encntr|Insect bite (nonvenomous), unspecified knee, subs encntr +C2860382|T037|PT|S80.269D|ICD10CM|Insect bite (nonvenomous), unspecified knee, subsequent encounter|Insect bite (nonvenomous), unspecified knee, subsequent encounter +C2860383|T037|AB|S80.269S|ICD10CM|Insect bite (nonvenomous), unspecified knee, sequela|Insect bite (nonvenomous), unspecified knee, sequela +C2860383|T037|PT|S80.269S|ICD10CM|Insect bite (nonvenomous), unspecified knee, sequela|Insect bite (nonvenomous), unspecified knee, sequela +C2860384|T037|AB|S80.27|ICD10CM|Other superficial bite of knee|Other superficial bite of knee +C2860384|T037|HT|S80.27|ICD10CM|Other superficial bite of knee|Other superficial bite of knee +C2860385|T037|AB|S80.271|ICD10CM|Other superficial bite of right knee|Other superficial bite of right knee +C2860385|T037|HT|S80.271|ICD10CM|Other superficial bite of right knee|Other superficial bite of right knee +C2860386|T037|AB|S80.271A|ICD10CM|Other superficial bite of right knee, initial encounter|Other superficial bite of right knee, initial encounter +C2860386|T037|PT|S80.271A|ICD10CM|Other superficial bite of right knee, initial encounter|Other superficial bite of right knee, initial encounter +C2860387|T037|AB|S80.271D|ICD10CM|Other superficial bite of right knee, subsequent encounter|Other superficial bite of right knee, subsequent encounter +C2860387|T037|PT|S80.271D|ICD10CM|Other superficial bite of right knee, subsequent encounter|Other superficial bite of right knee, subsequent encounter +C2860388|T037|AB|S80.271S|ICD10CM|Other superficial bite of right knee, sequela|Other superficial bite of right knee, sequela +C2860388|T037|PT|S80.271S|ICD10CM|Other superficial bite of right knee, sequela|Other superficial bite of right knee, sequela +C2860389|T037|AB|S80.272|ICD10CM|Other superficial bite of left knee|Other superficial bite of left knee +C2860389|T037|HT|S80.272|ICD10CM|Other superficial bite of left knee|Other superficial bite of left knee +C2860390|T037|AB|S80.272A|ICD10CM|Other superficial bite of left knee, initial encounter|Other superficial bite of left knee, initial encounter +C2860390|T037|PT|S80.272A|ICD10CM|Other superficial bite of left knee, initial encounter|Other superficial bite of left knee, initial encounter +C2860391|T037|AB|S80.272D|ICD10CM|Other superficial bite of left knee, subsequent encounter|Other superficial bite of left knee, subsequent encounter +C2860391|T037|PT|S80.272D|ICD10CM|Other superficial bite of left knee, subsequent encounter|Other superficial bite of left knee, subsequent encounter +C2860392|T037|AB|S80.272S|ICD10CM|Other superficial bite of left knee, sequela|Other superficial bite of left knee, sequela +C2860392|T037|PT|S80.272S|ICD10CM|Other superficial bite of left knee, sequela|Other superficial bite of left knee, sequela +C2860393|T037|AB|S80.279|ICD10CM|Other superficial bite of unspecified knee|Other superficial bite of unspecified knee +C2860393|T037|HT|S80.279|ICD10CM|Other superficial bite of unspecified knee|Other superficial bite of unspecified knee +C2860394|T037|AB|S80.279A|ICD10CM|Other superficial bite of unspecified knee, init encntr|Other superficial bite of unspecified knee, init encntr +C2860394|T037|PT|S80.279A|ICD10CM|Other superficial bite of unspecified knee, initial encounter|Other superficial bite of unspecified knee, initial encounter +C2860395|T037|AB|S80.279D|ICD10CM|Other superficial bite of unspecified knee, subs encntr|Other superficial bite of unspecified knee, subs encntr +C2860395|T037|PT|S80.279D|ICD10CM|Other superficial bite of unspecified knee, subsequent encounter|Other superficial bite of unspecified knee, subsequent encounter +C2860396|T037|AB|S80.279S|ICD10CM|Other superficial bite of unspecified knee, sequela|Other superficial bite of unspecified knee, sequela +C2860396|T037|PT|S80.279S|ICD10CM|Other superficial bite of unspecified knee, sequela|Other superficial bite of unspecified knee, sequela +C0451964|T037|PT|S80.7|ICD10|Multiple superficial injuries of lower leg|Multiple superficial injuries of lower leg +C0478334|T037|PT|S80.8|ICD10|Other superficial injuries of lower leg|Other superficial injuries of lower leg +C0478334|T037|HT|S80.8|ICD10CM|Other superficial injuries of lower leg|Other superficial injuries of lower leg +C0478334|T037|AB|S80.8|ICD10CM|Other superficial injuries of lower leg|Other superficial injuries of lower leg +C0432861|T037|HT|S80.81|ICD10CM|Abrasion of lower leg|Abrasion of lower leg +C0432861|T037|AB|S80.81|ICD10CM|Abrasion of lower leg|Abrasion of lower leg +C2860397|T037|AB|S80.811|ICD10CM|Abrasion, right lower leg|Abrasion, right lower leg +C2860397|T037|HT|S80.811|ICD10CM|Abrasion, right lower leg|Abrasion, right lower leg +C2860398|T037|AB|S80.811A|ICD10CM|Abrasion, right lower leg, initial encounter|Abrasion, right lower leg, initial encounter +C2860398|T037|PT|S80.811A|ICD10CM|Abrasion, right lower leg, initial encounter|Abrasion, right lower leg, initial encounter +C2860399|T037|AB|S80.811D|ICD10CM|Abrasion, right lower leg, subsequent encounter|Abrasion, right lower leg, subsequent encounter +C2860399|T037|PT|S80.811D|ICD10CM|Abrasion, right lower leg, subsequent encounter|Abrasion, right lower leg, subsequent encounter +C2860400|T037|AB|S80.811S|ICD10CM|Abrasion, right lower leg, sequela|Abrasion, right lower leg, sequela +C2860400|T037|PT|S80.811S|ICD10CM|Abrasion, right lower leg, sequela|Abrasion, right lower leg, sequela +C2860401|T037|AB|S80.812|ICD10CM|Abrasion, left lower leg|Abrasion, left lower leg +C2860401|T037|HT|S80.812|ICD10CM|Abrasion, left lower leg|Abrasion, left lower leg +C2860402|T037|AB|S80.812A|ICD10CM|Abrasion, left lower leg, initial encounter|Abrasion, left lower leg, initial encounter +C2860402|T037|PT|S80.812A|ICD10CM|Abrasion, left lower leg, initial encounter|Abrasion, left lower leg, initial encounter +C2860403|T037|AB|S80.812D|ICD10CM|Abrasion, left lower leg, subsequent encounter|Abrasion, left lower leg, subsequent encounter +C2860403|T037|PT|S80.812D|ICD10CM|Abrasion, left lower leg, subsequent encounter|Abrasion, left lower leg, subsequent encounter +C2860404|T037|AB|S80.812S|ICD10CM|Abrasion, left lower leg, sequela|Abrasion, left lower leg, sequela +C2860404|T037|PT|S80.812S|ICD10CM|Abrasion, left lower leg, sequela|Abrasion, left lower leg, sequela +C2860405|T037|AB|S80.819|ICD10CM|Abrasion, unspecified lower leg|Abrasion, unspecified lower leg +C2860405|T037|HT|S80.819|ICD10CM|Abrasion, unspecified lower leg|Abrasion, unspecified lower leg +C2860406|T037|AB|S80.819A|ICD10CM|Abrasion, unspecified lower leg, initial encounter|Abrasion, unspecified lower leg, initial encounter +C2860406|T037|PT|S80.819A|ICD10CM|Abrasion, unspecified lower leg, initial encounter|Abrasion, unspecified lower leg, initial encounter +C2860407|T037|AB|S80.819D|ICD10CM|Abrasion, unspecified lower leg, subsequent encounter|Abrasion, unspecified lower leg, subsequent encounter +C2860407|T037|PT|S80.819D|ICD10CM|Abrasion, unspecified lower leg, subsequent encounter|Abrasion, unspecified lower leg, subsequent encounter +C2860408|T037|AB|S80.819S|ICD10CM|Abrasion, unspecified lower leg, sequela|Abrasion, unspecified lower leg, sequela +C2860408|T037|PT|S80.819S|ICD10CM|Abrasion, unspecified lower leg, sequela|Abrasion, unspecified lower leg, sequela +C2860409|T037|AB|S80.82|ICD10CM|Blister (nonthermal) of lower leg|Blister (nonthermal) of lower leg +C2860409|T037|HT|S80.82|ICD10CM|Blister (nonthermal) of lower leg|Blister (nonthermal) of lower leg +C2860410|T037|AB|S80.821|ICD10CM|Blister (nonthermal), right lower leg|Blister (nonthermal), right lower leg +C2860410|T037|HT|S80.821|ICD10CM|Blister (nonthermal), right lower leg|Blister (nonthermal), right lower leg +C2860411|T037|AB|S80.821A|ICD10CM|Blister (nonthermal), right lower leg, initial encounter|Blister (nonthermal), right lower leg, initial encounter +C2860411|T037|PT|S80.821A|ICD10CM|Blister (nonthermal), right lower leg, initial encounter|Blister (nonthermal), right lower leg, initial encounter +C2860412|T037|AB|S80.821D|ICD10CM|Blister (nonthermal), right lower leg, subsequent encounter|Blister (nonthermal), right lower leg, subsequent encounter +C2860412|T037|PT|S80.821D|ICD10CM|Blister (nonthermal), right lower leg, subsequent encounter|Blister (nonthermal), right lower leg, subsequent encounter +C2860413|T037|AB|S80.821S|ICD10CM|Blister (nonthermal), right lower leg, sequela|Blister (nonthermal), right lower leg, sequela +C2860413|T037|PT|S80.821S|ICD10CM|Blister (nonthermal), right lower leg, sequela|Blister (nonthermal), right lower leg, sequela +C2860414|T037|AB|S80.822|ICD10CM|Blister (nonthermal), left lower leg|Blister (nonthermal), left lower leg +C2860414|T037|HT|S80.822|ICD10CM|Blister (nonthermal), left lower leg|Blister (nonthermal), left lower leg +C2860415|T037|AB|S80.822A|ICD10CM|Blister (nonthermal), left lower leg, initial encounter|Blister (nonthermal), left lower leg, initial encounter +C2860415|T037|PT|S80.822A|ICD10CM|Blister (nonthermal), left lower leg, initial encounter|Blister (nonthermal), left lower leg, initial encounter +C2860416|T037|AB|S80.822D|ICD10CM|Blister (nonthermal), left lower leg, subsequent encounter|Blister (nonthermal), left lower leg, subsequent encounter +C2860416|T037|PT|S80.822D|ICD10CM|Blister (nonthermal), left lower leg, subsequent encounter|Blister (nonthermal), left lower leg, subsequent encounter +C2860417|T037|AB|S80.822S|ICD10CM|Blister (nonthermal), left lower leg, sequela|Blister (nonthermal), left lower leg, sequela +C2860417|T037|PT|S80.822S|ICD10CM|Blister (nonthermal), left lower leg, sequela|Blister (nonthermal), left lower leg, sequela +C2860418|T037|AB|S80.829|ICD10CM|Blister (nonthermal), unspecified lower leg|Blister (nonthermal), unspecified lower leg +C2860418|T037|HT|S80.829|ICD10CM|Blister (nonthermal), unspecified lower leg|Blister (nonthermal), unspecified lower leg +C2860419|T037|AB|S80.829A|ICD10CM|Blister (nonthermal), unspecified lower leg, init encntr|Blister (nonthermal), unspecified lower leg, init encntr +C2860419|T037|PT|S80.829A|ICD10CM|Blister (nonthermal), unspecified lower leg, initial encounter|Blister (nonthermal), unspecified lower leg, initial encounter +C2860420|T037|AB|S80.829D|ICD10CM|Blister (nonthermal), unspecified lower leg, subs encntr|Blister (nonthermal), unspecified lower leg, subs encntr +C2860420|T037|PT|S80.829D|ICD10CM|Blister (nonthermal), unspecified lower leg, subsequent encounter|Blister (nonthermal), unspecified lower leg, subsequent encounter +C2860421|T037|AB|S80.829S|ICD10CM|Blister (nonthermal), unspecified lower leg, sequela|Blister (nonthermal), unspecified lower leg, sequela +C2860421|T037|PT|S80.829S|ICD10CM|Blister (nonthermal), unspecified lower leg, sequela|Blister (nonthermal), unspecified lower leg, sequela +C2860422|T037|HT|S80.84|ICD10CM|External constriction of lower leg|External constriction of lower leg +C2860422|T037|AB|S80.84|ICD10CM|External constriction of lower leg|External constriction of lower leg +C2860423|T037|AB|S80.841|ICD10CM|External constriction, right lower leg|External constriction, right lower leg +C2860423|T037|HT|S80.841|ICD10CM|External constriction, right lower leg|External constriction, right lower leg +C2860424|T037|AB|S80.841A|ICD10CM|External constriction, right lower leg, initial encounter|External constriction, right lower leg, initial encounter +C2860424|T037|PT|S80.841A|ICD10CM|External constriction, right lower leg, initial encounter|External constriction, right lower leg, initial encounter +C2860425|T037|AB|S80.841D|ICD10CM|External constriction, right lower leg, subsequent encounter|External constriction, right lower leg, subsequent encounter +C2860425|T037|PT|S80.841D|ICD10CM|External constriction, right lower leg, subsequent encounter|External constriction, right lower leg, subsequent encounter +C2860426|T037|AB|S80.841S|ICD10CM|External constriction, right lower leg, sequela|External constriction, right lower leg, sequela +C2860426|T037|PT|S80.841S|ICD10CM|External constriction, right lower leg, sequela|External constriction, right lower leg, sequela +C2860427|T037|AB|S80.842|ICD10CM|External constriction, left lower leg|External constriction, left lower leg +C2860427|T037|HT|S80.842|ICD10CM|External constriction, left lower leg|External constriction, left lower leg +C2860428|T037|AB|S80.842A|ICD10CM|External constriction, left lower leg, initial encounter|External constriction, left lower leg, initial encounter +C2860428|T037|PT|S80.842A|ICD10CM|External constriction, left lower leg, initial encounter|External constriction, left lower leg, initial encounter +C2860429|T037|AB|S80.842D|ICD10CM|External constriction, left lower leg, subsequent encounter|External constriction, left lower leg, subsequent encounter +C2860429|T037|PT|S80.842D|ICD10CM|External constriction, left lower leg, subsequent encounter|External constriction, left lower leg, subsequent encounter +C2860430|T037|AB|S80.842S|ICD10CM|External constriction, left lower leg, sequela|External constriction, left lower leg, sequela +C2860430|T037|PT|S80.842S|ICD10CM|External constriction, left lower leg, sequela|External constriction, left lower leg, sequela +C2860431|T037|AB|S80.849|ICD10CM|External constriction, unspecified lower leg|External constriction, unspecified lower leg +C2860431|T037|HT|S80.849|ICD10CM|External constriction, unspecified lower leg|External constriction, unspecified lower leg +C2860432|T037|AB|S80.849A|ICD10CM|External constriction, unspecified lower leg, init encntr|External constriction, unspecified lower leg, init encntr +C2860432|T037|PT|S80.849A|ICD10CM|External constriction, unspecified lower leg, initial encounter|External constriction, unspecified lower leg, initial encounter +C2860433|T037|AB|S80.849D|ICD10CM|External constriction, unspecified lower leg, subs encntr|External constriction, unspecified lower leg, subs encntr +C2860433|T037|PT|S80.849D|ICD10CM|External constriction, unspecified lower leg, subsequent encounter|External constriction, unspecified lower leg, subsequent encounter +C2860434|T037|AB|S80.849S|ICD10CM|External constriction, unspecified lower leg, sequela|External constriction, unspecified lower leg, sequela +C2860434|T037|PT|S80.849S|ICD10CM|External constriction, unspecified lower leg, sequela|External constriction, unspecified lower leg, sequela +C2860435|T037|ET|S80.85|ICD10CM|Splinter in the lower leg|Splinter in the lower leg +C2860436|T037|AB|S80.85|ICD10CM|Superficial foreign body of lower leg|Superficial foreign body of lower leg +C2860436|T037|HT|S80.85|ICD10CM|Superficial foreign body of lower leg|Superficial foreign body of lower leg +C2860437|T037|AB|S80.851|ICD10CM|Superficial foreign body, right lower leg|Superficial foreign body, right lower leg +C2860437|T037|HT|S80.851|ICD10CM|Superficial foreign body, right lower leg|Superficial foreign body, right lower leg +C2860438|T037|AB|S80.851A|ICD10CM|Superficial foreign body, right lower leg, initial encounter|Superficial foreign body, right lower leg, initial encounter +C2860438|T037|PT|S80.851A|ICD10CM|Superficial foreign body, right lower leg, initial encounter|Superficial foreign body, right lower leg, initial encounter +C2860439|T037|AB|S80.851D|ICD10CM|Superficial foreign body, right lower leg, subs encntr|Superficial foreign body, right lower leg, subs encntr +C2860439|T037|PT|S80.851D|ICD10CM|Superficial foreign body, right lower leg, subsequent encounter|Superficial foreign body, right lower leg, subsequent encounter +C2860440|T037|AB|S80.851S|ICD10CM|Superficial foreign body, right lower leg, sequela|Superficial foreign body, right lower leg, sequela +C2860440|T037|PT|S80.851S|ICD10CM|Superficial foreign body, right lower leg, sequela|Superficial foreign body, right lower leg, sequela +C2860441|T037|AB|S80.852|ICD10CM|Superficial foreign body, left lower leg|Superficial foreign body, left lower leg +C2860441|T037|HT|S80.852|ICD10CM|Superficial foreign body, left lower leg|Superficial foreign body, left lower leg +C2860442|T037|AB|S80.852A|ICD10CM|Superficial foreign body, left lower leg, initial encounter|Superficial foreign body, left lower leg, initial encounter +C2860442|T037|PT|S80.852A|ICD10CM|Superficial foreign body, left lower leg, initial encounter|Superficial foreign body, left lower leg, initial encounter +C2860443|T037|AB|S80.852D|ICD10CM|Superficial foreign body, left lower leg, subs encntr|Superficial foreign body, left lower leg, subs encntr +C2860443|T037|PT|S80.852D|ICD10CM|Superficial foreign body, left lower leg, subsequent encounter|Superficial foreign body, left lower leg, subsequent encounter +C2860444|T037|AB|S80.852S|ICD10CM|Superficial foreign body, left lower leg, sequela|Superficial foreign body, left lower leg, sequela +C2860444|T037|PT|S80.852S|ICD10CM|Superficial foreign body, left lower leg, sequela|Superficial foreign body, left lower leg, sequela +C2860445|T037|AB|S80.859|ICD10CM|Superficial foreign body, unspecified lower leg|Superficial foreign body, unspecified lower leg +C2860445|T037|HT|S80.859|ICD10CM|Superficial foreign body, unspecified lower leg|Superficial foreign body, unspecified lower leg +C2860446|T037|AB|S80.859A|ICD10CM|Superficial foreign body, unspecified lower leg, init encntr|Superficial foreign body, unspecified lower leg, init encntr +C2860446|T037|PT|S80.859A|ICD10CM|Superficial foreign body, unspecified lower leg, initial encounter|Superficial foreign body, unspecified lower leg, initial encounter +C2860447|T037|AB|S80.859D|ICD10CM|Superficial foreign body, unspecified lower leg, subs encntr|Superficial foreign body, unspecified lower leg, subs encntr +C2860447|T037|PT|S80.859D|ICD10CM|Superficial foreign body, unspecified lower leg, subsequent encounter|Superficial foreign body, unspecified lower leg, subsequent encounter +C2860448|T037|AB|S80.859S|ICD10CM|Superficial foreign body, unspecified lower leg, sequela|Superficial foreign body, unspecified lower leg, sequela +C2860448|T037|PT|S80.859S|ICD10CM|Superficial foreign body, unspecified lower leg, sequela|Superficial foreign body, unspecified lower leg, sequela +C0433037|T037|AB|S80.86|ICD10CM|Insect bite (nonvenomous) of lower leg|Insect bite (nonvenomous) of lower leg +C0433037|T037|HT|S80.86|ICD10CM|Insect bite (nonvenomous) of lower leg|Insect bite (nonvenomous) of lower leg +C2860449|T037|AB|S80.861|ICD10CM|Insect bite (nonvenomous), right lower leg|Insect bite (nonvenomous), right lower leg +C2860449|T037|HT|S80.861|ICD10CM|Insect bite (nonvenomous), right lower leg|Insect bite (nonvenomous), right lower leg +C2860450|T037|AB|S80.861A|ICD10CM|Insect bite (nonvenomous), right lower leg, init encntr|Insect bite (nonvenomous), right lower leg, init encntr +C2860450|T037|PT|S80.861A|ICD10CM|Insect bite (nonvenomous), right lower leg, initial encounter|Insect bite (nonvenomous), right lower leg, initial encounter +C2860451|T037|AB|S80.861D|ICD10CM|Insect bite (nonvenomous), right lower leg, subs encntr|Insect bite (nonvenomous), right lower leg, subs encntr +C2860451|T037|PT|S80.861D|ICD10CM|Insect bite (nonvenomous), right lower leg, subsequent encounter|Insect bite (nonvenomous), right lower leg, subsequent encounter +C2860452|T037|AB|S80.861S|ICD10CM|Insect bite (nonvenomous), right lower leg, sequela|Insect bite (nonvenomous), right lower leg, sequela +C2860452|T037|PT|S80.861S|ICD10CM|Insect bite (nonvenomous), right lower leg, sequela|Insect bite (nonvenomous), right lower leg, sequela +C2860453|T037|AB|S80.862|ICD10CM|Insect bite (nonvenomous), left lower leg|Insect bite (nonvenomous), left lower leg +C2860453|T037|HT|S80.862|ICD10CM|Insect bite (nonvenomous), left lower leg|Insect bite (nonvenomous), left lower leg +C2860454|T037|AB|S80.862A|ICD10CM|Insect bite (nonvenomous), left lower leg, initial encounter|Insect bite (nonvenomous), left lower leg, initial encounter +C2860454|T037|PT|S80.862A|ICD10CM|Insect bite (nonvenomous), left lower leg, initial encounter|Insect bite (nonvenomous), left lower leg, initial encounter +C2860455|T037|AB|S80.862D|ICD10CM|Insect bite (nonvenomous), left lower leg, subs encntr|Insect bite (nonvenomous), left lower leg, subs encntr +C2860455|T037|PT|S80.862D|ICD10CM|Insect bite (nonvenomous), left lower leg, subsequent encounter|Insect bite (nonvenomous), left lower leg, subsequent encounter +C2860456|T037|AB|S80.862S|ICD10CM|Insect bite (nonvenomous), left lower leg, sequela|Insect bite (nonvenomous), left lower leg, sequela +C2860456|T037|PT|S80.862S|ICD10CM|Insect bite (nonvenomous), left lower leg, sequela|Insect bite (nonvenomous), left lower leg, sequela +C2860457|T037|AB|S80.869|ICD10CM|Insect bite (nonvenomous), unspecified lower leg|Insect bite (nonvenomous), unspecified lower leg +C2860457|T037|HT|S80.869|ICD10CM|Insect bite (nonvenomous), unspecified lower leg|Insect bite (nonvenomous), unspecified lower leg +C2860458|T037|AB|S80.869A|ICD10CM|Insect bite (nonvenomous), unsp lower leg, init encntr|Insect bite (nonvenomous), unsp lower leg, init encntr +C2860458|T037|PT|S80.869A|ICD10CM|Insect bite (nonvenomous), unspecified lower leg, initial encounter|Insect bite (nonvenomous), unspecified lower leg, initial encounter +C2860459|T037|AB|S80.869D|ICD10CM|Insect bite (nonvenomous), unsp lower leg, subs encntr|Insect bite (nonvenomous), unsp lower leg, subs encntr +C2860459|T037|PT|S80.869D|ICD10CM|Insect bite (nonvenomous), unspecified lower leg, subsequent encounter|Insect bite (nonvenomous), unspecified lower leg, subsequent encounter +C2860460|T037|AB|S80.869S|ICD10CM|Insect bite (nonvenomous), unspecified lower leg, sequela|Insect bite (nonvenomous), unspecified lower leg, sequela +C2860460|T037|PT|S80.869S|ICD10CM|Insect bite (nonvenomous), unspecified lower leg, sequela|Insect bite (nonvenomous), unspecified lower leg, sequela +C2860461|T037|AB|S80.87|ICD10CM|Other superficial bite of lower leg|Other superficial bite of lower leg +C2860461|T037|HT|S80.87|ICD10CM|Other superficial bite of lower leg|Other superficial bite of lower leg +C2860462|T037|AB|S80.871|ICD10CM|Other superficial bite, right lower leg|Other superficial bite, right lower leg +C2860462|T037|HT|S80.871|ICD10CM|Other superficial bite, right lower leg|Other superficial bite, right lower leg +C2860463|T037|AB|S80.871A|ICD10CM|Other superficial bite, right lower leg, initial encounter|Other superficial bite, right lower leg, initial encounter +C2860463|T037|PT|S80.871A|ICD10CM|Other superficial bite, right lower leg, initial encounter|Other superficial bite, right lower leg, initial encounter +C2860464|T037|AB|S80.871D|ICD10CM|Other superficial bite, right lower leg, subs encntr|Other superficial bite, right lower leg, subs encntr +C2860464|T037|PT|S80.871D|ICD10CM|Other superficial bite, right lower leg, subsequent encounter|Other superficial bite, right lower leg, subsequent encounter +C2860465|T037|AB|S80.871S|ICD10CM|Other superficial bite, right lower leg, sequela|Other superficial bite, right lower leg, sequela +C2860465|T037|PT|S80.871S|ICD10CM|Other superficial bite, right lower leg, sequela|Other superficial bite, right lower leg, sequela +C2860466|T037|AB|S80.872|ICD10CM|Other superficial bite, left lower leg|Other superficial bite, left lower leg +C2860466|T037|HT|S80.872|ICD10CM|Other superficial bite, left lower leg|Other superficial bite, left lower leg +C2860467|T037|AB|S80.872A|ICD10CM|Other superficial bite, left lower leg, initial encounter|Other superficial bite, left lower leg, initial encounter +C2860467|T037|PT|S80.872A|ICD10CM|Other superficial bite, left lower leg, initial encounter|Other superficial bite, left lower leg, initial encounter +C2860468|T037|AB|S80.872D|ICD10CM|Other superficial bite, left lower leg, subsequent encounter|Other superficial bite, left lower leg, subsequent encounter +C2860468|T037|PT|S80.872D|ICD10CM|Other superficial bite, left lower leg, subsequent encounter|Other superficial bite, left lower leg, subsequent encounter +C2860469|T037|AB|S80.872S|ICD10CM|Other superficial bite, left lower leg, sequela|Other superficial bite, left lower leg, sequela +C2860469|T037|PT|S80.872S|ICD10CM|Other superficial bite, left lower leg, sequela|Other superficial bite, left lower leg, sequela +C2860470|T037|AB|S80.879|ICD10CM|Other superficial bite, unspecified lower leg|Other superficial bite, unspecified lower leg +C2860470|T037|HT|S80.879|ICD10CM|Other superficial bite, unspecified lower leg|Other superficial bite, unspecified lower leg +C2860471|T037|AB|S80.879A|ICD10CM|Other superficial bite, unspecified lower leg, init encntr|Other superficial bite, unspecified lower leg, init encntr +C2860471|T037|PT|S80.879A|ICD10CM|Other superficial bite, unspecified lower leg, initial encounter|Other superficial bite, unspecified lower leg, initial encounter +C2860472|T037|AB|S80.879D|ICD10CM|Other superficial bite, unspecified lower leg, subs encntr|Other superficial bite, unspecified lower leg, subs encntr +C2860472|T037|PT|S80.879D|ICD10CM|Other superficial bite, unspecified lower leg, subsequent encounter|Other superficial bite, unspecified lower leg, subsequent encounter +C2860473|T037|AB|S80.879S|ICD10CM|Other superficial bite, unspecified lower leg, sequela|Other superficial bite, unspecified lower leg, sequela +C2860473|T037|PT|S80.879S|ICD10CM|Other superficial bite, unspecified lower leg, sequela|Other superficial bite, unspecified lower leg, sequela +C0347549|T037|PT|S80.9|ICD10|Superficial injury of lower leg, unspecified|Superficial injury of lower leg, unspecified +C2860474|T037|AB|S80.9|ICD10CM|Unspecified superficial injury of knee and lower leg|Unspecified superficial injury of knee and lower leg +C2860474|T037|HT|S80.9|ICD10CM|Unspecified superficial injury of knee and lower leg|Unspecified superficial injury of knee and lower leg +C2860475|T037|AB|S80.91|ICD10CM|Unspecified superficial injury of knee|Unspecified superficial injury of knee +C2860475|T037|HT|S80.91|ICD10CM|Unspecified superficial injury of knee|Unspecified superficial injury of knee +C2860476|T037|AB|S80.911|ICD10CM|Unspecified superficial injury of right knee|Unspecified superficial injury of right knee +C2860476|T037|HT|S80.911|ICD10CM|Unspecified superficial injury of right knee|Unspecified superficial injury of right knee +C2860477|T037|AB|S80.911A|ICD10CM|Unspecified superficial injury of right knee, init encntr|Unspecified superficial injury of right knee, init encntr +C2860477|T037|PT|S80.911A|ICD10CM|Unspecified superficial injury of right knee, initial encounter|Unspecified superficial injury of right knee, initial encounter +C2860478|T037|AB|S80.911D|ICD10CM|Unspecified superficial injury of right knee, subs encntr|Unspecified superficial injury of right knee, subs encntr +C2860478|T037|PT|S80.911D|ICD10CM|Unspecified superficial injury of right knee, subsequent encounter|Unspecified superficial injury of right knee, subsequent encounter +C2860479|T037|AB|S80.911S|ICD10CM|Unspecified superficial injury of right knee, sequela|Unspecified superficial injury of right knee, sequela +C2860479|T037|PT|S80.911S|ICD10CM|Unspecified superficial injury of right knee, sequela|Unspecified superficial injury of right knee, sequela +C2860480|T037|AB|S80.912|ICD10CM|Unspecified superficial injury of left knee|Unspecified superficial injury of left knee +C2860480|T037|HT|S80.912|ICD10CM|Unspecified superficial injury of left knee|Unspecified superficial injury of left knee +C2860481|T037|AB|S80.912A|ICD10CM|Unspecified superficial injury of left knee, init encntr|Unspecified superficial injury of left knee, init encntr +C2860481|T037|PT|S80.912A|ICD10CM|Unspecified superficial injury of left knee, initial encounter|Unspecified superficial injury of left knee, initial encounter +C2860482|T037|AB|S80.912D|ICD10CM|Unspecified superficial injury of left knee, subs encntr|Unspecified superficial injury of left knee, subs encntr +C2860482|T037|PT|S80.912D|ICD10CM|Unspecified superficial injury of left knee, subsequent encounter|Unspecified superficial injury of left knee, subsequent encounter +C2860483|T037|AB|S80.912S|ICD10CM|Unspecified superficial injury of left knee, sequela|Unspecified superficial injury of left knee, sequela +C2860483|T037|PT|S80.912S|ICD10CM|Unspecified superficial injury of left knee, sequela|Unspecified superficial injury of left knee, sequela +C2860484|T037|AB|S80.919|ICD10CM|Unspecified superficial injury of unspecified knee|Unspecified superficial injury of unspecified knee +C2860484|T037|HT|S80.919|ICD10CM|Unspecified superficial injury of unspecified knee|Unspecified superficial injury of unspecified knee +C2860485|T037|AB|S80.919A|ICD10CM|Unsp superficial injury of unspecified knee, init encntr|Unsp superficial injury of unspecified knee, init encntr +C2860485|T037|PT|S80.919A|ICD10CM|Unspecified superficial injury of unspecified knee, initial encounter|Unspecified superficial injury of unspecified knee, initial encounter +C2860486|T037|AB|S80.919D|ICD10CM|Unsp superficial injury of unspecified knee, subs encntr|Unsp superficial injury of unspecified knee, subs encntr +C2860486|T037|PT|S80.919D|ICD10CM|Unspecified superficial injury of unspecified knee, subsequent encounter|Unspecified superficial injury of unspecified knee, subsequent encounter +C2860487|T037|AB|S80.919S|ICD10CM|Unspecified superficial injury of unspecified knee, sequela|Unspecified superficial injury of unspecified knee, sequela +C2860487|T037|PT|S80.919S|ICD10CM|Unspecified superficial injury of unspecified knee, sequela|Unspecified superficial injury of unspecified knee, sequela +C0347549|T037|AB|S80.92|ICD10CM|Unspecified superficial injury of lower leg|Unspecified superficial injury of lower leg +C0347549|T037|HT|S80.92|ICD10CM|Unspecified superficial injury of lower leg|Unspecified superficial injury of lower leg +C2860488|T037|AB|S80.921|ICD10CM|Unspecified superficial injury of right lower leg|Unspecified superficial injury of right lower leg +C2860488|T037|HT|S80.921|ICD10CM|Unspecified superficial injury of right lower leg|Unspecified superficial injury of right lower leg +C2860489|T037|AB|S80.921A|ICD10CM|Unsp superficial injury of right lower leg, init encntr|Unsp superficial injury of right lower leg, init encntr +C2860489|T037|PT|S80.921A|ICD10CM|Unspecified superficial injury of right lower leg, initial encounter|Unspecified superficial injury of right lower leg, initial encounter +C2860490|T037|AB|S80.921D|ICD10CM|Unsp superficial injury of right lower leg, subs encntr|Unsp superficial injury of right lower leg, subs encntr +C2860490|T037|PT|S80.921D|ICD10CM|Unspecified superficial injury of right lower leg, subsequent encounter|Unspecified superficial injury of right lower leg, subsequent encounter +C2860491|T037|AB|S80.921S|ICD10CM|Unspecified superficial injury of right lower leg, sequela|Unspecified superficial injury of right lower leg, sequela +C2860491|T037|PT|S80.921S|ICD10CM|Unspecified superficial injury of right lower leg, sequela|Unspecified superficial injury of right lower leg, sequela +C2860492|T037|AB|S80.922|ICD10CM|Unspecified superficial injury of left lower leg|Unspecified superficial injury of left lower leg +C2860492|T037|HT|S80.922|ICD10CM|Unspecified superficial injury of left lower leg|Unspecified superficial injury of left lower leg +C2860493|T037|AB|S80.922A|ICD10CM|Unsp superficial injury of left lower leg, init encntr|Unsp superficial injury of left lower leg, init encntr +C2860493|T037|PT|S80.922A|ICD10CM|Unspecified superficial injury of left lower leg, initial encounter|Unspecified superficial injury of left lower leg, initial encounter +C2860494|T037|AB|S80.922D|ICD10CM|Unsp superficial injury of left lower leg, subs encntr|Unsp superficial injury of left lower leg, subs encntr +C2860494|T037|PT|S80.922D|ICD10CM|Unspecified superficial injury of left lower leg, subsequent encounter|Unspecified superficial injury of left lower leg, subsequent encounter +C2860495|T037|AB|S80.922S|ICD10CM|Unspecified superficial injury of left lower leg, sequela|Unspecified superficial injury of left lower leg, sequela +C2860495|T037|PT|S80.922S|ICD10CM|Unspecified superficial injury of left lower leg, sequela|Unspecified superficial injury of left lower leg, sequela +C2860496|T037|AB|S80.929|ICD10CM|Unspecified superficial injury of unspecified lower leg|Unspecified superficial injury of unspecified lower leg +C2860496|T037|HT|S80.929|ICD10CM|Unspecified superficial injury of unspecified lower leg|Unspecified superficial injury of unspecified lower leg +C2860497|T037|AB|S80.929A|ICD10CM|Unsp superficial injury of unsp lower leg, init encntr|Unsp superficial injury of unsp lower leg, init encntr +C2860497|T037|PT|S80.929A|ICD10CM|Unspecified superficial injury of unspecified lower leg, initial encounter|Unspecified superficial injury of unspecified lower leg, initial encounter +C2860498|T037|AB|S80.929D|ICD10CM|Unsp superficial injury of unsp lower leg, subs encntr|Unsp superficial injury of unsp lower leg, subs encntr +C2860498|T037|PT|S80.929D|ICD10CM|Unspecified superficial injury of unspecified lower leg, subsequent encounter|Unspecified superficial injury of unspecified lower leg, subsequent encounter +C2860499|T037|AB|S80.929S|ICD10CM|Unsp superficial injury of unspecified lower leg, sequela|Unsp superficial injury of unspecified lower leg, sequela +C2860499|T037|PT|S80.929S|ICD10CM|Unspecified superficial injury of unspecified lower leg, sequela|Unspecified superficial injury of unspecified lower leg, sequela +C2860500|T037|AB|S81|ICD10CM|Open wound of knee and lower leg|Open wound of knee and lower leg +C2860500|T037|HT|S81|ICD10CM|Open wound of knee and lower leg|Open wound of knee and lower leg +C0562509|T037|HT|S81|ICD10|Open wound of lower leg|Open wound of lower leg +C0347570|T037|HT|S81.0|ICD10CM|Open wound of knee|Open wound of knee +C0347570|T037|AB|S81.0|ICD10CM|Open wound of knee|Open wound of knee +C0347570|T037|PT|S81.0|ICD10|Open wound of knee|Open wound of knee +C2860501|T037|AB|S81.00|ICD10CM|Unspecified open wound of knee|Unspecified open wound of knee +C2860501|T037|HT|S81.00|ICD10CM|Unspecified open wound of knee|Unspecified open wound of knee +C2860502|T037|AB|S81.001|ICD10CM|Unspecified open wound, right knee|Unspecified open wound, right knee +C2860502|T037|HT|S81.001|ICD10CM|Unspecified open wound, right knee|Unspecified open wound, right knee +C2860503|T037|AB|S81.001A|ICD10CM|Unspecified open wound, right knee, initial encounter|Unspecified open wound, right knee, initial encounter +C2860503|T037|PT|S81.001A|ICD10CM|Unspecified open wound, right knee, initial encounter|Unspecified open wound, right knee, initial encounter +C2860504|T037|AB|S81.001D|ICD10CM|Unspecified open wound, right knee, subsequent encounter|Unspecified open wound, right knee, subsequent encounter +C2860504|T037|PT|S81.001D|ICD10CM|Unspecified open wound, right knee, subsequent encounter|Unspecified open wound, right knee, subsequent encounter +C2860505|T037|AB|S81.001S|ICD10CM|Unspecified open wound, right knee, sequela|Unspecified open wound, right knee, sequela +C2860505|T037|PT|S81.001S|ICD10CM|Unspecified open wound, right knee, sequela|Unspecified open wound, right knee, sequela +C2860506|T037|AB|S81.002|ICD10CM|Unspecified open wound, left knee|Unspecified open wound, left knee +C2860506|T037|HT|S81.002|ICD10CM|Unspecified open wound, left knee|Unspecified open wound, left knee +C2860507|T037|AB|S81.002A|ICD10CM|Unspecified open wound, left knee, initial encounter|Unspecified open wound, left knee, initial encounter +C2860507|T037|PT|S81.002A|ICD10CM|Unspecified open wound, left knee, initial encounter|Unspecified open wound, left knee, initial encounter +C2860508|T037|AB|S81.002D|ICD10CM|Unspecified open wound, left knee, subsequent encounter|Unspecified open wound, left knee, subsequent encounter +C2860508|T037|PT|S81.002D|ICD10CM|Unspecified open wound, left knee, subsequent encounter|Unspecified open wound, left knee, subsequent encounter +C2860509|T037|AB|S81.002S|ICD10CM|Unspecified open wound, left knee, sequela|Unspecified open wound, left knee, sequela +C2860509|T037|PT|S81.002S|ICD10CM|Unspecified open wound, left knee, sequela|Unspecified open wound, left knee, sequela +C2860510|T037|AB|S81.009|ICD10CM|Unspecified open wound, unspecified knee|Unspecified open wound, unspecified knee +C2860510|T037|HT|S81.009|ICD10CM|Unspecified open wound, unspecified knee|Unspecified open wound, unspecified knee +C2860511|T037|AB|S81.009A|ICD10CM|Unspecified open wound, unspecified knee, initial encounter|Unspecified open wound, unspecified knee, initial encounter +C2860511|T037|PT|S81.009A|ICD10CM|Unspecified open wound, unspecified knee, initial encounter|Unspecified open wound, unspecified knee, initial encounter +C2860512|T037|AB|S81.009D|ICD10CM|Unspecified open wound, unspecified knee, subs encntr|Unspecified open wound, unspecified knee, subs encntr +C2860512|T037|PT|S81.009D|ICD10CM|Unspecified open wound, unspecified knee, subsequent encounter|Unspecified open wound, unspecified knee, subsequent encounter +C2860513|T037|AB|S81.009S|ICD10CM|Unspecified open wound, unspecified knee, sequela|Unspecified open wound, unspecified knee, sequela +C2860513|T037|PT|S81.009S|ICD10CM|Unspecified open wound, unspecified knee, sequela|Unspecified open wound, unspecified knee, sequela +C2860514|T037|AB|S81.01|ICD10CM|Laceration without foreign body of knee|Laceration without foreign body of knee +C2860514|T037|HT|S81.01|ICD10CM|Laceration without foreign body of knee|Laceration without foreign body of knee +C2860515|T037|AB|S81.011|ICD10CM|Laceration without foreign body, right knee|Laceration without foreign body, right knee +C2860515|T037|HT|S81.011|ICD10CM|Laceration without foreign body, right knee|Laceration without foreign body, right knee +C2860516|T037|AB|S81.011A|ICD10CM|Laceration without foreign body, right knee, init encntr|Laceration without foreign body, right knee, init encntr +C2860516|T037|PT|S81.011A|ICD10CM|Laceration without foreign body, right knee, initial encounter|Laceration without foreign body, right knee, initial encounter +C2860517|T037|AB|S81.011D|ICD10CM|Laceration without foreign body, right knee, subs encntr|Laceration without foreign body, right knee, subs encntr +C2860517|T037|PT|S81.011D|ICD10CM|Laceration without foreign body, right knee, subsequent encounter|Laceration without foreign body, right knee, subsequent encounter +C2860518|T037|AB|S81.011S|ICD10CM|Laceration without foreign body, right knee, sequela|Laceration without foreign body, right knee, sequela +C2860518|T037|PT|S81.011S|ICD10CM|Laceration without foreign body, right knee, sequela|Laceration without foreign body, right knee, sequela +C2860519|T037|AB|S81.012|ICD10CM|Laceration without foreign body, left knee|Laceration without foreign body, left knee +C2860519|T037|HT|S81.012|ICD10CM|Laceration without foreign body, left knee|Laceration without foreign body, left knee +C2860520|T037|AB|S81.012A|ICD10CM|Laceration without foreign body, left knee, init encntr|Laceration without foreign body, left knee, init encntr +C2860520|T037|PT|S81.012A|ICD10CM|Laceration without foreign body, left knee, initial encounter|Laceration without foreign body, left knee, initial encounter +C2860521|T037|AB|S81.012D|ICD10CM|Laceration without foreign body, left knee, subs encntr|Laceration without foreign body, left knee, subs encntr +C2860521|T037|PT|S81.012D|ICD10CM|Laceration without foreign body, left knee, subsequent encounter|Laceration without foreign body, left knee, subsequent encounter +C2860522|T037|AB|S81.012S|ICD10CM|Laceration without foreign body, left knee, sequela|Laceration without foreign body, left knee, sequela +C2860522|T037|PT|S81.012S|ICD10CM|Laceration without foreign body, left knee, sequela|Laceration without foreign body, left knee, sequela +C2860523|T037|AB|S81.019|ICD10CM|Laceration without foreign body, unspecified knee|Laceration without foreign body, unspecified knee +C2860523|T037|HT|S81.019|ICD10CM|Laceration without foreign body, unspecified knee|Laceration without foreign body, unspecified knee +C2860524|T037|AB|S81.019A|ICD10CM|Laceration without foreign body, unsp knee, init encntr|Laceration without foreign body, unsp knee, init encntr +C2860524|T037|PT|S81.019A|ICD10CM|Laceration without foreign body, unspecified knee, initial encounter|Laceration without foreign body, unspecified knee, initial encounter +C2860525|T037|AB|S81.019D|ICD10CM|Laceration without foreign body, unsp knee, subs encntr|Laceration without foreign body, unsp knee, subs encntr +C2860525|T037|PT|S81.019D|ICD10CM|Laceration without foreign body, unspecified knee, subsequent encounter|Laceration without foreign body, unspecified knee, subsequent encounter +C2860526|T037|AB|S81.019S|ICD10CM|Laceration without foreign body, unspecified knee, sequela|Laceration without foreign body, unspecified knee, sequela +C2860526|T037|PT|S81.019S|ICD10CM|Laceration without foreign body, unspecified knee, sequela|Laceration without foreign body, unspecified knee, sequela +C2860527|T037|AB|S81.02|ICD10CM|Laceration with foreign body of knee|Laceration with foreign body of knee +C2860527|T037|HT|S81.02|ICD10CM|Laceration with foreign body of knee|Laceration with foreign body of knee +C2860528|T037|AB|S81.021|ICD10CM|Laceration with foreign body, right knee|Laceration with foreign body, right knee +C2860528|T037|HT|S81.021|ICD10CM|Laceration with foreign body, right knee|Laceration with foreign body, right knee +C2860529|T037|AB|S81.021A|ICD10CM|Laceration with foreign body, right knee, initial encounter|Laceration with foreign body, right knee, initial encounter +C2860529|T037|PT|S81.021A|ICD10CM|Laceration with foreign body, right knee, initial encounter|Laceration with foreign body, right knee, initial encounter +C2860530|T037|AB|S81.021D|ICD10CM|Laceration with foreign body, right knee, subs encntr|Laceration with foreign body, right knee, subs encntr +C2860530|T037|PT|S81.021D|ICD10CM|Laceration with foreign body, right knee, subsequent encounter|Laceration with foreign body, right knee, subsequent encounter +C2860531|T037|AB|S81.021S|ICD10CM|Laceration with foreign body, right knee, sequela|Laceration with foreign body, right knee, sequela +C2860531|T037|PT|S81.021S|ICD10CM|Laceration with foreign body, right knee, sequela|Laceration with foreign body, right knee, sequela +C2860532|T037|AB|S81.022|ICD10CM|Laceration with foreign body, left knee|Laceration with foreign body, left knee +C2860532|T037|HT|S81.022|ICD10CM|Laceration with foreign body, left knee|Laceration with foreign body, left knee +C2860533|T037|AB|S81.022A|ICD10CM|Laceration with foreign body, left knee, initial encounter|Laceration with foreign body, left knee, initial encounter +C2860533|T037|PT|S81.022A|ICD10CM|Laceration with foreign body, left knee, initial encounter|Laceration with foreign body, left knee, initial encounter +C2860534|T037|AB|S81.022D|ICD10CM|Laceration with foreign body, left knee, subs encntr|Laceration with foreign body, left knee, subs encntr +C2860534|T037|PT|S81.022D|ICD10CM|Laceration with foreign body, left knee, subsequent encounter|Laceration with foreign body, left knee, subsequent encounter +C2860535|T037|AB|S81.022S|ICD10CM|Laceration with foreign body, left knee, sequela|Laceration with foreign body, left knee, sequela +C2860535|T037|PT|S81.022S|ICD10CM|Laceration with foreign body, left knee, sequela|Laceration with foreign body, left knee, sequela +C2860536|T037|AB|S81.029|ICD10CM|Laceration with foreign body, unspecified knee|Laceration with foreign body, unspecified knee +C2860536|T037|HT|S81.029|ICD10CM|Laceration with foreign body, unspecified knee|Laceration with foreign body, unspecified knee +C2860537|T037|AB|S81.029A|ICD10CM|Laceration with foreign body, unspecified knee, init encntr|Laceration with foreign body, unspecified knee, init encntr +C2860537|T037|PT|S81.029A|ICD10CM|Laceration with foreign body, unspecified knee, initial encounter|Laceration with foreign body, unspecified knee, initial encounter +C2860538|T037|AB|S81.029D|ICD10CM|Laceration with foreign body, unspecified knee, subs encntr|Laceration with foreign body, unspecified knee, subs encntr +C2860538|T037|PT|S81.029D|ICD10CM|Laceration with foreign body, unspecified knee, subsequent encounter|Laceration with foreign body, unspecified knee, subsequent encounter +C2860539|T037|AB|S81.029S|ICD10CM|Laceration with foreign body, unspecified knee, sequela|Laceration with foreign body, unspecified knee, sequela +C2860539|T037|PT|S81.029S|ICD10CM|Laceration with foreign body, unspecified knee, sequela|Laceration with foreign body, unspecified knee, sequela +C2860540|T037|AB|S81.03|ICD10CM|Puncture wound without foreign body of knee|Puncture wound without foreign body of knee +C2860540|T037|HT|S81.03|ICD10CM|Puncture wound without foreign body of knee|Puncture wound without foreign body of knee +C2860541|T037|AB|S81.031|ICD10CM|Puncture wound without foreign body, right knee|Puncture wound without foreign body, right knee +C2860541|T037|HT|S81.031|ICD10CM|Puncture wound without foreign body, right knee|Puncture wound without foreign body, right knee +C2860542|T037|AB|S81.031A|ICD10CM|Puncture wound without foreign body, right knee, init encntr|Puncture wound without foreign body, right knee, init encntr +C2860542|T037|PT|S81.031A|ICD10CM|Puncture wound without foreign body, right knee, initial encounter|Puncture wound without foreign body, right knee, initial encounter +C2860543|T037|AB|S81.031D|ICD10CM|Puncture wound without foreign body, right knee, subs encntr|Puncture wound without foreign body, right knee, subs encntr +C2860543|T037|PT|S81.031D|ICD10CM|Puncture wound without foreign body, right knee, subsequent encounter|Puncture wound without foreign body, right knee, subsequent encounter +C2860544|T037|AB|S81.031S|ICD10CM|Puncture wound without foreign body, right knee, sequela|Puncture wound without foreign body, right knee, sequela +C2860544|T037|PT|S81.031S|ICD10CM|Puncture wound without foreign body, right knee, sequela|Puncture wound without foreign body, right knee, sequela +C2860545|T037|AB|S81.032|ICD10CM|Puncture wound without foreign body, left knee|Puncture wound without foreign body, left knee +C2860545|T037|HT|S81.032|ICD10CM|Puncture wound without foreign body, left knee|Puncture wound without foreign body, left knee +C2860546|T037|AB|S81.032A|ICD10CM|Puncture wound without foreign body, left knee, init encntr|Puncture wound without foreign body, left knee, init encntr +C2860546|T037|PT|S81.032A|ICD10CM|Puncture wound without foreign body, left knee, initial encounter|Puncture wound without foreign body, left knee, initial encounter +C2860547|T037|AB|S81.032D|ICD10CM|Puncture wound without foreign body, left knee, subs encntr|Puncture wound without foreign body, left knee, subs encntr +C2860547|T037|PT|S81.032D|ICD10CM|Puncture wound without foreign body, left knee, subsequent encounter|Puncture wound without foreign body, left knee, subsequent encounter +C2860548|T037|AB|S81.032S|ICD10CM|Puncture wound without foreign body, left knee, sequela|Puncture wound without foreign body, left knee, sequela +C2860548|T037|PT|S81.032S|ICD10CM|Puncture wound without foreign body, left knee, sequela|Puncture wound without foreign body, left knee, sequela +C2860549|T037|AB|S81.039|ICD10CM|Puncture wound without foreign body, unspecified knee|Puncture wound without foreign body, unspecified knee +C2860549|T037|HT|S81.039|ICD10CM|Puncture wound without foreign body, unspecified knee|Puncture wound without foreign body, unspecified knee +C2860550|T037|AB|S81.039A|ICD10CM|Puncture wound without foreign body, unsp knee, init encntr|Puncture wound without foreign body, unsp knee, init encntr +C2860550|T037|PT|S81.039A|ICD10CM|Puncture wound without foreign body, unspecified knee, initial encounter|Puncture wound without foreign body, unspecified knee, initial encounter +C2860551|T037|AB|S81.039D|ICD10CM|Puncture wound without foreign body, unsp knee, subs encntr|Puncture wound without foreign body, unsp knee, subs encntr +C2860551|T037|PT|S81.039D|ICD10CM|Puncture wound without foreign body, unspecified knee, subsequent encounter|Puncture wound without foreign body, unspecified knee, subsequent encounter +C2860552|T037|AB|S81.039S|ICD10CM|Puncture wound without foreign body, unsp knee, sequela|Puncture wound without foreign body, unsp knee, sequela +C2860552|T037|PT|S81.039S|ICD10CM|Puncture wound without foreign body, unspecified knee, sequela|Puncture wound without foreign body, unspecified knee, sequela +C2860553|T037|AB|S81.04|ICD10CM|Puncture wound with foreign body of knee|Puncture wound with foreign body of knee +C2860553|T037|HT|S81.04|ICD10CM|Puncture wound with foreign body of knee|Puncture wound with foreign body of knee +C2860554|T037|AB|S81.041|ICD10CM|Puncture wound with foreign body, right knee|Puncture wound with foreign body, right knee +C2860554|T037|HT|S81.041|ICD10CM|Puncture wound with foreign body, right knee|Puncture wound with foreign body, right knee +C2860555|T037|AB|S81.041A|ICD10CM|Puncture wound with foreign body, right knee, init encntr|Puncture wound with foreign body, right knee, init encntr +C2860555|T037|PT|S81.041A|ICD10CM|Puncture wound with foreign body, right knee, initial encounter|Puncture wound with foreign body, right knee, initial encounter +C2860556|T037|AB|S81.041D|ICD10CM|Puncture wound with foreign body, right knee, subs encntr|Puncture wound with foreign body, right knee, subs encntr +C2860556|T037|PT|S81.041D|ICD10CM|Puncture wound with foreign body, right knee, subsequent encounter|Puncture wound with foreign body, right knee, subsequent encounter +C2860557|T037|AB|S81.041S|ICD10CM|Puncture wound with foreign body, right knee, sequela|Puncture wound with foreign body, right knee, sequela +C2860557|T037|PT|S81.041S|ICD10CM|Puncture wound with foreign body, right knee, sequela|Puncture wound with foreign body, right knee, sequela +C2860558|T037|AB|S81.042|ICD10CM|Puncture wound with foreign body, left knee|Puncture wound with foreign body, left knee +C2860558|T037|HT|S81.042|ICD10CM|Puncture wound with foreign body, left knee|Puncture wound with foreign body, left knee +C2860559|T037|AB|S81.042A|ICD10CM|Puncture wound with foreign body, left knee, init encntr|Puncture wound with foreign body, left knee, init encntr +C2860559|T037|PT|S81.042A|ICD10CM|Puncture wound with foreign body, left knee, initial encounter|Puncture wound with foreign body, left knee, initial encounter +C2860560|T037|AB|S81.042D|ICD10CM|Puncture wound with foreign body, left knee, subs encntr|Puncture wound with foreign body, left knee, subs encntr +C2860560|T037|PT|S81.042D|ICD10CM|Puncture wound with foreign body, left knee, subsequent encounter|Puncture wound with foreign body, left knee, subsequent encounter +C2860561|T037|AB|S81.042S|ICD10CM|Puncture wound with foreign body, left knee, sequela|Puncture wound with foreign body, left knee, sequela +C2860561|T037|PT|S81.042S|ICD10CM|Puncture wound with foreign body, left knee, sequela|Puncture wound with foreign body, left knee, sequela +C2860562|T037|AB|S81.049|ICD10CM|Puncture wound with foreign body, unspecified knee|Puncture wound with foreign body, unspecified knee +C2860562|T037|HT|S81.049|ICD10CM|Puncture wound with foreign body, unspecified knee|Puncture wound with foreign body, unspecified knee +C2860563|T037|AB|S81.049A|ICD10CM|Puncture wound with foreign body, unsp knee, init encntr|Puncture wound with foreign body, unsp knee, init encntr +C2860563|T037|PT|S81.049A|ICD10CM|Puncture wound with foreign body, unspecified knee, initial encounter|Puncture wound with foreign body, unspecified knee, initial encounter +C2860564|T037|AB|S81.049D|ICD10CM|Puncture wound with foreign body, unsp knee, subs encntr|Puncture wound with foreign body, unsp knee, subs encntr +C2860564|T037|PT|S81.049D|ICD10CM|Puncture wound with foreign body, unspecified knee, subsequent encounter|Puncture wound with foreign body, unspecified knee, subsequent encounter +C2860565|T037|AB|S81.049S|ICD10CM|Puncture wound with foreign body, unspecified knee, sequela|Puncture wound with foreign body, unspecified knee, sequela +C2860565|T037|PT|S81.049S|ICD10CM|Puncture wound with foreign body, unspecified knee, sequela|Puncture wound with foreign body, unspecified knee, sequela +C2919029|T037|ET|S81.05|ICD10CM|Bite of knee NOS|Bite of knee NOS +C2860566|T037|AB|S81.05|ICD10CM|Open bite of knee|Open bite of knee +C2860566|T037|HT|S81.05|ICD10CM|Open bite of knee|Open bite of knee +C2860567|T037|AB|S81.051|ICD10CM|Open bite, right knee|Open bite, right knee +C2860567|T037|HT|S81.051|ICD10CM|Open bite, right knee|Open bite, right knee +C2860568|T037|AB|S81.051A|ICD10CM|Open bite, right knee, initial encounter|Open bite, right knee, initial encounter +C2860568|T037|PT|S81.051A|ICD10CM|Open bite, right knee, initial encounter|Open bite, right knee, initial encounter +C2860569|T037|AB|S81.051D|ICD10CM|Open bite, right knee, subsequent encounter|Open bite, right knee, subsequent encounter +C2860569|T037|PT|S81.051D|ICD10CM|Open bite, right knee, subsequent encounter|Open bite, right knee, subsequent encounter +C2860570|T037|AB|S81.051S|ICD10CM|Open bite, right knee, sequela|Open bite, right knee, sequela +C2860570|T037|PT|S81.051S|ICD10CM|Open bite, right knee, sequela|Open bite, right knee, sequela +C2860571|T037|AB|S81.052|ICD10CM|Open bite, left knee|Open bite, left knee +C2860571|T037|HT|S81.052|ICD10CM|Open bite, left knee|Open bite, left knee +C2860572|T037|AB|S81.052A|ICD10CM|Open bite, left knee, initial encounter|Open bite, left knee, initial encounter +C2860572|T037|PT|S81.052A|ICD10CM|Open bite, left knee, initial encounter|Open bite, left knee, initial encounter +C2860573|T037|AB|S81.052D|ICD10CM|Open bite, left knee, subsequent encounter|Open bite, left knee, subsequent encounter +C2860573|T037|PT|S81.052D|ICD10CM|Open bite, left knee, subsequent encounter|Open bite, left knee, subsequent encounter +C2860574|T037|AB|S81.052S|ICD10CM|Open bite, left knee, sequela|Open bite, left knee, sequela +C2860574|T037|PT|S81.052S|ICD10CM|Open bite, left knee, sequela|Open bite, left knee, sequela +C2860575|T037|AB|S81.059|ICD10CM|Open bite, unspecified knee|Open bite, unspecified knee +C2860575|T037|HT|S81.059|ICD10CM|Open bite, unspecified knee|Open bite, unspecified knee +C2860576|T037|AB|S81.059A|ICD10CM|Open bite, unspecified knee, initial encounter|Open bite, unspecified knee, initial encounter +C2860576|T037|PT|S81.059A|ICD10CM|Open bite, unspecified knee, initial encounter|Open bite, unspecified knee, initial encounter +C2860577|T037|AB|S81.059D|ICD10CM|Open bite, unspecified knee, subsequent encounter|Open bite, unspecified knee, subsequent encounter +C2860577|T037|PT|S81.059D|ICD10CM|Open bite, unspecified knee, subsequent encounter|Open bite, unspecified knee, subsequent encounter +C2860578|T037|AB|S81.059S|ICD10CM|Open bite, unspecified knee, sequela|Open bite, unspecified knee, sequela +C2860578|T037|PT|S81.059S|ICD10CM|Open bite, unspecified knee, sequela|Open bite, unspecified knee, sequela +C0451958|T037|PT|S81.7|ICD10|Multiple open wounds of lower leg|Multiple open wounds of lower leg +C0562509|T037|HT|S81.8|ICD10CM|Open wound of lower leg|Open wound of lower leg +C0562509|T037|AB|S81.8|ICD10CM|Open wound of lower leg|Open wound of lower leg +C0478335|T037|PT|S81.8|ICD10|Open wound of other parts of lower leg|Open wound of other parts of lower leg +C2860579|T037|AB|S81.80|ICD10CM|Unspecified open wound of lower leg|Unspecified open wound of lower leg +C2860579|T037|HT|S81.80|ICD10CM|Unspecified open wound of lower leg|Unspecified open wound of lower leg +C2860580|T037|AB|S81.801|ICD10CM|Unspecified open wound, right lower leg|Unspecified open wound, right lower leg +C2860580|T037|HT|S81.801|ICD10CM|Unspecified open wound, right lower leg|Unspecified open wound, right lower leg +C2860581|T037|AB|S81.801A|ICD10CM|Unspecified open wound, right lower leg, initial encounter|Unspecified open wound, right lower leg, initial encounter +C2860581|T037|PT|S81.801A|ICD10CM|Unspecified open wound, right lower leg, initial encounter|Unspecified open wound, right lower leg, initial encounter +C2860582|T037|AB|S81.801D|ICD10CM|Unspecified open wound, right lower leg, subs encntr|Unspecified open wound, right lower leg, subs encntr +C2860582|T037|PT|S81.801D|ICD10CM|Unspecified open wound, right lower leg, subsequent encounter|Unspecified open wound, right lower leg, subsequent encounter +C2860583|T037|AB|S81.801S|ICD10CM|Unspecified open wound, right lower leg, sequela|Unspecified open wound, right lower leg, sequela +C2860583|T037|PT|S81.801S|ICD10CM|Unspecified open wound, right lower leg, sequela|Unspecified open wound, right lower leg, sequela +C2860584|T037|AB|S81.802|ICD10CM|Unspecified open wound, left lower leg|Unspecified open wound, left lower leg +C2860584|T037|HT|S81.802|ICD10CM|Unspecified open wound, left lower leg|Unspecified open wound, left lower leg +C2860585|T037|AB|S81.802A|ICD10CM|Unspecified open wound, left lower leg, initial encounter|Unspecified open wound, left lower leg, initial encounter +C2860585|T037|PT|S81.802A|ICD10CM|Unspecified open wound, left lower leg, initial encounter|Unspecified open wound, left lower leg, initial encounter +C2860586|T037|AB|S81.802D|ICD10CM|Unspecified open wound, left lower leg, subsequent encounter|Unspecified open wound, left lower leg, subsequent encounter +C2860586|T037|PT|S81.802D|ICD10CM|Unspecified open wound, left lower leg, subsequent encounter|Unspecified open wound, left lower leg, subsequent encounter +C2860587|T037|AB|S81.802S|ICD10CM|Unspecified open wound, left lower leg, sequela|Unspecified open wound, left lower leg, sequela +C2860587|T037|PT|S81.802S|ICD10CM|Unspecified open wound, left lower leg, sequela|Unspecified open wound, left lower leg, sequela +C2860588|T037|AB|S81.809|ICD10CM|Unspecified open wound, unspecified lower leg|Unspecified open wound, unspecified lower leg +C2860588|T037|HT|S81.809|ICD10CM|Unspecified open wound, unspecified lower leg|Unspecified open wound, unspecified lower leg +C2860589|T037|AB|S81.809A|ICD10CM|Unspecified open wound, unspecified lower leg, init encntr|Unspecified open wound, unspecified lower leg, init encntr +C2860589|T037|PT|S81.809A|ICD10CM|Unspecified open wound, unspecified lower leg, initial encounter|Unspecified open wound, unspecified lower leg, initial encounter +C2860590|T037|AB|S81.809D|ICD10CM|Unspecified open wound, unspecified lower leg, subs encntr|Unspecified open wound, unspecified lower leg, subs encntr +C2860590|T037|PT|S81.809D|ICD10CM|Unspecified open wound, unspecified lower leg, subsequent encounter|Unspecified open wound, unspecified lower leg, subsequent encounter +C2860591|T037|AB|S81.809S|ICD10CM|Unspecified open wound, unspecified lower leg, sequela|Unspecified open wound, unspecified lower leg, sequela +C2860591|T037|PT|S81.809S|ICD10CM|Unspecified open wound, unspecified lower leg, sequela|Unspecified open wound, unspecified lower leg, sequela +C2860592|T037|AB|S81.81|ICD10CM|Laceration without foreign body of lower leg|Laceration without foreign body of lower leg +C2860592|T037|HT|S81.81|ICD10CM|Laceration without foreign body of lower leg|Laceration without foreign body of lower leg +C2860593|T037|AB|S81.811|ICD10CM|Laceration without foreign body, right lower leg|Laceration without foreign body, right lower leg +C2860593|T037|HT|S81.811|ICD10CM|Laceration without foreign body, right lower leg|Laceration without foreign body, right lower leg +C2860594|T037|AB|S81.811A|ICD10CM|Laceration w/o foreign body, right lower leg, init encntr|Laceration w/o foreign body, right lower leg, init encntr +C2860594|T037|PT|S81.811A|ICD10CM|Laceration without foreign body, right lower leg, initial encounter|Laceration without foreign body, right lower leg, initial encounter +C2860595|T037|AB|S81.811D|ICD10CM|Laceration w/o foreign body, right lower leg, subs encntr|Laceration w/o foreign body, right lower leg, subs encntr +C2860595|T037|PT|S81.811D|ICD10CM|Laceration without foreign body, right lower leg, subsequent encounter|Laceration without foreign body, right lower leg, subsequent encounter +C2860596|T037|AB|S81.811S|ICD10CM|Laceration without foreign body, right lower leg, sequela|Laceration without foreign body, right lower leg, sequela +C2860596|T037|PT|S81.811S|ICD10CM|Laceration without foreign body, right lower leg, sequela|Laceration without foreign body, right lower leg, sequela +C2860597|T037|AB|S81.812|ICD10CM|Laceration without foreign body, left lower leg|Laceration without foreign body, left lower leg +C2860597|T037|HT|S81.812|ICD10CM|Laceration without foreign body, left lower leg|Laceration without foreign body, left lower leg +C2860598|T037|AB|S81.812A|ICD10CM|Laceration without foreign body, left lower leg, init encntr|Laceration without foreign body, left lower leg, init encntr +C2860598|T037|PT|S81.812A|ICD10CM|Laceration without foreign body, left lower leg, initial encounter|Laceration without foreign body, left lower leg, initial encounter +C2860599|T037|AB|S81.812D|ICD10CM|Laceration without foreign body, left lower leg, subs encntr|Laceration without foreign body, left lower leg, subs encntr +C2860599|T037|PT|S81.812D|ICD10CM|Laceration without foreign body, left lower leg, subsequent encounter|Laceration without foreign body, left lower leg, subsequent encounter +C2860600|T037|AB|S81.812S|ICD10CM|Laceration without foreign body, left lower leg, sequela|Laceration without foreign body, left lower leg, sequela +C2860600|T037|PT|S81.812S|ICD10CM|Laceration without foreign body, left lower leg, sequela|Laceration without foreign body, left lower leg, sequela +C2860601|T037|AB|S81.819|ICD10CM|Laceration without foreign body, unspecified lower leg|Laceration without foreign body, unspecified lower leg +C2860601|T037|HT|S81.819|ICD10CM|Laceration without foreign body, unspecified lower leg|Laceration without foreign body, unspecified lower leg +C2860602|T037|AB|S81.819A|ICD10CM|Laceration without foreign body, unsp lower leg, init encntr|Laceration without foreign body, unsp lower leg, init encntr +C2860602|T037|PT|S81.819A|ICD10CM|Laceration without foreign body, unspecified lower leg, initial encounter|Laceration without foreign body, unspecified lower leg, initial encounter +C2860603|T037|AB|S81.819D|ICD10CM|Laceration without foreign body, unsp lower leg, subs encntr|Laceration without foreign body, unsp lower leg, subs encntr +C2860603|T037|PT|S81.819D|ICD10CM|Laceration without foreign body, unspecified lower leg, subsequent encounter|Laceration without foreign body, unspecified lower leg, subsequent encounter +C2860604|T037|AB|S81.819S|ICD10CM|Laceration without foreign body, unsp lower leg, sequela|Laceration without foreign body, unsp lower leg, sequela +C2860604|T037|PT|S81.819S|ICD10CM|Laceration without foreign body, unspecified lower leg, sequela|Laceration without foreign body, unspecified lower leg, sequela +C2860605|T037|HT|S81.82|ICD10CM|Laceration with foreign body of lower leg|Laceration with foreign body of lower leg +C2860605|T037|AB|S81.82|ICD10CM|Laceration with foreign body of lower leg|Laceration with foreign body of lower leg +C2860606|T037|AB|S81.821|ICD10CM|Laceration with foreign body, right lower leg|Laceration with foreign body, right lower leg +C2860606|T037|HT|S81.821|ICD10CM|Laceration with foreign body, right lower leg|Laceration with foreign body, right lower leg +C2860607|T037|AB|S81.821A|ICD10CM|Laceration with foreign body, right lower leg, init encntr|Laceration with foreign body, right lower leg, init encntr +C2860607|T037|PT|S81.821A|ICD10CM|Laceration with foreign body, right lower leg, initial encounter|Laceration with foreign body, right lower leg, initial encounter +C2860608|T037|AB|S81.821D|ICD10CM|Laceration with foreign body, right lower leg, subs encntr|Laceration with foreign body, right lower leg, subs encntr +C2860608|T037|PT|S81.821D|ICD10CM|Laceration with foreign body, right lower leg, subsequent encounter|Laceration with foreign body, right lower leg, subsequent encounter +C2860609|T037|AB|S81.821S|ICD10CM|Laceration with foreign body, right lower leg, sequela|Laceration with foreign body, right lower leg, sequela +C2860609|T037|PT|S81.821S|ICD10CM|Laceration with foreign body, right lower leg, sequela|Laceration with foreign body, right lower leg, sequela +C2860610|T037|AB|S81.822|ICD10CM|Laceration with foreign body, left lower leg|Laceration with foreign body, left lower leg +C2860610|T037|HT|S81.822|ICD10CM|Laceration with foreign body, left lower leg|Laceration with foreign body, left lower leg +C2860611|T037|AB|S81.822A|ICD10CM|Laceration with foreign body, left lower leg, init encntr|Laceration with foreign body, left lower leg, init encntr +C2860611|T037|PT|S81.822A|ICD10CM|Laceration with foreign body, left lower leg, initial encounter|Laceration with foreign body, left lower leg, initial encounter +C2860612|T037|AB|S81.822D|ICD10CM|Laceration with foreign body, left lower leg, subs encntr|Laceration with foreign body, left lower leg, subs encntr +C2860612|T037|PT|S81.822D|ICD10CM|Laceration with foreign body, left lower leg, subsequent encounter|Laceration with foreign body, left lower leg, subsequent encounter +C2860613|T037|AB|S81.822S|ICD10CM|Laceration with foreign body, left lower leg, sequela|Laceration with foreign body, left lower leg, sequela +C2860613|T037|PT|S81.822S|ICD10CM|Laceration with foreign body, left lower leg, sequela|Laceration with foreign body, left lower leg, sequela +C2860614|T037|AB|S81.829|ICD10CM|Laceration with foreign body, unspecified lower leg|Laceration with foreign body, unspecified lower leg +C2860614|T037|HT|S81.829|ICD10CM|Laceration with foreign body, unspecified lower leg|Laceration with foreign body, unspecified lower leg +C2860615|T037|AB|S81.829A|ICD10CM|Laceration with foreign body, unsp lower leg, init encntr|Laceration with foreign body, unsp lower leg, init encntr +C2860615|T037|PT|S81.829A|ICD10CM|Laceration with foreign body, unspecified lower leg, initial encounter|Laceration with foreign body, unspecified lower leg, initial encounter +C2860616|T037|AB|S81.829D|ICD10CM|Laceration with foreign body, unsp lower leg, subs encntr|Laceration with foreign body, unsp lower leg, subs encntr +C2860616|T037|PT|S81.829D|ICD10CM|Laceration with foreign body, unspecified lower leg, subsequent encounter|Laceration with foreign body, unspecified lower leg, subsequent encounter +C2860617|T037|AB|S81.829S|ICD10CM|Laceration with foreign body, unspecified lower leg, sequela|Laceration with foreign body, unspecified lower leg, sequela +C2860617|T037|PT|S81.829S|ICD10CM|Laceration with foreign body, unspecified lower leg, sequela|Laceration with foreign body, unspecified lower leg, sequela +C2860618|T037|AB|S81.83|ICD10CM|Puncture wound without foreign body of lower leg|Puncture wound without foreign body of lower leg +C2860618|T037|HT|S81.83|ICD10CM|Puncture wound without foreign body of lower leg|Puncture wound without foreign body of lower leg +C2860619|T037|AB|S81.831|ICD10CM|Puncture wound without foreign body, right lower leg|Puncture wound without foreign body, right lower leg +C2860619|T037|HT|S81.831|ICD10CM|Puncture wound without foreign body, right lower leg|Puncture wound without foreign body, right lower leg +C2860620|T037|AB|S81.831A|ICD10CM|Puncture wound w/o foreign body, right lower leg, init|Puncture wound w/o foreign body, right lower leg, init +C2860620|T037|PT|S81.831A|ICD10CM|Puncture wound without foreign body, right lower leg, initial encounter|Puncture wound without foreign body, right lower leg, initial encounter +C2860621|T037|AB|S81.831D|ICD10CM|Puncture wound w/o foreign body, right lower leg, subs|Puncture wound w/o foreign body, right lower leg, subs +C2860621|T037|PT|S81.831D|ICD10CM|Puncture wound without foreign body, right lower leg, subsequent encounter|Puncture wound without foreign body, right lower leg, subsequent encounter +C2860622|T037|AB|S81.831S|ICD10CM|Puncture wound w/o foreign body, right lower leg, sequela|Puncture wound w/o foreign body, right lower leg, sequela +C2860622|T037|PT|S81.831S|ICD10CM|Puncture wound without foreign body, right lower leg, sequela|Puncture wound without foreign body, right lower leg, sequela +C2860623|T037|AB|S81.832|ICD10CM|Puncture wound without foreign body, left lower leg|Puncture wound without foreign body, left lower leg +C2860623|T037|HT|S81.832|ICD10CM|Puncture wound without foreign body, left lower leg|Puncture wound without foreign body, left lower leg +C2860624|T037|AB|S81.832A|ICD10CM|Puncture wound w/o foreign body, left lower leg, init encntr|Puncture wound w/o foreign body, left lower leg, init encntr +C2860624|T037|PT|S81.832A|ICD10CM|Puncture wound without foreign body, left lower leg, initial encounter|Puncture wound without foreign body, left lower leg, initial encounter +C2860625|T037|AB|S81.832D|ICD10CM|Puncture wound w/o foreign body, left lower leg, subs encntr|Puncture wound w/o foreign body, left lower leg, subs encntr +C2860625|T037|PT|S81.832D|ICD10CM|Puncture wound without foreign body, left lower leg, subsequent encounter|Puncture wound without foreign body, left lower leg, subsequent encounter +C2860626|T037|AB|S81.832S|ICD10CM|Puncture wound without foreign body, left lower leg, sequela|Puncture wound without foreign body, left lower leg, sequela +C2860626|T037|PT|S81.832S|ICD10CM|Puncture wound without foreign body, left lower leg, sequela|Puncture wound without foreign body, left lower leg, sequela +C2860627|T037|AB|S81.839|ICD10CM|Puncture wound without foreign body, unspecified lower leg|Puncture wound without foreign body, unspecified lower leg +C2860627|T037|HT|S81.839|ICD10CM|Puncture wound without foreign body, unspecified lower leg|Puncture wound without foreign body, unspecified lower leg +C2860628|T037|AB|S81.839A|ICD10CM|Puncture wound w/o foreign body, unsp lower leg, init encntr|Puncture wound w/o foreign body, unsp lower leg, init encntr +C2860628|T037|PT|S81.839A|ICD10CM|Puncture wound without foreign body, unspecified lower leg, initial encounter|Puncture wound without foreign body, unspecified lower leg, initial encounter +C2860629|T037|AB|S81.839D|ICD10CM|Puncture wound w/o foreign body, unsp lower leg, subs encntr|Puncture wound w/o foreign body, unsp lower leg, subs encntr +C2860629|T037|PT|S81.839D|ICD10CM|Puncture wound without foreign body, unspecified lower leg, subsequent encounter|Puncture wound without foreign body, unspecified lower leg, subsequent encounter +C2860630|T037|AB|S81.839S|ICD10CM|Puncture wound without foreign body, unsp lower leg, sequela|Puncture wound without foreign body, unsp lower leg, sequela +C2860630|T037|PT|S81.839S|ICD10CM|Puncture wound without foreign body, unspecified lower leg, sequela|Puncture wound without foreign body, unspecified lower leg, sequela +C2860631|T037|HT|S81.84|ICD10CM|Puncture wound with foreign body of lower leg|Puncture wound with foreign body of lower leg +C2860631|T037|AB|S81.84|ICD10CM|Puncture wound with foreign body of lower leg|Puncture wound with foreign body of lower leg +C2860632|T037|AB|S81.841|ICD10CM|Puncture wound with foreign body, right lower leg|Puncture wound with foreign body, right lower leg +C2860632|T037|HT|S81.841|ICD10CM|Puncture wound with foreign body, right lower leg|Puncture wound with foreign body, right lower leg +C2860633|T037|AB|S81.841A|ICD10CM|Puncture wound w foreign body, right lower leg, init encntr|Puncture wound w foreign body, right lower leg, init encntr +C2860633|T037|PT|S81.841A|ICD10CM|Puncture wound with foreign body, right lower leg, initial encounter|Puncture wound with foreign body, right lower leg, initial encounter +C2860634|T037|AB|S81.841D|ICD10CM|Puncture wound w foreign body, right lower leg, subs encntr|Puncture wound w foreign body, right lower leg, subs encntr +C2860634|T037|PT|S81.841D|ICD10CM|Puncture wound with foreign body, right lower leg, subsequent encounter|Puncture wound with foreign body, right lower leg, subsequent encounter +C2860635|T037|AB|S81.841S|ICD10CM|Puncture wound with foreign body, right lower leg, sequela|Puncture wound with foreign body, right lower leg, sequela +C2860635|T037|PT|S81.841S|ICD10CM|Puncture wound with foreign body, right lower leg, sequela|Puncture wound with foreign body, right lower leg, sequela +C2860636|T037|AB|S81.842|ICD10CM|Puncture wound with foreign body, left lower leg|Puncture wound with foreign body, left lower leg +C2860636|T037|HT|S81.842|ICD10CM|Puncture wound with foreign body, left lower leg|Puncture wound with foreign body, left lower leg +C2860637|T037|AB|S81.842A|ICD10CM|Puncture wound w foreign body, left lower leg, init encntr|Puncture wound w foreign body, left lower leg, init encntr +C2860637|T037|PT|S81.842A|ICD10CM|Puncture wound with foreign body, left lower leg, initial encounter|Puncture wound with foreign body, left lower leg, initial encounter +C2860638|T037|AB|S81.842D|ICD10CM|Puncture wound w foreign body, left lower leg, subs encntr|Puncture wound w foreign body, left lower leg, subs encntr +C2860638|T037|PT|S81.842D|ICD10CM|Puncture wound with foreign body, left lower leg, subsequent encounter|Puncture wound with foreign body, left lower leg, subsequent encounter +C2860639|T037|AB|S81.842S|ICD10CM|Puncture wound with foreign body, left lower leg, sequela|Puncture wound with foreign body, left lower leg, sequela +C2860639|T037|PT|S81.842S|ICD10CM|Puncture wound with foreign body, left lower leg, sequela|Puncture wound with foreign body, left lower leg, sequela +C2860640|T037|AB|S81.849|ICD10CM|Puncture wound with foreign body, unspecified lower leg|Puncture wound with foreign body, unspecified lower leg +C2860640|T037|HT|S81.849|ICD10CM|Puncture wound with foreign body, unspecified lower leg|Puncture wound with foreign body, unspecified lower leg +C2860641|T037|AB|S81.849A|ICD10CM|Puncture wound w foreign body, unsp lower leg, init encntr|Puncture wound w foreign body, unsp lower leg, init encntr +C2860641|T037|PT|S81.849A|ICD10CM|Puncture wound with foreign body, unspecified lower leg, initial encounter|Puncture wound with foreign body, unspecified lower leg, initial encounter +C2860642|T037|AB|S81.849D|ICD10CM|Puncture wound w foreign body, unsp lower leg, subs encntr|Puncture wound w foreign body, unsp lower leg, subs encntr +C2860642|T037|PT|S81.849D|ICD10CM|Puncture wound with foreign body, unspecified lower leg, subsequent encounter|Puncture wound with foreign body, unspecified lower leg, subsequent encounter +C2860643|T037|AB|S81.849S|ICD10CM|Puncture wound with foreign body, unsp lower leg, sequela|Puncture wound with foreign body, unsp lower leg, sequela +C2860643|T037|PT|S81.849S|ICD10CM|Puncture wound with foreign body, unspecified lower leg, sequela|Puncture wound with foreign body, unspecified lower leg, sequela +C2168216|T037|ET|S81.85|ICD10CM|Bite of lower leg NOS|Bite of lower leg NOS +C2860645|T037|HT|S81.85|ICD10CM|Open bite of lower leg|Open bite of lower leg +C2860645|T037|AB|S81.85|ICD10CM|Open bite of lower leg|Open bite of lower leg +C2860646|T037|AB|S81.851|ICD10CM|Open bite, right lower leg|Open bite, right lower leg +C2860646|T037|HT|S81.851|ICD10CM|Open bite, right lower leg|Open bite, right lower leg +C2860647|T037|AB|S81.851A|ICD10CM|Open bite, right lower leg, initial encounter|Open bite, right lower leg, initial encounter +C2860647|T037|PT|S81.851A|ICD10CM|Open bite, right lower leg, initial encounter|Open bite, right lower leg, initial encounter +C2860648|T037|AB|S81.851D|ICD10CM|Open bite, right lower leg, subsequent encounter|Open bite, right lower leg, subsequent encounter +C2860648|T037|PT|S81.851D|ICD10CM|Open bite, right lower leg, subsequent encounter|Open bite, right lower leg, subsequent encounter +C2860649|T037|AB|S81.851S|ICD10CM|Open bite, right lower leg, sequela|Open bite, right lower leg, sequela +C2860649|T037|PT|S81.851S|ICD10CM|Open bite, right lower leg, sequela|Open bite, right lower leg, sequela +C2860650|T037|AB|S81.852|ICD10CM|Open bite, left lower leg|Open bite, left lower leg +C2860650|T037|HT|S81.852|ICD10CM|Open bite, left lower leg|Open bite, left lower leg +C2860651|T037|AB|S81.852A|ICD10CM|Open bite, left lower leg, initial encounter|Open bite, left lower leg, initial encounter +C2860651|T037|PT|S81.852A|ICD10CM|Open bite, left lower leg, initial encounter|Open bite, left lower leg, initial encounter +C2860652|T037|AB|S81.852D|ICD10CM|Open bite, left lower leg, subsequent encounter|Open bite, left lower leg, subsequent encounter +C2860652|T037|PT|S81.852D|ICD10CM|Open bite, left lower leg, subsequent encounter|Open bite, left lower leg, subsequent encounter +C2860653|T037|AB|S81.852S|ICD10CM|Open bite, left lower leg, sequela|Open bite, left lower leg, sequela +C2860653|T037|PT|S81.852S|ICD10CM|Open bite, left lower leg, sequela|Open bite, left lower leg, sequela +C2860654|T037|AB|S81.859|ICD10CM|Open bite, unspecified lower leg|Open bite, unspecified lower leg +C2860654|T037|HT|S81.859|ICD10CM|Open bite, unspecified lower leg|Open bite, unspecified lower leg +C2860655|T037|AB|S81.859A|ICD10CM|Open bite, unspecified lower leg, initial encounter|Open bite, unspecified lower leg, initial encounter +C2860655|T037|PT|S81.859A|ICD10CM|Open bite, unspecified lower leg, initial encounter|Open bite, unspecified lower leg, initial encounter +C2860656|T037|AB|S81.859D|ICD10CM|Open bite, unspecified lower leg, subsequent encounter|Open bite, unspecified lower leg, subsequent encounter +C2860656|T037|PT|S81.859D|ICD10CM|Open bite, unspecified lower leg, subsequent encounter|Open bite, unspecified lower leg, subsequent encounter +C2860657|T037|AB|S81.859S|ICD10CM|Open bite, unspecified lower leg, sequela|Open bite, unspecified lower leg, sequela +C2860657|T037|PT|S81.859S|ICD10CM|Open bite, unspecified lower leg, sequela|Open bite, unspecified lower leg, sequela +C0562509|T037|PT|S81.9|ICD10|Open wound of lower leg, part unspecified|Open wound of lower leg, part unspecified +C0495944|T037|HT|S82|ICD10|Fracture of lower leg, including ankle|Fracture of lower leg, including ankle +C0495944|T037|HT|S82|ICD10CM|Fracture of lower leg, including ankle|Fracture of lower leg, including ankle +C0495944|T037|AB|S82|ICD10CM|Fracture of lower leg, including ankle|Fracture of lower leg, including ankle +C0741061|T037|ET|S82|ICD10CM|fracture of malleolus|fracture of malleolus +C0159849|T037|HT|S82.0|ICD10CM|Fracture of patella|Fracture of patella +C0159849|T037|AB|S82.0|ICD10CM|Fracture of patella|Fracture of patella +C0159849|T037|PT|S82.0|ICD10|Fracture of patella|Fracture of patella +C0159849|T037|ET|S82.0|ICD10CM|Knee cap|Knee cap +C2860659|T037|AB|S82.00|ICD10CM|Unspecified fracture of patella|Unspecified fracture of patella +C2860659|T037|HT|S82.00|ICD10CM|Unspecified fracture of patella|Unspecified fracture of patella +C2860660|T037|AB|S82.001|ICD10CM|Unspecified fracture of right patella|Unspecified fracture of right patella +C2860660|T037|HT|S82.001|ICD10CM|Unspecified fracture of right patella|Unspecified fracture of right patella +C2860661|T037|AB|S82.001A|ICD10CM|Unsp fracture of right patella, init for clos fx|Unsp fracture of right patella, init for clos fx +C2860661|T037|PT|S82.001A|ICD10CM|Unspecified fracture of right patella, initial encounter for closed fracture|Unspecified fracture of right patella, initial encounter for closed fracture +C2860662|T037|AB|S82.001B|ICD10CM|Unsp fracture of right patella, init for opn fx type I/2|Unsp fracture of right patella, init for opn fx type I/2 +C2860662|T037|PT|S82.001B|ICD10CM|Unspecified fracture of right patella, initial encounter for open fracture type I or II|Unspecified fracture of right patella, initial encounter for open fracture type I or II +C2860663|T037|AB|S82.001C|ICD10CM|Unsp fracture of right patella, init for opn fx type 3A/B/C|Unsp fracture of right patella, init for opn fx type 3A/B/C +C2860663|T037|PT|S82.001C|ICD10CM|Unspecified fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC|Unspecified fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2860664|T037|AB|S82.001D|ICD10CM|Unsp fx right patella, subs for clos fx w routn heal|Unsp fx right patella, subs for clos fx w routn heal +C2860664|T037|PT|S82.001D|ICD10CM|Unspecified fracture of right patella, subsequent encounter for closed fracture with routine healing|Unspecified fracture of right patella, subsequent encounter for closed fracture with routine healing +C2860665|T037|AB|S82.001E|ICD10CM|Unsp fx right patella, subs for opn fx type I/2 w routn heal|Unsp fx right patella, subs for opn fx type I/2 w routn heal +C2860666|T037|AB|S82.001F|ICD10CM|Unsp fx r patella, subs for opn fx type 3A/B/C w routn heal|Unsp fx r patella, subs for opn fx type 3A/B/C w routn heal +C2860667|T037|AB|S82.001G|ICD10CM|Unsp fx right patella, subs for clos fx w delay heal|Unsp fx right patella, subs for clos fx w delay heal +C2860667|T037|PT|S82.001G|ICD10CM|Unspecified fracture of right patella, subsequent encounter for closed fracture with delayed healing|Unspecified fracture of right patella, subsequent encounter for closed fracture with delayed healing +C2860668|T037|AB|S82.001H|ICD10CM|Unsp fx right patella, subs for opn fx type I/2 w delay heal|Unsp fx right patella, subs for opn fx type I/2 w delay heal +C2860669|T037|AB|S82.001J|ICD10CM|Unsp fx r patella, subs for opn fx type 3A/B/C w delay heal|Unsp fx r patella, subs for opn fx type 3A/B/C w delay heal +C2860670|T037|AB|S82.001K|ICD10CM|Unsp fracture of right patella, subs for clos fx w nonunion|Unsp fracture of right patella, subs for clos fx w nonunion +C2860670|T037|PT|S82.001K|ICD10CM|Unspecified fracture of right patella, subsequent encounter for closed fracture with nonunion|Unspecified fracture of right patella, subsequent encounter for closed fracture with nonunion +C2860671|T037|AB|S82.001M|ICD10CM|Unsp fx right patella, subs for opn fx type I/2 w nonunion|Unsp fx right patella, subs for opn fx type I/2 w nonunion +C2860672|T037|AB|S82.001N|ICD10CM|Unsp fx r patella, subs for opn fx type 3A/B/C w nonunion|Unsp fx r patella, subs for opn fx type 3A/B/C w nonunion +C2860673|T037|AB|S82.001P|ICD10CM|Unsp fracture of right patella, subs for clos fx w malunion|Unsp fracture of right patella, subs for clos fx w malunion +C2860673|T037|PT|S82.001P|ICD10CM|Unspecified fracture of right patella, subsequent encounter for closed fracture with malunion|Unspecified fracture of right patella, subsequent encounter for closed fracture with malunion +C2860674|T037|AB|S82.001Q|ICD10CM|Unsp fx right patella, subs for opn fx type I/2 w malunion|Unsp fx right patella, subs for opn fx type I/2 w malunion +C2860675|T037|AB|S82.001R|ICD10CM|Unsp fx r patella, subs for opn fx type 3A/B/C w malunion|Unsp fx r patella, subs for opn fx type 3A/B/C w malunion +C2860676|T037|PT|S82.001S|ICD10CM|Unspecified fracture of right patella, sequela|Unspecified fracture of right patella, sequela +C2860676|T037|AB|S82.001S|ICD10CM|Unspecified fracture of right patella, sequela|Unspecified fracture of right patella, sequela +C2860677|T037|AB|S82.002|ICD10CM|Unspecified fracture of left patella|Unspecified fracture of left patella +C2860677|T037|HT|S82.002|ICD10CM|Unspecified fracture of left patella|Unspecified fracture of left patella +C2860678|T037|AB|S82.002A|ICD10CM|Unsp fracture of left patella, init for clos fx|Unsp fracture of left patella, init for clos fx +C2860678|T037|PT|S82.002A|ICD10CM|Unspecified fracture of left patella, initial encounter for closed fracture|Unspecified fracture of left patella, initial encounter for closed fracture +C2860679|T037|AB|S82.002B|ICD10CM|Unsp fracture of left patella, init for opn fx type I/2|Unsp fracture of left patella, init for opn fx type I/2 +C2860679|T037|PT|S82.002B|ICD10CM|Unspecified fracture of left patella, initial encounter for open fracture type I or II|Unspecified fracture of left patella, initial encounter for open fracture type I or II +C2860680|T037|AB|S82.002C|ICD10CM|Unsp fracture of left patella, init for opn fx type 3A/B/C|Unsp fracture of left patella, init for opn fx type 3A/B/C +C2860680|T037|PT|S82.002C|ICD10CM|Unspecified fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC|Unspecified fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2860681|T037|AB|S82.002D|ICD10CM|Unsp fracture of left patella, subs for clos fx w routn heal|Unsp fracture of left patella, subs for clos fx w routn heal +C2860681|T037|PT|S82.002D|ICD10CM|Unspecified fracture of left patella, subsequent encounter for closed fracture with routine healing|Unspecified fracture of left patella, subsequent encounter for closed fracture with routine healing +C2860682|T037|AB|S82.002E|ICD10CM|Unsp fx left patella, subs for opn fx type I/2 w routn heal|Unsp fx left patella, subs for opn fx type I/2 w routn heal +C2860683|T037|AB|S82.002F|ICD10CM|Unsp fx l patella, subs for opn fx type 3A/B/C w routn heal|Unsp fx l patella, subs for opn fx type 3A/B/C w routn heal +C2860684|T037|AB|S82.002G|ICD10CM|Unsp fracture of left patella, subs for clos fx w delay heal|Unsp fracture of left patella, subs for clos fx w delay heal +C2860684|T037|PT|S82.002G|ICD10CM|Unspecified fracture of left patella, subsequent encounter for closed fracture with delayed healing|Unspecified fracture of left patella, subsequent encounter for closed fracture with delayed healing +C2860685|T037|AB|S82.002H|ICD10CM|Unsp fx left patella, subs for opn fx type I/2 w delay heal|Unsp fx left patella, subs for opn fx type I/2 w delay heal +C2860686|T037|AB|S82.002J|ICD10CM|Unsp fx l patella, subs for opn fx type 3A/B/C w delay heal|Unsp fx l patella, subs for opn fx type 3A/B/C w delay heal +C2860687|T037|AB|S82.002K|ICD10CM|Unsp fracture of left patella, subs for clos fx w nonunion|Unsp fracture of left patella, subs for clos fx w nonunion +C2860687|T037|PT|S82.002K|ICD10CM|Unspecified fracture of left patella, subsequent encounter for closed fracture with nonunion|Unspecified fracture of left patella, subsequent encounter for closed fracture with nonunion +C2860688|T037|AB|S82.002M|ICD10CM|Unsp fx left patella, subs for opn fx type I/2 w nonunion|Unsp fx left patella, subs for opn fx type I/2 w nonunion +C2860689|T037|AB|S82.002N|ICD10CM|Unsp fx left patella, subs for opn fx type 3A/B/C w nonunion|Unsp fx left patella, subs for opn fx type 3A/B/C w nonunion +C2860690|T037|AB|S82.002P|ICD10CM|Unsp fracture of left patella, subs for clos fx w malunion|Unsp fracture of left patella, subs for clos fx w malunion +C2860690|T037|PT|S82.002P|ICD10CM|Unspecified fracture of left patella, subsequent encounter for closed fracture with malunion|Unspecified fracture of left patella, subsequent encounter for closed fracture with malunion +C2860691|T037|AB|S82.002Q|ICD10CM|Unsp fx left patella, subs for opn fx type I/2 w malunion|Unsp fx left patella, subs for opn fx type I/2 w malunion +C2860692|T037|AB|S82.002R|ICD10CM|Unsp fx left patella, subs for opn fx type 3A/B/C w malunion|Unsp fx left patella, subs for opn fx type 3A/B/C w malunion +C2860693|T037|PT|S82.002S|ICD10CM|Unspecified fracture of left patella, sequela|Unspecified fracture of left patella, sequela +C2860693|T037|AB|S82.002S|ICD10CM|Unspecified fracture of left patella, sequela|Unspecified fracture of left patella, sequela +C2860694|T037|AB|S82.009|ICD10CM|Unspecified fracture of unspecified patella|Unspecified fracture of unspecified patella +C2860694|T037|HT|S82.009|ICD10CM|Unspecified fracture of unspecified patella|Unspecified fracture of unspecified patella +C2860695|T037|AB|S82.009A|ICD10CM|Unsp fracture of unsp patella, init for clos fx|Unsp fracture of unsp patella, init for clos fx +C2860695|T037|PT|S82.009A|ICD10CM|Unspecified fracture of unspecified patella, initial encounter for closed fracture|Unspecified fracture of unspecified patella, initial encounter for closed fracture +C2860696|T037|AB|S82.009B|ICD10CM|Unsp fracture of unsp patella, init for opn fx type I/2|Unsp fracture of unsp patella, init for opn fx type I/2 +C2860696|T037|PT|S82.009B|ICD10CM|Unspecified fracture of unspecified patella, initial encounter for open fracture type I or II|Unspecified fracture of unspecified patella, initial encounter for open fracture type I or II +C2860697|T037|AB|S82.009C|ICD10CM|Unsp fracture of unsp patella, init for opn fx type 3A/B/C|Unsp fracture of unsp patella, init for opn fx type 3A/B/C +C2860698|T037|AB|S82.009D|ICD10CM|Unsp fracture of unsp patella, subs for clos fx w routn heal|Unsp fracture of unsp patella, subs for clos fx w routn heal +C2860699|T037|AB|S82.009E|ICD10CM|Unsp fx unsp patella, subs for opn fx type I/2 w routn heal|Unsp fx unsp patella, subs for opn fx type I/2 w routn heal +C2860700|T037|AB|S82.009F|ICD10CM|Unsp fx unsp patella, 7thF|Unsp fx unsp patella, 7thF +C2860701|T037|AB|S82.009G|ICD10CM|Unsp fracture of unsp patella, subs for clos fx w delay heal|Unsp fracture of unsp patella, subs for clos fx w delay heal +C2860702|T037|AB|S82.009H|ICD10CM|Unsp fx unsp patella, subs for opn fx type I/2 w delay heal|Unsp fx unsp patella, subs for opn fx type I/2 w delay heal +C2860703|T037|AB|S82.009J|ICD10CM|Unsp fx unsp patella, 7thJ|Unsp fx unsp patella, 7thJ +C2860704|T037|AB|S82.009K|ICD10CM|Unsp fracture of unsp patella, subs for clos fx w nonunion|Unsp fracture of unsp patella, subs for clos fx w nonunion +C2860704|T037|PT|S82.009K|ICD10CM|Unspecified fracture of unspecified patella, subsequent encounter for closed fracture with nonunion|Unspecified fracture of unspecified patella, subsequent encounter for closed fracture with nonunion +C2860705|T037|AB|S82.009M|ICD10CM|Unsp fx unsp patella, subs for opn fx type I/2 w nonunion|Unsp fx unsp patella, subs for opn fx type I/2 w nonunion +C2860706|T037|AB|S82.009N|ICD10CM|Unsp fx unsp patella, subs for opn fx type 3A/B/C w nonunion|Unsp fx unsp patella, subs for opn fx type 3A/B/C w nonunion +C2860707|T037|AB|S82.009P|ICD10CM|Unsp fracture of unsp patella, subs for clos fx w malunion|Unsp fracture of unsp patella, subs for clos fx w malunion +C2860707|T037|PT|S82.009P|ICD10CM|Unspecified fracture of unspecified patella, subsequent encounter for closed fracture with malunion|Unspecified fracture of unspecified patella, subsequent encounter for closed fracture with malunion +C2860708|T037|AB|S82.009Q|ICD10CM|Unsp fx unsp patella, subs for opn fx type I/2 w malunion|Unsp fx unsp patella, subs for opn fx type I/2 w malunion +C2860709|T037|AB|S82.009R|ICD10CM|Unsp fx unsp patella, subs for opn fx type 3A/B/C w malunion|Unsp fx unsp patella, subs for opn fx type 3A/B/C w malunion +C2860710|T037|PT|S82.009S|ICD10CM|Unspecified fracture of unspecified patella, sequela|Unspecified fracture of unspecified patella, sequela +C2860710|T037|AB|S82.009S|ICD10CM|Unspecified fracture of unspecified patella, sequela|Unspecified fracture of unspecified patella, sequela +C2860711|T037|AB|S82.01|ICD10CM|Osteochondral fracture of patella|Osteochondral fracture of patella +C2860711|T037|HT|S82.01|ICD10CM|Osteochondral fracture of patella|Osteochondral fracture of patella +C2860712|T037|AB|S82.011|ICD10CM|Displaced osteochondral fracture of right patella|Displaced osteochondral fracture of right patella +C2860712|T037|HT|S82.011|ICD10CM|Displaced osteochondral fracture of right patella|Displaced osteochondral fracture of right patella +C2860713|T037|AB|S82.011A|ICD10CM|Displaced osteochondral fracture of right patella, init|Displaced osteochondral fracture of right patella, init +C2860713|T037|PT|S82.011A|ICD10CM|Displaced osteochondral fracture of right patella, initial encounter for closed fracture|Displaced osteochondral fracture of right patella, initial encounter for closed fracture +C2860714|T037|AB|S82.011B|ICD10CM|Displ osteochon fx right patella, init for opn fx type I/2|Displ osteochon fx right patella, init for opn fx type I/2 +C2860714|T037|PT|S82.011B|ICD10CM|Displaced osteochondral fracture of right patella, initial encounter for open fracture type I or II|Displaced osteochondral fracture of right patella, initial encounter for open fracture type I or II +C2860715|T037|AB|S82.011C|ICD10CM|Displ osteochon fx r patella, init for opn fx type 3A/B/C|Displ osteochon fx r patella, init for opn fx type 3A/B/C +C2860716|T037|AB|S82.011D|ICD10CM|Displ osteochon fx r patella, subs for clos fx w routn heal|Displ osteochon fx r patella, subs for clos fx w routn heal +C2860717|T037|AB|S82.011E|ICD10CM|Displ osteochon fx r patella, 7thE|Displ osteochon fx r patella, 7thE +C2860718|T037|AB|S82.011F|ICD10CM|Displ osteochon fx r patella, 7thF|Displ osteochon fx r patella, 7thF +C2860719|T037|AB|S82.011G|ICD10CM|Displ osteochon fx r patella, subs for clos fx w delay heal|Displ osteochon fx r patella, subs for clos fx w delay heal +C2860720|T037|AB|S82.011H|ICD10CM|Displ osteochon fx r patella, 7thH|Displ osteochon fx r patella, 7thH +C2860721|T037|AB|S82.011J|ICD10CM|Displ osteochon fx r patella, 7thJ|Displ osteochon fx r patella, 7thJ +C2860722|T037|AB|S82.011K|ICD10CM|Displ osteochon fx r patella, subs for clos fx w nonunion|Displ osteochon fx r patella, subs for clos fx w nonunion +C2860723|T037|AB|S82.011M|ICD10CM|Displ osteochon fx r patella, 7thM|Displ osteochon fx r patella, 7thM +C2860724|T037|AB|S82.011N|ICD10CM|Displ osteochon fx r patella, 7thN|Displ osteochon fx r patella, 7thN +C2860725|T037|AB|S82.011P|ICD10CM|Displ osteochon fx r patella, subs for clos fx w malunion|Displ osteochon fx r patella, subs for clos fx w malunion +C2860726|T037|AB|S82.011Q|ICD10CM|Displ osteochon fx r patella, 7thQ|Displ osteochon fx r patella, 7thQ +C2860727|T037|AB|S82.011R|ICD10CM|Displ osteochon fx r patella, 7thR|Displ osteochon fx r patella, 7thR +C2860728|T037|PT|S82.011S|ICD10CM|Displaced osteochondral fracture of right patella, sequela|Displaced osteochondral fracture of right patella, sequela +C2860728|T037|AB|S82.011S|ICD10CM|Displaced osteochondral fracture of right patella, sequela|Displaced osteochondral fracture of right patella, sequela +C2860729|T037|AB|S82.012|ICD10CM|Displaced osteochondral fracture of left patella|Displaced osteochondral fracture of left patella +C2860729|T037|HT|S82.012|ICD10CM|Displaced osteochondral fracture of left patella|Displaced osteochondral fracture of left patella +C2860730|T037|AB|S82.012A|ICD10CM|Displaced osteochondral fracture of left patella, init|Displaced osteochondral fracture of left patella, init +C2860730|T037|PT|S82.012A|ICD10CM|Displaced osteochondral fracture of left patella, initial encounter for closed fracture|Displaced osteochondral fracture of left patella, initial encounter for closed fracture +C2860731|T037|AB|S82.012B|ICD10CM|Displ osteochon fx left patella, init for opn fx type I/2|Displ osteochon fx left patella, init for opn fx type I/2 +C2860731|T037|PT|S82.012B|ICD10CM|Displaced osteochondral fracture of left patella, initial encounter for open fracture type I or II|Displaced osteochondral fracture of left patella, initial encounter for open fracture type I or II +C2860732|T037|AB|S82.012C|ICD10CM|Displ osteochon fx left patella, init for opn fx type 3A/B/C|Displ osteochon fx left patella, init for opn fx type 3A/B/C +C2860733|T037|AB|S82.012D|ICD10CM|Displ osteochon fx l patella, subs for clos fx w routn heal|Displ osteochon fx l patella, subs for clos fx w routn heal +C2860734|T037|AB|S82.012E|ICD10CM|Displ osteochon fx l patella, 7thE|Displ osteochon fx l patella, 7thE +C2860735|T037|AB|S82.012F|ICD10CM|Displ osteochon fx l patella, 7thF|Displ osteochon fx l patella, 7thF +C2860736|T037|AB|S82.012G|ICD10CM|Displ osteochon fx l patella, subs for clos fx w delay heal|Displ osteochon fx l patella, subs for clos fx w delay heal +C2860737|T037|AB|S82.012H|ICD10CM|Displ osteochon fx l patella, 7thH|Displ osteochon fx l patella, 7thH +C2860738|T037|AB|S82.012J|ICD10CM|Displ osteochon fx l patella, 7thJ|Displ osteochon fx l patella, 7thJ +C2860739|T037|AB|S82.012K|ICD10CM|Displ osteochon fx left patella, subs for clos fx w nonunion|Displ osteochon fx left patella, subs for clos fx w nonunion +C2860740|T037|AB|S82.012M|ICD10CM|Displ osteochon fx l patella, 7thM|Displ osteochon fx l patella, 7thM +C2860741|T037|AB|S82.012N|ICD10CM|Displ osteochon fx l patella, 7thN|Displ osteochon fx l patella, 7thN +C2860742|T037|AB|S82.012P|ICD10CM|Displ osteochon fx left patella, subs for clos fx w malunion|Displ osteochon fx left patella, subs for clos fx w malunion +C2860743|T037|AB|S82.012Q|ICD10CM|Displ osteochon fx l patella, 7thQ|Displ osteochon fx l patella, 7thQ +C2860744|T037|AB|S82.012R|ICD10CM|Displ osteochon fx l patella, 7thR|Displ osteochon fx l patella, 7thR +C2860745|T037|AB|S82.012S|ICD10CM|Displaced osteochondral fracture of left patella, sequela|Displaced osteochondral fracture of left patella, sequela +C2860745|T037|PT|S82.012S|ICD10CM|Displaced osteochondral fracture of left patella, sequela|Displaced osteochondral fracture of left patella, sequela +C2860746|T037|AB|S82.013|ICD10CM|Displaced osteochondral fracture of unspecified patella|Displaced osteochondral fracture of unspecified patella +C2860746|T037|HT|S82.013|ICD10CM|Displaced osteochondral fracture of unspecified patella|Displaced osteochondral fracture of unspecified patella +C2860747|T037|AB|S82.013A|ICD10CM|Displaced osteochondral fracture of unsp patella, init|Displaced osteochondral fracture of unsp patella, init +C2860747|T037|PT|S82.013A|ICD10CM|Displaced osteochondral fracture of unspecified patella, initial encounter for closed fracture|Displaced osteochondral fracture of unspecified patella, initial encounter for closed fracture +C2860748|T037|AB|S82.013B|ICD10CM|Displ osteochon fx unsp patella, init for opn fx type I/2|Displ osteochon fx unsp patella, init for opn fx type I/2 +C2860749|T037|AB|S82.013C|ICD10CM|Displ osteochon fx unsp patella, init for opn fx type 3A/B/C|Displ osteochon fx unsp patella, init for opn fx type 3A/B/C +C2860750|T037|AB|S82.013D|ICD10CM|Displ osteochon fx unsp patella, 7thD|Displ osteochon fx unsp patella, 7thD +C2860751|T037|AB|S82.013E|ICD10CM|Displ osteochon fx unsp patella, 7thE|Displ osteochon fx unsp patella, 7thE +C2860752|T037|AB|S82.013F|ICD10CM|Displ osteochon fx unsp patella, 7thF|Displ osteochon fx unsp patella, 7thF +C2860753|T037|AB|S82.013G|ICD10CM|Displ osteochon fx unsp patella, 7thG|Displ osteochon fx unsp patella, 7thG +C2860754|T037|AB|S82.013H|ICD10CM|Displ osteochon fx unsp patella, 7thH|Displ osteochon fx unsp patella, 7thH +C2860755|T037|AB|S82.013J|ICD10CM|Displ osteochon fx unsp patella, 7thJ|Displ osteochon fx unsp patella, 7thJ +C2860756|T037|AB|S82.013K|ICD10CM|Displ osteochon fx unsp patella, subs for clos fx w nonunion|Displ osteochon fx unsp patella, subs for clos fx w nonunion +C2860757|T037|AB|S82.013M|ICD10CM|Displ osteochon fx unsp patella, 7thM|Displ osteochon fx unsp patella, 7thM +C2860758|T037|AB|S82.013N|ICD10CM|Displ osteochon fx unsp patella, 7thN|Displ osteochon fx unsp patella, 7thN +C2860759|T037|AB|S82.013P|ICD10CM|Displ osteochon fx unsp patella, subs for clos fx w malunion|Displ osteochon fx unsp patella, subs for clos fx w malunion +C2860760|T037|AB|S82.013Q|ICD10CM|Displ osteochon fx unsp patella, 7thQ|Displ osteochon fx unsp patella, 7thQ +C2860761|T037|AB|S82.013R|ICD10CM|Displ osteochon fx unsp patella, 7thR|Displ osteochon fx unsp patella, 7thR +C2860762|T037|AB|S82.013S|ICD10CM|Displaced osteochondral fracture of unsp patella, sequela|Displaced osteochondral fracture of unsp patella, sequela +C2860762|T037|PT|S82.013S|ICD10CM|Displaced osteochondral fracture of unspecified patella, sequela|Displaced osteochondral fracture of unspecified patella, sequela +C2860763|T037|AB|S82.014|ICD10CM|Nondisplaced osteochondral fracture of right patella|Nondisplaced osteochondral fracture of right patella +C2860763|T037|HT|S82.014|ICD10CM|Nondisplaced osteochondral fracture of right patella|Nondisplaced osteochondral fracture of right patella +C2860764|T037|AB|S82.014A|ICD10CM|Nondisplaced osteochondral fracture of right patella, init|Nondisplaced osteochondral fracture of right patella, init +C2860764|T037|PT|S82.014A|ICD10CM|Nondisplaced osteochondral fracture of right patella, initial encounter for closed fracture|Nondisplaced osteochondral fracture of right patella, initial encounter for closed fracture +C2860765|T037|AB|S82.014B|ICD10CM|Nondisp osteochon fx right patella, init for opn fx type I/2|Nondisp osteochon fx right patella, init for opn fx type I/2 +C2860766|T037|AB|S82.014C|ICD10CM|Nondisp osteochon fx r patella, init for opn fx type 3A/B/C|Nondisp osteochon fx r patella, init for opn fx type 3A/B/C +C2860767|T037|AB|S82.014D|ICD10CM|Nondisp osteochon fx r patella, 7thD|Nondisp osteochon fx r patella, 7thD +C2860768|T037|AB|S82.014E|ICD10CM|Nondisp osteochon fx r patella, 7thE|Nondisp osteochon fx r patella, 7thE +C2860769|T037|AB|S82.014F|ICD10CM|Nondisp osteochon fx r patella, 7thF|Nondisp osteochon fx r patella, 7thF +C2860770|T037|AB|S82.014G|ICD10CM|Nondisp osteochon fx r patella, 7thG|Nondisp osteochon fx r patella, 7thG +C2860771|T037|AB|S82.014H|ICD10CM|Nondisp osteochon fx r patella, 7thH|Nondisp osteochon fx r patella, 7thH +C2860772|T037|AB|S82.014J|ICD10CM|Nondisp osteochon fx r patella, 7thJ|Nondisp osteochon fx r patella, 7thJ +C2860773|T037|AB|S82.014K|ICD10CM|Nondisp osteochon fx r patella, subs for clos fx w nonunion|Nondisp osteochon fx r patella, subs for clos fx w nonunion +C2860774|T037|AB|S82.014M|ICD10CM|Nondisp osteochon fx r patella, 7thM|Nondisp osteochon fx r patella, 7thM +C2860775|T037|AB|S82.014N|ICD10CM|Nondisp osteochon fx r patella, 7thN|Nondisp osteochon fx r patella, 7thN +C2860776|T037|AB|S82.014P|ICD10CM|Nondisp osteochon fx r patella, subs for clos fx w malunion|Nondisp osteochon fx r patella, subs for clos fx w malunion +C2860777|T037|AB|S82.014Q|ICD10CM|Nondisp osteochon fx r patella, 7thQ|Nondisp osteochon fx r patella, 7thQ +C2860778|T037|AB|S82.014R|ICD10CM|Nondisp osteochon fx r patella, 7thR|Nondisp osteochon fx r patella, 7thR +C2860779|T037|AB|S82.014S|ICD10CM|Nondisplaced osteochon fracture of right patella, sequela|Nondisplaced osteochon fracture of right patella, sequela +C2860779|T037|PT|S82.014S|ICD10CM|Nondisplaced osteochondral fracture of right patella, sequela|Nondisplaced osteochondral fracture of right patella, sequela +C2860780|T037|AB|S82.015|ICD10CM|Nondisplaced osteochondral fracture of left patella|Nondisplaced osteochondral fracture of left patella +C2860780|T037|HT|S82.015|ICD10CM|Nondisplaced osteochondral fracture of left patella|Nondisplaced osteochondral fracture of left patella +C2860781|T037|AB|S82.015A|ICD10CM|Nondisplaced osteochondral fracture of left patella, init|Nondisplaced osteochondral fracture of left patella, init +C2860781|T037|PT|S82.015A|ICD10CM|Nondisplaced osteochondral fracture of left patella, initial encounter for closed fracture|Nondisplaced osteochondral fracture of left patella, initial encounter for closed fracture +C2860782|T037|AB|S82.015B|ICD10CM|Nondisp osteochon fx left patella, init for opn fx type I/2|Nondisp osteochon fx left patella, init for opn fx type I/2 +C2860783|T037|AB|S82.015C|ICD10CM|Nondisp osteochon fx l patella, init for opn fx type 3A/B/C|Nondisp osteochon fx l patella, init for opn fx type 3A/B/C +C2860784|T037|AB|S82.015D|ICD10CM|Nondisp osteochon fx l patella, 7thD|Nondisp osteochon fx l patella, 7thD +C2860785|T037|AB|S82.015E|ICD10CM|Nondisp osteochon fx l patella, 7thE|Nondisp osteochon fx l patella, 7thE +C2860786|T037|AB|S82.015F|ICD10CM|Nondisp osteochon fx l patella, 7thF|Nondisp osteochon fx l patella, 7thF +C2860787|T037|AB|S82.015G|ICD10CM|Nondisp osteochon fx l patella, 7thG|Nondisp osteochon fx l patella, 7thG +C2860788|T037|AB|S82.015H|ICD10CM|Nondisp osteochon fx l patella, 7thH|Nondisp osteochon fx l patella, 7thH +C2860789|T037|AB|S82.015J|ICD10CM|Nondisp osteochon fx l patella, 7thJ|Nondisp osteochon fx l patella, 7thJ +C2860790|T037|AB|S82.015K|ICD10CM|Nondisp osteochon fx l patella, subs for clos fx w nonunion|Nondisp osteochon fx l patella, subs for clos fx w nonunion +C2860791|T037|AB|S82.015M|ICD10CM|Nondisp osteochon fx l patella, 7thM|Nondisp osteochon fx l patella, 7thM +C2860792|T037|AB|S82.015N|ICD10CM|Nondisp osteochon fx l patella, 7thN|Nondisp osteochon fx l patella, 7thN +C2860793|T037|AB|S82.015P|ICD10CM|Nondisp osteochon fx l patella, subs for clos fx w malunion|Nondisp osteochon fx l patella, subs for clos fx w malunion +C2860794|T037|AB|S82.015Q|ICD10CM|Nondisp osteochon fx l patella, 7thQ|Nondisp osteochon fx l patella, 7thQ +C2860795|T037|AB|S82.015R|ICD10CM|Nondisp osteochon fx l patella, 7thR|Nondisp osteochon fx l patella, 7thR +C2860796|T037|AB|S82.015S|ICD10CM|Nondisplaced osteochondral fracture of left patella, sequela|Nondisplaced osteochondral fracture of left patella, sequela +C2860796|T037|PT|S82.015S|ICD10CM|Nondisplaced osteochondral fracture of left patella, sequela|Nondisplaced osteochondral fracture of left patella, sequela +C2860797|T037|AB|S82.016|ICD10CM|Nondisplaced osteochondral fracture of unspecified patella|Nondisplaced osteochondral fracture of unspecified patella +C2860797|T037|HT|S82.016|ICD10CM|Nondisplaced osteochondral fracture of unspecified patella|Nondisplaced osteochondral fracture of unspecified patella +C2860798|T037|AB|S82.016A|ICD10CM|Nondisplaced osteochondral fracture of unsp patella, init|Nondisplaced osteochondral fracture of unsp patella, init +C2860798|T037|PT|S82.016A|ICD10CM|Nondisplaced osteochondral fracture of unspecified patella, initial encounter for closed fracture|Nondisplaced osteochondral fracture of unspecified patella, initial encounter for closed fracture +C2860799|T037|AB|S82.016B|ICD10CM|Nondisp osteochon fx unsp patella, init for opn fx type I/2|Nondisp osteochon fx unsp patella, init for opn fx type I/2 +C2860800|T037|AB|S82.016C|ICD10CM|Nondisp osteochon fx unsp patella, 7thC|Nondisp osteochon fx unsp patella, 7thC +C2860801|T037|AB|S82.016D|ICD10CM|Nondisp osteochon fx unsp patella, 7thD|Nondisp osteochon fx unsp patella, 7thD +C2860802|T037|AB|S82.016E|ICD10CM|Nondisp osteochon fx unsp patella, 7thE|Nondisp osteochon fx unsp patella, 7thE +C2860803|T037|AB|S82.016F|ICD10CM|Nondisp osteochon fx unsp patella, 7thF|Nondisp osteochon fx unsp patella, 7thF +C2860804|T037|AB|S82.016G|ICD10CM|Nondisp osteochon fx unsp patella, 7thG|Nondisp osteochon fx unsp patella, 7thG +C2860805|T037|AB|S82.016H|ICD10CM|Nondisp osteochon fx unsp patella, 7thH|Nondisp osteochon fx unsp patella, 7thH +C2860806|T037|AB|S82.016J|ICD10CM|Nondisp osteochon fx unsp patella, 7thJ|Nondisp osteochon fx unsp patella, 7thJ +C2860807|T037|AB|S82.016K|ICD10CM|Nondisp osteochon fx unsp patella, 7thK|Nondisp osteochon fx unsp patella, 7thK +C2860808|T037|AB|S82.016M|ICD10CM|Nondisp osteochon fx unsp patella, 7thM|Nondisp osteochon fx unsp patella, 7thM +C2860809|T037|AB|S82.016N|ICD10CM|Nondisp osteochon fx unsp patella, 7thN|Nondisp osteochon fx unsp patella, 7thN +C2860810|T037|AB|S82.016P|ICD10CM|Nondisp osteochon fx unsp patella, 7thP|Nondisp osteochon fx unsp patella, 7thP +C2860811|T037|AB|S82.016Q|ICD10CM|Nondisp osteochon fx unsp patella, 7thQ|Nondisp osteochon fx unsp patella, 7thQ +C2860812|T037|AB|S82.016R|ICD10CM|Nondisp osteochon fx unsp patella, 7thR|Nondisp osteochon fx unsp patella, 7thR +C2860813|T037|AB|S82.016S|ICD10CM|Nondisplaced osteochondral fracture of unsp patella, sequela|Nondisplaced osteochondral fracture of unsp patella, sequela +C2860813|T037|PT|S82.016S|ICD10CM|Nondisplaced osteochondral fracture of unspecified patella, sequela|Nondisplaced osteochondral fracture of unspecified patella, sequela +C2860814|T037|AB|S82.02|ICD10CM|Longitudinal fracture of patella|Longitudinal fracture of patella +C2860814|T037|HT|S82.02|ICD10CM|Longitudinal fracture of patella|Longitudinal fracture of patella +C2860815|T037|AB|S82.021|ICD10CM|Displaced longitudinal fracture of right patella|Displaced longitudinal fracture of right patella +C2860815|T037|HT|S82.021|ICD10CM|Displaced longitudinal fracture of right patella|Displaced longitudinal fracture of right patella +C2860816|T037|AB|S82.021A|ICD10CM|Displaced longitudinal fracture of right patella, init|Displaced longitudinal fracture of right patella, init +C2860816|T037|PT|S82.021A|ICD10CM|Displaced longitudinal fracture of right patella, initial encounter for closed fracture|Displaced longitudinal fracture of right patella, initial encounter for closed fracture +C2860817|T037|AB|S82.021B|ICD10CM|Displ longitud fx right patella, init for opn fx type I/2|Displ longitud fx right patella, init for opn fx type I/2 +C2860817|T037|PT|S82.021B|ICD10CM|Displaced longitudinal fracture of right patella, initial encounter for open fracture type I or II|Displaced longitudinal fracture of right patella, initial encounter for open fracture type I or II +C2860818|T037|AB|S82.021C|ICD10CM|Displ longitud fx right patella, init for opn fx type 3A/B/C|Displ longitud fx right patella, init for opn fx type 3A/B/C +C2860819|T037|AB|S82.021D|ICD10CM|Displ longitud fx r patella, subs for clos fx w routn heal|Displ longitud fx r patella, subs for clos fx w routn heal +C2860820|T037|AB|S82.021E|ICD10CM|Displ longitud fx r patella, 7thE|Displ longitud fx r patella, 7thE +C2860821|T037|AB|S82.021F|ICD10CM|Displ longitud fx r patella, 7thF|Displ longitud fx r patella, 7thF +C2860822|T037|AB|S82.021G|ICD10CM|Displ longitud fx r patella, subs for clos fx w delay heal|Displ longitud fx r patella, subs for clos fx w delay heal +C2860823|T037|AB|S82.021H|ICD10CM|Displ longitud fx r patella, 7thH|Displ longitud fx r patella, 7thH +C2860824|T037|AB|S82.021J|ICD10CM|Displ longitud fx r patella, 7thJ|Displ longitud fx r patella, 7thJ +C2860825|T037|AB|S82.021K|ICD10CM|Displ longitud fx right patella, subs for clos fx w nonunion|Displ longitud fx right patella, subs for clos fx w nonunion +C2860826|T037|AB|S82.021M|ICD10CM|Displ longitud fx r patella, 7thM|Displ longitud fx r patella, 7thM +C2860827|T037|AB|S82.021N|ICD10CM|Displ longitud fx r patella, 7thN|Displ longitud fx r patella, 7thN +C2860828|T037|AB|S82.021P|ICD10CM|Displ longitud fx right patella, subs for clos fx w malunion|Displ longitud fx right patella, subs for clos fx w malunion +C2860829|T037|AB|S82.021Q|ICD10CM|Displ longitud fx r patella, 7thQ|Displ longitud fx r patella, 7thQ +C2860830|T037|AB|S82.021R|ICD10CM|Displ longitud fx r patella, 7thR|Displ longitud fx r patella, 7thR +C2860831|T037|AB|S82.021S|ICD10CM|Displaced longitudinal fracture of right patella, sequela|Displaced longitudinal fracture of right patella, sequela +C2860831|T037|PT|S82.021S|ICD10CM|Displaced longitudinal fracture of right patella, sequela|Displaced longitudinal fracture of right patella, sequela +C2860832|T037|AB|S82.022|ICD10CM|Displaced longitudinal fracture of left patella|Displaced longitudinal fracture of left patella +C2860832|T037|HT|S82.022|ICD10CM|Displaced longitudinal fracture of left patella|Displaced longitudinal fracture of left patella +C2860833|T037|AB|S82.022A|ICD10CM|Displaced longitudinal fracture of left patella, init|Displaced longitudinal fracture of left patella, init +C2860833|T037|PT|S82.022A|ICD10CM|Displaced longitudinal fracture of left patella, initial encounter for closed fracture|Displaced longitudinal fracture of left patella, initial encounter for closed fracture +C2860834|T037|AB|S82.022B|ICD10CM|Displaced longitud fx left patella, init for opn fx type I/2|Displaced longitud fx left patella, init for opn fx type I/2 +C2860834|T037|PT|S82.022B|ICD10CM|Displaced longitudinal fracture of left patella, initial encounter for open fracture type I or II|Displaced longitudinal fracture of left patella, initial encounter for open fracture type I or II +C2860835|T037|AB|S82.022C|ICD10CM|Displ longitud fx left patella, init for opn fx type 3A/B/C|Displ longitud fx left patella, init for opn fx type 3A/B/C +C2860836|T037|AB|S82.022D|ICD10CM|Displ longitud fx l patella, subs for clos fx w routn heal|Displ longitud fx l patella, subs for clos fx w routn heal +C2860837|T037|AB|S82.022E|ICD10CM|Displ longitud fx l patella, 7thE|Displ longitud fx l patella, 7thE +C2860838|T037|AB|S82.022F|ICD10CM|Displ longitud fx l patella, 7thF|Displ longitud fx l patella, 7thF +C2860839|T037|AB|S82.022G|ICD10CM|Displ longitud fx l patella, subs for clos fx w delay heal|Displ longitud fx l patella, subs for clos fx w delay heal +C2860840|T037|AB|S82.022H|ICD10CM|Displ longitud fx l patella, 7thH|Displ longitud fx l patella, 7thH +C2860841|T037|AB|S82.022J|ICD10CM|Displ longitud fx l patella, 7thJ|Displ longitud fx l patella, 7thJ +C2860842|T037|AB|S82.022K|ICD10CM|Displ longitud fx left patella, subs for clos fx w nonunion|Displ longitud fx left patella, subs for clos fx w nonunion +C2860843|T037|AB|S82.022M|ICD10CM|Displ longitud fx l patella, 7thM|Displ longitud fx l patella, 7thM +C2860844|T037|AB|S82.022N|ICD10CM|Displ longitud fx l patella, 7thN|Displ longitud fx l patella, 7thN +C2860845|T037|AB|S82.022P|ICD10CM|Displ longitud fx left patella, subs for clos fx w malunion|Displ longitud fx left patella, subs for clos fx w malunion +C2860846|T037|AB|S82.022Q|ICD10CM|Displ longitud fx l patella, 7thQ|Displ longitud fx l patella, 7thQ +C2860847|T037|AB|S82.022R|ICD10CM|Displ longitud fx l patella, 7thR|Displ longitud fx l patella, 7thR +C2860848|T037|PT|S82.022S|ICD10CM|Displaced longitudinal fracture of left patella, sequela|Displaced longitudinal fracture of left patella, sequela +C2860848|T037|AB|S82.022S|ICD10CM|Displaced longitudinal fracture of left patella, sequela|Displaced longitudinal fracture of left patella, sequela +C2860849|T037|AB|S82.023|ICD10CM|Displaced longitudinal fracture of unspecified patella|Displaced longitudinal fracture of unspecified patella +C2860849|T037|HT|S82.023|ICD10CM|Displaced longitudinal fracture of unspecified patella|Displaced longitudinal fracture of unspecified patella +C2860850|T037|AB|S82.023A|ICD10CM|Displaced longitudinal fracture of unsp patella, init|Displaced longitudinal fracture of unsp patella, init +C2860850|T037|PT|S82.023A|ICD10CM|Displaced longitudinal fracture of unspecified patella, initial encounter for closed fracture|Displaced longitudinal fracture of unspecified patella, initial encounter for closed fracture +C2860851|T037|AB|S82.023B|ICD10CM|Displaced longitud fx unsp patella, init for opn fx type I/2|Displaced longitud fx unsp patella, init for opn fx type I/2 +C2860852|T037|AB|S82.023C|ICD10CM|Displ longitud fx unsp patella, init for opn fx type 3A/B/C|Displ longitud fx unsp patella, init for opn fx type 3A/B/C +C2860853|T037|AB|S82.023D|ICD10CM|Displ longitud fx unsp patella, 7thD|Displ longitud fx unsp patella, 7thD +C2860854|T037|AB|S82.023E|ICD10CM|Displ longitud fx unsp patella, 7thE|Displ longitud fx unsp patella, 7thE +C2860855|T037|AB|S82.023F|ICD10CM|Displ longitud fx unsp patella, 7thF|Displ longitud fx unsp patella, 7thF +C2860856|T037|AB|S82.023G|ICD10CM|Displ longitud fx unsp patella, 7thG|Displ longitud fx unsp patella, 7thG +C2860857|T037|AB|S82.023H|ICD10CM|Displ longitud fx unsp patella, 7thH|Displ longitud fx unsp patella, 7thH +C2860858|T037|AB|S82.023J|ICD10CM|Displ longitud fx unsp patella, 7thJ|Displ longitud fx unsp patella, 7thJ +C2860859|T037|AB|S82.023K|ICD10CM|Displ longitud fx unsp patella, subs for clos fx w nonunion|Displ longitud fx unsp patella, subs for clos fx w nonunion +C2860860|T037|AB|S82.023M|ICD10CM|Displ longitud fx unsp patella, 7thM|Displ longitud fx unsp patella, 7thM +C2860861|T037|AB|S82.023N|ICD10CM|Displ longitud fx unsp patella, 7thN|Displ longitud fx unsp patella, 7thN +C2860862|T037|AB|S82.023P|ICD10CM|Displ longitud fx unsp patella, subs for clos fx w malunion|Displ longitud fx unsp patella, subs for clos fx w malunion +C2860863|T037|AB|S82.023Q|ICD10CM|Displ longitud fx unsp patella, 7thQ|Displ longitud fx unsp patella, 7thQ +C2860864|T037|AB|S82.023R|ICD10CM|Displ longitud fx unsp patella, 7thR|Displ longitud fx unsp patella, 7thR +C2860865|T037|AB|S82.023S|ICD10CM|Displaced longitudinal fracture of unsp patella, sequela|Displaced longitudinal fracture of unsp patella, sequela +C2860865|T037|PT|S82.023S|ICD10CM|Displaced longitudinal fracture of unspecified patella, sequela|Displaced longitudinal fracture of unspecified patella, sequela +C2860866|T037|AB|S82.024|ICD10CM|Nondisplaced longitudinal fracture of right patella|Nondisplaced longitudinal fracture of right patella +C2860866|T037|HT|S82.024|ICD10CM|Nondisplaced longitudinal fracture of right patella|Nondisplaced longitudinal fracture of right patella +C2860867|T037|AB|S82.024A|ICD10CM|Nondisplaced longitudinal fracture of right patella, init|Nondisplaced longitudinal fracture of right patella, init +C2860867|T037|PT|S82.024A|ICD10CM|Nondisplaced longitudinal fracture of right patella, initial encounter for closed fracture|Nondisplaced longitudinal fracture of right patella, initial encounter for closed fracture +C2860868|T037|AB|S82.024B|ICD10CM|Nondisp longitud fx right patella, init for opn fx type I/2|Nondisp longitud fx right patella, init for opn fx type I/2 +C2860869|T037|AB|S82.024C|ICD10CM|Nondisp longitud fx r patella, init for opn fx type 3A/B/C|Nondisp longitud fx r patella, init for opn fx type 3A/B/C +C2860870|T037|AB|S82.024D|ICD10CM|Nondisp longitud fx r patella, subs for clos fx w routn heal|Nondisp longitud fx r patella, subs for clos fx w routn heal +C2860871|T037|AB|S82.024E|ICD10CM|Nondisp longitud fx r patella, 7thE|Nondisp longitud fx r patella, 7thE +C2860872|T037|AB|S82.024F|ICD10CM|Nondisp longitud fx r patella, 7thF|Nondisp longitud fx r patella, 7thF +C2860873|T037|AB|S82.024G|ICD10CM|Nondisp longitud fx r patella, subs for clos fx w delay heal|Nondisp longitud fx r patella, subs for clos fx w delay heal +C2860874|T037|AB|S82.024H|ICD10CM|Nondisp longitud fx r patella, 7thH|Nondisp longitud fx r patella, 7thH +C2860875|T037|AB|S82.024J|ICD10CM|Nondisp longitud fx r patella, 7thJ|Nondisp longitud fx r patella, 7thJ +C2860876|T037|AB|S82.024K|ICD10CM|Nondisp longitud fx r patella, subs for clos fx w nonunion|Nondisp longitud fx r patella, subs for clos fx w nonunion +C2860877|T037|AB|S82.024M|ICD10CM|Nondisp longitud fx r patella, 7thM|Nondisp longitud fx r patella, 7thM +C2860878|T037|AB|S82.024N|ICD10CM|Nondisp longitud fx r patella, 7thN|Nondisp longitud fx r patella, 7thN +C2860879|T037|AB|S82.024P|ICD10CM|Nondisp longitud fx r patella, subs for clos fx w malunion|Nondisp longitud fx r patella, subs for clos fx w malunion +C2860880|T037|AB|S82.024Q|ICD10CM|Nondisp longitud fx r patella, 7thQ|Nondisp longitud fx r patella, 7thQ +C2860881|T037|AB|S82.024R|ICD10CM|Nondisp longitud fx r patella, 7thR|Nondisp longitud fx r patella, 7thR +C2860882|T037|AB|S82.024S|ICD10CM|Nondisplaced longitudinal fracture of right patella, sequela|Nondisplaced longitudinal fracture of right patella, sequela +C2860882|T037|PT|S82.024S|ICD10CM|Nondisplaced longitudinal fracture of right patella, sequela|Nondisplaced longitudinal fracture of right patella, sequela +C2860883|T037|AB|S82.025|ICD10CM|Nondisplaced longitudinal fracture of left patella|Nondisplaced longitudinal fracture of left patella +C2860883|T037|HT|S82.025|ICD10CM|Nondisplaced longitudinal fracture of left patella|Nondisplaced longitudinal fracture of left patella +C2860884|T037|AB|S82.025A|ICD10CM|Nondisplaced longitudinal fracture of left patella, init|Nondisplaced longitudinal fracture of left patella, init +C2860884|T037|PT|S82.025A|ICD10CM|Nondisplaced longitudinal fracture of left patella, initial encounter for closed fracture|Nondisplaced longitudinal fracture of left patella, initial encounter for closed fracture +C2860885|T037|AB|S82.025B|ICD10CM|Nondisp longitud fx left patella, init for opn fx type I/2|Nondisp longitud fx left patella, init for opn fx type I/2 +C2860885|T037|PT|S82.025B|ICD10CM|Nondisplaced longitudinal fracture of left patella, initial encounter for open fracture type I or II|Nondisplaced longitudinal fracture of left patella, initial encounter for open fracture type I or II +C2860886|T037|AB|S82.025C|ICD10CM|Nondisp longitud fx l patella, init for opn fx type 3A/B/C|Nondisp longitud fx l patella, init for opn fx type 3A/B/C +C2860887|T037|AB|S82.025D|ICD10CM|Nondisp longitud fx l patella, subs for clos fx w routn heal|Nondisp longitud fx l patella, subs for clos fx w routn heal +C2860888|T037|AB|S82.025E|ICD10CM|Nondisp longitud fx l patella, 7thE|Nondisp longitud fx l patella, 7thE +C2860889|T037|AB|S82.025F|ICD10CM|Nondisp longitud fx l patella, 7thF|Nondisp longitud fx l patella, 7thF +C2860890|T037|AB|S82.025G|ICD10CM|Nondisp longitud fx l patella, subs for clos fx w delay heal|Nondisp longitud fx l patella, subs for clos fx w delay heal +C2860891|T037|AB|S82.025H|ICD10CM|Nondisp longitud fx l patella, 7thH|Nondisp longitud fx l patella, 7thH +C2860892|T037|AB|S82.025J|ICD10CM|Nondisp longitud fx l patella, 7thJ|Nondisp longitud fx l patella, 7thJ +C2860893|T037|AB|S82.025K|ICD10CM|Nondisp longitud fx l patella, subs for clos fx w nonunion|Nondisp longitud fx l patella, subs for clos fx w nonunion +C2860894|T037|AB|S82.025M|ICD10CM|Nondisp longitud fx l patella, 7thM|Nondisp longitud fx l patella, 7thM +C2860895|T037|AB|S82.025N|ICD10CM|Nondisp longitud fx l patella, 7thN|Nondisp longitud fx l patella, 7thN +C2860896|T037|AB|S82.025P|ICD10CM|Nondisp longitud fx l patella, subs for clos fx w malunion|Nondisp longitud fx l patella, subs for clos fx w malunion +C2860897|T037|AB|S82.025Q|ICD10CM|Nondisp longitud fx l patella, 7thQ|Nondisp longitud fx l patella, 7thQ +C2860898|T037|AB|S82.025R|ICD10CM|Nondisp longitud fx l patella, 7thR|Nondisp longitud fx l patella, 7thR +C2860899|T037|PT|S82.025S|ICD10CM|Nondisplaced longitudinal fracture of left patella, sequela|Nondisplaced longitudinal fracture of left patella, sequela +C2860899|T037|AB|S82.025S|ICD10CM|Nondisplaced longitudinal fracture of left patella, sequela|Nondisplaced longitudinal fracture of left patella, sequela +C2860900|T037|AB|S82.026|ICD10CM|Nondisplaced longitudinal fracture of unspecified patella|Nondisplaced longitudinal fracture of unspecified patella +C2860900|T037|HT|S82.026|ICD10CM|Nondisplaced longitudinal fracture of unspecified patella|Nondisplaced longitudinal fracture of unspecified patella +C2860901|T037|AB|S82.026A|ICD10CM|Nondisplaced longitudinal fracture of unsp patella, init|Nondisplaced longitudinal fracture of unsp patella, init +C2860901|T037|PT|S82.026A|ICD10CM|Nondisplaced longitudinal fracture of unspecified patella, initial encounter for closed fracture|Nondisplaced longitudinal fracture of unspecified patella, initial encounter for closed fracture +C2860902|T037|AB|S82.026B|ICD10CM|Nondisp longitud fx unsp patella, init for opn fx type I/2|Nondisp longitud fx unsp patella, init for opn fx type I/2 +C2860903|T037|AB|S82.026C|ICD10CM|Nondisp longitud fx unsp patella, 7thC|Nondisp longitud fx unsp patella, 7thC +C2860904|T037|AB|S82.026D|ICD10CM|Nondisp longitud fx unsp patella, 7thD|Nondisp longitud fx unsp patella, 7thD +C2860905|T037|AB|S82.026E|ICD10CM|Nondisp longitud fx unsp patella, 7thE|Nondisp longitud fx unsp patella, 7thE +C2860906|T037|AB|S82.026F|ICD10CM|Nondisp longitud fx unsp patella, 7thF|Nondisp longitud fx unsp patella, 7thF +C2860907|T037|AB|S82.026G|ICD10CM|Nondisp longitud fx unsp patella, 7thG|Nondisp longitud fx unsp patella, 7thG +C2860908|T037|AB|S82.026H|ICD10CM|Nondisp longitud fx unsp patella, 7thH|Nondisp longitud fx unsp patella, 7thH +C2860909|T037|AB|S82.026J|ICD10CM|Nondisp longitud fx unsp patella, 7thJ|Nondisp longitud fx unsp patella, 7thJ +C2860910|T037|AB|S82.026K|ICD10CM|Nondisp longitud fx unsp patella, 7thK|Nondisp longitud fx unsp patella, 7thK +C2860911|T037|AB|S82.026M|ICD10CM|Nondisp longitud fx unsp patella, 7thM|Nondisp longitud fx unsp patella, 7thM +C2860912|T037|AB|S82.026N|ICD10CM|Nondisp longitud fx unsp patella, 7thN|Nondisp longitud fx unsp patella, 7thN +C2860913|T037|AB|S82.026P|ICD10CM|Nondisp longitud fx unsp patella, 7thP|Nondisp longitud fx unsp patella, 7thP +C2860914|T037|AB|S82.026Q|ICD10CM|Nondisp longitud fx unsp patella, 7thQ|Nondisp longitud fx unsp patella, 7thQ +C2860915|T037|AB|S82.026R|ICD10CM|Nondisp longitud fx unsp patella, 7thR|Nondisp longitud fx unsp patella, 7thR +C2860916|T037|AB|S82.026S|ICD10CM|Nondisplaced longitudinal fracture of unsp patella, sequela|Nondisplaced longitudinal fracture of unsp patella, sequela +C2860916|T037|PT|S82.026S|ICD10CM|Nondisplaced longitudinal fracture of unspecified patella, sequela|Nondisplaced longitudinal fracture of unspecified patella, sequela +C2860917|T037|AB|S82.03|ICD10CM|Transverse fracture of patella|Transverse fracture of patella +C2860917|T037|HT|S82.03|ICD10CM|Transverse fracture of patella|Transverse fracture of patella +C2860918|T037|AB|S82.031|ICD10CM|Displaced transverse fracture of right patella|Displaced transverse fracture of right patella +C2860918|T037|HT|S82.031|ICD10CM|Displaced transverse fracture of right patella|Displaced transverse fracture of right patella +C2860919|T037|AB|S82.031A|ICD10CM|Displaced transverse fracture of right patella, init|Displaced transverse fracture of right patella, init +C2860919|T037|PT|S82.031A|ICD10CM|Displaced transverse fracture of right patella, initial encounter for closed fracture|Displaced transverse fracture of right patella, initial encounter for closed fracture +C2860920|T037|AB|S82.031B|ICD10CM|Displ transverse fx right patella, init for opn fx type I/2|Displ transverse fx right patella, init for opn fx type I/2 +C2860920|T037|PT|S82.031B|ICD10CM|Displaced transverse fracture of right patella, initial encounter for open fracture type I or II|Displaced transverse fracture of right patella, initial encounter for open fracture type I or II +C2860921|T037|AB|S82.031C|ICD10CM|Displ transverse fx r patella, init for opn fx type 3A/B/C|Displ transverse fx r patella, init for opn fx type 3A/B/C +C2860922|T037|AB|S82.031D|ICD10CM|Displ transverse fx r patella, subs for clos fx w routn heal|Displ transverse fx r patella, subs for clos fx w routn heal +C2860923|T037|AB|S82.031E|ICD10CM|Displ transverse fx r patella, 7thE|Displ transverse fx r patella, 7thE +C2860924|T037|AB|S82.031F|ICD10CM|Displ transverse fx r patella, 7thF|Displ transverse fx r patella, 7thF +C2860925|T037|AB|S82.031G|ICD10CM|Displ transverse fx r patella, subs for clos fx w delay heal|Displ transverse fx r patella, subs for clos fx w delay heal +C2860926|T037|AB|S82.031H|ICD10CM|Displ transverse fx r patella, 7thH|Displ transverse fx r patella, 7thH +C2860927|T037|AB|S82.031J|ICD10CM|Displ transverse fx r patella, 7thJ|Displ transverse fx r patella, 7thJ +C2860928|T037|AB|S82.031K|ICD10CM|Displ transverse fx r patella, subs for clos fx w nonunion|Displ transverse fx r patella, subs for clos fx w nonunion +C2860929|T037|AB|S82.031M|ICD10CM|Displ transverse fx r patella, 7thM|Displ transverse fx r patella, 7thM +C2860930|T037|AB|S82.031N|ICD10CM|Displ transverse fx r patella, 7thN|Displ transverse fx r patella, 7thN +C2860931|T037|AB|S82.031P|ICD10CM|Displ transverse fx r patella, subs for clos fx w malunion|Displ transverse fx r patella, subs for clos fx w malunion +C2860932|T037|AB|S82.031Q|ICD10CM|Displ transverse fx r patella, 7thQ|Displ transverse fx r patella, 7thQ +C2860933|T037|AB|S82.031R|ICD10CM|Displ transverse fx r patella, 7thR|Displ transverse fx r patella, 7thR +C2860934|T037|PT|S82.031S|ICD10CM|Displaced transverse fracture of right patella, sequela|Displaced transverse fracture of right patella, sequela +C2860934|T037|AB|S82.031S|ICD10CM|Displaced transverse fracture of right patella, sequela|Displaced transverse fracture of right patella, sequela +C2860935|T037|AB|S82.032|ICD10CM|Displaced transverse fracture of left patella|Displaced transverse fracture of left patella +C2860935|T037|HT|S82.032|ICD10CM|Displaced transverse fracture of left patella|Displaced transverse fracture of left patella +C2860936|T037|AB|S82.032A|ICD10CM|Displaced transverse fracture of left patella, init|Displaced transverse fracture of left patella, init +C2860936|T037|PT|S82.032A|ICD10CM|Displaced transverse fracture of left patella, initial encounter for closed fracture|Displaced transverse fracture of left patella, initial encounter for closed fracture +C2860937|T037|AB|S82.032B|ICD10CM|Displ transverse fx left patella, init for opn fx type I/2|Displ transverse fx left patella, init for opn fx type I/2 +C2860937|T037|PT|S82.032B|ICD10CM|Displaced transverse fracture of left patella, initial encounter for open fracture type I or II|Displaced transverse fracture of left patella, initial encounter for open fracture type I or II +C2860938|T037|AB|S82.032C|ICD10CM|Displ transverse fx l patella, init for opn fx type 3A/B/C|Displ transverse fx l patella, init for opn fx type 3A/B/C +C2860939|T037|AB|S82.032D|ICD10CM|Displ transverse fx l patella, subs for clos fx w routn heal|Displ transverse fx l patella, subs for clos fx w routn heal +C2860940|T037|AB|S82.032E|ICD10CM|Displ transverse fx l patella, 7thE|Displ transverse fx l patella, 7thE +C2860941|T037|AB|S82.032F|ICD10CM|Displ transverse fx l patella, 7thF|Displ transverse fx l patella, 7thF +C2860942|T037|AB|S82.032G|ICD10CM|Displ transverse fx l patella, subs for clos fx w delay heal|Displ transverse fx l patella, subs for clos fx w delay heal +C2860943|T037|AB|S82.032H|ICD10CM|Displ transverse fx l patella, 7thH|Displ transverse fx l patella, 7thH +C2860944|T037|AB|S82.032J|ICD10CM|Displ transverse fx l patella, 7thJ|Displ transverse fx l patella, 7thJ +C2860945|T037|AB|S82.032K|ICD10CM|Displ transverse fx l patella, subs for clos fx w nonunion|Displ transverse fx l patella, subs for clos fx w nonunion +C2860946|T037|AB|S82.032M|ICD10CM|Displ transverse fx l patella, 7thM|Displ transverse fx l patella, 7thM +C2860947|T037|AB|S82.032N|ICD10CM|Displ transverse fx l patella, 7thN|Displ transverse fx l patella, 7thN +C2860948|T037|AB|S82.032P|ICD10CM|Displ transverse fx l patella, subs for clos fx w malunion|Displ transverse fx l patella, subs for clos fx w malunion +C2860949|T037|AB|S82.032Q|ICD10CM|Displ transverse fx l patella, 7thQ|Displ transverse fx l patella, 7thQ +C2860950|T037|AB|S82.032R|ICD10CM|Displ transverse fx l patella, 7thR|Displ transverse fx l patella, 7thR +C2860951|T037|PT|S82.032S|ICD10CM|Displaced transverse fracture of left patella, sequela|Displaced transverse fracture of left patella, sequela +C2860951|T037|AB|S82.032S|ICD10CM|Displaced transverse fracture of left patella, sequela|Displaced transverse fracture of left patella, sequela +C2860952|T037|AB|S82.033|ICD10CM|Displaced transverse fracture of unspecified patella|Displaced transverse fracture of unspecified patella +C2860952|T037|HT|S82.033|ICD10CM|Displaced transverse fracture of unspecified patella|Displaced transverse fracture of unspecified patella +C2860953|T037|AB|S82.033A|ICD10CM|Displaced transverse fracture of unsp patella, init|Displaced transverse fracture of unsp patella, init +C2860953|T037|PT|S82.033A|ICD10CM|Displaced transverse fracture of unspecified patella, initial encounter for closed fracture|Displaced transverse fracture of unspecified patella, initial encounter for closed fracture +C2860954|T037|AB|S82.033B|ICD10CM|Displ transverse fx unsp patella, init for opn fx type I/2|Displ transverse fx unsp patella, init for opn fx type I/2 +C2860955|T037|AB|S82.033C|ICD10CM|Displ transverse fx unsp patella, 7thC|Displ transverse fx unsp patella, 7thC +C2860956|T037|AB|S82.033D|ICD10CM|Displ transverse fx unsp patella, 7thD|Displ transverse fx unsp patella, 7thD +C2860957|T037|AB|S82.033E|ICD10CM|Displ transverse fx unsp patella, 7thE|Displ transverse fx unsp patella, 7thE +C2860958|T037|AB|S82.033F|ICD10CM|Displ transverse fx unsp patella, 7thF|Displ transverse fx unsp patella, 7thF +C2860959|T037|AB|S82.033G|ICD10CM|Displ transverse fx unsp patella, 7thG|Displ transverse fx unsp patella, 7thG +C2860960|T037|AB|S82.033H|ICD10CM|Displ transverse fx unsp patella, 7thH|Displ transverse fx unsp patella, 7thH +C2860961|T037|AB|S82.033J|ICD10CM|Displ transverse fx unsp patella, 7thJ|Displ transverse fx unsp patella, 7thJ +C2860962|T037|AB|S82.033K|ICD10CM|Displ transverse fx unsp patella, 7thK|Displ transverse fx unsp patella, 7thK +C2860963|T037|AB|S82.033M|ICD10CM|Displ transverse fx unsp patella, 7thM|Displ transverse fx unsp patella, 7thM +C2860964|T037|AB|S82.033N|ICD10CM|Displ transverse fx unsp patella, 7thN|Displ transverse fx unsp patella, 7thN +C2860965|T037|AB|S82.033P|ICD10CM|Displ transverse fx unsp patella, 7thP|Displ transverse fx unsp patella, 7thP +C2860966|T037|AB|S82.033Q|ICD10CM|Displ transverse fx unsp patella, 7thQ|Displ transverse fx unsp patella, 7thQ +C2860967|T037|AB|S82.033R|ICD10CM|Displ transverse fx unsp patella, 7thR|Displ transverse fx unsp patella, 7thR +C2860968|T037|AB|S82.033S|ICD10CM|Displaced transverse fracture of unsp patella, sequela|Displaced transverse fracture of unsp patella, sequela +C2860968|T037|PT|S82.033S|ICD10CM|Displaced transverse fracture of unspecified patella, sequela|Displaced transverse fracture of unspecified patella, sequela +C2860969|T037|AB|S82.034|ICD10CM|Nondisplaced transverse fracture of right patella|Nondisplaced transverse fracture of right patella +C2860969|T037|HT|S82.034|ICD10CM|Nondisplaced transverse fracture of right patella|Nondisplaced transverse fracture of right patella +C2860970|T037|AB|S82.034A|ICD10CM|Nondisplaced transverse fracture of right patella, init|Nondisplaced transverse fracture of right patella, init +C2860970|T037|PT|S82.034A|ICD10CM|Nondisplaced transverse fracture of right patella, initial encounter for closed fracture|Nondisplaced transverse fracture of right patella, initial encounter for closed fracture +C2860971|T037|AB|S82.034B|ICD10CM|Nondisp transverse fx r patella, init for opn fx type I/2|Nondisp transverse fx r patella, init for opn fx type I/2 +C2860971|T037|PT|S82.034B|ICD10CM|Nondisplaced transverse fracture of right patella, initial encounter for open fracture type I or II|Nondisplaced transverse fracture of right patella, initial encounter for open fracture type I or II +C2860972|T037|AB|S82.034C|ICD10CM|Nondisp transverse fx r patella, init for opn fx type 3A/B/C|Nondisp transverse fx r patella, init for opn fx type 3A/B/C +C2860973|T037|AB|S82.034D|ICD10CM|Nondisp transverse fx r patella, 7thD|Nondisp transverse fx r patella, 7thD +C2860974|T037|AB|S82.034E|ICD10CM|Nondisp transverse fx r patella, 7thE|Nondisp transverse fx r patella, 7thE +C2860975|T037|AB|S82.034F|ICD10CM|Nondisp transverse fx r patella, 7thF|Nondisp transverse fx r patella, 7thF +C2860976|T037|AB|S82.034G|ICD10CM|Nondisp transverse fx r patella, 7thG|Nondisp transverse fx r patella, 7thG +C2860977|T037|AB|S82.034H|ICD10CM|Nondisp transverse fx r patella, 7thH|Nondisp transverse fx r patella, 7thH +C2860978|T037|AB|S82.034J|ICD10CM|Nondisp transverse fx r patella, 7thJ|Nondisp transverse fx r patella, 7thJ +C2860979|T037|AB|S82.034K|ICD10CM|Nondisp transverse fx r patella, subs for clos fx w nonunion|Nondisp transverse fx r patella, subs for clos fx w nonunion +C2860980|T037|AB|S82.034M|ICD10CM|Nondisp transverse fx r patella, 7thM|Nondisp transverse fx r patella, 7thM +C2860981|T037|AB|S82.034N|ICD10CM|Nondisp transverse fx r patella, 7thN|Nondisp transverse fx r patella, 7thN +C2860982|T037|AB|S82.034P|ICD10CM|Nondisp transverse fx r patella, subs for clos fx w malunion|Nondisp transverse fx r patella, subs for clos fx w malunion +C2860983|T037|AB|S82.034Q|ICD10CM|Nondisp transverse fx r patella, 7thQ|Nondisp transverse fx r patella, 7thQ +C2860984|T037|AB|S82.034R|ICD10CM|Nondisp transverse fx r patella, 7thR|Nondisp transverse fx r patella, 7thR +C2860985|T037|PT|S82.034S|ICD10CM|Nondisplaced transverse fracture of right patella, sequela|Nondisplaced transverse fracture of right patella, sequela +C2860985|T037|AB|S82.034S|ICD10CM|Nondisplaced transverse fracture of right patella, sequela|Nondisplaced transverse fracture of right patella, sequela +C2860986|T037|AB|S82.035|ICD10CM|Nondisplaced transverse fracture of left patella|Nondisplaced transverse fracture of left patella +C2860986|T037|HT|S82.035|ICD10CM|Nondisplaced transverse fracture of left patella|Nondisplaced transverse fracture of left patella +C2860987|T037|AB|S82.035A|ICD10CM|Nondisplaced transverse fracture of left patella, init|Nondisplaced transverse fracture of left patella, init +C2860987|T037|PT|S82.035A|ICD10CM|Nondisplaced transverse fracture of left patella, initial encounter for closed fracture|Nondisplaced transverse fracture of left patella, initial encounter for closed fracture +C2860988|T037|AB|S82.035B|ICD10CM|Nondisp transverse fx left patella, init for opn fx type I/2|Nondisp transverse fx left patella, init for opn fx type I/2 +C2860988|T037|PT|S82.035B|ICD10CM|Nondisplaced transverse fracture of left patella, initial encounter for open fracture type I or II|Nondisplaced transverse fracture of left patella, initial encounter for open fracture type I or II +C2860989|T037|AB|S82.035C|ICD10CM|Nondisp transverse fx l patella, init for opn fx type 3A/B/C|Nondisp transverse fx l patella, init for opn fx type 3A/B/C +C2860990|T037|AB|S82.035D|ICD10CM|Nondisp transverse fx l patella, 7thD|Nondisp transverse fx l patella, 7thD +C2860991|T037|AB|S82.035E|ICD10CM|Nondisp transverse fx l patella, 7thE|Nondisp transverse fx l patella, 7thE +C2860992|T037|AB|S82.035F|ICD10CM|Nondisp transverse fx l patella, 7thF|Nondisp transverse fx l patella, 7thF +C2860993|T037|AB|S82.035G|ICD10CM|Nondisp transverse fx l patella, 7thG|Nondisp transverse fx l patella, 7thG +C2860994|T037|AB|S82.035H|ICD10CM|Nondisp transverse fx l patella, 7thH|Nondisp transverse fx l patella, 7thH +C2860995|T037|AB|S82.035J|ICD10CM|Nondisp transverse fx l patella, 7thJ|Nondisp transverse fx l patella, 7thJ +C2860996|T037|AB|S82.035K|ICD10CM|Nondisp transverse fx l patella, subs for clos fx w nonunion|Nondisp transverse fx l patella, subs for clos fx w nonunion +C2860997|T037|AB|S82.035M|ICD10CM|Nondisp transverse fx l patella, 7thM|Nondisp transverse fx l patella, 7thM +C2860998|T037|AB|S82.035N|ICD10CM|Nondisp transverse fx l patella, 7thN|Nondisp transverse fx l patella, 7thN +C2860999|T037|AB|S82.035P|ICD10CM|Nondisp transverse fx l patella, subs for clos fx w malunion|Nondisp transverse fx l patella, subs for clos fx w malunion +C2861000|T037|AB|S82.035Q|ICD10CM|Nondisp transverse fx l patella, 7thQ|Nondisp transverse fx l patella, 7thQ +C2861001|T037|AB|S82.035R|ICD10CM|Nondisp transverse fx l patella, 7thR|Nondisp transverse fx l patella, 7thR +C2861002|T037|PT|S82.035S|ICD10CM|Nondisplaced transverse fracture of left patella, sequela|Nondisplaced transverse fracture of left patella, sequela +C2861002|T037|AB|S82.035S|ICD10CM|Nondisplaced transverse fracture of left patella, sequela|Nondisplaced transverse fracture of left patella, sequela +C2861003|T037|AB|S82.036|ICD10CM|Nondisplaced transverse fracture of unspecified patella|Nondisplaced transverse fracture of unspecified patella +C2861003|T037|HT|S82.036|ICD10CM|Nondisplaced transverse fracture of unspecified patella|Nondisplaced transverse fracture of unspecified patella +C2861004|T037|AB|S82.036A|ICD10CM|Nondisplaced transverse fracture of unsp patella, init|Nondisplaced transverse fracture of unsp patella, init +C2861004|T037|PT|S82.036A|ICD10CM|Nondisplaced transverse fracture of unspecified patella, initial encounter for closed fracture|Nondisplaced transverse fracture of unspecified patella, initial encounter for closed fracture +C2861005|T037|AB|S82.036B|ICD10CM|Nondisp transverse fx unsp patella, init for opn fx type I/2|Nondisp transverse fx unsp patella, init for opn fx type I/2 +C2861006|T037|AB|S82.036C|ICD10CM|Nondisp transverse fx unsp patella, 7thC|Nondisp transverse fx unsp patella, 7thC +C2861007|T037|AB|S82.036D|ICD10CM|Nondisp transverse fx unsp patella, 7thD|Nondisp transverse fx unsp patella, 7thD +C2861008|T037|AB|S82.036E|ICD10CM|Nondisp transverse fx unsp patella, 7thE|Nondisp transverse fx unsp patella, 7thE +C2861009|T037|AB|S82.036F|ICD10CM|Nondisp transverse fx unsp patella, 7thF|Nondisp transverse fx unsp patella, 7thF +C2861010|T037|AB|S82.036G|ICD10CM|Nondisp transverse fx unsp patella, 7thG|Nondisp transverse fx unsp patella, 7thG +C2861011|T037|AB|S82.036H|ICD10CM|Nondisp transverse fx unsp patella, 7thH|Nondisp transverse fx unsp patella, 7thH +C2861012|T037|AB|S82.036J|ICD10CM|Nondisp transverse fx unsp patella, 7thJ|Nondisp transverse fx unsp patella, 7thJ +C2861013|T037|AB|S82.036K|ICD10CM|Nondisp transverse fx unsp patella, 7thK|Nondisp transverse fx unsp patella, 7thK +C2861014|T037|AB|S82.036M|ICD10CM|Nondisp transverse fx unsp patella, 7thM|Nondisp transverse fx unsp patella, 7thM +C2861015|T037|AB|S82.036N|ICD10CM|Nondisp transverse fx unsp patella, 7thN|Nondisp transverse fx unsp patella, 7thN +C2861016|T037|AB|S82.036P|ICD10CM|Nondisp transverse fx unsp patella, 7thP|Nondisp transverse fx unsp patella, 7thP +C2861017|T037|AB|S82.036Q|ICD10CM|Nondisp transverse fx unsp patella, 7thQ|Nondisp transverse fx unsp patella, 7thQ +C2861018|T037|AB|S82.036R|ICD10CM|Nondisp transverse fx unsp patella, 7thR|Nondisp transverse fx unsp patella, 7thR +C2861019|T037|AB|S82.036S|ICD10CM|Nondisplaced transverse fracture of unsp patella, sequela|Nondisplaced transverse fracture of unsp patella, sequela +C2861019|T037|PT|S82.036S|ICD10CM|Nondisplaced transverse fracture of unspecified patella, sequela|Nondisplaced transverse fracture of unspecified patella, sequela +C0585053|T037|HT|S82.04|ICD10CM|Comminuted fracture of patella|Comminuted fracture of patella +C0585053|T037|AB|S82.04|ICD10CM|Comminuted fracture of patella|Comminuted fracture of patella +C2861020|T037|AB|S82.041|ICD10CM|Displaced comminuted fracture of right patella|Displaced comminuted fracture of right patella +C2861020|T037|HT|S82.041|ICD10CM|Displaced comminuted fracture of right patella|Displaced comminuted fracture of right patella +C2861021|T037|AB|S82.041A|ICD10CM|Displaced comminuted fracture of right patella, init|Displaced comminuted fracture of right patella, init +C2861021|T037|PT|S82.041A|ICD10CM|Displaced comminuted fracture of right patella, initial encounter for closed fracture|Displaced comminuted fracture of right patella, initial encounter for closed fracture +C2861022|T037|PT|S82.041B|ICD10CM|Displaced comminuted fracture of right patella, initial encounter for open fracture type I or II|Displaced comminuted fracture of right patella, initial encounter for open fracture type I or II +C2861022|T037|AB|S82.041B|ICD10CM|Displaced commnt fx right patella, init for opn fx type I/2|Displaced commnt fx right patella, init for opn fx type I/2 +C2861023|T037|AB|S82.041C|ICD10CM|Displ commnt fx right patella, init for opn fx type 3A/B/C|Displ commnt fx right patella, init for opn fx type 3A/B/C +C2861024|T037|AB|S82.041D|ICD10CM|Displ commnt fx right patella, subs for clos fx w routn heal|Displ commnt fx right patella, subs for clos fx w routn heal +C2861025|T037|AB|S82.041E|ICD10CM|Displ commnt fx r patella, 7thE|Displ commnt fx r patella, 7thE +C2861026|T037|AB|S82.041F|ICD10CM|Displ commnt fx r patella, 7thF|Displ commnt fx r patella, 7thF +C2861027|T037|AB|S82.041G|ICD10CM|Displ commnt fx right patella, subs for clos fx w delay heal|Displ commnt fx right patella, subs for clos fx w delay heal +C2861028|T037|AB|S82.041H|ICD10CM|Displ commnt fx r patella, 7thH|Displ commnt fx r patella, 7thH +C2861029|T037|AB|S82.041J|ICD10CM|Displ commnt fx r patella, 7thJ|Displ commnt fx r patella, 7thJ +C2861030|T037|AB|S82.041K|ICD10CM|Displ commnt fx right patella, subs for clos fx w nonunion|Displ commnt fx right patella, subs for clos fx w nonunion +C2861031|T037|AB|S82.041M|ICD10CM|Displ commnt fx r patella, 7thM|Displ commnt fx r patella, 7thM +C2861032|T037|AB|S82.041N|ICD10CM|Displ commnt fx r patella, 7thN|Displ commnt fx r patella, 7thN +C2861033|T037|AB|S82.041P|ICD10CM|Displ commnt fx right patella, subs for clos fx w malunion|Displ commnt fx right patella, subs for clos fx w malunion +C2861034|T037|AB|S82.041Q|ICD10CM|Displ commnt fx r patella, 7thQ|Displ commnt fx r patella, 7thQ +C2861035|T037|AB|S82.041R|ICD10CM|Displ commnt fx r patella, 7thR|Displ commnt fx r patella, 7thR +C2861036|T037|PT|S82.041S|ICD10CM|Displaced comminuted fracture of right patella, sequela|Displaced comminuted fracture of right patella, sequela +C2861036|T037|AB|S82.041S|ICD10CM|Displaced comminuted fracture of right patella, sequela|Displaced comminuted fracture of right patella, sequela +C2861037|T037|AB|S82.042|ICD10CM|Displaced comminuted fracture of left patella|Displaced comminuted fracture of left patella +C2861037|T037|HT|S82.042|ICD10CM|Displaced comminuted fracture of left patella|Displaced comminuted fracture of left patella +C2861038|T037|AB|S82.042A|ICD10CM|Displaced comminuted fracture of left patella, init|Displaced comminuted fracture of left patella, init +C2861038|T037|PT|S82.042A|ICD10CM|Displaced comminuted fracture of left patella, initial encounter for closed fracture|Displaced comminuted fracture of left patella, initial encounter for closed fracture +C2861039|T037|PT|S82.042B|ICD10CM|Displaced comminuted fracture of left patella, initial encounter for open fracture type I or II|Displaced comminuted fracture of left patella, initial encounter for open fracture type I or II +C2861039|T037|AB|S82.042B|ICD10CM|Displaced commnt fx left patella, init for opn fx type I/2|Displaced commnt fx left patella, init for opn fx type I/2 +C2861040|T037|AB|S82.042C|ICD10CM|Displ commnt fx left patella, init for opn fx type 3A/B/C|Displ commnt fx left patella, init for opn fx type 3A/B/C +C2861041|T037|AB|S82.042D|ICD10CM|Displ commnt fx left patella, subs for clos fx w routn heal|Displ commnt fx left patella, subs for clos fx w routn heal +C2861042|T037|AB|S82.042E|ICD10CM|Displ commnt fx l patella, 7thE|Displ commnt fx l patella, 7thE +C2861043|T037|AB|S82.042F|ICD10CM|Displ commnt fx l patella, 7thF|Displ commnt fx l patella, 7thF +C2861044|T037|AB|S82.042G|ICD10CM|Displ commnt fx left patella, subs for clos fx w delay heal|Displ commnt fx left patella, subs for clos fx w delay heal +C2861045|T037|AB|S82.042H|ICD10CM|Displ commnt fx l patella, 7thH|Displ commnt fx l patella, 7thH +C2861046|T037|AB|S82.042J|ICD10CM|Displ commnt fx l patella, 7thJ|Displ commnt fx l patella, 7thJ +C2861047|T037|AB|S82.042K|ICD10CM|Displ commnt fx left patella, subs for clos fx w nonunion|Displ commnt fx left patella, subs for clos fx w nonunion +C2861048|T037|AB|S82.042M|ICD10CM|Displ commnt fx l patella, 7thM|Displ commnt fx l patella, 7thM +C2861049|T037|AB|S82.042N|ICD10CM|Displ commnt fx l patella, 7thN|Displ commnt fx l patella, 7thN +C2861050|T037|AB|S82.042P|ICD10CM|Displ commnt fx left patella, subs for clos fx w malunion|Displ commnt fx left patella, subs for clos fx w malunion +C2861051|T037|AB|S82.042Q|ICD10CM|Displ commnt fx l patella, 7thQ|Displ commnt fx l patella, 7thQ +C2861052|T037|AB|S82.042R|ICD10CM|Displ commnt fx l patella, 7thR|Displ commnt fx l patella, 7thR +C2861053|T037|PT|S82.042S|ICD10CM|Displaced comminuted fracture of left patella, sequela|Displaced comminuted fracture of left patella, sequela +C2861053|T037|AB|S82.042S|ICD10CM|Displaced comminuted fracture of left patella, sequela|Displaced comminuted fracture of left patella, sequela +C2861054|T037|AB|S82.043|ICD10CM|Displaced comminuted fracture of unspecified patella|Displaced comminuted fracture of unspecified patella +C2861054|T037|HT|S82.043|ICD10CM|Displaced comminuted fracture of unspecified patella|Displaced comminuted fracture of unspecified patella +C2861055|T037|AB|S82.043A|ICD10CM|Displaced comminuted fracture of unsp patella, init|Displaced comminuted fracture of unsp patella, init +C2861055|T037|PT|S82.043A|ICD10CM|Displaced comminuted fracture of unspecified patella, initial encounter for closed fracture|Displaced comminuted fracture of unspecified patella, initial encounter for closed fracture +C2861056|T037|AB|S82.043B|ICD10CM|Displaced commnt fx unsp patella, init for opn fx type I/2|Displaced commnt fx unsp patella, init for opn fx type I/2 +C2861057|T037|AB|S82.043C|ICD10CM|Displ commnt fx unsp patella, init for opn fx type 3A/B/C|Displ commnt fx unsp patella, init for opn fx type 3A/B/C +C2861058|T037|AB|S82.043D|ICD10CM|Displ commnt fx unsp patella, subs for clos fx w routn heal|Displ commnt fx unsp patella, subs for clos fx w routn heal +C2861059|T037|AB|S82.043E|ICD10CM|Displ commnt fx unsp patella, 7thE|Displ commnt fx unsp patella, 7thE +C2861060|T037|AB|S82.043F|ICD10CM|Displ commnt fx unsp patella, 7thF|Displ commnt fx unsp patella, 7thF +C2861061|T037|AB|S82.043G|ICD10CM|Displ commnt fx unsp patella, subs for clos fx w delay heal|Displ commnt fx unsp patella, subs for clos fx w delay heal +C2861062|T037|AB|S82.043H|ICD10CM|Displ commnt fx unsp patella, 7thH|Displ commnt fx unsp patella, 7thH +C2861063|T037|AB|S82.043J|ICD10CM|Displ commnt fx unsp patella, 7thJ|Displ commnt fx unsp patella, 7thJ +C2861064|T037|AB|S82.043K|ICD10CM|Displ commnt fx unsp patella, subs for clos fx w nonunion|Displ commnt fx unsp patella, subs for clos fx w nonunion +C2861065|T037|AB|S82.043M|ICD10CM|Displ commnt fx unsp patella, 7thM|Displ commnt fx unsp patella, 7thM +C2861066|T037|AB|S82.043N|ICD10CM|Displ commnt fx unsp patella, 7thN|Displ commnt fx unsp patella, 7thN +C2861067|T037|AB|S82.043P|ICD10CM|Displ commnt fx unsp patella, subs for clos fx w malunion|Displ commnt fx unsp patella, subs for clos fx w malunion +C2861068|T037|AB|S82.043Q|ICD10CM|Displ commnt fx unsp patella, 7thQ|Displ commnt fx unsp patella, 7thQ +C2861069|T037|AB|S82.043R|ICD10CM|Displ commnt fx unsp patella, 7thR|Displ commnt fx unsp patella, 7thR +C2861070|T037|AB|S82.043S|ICD10CM|Displaced comminuted fracture of unsp patella, sequela|Displaced comminuted fracture of unsp patella, sequela +C2861070|T037|PT|S82.043S|ICD10CM|Displaced comminuted fracture of unspecified patella, sequela|Displaced comminuted fracture of unspecified patella, sequela +C2861071|T037|AB|S82.044|ICD10CM|Nondisplaced comminuted fracture of right patella|Nondisplaced comminuted fracture of right patella +C2861071|T037|HT|S82.044|ICD10CM|Nondisplaced comminuted fracture of right patella|Nondisplaced comminuted fracture of right patella +C2861072|T037|AB|S82.044A|ICD10CM|Nondisplaced comminuted fracture of right patella, init|Nondisplaced comminuted fracture of right patella, init +C2861072|T037|PT|S82.044A|ICD10CM|Nondisplaced comminuted fracture of right patella, initial encounter for closed fracture|Nondisplaced comminuted fracture of right patella, initial encounter for closed fracture +C2861073|T037|AB|S82.044B|ICD10CM|Nondisp commnt fx right patella, init for opn fx type I/2|Nondisp commnt fx right patella, init for opn fx type I/2 +C2861073|T037|PT|S82.044B|ICD10CM|Nondisplaced comminuted fracture of right patella, initial encounter for open fracture type I or II|Nondisplaced comminuted fracture of right patella, initial encounter for open fracture type I or II +C2861074|T037|AB|S82.044C|ICD10CM|Nondisp commnt fx right patella, init for opn fx type 3A/B/C|Nondisp commnt fx right patella, init for opn fx type 3A/B/C +C2861075|T037|AB|S82.044D|ICD10CM|Nondisp commnt fx r patella, subs for clos fx w routn heal|Nondisp commnt fx r patella, subs for clos fx w routn heal +C2861076|T037|AB|S82.044E|ICD10CM|Nondisp commnt fx r patella, 7thE|Nondisp commnt fx r patella, 7thE +C2861077|T037|AB|S82.044F|ICD10CM|Nondisp commnt fx r patella, 7thF|Nondisp commnt fx r patella, 7thF +C2861078|T037|AB|S82.044G|ICD10CM|Nondisp commnt fx r patella, subs for clos fx w delay heal|Nondisp commnt fx r patella, subs for clos fx w delay heal +C2861079|T037|AB|S82.044H|ICD10CM|Nondisp commnt fx r patella, 7thH|Nondisp commnt fx r patella, 7thH +C2861080|T037|AB|S82.044J|ICD10CM|Nondisp commnt fx r patella, 7thJ|Nondisp commnt fx r patella, 7thJ +C2861081|T037|AB|S82.044K|ICD10CM|Nondisp commnt fx right patella, subs for clos fx w nonunion|Nondisp commnt fx right patella, subs for clos fx w nonunion +C2861082|T037|AB|S82.044M|ICD10CM|Nondisp commnt fx r patella, 7thM|Nondisp commnt fx r patella, 7thM +C2861083|T037|AB|S82.044N|ICD10CM|Nondisp commnt fx r patella, 7thN|Nondisp commnt fx r patella, 7thN +C2861084|T037|AB|S82.044P|ICD10CM|Nondisp commnt fx right patella, subs for clos fx w malunion|Nondisp commnt fx right patella, subs for clos fx w malunion +C2861085|T037|AB|S82.044Q|ICD10CM|Nondisp commnt fx r patella, 7thQ|Nondisp commnt fx r patella, 7thQ +C2861086|T037|AB|S82.044R|ICD10CM|Nondisp commnt fx r patella, 7thR|Nondisp commnt fx r patella, 7thR +C2861087|T037|PT|S82.044S|ICD10CM|Nondisplaced comminuted fracture of right patella, sequela|Nondisplaced comminuted fracture of right patella, sequela +C2861087|T037|AB|S82.044S|ICD10CM|Nondisplaced comminuted fracture of right patella, sequela|Nondisplaced comminuted fracture of right patella, sequela +C2861088|T037|AB|S82.045|ICD10CM|Nondisplaced comminuted fracture of left patella|Nondisplaced comminuted fracture of left patella +C2861088|T037|HT|S82.045|ICD10CM|Nondisplaced comminuted fracture of left patella|Nondisplaced comminuted fracture of left patella +C2861089|T037|AB|S82.045A|ICD10CM|Nondisplaced comminuted fracture of left patella, init|Nondisplaced comminuted fracture of left patella, init +C2861089|T037|PT|S82.045A|ICD10CM|Nondisplaced comminuted fracture of left patella, initial encounter for closed fracture|Nondisplaced comminuted fracture of left patella, initial encounter for closed fracture +C2861090|T037|AB|S82.045B|ICD10CM|Nondisp comminuted fx left patella, init for opn fx type I/2|Nondisp comminuted fx left patella, init for opn fx type I/2 +C2861090|T037|PT|S82.045B|ICD10CM|Nondisplaced comminuted fracture of left patella, initial encounter for open fracture type I or II|Nondisplaced comminuted fracture of left patella, initial encounter for open fracture type I or II +C2861091|T037|AB|S82.045C|ICD10CM|Nondisp commnt fx left patella, init for opn fx type 3A/B/C|Nondisp commnt fx left patella, init for opn fx type 3A/B/C +C2861092|T037|AB|S82.045D|ICD10CM|Nondisp commnt fx l patella, subs for clos fx w routn heal|Nondisp commnt fx l patella, subs for clos fx w routn heal +C2861093|T037|AB|S82.045E|ICD10CM|Nondisp commnt fx l patella, 7thE|Nondisp commnt fx l patella, 7thE +C2861094|T037|AB|S82.045F|ICD10CM|Nondisp commnt fx l patella, 7thF|Nondisp commnt fx l patella, 7thF +C2861095|T037|AB|S82.045G|ICD10CM|Nondisp commnt fx l patella, subs for clos fx w delay heal|Nondisp commnt fx l patella, subs for clos fx w delay heal +C2861096|T037|AB|S82.045H|ICD10CM|Nondisp commnt fx l patella, 7thH|Nondisp commnt fx l patella, 7thH +C2861097|T037|AB|S82.045J|ICD10CM|Nondisp commnt fx l patella, 7thJ|Nondisp commnt fx l patella, 7thJ +C2861098|T037|AB|S82.045K|ICD10CM|Nondisp commnt fx left patella, subs for clos fx w nonunion|Nondisp commnt fx left patella, subs for clos fx w nonunion +C2861099|T037|AB|S82.045M|ICD10CM|Nondisp commnt fx l patella, 7thM|Nondisp commnt fx l patella, 7thM +C2861100|T037|AB|S82.045N|ICD10CM|Nondisp commnt fx l patella, 7thN|Nondisp commnt fx l patella, 7thN +C2861101|T037|AB|S82.045P|ICD10CM|Nondisp commnt fx left patella, subs for clos fx w malunion|Nondisp commnt fx left patella, subs for clos fx w malunion +C2861102|T037|AB|S82.045Q|ICD10CM|Nondisp commnt fx l patella, 7thQ|Nondisp commnt fx l patella, 7thQ +C2861103|T037|AB|S82.045R|ICD10CM|Nondisp commnt fx l patella, 7thR|Nondisp commnt fx l patella, 7thR +C2861104|T037|PT|S82.045S|ICD10CM|Nondisplaced comminuted fracture of left patella, sequela|Nondisplaced comminuted fracture of left patella, sequela +C2861104|T037|AB|S82.045S|ICD10CM|Nondisplaced comminuted fracture of left patella, sequela|Nondisplaced comminuted fracture of left patella, sequela +C2861105|T037|AB|S82.046|ICD10CM|Nondisplaced comminuted fracture of unspecified patella|Nondisplaced comminuted fracture of unspecified patella +C2861105|T037|HT|S82.046|ICD10CM|Nondisplaced comminuted fracture of unspecified patella|Nondisplaced comminuted fracture of unspecified patella +C2861106|T037|AB|S82.046A|ICD10CM|Nondisplaced comminuted fracture of unsp patella, init|Nondisplaced comminuted fracture of unsp patella, init +C2861106|T037|PT|S82.046A|ICD10CM|Nondisplaced comminuted fracture of unspecified patella, initial encounter for closed fracture|Nondisplaced comminuted fracture of unspecified patella, initial encounter for closed fracture +C2861107|T037|AB|S82.046B|ICD10CM|Nondisp comminuted fx unsp patella, init for opn fx type I/2|Nondisp comminuted fx unsp patella, init for opn fx type I/2 +C2861108|T037|AB|S82.046C|ICD10CM|Nondisp commnt fx unsp patella, init for opn fx type 3A/B/C|Nondisp commnt fx unsp patella, init for opn fx type 3A/B/C +C2861109|T037|AB|S82.046D|ICD10CM|Nondisp commnt fx unsp patella, 7thD|Nondisp commnt fx unsp patella, 7thD +C2861110|T037|AB|S82.046E|ICD10CM|Nondisp commnt fx unsp patella, 7thE|Nondisp commnt fx unsp patella, 7thE +C2861111|T037|AB|S82.046F|ICD10CM|Nondisp commnt fx unsp patella, 7thF|Nondisp commnt fx unsp patella, 7thF +C2861112|T037|AB|S82.046G|ICD10CM|Nondisp commnt fx unsp patella, 7thG|Nondisp commnt fx unsp patella, 7thG +C2861113|T037|AB|S82.046H|ICD10CM|Nondisp commnt fx unsp patella, 7thH|Nondisp commnt fx unsp patella, 7thH +C2861114|T037|AB|S82.046J|ICD10CM|Nondisp commnt fx unsp patella, 7thJ|Nondisp commnt fx unsp patella, 7thJ +C2861115|T037|AB|S82.046K|ICD10CM|Nondisp commnt fx unsp patella, subs for clos fx w nonunion|Nondisp commnt fx unsp patella, subs for clos fx w nonunion +C2861116|T037|AB|S82.046M|ICD10CM|Nondisp commnt fx unsp patella, 7thM|Nondisp commnt fx unsp patella, 7thM +C2861117|T037|AB|S82.046N|ICD10CM|Nondisp commnt fx unsp patella, 7thN|Nondisp commnt fx unsp patella, 7thN +C2861118|T037|AB|S82.046P|ICD10CM|Nondisp commnt fx unsp patella, subs for clos fx w malunion|Nondisp commnt fx unsp patella, subs for clos fx w malunion +C2861119|T037|AB|S82.046Q|ICD10CM|Nondisp commnt fx unsp patella, 7thQ|Nondisp commnt fx unsp patella, 7thQ +C2861120|T037|AB|S82.046R|ICD10CM|Nondisp commnt fx unsp patella, 7thR|Nondisp commnt fx unsp patella, 7thR +C2861121|T037|AB|S82.046S|ICD10CM|Nondisplaced comminuted fracture of unsp patella, sequela|Nondisplaced comminuted fracture of unsp patella, sequela +C2861121|T037|PT|S82.046S|ICD10CM|Nondisplaced comminuted fracture of unspecified patella, sequela|Nondisplaced comminuted fracture of unspecified patella, sequela +C2861122|T037|AB|S82.09|ICD10CM|Other fracture of patella|Other fracture of patella +C2861122|T037|HT|S82.09|ICD10CM|Other fracture of patella|Other fracture of patella +C2861123|T037|AB|S82.091|ICD10CM|Other fracture of right patella|Other fracture of right patella +C2861123|T037|HT|S82.091|ICD10CM|Other fracture of right patella|Other fracture of right patella +C2861124|T037|AB|S82.091A|ICD10CM|Oth fracture of right patella, init for clos fx|Oth fracture of right patella, init for clos fx +C2861124|T037|PT|S82.091A|ICD10CM|Other fracture of right patella, initial encounter for closed fracture|Other fracture of right patella, initial encounter for closed fracture +C2861125|T037|AB|S82.091B|ICD10CM|Oth fracture of right patella, init for opn fx type I/2|Oth fracture of right patella, init for opn fx type I/2 +C2861125|T037|PT|S82.091B|ICD10CM|Other fracture of right patella, initial encounter for open fracture type I or II|Other fracture of right patella, initial encounter for open fracture type I or II +C2861126|T037|AB|S82.091C|ICD10CM|Oth fracture of right patella, init for opn fx type 3A/B/C|Oth fracture of right patella, init for opn fx type 3A/B/C +C2861126|T037|PT|S82.091C|ICD10CM|Other fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC|Other fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2861127|T037|AB|S82.091D|ICD10CM|Oth fracture of right patella, subs for clos fx w routn heal|Oth fracture of right patella, subs for clos fx w routn heal +C2861127|T037|PT|S82.091D|ICD10CM|Other fracture of right patella, subsequent encounter for closed fracture with routine healing|Other fracture of right patella, subsequent encounter for closed fracture with routine healing +C2861128|T037|AB|S82.091E|ICD10CM|Oth fx right patella, subs for opn fx type I/2 w routn heal|Oth fx right patella, subs for opn fx type I/2 w routn heal +C2861129|T037|AB|S82.091F|ICD10CM|Oth fx r patella, subs for opn fx type 3A/B/C w routn heal|Oth fx r patella, subs for opn fx type 3A/B/C w routn heal +C2861130|T037|AB|S82.091G|ICD10CM|Oth fracture of right patella, subs for clos fx w delay heal|Oth fracture of right patella, subs for clos fx w delay heal +C2861130|T037|PT|S82.091G|ICD10CM|Other fracture of right patella, subsequent encounter for closed fracture with delayed healing|Other fracture of right patella, subsequent encounter for closed fracture with delayed healing +C2861131|T037|AB|S82.091H|ICD10CM|Oth fx right patella, subs for opn fx type I/2 w delay heal|Oth fx right patella, subs for opn fx type I/2 w delay heal +C2861132|T037|AB|S82.091J|ICD10CM|Oth fx r patella, subs for opn fx type 3A/B/C w delay heal|Oth fx r patella, subs for opn fx type 3A/B/C w delay heal +C2861133|T037|AB|S82.091K|ICD10CM|Oth fracture of right patella, subs for clos fx w nonunion|Oth fracture of right patella, subs for clos fx w nonunion +C2861133|T037|PT|S82.091K|ICD10CM|Other fracture of right patella, subsequent encounter for closed fracture with nonunion|Other fracture of right patella, subsequent encounter for closed fracture with nonunion +C2861134|T037|AB|S82.091M|ICD10CM|Oth fx right patella, subs for opn fx type I/2 w nonunion|Oth fx right patella, subs for opn fx type I/2 w nonunion +C2861134|T037|PT|S82.091M|ICD10CM|Other fracture of right patella, subsequent encounter for open fracture type I or II with nonunion|Other fracture of right patella, subsequent encounter for open fracture type I or II with nonunion +C2861135|T037|AB|S82.091N|ICD10CM|Oth fx right patella, subs for opn fx type 3A/B/C w nonunion|Oth fx right patella, subs for opn fx type 3A/B/C w nonunion +C2861136|T037|AB|S82.091P|ICD10CM|Oth fracture of right patella, subs for clos fx w malunion|Oth fracture of right patella, subs for clos fx w malunion +C2861136|T037|PT|S82.091P|ICD10CM|Other fracture of right patella, subsequent encounter for closed fracture with malunion|Other fracture of right patella, subsequent encounter for closed fracture with malunion +C2861137|T037|AB|S82.091Q|ICD10CM|Oth fx right patella, subs for opn fx type I/2 w malunion|Oth fx right patella, subs for opn fx type I/2 w malunion +C2861137|T037|PT|S82.091Q|ICD10CM|Other fracture of right patella, subsequent encounter for open fracture type I or II with malunion|Other fracture of right patella, subsequent encounter for open fracture type I or II with malunion +C2861138|T037|AB|S82.091R|ICD10CM|Oth fx right patella, subs for opn fx type 3A/B/C w malunion|Oth fx right patella, subs for opn fx type 3A/B/C w malunion +C2861139|T037|PT|S82.091S|ICD10CM|Other fracture of right patella, sequela|Other fracture of right patella, sequela +C2861139|T037|AB|S82.091S|ICD10CM|Other fracture of right patella, sequela|Other fracture of right patella, sequela +C2861140|T037|AB|S82.092|ICD10CM|Other fracture of left patella|Other fracture of left patella +C2861140|T037|HT|S82.092|ICD10CM|Other fracture of left patella|Other fracture of left patella +C2861141|T037|AB|S82.092A|ICD10CM|Oth fracture of left patella, init for clos fx|Oth fracture of left patella, init for clos fx +C2861141|T037|PT|S82.092A|ICD10CM|Other fracture of left patella, initial encounter for closed fracture|Other fracture of left patella, initial encounter for closed fracture +C2861142|T037|AB|S82.092B|ICD10CM|Oth fracture of left patella, init for opn fx type I/2|Oth fracture of left patella, init for opn fx type I/2 +C2861142|T037|PT|S82.092B|ICD10CM|Other fracture of left patella, initial encounter for open fracture type I or II|Other fracture of left patella, initial encounter for open fracture type I or II +C2861143|T037|AB|S82.092C|ICD10CM|Oth fracture of left patella, init for opn fx type 3A/B/C|Oth fracture of left patella, init for opn fx type 3A/B/C +C2861143|T037|PT|S82.092C|ICD10CM|Other fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC|Other fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2861144|T037|AB|S82.092D|ICD10CM|Oth fracture of left patella, subs for clos fx w routn heal|Oth fracture of left patella, subs for clos fx w routn heal +C2861144|T037|PT|S82.092D|ICD10CM|Other fracture of left patella, subsequent encounter for closed fracture with routine healing|Other fracture of left patella, subsequent encounter for closed fracture with routine healing +C2861145|T037|AB|S82.092E|ICD10CM|Oth fx left patella, subs for opn fx type I/2 w routn heal|Oth fx left patella, subs for opn fx type I/2 w routn heal +C2861146|T037|AB|S82.092F|ICD10CM|Oth fx l patella, subs for opn fx type 3A/B/C w routn heal|Oth fx l patella, subs for opn fx type 3A/B/C w routn heal +C2861147|T037|AB|S82.092G|ICD10CM|Oth fracture of left patella, subs for clos fx w delay heal|Oth fracture of left patella, subs for clos fx w delay heal +C2861147|T037|PT|S82.092G|ICD10CM|Other fracture of left patella, subsequent encounter for closed fracture with delayed healing|Other fracture of left patella, subsequent encounter for closed fracture with delayed healing +C2861148|T037|AB|S82.092H|ICD10CM|Oth fx left patella, subs for opn fx type I/2 w delay heal|Oth fx left patella, subs for opn fx type I/2 w delay heal +C2861149|T037|AB|S82.092J|ICD10CM|Oth fx l patella, subs for opn fx type 3A/B/C w delay heal|Oth fx l patella, subs for opn fx type 3A/B/C w delay heal +C2861150|T037|AB|S82.092K|ICD10CM|Oth fracture of left patella, subs for clos fx w nonunion|Oth fracture of left patella, subs for clos fx w nonunion +C2861150|T037|PT|S82.092K|ICD10CM|Other fracture of left patella, subsequent encounter for closed fracture with nonunion|Other fracture of left patella, subsequent encounter for closed fracture with nonunion +C2861151|T037|AB|S82.092M|ICD10CM|Oth fx left patella, subs for opn fx type I/2 w nonunion|Oth fx left patella, subs for opn fx type I/2 w nonunion +C2861151|T037|PT|S82.092M|ICD10CM|Other fracture of left patella, subsequent encounter for open fracture type I or II with nonunion|Other fracture of left patella, subsequent encounter for open fracture type I or II with nonunion +C2861152|T037|AB|S82.092N|ICD10CM|Oth fx left patella, subs for opn fx type 3A/B/C w nonunion|Oth fx left patella, subs for opn fx type 3A/B/C w nonunion +C2861153|T037|AB|S82.092P|ICD10CM|Oth fracture of left patella, subs for clos fx w malunion|Oth fracture of left patella, subs for clos fx w malunion +C2861153|T037|PT|S82.092P|ICD10CM|Other fracture of left patella, subsequent encounter for closed fracture with malunion|Other fracture of left patella, subsequent encounter for closed fracture with malunion +C2861154|T037|AB|S82.092Q|ICD10CM|Oth fx left patella, subs for opn fx type I/2 w malunion|Oth fx left patella, subs for opn fx type I/2 w malunion +C2861154|T037|PT|S82.092Q|ICD10CM|Other fracture of left patella, subsequent encounter for open fracture type I or II with malunion|Other fracture of left patella, subsequent encounter for open fracture type I or II with malunion +C2861155|T037|AB|S82.092R|ICD10CM|Oth fx left patella, subs for opn fx type 3A/B/C w malunion|Oth fx left patella, subs for opn fx type 3A/B/C w malunion +C2861156|T037|PT|S82.092S|ICD10CM|Other fracture of left patella, sequela|Other fracture of left patella, sequela +C2861156|T037|AB|S82.092S|ICD10CM|Other fracture of left patella, sequela|Other fracture of left patella, sequela +C2861157|T037|AB|S82.099|ICD10CM|Other fracture of unspecified patella|Other fracture of unspecified patella +C2861157|T037|HT|S82.099|ICD10CM|Other fracture of unspecified patella|Other fracture of unspecified patella +C2861158|T037|AB|S82.099A|ICD10CM|Oth fracture of unsp patella, init for clos fx|Oth fracture of unsp patella, init for clos fx +C2861158|T037|PT|S82.099A|ICD10CM|Other fracture of unspecified patella, initial encounter for closed fracture|Other fracture of unspecified patella, initial encounter for closed fracture +C2861159|T037|AB|S82.099B|ICD10CM|Oth fracture of unsp patella, init for opn fx type I/2|Oth fracture of unsp patella, init for opn fx type I/2 +C2861159|T037|PT|S82.099B|ICD10CM|Other fracture of unspecified patella, initial encounter for open fracture type I or II|Other fracture of unspecified patella, initial encounter for open fracture type I or II +C2861160|T037|AB|S82.099C|ICD10CM|Oth fracture of unsp patella, init for opn fx type 3A/B/C|Oth fracture of unsp patella, init for opn fx type 3A/B/C +C2861160|T037|PT|S82.099C|ICD10CM|Other fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC|Other fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2861161|T037|AB|S82.099D|ICD10CM|Oth fracture of unsp patella, subs for clos fx w routn heal|Oth fracture of unsp patella, subs for clos fx w routn heal +C2861161|T037|PT|S82.099D|ICD10CM|Other fracture of unspecified patella, subsequent encounter for closed fracture with routine healing|Other fracture of unspecified patella, subsequent encounter for closed fracture with routine healing +C2861162|T037|AB|S82.099E|ICD10CM|Oth fx unsp patella, subs for opn fx type I/2 w routn heal|Oth fx unsp patella, subs for opn fx type I/2 w routn heal +C2861163|T037|AB|S82.099F|ICD10CM|Oth fx unsp patella, 7thF|Oth fx unsp patella, 7thF +C2861164|T037|AB|S82.099G|ICD10CM|Oth fracture of unsp patella, subs for clos fx w delay heal|Oth fracture of unsp patella, subs for clos fx w delay heal +C2861164|T037|PT|S82.099G|ICD10CM|Other fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing|Other fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing +C2861165|T037|AB|S82.099H|ICD10CM|Oth fx unsp patella, subs for opn fx type I/2 w delay heal|Oth fx unsp patella, subs for opn fx type I/2 w delay heal +C2861166|T037|AB|S82.099J|ICD10CM|Oth fx unsp patella, 7thJ|Oth fx unsp patella, 7thJ +C2861167|T037|AB|S82.099K|ICD10CM|Oth fracture of unsp patella, subs for clos fx w nonunion|Oth fracture of unsp patella, subs for clos fx w nonunion +C2861167|T037|PT|S82.099K|ICD10CM|Other fracture of unspecified patella, subsequent encounter for closed fracture with nonunion|Other fracture of unspecified patella, subsequent encounter for closed fracture with nonunion +C2861168|T037|AB|S82.099M|ICD10CM|Oth fx unsp patella, subs for opn fx type I/2 w nonunion|Oth fx unsp patella, subs for opn fx type I/2 w nonunion +C2861169|T037|AB|S82.099N|ICD10CM|Oth fx unsp patella, subs for opn fx type 3A/B/C w nonunion|Oth fx unsp patella, subs for opn fx type 3A/B/C w nonunion +C2861170|T037|AB|S82.099P|ICD10CM|Oth fracture of unsp patella, subs for clos fx w malunion|Oth fracture of unsp patella, subs for clos fx w malunion +C2861170|T037|PT|S82.099P|ICD10CM|Other fracture of unspecified patella, subsequent encounter for closed fracture with malunion|Other fracture of unspecified patella, subsequent encounter for closed fracture with malunion +C2861171|T037|AB|S82.099Q|ICD10CM|Oth fx unsp patella, subs for opn fx type I/2 w malunion|Oth fx unsp patella, subs for opn fx type I/2 w malunion +C2861172|T037|AB|S82.099R|ICD10CM|Oth fx unsp patella, subs for opn fx type 3A/B/C w malunion|Oth fx unsp patella, subs for opn fx type 3A/B/C w malunion +C2861173|T037|PT|S82.099S|ICD10CM|Other fracture of unspecified patella, sequela|Other fracture of unspecified patella, sequela +C2861173|T037|AB|S82.099S|ICD10CM|Other fracture of unspecified patella, sequela|Other fracture of unspecified patella, sequela +C0272765|T037|ET|S82.1|ICD10CM|Fracture of proximal end of tibia|Fracture of proximal end of tibia +C0272765|T037|HT|S82.1|ICD10CM|Fracture of upper end of tibia|Fracture of upper end of tibia +C0272765|T037|AB|S82.1|ICD10CM|Fracture of upper end of tibia|Fracture of upper end of tibia +C0272765|T037|PT|S82.1|ICD10|Fracture of upper end of tibia|Fracture of upper end of tibia +C2861174|T037|AB|S82.10|ICD10CM|Unspecified fracture of upper end of tibia|Unspecified fracture of upper end of tibia +C2861174|T037|HT|S82.10|ICD10CM|Unspecified fracture of upper end of tibia|Unspecified fracture of upper end of tibia +C2861175|T037|AB|S82.101|ICD10CM|Unspecified fracture of upper end of right tibia|Unspecified fracture of upper end of right tibia +C2861175|T037|HT|S82.101|ICD10CM|Unspecified fracture of upper end of right tibia|Unspecified fracture of upper end of right tibia +C2861176|T037|AB|S82.101A|ICD10CM|Unsp fracture of upper end of right tibia, init for clos fx|Unsp fracture of upper end of right tibia, init for clos fx +C2861176|T037|PT|S82.101A|ICD10CM|Unspecified fracture of upper end of right tibia, initial encounter for closed fracture|Unspecified fracture of upper end of right tibia, initial encounter for closed fracture +C2861177|T037|AB|S82.101B|ICD10CM|Unsp fx upper end of right tibia, init for opn fx type I/2|Unsp fx upper end of right tibia, init for opn fx type I/2 +C2861177|T037|PT|S82.101B|ICD10CM|Unspecified fracture of upper end of right tibia, initial encounter for open fracture type I or II|Unspecified fracture of upper end of right tibia, initial encounter for open fracture type I or II +C2861178|T037|AB|S82.101C|ICD10CM|Unsp fx upper end of r tibia, init for opn fx type 3A/B/C|Unsp fx upper end of r tibia, init for opn fx type 3A/B/C +C2861179|T037|AB|S82.101D|ICD10CM|Unsp fx upper end of r tibia, subs for clos fx w routn heal|Unsp fx upper end of r tibia, subs for clos fx w routn heal +C2861180|T037|AB|S82.101E|ICD10CM|Unsp fx upr end r tibia, 7thE|Unsp fx upr end r tibia, 7thE +C2861181|T037|AB|S82.101F|ICD10CM|Unsp fx upr end r tibia, 7thF|Unsp fx upr end r tibia, 7thF +C2861182|T037|AB|S82.101G|ICD10CM|Unsp fx upper end of r tibia, subs for clos fx w delay heal|Unsp fx upper end of r tibia, subs for clos fx w delay heal +C2861183|T037|AB|S82.101H|ICD10CM|Unsp fx upr end r tibia, 7thH|Unsp fx upr end r tibia, 7thH +C2861184|T037|AB|S82.101J|ICD10CM|Unsp fx upr end r tibia, 7thJ|Unsp fx upr end r tibia, 7thJ +C2861185|T037|AB|S82.101K|ICD10CM|Unsp fx upper end of r tibia, subs for clos fx w nonunion|Unsp fx upper end of r tibia, subs for clos fx w nonunion +C2861186|T037|AB|S82.101M|ICD10CM|Unsp fx upr end r tibia, subs for opn fx type I/2 w nonunion|Unsp fx upr end r tibia, subs for opn fx type I/2 w nonunion +C2861187|T037|AB|S82.101N|ICD10CM|Unsp fx upr end r tibia, 7thN|Unsp fx upr end r tibia, 7thN +C2861188|T037|AB|S82.101P|ICD10CM|Unsp fx upper end of r tibia, subs for clos fx w malunion|Unsp fx upper end of r tibia, subs for clos fx w malunion +C2861189|T037|AB|S82.101Q|ICD10CM|Unsp fx upr end r tibia, subs for opn fx type I/2 w malunion|Unsp fx upr end r tibia, subs for opn fx type I/2 w malunion +C2861190|T037|AB|S82.101R|ICD10CM|Unsp fx upr end r tibia, 7thR|Unsp fx upr end r tibia, 7thR +C2861191|T037|PT|S82.101S|ICD10CM|Unspecified fracture of upper end of right tibia, sequela|Unspecified fracture of upper end of right tibia, sequela +C2861191|T037|AB|S82.101S|ICD10CM|Unspecified fracture of upper end of right tibia, sequela|Unspecified fracture of upper end of right tibia, sequela +C2861192|T037|AB|S82.102|ICD10CM|Unspecified fracture of upper end of left tibia|Unspecified fracture of upper end of left tibia +C2861192|T037|HT|S82.102|ICD10CM|Unspecified fracture of upper end of left tibia|Unspecified fracture of upper end of left tibia +C2861193|T037|AB|S82.102A|ICD10CM|Unsp fracture of upper end of left tibia, init for clos fx|Unsp fracture of upper end of left tibia, init for clos fx +C2861193|T037|PT|S82.102A|ICD10CM|Unspecified fracture of upper end of left tibia, initial encounter for closed fracture|Unspecified fracture of upper end of left tibia, initial encounter for closed fracture +C2861194|T037|AB|S82.102B|ICD10CM|Unsp fx upper end of left tibia, init for opn fx type I/2|Unsp fx upper end of left tibia, init for opn fx type I/2 +C2861194|T037|PT|S82.102B|ICD10CM|Unspecified fracture of upper end of left tibia, initial encounter for open fracture type I or II|Unspecified fracture of upper end of left tibia, initial encounter for open fracture type I or II +C2861195|T037|AB|S82.102C|ICD10CM|Unsp fx upper end of left tibia, init for opn fx type 3A/B/C|Unsp fx upper end of left tibia, init for opn fx type 3A/B/C +C2861196|T037|AB|S82.102D|ICD10CM|Unsp fx upper end of l tibia, subs for clos fx w routn heal|Unsp fx upper end of l tibia, subs for clos fx w routn heal +C2861197|T037|AB|S82.102E|ICD10CM|Unsp fx upr end l tibia, 7thE|Unsp fx upr end l tibia, 7thE +C2861198|T037|AB|S82.102F|ICD10CM|Unsp fx upr end l tibia, 7thF|Unsp fx upr end l tibia, 7thF +C2861199|T037|AB|S82.102G|ICD10CM|Unsp fx upper end of l tibia, subs for clos fx w delay heal|Unsp fx upper end of l tibia, subs for clos fx w delay heal +C2861200|T037|AB|S82.102H|ICD10CM|Unsp fx upr end l tibia, 7thH|Unsp fx upr end l tibia, 7thH +C2861201|T037|AB|S82.102J|ICD10CM|Unsp fx upr end l tibia, 7thJ|Unsp fx upr end l tibia, 7thJ +C2861202|T037|AB|S82.102K|ICD10CM|Unsp fx upper end of left tibia, subs for clos fx w nonunion|Unsp fx upper end of left tibia, subs for clos fx w nonunion +C2861203|T037|AB|S82.102M|ICD10CM|Unsp fx upr end l tibia, subs for opn fx type I/2 w nonunion|Unsp fx upr end l tibia, subs for opn fx type I/2 w nonunion +C2861204|T037|AB|S82.102N|ICD10CM|Unsp fx upr end l tibia, 7thN|Unsp fx upr end l tibia, 7thN +C2861205|T037|AB|S82.102P|ICD10CM|Unsp fx upper end of left tibia, subs for clos fx w malunion|Unsp fx upper end of left tibia, subs for clos fx w malunion +C2861206|T037|AB|S82.102Q|ICD10CM|Unsp fx upr end l tibia, subs for opn fx type I/2 w malunion|Unsp fx upr end l tibia, subs for opn fx type I/2 w malunion +C2861207|T037|AB|S82.102R|ICD10CM|Unsp fx upr end l tibia, 7thR|Unsp fx upr end l tibia, 7thR +C2861208|T037|PT|S82.102S|ICD10CM|Unspecified fracture of upper end of left tibia, sequela|Unspecified fracture of upper end of left tibia, sequela +C2861208|T037|AB|S82.102S|ICD10CM|Unspecified fracture of upper end of left tibia, sequela|Unspecified fracture of upper end of left tibia, sequela +C2861209|T037|AB|S82.109|ICD10CM|Unspecified fracture of upper end of unspecified tibia|Unspecified fracture of upper end of unspecified tibia +C2861209|T037|HT|S82.109|ICD10CM|Unspecified fracture of upper end of unspecified tibia|Unspecified fracture of upper end of unspecified tibia +C2861210|T037|AB|S82.109A|ICD10CM|Unsp fracture of upper end of unsp tibia, init for clos fx|Unsp fracture of upper end of unsp tibia, init for clos fx +C2861210|T037|PT|S82.109A|ICD10CM|Unspecified fracture of upper end of unspecified tibia, initial encounter for closed fracture|Unspecified fracture of upper end of unspecified tibia, initial encounter for closed fracture +C2861211|T037|AB|S82.109B|ICD10CM|Unsp fx upper end of unsp tibia, init for opn fx type I/2|Unsp fx upper end of unsp tibia, init for opn fx type I/2 +C2861212|T037|AB|S82.109C|ICD10CM|Unsp fx upper end of unsp tibia, init for opn fx type 3A/B/C|Unsp fx upper end of unsp tibia, init for opn fx type 3A/B/C +C2861213|T037|AB|S82.109D|ICD10CM|Unsp fx upper end unsp tibia, subs for clos fx w routn heal|Unsp fx upper end unsp tibia, subs for clos fx w routn heal +C2861214|T037|AB|S82.109E|ICD10CM|Unsp fx upr end unsp tibia, 7thE|Unsp fx upr end unsp tibia, 7thE +C2861215|T037|AB|S82.109F|ICD10CM|Unsp fx upr end unsp tibia, 7thF|Unsp fx upr end unsp tibia, 7thF +C2861216|T037|AB|S82.109G|ICD10CM|Unsp fx upper end unsp tibia, subs for clos fx w delay heal|Unsp fx upper end unsp tibia, subs for clos fx w delay heal +C2861217|T037|AB|S82.109H|ICD10CM|Unsp fx upr end unsp tibia, 7thH|Unsp fx upr end unsp tibia, 7thH +C2861218|T037|AB|S82.109J|ICD10CM|Unsp fx upr end unsp tibia, 7thJ|Unsp fx upr end unsp tibia, 7thJ +C2861219|T037|AB|S82.109K|ICD10CM|Unsp fx upper end of unsp tibia, subs for clos fx w nonunion|Unsp fx upper end of unsp tibia, subs for clos fx w nonunion +C2861220|T037|AB|S82.109M|ICD10CM|Unsp fx upr end unsp tibia, 7thM|Unsp fx upr end unsp tibia, 7thM +C2861221|T037|AB|S82.109N|ICD10CM|Unsp fx upr end unsp tibia, 7thN|Unsp fx upr end unsp tibia, 7thN +C2861222|T037|AB|S82.109P|ICD10CM|Unsp fx upper end of unsp tibia, subs for clos fx w malunion|Unsp fx upper end of unsp tibia, subs for clos fx w malunion +C2861223|T037|AB|S82.109Q|ICD10CM|Unsp fx upr end unsp tibia, 7thQ|Unsp fx upr end unsp tibia, 7thQ +C2861224|T037|AB|S82.109R|ICD10CM|Unsp fx upr end unsp tibia, 7thR|Unsp fx upr end unsp tibia, 7thR +C2861225|T037|AB|S82.109S|ICD10CM|Unsp fracture of upper end of unspecified tibia, sequela|Unsp fracture of upper end of unspecified tibia, sequela +C2861225|T037|PT|S82.109S|ICD10CM|Unspecified fracture of upper end of unspecified tibia, sequela|Unspecified fracture of upper end of unspecified tibia, sequela +C0559736|T037|HT|S82.11|ICD10CM|Fracture of tibial spine|Fracture of tibial spine +C0559736|T037|AB|S82.11|ICD10CM|Fracture of tibial spine|Fracture of tibial spine +C2861226|T037|AB|S82.111|ICD10CM|Displaced fracture of right tibial spine|Displaced fracture of right tibial spine +C2861226|T037|HT|S82.111|ICD10CM|Displaced fracture of right tibial spine|Displaced fracture of right tibial spine +C2861227|T037|AB|S82.111A|ICD10CM|Disp fx of right tibial spine, init for clos fx|Disp fx of right tibial spine, init for clos fx +C2861227|T037|PT|S82.111A|ICD10CM|Displaced fracture of right tibial spine, initial encounter for closed fracture|Displaced fracture of right tibial spine, initial encounter for closed fracture +C2861228|T037|AB|S82.111B|ICD10CM|Disp fx of right tibial spine, init for opn fx type I/2|Disp fx of right tibial spine, init for opn fx type I/2 +C2861228|T037|PT|S82.111B|ICD10CM|Displaced fracture of right tibial spine, initial encounter for open fracture type I or II|Displaced fracture of right tibial spine, initial encounter for open fracture type I or II +C2861229|T037|AB|S82.111C|ICD10CM|Disp fx of right tibial spine, init for opn fx type 3A/B/C|Disp fx of right tibial spine, init for opn fx type 3A/B/C +C2861230|T037|AB|S82.111D|ICD10CM|Disp fx of right tibial spine, subs for clos fx w routn heal|Disp fx of right tibial spine, subs for clos fx w routn heal +C2861231|T037|AB|S82.111E|ICD10CM|Disp fx of r tibial spin, 7thE|Disp fx of r tibial spin, 7thE +C2861232|T037|AB|S82.111F|ICD10CM|Disp fx of r tibial spin, 7thF|Disp fx of r tibial spin, 7thF +C2861233|T037|AB|S82.111G|ICD10CM|Disp fx of right tibial spine, subs for clos fx w delay heal|Disp fx of right tibial spine, subs for clos fx w delay heal +C2861234|T037|AB|S82.111H|ICD10CM|Disp fx of r tibial spin, 7thH|Disp fx of r tibial spin, 7thH +C2861235|T037|AB|S82.111J|ICD10CM|Disp fx of r tibial spin, 7thJ|Disp fx of r tibial spin, 7thJ +C2861236|T037|AB|S82.111K|ICD10CM|Disp fx of right tibial spine, subs for clos fx w nonunion|Disp fx of right tibial spine, subs for clos fx w nonunion +C2861236|T037|PT|S82.111K|ICD10CM|Displaced fracture of right tibial spine, subsequent encounter for closed fracture with nonunion|Displaced fracture of right tibial spine, subsequent encounter for closed fracture with nonunion +C2861237|T037|AB|S82.111M|ICD10CM|Disp fx of r tibial spin, 7thM|Disp fx of r tibial spin, 7thM +C2861238|T037|AB|S82.111N|ICD10CM|Disp fx of r tibial spin, 7thN|Disp fx of r tibial spin, 7thN +C2861239|T037|AB|S82.111P|ICD10CM|Disp fx of right tibial spine, subs for clos fx w malunion|Disp fx of right tibial spine, subs for clos fx w malunion +C2861239|T037|PT|S82.111P|ICD10CM|Displaced fracture of right tibial spine, subsequent encounter for closed fracture with malunion|Displaced fracture of right tibial spine, subsequent encounter for closed fracture with malunion +C2861240|T037|AB|S82.111Q|ICD10CM|Disp fx of r tibial spin, 7thQ|Disp fx of r tibial spin, 7thQ +C2861241|T037|AB|S82.111R|ICD10CM|Disp fx of r tibial spin, 7thR|Disp fx of r tibial spin, 7thR +C2861242|T037|PT|S82.111S|ICD10CM|Displaced fracture of right tibial spine, sequela|Displaced fracture of right tibial spine, sequela +C2861242|T037|AB|S82.111S|ICD10CM|Displaced fracture of right tibial spine, sequela|Displaced fracture of right tibial spine, sequela +C2861243|T037|AB|S82.112|ICD10CM|Displaced fracture of left tibial spine|Displaced fracture of left tibial spine +C2861243|T037|HT|S82.112|ICD10CM|Displaced fracture of left tibial spine|Displaced fracture of left tibial spine +C2861244|T037|AB|S82.112A|ICD10CM|Disp fx of left tibial spine, init for clos fx|Disp fx of left tibial spine, init for clos fx +C2861244|T037|PT|S82.112A|ICD10CM|Displaced fracture of left tibial spine, initial encounter for closed fracture|Displaced fracture of left tibial spine, initial encounter for closed fracture +C2861245|T037|AB|S82.112B|ICD10CM|Disp fx of left tibial spine, init for opn fx type I/2|Disp fx of left tibial spine, init for opn fx type I/2 +C2861245|T037|PT|S82.112B|ICD10CM|Displaced fracture of left tibial spine, initial encounter for open fracture type I or II|Displaced fracture of left tibial spine, initial encounter for open fracture type I or II +C2861246|T037|AB|S82.112C|ICD10CM|Disp fx of left tibial spine, init for opn fx type 3A/B/C|Disp fx of left tibial spine, init for opn fx type 3A/B/C +C2861247|T037|AB|S82.112D|ICD10CM|Disp fx of left tibial spine, subs for clos fx w routn heal|Disp fx of left tibial spine, subs for clos fx w routn heal +C2861248|T037|AB|S82.112E|ICD10CM|Disp fx of l tibial spin, 7thE|Disp fx of l tibial spin, 7thE +C2861249|T037|AB|S82.112F|ICD10CM|Disp fx of l tibial spin, 7thF|Disp fx of l tibial spin, 7thF +C2861250|T037|AB|S82.112G|ICD10CM|Disp fx of left tibial spine, subs for clos fx w delay heal|Disp fx of left tibial spine, subs for clos fx w delay heal +C2861251|T037|AB|S82.112H|ICD10CM|Disp fx of l tibial spin, 7thH|Disp fx of l tibial spin, 7thH +C2861252|T037|AB|S82.112J|ICD10CM|Disp fx of l tibial spin, 7thJ|Disp fx of l tibial spin, 7thJ +C2861253|T037|AB|S82.112K|ICD10CM|Disp fx of left tibial spine, subs for clos fx w nonunion|Disp fx of left tibial spine, subs for clos fx w nonunion +C2861253|T037|PT|S82.112K|ICD10CM|Displaced fracture of left tibial spine, subsequent encounter for closed fracture with nonunion|Displaced fracture of left tibial spine, subsequent encounter for closed fracture with nonunion +C2861254|T037|AB|S82.112M|ICD10CM|Disp fx of l tibial spin, 7thM|Disp fx of l tibial spin, 7thM +C2861255|T037|AB|S82.112N|ICD10CM|Disp fx of l tibial spin, 7thN|Disp fx of l tibial spin, 7thN +C2861256|T037|AB|S82.112P|ICD10CM|Disp fx of left tibial spine, subs for clos fx w malunion|Disp fx of left tibial spine, subs for clos fx w malunion +C2861256|T037|PT|S82.112P|ICD10CM|Displaced fracture of left tibial spine, subsequent encounter for closed fracture with malunion|Displaced fracture of left tibial spine, subsequent encounter for closed fracture with malunion +C2861257|T037|AB|S82.112Q|ICD10CM|Disp fx of l tibial spin, 7thQ|Disp fx of l tibial spin, 7thQ +C2861258|T037|AB|S82.112R|ICD10CM|Disp fx of l tibial spin, 7thR|Disp fx of l tibial spin, 7thR +C2861259|T037|PT|S82.112S|ICD10CM|Displaced fracture of left tibial spine, sequela|Displaced fracture of left tibial spine, sequela +C2861259|T037|AB|S82.112S|ICD10CM|Displaced fracture of left tibial spine, sequela|Displaced fracture of left tibial spine, sequela +C2861260|T037|AB|S82.113|ICD10CM|Displaced fracture of unspecified tibial spine|Displaced fracture of unspecified tibial spine +C2861260|T037|HT|S82.113|ICD10CM|Displaced fracture of unspecified tibial spine|Displaced fracture of unspecified tibial spine +C2861261|T037|AB|S82.113A|ICD10CM|Disp fx of unsp tibial spine, init for clos fx|Disp fx of unsp tibial spine, init for clos fx +C2861261|T037|PT|S82.113A|ICD10CM|Displaced fracture of unspecified tibial spine, initial encounter for closed fracture|Displaced fracture of unspecified tibial spine, initial encounter for closed fracture +C2861262|T037|AB|S82.113B|ICD10CM|Disp fx of unsp tibial spine, init for opn fx type I/2|Disp fx of unsp tibial spine, init for opn fx type I/2 +C2861262|T037|PT|S82.113B|ICD10CM|Displaced fracture of unspecified tibial spine, initial encounter for open fracture type I or II|Displaced fracture of unspecified tibial spine, initial encounter for open fracture type I or II +C2861263|T037|AB|S82.113C|ICD10CM|Disp fx of unsp tibial spine, init for opn fx type 3A/B/C|Disp fx of unsp tibial spine, init for opn fx type 3A/B/C +C2861264|T037|AB|S82.113D|ICD10CM|Disp fx of unsp tibial spine, subs for clos fx w routn heal|Disp fx of unsp tibial spine, subs for clos fx w routn heal +C2861265|T037|AB|S82.113E|ICD10CM|Disp fx of unsp tibial spin, 7thE|Disp fx of unsp tibial spin, 7thE +C2861266|T037|AB|S82.113F|ICD10CM|Disp fx of unsp tibial spin, 7thF|Disp fx of unsp tibial spin, 7thF +C2861267|T037|AB|S82.113G|ICD10CM|Disp fx of unsp tibial spine, subs for clos fx w delay heal|Disp fx of unsp tibial spine, subs for clos fx w delay heal +C2861268|T037|AB|S82.113H|ICD10CM|Disp fx of unsp tibial spin, 7thH|Disp fx of unsp tibial spin, 7thH +C2861269|T037|AB|S82.113J|ICD10CM|Disp fx of unsp tibial spin, 7thJ|Disp fx of unsp tibial spin, 7thJ +C2861270|T037|AB|S82.113K|ICD10CM|Disp fx of unsp tibial spine, subs for clos fx w nonunion|Disp fx of unsp tibial spine, subs for clos fx w nonunion +C2861271|T037|AB|S82.113M|ICD10CM|Disp fx of unsp tibial spin, 7thM|Disp fx of unsp tibial spin, 7thM +C2861272|T037|AB|S82.113N|ICD10CM|Disp fx of unsp tibial spin, 7thN|Disp fx of unsp tibial spin, 7thN +C2861273|T037|AB|S82.113P|ICD10CM|Disp fx of unsp tibial spine, subs for clos fx w malunion|Disp fx of unsp tibial spine, subs for clos fx w malunion +C2861274|T037|AB|S82.113Q|ICD10CM|Disp fx of unsp tibial spin, 7thQ|Disp fx of unsp tibial spin, 7thQ +C2861275|T037|AB|S82.113R|ICD10CM|Disp fx of unsp tibial spin, 7thR|Disp fx of unsp tibial spin, 7thR +C2861276|T037|PT|S82.113S|ICD10CM|Displaced fracture of unspecified tibial spine, sequela|Displaced fracture of unspecified tibial spine, sequela +C2861276|T037|AB|S82.113S|ICD10CM|Displaced fracture of unspecified tibial spine, sequela|Displaced fracture of unspecified tibial spine, sequela +C2861277|T037|AB|S82.114|ICD10CM|Nondisplaced fracture of right tibial spine|Nondisplaced fracture of right tibial spine +C2861277|T037|HT|S82.114|ICD10CM|Nondisplaced fracture of right tibial spine|Nondisplaced fracture of right tibial spine +C2861278|T037|AB|S82.114A|ICD10CM|Nondisp fx of right tibial spine, init for clos fx|Nondisp fx of right tibial spine, init for clos fx +C2861278|T037|PT|S82.114A|ICD10CM|Nondisplaced fracture of right tibial spine, initial encounter for closed fracture|Nondisplaced fracture of right tibial spine, initial encounter for closed fracture +C2861279|T037|AB|S82.114B|ICD10CM|Nondisp fx of right tibial spine, init for opn fx type I/2|Nondisp fx of right tibial spine, init for opn fx type I/2 +C2861279|T037|PT|S82.114B|ICD10CM|Nondisplaced fracture of right tibial spine, initial encounter for open fracture type I or II|Nondisplaced fracture of right tibial spine, initial encounter for open fracture type I or II +C2861280|T037|AB|S82.114C|ICD10CM|Nondisp fx of r tibial spine, init for opn fx type 3A/B/C|Nondisp fx of r tibial spine, init for opn fx type 3A/B/C +C2861281|T037|AB|S82.114D|ICD10CM|Nondisp fx of r tibial spine, subs for clos fx w routn heal|Nondisp fx of r tibial spine, subs for clos fx w routn heal +C2861282|T037|AB|S82.114E|ICD10CM|Nondisp fx of r tibial spin, 7thE|Nondisp fx of r tibial spin, 7thE +C2861283|T037|AB|S82.114F|ICD10CM|Nondisp fx of r tibial spin, 7thF|Nondisp fx of r tibial spin, 7thF +C2861284|T037|AB|S82.114G|ICD10CM|Nondisp fx of r tibial spine, subs for clos fx w delay heal|Nondisp fx of r tibial spine, subs for clos fx w delay heal +C2861285|T037|AB|S82.114H|ICD10CM|Nondisp fx of r tibial spin, 7thH|Nondisp fx of r tibial spin, 7thH +C2861286|T037|AB|S82.114J|ICD10CM|Nondisp fx of r tibial spin, 7thJ|Nondisp fx of r tibial spin, 7thJ +C2861287|T037|AB|S82.114K|ICD10CM|Nondisp fx of r tibial spine, subs for clos fx w nonunion|Nondisp fx of r tibial spine, subs for clos fx w nonunion +C2861287|T037|PT|S82.114K|ICD10CM|Nondisplaced fracture of right tibial spine, subsequent encounter for closed fracture with nonunion|Nondisplaced fracture of right tibial spine, subsequent encounter for closed fracture with nonunion +C2861288|T037|AB|S82.114M|ICD10CM|Nondisp fx of r tibial spin, 7thM|Nondisp fx of r tibial spin, 7thM +C2861289|T037|AB|S82.114N|ICD10CM|Nondisp fx of r tibial spin, 7thN|Nondisp fx of r tibial spin, 7thN +C2861290|T037|AB|S82.114P|ICD10CM|Nondisp fx of r tibial spine, subs for clos fx w malunion|Nondisp fx of r tibial spine, subs for clos fx w malunion +C2861290|T037|PT|S82.114P|ICD10CM|Nondisplaced fracture of right tibial spine, subsequent encounter for closed fracture with malunion|Nondisplaced fracture of right tibial spine, subsequent encounter for closed fracture with malunion +C2861291|T037|AB|S82.114Q|ICD10CM|Nondisp fx of r tibial spin, 7thQ|Nondisp fx of r tibial spin, 7thQ +C2861292|T037|AB|S82.114R|ICD10CM|Nondisp fx of r tibial spin, 7thR|Nondisp fx of r tibial spin, 7thR +C2861293|T037|PT|S82.114S|ICD10CM|Nondisplaced fracture of right tibial spine, sequela|Nondisplaced fracture of right tibial spine, sequela +C2861293|T037|AB|S82.114S|ICD10CM|Nondisplaced fracture of right tibial spine, sequela|Nondisplaced fracture of right tibial spine, sequela +C2861294|T037|AB|S82.115|ICD10CM|Nondisplaced fracture of left tibial spine|Nondisplaced fracture of left tibial spine +C2861294|T037|HT|S82.115|ICD10CM|Nondisplaced fracture of left tibial spine|Nondisplaced fracture of left tibial spine +C2861295|T037|AB|S82.115A|ICD10CM|Nondisp fx of left tibial spine, init for clos fx|Nondisp fx of left tibial spine, init for clos fx +C2861295|T037|PT|S82.115A|ICD10CM|Nondisplaced fracture of left tibial spine, initial encounter for closed fracture|Nondisplaced fracture of left tibial spine, initial encounter for closed fracture +C2861296|T037|AB|S82.115B|ICD10CM|Nondisp fx of left tibial spine, init for opn fx type I/2|Nondisp fx of left tibial spine, init for opn fx type I/2 +C2861296|T037|PT|S82.115B|ICD10CM|Nondisplaced fracture of left tibial spine, initial encounter for open fracture type I or II|Nondisplaced fracture of left tibial spine, initial encounter for open fracture type I or II +C2861297|T037|AB|S82.115C|ICD10CM|Nondisp fx of left tibial spine, init for opn fx type 3A/B/C|Nondisp fx of left tibial spine, init for opn fx type 3A/B/C +C2861298|T037|AB|S82.115D|ICD10CM|Nondisp fx of l tibial spin, subs for clos fx w routn heal|Nondisp fx of l tibial spin, subs for clos fx w routn heal +C2861299|T037|AB|S82.115E|ICD10CM|Nondisp fx of l tibial spin, 7thE|Nondisp fx of l tibial spin, 7thE +C2861300|T037|AB|S82.115F|ICD10CM|Nondisp fx of l tibial spin, 7thF|Nondisp fx of l tibial spin, 7thF +C2861301|T037|AB|S82.115G|ICD10CM|Nondisp fx of l tibial spin, subs for clos fx w delay heal|Nondisp fx of l tibial spin, subs for clos fx w delay heal +C2861302|T037|AB|S82.115H|ICD10CM|Nondisp fx of l tibial spin, 7thH|Nondisp fx of l tibial spin, 7thH +C2861303|T037|AB|S82.115J|ICD10CM|Nondisp fx of l tibial spin, 7thJ|Nondisp fx of l tibial spin, 7thJ +C2861304|T037|AB|S82.115K|ICD10CM|Nondisp fx of left tibial spine, subs for clos fx w nonunion|Nondisp fx of left tibial spine, subs for clos fx w nonunion +C2861304|T037|PT|S82.115K|ICD10CM|Nondisplaced fracture of left tibial spine, subsequent encounter for closed fracture with nonunion|Nondisplaced fracture of left tibial spine, subsequent encounter for closed fracture with nonunion +C2861305|T037|AB|S82.115M|ICD10CM|Nondisp fx of l tibial spin, 7thM|Nondisp fx of l tibial spin, 7thM +C2861306|T037|AB|S82.115N|ICD10CM|Nondisp fx of l tibial spin, 7thN|Nondisp fx of l tibial spin, 7thN +C2861307|T037|AB|S82.115P|ICD10CM|Nondisp fx of left tibial spine, subs for clos fx w malunion|Nondisp fx of left tibial spine, subs for clos fx w malunion +C2861307|T037|PT|S82.115P|ICD10CM|Nondisplaced fracture of left tibial spine, subsequent encounter for closed fracture with malunion|Nondisplaced fracture of left tibial spine, subsequent encounter for closed fracture with malunion +C2861308|T037|AB|S82.115Q|ICD10CM|Nondisp fx of l tibial spin, 7thQ|Nondisp fx of l tibial spin, 7thQ +C2861309|T037|AB|S82.115R|ICD10CM|Nondisp fx of l tibial spin, 7thR|Nondisp fx of l tibial spin, 7thR +C2861310|T037|PT|S82.115S|ICD10CM|Nondisplaced fracture of left tibial spine, sequela|Nondisplaced fracture of left tibial spine, sequela +C2861310|T037|AB|S82.115S|ICD10CM|Nondisplaced fracture of left tibial spine, sequela|Nondisplaced fracture of left tibial spine, sequela +C2861311|T037|AB|S82.116|ICD10CM|Nondisplaced fracture of unspecified tibial spine|Nondisplaced fracture of unspecified tibial spine +C2861311|T037|HT|S82.116|ICD10CM|Nondisplaced fracture of unspecified tibial spine|Nondisplaced fracture of unspecified tibial spine +C2861312|T037|AB|S82.116A|ICD10CM|Nondisp fx of unsp tibial spine, init for clos fx|Nondisp fx of unsp tibial spine, init for clos fx +C2861312|T037|PT|S82.116A|ICD10CM|Nondisplaced fracture of unspecified tibial spine, initial encounter for closed fracture|Nondisplaced fracture of unspecified tibial spine, initial encounter for closed fracture +C2861313|T037|AB|S82.116B|ICD10CM|Nondisp fx of unsp tibial spine, init for opn fx type I/2|Nondisp fx of unsp tibial spine, init for opn fx type I/2 +C2861313|T037|PT|S82.116B|ICD10CM|Nondisplaced fracture of unspecified tibial spine, initial encounter for open fracture type I or II|Nondisplaced fracture of unspecified tibial spine, initial encounter for open fracture type I or II +C2861314|T037|AB|S82.116C|ICD10CM|Nondisp fx of unsp tibial spine, init for opn fx type 3A/B/C|Nondisp fx of unsp tibial spine, init for opn fx type 3A/B/C +C2861315|T037|AB|S82.116D|ICD10CM|Nondisp fx of unsp tibial spin, 7thD|Nondisp fx of unsp tibial spin, 7thD +C2861316|T037|AB|S82.116E|ICD10CM|Nondisp fx of unsp tibial spin, 7thE|Nondisp fx of unsp tibial spin, 7thE +C2861317|T037|AB|S82.116F|ICD10CM|Nondisp fx of unsp tibial spin, 7thF|Nondisp fx of unsp tibial spin, 7thF +C2861318|T037|AB|S82.116G|ICD10CM|Nondisp fx of unsp tibial spin, 7thG|Nondisp fx of unsp tibial spin, 7thG +C2861319|T037|AB|S82.116H|ICD10CM|Nondisp fx of unsp tibial spin, 7thH|Nondisp fx of unsp tibial spin, 7thH +C2861320|T037|AB|S82.116J|ICD10CM|Nondisp fx of unsp tibial spin, 7thJ|Nondisp fx of unsp tibial spin, 7thJ +C2861321|T037|AB|S82.116K|ICD10CM|Nondisp fx of unsp tibial spine, subs for clos fx w nonunion|Nondisp fx of unsp tibial spine, subs for clos fx w nonunion +C2861322|T037|AB|S82.116M|ICD10CM|Nondisp fx of unsp tibial spin, 7thM|Nondisp fx of unsp tibial spin, 7thM +C2861323|T037|AB|S82.116N|ICD10CM|Nondisp fx of unsp tibial spin, 7thN|Nondisp fx of unsp tibial spin, 7thN +C2861324|T037|AB|S82.116P|ICD10CM|Nondisp fx of unsp tibial spine, subs for clos fx w malunion|Nondisp fx of unsp tibial spine, subs for clos fx w malunion +C2861325|T037|AB|S82.116Q|ICD10CM|Nondisp fx of unsp tibial spin, 7thQ|Nondisp fx of unsp tibial spin, 7thQ +C2861326|T037|AB|S82.116R|ICD10CM|Nondisp fx of unsp tibial spin, 7thR|Nondisp fx of unsp tibial spin, 7thR +C2861327|T037|PT|S82.116S|ICD10CM|Nondisplaced fracture of unspecified tibial spine, sequela|Nondisplaced fracture of unspecified tibial spine, sequela +C2861327|T037|AB|S82.116S|ICD10CM|Nondisplaced fracture of unspecified tibial spine, sequela|Nondisplaced fracture of unspecified tibial spine, sequela +C1328564|T037|HT|S82.12|ICD10CM|Fracture of lateral condyle of tibia|Fracture of lateral condyle of tibia +C1328564|T037|AB|S82.12|ICD10CM|Fracture of lateral condyle of tibia|Fracture of lateral condyle of tibia +C2861328|T037|AB|S82.121|ICD10CM|Displaced fracture of lateral condyle of right tibia|Displaced fracture of lateral condyle of right tibia +C2861328|T037|HT|S82.121|ICD10CM|Displaced fracture of lateral condyle of right tibia|Displaced fracture of lateral condyle of right tibia +C2861329|T037|AB|S82.121A|ICD10CM|Disp fx of lateral condyle of right tibia, init for clos fx|Disp fx of lateral condyle of right tibia, init for clos fx +C2861329|T037|PT|S82.121A|ICD10CM|Displaced fracture of lateral condyle of right tibia, initial encounter for closed fracture|Displaced fracture of lateral condyle of right tibia, initial encounter for closed fracture +C2861330|T037|AB|S82.121B|ICD10CM|Disp fx of lateral condyle of r tibia, 7thB|Disp fx of lateral condyle of r tibia, 7thB +C2861331|T037|AB|S82.121C|ICD10CM|Disp fx of lateral condyle of r tibia, 7thC|Disp fx of lateral condyle of r tibia, 7thC +C2861332|T037|AB|S82.121D|ICD10CM|Disp fx of lateral condyle of r tibia, 7thD|Disp fx of lateral condyle of r tibia, 7thD +C2861333|T037|AB|S82.121E|ICD10CM|Disp fx of lateral condyle of r tibia, 7thE|Disp fx of lateral condyle of r tibia, 7thE +C2861334|T037|AB|S82.121F|ICD10CM|Disp fx of lateral condyle of r tibia, 7thF|Disp fx of lateral condyle of r tibia, 7thF +C2861335|T037|AB|S82.121G|ICD10CM|Disp fx of lateral condyle of r tibia, 7thG|Disp fx of lateral condyle of r tibia, 7thG +C2861336|T037|AB|S82.121H|ICD10CM|Disp fx of lateral condyle of r tibia, 7thH|Disp fx of lateral condyle of r tibia, 7thH +C2861337|T037|AB|S82.121J|ICD10CM|Disp fx of lateral condyle of r tibia, 7thJ|Disp fx of lateral condyle of r tibia, 7thJ +C2861338|T037|AB|S82.121K|ICD10CM|Disp fx of lateral condyle of r tibia, 7thK|Disp fx of lateral condyle of r tibia, 7thK +C2861339|T037|AB|S82.121M|ICD10CM|Disp fx of lateral condyle of r tibia, 7thM|Disp fx of lateral condyle of r tibia, 7thM +C2861340|T037|AB|S82.121N|ICD10CM|Disp fx of lateral condyle of r tibia, 7thN|Disp fx of lateral condyle of r tibia, 7thN +C2861341|T037|AB|S82.121P|ICD10CM|Disp fx of lateral condyle of r tibia, 7thP|Disp fx of lateral condyle of r tibia, 7thP +C2861342|T037|AB|S82.121Q|ICD10CM|Disp fx of lateral condyle of r tibia, 7thQ|Disp fx of lateral condyle of r tibia, 7thQ +C2861343|T037|AB|S82.121R|ICD10CM|Disp fx of lateral condyle of r tibia, 7thR|Disp fx of lateral condyle of r tibia, 7thR +C2861344|T037|AB|S82.121S|ICD10CM|Disp fx of lateral condyle of right tibia, sequela|Disp fx of lateral condyle of right tibia, sequela +C2861344|T037|PT|S82.121S|ICD10CM|Displaced fracture of lateral condyle of right tibia, sequela|Displaced fracture of lateral condyle of right tibia, sequela +C2861345|T037|AB|S82.122|ICD10CM|Displaced fracture of lateral condyle of left tibia|Displaced fracture of lateral condyle of left tibia +C2861345|T037|HT|S82.122|ICD10CM|Displaced fracture of lateral condyle of left tibia|Displaced fracture of lateral condyle of left tibia +C2861346|T037|AB|S82.122A|ICD10CM|Disp fx of lateral condyle of left tibia, init for clos fx|Disp fx of lateral condyle of left tibia, init for clos fx +C2861346|T037|PT|S82.122A|ICD10CM|Displaced fracture of lateral condyle of left tibia, initial encounter for closed fracture|Displaced fracture of lateral condyle of left tibia, initial encounter for closed fracture +C2861347|T037|AB|S82.122B|ICD10CM|Disp fx of lateral condyle of l tibia, 7thB|Disp fx of lateral condyle of l tibia, 7thB +C2861348|T037|AB|S82.122C|ICD10CM|Disp fx of lateral condyle of l tibia, 7thC|Disp fx of lateral condyle of l tibia, 7thC +C2861349|T037|AB|S82.122D|ICD10CM|Disp fx of lateral condyle of l tibia, 7thD|Disp fx of lateral condyle of l tibia, 7thD +C2861350|T037|AB|S82.122E|ICD10CM|Disp fx of lateral condyle of l tibia, 7thE|Disp fx of lateral condyle of l tibia, 7thE +C2861351|T037|AB|S82.122F|ICD10CM|Disp fx of lateral condyle of l tibia, 7thF|Disp fx of lateral condyle of l tibia, 7thF +C2861352|T037|AB|S82.122G|ICD10CM|Disp fx of lateral condyle of l tibia, 7thG|Disp fx of lateral condyle of l tibia, 7thG +C2861353|T037|AB|S82.122H|ICD10CM|Disp fx of lateral condyle of l tibia, 7thH|Disp fx of lateral condyle of l tibia, 7thH +C2861354|T037|AB|S82.122J|ICD10CM|Disp fx of lateral condyle of l tibia, 7thJ|Disp fx of lateral condyle of l tibia, 7thJ +C2861355|T037|AB|S82.122K|ICD10CM|Disp fx of lateral condyle of l tibia, 7thK|Disp fx of lateral condyle of l tibia, 7thK +C2861356|T037|AB|S82.122M|ICD10CM|Disp fx of lateral condyle of l tibia, 7thM|Disp fx of lateral condyle of l tibia, 7thM +C2861357|T037|AB|S82.122N|ICD10CM|Disp fx of lateral condyle of l tibia, 7thN|Disp fx of lateral condyle of l tibia, 7thN +C2861358|T037|AB|S82.122P|ICD10CM|Disp fx of lateral condyle of l tibia, 7thP|Disp fx of lateral condyle of l tibia, 7thP +C2861359|T037|AB|S82.122Q|ICD10CM|Disp fx of lateral condyle of l tibia, 7thQ|Disp fx of lateral condyle of l tibia, 7thQ +C2861360|T037|AB|S82.122R|ICD10CM|Disp fx of lateral condyle of l tibia, 7thR|Disp fx of lateral condyle of l tibia, 7thR +C2861361|T037|AB|S82.122S|ICD10CM|Displaced fracture of lateral condyle of left tibia, sequela|Displaced fracture of lateral condyle of left tibia, sequela +C2861361|T037|PT|S82.122S|ICD10CM|Displaced fracture of lateral condyle of left tibia, sequela|Displaced fracture of lateral condyle of left tibia, sequela +C2861362|T037|AB|S82.123|ICD10CM|Displaced fracture of lateral condyle of unspecified tibia|Displaced fracture of lateral condyle of unspecified tibia +C2861362|T037|HT|S82.123|ICD10CM|Displaced fracture of lateral condyle of unspecified tibia|Displaced fracture of lateral condyle of unspecified tibia +C2861363|T037|AB|S82.123A|ICD10CM|Disp fx of lateral condyle of unsp tibia, init for clos fx|Disp fx of lateral condyle of unsp tibia, init for clos fx +C2861363|T037|PT|S82.123A|ICD10CM|Displaced fracture of lateral condyle of unspecified tibia, initial encounter for closed fracture|Displaced fracture of lateral condyle of unspecified tibia, initial encounter for closed fracture +C2861364|T037|AB|S82.123B|ICD10CM|Disp fx of lateral condyle of unsp tibia, 7thB|Disp fx of lateral condyle of unsp tibia, 7thB +C2861365|T037|AB|S82.123C|ICD10CM|Disp fx of lateral condyle of unsp tibia, 7thC|Disp fx of lateral condyle of unsp tibia, 7thC +C2861366|T037|AB|S82.123D|ICD10CM|Disp fx of lateral condyle of unsp tibia, 7thD|Disp fx of lateral condyle of unsp tibia, 7thD +C2861367|T037|AB|S82.123E|ICD10CM|Disp fx of lateral condyle of unsp tibia, 7thE|Disp fx of lateral condyle of unsp tibia, 7thE +C2861368|T037|AB|S82.123F|ICD10CM|Disp fx of lateral condyle of unsp tibia, 7thF|Disp fx of lateral condyle of unsp tibia, 7thF +C2861369|T037|AB|S82.123G|ICD10CM|Disp fx of lateral condyle of unsp tibia, 7thG|Disp fx of lateral condyle of unsp tibia, 7thG +C2861370|T037|AB|S82.123H|ICD10CM|Disp fx of lateral condyle of unsp tibia, 7thH|Disp fx of lateral condyle of unsp tibia, 7thH +C2861371|T037|AB|S82.123J|ICD10CM|Disp fx of lateral condyle of unsp tibia, 7thJ|Disp fx of lateral condyle of unsp tibia, 7thJ +C2861372|T037|AB|S82.123K|ICD10CM|Disp fx of lateral condyle of unsp tibia, 7thK|Disp fx of lateral condyle of unsp tibia, 7thK +C2861373|T037|AB|S82.123M|ICD10CM|Disp fx of lateral condyle of unsp tibia, 7thM|Disp fx of lateral condyle of unsp tibia, 7thM +C2861374|T037|AB|S82.123N|ICD10CM|Disp fx of lateral condyle of unsp tibia, 7thN|Disp fx of lateral condyle of unsp tibia, 7thN +C2861375|T037|AB|S82.123P|ICD10CM|Disp fx of lateral condyle of unsp tibia, 7thP|Disp fx of lateral condyle of unsp tibia, 7thP +C2861376|T037|AB|S82.123Q|ICD10CM|Disp fx of lateral condyle of unsp tibia, 7thQ|Disp fx of lateral condyle of unsp tibia, 7thQ +C2861377|T037|AB|S82.123R|ICD10CM|Disp fx of lateral condyle of unsp tibia, 7thR|Disp fx of lateral condyle of unsp tibia, 7thR +C2861378|T037|AB|S82.123S|ICD10CM|Disp fx of lateral condyle of unspecified tibia, sequela|Disp fx of lateral condyle of unspecified tibia, sequela +C2861378|T037|PT|S82.123S|ICD10CM|Displaced fracture of lateral condyle of unspecified tibia, sequela|Displaced fracture of lateral condyle of unspecified tibia, sequela +C2861379|T037|AB|S82.124|ICD10CM|Nondisplaced fracture of lateral condyle of right tibia|Nondisplaced fracture of lateral condyle of right tibia +C2861379|T037|HT|S82.124|ICD10CM|Nondisplaced fracture of lateral condyle of right tibia|Nondisplaced fracture of lateral condyle of right tibia +C2861380|T037|AB|S82.124A|ICD10CM|Nondisp fx of lateral condyle of right tibia, init|Nondisp fx of lateral condyle of right tibia, init +C2861380|T037|PT|S82.124A|ICD10CM|Nondisplaced fracture of lateral condyle of right tibia, initial encounter for closed fracture|Nondisplaced fracture of lateral condyle of right tibia, initial encounter for closed fracture +C2861381|T037|AB|S82.124B|ICD10CM|Nondisp fx of lateral condyle of r tibia, 7thB|Nondisp fx of lateral condyle of r tibia, 7thB +C2861382|T037|AB|S82.124C|ICD10CM|Nondisp fx of lateral condyle of r tibia, 7thC|Nondisp fx of lateral condyle of r tibia, 7thC +C2861383|T037|AB|S82.124D|ICD10CM|Nondisp fx of lateral condyle of r tibia, 7thD|Nondisp fx of lateral condyle of r tibia, 7thD +C2861384|T037|AB|S82.124E|ICD10CM|Nondisp fx of lateral condyle of r tibia, 7thE|Nondisp fx of lateral condyle of r tibia, 7thE +C2861385|T037|AB|S82.124F|ICD10CM|Nondisp fx of lateral condyle of r tibia, 7thF|Nondisp fx of lateral condyle of r tibia, 7thF +C2861386|T037|AB|S82.124G|ICD10CM|Nondisp fx of lateral condyle of r tibia, 7thG|Nondisp fx of lateral condyle of r tibia, 7thG +C2861387|T037|AB|S82.124H|ICD10CM|Nondisp fx of lateral condyle of r tibia, 7thH|Nondisp fx of lateral condyle of r tibia, 7thH +C2861388|T037|AB|S82.124J|ICD10CM|Nondisp fx of lateral condyle of r tibia, 7thJ|Nondisp fx of lateral condyle of r tibia, 7thJ +C2861389|T037|AB|S82.124K|ICD10CM|Nondisp fx of lateral condyle of r tibia, 7thK|Nondisp fx of lateral condyle of r tibia, 7thK +C2861390|T037|AB|S82.124M|ICD10CM|Nondisp fx of lateral condyle of r tibia, 7thM|Nondisp fx of lateral condyle of r tibia, 7thM +C2861391|T037|AB|S82.124N|ICD10CM|Nondisp fx of lateral condyle of r tibia, 7thN|Nondisp fx of lateral condyle of r tibia, 7thN +C2861392|T037|AB|S82.124P|ICD10CM|Nondisp fx of lateral condyle of r tibia, 7thP|Nondisp fx of lateral condyle of r tibia, 7thP +C2861393|T037|AB|S82.124Q|ICD10CM|Nondisp fx of lateral condyle of r tibia, 7thQ|Nondisp fx of lateral condyle of r tibia, 7thQ +C2861394|T037|AB|S82.124R|ICD10CM|Nondisp fx of lateral condyle of r tibia, 7thR|Nondisp fx of lateral condyle of r tibia, 7thR +C2861395|T037|AB|S82.124S|ICD10CM|Nondisp fx of lateral condyle of right tibia, sequela|Nondisp fx of lateral condyle of right tibia, sequela +C2861395|T037|PT|S82.124S|ICD10CM|Nondisplaced fracture of lateral condyle of right tibia, sequela|Nondisplaced fracture of lateral condyle of right tibia, sequela +C2861396|T037|AB|S82.125|ICD10CM|Nondisplaced fracture of lateral condyle of left tibia|Nondisplaced fracture of lateral condyle of left tibia +C2861396|T037|HT|S82.125|ICD10CM|Nondisplaced fracture of lateral condyle of left tibia|Nondisplaced fracture of lateral condyle of left tibia +C2861397|T037|AB|S82.125A|ICD10CM|Nondisp fx of lateral condyle of left tibia, init|Nondisp fx of lateral condyle of left tibia, init +C2861397|T037|PT|S82.125A|ICD10CM|Nondisplaced fracture of lateral condyle of left tibia, initial encounter for closed fracture|Nondisplaced fracture of lateral condyle of left tibia, initial encounter for closed fracture +C2861398|T037|AB|S82.125B|ICD10CM|Nondisp fx of lateral condyle of l tibia, 7thB|Nondisp fx of lateral condyle of l tibia, 7thB +C2861399|T037|AB|S82.125C|ICD10CM|Nondisp fx of lateral condyle of l tibia, 7thC|Nondisp fx of lateral condyle of l tibia, 7thC +C2861400|T037|AB|S82.125D|ICD10CM|Nondisp fx of lateral condyle of l tibia, 7thD|Nondisp fx of lateral condyle of l tibia, 7thD +C2861401|T037|AB|S82.125E|ICD10CM|Nondisp fx of lateral condyle of l tibia, 7thE|Nondisp fx of lateral condyle of l tibia, 7thE +C2861402|T037|AB|S82.125F|ICD10CM|Nondisp fx of lateral condyle of l tibia, 7thF|Nondisp fx of lateral condyle of l tibia, 7thF +C2861403|T037|AB|S82.125G|ICD10CM|Nondisp fx of lateral condyle of l tibia, 7thG|Nondisp fx of lateral condyle of l tibia, 7thG +C2861404|T037|AB|S82.125H|ICD10CM|Nondisp fx of lateral condyle of l tibia, 7thH|Nondisp fx of lateral condyle of l tibia, 7thH +C2861405|T037|AB|S82.125J|ICD10CM|Nondisp fx of lateral condyle of l tibia, 7thJ|Nondisp fx of lateral condyle of l tibia, 7thJ +C2861406|T037|AB|S82.125K|ICD10CM|Nondisp fx of lateral condyle of l tibia, 7thK|Nondisp fx of lateral condyle of l tibia, 7thK +C2861407|T037|AB|S82.125M|ICD10CM|Nondisp fx of lateral condyle of l tibia, 7thM|Nondisp fx of lateral condyle of l tibia, 7thM +C2861408|T037|AB|S82.125N|ICD10CM|Nondisp fx of lateral condyle of l tibia, 7thN|Nondisp fx of lateral condyle of l tibia, 7thN +C2861409|T037|AB|S82.125P|ICD10CM|Nondisp fx of lateral condyle of l tibia, 7thP|Nondisp fx of lateral condyle of l tibia, 7thP +C2861410|T037|AB|S82.125Q|ICD10CM|Nondisp fx of lateral condyle of l tibia, 7thQ|Nondisp fx of lateral condyle of l tibia, 7thQ +C2861411|T037|AB|S82.125R|ICD10CM|Nondisp fx of lateral condyle of l tibia, 7thR|Nondisp fx of lateral condyle of l tibia, 7thR +C2861412|T037|AB|S82.125S|ICD10CM|Nondisp fx of lateral condyle of left tibia, sequela|Nondisp fx of lateral condyle of left tibia, sequela +C2861412|T037|PT|S82.125S|ICD10CM|Nondisplaced fracture of lateral condyle of left tibia, sequela|Nondisplaced fracture of lateral condyle of left tibia, sequela +C2861413|T037|AB|S82.126|ICD10CM|Nondisp fx of lateral condyle of unspecified tibia|Nondisp fx of lateral condyle of unspecified tibia +C2861413|T037|HT|S82.126|ICD10CM|Nondisplaced fracture of lateral condyle of unspecified tibia|Nondisplaced fracture of lateral condyle of unspecified tibia +C2861414|T037|AB|S82.126A|ICD10CM|Nondisp fx of lateral condyle of unsp tibia, init|Nondisp fx of lateral condyle of unsp tibia, init +C2861414|T037|PT|S82.126A|ICD10CM|Nondisplaced fracture of lateral condyle of unspecified tibia, initial encounter for closed fracture|Nondisplaced fracture of lateral condyle of unspecified tibia, initial encounter for closed fracture +C2861415|T037|AB|S82.126B|ICD10CM|Nondisp fx of lateral condyle of unsp tibia, 7thB|Nondisp fx of lateral condyle of unsp tibia, 7thB +C2861416|T037|AB|S82.126C|ICD10CM|Nondisp fx of lateral condyle of unsp tibia, 7thC|Nondisp fx of lateral condyle of unsp tibia, 7thC +C2861417|T037|AB|S82.126D|ICD10CM|Nondisp fx of lateral condyle of unsp tibia, 7thD|Nondisp fx of lateral condyle of unsp tibia, 7thD +C2861418|T037|AB|S82.126E|ICD10CM|Nondisp fx of lateral condyle of unsp tibia, 7thE|Nondisp fx of lateral condyle of unsp tibia, 7thE +C2861419|T037|AB|S82.126F|ICD10CM|Nondisp fx of lateral condyle of unsp tibia, 7thF|Nondisp fx of lateral condyle of unsp tibia, 7thF +C2861420|T037|AB|S82.126G|ICD10CM|Nondisp fx of lateral condyle of unsp tibia, 7thG|Nondisp fx of lateral condyle of unsp tibia, 7thG +C2861421|T037|AB|S82.126H|ICD10CM|Nondisp fx of lateral condyle of unsp tibia, 7thH|Nondisp fx of lateral condyle of unsp tibia, 7thH +C2861422|T037|AB|S82.126J|ICD10CM|Nondisp fx of lateral condyle of unsp tibia, 7thJ|Nondisp fx of lateral condyle of unsp tibia, 7thJ +C2861423|T037|AB|S82.126K|ICD10CM|Nondisp fx of lateral condyle of unsp tibia, 7thK|Nondisp fx of lateral condyle of unsp tibia, 7thK +C2861424|T037|AB|S82.126M|ICD10CM|Nondisp fx of lateral condyle of unsp tibia, 7thM|Nondisp fx of lateral condyle of unsp tibia, 7thM +C2861425|T037|AB|S82.126N|ICD10CM|Nondisp fx of lateral condyle of unsp tibia, 7thN|Nondisp fx of lateral condyle of unsp tibia, 7thN +C2861426|T037|AB|S82.126P|ICD10CM|Nondisp fx of lateral condyle of unsp tibia, 7thP|Nondisp fx of lateral condyle of unsp tibia, 7thP +C2861427|T037|AB|S82.126Q|ICD10CM|Nondisp fx of lateral condyle of unsp tibia, 7thQ|Nondisp fx of lateral condyle of unsp tibia, 7thQ +C2861428|T037|AB|S82.126R|ICD10CM|Nondisp fx of lateral condyle of unsp tibia, 7thR|Nondisp fx of lateral condyle of unsp tibia, 7thR +C2861429|T037|AB|S82.126S|ICD10CM|Nondisp fx of lateral condyle of unspecified tibia, sequela|Nondisp fx of lateral condyle of unspecified tibia, sequela +C2861429|T037|PT|S82.126S|ICD10CM|Nondisplaced fracture of lateral condyle of unspecified tibia, sequela|Nondisplaced fracture of lateral condyle of unspecified tibia, sequela +C1328563|T037|HT|S82.13|ICD10CM|Fracture of medial condyle of tibia|Fracture of medial condyle of tibia +C1328563|T037|AB|S82.13|ICD10CM|Fracture of medial condyle of tibia|Fracture of medial condyle of tibia +C2861430|T037|AB|S82.131|ICD10CM|Displaced fracture of medial condyle of right tibia|Displaced fracture of medial condyle of right tibia +C2861430|T037|HT|S82.131|ICD10CM|Displaced fracture of medial condyle of right tibia|Displaced fracture of medial condyle of right tibia +C2861431|T037|AB|S82.131A|ICD10CM|Disp fx of medial condyle of right tibia, init for clos fx|Disp fx of medial condyle of right tibia, init for clos fx +C2861431|T037|PT|S82.131A|ICD10CM|Displaced fracture of medial condyle of right tibia, initial encounter for closed fracture|Displaced fracture of medial condyle of right tibia, initial encounter for closed fracture +C2861432|T037|AB|S82.131B|ICD10CM|Disp fx of med condyle of r tibia, init for opn fx type I/2|Disp fx of med condyle of r tibia, init for opn fx type I/2 +C2861433|T037|AB|S82.131C|ICD10CM|Disp fx of med condyle of r tibia, 7thC|Disp fx of med condyle of r tibia, 7thC +C2861434|T037|AB|S82.131D|ICD10CM|Disp fx of med condyle of r tibia, 7thD|Disp fx of med condyle of r tibia, 7thD +C2861435|T037|AB|S82.131E|ICD10CM|Disp fx of med condyle of r tibia, 7thE|Disp fx of med condyle of r tibia, 7thE +C2861436|T037|AB|S82.131F|ICD10CM|Disp fx of med condyle of r tibia, 7thF|Disp fx of med condyle of r tibia, 7thF +C2861437|T037|AB|S82.131G|ICD10CM|Disp fx of med condyle of r tibia, 7thG|Disp fx of med condyle of r tibia, 7thG +C2861438|T037|AB|S82.131H|ICD10CM|Disp fx of med condyle of r tibia, 7thH|Disp fx of med condyle of r tibia, 7thH +C2861439|T037|AB|S82.131J|ICD10CM|Disp fx of med condyle of r tibia, 7thJ|Disp fx of med condyle of r tibia, 7thJ +C2861440|T037|AB|S82.131K|ICD10CM|Disp fx of med condyle of r tibia, 7thK|Disp fx of med condyle of r tibia, 7thK +C2861441|T037|AB|S82.131M|ICD10CM|Disp fx of med condyle of r tibia, 7thM|Disp fx of med condyle of r tibia, 7thM +C2861442|T037|AB|S82.131N|ICD10CM|Disp fx of med condyle of r tibia, 7thN|Disp fx of med condyle of r tibia, 7thN +C2861443|T037|AB|S82.131P|ICD10CM|Disp fx of med condyle of r tibia, 7thP|Disp fx of med condyle of r tibia, 7thP +C2861444|T037|AB|S82.131Q|ICD10CM|Disp fx of med condyle of r tibia, 7thQ|Disp fx of med condyle of r tibia, 7thQ +C2861445|T037|AB|S82.131R|ICD10CM|Disp fx of med condyle of r tibia, 7thR|Disp fx of med condyle of r tibia, 7thR +C2861446|T037|AB|S82.131S|ICD10CM|Displaced fracture of medial condyle of right tibia, sequela|Displaced fracture of medial condyle of right tibia, sequela +C2861446|T037|PT|S82.131S|ICD10CM|Displaced fracture of medial condyle of right tibia, sequela|Displaced fracture of medial condyle of right tibia, sequela +C2861447|T037|AB|S82.132|ICD10CM|Displaced fracture of medial condyle of left tibia|Displaced fracture of medial condyle of left tibia +C2861447|T037|HT|S82.132|ICD10CM|Displaced fracture of medial condyle of left tibia|Displaced fracture of medial condyle of left tibia +C2861448|T037|AB|S82.132A|ICD10CM|Disp fx of medial condyle of left tibia, init for clos fx|Disp fx of medial condyle of left tibia, init for clos fx +C2861448|T037|PT|S82.132A|ICD10CM|Displaced fracture of medial condyle of left tibia, initial encounter for closed fracture|Displaced fracture of medial condyle of left tibia, initial encounter for closed fracture +C2861449|T037|AB|S82.132B|ICD10CM|Disp fx of med condyle of l tibia, init for opn fx type I/2|Disp fx of med condyle of l tibia, init for opn fx type I/2 +C2861449|T037|PT|S82.132B|ICD10CM|Displaced fracture of medial condyle of left tibia, initial encounter for open fracture type I or II|Displaced fracture of medial condyle of left tibia, initial encounter for open fracture type I or II +C2861450|T037|AB|S82.132C|ICD10CM|Disp fx of med condyle of l tibia, 7thC|Disp fx of med condyle of l tibia, 7thC +C2861451|T037|AB|S82.132D|ICD10CM|Disp fx of med condyle of l tibia, 7thD|Disp fx of med condyle of l tibia, 7thD +C2861452|T037|AB|S82.132E|ICD10CM|Disp fx of med condyle of l tibia, 7thE|Disp fx of med condyle of l tibia, 7thE +C2861453|T037|AB|S82.132F|ICD10CM|Disp fx of med condyle of l tibia, 7thF|Disp fx of med condyle of l tibia, 7thF +C2861454|T037|AB|S82.132G|ICD10CM|Disp fx of med condyle of l tibia, 7thG|Disp fx of med condyle of l tibia, 7thG +C2861455|T037|AB|S82.132H|ICD10CM|Disp fx of med condyle of l tibia, 7thH|Disp fx of med condyle of l tibia, 7thH +C2861456|T037|AB|S82.132J|ICD10CM|Disp fx of med condyle of l tibia, 7thJ|Disp fx of med condyle of l tibia, 7thJ +C2861457|T037|AB|S82.132K|ICD10CM|Disp fx of med condyle of l tibia, 7thK|Disp fx of med condyle of l tibia, 7thK +C2861458|T037|AB|S82.132M|ICD10CM|Disp fx of med condyle of l tibia, 7thM|Disp fx of med condyle of l tibia, 7thM +C2861459|T037|AB|S82.132N|ICD10CM|Disp fx of med condyle of l tibia, 7thN|Disp fx of med condyle of l tibia, 7thN +C2861460|T037|AB|S82.132P|ICD10CM|Disp fx of med condyle of l tibia, 7thP|Disp fx of med condyle of l tibia, 7thP +C2861461|T037|AB|S82.132Q|ICD10CM|Disp fx of med condyle of l tibia, 7thQ|Disp fx of med condyle of l tibia, 7thQ +C2861462|T037|AB|S82.132R|ICD10CM|Disp fx of med condyle of l tibia, 7thR|Disp fx of med condyle of l tibia, 7thR +C2861463|T037|PT|S82.132S|ICD10CM|Displaced fracture of medial condyle of left tibia, sequela|Displaced fracture of medial condyle of left tibia, sequela +C2861463|T037|AB|S82.132S|ICD10CM|Displaced fracture of medial condyle of left tibia, sequela|Displaced fracture of medial condyle of left tibia, sequela +C2861464|T037|AB|S82.133|ICD10CM|Displaced fracture of medial condyle of unspecified tibia|Displaced fracture of medial condyle of unspecified tibia +C2861464|T037|HT|S82.133|ICD10CM|Displaced fracture of medial condyle of unspecified tibia|Displaced fracture of medial condyle of unspecified tibia +C2861465|T037|AB|S82.133A|ICD10CM|Disp fx of medial condyle of unsp tibia, init for clos fx|Disp fx of medial condyle of unsp tibia, init for clos fx +C2861465|T037|PT|S82.133A|ICD10CM|Displaced fracture of medial condyle of unspecified tibia, initial encounter for closed fracture|Displaced fracture of medial condyle of unspecified tibia, initial encounter for closed fracture +C2861466|T037|AB|S82.133B|ICD10CM|Disp fx of med condyle of unsp tibia, 7thB|Disp fx of med condyle of unsp tibia, 7thB +C2861467|T037|AB|S82.133C|ICD10CM|Disp fx of med condyle of unsp tibia, 7thC|Disp fx of med condyle of unsp tibia, 7thC +C2861468|T037|AB|S82.133D|ICD10CM|Disp fx of med condyle of unsp tibia, 7thD|Disp fx of med condyle of unsp tibia, 7thD +C2861469|T037|AB|S82.133E|ICD10CM|Disp fx of med condyle of unsp tibia, 7thE|Disp fx of med condyle of unsp tibia, 7thE +C2861470|T037|AB|S82.133F|ICD10CM|Disp fx of med condyle of unsp tibia, 7thF|Disp fx of med condyle of unsp tibia, 7thF +C2861471|T037|AB|S82.133G|ICD10CM|Disp fx of med condyle of unsp tibia, 7thG|Disp fx of med condyle of unsp tibia, 7thG +C2861472|T037|AB|S82.133H|ICD10CM|Disp fx of med condyle of unsp tibia, 7thH|Disp fx of med condyle of unsp tibia, 7thH +C2861473|T037|AB|S82.133J|ICD10CM|Disp fx of med condyle of unsp tibia, 7thJ|Disp fx of med condyle of unsp tibia, 7thJ +C2861474|T037|AB|S82.133K|ICD10CM|Disp fx of med condyle of unsp tibia, 7thK|Disp fx of med condyle of unsp tibia, 7thK +C2861475|T037|AB|S82.133M|ICD10CM|Disp fx of med condyle of unsp tibia, 7thM|Disp fx of med condyle of unsp tibia, 7thM +C2861476|T037|AB|S82.133N|ICD10CM|Disp fx of med condyle of unsp tibia, 7thN|Disp fx of med condyle of unsp tibia, 7thN +C2861477|T037|AB|S82.133P|ICD10CM|Disp fx of med condyle of unsp tibia, 7thP|Disp fx of med condyle of unsp tibia, 7thP +C2861478|T037|AB|S82.133Q|ICD10CM|Disp fx of med condyle of unsp tibia, 7thQ|Disp fx of med condyle of unsp tibia, 7thQ +C2861479|T037|AB|S82.133R|ICD10CM|Disp fx of med condyle of unsp tibia, 7thR|Disp fx of med condyle of unsp tibia, 7thR +C2861480|T037|AB|S82.133S|ICD10CM|Disp fx of medial condyle of unspecified tibia, sequela|Disp fx of medial condyle of unspecified tibia, sequela +C2861480|T037|PT|S82.133S|ICD10CM|Displaced fracture of medial condyle of unspecified tibia, sequela|Displaced fracture of medial condyle of unspecified tibia, sequela +C2861481|T037|AB|S82.134|ICD10CM|Nondisplaced fracture of medial condyle of right tibia|Nondisplaced fracture of medial condyle of right tibia +C2861481|T037|HT|S82.134|ICD10CM|Nondisplaced fracture of medial condyle of right tibia|Nondisplaced fracture of medial condyle of right tibia +C2861482|T037|AB|S82.134A|ICD10CM|Nondisp fx of medial condyle of right tibia, init|Nondisp fx of medial condyle of right tibia, init +C2861482|T037|PT|S82.134A|ICD10CM|Nondisplaced fracture of medial condyle of right tibia, initial encounter for closed fracture|Nondisplaced fracture of medial condyle of right tibia, initial encounter for closed fracture +C2861483|T037|AB|S82.134B|ICD10CM|Nondisp fx of med condyle of r tibia, 7thB|Nondisp fx of med condyle of r tibia, 7thB +C2861484|T037|AB|S82.134C|ICD10CM|Nondisp fx of med condyle of r tibia, 7thC|Nondisp fx of med condyle of r tibia, 7thC +C2861485|T037|AB|S82.134D|ICD10CM|Nondisp fx of med condyle of r tibia, 7thD|Nondisp fx of med condyle of r tibia, 7thD +C2861486|T037|AB|S82.134E|ICD10CM|Nondisp fx of med condyle of r tibia, 7thE|Nondisp fx of med condyle of r tibia, 7thE +C2861487|T037|AB|S82.134F|ICD10CM|Nondisp fx of med condyle of r tibia, 7thF|Nondisp fx of med condyle of r tibia, 7thF +C2861488|T037|AB|S82.134G|ICD10CM|Nondisp fx of med condyle of r tibia, 7thG|Nondisp fx of med condyle of r tibia, 7thG +C2861489|T037|AB|S82.134H|ICD10CM|Nondisp fx of med condyle of r tibia, 7thH|Nondisp fx of med condyle of r tibia, 7thH +C2861490|T037|AB|S82.134J|ICD10CM|Nondisp fx of med condyle of r tibia, 7thJ|Nondisp fx of med condyle of r tibia, 7thJ +C2861491|T037|AB|S82.134K|ICD10CM|Nondisp fx of med condyle of r tibia, 7thK|Nondisp fx of med condyle of r tibia, 7thK +C2861492|T037|AB|S82.134M|ICD10CM|Nondisp fx of med condyle of r tibia, 7thM|Nondisp fx of med condyle of r tibia, 7thM +C2861493|T037|AB|S82.134N|ICD10CM|Nondisp fx of med condyle of r tibia, 7thN|Nondisp fx of med condyle of r tibia, 7thN +C2861494|T037|AB|S82.134P|ICD10CM|Nondisp fx of med condyle of r tibia, 7thP|Nondisp fx of med condyle of r tibia, 7thP +C2861495|T037|AB|S82.134Q|ICD10CM|Nondisp fx of med condyle of r tibia, 7thQ|Nondisp fx of med condyle of r tibia, 7thQ +C2861496|T037|AB|S82.134R|ICD10CM|Nondisp fx of med condyle of r tibia, 7thR|Nondisp fx of med condyle of r tibia, 7thR +C2861497|T037|AB|S82.134S|ICD10CM|Nondisp fx of medial condyle of right tibia, sequela|Nondisp fx of medial condyle of right tibia, sequela +C2861497|T037|PT|S82.134S|ICD10CM|Nondisplaced fracture of medial condyle of right tibia, sequela|Nondisplaced fracture of medial condyle of right tibia, sequela +C2861498|T037|AB|S82.135|ICD10CM|Nondisplaced fracture of medial condyle of left tibia|Nondisplaced fracture of medial condyle of left tibia +C2861498|T037|HT|S82.135|ICD10CM|Nondisplaced fracture of medial condyle of left tibia|Nondisplaced fracture of medial condyle of left tibia +C2861499|T037|AB|S82.135A|ICD10CM|Nondisp fx of medial condyle of left tibia, init for clos fx|Nondisp fx of medial condyle of left tibia, init for clos fx +C2861499|T037|PT|S82.135A|ICD10CM|Nondisplaced fracture of medial condyle of left tibia, initial encounter for closed fracture|Nondisplaced fracture of medial condyle of left tibia, initial encounter for closed fracture +C2861500|T037|AB|S82.135B|ICD10CM|Nondisp fx of med condyle of l tibia, 7thB|Nondisp fx of med condyle of l tibia, 7thB +C2861501|T037|AB|S82.135C|ICD10CM|Nondisp fx of med condyle of l tibia, 7thC|Nondisp fx of med condyle of l tibia, 7thC +C2861502|T037|AB|S82.135D|ICD10CM|Nondisp fx of med condyle of l tibia, 7thD|Nondisp fx of med condyle of l tibia, 7thD +C2861503|T037|AB|S82.135E|ICD10CM|Nondisp fx of med condyle of l tibia, 7thE|Nondisp fx of med condyle of l tibia, 7thE +C2861504|T037|AB|S82.135F|ICD10CM|Nondisp fx of med condyle of l tibia, 7thF|Nondisp fx of med condyle of l tibia, 7thF +C2861505|T037|AB|S82.135G|ICD10CM|Nondisp fx of med condyle of l tibia, 7thG|Nondisp fx of med condyle of l tibia, 7thG +C2861506|T037|AB|S82.135H|ICD10CM|Nondisp fx of med condyle of l tibia, 7thH|Nondisp fx of med condyle of l tibia, 7thH +C2861507|T037|AB|S82.135J|ICD10CM|Nondisp fx of med condyle of l tibia, 7thJ|Nondisp fx of med condyle of l tibia, 7thJ +C2861508|T037|AB|S82.135K|ICD10CM|Nondisp fx of med condyle of l tibia, 7thK|Nondisp fx of med condyle of l tibia, 7thK +C2861509|T037|AB|S82.135M|ICD10CM|Nondisp fx of med condyle of l tibia, 7thM|Nondisp fx of med condyle of l tibia, 7thM +C2861510|T037|AB|S82.135N|ICD10CM|Nondisp fx of med condyle of l tibia, 7thN|Nondisp fx of med condyle of l tibia, 7thN +C2861511|T037|AB|S82.135P|ICD10CM|Nondisp fx of med condyle of l tibia, 7thP|Nondisp fx of med condyle of l tibia, 7thP +C2861512|T037|AB|S82.135Q|ICD10CM|Nondisp fx of med condyle of l tibia, 7thQ|Nondisp fx of med condyle of l tibia, 7thQ +C2861513|T037|AB|S82.135R|ICD10CM|Nondisp fx of med condyle of l tibia, 7thR|Nondisp fx of med condyle of l tibia, 7thR +C2861514|T037|AB|S82.135S|ICD10CM|Nondisp fx of medial condyle of left tibia, sequela|Nondisp fx of medial condyle of left tibia, sequela +C2861514|T037|PT|S82.135S|ICD10CM|Nondisplaced fracture of medial condyle of left tibia, sequela|Nondisplaced fracture of medial condyle of left tibia, sequela +C2861515|T037|AB|S82.136|ICD10CM|Nondisplaced fracture of medial condyle of unspecified tibia|Nondisplaced fracture of medial condyle of unspecified tibia +C2861515|T037|HT|S82.136|ICD10CM|Nondisplaced fracture of medial condyle of unspecified tibia|Nondisplaced fracture of medial condyle of unspecified tibia +C2861516|T037|AB|S82.136A|ICD10CM|Nondisp fx of medial condyle of unsp tibia, init for clos fx|Nondisp fx of medial condyle of unsp tibia, init for clos fx +C2861516|T037|PT|S82.136A|ICD10CM|Nondisplaced fracture of medial condyle of unspecified tibia, initial encounter for closed fracture|Nondisplaced fracture of medial condyle of unspecified tibia, initial encounter for closed fracture +C2861517|T037|AB|S82.136B|ICD10CM|Nondisp fx of med condyle of unsp tibia, 7thB|Nondisp fx of med condyle of unsp tibia, 7thB +C2861518|T037|AB|S82.136C|ICD10CM|Nondisp fx of med condyle of unsp tibia, 7thC|Nondisp fx of med condyle of unsp tibia, 7thC +C2861519|T037|AB|S82.136D|ICD10CM|Nondisp fx of med condyle of unsp tibia, 7thD|Nondisp fx of med condyle of unsp tibia, 7thD +C2861520|T037|AB|S82.136E|ICD10CM|Nondisp fx of med condyle of unsp tibia, 7thE|Nondisp fx of med condyle of unsp tibia, 7thE +C2861521|T037|AB|S82.136F|ICD10CM|Nondisp fx of med condyle of unsp tibia, 7thF|Nondisp fx of med condyle of unsp tibia, 7thF +C2861522|T037|AB|S82.136G|ICD10CM|Nondisp fx of med condyle of unsp tibia, 7thG|Nondisp fx of med condyle of unsp tibia, 7thG +C2861523|T037|AB|S82.136H|ICD10CM|Nondisp fx of med condyle of unsp tibia, 7thH|Nondisp fx of med condyle of unsp tibia, 7thH +C2861524|T037|AB|S82.136J|ICD10CM|Nondisp fx of med condyle of unsp tibia, 7thJ|Nondisp fx of med condyle of unsp tibia, 7thJ +C2861525|T037|AB|S82.136K|ICD10CM|Nondisp fx of med condyle of unsp tibia, 7thK|Nondisp fx of med condyle of unsp tibia, 7thK +C2861526|T037|AB|S82.136M|ICD10CM|Nondisp fx of med condyle of unsp tibia, 7thM|Nondisp fx of med condyle of unsp tibia, 7thM +C2861527|T037|AB|S82.136N|ICD10CM|Nondisp fx of med condyle of unsp tibia, 7thN|Nondisp fx of med condyle of unsp tibia, 7thN +C2861528|T037|AB|S82.136P|ICD10CM|Nondisp fx of med condyle of unsp tibia, 7thP|Nondisp fx of med condyle of unsp tibia, 7thP +C2861529|T037|AB|S82.136Q|ICD10CM|Nondisp fx of med condyle of unsp tibia, 7thQ|Nondisp fx of med condyle of unsp tibia, 7thQ +C2861530|T037|AB|S82.136R|ICD10CM|Nondisp fx of med condyle of unsp tibia, 7thR|Nondisp fx of med condyle of unsp tibia, 7thR +C2861531|T037|AB|S82.136S|ICD10CM|Nondisp fx of medial condyle of unspecified tibia, sequela|Nondisp fx of medial condyle of unspecified tibia, sequela +C2861531|T037|PT|S82.136S|ICD10CM|Nondisplaced fracture of medial condyle of unspecified tibia, sequela|Nondisplaced fracture of medial condyle of unspecified tibia, sequela +C2861532|T037|AB|S82.14|ICD10CM|Bicondylar fracture of tibia|Bicondylar fracture of tibia +C2861532|T037|HT|S82.14|ICD10CM|Bicondylar fracture of tibia|Bicondylar fracture of tibia +C0262489|T037|ET|S82.14|ICD10CM|Fracture of tibial plateau NOS|Fracture of tibial plateau NOS +C2861533|T037|AB|S82.141|ICD10CM|Displaced bicondylar fracture of right tibia|Displaced bicondylar fracture of right tibia +C2861533|T037|HT|S82.141|ICD10CM|Displaced bicondylar fracture of right tibia|Displaced bicondylar fracture of right tibia +C2861534|T037|AB|S82.141A|ICD10CM|Displaced bicondylar fracture of right tibia, init|Displaced bicondylar fracture of right tibia, init +C2861534|T037|PT|S82.141A|ICD10CM|Displaced bicondylar fracture of right tibia, initial encounter for closed fracture|Displaced bicondylar fracture of right tibia, initial encounter for closed fracture +C2861535|T037|PT|S82.141B|ICD10CM|Displaced bicondylar fracture of right tibia, initial encounter for open fracture type I or II|Displaced bicondylar fracture of right tibia, initial encounter for open fracture type I or II +C2861535|T037|AB|S82.141B|ICD10CM|Displaced bicondylar fx r tibia, init for opn fx type I/2|Displaced bicondylar fx r tibia, init for opn fx type I/2 +C2861536|T037|AB|S82.141C|ICD10CM|Displaced bicondylar fx r tibia, init for opn fx type 3A/B/C|Displaced bicondylar fx r tibia, init for opn fx type 3A/B/C +C2861537|T037|AB|S82.141D|ICD10CM|Displ bicondylar fx r tibia, subs for clos fx w routn heal|Displ bicondylar fx r tibia, subs for clos fx w routn heal +C2861538|T037|AB|S82.141E|ICD10CM|Displ bicondylar fx r tibia, 7thE|Displ bicondylar fx r tibia, 7thE +C2861539|T037|AB|S82.141F|ICD10CM|Displ bicondylar fx r tibia, 7thF|Displ bicondylar fx r tibia, 7thF +C2861540|T037|AB|S82.141G|ICD10CM|Displ bicondylar fx r tibia, subs for clos fx w delay heal|Displ bicondylar fx r tibia, subs for clos fx w delay heal +C2861541|T037|AB|S82.141H|ICD10CM|Displ bicondylar fx r tibia, 7thH|Displ bicondylar fx r tibia, 7thH +C2861542|T037|AB|S82.141J|ICD10CM|Displ bicondylar fx r tibia, 7thJ|Displ bicondylar fx r tibia, 7thJ +C2861543|T037|PT|S82.141K|ICD10CM|Displaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with nonunion|Displaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with nonunion +C2861543|T037|AB|S82.141K|ICD10CM|Displaced bicondylar fx r tibia, subs for clos fx w nonunion|Displaced bicondylar fx r tibia, subs for clos fx w nonunion +C2861544|T037|AB|S82.141M|ICD10CM|Displ bicondylar fx r tibia, 7thM|Displ bicondylar fx r tibia, 7thM +C2861545|T037|AB|S82.141N|ICD10CM|Displ bicondylar fx r tibia, 7thN|Displ bicondylar fx r tibia, 7thN +C2861546|T037|PT|S82.141P|ICD10CM|Displaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with malunion|Displaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with malunion +C2861546|T037|AB|S82.141P|ICD10CM|Displaced bicondylar fx r tibia, subs for clos fx w malunion|Displaced bicondylar fx r tibia, subs for clos fx w malunion +C2861547|T037|AB|S82.141Q|ICD10CM|Displ bicondylar fx r tibia, 7thQ|Displ bicondylar fx r tibia, 7thQ +C2861548|T037|AB|S82.141R|ICD10CM|Displ bicondylar fx r tibia, 7thR|Displ bicondylar fx r tibia, 7thR +C2861549|T037|PT|S82.141S|ICD10CM|Displaced bicondylar fracture of right tibia, sequela|Displaced bicondylar fracture of right tibia, sequela +C2861549|T037|AB|S82.141S|ICD10CM|Displaced bicondylar fracture of right tibia, sequela|Displaced bicondylar fracture of right tibia, sequela +C2861550|T037|AB|S82.142|ICD10CM|Displaced bicondylar fracture of left tibia|Displaced bicondylar fracture of left tibia +C2861550|T037|HT|S82.142|ICD10CM|Displaced bicondylar fracture of left tibia|Displaced bicondylar fracture of left tibia +C2861551|T037|AB|S82.142A|ICD10CM|Displaced bicondylar fracture of left tibia, init|Displaced bicondylar fracture of left tibia, init +C2861551|T037|PT|S82.142A|ICD10CM|Displaced bicondylar fracture of left tibia, initial encounter for closed fracture|Displaced bicondylar fracture of left tibia, initial encounter for closed fracture +C2861552|T037|PT|S82.142B|ICD10CM|Displaced bicondylar fracture of left tibia, initial encounter for open fracture type I or II|Displaced bicondylar fracture of left tibia, initial encounter for open fracture type I or II +C2861552|T037|AB|S82.142B|ICD10CM|Displaced bicondylar fx left tibia, init for opn fx type I/2|Displaced bicondylar fx left tibia, init for opn fx type I/2 +C2861553|T037|AB|S82.142C|ICD10CM|Displaced bicondylar fx l tibia, init for opn fx type 3A/B/C|Displaced bicondylar fx l tibia, init for opn fx type 3A/B/C +C2861554|T037|AB|S82.142D|ICD10CM|Displ bicondylar fx l tibia, subs for clos fx w routn heal|Displ bicondylar fx l tibia, subs for clos fx w routn heal +C2861555|T037|AB|S82.142E|ICD10CM|Displ bicondylar fx l tibia, 7thE|Displ bicondylar fx l tibia, 7thE +C2861556|T037|AB|S82.142F|ICD10CM|Displ bicondylar fx l tibia, 7thF|Displ bicondylar fx l tibia, 7thF +C2861557|T037|AB|S82.142G|ICD10CM|Displ bicondylar fx l tibia, subs for clos fx w delay heal|Displ bicondylar fx l tibia, subs for clos fx w delay heal +C2861558|T037|AB|S82.142H|ICD10CM|Displ bicondylar fx l tibia, 7thH|Displ bicondylar fx l tibia, 7thH +C2861559|T037|AB|S82.142J|ICD10CM|Displ bicondylar fx l tibia, 7thJ|Displ bicondylar fx l tibia, 7thJ +C2861560|T037|PT|S82.142K|ICD10CM|Displaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with nonunion|Displaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with nonunion +C2861560|T037|AB|S82.142K|ICD10CM|Displaced bicondylar fx l tibia, subs for clos fx w nonunion|Displaced bicondylar fx l tibia, subs for clos fx w nonunion +C2861561|T037|AB|S82.142M|ICD10CM|Displ bicondylar fx l tibia, 7thM|Displ bicondylar fx l tibia, 7thM +C2861562|T037|AB|S82.142N|ICD10CM|Displ bicondylar fx l tibia, 7thN|Displ bicondylar fx l tibia, 7thN +C2861563|T037|PT|S82.142P|ICD10CM|Displaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with malunion|Displaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with malunion +C2861563|T037|AB|S82.142P|ICD10CM|Displaced bicondylar fx l tibia, subs for clos fx w malunion|Displaced bicondylar fx l tibia, subs for clos fx w malunion +C2861564|T037|AB|S82.142Q|ICD10CM|Displ bicondylar fx l tibia, 7thQ|Displ bicondylar fx l tibia, 7thQ +C2861565|T037|AB|S82.142R|ICD10CM|Displ bicondylar fx l tibia, 7thR|Displ bicondylar fx l tibia, 7thR +C2861566|T037|PT|S82.142S|ICD10CM|Displaced bicondylar fracture of left tibia, sequela|Displaced bicondylar fracture of left tibia, sequela +C2861566|T037|AB|S82.142S|ICD10CM|Displaced bicondylar fracture of left tibia, sequela|Displaced bicondylar fracture of left tibia, sequela +C2861567|T037|AB|S82.143|ICD10CM|Displaced bicondylar fracture of unspecified tibia|Displaced bicondylar fracture of unspecified tibia +C2861567|T037|HT|S82.143|ICD10CM|Displaced bicondylar fracture of unspecified tibia|Displaced bicondylar fracture of unspecified tibia +C2861568|T037|AB|S82.143A|ICD10CM|Displaced bicondylar fracture of unsp tibia, init|Displaced bicondylar fracture of unsp tibia, init +C2861568|T037|PT|S82.143A|ICD10CM|Displaced bicondylar fracture of unspecified tibia, initial encounter for closed fracture|Displaced bicondylar fracture of unspecified tibia, initial encounter for closed fracture +C2861569|T037|PT|S82.143B|ICD10CM|Displaced bicondylar fracture of unspecified tibia, initial encounter for open fracture type I or II|Displaced bicondylar fracture of unspecified tibia, initial encounter for open fracture type I or II +C2861569|T037|AB|S82.143B|ICD10CM|Displaced bicondylar fx unsp tibia, init for opn fx type I/2|Displaced bicondylar fx unsp tibia, init for opn fx type I/2 +C2861570|T037|AB|S82.143C|ICD10CM|Displ bicondylar fx unsp tibia, init for opn fx type 3A/B/C|Displ bicondylar fx unsp tibia, init for opn fx type 3A/B/C +C2861571|T037|AB|S82.143D|ICD10CM|Displ bicondylar fx unsp tibia, 7thD|Displ bicondylar fx unsp tibia, 7thD +C2861572|T037|AB|S82.143E|ICD10CM|Displ bicondylar fx unsp tibia, 7thE|Displ bicondylar fx unsp tibia, 7thE +C2861573|T037|AB|S82.143F|ICD10CM|Displ bicondylar fx unsp tibia, 7thF|Displ bicondylar fx unsp tibia, 7thF +C2861574|T037|AB|S82.143G|ICD10CM|Displ bicondylar fx unsp tibia, 7thG|Displ bicondylar fx unsp tibia, 7thG +C2861575|T037|AB|S82.143H|ICD10CM|Displ bicondylar fx unsp tibia, 7thH|Displ bicondylar fx unsp tibia, 7thH +C2861692|T037|AB|S82.143J|ICD10CM|Displ bicondylar fx unsp tibia, 7thJ|Displ bicondylar fx unsp tibia, 7thJ +C2861693|T037|AB|S82.143K|ICD10CM|Displ bicondylar fx unsp tibia, subs for clos fx w nonunion|Displ bicondylar fx unsp tibia, subs for clos fx w nonunion +C2861694|T037|AB|S82.143M|ICD10CM|Displ bicondylar fx unsp tibia, 7thM|Displ bicondylar fx unsp tibia, 7thM +C2861695|T037|AB|S82.143N|ICD10CM|Displ bicondylar fx unsp tibia, 7thN|Displ bicondylar fx unsp tibia, 7thN +C2861696|T037|AB|S82.143P|ICD10CM|Displ bicondylar fx unsp tibia, subs for clos fx w malunion|Displ bicondylar fx unsp tibia, subs for clos fx w malunion +C2861697|T037|AB|S82.143Q|ICD10CM|Displ bicondylar fx unsp tibia, 7thQ|Displ bicondylar fx unsp tibia, 7thQ +C2861698|T037|AB|S82.143R|ICD10CM|Displ bicondylar fx unsp tibia, 7thR|Displ bicondylar fx unsp tibia, 7thR +C2861699|T037|PT|S82.143S|ICD10CM|Displaced bicondylar fracture of unspecified tibia, sequela|Displaced bicondylar fracture of unspecified tibia, sequela +C2861699|T037|AB|S82.143S|ICD10CM|Displaced bicondylar fracture of unspecified tibia, sequela|Displaced bicondylar fracture of unspecified tibia, sequela +C2861700|T037|AB|S82.144|ICD10CM|Nondisplaced bicondylar fracture of right tibia|Nondisplaced bicondylar fracture of right tibia +C2861700|T037|HT|S82.144|ICD10CM|Nondisplaced bicondylar fracture of right tibia|Nondisplaced bicondylar fracture of right tibia +C2861701|T037|AB|S82.144A|ICD10CM|Nondisplaced bicondylar fracture of right tibia, init|Nondisplaced bicondylar fracture of right tibia, init +C2861701|T037|PT|S82.144A|ICD10CM|Nondisplaced bicondylar fracture of right tibia, initial encounter for closed fracture|Nondisplaced bicondylar fracture of right tibia, initial encounter for closed fracture +C2861702|T037|AB|S82.144B|ICD10CM|Nondisp bicondylar fx right tibia, init for opn fx type I/2|Nondisp bicondylar fx right tibia, init for opn fx type I/2 +C2861702|T037|PT|S82.144B|ICD10CM|Nondisplaced bicondylar fracture of right tibia, initial encounter for open fracture type I or II|Nondisplaced bicondylar fracture of right tibia, initial encounter for open fracture type I or II +C2861703|T037|AB|S82.144C|ICD10CM|Nondisp bicondylar fx r tibia, init for opn fx type 3A/B/C|Nondisp bicondylar fx r tibia, init for opn fx type 3A/B/C +C2861704|T037|AB|S82.144D|ICD10CM|Nondisp bicondylar fx r tibia, subs for clos fx w routn heal|Nondisp bicondylar fx r tibia, subs for clos fx w routn heal +C2861705|T037|AB|S82.144E|ICD10CM|Nondisp bicondylar fx r tibia, 7thE|Nondisp bicondylar fx r tibia, 7thE +C2861706|T037|AB|S82.144F|ICD10CM|Nondisp bicondylar fx r tibia, 7thF|Nondisp bicondylar fx r tibia, 7thF +C2861707|T037|AB|S82.144G|ICD10CM|Nondisp bicondylar fx r tibia, subs for clos fx w delay heal|Nondisp bicondylar fx r tibia, subs for clos fx w delay heal +C2861708|T037|AB|S82.144H|ICD10CM|Nondisp bicondylar fx r tibia, 7thH|Nondisp bicondylar fx r tibia, 7thH +C2861709|T037|AB|S82.144J|ICD10CM|Nondisp bicondylar fx r tibia, 7thJ|Nondisp bicondylar fx r tibia, 7thJ +C2861710|T037|AB|S82.144K|ICD10CM|Nondisp bicondylar fx r tibia, subs for clos fx w nonunion|Nondisp bicondylar fx r tibia, subs for clos fx w nonunion +C2861711|T037|AB|S82.144M|ICD10CM|Nondisp bicondylar fx r tibia, 7thM|Nondisp bicondylar fx r tibia, 7thM +C2861712|T037|AB|S82.144N|ICD10CM|Nondisp bicondylar fx r tibia, 7thN|Nondisp bicondylar fx r tibia, 7thN +C2861713|T037|AB|S82.144P|ICD10CM|Nondisp bicondylar fx r tibia, subs for clos fx w malunion|Nondisp bicondylar fx r tibia, subs for clos fx w malunion +C2861714|T037|AB|S82.144Q|ICD10CM|Nondisp bicondylar fx r tibia, 7thQ|Nondisp bicondylar fx r tibia, 7thQ +C2861715|T037|AB|S82.144R|ICD10CM|Nondisp bicondylar fx r tibia, 7thR|Nondisp bicondylar fx r tibia, 7thR +C2861716|T037|PT|S82.144S|ICD10CM|Nondisplaced bicondylar fracture of right tibia, sequela|Nondisplaced bicondylar fracture of right tibia, sequela +C2861716|T037|AB|S82.144S|ICD10CM|Nondisplaced bicondylar fracture of right tibia, sequela|Nondisplaced bicondylar fracture of right tibia, sequela +C2861717|T037|AB|S82.145|ICD10CM|Nondisplaced bicondylar fracture of left tibia|Nondisplaced bicondylar fracture of left tibia +C2861717|T037|HT|S82.145|ICD10CM|Nondisplaced bicondylar fracture of left tibia|Nondisplaced bicondylar fracture of left tibia +C2861718|T037|AB|S82.145A|ICD10CM|Nondisplaced bicondylar fracture of left tibia, init|Nondisplaced bicondylar fracture of left tibia, init +C2861718|T037|PT|S82.145A|ICD10CM|Nondisplaced bicondylar fracture of left tibia, initial encounter for closed fracture|Nondisplaced bicondylar fracture of left tibia, initial encounter for closed fracture +C2861719|T037|AB|S82.145B|ICD10CM|Nondisp bicondylar fx left tibia, init for opn fx type I/2|Nondisp bicondylar fx left tibia, init for opn fx type I/2 +C2861719|T037|PT|S82.145B|ICD10CM|Nondisplaced bicondylar fracture of left tibia, initial encounter for open fracture type I or II|Nondisplaced bicondylar fracture of left tibia, initial encounter for open fracture type I or II +C2861720|T037|AB|S82.145C|ICD10CM|Nondisp bicondylar fx l tibia, init for opn fx type 3A/B/C|Nondisp bicondylar fx l tibia, init for opn fx type 3A/B/C +C2861721|T037|AB|S82.145D|ICD10CM|Nondisp bicondylar fx l tibia, subs for clos fx w routn heal|Nondisp bicondylar fx l tibia, subs for clos fx w routn heal +C2861722|T037|AB|S82.145E|ICD10CM|Nondisp bicondylar fx l tibia, 7thE|Nondisp bicondylar fx l tibia, 7thE +C2861723|T037|AB|S82.145F|ICD10CM|Nondisp bicondylar fx l tibia, 7thF|Nondisp bicondylar fx l tibia, 7thF +C2861724|T037|AB|S82.145G|ICD10CM|Nondisp bicondylar fx l tibia, subs for clos fx w delay heal|Nondisp bicondylar fx l tibia, subs for clos fx w delay heal +C2861725|T037|AB|S82.145H|ICD10CM|Nondisp bicondylar fx l tibia, 7thH|Nondisp bicondylar fx l tibia, 7thH +C2861726|T037|AB|S82.145J|ICD10CM|Nondisp bicondylar fx l tibia, 7thJ|Nondisp bicondylar fx l tibia, 7thJ +C2861727|T037|AB|S82.145K|ICD10CM|Nondisp bicondylar fx l tibia, subs for clos fx w nonunion|Nondisp bicondylar fx l tibia, subs for clos fx w nonunion +C2861728|T037|AB|S82.145M|ICD10CM|Nondisp bicondylar fx l tibia, 7thM|Nondisp bicondylar fx l tibia, 7thM +C2861729|T037|AB|S82.145N|ICD10CM|Nondisp bicondylar fx l tibia, 7thN|Nondisp bicondylar fx l tibia, 7thN +C2861730|T037|AB|S82.145P|ICD10CM|Nondisp bicondylar fx l tibia, subs for clos fx w malunion|Nondisp bicondylar fx l tibia, subs for clos fx w malunion +C2861731|T037|AB|S82.145Q|ICD10CM|Nondisp bicondylar fx l tibia, 7thQ|Nondisp bicondylar fx l tibia, 7thQ +C2861732|T037|AB|S82.145R|ICD10CM|Nondisp bicondylar fx l tibia, 7thR|Nondisp bicondylar fx l tibia, 7thR +C2861733|T037|PT|S82.145S|ICD10CM|Nondisplaced bicondylar fracture of left tibia, sequela|Nondisplaced bicondylar fracture of left tibia, sequela +C2861733|T037|AB|S82.145S|ICD10CM|Nondisplaced bicondylar fracture of left tibia, sequela|Nondisplaced bicondylar fracture of left tibia, sequela +C2861734|T037|AB|S82.146|ICD10CM|Nondisplaced bicondylar fracture of unspecified tibia|Nondisplaced bicondylar fracture of unspecified tibia +C2861734|T037|HT|S82.146|ICD10CM|Nondisplaced bicondylar fracture of unspecified tibia|Nondisplaced bicondylar fracture of unspecified tibia +C2861735|T037|AB|S82.146A|ICD10CM|Nondisplaced bicondylar fracture of unsp tibia, init|Nondisplaced bicondylar fracture of unsp tibia, init +C2861735|T037|PT|S82.146A|ICD10CM|Nondisplaced bicondylar fracture of unspecified tibia, initial encounter for closed fracture|Nondisplaced bicondylar fracture of unspecified tibia, initial encounter for closed fracture +C2861736|T037|AB|S82.146B|ICD10CM|Nondisp bicondylar fx unsp tibia, init for opn fx type I/2|Nondisp bicondylar fx unsp tibia, init for opn fx type I/2 +C2861737|T037|AB|S82.146C|ICD10CM|Nondisp bicondylar fx unsp tibia, 7thC|Nondisp bicondylar fx unsp tibia, 7thC +C2861738|T037|AB|S82.146D|ICD10CM|Nondisp bicondylar fx unsp tibia, 7thD|Nondisp bicondylar fx unsp tibia, 7thD +C2861739|T037|AB|S82.146E|ICD10CM|Nondisp bicondylar fx unsp tibia, 7thE|Nondisp bicondylar fx unsp tibia, 7thE +C2861740|T037|AB|S82.146F|ICD10CM|Nondisp bicondylar fx unsp tibia, 7thF|Nondisp bicondylar fx unsp tibia, 7thF +C2861741|T037|AB|S82.146G|ICD10CM|Nondisp bicondylar fx unsp tibia, 7thG|Nondisp bicondylar fx unsp tibia, 7thG +C2861742|T037|AB|S82.146H|ICD10CM|Nondisp bicondylar fx unsp tibia, 7thH|Nondisp bicondylar fx unsp tibia, 7thH +C2861743|T037|AB|S82.146J|ICD10CM|Nondisp bicondylar fx unsp tibia, 7thJ|Nondisp bicondylar fx unsp tibia, 7thJ +C2861744|T037|AB|S82.146K|ICD10CM|Nondisp bicondylar fx unsp tibia, 7thK|Nondisp bicondylar fx unsp tibia, 7thK +C2861745|T037|AB|S82.146M|ICD10CM|Nondisp bicondylar fx unsp tibia, 7thM|Nondisp bicondylar fx unsp tibia, 7thM +C2861746|T037|AB|S82.146N|ICD10CM|Nondisp bicondylar fx unsp tibia, 7thN|Nondisp bicondylar fx unsp tibia, 7thN +C2861747|T037|AB|S82.146P|ICD10CM|Nondisp bicondylar fx unsp tibia, 7thP|Nondisp bicondylar fx unsp tibia, 7thP +C2861748|T037|AB|S82.146Q|ICD10CM|Nondisp bicondylar fx unsp tibia, 7thQ|Nondisp bicondylar fx unsp tibia, 7thQ +C2861749|T037|AB|S82.146R|ICD10CM|Nondisp bicondylar fx unsp tibia, 7thR|Nondisp bicondylar fx unsp tibia, 7thR +C2861750|T037|AB|S82.146S|ICD10CM|Nondisplaced bicondylar fracture of unsp tibia, sequela|Nondisplaced bicondylar fracture of unsp tibia, sequela +C2861750|T037|PT|S82.146S|ICD10CM|Nondisplaced bicondylar fracture of unspecified tibia, sequela|Nondisplaced bicondylar fracture of unspecified tibia, sequela +C1397790|T037|AB|S82.15|ICD10CM|Fracture of tibial tuberosity|Fracture of tibial tuberosity +C1397790|T037|HT|S82.15|ICD10CM|Fracture of tibial tuberosity|Fracture of tibial tuberosity +C2861752|T037|AB|S82.151|ICD10CM|Displaced fracture of right tibial tuberosity|Displaced fracture of right tibial tuberosity +C2861752|T037|HT|S82.151|ICD10CM|Displaced fracture of right tibial tuberosity|Displaced fracture of right tibial tuberosity +C2861753|T037|AB|S82.151A|ICD10CM|Disp fx of right tibial tuberosity, init for clos fx|Disp fx of right tibial tuberosity, init for clos fx +C2861753|T037|PT|S82.151A|ICD10CM|Displaced fracture of right tibial tuberosity, initial encounter for closed fracture|Displaced fracture of right tibial tuberosity, initial encounter for closed fracture +C2861754|T037|AB|S82.151B|ICD10CM|Disp fx of right tibial tuberosity, init for opn fx type I/2|Disp fx of right tibial tuberosity, init for opn fx type I/2 +C2861754|T037|PT|S82.151B|ICD10CM|Displaced fracture of right tibial tuberosity, initial encounter for open fracture type I or II|Displaced fracture of right tibial tuberosity, initial encounter for open fracture type I or II +C2861755|T037|AB|S82.151C|ICD10CM|Disp fx of r tibial tuberosity, init for opn fx type 3A/B/C|Disp fx of r tibial tuberosity, init for opn fx type 3A/B/C +C2861756|T037|AB|S82.151D|ICD10CM|Disp fx of r tibial tuberosity, 7thD|Disp fx of r tibial tuberosity, 7thD +C2861757|T037|AB|S82.151E|ICD10CM|Disp fx of r tibial tuberosity, 7thE|Disp fx of r tibial tuberosity, 7thE +C2861758|T037|AB|S82.151F|ICD10CM|Disp fx of r tibial tuberosity, 7thF|Disp fx of r tibial tuberosity, 7thF +C2861759|T037|AB|S82.151G|ICD10CM|Disp fx of r tibial tuberosity, 7thG|Disp fx of r tibial tuberosity, 7thG +C2861760|T037|AB|S82.151H|ICD10CM|Disp fx of r tibial tuberosity, 7thH|Disp fx of r tibial tuberosity, 7thH +C2861761|T037|AB|S82.151J|ICD10CM|Disp fx of r tibial tuberosity, 7thJ|Disp fx of r tibial tuberosity, 7thJ +C2861762|T037|AB|S82.151K|ICD10CM|Disp fx of r tibial tuberosity, subs for clos fx w nonunion|Disp fx of r tibial tuberosity, subs for clos fx w nonunion +C2861763|T037|AB|S82.151M|ICD10CM|Disp fx of r tibial tuberosity, 7thM|Disp fx of r tibial tuberosity, 7thM +C2861764|T037|AB|S82.151N|ICD10CM|Disp fx of r tibial tuberosity, 7thN|Disp fx of r tibial tuberosity, 7thN +C2861765|T037|AB|S82.151P|ICD10CM|Disp fx of r tibial tuberosity, subs for clos fx w malunion|Disp fx of r tibial tuberosity, subs for clos fx w malunion +C2861766|T037|AB|S82.151Q|ICD10CM|Disp fx of r tibial tuberosity, 7thQ|Disp fx of r tibial tuberosity, 7thQ +C2861767|T037|AB|S82.151R|ICD10CM|Disp fx of r tibial tuberosity, 7thR|Disp fx of r tibial tuberosity, 7thR +C2861768|T037|PT|S82.151S|ICD10CM|Displaced fracture of right tibial tuberosity, sequela|Displaced fracture of right tibial tuberosity, sequela +C2861768|T037|AB|S82.151S|ICD10CM|Displaced fracture of right tibial tuberosity, sequela|Displaced fracture of right tibial tuberosity, sequela +C2861769|T037|AB|S82.152|ICD10CM|Displaced fracture of left tibial tuberosity|Displaced fracture of left tibial tuberosity +C2861769|T037|HT|S82.152|ICD10CM|Displaced fracture of left tibial tuberosity|Displaced fracture of left tibial tuberosity +C2861770|T037|AB|S82.152A|ICD10CM|Disp fx of left tibial tuberosity, init for clos fx|Disp fx of left tibial tuberosity, init for clos fx +C2861770|T037|PT|S82.152A|ICD10CM|Displaced fracture of left tibial tuberosity, initial encounter for closed fracture|Displaced fracture of left tibial tuberosity, initial encounter for closed fracture +C2861771|T037|AB|S82.152B|ICD10CM|Disp fx of left tibial tuberosity, init for opn fx type I/2|Disp fx of left tibial tuberosity, init for opn fx type I/2 +C2861771|T037|PT|S82.152B|ICD10CM|Displaced fracture of left tibial tuberosity, initial encounter for open fracture type I or II|Displaced fracture of left tibial tuberosity, initial encounter for open fracture type I or II +C2861772|T037|AB|S82.152C|ICD10CM|Disp fx of l tibial tuberosity, init for opn fx type 3A/B/C|Disp fx of l tibial tuberosity, init for opn fx type 3A/B/C +C2861773|T037|AB|S82.152D|ICD10CM|Disp fx of l tibial tuberosity, 7thD|Disp fx of l tibial tuberosity, 7thD +C2861774|T037|AB|S82.152E|ICD10CM|Disp fx of l tibial tuberosity, 7thE|Disp fx of l tibial tuberosity, 7thE +C2861775|T037|AB|S82.152F|ICD10CM|Disp fx of l tibial tuberosity, 7thF|Disp fx of l tibial tuberosity, 7thF +C2861776|T037|AB|S82.152G|ICD10CM|Disp fx of l tibial tuberosity, 7thG|Disp fx of l tibial tuberosity, 7thG +C2861777|T037|AB|S82.152H|ICD10CM|Disp fx of l tibial tuberosity, 7thH|Disp fx of l tibial tuberosity, 7thH +C2861778|T037|AB|S82.152J|ICD10CM|Disp fx of l tibial tuberosity, 7thJ|Disp fx of l tibial tuberosity, 7thJ +C2861779|T037|AB|S82.152K|ICD10CM|Disp fx of l tibial tuberosity, subs for clos fx w nonunion|Disp fx of l tibial tuberosity, subs for clos fx w nonunion +C2861779|T037|PT|S82.152K|ICD10CM|Displaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with nonunion|Displaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with nonunion +C2861780|T037|AB|S82.152M|ICD10CM|Disp fx of l tibial tuberosity, 7thM|Disp fx of l tibial tuberosity, 7thM +C2861781|T037|AB|S82.152N|ICD10CM|Disp fx of l tibial tuberosity, 7thN|Disp fx of l tibial tuberosity, 7thN +C2861782|T037|AB|S82.152P|ICD10CM|Disp fx of l tibial tuberosity, subs for clos fx w malunion|Disp fx of l tibial tuberosity, subs for clos fx w malunion +C2861782|T037|PT|S82.152P|ICD10CM|Displaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with malunion|Displaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with malunion +C2861783|T037|AB|S82.152Q|ICD10CM|Disp fx of l tibial tuberosity, 7thQ|Disp fx of l tibial tuberosity, 7thQ +C2861784|T037|AB|S82.152R|ICD10CM|Disp fx of l tibial tuberosity, 7thR|Disp fx of l tibial tuberosity, 7thR +C2861785|T037|PT|S82.152S|ICD10CM|Displaced fracture of left tibial tuberosity, sequela|Displaced fracture of left tibial tuberosity, sequela +C2861785|T037|AB|S82.152S|ICD10CM|Displaced fracture of left tibial tuberosity, sequela|Displaced fracture of left tibial tuberosity, sequela +C2861786|T037|AB|S82.153|ICD10CM|Displaced fracture of unspecified tibial tuberosity|Displaced fracture of unspecified tibial tuberosity +C2861786|T037|HT|S82.153|ICD10CM|Displaced fracture of unspecified tibial tuberosity|Displaced fracture of unspecified tibial tuberosity +C2861787|T037|AB|S82.153A|ICD10CM|Disp fx of unsp tibial tuberosity, init for clos fx|Disp fx of unsp tibial tuberosity, init for clos fx +C2861787|T037|PT|S82.153A|ICD10CM|Displaced fracture of unspecified tibial tuberosity, initial encounter for closed fracture|Displaced fracture of unspecified tibial tuberosity, initial encounter for closed fracture +C2861788|T037|AB|S82.153B|ICD10CM|Disp fx of unsp tibial tuberosity, init for opn fx type I/2|Disp fx of unsp tibial tuberosity, init for opn fx type I/2 +C2861789|T037|AB|S82.153C|ICD10CM|Disp fx of unsp tibial tuberosity, 7thC|Disp fx of unsp tibial tuberosity, 7thC +C2861790|T037|AB|S82.153D|ICD10CM|Disp fx of unsp tibial tuberosity, 7thD|Disp fx of unsp tibial tuberosity, 7thD +C2861791|T037|AB|S82.153E|ICD10CM|Disp fx of unsp tibial tuberosity, 7thE|Disp fx of unsp tibial tuberosity, 7thE +C2861792|T037|AB|S82.153F|ICD10CM|Disp fx of unsp tibial tuberosity, 7thF|Disp fx of unsp tibial tuberosity, 7thF +C2861793|T037|AB|S82.153G|ICD10CM|Disp fx of unsp tibial tuberosity, 7thG|Disp fx of unsp tibial tuberosity, 7thG +C2861794|T037|AB|S82.153H|ICD10CM|Disp fx of unsp tibial tuberosity, 7thH|Disp fx of unsp tibial tuberosity, 7thH +C2861795|T037|AB|S82.153J|ICD10CM|Disp fx of unsp tibial tuberosity, 7thJ|Disp fx of unsp tibial tuberosity, 7thJ +C2861796|T037|AB|S82.153K|ICD10CM|Disp fx of unsp tibial tuberosity, 7thK|Disp fx of unsp tibial tuberosity, 7thK +C2861797|T037|AB|S82.153M|ICD10CM|Disp fx of unsp tibial tuberosity, 7thM|Disp fx of unsp tibial tuberosity, 7thM +C2861798|T037|AB|S82.153N|ICD10CM|Disp fx of unsp tibial tuberosity, 7thN|Disp fx of unsp tibial tuberosity, 7thN +C2861799|T037|AB|S82.153P|ICD10CM|Disp fx of unsp tibial tuberosity, 7thP|Disp fx of unsp tibial tuberosity, 7thP +C2861800|T037|AB|S82.153Q|ICD10CM|Disp fx of unsp tibial tuberosity, 7thQ|Disp fx of unsp tibial tuberosity, 7thQ +C2861801|T037|AB|S82.153R|ICD10CM|Disp fx of unsp tibial tuberosity, 7thR|Disp fx of unsp tibial tuberosity, 7thR +C2861802|T037|AB|S82.153S|ICD10CM|Displaced fracture of unspecified tibial tuberosity, sequela|Displaced fracture of unspecified tibial tuberosity, sequela +C2861802|T037|PT|S82.153S|ICD10CM|Displaced fracture of unspecified tibial tuberosity, sequela|Displaced fracture of unspecified tibial tuberosity, sequela +C2861803|T037|AB|S82.154|ICD10CM|Nondisplaced fracture of right tibial tuberosity|Nondisplaced fracture of right tibial tuberosity +C2861803|T037|HT|S82.154|ICD10CM|Nondisplaced fracture of right tibial tuberosity|Nondisplaced fracture of right tibial tuberosity +C2861804|T037|AB|S82.154A|ICD10CM|Nondisp fx of right tibial tuberosity, init for clos fx|Nondisp fx of right tibial tuberosity, init for clos fx +C2861804|T037|PT|S82.154A|ICD10CM|Nondisplaced fracture of right tibial tuberosity, initial encounter for closed fracture|Nondisplaced fracture of right tibial tuberosity, initial encounter for closed fracture +C2861805|T037|AB|S82.154B|ICD10CM|Nondisp fx of r tibial tuberosity, init for opn fx type I/2|Nondisp fx of r tibial tuberosity, init for opn fx type I/2 +C2861805|T037|PT|S82.154B|ICD10CM|Nondisplaced fracture of right tibial tuberosity, initial encounter for open fracture type I or II|Nondisplaced fracture of right tibial tuberosity, initial encounter for open fracture type I or II +C2861806|T037|AB|S82.154C|ICD10CM|Nondisp fx of r tibial tuberosity, 7thC|Nondisp fx of r tibial tuberosity, 7thC +C2861807|T037|AB|S82.154D|ICD10CM|Nondisp fx of r tibial tuberosity, 7thD|Nondisp fx of r tibial tuberosity, 7thD +C2861808|T037|AB|S82.154E|ICD10CM|Nondisp fx of r tibial tuberosity, 7thE|Nondisp fx of r tibial tuberosity, 7thE +C2861809|T037|AB|S82.154F|ICD10CM|Nondisp fx of r tibial tuberosity, 7thF|Nondisp fx of r tibial tuberosity, 7thF +C2861810|T037|AB|S82.154G|ICD10CM|Nondisp fx of r tibial tuberosity, 7thG|Nondisp fx of r tibial tuberosity, 7thG +C2861811|T037|AB|S82.154H|ICD10CM|Nondisp fx of r tibial tuberosity, 7thH|Nondisp fx of r tibial tuberosity, 7thH +C2861812|T037|AB|S82.154J|ICD10CM|Nondisp fx of r tibial tuberosity, 7thJ|Nondisp fx of r tibial tuberosity, 7thJ +C2861813|T037|AB|S82.154K|ICD10CM|Nondisp fx of r tibial tuberosity, 7thK|Nondisp fx of r tibial tuberosity, 7thK +C2861814|T037|AB|S82.154M|ICD10CM|Nondisp fx of r tibial tuberosity, 7thM|Nondisp fx of r tibial tuberosity, 7thM +C2861815|T037|AB|S82.154N|ICD10CM|Nondisp fx of r tibial tuberosity, 7thN|Nondisp fx of r tibial tuberosity, 7thN +C2861816|T037|AB|S82.154P|ICD10CM|Nondisp fx of r tibial tuberosity, 7thP|Nondisp fx of r tibial tuberosity, 7thP +C2861817|T037|AB|S82.154Q|ICD10CM|Nondisp fx of r tibial tuberosity, 7thQ|Nondisp fx of r tibial tuberosity, 7thQ +C2861818|T037|AB|S82.154R|ICD10CM|Nondisp fx of r tibial tuberosity, 7thR|Nondisp fx of r tibial tuberosity, 7thR +C2861819|T037|PT|S82.154S|ICD10CM|Nondisplaced fracture of right tibial tuberosity, sequela|Nondisplaced fracture of right tibial tuberosity, sequela +C2861819|T037|AB|S82.154S|ICD10CM|Nondisplaced fracture of right tibial tuberosity, sequela|Nondisplaced fracture of right tibial tuberosity, sequela +C2861820|T037|AB|S82.155|ICD10CM|Nondisplaced fracture of left tibial tuberosity|Nondisplaced fracture of left tibial tuberosity +C2861820|T037|HT|S82.155|ICD10CM|Nondisplaced fracture of left tibial tuberosity|Nondisplaced fracture of left tibial tuberosity +C2861821|T037|AB|S82.155A|ICD10CM|Nondisp fx of left tibial tuberosity, init for clos fx|Nondisp fx of left tibial tuberosity, init for clos fx +C2861821|T037|PT|S82.155A|ICD10CM|Nondisplaced fracture of left tibial tuberosity, initial encounter for closed fracture|Nondisplaced fracture of left tibial tuberosity, initial encounter for closed fracture +C2861822|T037|AB|S82.155B|ICD10CM|Nondisp fx of l tibial tuberosity, init for opn fx type I/2|Nondisp fx of l tibial tuberosity, init for opn fx type I/2 +C2861822|T037|PT|S82.155B|ICD10CM|Nondisplaced fracture of left tibial tuberosity, initial encounter for open fracture type I or II|Nondisplaced fracture of left tibial tuberosity, initial encounter for open fracture type I or II +C2861823|T037|AB|S82.155C|ICD10CM|Nondisp fx of l tibial tuberosity, 7thC|Nondisp fx of l tibial tuberosity, 7thC +C2861824|T037|AB|S82.155D|ICD10CM|Nondisp fx of l tibial tuberosity, 7thD|Nondisp fx of l tibial tuberosity, 7thD +C2861825|T037|AB|S82.155E|ICD10CM|Nondisp fx of l tibial tuberosity, 7thE|Nondisp fx of l tibial tuberosity, 7thE +C2861826|T037|AB|S82.155F|ICD10CM|Nondisp fx of l tibial tuberosity, 7thF|Nondisp fx of l tibial tuberosity, 7thF +C2861827|T037|AB|S82.155G|ICD10CM|Nondisp fx of l tibial tuberosity, 7thG|Nondisp fx of l tibial tuberosity, 7thG +C2861828|T037|AB|S82.155H|ICD10CM|Nondisp fx of l tibial tuberosity, 7thH|Nondisp fx of l tibial tuberosity, 7thH +C2861829|T037|AB|S82.155J|ICD10CM|Nondisp fx of l tibial tuberosity, 7thJ|Nondisp fx of l tibial tuberosity, 7thJ +C2861830|T037|AB|S82.155K|ICD10CM|Nondisp fx of l tibial tuberosity, 7thK|Nondisp fx of l tibial tuberosity, 7thK +C2861831|T037|AB|S82.155M|ICD10CM|Nondisp fx of l tibial tuberosity, 7thM|Nondisp fx of l tibial tuberosity, 7thM +C2861832|T037|AB|S82.155N|ICD10CM|Nondisp fx of l tibial tuberosity, 7thN|Nondisp fx of l tibial tuberosity, 7thN +C2861833|T037|AB|S82.155P|ICD10CM|Nondisp fx of l tibial tuberosity, 7thP|Nondisp fx of l tibial tuberosity, 7thP +C2861834|T037|AB|S82.155Q|ICD10CM|Nondisp fx of l tibial tuberosity, 7thQ|Nondisp fx of l tibial tuberosity, 7thQ +C2861835|T037|AB|S82.155R|ICD10CM|Nondisp fx of l tibial tuberosity, 7thR|Nondisp fx of l tibial tuberosity, 7thR +C2861836|T037|PT|S82.155S|ICD10CM|Nondisplaced fracture of left tibial tuberosity, sequela|Nondisplaced fracture of left tibial tuberosity, sequela +C2861836|T037|AB|S82.155S|ICD10CM|Nondisplaced fracture of left tibial tuberosity, sequela|Nondisplaced fracture of left tibial tuberosity, sequela +C2861837|T037|AB|S82.156|ICD10CM|Nondisplaced fracture of unspecified tibial tuberosity|Nondisplaced fracture of unspecified tibial tuberosity +C2861837|T037|HT|S82.156|ICD10CM|Nondisplaced fracture of unspecified tibial tuberosity|Nondisplaced fracture of unspecified tibial tuberosity +C2861838|T037|AB|S82.156A|ICD10CM|Nondisp fx of unsp tibial tuberosity, init for clos fx|Nondisp fx of unsp tibial tuberosity, init for clos fx +C2861838|T037|PT|S82.156A|ICD10CM|Nondisplaced fracture of unspecified tibial tuberosity, initial encounter for closed fracture|Nondisplaced fracture of unspecified tibial tuberosity, initial encounter for closed fracture +C2861839|T037|AB|S82.156B|ICD10CM|Nondisp fx of unsp tibial tuberosity, 7thB|Nondisp fx of unsp tibial tuberosity, 7thB +C2861840|T037|AB|S82.156C|ICD10CM|Nondisp fx of unsp tibial tuberosity, 7thC|Nondisp fx of unsp tibial tuberosity, 7thC +C2861841|T037|AB|S82.156D|ICD10CM|Nondisp fx of unsp tibial tuberosity, 7thD|Nondisp fx of unsp tibial tuberosity, 7thD +C2861842|T037|AB|S82.156E|ICD10CM|Nondisp fx of unsp tibial tuberosity, 7thE|Nondisp fx of unsp tibial tuberosity, 7thE +C2861843|T037|AB|S82.156F|ICD10CM|Nondisp fx of unsp tibial tuberosity, 7thF|Nondisp fx of unsp tibial tuberosity, 7thF +C2861844|T037|AB|S82.156G|ICD10CM|Nondisp fx of unsp tibial tuberosity, 7thG|Nondisp fx of unsp tibial tuberosity, 7thG +C2861845|T037|AB|S82.156H|ICD10CM|Nondisp fx of unsp tibial tuberosity, 7thH|Nondisp fx of unsp tibial tuberosity, 7thH +C2861846|T037|AB|S82.156J|ICD10CM|Nondisp fx of unsp tibial tuberosity, 7thJ|Nondisp fx of unsp tibial tuberosity, 7thJ +C2861847|T037|AB|S82.156K|ICD10CM|Nondisp fx of unsp tibial tuberosity, 7thK|Nondisp fx of unsp tibial tuberosity, 7thK +C2861848|T037|AB|S82.156M|ICD10CM|Nondisp fx of unsp tibial tuberosity, 7thM|Nondisp fx of unsp tibial tuberosity, 7thM +C2861849|T037|AB|S82.156N|ICD10CM|Nondisp fx of unsp tibial tuberosity, 7thN|Nondisp fx of unsp tibial tuberosity, 7thN +C2861850|T037|AB|S82.156P|ICD10CM|Nondisp fx of unsp tibial tuberosity, 7thP|Nondisp fx of unsp tibial tuberosity, 7thP +C2861851|T037|AB|S82.156Q|ICD10CM|Nondisp fx of unsp tibial tuberosity, 7thQ|Nondisp fx of unsp tibial tuberosity, 7thQ +C2861852|T037|AB|S82.156R|ICD10CM|Nondisp fx of unsp tibial tuberosity, 7thR|Nondisp fx of unsp tibial tuberosity, 7thR +C2861853|T037|AB|S82.156S|ICD10CM|Nondisp fx of unspecified tibial tuberosity, sequela|Nondisp fx of unspecified tibial tuberosity, sequela +C2861853|T037|PT|S82.156S|ICD10CM|Nondisplaced fracture of unspecified tibial tuberosity, sequela|Nondisplaced fracture of unspecified tibial tuberosity, sequela +C2861854|T037|AB|S82.16|ICD10CM|Torus fracture of upper end of tibia|Torus fracture of upper end of tibia +C2861854|T037|HT|S82.16|ICD10CM|Torus fracture of upper end of tibia|Torus fracture of upper end of tibia +C2861855|T037|AB|S82.161|ICD10CM|Torus fracture of upper end of right tibia|Torus fracture of upper end of right tibia +C2861855|T037|HT|S82.161|ICD10CM|Torus fracture of upper end of right tibia|Torus fracture of upper end of right tibia +C2861856|T037|AB|S82.161A|ICD10CM|Torus fracture of upper end of right tibia, init for clos fx|Torus fracture of upper end of right tibia, init for clos fx +C2861856|T037|PT|S82.161A|ICD10CM|Torus fracture of upper end of right tibia, initial encounter for closed fracture|Torus fracture of upper end of right tibia, initial encounter for closed fracture +C2861857|T037|PT|S82.161D|ICD10CM|Torus fracture of upper end of right tibia, subsequent encounter for fracture with routine healing|Torus fracture of upper end of right tibia, subsequent encounter for fracture with routine healing +C2861857|T037|AB|S82.161D|ICD10CM|Torus fx upper end of right tibia, subs for fx w routn heal|Torus fx upper end of right tibia, subs for fx w routn heal +C2861858|T037|PT|S82.161G|ICD10CM|Torus fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing|Torus fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing +C2861858|T037|AB|S82.161G|ICD10CM|Torus fx upper end of right tibia, subs for fx w delay heal|Torus fx upper end of right tibia, subs for fx w delay heal +C2861859|T037|PT|S82.161K|ICD10CM|Torus fracture of upper end of right tibia, subsequent encounter for fracture with nonunion|Torus fracture of upper end of right tibia, subsequent encounter for fracture with nonunion +C2861859|T037|AB|S82.161K|ICD10CM|Torus fx upper end of right tibia, subs for fx w nonunion|Torus fx upper end of right tibia, subs for fx w nonunion +C2861860|T037|PT|S82.161P|ICD10CM|Torus fracture of upper end of right tibia, subsequent encounter for fracture with malunion|Torus fracture of upper end of right tibia, subsequent encounter for fracture with malunion +C2861860|T037|AB|S82.161P|ICD10CM|Torus fx upper end of right tibia, subs for fx w malunion|Torus fx upper end of right tibia, subs for fx w malunion +C2861861|T037|PT|S82.161S|ICD10CM|Torus fracture of upper end of right tibia, sequela|Torus fracture of upper end of right tibia, sequela +C2861861|T037|AB|S82.161S|ICD10CM|Torus fracture of upper end of right tibia, sequela|Torus fracture of upper end of right tibia, sequela +C2861862|T037|AB|S82.162|ICD10CM|Torus fracture of upper end of left tibia|Torus fracture of upper end of left tibia +C2861862|T037|HT|S82.162|ICD10CM|Torus fracture of upper end of left tibia|Torus fracture of upper end of left tibia +C2861863|T037|AB|S82.162A|ICD10CM|Torus fracture of upper end of left tibia, init for clos fx|Torus fracture of upper end of left tibia, init for clos fx +C2861863|T037|PT|S82.162A|ICD10CM|Torus fracture of upper end of left tibia, initial encounter for closed fracture|Torus fracture of upper end of left tibia, initial encounter for closed fracture +C2861864|T037|PT|S82.162D|ICD10CM|Torus fracture of upper end of left tibia, subsequent encounter for fracture with routine healing|Torus fracture of upper end of left tibia, subsequent encounter for fracture with routine healing +C2861864|T037|AB|S82.162D|ICD10CM|Torus fx upper end of left tibia, subs for fx w routn heal|Torus fx upper end of left tibia, subs for fx w routn heal +C2861865|T037|PT|S82.162G|ICD10CM|Torus fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing|Torus fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing +C2861865|T037|AB|S82.162G|ICD10CM|Torus fx upper end of left tibia, subs for fx w delay heal|Torus fx upper end of left tibia, subs for fx w delay heal +C2861866|T037|PT|S82.162K|ICD10CM|Torus fracture of upper end of left tibia, subsequent encounter for fracture with nonunion|Torus fracture of upper end of left tibia, subsequent encounter for fracture with nonunion +C2861866|T037|AB|S82.162K|ICD10CM|Torus fx upper end of left tibia, subs for fx w nonunion|Torus fx upper end of left tibia, subs for fx w nonunion +C2861867|T037|PT|S82.162P|ICD10CM|Torus fracture of upper end of left tibia, subsequent encounter for fracture with malunion|Torus fracture of upper end of left tibia, subsequent encounter for fracture with malunion +C2861867|T037|AB|S82.162P|ICD10CM|Torus fx upper end of left tibia, subs for fx w malunion|Torus fx upper end of left tibia, subs for fx w malunion +C2861868|T037|PT|S82.162S|ICD10CM|Torus fracture of upper end of left tibia, sequela|Torus fracture of upper end of left tibia, sequela +C2861868|T037|AB|S82.162S|ICD10CM|Torus fracture of upper end of left tibia, sequela|Torus fracture of upper end of left tibia, sequela +C2861869|T037|AB|S82.169|ICD10CM|Torus fracture of upper end of unspecified tibia|Torus fracture of upper end of unspecified tibia +C2861869|T037|HT|S82.169|ICD10CM|Torus fracture of upper end of unspecified tibia|Torus fracture of upper end of unspecified tibia +C2861870|T037|AB|S82.169A|ICD10CM|Torus fracture of upper end of unsp tibia, init for clos fx|Torus fracture of upper end of unsp tibia, init for clos fx +C2861870|T037|PT|S82.169A|ICD10CM|Torus fracture of upper end of unspecified tibia, initial encounter for closed fracture|Torus fracture of upper end of unspecified tibia, initial encounter for closed fracture +C2861871|T037|AB|S82.169D|ICD10CM|Torus fx upper end of unsp tibia, subs for fx w routn heal|Torus fx upper end of unsp tibia, subs for fx w routn heal +C2861872|T037|AB|S82.169G|ICD10CM|Torus fx upper end of unsp tibia, subs for fx w delay heal|Torus fx upper end of unsp tibia, subs for fx w delay heal +C2861873|T037|PT|S82.169K|ICD10CM|Torus fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion|Torus fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion +C2861873|T037|AB|S82.169K|ICD10CM|Torus fx upper end of unsp tibia, subs for fx w nonunion|Torus fx upper end of unsp tibia, subs for fx w nonunion +C2861874|T037|PT|S82.169P|ICD10CM|Torus fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion|Torus fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion +C2861874|T037|AB|S82.169P|ICD10CM|Torus fx upper end of unsp tibia, subs for fx w malunion|Torus fx upper end of unsp tibia, subs for fx w malunion +C2861875|T037|PT|S82.169S|ICD10CM|Torus fracture of upper end of unspecified tibia, sequela|Torus fracture of upper end of unspecified tibia, sequela +C2861875|T037|AB|S82.169S|ICD10CM|Torus fracture of upper end of unspecified tibia, sequela|Torus fracture of upper end of unspecified tibia, sequela +C0840700|T037|HT|S82.19|ICD10CM|Other fracture of upper end of tibia|Other fracture of upper end of tibia +C0840700|T037|AB|S82.19|ICD10CM|Other fracture of upper end of tibia|Other fracture of upper end of tibia +C2861876|T037|AB|S82.191|ICD10CM|Other fracture of upper end of right tibia|Other fracture of upper end of right tibia +C2861876|T037|HT|S82.191|ICD10CM|Other fracture of upper end of right tibia|Other fracture of upper end of right tibia +C2861877|T037|AB|S82.191A|ICD10CM|Oth fracture of upper end of right tibia, init for clos fx|Oth fracture of upper end of right tibia, init for clos fx +C2861877|T037|PT|S82.191A|ICD10CM|Other fracture of upper end of right tibia, initial encounter for closed fracture|Other fracture of upper end of right tibia, initial encounter for closed fracture +C2861878|T037|AB|S82.191B|ICD10CM|Oth fx upper end of right tibia, init for opn fx type I/2|Oth fx upper end of right tibia, init for opn fx type I/2 +C2861878|T037|PT|S82.191B|ICD10CM|Other fracture of upper end of right tibia, initial encounter for open fracture type I or II|Other fracture of upper end of right tibia, initial encounter for open fracture type I or II +C2861879|T037|AB|S82.191C|ICD10CM|Oth fx upper end of right tibia, init for opn fx type 3A/B/C|Oth fx upper end of right tibia, init for opn fx type 3A/B/C +C2861880|T037|AB|S82.191D|ICD10CM|Oth fx upper end of r tibia, subs for clos fx w routn heal|Oth fx upper end of r tibia, subs for clos fx w routn heal +C2861881|T037|AB|S82.191E|ICD10CM|Oth fx upr end r tibia, 7thE|Oth fx upr end r tibia, 7thE +C2861882|T037|AB|S82.191F|ICD10CM|Oth fx upr end r tibia, 7thF|Oth fx upr end r tibia, 7thF +C2861883|T037|AB|S82.191G|ICD10CM|Oth fx upper end of r tibia, subs for clos fx w delay heal|Oth fx upper end of r tibia, subs for clos fx w delay heal +C2861884|T037|AB|S82.191H|ICD10CM|Oth fx upr end r tibia, 7thH|Oth fx upr end r tibia, 7thH +C2861885|T037|AB|S82.191J|ICD10CM|Oth fx upr end r tibia, 7thJ|Oth fx upr end r tibia, 7thJ +C2861886|T037|AB|S82.191K|ICD10CM|Oth fx upper end of right tibia, subs for clos fx w nonunion|Oth fx upper end of right tibia, subs for clos fx w nonunion +C2861886|T037|PT|S82.191K|ICD10CM|Other fracture of upper end of right tibia, subsequent encounter for closed fracture with nonunion|Other fracture of upper end of right tibia, subsequent encounter for closed fracture with nonunion +C2861887|T037|AB|S82.191M|ICD10CM|Oth fx upr end r tibia, subs for opn fx type I/2 w nonunion|Oth fx upr end r tibia, subs for opn fx type I/2 w nonunion +C2861888|T037|AB|S82.191N|ICD10CM|Oth fx upr end r tibia, 7thN|Oth fx upr end r tibia, 7thN +C2861889|T037|AB|S82.191P|ICD10CM|Oth fx upper end of right tibia, subs for clos fx w malunion|Oth fx upper end of right tibia, subs for clos fx w malunion +C2861889|T037|PT|S82.191P|ICD10CM|Other fracture of upper end of right tibia, subsequent encounter for closed fracture with malunion|Other fracture of upper end of right tibia, subsequent encounter for closed fracture with malunion +C2861890|T037|AB|S82.191Q|ICD10CM|Oth fx upr end r tibia, subs for opn fx type I/2 w malunion|Oth fx upr end r tibia, subs for opn fx type I/2 w malunion +C2861891|T037|AB|S82.191R|ICD10CM|Oth fx upr end r tibia, 7thR|Oth fx upr end r tibia, 7thR +C2861892|T037|PT|S82.191S|ICD10CM|Other fracture of upper end of right tibia, sequela|Other fracture of upper end of right tibia, sequela +C2861892|T037|AB|S82.191S|ICD10CM|Other fracture of upper end of right tibia, sequela|Other fracture of upper end of right tibia, sequela +C2861893|T037|AB|S82.192|ICD10CM|Other fracture of upper end of left tibia|Other fracture of upper end of left tibia +C2861893|T037|HT|S82.192|ICD10CM|Other fracture of upper end of left tibia|Other fracture of upper end of left tibia +C2861894|T037|AB|S82.192A|ICD10CM|Oth fracture of upper end of left tibia, init for clos fx|Oth fracture of upper end of left tibia, init for clos fx +C2861894|T037|PT|S82.192A|ICD10CM|Other fracture of upper end of left tibia, initial encounter for closed fracture|Other fracture of upper end of left tibia, initial encounter for closed fracture +C2861895|T037|AB|S82.192B|ICD10CM|Oth fx upper end of left tibia, init for opn fx type I/2|Oth fx upper end of left tibia, init for opn fx type I/2 +C2861895|T037|PT|S82.192B|ICD10CM|Other fracture of upper end of left tibia, initial encounter for open fracture type I or II|Other fracture of upper end of left tibia, initial encounter for open fracture type I or II +C2861896|T037|AB|S82.192C|ICD10CM|Oth fx upper end of left tibia, init for opn fx type 3A/B/C|Oth fx upper end of left tibia, init for opn fx type 3A/B/C +C2861897|T037|AB|S82.192D|ICD10CM|Oth fx upper end of l tibia, subs for clos fx w routn heal|Oth fx upper end of l tibia, subs for clos fx w routn heal +C2861898|T037|AB|S82.192E|ICD10CM|Oth fx upr end l tibia, 7thE|Oth fx upr end l tibia, 7thE +C2861899|T037|AB|S82.192F|ICD10CM|Oth fx upr end l tibia, 7thF|Oth fx upr end l tibia, 7thF +C2861900|T037|AB|S82.192G|ICD10CM|Oth fx upper end of l tibia, subs for clos fx w delay heal|Oth fx upper end of l tibia, subs for clos fx w delay heal +C2861901|T037|AB|S82.192H|ICD10CM|Oth fx upr end l tibia, 7thH|Oth fx upr end l tibia, 7thH +C2861902|T037|AB|S82.192J|ICD10CM|Oth fx upr end l tibia, 7thJ|Oth fx upr end l tibia, 7thJ +C2861903|T037|AB|S82.192K|ICD10CM|Oth fx upper end of left tibia, subs for clos fx w nonunion|Oth fx upper end of left tibia, subs for clos fx w nonunion +C2861903|T037|PT|S82.192K|ICD10CM|Other fracture of upper end of left tibia, subsequent encounter for closed fracture with nonunion|Other fracture of upper end of left tibia, subsequent encounter for closed fracture with nonunion +C2861904|T037|AB|S82.192M|ICD10CM|Oth fx upr end l tibia, subs for opn fx type I/2 w nonunion|Oth fx upr end l tibia, subs for opn fx type I/2 w nonunion +C2861905|T037|AB|S82.192N|ICD10CM|Oth fx upr end l tibia, 7thN|Oth fx upr end l tibia, 7thN +C2861906|T037|AB|S82.192P|ICD10CM|Oth fx upper end of left tibia, subs for clos fx w malunion|Oth fx upper end of left tibia, subs for clos fx w malunion +C2861906|T037|PT|S82.192P|ICD10CM|Other fracture of upper end of left tibia, subsequent encounter for closed fracture with malunion|Other fracture of upper end of left tibia, subsequent encounter for closed fracture with malunion +C2861907|T037|AB|S82.192Q|ICD10CM|Oth fx upr end l tibia, subs for opn fx type I/2 w malunion|Oth fx upr end l tibia, subs for opn fx type I/2 w malunion +C2861908|T037|AB|S82.192R|ICD10CM|Oth fx upr end l tibia, 7thR|Oth fx upr end l tibia, 7thR +C2861909|T037|PT|S82.192S|ICD10CM|Other fracture of upper end of left tibia, sequela|Other fracture of upper end of left tibia, sequela +C2861909|T037|AB|S82.192S|ICD10CM|Other fracture of upper end of left tibia, sequela|Other fracture of upper end of left tibia, sequela +C2861910|T037|AB|S82.199|ICD10CM|Other fracture of upper end of unspecified tibia|Other fracture of upper end of unspecified tibia +C2861910|T037|HT|S82.199|ICD10CM|Other fracture of upper end of unspecified tibia|Other fracture of upper end of unspecified tibia +C2861911|T037|AB|S82.199A|ICD10CM|Oth fracture of upper end of unsp tibia, init for clos fx|Oth fracture of upper end of unsp tibia, init for clos fx +C2861911|T037|PT|S82.199A|ICD10CM|Other fracture of upper end of unspecified tibia, initial encounter for closed fracture|Other fracture of upper end of unspecified tibia, initial encounter for closed fracture +C2861912|T037|AB|S82.199B|ICD10CM|Oth fx upper end of unsp tibia, init for opn fx type I/2|Oth fx upper end of unsp tibia, init for opn fx type I/2 +C2861912|T037|PT|S82.199B|ICD10CM|Other fracture of upper end of unspecified tibia, initial encounter for open fracture type I or II|Other fracture of upper end of unspecified tibia, initial encounter for open fracture type I or II +C2861913|T037|AB|S82.199C|ICD10CM|Oth fx upper end of unsp tibia, init for opn fx type 3A/B/C|Oth fx upper end of unsp tibia, init for opn fx type 3A/B/C +C2861914|T037|AB|S82.199D|ICD10CM|Oth fx upper end unsp tibia, subs for clos fx w routn heal|Oth fx upper end unsp tibia, subs for clos fx w routn heal +C2861915|T037|AB|S82.199E|ICD10CM|Oth fx upr end unsp tibia, 7thE|Oth fx upr end unsp tibia, 7thE +C2861916|T037|AB|S82.199F|ICD10CM|Oth fx upr end unsp tibia, 7thF|Oth fx upr end unsp tibia, 7thF +C2861917|T037|AB|S82.199G|ICD10CM|Oth fx upper end unsp tibia, subs for clos fx w delay heal|Oth fx upper end unsp tibia, subs for clos fx w delay heal +C2861918|T037|AB|S82.199H|ICD10CM|Oth fx upr end unsp tibia, 7thH|Oth fx upr end unsp tibia, 7thH +C2861919|T037|AB|S82.199J|ICD10CM|Oth fx upr end unsp tibia, 7thJ|Oth fx upr end unsp tibia, 7thJ +C2861920|T037|AB|S82.199K|ICD10CM|Oth fx upper end of unsp tibia, subs for clos fx w nonunion|Oth fx upper end of unsp tibia, subs for clos fx w nonunion +C2861921|T037|AB|S82.199M|ICD10CM|Oth fx upr end unsp tibia, 7thM|Oth fx upr end unsp tibia, 7thM +C2861922|T037|AB|S82.199N|ICD10CM|Oth fx upr end unsp tibia, 7thN|Oth fx upr end unsp tibia, 7thN +C2861923|T037|AB|S82.199P|ICD10CM|Oth fx upper end of unsp tibia, subs for clos fx w malunion|Oth fx upper end of unsp tibia, subs for clos fx w malunion +C2861924|T037|AB|S82.199Q|ICD10CM|Oth fx upr end unsp tibia, 7thQ|Oth fx upr end unsp tibia, 7thQ +C2861925|T037|AB|S82.199R|ICD10CM|Oth fx upr end unsp tibia, 7thR|Oth fx upr end unsp tibia, 7thR +C2861926|T037|PT|S82.199S|ICD10CM|Other fracture of upper end of unspecified tibia, sequela|Other fracture of upper end of unspecified tibia, sequela +C2861926|T037|AB|S82.199S|ICD10CM|Other fracture of upper end of unspecified tibia, sequela|Other fracture of upper end of unspecified tibia, sequela +C0272767|T037|HT|S82.2|ICD10CM|Fracture of shaft of tibia|Fracture of shaft of tibia +C0272767|T037|AB|S82.2|ICD10CM|Fracture of shaft of tibia|Fracture of shaft of tibia +C0272767|T037|PT|S82.2|ICD10|Fracture of shaft of tibia|Fracture of shaft of tibia +C0040185|T037|ET|S82.20|ICD10CM|Fracture of tibia NOS|Fracture of tibia NOS +C2861927|T037|AB|S82.20|ICD10CM|Unspecified fracture of shaft of tibia|Unspecified fracture of shaft of tibia +C2861927|T037|HT|S82.20|ICD10CM|Unspecified fracture of shaft of tibia|Unspecified fracture of shaft of tibia +C2861928|T037|AB|S82.201|ICD10CM|Unspecified fracture of shaft of right tibia|Unspecified fracture of shaft of right tibia +C2861928|T037|HT|S82.201|ICD10CM|Unspecified fracture of shaft of right tibia|Unspecified fracture of shaft of right tibia +C2861929|T037|AB|S82.201A|ICD10CM|Unsp fracture of shaft of right tibia, init for clos fx|Unsp fracture of shaft of right tibia, init for clos fx +C2861929|T037|PT|S82.201A|ICD10CM|Unspecified fracture of shaft of right tibia, initial encounter for closed fracture|Unspecified fracture of shaft of right tibia, initial encounter for closed fracture +C2861930|T037|AB|S82.201B|ICD10CM|Unsp fx shaft of right tibia, init for opn fx type I/2|Unsp fx shaft of right tibia, init for opn fx type I/2 +C2861930|T037|PT|S82.201B|ICD10CM|Unspecified fracture of shaft of right tibia, initial encounter for open fracture type I or II|Unspecified fracture of shaft of right tibia, initial encounter for open fracture type I or II +C2861931|T037|AB|S82.201C|ICD10CM|Unsp fx shaft of right tibia, init for opn fx type 3A/B/C|Unsp fx shaft of right tibia, init for opn fx type 3A/B/C +C2861932|T037|AB|S82.201D|ICD10CM|Unsp fx shaft of right tibia, subs for clos fx w routn heal|Unsp fx shaft of right tibia, subs for clos fx w routn heal +C2861933|T037|AB|S82.201E|ICD10CM|Unsp fx shaft of r tibia, 7thE|Unsp fx shaft of r tibia, 7thE +C2861934|T037|AB|S82.201F|ICD10CM|Unsp fx shaft of r tibia, 7thF|Unsp fx shaft of r tibia, 7thF +C2861935|T037|AB|S82.201G|ICD10CM|Unsp fx shaft of right tibia, subs for clos fx w delay heal|Unsp fx shaft of right tibia, subs for clos fx w delay heal +C2861936|T037|AB|S82.201H|ICD10CM|Unsp fx shaft of r tibia, 7thH|Unsp fx shaft of r tibia, 7thH +C2861937|T037|AB|S82.201J|ICD10CM|Unsp fx shaft of r tibia, 7thJ|Unsp fx shaft of r tibia, 7thJ +C2861938|T037|AB|S82.201K|ICD10CM|Unsp fx shaft of right tibia, subs for clos fx w nonunion|Unsp fx shaft of right tibia, subs for clos fx w nonunion +C2861938|T037|PT|S82.201K|ICD10CM|Unspecified fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion|Unspecified fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion +C2861939|T037|AB|S82.201M|ICD10CM|Unsp fx shaft of r tibia, 7thM|Unsp fx shaft of r tibia, 7thM +C2861940|T037|AB|S82.201N|ICD10CM|Unsp fx shaft of r tibia, 7thN|Unsp fx shaft of r tibia, 7thN +C2861941|T037|AB|S82.201P|ICD10CM|Unsp fx shaft of right tibia, subs for clos fx w malunion|Unsp fx shaft of right tibia, subs for clos fx w malunion +C2861941|T037|PT|S82.201P|ICD10CM|Unspecified fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion|Unspecified fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion +C2861942|T037|AB|S82.201Q|ICD10CM|Unsp fx shaft of r tibia, 7thQ|Unsp fx shaft of r tibia, 7thQ +C2861943|T037|AB|S82.201R|ICD10CM|Unsp fx shaft of r tibia, 7thR|Unsp fx shaft of r tibia, 7thR +C2861944|T037|PT|S82.201S|ICD10CM|Unspecified fracture of shaft of right tibia, sequela|Unspecified fracture of shaft of right tibia, sequela +C2861944|T037|AB|S82.201S|ICD10CM|Unspecified fracture of shaft of right tibia, sequela|Unspecified fracture of shaft of right tibia, sequela +C2861945|T037|AB|S82.202|ICD10CM|Unspecified fracture of shaft of left tibia|Unspecified fracture of shaft of left tibia +C2861945|T037|HT|S82.202|ICD10CM|Unspecified fracture of shaft of left tibia|Unspecified fracture of shaft of left tibia +C2861946|T037|AB|S82.202A|ICD10CM|Unsp fracture of shaft of left tibia, init for clos fx|Unsp fracture of shaft of left tibia, init for clos fx +C2861946|T037|PT|S82.202A|ICD10CM|Unspecified fracture of shaft of left tibia, initial encounter for closed fracture|Unspecified fracture of shaft of left tibia, initial encounter for closed fracture +C2861947|T037|AB|S82.202B|ICD10CM|Unsp fx shaft of left tibia, init for opn fx type I/2|Unsp fx shaft of left tibia, init for opn fx type I/2 +C2861947|T037|PT|S82.202B|ICD10CM|Unspecified fracture of shaft of left tibia, initial encounter for open fracture type I or II|Unspecified fracture of shaft of left tibia, initial encounter for open fracture type I or II +C2861948|T037|AB|S82.202C|ICD10CM|Unsp fx shaft of left tibia, init for opn fx type 3A/B/C|Unsp fx shaft of left tibia, init for opn fx type 3A/B/C +C2861949|T037|AB|S82.202D|ICD10CM|Unsp fx shaft of left tibia, subs for clos fx w routn heal|Unsp fx shaft of left tibia, subs for clos fx w routn heal +C2861950|T037|AB|S82.202E|ICD10CM|Unsp fx shaft of l tibia, 7thE|Unsp fx shaft of l tibia, 7thE +C2861951|T037|AB|S82.202F|ICD10CM|Unsp fx shaft of l tibia, 7thF|Unsp fx shaft of l tibia, 7thF +C2861952|T037|AB|S82.202G|ICD10CM|Unsp fx shaft of left tibia, subs for clos fx w delay heal|Unsp fx shaft of left tibia, subs for clos fx w delay heal +C2861953|T037|AB|S82.202H|ICD10CM|Unsp fx shaft of l tibia, 7thH|Unsp fx shaft of l tibia, 7thH +C2861954|T037|AB|S82.202J|ICD10CM|Unsp fx shaft of l tibia, 7thJ|Unsp fx shaft of l tibia, 7thJ +C2861955|T037|AB|S82.202K|ICD10CM|Unsp fx shaft of left tibia, subs for clos fx w nonunion|Unsp fx shaft of left tibia, subs for clos fx w nonunion +C2861955|T037|PT|S82.202K|ICD10CM|Unspecified fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion|Unspecified fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion +C2861956|T037|AB|S82.202M|ICD10CM|Unsp fx shaft of l tibia, 7thM|Unsp fx shaft of l tibia, 7thM +C2861957|T037|AB|S82.202N|ICD10CM|Unsp fx shaft of l tibia, 7thN|Unsp fx shaft of l tibia, 7thN +C2861958|T037|AB|S82.202P|ICD10CM|Unsp fx shaft of left tibia, subs for clos fx w malunion|Unsp fx shaft of left tibia, subs for clos fx w malunion +C2861958|T037|PT|S82.202P|ICD10CM|Unspecified fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion|Unspecified fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion +C2861959|T037|AB|S82.202Q|ICD10CM|Unsp fx shaft of l tibia, 7thQ|Unsp fx shaft of l tibia, 7thQ +C2861960|T037|AB|S82.202R|ICD10CM|Unsp fx shaft of l tibia, 7thR|Unsp fx shaft of l tibia, 7thR +C2861961|T037|PT|S82.202S|ICD10CM|Unspecified fracture of shaft of left tibia, sequela|Unspecified fracture of shaft of left tibia, sequela +C2861961|T037|AB|S82.202S|ICD10CM|Unspecified fracture of shaft of left tibia, sequela|Unspecified fracture of shaft of left tibia, sequela +C2861962|T037|AB|S82.209|ICD10CM|Unspecified fracture of shaft of unspecified tibia|Unspecified fracture of shaft of unspecified tibia +C2861962|T037|HT|S82.209|ICD10CM|Unspecified fracture of shaft of unspecified tibia|Unspecified fracture of shaft of unspecified tibia +C2861963|T037|AB|S82.209A|ICD10CM|Unsp fracture of shaft of unsp tibia, init for clos fx|Unsp fracture of shaft of unsp tibia, init for clos fx +C2861963|T037|PT|S82.209A|ICD10CM|Unspecified fracture of shaft of unspecified tibia, initial encounter for closed fracture|Unspecified fracture of shaft of unspecified tibia, initial encounter for closed fracture +C2861964|T037|AB|S82.209B|ICD10CM|Unsp fx shaft of unsp tibia, init for opn fx type I/2|Unsp fx shaft of unsp tibia, init for opn fx type I/2 +C2861964|T037|PT|S82.209B|ICD10CM|Unspecified fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II|Unspecified fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II +C2861965|T037|AB|S82.209C|ICD10CM|Unsp fx shaft of unsp tibia, init for opn fx type 3A/B/C|Unsp fx shaft of unsp tibia, init for opn fx type 3A/B/C +C2861966|T037|AB|S82.209D|ICD10CM|Unsp fx shaft of unsp tibia, subs for clos fx w routn heal|Unsp fx shaft of unsp tibia, subs for clos fx w routn heal +C2861967|T037|AB|S82.209E|ICD10CM|Unsp fx shaft of unsp tibia, 7thE|Unsp fx shaft of unsp tibia, 7thE +C2861968|T037|AB|S82.209F|ICD10CM|Unsp fx shaft of unsp tibia, 7thF|Unsp fx shaft of unsp tibia, 7thF +C2861969|T037|AB|S82.209G|ICD10CM|Unsp fx shaft of unsp tibia, subs for clos fx w delay heal|Unsp fx shaft of unsp tibia, subs for clos fx w delay heal +C2861970|T037|AB|S82.209H|ICD10CM|Unsp fx shaft of unsp tibia, 7thH|Unsp fx shaft of unsp tibia, 7thH +C2861971|T037|AB|S82.209J|ICD10CM|Unsp fx shaft of unsp tibia, 7thJ|Unsp fx shaft of unsp tibia, 7thJ +C2861972|T037|AB|S82.209K|ICD10CM|Unsp fx shaft of unsp tibia, subs for clos fx w nonunion|Unsp fx shaft of unsp tibia, subs for clos fx w nonunion +C2861973|T037|AB|S82.209M|ICD10CM|Unsp fx shaft of unsp tibia, 7thM|Unsp fx shaft of unsp tibia, 7thM +C2861974|T037|AB|S82.209N|ICD10CM|Unsp fx shaft of unsp tibia, 7thN|Unsp fx shaft of unsp tibia, 7thN +C2861975|T037|AB|S82.209P|ICD10CM|Unsp fx shaft of unsp tibia, subs for clos fx w malunion|Unsp fx shaft of unsp tibia, subs for clos fx w malunion +C2861976|T037|AB|S82.209Q|ICD10CM|Unsp fx shaft of unsp tibia, 7thQ|Unsp fx shaft of unsp tibia, 7thQ +C2861977|T037|AB|S82.209R|ICD10CM|Unsp fx shaft of unsp tibia, 7thR|Unsp fx shaft of unsp tibia, 7thR +C2861978|T037|PT|S82.209S|ICD10CM|Unspecified fracture of shaft of unspecified tibia, sequela|Unspecified fracture of shaft of unspecified tibia, sequela +C2861978|T037|AB|S82.209S|ICD10CM|Unspecified fracture of shaft of unspecified tibia, sequela|Unspecified fracture of shaft of unspecified tibia, sequela +C2861979|T037|AB|S82.22|ICD10CM|Transverse fracture of shaft of tibia|Transverse fracture of shaft of tibia +C2861979|T037|HT|S82.22|ICD10CM|Transverse fracture of shaft of tibia|Transverse fracture of shaft of tibia +C2861980|T037|AB|S82.221|ICD10CM|Displaced transverse fracture of shaft of right tibia|Displaced transverse fracture of shaft of right tibia +C2861980|T037|HT|S82.221|ICD10CM|Displaced transverse fracture of shaft of right tibia|Displaced transverse fracture of shaft of right tibia +C2861981|T037|AB|S82.221A|ICD10CM|Displaced transverse fracture of shaft of right tibia, init|Displaced transverse fracture of shaft of right tibia, init +C2861981|T037|PT|S82.221A|ICD10CM|Displaced transverse fracture of shaft of right tibia, initial encounter for closed fracture|Displaced transverse fracture of shaft of right tibia, initial encounter for closed fracture +C2861982|T037|AB|S82.221B|ICD10CM|Displ transverse fx shaft of r tibia, 7thB|Displ transverse fx shaft of r tibia, 7thB +C2861983|T037|AB|S82.221C|ICD10CM|Displ transverse fx shaft of r tibia, 7thC|Displ transverse fx shaft of r tibia, 7thC +C2861984|T037|AB|S82.221D|ICD10CM|Displ transverse fx shaft of r tibia, 7thD|Displ transverse fx shaft of r tibia, 7thD +C2861985|T037|AB|S82.221E|ICD10CM|Displ transverse fx shaft of r tibia, 7thE|Displ transverse fx shaft of r tibia, 7thE +C2861986|T037|AB|S82.221F|ICD10CM|Displ transverse fx shaft of r tibia, 7thF|Displ transverse fx shaft of r tibia, 7thF +C2861987|T037|AB|S82.221G|ICD10CM|Displ transverse fx shaft of r tibia, 7thG|Displ transverse fx shaft of r tibia, 7thG +C2861988|T037|AB|S82.221H|ICD10CM|Displ transverse fx shaft of r tibia, 7thH|Displ transverse fx shaft of r tibia, 7thH +C2861989|T037|AB|S82.221J|ICD10CM|Displ transverse fx shaft of r tibia, 7thJ|Displ transverse fx shaft of r tibia, 7thJ +C2861990|T037|AB|S82.221K|ICD10CM|Displ transverse fx shaft of r tibia, 7thK|Displ transverse fx shaft of r tibia, 7thK +C2861991|T037|AB|S82.221M|ICD10CM|Displ transverse fx shaft of r tibia, 7thM|Displ transverse fx shaft of r tibia, 7thM +C2861992|T037|AB|S82.221N|ICD10CM|Displ transverse fx shaft of r tibia, 7thN|Displ transverse fx shaft of r tibia, 7thN +C2861993|T037|AB|S82.221P|ICD10CM|Displ transverse fx shaft of r tibia, 7thP|Displ transverse fx shaft of r tibia, 7thP +C2861994|T037|AB|S82.221Q|ICD10CM|Displ transverse fx shaft of r tibia, 7thQ|Displ transverse fx shaft of r tibia, 7thQ +C2861995|T037|AB|S82.221R|ICD10CM|Displ transverse fx shaft of r tibia, 7thR|Displ transverse fx shaft of r tibia, 7thR +C2861996|T037|PT|S82.221S|ICD10CM|Displaced transverse fracture of shaft of right tibia, sequela|Displaced transverse fracture of shaft of right tibia, sequela +C2861996|T037|AB|S82.221S|ICD10CM|Displaced transverse fx shaft of right tibia, sequela|Displaced transverse fx shaft of right tibia, sequela +C2861997|T037|AB|S82.222|ICD10CM|Displaced transverse fracture of shaft of left tibia|Displaced transverse fracture of shaft of left tibia +C2861997|T037|HT|S82.222|ICD10CM|Displaced transverse fracture of shaft of left tibia|Displaced transverse fracture of shaft of left tibia +C2861998|T037|AB|S82.222A|ICD10CM|Displaced transverse fracture of shaft of left tibia, init|Displaced transverse fracture of shaft of left tibia, init +C2861998|T037|PT|S82.222A|ICD10CM|Displaced transverse fracture of shaft of left tibia, initial encounter for closed fracture|Displaced transverse fracture of shaft of left tibia, initial encounter for closed fracture +C2861999|T037|AB|S82.222B|ICD10CM|Displ transverse fx shaft of l tibia, 7thB|Displ transverse fx shaft of l tibia, 7thB +C2862000|T037|AB|S82.222C|ICD10CM|Displ transverse fx shaft of l tibia, 7thC|Displ transverse fx shaft of l tibia, 7thC +C2862001|T037|AB|S82.222D|ICD10CM|Displ transverse fx shaft of l tibia, 7thD|Displ transverse fx shaft of l tibia, 7thD +C2862002|T037|AB|S82.222E|ICD10CM|Displ transverse fx shaft of l tibia, 7thE|Displ transverse fx shaft of l tibia, 7thE +C2862003|T037|AB|S82.222F|ICD10CM|Displ transverse fx shaft of l tibia, 7thF|Displ transverse fx shaft of l tibia, 7thF +C2862004|T037|AB|S82.222G|ICD10CM|Displ transverse fx shaft of l tibia, 7thG|Displ transverse fx shaft of l tibia, 7thG +C2862005|T037|AB|S82.222H|ICD10CM|Displ transverse fx shaft of l tibia, 7thH|Displ transverse fx shaft of l tibia, 7thH +C2862006|T037|AB|S82.222J|ICD10CM|Displ transverse fx shaft of l tibia, 7thJ|Displ transverse fx shaft of l tibia, 7thJ +C2862007|T037|AB|S82.222K|ICD10CM|Displ transverse fx shaft of l tibia, 7thK|Displ transverse fx shaft of l tibia, 7thK +C2862008|T037|AB|S82.222M|ICD10CM|Displ transverse fx shaft of l tibia, 7thM|Displ transverse fx shaft of l tibia, 7thM +C2862009|T037|AB|S82.222N|ICD10CM|Displ transverse fx shaft of l tibia, 7thN|Displ transverse fx shaft of l tibia, 7thN +C2862010|T037|AB|S82.222P|ICD10CM|Displ transverse fx shaft of l tibia, 7thP|Displ transverse fx shaft of l tibia, 7thP +C2862011|T037|AB|S82.222Q|ICD10CM|Displ transverse fx shaft of l tibia, 7thQ|Displ transverse fx shaft of l tibia, 7thQ +C2862012|T037|AB|S82.222R|ICD10CM|Displ transverse fx shaft of l tibia, 7thR|Displ transverse fx shaft of l tibia, 7thR +C2862013|T037|PT|S82.222S|ICD10CM|Displaced transverse fracture of shaft of left tibia, sequela|Displaced transverse fracture of shaft of left tibia, sequela +C2862013|T037|AB|S82.222S|ICD10CM|Displaced transverse fx shaft of left tibia, sequela|Displaced transverse fx shaft of left tibia, sequela +C2862014|T037|AB|S82.223|ICD10CM|Displaced transverse fracture of shaft of unspecified tibia|Displaced transverse fracture of shaft of unspecified tibia +C2862014|T037|HT|S82.223|ICD10CM|Displaced transverse fracture of shaft of unspecified tibia|Displaced transverse fracture of shaft of unspecified tibia +C2862015|T037|AB|S82.223A|ICD10CM|Displaced transverse fracture of shaft of unsp tibia, init|Displaced transverse fracture of shaft of unsp tibia, init +C2862015|T037|PT|S82.223A|ICD10CM|Displaced transverse fracture of shaft of unspecified tibia, initial encounter for closed fracture|Displaced transverse fracture of shaft of unspecified tibia, initial encounter for closed fracture +C2862016|T037|AB|S82.223B|ICD10CM|Displ transverse fx shaft of unsp tibia, 7thB|Displ transverse fx shaft of unsp tibia, 7thB +C2862017|T037|AB|S82.223C|ICD10CM|Displ transverse fx shaft of unsp tibia, 7thC|Displ transverse fx shaft of unsp tibia, 7thC +C2862018|T037|AB|S82.223D|ICD10CM|Displ transverse fx shaft of unsp tibia, 7thD|Displ transverse fx shaft of unsp tibia, 7thD +C2862019|T037|AB|S82.223E|ICD10CM|Displ transverse fx shaft of unsp tibia, 7thE|Displ transverse fx shaft of unsp tibia, 7thE +C2862020|T037|AB|S82.223F|ICD10CM|Displ transverse fx shaft of unsp tibia, 7thF|Displ transverse fx shaft of unsp tibia, 7thF +C2862021|T037|AB|S82.223G|ICD10CM|Displ transverse fx shaft of unsp tibia, 7thG|Displ transverse fx shaft of unsp tibia, 7thG +C2862022|T037|AB|S82.223H|ICD10CM|Displ transverse fx shaft of unsp tibia, 7thH|Displ transverse fx shaft of unsp tibia, 7thH +C2862023|T037|AB|S82.223J|ICD10CM|Displ transverse fx shaft of unsp tibia, 7thJ|Displ transverse fx shaft of unsp tibia, 7thJ +C2862024|T037|AB|S82.223K|ICD10CM|Displ transverse fx shaft of unsp tibia, 7thK|Displ transverse fx shaft of unsp tibia, 7thK +C2862025|T037|AB|S82.223M|ICD10CM|Displ transverse fx shaft of unsp tibia, 7thM|Displ transverse fx shaft of unsp tibia, 7thM +C2862026|T037|AB|S82.223N|ICD10CM|Displ transverse fx shaft of unsp tibia, 7thN|Displ transverse fx shaft of unsp tibia, 7thN +C2862027|T037|AB|S82.223P|ICD10CM|Displ transverse fx shaft of unsp tibia, 7thP|Displ transverse fx shaft of unsp tibia, 7thP +C2862028|T037|AB|S82.223Q|ICD10CM|Displ transverse fx shaft of unsp tibia, 7thQ|Displ transverse fx shaft of unsp tibia, 7thQ +C2862029|T037|AB|S82.223R|ICD10CM|Displ transverse fx shaft of unsp tibia, 7thR|Displ transverse fx shaft of unsp tibia, 7thR +C2862030|T037|PT|S82.223S|ICD10CM|Displaced transverse fracture of shaft of unspecified tibia, sequela|Displaced transverse fracture of shaft of unspecified tibia, sequela +C2862030|T037|AB|S82.223S|ICD10CM|Displaced transverse fx shaft of unsp tibia, sequela|Displaced transverse fx shaft of unsp tibia, sequela +C2862031|T037|AB|S82.224|ICD10CM|Nondisplaced transverse fracture of shaft of right tibia|Nondisplaced transverse fracture of shaft of right tibia +C2862031|T037|HT|S82.224|ICD10CM|Nondisplaced transverse fracture of shaft of right tibia|Nondisplaced transverse fracture of shaft of right tibia +C2862032|T037|AB|S82.224A|ICD10CM|Nondisp transverse fracture of shaft of right tibia, init|Nondisp transverse fracture of shaft of right tibia, init +C2862032|T037|PT|S82.224A|ICD10CM|Nondisplaced transverse fracture of shaft of right tibia, initial encounter for closed fracture|Nondisplaced transverse fracture of shaft of right tibia, initial encounter for closed fracture +C2862033|T037|AB|S82.224B|ICD10CM|Nondisp transverse fx shaft of r tibia, 7thB|Nondisp transverse fx shaft of r tibia, 7thB +C2862034|T037|AB|S82.224C|ICD10CM|Nondisp transverse fx shaft of r tibia, 7thC|Nondisp transverse fx shaft of r tibia, 7thC +C2862035|T037|AB|S82.224D|ICD10CM|Nondisp transverse fx shaft of r tibia, 7thD|Nondisp transverse fx shaft of r tibia, 7thD +C2862036|T037|AB|S82.224E|ICD10CM|Nondisp transverse fx shaft of r tibia, 7thE|Nondisp transverse fx shaft of r tibia, 7thE +C2862037|T037|AB|S82.224F|ICD10CM|Nondisp transverse fx shaft of r tibia, 7thF|Nondisp transverse fx shaft of r tibia, 7thF +C2862038|T037|AB|S82.224G|ICD10CM|Nondisp transverse fx shaft of r tibia, 7thG|Nondisp transverse fx shaft of r tibia, 7thG +C2862039|T037|AB|S82.224H|ICD10CM|Nondisp transverse fx shaft of r tibia, 7thH|Nondisp transverse fx shaft of r tibia, 7thH +C2862040|T037|AB|S82.224J|ICD10CM|Nondisp transverse fx shaft of r tibia, 7thJ|Nondisp transverse fx shaft of r tibia, 7thJ +C2862041|T037|AB|S82.224K|ICD10CM|Nondisp transverse fx shaft of r tibia, 7thK|Nondisp transverse fx shaft of r tibia, 7thK +C2862042|T037|AB|S82.224M|ICD10CM|Nondisp transverse fx shaft of r tibia, 7thM|Nondisp transverse fx shaft of r tibia, 7thM +C2862043|T037|AB|S82.224N|ICD10CM|Nondisp transverse fx shaft of r tibia, 7thN|Nondisp transverse fx shaft of r tibia, 7thN +C2862044|T037|AB|S82.224P|ICD10CM|Nondisp transverse fx shaft of r tibia, 7thP|Nondisp transverse fx shaft of r tibia, 7thP +C2862045|T037|AB|S82.224Q|ICD10CM|Nondisp transverse fx shaft of r tibia, 7thQ|Nondisp transverse fx shaft of r tibia, 7thQ +C2862046|T037|AB|S82.224R|ICD10CM|Nondisp transverse fx shaft of r tibia, 7thR|Nondisp transverse fx shaft of r tibia, 7thR +C2862047|T037|AB|S82.224S|ICD10CM|Nondisp transverse fracture of shaft of right tibia, sequela|Nondisp transverse fracture of shaft of right tibia, sequela +C2862047|T037|PT|S82.224S|ICD10CM|Nondisplaced transverse fracture of shaft of right tibia, sequela|Nondisplaced transverse fracture of shaft of right tibia, sequela +C2862048|T037|AB|S82.225|ICD10CM|Nondisplaced transverse fracture of shaft of left tibia|Nondisplaced transverse fracture of shaft of left tibia +C2862048|T037|HT|S82.225|ICD10CM|Nondisplaced transverse fracture of shaft of left tibia|Nondisplaced transverse fracture of shaft of left tibia +C2862049|T037|AB|S82.225A|ICD10CM|Nondisp transverse fracture of shaft of left tibia, init|Nondisp transverse fracture of shaft of left tibia, init +C2862049|T037|PT|S82.225A|ICD10CM|Nondisplaced transverse fracture of shaft of left tibia, initial encounter for closed fracture|Nondisplaced transverse fracture of shaft of left tibia, initial encounter for closed fracture +C2862050|T037|AB|S82.225B|ICD10CM|Nondisp transverse fx shaft of l tibia, 7thB|Nondisp transverse fx shaft of l tibia, 7thB +C2862051|T037|AB|S82.225C|ICD10CM|Nondisp transverse fx shaft of l tibia, 7thC|Nondisp transverse fx shaft of l tibia, 7thC +C2862052|T037|AB|S82.225D|ICD10CM|Nondisp transverse fx shaft of l tibia, 7thD|Nondisp transverse fx shaft of l tibia, 7thD +C2862053|T037|AB|S82.225E|ICD10CM|Nondisp transverse fx shaft of l tibia, 7thE|Nondisp transverse fx shaft of l tibia, 7thE +C2862054|T037|AB|S82.225F|ICD10CM|Nondisp transverse fx shaft of l tibia, 7thF|Nondisp transverse fx shaft of l tibia, 7thF +C2862055|T037|AB|S82.225G|ICD10CM|Nondisp transverse fx shaft of l tibia, 7thG|Nondisp transverse fx shaft of l tibia, 7thG +C2862056|T037|AB|S82.225H|ICD10CM|Nondisp transverse fx shaft of l tibia, 7thH|Nondisp transverse fx shaft of l tibia, 7thH +C2862057|T037|AB|S82.225J|ICD10CM|Nondisp transverse fx shaft of l tibia, 7thJ|Nondisp transverse fx shaft of l tibia, 7thJ +C2862058|T037|AB|S82.225K|ICD10CM|Nondisp transverse fx shaft of l tibia, 7thK|Nondisp transverse fx shaft of l tibia, 7thK +C2862059|T037|AB|S82.225M|ICD10CM|Nondisp transverse fx shaft of l tibia, 7thM|Nondisp transverse fx shaft of l tibia, 7thM +C2862060|T037|AB|S82.225N|ICD10CM|Nondisp transverse fx shaft of l tibia, 7thN|Nondisp transverse fx shaft of l tibia, 7thN +C2862061|T037|AB|S82.225P|ICD10CM|Nondisp transverse fx shaft of l tibia, 7thP|Nondisp transverse fx shaft of l tibia, 7thP +C2862062|T037|AB|S82.225Q|ICD10CM|Nondisp transverse fx shaft of l tibia, 7thQ|Nondisp transverse fx shaft of l tibia, 7thQ +C2862063|T037|AB|S82.225R|ICD10CM|Nondisp transverse fx shaft of l tibia, 7thR|Nondisp transverse fx shaft of l tibia, 7thR +C2862064|T037|AB|S82.225S|ICD10CM|Nondisp transverse fracture of shaft of left tibia, sequela|Nondisp transverse fracture of shaft of left tibia, sequela +C2862064|T037|PT|S82.225S|ICD10CM|Nondisplaced transverse fracture of shaft of left tibia, sequela|Nondisplaced transverse fracture of shaft of left tibia, sequela +C2862065|T037|AB|S82.226|ICD10CM|Nondisplaced transverse fracture of shaft of unsp tibia|Nondisplaced transverse fracture of shaft of unsp tibia +C2862065|T037|HT|S82.226|ICD10CM|Nondisplaced transverse fracture of shaft of unspecified tibia|Nondisplaced transverse fracture of shaft of unspecified tibia +C2862066|T037|AB|S82.226A|ICD10CM|Nondisp transverse fracture of shaft of unsp tibia, init|Nondisp transverse fracture of shaft of unsp tibia, init +C2862067|T037|AB|S82.226B|ICD10CM|Nondisp transverse fx shaft of unsp tibia, 7thB|Nondisp transverse fx shaft of unsp tibia, 7thB +C2862068|T037|AB|S82.226C|ICD10CM|Nondisp transverse fx shaft of unsp tibia, 7thC|Nondisp transverse fx shaft of unsp tibia, 7thC +C2862069|T037|AB|S82.226D|ICD10CM|Nondisp transverse fx shaft of unsp tibia, 7thD|Nondisp transverse fx shaft of unsp tibia, 7thD +C2862070|T037|AB|S82.226E|ICD10CM|Nondisp transverse fx shaft of unsp tibia, 7thE|Nondisp transverse fx shaft of unsp tibia, 7thE +C2862071|T037|AB|S82.226F|ICD10CM|Nondisp transverse fx shaft of unsp tibia, 7thF|Nondisp transverse fx shaft of unsp tibia, 7thF +C2862072|T037|AB|S82.226G|ICD10CM|Nondisp transverse fx shaft of unsp tibia, 7thG|Nondisp transverse fx shaft of unsp tibia, 7thG +C2862073|T037|AB|S82.226H|ICD10CM|Nondisp transverse fx shaft of unsp tibia, 7thH|Nondisp transverse fx shaft of unsp tibia, 7thH +C2862074|T037|AB|S82.226J|ICD10CM|Nondisp transverse fx shaft of unsp tibia, 7thJ|Nondisp transverse fx shaft of unsp tibia, 7thJ +C2862075|T037|AB|S82.226K|ICD10CM|Nondisp transverse fx shaft of unsp tibia, 7thK|Nondisp transverse fx shaft of unsp tibia, 7thK +C2862076|T037|AB|S82.226M|ICD10CM|Nondisp transverse fx shaft of unsp tibia, 7thM|Nondisp transverse fx shaft of unsp tibia, 7thM +C2862077|T037|AB|S82.226N|ICD10CM|Nondisp transverse fx shaft of unsp tibia, 7thN|Nondisp transverse fx shaft of unsp tibia, 7thN +C2862078|T037|AB|S82.226P|ICD10CM|Nondisp transverse fx shaft of unsp tibia, 7thP|Nondisp transverse fx shaft of unsp tibia, 7thP +C2862079|T037|AB|S82.226Q|ICD10CM|Nondisp transverse fx shaft of unsp tibia, 7thQ|Nondisp transverse fx shaft of unsp tibia, 7thQ +C2862080|T037|AB|S82.226R|ICD10CM|Nondisp transverse fx shaft of unsp tibia, 7thR|Nondisp transverse fx shaft of unsp tibia, 7thR +C2862081|T037|AB|S82.226S|ICD10CM|Nondisp transverse fracture of shaft of unsp tibia, sequela|Nondisp transverse fracture of shaft of unsp tibia, sequela +C2862081|T037|PT|S82.226S|ICD10CM|Nondisplaced transverse fracture of shaft of unspecified tibia, sequela|Nondisplaced transverse fracture of shaft of unspecified tibia, sequela +C2862082|T037|AB|S82.23|ICD10CM|Oblique fracture of shaft of tibia|Oblique fracture of shaft of tibia +C2862082|T037|HT|S82.23|ICD10CM|Oblique fracture of shaft of tibia|Oblique fracture of shaft of tibia +C2862083|T037|AB|S82.231|ICD10CM|Displaced oblique fracture of shaft of right tibia|Displaced oblique fracture of shaft of right tibia +C2862083|T037|HT|S82.231|ICD10CM|Displaced oblique fracture of shaft of right tibia|Displaced oblique fracture of shaft of right tibia +C2862084|T037|AB|S82.231A|ICD10CM|Displaced oblique fracture of shaft of right tibia, init|Displaced oblique fracture of shaft of right tibia, init +C2862084|T037|PT|S82.231A|ICD10CM|Displaced oblique fracture of shaft of right tibia, initial encounter for closed fracture|Displaced oblique fracture of shaft of right tibia, initial encounter for closed fracture +C2862085|T037|AB|S82.231B|ICD10CM|Displ oblique fx shaft of r tibia, init for opn fx type I/2|Displ oblique fx shaft of r tibia, init for opn fx type I/2 +C2862085|T037|PT|S82.231B|ICD10CM|Displaced oblique fracture of shaft of right tibia, initial encounter for open fracture type I or II|Displaced oblique fracture of shaft of right tibia, initial encounter for open fracture type I or II +C2862086|T037|AB|S82.231C|ICD10CM|Displ oblique fx shaft of r tibia, 7thC|Displ oblique fx shaft of r tibia, 7thC +C2862087|T037|AB|S82.231D|ICD10CM|Displ oblique fx shaft of r tibia, 7thD|Displ oblique fx shaft of r tibia, 7thD +C2862088|T037|AB|S82.231E|ICD10CM|Displ oblique fx shaft of r tibia, 7thE|Displ oblique fx shaft of r tibia, 7thE +C2862089|T037|AB|S82.231F|ICD10CM|Displ oblique fx shaft of r tibia, 7thF|Displ oblique fx shaft of r tibia, 7thF +C2862090|T037|AB|S82.231G|ICD10CM|Displ oblique fx shaft of r tibia, 7thG|Displ oblique fx shaft of r tibia, 7thG +C2862091|T037|AB|S82.231H|ICD10CM|Displ oblique fx shaft of r tibia, 7thH|Displ oblique fx shaft of r tibia, 7thH +C2862092|T037|AB|S82.231J|ICD10CM|Displ oblique fx shaft of r tibia, 7thJ|Displ oblique fx shaft of r tibia, 7thJ +C2862093|T037|AB|S82.231K|ICD10CM|Displ oblique fx shaft of r tibia, 7thK|Displ oblique fx shaft of r tibia, 7thK +C2862094|T037|AB|S82.231M|ICD10CM|Displ oblique fx shaft of r tibia, 7thM|Displ oblique fx shaft of r tibia, 7thM +C2862095|T037|AB|S82.231N|ICD10CM|Displ oblique fx shaft of r tibia, 7thN|Displ oblique fx shaft of r tibia, 7thN +C2862096|T037|AB|S82.231P|ICD10CM|Displ oblique fx shaft of r tibia, 7thP|Displ oblique fx shaft of r tibia, 7thP +C2862097|T037|AB|S82.231Q|ICD10CM|Displ oblique fx shaft of r tibia, 7thQ|Displ oblique fx shaft of r tibia, 7thQ +C2862098|T037|AB|S82.231R|ICD10CM|Displ oblique fx shaft of r tibia, 7thR|Displ oblique fx shaft of r tibia, 7thR +C2862099|T037|PT|S82.231S|ICD10CM|Displaced oblique fracture of shaft of right tibia, sequela|Displaced oblique fracture of shaft of right tibia, sequela +C2862099|T037|AB|S82.231S|ICD10CM|Displaced oblique fracture of shaft of right tibia, sequela|Displaced oblique fracture of shaft of right tibia, sequela +C2862100|T037|AB|S82.232|ICD10CM|Displaced oblique fracture of shaft of left tibia|Displaced oblique fracture of shaft of left tibia +C2862100|T037|HT|S82.232|ICD10CM|Displaced oblique fracture of shaft of left tibia|Displaced oblique fracture of shaft of left tibia +C2862101|T037|AB|S82.232A|ICD10CM|Displaced oblique fracture of shaft of left tibia, init|Displaced oblique fracture of shaft of left tibia, init +C2862101|T037|PT|S82.232A|ICD10CM|Displaced oblique fracture of shaft of left tibia, initial encounter for closed fracture|Displaced oblique fracture of shaft of left tibia, initial encounter for closed fracture +C2862102|T037|AB|S82.232B|ICD10CM|Displ oblique fx shaft of l tibia, init for opn fx type I/2|Displ oblique fx shaft of l tibia, init for opn fx type I/2 +C2862102|T037|PT|S82.232B|ICD10CM|Displaced oblique fracture of shaft of left tibia, initial encounter for open fracture type I or II|Displaced oblique fracture of shaft of left tibia, initial encounter for open fracture type I or II +C2862103|T037|AB|S82.232C|ICD10CM|Displ oblique fx shaft of l tibia, 7thC|Displ oblique fx shaft of l tibia, 7thC +C2862104|T037|AB|S82.232D|ICD10CM|Displ oblique fx shaft of l tibia, 7thD|Displ oblique fx shaft of l tibia, 7thD +C2862105|T037|AB|S82.232E|ICD10CM|Displ oblique fx shaft of l tibia, 7thE|Displ oblique fx shaft of l tibia, 7thE +C2862106|T037|AB|S82.232F|ICD10CM|Displ oblique fx shaft of l tibia, 7thF|Displ oblique fx shaft of l tibia, 7thF +C2862107|T037|AB|S82.232G|ICD10CM|Displ oblique fx shaft of l tibia, 7thG|Displ oblique fx shaft of l tibia, 7thG +C2862108|T037|AB|S82.232H|ICD10CM|Displ oblique fx shaft of l tibia, 7thH|Displ oblique fx shaft of l tibia, 7thH +C2862109|T037|AB|S82.232J|ICD10CM|Displ oblique fx shaft of l tibia, 7thJ|Displ oblique fx shaft of l tibia, 7thJ +C2862110|T037|AB|S82.232K|ICD10CM|Displ oblique fx shaft of l tibia, 7thK|Displ oblique fx shaft of l tibia, 7thK +C2862111|T037|AB|S82.232M|ICD10CM|Displ oblique fx shaft of l tibia, 7thM|Displ oblique fx shaft of l tibia, 7thM +C2862112|T037|AB|S82.232N|ICD10CM|Displ oblique fx shaft of l tibia, 7thN|Displ oblique fx shaft of l tibia, 7thN +C2862113|T037|AB|S82.232P|ICD10CM|Displ oblique fx shaft of l tibia, 7thP|Displ oblique fx shaft of l tibia, 7thP +C2862114|T037|AB|S82.232Q|ICD10CM|Displ oblique fx shaft of l tibia, 7thQ|Displ oblique fx shaft of l tibia, 7thQ +C2862115|T037|AB|S82.232R|ICD10CM|Displ oblique fx shaft of l tibia, 7thR|Displ oblique fx shaft of l tibia, 7thR +C2862116|T037|PT|S82.232S|ICD10CM|Displaced oblique fracture of shaft of left tibia, sequela|Displaced oblique fracture of shaft of left tibia, sequela +C2862116|T037|AB|S82.232S|ICD10CM|Displaced oblique fracture of shaft of left tibia, sequela|Displaced oblique fracture of shaft of left tibia, sequela +C2862117|T037|AB|S82.233|ICD10CM|Displaced oblique fracture of shaft of unspecified tibia|Displaced oblique fracture of shaft of unspecified tibia +C2862117|T037|HT|S82.233|ICD10CM|Displaced oblique fracture of shaft of unspecified tibia|Displaced oblique fracture of shaft of unspecified tibia +C2862118|T037|AB|S82.233A|ICD10CM|Displaced oblique fracture of shaft of unsp tibia, init|Displaced oblique fracture of shaft of unsp tibia, init +C2862118|T037|PT|S82.233A|ICD10CM|Displaced oblique fracture of shaft of unspecified tibia, initial encounter for closed fracture|Displaced oblique fracture of shaft of unspecified tibia, initial encounter for closed fracture +C2862119|T037|AB|S82.233B|ICD10CM|Displ oblique fx shaft of unsp tibia, 7thB|Displ oblique fx shaft of unsp tibia, 7thB +C2862120|T037|AB|S82.233C|ICD10CM|Displ oblique fx shaft of unsp tibia, 7thC|Displ oblique fx shaft of unsp tibia, 7thC +C2862121|T037|AB|S82.233D|ICD10CM|Displ oblique fx shaft of unsp tibia, 7thD|Displ oblique fx shaft of unsp tibia, 7thD +C2862122|T037|AB|S82.233E|ICD10CM|Displ oblique fx shaft of unsp tibia, 7thE|Displ oblique fx shaft of unsp tibia, 7thE +C2862123|T037|AB|S82.233F|ICD10CM|Displ oblique fx shaft of unsp tibia, 7thF|Displ oblique fx shaft of unsp tibia, 7thF +C2862124|T037|AB|S82.233G|ICD10CM|Displ oblique fx shaft of unsp tibia, 7thG|Displ oblique fx shaft of unsp tibia, 7thG +C2862125|T037|AB|S82.233H|ICD10CM|Displ oblique fx shaft of unsp tibia, 7thH|Displ oblique fx shaft of unsp tibia, 7thH +C2862126|T037|AB|S82.233J|ICD10CM|Displ oblique fx shaft of unsp tibia, 7thJ|Displ oblique fx shaft of unsp tibia, 7thJ +C2862127|T037|AB|S82.233K|ICD10CM|Displ oblique fx shaft of unsp tibia, 7thK|Displ oblique fx shaft of unsp tibia, 7thK +C2862128|T037|AB|S82.233M|ICD10CM|Displ oblique fx shaft of unsp tibia, 7thM|Displ oblique fx shaft of unsp tibia, 7thM +C2862129|T037|AB|S82.233N|ICD10CM|Displ oblique fx shaft of unsp tibia, 7thN|Displ oblique fx shaft of unsp tibia, 7thN +C2862130|T037|AB|S82.233P|ICD10CM|Displ oblique fx shaft of unsp tibia, 7thP|Displ oblique fx shaft of unsp tibia, 7thP +C2862131|T037|AB|S82.233Q|ICD10CM|Displ oblique fx shaft of unsp tibia, 7thQ|Displ oblique fx shaft of unsp tibia, 7thQ +C2862132|T037|AB|S82.233R|ICD10CM|Displ oblique fx shaft of unsp tibia, 7thR|Displ oblique fx shaft of unsp tibia, 7thR +C2862133|T037|AB|S82.233S|ICD10CM|Displaced oblique fracture of shaft of unsp tibia, sequela|Displaced oblique fracture of shaft of unsp tibia, sequela +C2862133|T037|PT|S82.233S|ICD10CM|Displaced oblique fracture of shaft of unspecified tibia, sequela|Displaced oblique fracture of shaft of unspecified tibia, sequela +C2862134|T037|AB|S82.234|ICD10CM|Nondisplaced oblique fracture of shaft of right tibia|Nondisplaced oblique fracture of shaft of right tibia +C2862134|T037|HT|S82.234|ICD10CM|Nondisplaced oblique fracture of shaft of right tibia|Nondisplaced oblique fracture of shaft of right tibia +C2862135|T037|AB|S82.234A|ICD10CM|Nondisplaced oblique fracture of shaft of right tibia, init|Nondisplaced oblique fracture of shaft of right tibia, init +C2862135|T037|PT|S82.234A|ICD10CM|Nondisplaced oblique fracture of shaft of right tibia, initial encounter for closed fracture|Nondisplaced oblique fracture of shaft of right tibia, initial encounter for closed fracture +C2862136|T037|AB|S82.234B|ICD10CM|Nondisp oblique fx shaft of r tibia, 7thB|Nondisp oblique fx shaft of r tibia, 7thB +C2862137|T037|AB|S82.234C|ICD10CM|Nondisp oblique fx shaft of r tibia, 7thC|Nondisp oblique fx shaft of r tibia, 7thC +C2862138|T037|AB|S82.234D|ICD10CM|Nondisp oblique fx shaft of r tibia, 7thD|Nondisp oblique fx shaft of r tibia, 7thD +C2862139|T037|AB|S82.234E|ICD10CM|Nondisp oblique fx shaft of r tibia, 7thE|Nondisp oblique fx shaft of r tibia, 7thE +C2862140|T037|AB|S82.234F|ICD10CM|Nondisp oblique fx shaft of r tibia, 7thF|Nondisp oblique fx shaft of r tibia, 7thF +C2862141|T037|AB|S82.234G|ICD10CM|Nondisp oblique fx shaft of r tibia, 7thG|Nondisp oblique fx shaft of r tibia, 7thG +C2862142|T037|AB|S82.234H|ICD10CM|Nondisp oblique fx shaft of r tibia, 7thH|Nondisp oblique fx shaft of r tibia, 7thH +C2862143|T037|AB|S82.234J|ICD10CM|Nondisp oblique fx shaft of r tibia, 7thJ|Nondisp oblique fx shaft of r tibia, 7thJ +C2862144|T037|AB|S82.234K|ICD10CM|Nondisp oblique fx shaft of r tibia, 7thK|Nondisp oblique fx shaft of r tibia, 7thK +C2862145|T037|AB|S82.234M|ICD10CM|Nondisp oblique fx shaft of r tibia, 7thM|Nondisp oblique fx shaft of r tibia, 7thM +C2862146|T037|AB|S82.234N|ICD10CM|Nondisp oblique fx shaft of r tibia, 7thN|Nondisp oblique fx shaft of r tibia, 7thN +C2862147|T037|AB|S82.234P|ICD10CM|Nondisp oblique fx shaft of r tibia, 7thP|Nondisp oblique fx shaft of r tibia, 7thP +C2862148|T037|AB|S82.234Q|ICD10CM|Nondisp oblique fx shaft of r tibia, 7thQ|Nondisp oblique fx shaft of r tibia, 7thQ +C2862149|T037|AB|S82.234R|ICD10CM|Nondisp oblique fx shaft of r tibia, 7thR|Nondisp oblique fx shaft of r tibia, 7thR +C2862150|T037|AB|S82.234S|ICD10CM|Nondisp oblique fracture of shaft of right tibia, sequela|Nondisp oblique fracture of shaft of right tibia, sequela +C2862150|T037|PT|S82.234S|ICD10CM|Nondisplaced oblique fracture of shaft of right tibia, sequela|Nondisplaced oblique fracture of shaft of right tibia, sequela +C2862151|T037|AB|S82.235|ICD10CM|Nondisplaced oblique fracture of shaft of left tibia|Nondisplaced oblique fracture of shaft of left tibia +C2862151|T037|HT|S82.235|ICD10CM|Nondisplaced oblique fracture of shaft of left tibia|Nondisplaced oblique fracture of shaft of left tibia +C2862152|T037|AB|S82.235A|ICD10CM|Nondisplaced oblique fracture of shaft of left tibia, init|Nondisplaced oblique fracture of shaft of left tibia, init +C2862152|T037|PT|S82.235A|ICD10CM|Nondisplaced oblique fracture of shaft of left tibia, initial encounter for closed fracture|Nondisplaced oblique fracture of shaft of left tibia, initial encounter for closed fracture +C2862153|T037|AB|S82.235B|ICD10CM|Nondisp oblique fx shaft of l tibia, 7thB|Nondisp oblique fx shaft of l tibia, 7thB +C2862154|T037|AB|S82.235C|ICD10CM|Nondisp oblique fx shaft of l tibia, 7thC|Nondisp oblique fx shaft of l tibia, 7thC +C2862155|T037|AB|S82.235D|ICD10CM|Nondisp oblique fx shaft of l tibia, 7thD|Nondisp oblique fx shaft of l tibia, 7thD +C2862156|T037|AB|S82.235E|ICD10CM|Nondisp oblique fx shaft of l tibia, 7thE|Nondisp oblique fx shaft of l tibia, 7thE +C2862157|T037|AB|S82.235F|ICD10CM|Nondisp oblique fx shaft of l tibia, 7thF|Nondisp oblique fx shaft of l tibia, 7thF +C2862158|T037|AB|S82.235G|ICD10CM|Nondisp oblique fx shaft of l tibia, 7thG|Nondisp oblique fx shaft of l tibia, 7thG +C2862159|T037|AB|S82.235H|ICD10CM|Nondisp oblique fx shaft of l tibia, 7thH|Nondisp oblique fx shaft of l tibia, 7thH +C2862160|T037|AB|S82.235J|ICD10CM|Nondisp oblique fx shaft of l tibia, 7thJ|Nondisp oblique fx shaft of l tibia, 7thJ +C2862161|T037|AB|S82.235K|ICD10CM|Nondisp oblique fx shaft of l tibia, 7thK|Nondisp oblique fx shaft of l tibia, 7thK +C2862162|T037|AB|S82.235M|ICD10CM|Nondisp oblique fx shaft of l tibia, 7thM|Nondisp oblique fx shaft of l tibia, 7thM +C2862163|T037|AB|S82.235N|ICD10CM|Nondisp oblique fx shaft of l tibia, 7thN|Nondisp oblique fx shaft of l tibia, 7thN +C2862164|T037|AB|S82.235P|ICD10CM|Nondisp oblique fx shaft of l tibia, 7thP|Nondisp oblique fx shaft of l tibia, 7thP +C2862165|T037|AB|S82.235Q|ICD10CM|Nondisp oblique fx shaft of l tibia, 7thQ|Nondisp oblique fx shaft of l tibia, 7thQ +C2862166|T037|AB|S82.235R|ICD10CM|Nondisp oblique fx shaft of l tibia, 7thR|Nondisp oblique fx shaft of l tibia, 7thR +C2862167|T037|AB|S82.235S|ICD10CM|Nondisp oblique fracture of shaft of left tibia, sequela|Nondisp oblique fracture of shaft of left tibia, sequela +C2862167|T037|PT|S82.235S|ICD10CM|Nondisplaced oblique fracture of shaft of left tibia, sequela|Nondisplaced oblique fracture of shaft of left tibia, sequela +C2862168|T037|AB|S82.236|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified tibia|Nondisplaced oblique fracture of shaft of unspecified tibia +C2862168|T037|HT|S82.236|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified tibia|Nondisplaced oblique fracture of shaft of unspecified tibia +C2862169|T037|AB|S82.236A|ICD10CM|Nondisplaced oblique fracture of shaft of unsp tibia, init|Nondisplaced oblique fracture of shaft of unsp tibia, init +C2862169|T037|PT|S82.236A|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified tibia, initial encounter for closed fracture|Nondisplaced oblique fracture of shaft of unspecified tibia, initial encounter for closed fracture +C2862170|T037|AB|S82.236B|ICD10CM|Nondisp oblique fx shaft of unsp tibia, 7thB|Nondisp oblique fx shaft of unsp tibia, 7thB +C2862171|T037|AB|S82.236C|ICD10CM|Nondisp oblique fx shaft of unsp tibia, 7thC|Nondisp oblique fx shaft of unsp tibia, 7thC +C2862172|T037|AB|S82.236D|ICD10CM|Nondisp oblique fx shaft of unsp tibia, 7thD|Nondisp oblique fx shaft of unsp tibia, 7thD +C2862173|T037|AB|S82.236E|ICD10CM|Nondisp oblique fx shaft of unsp tibia, 7thE|Nondisp oblique fx shaft of unsp tibia, 7thE +C2862174|T037|AB|S82.236F|ICD10CM|Nondisp oblique fx shaft of unsp tibia, 7thF|Nondisp oblique fx shaft of unsp tibia, 7thF +C2862175|T037|AB|S82.236G|ICD10CM|Nondisp oblique fx shaft of unsp tibia, 7thG|Nondisp oblique fx shaft of unsp tibia, 7thG +C2862176|T037|AB|S82.236H|ICD10CM|Nondisp oblique fx shaft of unsp tibia, 7thH|Nondisp oblique fx shaft of unsp tibia, 7thH +C2862177|T037|AB|S82.236J|ICD10CM|Nondisp oblique fx shaft of unsp tibia, 7thJ|Nondisp oblique fx shaft of unsp tibia, 7thJ +C2862178|T037|AB|S82.236K|ICD10CM|Nondisp oblique fx shaft of unsp tibia, 7thK|Nondisp oblique fx shaft of unsp tibia, 7thK +C2862179|T037|AB|S82.236M|ICD10CM|Nondisp oblique fx shaft of unsp tibia, 7thM|Nondisp oblique fx shaft of unsp tibia, 7thM +C2862180|T037|AB|S82.236N|ICD10CM|Nondisp oblique fx shaft of unsp tibia, 7thN|Nondisp oblique fx shaft of unsp tibia, 7thN +C2862181|T037|AB|S82.236P|ICD10CM|Nondisp oblique fx shaft of unsp tibia, 7thP|Nondisp oblique fx shaft of unsp tibia, 7thP +C2862182|T037|AB|S82.236Q|ICD10CM|Nondisp oblique fx shaft of unsp tibia, 7thQ|Nondisp oblique fx shaft of unsp tibia, 7thQ +C2862183|T037|AB|S82.236R|ICD10CM|Nondisp oblique fx shaft of unsp tibia, 7thR|Nondisp oblique fx shaft of unsp tibia, 7thR +C2862184|T037|AB|S82.236S|ICD10CM|Nondisp oblique fracture of shaft of unsp tibia, sequela|Nondisp oblique fracture of shaft of unsp tibia, sequela +C2862184|T037|PT|S82.236S|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified tibia, sequela|Nondisplaced oblique fracture of shaft of unspecified tibia, sequela +C2862186|T037|AB|S82.24|ICD10CM|Spiral fracture of shaft of tibia|Spiral fracture of shaft of tibia +C2862186|T037|HT|S82.24|ICD10CM|Spiral fracture of shaft of tibia|Spiral fracture of shaft of tibia +C2862185|T037|ET|S82.24|ICD10CM|Toddler fracture|Toddler fracture +C2862187|T037|AB|S82.241|ICD10CM|Displaced spiral fracture of shaft of right tibia|Displaced spiral fracture of shaft of right tibia +C2862187|T037|HT|S82.241|ICD10CM|Displaced spiral fracture of shaft of right tibia|Displaced spiral fracture of shaft of right tibia +C2862188|T037|AB|S82.241A|ICD10CM|Displaced spiral fracture of shaft of right tibia, init|Displaced spiral fracture of shaft of right tibia, init +C2862188|T037|PT|S82.241A|ICD10CM|Displaced spiral fracture of shaft of right tibia, initial encounter for closed fracture|Displaced spiral fracture of shaft of right tibia, initial encounter for closed fracture +C2862189|T037|AB|S82.241B|ICD10CM|Displ spiral fx shaft of r tibia, init for opn fx type I/2|Displ spiral fx shaft of r tibia, init for opn fx type I/2 +C2862189|T037|PT|S82.241B|ICD10CM|Displaced spiral fracture of shaft of right tibia, initial encounter for open fracture type I or II|Displaced spiral fracture of shaft of right tibia, initial encounter for open fracture type I or II +C2862190|T037|AB|S82.241C|ICD10CM|Displ spiral fx shaft of r tibia, 7thC|Displ spiral fx shaft of r tibia, 7thC +C2862191|T037|AB|S82.241D|ICD10CM|Displ spiral fx shaft of r tibia, 7thD|Displ spiral fx shaft of r tibia, 7thD +C2862192|T037|AB|S82.241E|ICD10CM|Displ spiral fx shaft of r tibia, 7thE|Displ spiral fx shaft of r tibia, 7thE +C2862193|T037|AB|S82.241F|ICD10CM|Displ spiral fx shaft of r tibia, 7thF|Displ spiral fx shaft of r tibia, 7thF +C2862194|T037|AB|S82.241G|ICD10CM|Displ spiral fx shaft of r tibia, 7thG|Displ spiral fx shaft of r tibia, 7thG +C2862195|T037|AB|S82.241H|ICD10CM|Displ spiral fx shaft of r tibia, 7thH|Displ spiral fx shaft of r tibia, 7thH +C2862196|T037|AB|S82.241J|ICD10CM|Displ spiral fx shaft of r tibia, 7thJ|Displ spiral fx shaft of r tibia, 7thJ +C2862197|T037|AB|S82.241K|ICD10CM|Displ spiral fx shaft of r tibia, 7thK|Displ spiral fx shaft of r tibia, 7thK +C2862198|T037|AB|S82.241M|ICD10CM|Displ spiral fx shaft of r tibia, 7thM|Displ spiral fx shaft of r tibia, 7thM +C2862199|T037|AB|S82.241N|ICD10CM|Displ spiral fx shaft of r tibia, 7thN|Displ spiral fx shaft of r tibia, 7thN +C2862200|T037|AB|S82.241P|ICD10CM|Displ spiral fx shaft of r tibia, 7thP|Displ spiral fx shaft of r tibia, 7thP +C2862201|T037|AB|S82.241Q|ICD10CM|Displ spiral fx shaft of r tibia, 7thQ|Displ spiral fx shaft of r tibia, 7thQ +C2862202|T037|AB|S82.241R|ICD10CM|Displ spiral fx shaft of r tibia, 7thR|Displ spiral fx shaft of r tibia, 7thR +C2862203|T037|PT|S82.241S|ICD10CM|Displaced spiral fracture of shaft of right tibia, sequela|Displaced spiral fracture of shaft of right tibia, sequela +C2862203|T037|AB|S82.241S|ICD10CM|Displaced spiral fracture of shaft of right tibia, sequela|Displaced spiral fracture of shaft of right tibia, sequela +C2862204|T037|AB|S82.242|ICD10CM|Displaced spiral fracture of shaft of left tibia|Displaced spiral fracture of shaft of left tibia +C2862204|T037|HT|S82.242|ICD10CM|Displaced spiral fracture of shaft of left tibia|Displaced spiral fracture of shaft of left tibia +C2862205|T037|AB|S82.242A|ICD10CM|Displaced spiral fracture of shaft of left tibia, init|Displaced spiral fracture of shaft of left tibia, init +C2862205|T037|PT|S82.242A|ICD10CM|Displaced spiral fracture of shaft of left tibia, initial encounter for closed fracture|Displaced spiral fracture of shaft of left tibia, initial encounter for closed fracture +C2862206|T037|AB|S82.242B|ICD10CM|Displ spiral fx shaft of l tibia, init for opn fx type I/2|Displ spiral fx shaft of l tibia, init for opn fx type I/2 +C2862206|T037|PT|S82.242B|ICD10CM|Displaced spiral fracture of shaft of left tibia, initial encounter for open fracture type I or II|Displaced spiral fracture of shaft of left tibia, initial encounter for open fracture type I or II +C2862207|T037|AB|S82.242C|ICD10CM|Displ spiral fx shaft of l tibia, 7thC|Displ spiral fx shaft of l tibia, 7thC +C2862208|T037|AB|S82.242D|ICD10CM|Displ spiral fx shaft of l tibia, 7thD|Displ spiral fx shaft of l tibia, 7thD +C2862209|T037|AB|S82.242E|ICD10CM|Displ spiral fx shaft of l tibia, 7thE|Displ spiral fx shaft of l tibia, 7thE +C2862210|T037|AB|S82.242F|ICD10CM|Displ spiral fx shaft of l tibia, 7thF|Displ spiral fx shaft of l tibia, 7thF +C2862211|T037|AB|S82.242G|ICD10CM|Displ spiral fx shaft of l tibia, 7thG|Displ spiral fx shaft of l tibia, 7thG +C2862212|T037|AB|S82.242H|ICD10CM|Displ spiral fx shaft of l tibia, 7thH|Displ spiral fx shaft of l tibia, 7thH +C2862213|T037|AB|S82.242J|ICD10CM|Displ spiral fx shaft of l tibia, 7thJ|Displ spiral fx shaft of l tibia, 7thJ +C2862214|T037|AB|S82.242K|ICD10CM|Displ spiral fx shaft of l tibia, 7thK|Displ spiral fx shaft of l tibia, 7thK +C2862215|T037|AB|S82.242M|ICD10CM|Displ spiral fx shaft of l tibia, 7thM|Displ spiral fx shaft of l tibia, 7thM +C2862216|T037|AB|S82.242N|ICD10CM|Displ spiral fx shaft of l tibia, 7thN|Displ spiral fx shaft of l tibia, 7thN +C2862217|T037|AB|S82.242P|ICD10CM|Displ spiral fx shaft of l tibia, 7thP|Displ spiral fx shaft of l tibia, 7thP +C2862218|T037|AB|S82.242Q|ICD10CM|Displ spiral fx shaft of l tibia, 7thQ|Displ spiral fx shaft of l tibia, 7thQ +C2862219|T037|AB|S82.242R|ICD10CM|Displ spiral fx shaft of l tibia, 7thR|Displ spiral fx shaft of l tibia, 7thR +C2862220|T037|AB|S82.242S|ICD10CM|Displaced spiral fracture of shaft of left tibia, sequela|Displaced spiral fracture of shaft of left tibia, sequela +C2862220|T037|PT|S82.242S|ICD10CM|Displaced spiral fracture of shaft of left tibia, sequela|Displaced spiral fracture of shaft of left tibia, sequela +C2862221|T037|AB|S82.243|ICD10CM|Displaced spiral fracture of shaft of unspecified tibia|Displaced spiral fracture of shaft of unspecified tibia +C2862221|T037|HT|S82.243|ICD10CM|Displaced spiral fracture of shaft of unspecified tibia|Displaced spiral fracture of shaft of unspecified tibia +C2862222|T037|AB|S82.243A|ICD10CM|Displaced spiral fracture of shaft of unsp tibia, init|Displaced spiral fracture of shaft of unsp tibia, init +C2862222|T037|PT|S82.243A|ICD10CM|Displaced spiral fracture of shaft of unspecified tibia, initial encounter for closed fracture|Displaced spiral fracture of shaft of unspecified tibia, initial encounter for closed fracture +C2862223|T037|AB|S82.243B|ICD10CM|Displ spiral fx shaft of unsp tibia, 7thB|Displ spiral fx shaft of unsp tibia, 7thB +C2862224|T037|AB|S82.243C|ICD10CM|Displ spiral fx shaft of unsp tibia, 7thC|Displ spiral fx shaft of unsp tibia, 7thC +C2862225|T037|AB|S82.243D|ICD10CM|Displ spiral fx shaft of unsp tibia, 7thD|Displ spiral fx shaft of unsp tibia, 7thD +C2862226|T037|AB|S82.243E|ICD10CM|Displ spiral fx shaft of unsp tibia, 7thE|Displ spiral fx shaft of unsp tibia, 7thE +C2862227|T037|AB|S82.243F|ICD10CM|Displ spiral fx shaft of unsp tibia, 7thF|Displ spiral fx shaft of unsp tibia, 7thF +C2862228|T037|AB|S82.243G|ICD10CM|Displ spiral fx shaft of unsp tibia, 7thG|Displ spiral fx shaft of unsp tibia, 7thG +C2862229|T037|AB|S82.243H|ICD10CM|Displ spiral fx shaft of unsp tibia, 7thH|Displ spiral fx shaft of unsp tibia, 7thH +C2862230|T037|AB|S82.243J|ICD10CM|Displ spiral fx shaft of unsp tibia, 7thJ|Displ spiral fx shaft of unsp tibia, 7thJ +C2862231|T037|AB|S82.243K|ICD10CM|Displ spiral fx shaft of unsp tibia, 7thK|Displ spiral fx shaft of unsp tibia, 7thK +C2862232|T037|AB|S82.243M|ICD10CM|Displ spiral fx shaft of unsp tibia, 7thM|Displ spiral fx shaft of unsp tibia, 7thM +C2862233|T037|AB|S82.243N|ICD10CM|Displ spiral fx shaft of unsp tibia, 7thN|Displ spiral fx shaft of unsp tibia, 7thN +C2862234|T037|AB|S82.243P|ICD10CM|Displ spiral fx shaft of unsp tibia, 7thP|Displ spiral fx shaft of unsp tibia, 7thP +C2862235|T037|AB|S82.243Q|ICD10CM|Displ spiral fx shaft of unsp tibia, 7thQ|Displ spiral fx shaft of unsp tibia, 7thQ +C2862236|T037|AB|S82.243R|ICD10CM|Displ spiral fx shaft of unsp tibia, 7thR|Displ spiral fx shaft of unsp tibia, 7thR +C2862237|T037|AB|S82.243S|ICD10CM|Displaced spiral fracture of shaft of unsp tibia, sequela|Displaced spiral fracture of shaft of unsp tibia, sequela +C2862237|T037|PT|S82.243S|ICD10CM|Displaced spiral fracture of shaft of unspecified tibia, sequela|Displaced spiral fracture of shaft of unspecified tibia, sequela +C2862238|T037|AB|S82.244|ICD10CM|Nondisplaced spiral fracture of shaft of right tibia|Nondisplaced spiral fracture of shaft of right tibia +C2862238|T037|HT|S82.244|ICD10CM|Nondisplaced spiral fracture of shaft of right tibia|Nondisplaced spiral fracture of shaft of right tibia +C2862239|T037|AB|S82.244A|ICD10CM|Nondisplaced spiral fracture of shaft of right tibia, init|Nondisplaced spiral fracture of shaft of right tibia, init +C2862239|T037|PT|S82.244A|ICD10CM|Nondisplaced spiral fracture of shaft of right tibia, initial encounter for closed fracture|Nondisplaced spiral fracture of shaft of right tibia, initial encounter for closed fracture +C2862240|T037|AB|S82.244B|ICD10CM|Nondisp spiral fx shaft of r tibia, init for opn fx type I/2|Nondisp spiral fx shaft of r tibia, init for opn fx type I/2 +C2862241|T037|AB|S82.244C|ICD10CM|Nondisp spiral fx shaft of r tibia, 7thC|Nondisp spiral fx shaft of r tibia, 7thC +C2862242|T037|AB|S82.244D|ICD10CM|Nondisp spiral fx shaft of r tibia, 7thD|Nondisp spiral fx shaft of r tibia, 7thD +C2862243|T037|AB|S82.244E|ICD10CM|Nondisp spiral fx shaft of r tibia, 7thE|Nondisp spiral fx shaft of r tibia, 7thE +C2862244|T037|AB|S82.244F|ICD10CM|Nondisp spiral fx shaft of r tibia, 7thF|Nondisp spiral fx shaft of r tibia, 7thF +C2862245|T037|AB|S82.244G|ICD10CM|Nondisp spiral fx shaft of r tibia, 7thG|Nondisp spiral fx shaft of r tibia, 7thG +C2862246|T037|AB|S82.244H|ICD10CM|Nondisp spiral fx shaft of r tibia, 7thH|Nondisp spiral fx shaft of r tibia, 7thH +C2862247|T037|AB|S82.244J|ICD10CM|Nondisp spiral fx shaft of r tibia, 7thJ|Nondisp spiral fx shaft of r tibia, 7thJ +C2862248|T037|AB|S82.244K|ICD10CM|Nondisp spiral fx shaft of r tibia, 7thK|Nondisp spiral fx shaft of r tibia, 7thK +C2862249|T037|AB|S82.244M|ICD10CM|Nondisp spiral fx shaft of r tibia, 7thM|Nondisp spiral fx shaft of r tibia, 7thM +C2862250|T037|AB|S82.244N|ICD10CM|Nondisp spiral fx shaft of r tibia, 7thN|Nondisp spiral fx shaft of r tibia, 7thN +C2862251|T037|AB|S82.244P|ICD10CM|Nondisp spiral fx shaft of r tibia, 7thP|Nondisp spiral fx shaft of r tibia, 7thP +C2862252|T037|AB|S82.244Q|ICD10CM|Nondisp spiral fx shaft of r tibia, 7thQ|Nondisp spiral fx shaft of r tibia, 7thQ +C2862253|T037|AB|S82.244R|ICD10CM|Nondisp spiral fx shaft of r tibia, 7thR|Nondisp spiral fx shaft of r tibia, 7thR +C2862254|T037|AB|S82.244S|ICD10CM|Nondisp spiral fracture of shaft of right tibia, sequela|Nondisp spiral fracture of shaft of right tibia, sequela +C2862254|T037|PT|S82.244S|ICD10CM|Nondisplaced spiral fracture of shaft of right tibia, sequela|Nondisplaced spiral fracture of shaft of right tibia, sequela +C2862255|T037|AB|S82.245|ICD10CM|Nondisplaced spiral fracture of shaft of left tibia|Nondisplaced spiral fracture of shaft of left tibia +C2862255|T037|HT|S82.245|ICD10CM|Nondisplaced spiral fracture of shaft of left tibia|Nondisplaced spiral fracture of shaft of left tibia +C2862256|T037|AB|S82.245A|ICD10CM|Nondisplaced spiral fracture of shaft of left tibia, init|Nondisplaced spiral fracture of shaft of left tibia, init +C2862256|T037|PT|S82.245A|ICD10CM|Nondisplaced spiral fracture of shaft of left tibia, initial encounter for closed fracture|Nondisplaced spiral fracture of shaft of left tibia, initial encounter for closed fracture +C2862257|T037|AB|S82.245B|ICD10CM|Nondisp spiral fx shaft of l tibia, init for opn fx type I/2|Nondisp spiral fx shaft of l tibia, init for opn fx type I/2 +C2862258|T037|AB|S82.245C|ICD10CM|Nondisp spiral fx shaft of l tibia, 7thC|Nondisp spiral fx shaft of l tibia, 7thC +C2862259|T037|AB|S82.245D|ICD10CM|Nondisp spiral fx shaft of l tibia, 7thD|Nondisp spiral fx shaft of l tibia, 7thD +C2862260|T037|AB|S82.245E|ICD10CM|Nondisp spiral fx shaft of l tibia, 7thE|Nondisp spiral fx shaft of l tibia, 7thE +C2862261|T037|AB|S82.245F|ICD10CM|Nondisp spiral fx shaft of l tibia, 7thF|Nondisp spiral fx shaft of l tibia, 7thF +C2862262|T037|AB|S82.245G|ICD10CM|Nondisp spiral fx shaft of l tibia, 7thG|Nondisp spiral fx shaft of l tibia, 7thG +C2862263|T037|AB|S82.245H|ICD10CM|Nondisp spiral fx shaft of l tibia, 7thH|Nondisp spiral fx shaft of l tibia, 7thH +C2862264|T037|AB|S82.245J|ICD10CM|Nondisp spiral fx shaft of l tibia, 7thJ|Nondisp spiral fx shaft of l tibia, 7thJ +C2862265|T037|AB|S82.245K|ICD10CM|Nondisp spiral fx shaft of l tibia, 7thK|Nondisp spiral fx shaft of l tibia, 7thK +C2862266|T037|AB|S82.245M|ICD10CM|Nondisp spiral fx shaft of l tibia, 7thM|Nondisp spiral fx shaft of l tibia, 7thM +C2862267|T037|AB|S82.245N|ICD10CM|Nondisp spiral fx shaft of l tibia, 7thN|Nondisp spiral fx shaft of l tibia, 7thN +C2862268|T037|AB|S82.245P|ICD10CM|Nondisp spiral fx shaft of l tibia, 7thP|Nondisp spiral fx shaft of l tibia, 7thP +C2862269|T037|AB|S82.245Q|ICD10CM|Nondisp spiral fx shaft of l tibia, 7thQ|Nondisp spiral fx shaft of l tibia, 7thQ +C2862270|T037|AB|S82.245R|ICD10CM|Nondisp spiral fx shaft of l tibia, 7thR|Nondisp spiral fx shaft of l tibia, 7thR +C2862271|T037|AB|S82.245S|ICD10CM|Nondisplaced spiral fracture of shaft of left tibia, sequela|Nondisplaced spiral fracture of shaft of left tibia, sequela +C2862271|T037|PT|S82.245S|ICD10CM|Nondisplaced spiral fracture of shaft of left tibia, sequela|Nondisplaced spiral fracture of shaft of left tibia, sequela +C2862272|T037|AB|S82.246|ICD10CM|Nondisplaced spiral fracture of shaft of unspecified tibia|Nondisplaced spiral fracture of shaft of unspecified tibia +C2862272|T037|HT|S82.246|ICD10CM|Nondisplaced spiral fracture of shaft of unspecified tibia|Nondisplaced spiral fracture of shaft of unspecified tibia +C2862273|T037|AB|S82.246A|ICD10CM|Nondisplaced spiral fracture of shaft of unsp tibia, init|Nondisplaced spiral fracture of shaft of unsp tibia, init +C2862273|T037|PT|S82.246A|ICD10CM|Nondisplaced spiral fracture of shaft of unspecified tibia, initial encounter for closed fracture|Nondisplaced spiral fracture of shaft of unspecified tibia, initial encounter for closed fracture +C2862274|T037|AB|S82.246B|ICD10CM|Nondisp spiral fx shaft of unsp tibia, 7thB|Nondisp spiral fx shaft of unsp tibia, 7thB +C2862275|T037|AB|S82.246C|ICD10CM|Nondisp spiral fx shaft of unsp tibia, 7thC|Nondisp spiral fx shaft of unsp tibia, 7thC +C2862276|T037|AB|S82.246D|ICD10CM|Nondisp spiral fx shaft of unsp tibia, 7thD|Nondisp spiral fx shaft of unsp tibia, 7thD +C2862277|T037|AB|S82.246E|ICD10CM|Nondisp spiral fx shaft of unsp tibia, 7thE|Nondisp spiral fx shaft of unsp tibia, 7thE +C2862278|T037|AB|S82.246F|ICD10CM|Nondisp spiral fx shaft of unsp tibia, 7thF|Nondisp spiral fx shaft of unsp tibia, 7thF +C2862279|T037|AB|S82.246G|ICD10CM|Nondisp spiral fx shaft of unsp tibia, 7thG|Nondisp spiral fx shaft of unsp tibia, 7thG +C2862280|T037|AB|S82.246H|ICD10CM|Nondisp spiral fx shaft of unsp tibia, 7thH|Nondisp spiral fx shaft of unsp tibia, 7thH +C2862281|T037|AB|S82.246J|ICD10CM|Nondisp spiral fx shaft of unsp tibia, 7thJ|Nondisp spiral fx shaft of unsp tibia, 7thJ +C2862282|T037|AB|S82.246K|ICD10CM|Nondisp spiral fx shaft of unsp tibia, 7thK|Nondisp spiral fx shaft of unsp tibia, 7thK +C2862283|T037|AB|S82.246M|ICD10CM|Nondisp spiral fx shaft of unsp tibia, 7thM|Nondisp spiral fx shaft of unsp tibia, 7thM +C2862284|T037|AB|S82.246N|ICD10CM|Nondisp spiral fx shaft of unsp tibia, 7thN|Nondisp spiral fx shaft of unsp tibia, 7thN +C2862285|T037|AB|S82.246P|ICD10CM|Nondisp spiral fx shaft of unsp tibia, 7thP|Nondisp spiral fx shaft of unsp tibia, 7thP +C2862286|T037|AB|S82.246Q|ICD10CM|Nondisp spiral fx shaft of unsp tibia, 7thQ|Nondisp spiral fx shaft of unsp tibia, 7thQ +C2862287|T037|AB|S82.246R|ICD10CM|Nondisp spiral fx shaft of unsp tibia, 7thR|Nondisp spiral fx shaft of unsp tibia, 7thR +C2862288|T037|AB|S82.246S|ICD10CM|Nondisplaced spiral fracture of shaft of unsp tibia, sequela|Nondisplaced spiral fracture of shaft of unsp tibia, sequela +C2862288|T037|PT|S82.246S|ICD10CM|Nondisplaced spiral fracture of shaft of unspecified tibia, sequela|Nondisplaced spiral fracture of shaft of unspecified tibia, sequela +C2862289|T037|AB|S82.25|ICD10CM|Comminuted fracture of shaft of tibia|Comminuted fracture of shaft of tibia +C2862289|T037|HT|S82.25|ICD10CM|Comminuted fracture of shaft of tibia|Comminuted fracture of shaft of tibia +C2862290|T037|AB|S82.251|ICD10CM|Displaced comminuted fracture of shaft of right tibia|Displaced comminuted fracture of shaft of right tibia +C2862290|T037|HT|S82.251|ICD10CM|Displaced comminuted fracture of shaft of right tibia|Displaced comminuted fracture of shaft of right tibia +C2862291|T037|AB|S82.251A|ICD10CM|Displaced comminuted fracture of shaft of right tibia, init|Displaced comminuted fracture of shaft of right tibia, init +C2862291|T037|PT|S82.251A|ICD10CM|Displaced comminuted fracture of shaft of right tibia, initial encounter for closed fracture|Displaced comminuted fracture of shaft of right tibia, initial encounter for closed fracture +C2862292|T037|AB|S82.251B|ICD10CM|Displ commnt fx shaft of r tibia, init for opn fx type I/2|Displ commnt fx shaft of r tibia, init for opn fx type I/2 +C2862293|T037|AB|S82.251C|ICD10CM|Displ commnt fx shaft of r tibia, 7thC|Displ commnt fx shaft of r tibia, 7thC +C2862294|T037|AB|S82.251D|ICD10CM|Displ commnt fx shaft of r tibia, 7thD|Displ commnt fx shaft of r tibia, 7thD +C2862295|T037|AB|S82.251E|ICD10CM|Displ commnt fx shaft of r tibia, 7thE|Displ commnt fx shaft of r tibia, 7thE +C2862296|T037|AB|S82.251F|ICD10CM|Displ commnt fx shaft of r tibia, 7thF|Displ commnt fx shaft of r tibia, 7thF +C2862297|T037|AB|S82.251G|ICD10CM|Displ commnt fx shaft of r tibia, 7thG|Displ commnt fx shaft of r tibia, 7thG +C2862298|T037|AB|S82.251H|ICD10CM|Displ commnt fx shaft of r tibia, 7thH|Displ commnt fx shaft of r tibia, 7thH +C2862299|T037|AB|S82.251J|ICD10CM|Displ commnt fx shaft of r tibia, 7thJ|Displ commnt fx shaft of r tibia, 7thJ +C2862300|T037|AB|S82.251K|ICD10CM|Displ commnt fx shaft of r tibia, 7thK|Displ commnt fx shaft of r tibia, 7thK +C2862301|T037|AB|S82.251M|ICD10CM|Displ commnt fx shaft of r tibia, 7thM|Displ commnt fx shaft of r tibia, 7thM +C2862302|T037|AB|S82.251N|ICD10CM|Displ commnt fx shaft of r tibia, 7thN|Displ commnt fx shaft of r tibia, 7thN +C2862303|T037|AB|S82.251P|ICD10CM|Displ commnt fx shaft of r tibia, 7thP|Displ commnt fx shaft of r tibia, 7thP +C2862304|T037|AB|S82.251Q|ICD10CM|Displ commnt fx shaft of r tibia, 7thQ|Displ commnt fx shaft of r tibia, 7thQ +C2862305|T037|AB|S82.251R|ICD10CM|Displ commnt fx shaft of r tibia, 7thR|Displ commnt fx shaft of r tibia, 7thR +C2862306|T037|PT|S82.251S|ICD10CM|Displaced comminuted fracture of shaft of right tibia, sequela|Displaced comminuted fracture of shaft of right tibia, sequela +C2862306|T037|AB|S82.251S|ICD10CM|Displaced comminuted fx shaft of right tibia, sequela|Displaced comminuted fx shaft of right tibia, sequela +C2862307|T037|AB|S82.252|ICD10CM|Displaced comminuted fracture of shaft of left tibia|Displaced comminuted fracture of shaft of left tibia +C2862307|T037|HT|S82.252|ICD10CM|Displaced comminuted fracture of shaft of left tibia|Displaced comminuted fracture of shaft of left tibia +C2862308|T037|AB|S82.252A|ICD10CM|Displaced comminuted fracture of shaft of left tibia, init|Displaced comminuted fracture of shaft of left tibia, init +C2862308|T037|PT|S82.252A|ICD10CM|Displaced comminuted fracture of shaft of left tibia, initial encounter for closed fracture|Displaced comminuted fracture of shaft of left tibia, initial encounter for closed fracture +C2862309|T037|AB|S82.252B|ICD10CM|Displ commnt fx shaft of l tibia, init for opn fx type I/2|Displ commnt fx shaft of l tibia, init for opn fx type I/2 +C2862310|T037|AB|S82.252C|ICD10CM|Displ commnt fx shaft of l tibia, 7thC|Displ commnt fx shaft of l tibia, 7thC +C2862311|T037|AB|S82.252D|ICD10CM|Displ commnt fx shaft of l tibia, 7thD|Displ commnt fx shaft of l tibia, 7thD +C2862312|T037|AB|S82.252E|ICD10CM|Displ commnt fx shaft of l tibia, 7thE|Displ commnt fx shaft of l tibia, 7thE +C2862313|T037|AB|S82.252F|ICD10CM|Displ commnt fx shaft of l tibia, 7thF|Displ commnt fx shaft of l tibia, 7thF +C2862314|T037|AB|S82.252G|ICD10CM|Displ commnt fx shaft of l tibia, 7thG|Displ commnt fx shaft of l tibia, 7thG +C2862315|T037|AB|S82.252H|ICD10CM|Displ commnt fx shaft of l tibia, 7thH|Displ commnt fx shaft of l tibia, 7thH +C2862316|T037|AB|S82.252J|ICD10CM|Displ commnt fx shaft of l tibia, 7thJ|Displ commnt fx shaft of l tibia, 7thJ +C2862317|T037|AB|S82.252K|ICD10CM|Displ commnt fx shaft of l tibia, 7thK|Displ commnt fx shaft of l tibia, 7thK +C2862318|T037|AB|S82.252M|ICD10CM|Displ commnt fx shaft of l tibia, 7thM|Displ commnt fx shaft of l tibia, 7thM +C2862319|T037|AB|S82.252N|ICD10CM|Displ commnt fx shaft of l tibia, 7thN|Displ commnt fx shaft of l tibia, 7thN +C2862320|T037|AB|S82.252P|ICD10CM|Displ commnt fx shaft of l tibia, 7thP|Displ commnt fx shaft of l tibia, 7thP +C2862321|T037|AB|S82.252Q|ICD10CM|Displ commnt fx shaft of l tibia, 7thQ|Displ commnt fx shaft of l tibia, 7thQ +C2862322|T037|AB|S82.252R|ICD10CM|Displ commnt fx shaft of l tibia, 7thR|Displ commnt fx shaft of l tibia, 7thR +C2862323|T037|PT|S82.252S|ICD10CM|Displaced comminuted fracture of shaft of left tibia, sequela|Displaced comminuted fracture of shaft of left tibia, sequela +C2862323|T037|AB|S82.252S|ICD10CM|Displaced comminuted fx shaft of left tibia, sequela|Displaced comminuted fx shaft of left tibia, sequela +C2862324|T037|AB|S82.253|ICD10CM|Displaced comminuted fracture of shaft of unspecified tibia|Displaced comminuted fracture of shaft of unspecified tibia +C2862324|T037|HT|S82.253|ICD10CM|Displaced comminuted fracture of shaft of unspecified tibia|Displaced comminuted fracture of shaft of unspecified tibia +C2862325|T037|AB|S82.253A|ICD10CM|Displaced comminuted fracture of shaft of unsp tibia, init|Displaced comminuted fracture of shaft of unsp tibia, init +C2862325|T037|PT|S82.253A|ICD10CM|Displaced comminuted fracture of shaft of unspecified tibia, initial encounter for closed fracture|Displaced comminuted fracture of shaft of unspecified tibia, initial encounter for closed fracture +C2862326|T037|AB|S82.253B|ICD10CM|Displ commnt fx shaft of unsp tibia, 7thB|Displ commnt fx shaft of unsp tibia, 7thB +C2862327|T037|AB|S82.253C|ICD10CM|Displ commnt fx shaft of unsp tibia, 7thC|Displ commnt fx shaft of unsp tibia, 7thC +C2862328|T037|AB|S82.253D|ICD10CM|Displ commnt fx shaft of unsp tibia, 7thD|Displ commnt fx shaft of unsp tibia, 7thD +C2862329|T037|AB|S82.253E|ICD10CM|Displ commnt fx shaft of unsp tibia, 7thE|Displ commnt fx shaft of unsp tibia, 7thE +C2862330|T037|AB|S82.253F|ICD10CM|Displ commnt fx shaft of unsp tibia, 7thF|Displ commnt fx shaft of unsp tibia, 7thF +C2862331|T037|AB|S82.253G|ICD10CM|Displ commnt fx shaft of unsp tibia, 7thG|Displ commnt fx shaft of unsp tibia, 7thG +C2862332|T037|AB|S82.253H|ICD10CM|Displ commnt fx shaft of unsp tibia, 7thH|Displ commnt fx shaft of unsp tibia, 7thH +C2862333|T037|AB|S82.253J|ICD10CM|Displ commnt fx shaft of unsp tibia, 7thJ|Displ commnt fx shaft of unsp tibia, 7thJ +C2862334|T037|AB|S82.253K|ICD10CM|Displ commnt fx shaft of unsp tibia, 7thK|Displ commnt fx shaft of unsp tibia, 7thK +C2862335|T037|AB|S82.253M|ICD10CM|Displ commnt fx shaft of unsp tibia, 7thM|Displ commnt fx shaft of unsp tibia, 7thM +C2862336|T037|AB|S82.253N|ICD10CM|Displ commnt fx shaft of unsp tibia, 7thN|Displ commnt fx shaft of unsp tibia, 7thN +C2862337|T037|AB|S82.253P|ICD10CM|Displ commnt fx shaft of unsp tibia, 7thP|Displ commnt fx shaft of unsp tibia, 7thP +C2862338|T037|AB|S82.253Q|ICD10CM|Displ commnt fx shaft of unsp tibia, 7thQ|Displ commnt fx shaft of unsp tibia, 7thQ +C2862339|T037|AB|S82.253R|ICD10CM|Displ commnt fx shaft of unsp tibia, 7thR|Displ commnt fx shaft of unsp tibia, 7thR +C2862340|T037|PT|S82.253S|ICD10CM|Displaced comminuted fracture of shaft of unspecified tibia, sequela|Displaced comminuted fracture of shaft of unspecified tibia, sequela +C2862340|T037|AB|S82.253S|ICD10CM|Displaced comminuted fx shaft of unsp tibia, sequela|Displaced comminuted fx shaft of unsp tibia, sequela +C2862341|T037|AB|S82.254|ICD10CM|Nondisplaced comminuted fracture of shaft of right tibia|Nondisplaced comminuted fracture of shaft of right tibia +C2862341|T037|HT|S82.254|ICD10CM|Nondisplaced comminuted fracture of shaft of right tibia|Nondisplaced comminuted fracture of shaft of right tibia +C2862342|T037|AB|S82.254A|ICD10CM|Nondisp comminuted fracture of shaft of right tibia, init|Nondisp comminuted fracture of shaft of right tibia, init +C2862342|T037|PT|S82.254A|ICD10CM|Nondisplaced comminuted fracture of shaft of right tibia, initial encounter for closed fracture|Nondisplaced comminuted fracture of shaft of right tibia, initial encounter for closed fracture +C2862343|T037|AB|S82.254B|ICD10CM|Nondisp commnt fx shaft of r tibia, init for opn fx type I/2|Nondisp commnt fx shaft of r tibia, init for opn fx type I/2 +C2862344|T037|AB|S82.254C|ICD10CM|Nondisp commnt fx shaft of r tibia, 7thC|Nondisp commnt fx shaft of r tibia, 7thC +C2862345|T037|AB|S82.254D|ICD10CM|Nondisp commnt fx shaft of r tibia, 7thD|Nondisp commnt fx shaft of r tibia, 7thD +C2862346|T037|AB|S82.254E|ICD10CM|Nondisp commnt fx shaft of r tibia, 7thE|Nondisp commnt fx shaft of r tibia, 7thE +C2862347|T037|AB|S82.254F|ICD10CM|Nondisp commnt fx shaft of r tibia, 7thF|Nondisp commnt fx shaft of r tibia, 7thF +C2862348|T037|AB|S82.254G|ICD10CM|Nondisp commnt fx shaft of r tibia, 7thG|Nondisp commnt fx shaft of r tibia, 7thG +C2862349|T037|AB|S82.254H|ICD10CM|Nondisp commnt fx shaft of r tibia, 7thH|Nondisp commnt fx shaft of r tibia, 7thH +C2862350|T037|AB|S82.254J|ICD10CM|Nondisp commnt fx shaft of r tibia, 7thJ|Nondisp commnt fx shaft of r tibia, 7thJ +C2862351|T037|AB|S82.254K|ICD10CM|Nondisp commnt fx shaft of r tibia, 7thK|Nondisp commnt fx shaft of r tibia, 7thK +C2862352|T037|AB|S82.254M|ICD10CM|Nondisp commnt fx shaft of r tibia, 7thM|Nondisp commnt fx shaft of r tibia, 7thM +C2862353|T037|AB|S82.254N|ICD10CM|Nondisp commnt fx shaft of r tibia, 7thN|Nondisp commnt fx shaft of r tibia, 7thN +C2862354|T037|AB|S82.254P|ICD10CM|Nondisp commnt fx shaft of r tibia, 7thP|Nondisp commnt fx shaft of r tibia, 7thP +C2862355|T037|AB|S82.254Q|ICD10CM|Nondisp commnt fx shaft of r tibia, 7thQ|Nondisp commnt fx shaft of r tibia, 7thQ +C2862356|T037|AB|S82.254R|ICD10CM|Nondisp commnt fx shaft of r tibia, 7thR|Nondisp commnt fx shaft of r tibia, 7thR +C2862357|T037|AB|S82.254S|ICD10CM|Nondisp comminuted fracture of shaft of right tibia, sequela|Nondisp comminuted fracture of shaft of right tibia, sequela +C2862357|T037|PT|S82.254S|ICD10CM|Nondisplaced comminuted fracture of shaft of right tibia, sequela|Nondisplaced comminuted fracture of shaft of right tibia, sequela +C2862358|T037|AB|S82.255|ICD10CM|Nondisplaced comminuted fracture of shaft of left tibia|Nondisplaced comminuted fracture of shaft of left tibia +C2862358|T037|HT|S82.255|ICD10CM|Nondisplaced comminuted fracture of shaft of left tibia|Nondisplaced comminuted fracture of shaft of left tibia +C2862359|T037|AB|S82.255A|ICD10CM|Nondisp comminuted fracture of shaft of left tibia, init|Nondisp comminuted fracture of shaft of left tibia, init +C2862359|T037|PT|S82.255A|ICD10CM|Nondisplaced comminuted fracture of shaft of left tibia, initial encounter for closed fracture|Nondisplaced comminuted fracture of shaft of left tibia, initial encounter for closed fracture +C2862360|T037|AB|S82.255B|ICD10CM|Nondisp commnt fx shaft of l tibia, init for opn fx type I/2|Nondisp commnt fx shaft of l tibia, init for opn fx type I/2 +C2862361|T037|AB|S82.255C|ICD10CM|Nondisp commnt fx shaft of l tibia, 7thC|Nondisp commnt fx shaft of l tibia, 7thC +C2862362|T037|AB|S82.255D|ICD10CM|Nondisp commnt fx shaft of l tibia, 7thD|Nondisp commnt fx shaft of l tibia, 7thD +C2862363|T037|AB|S82.255E|ICD10CM|Nondisp commnt fx shaft of l tibia, 7thE|Nondisp commnt fx shaft of l tibia, 7thE +C2862364|T037|AB|S82.255F|ICD10CM|Nondisp commnt fx shaft of l tibia, 7thF|Nondisp commnt fx shaft of l tibia, 7thF +C2862365|T037|AB|S82.255G|ICD10CM|Nondisp commnt fx shaft of l tibia, 7thG|Nondisp commnt fx shaft of l tibia, 7thG +C2862366|T037|AB|S82.255H|ICD10CM|Nondisp commnt fx shaft of l tibia, 7thH|Nondisp commnt fx shaft of l tibia, 7thH +C2862367|T037|AB|S82.255J|ICD10CM|Nondisp commnt fx shaft of l tibia, 7thJ|Nondisp commnt fx shaft of l tibia, 7thJ +C2862368|T037|AB|S82.255K|ICD10CM|Nondisp commnt fx shaft of l tibia, 7thK|Nondisp commnt fx shaft of l tibia, 7thK +C2862369|T037|AB|S82.255M|ICD10CM|Nondisp commnt fx shaft of l tibia, 7thM|Nondisp commnt fx shaft of l tibia, 7thM +C2862370|T037|AB|S82.255N|ICD10CM|Nondisp commnt fx shaft of l tibia, 7thN|Nondisp commnt fx shaft of l tibia, 7thN +C2862371|T037|AB|S82.255P|ICD10CM|Nondisp commnt fx shaft of l tibia, 7thP|Nondisp commnt fx shaft of l tibia, 7thP +C2862372|T037|AB|S82.255Q|ICD10CM|Nondisp commnt fx shaft of l tibia, 7thQ|Nondisp commnt fx shaft of l tibia, 7thQ +C2862373|T037|AB|S82.255R|ICD10CM|Nondisp commnt fx shaft of l tibia, 7thR|Nondisp commnt fx shaft of l tibia, 7thR +C2862374|T037|AB|S82.255S|ICD10CM|Nondisp comminuted fracture of shaft of left tibia, sequela|Nondisp comminuted fracture of shaft of left tibia, sequela +C2862374|T037|PT|S82.255S|ICD10CM|Nondisplaced comminuted fracture of shaft of left tibia, sequela|Nondisplaced comminuted fracture of shaft of left tibia, sequela +C2862375|T037|AB|S82.256|ICD10CM|Nondisplaced comminuted fracture of shaft of unsp tibia|Nondisplaced comminuted fracture of shaft of unsp tibia +C2862375|T037|HT|S82.256|ICD10CM|Nondisplaced comminuted fracture of shaft of unspecified tibia|Nondisplaced comminuted fracture of shaft of unspecified tibia +C2862376|T037|AB|S82.256A|ICD10CM|Nondisp comminuted fracture of shaft of unsp tibia, init|Nondisp comminuted fracture of shaft of unsp tibia, init +C2862377|T037|AB|S82.256B|ICD10CM|Nondisp commnt fx shaft of unsp tibia, 7thB|Nondisp commnt fx shaft of unsp tibia, 7thB +C2862378|T037|AB|S82.256C|ICD10CM|Nondisp commnt fx shaft of unsp tibia, 7thC|Nondisp commnt fx shaft of unsp tibia, 7thC +C2862379|T037|AB|S82.256D|ICD10CM|Nondisp commnt fx shaft of unsp tibia, 7thD|Nondisp commnt fx shaft of unsp tibia, 7thD +C2862380|T037|AB|S82.256E|ICD10CM|Nondisp commnt fx shaft of unsp tibia, 7thE|Nondisp commnt fx shaft of unsp tibia, 7thE +C2862381|T037|AB|S82.256F|ICD10CM|Nondisp commnt fx shaft of unsp tibia, 7thF|Nondisp commnt fx shaft of unsp tibia, 7thF +C2862382|T037|AB|S82.256G|ICD10CM|Nondisp commnt fx shaft of unsp tibia, 7thG|Nondisp commnt fx shaft of unsp tibia, 7thG +C2862383|T037|AB|S82.256H|ICD10CM|Nondisp commnt fx shaft of unsp tibia, 7thH|Nondisp commnt fx shaft of unsp tibia, 7thH +C2862384|T037|AB|S82.256J|ICD10CM|Nondisp commnt fx shaft of unsp tibia, 7thJ|Nondisp commnt fx shaft of unsp tibia, 7thJ +C2862385|T037|AB|S82.256K|ICD10CM|Nondisp commnt fx shaft of unsp tibia, 7thK|Nondisp commnt fx shaft of unsp tibia, 7thK +C2862386|T037|AB|S82.256M|ICD10CM|Nondisp commnt fx shaft of unsp tibia, 7thM|Nondisp commnt fx shaft of unsp tibia, 7thM +C2862387|T037|AB|S82.256N|ICD10CM|Nondisp commnt fx shaft of unsp tibia, 7thN|Nondisp commnt fx shaft of unsp tibia, 7thN +C2862388|T037|AB|S82.256P|ICD10CM|Nondisp commnt fx shaft of unsp tibia, 7thP|Nondisp commnt fx shaft of unsp tibia, 7thP +C2862389|T037|AB|S82.256Q|ICD10CM|Nondisp commnt fx shaft of unsp tibia, 7thQ|Nondisp commnt fx shaft of unsp tibia, 7thQ +C2862390|T037|AB|S82.256R|ICD10CM|Nondisp commnt fx shaft of unsp tibia, 7thR|Nondisp commnt fx shaft of unsp tibia, 7thR +C2862391|T037|AB|S82.256S|ICD10CM|Nondisp comminuted fracture of shaft of unsp tibia, sequela|Nondisp comminuted fracture of shaft of unsp tibia, sequela +C2862391|T037|PT|S82.256S|ICD10CM|Nondisplaced comminuted fracture of shaft of unspecified tibia, sequela|Nondisplaced comminuted fracture of shaft of unspecified tibia, sequela +C2862392|T037|AB|S82.26|ICD10CM|Segmental fracture of shaft of tibia|Segmental fracture of shaft of tibia +C2862392|T037|HT|S82.26|ICD10CM|Segmental fracture of shaft of tibia|Segmental fracture of shaft of tibia +C2862393|T037|AB|S82.261|ICD10CM|Displaced segmental fracture of shaft of right tibia|Displaced segmental fracture of shaft of right tibia +C2862393|T037|HT|S82.261|ICD10CM|Displaced segmental fracture of shaft of right tibia|Displaced segmental fracture of shaft of right tibia +C2862394|T037|AB|S82.261A|ICD10CM|Displaced segmental fracture of shaft of right tibia, init|Displaced segmental fracture of shaft of right tibia, init +C2862394|T037|PT|S82.261A|ICD10CM|Displaced segmental fracture of shaft of right tibia, initial encounter for closed fracture|Displaced segmental fracture of shaft of right tibia, initial encounter for closed fracture +C2862395|T037|AB|S82.261B|ICD10CM|Displ seg fx shaft of r tibia, init for opn fx type I/2|Displ seg fx shaft of r tibia, init for opn fx type I/2 +C2862396|T037|AB|S82.261C|ICD10CM|Displ seg fx shaft of r tibia, init for opn fx type 3A/B/C|Displ seg fx shaft of r tibia, init for opn fx type 3A/B/C +C2862397|T037|AB|S82.261D|ICD10CM|Displ seg fx shaft of r tibia, subs for clos fx w routn heal|Displ seg fx shaft of r tibia, subs for clos fx w routn heal +C2862398|T037|AB|S82.261E|ICD10CM|Displ seg fx shaft of r tibia, 7thE|Displ seg fx shaft of r tibia, 7thE +C2862399|T037|AB|S82.261F|ICD10CM|Displ seg fx shaft of r tibia, 7thF|Displ seg fx shaft of r tibia, 7thF +C2862400|T037|AB|S82.261G|ICD10CM|Displ seg fx shaft of r tibia, subs for clos fx w delay heal|Displ seg fx shaft of r tibia, subs for clos fx w delay heal +C2862401|T037|AB|S82.261H|ICD10CM|Displ seg fx shaft of r tibia, 7thH|Displ seg fx shaft of r tibia, 7thH +C2862402|T037|AB|S82.261J|ICD10CM|Displ seg fx shaft of r tibia, 7thJ|Displ seg fx shaft of r tibia, 7thJ +C2862403|T037|AB|S82.261K|ICD10CM|Displ seg fx shaft of r tibia, subs for clos fx w nonunion|Displ seg fx shaft of r tibia, subs for clos fx w nonunion +C2862404|T037|AB|S82.261M|ICD10CM|Displ seg fx shaft of r tibia, 7thM|Displ seg fx shaft of r tibia, 7thM +C2862405|T037|AB|S82.261N|ICD10CM|Displ seg fx shaft of r tibia, 7thN|Displ seg fx shaft of r tibia, 7thN +C2862406|T037|AB|S82.261P|ICD10CM|Displ seg fx shaft of r tibia, subs for clos fx w malunion|Displ seg fx shaft of r tibia, subs for clos fx w malunion +C2862407|T037|AB|S82.261Q|ICD10CM|Displ seg fx shaft of r tibia, 7thQ|Displ seg fx shaft of r tibia, 7thQ +C2862408|T037|AB|S82.261R|ICD10CM|Displ seg fx shaft of r tibia, 7thR|Displ seg fx shaft of r tibia, 7thR +C2862409|T037|PT|S82.261S|ICD10CM|Displaced segmental fracture of shaft of right tibia, sequela|Displaced segmental fracture of shaft of right tibia, sequela +C2862409|T037|AB|S82.261S|ICD10CM|Displaced segmental fx shaft of right tibia, sequela|Displaced segmental fx shaft of right tibia, sequela +C2862410|T037|AB|S82.262|ICD10CM|Displaced segmental fracture of shaft of left tibia|Displaced segmental fracture of shaft of left tibia +C2862410|T037|HT|S82.262|ICD10CM|Displaced segmental fracture of shaft of left tibia|Displaced segmental fracture of shaft of left tibia +C2862411|T037|AB|S82.262A|ICD10CM|Displaced segmental fracture of shaft of left tibia, init|Displaced segmental fracture of shaft of left tibia, init +C2862411|T037|PT|S82.262A|ICD10CM|Displaced segmental fracture of shaft of left tibia, initial encounter for closed fracture|Displaced segmental fracture of shaft of left tibia, initial encounter for closed fracture +C2862412|T037|AB|S82.262B|ICD10CM|Displ seg fx shaft of l tibia, init for opn fx type I/2|Displ seg fx shaft of l tibia, init for opn fx type I/2 +C2862413|T037|AB|S82.262C|ICD10CM|Displ seg fx shaft of l tibia, init for opn fx type 3A/B/C|Displ seg fx shaft of l tibia, init for opn fx type 3A/B/C +C2862414|T037|AB|S82.262D|ICD10CM|Displ seg fx shaft of l tibia, subs for clos fx w routn heal|Displ seg fx shaft of l tibia, subs for clos fx w routn heal +C2862415|T037|AB|S82.262E|ICD10CM|Displ seg fx shaft of l tibia, 7thE|Displ seg fx shaft of l tibia, 7thE +C2862416|T037|AB|S82.262F|ICD10CM|Displ seg fx shaft of l tibia, 7thF|Displ seg fx shaft of l tibia, 7thF +C2862417|T037|AB|S82.262G|ICD10CM|Displ seg fx shaft of l tibia, subs for clos fx w delay heal|Displ seg fx shaft of l tibia, subs for clos fx w delay heal +C2862418|T037|AB|S82.262H|ICD10CM|Displ seg fx shaft of l tibia, 7thH|Displ seg fx shaft of l tibia, 7thH +C2862419|T037|AB|S82.262J|ICD10CM|Displ seg fx shaft of l tibia, 7thJ|Displ seg fx shaft of l tibia, 7thJ +C2862420|T037|AB|S82.262K|ICD10CM|Displ seg fx shaft of l tibia, subs for clos fx w nonunion|Displ seg fx shaft of l tibia, subs for clos fx w nonunion +C2862421|T037|AB|S82.262M|ICD10CM|Displ seg fx shaft of l tibia, 7thM|Displ seg fx shaft of l tibia, 7thM +C2862422|T037|AB|S82.262N|ICD10CM|Displ seg fx shaft of l tibia, 7thN|Displ seg fx shaft of l tibia, 7thN +C2862423|T037|AB|S82.262P|ICD10CM|Displ seg fx shaft of l tibia, subs for clos fx w malunion|Displ seg fx shaft of l tibia, subs for clos fx w malunion +C2862424|T037|AB|S82.262Q|ICD10CM|Displ seg fx shaft of l tibia, 7thQ|Displ seg fx shaft of l tibia, 7thQ +C2862425|T037|AB|S82.262R|ICD10CM|Displ seg fx shaft of l tibia, 7thR|Displ seg fx shaft of l tibia, 7thR +C2862426|T037|AB|S82.262S|ICD10CM|Displaced segmental fracture of shaft of left tibia, sequela|Displaced segmental fracture of shaft of left tibia, sequela +C2862426|T037|PT|S82.262S|ICD10CM|Displaced segmental fracture of shaft of left tibia, sequela|Displaced segmental fracture of shaft of left tibia, sequela +C2862427|T037|AB|S82.263|ICD10CM|Displaced segmental fracture of shaft of unspecified tibia|Displaced segmental fracture of shaft of unspecified tibia +C2862427|T037|HT|S82.263|ICD10CM|Displaced segmental fracture of shaft of unspecified tibia|Displaced segmental fracture of shaft of unspecified tibia +C2862428|T037|AB|S82.263A|ICD10CM|Displaced segmental fracture of shaft of unsp tibia, init|Displaced segmental fracture of shaft of unsp tibia, init +C2862428|T037|PT|S82.263A|ICD10CM|Displaced segmental fracture of shaft of unspecified tibia, initial encounter for closed fracture|Displaced segmental fracture of shaft of unspecified tibia, initial encounter for closed fracture +C2862429|T037|AB|S82.263B|ICD10CM|Displ seg fx shaft of unsp tibia, init for opn fx type I/2|Displ seg fx shaft of unsp tibia, init for opn fx type I/2 +C2862430|T037|AB|S82.263C|ICD10CM|Displ seg fx shaft of unsp tibia, 7thC|Displ seg fx shaft of unsp tibia, 7thC +C2862431|T037|AB|S82.263D|ICD10CM|Displ seg fx shaft of unsp tibia, 7thD|Displ seg fx shaft of unsp tibia, 7thD +C2862432|T037|AB|S82.263E|ICD10CM|Displ seg fx shaft of unsp tibia, 7thE|Displ seg fx shaft of unsp tibia, 7thE +C2862433|T037|AB|S82.263F|ICD10CM|Displ seg fx shaft of unsp tibia, 7thF|Displ seg fx shaft of unsp tibia, 7thF +C2862434|T037|AB|S82.263G|ICD10CM|Displ seg fx shaft of unsp tibia, 7thG|Displ seg fx shaft of unsp tibia, 7thG +C2862435|T037|AB|S82.263H|ICD10CM|Displ seg fx shaft of unsp tibia, 7thH|Displ seg fx shaft of unsp tibia, 7thH +C2862436|T037|AB|S82.263J|ICD10CM|Displ seg fx shaft of unsp tibia, 7thJ|Displ seg fx shaft of unsp tibia, 7thJ +C2862437|T037|AB|S82.263K|ICD10CM|Displ seg fx shaft of unsp tibia, 7thK|Displ seg fx shaft of unsp tibia, 7thK +C2862438|T037|AB|S82.263M|ICD10CM|Displ seg fx shaft of unsp tibia, 7thM|Displ seg fx shaft of unsp tibia, 7thM +C2862439|T037|AB|S82.263N|ICD10CM|Displ seg fx shaft of unsp tibia, 7thN|Displ seg fx shaft of unsp tibia, 7thN +C2862440|T037|AB|S82.263P|ICD10CM|Displ seg fx shaft of unsp tibia, 7thP|Displ seg fx shaft of unsp tibia, 7thP +C2862441|T037|AB|S82.263Q|ICD10CM|Displ seg fx shaft of unsp tibia, 7thQ|Displ seg fx shaft of unsp tibia, 7thQ +C2862442|T037|AB|S82.263R|ICD10CM|Displ seg fx shaft of unsp tibia, 7thR|Displ seg fx shaft of unsp tibia, 7thR +C2862443|T037|AB|S82.263S|ICD10CM|Displaced segmental fracture of shaft of unsp tibia, sequela|Displaced segmental fracture of shaft of unsp tibia, sequela +C2862443|T037|PT|S82.263S|ICD10CM|Displaced segmental fracture of shaft of unspecified tibia, sequela|Displaced segmental fracture of shaft of unspecified tibia, sequela +C2862444|T037|AB|S82.264|ICD10CM|Nondisplaced segmental fracture of shaft of right tibia|Nondisplaced segmental fracture of shaft of right tibia +C2862444|T037|HT|S82.264|ICD10CM|Nondisplaced segmental fracture of shaft of right tibia|Nondisplaced segmental fracture of shaft of right tibia +C2862445|T037|AB|S82.264A|ICD10CM|Nondisp segmental fracture of shaft of right tibia, init|Nondisp segmental fracture of shaft of right tibia, init +C2862445|T037|PT|S82.264A|ICD10CM|Nondisplaced segmental fracture of shaft of right tibia, initial encounter for closed fracture|Nondisplaced segmental fracture of shaft of right tibia, initial encounter for closed fracture +C2862446|T037|AB|S82.264B|ICD10CM|Nondisp seg fx shaft of r tibia, init for opn fx type I/2|Nondisp seg fx shaft of r tibia, init for opn fx type I/2 +C2862447|T037|AB|S82.264C|ICD10CM|Nondisp seg fx shaft of r tibia, init for opn fx type 3A/B/C|Nondisp seg fx shaft of r tibia, init for opn fx type 3A/B/C +C2862448|T037|AB|S82.264D|ICD10CM|Nondisp seg fx shaft of r tibia, 7thD|Nondisp seg fx shaft of r tibia, 7thD +C2862449|T037|AB|S82.264E|ICD10CM|Nondisp seg fx shaft of r tibia, 7thE|Nondisp seg fx shaft of r tibia, 7thE +C2862450|T037|AB|S82.264F|ICD10CM|Nondisp seg fx shaft of r tibia, 7thF|Nondisp seg fx shaft of r tibia, 7thF +C2862451|T037|AB|S82.264G|ICD10CM|Nondisp seg fx shaft of r tibia, 7thG|Nondisp seg fx shaft of r tibia, 7thG +C2862452|T037|AB|S82.264H|ICD10CM|Nondisp seg fx shaft of r tibia, 7thH|Nondisp seg fx shaft of r tibia, 7thH +C2862453|T037|AB|S82.264J|ICD10CM|Nondisp seg fx shaft of r tibia, 7thJ|Nondisp seg fx shaft of r tibia, 7thJ +C2862454|T037|AB|S82.264K|ICD10CM|Nondisp seg fx shaft of r tibia, subs for clos fx w nonunion|Nondisp seg fx shaft of r tibia, subs for clos fx w nonunion +C2862455|T037|AB|S82.264M|ICD10CM|Nondisp seg fx shaft of r tibia, 7thM|Nondisp seg fx shaft of r tibia, 7thM +C2862456|T037|AB|S82.264N|ICD10CM|Nondisp seg fx shaft of r tibia, 7thN|Nondisp seg fx shaft of r tibia, 7thN +C2862457|T037|AB|S82.264P|ICD10CM|Nondisp seg fx shaft of r tibia, subs for clos fx w malunion|Nondisp seg fx shaft of r tibia, subs for clos fx w malunion +C2862458|T037|AB|S82.264Q|ICD10CM|Nondisp seg fx shaft of r tibia, 7thQ|Nondisp seg fx shaft of r tibia, 7thQ +C2862459|T037|AB|S82.264R|ICD10CM|Nondisp seg fx shaft of r tibia, 7thR|Nondisp seg fx shaft of r tibia, 7thR +C2862460|T037|AB|S82.264S|ICD10CM|Nondisp segmental fracture of shaft of right tibia, sequela|Nondisp segmental fracture of shaft of right tibia, sequela +C2862460|T037|PT|S82.264S|ICD10CM|Nondisplaced segmental fracture of shaft of right tibia, sequela|Nondisplaced segmental fracture of shaft of right tibia, sequela +C2862461|T037|AB|S82.265|ICD10CM|Nondisplaced segmental fracture of shaft of left tibia|Nondisplaced segmental fracture of shaft of left tibia +C2862461|T037|HT|S82.265|ICD10CM|Nondisplaced segmental fracture of shaft of left tibia|Nondisplaced segmental fracture of shaft of left tibia +C2862462|T037|AB|S82.265A|ICD10CM|Nondisplaced segmental fracture of shaft of left tibia, init|Nondisplaced segmental fracture of shaft of left tibia, init +C2862462|T037|PT|S82.265A|ICD10CM|Nondisplaced segmental fracture of shaft of left tibia, initial encounter for closed fracture|Nondisplaced segmental fracture of shaft of left tibia, initial encounter for closed fracture +C2862463|T037|AB|S82.265B|ICD10CM|Nondisp seg fx shaft of l tibia, init for opn fx type I/2|Nondisp seg fx shaft of l tibia, init for opn fx type I/2 +C2862464|T037|AB|S82.265C|ICD10CM|Nondisp seg fx shaft of l tibia, init for opn fx type 3A/B/C|Nondisp seg fx shaft of l tibia, init for opn fx type 3A/B/C +C2862465|T037|AB|S82.265D|ICD10CM|Nondisp seg fx shaft of l tibia, 7thD|Nondisp seg fx shaft of l tibia, 7thD +C2862466|T037|AB|S82.265E|ICD10CM|Nondisp seg fx shaft of l tibia, 7thE|Nondisp seg fx shaft of l tibia, 7thE +C2862467|T037|AB|S82.265F|ICD10CM|Nondisp seg fx shaft of l tibia, 7thF|Nondisp seg fx shaft of l tibia, 7thF +C2862468|T037|AB|S82.265G|ICD10CM|Nondisp seg fx shaft of l tibia, 7thG|Nondisp seg fx shaft of l tibia, 7thG +C2862469|T037|AB|S82.265H|ICD10CM|Nondisp seg fx shaft of l tibia, 7thH|Nondisp seg fx shaft of l tibia, 7thH +C2862470|T037|AB|S82.265J|ICD10CM|Nondisp seg fx shaft of l tibia, 7thJ|Nondisp seg fx shaft of l tibia, 7thJ +C2862471|T037|AB|S82.265K|ICD10CM|Nondisp seg fx shaft of l tibia, subs for clos fx w nonunion|Nondisp seg fx shaft of l tibia, subs for clos fx w nonunion +C2862472|T037|AB|S82.265M|ICD10CM|Nondisp seg fx shaft of l tibia, 7thM|Nondisp seg fx shaft of l tibia, 7thM +C2862473|T037|AB|S82.265N|ICD10CM|Nondisp seg fx shaft of l tibia, 7thN|Nondisp seg fx shaft of l tibia, 7thN +C2862474|T037|AB|S82.265P|ICD10CM|Nondisp seg fx shaft of l tibia, subs for clos fx w malunion|Nondisp seg fx shaft of l tibia, subs for clos fx w malunion +C2862475|T037|AB|S82.265Q|ICD10CM|Nondisp seg fx shaft of l tibia, 7thQ|Nondisp seg fx shaft of l tibia, 7thQ +C2862476|T037|AB|S82.265R|ICD10CM|Nondisp seg fx shaft of l tibia, 7thR|Nondisp seg fx shaft of l tibia, 7thR +C2862477|T037|AB|S82.265S|ICD10CM|Nondisp segmental fracture of shaft of left tibia, sequela|Nondisp segmental fracture of shaft of left tibia, sequela +C2862477|T037|PT|S82.265S|ICD10CM|Nondisplaced segmental fracture of shaft of left tibia, sequela|Nondisplaced segmental fracture of shaft of left tibia, sequela +C2862478|T037|AB|S82.266|ICD10CM|Nondisplaced segmental fracture of shaft of unsp tibia|Nondisplaced segmental fracture of shaft of unsp tibia +C2862478|T037|HT|S82.266|ICD10CM|Nondisplaced segmental fracture of shaft of unspecified tibia|Nondisplaced segmental fracture of shaft of unspecified tibia +C2862479|T037|AB|S82.266A|ICD10CM|Nondisplaced segmental fracture of shaft of unsp tibia, init|Nondisplaced segmental fracture of shaft of unsp tibia, init +C2862479|T037|PT|S82.266A|ICD10CM|Nondisplaced segmental fracture of shaft of unspecified tibia, initial encounter for closed fracture|Nondisplaced segmental fracture of shaft of unspecified tibia, initial encounter for closed fracture +C2862480|T037|AB|S82.266B|ICD10CM|Nondisp seg fx shaft of unsp tibia, init for opn fx type I/2|Nondisp seg fx shaft of unsp tibia, init for opn fx type I/2 +C2862481|T037|AB|S82.266C|ICD10CM|Nondisp seg fx shaft of unsp tibia, 7thC|Nondisp seg fx shaft of unsp tibia, 7thC +C2862482|T037|AB|S82.266D|ICD10CM|Nondisp seg fx shaft of unsp tibia, 7thD|Nondisp seg fx shaft of unsp tibia, 7thD +C2862483|T037|AB|S82.266E|ICD10CM|Nondisp seg fx shaft of unsp tibia, 7thE|Nondisp seg fx shaft of unsp tibia, 7thE +C2862484|T037|AB|S82.266F|ICD10CM|Nondisp seg fx shaft of unsp tibia, 7thF|Nondisp seg fx shaft of unsp tibia, 7thF +C2862485|T037|AB|S82.266G|ICD10CM|Nondisp seg fx shaft of unsp tibia, 7thG|Nondisp seg fx shaft of unsp tibia, 7thG +C2862486|T037|AB|S82.266H|ICD10CM|Nondisp seg fx shaft of unsp tibia, 7thH|Nondisp seg fx shaft of unsp tibia, 7thH +C2862487|T037|AB|S82.266J|ICD10CM|Nondisp seg fx shaft of unsp tibia, 7thJ|Nondisp seg fx shaft of unsp tibia, 7thJ +C2862488|T037|AB|S82.266K|ICD10CM|Nondisp seg fx shaft of unsp tibia, 7thK|Nondisp seg fx shaft of unsp tibia, 7thK +C2862489|T037|AB|S82.266M|ICD10CM|Nondisp seg fx shaft of unsp tibia, 7thM|Nondisp seg fx shaft of unsp tibia, 7thM +C2862490|T037|AB|S82.266N|ICD10CM|Nondisp seg fx shaft of unsp tibia, 7thN|Nondisp seg fx shaft of unsp tibia, 7thN +C2862491|T037|AB|S82.266P|ICD10CM|Nondisp seg fx shaft of unsp tibia, 7thP|Nondisp seg fx shaft of unsp tibia, 7thP +C2862492|T037|AB|S82.266Q|ICD10CM|Nondisp seg fx shaft of unsp tibia, 7thQ|Nondisp seg fx shaft of unsp tibia, 7thQ +C2862493|T037|AB|S82.266R|ICD10CM|Nondisp seg fx shaft of unsp tibia, 7thR|Nondisp seg fx shaft of unsp tibia, 7thR +C2862494|T037|AB|S82.266S|ICD10CM|Nondisp segmental fracture of shaft of unsp tibia, sequela|Nondisp segmental fracture of shaft of unsp tibia, sequela +C2862494|T037|PT|S82.266S|ICD10CM|Nondisplaced segmental fracture of shaft of unspecified tibia, sequela|Nondisplaced segmental fracture of shaft of unspecified tibia, sequela +C0840702|T037|HT|S82.29|ICD10CM|Other fracture of shaft of tibia|Other fracture of shaft of tibia +C0840702|T037|AB|S82.29|ICD10CM|Other fracture of shaft of tibia|Other fracture of shaft of tibia +C2862495|T037|AB|S82.291|ICD10CM|Other fracture of shaft of right tibia|Other fracture of shaft of right tibia +C2862495|T037|HT|S82.291|ICD10CM|Other fracture of shaft of right tibia|Other fracture of shaft of right tibia +C2862496|T037|AB|S82.291A|ICD10CM|Oth fracture of shaft of right tibia, init for clos fx|Oth fracture of shaft of right tibia, init for clos fx +C2862496|T037|PT|S82.291A|ICD10CM|Other fracture of shaft of right tibia, initial encounter for closed fracture|Other fracture of shaft of right tibia, initial encounter for closed fracture +C2862497|T037|AB|S82.291B|ICD10CM|Oth fx shaft of right tibia, init for opn fx type I/2|Oth fx shaft of right tibia, init for opn fx type I/2 +C2862497|T037|PT|S82.291B|ICD10CM|Other fracture of shaft of right tibia, initial encounter for open fracture type I or II|Other fracture of shaft of right tibia, initial encounter for open fracture type I or II +C2862498|T037|AB|S82.291C|ICD10CM|Oth fx shaft of right tibia, init for opn fx type 3A/B/C|Oth fx shaft of right tibia, init for opn fx type 3A/B/C +C2862498|T037|PT|S82.291C|ICD10CM|Other fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC|Other fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2862499|T037|AB|S82.291D|ICD10CM|Oth fx shaft of right tibia, subs for clos fx w routn heal|Oth fx shaft of right tibia, subs for clos fx w routn heal +C2862500|T037|AB|S82.291E|ICD10CM|Oth fx shaft of r tibia, 7thE|Oth fx shaft of r tibia, 7thE +C2862501|T037|AB|S82.291F|ICD10CM|Oth fx shaft of r tibia, 7thF|Oth fx shaft of r tibia, 7thF +C2862502|T037|AB|S82.291G|ICD10CM|Oth fx shaft of right tibia, subs for clos fx w delay heal|Oth fx shaft of right tibia, subs for clos fx w delay heal +C2862503|T037|AB|S82.291H|ICD10CM|Oth fx shaft of r tibia, 7thH|Oth fx shaft of r tibia, 7thH +C2862504|T037|AB|S82.291J|ICD10CM|Oth fx shaft of r tibia, 7thJ|Oth fx shaft of r tibia, 7thJ +C2862505|T037|AB|S82.291K|ICD10CM|Oth fx shaft of right tibia, subs for clos fx w nonunion|Oth fx shaft of right tibia, subs for clos fx w nonunion +C2862505|T037|PT|S82.291K|ICD10CM|Other fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion|Other fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion +C2862506|T037|AB|S82.291M|ICD10CM|Oth fx shaft of r tibia, subs for opn fx type I/2 w nonunion|Oth fx shaft of r tibia, subs for opn fx type I/2 w nonunion +C2862507|T037|AB|S82.291N|ICD10CM|Oth fx shaft of r tibia, 7thN|Oth fx shaft of r tibia, 7thN +C2862508|T037|AB|S82.291P|ICD10CM|Oth fx shaft of right tibia, subs for clos fx w malunion|Oth fx shaft of right tibia, subs for clos fx w malunion +C2862508|T037|PT|S82.291P|ICD10CM|Other fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion|Other fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion +C2862509|T037|AB|S82.291Q|ICD10CM|Oth fx shaft of r tibia, subs for opn fx type I/2 w malunion|Oth fx shaft of r tibia, subs for opn fx type I/2 w malunion +C2862510|T037|AB|S82.291R|ICD10CM|Oth fx shaft of r tibia, 7thR|Oth fx shaft of r tibia, 7thR +C2862511|T037|PT|S82.291S|ICD10CM|Other fracture of shaft of right tibia, sequela|Other fracture of shaft of right tibia, sequela +C2862511|T037|AB|S82.291S|ICD10CM|Other fracture of shaft of right tibia, sequela|Other fracture of shaft of right tibia, sequela +C2862512|T037|AB|S82.292|ICD10CM|Other fracture of shaft of left tibia|Other fracture of shaft of left tibia +C2862512|T037|HT|S82.292|ICD10CM|Other fracture of shaft of left tibia|Other fracture of shaft of left tibia +C2862513|T037|AB|S82.292A|ICD10CM|Oth fracture of shaft of left tibia, init for clos fx|Oth fracture of shaft of left tibia, init for clos fx +C2862513|T037|PT|S82.292A|ICD10CM|Other fracture of shaft of left tibia, initial encounter for closed fracture|Other fracture of shaft of left tibia, initial encounter for closed fracture +C2862514|T037|AB|S82.292B|ICD10CM|Oth fx shaft of left tibia, init for opn fx type I/2|Oth fx shaft of left tibia, init for opn fx type I/2 +C2862514|T037|PT|S82.292B|ICD10CM|Other fracture of shaft of left tibia, initial encounter for open fracture type I or II|Other fracture of shaft of left tibia, initial encounter for open fracture type I or II +C2862515|T037|AB|S82.292C|ICD10CM|Oth fx shaft of left tibia, init for opn fx type 3A/B/C|Oth fx shaft of left tibia, init for opn fx type 3A/B/C +C2862515|T037|PT|S82.292C|ICD10CM|Other fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC|Other fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2862516|T037|AB|S82.292D|ICD10CM|Oth fx shaft of left tibia, subs for clos fx w routn heal|Oth fx shaft of left tibia, subs for clos fx w routn heal +C2862516|T037|PT|S82.292D|ICD10CM|Other fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing|Other fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing +C2862517|T037|AB|S82.292E|ICD10CM|Oth fx shaft of l tibia, 7thE|Oth fx shaft of l tibia, 7thE +C2862518|T037|AB|S82.292F|ICD10CM|Oth fx shaft of l tibia, 7thF|Oth fx shaft of l tibia, 7thF +C2862519|T037|AB|S82.292G|ICD10CM|Oth fx shaft of left tibia, subs for clos fx w delay heal|Oth fx shaft of left tibia, subs for clos fx w delay heal +C2862519|T037|PT|S82.292G|ICD10CM|Other fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing|Other fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing +C2862520|T037|AB|S82.292H|ICD10CM|Oth fx shaft of l tibia, 7thH|Oth fx shaft of l tibia, 7thH +C2862521|T037|AB|S82.292J|ICD10CM|Oth fx shaft of l tibia, 7thJ|Oth fx shaft of l tibia, 7thJ +C2862522|T037|AB|S82.292K|ICD10CM|Oth fx shaft of left tibia, subs for clos fx w nonunion|Oth fx shaft of left tibia, subs for clos fx w nonunion +C2862522|T037|PT|S82.292K|ICD10CM|Other fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion|Other fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion +C2862523|T037|AB|S82.292M|ICD10CM|Oth fx shaft of l tibia, subs for opn fx type I/2 w nonunion|Oth fx shaft of l tibia, subs for opn fx type I/2 w nonunion +C2862524|T037|AB|S82.292N|ICD10CM|Oth fx shaft of l tibia, 7thN|Oth fx shaft of l tibia, 7thN +C2862525|T037|AB|S82.292P|ICD10CM|Oth fx shaft of left tibia, subs for clos fx w malunion|Oth fx shaft of left tibia, subs for clos fx w malunion +C2862525|T037|PT|S82.292P|ICD10CM|Other fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion|Other fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion +C2862526|T037|AB|S82.292Q|ICD10CM|Oth fx shaft of l tibia, subs for opn fx type I/2 w malunion|Oth fx shaft of l tibia, subs for opn fx type I/2 w malunion +C2862527|T037|AB|S82.292R|ICD10CM|Oth fx shaft of l tibia, 7thR|Oth fx shaft of l tibia, 7thR +C2862528|T037|PT|S82.292S|ICD10CM|Other fracture of shaft of left tibia, sequela|Other fracture of shaft of left tibia, sequela +C2862528|T037|AB|S82.292S|ICD10CM|Other fracture of shaft of left tibia, sequela|Other fracture of shaft of left tibia, sequela +C2862529|T037|AB|S82.299|ICD10CM|Other fracture of shaft of unspecified tibia|Other fracture of shaft of unspecified tibia +C2862529|T037|HT|S82.299|ICD10CM|Other fracture of shaft of unspecified tibia|Other fracture of shaft of unspecified tibia +C2862530|T037|AB|S82.299A|ICD10CM|Oth fracture of shaft of unsp tibia, init for clos fx|Oth fracture of shaft of unsp tibia, init for clos fx +C2862530|T037|PT|S82.299A|ICD10CM|Other fracture of shaft of unspecified tibia, initial encounter for closed fracture|Other fracture of shaft of unspecified tibia, initial encounter for closed fracture +C2862531|T037|AB|S82.299B|ICD10CM|Oth fx shaft of unsp tibia, init for opn fx type I/2|Oth fx shaft of unsp tibia, init for opn fx type I/2 +C2862531|T037|PT|S82.299B|ICD10CM|Other fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II|Other fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II +C2862532|T037|AB|S82.299C|ICD10CM|Oth fx shaft of unsp tibia, init for opn fx type 3A/B/C|Oth fx shaft of unsp tibia, init for opn fx type 3A/B/C +C2862533|T037|AB|S82.299D|ICD10CM|Oth fx shaft of unsp tibia, subs for clos fx w routn heal|Oth fx shaft of unsp tibia, subs for clos fx w routn heal +C2862534|T037|AB|S82.299E|ICD10CM|Oth fx shaft of unsp tibia, 7thE|Oth fx shaft of unsp tibia, 7thE +C2862535|T037|AB|S82.299F|ICD10CM|Oth fx shaft of unsp tibia, 7thF|Oth fx shaft of unsp tibia, 7thF +C2862536|T037|AB|S82.299G|ICD10CM|Oth fx shaft of unsp tibia, subs for clos fx w delay heal|Oth fx shaft of unsp tibia, subs for clos fx w delay heal +C2862537|T037|AB|S82.299H|ICD10CM|Oth fx shaft of unsp tibia, 7thH|Oth fx shaft of unsp tibia, 7thH +C2862538|T037|AB|S82.299J|ICD10CM|Oth fx shaft of unsp tibia, 7thJ|Oth fx shaft of unsp tibia, 7thJ +C2862539|T037|AB|S82.299K|ICD10CM|Oth fx shaft of unsp tibia, subs for clos fx w nonunion|Oth fx shaft of unsp tibia, subs for clos fx w nonunion +C2862539|T037|PT|S82.299K|ICD10CM|Other fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion|Other fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion +C2862540|T037|AB|S82.299M|ICD10CM|Oth fx shaft of unsp tibia, 7thM|Oth fx shaft of unsp tibia, 7thM +C2862541|T037|AB|S82.299N|ICD10CM|Oth fx shaft of unsp tibia, 7thN|Oth fx shaft of unsp tibia, 7thN +C2862542|T037|AB|S82.299P|ICD10CM|Oth fx shaft of unsp tibia, subs for clos fx w malunion|Oth fx shaft of unsp tibia, subs for clos fx w malunion +C2862542|T037|PT|S82.299P|ICD10CM|Other fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion|Other fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion +C2862543|T037|AB|S82.299Q|ICD10CM|Oth fx shaft of unsp tibia, 7thQ|Oth fx shaft of unsp tibia, 7thQ +C2862544|T037|AB|S82.299R|ICD10CM|Oth fx shaft of unsp tibia, 7thR|Oth fx shaft of unsp tibia, 7thR +C2862545|T037|PT|S82.299S|ICD10CM|Other fracture of shaft of unspecified tibia, sequela|Other fracture of shaft of unspecified tibia, sequela +C2862545|T037|AB|S82.299S|ICD10CM|Other fracture of shaft of unspecified tibia, sequela|Other fracture of shaft of unspecified tibia, sequela +C0262488|T037|PT|S82.3|ICD10|Fracture of lower end of tibia|Fracture of lower end of tibia +C0262488|T037|HT|S82.3|ICD10CM|Fracture of lower end of tibia|Fracture of lower end of tibia +C0262488|T037|AB|S82.3|ICD10CM|Fracture of lower end of tibia|Fracture of lower end of tibia +C2862546|T037|AB|S82.30|ICD10CM|Unspecified fracture of lower end of tibia|Unspecified fracture of lower end of tibia +C2862546|T037|HT|S82.30|ICD10CM|Unspecified fracture of lower end of tibia|Unspecified fracture of lower end of tibia +C2862547|T037|AB|S82.301|ICD10CM|Unspecified fracture of lower end of right tibia|Unspecified fracture of lower end of right tibia +C2862547|T037|HT|S82.301|ICD10CM|Unspecified fracture of lower end of right tibia|Unspecified fracture of lower end of right tibia +C2862548|T037|AB|S82.301A|ICD10CM|Unsp fracture of lower end of right tibia, init for clos fx|Unsp fracture of lower end of right tibia, init for clos fx +C2862548|T037|PT|S82.301A|ICD10CM|Unspecified fracture of lower end of right tibia, initial encounter for closed fracture|Unspecified fracture of lower end of right tibia, initial encounter for closed fracture +C2862549|T037|AB|S82.301B|ICD10CM|Unsp fx lower end of right tibia, init for opn fx type I/2|Unsp fx lower end of right tibia, init for opn fx type I/2 +C2862549|T037|PT|S82.301B|ICD10CM|Unspecified fracture of lower end of right tibia, initial encounter for open fracture type I or II|Unspecified fracture of lower end of right tibia, initial encounter for open fracture type I or II +C2862550|T037|AB|S82.301C|ICD10CM|Unsp fx lower end of r tibia, init for opn fx type 3A/B/C|Unsp fx lower end of r tibia, init for opn fx type 3A/B/C +C2862551|T037|AB|S82.301D|ICD10CM|Unsp fx lower end of r tibia, subs for clos fx w routn heal|Unsp fx lower end of r tibia, subs for clos fx w routn heal +C2862552|T037|AB|S82.301E|ICD10CM|Unsp fx low end r tibia, 7thE|Unsp fx low end r tibia, 7thE +C2862553|T037|AB|S82.301F|ICD10CM|Unsp fx low end r tibia, 7thF|Unsp fx low end r tibia, 7thF +C2862554|T037|AB|S82.301G|ICD10CM|Unsp fx lower end of r tibia, subs for clos fx w delay heal|Unsp fx lower end of r tibia, subs for clos fx w delay heal +C2862555|T037|AB|S82.301H|ICD10CM|Unsp fx low end r tibia, 7thH|Unsp fx low end r tibia, 7thH +C2862556|T037|AB|S82.301J|ICD10CM|Unsp fx low end r tibia, 7thJ|Unsp fx low end r tibia, 7thJ +C2862557|T037|AB|S82.301K|ICD10CM|Unsp fx lower end of r tibia, subs for clos fx w nonunion|Unsp fx lower end of r tibia, subs for clos fx w nonunion +C2862558|T037|AB|S82.301M|ICD10CM|Unsp fx low end r tibia, subs for opn fx type I/2 w nonunion|Unsp fx low end r tibia, subs for opn fx type I/2 w nonunion +C2862559|T037|AB|S82.301N|ICD10CM|Unsp fx low end r tibia, 7thN|Unsp fx low end r tibia, 7thN +C2862560|T037|AB|S82.301P|ICD10CM|Unsp fx lower end of r tibia, subs for clos fx w malunion|Unsp fx lower end of r tibia, subs for clos fx w malunion +C2862561|T037|AB|S82.301Q|ICD10CM|Unsp fx low end r tibia, subs for opn fx type I/2 w malunion|Unsp fx low end r tibia, subs for opn fx type I/2 w malunion +C2862562|T037|AB|S82.301R|ICD10CM|Unsp fx low end r tibia, 7thR|Unsp fx low end r tibia, 7thR +C2862563|T037|PT|S82.301S|ICD10CM|Unspecified fracture of lower end of right tibia, sequela|Unspecified fracture of lower end of right tibia, sequela +C2862563|T037|AB|S82.301S|ICD10CM|Unspecified fracture of lower end of right tibia, sequela|Unspecified fracture of lower end of right tibia, sequela +C2862564|T037|AB|S82.302|ICD10CM|Unspecified fracture of lower end of left tibia|Unspecified fracture of lower end of left tibia +C2862564|T037|HT|S82.302|ICD10CM|Unspecified fracture of lower end of left tibia|Unspecified fracture of lower end of left tibia +C2862565|T037|AB|S82.302A|ICD10CM|Unsp fracture of lower end of left tibia, init for clos fx|Unsp fracture of lower end of left tibia, init for clos fx +C2862565|T037|PT|S82.302A|ICD10CM|Unspecified fracture of lower end of left tibia, initial encounter for closed fracture|Unspecified fracture of lower end of left tibia, initial encounter for closed fracture +C2862566|T037|AB|S82.302B|ICD10CM|Unsp fx lower end of left tibia, init for opn fx type I/2|Unsp fx lower end of left tibia, init for opn fx type I/2 +C2862566|T037|PT|S82.302B|ICD10CM|Unspecified fracture of lower end of left tibia, initial encounter for open fracture type I or II|Unspecified fracture of lower end of left tibia, initial encounter for open fracture type I or II +C2862567|T037|AB|S82.302C|ICD10CM|Unsp fx lower end of left tibia, init for opn fx type 3A/B/C|Unsp fx lower end of left tibia, init for opn fx type 3A/B/C +C2862568|T037|AB|S82.302D|ICD10CM|Unsp fx lower end of l tibia, subs for clos fx w routn heal|Unsp fx lower end of l tibia, subs for clos fx w routn heal +C2862569|T037|AB|S82.302E|ICD10CM|Unsp fx low end l tibia, 7thE|Unsp fx low end l tibia, 7thE +C2862570|T037|AB|S82.302F|ICD10CM|Unsp fx low end l tibia, 7thF|Unsp fx low end l tibia, 7thF +C2862571|T037|AB|S82.302G|ICD10CM|Unsp fx lower end of l tibia, subs for clos fx w delay heal|Unsp fx lower end of l tibia, subs for clos fx w delay heal +C2862572|T037|AB|S82.302H|ICD10CM|Unsp fx low end l tibia, 7thH|Unsp fx low end l tibia, 7thH +C2862573|T037|AB|S82.302J|ICD10CM|Unsp fx low end l tibia, 7thJ|Unsp fx low end l tibia, 7thJ +C2862574|T037|AB|S82.302K|ICD10CM|Unsp fx lower end of left tibia, subs for clos fx w nonunion|Unsp fx lower end of left tibia, subs for clos fx w nonunion +C2862575|T037|AB|S82.302M|ICD10CM|Unsp fx low end l tibia, subs for opn fx type I/2 w nonunion|Unsp fx low end l tibia, subs for opn fx type I/2 w nonunion +C2862576|T037|AB|S82.302N|ICD10CM|Unsp fx low end l tibia, 7thN|Unsp fx low end l tibia, 7thN +C2862577|T037|AB|S82.302P|ICD10CM|Unsp fx lower end of left tibia, subs for clos fx w malunion|Unsp fx lower end of left tibia, subs for clos fx w malunion +C2862578|T037|AB|S82.302Q|ICD10CM|Unsp fx low end l tibia, subs for opn fx type I/2 w malunion|Unsp fx low end l tibia, subs for opn fx type I/2 w malunion +C2862579|T037|AB|S82.302R|ICD10CM|Unsp fx low end l tibia, 7thR|Unsp fx low end l tibia, 7thR +C2862580|T037|PT|S82.302S|ICD10CM|Unspecified fracture of lower end of left tibia, sequela|Unspecified fracture of lower end of left tibia, sequela +C2862580|T037|AB|S82.302S|ICD10CM|Unspecified fracture of lower end of left tibia, sequela|Unspecified fracture of lower end of left tibia, sequela +C2862581|T037|AB|S82.309|ICD10CM|Unspecified fracture of lower end of unspecified tibia|Unspecified fracture of lower end of unspecified tibia +C2862581|T037|HT|S82.309|ICD10CM|Unspecified fracture of lower end of unspecified tibia|Unspecified fracture of lower end of unspecified tibia +C2862582|T037|AB|S82.309A|ICD10CM|Unsp fracture of lower end of unsp tibia, init for clos fx|Unsp fracture of lower end of unsp tibia, init for clos fx +C2862582|T037|PT|S82.309A|ICD10CM|Unspecified fracture of lower end of unspecified tibia, initial encounter for closed fracture|Unspecified fracture of lower end of unspecified tibia, initial encounter for closed fracture +C2862583|T037|AB|S82.309B|ICD10CM|Unsp fx lower end of unsp tibia, init for opn fx type I/2|Unsp fx lower end of unsp tibia, init for opn fx type I/2 +C2862584|T037|AB|S82.309C|ICD10CM|Unsp fx lower end of unsp tibia, init for opn fx type 3A/B/C|Unsp fx lower end of unsp tibia, init for opn fx type 3A/B/C +C2862585|T037|AB|S82.309D|ICD10CM|Unsp fx lower end unsp tibia, subs for clos fx w routn heal|Unsp fx lower end unsp tibia, subs for clos fx w routn heal +C2862586|T037|AB|S82.309E|ICD10CM|Unsp fx low end unsp tibia, 7thE|Unsp fx low end unsp tibia, 7thE +C2862587|T037|AB|S82.309F|ICD10CM|Unsp fx low end unsp tibia, 7thF|Unsp fx low end unsp tibia, 7thF +C2862588|T037|AB|S82.309G|ICD10CM|Unsp fx lower end unsp tibia, subs for clos fx w delay heal|Unsp fx lower end unsp tibia, subs for clos fx w delay heal +C2862589|T037|AB|S82.309H|ICD10CM|Unsp fx low end unsp tibia, 7thH|Unsp fx low end unsp tibia, 7thH +C2862590|T037|AB|S82.309J|ICD10CM|Unsp fx low end unsp tibia, 7thJ|Unsp fx low end unsp tibia, 7thJ +C2862591|T037|AB|S82.309K|ICD10CM|Unsp fx lower end of unsp tibia, subs for clos fx w nonunion|Unsp fx lower end of unsp tibia, subs for clos fx w nonunion +C2862592|T037|AB|S82.309M|ICD10CM|Unsp fx low end unsp tibia, 7thM|Unsp fx low end unsp tibia, 7thM +C2862593|T037|AB|S82.309N|ICD10CM|Unsp fx low end unsp tibia, 7thN|Unsp fx low end unsp tibia, 7thN +C2862594|T037|AB|S82.309P|ICD10CM|Unsp fx lower end of unsp tibia, subs for clos fx w malunion|Unsp fx lower end of unsp tibia, subs for clos fx w malunion +C2862595|T037|AB|S82.309Q|ICD10CM|Unsp fx low end unsp tibia, 7thQ|Unsp fx low end unsp tibia, 7thQ +C2862596|T037|AB|S82.309R|ICD10CM|Unsp fx low end unsp tibia, 7thR|Unsp fx low end unsp tibia, 7thR +C2862597|T037|AB|S82.309S|ICD10CM|Unsp fracture of lower end of unspecified tibia, sequela|Unsp fracture of lower end of unspecified tibia, sequela +C2862597|T037|PT|S82.309S|ICD10CM|Unspecified fracture of lower end of unspecified tibia, sequela|Unspecified fracture of lower end of unspecified tibia, sequela +C2862598|T037|AB|S82.31|ICD10CM|Torus fracture of lower end of tibia|Torus fracture of lower end of tibia +C2862598|T037|HT|S82.31|ICD10CM|Torus fracture of lower end of tibia|Torus fracture of lower end of tibia +C2862599|T037|AB|S82.311|ICD10CM|Torus fracture of lower end of right tibia|Torus fracture of lower end of right tibia +C2862599|T037|HT|S82.311|ICD10CM|Torus fracture of lower end of right tibia|Torus fracture of lower end of right tibia +C2862600|T037|AB|S82.311A|ICD10CM|Torus fracture of lower end of right tibia, init for clos fx|Torus fracture of lower end of right tibia, init for clos fx +C2862600|T037|PT|S82.311A|ICD10CM|Torus fracture of lower end of right tibia, initial encounter for closed fracture|Torus fracture of lower end of right tibia, initial encounter for closed fracture +C2862601|T037|PT|S82.311D|ICD10CM|Torus fracture of lower end of right tibia, subsequent encounter for fracture with routine healing|Torus fracture of lower end of right tibia, subsequent encounter for fracture with routine healing +C2862601|T037|AB|S82.311D|ICD10CM|Torus fx lower end of right tibia, subs for fx w routn heal|Torus fx lower end of right tibia, subs for fx w routn heal +C2862602|T037|PT|S82.311G|ICD10CM|Torus fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing|Torus fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing +C2862602|T037|AB|S82.311G|ICD10CM|Torus fx lower end of right tibia, subs for fx w delay heal|Torus fx lower end of right tibia, subs for fx w delay heal +C2862603|T037|PT|S82.311K|ICD10CM|Torus fracture of lower end of right tibia, subsequent encounter for fracture with nonunion|Torus fracture of lower end of right tibia, subsequent encounter for fracture with nonunion +C2862603|T037|AB|S82.311K|ICD10CM|Torus fx lower end of right tibia, subs for fx w nonunion|Torus fx lower end of right tibia, subs for fx w nonunion +C2862604|T037|PT|S82.311P|ICD10CM|Torus fracture of lower end of right tibia, subsequent encounter for fracture with malunion|Torus fracture of lower end of right tibia, subsequent encounter for fracture with malunion +C2862604|T037|AB|S82.311P|ICD10CM|Torus fx lower end of right tibia, subs for fx w malunion|Torus fx lower end of right tibia, subs for fx w malunion +C2862605|T037|PT|S82.311S|ICD10CM|Torus fracture of lower end of right tibia, sequela|Torus fracture of lower end of right tibia, sequela +C2862605|T037|AB|S82.311S|ICD10CM|Torus fracture of lower end of right tibia, sequela|Torus fracture of lower end of right tibia, sequela +C2862606|T037|AB|S82.312|ICD10CM|Torus fracture of lower end of left tibia|Torus fracture of lower end of left tibia +C2862606|T037|HT|S82.312|ICD10CM|Torus fracture of lower end of left tibia|Torus fracture of lower end of left tibia +C2862607|T037|AB|S82.312A|ICD10CM|Torus fracture of lower end of left tibia, init for clos fx|Torus fracture of lower end of left tibia, init for clos fx +C2862607|T037|PT|S82.312A|ICD10CM|Torus fracture of lower end of left tibia, initial encounter for closed fracture|Torus fracture of lower end of left tibia, initial encounter for closed fracture +C2862608|T037|PT|S82.312D|ICD10CM|Torus fracture of lower end of left tibia, subsequent encounter for fracture with routine healing|Torus fracture of lower end of left tibia, subsequent encounter for fracture with routine healing +C2862608|T037|AB|S82.312D|ICD10CM|Torus fx lower end of left tibia, subs for fx w routn heal|Torus fx lower end of left tibia, subs for fx w routn heal +C2862609|T037|PT|S82.312G|ICD10CM|Torus fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing|Torus fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing +C2862609|T037|AB|S82.312G|ICD10CM|Torus fx lower end of left tibia, subs for fx w delay heal|Torus fx lower end of left tibia, subs for fx w delay heal +C2862610|T037|PT|S82.312K|ICD10CM|Torus fracture of lower end of left tibia, subsequent encounter for fracture with nonunion|Torus fracture of lower end of left tibia, subsequent encounter for fracture with nonunion +C2862610|T037|AB|S82.312K|ICD10CM|Torus fx lower end of left tibia, subs for fx w nonunion|Torus fx lower end of left tibia, subs for fx w nonunion +C2862611|T037|PT|S82.312P|ICD10CM|Torus fracture of lower end of left tibia, subsequent encounter for fracture with malunion|Torus fracture of lower end of left tibia, subsequent encounter for fracture with malunion +C2862611|T037|AB|S82.312P|ICD10CM|Torus fx lower end of left tibia, subs for fx w malunion|Torus fx lower end of left tibia, subs for fx w malunion +C2862612|T037|PT|S82.312S|ICD10CM|Torus fracture of lower end of left tibia, sequela|Torus fracture of lower end of left tibia, sequela +C2862612|T037|AB|S82.312S|ICD10CM|Torus fracture of lower end of left tibia, sequela|Torus fracture of lower end of left tibia, sequela +C2862613|T037|AB|S82.319|ICD10CM|Torus fracture of lower end of unspecified tibia|Torus fracture of lower end of unspecified tibia +C2862613|T037|HT|S82.319|ICD10CM|Torus fracture of lower end of unspecified tibia|Torus fracture of lower end of unspecified tibia +C2862614|T037|AB|S82.319A|ICD10CM|Torus fracture of lower end of unsp tibia, init for clos fx|Torus fracture of lower end of unsp tibia, init for clos fx +C2862614|T037|PT|S82.319A|ICD10CM|Torus fracture of lower end of unspecified tibia, initial encounter for closed fracture|Torus fracture of lower end of unspecified tibia, initial encounter for closed fracture +C2862615|T037|AB|S82.319D|ICD10CM|Torus fx lower end of unsp tibia, subs for fx w routn heal|Torus fx lower end of unsp tibia, subs for fx w routn heal +C2862616|T037|AB|S82.319G|ICD10CM|Torus fx lower end of unsp tibia, subs for fx w delay heal|Torus fx lower end of unsp tibia, subs for fx w delay heal +C2862617|T037|PT|S82.319K|ICD10CM|Torus fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion|Torus fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion +C2862617|T037|AB|S82.319K|ICD10CM|Torus fx lower end of unsp tibia, subs for fx w nonunion|Torus fx lower end of unsp tibia, subs for fx w nonunion +C2862618|T037|PT|S82.319P|ICD10CM|Torus fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion|Torus fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion +C2862618|T037|AB|S82.319P|ICD10CM|Torus fx lower end of unsp tibia, subs for fx w malunion|Torus fx lower end of unsp tibia, subs for fx w malunion +C2862619|T037|PT|S82.319S|ICD10CM|Torus fracture of lower end of unspecified tibia, sequela|Torus fracture of lower end of unspecified tibia, sequela +C2862619|T037|AB|S82.319S|ICD10CM|Torus fracture of lower end of unspecified tibia, sequela|Torus fracture of lower end of unspecified tibia, sequela +C0840704|T037|HT|S82.39|ICD10CM|Other fracture of lower end of tibia|Other fracture of lower end of tibia +C0840704|T037|AB|S82.39|ICD10CM|Other fracture of lower end of tibia|Other fracture of lower end of tibia +C2862620|T037|AB|S82.391|ICD10CM|Other fracture of lower end of right tibia|Other fracture of lower end of right tibia +C2862620|T037|HT|S82.391|ICD10CM|Other fracture of lower end of right tibia|Other fracture of lower end of right tibia +C2862621|T037|AB|S82.391A|ICD10CM|Oth fracture of lower end of right tibia, init for clos fx|Oth fracture of lower end of right tibia, init for clos fx +C2862621|T037|PT|S82.391A|ICD10CM|Other fracture of lower end of right tibia, initial encounter for closed fracture|Other fracture of lower end of right tibia, initial encounter for closed fracture +C2862622|T037|AB|S82.391B|ICD10CM|Oth fx lower end of right tibia, init for opn fx type I/2|Oth fx lower end of right tibia, init for opn fx type I/2 +C2862622|T037|PT|S82.391B|ICD10CM|Other fracture of lower end of right tibia, initial encounter for open fracture type I or II|Other fracture of lower end of right tibia, initial encounter for open fracture type I or II +C2862623|T037|AB|S82.391C|ICD10CM|Oth fx lower end of right tibia, init for opn fx type 3A/B/C|Oth fx lower end of right tibia, init for opn fx type 3A/B/C +C2862624|T037|AB|S82.391D|ICD10CM|Oth fx lower end of r tibia, subs for clos fx w routn heal|Oth fx lower end of r tibia, subs for clos fx w routn heal +C2862625|T037|AB|S82.391E|ICD10CM|Oth fx low end r tibia, 7thE|Oth fx low end r tibia, 7thE +C2862626|T037|AB|S82.391F|ICD10CM|Oth fx low end r tibia, 7thF|Oth fx low end r tibia, 7thF +C2862627|T037|AB|S82.391G|ICD10CM|Oth fx lower end of r tibia, subs for clos fx w delay heal|Oth fx lower end of r tibia, subs for clos fx w delay heal +C2862628|T037|AB|S82.391H|ICD10CM|Oth fx low end r tibia, 7thH|Oth fx low end r tibia, 7thH +C2862629|T037|AB|S82.391J|ICD10CM|Oth fx low end r tibia, 7thJ|Oth fx low end r tibia, 7thJ +C2862630|T037|AB|S82.391K|ICD10CM|Oth fx lower end of right tibia, subs for clos fx w nonunion|Oth fx lower end of right tibia, subs for clos fx w nonunion +C2862630|T037|PT|S82.391K|ICD10CM|Other fracture of lower end of right tibia, subsequent encounter for closed fracture with nonunion|Other fracture of lower end of right tibia, subsequent encounter for closed fracture with nonunion +C2862631|T037|AB|S82.391M|ICD10CM|Oth fx low end r tibia, subs for opn fx type I/2 w nonunion|Oth fx low end r tibia, subs for opn fx type I/2 w nonunion +C2862632|T037|AB|S82.391N|ICD10CM|Oth fx low end r tibia, 7thN|Oth fx low end r tibia, 7thN +C2862633|T037|AB|S82.391P|ICD10CM|Oth fx lower end of right tibia, subs for clos fx w malunion|Oth fx lower end of right tibia, subs for clos fx w malunion +C2862633|T037|PT|S82.391P|ICD10CM|Other fracture of lower end of right tibia, subsequent encounter for closed fracture with malunion|Other fracture of lower end of right tibia, subsequent encounter for closed fracture with malunion +C2862634|T037|AB|S82.391Q|ICD10CM|Oth fx low end r tibia, subs for opn fx type I/2 w malunion|Oth fx low end r tibia, subs for opn fx type I/2 w malunion +C2862635|T037|AB|S82.391R|ICD10CM|Oth fx low end r tibia, 7thR|Oth fx low end r tibia, 7thR +C2862636|T037|PT|S82.391S|ICD10CM|Other fracture of lower end of right tibia, sequela|Other fracture of lower end of right tibia, sequela +C2862636|T037|AB|S82.391S|ICD10CM|Other fracture of lower end of right tibia, sequela|Other fracture of lower end of right tibia, sequela +C2862637|T037|AB|S82.392|ICD10CM|Other fracture of lower end of left tibia|Other fracture of lower end of left tibia +C2862637|T037|HT|S82.392|ICD10CM|Other fracture of lower end of left tibia|Other fracture of lower end of left tibia +C2862638|T037|AB|S82.392A|ICD10CM|Oth fracture of lower end of left tibia, init for clos fx|Oth fracture of lower end of left tibia, init for clos fx +C2862638|T037|PT|S82.392A|ICD10CM|Other fracture of lower end of left tibia, initial encounter for closed fracture|Other fracture of lower end of left tibia, initial encounter for closed fracture +C2862639|T037|AB|S82.392B|ICD10CM|Oth fx lower end of left tibia, init for opn fx type I/2|Oth fx lower end of left tibia, init for opn fx type I/2 +C2862639|T037|PT|S82.392B|ICD10CM|Other fracture of lower end of left tibia, initial encounter for open fracture type I or II|Other fracture of lower end of left tibia, initial encounter for open fracture type I or II +C2862640|T037|AB|S82.392C|ICD10CM|Oth fx lower end of left tibia, init for opn fx type 3A/B/C|Oth fx lower end of left tibia, init for opn fx type 3A/B/C +C2862641|T037|AB|S82.392D|ICD10CM|Oth fx lower end of l tibia, subs for clos fx w routn heal|Oth fx lower end of l tibia, subs for clos fx w routn heal +C2862642|T037|AB|S82.392E|ICD10CM|Oth fx low end l tibia, 7thE|Oth fx low end l tibia, 7thE +C2862643|T037|AB|S82.392F|ICD10CM|Oth fx low end l tibia, 7thF|Oth fx low end l tibia, 7thF +C2862644|T037|AB|S82.392G|ICD10CM|Oth fx lower end of l tibia, subs for clos fx w delay heal|Oth fx lower end of l tibia, subs for clos fx w delay heal +C2862645|T037|AB|S82.392H|ICD10CM|Oth fx low end l tibia, 7thH|Oth fx low end l tibia, 7thH +C2862646|T037|AB|S82.392J|ICD10CM|Oth fx low end l tibia, 7thJ|Oth fx low end l tibia, 7thJ +C2862647|T037|AB|S82.392K|ICD10CM|Oth fx lower end of left tibia, subs for clos fx w nonunion|Oth fx lower end of left tibia, subs for clos fx w nonunion +C2862647|T037|PT|S82.392K|ICD10CM|Other fracture of lower end of left tibia, subsequent encounter for closed fracture with nonunion|Other fracture of lower end of left tibia, subsequent encounter for closed fracture with nonunion +C2862648|T037|AB|S82.392M|ICD10CM|Oth fx low end l tibia, subs for opn fx type I/2 w nonunion|Oth fx low end l tibia, subs for opn fx type I/2 w nonunion +C2862649|T037|AB|S82.392N|ICD10CM|Oth fx low end l tibia, 7thN|Oth fx low end l tibia, 7thN +C2862650|T037|AB|S82.392P|ICD10CM|Oth fx lower end of left tibia, subs for clos fx w malunion|Oth fx lower end of left tibia, subs for clos fx w malunion +C2862650|T037|PT|S82.392P|ICD10CM|Other fracture of lower end of left tibia, subsequent encounter for closed fracture with malunion|Other fracture of lower end of left tibia, subsequent encounter for closed fracture with malunion +C2862651|T037|AB|S82.392Q|ICD10CM|Oth fx low end l tibia, subs for opn fx type I/2 w malunion|Oth fx low end l tibia, subs for opn fx type I/2 w malunion +C2862652|T037|AB|S82.392R|ICD10CM|Oth fx low end l tibia, 7thR|Oth fx low end l tibia, 7thR +C2862653|T037|PT|S82.392S|ICD10CM|Other fracture of lower end of left tibia, sequela|Other fracture of lower end of left tibia, sequela +C2862653|T037|AB|S82.392S|ICD10CM|Other fracture of lower end of left tibia, sequela|Other fracture of lower end of left tibia, sequela +C2862654|T037|AB|S82.399|ICD10CM|Other fracture of lower end of unspecified tibia|Other fracture of lower end of unspecified tibia +C2862654|T037|HT|S82.399|ICD10CM|Other fracture of lower end of unspecified tibia|Other fracture of lower end of unspecified tibia +C2862655|T037|AB|S82.399A|ICD10CM|Oth fracture of lower end of unsp tibia, init for clos fx|Oth fracture of lower end of unsp tibia, init for clos fx +C2862655|T037|PT|S82.399A|ICD10CM|Other fracture of lower end of unspecified tibia, initial encounter for closed fracture|Other fracture of lower end of unspecified tibia, initial encounter for closed fracture +C2862656|T037|AB|S82.399B|ICD10CM|Oth fx lower end of unsp tibia, init for opn fx type I/2|Oth fx lower end of unsp tibia, init for opn fx type I/2 +C2862656|T037|PT|S82.399B|ICD10CM|Other fracture of lower end of unspecified tibia, initial encounter for open fracture type I or II|Other fracture of lower end of unspecified tibia, initial encounter for open fracture type I or II +C2862657|T037|AB|S82.399C|ICD10CM|Oth fx lower end of unsp tibia, init for opn fx type 3A/B/C|Oth fx lower end of unsp tibia, init for opn fx type 3A/B/C +C2862658|T037|AB|S82.399D|ICD10CM|Oth fx lower end unsp tibia, subs for clos fx w routn heal|Oth fx lower end unsp tibia, subs for clos fx w routn heal +C2862659|T037|AB|S82.399E|ICD10CM|Oth fx low end unsp tibia, 7thE|Oth fx low end unsp tibia, 7thE +C2862660|T037|AB|S82.399F|ICD10CM|Oth fx low end unsp tibia, 7thF|Oth fx low end unsp tibia, 7thF +C2862661|T037|AB|S82.399G|ICD10CM|Oth fx lower end unsp tibia, subs for clos fx w delay heal|Oth fx lower end unsp tibia, subs for clos fx w delay heal +C2862662|T037|AB|S82.399H|ICD10CM|Oth fx low end unsp tibia, 7thH|Oth fx low end unsp tibia, 7thH +C2862663|T037|AB|S82.399J|ICD10CM|Oth fx low end unsp tibia, 7thJ|Oth fx low end unsp tibia, 7thJ +C2862664|T037|AB|S82.399K|ICD10CM|Oth fx lower end of unsp tibia, subs for clos fx w nonunion|Oth fx lower end of unsp tibia, subs for clos fx w nonunion +C2862665|T037|AB|S82.399M|ICD10CM|Oth fx low end unsp tibia, 7thM|Oth fx low end unsp tibia, 7thM +C2862666|T037|AB|S82.399N|ICD10CM|Oth fx low end unsp tibia, 7thN|Oth fx low end unsp tibia, 7thN +C2862667|T037|AB|S82.399P|ICD10CM|Oth fx lower end of unsp tibia, subs for clos fx w malunion|Oth fx lower end of unsp tibia, subs for clos fx w malunion +C2862668|T037|AB|S82.399Q|ICD10CM|Oth fx low end unsp tibia, 7thQ|Oth fx low end unsp tibia, 7thQ +C2862669|T037|AB|S82.399R|ICD10CM|Oth fx low end unsp tibia, 7thR|Oth fx low end unsp tibia, 7thR +C2862670|T037|PT|S82.399S|ICD10CM|Other fracture of lower end of unspecified tibia, sequela|Other fracture of lower end of unspecified tibia, sequela +C2862670|T037|AB|S82.399S|ICD10CM|Other fracture of lower end of unspecified tibia, sequela|Other fracture of lower end of unspecified tibia, sequela +C0149699|T037|PT|S82.4|ICD10|Fracture of fibula alone|Fracture of fibula alone +C0272768|T037|HT|S82.4|ICD10CM|Fracture of shaft of fibula|Fracture of shaft of fibula +C0272768|T037|AB|S82.4|ICD10CM|Fracture of shaft of fibula|Fracture of shaft of fibula +C2862671|T037|AB|S82.40|ICD10CM|Unspecified fracture of shaft of fibula|Unspecified fracture of shaft of fibula +C2862671|T037|HT|S82.40|ICD10CM|Unspecified fracture of shaft of fibula|Unspecified fracture of shaft of fibula +C2862672|T037|AB|S82.401|ICD10CM|Unspecified fracture of shaft of right fibula|Unspecified fracture of shaft of right fibula +C2862672|T037|HT|S82.401|ICD10CM|Unspecified fracture of shaft of right fibula|Unspecified fracture of shaft of right fibula +C2862673|T037|AB|S82.401A|ICD10CM|Unsp fracture of shaft of right fibula, init for clos fx|Unsp fracture of shaft of right fibula, init for clos fx +C2862673|T037|PT|S82.401A|ICD10CM|Unspecified fracture of shaft of right fibula, initial encounter for closed fracture|Unspecified fracture of shaft of right fibula, initial encounter for closed fracture +C2862674|T037|AB|S82.401B|ICD10CM|Unsp fracture of shaft of r fibula, init for opn fx type I/2|Unsp fracture of shaft of r fibula, init for opn fx type I/2 +C2862674|T037|PT|S82.401B|ICD10CM|Unspecified fracture of shaft of right fibula, initial encounter for open fracture type I or II|Unspecified fracture of shaft of right fibula, initial encounter for open fracture type I or II +C2862675|T037|AB|S82.401C|ICD10CM|Unsp fx shaft of r fibula, init for opn fx type 3A/B/C|Unsp fx shaft of r fibula, init for opn fx type 3A/B/C +C2862676|T037|AB|S82.401D|ICD10CM|Unsp fx shaft of r fibula, subs for clos fx w routn heal|Unsp fx shaft of r fibula, subs for clos fx w routn heal +C2862677|T037|AB|S82.401E|ICD10CM|Unsp fx shaft of r fibula, 7thE|Unsp fx shaft of r fibula, 7thE +C2862678|T037|AB|S82.401F|ICD10CM|Unsp fx shaft of r fibula, 7thF|Unsp fx shaft of r fibula, 7thF +C2862679|T037|AB|S82.401G|ICD10CM|Unsp fx shaft of r fibula, subs for clos fx w delay heal|Unsp fx shaft of r fibula, subs for clos fx w delay heal +C2862680|T037|AB|S82.401H|ICD10CM|Unsp fx shaft of r fibula, 7thH|Unsp fx shaft of r fibula, 7thH +C2862681|T037|AB|S82.401J|ICD10CM|Unsp fx shaft of r fibula, 7thJ|Unsp fx shaft of r fibula, 7thJ +C2862682|T037|AB|S82.401K|ICD10CM|Unsp fx shaft of r fibula, subs for clos fx w nonunion|Unsp fx shaft of r fibula, subs for clos fx w nonunion +C2862683|T037|AB|S82.401M|ICD10CM|Unsp fx shaft of r fibula, 7thM|Unsp fx shaft of r fibula, 7thM +C2862684|T037|AB|S82.401N|ICD10CM|Unsp fx shaft of r fibula, 7thN|Unsp fx shaft of r fibula, 7thN +C2862685|T037|AB|S82.401P|ICD10CM|Unsp fx shaft of r fibula, subs for clos fx w malunion|Unsp fx shaft of r fibula, subs for clos fx w malunion +C2862686|T037|AB|S82.401Q|ICD10CM|Unsp fx shaft of r fibula, 7thQ|Unsp fx shaft of r fibula, 7thQ +C2862687|T037|AB|S82.401R|ICD10CM|Unsp fx shaft of r fibula, 7thR|Unsp fx shaft of r fibula, 7thR +C2862688|T037|PT|S82.401S|ICD10CM|Unspecified fracture of shaft of right fibula, sequela|Unspecified fracture of shaft of right fibula, sequela +C2862688|T037|AB|S82.401S|ICD10CM|Unspecified fracture of shaft of right fibula, sequela|Unspecified fracture of shaft of right fibula, sequela +C2862689|T037|AB|S82.402|ICD10CM|Unspecified fracture of shaft of left fibula|Unspecified fracture of shaft of left fibula +C2862689|T037|HT|S82.402|ICD10CM|Unspecified fracture of shaft of left fibula|Unspecified fracture of shaft of left fibula +C2862690|T037|AB|S82.402A|ICD10CM|Unsp fracture of shaft of left fibula, init for clos fx|Unsp fracture of shaft of left fibula, init for clos fx +C2862690|T037|PT|S82.402A|ICD10CM|Unspecified fracture of shaft of left fibula, initial encounter for closed fracture|Unspecified fracture of shaft of left fibula, initial encounter for closed fracture +C2862691|T037|AB|S82.402B|ICD10CM|Unsp fx shaft of left fibula, init for opn fx type I/2|Unsp fx shaft of left fibula, init for opn fx type I/2 +C2862691|T037|PT|S82.402B|ICD10CM|Unspecified fracture of shaft of left fibula, initial encounter for open fracture type I or II|Unspecified fracture of shaft of left fibula, initial encounter for open fracture type I or II +C2862692|T037|AB|S82.402C|ICD10CM|Unsp fx shaft of left fibula, init for opn fx type 3A/B/C|Unsp fx shaft of left fibula, init for opn fx type 3A/B/C +C2862693|T037|AB|S82.402D|ICD10CM|Unsp fx shaft of left fibula, subs for clos fx w routn heal|Unsp fx shaft of left fibula, subs for clos fx w routn heal +C2862694|T037|AB|S82.402E|ICD10CM|Unsp fx shaft of l fibula, 7thE|Unsp fx shaft of l fibula, 7thE +C2862695|T037|AB|S82.402F|ICD10CM|Unsp fx shaft of l fibula, 7thF|Unsp fx shaft of l fibula, 7thF +C2862696|T037|AB|S82.402G|ICD10CM|Unsp fx shaft of left fibula, subs for clos fx w delay heal|Unsp fx shaft of left fibula, subs for clos fx w delay heal +C2862697|T037|AB|S82.402H|ICD10CM|Unsp fx shaft of l fibula, 7thH|Unsp fx shaft of l fibula, 7thH +C2862698|T037|AB|S82.402J|ICD10CM|Unsp fx shaft of l fibula, 7thJ|Unsp fx shaft of l fibula, 7thJ +C2862699|T037|AB|S82.402K|ICD10CM|Unsp fx shaft of left fibula, subs for clos fx w nonunion|Unsp fx shaft of left fibula, subs for clos fx w nonunion +C2862699|T037|PT|S82.402K|ICD10CM|Unspecified fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion|Unspecified fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion +C2862700|T037|AB|S82.402M|ICD10CM|Unsp fx shaft of l fibula, 7thM|Unsp fx shaft of l fibula, 7thM +C2862701|T037|AB|S82.402N|ICD10CM|Unsp fx shaft of l fibula, 7thN|Unsp fx shaft of l fibula, 7thN +C2862702|T037|AB|S82.402P|ICD10CM|Unsp fx shaft of left fibula, subs for clos fx w malunion|Unsp fx shaft of left fibula, subs for clos fx w malunion +C2862702|T037|PT|S82.402P|ICD10CM|Unspecified fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion|Unspecified fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion +C2862703|T037|AB|S82.402Q|ICD10CM|Unsp fx shaft of l fibula, 7thQ|Unsp fx shaft of l fibula, 7thQ +C2862704|T037|AB|S82.402R|ICD10CM|Unsp fx shaft of l fibula, 7thR|Unsp fx shaft of l fibula, 7thR +C2862705|T037|PT|S82.402S|ICD10CM|Unspecified fracture of shaft of left fibula, sequela|Unspecified fracture of shaft of left fibula, sequela +C2862705|T037|AB|S82.402S|ICD10CM|Unspecified fracture of shaft of left fibula, sequela|Unspecified fracture of shaft of left fibula, sequela +C2862706|T037|AB|S82.409|ICD10CM|Unspecified fracture of shaft of unspecified fibula|Unspecified fracture of shaft of unspecified fibula +C2862706|T037|HT|S82.409|ICD10CM|Unspecified fracture of shaft of unspecified fibula|Unspecified fracture of shaft of unspecified fibula +C2862707|T037|AB|S82.409A|ICD10CM|Unsp fracture of shaft of unsp fibula, init for clos fx|Unsp fracture of shaft of unsp fibula, init for clos fx +C2862707|T037|PT|S82.409A|ICD10CM|Unspecified fracture of shaft of unspecified fibula, initial encounter for closed fracture|Unspecified fracture of shaft of unspecified fibula, initial encounter for closed fracture +C2862708|T037|AB|S82.409B|ICD10CM|Unsp fx shaft of unsp fibula, init for opn fx type I/2|Unsp fx shaft of unsp fibula, init for opn fx type I/2 +C2862709|T037|AB|S82.409C|ICD10CM|Unsp fx shaft of unsp fibula, init for opn fx type 3A/B/C|Unsp fx shaft of unsp fibula, init for opn fx type 3A/B/C +C2862710|T037|AB|S82.409D|ICD10CM|Unsp fx shaft of unsp fibula, subs for clos fx w routn heal|Unsp fx shaft of unsp fibula, subs for clos fx w routn heal +C2862711|T037|AB|S82.409E|ICD10CM|Unsp fx shaft of unsp fibula, 7thE|Unsp fx shaft of unsp fibula, 7thE +C2862712|T037|AB|S82.409F|ICD10CM|Unsp fx shaft of unsp fibula, 7thF|Unsp fx shaft of unsp fibula, 7thF +C2862713|T037|AB|S82.409G|ICD10CM|Unsp fx shaft of unsp fibula, subs for clos fx w delay heal|Unsp fx shaft of unsp fibula, subs for clos fx w delay heal +C2862714|T037|AB|S82.409H|ICD10CM|Unsp fx shaft of unsp fibula, 7thH|Unsp fx shaft of unsp fibula, 7thH +C2862715|T037|AB|S82.409J|ICD10CM|Unsp fx shaft of unsp fibula, 7thJ|Unsp fx shaft of unsp fibula, 7thJ +C2862716|T037|AB|S82.409K|ICD10CM|Unsp fx shaft of unsp fibula, subs for clos fx w nonunion|Unsp fx shaft of unsp fibula, subs for clos fx w nonunion +C2862717|T037|AB|S82.409M|ICD10CM|Unsp fx shaft of unsp fibula, 7thM|Unsp fx shaft of unsp fibula, 7thM +C2862718|T037|AB|S82.409N|ICD10CM|Unsp fx shaft of unsp fibula, 7thN|Unsp fx shaft of unsp fibula, 7thN +C2862719|T037|AB|S82.409P|ICD10CM|Unsp fx shaft of unsp fibula, subs for clos fx w malunion|Unsp fx shaft of unsp fibula, subs for clos fx w malunion +C2862720|T037|AB|S82.409Q|ICD10CM|Unsp fx shaft of unsp fibula, 7thQ|Unsp fx shaft of unsp fibula, 7thQ +C2862721|T037|AB|S82.409R|ICD10CM|Unsp fx shaft of unsp fibula, 7thR|Unsp fx shaft of unsp fibula, 7thR +C2862722|T037|AB|S82.409S|ICD10CM|Unspecified fracture of shaft of unspecified fibula, sequela|Unspecified fracture of shaft of unspecified fibula, sequela +C2862722|T037|PT|S82.409S|ICD10CM|Unspecified fracture of shaft of unspecified fibula, sequela|Unspecified fracture of shaft of unspecified fibula, sequela +C2862723|T037|AB|S82.42|ICD10CM|Transverse fracture of shaft of fibula|Transverse fracture of shaft of fibula +C2862723|T037|HT|S82.42|ICD10CM|Transverse fracture of shaft of fibula|Transverse fracture of shaft of fibula +C2862724|T037|AB|S82.421|ICD10CM|Displaced transverse fracture of shaft of right fibula|Displaced transverse fracture of shaft of right fibula +C2862724|T037|HT|S82.421|ICD10CM|Displaced transverse fracture of shaft of right fibula|Displaced transverse fracture of shaft of right fibula +C2862725|T037|AB|S82.421A|ICD10CM|Displaced transverse fracture of shaft of right fibula, init|Displaced transverse fracture of shaft of right fibula, init +C2862725|T037|PT|S82.421A|ICD10CM|Displaced transverse fracture of shaft of right fibula, initial encounter for closed fracture|Displaced transverse fracture of shaft of right fibula, initial encounter for closed fracture +C2862726|T037|AB|S82.421B|ICD10CM|Displ transverse fx shaft of r fibula, 7thB|Displ transverse fx shaft of r fibula, 7thB +C2862727|T037|AB|S82.421C|ICD10CM|Displ transverse fx shaft of r fibula, 7thC|Displ transverse fx shaft of r fibula, 7thC +C2862728|T037|AB|S82.421D|ICD10CM|Displ transverse fx shaft of r fibula, 7thD|Displ transverse fx shaft of r fibula, 7thD +C2862729|T037|AB|S82.421E|ICD10CM|Displ transverse fx shaft of r fibula, 7thE|Displ transverse fx shaft of r fibula, 7thE +C2862730|T037|AB|S82.421F|ICD10CM|Displ transverse fx shaft of r fibula, 7thF|Displ transverse fx shaft of r fibula, 7thF +C2862731|T037|AB|S82.421G|ICD10CM|Displ transverse fx shaft of r fibula, 7thG|Displ transverse fx shaft of r fibula, 7thG +C2862732|T037|AB|S82.421H|ICD10CM|Displ transverse fx shaft of r fibula, 7thH|Displ transverse fx shaft of r fibula, 7thH +C2862733|T037|AB|S82.421J|ICD10CM|Displ transverse fx shaft of r fibula, 7thJ|Displ transverse fx shaft of r fibula, 7thJ +C2862734|T037|AB|S82.421K|ICD10CM|Displ transverse fx shaft of r fibula, 7thK|Displ transverse fx shaft of r fibula, 7thK +C2862735|T037|AB|S82.421M|ICD10CM|Displ transverse fx shaft of r fibula, 7thM|Displ transverse fx shaft of r fibula, 7thM +C2862736|T037|AB|S82.421N|ICD10CM|Displ transverse fx shaft of r fibula, 7thN|Displ transverse fx shaft of r fibula, 7thN +C2862737|T037|AB|S82.421P|ICD10CM|Displ transverse fx shaft of r fibula, 7thP|Displ transverse fx shaft of r fibula, 7thP +C2862738|T037|AB|S82.421Q|ICD10CM|Displ transverse fx shaft of r fibula, 7thQ|Displ transverse fx shaft of r fibula, 7thQ +C2862739|T037|AB|S82.421R|ICD10CM|Displ transverse fx shaft of r fibula, 7thR|Displ transverse fx shaft of r fibula, 7thR +C2862740|T037|AB|S82.421S|ICD10CM|Displaced transverse fracture of shaft of r fibula, sequela|Displaced transverse fracture of shaft of r fibula, sequela +C2862740|T037|PT|S82.421S|ICD10CM|Displaced transverse fracture of shaft of right fibula, sequela|Displaced transverse fracture of shaft of right fibula, sequela +C2862741|T037|AB|S82.422|ICD10CM|Displaced transverse fracture of shaft of left fibula|Displaced transverse fracture of shaft of left fibula +C2862741|T037|HT|S82.422|ICD10CM|Displaced transverse fracture of shaft of left fibula|Displaced transverse fracture of shaft of left fibula +C2862742|T037|AB|S82.422A|ICD10CM|Displaced transverse fracture of shaft of left fibula, init|Displaced transverse fracture of shaft of left fibula, init +C2862742|T037|PT|S82.422A|ICD10CM|Displaced transverse fracture of shaft of left fibula, initial encounter for closed fracture|Displaced transverse fracture of shaft of left fibula, initial encounter for closed fracture +C2862743|T037|AB|S82.422B|ICD10CM|Displ transverse fx shaft of l fibula, 7thB|Displ transverse fx shaft of l fibula, 7thB +C2862744|T037|AB|S82.422C|ICD10CM|Displ transverse fx shaft of l fibula, 7thC|Displ transverse fx shaft of l fibula, 7thC +C2862745|T037|AB|S82.422D|ICD10CM|Displ transverse fx shaft of l fibula, 7thD|Displ transverse fx shaft of l fibula, 7thD +C2862746|T037|AB|S82.422E|ICD10CM|Displ transverse fx shaft of l fibula, 7thE|Displ transverse fx shaft of l fibula, 7thE +C2862747|T037|AB|S82.422F|ICD10CM|Displ transverse fx shaft of l fibula, 7thF|Displ transverse fx shaft of l fibula, 7thF +C2862748|T037|AB|S82.422G|ICD10CM|Displ transverse fx shaft of l fibula, 7thG|Displ transverse fx shaft of l fibula, 7thG +C2862749|T037|AB|S82.422H|ICD10CM|Displ transverse fx shaft of l fibula, 7thH|Displ transverse fx shaft of l fibula, 7thH +C2862750|T037|AB|S82.422J|ICD10CM|Displ transverse fx shaft of l fibula, 7thJ|Displ transverse fx shaft of l fibula, 7thJ +C2862751|T037|AB|S82.422K|ICD10CM|Displ transverse fx shaft of l fibula, 7thK|Displ transverse fx shaft of l fibula, 7thK +C2862752|T037|AB|S82.422M|ICD10CM|Displ transverse fx shaft of l fibula, 7thM|Displ transverse fx shaft of l fibula, 7thM +C2862753|T037|AB|S82.422N|ICD10CM|Displ transverse fx shaft of l fibula, 7thN|Displ transverse fx shaft of l fibula, 7thN +C2862754|T037|AB|S82.422P|ICD10CM|Displ transverse fx shaft of l fibula, 7thP|Displ transverse fx shaft of l fibula, 7thP +C2862755|T037|AB|S82.422Q|ICD10CM|Displ transverse fx shaft of l fibula, 7thQ|Displ transverse fx shaft of l fibula, 7thQ +C2862756|T037|AB|S82.422R|ICD10CM|Displ transverse fx shaft of l fibula, 7thR|Displ transverse fx shaft of l fibula, 7thR +C2862757|T037|PT|S82.422S|ICD10CM|Displaced transverse fracture of shaft of left fibula, sequela|Displaced transverse fracture of shaft of left fibula, sequela +C2862757|T037|AB|S82.422S|ICD10CM|Displaced transverse fx shaft of left fibula, sequela|Displaced transverse fx shaft of left fibula, sequela +C2862758|T037|AB|S82.423|ICD10CM|Displaced transverse fracture of shaft of unspecified fibula|Displaced transverse fracture of shaft of unspecified fibula +C2862758|T037|HT|S82.423|ICD10CM|Displaced transverse fracture of shaft of unspecified fibula|Displaced transverse fracture of shaft of unspecified fibula +C2862759|T037|AB|S82.423A|ICD10CM|Displaced transverse fracture of shaft of unsp fibula, init|Displaced transverse fracture of shaft of unsp fibula, init +C2862759|T037|PT|S82.423A|ICD10CM|Displaced transverse fracture of shaft of unspecified fibula, initial encounter for closed fracture|Displaced transverse fracture of shaft of unspecified fibula, initial encounter for closed fracture +C2862760|T037|AB|S82.423B|ICD10CM|Displ transverse fx shaft of unsp fibula, 7thB|Displ transverse fx shaft of unsp fibula, 7thB +C2862761|T037|AB|S82.423C|ICD10CM|Displ transverse fx shaft of unsp fibula, 7thC|Displ transverse fx shaft of unsp fibula, 7thC +C2862762|T037|AB|S82.423D|ICD10CM|Displ transverse fx shaft of unsp fibula, 7thD|Displ transverse fx shaft of unsp fibula, 7thD +C2862763|T037|AB|S82.423E|ICD10CM|Displ transverse fx shaft of unsp fibula, 7thE|Displ transverse fx shaft of unsp fibula, 7thE +C2862764|T037|AB|S82.423F|ICD10CM|Displ transverse fx shaft of unsp fibula, 7thF|Displ transverse fx shaft of unsp fibula, 7thF +C2862765|T037|AB|S82.423G|ICD10CM|Displ transverse fx shaft of unsp fibula, 7thG|Displ transverse fx shaft of unsp fibula, 7thG +C2862766|T037|AB|S82.423H|ICD10CM|Displ transverse fx shaft of unsp fibula, 7thH|Displ transverse fx shaft of unsp fibula, 7thH +C2862767|T037|AB|S82.423J|ICD10CM|Displ transverse fx shaft of unsp fibula, 7thJ|Displ transverse fx shaft of unsp fibula, 7thJ +C2862768|T037|AB|S82.423K|ICD10CM|Displ transverse fx shaft of unsp fibula, 7thK|Displ transverse fx shaft of unsp fibula, 7thK +C2862769|T037|AB|S82.423M|ICD10CM|Displ transverse fx shaft of unsp fibula, 7thM|Displ transverse fx shaft of unsp fibula, 7thM +C2862770|T037|AB|S82.423N|ICD10CM|Displ transverse fx shaft of unsp fibula, 7thN|Displ transverse fx shaft of unsp fibula, 7thN +C2862771|T037|AB|S82.423P|ICD10CM|Displ transverse fx shaft of unsp fibula, 7thP|Displ transverse fx shaft of unsp fibula, 7thP +C2862772|T037|AB|S82.423Q|ICD10CM|Displ transverse fx shaft of unsp fibula, 7thQ|Displ transverse fx shaft of unsp fibula, 7thQ +C2862773|T037|AB|S82.423R|ICD10CM|Displ transverse fx shaft of unsp fibula, 7thR|Displ transverse fx shaft of unsp fibula, 7thR +C2862774|T037|PT|S82.423S|ICD10CM|Displaced transverse fracture of shaft of unspecified fibula, sequela|Displaced transverse fracture of shaft of unspecified fibula, sequela +C2862774|T037|AB|S82.423S|ICD10CM|Displaced transverse fx shaft of unsp fibula, sequela|Displaced transverse fx shaft of unsp fibula, sequela +C2862775|T037|AB|S82.424|ICD10CM|Nondisplaced transverse fracture of shaft of right fibula|Nondisplaced transverse fracture of shaft of right fibula +C2862775|T037|HT|S82.424|ICD10CM|Nondisplaced transverse fracture of shaft of right fibula|Nondisplaced transverse fracture of shaft of right fibula +C2862776|T037|AB|S82.424A|ICD10CM|Nondisp transverse fracture of shaft of right fibula, init|Nondisp transverse fracture of shaft of right fibula, init +C2862776|T037|PT|S82.424A|ICD10CM|Nondisplaced transverse fracture of shaft of right fibula, initial encounter for closed fracture|Nondisplaced transverse fracture of shaft of right fibula, initial encounter for closed fracture +C2862777|T037|AB|S82.424B|ICD10CM|Nondisp transverse fx shaft of r fibula, 7thB|Nondisp transverse fx shaft of r fibula, 7thB +C2862778|T037|AB|S82.424C|ICD10CM|Nondisp transverse fx shaft of r fibula, 7thC|Nondisp transverse fx shaft of r fibula, 7thC +C2862779|T037|AB|S82.424D|ICD10CM|Nondisp transverse fx shaft of r fibula, 7thD|Nondisp transverse fx shaft of r fibula, 7thD +C2862780|T037|AB|S82.424E|ICD10CM|Nondisp transverse fx shaft of r fibula, 7thE|Nondisp transverse fx shaft of r fibula, 7thE +C2862781|T037|AB|S82.424F|ICD10CM|Nondisp transverse fx shaft of r fibula, 7thF|Nondisp transverse fx shaft of r fibula, 7thF +C2862782|T037|AB|S82.424G|ICD10CM|Nondisp transverse fx shaft of r fibula, 7thG|Nondisp transverse fx shaft of r fibula, 7thG +C2862783|T037|AB|S82.424H|ICD10CM|Nondisp transverse fx shaft of r fibula, 7thH|Nondisp transverse fx shaft of r fibula, 7thH +C2862784|T037|AB|S82.424J|ICD10CM|Nondisp transverse fx shaft of r fibula, 7thJ|Nondisp transverse fx shaft of r fibula, 7thJ +C2862785|T037|AB|S82.424K|ICD10CM|Nondisp transverse fx shaft of r fibula, 7thK|Nondisp transverse fx shaft of r fibula, 7thK +C2862786|T037|AB|S82.424M|ICD10CM|Nondisp transverse fx shaft of r fibula, 7thM|Nondisp transverse fx shaft of r fibula, 7thM +C2862787|T037|AB|S82.424N|ICD10CM|Nondisp transverse fx shaft of r fibula, 7thN|Nondisp transverse fx shaft of r fibula, 7thN +C2862788|T037|AB|S82.424P|ICD10CM|Nondisp transverse fx shaft of r fibula, 7thP|Nondisp transverse fx shaft of r fibula, 7thP +C2862789|T037|AB|S82.424Q|ICD10CM|Nondisp transverse fx shaft of r fibula, 7thQ|Nondisp transverse fx shaft of r fibula, 7thQ +C2862790|T037|AB|S82.424R|ICD10CM|Nondisp transverse fx shaft of r fibula, 7thR|Nondisp transverse fx shaft of r fibula, 7thR +C2862791|T037|AB|S82.424S|ICD10CM|Nondisp transverse fracture of shaft of r fibula, sequela|Nondisp transverse fracture of shaft of r fibula, sequela +C2862791|T037|PT|S82.424S|ICD10CM|Nondisplaced transverse fracture of shaft of right fibula, sequela|Nondisplaced transverse fracture of shaft of right fibula, sequela +C2862792|T037|AB|S82.425|ICD10CM|Nondisplaced transverse fracture of shaft of left fibula|Nondisplaced transverse fracture of shaft of left fibula +C2862792|T037|HT|S82.425|ICD10CM|Nondisplaced transverse fracture of shaft of left fibula|Nondisplaced transverse fracture of shaft of left fibula +C2862793|T037|AB|S82.425A|ICD10CM|Nondisp transverse fracture of shaft of left fibula, init|Nondisp transverse fracture of shaft of left fibula, init +C2862793|T037|PT|S82.425A|ICD10CM|Nondisplaced transverse fracture of shaft of left fibula, initial encounter for closed fracture|Nondisplaced transverse fracture of shaft of left fibula, initial encounter for closed fracture +C2862794|T037|AB|S82.425B|ICD10CM|Nondisp transverse fx shaft of l fibula, 7thB|Nondisp transverse fx shaft of l fibula, 7thB +C2862795|T037|AB|S82.425C|ICD10CM|Nondisp transverse fx shaft of l fibula, 7thC|Nondisp transverse fx shaft of l fibula, 7thC +C2862796|T037|AB|S82.425D|ICD10CM|Nondisp transverse fx shaft of l fibula, 7thD|Nondisp transverse fx shaft of l fibula, 7thD +C2862797|T037|AB|S82.425E|ICD10CM|Nondisp transverse fx shaft of l fibula, 7thE|Nondisp transverse fx shaft of l fibula, 7thE +C2862798|T037|AB|S82.425F|ICD10CM|Nondisp transverse fx shaft of l fibula, 7thF|Nondisp transverse fx shaft of l fibula, 7thF +C2862799|T037|AB|S82.425G|ICD10CM|Nondisp transverse fx shaft of l fibula, 7thG|Nondisp transverse fx shaft of l fibula, 7thG +C2862800|T037|AB|S82.425H|ICD10CM|Nondisp transverse fx shaft of l fibula, 7thH|Nondisp transverse fx shaft of l fibula, 7thH +C2862801|T037|AB|S82.425J|ICD10CM|Nondisp transverse fx shaft of l fibula, 7thJ|Nondisp transverse fx shaft of l fibula, 7thJ +C2862802|T037|AB|S82.425K|ICD10CM|Nondisp transverse fx shaft of l fibula, 7thK|Nondisp transverse fx shaft of l fibula, 7thK +C2862803|T037|AB|S82.425M|ICD10CM|Nondisp transverse fx shaft of l fibula, 7thM|Nondisp transverse fx shaft of l fibula, 7thM +C2862804|T037|AB|S82.425N|ICD10CM|Nondisp transverse fx shaft of l fibula, 7thN|Nondisp transverse fx shaft of l fibula, 7thN +C2862805|T037|AB|S82.425P|ICD10CM|Nondisp transverse fx shaft of l fibula, 7thP|Nondisp transverse fx shaft of l fibula, 7thP +C2862806|T037|AB|S82.425Q|ICD10CM|Nondisp transverse fx shaft of l fibula, 7thQ|Nondisp transverse fx shaft of l fibula, 7thQ +C2862807|T037|AB|S82.425R|ICD10CM|Nondisp transverse fx shaft of l fibula, 7thR|Nondisp transverse fx shaft of l fibula, 7thR +C2862808|T037|AB|S82.425S|ICD10CM|Nondisp transverse fracture of shaft of left fibula, sequela|Nondisp transverse fracture of shaft of left fibula, sequela +C2862808|T037|PT|S82.425S|ICD10CM|Nondisplaced transverse fracture of shaft of left fibula, sequela|Nondisplaced transverse fracture of shaft of left fibula, sequela +C2862809|T037|AB|S82.426|ICD10CM|Nondisplaced transverse fracture of shaft of unsp fibula|Nondisplaced transverse fracture of shaft of unsp fibula +C2862809|T037|HT|S82.426|ICD10CM|Nondisplaced transverse fracture of shaft of unspecified fibula|Nondisplaced transverse fracture of shaft of unspecified fibula +C2862810|T037|AB|S82.426A|ICD10CM|Nondisp transverse fracture of shaft of unsp fibula, init|Nondisp transverse fracture of shaft of unsp fibula, init +C2862811|T037|AB|S82.426B|ICD10CM|Nondisp transverse fx shaft of unsp fibula, 7thB|Nondisp transverse fx shaft of unsp fibula, 7thB +C2862812|T037|AB|S82.426C|ICD10CM|Nondisp transverse fx shaft of unsp fibula, 7thC|Nondisp transverse fx shaft of unsp fibula, 7thC +C2862813|T037|AB|S82.426D|ICD10CM|Nondisp transverse fx shaft of unsp fibula, 7thD|Nondisp transverse fx shaft of unsp fibula, 7thD +C2862814|T037|AB|S82.426E|ICD10CM|Nondisp transverse fx shaft of unsp fibula, 7thE|Nondisp transverse fx shaft of unsp fibula, 7thE +C2862815|T037|AB|S82.426F|ICD10CM|Nondisp transverse fx shaft of unsp fibula, 7thF|Nondisp transverse fx shaft of unsp fibula, 7thF +C2862816|T037|AB|S82.426G|ICD10CM|Nondisp transverse fx shaft of unsp fibula, 7thG|Nondisp transverse fx shaft of unsp fibula, 7thG +C2862817|T037|AB|S82.426H|ICD10CM|Nondisp transverse fx shaft of unsp fibula, 7thH|Nondisp transverse fx shaft of unsp fibula, 7thH +C2862818|T037|AB|S82.426J|ICD10CM|Nondisp transverse fx shaft of unsp fibula, 7thJ|Nondisp transverse fx shaft of unsp fibula, 7thJ +C2862819|T037|AB|S82.426K|ICD10CM|Nondisp transverse fx shaft of unsp fibula, 7thK|Nondisp transverse fx shaft of unsp fibula, 7thK +C2862820|T037|AB|S82.426M|ICD10CM|Nondisp transverse fx shaft of unsp fibula, 7thM|Nondisp transverse fx shaft of unsp fibula, 7thM +C2862821|T037|AB|S82.426N|ICD10CM|Nondisp transverse fx shaft of unsp fibula, 7thN|Nondisp transverse fx shaft of unsp fibula, 7thN +C2862822|T037|AB|S82.426P|ICD10CM|Nondisp transverse fx shaft of unsp fibula, 7thP|Nondisp transverse fx shaft of unsp fibula, 7thP +C2862823|T037|AB|S82.426Q|ICD10CM|Nondisp transverse fx shaft of unsp fibula, 7thQ|Nondisp transverse fx shaft of unsp fibula, 7thQ +C2862824|T037|AB|S82.426R|ICD10CM|Nondisp transverse fx shaft of unsp fibula, 7thR|Nondisp transverse fx shaft of unsp fibula, 7thR +C2862825|T037|AB|S82.426S|ICD10CM|Nondisp transverse fracture of shaft of unsp fibula, sequela|Nondisp transverse fracture of shaft of unsp fibula, sequela +C2862825|T037|PT|S82.426S|ICD10CM|Nondisplaced transverse fracture of shaft of unspecified fibula, sequela|Nondisplaced transverse fracture of shaft of unspecified fibula, sequela +C2862826|T037|AB|S82.43|ICD10CM|Oblique fracture of shaft of fibula|Oblique fracture of shaft of fibula +C2862826|T037|HT|S82.43|ICD10CM|Oblique fracture of shaft of fibula|Oblique fracture of shaft of fibula +C2862827|T037|AB|S82.431|ICD10CM|Displaced oblique fracture of shaft of right fibula|Displaced oblique fracture of shaft of right fibula +C2862827|T037|HT|S82.431|ICD10CM|Displaced oblique fracture of shaft of right fibula|Displaced oblique fracture of shaft of right fibula +C2862828|T037|AB|S82.431A|ICD10CM|Displaced oblique fracture of shaft of right fibula, init|Displaced oblique fracture of shaft of right fibula, init +C2862828|T037|PT|S82.431A|ICD10CM|Displaced oblique fracture of shaft of right fibula, initial encounter for closed fracture|Displaced oblique fracture of shaft of right fibula, initial encounter for closed fracture +C2862829|T037|AB|S82.431B|ICD10CM|Displ oblique fx shaft of r fibula, init for opn fx type I/2|Displ oblique fx shaft of r fibula, init for opn fx type I/2 +C2862830|T037|AB|S82.431C|ICD10CM|Displ oblique fx shaft of r fibula, 7thC|Displ oblique fx shaft of r fibula, 7thC +C2862831|T037|AB|S82.431D|ICD10CM|Displ oblique fx shaft of r fibula, 7thD|Displ oblique fx shaft of r fibula, 7thD +C2862832|T037|AB|S82.431E|ICD10CM|Displ oblique fx shaft of r fibula, 7thE|Displ oblique fx shaft of r fibula, 7thE +C2862833|T037|AB|S82.431F|ICD10CM|Displ oblique fx shaft of r fibula, 7thF|Displ oblique fx shaft of r fibula, 7thF +C2862834|T037|AB|S82.431G|ICD10CM|Displ oblique fx shaft of r fibula, 7thG|Displ oblique fx shaft of r fibula, 7thG +C2862835|T037|AB|S82.431H|ICD10CM|Displ oblique fx shaft of r fibula, 7thH|Displ oblique fx shaft of r fibula, 7thH +C2862836|T037|AB|S82.431J|ICD10CM|Displ oblique fx shaft of r fibula, 7thJ|Displ oblique fx shaft of r fibula, 7thJ +C2862837|T037|AB|S82.431K|ICD10CM|Displ oblique fx shaft of r fibula, 7thK|Displ oblique fx shaft of r fibula, 7thK +C2862838|T037|AB|S82.431M|ICD10CM|Displ oblique fx shaft of r fibula, 7thM|Displ oblique fx shaft of r fibula, 7thM +C2862839|T037|AB|S82.431N|ICD10CM|Displ oblique fx shaft of r fibula, 7thN|Displ oblique fx shaft of r fibula, 7thN +C2862840|T037|AB|S82.431P|ICD10CM|Displ oblique fx shaft of r fibula, 7thP|Displ oblique fx shaft of r fibula, 7thP +C2862841|T037|AB|S82.431Q|ICD10CM|Displ oblique fx shaft of r fibula, 7thQ|Displ oblique fx shaft of r fibula, 7thQ +C2862842|T037|AB|S82.431R|ICD10CM|Displ oblique fx shaft of r fibula, 7thR|Displ oblique fx shaft of r fibula, 7thR +C2862843|T037|AB|S82.431S|ICD10CM|Displaced oblique fracture of shaft of right fibula, sequela|Displaced oblique fracture of shaft of right fibula, sequela +C2862843|T037|PT|S82.431S|ICD10CM|Displaced oblique fracture of shaft of right fibula, sequela|Displaced oblique fracture of shaft of right fibula, sequela +C2862844|T037|AB|S82.432|ICD10CM|Displaced oblique fracture of shaft of left fibula|Displaced oblique fracture of shaft of left fibula +C2862844|T037|HT|S82.432|ICD10CM|Displaced oblique fracture of shaft of left fibula|Displaced oblique fracture of shaft of left fibula +C2862845|T037|AB|S82.432A|ICD10CM|Displaced oblique fracture of shaft of left fibula, init|Displaced oblique fracture of shaft of left fibula, init +C2862845|T037|PT|S82.432A|ICD10CM|Displaced oblique fracture of shaft of left fibula, initial encounter for closed fracture|Displaced oblique fracture of shaft of left fibula, initial encounter for closed fracture +C2862846|T037|AB|S82.432B|ICD10CM|Displ oblique fx shaft of l fibula, init for opn fx type I/2|Displ oblique fx shaft of l fibula, init for opn fx type I/2 +C2862846|T037|PT|S82.432B|ICD10CM|Displaced oblique fracture of shaft of left fibula, initial encounter for open fracture type I or II|Displaced oblique fracture of shaft of left fibula, initial encounter for open fracture type I or II +C2862847|T037|AB|S82.432C|ICD10CM|Displ oblique fx shaft of l fibula, 7thC|Displ oblique fx shaft of l fibula, 7thC +C2862848|T037|AB|S82.432D|ICD10CM|Displ oblique fx shaft of l fibula, 7thD|Displ oblique fx shaft of l fibula, 7thD +C2862849|T037|AB|S82.432E|ICD10CM|Displ oblique fx shaft of l fibula, 7thE|Displ oblique fx shaft of l fibula, 7thE +C2862850|T037|AB|S82.432F|ICD10CM|Displ oblique fx shaft of l fibula, 7thF|Displ oblique fx shaft of l fibula, 7thF +C2862851|T037|AB|S82.432G|ICD10CM|Displ oblique fx shaft of l fibula, 7thG|Displ oblique fx shaft of l fibula, 7thG +C2862852|T037|AB|S82.432H|ICD10CM|Displ oblique fx shaft of l fibula, 7thH|Displ oblique fx shaft of l fibula, 7thH +C2862853|T037|AB|S82.432J|ICD10CM|Displ oblique fx shaft of l fibula, 7thJ|Displ oblique fx shaft of l fibula, 7thJ +C2862854|T037|AB|S82.432K|ICD10CM|Displ oblique fx shaft of l fibula, 7thK|Displ oblique fx shaft of l fibula, 7thK +C2862855|T037|AB|S82.432M|ICD10CM|Displ oblique fx shaft of l fibula, 7thM|Displ oblique fx shaft of l fibula, 7thM +C2862856|T037|AB|S82.432N|ICD10CM|Displ oblique fx shaft of l fibula, 7thN|Displ oblique fx shaft of l fibula, 7thN +C2862857|T037|AB|S82.432P|ICD10CM|Displ oblique fx shaft of l fibula, 7thP|Displ oblique fx shaft of l fibula, 7thP +C2862858|T037|AB|S82.432Q|ICD10CM|Displ oblique fx shaft of l fibula, 7thQ|Displ oblique fx shaft of l fibula, 7thQ +C2862859|T037|AB|S82.432R|ICD10CM|Displ oblique fx shaft of l fibula, 7thR|Displ oblique fx shaft of l fibula, 7thR +C2862860|T037|PT|S82.432S|ICD10CM|Displaced oblique fracture of shaft of left fibula, sequela|Displaced oblique fracture of shaft of left fibula, sequela +C2862860|T037|AB|S82.432S|ICD10CM|Displaced oblique fracture of shaft of left fibula, sequela|Displaced oblique fracture of shaft of left fibula, sequela +C2862861|T037|AB|S82.433|ICD10CM|Displaced oblique fracture of shaft of unspecified fibula|Displaced oblique fracture of shaft of unspecified fibula +C2862861|T037|HT|S82.433|ICD10CM|Displaced oblique fracture of shaft of unspecified fibula|Displaced oblique fracture of shaft of unspecified fibula +C2862862|T037|AB|S82.433A|ICD10CM|Displaced oblique fracture of shaft of unsp fibula, init|Displaced oblique fracture of shaft of unsp fibula, init +C2862862|T037|PT|S82.433A|ICD10CM|Displaced oblique fracture of shaft of unspecified fibula, initial encounter for closed fracture|Displaced oblique fracture of shaft of unspecified fibula, initial encounter for closed fracture +C2862863|T037|AB|S82.433B|ICD10CM|Displ oblique fx shaft of unsp fibula, 7thB|Displ oblique fx shaft of unsp fibula, 7thB +C2862864|T037|AB|S82.433C|ICD10CM|Displ oblique fx shaft of unsp fibula, 7thC|Displ oblique fx shaft of unsp fibula, 7thC +C2862865|T037|AB|S82.433D|ICD10CM|Displ oblique fx shaft of unsp fibula, 7thD|Displ oblique fx shaft of unsp fibula, 7thD +C2862866|T037|AB|S82.433E|ICD10CM|Displ oblique fx shaft of unsp fibula, 7thE|Displ oblique fx shaft of unsp fibula, 7thE +C2862867|T037|AB|S82.433F|ICD10CM|Displ oblique fx shaft of unsp fibula, 7thF|Displ oblique fx shaft of unsp fibula, 7thF +C2862868|T037|AB|S82.433G|ICD10CM|Displ oblique fx shaft of unsp fibula, 7thG|Displ oblique fx shaft of unsp fibula, 7thG +C2862869|T037|AB|S82.433H|ICD10CM|Displ oblique fx shaft of unsp fibula, 7thH|Displ oblique fx shaft of unsp fibula, 7thH +C2862870|T037|AB|S82.433J|ICD10CM|Displ oblique fx shaft of unsp fibula, 7thJ|Displ oblique fx shaft of unsp fibula, 7thJ +C2862871|T037|AB|S82.433K|ICD10CM|Displ oblique fx shaft of unsp fibula, 7thK|Displ oblique fx shaft of unsp fibula, 7thK +C2862872|T037|AB|S82.433M|ICD10CM|Displ oblique fx shaft of unsp fibula, 7thM|Displ oblique fx shaft of unsp fibula, 7thM +C2862873|T037|AB|S82.433N|ICD10CM|Displ oblique fx shaft of unsp fibula, 7thN|Displ oblique fx shaft of unsp fibula, 7thN +C2862874|T037|AB|S82.433P|ICD10CM|Displ oblique fx shaft of unsp fibula, 7thP|Displ oblique fx shaft of unsp fibula, 7thP +C2862875|T037|AB|S82.433Q|ICD10CM|Displ oblique fx shaft of unsp fibula, 7thQ|Displ oblique fx shaft of unsp fibula, 7thQ +C2862876|T037|AB|S82.433R|ICD10CM|Displ oblique fx shaft of unsp fibula, 7thR|Displ oblique fx shaft of unsp fibula, 7thR +C2862877|T037|AB|S82.433S|ICD10CM|Displaced oblique fracture of shaft of unsp fibula, sequela|Displaced oblique fracture of shaft of unsp fibula, sequela +C2862877|T037|PT|S82.433S|ICD10CM|Displaced oblique fracture of shaft of unspecified fibula, sequela|Displaced oblique fracture of shaft of unspecified fibula, sequela +C2862878|T037|AB|S82.434|ICD10CM|Nondisplaced oblique fracture of shaft of right fibula|Nondisplaced oblique fracture of shaft of right fibula +C2862878|T037|HT|S82.434|ICD10CM|Nondisplaced oblique fracture of shaft of right fibula|Nondisplaced oblique fracture of shaft of right fibula +C2862879|T037|AB|S82.434A|ICD10CM|Nondisplaced oblique fracture of shaft of right fibula, init|Nondisplaced oblique fracture of shaft of right fibula, init +C2862879|T037|PT|S82.434A|ICD10CM|Nondisplaced oblique fracture of shaft of right fibula, initial encounter for closed fracture|Nondisplaced oblique fracture of shaft of right fibula, initial encounter for closed fracture +C2862880|T037|AB|S82.434B|ICD10CM|Nondisp oblique fx shaft of r fibula, 7thB|Nondisp oblique fx shaft of r fibula, 7thB +C2862881|T037|AB|S82.434C|ICD10CM|Nondisp oblique fx shaft of r fibula, 7thC|Nondisp oblique fx shaft of r fibula, 7thC +C2862882|T037|AB|S82.434D|ICD10CM|Nondisp oblique fx shaft of r fibula, 7thD|Nondisp oblique fx shaft of r fibula, 7thD +C2862883|T037|AB|S82.434E|ICD10CM|Nondisp oblique fx shaft of r fibula, 7thE|Nondisp oblique fx shaft of r fibula, 7thE +C2862884|T037|AB|S82.434F|ICD10CM|Nondisp oblique fx shaft of r fibula, 7thF|Nondisp oblique fx shaft of r fibula, 7thF +C2862885|T037|AB|S82.434G|ICD10CM|Nondisp oblique fx shaft of r fibula, 7thG|Nondisp oblique fx shaft of r fibula, 7thG +C2862886|T037|AB|S82.434H|ICD10CM|Nondisp oblique fx shaft of r fibula, 7thH|Nondisp oblique fx shaft of r fibula, 7thH +C2862887|T037|AB|S82.434J|ICD10CM|Nondisp oblique fx shaft of r fibula, 7thJ|Nondisp oblique fx shaft of r fibula, 7thJ +C2862888|T037|AB|S82.434K|ICD10CM|Nondisp oblique fx shaft of r fibula, 7thK|Nondisp oblique fx shaft of r fibula, 7thK +C2862889|T037|AB|S82.434M|ICD10CM|Nondisp oblique fx shaft of r fibula, 7thM|Nondisp oblique fx shaft of r fibula, 7thM +C2862890|T037|AB|S82.434N|ICD10CM|Nondisp oblique fx shaft of r fibula, 7thN|Nondisp oblique fx shaft of r fibula, 7thN +C2862891|T037|AB|S82.434P|ICD10CM|Nondisp oblique fx shaft of r fibula, 7thP|Nondisp oblique fx shaft of r fibula, 7thP +C2862892|T037|AB|S82.434Q|ICD10CM|Nondisp oblique fx shaft of r fibula, 7thQ|Nondisp oblique fx shaft of r fibula, 7thQ +C2862893|T037|AB|S82.434R|ICD10CM|Nondisp oblique fx shaft of r fibula, 7thR|Nondisp oblique fx shaft of r fibula, 7thR +C2862894|T037|AB|S82.434S|ICD10CM|Nondisp oblique fracture of shaft of right fibula, sequela|Nondisp oblique fracture of shaft of right fibula, sequela +C2862894|T037|PT|S82.434S|ICD10CM|Nondisplaced oblique fracture of shaft of right fibula, sequela|Nondisplaced oblique fracture of shaft of right fibula, sequela +C2862895|T037|AB|S82.435|ICD10CM|Nondisplaced oblique fracture of shaft of left fibula|Nondisplaced oblique fracture of shaft of left fibula +C2862895|T037|HT|S82.435|ICD10CM|Nondisplaced oblique fracture of shaft of left fibula|Nondisplaced oblique fracture of shaft of left fibula +C2862896|T037|AB|S82.435A|ICD10CM|Nondisplaced oblique fracture of shaft of left fibula, init|Nondisplaced oblique fracture of shaft of left fibula, init +C2862896|T037|PT|S82.435A|ICD10CM|Nondisplaced oblique fracture of shaft of left fibula, initial encounter for closed fracture|Nondisplaced oblique fracture of shaft of left fibula, initial encounter for closed fracture +C2862897|T037|AB|S82.435B|ICD10CM|Nondisp oblique fx shaft of l fibula, 7thB|Nondisp oblique fx shaft of l fibula, 7thB +C2862898|T037|AB|S82.435C|ICD10CM|Nondisp oblique fx shaft of l fibula, 7thC|Nondisp oblique fx shaft of l fibula, 7thC +C2862899|T037|AB|S82.435D|ICD10CM|Nondisp oblique fx shaft of l fibula, 7thD|Nondisp oblique fx shaft of l fibula, 7thD +C2862900|T037|AB|S82.435E|ICD10CM|Nondisp oblique fx shaft of l fibula, 7thE|Nondisp oblique fx shaft of l fibula, 7thE +C2862901|T037|AB|S82.435F|ICD10CM|Nondisp oblique fx shaft of l fibula, 7thF|Nondisp oblique fx shaft of l fibula, 7thF +C2862902|T037|AB|S82.435G|ICD10CM|Nondisp oblique fx shaft of l fibula, 7thG|Nondisp oblique fx shaft of l fibula, 7thG +C2862903|T037|AB|S82.435H|ICD10CM|Nondisp oblique fx shaft of l fibula, 7thH|Nondisp oblique fx shaft of l fibula, 7thH +C2862904|T037|AB|S82.435J|ICD10CM|Nondisp oblique fx shaft of l fibula, 7thJ|Nondisp oblique fx shaft of l fibula, 7thJ +C2862905|T037|AB|S82.435K|ICD10CM|Nondisp oblique fx shaft of l fibula, 7thK|Nondisp oblique fx shaft of l fibula, 7thK +C2862906|T037|AB|S82.435M|ICD10CM|Nondisp oblique fx shaft of l fibula, 7thM|Nondisp oblique fx shaft of l fibula, 7thM +C2862907|T037|AB|S82.435N|ICD10CM|Nondisp oblique fx shaft of l fibula, 7thN|Nondisp oblique fx shaft of l fibula, 7thN +C2862908|T037|AB|S82.435P|ICD10CM|Nondisp oblique fx shaft of l fibula, 7thP|Nondisp oblique fx shaft of l fibula, 7thP +C2862909|T037|AB|S82.435Q|ICD10CM|Nondisp oblique fx shaft of l fibula, 7thQ|Nondisp oblique fx shaft of l fibula, 7thQ +C2862910|T037|AB|S82.435R|ICD10CM|Nondisp oblique fx shaft of l fibula, 7thR|Nondisp oblique fx shaft of l fibula, 7thR +C2862911|T037|AB|S82.435S|ICD10CM|Nondisp oblique fracture of shaft of left fibula, sequela|Nondisp oblique fracture of shaft of left fibula, sequela +C2862911|T037|PT|S82.435S|ICD10CM|Nondisplaced oblique fracture of shaft of left fibula, sequela|Nondisplaced oblique fracture of shaft of left fibula, sequela +C2862912|T037|AB|S82.436|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified fibula|Nondisplaced oblique fracture of shaft of unspecified fibula +C2862912|T037|HT|S82.436|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified fibula|Nondisplaced oblique fracture of shaft of unspecified fibula +C2862913|T037|AB|S82.436A|ICD10CM|Nondisplaced oblique fracture of shaft of unsp fibula, init|Nondisplaced oblique fracture of shaft of unsp fibula, init +C2862913|T037|PT|S82.436A|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified fibula, initial encounter for closed fracture|Nondisplaced oblique fracture of shaft of unspecified fibula, initial encounter for closed fracture +C2862914|T037|AB|S82.436B|ICD10CM|Nondisp oblique fx shaft of unsp fibula, 7thB|Nondisp oblique fx shaft of unsp fibula, 7thB +C2862915|T037|AB|S82.436C|ICD10CM|Nondisp oblique fx shaft of unsp fibula, 7thC|Nondisp oblique fx shaft of unsp fibula, 7thC +C2862916|T037|AB|S82.436D|ICD10CM|Nondisp oblique fx shaft of unsp fibula, 7thD|Nondisp oblique fx shaft of unsp fibula, 7thD +C2862917|T037|AB|S82.436E|ICD10CM|Nondisp oblique fx shaft of unsp fibula, 7thE|Nondisp oblique fx shaft of unsp fibula, 7thE +C2862918|T037|AB|S82.436F|ICD10CM|Nondisp oblique fx shaft of unsp fibula, 7thF|Nondisp oblique fx shaft of unsp fibula, 7thF +C2862919|T037|AB|S82.436G|ICD10CM|Nondisp oblique fx shaft of unsp fibula, 7thG|Nondisp oblique fx shaft of unsp fibula, 7thG +C2862920|T037|AB|S82.436H|ICD10CM|Nondisp oblique fx shaft of unsp fibula, 7thH|Nondisp oblique fx shaft of unsp fibula, 7thH +C2862921|T037|AB|S82.436J|ICD10CM|Nondisp oblique fx shaft of unsp fibula, 7thJ|Nondisp oblique fx shaft of unsp fibula, 7thJ +C2862922|T037|AB|S82.436K|ICD10CM|Nondisp oblique fx shaft of unsp fibula, 7thK|Nondisp oblique fx shaft of unsp fibula, 7thK +C2862923|T037|AB|S82.436M|ICD10CM|Nondisp oblique fx shaft of unsp fibula, 7thM|Nondisp oblique fx shaft of unsp fibula, 7thM +C2862924|T037|AB|S82.436N|ICD10CM|Nondisp oblique fx shaft of unsp fibula, 7thN|Nondisp oblique fx shaft of unsp fibula, 7thN +C2862925|T037|AB|S82.436P|ICD10CM|Nondisp oblique fx shaft of unsp fibula, 7thP|Nondisp oblique fx shaft of unsp fibula, 7thP +C2862926|T037|AB|S82.436Q|ICD10CM|Nondisp oblique fx shaft of unsp fibula, 7thQ|Nondisp oblique fx shaft of unsp fibula, 7thQ +C2862927|T037|AB|S82.436R|ICD10CM|Nondisp oblique fx shaft of unsp fibula, 7thR|Nondisp oblique fx shaft of unsp fibula, 7thR +C2862928|T037|AB|S82.436S|ICD10CM|Nondisp oblique fracture of shaft of unsp fibula, sequela|Nondisp oblique fracture of shaft of unsp fibula, sequela +C2862928|T037|PT|S82.436S|ICD10CM|Nondisplaced oblique fracture of shaft of unspecified fibula, sequela|Nondisplaced oblique fracture of shaft of unspecified fibula, sequela +C2862929|T037|AB|S82.44|ICD10CM|Spiral fracture of shaft of fibula|Spiral fracture of shaft of fibula +C2862929|T037|HT|S82.44|ICD10CM|Spiral fracture of shaft of fibula|Spiral fracture of shaft of fibula +C2862930|T037|AB|S82.441|ICD10CM|Displaced spiral fracture of shaft of right fibula|Displaced spiral fracture of shaft of right fibula +C2862930|T037|HT|S82.441|ICD10CM|Displaced spiral fracture of shaft of right fibula|Displaced spiral fracture of shaft of right fibula +C2862931|T037|AB|S82.441A|ICD10CM|Displaced spiral fracture of shaft of right fibula, init|Displaced spiral fracture of shaft of right fibula, init +C2862931|T037|PT|S82.441A|ICD10CM|Displaced spiral fracture of shaft of right fibula, initial encounter for closed fracture|Displaced spiral fracture of shaft of right fibula, initial encounter for closed fracture +C2862932|T037|AB|S82.441B|ICD10CM|Displ spiral fx shaft of r fibula, init for opn fx type I/2|Displ spiral fx shaft of r fibula, init for opn fx type I/2 +C2862932|T037|PT|S82.441B|ICD10CM|Displaced spiral fracture of shaft of right fibula, initial encounter for open fracture type I or II|Displaced spiral fracture of shaft of right fibula, initial encounter for open fracture type I or II +C2862933|T037|AB|S82.441C|ICD10CM|Displ spiral fx shaft of r fibula, 7thC|Displ spiral fx shaft of r fibula, 7thC +C2862934|T037|AB|S82.441D|ICD10CM|Displ spiral fx shaft of r fibula, 7thD|Displ spiral fx shaft of r fibula, 7thD +C2862935|T037|AB|S82.441E|ICD10CM|Displ spiral fx shaft of r fibula, 7thE|Displ spiral fx shaft of r fibula, 7thE +C2862936|T037|AB|S82.441F|ICD10CM|Displ spiral fx shaft of r fibula, 7thF|Displ spiral fx shaft of r fibula, 7thF +C2862937|T037|AB|S82.441G|ICD10CM|Displ spiral fx shaft of r fibula, 7thG|Displ spiral fx shaft of r fibula, 7thG +C2862938|T037|AB|S82.441H|ICD10CM|Displ spiral fx shaft of r fibula, 7thH|Displ spiral fx shaft of r fibula, 7thH +C2862939|T037|AB|S82.441J|ICD10CM|Displ spiral fx shaft of r fibula, 7thJ|Displ spiral fx shaft of r fibula, 7thJ +C2862940|T037|AB|S82.441K|ICD10CM|Displ spiral fx shaft of r fibula, 7thK|Displ spiral fx shaft of r fibula, 7thK +C2862941|T037|AB|S82.441M|ICD10CM|Displ spiral fx shaft of r fibula, 7thM|Displ spiral fx shaft of r fibula, 7thM +C2862942|T037|AB|S82.441N|ICD10CM|Displ spiral fx shaft of r fibula, 7thN|Displ spiral fx shaft of r fibula, 7thN +C2862943|T037|AB|S82.441P|ICD10CM|Displ spiral fx shaft of r fibula, 7thP|Displ spiral fx shaft of r fibula, 7thP +C2862944|T037|AB|S82.441Q|ICD10CM|Displ spiral fx shaft of r fibula, 7thQ|Displ spiral fx shaft of r fibula, 7thQ +C2862945|T037|AB|S82.441R|ICD10CM|Displ spiral fx shaft of r fibula, 7thR|Displ spiral fx shaft of r fibula, 7thR +C2862946|T037|PT|S82.441S|ICD10CM|Displaced spiral fracture of shaft of right fibula, sequela|Displaced spiral fracture of shaft of right fibula, sequela +C2862946|T037|AB|S82.441S|ICD10CM|Displaced spiral fracture of shaft of right fibula, sequela|Displaced spiral fracture of shaft of right fibula, sequela +C2862947|T037|AB|S82.442|ICD10CM|Displaced spiral fracture of shaft of left fibula|Displaced spiral fracture of shaft of left fibula +C2862947|T037|HT|S82.442|ICD10CM|Displaced spiral fracture of shaft of left fibula|Displaced spiral fracture of shaft of left fibula +C2862948|T037|AB|S82.442A|ICD10CM|Displaced spiral fracture of shaft of left fibula, init|Displaced spiral fracture of shaft of left fibula, init +C2862948|T037|PT|S82.442A|ICD10CM|Displaced spiral fracture of shaft of left fibula, initial encounter for closed fracture|Displaced spiral fracture of shaft of left fibula, initial encounter for closed fracture +C2862949|T037|AB|S82.442B|ICD10CM|Displ spiral fx shaft of l fibula, init for opn fx type I/2|Displ spiral fx shaft of l fibula, init for opn fx type I/2 +C2862949|T037|PT|S82.442B|ICD10CM|Displaced spiral fracture of shaft of left fibula, initial encounter for open fracture type I or II|Displaced spiral fracture of shaft of left fibula, initial encounter for open fracture type I or II +C2862950|T037|AB|S82.442C|ICD10CM|Displ spiral fx shaft of l fibula, 7thC|Displ spiral fx shaft of l fibula, 7thC +C2862951|T037|AB|S82.442D|ICD10CM|Displ spiral fx shaft of l fibula, 7thD|Displ spiral fx shaft of l fibula, 7thD +C2862952|T037|AB|S82.442E|ICD10CM|Displ spiral fx shaft of l fibula, 7thE|Displ spiral fx shaft of l fibula, 7thE +C2862953|T037|AB|S82.442F|ICD10CM|Displ spiral fx shaft of l fibula, 7thF|Displ spiral fx shaft of l fibula, 7thF +C2862954|T037|AB|S82.442G|ICD10CM|Displ spiral fx shaft of l fibula, 7thG|Displ spiral fx shaft of l fibula, 7thG +C2862955|T037|AB|S82.442H|ICD10CM|Displ spiral fx shaft of l fibula, 7thH|Displ spiral fx shaft of l fibula, 7thH +C2862956|T037|AB|S82.442J|ICD10CM|Displ spiral fx shaft of l fibula, 7thJ|Displ spiral fx shaft of l fibula, 7thJ +C2862957|T037|AB|S82.442K|ICD10CM|Displ spiral fx shaft of l fibula, 7thK|Displ spiral fx shaft of l fibula, 7thK +C2862958|T037|AB|S82.442M|ICD10CM|Displ spiral fx shaft of l fibula, 7thM|Displ spiral fx shaft of l fibula, 7thM +C2862959|T037|AB|S82.442N|ICD10CM|Displ spiral fx shaft of l fibula, 7thN|Displ spiral fx shaft of l fibula, 7thN +C2862960|T037|AB|S82.442P|ICD10CM|Displ spiral fx shaft of l fibula, 7thP|Displ spiral fx shaft of l fibula, 7thP +C2862961|T037|AB|S82.442Q|ICD10CM|Displ spiral fx shaft of l fibula, 7thQ|Displ spiral fx shaft of l fibula, 7thQ +C2862962|T037|AB|S82.442R|ICD10CM|Displ spiral fx shaft of l fibula, 7thR|Displ spiral fx shaft of l fibula, 7thR +C2862963|T037|PT|S82.442S|ICD10CM|Displaced spiral fracture of shaft of left fibula, sequela|Displaced spiral fracture of shaft of left fibula, sequela +C2862963|T037|AB|S82.442S|ICD10CM|Displaced spiral fracture of shaft of left fibula, sequela|Displaced spiral fracture of shaft of left fibula, sequela +C2862964|T037|AB|S82.443|ICD10CM|Displaced spiral fracture of shaft of unspecified fibula|Displaced spiral fracture of shaft of unspecified fibula +C2862964|T037|HT|S82.443|ICD10CM|Displaced spiral fracture of shaft of unspecified fibula|Displaced spiral fracture of shaft of unspecified fibula +C2862965|T037|AB|S82.443A|ICD10CM|Displaced spiral fracture of shaft of unsp fibula, init|Displaced spiral fracture of shaft of unsp fibula, init +C2862965|T037|PT|S82.443A|ICD10CM|Displaced spiral fracture of shaft of unspecified fibula, initial encounter for closed fracture|Displaced spiral fracture of shaft of unspecified fibula, initial encounter for closed fracture +C2862966|T037|AB|S82.443B|ICD10CM|Displ spiral fx shaft of unsp fibula, 7thB|Displ spiral fx shaft of unsp fibula, 7thB +C2862967|T037|AB|S82.443C|ICD10CM|Displ spiral fx shaft of unsp fibula, 7thC|Displ spiral fx shaft of unsp fibula, 7thC +C2862968|T037|AB|S82.443D|ICD10CM|Displ spiral fx shaft of unsp fibula, 7thD|Displ spiral fx shaft of unsp fibula, 7thD +C2862969|T037|AB|S82.443E|ICD10CM|Displ spiral fx shaft of unsp fibula, 7thE|Displ spiral fx shaft of unsp fibula, 7thE +C2862970|T037|AB|S82.443F|ICD10CM|Displ spiral fx shaft of unsp fibula, 7thF|Displ spiral fx shaft of unsp fibula, 7thF +C2862971|T037|AB|S82.443G|ICD10CM|Displ spiral fx shaft of unsp fibula, 7thG|Displ spiral fx shaft of unsp fibula, 7thG +C2862972|T037|AB|S82.443H|ICD10CM|Displ spiral fx shaft of unsp fibula, 7thH|Displ spiral fx shaft of unsp fibula, 7thH +C2862973|T037|AB|S82.443J|ICD10CM|Displ spiral fx shaft of unsp fibula, 7thJ|Displ spiral fx shaft of unsp fibula, 7thJ +C2862974|T037|AB|S82.443K|ICD10CM|Displ spiral fx shaft of unsp fibula, 7thK|Displ spiral fx shaft of unsp fibula, 7thK +C2862975|T037|AB|S82.443M|ICD10CM|Displ spiral fx shaft of unsp fibula, 7thM|Displ spiral fx shaft of unsp fibula, 7thM +C2862976|T037|AB|S82.443N|ICD10CM|Displ spiral fx shaft of unsp fibula, 7thN|Displ spiral fx shaft of unsp fibula, 7thN +C2862977|T037|AB|S82.443P|ICD10CM|Displ spiral fx shaft of unsp fibula, 7thP|Displ spiral fx shaft of unsp fibula, 7thP +C2862978|T037|AB|S82.443Q|ICD10CM|Displ spiral fx shaft of unsp fibula, 7thQ|Displ spiral fx shaft of unsp fibula, 7thQ +C2862979|T037|AB|S82.443R|ICD10CM|Displ spiral fx shaft of unsp fibula, 7thR|Displ spiral fx shaft of unsp fibula, 7thR +C2862980|T037|AB|S82.443S|ICD10CM|Displaced spiral fracture of shaft of unsp fibula, sequela|Displaced spiral fracture of shaft of unsp fibula, sequela +C2862980|T037|PT|S82.443S|ICD10CM|Displaced spiral fracture of shaft of unspecified fibula, sequela|Displaced spiral fracture of shaft of unspecified fibula, sequela +C2862981|T037|AB|S82.444|ICD10CM|Nondisplaced spiral fracture of shaft of right fibula|Nondisplaced spiral fracture of shaft of right fibula +C2862981|T037|HT|S82.444|ICD10CM|Nondisplaced spiral fracture of shaft of right fibula|Nondisplaced spiral fracture of shaft of right fibula +C2862982|T037|AB|S82.444A|ICD10CM|Nondisplaced spiral fracture of shaft of right fibula, init|Nondisplaced spiral fracture of shaft of right fibula, init +C2862982|T037|PT|S82.444A|ICD10CM|Nondisplaced spiral fracture of shaft of right fibula, initial encounter for closed fracture|Nondisplaced spiral fracture of shaft of right fibula, initial encounter for closed fracture +C2862983|T037|AB|S82.444B|ICD10CM|Nondisp spiral fx shaft of r fibula, 7thB|Nondisp spiral fx shaft of r fibula, 7thB +C2862984|T037|AB|S82.444C|ICD10CM|Nondisp spiral fx shaft of r fibula, 7thC|Nondisp spiral fx shaft of r fibula, 7thC +C2862985|T037|AB|S82.444D|ICD10CM|Nondisp spiral fx shaft of r fibula, 7thD|Nondisp spiral fx shaft of r fibula, 7thD +C2862986|T037|AB|S82.444E|ICD10CM|Nondisp spiral fx shaft of r fibula, 7thE|Nondisp spiral fx shaft of r fibula, 7thE +C2862987|T037|AB|S82.444F|ICD10CM|Nondisp spiral fx shaft of r fibula, 7thF|Nondisp spiral fx shaft of r fibula, 7thF +C2862988|T037|AB|S82.444G|ICD10CM|Nondisp spiral fx shaft of r fibula, 7thG|Nondisp spiral fx shaft of r fibula, 7thG +C2862989|T037|AB|S82.444H|ICD10CM|Nondisp spiral fx shaft of r fibula, 7thH|Nondisp spiral fx shaft of r fibula, 7thH +C2862990|T037|AB|S82.444J|ICD10CM|Nondisp spiral fx shaft of r fibula, 7thJ|Nondisp spiral fx shaft of r fibula, 7thJ +C2862991|T037|AB|S82.444K|ICD10CM|Nondisp spiral fx shaft of r fibula, 7thK|Nondisp spiral fx shaft of r fibula, 7thK +C2862992|T037|AB|S82.444M|ICD10CM|Nondisp spiral fx shaft of r fibula, 7thM|Nondisp spiral fx shaft of r fibula, 7thM +C2862993|T037|AB|S82.444N|ICD10CM|Nondisp spiral fx shaft of r fibula, 7thN|Nondisp spiral fx shaft of r fibula, 7thN +C2862994|T037|AB|S82.444P|ICD10CM|Nondisp spiral fx shaft of r fibula, 7thP|Nondisp spiral fx shaft of r fibula, 7thP +C2862995|T037|AB|S82.444Q|ICD10CM|Nondisp spiral fx shaft of r fibula, 7thQ|Nondisp spiral fx shaft of r fibula, 7thQ +C2862996|T037|AB|S82.444R|ICD10CM|Nondisp spiral fx shaft of r fibula, 7thR|Nondisp spiral fx shaft of r fibula, 7thR +C2862997|T037|AB|S82.444S|ICD10CM|Nondisp spiral fracture of shaft of right fibula, sequela|Nondisp spiral fracture of shaft of right fibula, sequela +C2862997|T037|PT|S82.444S|ICD10CM|Nondisplaced spiral fracture of shaft of right fibula, sequela|Nondisplaced spiral fracture of shaft of right fibula, sequela +C2862998|T037|AB|S82.445|ICD10CM|Nondisplaced spiral fracture of shaft of left fibula|Nondisplaced spiral fracture of shaft of left fibula +C2862998|T037|HT|S82.445|ICD10CM|Nondisplaced spiral fracture of shaft of left fibula|Nondisplaced spiral fracture of shaft of left fibula +C2862999|T037|AB|S82.445A|ICD10CM|Nondisplaced spiral fracture of shaft of left fibula, init|Nondisplaced spiral fracture of shaft of left fibula, init +C2862999|T037|PT|S82.445A|ICD10CM|Nondisplaced spiral fracture of shaft of left fibula, initial encounter for closed fracture|Nondisplaced spiral fracture of shaft of left fibula, initial encounter for closed fracture +C2863000|T037|AB|S82.445B|ICD10CM|Nondisp spiral fx shaft of l fibula, 7thB|Nondisp spiral fx shaft of l fibula, 7thB +C2863001|T037|AB|S82.445C|ICD10CM|Nondisp spiral fx shaft of l fibula, 7thC|Nondisp spiral fx shaft of l fibula, 7thC +C2863002|T037|AB|S82.445D|ICD10CM|Nondisp spiral fx shaft of l fibula, 7thD|Nondisp spiral fx shaft of l fibula, 7thD +C2863003|T037|AB|S82.445E|ICD10CM|Nondisp spiral fx shaft of l fibula, 7thE|Nondisp spiral fx shaft of l fibula, 7thE +C2863004|T037|AB|S82.445F|ICD10CM|Nondisp spiral fx shaft of l fibula, 7thF|Nondisp spiral fx shaft of l fibula, 7thF +C2863005|T037|AB|S82.445G|ICD10CM|Nondisp spiral fx shaft of l fibula, 7thG|Nondisp spiral fx shaft of l fibula, 7thG +C2863006|T037|AB|S82.445H|ICD10CM|Nondisp spiral fx shaft of l fibula, 7thH|Nondisp spiral fx shaft of l fibula, 7thH +C2863007|T037|AB|S82.445J|ICD10CM|Nondisp spiral fx shaft of l fibula, 7thJ|Nondisp spiral fx shaft of l fibula, 7thJ +C2863008|T037|AB|S82.445K|ICD10CM|Nondisp spiral fx shaft of l fibula, 7thK|Nondisp spiral fx shaft of l fibula, 7thK +C2863009|T037|AB|S82.445M|ICD10CM|Nondisp spiral fx shaft of l fibula, 7thM|Nondisp spiral fx shaft of l fibula, 7thM +C2863010|T037|AB|S82.445N|ICD10CM|Nondisp spiral fx shaft of l fibula, 7thN|Nondisp spiral fx shaft of l fibula, 7thN +C2863011|T037|AB|S82.445P|ICD10CM|Nondisp spiral fx shaft of l fibula, 7thP|Nondisp spiral fx shaft of l fibula, 7thP +C2863012|T037|AB|S82.445Q|ICD10CM|Nondisp spiral fx shaft of l fibula, 7thQ|Nondisp spiral fx shaft of l fibula, 7thQ +C2863013|T037|AB|S82.445R|ICD10CM|Nondisp spiral fx shaft of l fibula, 7thR|Nondisp spiral fx shaft of l fibula, 7thR +C2863014|T037|AB|S82.445S|ICD10CM|Nondisp spiral fracture of shaft of left fibula, sequela|Nondisp spiral fracture of shaft of left fibula, sequela +C2863014|T037|PT|S82.445S|ICD10CM|Nondisplaced spiral fracture of shaft of left fibula, sequela|Nondisplaced spiral fracture of shaft of left fibula, sequela +C2863015|T037|AB|S82.446|ICD10CM|Nondisplaced spiral fracture of shaft of unspecified fibula|Nondisplaced spiral fracture of shaft of unspecified fibula +C2863015|T037|HT|S82.446|ICD10CM|Nondisplaced spiral fracture of shaft of unspecified fibula|Nondisplaced spiral fracture of shaft of unspecified fibula +C2863016|T037|AB|S82.446A|ICD10CM|Nondisplaced spiral fracture of shaft of unsp fibula, init|Nondisplaced spiral fracture of shaft of unsp fibula, init +C2863016|T037|PT|S82.446A|ICD10CM|Nondisplaced spiral fracture of shaft of unspecified fibula, initial encounter for closed fracture|Nondisplaced spiral fracture of shaft of unspecified fibula, initial encounter for closed fracture +C2863017|T037|AB|S82.446B|ICD10CM|Nondisp spiral fx shaft of unsp fibula, 7thB|Nondisp spiral fx shaft of unsp fibula, 7thB +C2863018|T037|AB|S82.446C|ICD10CM|Nondisp spiral fx shaft of unsp fibula, 7thC|Nondisp spiral fx shaft of unsp fibula, 7thC +C2863019|T037|AB|S82.446D|ICD10CM|Nondisp spiral fx shaft of unsp fibula, 7thD|Nondisp spiral fx shaft of unsp fibula, 7thD +C2863020|T037|AB|S82.446E|ICD10CM|Nondisp spiral fx shaft of unsp fibula, 7thE|Nondisp spiral fx shaft of unsp fibula, 7thE +C2863021|T037|AB|S82.446F|ICD10CM|Nondisp spiral fx shaft of unsp fibula, 7thF|Nondisp spiral fx shaft of unsp fibula, 7thF +C2863022|T037|AB|S82.446G|ICD10CM|Nondisp spiral fx shaft of unsp fibula, 7thG|Nondisp spiral fx shaft of unsp fibula, 7thG +C2863023|T037|AB|S82.446H|ICD10CM|Nondisp spiral fx shaft of unsp fibula, 7thH|Nondisp spiral fx shaft of unsp fibula, 7thH +C2863024|T037|AB|S82.446J|ICD10CM|Nondisp spiral fx shaft of unsp fibula, 7thJ|Nondisp spiral fx shaft of unsp fibula, 7thJ +C2863025|T037|AB|S82.446K|ICD10CM|Nondisp spiral fx shaft of unsp fibula, 7thK|Nondisp spiral fx shaft of unsp fibula, 7thK +C2863026|T037|AB|S82.446M|ICD10CM|Nondisp spiral fx shaft of unsp fibula, 7thM|Nondisp spiral fx shaft of unsp fibula, 7thM +C2863027|T037|AB|S82.446N|ICD10CM|Nondisp spiral fx shaft of unsp fibula, 7thN|Nondisp spiral fx shaft of unsp fibula, 7thN +C2863028|T037|AB|S82.446P|ICD10CM|Nondisp spiral fx shaft of unsp fibula, 7thP|Nondisp spiral fx shaft of unsp fibula, 7thP +C2863029|T037|AB|S82.446Q|ICD10CM|Nondisp spiral fx shaft of unsp fibula, 7thQ|Nondisp spiral fx shaft of unsp fibula, 7thQ +C2863030|T037|AB|S82.446R|ICD10CM|Nondisp spiral fx shaft of unsp fibula, 7thR|Nondisp spiral fx shaft of unsp fibula, 7thR +C2863031|T037|AB|S82.446S|ICD10CM|Nondisp spiral fracture of shaft of unsp fibula, sequela|Nondisp spiral fracture of shaft of unsp fibula, sequela +C2863031|T037|PT|S82.446S|ICD10CM|Nondisplaced spiral fracture of shaft of unspecified fibula, sequela|Nondisplaced spiral fracture of shaft of unspecified fibula, sequela +C2863032|T037|AB|S82.45|ICD10CM|Comminuted fracture of shaft of fibula|Comminuted fracture of shaft of fibula +C2863032|T037|HT|S82.45|ICD10CM|Comminuted fracture of shaft of fibula|Comminuted fracture of shaft of fibula +C2863033|T037|AB|S82.451|ICD10CM|Displaced comminuted fracture of shaft of right fibula|Displaced comminuted fracture of shaft of right fibula +C2863033|T037|HT|S82.451|ICD10CM|Displaced comminuted fracture of shaft of right fibula|Displaced comminuted fracture of shaft of right fibula +C2863034|T037|AB|S82.451A|ICD10CM|Displaced comminuted fracture of shaft of right fibula, init|Displaced comminuted fracture of shaft of right fibula, init +C2863034|T037|PT|S82.451A|ICD10CM|Displaced comminuted fracture of shaft of right fibula, initial encounter for closed fracture|Displaced comminuted fracture of shaft of right fibula, initial encounter for closed fracture +C2863035|T037|AB|S82.451B|ICD10CM|Displ commnt fx shaft of r fibula, init for opn fx type I/2|Displ commnt fx shaft of r fibula, init for opn fx type I/2 +C2863036|T037|AB|S82.451C|ICD10CM|Displ commnt fx shaft of r fibula, 7thC|Displ commnt fx shaft of r fibula, 7thC +C2863037|T037|AB|S82.451D|ICD10CM|Displ commnt fx shaft of r fibula, 7thD|Displ commnt fx shaft of r fibula, 7thD +C2863038|T037|AB|S82.451E|ICD10CM|Displ commnt fx shaft of r fibula, 7thE|Displ commnt fx shaft of r fibula, 7thE +C2863039|T037|AB|S82.451F|ICD10CM|Displ commnt fx shaft of r fibula, 7thF|Displ commnt fx shaft of r fibula, 7thF +C2863040|T037|AB|S82.451G|ICD10CM|Displ commnt fx shaft of r fibula, 7thG|Displ commnt fx shaft of r fibula, 7thG +C2863041|T037|AB|S82.451H|ICD10CM|Displ commnt fx shaft of r fibula, 7thH|Displ commnt fx shaft of r fibula, 7thH +C2863042|T037|AB|S82.451J|ICD10CM|Displ commnt fx shaft of r fibula, 7thJ|Displ commnt fx shaft of r fibula, 7thJ +C2863043|T037|AB|S82.451K|ICD10CM|Displ commnt fx shaft of r fibula, 7thK|Displ commnt fx shaft of r fibula, 7thK +C2863044|T037|AB|S82.451M|ICD10CM|Displ commnt fx shaft of r fibula, 7thM|Displ commnt fx shaft of r fibula, 7thM +C2863045|T037|AB|S82.451N|ICD10CM|Displ commnt fx shaft of r fibula, 7thN|Displ commnt fx shaft of r fibula, 7thN +C2863046|T037|AB|S82.451P|ICD10CM|Displ commnt fx shaft of r fibula, 7thP|Displ commnt fx shaft of r fibula, 7thP +C2863047|T037|AB|S82.451Q|ICD10CM|Displ commnt fx shaft of r fibula, 7thQ|Displ commnt fx shaft of r fibula, 7thQ +C2863048|T037|AB|S82.451R|ICD10CM|Displ commnt fx shaft of r fibula, 7thR|Displ commnt fx shaft of r fibula, 7thR +C2863049|T037|AB|S82.451S|ICD10CM|Displaced comminuted fracture of shaft of r fibula, sequela|Displaced comminuted fracture of shaft of r fibula, sequela +C2863049|T037|PT|S82.451S|ICD10CM|Displaced comminuted fracture of shaft of right fibula, sequela|Displaced comminuted fracture of shaft of right fibula, sequela +C2863050|T037|AB|S82.452|ICD10CM|Displaced comminuted fracture of shaft of left fibula|Displaced comminuted fracture of shaft of left fibula +C2863050|T037|HT|S82.452|ICD10CM|Displaced comminuted fracture of shaft of left fibula|Displaced comminuted fracture of shaft of left fibula +C2863051|T037|AB|S82.452A|ICD10CM|Displaced comminuted fracture of shaft of left fibula, init|Displaced comminuted fracture of shaft of left fibula, init +C2863051|T037|PT|S82.452A|ICD10CM|Displaced comminuted fracture of shaft of left fibula, initial encounter for closed fracture|Displaced comminuted fracture of shaft of left fibula, initial encounter for closed fracture +C2863052|T037|AB|S82.452B|ICD10CM|Displ commnt fx shaft of l fibula, init for opn fx type I/2|Displ commnt fx shaft of l fibula, init for opn fx type I/2 +C2863053|T037|AB|S82.452C|ICD10CM|Displ commnt fx shaft of l fibula, 7thC|Displ commnt fx shaft of l fibula, 7thC +C2863054|T037|AB|S82.452D|ICD10CM|Displ commnt fx shaft of l fibula, 7thD|Displ commnt fx shaft of l fibula, 7thD +C2863055|T037|AB|S82.452E|ICD10CM|Displ commnt fx shaft of l fibula, 7thE|Displ commnt fx shaft of l fibula, 7thE +C2863056|T037|AB|S82.452F|ICD10CM|Displ commnt fx shaft of l fibula, 7thF|Displ commnt fx shaft of l fibula, 7thF +C2863057|T037|AB|S82.452G|ICD10CM|Displ commnt fx shaft of l fibula, 7thG|Displ commnt fx shaft of l fibula, 7thG +C2863058|T037|AB|S82.452H|ICD10CM|Displ commnt fx shaft of l fibula, 7thH|Displ commnt fx shaft of l fibula, 7thH +C2863059|T037|AB|S82.452J|ICD10CM|Displ commnt fx shaft of l fibula, 7thJ|Displ commnt fx shaft of l fibula, 7thJ +C2863060|T037|AB|S82.452K|ICD10CM|Displ commnt fx shaft of l fibula, 7thK|Displ commnt fx shaft of l fibula, 7thK +C2863061|T037|AB|S82.452M|ICD10CM|Displ commnt fx shaft of l fibula, 7thM|Displ commnt fx shaft of l fibula, 7thM +C2863062|T037|AB|S82.452N|ICD10CM|Displ commnt fx shaft of l fibula, 7thN|Displ commnt fx shaft of l fibula, 7thN +C2863063|T037|AB|S82.452P|ICD10CM|Displ commnt fx shaft of l fibula, 7thP|Displ commnt fx shaft of l fibula, 7thP +C2863064|T037|AB|S82.452Q|ICD10CM|Displ commnt fx shaft of l fibula, 7thQ|Displ commnt fx shaft of l fibula, 7thQ +C2863065|T037|AB|S82.452R|ICD10CM|Displ commnt fx shaft of l fibula, 7thR|Displ commnt fx shaft of l fibula, 7thR +C2863066|T037|PT|S82.452S|ICD10CM|Displaced comminuted fracture of shaft of left fibula, sequela|Displaced comminuted fracture of shaft of left fibula, sequela +C2863066|T037|AB|S82.452S|ICD10CM|Displaced comminuted fx shaft of left fibula, sequela|Displaced comminuted fx shaft of left fibula, sequela +C2863067|T037|AB|S82.453|ICD10CM|Displaced comminuted fracture of shaft of unspecified fibula|Displaced comminuted fracture of shaft of unspecified fibula +C2863067|T037|HT|S82.453|ICD10CM|Displaced comminuted fracture of shaft of unspecified fibula|Displaced comminuted fracture of shaft of unspecified fibula +C2863068|T037|AB|S82.453A|ICD10CM|Displaced comminuted fracture of shaft of unsp fibula, init|Displaced comminuted fracture of shaft of unsp fibula, init +C2863068|T037|PT|S82.453A|ICD10CM|Displaced comminuted fracture of shaft of unspecified fibula, initial encounter for closed fracture|Displaced comminuted fracture of shaft of unspecified fibula, initial encounter for closed fracture +C2863069|T037|AB|S82.453B|ICD10CM|Displ commnt fx shaft of unsp fibula, 7thB|Displ commnt fx shaft of unsp fibula, 7thB +C2863070|T037|AB|S82.453C|ICD10CM|Displ commnt fx shaft of unsp fibula, 7thC|Displ commnt fx shaft of unsp fibula, 7thC +C2863071|T037|AB|S82.453D|ICD10CM|Displ commnt fx shaft of unsp fibula, 7thD|Displ commnt fx shaft of unsp fibula, 7thD +C2863072|T037|AB|S82.453E|ICD10CM|Displ commnt fx shaft of unsp fibula, 7thE|Displ commnt fx shaft of unsp fibula, 7thE +C2863073|T037|AB|S82.453F|ICD10CM|Displ commnt fx shaft of unsp fibula, 7thF|Displ commnt fx shaft of unsp fibula, 7thF +C2863074|T037|AB|S82.453G|ICD10CM|Displ commnt fx shaft of unsp fibula, 7thG|Displ commnt fx shaft of unsp fibula, 7thG +C2863075|T037|AB|S82.453H|ICD10CM|Displ commnt fx shaft of unsp fibula, 7thH|Displ commnt fx shaft of unsp fibula, 7thH +C2863076|T037|AB|S82.453J|ICD10CM|Displ commnt fx shaft of unsp fibula, 7thJ|Displ commnt fx shaft of unsp fibula, 7thJ +C2863077|T037|AB|S82.453K|ICD10CM|Displ commnt fx shaft of unsp fibula, 7thK|Displ commnt fx shaft of unsp fibula, 7thK +C2863078|T037|AB|S82.453M|ICD10CM|Displ commnt fx shaft of unsp fibula, 7thM|Displ commnt fx shaft of unsp fibula, 7thM +C2863079|T037|AB|S82.453N|ICD10CM|Displ commnt fx shaft of unsp fibula, 7thN|Displ commnt fx shaft of unsp fibula, 7thN +C2863080|T037|AB|S82.453P|ICD10CM|Displ commnt fx shaft of unsp fibula, 7thP|Displ commnt fx shaft of unsp fibula, 7thP +C2863081|T037|AB|S82.453Q|ICD10CM|Displ commnt fx shaft of unsp fibula, 7thQ|Displ commnt fx shaft of unsp fibula, 7thQ +C2863082|T037|AB|S82.453R|ICD10CM|Displ commnt fx shaft of unsp fibula, 7thR|Displ commnt fx shaft of unsp fibula, 7thR +C2863083|T037|PT|S82.453S|ICD10CM|Displaced comminuted fracture of shaft of unspecified fibula, sequela|Displaced comminuted fracture of shaft of unspecified fibula, sequela +C2863083|T037|AB|S82.453S|ICD10CM|Displaced comminuted fx shaft of unsp fibula, sequela|Displaced comminuted fx shaft of unsp fibula, sequela +C2863084|T037|AB|S82.454|ICD10CM|Nondisplaced comminuted fracture of shaft of right fibula|Nondisplaced comminuted fracture of shaft of right fibula +C2863084|T037|HT|S82.454|ICD10CM|Nondisplaced comminuted fracture of shaft of right fibula|Nondisplaced comminuted fracture of shaft of right fibula +C2863085|T037|AB|S82.454A|ICD10CM|Nondisp comminuted fracture of shaft of right fibula, init|Nondisp comminuted fracture of shaft of right fibula, init +C2863085|T037|PT|S82.454A|ICD10CM|Nondisplaced comminuted fracture of shaft of right fibula, initial encounter for closed fracture|Nondisplaced comminuted fracture of shaft of right fibula, initial encounter for closed fracture +C2863086|T037|AB|S82.454B|ICD10CM|Nondisp commnt fx shaft of r fibula, 7thB|Nondisp commnt fx shaft of r fibula, 7thB +C2863087|T037|AB|S82.454C|ICD10CM|Nondisp commnt fx shaft of r fibula, 7thC|Nondisp commnt fx shaft of r fibula, 7thC +C2863088|T037|AB|S82.454D|ICD10CM|Nondisp commnt fx shaft of r fibula, 7thD|Nondisp commnt fx shaft of r fibula, 7thD +C2863089|T037|AB|S82.454E|ICD10CM|Nondisp commnt fx shaft of r fibula, 7thE|Nondisp commnt fx shaft of r fibula, 7thE +C2863090|T037|AB|S82.454F|ICD10CM|Nondisp commnt fx shaft of r fibula, 7thF|Nondisp commnt fx shaft of r fibula, 7thF +C2863091|T037|AB|S82.454G|ICD10CM|Nondisp commnt fx shaft of r fibula, 7thG|Nondisp commnt fx shaft of r fibula, 7thG +C2863092|T037|AB|S82.454H|ICD10CM|Nondisp commnt fx shaft of r fibula, 7thH|Nondisp commnt fx shaft of r fibula, 7thH +C2863093|T037|AB|S82.454J|ICD10CM|Nondisp commnt fx shaft of r fibula, 7thJ|Nondisp commnt fx shaft of r fibula, 7thJ +C2863094|T037|AB|S82.454K|ICD10CM|Nondisp commnt fx shaft of r fibula, 7thK|Nondisp commnt fx shaft of r fibula, 7thK +C2863095|T037|AB|S82.454M|ICD10CM|Nondisp commnt fx shaft of r fibula, 7thM|Nondisp commnt fx shaft of r fibula, 7thM +C2863096|T037|AB|S82.454N|ICD10CM|Nondisp commnt fx shaft of r fibula, 7thN|Nondisp commnt fx shaft of r fibula, 7thN +C2863097|T037|AB|S82.454P|ICD10CM|Nondisp commnt fx shaft of r fibula, 7thP|Nondisp commnt fx shaft of r fibula, 7thP +C2863098|T037|AB|S82.454Q|ICD10CM|Nondisp commnt fx shaft of r fibula, 7thQ|Nondisp commnt fx shaft of r fibula, 7thQ +C2863099|T037|AB|S82.454R|ICD10CM|Nondisp commnt fx shaft of r fibula, 7thR|Nondisp commnt fx shaft of r fibula, 7thR +C2863100|T037|AB|S82.454S|ICD10CM|Nondisp comminuted fracture of shaft of r fibula, sequela|Nondisp comminuted fracture of shaft of r fibula, sequela +C2863100|T037|PT|S82.454S|ICD10CM|Nondisplaced comminuted fracture of shaft of right fibula, sequela|Nondisplaced comminuted fracture of shaft of right fibula, sequela +C2863101|T037|AB|S82.455|ICD10CM|Nondisplaced comminuted fracture of shaft of left fibula|Nondisplaced comminuted fracture of shaft of left fibula +C2863101|T037|HT|S82.455|ICD10CM|Nondisplaced comminuted fracture of shaft of left fibula|Nondisplaced comminuted fracture of shaft of left fibula +C2863102|T037|AB|S82.455A|ICD10CM|Nondisp comminuted fracture of shaft of left fibula, init|Nondisp comminuted fracture of shaft of left fibula, init +C2863102|T037|PT|S82.455A|ICD10CM|Nondisplaced comminuted fracture of shaft of left fibula, initial encounter for closed fracture|Nondisplaced comminuted fracture of shaft of left fibula, initial encounter for closed fracture +C2863103|T037|AB|S82.455B|ICD10CM|Nondisp commnt fx shaft of l fibula, 7thB|Nondisp commnt fx shaft of l fibula, 7thB +C2863104|T037|AB|S82.455C|ICD10CM|Nondisp commnt fx shaft of l fibula, 7thC|Nondisp commnt fx shaft of l fibula, 7thC +C2863105|T037|AB|S82.455D|ICD10CM|Nondisp commnt fx shaft of l fibula, 7thD|Nondisp commnt fx shaft of l fibula, 7thD +C2863106|T037|AB|S82.455E|ICD10CM|Nondisp commnt fx shaft of l fibula, 7thE|Nondisp commnt fx shaft of l fibula, 7thE +C2863107|T037|AB|S82.455F|ICD10CM|Nondisp commnt fx shaft of l fibula, 7thF|Nondisp commnt fx shaft of l fibula, 7thF +C2863108|T037|AB|S82.455G|ICD10CM|Nondisp commnt fx shaft of l fibula, 7thG|Nondisp commnt fx shaft of l fibula, 7thG +C2863109|T037|AB|S82.455H|ICD10CM|Nondisp commnt fx shaft of l fibula, 7thH|Nondisp commnt fx shaft of l fibula, 7thH +C2863110|T037|AB|S82.455J|ICD10CM|Nondisp commnt fx shaft of l fibula, 7thJ|Nondisp commnt fx shaft of l fibula, 7thJ +C2863111|T037|AB|S82.455K|ICD10CM|Nondisp commnt fx shaft of l fibula, 7thK|Nondisp commnt fx shaft of l fibula, 7thK +C2863112|T037|AB|S82.455M|ICD10CM|Nondisp commnt fx shaft of l fibula, 7thM|Nondisp commnt fx shaft of l fibula, 7thM +C2863113|T037|AB|S82.455N|ICD10CM|Nondisp commnt fx shaft of l fibula, 7thN|Nondisp commnt fx shaft of l fibula, 7thN +C2863114|T037|AB|S82.455P|ICD10CM|Nondisp commnt fx shaft of l fibula, 7thP|Nondisp commnt fx shaft of l fibula, 7thP +C2863115|T037|AB|S82.455Q|ICD10CM|Nondisp commnt fx shaft of l fibula, 7thQ|Nondisp commnt fx shaft of l fibula, 7thQ +C2863116|T037|AB|S82.455R|ICD10CM|Nondisp commnt fx shaft of l fibula, 7thR|Nondisp commnt fx shaft of l fibula, 7thR +C2863117|T037|AB|S82.455S|ICD10CM|Nondisp comminuted fracture of shaft of left fibula, sequela|Nondisp comminuted fracture of shaft of left fibula, sequela +C2863117|T037|PT|S82.455S|ICD10CM|Nondisplaced comminuted fracture of shaft of left fibula, sequela|Nondisplaced comminuted fracture of shaft of left fibula, sequela +C2863118|T037|AB|S82.456|ICD10CM|Nondisplaced comminuted fracture of shaft of unsp fibula|Nondisplaced comminuted fracture of shaft of unsp fibula +C2863118|T037|HT|S82.456|ICD10CM|Nondisplaced comminuted fracture of shaft of unspecified fibula|Nondisplaced comminuted fracture of shaft of unspecified fibula +C2863119|T037|AB|S82.456A|ICD10CM|Nondisp comminuted fracture of shaft of unsp fibula, init|Nondisp comminuted fracture of shaft of unsp fibula, init +C2863120|T037|AB|S82.456B|ICD10CM|Nondisp commnt fx shaft of unsp fibula, 7thB|Nondisp commnt fx shaft of unsp fibula, 7thB +C2863121|T037|AB|S82.456C|ICD10CM|Nondisp commnt fx shaft of unsp fibula, 7thC|Nondisp commnt fx shaft of unsp fibula, 7thC +C2863122|T037|AB|S82.456D|ICD10CM|Nondisp commnt fx shaft of unsp fibula, 7thD|Nondisp commnt fx shaft of unsp fibula, 7thD +C2863123|T037|AB|S82.456E|ICD10CM|Nondisp commnt fx shaft of unsp fibula, 7thE|Nondisp commnt fx shaft of unsp fibula, 7thE +C2863124|T037|AB|S82.456F|ICD10CM|Nondisp commnt fx shaft of unsp fibula, 7thF|Nondisp commnt fx shaft of unsp fibula, 7thF +C2863125|T037|AB|S82.456G|ICD10CM|Nondisp commnt fx shaft of unsp fibula, 7thG|Nondisp commnt fx shaft of unsp fibula, 7thG +C2863126|T037|AB|S82.456H|ICD10CM|Nondisp commnt fx shaft of unsp fibula, 7thH|Nondisp commnt fx shaft of unsp fibula, 7thH +C2863127|T037|AB|S82.456J|ICD10CM|Nondisp commnt fx shaft of unsp fibula, 7thJ|Nondisp commnt fx shaft of unsp fibula, 7thJ +C2863128|T037|AB|S82.456K|ICD10CM|Nondisp commnt fx shaft of unsp fibula, 7thK|Nondisp commnt fx shaft of unsp fibula, 7thK +C2863129|T037|AB|S82.456M|ICD10CM|Nondisp commnt fx shaft of unsp fibula, 7thM|Nondisp commnt fx shaft of unsp fibula, 7thM +C2863130|T037|AB|S82.456N|ICD10CM|Nondisp commnt fx shaft of unsp fibula, 7thN|Nondisp commnt fx shaft of unsp fibula, 7thN +C2863131|T037|AB|S82.456P|ICD10CM|Nondisp commnt fx shaft of unsp fibula, 7thP|Nondisp commnt fx shaft of unsp fibula, 7thP +C2863132|T037|AB|S82.456Q|ICD10CM|Nondisp commnt fx shaft of unsp fibula, 7thQ|Nondisp commnt fx shaft of unsp fibula, 7thQ +C2863133|T037|AB|S82.456R|ICD10CM|Nondisp commnt fx shaft of unsp fibula, 7thR|Nondisp commnt fx shaft of unsp fibula, 7thR +C2863134|T037|AB|S82.456S|ICD10CM|Nondisp comminuted fracture of shaft of unsp fibula, sequela|Nondisp comminuted fracture of shaft of unsp fibula, sequela +C2863134|T037|PT|S82.456S|ICD10CM|Nondisplaced comminuted fracture of shaft of unspecified fibula, sequela|Nondisplaced comminuted fracture of shaft of unspecified fibula, sequela +C2863135|T037|AB|S82.46|ICD10CM|Segmental fracture of shaft of fibula|Segmental fracture of shaft of fibula +C2863135|T037|HT|S82.46|ICD10CM|Segmental fracture of shaft of fibula|Segmental fracture of shaft of fibula +C2863136|T037|AB|S82.461|ICD10CM|Displaced segmental fracture of shaft of right fibula|Displaced segmental fracture of shaft of right fibula +C2863136|T037|HT|S82.461|ICD10CM|Displaced segmental fracture of shaft of right fibula|Displaced segmental fracture of shaft of right fibula +C2863137|T037|AB|S82.461A|ICD10CM|Displaced segmental fracture of shaft of right fibula, init|Displaced segmental fracture of shaft of right fibula, init +C2863137|T037|PT|S82.461A|ICD10CM|Displaced segmental fracture of shaft of right fibula, initial encounter for closed fracture|Displaced segmental fracture of shaft of right fibula, initial encounter for closed fracture +C2863138|T037|AB|S82.461B|ICD10CM|Displ seg fx shaft of r fibula, init for opn fx type I/2|Displ seg fx shaft of r fibula, init for opn fx type I/2 +C2863139|T037|AB|S82.461C|ICD10CM|Displ seg fx shaft of r fibula, init for opn fx type 3A/B/C|Displ seg fx shaft of r fibula, init for opn fx type 3A/B/C +C2863140|T037|AB|S82.461D|ICD10CM|Displ seg fx shaft of r fibula, 7thD|Displ seg fx shaft of r fibula, 7thD +C2863141|T037|AB|S82.461E|ICD10CM|Displ seg fx shaft of r fibula, 7thE|Displ seg fx shaft of r fibula, 7thE +C2863142|T037|AB|S82.461F|ICD10CM|Displ seg fx shaft of r fibula, 7thF|Displ seg fx shaft of r fibula, 7thF +C2863143|T037|AB|S82.461G|ICD10CM|Displ seg fx shaft of r fibula, 7thG|Displ seg fx shaft of r fibula, 7thG +C2863144|T037|AB|S82.461H|ICD10CM|Displ seg fx shaft of r fibula, 7thH|Displ seg fx shaft of r fibula, 7thH +C2863145|T037|AB|S82.461J|ICD10CM|Displ seg fx shaft of r fibula, 7thJ|Displ seg fx shaft of r fibula, 7thJ +C2863146|T037|AB|S82.461K|ICD10CM|Displ seg fx shaft of r fibula, subs for clos fx w nonunion|Displ seg fx shaft of r fibula, subs for clos fx w nonunion +C2863147|T037|AB|S82.461M|ICD10CM|Displ seg fx shaft of r fibula, 7thM|Displ seg fx shaft of r fibula, 7thM +C2863148|T037|AB|S82.461N|ICD10CM|Displ seg fx shaft of r fibula, 7thN|Displ seg fx shaft of r fibula, 7thN +C2863149|T037|AB|S82.461P|ICD10CM|Displ seg fx shaft of r fibula, subs for clos fx w malunion|Displ seg fx shaft of r fibula, subs for clos fx w malunion +C2863150|T037|AB|S82.461Q|ICD10CM|Displ seg fx shaft of r fibula, 7thQ|Displ seg fx shaft of r fibula, 7thQ +C2863151|T037|AB|S82.461R|ICD10CM|Displ seg fx shaft of r fibula, 7thR|Displ seg fx shaft of r fibula, 7thR +C2863152|T037|AB|S82.461S|ICD10CM|Displaced segmental fracture of shaft of r fibula, sequela|Displaced segmental fracture of shaft of r fibula, sequela +C2863152|T037|PT|S82.461S|ICD10CM|Displaced segmental fracture of shaft of right fibula, sequela|Displaced segmental fracture of shaft of right fibula, sequela +C2863153|T037|AB|S82.462|ICD10CM|Displaced segmental fracture of shaft of left fibula|Displaced segmental fracture of shaft of left fibula +C2863153|T037|HT|S82.462|ICD10CM|Displaced segmental fracture of shaft of left fibula|Displaced segmental fracture of shaft of left fibula +C2863154|T037|AB|S82.462A|ICD10CM|Displaced segmental fracture of shaft of left fibula, init|Displaced segmental fracture of shaft of left fibula, init +C2863154|T037|PT|S82.462A|ICD10CM|Displaced segmental fracture of shaft of left fibula, initial encounter for closed fracture|Displaced segmental fracture of shaft of left fibula, initial encounter for closed fracture +C2863155|T037|AB|S82.462B|ICD10CM|Displ seg fx shaft of l fibula, init for opn fx type I/2|Displ seg fx shaft of l fibula, init for opn fx type I/2 +C2863156|T037|AB|S82.462C|ICD10CM|Displ seg fx shaft of l fibula, init for opn fx type 3A/B/C|Displ seg fx shaft of l fibula, init for opn fx type 3A/B/C +C2863157|T037|AB|S82.462D|ICD10CM|Displ seg fx shaft of l fibula, 7thD|Displ seg fx shaft of l fibula, 7thD +C2863158|T037|AB|S82.462E|ICD10CM|Displ seg fx shaft of l fibula, 7thE|Displ seg fx shaft of l fibula, 7thE +C2863159|T037|AB|S82.462F|ICD10CM|Displ seg fx shaft of l fibula, 7thF|Displ seg fx shaft of l fibula, 7thF +C2863160|T037|AB|S82.462G|ICD10CM|Displ seg fx shaft of l fibula, 7thG|Displ seg fx shaft of l fibula, 7thG +C2863161|T037|AB|S82.462H|ICD10CM|Displ seg fx shaft of l fibula, 7thH|Displ seg fx shaft of l fibula, 7thH +C2863162|T037|AB|S82.462J|ICD10CM|Displ seg fx shaft of l fibula, 7thJ|Displ seg fx shaft of l fibula, 7thJ +C2863163|T037|AB|S82.462K|ICD10CM|Displ seg fx shaft of l fibula, subs for clos fx w nonunion|Displ seg fx shaft of l fibula, subs for clos fx w nonunion +C2863164|T037|AB|S82.462M|ICD10CM|Displ seg fx shaft of l fibula, 7thM|Displ seg fx shaft of l fibula, 7thM +C2863165|T037|AB|S82.462N|ICD10CM|Displ seg fx shaft of l fibula, 7thN|Displ seg fx shaft of l fibula, 7thN +C2863166|T037|AB|S82.462P|ICD10CM|Displ seg fx shaft of l fibula, subs for clos fx w malunion|Displ seg fx shaft of l fibula, subs for clos fx w malunion +C2863167|T037|AB|S82.462Q|ICD10CM|Displ seg fx shaft of l fibula, 7thQ|Displ seg fx shaft of l fibula, 7thQ +C2863168|T037|AB|S82.462R|ICD10CM|Displ seg fx shaft of l fibula, 7thR|Displ seg fx shaft of l fibula, 7thR +C2863169|T037|PT|S82.462S|ICD10CM|Displaced segmental fracture of shaft of left fibula, sequela|Displaced segmental fracture of shaft of left fibula, sequela +C2863169|T037|AB|S82.462S|ICD10CM|Displaced segmental fx shaft of left fibula, sequela|Displaced segmental fx shaft of left fibula, sequela +C2863170|T037|AB|S82.463|ICD10CM|Displaced segmental fracture of shaft of unspecified fibula|Displaced segmental fracture of shaft of unspecified fibula +C2863170|T037|HT|S82.463|ICD10CM|Displaced segmental fracture of shaft of unspecified fibula|Displaced segmental fracture of shaft of unspecified fibula +C2863171|T037|AB|S82.463A|ICD10CM|Displaced segmental fracture of shaft of unsp fibula, init|Displaced segmental fracture of shaft of unsp fibula, init +C2863171|T037|PT|S82.463A|ICD10CM|Displaced segmental fracture of shaft of unspecified fibula, initial encounter for closed fracture|Displaced segmental fracture of shaft of unspecified fibula, initial encounter for closed fracture +C2863172|T037|AB|S82.463B|ICD10CM|Displ seg fx shaft of unsp fibula, init for opn fx type I/2|Displ seg fx shaft of unsp fibula, init for opn fx type I/2 +C2863173|T037|AB|S82.463C|ICD10CM|Displ seg fx shaft of unsp fibula, 7thC|Displ seg fx shaft of unsp fibula, 7thC +C2863174|T037|AB|S82.463D|ICD10CM|Displ seg fx shaft of unsp fibula, 7thD|Displ seg fx shaft of unsp fibula, 7thD +C2863175|T037|AB|S82.463E|ICD10CM|Displ seg fx shaft of unsp fibula, 7thE|Displ seg fx shaft of unsp fibula, 7thE +C2863176|T037|AB|S82.463F|ICD10CM|Displ seg fx shaft of unsp fibula, 7thF|Displ seg fx shaft of unsp fibula, 7thF +C2863177|T037|AB|S82.463G|ICD10CM|Displ seg fx shaft of unsp fibula, 7thG|Displ seg fx shaft of unsp fibula, 7thG +C2863178|T037|AB|S82.463H|ICD10CM|Displ seg fx shaft of unsp fibula, 7thH|Displ seg fx shaft of unsp fibula, 7thH +C2863179|T037|AB|S82.463J|ICD10CM|Displ seg fx shaft of unsp fibula, 7thJ|Displ seg fx shaft of unsp fibula, 7thJ +C2863180|T037|AB|S82.463K|ICD10CM|Displ seg fx shaft of unsp fibula, 7thK|Displ seg fx shaft of unsp fibula, 7thK +C2863181|T037|AB|S82.463M|ICD10CM|Displ seg fx shaft of unsp fibula, 7thM|Displ seg fx shaft of unsp fibula, 7thM +C2863182|T037|AB|S82.463N|ICD10CM|Displ seg fx shaft of unsp fibula, 7thN|Displ seg fx shaft of unsp fibula, 7thN +C2863183|T037|AB|S82.463P|ICD10CM|Displ seg fx shaft of unsp fibula, 7thP|Displ seg fx shaft of unsp fibula, 7thP +C2863184|T037|AB|S82.463Q|ICD10CM|Displ seg fx shaft of unsp fibula, 7thQ|Displ seg fx shaft of unsp fibula, 7thQ +C2863185|T037|AB|S82.463R|ICD10CM|Displ seg fx shaft of unsp fibula, 7thR|Displ seg fx shaft of unsp fibula, 7thR +C2863186|T037|PT|S82.463S|ICD10CM|Displaced segmental fracture of shaft of unspecified fibula, sequela|Displaced segmental fracture of shaft of unspecified fibula, sequela +C2863186|T037|AB|S82.463S|ICD10CM|Displaced segmental fx shaft of unsp fibula, sequela|Displaced segmental fx shaft of unsp fibula, sequela +C2863187|T037|AB|S82.464|ICD10CM|Nondisplaced segmental fracture of shaft of right fibula|Nondisplaced segmental fracture of shaft of right fibula +C2863187|T037|HT|S82.464|ICD10CM|Nondisplaced segmental fracture of shaft of right fibula|Nondisplaced segmental fracture of shaft of right fibula +C2863188|T037|AB|S82.464A|ICD10CM|Nondisp segmental fracture of shaft of right fibula, init|Nondisp segmental fracture of shaft of right fibula, init +C2863188|T037|PT|S82.464A|ICD10CM|Nondisplaced segmental fracture of shaft of right fibula, initial encounter for closed fracture|Nondisplaced segmental fracture of shaft of right fibula, initial encounter for closed fracture +C2863189|T037|AB|S82.464B|ICD10CM|Nondisp seg fx shaft of r fibula, init for opn fx type I/2|Nondisp seg fx shaft of r fibula, init for opn fx type I/2 +C2863190|T037|AB|S82.464C|ICD10CM|Nondisp seg fx shaft of r fibula, 7thC|Nondisp seg fx shaft of r fibula, 7thC +C2863191|T037|AB|S82.464D|ICD10CM|Nondisp seg fx shaft of r fibula, 7thD|Nondisp seg fx shaft of r fibula, 7thD +C2863192|T037|AB|S82.464E|ICD10CM|Nondisp seg fx shaft of r fibula, 7thE|Nondisp seg fx shaft of r fibula, 7thE +C2863193|T037|AB|S82.464F|ICD10CM|Nondisp seg fx shaft of r fibula, 7thF|Nondisp seg fx shaft of r fibula, 7thF +C2863194|T037|AB|S82.464G|ICD10CM|Nondisp seg fx shaft of r fibula, 7thG|Nondisp seg fx shaft of r fibula, 7thG +C2863195|T037|AB|S82.464H|ICD10CM|Nondisp seg fx shaft of r fibula, 7thH|Nondisp seg fx shaft of r fibula, 7thH +C2863196|T037|AB|S82.464J|ICD10CM|Nondisp seg fx shaft of r fibula, 7thJ|Nondisp seg fx shaft of r fibula, 7thJ +C2863197|T037|AB|S82.464K|ICD10CM|Nondisp seg fx shaft of r fibula, 7thK|Nondisp seg fx shaft of r fibula, 7thK +C2863198|T037|AB|S82.464M|ICD10CM|Nondisp seg fx shaft of r fibula, 7thM|Nondisp seg fx shaft of r fibula, 7thM +C2863199|T037|AB|S82.464N|ICD10CM|Nondisp seg fx shaft of r fibula, 7thN|Nondisp seg fx shaft of r fibula, 7thN +C2863200|T037|AB|S82.464P|ICD10CM|Nondisp seg fx shaft of r fibula, 7thP|Nondisp seg fx shaft of r fibula, 7thP +C2863201|T037|AB|S82.464Q|ICD10CM|Nondisp seg fx shaft of r fibula, 7thQ|Nondisp seg fx shaft of r fibula, 7thQ +C2863202|T037|AB|S82.464R|ICD10CM|Nondisp seg fx shaft of r fibula, 7thR|Nondisp seg fx shaft of r fibula, 7thR +C2863203|T037|AB|S82.464S|ICD10CM|Nondisp segmental fracture of shaft of right fibula, sequela|Nondisp segmental fracture of shaft of right fibula, sequela +C2863203|T037|PT|S82.464S|ICD10CM|Nondisplaced segmental fracture of shaft of right fibula, sequela|Nondisplaced segmental fracture of shaft of right fibula, sequela +C2863204|T037|AB|S82.465|ICD10CM|Nondisplaced segmental fracture of shaft of left fibula|Nondisplaced segmental fracture of shaft of left fibula +C2863204|T037|HT|S82.465|ICD10CM|Nondisplaced segmental fracture of shaft of left fibula|Nondisplaced segmental fracture of shaft of left fibula +C2863205|T037|AB|S82.465A|ICD10CM|Nondisp segmental fracture of shaft of left fibula, init|Nondisp segmental fracture of shaft of left fibula, init +C2863205|T037|PT|S82.465A|ICD10CM|Nondisplaced segmental fracture of shaft of left fibula, initial encounter for closed fracture|Nondisplaced segmental fracture of shaft of left fibula, initial encounter for closed fracture +C2863206|T037|AB|S82.465B|ICD10CM|Nondisp seg fx shaft of l fibula, init for opn fx type I/2|Nondisp seg fx shaft of l fibula, init for opn fx type I/2 +C2863207|T037|AB|S82.465C|ICD10CM|Nondisp seg fx shaft of l fibula, 7thC|Nondisp seg fx shaft of l fibula, 7thC +C2863208|T037|AB|S82.465D|ICD10CM|Nondisp seg fx shaft of l fibula, 7thD|Nondisp seg fx shaft of l fibula, 7thD +C2863209|T037|AB|S82.465E|ICD10CM|Nondisp seg fx shaft of l fibula, 7thE|Nondisp seg fx shaft of l fibula, 7thE +C2863210|T037|AB|S82.465F|ICD10CM|Nondisp seg fx shaft of l fibula, 7thF|Nondisp seg fx shaft of l fibula, 7thF +C2863211|T037|AB|S82.465G|ICD10CM|Nondisp seg fx shaft of l fibula, 7thG|Nondisp seg fx shaft of l fibula, 7thG +C2863212|T037|AB|S82.465H|ICD10CM|Nondisp seg fx shaft of l fibula, 7thH|Nondisp seg fx shaft of l fibula, 7thH +C2863213|T037|AB|S82.465J|ICD10CM|Nondisp seg fx shaft of l fibula, 7thJ|Nondisp seg fx shaft of l fibula, 7thJ +C2863214|T037|AB|S82.465K|ICD10CM|Nondisp seg fx shaft of l fibula, 7thK|Nondisp seg fx shaft of l fibula, 7thK +C2863215|T037|AB|S82.465M|ICD10CM|Nondisp seg fx shaft of l fibula, 7thM|Nondisp seg fx shaft of l fibula, 7thM +C2863216|T037|AB|S82.465N|ICD10CM|Nondisp seg fx shaft of l fibula, 7thN|Nondisp seg fx shaft of l fibula, 7thN +C2863217|T037|AB|S82.465P|ICD10CM|Nondisp seg fx shaft of l fibula, 7thP|Nondisp seg fx shaft of l fibula, 7thP +C2863218|T037|AB|S82.465Q|ICD10CM|Nondisp seg fx shaft of l fibula, 7thQ|Nondisp seg fx shaft of l fibula, 7thQ +C2863219|T037|AB|S82.465R|ICD10CM|Nondisp seg fx shaft of l fibula, 7thR|Nondisp seg fx shaft of l fibula, 7thR +C2863220|T037|AB|S82.465S|ICD10CM|Nondisp segmental fracture of shaft of left fibula, sequela|Nondisp segmental fracture of shaft of left fibula, sequela +C2863220|T037|PT|S82.465S|ICD10CM|Nondisplaced segmental fracture of shaft of left fibula, sequela|Nondisplaced segmental fracture of shaft of left fibula, sequela +C2863221|T037|AB|S82.466|ICD10CM|Nondisplaced segmental fracture of shaft of unsp fibula|Nondisplaced segmental fracture of shaft of unsp fibula +C2863221|T037|HT|S82.466|ICD10CM|Nondisplaced segmental fracture of shaft of unspecified fibula|Nondisplaced segmental fracture of shaft of unspecified fibula +C2863222|T037|AB|S82.466A|ICD10CM|Nondisp segmental fracture of shaft of unsp fibula, init|Nondisp segmental fracture of shaft of unsp fibula, init +C2863223|T037|AB|S82.466B|ICD10CM|Nondisp seg fx shaft of unsp fibula, 7thB|Nondisp seg fx shaft of unsp fibula, 7thB +C2863224|T037|AB|S82.466C|ICD10CM|Nondisp seg fx shaft of unsp fibula, 7thC|Nondisp seg fx shaft of unsp fibula, 7thC +C2863225|T037|AB|S82.466D|ICD10CM|Nondisp seg fx shaft of unsp fibula, 7thD|Nondisp seg fx shaft of unsp fibula, 7thD +C2863226|T037|AB|S82.466E|ICD10CM|Nondisp seg fx shaft of unsp fibula, 7thE|Nondisp seg fx shaft of unsp fibula, 7thE +C2863227|T037|AB|S82.466F|ICD10CM|Nondisp seg fx shaft of unsp fibula, 7thF|Nondisp seg fx shaft of unsp fibula, 7thF +C2863228|T037|AB|S82.466G|ICD10CM|Nondisp seg fx shaft of unsp fibula, 7thG|Nondisp seg fx shaft of unsp fibula, 7thG +C2863229|T037|AB|S82.466H|ICD10CM|Nondisp seg fx shaft of unsp fibula, 7thH|Nondisp seg fx shaft of unsp fibula, 7thH +C2863230|T037|AB|S82.466J|ICD10CM|Nondisp seg fx shaft of unsp fibula, 7thJ|Nondisp seg fx shaft of unsp fibula, 7thJ +C2863231|T037|AB|S82.466K|ICD10CM|Nondisp seg fx shaft of unsp fibula, 7thK|Nondisp seg fx shaft of unsp fibula, 7thK +C2863232|T037|AB|S82.466M|ICD10CM|Nondisp seg fx shaft of unsp fibula, 7thM|Nondisp seg fx shaft of unsp fibula, 7thM +C2863233|T037|AB|S82.466N|ICD10CM|Nondisp seg fx shaft of unsp fibula, 7thN|Nondisp seg fx shaft of unsp fibula, 7thN +C2863234|T037|AB|S82.466P|ICD10CM|Nondisp seg fx shaft of unsp fibula, 7thP|Nondisp seg fx shaft of unsp fibula, 7thP +C2863235|T037|AB|S82.466Q|ICD10CM|Nondisp seg fx shaft of unsp fibula, 7thQ|Nondisp seg fx shaft of unsp fibula, 7thQ +C2863236|T037|AB|S82.466R|ICD10CM|Nondisp seg fx shaft of unsp fibula, 7thR|Nondisp seg fx shaft of unsp fibula, 7thR +C2863237|T037|AB|S82.466S|ICD10CM|Nondisp segmental fracture of shaft of unsp fibula, sequela|Nondisp segmental fracture of shaft of unsp fibula, sequela +C2863237|T037|PT|S82.466S|ICD10CM|Nondisplaced segmental fracture of shaft of unspecified fibula, sequela|Nondisplaced segmental fracture of shaft of unspecified fibula, sequela +C2863238|T037|AB|S82.49|ICD10CM|Other fracture of shaft of fibula|Other fracture of shaft of fibula +C2863238|T037|HT|S82.49|ICD10CM|Other fracture of shaft of fibula|Other fracture of shaft of fibula +C2863239|T037|AB|S82.491|ICD10CM|Other fracture of shaft of right fibula|Other fracture of shaft of right fibula +C2863239|T037|HT|S82.491|ICD10CM|Other fracture of shaft of right fibula|Other fracture of shaft of right fibula +C2863240|T037|AB|S82.491A|ICD10CM|Oth fracture of shaft of right fibula, init for clos fx|Oth fracture of shaft of right fibula, init for clos fx +C2863240|T037|PT|S82.491A|ICD10CM|Other fracture of shaft of right fibula, initial encounter for closed fracture|Other fracture of shaft of right fibula, initial encounter for closed fracture +C2863241|T037|AB|S82.491B|ICD10CM|Oth fracture of shaft of r fibula, init for opn fx type I/2|Oth fracture of shaft of r fibula, init for opn fx type I/2 +C2863241|T037|PT|S82.491B|ICD10CM|Other fracture of shaft of right fibula, initial encounter for open fracture type I or II|Other fracture of shaft of right fibula, initial encounter for open fracture type I or II +C2863242|T037|AB|S82.491C|ICD10CM|Oth fx shaft of r fibula, init for opn fx type 3A/B/C|Oth fx shaft of r fibula, init for opn fx type 3A/B/C +C2863243|T037|AB|S82.491D|ICD10CM|Oth fx shaft of r fibula, subs for clos fx w routn heal|Oth fx shaft of r fibula, subs for clos fx w routn heal +C2863244|T037|AB|S82.491E|ICD10CM|Oth fx shaft of r fibula, 7thE|Oth fx shaft of r fibula, 7thE +C2863245|T037|AB|S82.491F|ICD10CM|Oth fx shaft of r fibula, 7thF|Oth fx shaft of r fibula, 7thF +C2863246|T037|AB|S82.491G|ICD10CM|Oth fx shaft of r fibula, subs for clos fx w delay heal|Oth fx shaft of r fibula, subs for clos fx w delay heal +C2863247|T037|AB|S82.491H|ICD10CM|Oth fx shaft of r fibula, 7thH|Oth fx shaft of r fibula, 7thH +C2863248|T037|AB|S82.491J|ICD10CM|Oth fx shaft of r fibula, 7thJ|Oth fx shaft of r fibula, 7thJ +C2863249|T037|AB|S82.491K|ICD10CM|Oth fx shaft of r fibula, subs for clos fx w nonunion|Oth fx shaft of r fibula, subs for clos fx w nonunion +C2863249|T037|PT|S82.491K|ICD10CM|Other fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion|Other fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion +C2863250|T037|AB|S82.491M|ICD10CM|Oth fx shaft of r fibula, 7thM|Oth fx shaft of r fibula, 7thM +C2863251|T037|AB|S82.491N|ICD10CM|Oth fx shaft of r fibula, 7thN|Oth fx shaft of r fibula, 7thN +C2863252|T037|AB|S82.491P|ICD10CM|Oth fx shaft of r fibula, subs for clos fx w malunion|Oth fx shaft of r fibula, subs for clos fx w malunion +C2863252|T037|PT|S82.491P|ICD10CM|Other fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion|Other fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion +C2863253|T037|AB|S82.491Q|ICD10CM|Oth fx shaft of r fibula, 7thQ|Oth fx shaft of r fibula, 7thQ +C2863254|T037|AB|S82.491R|ICD10CM|Oth fx shaft of r fibula, 7thR|Oth fx shaft of r fibula, 7thR +C2863255|T037|PT|S82.491S|ICD10CM|Other fracture of shaft of right fibula, sequela|Other fracture of shaft of right fibula, sequela +C2863255|T037|AB|S82.491S|ICD10CM|Other fracture of shaft of right fibula, sequela|Other fracture of shaft of right fibula, sequela +C2863256|T037|AB|S82.492|ICD10CM|Other fracture of shaft of left fibula|Other fracture of shaft of left fibula +C2863256|T037|HT|S82.492|ICD10CM|Other fracture of shaft of left fibula|Other fracture of shaft of left fibula +C2863257|T037|AB|S82.492A|ICD10CM|Oth fracture of shaft of left fibula, init for clos fx|Oth fracture of shaft of left fibula, init for clos fx +C2863257|T037|PT|S82.492A|ICD10CM|Other fracture of shaft of left fibula, initial encounter for closed fracture|Other fracture of shaft of left fibula, initial encounter for closed fracture +C2863258|T037|AB|S82.492B|ICD10CM|Oth fx shaft of left fibula, init for opn fx type I/2|Oth fx shaft of left fibula, init for opn fx type I/2 +C2863258|T037|PT|S82.492B|ICD10CM|Other fracture of shaft of left fibula, initial encounter for open fracture type I or II|Other fracture of shaft of left fibula, initial encounter for open fracture type I or II +C2863259|T037|AB|S82.492C|ICD10CM|Oth fx shaft of left fibula, init for opn fx type 3A/B/C|Oth fx shaft of left fibula, init for opn fx type 3A/B/C +C2863259|T037|PT|S82.492C|ICD10CM|Other fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC|Other fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2863260|T037|AB|S82.492D|ICD10CM|Oth fx shaft of left fibula, subs for clos fx w routn heal|Oth fx shaft of left fibula, subs for clos fx w routn heal +C2863261|T037|AB|S82.492E|ICD10CM|Oth fx shaft of l fibula, 7thE|Oth fx shaft of l fibula, 7thE +C2863262|T037|AB|S82.492F|ICD10CM|Oth fx shaft of l fibula, 7thF|Oth fx shaft of l fibula, 7thF +C2863263|T037|AB|S82.492G|ICD10CM|Oth fx shaft of left fibula, subs for clos fx w delay heal|Oth fx shaft of left fibula, subs for clos fx w delay heal +C2863264|T037|AB|S82.492H|ICD10CM|Oth fx shaft of l fibula, 7thH|Oth fx shaft of l fibula, 7thH +C2863265|T037|AB|S82.492J|ICD10CM|Oth fx shaft of l fibula, 7thJ|Oth fx shaft of l fibula, 7thJ +C2863266|T037|AB|S82.492K|ICD10CM|Oth fx shaft of left fibula, subs for clos fx w nonunion|Oth fx shaft of left fibula, subs for clos fx w nonunion +C2863266|T037|PT|S82.492K|ICD10CM|Other fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion|Other fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion +C2863267|T037|AB|S82.492M|ICD10CM|Oth fx shaft of l fibula, 7thM|Oth fx shaft of l fibula, 7thM +C2863268|T037|AB|S82.492N|ICD10CM|Oth fx shaft of l fibula, 7thN|Oth fx shaft of l fibula, 7thN +C2863269|T037|AB|S82.492P|ICD10CM|Oth fx shaft of left fibula, subs for clos fx w malunion|Oth fx shaft of left fibula, subs for clos fx w malunion +C2863269|T037|PT|S82.492P|ICD10CM|Other fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion|Other fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion +C2863270|T037|AB|S82.492Q|ICD10CM|Oth fx shaft of l fibula, 7thQ|Oth fx shaft of l fibula, 7thQ +C2863271|T037|AB|S82.492R|ICD10CM|Oth fx shaft of l fibula, 7thR|Oth fx shaft of l fibula, 7thR +C2863272|T037|PT|S82.492S|ICD10CM|Other fracture of shaft of left fibula, sequela|Other fracture of shaft of left fibula, sequela +C2863272|T037|AB|S82.492S|ICD10CM|Other fracture of shaft of left fibula, sequela|Other fracture of shaft of left fibula, sequela +C2863273|T037|AB|S82.499|ICD10CM|Other fracture of shaft of unspecified fibula|Other fracture of shaft of unspecified fibula +C2863273|T037|HT|S82.499|ICD10CM|Other fracture of shaft of unspecified fibula|Other fracture of shaft of unspecified fibula +C2863274|T037|AB|S82.499A|ICD10CM|Oth fracture of shaft of unsp fibula, init for clos fx|Oth fracture of shaft of unsp fibula, init for clos fx +C2863274|T037|PT|S82.499A|ICD10CM|Other fracture of shaft of unspecified fibula, initial encounter for closed fracture|Other fracture of shaft of unspecified fibula, initial encounter for closed fracture +C2863275|T037|AB|S82.499B|ICD10CM|Oth fx shaft of unsp fibula, init for opn fx type I/2|Oth fx shaft of unsp fibula, init for opn fx type I/2 +C2863275|T037|PT|S82.499B|ICD10CM|Other fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II|Other fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II +C2863276|T037|AB|S82.499C|ICD10CM|Oth fx shaft of unsp fibula, init for opn fx type 3A/B/C|Oth fx shaft of unsp fibula, init for opn fx type 3A/B/C +C2863277|T037|AB|S82.499D|ICD10CM|Oth fx shaft of unsp fibula, subs for clos fx w routn heal|Oth fx shaft of unsp fibula, subs for clos fx w routn heal +C2863278|T037|AB|S82.499E|ICD10CM|Oth fx shaft of unsp fibula, 7thE|Oth fx shaft of unsp fibula, 7thE +C2863279|T037|AB|S82.499F|ICD10CM|Oth fx shaft of unsp fibula, 7thF|Oth fx shaft of unsp fibula, 7thF +C2863280|T037|AB|S82.499G|ICD10CM|Oth fx shaft of unsp fibula, subs for clos fx w delay heal|Oth fx shaft of unsp fibula, subs for clos fx w delay heal +C2863281|T037|AB|S82.499H|ICD10CM|Oth fx shaft of unsp fibula, 7thH|Oth fx shaft of unsp fibula, 7thH +C2863282|T037|AB|S82.499J|ICD10CM|Oth fx shaft of unsp fibula, 7thJ|Oth fx shaft of unsp fibula, 7thJ +C2863283|T037|AB|S82.499K|ICD10CM|Oth fx shaft of unsp fibula, subs for clos fx w nonunion|Oth fx shaft of unsp fibula, subs for clos fx w nonunion +C2863284|T037|AB|S82.499M|ICD10CM|Oth fx shaft of unsp fibula, 7thM|Oth fx shaft of unsp fibula, 7thM +C2863285|T037|AB|S82.499N|ICD10CM|Oth fx shaft of unsp fibula, 7thN|Oth fx shaft of unsp fibula, 7thN +C2863286|T037|AB|S82.499P|ICD10CM|Oth fx shaft of unsp fibula, subs for clos fx w malunion|Oth fx shaft of unsp fibula, subs for clos fx w malunion +C2863287|T037|AB|S82.499Q|ICD10CM|Oth fx shaft of unsp fibula, 7thQ|Oth fx shaft of unsp fibula, 7thQ +C2863288|T037|AB|S82.499R|ICD10CM|Oth fx shaft of unsp fibula, 7thR|Oth fx shaft of unsp fibula, 7thR +C2863289|T037|AB|S82.499S|ICD10CM|Other fracture of shaft of unspecified fibula, sequela|Other fracture of shaft of unspecified fibula, sequela +C2863289|T037|PT|S82.499S|ICD10CM|Other fracture of shaft of unspecified fibula, sequela|Other fracture of shaft of unspecified fibula, sequela +C0555345|T037|PT|S82.5|ICD10|Fracture of medial malleolus|Fracture of medial malleolus +C0555345|T037|HT|S82.5|ICD10CM|Fracture of medial malleolus|Fracture of medial malleolus +C0555345|T037|AB|S82.5|ICD10CM|Fracture of medial malleolus|Fracture of medial malleolus +C2863290|T037|AB|S82.51|ICD10CM|Displaced fracture of medial malleolus of right tibia|Displaced fracture of medial malleolus of right tibia +C2863290|T037|HT|S82.51|ICD10CM|Displaced fracture of medial malleolus of right tibia|Displaced fracture of medial malleolus of right tibia +C2863291|T037|AB|S82.51XA|ICD10CM|Disp fx of medial malleolus of right tibia, init for clos fx|Disp fx of medial malleolus of right tibia, init for clos fx +C2863291|T037|PT|S82.51XA|ICD10CM|Displaced fracture of medial malleolus of right tibia, initial encounter for closed fracture|Displaced fracture of medial malleolus of right tibia, initial encounter for closed fracture +C2863292|T037|AB|S82.51XB|ICD10CM|Disp fx of med malleolus of r tibia, 7thB|Disp fx of med malleolus of r tibia, 7thB +C2863293|T037|AB|S82.51XC|ICD10CM|Disp fx of med malleolus of r tibia, 7thC|Disp fx of med malleolus of r tibia, 7thC +C2863294|T037|AB|S82.51XD|ICD10CM|Disp fx of med malleolus of r tibia, 7thD|Disp fx of med malleolus of r tibia, 7thD +C2863295|T037|AB|S82.51XE|ICD10CM|Disp fx of med malleolus of r tibia, 7thE|Disp fx of med malleolus of r tibia, 7thE +C2863296|T037|AB|S82.51XF|ICD10CM|Disp fx of med malleolus of r tibia, 7thF|Disp fx of med malleolus of r tibia, 7thF +C2863297|T037|AB|S82.51XG|ICD10CM|Disp fx of med malleolus of r tibia, 7thG|Disp fx of med malleolus of r tibia, 7thG +C2863298|T037|AB|S82.51XH|ICD10CM|Disp fx of med malleolus of r tibia, 7thH|Disp fx of med malleolus of r tibia, 7thH +C2863299|T037|AB|S82.51XJ|ICD10CM|Disp fx of med malleolus of r tibia, 7thJ|Disp fx of med malleolus of r tibia, 7thJ +C2863300|T037|AB|S82.51XK|ICD10CM|Disp fx of med malleolus of r tibia, 7thK|Disp fx of med malleolus of r tibia, 7thK +C2863301|T037|AB|S82.51XM|ICD10CM|Disp fx of med malleolus of r tibia, 7thM|Disp fx of med malleolus of r tibia, 7thM +C2863302|T037|AB|S82.51XN|ICD10CM|Disp fx of med malleolus of r tibia, 7thN|Disp fx of med malleolus of r tibia, 7thN +C2863303|T037|AB|S82.51XP|ICD10CM|Disp fx of med malleolus of r tibia, 7thP|Disp fx of med malleolus of r tibia, 7thP +C2863304|T037|AB|S82.51XQ|ICD10CM|Disp fx of med malleolus of r tibia, 7thQ|Disp fx of med malleolus of r tibia, 7thQ +C2863305|T037|AB|S82.51XR|ICD10CM|Disp fx of med malleolus of r tibia, 7thR|Disp fx of med malleolus of r tibia, 7thR +C2863306|T037|AB|S82.51XS|ICD10CM|Disp fx of medial malleolus of right tibia, sequela|Disp fx of medial malleolus of right tibia, sequela +C2863306|T037|PT|S82.51XS|ICD10CM|Displaced fracture of medial malleolus of right tibia, sequela|Displaced fracture of medial malleolus of right tibia, sequela +C2863307|T037|AB|S82.52|ICD10CM|Displaced fracture of medial malleolus of left tibia|Displaced fracture of medial malleolus of left tibia +C2863307|T037|HT|S82.52|ICD10CM|Displaced fracture of medial malleolus of left tibia|Displaced fracture of medial malleolus of left tibia +C2863308|T037|AB|S82.52XA|ICD10CM|Disp fx of medial malleolus of left tibia, init for clos fx|Disp fx of medial malleolus of left tibia, init for clos fx +C2863308|T037|PT|S82.52XA|ICD10CM|Displaced fracture of medial malleolus of left tibia, initial encounter for closed fracture|Displaced fracture of medial malleolus of left tibia, initial encounter for closed fracture +C2863309|T037|AB|S82.52XB|ICD10CM|Disp fx of med malleolus of l tibia, 7thB|Disp fx of med malleolus of l tibia, 7thB +C2863310|T037|AB|S82.52XC|ICD10CM|Disp fx of med malleolus of l tibia, 7thC|Disp fx of med malleolus of l tibia, 7thC +C2863311|T037|AB|S82.52XD|ICD10CM|Disp fx of med malleolus of l tibia, 7thD|Disp fx of med malleolus of l tibia, 7thD +C2863312|T037|AB|S82.52XE|ICD10CM|Disp fx of med malleolus of l tibia, 7thE|Disp fx of med malleolus of l tibia, 7thE +C2863313|T037|AB|S82.52XF|ICD10CM|Disp fx of med malleolus of l tibia, 7thF|Disp fx of med malleolus of l tibia, 7thF +C2863314|T037|AB|S82.52XG|ICD10CM|Disp fx of med malleolus of l tibia, 7thG|Disp fx of med malleolus of l tibia, 7thG +C2863315|T037|AB|S82.52XH|ICD10CM|Disp fx of med malleolus of l tibia, 7thH|Disp fx of med malleolus of l tibia, 7thH +C2863316|T037|AB|S82.52XJ|ICD10CM|Disp fx of med malleolus of l tibia, 7thJ|Disp fx of med malleolus of l tibia, 7thJ +C2863317|T037|AB|S82.52XK|ICD10CM|Disp fx of med malleolus of l tibia, 7thK|Disp fx of med malleolus of l tibia, 7thK +C2863318|T037|AB|S82.52XM|ICD10CM|Disp fx of med malleolus of l tibia, 7thM|Disp fx of med malleolus of l tibia, 7thM +C2863319|T037|AB|S82.52XN|ICD10CM|Disp fx of med malleolus of l tibia, 7thN|Disp fx of med malleolus of l tibia, 7thN +C2863320|T037|AB|S82.52XP|ICD10CM|Disp fx of med malleolus of l tibia, 7thP|Disp fx of med malleolus of l tibia, 7thP +C2863321|T037|AB|S82.52XQ|ICD10CM|Disp fx of med malleolus of l tibia, 7thQ|Disp fx of med malleolus of l tibia, 7thQ +C2863322|T037|AB|S82.52XR|ICD10CM|Disp fx of med malleolus of l tibia, 7thR|Disp fx of med malleolus of l tibia, 7thR +C2863323|T037|AB|S82.52XS|ICD10CM|Disp fx of medial malleolus of left tibia, sequela|Disp fx of medial malleolus of left tibia, sequela +C2863323|T037|PT|S82.52XS|ICD10CM|Displaced fracture of medial malleolus of left tibia, sequela|Displaced fracture of medial malleolus of left tibia, sequela +C2863324|T037|AB|S82.53|ICD10CM|Displaced fracture of medial malleolus of unspecified tibia|Displaced fracture of medial malleolus of unspecified tibia +C2863324|T037|HT|S82.53|ICD10CM|Displaced fracture of medial malleolus of unspecified tibia|Displaced fracture of medial malleolus of unspecified tibia +C2863325|T037|AB|S82.53XA|ICD10CM|Disp fx of medial malleolus of unsp tibia, init for clos fx|Disp fx of medial malleolus of unsp tibia, init for clos fx +C2863325|T037|PT|S82.53XA|ICD10CM|Displaced fracture of medial malleolus of unspecified tibia, initial encounter for closed fracture|Displaced fracture of medial malleolus of unspecified tibia, initial encounter for closed fracture +C2863326|T037|AB|S82.53XB|ICD10CM|Disp fx of med malleolus of unsp tibia, 7thB|Disp fx of med malleolus of unsp tibia, 7thB +C2863327|T037|AB|S82.53XC|ICD10CM|Disp fx of med malleolus of unsp tibia, 7thC|Disp fx of med malleolus of unsp tibia, 7thC +C2863328|T037|AB|S82.53XD|ICD10CM|Disp fx of med malleolus of unsp tibia, 7thD|Disp fx of med malleolus of unsp tibia, 7thD +C2863329|T037|AB|S82.53XE|ICD10CM|Disp fx of med malleolus of unsp tibia, 7thE|Disp fx of med malleolus of unsp tibia, 7thE +C2863330|T037|AB|S82.53XF|ICD10CM|Disp fx of med malleolus of unsp tibia, 7thF|Disp fx of med malleolus of unsp tibia, 7thF +C2863331|T037|AB|S82.53XG|ICD10CM|Disp fx of med malleolus of unsp tibia, 7thG|Disp fx of med malleolus of unsp tibia, 7thG +C2863332|T037|AB|S82.53XH|ICD10CM|Disp fx of med malleolus of unsp tibia, 7thH|Disp fx of med malleolus of unsp tibia, 7thH +C2863333|T037|AB|S82.53XJ|ICD10CM|Disp fx of med malleolus of unsp tibia, 7thJ|Disp fx of med malleolus of unsp tibia, 7thJ +C2863334|T037|AB|S82.53XK|ICD10CM|Disp fx of med malleolus of unsp tibia, 7thK|Disp fx of med malleolus of unsp tibia, 7thK +C2863335|T037|AB|S82.53XM|ICD10CM|Disp fx of med malleolus of unsp tibia, 7thM|Disp fx of med malleolus of unsp tibia, 7thM +C2863336|T037|AB|S82.53XN|ICD10CM|Disp fx of med malleolus of unsp tibia, 7thN|Disp fx of med malleolus of unsp tibia, 7thN +C2863337|T037|AB|S82.53XP|ICD10CM|Disp fx of med malleolus of unsp tibia, 7thP|Disp fx of med malleolus of unsp tibia, 7thP +C2863338|T037|AB|S82.53XQ|ICD10CM|Disp fx of med malleolus of unsp tibia, 7thQ|Disp fx of med malleolus of unsp tibia, 7thQ +C2863339|T037|AB|S82.53XR|ICD10CM|Disp fx of med malleolus of unsp tibia, 7thR|Disp fx of med malleolus of unsp tibia, 7thR +C2863340|T037|AB|S82.53XS|ICD10CM|Disp fx of medial malleolus of unspecified tibia, sequela|Disp fx of medial malleolus of unspecified tibia, sequela +C2863340|T037|PT|S82.53XS|ICD10CM|Displaced fracture of medial malleolus of unspecified tibia, sequela|Displaced fracture of medial malleolus of unspecified tibia, sequela +C2863341|T037|AB|S82.54|ICD10CM|Nondisplaced fracture of medial malleolus of right tibia|Nondisplaced fracture of medial malleolus of right tibia +C2863341|T037|HT|S82.54|ICD10CM|Nondisplaced fracture of medial malleolus of right tibia|Nondisplaced fracture of medial malleolus of right tibia +C2863342|T037|AB|S82.54XA|ICD10CM|Nondisp fx of medial malleolus of right tibia, init|Nondisp fx of medial malleolus of right tibia, init +C2863342|T037|PT|S82.54XA|ICD10CM|Nondisplaced fracture of medial malleolus of right tibia, initial encounter for closed fracture|Nondisplaced fracture of medial malleolus of right tibia, initial encounter for closed fracture +C2863343|T037|AB|S82.54XB|ICD10CM|Nondisp fx of med malleolus of r tibia, 7thB|Nondisp fx of med malleolus of r tibia, 7thB +C2863344|T037|AB|S82.54XC|ICD10CM|Nondisp fx of med malleolus of r tibia, 7thC|Nondisp fx of med malleolus of r tibia, 7thC +C2863345|T037|AB|S82.54XD|ICD10CM|Nondisp fx of med malleolus of r tibia, 7thD|Nondisp fx of med malleolus of r tibia, 7thD +C2863346|T037|AB|S82.54XE|ICD10CM|Nondisp fx of med malleolus of r tibia, 7thE|Nondisp fx of med malleolus of r tibia, 7thE +C2863347|T037|AB|S82.54XF|ICD10CM|Nondisp fx of med malleolus of r tibia, 7thF|Nondisp fx of med malleolus of r tibia, 7thF +C2863348|T037|AB|S82.54XG|ICD10CM|Nondisp fx of med malleolus of r tibia, 7thG|Nondisp fx of med malleolus of r tibia, 7thG +C2863349|T037|AB|S82.54XH|ICD10CM|Nondisp fx of med malleolus of r tibia, 7thH|Nondisp fx of med malleolus of r tibia, 7thH +C2863350|T037|AB|S82.54XJ|ICD10CM|Nondisp fx of med malleolus of r tibia, 7thJ|Nondisp fx of med malleolus of r tibia, 7thJ +C2863351|T037|AB|S82.54XK|ICD10CM|Nondisp fx of med malleolus of r tibia, 7thK|Nondisp fx of med malleolus of r tibia, 7thK +C2863352|T037|AB|S82.54XM|ICD10CM|Nondisp fx of med malleolus of r tibia, 7thM|Nondisp fx of med malleolus of r tibia, 7thM +C2863353|T037|AB|S82.54XN|ICD10CM|Nondisp fx of med malleolus of r tibia, 7thN|Nondisp fx of med malleolus of r tibia, 7thN +C2863354|T037|AB|S82.54XP|ICD10CM|Nondisp fx of med malleolus of r tibia, 7thP|Nondisp fx of med malleolus of r tibia, 7thP +C2863355|T037|AB|S82.54XQ|ICD10CM|Nondisp fx of med malleolus of r tibia, 7thQ|Nondisp fx of med malleolus of r tibia, 7thQ +C2863356|T037|AB|S82.54XR|ICD10CM|Nondisp fx of med malleolus of r tibia, 7thR|Nondisp fx of med malleolus of r tibia, 7thR +C2863357|T037|AB|S82.54XS|ICD10CM|Nondisp fx of medial malleolus of right tibia, sequela|Nondisp fx of medial malleolus of right tibia, sequela +C2863357|T037|PT|S82.54XS|ICD10CM|Nondisplaced fracture of medial malleolus of right tibia, sequela|Nondisplaced fracture of medial malleolus of right tibia, sequela +C2863358|T037|AB|S82.55|ICD10CM|Nondisplaced fracture of medial malleolus of left tibia|Nondisplaced fracture of medial malleolus of left tibia +C2863358|T037|HT|S82.55|ICD10CM|Nondisplaced fracture of medial malleolus of left tibia|Nondisplaced fracture of medial malleolus of left tibia +C2863359|T037|AB|S82.55XA|ICD10CM|Nondisp fx of medial malleolus of left tibia, init|Nondisp fx of medial malleolus of left tibia, init +C2863359|T037|PT|S82.55XA|ICD10CM|Nondisplaced fracture of medial malleolus of left tibia, initial encounter for closed fracture|Nondisplaced fracture of medial malleolus of left tibia, initial encounter for closed fracture +C2863360|T037|AB|S82.55XB|ICD10CM|Nondisp fx of med malleolus of l tibia, 7thB|Nondisp fx of med malleolus of l tibia, 7thB +C2863361|T037|AB|S82.55XC|ICD10CM|Nondisp fx of med malleolus of l tibia, 7thC|Nondisp fx of med malleolus of l tibia, 7thC +C2863362|T037|AB|S82.55XD|ICD10CM|Nondisp fx of med malleolus of l tibia, 7thD|Nondisp fx of med malleolus of l tibia, 7thD +C2863363|T037|AB|S82.55XE|ICD10CM|Nondisp fx of med malleolus of l tibia, 7thE|Nondisp fx of med malleolus of l tibia, 7thE +C2863364|T037|AB|S82.55XF|ICD10CM|Nondisp fx of med malleolus of l tibia, 7thF|Nondisp fx of med malleolus of l tibia, 7thF +C2863365|T037|AB|S82.55XG|ICD10CM|Nondisp fx of med malleolus of l tibia, 7thG|Nondisp fx of med malleolus of l tibia, 7thG +C2863366|T037|AB|S82.55XH|ICD10CM|Nondisp fx of med malleolus of l tibia, 7thH|Nondisp fx of med malleolus of l tibia, 7thH +C2863367|T037|AB|S82.55XJ|ICD10CM|Nondisp fx of med malleolus of l tibia, 7thJ|Nondisp fx of med malleolus of l tibia, 7thJ +C2863368|T037|AB|S82.55XK|ICD10CM|Nondisp fx of med malleolus of l tibia, 7thK|Nondisp fx of med malleolus of l tibia, 7thK +C2863369|T037|AB|S82.55XM|ICD10CM|Nondisp fx of med malleolus of l tibia, 7thM|Nondisp fx of med malleolus of l tibia, 7thM +C2863370|T037|AB|S82.55XN|ICD10CM|Nondisp fx of med malleolus of l tibia, 7thN|Nondisp fx of med malleolus of l tibia, 7thN +C2863371|T037|AB|S82.55XP|ICD10CM|Nondisp fx of med malleolus of l tibia, 7thP|Nondisp fx of med malleolus of l tibia, 7thP +C2863372|T037|AB|S82.55XQ|ICD10CM|Nondisp fx of med malleolus of l tibia, 7thQ|Nondisp fx of med malleolus of l tibia, 7thQ +C2863373|T037|AB|S82.55XR|ICD10CM|Nondisp fx of med malleolus of l tibia, 7thR|Nondisp fx of med malleolus of l tibia, 7thR +C2863374|T037|AB|S82.55XS|ICD10CM|Nondisp fx of medial malleolus of left tibia, sequela|Nondisp fx of medial malleolus of left tibia, sequela +C2863374|T037|PT|S82.55XS|ICD10CM|Nondisplaced fracture of medial malleolus of left tibia, sequela|Nondisplaced fracture of medial malleolus of left tibia, sequela +C2863375|T037|AB|S82.56|ICD10CM|Nondisp fx of medial malleolus of unspecified tibia|Nondisp fx of medial malleolus of unspecified tibia +C2863375|T037|HT|S82.56|ICD10CM|Nondisplaced fracture of medial malleolus of unspecified tibia|Nondisplaced fracture of medial malleolus of unspecified tibia +C2863376|T037|AB|S82.56XA|ICD10CM|Nondisp fx of medial malleolus of unsp tibia, init|Nondisp fx of medial malleolus of unsp tibia, init +C2863377|T037|AB|S82.56XB|ICD10CM|Nondisp fx of med malleolus of unsp tibia, 7thB|Nondisp fx of med malleolus of unsp tibia, 7thB +C2863378|T037|AB|S82.56XC|ICD10CM|Nondisp fx of med malleolus of unsp tibia, 7thC|Nondisp fx of med malleolus of unsp tibia, 7thC +C2863379|T037|AB|S82.56XD|ICD10CM|Nondisp fx of med malleolus of unsp tibia, 7thD|Nondisp fx of med malleolus of unsp tibia, 7thD +C2863380|T037|AB|S82.56XE|ICD10CM|Nondisp fx of med malleolus of unsp tibia, 7thE|Nondisp fx of med malleolus of unsp tibia, 7thE +C2863381|T037|AB|S82.56XF|ICD10CM|Nondisp fx of med malleolus of unsp tibia, 7thF|Nondisp fx of med malleolus of unsp tibia, 7thF +C2863382|T037|AB|S82.56XG|ICD10CM|Nondisp fx of med malleolus of unsp tibia, 7thG|Nondisp fx of med malleolus of unsp tibia, 7thG +C2863383|T037|AB|S82.56XH|ICD10CM|Nondisp fx of med malleolus of unsp tibia, 7thH|Nondisp fx of med malleolus of unsp tibia, 7thH +C2863384|T037|AB|S82.56XJ|ICD10CM|Nondisp fx of med malleolus of unsp tibia, 7thJ|Nondisp fx of med malleolus of unsp tibia, 7thJ +C2863385|T037|AB|S82.56XK|ICD10CM|Nondisp fx of med malleolus of unsp tibia, 7thK|Nondisp fx of med malleolus of unsp tibia, 7thK +C2863386|T037|AB|S82.56XM|ICD10CM|Nondisp fx of med malleolus of unsp tibia, 7thM|Nondisp fx of med malleolus of unsp tibia, 7thM +C2863387|T037|AB|S82.56XN|ICD10CM|Nondisp fx of med malleolus of unsp tibia, 7thN|Nondisp fx of med malleolus of unsp tibia, 7thN +C2863388|T037|AB|S82.56XP|ICD10CM|Nondisp fx of med malleolus of unsp tibia, 7thP|Nondisp fx of med malleolus of unsp tibia, 7thP +C2863389|T037|AB|S82.56XQ|ICD10CM|Nondisp fx of med malleolus of unsp tibia, 7thQ|Nondisp fx of med malleolus of unsp tibia, 7thQ +C2863390|T037|AB|S82.56XR|ICD10CM|Nondisp fx of med malleolus of unsp tibia, 7thR|Nondisp fx of med malleolus of unsp tibia, 7thR +C2863391|T037|AB|S82.56XS|ICD10CM|Nondisp fx of medial malleolus of unspecified tibia, sequela|Nondisp fx of medial malleolus of unspecified tibia, sequela +C2863391|T037|PT|S82.56XS|ICD10CM|Nondisplaced fracture of medial malleolus of unspecified tibia, sequela|Nondisplaced fracture of medial malleolus of unspecified tibia, sequela +C0555346|T037|HT|S82.6|ICD10CM|Fracture of lateral malleolus|Fracture of lateral malleolus +C0555346|T037|AB|S82.6|ICD10CM|Fracture of lateral malleolus|Fracture of lateral malleolus +C0555346|T037|PT|S82.6|ICD10|Fracture of lateral malleolus|Fracture of lateral malleolus +C2863392|T037|AB|S82.61|ICD10CM|Displaced fracture of lateral malleolus of right fibula|Displaced fracture of lateral malleolus of right fibula +C2863392|T037|HT|S82.61|ICD10CM|Displaced fracture of lateral malleolus of right fibula|Displaced fracture of lateral malleolus of right fibula +C2863393|T037|AB|S82.61XA|ICD10CM|Disp fx of lateral malleolus of right fibula, init|Disp fx of lateral malleolus of right fibula, init +C2863393|T037|PT|S82.61XA|ICD10CM|Displaced fracture of lateral malleolus of right fibula, initial encounter for closed fracture|Displaced fracture of lateral malleolus of right fibula, initial encounter for closed fracture +C2863394|T037|AB|S82.61XB|ICD10CM|Disp fx of lateral malleolus of r fibula, 7thB|Disp fx of lateral malleolus of r fibula, 7thB +C2863395|T037|AB|S82.61XC|ICD10CM|Disp fx of lateral malleolus of r fibula, 7thC|Disp fx of lateral malleolus of r fibula, 7thC +C2863396|T037|AB|S82.61XD|ICD10CM|Disp fx of lateral malleolus of r fibula, 7thD|Disp fx of lateral malleolus of r fibula, 7thD +C2863397|T037|AB|S82.61XE|ICD10CM|Disp fx of lateral malleolus of r fibula, 7thE|Disp fx of lateral malleolus of r fibula, 7thE +C2863398|T037|AB|S82.61XF|ICD10CM|Disp fx of lateral malleolus of r fibula, 7thF|Disp fx of lateral malleolus of r fibula, 7thF +C2863399|T037|AB|S82.61XG|ICD10CM|Disp fx of lateral malleolus of r fibula, 7thG|Disp fx of lateral malleolus of r fibula, 7thG +C2863400|T037|AB|S82.61XH|ICD10CM|Disp fx of lateral malleolus of r fibula, 7thH|Disp fx of lateral malleolus of r fibula, 7thH +C2863401|T037|AB|S82.61XJ|ICD10CM|Disp fx of lateral malleolus of r fibula, 7thJ|Disp fx of lateral malleolus of r fibula, 7thJ +C2863402|T037|AB|S82.61XK|ICD10CM|Disp fx of lateral malleolus of r fibula, 7thK|Disp fx of lateral malleolus of r fibula, 7thK +C2863403|T037|AB|S82.61XM|ICD10CM|Disp fx of lateral malleolus of r fibula, 7thM|Disp fx of lateral malleolus of r fibula, 7thM +C2863404|T037|AB|S82.61XN|ICD10CM|Disp fx of lateral malleolus of r fibula, 7thN|Disp fx of lateral malleolus of r fibula, 7thN +C2863405|T037|AB|S82.61XP|ICD10CM|Disp fx of lateral malleolus of r fibula, 7thP|Disp fx of lateral malleolus of r fibula, 7thP +C2863406|T037|AB|S82.61XQ|ICD10CM|Disp fx of lateral malleolus of r fibula, 7thQ|Disp fx of lateral malleolus of r fibula, 7thQ +C2863407|T037|AB|S82.61XR|ICD10CM|Disp fx of lateral malleolus of r fibula, 7thR|Disp fx of lateral malleolus of r fibula, 7thR +C2863408|T037|AB|S82.61XS|ICD10CM|Disp fx of lateral malleolus of right fibula, sequela|Disp fx of lateral malleolus of right fibula, sequela +C2863408|T037|PT|S82.61XS|ICD10CM|Displaced fracture of lateral malleolus of right fibula, sequela|Displaced fracture of lateral malleolus of right fibula, sequela +C2863409|T037|AB|S82.62|ICD10CM|Displaced fracture of lateral malleolus of left fibula|Displaced fracture of lateral malleolus of left fibula +C2863409|T037|HT|S82.62|ICD10CM|Displaced fracture of lateral malleolus of left fibula|Displaced fracture of lateral malleolus of left fibula +C2863410|T037|AB|S82.62XA|ICD10CM|Disp fx of lateral malleolus of left fibula, init|Disp fx of lateral malleolus of left fibula, init +C2863410|T037|PT|S82.62XA|ICD10CM|Displaced fracture of lateral malleolus of left fibula, initial encounter for closed fracture|Displaced fracture of lateral malleolus of left fibula, initial encounter for closed fracture +C2863411|T037|AB|S82.62XB|ICD10CM|Disp fx of lateral malleolus of l fibula, 7thB|Disp fx of lateral malleolus of l fibula, 7thB +C2863412|T037|AB|S82.62XC|ICD10CM|Disp fx of lateral malleolus of l fibula, 7thC|Disp fx of lateral malleolus of l fibula, 7thC +C2863413|T037|AB|S82.62XD|ICD10CM|Disp fx of lateral malleolus of l fibula, 7thD|Disp fx of lateral malleolus of l fibula, 7thD +C2863414|T037|AB|S82.62XE|ICD10CM|Disp fx of lateral malleolus of l fibula, 7thE|Disp fx of lateral malleolus of l fibula, 7thE +C2863415|T037|AB|S82.62XF|ICD10CM|Disp fx of lateral malleolus of l fibula, 7thF|Disp fx of lateral malleolus of l fibula, 7thF +C2863416|T037|AB|S82.62XG|ICD10CM|Disp fx of lateral malleolus of l fibula, 7thG|Disp fx of lateral malleolus of l fibula, 7thG +C2863417|T037|AB|S82.62XH|ICD10CM|Disp fx of lateral malleolus of l fibula, 7thH|Disp fx of lateral malleolus of l fibula, 7thH +C2863418|T037|AB|S82.62XJ|ICD10CM|Disp fx of lateral malleolus of l fibula, 7thJ|Disp fx of lateral malleolus of l fibula, 7thJ +C2863419|T037|AB|S82.62XK|ICD10CM|Disp fx of lateral malleolus of l fibula, 7thK|Disp fx of lateral malleolus of l fibula, 7thK +C2863420|T037|AB|S82.62XM|ICD10CM|Disp fx of lateral malleolus of l fibula, 7thM|Disp fx of lateral malleolus of l fibula, 7thM +C2863421|T037|AB|S82.62XN|ICD10CM|Disp fx of lateral malleolus of l fibula, 7thN|Disp fx of lateral malleolus of l fibula, 7thN +C2863422|T037|AB|S82.62XP|ICD10CM|Disp fx of lateral malleolus of l fibula, 7thP|Disp fx of lateral malleolus of l fibula, 7thP +C2863423|T037|AB|S82.62XQ|ICD10CM|Disp fx of lateral malleolus of l fibula, 7thQ|Disp fx of lateral malleolus of l fibula, 7thQ +C2863424|T037|AB|S82.62XR|ICD10CM|Disp fx of lateral malleolus of l fibula, 7thR|Disp fx of lateral malleolus of l fibula, 7thR +C2863425|T037|AB|S82.62XS|ICD10CM|Disp fx of lateral malleolus of left fibula, sequela|Disp fx of lateral malleolus of left fibula, sequela +C2863425|T037|PT|S82.62XS|ICD10CM|Displaced fracture of lateral malleolus of left fibula, sequela|Displaced fracture of lateral malleolus of left fibula, sequela +C2863426|T037|AB|S82.63|ICD10CM|Disp fx of lateral malleolus of unspecified fibula|Disp fx of lateral malleolus of unspecified fibula +C2863426|T037|HT|S82.63|ICD10CM|Displaced fracture of lateral malleolus of unspecified fibula|Displaced fracture of lateral malleolus of unspecified fibula +C2863427|T037|AB|S82.63XA|ICD10CM|Disp fx of lateral malleolus of unsp fibula, init|Disp fx of lateral malleolus of unsp fibula, init +C2863427|T037|PT|S82.63XA|ICD10CM|Displaced fracture of lateral malleolus of unspecified fibula, initial encounter for closed fracture|Displaced fracture of lateral malleolus of unspecified fibula, initial encounter for closed fracture +C2863428|T037|AB|S82.63XB|ICD10CM|Disp fx of lateral malleolus of unsp fibula, 7thB|Disp fx of lateral malleolus of unsp fibula, 7thB +C2863429|T037|AB|S82.63XC|ICD10CM|Disp fx of lateral malleolus of unsp fibula, 7thC|Disp fx of lateral malleolus of unsp fibula, 7thC +C2863430|T037|AB|S82.63XD|ICD10CM|Disp fx of lateral malleolus of unsp fibula, 7thD|Disp fx of lateral malleolus of unsp fibula, 7thD +C2863431|T037|AB|S82.63XE|ICD10CM|Disp fx of lateral malleolus of unsp fibula, 7thE|Disp fx of lateral malleolus of unsp fibula, 7thE +C2863432|T037|AB|S82.63XF|ICD10CM|Disp fx of lateral malleolus of unsp fibula, 7thF|Disp fx of lateral malleolus of unsp fibula, 7thF +C2863433|T037|AB|S82.63XG|ICD10CM|Disp fx of lateral malleolus of unsp fibula, 7thG|Disp fx of lateral malleolus of unsp fibula, 7thG +C2863434|T037|AB|S82.63XH|ICD10CM|Disp fx of lateral malleolus of unsp fibula, 7thH|Disp fx of lateral malleolus of unsp fibula, 7thH +C2863435|T037|AB|S82.63XJ|ICD10CM|Disp fx of lateral malleolus of unsp fibula, 7thJ|Disp fx of lateral malleolus of unsp fibula, 7thJ +C2863436|T037|AB|S82.63XK|ICD10CM|Disp fx of lateral malleolus of unsp fibula, 7thK|Disp fx of lateral malleolus of unsp fibula, 7thK +C2863437|T037|AB|S82.63XM|ICD10CM|Disp fx of lateral malleolus of unsp fibula, 7thM|Disp fx of lateral malleolus of unsp fibula, 7thM +C2863438|T037|AB|S82.63XN|ICD10CM|Disp fx of lateral malleolus of unsp fibula, 7thN|Disp fx of lateral malleolus of unsp fibula, 7thN +C2863439|T037|AB|S82.63XP|ICD10CM|Disp fx of lateral malleolus of unsp fibula, 7thP|Disp fx of lateral malleolus of unsp fibula, 7thP +C2863440|T037|AB|S82.63XQ|ICD10CM|Disp fx of lateral malleolus of unsp fibula, 7thQ|Disp fx of lateral malleolus of unsp fibula, 7thQ +C2863441|T037|AB|S82.63XR|ICD10CM|Disp fx of lateral malleolus of unsp fibula, 7thR|Disp fx of lateral malleolus of unsp fibula, 7thR +C2863442|T037|AB|S82.63XS|ICD10CM|Disp fx of lateral malleolus of unspecified fibula, sequela|Disp fx of lateral malleolus of unspecified fibula, sequela +C2863442|T037|PT|S82.63XS|ICD10CM|Displaced fracture of lateral malleolus of unspecified fibula, sequela|Displaced fracture of lateral malleolus of unspecified fibula, sequela +C2863443|T037|AB|S82.64|ICD10CM|Nondisplaced fracture of lateral malleolus of right fibula|Nondisplaced fracture of lateral malleolus of right fibula +C2863443|T037|HT|S82.64|ICD10CM|Nondisplaced fracture of lateral malleolus of right fibula|Nondisplaced fracture of lateral malleolus of right fibula +C2863444|T037|AB|S82.64XA|ICD10CM|Nondisp fx of lateral malleolus of right fibula, init|Nondisp fx of lateral malleolus of right fibula, init +C2863444|T037|PT|S82.64XA|ICD10CM|Nondisplaced fracture of lateral malleolus of right fibula, initial encounter for closed fracture|Nondisplaced fracture of lateral malleolus of right fibula, initial encounter for closed fracture +C2863445|T037|AB|S82.64XB|ICD10CM|Nondisp fx of lateral malleolus of r fibula, 7thB|Nondisp fx of lateral malleolus of r fibula, 7thB +C2863446|T037|AB|S82.64XC|ICD10CM|Nondisp fx of lateral malleolus of r fibula, 7thC|Nondisp fx of lateral malleolus of r fibula, 7thC +C2863447|T037|AB|S82.64XD|ICD10CM|Nondisp fx of lateral malleolus of r fibula, 7thD|Nondisp fx of lateral malleolus of r fibula, 7thD +C2863448|T037|AB|S82.64XE|ICD10CM|Nondisp fx of lateral malleolus of r fibula, 7thE|Nondisp fx of lateral malleolus of r fibula, 7thE +C2863449|T037|AB|S82.64XF|ICD10CM|Nondisp fx of lateral malleolus of r fibula, 7thF|Nondisp fx of lateral malleolus of r fibula, 7thF +C2863450|T037|AB|S82.64XG|ICD10CM|Nondisp fx of lateral malleolus of r fibula, 7thG|Nondisp fx of lateral malleolus of r fibula, 7thG +C2863451|T037|AB|S82.64XH|ICD10CM|Nondisp fx of lateral malleolus of r fibula, 7thH|Nondisp fx of lateral malleolus of r fibula, 7thH +C2863452|T037|AB|S82.64XJ|ICD10CM|Nondisp fx of lateral malleolus of r fibula, 7thJ|Nondisp fx of lateral malleolus of r fibula, 7thJ +C2863453|T037|AB|S82.64XK|ICD10CM|Nondisp fx of lateral malleolus of r fibula, 7thK|Nondisp fx of lateral malleolus of r fibula, 7thK +C2863454|T037|AB|S82.64XM|ICD10CM|Nondisp fx of lateral malleolus of r fibula, 7thM|Nondisp fx of lateral malleolus of r fibula, 7thM +C2863455|T037|AB|S82.64XN|ICD10CM|Nondisp fx of lateral malleolus of r fibula, 7thN|Nondisp fx of lateral malleolus of r fibula, 7thN +C2863456|T037|AB|S82.64XP|ICD10CM|Nondisp fx of lateral malleolus of r fibula, 7thP|Nondisp fx of lateral malleolus of r fibula, 7thP +C2863457|T037|AB|S82.64XQ|ICD10CM|Nondisp fx of lateral malleolus of r fibula, 7thQ|Nondisp fx of lateral malleolus of r fibula, 7thQ +C2863458|T037|AB|S82.64XR|ICD10CM|Nondisp fx of lateral malleolus of r fibula, 7thR|Nondisp fx of lateral malleolus of r fibula, 7thR +C2863459|T037|AB|S82.64XS|ICD10CM|Nondisp fx of lateral malleolus of right fibula, sequela|Nondisp fx of lateral malleolus of right fibula, sequela +C2863459|T037|PT|S82.64XS|ICD10CM|Nondisplaced fracture of lateral malleolus of right fibula, sequela|Nondisplaced fracture of lateral malleolus of right fibula, sequela +C2863460|T037|AB|S82.65|ICD10CM|Nondisplaced fracture of lateral malleolus of left fibula|Nondisplaced fracture of lateral malleolus of left fibula +C2863460|T037|HT|S82.65|ICD10CM|Nondisplaced fracture of lateral malleolus of left fibula|Nondisplaced fracture of lateral malleolus of left fibula +C2863461|T037|AB|S82.65XA|ICD10CM|Nondisp fx of lateral malleolus of left fibula, init|Nondisp fx of lateral malleolus of left fibula, init +C2863461|T037|PT|S82.65XA|ICD10CM|Nondisplaced fracture of lateral malleolus of left fibula, initial encounter for closed fracture|Nondisplaced fracture of lateral malleolus of left fibula, initial encounter for closed fracture +C2863462|T037|AB|S82.65XB|ICD10CM|Nondisp fx of lateral malleolus of l fibula, 7thB|Nondisp fx of lateral malleolus of l fibula, 7thB +C2863463|T037|AB|S82.65XC|ICD10CM|Nondisp fx of lateral malleolus of l fibula, 7thC|Nondisp fx of lateral malleolus of l fibula, 7thC +C2863464|T037|AB|S82.65XD|ICD10CM|Nondisp fx of lateral malleolus of l fibula, 7thD|Nondisp fx of lateral malleolus of l fibula, 7thD +C2863465|T037|AB|S82.65XE|ICD10CM|Nondisp fx of lateral malleolus of l fibula, 7thE|Nondisp fx of lateral malleolus of l fibula, 7thE +C2863466|T037|AB|S82.65XF|ICD10CM|Nondisp fx of lateral malleolus of l fibula, 7thF|Nondisp fx of lateral malleolus of l fibula, 7thF +C2863467|T037|AB|S82.65XG|ICD10CM|Nondisp fx of lateral malleolus of l fibula, 7thG|Nondisp fx of lateral malleolus of l fibula, 7thG +C2863468|T037|AB|S82.65XH|ICD10CM|Nondisp fx of lateral malleolus of l fibula, 7thH|Nondisp fx of lateral malleolus of l fibula, 7thH +C2863469|T037|AB|S82.65XJ|ICD10CM|Nondisp fx of lateral malleolus of l fibula, 7thJ|Nondisp fx of lateral malleolus of l fibula, 7thJ +C2863470|T037|AB|S82.65XK|ICD10CM|Nondisp fx of lateral malleolus of l fibula, 7thK|Nondisp fx of lateral malleolus of l fibula, 7thK +C2863471|T037|AB|S82.65XM|ICD10CM|Nondisp fx of lateral malleolus of l fibula, 7thM|Nondisp fx of lateral malleolus of l fibula, 7thM +C2863472|T037|AB|S82.65XN|ICD10CM|Nondisp fx of lateral malleolus of l fibula, 7thN|Nondisp fx of lateral malleolus of l fibula, 7thN +C2863473|T037|AB|S82.65XP|ICD10CM|Nondisp fx of lateral malleolus of l fibula, 7thP|Nondisp fx of lateral malleolus of l fibula, 7thP +C2863474|T037|AB|S82.65XQ|ICD10CM|Nondisp fx of lateral malleolus of l fibula, 7thQ|Nondisp fx of lateral malleolus of l fibula, 7thQ +C2863475|T037|AB|S82.65XR|ICD10CM|Nondisp fx of lateral malleolus of l fibula, 7thR|Nondisp fx of lateral malleolus of l fibula, 7thR +C2863476|T037|AB|S82.65XS|ICD10CM|Nondisp fx of lateral malleolus of left fibula, sequela|Nondisp fx of lateral malleolus of left fibula, sequela +C2863476|T037|PT|S82.65XS|ICD10CM|Nondisplaced fracture of lateral malleolus of left fibula, sequela|Nondisplaced fracture of lateral malleolus of left fibula, sequela +C2863477|T037|AB|S82.66|ICD10CM|Nondisp fx of lateral malleolus of unspecified fibula|Nondisp fx of lateral malleolus of unspecified fibula +C2863477|T037|HT|S82.66|ICD10CM|Nondisplaced fracture of lateral malleolus of unspecified fibula|Nondisplaced fracture of lateral malleolus of unspecified fibula +C2863478|T037|AB|S82.66XA|ICD10CM|Nondisp fx of lateral malleolus of unsp fibula, init|Nondisp fx of lateral malleolus of unsp fibula, init +C2863479|T037|AB|S82.66XB|ICD10CM|Nondisp fx of lateral malleolus of unsp fibula, 7thB|Nondisp fx of lateral malleolus of unsp fibula, 7thB +C2863480|T037|AB|S82.66XC|ICD10CM|Nondisp fx of lateral malleolus of unsp fibula, 7thC|Nondisp fx of lateral malleolus of unsp fibula, 7thC +C2863481|T037|AB|S82.66XD|ICD10CM|Nondisp fx of lateral malleolus of unsp fibula, 7thD|Nondisp fx of lateral malleolus of unsp fibula, 7thD +C2863482|T037|AB|S82.66XE|ICD10CM|Nondisp fx of lateral malleolus of unsp fibula, 7thE|Nondisp fx of lateral malleolus of unsp fibula, 7thE +C2863483|T037|AB|S82.66XF|ICD10CM|Nondisp fx of lateral malleolus of unsp fibula, 7thF|Nondisp fx of lateral malleolus of unsp fibula, 7thF +C2863484|T037|AB|S82.66XG|ICD10CM|Nondisp fx of lateral malleolus of unsp fibula, 7thG|Nondisp fx of lateral malleolus of unsp fibula, 7thG +C2863485|T037|AB|S82.66XH|ICD10CM|Nondisp fx of lateral malleolus of unsp fibula, 7thH|Nondisp fx of lateral malleolus of unsp fibula, 7thH +C2863486|T037|AB|S82.66XJ|ICD10CM|Nondisp fx of lateral malleolus of unsp fibula, 7thJ|Nondisp fx of lateral malleolus of unsp fibula, 7thJ +C2863487|T037|AB|S82.66XK|ICD10CM|Nondisp fx of lateral malleolus of unsp fibula, 7thK|Nondisp fx of lateral malleolus of unsp fibula, 7thK +C2863488|T037|AB|S82.66XM|ICD10CM|Nondisp fx of lateral malleolus of unsp fibula, 7thM|Nondisp fx of lateral malleolus of unsp fibula, 7thM +C2863489|T037|AB|S82.66XN|ICD10CM|Nondisp fx of lateral malleolus of unsp fibula, 7thN|Nondisp fx of lateral malleolus of unsp fibula, 7thN +C2863490|T037|AB|S82.66XP|ICD10CM|Nondisp fx of lateral malleolus of unsp fibula, 7thP|Nondisp fx of lateral malleolus of unsp fibula, 7thP +C2863491|T037|AB|S82.66XQ|ICD10CM|Nondisp fx of lateral malleolus of unsp fibula, 7thQ|Nondisp fx of lateral malleolus of unsp fibula, 7thQ +C2863492|T037|AB|S82.66XR|ICD10CM|Nondisp fx of lateral malleolus of unsp fibula, 7thR|Nondisp fx of lateral malleolus of unsp fibula, 7thR +C2863493|T037|AB|S82.66XS|ICD10CM|Nondisp fx of lateral malleolus of unsp fibula, sequela|Nondisp fx of lateral malleolus of unsp fibula, sequela +C2863493|T037|PT|S82.66XS|ICD10CM|Nondisplaced fracture of lateral malleolus of unspecified fibula, sequela|Nondisplaced fracture of lateral malleolus of unspecified fibula, sequela +C0452096|T037|PT|S82.7|ICD10|Multiple fractures of lower leg|Multiple fractures of lower leg +C0478336|T037|PT|S82.8|ICD10|Fractures of other parts of lower leg|Fractures of other parts of lower leg +C2863494|T037|HT|S82.8|ICD10CM|Other fractures of lower leg|Other fractures of lower leg +C2863494|T037|AB|S82.8|ICD10CM|Other fractures of lower leg|Other fractures of lower leg +C2863495|T037|AB|S82.81|ICD10CM|Torus fracture of upper end of fibula|Torus fracture of upper end of fibula +C2863495|T037|HT|S82.81|ICD10CM|Torus fracture of upper end of fibula|Torus fracture of upper end of fibula +C2863496|T037|AB|S82.811|ICD10CM|Torus fracture of upper end of right fibula|Torus fracture of upper end of right fibula +C2863496|T037|HT|S82.811|ICD10CM|Torus fracture of upper end of right fibula|Torus fracture of upper end of right fibula +C2863497|T037|AB|S82.811A|ICD10CM|Torus fracture of upper end of right fibula, init|Torus fracture of upper end of right fibula, init +C2863497|T037|PT|S82.811A|ICD10CM|Torus fracture of upper end of right fibula, initial encounter for closed fracture|Torus fracture of upper end of right fibula, initial encounter for closed fracture +C2863498|T037|PT|S82.811D|ICD10CM|Torus fracture of upper end of right fibula, subsequent encounter for fracture with routine healing|Torus fracture of upper end of right fibula, subsequent encounter for fracture with routine healing +C2863498|T037|AB|S82.811D|ICD10CM|Torus fx upper end of r fibula, subs for fx w routn heal|Torus fx upper end of r fibula, subs for fx w routn heal +C2863499|T037|PT|S82.811G|ICD10CM|Torus fracture of upper end of right fibula, subsequent encounter for fracture with delayed healing|Torus fracture of upper end of right fibula, subsequent encounter for fracture with delayed healing +C2863499|T037|AB|S82.811G|ICD10CM|Torus fx upper end of r fibula, subs for fx w delay heal|Torus fx upper end of r fibula, subs for fx w delay heal +C2863500|T037|PT|S82.811K|ICD10CM|Torus fracture of upper end of right fibula, subsequent encounter for fracture with nonunion|Torus fracture of upper end of right fibula, subsequent encounter for fracture with nonunion +C2863500|T037|AB|S82.811K|ICD10CM|Torus fx upper end of r fibula, subs for fx w nonunion|Torus fx upper end of r fibula, subs for fx w nonunion +C2863501|T037|PT|S82.811P|ICD10CM|Torus fracture of upper end of right fibula, subsequent encounter for fracture with malunion|Torus fracture of upper end of right fibula, subsequent encounter for fracture with malunion +C2863501|T037|AB|S82.811P|ICD10CM|Torus fx upper end of r fibula, subs for fx w malunion|Torus fx upper end of r fibula, subs for fx w malunion +C2863502|T037|AB|S82.811S|ICD10CM|Torus fracture of upper end of right fibula, sequela|Torus fracture of upper end of right fibula, sequela +C2863502|T037|PT|S82.811S|ICD10CM|Torus fracture of upper end of right fibula, sequela|Torus fracture of upper end of right fibula, sequela +C2863503|T037|AB|S82.812|ICD10CM|Torus fracture of upper end of left fibula|Torus fracture of upper end of left fibula +C2863503|T037|HT|S82.812|ICD10CM|Torus fracture of upper end of left fibula|Torus fracture of upper end of left fibula +C2863504|T037|AB|S82.812A|ICD10CM|Torus fracture of upper end of left fibula, init for clos fx|Torus fracture of upper end of left fibula, init for clos fx +C2863504|T037|PT|S82.812A|ICD10CM|Torus fracture of upper end of left fibula, initial encounter for closed fracture|Torus fracture of upper end of left fibula, initial encounter for closed fracture +C2863505|T037|PT|S82.812D|ICD10CM|Torus fracture of upper end of left fibula, subsequent encounter for fracture with routine healing|Torus fracture of upper end of left fibula, subsequent encounter for fracture with routine healing +C2863505|T037|AB|S82.812D|ICD10CM|Torus fx upper end of left fibula, subs for fx w routn heal|Torus fx upper end of left fibula, subs for fx w routn heal +C2863506|T037|PT|S82.812G|ICD10CM|Torus fracture of upper end of left fibula, subsequent encounter for fracture with delayed healing|Torus fracture of upper end of left fibula, subsequent encounter for fracture with delayed healing +C2863506|T037|AB|S82.812G|ICD10CM|Torus fx upper end of left fibula, subs for fx w delay heal|Torus fx upper end of left fibula, subs for fx w delay heal +C2863507|T037|PT|S82.812K|ICD10CM|Torus fracture of upper end of left fibula, subsequent encounter for fracture with nonunion|Torus fracture of upper end of left fibula, subsequent encounter for fracture with nonunion +C2863507|T037|AB|S82.812K|ICD10CM|Torus fx upper end of left fibula, subs for fx w nonunion|Torus fx upper end of left fibula, subs for fx w nonunion +C2863508|T037|PT|S82.812P|ICD10CM|Torus fracture of upper end of left fibula, subsequent encounter for fracture with malunion|Torus fracture of upper end of left fibula, subsequent encounter for fracture with malunion +C2863508|T037|AB|S82.812P|ICD10CM|Torus fx upper end of left fibula, subs for fx w malunion|Torus fx upper end of left fibula, subs for fx w malunion +C2863509|T037|AB|S82.812S|ICD10CM|Torus fracture of upper end of left fibula, sequela|Torus fracture of upper end of left fibula, sequela +C2863509|T037|PT|S82.812S|ICD10CM|Torus fracture of upper end of left fibula, sequela|Torus fracture of upper end of left fibula, sequela +C2863510|T037|AB|S82.819|ICD10CM|Torus fracture of upper end of unspecified fibula|Torus fracture of upper end of unspecified fibula +C2863510|T037|HT|S82.819|ICD10CM|Torus fracture of upper end of unspecified fibula|Torus fracture of upper end of unspecified fibula +C2863511|T037|AB|S82.819A|ICD10CM|Torus fracture of upper end of unsp fibula, init for clos fx|Torus fracture of upper end of unsp fibula, init for clos fx +C2863511|T037|PT|S82.819A|ICD10CM|Torus fracture of upper end of unspecified fibula, initial encounter for closed fracture|Torus fracture of upper end of unspecified fibula, initial encounter for closed fracture +C2863512|T037|AB|S82.819D|ICD10CM|Torus fx upper end of unsp fibula, subs for fx w routn heal|Torus fx upper end of unsp fibula, subs for fx w routn heal +C2863513|T037|AB|S82.819G|ICD10CM|Torus fx upper end of unsp fibula, subs for fx w delay heal|Torus fx upper end of unsp fibula, subs for fx w delay heal +C2863514|T037|PT|S82.819K|ICD10CM|Torus fracture of upper end of unspecified fibula, subsequent encounter for fracture with nonunion|Torus fracture of upper end of unspecified fibula, subsequent encounter for fracture with nonunion +C2863514|T037|AB|S82.819K|ICD10CM|Torus fx upper end of unsp fibula, subs for fx w nonunion|Torus fx upper end of unsp fibula, subs for fx w nonunion +C2863515|T037|PT|S82.819P|ICD10CM|Torus fracture of upper end of unspecified fibula, subsequent encounter for fracture with malunion|Torus fracture of upper end of unspecified fibula, subsequent encounter for fracture with malunion +C2863515|T037|AB|S82.819P|ICD10CM|Torus fx upper end of unsp fibula, subs for fx w malunion|Torus fx upper end of unsp fibula, subs for fx w malunion +C2863516|T037|AB|S82.819S|ICD10CM|Torus fracture of upper end of unspecified fibula, sequela|Torus fracture of upper end of unspecified fibula, sequela +C2863516|T037|PT|S82.819S|ICD10CM|Torus fracture of upper end of unspecified fibula, sequela|Torus fracture of upper end of unspecified fibula, sequela +C2863517|T037|AB|S82.82|ICD10CM|Torus fracture of lower end of fibula|Torus fracture of lower end of fibula +C2863517|T037|HT|S82.82|ICD10CM|Torus fracture of lower end of fibula|Torus fracture of lower end of fibula +C2863518|T037|AB|S82.821|ICD10CM|Torus fracture of lower end of right fibula|Torus fracture of lower end of right fibula +C2863518|T037|HT|S82.821|ICD10CM|Torus fracture of lower end of right fibula|Torus fracture of lower end of right fibula +C2863519|T037|AB|S82.821A|ICD10CM|Torus fracture of lower end of right fibula, init|Torus fracture of lower end of right fibula, init +C2863519|T037|PT|S82.821A|ICD10CM|Torus fracture of lower end of right fibula, initial encounter for closed fracture|Torus fracture of lower end of right fibula, initial encounter for closed fracture +C2863520|T037|PT|S82.821D|ICD10CM|Torus fracture of lower end of right fibula, subsequent encounter for fracture with routine healing|Torus fracture of lower end of right fibula, subsequent encounter for fracture with routine healing +C2863520|T037|AB|S82.821D|ICD10CM|Torus fx lower end of r fibula, subs for fx w routn heal|Torus fx lower end of r fibula, subs for fx w routn heal +C2863521|T037|PT|S82.821G|ICD10CM|Torus fracture of lower end of right fibula, subsequent encounter for fracture with delayed healing|Torus fracture of lower end of right fibula, subsequent encounter for fracture with delayed healing +C2863521|T037|AB|S82.821G|ICD10CM|Torus fx lower end of r fibula, subs for fx w delay heal|Torus fx lower end of r fibula, subs for fx w delay heal +C2863522|T037|PT|S82.821K|ICD10CM|Torus fracture of lower end of right fibula, subsequent encounter for fracture with nonunion|Torus fracture of lower end of right fibula, subsequent encounter for fracture with nonunion +C2863522|T037|AB|S82.821K|ICD10CM|Torus fx lower end of r fibula, subs for fx w nonunion|Torus fx lower end of r fibula, subs for fx w nonunion +C2863523|T037|PT|S82.821P|ICD10CM|Torus fracture of lower end of right fibula, subsequent encounter for fracture with malunion|Torus fracture of lower end of right fibula, subsequent encounter for fracture with malunion +C2863523|T037|AB|S82.821P|ICD10CM|Torus fx lower end of r fibula, subs for fx w malunion|Torus fx lower end of r fibula, subs for fx w malunion +C2863524|T037|AB|S82.821S|ICD10CM|Torus fracture of lower end of right fibula, sequela|Torus fracture of lower end of right fibula, sequela +C2863524|T037|PT|S82.821S|ICD10CM|Torus fracture of lower end of right fibula, sequela|Torus fracture of lower end of right fibula, sequela +C2863525|T037|AB|S82.822|ICD10CM|Torus fracture of lower end of left fibula|Torus fracture of lower end of left fibula +C2863525|T037|HT|S82.822|ICD10CM|Torus fracture of lower end of left fibula|Torus fracture of lower end of left fibula +C2863526|T037|AB|S82.822A|ICD10CM|Torus fracture of lower end of left fibula, init for clos fx|Torus fracture of lower end of left fibula, init for clos fx +C2863526|T037|PT|S82.822A|ICD10CM|Torus fracture of lower end of left fibula, initial encounter for closed fracture|Torus fracture of lower end of left fibula, initial encounter for closed fracture +C2863527|T037|PT|S82.822D|ICD10CM|Torus fracture of lower end of left fibula, subsequent encounter for fracture with routine healing|Torus fracture of lower end of left fibula, subsequent encounter for fracture with routine healing +C2863527|T037|AB|S82.822D|ICD10CM|Torus fx lower end of left fibula, subs for fx w routn heal|Torus fx lower end of left fibula, subs for fx w routn heal +C2863528|T037|PT|S82.822G|ICD10CM|Torus fracture of lower end of left fibula, subsequent encounter for fracture with delayed healing|Torus fracture of lower end of left fibula, subsequent encounter for fracture with delayed healing +C2863528|T037|AB|S82.822G|ICD10CM|Torus fx lower end of left fibula, subs for fx w delay heal|Torus fx lower end of left fibula, subs for fx w delay heal +C2863529|T037|PT|S82.822K|ICD10CM|Torus fracture of lower end of left fibula, subsequent encounter for fracture with nonunion|Torus fracture of lower end of left fibula, subsequent encounter for fracture with nonunion +C2863529|T037|AB|S82.822K|ICD10CM|Torus fx lower end of left fibula, subs for fx w nonunion|Torus fx lower end of left fibula, subs for fx w nonunion +C2863530|T037|PT|S82.822P|ICD10CM|Torus fracture of lower end of left fibula, subsequent encounter for fracture with malunion|Torus fracture of lower end of left fibula, subsequent encounter for fracture with malunion +C2863530|T037|AB|S82.822P|ICD10CM|Torus fx lower end of left fibula, subs for fx w malunion|Torus fx lower end of left fibula, subs for fx w malunion +C2863531|T037|AB|S82.822S|ICD10CM|Torus fracture of lower end of left fibula, sequela|Torus fracture of lower end of left fibula, sequela +C2863531|T037|PT|S82.822S|ICD10CM|Torus fracture of lower end of left fibula, sequela|Torus fracture of lower end of left fibula, sequela +C2863532|T037|AB|S82.829|ICD10CM|Torus fracture of lower end of unspecified fibula|Torus fracture of lower end of unspecified fibula +C2863532|T037|HT|S82.829|ICD10CM|Torus fracture of lower end of unspecified fibula|Torus fracture of lower end of unspecified fibula +C2863533|T037|AB|S82.829A|ICD10CM|Torus fracture of lower end of unsp fibula, init for clos fx|Torus fracture of lower end of unsp fibula, init for clos fx +C2863533|T037|PT|S82.829A|ICD10CM|Torus fracture of lower end of unspecified fibula, initial encounter for closed fracture|Torus fracture of lower end of unspecified fibula, initial encounter for closed fracture +C2863534|T037|AB|S82.829D|ICD10CM|Torus fx lower end of unsp fibula, subs for fx w routn heal|Torus fx lower end of unsp fibula, subs for fx w routn heal +C2863535|T037|AB|S82.829G|ICD10CM|Torus fx lower end of unsp fibula, subs for fx w delay heal|Torus fx lower end of unsp fibula, subs for fx w delay heal +C2863536|T037|PT|S82.829K|ICD10CM|Torus fracture of lower end of unspecified fibula, subsequent encounter for fracture with nonunion|Torus fracture of lower end of unspecified fibula, subsequent encounter for fracture with nonunion +C2863536|T037|AB|S82.829K|ICD10CM|Torus fx lower end of unsp fibula, subs for fx w nonunion|Torus fx lower end of unsp fibula, subs for fx w nonunion +C2863537|T037|PT|S82.829P|ICD10CM|Torus fracture of lower end of unspecified fibula, subsequent encounter for fracture with malunion|Torus fracture of lower end of unspecified fibula, subsequent encounter for fracture with malunion +C2863537|T037|AB|S82.829P|ICD10CM|Torus fx lower end of unsp fibula, subs for fx w malunion|Torus fx lower end of unsp fibula, subs for fx w malunion +C2863538|T037|AB|S82.829S|ICD10CM|Torus fracture of lower end of unspecified fibula, sequela|Torus fracture of lower end of unspecified fibula, sequela +C2863538|T037|PT|S82.829S|ICD10CM|Torus fracture of lower end of unspecified fibula, sequela|Torus fracture of lower end of unspecified fibula, sequela +C2863539|T037|AB|S82.83|ICD10CM|Other fracture of upper and lower end of fibula|Other fracture of upper and lower end of fibula +C2863539|T037|HT|S82.83|ICD10CM|Other fracture of upper and lower end of fibula|Other fracture of upper and lower end of fibula +C2863540|T037|AB|S82.831|ICD10CM|Other fracture of upper and lower end of right fibula|Other fracture of upper and lower end of right fibula +C2863540|T037|HT|S82.831|ICD10CM|Other fracture of upper and lower end of right fibula|Other fracture of upper and lower end of right fibula +C2863541|T037|AB|S82.831A|ICD10CM|Oth fracture of upper and lower end of right fibula, init|Oth fracture of upper and lower end of right fibula, init +C2863541|T037|PT|S82.831A|ICD10CM|Other fracture of upper and lower end of right fibula, initial encounter for closed fracture|Other fracture of upper and lower end of right fibula, initial encounter for closed fracture +C2863542|T037|AB|S82.831B|ICD10CM|Oth fx upper and low end r fibula, init for opn fx type I/2|Oth fx upper and low end r fibula, init for opn fx type I/2 +C2863543|T037|AB|S82.831C|ICD10CM|Oth fx upr and low end r fibula, init for opn fx type 3A/B/C|Oth fx upr and low end r fibula, init for opn fx type 3A/B/C +C2863544|T037|AB|S82.831D|ICD10CM|Oth fx upr & low end r fibula, subs for clos fx w routn heal|Oth fx upr & low end r fibula, subs for clos fx w routn heal +C2863545|T037|AB|S82.831E|ICD10CM|Oth fx upr & low end r fibula, 7thE|Oth fx upr & low end r fibula, 7thE +C2863546|T037|AB|S82.831F|ICD10CM|Oth fx upr & low end r fibula, 7thF|Oth fx upr & low end r fibula, 7thF +C2863547|T037|AB|S82.831G|ICD10CM|Oth fx upr & low end r fibula, subs for clos fx w delay heal|Oth fx upr & low end r fibula, subs for clos fx w delay heal +C2863548|T037|AB|S82.831H|ICD10CM|Oth fx upr & low end r fibula, 7thH|Oth fx upr & low end r fibula, 7thH +C2863549|T037|AB|S82.831J|ICD10CM|Oth fx upr & low end r fibula, 7thJ|Oth fx upr & low end r fibula, 7thJ +C2863550|T037|AB|S82.831K|ICD10CM|Oth fx upr and low end r fibula, subs for clos fx w nonunion|Oth fx upr and low end r fibula, subs for clos fx w nonunion +C2863551|T037|AB|S82.831M|ICD10CM|Oth fx upr & low end r fibula, 7thM|Oth fx upr & low end r fibula, 7thM +C2863552|T037|AB|S82.831N|ICD10CM|Oth fx upr & low end r fibula, 7thN|Oth fx upr & low end r fibula, 7thN +C2863553|T037|AB|S82.831P|ICD10CM|Oth fx upr and low end r fibula, subs for clos fx w malunion|Oth fx upr and low end r fibula, subs for clos fx w malunion +C2863554|T037|AB|S82.831Q|ICD10CM|Oth fx upr & low end r fibula, 7thQ|Oth fx upr & low end r fibula, 7thQ +C2863555|T037|AB|S82.831R|ICD10CM|Oth fx upr & low end r fibula, 7thR|Oth fx upr & low end r fibula, 7thR +C2863556|T037|AB|S82.831S|ICD10CM|Oth fracture of upper and lower end of right fibula, sequela|Oth fracture of upper and lower end of right fibula, sequela +C2863556|T037|PT|S82.831S|ICD10CM|Other fracture of upper and lower end of right fibula, sequela|Other fracture of upper and lower end of right fibula, sequela +C2863557|T037|AB|S82.832|ICD10CM|Other fracture of upper and lower end of left fibula|Other fracture of upper and lower end of left fibula +C2863557|T037|HT|S82.832|ICD10CM|Other fracture of upper and lower end of left fibula|Other fracture of upper and lower end of left fibula +C2863558|T037|AB|S82.832A|ICD10CM|Oth fracture of upper and lower end of left fibula, init|Oth fracture of upper and lower end of left fibula, init +C2863558|T037|PT|S82.832A|ICD10CM|Other fracture of upper and lower end of left fibula, initial encounter for closed fracture|Other fracture of upper and lower end of left fibula, initial encounter for closed fracture +C2863559|T037|AB|S82.832B|ICD10CM|Oth fx upper and low end l fibula, init for opn fx type I/2|Oth fx upper and low end l fibula, init for opn fx type I/2 +C2863560|T037|AB|S82.832C|ICD10CM|Oth fx upr and low end l fibula, init for opn fx type 3A/B/C|Oth fx upr and low end l fibula, init for opn fx type 3A/B/C +C2863561|T037|AB|S82.832D|ICD10CM|Oth fx upr & low end l fibula, subs for clos fx w routn heal|Oth fx upr & low end l fibula, subs for clos fx w routn heal +C2863562|T037|AB|S82.832E|ICD10CM|Oth fx upr & low end l fibula, 7thE|Oth fx upr & low end l fibula, 7thE +C2863563|T037|AB|S82.832F|ICD10CM|Oth fx upr & low end l fibula, 7thF|Oth fx upr & low end l fibula, 7thF +C2863564|T037|AB|S82.832G|ICD10CM|Oth fx upr & low end l fibula, subs for clos fx w delay heal|Oth fx upr & low end l fibula, subs for clos fx w delay heal +C2863565|T037|AB|S82.832H|ICD10CM|Oth fx upr & low end l fibula, 7thH|Oth fx upr & low end l fibula, 7thH +C2863566|T037|AB|S82.832J|ICD10CM|Oth fx upr & low end l fibula, 7thJ|Oth fx upr & low end l fibula, 7thJ +C2863567|T037|AB|S82.832K|ICD10CM|Oth fx upr and low end l fibula, subs for clos fx w nonunion|Oth fx upr and low end l fibula, subs for clos fx w nonunion +C2863568|T037|AB|S82.832M|ICD10CM|Oth fx upr & low end l fibula, 7thM|Oth fx upr & low end l fibula, 7thM +C2863569|T037|AB|S82.832N|ICD10CM|Oth fx upr & low end l fibula, 7thN|Oth fx upr & low end l fibula, 7thN +C2863570|T037|AB|S82.832P|ICD10CM|Oth fx upr and low end l fibula, subs for clos fx w malunion|Oth fx upr and low end l fibula, subs for clos fx w malunion +C2863571|T037|AB|S82.832Q|ICD10CM|Oth fx upr & low end l fibula, 7thQ|Oth fx upr & low end l fibula, 7thQ +C2863572|T037|AB|S82.832R|ICD10CM|Oth fx upr & low end l fibula, 7thR|Oth fx upr & low end l fibula, 7thR +C2863573|T037|AB|S82.832S|ICD10CM|Oth fracture of upper and lower end of left fibula, sequela|Oth fracture of upper and lower end of left fibula, sequela +C2863573|T037|PT|S82.832S|ICD10CM|Other fracture of upper and lower end of left fibula, sequela|Other fracture of upper and lower end of left fibula, sequela +C2863574|T037|AB|S82.839|ICD10CM|Other fracture of upper and lower end of unspecified fibula|Other fracture of upper and lower end of unspecified fibula +C2863574|T037|HT|S82.839|ICD10CM|Other fracture of upper and lower end of unspecified fibula|Other fracture of upper and lower end of unspecified fibula +C2863575|T037|AB|S82.839A|ICD10CM|Oth fracture of upper and lower end of unsp fibula, init|Oth fracture of upper and lower end of unsp fibula, init +C2863575|T037|PT|S82.839A|ICD10CM|Other fracture of upper and lower end of unspecified fibula, initial encounter for closed fracture|Other fracture of upper and lower end of unspecified fibula, initial encounter for closed fracture +C2863576|T037|AB|S82.839B|ICD10CM|Oth fx upr and low end unsp fibula, init for opn fx type I/2|Oth fx upr and low end unsp fibula, init for opn fx type I/2 +C2863577|T037|AB|S82.839C|ICD10CM|Oth fx upr & low end unsp fibula, 7thC|Oth fx upr & low end unsp fibula, 7thC +C2863578|T037|AB|S82.839D|ICD10CM|Oth fx upr & low end unsp fibula, 7thD|Oth fx upr & low end unsp fibula, 7thD +C2863579|T037|AB|S82.839E|ICD10CM|Oth fx upr & low end unsp fibula, 7thE|Oth fx upr & low end unsp fibula, 7thE +C2863580|T037|AB|S82.839F|ICD10CM|Oth fx upr & low end unsp fibula, 7thF|Oth fx upr & low end unsp fibula, 7thF +C2863581|T037|AB|S82.839G|ICD10CM|Oth fx upr & low end unsp fibula, 7thG|Oth fx upr & low end unsp fibula, 7thG +C2863582|T037|AB|S82.839H|ICD10CM|Oth fx upr & low end unsp fibula, 7thH|Oth fx upr & low end unsp fibula, 7thH +C2863583|T037|AB|S82.839J|ICD10CM|Oth fx upr & low end unsp fibula, 7thJ|Oth fx upr & low end unsp fibula, 7thJ +C2863584|T037|AB|S82.839K|ICD10CM|Oth fx upr & low end unsp fibula, 7thK|Oth fx upr & low end unsp fibula, 7thK +C2863585|T037|AB|S82.839M|ICD10CM|Oth fx upr & low end unsp fibula, 7thM|Oth fx upr & low end unsp fibula, 7thM +C2863586|T037|AB|S82.839N|ICD10CM|Oth fx upr & low end unsp fibula, 7thN|Oth fx upr & low end unsp fibula, 7thN +C2863587|T037|AB|S82.839P|ICD10CM|Oth fx upr & low end unsp fibula, 7thP|Oth fx upr & low end unsp fibula, 7thP +C2863588|T037|AB|S82.839Q|ICD10CM|Oth fx upr & low end unsp fibula, 7thQ|Oth fx upr & low end unsp fibula, 7thQ +C2863589|T037|AB|S82.839R|ICD10CM|Oth fx upr & low end unsp fibula, 7thR|Oth fx upr & low end unsp fibula, 7thR +C2863590|T037|AB|S82.839S|ICD10CM|Oth fracture of upper and lower end of unsp fibula, sequela|Oth fracture of upper and lower end of unsp fibula, sequela +C2863590|T037|PT|S82.839S|ICD10CM|Other fracture of upper and lower end of unspecified fibula, sequela|Other fracture of upper and lower end of unspecified fibula, sequela +C2863591|T037|AB|S82.84|ICD10CM|Bimalleolar fracture of lower leg|Bimalleolar fracture of lower leg +C2863591|T037|HT|S82.84|ICD10CM|Bimalleolar fracture of lower leg|Bimalleolar fracture of lower leg +C2863592|T037|AB|S82.841|ICD10CM|Displaced bimalleolar fracture of right lower leg|Displaced bimalleolar fracture of right lower leg +C2863592|T037|HT|S82.841|ICD10CM|Displaced bimalleolar fracture of right lower leg|Displaced bimalleolar fracture of right lower leg +C2863593|T037|AB|S82.841A|ICD10CM|Displaced bimalleolar fracture of right lower leg, init|Displaced bimalleolar fracture of right lower leg, init +C2863593|T037|PT|S82.841A|ICD10CM|Displaced bimalleolar fracture of right lower leg, initial encounter for closed fracture|Displaced bimalleolar fracture of right lower leg, initial encounter for closed fracture +C2863594|T037|AB|S82.841B|ICD10CM|Displaced bimalleol fx r low leg, init for opn fx type I/2|Displaced bimalleol fx r low leg, init for opn fx type I/2 +C2863594|T037|PT|S82.841B|ICD10CM|Displaced bimalleolar fracture of right lower leg, initial encounter for open fracture type I or II|Displaced bimalleolar fracture of right lower leg, initial encounter for open fracture type I or II +C2863595|T037|AB|S82.841C|ICD10CM|Displ bimalleol fx r low leg, init for opn fx type 3A/B/C|Displ bimalleol fx r low leg, init for opn fx type 3A/B/C +C2863596|T037|AB|S82.841D|ICD10CM|Displ bimalleol fx r low leg, subs for clos fx w routn heal|Displ bimalleol fx r low leg, subs for clos fx w routn heal +C2863597|T037|AB|S82.841E|ICD10CM|Displ bimalleol fx r low leg, 7thE|Displ bimalleol fx r low leg, 7thE +C2863598|T037|AB|S82.841F|ICD10CM|Displ bimalleol fx r low leg, 7thF|Displ bimalleol fx r low leg, 7thF +C2863599|T037|AB|S82.841G|ICD10CM|Displ bimalleol fx r low leg, subs for clos fx w delay heal|Displ bimalleol fx r low leg, subs for clos fx w delay heal +C2863600|T037|AB|S82.841H|ICD10CM|Displ bimalleol fx r low leg, 7thH|Displ bimalleol fx r low leg, 7thH +C2863601|T037|AB|S82.841J|ICD10CM|Displ bimalleol fx r low leg, 7thJ|Displ bimalleol fx r low leg, 7thJ +C2863602|T037|AB|S82.841K|ICD10CM|Displ bimalleol fx r low leg, subs for clos fx w nonunion|Displ bimalleol fx r low leg, subs for clos fx w nonunion +C2863603|T037|AB|S82.841M|ICD10CM|Displ bimalleol fx r low leg, 7thM|Displ bimalleol fx r low leg, 7thM +C2863604|T037|AB|S82.841N|ICD10CM|Displ bimalleol fx r low leg, 7thN|Displ bimalleol fx r low leg, 7thN +C2863605|T037|AB|S82.841P|ICD10CM|Displ bimalleol fx r low leg, subs for clos fx w malunion|Displ bimalleol fx r low leg, subs for clos fx w malunion +C2863606|T037|AB|S82.841Q|ICD10CM|Displ bimalleol fx r low leg, 7thQ|Displ bimalleol fx r low leg, 7thQ +C2863607|T037|AB|S82.841R|ICD10CM|Displ bimalleol fx r low leg, 7thR|Displ bimalleol fx r low leg, 7thR +C2863608|T037|PT|S82.841S|ICD10CM|Displaced bimalleolar fracture of right lower leg, sequela|Displaced bimalleolar fracture of right lower leg, sequela +C2863608|T037|AB|S82.841S|ICD10CM|Displaced bimalleolar fracture of right lower leg, sequela|Displaced bimalleolar fracture of right lower leg, sequela +C2863609|T037|AB|S82.842|ICD10CM|Displaced bimalleolar fracture of left lower leg|Displaced bimalleolar fracture of left lower leg +C2863609|T037|HT|S82.842|ICD10CM|Displaced bimalleolar fracture of left lower leg|Displaced bimalleolar fracture of left lower leg +C2863610|T037|AB|S82.842A|ICD10CM|Displaced bimalleolar fracture of left lower leg, init|Displaced bimalleolar fracture of left lower leg, init +C2863610|T037|PT|S82.842A|ICD10CM|Displaced bimalleolar fracture of left lower leg, initial encounter for closed fracture|Displaced bimalleolar fracture of left lower leg, initial encounter for closed fracture +C2863611|T037|AB|S82.842B|ICD10CM|Displaced bimalleol fx l low leg, init for opn fx type I/2|Displaced bimalleol fx l low leg, init for opn fx type I/2 +C2863611|T037|PT|S82.842B|ICD10CM|Displaced bimalleolar fracture of left lower leg, initial encounter for open fracture type I or II|Displaced bimalleolar fracture of left lower leg, initial encounter for open fracture type I or II +C2863612|T037|AB|S82.842C|ICD10CM|Displ bimalleol fx l low leg, init for opn fx type 3A/B/C|Displ bimalleol fx l low leg, init for opn fx type 3A/B/C +C2863613|T037|AB|S82.842D|ICD10CM|Displ bimalleol fx l low leg, subs for clos fx w routn heal|Displ bimalleol fx l low leg, subs for clos fx w routn heal +C2863614|T037|AB|S82.842E|ICD10CM|Displ bimalleol fx l low leg, 7thE|Displ bimalleol fx l low leg, 7thE +C2863615|T037|AB|S82.842F|ICD10CM|Displ bimalleol fx l low leg, 7thF|Displ bimalleol fx l low leg, 7thF +C2863616|T037|AB|S82.842G|ICD10CM|Displ bimalleol fx l low leg, subs for clos fx w delay heal|Displ bimalleol fx l low leg, subs for clos fx w delay heal +C2863617|T037|AB|S82.842H|ICD10CM|Displ bimalleol fx l low leg, 7thH|Displ bimalleol fx l low leg, 7thH +C2863618|T037|AB|S82.842J|ICD10CM|Displ bimalleol fx l low leg, 7thJ|Displ bimalleol fx l low leg, 7thJ +C2863619|T037|AB|S82.842K|ICD10CM|Displ bimalleol fx l low leg, subs for clos fx w nonunion|Displ bimalleol fx l low leg, subs for clos fx w nonunion +C2863620|T037|AB|S82.842M|ICD10CM|Displ bimalleol fx l low leg, 7thM|Displ bimalleol fx l low leg, 7thM +C2863621|T037|AB|S82.842N|ICD10CM|Displ bimalleol fx l low leg, 7thN|Displ bimalleol fx l low leg, 7thN +C2863622|T037|AB|S82.842P|ICD10CM|Displ bimalleol fx l low leg, subs for clos fx w malunion|Displ bimalleol fx l low leg, subs for clos fx w malunion +C2863623|T037|AB|S82.842Q|ICD10CM|Displ bimalleol fx l low leg, 7thQ|Displ bimalleol fx l low leg, 7thQ +C2863624|T037|AB|S82.842R|ICD10CM|Displ bimalleol fx l low leg, 7thR|Displ bimalleol fx l low leg, 7thR +C2863625|T037|AB|S82.842S|ICD10CM|Displaced bimalleolar fracture of left lower leg, sequela|Displaced bimalleolar fracture of left lower leg, sequela +C2863625|T037|PT|S82.842S|ICD10CM|Displaced bimalleolar fracture of left lower leg, sequela|Displaced bimalleolar fracture of left lower leg, sequela +C2863626|T037|AB|S82.843|ICD10CM|Displaced bimalleolar fracture of unspecified lower leg|Displaced bimalleolar fracture of unspecified lower leg +C2863626|T037|HT|S82.843|ICD10CM|Displaced bimalleolar fracture of unspecified lower leg|Displaced bimalleolar fracture of unspecified lower leg +C2863627|T037|AB|S82.843A|ICD10CM|Displaced bimalleolar fracture of unsp lower leg, init|Displaced bimalleolar fracture of unsp lower leg, init +C2863627|T037|PT|S82.843A|ICD10CM|Displaced bimalleolar fracture of unspecified lower leg, initial encounter for closed fracture|Displaced bimalleolar fracture of unspecified lower leg, initial encounter for closed fracture +C2863628|T037|AB|S82.843B|ICD10CM|Displ bimalleol fx unsp lower leg, init for opn fx type I/2|Displ bimalleol fx unsp lower leg, init for opn fx type I/2 +C2863629|T037|AB|S82.843C|ICD10CM|Displ bimalleol fx unsp low leg, init for opn fx type 3A/B/C|Displ bimalleol fx unsp low leg, init for opn fx type 3A/B/C +C2863630|T037|AB|S82.843D|ICD10CM|Displ bimalleol fx unsp low leg, 7thD|Displ bimalleol fx unsp low leg, 7thD +C2863631|T037|AB|S82.843E|ICD10CM|Displ bimalleol fx unsp low leg, 7thE|Displ bimalleol fx unsp low leg, 7thE +C2863632|T037|AB|S82.843F|ICD10CM|Displ bimalleol fx unsp low leg, 7thF|Displ bimalleol fx unsp low leg, 7thF +C2863633|T037|AB|S82.843G|ICD10CM|Displ bimalleol fx unsp low leg, 7thG|Displ bimalleol fx unsp low leg, 7thG +C2863634|T037|AB|S82.843H|ICD10CM|Displ bimalleol fx unsp low leg, 7thH|Displ bimalleol fx unsp low leg, 7thH +C2863635|T037|AB|S82.843J|ICD10CM|Displ bimalleol fx unsp low leg, 7thJ|Displ bimalleol fx unsp low leg, 7thJ +C2863636|T037|AB|S82.843K|ICD10CM|Displ bimalleol fx unsp low leg, subs for clos fx w nonunion|Displ bimalleol fx unsp low leg, subs for clos fx w nonunion +C2863637|T037|AB|S82.843M|ICD10CM|Displ bimalleol fx unsp low leg, 7thM|Displ bimalleol fx unsp low leg, 7thM +C2863638|T037|AB|S82.843N|ICD10CM|Displ bimalleol fx unsp low leg, 7thN|Displ bimalleol fx unsp low leg, 7thN +C2863639|T037|AB|S82.843P|ICD10CM|Displ bimalleol fx unsp low leg, subs for clos fx w malunion|Displ bimalleol fx unsp low leg, subs for clos fx w malunion +C2863640|T037|AB|S82.843Q|ICD10CM|Displ bimalleol fx unsp low leg, 7thQ|Displ bimalleol fx unsp low leg, 7thQ +C2863641|T037|AB|S82.843R|ICD10CM|Displ bimalleol fx unsp low leg, 7thR|Displ bimalleol fx unsp low leg, 7thR +C2863642|T037|AB|S82.843S|ICD10CM|Displaced bimalleolar fracture of unsp lower leg, sequela|Displaced bimalleolar fracture of unsp lower leg, sequela +C2863642|T037|PT|S82.843S|ICD10CM|Displaced bimalleolar fracture of unspecified lower leg, sequela|Displaced bimalleolar fracture of unspecified lower leg, sequela +C2863643|T037|AB|S82.844|ICD10CM|Nondisplaced bimalleolar fracture of right lower leg|Nondisplaced bimalleolar fracture of right lower leg +C2863643|T037|HT|S82.844|ICD10CM|Nondisplaced bimalleolar fracture of right lower leg|Nondisplaced bimalleolar fracture of right lower leg +C2863644|T037|AB|S82.844A|ICD10CM|Nondisplaced bimalleolar fracture of right lower leg, init|Nondisplaced bimalleolar fracture of right lower leg, init +C2863644|T037|PT|S82.844A|ICD10CM|Nondisplaced bimalleolar fracture of right lower leg, initial encounter for closed fracture|Nondisplaced bimalleolar fracture of right lower leg, initial encounter for closed fracture +C2863645|T037|AB|S82.844B|ICD10CM|Nondisp bimalleol fx r low leg, init for opn fx type I/2|Nondisp bimalleol fx r low leg, init for opn fx type I/2 +C2863646|T037|AB|S82.844C|ICD10CM|Nondisp bimalleol fx r low leg, init for opn fx type 3A/B/C|Nondisp bimalleol fx r low leg, init for opn fx type 3A/B/C +C2863647|T037|AB|S82.844D|ICD10CM|Nondisp bimalleol fx r low leg, 7thD|Nondisp bimalleol fx r low leg, 7thD +C2863648|T037|AB|S82.844E|ICD10CM|Nondisp bimalleol fx r low leg, 7thE|Nondisp bimalleol fx r low leg, 7thE +C2863649|T037|AB|S82.844F|ICD10CM|Nondisp bimalleol fx r low leg, 7thF|Nondisp bimalleol fx r low leg, 7thF +C2863650|T037|AB|S82.844G|ICD10CM|Nondisp bimalleol fx r low leg, 7thG|Nondisp bimalleol fx r low leg, 7thG +C2863651|T037|AB|S82.844H|ICD10CM|Nondisp bimalleol fx r low leg, 7thH|Nondisp bimalleol fx r low leg, 7thH +C2863652|T037|AB|S82.844J|ICD10CM|Nondisp bimalleol fx r low leg, 7thJ|Nondisp bimalleol fx r low leg, 7thJ +C2863653|T037|AB|S82.844K|ICD10CM|Nondisp bimalleol fx r low leg, subs for clos fx w nonunion|Nondisp bimalleol fx r low leg, subs for clos fx w nonunion +C2863654|T037|AB|S82.844M|ICD10CM|Nondisp bimalleol fx r low leg, 7thM|Nondisp bimalleol fx r low leg, 7thM +C2863655|T037|AB|S82.844N|ICD10CM|Nondisp bimalleol fx r low leg, 7thN|Nondisp bimalleol fx r low leg, 7thN +C2863656|T037|AB|S82.844P|ICD10CM|Nondisp bimalleol fx r low leg, subs for clos fx w malunion|Nondisp bimalleol fx r low leg, subs for clos fx w malunion +C2863657|T037|AB|S82.844Q|ICD10CM|Nondisp bimalleol fx r low leg, 7thQ|Nondisp bimalleol fx r low leg, 7thQ +C2863658|T037|AB|S82.844R|ICD10CM|Nondisp bimalleol fx r low leg, 7thR|Nondisp bimalleol fx r low leg, 7thR +C2863659|T037|AB|S82.844S|ICD10CM|Nondisplaced bimalleolar fracture of r low leg, sequela|Nondisplaced bimalleolar fracture of r low leg, sequela +C2863659|T037|PT|S82.844S|ICD10CM|Nondisplaced bimalleolar fracture of right lower leg, sequela|Nondisplaced bimalleolar fracture of right lower leg, sequela +C2863660|T037|AB|S82.845|ICD10CM|Nondisplaced bimalleolar fracture of left lower leg|Nondisplaced bimalleolar fracture of left lower leg +C2863660|T037|HT|S82.845|ICD10CM|Nondisplaced bimalleolar fracture of left lower leg|Nondisplaced bimalleolar fracture of left lower leg +C2863661|T037|AB|S82.845A|ICD10CM|Nondisplaced bimalleolar fracture of left lower leg, init|Nondisplaced bimalleolar fracture of left lower leg, init +C2863661|T037|PT|S82.845A|ICD10CM|Nondisplaced bimalleolar fracture of left lower leg, initial encounter for closed fracture|Nondisplaced bimalleolar fracture of left lower leg, initial encounter for closed fracture +C2863662|T037|AB|S82.845B|ICD10CM|Nondisp bimalleol fx l low leg, init for opn fx type I/2|Nondisp bimalleol fx l low leg, init for opn fx type I/2 +C2863663|T037|AB|S82.845C|ICD10CM|Nondisp bimalleol fx l low leg, init for opn fx type 3A/B/C|Nondisp bimalleol fx l low leg, init for opn fx type 3A/B/C +C2863664|T037|AB|S82.845D|ICD10CM|Nondisp bimalleol fx l low leg, 7thD|Nondisp bimalleol fx l low leg, 7thD +C2863665|T037|AB|S82.845E|ICD10CM|Nondisp bimalleol fx l low leg, 7thE|Nondisp bimalleol fx l low leg, 7thE +C2863666|T037|AB|S82.845F|ICD10CM|Nondisp bimalleol fx l low leg, 7thF|Nondisp bimalleol fx l low leg, 7thF +C2863667|T037|AB|S82.845G|ICD10CM|Nondisp bimalleol fx l low leg, 7thG|Nondisp bimalleol fx l low leg, 7thG +C2863668|T037|AB|S82.845H|ICD10CM|Nondisp bimalleol fx l low leg, 7thH|Nondisp bimalleol fx l low leg, 7thH +C2863669|T037|AB|S82.845J|ICD10CM|Nondisp bimalleol fx l low leg, 7thJ|Nondisp bimalleol fx l low leg, 7thJ +C2863670|T037|AB|S82.845K|ICD10CM|Nondisp bimalleol fx l low leg, subs for clos fx w nonunion|Nondisp bimalleol fx l low leg, subs for clos fx w nonunion +C2863671|T037|AB|S82.845M|ICD10CM|Nondisp bimalleol fx l low leg, 7thM|Nondisp bimalleol fx l low leg, 7thM +C2863672|T037|AB|S82.845N|ICD10CM|Nondisp bimalleol fx l low leg, 7thN|Nondisp bimalleol fx l low leg, 7thN +C2863673|T037|AB|S82.845P|ICD10CM|Nondisp bimalleol fx l low leg, subs for clos fx w malunion|Nondisp bimalleol fx l low leg, subs for clos fx w malunion +C2863674|T037|AB|S82.845Q|ICD10CM|Nondisp bimalleol fx l low leg, 7thQ|Nondisp bimalleol fx l low leg, 7thQ +C2863675|T037|AB|S82.845R|ICD10CM|Nondisp bimalleol fx l low leg, 7thR|Nondisp bimalleol fx l low leg, 7thR +C2863676|T037|AB|S82.845S|ICD10CM|Nondisplaced bimalleolar fracture of left lower leg, sequela|Nondisplaced bimalleolar fracture of left lower leg, sequela +C2863676|T037|PT|S82.845S|ICD10CM|Nondisplaced bimalleolar fracture of left lower leg, sequela|Nondisplaced bimalleolar fracture of left lower leg, sequela +C2863677|T037|AB|S82.846|ICD10CM|Nondisplaced bimalleolar fracture of unspecified lower leg|Nondisplaced bimalleolar fracture of unspecified lower leg +C2863677|T037|HT|S82.846|ICD10CM|Nondisplaced bimalleolar fracture of unspecified lower leg|Nondisplaced bimalleolar fracture of unspecified lower leg +C2863678|T037|AB|S82.846A|ICD10CM|Nondisplaced bimalleolar fracture of unsp lower leg, init|Nondisplaced bimalleolar fracture of unsp lower leg, init +C2863678|T037|PT|S82.846A|ICD10CM|Nondisplaced bimalleolar fracture of unspecified lower leg, initial encounter for closed fracture|Nondisplaced bimalleolar fracture of unspecified lower leg, initial encounter for closed fracture +C2863679|T037|AB|S82.846B|ICD10CM|Nondisp bimalleol fx unsp low leg, init for opn fx type I/2|Nondisp bimalleol fx unsp low leg, init for opn fx type I/2 +C2863680|T037|AB|S82.846C|ICD10CM|Nondisp bimalleol fx unsp low leg, 7thC|Nondisp bimalleol fx unsp low leg, 7thC +C2863681|T037|AB|S82.846D|ICD10CM|Nondisp bimalleol fx unsp low leg, 7thD|Nondisp bimalleol fx unsp low leg, 7thD +C2863682|T037|AB|S82.846E|ICD10CM|Nondisp bimalleol fx unsp low leg, 7thE|Nondisp bimalleol fx unsp low leg, 7thE +C2863683|T037|AB|S82.846F|ICD10CM|Nondisp bimalleol fx unsp low leg, 7thF|Nondisp bimalleol fx unsp low leg, 7thF +C2863684|T037|AB|S82.846G|ICD10CM|Nondisp bimalleol fx unsp low leg, 7thG|Nondisp bimalleol fx unsp low leg, 7thG +C2863685|T037|AB|S82.846H|ICD10CM|Nondisp bimalleol fx unsp low leg, 7thH|Nondisp bimalleol fx unsp low leg, 7thH +C2863686|T037|AB|S82.846J|ICD10CM|Nondisp bimalleol fx unsp low leg, 7thJ|Nondisp bimalleol fx unsp low leg, 7thJ +C2863687|T037|AB|S82.846K|ICD10CM|Nondisp bimalleol fx unsp low leg, 7thK|Nondisp bimalleol fx unsp low leg, 7thK +C2863688|T037|AB|S82.846M|ICD10CM|Nondisp bimalleol fx unsp low leg, 7thM|Nondisp bimalleol fx unsp low leg, 7thM +C2863689|T037|AB|S82.846N|ICD10CM|Nondisp bimalleol fx unsp low leg, 7thN|Nondisp bimalleol fx unsp low leg, 7thN +C2863690|T037|AB|S82.846P|ICD10CM|Nondisp bimalleol fx unsp low leg, 7thP|Nondisp bimalleol fx unsp low leg, 7thP +C2863691|T037|AB|S82.846Q|ICD10CM|Nondisp bimalleol fx unsp low leg, 7thQ|Nondisp bimalleol fx unsp low leg, 7thQ +C2863692|T037|AB|S82.846R|ICD10CM|Nondisp bimalleol fx unsp low leg, 7thR|Nondisp bimalleol fx unsp low leg, 7thR +C2863693|T037|AB|S82.846S|ICD10CM|Nondisplaced bimalleolar fracture of unsp lower leg, sequela|Nondisplaced bimalleolar fracture of unsp lower leg, sequela +C2863693|T037|PT|S82.846S|ICD10CM|Nondisplaced bimalleolar fracture of unspecified lower leg, sequela|Nondisplaced bimalleolar fracture of unspecified lower leg, sequela +C2863694|T037|AB|S82.85|ICD10CM|Trimalleolar fracture of lower leg|Trimalleolar fracture of lower leg +C2863694|T037|HT|S82.85|ICD10CM|Trimalleolar fracture of lower leg|Trimalleolar fracture of lower leg +C2863695|T037|AB|S82.851|ICD10CM|Displaced trimalleolar fracture of right lower leg|Displaced trimalleolar fracture of right lower leg +C2863695|T037|HT|S82.851|ICD10CM|Displaced trimalleolar fracture of right lower leg|Displaced trimalleolar fracture of right lower leg +C2863696|T037|AB|S82.851A|ICD10CM|Displaced trimalleolar fracture of right lower leg, init|Displaced trimalleolar fracture of right lower leg, init +C2863696|T037|PT|S82.851A|ICD10CM|Displaced trimalleolar fracture of right lower leg, initial encounter for closed fracture|Displaced trimalleolar fracture of right lower leg, initial encounter for closed fracture +C2863697|T037|AB|S82.851B|ICD10CM|Displaced trimalleol fx r low leg, init for opn fx type I/2|Displaced trimalleol fx r low leg, init for opn fx type I/2 +C2863697|T037|PT|S82.851B|ICD10CM|Displaced trimalleolar fracture of right lower leg, initial encounter for open fracture type I or II|Displaced trimalleolar fracture of right lower leg, initial encounter for open fracture type I or II +C2863698|T037|AB|S82.851C|ICD10CM|Displ trimalleol fx r low leg, init for opn fx type 3A/B/C|Displ trimalleol fx r low leg, init for opn fx type 3A/B/C +C2863699|T037|AB|S82.851D|ICD10CM|Displ trimalleol fx r low leg, subs for clos fx w routn heal|Displ trimalleol fx r low leg, subs for clos fx w routn heal +C2863700|T037|AB|S82.851E|ICD10CM|Displ trimalleol fx r low leg, 7thE|Displ trimalleol fx r low leg, 7thE +C2863701|T037|AB|S82.851F|ICD10CM|Displ trimalleol fx r low leg, 7thF|Displ trimalleol fx r low leg, 7thF +C2863702|T037|AB|S82.851G|ICD10CM|Displ trimalleol fx r low leg, subs for clos fx w delay heal|Displ trimalleol fx r low leg, subs for clos fx w delay heal +C2863703|T037|AB|S82.851H|ICD10CM|Displ trimalleol fx r low leg, 7thH|Displ trimalleol fx r low leg, 7thH +C2863704|T037|AB|S82.851J|ICD10CM|Displ trimalleol fx r low leg, 7thJ|Displ trimalleol fx r low leg, 7thJ +C2863705|T037|AB|S82.851K|ICD10CM|Displ trimalleol fx r low leg, subs for clos fx w nonunion|Displ trimalleol fx r low leg, subs for clos fx w nonunion +C2863706|T037|AB|S82.851M|ICD10CM|Displ trimalleol fx r low leg, 7thM|Displ trimalleol fx r low leg, 7thM +C2863707|T037|AB|S82.851N|ICD10CM|Displ trimalleol fx r low leg, 7thN|Displ trimalleol fx r low leg, 7thN +C2863708|T037|AB|S82.851P|ICD10CM|Displ trimalleol fx r low leg, subs for clos fx w malunion|Displ trimalleol fx r low leg, subs for clos fx w malunion +C2863709|T037|AB|S82.851Q|ICD10CM|Displ trimalleol fx r low leg, 7thQ|Displ trimalleol fx r low leg, 7thQ +C2863710|T037|AB|S82.851R|ICD10CM|Displ trimalleol fx r low leg, 7thR|Displ trimalleol fx r low leg, 7thR +C2863711|T037|PT|S82.851S|ICD10CM|Displaced trimalleolar fracture of right lower leg, sequela|Displaced trimalleolar fracture of right lower leg, sequela +C2863711|T037|AB|S82.851S|ICD10CM|Displaced trimalleolar fracture of right lower leg, sequela|Displaced trimalleolar fracture of right lower leg, sequela +C2863712|T037|AB|S82.852|ICD10CM|Displaced trimalleolar fracture of left lower leg|Displaced trimalleolar fracture of left lower leg +C2863712|T037|HT|S82.852|ICD10CM|Displaced trimalleolar fracture of left lower leg|Displaced trimalleolar fracture of left lower leg +C2863713|T037|AB|S82.852A|ICD10CM|Displaced trimalleolar fracture of left lower leg, init|Displaced trimalleolar fracture of left lower leg, init +C2863713|T037|PT|S82.852A|ICD10CM|Displaced trimalleolar fracture of left lower leg, initial encounter for closed fracture|Displaced trimalleolar fracture of left lower leg, initial encounter for closed fracture +C2863714|T037|AB|S82.852B|ICD10CM|Displaced trimalleol fx l low leg, init for opn fx type I/2|Displaced trimalleol fx l low leg, init for opn fx type I/2 +C2863714|T037|PT|S82.852B|ICD10CM|Displaced trimalleolar fracture of left lower leg, initial encounter for open fracture type I or II|Displaced trimalleolar fracture of left lower leg, initial encounter for open fracture type I or II +C2863715|T037|AB|S82.852C|ICD10CM|Displ trimalleol fx l low leg, init for opn fx type 3A/B/C|Displ trimalleol fx l low leg, init for opn fx type 3A/B/C +C2863716|T037|AB|S82.852D|ICD10CM|Displ trimalleol fx l low leg, subs for clos fx w routn heal|Displ trimalleol fx l low leg, subs for clos fx w routn heal +C2863717|T037|AB|S82.852E|ICD10CM|Displ trimalleol fx l low leg, 7thE|Displ trimalleol fx l low leg, 7thE +C2863718|T037|AB|S82.852F|ICD10CM|Displ trimalleol fx l low leg, 7thF|Displ trimalleol fx l low leg, 7thF +C2863719|T037|AB|S82.852G|ICD10CM|Displ trimalleol fx l low leg, subs for clos fx w delay heal|Displ trimalleol fx l low leg, subs for clos fx w delay heal +C2863720|T037|AB|S82.852H|ICD10CM|Displ trimalleol fx l low leg, 7thH|Displ trimalleol fx l low leg, 7thH +C2863721|T037|AB|S82.852J|ICD10CM|Displ trimalleol fx l low leg, 7thJ|Displ trimalleol fx l low leg, 7thJ +C2863722|T037|AB|S82.852K|ICD10CM|Displ trimalleol fx l low leg, subs for clos fx w nonunion|Displ trimalleol fx l low leg, subs for clos fx w nonunion +C2863723|T037|AB|S82.852M|ICD10CM|Displ trimalleol fx l low leg, 7thM|Displ trimalleol fx l low leg, 7thM +C2863724|T037|AB|S82.852N|ICD10CM|Displ trimalleol fx l low leg, 7thN|Displ trimalleol fx l low leg, 7thN +C2863725|T037|AB|S82.852P|ICD10CM|Displ trimalleol fx l low leg, subs for clos fx w malunion|Displ trimalleol fx l low leg, subs for clos fx w malunion +C2863726|T037|AB|S82.852Q|ICD10CM|Displ trimalleol fx l low leg, 7thQ|Displ trimalleol fx l low leg, 7thQ +C2863727|T037|AB|S82.852R|ICD10CM|Displ trimalleol fx l low leg, 7thR|Displ trimalleol fx l low leg, 7thR +C2863728|T037|PT|S82.852S|ICD10CM|Displaced trimalleolar fracture of left lower leg, sequela|Displaced trimalleolar fracture of left lower leg, sequela +C2863728|T037|AB|S82.852S|ICD10CM|Displaced trimalleolar fracture of left lower leg, sequela|Displaced trimalleolar fracture of left lower leg, sequela +C2863729|T037|AB|S82.853|ICD10CM|Displaced trimalleolar fracture of unspecified lower leg|Displaced trimalleolar fracture of unspecified lower leg +C2863729|T037|HT|S82.853|ICD10CM|Displaced trimalleolar fracture of unspecified lower leg|Displaced trimalleolar fracture of unspecified lower leg +C2863730|T037|AB|S82.853A|ICD10CM|Displaced trimalleolar fracture of unsp lower leg, init|Displaced trimalleolar fracture of unsp lower leg, init +C2863730|T037|PT|S82.853A|ICD10CM|Displaced trimalleolar fracture of unspecified lower leg, initial encounter for closed fracture|Displaced trimalleolar fracture of unspecified lower leg, initial encounter for closed fracture +C2863731|T037|AB|S82.853B|ICD10CM|Displ trimalleol fx unsp lower leg, init for opn fx type I/2|Displ trimalleol fx unsp lower leg, init for opn fx type I/2 +C2863732|T037|AB|S82.853C|ICD10CM|Displ trimalleol fx unsp low leg, 7thC|Displ trimalleol fx unsp low leg, 7thC +C2863733|T037|AB|S82.853D|ICD10CM|Displ trimalleol fx unsp low leg, 7thD|Displ trimalleol fx unsp low leg, 7thD +C2863734|T037|AB|S82.853E|ICD10CM|Displ trimalleol fx unsp low leg, 7thE|Displ trimalleol fx unsp low leg, 7thE +C2863735|T037|AB|S82.853F|ICD10CM|Displ trimalleol fx unsp low leg, 7thF|Displ trimalleol fx unsp low leg, 7thF +C2863736|T037|AB|S82.853G|ICD10CM|Displ trimalleol fx unsp low leg, 7thG|Displ trimalleol fx unsp low leg, 7thG +C2863737|T037|AB|S82.853H|ICD10CM|Displ trimalleol fx unsp low leg, 7thH|Displ trimalleol fx unsp low leg, 7thH +C2863738|T037|AB|S82.853J|ICD10CM|Displ trimalleol fx unsp low leg, 7thJ|Displ trimalleol fx unsp low leg, 7thJ +C2863739|T037|AB|S82.853K|ICD10CM|Displ trimalleol fx unsp low leg, 7thK|Displ trimalleol fx unsp low leg, 7thK +C2863740|T037|AB|S82.853M|ICD10CM|Displ trimalleol fx unsp low leg, 7thM|Displ trimalleol fx unsp low leg, 7thM +C2863741|T037|AB|S82.853N|ICD10CM|Displ trimalleol fx unsp low leg, 7thN|Displ trimalleol fx unsp low leg, 7thN +C2863742|T037|AB|S82.853P|ICD10CM|Displ trimalleol fx unsp low leg, 7thP|Displ trimalleol fx unsp low leg, 7thP +C2863743|T037|AB|S82.853Q|ICD10CM|Displ trimalleol fx unsp low leg, 7thQ|Displ trimalleol fx unsp low leg, 7thQ +C2863744|T037|AB|S82.853R|ICD10CM|Displ trimalleol fx unsp low leg, 7thR|Displ trimalleol fx unsp low leg, 7thR +C2863745|T037|AB|S82.853S|ICD10CM|Displaced trimalleolar fracture of unsp lower leg, sequela|Displaced trimalleolar fracture of unsp lower leg, sequela +C2863745|T037|PT|S82.853S|ICD10CM|Displaced trimalleolar fracture of unspecified lower leg, sequela|Displaced trimalleolar fracture of unspecified lower leg, sequela +C2863746|T037|AB|S82.854|ICD10CM|Nondisplaced trimalleolar fracture of right lower leg|Nondisplaced trimalleolar fracture of right lower leg +C2863746|T037|HT|S82.854|ICD10CM|Nondisplaced trimalleolar fracture of right lower leg|Nondisplaced trimalleolar fracture of right lower leg +C2863747|T037|AB|S82.854A|ICD10CM|Nondisplaced trimalleolar fracture of right lower leg, init|Nondisplaced trimalleolar fracture of right lower leg, init +C2863747|T037|PT|S82.854A|ICD10CM|Nondisplaced trimalleolar fracture of right lower leg, initial encounter for closed fracture|Nondisplaced trimalleolar fracture of right lower leg, initial encounter for closed fracture +C2863748|T037|AB|S82.854B|ICD10CM|Nondisp trimalleol fx r low leg, init for opn fx type I/2|Nondisp trimalleol fx r low leg, init for opn fx type I/2 +C2863749|T037|AB|S82.854C|ICD10CM|Nondisp trimalleol fx r low leg, init for opn fx type 3A/B/C|Nondisp trimalleol fx r low leg, init for opn fx type 3A/B/C +C2863750|T037|AB|S82.854D|ICD10CM|Nondisp trimalleol fx r low leg, 7thD|Nondisp trimalleol fx r low leg, 7thD +C2863751|T037|AB|S82.854E|ICD10CM|Nondisp trimalleol fx r low leg, 7thE|Nondisp trimalleol fx r low leg, 7thE +C2863752|T037|AB|S82.854F|ICD10CM|Nondisp trimalleol fx r low leg, 7thF|Nondisp trimalleol fx r low leg, 7thF +C2863753|T037|AB|S82.854G|ICD10CM|Nondisp trimalleol fx r low leg, 7thG|Nondisp trimalleol fx r low leg, 7thG +C2863754|T037|AB|S82.854H|ICD10CM|Nondisp trimalleol fx r low leg, 7thH|Nondisp trimalleol fx r low leg, 7thH +C2863755|T037|AB|S82.854J|ICD10CM|Nondisp trimalleol fx r low leg, 7thJ|Nondisp trimalleol fx r low leg, 7thJ +C2863756|T037|AB|S82.854K|ICD10CM|Nondisp trimalleol fx r low leg, subs for clos fx w nonunion|Nondisp trimalleol fx r low leg, subs for clos fx w nonunion +C2863757|T037|AB|S82.854M|ICD10CM|Nondisp trimalleol fx r low leg, 7thM|Nondisp trimalleol fx r low leg, 7thM +C2863758|T037|AB|S82.854N|ICD10CM|Nondisp trimalleol fx r low leg, 7thN|Nondisp trimalleol fx r low leg, 7thN +C2863759|T037|AB|S82.854P|ICD10CM|Nondisp trimalleol fx r low leg, subs for clos fx w malunion|Nondisp trimalleol fx r low leg, subs for clos fx w malunion +C2863760|T037|AB|S82.854Q|ICD10CM|Nondisp trimalleol fx r low leg, 7thQ|Nondisp trimalleol fx r low leg, 7thQ +C2863761|T037|AB|S82.854R|ICD10CM|Nondisp trimalleol fx r low leg, 7thR|Nondisp trimalleol fx r low leg, 7thR +C2863762|T037|AB|S82.854S|ICD10CM|Nondisplaced trimalleolar fracture of r low leg, sequela|Nondisplaced trimalleolar fracture of r low leg, sequela +C2863762|T037|PT|S82.854S|ICD10CM|Nondisplaced trimalleolar fracture of right lower leg, sequela|Nondisplaced trimalleolar fracture of right lower leg, sequela +C2863763|T037|AB|S82.855|ICD10CM|Nondisplaced trimalleolar fracture of left lower leg|Nondisplaced trimalleolar fracture of left lower leg +C2863763|T037|HT|S82.855|ICD10CM|Nondisplaced trimalleolar fracture of left lower leg|Nondisplaced trimalleolar fracture of left lower leg +C2863764|T037|AB|S82.855A|ICD10CM|Nondisplaced trimalleolar fracture of left lower leg, init|Nondisplaced trimalleolar fracture of left lower leg, init +C2863764|T037|PT|S82.855A|ICD10CM|Nondisplaced trimalleolar fracture of left lower leg, initial encounter for closed fracture|Nondisplaced trimalleolar fracture of left lower leg, initial encounter for closed fracture +C2863765|T037|AB|S82.855B|ICD10CM|Nondisp trimalleol fx l low leg, init for opn fx type I/2|Nondisp trimalleol fx l low leg, init for opn fx type I/2 +C2863766|T037|AB|S82.855C|ICD10CM|Nondisp trimalleol fx l low leg, init for opn fx type 3A/B/C|Nondisp trimalleol fx l low leg, init for opn fx type 3A/B/C +C2863767|T037|AB|S82.855D|ICD10CM|Nondisp trimalleol fx l low leg, 7thD|Nondisp trimalleol fx l low leg, 7thD +C2863768|T037|AB|S82.855E|ICD10CM|Nondisp trimalleol fx l low leg, 7thE|Nondisp trimalleol fx l low leg, 7thE +C2863769|T037|AB|S82.855F|ICD10CM|Nondisp trimalleol fx l low leg, 7thF|Nondisp trimalleol fx l low leg, 7thF +C2863770|T037|AB|S82.855G|ICD10CM|Nondisp trimalleol fx l low leg, 7thG|Nondisp trimalleol fx l low leg, 7thG +C2863771|T037|AB|S82.855H|ICD10CM|Nondisp trimalleol fx l low leg, 7thH|Nondisp trimalleol fx l low leg, 7thH +C2863772|T037|AB|S82.855J|ICD10CM|Nondisp trimalleol fx l low leg, 7thJ|Nondisp trimalleol fx l low leg, 7thJ +C2863773|T037|AB|S82.855K|ICD10CM|Nondisp trimalleol fx l low leg, subs for clos fx w nonunion|Nondisp trimalleol fx l low leg, subs for clos fx w nonunion +C2863774|T037|AB|S82.855M|ICD10CM|Nondisp trimalleol fx l low leg, 7thM|Nondisp trimalleol fx l low leg, 7thM +C2863775|T037|AB|S82.855N|ICD10CM|Nondisp trimalleol fx l low leg, 7thN|Nondisp trimalleol fx l low leg, 7thN +C2863776|T037|AB|S82.855P|ICD10CM|Nondisp trimalleol fx l low leg, subs for clos fx w malunion|Nondisp trimalleol fx l low leg, subs for clos fx w malunion +C2863777|T037|AB|S82.855Q|ICD10CM|Nondisp trimalleol fx l low leg, 7thQ|Nondisp trimalleol fx l low leg, 7thQ +C2863778|T037|AB|S82.855R|ICD10CM|Nondisp trimalleol fx l low leg, 7thR|Nondisp trimalleol fx l low leg, 7thR +C2863779|T037|AB|S82.855S|ICD10CM|Nondisplaced trimalleolar fracture of l low leg, sequela|Nondisplaced trimalleolar fracture of l low leg, sequela +C2863779|T037|PT|S82.855S|ICD10CM|Nondisplaced trimalleolar fracture of left lower leg, sequela|Nondisplaced trimalleolar fracture of left lower leg, sequela +C2863780|T037|AB|S82.856|ICD10CM|Nondisplaced trimalleolar fracture of unspecified lower leg|Nondisplaced trimalleolar fracture of unspecified lower leg +C2863780|T037|HT|S82.856|ICD10CM|Nondisplaced trimalleolar fracture of unspecified lower leg|Nondisplaced trimalleolar fracture of unspecified lower leg +C2863781|T037|AB|S82.856A|ICD10CM|Nondisplaced trimalleolar fracture of unsp lower leg, init|Nondisplaced trimalleolar fracture of unsp lower leg, init +C2863781|T037|PT|S82.856A|ICD10CM|Nondisplaced trimalleolar fracture of unspecified lower leg, initial encounter for closed fracture|Nondisplaced trimalleolar fracture of unspecified lower leg, initial encounter for closed fracture +C2863782|T037|AB|S82.856B|ICD10CM|Nondisp trimalleol fx unsp low leg, init for opn fx type I/2|Nondisp trimalleol fx unsp low leg, init for opn fx type I/2 +C2863783|T037|AB|S82.856C|ICD10CM|Nondisp trimalleol fx unsp low leg, 7thC|Nondisp trimalleol fx unsp low leg, 7thC +C2863784|T037|AB|S82.856D|ICD10CM|Nondisp trimalleol fx unsp low leg, 7thD|Nondisp trimalleol fx unsp low leg, 7thD +C2863785|T037|AB|S82.856E|ICD10CM|Nondisp trimalleol fx unsp low leg, 7thE|Nondisp trimalleol fx unsp low leg, 7thE +C2863786|T037|AB|S82.856F|ICD10CM|Nondisp trimalleol fx unsp low leg, 7thF|Nondisp trimalleol fx unsp low leg, 7thF +C2863787|T037|AB|S82.856G|ICD10CM|Nondisp trimalleol fx unsp low leg, 7thG|Nondisp trimalleol fx unsp low leg, 7thG +C2863788|T037|AB|S82.856H|ICD10CM|Nondisp trimalleol fx unsp low leg, 7thH|Nondisp trimalleol fx unsp low leg, 7thH +C2863789|T037|AB|S82.856J|ICD10CM|Nondisp trimalleol fx unsp low leg, 7thJ|Nondisp trimalleol fx unsp low leg, 7thJ +C2863790|T037|AB|S82.856K|ICD10CM|Nondisp trimalleol fx unsp low leg, 7thK|Nondisp trimalleol fx unsp low leg, 7thK +C2863791|T037|AB|S82.856M|ICD10CM|Nondisp trimalleol fx unsp low leg, 7thM|Nondisp trimalleol fx unsp low leg, 7thM +C2863792|T037|AB|S82.856N|ICD10CM|Nondisp trimalleol fx unsp low leg, 7thN|Nondisp trimalleol fx unsp low leg, 7thN +C2863793|T037|AB|S82.856P|ICD10CM|Nondisp trimalleol fx unsp low leg, 7thP|Nondisp trimalleol fx unsp low leg, 7thP +C2863794|T037|AB|S82.856Q|ICD10CM|Nondisp trimalleol fx unsp low leg, 7thQ|Nondisp trimalleol fx unsp low leg, 7thQ +C2863795|T037|AB|S82.856R|ICD10CM|Nondisp trimalleol fx unsp low leg, 7thR|Nondisp trimalleol fx unsp low leg, 7thR +C2863796|T037|AB|S82.856S|ICD10CM|Nondisp trimalleolar fracture of unsp lower leg, sequela|Nondisp trimalleolar fracture of unsp lower leg, sequela +C2863796|T037|PT|S82.856S|ICD10CM|Nondisplaced trimalleolar fracture of unspecified lower leg, sequela|Nondisplaced trimalleolar fracture of unspecified lower leg, sequela +C2863797|T037|AB|S82.86|ICD10CM|Maisonneuve's fracture|Maisonneuve's fracture +C2863797|T037|HT|S82.86|ICD10CM|Maisonneuve's fracture|Maisonneuve's fracture +C2863798|T037|AB|S82.861|ICD10CM|Displaced Maisonneuve's fracture of right leg|Displaced Maisonneuve's fracture of right leg +C2863798|T037|HT|S82.861|ICD10CM|Displaced Maisonneuve's fracture of right leg|Displaced Maisonneuve's fracture of right leg +C2863799|T037|AB|S82.861A|ICD10CM|Displaced Maisonneuve's fracture of right leg, init|Displaced Maisonneuve's fracture of right leg, init +C2863799|T037|PT|S82.861A|ICD10CM|Displaced Maisonneuve's fracture of right leg, initial encounter for closed fracture|Displaced Maisonneuve's fracture of right leg, initial encounter for closed fracture +C2863800|T037|AB|S82.861B|ICD10CM|Displ Maisonneuve's fx right leg, init for opn fx type I/2|Displ Maisonneuve's fx right leg, init for opn fx type I/2 +C2863800|T037|PT|S82.861B|ICD10CM|Displaced Maisonneuve's fracture of right leg, initial encounter for open fracture type I or II|Displaced Maisonneuve's fracture of right leg, initial encounter for open fracture type I or II +C2863801|T037|AB|S82.861C|ICD10CM|Displ Maisonneuve's fx r leg, init for opn fx type 3A/B/C|Displ Maisonneuve's fx r leg, init for opn fx type 3A/B/C +C2863802|T037|AB|S82.861D|ICD10CM|Displ Maisonneuve's fx r leg, subs for clos fx w routn heal|Displ Maisonneuve's fx r leg, subs for clos fx w routn heal +C2863803|T037|AB|S82.861E|ICD10CM|Displ Maisonneuve's fx r leg, 7thE|Displ Maisonneuve's fx r leg, 7thE +C2863804|T037|AB|S82.861F|ICD10CM|Displ Maisonneuve's fx r leg, 7thF|Displ Maisonneuve's fx r leg, 7thF +C2863805|T037|AB|S82.861G|ICD10CM|Displ Maisonneuve's fx r leg, subs for clos fx w delay heal|Displ Maisonneuve's fx r leg, subs for clos fx w delay heal +C2863806|T037|AB|S82.861H|ICD10CM|Displ Maisonneuve's fx r leg, 7thH|Displ Maisonneuve's fx r leg, 7thH +C2863807|T037|AB|S82.861J|ICD10CM|Displ Maisonneuve's fx r leg, 7thJ|Displ Maisonneuve's fx r leg, 7thJ +C2863808|T037|AB|S82.861K|ICD10CM|Displ Maisonneuve's fx r leg, subs for clos fx w nonunion|Displ Maisonneuve's fx r leg, subs for clos fx w nonunion +C2863809|T037|AB|S82.861M|ICD10CM|Displ Maisonneuve's fx r leg, 7thM|Displ Maisonneuve's fx r leg, 7thM +C2863810|T037|AB|S82.861N|ICD10CM|Displ Maisonneuve's fx r leg, 7thN|Displ Maisonneuve's fx r leg, 7thN +C2863811|T037|AB|S82.861P|ICD10CM|Displ Maisonneuve's fx r leg, subs for clos fx w malunion|Displ Maisonneuve's fx r leg, subs for clos fx w malunion +C2863812|T037|AB|S82.861Q|ICD10CM|Displ Maisonneuve's fx r leg, 7thQ|Displ Maisonneuve's fx r leg, 7thQ +C2863813|T037|AB|S82.861R|ICD10CM|Displ Maisonneuve's fx r leg, 7thR|Displ Maisonneuve's fx r leg, 7thR +C2863814|T037|PT|S82.861S|ICD10CM|Displaced Maisonneuve's fracture of right leg, sequela|Displaced Maisonneuve's fracture of right leg, sequela +C2863814|T037|AB|S82.861S|ICD10CM|Displaced Maisonneuve's fracture of right leg, sequela|Displaced Maisonneuve's fracture of right leg, sequela +C2863815|T037|AB|S82.862|ICD10CM|Displaced Maisonneuve's fracture of left leg|Displaced Maisonneuve's fracture of left leg +C2863815|T037|HT|S82.862|ICD10CM|Displaced Maisonneuve's fracture of left leg|Displaced Maisonneuve's fracture of left leg +C2863816|T037|AB|S82.862A|ICD10CM|Displaced Maisonneuve's fracture of left leg, init|Displaced Maisonneuve's fracture of left leg, init +C2863816|T037|PT|S82.862A|ICD10CM|Displaced Maisonneuve's fracture of left leg, initial encounter for closed fracture|Displaced Maisonneuve's fracture of left leg, initial encounter for closed fracture +C2863817|T037|AB|S82.862B|ICD10CM|Displ Maisonneuve's fx left leg, init for opn fx type I/2|Displ Maisonneuve's fx left leg, init for opn fx type I/2 +C2863817|T037|PT|S82.862B|ICD10CM|Displaced Maisonneuve's fracture of left leg, initial encounter for open fracture type I or II|Displaced Maisonneuve's fracture of left leg, initial encounter for open fracture type I or II +C2863818|T037|AB|S82.862C|ICD10CM|Displ Maisonneuve's fx left leg, init for opn fx type 3A/B/C|Displ Maisonneuve's fx left leg, init for opn fx type 3A/B/C +C2863819|T037|AB|S82.862D|ICD10CM|Displ Maisonneuve's fx l leg, subs for clos fx w routn heal|Displ Maisonneuve's fx l leg, subs for clos fx w routn heal +C2863820|T037|AB|S82.862E|ICD10CM|Displ Maisonneuve's fx l leg, 7thE|Displ Maisonneuve's fx l leg, 7thE +C2863821|T037|AB|S82.862F|ICD10CM|Displ Maisonneuve's fx l leg, 7thF|Displ Maisonneuve's fx l leg, 7thF +C2863822|T037|AB|S82.862G|ICD10CM|Displ Maisonneuve's fx l leg, subs for clos fx w delay heal|Displ Maisonneuve's fx l leg, subs for clos fx w delay heal +C2863823|T037|AB|S82.862H|ICD10CM|Displ Maisonneuve's fx l leg, 7thH|Displ Maisonneuve's fx l leg, 7thH +C2863824|T037|AB|S82.862J|ICD10CM|Displ Maisonneuve's fx l leg, 7thJ|Displ Maisonneuve's fx l leg, 7thJ +C2863825|T037|AB|S82.862K|ICD10CM|Displ Maisonneuve's fx left leg, subs for clos fx w nonunion|Displ Maisonneuve's fx left leg, subs for clos fx w nonunion +C2863825|T037|PT|S82.862K|ICD10CM|Displaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with nonunion|Displaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with nonunion +C2863826|T037|AB|S82.862M|ICD10CM|Displ Maisonneuve's fx l leg, 7thM|Displ Maisonneuve's fx l leg, 7thM +C2863827|T037|AB|S82.862N|ICD10CM|Displ Maisonneuve's fx l leg, 7thN|Displ Maisonneuve's fx l leg, 7thN +C2863828|T037|AB|S82.862P|ICD10CM|Displ Maisonneuve's fx left leg, subs for clos fx w malunion|Displ Maisonneuve's fx left leg, subs for clos fx w malunion +C2863828|T037|PT|S82.862P|ICD10CM|Displaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with malunion|Displaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with malunion +C2863829|T037|AB|S82.862Q|ICD10CM|Displ Maisonneuve's fx l leg, 7thQ|Displ Maisonneuve's fx l leg, 7thQ +C2863830|T037|AB|S82.862R|ICD10CM|Displ Maisonneuve's fx l leg, 7thR|Displ Maisonneuve's fx l leg, 7thR +C2863831|T037|PT|S82.862S|ICD10CM|Displaced Maisonneuve's fracture of left leg, sequela|Displaced Maisonneuve's fracture of left leg, sequela +C2863831|T037|AB|S82.862S|ICD10CM|Displaced Maisonneuve's fracture of left leg, sequela|Displaced Maisonneuve's fracture of left leg, sequela +C2863832|T037|AB|S82.863|ICD10CM|Displaced Maisonneuve's fracture of unspecified leg|Displaced Maisonneuve's fracture of unspecified leg +C2863832|T037|HT|S82.863|ICD10CM|Displaced Maisonneuve's fracture of unspecified leg|Displaced Maisonneuve's fracture of unspecified leg +C2863833|T037|AB|S82.863A|ICD10CM|Displaced Maisonneuve's fracture of unsp leg, init|Displaced Maisonneuve's fracture of unsp leg, init +C2863833|T037|PT|S82.863A|ICD10CM|Displaced Maisonneuve's fracture of unspecified leg, initial encounter for closed fracture|Displaced Maisonneuve's fracture of unspecified leg, initial encounter for closed fracture +C2863834|T037|AB|S82.863B|ICD10CM|Displ Maisonneuve's fx unsp leg, init for opn fx type I/2|Displ Maisonneuve's fx unsp leg, init for opn fx type I/2 +C2863835|T037|AB|S82.863C|ICD10CM|Displ Maisonneuve's fx unsp leg, init for opn fx type 3A/B/C|Displ Maisonneuve's fx unsp leg, init for opn fx type 3A/B/C +C2863836|T037|AB|S82.863D|ICD10CM|Displ Maisonneuve's fx unsp leg, 7thD|Displ Maisonneuve's fx unsp leg, 7thD +C2863837|T037|AB|S82.863E|ICD10CM|Displ Maisonneuve's fx unsp leg, 7thE|Displ Maisonneuve's fx unsp leg, 7thE +C2863838|T037|AB|S82.863F|ICD10CM|Displ Maisonneuve's fx unsp leg, 7thF|Displ Maisonneuve's fx unsp leg, 7thF +C2863839|T037|AB|S82.863G|ICD10CM|Displ Maisonneuve's fx unsp leg, 7thG|Displ Maisonneuve's fx unsp leg, 7thG +C2863840|T037|AB|S82.863H|ICD10CM|Displ Maisonneuve's fx unsp leg, 7thH|Displ Maisonneuve's fx unsp leg, 7thH +C2863841|T037|AB|S82.863J|ICD10CM|Displ Maisonneuve's fx unsp leg, 7thJ|Displ Maisonneuve's fx unsp leg, 7thJ +C2863842|T037|AB|S82.863K|ICD10CM|Displ Maisonneuve's fx unsp leg, subs for clos fx w nonunion|Displ Maisonneuve's fx unsp leg, subs for clos fx w nonunion +C2863843|T037|AB|S82.863M|ICD10CM|Displ Maisonneuve's fx unsp leg, 7thM|Displ Maisonneuve's fx unsp leg, 7thM +C2863844|T037|AB|S82.863N|ICD10CM|Displ Maisonneuve's fx unsp leg, 7thN|Displ Maisonneuve's fx unsp leg, 7thN +C2863845|T037|AB|S82.863P|ICD10CM|Displ Maisonneuve's fx unsp leg, subs for clos fx w malunion|Displ Maisonneuve's fx unsp leg, subs for clos fx w malunion +C2863846|T037|AB|S82.863Q|ICD10CM|Displ Maisonneuve's fx unsp leg, 7thQ|Displ Maisonneuve's fx unsp leg, 7thQ +C2863847|T037|AB|S82.863R|ICD10CM|Displ Maisonneuve's fx unsp leg, 7thR|Displ Maisonneuve's fx unsp leg, 7thR +C2863848|T037|AB|S82.863S|ICD10CM|Displaced Maisonneuve's fracture of unspecified leg, sequela|Displaced Maisonneuve's fracture of unspecified leg, sequela +C2863848|T037|PT|S82.863S|ICD10CM|Displaced Maisonneuve's fracture of unspecified leg, sequela|Displaced Maisonneuve's fracture of unspecified leg, sequela +C2863849|T037|AB|S82.864|ICD10CM|Nondisplaced Maisonneuve's fracture of right leg|Nondisplaced Maisonneuve's fracture of right leg +C2863849|T037|HT|S82.864|ICD10CM|Nondisplaced Maisonneuve's fracture of right leg|Nondisplaced Maisonneuve's fracture of right leg +C2863850|T037|AB|S82.864A|ICD10CM|Nondisplaced Maisonneuve's fracture of right leg, init|Nondisplaced Maisonneuve's fracture of right leg, init +C2863850|T037|PT|S82.864A|ICD10CM|Nondisplaced Maisonneuve's fracture of right leg, initial encounter for closed fracture|Nondisplaced Maisonneuve's fracture of right leg, initial encounter for closed fracture +C2863851|T037|AB|S82.864B|ICD10CM|Nondisp Maisonneuve's fx right leg, init for opn fx type I/2|Nondisp Maisonneuve's fx right leg, init for opn fx type I/2 +C2863851|T037|PT|S82.864B|ICD10CM|Nondisplaced Maisonneuve's fracture of right leg, initial encounter for open fracture type I or II|Nondisplaced Maisonneuve's fracture of right leg, initial encounter for open fracture type I or II +C2863852|T037|AB|S82.864C|ICD10CM|Nondisp Maisonneuve's fx r leg, init for opn fx type 3A/B/C|Nondisp Maisonneuve's fx r leg, init for opn fx type 3A/B/C +C2863853|T037|AB|S82.864D|ICD10CM|Nondisp Maisonneuve's fx r leg, 7thD|Nondisp Maisonneuve's fx r leg, 7thD +C2863854|T037|AB|S82.864E|ICD10CM|Nondisp Maisonneuve's fx r leg, 7thE|Nondisp Maisonneuve's fx r leg, 7thE +C2863855|T037|AB|S82.864F|ICD10CM|Nondisp Maisonneuve's fx r leg, 7thF|Nondisp Maisonneuve's fx r leg, 7thF +C2863856|T037|AB|S82.864G|ICD10CM|Nondisp Maisonneuve's fx r leg, 7thG|Nondisp Maisonneuve's fx r leg, 7thG +C2863857|T037|AB|S82.864H|ICD10CM|Nondisp Maisonneuve's fx r leg, 7thH|Nondisp Maisonneuve's fx r leg, 7thH +C2863858|T037|AB|S82.864J|ICD10CM|Nondisp Maisonneuve's fx r leg, 7thJ|Nondisp Maisonneuve's fx r leg, 7thJ +C2863859|T037|AB|S82.864K|ICD10CM|Nondisp Maisonneuve's fx r leg, subs for clos fx w nonunion|Nondisp Maisonneuve's fx r leg, subs for clos fx w nonunion +C2863860|T037|AB|S82.864M|ICD10CM|Nondisp Maisonneuve's fx r leg, 7thM|Nondisp Maisonneuve's fx r leg, 7thM +C2863861|T037|AB|S82.864N|ICD10CM|Nondisp Maisonneuve's fx r leg, 7thN|Nondisp Maisonneuve's fx r leg, 7thN +C2863862|T037|AB|S82.864P|ICD10CM|Nondisp Maisonneuve's fx r leg, subs for clos fx w malunion|Nondisp Maisonneuve's fx r leg, subs for clos fx w malunion +C2863863|T037|AB|S82.864Q|ICD10CM|Nondisp Maisonneuve's fx r leg, 7thQ|Nondisp Maisonneuve's fx r leg, 7thQ +C2863864|T037|AB|S82.864R|ICD10CM|Nondisp Maisonneuve's fx r leg, 7thR|Nondisp Maisonneuve's fx r leg, 7thR +C2863865|T037|PT|S82.864S|ICD10CM|Nondisplaced Maisonneuve's fracture of right leg, sequela|Nondisplaced Maisonneuve's fracture of right leg, sequela +C2863865|T037|AB|S82.864S|ICD10CM|Nondisplaced Maisonneuve's fracture of right leg, sequela|Nondisplaced Maisonneuve's fracture of right leg, sequela +C2863866|T037|AB|S82.865|ICD10CM|Nondisplaced Maisonneuve's fracture of left leg|Nondisplaced Maisonneuve's fracture of left leg +C2863866|T037|HT|S82.865|ICD10CM|Nondisplaced Maisonneuve's fracture of left leg|Nondisplaced Maisonneuve's fracture of left leg +C2863867|T037|AB|S82.865A|ICD10CM|Nondisplaced Maisonneuve's fracture of left leg, init|Nondisplaced Maisonneuve's fracture of left leg, init +C2863867|T037|PT|S82.865A|ICD10CM|Nondisplaced Maisonneuve's fracture of left leg, initial encounter for closed fracture|Nondisplaced Maisonneuve's fracture of left leg, initial encounter for closed fracture +C2863868|T037|AB|S82.865B|ICD10CM|Nondisp Maisonneuve's fx left leg, init for opn fx type I/2|Nondisp Maisonneuve's fx left leg, init for opn fx type I/2 +C2863868|T037|PT|S82.865B|ICD10CM|Nondisplaced Maisonneuve's fracture of left leg, initial encounter for open fracture type I or II|Nondisplaced Maisonneuve's fracture of left leg, initial encounter for open fracture type I or II +C2863869|T037|AB|S82.865C|ICD10CM|Nondisp Maisonneuve's fx l leg, init for opn fx type 3A/B/C|Nondisp Maisonneuve's fx l leg, init for opn fx type 3A/B/C +C2863870|T037|AB|S82.865D|ICD10CM|Nondisp Maisonneuve's fx l leg, 7thD|Nondisp Maisonneuve's fx l leg, 7thD +C2863871|T037|AB|S82.865E|ICD10CM|Nondisp Maisonneuve's fx l leg, 7thE|Nondisp Maisonneuve's fx l leg, 7thE +C2863872|T037|AB|S82.865F|ICD10CM|Nondisp Maisonneuve's fx l leg, 7thF|Nondisp Maisonneuve's fx l leg, 7thF +C2863873|T037|AB|S82.865G|ICD10CM|Nondisp Maisonneuve's fx l leg, 7thG|Nondisp Maisonneuve's fx l leg, 7thG +C2863874|T037|AB|S82.865H|ICD10CM|Nondisp Maisonneuve's fx l leg, 7thH|Nondisp Maisonneuve's fx l leg, 7thH +C2863875|T037|AB|S82.865J|ICD10CM|Nondisp Maisonneuve's fx l leg, 7thJ|Nondisp Maisonneuve's fx l leg, 7thJ +C2863876|T037|AB|S82.865K|ICD10CM|Nondisp Maisonneuve's fx l leg, subs for clos fx w nonunion|Nondisp Maisonneuve's fx l leg, subs for clos fx w nonunion +C2863877|T037|AB|S82.865M|ICD10CM|Nondisp Maisonneuve's fx l leg, 7thM|Nondisp Maisonneuve's fx l leg, 7thM +C2863878|T037|AB|S82.865N|ICD10CM|Nondisp Maisonneuve's fx l leg, 7thN|Nondisp Maisonneuve's fx l leg, 7thN +C2863879|T037|AB|S82.865P|ICD10CM|Nondisp Maisonneuve's fx l leg, subs for clos fx w malunion|Nondisp Maisonneuve's fx l leg, subs for clos fx w malunion +C2863880|T037|AB|S82.865Q|ICD10CM|Nondisp Maisonneuve's fx l leg, 7thQ|Nondisp Maisonneuve's fx l leg, 7thQ +C2863881|T037|AB|S82.865R|ICD10CM|Nondisp Maisonneuve's fx l leg, 7thR|Nondisp Maisonneuve's fx l leg, 7thR +C2863882|T037|PT|S82.865S|ICD10CM|Nondisplaced Maisonneuve's fracture of left leg, sequela|Nondisplaced Maisonneuve's fracture of left leg, sequela +C2863882|T037|AB|S82.865S|ICD10CM|Nondisplaced Maisonneuve's fracture of left leg, sequela|Nondisplaced Maisonneuve's fracture of left leg, sequela +C2863883|T037|AB|S82.866|ICD10CM|Nondisplaced Maisonneuve's fracture of unspecified leg|Nondisplaced Maisonneuve's fracture of unspecified leg +C2863883|T037|HT|S82.866|ICD10CM|Nondisplaced Maisonneuve's fracture of unspecified leg|Nondisplaced Maisonneuve's fracture of unspecified leg +C2863884|T037|AB|S82.866A|ICD10CM|Nondisplaced Maisonneuve's fracture of unsp leg, init|Nondisplaced Maisonneuve's fracture of unsp leg, init +C2863884|T037|PT|S82.866A|ICD10CM|Nondisplaced Maisonneuve's fracture of unspecified leg, initial encounter for closed fracture|Nondisplaced Maisonneuve's fracture of unspecified leg, initial encounter for closed fracture +C2863885|T037|AB|S82.866B|ICD10CM|Nondisp Maisonneuve's fx unsp leg, init for opn fx type I/2|Nondisp Maisonneuve's fx unsp leg, init for opn fx type I/2 +C2863886|T037|AB|S82.866C|ICD10CM|Nondisp Maisonneuve's fx unsp leg, 7thC|Nondisp Maisonneuve's fx unsp leg, 7thC +C2863887|T037|AB|S82.866D|ICD10CM|Nondisp Maisonneuve's fx unsp leg, 7thD|Nondisp Maisonneuve's fx unsp leg, 7thD +C2863888|T037|AB|S82.866E|ICD10CM|Nondisp Maisonneuve's fx unsp leg, 7thE|Nondisp Maisonneuve's fx unsp leg, 7thE +C2863889|T037|AB|S82.866F|ICD10CM|Nondisp Maisonneuve's fx unsp leg, 7thF|Nondisp Maisonneuve's fx unsp leg, 7thF +C2863890|T037|AB|S82.866G|ICD10CM|Nondisp Maisonneuve's fx unsp leg, 7thG|Nondisp Maisonneuve's fx unsp leg, 7thG +C2863891|T037|AB|S82.866H|ICD10CM|Nondisp Maisonneuve's fx unsp leg, 7thH|Nondisp Maisonneuve's fx unsp leg, 7thH +C2863892|T037|AB|S82.866J|ICD10CM|Nondisp Maisonneuve's fx unsp leg, 7thJ|Nondisp Maisonneuve's fx unsp leg, 7thJ +C2863893|T037|AB|S82.866K|ICD10CM|Nondisp Maisonneuve's fx unsp leg, 7thK|Nondisp Maisonneuve's fx unsp leg, 7thK +C2863894|T037|AB|S82.866M|ICD10CM|Nondisp Maisonneuve's fx unsp leg, 7thM|Nondisp Maisonneuve's fx unsp leg, 7thM +C2863895|T037|AB|S82.866N|ICD10CM|Nondisp Maisonneuve's fx unsp leg, 7thN|Nondisp Maisonneuve's fx unsp leg, 7thN +C2863896|T037|AB|S82.866P|ICD10CM|Nondisp Maisonneuve's fx unsp leg, 7thP|Nondisp Maisonneuve's fx unsp leg, 7thP +C2863897|T037|AB|S82.866Q|ICD10CM|Nondisp Maisonneuve's fx unsp leg, 7thQ|Nondisp Maisonneuve's fx unsp leg, 7thQ +C2863898|T037|AB|S82.866R|ICD10CM|Nondisp Maisonneuve's fx unsp leg, 7thR|Nondisp Maisonneuve's fx unsp leg, 7thR +C2863899|T037|AB|S82.866S|ICD10CM|Nondisplaced Maisonneuve's fracture of unsp leg, sequela|Nondisplaced Maisonneuve's fracture of unsp leg, sequela +C2863899|T037|PT|S82.866S|ICD10CM|Nondisplaced Maisonneuve's fracture of unspecified leg, sequela|Nondisplaced Maisonneuve's fracture of unspecified leg, sequela +C2863900|T037|AB|S82.87|ICD10CM|Pilon fracture of tibia|Pilon fracture of tibia +C2863900|T037|HT|S82.87|ICD10CM|Pilon fracture of tibia|Pilon fracture of tibia +C2863901|T037|AB|S82.871|ICD10CM|Displaced pilon fracture of right tibia|Displaced pilon fracture of right tibia +C2863901|T037|HT|S82.871|ICD10CM|Displaced pilon fracture of right tibia|Displaced pilon fracture of right tibia +C2863902|T037|AB|S82.871A|ICD10CM|Displaced pilon fracture of right tibia, init for clos fx|Displaced pilon fracture of right tibia, init for clos fx +C2863902|T037|PT|S82.871A|ICD10CM|Displaced pilon fracture of right tibia, initial encounter for closed fracture|Displaced pilon fracture of right tibia, initial encounter for closed fracture +C2863903|T037|PT|S82.871B|ICD10CM|Displaced pilon fracture of right tibia, initial encounter for open fracture type I or II|Displaced pilon fracture of right tibia, initial encounter for open fracture type I or II +C2863903|T037|AB|S82.871B|ICD10CM|Displaced pilon fx right tibia, init for opn fx type I/2|Displaced pilon fx right tibia, init for opn fx type I/2 +C2863904|T037|AB|S82.871C|ICD10CM|Displaced pilon fx right tibia, init for opn fx type 3A/B/C|Displaced pilon fx right tibia, init for opn fx type 3A/B/C +C2863905|T037|AB|S82.871D|ICD10CM|Displaced pilon fx r tibia, subs for clos fx w routn heal|Displaced pilon fx r tibia, subs for clos fx w routn heal +C2863906|T037|AB|S82.871E|ICD10CM|Displ pilon fx r tibia, 7thE|Displ pilon fx r tibia, 7thE +C2863907|T037|AB|S82.871F|ICD10CM|Displ pilon fx r tibia, 7thF|Displ pilon fx r tibia, 7thF +C2863908|T037|AB|S82.871G|ICD10CM|Displaced pilon fx r tibia, subs for clos fx w delay heal|Displaced pilon fx r tibia, subs for clos fx w delay heal +C2863909|T037|AB|S82.871H|ICD10CM|Displ pilon fx r tibia, 7thH|Displ pilon fx r tibia, 7thH +C2863910|T037|AB|S82.871J|ICD10CM|Displ pilon fx r tibia, 7thJ|Displ pilon fx r tibia, 7thJ +C2863911|T037|PT|S82.871K|ICD10CM|Displaced pilon fracture of right tibia, subsequent encounter for closed fracture with nonunion|Displaced pilon fracture of right tibia, subsequent encounter for closed fracture with nonunion +C2863911|T037|AB|S82.871K|ICD10CM|Displaced pilon fx right tibia, subs for clos fx w nonunion|Displaced pilon fx right tibia, subs for clos fx w nonunion +C2863912|T037|AB|S82.871M|ICD10CM|Displ pilon fx r tibia, subs for opn fx type I/2 w nonunion|Displ pilon fx r tibia, subs for opn fx type I/2 w nonunion +C2863913|T037|AB|S82.871N|ICD10CM|Displ pilon fx r tibia, 7thN|Displ pilon fx r tibia, 7thN +C2863914|T037|PT|S82.871P|ICD10CM|Displaced pilon fracture of right tibia, subsequent encounter for closed fracture with malunion|Displaced pilon fracture of right tibia, subsequent encounter for closed fracture with malunion +C2863914|T037|AB|S82.871P|ICD10CM|Displaced pilon fx right tibia, subs for clos fx w malunion|Displaced pilon fx right tibia, subs for clos fx w malunion +C2863915|T037|AB|S82.871Q|ICD10CM|Displ pilon fx r tibia, subs for opn fx type I/2 w malunion|Displ pilon fx r tibia, subs for opn fx type I/2 w malunion +C2863916|T037|AB|S82.871R|ICD10CM|Displ pilon fx r tibia, 7thR|Displ pilon fx r tibia, 7thR +C2863917|T037|PT|S82.871S|ICD10CM|Displaced pilon fracture of right tibia, sequela|Displaced pilon fracture of right tibia, sequela +C2863917|T037|AB|S82.871S|ICD10CM|Displaced pilon fracture of right tibia, sequela|Displaced pilon fracture of right tibia, sequela +C2863918|T037|AB|S82.872|ICD10CM|Displaced pilon fracture of left tibia|Displaced pilon fracture of left tibia +C2863918|T037|HT|S82.872|ICD10CM|Displaced pilon fracture of left tibia|Displaced pilon fracture of left tibia +C2863919|T037|AB|S82.872A|ICD10CM|Displaced pilon fracture of left tibia, init for clos fx|Displaced pilon fracture of left tibia, init for clos fx +C2863919|T037|PT|S82.872A|ICD10CM|Displaced pilon fracture of left tibia, initial encounter for closed fracture|Displaced pilon fracture of left tibia, initial encounter for closed fracture +C2863920|T037|PT|S82.872B|ICD10CM|Displaced pilon fracture of left tibia, initial encounter for open fracture type I or II|Displaced pilon fracture of left tibia, initial encounter for open fracture type I or II +C2863920|T037|AB|S82.872B|ICD10CM|Displaced pilon fx left tibia, init for opn fx type I/2|Displaced pilon fx left tibia, init for opn fx type I/2 +C2863921|T037|PT|S82.872C|ICD10CM|Displaced pilon fracture of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC|Displaced pilon fracture of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2863921|T037|AB|S82.872C|ICD10CM|Displaced pilon fx left tibia, init for opn fx type 3A/B/C|Displaced pilon fx left tibia, init for opn fx type 3A/B/C +C2863922|T037|AB|S82.872D|ICD10CM|Displaced pilon fx left tibia, subs for clos fx w routn heal|Displaced pilon fx left tibia, subs for clos fx w routn heal +C2863923|T037|AB|S82.872E|ICD10CM|Displ pilon fx l tibia, 7thE|Displ pilon fx l tibia, 7thE +C2863924|T037|AB|S82.872F|ICD10CM|Displ pilon fx l tibia, 7thF|Displ pilon fx l tibia, 7thF +C2863925|T037|AB|S82.872G|ICD10CM|Displaced pilon fx left tibia, subs for clos fx w delay heal|Displaced pilon fx left tibia, subs for clos fx w delay heal +C2863926|T037|AB|S82.872H|ICD10CM|Displ pilon fx l tibia, 7thH|Displ pilon fx l tibia, 7thH +C2863927|T037|AB|S82.872J|ICD10CM|Displ pilon fx l tibia, 7thJ|Displ pilon fx l tibia, 7thJ +C2863928|T037|PT|S82.872K|ICD10CM|Displaced pilon fracture of left tibia, subsequent encounter for closed fracture with nonunion|Displaced pilon fracture of left tibia, subsequent encounter for closed fracture with nonunion +C2863928|T037|AB|S82.872K|ICD10CM|Displaced pilon fx left tibia, subs for clos fx w nonunion|Displaced pilon fx left tibia, subs for clos fx w nonunion +C2863929|T037|AB|S82.872M|ICD10CM|Displ pilon fx l tibia, subs for opn fx type I/2 w nonunion|Displ pilon fx l tibia, subs for opn fx type I/2 w nonunion +C2863930|T037|AB|S82.872N|ICD10CM|Displ pilon fx l tibia, 7thN|Displ pilon fx l tibia, 7thN +C2863931|T037|PT|S82.872P|ICD10CM|Displaced pilon fracture of left tibia, subsequent encounter for closed fracture with malunion|Displaced pilon fracture of left tibia, subsequent encounter for closed fracture with malunion +C2863931|T037|AB|S82.872P|ICD10CM|Displaced pilon fx left tibia, subs for clos fx w malunion|Displaced pilon fx left tibia, subs for clos fx w malunion +C2863932|T037|AB|S82.872Q|ICD10CM|Displ pilon fx l tibia, subs for opn fx type I/2 w malunion|Displ pilon fx l tibia, subs for opn fx type I/2 w malunion +C2863933|T037|AB|S82.872R|ICD10CM|Displ pilon fx l tibia, 7thR|Displ pilon fx l tibia, 7thR +C2863934|T037|PT|S82.872S|ICD10CM|Displaced pilon fracture of left tibia, sequela|Displaced pilon fracture of left tibia, sequela +C2863934|T037|AB|S82.872S|ICD10CM|Displaced pilon fracture of left tibia, sequela|Displaced pilon fracture of left tibia, sequela +C2863935|T037|AB|S82.873|ICD10CM|Displaced pilon fracture of unspecified tibia|Displaced pilon fracture of unspecified tibia +C2863935|T037|HT|S82.873|ICD10CM|Displaced pilon fracture of unspecified tibia|Displaced pilon fracture of unspecified tibia +C2863936|T037|AB|S82.873A|ICD10CM|Displaced pilon fracture of unsp tibia, init for clos fx|Displaced pilon fracture of unsp tibia, init for clos fx +C2863936|T037|PT|S82.873A|ICD10CM|Displaced pilon fracture of unspecified tibia, initial encounter for closed fracture|Displaced pilon fracture of unspecified tibia, initial encounter for closed fracture +C2863937|T037|PT|S82.873B|ICD10CM|Displaced pilon fracture of unspecified tibia, initial encounter for open fracture type I or II|Displaced pilon fracture of unspecified tibia, initial encounter for open fracture type I or II +C2863937|T037|AB|S82.873B|ICD10CM|Displaced pilon fx unsp tibia, init for opn fx type I/2|Displaced pilon fx unsp tibia, init for opn fx type I/2 +C2863938|T037|AB|S82.873C|ICD10CM|Displaced pilon fx unsp tibia, init for opn fx type 3A/B/C|Displaced pilon fx unsp tibia, init for opn fx type 3A/B/C +C2863939|T037|AB|S82.873D|ICD10CM|Displaced pilon fx unsp tibia, subs for clos fx w routn heal|Displaced pilon fx unsp tibia, subs for clos fx w routn heal +C2863940|T037|AB|S82.873E|ICD10CM|Displ pilon fx unsp tibia, 7thE|Displ pilon fx unsp tibia, 7thE +C2863941|T037|AB|S82.873F|ICD10CM|Displ pilon fx unsp tibia, 7thF|Displ pilon fx unsp tibia, 7thF +C2863942|T037|AB|S82.873G|ICD10CM|Displaced pilon fx unsp tibia, subs for clos fx w delay heal|Displaced pilon fx unsp tibia, subs for clos fx w delay heal +C2863943|T037|AB|S82.873H|ICD10CM|Displ pilon fx unsp tibia, 7thH|Displ pilon fx unsp tibia, 7thH +C2863944|T037|AB|S82.873J|ICD10CM|Displ pilon fx unsp tibia, 7thJ|Displ pilon fx unsp tibia, 7thJ +C2863945|T037|AB|S82.873K|ICD10CM|Displaced pilon fx unsp tibia, subs for clos fx w nonunion|Displaced pilon fx unsp tibia, subs for clos fx w nonunion +C2863946|T037|AB|S82.873M|ICD10CM|Displ pilon fx unsp tibia, 7thM|Displ pilon fx unsp tibia, 7thM +C2863947|T037|AB|S82.873N|ICD10CM|Displ pilon fx unsp tibia, 7thN|Displ pilon fx unsp tibia, 7thN +C2863948|T037|AB|S82.873P|ICD10CM|Displaced pilon fx unsp tibia, subs for clos fx w malunion|Displaced pilon fx unsp tibia, subs for clos fx w malunion +C2863949|T037|AB|S82.873Q|ICD10CM|Displ pilon fx unsp tibia, 7thQ|Displ pilon fx unsp tibia, 7thQ +C2863950|T037|AB|S82.873R|ICD10CM|Displ pilon fx unsp tibia, 7thR|Displ pilon fx unsp tibia, 7thR +C2863951|T037|PT|S82.873S|ICD10CM|Displaced pilon fracture of unspecified tibia, sequela|Displaced pilon fracture of unspecified tibia, sequela +C2863951|T037|AB|S82.873S|ICD10CM|Displaced pilon fracture of unspecified tibia, sequela|Displaced pilon fracture of unspecified tibia, sequela +C2863952|T037|AB|S82.874|ICD10CM|Nondisplaced pilon fracture of right tibia|Nondisplaced pilon fracture of right tibia +C2863952|T037|HT|S82.874|ICD10CM|Nondisplaced pilon fracture of right tibia|Nondisplaced pilon fracture of right tibia +C2863953|T037|AB|S82.874A|ICD10CM|Nondisplaced pilon fracture of right tibia, init for clos fx|Nondisplaced pilon fracture of right tibia, init for clos fx +C2863953|T037|PT|S82.874A|ICD10CM|Nondisplaced pilon fracture of right tibia, initial encounter for closed fracture|Nondisplaced pilon fracture of right tibia, initial encounter for closed fracture +C2863954|T037|AB|S82.874B|ICD10CM|Nondisp pilon fx right tibia, init for opn fx type I/2|Nondisp pilon fx right tibia, init for opn fx type I/2 +C2863954|T037|PT|S82.874B|ICD10CM|Nondisplaced pilon fracture of right tibia, initial encounter for open fracture type I or II|Nondisplaced pilon fracture of right tibia, initial encounter for open fracture type I or II +C2863955|T037|AB|S82.874C|ICD10CM|Nondisp pilon fx right tibia, init for opn fx type 3A/B/C|Nondisp pilon fx right tibia, init for opn fx type 3A/B/C +C2863956|T037|AB|S82.874D|ICD10CM|Nondisp pilon fx right tibia, subs for clos fx w routn heal|Nondisp pilon fx right tibia, subs for clos fx w routn heal +C2863957|T037|AB|S82.874E|ICD10CM|Nondisp pilon fx r tibia, 7thE|Nondisp pilon fx r tibia, 7thE +C2863958|T037|AB|S82.874F|ICD10CM|Nondisp pilon fx r tibia, 7thF|Nondisp pilon fx r tibia, 7thF +C2863959|T037|AB|S82.874G|ICD10CM|Nondisp pilon fx right tibia, subs for clos fx w delay heal|Nondisp pilon fx right tibia, subs for clos fx w delay heal +C2863960|T037|AB|S82.874H|ICD10CM|Nondisp pilon fx r tibia, 7thH|Nondisp pilon fx r tibia, 7thH +C2863961|T037|AB|S82.874J|ICD10CM|Nondisp pilon fx r tibia, 7thJ|Nondisp pilon fx r tibia, 7thJ +C2863962|T037|AB|S82.874K|ICD10CM|Nondisp pilon fx right tibia, subs for clos fx w nonunion|Nondisp pilon fx right tibia, subs for clos fx w nonunion +C2863962|T037|PT|S82.874K|ICD10CM|Nondisplaced pilon fracture of right tibia, subsequent encounter for closed fracture with nonunion|Nondisplaced pilon fracture of right tibia, subsequent encounter for closed fracture with nonunion +C2863963|T037|AB|S82.874M|ICD10CM|Nondisp pilon fx r tibia, 7thM|Nondisp pilon fx r tibia, 7thM +C2863964|T037|AB|S82.874N|ICD10CM|Nondisp pilon fx r tibia, 7thN|Nondisp pilon fx r tibia, 7thN +C2863965|T037|AB|S82.874P|ICD10CM|Nondisp pilon fx right tibia, subs for clos fx w malunion|Nondisp pilon fx right tibia, subs for clos fx w malunion +C2863965|T037|PT|S82.874P|ICD10CM|Nondisplaced pilon fracture of right tibia, subsequent encounter for closed fracture with malunion|Nondisplaced pilon fracture of right tibia, subsequent encounter for closed fracture with malunion +C2863966|T037|AB|S82.874Q|ICD10CM|Nondisp pilon fx r tibia, 7thQ|Nondisp pilon fx r tibia, 7thQ +C2863967|T037|AB|S82.874R|ICD10CM|Nondisp pilon fx r tibia, 7thR|Nondisp pilon fx r tibia, 7thR +C2863968|T037|PT|S82.874S|ICD10CM|Nondisplaced pilon fracture of right tibia, sequela|Nondisplaced pilon fracture of right tibia, sequela +C2863968|T037|AB|S82.874S|ICD10CM|Nondisplaced pilon fracture of right tibia, sequela|Nondisplaced pilon fracture of right tibia, sequela +C2863969|T037|AB|S82.875|ICD10CM|Nondisplaced pilon fracture of left tibia|Nondisplaced pilon fracture of left tibia +C2863969|T037|HT|S82.875|ICD10CM|Nondisplaced pilon fracture of left tibia|Nondisplaced pilon fracture of left tibia +C2863970|T037|AB|S82.875A|ICD10CM|Nondisplaced pilon fracture of left tibia, init for clos fx|Nondisplaced pilon fracture of left tibia, init for clos fx +C2863970|T037|PT|S82.875A|ICD10CM|Nondisplaced pilon fracture of left tibia, initial encounter for closed fracture|Nondisplaced pilon fracture of left tibia, initial encounter for closed fracture +C2863971|T037|AB|S82.875B|ICD10CM|Nondisp pilon fx left tibia, init for opn fx type I/2|Nondisp pilon fx left tibia, init for opn fx type I/2 +C2863971|T037|PT|S82.875B|ICD10CM|Nondisplaced pilon fracture of left tibia, initial encounter for open fracture type I or II|Nondisplaced pilon fracture of left tibia, initial encounter for open fracture type I or II +C2863972|T037|AB|S82.875C|ICD10CM|Nondisp pilon fx left tibia, init for opn fx type 3A/B/C|Nondisp pilon fx left tibia, init for opn fx type 3A/B/C +C2863973|T037|AB|S82.875D|ICD10CM|Nondisp pilon fx left tibia, subs for clos fx w routn heal|Nondisp pilon fx left tibia, subs for clos fx w routn heal +C2863974|T037|AB|S82.875E|ICD10CM|Nondisp pilon fx l tibia, 7thE|Nondisp pilon fx l tibia, 7thE +C2863975|T037|AB|S82.875F|ICD10CM|Nondisp pilon fx l tibia, 7thF|Nondisp pilon fx l tibia, 7thF +C2863976|T037|AB|S82.875G|ICD10CM|Nondisp pilon fx left tibia, subs for clos fx w delay heal|Nondisp pilon fx left tibia, subs for clos fx w delay heal +C2863977|T037|AB|S82.875H|ICD10CM|Nondisp pilon fx l tibia, 7thH|Nondisp pilon fx l tibia, 7thH +C2863978|T037|AB|S82.875J|ICD10CM|Nondisp pilon fx l tibia, 7thJ|Nondisp pilon fx l tibia, 7thJ +C2863979|T037|AB|S82.875K|ICD10CM|Nondisp pilon fx left tibia, subs for clos fx w nonunion|Nondisp pilon fx left tibia, subs for clos fx w nonunion +C2863979|T037|PT|S82.875K|ICD10CM|Nondisplaced pilon fracture of left tibia, subsequent encounter for closed fracture with nonunion|Nondisplaced pilon fracture of left tibia, subsequent encounter for closed fracture with nonunion +C2863980|T037|AB|S82.875M|ICD10CM|Nondisp pilon fx l tibia, 7thM|Nondisp pilon fx l tibia, 7thM +C2863981|T037|AB|S82.875N|ICD10CM|Nondisp pilon fx l tibia, 7thN|Nondisp pilon fx l tibia, 7thN +C2863982|T037|AB|S82.875P|ICD10CM|Nondisp pilon fx left tibia, subs for clos fx w malunion|Nondisp pilon fx left tibia, subs for clos fx w malunion +C2863982|T037|PT|S82.875P|ICD10CM|Nondisplaced pilon fracture of left tibia, subsequent encounter for closed fracture with malunion|Nondisplaced pilon fracture of left tibia, subsequent encounter for closed fracture with malunion +C2863983|T037|AB|S82.875Q|ICD10CM|Nondisp pilon fx l tibia, 7thQ|Nondisp pilon fx l tibia, 7thQ +C2863984|T037|AB|S82.875R|ICD10CM|Nondisp pilon fx l tibia, 7thR|Nondisp pilon fx l tibia, 7thR +C2863985|T037|PT|S82.875S|ICD10CM|Nondisplaced pilon fracture of left tibia, sequela|Nondisplaced pilon fracture of left tibia, sequela +C2863985|T037|AB|S82.875S|ICD10CM|Nondisplaced pilon fracture of left tibia, sequela|Nondisplaced pilon fracture of left tibia, sequela +C2863986|T037|AB|S82.876|ICD10CM|Nondisplaced pilon fracture of unspecified tibia|Nondisplaced pilon fracture of unspecified tibia +C2863986|T037|HT|S82.876|ICD10CM|Nondisplaced pilon fracture of unspecified tibia|Nondisplaced pilon fracture of unspecified tibia +C2863987|T037|AB|S82.876A|ICD10CM|Nondisplaced pilon fracture of unsp tibia, init for clos fx|Nondisplaced pilon fracture of unsp tibia, init for clos fx +C2863987|T037|PT|S82.876A|ICD10CM|Nondisplaced pilon fracture of unspecified tibia, initial encounter for closed fracture|Nondisplaced pilon fracture of unspecified tibia, initial encounter for closed fracture +C2863988|T037|AB|S82.876B|ICD10CM|Nondisp pilon fx unsp tibia, init for opn fx type I/2|Nondisp pilon fx unsp tibia, init for opn fx type I/2 +C2863988|T037|PT|S82.876B|ICD10CM|Nondisplaced pilon fracture of unspecified tibia, initial encounter for open fracture type I or II|Nondisplaced pilon fracture of unspecified tibia, initial encounter for open fracture type I or II +C2863989|T037|AB|S82.876C|ICD10CM|Nondisp pilon fx unsp tibia, init for opn fx type 3A/B/C|Nondisp pilon fx unsp tibia, init for opn fx type 3A/B/C +C2863990|T037|AB|S82.876D|ICD10CM|Nondisp pilon fx unsp tibia, subs for clos fx w routn heal|Nondisp pilon fx unsp tibia, subs for clos fx w routn heal +C2863991|T037|AB|S82.876E|ICD10CM|Nondisp pilon fx unsp tibia, 7thE|Nondisp pilon fx unsp tibia, 7thE +C2863992|T037|AB|S82.876F|ICD10CM|Nondisp pilon fx unsp tibia, 7thF|Nondisp pilon fx unsp tibia, 7thF +C2863993|T037|AB|S82.876G|ICD10CM|Nondisp pilon fx unsp tibia, subs for clos fx w delay heal|Nondisp pilon fx unsp tibia, subs for clos fx w delay heal +C2863994|T037|AB|S82.876H|ICD10CM|Nondisp pilon fx unsp tibia, 7thH|Nondisp pilon fx unsp tibia, 7thH +C2863995|T037|AB|S82.876J|ICD10CM|Nondisp pilon fx unsp tibia, 7thJ|Nondisp pilon fx unsp tibia, 7thJ +C2863996|T037|AB|S82.876K|ICD10CM|Nondisp pilon fx unsp tibia, subs for clos fx w nonunion|Nondisp pilon fx unsp tibia, subs for clos fx w nonunion +C2863997|T037|AB|S82.876M|ICD10CM|Nondisp pilon fx unsp tibia, 7thM|Nondisp pilon fx unsp tibia, 7thM +C2863998|T037|AB|S82.876N|ICD10CM|Nondisp pilon fx unsp tibia, 7thN|Nondisp pilon fx unsp tibia, 7thN +C2863999|T037|AB|S82.876P|ICD10CM|Nondisp pilon fx unsp tibia, subs for clos fx w malunion|Nondisp pilon fx unsp tibia, subs for clos fx w malunion +C2864000|T037|AB|S82.876Q|ICD10CM|Nondisp pilon fx unsp tibia, 7thQ|Nondisp pilon fx unsp tibia, 7thQ +C2864001|T037|AB|S82.876R|ICD10CM|Nondisp pilon fx unsp tibia, 7thR|Nondisp pilon fx unsp tibia, 7thR +C2864002|T037|PT|S82.876S|ICD10CM|Nondisplaced pilon fracture of unspecified tibia, sequela|Nondisplaced pilon fracture of unspecified tibia, sequela +C2864002|T037|AB|S82.876S|ICD10CM|Nondisplaced pilon fracture of unspecified tibia, sequela|Nondisplaced pilon fracture of unspecified tibia, sequela +C0159877|T037|ET|S82.89|ICD10CM|Fracture of ankle NOS|Fracture of ankle NOS +C2863494|T037|AB|S82.89|ICD10CM|Other fractures of lower leg|Other fractures of lower leg +C2863494|T037|HT|S82.89|ICD10CM|Other fractures of lower leg|Other fractures of lower leg +C2864003|T037|AB|S82.891|ICD10CM|Other fracture of right lower leg|Other fracture of right lower leg +C2864003|T037|HT|S82.891|ICD10CM|Other fracture of right lower leg|Other fracture of right lower leg +C2864004|T037|AB|S82.891A|ICD10CM|Oth fracture of right lower leg, init for clos fx|Oth fracture of right lower leg, init for clos fx +C2864004|T037|PT|S82.891A|ICD10CM|Other fracture of right lower leg, initial encounter for closed fracture|Other fracture of right lower leg, initial encounter for closed fracture +C2864005|T037|AB|S82.891B|ICD10CM|Oth fracture of right lower leg, init for opn fx type I/2|Oth fracture of right lower leg, init for opn fx type I/2 +C2864005|T037|PT|S82.891B|ICD10CM|Other fracture of right lower leg, initial encounter for open fracture type I or II|Other fracture of right lower leg, initial encounter for open fracture type I or II +C2864006|T037|AB|S82.891C|ICD10CM|Oth fracture of right lower leg, init for opn fx type 3A/B/C|Oth fracture of right lower leg, init for opn fx type 3A/B/C +C2864006|T037|PT|S82.891C|ICD10CM|Other fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC|Other fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2864007|T037|AB|S82.891D|ICD10CM|Oth fracture of r low leg, subs for clos fx w routn heal|Oth fracture of r low leg, subs for clos fx w routn heal +C2864007|T037|PT|S82.891D|ICD10CM|Other fracture of right lower leg, subsequent encounter for closed fracture with routine healing|Other fracture of right lower leg, subsequent encounter for closed fracture with routine healing +C2864008|T037|AB|S82.891E|ICD10CM|Oth fx r low leg, subs for opn fx type I/2 w routn heal|Oth fx r low leg, subs for opn fx type I/2 w routn heal +C2864009|T037|AB|S82.891F|ICD10CM|Oth fx r low leg, subs for opn fx type 3A/B/C w routn heal|Oth fx r low leg, subs for opn fx type 3A/B/C w routn heal +C2864010|T037|AB|S82.891G|ICD10CM|Oth fracture of r low leg, subs for clos fx w delay heal|Oth fracture of r low leg, subs for clos fx w delay heal +C2864010|T037|PT|S82.891G|ICD10CM|Other fracture of right lower leg, subsequent encounter for closed fracture with delayed healing|Other fracture of right lower leg, subsequent encounter for closed fracture with delayed healing +C2864011|T037|AB|S82.891H|ICD10CM|Oth fx r low leg, subs for opn fx type I/2 w delay heal|Oth fx r low leg, subs for opn fx type I/2 w delay heal +C2864012|T037|AB|S82.891J|ICD10CM|Oth fx r low leg, subs for opn fx type 3A/B/C w delay heal|Oth fx r low leg, subs for opn fx type 3A/B/C w delay heal +C2864013|T037|AB|S82.891K|ICD10CM|Oth fracture of right lower leg, subs for clos fx w nonunion|Oth fracture of right lower leg, subs for clos fx w nonunion +C2864013|T037|PT|S82.891K|ICD10CM|Other fracture of right lower leg, subsequent encounter for closed fracture with nonunion|Other fracture of right lower leg, subsequent encounter for closed fracture with nonunion +C2864014|T037|AB|S82.891M|ICD10CM|Oth fx r low leg, subs for opn fx type I/2 w nonunion|Oth fx r low leg, subs for opn fx type I/2 w nonunion +C2864014|T037|PT|S82.891M|ICD10CM|Other fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion|Other fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion +C2864015|T037|AB|S82.891N|ICD10CM|Oth fx r low leg, subs for opn fx type 3A/B/C w nonunion|Oth fx r low leg, subs for opn fx type 3A/B/C w nonunion +C2864016|T037|AB|S82.891P|ICD10CM|Oth fracture of right lower leg, subs for clos fx w malunion|Oth fracture of right lower leg, subs for clos fx w malunion +C2864016|T037|PT|S82.891P|ICD10CM|Other fracture of right lower leg, subsequent encounter for closed fracture with malunion|Other fracture of right lower leg, subsequent encounter for closed fracture with malunion +C2864017|T037|AB|S82.891Q|ICD10CM|Oth fx r low leg, subs for opn fx type I/2 w malunion|Oth fx r low leg, subs for opn fx type I/2 w malunion +C2864017|T037|PT|S82.891Q|ICD10CM|Other fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion|Other fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion +C2864018|T037|AB|S82.891R|ICD10CM|Oth fx r low leg, subs for opn fx type 3A/B/C w malunion|Oth fx r low leg, subs for opn fx type 3A/B/C w malunion +C2864019|T037|PT|S82.891S|ICD10CM|Other fracture of right lower leg, sequela|Other fracture of right lower leg, sequela +C2864019|T037|AB|S82.891S|ICD10CM|Other fracture of right lower leg, sequela|Other fracture of right lower leg, sequela +C2864020|T037|AB|S82.892|ICD10CM|Other fracture of left lower leg|Other fracture of left lower leg +C2864020|T037|HT|S82.892|ICD10CM|Other fracture of left lower leg|Other fracture of left lower leg +C2864021|T037|AB|S82.892A|ICD10CM|Oth fracture of left lower leg, init for clos fx|Oth fracture of left lower leg, init for clos fx +C2864021|T037|PT|S82.892A|ICD10CM|Other fracture of left lower leg, initial encounter for closed fracture|Other fracture of left lower leg, initial encounter for closed fracture +C2864022|T037|AB|S82.892B|ICD10CM|Oth fracture of left lower leg, init for opn fx type I/2|Oth fracture of left lower leg, init for opn fx type I/2 +C2864022|T037|PT|S82.892B|ICD10CM|Other fracture of left lower leg, initial encounter for open fracture type I or II|Other fracture of left lower leg, initial encounter for open fracture type I or II +C2864023|T037|AB|S82.892C|ICD10CM|Oth fracture of left lower leg, init for opn fx type 3A/B/C|Oth fracture of left lower leg, init for opn fx type 3A/B/C +C2864023|T037|PT|S82.892C|ICD10CM|Other fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC|Other fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2864024|T037|AB|S82.892D|ICD10CM|Oth fracture of l low leg, subs for clos fx w routn heal|Oth fracture of l low leg, subs for clos fx w routn heal +C2864024|T037|PT|S82.892D|ICD10CM|Other fracture of left lower leg, subsequent encounter for closed fracture with routine healing|Other fracture of left lower leg, subsequent encounter for closed fracture with routine healing +C2864025|T037|AB|S82.892E|ICD10CM|Oth fx l low leg, subs for opn fx type I/2 w routn heal|Oth fx l low leg, subs for opn fx type I/2 w routn heal +C2864026|T037|AB|S82.892F|ICD10CM|Oth fx l low leg, subs for opn fx type 3A/B/C w routn heal|Oth fx l low leg, subs for opn fx type 3A/B/C w routn heal +C2864027|T037|AB|S82.892G|ICD10CM|Oth fracture of l low leg, subs for clos fx w delay heal|Oth fracture of l low leg, subs for clos fx w delay heal +C2864027|T037|PT|S82.892G|ICD10CM|Other fracture of left lower leg, subsequent encounter for closed fracture with delayed healing|Other fracture of left lower leg, subsequent encounter for closed fracture with delayed healing +C2864028|T037|AB|S82.892H|ICD10CM|Oth fx l low leg, subs for opn fx type I/2 w delay heal|Oth fx l low leg, subs for opn fx type I/2 w delay heal +C2864029|T037|AB|S82.892J|ICD10CM|Oth fx l low leg, subs for opn fx type 3A/B/C w delay heal|Oth fx l low leg, subs for opn fx type 3A/B/C w delay heal +C2864030|T037|AB|S82.892K|ICD10CM|Oth fracture of left lower leg, subs for clos fx w nonunion|Oth fracture of left lower leg, subs for clos fx w nonunion +C2864030|T037|PT|S82.892K|ICD10CM|Other fracture of left lower leg, subsequent encounter for closed fracture with nonunion|Other fracture of left lower leg, subsequent encounter for closed fracture with nonunion +C2864031|T037|AB|S82.892M|ICD10CM|Oth fx l low leg, subs for opn fx type I/2 w nonunion|Oth fx l low leg, subs for opn fx type I/2 w nonunion +C2864031|T037|PT|S82.892M|ICD10CM|Other fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion|Other fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion +C2864032|T037|AB|S82.892N|ICD10CM|Oth fx l low leg, subs for opn fx type 3A/B/C w nonunion|Oth fx l low leg, subs for opn fx type 3A/B/C w nonunion +C2864033|T037|AB|S82.892P|ICD10CM|Oth fracture of left lower leg, subs for clos fx w malunion|Oth fracture of left lower leg, subs for clos fx w malunion +C2864033|T037|PT|S82.892P|ICD10CM|Other fracture of left lower leg, subsequent encounter for closed fracture with malunion|Other fracture of left lower leg, subsequent encounter for closed fracture with malunion +C2864034|T037|AB|S82.892Q|ICD10CM|Oth fx l low leg, subs for opn fx type I/2 w malunion|Oth fx l low leg, subs for opn fx type I/2 w malunion +C2864034|T037|PT|S82.892Q|ICD10CM|Other fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion|Other fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion +C2864035|T037|AB|S82.892R|ICD10CM|Oth fx l low leg, subs for opn fx type 3A/B/C w malunion|Oth fx l low leg, subs for opn fx type 3A/B/C w malunion +C2864036|T037|PT|S82.892S|ICD10CM|Other fracture of left lower leg, sequela|Other fracture of left lower leg, sequela +C2864036|T037|AB|S82.892S|ICD10CM|Other fracture of left lower leg, sequela|Other fracture of left lower leg, sequela +C2864037|T037|AB|S82.899|ICD10CM|Other fracture of unspecified lower leg|Other fracture of unspecified lower leg +C2864037|T037|HT|S82.899|ICD10CM|Other fracture of unspecified lower leg|Other fracture of unspecified lower leg +C2864038|T037|AB|S82.899A|ICD10CM|Oth fracture of unsp lower leg, init for clos fx|Oth fracture of unsp lower leg, init for clos fx +C2864038|T037|PT|S82.899A|ICD10CM|Other fracture of unspecified lower leg, initial encounter for closed fracture|Other fracture of unspecified lower leg, initial encounter for closed fracture +C2864039|T037|AB|S82.899B|ICD10CM|Oth fracture of unsp lower leg, init for opn fx type I/2|Oth fracture of unsp lower leg, init for opn fx type I/2 +C2864039|T037|PT|S82.899B|ICD10CM|Other fracture of unspecified lower leg, initial encounter for open fracture type I or II|Other fracture of unspecified lower leg, initial encounter for open fracture type I or II +C2864040|T037|AB|S82.899C|ICD10CM|Oth fracture of unsp lower leg, init for opn fx type 3A/B/C|Oth fracture of unsp lower leg, init for opn fx type 3A/B/C +C2864041|T037|AB|S82.899D|ICD10CM|Oth fx unsp lower leg, subs for clos fx w routn heal|Oth fx unsp lower leg, subs for clos fx w routn heal +C2864042|T037|AB|S82.899E|ICD10CM|Oth fx unsp lower leg, subs for opn fx type I/2 w routn heal|Oth fx unsp lower leg, subs for opn fx type I/2 w routn heal +C2864043|T037|AB|S82.899F|ICD10CM|Oth fx unsp low leg, 7thF|Oth fx unsp low leg, 7thF +C2864044|T037|AB|S82.899G|ICD10CM|Oth fx unsp lower leg, subs for clos fx w delay heal|Oth fx unsp lower leg, subs for clos fx w delay heal +C2864045|T037|AB|S82.899H|ICD10CM|Oth fx unsp lower leg, subs for opn fx type I/2 w delay heal|Oth fx unsp lower leg, subs for opn fx type I/2 w delay heal +C2864046|T037|AB|S82.899J|ICD10CM|Oth fx unsp low leg, 7thJ|Oth fx unsp low leg, 7thJ +C2864047|T037|AB|S82.899K|ICD10CM|Oth fracture of unsp lower leg, subs for clos fx w nonunion|Oth fracture of unsp lower leg, subs for clos fx w nonunion +C2864047|T037|PT|S82.899K|ICD10CM|Other fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion|Other fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion +C2864048|T037|AB|S82.899M|ICD10CM|Oth fx unsp lower leg, subs for opn fx type I/2 w nonunion|Oth fx unsp lower leg, subs for opn fx type I/2 w nonunion +C2864049|T037|AB|S82.899N|ICD10CM|Oth fx unsp low leg, subs for opn fx type 3A/B/C w nonunion|Oth fx unsp low leg, subs for opn fx type 3A/B/C w nonunion +C2864050|T037|AB|S82.899P|ICD10CM|Oth fracture of unsp lower leg, subs for clos fx w malunion|Oth fracture of unsp lower leg, subs for clos fx w malunion +C2864050|T037|PT|S82.899P|ICD10CM|Other fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion|Other fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion +C2864051|T037|AB|S82.899Q|ICD10CM|Oth fx unsp lower leg, subs for opn fx type I/2 w malunion|Oth fx unsp lower leg, subs for opn fx type I/2 w malunion +C2864052|T037|AB|S82.899R|ICD10CM|Oth fx unsp low leg, subs for opn fx type 3A/B/C w malunion|Oth fx unsp low leg, subs for opn fx type 3A/B/C w malunion +C2864053|T037|PT|S82.899S|ICD10CM|Other fracture of unspecified lower leg, sequela|Other fracture of unspecified lower leg, sequela +C2864053|T037|AB|S82.899S|ICD10CM|Other fracture of unspecified lower leg, sequela|Other fracture of unspecified lower leg, sequela +C0478346|T037|PT|S82.9|ICD10|Fracture of lower leg, part unspecified|Fracture of lower leg, part unspecified +C2864054|T037|AB|S82.9|ICD10CM|Unspecified fracture of lower leg|Unspecified fracture of lower leg +C2864054|T037|HT|S82.9|ICD10CM|Unspecified fracture of lower leg|Unspecified fracture of lower leg +C2864055|T037|AB|S82.90|ICD10CM|Unspecified fracture of unspecified lower leg|Unspecified fracture of unspecified lower leg +C2864055|T037|HT|S82.90|ICD10CM|Unspecified fracture of unspecified lower leg|Unspecified fracture of unspecified lower leg +C2864056|T037|AB|S82.90XA|ICD10CM|Unsp fracture of unsp lower leg, init for clos fx|Unsp fracture of unsp lower leg, init for clos fx +C2864056|T037|PT|S82.90XA|ICD10CM|Unspecified fracture of unspecified lower leg, initial encounter for closed fracture|Unspecified fracture of unspecified lower leg, initial encounter for closed fracture +C2864057|T037|AB|S82.90XB|ICD10CM|Unsp fracture of unsp lower leg, init for opn fx type I/2|Unsp fracture of unsp lower leg, init for opn fx type I/2 +C2864057|T037|PT|S82.90XB|ICD10CM|Unspecified fracture of unspecified lower leg, initial encounter for open fracture type I or II|Unspecified fracture of unspecified lower leg, initial encounter for open fracture type I or II +C2864058|T037|AB|S82.90XC|ICD10CM|Unsp fracture of unsp lower leg, init for opn fx type 3A/B/C|Unsp fracture of unsp lower leg, init for opn fx type 3A/B/C +C2864059|T037|AB|S82.90XD|ICD10CM|Unsp fx unsp lower leg, subs for clos fx w routn heal|Unsp fx unsp lower leg, subs for clos fx w routn heal +C2864060|T037|AB|S82.90XE|ICD10CM|Unsp fx unsp low leg, subs for opn fx type I/2 w routn heal|Unsp fx unsp low leg, subs for opn fx type I/2 w routn heal +C2864061|T037|AB|S82.90XF|ICD10CM|Unsp fx unsp low leg, 7thF|Unsp fx unsp low leg, 7thF +C2864062|T037|AB|S82.90XG|ICD10CM|Unsp fx unsp lower leg, subs for clos fx w delay heal|Unsp fx unsp lower leg, subs for clos fx w delay heal +C2864063|T037|AB|S82.90XH|ICD10CM|Unsp fx unsp low leg, subs for opn fx type I/2 w delay heal|Unsp fx unsp low leg, subs for opn fx type I/2 w delay heal +C2864064|T037|AB|S82.90XJ|ICD10CM|Unsp fx unsp low leg, 7thJ|Unsp fx unsp low leg, 7thJ +C2864065|T037|AB|S82.90XK|ICD10CM|Unsp fracture of unsp lower leg, subs for clos fx w nonunion|Unsp fracture of unsp lower leg, subs for clos fx w nonunion +C2864066|T037|AB|S82.90XM|ICD10CM|Unsp fx unsp lower leg, subs for opn fx type I/2 w nonunion|Unsp fx unsp lower leg, subs for opn fx type I/2 w nonunion +C2864067|T037|AB|S82.90XN|ICD10CM|Unsp fx unsp low leg, subs for opn fx type 3A/B/C w nonunion|Unsp fx unsp low leg, subs for opn fx type 3A/B/C w nonunion +C2864068|T037|AB|S82.90XP|ICD10CM|Unsp fracture of unsp lower leg, subs for clos fx w malunion|Unsp fracture of unsp lower leg, subs for clos fx w malunion +C2864069|T037|AB|S82.90XQ|ICD10CM|Unsp fx unsp lower leg, subs for opn fx type I/2 w malunion|Unsp fx unsp lower leg, subs for opn fx type I/2 w malunion +C2864070|T037|AB|S82.90XR|ICD10CM|Unsp fx unsp low leg, subs for opn fx type 3A/B/C w malunion|Unsp fx unsp low leg, subs for opn fx type 3A/B/C w malunion +C2864071|T037|PT|S82.90XS|ICD10CM|Unspecified fracture of unspecified lower leg, sequela|Unspecified fracture of unspecified lower leg, sequela +C2864071|T037|AB|S82.90XS|ICD10CM|Unspecified fracture of unspecified lower leg, sequela|Unspecified fracture of unspecified lower leg, sequela +C2864072|T037|AB|S82.91|ICD10CM|Unspecified fracture of right lower leg|Unspecified fracture of right lower leg +C2864072|T037|HT|S82.91|ICD10CM|Unspecified fracture of right lower leg|Unspecified fracture of right lower leg +C2864073|T037|AB|S82.91XA|ICD10CM|Unsp fracture of right lower leg, init for clos fx|Unsp fracture of right lower leg, init for clos fx +C2864073|T037|PT|S82.91XA|ICD10CM|Unspecified fracture of right lower leg, initial encounter for closed fracture|Unspecified fracture of right lower leg, initial encounter for closed fracture +C2864074|T037|AB|S82.91XB|ICD10CM|Unsp fracture of right lower leg, init for opn fx type I/2|Unsp fracture of right lower leg, init for opn fx type I/2 +C2864074|T037|PT|S82.91XB|ICD10CM|Unspecified fracture of right lower leg, initial encounter for open fracture type I or II|Unspecified fracture of right lower leg, initial encounter for open fracture type I or II +C2864075|T037|AB|S82.91XC|ICD10CM|Unsp fracture of r low leg, init for opn fx type 3A/B/C|Unsp fracture of r low leg, init for opn fx type 3A/B/C +C2864076|T037|AB|S82.91XD|ICD10CM|Unsp fracture of r low leg, subs for clos fx w routn heal|Unsp fracture of r low leg, subs for clos fx w routn heal +C2864077|T037|AB|S82.91XE|ICD10CM|Unsp fx r low leg, subs for opn fx type I/2 w routn heal|Unsp fx r low leg, subs for opn fx type I/2 w routn heal +C2864078|T037|AB|S82.91XF|ICD10CM|Unsp fx r low leg, subs for opn fx type 3A/B/C w routn heal|Unsp fx r low leg, subs for opn fx type 3A/B/C w routn heal +C2864079|T037|AB|S82.91XG|ICD10CM|Unsp fracture of r low leg, subs for clos fx w delay heal|Unsp fracture of r low leg, subs for clos fx w delay heal +C2864080|T037|AB|S82.91XH|ICD10CM|Unsp fx r low leg, subs for opn fx type I/2 w delay heal|Unsp fx r low leg, subs for opn fx type I/2 w delay heal +C2864081|T037|AB|S82.91XJ|ICD10CM|Unsp fx r low leg, subs for opn fx type 3A/B/C w delay heal|Unsp fx r low leg, subs for opn fx type 3A/B/C w delay heal +C2864082|T037|AB|S82.91XK|ICD10CM|Unsp fracture of r low leg, subs for clos fx w nonunion|Unsp fracture of r low leg, subs for clos fx w nonunion +C2864082|T037|PT|S82.91XK|ICD10CM|Unspecified fracture of right lower leg, subsequent encounter for closed fracture with nonunion|Unspecified fracture of right lower leg, subsequent encounter for closed fracture with nonunion +C2864083|T037|AB|S82.91XM|ICD10CM|Unsp fx r low leg, subs for opn fx type I/2 w nonunion|Unsp fx r low leg, subs for opn fx type I/2 w nonunion +C2864084|T037|AB|S82.91XN|ICD10CM|Unsp fx r low leg, subs for opn fx type 3A/B/C w nonunion|Unsp fx r low leg, subs for opn fx type 3A/B/C w nonunion +C2864085|T037|AB|S82.91XP|ICD10CM|Unsp fracture of r low leg, subs for clos fx w malunion|Unsp fracture of r low leg, subs for clos fx w malunion +C2864085|T037|PT|S82.91XP|ICD10CM|Unspecified fracture of right lower leg, subsequent encounter for closed fracture with malunion|Unspecified fracture of right lower leg, subsequent encounter for closed fracture with malunion +C2864086|T037|AB|S82.91XQ|ICD10CM|Unsp fx r low leg, subs for opn fx type I/2 w malunion|Unsp fx r low leg, subs for opn fx type I/2 w malunion +C2864087|T037|AB|S82.91XR|ICD10CM|Unsp fx r low leg, subs for opn fx type 3A/B/C w malunion|Unsp fx r low leg, subs for opn fx type 3A/B/C w malunion +C2864088|T037|PT|S82.91XS|ICD10CM|Unspecified fracture of right lower leg, sequela|Unspecified fracture of right lower leg, sequela +C2864088|T037|AB|S82.91XS|ICD10CM|Unspecified fracture of right lower leg, sequela|Unspecified fracture of right lower leg, sequela +C2864089|T037|AB|S82.92|ICD10CM|Unspecified fracture of left lower leg|Unspecified fracture of left lower leg +C2864089|T037|HT|S82.92|ICD10CM|Unspecified fracture of left lower leg|Unspecified fracture of left lower leg +C2864090|T037|AB|S82.92XA|ICD10CM|Unsp fracture of left lower leg, init for clos fx|Unsp fracture of left lower leg, init for clos fx +C2864090|T037|PT|S82.92XA|ICD10CM|Unspecified fracture of left lower leg, initial encounter for closed fracture|Unspecified fracture of left lower leg, initial encounter for closed fracture +C2864091|T037|AB|S82.92XB|ICD10CM|Unsp fracture of left lower leg, init for opn fx type I/2|Unsp fracture of left lower leg, init for opn fx type I/2 +C2864091|T037|PT|S82.92XB|ICD10CM|Unspecified fracture of left lower leg, initial encounter for open fracture type I or II|Unspecified fracture of left lower leg, initial encounter for open fracture type I or II +C2864092|T037|AB|S82.92XC|ICD10CM|Unsp fracture of left lower leg, init for opn fx type 3A/B/C|Unsp fracture of left lower leg, init for opn fx type 3A/B/C +C2864092|T037|PT|S82.92XC|ICD10CM|Unspecified fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC|Unspecified fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC +C2864093|T037|AB|S82.92XD|ICD10CM|Unsp fracture of l low leg, subs for clos fx w routn heal|Unsp fracture of l low leg, subs for clos fx w routn heal +C2864094|T037|AB|S82.92XE|ICD10CM|Unsp fx l low leg, subs for opn fx type I/2 w routn heal|Unsp fx l low leg, subs for opn fx type I/2 w routn heal +C2864095|T037|AB|S82.92XF|ICD10CM|Unsp fx l low leg, subs for opn fx type 3A/B/C w routn heal|Unsp fx l low leg, subs for opn fx type 3A/B/C w routn heal +C2864096|T037|AB|S82.92XG|ICD10CM|Unsp fracture of l low leg, subs for clos fx w delay heal|Unsp fracture of l low leg, subs for clos fx w delay heal +C2864097|T037|AB|S82.92XH|ICD10CM|Unsp fx l low leg, subs for opn fx type I/2 w delay heal|Unsp fx l low leg, subs for opn fx type I/2 w delay heal +C2864098|T037|AB|S82.92XJ|ICD10CM|Unsp fx l low leg, subs for opn fx type 3A/B/C w delay heal|Unsp fx l low leg, subs for opn fx type 3A/B/C w delay heal +C2864099|T037|AB|S82.92XK|ICD10CM|Unsp fracture of left lower leg, subs for clos fx w nonunion|Unsp fracture of left lower leg, subs for clos fx w nonunion +C2864099|T037|PT|S82.92XK|ICD10CM|Unspecified fracture of left lower leg, subsequent encounter for closed fracture with nonunion|Unspecified fracture of left lower leg, subsequent encounter for closed fracture with nonunion +C2864100|T037|AB|S82.92XM|ICD10CM|Unsp fx l low leg, subs for opn fx type I/2 w nonunion|Unsp fx l low leg, subs for opn fx type I/2 w nonunion +C2864101|T037|AB|S82.92XN|ICD10CM|Unsp fx l low leg, subs for opn fx type 3A/B/C w nonunion|Unsp fx l low leg, subs for opn fx type 3A/B/C w nonunion +C2864102|T037|AB|S82.92XP|ICD10CM|Unsp fracture of left lower leg, subs for clos fx w malunion|Unsp fracture of left lower leg, subs for clos fx w malunion +C2864102|T037|PT|S82.92XP|ICD10CM|Unspecified fracture of left lower leg, subsequent encounter for closed fracture with malunion|Unspecified fracture of left lower leg, subsequent encounter for closed fracture with malunion +C2864103|T037|AB|S82.92XQ|ICD10CM|Unsp fx l low leg, subs for opn fx type I/2 w malunion|Unsp fx l low leg, subs for opn fx type I/2 w malunion +C2864104|T037|AB|S82.92XR|ICD10CM|Unsp fx l low leg, subs for opn fx type 3A/B/C w malunion|Unsp fx l low leg, subs for opn fx type 3A/B/C w malunion +C2864105|T037|PT|S82.92XS|ICD10CM|Unspecified fracture of left lower leg, sequela|Unspecified fracture of left lower leg, sequela +C2864105|T037|AB|S82.92XS|ICD10CM|Unspecified fracture of left lower leg, sequela|Unspecified fracture of left lower leg, sequela +C4290372|T037|ET|S83|ICD10CM|avulsion of joint or ligament of knee|avulsion of joint or ligament of knee +C2864113|T037|AB|S83|ICD10CM|Dislocation and sprain of joints and ligaments of knee|Dislocation and sprain of joints and ligaments of knee +C2864113|T037|HT|S83|ICD10CM|Dislocation and sprain of joints and ligaments of knee|Dislocation and sprain of joints and ligaments of knee +C0495945|T037|HT|S83|ICD10|Dislocation, sprain and strain of joints and ligaments of knee|Dislocation, sprain and strain of joints and ligaments of knee +C4290373|T037|ET|S83|ICD10CM|laceration of cartilage, joint or ligament of knee|laceration of cartilage, joint or ligament of knee +C4290374|T037|ET|S83|ICD10CM|sprain of cartilage, joint or ligament of knee|sprain of cartilage, joint or ligament of knee +C4290375|T037|ET|S83|ICD10CM|traumatic hemarthrosis of joint or ligament of knee|traumatic hemarthrosis of joint or ligament of knee +C4290376|T037|ET|S83|ICD10CM|traumatic rupture of joint or ligament of knee|traumatic rupture of joint or ligament of knee +C4290377|T037|ET|S83|ICD10CM|traumatic subluxation of joint or ligament of knee|traumatic subluxation of joint or ligament of knee +C4290378|T037|ET|S83|ICD10CM|traumatic tear of joint or ligament of knee|traumatic tear of joint or ligament of knee +C1135812|T037|PT|S83.0|ICD10|Dislocation of patella|Dislocation of patella +C2864114|T037|AB|S83.0|ICD10CM|Subluxation and dislocation of patella|Subluxation and dislocation of patella +C2864114|T037|HT|S83.0|ICD10CM|Subluxation and dislocation of patella|Subluxation and dislocation of patella +C2864115|T037|AB|S83.00|ICD10CM|Unspecified subluxation and dislocation of patella|Unspecified subluxation and dislocation of patella +C2864115|T037|HT|S83.00|ICD10CM|Unspecified subluxation and dislocation of patella|Unspecified subluxation and dislocation of patella +C2864116|T037|AB|S83.001|ICD10CM|Unspecified subluxation of right patella|Unspecified subluxation of right patella +C2864116|T037|HT|S83.001|ICD10CM|Unspecified subluxation of right patella|Unspecified subluxation of right patella +C2864117|T037|PT|S83.001A|ICD10CM|Unspecified subluxation of right patella, initial encounter|Unspecified subluxation of right patella, initial encounter +C2864117|T037|AB|S83.001A|ICD10CM|Unspecified subluxation of right patella, initial encounter|Unspecified subluxation of right patella, initial encounter +C2864118|T037|AB|S83.001D|ICD10CM|Unspecified subluxation of right patella, subs encntr|Unspecified subluxation of right patella, subs encntr +C2864118|T037|PT|S83.001D|ICD10CM|Unspecified subluxation of right patella, subsequent encounter|Unspecified subluxation of right patella, subsequent encounter +C2864119|T037|PT|S83.001S|ICD10CM|Unspecified subluxation of right patella, sequela|Unspecified subluxation of right patella, sequela +C2864119|T037|AB|S83.001S|ICD10CM|Unspecified subluxation of right patella, sequela|Unspecified subluxation of right patella, sequela +C2864120|T037|AB|S83.002|ICD10CM|Unspecified subluxation of left patella|Unspecified subluxation of left patella +C2864120|T037|HT|S83.002|ICD10CM|Unspecified subluxation of left patella|Unspecified subluxation of left patella +C2864121|T037|PT|S83.002A|ICD10CM|Unspecified subluxation of left patella, initial encounter|Unspecified subluxation of left patella, initial encounter +C2864121|T037|AB|S83.002A|ICD10CM|Unspecified subluxation of left patella, initial encounter|Unspecified subluxation of left patella, initial encounter +C2864122|T037|AB|S83.002D|ICD10CM|Unspecified subluxation of left patella, subs encntr|Unspecified subluxation of left patella, subs encntr +C2864122|T037|PT|S83.002D|ICD10CM|Unspecified subluxation of left patella, subsequent encounter|Unspecified subluxation of left patella, subsequent encounter +C2864123|T037|PT|S83.002S|ICD10CM|Unspecified subluxation of left patella, sequela|Unspecified subluxation of left patella, sequela +C2864123|T037|AB|S83.002S|ICD10CM|Unspecified subluxation of left patella, sequela|Unspecified subluxation of left patella, sequela +C2864124|T037|AB|S83.003|ICD10CM|Unspecified subluxation of unspecified patella|Unspecified subluxation of unspecified patella +C2864124|T037|HT|S83.003|ICD10CM|Unspecified subluxation of unspecified patella|Unspecified subluxation of unspecified patella +C2864125|T037|AB|S83.003A|ICD10CM|Unspecified subluxation of unspecified patella, init encntr|Unspecified subluxation of unspecified patella, init encntr +C2864125|T037|PT|S83.003A|ICD10CM|Unspecified subluxation of unspecified patella, initial encounter|Unspecified subluxation of unspecified patella, initial encounter +C2864126|T037|AB|S83.003D|ICD10CM|Unspecified subluxation of unspecified patella, subs encntr|Unspecified subluxation of unspecified patella, subs encntr +C2864126|T037|PT|S83.003D|ICD10CM|Unspecified subluxation of unspecified patella, subsequent encounter|Unspecified subluxation of unspecified patella, subsequent encounter +C2864127|T037|PT|S83.003S|ICD10CM|Unspecified subluxation of unspecified patella, sequela|Unspecified subluxation of unspecified patella, sequela +C2864127|T037|AB|S83.003S|ICD10CM|Unspecified subluxation of unspecified patella, sequela|Unspecified subluxation of unspecified patella, sequela +C2864128|T037|AB|S83.004|ICD10CM|Unspecified dislocation of right patella|Unspecified dislocation of right patella +C2864128|T037|HT|S83.004|ICD10CM|Unspecified dislocation of right patella|Unspecified dislocation of right patella +C2864129|T037|PT|S83.004A|ICD10CM|Unspecified dislocation of right patella, initial encounter|Unspecified dislocation of right patella, initial encounter +C2864129|T037|AB|S83.004A|ICD10CM|Unspecified dislocation of right patella, initial encounter|Unspecified dislocation of right patella, initial encounter +C2864130|T037|AB|S83.004D|ICD10CM|Unspecified dislocation of right patella, subs encntr|Unspecified dislocation of right patella, subs encntr +C2864130|T037|PT|S83.004D|ICD10CM|Unspecified dislocation of right patella, subsequent encounter|Unspecified dislocation of right patella, subsequent encounter +C2864131|T037|PT|S83.004S|ICD10CM|Unspecified dislocation of right patella, sequela|Unspecified dislocation of right patella, sequela +C2864131|T037|AB|S83.004S|ICD10CM|Unspecified dislocation of right patella, sequela|Unspecified dislocation of right patella, sequela +C2864132|T037|AB|S83.005|ICD10CM|Unspecified dislocation of left patella|Unspecified dislocation of left patella +C2864132|T037|HT|S83.005|ICD10CM|Unspecified dislocation of left patella|Unspecified dislocation of left patella +C2864133|T037|PT|S83.005A|ICD10CM|Unspecified dislocation of left patella, initial encounter|Unspecified dislocation of left patella, initial encounter +C2864133|T037|AB|S83.005A|ICD10CM|Unspecified dislocation of left patella, initial encounter|Unspecified dislocation of left patella, initial encounter +C2864134|T037|AB|S83.005D|ICD10CM|Unspecified dislocation of left patella, subs encntr|Unspecified dislocation of left patella, subs encntr +C2864134|T037|PT|S83.005D|ICD10CM|Unspecified dislocation of left patella, subsequent encounter|Unspecified dislocation of left patella, subsequent encounter +C2864135|T037|PT|S83.005S|ICD10CM|Unspecified dislocation of left patella, sequela|Unspecified dislocation of left patella, sequela +C2864135|T037|AB|S83.005S|ICD10CM|Unspecified dislocation of left patella, sequela|Unspecified dislocation of left patella, sequela +C2864136|T037|AB|S83.006|ICD10CM|Unspecified dislocation of unspecified patella|Unspecified dislocation of unspecified patella +C2864136|T037|HT|S83.006|ICD10CM|Unspecified dislocation of unspecified patella|Unspecified dislocation of unspecified patella +C2864137|T037|AB|S83.006A|ICD10CM|Unspecified dislocation of unspecified patella, init encntr|Unspecified dislocation of unspecified patella, init encntr +C2864137|T037|PT|S83.006A|ICD10CM|Unspecified dislocation of unspecified patella, initial encounter|Unspecified dislocation of unspecified patella, initial encounter +C2864138|T037|AB|S83.006D|ICD10CM|Unspecified dislocation of unspecified patella, subs encntr|Unspecified dislocation of unspecified patella, subs encntr +C2864138|T037|PT|S83.006D|ICD10CM|Unspecified dislocation of unspecified patella, subsequent encounter|Unspecified dislocation of unspecified patella, subsequent encounter +C2864139|T037|PT|S83.006S|ICD10CM|Unspecified dislocation of unspecified patella, sequela|Unspecified dislocation of unspecified patella, sequela +C2864139|T037|AB|S83.006S|ICD10CM|Unspecified dislocation of unspecified patella, sequela|Unspecified dislocation of unspecified patella, sequela +C2864140|T037|AB|S83.01|ICD10CM|Lateral subluxation and dislocation of patella|Lateral subluxation and dislocation of patella +C2864140|T037|HT|S83.01|ICD10CM|Lateral subluxation and dislocation of patella|Lateral subluxation and dislocation of patella +C2864141|T037|AB|S83.011|ICD10CM|Lateral subluxation of right patella|Lateral subluxation of right patella +C2864141|T037|HT|S83.011|ICD10CM|Lateral subluxation of right patella|Lateral subluxation of right patella +C2864142|T037|PT|S83.011A|ICD10CM|Lateral subluxation of right patella, initial encounter|Lateral subluxation of right patella, initial encounter +C2864142|T037|AB|S83.011A|ICD10CM|Lateral subluxation of right patella, initial encounter|Lateral subluxation of right patella, initial encounter +C2864143|T037|PT|S83.011D|ICD10CM|Lateral subluxation of right patella, subsequent encounter|Lateral subluxation of right patella, subsequent encounter +C2864143|T037|AB|S83.011D|ICD10CM|Lateral subluxation of right patella, subsequent encounter|Lateral subluxation of right patella, subsequent encounter +C2864144|T037|PT|S83.011S|ICD10CM|Lateral subluxation of right patella, sequela|Lateral subluxation of right patella, sequela +C2864144|T037|AB|S83.011S|ICD10CM|Lateral subluxation of right patella, sequela|Lateral subluxation of right patella, sequela +C2864145|T037|AB|S83.012|ICD10CM|Lateral subluxation of left patella|Lateral subluxation of left patella +C2864145|T037|HT|S83.012|ICD10CM|Lateral subluxation of left patella|Lateral subluxation of left patella +C2864146|T037|PT|S83.012A|ICD10CM|Lateral subluxation of left patella, initial encounter|Lateral subluxation of left patella, initial encounter +C2864146|T037|AB|S83.012A|ICD10CM|Lateral subluxation of left patella, initial encounter|Lateral subluxation of left patella, initial encounter +C2864147|T037|PT|S83.012D|ICD10CM|Lateral subluxation of left patella, subsequent encounter|Lateral subluxation of left patella, subsequent encounter +C2864147|T037|AB|S83.012D|ICD10CM|Lateral subluxation of left patella, subsequent encounter|Lateral subluxation of left patella, subsequent encounter +C2864148|T037|PT|S83.012S|ICD10CM|Lateral subluxation of left patella, sequela|Lateral subluxation of left patella, sequela +C2864148|T037|AB|S83.012S|ICD10CM|Lateral subluxation of left patella, sequela|Lateral subluxation of left patella, sequela +C2864149|T037|AB|S83.013|ICD10CM|Lateral subluxation of unspecified patella|Lateral subluxation of unspecified patella +C2864149|T037|HT|S83.013|ICD10CM|Lateral subluxation of unspecified patella|Lateral subluxation of unspecified patella +C2864150|T037|AB|S83.013A|ICD10CM|Lateral subluxation of unspecified patella, init encntr|Lateral subluxation of unspecified patella, init encntr +C2864150|T037|PT|S83.013A|ICD10CM|Lateral subluxation of unspecified patella, initial encounter|Lateral subluxation of unspecified patella, initial encounter +C2864151|T037|AB|S83.013D|ICD10CM|Lateral subluxation of unspecified patella, subs encntr|Lateral subluxation of unspecified patella, subs encntr +C2864151|T037|PT|S83.013D|ICD10CM|Lateral subluxation of unspecified patella, subsequent encounter|Lateral subluxation of unspecified patella, subsequent encounter +C2864152|T037|PT|S83.013S|ICD10CM|Lateral subluxation of unspecified patella, sequela|Lateral subluxation of unspecified patella, sequela +C2864152|T037|AB|S83.013S|ICD10CM|Lateral subluxation of unspecified patella, sequela|Lateral subluxation of unspecified patella, sequela +C2864153|T037|AB|S83.014|ICD10CM|Lateral dislocation of right patella|Lateral dislocation of right patella +C2864153|T037|HT|S83.014|ICD10CM|Lateral dislocation of right patella|Lateral dislocation of right patella +C2864154|T037|PT|S83.014A|ICD10CM|Lateral dislocation of right patella, initial encounter|Lateral dislocation of right patella, initial encounter +C2864154|T037|AB|S83.014A|ICD10CM|Lateral dislocation of right patella, initial encounter|Lateral dislocation of right patella, initial encounter +C2864155|T037|PT|S83.014D|ICD10CM|Lateral dislocation of right patella, subsequent encounter|Lateral dislocation of right patella, subsequent encounter +C2864155|T037|AB|S83.014D|ICD10CM|Lateral dislocation of right patella, subsequent encounter|Lateral dislocation of right patella, subsequent encounter +C2864156|T037|PT|S83.014S|ICD10CM|Lateral dislocation of right patella, sequela|Lateral dislocation of right patella, sequela +C2864156|T037|AB|S83.014S|ICD10CM|Lateral dislocation of right patella, sequela|Lateral dislocation of right patella, sequela +C2864157|T037|AB|S83.015|ICD10CM|Lateral dislocation of left patella|Lateral dislocation of left patella +C2864157|T037|HT|S83.015|ICD10CM|Lateral dislocation of left patella|Lateral dislocation of left patella +C2864158|T037|PT|S83.015A|ICD10CM|Lateral dislocation of left patella, initial encounter|Lateral dislocation of left patella, initial encounter +C2864158|T037|AB|S83.015A|ICD10CM|Lateral dislocation of left patella, initial encounter|Lateral dislocation of left patella, initial encounter +C2864159|T037|PT|S83.015D|ICD10CM|Lateral dislocation of left patella, subsequent encounter|Lateral dislocation of left patella, subsequent encounter +C2864159|T037|AB|S83.015D|ICD10CM|Lateral dislocation of left patella, subsequent encounter|Lateral dislocation of left patella, subsequent encounter +C2864160|T037|PT|S83.015S|ICD10CM|Lateral dislocation of left patella, sequela|Lateral dislocation of left patella, sequela +C2864160|T037|AB|S83.015S|ICD10CM|Lateral dislocation of left patella, sequela|Lateral dislocation of left patella, sequela +C2864161|T037|AB|S83.016|ICD10CM|Lateral dislocation of unspecified patella|Lateral dislocation of unspecified patella +C2864161|T037|HT|S83.016|ICD10CM|Lateral dislocation of unspecified patella|Lateral dislocation of unspecified patella +C2864162|T037|AB|S83.016A|ICD10CM|Lateral dislocation of unspecified patella, init encntr|Lateral dislocation of unspecified patella, init encntr +C2864162|T037|PT|S83.016A|ICD10CM|Lateral dislocation of unspecified patella, initial encounter|Lateral dislocation of unspecified patella, initial encounter +C2864163|T037|AB|S83.016D|ICD10CM|Lateral dislocation of unspecified patella, subs encntr|Lateral dislocation of unspecified patella, subs encntr +C2864163|T037|PT|S83.016D|ICD10CM|Lateral dislocation of unspecified patella, subsequent encounter|Lateral dislocation of unspecified patella, subsequent encounter +C2864164|T037|PT|S83.016S|ICD10CM|Lateral dislocation of unspecified patella, sequela|Lateral dislocation of unspecified patella, sequela +C2864164|T037|AB|S83.016S|ICD10CM|Lateral dislocation of unspecified patella, sequela|Lateral dislocation of unspecified patella, sequela +C2864165|T037|AB|S83.09|ICD10CM|Other subluxation and dislocation of patella|Other subluxation and dislocation of patella +C2864165|T037|HT|S83.09|ICD10CM|Other subluxation and dislocation of patella|Other subluxation and dislocation of patella +C2864166|T037|AB|S83.091|ICD10CM|Other subluxation of right patella|Other subluxation of right patella +C2864166|T037|HT|S83.091|ICD10CM|Other subluxation of right patella|Other subluxation of right patella +C2864167|T037|PT|S83.091A|ICD10CM|Other subluxation of right patella, initial encounter|Other subluxation of right patella, initial encounter +C2864167|T037|AB|S83.091A|ICD10CM|Other subluxation of right patella, initial encounter|Other subluxation of right patella, initial encounter +C2864168|T037|PT|S83.091D|ICD10CM|Other subluxation of right patella, subsequent encounter|Other subluxation of right patella, subsequent encounter +C2864168|T037|AB|S83.091D|ICD10CM|Other subluxation of right patella, subsequent encounter|Other subluxation of right patella, subsequent encounter +C2864169|T037|PT|S83.091S|ICD10CM|Other subluxation of right patella, sequela|Other subluxation of right patella, sequela +C2864169|T037|AB|S83.091S|ICD10CM|Other subluxation of right patella, sequela|Other subluxation of right patella, sequela +C2864170|T037|AB|S83.092|ICD10CM|Other subluxation of left patella|Other subluxation of left patella +C2864170|T037|HT|S83.092|ICD10CM|Other subluxation of left patella|Other subluxation of left patella +C2864171|T037|PT|S83.092A|ICD10CM|Other subluxation of left patella, initial encounter|Other subluxation of left patella, initial encounter +C2864171|T037|AB|S83.092A|ICD10CM|Other subluxation of left patella, initial encounter|Other subluxation of left patella, initial encounter +C2864172|T037|PT|S83.092D|ICD10CM|Other subluxation of left patella, subsequent encounter|Other subluxation of left patella, subsequent encounter +C2864172|T037|AB|S83.092D|ICD10CM|Other subluxation of left patella, subsequent encounter|Other subluxation of left patella, subsequent encounter +C2864173|T037|PT|S83.092S|ICD10CM|Other subluxation of left patella, sequela|Other subluxation of left patella, sequela +C2864173|T037|AB|S83.092S|ICD10CM|Other subluxation of left patella, sequela|Other subluxation of left patella, sequela +C2864174|T037|AB|S83.093|ICD10CM|Other subluxation of unspecified patella|Other subluxation of unspecified patella +C2864174|T037|HT|S83.093|ICD10CM|Other subluxation of unspecified patella|Other subluxation of unspecified patella +C2864175|T037|PT|S83.093A|ICD10CM|Other subluxation of unspecified patella, initial encounter|Other subluxation of unspecified patella, initial encounter +C2864175|T037|AB|S83.093A|ICD10CM|Other subluxation of unspecified patella, initial encounter|Other subluxation of unspecified patella, initial encounter +C2864176|T037|AB|S83.093D|ICD10CM|Other subluxation of unspecified patella, subs encntr|Other subluxation of unspecified patella, subs encntr +C2864176|T037|PT|S83.093D|ICD10CM|Other subluxation of unspecified patella, subsequent encounter|Other subluxation of unspecified patella, subsequent encounter +C2864177|T037|PT|S83.093S|ICD10CM|Other subluxation of unspecified patella, sequela|Other subluxation of unspecified patella, sequela +C2864177|T037|AB|S83.093S|ICD10CM|Other subluxation of unspecified patella, sequela|Other subluxation of unspecified patella, sequela +C2864178|T037|AB|S83.094|ICD10CM|Other dislocation of right patella|Other dislocation of right patella +C2864178|T037|HT|S83.094|ICD10CM|Other dislocation of right patella|Other dislocation of right patella +C2864179|T037|PT|S83.094A|ICD10CM|Other dislocation of right patella, initial encounter|Other dislocation of right patella, initial encounter +C2864179|T037|AB|S83.094A|ICD10CM|Other dislocation of right patella, initial encounter|Other dislocation of right patella, initial encounter +C2864180|T037|PT|S83.094D|ICD10CM|Other dislocation of right patella, subsequent encounter|Other dislocation of right patella, subsequent encounter +C2864180|T037|AB|S83.094D|ICD10CM|Other dislocation of right patella, subsequent encounter|Other dislocation of right patella, subsequent encounter +C2864181|T037|PT|S83.094S|ICD10CM|Other dislocation of right patella, sequela|Other dislocation of right patella, sequela +C2864181|T037|AB|S83.094S|ICD10CM|Other dislocation of right patella, sequela|Other dislocation of right patella, sequela +C2864182|T037|AB|S83.095|ICD10CM|Other dislocation of left patella|Other dislocation of left patella +C2864182|T037|HT|S83.095|ICD10CM|Other dislocation of left patella|Other dislocation of left patella +C2864183|T037|PT|S83.095A|ICD10CM|Other dislocation of left patella, initial encounter|Other dislocation of left patella, initial encounter +C2864183|T037|AB|S83.095A|ICD10CM|Other dislocation of left patella, initial encounter|Other dislocation of left patella, initial encounter +C2864184|T037|PT|S83.095D|ICD10CM|Other dislocation of left patella, subsequent encounter|Other dislocation of left patella, subsequent encounter +C2864184|T037|AB|S83.095D|ICD10CM|Other dislocation of left patella, subsequent encounter|Other dislocation of left patella, subsequent encounter +C2864185|T037|PT|S83.095S|ICD10CM|Other dislocation of left patella, sequela|Other dislocation of left patella, sequela +C2864185|T037|AB|S83.095S|ICD10CM|Other dislocation of left patella, sequela|Other dislocation of left patella, sequela +C2864186|T037|AB|S83.096|ICD10CM|Other dislocation of unspecified patella|Other dislocation of unspecified patella +C2864186|T037|HT|S83.096|ICD10CM|Other dislocation of unspecified patella|Other dislocation of unspecified patella +C2864187|T037|PT|S83.096A|ICD10CM|Other dislocation of unspecified patella, initial encounter|Other dislocation of unspecified patella, initial encounter +C2864187|T037|AB|S83.096A|ICD10CM|Other dislocation of unspecified patella, initial encounter|Other dislocation of unspecified patella, initial encounter +C2864188|T037|AB|S83.096D|ICD10CM|Other dislocation of unspecified patella, subs encntr|Other dislocation of unspecified patella, subs encntr +C2864188|T037|PT|S83.096D|ICD10CM|Other dislocation of unspecified patella, subsequent encounter|Other dislocation of unspecified patella, subsequent encounter +C2864189|T037|PT|S83.096S|ICD10CM|Other dislocation of unspecified patella, sequela|Other dislocation of unspecified patella, sequela +C2864189|T037|AB|S83.096S|ICD10CM|Other dislocation of unspecified patella, sequela|Other dislocation of unspecified patella, sequela +C0159970|T037|PT|S83.1|ICD10|Dislocation of knee|Dislocation of knee +C2864190|T037|HT|S83.1|ICD10CM|Subluxation and dislocation of knee|Subluxation and dislocation of knee +C2864190|T037|AB|S83.1|ICD10CM|Subluxation and dislocation of knee|Subluxation and dislocation of knee +C2864191|T037|AB|S83.10|ICD10CM|Unspecified subluxation and dislocation of knee|Unspecified subluxation and dislocation of knee +C2864191|T037|HT|S83.10|ICD10CM|Unspecified subluxation and dislocation of knee|Unspecified subluxation and dislocation of knee +C2864192|T037|AB|S83.101|ICD10CM|Unspecified subluxation of right knee|Unspecified subluxation of right knee +C2864192|T037|HT|S83.101|ICD10CM|Unspecified subluxation of right knee|Unspecified subluxation of right knee +C2864193|T037|PT|S83.101A|ICD10CM|Unspecified subluxation of right knee, initial encounter|Unspecified subluxation of right knee, initial encounter +C2864193|T037|AB|S83.101A|ICD10CM|Unspecified subluxation of right knee, initial encounter|Unspecified subluxation of right knee, initial encounter +C2864194|T037|PT|S83.101D|ICD10CM|Unspecified subluxation of right knee, subsequent encounter|Unspecified subluxation of right knee, subsequent encounter +C2864194|T037|AB|S83.101D|ICD10CM|Unspecified subluxation of right knee, subsequent encounter|Unspecified subluxation of right knee, subsequent encounter +C2864195|T037|PT|S83.101S|ICD10CM|Unspecified subluxation of right knee, sequela|Unspecified subluxation of right knee, sequela +C2864195|T037|AB|S83.101S|ICD10CM|Unspecified subluxation of right knee, sequela|Unspecified subluxation of right knee, sequela +C2864196|T037|AB|S83.102|ICD10CM|Unspecified subluxation of left knee|Unspecified subluxation of left knee +C2864196|T037|HT|S83.102|ICD10CM|Unspecified subluxation of left knee|Unspecified subluxation of left knee +C2864197|T037|PT|S83.102A|ICD10CM|Unspecified subluxation of left knee, initial encounter|Unspecified subluxation of left knee, initial encounter +C2864197|T037|AB|S83.102A|ICD10CM|Unspecified subluxation of left knee, initial encounter|Unspecified subluxation of left knee, initial encounter +C2864198|T037|PT|S83.102D|ICD10CM|Unspecified subluxation of left knee, subsequent encounter|Unspecified subluxation of left knee, subsequent encounter +C2864198|T037|AB|S83.102D|ICD10CM|Unspecified subluxation of left knee, subsequent encounter|Unspecified subluxation of left knee, subsequent encounter +C2864199|T037|PT|S83.102S|ICD10CM|Unspecified subluxation of left knee, sequela|Unspecified subluxation of left knee, sequela +C2864199|T037|AB|S83.102S|ICD10CM|Unspecified subluxation of left knee, sequela|Unspecified subluxation of left knee, sequela +C2864200|T037|AB|S83.103|ICD10CM|Unspecified subluxation of unspecified knee|Unspecified subluxation of unspecified knee +C2864200|T037|HT|S83.103|ICD10CM|Unspecified subluxation of unspecified knee|Unspecified subluxation of unspecified knee +C2864201|T037|AB|S83.103A|ICD10CM|Unspecified subluxation of unspecified knee, init encntr|Unspecified subluxation of unspecified knee, init encntr +C2864201|T037|PT|S83.103A|ICD10CM|Unspecified subluxation of unspecified knee, initial encounter|Unspecified subluxation of unspecified knee, initial encounter +C2864202|T037|AB|S83.103D|ICD10CM|Unspecified subluxation of unspecified knee, subs encntr|Unspecified subluxation of unspecified knee, subs encntr +C2864202|T037|PT|S83.103D|ICD10CM|Unspecified subluxation of unspecified knee, subsequent encounter|Unspecified subluxation of unspecified knee, subsequent encounter +C2864203|T037|PT|S83.103S|ICD10CM|Unspecified subluxation of unspecified knee, sequela|Unspecified subluxation of unspecified knee, sequela +C2864203|T037|AB|S83.103S|ICD10CM|Unspecified subluxation of unspecified knee, sequela|Unspecified subluxation of unspecified knee, sequela +C2864204|T037|AB|S83.104|ICD10CM|Unspecified dislocation of right knee|Unspecified dislocation of right knee +C2864204|T037|HT|S83.104|ICD10CM|Unspecified dislocation of right knee|Unspecified dislocation of right knee +C2864205|T037|PT|S83.104A|ICD10CM|Unspecified dislocation of right knee, initial encounter|Unspecified dislocation of right knee, initial encounter +C2864205|T037|AB|S83.104A|ICD10CM|Unspecified dislocation of right knee, initial encounter|Unspecified dislocation of right knee, initial encounter +C2864206|T037|PT|S83.104D|ICD10CM|Unspecified dislocation of right knee, subsequent encounter|Unspecified dislocation of right knee, subsequent encounter +C2864206|T037|AB|S83.104D|ICD10CM|Unspecified dislocation of right knee, subsequent encounter|Unspecified dislocation of right knee, subsequent encounter +C2864207|T037|PT|S83.104S|ICD10CM|Unspecified dislocation of right knee, sequela|Unspecified dislocation of right knee, sequela +C2864207|T037|AB|S83.104S|ICD10CM|Unspecified dislocation of right knee, sequela|Unspecified dislocation of right knee, sequela +C2864208|T037|AB|S83.105|ICD10CM|Unspecified dislocation of left knee|Unspecified dislocation of left knee +C2864208|T037|HT|S83.105|ICD10CM|Unspecified dislocation of left knee|Unspecified dislocation of left knee +C2864209|T037|PT|S83.105A|ICD10CM|Unspecified dislocation of left knee, initial encounter|Unspecified dislocation of left knee, initial encounter +C2864209|T037|AB|S83.105A|ICD10CM|Unspecified dislocation of left knee, initial encounter|Unspecified dislocation of left knee, initial encounter +C2864210|T037|PT|S83.105D|ICD10CM|Unspecified dislocation of left knee, subsequent encounter|Unspecified dislocation of left knee, subsequent encounter +C2864210|T037|AB|S83.105D|ICD10CM|Unspecified dislocation of left knee, subsequent encounter|Unspecified dislocation of left knee, subsequent encounter +C2864211|T037|PT|S83.105S|ICD10CM|Unspecified dislocation of left knee, sequela|Unspecified dislocation of left knee, sequela +C2864211|T037|AB|S83.105S|ICD10CM|Unspecified dislocation of left knee, sequela|Unspecified dislocation of left knee, sequela +C2864212|T037|AB|S83.106|ICD10CM|Unspecified dislocation of unspecified knee|Unspecified dislocation of unspecified knee +C2864212|T037|HT|S83.106|ICD10CM|Unspecified dislocation of unspecified knee|Unspecified dislocation of unspecified knee +C2864213|T037|AB|S83.106A|ICD10CM|Unspecified dislocation of unspecified knee, init encntr|Unspecified dislocation of unspecified knee, init encntr +C2864213|T037|PT|S83.106A|ICD10CM|Unspecified dislocation of unspecified knee, initial encounter|Unspecified dislocation of unspecified knee, initial encounter +C2864214|T037|AB|S83.106D|ICD10CM|Unspecified dislocation of unspecified knee, subs encntr|Unspecified dislocation of unspecified knee, subs encntr +C2864214|T037|PT|S83.106D|ICD10CM|Unspecified dislocation of unspecified knee, subsequent encounter|Unspecified dislocation of unspecified knee, subsequent encounter +C2864215|T037|PT|S83.106S|ICD10CM|Unspecified dislocation of unspecified knee, sequela|Unspecified dislocation of unspecified knee, sequela +C2864215|T037|AB|S83.106S|ICD10CM|Unspecified dislocation of unspecified knee, sequela|Unspecified dislocation of unspecified knee, sequela +C2864217|T037|AB|S83.11|ICD10CM|Anterior subluxation and disloc of proximal end of tibia|Anterior subluxation and disloc of proximal end of tibia +C2864217|T037|HT|S83.11|ICD10CM|Anterior subluxation and dislocation of proximal end of tibia|Anterior subluxation and dislocation of proximal end of tibia +C2864216|T037|ET|S83.11|ICD10CM|Posterior subluxation and dislocation of distal end of femur|Posterior subluxation and dislocation of distal end of femur +C2864218|T037|AB|S83.111|ICD10CM|Anterior subluxation of proximal end of tibia, right knee|Anterior subluxation of proximal end of tibia, right knee +C2864218|T037|HT|S83.111|ICD10CM|Anterior subluxation of proximal end of tibia, right knee|Anterior subluxation of proximal end of tibia, right knee +C2864219|T037|AB|S83.111A|ICD10CM|Anterior sublux of proximal end of tibia, right knee, init|Anterior sublux of proximal end of tibia, right knee, init +C2864219|T037|PT|S83.111A|ICD10CM|Anterior subluxation of proximal end of tibia, right knee, initial encounter|Anterior subluxation of proximal end of tibia, right knee, initial encounter +C2864220|T037|AB|S83.111D|ICD10CM|Anterior sublux of proximal end of tibia, right knee, subs|Anterior sublux of proximal end of tibia, right knee, subs +C2864220|T037|PT|S83.111D|ICD10CM|Anterior subluxation of proximal end of tibia, right knee, subsequent encounter|Anterior subluxation of proximal end of tibia, right knee, subsequent encounter +C2864221|T037|AB|S83.111S|ICD10CM|Anterior sublux of proximal end of tibia, r knee, sequela|Anterior sublux of proximal end of tibia, r knee, sequela +C2864221|T037|PT|S83.111S|ICD10CM|Anterior subluxation of proximal end of tibia, right knee, sequela|Anterior subluxation of proximal end of tibia, right knee, sequela +C2864222|T037|AB|S83.112|ICD10CM|Anterior subluxation of proximal end of tibia, left knee|Anterior subluxation of proximal end of tibia, left knee +C2864222|T037|HT|S83.112|ICD10CM|Anterior subluxation of proximal end of tibia, left knee|Anterior subluxation of proximal end of tibia, left knee +C2864223|T037|AB|S83.112A|ICD10CM|Anterior sublux of proximal end of tibia, left knee, init|Anterior sublux of proximal end of tibia, left knee, init +C2864223|T037|PT|S83.112A|ICD10CM|Anterior subluxation of proximal end of tibia, left knee, initial encounter|Anterior subluxation of proximal end of tibia, left knee, initial encounter +C2864224|T037|AB|S83.112D|ICD10CM|Anterior sublux of proximal end of tibia, left knee, subs|Anterior sublux of proximal end of tibia, left knee, subs +C2864224|T037|PT|S83.112D|ICD10CM|Anterior subluxation of proximal end of tibia, left knee, subsequent encounter|Anterior subluxation of proximal end of tibia, left knee, subsequent encounter +C2864225|T037|AB|S83.112S|ICD10CM|Anterior sublux of proximal end of tibia, left knee, sequela|Anterior sublux of proximal end of tibia, left knee, sequela +C2864225|T037|PT|S83.112S|ICD10CM|Anterior subluxation of proximal end of tibia, left knee, sequela|Anterior subluxation of proximal end of tibia, left knee, sequela +C2864226|T037|AB|S83.113|ICD10CM|Anterior subluxation of proximal end of tibia, unsp knee|Anterior subluxation of proximal end of tibia, unsp knee +C2864226|T037|HT|S83.113|ICD10CM|Anterior subluxation of proximal end of tibia, unspecified knee|Anterior subluxation of proximal end of tibia, unspecified knee +C2864227|T037|AB|S83.113A|ICD10CM|Anterior sublux of proximal end of tibia, unsp knee, init|Anterior sublux of proximal end of tibia, unsp knee, init +C2864227|T037|PT|S83.113A|ICD10CM|Anterior subluxation of proximal end of tibia, unspecified knee, initial encounter|Anterior subluxation of proximal end of tibia, unspecified knee, initial encounter +C2864228|T037|AB|S83.113D|ICD10CM|Anterior sublux of proximal end of tibia, unsp knee, subs|Anterior sublux of proximal end of tibia, unsp knee, subs +C2864228|T037|PT|S83.113D|ICD10CM|Anterior subluxation of proximal end of tibia, unspecified knee, subsequent encounter|Anterior subluxation of proximal end of tibia, unspecified knee, subsequent encounter +C2864229|T037|AB|S83.113S|ICD10CM|Anterior sublux of proximal end of tibia, unsp knee, sequela|Anterior sublux of proximal end of tibia, unsp knee, sequela +C2864229|T037|PT|S83.113S|ICD10CM|Anterior subluxation of proximal end of tibia, unspecified knee, sequela|Anterior subluxation of proximal end of tibia, unspecified knee, sequela +C2864230|T037|AB|S83.114|ICD10CM|Anterior dislocation of proximal end of tibia, right knee|Anterior dislocation of proximal end of tibia, right knee +C2864230|T037|HT|S83.114|ICD10CM|Anterior dislocation of proximal end of tibia, right knee|Anterior dislocation of proximal end of tibia, right knee +C2864231|T037|AB|S83.114A|ICD10CM|Anterior disloc of proximal end of tibia, right knee, init|Anterior disloc of proximal end of tibia, right knee, init +C2864231|T037|PT|S83.114A|ICD10CM|Anterior dislocation of proximal end of tibia, right knee, initial encounter|Anterior dislocation of proximal end of tibia, right knee, initial encounter +C2864232|T037|AB|S83.114D|ICD10CM|Anterior disloc of proximal end of tibia, right knee, subs|Anterior disloc of proximal end of tibia, right knee, subs +C2864232|T037|PT|S83.114D|ICD10CM|Anterior dislocation of proximal end of tibia, right knee, subsequent encounter|Anterior dislocation of proximal end of tibia, right knee, subsequent encounter +C2864233|T037|AB|S83.114S|ICD10CM|Anterior disloc of proximal end of tibia, r knee, sequela|Anterior disloc of proximal end of tibia, r knee, sequela +C2864233|T037|PT|S83.114S|ICD10CM|Anterior dislocation of proximal end of tibia, right knee, sequela|Anterior dislocation of proximal end of tibia, right knee, sequela +C2864234|T037|AB|S83.115|ICD10CM|Anterior dislocation of proximal end of tibia, left knee|Anterior dislocation of proximal end of tibia, left knee +C2864234|T037|HT|S83.115|ICD10CM|Anterior dislocation of proximal end of tibia, left knee|Anterior dislocation of proximal end of tibia, left knee +C2864235|T037|AB|S83.115A|ICD10CM|Anterior disloc of proximal end of tibia, left knee, init|Anterior disloc of proximal end of tibia, left knee, init +C2864235|T037|PT|S83.115A|ICD10CM|Anterior dislocation of proximal end of tibia, left knee, initial encounter|Anterior dislocation of proximal end of tibia, left knee, initial encounter +C2864236|T037|AB|S83.115D|ICD10CM|Anterior disloc of proximal end of tibia, left knee, subs|Anterior disloc of proximal end of tibia, left knee, subs +C2864236|T037|PT|S83.115D|ICD10CM|Anterior dislocation of proximal end of tibia, left knee, subsequent encounter|Anterior dislocation of proximal end of tibia, left knee, subsequent encounter +C2864237|T037|AB|S83.115S|ICD10CM|Anterior disloc of proximal end of tibia, left knee, sequela|Anterior disloc of proximal end of tibia, left knee, sequela +C2864237|T037|PT|S83.115S|ICD10CM|Anterior dislocation of proximal end of tibia, left knee, sequela|Anterior dislocation of proximal end of tibia, left knee, sequela +C2864238|T037|AB|S83.116|ICD10CM|Anterior dislocation of proximal end of tibia, unsp knee|Anterior dislocation of proximal end of tibia, unsp knee +C2864238|T037|HT|S83.116|ICD10CM|Anterior dislocation of proximal end of tibia, unspecified knee|Anterior dislocation of proximal end of tibia, unspecified knee +C2864239|T037|AB|S83.116A|ICD10CM|Anterior disloc of proximal end of tibia, unsp knee, init|Anterior disloc of proximal end of tibia, unsp knee, init +C2864239|T037|PT|S83.116A|ICD10CM|Anterior dislocation of proximal end of tibia, unspecified knee, initial encounter|Anterior dislocation of proximal end of tibia, unspecified knee, initial encounter +C2864240|T037|AB|S83.116D|ICD10CM|Anterior disloc of proximal end of tibia, unsp knee, subs|Anterior disloc of proximal end of tibia, unsp knee, subs +C2864240|T037|PT|S83.116D|ICD10CM|Anterior dislocation of proximal end of tibia, unspecified knee, subsequent encounter|Anterior dislocation of proximal end of tibia, unspecified knee, subsequent encounter +C2864241|T037|AB|S83.116S|ICD10CM|Anterior disloc of proximal end of tibia, unsp knee, sequela|Anterior disloc of proximal end of tibia, unsp knee, sequela +C2864241|T037|PT|S83.116S|ICD10CM|Anterior dislocation of proximal end of tibia, unspecified knee, sequela|Anterior dislocation of proximal end of tibia, unspecified knee, sequela +C0272841|T037|ET|S83.12|ICD10CM|Anterior dislocation of distal end of femur|Anterior dislocation of distal end of femur +C2864242|T037|AB|S83.12|ICD10CM|Posterior subluxation and disloc of proximal end of tibia|Posterior subluxation and disloc of proximal end of tibia +C2864242|T037|HT|S83.12|ICD10CM|Posterior subluxation and dislocation of proximal end of tibia|Posterior subluxation and dislocation of proximal end of tibia +C2864243|T037|AB|S83.121|ICD10CM|Posterior subluxation of proximal end of tibia, right knee|Posterior subluxation of proximal end of tibia, right knee +C2864243|T037|HT|S83.121|ICD10CM|Posterior subluxation of proximal end of tibia, right knee|Posterior subluxation of proximal end of tibia, right knee +C2864244|T037|AB|S83.121A|ICD10CM|Posterior sublux of proximal end of tibia, right knee, init|Posterior sublux of proximal end of tibia, right knee, init +C2864244|T037|PT|S83.121A|ICD10CM|Posterior subluxation of proximal end of tibia, right knee, initial encounter|Posterior subluxation of proximal end of tibia, right knee, initial encounter +C2864245|T037|AB|S83.121D|ICD10CM|Posterior sublux of proximal end of tibia, right knee, subs|Posterior sublux of proximal end of tibia, right knee, subs +C2864245|T037|PT|S83.121D|ICD10CM|Posterior subluxation of proximal end of tibia, right knee, subsequent encounter|Posterior subluxation of proximal end of tibia, right knee, subsequent encounter +C2864246|T037|AB|S83.121S|ICD10CM|Posterior sublux of proximal end of tibia, r knee, sequela|Posterior sublux of proximal end of tibia, r knee, sequela +C2864246|T037|PT|S83.121S|ICD10CM|Posterior subluxation of proximal end of tibia, right knee, sequela|Posterior subluxation of proximal end of tibia, right knee, sequela +C2864247|T037|AB|S83.122|ICD10CM|Posterior subluxation of proximal end of tibia, left knee|Posterior subluxation of proximal end of tibia, left knee +C2864247|T037|HT|S83.122|ICD10CM|Posterior subluxation of proximal end of tibia, left knee|Posterior subluxation of proximal end of tibia, left knee +C2864248|T037|AB|S83.122A|ICD10CM|Posterior sublux of proximal end of tibia, left knee, init|Posterior sublux of proximal end of tibia, left knee, init +C2864248|T037|PT|S83.122A|ICD10CM|Posterior subluxation of proximal end of tibia, left knee, initial encounter|Posterior subluxation of proximal end of tibia, left knee, initial encounter +C2864249|T037|AB|S83.122D|ICD10CM|Posterior sublux of proximal end of tibia, left knee, subs|Posterior sublux of proximal end of tibia, left knee, subs +C2864249|T037|PT|S83.122D|ICD10CM|Posterior subluxation of proximal end of tibia, left knee, subsequent encounter|Posterior subluxation of proximal end of tibia, left knee, subsequent encounter +C2864250|T037|AB|S83.122S|ICD10CM|Posterior sublux of proximal end of tibia, l knee, sequela|Posterior sublux of proximal end of tibia, l knee, sequela +C2864250|T037|PT|S83.122S|ICD10CM|Posterior subluxation of proximal end of tibia, left knee, sequela|Posterior subluxation of proximal end of tibia, left knee, sequela +C2864251|T037|AB|S83.123|ICD10CM|Posterior subluxation of proximal end of tibia, unsp knee|Posterior subluxation of proximal end of tibia, unsp knee +C2864251|T037|HT|S83.123|ICD10CM|Posterior subluxation of proximal end of tibia, unspecified knee|Posterior subluxation of proximal end of tibia, unspecified knee +C2864252|T037|AB|S83.123A|ICD10CM|Posterior sublux of proximal end of tibia, unsp knee, init|Posterior sublux of proximal end of tibia, unsp knee, init +C2864252|T037|PT|S83.123A|ICD10CM|Posterior subluxation of proximal end of tibia, unspecified knee, initial encounter|Posterior subluxation of proximal end of tibia, unspecified knee, initial encounter +C2864253|T037|AB|S83.123D|ICD10CM|Posterior sublux of proximal end of tibia, unsp knee, subs|Posterior sublux of proximal end of tibia, unsp knee, subs +C2864253|T037|PT|S83.123D|ICD10CM|Posterior subluxation of proximal end of tibia, unspecified knee, subsequent encounter|Posterior subluxation of proximal end of tibia, unspecified knee, subsequent encounter +C2864254|T037|AB|S83.123S|ICD10CM|Post sublux of proximal end of tibia, unsp knee, sequela|Post sublux of proximal end of tibia, unsp knee, sequela +C2864254|T037|PT|S83.123S|ICD10CM|Posterior subluxation of proximal end of tibia, unspecified knee, sequela|Posterior subluxation of proximal end of tibia, unspecified knee, sequela +C2864255|T037|AB|S83.124|ICD10CM|Posterior dislocation of proximal end of tibia, right knee|Posterior dislocation of proximal end of tibia, right knee +C2864255|T037|HT|S83.124|ICD10CM|Posterior dislocation of proximal end of tibia, right knee|Posterior dislocation of proximal end of tibia, right knee +C2864256|T037|AB|S83.124A|ICD10CM|Posterior disloc of proximal end of tibia, right knee, init|Posterior disloc of proximal end of tibia, right knee, init +C2864256|T037|PT|S83.124A|ICD10CM|Posterior dislocation of proximal end of tibia, right knee, initial encounter|Posterior dislocation of proximal end of tibia, right knee, initial encounter +C2864257|T037|AB|S83.124D|ICD10CM|Posterior disloc of proximal end of tibia, right knee, subs|Posterior disloc of proximal end of tibia, right knee, subs +C2864257|T037|PT|S83.124D|ICD10CM|Posterior dislocation of proximal end of tibia, right knee, subsequent encounter|Posterior dislocation of proximal end of tibia, right knee, subsequent encounter +C2864258|T037|AB|S83.124S|ICD10CM|Posterior disloc of proximal end of tibia, r knee, sequela|Posterior disloc of proximal end of tibia, r knee, sequela +C2864258|T037|PT|S83.124S|ICD10CM|Posterior dislocation of proximal end of tibia, right knee, sequela|Posterior dislocation of proximal end of tibia, right knee, sequela +C2864259|T037|AB|S83.125|ICD10CM|Posterior dislocation of proximal end of tibia, left knee|Posterior dislocation of proximal end of tibia, left knee +C2864259|T037|HT|S83.125|ICD10CM|Posterior dislocation of proximal end of tibia, left knee|Posterior dislocation of proximal end of tibia, left knee +C2864260|T037|AB|S83.125A|ICD10CM|Posterior disloc of proximal end of tibia, left knee, init|Posterior disloc of proximal end of tibia, left knee, init +C2864260|T037|PT|S83.125A|ICD10CM|Posterior dislocation of proximal end of tibia, left knee, initial encounter|Posterior dislocation of proximal end of tibia, left knee, initial encounter +C2864261|T037|AB|S83.125D|ICD10CM|Posterior disloc of proximal end of tibia, left knee, subs|Posterior disloc of proximal end of tibia, left knee, subs +C2864261|T037|PT|S83.125D|ICD10CM|Posterior dislocation of proximal end of tibia, left knee, subsequent encounter|Posterior dislocation of proximal end of tibia, left knee, subsequent encounter +C2864262|T037|AB|S83.125S|ICD10CM|Posterior disloc of proximal end of tibia, l knee, sequela|Posterior disloc of proximal end of tibia, l knee, sequela +C2864262|T037|PT|S83.125S|ICD10CM|Posterior dislocation of proximal end of tibia, left knee, sequela|Posterior dislocation of proximal end of tibia, left knee, sequela +C2864263|T037|AB|S83.126|ICD10CM|Posterior dislocation of proximal end of tibia, unsp knee|Posterior dislocation of proximal end of tibia, unsp knee +C2864263|T037|HT|S83.126|ICD10CM|Posterior dislocation of proximal end of tibia, unspecified knee|Posterior dislocation of proximal end of tibia, unspecified knee +C2864264|T037|AB|S83.126A|ICD10CM|Posterior disloc of proximal end of tibia, unsp knee, init|Posterior disloc of proximal end of tibia, unsp knee, init +C2864264|T037|PT|S83.126A|ICD10CM|Posterior dislocation of proximal end of tibia, unspecified knee, initial encounter|Posterior dislocation of proximal end of tibia, unspecified knee, initial encounter +C2864265|T037|AB|S83.126D|ICD10CM|Posterior disloc of proximal end of tibia, unsp knee, subs|Posterior disloc of proximal end of tibia, unsp knee, subs +C2864265|T037|PT|S83.126D|ICD10CM|Posterior dislocation of proximal end of tibia, unspecified knee, subsequent encounter|Posterior dislocation of proximal end of tibia, unspecified knee, subsequent encounter +C2864266|T037|AB|S83.126S|ICD10CM|Post disloc of proximal end of tibia, unsp knee, sequela|Post disloc of proximal end of tibia, unsp knee, sequela +C2864266|T037|PT|S83.126S|ICD10CM|Posterior dislocation of proximal end of tibia, unspecified knee, sequela|Posterior dislocation of proximal end of tibia, unspecified knee, sequela +C2864267|T037|AB|S83.13|ICD10CM|Medial subluxation and dislocation of proximal end of tibia|Medial subluxation and dislocation of proximal end of tibia +C2864267|T037|HT|S83.13|ICD10CM|Medial subluxation and dislocation of proximal end of tibia|Medial subluxation and dislocation of proximal end of tibia +C2864268|T037|AB|S83.131|ICD10CM|Medial subluxation of proximal end of tibia, right knee|Medial subluxation of proximal end of tibia, right knee +C2864268|T037|HT|S83.131|ICD10CM|Medial subluxation of proximal end of tibia, right knee|Medial subluxation of proximal end of tibia, right knee +C2864269|T037|AB|S83.131A|ICD10CM|Medial sublux of proximal end of tibia, right knee, init|Medial sublux of proximal end of tibia, right knee, init +C2864269|T037|PT|S83.131A|ICD10CM|Medial subluxation of proximal end of tibia, right knee, initial encounter|Medial subluxation of proximal end of tibia, right knee, initial encounter +C2864270|T037|AB|S83.131D|ICD10CM|Medial sublux of proximal end of tibia, right knee, subs|Medial sublux of proximal end of tibia, right knee, subs +C2864270|T037|PT|S83.131D|ICD10CM|Medial subluxation of proximal end of tibia, right knee, subsequent encounter|Medial subluxation of proximal end of tibia, right knee, subsequent encounter +C2864271|T037|AB|S83.131S|ICD10CM|Medial sublux of proximal end of tibia, right knee, sequela|Medial sublux of proximal end of tibia, right knee, sequela +C2864271|T037|PT|S83.131S|ICD10CM|Medial subluxation of proximal end of tibia, right knee, sequela|Medial subluxation of proximal end of tibia, right knee, sequela +C2864272|T037|AB|S83.132|ICD10CM|Medial subluxation of proximal end of tibia, left knee|Medial subluxation of proximal end of tibia, left knee +C2864272|T037|HT|S83.132|ICD10CM|Medial subluxation of proximal end of tibia, left knee|Medial subluxation of proximal end of tibia, left knee +C2864273|T037|AB|S83.132A|ICD10CM|Medial subluxation of proximal end of tibia, left knee, init|Medial subluxation of proximal end of tibia, left knee, init +C2864273|T037|PT|S83.132A|ICD10CM|Medial subluxation of proximal end of tibia, left knee, initial encounter|Medial subluxation of proximal end of tibia, left knee, initial encounter +C2864274|T037|AB|S83.132D|ICD10CM|Medial subluxation of proximal end of tibia, left knee, subs|Medial subluxation of proximal end of tibia, left knee, subs +C2864274|T037|PT|S83.132D|ICD10CM|Medial subluxation of proximal end of tibia, left knee, subsequent encounter|Medial subluxation of proximal end of tibia, left knee, subsequent encounter +C2864275|T037|AB|S83.132S|ICD10CM|Medial sublux of proximal end of tibia, left knee, sequela|Medial sublux of proximal end of tibia, left knee, sequela +C2864275|T037|PT|S83.132S|ICD10CM|Medial subluxation of proximal end of tibia, left knee, sequela|Medial subluxation of proximal end of tibia, left knee, sequela +C2864276|T037|AB|S83.133|ICD10CM|Medial subluxation of proximal end of tibia, unsp knee|Medial subluxation of proximal end of tibia, unsp knee +C2864276|T037|HT|S83.133|ICD10CM|Medial subluxation of proximal end of tibia, unspecified knee|Medial subluxation of proximal end of tibia, unspecified knee +C2864277|T037|AB|S83.133A|ICD10CM|Medial subluxation of proximal end of tibia, unsp knee, init|Medial subluxation of proximal end of tibia, unsp knee, init +C2864277|T037|PT|S83.133A|ICD10CM|Medial subluxation of proximal end of tibia, unspecified knee, initial encounter|Medial subluxation of proximal end of tibia, unspecified knee, initial encounter +C2864278|T037|AB|S83.133D|ICD10CM|Medial subluxation of proximal end of tibia, unsp knee, subs|Medial subluxation of proximal end of tibia, unsp knee, subs +C2864278|T037|PT|S83.133D|ICD10CM|Medial subluxation of proximal end of tibia, unspecified knee, subsequent encounter|Medial subluxation of proximal end of tibia, unspecified knee, subsequent encounter +C2864279|T037|AB|S83.133S|ICD10CM|Medial sublux of proximal end of tibia, unsp knee, sequela|Medial sublux of proximal end of tibia, unsp knee, sequela +C2864279|T037|PT|S83.133S|ICD10CM|Medial subluxation of proximal end of tibia, unspecified knee, sequela|Medial subluxation of proximal end of tibia, unspecified knee, sequela +C2864280|T037|AB|S83.134|ICD10CM|Medial dislocation of proximal end of tibia, right knee|Medial dislocation of proximal end of tibia, right knee +C2864280|T037|HT|S83.134|ICD10CM|Medial dislocation of proximal end of tibia, right knee|Medial dislocation of proximal end of tibia, right knee +C2864281|T037|AB|S83.134A|ICD10CM|Medial disloc of proximal end of tibia, right knee, init|Medial disloc of proximal end of tibia, right knee, init +C2864281|T037|PT|S83.134A|ICD10CM|Medial dislocation of proximal end of tibia, right knee, initial encounter|Medial dislocation of proximal end of tibia, right knee, initial encounter +C2864282|T037|AB|S83.134D|ICD10CM|Medial disloc of proximal end of tibia, right knee, subs|Medial disloc of proximal end of tibia, right knee, subs +C2864282|T037|PT|S83.134D|ICD10CM|Medial dislocation of proximal end of tibia, right knee, subsequent encounter|Medial dislocation of proximal end of tibia, right knee, subsequent encounter +C2864283|T037|AB|S83.134S|ICD10CM|Medial disloc of proximal end of tibia, right knee, sequela|Medial disloc of proximal end of tibia, right knee, sequela +C2864283|T037|PT|S83.134S|ICD10CM|Medial dislocation of proximal end of tibia, right knee, sequela|Medial dislocation of proximal end of tibia, right knee, sequela +C2864284|T037|AB|S83.135|ICD10CM|Medial dislocation of proximal end of tibia, left knee|Medial dislocation of proximal end of tibia, left knee +C2864284|T037|HT|S83.135|ICD10CM|Medial dislocation of proximal end of tibia, left knee|Medial dislocation of proximal end of tibia, left knee +C2864285|T037|AB|S83.135A|ICD10CM|Medial dislocation of proximal end of tibia, left knee, init|Medial dislocation of proximal end of tibia, left knee, init +C2864285|T037|PT|S83.135A|ICD10CM|Medial dislocation of proximal end of tibia, left knee, initial encounter|Medial dislocation of proximal end of tibia, left knee, initial encounter +C2864286|T037|AB|S83.135D|ICD10CM|Medial dislocation of proximal end of tibia, left knee, subs|Medial dislocation of proximal end of tibia, left knee, subs +C2864286|T037|PT|S83.135D|ICD10CM|Medial dislocation of proximal end of tibia, left knee, subsequent encounter|Medial dislocation of proximal end of tibia, left knee, subsequent encounter +C2864287|T037|AB|S83.135S|ICD10CM|Medial disloc of proximal end of tibia, left knee, sequela|Medial disloc of proximal end of tibia, left knee, sequela +C2864287|T037|PT|S83.135S|ICD10CM|Medial dislocation of proximal end of tibia, left knee, sequela|Medial dislocation of proximal end of tibia, left knee, sequela +C2864288|T037|AB|S83.136|ICD10CM|Medial dislocation of proximal end of tibia, unsp knee|Medial dislocation of proximal end of tibia, unsp knee +C2864288|T037|HT|S83.136|ICD10CM|Medial dislocation of proximal end of tibia, unspecified knee|Medial dislocation of proximal end of tibia, unspecified knee +C2864289|T037|AB|S83.136A|ICD10CM|Medial dislocation of proximal end of tibia, unsp knee, init|Medial dislocation of proximal end of tibia, unsp knee, init +C2864289|T037|PT|S83.136A|ICD10CM|Medial dislocation of proximal end of tibia, unspecified knee, initial encounter|Medial dislocation of proximal end of tibia, unspecified knee, initial encounter +C2864290|T037|AB|S83.136D|ICD10CM|Medial dislocation of proximal end of tibia, unsp knee, subs|Medial dislocation of proximal end of tibia, unsp knee, subs +C2864290|T037|PT|S83.136D|ICD10CM|Medial dislocation of proximal end of tibia, unspecified knee, subsequent encounter|Medial dislocation of proximal end of tibia, unspecified knee, subsequent encounter +C2864291|T037|AB|S83.136S|ICD10CM|Medial disloc of proximal end of tibia, unsp knee, sequela|Medial disloc of proximal end of tibia, unsp knee, sequela +C2864291|T037|PT|S83.136S|ICD10CM|Medial dislocation of proximal end of tibia, unspecified knee, sequela|Medial dislocation of proximal end of tibia, unspecified knee, sequela +C2864292|T037|AB|S83.14|ICD10CM|Lateral subluxation and dislocation of proximal end of tibia|Lateral subluxation and dislocation of proximal end of tibia +C2864292|T037|HT|S83.14|ICD10CM|Lateral subluxation and dislocation of proximal end of tibia|Lateral subluxation and dislocation of proximal end of tibia +C2864293|T037|AB|S83.141|ICD10CM|Lateral subluxation of proximal end of tibia, right knee|Lateral subluxation of proximal end of tibia, right knee +C2864293|T037|HT|S83.141|ICD10CM|Lateral subluxation of proximal end of tibia, right knee|Lateral subluxation of proximal end of tibia, right knee +C2864294|T037|AB|S83.141A|ICD10CM|Lateral sublux of proximal end of tibia, right knee, init|Lateral sublux of proximal end of tibia, right knee, init +C2864294|T037|PT|S83.141A|ICD10CM|Lateral subluxation of proximal end of tibia, right knee, initial encounter|Lateral subluxation of proximal end of tibia, right knee, initial encounter +C2864295|T037|AB|S83.141D|ICD10CM|Lateral sublux of proximal end of tibia, right knee, subs|Lateral sublux of proximal end of tibia, right knee, subs +C2864295|T037|PT|S83.141D|ICD10CM|Lateral subluxation of proximal end of tibia, right knee, subsequent encounter|Lateral subluxation of proximal end of tibia, right knee, subsequent encounter +C2864296|T037|AB|S83.141S|ICD10CM|Lateral sublux of proximal end of tibia, right knee, sequela|Lateral sublux of proximal end of tibia, right knee, sequela +C2864296|T037|PT|S83.141S|ICD10CM|Lateral subluxation of proximal end of tibia, right knee, sequela|Lateral subluxation of proximal end of tibia, right knee, sequela +C2864297|T037|AB|S83.142|ICD10CM|Lateral subluxation of proximal end of tibia, left knee|Lateral subluxation of proximal end of tibia, left knee +C2864297|T037|HT|S83.142|ICD10CM|Lateral subluxation of proximal end of tibia, left knee|Lateral subluxation of proximal end of tibia, left knee +C2864298|T037|AB|S83.142A|ICD10CM|Lateral sublux of proximal end of tibia, left knee, init|Lateral sublux of proximal end of tibia, left knee, init +C2864298|T037|PT|S83.142A|ICD10CM|Lateral subluxation of proximal end of tibia, left knee, initial encounter|Lateral subluxation of proximal end of tibia, left knee, initial encounter +C2864299|T037|AB|S83.142D|ICD10CM|Lateral sublux of proximal end of tibia, left knee, subs|Lateral sublux of proximal end of tibia, left knee, subs +C2864299|T037|PT|S83.142D|ICD10CM|Lateral subluxation of proximal end of tibia, left knee, subsequent encounter|Lateral subluxation of proximal end of tibia, left knee, subsequent encounter +C2864300|T037|AB|S83.142S|ICD10CM|Lateral sublux of proximal end of tibia, left knee, sequela|Lateral sublux of proximal end of tibia, left knee, sequela +C2864300|T037|PT|S83.142S|ICD10CM|Lateral subluxation of proximal end of tibia, left knee, sequela|Lateral subluxation of proximal end of tibia, left knee, sequela +C2864301|T037|AB|S83.143|ICD10CM|Lateral subluxation of proximal end of tibia, unsp knee|Lateral subluxation of proximal end of tibia, unsp knee +C2864301|T037|HT|S83.143|ICD10CM|Lateral subluxation of proximal end of tibia, unspecified knee|Lateral subluxation of proximal end of tibia, unspecified knee +C2864302|T037|AB|S83.143A|ICD10CM|Lateral sublux of proximal end of tibia, unsp knee, init|Lateral sublux of proximal end of tibia, unsp knee, init +C2864302|T037|PT|S83.143A|ICD10CM|Lateral subluxation of proximal end of tibia, unspecified knee, initial encounter|Lateral subluxation of proximal end of tibia, unspecified knee, initial encounter +C2864303|T037|AB|S83.143D|ICD10CM|Lateral sublux of proximal end of tibia, unsp knee, subs|Lateral sublux of proximal end of tibia, unsp knee, subs +C2864303|T037|PT|S83.143D|ICD10CM|Lateral subluxation of proximal end of tibia, unspecified knee, subsequent encounter|Lateral subluxation of proximal end of tibia, unspecified knee, subsequent encounter +C2864304|T037|AB|S83.143S|ICD10CM|Lateral sublux of proximal end of tibia, unsp knee, sequela|Lateral sublux of proximal end of tibia, unsp knee, sequela +C2864304|T037|PT|S83.143S|ICD10CM|Lateral subluxation of proximal end of tibia, unspecified knee, sequela|Lateral subluxation of proximal end of tibia, unspecified knee, sequela +C2864305|T037|AB|S83.144|ICD10CM|Lateral dislocation of proximal end of tibia, right knee|Lateral dislocation of proximal end of tibia, right knee +C2864305|T037|HT|S83.144|ICD10CM|Lateral dislocation of proximal end of tibia, right knee|Lateral dislocation of proximal end of tibia, right knee +C2864306|T037|AB|S83.144A|ICD10CM|Lateral disloc of proximal end of tibia, right knee, init|Lateral disloc of proximal end of tibia, right knee, init +C2864306|T037|PT|S83.144A|ICD10CM|Lateral dislocation of proximal end of tibia, right knee, initial encounter|Lateral dislocation of proximal end of tibia, right knee, initial encounter +C2864307|T037|AB|S83.144D|ICD10CM|Lateral disloc of proximal end of tibia, right knee, subs|Lateral disloc of proximal end of tibia, right knee, subs +C2864307|T037|PT|S83.144D|ICD10CM|Lateral dislocation of proximal end of tibia, right knee, subsequent encounter|Lateral dislocation of proximal end of tibia, right knee, subsequent encounter +C2864308|T037|AB|S83.144S|ICD10CM|Lateral disloc of proximal end of tibia, right knee, sequela|Lateral disloc of proximal end of tibia, right knee, sequela +C2864308|T037|PT|S83.144S|ICD10CM|Lateral dislocation of proximal end of tibia, right knee, sequela|Lateral dislocation of proximal end of tibia, right knee, sequela +C2864309|T037|AB|S83.145|ICD10CM|Lateral dislocation of proximal end of tibia, left knee|Lateral dislocation of proximal end of tibia, left knee +C2864309|T037|HT|S83.145|ICD10CM|Lateral dislocation of proximal end of tibia, left knee|Lateral dislocation of proximal end of tibia, left knee +C2864310|T037|AB|S83.145A|ICD10CM|Lateral disloc of proximal end of tibia, left knee, init|Lateral disloc of proximal end of tibia, left knee, init +C2864310|T037|PT|S83.145A|ICD10CM|Lateral dislocation of proximal end of tibia, left knee, initial encounter|Lateral dislocation of proximal end of tibia, left knee, initial encounter +C2864311|T037|AB|S83.145D|ICD10CM|Lateral disloc of proximal end of tibia, left knee, subs|Lateral disloc of proximal end of tibia, left knee, subs +C2864311|T037|PT|S83.145D|ICD10CM|Lateral dislocation of proximal end of tibia, left knee, subsequent encounter|Lateral dislocation of proximal end of tibia, left knee, subsequent encounter +C2864312|T037|AB|S83.145S|ICD10CM|Lateral disloc of proximal end of tibia, left knee, sequela|Lateral disloc of proximal end of tibia, left knee, sequela +C2864312|T037|PT|S83.145S|ICD10CM|Lateral dislocation of proximal end of tibia, left knee, sequela|Lateral dislocation of proximal end of tibia, left knee, sequela +C2864313|T037|AB|S83.146|ICD10CM|Lateral dislocation of proximal end of tibia, unsp knee|Lateral dislocation of proximal end of tibia, unsp knee +C2864313|T037|HT|S83.146|ICD10CM|Lateral dislocation of proximal end of tibia, unspecified knee|Lateral dislocation of proximal end of tibia, unspecified knee +C2864314|T037|AB|S83.146A|ICD10CM|Lateral disloc of proximal end of tibia, unsp knee, init|Lateral disloc of proximal end of tibia, unsp knee, init +C2864314|T037|PT|S83.146A|ICD10CM|Lateral dislocation of proximal end of tibia, unspecified knee, initial encounter|Lateral dislocation of proximal end of tibia, unspecified knee, initial encounter +C2864315|T037|AB|S83.146D|ICD10CM|Lateral disloc of proximal end of tibia, unsp knee, subs|Lateral disloc of proximal end of tibia, unsp knee, subs +C2864315|T037|PT|S83.146D|ICD10CM|Lateral dislocation of proximal end of tibia, unspecified knee, subsequent encounter|Lateral dislocation of proximal end of tibia, unspecified knee, subsequent encounter +C2864316|T037|AB|S83.146S|ICD10CM|Lateral disloc of proximal end of tibia, unsp knee, sequela|Lateral disloc of proximal end of tibia, unsp knee, sequela +C2864316|T037|PT|S83.146S|ICD10CM|Lateral dislocation of proximal end of tibia, unspecified knee, sequela|Lateral dislocation of proximal end of tibia, unspecified knee, sequela +C2864317|T037|AB|S83.19|ICD10CM|Other subluxation and dislocation of knee|Other subluxation and dislocation of knee +C2864317|T037|HT|S83.19|ICD10CM|Other subluxation and dislocation of knee|Other subluxation and dislocation of knee +C2864318|T037|AB|S83.191|ICD10CM|Other subluxation of right knee|Other subluxation of right knee +C2864318|T037|HT|S83.191|ICD10CM|Other subluxation of right knee|Other subluxation of right knee +C2864319|T037|PT|S83.191A|ICD10CM|Other subluxation of right knee, initial encounter|Other subluxation of right knee, initial encounter +C2864319|T037|AB|S83.191A|ICD10CM|Other subluxation of right knee, initial encounter|Other subluxation of right knee, initial encounter +C2864320|T037|PT|S83.191D|ICD10CM|Other subluxation of right knee, subsequent encounter|Other subluxation of right knee, subsequent encounter +C2864320|T037|AB|S83.191D|ICD10CM|Other subluxation of right knee, subsequent encounter|Other subluxation of right knee, subsequent encounter +C2864321|T037|PT|S83.191S|ICD10CM|Other subluxation of right knee, sequela|Other subluxation of right knee, sequela +C2864321|T037|AB|S83.191S|ICD10CM|Other subluxation of right knee, sequela|Other subluxation of right knee, sequela +C2864322|T037|AB|S83.192|ICD10CM|Other subluxation of left knee|Other subluxation of left knee +C2864322|T037|HT|S83.192|ICD10CM|Other subluxation of left knee|Other subluxation of left knee +C2864323|T037|PT|S83.192A|ICD10CM|Other subluxation of left knee, initial encounter|Other subluxation of left knee, initial encounter +C2864323|T037|AB|S83.192A|ICD10CM|Other subluxation of left knee, initial encounter|Other subluxation of left knee, initial encounter +C2864324|T037|PT|S83.192D|ICD10CM|Other subluxation of left knee, subsequent encounter|Other subluxation of left knee, subsequent encounter +C2864324|T037|AB|S83.192D|ICD10CM|Other subluxation of left knee, subsequent encounter|Other subluxation of left knee, subsequent encounter +C2864325|T037|PT|S83.192S|ICD10CM|Other subluxation of left knee, sequela|Other subluxation of left knee, sequela +C2864325|T037|AB|S83.192S|ICD10CM|Other subluxation of left knee, sequela|Other subluxation of left knee, sequela +C2864326|T037|AB|S83.193|ICD10CM|Other subluxation of unspecified knee|Other subluxation of unspecified knee +C2864326|T037|HT|S83.193|ICD10CM|Other subluxation of unspecified knee|Other subluxation of unspecified knee +C2864327|T037|PT|S83.193A|ICD10CM|Other subluxation of unspecified knee, initial encounter|Other subluxation of unspecified knee, initial encounter +C2864327|T037|AB|S83.193A|ICD10CM|Other subluxation of unspecified knee, initial encounter|Other subluxation of unspecified knee, initial encounter +C2864328|T037|PT|S83.193D|ICD10CM|Other subluxation of unspecified knee, subsequent encounter|Other subluxation of unspecified knee, subsequent encounter +C2864328|T037|AB|S83.193D|ICD10CM|Other subluxation of unspecified knee, subsequent encounter|Other subluxation of unspecified knee, subsequent encounter +C2864329|T037|PT|S83.193S|ICD10CM|Other subluxation of unspecified knee, sequela|Other subluxation of unspecified knee, sequela +C2864329|T037|AB|S83.193S|ICD10CM|Other subluxation of unspecified knee, sequela|Other subluxation of unspecified knee, sequela +C2864330|T037|AB|S83.194|ICD10CM|Other dislocation of right knee|Other dislocation of right knee +C2864330|T037|HT|S83.194|ICD10CM|Other dislocation of right knee|Other dislocation of right knee +C2864331|T037|PT|S83.194A|ICD10CM|Other dislocation of right knee, initial encounter|Other dislocation of right knee, initial encounter +C2864331|T037|AB|S83.194A|ICD10CM|Other dislocation of right knee, initial encounter|Other dislocation of right knee, initial encounter +C2864332|T037|PT|S83.194D|ICD10CM|Other dislocation of right knee, subsequent encounter|Other dislocation of right knee, subsequent encounter +C2864332|T037|AB|S83.194D|ICD10CM|Other dislocation of right knee, subsequent encounter|Other dislocation of right knee, subsequent encounter +C2864333|T037|PT|S83.194S|ICD10CM|Other dislocation of right knee, sequela|Other dislocation of right knee, sequela +C2864333|T037|AB|S83.194S|ICD10CM|Other dislocation of right knee, sequela|Other dislocation of right knee, sequela +C2864334|T037|AB|S83.195|ICD10CM|Other dislocation of left knee|Other dislocation of left knee +C2864334|T037|HT|S83.195|ICD10CM|Other dislocation of left knee|Other dislocation of left knee +C2864335|T037|PT|S83.195A|ICD10CM|Other dislocation of left knee, initial encounter|Other dislocation of left knee, initial encounter +C2864335|T037|AB|S83.195A|ICD10CM|Other dislocation of left knee, initial encounter|Other dislocation of left knee, initial encounter +C2864336|T037|PT|S83.195D|ICD10CM|Other dislocation of left knee, subsequent encounter|Other dislocation of left knee, subsequent encounter +C2864336|T037|AB|S83.195D|ICD10CM|Other dislocation of left knee, subsequent encounter|Other dislocation of left knee, subsequent encounter +C2864337|T037|PT|S83.195S|ICD10CM|Other dislocation of left knee, sequela|Other dislocation of left knee, sequela +C2864337|T037|AB|S83.195S|ICD10CM|Other dislocation of left knee, sequela|Other dislocation of left knee, sequela +C2864338|T037|AB|S83.196|ICD10CM|Other dislocation of unspecified knee|Other dislocation of unspecified knee +C2864338|T037|HT|S83.196|ICD10CM|Other dislocation of unspecified knee|Other dislocation of unspecified knee +C2864339|T037|PT|S83.196A|ICD10CM|Other dislocation of unspecified knee, initial encounter|Other dislocation of unspecified knee, initial encounter +C2864339|T037|AB|S83.196A|ICD10CM|Other dislocation of unspecified knee, initial encounter|Other dislocation of unspecified knee, initial encounter +C2864340|T037|PT|S83.196D|ICD10CM|Other dislocation of unspecified knee, subsequent encounter|Other dislocation of unspecified knee, subsequent encounter +C2864340|T037|AB|S83.196D|ICD10CM|Other dislocation of unspecified knee, subsequent encounter|Other dislocation of unspecified knee, subsequent encounter +C2864341|T037|PT|S83.196S|ICD10CM|Other dislocation of unspecified knee, sequela|Other dislocation of unspecified knee, sequela +C2864341|T037|AB|S83.196S|ICD10CM|Other dislocation of unspecified knee, sequela|Other dislocation of unspecified knee, sequela +C0272839|T037|PT|S83.2|ICD10|Tear of meniscus, current|Tear of meniscus, current +C2864342|T037|AB|S83.2|ICD10CM|Tear of meniscus, current injury|Tear of meniscus, current injury +C2864342|T037|HT|S83.2|ICD10CM|Tear of meniscus, current injury|Tear of meniscus, current injury +C0238218|T037|ET|S83.20|ICD10CM|Tear of meniscus of knee NOS|Tear of meniscus of knee NOS +C2864343|T037|AB|S83.20|ICD10CM|Tear of unspecified meniscus, current injury|Tear of unspecified meniscus, current injury +C2864343|T037|HT|S83.20|ICD10CM|Tear of unspecified meniscus, current injury|Tear of unspecified meniscus, current injury +C2864344|T037|HT|S83.200|ICD10CM|Bucket-handle tear of unspecified meniscus, current injury, right knee|Bucket-handle tear of unspecified meniscus, current injury, right knee +C2864344|T037|AB|S83.200|ICD10CM|Bucket-hndl tear of unsp meniscus, current injury, r knee|Bucket-hndl tear of unsp meniscus, current injury, r knee +C2864345|T037|PT|S83.200A|ICD10CM|Bucket-handle tear of unspecified meniscus, current injury, right knee, initial encounter|Bucket-handle tear of unspecified meniscus, current injury, right knee, initial encounter +C2864345|T037|AB|S83.200A|ICD10CM|Bucket-hndl tear of unsp mensc, current injury, r knee, init|Bucket-hndl tear of unsp mensc, current injury, r knee, init +C2864346|T037|PT|S83.200D|ICD10CM|Bucket-handle tear of unspecified meniscus, current injury, right knee, subsequent encounter|Bucket-handle tear of unspecified meniscus, current injury, right knee, subsequent encounter +C2864346|T037|AB|S83.200D|ICD10CM|Bucket-hndl tear of unsp mensc, current injury, r knee, subs|Bucket-hndl tear of unsp mensc, current injury, r knee, subs +C2864347|T037|PT|S83.200S|ICD10CM|Bucket-handle tear of unspecified meniscus, current injury, right knee, sequela|Bucket-handle tear of unspecified meniscus, current injury, right knee, sequela +C2864347|T037|AB|S83.200S|ICD10CM|Bucket-hndl tear of unsp mensc, crnt injury, r knee, sequela|Bucket-hndl tear of unsp mensc, crnt injury, r knee, sequela +C2864348|T037|HT|S83.201|ICD10CM|Bucket-handle tear of unspecified meniscus, current injury, left knee|Bucket-handle tear of unspecified meniscus, current injury, left knee +C2864348|T037|AB|S83.201|ICD10CM|Bucket-hndl tear of unsp meniscus, current injury, left knee|Bucket-hndl tear of unsp meniscus, current injury, left knee +C2864349|T037|PT|S83.201A|ICD10CM|Bucket-handle tear of unspecified meniscus, current injury, left knee, initial encounter|Bucket-handle tear of unspecified meniscus, current injury, left knee, initial encounter +C2864349|T037|AB|S83.201A|ICD10CM|Bucket-hndl tear of unsp mensc, current injury, l knee, init|Bucket-hndl tear of unsp mensc, current injury, l knee, init +C2864350|T037|PT|S83.201D|ICD10CM|Bucket-handle tear of unspecified meniscus, current injury, left knee, subsequent encounter|Bucket-handle tear of unspecified meniscus, current injury, left knee, subsequent encounter +C2864350|T037|AB|S83.201D|ICD10CM|Bucket-hndl tear of unsp mensc, current injury, l knee, subs|Bucket-hndl tear of unsp mensc, current injury, l knee, subs +C2864351|T037|PT|S83.201S|ICD10CM|Bucket-handle tear of unspecified meniscus, current injury, left knee, sequela|Bucket-handle tear of unspecified meniscus, current injury, left knee, sequela +C2864351|T037|AB|S83.201S|ICD10CM|Bucket-hndl tear of unsp mensc, crnt injury, l knee, sequela|Bucket-hndl tear of unsp mensc, crnt injury, l knee, sequela +C2864352|T037|HT|S83.202|ICD10CM|Bucket-handle tear of unspecified meniscus, current injury, unspecified knee|Bucket-handle tear of unspecified meniscus, current injury, unspecified knee +C2864352|T037|AB|S83.202|ICD10CM|Bucket-hndl tear of unsp meniscus, current injury, unsp knee|Bucket-hndl tear of unsp meniscus, current injury, unsp knee +C2864353|T037|PT|S83.202A|ICD10CM|Bucket-handle tear of unspecified meniscus, current injury, unspecified knee, initial encounter|Bucket-handle tear of unspecified meniscus, current injury, unspecified knee, initial encounter +C2864353|T037|AB|S83.202A|ICD10CM|Bucket-hndl tear of unsp mensc, crnt injury, unsp knee, init|Bucket-hndl tear of unsp mensc, crnt injury, unsp knee, init +C2864354|T037|PT|S83.202D|ICD10CM|Bucket-handle tear of unspecified meniscus, current injury, unspecified knee, subsequent encounter|Bucket-handle tear of unspecified meniscus, current injury, unspecified knee, subsequent encounter +C2864354|T037|AB|S83.202D|ICD10CM|Bucket-hndl tear of unsp mensc, crnt injury, unsp knee, subs|Bucket-hndl tear of unsp mensc, crnt injury, unsp knee, subs +C2864355|T037|PT|S83.202S|ICD10CM|Bucket-handle tear of unspecified meniscus, current injury, unspecified knee, sequela|Bucket-handle tear of unspecified meniscus, current injury, unspecified knee, sequela +C2864355|T037|AB|S83.202S|ICD10CM|Bucket-hndl tear of unsp mensc, crnt injury, unsp knee, sqla|Bucket-hndl tear of unsp mensc, crnt injury, unsp knee, sqla +C2864356|T037|AB|S83.203|ICD10CM|Other tear of unsp meniscus, current injury, right knee|Other tear of unsp meniscus, current injury, right knee +C2864356|T037|HT|S83.203|ICD10CM|Other tear of unspecified meniscus, current injury, right knee|Other tear of unspecified meniscus, current injury, right knee +C2864357|T037|AB|S83.203A|ICD10CM|Oth tear of unsp meniscus, current injury, right knee, init|Oth tear of unsp meniscus, current injury, right knee, init +C2864357|T037|PT|S83.203A|ICD10CM|Other tear of unspecified meniscus, current injury, right knee, initial encounter|Other tear of unspecified meniscus, current injury, right knee, initial encounter +C2864358|T037|AB|S83.203D|ICD10CM|Oth tear of unsp meniscus, current injury, right knee, subs|Oth tear of unsp meniscus, current injury, right knee, subs +C2864358|T037|PT|S83.203D|ICD10CM|Other tear of unspecified meniscus, current injury, right knee, subsequent encounter|Other tear of unspecified meniscus, current injury, right knee, subsequent encounter +C2864359|T037|AB|S83.203S|ICD10CM|Oth tear of unsp meniscus, current injury, r knee, sequela|Oth tear of unsp meniscus, current injury, r knee, sequela +C2864359|T037|PT|S83.203S|ICD10CM|Other tear of unspecified meniscus, current injury, right knee, sequela|Other tear of unspecified meniscus, current injury, right knee, sequela +C2864360|T037|AB|S83.204|ICD10CM|Other tear of unsp meniscus, current injury, left knee|Other tear of unsp meniscus, current injury, left knee +C2864360|T037|HT|S83.204|ICD10CM|Other tear of unspecified meniscus, current injury, left knee|Other tear of unspecified meniscus, current injury, left knee +C2864361|T037|AB|S83.204A|ICD10CM|Oth tear of unsp meniscus, current injury, left knee, init|Oth tear of unsp meniscus, current injury, left knee, init +C2864361|T037|PT|S83.204A|ICD10CM|Other tear of unspecified meniscus, current injury, left knee, initial encounter|Other tear of unspecified meniscus, current injury, left knee, initial encounter +C2864362|T037|AB|S83.204D|ICD10CM|Oth tear of unsp meniscus, current injury, left knee, subs|Oth tear of unsp meniscus, current injury, left knee, subs +C2864362|T037|PT|S83.204D|ICD10CM|Other tear of unspecified meniscus, current injury, left knee, subsequent encounter|Other tear of unspecified meniscus, current injury, left knee, subsequent encounter +C2864363|T037|AB|S83.204S|ICD10CM|Oth tear of unsp meniscus, current injury, l knee, sequela|Oth tear of unsp meniscus, current injury, l knee, sequela +C2864363|T037|PT|S83.204S|ICD10CM|Other tear of unspecified meniscus, current injury, left knee, sequela|Other tear of unspecified meniscus, current injury, left knee, sequela +C2864364|T037|AB|S83.205|ICD10CM|Other tear of unsp meniscus, current injury, unsp knee|Other tear of unsp meniscus, current injury, unsp knee +C2864364|T037|HT|S83.205|ICD10CM|Other tear of unspecified meniscus, current injury, unspecified knee|Other tear of unspecified meniscus, current injury, unspecified knee +C2864365|T037|AB|S83.205A|ICD10CM|Oth tear of unsp meniscus, current injury, unsp knee, init|Oth tear of unsp meniscus, current injury, unsp knee, init +C2864365|T037|PT|S83.205A|ICD10CM|Other tear of unspecified meniscus, current injury, unspecified knee, initial encounter|Other tear of unspecified meniscus, current injury, unspecified knee, initial encounter +C2864366|T037|AB|S83.205D|ICD10CM|Oth tear of unsp meniscus, current injury, unsp knee, subs|Oth tear of unsp meniscus, current injury, unsp knee, subs +C2864366|T037|PT|S83.205D|ICD10CM|Other tear of unspecified meniscus, current injury, unspecified knee, subsequent encounter|Other tear of unspecified meniscus, current injury, unspecified knee, subsequent encounter +C2864367|T037|AB|S83.205S|ICD10CM|Oth tear of unsp mensc, current injury, unsp knee, sequela|Oth tear of unsp mensc, current injury, unsp knee, sequela +C2864367|T037|PT|S83.205S|ICD10CM|Other tear of unspecified meniscus, current injury, unspecified knee, sequela|Other tear of unspecified meniscus, current injury, unspecified knee, sequela +C2864368|T037|AB|S83.206|ICD10CM|Unsp tear of unsp meniscus, current injury, right knee|Unsp tear of unsp meniscus, current injury, right knee +C2864368|T037|HT|S83.206|ICD10CM|Unspecified tear of unspecified meniscus, current injury, right knee|Unspecified tear of unspecified meniscus, current injury, right knee +C2864369|T037|AB|S83.206A|ICD10CM|Unsp tear of unsp meniscus, current injury, right knee, init|Unsp tear of unsp meniscus, current injury, right knee, init +C2864369|T037|PT|S83.206A|ICD10CM|Unspecified tear of unspecified meniscus, current injury, right knee, initial encounter|Unspecified tear of unspecified meniscus, current injury, right knee, initial encounter +C2864370|T037|AB|S83.206D|ICD10CM|Unsp tear of unsp meniscus, current injury, right knee, subs|Unsp tear of unsp meniscus, current injury, right knee, subs +C2864370|T037|PT|S83.206D|ICD10CM|Unspecified tear of unspecified meniscus, current injury, right knee, subsequent encounter|Unspecified tear of unspecified meniscus, current injury, right knee, subsequent encounter +C2864371|T037|AB|S83.206S|ICD10CM|Unsp tear of unsp meniscus, current injury, r knee, sequela|Unsp tear of unsp meniscus, current injury, r knee, sequela +C2864371|T037|PT|S83.206S|ICD10CM|Unspecified tear of unspecified meniscus, current injury, right knee, sequela|Unspecified tear of unspecified meniscus, current injury, right knee, sequela +C2864372|T037|AB|S83.207|ICD10CM|Unsp tear of unspecified meniscus, current injury, left knee|Unsp tear of unspecified meniscus, current injury, left knee +C2864372|T037|HT|S83.207|ICD10CM|Unspecified tear of unspecified meniscus, current injury, left knee|Unspecified tear of unspecified meniscus, current injury, left knee +C2864373|T037|AB|S83.207A|ICD10CM|Unsp tear of unsp meniscus, current injury, left knee, init|Unsp tear of unsp meniscus, current injury, left knee, init +C2864373|T037|PT|S83.207A|ICD10CM|Unspecified tear of unspecified meniscus, current injury, left knee, initial encounter|Unspecified tear of unspecified meniscus, current injury, left knee, initial encounter +C2864374|T037|AB|S83.207D|ICD10CM|Unsp tear of unsp meniscus, current injury, left knee, subs|Unsp tear of unsp meniscus, current injury, left knee, subs +C2864374|T037|PT|S83.207D|ICD10CM|Unspecified tear of unspecified meniscus, current injury, left knee, subsequent encounter|Unspecified tear of unspecified meniscus, current injury, left knee, subsequent encounter +C2864375|T037|AB|S83.207S|ICD10CM|Unsp tear of unsp meniscus, current injury, l knee, sequela|Unsp tear of unsp meniscus, current injury, l knee, sequela +C2864375|T037|PT|S83.207S|ICD10CM|Unspecified tear of unspecified meniscus, current injury, left knee, sequela|Unspecified tear of unspecified meniscus, current injury, left knee, sequela +C2864376|T037|AB|S83.209|ICD10CM|Unsp tear of unsp meniscus, current injury, unspecified knee|Unsp tear of unsp meniscus, current injury, unspecified knee +C2864376|T037|HT|S83.209|ICD10CM|Unspecified tear of unspecified meniscus, current injury, unspecified knee|Unspecified tear of unspecified meniscus, current injury, unspecified knee +C2864377|T037|AB|S83.209A|ICD10CM|Unsp tear of unsp meniscus, current injury, unsp knee, init|Unsp tear of unsp meniscus, current injury, unsp knee, init +C2864377|T037|PT|S83.209A|ICD10CM|Unspecified tear of unspecified meniscus, current injury, unspecified knee, initial encounter|Unspecified tear of unspecified meniscus, current injury, unspecified knee, initial encounter +C2864378|T037|AB|S83.209D|ICD10CM|Unsp tear of unsp meniscus, current injury, unsp knee, subs|Unsp tear of unsp meniscus, current injury, unsp knee, subs +C2864378|T037|PT|S83.209D|ICD10CM|Unspecified tear of unspecified meniscus, current injury, unspecified knee, subsequent encounter|Unspecified tear of unspecified meniscus, current injury, unspecified knee, subsequent encounter +C2864379|T037|AB|S83.209S|ICD10CM|Unsp tear of unsp mensc, current injury, unsp knee, sequela|Unsp tear of unsp mensc, current injury, unsp knee, sequela +C2864379|T037|PT|S83.209S|ICD10CM|Unspecified tear of unspecified meniscus, current injury, unspecified knee, sequela|Unspecified tear of unspecified meniscus, current injury, unspecified knee, sequela +C0434983|T037|AB|S83.21|ICD10CM|Bucket-handle tear of medial meniscus, current injury|Bucket-handle tear of medial meniscus, current injury +C0434983|T037|HT|S83.21|ICD10CM|Bucket-handle tear of medial meniscus, current injury|Bucket-handle tear of medial meniscus, current injury +C2864380|T037|HT|S83.211|ICD10CM|Bucket-handle tear of medial meniscus, current injury, right knee|Bucket-handle tear of medial meniscus, current injury, right knee +C2864380|T037|AB|S83.211|ICD10CM|Bucket-hndl tear of medial meniscus, current injury, r knee|Bucket-hndl tear of medial meniscus, current injury, r knee +C2864381|T037|PT|S83.211A|ICD10CM|Bucket-handle tear of medial meniscus, current injury, right knee, initial encounter|Bucket-handle tear of medial meniscus, current injury, right knee, initial encounter +C2864381|T037|AB|S83.211A|ICD10CM|Bucket-hndl tear of medial mensc, crnt injury, r knee, init|Bucket-hndl tear of medial mensc, crnt injury, r knee, init +C2864382|T037|PT|S83.211D|ICD10CM|Bucket-handle tear of medial meniscus, current injury, right knee, subsequent encounter|Bucket-handle tear of medial meniscus, current injury, right knee, subsequent encounter +C2864382|T037|AB|S83.211D|ICD10CM|Bucket-hndl tear of medial mensc, crnt injury, r knee, subs|Bucket-hndl tear of medial mensc, crnt injury, r knee, subs +C2864383|T037|PT|S83.211S|ICD10CM|Bucket-handle tear of medial meniscus, current injury, right knee, sequela|Bucket-handle tear of medial meniscus, current injury, right knee, sequela +C2864383|T037|AB|S83.211S|ICD10CM|Bucket-hndl tear of medial mensc, crnt injury, r knee, sqla|Bucket-hndl tear of medial mensc, crnt injury, r knee, sqla +C2864384|T037|HT|S83.212|ICD10CM|Bucket-handle tear of medial meniscus, current injury, left knee|Bucket-handle tear of medial meniscus, current injury, left knee +C2864384|T037|AB|S83.212|ICD10CM|Bucket-hndl tear of medial meniscus, current injury, l knee|Bucket-hndl tear of medial meniscus, current injury, l knee +C2864385|T037|PT|S83.212A|ICD10CM|Bucket-handle tear of medial meniscus, current injury, left knee, initial encounter|Bucket-handle tear of medial meniscus, current injury, left knee, initial encounter +C2864385|T037|AB|S83.212A|ICD10CM|Bucket-hndl tear of medial mensc, crnt injury, l knee, init|Bucket-hndl tear of medial mensc, crnt injury, l knee, init +C2864386|T037|PT|S83.212D|ICD10CM|Bucket-handle tear of medial meniscus, current injury, left knee, subsequent encounter|Bucket-handle tear of medial meniscus, current injury, left knee, subsequent encounter +C2864386|T037|AB|S83.212D|ICD10CM|Bucket-hndl tear of medial mensc, crnt injury, l knee, subs|Bucket-hndl tear of medial mensc, crnt injury, l knee, subs +C2864387|T037|PT|S83.212S|ICD10CM|Bucket-handle tear of medial meniscus, current injury, left knee, sequela|Bucket-handle tear of medial meniscus, current injury, left knee, sequela +C2864387|T037|AB|S83.212S|ICD10CM|Bucket-hndl tear of medial mensc, crnt injury, l knee, sqla|Bucket-hndl tear of medial mensc, crnt injury, l knee, sqla +C2864388|T037|HT|S83.219|ICD10CM|Bucket-handle tear of medial meniscus, current injury, unspecified knee|Bucket-handle tear of medial meniscus, current injury, unspecified knee +C2864388|T037|AB|S83.219|ICD10CM|Bucket-hndl tear of medial mensc, current injury, unsp knee|Bucket-hndl tear of medial mensc, current injury, unsp knee +C2864389|T037|PT|S83.219A|ICD10CM|Bucket-handle tear of medial meniscus, current injury, unspecified knee, initial encounter|Bucket-handle tear of medial meniscus, current injury, unspecified knee, initial encounter +C2864389|T037|AB|S83.219A|ICD10CM|Bucket-hndl tear of medial mensc, crnt inj, unsp knee, init|Bucket-hndl tear of medial mensc, crnt inj, unsp knee, init +C2864390|T037|PT|S83.219D|ICD10CM|Bucket-handle tear of medial meniscus, current injury, unspecified knee, subsequent encounter|Bucket-handle tear of medial meniscus, current injury, unspecified knee, subsequent encounter +C2864390|T037|AB|S83.219D|ICD10CM|Bucket-hndl tear of medial mensc, crnt inj, unsp knee, subs|Bucket-hndl tear of medial mensc, crnt inj, unsp knee, subs +C2864391|T037|PT|S83.219S|ICD10CM|Bucket-handle tear of medial meniscus, current injury, unspecified knee, sequela|Bucket-handle tear of medial meniscus, current injury, unspecified knee, sequela +C2864391|T037|AB|S83.219S|ICD10CM|Bucket-hndl tear of medial mensc, crnt inj, unsp knee, sqla|Bucket-hndl tear of medial mensc, crnt inj, unsp knee, sqla +C2864392|T037|AB|S83.22|ICD10CM|Peripheral tear of medial meniscus, current injury|Peripheral tear of medial meniscus, current injury +C2864392|T037|HT|S83.22|ICD10CM|Peripheral tear of medial meniscus, current injury|Peripheral tear of medial meniscus, current injury +C2864393|T037|HT|S83.221|ICD10CM|Peripheral tear of medial meniscus, current injury, right knee|Peripheral tear of medial meniscus, current injury, right knee +C2864393|T037|AB|S83.221|ICD10CM|Prph tear of medial meniscus, current injury, right knee|Prph tear of medial meniscus, current injury, right knee +C2864394|T037|PT|S83.221A|ICD10CM|Peripheral tear of medial meniscus, current injury, right knee, initial encounter|Peripheral tear of medial meniscus, current injury, right knee, initial encounter +C2864394|T037|AB|S83.221A|ICD10CM|Prph tear of medial meniscus, current injury, r knee, init|Prph tear of medial meniscus, current injury, r knee, init +C2864395|T037|PT|S83.221D|ICD10CM|Peripheral tear of medial meniscus, current injury, right knee, subsequent encounter|Peripheral tear of medial meniscus, current injury, right knee, subsequent encounter +C2864395|T037|AB|S83.221D|ICD10CM|Prph tear of medial meniscus, current injury, r knee, subs|Prph tear of medial meniscus, current injury, r knee, subs +C2864396|T037|PT|S83.221S|ICD10CM|Peripheral tear of medial meniscus, current injury, right knee, sequela|Peripheral tear of medial meniscus, current injury, right knee, sequela +C2864396|T037|AB|S83.221S|ICD10CM|Prph tear of medial mensc, current injury, r knee, sequela|Prph tear of medial mensc, current injury, r knee, sequela +C2864397|T037|HT|S83.222|ICD10CM|Peripheral tear of medial meniscus, current injury, left knee|Peripheral tear of medial meniscus, current injury, left knee +C2864397|T037|AB|S83.222|ICD10CM|Prph tear of medial meniscus, current injury, left knee|Prph tear of medial meniscus, current injury, left knee +C2864398|T037|PT|S83.222A|ICD10CM|Peripheral tear of medial meniscus, current injury, left knee, initial encounter|Peripheral tear of medial meniscus, current injury, left knee, initial encounter +C2864398|T037|AB|S83.222A|ICD10CM|Prph tear of medial meniscus, current injury, l knee, init|Prph tear of medial meniscus, current injury, l knee, init +C2864399|T037|PT|S83.222D|ICD10CM|Peripheral tear of medial meniscus, current injury, left knee, subsequent encounter|Peripheral tear of medial meniscus, current injury, left knee, subsequent encounter +C2864399|T037|AB|S83.222D|ICD10CM|Prph tear of medial meniscus, current injury, l knee, subs|Prph tear of medial meniscus, current injury, l knee, subs +C2864400|T037|PT|S83.222S|ICD10CM|Peripheral tear of medial meniscus, current injury, left knee, sequela|Peripheral tear of medial meniscus, current injury, left knee, sequela +C2864400|T037|AB|S83.222S|ICD10CM|Prph tear of medial mensc, current injury, l knee, sequela|Prph tear of medial mensc, current injury, l knee, sequela +C2864401|T037|HT|S83.229|ICD10CM|Peripheral tear of medial meniscus, current injury, unspecified knee|Peripheral tear of medial meniscus, current injury, unspecified knee +C2864401|T037|AB|S83.229|ICD10CM|Prph tear of medial meniscus, current injury, unsp knee|Prph tear of medial meniscus, current injury, unsp knee +C2864402|T037|PT|S83.229A|ICD10CM|Peripheral tear of medial meniscus, current injury, unspecified knee, initial encounter|Peripheral tear of medial meniscus, current injury, unspecified knee, initial encounter +C2864402|T037|AB|S83.229A|ICD10CM|Prph tear of medial mensc, current injury, unsp knee, init|Prph tear of medial mensc, current injury, unsp knee, init +C2864403|T037|PT|S83.229D|ICD10CM|Peripheral tear of medial meniscus, current injury, unspecified knee, subsequent encounter|Peripheral tear of medial meniscus, current injury, unspecified knee, subsequent encounter +C2864403|T037|AB|S83.229D|ICD10CM|Prph tear of medial mensc, current injury, unsp knee, subs|Prph tear of medial mensc, current injury, unsp knee, subs +C2864404|T037|PT|S83.229S|ICD10CM|Peripheral tear of medial meniscus, current injury, unspecified knee, sequela|Peripheral tear of medial meniscus, current injury, unspecified knee, sequela +C2864404|T037|AB|S83.229S|ICD10CM|Prph tear of medial mensc, crnt injury, unsp knee, sequela|Prph tear of medial mensc, crnt injury, unsp knee, sequela +C2864405|T037|AB|S83.23|ICD10CM|Complex tear of medial meniscus, current injury|Complex tear of medial meniscus, current injury +C2864405|T037|HT|S83.23|ICD10CM|Complex tear of medial meniscus, current injury|Complex tear of medial meniscus, current injury +C2864406|T037|AB|S83.231|ICD10CM|Complex tear of medial meniscus, current injury, right knee|Complex tear of medial meniscus, current injury, right knee +C2864406|T037|HT|S83.231|ICD10CM|Complex tear of medial meniscus, current injury, right knee|Complex tear of medial meniscus, current injury, right knee +C2864407|T037|PT|S83.231A|ICD10CM|Complex tear of medial meniscus, current injury, right knee, initial encounter|Complex tear of medial meniscus, current injury, right knee, initial encounter +C2864407|T037|AB|S83.231A|ICD10CM|Complex tear of medial mensc, current injury, r knee, init|Complex tear of medial mensc, current injury, r knee, init +C2864408|T037|PT|S83.231D|ICD10CM|Complex tear of medial meniscus, current injury, right knee, subsequent encounter|Complex tear of medial meniscus, current injury, right knee, subsequent encounter +C2864408|T037|AB|S83.231D|ICD10CM|Complex tear of medial mensc, current injury, r knee, subs|Complex tear of medial mensc, current injury, r knee, subs +C2864409|T037|AB|S83.231S|ICD10CM|Cmplx tear of medial mensc, current injury, r knee, sequela|Cmplx tear of medial mensc, current injury, r knee, sequela +C2864409|T037|PT|S83.231S|ICD10CM|Complex tear of medial meniscus, current injury, right knee, sequela|Complex tear of medial meniscus, current injury, right knee, sequela +C2864410|T037|AB|S83.232|ICD10CM|Complex tear of medial meniscus, current injury, left knee|Complex tear of medial meniscus, current injury, left knee +C2864410|T037|HT|S83.232|ICD10CM|Complex tear of medial meniscus, current injury, left knee|Complex tear of medial meniscus, current injury, left knee +C2864411|T037|PT|S83.232A|ICD10CM|Complex tear of medial meniscus, current injury, left knee, initial encounter|Complex tear of medial meniscus, current injury, left knee, initial encounter +C2864411|T037|AB|S83.232A|ICD10CM|Complex tear of medial mensc, current injury, l knee, init|Complex tear of medial mensc, current injury, l knee, init +C2864412|T037|PT|S83.232D|ICD10CM|Complex tear of medial meniscus, current injury, left knee, subsequent encounter|Complex tear of medial meniscus, current injury, left knee, subsequent encounter +C2864412|T037|AB|S83.232D|ICD10CM|Complex tear of medial mensc, current injury, l knee, subs|Complex tear of medial mensc, current injury, l knee, subs +C2864413|T037|AB|S83.232S|ICD10CM|Cmplx tear of medial mensc, current injury, l knee, sequela|Cmplx tear of medial mensc, current injury, l knee, sequela +C2864413|T037|PT|S83.232S|ICD10CM|Complex tear of medial meniscus, current injury, left knee, sequela|Complex tear of medial meniscus, current injury, left knee, sequela +C2864414|T037|AB|S83.239|ICD10CM|Complex tear of medial meniscus, current injury, unsp knee|Complex tear of medial meniscus, current injury, unsp knee +C2864414|T037|HT|S83.239|ICD10CM|Complex tear of medial meniscus, current injury, unspecified knee|Complex tear of medial meniscus, current injury, unspecified knee +C2864415|T037|AB|S83.239A|ICD10CM|Cmplx tear of medial mensc, current injury, unsp knee, init|Cmplx tear of medial mensc, current injury, unsp knee, init +C2864415|T037|PT|S83.239A|ICD10CM|Complex tear of medial meniscus, current injury, unspecified knee, initial encounter|Complex tear of medial meniscus, current injury, unspecified knee, initial encounter +C2864416|T037|AB|S83.239D|ICD10CM|Cmplx tear of medial mensc, current injury, unsp knee, subs|Cmplx tear of medial mensc, current injury, unsp knee, subs +C2864416|T037|PT|S83.239D|ICD10CM|Complex tear of medial meniscus, current injury, unspecified knee, subsequent encounter|Complex tear of medial meniscus, current injury, unspecified knee, subsequent encounter +C2864417|T037|AB|S83.239S|ICD10CM|Cmplx tear of medial mensc, crnt injury, unsp knee, sequela|Cmplx tear of medial mensc, crnt injury, unsp knee, sequela +C2864417|T037|PT|S83.239S|ICD10CM|Complex tear of medial meniscus, current injury, unspecified knee, sequela|Complex tear of medial meniscus, current injury, unspecified knee, sequela +C2864418|T037|AB|S83.24|ICD10CM|Other tear of medial meniscus, current injury|Other tear of medial meniscus, current injury +C2864418|T037|HT|S83.24|ICD10CM|Other tear of medial meniscus, current injury|Other tear of medial meniscus, current injury +C2864419|T037|AB|S83.241|ICD10CM|Other tear of medial meniscus, current injury, right knee|Other tear of medial meniscus, current injury, right knee +C2864419|T037|HT|S83.241|ICD10CM|Other tear of medial meniscus, current injury, right knee|Other tear of medial meniscus, current injury, right knee +C2864420|T037|AB|S83.241A|ICD10CM|Oth tear of medial meniscus, current injury, r knee, init|Oth tear of medial meniscus, current injury, r knee, init +C2864420|T037|PT|S83.241A|ICD10CM|Other tear of medial meniscus, current injury, right knee, initial encounter|Other tear of medial meniscus, current injury, right knee, initial encounter +C2864421|T037|AB|S83.241D|ICD10CM|Oth tear of medial meniscus, current injury, r knee, subs|Oth tear of medial meniscus, current injury, r knee, subs +C2864421|T037|PT|S83.241D|ICD10CM|Other tear of medial meniscus, current injury, right knee, subsequent encounter|Other tear of medial meniscus, current injury, right knee, subsequent encounter +C2864422|T037|AB|S83.241S|ICD10CM|Oth tear of medial meniscus, current injury, r knee, sequela|Oth tear of medial meniscus, current injury, r knee, sequela +C2864422|T037|PT|S83.241S|ICD10CM|Other tear of medial meniscus, current injury, right knee, sequela|Other tear of medial meniscus, current injury, right knee, sequela +C2864423|T037|AB|S83.242|ICD10CM|Other tear of medial meniscus, current injury, left knee|Other tear of medial meniscus, current injury, left knee +C2864423|T037|HT|S83.242|ICD10CM|Other tear of medial meniscus, current injury, left knee|Other tear of medial meniscus, current injury, left knee +C2864424|T037|AB|S83.242A|ICD10CM|Oth tear of medial meniscus, current injury, left knee, init|Oth tear of medial meniscus, current injury, left knee, init +C2864424|T037|PT|S83.242A|ICD10CM|Other tear of medial meniscus, current injury, left knee, initial encounter|Other tear of medial meniscus, current injury, left knee, initial encounter +C2864425|T037|AB|S83.242D|ICD10CM|Oth tear of medial meniscus, current injury, left knee, subs|Oth tear of medial meniscus, current injury, left knee, subs +C2864425|T037|PT|S83.242D|ICD10CM|Other tear of medial meniscus, current injury, left knee, subsequent encounter|Other tear of medial meniscus, current injury, left knee, subsequent encounter +C2864426|T037|AB|S83.242S|ICD10CM|Oth tear of medial meniscus, current injury, l knee, sequela|Oth tear of medial meniscus, current injury, l knee, sequela +C2864426|T037|PT|S83.242S|ICD10CM|Other tear of medial meniscus, current injury, left knee, sequela|Other tear of medial meniscus, current injury, left knee, sequela +C2864427|T037|AB|S83.249|ICD10CM|Other tear of medial meniscus, current injury, unsp knee|Other tear of medial meniscus, current injury, unsp knee +C2864427|T037|HT|S83.249|ICD10CM|Other tear of medial meniscus, current injury, unspecified knee|Other tear of medial meniscus, current injury, unspecified knee +C2864428|T037|AB|S83.249A|ICD10CM|Oth tear of medial meniscus, current injury, unsp knee, init|Oth tear of medial meniscus, current injury, unsp knee, init +C2864428|T037|PT|S83.249A|ICD10CM|Other tear of medial meniscus, current injury, unspecified knee, initial encounter|Other tear of medial meniscus, current injury, unspecified knee, initial encounter +C2864429|T037|AB|S83.249D|ICD10CM|Oth tear of medial meniscus, current injury, unsp knee, subs|Oth tear of medial meniscus, current injury, unsp knee, subs +C2864429|T037|PT|S83.249D|ICD10CM|Other tear of medial meniscus, current injury, unspecified knee, subsequent encounter|Other tear of medial meniscus, current injury, unspecified knee, subsequent encounter +C2864430|T037|AB|S83.249S|ICD10CM|Oth tear of medial mensc, current injury, unsp knee, sequela|Oth tear of medial mensc, current injury, unsp knee, sequela +C2864430|T037|PT|S83.249S|ICD10CM|Other tear of medial meniscus, current injury, unspecified knee, sequela|Other tear of medial meniscus, current injury, unspecified knee, sequela +C2864431|T037|AB|S83.25|ICD10CM|Bucket-handle tear of lateral meniscus, current injury|Bucket-handle tear of lateral meniscus, current injury +C2864431|T037|HT|S83.25|ICD10CM|Bucket-handle tear of lateral meniscus, current injury|Bucket-handle tear of lateral meniscus, current injury +C2864432|T037|AB|S83.251|ICD10CM|Bucket-handle tear of lat mensc, current injury, right knee|Bucket-handle tear of lat mensc, current injury, right knee +C2864432|T037|HT|S83.251|ICD10CM|Bucket-handle tear of lateral meniscus, current injury, right knee|Bucket-handle tear of lateral meniscus, current injury, right knee +C2864433|T037|PT|S83.251A|ICD10CM|Bucket-handle tear of lateral meniscus, current injury, right knee, initial encounter|Bucket-handle tear of lateral meniscus, current injury, right knee, initial encounter +C2864433|T037|AB|S83.251A|ICD10CM|Bucket-hndl tear of lat mensc, current injury, r knee, init|Bucket-hndl tear of lat mensc, current injury, r knee, init +C2864434|T037|PT|S83.251D|ICD10CM|Bucket-handle tear of lateral meniscus, current injury, right knee, subsequent encounter|Bucket-handle tear of lateral meniscus, current injury, right knee, subsequent encounter +C2864434|T037|AB|S83.251D|ICD10CM|Bucket-hndl tear of lat mensc, current injury, r knee, subs|Bucket-hndl tear of lat mensc, current injury, r knee, subs +C2864435|T037|PT|S83.251S|ICD10CM|Bucket-handle tear of lateral meniscus, current injury, right knee, sequela|Bucket-handle tear of lateral meniscus, current injury, right knee, sequela +C2864435|T037|AB|S83.251S|ICD10CM|Bucket-hndl tear of lat mensc, crnt injury, r knee, sequela|Bucket-hndl tear of lat mensc, crnt injury, r knee, sequela +C2864436|T037|AB|S83.252|ICD10CM|Bucket-handle tear of lat mensc, current injury, left knee|Bucket-handle tear of lat mensc, current injury, left knee +C2864436|T037|HT|S83.252|ICD10CM|Bucket-handle tear of lateral meniscus, current injury, left knee|Bucket-handle tear of lateral meniscus, current injury, left knee +C2864437|T037|PT|S83.252A|ICD10CM|Bucket-handle tear of lateral meniscus, current injury, left knee, initial encounter|Bucket-handle tear of lateral meniscus, current injury, left knee, initial encounter +C2864437|T037|AB|S83.252A|ICD10CM|Bucket-hndl tear of lat mensc, current injury, l knee, init|Bucket-hndl tear of lat mensc, current injury, l knee, init +C2864438|T037|PT|S83.252D|ICD10CM|Bucket-handle tear of lateral meniscus, current injury, left knee, subsequent encounter|Bucket-handle tear of lateral meniscus, current injury, left knee, subsequent encounter +C2864438|T037|AB|S83.252D|ICD10CM|Bucket-hndl tear of lat mensc, current injury, l knee, subs|Bucket-hndl tear of lat mensc, current injury, l knee, subs +C2864439|T037|PT|S83.252S|ICD10CM|Bucket-handle tear of lateral meniscus, current injury, left knee, sequela|Bucket-handle tear of lateral meniscus, current injury, left knee, sequela +C2864439|T037|AB|S83.252S|ICD10CM|Bucket-hndl tear of lat mensc, crnt injury, l knee, sequela|Bucket-hndl tear of lat mensc, crnt injury, l knee, sequela +C2864440|T037|AB|S83.259|ICD10CM|Bucket-handle tear of lat mensc, current injury, unsp knee|Bucket-handle tear of lat mensc, current injury, unsp knee +C2864440|T037|HT|S83.259|ICD10CM|Bucket-handle tear of lateral meniscus, current injury, unspecified knee|Bucket-handle tear of lateral meniscus, current injury, unspecified knee +C2864441|T037|PT|S83.259A|ICD10CM|Bucket-handle tear of lateral meniscus, current injury, unspecified knee, initial encounter|Bucket-handle tear of lateral meniscus, current injury, unspecified knee, initial encounter +C2864441|T037|AB|S83.259A|ICD10CM|Bucket-hndl tear of lat mensc, crnt injury, unsp knee, init|Bucket-hndl tear of lat mensc, crnt injury, unsp knee, init +C2864442|T037|PT|S83.259D|ICD10CM|Bucket-handle tear of lateral meniscus, current injury, unspecified knee, subsequent encounter|Bucket-handle tear of lateral meniscus, current injury, unspecified knee, subsequent encounter +C2864442|T037|AB|S83.259D|ICD10CM|Bucket-hndl tear of lat mensc, crnt injury, unsp knee, subs|Bucket-hndl tear of lat mensc, crnt injury, unsp knee, subs +C2864443|T037|PT|S83.259S|ICD10CM|Bucket-handle tear of lateral meniscus, current injury, unspecified knee, sequela|Bucket-handle tear of lateral meniscus, current injury, unspecified knee, sequela +C2864443|T037|AB|S83.259S|ICD10CM|Bucket-hndl tear of lat mensc, crnt injury, unsp knee, sqla|Bucket-hndl tear of lat mensc, crnt injury, unsp knee, sqla +C2864444|T037|AB|S83.26|ICD10CM|Peripheral tear of lateral meniscus, current injury|Peripheral tear of lateral meniscus, current injury +C2864444|T037|HT|S83.26|ICD10CM|Peripheral tear of lateral meniscus, current injury|Peripheral tear of lateral meniscus, current injury +C2864445|T037|AB|S83.261|ICD10CM|Peripheral tear of lat mensc, current injury, right knee|Peripheral tear of lat mensc, current injury, right knee +C2864445|T037|HT|S83.261|ICD10CM|Peripheral tear of lateral meniscus, current injury, right knee|Peripheral tear of lateral meniscus, current injury, right knee +C2864446|T037|PT|S83.261A|ICD10CM|Peripheral tear of lateral meniscus, current injury, right knee, initial encounter|Peripheral tear of lateral meniscus, current injury, right knee, initial encounter +C2864446|T037|AB|S83.261A|ICD10CM|Prph tear of lat mensc, current injury, right knee, init|Prph tear of lat mensc, current injury, right knee, init +C2864447|T037|PT|S83.261D|ICD10CM|Peripheral tear of lateral meniscus, current injury, right knee, subsequent encounter|Peripheral tear of lateral meniscus, current injury, right knee, subsequent encounter +C2864447|T037|AB|S83.261D|ICD10CM|Prph tear of lat mensc, current injury, right knee, subs|Prph tear of lat mensc, current injury, right knee, subs +C2864448|T037|PT|S83.261S|ICD10CM|Peripheral tear of lateral meniscus, current injury, right knee, sequela|Peripheral tear of lateral meniscus, current injury, right knee, sequela +C2864448|T037|AB|S83.261S|ICD10CM|Prph tear of lat mensc, current injury, right knee, sequela|Prph tear of lat mensc, current injury, right knee, sequela +C2864449|T037|AB|S83.262|ICD10CM|Peripheral tear of lat mensc, current injury, left knee|Peripheral tear of lat mensc, current injury, left knee +C2864449|T037|HT|S83.262|ICD10CM|Peripheral tear of lateral meniscus, current injury, left knee|Peripheral tear of lateral meniscus, current injury, left knee +C2864450|T037|PT|S83.262A|ICD10CM|Peripheral tear of lateral meniscus, current injury, left knee, initial encounter|Peripheral tear of lateral meniscus, current injury, left knee, initial encounter +C2864450|T037|AB|S83.262A|ICD10CM|Prph tear of lat mensc, current injury, left knee, init|Prph tear of lat mensc, current injury, left knee, init +C2864451|T037|PT|S83.262D|ICD10CM|Peripheral tear of lateral meniscus, current injury, left knee, subsequent encounter|Peripheral tear of lateral meniscus, current injury, left knee, subsequent encounter +C2864451|T037|AB|S83.262D|ICD10CM|Prph tear of lat mensc, current injury, left knee, subs|Prph tear of lat mensc, current injury, left knee, subs +C2864452|T037|PT|S83.262S|ICD10CM|Peripheral tear of lateral meniscus, current injury, left knee, sequela|Peripheral tear of lateral meniscus, current injury, left knee, sequela +C2864452|T037|AB|S83.262S|ICD10CM|Prph tear of lat mensc, current injury, left knee, sequela|Prph tear of lat mensc, current injury, left knee, sequela +C2864453|T037|AB|S83.269|ICD10CM|Peripheral tear of lat mensc, current injury, unsp knee|Peripheral tear of lat mensc, current injury, unsp knee +C2864453|T037|HT|S83.269|ICD10CM|Peripheral tear of lateral meniscus, current injury, unspecified knee|Peripheral tear of lateral meniscus, current injury, unspecified knee +C2864454|T037|PT|S83.269A|ICD10CM|Peripheral tear of lateral meniscus, current injury, unspecified knee, initial encounter|Peripheral tear of lateral meniscus, current injury, unspecified knee, initial encounter +C2864454|T037|AB|S83.269A|ICD10CM|Prph tear of lat mensc, current injury, unsp knee, init|Prph tear of lat mensc, current injury, unsp knee, init +C2864455|T037|PT|S83.269D|ICD10CM|Peripheral tear of lateral meniscus, current injury, unspecified knee, subsequent encounter|Peripheral tear of lateral meniscus, current injury, unspecified knee, subsequent encounter +C2864455|T037|AB|S83.269D|ICD10CM|Prph tear of lat mensc, current injury, unsp knee, subs|Prph tear of lat mensc, current injury, unsp knee, subs +C2864456|T037|PT|S83.269S|ICD10CM|Peripheral tear of lateral meniscus, current injury, unspecified knee, sequela|Peripheral tear of lateral meniscus, current injury, unspecified knee, sequela +C2864456|T037|AB|S83.269S|ICD10CM|Prph tear of lat mensc, current injury, unsp knee, sequela|Prph tear of lat mensc, current injury, unsp knee, sequela +C2864457|T037|AB|S83.27|ICD10CM|Complex tear of lateral meniscus, current injury|Complex tear of lateral meniscus, current injury +C2864457|T037|HT|S83.27|ICD10CM|Complex tear of lateral meniscus, current injury|Complex tear of lateral meniscus, current injury +C2864458|T037|AB|S83.271|ICD10CM|Complex tear of lateral meniscus, current injury, right knee|Complex tear of lateral meniscus, current injury, right knee +C2864458|T037|HT|S83.271|ICD10CM|Complex tear of lateral meniscus, current injury, right knee|Complex tear of lateral meniscus, current injury, right knee +C2864459|T037|AB|S83.271A|ICD10CM|Complex tear of lat mensc, current injury, right knee, init|Complex tear of lat mensc, current injury, right knee, init +C2864459|T037|PT|S83.271A|ICD10CM|Complex tear of lateral meniscus, current injury, right knee, initial encounter|Complex tear of lateral meniscus, current injury, right knee, initial encounter +C2864460|T037|AB|S83.271D|ICD10CM|Complex tear of lat mensc, current injury, right knee, subs|Complex tear of lat mensc, current injury, right knee, subs +C2864460|T037|PT|S83.271D|ICD10CM|Complex tear of lateral meniscus, current injury, right knee, subsequent encounter|Complex tear of lateral meniscus, current injury, right knee, subsequent encounter +C2864461|T037|AB|S83.271S|ICD10CM|Complex tear of lat mensc, current injury, r knee, sequela|Complex tear of lat mensc, current injury, r knee, sequela +C2864461|T037|PT|S83.271S|ICD10CM|Complex tear of lateral meniscus, current injury, right knee, sequela|Complex tear of lateral meniscus, current injury, right knee, sequela +C2864462|T037|AB|S83.272|ICD10CM|Complex tear of lateral meniscus, current injury, left knee|Complex tear of lateral meniscus, current injury, left knee +C2864462|T037|HT|S83.272|ICD10CM|Complex tear of lateral meniscus, current injury, left knee|Complex tear of lateral meniscus, current injury, left knee +C2864463|T037|AB|S83.272A|ICD10CM|Complex tear of lat mensc, current injury, left knee, init|Complex tear of lat mensc, current injury, left knee, init +C2864463|T037|PT|S83.272A|ICD10CM|Complex tear of lateral meniscus, current injury, left knee, initial encounter|Complex tear of lateral meniscus, current injury, left knee, initial encounter +C2864464|T037|AB|S83.272D|ICD10CM|Complex tear of lat mensc, current injury, left knee, subs|Complex tear of lat mensc, current injury, left knee, subs +C2864464|T037|PT|S83.272D|ICD10CM|Complex tear of lateral meniscus, current injury, left knee, subsequent encounter|Complex tear of lateral meniscus, current injury, left knee, subsequent encounter +C2864465|T037|AB|S83.272S|ICD10CM|Complex tear of lat mensc, current injury, l knee, sequela|Complex tear of lat mensc, current injury, l knee, sequela +C2864465|T037|PT|S83.272S|ICD10CM|Complex tear of lateral meniscus, current injury, left knee, sequela|Complex tear of lateral meniscus, current injury, left knee, sequela +C2864466|T037|AB|S83.279|ICD10CM|Complex tear of lateral meniscus, current injury, unsp knee|Complex tear of lateral meniscus, current injury, unsp knee +C2864466|T037|HT|S83.279|ICD10CM|Complex tear of lateral meniscus, current injury, unspecified knee|Complex tear of lateral meniscus, current injury, unspecified knee +C2864467|T037|AB|S83.279A|ICD10CM|Complex tear of lat mensc, current injury, unsp knee, init|Complex tear of lat mensc, current injury, unsp knee, init +C2864467|T037|PT|S83.279A|ICD10CM|Complex tear of lateral meniscus, current injury, unspecified knee, initial encounter|Complex tear of lateral meniscus, current injury, unspecified knee, initial encounter +C2864468|T037|AB|S83.279D|ICD10CM|Complex tear of lat mensc, current injury, unsp knee, subs|Complex tear of lat mensc, current injury, unsp knee, subs +C2864468|T037|PT|S83.279D|ICD10CM|Complex tear of lateral meniscus, current injury, unspecified knee, subsequent encounter|Complex tear of lateral meniscus, current injury, unspecified knee, subsequent encounter +C2864469|T037|AB|S83.279S|ICD10CM|Cmplx tear of lat mensc, current injury, unsp knee, sequela|Cmplx tear of lat mensc, current injury, unsp knee, sequela +C2864469|T037|PT|S83.279S|ICD10CM|Complex tear of lateral meniscus, current injury, unspecified knee, sequela|Complex tear of lateral meniscus, current injury, unspecified knee, sequela +C2864470|T037|AB|S83.28|ICD10CM|Other tear of lateral meniscus, current injury|Other tear of lateral meniscus, current injury +C2864470|T037|HT|S83.28|ICD10CM|Other tear of lateral meniscus, current injury|Other tear of lateral meniscus, current injury +C2864471|T037|AB|S83.281|ICD10CM|Other tear of lateral meniscus, current injury, right knee|Other tear of lateral meniscus, current injury, right knee +C2864471|T037|HT|S83.281|ICD10CM|Other tear of lateral meniscus, current injury, right knee|Other tear of lateral meniscus, current injury, right knee +C2864472|T037|AB|S83.281A|ICD10CM|Oth tear of lat mensc, current injury, right knee, init|Oth tear of lat mensc, current injury, right knee, init +C2864472|T037|PT|S83.281A|ICD10CM|Other tear of lateral meniscus, current injury, right knee, initial encounter|Other tear of lateral meniscus, current injury, right knee, initial encounter +C2864473|T037|AB|S83.281D|ICD10CM|Oth tear of lat mensc, current injury, right knee, subs|Oth tear of lat mensc, current injury, right knee, subs +C2864473|T037|PT|S83.281D|ICD10CM|Other tear of lateral meniscus, current injury, right knee, subsequent encounter|Other tear of lateral meniscus, current injury, right knee, subsequent encounter +C2864474|T037|AB|S83.281S|ICD10CM|Oth tear of lat mensc, current injury, right knee, sequela|Oth tear of lat mensc, current injury, right knee, sequela +C2864474|T037|PT|S83.281S|ICD10CM|Other tear of lateral meniscus, current injury, right knee, sequela|Other tear of lateral meniscus, current injury, right knee, sequela +C2864475|T037|AB|S83.282|ICD10CM|Other tear of lateral meniscus, current injury, left knee|Other tear of lateral meniscus, current injury, left knee +C2864475|T037|HT|S83.282|ICD10CM|Other tear of lateral meniscus, current injury, left knee|Other tear of lateral meniscus, current injury, left knee +C2864476|T037|AB|S83.282A|ICD10CM|Oth tear of lat mensc, current injury, left knee, init|Oth tear of lat mensc, current injury, left knee, init +C2864476|T037|PT|S83.282A|ICD10CM|Other tear of lateral meniscus, current injury, left knee, initial encounter|Other tear of lateral meniscus, current injury, left knee, initial encounter +C2864477|T037|AB|S83.282D|ICD10CM|Oth tear of lat mensc, current injury, left knee, subs|Oth tear of lat mensc, current injury, left knee, subs +C2864477|T037|PT|S83.282D|ICD10CM|Other tear of lateral meniscus, current injury, left knee, subsequent encounter|Other tear of lateral meniscus, current injury, left knee, subsequent encounter +C2864478|T037|AB|S83.282S|ICD10CM|Oth tear of lat mensc, current injury, left knee, sequela|Oth tear of lat mensc, current injury, left knee, sequela +C2864478|T037|PT|S83.282S|ICD10CM|Other tear of lateral meniscus, current injury, left knee, sequela|Other tear of lateral meniscus, current injury, left knee, sequela +C2864479|T037|AB|S83.289|ICD10CM|Other tear of lateral meniscus, current injury, unsp knee|Other tear of lateral meniscus, current injury, unsp knee +C2864479|T037|HT|S83.289|ICD10CM|Other tear of lateral meniscus, current injury, unspecified knee|Other tear of lateral meniscus, current injury, unspecified knee +C2864480|T037|AB|S83.289A|ICD10CM|Oth tear of lat mensc, current injury, unsp knee, init|Oth tear of lat mensc, current injury, unsp knee, init +C2864480|T037|PT|S83.289A|ICD10CM|Other tear of lateral meniscus, current injury, unspecified knee, initial encounter|Other tear of lateral meniscus, current injury, unspecified knee, initial encounter +C2864481|T037|AB|S83.289D|ICD10CM|Oth tear of lat mensc, current injury, unsp knee, subs|Oth tear of lat mensc, current injury, unsp knee, subs +C2864481|T037|PT|S83.289D|ICD10CM|Other tear of lateral meniscus, current injury, unspecified knee, subsequent encounter|Other tear of lateral meniscus, current injury, unspecified knee, subsequent encounter +C2864482|T037|AB|S83.289S|ICD10CM|Oth tear of lat mensc, current injury, unsp knee, sequela|Oth tear of lat mensc, current injury, unsp knee, sequela +C2864482|T037|PT|S83.289S|ICD10CM|Other tear of lateral meniscus, current injury, unspecified knee, sequela|Other tear of lateral meniscus, current injury, unspecified knee, sequela +C0348957|T037|HT|S83.3|ICD10CM|Tear of articular cartilage of knee, current|Tear of articular cartilage of knee, current +C0348957|T037|AB|S83.3|ICD10CM|Tear of articular cartilage of knee, current|Tear of articular cartilage of knee, current +C0348957|T037|PT|S83.3|ICD10|Tear of articular cartilage of knee, current|Tear of articular cartilage of knee, current +C2864483|T037|AB|S83.30|ICD10CM|Tear of articular cartilage of unspecified knee, current|Tear of articular cartilage of unspecified knee, current +C2864483|T037|HT|S83.30|ICD10CM|Tear of articular cartilage of unspecified knee, current|Tear of articular cartilage of unspecified knee, current +C2976786|T037|AB|S83.30XA|ICD10CM|Tear of articular cartilage of unsp knee, current, init|Tear of articular cartilage of unsp knee, current, init +C2976786|T037|PT|S83.30XA|ICD10CM|Tear of articular cartilage of unspecified knee, current, initial encounter|Tear of articular cartilage of unspecified knee, current, initial encounter +C2976787|T037|AB|S83.30XD|ICD10CM|Tear of articular cartilage of unsp knee, current, subs|Tear of articular cartilage of unsp knee, current, subs +C2976787|T037|PT|S83.30XD|ICD10CM|Tear of articular cartilage of unspecified knee, current, subsequent encounter|Tear of articular cartilage of unspecified knee, current, subsequent encounter +C2976788|T037|AB|S83.30XS|ICD10CM|Tear of articular cartilage of unsp knee, current, sequela|Tear of articular cartilage of unsp knee, current, sequela +C2976788|T037|PT|S83.30XS|ICD10CM|Tear of articular cartilage of unspecified knee, current, sequela|Tear of articular cartilage of unspecified knee, current, sequela +C2864487|T037|AB|S83.31|ICD10CM|Tear of articular cartilage of right knee, current|Tear of articular cartilage of right knee, current +C2864487|T037|HT|S83.31|ICD10CM|Tear of articular cartilage of right knee, current|Tear of articular cartilage of right knee, current +C2864488|T037|AB|S83.31XA|ICD10CM|Tear of articular cartilage of right knee, current, init|Tear of articular cartilage of right knee, current, init +C2864488|T037|PT|S83.31XA|ICD10CM|Tear of articular cartilage of right knee, current, initial encounter|Tear of articular cartilage of right knee, current, initial encounter +C2864489|T037|AB|S83.31XD|ICD10CM|Tear of articular cartilage of right knee, current, subs|Tear of articular cartilage of right knee, current, subs +C2864489|T037|PT|S83.31XD|ICD10CM|Tear of articular cartilage of right knee, current, subsequent encounter|Tear of articular cartilage of right knee, current, subsequent encounter +C2864490|T037|AB|S83.31XS|ICD10CM|Tear of articular cartilage of right knee, current, sequela|Tear of articular cartilage of right knee, current, sequela +C2864490|T037|PT|S83.31XS|ICD10CM|Tear of articular cartilage of right knee, current, sequela|Tear of articular cartilage of right knee, current, sequela +C2864491|T037|AB|S83.32|ICD10CM|Tear of articular cartilage of left knee, current|Tear of articular cartilage of left knee, current +C2864491|T037|HT|S83.32|ICD10CM|Tear of articular cartilage of left knee, current|Tear of articular cartilage of left knee, current +C2864492|T037|AB|S83.32XA|ICD10CM|Tear of articular cartilage of left knee, current, init|Tear of articular cartilage of left knee, current, init +C2864492|T037|PT|S83.32XA|ICD10CM|Tear of articular cartilage of left knee, current, initial encounter|Tear of articular cartilage of left knee, current, initial encounter +C2864493|T037|AB|S83.32XD|ICD10CM|Tear of articular cartilage of left knee, current, subs|Tear of articular cartilage of left knee, current, subs +C2864493|T037|PT|S83.32XD|ICD10CM|Tear of articular cartilage of left knee, current, subsequent encounter|Tear of articular cartilage of left knee, current, subsequent encounter +C2864494|T037|AB|S83.32XS|ICD10CM|Tear of articular cartilage of left knee, current, sequela|Tear of articular cartilage of left knee, current, sequela +C2864494|T037|PT|S83.32XS|ICD10CM|Tear of articular cartilage of left knee, current, sequela|Tear of articular cartilage of left knee, current, sequela +C0495947|T037|PT|S83.4|ICD10|Sprain and strain involving (fibular) (tibial) collateral ligament of knee|Sprain and strain involving (fibular) (tibial) collateral ligament of knee +C2864495|T037|AB|S83.4|ICD10CM|Sprain of collateral ligament of knee|Sprain of collateral ligament of knee +C2864495|T037|HT|S83.4|ICD10CM|Sprain of collateral ligament of knee|Sprain of collateral ligament of knee +C2864496|T037|AB|S83.40|ICD10CM|Sprain of unspecified collateral ligament of knee|Sprain of unspecified collateral ligament of knee +C2864496|T037|HT|S83.40|ICD10CM|Sprain of unspecified collateral ligament of knee|Sprain of unspecified collateral ligament of knee +C2864497|T037|AB|S83.401|ICD10CM|Sprain of unspecified collateral ligament of right knee|Sprain of unspecified collateral ligament of right knee +C2864497|T037|HT|S83.401|ICD10CM|Sprain of unspecified collateral ligament of right knee|Sprain of unspecified collateral ligament of right knee +C2864498|T037|AB|S83.401A|ICD10CM|Sprain of unsp collateral ligament of right knee, init|Sprain of unsp collateral ligament of right knee, init +C2864498|T037|PT|S83.401A|ICD10CM|Sprain of unspecified collateral ligament of right knee, initial encounter|Sprain of unspecified collateral ligament of right knee, initial encounter +C2864499|T037|AB|S83.401D|ICD10CM|Sprain of unsp collateral ligament of right knee, subs|Sprain of unsp collateral ligament of right knee, subs +C2864499|T037|PT|S83.401D|ICD10CM|Sprain of unspecified collateral ligament of right knee, subsequent encounter|Sprain of unspecified collateral ligament of right knee, subsequent encounter +C2864500|T037|AB|S83.401S|ICD10CM|Sprain of unsp collateral ligament of right knee, sequela|Sprain of unsp collateral ligament of right knee, sequela +C2864500|T037|PT|S83.401S|ICD10CM|Sprain of unspecified collateral ligament of right knee, sequela|Sprain of unspecified collateral ligament of right knee, sequela +C2864501|T037|AB|S83.402|ICD10CM|Sprain of unspecified collateral ligament of left knee|Sprain of unspecified collateral ligament of left knee +C2864501|T037|HT|S83.402|ICD10CM|Sprain of unspecified collateral ligament of left knee|Sprain of unspecified collateral ligament of left knee +C2864502|T037|AB|S83.402A|ICD10CM|Sprain of unsp collateral ligament of left knee, init encntr|Sprain of unsp collateral ligament of left knee, init encntr +C2864502|T037|PT|S83.402A|ICD10CM|Sprain of unspecified collateral ligament of left knee, initial encounter|Sprain of unspecified collateral ligament of left knee, initial encounter +C2864503|T037|AB|S83.402D|ICD10CM|Sprain of unsp collateral ligament of left knee, subs encntr|Sprain of unsp collateral ligament of left knee, subs encntr +C2864503|T037|PT|S83.402D|ICD10CM|Sprain of unspecified collateral ligament of left knee, subsequent encounter|Sprain of unspecified collateral ligament of left knee, subsequent encounter +C2864504|T037|AB|S83.402S|ICD10CM|Sprain of unsp collateral ligament of left knee, sequela|Sprain of unsp collateral ligament of left knee, sequela +C2864504|T037|PT|S83.402S|ICD10CM|Sprain of unspecified collateral ligament of left knee, sequela|Sprain of unspecified collateral ligament of left knee, sequela +C2864505|T037|AB|S83.409|ICD10CM|Sprain of unsp collateral ligament of unspecified knee|Sprain of unsp collateral ligament of unspecified knee +C2864505|T037|HT|S83.409|ICD10CM|Sprain of unspecified collateral ligament of unspecified knee|Sprain of unspecified collateral ligament of unspecified knee +C2864506|T037|AB|S83.409A|ICD10CM|Sprain of unsp collateral ligament of unsp knee, init encntr|Sprain of unsp collateral ligament of unsp knee, init encntr +C2864506|T037|PT|S83.409A|ICD10CM|Sprain of unspecified collateral ligament of unspecified knee, initial encounter|Sprain of unspecified collateral ligament of unspecified knee, initial encounter +C2864507|T037|AB|S83.409D|ICD10CM|Sprain of unsp collateral ligament of unsp knee, subs encntr|Sprain of unsp collateral ligament of unsp knee, subs encntr +C2864507|T037|PT|S83.409D|ICD10CM|Sprain of unspecified collateral ligament of unspecified knee, subsequent encounter|Sprain of unspecified collateral ligament of unspecified knee, subsequent encounter +C2864508|T037|AB|S83.409S|ICD10CM|Sprain of unsp collateral ligament of unsp knee, sequela|Sprain of unsp collateral ligament of unsp knee, sequela +C2864508|T037|PT|S83.409S|ICD10CM|Sprain of unspecified collateral ligament of unspecified knee, sequela|Sprain of unspecified collateral ligament of unspecified knee, sequela +C0160081|T037|HT|S83.41|ICD10CM|Sprain of medial collateral ligament of knee|Sprain of medial collateral ligament of knee +C0160081|T037|AB|S83.41|ICD10CM|Sprain of medial collateral ligament of knee|Sprain of medial collateral ligament of knee +C2864509|T037|ET|S83.41|ICD10CM|Sprain of tibial collateral ligament|Sprain of tibial collateral ligament +C2110625|T037|AB|S83.411|ICD10CM|Sprain of medial collateral ligament of right knee|Sprain of medial collateral ligament of right knee +C2110625|T037|HT|S83.411|ICD10CM|Sprain of medial collateral ligament of right knee|Sprain of medial collateral ligament of right knee +C2864510|T037|AB|S83.411A|ICD10CM|Sprain of medial collateral ligament of right knee, init|Sprain of medial collateral ligament of right knee, init +C2864510|T037|PT|S83.411A|ICD10CM|Sprain of medial collateral ligament of right knee, initial encounter|Sprain of medial collateral ligament of right knee, initial encounter +C2864511|T037|AB|S83.411D|ICD10CM|Sprain of medial collateral ligament of right knee, subs|Sprain of medial collateral ligament of right knee, subs +C2864511|T037|PT|S83.411D|ICD10CM|Sprain of medial collateral ligament of right knee, subsequent encounter|Sprain of medial collateral ligament of right knee, subsequent encounter +C2864512|T037|AB|S83.411S|ICD10CM|Sprain of medial collateral ligament of right knee, sequela|Sprain of medial collateral ligament of right knee, sequela +C2864512|T037|PT|S83.411S|ICD10CM|Sprain of medial collateral ligament of right knee, sequela|Sprain of medial collateral ligament of right knee, sequela +C2110624|T037|AB|S83.412|ICD10CM|Sprain of medial collateral ligament of left knee|Sprain of medial collateral ligament of left knee +C2110624|T037|HT|S83.412|ICD10CM|Sprain of medial collateral ligament of left knee|Sprain of medial collateral ligament of left knee +C2864513|T037|AB|S83.412A|ICD10CM|Sprain of medial collateral ligament of left knee, init|Sprain of medial collateral ligament of left knee, init +C2864513|T037|PT|S83.412A|ICD10CM|Sprain of medial collateral ligament of left knee, initial encounter|Sprain of medial collateral ligament of left knee, initial encounter +C2864514|T037|AB|S83.412D|ICD10CM|Sprain of medial collateral ligament of left knee, subs|Sprain of medial collateral ligament of left knee, subs +C2864514|T037|PT|S83.412D|ICD10CM|Sprain of medial collateral ligament of left knee, subsequent encounter|Sprain of medial collateral ligament of left knee, subsequent encounter +C2864515|T037|AB|S83.412S|ICD10CM|Sprain of medial collateral ligament of left knee, sequela|Sprain of medial collateral ligament of left knee, sequela +C2864515|T037|PT|S83.412S|ICD10CM|Sprain of medial collateral ligament of left knee, sequela|Sprain of medial collateral ligament of left knee, sequela +C2864516|T037|AB|S83.419|ICD10CM|Sprain of medial collateral ligament of unspecified knee|Sprain of medial collateral ligament of unspecified knee +C2864516|T037|HT|S83.419|ICD10CM|Sprain of medial collateral ligament of unspecified knee|Sprain of medial collateral ligament of unspecified knee +C2864517|T037|AB|S83.419A|ICD10CM|Sprain of medial collateral ligament of unsp knee, init|Sprain of medial collateral ligament of unsp knee, init +C2864517|T037|PT|S83.419A|ICD10CM|Sprain of medial collateral ligament of unspecified knee, initial encounter|Sprain of medial collateral ligament of unspecified knee, initial encounter +C2864518|T037|AB|S83.419D|ICD10CM|Sprain of medial collateral ligament of unsp knee, subs|Sprain of medial collateral ligament of unsp knee, subs +C2864518|T037|PT|S83.419D|ICD10CM|Sprain of medial collateral ligament of unspecified knee, subsequent encounter|Sprain of medial collateral ligament of unspecified knee, subsequent encounter +C2864519|T037|AB|S83.419S|ICD10CM|Sprain of medial collateral ligament of unsp knee, sequela|Sprain of medial collateral ligament of unsp knee, sequela +C2864519|T037|PT|S83.419S|ICD10CM|Sprain of medial collateral ligament of unspecified knee, sequela|Sprain of medial collateral ligament of unspecified knee, sequela +C2864520|T037|ET|S83.42|ICD10CM|Sprain of fibular collateral ligament|Sprain of fibular collateral ligament +C0160080|T037|HT|S83.42|ICD10CM|Sprain of lateral collateral ligament of knee|Sprain of lateral collateral ligament of knee +C0160080|T037|AB|S83.42|ICD10CM|Sprain of lateral collateral ligament of knee|Sprain of lateral collateral ligament of knee +C2110621|T037|AB|S83.421|ICD10CM|Sprain of lateral collateral ligament of right knee|Sprain of lateral collateral ligament of right knee +C2110621|T037|HT|S83.421|ICD10CM|Sprain of lateral collateral ligament of right knee|Sprain of lateral collateral ligament of right knee +C2864521|T037|AB|S83.421A|ICD10CM|Sprain of lateral collateral ligament of right knee, init|Sprain of lateral collateral ligament of right knee, init +C2864521|T037|PT|S83.421A|ICD10CM|Sprain of lateral collateral ligament of right knee, initial encounter|Sprain of lateral collateral ligament of right knee, initial encounter +C2864522|T037|AB|S83.421D|ICD10CM|Sprain of lateral collateral ligament of right knee, subs|Sprain of lateral collateral ligament of right knee, subs +C2864522|T037|PT|S83.421D|ICD10CM|Sprain of lateral collateral ligament of right knee, subsequent encounter|Sprain of lateral collateral ligament of right knee, subsequent encounter +C2864523|T037|AB|S83.421S|ICD10CM|Sprain of lateral collateral ligament of right knee, sequela|Sprain of lateral collateral ligament of right knee, sequela +C2864523|T037|PT|S83.421S|ICD10CM|Sprain of lateral collateral ligament of right knee, sequela|Sprain of lateral collateral ligament of right knee, sequela +C2110620|T037|AB|S83.422|ICD10CM|Sprain of lateral collateral ligament of left knee|Sprain of lateral collateral ligament of left knee +C2110620|T037|HT|S83.422|ICD10CM|Sprain of lateral collateral ligament of left knee|Sprain of lateral collateral ligament of left knee +C2864524|T037|AB|S83.422A|ICD10CM|Sprain of lateral collateral ligament of left knee, init|Sprain of lateral collateral ligament of left knee, init +C2864524|T037|PT|S83.422A|ICD10CM|Sprain of lateral collateral ligament of left knee, initial encounter|Sprain of lateral collateral ligament of left knee, initial encounter +C2864525|T037|AB|S83.422D|ICD10CM|Sprain of lateral collateral ligament of left knee, subs|Sprain of lateral collateral ligament of left knee, subs +C2864525|T037|PT|S83.422D|ICD10CM|Sprain of lateral collateral ligament of left knee, subsequent encounter|Sprain of lateral collateral ligament of left knee, subsequent encounter +C2864526|T037|AB|S83.422S|ICD10CM|Sprain of lateral collateral ligament of left knee, sequela|Sprain of lateral collateral ligament of left knee, sequela +C2864526|T037|PT|S83.422S|ICD10CM|Sprain of lateral collateral ligament of left knee, sequela|Sprain of lateral collateral ligament of left knee, sequela +C2864527|T037|AB|S83.429|ICD10CM|Sprain of lateral collateral ligament of unspecified knee|Sprain of lateral collateral ligament of unspecified knee +C2864527|T037|HT|S83.429|ICD10CM|Sprain of lateral collateral ligament of unspecified knee|Sprain of lateral collateral ligament of unspecified knee +C2864528|T037|AB|S83.429A|ICD10CM|Sprain of lateral collateral ligament of unsp knee, init|Sprain of lateral collateral ligament of unsp knee, init +C2864528|T037|PT|S83.429A|ICD10CM|Sprain of lateral collateral ligament of unspecified knee, initial encounter|Sprain of lateral collateral ligament of unspecified knee, initial encounter +C2864529|T037|AB|S83.429D|ICD10CM|Sprain of lateral collateral ligament of unsp knee, subs|Sprain of lateral collateral ligament of unsp knee, subs +C2864529|T037|PT|S83.429D|ICD10CM|Sprain of lateral collateral ligament of unspecified knee, subsequent encounter|Sprain of lateral collateral ligament of unspecified knee, subsequent encounter +C2864530|T037|AB|S83.429S|ICD10CM|Sprain of lateral collateral ligament of unsp knee, sequela|Sprain of lateral collateral ligament of unsp knee, sequela +C2864530|T037|PT|S83.429S|ICD10CM|Sprain of lateral collateral ligament of unspecified knee, sequela|Sprain of lateral collateral ligament of unspecified knee, sequela +C0495948|T037|PT|S83.5|ICD10|Sprain and strain involving (anterior) (posterior) cruciate ligament of knee|Sprain and strain involving (anterior) (posterior) cruciate ligament of knee +C0160082|T037|HT|S83.5|ICD10CM|Sprain of cruciate ligament of knee|Sprain of cruciate ligament of knee +C0160082|T037|AB|S83.5|ICD10CM|Sprain of cruciate ligament of knee|Sprain of cruciate ligament of knee +C2864531|T037|AB|S83.50|ICD10CM|Sprain of unspecified cruciate ligament of knee|Sprain of unspecified cruciate ligament of knee +C2864531|T037|HT|S83.50|ICD10CM|Sprain of unspecified cruciate ligament of knee|Sprain of unspecified cruciate ligament of knee +C2864532|T037|AB|S83.501|ICD10CM|Sprain of unspecified cruciate ligament of right knee|Sprain of unspecified cruciate ligament of right knee +C2864532|T037|HT|S83.501|ICD10CM|Sprain of unspecified cruciate ligament of right knee|Sprain of unspecified cruciate ligament of right knee +C2864533|T037|AB|S83.501A|ICD10CM|Sprain of unsp cruciate ligament of right knee, init encntr|Sprain of unsp cruciate ligament of right knee, init encntr +C2864533|T037|PT|S83.501A|ICD10CM|Sprain of unspecified cruciate ligament of right knee, initial encounter|Sprain of unspecified cruciate ligament of right knee, initial encounter +C2864534|T037|AB|S83.501D|ICD10CM|Sprain of unsp cruciate ligament of right knee, subs encntr|Sprain of unsp cruciate ligament of right knee, subs encntr +C2864534|T037|PT|S83.501D|ICD10CM|Sprain of unspecified cruciate ligament of right knee, subsequent encounter|Sprain of unspecified cruciate ligament of right knee, subsequent encounter +C2864535|T037|AB|S83.501S|ICD10CM|Sprain of unsp cruciate ligament of right knee, sequela|Sprain of unsp cruciate ligament of right knee, sequela +C2864535|T037|PT|S83.501S|ICD10CM|Sprain of unspecified cruciate ligament of right knee, sequela|Sprain of unspecified cruciate ligament of right knee, sequela +C2864536|T037|AB|S83.502|ICD10CM|Sprain of unspecified cruciate ligament of left knee|Sprain of unspecified cruciate ligament of left knee +C2864536|T037|HT|S83.502|ICD10CM|Sprain of unspecified cruciate ligament of left knee|Sprain of unspecified cruciate ligament of left knee +C2864537|T037|AB|S83.502A|ICD10CM|Sprain of unsp cruciate ligament of left knee, init encntr|Sprain of unsp cruciate ligament of left knee, init encntr +C2864537|T037|PT|S83.502A|ICD10CM|Sprain of unspecified cruciate ligament of left knee, initial encounter|Sprain of unspecified cruciate ligament of left knee, initial encounter +C2864538|T037|AB|S83.502D|ICD10CM|Sprain of unsp cruciate ligament of left knee, subs encntr|Sprain of unsp cruciate ligament of left knee, subs encntr +C2864538|T037|PT|S83.502D|ICD10CM|Sprain of unspecified cruciate ligament of left knee, subsequent encounter|Sprain of unspecified cruciate ligament of left knee, subsequent encounter +C2864539|T037|AB|S83.502S|ICD10CM|Sprain of unsp cruciate ligament of left knee, sequela|Sprain of unsp cruciate ligament of left knee, sequela +C2864539|T037|PT|S83.502S|ICD10CM|Sprain of unspecified cruciate ligament of left knee, sequela|Sprain of unspecified cruciate ligament of left knee, sequela +C2864540|T037|AB|S83.509|ICD10CM|Sprain of unspecified cruciate ligament of unspecified knee|Sprain of unspecified cruciate ligament of unspecified knee +C2864540|T037|HT|S83.509|ICD10CM|Sprain of unspecified cruciate ligament of unspecified knee|Sprain of unspecified cruciate ligament of unspecified knee +C2864541|T037|AB|S83.509A|ICD10CM|Sprain of unsp cruciate ligament of unsp knee, init encntr|Sprain of unsp cruciate ligament of unsp knee, init encntr +C2864541|T037|PT|S83.509A|ICD10CM|Sprain of unspecified cruciate ligament of unspecified knee, initial encounter|Sprain of unspecified cruciate ligament of unspecified knee, initial encounter +C2864542|T037|AB|S83.509D|ICD10CM|Sprain of unsp cruciate ligament of unsp knee, subs encntr|Sprain of unsp cruciate ligament of unsp knee, subs encntr +C2864542|T037|PT|S83.509D|ICD10CM|Sprain of unspecified cruciate ligament of unspecified knee, subsequent encounter|Sprain of unspecified cruciate ligament of unspecified knee, subsequent encounter +C2864543|T037|AB|S83.509S|ICD10CM|Sprain of unsp cruciate ligament of unsp knee, sequela|Sprain of unsp cruciate ligament of unsp knee, sequela +C2864543|T037|PT|S83.509S|ICD10CM|Sprain of unspecified cruciate ligament of unspecified knee, sequela|Sprain of unspecified cruciate ligament of unspecified knee, sequela +C1264282|T037|HT|S83.51|ICD10CM|Sprain of anterior cruciate ligament of knee|Sprain of anterior cruciate ligament of knee +C1264282|T037|AB|S83.51|ICD10CM|Sprain of anterior cruciate ligament of knee|Sprain of anterior cruciate ligament of knee +C2110613|T037|AB|S83.511|ICD10CM|Sprain of anterior cruciate ligament of right knee|Sprain of anterior cruciate ligament of right knee +C2110613|T037|HT|S83.511|ICD10CM|Sprain of anterior cruciate ligament of right knee|Sprain of anterior cruciate ligament of right knee +C2864544|T037|AB|S83.511A|ICD10CM|Sprain of anterior cruciate ligament of right knee, init|Sprain of anterior cruciate ligament of right knee, init +C2864544|T037|PT|S83.511A|ICD10CM|Sprain of anterior cruciate ligament of right knee, initial encounter|Sprain of anterior cruciate ligament of right knee, initial encounter +C2864545|T037|AB|S83.511D|ICD10CM|Sprain of anterior cruciate ligament of right knee, subs|Sprain of anterior cruciate ligament of right knee, subs +C2864545|T037|PT|S83.511D|ICD10CM|Sprain of anterior cruciate ligament of right knee, subsequent encounter|Sprain of anterior cruciate ligament of right knee, subsequent encounter +C2864546|T037|AB|S83.511S|ICD10CM|Sprain of anterior cruciate ligament of right knee, sequela|Sprain of anterior cruciate ligament of right knee, sequela +C2864546|T037|PT|S83.511S|ICD10CM|Sprain of anterior cruciate ligament of right knee, sequela|Sprain of anterior cruciate ligament of right knee, sequela +C2110612|T037|AB|S83.512|ICD10CM|Sprain of anterior cruciate ligament of left knee|Sprain of anterior cruciate ligament of left knee +C2110612|T037|HT|S83.512|ICD10CM|Sprain of anterior cruciate ligament of left knee|Sprain of anterior cruciate ligament of left knee +C2864547|T037|AB|S83.512A|ICD10CM|Sprain of anterior cruciate ligament of left knee, init|Sprain of anterior cruciate ligament of left knee, init +C2864547|T037|PT|S83.512A|ICD10CM|Sprain of anterior cruciate ligament of left knee, initial encounter|Sprain of anterior cruciate ligament of left knee, initial encounter +C2864548|T037|AB|S83.512D|ICD10CM|Sprain of anterior cruciate ligament of left knee, subs|Sprain of anterior cruciate ligament of left knee, subs +C2864548|T037|PT|S83.512D|ICD10CM|Sprain of anterior cruciate ligament of left knee, subsequent encounter|Sprain of anterior cruciate ligament of left knee, subsequent encounter +C2864549|T037|AB|S83.512S|ICD10CM|Sprain of anterior cruciate ligament of left knee, sequela|Sprain of anterior cruciate ligament of left knee, sequela +C2864549|T037|PT|S83.512S|ICD10CM|Sprain of anterior cruciate ligament of left knee, sequela|Sprain of anterior cruciate ligament of left knee, sequela +C2864550|T037|AB|S83.519|ICD10CM|Sprain of anterior cruciate ligament of unspecified knee|Sprain of anterior cruciate ligament of unspecified knee +C2864550|T037|HT|S83.519|ICD10CM|Sprain of anterior cruciate ligament of unspecified knee|Sprain of anterior cruciate ligament of unspecified knee +C2864551|T037|AB|S83.519A|ICD10CM|Sprain of anterior cruciate ligament of unsp knee, init|Sprain of anterior cruciate ligament of unsp knee, init +C2864551|T037|PT|S83.519A|ICD10CM|Sprain of anterior cruciate ligament of unspecified knee, initial encounter|Sprain of anterior cruciate ligament of unspecified knee, initial encounter +C2864552|T037|AB|S83.519D|ICD10CM|Sprain of anterior cruciate ligament of unsp knee, subs|Sprain of anterior cruciate ligament of unsp knee, subs +C2864552|T037|PT|S83.519D|ICD10CM|Sprain of anterior cruciate ligament of unspecified knee, subsequent encounter|Sprain of anterior cruciate ligament of unspecified knee, subsequent encounter +C2864553|T037|AB|S83.519S|ICD10CM|Sprain of anterior cruciate ligament of unsp knee, sequela|Sprain of anterior cruciate ligament of unsp knee, sequela +C2864553|T037|PT|S83.519S|ICD10CM|Sprain of anterior cruciate ligament of unspecified knee, sequela|Sprain of anterior cruciate ligament of unspecified knee, sequela +C1264283|T037|HT|S83.52|ICD10CM|Sprain of posterior cruciate ligament of knee|Sprain of posterior cruciate ligament of knee +C1264283|T037|AB|S83.52|ICD10CM|Sprain of posterior cruciate ligament of knee|Sprain of posterior cruciate ligament of knee +C2110617|T037|AB|S83.521|ICD10CM|Sprain of posterior cruciate ligament of right knee|Sprain of posterior cruciate ligament of right knee +C2110617|T037|HT|S83.521|ICD10CM|Sprain of posterior cruciate ligament of right knee|Sprain of posterior cruciate ligament of right knee +C2864554|T037|AB|S83.521A|ICD10CM|Sprain of posterior cruciate ligament of right knee, init|Sprain of posterior cruciate ligament of right knee, init +C2864554|T037|PT|S83.521A|ICD10CM|Sprain of posterior cruciate ligament of right knee, initial encounter|Sprain of posterior cruciate ligament of right knee, initial encounter +C2864555|T037|AB|S83.521D|ICD10CM|Sprain of posterior cruciate ligament of right knee, subs|Sprain of posterior cruciate ligament of right knee, subs +C2864555|T037|PT|S83.521D|ICD10CM|Sprain of posterior cruciate ligament of right knee, subsequent encounter|Sprain of posterior cruciate ligament of right knee, subsequent encounter +C2864556|T037|AB|S83.521S|ICD10CM|Sprain of posterior cruciate ligament of right knee, sequela|Sprain of posterior cruciate ligament of right knee, sequela +C2864556|T037|PT|S83.521S|ICD10CM|Sprain of posterior cruciate ligament of right knee, sequela|Sprain of posterior cruciate ligament of right knee, sequela +C2110616|T037|AB|S83.522|ICD10CM|Sprain of posterior cruciate ligament of left knee|Sprain of posterior cruciate ligament of left knee +C2110616|T037|HT|S83.522|ICD10CM|Sprain of posterior cruciate ligament of left knee|Sprain of posterior cruciate ligament of left knee +C2864557|T037|AB|S83.522A|ICD10CM|Sprain of posterior cruciate ligament of left knee, init|Sprain of posterior cruciate ligament of left knee, init +C2864557|T037|PT|S83.522A|ICD10CM|Sprain of posterior cruciate ligament of left knee, initial encounter|Sprain of posterior cruciate ligament of left knee, initial encounter +C2864558|T037|AB|S83.522D|ICD10CM|Sprain of posterior cruciate ligament of left knee, subs|Sprain of posterior cruciate ligament of left knee, subs +C2864558|T037|PT|S83.522D|ICD10CM|Sprain of posterior cruciate ligament of left knee, subsequent encounter|Sprain of posterior cruciate ligament of left knee, subsequent encounter +C2864559|T037|AB|S83.522S|ICD10CM|Sprain of posterior cruciate ligament of left knee, sequela|Sprain of posterior cruciate ligament of left knee, sequela +C2864559|T037|PT|S83.522S|ICD10CM|Sprain of posterior cruciate ligament of left knee, sequela|Sprain of posterior cruciate ligament of left knee, sequela +C2864560|T037|AB|S83.529|ICD10CM|Sprain of posterior cruciate ligament of unspecified knee|Sprain of posterior cruciate ligament of unspecified knee +C2864560|T037|HT|S83.529|ICD10CM|Sprain of posterior cruciate ligament of unspecified knee|Sprain of posterior cruciate ligament of unspecified knee +C2864561|T037|AB|S83.529A|ICD10CM|Sprain of posterior cruciate ligament of unsp knee, init|Sprain of posterior cruciate ligament of unsp knee, init +C2864561|T037|PT|S83.529A|ICD10CM|Sprain of posterior cruciate ligament of unspecified knee, initial encounter|Sprain of posterior cruciate ligament of unspecified knee, initial encounter +C2864562|T037|AB|S83.529D|ICD10CM|Sprain of posterior cruciate ligament of unsp knee, subs|Sprain of posterior cruciate ligament of unsp knee, subs +C2864562|T037|PT|S83.529D|ICD10CM|Sprain of posterior cruciate ligament of unspecified knee, subsequent encounter|Sprain of posterior cruciate ligament of unspecified knee, subsequent encounter +C2864563|T037|AB|S83.529S|ICD10CM|Sprain of posterior cruciate ligament of unsp knee, sequela|Sprain of posterior cruciate ligament of unsp knee, sequela +C2864563|T037|PT|S83.529S|ICD10CM|Sprain of posterior cruciate ligament of unspecified knee, sequela|Sprain of posterior cruciate ligament of unspecified knee, sequela +C0478337|T037|PT|S83.6|ICD10|Sprain and strain of other and unspecified parts of knee|Sprain and strain of other and unspecified parts of knee +C2864564|T037|AB|S83.6|ICD10CM|Sprain of the superior tibiofibular joint and ligament|Sprain of the superior tibiofibular joint and ligament +C2864564|T037|HT|S83.6|ICD10CM|Sprain of the superior tibiofibular joint and ligament|Sprain of the superior tibiofibular joint and ligament +C2864565|T037|AB|S83.60|ICD10CM|Sprain of the superior tibiofibul joint and ligmt, unsp knee|Sprain of the superior tibiofibul joint and ligmt, unsp knee +C2864565|T037|HT|S83.60|ICD10CM|Sprain of the superior tibiofibular joint and ligament, unspecified knee|Sprain of the superior tibiofibular joint and ligament, unspecified knee +C2864566|T037|AB|S83.60XA|ICD10CM|Sprain of super tibiofibul joint and ligmt, unsp knee, init|Sprain of super tibiofibul joint and ligmt, unsp knee, init +C2864566|T037|PT|S83.60XA|ICD10CM|Sprain of the superior tibiofibular joint and ligament, unspecified knee, initial encounter|Sprain of the superior tibiofibular joint and ligament, unspecified knee, initial encounter +C2864567|T037|AB|S83.60XD|ICD10CM|Sprain of super tibiofibul joint and ligmt, unsp knee, subs|Sprain of super tibiofibul joint and ligmt, unsp knee, subs +C2864567|T037|PT|S83.60XD|ICD10CM|Sprain of the superior tibiofibular joint and ligament, unspecified knee, subsequent encounter|Sprain of the superior tibiofibular joint and ligament, unspecified knee, subsequent encounter +C2864568|T037|AB|S83.60XS|ICD10CM|Sprain of super tibiofibul joint and ligmt, unsp knee, sqla|Sprain of super tibiofibul joint and ligmt, unsp knee, sqla +C2864568|T037|PT|S83.60XS|ICD10CM|Sprain of the superior tibiofibular joint and ligament, unspecified knee, sequela|Sprain of the superior tibiofibular joint and ligament, unspecified knee, sequela +C2864569|T037|AB|S83.61|ICD10CM|Sprain of the superior tibiofibul joint and ligament, r knee|Sprain of the superior tibiofibul joint and ligament, r knee +C2864569|T037|HT|S83.61|ICD10CM|Sprain of the superior tibiofibular joint and ligament, right knee|Sprain of the superior tibiofibular joint and ligament, right knee +C2864570|T037|AB|S83.61XA|ICD10CM|Sprain of the super tibiofibul joint and ligmt, r knee, init|Sprain of the super tibiofibul joint and ligmt, r knee, init +C2864570|T037|PT|S83.61XA|ICD10CM|Sprain of the superior tibiofibular joint and ligament, right knee, initial encounter|Sprain of the superior tibiofibular joint and ligament, right knee, initial encounter +C2864571|T037|AB|S83.61XD|ICD10CM|Sprain of the super tibiofibul joint and ligmt, r knee, subs|Sprain of the super tibiofibul joint and ligmt, r knee, subs +C2864571|T037|PT|S83.61XD|ICD10CM|Sprain of the superior tibiofibular joint and ligament, right knee, subsequent encounter|Sprain of the superior tibiofibular joint and ligament, right knee, subsequent encounter +C2864572|T037|AB|S83.61XS|ICD10CM|Sprain of the super tibiofibul joint and ligmt, r knee, sqla|Sprain of the super tibiofibul joint and ligmt, r knee, sqla +C2864572|T037|PT|S83.61XS|ICD10CM|Sprain of the superior tibiofibular joint and ligament, right knee, sequela|Sprain of the superior tibiofibular joint and ligament, right knee, sequela +C2864573|T037|AB|S83.62|ICD10CM|Sprain of the superior tibiofibul joint and ligament, l knee|Sprain of the superior tibiofibul joint and ligament, l knee +C2864573|T037|HT|S83.62|ICD10CM|Sprain of the superior tibiofibular joint and ligament, left knee|Sprain of the superior tibiofibular joint and ligament, left knee +C2864574|T037|AB|S83.62XA|ICD10CM|Sprain of the super tibiofibul joint and ligmt, l knee, init|Sprain of the super tibiofibul joint and ligmt, l knee, init +C2864574|T037|PT|S83.62XA|ICD10CM|Sprain of the superior tibiofibular joint and ligament, left knee, initial encounter|Sprain of the superior tibiofibular joint and ligament, left knee, initial encounter +C2864575|T037|AB|S83.62XD|ICD10CM|Sprain of the super tibiofibul joint and ligmt, l knee, subs|Sprain of the super tibiofibul joint and ligmt, l knee, subs +C2864575|T037|PT|S83.62XD|ICD10CM|Sprain of the superior tibiofibular joint and ligament, left knee, subsequent encounter|Sprain of the superior tibiofibular joint and ligament, left knee, subsequent encounter +C2864576|T037|AB|S83.62XS|ICD10CM|Sprain of the super tibiofibul joint and ligmt, l knee, sqla|Sprain of the super tibiofibul joint and ligmt, l knee, sqla +C2864576|T037|PT|S83.62XS|ICD10CM|Sprain of the superior tibiofibular joint and ligament, left knee, sequela|Sprain of the superior tibiofibular joint and ligament, left knee, sequela +C0451979|T037|PT|S83.7|ICD10|Injury to multiple structures of knee|Injury to multiple structures of knee +C2864577|T037|HT|S83.8|ICD10CM|Sprain of other specified parts of knee|Sprain of other specified parts of knee +C2864577|T037|AB|S83.8|ICD10CM|Sprain of other specified parts of knee|Sprain of other specified parts of knee +C2864577|T037|AB|S83.8X|ICD10CM|Sprain of other specified parts of knee|Sprain of other specified parts of knee +C2864577|T037|HT|S83.8X|ICD10CM|Sprain of other specified parts of knee|Sprain of other specified parts of knee +C2976789|T037|AB|S83.8X1|ICD10CM|Sprain of other specified parts of right knee|Sprain of other specified parts of right knee +C2976789|T037|HT|S83.8X1|ICD10CM|Sprain of other specified parts of right knee|Sprain of other specified parts of right knee +C2976790|T037|AB|S83.8X1A|ICD10CM|Sprain of other specified parts of right knee, init encntr|Sprain of other specified parts of right knee, init encntr +C2976790|T037|PT|S83.8X1A|ICD10CM|Sprain of other specified parts of right knee, initial encounter|Sprain of other specified parts of right knee, initial encounter +C2976791|T037|AB|S83.8X1D|ICD10CM|Sprain of other specified parts of right knee, subs encntr|Sprain of other specified parts of right knee, subs encntr +C2976791|T037|PT|S83.8X1D|ICD10CM|Sprain of other specified parts of right knee, subsequent encounter|Sprain of other specified parts of right knee, subsequent encounter +C2976792|T037|AB|S83.8X1S|ICD10CM|Sprain of other specified parts of right knee, sequela|Sprain of other specified parts of right knee, sequela +C2976792|T037|PT|S83.8X1S|ICD10CM|Sprain of other specified parts of right knee, sequela|Sprain of other specified parts of right knee, sequela +C3264506|T037|AB|S83.8X2|ICD10CM|Sprain of other specified parts of left knee|Sprain of other specified parts of left knee +C3264506|T037|HT|S83.8X2|ICD10CM|Sprain of other specified parts of left knee|Sprain of other specified parts of left knee +C3264507|T037|AB|S83.8X2A|ICD10CM|Sprain of other specified parts of left knee, init encntr|Sprain of other specified parts of left knee, init encntr +C3264507|T037|PT|S83.8X2A|ICD10CM|Sprain of other specified parts of left knee, initial encounter|Sprain of other specified parts of left knee, initial encounter +C2976794|T037|AB|S83.8X2D|ICD10CM|Sprain of other specified parts of left knee, subs encntr|Sprain of other specified parts of left knee, subs encntr +C2976794|T037|PT|S83.8X2D|ICD10CM|Sprain of other specified parts of left knee, subsequent encounter|Sprain of other specified parts of left knee, subsequent encounter +C2976795|T037|AB|S83.8X2S|ICD10CM|Sprain of other specified parts of left knee, sequela|Sprain of other specified parts of left knee, sequela +C2976795|T037|PT|S83.8X2S|ICD10CM|Sprain of other specified parts of left knee, sequela|Sprain of other specified parts of left knee, sequela +C3264508|T037|AB|S83.8X9|ICD10CM|Sprain of other specified parts of unspecified knee|Sprain of other specified parts of unspecified knee +C3264508|T037|HT|S83.8X9|ICD10CM|Sprain of other specified parts of unspecified knee|Sprain of other specified parts of unspecified knee +C2976793|T037|AB|S83.8X9A|ICD10CM|Sprain of oth parts of unspecified knee, init encntr|Sprain of oth parts of unspecified knee, init encntr +C2976793|T037|PT|S83.8X9A|ICD10CM|Sprain of other specified parts of unspecified knee, initial encounter|Sprain of other specified parts of unspecified knee, initial encounter +C3264509|T037|AB|S83.8X9D|ICD10CM|Sprain of oth parts of unspecified knee, subs encntr|Sprain of oth parts of unspecified knee, subs encntr +C3264509|T037|PT|S83.8X9D|ICD10CM|Sprain of other specified parts of unspecified knee, subsequent encounter|Sprain of other specified parts of unspecified knee, subsequent encounter +C3264510|T037|AB|S83.8X9S|ICD10CM|Sprain of other specified parts of unspecified knee, sequela|Sprain of other specified parts of unspecified knee, sequela +C3264510|T037|PT|S83.8X9S|ICD10CM|Sprain of other specified parts of unspecified knee, sequela|Sprain of other specified parts of unspecified knee, sequela +C2864590|T037|AB|S83.9|ICD10CM|Sprain of unspecified site of knee|Sprain of unspecified site of knee +C2864590|T037|HT|S83.9|ICD10CM|Sprain of unspecified site of knee|Sprain of unspecified site of knee +C2864591|T037|AB|S83.90|ICD10CM|Sprain of unspecified site of unspecified knee|Sprain of unspecified site of unspecified knee +C2864591|T037|HT|S83.90|ICD10CM|Sprain of unspecified site of unspecified knee|Sprain of unspecified site of unspecified knee +C2976796|T037|AB|S83.90XA|ICD10CM|Sprain of unspecified site of unspecified knee, init encntr|Sprain of unspecified site of unspecified knee, init encntr +C2976796|T037|PT|S83.90XA|ICD10CM|Sprain of unspecified site of unspecified knee, initial encounter|Sprain of unspecified site of unspecified knee, initial encounter +C2976797|T037|AB|S83.90XD|ICD10CM|Sprain of unspecified site of unspecified knee, subs encntr|Sprain of unspecified site of unspecified knee, subs encntr +C2976797|T037|PT|S83.90XD|ICD10CM|Sprain of unspecified site of unspecified knee, subsequent encounter|Sprain of unspecified site of unspecified knee, subsequent encounter +C2976798|T037|AB|S83.90XS|ICD10CM|Sprain of unspecified site of unspecified knee, sequela|Sprain of unspecified site of unspecified knee, sequela +C2976798|T037|PT|S83.90XS|ICD10CM|Sprain of unspecified site of unspecified knee, sequela|Sprain of unspecified site of unspecified knee, sequela +C2864595|T037|AB|S83.91|ICD10CM|Sprain of unspecified site of right knee|Sprain of unspecified site of right knee +C2864595|T037|HT|S83.91|ICD10CM|Sprain of unspecified site of right knee|Sprain of unspecified site of right knee +C2864596|T037|AB|S83.91XA|ICD10CM|Sprain of unspecified site of right knee, initial encounter|Sprain of unspecified site of right knee, initial encounter +C2864596|T037|PT|S83.91XA|ICD10CM|Sprain of unspecified site of right knee, initial encounter|Sprain of unspecified site of right knee, initial encounter +C2864597|T037|AB|S83.91XD|ICD10CM|Sprain of unspecified site of right knee, subs encntr|Sprain of unspecified site of right knee, subs encntr +C2864597|T037|PT|S83.91XD|ICD10CM|Sprain of unspecified site of right knee, subsequent encounter|Sprain of unspecified site of right knee, subsequent encounter +C2864598|T037|AB|S83.91XS|ICD10CM|Sprain of unspecified site of right knee, sequela|Sprain of unspecified site of right knee, sequela +C2864598|T037|PT|S83.91XS|ICD10CM|Sprain of unspecified site of right knee, sequela|Sprain of unspecified site of right knee, sequela +C2864599|T037|AB|S83.92|ICD10CM|Sprain of unspecified site of left knee|Sprain of unspecified site of left knee +C2864599|T037|HT|S83.92|ICD10CM|Sprain of unspecified site of left knee|Sprain of unspecified site of left knee +C2864600|T037|AB|S83.92XA|ICD10CM|Sprain of unspecified site of left knee, initial encounter|Sprain of unspecified site of left knee, initial encounter +C2864600|T037|PT|S83.92XA|ICD10CM|Sprain of unspecified site of left knee, initial encounter|Sprain of unspecified site of left knee, initial encounter +C2864601|T037|AB|S83.92XD|ICD10CM|Sprain of unspecified site of left knee, subs encntr|Sprain of unspecified site of left knee, subs encntr +C2864601|T037|PT|S83.92XD|ICD10CM|Sprain of unspecified site of left knee, subsequent encounter|Sprain of unspecified site of left knee, subsequent encounter +C2864602|T037|AB|S83.92XS|ICD10CM|Sprain of unspecified site of left knee, sequela|Sprain of unspecified site of left knee, sequela +C2864602|T037|PT|S83.92XS|ICD10CM|Sprain of unspecified site of left knee, sequela|Sprain of unspecified site of left knee, sequela +C0478339|T037|HT|S84|ICD10|Injury of nerves at lower leg level|Injury of nerves at lower leg level +C0478339|T037|AB|S84|ICD10CM|Injury of nerves at lower leg level|Injury of nerves at lower leg level +C0478339|T037|HT|S84|ICD10CM|Injury of nerves at lower leg level|Injury of nerves at lower leg level +C0495949|T037|PT|S84.0|ICD10|Injury of tibial nerve at lower leg level|Injury of tibial nerve at lower leg level +C0495949|T037|HT|S84.0|ICD10CM|Injury of tibial nerve at lower leg level|Injury of tibial nerve at lower leg level +C0495949|T037|AB|S84.0|ICD10CM|Injury of tibial nerve at lower leg level|Injury of tibial nerve at lower leg level +C2864603|T037|AB|S84.00|ICD10CM|Injury of tibial nerve at lower leg level, unspecified leg|Injury of tibial nerve at lower leg level, unspecified leg +C2864603|T037|HT|S84.00|ICD10CM|Injury of tibial nerve at lower leg level, unspecified leg|Injury of tibial nerve at lower leg level, unspecified leg +C2864604|T037|AB|S84.00XA|ICD10CM|Injury of tibial nerve at lower leg level, unsp leg, init|Injury of tibial nerve at lower leg level, unsp leg, init +C2864604|T037|PT|S84.00XA|ICD10CM|Injury of tibial nerve at lower leg level, unspecified leg, initial encounter|Injury of tibial nerve at lower leg level, unspecified leg, initial encounter +C2864605|T037|AB|S84.00XD|ICD10CM|Injury of tibial nerve at lower leg level, unsp leg, subs|Injury of tibial nerve at lower leg level, unsp leg, subs +C2864605|T037|PT|S84.00XD|ICD10CM|Injury of tibial nerve at lower leg level, unspecified leg, subsequent encounter|Injury of tibial nerve at lower leg level, unspecified leg, subsequent encounter +C2864606|T037|AB|S84.00XS|ICD10CM|Injury of tibial nerve at lower leg level, unsp leg, sequela|Injury of tibial nerve at lower leg level, unsp leg, sequela +C2864606|T037|PT|S84.00XS|ICD10CM|Injury of tibial nerve at lower leg level, unspecified leg, sequela|Injury of tibial nerve at lower leg level, unspecified leg, sequela +C2864607|T037|AB|S84.01|ICD10CM|Injury of tibial nerve at lower leg level, right leg|Injury of tibial nerve at lower leg level, right leg +C2864607|T037|HT|S84.01|ICD10CM|Injury of tibial nerve at lower leg level, right leg|Injury of tibial nerve at lower leg level, right leg +C2864608|T037|AB|S84.01XA|ICD10CM|Injury of tibial nerve at lower leg level, right leg, init|Injury of tibial nerve at lower leg level, right leg, init +C2864608|T037|PT|S84.01XA|ICD10CM|Injury of tibial nerve at lower leg level, right leg, initial encounter|Injury of tibial nerve at lower leg level, right leg, initial encounter +C2864609|T037|AB|S84.01XD|ICD10CM|Injury of tibial nerve at lower leg level, right leg, subs|Injury of tibial nerve at lower leg level, right leg, subs +C2864609|T037|PT|S84.01XD|ICD10CM|Injury of tibial nerve at lower leg level, right leg, subsequent encounter|Injury of tibial nerve at lower leg level, right leg, subsequent encounter +C2864610|T037|PT|S84.01XS|ICD10CM|Injury of tibial nerve at lower leg level, right leg, sequela|Injury of tibial nerve at lower leg level, right leg, sequela +C2864610|T037|AB|S84.01XS|ICD10CM|Injury of tibial nrv at lower leg level, right leg, sequela|Injury of tibial nrv at lower leg level, right leg, sequela +C2864611|T037|AB|S84.02|ICD10CM|Injury of tibial nerve at lower leg level, left leg|Injury of tibial nerve at lower leg level, left leg +C2864611|T037|HT|S84.02|ICD10CM|Injury of tibial nerve at lower leg level, left leg|Injury of tibial nerve at lower leg level, left leg +C2864612|T037|AB|S84.02XA|ICD10CM|Injury of tibial nerve at lower leg level, left leg, init|Injury of tibial nerve at lower leg level, left leg, init +C2864612|T037|PT|S84.02XA|ICD10CM|Injury of tibial nerve at lower leg level, left leg, initial encounter|Injury of tibial nerve at lower leg level, left leg, initial encounter +C2864613|T037|AB|S84.02XD|ICD10CM|Injury of tibial nerve at lower leg level, left leg, subs|Injury of tibial nerve at lower leg level, left leg, subs +C2864613|T037|PT|S84.02XD|ICD10CM|Injury of tibial nerve at lower leg level, left leg, subsequent encounter|Injury of tibial nerve at lower leg level, left leg, subsequent encounter +C2864614|T037|AB|S84.02XS|ICD10CM|Injury of tibial nerve at lower leg level, left leg, sequela|Injury of tibial nerve at lower leg level, left leg, sequela +C2864614|T037|PT|S84.02XS|ICD10CM|Injury of tibial nerve at lower leg level, left leg, sequela|Injury of tibial nerve at lower leg level, left leg, sequela +C0495950|T037|HT|S84.1|ICD10CM|Injury of peroneal nerve at lower leg level|Injury of peroneal nerve at lower leg level +C0495950|T037|AB|S84.1|ICD10CM|Injury of peroneal nerve at lower leg level|Injury of peroneal nerve at lower leg level +C0495950|T037|PT|S84.1|ICD10|Injury of peroneal nerve at lower leg level|Injury of peroneal nerve at lower leg level +C2864615|T037|AB|S84.10|ICD10CM|Injury of peroneal nerve at lower leg level, unspecified leg|Injury of peroneal nerve at lower leg level, unspecified leg +C2864615|T037|HT|S84.10|ICD10CM|Injury of peroneal nerve at lower leg level, unspecified leg|Injury of peroneal nerve at lower leg level, unspecified leg +C2864616|T037|AB|S84.10XA|ICD10CM|Injury of peroneal nerve at lower leg level, unsp leg, init|Injury of peroneal nerve at lower leg level, unsp leg, init +C2864616|T037|PT|S84.10XA|ICD10CM|Injury of peroneal nerve at lower leg level, unspecified leg, initial encounter|Injury of peroneal nerve at lower leg level, unspecified leg, initial encounter +C2864617|T037|AB|S84.10XD|ICD10CM|Injury of peroneal nerve at lower leg level, unsp leg, subs|Injury of peroneal nerve at lower leg level, unsp leg, subs +C2864617|T037|PT|S84.10XD|ICD10CM|Injury of peroneal nerve at lower leg level, unspecified leg, subsequent encounter|Injury of peroneal nerve at lower leg level, unspecified leg, subsequent encounter +C2864618|T037|PT|S84.10XS|ICD10CM|Injury of peroneal nerve at lower leg level, unspecified leg, sequela|Injury of peroneal nerve at lower leg level, unspecified leg, sequela +C2864618|T037|AB|S84.10XS|ICD10CM|Injury of peroneal nrv at lower leg level, unsp leg, sequela|Injury of peroneal nrv at lower leg level, unsp leg, sequela +C2864619|T037|AB|S84.11|ICD10CM|Injury of peroneal nerve at lower leg level, right leg|Injury of peroneal nerve at lower leg level, right leg +C2864619|T037|HT|S84.11|ICD10CM|Injury of peroneal nerve at lower leg level, right leg|Injury of peroneal nerve at lower leg level, right leg +C2864620|T037|AB|S84.11XA|ICD10CM|Injury of peroneal nerve at lower leg level, right leg, init|Injury of peroneal nerve at lower leg level, right leg, init +C2864620|T037|PT|S84.11XA|ICD10CM|Injury of peroneal nerve at lower leg level, right leg, initial encounter|Injury of peroneal nerve at lower leg level, right leg, initial encounter +C2864621|T037|AB|S84.11XD|ICD10CM|Injury of peroneal nerve at lower leg level, right leg, subs|Injury of peroneal nerve at lower leg level, right leg, subs +C2864621|T037|PT|S84.11XD|ICD10CM|Injury of peroneal nerve at lower leg level, right leg, subsequent encounter|Injury of peroneal nerve at lower leg level, right leg, subsequent encounter +C2864622|T037|AB|S84.11XS|ICD10CM|Inj peroneal nrv at lower leg level, right leg, sequela|Inj peroneal nrv at lower leg level, right leg, sequela +C2864622|T037|PT|S84.11XS|ICD10CM|Injury of peroneal nerve at lower leg level, right leg, sequela|Injury of peroneal nerve at lower leg level, right leg, sequela +C2864623|T037|AB|S84.12|ICD10CM|Injury of peroneal nerve at lower leg level, left leg|Injury of peroneal nerve at lower leg level, left leg +C2864623|T037|HT|S84.12|ICD10CM|Injury of peroneal nerve at lower leg level, left leg|Injury of peroneal nerve at lower leg level, left leg +C2864624|T037|AB|S84.12XA|ICD10CM|Injury of peroneal nerve at lower leg level, left leg, init|Injury of peroneal nerve at lower leg level, left leg, init +C2864624|T037|PT|S84.12XA|ICD10CM|Injury of peroneal nerve at lower leg level, left leg, initial encounter|Injury of peroneal nerve at lower leg level, left leg, initial encounter +C2864625|T037|AB|S84.12XD|ICD10CM|Injury of peroneal nerve at lower leg level, left leg, subs|Injury of peroneal nerve at lower leg level, left leg, subs +C2864625|T037|PT|S84.12XD|ICD10CM|Injury of peroneal nerve at lower leg level, left leg, subsequent encounter|Injury of peroneal nerve at lower leg level, left leg, subsequent encounter +C2864626|T037|PT|S84.12XS|ICD10CM|Injury of peroneal nerve at lower leg level, left leg, sequela|Injury of peroneal nerve at lower leg level, left leg, sequela +C2864626|T037|AB|S84.12XS|ICD10CM|Injury of peroneal nrv at lower leg level, left leg, sequela|Injury of peroneal nrv at lower leg level, left leg, sequela +C3495553|T037|HT|S84.2|ICD10CM|Injury of cutaneous sensory nerve at lower leg level|Injury of cutaneous sensory nerve at lower leg level +C3495553|T037|AB|S84.2|ICD10CM|Injury of cutaneous sensory nerve at lower leg level|Injury of cutaneous sensory nerve at lower leg level +C3495553|T037|PT|S84.2|ICD10|Injury of cutaneous sensory nerve at lower leg level|Injury of cutaneous sensory nerve at lower leg level +C2864627|T037|AB|S84.20|ICD10CM|Injury of cutan sensory nerve at lower leg level, unsp leg|Injury of cutan sensory nerve at lower leg level, unsp leg +C2864627|T037|HT|S84.20|ICD10CM|Injury of cutaneous sensory nerve at lower leg level, unspecified leg|Injury of cutaneous sensory nerve at lower leg level, unspecified leg +C2864628|T037|AB|S84.20XA|ICD10CM|Inj cutan sensory nerve at lower leg level, unsp leg, init|Inj cutan sensory nerve at lower leg level, unsp leg, init +C2864628|T037|PT|S84.20XA|ICD10CM|Injury of cutaneous sensory nerve at lower leg level, unspecified leg, initial encounter|Injury of cutaneous sensory nerve at lower leg level, unspecified leg, initial encounter +C2864629|T037|AB|S84.20XD|ICD10CM|Inj cutan sensory nerve at lower leg level, unsp leg, subs|Inj cutan sensory nerve at lower leg level, unsp leg, subs +C2864629|T037|PT|S84.20XD|ICD10CM|Injury of cutaneous sensory nerve at lower leg level, unspecified leg, subsequent encounter|Injury of cutaneous sensory nerve at lower leg level, unspecified leg, subsequent encounter +C2864630|T037|AB|S84.20XS|ICD10CM|Inj cutan sensory nerve at low leg level, unsp leg, sequela|Inj cutan sensory nerve at low leg level, unsp leg, sequela +C2864630|T037|PT|S84.20XS|ICD10CM|Injury of cutaneous sensory nerve at lower leg level, unspecified leg, sequela|Injury of cutaneous sensory nerve at lower leg level, unspecified leg, sequela +C2864631|T037|AB|S84.21|ICD10CM|Injury of cutan sensory nerve at lower leg level, right leg|Injury of cutan sensory nerve at lower leg level, right leg +C2864631|T037|HT|S84.21|ICD10CM|Injury of cutaneous sensory nerve at lower leg level, right leg|Injury of cutaneous sensory nerve at lower leg level, right leg +C2864632|T037|AB|S84.21XA|ICD10CM|Inj cutan sensory nerve at lower leg level, right leg, init|Inj cutan sensory nerve at lower leg level, right leg, init +C2864632|T037|PT|S84.21XA|ICD10CM|Injury of cutaneous sensory nerve at lower leg level, right leg, initial encounter|Injury of cutaneous sensory nerve at lower leg level, right leg, initial encounter +C2864633|T037|AB|S84.21XD|ICD10CM|Inj cutan sensory nerve at lower leg level, right leg, subs|Inj cutan sensory nerve at lower leg level, right leg, subs +C2864633|T037|PT|S84.21XD|ICD10CM|Injury of cutaneous sensory nerve at lower leg level, right leg, subsequent encounter|Injury of cutaneous sensory nerve at lower leg level, right leg, subsequent encounter +C2864634|T037|AB|S84.21XS|ICD10CM|Inj cutan sensory nerve at low leg level, right leg, sequela|Inj cutan sensory nerve at low leg level, right leg, sequela +C2864634|T037|PT|S84.21XS|ICD10CM|Injury of cutaneous sensory nerve at lower leg level, right leg, sequela|Injury of cutaneous sensory nerve at lower leg level, right leg, sequela +C2864635|T037|AB|S84.22|ICD10CM|Injury of cutan sensory nerve at lower leg level, left leg|Injury of cutan sensory nerve at lower leg level, left leg +C2864635|T037|HT|S84.22|ICD10CM|Injury of cutaneous sensory nerve at lower leg level, left leg|Injury of cutaneous sensory nerve at lower leg level, left leg +C2864636|T037|AB|S84.22XA|ICD10CM|Inj cutan sensory nerve at lower leg level, left leg, init|Inj cutan sensory nerve at lower leg level, left leg, init +C2864636|T037|PT|S84.22XA|ICD10CM|Injury of cutaneous sensory nerve at lower leg level, left leg, initial encounter|Injury of cutaneous sensory nerve at lower leg level, left leg, initial encounter +C2864637|T037|AB|S84.22XD|ICD10CM|Inj cutan sensory nerve at lower leg level, left leg, subs|Inj cutan sensory nerve at lower leg level, left leg, subs +C2864637|T037|PT|S84.22XD|ICD10CM|Injury of cutaneous sensory nerve at lower leg level, left leg, subsequent encounter|Injury of cutaneous sensory nerve at lower leg level, left leg, subsequent encounter +C2864638|T037|AB|S84.22XS|ICD10CM|Inj cutan sensory nerve at low leg level, left leg, sequela|Inj cutan sensory nerve at low leg level, left leg, sequela +C2864638|T037|PT|S84.22XS|ICD10CM|Injury of cutaneous sensory nerve at lower leg level, left leg, sequela|Injury of cutaneous sensory nerve at lower leg level, left leg, sequela +C0451658|T037|PT|S84.7|ICD10|Injury of multiple nerves at lower leg level|Injury of multiple nerves at lower leg level +C0478338|T037|PT|S84.8|ICD10|Injury of other nerves at lower leg level|Injury of other nerves at lower leg level +C0478338|T037|HT|S84.8|ICD10CM|Injury of other nerves at lower leg level|Injury of other nerves at lower leg level +C0478338|T037|AB|S84.8|ICD10CM|Injury of other nerves at lower leg level|Injury of other nerves at lower leg level +C0478338|T037|HT|S84.80|ICD10CM|Injury of other nerves at lower leg level|Injury of other nerves at lower leg level +C0478338|T037|AB|S84.80|ICD10CM|Injury of other nerves at lower leg level|Injury of other nerves at lower leg level +C2864639|T037|AB|S84.801|ICD10CM|Injury of other nerves at lower leg level, right leg|Injury of other nerves at lower leg level, right leg +C2864639|T037|HT|S84.801|ICD10CM|Injury of other nerves at lower leg level, right leg|Injury of other nerves at lower leg level, right leg +C2864640|T037|AB|S84.801A|ICD10CM|Injury of oth nerves at lower leg level, right leg, init|Injury of oth nerves at lower leg level, right leg, init +C2864640|T037|PT|S84.801A|ICD10CM|Injury of other nerves at lower leg level, right leg, initial encounter|Injury of other nerves at lower leg level, right leg, initial encounter +C2864641|T037|AB|S84.801D|ICD10CM|Injury of oth nerves at lower leg level, right leg, subs|Injury of oth nerves at lower leg level, right leg, subs +C2864641|T037|PT|S84.801D|ICD10CM|Injury of other nerves at lower leg level, right leg, subsequent encounter|Injury of other nerves at lower leg level, right leg, subsequent encounter +C2864642|T037|AB|S84.801S|ICD10CM|Injury of oth nerves at lower leg level, right leg, sequela|Injury of oth nerves at lower leg level, right leg, sequela +C2864642|T037|PT|S84.801S|ICD10CM|Injury of other nerves at lower leg level, right leg, sequela|Injury of other nerves at lower leg level, right leg, sequela +C2864643|T037|AB|S84.802|ICD10CM|Injury of other nerves at lower leg level, left leg|Injury of other nerves at lower leg level, left leg +C2864643|T037|HT|S84.802|ICD10CM|Injury of other nerves at lower leg level, left leg|Injury of other nerves at lower leg level, left leg +C2864644|T037|AB|S84.802A|ICD10CM|Injury of oth nerves at lower leg level, left leg, init|Injury of oth nerves at lower leg level, left leg, init +C2864644|T037|PT|S84.802A|ICD10CM|Injury of other nerves at lower leg level, left leg, initial encounter|Injury of other nerves at lower leg level, left leg, initial encounter +C2864645|T037|AB|S84.802D|ICD10CM|Injury of oth nerves at lower leg level, left leg, subs|Injury of oth nerves at lower leg level, left leg, subs +C2864645|T037|PT|S84.802D|ICD10CM|Injury of other nerves at lower leg level, left leg, subsequent encounter|Injury of other nerves at lower leg level, left leg, subsequent encounter +C2864646|T037|AB|S84.802S|ICD10CM|Injury of other nerves at lower leg level, left leg, sequela|Injury of other nerves at lower leg level, left leg, sequela +C2864646|T037|PT|S84.802S|ICD10CM|Injury of other nerves at lower leg level, left leg, sequela|Injury of other nerves at lower leg level, left leg, sequela +C2864647|T037|AB|S84.809|ICD10CM|Injury of other nerves at lower leg level, unspecified leg|Injury of other nerves at lower leg level, unspecified leg +C2864647|T037|HT|S84.809|ICD10CM|Injury of other nerves at lower leg level, unspecified leg|Injury of other nerves at lower leg level, unspecified leg +C2864648|T037|AB|S84.809A|ICD10CM|Injury of oth nerves at lower leg level, unsp leg, init|Injury of oth nerves at lower leg level, unsp leg, init +C2864648|T037|PT|S84.809A|ICD10CM|Injury of other nerves at lower leg level, unspecified leg, initial encounter|Injury of other nerves at lower leg level, unspecified leg, initial encounter +C2864649|T037|AB|S84.809D|ICD10CM|Injury of oth nerves at lower leg level, unsp leg, subs|Injury of oth nerves at lower leg level, unsp leg, subs +C2864649|T037|PT|S84.809D|ICD10CM|Injury of other nerves at lower leg level, unspecified leg, subsequent encounter|Injury of other nerves at lower leg level, unspecified leg, subsequent encounter +C2864650|T037|AB|S84.809S|ICD10CM|Injury of other nerves at lower leg level, unsp leg, sequela|Injury of other nerves at lower leg level, unsp leg, sequela +C2864650|T037|PT|S84.809S|ICD10CM|Injury of other nerves at lower leg level, unspecified leg, sequela|Injury of other nerves at lower leg level, unspecified leg, sequela +C0478339|T037|HT|S84.9|ICD10CM|Injury of unspecified nerve at lower leg level|Injury of unspecified nerve at lower leg level +C0478339|T037|AB|S84.9|ICD10CM|Injury of unspecified nerve at lower leg level|Injury of unspecified nerve at lower leg level +C0478339|T037|PT|S84.9|ICD10|Injury of unspecified nerve at lower leg level|Injury of unspecified nerve at lower leg level +C2864651|T037|AB|S84.90|ICD10CM|Injury of unsp nerve at lower leg level, unspecified leg|Injury of unsp nerve at lower leg level, unspecified leg +C2864651|T037|HT|S84.90|ICD10CM|Injury of unspecified nerve at lower leg level, unspecified leg|Injury of unspecified nerve at lower leg level, unspecified leg +C2864652|T037|AB|S84.90XA|ICD10CM|Injury of unsp nerve at lower leg level, unsp leg, init|Injury of unsp nerve at lower leg level, unsp leg, init +C2864652|T037|PT|S84.90XA|ICD10CM|Injury of unspecified nerve at lower leg level, unspecified leg, initial encounter|Injury of unspecified nerve at lower leg level, unspecified leg, initial encounter +C2864653|T037|AB|S84.90XD|ICD10CM|Injury of unsp nerve at lower leg level, unsp leg, subs|Injury of unsp nerve at lower leg level, unsp leg, subs +C2864653|T037|PT|S84.90XD|ICD10CM|Injury of unspecified nerve at lower leg level, unspecified leg, subsequent encounter|Injury of unspecified nerve at lower leg level, unspecified leg, subsequent encounter +C2864654|T037|AB|S84.90XS|ICD10CM|Injury of unsp nerve at lower leg level, unsp leg, sequela|Injury of unsp nerve at lower leg level, unsp leg, sequela +C2864654|T037|PT|S84.90XS|ICD10CM|Injury of unspecified nerve at lower leg level, unspecified leg, sequela|Injury of unspecified nerve at lower leg level, unspecified leg, sequela +C2864655|T037|AB|S84.91|ICD10CM|Injury of unspecified nerve at lower leg level, right leg|Injury of unspecified nerve at lower leg level, right leg +C2864655|T037|HT|S84.91|ICD10CM|Injury of unspecified nerve at lower leg level, right leg|Injury of unspecified nerve at lower leg level, right leg +C2864656|T037|AB|S84.91XA|ICD10CM|Injury of unsp nerve at lower leg level, right leg, init|Injury of unsp nerve at lower leg level, right leg, init +C2864656|T037|PT|S84.91XA|ICD10CM|Injury of unspecified nerve at lower leg level, right leg, initial encounter|Injury of unspecified nerve at lower leg level, right leg, initial encounter +C2864657|T037|AB|S84.91XD|ICD10CM|Injury of unsp nerve at lower leg level, right leg, subs|Injury of unsp nerve at lower leg level, right leg, subs +C2864657|T037|PT|S84.91XD|ICD10CM|Injury of unspecified nerve at lower leg level, right leg, subsequent encounter|Injury of unspecified nerve at lower leg level, right leg, subsequent encounter +C2864658|T037|AB|S84.91XS|ICD10CM|Injury of unsp nerve at lower leg level, right leg, sequela|Injury of unsp nerve at lower leg level, right leg, sequela +C2864658|T037|PT|S84.91XS|ICD10CM|Injury of unspecified nerve at lower leg level, right leg, sequela|Injury of unspecified nerve at lower leg level, right leg, sequela +C2864659|T037|AB|S84.92|ICD10CM|Injury of unspecified nerve at lower leg level, left leg|Injury of unspecified nerve at lower leg level, left leg +C2864659|T037|HT|S84.92|ICD10CM|Injury of unspecified nerve at lower leg level, left leg|Injury of unspecified nerve at lower leg level, left leg +C2864660|T037|AB|S84.92XA|ICD10CM|Injury of unsp nerve at lower leg level, left leg, init|Injury of unsp nerve at lower leg level, left leg, init +C2864660|T037|PT|S84.92XA|ICD10CM|Injury of unspecified nerve at lower leg level, left leg, initial encounter|Injury of unspecified nerve at lower leg level, left leg, initial encounter +C2864661|T037|AB|S84.92XD|ICD10CM|Injury of unsp nerve at lower leg level, left leg, subs|Injury of unsp nerve at lower leg level, left leg, subs +C2864661|T037|PT|S84.92XD|ICD10CM|Injury of unspecified nerve at lower leg level, left leg, subsequent encounter|Injury of unspecified nerve at lower leg level, left leg, subsequent encounter +C2864662|T037|AB|S84.92XS|ICD10CM|Injury of unsp nerve at lower leg level, left leg, sequela|Injury of unsp nerve at lower leg level, left leg, sequela +C2864662|T037|PT|S84.92XS|ICD10CM|Injury of unspecified nerve at lower leg level, left leg, sequela|Injury of unspecified nerve at lower leg level, left leg, sequela +C1279577|T037|HT|S85|ICD10|Injury of blood vessels at lower leg level|Injury of blood vessels at lower leg level +C1279577|T037|HT|S85|ICD10CM|Injury of blood vessels at lower leg level|Injury of blood vessels at lower leg level +C1279577|T037|AB|S85|ICD10CM|Injury of blood vessels at lower leg level|Injury of blood vessels at lower leg level +C0160761|T037|PT|S85.0|ICD10|Injury of popliteal artery|Injury of popliteal artery +C0160761|T037|HT|S85.0|ICD10CM|Injury of popliteal artery|Injury of popliteal artery +C0160761|T037|AB|S85.0|ICD10CM|Injury of popliteal artery|Injury of popliteal artery +C0160761|T037|AB|S85.00|ICD10CM|Unspecified injury of popliteal artery|Unspecified injury of popliteal artery +C0160761|T037|HT|S85.00|ICD10CM|Unspecified injury of popliteal artery|Unspecified injury of popliteal artery +C2864663|T037|AB|S85.001|ICD10CM|Unspecified injury of popliteal artery, right leg|Unspecified injury of popliteal artery, right leg +C2864663|T037|HT|S85.001|ICD10CM|Unspecified injury of popliteal artery, right leg|Unspecified injury of popliteal artery, right leg +C2864664|T037|AB|S85.001A|ICD10CM|Unsp injury of popliteal artery, right leg, init encntr|Unsp injury of popliteal artery, right leg, init encntr +C2864664|T037|PT|S85.001A|ICD10CM|Unspecified injury of popliteal artery, right leg, initial encounter|Unspecified injury of popliteal artery, right leg, initial encounter +C2864665|T037|AB|S85.001D|ICD10CM|Unsp injury of popliteal artery, right leg, subs encntr|Unsp injury of popliteal artery, right leg, subs encntr +C2864665|T037|PT|S85.001D|ICD10CM|Unspecified injury of popliteal artery, right leg, subsequent encounter|Unspecified injury of popliteal artery, right leg, subsequent encounter +C2864666|T037|AB|S85.001S|ICD10CM|Unspecified injury of popliteal artery, right leg, sequela|Unspecified injury of popliteal artery, right leg, sequela +C2864666|T037|PT|S85.001S|ICD10CM|Unspecified injury of popliteal artery, right leg, sequela|Unspecified injury of popliteal artery, right leg, sequela +C2864667|T037|AB|S85.002|ICD10CM|Unspecified injury of popliteal artery, left leg|Unspecified injury of popliteal artery, left leg +C2864667|T037|HT|S85.002|ICD10CM|Unspecified injury of popliteal artery, left leg|Unspecified injury of popliteal artery, left leg +C2864668|T037|AB|S85.002A|ICD10CM|Unsp injury of popliteal artery, left leg, init encntr|Unsp injury of popliteal artery, left leg, init encntr +C2864668|T037|PT|S85.002A|ICD10CM|Unspecified injury of popliteal artery, left leg, initial encounter|Unspecified injury of popliteal artery, left leg, initial encounter +C2864669|T037|AB|S85.002D|ICD10CM|Unsp injury of popliteal artery, left leg, subs encntr|Unsp injury of popliteal artery, left leg, subs encntr +C2864669|T037|PT|S85.002D|ICD10CM|Unspecified injury of popliteal artery, left leg, subsequent encounter|Unspecified injury of popliteal artery, left leg, subsequent encounter +C2864670|T037|AB|S85.002S|ICD10CM|Unspecified injury of popliteal artery, left leg, sequela|Unspecified injury of popliteal artery, left leg, sequela +C2864670|T037|PT|S85.002S|ICD10CM|Unspecified injury of popliteal artery, left leg, sequela|Unspecified injury of popliteal artery, left leg, sequela +C2864671|T037|AB|S85.009|ICD10CM|Unspecified injury of popliteal artery, unspecified leg|Unspecified injury of popliteal artery, unspecified leg +C2864671|T037|HT|S85.009|ICD10CM|Unspecified injury of popliteal artery, unspecified leg|Unspecified injury of popliteal artery, unspecified leg +C2864672|T037|AB|S85.009A|ICD10CM|Unsp injury of popliteal artery, unsp leg, init encntr|Unsp injury of popliteal artery, unsp leg, init encntr +C2864672|T037|PT|S85.009A|ICD10CM|Unspecified injury of popliteal artery, unspecified leg, initial encounter|Unspecified injury of popliteal artery, unspecified leg, initial encounter +C2864673|T037|AB|S85.009D|ICD10CM|Unsp injury of popliteal artery, unsp leg, subs encntr|Unsp injury of popliteal artery, unsp leg, subs encntr +C2864673|T037|PT|S85.009D|ICD10CM|Unspecified injury of popliteal artery, unspecified leg, subsequent encounter|Unspecified injury of popliteal artery, unspecified leg, subsequent encounter +C2864674|T037|AB|S85.009S|ICD10CM|Unsp injury of popliteal artery, unspecified leg, sequela|Unsp injury of popliteal artery, unspecified leg, sequela +C2864674|T037|PT|S85.009S|ICD10CM|Unspecified injury of popliteal artery, unspecified leg, sequela|Unspecified injury of popliteal artery, unspecified leg, sequela +C2864675|T037|HT|S85.01|ICD10CM|Laceration of popliteal artery|Laceration of popliteal artery +C2864675|T037|AB|S85.01|ICD10CM|Laceration of popliteal artery|Laceration of popliteal artery +C2864676|T037|AB|S85.011|ICD10CM|Laceration of popliteal artery, right leg|Laceration of popliteal artery, right leg +C2864676|T037|HT|S85.011|ICD10CM|Laceration of popliteal artery, right leg|Laceration of popliteal artery, right leg +C2864677|T037|AB|S85.011A|ICD10CM|Laceration of popliteal artery, right leg, initial encounter|Laceration of popliteal artery, right leg, initial encounter +C2864677|T037|PT|S85.011A|ICD10CM|Laceration of popliteal artery, right leg, initial encounter|Laceration of popliteal artery, right leg, initial encounter +C2864678|T037|AB|S85.011D|ICD10CM|Laceration of popliteal artery, right leg, subs encntr|Laceration of popliteal artery, right leg, subs encntr +C2864678|T037|PT|S85.011D|ICD10CM|Laceration of popliteal artery, right leg, subsequent encounter|Laceration of popliteal artery, right leg, subsequent encounter +C2864679|T037|AB|S85.011S|ICD10CM|Laceration of popliteal artery, right leg, sequela|Laceration of popliteal artery, right leg, sequela +C2864679|T037|PT|S85.011S|ICD10CM|Laceration of popliteal artery, right leg, sequela|Laceration of popliteal artery, right leg, sequela +C2864680|T037|AB|S85.012|ICD10CM|Laceration of popliteal artery, left leg|Laceration of popliteal artery, left leg +C2864680|T037|HT|S85.012|ICD10CM|Laceration of popliteal artery, left leg|Laceration of popliteal artery, left leg +C2864681|T037|AB|S85.012A|ICD10CM|Laceration of popliteal artery, left leg, initial encounter|Laceration of popliteal artery, left leg, initial encounter +C2864681|T037|PT|S85.012A|ICD10CM|Laceration of popliteal artery, left leg, initial encounter|Laceration of popliteal artery, left leg, initial encounter +C2864682|T037|AB|S85.012D|ICD10CM|Laceration of popliteal artery, left leg, subs encntr|Laceration of popliteal artery, left leg, subs encntr +C2864682|T037|PT|S85.012D|ICD10CM|Laceration of popliteal artery, left leg, subsequent encounter|Laceration of popliteal artery, left leg, subsequent encounter +C2864683|T037|AB|S85.012S|ICD10CM|Laceration of popliteal artery, left leg, sequela|Laceration of popliteal artery, left leg, sequela +C2864683|T037|PT|S85.012S|ICD10CM|Laceration of popliteal artery, left leg, sequela|Laceration of popliteal artery, left leg, sequela +C2864684|T037|AB|S85.019|ICD10CM|Laceration of popliteal artery, unspecified leg|Laceration of popliteal artery, unspecified leg +C2864684|T037|HT|S85.019|ICD10CM|Laceration of popliteal artery, unspecified leg|Laceration of popliteal artery, unspecified leg +C2864685|T037|AB|S85.019A|ICD10CM|Laceration of popliteal artery, unspecified leg, init encntr|Laceration of popliteal artery, unspecified leg, init encntr +C2864685|T037|PT|S85.019A|ICD10CM|Laceration of popliteal artery, unspecified leg, initial encounter|Laceration of popliteal artery, unspecified leg, initial encounter +C2864686|T037|AB|S85.019D|ICD10CM|Laceration of popliteal artery, unspecified leg, subs encntr|Laceration of popliteal artery, unspecified leg, subs encntr +C2864686|T037|PT|S85.019D|ICD10CM|Laceration of popliteal artery, unspecified leg, subsequent encounter|Laceration of popliteal artery, unspecified leg, subsequent encounter +C2864687|T037|AB|S85.019S|ICD10CM|Laceration of popliteal artery, unspecified leg, sequela|Laceration of popliteal artery, unspecified leg, sequela +C2864687|T037|PT|S85.019S|ICD10CM|Laceration of popliteal artery, unspecified leg, sequela|Laceration of popliteal artery, unspecified leg, sequela +C2864688|T037|AB|S85.09|ICD10CM|Other specified injury of popliteal artery|Other specified injury of popliteal artery +C2864688|T037|HT|S85.09|ICD10CM|Other specified injury of popliteal artery|Other specified injury of popliteal artery +C2864689|T037|AB|S85.091|ICD10CM|Other specified injury of popliteal artery, right leg|Other specified injury of popliteal artery, right leg +C2864689|T037|HT|S85.091|ICD10CM|Other specified injury of popliteal artery, right leg|Other specified injury of popliteal artery, right leg +C2864690|T037|AB|S85.091A|ICD10CM|Oth injury of popliteal artery, right leg, init encntr|Oth injury of popliteal artery, right leg, init encntr +C2864690|T037|PT|S85.091A|ICD10CM|Other specified injury of popliteal artery, right leg, initial encounter|Other specified injury of popliteal artery, right leg, initial encounter +C2864691|T037|AB|S85.091D|ICD10CM|Oth injury of popliteal artery, right leg, subs encntr|Oth injury of popliteal artery, right leg, subs encntr +C2864691|T037|PT|S85.091D|ICD10CM|Other specified injury of popliteal artery, right leg, subsequent encounter|Other specified injury of popliteal artery, right leg, subsequent encounter +C2864692|T037|AB|S85.091S|ICD10CM|Oth injury of popliteal artery, right leg, sequela|Oth injury of popliteal artery, right leg, sequela +C2864692|T037|PT|S85.091S|ICD10CM|Other specified injury of popliteal artery, right leg, sequela|Other specified injury of popliteal artery, right leg, sequela +C2864693|T037|AB|S85.092|ICD10CM|Other specified injury of popliteal artery, left leg|Other specified injury of popliteal artery, left leg +C2864693|T037|HT|S85.092|ICD10CM|Other specified injury of popliteal artery, left leg|Other specified injury of popliteal artery, left leg +C2864694|T037|AB|S85.092A|ICD10CM|Oth injury of popliteal artery, left leg, init encntr|Oth injury of popliteal artery, left leg, init encntr +C2864694|T037|PT|S85.092A|ICD10CM|Other specified injury of popliteal artery, left leg, initial encounter|Other specified injury of popliteal artery, left leg, initial encounter +C2864695|T037|AB|S85.092D|ICD10CM|Oth injury of popliteal artery, left leg, subs encntr|Oth injury of popliteal artery, left leg, subs encntr +C2864695|T037|PT|S85.092D|ICD10CM|Other specified injury of popliteal artery, left leg, subsequent encounter|Other specified injury of popliteal artery, left leg, subsequent encounter +C2864696|T037|AB|S85.092S|ICD10CM|Oth injury of popliteal artery, left leg, sequela|Oth injury of popliteal artery, left leg, sequela +C2864696|T037|PT|S85.092S|ICD10CM|Other specified injury of popliteal artery, left leg, sequela|Other specified injury of popliteal artery, left leg, sequela +C2864697|T037|AB|S85.099|ICD10CM|Other specified injury of popliteal artery, unspecified leg|Other specified injury of popliteal artery, unspecified leg +C2864697|T037|HT|S85.099|ICD10CM|Other specified injury of popliteal artery, unspecified leg|Other specified injury of popliteal artery, unspecified leg +C2864698|T037|AB|S85.099A|ICD10CM|Oth injury of popliteal artery, unspecified leg, init encntr|Oth injury of popliteal artery, unspecified leg, init encntr +C2864698|T037|PT|S85.099A|ICD10CM|Other specified injury of popliteal artery, unspecified leg, initial encounter|Other specified injury of popliteal artery, unspecified leg, initial encounter +C2864699|T037|AB|S85.099D|ICD10CM|Oth injury of popliteal artery, unspecified leg, subs encntr|Oth injury of popliteal artery, unspecified leg, subs encntr +C2864699|T037|PT|S85.099D|ICD10CM|Other specified injury of popliteal artery, unspecified leg, subsequent encounter|Other specified injury of popliteal artery, unspecified leg, subsequent encounter +C2864700|T037|AB|S85.099S|ICD10CM|Oth injury of popliteal artery, unspecified leg, sequela|Oth injury of popliteal artery, unspecified leg, sequela +C2864700|T037|PT|S85.099S|ICD10CM|Other specified injury of popliteal artery, unspecified leg, sequela|Other specified injury of popliteal artery, unspecified leg, sequela +C0495952|T037|PT|S85.1|ICD10|Injury of (anterior) (posterior) tibial artery|Injury of (anterior) (posterior) tibial artery +C1384837|T037|AB|S85.1|ICD10CM|Injury of tibial artery|Injury of tibial artery +C1384837|T037|HT|S85.1|ICD10CM|Injury of tibial artery|Injury of tibial artery +C1384837|T037|ET|S85.10|ICD10CM|Injury of tibial artery NOS|Injury of tibial artery NOS +C2864701|T037|AB|S85.10|ICD10CM|Unspecified injury of unspecified tibial artery|Unspecified injury of unspecified tibial artery +C2864701|T037|HT|S85.10|ICD10CM|Unspecified injury of unspecified tibial artery|Unspecified injury of unspecified tibial artery +C2864702|T037|AB|S85.101|ICD10CM|Unspecified injury of unspecified tibial artery, right leg|Unspecified injury of unspecified tibial artery, right leg +C2864702|T037|HT|S85.101|ICD10CM|Unspecified injury of unspecified tibial artery, right leg|Unspecified injury of unspecified tibial artery, right leg +C2864703|T037|AB|S85.101A|ICD10CM|Unsp injury of unsp tibial artery, right leg, init encntr|Unsp injury of unsp tibial artery, right leg, init encntr +C2864703|T037|PT|S85.101A|ICD10CM|Unspecified injury of unspecified tibial artery, right leg, initial encounter|Unspecified injury of unspecified tibial artery, right leg, initial encounter +C2864704|T037|AB|S85.101D|ICD10CM|Unsp injury of unsp tibial artery, right leg, subs encntr|Unsp injury of unsp tibial artery, right leg, subs encntr +C2864704|T037|PT|S85.101D|ICD10CM|Unspecified injury of unspecified tibial artery, right leg, subsequent encounter|Unspecified injury of unspecified tibial artery, right leg, subsequent encounter +C2864705|T037|AB|S85.101S|ICD10CM|Unsp injury of unspecified tibial artery, right leg, sequela|Unsp injury of unspecified tibial artery, right leg, sequela +C2864705|T037|PT|S85.101S|ICD10CM|Unspecified injury of unspecified tibial artery, right leg, sequela|Unspecified injury of unspecified tibial artery, right leg, sequela +C2864706|T037|AB|S85.102|ICD10CM|Unspecified injury of unspecified tibial artery, left leg|Unspecified injury of unspecified tibial artery, left leg +C2864706|T037|HT|S85.102|ICD10CM|Unspecified injury of unspecified tibial artery, left leg|Unspecified injury of unspecified tibial artery, left leg +C2864707|T037|AB|S85.102A|ICD10CM|Unsp injury of unsp tibial artery, left leg, init encntr|Unsp injury of unsp tibial artery, left leg, init encntr +C2864707|T037|PT|S85.102A|ICD10CM|Unspecified injury of unspecified tibial artery, left leg, initial encounter|Unspecified injury of unspecified tibial artery, left leg, initial encounter +C2864708|T037|AB|S85.102D|ICD10CM|Unsp injury of unsp tibial artery, left leg, subs encntr|Unsp injury of unsp tibial artery, left leg, subs encntr +C2864708|T037|PT|S85.102D|ICD10CM|Unspecified injury of unspecified tibial artery, left leg, subsequent encounter|Unspecified injury of unspecified tibial artery, left leg, subsequent encounter +C2864709|T037|AB|S85.102S|ICD10CM|Unsp injury of unspecified tibial artery, left leg, sequela|Unsp injury of unspecified tibial artery, left leg, sequela +C2864709|T037|PT|S85.102S|ICD10CM|Unspecified injury of unspecified tibial artery, left leg, sequela|Unspecified injury of unspecified tibial artery, left leg, sequela +C2864710|T037|AB|S85.109|ICD10CM|Unsp injury of unspecified tibial artery, unspecified leg|Unsp injury of unspecified tibial artery, unspecified leg +C2864710|T037|HT|S85.109|ICD10CM|Unspecified injury of unspecified tibial artery, unspecified leg|Unspecified injury of unspecified tibial artery, unspecified leg +C2864711|T037|AB|S85.109A|ICD10CM|Unsp injury of unsp tibial artery, unsp leg, init encntr|Unsp injury of unsp tibial artery, unsp leg, init encntr +C2864711|T037|PT|S85.109A|ICD10CM|Unspecified injury of unspecified tibial artery, unspecified leg, initial encounter|Unspecified injury of unspecified tibial artery, unspecified leg, initial encounter +C2864712|T037|AB|S85.109D|ICD10CM|Unsp injury of unsp tibial artery, unsp leg, subs encntr|Unsp injury of unsp tibial artery, unsp leg, subs encntr +C2864712|T037|PT|S85.109D|ICD10CM|Unspecified injury of unspecified tibial artery, unspecified leg, subsequent encounter|Unspecified injury of unspecified tibial artery, unspecified leg, subsequent encounter +C2864713|T037|AB|S85.109S|ICD10CM|Unsp injury of unsp tibial artery, unspecified leg, sequela|Unsp injury of unsp tibial artery, unspecified leg, sequela +C2864713|T037|PT|S85.109S|ICD10CM|Unspecified injury of unspecified tibial artery, unspecified leg, sequela|Unspecified injury of unspecified tibial artery, unspecified leg, sequela +C2864714|T037|AB|S85.11|ICD10CM|Laceration of unspecified tibial artery|Laceration of unspecified tibial artery +C2864714|T037|HT|S85.11|ICD10CM|Laceration of unspecified tibial artery|Laceration of unspecified tibial artery +C2864715|T037|AB|S85.111|ICD10CM|Laceration of unspecified tibial artery, right leg|Laceration of unspecified tibial artery, right leg +C2864715|T037|HT|S85.111|ICD10CM|Laceration of unspecified tibial artery, right leg|Laceration of unspecified tibial artery, right leg +C2864716|T037|AB|S85.111A|ICD10CM|Laceration of unsp tibial artery, right leg, init encntr|Laceration of unsp tibial artery, right leg, init encntr +C2864716|T037|PT|S85.111A|ICD10CM|Laceration of unspecified tibial artery, right leg, initial encounter|Laceration of unspecified tibial artery, right leg, initial encounter +C2864717|T037|AB|S85.111D|ICD10CM|Laceration of unsp tibial artery, right leg, subs encntr|Laceration of unsp tibial artery, right leg, subs encntr +C2864717|T037|PT|S85.111D|ICD10CM|Laceration of unspecified tibial artery, right leg, subsequent encounter|Laceration of unspecified tibial artery, right leg, subsequent encounter +C2864718|T037|AB|S85.111S|ICD10CM|Laceration of unspecified tibial artery, right leg, sequela|Laceration of unspecified tibial artery, right leg, sequela +C2864718|T037|PT|S85.111S|ICD10CM|Laceration of unspecified tibial artery, right leg, sequela|Laceration of unspecified tibial artery, right leg, sequela +C2864719|T037|AB|S85.112|ICD10CM|Laceration of unspecified tibial artery, left leg|Laceration of unspecified tibial artery, left leg +C2864719|T037|HT|S85.112|ICD10CM|Laceration of unspecified tibial artery, left leg|Laceration of unspecified tibial artery, left leg +C2864720|T037|AB|S85.112A|ICD10CM|Laceration of unsp tibial artery, left leg, init encntr|Laceration of unsp tibial artery, left leg, init encntr +C2864720|T037|PT|S85.112A|ICD10CM|Laceration of unspecified tibial artery, left leg, initial encounter|Laceration of unspecified tibial artery, left leg, initial encounter +C2864721|T037|AB|S85.112D|ICD10CM|Laceration of unsp tibial artery, left leg, subs encntr|Laceration of unsp tibial artery, left leg, subs encntr +C2864721|T037|PT|S85.112D|ICD10CM|Laceration of unspecified tibial artery, left leg, subsequent encounter|Laceration of unspecified tibial artery, left leg, subsequent encounter +C2864722|T037|AB|S85.112S|ICD10CM|Laceration of unspecified tibial artery, left leg, sequela|Laceration of unspecified tibial artery, left leg, sequela +C2864722|T037|PT|S85.112S|ICD10CM|Laceration of unspecified tibial artery, left leg, sequela|Laceration of unspecified tibial artery, left leg, sequela +C2864723|T037|AB|S85.119|ICD10CM|Laceration of unspecified tibial artery, unspecified leg|Laceration of unspecified tibial artery, unspecified leg +C2864723|T037|HT|S85.119|ICD10CM|Laceration of unspecified tibial artery, unspecified leg|Laceration of unspecified tibial artery, unspecified leg +C2864724|T037|AB|S85.119A|ICD10CM|Laceration of unsp tibial artery, unsp leg, init encntr|Laceration of unsp tibial artery, unsp leg, init encntr +C2864724|T037|PT|S85.119A|ICD10CM|Laceration of unspecified tibial artery, unspecified leg, initial encounter|Laceration of unspecified tibial artery, unspecified leg, initial encounter +C2864725|T037|AB|S85.119D|ICD10CM|Laceration of unsp tibial artery, unsp leg, subs encntr|Laceration of unsp tibial artery, unsp leg, subs encntr +C2864725|T037|PT|S85.119D|ICD10CM|Laceration of unspecified tibial artery, unspecified leg, subsequent encounter|Laceration of unspecified tibial artery, unspecified leg, subsequent encounter +C2864726|T037|AB|S85.119S|ICD10CM|Laceration of unsp tibial artery, unspecified leg, sequela|Laceration of unsp tibial artery, unspecified leg, sequela +C2864726|T037|PT|S85.119S|ICD10CM|Laceration of unspecified tibial artery, unspecified leg, sequela|Laceration of unspecified tibial artery, unspecified leg, sequela +C2864727|T037|AB|S85.12|ICD10CM|Other specified injury of unspecified tibial artery|Other specified injury of unspecified tibial artery +C2864727|T037|HT|S85.12|ICD10CM|Other specified injury of unspecified tibial artery|Other specified injury of unspecified tibial artery +C2864728|T037|AB|S85.121|ICD10CM|Oth injury of unspecified tibial artery, right leg|Oth injury of unspecified tibial artery, right leg +C2864728|T037|HT|S85.121|ICD10CM|Other specified injury of unspecified tibial artery, right leg|Other specified injury of unspecified tibial artery, right leg +C2864729|T037|AB|S85.121A|ICD10CM|Oth injury of unsp tibial artery, right leg, init encntr|Oth injury of unsp tibial artery, right leg, init encntr +C2864729|T037|PT|S85.121A|ICD10CM|Other specified injury of unspecified tibial artery, right leg, initial encounter|Other specified injury of unspecified tibial artery, right leg, initial encounter +C2864730|T037|AB|S85.121D|ICD10CM|Oth injury of unsp tibial artery, right leg, subs encntr|Oth injury of unsp tibial artery, right leg, subs encntr +C2864730|T037|PT|S85.121D|ICD10CM|Other specified injury of unspecified tibial artery, right leg, subsequent encounter|Other specified injury of unspecified tibial artery, right leg, subsequent encounter +C2864731|T037|AB|S85.121S|ICD10CM|Oth injury of unspecified tibial artery, right leg, sequela|Oth injury of unspecified tibial artery, right leg, sequela +C2864731|T037|PT|S85.121S|ICD10CM|Other specified injury of unspecified tibial artery, right leg, sequela|Other specified injury of unspecified tibial artery, right leg, sequela +C2864732|T037|AB|S85.122|ICD10CM|Oth injury of unspecified tibial artery, left leg|Oth injury of unspecified tibial artery, left leg +C2864732|T037|HT|S85.122|ICD10CM|Other specified injury of unspecified tibial artery, left leg|Other specified injury of unspecified tibial artery, left leg +C2864733|T037|AB|S85.122A|ICD10CM|Oth injury of unsp tibial artery, left leg, init encntr|Oth injury of unsp tibial artery, left leg, init encntr +C2864733|T037|PT|S85.122A|ICD10CM|Other specified injury of unspecified tibial artery, left leg, initial encounter|Other specified injury of unspecified tibial artery, left leg, initial encounter +C2864734|T037|AB|S85.122D|ICD10CM|Oth injury of unsp tibial artery, left leg, subs encntr|Oth injury of unsp tibial artery, left leg, subs encntr +C2864734|T037|PT|S85.122D|ICD10CM|Other specified injury of unspecified tibial artery, left leg, subsequent encounter|Other specified injury of unspecified tibial artery, left leg, subsequent encounter +C2864735|T037|AB|S85.122S|ICD10CM|Oth injury of unspecified tibial artery, left leg, sequela|Oth injury of unspecified tibial artery, left leg, sequela +C2864735|T037|PT|S85.122S|ICD10CM|Other specified injury of unspecified tibial artery, left leg, sequela|Other specified injury of unspecified tibial artery, left leg, sequela +C2864736|T037|AB|S85.129|ICD10CM|Oth injury of unspecified tibial artery, unspecified leg|Oth injury of unspecified tibial artery, unspecified leg +C2864736|T037|HT|S85.129|ICD10CM|Other specified injury of unspecified tibial artery, unspecified leg|Other specified injury of unspecified tibial artery, unspecified leg +C2864737|T037|AB|S85.129A|ICD10CM|Oth injury of unsp tibial artery, unsp leg, init encntr|Oth injury of unsp tibial artery, unsp leg, init encntr +C2864737|T037|PT|S85.129A|ICD10CM|Other specified injury of unspecified tibial artery, unspecified leg, initial encounter|Other specified injury of unspecified tibial artery, unspecified leg, initial encounter +C2864738|T037|AB|S85.129D|ICD10CM|Oth injury of unsp tibial artery, unsp leg, subs encntr|Oth injury of unsp tibial artery, unsp leg, subs encntr +C2864738|T037|PT|S85.129D|ICD10CM|Other specified injury of unspecified tibial artery, unspecified leg, subsequent encounter|Other specified injury of unspecified tibial artery, unspecified leg, subsequent encounter +C2864739|T037|AB|S85.129S|ICD10CM|Oth injury of unsp tibial artery, unspecified leg, sequela|Oth injury of unsp tibial artery, unspecified leg, sequela +C2864739|T037|PT|S85.129S|ICD10CM|Other specified injury of unspecified tibial artery, unspecified leg, sequela|Other specified injury of unspecified tibial artery, unspecified leg, sequela +C0160765|T037|AB|S85.13|ICD10CM|Unspecified injury of anterior tibial artery|Unspecified injury of anterior tibial artery +C0160765|T037|HT|S85.13|ICD10CM|Unspecified injury of anterior tibial artery|Unspecified injury of anterior tibial artery +C2864740|T037|AB|S85.131|ICD10CM|Unspecified injury of anterior tibial artery, right leg|Unspecified injury of anterior tibial artery, right leg +C2864740|T037|HT|S85.131|ICD10CM|Unspecified injury of anterior tibial artery, right leg|Unspecified injury of anterior tibial artery, right leg +C2864741|T037|AB|S85.131A|ICD10CM|Unsp injury of anterior tibial artery, right leg, init|Unsp injury of anterior tibial artery, right leg, init +C2864741|T037|PT|S85.131A|ICD10CM|Unspecified injury of anterior tibial artery, right leg, initial encounter|Unspecified injury of anterior tibial artery, right leg, initial encounter +C2864742|T037|AB|S85.131D|ICD10CM|Unsp injury of anterior tibial artery, right leg, subs|Unsp injury of anterior tibial artery, right leg, subs +C2864742|T037|PT|S85.131D|ICD10CM|Unspecified injury of anterior tibial artery, right leg, subsequent encounter|Unspecified injury of anterior tibial artery, right leg, subsequent encounter +C2864743|T037|AB|S85.131S|ICD10CM|Unsp injury of anterior tibial artery, right leg, sequela|Unsp injury of anterior tibial artery, right leg, sequela +C2864743|T037|PT|S85.131S|ICD10CM|Unspecified injury of anterior tibial artery, right leg, sequela|Unspecified injury of anterior tibial artery, right leg, sequela +C2864744|T037|AB|S85.132|ICD10CM|Unspecified injury of anterior tibial artery, left leg|Unspecified injury of anterior tibial artery, left leg +C2864744|T037|HT|S85.132|ICD10CM|Unspecified injury of anterior tibial artery, left leg|Unspecified injury of anterior tibial artery, left leg +C2864745|T037|AB|S85.132A|ICD10CM|Unsp injury of anterior tibial artery, left leg, init encntr|Unsp injury of anterior tibial artery, left leg, init encntr +C2864745|T037|PT|S85.132A|ICD10CM|Unspecified injury of anterior tibial artery, left leg, initial encounter|Unspecified injury of anterior tibial artery, left leg, initial encounter +C2864746|T037|AB|S85.132D|ICD10CM|Unsp injury of anterior tibial artery, left leg, subs encntr|Unsp injury of anterior tibial artery, left leg, subs encntr +C2864746|T037|PT|S85.132D|ICD10CM|Unspecified injury of anterior tibial artery, left leg, subsequent encounter|Unspecified injury of anterior tibial artery, left leg, subsequent encounter +C2864747|T037|AB|S85.132S|ICD10CM|Unsp injury of anterior tibial artery, left leg, sequela|Unsp injury of anterior tibial artery, left leg, sequela +C2864747|T037|PT|S85.132S|ICD10CM|Unspecified injury of anterior tibial artery, left leg, sequela|Unspecified injury of anterior tibial artery, left leg, sequela +C2864748|T037|AB|S85.139|ICD10CM|Unsp injury of anterior tibial artery, unspecified leg|Unsp injury of anterior tibial artery, unspecified leg +C2864748|T037|HT|S85.139|ICD10CM|Unspecified injury of anterior tibial artery, unspecified leg|Unspecified injury of anterior tibial artery, unspecified leg +C2864749|T037|AB|S85.139A|ICD10CM|Unsp injury of anterior tibial artery, unsp leg, init encntr|Unsp injury of anterior tibial artery, unsp leg, init encntr +C2864749|T037|PT|S85.139A|ICD10CM|Unspecified injury of anterior tibial artery, unspecified leg, initial encounter|Unspecified injury of anterior tibial artery, unspecified leg, initial encounter +C2864750|T037|AB|S85.139D|ICD10CM|Unsp injury of anterior tibial artery, unsp leg, subs encntr|Unsp injury of anterior tibial artery, unsp leg, subs encntr +C2864750|T037|PT|S85.139D|ICD10CM|Unspecified injury of anterior tibial artery, unspecified leg, subsequent encounter|Unspecified injury of anterior tibial artery, unspecified leg, subsequent encounter +C2864751|T037|AB|S85.139S|ICD10CM|Unsp injury of anterior tibial artery, unsp leg, sequela|Unsp injury of anterior tibial artery, unsp leg, sequela +C2864751|T037|PT|S85.139S|ICD10CM|Unspecified injury of anterior tibial artery, unspecified leg, sequela|Unspecified injury of anterior tibial artery, unspecified leg, sequela +C2864752|T037|HT|S85.14|ICD10CM|Laceration of anterior tibial artery|Laceration of anterior tibial artery +C2864752|T037|AB|S85.14|ICD10CM|Laceration of anterior tibial artery|Laceration of anterior tibial artery +C2864753|T037|AB|S85.141|ICD10CM|Laceration of anterior tibial artery, right leg|Laceration of anterior tibial artery, right leg +C2864753|T037|HT|S85.141|ICD10CM|Laceration of anterior tibial artery, right leg|Laceration of anterior tibial artery, right leg +C2864754|T037|AB|S85.141A|ICD10CM|Laceration of anterior tibial artery, right leg, init encntr|Laceration of anterior tibial artery, right leg, init encntr +C2864754|T037|PT|S85.141A|ICD10CM|Laceration of anterior tibial artery, right leg, initial encounter|Laceration of anterior tibial artery, right leg, initial encounter +C2864755|T037|AB|S85.141D|ICD10CM|Laceration of anterior tibial artery, right leg, subs encntr|Laceration of anterior tibial artery, right leg, subs encntr +C2864755|T037|PT|S85.141D|ICD10CM|Laceration of anterior tibial artery, right leg, subsequent encounter|Laceration of anterior tibial artery, right leg, subsequent encounter +C2864756|T037|AB|S85.141S|ICD10CM|Laceration of anterior tibial artery, right leg, sequela|Laceration of anterior tibial artery, right leg, sequela +C2864756|T037|PT|S85.141S|ICD10CM|Laceration of anterior tibial artery, right leg, sequela|Laceration of anterior tibial artery, right leg, sequela +C2864757|T037|AB|S85.142|ICD10CM|Laceration of anterior tibial artery, left leg|Laceration of anterior tibial artery, left leg +C2864757|T037|HT|S85.142|ICD10CM|Laceration of anterior tibial artery, left leg|Laceration of anterior tibial artery, left leg +C2864758|T037|AB|S85.142A|ICD10CM|Laceration of anterior tibial artery, left leg, init encntr|Laceration of anterior tibial artery, left leg, init encntr +C2864758|T037|PT|S85.142A|ICD10CM|Laceration of anterior tibial artery, left leg, initial encounter|Laceration of anterior tibial artery, left leg, initial encounter +C2864759|T037|AB|S85.142D|ICD10CM|Laceration of anterior tibial artery, left leg, subs encntr|Laceration of anterior tibial artery, left leg, subs encntr +C2864759|T037|PT|S85.142D|ICD10CM|Laceration of anterior tibial artery, left leg, subsequent encounter|Laceration of anterior tibial artery, left leg, subsequent encounter +C2864760|T037|AB|S85.142S|ICD10CM|Laceration of anterior tibial artery, left leg, sequela|Laceration of anterior tibial artery, left leg, sequela +C2864760|T037|PT|S85.142S|ICD10CM|Laceration of anterior tibial artery, left leg, sequela|Laceration of anterior tibial artery, left leg, sequela +C2864761|T037|AB|S85.149|ICD10CM|Laceration of anterior tibial artery, unspecified leg|Laceration of anterior tibial artery, unspecified leg +C2864761|T037|HT|S85.149|ICD10CM|Laceration of anterior tibial artery, unspecified leg|Laceration of anterior tibial artery, unspecified leg +C2864762|T037|AB|S85.149A|ICD10CM|Laceration of anterior tibial artery, unsp leg, init encntr|Laceration of anterior tibial artery, unsp leg, init encntr +C2864762|T037|PT|S85.149A|ICD10CM|Laceration of anterior tibial artery, unspecified leg, initial encounter|Laceration of anterior tibial artery, unspecified leg, initial encounter +C2864763|T037|AB|S85.149D|ICD10CM|Laceration of anterior tibial artery, unsp leg, subs encntr|Laceration of anterior tibial artery, unsp leg, subs encntr +C2864763|T037|PT|S85.149D|ICD10CM|Laceration of anterior tibial artery, unspecified leg, subsequent encounter|Laceration of anterior tibial artery, unspecified leg, subsequent encounter +C2864764|T037|AB|S85.149S|ICD10CM|Laceration of anterior tibial artery, unsp leg, sequela|Laceration of anterior tibial artery, unsp leg, sequela +C2864764|T037|PT|S85.149S|ICD10CM|Laceration of anterior tibial artery, unspecified leg, sequela|Laceration of anterior tibial artery, unspecified leg, sequela +C2864765|T037|AB|S85.15|ICD10CM|Other specified injury of anterior tibial artery|Other specified injury of anterior tibial artery +C2864765|T037|HT|S85.15|ICD10CM|Other specified injury of anterior tibial artery|Other specified injury of anterior tibial artery +C2864766|T037|AB|S85.151|ICD10CM|Other specified injury of anterior tibial artery, right leg|Other specified injury of anterior tibial artery, right leg +C2864766|T037|HT|S85.151|ICD10CM|Other specified injury of anterior tibial artery, right leg|Other specified injury of anterior tibial artery, right leg +C2864767|T037|AB|S85.151A|ICD10CM|Oth injury of anterior tibial artery, right leg, init encntr|Oth injury of anterior tibial artery, right leg, init encntr +C2864767|T037|PT|S85.151A|ICD10CM|Other specified injury of anterior tibial artery, right leg, initial encounter|Other specified injury of anterior tibial artery, right leg, initial encounter +C2864768|T037|AB|S85.151D|ICD10CM|Oth injury of anterior tibial artery, right leg, subs encntr|Oth injury of anterior tibial artery, right leg, subs encntr +C2864768|T037|PT|S85.151D|ICD10CM|Other specified injury of anterior tibial artery, right leg, subsequent encounter|Other specified injury of anterior tibial artery, right leg, subsequent encounter +C2864769|T037|AB|S85.151S|ICD10CM|Oth injury of anterior tibial artery, right leg, sequela|Oth injury of anterior tibial artery, right leg, sequela +C2864769|T037|PT|S85.151S|ICD10CM|Other specified injury of anterior tibial artery, right leg, sequela|Other specified injury of anterior tibial artery, right leg, sequela +C2864770|T037|AB|S85.152|ICD10CM|Other specified injury of anterior tibial artery, left leg|Other specified injury of anterior tibial artery, left leg +C2864770|T037|HT|S85.152|ICD10CM|Other specified injury of anterior tibial artery, left leg|Other specified injury of anterior tibial artery, left leg +C2864771|T037|AB|S85.152A|ICD10CM|Oth injury of anterior tibial artery, left leg, init encntr|Oth injury of anterior tibial artery, left leg, init encntr +C2864771|T037|PT|S85.152A|ICD10CM|Other specified injury of anterior tibial artery, left leg, initial encounter|Other specified injury of anterior tibial artery, left leg, initial encounter +C2864772|T037|AB|S85.152D|ICD10CM|Oth injury of anterior tibial artery, left leg, subs encntr|Oth injury of anterior tibial artery, left leg, subs encntr +C2864772|T037|PT|S85.152D|ICD10CM|Other specified injury of anterior tibial artery, left leg, subsequent encounter|Other specified injury of anterior tibial artery, left leg, subsequent encounter +C2864773|T037|AB|S85.152S|ICD10CM|Oth injury of anterior tibial artery, left leg, sequela|Oth injury of anterior tibial artery, left leg, sequela +C2864773|T037|PT|S85.152S|ICD10CM|Other specified injury of anterior tibial artery, left leg, sequela|Other specified injury of anterior tibial artery, left leg, sequela +C2864774|T037|AB|S85.159|ICD10CM|Oth injury of anterior tibial artery, unspecified leg|Oth injury of anterior tibial artery, unspecified leg +C2864774|T037|HT|S85.159|ICD10CM|Other specified injury of anterior tibial artery, unspecified leg|Other specified injury of anterior tibial artery, unspecified leg +C2864775|T037|AB|S85.159A|ICD10CM|Oth injury of anterior tibial artery, unsp leg, init encntr|Oth injury of anterior tibial artery, unsp leg, init encntr +C2864775|T037|PT|S85.159A|ICD10CM|Other specified injury of anterior tibial artery, unspecified leg, initial encounter|Other specified injury of anterior tibial artery, unspecified leg, initial encounter +C2864776|T037|AB|S85.159D|ICD10CM|Oth injury of anterior tibial artery, unsp leg, subs encntr|Oth injury of anterior tibial artery, unsp leg, subs encntr +C2864776|T037|PT|S85.159D|ICD10CM|Other specified injury of anterior tibial artery, unspecified leg, subsequent encounter|Other specified injury of anterior tibial artery, unspecified leg, subsequent encounter +C2864777|T037|AB|S85.159S|ICD10CM|Oth injury of anterior tibial artery, unsp leg, sequela|Oth injury of anterior tibial artery, unsp leg, sequela +C2864777|T037|PT|S85.159S|ICD10CM|Other specified injury of anterior tibial artery, unspecified leg, sequela|Other specified injury of anterior tibial artery, unspecified leg, sequela +C0160767|T037|AB|S85.16|ICD10CM|Unspecified injury of posterior tibial artery|Unspecified injury of posterior tibial artery +C0160767|T037|HT|S85.16|ICD10CM|Unspecified injury of posterior tibial artery|Unspecified injury of posterior tibial artery +C2864778|T037|AB|S85.161|ICD10CM|Unspecified injury of posterior tibial artery, right leg|Unspecified injury of posterior tibial artery, right leg +C2864778|T037|HT|S85.161|ICD10CM|Unspecified injury of posterior tibial artery, right leg|Unspecified injury of posterior tibial artery, right leg +C2864779|T037|AB|S85.161A|ICD10CM|Unsp injury of posterior tibial artery, right leg, init|Unsp injury of posterior tibial artery, right leg, init +C2864779|T037|PT|S85.161A|ICD10CM|Unspecified injury of posterior tibial artery, right leg, initial encounter|Unspecified injury of posterior tibial artery, right leg, initial encounter +C2864780|T037|AB|S85.161D|ICD10CM|Unsp injury of posterior tibial artery, right leg, subs|Unsp injury of posterior tibial artery, right leg, subs +C2864780|T037|PT|S85.161D|ICD10CM|Unspecified injury of posterior tibial artery, right leg, subsequent encounter|Unspecified injury of posterior tibial artery, right leg, subsequent encounter +C2864781|T037|AB|S85.161S|ICD10CM|Unsp injury of posterior tibial artery, right leg, sequela|Unsp injury of posterior tibial artery, right leg, sequela +C2864781|T037|PT|S85.161S|ICD10CM|Unspecified injury of posterior tibial artery, right leg, sequela|Unspecified injury of posterior tibial artery, right leg, sequela +C2864782|T037|AB|S85.162|ICD10CM|Unspecified injury of posterior tibial artery, left leg|Unspecified injury of posterior tibial artery, left leg +C2864782|T037|HT|S85.162|ICD10CM|Unspecified injury of posterior tibial artery, left leg|Unspecified injury of posterior tibial artery, left leg +C2864783|T037|AB|S85.162A|ICD10CM|Unsp injury of posterior tibial artery, left leg, init|Unsp injury of posterior tibial artery, left leg, init +C2864783|T037|PT|S85.162A|ICD10CM|Unspecified injury of posterior tibial artery, left leg, initial encounter|Unspecified injury of posterior tibial artery, left leg, initial encounter +C2864784|T037|AB|S85.162D|ICD10CM|Unsp injury of posterior tibial artery, left leg, subs|Unsp injury of posterior tibial artery, left leg, subs +C2864784|T037|PT|S85.162D|ICD10CM|Unspecified injury of posterior tibial artery, left leg, subsequent encounter|Unspecified injury of posterior tibial artery, left leg, subsequent encounter +C2864785|T037|AB|S85.162S|ICD10CM|Unsp injury of posterior tibial artery, left leg, sequela|Unsp injury of posterior tibial artery, left leg, sequela +C2864785|T037|PT|S85.162S|ICD10CM|Unspecified injury of posterior tibial artery, left leg, sequela|Unspecified injury of posterior tibial artery, left leg, sequela +C2864786|T037|AB|S85.169|ICD10CM|Unsp injury of posterior tibial artery, unspecified leg|Unsp injury of posterior tibial artery, unspecified leg +C2864786|T037|HT|S85.169|ICD10CM|Unspecified injury of posterior tibial artery, unspecified leg|Unspecified injury of posterior tibial artery, unspecified leg +C2864787|T037|AB|S85.169A|ICD10CM|Unsp injury of posterior tibial artery, unsp leg, init|Unsp injury of posterior tibial artery, unsp leg, init +C2864787|T037|PT|S85.169A|ICD10CM|Unspecified injury of posterior tibial artery, unspecified leg, initial encounter|Unspecified injury of posterior tibial artery, unspecified leg, initial encounter +C2864788|T037|AB|S85.169D|ICD10CM|Unsp injury of posterior tibial artery, unsp leg, subs|Unsp injury of posterior tibial artery, unsp leg, subs +C2864788|T037|PT|S85.169D|ICD10CM|Unspecified injury of posterior tibial artery, unspecified leg, subsequent encounter|Unspecified injury of posterior tibial artery, unspecified leg, subsequent encounter +C2864789|T037|AB|S85.169S|ICD10CM|Unsp injury of posterior tibial artery, unsp leg, sequela|Unsp injury of posterior tibial artery, unsp leg, sequela +C2864789|T037|PT|S85.169S|ICD10CM|Unspecified injury of posterior tibial artery, unspecified leg, sequela|Unspecified injury of posterior tibial artery, unspecified leg, sequela +C2864790|T037|HT|S85.17|ICD10CM|Laceration of posterior tibial artery|Laceration of posterior tibial artery +C2864790|T037|AB|S85.17|ICD10CM|Laceration of posterior tibial artery|Laceration of posterior tibial artery +C2864791|T037|AB|S85.171|ICD10CM|Laceration of posterior tibial artery, right leg|Laceration of posterior tibial artery, right leg +C2864791|T037|HT|S85.171|ICD10CM|Laceration of posterior tibial artery, right leg|Laceration of posterior tibial artery, right leg +C2864792|T037|AB|S85.171A|ICD10CM|Laceration of posterior tibial artery, right leg, init|Laceration of posterior tibial artery, right leg, init +C2864792|T037|PT|S85.171A|ICD10CM|Laceration of posterior tibial artery, right leg, initial encounter|Laceration of posterior tibial artery, right leg, initial encounter +C2864793|T037|AB|S85.171D|ICD10CM|Laceration of posterior tibial artery, right leg, subs|Laceration of posterior tibial artery, right leg, subs +C2864793|T037|PT|S85.171D|ICD10CM|Laceration of posterior tibial artery, right leg, subsequent encounter|Laceration of posterior tibial artery, right leg, subsequent encounter +C2864794|T037|AB|S85.171S|ICD10CM|Laceration of posterior tibial artery, right leg, sequela|Laceration of posterior tibial artery, right leg, sequela +C2864794|T037|PT|S85.171S|ICD10CM|Laceration of posterior tibial artery, right leg, sequela|Laceration of posterior tibial artery, right leg, sequela +C2864795|T037|AB|S85.172|ICD10CM|Laceration of posterior tibial artery, left leg|Laceration of posterior tibial artery, left leg +C2864795|T037|HT|S85.172|ICD10CM|Laceration of posterior tibial artery, left leg|Laceration of posterior tibial artery, left leg +C2864796|T037|AB|S85.172A|ICD10CM|Laceration of posterior tibial artery, left leg, init encntr|Laceration of posterior tibial artery, left leg, init encntr +C2864796|T037|PT|S85.172A|ICD10CM|Laceration of posterior tibial artery, left leg, initial encounter|Laceration of posterior tibial artery, left leg, initial encounter +C2864797|T037|AB|S85.172D|ICD10CM|Laceration of posterior tibial artery, left leg, subs encntr|Laceration of posterior tibial artery, left leg, subs encntr +C2864797|T037|PT|S85.172D|ICD10CM|Laceration of posterior tibial artery, left leg, subsequent encounter|Laceration of posterior tibial artery, left leg, subsequent encounter +C2864798|T037|AB|S85.172S|ICD10CM|Laceration of posterior tibial artery, left leg, sequela|Laceration of posterior tibial artery, left leg, sequela +C2864798|T037|PT|S85.172S|ICD10CM|Laceration of posterior tibial artery, left leg, sequela|Laceration of posterior tibial artery, left leg, sequela +C2864799|T037|AB|S85.179|ICD10CM|Laceration of posterior tibial artery, unspecified leg|Laceration of posterior tibial artery, unspecified leg +C2864799|T037|HT|S85.179|ICD10CM|Laceration of posterior tibial artery, unspecified leg|Laceration of posterior tibial artery, unspecified leg +C2864800|T037|AB|S85.179A|ICD10CM|Laceration of posterior tibial artery, unsp leg, init encntr|Laceration of posterior tibial artery, unsp leg, init encntr +C2864800|T037|PT|S85.179A|ICD10CM|Laceration of posterior tibial artery, unspecified leg, initial encounter|Laceration of posterior tibial artery, unspecified leg, initial encounter +C2864801|T037|AB|S85.179D|ICD10CM|Laceration of posterior tibial artery, unsp leg, subs encntr|Laceration of posterior tibial artery, unsp leg, subs encntr +C2864801|T037|PT|S85.179D|ICD10CM|Laceration of posterior tibial artery, unspecified leg, subsequent encounter|Laceration of posterior tibial artery, unspecified leg, subsequent encounter +C2864802|T037|AB|S85.179S|ICD10CM|Laceration of posterior tibial artery, unsp leg, sequela|Laceration of posterior tibial artery, unsp leg, sequela +C2864802|T037|PT|S85.179S|ICD10CM|Laceration of posterior tibial artery, unspecified leg, sequela|Laceration of posterior tibial artery, unspecified leg, sequela +C2864803|T037|AB|S85.18|ICD10CM|Other specified injury of posterior tibial artery|Other specified injury of posterior tibial artery +C2864803|T037|HT|S85.18|ICD10CM|Other specified injury of posterior tibial artery|Other specified injury of posterior tibial artery +C2864804|T037|AB|S85.181|ICD10CM|Other specified injury of posterior tibial artery, right leg|Other specified injury of posterior tibial artery, right leg +C2864804|T037|HT|S85.181|ICD10CM|Other specified injury of posterior tibial artery, right leg|Other specified injury of posterior tibial artery, right leg +C2864805|T037|AB|S85.181A|ICD10CM|Inj posterior tibial artery, right leg, init encntr|Inj posterior tibial artery, right leg, init encntr +C2864805|T037|PT|S85.181A|ICD10CM|Other specified injury of posterior tibial artery, right leg, initial encounter|Other specified injury of posterior tibial artery, right leg, initial encounter +C2864806|T037|AB|S85.181D|ICD10CM|Inj posterior tibial artery, right leg, subs encntr|Inj posterior tibial artery, right leg, subs encntr +C2864806|T037|PT|S85.181D|ICD10CM|Other specified injury of posterior tibial artery, right leg, subsequent encounter|Other specified injury of posterior tibial artery, right leg, subsequent encounter +C2864807|T037|AB|S85.181S|ICD10CM|Oth injury of posterior tibial artery, right leg, sequela|Oth injury of posterior tibial artery, right leg, sequela +C2864807|T037|PT|S85.181S|ICD10CM|Other specified injury of posterior tibial artery, right leg, sequela|Other specified injury of posterior tibial artery, right leg, sequela +C2864808|T037|AB|S85.182|ICD10CM|Other specified injury of posterior tibial artery, left leg|Other specified injury of posterior tibial artery, left leg +C2864808|T037|HT|S85.182|ICD10CM|Other specified injury of posterior tibial artery, left leg|Other specified injury of posterior tibial artery, left leg +C2864809|T037|AB|S85.182A|ICD10CM|Oth injury of posterior tibial artery, left leg, init encntr|Oth injury of posterior tibial artery, left leg, init encntr +C2864809|T037|PT|S85.182A|ICD10CM|Other specified injury of posterior tibial artery, left leg, initial encounter|Other specified injury of posterior tibial artery, left leg, initial encounter +C2864810|T037|AB|S85.182D|ICD10CM|Oth injury of posterior tibial artery, left leg, subs encntr|Oth injury of posterior tibial artery, left leg, subs encntr +C2864810|T037|PT|S85.182D|ICD10CM|Other specified injury of posterior tibial artery, left leg, subsequent encounter|Other specified injury of posterior tibial artery, left leg, subsequent encounter +C2864811|T037|AB|S85.182S|ICD10CM|Oth injury of posterior tibial artery, left leg, sequela|Oth injury of posterior tibial artery, left leg, sequela +C2864811|T037|PT|S85.182S|ICD10CM|Other specified injury of posterior tibial artery, left leg, sequela|Other specified injury of posterior tibial artery, left leg, sequela +C2864812|T037|AB|S85.189|ICD10CM|Oth injury of posterior tibial artery, unspecified leg|Oth injury of posterior tibial artery, unspecified leg +C2864812|T037|HT|S85.189|ICD10CM|Other specified injury of posterior tibial artery, unspecified leg|Other specified injury of posterior tibial artery, unspecified leg +C2864813|T037|AB|S85.189A|ICD10CM|Oth injury of posterior tibial artery, unsp leg, init encntr|Oth injury of posterior tibial artery, unsp leg, init encntr +C2864813|T037|PT|S85.189A|ICD10CM|Other specified injury of posterior tibial artery, unspecified leg, initial encounter|Other specified injury of posterior tibial artery, unspecified leg, initial encounter +C2864814|T037|AB|S85.189D|ICD10CM|Oth injury of posterior tibial artery, unsp leg, subs encntr|Oth injury of posterior tibial artery, unsp leg, subs encntr +C2864814|T037|PT|S85.189D|ICD10CM|Other specified injury of posterior tibial artery, unspecified leg, subsequent encounter|Other specified injury of posterior tibial artery, unspecified leg, subsequent encounter +C2864815|T037|AB|S85.189S|ICD10CM|Oth injury of posterior tibial artery, unsp leg, sequela|Oth injury of posterior tibial artery, unsp leg, sequela +C2864815|T037|PT|S85.189S|ICD10CM|Other specified injury of posterior tibial artery, unspecified leg, sequela|Other specified injury of posterior tibial artery, unspecified leg, sequela +C0452067|T037|PT|S85.2|ICD10|Injury of peroneal artery|Injury of peroneal artery +C0452067|T037|HT|S85.2|ICD10CM|Injury of peroneal artery|Injury of peroneal artery +C0452067|T037|AB|S85.2|ICD10CM|Injury of peroneal artery|Injury of peroneal artery +C2864816|T037|AB|S85.20|ICD10CM|Unspecified injury of peroneal artery|Unspecified injury of peroneal artery +C2864816|T037|HT|S85.20|ICD10CM|Unspecified injury of peroneal artery|Unspecified injury of peroneal artery +C2864817|T037|AB|S85.201|ICD10CM|Unspecified injury of peroneal artery, right leg|Unspecified injury of peroneal artery, right leg +C2864817|T037|HT|S85.201|ICD10CM|Unspecified injury of peroneal artery, right leg|Unspecified injury of peroneal artery, right leg +C2864818|T037|AB|S85.201A|ICD10CM|Unsp injury of peroneal artery, right leg, init encntr|Unsp injury of peroneal artery, right leg, init encntr +C2864818|T037|PT|S85.201A|ICD10CM|Unspecified injury of peroneal artery, right leg, initial encounter|Unspecified injury of peroneal artery, right leg, initial encounter +C2864819|T037|AB|S85.201D|ICD10CM|Unsp injury of peroneal artery, right leg, subs encntr|Unsp injury of peroneal artery, right leg, subs encntr +C2864819|T037|PT|S85.201D|ICD10CM|Unspecified injury of peroneal artery, right leg, subsequent encounter|Unspecified injury of peroneal artery, right leg, subsequent encounter +C2864820|T037|AB|S85.201S|ICD10CM|Unspecified injury of peroneal artery, right leg, sequela|Unspecified injury of peroneal artery, right leg, sequela +C2864820|T037|PT|S85.201S|ICD10CM|Unspecified injury of peroneal artery, right leg, sequela|Unspecified injury of peroneal artery, right leg, sequela +C2864821|T037|AB|S85.202|ICD10CM|Unspecified injury of peroneal artery, left leg|Unspecified injury of peroneal artery, left leg +C2864821|T037|HT|S85.202|ICD10CM|Unspecified injury of peroneal artery, left leg|Unspecified injury of peroneal artery, left leg +C2864822|T037|AB|S85.202A|ICD10CM|Unspecified injury of peroneal artery, left leg, init encntr|Unspecified injury of peroneal artery, left leg, init encntr +C2864822|T037|PT|S85.202A|ICD10CM|Unspecified injury of peroneal artery, left leg, initial encounter|Unspecified injury of peroneal artery, left leg, initial encounter +C2864823|T037|AB|S85.202D|ICD10CM|Unspecified injury of peroneal artery, left leg, subs encntr|Unspecified injury of peroneal artery, left leg, subs encntr +C2864823|T037|PT|S85.202D|ICD10CM|Unspecified injury of peroneal artery, left leg, subsequent encounter|Unspecified injury of peroneal artery, left leg, subsequent encounter +C2864824|T037|AB|S85.202S|ICD10CM|Unspecified injury of peroneal artery, left leg, sequela|Unspecified injury of peroneal artery, left leg, sequela +C2864824|T037|PT|S85.202S|ICD10CM|Unspecified injury of peroneal artery, left leg, sequela|Unspecified injury of peroneal artery, left leg, sequela +C2864825|T037|AB|S85.209|ICD10CM|Unspecified injury of peroneal artery, unspecified leg|Unspecified injury of peroneal artery, unspecified leg +C2864825|T037|HT|S85.209|ICD10CM|Unspecified injury of peroneal artery, unspecified leg|Unspecified injury of peroneal artery, unspecified leg +C2864826|T037|AB|S85.209A|ICD10CM|Unsp injury of peroneal artery, unspecified leg, init encntr|Unsp injury of peroneal artery, unspecified leg, init encntr +C2864826|T037|PT|S85.209A|ICD10CM|Unspecified injury of peroneal artery, unspecified leg, initial encounter|Unspecified injury of peroneal artery, unspecified leg, initial encounter +C2864827|T037|AB|S85.209D|ICD10CM|Unsp injury of peroneal artery, unspecified leg, subs encntr|Unsp injury of peroneal artery, unspecified leg, subs encntr +C2864827|T037|PT|S85.209D|ICD10CM|Unspecified injury of peroneal artery, unspecified leg, subsequent encounter|Unspecified injury of peroneal artery, unspecified leg, subsequent encounter +C2864828|T037|AB|S85.209S|ICD10CM|Unsp injury of peroneal artery, unspecified leg, sequela|Unsp injury of peroneal artery, unspecified leg, sequela +C2864828|T037|PT|S85.209S|ICD10CM|Unspecified injury of peroneal artery, unspecified leg, sequela|Unspecified injury of peroneal artery, unspecified leg, sequela +C2864829|T037|HT|S85.21|ICD10CM|Laceration of peroneal artery|Laceration of peroneal artery +C2864829|T037|AB|S85.21|ICD10CM|Laceration of peroneal artery|Laceration of peroneal artery +C2864830|T037|AB|S85.211|ICD10CM|Laceration of peroneal artery, right leg|Laceration of peroneal artery, right leg +C2864830|T037|HT|S85.211|ICD10CM|Laceration of peroneal artery, right leg|Laceration of peroneal artery, right leg +C2864831|T037|AB|S85.211A|ICD10CM|Laceration of peroneal artery, right leg, initial encounter|Laceration of peroneal artery, right leg, initial encounter +C2864831|T037|PT|S85.211A|ICD10CM|Laceration of peroneal artery, right leg, initial encounter|Laceration of peroneal artery, right leg, initial encounter +C2864832|T037|AB|S85.211D|ICD10CM|Laceration of peroneal artery, right leg, subs encntr|Laceration of peroneal artery, right leg, subs encntr +C2864832|T037|PT|S85.211D|ICD10CM|Laceration of peroneal artery, right leg, subsequent encounter|Laceration of peroneal artery, right leg, subsequent encounter +C2864833|T037|AB|S85.211S|ICD10CM|Laceration of peroneal artery, right leg, sequela|Laceration of peroneal artery, right leg, sequela +C2864833|T037|PT|S85.211S|ICD10CM|Laceration of peroneal artery, right leg, sequela|Laceration of peroneal artery, right leg, sequela +C2864834|T037|AB|S85.212|ICD10CM|Laceration of peroneal artery, left leg|Laceration of peroneal artery, left leg +C2864834|T037|HT|S85.212|ICD10CM|Laceration of peroneal artery, left leg|Laceration of peroneal artery, left leg +C2864835|T037|AB|S85.212A|ICD10CM|Laceration of peroneal artery, left leg, initial encounter|Laceration of peroneal artery, left leg, initial encounter +C2864835|T037|PT|S85.212A|ICD10CM|Laceration of peroneal artery, left leg, initial encounter|Laceration of peroneal artery, left leg, initial encounter +C2864836|T037|AB|S85.212D|ICD10CM|Laceration of peroneal artery, left leg, subs encntr|Laceration of peroneal artery, left leg, subs encntr +C2864836|T037|PT|S85.212D|ICD10CM|Laceration of peroneal artery, left leg, subsequent encounter|Laceration of peroneal artery, left leg, subsequent encounter +C2864837|T037|AB|S85.212S|ICD10CM|Laceration of peroneal artery, left leg, sequela|Laceration of peroneal artery, left leg, sequela +C2864837|T037|PT|S85.212S|ICD10CM|Laceration of peroneal artery, left leg, sequela|Laceration of peroneal artery, left leg, sequela +C2864838|T037|AB|S85.219|ICD10CM|Laceration of peroneal artery, unspecified leg|Laceration of peroneal artery, unspecified leg +C2864838|T037|HT|S85.219|ICD10CM|Laceration of peroneal artery, unspecified leg|Laceration of peroneal artery, unspecified leg +C2864839|T037|AB|S85.219A|ICD10CM|Laceration of peroneal artery, unspecified leg, init encntr|Laceration of peroneal artery, unspecified leg, init encntr +C2864839|T037|PT|S85.219A|ICD10CM|Laceration of peroneal artery, unspecified leg, initial encounter|Laceration of peroneal artery, unspecified leg, initial encounter +C2864840|T037|AB|S85.219D|ICD10CM|Laceration of peroneal artery, unspecified leg, subs encntr|Laceration of peroneal artery, unspecified leg, subs encntr +C2864840|T037|PT|S85.219D|ICD10CM|Laceration of peroneal artery, unspecified leg, subsequent encounter|Laceration of peroneal artery, unspecified leg, subsequent encounter +C2864841|T037|AB|S85.219S|ICD10CM|Laceration of peroneal artery, unspecified leg, sequela|Laceration of peroneal artery, unspecified leg, sequela +C2864841|T037|PT|S85.219S|ICD10CM|Laceration of peroneal artery, unspecified leg, sequela|Laceration of peroneal artery, unspecified leg, sequela +C2864842|T037|AB|S85.29|ICD10CM|Other specified injury of peroneal artery|Other specified injury of peroneal artery +C2864842|T037|HT|S85.29|ICD10CM|Other specified injury of peroneal artery|Other specified injury of peroneal artery +C2864843|T037|AB|S85.291|ICD10CM|Other specified injury of peroneal artery, right leg|Other specified injury of peroneal artery, right leg +C2864843|T037|HT|S85.291|ICD10CM|Other specified injury of peroneal artery, right leg|Other specified injury of peroneal artery, right leg +C2864844|T037|AB|S85.291A|ICD10CM|Oth injury of peroneal artery, right leg, init encntr|Oth injury of peroneal artery, right leg, init encntr +C2864844|T037|PT|S85.291A|ICD10CM|Other specified injury of peroneal artery, right leg, initial encounter|Other specified injury of peroneal artery, right leg, initial encounter +C2864845|T037|AB|S85.291D|ICD10CM|Oth injury of peroneal artery, right leg, subs encntr|Oth injury of peroneal artery, right leg, subs encntr +C2864845|T037|PT|S85.291D|ICD10CM|Other specified injury of peroneal artery, right leg, subsequent encounter|Other specified injury of peroneal artery, right leg, subsequent encounter +C2864846|T037|AB|S85.291S|ICD10CM|Oth injury of peroneal artery, right leg, sequela|Oth injury of peroneal artery, right leg, sequela +C2864846|T037|PT|S85.291S|ICD10CM|Other specified injury of peroneal artery, right leg, sequela|Other specified injury of peroneal artery, right leg, sequela +C2864847|T037|AB|S85.292|ICD10CM|Other specified injury of peroneal artery, left leg|Other specified injury of peroneal artery, left leg +C2864847|T037|HT|S85.292|ICD10CM|Other specified injury of peroneal artery, left leg|Other specified injury of peroneal artery, left leg +C2864848|T037|AB|S85.292A|ICD10CM|Oth injury of peroneal artery, left leg, init encntr|Oth injury of peroneal artery, left leg, init encntr +C2864848|T037|PT|S85.292A|ICD10CM|Other specified injury of peroneal artery, left leg, initial encounter|Other specified injury of peroneal artery, left leg, initial encounter +C2864849|T037|AB|S85.292D|ICD10CM|Oth injury of peroneal artery, left leg, subs encntr|Oth injury of peroneal artery, left leg, subs encntr +C2864849|T037|PT|S85.292D|ICD10CM|Other specified injury of peroneal artery, left leg, subsequent encounter|Other specified injury of peroneal artery, left leg, subsequent encounter +C2864850|T037|AB|S85.292S|ICD10CM|Other specified injury of peroneal artery, left leg, sequela|Other specified injury of peroneal artery, left leg, sequela +C2864850|T037|PT|S85.292S|ICD10CM|Other specified injury of peroneal artery, left leg, sequela|Other specified injury of peroneal artery, left leg, sequela +C2864851|T037|AB|S85.299|ICD10CM|Other specified injury of peroneal artery, unspecified leg|Other specified injury of peroneal artery, unspecified leg +C2864851|T037|HT|S85.299|ICD10CM|Other specified injury of peroneal artery, unspecified leg|Other specified injury of peroneal artery, unspecified leg +C2864852|T037|AB|S85.299A|ICD10CM|Oth injury of peroneal artery, unspecified leg, init encntr|Oth injury of peroneal artery, unspecified leg, init encntr +C2864852|T037|PT|S85.299A|ICD10CM|Other specified injury of peroneal artery, unspecified leg, initial encounter|Other specified injury of peroneal artery, unspecified leg, initial encounter +C2864853|T037|AB|S85.299D|ICD10CM|Oth injury of peroneal artery, unspecified leg, subs encntr|Oth injury of peroneal artery, unspecified leg, subs encntr +C2864853|T037|PT|S85.299D|ICD10CM|Other specified injury of peroneal artery, unspecified leg, subsequent encounter|Other specified injury of peroneal artery, unspecified leg, subsequent encounter +C2864854|T037|AB|S85.299S|ICD10CM|Oth injury of peroneal artery, unspecified leg, sequela|Oth injury of peroneal artery, unspecified leg, sequela +C2864854|T037|PT|S85.299S|ICD10CM|Other specified injury of peroneal artery, unspecified leg, sequela|Other specified injury of peroneal artery, unspecified leg, sequela +C0452068|T037|HT|S85.3|ICD10CM|Injury of greater saphenous vein at lower leg level|Injury of greater saphenous vein at lower leg level +C0452068|T037|AB|S85.3|ICD10CM|Injury of greater saphenous vein at lower leg level|Injury of greater saphenous vein at lower leg level +C0452068|T037|PT|S85.3|ICD10|Injury of greater saphenous vein at lower leg level|Injury of greater saphenous vein at lower leg level +C0347714|T037|ET|S85.3|ICD10CM|Injury of greater saphenous vein NOS|Injury of greater saphenous vein NOS +C0160758|T037|ET|S85.3|ICD10CM|Injury of saphenous vein NOS|Injury of saphenous vein NOS +C2864855|T037|AB|S85.30|ICD10CM|Unsp injury of greater saphenous vein at lower leg level|Unsp injury of greater saphenous vein at lower leg level +C2864855|T037|HT|S85.30|ICD10CM|Unspecified injury of greater saphenous vein at lower leg level|Unspecified injury of greater saphenous vein at lower leg level +C2864856|T037|AB|S85.301|ICD10CM|Unsp injury of great saphenous at lower leg level, right leg|Unsp injury of great saphenous at lower leg level, right leg +C2864856|T037|HT|S85.301|ICD10CM|Unspecified injury of greater saphenous vein at lower leg level, right leg|Unspecified injury of greater saphenous vein at lower leg level, right leg +C2864857|T037|AB|S85.301A|ICD10CM|Unsp inj great saphenous at lower leg level, right leg, init|Unsp inj great saphenous at lower leg level, right leg, init +C2864857|T037|PT|S85.301A|ICD10CM|Unspecified injury of greater saphenous vein at lower leg level, right leg, initial encounter|Unspecified injury of greater saphenous vein at lower leg level, right leg, initial encounter +C2864858|T037|AB|S85.301D|ICD10CM|Unsp inj great saphenous at lower leg level, right leg, subs|Unsp inj great saphenous at lower leg level, right leg, subs +C2864858|T037|PT|S85.301D|ICD10CM|Unspecified injury of greater saphenous vein at lower leg level, right leg, subsequent encounter|Unspecified injury of greater saphenous vein at lower leg level, right leg, subsequent encounter +C2864859|T037|AB|S85.301S|ICD10CM|Unsp inj great saph at low leg level, right leg, sequela|Unsp inj great saph at low leg level, right leg, sequela +C2864859|T037|PT|S85.301S|ICD10CM|Unspecified injury of greater saphenous vein at lower leg level, right leg, sequela|Unspecified injury of greater saphenous vein at lower leg level, right leg, sequela +C2864860|T037|AB|S85.302|ICD10CM|Unsp injury of great saphenous at lower leg level, left leg|Unsp injury of great saphenous at lower leg level, left leg +C2864860|T037|HT|S85.302|ICD10CM|Unspecified injury of greater saphenous vein at lower leg level, left leg|Unspecified injury of greater saphenous vein at lower leg level, left leg +C2864861|T037|AB|S85.302A|ICD10CM|Unsp inj great saphenous at lower leg level, left leg, init|Unsp inj great saphenous at lower leg level, left leg, init +C2864861|T037|PT|S85.302A|ICD10CM|Unspecified injury of greater saphenous vein at lower leg level, left leg, initial encounter|Unspecified injury of greater saphenous vein at lower leg level, left leg, initial encounter +C2864862|T037|AB|S85.302D|ICD10CM|Unsp inj great saphenous at lower leg level, left leg, subs|Unsp inj great saphenous at lower leg level, left leg, subs +C2864862|T037|PT|S85.302D|ICD10CM|Unspecified injury of greater saphenous vein at lower leg level, left leg, subsequent encounter|Unspecified injury of greater saphenous vein at lower leg level, left leg, subsequent encounter +C2864863|T037|AB|S85.302S|ICD10CM|Unsp inj great saphenous at low leg level, left leg, sequela|Unsp inj great saphenous at low leg level, left leg, sequela +C2864863|T037|PT|S85.302S|ICD10CM|Unspecified injury of greater saphenous vein at lower leg level, left leg, sequela|Unspecified injury of greater saphenous vein at lower leg level, left leg, sequela +C2864864|T037|AB|S85.309|ICD10CM|Unsp injury of great saphenous at lower leg level, unsp leg|Unsp injury of great saphenous at lower leg level, unsp leg +C2864864|T037|HT|S85.309|ICD10CM|Unspecified injury of greater saphenous vein at lower leg level, unspecified leg|Unspecified injury of greater saphenous vein at lower leg level, unspecified leg +C2864865|T037|AB|S85.309A|ICD10CM|Unsp inj great saphenous at lower leg level, unsp leg, init|Unsp inj great saphenous at lower leg level, unsp leg, init +C2864865|T037|PT|S85.309A|ICD10CM|Unspecified injury of greater saphenous vein at lower leg level, unspecified leg, initial encounter|Unspecified injury of greater saphenous vein at lower leg level, unspecified leg, initial encounter +C2864866|T037|AB|S85.309D|ICD10CM|Unsp inj great saphenous at lower leg level, unsp leg, subs|Unsp inj great saphenous at lower leg level, unsp leg, subs +C2864867|T037|AB|S85.309S|ICD10CM|Unsp inj great saphenous at low leg level, unsp leg, sequela|Unsp inj great saphenous at low leg level, unsp leg, sequela +C2864867|T037|PT|S85.309S|ICD10CM|Unspecified injury of greater saphenous vein at lower leg level, unspecified leg, sequela|Unspecified injury of greater saphenous vein at lower leg level, unspecified leg, sequela +C2864868|T037|AB|S85.31|ICD10CM|Laceration of greater saphenous vein at lower leg level|Laceration of greater saphenous vein at lower leg level +C2864868|T037|HT|S85.31|ICD10CM|Laceration of greater saphenous vein at lower leg level|Laceration of greater saphenous vein at lower leg level +C2864869|T037|AB|S85.311|ICD10CM|Laceration of great saphenous at lower leg level, right leg|Laceration of great saphenous at lower leg level, right leg +C2864869|T037|HT|S85.311|ICD10CM|Laceration of greater saphenous vein at lower leg level, right leg|Laceration of greater saphenous vein at lower leg level, right leg +C2864870|T037|AB|S85.311A|ICD10CM|Lacerat great saphenous at lower leg level, right leg, init|Lacerat great saphenous at lower leg level, right leg, init +C2864870|T037|PT|S85.311A|ICD10CM|Laceration of greater saphenous vein at lower leg level, right leg, initial encounter|Laceration of greater saphenous vein at lower leg level, right leg, initial encounter +C2864871|T037|AB|S85.311D|ICD10CM|Lacerat great saphenous at lower leg level, right leg, subs|Lacerat great saphenous at lower leg level, right leg, subs +C2864871|T037|PT|S85.311D|ICD10CM|Laceration of greater saphenous vein at lower leg level, right leg, subsequent encounter|Laceration of greater saphenous vein at lower leg level, right leg, subsequent encounter +C2864872|T037|AB|S85.311S|ICD10CM|Lacerat great saphenous at low leg level, right leg, sequela|Lacerat great saphenous at low leg level, right leg, sequela +C2864872|T037|PT|S85.311S|ICD10CM|Laceration of greater saphenous vein at lower leg level, right leg, sequela|Laceration of greater saphenous vein at lower leg level, right leg, sequela +C2864873|T037|AB|S85.312|ICD10CM|Laceration of great saphenous at lower leg level, left leg|Laceration of great saphenous at lower leg level, left leg +C2864873|T037|HT|S85.312|ICD10CM|Laceration of greater saphenous vein at lower leg level, left leg|Laceration of greater saphenous vein at lower leg level, left leg +C2864874|T037|AB|S85.312A|ICD10CM|Lacerat great saphenous at lower leg level, left leg, init|Lacerat great saphenous at lower leg level, left leg, init +C2864874|T037|PT|S85.312A|ICD10CM|Laceration of greater saphenous vein at lower leg level, left leg, initial encounter|Laceration of greater saphenous vein at lower leg level, left leg, initial encounter +C2864875|T037|AB|S85.312D|ICD10CM|Lacerat great saphenous at lower leg level, left leg, subs|Lacerat great saphenous at lower leg level, left leg, subs +C2864875|T037|PT|S85.312D|ICD10CM|Laceration of greater saphenous vein at lower leg level, left leg, subsequent encounter|Laceration of greater saphenous vein at lower leg level, left leg, subsequent encounter +C2864876|T037|AB|S85.312S|ICD10CM|Lacerat great saphenous at low leg level, left leg, sequela|Lacerat great saphenous at low leg level, left leg, sequela +C2864876|T037|PT|S85.312S|ICD10CM|Laceration of greater saphenous vein at lower leg level, left leg, sequela|Laceration of greater saphenous vein at lower leg level, left leg, sequela +C2864877|T037|AB|S85.319|ICD10CM|Laceration of great saphenous at lower leg level, unsp leg|Laceration of great saphenous at lower leg level, unsp leg +C2864877|T037|HT|S85.319|ICD10CM|Laceration of greater saphenous vein at lower leg level, unspecified leg|Laceration of greater saphenous vein at lower leg level, unspecified leg +C2864878|T037|AB|S85.319A|ICD10CM|Lacerat great saphenous at lower leg level, unsp leg, init|Lacerat great saphenous at lower leg level, unsp leg, init +C2864878|T037|PT|S85.319A|ICD10CM|Laceration of greater saphenous vein at lower leg level, unspecified leg, initial encounter|Laceration of greater saphenous vein at lower leg level, unspecified leg, initial encounter +C2864879|T037|AB|S85.319D|ICD10CM|Lacerat great saphenous at lower leg level, unsp leg, subs|Lacerat great saphenous at lower leg level, unsp leg, subs +C2864879|T037|PT|S85.319D|ICD10CM|Laceration of greater saphenous vein at lower leg level, unspecified leg, subsequent encounter|Laceration of greater saphenous vein at lower leg level, unspecified leg, subsequent encounter +C2864880|T037|AB|S85.319S|ICD10CM|Lacerat great saphenous at low leg level, unsp leg, sequela|Lacerat great saphenous at low leg level, unsp leg, sequela +C2864880|T037|PT|S85.319S|ICD10CM|Laceration of greater saphenous vein at lower leg level, unspecified leg, sequela|Laceration of greater saphenous vein at lower leg level, unspecified leg, sequela +C2864881|T037|AB|S85.39|ICD10CM|Oth injury of greater saphenous vein at lower leg level|Oth injury of greater saphenous vein at lower leg level +C2864881|T037|HT|S85.39|ICD10CM|Other specified injury of greater saphenous vein at lower leg level|Other specified injury of greater saphenous vein at lower leg level +C2864882|T037|AB|S85.391|ICD10CM|Inj greater saphenous vein at lower leg level, right leg|Inj greater saphenous vein at lower leg level, right leg +C2864882|T037|HT|S85.391|ICD10CM|Other specified injury of greater saphenous vein at lower leg level, right leg|Other specified injury of greater saphenous vein at lower leg level, right leg +C2864883|T037|AB|S85.391A|ICD10CM|Inj great saphenous at lower leg level, right leg, init|Inj great saphenous at lower leg level, right leg, init +C2864883|T037|PT|S85.391A|ICD10CM|Other specified injury of greater saphenous vein at lower leg level, right leg, initial encounter|Other specified injury of greater saphenous vein at lower leg level, right leg, initial encounter +C2864884|T037|AB|S85.391D|ICD10CM|Inj great saphenous at lower leg level, right leg, subs|Inj great saphenous at lower leg level, right leg, subs +C2864884|T037|PT|S85.391D|ICD10CM|Other specified injury of greater saphenous vein at lower leg level, right leg, subsequent encounter|Other specified injury of greater saphenous vein at lower leg level, right leg, subsequent encounter +C2864885|T037|AB|S85.391S|ICD10CM|Inj great saphenous at lower leg level, right leg, sequela|Inj great saphenous at lower leg level, right leg, sequela +C2864885|T037|PT|S85.391S|ICD10CM|Other specified injury of greater saphenous vein at lower leg level, right leg, sequela|Other specified injury of greater saphenous vein at lower leg level, right leg, sequela +C2864886|T037|AB|S85.392|ICD10CM|Inj greater saphenous vein at lower leg level, left leg|Inj greater saphenous vein at lower leg level, left leg +C2864886|T037|HT|S85.392|ICD10CM|Other specified injury of greater saphenous vein at lower leg level, left leg|Other specified injury of greater saphenous vein at lower leg level, left leg +C2864887|T037|AB|S85.392A|ICD10CM|Inj great saphenous at lower leg level, left leg, init|Inj great saphenous at lower leg level, left leg, init +C2864887|T037|PT|S85.392A|ICD10CM|Other specified injury of greater saphenous vein at lower leg level, left leg, initial encounter|Other specified injury of greater saphenous vein at lower leg level, left leg, initial encounter +C2864888|T037|AB|S85.392D|ICD10CM|Inj great saphenous at lower leg level, left leg, subs|Inj great saphenous at lower leg level, left leg, subs +C2864888|T037|PT|S85.392D|ICD10CM|Other specified injury of greater saphenous vein at lower leg level, left leg, subsequent encounter|Other specified injury of greater saphenous vein at lower leg level, left leg, subsequent encounter +C2864889|T037|AB|S85.392S|ICD10CM|Inj great saphenous at lower leg level, left leg, sequela|Inj great saphenous at lower leg level, left leg, sequela +C2864889|T037|PT|S85.392S|ICD10CM|Other specified injury of greater saphenous vein at lower leg level, left leg, sequela|Other specified injury of greater saphenous vein at lower leg level, left leg, sequela +C2864890|T037|AB|S85.399|ICD10CM|Inj greater saphenous vein at lower leg level, unsp leg|Inj greater saphenous vein at lower leg level, unsp leg +C2864890|T037|HT|S85.399|ICD10CM|Other specified injury of greater saphenous vein at lower leg level, unspecified leg|Other specified injury of greater saphenous vein at lower leg level, unspecified leg +C2864891|T037|AB|S85.399A|ICD10CM|Inj great saphenous at lower leg level, unsp leg, init|Inj great saphenous at lower leg level, unsp leg, init +C2864892|T037|AB|S85.399D|ICD10CM|Inj great saphenous at lower leg level, unsp leg, subs|Inj great saphenous at lower leg level, unsp leg, subs +C2864893|T037|AB|S85.399S|ICD10CM|Inj great saphenous at lower leg level, unsp leg, sequela|Inj great saphenous at lower leg level, unsp leg, sequela +C2864893|T037|PT|S85.399S|ICD10CM|Other specified injury of greater saphenous vein at lower leg level, unspecified leg, sequela|Other specified injury of greater saphenous vein at lower leg level, unspecified leg, sequela +C0452069|T037|HT|S85.4|ICD10CM|Injury of lesser saphenous vein at lower leg level|Injury of lesser saphenous vein at lower leg level +C0452069|T037|AB|S85.4|ICD10CM|Injury of lesser saphenous vein at lower leg level|Injury of lesser saphenous vein at lower leg level +C0452069|T037|PT|S85.4|ICD10|Injury of lesser saphenous vein at lower leg level|Injury of lesser saphenous vein at lower leg level +C2864894|T037|AB|S85.40|ICD10CM|Unsp injury of lesser saphenous vein at lower leg level|Unsp injury of lesser saphenous vein at lower leg level +C2864894|T037|HT|S85.40|ICD10CM|Unspecified injury of lesser saphenous vein at lower leg level|Unspecified injury of lesser saphenous vein at lower leg level +C2864895|T037|AB|S85.401|ICD10CM|Unsp injury of less saphenous at lower leg level, right leg|Unsp injury of less saphenous at lower leg level, right leg +C2864895|T037|HT|S85.401|ICD10CM|Unspecified injury of lesser saphenous vein at lower leg level, right leg|Unspecified injury of lesser saphenous vein at lower leg level, right leg +C2864896|T037|AB|S85.401A|ICD10CM|Unsp inj less saphenous at lower leg level, right leg, init|Unsp inj less saphenous at lower leg level, right leg, init +C2864896|T037|PT|S85.401A|ICD10CM|Unspecified injury of lesser saphenous vein at lower leg level, right leg, initial encounter|Unspecified injury of lesser saphenous vein at lower leg level, right leg, initial encounter +C2864897|T037|AB|S85.401D|ICD10CM|Unsp inj less saphenous at lower leg level, right leg, subs|Unsp inj less saphenous at lower leg level, right leg, subs +C2864897|T037|PT|S85.401D|ICD10CM|Unspecified injury of lesser saphenous vein at lower leg level, right leg, subsequent encounter|Unspecified injury of lesser saphenous vein at lower leg level, right leg, subsequent encounter +C2864898|T037|AB|S85.401S|ICD10CM|Unsp inj less saphenous at low leg level, right leg, sequela|Unsp inj less saphenous at low leg level, right leg, sequela +C2864898|T037|PT|S85.401S|ICD10CM|Unspecified injury of lesser saphenous vein at lower leg level, right leg, sequela|Unspecified injury of lesser saphenous vein at lower leg level, right leg, sequela +C2864899|T037|AB|S85.402|ICD10CM|Unsp injury of less saphenous at lower leg level, left leg|Unsp injury of less saphenous at lower leg level, left leg +C2864899|T037|HT|S85.402|ICD10CM|Unspecified injury of lesser saphenous vein at lower leg level, left leg|Unspecified injury of lesser saphenous vein at lower leg level, left leg +C2864900|T037|AB|S85.402A|ICD10CM|Unsp inj less saphenous at lower leg level, left leg, init|Unsp inj less saphenous at lower leg level, left leg, init +C2864900|T037|PT|S85.402A|ICD10CM|Unspecified injury of lesser saphenous vein at lower leg level, left leg, initial encounter|Unspecified injury of lesser saphenous vein at lower leg level, left leg, initial encounter +C2864901|T037|AB|S85.402D|ICD10CM|Unsp inj less saphenous at lower leg level, left leg, subs|Unsp inj less saphenous at lower leg level, left leg, subs +C2864901|T037|PT|S85.402D|ICD10CM|Unspecified injury of lesser saphenous vein at lower leg level, left leg, subsequent encounter|Unspecified injury of lesser saphenous vein at lower leg level, left leg, subsequent encounter +C2864902|T037|AB|S85.402S|ICD10CM|Unsp inj less saphenous at low leg level, left leg, sequela|Unsp inj less saphenous at low leg level, left leg, sequela +C2864902|T037|PT|S85.402S|ICD10CM|Unspecified injury of lesser saphenous vein at lower leg level, left leg, sequela|Unspecified injury of lesser saphenous vein at lower leg level, left leg, sequela +C2864903|T037|AB|S85.409|ICD10CM|Unsp injury of less saphenous at lower leg level, unsp leg|Unsp injury of less saphenous at lower leg level, unsp leg +C2864903|T037|HT|S85.409|ICD10CM|Unspecified injury of lesser saphenous vein at lower leg level, unspecified leg|Unspecified injury of lesser saphenous vein at lower leg level, unspecified leg +C2864904|T037|AB|S85.409A|ICD10CM|Unsp inj less saphenous at lower leg level, unsp leg, init|Unsp inj less saphenous at lower leg level, unsp leg, init +C2864904|T037|PT|S85.409A|ICD10CM|Unspecified injury of lesser saphenous vein at lower leg level, unspecified leg, initial encounter|Unspecified injury of lesser saphenous vein at lower leg level, unspecified leg, initial encounter +C2864905|T037|AB|S85.409D|ICD10CM|Unsp inj less saphenous at lower leg level, unsp leg, subs|Unsp inj less saphenous at lower leg level, unsp leg, subs +C2864906|T037|AB|S85.409S|ICD10CM|Unsp inj less saphenous at low leg level, unsp leg, sequela|Unsp inj less saphenous at low leg level, unsp leg, sequela +C2864906|T037|PT|S85.409S|ICD10CM|Unspecified injury of lesser saphenous vein at lower leg level, unspecified leg, sequela|Unspecified injury of lesser saphenous vein at lower leg level, unspecified leg, sequela +C2864907|T037|AB|S85.41|ICD10CM|Laceration of lesser saphenous vein at lower leg level|Laceration of lesser saphenous vein at lower leg level +C2864907|T037|HT|S85.41|ICD10CM|Laceration of lesser saphenous vein at lower leg level|Laceration of lesser saphenous vein at lower leg level +C2864908|T037|AB|S85.411|ICD10CM|Laceration of less saphenous at lower leg level, right leg|Laceration of less saphenous at lower leg level, right leg +C2864908|T037|HT|S85.411|ICD10CM|Laceration of lesser saphenous vein at lower leg level, right leg|Laceration of lesser saphenous vein at lower leg level, right leg +C2864909|T037|AB|S85.411A|ICD10CM|Lacerat less saphenous at lower leg level, right leg, init|Lacerat less saphenous at lower leg level, right leg, init +C2864909|T037|PT|S85.411A|ICD10CM|Laceration of lesser saphenous vein at lower leg level, right leg, initial encounter|Laceration of lesser saphenous vein at lower leg level, right leg, initial encounter +C2864910|T037|AB|S85.411D|ICD10CM|Lacerat less saphenous at lower leg level, right leg, subs|Lacerat less saphenous at lower leg level, right leg, subs +C2864910|T037|PT|S85.411D|ICD10CM|Laceration of lesser saphenous vein at lower leg level, right leg, subsequent encounter|Laceration of lesser saphenous vein at lower leg level, right leg, subsequent encounter +C2864911|T037|AB|S85.411S|ICD10CM|Lacerat less saphenous at low leg level, right leg, sequela|Lacerat less saphenous at low leg level, right leg, sequela +C2864911|T037|PT|S85.411S|ICD10CM|Laceration of lesser saphenous vein at lower leg level, right leg, sequela|Laceration of lesser saphenous vein at lower leg level, right leg, sequela +C2864912|T037|AB|S85.412|ICD10CM|Laceration of less saphenous at lower leg level, left leg|Laceration of less saphenous at lower leg level, left leg +C2864912|T037|HT|S85.412|ICD10CM|Laceration of lesser saphenous vein at lower leg level, left leg|Laceration of lesser saphenous vein at lower leg level, left leg +C2864913|T037|AB|S85.412A|ICD10CM|Lacerat less saphenous at lower leg level, left leg, init|Lacerat less saphenous at lower leg level, left leg, init +C2864913|T037|PT|S85.412A|ICD10CM|Laceration of lesser saphenous vein at lower leg level, left leg, initial encounter|Laceration of lesser saphenous vein at lower leg level, left leg, initial encounter +C2864914|T037|AB|S85.412D|ICD10CM|Lacerat less saphenous at lower leg level, left leg, subs|Lacerat less saphenous at lower leg level, left leg, subs +C2864914|T037|PT|S85.412D|ICD10CM|Laceration of lesser saphenous vein at lower leg level, left leg, subsequent encounter|Laceration of lesser saphenous vein at lower leg level, left leg, subsequent encounter +C2864915|T037|AB|S85.412S|ICD10CM|Lacerat less saphenous at lower leg level, left leg, sequela|Lacerat less saphenous at lower leg level, left leg, sequela +C2864915|T037|PT|S85.412S|ICD10CM|Laceration of lesser saphenous vein at lower leg level, left leg, sequela|Laceration of lesser saphenous vein at lower leg level, left leg, sequela +C2864916|T037|AB|S85.419|ICD10CM|Laceration of less saphenous at lower leg level, unsp leg|Laceration of less saphenous at lower leg level, unsp leg +C2864916|T037|HT|S85.419|ICD10CM|Laceration of lesser saphenous vein at lower leg level, unspecified leg|Laceration of lesser saphenous vein at lower leg level, unspecified leg +C2864917|T037|AB|S85.419A|ICD10CM|Lacerat less saphenous at lower leg level, unsp leg, init|Lacerat less saphenous at lower leg level, unsp leg, init +C2864917|T037|PT|S85.419A|ICD10CM|Laceration of lesser saphenous vein at lower leg level, unspecified leg, initial encounter|Laceration of lesser saphenous vein at lower leg level, unspecified leg, initial encounter +C2864918|T037|AB|S85.419D|ICD10CM|Lacerat less saphenous at lower leg level, unsp leg, subs|Lacerat less saphenous at lower leg level, unsp leg, subs +C2864918|T037|PT|S85.419D|ICD10CM|Laceration of lesser saphenous vein at lower leg level, unspecified leg, subsequent encounter|Laceration of lesser saphenous vein at lower leg level, unspecified leg, subsequent encounter +C2864919|T037|AB|S85.419S|ICD10CM|Lacerat less saphenous at lower leg level, unsp leg, sequela|Lacerat less saphenous at lower leg level, unsp leg, sequela +C2864919|T037|PT|S85.419S|ICD10CM|Laceration of lesser saphenous vein at lower leg level, unspecified leg, sequela|Laceration of lesser saphenous vein at lower leg level, unspecified leg, sequela +C2864920|T037|AB|S85.49|ICD10CM|Oth injury of lesser saphenous vein at lower leg level|Oth injury of lesser saphenous vein at lower leg level +C2864920|T037|HT|S85.49|ICD10CM|Other specified injury of lesser saphenous vein at lower leg level|Other specified injury of lesser saphenous vein at lower leg level +C2864921|T037|AB|S85.491|ICD10CM|Inj lesser saphenous vein at lower leg level, right leg|Inj lesser saphenous vein at lower leg level, right leg +C2864921|T037|HT|S85.491|ICD10CM|Other specified injury of lesser saphenous vein at lower leg level, right leg|Other specified injury of lesser saphenous vein at lower leg level, right leg +C2864922|T037|AB|S85.491A|ICD10CM|Inj less saphenous at lower leg level, right leg, init|Inj less saphenous at lower leg level, right leg, init +C2864922|T037|PT|S85.491A|ICD10CM|Other specified injury of lesser saphenous vein at lower leg level, right leg, initial encounter|Other specified injury of lesser saphenous vein at lower leg level, right leg, initial encounter +C2864923|T037|AB|S85.491D|ICD10CM|Inj less saphenous at lower leg level, right leg, subs|Inj less saphenous at lower leg level, right leg, subs +C2864923|T037|PT|S85.491D|ICD10CM|Other specified injury of lesser saphenous vein at lower leg level, right leg, subsequent encounter|Other specified injury of lesser saphenous vein at lower leg level, right leg, subsequent encounter +C2864924|T037|AB|S85.491S|ICD10CM|Inj less saphenous at lower leg level, right leg, sequela|Inj less saphenous at lower leg level, right leg, sequela +C2864924|T037|PT|S85.491S|ICD10CM|Other specified injury of lesser saphenous vein at lower leg level, right leg, sequela|Other specified injury of lesser saphenous vein at lower leg level, right leg, sequela +C2864925|T037|AB|S85.492|ICD10CM|Inj lesser saphenous vein at lower leg level, left leg|Inj lesser saphenous vein at lower leg level, left leg +C2864925|T037|HT|S85.492|ICD10CM|Other specified injury of lesser saphenous vein at lower leg level, left leg|Other specified injury of lesser saphenous vein at lower leg level, left leg +C2864926|T037|AB|S85.492A|ICD10CM|Inj lesser saphenous vein at lower leg level, left leg, init|Inj lesser saphenous vein at lower leg level, left leg, init +C2864926|T037|PT|S85.492A|ICD10CM|Other specified injury of lesser saphenous vein at lower leg level, left leg, initial encounter|Other specified injury of lesser saphenous vein at lower leg level, left leg, initial encounter +C2864927|T037|AB|S85.492D|ICD10CM|Inj lesser saphenous vein at lower leg level, left leg, subs|Inj lesser saphenous vein at lower leg level, left leg, subs +C2864927|T037|PT|S85.492D|ICD10CM|Other specified injury of lesser saphenous vein at lower leg level, left leg, subsequent encounter|Other specified injury of lesser saphenous vein at lower leg level, left leg, subsequent encounter +C2864928|T037|AB|S85.492S|ICD10CM|Inj less saphenous at lower leg level, left leg, sequela|Inj less saphenous at lower leg level, left leg, sequela +C2864928|T037|PT|S85.492S|ICD10CM|Other specified injury of lesser saphenous vein at lower leg level, left leg, sequela|Other specified injury of lesser saphenous vein at lower leg level, left leg, sequela +C2864929|T037|AB|S85.499|ICD10CM|Inj lesser saphenous vein at lower leg level, unsp leg|Inj lesser saphenous vein at lower leg level, unsp leg +C2864929|T037|HT|S85.499|ICD10CM|Other specified injury of lesser saphenous vein at lower leg level, unspecified leg|Other specified injury of lesser saphenous vein at lower leg level, unspecified leg +C2864930|T037|AB|S85.499A|ICD10CM|Inj lesser saphenous vein at lower leg level, unsp leg, init|Inj lesser saphenous vein at lower leg level, unsp leg, init +C2864931|T037|AB|S85.499D|ICD10CM|Inj lesser saphenous vein at lower leg level, unsp leg, subs|Inj lesser saphenous vein at lower leg level, unsp leg, subs +C2864932|T037|AB|S85.499S|ICD10CM|Inj less saphenous at lower leg level, unsp leg, sequela|Inj less saphenous at lower leg level, unsp leg, sequela +C2864932|T037|PT|S85.499S|ICD10CM|Other specified injury of lesser saphenous vein at lower leg level, unspecified leg, sequela|Other specified injury of lesser saphenous vein at lower leg level, unspecified leg, sequela +C0160762|T037|HT|S85.5|ICD10CM|Injury of popliteal vein|Injury of popliteal vein +C0160762|T037|AB|S85.5|ICD10CM|Injury of popliteal vein|Injury of popliteal vein +C0160762|T037|PT|S85.5|ICD10|Injury of popliteal vein|Injury of popliteal vein +C0160762|T037|AB|S85.50|ICD10CM|Unspecified injury of popliteal vein|Unspecified injury of popliteal vein +C0160762|T037|HT|S85.50|ICD10CM|Unspecified injury of popliteal vein|Unspecified injury of popliteal vein +C2864933|T037|AB|S85.501|ICD10CM|Unspecified injury of popliteal vein, right leg|Unspecified injury of popliteal vein, right leg +C2864933|T037|HT|S85.501|ICD10CM|Unspecified injury of popliteal vein, right leg|Unspecified injury of popliteal vein, right leg +C2864934|T037|AB|S85.501A|ICD10CM|Unspecified injury of popliteal vein, right leg, init encntr|Unspecified injury of popliteal vein, right leg, init encntr +C2864934|T037|PT|S85.501A|ICD10CM|Unspecified injury of popliteal vein, right leg, initial encounter|Unspecified injury of popliteal vein, right leg, initial encounter +C2864935|T037|AB|S85.501D|ICD10CM|Unspecified injury of popliteal vein, right leg, subs encntr|Unspecified injury of popliteal vein, right leg, subs encntr +C2864935|T037|PT|S85.501D|ICD10CM|Unspecified injury of popliteal vein, right leg, subsequent encounter|Unspecified injury of popliteal vein, right leg, subsequent encounter +C2864936|T037|AB|S85.501S|ICD10CM|Unspecified injury of popliteal vein, right leg, sequela|Unspecified injury of popliteal vein, right leg, sequela +C2864936|T037|PT|S85.501S|ICD10CM|Unspecified injury of popliteal vein, right leg, sequela|Unspecified injury of popliteal vein, right leg, sequela +C2864937|T037|AB|S85.502|ICD10CM|Unspecified injury of popliteal vein, left leg|Unspecified injury of popliteal vein, left leg +C2864937|T037|HT|S85.502|ICD10CM|Unspecified injury of popliteal vein, left leg|Unspecified injury of popliteal vein, left leg +C2864938|T037|AB|S85.502A|ICD10CM|Unspecified injury of popliteal vein, left leg, init encntr|Unspecified injury of popliteal vein, left leg, init encntr +C2864938|T037|PT|S85.502A|ICD10CM|Unspecified injury of popliteal vein, left leg, initial encounter|Unspecified injury of popliteal vein, left leg, initial encounter +C2864939|T037|AB|S85.502D|ICD10CM|Unspecified injury of popliteal vein, left leg, subs encntr|Unspecified injury of popliteal vein, left leg, subs encntr +C2864939|T037|PT|S85.502D|ICD10CM|Unspecified injury of popliteal vein, left leg, subsequent encounter|Unspecified injury of popliteal vein, left leg, subsequent encounter +C2864940|T037|AB|S85.502S|ICD10CM|Unspecified injury of popliteal vein, left leg, sequela|Unspecified injury of popliteal vein, left leg, sequela +C2864940|T037|PT|S85.502S|ICD10CM|Unspecified injury of popliteal vein, left leg, sequela|Unspecified injury of popliteal vein, left leg, sequela +C2864941|T037|AB|S85.509|ICD10CM|Unspecified injury of popliteal vein, unspecified leg|Unspecified injury of popliteal vein, unspecified leg +C2864941|T037|HT|S85.509|ICD10CM|Unspecified injury of popliteal vein, unspecified leg|Unspecified injury of popliteal vein, unspecified leg +C2864942|T037|AB|S85.509A|ICD10CM|Unsp injury of popliteal vein, unspecified leg, init encntr|Unsp injury of popliteal vein, unspecified leg, init encntr +C2864942|T037|PT|S85.509A|ICD10CM|Unspecified injury of popliteal vein, unspecified leg, initial encounter|Unspecified injury of popliteal vein, unspecified leg, initial encounter +C2864943|T037|AB|S85.509D|ICD10CM|Unsp injury of popliteal vein, unspecified leg, subs encntr|Unsp injury of popliteal vein, unspecified leg, subs encntr +C2864943|T037|PT|S85.509D|ICD10CM|Unspecified injury of popliteal vein, unspecified leg, subsequent encounter|Unspecified injury of popliteal vein, unspecified leg, subsequent encounter +C2864944|T037|AB|S85.509S|ICD10CM|Unsp injury of popliteal vein, unspecified leg, sequela|Unsp injury of popliteal vein, unspecified leg, sequela +C2864944|T037|PT|S85.509S|ICD10CM|Unspecified injury of popliteal vein, unspecified leg, sequela|Unspecified injury of popliteal vein, unspecified leg, sequela +C2864945|T037|HT|S85.51|ICD10CM|Laceration of popliteal vein|Laceration of popliteal vein +C2864945|T037|AB|S85.51|ICD10CM|Laceration of popliteal vein|Laceration of popliteal vein +C2864946|T037|AB|S85.511|ICD10CM|Laceration of popliteal vein, right leg|Laceration of popliteal vein, right leg +C2864946|T037|HT|S85.511|ICD10CM|Laceration of popliteal vein, right leg|Laceration of popliteal vein, right leg +C2864947|T037|AB|S85.511A|ICD10CM|Laceration of popliteal vein, right leg, initial encounter|Laceration of popliteal vein, right leg, initial encounter +C2864947|T037|PT|S85.511A|ICD10CM|Laceration of popliteal vein, right leg, initial encounter|Laceration of popliteal vein, right leg, initial encounter +C2864948|T037|AB|S85.511D|ICD10CM|Laceration of popliteal vein, right leg, subs encntr|Laceration of popliteal vein, right leg, subs encntr +C2864948|T037|PT|S85.511D|ICD10CM|Laceration of popliteal vein, right leg, subsequent encounter|Laceration of popliteal vein, right leg, subsequent encounter +C2864949|T037|AB|S85.511S|ICD10CM|Laceration of popliteal vein, right leg, sequela|Laceration of popliteal vein, right leg, sequela +C2864949|T037|PT|S85.511S|ICD10CM|Laceration of popliteal vein, right leg, sequela|Laceration of popliteal vein, right leg, sequela +C2864950|T037|AB|S85.512|ICD10CM|Laceration of popliteal vein, left leg|Laceration of popliteal vein, left leg +C2864950|T037|HT|S85.512|ICD10CM|Laceration of popliteal vein, left leg|Laceration of popliteal vein, left leg +C2864951|T037|AB|S85.512A|ICD10CM|Laceration of popliteal vein, left leg, initial encounter|Laceration of popliteal vein, left leg, initial encounter +C2864951|T037|PT|S85.512A|ICD10CM|Laceration of popliteal vein, left leg, initial encounter|Laceration of popliteal vein, left leg, initial encounter +C2864952|T037|AB|S85.512D|ICD10CM|Laceration of popliteal vein, left leg, subsequent encounter|Laceration of popliteal vein, left leg, subsequent encounter +C2864952|T037|PT|S85.512D|ICD10CM|Laceration of popliteal vein, left leg, subsequent encounter|Laceration of popliteal vein, left leg, subsequent encounter +C2864953|T037|AB|S85.512S|ICD10CM|Laceration of popliteal vein, left leg, sequela|Laceration of popliteal vein, left leg, sequela +C2864953|T037|PT|S85.512S|ICD10CM|Laceration of popliteal vein, left leg, sequela|Laceration of popliteal vein, left leg, sequela +C2864954|T037|AB|S85.519|ICD10CM|Laceration of popliteal vein, unspecified leg|Laceration of popliteal vein, unspecified leg +C2864954|T037|HT|S85.519|ICD10CM|Laceration of popliteal vein, unspecified leg|Laceration of popliteal vein, unspecified leg +C2864955|T037|AB|S85.519A|ICD10CM|Laceration of popliteal vein, unspecified leg, init encntr|Laceration of popliteal vein, unspecified leg, init encntr +C2864955|T037|PT|S85.519A|ICD10CM|Laceration of popliteal vein, unspecified leg, initial encounter|Laceration of popliteal vein, unspecified leg, initial encounter +C2864956|T037|AB|S85.519D|ICD10CM|Laceration of popliteal vein, unspecified leg, subs encntr|Laceration of popliteal vein, unspecified leg, subs encntr +C2864956|T037|PT|S85.519D|ICD10CM|Laceration of popliteal vein, unspecified leg, subsequent encounter|Laceration of popliteal vein, unspecified leg, subsequent encounter +C2864957|T037|AB|S85.519S|ICD10CM|Laceration of popliteal vein, unspecified leg, sequela|Laceration of popliteal vein, unspecified leg, sequela +C2864957|T037|PT|S85.519S|ICD10CM|Laceration of popliteal vein, unspecified leg, sequela|Laceration of popliteal vein, unspecified leg, sequela +C2864958|T037|AB|S85.59|ICD10CM|Other specified injury of popliteal vein|Other specified injury of popliteal vein +C2864958|T037|HT|S85.59|ICD10CM|Other specified injury of popliteal vein|Other specified injury of popliteal vein +C2864959|T037|AB|S85.591|ICD10CM|Other specified injury of popliteal vein, right leg|Other specified injury of popliteal vein, right leg +C2864959|T037|HT|S85.591|ICD10CM|Other specified injury of popliteal vein, right leg|Other specified injury of popliteal vein, right leg +C2864960|T037|AB|S85.591A|ICD10CM|Oth injury of popliteal vein, right leg, init encntr|Oth injury of popliteal vein, right leg, init encntr +C2864960|T037|PT|S85.591A|ICD10CM|Other specified injury of popliteal vein, right leg, initial encounter|Other specified injury of popliteal vein, right leg, initial encounter +C2864961|T037|AB|S85.591D|ICD10CM|Oth injury of popliteal vein, right leg, subs encntr|Oth injury of popliteal vein, right leg, subs encntr +C2864961|T037|PT|S85.591D|ICD10CM|Other specified injury of popliteal vein, right leg, subsequent encounter|Other specified injury of popliteal vein, right leg, subsequent encounter +C2864962|T037|AB|S85.591S|ICD10CM|Other specified injury of popliteal vein, right leg, sequela|Other specified injury of popliteal vein, right leg, sequela +C2864962|T037|PT|S85.591S|ICD10CM|Other specified injury of popliteal vein, right leg, sequela|Other specified injury of popliteal vein, right leg, sequela +C2864963|T037|AB|S85.592|ICD10CM|Other specified injury of popliteal vein, left leg|Other specified injury of popliteal vein, left leg +C2864963|T037|HT|S85.592|ICD10CM|Other specified injury of popliteal vein, left leg|Other specified injury of popliteal vein, left leg +C2864964|T037|AB|S85.592A|ICD10CM|Oth injury of popliteal vein, left leg, init encntr|Oth injury of popliteal vein, left leg, init encntr +C2864964|T037|PT|S85.592A|ICD10CM|Other specified injury of popliteal vein, left leg, initial encounter|Other specified injury of popliteal vein, left leg, initial encounter +C2864965|T037|AB|S85.592D|ICD10CM|Oth injury of popliteal vein, left leg, subs encntr|Oth injury of popliteal vein, left leg, subs encntr +C2864965|T037|PT|S85.592D|ICD10CM|Other specified injury of popliteal vein, left leg, subsequent encounter|Other specified injury of popliteal vein, left leg, subsequent encounter +C2864966|T037|AB|S85.592S|ICD10CM|Other specified injury of popliteal vein, left leg, sequela|Other specified injury of popliteal vein, left leg, sequela +C2864966|T037|PT|S85.592S|ICD10CM|Other specified injury of popliteal vein, left leg, sequela|Other specified injury of popliteal vein, left leg, sequela +C2864967|T037|AB|S85.599|ICD10CM|Other specified injury of popliteal vein, unspecified leg|Other specified injury of popliteal vein, unspecified leg +C2864967|T037|HT|S85.599|ICD10CM|Other specified injury of popliteal vein, unspecified leg|Other specified injury of popliteal vein, unspecified leg +C2864968|T037|AB|S85.599A|ICD10CM|Oth injury of popliteal vein, unspecified leg, init encntr|Oth injury of popliteal vein, unspecified leg, init encntr +C2864968|T037|PT|S85.599A|ICD10CM|Other specified injury of popliteal vein, unspecified leg, initial encounter|Other specified injury of popliteal vein, unspecified leg, initial encounter +C2864969|T037|AB|S85.599D|ICD10CM|Oth injury of popliteal vein, unspecified leg, subs encntr|Oth injury of popliteal vein, unspecified leg, subs encntr +C2864969|T037|PT|S85.599D|ICD10CM|Other specified injury of popliteal vein, unspecified leg, subsequent encounter|Other specified injury of popliteal vein, unspecified leg, subsequent encounter +C2864970|T037|AB|S85.599S|ICD10CM|Oth injury of popliteal vein, unspecified leg, sequela|Oth injury of popliteal vein, unspecified leg, sequela +C2864970|T037|PT|S85.599S|ICD10CM|Other specified injury of popliteal vein, unspecified leg, sequela|Other specified injury of popliteal vein, unspecified leg, sequela +C0452070|T037|PT|S85.7|ICD10|Injury of multiple blood vessels at lower leg level|Injury of multiple blood vessels at lower leg level +C0478340|T037|PT|S85.8|ICD10|Injury of other blood vessels at lower leg level|Injury of other blood vessels at lower leg level +C0478340|T037|HT|S85.8|ICD10CM|Injury of other blood vessels at lower leg level|Injury of other blood vessels at lower leg level +C0478340|T037|AB|S85.8|ICD10CM|Injury of other blood vessels at lower leg level|Injury of other blood vessels at lower leg level +C2864971|T037|AB|S85.80|ICD10CM|Unspecified injury of other blood vessels at lower leg level|Unspecified injury of other blood vessels at lower leg level +C2864971|T037|HT|S85.80|ICD10CM|Unspecified injury of other blood vessels at lower leg level|Unspecified injury of other blood vessels at lower leg level +C2864972|T037|AB|S85.801|ICD10CM|Unsp injury of blood vessels at lower leg level, right leg|Unsp injury of blood vessels at lower leg level, right leg +C2864972|T037|HT|S85.801|ICD10CM|Unspecified injury of other blood vessels at lower leg level, right leg|Unspecified injury of other blood vessels at lower leg level, right leg +C2864973|T037|AB|S85.801A|ICD10CM|Unsp inj blood vessels at lower leg level, right leg, init|Unsp inj blood vessels at lower leg level, right leg, init +C2864973|T037|PT|S85.801A|ICD10CM|Unspecified injury of other blood vessels at lower leg level, right leg, initial encounter|Unspecified injury of other blood vessels at lower leg level, right leg, initial encounter +C2864974|T037|AB|S85.801D|ICD10CM|Unsp inj blood vessels at lower leg level, right leg, subs|Unsp inj blood vessels at lower leg level, right leg, subs +C2864974|T037|PT|S85.801D|ICD10CM|Unspecified injury of other blood vessels at lower leg level, right leg, subsequent encounter|Unspecified injury of other blood vessels at lower leg level, right leg, subsequent encounter +C2864975|T037|AB|S85.801S|ICD10CM|Unsp inj blood vessels at low leg level, right leg, sequela|Unsp inj blood vessels at low leg level, right leg, sequela +C2864975|T037|PT|S85.801S|ICD10CM|Unspecified injury of other blood vessels at lower leg level, right leg, sequela|Unspecified injury of other blood vessels at lower leg level, right leg, sequela +C2864976|T037|AB|S85.802|ICD10CM|Unsp injury of blood vessels at lower leg level, left leg|Unsp injury of blood vessels at lower leg level, left leg +C2864976|T037|HT|S85.802|ICD10CM|Unspecified injury of other blood vessels at lower leg level, left leg|Unspecified injury of other blood vessels at lower leg level, left leg +C2864977|T037|AB|S85.802A|ICD10CM|Unsp inj blood vessels at lower leg level, left leg, init|Unsp inj blood vessels at lower leg level, left leg, init +C2864977|T037|PT|S85.802A|ICD10CM|Unspecified injury of other blood vessels at lower leg level, left leg, initial encounter|Unspecified injury of other blood vessels at lower leg level, left leg, initial encounter +C2864978|T037|AB|S85.802D|ICD10CM|Unsp inj blood vessels at lower leg level, left leg, subs|Unsp inj blood vessels at lower leg level, left leg, subs +C2864978|T037|PT|S85.802D|ICD10CM|Unspecified injury of other blood vessels at lower leg level, left leg, subsequent encounter|Unspecified injury of other blood vessels at lower leg level, left leg, subsequent encounter +C2864979|T037|AB|S85.802S|ICD10CM|Unsp inj blood vessels at lower leg level, left leg, sequela|Unsp inj blood vessels at lower leg level, left leg, sequela +C2864979|T037|PT|S85.802S|ICD10CM|Unspecified injury of other blood vessels at lower leg level, left leg, sequela|Unspecified injury of other blood vessels at lower leg level, left leg, sequela +C2864980|T037|AB|S85.809|ICD10CM|Unsp injury of blood vessels at lower leg level, unsp leg|Unsp injury of blood vessels at lower leg level, unsp leg +C2864980|T037|HT|S85.809|ICD10CM|Unspecified injury of other blood vessels at lower leg level, unspecified leg|Unspecified injury of other blood vessels at lower leg level, unspecified leg +C2864981|T037|AB|S85.809A|ICD10CM|Unsp inj blood vessels at lower leg level, unsp leg, init|Unsp inj blood vessels at lower leg level, unsp leg, init +C2864981|T037|PT|S85.809A|ICD10CM|Unspecified injury of other blood vessels at lower leg level, unspecified leg, initial encounter|Unspecified injury of other blood vessels at lower leg level, unspecified leg, initial encounter +C2864982|T037|AB|S85.809D|ICD10CM|Unsp inj blood vessels at lower leg level, unsp leg, subs|Unsp inj blood vessels at lower leg level, unsp leg, subs +C2864982|T037|PT|S85.809D|ICD10CM|Unspecified injury of other blood vessels at lower leg level, unspecified leg, subsequent encounter|Unspecified injury of other blood vessels at lower leg level, unspecified leg, subsequent encounter +C2864983|T037|AB|S85.809S|ICD10CM|Unsp inj blood vessels at lower leg level, unsp leg, sequela|Unsp inj blood vessels at lower leg level, unsp leg, sequela +C2864983|T037|PT|S85.809S|ICD10CM|Unspecified injury of other blood vessels at lower leg level, unspecified leg, sequela|Unspecified injury of other blood vessels at lower leg level, unspecified leg, sequela +C2864984|T037|HT|S85.81|ICD10CM|Laceration of other blood vessels at lower leg level|Laceration of other blood vessels at lower leg level +C2864984|T037|AB|S85.81|ICD10CM|Laceration of other blood vessels at lower leg level|Laceration of other blood vessels at lower leg level +C2864985|T037|AB|S85.811|ICD10CM|Laceration of blood vessels at lower leg level, right leg|Laceration of blood vessels at lower leg level, right leg +C2864985|T037|HT|S85.811|ICD10CM|Laceration of other blood vessels at lower leg level, right leg|Laceration of other blood vessels at lower leg level, right leg +C2864986|T037|AB|S85.811A|ICD10CM|Lacerat blood vessels at lower leg level, right leg, init|Lacerat blood vessels at lower leg level, right leg, init +C2864986|T037|PT|S85.811A|ICD10CM|Laceration of other blood vessels at lower leg level, right leg, initial encounter|Laceration of other blood vessels at lower leg level, right leg, initial encounter +C2864987|T037|AB|S85.811D|ICD10CM|Lacerat blood vessels at lower leg level, right leg, subs|Lacerat blood vessels at lower leg level, right leg, subs +C2864987|T037|PT|S85.811D|ICD10CM|Laceration of other blood vessels at lower leg level, right leg, subsequent encounter|Laceration of other blood vessels at lower leg level, right leg, subsequent encounter +C2864988|T037|AB|S85.811S|ICD10CM|Lacerat blood vessels at lower leg level, right leg, sequela|Lacerat blood vessels at lower leg level, right leg, sequela +C2864988|T037|PT|S85.811S|ICD10CM|Laceration of other blood vessels at lower leg level, right leg, sequela|Laceration of other blood vessels at lower leg level, right leg, sequela +C2864989|T037|AB|S85.812|ICD10CM|Laceration of oth blood vessels at lower leg level, left leg|Laceration of oth blood vessels at lower leg level, left leg +C2864989|T037|HT|S85.812|ICD10CM|Laceration of other blood vessels at lower leg level, left leg|Laceration of other blood vessels at lower leg level, left leg +C2864990|T037|AB|S85.812A|ICD10CM|Lacerat blood vessels at lower leg level, left leg, init|Lacerat blood vessels at lower leg level, left leg, init +C2864990|T037|PT|S85.812A|ICD10CM|Laceration of other blood vessels at lower leg level, left leg, initial encounter|Laceration of other blood vessels at lower leg level, left leg, initial encounter +C2864991|T037|AB|S85.812D|ICD10CM|Lacerat blood vessels at lower leg level, left leg, subs|Lacerat blood vessels at lower leg level, left leg, subs +C2864991|T037|PT|S85.812D|ICD10CM|Laceration of other blood vessels at lower leg level, left leg, subsequent encounter|Laceration of other blood vessels at lower leg level, left leg, subsequent encounter +C2864992|T037|AB|S85.812S|ICD10CM|Lacerat blood vessels at lower leg level, left leg, sequela|Lacerat blood vessels at lower leg level, left leg, sequela +C2864992|T037|PT|S85.812S|ICD10CM|Laceration of other blood vessels at lower leg level, left leg, sequela|Laceration of other blood vessels at lower leg level, left leg, sequela +C2864993|T037|AB|S85.819|ICD10CM|Laceration of oth blood vessels at lower leg level, unsp leg|Laceration of oth blood vessels at lower leg level, unsp leg +C2864993|T037|HT|S85.819|ICD10CM|Laceration of other blood vessels at lower leg level, unspecified leg|Laceration of other blood vessels at lower leg level, unspecified leg +C2864994|T037|AB|S85.819A|ICD10CM|Lacerat blood vessels at lower leg level, unsp leg, init|Lacerat blood vessels at lower leg level, unsp leg, init +C2864994|T037|PT|S85.819A|ICD10CM|Laceration of other blood vessels at lower leg level, unspecified leg, initial encounter|Laceration of other blood vessels at lower leg level, unspecified leg, initial encounter +C2864995|T037|AB|S85.819D|ICD10CM|Lacerat blood vessels at lower leg level, unsp leg, subs|Lacerat blood vessels at lower leg level, unsp leg, subs +C2864995|T037|PT|S85.819D|ICD10CM|Laceration of other blood vessels at lower leg level, unspecified leg, subsequent encounter|Laceration of other blood vessels at lower leg level, unspecified leg, subsequent encounter +C2864996|T037|AB|S85.819S|ICD10CM|Lacerat blood vessels at lower leg level, unsp leg, sequela|Lacerat blood vessels at lower leg level, unsp leg, sequela +C2864996|T037|PT|S85.819S|ICD10CM|Laceration of other blood vessels at lower leg level, unspecified leg, sequela|Laceration of other blood vessels at lower leg level, unspecified leg, sequela +C2864997|T037|AB|S85.89|ICD10CM|Oth injury of other blood vessels at lower leg level|Oth injury of other blood vessels at lower leg level +C2864997|T037|HT|S85.89|ICD10CM|Other specified injury of other blood vessels at lower leg level|Other specified injury of other blood vessels at lower leg level +C2864998|T037|AB|S85.891|ICD10CM|Inj oth blood vessels at lower leg level, right leg|Inj oth blood vessels at lower leg level, right leg +C2864998|T037|HT|S85.891|ICD10CM|Other specified injury of other blood vessels at lower leg level, right leg|Other specified injury of other blood vessels at lower leg level, right leg +C2864999|T037|AB|S85.891A|ICD10CM|Inj oth blood vessels at lower leg level, right leg, init|Inj oth blood vessels at lower leg level, right leg, init +C2864999|T037|PT|S85.891A|ICD10CM|Other specified injury of other blood vessels at lower leg level, right leg, initial encounter|Other specified injury of other blood vessels at lower leg level, right leg, initial encounter +C2865000|T037|AB|S85.891D|ICD10CM|Inj oth blood vessels at lower leg level, right leg, subs|Inj oth blood vessels at lower leg level, right leg, subs +C2865000|T037|PT|S85.891D|ICD10CM|Other specified injury of other blood vessels at lower leg level, right leg, subsequent encounter|Other specified injury of other blood vessels at lower leg level, right leg, subsequent encounter +C2865001|T037|AB|S85.891S|ICD10CM|Inj oth blood vessels at lower leg level, right leg, sequela|Inj oth blood vessels at lower leg level, right leg, sequela +C2865001|T037|PT|S85.891S|ICD10CM|Other specified injury of other blood vessels at lower leg level, right leg, sequela|Other specified injury of other blood vessels at lower leg level, right leg, sequela +C2865002|T037|AB|S85.892|ICD10CM|Oth injury of oth blood vessels at lower leg level, left leg|Oth injury of oth blood vessels at lower leg level, left leg +C2865002|T037|HT|S85.892|ICD10CM|Other specified injury of other blood vessels at lower leg level, left leg|Other specified injury of other blood vessels at lower leg level, left leg +C2865003|T037|AB|S85.892A|ICD10CM|Inj oth blood vessels at lower leg level, left leg, init|Inj oth blood vessels at lower leg level, left leg, init +C2865003|T037|PT|S85.892A|ICD10CM|Other specified injury of other blood vessels at lower leg level, left leg, initial encounter|Other specified injury of other blood vessels at lower leg level, left leg, initial encounter +C2865004|T037|AB|S85.892D|ICD10CM|Inj oth blood vessels at lower leg level, left leg, subs|Inj oth blood vessels at lower leg level, left leg, subs +C2865004|T037|PT|S85.892D|ICD10CM|Other specified injury of other blood vessels at lower leg level, left leg, subsequent encounter|Other specified injury of other blood vessels at lower leg level, left leg, subsequent encounter +C2865005|T037|AB|S85.892S|ICD10CM|Inj oth blood vessels at lower leg level, left leg, sequela|Inj oth blood vessels at lower leg level, left leg, sequela +C2865005|T037|PT|S85.892S|ICD10CM|Other specified injury of other blood vessels at lower leg level, left leg, sequela|Other specified injury of other blood vessels at lower leg level, left leg, sequela +C2865006|T037|AB|S85.899|ICD10CM|Oth injury of oth blood vessels at lower leg level, unsp leg|Oth injury of oth blood vessels at lower leg level, unsp leg +C2865006|T037|HT|S85.899|ICD10CM|Other specified injury of other blood vessels at lower leg level, unspecified leg|Other specified injury of other blood vessels at lower leg level, unspecified leg +C2865007|T037|AB|S85.899A|ICD10CM|Inj oth blood vessels at lower leg level, unsp leg, init|Inj oth blood vessels at lower leg level, unsp leg, init +C2865007|T037|PT|S85.899A|ICD10CM|Other specified injury of other blood vessels at lower leg level, unspecified leg, initial encounter|Other specified injury of other blood vessels at lower leg level, unspecified leg, initial encounter +C2865008|T037|AB|S85.899D|ICD10CM|Inj oth blood vessels at lower leg level, unsp leg, subs|Inj oth blood vessels at lower leg level, unsp leg, subs +C2865009|T037|AB|S85.899S|ICD10CM|Inj oth blood vessels at lower leg level, unsp leg, sequela|Inj oth blood vessels at lower leg level, unsp leg, sequela +C2865009|T037|PT|S85.899S|ICD10CM|Other specified injury of other blood vessels at lower leg level, unspecified leg, sequela|Other specified injury of other blood vessels at lower leg level, unspecified leg, sequela +C1279577|T037|HT|S85.9|ICD10CM|Injury of unspecified blood vessel at lower leg level|Injury of unspecified blood vessel at lower leg level +C1279577|T037|AB|S85.9|ICD10CM|Injury of unspecified blood vessel at lower leg level|Injury of unspecified blood vessel at lower leg level +C1279577|T037|PT|S85.9|ICD10|Injury of unspecified blood vessel at lower leg level|Injury of unspecified blood vessel at lower leg level +C2865010|T037|AB|S85.90|ICD10CM|Unsp injury of unspecified blood vessel at lower leg level|Unsp injury of unspecified blood vessel at lower leg level +C2865010|T037|HT|S85.90|ICD10CM|Unspecified injury of unspecified blood vessel at lower leg level|Unspecified injury of unspecified blood vessel at lower leg level +C2865011|T037|AB|S85.901|ICD10CM|Unsp injury of unsp blood vess at lower leg level, right leg|Unsp injury of unsp blood vess at lower leg level, right leg +C2865011|T037|HT|S85.901|ICD10CM|Unspecified injury of unspecified blood vessel at lower leg level, right leg|Unspecified injury of unspecified blood vessel at lower leg level, right leg +C2865012|T037|AB|S85.901A|ICD10CM|Unsp inj unsp blood vess at lower leg level, right leg, init|Unsp inj unsp blood vess at lower leg level, right leg, init +C2865012|T037|PT|S85.901A|ICD10CM|Unspecified injury of unspecified blood vessel at lower leg level, right leg, initial encounter|Unspecified injury of unspecified blood vessel at lower leg level, right leg, initial encounter +C2865013|T037|AB|S85.901D|ICD10CM|Unsp inj unsp blood vess at lower leg level, right leg, subs|Unsp inj unsp blood vess at lower leg level, right leg, subs +C2865013|T037|PT|S85.901D|ICD10CM|Unspecified injury of unspecified blood vessel at lower leg level, right leg, subsequent encounter|Unspecified injury of unspecified blood vessel at lower leg level, right leg, subsequent encounter +C2865014|T037|AB|S85.901S|ICD10CM|Unsp inj unsp blood vess at low leg level, right leg, sqla|Unsp inj unsp blood vess at low leg level, right leg, sqla +C2865014|T037|PT|S85.901S|ICD10CM|Unspecified injury of unspecified blood vessel at lower leg level, right leg, sequela|Unspecified injury of unspecified blood vessel at lower leg level, right leg, sequela +C2865015|T037|AB|S85.902|ICD10CM|Unsp injury of unsp blood vess at lower leg level, left leg|Unsp injury of unsp blood vess at lower leg level, left leg +C2865015|T037|HT|S85.902|ICD10CM|Unspecified injury of unspecified blood vessel at lower leg level, left leg|Unspecified injury of unspecified blood vessel at lower leg level, left leg +C2865016|T037|AB|S85.902A|ICD10CM|Unsp inj unsp blood vess at lower leg level, left leg, init|Unsp inj unsp blood vess at lower leg level, left leg, init +C2865016|T037|PT|S85.902A|ICD10CM|Unspecified injury of unspecified blood vessel at lower leg level, left leg, initial encounter|Unspecified injury of unspecified blood vessel at lower leg level, left leg, initial encounter +C2865017|T037|AB|S85.902D|ICD10CM|Unsp inj unsp blood vess at lower leg level, left leg, subs|Unsp inj unsp blood vess at lower leg level, left leg, subs +C2865017|T037|PT|S85.902D|ICD10CM|Unspecified injury of unspecified blood vessel at lower leg level, left leg, subsequent encounter|Unspecified injury of unspecified blood vessel at lower leg level, left leg, subsequent encounter +C2865018|T037|AB|S85.902S|ICD10CM|Unsp inj unsp blood vess at low leg level, left leg, sequela|Unsp inj unsp blood vess at low leg level, left leg, sequela +C2865018|T037|PT|S85.902S|ICD10CM|Unspecified injury of unspecified blood vessel at lower leg level, left leg, sequela|Unspecified injury of unspecified blood vessel at lower leg level, left leg, sequela +C2865019|T037|AB|S85.909|ICD10CM|Unsp injury of unsp blood vess at lower leg level, unsp leg|Unsp injury of unsp blood vess at lower leg level, unsp leg +C2865019|T037|HT|S85.909|ICD10CM|Unspecified injury of unspecified blood vessel at lower leg level, unspecified leg|Unspecified injury of unspecified blood vessel at lower leg level, unspecified leg +C2865020|T037|AB|S85.909A|ICD10CM|Unsp inj unsp blood vess at lower leg level, unsp leg, init|Unsp inj unsp blood vess at lower leg level, unsp leg, init +C2865021|T037|AB|S85.909D|ICD10CM|Unsp inj unsp blood vess at lower leg level, unsp leg, subs|Unsp inj unsp blood vess at lower leg level, unsp leg, subs +C2865022|T037|AB|S85.909S|ICD10CM|Unsp inj unsp blood vess at low leg level, unsp leg, sequela|Unsp inj unsp blood vess at low leg level, unsp leg, sequela +C2865022|T037|PT|S85.909S|ICD10CM|Unspecified injury of unspecified blood vessel at lower leg level, unspecified leg, sequela|Unspecified injury of unspecified blood vessel at lower leg level, unspecified leg, sequela +C2865023|T037|AB|S85.91|ICD10CM|Laceration of unspecified blood vessel at lower leg level|Laceration of unspecified blood vessel at lower leg level +C2865023|T037|HT|S85.91|ICD10CM|Laceration of unspecified blood vessel at lower leg level|Laceration of unspecified blood vessel at lower leg level +C2865024|T037|AB|S85.911|ICD10CM|Lacerat unsp blood vessel at lower leg level, right leg|Lacerat unsp blood vessel at lower leg level, right leg +C2865024|T037|HT|S85.911|ICD10CM|Laceration of unspecified blood vessel at lower leg level, right leg|Laceration of unspecified blood vessel at lower leg level, right leg +C2865025|T037|AB|S85.911A|ICD10CM|Lacerat unsp blood vess at lower leg level, right leg, init|Lacerat unsp blood vess at lower leg level, right leg, init +C2865025|T037|PT|S85.911A|ICD10CM|Laceration of unspecified blood vessel at lower leg level, right leg, initial encounter|Laceration of unspecified blood vessel at lower leg level, right leg, initial encounter +C2865026|T037|AB|S85.911D|ICD10CM|Lacerat unsp blood vess at lower leg level, right leg, subs|Lacerat unsp blood vess at lower leg level, right leg, subs +C2865026|T037|PT|S85.911D|ICD10CM|Laceration of unspecified blood vessel at lower leg level, right leg, subsequent encounter|Laceration of unspecified blood vessel at lower leg level, right leg, subsequent encounter +C2865027|T037|AB|S85.911S|ICD10CM|Lacerat unsp blood vess at low leg level, right leg, sequela|Lacerat unsp blood vess at low leg level, right leg, sequela +C2865027|T037|PT|S85.911S|ICD10CM|Laceration of unspecified blood vessel at lower leg level, right leg, sequela|Laceration of unspecified blood vessel at lower leg level, right leg, sequela +C2865028|T037|AB|S85.912|ICD10CM|Laceration of unsp blood vessel at lower leg level, left leg|Laceration of unsp blood vessel at lower leg level, left leg +C2865028|T037|HT|S85.912|ICD10CM|Laceration of unspecified blood vessel at lower leg level, left leg|Laceration of unspecified blood vessel at lower leg level, left leg +C2865029|T037|AB|S85.912A|ICD10CM|Lacerat unsp blood vessel at lower leg level, left leg, init|Lacerat unsp blood vessel at lower leg level, left leg, init +C2865029|T037|PT|S85.912A|ICD10CM|Laceration of unspecified blood vessel at lower leg level, left leg, initial encounter|Laceration of unspecified blood vessel at lower leg level, left leg, initial encounter +C2865030|T037|AB|S85.912D|ICD10CM|Lacerat unsp blood vessel at lower leg level, left leg, subs|Lacerat unsp blood vessel at lower leg level, left leg, subs +C2865030|T037|PT|S85.912D|ICD10CM|Laceration of unspecified blood vessel at lower leg level, left leg, subsequent encounter|Laceration of unspecified blood vessel at lower leg level, left leg, subsequent encounter +C2865031|T037|AB|S85.912S|ICD10CM|Lacerat unsp blood vess at low leg level, left leg, sequela|Lacerat unsp blood vess at low leg level, left leg, sequela +C2865031|T037|PT|S85.912S|ICD10CM|Laceration of unspecified blood vessel at lower leg level, left leg, sequela|Laceration of unspecified blood vessel at lower leg level, left leg, sequela +C2865032|T037|AB|S85.919|ICD10CM|Laceration of unsp blood vessel at lower leg level, unsp leg|Laceration of unsp blood vessel at lower leg level, unsp leg +C2865032|T037|HT|S85.919|ICD10CM|Laceration of unspecified blood vessel at lower leg level, unspecified leg|Laceration of unspecified blood vessel at lower leg level, unspecified leg +C2865033|T037|AB|S85.919A|ICD10CM|Lacerat unsp blood vessel at lower leg level, unsp leg, init|Lacerat unsp blood vessel at lower leg level, unsp leg, init +C2865033|T037|PT|S85.919A|ICD10CM|Laceration of unspecified blood vessel at lower leg level, unspecified leg, initial encounter|Laceration of unspecified blood vessel at lower leg level, unspecified leg, initial encounter +C2865034|T037|AB|S85.919D|ICD10CM|Lacerat unsp blood vessel at lower leg level, unsp leg, subs|Lacerat unsp blood vessel at lower leg level, unsp leg, subs +C2865034|T037|PT|S85.919D|ICD10CM|Laceration of unspecified blood vessel at lower leg level, unspecified leg, subsequent encounter|Laceration of unspecified blood vessel at lower leg level, unspecified leg, subsequent encounter +C2865035|T037|AB|S85.919S|ICD10CM|Lacerat unsp blood vess at low leg level, unsp leg, sequela|Lacerat unsp blood vess at low leg level, unsp leg, sequela +C2865035|T037|PT|S85.919S|ICD10CM|Laceration of unspecified blood vessel at lower leg level, unspecified leg, sequela|Laceration of unspecified blood vessel at lower leg level, unspecified leg, sequela +C2865036|T037|AB|S85.99|ICD10CM|Oth injury of unspecified blood vessel at lower leg level|Oth injury of unspecified blood vessel at lower leg level +C2865036|T037|HT|S85.99|ICD10CM|Other specified injury of unspecified blood vessel at lower leg level|Other specified injury of unspecified blood vessel at lower leg level +C2865037|T037|AB|S85.991|ICD10CM|Inj unsp blood vessel at lower leg level, right leg|Inj unsp blood vessel at lower leg level, right leg +C2865037|T037|HT|S85.991|ICD10CM|Other specified injury of unspecified blood vessel at lower leg level, right leg|Other specified injury of unspecified blood vessel at lower leg level, right leg +C2865038|T037|AB|S85.991A|ICD10CM|Inj unsp blood vessel at lower leg level, right leg, init|Inj unsp blood vessel at lower leg level, right leg, init +C2865038|T037|PT|S85.991A|ICD10CM|Other specified injury of unspecified blood vessel at lower leg level, right leg, initial encounter|Other specified injury of unspecified blood vessel at lower leg level, right leg, initial encounter +C2865039|T037|AB|S85.991D|ICD10CM|Inj unsp blood vessel at lower leg level, right leg, subs|Inj unsp blood vessel at lower leg level, right leg, subs +C2865040|T037|AB|S85.991S|ICD10CM|Inj unsp blood vessel at lower leg level, right leg, sequela|Inj unsp blood vessel at lower leg level, right leg, sequela +C2865040|T037|PT|S85.991S|ICD10CM|Other specified injury of unspecified blood vessel at lower leg level, right leg, sequela|Other specified injury of unspecified blood vessel at lower leg level, right leg, sequela +C2865041|T037|AB|S85.992|ICD10CM|Oth injury of unsp blood vessel at lower leg level, left leg|Oth injury of unsp blood vessel at lower leg level, left leg +C2865041|T037|HT|S85.992|ICD10CM|Other specified injury of unspecified blood vessel at lower leg level, left leg|Other specified injury of unspecified blood vessel at lower leg level, left leg +C2865042|T037|AB|S85.992A|ICD10CM|Inj unsp blood vessel at lower leg level, left leg, init|Inj unsp blood vessel at lower leg level, left leg, init +C2865042|T037|PT|S85.992A|ICD10CM|Other specified injury of unspecified blood vessel at lower leg level, left leg, initial encounter|Other specified injury of unspecified blood vessel at lower leg level, left leg, initial encounter +C2865043|T037|AB|S85.992D|ICD10CM|Inj unsp blood vessel at lower leg level, left leg, subs|Inj unsp blood vessel at lower leg level, left leg, subs +C2865044|T037|AB|S85.992S|ICD10CM|Inj unsp blood vessel at lower leg level, left leg, sequela|Inj unsp blood vessel at lower leg level, left leg, sequela +C2865044|T037|PT|S85.992S|ICD10CM|Other specified injury of unspecified blood vessel at lower leg level, left leg, sequela|Other specified injury of unspecified blood vessel at lower leg level, left leg, sequela +C2865045|T037|AB|S85.999|ICD10CM|Oth injury of unsp blood vessel at lower leg level, unsp leg|Oth injury of unsp blood vessel at lower leg level, unsp leg +C2865045|T037|HT|S85.999|ICD10CM|Other specified injury of unspecified blood vessel at lower leg level, unspecified leg|Other specified injury of unspecified blood vessel at lower leg level, unspecified leg +C2865046|T037|AB|S85.999A|ICD10CM|Inj unsp blood vessel at lower leg level, unsp leg, init|Inj unsp blood vessel at lower leg level, unsp leg, init +C2865047|T037|AB|S85.999D|ICD10CM|Inj unsp blood vessel at lower leg level, unsp leg, subs|Inj unsp blood vessel at lower leg level, unsp leg, subs +C2865048|T037|AB|S85.999S|ICD10CM|Inj unsp blood vessel at lower leg level, unsp leg, sequela|Inj unsp blood vessel at lower leg level, unsp leg, sequela +C2865048|T037|PT|S85.999S|ICD10CM|Other specified injury of unspecified blood vessel at lower leg level, unspecified leg, sequela|Other specified injury of unspecified blood vessel at lower leg level, unspecified leg, sequela +C0451860|T037|HT|S86|ICD10|Injury of muscle and tendon at lower leg level|Injury of muscle and tendon at lower leg level +C2865049|T037|AB|S86|ICD10CM|Injury of muscle, fascia and tendon at lower leg level|Injury of muscle, fascia and tendon at lower leg level +C2865049|T037|HT|S86|ICD10CM|Injury of muscle, fascia and tendon at lower leg level|Injury of muscle, fascia and tendon at lower leg level +C0495953|T037|PT|S86.0|ICD10|Injury of Achilles tendon|Injury of Achilles tendon +C0495953|T037|HT|S86.0|ICD10CM|Injury of Achilles tendon|Injury of Achilles tendon +C0495953|T037|AB|S86.0|ICD10CM|Injury of Achilles tendon|Injury of Achilles tendon +C2865050|T037|AB|S86.00|ICD10CM|Unspecified injury of Achilles tendon|Unspecified injury of Achilles tendon +C2865050|T037|HT|S86.00|ICD10CM|Unspecified injury of Achilles tendon|Unspecified injury of Achilles tendon +C2865051|T037|AB|S86.001|ICD10CM|Unspecified injury of right Achilles tendon|Unspecified injury of right Achilles tendon +C2865051|T037|HT|S86.001|ICD10CM|Unspecified injury of right Achilles tendon|Unspecified injury of right Achilles tendon +C2865052|T037|AB|S86.001A|ICD10CM|Unspecified injury of right Achilles tendon, init encntr|Unspecified injury of right Achilles tendon, init encntr +C2865052|T037|PT|S86.001A|ICD10CM|Unspecified injury of right Achilles tendon, initial encounter|Unspecified injury of right Achilles tendon, initial encounter +C2865053|T037|AB|S86.001D|ICD10CM|Unspecified injury of right Achilles tendon, subs encntr|Unspecified injury of right Achilles tendon, subs encntr +C2865053|T037|PT|S86.001D|ICD10CM|Unspecified injury of right Achilles tendon, subsequent encounter|Unspecified injury of right Achilles tendon, subsequent encounter +C2865054|T037|AB|S86.001S|ICD10CM|Unspecified injury of right Achilles tendon, sequela|Unspecified injury of right Achilles tendon, sequela +C2865054|T037|PT|S86.001S|ICD10CM|Unspecified injury of right Achilles tendon, sequela|Unspecified injury of right Achilles tendon, sequela +C2865055|T037|AB|S86.002|ICD10CM|Unspecified injury of left Achilles tendon|Unspecified injury of left Achilles tendon +C2865055|T037|HT|S86.002|ICD10CM|Unspecified injury of left Achilles tendon|Unspecified injury of left Achilles tendon +C2865056|T037|AB|S86.002A|ICD10CM|Unspecified injury of left Achilles tendon, init encntr|Unspecified injury of left Achilles tendon, init encntr +C2865056|T037|PT|S86.002A|ICD10CM|Unspecified injury of left Achilles tendon, initial encounter|Unspecified injury of left Achilles tendon, initial encounter +C2865057|T037|AB|S86.002D|ICD10CM|Unspecified injury of left Achilles tendon, subs encntr|Unspecified injury of left Achilles tendon, subs encntr +C2865057|T037|PT|S86.002D|ICD10CM|Unspecified injury of left Achilles tendon, subsequent encounter|Unspecified injury of left Achilles tendon, subsequent encounter +C2865058|T037|AB|S86.002S|ICD10CM|Unspecified injury of left Achilles tendon, sequela|Unspecified injury of left Achilles tendon, sequela +C2865058|T037|PT|S86.002S|ICD10CM|Unspecified injury of left Achilles tendon, sequela|Unspecified injury of left Achilles tendon, sequela +C2865059|T037|AB|S86.009|ICD10CM|Unspecified injury of unspecified Achilles tendon|Unspecified injury of unspecified Achilles tendon +C2865059|T037|HT|S86.009|ICD10CM|Unspecified injury of unspecified Achilles tendon|Unspecified injury of unspecified Achilles tendon +C2865060|T037|AB|S86.009A|ICD10CM|Unsp injury of unspecified Achilles tendon, init encntr|Unsp injury of unspecified Achilles tendon, init encntr +C2865060|T037|PT|S86.009A|ICD10CM|Unspecified injury of unspecified Achilles tendon, initial encounter|Unspecified injury of unspecified Achilles tendon, initial encounter +C2865061|T037|AB|S86.009D|ICD10CM|Unsp injury of unspecified Achilles tendon, subs encntr|Unsp injury of unspecified Achilles tendon, subs encntr +C2865061|T037|PT|S86.009D|ICD10CM|Unspecified injury of unspecified Achilles tendon, subsequent encounter|Unspecified injury of unspecified Achilles tendon, subsequent encounter +C2865062|T037|AB|S86.009S|ICD10CM|Unspecified injury of unspecified Achilles tendon, sequela|Unspecified injury of unspecified Achilles tendon, sequela +C2865062|T037|PT|S86.009S|ICD10CM|Unspecified injury of unspecified Achilles tendon, sequela|Unspecified injury of unspecified Achilles tendon, sequela +C0272895|T037|HT|S86.01|ICD10CM|Strain of Achilles tendon|Strain of Achilles tendon +C0272895|T037|AB|S86.01|ICD10CM|Strain of Achilles tendon|Strain of Achilles tendon +C2865063|T037|HT|S86.011|ICD10CM|Strain of right Achilles tendon|Strain of right Achilles tendon +C2865063|T037|AB|S86.011|ICD10CM|Strain of right Achilles tendon|Strain of right Achilles tendon +C2865064|T037|PT|S86.011A|ICD10CM|Strain of right Achilles tendon, initial encounter|Strain of right Achilles tendon, initial encounter +C2865064|T037|AB|S86.011A|ICD10CM|Strain of right Achilles tendon, initial encounter|Strain of right Achilles tendon, initial encounter +C2865065|T037|PT|S86.011D|ICD10CM|Strain of right Achilles tendon, subsequent encounter|Strain of right Achilles tendon, subsequent encounter +C2865065|T037|AB|S86.011D|ICD10CM|Strain of right Achilles tendon, subsequent encounter|Strain of right Achilles tendon, subsequent encounter +C2865066|T037|PT|S86.011S|ICD10CM|Strain of right Achilles tendon, sequela|Strain of right Achilles tendon, sequela +C2865066|T037|AB|S86.011S|ICD10CM|Strain of right Achilles tendon, sequela|Strain of right Achilles tendon, sequela +C2865067|T037|HT|S86.012|ICD10CM|Strain of left Achilles tendon|Strain of left Achilles tendon +C2865067|T037|AB|S86.012|ICD10CM|Strain of left Achilles tendon|Strain of left Achilles tendon +C2865068|T037|PT|S86.012A|ICD10CM|Strain of left Achilles tendon, initial encounter|Strain of left Achilles tendon, initial encounter +C2865068|T037|AB|S86.012A|ICD10CM|Strain of left Achilles tendon, initial encounter|Strain of left Achilles tendon, initial encounter +C2865069|T037|PT|S86.012D|ICD10CM|Strain of left Achilles tendon, subsequent encounter|Strain of left Achilles tendon, subsequent encounter +C2865069|T037|AB|S86.012D|ICD10CM|Strain of left Achilles tendon, subsequent encounter|Strain of left Achilles tendon, subsequent encounter +C2865070|T037|PT|S86.012S|ICD10CM|Strain of left Achilles tendon, sequela|Strain of left Achilles tendon, sequela +C2865070|T037|AB|S86.012S|ICD10CM|Strain of left Achilles tendon, sequela|Strain of left Achilles tendon, sequela +C2865071|T037|AB|S86.019|ICD10CM|Strain of unspecified Achilles tendon|Strain of unspecified Achilles tendon +C2865071|T037|HT|S86.019|ICD10CM|Strain of unspecified Achilles tendon|Strain of unspecified Achilles tendon +C2865072|T037|AB|S86.019A|ICD10CM|Strain of unspecified Achilles tendon, initial encounter|Strain of unspecified Achilles tendon, initial encounter +C2865072|T037|PT|S86.019A|ICD10CM|Strain of unspecified Achilles tendon, initial encounter|Strain of unspecified Achilles tendon, initial encounter +C2865073|T037|PT|S86.019D|ICD10CM|Strain of unspecified Achilles tendon, subsequent encounter|Strain of unspecified Achilles tendon, subsequent encounter +C2865073|T037|AB|S86.019D|ICD10CM|Strain of unspecified Achilles tendon, subsequent encounter|Strain of unspecified Achilles tendon, subsequent encounter +C2865074|T037|PT|S86.019S|ICD10CM|Strain of unspecified Achilles tendon, sequela|Strain of unspecified Achilles tendon, sequela +C2865074|T037|AB|S86.019S|ICD10CM|Strain of unspecified Achilles tendon, sequela|Strain of unspecified Achilles tendon, sequela +C1386031|T037|HT|S86.02|ICD10CM|Laceration of Achilles tendon|Laceration of Achilles tendon +C1386031|T037|AB|S86.02|ICD10CM|Laceration of Achilles tendon|Laceration of Achilles tendon +C2865075|T037|HT|S86.021|ICD10CM|Laceration of right Achilles tendon|Laceration of right Achilles tendon +C2865075|T037|AB|S86.021|ICD10CM|Laceration of right Achilles tendon|Laceration of right Achilles tendon +C2865076|T037|PT|S86.021A|ICD10CM|Laceration of right Achilles tendon, initial encounter|Laceration of right Achilles tendon, initial encounter +C2865076|T037|AB|S86.021A|ICD10CM|Laceration of right Achilles tendon, initial encounter|Laceration of right Achilles tendon, initial encounter +C2865077|T037|PT|S86.021D|ICD10CM|Laceration of right Achilles tendon, subsequent encounter|Laceration of right Achilles tendon, subsequent encounter +C2865077|T037|AB|S86.021D|ICD10CM|Laceration of right Achilles tendon, subsequent encounter|Laceration of right Achilles tendon, subsequent encounter +C2865078|T037|PT|S86.021S|ICD10CM|Laceration of right Achilles tendon, sequela|Laceration of right Achilles tendon, sequela +C2865078|T037|AB|S86.021S|ICD10CM|Laceration of right Achilles tendon, sequela|Laceration of right Achilles tendon, sequela +C2865079|T037|HT|S86.022|ICD10CM|Laceration of left Achilles tendon|Laceration of left Achilles tendon +C2865079|T037|AB|S86.022|ICD10CM|Laceration of left Achilles tendon|Laceration of left Achilles tendon +C2865080|T037|PT|S86.022A|ICD10CM|Laceration of left Achilles tendon, initial encounter|Laceration of left Achilles tendon, initial encounter +C2865080|T037|AB|S86.022A|ICD10CM|Laceration of left Achilles tendon, initial encounter|Laceration of left Achilles tendon, initial encounter +C2865081|T037|PT|S86.022D|ICD10CM|Laceration of left Achilles tendon, subsequent encounter|Laceration of left Achilles tendon, subsequent encounter +C2865081|T037|AB|S86.022D|ICD10CM|Laceration of left Achilles tendon, subsequent encounter|Laceration of left Achilles tendon, subsequent encounter +C2865082|T037|PT|S86.022S|ICD10CM|Laceration of left Achilles tendon, sequela|Laceration of left Achilles tendon, sequela +C2865082|T037|AB|S86.022S|ICD10CM|Laceration of left Achilles tendon, sequela|Laceration of left Achilles tendon, sequela +C2865083|T037|AB|S86.029|ICD10CM|Laceration of unspecified Achilles tendon|Laceration of unspecified Achilles tendon +C2865083|T037|HT|S86.029|ICD10CM|Laceration of unspecified Achilles tendon|Laceration of unspecified Achilles tendon +C2865084|T037|AB|S86.029A|ICD10CM|Laceration of unspecified Achilles tendon, initial encounter|Laceration of unspecified Achilles tendon, initial encounter +C2865084|T037|PT|S86.029A|ICD10CM|Laceration of unspecified Achilles tendon, initial encounter|Laceration of unspecified Achilles tendon, initial encounter +C2865085|T037|AB|S86.029D|ICD10CM|Laceration of unspecified Achilles tendon, subs encntr|Laceration of unspecified Achilles tendon, subs encntr +C2865085|T037|PT|S86.029D|ICD10CM|Laceration of unspecified Achilles tendon, subsequent encounter|Laceration of unspecified Achilles tendon, subsequent encounter +C2865086|T037|PT|S86.029S|ICD10CM|Laceration of unspecified Achilles tendon, sequela|Laceration of unspecified Achilles tendon, sequela +C2865086|T037|AB|S86.029S|ICD10CM|Laceration of unspecified Achilles tendon, sequela|Laceration of unspecified Achilles tendon, sequela +C2865087|T037|AB|S86.09|ICD10CM|Other specified injury of Achilles tendon|Other specified injury of Achilles tendon +C2865087|T037|HT|S86.09|ICD10CM|Other specified injury of Achilles tendon|Other specified injury of Achilles tendon +C2865088|T037|AB|S86.091|ICD10CM|Other specified injury of right Achilles tendon|Other specified injury of right Achilles tendon +C2865088|T037|HT|S86.091|ICD10CM|Other specified injury of right Achilles tendon|Other specified injury of right Achilles tendon +C2865089|T037|AB|S86.091A|ICD10CM|Other specified injury of right Achilles tendon, init encntr|Other specified injury of right Achilles tendon, init encntr +C2865089|T037|PT|S86.091A|ICD10CM|Other specified injury of right Achilles tendon, initial encounter|Other specified injury of right Achilles tendon, initial encounter +C2865090|T037|AB|S86.091D|ICD10CM|Other specified injury of right Achilles tendon, subs encntr|Other specified injury of right Achilles tendon, subs encntr +C2865090|T037|PT|S86.091D|ICD10CM|Other specified injury of right Achilles tendon, subsequent encounter|Other specified injury of right Achilles tendon, subsequent encounter +C2865091|T037|AB|S86.091S|ICD10CM|Other specified injury of right Achilles tendon, sequela|Other specified injury of right Achilles tendon, sequela +C2865091|T037|PT|S86.091S|ICD10CM|Other specified injury of right Achilles tendon, sequela|Other specified injury of right Achilles tendon, sequela +C2865092|T037|AB|S86.092|ICD10CM|Other specified injury of left Achilles tendon|Other specified injury of left Achilles tendon +C2865092|T037|HT|S86.092|ICD10CM|Other specified injury of left Achilles tendon|Other specified injury of left Achilles tendon +C2865093|T037|AB|S86.092A|ICD10CM|Other specified injury of left Achilles tendon, init encntr|Other specified injury of left Achilles tendon, init encntr +C2865093|T037|PT|S86.092A|ICD10CM|Other specified injury of left Achilles tendon, initial encounter|Other specified injury of left Achilles tendon, initial encounter +C2865094|T037|AB|S86.092D|ICD10CM|Other specified injury of left Achilles tendon, subs encntr|Other specified injury of left Achilles tendon, subs encntr +C2865094|T037|PT|S86.092D|ICD10CM|Other specified injury of left Achilles tendon, subsequent encounter|Other specified injury of left Achilles tendon, subsequent encounter +C2865095|T037|AB|S86.092S|ICD10CM|Other specified injury of left Achilles tendon, sequela|Other specified injury of left Achilles tendon, sequela +C2865095|T037|PT|S86.092S|ICD10CM|Other specified injury of left Achilles tendon, sequela|Other specified injury of left Achilles tendon, sequela +C2865096|T037|AB|S86.099|ICD10CM|Other specified injury of unspecified Achilles tendon|Other specified injury of unspecified Achilles tendon +C2865096|T037|HT|S86.099|ICD10CM|Other specified injury of unspecified Achilles tendon|Other specified injury of unspecified Achilles tendon +C2865097|T037|AB|S86.099A|ICD10CM|Oth injury of unspecified Achilles tendon, init encntr|Oth injury of unspecified Achilles tendon, init encntr +C2865097|T037|PT|S86.099A|ICD10CM|Other specified injury of unspecified Achilles tendon, initial encounter|Other specified injury of unspecified Achilles tendon, initial encounter +C2865098|T037|AB|S86.099D|ICD10CM|Oth injury of unspecified Achilles tendon, subs encntr|Oth injury of unspecified Achilles tendon, subs encntr +C2865098|T037|PT|S86.099D|ICD10CM|Other specified injury of unspecified Achilles tendon, subsequent encounter|Other specified injury of unspecified Achilles tendon, subsequent encounter +C2865099|T037|AB|S86.099S|ICD10CM|Oth injury of unspecified Achilles tendon, sequela|Oth injury of unspecified Achilles tendon, sequela +C2865099|T037|PT|S86.099S|ICD10CM|Other specified injury of unspecified Achilles tendon, sequela|Other specified injury of unspecified Achilles tendon, sequela +C0478342|T037|AB|S86.1|ICD10CM|Injury of musc/tend posterior grp at lower leg level|Injury of musc/tend posterior grp at lower leg level +C0478342|T037|HT|S86.1|ICD10CM|Injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level|Injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level +C0478342|T037|PT|S86.1|ICD10|Injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level|Injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level +C2865100|T037|AB|S86.10|ICD10CM|Unsp injury of musc/tend posterior grp at lower leg level|Unsp injury of musc/tend posterior grp at lower leg level +C2865100|T037|HT|S86.10|ICD10CM|Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level|Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level +C2865101|T037|AB|S86.101|ICD10CM|Unsp inj musc/tend posterior grp at low leg level, right leg|Unsp inj musc/tend posterior grp at low leg level, right leg +C2865102|T037|AB|S86.101A|ICD10CM|Unsp inj musc/tend post grp at low leg lev, right leg, init|Unsp inj musc/tend post grp at low leg lev, right leg, init +C2865103|T037|AB|S86.101D|ICD10CM|Unsp inj musc/tend post grp at low leg lev, right leg, subs|Unsp inj musc/tend post grp at low leg lev, right leg, subs +C2865104|T037|AB|S86.101S|ICD10CM|Unsp inj musc/tend post grp at low leg lev, right leg, sqla|Unsp inj musc/tend post grp at low leg lev, right leg, sqla +C2865105|T037|AB|S86.102|ICD10CM|Unsp inj musc/tend posterior grp at low leg level, left leg|Unsp inj musc/tend posterior grp at low leg level, left leg +C2865106|T037|AB|S86.102A|ICD10CM|Unsp inj musc/tend post grp at low leg level, left leg, init|Unsp inj musc/tend post grp at low leg level, left leg, init +C2865107|T037|AB|S86.102D|ICD10CM|Unsp inj musc/tend post grp at low leg level, left leg, subs|Unsp inj musc/tend post grp at low leg level, left leg, subs +C2865108|T037|AB|S86.102S|ICD10CM|Unsp inj musc/tend post grp at low leg level, left leg, sqla|Unsp inj musc/tend post grp at low leg level, left leg, sqla +C2865109|T037|AB|S86.109|ICD10CM|Unsp inj musc/tend posterior grp at low leg level, unsp leg|Unsp inj musc/tend posterior grp at low leg level, unsp leg +C2865110|T037|AB|S86.109A|ICD10CM|Unsp inj musc/tend post grp at low leg level, unsp leg, init|Unsp inj musc/tend post grp at low leg level, unsp leg, init +C2865111|T037|AB|S86.109D|ICD10CM|Unsp inj musc/tend post grp at low leg level, unsp leg, subs|Unsp inj musc/tend post grp at low leg level, unsp leg, subs +C2865112|T037|AB|S86.109S|ICD10CM|Unsp inj musc/tend post grp at low leg level, unsp leg, sqla|Unsp inj musc/tend post grp at low leg level, unsp leg, sqla +C2865113|T037|AB|S86.11|ICD10CM|Strain of musc/tend posterior grp at lower leg level|Strain of musc/tend posterior grp at lower leg level +C2865113|T037|HT|S86.11|ICD10CM|Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level|Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level +C2865114|T037|AB|S86.111|ICD10CM|Strain of musc/tend post grp at low leg level, right leg|Strain of musc/tend post grp at low leg level, right leg +C2865114|T037|HT|S86.111|ICD10CM|Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg|Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg +C2865115|T037|AB|S86.111A|ICD10CM|Strain musc/tend post grp at low leg level, right leg, init|Strain musc/tend post grp at low leg level, right leg, init +C2865116|T037|AB|S86.111D|ICD10CM|Strain musc/tend post grp at low leg level, right leg, subs|Strain musc/tend post grp at low leg level, right leg, subs +C2865117|T037|AB|S86.111S|ICD10CM|Strain musc/tend post grp at low leg level, right leg, sqla|Strain musc/tend post grp at low leg level, right leg, sqla +C2865118|T037|AB|S86.112|ICD10CM|Strain of musc/tend posterior grp at low leg level, left leg|Strain of musc/tend posterior grp at low leg level, left leg +C2865118|T037|HT|S86.112|ICD10CM|Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg|Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg +C2865119|T037|AB|S86.112A|ICD10CM|Strain musc/tend post grp at low leg level, left leg, init|Strain musc/tend post grp at low leg level, left leg, init +C2865120|T037|AB|S86.112D|ICD10CM|Strain musc/tend post grp at low leg level, left leg, subs|Strain musc/tend post grp at low leg level, left leg, subs +C2865121|T037|AB|S86.112S|ICD10CM|Strain musc/tend post grp at low leg level, left leg, sqla|Strain musc/tend post grp at low leg level, left leg, sqla +C2865122|T037|AB|S86.119|ICD10CM|Strain of musc/tend posterior grp at low leg level, unsp leg|Strain of musc/tend posterior grp at low leg level, unsp leg +C2865123|T037|AB|S86.119A|ICD10CM|Strain musc/tend post grp at low leg level, unsp leg, init|Strain musc/tend post grp at low leg level, unsp leg, init +C2865124|T037|AB|S86.119D|ICD10CM|Strain musc/tend post grp at low leg level, unsp leg, subs|Strain musc/tend post grp at low leg level, unsp leg, subs +C2865125|T037|AB|S86.119S|ICD10CM|Strain musc/tend post grp at low leg level, unsp leg, sqla|Strain musc/tend post grp at low leg level, unsp leg, sqla +C2865126|T037|AB|S86.12|ICD10CM|Lacerat musc/tend posterior muscle group at lower leg level|Lacerat musc/tend posterior muscle group at lower leg level +C2865126|T037|HT|S86.12|ICD10CM|Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level|Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level +C2865127|T037|AB|S86.121|ICD10CM|Lacerat musc/tend posterior grp at low leg level, right leg|Lacerat musc/tend posterior grp at low leg level, right leg +C2865127|T037|HT|S86.121|ICD10CM|Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg|Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg +C2865128|T037|AB|S86.121A|ICD10CM|Lacerat musc/tend post grp at low leg level, right leg, init|Lacerat musc/tend post grp at low leg level, right leg, init +C2865129|T037|AB|S86.121D|ICD10CM|Lacerat musc/tend post grp at low leg level, right leg, subs|Lacerat musc/tend post grp at low leg level, right leg, subs +C2865130|T037|AB|S86.121S|ICD10CM|Lacerat musc/tend post grp at low leg level, right leg, sqla|Lacerat musc/tend post grp at low leg level, right leg, sqla +C2865131|T037|AB|S86.122|ICD10CM|Lacerat musc/tend posterior grp at lower leg level, left leg|Lacerat musc/tend posterior grp at lower leg level, left leg +C2865131|T037|HT|S86.122|ICD10CM|Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg|Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg +C2865132|T037|AB|S86.122A|ICD10CM|Lacerat musc/tend post grp at low leg level, left leg, init|Lacerat musc/tend post grp at low leg level, left leg, init +C2865133|T037|AB|S86.122D|ICD10CM|Lacerat musc/tend post grp at low leg level, left leg, subs|Lacerat musc/tend post grp at low leg level, left leg, subs +C2865134|T037|AB|S86.122S|ICD10CM|Lacerat musc/tend post grp at low leg level, left leg, sqla|Lacerat musc/tend post grp at low leg level, left leg, sqla +C2865135|T037|AB|S86.129|ICD10CM|Lacerat musc/tend posterior grp at lower leg level, unsp leg|Lacerat musc/tend posterior grp at lower leg level, unsp leg +C2865136|T037|AB|S86.129A|ICD10CM|Lacerat musc/tend post grp at low leg level, unsp leg, init|Lacerat musc/tend post grp at low leg level, unsp leg, init +C2865137|T037|AB|S86.129D|ICD10CM|Lacerat musc/tend post grp at low leg level, unsp leg, subs|Lacerat musc/tend post grp at low leg level, unsp leg, subs +C2865138|T037|AB|S86.129S|ICD10CM|Lacerat musc/tend post grp at low leg level, unsp leg, sqla|Lacerat musc/tend post grp at low leg level, unsp leg, sqla +C2865139|T037|AB|S86.19|ICD10CM|Inj oth musc/tend posterior muscle group at lower leg level|Inj oth musc/tend posterior muscle group at lower leg level +C2865139|T037|HT|S86.19|ICD10CM|Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level|Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level +C2865140|T037|AB|S86.191|ICD10CM|Inj oth musc/tend posterior grp at low leg level, right leg|Inj oth musc/tend posterior grp at low leg level, right leg +C2865141|T037|AB|S86.191A|ICD10CM|Inj oth musc/tend post grp at low leg level, right leg, init|Inj oth musc/tend post grp at low leg level, right leg, init +C2865142|T037|AB|S86.191D|ICD10CM|Inj oth musc/tend post grp at low leg level, right leg, subs|Inj oth musc/tend post grp at low leg level, right leg, subs +C2865143|T037|AB|S86.191S|ICD10CM|Inj oth musc/tend post grp at low leg level, right leg, sqla|Inj oth musc/tend post grp at low leg level, right leg, sqla +C2865144|T037|AB|S86.192|ICD10CM|Inj oth musc/tend posterior grp at lower leg level, left leg|Inj oth musc/tend posterior grp at lower leg level, left leg +C2865144|T037|HT|S86.192|ICD10CM|Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg|Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg +C2865145|T037|AB|S86.192A|ICD10CM|Inj oth musc/tend post grp at low leg level, left leg, init|Inj oth musc/tend post grp at low leg level, left leg, init +C2865146|T037|AB|S86.192D|ICD10CM|Inj oth musc/tend post grp at low leg level, left leg, subs|Inj oth musc/tend post grp at low leg level, left leg, subs +C2865147|T037|AB|S86.192S|ICD10CM|Inj oth musc/tend post grp at low leg level, left leg, sqla|Inj oth musc/tend post grp at low leg level, left leg, sqla +C2865148|T037|AB|S86.199|ICD10CM|Inj oth musc/tend posterior grp at lower leg level, unsp leg|Inj oth musc/tend posterior grp at lower leg level, unsp leg +C2865149|T037|AB|S86.199A|ICD10CM|Inj oth musc/tend post grp at low leg level, unsp leg, init|Inj oth musc/tend post grp at low leg level, unsp leg, init +C2865150|T037|AB|S86.199D|ICD10CM|Inj oth musc/tend post grp at low leg level, unsp leg, subs|Inj oth musc/tend post grp at low leg level, unsp leg, subs +C2865151|T037|AB|S86.199S|ICD10CM|Inj oth musc/tend post grp at low leg level, unsp leg, sqla|Inj oth musc/tend post grp at low leg level, unsp leg, sqla +C0451861|T037|AB|S86.2|ICD10CM|Injury of musc/tend anterior muscle group at lower leg level|Injury of musc/tend anterior muscle group at lower leg level +C0451861|T037|HT|S86.2|ICD10CM|Injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level|Injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level +C0451861|T037|PT|S86.2|ICD10|Injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level|Injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level +C2865152|T037|AB|S86.20|ICD10CM|Unsp injury of musc/tend anterior grp at lower leg level|Unsp injury of musc/tend anterior grp at lower leg level +C2865152|T037|HT|S86.20|ICD10CM|Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level|Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level +C2865153|T037|AB|S86.201|ICD10CM|Unsp inj musc/tend anterior grp at low leg level, right leg|Unsp inj musc/tend anterior grp at low leg level, right leg +C2865153|T037|HT|S86.201|ICD10CM|Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg|Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg +C2865154|T037|AB|S86.201A|ICD10CM|Unsp inj musc/tend ant grp at low leg level, right leg, init|Unsp inj musc/tend ant grp at low leg level, right leg, init +C2865155|T037|AB|S86.201D|ICD10CM|Unsp inj musc/tend ant grp at low leg level, right leg, subs|Unsp inj musc/tend ant grp at low leg level, right leg, subs +C2865156|T037|AB|S86.201S|ICD10CM|Unsp inj musc/tend ant grp at low leg level, right leg, sqla|Unsp inj musc/tend ant grp at low leg level, right leg, sqla +C2865157|T037|AB|S86.202|ICD10CM|Unsp inj musc/tend anterior grp at lower leg level, left leg|Unsp inj musc/tend anterior grp at lower leg level, left leg +C2865157|T037|HT|S86.202|ICD10CM|Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg|Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg +C2865158|T037|AB|S86.202A|ICD10CM|Unsp inj musc/tend ant grp at low leg level, left leg, init|Unsp inj musc/tend ant grp at low leg level, left leg, init +C2865159|T037|AB|S86.202D|ICD10CM|Unsp inj musc/tend ant grp at low leg level, left leg, subs|Unsp inj musc/tend ant grp at low leg level, left leg, subs +C2865160|T037|AB|S86.202S|ICD10CM|Unsp inj musc/tend ant grp at low leg level, left leg, sqla|Unsp inj musc/tend ant grp at low leg level, left leg, sqla +C2865161|T037|AB|S86.209|ICD10CM|Unsp inj musc/tend anterior grp at lower leg level, unsp leg|Unsp inj musc/tend anterior grp at lower leg level, unsp leg +C2865162|T037|AB|S86.209A|ICD10CM|Unsp inj musc/tend ant grp at low leg level, unsp leg, init|Unsp inj musc/tend ant grp at low leg level, unsp leg, init +C2865163|T037|AB|S86.209D|ICD10CM|Unsp inj musc/tend ant grp at low leg level, unsp leg, subs|Unsp inj musc/tend ant grp at low leg level, unsp leg, subs +C2865164|T037|AB|S86.209S|ICD10CM|Unsp inj musc/tend ant grp at low leg level, unsp leg, sqla|Unsp inj musc/tend ant grp at low leg level, unsp leg, sqla +C2865165|T037|AB|S86.21|ICD10CM|Strain of musc/tend anterior muscle group at lower leg level|Strain of musc/tend anterior muscle group at lower leg level +C2865165|T037|HT|S86.21|ICD10CM|Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level|Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level +C2865166|T037|AB|S86.211|ICD10CM|Strain of musc/tend anterior grp at low leg level, right leg|Strain of musc/tend anterior grp at low leg level, right leg +C2865166|T037|HT|S86.211|ICD10CM|Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg|Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg +C2865167|T037|AB|S86.211A|ICD10CM|Strain musc/tend ant grp at low leg level, right leg, init|Strain musc/tend ant grp at low leg level, right leg, init +C2865168|T037|AB|S86.211D|ICD10CM|Strain musc/tend ant grp at low leg level, right leg, subs|Strain musc/tend ant grp at low leg level, right leg, subs +C2865169|T037|AB|S86.211S|ICD10CM|Strain musc/tend ant grp at low leg level, right leg, sqla|Strain musc/tend ant grp at low leg level, right leg, sqla +C2865169|T037|PT|S86.211S|ICD10CM|Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, sequela|Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, sequela +C2865170|T037|AB|S86.212|ICD10CM|Strain of musc/tend anterior grp at low leg level, left leg|Strain of musc/tend anterior grp at low leg level, left leg +C2865170|T037|HT|S86.212|ICD10CM|Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg|Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg +C2865171|T037|AB|S86.212A|ICD10CM|Strain musc/tend ant grp at low leg level, left leg, init|Strain musc/tend ant grp at low leg level, left leg, init +C2865172|T037|AB|S86.212D|ICD10CM|Strain musc/tend ant grp at low leg level, left leg, subs|Strain musc/tend ant grp at low leg level, left leg, subs +C2865173|T037|AB|S86.212S|ICD10CM|Strain musc/tend ant grp at low leg level, left leg, sequela|Strain musc/tend ant grp at low leg level, left leg, sequela +C2865173|T037|PT|S86.212S|ICD10CM|Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, sequela|Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, sequela +C2865174|T037|AB|S86.219|ICD10CM|Strain of musc/tend anterior grp at low leg level, unsp leg|Strain of musc/tend anterior grp at low leg level, unsp leg +C2865174|T037|HT|S86.219|ICD10CM|Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg|Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg +C2865175|T037|AB|S86.219A|ICD10CM|Strain musc/tend ant grp at low leg level, unsp leg, init|Strain musc/tend ant grp at low leg level, unsp leg, init +C2865176|T037|AB|S86.219D|ICD10CM|Strain musc/tend ant grp at low leg level, unsp leg, subs|Strain musc/tend ant grp at low leg level, unsp leg, subs +C2865177|T037|AB|S86.219S|ICD10CM|Strain musc/tend ant grp at low leg level, unsp leg, sequela|Strain musc/tend ant grp at low leg level, unsp leg, sequela +C2865178|T037|AB|S86.22|ICD10CM|Lacerat musc/tend anterior muscle group at lower leg level|Lacerat musc/tend anterior muscle group at lower leg level +C2865178|T037|HT|S86.22|ICD10CM|Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level|Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level +C2865179|T037|AB|S86.221|ICD10CM|Lacerat musc/tend anterior grp at lower leg level, right leg|Lacerat musc/tend anterior grp at lower leg level, right leg +C2865179|T037|HT|S86.221|ICD10CM|Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg|Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg +C2865180|T037|AB|S86.221A|ICD10CM|Lacerat musc/tend ant grp at low leg level, right leg, init|Lacerat musc/tend ant grp at low leg level, right leg, init +C2865181|T037|AB|S86.221D|ICD10CM|Lacerat musc/tend ant grp at low leg level, right leg, subs|Lacerat musc/tend ant grp at low leg level, right leg, subs +C2865182|T037|AB|S86.221S|ICD10CM|Lacerat musc/tend ant grp at low leg level, right leg, sqla|Lacerat musc/tend ant grp at low leg level, right leg, sqla +C2865183|T037|AB|S86.222|ICD10CM|Lacerat musc/tend anterior grp at lower leg level, left leg|Lacerat musc/tend anterior grp at lower leg level, left leg +C2865183|T037|HT|S86.222|ICD10CM|Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg|Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg +C2865184|T037|AB|S86.222A|ICD10CM|Lacerat musc/tend ant grp at low leg level, left leg, init|Lacerat musc/tend ant grp at low leg level, left leg, init +C2865185|T037|AB|S86.222D|ICD10CM|Lacerat musc/tend ant grp at low leg level, left leg, subs|Lacerat musc/tend ant grp at low leg level, left leg, subs +C2865186|T037|AB|S86.222S|ICD10CM|Lacerat musc/tend ant grp at low leg level, left leg, sqla|Lacerat musc/tend ant grp at low leg level, left leg, sqla +C2865186|T037|PT|S86.222S|ICD10CM|Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, sequela|Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, sequela +C2865187|T037|AB|S86.229|ICD10CM|Lacerat musc/tend anterior grp at lower leg level, unsp leg|Lacerat musc/tend anterior grp at lower leg level, unsp leg +C2865187|T037|HT|S86.229|ICD10CM|Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg|Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg +C2865188|T037|AB|S86.229A|ICD10CM|Lacerat musc/tend ant grp at low leg level, unsp leg, init|Lacerat musc/tend ant grp at low leg level, unsp leg, init +C2865189|T037|AB|S86.229D|ICD10CM|Lacerat musc/tend ant grp at low leg level, unsp leg, subs|Lacerat musc/tend ant grp at low leg level, unsp leg, subs +C2865190|T037|AB|S86.229S|ICD10CM|Lacerat musc/tend ant grp at low leg level, unsp leg, sqla|Lacerat musc/tend ant grp at low leg level, unsp leg, sqla +C2865191|T037|AB|S86.29|ICD10CM|Inj musc/tend anterior muscle group at lower leg level|Inj musc/tend anterior muscle group at lower leg level +C2865191|T037|HT|S86.29|ICD10CM|Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level|Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level +C2865192|T037|AB|S86.291|ICD10CM|Inj musc/tend anterior grp at lower leg level, right leg|Inj musc/tend anterior grp at lower leg level, right leg +C2865192|T037|HT|S86.291|ICD10CM|Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg|Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg +C2865193|T037|AB|S86.291A|ICD10CM|Inj musc/tend anterior grp at low leg level, right leg, init|Inj musc/tend anterior grp at low leg level, right leg, init +C2865194|T037|AB|S86.291D|ICD10CM|Inj musc/tend anterior grp at low leg level, right leg, subs|Inj musc/tend anterior grp at low leg level, right leg, subs +C2865195|T037|AB|S86.291S|ICD10CM|Inj musc/tend ant grp at low leg level, right leg, sequela|Inj musc/tend ant grp at low leg level, right leg, sequela +C2865196|T037|AB|S86.292|ICD10CM|Inj musc/tend anterior grp at lower leg level, left leg|Inj musc/tend anterior grp at lower leg level, left leg +C2865196|T037|HT|S86.292|ICD10CM|Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg|Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg +C2865197|T037|AB|S86.292A|ICD10CM|Inj musc/tend anterior grp at low leg level, left leg, init|Inj musc/tend anterior grp at low leg level, left leg, init +C2865198|T037|AB|S86.292D|ICD10CM|Inj musc/tend anterior grp at low leg level, left leg, subs|Inj musc/tend anterior grp at low leg level, left leg, subs +C2865199|T037|AB|S86.292S|ICD10CM|Inj musc/tend ant grp at low leg level, left leg, sequela|Inj musc/tend ant grp at low leg level, left leg, sequela +C2865200|T037|AB|S86.299|ICD10CM|Inj musc/tend anterior grp at lower leg level, unsp leg|Inj musc/tend anterior grp at lower leg level, unsp leg +C2865200|T037|HT|S86.299|ICD10CM|Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg|Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg +C2865201|T037|AB|S86.299A|ICD10CM|Inj musc/tend anterior grp at low leg level, unsp leg, init|Inj musc/tend anterior grp at low leg level, unsp leg, init +C2865202|T037|AB|S86.299D|ICD10CM|Inj musc/tend anterior grp at low leg level, unsp leg, subs|Inj musc/tend anterior grp at low leg level, unsp leg, subs +C2865203|T037|AB|S86.299S|ICD10CM|Inj musc/tend ant grp at low leg level, unsp leg, sequela|Inj musc/tend ant grp at low leg level, unsp leg, sequela +C0451862|T037|AB|S86.3|ICD10CM|Injury of musc/tend peroneal muscle group at lower leg level|Injury of musc/tend peroneal muscle group at lower leg level +C0451862|T037|HT|S86.3|ICD10CM|Injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level|Injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level +C0451862|T037|PT|S86.3|ICD10|Injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level|Injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level +C2865204|T037|AB|S86.30|ICD10CM|Unsp injury of musc/tend peroneal grp at lower leg level|Unsp injury of musc/tend peroneal grp at lower leg level +C2865204|T037|HT|S86.30|ICD10CM|Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level|Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level +C2865205|T037|AB|S86.301|ICD10CM|Unsp inj musc/tend peroneal grp at low leg level, right leg|Unsp inj musc/tend peroneal grp at low leg level, right leg +C2865205|T037|HT|S86.301|ICD10CM|Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg|Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg +C2865206|T037|AB|S86.301A|ICD10CM|Unsp inj musc/tend peroneal grp at low leg lev, r leg, init|Unsp inj musc/tend peroneal grp at low leg lev, r leg, init +C2865207|T037|AB|S86.301D|ICD10CM|Unsp inj musc/tend peroneal grp at low leg lev, r leg, subs|Unsp inj musc/tend peroneal grp at low leg lev, r leg, subs +C2865208|T037|AB|S86.301S|ICD10CM|Unsp inj musc/tend peroneal grp at low leg lev, r leg, sqla|Unsp inj musc/tend peroneal grp at low leg lev, r leg, sqla +C2865209|T037|AB|S86.302|ICD10CM|Unsp inj musc/tend peroneal grp at lower leg level, left leg|Unsp inj musc/tend peroneal grp at lower leg level, left leg +C2865209|T037|HT|S86.302|ICD10CM|Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg|Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg +C2865210|T037|AB|S86.302A|ICD10CM|Unsp inj musc/tend peroneal grp at low leg lev, l leg, init|Unsp inj musc/tend peroneal grp at low leg lev, l leg, init +C2865211|T037|AB|S86.302D|ICD10CM|Unsp inj musc/tend peroneal grp at low leg lev, l leg, subs|Unsp inj musc/tend peroneal grp at low leg lev, l leg, subs +C2865212|T037|AB|S86.302S|ICD10CM|Unsp inj musc/tend peroneal grp at low leg lev, l leg, sqla|Unsp inj musc/tend peroneal grp at low leg lev, l leg, sqla +C2865213|T037|AB|S86.309|ICD10CM|Unsp inj musc/tend peroneal grp at lower leg level, unsp leg|Unsp inj musc/tend peroneal grp at lower leg level, unsp leg +C2865214|T037|AB|S86.309A|ICD10CM|Unsp inj musc/tend peroneal grp at low leg lev,unsp leg,init|Unsp inj musc/tend peroneal grp at low leg lev,unsp leg,init +C2865215|T037|AB|S86.309D|ICD10CM|Unsp inj musc/tend peroneal grp at low leg lev,unsp leg,subs|Unsp inj musc/tend peroneal grp at low leg lev,unsp leg,subs +C2865216|T037|AB|S86.309S|ICD10CM|Unsp inj musc/tend peroneal grp at low leg lev,unsp leg,sqla|Unsp inj musc/tend peroneal grp at low leg lev,unsp leg,sqla +C2865217|T037|AB|S86.31|ICD10CM|Strain of musc/tend peroneal muscle group at lower leg level|Strain of musc/tend peroneal muscle group at lower leg level +C2865217|T037|HT|S86.31|ICD10CM|Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level|Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level +C2865218|T037|AB|S86.311|ICD10CM|Strain of musc/tend peroneal grp at low leg level, right leg|Strain of musc/tend peroneal grp at low leg level, right leg +C2865218|T037|HT|S86.311|ICD10CM|Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg|Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg +C2865219|T037|AB|S86.311A|ICD10CM|Strain musc/tend peroneal grp at low leg lev, r leg, init|Strain musc/tend peroneal grp at low leg lev, r leg, init +C2865220|T037|AB|S86.311D|ICD10CM|Strain musc/tend peroneal grp at low leg lev, r leg, subs|Strain musc/tend peroneal grp at low leg lev, r leg, subs +C2865221|T037|AB|S86.311S|ICD10CM|Strain musc/tend peroneal grp at low leg lev, r leg, sqla|Strain musc/tend peroneal grp at low leg lev, r leg, sqla +C2865221|T037|PT|S86.311S|ICD10CM|Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, sequela|Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, sequela +C2865222|T037|AB|S86.312|ICD10CM|Strain of musc/tend peroneal grp at low leg level, left leg|Strain of musc/tend peroneal grp at low leg level, left leg +C2865222|T037|HT|S86.312|ICD10CM|Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg|Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg +C2865223|T037|AB|S86.312A|ICD10CM|Strain musc/tend peroneal grp at low leg lev, left leg, init|Strain musc/tend peroneal grp at low leg lev, left leg, init +C2865224|T037|AB|S86.312D|ICD10CM|Strain musc/tend peroneal grp at low leg lev, left leg, subs|Strain musc/tend peroneal grp at low leg lev, left leg, subs +C2865225|T037|AB|S86.312S|ICD10CM|Strain musc/tend peroneal grp at low leg lev, left leg, sqla|Strain musc/tend peroneal grp at low leg lev, left leg, sqla +C2865225|T037|PT|S86.312S|ICD10CM|Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, sequela|Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, sequela +C2865226|T037|AB|S86.319|ICD10CM|Strain of musc/tend peroneal grp at low leg level, unsp leg|Strain of musc/tend peroneal grp at low leg level, unsp leg +C2865226|T037|HT|S86.319|ICD10CM|Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg|Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg +C2865227|T037|AB|S86.319A|ICD10CM|Strain musc/tend peroneal grp at low leg lev, unsp leg, init|Strain musc/tend peroneal grp at low leg lev, unsp leg, init +C2865228|T037|AB|S86.319D|ICD10CM|Strain musc/tend peroneal grp at low leg lev, unsp leg, subs|Strain musc/tend peroneal grp at low leg lev, unsp leg, subs +C2865229|T037|AB|S86.319S|ICD10CM|Strain musc/tend peroneal grp at low leg lev, unsp leg, sqla|Strain musc/tend peroneal grp at low leg lev, unsp leg, sqla +C2865230|T037|AB|S86.32|ICD10CM|Lacerat musc/tend peroneal muscle group at lower leg level|Lacerat musc/tend peroneal muscle group at lower leg level +C2865230|T037|HT|S86.32|ICD10CM|Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level|Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level +C2865231|T037|AB|S86.321|ICD10CM|Lacerat musc/tend peroneal grp at lower leg level, right leg|Lacerat musc/tend peroneal grp at lower leg level, right leg +C2865231|T037|HT|S86.321|ICD10CM|Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg|Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg +C2865232|T037|AB|S86.321A|ICD10CM|Lacerat musc/tend peroneal grp at low leg lev, r leg, init|Lacerat musc/tend peroneal grp at low leg lev, r leg, init +C2865233|T037|AB|S86.321D|ICD10CM|Lacerat musc/tend peroneal grp at low leg lev, r leg, subs|Lacerat musc/tend peroneal grp at low leg lev, r leg, subs +C2865234|T037|AB|S86.321S|ICD10CM|Lacerat musc/tend peroneal grp at low leg lev, r leg, sqla|Lacerat musc/tend peroneal grp at low leg lev, r leg, sqla +C2865235|T037|AB|S86.322|ICD10CM|Lacerat musc/tend peroneal grp at lower leg level, left leg|Lacerat musc/tend peroneal grp at lower leg level, left leg +C2865235|T037|HT|S86.322|ICD10CM|Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg|Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg +C2865236|T037|AB|S86.322A|ICD10CM|Lacerat musc/tend peroneal grp at low leg lev, l leg, init|Lacerat musc/tend peroneal grp at low leg lev, l leg, init +C2865237|T037|AB|S86.322D|ICD10CM|Lacerat musc/tend peroneal grp at low leg lev, l leg, subs|Lacerat musc/tend peroneal grp at low leg lev, l leg, subs +C2865238|T037|AB|S86.322S|ICD10CM|Lacerat musc/tend peroneal grp at low leg lev, l leg, sqla|Lacerat musc/tend peroneal grp at low leg lev, l leg, sqla +C2865238|T037|PT|S86.322S|ICD10CM|Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, sequela|Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, sequela +C2865239|T037|AB|S86.329|ICD10CM|Lacerat musc/tend peroneal grp at lower leg level, unsp leg|Lacerat musc/tend peroneal grp at lower leg level, unsp leg +C2865239|T037|HT|S86.329|ICD10CM|Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg|Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg +C2865240|T037|AB|S86.329A|ICD10CM|Lacerat musc/tend peroneal grp at low leg lev,unsp leg, init|Lacerat musc/tend peroneal grp at low leg lev,unsp leg, init +C2865241|T037|AB|S86.329D|ICD10CM|Lacerat musc/tend peroneal grp at low leg lev,unsp leg, subs|Lacerat musc/tend peroneal grp at low leg lev,unsp leg, subs +C2865242|T037|AB|S86.329S|ICD10CM|Lacerat musc/tend peroneal grp at low leg lev,unsp leg, sqla|Lacerat musc/tend peroneal grp at low leg lev,unsp leg, sqla +C2865243|T037|AB|S86.39|ICD10CM|Inj musc/tend peroneal muscle group at lower leg level|Inj musc/tend peroneal muscle group at lower leg level +C2865243|T037|HT|S86.39|ICD10CM|Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level|Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level +C2865244|T037|AB|S86.391|ICD10CM|Inj musc/tend peroneal grp at lower leg level, right leg|Inj musc/tend peroneal grp at lower leg level, right leg +C2865244|T037|HT|S86.391|ICD10CM|Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg|Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg +C2865245|T037|AB|S86.391A|ICD10CM|Inj musc/tend peroneal grp at low leg level, right leg, init|Inj musc/tend peroneal grp at low leg level, right leg, init +C2865246|T037|AB|S86.391D|ICD10CM|Inj musc/tend peroneal grp at low leg level, right leg, subs|Inj musc/tend peroneal grp at low leg level, right leg, subs +C2865247|T037|AB|S86.391S|ICD10CM|Inj musc/tend peroneal grp at low leg level, right leg, sqla|Inj musc/tend peroneal grp at low leg level, right leg, sqla +C2865248|T037|AB|S86.392|ICD10CM|Inj musc/tend peroneal grp at lower leg level, left leg|Inj musc/tend peroneal grp at lower leg level, left leg +C2865248|T037|HT|S86.392|ICD10CM|Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg|Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg +C2865249|T037|AB|S86.392A|ICD10CM|Inj musc/tend peroneal grp at low leg level, left leg, init|Inj musc/tend peroneal grp at low leg level, left leg, init +C2865250|T037|AB|S86.392D|ICD10CM|Inj musc/tend peroneal grp at low leg level, left leg, subs|Inj musc/tend peroneal grp at low leg level, left leg, subs +C2865251|T037|AB|S86.392S|ICD10CM|Inj musc/tend peroneal grp at low leg level, left leg, sqla|Inj musc/tend peroneal grp at low leg level, left leg, sqla +C2865252|T037|AB|S86.399|ICD10CM|Inj musc/tend peroneal grp at lower leg level, unsp leg|Inj musc/tend peroneal grp at lower leg level, unsp leg +C2865252|T037|HT|S86.399|ICD10CM|Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg|Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg +C2865253|T037|AB|S86.399A|ICD10CM|Inj musc/tend peroneal grp at low leg level, unsp leg, init|Inj musc/tend peroneal grp at low leg level, unsp leg, init +C2865254|T037|AB|S86.399D|ICD10CM|Inj musc/tend peroneal grp at low leg level, unsp leg, subs|Inj musc/tend peroneal grp at low leg level, unsp leg, subs +C2865255|T037|AB|S86.399S|ICD10CM|Inj musc/tend peroneal grp at low leg level, unsp leg, sqla|Inj musc/tend peroneal grp at low leg level, unsp leg, sqla +C0451866|T037|PT|S86.7|ICD10|Injury of multiple muscles and tendons at lower leg level|Injury of multiple muscles and tendons at lower leg level +C0478343|T037|PT|S86.8|ICD10|Injury of other muscles and tendons at lower leg level|Injury of other muscles and tendons at lower leg level +C0478343|T037|HT|S86.8|ICD10CM|Injury of other muscles and tendons at lower leg level|Injury of other muscles and tendons at lower leg level +C0478343|T037|AB|S86.8|ICD10CM|Injury of other muscles and tendons at lower leg level|Injury of other muscles and tendons at lower leg level +C2865256|T037|AB|S86.80|ICD10CM|Unsp injury of other muscles and tendons at lower leg level|Unsp injury of other muscles and tendons at lower leg level +C2865256|T037|HT|S86.80|ICD10CM|Unspecified injury of other muscles and tendons at lower leg level|Unspecified injury of other muscles and tendons at lower leg level +C2865257|T037|AB|S86.801|ICD10CM|Unsp injury of musc/tend at lower leg level, right leg|Unsp injury of musc/tend at lower leg level, right leg +C2865257|T037|HT|S86.801|ICD10CM|Unspecified injury of other muscle(s) and tendon(s) at lower leg level, right leg|Unspecified injury of other muscle(s) and tendon(s) at lower leg level, right leg +C2865258|T037|AB|S86.801A|ICD10CM|Unsp injury of musc/tend at lower leg level, right leg, init|Unsp injury of musc/tend at lower leg level, right leg, init +C2865258|T037|PT|S86.801A|ICD10CM|Unspecified injury of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter|Unspecified injury of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter +C2865259|T037|AB|S86.801D|ICD10CM|Unsp injury of musc/tend at lower leg level, right leg, subs|Unsp injury of musc/tend at lower leg level, right leg, subs +C2865260|T037|AB|S86.801S|ICD10CM|Unsp inj musc/tend at lower leg level, right leg, sequela|Unsp inj musc/tend at lower leg level, right leg, sequela +C2865260|T037|PT|S86.801S|ICD10CM|Unspecified injury of other muscle(s) and tendon(s) at lower leg level, right leg, sequela|Unspecified injury of other muscle(s) and tendon(s) at lower leg level, right leg, sequela +C2865261|T037|AB|S86.802|ICD10CM|Unsp injury of musc/tend at lower leg level, left leg|Unsp injury of musc/tend at lower leg level, left leg +C2865261|T037|HT|S86.802|ICD10CM|Unspecified injury of other muscle(s) and tendon(s) at lower leg level, left leg|Unspecified injury of other muscle(s) and tendon(s) at lower leg level, left leg +C2865262|T037|AB|S86.802A|ICD10CM|Unsp injury of musc/tend at lower leg level, left leg, init|Unsp injury of musc/tend at lower leg level, left leg, init +C2865262|T037|PT|S86.802A|ICD10CM|Unspecified injury of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter|Unspecified injury of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter +C2865263|T037|AB|S86.802D|ICD10CM|Unsp injury of musc/tend at lower leg level, left leg, subs|Unsp injury of musc/tend at lower leg level, left leg, subs +C2865264|T037|AB|S86.802S|ICD10CM|Unsp inj musc/tend at lower leg level, left leg, sequela|Unsp inj musc/tend at lower leg level, left leg, sequela +C2865264|T037|PT|S86.802S|ICD10CM|Unspecified injury of other muscle(s) and tendon(s) at lower leg level, left leg, sequela|Unspecified injury of other muscle(s) and tendon(s) at lower leg level, left leg, sequela +C2865265|T037|AB|S86.809|ICD10CM|Unsp injury of musc/tend at lower leg level, unsp leg|Unsp injury of musc/tend at lower leg level, unsp leg +C2865265|T037|HT|S86.809|ICD10CM|Unspecified injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg|Unspecified injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg +C2865266|T037|AB|S86.809A|ICD10CM|Unsp injury of musc/tend at lower leg level, unsp leg, init|Unsp injury of musc/tend at lower leg level, unsp leg, init +C2865267|T037|AB|S86.809D|ICD10CM|Unsp injury of musc/tend at lower leg level, unsp leg, subs|Unsp injury of musc/tend at lower leg level, unsp leg, subs +C2865268|T037|AB|S86.809S|ICD10CM|Unsp inj musc/tend at lower leg level, unsp leg, sequela|Unsp inj musc/tend at lower leg level, unsp leg, sequela +C2865268|T037|PT|S86.809S|ICD10CM|Unspecified injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela|Unspecified injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela +C2865269|T037|AB|S86.81|ICD10CM|Strain of other muscles and tendons at lower leg level|Strain of other muscles and tendons at lower leg level +C2865269|T037|HT|S86.81|ICD10CM|Strain of other muscles and tendons at lower leg level|Strain of other muscles and tendons at lower leg level +C2865270|T037|AB|S86.811|ICD10CM|Strain of musc/tend at lower leg level, right leg|Strain of musc/tend at lower leg level, right leg +C2865270|T037|HT|S86.811|ICD10CM|Strain of other muscle(s) and tendon(s) at lower leg level, right leg|Strain of other muscle(s) and tendon(s) at lower leg level, right leg +C2865271|T037|AB|S86.811A|ICD10CM|Strain of musc/tend at lower leg level, right leg, init|Strain of musc/tend at lower leg level, right leg, init +C2865271|T037|PT|S86.811A|ICD10CM|Strain of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter|Strain of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter +C2865272|T037|AB|S86.811D|ICD10CM|Strain of musc/tend at lower leg level, right leg, subs|Strain of musc/tend at lower leg level, right leg, subs +C2865272|T037|PT|S86.811D|ICD10CM|Strain of other muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter|Strain of other muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter +C2865273|T037|AB|S86.811S|ICD10CM|Strain of musc/tend at lower leg level, right leg, sequela|Strain of musc/tend at lower leg level, right leg, sequela +C2865273|T037|PT|S86.811S|ICD10CM|Strain of other muscle(s) and tendon(s) at lower leg level, right leg, sequela|Strain of other muscle(s) and tendon(s) at lower leg level, right leg, sequela +C2865274|T037|AB|S86.812|ICD10CM|Strain of musc/tend at lower leg level, left leg|Strain of musc/tend at lower leg level, left leg +C2865274|T037|HT|S86.812|ICD10CM|Strain of other muscle(s) and tendon(s) at lower leg level, left leg|Strain of other muscle(s) and tendon(s) at lower leg level, left leg +C2865275|T037|AB|S86.812A|ICD10CM|Strain of musc/tend at lower leg level, left leg, init|Strain of musc/tend at lower leg level, left leg, init +C2865275|T037|PT|S86.812A|ICD10CM|Strain of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter|Strain of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter +C2865276|T037|AB|S86.812D|ICD10CM|Strain of musc/tend at lower leg level, left leg, subs|Strain of musc/tend at lower leg level, left leg, subs +C2865276|T037|PT|S86.812D|ICD10CM|Strain of other muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter|Strain of other muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter +C2865277|T037|AB|S86.812S|ICD10CM|Strain of musc/tend at lower leg level, left leg, sequela|Strain of musc/tend at lower leg level, left leg, sequela +C2865277|T037|PT|S86.812S|ICD10CM|Strain of other muscle(s) and tendon(s) at lower leg level, left leg, sequela|Strain of other muscle(s) and tendon(s) at lower leg level, left leg, sequela +C2865278|T037|AB|S86.819|ICD10CM|Strain of musc/tend at lower leg level, unsp leg|Strain of musc/tend at lower leg level, unsp leg +C2865278|T037|HT|S86.819|ICD10CM|Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg|Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg +C2865279|T037|AB|S86.819A|ICD10CM|Strain of musc/tend at lower leg level, unsp leg, init|Strain of musc/tend at lower leg level, unsp leg, init +C2865279|T037|PT|S86.819A|ICD10CM|Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter|Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter +C2865280|T037|AB|S86.819D|ICD10CM|Strain of musc/tend at lower leg level, unsp leg, subs|Strain of musc/tend at lower leg level, unsp leg, subs +C2865280|T037|PT|S86.819D|ICD10CM|Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter|Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter +C2865281|T037|AB|S86.819S|ICD10CM|Strain of musc/tend at lower leg level, unsp leg, sequela|Strain of musc/tend at lower leg level, unsp leg, sequela +C2865281|T037|PT|S86.819S|ICD10CM|Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela|Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela +C2865282|T037|AB|S86.82|ICD10CM|Laceration of other muscles and tendons at lower leg level|Laceration of other muscles and tendons at lower leg level +C2865282|T037|HT|S86.82|ICD10CM|Laceration of other muscles and tendons at lower leg level|Laceration of other muscles and tendons at lower leg level +C2865283|T037|AB|S86.821|ICD10CM|Laceration of musc/tend at lower leg level, right leg|Laceration of musc/tend at lower leg level, right leg +C2865283|T037|HT|S86.821|ICD10CM|Laceration of other muscle(s) and tendon(s) at lower leg level, right leg|Laceration of other muscle(s) and tendon(s) at lower leg level, right leg +C2865284|T037|AB|S86.821A|ICD10CM|Laceration of musc/tend at lower leg level, right leg, init|Laceration of musc/tend at lower leg level, right leg, init +C2865284|T037|PT|S86.821A|ICD10CM|Laceration of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter|Laceration of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter +C2865285|T037|AB|S86.821D|ICD10CM|Laceration of musc/tend at lower leg level, right leg, subs|Laceration of musc/tend at lower leg level, right leg, subs +C2865285|T037|PT|S86.821D|ICD10CM|Laceration of other muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter|Laceration of other muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter +C2865286|T037|AB|S86.821S|ICD10CM|Lacerat musc/tend at lower leg level, right leg, sequela|Lacerat musc/tend at lower leg level, right leg, sequela +C2865286|T037|PT|S86.821S|ICD10CM|Laceration of other muscle(s) and tendon(s) at lower leg level, right leg, sequela|Laceration of other muscle(s) and tendon(s) at lower leg level, right leg, sequela +C2865287|T037|AB|S86.822|ICD10CM|Laceration of musc/tend at lower leg level, left leg|Laceration of musc/tend at lower leg level, left leg +C2865287|T037|HT|S86.822|ICD10CM|Laceration of other muscle(s) and tendon(s) at lower leg level, left leg|Laceration of other muscle(s) and tendon(s) at lower leg level, left leg +C2865288|T037|AB|S86.822A|ICD10CM|Laceration of musc/tend at lower leg level, left leg, init|Laceration of musc/tend at lower leg level, left leg, init +C2865288|T037|PT|S86.822A|ICD10CM|Laceration of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter|Laceration of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter +C2865289|T037|AB|S86.822D|ICD10CM|Laceration of musc/tend at lower leg level, left leg, subs|Laceration of musc/tend at lower leg level, left leg, subs +C2865289|T037|PT|S86.822D|ICD10CM|Laceration of other muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter|Laceration of other muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter +C2865290|T037|AB|S86.822S|ICD10CM|Lacerat musc/tend at lower leg level, left leg, sequela|Lacerat musc/tend at lower leg level, left leg, sequela +C2865290|T037|PT|S86.822S|ICD10CM|Laceration of other muscle(s) and tendon(s) at lower leg level, left leg, sequela|Laceration of other muscle(s) and tendon(s) at lower leg level, left leg, sequela +C2865291|T037|AB|S86.829|ICD10CM|Laceration of musc/tend at lower leg level, unsp leg|Laceration of musc/tend at lower leg level, unsp leg +C2865291|T037|HT|S86.829|ICD10CM|Laceration of other muscle(s) and tendon(s) at lower leg level, unspecified leg|Laceration of other muscle(s) and tendon(s) at lower leg level, unspecified leg +C2865292|T037|AB|S86.829A|ICD10CM|Laceration of musc/tend at lower leg level, unsp leg, init|Laceration of musc/tend at lower leg level, unsp leg, init +C2865292|T037|PT|S86.829A|ICD10CM|Laceration of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter|Laceration of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter +C2865293|T037|AB|S86.829D|ICD10CM|Laceration of musc/tend at lower leg level, unsp leg, subs|Laceration of musc/tend at lower leg level, unsp leg, subs +C2865294|T037|AB|S86.829S|ICD10CM|Lacerat musc/tend at lower leg level, unsp leg, sequela|Lacerat musc/tend at lower leg level, unsp leg, sequela +C2865294|T037|PT|S86.829S|ICD10CM|Laceration of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela|Laceration of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela +C2865295|T037|AB|S86.89|ICD10CM|Other injury of other muscles and tendons at lower leg level|Other injury of other muscles and tendons at lower leg level +C2865295|T037|HT|S86.89|ICD10CM|Other injury of other muscles and tendons at lower leg level|Other injury of other muscles and tendons at lower leg level +C2865296|T037|AB|S86.891|ICD10CM|Inj oth musc/tend at lower leg level, right leg|Inj oth musc/tend at lower leg level, right leg +C2865296|T037|HT|S86.891|ICD10CM|Other injury of other muscle(s) and tendon(s) at lower leg level, right leg|Other injury of other muscle(s) and tendon(s) at lower leg level, right leg +C2865297|T037|AB|S86.891A|ICD10CM|Inj oth musc/tend at lower leg level, right leg, init|Inj oth musc/tend at lower leg level, right leg, init +C2865297|T037|PT|S86.891A|ICD10CM|Other injury of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter|Other injury of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter +C2865298|T037|AB|S86.891D|ICD10CM|Inj oth musc/tend at lower leg level, right leg, subs|Inj oth musc/tend at lower leg level, right leg, subs +C2865298|T037|PT|S86.891D|ICD10CM|Other injury of other muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter|Other injury of other muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter +C2865299|T037|AB|S86.891S|ICD10CM|Inj oth musc/tend at lower leg level, right leg, sequela|Inj oth musc/tend at lower leg level, right leg, sequela +C2865299|T037|PT|S86.891S|ICD10CM|Other injury of other muscle(s) and tendon(s) at lower leg level, right leg, sequela|Other injury of other muscle(s) and tendon(s) at lower leg level, right leg, sequela +C2865300|T037|AB|S86.892|ICD10CM|Inj oth muscle(s) and tendon(s) at lower leg level, left leg|Inj oth muscle(s) and tendon(s) at lower leg level, left leg +C2865300|T037|HT|S86.892|ICD10CM|Other injury of other muscle(s) and tendon(s) at lower leg level, left leg|Other injury of other muscle(s) and tendon(s) at lower leg level, left leg +C2865301|T037|AB|S86.892A|ICD10CM|Inj oth musc/tend at lower leg level, left leg, init|Inj oth musc/tend at lower leg level, left leg, init +C2865301|T037|PT|S86.892A|ICD10CM|Other injury of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter|Other injury of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter +C2865302|T037|AB|S86.892D|ICD10CM|Inj oth musc/tend at lower leg level, left leg, subs|Inj oth musc/tend at lower leg level, left leg, subs +C2865302|T037|PT|S86.892D|ICD10CM|Other injury of other muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter|Other injury of other muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter +C2865303|T037|AB|S86.892S|ICD10CM|Inj oth musc/tend at lower leg level, left leg, sequela|Inj oth musc/tend at lower leg level, left leg, sequela +C2865303|T037|PT|S86.892S|ICD10CM|Other injury of other muscle(s) and tendon(s) at lower leg level, left leg, sequela|Other injury of other muscle(s) and tendon(s) at lower leg level, left leg, sequela +C2865304|T037|AB|S86.899|ICD10CM|Inj oth muscle(s) and tendon(s) at lower leg level, unsp leg|Inj oth muscle(s) and tendon(s) at lower leg level, unsp leg +C2865304|T037|HT|S86.899|ICD10CM|Other injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg|Other injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg +C2865305|T037|AB|S86.899A|ICD10CM|Inj oth musc/tend at lower leg level, unsp leg, init|Inj oth musc/tend at lower leg level, unsp leg, init +C2865305|T037|PT|S86.899A|ICD10CM|Other injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter|Other injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter +C2865306|T037|AB|S86.899D|ICD10CM|Inj oth musc/tend at lower leg level, unsp leg, subs|Inj oth musc/tend at lower leg level, unsp leg, subs +C2865307|T037|AB|S86.899S|ICD10CM|Inj oth musc/tend at lower leg level, unsp leg, sequela|Inj oth musc/tend at lower leg level, unsp leg, sequela +C2865307|T037|PT|S86.899S|ICD10CM|Other injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela|Other injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela +C0451860|T037|HT|S86.9|ICD10CM|Injury of unspecified muscle and tendon at lower leg level|Injury of unspecified muscle and tendon at lower leg level +C0451860|T037|AB|S86.9|ICD10CM|Injury of unspecified muscle and tendon at lower leg level|Injury of unspecified muscle and tendon at lower leg level +C0451860|T037|PT|S86.9|ICD10|Injury of unspecified muscle and tendon at lower leg level|Injury of unspecified muscle and tendon at lower leg level +C2865308|T037|AB|S86.90|ICD10CM|Unsp injury of unsp muscle and tendon at lower leg level|Unsp injury of unsp muscle and tendon at lower leg level +C2865308|T037|HT|S86.90|ICD10CM|Unspecified injury of unspecified muscle and tendon at lower leg level|Unspecified injury of unspecified muscle and tendon at lower leg level +C2865309|T037|AB|S86.901|ICD10CM|Unsp injury of unsp musc/tend at lower leg level, right leg|Unsp injury of unsp musc/tend at lower leg level, right leg +C2865309|T037|HT|S86.901|ICD10CM|Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg|Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg +C2865310|T037|AB|S86.901A|ICD10CM|Unsp inj unsp musc/tend at lower leg level, right leg, init|Unsp inj unsp musc/tend at lower leg level, right leg, init +C2865311|T037|AB|S86.901D|ICD10CM|Unsp inj unsp musc/tend at lower leg level, right leg, subs|Unsp inj unsp musc/tend at lower leg level, right leg, subs +C2865312|T037|AB|S86.901S|ICD10CM|Unsp inj unsp musc/tend at low leg level, right leg, sequela|Unsp inj unsp musc/tend at low leg level, right leg, sequela +C2865312|T037|PT|S86.901S|ICD10CM|Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela|Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela +C2865313|T037|AB|S86.902|ICD10CM|Unsp injury of unsp musc/tend at lower leg level, left leg|Unsp injury of unsp musc/tend at lower leg level, left leg +C2865313|T037|HT|S86.902|ICD10CM|Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg|Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg +C2865314|T037|AB|S86.902A|ICD10CM|Unsp inj unsp musc/tend at lower leg level, left leg, init|Unsp inj unsp musc/tend at lower leg level, left leg, init +C2865315|T037|AB|S86.902D|ICD10CM|Unsp inj unsp musc/tend at lower leg level, left leg, subs|Unsp inj unsp musc/tend at lower leg level, left leg, subs +C2865316|T037|AB|S86.902S|ICD10CM|Unsp inj unsp musc/tend at low leg level, left leg, sequela|Unsp inj unsp musc/tend at low leg level, left leg, sequela +C2865316|T037|PT|S86.902S|ICD10CM|Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela|Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela +C2865317|T037|AB|S86.909|ICD10CM|Unsp injury of unsp musc/tend at lower leg level, unsp leg|Unsp injury of unsp musc/tend at lower leg level, unsp leg +C2865317|T037|HT|S86.909|ICD10CM|Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg|Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg +C2865318|T037|AB|S86.909A|ICD10CM|Unsp inj unsp musc/tend at lower leg level, unsp leg, init|Unsp inj unsp musc/tend at lower leg level, unsp leg, init +C2865319|T037|AB|S86.909D|ICD10CM|Unsp inj unsp musc/tend at lower leg level, unsp leg, subs|Unsp inj unsp musc/tend at lower leg level, unsp leg, subs +C2865320|T037|AB|S86.909S|ICD10CM|Unsp inj unsp musc/tend at low leg level, unsp leg, sequela|Unsp inj unsp musc/tend at low leg level, unsp leg, sequela +C2865321|T037|AB|S86.91|ICD10CM|Strain of unspecified muscle and tendon at lower leg level|Strain of unspecified muscle and tendon at lower leg level +C2865321|T037|HT|S86.91|ICD10CM|Strain of unspecified muscle and tendon at lower leg level|Strain of unspecified muscle and tendon at lower leg level +C2865322|T037|AB|S86.911|ICD10CM|Strain of unsp musc/tend at lower leg level, right leg|Strain of unsp musc/tend at lower leg level, right leg +C2865322|T037|HT|S86.911|ICD10CM|Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg|Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg +C2865323|T037|AB|S86.911A|ICD10CM|Strain of unsp musc/tend at lower leg level, right leg, init|Strain of unsp musc/tend at lower leg level, right leg, init +C2865323|T037|PT|S86.911A|ICD10CM|Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg, initial encounter|Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg, initial encounter +C2865324|T037|AB|S86.911D|ICD10CM|Strain of unsp musc/tend at lower leg level, right leg, subs|Strain of unsp musc/tend at lower leg level, right leg, subs +C2865324|T037|PT|S86.911D|ICD10CM|Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter|Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter +C2865325|T037|PT|S86.911S|ICD10CM|Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela|Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela +C2865325|T037|AB|S86.911S|ICD10CM|Strain unsp musc/tend at low leg level, right leg, sequela|Strain unsp musc/tend at low leg level, right leg, sequela +C2865326|T037|AB|S86.912|ICD10CM|Strain of unsp musc/tend at lower leg level, left leg|Strain of unsp musc/tend at lower leg level, left leg +C2865326|T037|HT|S86.912|ICD10CM|Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg|Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg +C2865327|T037|AB|S86.912A|ICD10CM|Strain of unsp musc/tend at lower leg level, left leg, init|Strain of unsp musc/tend at lower leg level, left leg, init +C2865327|T037|PT|S86.912A|ICD10CM|Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg, initial encounter|Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg, initial encounter +C2865328|T037|AB|S86.912D|ICD10CM|Strain of unsp musc/tend at lower leg level, left leg, subs|Strain of unsp musc/tend at lower leg level, left leg, subs +C2865328|T037|PT|S86.912D|ICD10CM|Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter|Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter +C2865329|T037|AB|S86.912S|ICD10CM|Strain of unsp musc/tend at low leg level, left leg, sequela|Strain of unsp musc/tend at low leg level, left leg, sequela +C2865329|T037|PT|S86.912S|ICD10CM|Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela|Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela +C2865330|T037|AB|S86.919|ICD10CM|Strain of unsp musc/tend at lower leg level, unsp leg|Strain of unsp musc/tend at lower leg level, unsp leg +C2865330|T037|HT|S86.919|ICD10CM|Strain of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg|Strain of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg +C2865331|T037|AB|S86.919A|ICD10CM|Strain of unsp musc/tend at lower leg level, unsp leg, init|Strain of unsp musc/tend at lower leg level, unsp leg, init +C2865331|T037|PT|S86.919A|ICD10CM|Strain of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter|Strain of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter +C2865332|T037|AB|S86.919D|ICD10CM|Strain of unsp musc/tend at lower leg level, unsp leg, subs|Strain of unsp musc/tend at lower leg level, unsp leg, subs +C2865333|T037|AB|S86.919S|ICD10CM|Strain of unsp musc/tend at low leg level, unsp leg, sequela|Strain of unsp musc/tend at low leg level, unsp leg, sequela +C2865333|T037|PT|S86.919S|ICD10CM|Strain of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela|Strain of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela +C2865334|T037|AB|S86.92|ICD10CM|Laceration of unsp muscle and tendon at lower leg level|Laceration of unsp muscle and tendon at lower leg level +C2865334|T037|HT|S86.92|ICD10CM|Laceration of unspecified muscle and tendon at lower leg level|Laceration of unspecified muscle and tendon at lower leg level +C2865335|T037|AB|S86.921|ICD10CM|Laceration of unsp musc/tend at lower leg level, right leg|Laceration of unsp musc/tend at lower leg level, right leg +C2865335|T037|HT|S86.921|ICD10CM|Laceration of unspecified muscle(s) and tendon(s) at lower leg level, right leg|Laceration of unspecified muscle(s) and tendon(s) at lower leg level, right leg +C2865336|T037|AB|S86.921A|ICD10CM|Lacerat unsp musc/tend at lower leg level, right leg, init|Lacerat unsp musc/tend at lower leg level, right leg, init +C2865336|T037|PT|S86.921A|ICD10CM|Laceration of unspecified muscle(s) and tendon(s) at lower leg level, right leg, initial encounter|Laceration of unspecified muscle(s) and tendon(s) at lower leg level, right leg, initial encounter +C2865337|T037|AB|S86.921D|ICD10CM|Lacerat unsp musc/tend at lower leg level, right leg, subs|Lacerat unsp musc/tend at lower leg level, right leg, subs +C2865338|T037|AB|S86.921S|ICD10CM|Lacerat unsp musc/tend at low leg level, right leg, sequela|Lacerat unsp musc/tend at low leg level, right leg, sequela +C2865338|T037|PT|S86.921S|ICD10CM|Laceration of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela|Laceration of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela +C2865339|T037|AB|S86.922|ICD10CM|Laceration of unsp musc/tend at lower leg level, left leg|Laceration of unsp musc/tend at lower leg level, left leg +C2865339|T037|HT|S86.922|ICD10CM|Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg|Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg +C2865340|T037|AB|S86.922A|ICD10CM|Lacerat unsp musc/tend at lower leg level, left leg, init|Lacerat unsp musc/tend at lower leg level, left leg, init +C2865340|T037|PT|S86.922A|ICD10CM|Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg, initial encounter|Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg, initial encounter +C2865341|T037|AB|S86.922D|ICD10CM|Lacerat unsp musc/tend at lower leg level, left leg, subs|Lacerat unsp musc/tend at lower leg level, left leg, subs +C2865341|T037|PT|S86.922D|ICD10CM|Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter|Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter +C2865342|T037|AB|S86.922S|ICD10CM|Lacerat unsp musc/tend at lower leg level, left leg, sequela|Lacerat unsp musc/tend at lower leg level, left leg, sequela +C2865342|T037|PT|S86.922S|ICD10CM|Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela|Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela +C2865343|T037|AB|S86.929|ICD10CM|Laceration of unsp musc/tend at lower leg level, unsp leg|Laceration of unsp musc/tend at lower leg level, unsp leg +C2865343|T037|HT|S86.929|ICD10CM|Laceration of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg|Laceration of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg +C2865344|T037|AB|S86.929A|ICD10CM|Lacerat unsp musc/tend at lower leg level, unsp leg, init|Lacerat unsp musc/tend at lower leg level, unsp leg, init +C2865345|T037|AB|S86.929D|ICD10CM|Lacerat unsp musc/tend at lower leg level, unsp leg, subs|Lacerat unsp musc/tend at lower leg level, unsp leg, subs +C2865346|T037|AB|S86.929S|ICD10CM|Lacerat unsp musc/tend at lower leg level, unsp leg, sequela|Lacerat unsp musc/tend at lower leg level, unsp leg, sequela +C2865346|T037|PT|S86.929S|ICD10CM|Laceration of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela|Laceration of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela +C2865347|T037|AB|S86.99|ICD10CM|Other injury of unsp muscle and tendon at lower leg level|Other injury of unsp muscle and tendon at lower leg level +C2865347|T037|HT|S86.99|ICD10CM|Other injury of unspecified muscle and tendon at lower leg level|Other injury of unspecified muscle and tendon at lower leg level +C2865348|T037|AB|S86.991|ICD10CM|Inj unsp musc/tend at lower leg level, right leg|Inj unsp musc/tend at lower leg level, right leg +C2865348|T037|HT|S86.991|ICD10CM|Other injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg|Other injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg +C2865349|T037|AB|S86.991A|ICD10CM|Inj unsp musc/tend at lower leg level, right leg, init|Inj unsp musc/tend at lower leg level, right leg, init +C2865349|T037|PT|S86.991A|ICD10CM|Other injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, initial encounter|Other injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, initial encounter +C2865350|T037|AB|S86.991D|ICD10CM|Inj unsp musc/tend at lower leg level, right leg, subs|Inj unsp musc/tend at lower leg level, right leg, subs +C2865351|T037|AB|S86.991S|ICD10CM|Inj unsp musc/tend at lower leg level, right leg, sequela|Inj unsp musc/tend at lower leg level, right leg, sequela +C2865351|T037|PT|S86.991S|ICD10CM|Other injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela|Other injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela +C2865352|T037|AB|S86.992|ICD10CM|Inj unsp musc/tend at lower leg level, left leg|Inj unsp musc/tend at lower leg level, left leg +C2865352|T037|HT|S86.992|ICD10CM|Other injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg|Other injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg +C2865353|T037|AB|S86.992A|ICD10CM|Inj unsp musc/tend at lower leg level, left leg, init|Inj unsp musc/tend at lower leg level, left leg, init +C2865353|T037|PT|S86.992A|ICD10CM|Other injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, initial encounter|Other injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, initial encounter +C2865354|T037|AB|S86.992D|ICD10CM|Inj unsp musc/tend at lower leg level, left leg, subs|Inj unsp musc/tend at lower leg level, left leg, subs +C2865355|T037|AB|S86.992S|ICD10CM|Inj unsp musc/tend at lower leg level, left leg, sequela|Inj unsp musc/tend at lower leg level, left leg, sequela +C2865355|T037|PT|S86.992S|ICD10CM|Other injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela|Other injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela +C2865356|T037|AB|S86.999|ICD10CM|Inj unsp musc/tend at lower leg level, unsp leg|Inj unsp musc/tend at lower leg level, unsp leg +C2865356|T037|HT|S86.999|ICD10CM|Other injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg|Other injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg +C2865357|T037|AB|S86.999A|ICD10CM|Inj unsp musc/tend at lower leg level, unsp leg, init|Inj unsp musc/tend at lower leg level, unsp leg, init +C2865358|T037|AB|S86.999D|ICD10CM|Inj unsp musc/tend at lower leg level, unsp leg, subs|Inj unsp musc/tend at lower leg level, unsp leg, subs +C2865359|T037|AB|S86.999S|ICD10CM|Inj unsp musc/tend at lower leg level, unsp leg, sequela|Inj unsp musc/tend at lower leg level, unsp leg, sequela +C2865359|T037|PT|S86.999S|ICD10CM|Other injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela|Other injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela +C0160990|T037|HT|S87|ICD10CM|Crushing injury of lower leg|Crushing injury of lower leg +C0160990|T037|AB|S87|ICD10CM|Crushing injury of lower leg|Crushing injury of lower leg +C0160990|T037|HT|S87|ICD10|Crushing injury of lower leg|Crushing injury of lower leg +C0160991|T037|PT|S87.0|ICD10|Crushing injury of knee|Crushing injury of knee +C0160991|T037|HT|S87.0|ICD10CM|Crushing injury of knee|Crushing injury of knee +C0160991|T037|AB|S87.0|ICD10CM|Crushing injury of knee|Crushing injury of knee +C2865360|T037|AB|S87.00|ICD10CM|Crushing injury of unspecified knee|Crushing injury of unspecified knee +C2865360|T037|HT|S87.00|ICD10CM|Crushing injury of unspecified knee|Crushing injury of unspecified knee +C2976807|T037|AB|S87.00XA|ICD10CM|Crushing injury of unspecified knee, initial encounter|Crushing injury of unspecified knee, initial encounter +C2976807|T037|PT|S87.00XA|ICD10CM|Crushing injury of unspecified knee, initial encounter|Crushing injury of unspecified knee, initial encounter +C2976808|T037|AB|S87.00XD|ICD10CM|Crushing injury of unspecified knee, subsequent encounter|Crushing injury of unspecified knee, subsequent encounter +C2976808|T037|PT|S87.00XD|ICD10CM|Crushing injury of unspecified knee, subsequent encounter|Crushing injury of unspecified knee, subsequent encounter +C2976809|T037|AB|S87.00XS|ICD10CM|Crushing injury of unspecified knee, sequela|Crushing injury of unspecified knee, sequela +C2976809|T037|PT|S87.00XS|ICD10CM|Crushing injury of unspecified knee, sequela|Crushing injury of unspecified knee, sequela +C2138551|T037|AB|S87.01|ICD10CM|Crushing injury of right knee|Crushing injury of right knee +C2138551|T037|HT|S87.01|ICD10CM|Crushing injury of right knee|Crushing injury of right knee +C2865498|T037|AB|S87.01XA|ICD10CM|Crushing injury of right knee, initial encounter|Crushing injury of right knee, initial encounter +C2865498|T037|PT|S87.01XA|ICD10CM|Crushing injury of right knee, initial encounter|Crushing injury of right knee, initial encounter +C2865499|T037|AB|S87.01XD|ICD10CM|Crushing injury of right knee, subsequent encounter|Crushing injury of right knee, subsequent encounter +C2865499|T037|PT|S87.01XD|ICD10CM|Crushing injury of right knee, subsequent encounter|Crushing injury of right knee, subsequent encounter +C2865500|T037|AB|S87.01XS|ICD10CM|Crushing injury of right knee, sequela|Crushing injury of right knee, sequela +C2865500|T037|PT|S87.01XS|ICD10CM|Crushing injury of right knee, sequela|Crushing injury of right knee, sequela +C2138529|T037|AB|S87.02|ICD10CM|Crushing injury of left knee|Crushing injury of left knee +C2138529|T037|HT|S87.02|ICD10CM|Crushing injury of left knee|Crushing injury of left knee +C2865501|T037|AB|S87.02XA|ICD10CM|Crushing injury of left knee, initial encounter|Crushing injury of left knee, initial encounter +C2865501|T037|PT|S87.02XA|ICD10CM|Crushing injury of left knee, initial encounter|Crushing injury of left knee, initial encounter +C2865502|T037|AB|S87.02XD|ICD10CM|Crushing injury of left knee, subsequent encounter|Crushing injury of left knee, subsequent encounter +C2865502|T037|PT|S87.02XD|ICD10CM|Crushing injury of left knee, subsequent encounter|Crushing injury of left knee, subsequent encounter +C2865503|T037|AB|S87.02XS|ICD10CM|Crushing injury of left knee, sequela|Crushing injury of left knee, sequela +C2865503|T037|PT|S87.02XS|ICD10CM|Crushing injury of left knee, sequela|Crushing injury of left knee, sequela +C0160990|T037|HT|S87.8|ICD10CM|Crushing injury of lower leg|Crushing injury of lower leg +C0160990|T037|AB|S87.8|ICD10CM|Crushing injury of lower leg|Crushing injury of lower leg +C0478344|T037|PT|S87.8|ICD10|Crushing injury of other and unspecified parts of lower leg|Crushing injury of other and unspecified parts of lower leg +C2865504|T037|AB|S87.80|ICD10CM|Crushing injury of unspecified lower leg|Crushing injury of unspecified lower leg +C2865504|T037|HT|S87.80|ICD10CM|Crushing injury of unspecified lower leg|Crushing injury of unspecified lower leg +C2976810|T037|PT|S87.80XA|ICD10CM|Crushing injury of unspecified lower leg, initial encounter|Crushing injury of unspecified lower leg, initial encounter +C2976810|T037|AB|S87.80XA|ICD10CM|Crushing injury of unspecified lower leg, initial encounter|Crushing injury of unspecified lower leg, initial encounter +C2976811|T037|AB|S87.80XD|ICD10CM|Crushing injury of unspecified lower leg, subs encntr|Crushing injury of unspecified lower leg, subs encntr +C2976811|T037|PT|S87.80XD|ICD10CM|Crushing injury of unspecified lower leg, subsequent encounter|Crushing injury of unspecified lower leg, subsequent encounter +C2976812|T037|PT|S87.80XS|ICD10CM|Crushing injury of unspecified lower leg, sequela|Crushing injury of unspecified lower leg, sequela +C2976812|T037|AB|S87.80XS|ICD10CM|Crushing injury of unspecified lower leg, sequela|Crushing injury of unspecified lower leg, sequela +C2138552|T037|AB|S87.81|ICD10CM|Crushing injury of right lower leg|Crushing injury of right lower leg +C2138552|T037|HT|S87.81|ICD10CM|Crushing injury of right lower leg|Crushing injury of right lower leg +C2865508|T037|PT|S87.81XA|ICD10CM|Crushing injury of right lower leg, initial encounter|Crushing injury of right lower leg, initial encounter +C2865508|T037|AB|S87.81XA|ICD10CM|Crushing injury of right lower leg, initial encounter|Crushing injury of right lower leg, initial encounter +C2865509|T037|PT|S87.81XD|ICD10CM|Crushing injury of right lower leg, subsequent encounter|Crushing injury of right lower leg, subsequent encounter +C2865509|T037|AB|S87.81XD|ICD10CM|Crushing injury of right lower leg, subsequent encounter|Crushing injury of right lower leg, subsequent encounter +C2865510|T037|PT|S87.81XS|ICD10CM|Crushing injury of right lower leg, sequela|Crushing injury of right lower leg, sequela +C2865510|T037|AB|S87.81XS|ICD10CM|Crushing injury of right lower leg, sequela|Crushing injury of right lower leg, sequela +C2138530|T037|AB|S87.82|ICD10CM|Crushing injury of left lower leg|Crushing injury of left lower leg +C2138530|T037|HT|S87.82|ICD10CM|Crushing injury of left lower leg|Crushing injury of left lower leg +C2865511|T037|PT|S87.82XA|ICD10CM|Crushing injury of left lower leg, initial encounter|Crushing injury of left lower leg, initial encounter +C2865511|T037|AB|S87.82XA|ICD10CM|Crushing injury of left lower leg, initial encounter|Crushing injury of left lower leg, initial encounter +C2865512|T037|PT|S87.82XD|ICD10CM|Crushing injury of left lower leg, subsequent encounter|Crushing injury of left lower leg, subsequent encounter +C2865512|T037|AB|S87.82XD|ICD10CM|Crushing injury of left lower leg, subsequent encounter|Crushing injury of left lower leg, subsequent encounter +C2865513|T037|PT|S87.82XS|ICD10CM|Crushing injury of left lower leg, sequela|Crushing injury of left lower leg, sequela +C2865513|T037|AB|S87.82XS|ICD10CM|Crushing injury of left lower leg, sequela|Crushing injury of left lower leg, sequela +C2977737|T033|ET|S88|ICD10CM|An amputation not identified as partial or complete should be coded to complete|An amputation not identified as partial or complete should be coded to complete +C4520790|T037|AB|S88|ICD10CM|Traumatic amputation of lower leg|Traumatic amputation of lower leg +C4520790|T037|HT|S88|ICD10CM|Traumatic amputation of lower leg|Traumatic amputation of lower leg +C4520790|T037|HT|S88|ICD10|Traumatic amputation of lower leg|Traumatic amputation of lower leg +C0495954|T037|HT|S88.0|ICD10CM|Traumatic amputation at knee level|Traumatic amputation at knee level +C0495954|T037|AB|S88.0|ICD10CM|Traumatic amputation at knee level|Traumatic amputation at knee level +C0495954|T037|PT|S88.0|ICD10|Traumatic amputation at knee level|Traumatic amputation at knee level +C2865514|T037|AB|S88.01|ICD10CM|Complete traumatic amputation at knee level|Complete traumatic amputation at knee level +C2865514|T037|HT|S88.01|ICD10CM|Complete traumatic amputation at knee level|Complete traumatic amputation at knee level +C2865515|T037|AB|S88.011|ICD10CM|Complete traumatic amputation at knee level, right lower leg|Complete traumatic amputation at knee level, right lower leg +C2865515|T037|HT|S88.011|ICD10CM|Complete traumatic amputation at knee level, right lower leg|Complete traumatic amputation at knee level, right lower leg +C2865516|T037|AB|S88.011A|ICD10CM|Complete traumatic amputation at knee level, r low leg, init|Complete traumatic amputation at knee level, r low leg, init +C2865516|T037|PT|S88.011A|ICD10CM|Complete traumatic amputation at knee level, right lower leg, initial encounter|Complete traumatic amputation at knee level, right lower leg, initial encounter +C2865517|T037|AB|S88.011D|ICD10CM|Complete traumatic amputation at knee level, r low leg, subs|Complete traumatic amputation at knee level, r low leg, subs +C2865517|T037|PT|S88.011D|ICD10CM|Complete traumatic amputation at knee level, right lower leg, subsequent encounter|Complete traumatic amputation at knee level, right lower leg, subsequent encounter +C2865518|T037|AB|S88.011S|ICD10CM|Complete traumatic amp at knee level, r low leg, sequela|Complete traumatic amp at knee level, r low leg, sequela +C2865518|T037|PT|S88.011S|ICD10CM|Complete traumatic amputation at knee level, right lower leg, sequela|Complete traumatic amputation at knee level, right lower leg, sequela +C2865519|T037|AB|S88.012|ICD10CM|Complete traumatic amputation at knee level, left lower leg|Complete traumatic amputation at knee level, left lower leg +C2865519|T037|HT|S88.012|ICD10CM|Complete traumatic amputation at knee level, left lower leg|Complete traumatic amputation at knee level, left lower leg +C2865520|T037|AB|S88.012A|ICD10CM|Complete traumatic amputation at knee level, l low leg, init|Complete traumatic amputation at knee level, l low leg, init +C2865520|T037|PT|S88.012A|ICD10CM|Complete traumatic amputation at knee level, left lower leg, initial encounter|Complete traumatic amputation at knee level, left lower leg, initial encounter +C2865521|T037|AB|S88.012D|ICD10CM|Complete traumatic amputation at knee level, l low leg, subs|Complete traumatic amputation at knee level, l low leg, subs +C2865521|T037|PT|S88.012D|ICD10CM|Complete traumatic amputation at knee level, left lower leg, subsequent encounter|Complete traumatic amputation at knee level, left lower leg, subsequent encounter +C2865522|T037|AB|S88.012S|ICD10CM|Complete traumatic amp at knee level, l low leg, sequela|Complete traumatic amp at knee level, l low leg, sequela +C2865522|T037|PT|S88.012S|ICD10CM|Complete traumatic amputation at knee level, left lower leg, sequela|Complete traumatic amputation at knee level, left lower leg, sequela +C2865523|T037|AB|S88.019|ICD10CM|Complete traumatic amputation at knee level, unsp lower leg|Complete traumatic amputation at knee level, unsp lower leg +C2865523|T037|HT|S88.019|ICD10CM|Complete traumatic amputation at knee level, unspecified lower leg|Complete traumatic amputation at knee level, unspecified lower leg +C2865524|T037|AB|S88.019A|ICD10CM|Complete traumatic amp at knee level, unsp lower leg, init|Complete traumatic amp at knee level, unsp lower leg, init +C2865524|T037|PT|S88.019A|ICD10CM|Complete traumatic amputation at knee level, unspecified lower leg, initial encounter|Complete traumatic amputation at knee level, unspecified lower leg, initial encounter +C2865525|T037|AB|S88.019D|ICD10CM|Complete traumatic amp at knee level, unsp lower leg, subs|Complete traumatic amp at knee level, unsp lower leg, subs +C2865525|T037|PT|S88.019D|ICD10CM|Complete traumatic amputation at knee level, unspecified lower leg, subsequent encounter|Complete traumatic amputation at knee level, unspecified lower leg, subsequent encounter +C2865526|T037|AB|S88.019S|ICD10CM|Complete traumatic amp at knee level, unsp low leg, sequela|Complete traumatic amp at knee level, unsp low leg, sequela +C2865526|T037|PT|S88.019S|ICD10CM|Complete traumatic amputation at knee level, unspecified lower leg, sequela|Complete traumatic amputation at knee level, unspecified lower leg, sequela +C2865527|T037|AB|S88.02|ICD10CM|Partial traumatic amputation at knee level|Partial traumatic amputation at knee level +C2865527|T037|HT|S88.02|ICD10CM|Partial traumatic amputation at knee level|Partial traumatic amputation at knee level +C2865528|T037|AB|S88.021|ICD10CM|Partial traumatic amputation at knee level, right lower leg|Partial traumatic amputation at knee level, right lower leg +C2865528|T037|HT|S88.021|ICD10CM|Partial traumatic amputation at knee level, right lower leg|Partial traumatic amputation at knee level, right lower leg +C2865529|T037|AB|S88.021A|ICD10CM|Partial traumatic amputation at knee level, r low leg, init|Partial traumatic amputation at knee level, r low leg, init +C2865529|T037|PT|S88.021A|ICD10CM|Partial traumatic amputation at knee level, right lower leg, initial encounter|Partial traumatic amputation at knee level, right lower leg, initial encounter +C2865530|T037|AB|S88.021D|ICD10CM|Partial traumatic amputation at knee level, r low leg, subs|Partial traumatic amputation at knee level, r low leg, subs +C2865530|T037|PT|S88.021D|ICD10CM|Partial traumatic amputation at knee level, right lower leg, subsequent encounter|Partial traumatic amputation at knee level, right lower leg, subsequent encounter +C2865531|T037|AB|S88.021S|ICD10CM|Partial traumatic amp at knee level, r low leg, sequela|Partial traumatic amp at knee level, r low leg, sequela +C2865531|T037|PT|S88.021S|ICD10CM|Partial traumatic amputation at knee level, right lower leg, sequela|Partial traumatic amputation at knee level, right lower leg, sequela +C2865532|T037|AB|S88.022|ICD10CM|Partial traumatic amputation at knee level, left lower leg|Partial traumatic amputation at knee level, left lower leg +C2865532|T037|HT|S88.022|ICD10CM|Partial traumatic amputation at knee level, left lower leg|Partial traumatic amputation at knee level, left lower leg +C2865533|T037|AB|S88.022A|ICD10CM|Partial traumatic amputation at knee level, l low leg, init|Partial traumatic amputation at knee level, l low leg, init +C2865533|T037|PT|S88.022A|ICD10CM|Partial traumatic amputation at knee level, left lower leg, initial encounter|Partial traumatic amputation at knee level, left lower leg, initial encounter +C2865534|T037|AB|S88.022D|ICD10CM|Partial traumatic amputation at knee level, l low leg, subs|Partial traumatic amputation at knee level, l low leg, subs +C2865534|T037|PT|S88.022D|ICD10CM|Partial traumatic amputation at knee level, left lower leg, subsequent encounter|Partial traumatic amputation at knee level, left lower leg, subsequent encounter +C2865535|T037|AB|S88.022S|ICD10CM|Partial traumatic amp at knee level, l low leg, sequela|Partial traumatic amp at knee level, l low leg, sequela +C2865535|T037|PT|S88.022S|ICD10CM|Partial traumatic amputation at knee level, left lower leg, sequela|Partial traumatic amputation at knee level, left lower leg, sequela +C2865536|T037|AB|S88.029|ICD10CM|Partial traumatic amputation at knee level, unsp lower leg|Partial traumatic amputation at knee level, unsp lower leg +C2865536|T037|HT|S88.029|ICD10CM|Partial traumatic amputation at knee level, unspecified lower leg|Partial traumatic amputation at knee level, unspecified lower leg +C2865537|T037|AB|S88.029A|ICD10CM|Partial traumatic amp at knee level, unsp lower leg, init|Partial traumatic amp at knee level, unsp lower leg, init +C2865537|T037|PT|S88.029A|ICD10CM|Partial traumatic amputation at knee level, unspecified lower leg, initial encounter|Partial traumatic amputation at knee level, unspecified lower leg, initial encounter +C2865538|T037|AB|S88.029D|ICD10CM|Partial traumatic amp at knee level, unsp lower leg, subs|Partial traumatic amp at knee level, unsp lower leg, subs +C2865538|T037|PT|S88.029D|ICD10CM|Partial traumatic amputation at knee level, unspecified lower leg, subsequent encounter|Partial traumatic amputation at knee level, unspecified lower leg, subsequent encounter +C2865539|T037|AB|S88.029S|ICD10CM|Partial traumatic amp at knee level, unsp lower leg, sequela|Partial traumatic amp at knee level, unsp lower leg, sequela +C2865539|T037|PT|S88.029S|ICD10CM|Partial traumatic amputation at knee level, unspecified lower leg, sequela|Partial traumatic amputation at knee level, unspecified lower leg, sequela +C0495955|T037|PT|S88.1|ICD10|Traumatic amputation at level between knee and ankle|Traumatic amputation at level between knee and ankle +C0495955|T037|HT|S88.1|ICD10CM|Traumatic amputation at level between knee and ankle|Traumatic amputation at level between knee and ankle +C0495955|T037|AB|S88.1|ICD10CM|Traumatic amputation at level between knee and ankle|Traumatic amputation at level between knee and ankle +C2865540|T037|AB|S88.11|ICD10CM|Complete traumatic amputation at level betw knee and ankle|Complete traumatic amputation at level betw knee and ankle +C2865540|T037|HT|S88.11|ICD10CM|Complete traumatic amputation at level between knee and ankle|Complete traumatic amputation at level between knee and ankle +C2865541|T037|AB|S88.111|ICD10CM|Complete traum amp at level betw knee and ankle, r low leg|Complete traum amp at level betw knee and ankle, r low leg +C2865541|T037|HT|S88.111|ICD10CM|Complete traumatic amputation at level between knee and ankle, right lower leg|Complete traumatic amputation at level between knee and ankle, right lower leg +C2865542|T037|AB|S88.111A|ICD10CM|Complete traum amp at lev betw kn and ankl, r low leg, init|Complete traum amp at lev betw kn and ankl, r low leg, init +C2865542|T037|PT|S88.111A|ICD10CM|Complete traumatic amputation at level between knee and ankle, right lower leg, initial encounter|Complete traumatic amputation at level between knee and ankle, right lower leg, initial encounter +C2865543|T037|AB|S88.111D|ICD10CM|Complete traum amp at lev betw kn and ankl, r low leg, subs|Complete traum amp at lev betw kn and ankl, r low leg, subs +C2865543|T037|PT|S88.111D|ICD10CM|Complete traumatic amputation at level between knee and ankle, right lower leg, subsequent encounter|Complete traumatic amputation at level between knee and ankle, right lower leg, subsequent encounter +C2865544|T037|AB|S88.111S|ICD10CM|Complete traum amp at lev betw kn and ankl, r low leg, sqla|Complete traum amp at lev betw kn and ankl, r low leg, sqla +C2865544|T037|PT|S88.111S|ICD10CM|Complete traumatic amputation at level between knee and ankle, right lower leg, sequela|Complete traumatic amputation at level between knee and ankle, right lower leg, sequela +C2865545|T037|AB|S88.112|ICD10CM|Complete traum amp at level betw knee and ankle, l low leg|Complete traum amp at level betw knee and ankle, l low leg +C2865545|T037|HT|S88.112|ICD10CM|Complete traumatic amputation at level between knee and ankle, left lower leg|Complete traumatic amputation at level between knee and ankle, left lower leg +C2865546|T037|AB|S88.112A|ICD10CM|Complete traum amp at lev betw kn and ankl, l low leg, init|Complete traum amp at lev betw kn and ankl, l low leg, init +C2865546|T037|PT|S88.112A|ICD10CM|Complete traumatic amputation at level between knee and ankle, left lower leg, initial encounter|Complete traumatic amputation at level between knee and ankle, left lower leg, initial encounter +C2865547|T037|AB|S88.112D|ICD10CM|Complete traum amp at lev betw kn and ankl, l low leg, subs|Complete traum amp at lev betw kn and ankl, l low leg, subs +C2865547|T037|PT|S88.112D|ICD10CM|Complete traumatic amputation at level between knee and ankle, left lower leg, subsequent encounter|Complete traumatic amputation at level between knee and ankle, left lower leg, subsequent encounter +C2865548|T037|AB|S88.112S|ICD10CM|Complete traum amp at lev betw kn and ankl, l low leg, sqla|Complete traum amp at lev betw kn and ankl, l low leg, sqla +C2865548|T037|PT|S88.112S|ICD10CM|Complete traumatic amputation at level between knee and ankle, left lower leg, sequela|Complete traumatic amputation at level between knee and ankle, left lower leg, sequela +C2865549|T037|AB|S88.119|ICD10CM|Complete traum amp at level betw knee and ankl, unsp low leg|Complete traum amp at level betw knee and ankl, unsp low leg +C2865549|T037|HT|S88.119|ICD10CM|Complete traumatic amputation at level between knee and ankle, unspecified lower leg|Complete traumatic amputation at level between knee and ankle, unspecified lower leg +C2865550|T037|AB|S88.119A|ICD10CM|Complete traum amp at lev betw kn & ankl, unsp low leg, init|Complete traum amp at lev betw kn & ankl, unsp low leg, init +C2865551|T037|AB|S88.119D|ICD10CM|Complete traum amp at lev betw kn & ankl, unsp low leg, subs|Complete traum amp at lev betw kn & ankl, unsp low leg, subs +C2865552|T037|AB|S88.119S|ICD10CM|Complete traum amp at lev betw kn & ankl, unsp low leg, sqla|Complete traum amp at lev betw kn & ankl, unsp low leg, sqla +C2865552|T037|PT|S88.119S|ICD10CM|Complete traumatic amputation at level between knee and ankle, unspecified lower leg, sequela|Complete traumatic amputation at level between knee and ankle, unspecified lower leg, sequela +C2865553|T037|AB|S88.12|ICD10CM|Partial traumatic amputation at level between knee and ankle|Partial traumatic amputation at level between knee and ankle +C2865553|T037|HT|S88.12|ICD10CM|Partial traumatic amputation at level between knee and ankle|Partial traumatic amputation at level between knee and ankle +C2865554|T037|AB|S88.121|ICD10CM|Partial traum amp at level betw knee and ankle, r low leg|Partial traum amp at level betw knee and ankle, r low leg +C2865554|T037|HT|S88.121|ICD10CM|Partial traumatic amputation at level between knee and ankle, right lower leg|Partial traumatic amputation at level between knee and ankle, right lower leg +C2865555|T037|AB|S88.121A|ICD10CM|Part traum amp at level betw knee and ankle, r low leg, init|Part traum amp at level betw knee and ankle, r low leg, init +C2865555|T037|PT|S88.121A|ICD10CM|Partial traumatic amputation at level between knee and ankle, right lower leg, initial encounter|Partial traumatic amputation at level between knee and ankle, right lower leg, initial encounter +C2865556|T037|AB|S88.121D|ICD10CM|Part traum amp at level betw knee and ankle, r low leg, subs|Part traum amp at level betw knee and ankle, r low leg, subs +C2865556|T037|PT|S88.121D|ICD10CM|Partial traumatic amputation at level between knee and ankle, right lower leg, subsequent encounter|Partial traumatic amputation at level between knee and ankle, right lower leg, subsequent encounter +C2865557|T037|AB|S88.121S|ICD10CM|Part traum amp at level betw knee and ankle, r low leg, sqla|Part traum amp at level betw knee and ankle, r low leg, sqla +C2865557|T037|PT|S88.121S|ICD10CM|Partial traumatic amputation at level between knee and ankle, right lower leg, sequela|Partial traumatic amputation at level between knee and ankle, right lower leg, sequela +C2865558|T037|AB|S88.122|ICD10CM|Partial traum amp at level betw knee and ankle, l low leg|Partial traum amp at level betw knee and ankle, l low leg +C2865558|T037|HT|S88.122|ICD10CM|Partial traumatic amputation at level between knee and ankle, left lower leg|Partial traumatic amputation at level between knee and ankle, left lower leg +C2865559|T037|AB|S88.122A|ICD10CM|Part traum amp at level betw knee and ankle, l low leg, init|Part traum amp at level betw knee and ankle, l low leg, init +C2865559|T037|PT|S88.122A|ICD10CM|Partial traumatic amputation at level between knee and ankle, left lower leg, initial encounter|Partial traumatic amputation at level between knee and ankle, left lower leg, initial encounter +C2865560|T037|AB|S88.122D|ICD10CM|Part traum amp at level betw knee and ankle, l low leg, subs|Part traum amp at level betw knee and ankle, l low leg, subs +C2865560|T037|PT|S88.122D|ICD10CM|Partial traumatic amputation at level between knee and ankle, left lower leg, subsequent encounter|Partial traumatic amputation at level between knee and ankle, left lower leg, subsequent encounter +C2865561|T037|AB|S88.122S|ICD10CM|Part traum amp at level betw knee and ankle, l low leg, sqla|Part traum amp at level betw knee and ankle, l low leg, sqla +C2865561|T037|PT|S88.122S|ICD10CM|Partial traumatic amputation at level between knee and ankle, left lower leg, sequela|Partial traumatic amputation at level between knee and ankle, left lower leg, sequela +C2865562|T037|AB|S88.129|ICD10CM|Partial traum amp at level betw knee and ankle, unsp low leg|Partial traum amp at level betw knee and ankle, unsp low leg +C2865562|T037|HT|S88.129|ICD10CM|Partial traumatic amputation at level between knee and ankle, unspecified lower leg|Partial traumatic amputation at level between knee and ankle, unspecified lower leg +C2865563|T037|AB|S88.129A|ICD10CM|Part traum amp at lev betw knee and ankl, unsp low leg, init|Part traum amp at lev betw knee and ankl, unsp low leg, init +C2865564|T037|AB|S88.129D|ICD10CM|Part traum amp at lev betw knee and ankl, unsp low leg, subs|Part traum amp at lev betw knee and ankl, unsp low leg, subs +C2865565|T037|AB|S88.129S|ICD10CM|Part traum amp at lev betw knee and ankl, unsp low leg, sqla|Part traum amp at lev betw knee and ankl, unsp low leg, sqla +C2865565|T037|PT|S88.129S|ICD10CM|Partial traumatic amputation at level between knee and ankle, unspecified lower leg, sequela|Partial traumatic amputation at level between knee and ankle, unspecified lower leg, sequela +C0478347|T037|PT|S88.9|ICD10|Traumatic amputation of lower leg, level unspecified|Traumatic amputation of lower leg, level unspecified +C0478347|T037|HT|S88.9|ICD10CM|Traumatic amputation of lower leg, level unspecified|Traumatic amputation of lower leg, level unspecified +C0478347|T037|AB|S88.9|ICD10CM|Traumatic amputation of lower leg, level unspecified|Traumatic amputation of lower leg, level unspecified +C2865566|T037|AB|S88.91|ICD10CM|Complete traumatic amputation of lower leg, level unsp|Complete traumatic amputation of lower leg, level unsp +C2865566|T037|HT|S88.91|ICD10CM|Complete traumatic amputation of lower leg, level unspecified|Complete traumatic amputation of lower leg, level unspecified +C2865567|T037|AB|S88.911|ICD10CM|Complete traumatic amputation of right lower leg, level unsp|Complete traumatic amputation of right lower leg, level unsp +C2865567|T037|HT|S88.911|ICD10CM|Complete traumatic amputation of right lower leg, level unspecified|Complete traumatic amputation of right lower leg, level unspecified +C2865568|T037|AB|S88.911A|ICD10CM|Complete traumatic amputation of r low leg, level unsp, init|Complete traumatic amputation of r low leg, level unsp, init +C2865568|T037|PT|S88.911A|ICD10CM|Complete traumatic amputation of right lower leg, level unspecified, initial encounter|Complete traumatic amputation of right lower leg, level unspecified, initial encounter +C2865569|T037|AB|S88.911D|ICD10CM|Complete traumatic amputation of r low leg, level unsp, subs|Complete traumatic amputation of r low leg, level unsp, subs +C2865569|T037|PT|S88.911D|ICD10CM|Complete traumatic amputation of right lower leg, level unspecified, subsequent encounter|Complete traumatic amputation of right lower leg, level unspecified, subsequent encounter +C2865570|T037|AB|S88.911S|ICD10CM|Complete traumatic amp of r low leg, level unsp, sequela|Complete traumatic amp of r low leg, level unsp, sequela +C2865570|T037|PT|S88.911S|ICD10CM|Complete traumatic amputation of right lower leg, level unspecified, sequela|Complete traumatic amputation of right lower leg, level unspecified, sequela +C2865571|T037|AB|S88.912|ICD10CM|Complete traumatic amputation of left lower leg, level unsp|Complete traumatic amputation of left lower leg, level unsp +C2865571|T037|HT|S88.912|ICD10CM|Complete traumatic amputation of left lower leg, level unspecified|Complete traumatic amputation of left lower leg, level unspecified +C2865572|T037|AB|S88.912A|ICD10CM|Complete traumatic amputation of l low leg, level unsp, init|Complete traumatic amputation of l low leg, level unsp, init +C2865572|T037|PT|S88.912A|ICD10CM|Complete traumatic amputation of left lower leg, level unspecified, initial encounter|Complete traumatic amputation of left lower leg, level unspecified, initial encounter +C2865573|T037|AB|S88.912D|ICD10CM|Complete traumatic amputation of l low leg, level unsp, subs|Complete traumatic amputation of l low leg, level unsp, subs +C2865573|T037|PT|S88.912D|ICD10CM|Complete traumatic amputation of left lower leg, level unspecified, subsequent encounter|Complete traumatic amputation of left lower leg, level unspecified, subsequent encounter +C2865574|T037|AB|S88.912S|ICD10CM|Complete traumatic amp of l low leg, level unsp, sequela|Complete traumatic amp of l low leg, level unsp, sequela +C2865574|T037|PT|S88.912S|ICD10CM|Complete traumatic amputation of left lower leg, level unspecified, sequela|Complete traumatic amputation of left lower leg, level unspecified, sequela +C2865575|T037|AB|S88.919|ICD10CM|Complete traumatic amputation of unsp lower leg, level unsp|Complete traumatic amputation of unsp lower leg, level unsp +C2865575|T037|HT|S88.919|ICD10CM|Complete traumatic amputation of unspecified lower leg, level unspecified|Complete traumatic amputation of unspecified lower leg, level unspecified +C2865576|T037|AB|S88.919A|ICD10CM|Complete traumatic amp of unsp lower leg, level unsp, init|Complete traumatic amp of unsp lower leg, level unsp, init +C2865576|T037|PT|S88.919A|ICD10CM|Complete traumatic amputation of unspecified lower leg, level unspecified, initial encounter|Complete traumatic amputation of unspecified lower leg, level unspecified, initial encounter +C2865577|T037|AB|S88.919D|ICD10CM|Complete traumatic amp of unsp lower leg, level unsp, subs|Complete traumatic amp of unsp lower leg, level unsp, subs +C2865577|T037|PT|S88.919D|ICD10CM|Complete traumatic amputation of unspecified lower leg, level unspecified, subsequent encounter|Complete traumatic amputation of unspecified lower leg, level unspecified, subsequent encounter +C2865578|T037|AB|S88.919S|ICD10CM|Complete traumatic amp of unsp low leg, level unsp, sequela|Complete traumatic amp of unsp low leg, level unsp, sequela +C2865578|T037|PT|S88.919S|ICD10CM|Complete traumatic amputation of unspecified lower leg, level unspecified, sequela|Complete traumatic amputation of unspecified lower leg, level unspecified, sequela +C2865579|T037|AB|S88.92|ICD10CM|Partial traumatic amputation of lower leg, level unspecified|Partial traumatic amputation of lower leg, level unspecified +C2865579|T037|HT|S88.92|ICD10CM|Partial traumatic amputation of lower leg, level unspecified|Partial traumatic amputation of lower leg, level unspecified +C2865580|T037|AB|S88.921|ICD10CM|Partial traumatic amputation of right lower leg, level unsp|Partial traumatic amputation of right lower leg, level unsp +C2865580|T037|HT|S88.921|ICD10CM|Partial traumatic amputation of right lower leg, level unspecified|Partial traumatic amputation of right lower leg, level unspecified +C2865581|T037|AB|S88.921A|ICD10CM|Partial traumatic amputation of r low leg, level unsp, init|Partial traumatic amputation of r low leg, level unsp, init +C2865581|T037|PT|S88.921A|ICD10CM|Partial traumatic amputation of right lower leg, level unspecified, initial encounter|Partial traumatic amputation of right lower leg, level unspecified, initial encounter +C2865582|T037|AB|S88.921D|ICD10CM|Partial traumatic amputation of r low leg, level unsp, subs|Partial traumatic amputation of r low leg, level unsp, subs +C2865582|T037|PT|S88.921D|ICD10CM|Partial traumatic amputation of right lower leg, level unspecified, subsequent encounter|Partial traumatic amputation of right lower leg, level unspecified, subsequent encounter +C2865583|T037|AB|S88.921S|ICD10CM|Partial traumatic amp of r low leg, level unsp, sequela|Partial traumatic amp of r low leg, level unsp, sequela +C2865583|T037|PT|S88.921S|ICD10CM|Partial traumatic amputation of right lower leg, level unspecified, sequela|Partial traumatic amputation of right lower leg, level unspecified, sequela +C2865584|T037|AB|S88.922|ICD10CM|Partial traumatic amputation of left lower leg, level unsp|Partial traumatic amputation of left lower leg, level unsp +C2865584|T037|HT|S88.922|ICD10CM|Partial traumatic amputation of left lower leg, level unspecified|Partial traumatic amputation of left lower leg, level unspecified +C2865585|T037|AB|S88.922A|ICD10CM|Partial traumatic amputation of l low leg, level unsp, init|Partial traumatic amputation of l low leg, level unsp, init +C2865585|T037|PT|S88.922A|ICD10CM|Partial traumatic amputation of left lower leg, level unspecified, initial encounter|Partial traumatic amputation of left lower leg, level unspecified, initial encounter +C2865586|T037|AB|S88.922D|ICD10CM|Partial traumatic amputation of l low leg, level unsp, subs|Partial traumatic amputation of l low leg, level unsp, subs +C2865586|T037|PT|S88.922D|ICD10CM|Partial traumatic amputation of left lower leg, level unspecified, subsequent encounter|Partial traumatic amputation of left lower leg, level unspecified, subsequent encounter +C2865587|T037|AB|S88.922S|ICD10CM|Partial traumatic amp of l low leg, level unsp, sequela|Partial traumatic amp of l low leg, level unsp, sequela +C2865587|T037|PT|S88.922S|ICD10CM|Partial traumatic amputation of left lower leg, level unspecified, sequela|Partial traumatic amputation of left lower leg, level unspecified, sequela +C2865588|T037|AB|S88.929|ICD10CM|Partial traumatic amputation of unsp lower leg, level unsp|Partial traumatic amputation of unsp lower leg, level unsp +C2865588|T037|HT|S88.929|ICD10CM|Partial traumatic amputation of unspecified lower leg, level unspecified|Partial traumatic amputation of unspecified lower leg, level unspecified +C2865589|T037|AB|S88.929A|ICD10CM|Partial traumatic amp of unsp lower leg, level unsp, init|Partial traumatic amp of unsp lower leg, level unsp, init +C2865589|T037|PT|S88.929A|ICD10CM|Partial traumatic amputation of unspecified lower leg, level unspecified, initial encounter|Partial traumatic amputation of unspecified lower leg, level unspecified, initial encounter +C2865590|T037|AB|S88.929D|ICD10CM|Partial traumatic amp of unsp lower leg, level unsp, subs|Partial traumatic amp of unsp lower leg, level unsp, subs +C2865590|T037|PT|S88.929D|ICD10CM|Partial traumatic amputation of unspecified lower leg, level unspecified, subsequent encounter|Partial traumatic amputation of unspecified lower leg, level unspecified, subsequent encounter +C2865591|T037|AB|S88.929S|ICD10CM|Partial traumatic amp of unsp lower leg, level unsp, sequela|Partial traumatic amp of unsp lower leg, level unsp, sequela +C2865591|T037|PT|S88.929S|ICD10CM|Partial traumatic amputation of unspecified lower leg, level unspecified, sequela|Partial traumatic amputation of unspecified lower leg, level unspecified, sequela +C0495956|T037|HT|S89|ICD10|Other and unspecified injuries of lower leg|Other and unspecified injuries of lower leg +C0495956|T037|AB|S89|ICD10CM|Other and unspecified injuries of lower leg|Other and unspecified injuries of lower leg +C0495956|T037|HT|S89|ICD10CM|Other and unspecified injuries of lower leg|Other and unspecified injuries of lower leg +C2865592|T037|AB|S89.0|ICD10CM|Physeal fracture of upper end of tibia|Physeal fracture of upper end of tibia +C2865592|T037|HT|S89.0|ICD10CM|Physeal fracture of upper end of tibia|Physeal fracture of upper end of tibia +C2865593|T037|AB|S89.00|ICD10CM|Unspecified physeal fracture of upper end of tibia|Unspecified physeal fracture of upper end of tibia +C2865593|T037|HT|S89.00|ICD10CM|Unspecified physeal fracture of upper end of tibia|Unspecified physeal fracture of upper end of tibia +C2865594|T037|AB|S89.001|ICD10CM|Unspecified physeal fracture of upper end of right tibia|Unspecified physeal fracture of upper end of right tibia +C2865594|T037|HT|S89.001|ICD10CM|Unspecified physeal fracture of upper end of right tibia|Unspecified physeal fracture of upper end of right tibia +C2865595|T037|AB|S89.001A|ICD10CM|Unsp physeal fracture of upper end of right tibia, init|Unsp physeal fracture of upper end of right tibia, init +C2865595|T037|PT|S89.001A|ICD10CM|Unspecified physeal fracture of upper end of right tibia, initial encounter for closed fracture|Unspecified physeal fracture of upper end of right tibia, initial encounter for closed fracture +C2865596|T037|AB|S89.001D|ICD10CM|Unsp physl fx upper end of r tibia, subs for fx w routn heal|Unsp physl fx upper end of r tibia, subs for fx w routn heal +C2865597|T037|AB|S89.001G|ICD10CM|Unsp physl fx upper end of r tibia, subs for fx w delay heal|Unsp physl fx upper end of r tibia, subs for fx w delay heal +C2865598|T037|AB|S89.001K|ICD10CM|Unsp physeal fx upper end of r tibia, subs for fx w nonunion|Unsp physeal fx upper end of r tibia, subs for fx w nonunion +C2865599|T037|AB|S89.001P|ICD10CM|Unsp physeal fx upper end of r tibia, subs for fx w malunion|Unsp physeal fx upper end of r tibia, subs for fx w malunion +C2865600|T037|AB|S89.001S|ICD10CM|Unsp physeal fracture of upper end of right tibia, sequela|Unsp physeal fracture of upper end of right tibia, sequela +C2865600|T037|PT|S89.001S|ICD10CM|Unspecified physeal fracture of upper end of right tibia, sequela|Unspecified physeal fracture of upper end of right tibia, sequela +C2865601|T037|AB|S89.002|ICD10CM|Unspecified physeal fracture of upper end of left tibia|Unspecified physeal fracture of upper end of left tibia +C2865601|T037|HT|S89.002|ICD10CM|Unspecified physeal fracture of upper end of left tibia|Unspecified physeal fracture of upper end of left tibia +C2865602|T037|AB|S89.002A|ICD10CM|Unsp physeal fracture of upper end of left tibia, init|Unsp physeal fracture of upper end of left tibia, init +C2865602|T037|PT|S89.002A|ICD10CM|Unspecified physeal fracture of upper end of left tibia, initial encounter for closed fracture|Unspecified physeal fracture of upper end of left tibia, initial encounter for closed fracture +C2865603|T037|AB|S89.002D|ICD10CM|Unsp physl fx upper end of l tibia, subs for fx w routn heal|Unsp physl fx upper end of l tibia, subs for fx w routn heal +C2865604|T037|AB|S89.002G|ICD10CM|Unsp physl fx upper end of l tibia, subs for fx w delay heal|Unsp physl fx upper end of l tibia, subs for fx w delay heal +C2865605|T037|AB|S89.002K|ICD10CM|Unsp physeal fx upper end of l tibia, subs for fx w nonunion|Unsp physeal fx upper end of l tibia, subs for fx w nonunion +C2865606|T037|AB|S89.002P|ICD10CM|Unsp physeal fx upper end of l tibia, subs for fx w malunion|Unsp physeal fx upper end of l tibia, subs for fx w malunion +C2865607|T037|AB|S89.002S|ICD10CM|Unsp physeal fracture of upper end of left tibia, sequela|Unsp physeal fracture of upper end of left tibia, sequela +C2865607|T037|PT|S89.002S|ICD10CM|Unspecified physeal fracture of upper end of left tibia, sequela|Unspecified physeal fracture of upper end of left tibia, sequela +C2865608|T037|AB|S89.009|ICD10CM|Unsp physeal fracture of upper end of unspecified tibia|Unsp physeal fracture of upper end of unspecified tibia +C2865608|T037|HT|S89.009|ICD10CM|Unspecified physeal fracture of upper end of unspecified tibia|Unspecified physeal fracture of upper end of unspecified tibia +C2865609|T037|AB|S89.009A|ICD10CM|Unsp physeal fracture of upper end of unsp tibia, init|Unsp physeal fracture of upper end of unsp tibia, init +C2865610|T037|AB|S89.009D|ICD10CM|Unsp physl fx upper end unsp tibia, subs for fx w routn heal|Unsp physl fx upper end unsp tibia, subs for fx w routn heal +C2865611|T037|AB|S89.009G|ICD10CM|Unsp physl fx upper end unsp tibia, subs for fx w delay heal|Unsp physl fx upper end unsp tibia, subs for fx w delay heal +C2865612|T037|AB|S89.009K|ICD10CM|Unsp physl fx upper end unsp tibia, subs for fx w nonunion|Unsp physl fx upper end unsp tibia, subs for fx w nonunion +C2865613|T037|AB|S89.009P|ICD10CM|Unsp physl fx upper end unsp tibia, subs for fx w malunion|Unsp physl fx upper end unsp tibia, subs for fx w malunion +C2865614|T037|AB|S89.009S|ICD10CM|Unsp physeal fracture of upper end of unsp tibia, sequela|Unsp physeal fracture of upper end of unsp tibia, sequela +C2865614|T037|PT|S89.009S|ICD10CM|Unspecified physeal fracture of upper end of unspecified tibia, sequela|Unspecified physeal fracture of upper end of unspecified tibia, sequela +C2865615|T037|AB|S89.01|ICD10CM|Salter-Harris Type I physeal fracture of upper end of tibia|Salter-Harris Type I physeal fracture of upper end of tibia +C2865615|T037|HT|S89.01|ICD10CM|Salter-Harris Type I physeal fracture of upper end of tibia|Salter-Harris Type I physeal fracture of upper end of tibia +C2865616|T037|HT|S89.011|ICD10CM|Salter-Harris Type I physeal fracture of upper end of right tibia|Salter-Harris Type I physeal fracture of upper end of right tibia +C2865616|T037|AB|S89.011|ICD10CM|Sltr-haris Type I physeal fx upper end of right tibia|Sltr-haris Type I physeal fx upper end of right tibia +C2865617|T037|AB|S89.011A|ICD10CM|Sltr-haris Type I physeal fx upper end of right tibia, init|Sltr-haris Type I physeal fx upper end of right tibia, init +C2865618|T037|AB|S89.011D|ICD10CM|Sltr-haris Type I physl fx upr end r tibia, 7thD|Sltr-haris Type I physl fx upr end r tibia, 7thD +C2865619|T037|AB|S89.011G|ICD10CM|Sltr-haris Type I physl fx upr end r tibia, 7thG|Sltr-haris Type I physl fx upr end r tibia, 7thG +C2865620|T037|AB|S89.011K|ICD10CM|Sltr-haris Type I physl fx upr end r tibia, 7thK|Sltr-haris Type I physl fx upr end r tibia, 7thK +C2865621|T037|AB|S89.011P|ICD10CM|Sltr-haris Type I physl fx upr end r tibia, 7thP|Sltr-haris Type I physl fx upr end r tibia, 7thP +C2865622|T037|PT|S89.011S|ICD10CM|Salter-Harris Type I physeal fracture of upper end of right tibia, sequela|Salter-Harris Type I physeal fracture of upper end of right tibia, sequela +C2865622|T037|AB|S89.011S|ICD10CM|Sltr-haris Type I physeal fx upper end of r tibia, sequela|Sltr-haris Type I physeal fx upper end of r tibia, sequela +C2865623|T037|HT|S89.012|ICD10CM|Salter-Harris Type I physeal fracture of upper end of left tibia|Salter-Harris Type I physeal fracture of upper end of left tibia +C2865623|T037|AB|S89.012|ICD10CM|Sltr-haris Type I physeal fx upper end of left tibia|Sltr-haris Type I physeal fx upper end of left tibia +C2865624|T037|AB|S89.012A|ICD10CM|Sltr-haris Type I physeal fx upper end of left tibia, init|Sltr-haris Type I physeal fx upper end of left tibia, init +C2865625|T037|AB|S89.012D|ICD10CM|Sltr-haris Type I physl fx upr end l tibia, 7thD|Sltr-haris Type I physl fx upr end l tibia, 7thD +C2865626|T037|AB|S89.012G|ICD10CM|Sltr-haris Type I physl fx upr end l tibia, 7thG|Sltr-haris Type I physl fx upr end l tibia, 7thG +C2865627|T037|AB|S89.012K|ICD10CM|Sltr-haris Type I physl fx upr end l tibia, 7thK|Sltr-haris Type I physl fx upr end l tibia, 7thK +C2865628|T037|AB|S89.012P|ICD10CM|Sltr-haris Type I physl fx upr end l tibia, 7thP|Sltr-haris Type I physl fx upr end l tibia, 7thP +C2865629|T037|PT|S89.012S|ICD10CM|Salter-Harris Type I physeal fracture of upper end of left tibia, sequela|Salter-Harris Type I physeal fracture of upper end of left tibia, sequela +C2865629|T037|AB|S89.012S|ICD10CM|Sltr-haris Type I physeal fx upper end of l tibia, sequela|Sltr-haris Type I physeal fx upper end of l tibia, sequela +C2865630|T037|HT|S89.019|ICD10CM|Salter-Harris Type I physeal fracture of upper end of unspecified tibia|Salter-Harris Type I physeal fracture of upper end of unspecified tibia +C2865630|T037|AB|S89.019|ICD10CM|Sltr-haris Type I physeal fx upper end of unsp tibia|Sltr-haris Type I physeal fx upper end of unsp tibia +C2865631|T037|AB|S89.019A|ICD10CM|Sltr-haris Type I physeal fx upper end of unsp tibia, init|Sltr-haris Type I physeal fx upper end of unsp tibia, init +C2865632|T037|AB|S89.019D|ICD10CM|Sltr-haris Type I physl fx upr end unsp tibia, 7thD|Sltr-haris Type I physl fx upr end unsp tibia, 7thD +C2865633|T037|AB|S89.019G|ICD10CM|Sltr-haris Type I physl fx upr end unsp tibia, 7thG|Sltr-haris Type I physl fx upr end unsp tibia, 7thG +C2865634|T037|AB|S89.019K|ICD10CM|Sltr-haris Type I physl fx upr end unsp tibia, 7thK|Sltr-haris Type I physl fx upr end unsp tibia, 7thK +C2865635|T037|AB|S89.019P|ICD10CM|Sltr-haris Type I physl fx upr end unsp tibia, 7thP|Sltr-haris Type I physl fx upr end unsp tibia, 7thP +C2865636|T037|PT|S89.019S|ICD10CM|Salter-Harris Type I physeal fracture of upper end of unspecified tibia, sequela|Salter-Harris Type I physeal fracture of upper end of unspecified tibia, sequela +C2865636|T037|AB|S89.019S|ICD10CM|Sltr-haris Type I physl fx upper end of unsp tibia, sequela|Sltr-haris Type I physl fx upper end of unsp tibia, sequela +C2865637|T037|AB|S89.02|ICD10CM|Salter-Harris Type II physeal fracture of upper end of tibia|Salter-Harris Type II physeal fracture of upper end of tibia +C2865637|T037|HT|S89.02|ICD10CM|Salter-Harris Type II physeal fracture of upper end of tibia|Salter-Harris Type II physeal fracture of upper end of tibia +C2865638|T037|HT|S89.021|ICD10CM|Salter-Harris Type II physeal fracture of upper end of right tibia|Salter-Harris Type II physeal fracture of upper end of right tibia +C2865638|T037|AB|S89.021|ICD10CM|Sltr-haris Type II physeal fx upper end of right tibia|Sltr-haris Type II physeal fx upper end of right tibia +C2865639|T037|AB|S89.021A|ICD10CM|Sltr-haris Type II physeal fx upper end of right tibia, init|Sltr-haris Type II physeal fx upper end of right tibia, init +C2865640|T037|AB|S89.021D|ICD10CM|Sltr-haris Type II physl fx upr end r tibia, 7thD|Sltr-haris Type II physl fx upr end r tibia, 7thD +C2865641|T037|AB|S89.021G|ICD10CM|Sltr-haris Type II physl fx upr end r tibia, 7thG|Sltr-haris Type II physl fx upr end r tibia, 7thG +C2865642|T037|AB|S89.021K|ICD10CM|Sltr-haris Type II physl fx upr end r tibia, 7thK|Sltr-haris Type II physl fx upr end r tibia, 7thK +C2865643|T037|AB|S89.021P|ICD10CM|Sltr-haris Type II physl fx upr end r tibia, 7thP|Sltr-haris Type II physl fx upr end r tibia, 7thP +C2865644|T037|PT|S89.021S|ICD10CM|Salter-Harris Type II physeal fracture of upper end of right tibia, sequela|Salter-Harris Type II physeal fracture of upper end of right tibia, sequela +C2865644|T037|AB|S89.021S|ICD10CM|Sltr-haris Type II physeal fx upper end of r tibia, sequela|Sltr-haris Type II physeal fx upper end of r tibia, sequela +C2865645|T037|HT|S89.022|ICD10CM|Salter-Harris Type II physeal fracture of upper end of left tibia|Salter-Harris Type II physeal fracture of upper end of left tibia +C2865645|T037|AB|S89.022|ICD10CM|Sltr-haris Type II physeal fx upper end of left tibia|Sltr-haris Type II physeal fx upper end of left tibia +C2865646|T037|AB|S89.022A|ICD10CM|Sltr-haris Type II physeal fx upper end of left tibia, init|Sltr-haris Type II physeal fx upper end of left tibia, init +C2865647|T037|AB|S89.022D|ICD10CM|Sltr-haris Type II physl fx upr end l tibia, 7thD|Sltr-haris Type II physl fx upr end l tibia, 7thD +C2865648|T037|AB|S89.022G|ICD10CM|Sltr-haris Type II physl fx upr end l tibia, 7thG|Sltr-haris Type II physl fx upr end l tibia, 7thG +C2865649|T037|AB|S89.022K|ICD10CM|Sltr-haris Type II physl fx upr end l tibia, 7thK|Sltr-haris Type II physl fx upr end l tibia, 7thK +C2865650|T037|AB|S89.022P|ICD10CM|Sltr-haris Type II physl fx upr end l tibia, 7thP|Sltr-haris Type II physl fx upr end l tibia, 7thP +C2865651|T037|PT|S89.022S|ICD10CM|Salter-Harris Type II physeal fracture of upper end of left tibia, sequela|Salter-Harris Type II physeal fracture of upper end of left tibia, sequela +C2865651|T037|AB|S89.022S|ICD10CM|Sltr-haris Type II physeal fx upper end of l tibia, sequela|Sltr-haris Type II physeal fx upper end of l tibia, sequela +C2865652|T037|HT|S89.029|ICD10CM|Salter-Harris Type II physeal fracture of upper end of unspecified tibia|Salter-Harris Type II physeal fracture of upper end of unspecified tibia +C2865652|T037|AB|S89.029|ICD10CM|Sltr-haris Type II physeal fx upper end of unsp tibia|Sltr-haris Type II physeal fx upper end of unsp tibia +C2865653|T037|AB|S89.029A|ICD10CM|Sltr-haris Type II physeal fx upper end of unsp tibia, init|Sltr-haris Type II physeal fx upper end of unsp tibia, init +C2865654|T037|AB|S89.029D|ICD10CM|Sltr-haris Type II physl fx upr end unsp tibia, 7thD|Sltr-haris Type II physl fx upr end unsp tibia, 7thD +C2865655|T037|AB|S89.029G|ICD10CM|Sltr-haris Type II physl fx upr end unsp tibia, 7thG|Sltr-haris Type II physl fx upr end unsp tibia, 7thG +C2865656|T037|AB|S89.029K|ICD10CM|Sltr-haris Type II physl fx upr end unsp tibia, 7thK|Sltr-haris Type II physl fx upr end unsp tibia, 7thK +C2865657|T037|AB|S89.029P|ICD10CM|Sltr-haris Type II physl fx upr end unsp tibia, 7thP|Sltr-haris Type II physl fx upr end unsp tibia, 7thP +C2865658|T037|PT|S89.029S|ICD10CM|Salter-Harris Type II physeal fracture of upper end of unspecified tibia, sequela|Salter-Harris Type II physeal fracture of upper end of unspecified tibia, sequela +C2865658|T037|AB|S89.029S|ICD10CM|Sltr-haris Type II physl fx upper end of unsp tibia, sequela|Sltr-haris Type II physl fx upper end of unsp tibia, sequela +C2865659|T037|HT|S89.03|ICD10CM|Salter-Harris Type III physeal fracture of upper end of tibia|Salter-Harris Type III physeal fracture of upper end of tibia +C2865659|T037|AB|S89.03|ICD10CM|Sltr-haris Type III physeal fracture of upper end of tibia|Sltr-haris Type III physeal fracture of upper end of tibia +C2865660|T037|HT|S89.031|ICD10CM|Salter-Harris Type III physeal fracture of upper end of right tibia|Salter-Harris Type III physeal fracture of upper end of right tibia +C2865660|T037|AB|S89.031|ICD10CM|Sltr-haris Type III physeal fx upper end of right tibia|Sltr-haris Type III physeal fx upper end of right tibia +C2865661|T037|AB|S89.031A|ICD10CM|Sltr-haris Type III physeal fx upper end of r tibia, init|Sltr-haris Type III physeal fx upper end of r tibia, init +C2865662|T037|AB|S89.031D|ICD10CM|Sltr-haris Type III physl fx upr end r tibia, 7thD|Sltr-haris Type III physl fx upr end r tibia, 7thD +C2865663|T037|AB|S89.031G|ICD10CM|Sltr-haris Type III physl fx upr end r tibia, 7thG|Sltr-haris Type III physl fx upr end r tibia, 7thG +C2865664|T037|AB|S89.031K|ICD10CM|Sltr-haris Type III physl fx upr end r tibia, 7thK|Sltr-haris Type III physl fx upr end r tibia, 7thK +C2865665|T037|AB|S89.031P|ICD10CM|Sltr-haris Type III physl fx upr end r tibia, 7thP|Sltr-haris Type III physl fx upr end r tibia, 7thP +C2865666|T037|PT|S89.031S|ICD10CM|Salter-Harris Type III physeal fracture of upper end of right tibia, sequela|Salter-Harris Type III physeal fracture of upper end of right tibia, sequela +C2865666|T037|AB|S89.031S|ICD10CM|Sltr-haris Type III physeal fx upper end of r tibia, sequela|Sltr-haris Type III physeal fx upper end of r tibia, sequela +C2865667|T037|HT|S89.032|ICD10CM|Salter-Harris Type III physeal fracture of upper end of left tibia|Salter-Harris Type III physeal fracture of upper end of left tibia +C2865667|T037|AB|S89.032|ICD10CM|Sltr-haris Type III physeal fx upper end of left tibia|Sltr-haris Type III physeal fx upper end of left tibia +C2865668|T037|AB|S89.032A|ICD10CM|Sltr-haris Type III physeal fx upper end of left tibia, init|Sltr-haris Type III physeal fx upper end of left tibia, init +C2865669|T037|AB|S89.032D|ICD10CM|Sltr-haris Type III physl fx upr end l tibia, 7thD|Sltr-haris Type III physl fx upr end l tibia, 7thD +C2865670|T037|AB|S89.032G|ICD10CM|Sltr-haris Type III physl fx upr end l tibia, 7thG|Sltr-haris Type III physl fx upr end l tibia, 7thG +C2865671|T037|AB|S89.032K|ICD10CM|Sltr-haris Type III physl fx upr end l tibia, 7thK|Sltr-haris Type III physl fx upr end l tibia, 7thK +C2865672|T037|AB|S89.032P|ICD10CM|Sltr-haris Type III physl fx upr end l tibia, 7thP|Sltr-haris Type III physl fx upr end l tibia, 7thP +C2865673|T037|PT|S89.032S|ICD10CM|Salter-Harris Type III physeal fracture of upper end of left tibia, sequela|Salter-Harris Type III physeal fracture of upper end of left tibia, sequela +C2865673|T037|AB|S89.032S|ICD10CM|Sltr-haris Type III physeal fx upper end of l tibia, sequela|Sltr-haris Type III physeal fx upper end of l tibia, sequela +C2865674|T037|HT|S89.039|ICD10CM|Salter-Harris Type III physeal fracture of upper end of unspecified tibia|Salter-Harris Type III physeal fracture of upper end of unspecified tibia +C2865674|T037|AB|S89.039|ICD10CM|Sltr-haris Type III physeal fx upper end of unsp tibia|Sltr-haris Type III physeal fx upper end of unsp tibia +C2865675|T037|AB|S89.039A|ICD10CM|Sltr-haris Type III physeal fx upper end of unsp tibia, init|Sltr-haris Type III physeal fx upper end of unsp tibia, init +C2865676|T037|AB|S89.039D|ICD10CM|Sltr-haris Type III physl fx upr end unsp tibia, 7thD|Sltr-haris Type III physl fx upr end unsp tibia, 7thD +C2865677|T037|AB|S89.039G|ICD10CM|Sltr-haris Type III physl fx upr end unsp tibia, 7thG|Sltr-haris Type III physl fx upr end unsp tibia, 7thG +C2865678|T037|AB|S89.039K|ICD10CM|Sltr-haris Type III physl fx upr end unsp tibia, 7thK|Sltr-haris Type III physl fx upr end unsp tibia, 7thK +C2865679|T037|AB|S89.039P|ICD10CM|Sltr-haris Type III physl fx upr end unsp tibia, 7thP|Sltr-haris Type III physl fx upr end unsp tibia, 7thP +C2865680|T037|PT|S89.039S|ICD10CM|Salter-Harris Type III physeal fracture of upper end of unspecified tibia, sequela|Salter-Harris Type III physeal fracture of upper end of unspecified tibia, sequela +C2865680|T037|AB|S89.039S|ICD10CM|Sltr-haris Type III physl fx upper end of unsp tibia, sqla|Sltr-haris Type III physl fx upper end of unsp tibia, sqla +C2865681|T037|AB|S89.04|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of tibia|Salter-Harris Type IV physeal fracture of upper end of tibia +C2865681|T037|HT|S89.04|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of tibia|Salter-Harris Type IV physeal fracture of upper end of tibia +C2865682|T037|HT|S89.041|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of right tibia|Salter-Harris Type IV physeal fracture of upper end of right tibia +C2865682|T037|AB|S89.041|ICD10CM|Sltr-haris Type IV physeal fx upper end of right tibia|Sltr-haris Type IV physeal fx upper end of right tibia +C2865683|T037|AB|S89.041A|ICD10CM|Sltr-haris Type IV physeal fx upper end of right tibia, init|Sltr-haris Type IV physeal fx upper end of right tibia, init +C2865684|T037|AB|S89.041D|ICD10CM|Sltr-haris Type IV physl fx upr end r tibia, 7thD|Sltr-haris Type IV physl fx upr end r tibia, 7thD +C2865685|T037|AB|S89.041G|ICD10CM|Sltr-haris Type IV physl fx upr end r tibia, 7thG|Sltr-haris Type IV physl fx upr end r tibia, 7thG +C2865686|T037|AB|S89.041K|ICD10CM|Sltr-haris Type IV physl fx upr end r tibia, 7thK|Sltr-haris Type IV physl fx upr end r tibia, 7thK +C2865687|T037|AB|S89.041P|ICD10CM|Sltr-haris Type IV physl fx upr end r tibia, 7thP|Sltr-haris Type IV physl fx upr end r tibia, 7thP +C2865688|T037|PT|S89.041S|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of right tibia, sequela|Salter-Harris Type IV physeal fracture of upper end of right tibia, sequela +C2865688|T037|AB|S89.041S|ICD10CM|Sltr-haris Type IV physeal fx upper end of r tibia, sequela|Sltr-haris Type IV physeal fx upper end of r tibia, sequela +C2865689|T037|HT|S89.042|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of left tibia|Salter-Harris Type IV physeal fracture of upper end of left tibia +C2865689|T037|AB|S89.042|ICD10CM|Sltr-haris Type IV physeal fx upper end of left tibia|Sltr-haris Type IV physeal fx upper end of left tibia +C2865690|T037|AB|S89.042A|ICD10CM|Sltr-haris Type IV physeal fx upper end of left tibia, init|Sltr-haris Type IV physeal fx upper end of left tibia, init +C2865691|T037|AB|S89.042D|ICD10CM|Sltr-haris Type IV physl fx upr end l tibia, 7thD|Sltr-haris Type IV physl fx upr end l tibia, 7thD +C2865692|T037|AB|S89.042G|ICD10CM|Sltr-haris Type IV physl fx upr end l tibia, 7thG|Sltr-haris Type IV physl fx upr end l tibia, 7thG +C2865693|T037|AB|S89.042K|ICD10CM|Sltr-haris Type IV physl fx upr end l tibia, 7thK|Sltr-haris Type IV physl fx upr end l tibia, 7thK +C2865694|T037|AB|S89.042P|ICD10CM|Sltr-haris Type IV physl fx upr end l tibia, 7thP|Sltr-haris Type IV physl fx upr end l tibia, 7thP +C2865695|T037|PT|S89.042S|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of left tibia, sequela|Salter-Harris Type IV physeal fracture of upper end of left tibia, sequela +C2865695|T037|AB|S89.042S|ICD10CM|Sltr-haris Type IV physeal fx upper end of l tibia, sequela|Sltr-haris Type IV physeal fx upper end of l tibia, sequela +C2865696|T037|HT|S89.049|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of unspecified tibia|Salter-Harris Type IV physeal fracture of upper end of unspecified tibia +C2865696|T037|AB|S89.049|ICD10CM|Sltr-haris Type IV physeal fx upper end of unsp tibia|Sltr-haris Type IV physeal fx upper end of unsp tibia +C2865697|T037|AB|S89.049A|ICD10CM|Sltr-haris Type IV physeal fx upper end of unsp tibia, init|Sltr-haris Type IV physeal fx upper end of unsp tibia, init +C2865698|T037|AB|S89.049D|ICD10CM|Sltr-haris Type IV physl fx upr end unsp tibia, 7thD|Sltr-haris Type IV physl fx upr end unsp tibia, 7thD +C2865699|T037|AB|S89.049G|ICD10CM|Sltr-haris Type IV physl fx upr end unsp tibia, 7thG|Sltr-haris Type IV physl fx upr end unsp tibia, 7thG +C2865700|T037|AB|S89.049K|ICD10CM|Sltr-haris Type IV physl fx upr end unsp tibia, 7thK|Sltr-haris Type IV physl fx upr end unsp tibia, 7thK +C2865701|T037|AB|S89.049P|ICD10CM|Sltr-haris Type IV physl fx upr end unsp tibia, 7thP|Sltr-haris Type IV physl fx upr end unsp tibia, 7thP +C2865702|T037|PT|S89.049S|ICD10CM|Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, sequela|Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, sequela +C2865702|T037|AB|S89.049S|ICD10CM|Sltr-haris Type IV physl fx upper end of unsp tibia, sequela|Sltr-haris Type IV physl fx upper end of unsp tibia, sequela +C2865703|T037|AB|S89.09|ICD10CM|Other physeal fracture of upper end of tibia|Other physeal fracture of upper end of tibia +C2865703|T037|HT|S89.09|ICD10CM|Other physeal fracture of upper end of tibia|Other physeal fracture of upper end of tibia +C2865704|T037|AB|S89.091|ICD10CM|Other physeal fracture of upper end of right tibia|Other physeal fracture of upper end of right tibia +C2865704|T037|HT|S89.091|ICD10CM|Other physeal fracture of upper end of right tibia|Other physeal fracture of upper end of right tibia +C2865705|T037|AB|S89.091A|ICD10CM|Oth physeal fracture of upper end of right tibia, init|Oth physeal fracture of upper end of right tibia, init +C2865705|T037|PT|S89.091A|ICD10CM|Other physeal fracture of upper end of right tibia, initial encounter for closed fracture|Other physeal fracture of upper end of right tibia, initial encounter for closed fracture +C2865706|T037|AB|S89.091D|ICD10CM|Oth physl fx upper end of r tibia, subs for fx w routn heal|Oth physl fx upper end of r tibia, subs for fx w routn heal +C2865707|T037|AB|S89.091G|ICD10CM|Oth physl fx upper end of r tibia, subs for fx w delay heal|Oth physl fx upper end of r tibia, subs for fx w delay heal +C2865708|T037|AB|S89.091K|ICD10CM|Oth physeal fx upper end of r tibia, subs for fx w nonunion|Oth physeal fx upper end of r tibia, subs for fx w nonunion +C2865708|T037|PT|S89.091K|ICD10CM|Other physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion|Other physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion +C2865709|T037|AB|S89.091P|ICD10CM|Oth physeal fx upper end of r tibia, subs for fx w malunion|Oth physeal fx upper end of r tibia, subs for fx w malunion +C2865709|T037|PT|S89.091P|ICD10CM|Other physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion|Other physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion +C2865710|T037|PT|S89.091S|ICD10CM|Other physeal fracture of upper end of right tibia, sequela|Other physeal fracture of upper end of right tibia, sequela +C2865710|T037|AB|S89.091S|ICD10CM|Other physeal fracture of upper end of right tibia, sequela|Other physeal fracture of upper end of right tibia, sequela +C2865711|T037|AB|S89.092|ICD10CM|Other physeal fracture of upper end of left tibia|Other physeal fracture of upper end of left tibia +C2865711|T037|HT|S89.092|ICD10CM|Other physeal fracture of upper end of left tibia|Other physeal fracture of upper end of left tibia +C2865712|T037|AB|S89.092A|ICD10CM|Oth physeal fracture of upper end of left tibia, init|Oth physeal fracture of upper end of left tibia, init +C2865712|T037|PT|S89.092A|ICD10CM|Other physeal fracture of upper end of left tibia, initial encounter for closed fracture|Other physeal fracture of upper end of left tibia, initial encounter for closed fracture +C2865713|T037|AB|S89.092D|ICD10CM|Oth physl fx upper end of l tibia, subs for fx w routn heal|Oth physl fx upper end of l tibia, subs for fx w routn heal +C2865714|T037|AB|S89.092G|ICD10CM|Oth physl fx upper end of l tibia, subs for fx w delay heal|Oth physl fx upper end of l tibia, subs for fx w delay heal +C2865715|T037|AB|S89.092K|ICD10CM|Oth physeal fx upper end of l tibia, subs for fx w nonunion|Oth physeal fx upper end of l tibia, subs for fx w nonunion +C2865715|T037|PT|S89.092K|ICD10CM|Other physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion|Other physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion +C2865716|T037|AB|S89.092P|ICD10CM|Oth physeal fx upper end of l tibia, subs for fx w malunion|Oth physeal fx upper end of l tibia, subs for fx w malunion +C2865716|T037|PT|S89.092P|ICD10CM|Other physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion|Other physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion +C2865717|T037|PT|S89.092S|ICD10CM|Other physeal fracture of upper end of left tibia, sequela|Other physeal fracture of upper end of left tibia, sequela +C2865717|T037|AB|S89.092S|ICD10CM|Other physeal fracture of upper end of left tibia, sequela|Other physeal fracture of upper end of left tibia, sequela +C2865718|T037|AB|S89.099|ICD10CM|Other physeal fracture of upper end of unspecified tibia|Other physeal fracture of upper end of unspecified tibia +C2865718|T037|HT|S89.099|ICD10CM|Other physeal fracture of upper end of unspecified tibia|Other physeal fracture of upper end of unspecified tibia +C2865719|T037|AB|S89.099A|ICD10CM|Oth physeal fracture of upper end of unsp tibia, init|Oth physeal fracture of upper end of unsp tibia, init +C2865719|T037|PT|S89.099A|ICD10CM|Other physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture|Other physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture +C2865720|T037|AB|S89.099D|ICD10CM|Oth physl fx upper end unsp tibia, subs for fx w routn heal|Oth physl fx upper end unsp tibia, subs for fx w routn heal +C2865721|T037|AB|S89.099G|ICD10CM|Oth physl fx upper end unsp tibia, subs for fx w delay heal|Oth physl fx upper end unsp tibia, subs for fx w delay heal +C2865722|T037|AB|S89.099K|ICD10CM|Oth physl fx upper end of unsp tibia, subs for fx w nonunion|Oth physl fx upper end of unsp tibia, subs for fx w nonunion +C2865723|T037|AB|S89.099P|ICD10CM|Oth physl fx upper end of unsp tibia, subs for fx w malunion|Oth physl fx upper end of unsp tibia, subs for fx w malunion +C2865724|T037|AB|S89.099S|ICD10CM|Other physeal fracture of upper end of unsp tibia, sequela|Other physeal fracture of upper end of unsp tibia, sequela +C2865724|T037|PT|S89.099S|ICD10CM|Other physeal fracture of upper end of unspecified tibia, sequela|Other physeal fracture of upper end of unspecified tibia, sequela +C2865725|T037|AB|S89.1|ICD10CM|Physeal fracture of lower end of tibia|Physeal fracture of lower end of tibia +C2865725|T037|HT|S89.1|ICD10CM|Physeal fracture of lower end of tibia|Physeal fracture of lower end of tibia +C2865726|T037|AB|S89.10|ICD10CM|Unspecified physeal fracture of lower end of tibia|Unspecified physeal fracture of lower end of tibia +C2865726|T037|HT|S89.10|ICD10CM|Unspecified physeal fracture of lower end of tibia|Unspecified physeal fracture of lower end of tibia +C2865727|T037|AB|S89.101|ICD10CM|Unspecified physeal fracture of lower end of right tibia|Unspecified physeal fracture of lower end of right tibia +C2865727|T037|HT|S89.101|ICD10CM|Unspecified physeal fracture of lower end of right tibia|Unspecified physeal fracture of lower end of right tibia +C2865728|T037|AB|S89.101A|ICD10CM|Unsp physeal fracture of lower end of right tibia, init|Unsp physeal fracture of lower end of right tibia, init +C2865728|T037|PT|S89.101A|ICD10CM|Unspecified physeal fracture of lower end of right tibia, initial encounter for closed fracture|Unspecified physeal fracture of lower end of right tibia, initial encounter for closed fracture +C2865729|T037|AB|S89.101D|ICD10CM|Unsp physl fx lower end of r tibia, subs for fx w routn heal|Unsp physl fx lower end of r tibia, subs for fx w routn heal +C2865730|T037|AB|S89.101G|ICD10CM|Unsp physl fx lower end of r tibia, subs for fx w delay heal|Unsp physl fx lower end of r tibia, subs for fx w delay heal +C2865731|T037|AB|S89.101K|ICD10CM|Unsp physeal fx lower end of r tibia, subs for fx w nonunion|Unsp physeal fx lower end of r tibia, subs for fx w nonunion +C2865732|T037|AB|S89.101P|ICD10CM|Unsp physeal fx lower end of r tibia, subs for fx w malunion|Unsp physeal fx lower end of r tibia, subs for fx w malunion +C2865733|T037|AB|S89.101S|ICD10CM|Unsp physeal fracture of lower end of right tibia, sequela|Unsp physeal fracture of lower end of right tibia, sequela +C2865733|T037|PT|S89.101S|ICD10CM|Unspecified physeal fracture of lower end of right tibia, sequela|Unspecified physeal fracture of lower end of right tibia, sequela +C2865734|T037|AB|S89.102|ICD10CM|Unspecified physeal fracture of lower end of left tibia|Unspecified physeal fracture of lower end of left tibia +C2865734|T037|HT|S89.102|ICD10CM|Unspecified physeal fracture of lower end of left tibia|Unspecified physeal fracture of lower end of left tibia +C2865735|T037|AB|S89.102A|ICD10CM|Unsp physeal fracture of lower end of left tibia, init|Unsp physeal fracture of lower end of left tibia, init +C2865735|T037|PT|S89.102A|ICD10CM|Unspecified physeal fracture of lower end of left tibia, initial encounter for closed fracture|Unspecified physeal fracture of lower end of left tibia, initial encounter for closed fracture +C2865736|T037|AB|S89.102D|ICD10CM|Unsp physl fx lower end of l tibia, subs for fx w routn heal|Unsp physl fx lower end of l tibia, subs for fx w routn heal +C2865737|T037|AB|S89.102G|ICD10CM|Unsp physl fx lower end of l tibia, subs for fx w delay heal|Unsp physl fx lower end of l tibia, subs for fx w delay heal +C2865738|T037|AB|S89.102K|ICD10CM|Unsp physeal fx lower end of l tibia, subs for fx w nonunion|Unsp physeal fx lower end of l tibia, subs for fx w nonunion +C2865739|T037|AB|S89.102P|ICD10CM|Unsp physeal fx lower end of l tibia, subs for fx w malunion|Unsp physeal fx lower end of l tibia, subs for fx w malunion +C2865740|T037|AB|S89.102S|ICD10CM|Unsp physeal fracture of lower end of left tibia, sequela|Unsp physeal fracture of lower end of left tibia, sequela +C2865740|T037|PT|S89.102S|ICD10CM|Unspecified physeal fracture of lower end of left tibia, sequela|Unspecified physeal fracture of lower end of left tibia, sequela +C2865741|T037|AB|S89.109|ICD10CM|Unsp physeal fracture of lower end of unspecified tibia|Unsp physeal fracture of lower end of unspecified tibia +C2865741|T037|HT|S89.109|ICD10CM|Unspecified physeal fracture of lower end of unspecified tibia|Unspecified physeal fracture of lower end of unspecified tibia +C2865742|T037|AB|S89.109A|ICD10CM|Unsp physeal fracture of lower end of unsp tibia, init|Unsp physeal fracture of lower end of unsp tibia, init +C2865743|T037|AB|S89.109D|ICD10CM|Unsp physl fx lower end unsp tibia, subs for fx w routn heal|Unsp physl fx lower end unsp tibia, subs for fx w routn heal +C2865744|T037|AB|S89.109G|ICD10CM|Unsp physl fx lower end unsp tibia, subs for fx w delay heal|Unsp physl fx lower end unsp tibia, subs for fx w delay heal +C2865745|T037|AB|S89.109K|ICD10CM|Unsp physl fx lower end unsp tibia, subs for fx w nonunion|Unsp physl fx lower end unsp tibia, subs for fx w nonunion +C2865746|T037|AB|S89.109P|ICD10CM|Unsp physl fx lower end unsp tibia, subs for fx w malunion|Unsp physl fx lower end unsp tibia, subs for fx w malunion +C2865747|T037|AB|S89.109S|ICD10CM|Unsp physeal fracture of lower end of unsp tibia, sequela|Unsp physeal fracture of lower end of unsp tibia, sequela +C2865747|T037|PT|S89.109S|ICD10CM|Unspecified physeal fracture of lower end of unspecified tibia, sequela|Unspecified physeal fracture of lower end of unspecified tibia, sequela +C2865748|T037|AB|S89.11|ICD10CM|Salter-Harris Type I physeal fracture of lower end of tibia|Salter-Harris Type I physeal fracture of lower end of tibia +C2865748|T037|HT|S89.11|ICD10CM|Salter-Harris Type I physeal fracture of lower end of tibia|Salter-Harris Type I physeal fracture of lower end of tibia +C2865749|T037|HT|S89.111|ICD10CM|Salter-Harris Type I physeal fracture of lower end of right tibia|Salter-Harris Type I physeal fracture of lower end of right tibia +C2865749|T037|AB|S89.111|ICD10CM|Sltr-haris Type I physeal fx lower end of right tibia|Sltr-haris Type I physeal fx lower end of right tibia +C2865750|T037|AB|S89.111A|ICD10CM|Sltr-haris Type I physeal fx lower end of right tibia, init|Sltr-haris Type I physeal fx lower end of right tibia, init +C2865751|T037|AB|S89.111D|ICD10CM|Sltr-haris Type I physl fx low end r tibia, 7thD|Sltr-haris Type I physl fx low end r tibia, 7thD +C2865752|T037|AB|S89.111G|ICD10CM|Sltr-haris Type I physl fx low end r tibia, 7thG|Sltr-haris Type I physl fx low end r tibia, 7thG +C2865753|T037|AB|S89.111K|ICD10CM|Sltr-haris Type I physl fx low end r tibia, 7thK|Sltr-haris Type I physl fx low end r tibia, 7thK +C2865754|T037|AB|S89.111P|ICD10CM|Sltr-haris Type I physl fx low end r tibia, 7thP|Sltr-haris Type I physl fx low end r tibia, 7thP +C2865755|T037|PT|S89.111S|ICD10CM|Salter-Harris Type I physeal fracture of lower end of right tibia, sequela|Salter-Harris Type I physeal fracture of lower end of right tibia, sequela +C2865755|T037|AB|S89.111S|ICD10CM|Sltr-haris Type I physeal fx lower end of r tibia, sequela|Sltr-haris Type I physeal fx lower end of r tibia, sequela +C2865756|T037|HT|S89.112|ICD10CM|Salter-Harris Type I physeal fracture of lower end of left tibia|Salter-Harris Type I physeal fracture of lower end of left tibia +C2865756|T037|AB|S89.112|ICD10CM|Sltr-haris Type I physeal fx lower end of left tibia|Sltr-haris Type I physeal fx lower end of left tibia +C2865757|T037|AB|S89.112A|ICD10CM|Sltr-haris Type I physeal fx lower end of left tibia, init|Sltr-haris Type I physeal fx lower end of left tibia, init +C2865758|T037|AB|S89.112D|ICD10CM|Sltr-haris Type I physl fx low end l tibia, 7thD|Sltr-haris Type I physl fx low end l tibia, 7thD +C2865759|T037|AB|S89.112G|ICD10CM|Sltr-haris Type I physl fx low end l tibia, 7thG|Sltr-haris Type I physl fx low end l tibia, 7thG +C2865760|T037|AB|S89.112K|ICD10CM|Sltr-haris Type I physl fx low end l tibia, 7thK|Sltr-haris Type I physl fx low end l tibia, 7thK +C2865761|T037|AB|S89.112P|ICD10CM|Sltr-haris Type I physl fx low end l tibia, 7thP|Sltr-haris Type I physl fx low end l tibia, 7thP +C2865762|T037|PT|S89.112S|ICD10CM|Salter-Harris Type I physeal fracture of lower end of left tibia, sequela|Salter-Harris Type I physeal fracture of lower end of left tibia, sequela +C2865762|T037|AB|S89.112S|ICD10CM|Sltr-haris Type I physeal fx lower end of l tibia, sequela|Sltr-haris Type I physeal fx lower end of l tibia, sequela +C2865763|T037|HT|S89.119|ICD10CM|Salter-Harris Type I physeal fracture of lower end of unspecified tibia|Salter-Harris Type I physeal fracture of lower end of unspecified tibia +C2865763|T037|AB|S89.119|ICD10CM|Sltr-haris Type I physeal fx lower end of unsp tibia|Sltr-haris Type I physeal fx lower end of unsp tibia +C2865764|T037|AB|S89.119A|ICD10CM|Sltr-haris Type I physeal fx lower end of unsp tibia, init|Sltr-haris Type I physeal fx lower end of unsp tibia, init +C2865765|T037|AB|S89.119D|ICD10CM|Sltr-haris Type I physl fx low end unsp tibia, 7thD|Sltr-haris Type I physl fx low end unsp tibia, 7thD +C2865766|T037|AB|S89.119G|ICD10CM|Sltr-haris Type I physl fx low end unsp tibia, 7thG|Sltr-haris Type I physl fx low end unsp tibia, 7thG +C2865767|T037|AB|S89.119K|ICD10CM|Sltr-haris Type I physl fx low end unsp tibia, 7thK|Sltr-haris Type I physl fx low end unsp tibia, 7thK +C2865768|T037|AB|S89.119P|ICD10CM|Sltr-haris Type I physl fx low end unsp tibia, 7thP|Sltr-haris Type I physl fx low end unsp tibia, 7thP +C2865769|T037|PT|S89.119S|ICD10CM|Salter-Harris Type I physeal fracture of lower end of unspecified tibia, sequela|Salter-Harris Type I physeal fracture of lower end of unspecified tibia, sequela +C2865769|T037|AB|S89.119S|ICD10CM|Sltr-haris Type I physl fx lower end of unsp tibia, sequela|Sltr-haris Type I physl fx lower end of unsp tibia, sequela +C2865770|T037|AB|S89.12|ICD10CM|Salter-Harris Type II physeal fracture of lower end of tibia|Salter-Harris Type II physeal fracture of lower end of tibia +C2865770|T037|HT|S89.12|ICD10CM|Salter-Harris Type II physeal fracture of lower end of tibia|Salter-Harris Type II physeal fracture of lower end of tibia +C2865771|T037|HT|S89.121|ICD10CM|Salter-Harris Type II physeal fracture of lower end of right tibia|Salter-Harris Type II physeal fracture of lower end of right tibia +C2865771|T037|AB|S89.121|ICD10CM|Sltr-haris Type II physeal fx lower end of right tibia|Sltr-haris Type II physeal fx lower end of right tibia +C2865772|T037|AB|S89.121A|ICD10CM|Sltr-haris Type II physeal fx lower end of right tibia, init|Sltr-haris Type II physeal fx lower end of right tibia, init +C2865773|T037|AB|S89.121D|ICD10CM|Sltr-haris Type II physl fx low end r tibia, 7thD|Sltr-haris Type II physl fx low end r tibia, 7thD +C2865774|T037|AB|S89.121G|ICD10CM|Sltr-haris Type II physl fx low end r tibia, 7thG|Sltr-haris Type II physl fx low end r tibia, 7thG +C2865775|T037|AB|S89.121K|ICD10CM|Sltr-haris Type II physl fx low end r tibia, 7thK|Sltr-haris Type II physl fx low end r tibia, 7thK +C2865776|T037|AB|S89.121P|ICD10CM|Sltr-haris Type II physl fx low end r tibia, 7thP|Sltr-haris Type II physl fx low end r tibia, 7thP +C2865777|T037|PT|S89.121S|ICD10CM|Salter-Harris Type II physeal fracture of lower end of right tibia, sequela|Salter-Harris Type II physeal fracture of lower end of right tibia, sequela +C2865777|T037|AB|S89.121S|ICD10CM|Sltr-haris Type II physeal fx lower end of r tibia, sequela|Sltr-haris Type II physeal fx lower end of r tibia, sequela +C2865778|T037|HT|S89.122|ICD10CM|Salter-Harris Type II physeal fracture of lower end of left tibia|Salter-Harris Type II physeal fracture of lower end of left tibia +C2865778|T037|AB|S89.122|ICD10CM|Sltr-haris Type II physeal fx lower end of left tibia|Sltr-haris Type II physeal fx lower end of left tibia +C2865779|T037|AB|S89.122A|ICD10CM|Sltr-haris Type II physeal fx lower end of left tibia, init|Sltr-haris Type II physeal fx lower end of left tibia, init +C2865780|T037|AB|S89.122D|ICD10CM|Sltr-haris Type II physl fx low end l tibia, 7thD|Sltr-haris Type II physl fx low end l tibia, 7thD +C2865781|T037|AB|S89.122G|ICD10CM|Sltr-haris Type II physl fx low end l tibia, 7thG|Sltr-haris Type II physl fx low end l tibia, 7thG +C2865782|T037|AB|S89.122K|ICD10CM|Sltr-haris Type II physl fx low end l tibia, 7thK|Sltr-haris Type II physl fx low end l tibia, 7thK +C2865783|T037|AB|S89.122P|ICD10CM|Sltr-haris Type II physl fx low end l tibia, 7thP|Sltr-haris Type II physl fx low end l tibia, 7thP +C2865784|T037|PT|S89.122S|ICD10CM|Salter-Harris Type II physeal fracture of lower end of left tibia, sequela|Salter-Harris Type II physeal fracture of lower end of left tibia, sequela +C2865784|T037|AB|S89.122S|ICD10CM|Sltr-haris Type II physeal fx lower end of l tibia, sequela|Sltr-haris Type II physeal fx lower end of l tibia, sequela +C2865785|T037|HT|S89.129|ICD10CM|Salter-Harris Type II physeal fracture of lower end of unspecified tibia|Salter-Harris Type II physeal fracture of lower end of unspecified tibia +C2865785|T037|AB|S89.129|ICD10CM|Sltr-haris Type II physeal fx lower end of unsp tibia|Sltr-haris Type II physeal fx lower end of unsp tibia +C2865786|T037|AB|S89.129A|ICD10CM|Sltr-haris Type II physeal fx lower end of unsp tibia, init|Sltr-haris Type II physeal fx lower end of unsp tibia, init +C2865787|T037|AB|S89.129D|ICD10CM|Sltr-haris Type II physl fx low end unsp tibia, 7thD|Sltr-haris Type II physl fx low end unsp tibia, 7thD +C2865788|T037|AB|S89.129G|ICD10CM|Sltr-haris Type II physl fx low end unsp tibia, 7thG|Sltr-haris Type II physl fx low end unsp tibia, 7thG +C2865789|T037|AB|S89.129K|ICD10CM|Sltr-haris Type II physl fx low end unsp tibia, 7thK|Sltr-haris Type II physl fx low end unsp tibia, 7thK +C2865790|T037|AB|S89.129P|ICD10CM|Sltr-haris Type II physl fx low end unsp tibia, 7thP|Sltr-haris Type II physl fx low end unsp tibia, 7thP +C2865791|T037|PT|S89.129S|ICD10CM|Salter-Harris Type II physeal fracture of lower end of unspecified tibia, sequela|Salter-Harris Type II physeal fracture of lower end of unspecified tibia, sequela +C2865791|T037|AB|S89.129S|ICD10CM|Sltr-haris Type II physl fx lower end of unsp tibia, sequela|Sltr-haris Type II physl fx lower end of unsp tibia, sequela +C2865792|T037|HT|S89.13|ICD10CM|Salter-Harris Type III physeal fracture of lower end of tibia|Salter-Harris Type III physeal fracture of lower end of tibia +C2865792|T037|AB|S89.13|ICD10CM|Sltr-haris Type III physeal fracture of lower end of tibia|Sltr-haris Type III physeal fracture of lower end of tibia +C2865793|T037|HT|S89.131|ICD10CM|Salter-Harris Type III physeal fracture of lower end of right tibia|Salter-Harris Type III physeal fracture of lower end of right tibia +C2865793|T037|AB|S89.131|ICD10CM|Sltr-haris Type III physeal fx lower end of right tibia|Sltr-haris Type III physeal fx lower end of right tibia +C2865794|T037|AB|S89.131A|ICD10CM|Sltr-haris Type III physeal fx lower end of r tibia, init|Sltr-haris Type III physeal fx lower end of r tibia, init +C2865795|T037|AB|S89.131D|ICD10CM|Sltr-haris Type III physl fx low end r tibia, 7thD|Sltr-haris Type III physl fx low end r tibia, 7thD +C2865796|T037|AB|S89.131G|ICD10CM|Sltr-haris Type III physl fx low end r tibia, 7thG|Sltr-haris Type III physl fx low end r tibia, 7thG +C2865797|T037|AB|S89.131K|ICD10CM|Sltr-haris Type III physl fx low end r tibia, 7thK|Sltr-haris Type III physl fx low end r tibia, 7thK +C2865798|T037|AB|S89.131P|ICD10CM|Sltr-haris Type III physl fx low end r tibia, 7thP|Sltr-haris Type III physl fx low end r tibia, 7thP +C2865799|T037|PT|S89.131S|ICD10CM|Salter-Harris Type III physeal fracture of lower end of right tibia, sequela|Salter-Harris Type III physeal fracture of lower end of right tibia, sequela +C2865799|T037|AB|S89.131S|ICD10CM|Sltr-haris Type III physeal fx lower end of r tibia, sequela|Sltr-haris Type III physeal fx lower end of r tibia, sequela +C2865800|T037|HT|S89.132|ICD10CM|Salter-Harris Type III physeal fracture of lower end of left tibia|Salter-Harris Type III physeal fracture of lower end of left tibia +C2865800|T037|AB|S89.132|ICD10CM|Sltr-haris Type III physeal fx lower end of left tibia|Sltr-haris Type III physeal fx lower end of left tibia +C2865801|T037|AB|S89.132A|ICD10CM|Sltr-haris Type III physeal fx lower end of left tibia, init|Sltr-haris Type III physeal fx lower end of left tibia, init +C2865802|T037|AB|S89.132D|ICD10CM|Sltr-haris Type III physl fx low end l tibia, 7thD|Sltr-haris Type III physl fx low end l tibia, 7thD +C2865803|T037|AB|S89.132G|ICD10CM|Sltr-haris Type III physl fx low end l tibia, 7thG|Sltr-haris Type III physl fx low end l tibia, 7thG +C2865804|T037|AB|S89.132K|ICD10CM|Sltr-haris Type III physl fx low end l tibia, 7thK|Sltr-haris Type III physl fx low end l tibia, 7thK +C2865805|T037|AB|S89.132P|ICD10CM|Sltr-haris Type III physl fx low end l tibia, 7thP|Sltr-haris Type III physl fx low end l tibia, 7thP +C2865806|T037|PT|S89.132S|ICD10CM|Salter-Harris Type III physeal fracture of lower end of left tibia, sequela|Salter-Harris Type III physeal fracture of lower end of left tibia, sequela +C2865806|T037|AB|S89.132S|ICD10CM|Sltr-haris Type III physeal fx lower end of l tibia, sequela|Sltr-haris Type III physeal fx lower end of l tibia, sequela +C2865807|T037|HT|S89.139|ICD10CM|Salter-Harris Type III physeal fracture of lower end of unspecified tibia|Salter-Harris Type III physeal fracture of lower end of unspecified tibia +C2865807|T037|AB|S89.139|ICD10CM|Sltr-haris Type III physeal fx lower end of unsp tibia|Sltr-haris Type III physeal fx lower end of unsp tibia +C2865808|T037|AB|S89.139A|ICD10CM|Sltr-haris Type III physeal fx lower end of unsp tibia, init|Sltr-haris Type III physeal fx lower end of unsp tibia, init +C2865809|T037|AB|S89.139D|ICD10CM|Sltr-haris Type III physl fx low end unsp tibia, 7thD|Sltr-haris Type III physl fx low end unsp tibia, 7thD +C2865810|T037|AB|S89.139G|ICD10CM|Sltr-haris Type III physl fx low end unsp tibia, 7thG|Sltr-haris Type III physl fx low end unsp tibia, 7thG +C2865811|T037|AB|S89.139K|ICD10CM|Sltr-haris Type III physl fx low end unsp tibia, 7thK|Sltr-haris Type III physl fx low end unsp tibia, 7thK +C2865812|T037|AB|S89.139P|ICD10CM|Sltr-haris Type III physl fx low end unsp tibia, 7thP|Sltr-haris Type III physl fx low end unsp tibia, 7thP +C2865813|T037|PT|S89.139S|ICD10CM|Salter-Harris Type III physeal fracture of lower end of unspecified tibia, sequela|Salter-Harris Type III physeal fracture of lower end of unspecified tibia, sequela +C2865813|T037|AB|S89.139S|ICD10CM|Sltr-haris Type III physl fx lower end of unsp tibia, sqla|Sltr-haris Type III physl fx lower end of unsp tibia, sqla +C2865814|T037|AB|S89.14|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of tibia|Salter-Harris Type IV physeal fracture of lower end of tibia +C2865814|T037|HT|S89.14|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of tibia|Salter-Harris Type IV physeal fracture of lower end of tibia +C2865815|T037|HT|S89.141|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of right tibia|Salter-Harris Type IV physeal fracture of lower end of right tibia +C2865815|T037|AB|S89.141|ICD10CM|Sltr-haris Type IV physeal fx lower end of right tibia|Sltr-haris Type IV physeal fx lower end of right tibia +C2865816|T037|AB|S89.141A|ICD10CM|Sltr-haris Type IV physeal fx lower end of right tibia, init|Sltr-haris Type IV physeal fx lower end of right tibia, init +C2865817|T037|AB|S89.141D|ICD10CM|Sltr-haris Type IV physl fx low end r tibia, 7thD|Sltr-haris Type IV physl fx low end r tibia, 7thD +C2865818|T037|AB|S89.141G|ICD10CM|Sltr-haris Type IV physl fx low end r tibia, 7thG|Sltr-haris Type IV physl fx low end r tibia, 7thG +C2865819|T037|AB|S89.141K|ICD10CM|Sltr-haris Type IV physl fx low end r tibia, 7thK|Sltr-haris Type IV physl fx low end r tibia, 7thK +C2865820|T037|AB|S89.141P|ICD10CM|Sltr-haris Type IV physl fx low end r tibia, 7thP|Sltr-haris Type IV physl fx low end r tibia, 7thP +C2865821|T037|PT|S89.141S|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of right tibia, sequela|Salter-Harris Type IV physeal fracture of lower end of right tibia, sequela +C2865821|T037|AB|S89.141S|ICD10CM|Sltr-haris Type IV physeal fx lower end of r tibia, sequela|Sltr-haris Type IV physeal fx lower end of r tibia, sequela +C2865822|T037|HT|S89.142|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of left tibia|Salter-Harris Type IV physeal fracture of lower end of left tibia +C2865822|T037|AB|S89.142|ICD10CM|Sltr-haris Type IV physeal fx lower end of left tibia|Sltr-haris Type IV physeal fx lower end of left tibia +C2865823|T037|AB|S89.142A|ICD10CM|Sltr-haris Type IV physeal fx lower end of left tibia, init|Sltr-haris Type IV physeal fx lower end of left tibia, init +C2865824|T037|AB|S89.142D|ICD10CM|Sltr-haris Type IV physl fx low end l tibia, 7thD|Sltr-haris Type IV physl fx low end l tibia, 7thD +C2865825|T037|AB|S89.142G|ICD10CM|Sltr-haris Type IV physl fx low end l tibia, 7thG|Sltr-haris Type IV physl fx low end l tibia, 7thG +C2865826|T037|AB|S89.142K|ICD10CM|Sltr-haris Type IV physl fx low end l tibia, 7thK|Sltr-haris Type IV physl fx low end l tibia, 7thK +C2865827|T037|AB|S89.142P|ICD10CM|Sltr-haris Type IV physl fx low end l tibia, 7thP|Sltr-haris Type IV physl fx low end l tibia, 7thP +C2865828|T037|PT|S89.142S|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of left tibia, sequela|Salter-Harris Type IV physeal fracture of lower end of left tibia, sequela +C2865828|T037|AB|S89.142S|ICD10CM|Sltr-haris Type IV physeal fx lower end of l tibia, sequela|Sltr-haris Type IV physeal fx lower end of l tibia, sequela +C2865829|T037|HT|S89.149|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of unspecified tibia|Salter-Harris Type IV physeal fracture of lower end of unspecified tibia +C2865829|T037|AB|S89.149|ICD10CM|Sltr-haris Type IV physeal fx lower end of unsp tibia|Sltr-haris Type IV physeal fx lower end of unsp tibia +C2865830|T037|AB|S89.149A|ICD10CM|Sltr-haris Type IV physeal fx lower end of unsp tibia, init|Sltr-haris Type IV physeal fx lower end of unsp tibia, init +C2865831|T037|AB|S89.149D|ICD10CM|Sltr-haris Type IV physl fx low end unsp tibia, 7thD|Sltr-haris Type IV physl fx low end unsp tibia, 7thD +C2865832|T037|AB|S89.149G|ICD10CM|Sltr-haris Type IV physl fx low end unsp tibia, 7thG|Sltr-haris Type IV physl fx low end unsp tibia, 7thG +C2865833|T037|AB|S89.149K|ICD10CM|Sltr-haris Type IV physl fx low end unsp tibia, 7thK|Sltr-haris Type IV physl fx low end unsp tibia, 7thK +C2865834|T037|AB|S89.149P|ICD10CM|Sltr-haris Type IV physl fx low end unsp tibia, 7thP|Sltr-haris Type IV physl fx low end unsp tibia, 7thP +C2865835|T037|PT|S89.149S|ICD10CM|Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, sequela|Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, sequela +C2865835|T037|AB|S89.149S|ICD10CM|Sltr-haris Type IV physl fx lower end of unsp tibia, sequela|Sltr-haris Type IV physl fx lower end of unsp tibia, sequela +C2865836|T037|AB|S89.19|ICD10CM|Other physeal fracture of lower end of tibia|Other physeal fracture of lower end of tibia +C2865836|T037|HT|S89.19|ICD10CM|Other physeal fracture of lower end of tibia|Other physeal fracture of lower end of tibia +C2865837|T037|AB|S89.191|ICD10CM|Other physeal fracture of lower end of right tibia|Other physeal fracture of lower end of right tibia +C2865837|T037|HT|S89.191|ICD10CM|Other physeal fracture of lower end of right tibia|Other physeal fracture of lower end of right tibia +C2865838|T037|AB|S89.191A|ICD10CM|Oth physeal fracture of lower end of right tibia, init|Oth physeal fracture of lower end of right tibia, init +C2865838|T037|PT|S89.191A|ICD10CM|Other physeal fracture of lower end of right tibia, initial encounter for closed fracture|Other physeal fracture of lower end of right tibia, initial encounter for closed fracture +C2865839|T037|AB|S89.191D|ICD10CM|Oth physl fx lower end of r tibia, subs for fx w routn heal|Oth physl fx lower end of r tibia, subs for fx w routn heal +C2865840|T037|AB|S89.191G|ICD10CM|Oth physl fx lower end of r tibia, subs for fx w delay heal|Oth physl fx lower end of r tibia, subs for fx w delay heal +C2865841|T037|AB|S89.191K|ICD10CM|Oth physeal fx lower end of r tibia, subs for fx w nonunion|Oth physeal fx lower end of r tibia, subs for fx w nonunion +C2865841|T037|PT|S89.191K|ICD10CM|Other physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion|Other physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion +C2865842|T037|AB|S89.191P|ICD10CM|Oth physeal fx lower end of r tibia, subs for fx w malunion|Oth physeal fx lower end of r tibia, subs for fx w malunion +C2865842|T037|PT|S89.191P|ICD10CM|Other physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion|Other physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion +C2865843|T037|PT|S89.191S|ICD10CM|Other physeal fracture of lower end of right tibia, sequela|Other physeal fracture of lower end of right tibia, sequela +C2865843|T037|AB|S89.191S|ICD10CM|Other physeal fracture of lower end of right tibia, sequela|Other physeal fracture of lower end of right tibia, sequela +C2865844|T037|AB|S89.192|ICD10CM|Other physeal fracture of lower end of left tibia|Other physeal fracture of lower end of left tibia +C2865844|T037|HT|S89.192|ICD10CM|Other physeal fracture of lower end of left tibia|Other physeal fracture of lower end of left tibia +C2865845|T037|AB|S89.192A|ICD10CM|Oth physeal fracture of lower end of left tibia, init|Oth physeal fracture of lower end of left tibia, init +C2865845|T037|PT|S89.192A|ICD10CM|Other physeal fracture of lower end of left tibia, initial encounter for closed fracture|Other physeal fracture of lower end of left tibia, initial encounter for closed fracture +C2865846|T037|AB|S89.192D|ICD10CM|Oth physl fx lower end of l tibia, subs for fx w routn heal|Oth physl fx lower end of l tibia, subs for fx w routn heal +C2865847|T037|AB|S89.192G|ICD10CM|Oth physl fx lower end of l tibia, subs for fx w delay heal|Oth physl fx lower end of l tibia, subs for fx w delay heal +C2865848|T037|AB|S89.192K|ICD10CM|Oth physeal fx lower end of l tibia, subs for fx w nonunion|Oth physeal fx lower end of l tibia, subs for fx w nonunion +C2865848|T037|PT|S89.192K|ICD10CM|Other physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion|Other physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion +C2865849|T037|AB|S89.192P|ICD10CM|Oth physeal fx lower end of l tibia, subs for fx w malunion|Oth physeal fx lower end of l tibia, subs for fx w malunion +C2865849|T037|PT|S89.192P|ICD10CM|Other physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion|Other physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion +C2865850|T037|PT|S89.192S|ICD10CM|Other physeal fracture of lower end of left tibia, sequela|Other physeal fracture of lower end of left tibia, sequela +C2865850|T037|AB|S89.192S|ICD10CM|Other physeal fracture of lower end of left tibia, sequela|Other physeal fracture of lower end of left tibia, sequela +C2865851|T037|AB|S89.199|ICD10CM|Other physeal fracture of lower end of unspecified tibia|Other physeal fracture of lower end of unspecified tibia +C2865851|T037|HT|S89.199|ICD10CM|Other physeal fracture of lower end of unspecified tibia|Other physeal fracture of lower end of unspecified tibia +C2865852|T037|AB|S89.199A|ICD10CM|Oth physeal fracture of lower end of unsp tibia, init|Oth physeal fracture of lower end of unsp tibia, init +C2865852|T037|PT|S89.199A|ICD10CM|Other physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture|Other physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture +C2865853|T037|AB|S89.199D|ICD10CM|Oth physl fx lower end unsp tibia, subs for fx w routn heal|Oth physl fx lower end unsp tibia, subs for fx w routn heal +C2865854|T037|AB|S89.199G|ICD10CM|Oth physl fx lower end unsp tibia, subs for fx w delay heal|Oth physl fx lower end unsp tibia, subs for fx w delay heal +C2865855|T037|AB|S89.199K|ICD10CM|Oth physl fx lower end of unsp tibia, subs for fx w nonunion|Oth physl fx lower end of unsp tibia, subs for fx w nonunion +C2865856|T037|AB|S89.199P|ICD10CM|Oth physl fx lower end of unsp tibia, subs for fx w malunion|Oth physl fx lower end of unsp tibia, subs for fx w malunion +C2865857|T037|AB|S89.199S|ICD10CM|Other physeal fracture of lower end of unsp tibia, sequela|Other physeal fracture of lower end of unsp tibia, sequela +C2865857|T037|PT|S89.199S|ICD10CM|Other physeal fracture of lower end of unspecified tibia, sequela|Other physeal fracture of lower end of unspecified tibia, sequela +C2865858|T037|AB|S89.2|ICD10CM|Physeal fracture of upper end of fibula|Physeal fracture of upper end of fibula +C2865858|T037|HT|S89.2|ICD10CM|Physeal fracture of upper end of fibula|Physeal fracture of upper end of fibula +C2865859|T037|AB|S89.20|ICD10CM|Unspecified physeal fracture of upper end of fibula|Unspecified physeal fracture of upper end of fibula +C2865859|T037|HT|S89.20|ICD10CM|Unspecified physeal fracture of upper end of fibula|Unspecified physeal fracture of upper end of fibula +C2865860|T037|AB|S89.201|ICD10CM|Unspecified physeal fracture of upper end of right fibula|Unspecified physeal fracture of upper end of right fibula +C2865860|T037|HT|S89.201|ICD10CM|Unspecified physeal fracture of upper end of right fibula|Unspecified physeal fracture of upper end of right fibula +C2865861|T037|AB|S89.201A|ICD10CM|Unsp physeal fracture of upper end of right fibula, init|Unsp physeal fracture of upper end of right fibula, init +C2865861|T037|PT|S89.201A|ICD10CM|Unspecified physeal fracture of upper end of right fibula, initial encounter for closed fracture|Unspecified physeal fracture of upper end of right fibula, initial encounter for closed fracture +C2865862|T037|AB|S89.201D|ICD10CM|Unsp physl fx upper end r fibula, subs for fx w routn heal|Unsp physl fx upper end r fibula, subs for fx w routn heal +C2865863|T037|AB|S89.201G|ICD10CM|Unsp physl fx upper end r fibula, subs for fx w delay heal|Unsp physl fx upper end r fibula, subs for fx w delay heal +C2865864|T037|AB|S89.201K|ICD10CM|Unsp physl fx upper end of r fibula, subs for fx w nonunion|Unsp physl fx upper end of r fibula, subs for fx w nonunion +C2865865|T037|AB|S89.201P|ICD10CM|Unsp physl fx upper end of r fibula, subs for fx w malunion|Unsp physl fx upper end of r fibula, subs for fx w malunion +C2865866|T037|AB|S89.201S|ICD10CM|Unsp physeal fracture of upper end of right fibula, sequela|Unsp physeal fracture of upper end of right fibula, sequela +C2865866|T037|PT|S89.201S|ICD10CM|Unspecified physeal fracture of upper end of right fibula, sequela|Unspecified physeal fracture of upper end of right fibula, sequela +C2865867|T037|AB|S89.202|ICD10CM|Unspecified physeal fracture of upper end of left fibula|Unspecified physeal fracture of upper end of left fibula +C2865867|T037|HT|S89.202|ICD10CM|Unspecified physeal fracture of upper end of left fibula|Unspecified physeal fracture of upper end of left fibula +C2865868|T037|AB|S89.202A|ICD10CM|Unsp physeal fracture of upper end of left fibula, init|Unsp physeal fracture of upper end of left fibula, init +C2865868|T037|PT|S89.202A|ICD10CM|Unspecified physeal fracture of upper end of left fibula, initial encounter for closed fracture|Unspecified physeal fracture of upper end of left fibula, initial encounter for closed fracture +C2865869|T037|AB|S89.202D|ICD10CM|Unsp physl fx upper end l fibula, subs for fx w routn heal|Unsp physl fx upper end l fibula, subs for fx w routn heal +C2865870|T037|AB|S89.202G|ICD10CM|Unsp physl fx upper end l fibula, subs for fx w delay heal|Unsp physl fx upper end l fibula, subs for fx w delay heal +C2865871|T037|AB|S89.202K|ICD10CM|Unsp physl fx upper end of l fibula, subs for fx w nonunion|Unsp physl fx upper end of l fibula, subs for fx w nonunion +C2865872|T037|AB|S89.202P|ICD10CM|Unsp physl fx upper end of l fibula, subs for fx w malunion|Unsp physl fx upper end of l fibula, subs for fx w malunion +C2865873|T037|AB|S89.202S|ICD10CM|Unsp physeal fracture of upper end of left fibula, sequela|Unsp physeal fracture of upper end of left fibula, sequela +C2865873|T037|PT|S89.202S|ICD10CM|Unspecified physeal fracture of upper end of left fibula, sequela|Unspecified physeal fracture of upper end of left fibula, sequela +C2865874|T037|AB|S89.209|ICD10CM|Unsp physeal fracture of upper end of unspecified fibula|Unsp physeal fracture of upper end of unspecified fibula +C2865874|T037|HT|S89.209|ICD10CM|Unspecified physeal fracture of upper end of unspecified fibula|Unspecified physeal fracture of upper end of unspecified fibula +C2865875|T037|AB|S89.209A|ICD10CM|Unsp physeal fracture of upper end of unsp fibula, init|Unsp physeal fracture of upper end of unsp fibula, init +C2865876|T037|AB|S89.209D|ICD10CM|Unsp physl fx upr end unsp fibula, subs for fx w routn heal|Unsp physl fx upr end unsp fibula, subs for fx w routn heal +C2865877|T037|AB|S89.209G|ICD10CM|Unsp physl fx upr end unsp fibula, subs for fx w delay heal|Unsp physl fx upr end unsp fibula, subs for fx w delay heal +C2865878|T037|AB|S89.209K|ICD10CM|Unsp physl fx upper end unsp fibula, subs for fx w nonunion|Unsp physl fx upper end unsp fibula, subs for fx w nonunion +C2865879|T037|AB|S89.209P|ICD10CM|Unsp physl fx upper end unsp fibula, subs for fx w malunion|Unsp physl fx upper end unsp fibula, subs for fx w malunion +C2865880|T037|AB|S89.209S|ICD10CM|Unsp physeal fracture of upper end of unsp fibula, sequela|Unsp physeal fracture of upper end of unsp fibula, sequela +C2865880|T037|PT|S89.209S|ICD10CM|Unspecified physeal fracture of upper end of unspecified fibula, sequela|Unspecified physeal fracture of upper end of unspecified fibula, sequela +C2865881|T037|AB|S89.21|ICD10CM|Salter-Harris Type I physeal fracture of upper end of fibula|Salter-Harris Type I physeal fracture of upper end of fibula +C2865881|T037|HT|S89.21|ICD10CM|Salter-Harris Type I physeal fracture of upper end of fibula|Salter-Harris Type I physeal fracture of upper end of fibula +C2865882|T037|HT|S89.211|ICD10CM|Salter-Harris Type I physeal fracture of upper end of right fibula|Salter-Harris Type I physeal fracture of upper end of right fibula +C2865882|T037|AB|S89.211|ICD10CM|Sltr-haris Type I physeal fracture of upper end of r fibula|Sltr-haris Type I physeal fracture of upper end of r fibula +C2865883|T037|AB|S89.211A|ICD10CM|Sltr-haris Type I physeal fx upper end of r fibula, init|Sltr-haris Type I physeal fx upper end of r fibula, init +C2865884|T037|AB|S89.211D|ICD10CM|Sltr-haris Type I physl fx upr end r fibula, 7thD|Sltr-haris Type I physl fx upr end r fibula, 7thD +C2865885|T037|AB|S89.211G|ICD10CM|Sltr-haris Type I physl fx upr end r fibula, 7thG|Sltr-haris Type I physl fx upr end r fibula, 7thG +C2865886|T037|AB|S89.211K|ICD10CM|Sltr-haris Type I physl fx upr end r fibula, 7thK|Sltr-haris Type I physl fx upr end r fibula, 7thK +C2865887|T037|AB|S89.211P|ICD10CM|Sltr-haris Type I physl fx upr end r fibula, 7thP|Sltr-haris Type I physl fx upr end r fibula, 7thP +C2865888|T037|PT|S89.211S|ICD10CM|Salter-Harris Type I physeal fracture of upper end of right fibula, sequela|Salter-Harris Type I physeal fracture of upper end of right fibula, sequela +C2865888|T037|AB|S89.211S|ICD10CM|Sltr-haris Type I physeal fx upper end of r fibula, sequela|Sltr-haris Type I physeal fx upper end of r fibula, sequela +C2865889|T037|HT|S89.212|ICD10CM|Salter-Harris Type I physeal fracture of upper end of left fibula|Salter-Harris Type I physeal fracture of upper end of left fibula +C2865889|T037|AB|S89.212|ICD10CM|Sltr-haris Type I physeal fx upper end of left fibula|Sltr-haris Type I physeal fx upper end of left fibula +C2865890|T037|AB|S89.212A|ICD10CM|Sltr-haris Type I physeal fx upper end of left fibula, init|Sltr-haris Type I physeal fx upper end of left fibula, init +C2865891|T037|AB|S89.212D|ICD10CM|Sltr-haris Type I physl fx upr end l fibula, 7thD|Sltr-haris Type I physl fx upr end l fibula, 7thD +C2865892|T037|AB|S89.212G|ICD10CM|Sltr-haris Type I physl fx upr end l fibula, 7thG|Sltr-haris Type I physl fx upr end l fibula, 7thG +C2865893|T037|AB|S89.212K|ICD10CM|Sltr-haris Type I physl fx upr end l fibula, 7thK|Sltr-haris Type I physl fx upr end l fibula, 7thK +C2865894|T037|AB|S89.212P|ICD10CM|Sltr-haris Type I physl fx upr end l fibula, 7thP|Sltr-haris Type I physl fx upr end l fibula, 7thP +C2865895|T037|PT|S89.212S|ICD10CM|Salter-Harris Type I physeal fracture of upper end of left fibula, sequela|Salter-Harris Type I physeal fracture of upper end of left fibula, sequela +C2865895|T037|AB|S89.212S|ICD10CM|Sltr-haris Type I physeal fx upper end of l fibula, sequela|Sltr-haris Type I physeal fx upper end of l fibula, sequela +C2865896|T037|HT|S89.219|ICD10CM|Salter-Harris Type I physeal fracture of upper end of unspecified fibula|Salter-Harris Type I physeal fracture of upper end of unspecified fibula +C2865896|T037|AB|S89.219|ICD10CM|Sltr-haris Type I physeal fx upper end of unsp fibula|Sltr-haris Type I physeal fx upper end of unsp fibula +C2865897|T037|AB|S89.219A|ICD10CM|Sltr-haris Type I physeal fx upper end of unsp fibula, init|Sltr-haris Type I physeal fx upper end of unsp fibula, init +C2865898|T037|AB|S89.219D|ICD10CM|Sltr-haris Type I physl fx upr end unsp fibula, 7thD|Sltr-haris Type I physl fx upr end unsp fibula, 7thD +C2865899|T037|AB|S89.219G|ICD10CM|Sltr-haris Type I physl fx upr end unsp fibula, 7thG|Sltr-haris Type I physl fx upr end unsp fibula, 7thG +C2865900|T037|AB|S89.219K|ICD10CM|Sltr-haris Type I physl fx upr end unsp fibula, 7thK|Sltr-haris Type I physl fx upr end unsp fibula, 7thK +C2865901|T037|AB|S89.219P|ICD10CM|Sltr-haris Type I physl fx upr end unsp fibula, 7thP|Sltr-haris Type I physl fx upr end unsp fibula, 7thP +C2865902|T037|PT|S89.219S|ICD10CM|Salter-Harris Type I physeal fracture of upper end of unspecified fibula, sequela|Salter-Harris Type I physeal fracture of upper end of unspecified fibula, sequela +C2865902|T037|AB|S89.219S|ICD10CM|Sltr-haris Type I physl fx upper end of unsp fibula, sequela|Sltr-haris Type I physl fx upper end of unsp fibula, sequela +C2865903|T037|HT|S89.22|ICD10CM|Salter-Harris Type II physeal fracture of upper end of fibula|Salter-Harris Type II physeal fracture of upper end of fibula +C2865903|T037|AB|S89.22|ICD10CM|Sltr-haris Type II physeal fracture of upper end of fibula|Sltr-haris Type II physeal fracture of upper end of fibula +C2865904|T037|HT|S89.221|ICD10CM|Salter-Harris Type II physeal fracture of upper end of right fibula|Salter-Harris Type II physeal fracture of upper end of right fibula +C2865904|T037|AB|S89.221|ICD10CM|Sltr-haris Type II physeal fracture of upper end of r fibula|Sltr-haris Type II physeal fracture of upper end of r fibula +C2865905|T037|AB|S89.221A|ICD10CM|Sltr-haris Type II physeal fx upper end of r fibula, init|Sltr-haris Type II physeal fx upper end of r fibula, init +C2865906|T037|AB|S89.221D|ICD10CM|Sltr-haris Type II physl fx upr end r fibula, 7thD|Sltr-haris Type II physl fx upr end r fibula, 7thD +C2865907|T037|AB|S89.221G|ICD10CM|Sltr-haris Type II physl fx upr end r fibula, 7thG|Sltr-haris Type II physl fx upr end r fibula, 7thG +C2865908|T037|AB|S89.221K|ICD10CM|Sltr-haris Type II physl fx upr end r fibula, 7thK|Sltr-haris Type II physl fx upr end r fibula, 7thK +C2865909|T037|AB|S89.221P|ICD10CM|Sltr-haris Type II physl fx upr end r fibula, 7thP|Sltr-haris Type II physl fx upr end r fibula, 7thP +C2865910|T037|PT|S89.221S|ICD10CM|Salter-Harris Type II physeal fracture of upper end of right fibula, sequela|Salter-Harris Type II physeal fracture of upper end of right fibula, sequela +C2865910|T037|AB|S89.221S|ICD10CM|Sltr-haris Type II physeal fx upper end of r fibula, sequela|Sltr-haris Type II physeal fx upper end of r fibula, sequela +C2865911|T037|HT|S89.222|ICD10CM|Salter-Harris Type II physeal fracture of upper end of left fibula|Salter-Harris Type II physeal fracture of upper end of left fibula +C2865911|T037|AB|S89.222|ICD10CM|Sltr-haris Type II physeal fx upper end of left fibula|Sltr-haris Type II physeal fx upper end of left fibula +C2865912|T037|AB|S89.222A|ICD10CM|Sltr-haris Type II physeal fx upper end of left fibula, init|Sltr-haris Type II physeal fx upper end of left fibula, init +C2865913|T037|AB|S89.222D|ICD10CM|Sltr-haris Type II physl fx upr end l fibula, 7thD|Sltr-haris Type II physl fx upr end l fibula, 7thD +C2865914|T037|AB|S89.222G|ICD10CM|Sltr-haris Type II physl fx upr end l fibula, 7thG|Sltr-haris Type II physl fx upr end l fibula, 7thG +C2865915|T037|AB|S89.222K|ICD10CM|Sltr-haris Type II physl fx upr end l fibula, 7thK|Sltr-haris Type II physl fx upr end l fibula, 7thK +C2865916|T037|AB|S89.222P|ICD10CM|Sltr-haris Type II physl fx upr end l fibula, 7thP|Sltr-haris Type II physl fx upr end l fibula, 7thP +C2865917|T037|PT|S89.222S|ICD10CM|Salter-Harris Type II physeal fracture of upper end of left fibula, sequela|Salter-Harris Type II physeal fracture of upper end of left fibula, sequela +C2865917|T037|AB|S89.222S|ICD10CM|Sltr-haris Type II physeal fx upper end of l fibula, sequela|Sltr-haris Type II physeal fx upper end of l fibula, sequela +C2865918|T037|HT|S89.229|ICD10CM|Salter-Harris Type II physeal fracture of upper end of unspecified fibula|Salter-Harris Type II physeal fracture of upper end of unspecified fibula +C2865918|T037|AB|S89.229|ICD10CM|Sltr-haris Type II physeal fx upper end of unsp fibula|Sltr-haris Type II physeal fx upper end of unsp fibula +C2865919|T037|AB|S89.229A|ICD10CM|Sltr-haris Type II physeal fx upper end of unsp fibula, init|Sltr-haris Type II physeal fx upper end of unsp fibula, init +C2865920|T037|AB|S89.229D|ICD10CM|Sltr-haris Type II physl fx upr end unsp fibula, 7thD|Sltr-haris Type II physl fx upr end unsp fibula, 7thD +C2865921|T037|AB|S89.229G|ICD10CM|Sltr-haris Type II physl fx upr end unsp fibula, 7thG|Sltr-haris Type II physl fx upr end unsp fibula, 7thG +C2865922|T037|AB|S89.229K|ICD10CM|Sltr-haris Type II physl fx upr end unsp fibula, 7thK|Sltr-haris Type II physl fx upr end unsp fibula, 7thK +C2865923|T037|AB|S89.229P|ICD10CM|Sltr-haris Type II physl fx upr end unsp fibula, 7thP|Sltr-haris Type II physl fx upr end unsp fibula, 7thP +C2865924|T037|PT|S89.229S|ICD10CM|Salter-Harris Type II physeal fracture of upper end of unspecified fibula, sequela|Salter-Harris Type II physeal fracture of upper end of unspecified fibula, sequela +C2865924|T037|AB|S89.229S|ICD10CM|Sltr-haris Type II physl fx upper end of unsp fibula, sqla|Sltr-haris Type II physl fx upper end of unsp fibula, sqla +C2865925|T037|AB|S89.29|ICD10CM|Other physeal fracture of upper end of fibula|Other physeal fracture of upper end of fibula +C2865925|T037|HT|S89.29|ICD10CM|Other physeal fracture of upper end of fibula|Other physeal fracture of upper end of fibula +C2865926|T037|AB|S89.291|ICD10CM|Other physeal fracture of upper end of right fibula|Other physeal fracture of upper end of right fibula +C2865926|T037|HT|S89.291|ICD10CM|Other physeal fracture of upper end of right fibula|Other physeal fracture of upper end of right fibula +C2865927|T037|AB|S89.291A|ICD10CM|Oth physeal fracture of upper end of right fibula, init|Oth physeal fracture of upper end of right fibula, init +C2865927|T037|PT|S89.291A|ICD10CM|Other physeal fracture of upper end of right fibula, initial encounter for closed fracture|Other physeal fracture of upper end of right fibula, initial encounter for closed fracture +C2865928|T037|AB|S89.291D|ICD10CM|Oth physl fx upper end of r fibula, subs for fx w routn heal|Oth physl fx upper end of r fibula, subs for fx w routn heal +C2865929|T037|AB|S89.291G|ICD10CM|Oth physl fx upper end of r fibula, subs for fx w delay heal|Oth physl fx upper end of r fibula, subs for fx w delay heal +C2865930|T037|AB|S89.291K|ICD10CM|Oth physeal fx upper end of r fibula, subs for fx w nonunion|Oth physeal fx upper end of r fibula, subs for fx w nonunion +C2865930|T037|PT|S89.291K|ICD10CM|Other physeal fracture of upper end of right fibula, subsequent encounter for fracture with nonunion|Other physeal fracture of upper end of right fibula, subsequent encounter for fracture with nonunion +C2865931|T037|AB|S89.291P|ICD10CM|Oth physeal fx upper end of r fibula, subs for fx w malunion|Oth physeal fx upper end of r fibula, subs for fx w malunion +C2865931|T037|PT|S89.291P|ICD10CM|Other physeal fracture of upper end of right fibula, subsequent encounter for fracture with malunion|Other physeal fracture of upper end of right fibula, subsequent encounter for fracture with malunion +C2865932|T037|AB|S89.291S|ICD10CM|Other physeal fracture of upper end of right fibula, sequela|Other physeal fracture of upper end of right fibula, sequela +C2865932|T037|PT|S89.291S|ICD10CM|Other physeal fracture of upper end of right fibula, sequela|Other physeal fracture of upper end of right fibula, sequela +C2865933|T037|AB|S89.292|ICD10CM|Other physeal fracture of upper end of left fibula|Other physeal fracture of upper end of left fibula +C2865933|T037|HT|S89.292|ICD10CM|Other physeal fracture of upper end of left fibula|Other physeal fracture of upper end of left fibula +C2865934|T037|AB|S89.292A|ICD10CM|Oth physeal fracture of upper end of left fibula, init|Oth physeal fracture of upper end of left fibula, init +C2865934|T037|PT|S89.292A|ICD10CM|Other physeal fracture of upper end of left fibula, initial encounter for closed fracture|Other physeal fracture of upper end of left fibula, initial encounter for closed fracture +C2865935|T037|AB|S89.292D|ICD10CM|Oth physl fx upper end of l fibula, subs for fx w routn heal|Oth physl fx upper end of l fibula, subs for fx w routn heal +C2865936|T037|AB|S89.292G|ICD10CM|Oth physl fx upper end of l fibula, subs for fx w delay heal|Oth physl fx upper end of l fibula, subs for fx w delay heal +C2865937|T037|AB|S89.292K|ICD10CM|Oth physeal fx upper end of l fibula, subs for fx w nonunion|Oth physeal fx upper end of l fibula, subs for fx w nonunion +C2865937|T037|PT|S89.292K|ICD10CM|Other physeal fracture of upper end of left fibula, subsequent encounter for fracture with nonunion|Other physeal fracture of upper end of left fibula, subsequent encounter for fracture with nonunion +C2865938|T037|AB|S89.292P|ICD10CM|Oth physeal fx upper end of l fibula, subs for fx w malunion|Oth physeal fx upper end of l fibula, subs for fx w malunion +C2865938|T037|PT|S89.292P|ICD10CM|Other physeal fracture of upper end of left fibula, subsequent encounter for fracture with malunion|Other physeal fracture of upper end of left fibula, subsequent encounter for fracture with malunion +C2865939|T037|PT|S89.292S|ICD10CM|Other physeal fracture of upper end of left fibula, sequela|Other physeal fracture of upper end of left fibula, sequela +C2865939|T037|AB|S89.292S|ICD10CM|Other physeal fracture of upper end of left fibula, sequela|Other physeal fracture of upper end of left fibula, sequela +C2865940|T037|AB|S89.299|ICD10CM|Other physeal fracture of upper end of unspecified fibula|Other physeal fracture of upper end of unspecified fibula +C2865940|T037|HT|S89.299|ICD10CM|Other physeal fracture of upper end of unspecified fibula|Other physeal fracture of upper end of unspecified fibula +C2865941|T037|AB|S89.299A|ICD10CM|Oth physeal fracture of upper end of unsp fibula, init|Oth physeal fracture of upper end of unsp fibula, init +C2865941|T037|PT|S89.299A|ICD10CM|Other physeal fracture of upper end of unspecified fibula, initial encounter for closed fracture|Other physeal fracture of upper end of unspecified fibula, initial encounter for closed fracture +C2865942|T037|AB|S89.299D|ICD10CM|Oth physl fx upper end unsp fibula, subs for fx w routn heal|Oth physl fx upper end unsp fibula, subs for fx w routn heal +C2865943|T037|AB|S89.299G|ICD10CM|Oth physl fx upper end unsp fibula, subs for fx w delay heal|Oth physl fx upper end unsp fibula, subs for fx w delay heal +C2865944|T037|AB|S89.299K|ICD10CM|Oth physl fx upper end unsp fibula, subs for fx w nonunion|Oth physl fx upper end unsp fibula, subs for fx w nonunion +C2865945|T037|AB|S89.299P|ICD10CM|Oth physl fx upper end unsp fibula, subs for fx w malunion|Oth physl fx upper end unsp fibula, subs for fx w malunion +C2865946|T037|AB|S89.299S|ICD10CM|Other physeal fracture of upper end of unsp fibula, sequela|Other physeal fracture of upper end of unsp fibula, sequela +C2865946|T037|PT|S89.299S|ICD10CM|Other physeal fracture of upper end of unspecified fibula, sequela|Other physeal fracture of upper end of unspecified fibula, sequela +C2865947|T037|AB|S89.3|ICD10CM|Physeal fracture of lower end of fibula|Physeal fracture of lower end of fibula +C2865947|T037|HT|S89.3|ICD10CM|Physeal fracture of lower end of fibula|Physeal fracture of lower end of fibula +C2865948|T037|AB|S89.30|ICD10CM|Unspecified physeal fracture of lower end of fibula|Unspecified physeal fracture of lower end of fibula +C2865948|T037|HT|S89.30|ICD10CM|Unspecified physeal fracture of lower end of fibula|Unspecified physeal fracture of lower end of fibula +C2865949|T037|AB|S89.301|ICD10CM|Unspecified physeal fracture of lower end of right fibula|Unspecified physeal fracture of lower end of right fibula +C2865949|T037|HT|S89.301|ICD10CM|Unspecified physeal fracture of lower end of right fibula|Unspecified physeal fracture of lower end of right fibula +C2865950|T037|AB|S89.301A|ICD10CM|Unsp physeal fracture of lower end of right fibula, init|Unsp physeal fracture of lower end of right fibula, init +C2865950|T037|PT|S89.301A|ICD10CM|Unspecified physeal fracture of lower end of right fibula, initial encounter for closed fracture|Unspecified physeal fracture of lower end of right fibula, initial encounter for closed fracture +C2865951|T037|AB|S89.301D|ICD10CM|Unsp physl fx lower end r fibula, subs for fx w routn heal|Unsp physl fx lower end r fibula, subs for fx w routn heal +C2865952|T037|AB|S89.301G|ICD10CM|Unsp physl fx lower end r fibula, subs for fx w delay heal|Unsp physl fx lower end r fibula, subs for fx w delay heal +C2865953|T037|AB|S89.301K|ICD10CM|Unsp physl fx lower end of r fibula, subs for fx w nonunion|Unsp physl fx lower end of r fibula, subs for fx w nonunion +C2865954|T037|AB|S89.301P|ICD10CM|Unsp physl fx lower end of r fibula, subs for fx w malunion|Unsp physl fx lower end of r fibula, subs for fx w malunion +C2865955|T037|AB|S89.301S|ICD10CM|Unsp physeal fracture of lower end of right fibula, sequela|Unsp physeal fracture of lower end of right fibula, sequela +C2865955|T037|PT|S89.301S|ICD10CM|Unspecified physeal fracture of lower end of right fibula, sequela|Unspecified physeal fracture of lower end of right fibula, sequela +C2865956|T037|AB|S89.302|ICD10CM|Unspecified physeal fracture of lower end of left fibula|Unspecified physeal fracture of lower end of left fibula +C2865956|T037|HT|S89.302|ICD10CM|Unspecified physeal fracture of lower end of left fibula|Unspecified physeal fracture of lower end of left fibula +C2865957|T037|AB|S89.302A|ICD10CM|Unsp physeal fracture of lower end of left fibula, init|Unsp physeal fracture of lower end of left fibula, init +C2865957|T037|PT|S89.302A|ICD10CM|Unspecified physeal fracture of lower end of left fibula, initial encounter for closed fracture|Unspecified physeal fracture of lower end of left fibula, initial encounter for closed fracture +C2865958|T037|AB|S89.302D|ICD10CM|Unsp physl fx lower end l fibula, subs for fx w routn heal|Unsp physl fx lower end l fibula, subs for fx w routn heal +C2865959|T037|AB|S89.302G|ICD10CM|Unsp physl fx lower end l fibula, subs for fx w delay heal|Unsp physl fx lower end l fibula, subs for fx w delay heal +C2865960|T037|AB|S89.302K|ICD10CM|Unsp physl fx lower end of l fibula, subs for fx w nonunion|Unsp physl fx lower end of l fibula, subs for fx w nonunion +C2865961|T037|AB|S89.302P|ICD10CM|Unsp physl fx lower end of l fibula, subs for fx w malunion|Unsp physl fx lower end of l fibula, subs for fx w malunion +C2865962|T037|AB|S89.302S|ICD10CM|Unsp physeal fracture of lower end of left fibula, sequela|Unsp physeal fracture of lower end of left fibula, sequela +C2865962|T037|PT|S89.302S|ICD10CM|Unspecified physeal fracture of lower end of left fibula, sequela|Unspecified physeal fracture of lower end of left fibula, sequela +C2865963|T037|AB|S89.309|ICD10CM|Unsp physeal fracture of lower end of unspecified fibula|Unsp physeal fracture of lower end of unspecified fibula +C2865963|T037|HT|S89.309|ICD10CM|Unspecified physeal fracture of lower end of unspecified fibula|Unspecified physeal fracture of lower end of unspecified fibula +C2865964|T037|AB|S89.309A|ICD10CM|Unsp physeal fracture of lower end of unsp fibula, init|Unsp physeal fracture of lower end of unsp fibula, init +C2865965|T037|AB|S89.309D|ICD10CM|Unsp physl fx low end unsp fibula, subs for fx w routn heal|Unsp physl fx low end unsp fibula, subs for fx w routn heal +C2865966|T037|AB|S89.309G|ICD10CM|Unsp physl fx low end unsp fibula, subs for fx w delay heal|Unsp physl fx low end unsp fibula, subs for fx w delay heal +C2865967|T037|AB|S89.309K|ICD10CM|Unsp physl fx lower end unsp fibula, subs for fx w nonunion|Unsp physl fx lower end unsp fibula, subs for fx w nonunion +C2865968|T037|AB|S89.309P|ICD10CM|Unsp physl fx lower end unsp fibula, subs for fx w malunion|Unsp physl fx lower end unsp fibula, subs for fx w malunion +C2865969|T037|AB|S89.309S|ICD10CM|Unsp physeal fracture of lower end of unsp fibula, sequela|Unsp physeal fracture of lower end of unsp fibula, sequela +C2865969|T037|PT|S89.309S|ICD10CM|Unspecified physeal fracture of lower end of unspecified fibula, sequela|Unspecified physeal fracture of lower end of unspecified fibula, sequela +C2865970|T037|AB|S89.31|ICD10CM|Salter-Harris Type I physeal fracture of lower end of fibula|Salter-Harris Type I physeal fracture of lower end of fibula +C2865970|T037|HT|S89.31|ICD10CM|Salter-Harris Type I physeal fracture of lower end of fibula|Salter-Harris Type I physeal fracture of lower end of fibula +C2865971|T037|HT|S89.311|ICD10CM|Salter-Harris Type I physeal fracture of lower end of right fibula|Salter-Harris Type I physeal fracture of lower end of right fibula +C2865971|T037|AB|S89.311|ICD10CM|Sltr-haris Type I physeal fracture of lower end of r fibula|Sltr-haris Type I physeal fracture of lower end of r fibula +C2865972|T037|AB|S89.311A|ICD10CM|Sltr-haris Type I physeal fx lower end of r fibula, init|Sltr-haris Type I physeal fx lower end of r fibula, init +C2865973|T037|AB|S89.311D|ICD10CM|Sltr-haris Type I physl fx low end r fibula, 7thD|Sltr-haris Type I physl fx low end r fibula, 7thD +C2865974|T037|AB|S89.311G|ICD10CM|Sltr-haris Type I physl fx low end r fibula, 7thG|Sltr-haris Type I physl fx low end r fibula, 7thG +C2865975|T037|AB|S89.311K|ICD10CM|Sltr-haris Type I physl fx low end r fibula, 7thK|Sltr-haris Type I physl fx low end r fibula, 7thK +C2865976|T037|AB|S89.311P|ICD10CM|Sltr-haris Type I physl fx low end r fibula, 7thP|Sltr-haris Type I physl fx low end r fibula, 7thP +C2865977|T037|PT|S89.311S|ICD10CM|Salter-Harris Type I physeal fracture of lower end of right fibula, sequela|Salter-Harris Type I physeal fracture of lower end of right fibula, sequela +C2865977|T037|AB|S89.311S|ICD10CM|Sltr-haris Type I physeal fx lower end of r fibula, sequela|Sltr-haris Type I physeal fx lower end of r fibula, sequela +C2865978|T037|HT|S89.312|ICD10CM|Salter-Harris Type I physeal fracture of lower end of left fibula|Salter-Harris Type I physeal fracture of lower end of left fibula +C2865978|T037|AB|S89.312|ICD10CM|Sltr-haris Type I physeal fx lower end of left fibula|Sltr-haris Type I physeal fx lower end of left fibula +C2865979|T037|AB|S89.312A|ICD10CM|Sltr-haris Type I physeal fx lower end of left fibula, init|Sltr-haris Type I physeal fx lower end of left fibula, init +C2865980|T037|AB|S89.312D|ICD10CM|Sltr-haris Type I physl fx low end l fibula, 7thD|Sltr-haris Type I physl fx low end l fibula, 7thD +C2865981|T037|AB|S89.312G|ICD10CM|Sltr-haris Type I physl fx low end l fibula, 7thG|Sltr-haris Type I physl fx low end l fibula, 7thG +C2865982|T037|AB|S89.312K|ICD10CM|Sltr-haris Type I physl fx low end l fibula, 7thK|Sltr-haris Type I physl fx low end l fibula, 7thK +C2865983|T037|AB|S89.312P|ICD10CM|Sltr-haris Type I physl fx low end l fibula, 7thP|Sltr-haris Type I physl fx low end l fibula, 7thP +C2865984|T037|PT|S89.312S|ICD10CM|Salter-Harris Type I physeal fracture of lower end of left fibula, sequela|Salter-Harris Type I physeal fracture of lower end of left fibula, sequela +C2865984|T037|AB|S89.312S|ICD10CM|Sltr-haris Type I physeal fx lower end of l fibula, sequela|Sltr-haris Type I physeal fx lower end of l fibula, sequela +C2865985|T037|HT|S89.319|ICD10CM|Salter-Harris Type I physeal fracture of lower end of unspecified fibula|Salter-Harris Type I physeal fracture of lower end of unspecified fibula +C2865985|T037|AB|S89.319|ICD10CM|Sltr-haris Type I physeal fx lower end of unsp fibula|Sltr-haris Type I physeal fx lower end of unsp fibula +C2865986|T037|AB|S89.319A|ICD10CM|Sltr-haris Type I physeal fx lower end of unsp fibula, init|Sltr-haris Type I physeal fx lower end of unsp fibula, init +C2865987|T037|AB|S89.319D|ICD10CM|Sltr-haris Type I physl fx low end unsp fibula, 7thD|Sltr-haris Type I physl fx low end unsp fibula, 7thD +C2865988|T037|AB|S89.319G|ICD10CM|Sltr-haris Type I physl fx low end unsp fibula, 7thG|Sltr-haris Type I physl fx low end unsp fibula, 7thG +C2865989|T037|AB|S89.319K|ICD10CM|Sltr-haris Type I physl fx low end unsp fibula, 7thK|Sltr-haris Type I physl fx low end unsp fibula, 7thK +C2865990|T037|AB|S89.319P|ICD10CM|Sltr-haris Type I physl fx low end unsp fibula, 7thP|Sltr-haris Type I physl fx low end unsp fibula, 7thP +C2865991|T037|PT|S89.319S|ICD10CM|Salter-Harris Type I physeal fracture of lower end of unspecified fibula, sequela|Salter-Harris Type I physeal fracture of lower end of unspecified fibula, sequela +C2865991|T037|AB|S89.319S|ICD10CM|Sltr-haris Type I physl fx lower end of unsp fibula, sequela|Sltr-haris Type I physl fx lower end of unsp fibula, sequela +C2865992|T037|HT|S89.32|ICD10CM|Salter-Harris Type II physeal fracture of lower end of fibula|Salter-Harris Type II physeal fracture of lower end of fibula +C2865992|T037|AB|S89.32|ICD10CM|Sltr-haris Type II physeal fracture of lower end of fibula|Sltr-haris Type II physeal fracture of lower end of fibula +C2865993|T037|HT|S89.321|ICD10CM|Salter-Harris Type II physeal fracture of lower end of right fibula|Salter-Harris Type II physeal fracture of lower end of right fibula +C2865993|T037|AB|S89.321|ICD10CM|Sltr-haris Type II physeal fracture of lower end of r fibula|Sltr-haris Type II physeal fracture of lower end of r fibula +C2865994|T037|AB|S89.321A|ICD10CM|Sltr-haris Type II physeal fx lower end of r fibula, init|Sltr-haris Type II physeal fx lower end of r fibula, init +C2865995|T037|AB|S89.321D|ICD10CM|Sltr-haris Type II physl fx low end r fibula, 7thD|Sltr-haris Type II physl fx low end r fibula, 7thD +C2865996|T037|AB|S89.321G|ICD10CM|Sltr-haris Type II physl fx low end r fibula, 7thG|Sltr-haris Type II physl fx low end r fibula, 7thG +C2865997|T037|AB|S89.321K|ICD10CM|Sltr-haris Type II physl fx low end r fibula, 7thK|Sltr-haris Type II physl fx low end r fibula, 7thK +C2865998|T037|AB|S89.321P|ICD10CM|Sltr-haris Type II physl fx low end r fibula, 7thP|Sltr-haris Type II physl fx low end r fibula, 7thP +C2865999|T037|PT|S89.321S|ICD10CM|Salter-Harris Type II physeal fracture of lower end of right fibula, sequela|Salter-Harris Type II physeal fracture of lower end of right fibula, sequela +C2865999|T037|AB|S89.321S|ICD10CM|Sltr-haris Type II physeal fx lower end of r fibula, sequela|Sltr-haris Type II physeal fx lower end of r fibula, sequela +C2866000|T037|HT|S89.322|ICD10CM|Salter-Harris Type II physeal fracture of lower end of left fibula|Salter-Harris Type II physeal fracture of lower end of left fibula +C2866000|T037|AB|S89.322|ICD10CM|Sltr-haris Type II physeal fx lower end of left fibula|Sltr-haris Type II physeal fx lower end of left fibula +C2866001|T037|AB|S89.322A|ICD10CM|Sltr-haris Type II physeal fx lower end of left fibula, init|Sltr-haris Type II physeal fx lower end of left fibula, init +C2866002|T037|AB|S89.322D|ICD10CM|Sltr-haris Type II physl fx low end l fibula, 7thD|Sltr-haris Type II physl fx low end l fibula, 7thD +C2866003|T037|AB|S89.322G|ICD10CM|Sltr-haris Type II physl fx low end l fibula, 7thG|Sltr-haris Type II physl fx low end l fibula, 7thG +C2866004|T037|AB|S89.322K|ICD10CM|Sltr-haris Type II physl fx low end l fibula, 7thK|Sltr-haris Type II physl fx low end l fibula, 7thK +C2866005|T037|AB|S89.322P|ICD10CM|Sltr-haris Type II physl fx low end l fibula, 7thP|Sltr-haris Type II physl fx low end l fibula, 7thP +C2866006|T037|PT|S89.322S|ICD10CM|Salter-Harris Type II physeal fracture of lower end of left fibula, sequela|Salter-Harris Type II physeal fracture of lower end of left fibula, sequela +C2866006|T037|AB|S89.322S|ICD10CM|Sltr-haris Type II physeal fx lower end of l fibula, sequela|Sltr-haris Type II physeal fx lower end of l fibula, sequela +C2866007|T037|HT|S89.329|ICD10CM|Salter-Harris Type II physeal fracture of lower end of unspecified fibula|Salter-Harris Type II physeal fracture of lower end of unspecified fibula +C2866007|T037|AB|S89.329|ICD10CM|Sltr-haris Type II physeal fx lower end of unsp fibula|Sltr-haris Type II physeal fx lower end of unsp fibula +C2866008|T037|AB|S89.329A|ICD10CM|Sltr-haris Type II physeal fx lower end of unsp fibula, init|Sltr-haris Type II physeal fx lower end of unsp fibula, init +C2866009|T037|AB|S89.329D|ICD10CM|Sltr-haris Type II physl fx low end unsp fibula, 7thD|Sltr-haris Type II physl fx low end unsp fibula, 7thD +C2866010|T037|AB|S89.329G|ICD10CM|Sltr-haris Type II physl fx low end unsp fibula, 7thG|Sltr-haris Type II physl fx low end unsp fibula, 7thG +C2866011|T037|AB|S89.329K|ICD10CM|Sltr-haris Type II physl fx low end unsp fibula, 7thK|Sltr-haris Type II physl fx low end unsp fibula, 7thK +C2866012|T037|AB|S89.329P|ICD10CM|Sltr-haris Type II physl fx low end unsp fibula, 7thP|Sltr-haris Type II physl fx low end unsp fibula, 7thP +C2866013|T037|PT|S89.329S|ICD10CM|Salter-Harris Type II physeal fracture of lower end of unspecified fibula, sequela|Salter-Harris Type II physeal fracture of lower end of unspecified fibula, sequela +C2866013|T037|AB|S89.329S|ICD10CM|Sltr-haris Type II physl fx lower end of unsp fibula, sqla|Sltr-haris Type II physl fx lower end of unsp fibula, sqla +C2866014|T037|AB|S89.39|ICD10CM|Other physeal fracture of lower end of fibula|Other physeal fracture of lower end of fibula +C2866014|T037|HT|S89.39|ICD10CM|Other physeal fracture of lower end of fibula|Other physeal fracture of lower end of fibula +C2866015|T037|AB|S89.391|ICD10CM|Other physeal fracture of lower end of right fibula|Other physeal fracture of lower end of right fibula +C2866015|T037|HT|S89.391|ICD10CM|Other physeal fracture of lower end of right fibula|Other physeal fracture of lower end of right fibula +C2866016|T037|AB|S89.391A|ICD10CM|Oth physeal fracture of lower end of right fibula, init|Oth physeal fracture of lower end of right fibula, init +C2866016|T037|PT|S89.391A|ICD10CM|Other physeal fracture of lower end of right fibula, initial encounter for closed fracture|Other physeal fracture of lower end of right fibula, initial encounter for closed fracture +C2866017|T037|AB|S89.391D|ICD10CM|Oth physl fx lower end of r fibula, subs for fx w routn heal|Oth physl fx lower end of r fibula, subs for fx w routn heal +C2866018|T037|AB|S89.391G|ICD10CM|Oth physl fx lower end of r fibula, subs for fx w delay heal|Oth physl fx lower end of r fibula, subs for fx w delay heal +C2866019|T037|AB|S89.391K|ICD10CM|Oth physeal fx lower end of r fibula, subs for fx w nonunion|Oth physeal fx lower end of r fibula, subs for fx w nonunion +C2866019|T037|PT|S89.391K|ICD10CM|Other physeal fracture of lower end of right fibula, subsequent encounter for fracture with nonunion|Other physeal fracture of lower end of right fibula, subsequent encounter for fracture with nonunion +C2866020|T037|AB|S89.391P|ICD10CM|Oth physeal fx lower end of r fibula, subs for fx w malunion|Oth physeal fx lower end of r fibula, subs for fx w malunion +C2866020|T037|PT|S89.391P|ICD10CM|Other physeal fracture of lower end of right fibula, subsequent encounter for fracture with malunion|Other physeal fracture of lower end of right fibula, subsequent encounter for fracture with malunion +C2866021|T037|AB|S89.391S|ICD10CM|Other physeal fracture of lower end of right fibula, sequela|Other physeal fracture of lower end of right fibula, sequela +C2866021|T037|PT|S89.391S|ICD10CM|Other physeal fracture of lower end of right fibula, sequela|Other physeal fracture of lower end of right fibula, sequela +C2866022|T037|AB|S89.392|ICD10CM|Other physeal fracture of lower end of left fibula|Other physeal fracture of lower end of left fibula +C2866022|T037|HT|S89.392|ICD10CM|Other physeal fracture of lower end of left fibula|Other physeal fracture of lower end of left fibula +C2866023|T037|AB|S89.392A|ICD10CM|Oth physeal fracture of lower end of left fibula, init|Oth physeal fracture of lower end of left fibula, init +C2866023|T037|PT|S89.392A|ICD10CM|Other physeal fracture of lower end of left fibula, initial encounter for closed fracture|Other physeal fracture of lower end of left fibula, initial encounter for closed fracture +C2866024|T037|AB|S89.392D|ICD10CM|Oth physl fx lower end of l fibula, subs for fx w routn heal|Oth physl fx lower end of l fibula, subs for fx w routn heal +C2866025|T037|AB|S89.392G|ICD10CM|Oth physl fx lower end of l fibula, subs for fx w delay heal|Oth physl fx lower end of l fibula, subs for fx w delay heal +C2866026|T037|AB|S89.392K|ICD10CM|Oth physeal fx lower end of l fibula, subs for fx w nonunion|Oth physeal fx lower end of l fibula, subs for fx w nonunion +C2866026|T037|PT|S89.392K|ICD10CM|Other physeal fracture of lower end of left fibula, subsequent encounter for fracture with nonunion|Other physeal fracture of lower end of left fibula, subsequent encounter for fracture with nonunion +C2866027|T037|AB|S89.392P|ICD10CM|Oth physeal fx lower end of l fibula, subs for fx w malunion|Oth physeal fx lower end of l fibula, subs for fx w malunion +C2866027|T037|PT|S89.392P|ICD10CM|Other physeal fracture of lower end of left fibula, subsequent encounter for fracture with malunion|Other physeal fracture of lower end of left fibula, subsequent encounter for fracture with malunion +C2866028|T037|PT|S89.392S|ICD10CM|Other physeal fracture of lower end of left fibula, sequela|Other physeal fracture of lower end of left fibula, sequela +C2866028|T037|AB|S89.392S|ICD10CM|Other physeal fracture of lower end of left fibula, sequela|Other physeal fracture of lower end of left fibula, sequela +C2866029|T037|AB|S89.399|ICD10CM|Other physeal fracture of lower end of unspecified fibula|Other physeal fracture of lower end of unspecified fibula +C2866029|T037|HT|S89.399|ICD10CM|Other physeal fracture of lower end of unspecified fibula|Other physeal fracture of lower end of unspecified fibula +C2866030|T037|AB|S89.399A|ICD10CM|Oth physeal fracture of lower end of unsp fibula, init|Oth physeal fracture of lower end of unsp fibula, init +C2866030|T037|PT|S89.399A|ICD10CM|Other physeal fracture of lower end of unspecified fibula, initial encounter for closed fracture|Other physeal fracture of lower end of unspecified fibula, initial encounter for closed fracture +C2866031|T037|AB|S89.399D|ICD10CM|Oth physl fx lower end unsp fibula, subs for fx w routn heal|Oth physl fx lower end unsp fibula, subs for fx w routn heal +C2866032|T037|AB|S89.399G|ICD10CM|Oth physl fx lower end unsp fibula, subs for fx w delay heal|Oth physl fx lower end unsp fibula, subs for fx w delay heal +C2866033|T037|AB|S89.399K|ICD10CM|Oth physl fx lower end unsp fibula, subs for fx w nonunion|Oth physl fx lower end unsp fibula, subs for fx w nonunion +C2866034|T037|AB|S89.399P|ICD10CM|Oth physl fx lower end unsp fibula, subs for fx w malunion|Oth physl fx lower end unsp fibula, subs for fx w malunion +C2866035|T037|AB|S89.399S|ICD10CM|Other physeal fracture of lower end of unsp fibula, sequela|Other physeal fracture of lower end of unsp fibula, sequela +C2866035|T037|PT|S89.399S|ICD10CM|Other physeal fracture of lower end of unspecified fibula, sequela|Other physeal fracture of lower end of unspecified fibula, sequela +C0495957|T037|PT|S89.7|ICD10|Multiple injuries of lower leg|Multiple injuries of lower leg +C0478345|T037|PT|S89.8|ICD10|Other specified injuries of lower leg|Other specified injuries of lower leg +C0478345|T037|HT|S89.8|ICD10CM|Other specified injuries of lower leg|Other specified injuries of lower leg +C0478345|T037|AB|S89.8|ICD10CM|Other specified injuries of lower leg|Other specified injuries of lower leg +C2866036|T037|AB|S89.80|ICD10CM|Other specified injuries of unspecified lower leg|Other specified injuries of unspecified lower leg +C2866036|T037|HT|S89.80|ICD10CM|Other specified injuries of unspecified lower leg|Other specified injuries of unspecified lower leg +C2976813|T037|AB|S89.80XA|ICD10CM|Oth injuries of unspecified lower leg, init encntr|Oth injuries of unspecified lower leg, init encntr +C2976813|T037|PT|S89.80XA|ICD10CM|Other specified injuries of unspecified lower leg, initial encounter|Other specified injuries of unspecified lower leg, initial encounter +C2976814|T037|AB|S89.80XD|ICD10CM|Oth injuries of unspecified lower leg, subs encntr|Oth injuries of unspecified lower leg, subs encntr +C2976814|T037|PT|S89.80XD|ICD10CM|Other specified injuries of unspecified lower leg, subsequent encounter|Other specified injuries of unspecified lower leg, subsequent encounter +C2976815|T037|AB|S89.80XS|ICD10CM|Other specified injuries of unspecified lower leg, sequela|Other specified injuries of unspecified lower leg, sequela +C2976815|T037|PT|S89.80XS|ICD10CM|Other specified injuries of unspecified lower leg, sequela|Other specified injuries of unspecified lower leg, sequela +C2866040|T037|AB|S89.81|ICD10CM|Other specified injuries of right lower leg|Other specified injuries of right lower leg +C2866040|T037|HT|S89.81|ICD10CM|Other specified injuries of right lower leg|Other specified injuries of right lower leg +C2866041|T037|AB|S89.81XA|ICD10CM|Other specified injuries of right lower leg, init encntr|Other specified injuries of right lower leg, init encntr +C2866041|T037|PT|S89.81XA|ICD10CM|Other specified injuries of right lower leg, initial encounter|Other specified injuries of right lower leg, initial encounter +C2866042|T037|AB|S89.81XD|ICD10CM|Other specified injuries of right lower leg, subs encntr|Other specified injuries of right lower leg, subs encntr +C2866042|T037|PT|S89.81XD|ICD10CM|Other specified injuries of right lower leg, subsequent encounter|Other specified injuries of right lower leg, subsequent encounter +C2866043|T037|AB|S89.81XS|ICD10CM|Other specified injuries of right lower leg, sequela|Other specified injuries of right lower leg, sequela +C2866043|T037|PT|S89.81XS|ICD10CM|Other specified injuries of right lower leg, sequela|Other specified injuries of right lower leg, sequela +C2866044|T037|AB|S89.82|ICD10CM|Other specified injuries of left lower leg|Other specified injuries of left lower leg +C2866044|T037|HT|S89.82|ICD10CM|Other specified injuries of left lower leg|Other specified injuries of left lower leg +C2866045|T037|AB|S89.82XA|ICD10CM|Other specified injuries of left lower leg, init encntr|Other specified injuries of left lower leg, init encntr +C2866045|T037|PT|S89.82XA|ICD10CM|Other specified injuries of left lower leg, initial encounter|Other specified injuries of left lower leg, initial encounter +C2866046|T037|AB|S89.82XD|ICD10CM|Other specified injuries of left lower leg, subs encntr|Other specified injuries of left lower leg, subs encntr +C2866046|T037|PT|S89.82XD|ICD10CM|Other specified injuries of left lower leg, subsequent encounter|Other specified injuries of left lower leg, subsequent encounter +C2866047|T037|AB|S89.82XS|ICD10CM|Other specified injuries of left lower leg, sequela|Other specified injuries of left lower leg, sequela +C2866047|T037|PT|S89.82XS|ICD10CM|Other specified injuries of left lower leg, sequela|Other specified injuries of left lower leg, sequela +C0495958|T037|PT|S89.9|ICD10|Unspecified injury of lower leg|Unspecified injury of lower leg +C0495958|T037|HT|S89.9|ICD10CM|Unspecified injury of lower leg|Unspecified injury of lower leg +C0495958|T037|AB|S89.9|ICD10CM|Unspecified injury of lower leg|Unspecified injury of lower leg +C2866048|T037|AB|S89.90|ICD10CM|Unspecified injury of unspecified lower leg|Unspecified injury of unspecified lower leg +C2866048|T037|HT|S89.90|ICD10CM|Unspecified injury of unspecified lower leg|Unspecified injury of unspecified lower leg +C2976816|T037|AB|S89.90XA|ICD10CM|Unspecified injury of unspecified lower leg, init encntr|Unspecified injury of unspecified lower leg, init encntr +C2976816|T037|PT|S89.90XA|ICD10CM|Unspecified injury of unspecified lower leg, initial encounter|Unspecified injury of unspecified lower leg, initial encounter +C2976817|T037|AB|S89.90XD|ICD10CM|Unspecified injury of unspecified lower leg, subs encntr|Unspecified injury of unspecified lower leg, subs encntr +C2976817|T037|PT|S89.90XD|ICD10CM|Unspecified injury of unspecified lower leg, subsequent encounter|Unspecified injury of unspecified lower leg, subsequent encounter +C2976818|T037|PT|S89.90XS|ICD10CM|Unspecified injury of unspecified lower leg, sequela|Unspecified injury of unspecified lower leg, sequela +C2976818|T037|AB|S89.90XS|ICD10CM|Unspecified injury of unspecified lower leg, sequela|Unspecified injury of unspecified lower leg, sequela +C2866052|T037|AB|S89.91|ICD10CM|Unspecified injury of right lower leg|Unspecified injury of right lower leg +C2866052|T037|HT|S89.91|ICD10CM|Unspecified injury of right lower leg|Unspecified injury of right lower leg +C2866053|T037|PT|S89.91XA|ICD10CM|Unspecified injury of right lower leg, initial encounter|Unspecified injury of right lower leg, initial encounter +C2866053|T037|AB|S89.91XA|ICD10CM|Unspecified injury of right lower leg, initial encounter|Unspecified injury of right lower leg, initial encounter +C2866054|T037|PT|S89.91XD|ICD10CM|Unspecified injury of right lower leg, subsequent encounter|Unspecified injury of right lower leg, subsequent encounter +C2866054|T037|AB|S89.91XD|ICD10CM|Unspecified injury of right lower leg, subsequent encounter|Unspecified injury of right lower leg, subsequent encounter +C2866055|T037|PT|S89.91XS|ICD10CM|Unspecified injury of right lower leg, sequela|Unspecified injury of right lower leg, sequela +C2866055|T037|AB|S89.91XS|ICD10CM|Unspecified injury of right lower leg, sequela|Unspecified injury of right lower leg, sequela +C2866056|T037|AB|S89.92|ICD10CM|Unspecified injury of left lower leg|Unspecified injury of left lower leg +C2866056|T037|HT|S89.92|ICD10CM|Unspecified injury of left lower leg|Unspecified injury of left lower leg +C2866057|T037|PT|S89.92XA|ICD10CM|Unspecified injury of left lower leg, initial encounter|Unspecified injury of left lower leg, initial encounter +C2866057|T037|AB|S89.92XA|ICD10CM|Unspecified injury of left lower leg, initial encounter|Unspecified injury of left lower leg, initial encounter +C2866058|T037|PT|S89.92XD|ICD10CM|Unspecified injury of left lower leg, subsequent encounter|Unspecified injury of left lower leg, subsequent encounter +C2866058|T037|AB|S89.92XD|ICD10CM|Unspecified injury of left lower leg, subsequent encounter|Unspecified injury of left lower leg, subsequent encounter +C2866059|T037|PT|S89.92XS|ICD10CM|Unspecified injury of left lower leg, sequela|Unspecified injury of left lower leg, sequela +C2866059|T037|AB|S89.92XS|ICD10CM|Unspecified injury of left lower leg, sequela|Unspecified injury of left lower leg, sequela +C0495959|T037|HT|S90|ICD10|Superficial injury of ankle and foot|Superficial injury of ankle and foot +C2866060|T037|AB|S90|ICD10CM|Superficial injury of ankle, foot and toes|Superficial injury of ankle, foot and toes +C2866060|T037|HT|S90|ICD10CM|Superficial injury of ankle, foot and toes|Superficial injury of ankle, foot and toes +C0348772|T037|HT|S90-S99|ICD10CM|Injuries to the ankle and foot (S90-S99)|Injuries to the ankle and foot (S90-S99) +C0348772|T037|HT|S90-S99.9|ICD10|Injuries to the ankle and foot|Injuries to the ankle and foot +C0160956|T037|PT|S90.0|ICD10|Contusion of ankle|Contusion of ankle +C0160956|T037|HT|S90.0|ICD10CM|Contusion of ankle|Contusion of ankle +C0160956|T037|AB|S90.0|ICD10CM|Contusion of ankle|Contusion of ankle +C2866061|T037|AB|S90.00|ICD10CM|Contusion of unspecified ankle|Contusion of unspecified ankle +C2866061|T037|HT|S90.00|ICD10CM|Contusion of unspecified ankle|Contusion of unspecified ankle +C2866062|T037|AB|S90.00XA|ICD10CM|Contusion of unspecified ankle, initial encounter|Contusion of unspecified ankle, initial encounter +C2866062|T037|PT|S90.00XA|ICD10CM|Contusion of unspecified ankle, initial encounter|Contusion of unspecified ankle, initial encounter +C2866063|T037|AB|S90.00XD|ICD10CM|Contusion of unspecified ankle, subsequent encounter|Contusion of unspecified ankle, subsequent encounter +C2866063|T037|PT|S90.00XD|ICD10CM|Contusion of unspecified ankle, subsequent encounter|Contusion of unspecified ankle, subsequent encounter +C2866064|T037|AB|S90.00XS|ICD10CM|Contusion of unspecified ankle, sequela|Contusion of unspecified ankle, sequela +C2866064|T037|PT|S90.00XS|ICD10CM|Contusion of unspecified ankle, sequela|Contusion of unspecified ankle, sequela +C2200489|T037|HT|S90.01|ICD10CM|Contusion of right ankle|Contusion of right ankle +C2200489|T037|AB|S90.01|ICD10CM|Contusion of right ankle|Contusion of right ankle +C2866065|T037|AB|S90.01XA|ICD10CM|Contusion of right ankle, initial encounter|Contusion of right ankle, initial encounter +C2866065|T037|PT|S90.01XA|ICD10CM|Contusion of right ankle, initial encounter|Contusion of right ankle, initial encounter +C2866066|T037|AB|S90.01XD|ICD10CM|Contusion of right ankle, subsequent encounter|Contusion of right ankle, subsequent encounter +C2866066|T037|PT|S90.01XD|ICD10CM|Contusion of right ankle, subsequent encounter|Contusion of right ankle, subsequent encounter +C2866067|T037|AB|S90.01XS|ICD10CM|Contusion of right ankle, sequela|Contusion of right ankle, sequela +C2866067|T037|PT|S90.01XS|ICD10CM|Contusion of right ankle, sequela|Contusion of right ankle, sequela +C2139550|T037|HT|S90.02|ICD10CM|Contusion of left ankle|Contusion of left ankle +C2139550|T037|AB|S90.02|ICD10CM|Contusion of left ankle|Contusion of left ankle +C2866068|T037|AB|S90.02XA|ICD10CM|Contusion of left ankle, initial encounter|Contusion of left ankle, initial encounter +C2866068|T037|PT|S90.02XA|ICD10CM|Contusion of left ankle, initial encounter|Contusion of left ankle, initial encounter +C2866069|T037|AB|S90.02XD|ICD10CM|Contusion of left ankle, subsequent encounter|Contusion of left ankle, subsequent encounter +C2866069|T037|PT|S90.02XD|ICD10CM|Contusion of left ankle, subsequent encounter|Contusion of left ankle, subsequent encounter +C2866070|T037|AB|S90.02XS|ICD10CM|Contusion of left ankle, sequela|Contusion of left ankle, sequela +C2866070|T037|PT|S90.02XS|ICD10CM|Contusion of left ankle, sequela|Contusion of left ankle, sequela +C0495960|T037|HT|S90.1|ICD10CM|Contusion of toe without damage to nail|Contusion of toe without damage to nail +C0495960|T037|AB|S90.1|ICD10CM|Contusion of toe without damage to nail|Contusion of toe without damage to nail +C0495960|T037|PT|S90.1|ICD10|Contusion of toe(s) without damage to nail|Contusion of toe(s) without damage to nail +C2866071|T037|HT|S90.11|ICD10CM|Contusion of great toe without damage to nail|Contusion of great toe without damage to nail +C2866071|T037|AB|S90.11|ICD10CM|Contusion of great toe without damage to nail|Contusion of great toe without damage to nail +C2866072|T037|AB|S90.111|ICD10CM|Contusion of right great toe without damage to nail|Contusion of right great toe without damage to nail +C2866072|T037|HT|S90.111|ICD10CM|Contusion of right great toe without damage to nail|Contusion of right great toe without damage to nail +C2866073|T037|AB|S90.111A|ICD10CM|Contusion of right great toe w/o damage to nail, init encntr|Contusion of right great toe w/o damage to nail, init encntr +C2866073|T037|PT|S90.111A|ICD10CM|Contusion of right great toe without damage to nail, initial encounter|Contusion of right great toe without damage to nail, initial encounter +C2866074|T037|AB|S90.111D|ICD10CM|Contusion of right great toe w/o damage to nail, subs encntr|Contusion of right great toe w/o damage to nail, subs encntr +C2866074|T037|PT|S90.111D|ICD10CM|Contusion of right great toe without damage to nail, subsequent encounter|Contusion of right great toe without damage to nail, subsequent encounter +C2866075|T037|AB|S90.111S|ICD10CM|Contusion of right great toe without damage to nail, sequela|Contusion of right great toe without damage to nail, sequela +C2866075|T037|PT|S90.111S|ICD10CM|Contusion of right great toe without damage to nail, sequela|Contusion of right great toe without damage to nail, sequela +C2866076|T037|AB|S90.112|ICD10CM|Contusion of left great toe without damage to nail|Contusion of left great toe without damage to nail +C2866076|T037|HT|S90.112|ICD10CM|Contusion of left great toe without damage to nail|Contusion of left great toe without damage to nail +C2866077|T037|AB|S90.112A|ICD10CM|Contusion of left great toe w/o damage to nail, init encntr|Contusion of left great toe w/o damage to nail, init encntr +C2866077|T037|PT|S90.112A|ICD10CM|Contusion of left great toe without damage to nail, initial encounter|Contusion of left great toe without damage to nail, initial encounter +C2866078|T037|AB|S90.112D|ICD10CM|Contusion of left great toe w/o damage to nail, subs encntr|Contusion of left great toe w/o damage to nail, subs encntr +C2866078|T037|PT|S90.112D|ICD10CM|Contusion of left great toe without damage to nail, subsequent encounter|Contusion of left great toe without damage to nail, subsequent encounter +C2866079|T037|AB|S90.112S|ICD10CM|Contusion of left great toe without damage to nail, sequela|Contusion of left great toe without damage to nail, sequela +C2866079|T037|PT|S90.112S|ICD10CM|Contusion of left great toe without damage to nail, sequela|Contusion of left great toe without damage to nail, sequela +C2866080|T037|AB|S90.119|ICD10CM|Contusion of unspecified great toe without damage to nail|Contusion of unspecified great toe without damage to nail +C2866080|T037|HT|S90.119|ICD10CM|Contusion of unspecified great toe without damage to nail|Contusion of unspecified great toe without damage to nail +C2866081|T037|AB|S90.119A|ICD10CM|Contusion of unsp great toe w/o damage to nail, init encntr|Contusion of unsp great toe w/o damage to nail, init encntr +C2866081|T037|PT|S90.119A|ICD10CM|Contusion of unspecified great toe without damage to nail, initial encounter|Contusion of unspecified great toe without damage to nail, initial encounter +C2866082|T037|AB|S90.119D|ICD10CM|Contusion of unsp great toe w/o damage to nail, subs encntr|Contusion of unsp great toe w/o damage to nail, subs encntr +C2866082|T037|PT|S90.119D|ICD10CM|Contusion of unspecified great toe without damage to nail, subsequent encounter|Contusion of unspecified great toe without damage to nail, subsequent encounter +C2866083|T037|AB|S90.119S|ICD10CM|Contusion of unsp great toe without damage to nail, sequela|Contusion of unsp great toe without damage to nail, sequela +C2866083|T037|PT|S90.119S|ICD10CM|Contusion of unspecified great toe without damage to nail, sequela|Contusion of unspecified great toe without damage to nail, sequela +C2866084|T037|HT|S90.12|ICD10CM|Contusion of lesser toe without damage to nail|Contusion of lesser toe without damage to nail +C2866084|T037|AB|S90.12|ICD10CM|Contusion of lesser toe without damage to nail|Contusion of lesser toe without damage to nail +C2866085|T037|HT|S90.121|ICD10CM|Contusion of right lesser toe(s) without damage to nail|Contusion of right lesser toe(s) without damage to nail +C2866085|T037|AB|S90.121|ICD10CM|Contusion of right lesser toe(s) without damage to nail|Contusion of right lesser toe(s) without damage to nail +C2866086|T037|AB|S90.121A|ICD10CM|Contusion of right lesser toe(s) w/o damage to nail, init|Contusion of right lesser toe(s) w/o damage to nail, init +C2866086|T037|PT|S90.121A|ICD10CM|Contusion of right lesser toe(s) without damage to nail, initial encounter|Contusion of right lesser toe(s) without damage to nail, initial encounter +C2866087|T037|AB|S90.121D|ICD10CM|Contusion of right lesser toe(s) w/o damage to nail, subs|Contusion of right lesser toe(s) w/o damage to nail, subs +C2866087|T037|PT|S90.121D|ICD10CM|Contusion of right lesser toe(s) without damage to nail, subsequent encounter|Contusion of right lesser toe(s) without damage to nail, subsequent encounter +C2866088|T037|AB|S90.121S|ICD10CM|Contusion of right lesser toe(s) w/o damage to nail, sequela|Contusion of right lesser toe(s) w/o damage to nail, sequela +C2866088|T037|PT|S90.121S|ICD10CM|Contusion of right lesser toe(s) without damage to nail, sequela|Contusion of right lesser toe(s) without damage to nail, sequela +C2866089|T037|HT|S90.122|ICD10CM|Contusion of left lesser toe(s) without damage to nail|Contusion of left lesser toe(s) without damage to nail +C2866089|T037|AB|S90.122|ICD10CM|Contusion of left lesser toe(s) without damage to nail|Contusion of left lesser toe(s) without damage to nail +C2866090|T037|AB|S90.122A|ICD10CM|Contusion of left lesser toe(s) w/o damage to nail, init|Contusion of left lesser toe(s) w/o damage to nail, init +C2866090|T037|PT|S90.122A|ICD10CM|Contusion of left lesser toe(s) without damage to nail, initial encounter|Contusion of left lesser toe(s) without damage to nail, initial encounter +C2866091|T037|AB|S90.122D|ICD10CM|Contusion of left lesser toe(s) w/o damage to nail, subs|Contusion of left lesser toe(s) w/o damage to nail, subs +C2866091|T037|PT|S90.122D|ICD10CM|Contusion of left lesser toe(s) without damage to nail, subsequent encounter|Contusion of left lesser toe(s) without damage to nail, subsequent encounter +C2866092|T037|AB|S90.122S|ICD10CM|Contusion of left lesser toe(s) w/o damage to nail, sequela|Contusion of left lesser toe(s) w/o damage to nail, sequela +C2866092|T037|PT|S90.122S|ICD10CM|Contusion of left lesser toe(s) without damage to nail, sequela|Contusion of left lesser toe(s) without damage to nail, sequela +C0160957|T037|ET|S90.129|ICD10CM|Contusion of toe NOS|Contusion of toe NOS +C2866093|T037|AB|S90.129|ICD10CM|Contusion of unsp lesser toe(s) without damage to nail|Contusion of unsp lesser toe(s) without damage to nail +C2866093|T037|HT|S90.129|ICD10CM|Contusion of unspecified lesser toe(s) without damage to nail|Contusion of unspecified lesser toe(s) without damage to nail +C2866094|T037|AB|S90.129A|ICD10CM|Contusion of unsp lesser toe(s) w/o damage to nail, init|Contusion of unsp lesser toe(s) w/o damage to nail, init +C2866094|T037|PT|S90.129A|ICD10CM|Contusion of unspecified lesser toe(s) without damage to nail, initial encounter|Contusion of unspecified lesser toe(s) without damage to nail, initial encounter +C2866095|T037|AB|S90.129D|ICD10CM|Contusion of unsp lesser toe(s) w/o damage to nail, subs|Contusion of unsp lesser toe(s) w/o damage to nail, subs +C2866095|T037|PT|S90.129D|ICD10CM|Contusion of unspecified lesser toe(s) without damage to nail, subsequent encounter|Contusion of unspecified lesser toe(s) without damage to nail, subsequent encounter +C2866096|T037|AB|S90.129S|ICD10CM|Contusion of unsp lesser toe(s) w/o damage to nail, sequela|Contusion of unsp lesser toe(s) w/o damage to nail, sequela +C2866096|T037|PT|S90.129S|ICD10CM|Contusion of unspecified lesser toe(s) without damage to nail, sequela|Contusion of unspecified lesser toe(s) without damage to nail, sequela +C0452169|T037|AB|S90.2|ICD10CM|Contusion of toe with damage to nail|Contusion of toe with damage to nail +C0452169|T037|HT|S90.2|ICD10CM|Contusion of toe with damage to nail|Contusion of toe with damage to nail +C0452169|T037|PT|S90.2|ICD10|Contusion of toe(s) with damage to nail|Contusion of toe(s) with damage to nail +C2866097|T037|AB|S90.21|ICD10CM|Contusion of great toe with damage to nail|Contusion of great toe with damage to nail +C2866097|T037|HT|S90.21|ICD10CM|Contusion of great toe with damage to nail|Contusion of great toe with damage to nail +C2866098|T037|AB|S90.211|ICD10CM|Contusion of right great toe with damage to nail|Contusion of right great toe with damage to nail +C2866098|T037|HT|S90.211|ICD10CM|Contusion of right great toe with damage to nail|Contusion of right great toe with damage to nail +C2866099|T037|AB|S90.211A|ICD10CM|Contusion of right great toe w damage to nail, init encntr|Contusion of right great toe w damage to nail, init encntr +C2866099|T037|PT|S90.211A|ICD10CM|Contusion of right great toe with damage to nail, initial encounter|Contusion of right great toe with damage to nail, initial encounter +C2866100|T037|AB|S90.211D|ICD10CM|Contusion of right great toe w damage to nail, subs encntr|Contusion of right great toe w damage to nail, subs encntr +C2866100|T037|PT|S90.211D|ICD10CM|Contusion of right great toe with damage to nail, subsequent encounter|Contusion of right great toe with damage to nail, subsequent encounter +C2866101|T037|AB|S90.211S|ICD10CM|Contusion of right great toe with damage to nail, sequela|Contusion of right great toe with damage to nail, sequela +C2866101|T037|PT|S90.211S|ICD10CM|Contusion of right great toe with damage to nail, sequela|Contusion of right great toe with damage to nail, sequela +C2866102|T037|AB|S90.212|ICD10CM|Contusion of left great toe with damage to nail|Contusion of left great toe with damage to nail +C2866102|T037|HT|S90.212|ICD10CM|Contusion of left great toe with damage to nail|Contusion of left great toe with damage to nail +C2866103|T037|AB|S90.212A|ICD10CM|Contusion of left great toe with damage to nail, init encntr|Contusion of left great toe with damage to nail, init encntr +C2866103|T037|PT|S90.212A|ICD10CM|Contusion of left great toe with damage to nail, initial encounter|Contusion of left great toe with damage to nail, initial encounter +C2866104|T037|AB|S90.212D|ICD10CM|Contusion of left great toe with damage to nail, subs encntr|Contusion of left great toe with damage to nail, subs encntr +C2866104|T037|PT|S90.212D|ICD10CM|Contusion of left great toe with damage to nail, subsequent encounter|Contusion of left great toe with damage to nail, subsequent encounter +C2866105|T037|AB|S90.212S|ICD10CM|Contusion of left great toe with damage to nail, sequela|Contusion of left great toe with damage to nail, sequela +C2866105|T037|PT|S90.212S|ICD10CM|Contusion of left great toe with damage to nail, sequela|Contusion of left great toe with damage to nail, sequela +C2866106|T037|AB|S90.219|ICD10CM|Contusion of unspecified great toe with damage to nail|Contusion of unspecified great toe with damage to nail +C2866106|T037|HT|S90.219|ICD10CM|Contusion of unspecified great toe with damage to nail|Contusion of unspecified great toe with damage to nail +C2866107|T037|AB|S90.219A|ICD10CM|Contusion of unsp great toe with damage to nail, init encntr|Contusion of unsp great toe with damage to nail, init encntr +C2866107|T037|PT|S90.219A|ICD10CM|Contusion of unspecified great toe with damage to nail, initial encounter|Contusion of unspecified great toe with damage to nail, initial encounter +C2866108|T037|AB|S90.219D|ICD10CM|Contusion of unsp great toe with damage to nail, subs encntr|Contusion of unsp great toe with damage to nail, subs encntr +C2866108|T037|PT|S90.219D|ICD10CM|Contusion of unspecified great toe with damage to nail, subsequent encounter|Contusion of unspecified great toe with damage to nail, subsequent encounter +C2866109|T037|AB|S90.219S|ICD10CM|Contusion of unsp great toe with damage to nail, sequela|Contusion of unsp great toe with damage to nail, sequela +C2866109|T037|PT|S90.219S|ICD10CM|Contusion of unspecified great toe with damage to nail, sequela|Contusion of unspecified great toe with damage to nail, sequela +C2866110|T037|AB|S90.22|ICD10CM|Contusion of lesser toe with damage to nail|Contusion of lesser toe with damage to nail +C2866110|T037|HT|S90.22|ICD10CM|Contusion of lesser toe with damage to nail|Contusion of lesser toe with damage to nail +C2866111|T037|AB|S90.221|ICD10CM|Contusion of right lesser toe(s) with damage to nail|Contusion of right lesser toe(s) with damage to nail +C2866111|T037|HT|S90.221|ICD10CM|Contusion of right lesser toe(s) with damage to nail|Contusion of right lesser toe(s) with damage to nail +C2866112|T037|AB|S90.221A|ICD10CM|Contusion of right lesser toe(s) w damage to nail, init|Contusion of right lesser toe(s) w damage to nail, init +C2866112|T037|PT|S90.221A|ICD10CM|Contusion of right lesser toe(s) with damage to nail, initial encounter|Contusion of right lesser toe(s) with damage to nail, initial encounter +C2866113|T037|AB|S90.221D|ICD10CM|Contusion of right lesser toe(s) w damage to nail, subs|Contusion of right lesser toe(s) w damage to nail, subs +C2866113|T037|PT|S90.221D|ICD10CM|Contusion of right lesser toe(s) with damage to nail, subsequent encounter|Contusion of right lesser toe(s) with damage to nail, subsequent encounter +C2866114|T037|AB|S90.221S|ICD10CM|Contusion of right lesser toe(s) w damage to nail, sequela|Contusion of right lesser toe(s) w damage to nail, sequela +C2866114|T037|PT|S90.221S|ICD10CM|Contusion of right lesser toe(s) with damage to nail, sequela|Contusion of right lesser toe(s) with damage to nail, sequela +C2866115|T037|AB|S90.222|ICD10CM|Contusion of left lesser toe(s) with damage to nail|Contusion of left lesser toe(s) with damage to nail +C2866115|T037|HT|S90.222|ICD10CM|Contusion of left lesser toe(s) with damage to nail|Contusion of left lesser toe(s) with damage to nail +C2866116|T037|AB|S90.222A|ICD10CM|Contusion of left lesser toe(s) w damage to nail, init|Contusion of left lesser toe(s) w damage to nail, init +C2866116|T037|PT|S90.222A|ICD10CM|Contusion of left lesser toe(s) with damage to nail, initial encounter|Contusion of left lesser toe(s) with damage to nail, initial encounter +C2866117|T037|AB|S90.222D|ICD10CM|Contusion of left lesser toe(s) w damage to nail, subs|Contusion of left lesser toe(s) w damage to nail, subs +C2866117|T037|PT|S90.222D|ICD10CM|Contusion of left lesser toe(s) with damage to nail, subsequent encounter|Contusion of left lesser toe(s) with damage to nail, subsequent encounter +C2866118|T037|AB|S90.222S|ICD10CM|Contusion of left lesser toe(s) with damage to nail, sequela|Contusion of left lesser toe(s) with damage to nail, sequela +C2866118|T037|PT|S90.222S|ICD10CM|Contusion of left lesser toe(s) with damage to nail, sequela|Contusion of left lesser toe(s) with damage to nail, sequela +C2866119|T037|AB|S90.229|ICD10CM|Contusion of unspecified lesser toe(s) with damage to nail|Contusion of unspecified lesser toe(s) with damage to nail +C2866119|T037|HT|S90.229|ICD10CM|Contusion of unspecified lesser toe(s) with damage to nail|Contusion of unspecified lesser toe(s) with damage to nail +C2866120|T037|AB|S90.229A|ICD10CM|Contusion of unsp lesser toe(s) w damage to nail, init|Contusion of unsp lesser toe(s) w damage to nail, init +C2866120|T037|PT|S90.229A|ICD10CM|Contusion of unspecified lesser toe(s) with damage to nail, initial encounter|Contusion of unspecified lesser toe(s) with damage to nail, initial encounter +C2866121|T037|AB|S90.229D|ICD10CM|Contusion of unsp lesser toe(s) w damage to nail, subs|Contusion of unsp lesser toe(s) w damage to nail, subs +C2866121|T037|PT|S90.229D|ICD10CM|Contusion of unspecified lesser toe(s) with damage to nail, subsequent encounter|Contusion of unspecified lesser toe(s) with damage to nail, subsequent encounter +C2866122|T037|AB|S90.229S|ICD10CM|Contusion of unsp lesser toe(s) with damage to nail, sequela|Contusion of unsp lesser toe(s) with damage to nail, sequela +C2866122|T037|PT|S90.229S|ICD10CM|Contusion of unspecified lesser toe(s) with damage to nail, sequela|Contusion of unspecified lesser toe(s) with damage to nail, sequela +C0160955|T033|HT|S90.3|ICD10CM|Contusion of foot|Contusion of foot +C0160955|T033|AB|S90.3|ICD10CM|Contusion of foot|Contusion of foot +C0478348|T037|PT|S90.3|ICD10|Contusion of other and unspecified parts of foot|Contusion of other and unspecified parts of foot +C0160955|T033|ET|S90.30|ICD10CM|Contusion of foot NOS|Contusion of foot NOS +C2866123|T037|AB|S90.30|ICD10CM|Contusion of unspecified foot|Contusion of unspecified foot +C2866123|T037|HT|S90.30|ICD10CM|Contusion of unspecified foot|Contusion of unspecified foot +C2866124|T037|AB|S90.30XA|ICD10CM|Contusion of unspecified foot, initial encounter|Contusion of unspecified foot, initial encounter +C2866124|T037|PT|S90.30XA|ICD10CM|Contusion of unspecified foot, initial encounter|Contusion of unspecified foot, initial encounter +C2866125|T037|AB|S90.30XD|ICD10CM|Contusion of unspecified foot, subsequent encounter|Contusion of unspecified foot, subsequent encounter +C2866125|T037|PT|S90.30XD|ICD10CM|Contusion of unspecified foot, subsequent encounter|Contusion of unspecified foot, subsequent encounter +C2866126|T037|AB|S90.30XS|ICD10CM|Contusion of unspecified foot, sequela|Contusion of unspecified foot, sequela +C2866126|T037|PT|S90.30XS|ICD10CM|Contusion of unspecified foot, sequela|Contusion of unspecified foot, sequela +C2201705|T037|HT|S90.31|ICD10CM|Contusion of right foot|Contusion of right foot +C2201705|T037|AB|S90.31|ICD10CM|Contusion of right foot|Contusion of right foot +C2866127|T037|AB|S90.31XA|ICD10CM|Contusion of right foot, initial encounter|Contusion of right foot, initial encounter +C2866127|T037|PT|S90.31XA|ICD10CM|Contusion of right foot, initial encounter|Contusion of right foot, initial encounter +C2866128|T037|AB|S90.31XD|ICD10CM|Contusion of right foot, subsequent encounter|Contusion of right foot, subsequent encounter +C2866128|T037|PT|S90.31XD|ICD10CM|Contusion of right foot, subsequent encounter|Contusion of right foot, subsequent encounter +C2866129|T037|AB|S90.31XS|ICD10CM|Contusion of right foot, sequela|Contusion of right foot, sequela +C2866129|T037|PT|S90.31XS|ICD10CM|Contusion of right foot, sequela|Contusion of right foot, sequela +C2141277|T037|HT|S90.32|ICD10CM|Contusion of left foot|Contusion of left foot +C2141277|T037|AB|S90.32|ICD10CM|Contusion of left foot|Contusion of left foot +C2866130|T037|AB|S90.32XA|ICD10CM|Contusion of left foot, initial encounter|Contusion of left foot, initial encounter +C2866130|T037|PT|S90.32XA|ICD10CM|Contusion of left foot, initial encounter|Contusion of left foot, initial encounter +C2866131|T037|AB|S90.32XD|ICD10CM|Contusion of left foot, subsequent encounter|Contusion of left foot, subsequent encounter +C2866131|T037|PT|S90.32XD|ICD10CM|Contusion of left foot, subsequent encounter|Contusion of left foot, subsequent encounter +C2866132|T037|AB|S90.32XS|ICD10CM|Contusion of left foot, sequela|Contusion of left foot, sequela +C2866132|T037|PT|S90.32XS|ICD10CM|Contusion of left foot, sequela|Contusion of left foot, sequela +C2866133|T037|AB|S90.4|ICD10CM|Other superficial injuries of toe|Other superficial injuries of toe +C2866133|T037|HT|S90.4|ICD10CM|Other superficial injuries of toe|Other superficial injuries of toe +C0432871|T037|AB|S90.41|ICD10CM|Abrasion of toe|Abrasion of toe +C0432871|T037|HT|S90.41|ICD10CM|Abrasion of toe|Abrasion of toe +C2866134|T037|AB|S90.411|ICD10CM|Abrasion, right great toe|Abrasion, right great toe +C2866134|T037|HT|S90.411|ICD10CM|Abrasion, right great toe|Abrasion, right great toe +C2866135|T037|AB|S90.411A|ICD10CM|Abrasion, right great toe, initial encounter|Abrasion, right great toe, initial encounter +C2866135|T037|PT|S90.411A|ICD10CM|Abrasion, right great toe, initial encounter|Abrasion, right great toe, initial encounter +C2866136|T037|AB|S90.411D|ICD10CM|Abrasion, right great toe, subsequent encounter|Abrasion, right great toe, subsequent encounter +C2866136|T037|PT|S90.411D|ICD10CM|Abrasion, right great toe, subsequent encounter|Abrasion, right great toe, subsequent encounter +C2866137|T037|AB|S90.411S|ICD10CM|Abrasion, right great toe, sequela|Abrasion, right great toe, sequela +C2866137|T037|PT|S90.411S|ICD10CM|Abrasion, right great toe, sequela|Abrasion, right great toe, sequela +C2866138|T037|AB|S90.412|ICD10CM|Abrasion, left great toe|Abrasion, left great toe +C2866138|T037|HT|S90.412|ICD10CM|Abrasion, left great toe|Abrasion, left great toe +C2866139|T037|AB|S90.412A|ICD10CM|Abrasion, left great toe, initial encounter|Abrasion, left great toe, initial encounter +C2866139|T037|PT|S90.412A|ICD10CM|Abrasion, left great toe, initial encounter|Abrasion, left great toe, initial encounter +C2866140|T037|AB|S90.412D|ICD10CM|Abrasion, left great toe, subsequent encounter|Abrasion, left great toe, subsequent encounter +C2866140|T037|PT|S90.412D|ICD10CM|Abrasion, left great toe, subsequent encounter|Abrasion, left great toe, subsequent encounter +C2866141|T037|AB|S90.412S|ICD10CM|Abrasion, left great toe, sequela|Abrasion, left great toe, sequela +C2866141|T037|PT|S90.412S|ICD10CM|Abrasion, left great toe, sequela|Abrasion, left great toe, sequela +C2866142|T037|AB|S90.413|ICD10CM|Abrasion, unspecified great toe|Abrasion, unspecified great toe +C2866142|T037|HT|S90.413|ICD10CM|Abrasion, unspecified great toe|Abrasion, unspecified great toe +C2866143|T037|AB|S90.413A|ICD10CM|Abrasion, unspecified great toe, initial encounter|Abrasion, unspecified great toe, initial encounter +C2866143|T037|PT|S90.413A|ICD10CM|Abrasion, unspecified great toe, initial encounter|Abrasion, unspecified great toe, initial encounter +C2866144|T037|AB|S90.413D|ICD10CM|Abrasion, unspecified great toe, subsequent encounter|Abrasion, unspecified great toe, subsequent encounter +C2866144|T037|PT|S90.413D|ICD10CM|Abrasion, unspecified great toe, subsequent encounter|Abrasion, unspecified great toe, subsequent encounter +C2866145|T037|AB|S90.413S|ICD10CM|Abrasion, unspecified great toe, sequela|Abrasion, unspecified great toe, sequela +C2866145|T037|PT|S90.413S|ICD10CM|Abrasion, unspecified great toe, sequela|Abrasion, unspecified great toe, sequela +C2866146|T037|AB|S90.414|ICD10CM|Abrasion, right lesser toe(s)|Abrasion, right lesser toe(s) +C2866146|T037|HT|S90.414|ICD10CM|Abrasion, right lesser toe(s)|Abrasion, right lesser toe(s) +C2866147|T037|AB|S90.414A|ICD10CM|Abrasion, right lesser toe(s), initial encounter|Abrasion, right lesser toe(s), initial encounter +C2866147|T037|PT|S90.414A|ICD10CM|Abrasion, right lesser toe(s), initial encounter|Abrasion, right lesser toe(s), initial encounter +C2866148|T037|AB|S90.414D|ICD10CM|Abrasion, right lesser toe(s), subsequent encounter|Abrasion, right lesser toe(s), subsequent encounter +C2866148|T037|PT|S90.414D|ICD10CM|Abrasion, right lesser toe(s), subsequent encounter|Abrasion, right lesser toe(s), subsequent encounter +C2866149|T037|AB|S90.414S|ICD10CM|Abrasion, right lesser toe(s), sequela|Abrasion, right lesser toe(s), sequela +C2866149|T037|PT|S90.414S|ICD10CM|Abrasion, right lesser toe(s), sequela|Abrasion, right lesser toe(s), sequela +C2866150|T037|AB|S90.415|ICD10CM|Abrasion, left lesser toe(s)|Abrasion, left lesser toe(s) +C2866150|T037|HT|S90.415|ICD10CM|Abrasion, left lesser toe(s)|Abrasion, left lesser toe(s) +C2866151|T037|AB|S90.415A|ICD10CM|Abrasion, left lesser toe(s), initial encounter|Abrasion, left lesser toe(s), initial encounter +C2866151|T037|PT|S90.415A|ICD10CM|Abrasion, left lesser toe(s), initial encounter|Abrasion, left lesser toe(s), initial encounter +C2866152|T037|AB|S90.415D|ICD10CM|Abrasion, left lesser toe(s), subsequent encounter|Abrasion, left lesser toe(s), subsequent encounter +C2866152|T037|PT|S90.415D|ICD10CM|Abrasion, left lesser toe(s), subsequent encounter|Abrasion, left lesser toe(s), subsequent encounter +C2866153|T037|AB|S90.415S|ICD10CM|Abrasion, left lesser toe(s), sequela|Abrasion, left lesser toe(s), sequela +C2866153|T037|PT|S90.415S|ICD10CM|Abrasion, left lesser toe(s), sequela|Abrasion, left lesser toe(s), sequela +C2866154|T037|AB|S90.416|ICD10CM|Abrasion, unspecified lesser toe(s)|Abrasion, unspecified lesser toe(s) +C2866154|T037|HT|S90.416|ICD10CM|Abrasion, unspecified lesser toe(s)|Abrasion, unspecified lesser toe(s) +C2866155|T037|AB|S90.416A|ICD10CM|Abrasion, unspecified lesser toe(s), initial encounter|Abrasion, unspecified lesser toe(s), initial encounter +C2866155|T037|PT|S90.416A|ICD10CM|Abrasion, unspecified lesser toe(s), initial encounter|Abrasion, unspecified lesser toe(s), initial encounter +C2866156|T037|AB|S90.416D|ICD10CM|Abrasion, unspecified lesser toe(s), subsequent encounter|Abrasion, unspecified lesser toe(s), subsequent encounter +C2866156|T037|PT|S90.416D|ICD10CM|Abrasion, unspecified lesser toe(s), subsequent encounter|Abrasion, unspecified lesser toe(s), subsequent encounter +C2866157|T037|AB|S90.416S|ICD10CM|Abrasion, unspecified lesser toe(s), sequela|Abrasion, unspecified lesser toe(s), sequela +C2866157|T037|PT|S90.416S|ICD10CM|Abrasion, unspecified lesser toe(s), sequela|Abrasion, unspecified lesser toe(s), sequela +C2866158|T037|AB|S90.42|ICD10CM|Blister (nonthermal) of toe|Blister (nonthermal) of toe +C2866158|T037|HT|S90.42|ICD10CM|Blister (nonthermal) of toe|Blister (nonthermal) of toe +C2866159|T037|AB|S90.421|ICD10CM|Blister (nonthermal), right great toe|Blister (nonthermal), right great toe +C2866159|T037|HT|S90.421|ICD10CM|Blister (nonthermal), right great toe|Blister (nonthermal), right great toe +C2866160|T037|AB|S90.421A|ICD10CM|Blister (nonthermal), right great toe, initial encounter|Blister (nonthermal), right great toe, initial encounter +C2866160|T037|PT|S90.421A|ICD10CM|Blister (nonthermal), right great toe, initial encounter|Blister (nonthermal), right great toe, initial encounter +C2866161|T037|AB|S90.421D|ICD10CM|Blister (nonthermal), right great toe, subsequent encounter|Blister (nonthermal), right great toe, subsequent encounter +C2866161|T037|PT|S90.421D|ICD10CM|Blister (nonthermal), right great toe, subsequent encounter|Blister (nonthermal), right great toe, subsequent encounter +C2866162|T037|AB|S90.421S|ICD10CM|Blister (nonthermal), right great toe, sequela|Blister (nonthermal), right great toe, sequela +C2866162|T037|PT|S90.421S|ICD10CM|Blister (nonthermal), right great toe, sequela|Blister (nonthermal), right great toe, sequela +C2866163|T037|AB|S90.422|ICD10CM|Blister (nonthermal), left great toe|Blister (nonthermal), left great toe +C2866163|T037|HT|S90.422|ICD10CM|Blister (nonthermal), left great toe|Blister (nonthermal), left great toe +C2866164|T037|AB|S90.422A|ICD10CM|Blister (nonthermal), left great toe, initial encounter|Blister (nonthermal), left great toe, initial encounter +C2866164|T037|PT|S90.422A|ICD10CM|Blister (nonthermal), left great toe, initial encounter|Blister (nonthermal), left great toe, initial encounter +C2866165|T037|AB|S90.422D|ICD10CM|Blister (nonthermal), left great toe, subsequent encounter|Blister (nonthermal), left great toe, subsequent encounter +C2866165|T037|PT|S90.422D|ICD10CM|Blister (nonthermal), left great toe, subsequent encounter|Blister (nonthermal), left great toe, subsequent encounter +C2866166|T037|AB|S90.422S|ICD10CM|Blister (nonthermal), left great toe, sequela|Blister (nonthermal), left great toe, sequela +C2866166|T037|PT|S90.422S|ICD10CM|Blister (nonthermal), left great toe, sequela|Blister (nonthermal), left great toe, sequela +C2866167|T037|AB|S90.423|ICD10CM|Blister (nonthermal), unspecified great toe|Blister (nonthermal), unspecified great toe +C2866167|T037|HT|S90.423|ICD10CM|Blister (nonthermal), unspecified great toe|Blister (nonthermal), unspecified great toe +C2866168|T037|AB|S90.423A|ICD10CM|Blister (nonthermal), unspecified great toe, init encntr|Blister (nonthermal), unspecified great toe, init encntr +C2866168|T037|PT|S90.423A|ICD10CM|Blister (nonthermal), unspecified great toe, initial encounter|Blister (nonthermal), unspecified great toe, initial encounter +C2866169|T037|AB|S90.423D|ICD10CM|Blister (nonthermal), unspecified great toe, subs encntr|Blister (nonthermal), unspecified great toe, subs encntr +C2866169|T037|PT|S90.423D|ICD10CM|Blister (nonthermal), unspecified great toe, subsequent encounter|Blister (nonthermal), unspecified great toe, subsequent encounter +C2866170|T037|AB|S90.423S|ICD10CM|Blister (nonthermal), unspecified great toe, sequela|Blister (nonthermal), unspecified great toe, sequela +C2866170|T037|PT|S90.423S|ICD10CM|Blister (nonthermal), unspecified great toe, sequela|Blister (nonthermal), unspecified great toe, sequela +C2866171|T037|AB|S90.424|ICD10CM|Blister (nonthermal), right lesser toe(s)|Blister (nonthermal), right lesser toe(s) +C2866171|T037|HT|S90.424|ICD10CM|Blister (nonthermal), right lesser toe(s)|Blister (nonthermal), right lesser toe(s) +C2866172|T037|AB|S90.424A|ICD10CM|Blister (nonthermal), right lesser toe(s), initial encounter|Blister (nonthermal), right lesser toe(s), initial encounter +C2866172|T037|PT|S90.424A|ICD10CM|Blister (nonthermal), right lesser toe(s), initial encounter|Blister (nonthermal), right lesser toe(s), initial encounter +C2866173|T037|AB|S90.424D|ICD10CM|Blister (nonthermal), right lesser toe(s), subs encntr|Blister (nonthermal), right lesser toe(s), subs encntr +C2866173|T037|PT|S90.424D|ICD10CM|Blister (nonthermal), right lesser toe(s), subsequent encounter|Blister (nonthermal), right lesser toe(s), subsequent encounter +C2866174|T037|AB|S90.424S|ICD10CM|Blister (nonthermal), right lesser toe(s), sequela|Blister (nonthermal), right lesser toe(s), sequela +C2866174|T037|PT|S90.424S|ICD10CM|Blister (nonthermal), right lesser toe(s), sequela|Blister (nonthermal), right lesser toe(s), sequela +C2866175|T037|AB|S90.425|ICD10CM|Blister (nonthermal), left lesser toe(s)|Blister (nonthermal), left lesser toe(s) +C2866175|T037|HT|S90.425|ICD10CM|Blister (nonthermal), left lesser toe(s)|Blister (nonthermal), left lesser toe(s) +C2866176|T037|AB|S90.425A|ICD10CM|Blister (nonthermal), left lesser toe(s), initial encounter|Blister (nonthermal), left lesser toe(s), initial encounter +C2866176|T037|PT|S90.425A|ICD10CM|Blister (nonthermal), left lesser toe(s), initial encounter|Blister (nonthermal), left lesser toe(s), initial encounter +C2866177|T037|AB|S90.425D|ICD10CM|Blister (nonthermal), left lesser toe(s), subs encntr|Blister (nonthermal), left lesser toe(s), subs encntr +C2866177|T037|PT|S90.425D|ICD10CM|Blister (nonthermal), left lesser toe(s), subsequent encounter|Blister (nonthermal), left lesser toe(s), subsequent encounter +C2866178|T037|AB|S90.425S|ICD10CM|Blister (nonthermal), left lesser toe(s), sequela|Blister (nonthermal), left lesser toe(s), sequela +C2866178|T037|PT|S90.425S|ICD10CM|Blister (nonthermal), left lesser toe(s), sequela|Blister (nonthermal), left lesser toe(s), sequela +C2866179|T037|AB|S90.426|ICD10CM|Blister (nonthermal), unspecified lesser toe(s)|Blister (nonthermal), unspecified lesser toe(s) +C2866179|T037|HT|S90.426|ICD10CM|Blister (nonthermal), unspecified lesser toe(s)|Blister (nonthermal), unspecified lesser toe(s) +C2866180|T037|AB|S90.426A|ICD10CM|Blister (nonthermal), unspecified lesser toe(s), init encntr|Blister (nonthermal), unspecified lesser toe(s), init encntr +C2866180|T037|PT|S90.426A|ICD10CM|Blister (nonthermal), unspecified lesser toe(s), initial encounter|Blister (nonthermal), unspecified lesser toe(s), initial encounter +C2866181|T037|AB|S90.426D|ICD10CM|Blister (nonthermal), unspecified lesser toe(s), subs encntr|Blister (nonthermal), unspecified lesser toe(s), subs encntr +C2866181|T037|PT|S90.426D|ICD10CM|Blister (nonthermal), unspecified lesser toe(s), subsequent encounter|Blister (nonthermal), unspecified lesser toe(s), subsequent encounter +C2866182|T037|AB|S90.426S|ICD10CM|Blister (nonthermal), unspecified lesser toe(s), sequela|Blister (nonthermal), unspecified lesser toe(s), sequela +C2866182|T037|PT|S90.426S|ICD10CM|Blister (nonthermal), unspecified lesser toe(s), sequela|Blister (nonthermal), unspecified lesser toe(s), sequela +C2866184|T037|HT|S90.44|ICD10CM|External constriction of toe|External constriction of toe +C2866184|T037|AB|S90.44|ICD10CM|External constriction of toe|External constriction of toe +C2866183|T037|ET|S90.44|ICD10CM|Hair tourniquet syndrome of toe|Hair tourniquet syndrome of toe +C2866185|T037|AB|S90.441|ICD10CM|External constriction, right great toe|External constriction, right great toe +C2866185|T037|HT|S90.441|ICD10CM|External constriction, right great toe|External constriction, right great toe +C2866186|T037|AB|S90.441A|ICD10CM|External constriction, right great toe, initial encounter|External constriction, right great toe, initial encounter +C2866186|T037|PT|S90.441A|ICD10CM|External constriction, right great toe, initial encounter|External constriction, right great toe, initial encounter +C2866187|T037|AB|S90.441D|ICD10CM|External constriction, right great toe, subsequent encounter|External constriction, right great toe, subsequent encounter +C2866187|T037|PT|S90.441D|ICD10CM|External constriction, right great toe, subsequent encounter|External constriction, right great toe, subsequent encounter +C2866188|T037|AB|S90.441S|ICD10CM|External constriction, right great toe, sequela|External constriction, right great toe, sequela +C2866188|T037|PT|S90.441S|ICD10CM|External constriction, right great toe, sequela|External constriction, right great toe, sequela +C2866189|T037|AB|S90.442|ICD10CM|External constriction, left great toe|External constriction, left great toe +C2866189|T037|HT|S90.442|ICD10CM|External constriction, left great toe|External constriction, left great toe +C2866190|T037|AB|S90.442A|ICD10CM|External constriction, left great toe, initial encounter|External constriction, left great toe, initial encounter +C2866190|T037|PT|S90.442A|ICD10CM|External constriction, left great toe, initial encounter|External constriction, left great toe, initial encounter +C2866191|T037|AB|S90.442D|ICD10CM|External constriction, left great toe, subsequent encounter|External constriction, left great toe, subsequent encounter +C2866191|T037|PT|S90.442D|ICD10CM|External constriction, left great toe, subsequent encounter|External constriction, left great toe, subsequent encounter +C2866192|T037|AB|S90.442S|ICD10CM|External constriction, left great toe, sequela|External constriction, left great toe, sequela +C2866192|T037|PT|S90.442S|ICD10CM|External constriction, left great toe, sequela|External constriction, left great toe, sequela +C2866193|T037|AB|S90.443|ICD10CM|External constriction, unspecified great toe|External constriction, unspecified great toe +C2866193|T037|HT|S90.443|ICD10CM|External constriction, unspecified great toe|External constriction, unspecified great toe +C2866194|T037|AB|S90.443A|ICD10CM|External constriction, unspecified great toe, init encntr|External constriction, unspecified great toe, init encntr +C2866194|T037|PT|S90.443A|ICD10CM|External constriction, unspecified great toe, initial encounter|External constriction, unspecified great toe, initial encounter +C2866195|T037|AB|S90.443D|ICD10CM|External constriction, unspecified great toe, subs encntr|External constriction, unspecified great toe, subs encntr +C2866195|T037|PT|S90.443D|ICD10CM|External constriction, unspecified great toe, subsequent encounter|External constriction, unspecified great toe, subsequent encounter +C2866196|T037|AB|S90.443S|ICD10CM|External constriction, unspecified great toe, sequela|External constriction, unspecified great toe, sequela +C2866196|T037|PT|S90.443S|ICD10CM|External constriction, unspecified great toe, sequela|External constriction, unspecified great toe, sequela +C2866197|T037|AB|S90.444|ICD10CM|External constriction, right lesser toe(s)|External constriction, right lesser toe(s) +C2866197|T037|HT|S90.444|ICD10CM|External constriction, right lesser toe(s)|External constriction, right lesser toe(s) +C2866198|T037|AB|S90.444A|ICD10CM|External constriction, right lesser toe(s), init encntr|External constriction, right lesser toe(s), init encntr +C2866198|T037|PT|S90.444A|ICD10CM|External constriction, right lesser toe(s), initial encounter|External constriction, right lesser toe(s), initial encounter +C2866199|T037|AB|S90.444D|ICD10CM|External constriction, right lesser toe(s), subs encntr|External constriction, right lesser toe(s), subs encntr +C2866199|T037|PT|S90.444D|ICD10CM|External constriction, right lesser toe(s), subsequent encounter|External constriction, right lesser toe(s), subsequent encounter +C2866200|T037|AB|S90.444S|ICD10CM|External constriction, right lesser toe(s), sequela|External constriction, right lesser toe(s), sequela +C2866200|T037|PT|S90.444S|ICD10CM|External constriction, right lesser toe(s), sequela|External constriction, right lesser toe(s), sequela +C2866201|T037|AB|S90.445|ICD10CM|External constriction, left lesser toe(s)|External constriction, left lesser toe(s) +C2866201|T037|HT|S90.445|ICD10CM|External constriction, left lesser toe(s)|External constriction, left lesser toe(s) +C2866202|T037|AB|S90.445A|ICD10CM|External constriction, left lesser toe(s), initial encounter|External constriction, left lesser toe(s), initial encounter +C2866202|T037|PT|S90.445A|ICD10CM|External constriction, left lesser toe(s), initial encounter|External constriction, left lesser toe(s), initial encounter +C2866203|T037|AB|S90.445D|ICD10CM|External constriction, left lesser toe(s), subs encntr|External constriction, left lesser toe(s), subs encntr +C2866203|T037|PT|S90.445D|ICD10CM|External constriction, left lesser toe(s), subsequent encounter|External constriction, left lesser toe(s), subsequent encounter +C2866204|T037|AB|S90.445S|ICD10CM|External constriction, left lesser toe(s), sequela|External constriction, left lesser toe(s), sequela +C2866204|T037|PT|S90.445S|ICD10CM|External constriction, left lesser toe(s), sequela|External constriction, left lesser toe(s), sequela +C2866205|T037|AB|S90.446|ICD10CM|External constriction, unspecified lesser toe(s)|External constriction, unspecified lesser toe(s) +C2866205|T037|HT|S90.446|ICD10CM|External constriction, unspecified lesser toe(s)|External constriction, unspecified lesser toe(s) +C2866206|T037|AB|S90.446A|ICD10CM|External constriction, unsp lesser toe(s), init encntr|External constriction, unsp lesser toe(s), init encntr +C2866206|T037|PT|S90.446A|ICD10CM|External constriction, unspecified lesser toe(s), initial encounter|External constriction, unspecified lesser toe(s), initial encounter +C2866207|T037|AB|S90.446D|ICD10CM|External constriction, unsp lesser toe(s), subs encntr|External constriction, unsp lesser toe(s), subs encntr +C2866207|T037|PT|S90.446D|ICD10CM|External constriction, unspecified lesser toe(s), subsequent encounter|External constriction, unspecified lesser toe(s), subsequent encounter +C2866208|T037|AB|S90.446S|ICD10CM|External constriction, unspecified lesser toe(s), sequela|External constriction, unspecified lesser toe(s), sequela +C2866208|T037|PT|S90.446S|ICD10CM|External constriction, unspecified lesser toe(s), sequela|External constriction, unspecified lesser toe(s), sequela +C2866209|T037|ET|S90.45|ICD10CM|Splinter in the toe|Splinter in the toe +C2866210|T037|AB|S90.45|ICD10CM|Superficial foreign body of toe|Superficial foreign body of toe +C2866210|T037|HT|S90.45|ICD10CM|Superficial foreign body of toe|Superficial foreign body of toe +C2866211|T037|AB|S90.451|ICD10CM|Superficial foreign body, right great toe|Superficial foreign body, right great toe +C2866211|T037|HT|S90.451|ICD10CM|Superficial foreign body, right great toe|Superficial foreign body, right great toe +C2866212|T037|AB|S90.451A|ICD10CM|Superficial foreign body, right great toe, initial encounter|Superficial foreign body, right great toe, initial encounter +C2866212|T037|PT|S90.451A|ICD10CM|Superficial foreign body, right great toe, initial encounter|Superficial foreign body, right great toe, initial encounter +C2866213|T037|AB|S90.451D|ICD10CM|Superficial foreign body, right great toe, subs encntr|Superficial foreign body, right great toe, subs encntr +C2866213|T037|PT|S90.451D|ICD10CM|Superficial foreign body, right great toe, subsequent encounter|Superficial foreign body, right great toe, subsequent encounter +C2866214|T037|AB|S90.451S|ICD10CM|Superficial foreign body, right great toe, sequela|Superficial foreign body, right great toe, sequela +C2866214|T037|PT|S90.451S|ICD10CM|Superficial foreign body, right great toe, sequela|Superficial foreign body, right great toe, sequela +C2866215|T037|AB|S90.452|ICD10CM|Superficial foreign body, left great toe|Superficial foreign body, left great toe +C2866215|T037|HT|S90.452|ICD10CM|Superficial foreign body, left great toe|Superficial foreign body, left great toe +C2866216|T037|AB|S90.452A|ICD10CM|Superficial foreign body, left great toe, initial encounter|Superficial foreign body, left great toe, initial encounter +C2866216|T037|PT|S90.452A|ICD10CM|Superficial foreign body, left great toe, initial encounter|Superficial foreign body, left great toe, initial encounter +C2866217|T037|AB|S90.452D|ICD10CM|Superficial foreign body, left great toe, subs encntr|Superficial foreign body, left great toe, subs encntr +C2866217|T037|PT|S90.452D|ICD10CM|Superficial foreign body, left great toe, subsequent encounter|Superficial foreign body, left great toe, subsequent encounter +C2866218|T037|AB|S90.452S|ICD10CM|Superficial foreign body, left great toe, sequela|Superficial foreign body, left great toe, sequela +C2866218|T037|PT|S90.452S|ICD10CM|Superficial foreign body, left great toe, sequela|Superficial foreign body, left great toe, sequela +C2866219|T037|AB|S90.453|ICD10CM|Superficial foreign body, unspecified great toe|Superficial foreign body, unspecified great toe +C2866219|T037|HT|S90.453|ICD10CM|Superficial foreign body, unspecified great toe|Superficial foreign body, unspecified great toe +C2866220|T037|AB|S90.453A|ICD10CM|Superficial foreign body, unspecified great toe, init encntr|Superficial foreign body, unspecified great toe, init encntr +C2866220|T037|PT|S90.453A|ICD10CM|Superficial foreign body, unspecified great toe, initial encounter|Superficial foreign body, unspecified great toe, initial encounter +C2866221|T037|AB|S90.453D|ICD10CM|Superficial foreign body, unspecified great toe, subs encntr|Superficial foreign body, unspecified great toe, subs encntr +C2866221|T037|PT|S90.453D|ICD10CM|Superficial foreign body, unspecified great toe, subsequent encounter|Superficial foreign body, unspecified great toe, subsequent encounter +C2866222|T037|AB|S90.453S|ICD10CM|Superficial foreign body, unspecified great toe, sequela|Superficial foreign body, unspecified great toe, sequela +C2866222|T037|PT|S90.453S|ICD10CM|Superficial foreign body, unspecified great toe, sequela|Superficial foreign body, unspecified great toe, sequela +C2866223|T037|AB|S90.454|ICD10CM|Superficial foreign body, right lesser toe(s)|Superficial foreign body, right lesser toe(s) +C2866223|T037|HT|S90.454|ICD10CM|Superficial foreign body, right lesser toe(s)|Superficial foreign body, right lesser toe(s) +C2866224|T037|AB|S90.454A|ICD10CM|Superficial foreign body, right lesser toe(s), init encntr|Superficial foreign body, right lesser toe(s), init encntr +C2866224|T037|PT|S90.454A|ICD10CM|Superficial foreign body, right lesser toe(s), initial encounter|Superficial foreign body, right lesser toe(s), initial encounter +C2866225|T037|AB|S90.454D|ICD10CM|Superficial foreign body, right lesser toe(s), subs encntr|Superficial foreign body, right lesser toe(s), subs encntr +C2866225|T037|PT|S90.454D|ICD10CM|Superficial foreign body, right lesser toe(s), subsequent encounter|Superficial foreign body, right lesser toe(s), subsequent encounter +C2866226|T037|AB|S90.454S|ICD10CM|Superficial foreign body, right lesser toe(s), sequela|Superficial foreign body, right lesser toe(s), sequela +C2866226|T037|PT|S90.454S|ICD10CM|Superficial foreign body, right lesser toe(s), sequela|Superficial foreign body, right lesser toe(s), sequela +C2866227|T037|AB|S90.455|ICD10CM|Superficial foreign body, left lesser toe(s)|Superficial foreign body, left lesser toe(s) +C2866227|T037|HT|S90.455|ICD10CM|Superficial foreign body, left lesser toe(s)|Superficial foreign body, left lesser toe(s) +C2866228|T037|AB|S90.455A|ICD10CM|Superficial foreign body, left lesser toe(s), init encntr|Superficial foreign body, left lesser toe(s), init encntr +C2866228|T037|PT|S90.455A|ICD10CM|Superficial foreign body, left lesser toe(s), initial encounter|Superficial foreign body, left lesser toe(s), initial encounter +C2866229|T037|AB|S90.455D|ICD10CM|Superficial foreign body, left lesser toe(s), subs encntr|Superficial foreign body, left lesser toe(s), subs encntr +C2866229|T037|PT|S90.455D|ICD10CM|Superficial foreign body, left lesser toe(s), subsequent encounter|Superficial foreign body, left lesser toe(s), subsequent encounter +C2866230|T037|AB|S90.455S|ICD10CM|Superficial foreign body, left lesser toe(s), sequela|Superficial foreign body, left lesser toe(s), sequela +C2866230|T037|PT|S90.455S|ICD10CM|Superficial foreign body, left lesser toe(s), sequela|Superficial foreign body, left lesser toe(s), sequela +C2866231|T037|AB|S90.456|ICD10CM|Superficial foreign body, unspecified lesser toe(s)|Superficial foreign body, unspecified lesser toe(s) +C2866231|T037|HT|S90.456|ICD10CM|Superficial foreign body, unspecified lesser toe(s)|Superficial foreign body, unspecified lesser toe(s) +C2866232|T037|AB|S90.456A|ICD10CM|Superficial foreign body, unsp lesser toe(s), init encntr|Superficial foreign body, unsp lesser toe(s), init encntr +C2866232|T037|PT|S90.456A|ICD10CM|Superficial foreign body, unspecified lesser toe(s), initial encounter|Superficial foreign body, unspecified lesser toe(s), initial encounter +C2866233|T037|AB|S90.456D|ICD10CM|Superficial foreign body, unsp lesser toe(s), subs encntr|Superficial foreign body, unsp lesser toe(s), subs encntr +C2866233|T037|PT|S90.456D|ICD10CM|Superficial foreign body, unspecified lesser toe(s), subsequent encounter|Superficial foreign body, unspecified lesser toe(s), subsequent encounter +C2866234|T037|AB|S90.456S|ICD10CM|Superficial foreign body, unspecified lesser toe(s), sequela|Superficial foreign body, unspecified lesser toe(s), sequela +C2866234|T037|PT|S90.456S|ICD10CM|Superficial foreign body, unspecified lesser toe(s), sequela|Superficial foreign body, unspecified lesser toe(s), sequela +C0433041|T037|AB|S90.46|ICD10CM|Insect bite (nonvenomous) of toe|Insect bite (nonvenomous) of toe +C0433041|T037|HT|S90.46|ICD10CM|Insect bite (nonvenomous) of toe|Insect bite (nonvenomous) of toe +C2866235|T037|AB|S90.461|ICD10CM|Insect bite (nonvenomous), right great toe|Insect bite (nonvenomous), right great toe +C2866235|T037|HT|S90.461|ICD10CM|Insect bite (nonvenomous), right great toe|Insect bite (nonvenomous), right great toe +C2866236|T037|AB|S90.461A|ICD10CM|Insect bite (nonvenomous), right great toe, init encntr|Insect bite (nonvenomous), right great toe, init encntr +C2866236|T037|PT|S90.461A|ICD10CM|Insect bite (nonvenomous), right great toe, initial encounter|Insect bite (nonvenomous), right great toe, initial encounter +C2866237|T037|AB|S90.461D|ICD10CM|Insect bite (nonvenomous), right great toe, subs encntr|Insect bite (nonvenomous), right great toe, subs encntr +C2866237|T037|PT|S90.461D|ICD10CM|Insect bite (nonvenomous), right great toe, subsequent encounter|Insect bite (nonvenomous), right great toe, subsequent encounter +C2866238|T037|AB|S90.461S|ICD10CM|Insect bite (nonvenomous), right great toe, sequela|Insect bite (nonvenomous), right great toe, sequela +C2866238|T037|PT|S90.461S|ICD10CM|Insect bite (nonvenomous), right great toe, sequela|Insect bite (nonvenomous), right great toe, sequela +C2866239|T037|AB|S90.462|ICD10CM|Insect bite (nonvenomous), left great toe|Insect bite (nonvenomous), left great toe +C2866239|T037|HT|S90.462|ICD10CM|Insect bite (nonvenomous), left great toe|Insect bite (nonvenomous), left great toe +C2866240|T037|AB|S90.462A|ICD10CM|Insect bite (nonvenomous), left great toe, initial encounter|Insect bite (nonvenomous), left great toe, initial encounter +C2866240|T037|PT|S90.462A|ICD10CM|Insect bite (nonvenomous), left great toe, initial encounter|Insect bite (nonvenomous), left great toe, initial encounter +C2866241|T037|AB|S90.462D|ICD10CM|Insect bite (nonvenomous), left great toe, subs encntr|Insect bite (nonvenomous), left great toe, subs encntr +C2866241|T037|PT|S90.462D|ICD10CM|Insect bite (nonvenomous), left great toe, subsequent encounter|Insect bite (nonvenomous), left great toe, subsequent encounter +C2866242|T037|AB|S90.462S|ICD10CM|Insect bite (nonvenomous), left great toe, sequela|Insect bite (nonvenomous), left great toe, sequela +C2866242|T037|PT|S90.462S|ICD10CM|Insect bite (nonvenomous), left great toe, sequela|Insect bite (nonvenomous), left great toe, sequela +C2866243|T037|AB|S90.463|ICD10CM|Insect bite (nonvenomous), unspecified great toe|Insect bite (nonvenomous), unspecified great toe +C2866243|T037|HT|S90.463|ICD10CM|Insect bite (nonvenomous), unspecified great toe|Insect bite (nonvenomous), unspecified great toe +C2866244|T037|AB|S90.463A|ICD10CM|Insect bite (nonvenomous), unsp great toe, init encntr|Insect bite (nonvenomous), unsp great toe, init encntr +C2866244|T037|PT|S90.463A|ICD10CM|Insect bite (nonvenomous), unspecified great toe, initial encounter|Insect bite (nonvenomous), unspecified great toe, initial encounter +C2866245|T037|AB|S90.463D|ICD10CM|Insect bite (nonvenomous), unsp great toe, subs encntr|Insect bite (nonvenomous), unsp great toe, subs encntr +C2866245|T037|PT|S90.463D|ICD10CM|Insect bite (nonvenomous), unspecified great toe, subsequent encounter|Insect bite (nonvenomous), unspecified great toe, subsequent encounter +C2866246|T037|AB|S90.463S|ICD10CM|Insect bite (nonvenomous), unspecified great toe, sequela|Insect bite (nonvenomous), unspecified great toe, sequela +C2866246|T037|PT|S90.463S|ICD10CM|Insect bite (nonvenomous), unspecified great toe, sequela|Insect bite (nonvenomous), unspecified great toe, sequela +C2866247|T037|AB|S90.464|ICD10CM|Insect bite (nonvenomous), right lesser toe(s)|Insect bite (nonvenomous), right lesser toe(s) +C2866247|T037|HT|S90.464|ICD10CM|Insect bite (nonvenomous), right lesser toe(s)|Insect bite (nonvenomous), right lesser toe(s) +C2866248|T037|AB|S90.464A|ICD10CM|Insect bite (nonvenomous), right lesser toe(s), init encntr|Insect bite (nonvenomous), right lesser toe(s), init encntr +C2866248|T037|PT|S90.464A|ICD10CM|Insect bite (nonvenomous), right lesser toe(s), initial encounter|Insect bite (nonvenomous), right lesser toe(s), initial encounter +C2866249|T037|AB|S90.464D|ICD10CM|Insect bite (nonvenomous), right lesser toe(s), subs encntr|Insect bite (nonvenomous), right lesser toe(s), subs encntr +C2866249|T037|PT|S90.464D|ICD10CM|Insect bite (nonvenomous), right lesser toe(s), subsequent encounter|Insect bite (nonvenomous), right lesser toe(s), subsequent encounter +C2866250|T037|AB|S90.464S|ICD10CM|Insect bite (nonvenomous), right lesser toe(s), sequela|Insect bite (nonvenomous), right lesser toe(s), sequela +C2866250|T037|PT|S90.464S|ICD10CM|Insect bite (nonvenomous), right lesser toe(s), sequela|Insect bite (nonvenomous), right lesser toe(s), sequela +C2866251|T037|AB|S90.465|ICD10CM|Insect bite (nonvenomous), left lesser toe(s)|Insect bite (nonvenomous), left lesser toe(s) +C2866251|T037|HT|S90.465|ICD10CM|Insect bite (nonvenomous), left lesser toe(s)|Insect bite (nonvenomous), left lesser toe(s) +C2866252|T037|AB|S90.465A|ICD10CM|Insect bite (nonvenomous), left lesser toe(s), init encntr|Insect bite (nonvenomous), left lesser toe(s), init encntr +C2866252|T037|PT|S90.465A|ICD10CM|Insect bite (nonvenomous), left lesser toe(s), initial encounter|Insect bite (nonvenomous), left lesser toe(s), initial encounter +C2866253|T037|AB|S90.465D|ICD10CM|Insect bite (nonvenomous), left lesser toe(s), subs encntr|Insect bite (nonvenomous), left lesser toe(s), subs encntr +C2866253|T037|PT|S90.465D|ICD10CM|Insect bite (nonvenomous), left lesser toe(s), subsequent encounter|Insect bite (nonvenomous), left lesser toe(s), subsequent encounter +C2866254|T037|AB|S90.465S|ICD10CM|Insect bite (nonvenomous), left lesser toe(s), sequela|Insect bite (nonvenomous), left lesser toe(s), sequela +C2866254|T037|PT|S90.465S|ICD10CM|Insect bite (nonvenomous), left lesser toe(s), sequela|Insect bite (nonvenomous), left lesser toe(s), sequela +C2866255|T037|AB|S90.466|ICD10CM|Insect bite (nonvenomous), unspecified lesser toe(s)|Insect bite (nonvenomous), unspecified lesser toe(s) +C2866255|T037|HT|S90.466|ICD10CM|Insect bite (nonvenomous), unspecified lesser toe(s)|Insect bite (nonvenomous), unspecified lesser toe(s) +C2866256|T037|AB|S90.466A|ICD10CM|Insect bite (nonvenomous), unsp lesser toe(s), init encntr|Insect bite (nonvenomous), unsp lesser toe(s), init encntr +C2866256|T037|PT|S90.466A|ICD10CM|Insect bite (nonvenomous), unspecified lesser toe(s), initial encounter|Insect bite (nonvenomous), unspecified lesser toe(s), initial encounter +C2866257|T037|AB|S90.466D|ICD10CM|Insect bite (nonvenomous), unsp lesser toe(s), subs encntr|Insect bite (nonvenomous), unsp lesser toe(s), subs encntr +C2866257|T037|PT|S90.466D|ICD10CM|Insect bite (nonvenomous), unspecified lesser toe(s), subsequent encounter|Insect bite (nonvenomous), unspecified lesser toe(s), subsequent encounter +C2866258|T037|AB|S90.466S|ICD10CM|Insect bite (nonvenomous), unsp lesser toe(s), sequela|Insect bite (nonvenomous), unsp lesser toe(s), sequela +C2866258|T037|PT|S90.466S|ICD10CM|Insect bite (nonvenomous), unspecified lesser toe(s), sequela|Insect bite (nonvenomous), unspecified lesser toe(s), sequela +C2866259|T037|AB|S90.47|ICD10CM|Other superficial bite of toe|Other superficial bite of toe +C2866259|T037|HT|S90.47|ICD10CM|Other superficial bite of toe|Other superficial bite of toe +C2866260|T037|AB|S90.471|ICD10CM|Other superficial bite of right great toe|Other superficial bite of right great toe +C2866260|T037|HT|S90.471|ICD10CM|Other superficial bite of right great toe|Other superficial bite of right great toe +C2866261|T037|AB|S90.471A|ICD10CM|Other superficial bite of right great toe, initial encounter|Other superficial bite of right great toe, initial encounter +C2866261|T037|PT|S90.471A|ICD10CM|Other superficial bite of right great toe, initial encounter|Other superficial bite of right great toe, initial encounter +C2866262|T037|AB|S90.471D|ICD10CM|Other superficial bite of right great toe, subs encntr|Other superficial bite of right great toe, subs encntr +C2866262|T037|PT|S90.471D|ICD10CM|Other superficial bite of right great toe, subsequent encounter|Other superficial bite of right great toe, subsequent encounter +C2866263|T037|AB|S90.471S|ICD10CM|Other superficial bite of right great toe, sequela|Other superficial bite of right great toe, sequela +C2866263|T037|PT|S90.471S|ICD10CM|Other superficial bite of right great toe, sequela|Other superficial bite of right great toe, sequela +C2866264|T037|AB|S90.472|ICD10CM|Other superficial bite of left great toe|Other superficial bite of left great toe +C2866264|T037|HT|S90.472|ICD10CM|Other superficial bite of left great toe|Other superficial bite of left great toe +C2866265|T037|AB|S90.472A|ICD10CM|Other superficial bite of left great toe, initial encounter|Other superficial bite of left great toe, initial encounter +C2866265|T037|PT|S90.472A|ICD10CM|Other superficial bite of left great toe, initial encounter|Other superficial bite of left great toe, initial encounter +C2866266|T037|AB|S90.472D|ICD10CM|Other superficial bite of left great toe, subs encntr|Other superficial bite of left great toe, subs encntr +C2866266|T037|PT|S90.472D|ICD10CM|Other superficial bite of left great toe, subsequent encounter|Other superficial bite of left great toe, subsequent encounter +C2866267|T037|AB|S90.472S|ICD10CM|Other superficial bite of left great toe, sequela|Other superficial bite of left great toe, sequela +C2866267|T037|PT|S90.472S|ICD10CM|Other superficial bite of left great toe, sequela|Other superficial bite of left great toe, sequela +C2866268|T037|AB|S90.473|ICD10CM|Other superficial bite of unspecified great toe|Other superficial bite of unspecified great toe +C2866268|T037|HT|S90.473|ICD10CM|Other superficial bite of unspecified great toe|Other superficial bite of unspecified great toe +C2866269|T037|AB|S90.473A|ICD10CM|Other superficial bite of unspecified great toe, init encntr|Other superficial bite of unspecified great toe, init encntr +C2866269|T037|PT|S90.473A|ICD10CM|Other superficial bite of unspecified great toe, initial encounter|Other superficial bite of unspecified great toe, initial encounter +C2866270|T037|AB|S90.473D|ICD10CM|Other superficial bite of unspecified great toe, subs encntr|Other superficial bite of unspecified great toe, subs encntr +C2866270|T037|PT|S90.473D|ICD10CM|Other superficial bite of unspecified great toe, subsequent encounter|Other superficial bite of unspecified great toe, subsequent encounter +C2866271|T037|AB|S90.473S|ICD10CM|Other superficial bite of unspecified great toe, sequela|Other superficial bite of unspecified great toe, sequela +C2866271|T037|PT|S90.473S|ICD10CM|Other superficial bite of unspecified great toe, sequela|Other superficial bite of unspecified great toe, sequela +C2866272|T037|AB|S90.474|ICD10CM|Other superficial bite of right lesser toe(s)|Other superficial bite of right lesser toe(s) +C2866272|T037|HT|S90.474|ICD10CM|Other superficial bite of right lesser toe(s)|Other superficial bite of right lesser toe(s) +C2866273|T037|AB|S90.474A|ICD10CM|Other superficial bite of right lesser toe(s), init encntr|Other superficial bite of right lesser toe(s), init encntr +C2866273|T037|PT|S90.474A|ICD10CM|Other superficial bite of right lesser toe(s), initial encounter|Other superficial bite of right lesser toe(s), initial encounter +C2866274|T037|AB|S90.474D|ICD10CM|Other superficial bite of right lesser toe(s), subs encntr|Other superficial bite of right lesser toe(s), subs encntr +C2866274|T037|PT|S90.474D|ICD10CM|Other superficial bite of right lesser toe(s), subsequent encounter|Other superficial bite of right lesser toe(s), subsequent encounter +C2866275|T037|AB|S90.474S|ICD10CM|Other superficial bite of right lesser toe(s), sequela|Other superficial bite of right lesser toe(s), sequela +C2866275|T037|PT|S90.474S|ICD10CM|Other superficial bite of right lesser toe(s), sequela|Other superficial bite of right lesser toe(s), sequela +C2866276|T037|AB|S90.475|ICD10CM|Other superficial bite of left lesser toe(s)|Other superficial bite of left lesser toe(s) +C2866276|T037|HT|S90.475|ICD10CM|Other superficial bite of left lesser toe(s)|Other superficial bite of left lesser toe(s) +C2866277|T037|AB|S90.475A|ICD10CM|Other superficial bite of left lesser toe(s), init encntr|Other superficial bite of left lesser toe(s), init encntr +C2866277|T037|PT|S90.475A|ICD10CM|Other superficial bite of left lesser toe(s), initial encounter|Other superficial bite of left lesser toe(s), initial encounter +C2866278|T037|AB|S90.475D|ICD10CM|Other superficial bite of left lesser toe(s), subs encntr|Other superficial bite of left lesser toe(s), subs encntr +C2866278|T037|PT|S90.475D|ICD10CM|Other superficial bite of left lesser toe(s), subsequent encounter|Other superficial bite of left lesser toe(s), subsequent encounter +C2866279|T037|AB|S90.475S|ICD10CM|Other superficial bite of left lesser toe(s), sequela|Other superficial bite of left lesser toe(s), sequela +C2866279|T037|PT|S90.475S|ICD10CM|Other superficial bite of left lesser toe(s), sequela|Other superficial bite of left lesser toe(s), sequela +C2866280|T037|AB|S90.476|ICD10CM|Other superficial bite of unspecified lesser toe(s)|Other superficial bite of unspecified lesser toe(s) +C2866280|T037|HT|S90.476|ICD10CM|Other superficial bite of unspecified lesser toe(s)|Other superficial bite of unspecified lesser toe(s) +C2866281|T037|AB|S90.476A|ICD10CM|Other superficial bite of unsp lesser toe(s), init encntr|Other superficial bite of unsp lesser toe(s), init encntr +C2866281|T037|PT|S90.476A|ICD10CM|Other superficial bite of unspecified lesser toe(s), initial encounter|Other superficial bite of unspecified lesser toe(s), initial encounter +C2866282|T037|AB|S90.476D|ICD10CM|Other superficial bite of unsp lesser toe(s), subs encntr|Other superficial bite of unsp lesser toe(s), subs encntr +C2866282|T037|PT|S90.476D|ICD10CM|Other superficial bite of unspecified lesser toe(s), subsequent encounter|Other superficial bite of unspecified lesser toe(s), subsequent encounter +C2866283|T037|AB|S90.476S|ICD10CM|Other superficial bite of unspecified lesser toe(s), sequela|Other superficial bite of unspecified lesser toe(s), sequela +C2866283|T037|PT|S90.476S|ICD10CM|Other superficial bite of unspecified lesser toe(s), sequela|Other superficial bite of unspecified lesser toe(s), sequela +C2866284|T037|AB|S90.5|ICD10CM|Other superficial injuries of ankle|Other superficial injuries of ankle +C2866284|T037|HT|S90.5|ICD10CM|Other superficial injuries of ankle|Other superficial injuries of ankle +C0432862|T037|AB|S90.51|ICD10CM|Abrasion of ankle|Abrasion of ankle +C0432862|T037|HT|S90.51|ICD10CM|Abrasion of ankle|Abrasion of ankle +C2004812|T037|AB|S90.511|ICD10CM|Abrasion, right ankle|Abrasion, right ankle +C2004812|T037|HT|S90.511|ICD10CM|Abrasion, right ankle|Abrasion, right ankle +C2866285|T037|AB|S90.511A|ICD10CM|Abrasion, right ankle, initial encounter|Abrasion, right ankle, initial encounter +C2866285|T037|PT|S90.511A|ICD10CM|Abrasion, right ankle, initial encounter|Abrasion, right ankle, initial encounter +C2866286|T037|AB|S90.511D|ICD10CM|Abrasion, right ankle, subsequent encounter|Abrasion, right ankle, subsequent encounter +C2866286|T037|PT|S90.511D|ICD10CM|Abrasion, right ankle, subsequent encounter|Abrasion, right ankle, subsequent encounter +C2866287|T037|AB|S90.511S|ICD10CM|Abrasion, right ankle, sequela|Abrasion, right ankle, sequela +C2866287|T037|PT|S90.511S|ICD10CM|Abrasion, right ankle, sequela|Abrasion, right ankle, sequela +C2004736|T037|AB|S90.512|ICD10CM|Abrasion, left ankle|Abrasion, left ankle +C2004736|T037|HT|S90.512|ICD10CM|Abrasion, left ankle|Abrasion, left ankle +C2866288|T037|AB|S90.512A|ICD10CM|Abrasion, left ankle, initial encounter|Abrasion, left ankle, initial encounter +C2866288|T037|PT|S90.512A|ICD10CM|Abrasion, left ankle, initial encounter|Abrasion, left ankle, initial encounter +C2866289|T037|AB|S90.512D|ICD10CM|Abrasion, left ankle, subsequent encounter|Abrasion, left ankle, subsequent encounter +C2866289|T037|PT|S90.512D|ICD10CM|Abrasion, left ankle, subsequent encounter|Abrasion, left ankle, subsequent encounter +C2866290|T037|AB|S90.512S|ICD10CM|Abrasion, left ankle, sequela|Abrasion, left ankle, sequela +C2866290|T037|PT|S90.512S|ICD10CM|Abrasion, left ankle, sequela|Abrasion, left ankle, sequela +C2866291|T037|AB|S90.519|ICD10CM|Abrasion, unspecified ankle|Abrasion, unspecified ankle +C2866291|T037|HT|S90.519|ICD10CM|Abrasion, unspecified ankle|Abrasion, unspecified ankle +C2866292|T037|AB|S90.519A|ICD10CM|Abrasion, unspecified ankle, initial encounter|Abrasion, unspecified ankle, initial encounter +C2866292|T037|PT|S90.519A|ICD10CM|Abrasion, unspecified ankle, initial encounter|Abrasion, unspecified ankle, initial encounter +C2866293|T037|AB|S90.519D|ICD10CM|Abrasion, unspecified ankle, subsequent encounter|Abrasion, unspecified ankle, subsequent encounter +C2866293|T037|PT|S90.519D|ICD10CM|Abrasion, unspecified ankle, subsequent encounter|Abrasion, unspecified ankle, subsequent encounter +C2866294|T037|AB|S90.519S|ICD10CM|Abrasion, unspecified ankle, sequela|Abrasion, unspecified ankle, sequela +C2866294|T037|PT|S90.519S|ICD10CM|Abrasion, unspecified ankle, sequela|Abrasion, unspecified ankle, sequela +C2866295|T037|AB|S90.52|ICD10CM|Blister (nonthermal) of ankle|Blister (nonthermal) of ankle +C2866295|T037|HT|S90.52|ICD10CM|Blister (nonthermal) of ankle|Blister (nonthermal) of ankle +C2866296|T037|AB|S90.521|ICD10CM|Blister (nonthermal), right ankle|Blister (nonthermal), right ankle +C2866296|T037|HT|S90.521|ICD10CM|Blister (nonthermal), right ankle|Blister (nonthermal), right ankle +C2866297|T037|AB|S90.521A|ICD10CM|Blister (nonthermal), right ankle, initial encounter|Blister (nonthermal), right ankle, initial encounter +C2866297|T037|PT|S90.521A|ICD10CM|Blister (nonthermal), right ankle, initial encounter|Blister (nonthermal), right ankle, initial encounter +C2866298|T037|AB|S90.521D|ICD10CM|Blister (nonthermal), right ankle, subsequent encounter|Blister (nonthermal), right ankle, subsequent encounter +C2866298|T037|PT|S90.521D|ICD10CM|Blister (nonthermal), right ankle, subsequent encounter|Blister (nonthermal), right ankle, subsequent encounter +C2866299|T037|AB|S90.521S|ICD10CM|Blister (nonthermal), right ankle, sequela|Blister (nonthermal), right ankle, sequela +C2866299|T037|PT|S90.521S|ICD10CM|Blister (nonthermal), right ankle, sequela|Blister (nonthermal), right ankle, sequela +C2866300|T037|AB|S90.522|ICD10CM|Blister (nonthermal), left ankle|Blister (nonthermal), left ankle +C2866300|T037|HT|S90.522|ICD10CM|Blister (nonthermal), left ankle|Blister (nonthermal), left ankle +C2866301|T037|AB|S90.522A|ICD10CM|Blister (nonthermal), left ankle, initial encounter|Blister (nonthermal), left ankle, initial encounter +C2866301|T037|PT|S90.522A|ICD10CM|Blister (nonthermal), left ankle, initial encounter|Blister (nonthermal), left ankle, initial encounter +C2866302|T037|AB|S90.522D|ICD10CM|Blister (nonthermal), left ankle, subsequent encounter|Blister (nonthermal), left ankle, subsequent encounter +C2866302|T037|PT|S90.522D|ICD10CM|Blister (nonthermal), left ankle, subsequent encounter|Blister (nonthermal), left ankle, subsequent encounter +C2866303|T037|AB|S90.522S|ICD10CM|Blister (nonthermal), left ankle, sequela|Blister (nonthermal), left ankle, sequela +C2866303|T037|PT|S90.522S|ICD10CM|Blister (nonthermal), left ankle, sequela|Blister (nonthermal), left ankle, sequela +C2866304|T037|AB|S90.529|ICD10CM|Blister (nonthermal), unspecified ankle|Blister (nonthermal), unspecified ankle +C2866304|T037|HT|S90.529|ICD10CM|Blister (nonthermal), unspecified ankle|Blister (nonthermal), unspecified ankle +C2866305|T037|AB|S90.529A|ICD10CM|Blister (nonthermal), unspecified ankle, initial encounter|Blister (nonthermal), unspecified ankle, initial encounter +C2866305|T037|PT|S90.529A|ICD10CM|Blister (nonthermal), unspecified ankle, initial encounter|Blister (nonthermal), unspecified ankle, initial encounter +C2866306|T037|AB|S90.529D|ICD10CM|Blister (nonthermal), unspecified ankle, subs encntr|Blister (nonthermal), unspecified ankle, subs encntr +C2866306|T037|PT|S90.529D|ICD10CM|Blister (nonthermal), unspecified ankle, subsequent encounter|Blister (nonthermal), unspecified ankle, subsequent encounter +C2866307|T037|AB|S90.529S|ICD10CM|Blister (nonthermal), unspecified ankle, sequela|Blister (nonthermal), unspecified ankle, sequela +C2866307|T037|PT|S90.529S|ICD10CM|Blister (nonthermal), unspecified ankle, sequela|Blister (nonthermal), unspecified ankle, sequela +C2866308|T037|HT|S90.54|ICD10CM|External constriction of ankle|External constriction of ankle +C2866308|T037|AB|S90.54|ICD10CM|External constriction of ankle|External constriction of ankle +C2866309|T037|AB|S90.541|ICD10CM|External constriction, right ankle|External constriction, right ankle +C2866309|T037|HT|S90.541|ICD10CM|External constriction, right ankle|External constriction, right ankle +C2866310|T037|AB|S90.541A|ICD10CM|External constriction, right ankle, initial encounter|External constriction, right ankle, initial encounter +C2866310|T037|PT|S90.541A|ICD10CM|External constriction, right ankle, initial encounter|External constriction, right ankle, initial encounter +C2866311|T037|AB|S90.541D|ICD10CM|External constriction, right ankle, subsequent encounter|External constriction, right ankle, subsequent encounter +C2866311|T037|PT|S90.541D|ICD10CM|External constriction, right ankle, subsequent encounter|External constriction, right ankle, subsequent encounter +C2866312|T037|AB|S90.541S|ICD10CM|External constriction, right ankle, sequela|External constriction, right ankle, sequela +C2866312|T037|PT|S90.541S|ICD10CM|External constriction, right ankle, sequela|External constriction, right ankle, sequela +C2866313|T037|AB|S90.542|ICD10CM|External constriction, left ankle|External constriction, left ankle +C2866313|T037|HT|S90.542|ICD10CM|External constriction, left ankle|External constriction, left ankle +C2866314|T037|AB|S90.542A|ICD10CM|External constriction, left ankle, initial encounter|External constriction, left ankle, initial encounter +C2866314|T037|PT|S90.542A|ICD10CM|External constriction, left ankle, initial encounter|External constriction, left ankle, initial encounter +C2866315|T037|AB|S90.542D|ICD10CM|External constriction, left ankle, subsequent encounter|External constriction, left ankle, subsequent encounter +C2866315|T037|PT|S90.542D|ICD10CM|External constriction, left ankle, subsequent encounter|External constriction, left ankle, subsequent encounter +C2866316|T037|AB|S90.542S|ICD10CM|External constriction, left ankle, sequela|External constriction, left ankle, sequela +C2866316|T037|PT|S90.542S|ICD10CM|External constriction, left ankle, sequela|External constriction, left ankle, sequela +C2866317|T037|AB|S90.549|ICD10CM|External constriction, unspecified ankle|External constriction, unspecified ankle +C2866317|T037|HT|S90.549|ICD10CM|External constriction, unspecified ankle|External constriction, unspecified ankle +C2866318|T037|AB|S90.549A|ICD10CM|External constriction, unspecified ankle, initial encounter|External constriction, unspecified ankle, initial encounter +C2866318|T037|PT|S90.549A|ICD10CM|External constriction, unspecified ankle, initial encounter|External constriction, unspecified ankle, initial encounter +C2866319|T037|AB|S90.549D|ICD10CM|External constriction, unspecified ankle, subs encntr|External constriction, unspecified ankle, subs encntr +C2866319|T037|PT|S90.549D|ICD10CM|External constriction, unspecified ankle, subsequent encounter|External constriction, unspecified ankle, subsequent encounter +C2866320|T037|AB|S90.549S|ICD10CM|External constriction, unspecified ankle, sequela|External constriction, unspecified ankle, sequela +C2866320|T037|PT|S90.549S|ICD10CM|External constriction, unspecified ankle, sequela|External constriction, unspecified ankle, sequela +C2018792|T037|ET|S90.55|ICD10CM|Splinter in the ankle|Splinter in the ankle +C2037280|T037|AB|S90.55|ICD10CM|Superficial foreign body of ankle|Superficial foreign body of ankle +C2037280|T037|HT|S90.55|ICD10CM|Superficial foreign body of ankle|Superficial foreign body of ankle +C2866321|T037|AB|S90.551|ICD10CM|Superficial foreign body, right ankle|Superficial foreign body, right ankle +C2866321|T037|HT|S90.551|ICD10CM|Superficial foreign body, right ankle|Superficial foreign body, right ankle +C2866322|T037|AB|S90.551A|ICD10CM|Superficial foreign body, right ankle, initial encounter|Superficial foreign body, right ankle, initial encounter +C2866322|T037|PT|S90.551A|ICD10CM|Superficial foreign body, right ankle, initial encounter|Superficial foreign body, right ankle, initial encounter +C2866323|T037|AB|S90.551D|ICD10CM|Superficial foreign body, right ankle, subsequent encounter|Superficial foreign body, right ankle, subsequent encounter +C2866323|T037|PT|S90.551D|ICD10CM|Superficial foreign body, right ankle, subsequent encounter|Superficial foreign body, right ankle, subsequent encounter +C2866324|T037|AB|S90.551S|ICD10CM|Superficial foreign body, right ankle, sequela|Superficial foreign body, right ankle, sequela +C2866324|T037|PT|S90.551S|ICD10CM|Superficial foreign body, right ankle, sequela|Superficial foreign body, right ankle, sequela +C2866325|T037|AB|S90.552|ICD10CM|Superficial foreign body, left ankle|Superficial foreign body, left ankle +C2866325|T037|HT|S90.552|ICD10CM|Superficial foreign body, left ankle|Superficial foreign body, left ankle +C2866326|T037|AB|S90.552A|ICD10CM|Superficial foreign body, left ankle, initial encounter|Superficial foreign body, left ankle, initial encounter +C2866326|T037|PT|S90.552A|ICD10CM|Superficial foreign body, left ankle, initial encounter|Superficial foreign body, left ankle, initial encounter +C2866327|T037|AB|S90.552D|ICD10CM|Superficial foreign body, left ankle, subsequent encounter|Superficial foreign body, left ankle, subsequent encounter +C2866327|T037|PT|S90.552D|ICD10CM|Superficial foreign body, left ankle, subsequent encounter|Superficial foreign body, left ankle, subsequent encounter +C2866328|T037|AB|S90.552S|ICD10CM|Superficial foreign body, left ankle, sequela|Superficial foreign body, left ankle, sequela +C2866328|T037|PT|S90.552S|ICD10CM|Superficial foreign body, left ankle, sequela|Superficial foreign body, left ankle, sequela +C2866329|T037|AB|S90.559|ICD10CM|Superficial foreign body, unspecified ankle|Superficial foreign body, unspecified ankle +C2866329|T037|HT|S90.559|ICD10CM|Superficial foreign body, unspecified ankle|Superficial foreign body, unspecified ankle +C2866330|T037|AB|S90.559A|ICD10CM|Superficial foreign body, unspecified ankle, init encntr|Superficial foreign body, unspecified ankle, init encntr +C2866330|T037|PT|S90.559A|ICD10CM|Superficial foreign body, unspecified ankle, initial encounter|Superficial foreign body, unspecified ankle, initial encounter +C2866331|T037|AB|S90.559D|ICD10CM|Superficial foreign body, unspecified ankle, subs encntr|Superficial foreign body, unspecified ankle, subs encntr +C2866331|T037|PT|S90.559D|ICD10CM|Superficial foreign body, unspecified ankle, subsequent encounter|Superficial foreign body, unspecified ankle, subsequent encounter +C2866332|T037|AB|S90.559S|ICD10CM|Superficial foreign body, unspecified ankle, sequela|Superficial foreign body, unspecified ankle, sequela +C2866332|T037|PT|S90.559S|ICD10CM|Superficial foreign body, unspecified ankle, sequela|Superficial foreign body, unspecified ankle, sequela +C0433038|T037|AB|S90.56|ICD10CM|Insect bite (nonvenomous) of ankle|Insect bite (nonvenomous) of ankle +C0433038|T037|HT|S90.56|ICD10CM|Insect bite (nonvenomous) of ankle|Insect bite (nonvenomous) of ankle +C2231598|T037|AB|S90.561|ICD10CM|Insect bite (nonvenomous), right ankle|Insect bite (nonvenomous), right ankle +C2231598|T037|HT|S90.561|ICD10CM|Insect bite (nonvenomous), right ankle|Insect bite (nonvenomous), right ankle +C2866333|T037|AB|S90.561A|ICD10CM|Insect bite (nonvenomous), right ankle, initial encounter|Insect bite (nonvenomous), right ankle, initial encounter +C2866333|T037|PT|S90.561A|ICD10CM|Insect bite (nonvenomous), right ankle, initial encounter|Insect bite (nonvenomous), right ankle, initial encounter +C2866334|T037|AB|S90.561D|ICD10CM|Insect bite (nonvenomous), right ankle, subsequent encounter|Insect bite (nonvenomous), right ankle, subsequent encounter +C2866334|T037|PT|S90.561D|ICD10CM|Insect bite (nonvenomous), right ankle, subsequent encounter|Insect bite (nonvenomous), right ankle, subsequent encounter +C2866335|T037|AB|S90.561S|ICD10CM|Insect bite (nonvenomous), right ankle, sequela|Insect bite (nonvenomous), right ankle, sequela +C2866335|T037|PT|S90.561S|ICD10CM|Insect bite (nonvenomous), right ankle, sequela|Insect bite (nonvenomous), right ankle, sequela +C2231599|T037|AB|S90.562|ICD10CM|Insect bite (nonvenomous), left ankle|Insect bite (nonvenomous), left ankle +C2231599|T037|HT|S90.562|ICD10CM|Insect bite (nonvenomous), left ankle|Insect bite (nonvenomous), left ankle +C2866336|T037|AB|S90.562A|ICD10CM|Insect bite (nonvenomous), left ankle, initial encounter|Insect bite (nonvenomous), left ankle, initial encounter +C2866336|T037|PT|S90.562A|ICD10CM|Insect bite (nonvenomous), left ankle, initial encounter|Insect bite (nonvenomous), left ankle, initial encounter +C2866337|T037|AB|S90.562D|ICD10CM|Insect bite (nonvenomous), left ankle, subsequent encounter|Insect bite (nonvenomous), left ankle, subsequent encounter +C2866337|T037|PT|S90.562D|ICD10CM|Insect bite (nonvenomous), left ankle, subsequent encounter|Insect bite (nonvenomous), left ankle, subsequent encounter +C2866338|T037|AB|S90.562S|ICD10CM|Insect bite (nonvenomous), left ankle, sequela|Insect bite (nonvenomous), left ankle, sequela +C2866338|T037|PT|S90.562S|ICD10CM|Insect bite (nonvenomous), left ankle, sequela|Insect bite (nonvenomous), left ankle, sequela +C2866339|T037|AB|S90.569|ICD10CM|Insect bite (nonvenomous), unspecified ankle|Insect bite (nonvenomous), unspecified ankle +C2866339|T037|HT|S90.569|ICD10CM|Insect bite (nonvenomous), unspecified ankle|Insect bite (nonvenomous), unspecified ankle +C2866340|T037|AB|S90.569A|ICD10CM|Insect bite (nonvenomous), unspecified ankle, init encntr|Insect bite (nonvenomous), unspecified ankle, init encntr +C2866340|T037|PT|S90.569A|ICD10CM|Insect bite (nonvenomous), unspecified ankle, initial encounter|Insect bite (nonvenomous), unspecified ankle, initial encounter +C2866341|T037|AB|S90.569D|ICD10CM|Insect bite (nonvenomous), unspecified ankle, subs encntr|Insect bite (nonvenomous), unspecified ankle, subs encntr +C2866341|T037|PT|S90.569D|ICD10CM|Insect bite (nonvenomous), unspecified ankle, subsequent encounter|Insect bite (nonvenomous), unspecified ankle, subsequent encounter +C2866342|T037|AB|S90.569S|ICD10CM|Insect bite (nonvenomous), unspecified ankle, sequela|Insect bite (nonvenomous), unspecified ankle, sequela +C2866342|T037|PT|S90.569S|ICD10CM|Insect bite (nonvenomous), unspecified ankle, sequela|Insect bite (nonvenomous), unspecified ankle, sequela +C2866343|T037|AB|S90.57|ICD10CM|Other superficial bite of ankle|Other superficial bite of ankle +C2866343|T037|HT|S90.57|ICD10CM|Other superficial bite of ankle|Other superficial bite of ankle +C2866344|T037|AB|S90.571|ICD10CM|Other superficial bite of ankle, right ankle|Other superficial bite of ankle, right ankle +C2866344|T037|HT|S90.571|ICD10CM|Other superficial bite of ankle, right ankle|Other superficial bite of ankle, right ankle +C2866345|T037|AB|S90.571A|ICD10CM|Other superficial bite of ankle, right ankle, init encntr|Other superficial bite of ankle, right ankle, init encntr +C2866345|T037|PT|S90.571A|ICD10CM|Other superficial bite of ankle, right ankle, initial encounter|Other superficial bite of ankle, right ankle, initial encounter +C2866346|T037|AB|S90.571D|ICD10CM|Other superficial bite of ankle, right ankle, subs encntr|Other superficial bite of ankle, right ankle, subs encntr +C2866346|T037|PT|S90.571D|ICD10CM|Other superficial bite of ankle, right ankle, subsequent encounter|Other superficial bite of ankle, right ankle, subsequent encounter +C2866347|T037|AB|S90.571S|ICD10CM|Other superficial bite of ankle, right ankle, sequela|Other superficial bite of ankle, right ankle, sequela +C2866347|T037|PT|S90.571S|ICD10CM|Other superficial bite of ankle, right ankle, sequela|Other superficial bite of ankle, right ankle, sequela +C2866348|T037|AB|S90.572|ICD10CM|Other superficial bite of ankle, left ankle|Other superficial bite of ankle, left ankle +C2866348|T037|HT|S90.572|ICD10CM|Other superficial bite of ankle, left ankle|Other superficial bite of ankle, left ankle +C2866349|T037|AB|S90.572A|ICD10CM|Other superficial bite of ankle, left ankle, init encntr|Other superficial bite of ankle, left ankle, init encntr +C2866349|T037|PT|S90.572A|ICD10CM|Other superficial bite of ankle, left ankle, initial encounter|Other superficial bite of ankle, left ankle, initial encounter +C2866350|T037|AB|S90.572D|ICD10CM|Other superficial bite of ankle, left ankle, subs encntr|Other superficial bite of ankle, left ankle, subs encntr +C2866350|T037|PT|S90.572D|ICD10CM|Other superficial bite of ankle, left ankle, subsequent encounter|Other superficial bite of ankle, left ankle, subsequent encounter +C2866351|T037|AB|S90.572S|ICD10CM|Other superficial bite of ankle, left ankle, sequela|Other superficial bite of ankle, left ankle, sequela +C2866351|T037|PT|S90.572S|ICD10CM|Other superficial bite of ankle, left ankle, sequela|Other superficial bite of ankle, left ankle, sequela +C2866352|T037|AB|S90.579|ICD10CM|Other superficial bite of ankle, unspecified ankle|Other superficial bite of ankle, unspecified ankle +C2866352|T037|HT|S90.579|ICD10CM|Other superficial bite of ankle, unspecified ankle|Other superficial bite of ankle, unspecified ankle +C2866353|T037|AB|S90.579A|ICD10CM|Other superficial bite of ankle, unsp ankle, init encntr|Other superficial bite of ankle, unsp ankle, init encntr +C2866353|T037|PT|S90.579A|ICD10CM|Other superficial bite of ankle, unspecified ankle, initial encounter|Other superficial bite of ankle, unspecified ankle, initial encounter +C2866354|T037|AB|S90.579D|ICD10CM|Other superficial bite of ankle, unsp ankle, subs encntr|Other superficial bite of ankle, unsp ankle, subs encntr +C2866354|T037|PT|S90.579D|ICD10CM|Other superficial bite of ankle, unspecified ankle, subsequent encounter|Other superficial bite of ankle, unspecified ankle, subsequent encounter +C2866355|T037|AB|S90.579S|ICD10CM|Other superficial bite of ankle, unspecified ankle, sequela|Other superficial bite of ankle, unspecified ankle, sequela +C2866355|T037|PT|S90.579S|ICD10CM|Other superficial bite of ankle, unspecified ankle, sequela|Other superficial bite of ankle, unspecified ankle, sequela +C0451965|T037|PT|S90.7|ICD10|Multiple superficial injuries of ankle and foot|Multiple superficial injuries of ankle and foot +C0495961|T037|PT|S90.8|ICD10|Other superficial injuries of ankle and foot|Other superficial injuries of ankle and foot +C2866356|T037|AB|S90.8|ICD10CM|Other superficial injuries of foot|Other superficial injuries of foot +C2866356|T037|HT|S90.8|ICD10CM|Other superficial injuries of foot|Other superficial injuries of foot +C0432870|T037|HT|S90.81|ICD10CM|Abrasion of foot|Abrasion of foot +C0432870|T037|AB|S90.81|ICD10CM|Abrasion of foot|Abrasion of foot +C2041973|T037|AB|S90.811|ICD10CM|Abrasion, right foot|Abrasion, right foot +C2041973|T037|HT|S90.811|ICD10CM|Abrasion, right foot|Abrasion, right foot +C2866357|T037|AB|S90.811A|ICD10CM|Abrasion, right foot, initial encounter|Abrasion, right foot, initial encounter +C2866357|T037|PT|S90.811A|ICD10CM|Abrasion, right foot, initial encounter|Abrasion, right foot, initial encounter +C2866358|T037|AB|S90.811D|ICD10CM|Abrasion, right foot, subsequent encounter|Abrasion, right foot, subsequent encounter +C2866358|T037|PT|S90.811D|ICD10CM|Abrasion, right foot, subsequent encounter|Abrasion, right foot, subsequent encounter +C2866359|T037|AB|S90.811S|ICD10CM|Abrasion, right foot, sequela|Abrasion, right foot, sequela +C2866359|T037|PT|S90.811S|ICD10CM|Abrasion, right foot, sequela|Abrasion, right foot, sequela +C2004758|T037|AB|S90.812|ICD10CM|Abrasion, left foot|Abrasion, left foot +C2004758|T037|HT|S90.812|ICD10CM|Abrasion, left foot|Abrasion, left foot +C2866360|T037|AB|S90.812A|ICD10CM|Abrasion, left foot, initial encounter|Abrasion, left foot, initial encounter +C2866360|T037|PT|S90.812A|ICD10CM|Abrasion, left foot, initial encounter|Abrasion, left foot, initial encounter +C2866361|T037|AB|S90.812D|ICD10CM|Abrasion, left foot, subsequent encounter|Abrasion, left foot, subsequent encounter +C2866361|T037|PT|S90.812D|ICD10CM|Abrasion, left foot, subsequent encounter|Abrasion, left foot, subsequent encounter +C2866362|T037|AB|S90.812S|ICD10CM|Abrasion, left foot, sequela|Abrasion, left foot, sequela +C2866362|T037|PT|S90.812S|ICD10CM|Abrasion, left foot, sequela|Abrasion, left foot, sequela +C2866363|T037|AB|S90.819|ICD10CM|Abrasion, unspecified foot|Abrasion, unspecified foot +C2866363|T037|HT|S90.819|ICD10CM|Abrasion, unspecified foot|Abrasion, unspecified foot +C2866364|T037|AB|S90.819A|ICD10CM|Abrasion, unspecified foot, initial encounter|Abrasion, unspecified foot, initial encounter +C2866364|T037|PT|S90.819A|ICD10CM|Abrasion, unspecified foot, initial encounter|Abrasion, unspecified foot, initial encounter +C2866365|T037|AB|S90.819D|ICD10CM|Abrasion, unspecified foot, subsequent encounter|Abrasion, unspecified foot, subsequent encounter +C2866365|T037|PT|S90.819D|ICD10CM|Abrasion, unspecified foot, subsequent encounter|Abrasion, unspecified foot, subsequent encounter +C2866366|T037|AB|S90.819S|ICD10CM|Abrasion, unspecified foot, sequela|Abrasion, unspecified foot, sequela +C2866366|T037|PT|S90.819S|ICD10CM|Abrasion, unspecified foot, sequela|Abrasion, unspecified foot, sequela +C2866367|T037|AB|S90.82|ICD10CM|Blister (nonthermal) of foot|Blister (nonthermal) of foot +C2866367|T037|HT|S90.82|ICD10CM|Blister (nonthermal) of foot|Blister (nonthermal) of foot +C2866368|T037|AB|S90.821|ICD10CM|Blister (nonthermal), right foot|Blister (nonthermal), right foot +C2866368|T037|HT|S90.821|ICD10CM|Blister (nonthermal), right foot|Blister (nonthermal), right foot +C2866369|T037|AB|S90.821A|ICD10CM|Blister (nonthermal), right foot, initial encounter|Blister (nonthermal), right foot, initial encounter +C2866369|T037|PT|S90.821A|ICD10CM|Blister (nonthermal), right foot, initial encounter|Blister (nonthermal), right foot, initial encounter +C2866370|T037|AB|S90.821D|ICD10CM|Blister (nonthermal), right foot, subsequent encounter|Blister (nonthermal), right foot, subsequent encounter +C2866370|T037|PT|S90.821D|ICD10CM|Blister (nonthermal), right foot, subsequent encounter|Blister (nonthermal), right foot, subsequent encounter +C2866371|T037|AB|S90.821S|ICD10CM|Blister (nonthermal), right foot, sequela|Blister (nonthermal), right foot, sequela +C2866371|T037|PT|S90.821S|ICD10CM|Blister (nonthermal), right foot, sequela|Blister (nonthermal), right foot, sequela +C2866372|T037|AB|S90.822|ICD10CM|Blister (nonthermal), left foot|Blister (nonthermal), left foot +C2866372|T037|HT|S90.822|ICD10CM|Blister (nonthermal), left foot|Blister (nonthermal), left foot +C2866373|T037|AB|S90.822A|ICD10CM|Blister (nonthermal), left foot, initial encounter|Blister (nonthermal), left foot, initial encounter +C2866373|T037|PT|S90.822A|ICD10CM|Blister (nonthermal), left foot, initial encounter|Blister (nonthermal), left foot, initial encounter +C2866374|T037|AB|S90.822D|ICD10CM|Blister (nonthermal), left foot, subsequent encounter|Blister (nonthermal), left foot, subsequent encounter +C2866374|T037|PT|S90.822D|ICD10CM|Blister (nonthermal), left foot, subsequent encounter|Blister (nonthermal), left foot, subsequent encounter +C2866375|T037|AB|S90.822S|ICD10CM|Blister (nonthermal), left foot, sequela|Blister (nonthermal), left foot, sequela +C2866375|T037|PT|S90.822S|ICD10CM|Blister (nonthermal), left foot, sequela|Blister (nonthermal), left foot, sequela +C2866376|T037|AB|S90.829|ICD10CM|Blister (nonthermal), unspecified foot|Blister (nonthermal), unspecified foot +C2866376|T037|HT|S90.829|ICD10CM|Blister (nonthermal), unspecified foot|Blister (nonthermal), unspecified foot +C2866377|T037|AB|S90.829A|ICD10CM|Blister (nonthermal), unspecified foot, initial encounter|Blister (nonthermal), unspecified foot, initial encounter +C2866377|T037|PT|S90.829A|ICD10CM|Blister (nonthermal), unspecified foot, initial encounter|Blister (nonthermal), unspecified foot, initial encounter +C2866378|T037|AB|S90.829D|ICD10CM|Blister (nonthermal), unspecified foot, subsequent encounter|Blister (nonthermal), unspecified foot, subsequent encounter +C2866378|T037|PT|S90.829D|ICD10CM|Blister (nonthermal), unspecified foot, subsequent encounter|Blister (nonthermal), unspecified foot, subsequent encounter +C2866379|T037|AB|S90.829S|ICD10CM|Blister (nonthermal), unspecified foot, sequela|Blister (nonthermal), unspecified foot, sequela +C2866379|T037|PT|S90.829S|ICD10CM|Blister (nonthermal), unspecified foot, sequela|Blister (nonthermal), unspecified foot, sequela +C2866380|T037|HT|S90.84|ICD10CM|External constriction of foot|External constriction of foot +C2866380|T037|AB|S90.84|ICD10CM|External constriction of foot|External constriction of foot +C2866381|T037|AB|S90.841|ICD10CM|External constriction, right foot|External constriction, right foot +C2866381|T037|HT|S90.841|ICD10CM|External constriction, right foot|External constriction, right foot +C2866382|T037|AB|S90.841A|ICD10CM|External constriction, right foot, initial encounter|External constriction, right foot, initial encounter +C2866382|T037|PT|S90.841A|ICD10CM|External constriction, right foot, initial encounter|External constriction, right foot, initial encounter +C2866383|T037|AB|S90.841D|ICD10CM|External constriction, right foot, subsequent encounter|External constriction, right foot, subsequent encounter +C2866383|T037|PT|S90.841D|ICD10CM|External constriction, right foot, subsequent encounter|External constriction, right foot, subsequent encounter +C2866384|T037|AB|S90.841S|ICD10CM|External constriction, right foot, sequela|External constriction, right foot, sequela +C2866384|T037|PT|S90.841S|ICD10CM|External constriction, right foot, sequela|External constriction, right foot, sequela +C2866385|T037|AB|S90.842|ICD10CM|External constriction, left foot|External constriction, left foot +C2866385|T037|HT|S90.842|ICD10CM|External constriction, left foot|External constriction, left foot +C2866386|T037|AB|S90.842A|ICD10CM|External constriction, left foot, initial encounter|External constriction, left foot, initial encounter +C2866386|T037|PT|S90.842A|ICD10CM|External constriction, left foot, initial encounter|External constriction, left foot, initial encounter +C2866387|T037|AB|S90.842D|ICD10CM|External constriction, left foot, subsequent encounter|External constriction, left foot, subsequent encounter +C2866387|T037|PT|S90.842D|ICD10CM|External constriction, left foot, subsequent encounter|External constriction, left foot, subsequent encounter +C2866388|T037|AB|S90.842S|ICD10CM|External constriction, left foot, sequela|External constriction, left foot, sequela +C2866388|T037|PT|S90.842S|ICD10CM|External constriction, left foot, sequela|External constriction, left foot, sequela +C2866389|T037|AB|S90.849|ICD10CM|External constriction, unspecified foot|External constriction, unspecified foot +C2866389|T037|HT|S90.849|ICD10CM|External constriction, unspecified foot|External constriction, unspecified foot +C2866390|T037|AB|S90.849A|ICD10CM|External constriction, unspecified foot, initial encounter|External constriction, unspecified foot, initial encounter +C2866390|T037|PT|S90.849A|ICD10CM|External constriction, unspecified foot, initial encounter|External constriction, unspecified foot, initial encounter +C2866391|T037|AB|S90.849D|ICD10CM|External constriction, unspecified foot, subs encntr|External constriction, unspecified foot, subs encntr +C2866391|T037|PT|S90.849D|ICD10CM|External constriction, unspecified foot, subsequent encounter|External constriction, unspecified foot, subsequent encounter +C2866392|T037|AB|S90.849S|ICD10CM|External constriction, unspecified foot, sequela|External constriction, unspecified foot, sequela +C2866392|T037|PT|S90.849S|ICD10CM|External constriction, unspecified foot, sequela|External constriction, unspecified foot, sequela +C0564879|T037|ET|S90.85|ICD10CM|Splinter in the foot|Splinter in the foot +C2866393|T037|AB|S90.85|ICD10CM|Superficial foreign body of foot|Superficial foreign body of foot +C2866393|T037|HT|S90.85|ICD10CM|Superficial foreign body of foot|Superficial foreign body of foot +C2866394|T037|AB|S90.851|ICD10CM|Superficial foreign body, right foot|Superficial foreign body, right foot +C2866394|T037|HT|S90.851|ICD10CM|Superficial foreign body, right foot|Superficial foreign body, right foot +C2866395|T037|AB|S90.851A|ICD10CM|Superficial foreign body, right foot, initial encounter|Superficial foreign body, right foot, initial encounter +C2866395|T037|PT|S90.851A|ICD10CM|Superficial foreign body, right foot, initial encounter|Superficial foreign body, right foot, initial encounter +C2866396|T037|AB|S90.851D|ICD10CM|Superficial foreign body, right foot, subsequent encounter|Superficial foreign body, right foot, subsequent encounter +C2866396|T037|PT|S90.851D|ICD10CM|Superficial foreign body, right foot, subsequent encounter|Superficial foreign body, right foot, subsequent encounter +C2866397|T037|AB|S90.851S|ICD10CM|Superficial foreign body, right foot, sequela|Superficial foreign body, right foot, sequela +C2866397|T037|PT|S90.851S|ICD10CM|Superficial foreign body, right foot, sequela|Superficial foreign body, right foot, sequela +C2866398|T037|AB|S90.852|ICD10CM|Superficial foreign body, left foot|Superficial foreign body, left foot +C2866398|T037|HT|S90.852|ICD10CM|Superficial foreign body, left foot|Superficial foreign body, left foot +C2866399|T037|AB|S90.852A|ICD10CM|Superficial foreign body, left foot, initial encounter|Superficial foreign body, left foot, initial encounter +C2866399|T037|PT|S90.852A|ICD10CM|Superficial foreign body, left foot, initial encounter|Superficial foreign body, left foot, initial encounter +C2866400|T037|AB|S90.852D|ICD10CM|Superficial foreign body, left foot, subsequent encounter|Superficial foreign body, left foot, subsequent encounter +C2866400|T037|PT|S90.852D|ICD10CM|Superficial foreign body, left foot, subsequent encounter|Superficial foreign body, left foot, subsequent encounter +C2866401|T037|AB|S90.852S|ICD10CM|Superficial foreign body, left foot, sequela|Superficial foreign body, left foot, sequela +C2866401|T037|PT|S90.852S|ICD10CM|Superficial foreign body, left foot, sequela|Superficial foreign body, left foot, sequela +C2866402|T037|AB|S90.859|ICD10CM|Superficial foreign body, unspecified foot|Superficial foreign body, unspecified foot +C2866402|T037|HT|S90.859|ICD10CM|Superficial foreign body, unspecified foot|Superficial foreign body, unspecified foot +C2866403|T037|AB|S90.859A|ICD10CM|Superficial foreign body, unspecified foot, init encntr|Superficial foreign body, unspecified foot, init encntr +C2866403|T037|PT|S90.859A|ICD10CM|Superficial foreign body, unspecified foot, initial encounter|Superficial foreign body, unspecified foot, initial encounter +C2866404|T037|AB|S90.859D|ICD10CM|Superficial foreign body, unspecified foot, subs encntr|Superficial foreign body, unspecified foot, subs encntr +C2866404|T037|PT|S90.859D|ICD10CM|Superficial foreign body, unspecified foot, subsequent encounter|Superficial foreign body, unspecified foot, subsequent encounter +C2866405|T037|AB|S90.859S|ICD10CM|Superficial foreign body, unspecified foot, sequela|Superficial foreign body, unspecified foot, sequela +C2866405|T037|PT|S90.859S|ICD10CM|Superficial foreign body, unspecified foot, sequela|Superficial foreign body, unspecified foot, sequela +C0433040|T037|AB|S90.86|ICD10CM|Insect bite (nonvenomous) of foot|Insect bite (nonvenomous) of foot +C0433040|T037|HT|S90.86|ICD10CM|Insect bite (nonvenomous) of foot|Insect bite (nonvenomous) of foot +C2231602|T037|AB|S90.861|ICD10CM|Insect bite (nonvenomous), right foot|Insect bite (nonvenomous), right foot +C2231602|T037|HT|S90.861|ICD10CM|Insect bite (nonvenomous), right foot|Insect bite (nonvenomous), right foot +C2866406|T037|AB|S90.861A|ICD10CM|Insect bite (nonvenomous), right foot, initial encounter|Insect bite (nonvenomous), right foot, initial encounter +C2866406|T037|PT|S90.861A|ICD10CM|Insect bite (nonvenomous), right foot, initial encounter|Insect bite (nonvenomous), right foot, initial encounter +C2866407|T037|AB|S90.861D|ICD10CM|Insect bite (nonvenomous), right foot, subsequent encounter|Insect bite (nonvenomous), right foot, subsequent encounter +C2866407|T037|PT|S90.861D|ICD10CM|Insect bite (nonvenomous), right foot, subsequent encounter|Insect bite (nonvenomous), right foot, subsequent encounter +C2866408|T037|AB|S90.861S|ICD10CM|Insect bite (nonvenomous), right foot, sequela|Insect bite (nonvenomous), right foot, sequela +C2866408|T037|PT|S90.861S|ICD10CM|Insect bite (nonvenomous), right foot, sequela|Insect bite (nonvenomous), right foot, sequela +C2231603|T037|AB|S90.862|ICD10CM|Insect bite (nonvenomous), left foot|Insect bite (nonvenomous), left foot +C2231603|T037|HT|S90.862|ICD10CM|Insect bite (nonvenomous), left foot|Insect bite (nonvenomous), left foot +C2866409|T037|AB|S90.862A|ICD10CM|Insect bite (nonvenomous), left foot, initial encounter|Insect bite (nonvenomous), left foot, initial encounter +C2866409|T037|PT|S90.862A|ICD10CM|Insect bite (nonvenomous), left foot, initial encounter|Insect bite (nonvenomous), left foot, initial encounter +C2866410|T037|AB|S90.862D|ICD10CM|Insect bite (nonvenomous), left foot, subsequent encounter|Insect bite (nonvenomous), left foot, subsequent encounter +C2866410|T037|PT|S90.862D|ICD10CM|Insect bite (nonvenomous), left foot, subsequent encounter|Insect bite (nonvenomous), left foot, subsequent encounter +C2866411|T037|AB|S90.862S|ICD10CM|Insect bite (nonvenomous), left foot, sequela|Insect bite (nonvenomous), left foot, sequela +C2866411|T037|PT|S90.862S|ICD10CM|Insect bite (nonvenomous), left foot, sequela|Insect bite (nonvenomous), left foot, sequela +C2866412|T037|AB|S90.869|ICD10CM|Insect bite (nonvenomous), unspecified foot|Insect bite (nonvenomous), unspecified foot +C2866412|T037|HT|S90.869|ICD10CM|Insect bite (nonvenomous), unspecified foot|Insect bite (nonvenomous), unspecified foot +C2866413|T037|AB|S90.869A|ICD10CM|Insect bite (nonvenomous), unspecified foot, init encntr|Insect bite (nonvenomous), unspecified foot, init encntr +C2866413|T037|PT|S90.869A|ICD10CM|Insect bite (nonvenomous), unspecified foot, initial encounter|Insect bite (nonvenomous), unspecified foot, initial encounter +C2866414|T037|AB|S90.869D|ICD10CM|Insect bite (nonvenomous), unspecified foot, subs encntr|Insect bite (nonvenomous), unspecified foot, subs encntr +C2866414|T037|PT|S90.869D|ICD10CM|Insect bite (nonvenomous), unspecified foot, subsequent encounter|Insect bite (nonvenomous), unspecified foot, subsequent encounter +C2866415|T037|AB|S90.869S|ICD10CM|Insect bite (nonvenomous), unspecified foot, sequela|Insect bite (nonvenomous), unspecified foot, sequela +C2866415|T037|PT|S90.869S|ICD10CM|Insect bite (nonvenomous), unspecified foot, sequela|Insect bite (nonvenomous), unspecified foot, sequela +C2866416|T037|AB|S90.87|ICD10CM|Other superficial bite of foot|Other superficial bite of foot +C2866416|T037|HT|S90.87|ICD10CM|Other superficial bite of foot|Other superficial bite of foot +C2866417|T037|AB|S90.871|ICD10CM|Other superficial bite of right foot|Other superficial bite of right foot +C2866417|T037|HT|S90.871|ICD10CM|Other superficial bite of right foot|Other superficial bite of right foot +C2866418|T037|AB|S90.871A|ICD10CM|Other superficial bite of right foot, initial encounter|Other superficial bite of right foot, initial encounter +C2866418|T037|PT|S90.871A|ICD10CM|Other superficial bite of right foot, initial encounter|Other superficial bite of right foot, initial encounter +C2866419|T037|AB|S90.871D|ICD10CM|Other superficial bite of right foot, subsequent encounter|Other superficial bite of right foot, subsequent encounter +C2866419|T037|PT|S90.871D|ICD10CM|Other superficial bite of right foot, subsequent encounter|Other superficial bite of right foot, subsequent encounter +C2866420|T037|AB|S90.871S|ICD10CM|Other superficial bite of right foot, sequela|Other superficial bite of right foot, sequela +C2866420|T037|PT|S90.871S|ICD10CM|Other superficial bite of right foot, sequela|Other superficial bite of right foot, sequela +C2866421|T037|AB|S90.872|ICD10CM|Other superficial bite of left foot|Other superficial bite of left foot +C2866421|T037|HT|S90.872|ICD10CM|Other superficial bite of left foot|Other superficial bite of left foot +C2866422|T037|AB|S90.872A|ICD10CM|Other superficial bite of left foot, initial encounter|Other superficial bite of left foot, initial encounter +C2866422|T037|PT|S90.872A|ICD10CM|Other superficial bite of left foot, initial encounter|Other superficial bite of left foot, initial encounter +C2866423|T037|AB|S90.872D|ICD10CM|Other superficial bite of left foot, subsequent encounter|Other superficial bite of left foot, subsequent encounter +C2866423|T037|PT|S90.872D|ICD10CM|Other superficial bite of left foot, subsequent encounter|Other superficial bite of left foot, subsequent encounter +C2866424|T037|AB|S90.872S|ICD10CM|Other superficial bite of left foot, sequela|Other superficial bite of left foot, sequela +C2866424|T037|PT|S90.872S|ICD10CM|Other superficial bite of left foot, sequela|Other superficial bite of left foot, sequela +C2866425|T037|AB|S90.879|ICD10CM|Other superficial bite of unspecified foot|Other superficial bite of unspecified foot +C2866425|T037|HT|S90.879|ICD10CM|Other superficial bite of unspecified foot|Other superficial bite of unspecified foot +C2866426|T037|AB|S90.879A|ICD10CM|Other superficial bite of unspecified foot, init encntr|Other superficial bite of unspecified foot, init encntr +C2866426|T037|PT|S90.879A|ICD10CM|Other superficial bite of unspecified foot, initial encounter|Other superficial bite of unspecified foot, initial encounter +C2866427|T037|AB|S90.879D|ICD10CM|Other superficial bite of unspecified foot, subs encntr|Other superficial bite of unspecified foot, subs encntr +C2866427|T037|PT|S90.879D|ICD10CM|Other superficial bite of unspecified foot, subsequent encounter|Other superficial bite of unspecified foot, subsequent encounter +C2866428|T037|AB|S90.879S|ICD10CM|Other superficial bite of unspecified foot, sequela|Other superficial bite of unspecified foot, sequela +C2866428|T037|PT|S90.879S|ICD10CM|Other superficial bite of unspecified foot, sequela|Other superficial bite of unspecified foot, sequela +C0495959|T037|PT|S90.9|ICD10|Superficial injury of ankle and foot, unspecified|Superficial injury of ankle and foot, unspecified +C2866429|T037|AB|S90.9|ICD10CM|Unspecified superficial injury of ankle, foot and toe|Unspecified superficial injury of ankle, foot and toe +C2866429|T037|HT|S90.9|ICD10CM|Unspecified superficial injury of ankle, foot and toe|Unspecified superficial injury of ankle, foot and toe +C2866430|T037|AB|S90.91|ICD10CM|Unspecified superficial injury of ankle|Unspecified superficial injury of ankle +C2866430|T037|HT|S90.91|ICD10CM|Unspecified superficial injury of ankle|Unspecified superficial injury of ankle +C2866431|T037|AB|S90.911|ICD10CM|Unspecified superficial injury of right ankle|Unspecified superficial injury of right ankle +C2866431|T037|HT|S90.911|ICD10CM|Unspecified superficial injury of right ankle|Unspecified superficial injury of right ankle +C2866432|T037|AB|S90.911A|ICD10CM|Unspecified superficial injury of right ankle, init encntr|Unspecified superficial injury of right ankle, init encntr +C2866432|T037|PT|S90.911A|ICD10CM|Unspecified superficial injury of right ankle, initial encounter|Unspecified superficial injury of right ankle, initial encounter +C2866433|T037|AB|S90.911D|ICD10CM|Unspecified superficial injury of right ankle, subs encntr|Unspecified superficial injury of right ankle, subs encntr +C2866433|T037|PT|S90.911D|ICD10CM|Unspecified superficial injury of right ankle, subsequent encounter|Unspecified superficial injury of right ankle, subsequent encounter +C2866434|T037|AB|S90.911S|ICD10CM|Unspecified superficial injury of right ankle, sequela|Unspecified superficial injury of right ankle, sequela +C2866434|T037|PT|S90.911S|ICD10CM|Unspecified superficial injury of right ankle, sequela|Unspecified superficial injury of right ankle, sequela +C2866435|T037|AB|S90.912|ICD10CM|Unspecified superficial injury of left ankle|Unspecified superficial injury of left ankle +C2866435|T037|HT|S90.912|ICD10CM|Unspecified superficial injury of left ankle|Unspecified superficial injury of left ankle +C2866436|T037|AB|S90.912A|ICD10CM|Unspecified superficial injury of left ankle, init encntr|Unspecified superficial injury of left ankle, init encntr +C2866436|T037|PT|S90.912A|ICD10CM|Unspecified superficial injury of left ankle, initial encounter|Unspecified superficial injury of left ankle, initial encounter +C2866437|T037|AB|S90.912D|ICD10CM|Unspecified superficial injury of left ankle, subs encntr|Unspecified superficial injury of left ankle, subs encntr +C2866437|T037|PT|S90.912D|ICD10CM|Unspecified superficial injury of left ankle, subsequent encounter|Unspecified superficial injury of left ankle, subsequent encounter +C2866438|T037|AB|S90.912S|ICD10CM|Unspecified superficial injury of left ankle, sequela|Unspecified superficial injury of left ankle, sequela +C2866438|T037|PT|S90.912S|ICD10CM|Unspecified superficial injury of left ankle, sequela|Unspecified superficial injury of left ankle, sequela +C2866439|T037|AB|S90.919|ICD10CM|Unspecified superficial injury of unspecified ankle|Unspecified superficial injury of unspecified ankle +C2866439|T037|HT|S90.919|ICD10CM|Unspecified superficial injury of unspecified ankle|Unspecified superficial injury of unspecified ankle +C2866440|T037|AB|S90.919A|ICD10CM|Unsp superficial injury of unspecified ankle, init encntr|Unsp superficial injury of unspecified ankle, init encntr +C2866440|T037|PT|S90.919A|ICD10CM|Unspecified superficial injury of unspecified ankle, initial encounter|Unspecified superficial injury of unspecified ankle, initial encounter +C2866441|T037|AB|S90.919D|ICD10CM|Unsp superficial injury of unspecified ankle, subs encntr|Unsp superficial injury of unspecified ankle, subs encntr +C2866441|T037|PT|S90.919D|ICD10CM|Unspecified superficial injury of unspecified ankle, subsequent encounter|Unspecified superficial injury of unspecified ankle, subsequent encounter +C2866442|T037|AB|S90.919S|ICD10CM|Unspecified superficial injury of unspecified ankle, sequela|Unspecified superficial injury of unspecified ankle, sequela +C2866442|T037|PT|S90.919S|ICD10CM|Unspecified superficial injury of unspecified ankle, sequela|Unspecified superficial injury of unspecified ankle, sequela +C2866443|T037|AB|S90.92|ICD10CM|Unspecified superficial injury of foot|Unspecified superficial injury of foot +C2866443|T037|HT|S90.92|ICD10CM|Unspecified superficial injury of foot|Unspecified superficial injury of foot +C2866444|T037|AB|S90.921|ICD10CM|Unspecified superficial injury of right foot|Unspecified superficial injury of right foot +C2866444|T037|HT|S90.921|ICD10CM|Unspecified superficial injury of right foot|Unspecified superficial injury of right foot +C2866445|T037|AB|S90.921A|ICD10CM|Unspecified superficial injury of right foot, init encntr|Unspecified superficial injury of right foot, init encntr +C2866445|T037|PT|S90.921A|ICD10CM|Unspecified superficial injury of right foot, initial encounter|Unspecified superficial injury of right foot, initial encounter +C2866446|T037|AB|S90.921D|ICD10CM|Unspecified superficial injury of right foot, subs encntr|Unspecified superficial injury of right foot, subs encntr +C2866446|T037|PT|S90.921D|ICD10CM|Unspecified superficial injury of right foot, subsequent encounter|Unspecified superficial injury of right foot, subsequent encounter +C2866447|T037|AB|S90.921S|ICD10CM|Unspecified superficial injury of right foot, sequela|Unspecified superficial injury of right foot, sequela +C2866447|T037|PT|S90.921S|ICD10CM|Unspecified superficial injury of right foot, sequela|Unspecified superficial injury of right foot, sequela +C2866448|T037|AB|S90.922|ICD10CM|Unspecified superficial injury of left foot|Unspecified superficial injury of left foot +C2866448|T037|HT|S90.922|ICD10CM|Unspecified superficial injury of left foot|Unspecified superficial injury of left foot +C2866449|T037|AB|S90.922A|ICD10CM|Unspecified superficial injury of left foot, init encntr|Unspecified superficial injury of left foot, init encntr +C2866449|T037|PT|S90.922A|ICD10CM|Unspecified superficial injury of left foot, initial encounter|Unspecified superficial injury of left foot, initial encounter +C2866450|T037|AB|S90.922D|ICD10CM|Unspecified superficial injury of left foot, subs encntr|Unspecified superficial injury of left foot, subs encntr +C2866450|T037|PT|S90.922D|ICD10CM|Unspecified superficial injury of left foot, subsequent encounter|Unspecified superficial injury of left foot, subsequent encounter +C2866451|T037|AB|S90.922S|ICD10CM|Unspecified superficial injury of left foot, sequela|Unspecified superficial injury of left foot, sequela +C2866451|T037|PT|S90.922S|ICD10CM|Unspecified superficial injury of left foot, sequela|Unspecified superficial injury of left foot, sequela +C2866452|T037|AB|S90.929|ICD10CM|Unspecified superficial injury of unspecified foot|Unspecified superficial injury of unspecified foot +C2866452|T037|HT|S90.929|ICD10CM|Unspecified superficial injury of unspecified foot|Unspecified superficial injury of unspecified foot +C2866453|T037|AB|S90.929A|ICD10CM|Unsp superficial injury of unspecified foot, init encntr|Unsp superficial injury of unspecified foot, init encntr +C2866453|T037|PT|S90.929A|ICD10CM|Unspecified superficial injury of unspecified foot, initial encounter|Unspecified superficial injury of unspecified foot, initial encounter +C2866454|T037|AB|S90.929D|ICD10CM|Unsp superficial injury of unspecified foot, subs encntr|Unsp superficial injury of unspecified foot, subs encntr +C2866454|T037|PT|S90.929D|ICD10CM|Unspecified superficial injury of unspecified foot, subsequent encounter|Unspecified superficial injury of unspecified foot, subsequent encounter +C2866455|T037|AB|S90.929S|ICD10CM|Unspecified superficial injury of unspecified foot, sequela|Unspecified superficial injury of unspecified foot, sequela +C2866455|T037|PT|S90.929S|ICD10CM|Unspecified superficial injury of unspecified foot, sequela|Unspecified superficial injury of unspecified foot, sequela +C2866456|T037|AB|S90.93|ICD10CM|Unspecified superficial injury of toes|Unspecified superficial injury of toes +C2866456|T037|HT|S90.93|ICD10CM|Unspecified superficial injury of toes|Unspecified superficial injury of toes +C2866457|T037|AB|S90.931|ICD10CM|Unspecified superficial injury of right great toe|Unspecified superficial injury of right great toe +C2866457|T037|HT|S90.931|ICD10CM|Unspecified superficial injury of right great toe|Unspecified superficial injury of right great toe +C2866458|T037|AB|S90.931A|ICD10CM|Unsp superficial injury of right great toe, init encntr|Unsp superficial injury of right great toe, init encntr +C2866458|T037|PT|S90.931A|ICD10CM|Unspecified superficial injury of right great toe, initial encounter|Unspecified superficial injury of right great toe, initial encounter +C2866459|T037|AB|S90.931D|ICD10CM|Unsp superficial injury of right great toe, subs encntr|Unsp superficial injury of right great toe, subs encntr +C2866459|T037|PT|S90.931D|ICD10CM|Unspecified superficial injury of right great toe, subsequent encounter|Unspecified superficial injury of right great toe, subsequent encounter +C2866460|T037|AB|S90.931S|ICD10CM|Unspecified superficial injury of right great toe, sequela|Unspecified superficial injury of right great toe, sequela +C2866460|T037|PT|S90.931S|ICD10CM|Unspecified superficial injury of right great toe, sequela|Unspecified superficial injury of right great toe, sequela +C2866461|T037|AB|S90.932|ICD10CM|Unspecified superficial injury of left great toe|Unspecified superficial injury of left great toe +C2866461|T037|HT|S90.932|ICD10CM|Unspecified superficial injury of left great toe|Unspecified superficial injury of left great toe +C2866462|T037|AB|S90.932A|ICD10CM|Unsp superficial injury of left great toe, init encntr|Unsp superficial injury of left great toe, init encntr +C2866462|T037|PT|S90.932A|ICD10CM|Unspecified superficial injury of left great toe, initial encounter|Unspecified superficial injury of left great toe, initial encounter +C2866463|T037|AB|S90.932D|ICD10CM|Unsp superficial injury of left great toe, subs encntr|Unsp superficial injury of left great toe, subs encntr +C2866463|T037|PT|S90.932D|ICD10CM|Unspecified superficial injury of left great toe, subsequent encounter|Unspecified superficial injury of left great toe, subsequent encounter +C2866464|T037|AB|S90.932S|ICD10CM|Unspecified superficial injury of left great toe, sequela|Unspecified superficial injury of left great toe, sequela +C2866464|T037|PT|S90.932S|ICD10CM|Unspecified superficial injury of left great toe, sequela|Unspecified superficial injury of left great toe, sequela +C2866465|T037|AB|S90.933|ICD10CM|Unspecified superficial injury of unspecified great toe|Unspecified superficial injury of unspecified great toe +C2866465|T037|HT|S90.933|ICD10CM|Unspecified superficial injury of unspecified great toe|Unspecified superficial injury of unspecified great toe +C2866466|T037|AB|S90.933A|ICD10CM|Unsp superficial injury of unsp great toe, init encntr|Unsp superficial injury of unsp great toe, init encntr +C2866466|T037|PT|S90.933A|ICD10CM|Unspecified superficial injury of unspecified great toe, initial encounter|Unspecified superficial injury of unspecified great toe, initial encounter +C2866467|T037|AB|S90.933D|ICD10CM|Unsp superficial injury of unsp great toe, subs encntr|Unsp superficial injury of unsp great toe, subs encntr +C2866467|T037|PT|S90.933D|ICD10CM|Unspecified superficial injury of unspecified great toe, subsequent encounter|Unspecified superficial injury of unspecified great toe, subsequent encounter +C2866468|T037|AB|S90.933S|ICD10CM|Unsp superficial injury of unspecified great toe, sequela|Unsp superficial injury of unspecified great toe, sequela +C2866468|T037|PT|S90.933S|ICD10CM|Unspecified superficial injury of unspecified great toe, sequela|Unspecified superficial injury of unspecified great toe, sequela +C2866469|T037|AB|S90.934|ICD10CM|Unspecified superficial injury of right lesser toe(s)|Unspecified superficial injury of right lesser toe(s) +C2866469|T037|HT|S90.934|ICD10CM|Unspecified superficial injury of right lesser toe(s)|Unspecified superficial injury of right lesser toe(s) +C2866470|T037|AB|S90.934A|ICD10CM|Unsp superficial injury of right lesser toe(s), init encntr|Unsp superficial injury of right lesser toe(s), init encntr +C2866470|T037|PT|S90.934A|ICD10CM|Unspecified superficial injury of right lesser toe(s), initial encounter|Unspecified superficial injury of right lesser toe(s), initial encounter +C2866471|T037|AB|S90.934D|ICD10CM|Unsp superficial injury of right lesser toe(s), subs encntr|Unsp superficial injury of right lesser toe(s), subs encntr +C2866471|T037|PT|S90.934D|ICD10CM|Unspecified superficial injury of right lesser toe(s), subsequent encounter|Unspecified superficial injury of right lesser toe(s), subsequent encounter +C2866472|T037|AB|S90.934S|ICD10CM|Unsp superficial injury of right lesser toe(s), sequela|Unsp superficial injury of right lesser toe(s), sequela +C2866472|T037|PT|S90.934S|ICD10CM|Unspecified superficial injury of right lesser toe(s), sequela|Unspecified superficial injury of right lesser toe(s), sequela +C2866473|T037|AB|S90.935|ICD10CM|Unspecified superficial injury of left lesser toe(s)|Unspecified superficial injury of left lesser toe(s) +C2866473|T037|HT|S90.935|ICD10CM|Unspecified superficial injury of left lesser toe(s)|Unspecified superficial injury of left lesser toe(s) +C2866474|T037|AB|S90.935A|ICD10CM|Unsp superficial injury of left lesser toe(s), init encntr|Unsp superficial injury of left lesser toe(s), init encntr +C2866474|T037|PT|S90.935A|ICD10CM|Unspecified superficial injury of left lesser toe(s), initial encounter|Unspecified superficial injury of left lesser toe(s), initial encounter +C2866475|T037|AB|S90.935D|ICD10CM|Unsp superficial injury of left lesser toe(s), subs encntr|Unsp superficial injury of left lesser toe(s), subs encntr +C2866475|T037|PT|S90.935D|ICD10CM|Unspecified superficial injury of left lesser toe(s), subsequent encounter|Unspecified superficial injury of left lesser toe(s), subsequent encounter +C2866476|T037|AB|S90.935S|ICD10CM|Unsp superficial injury of left lesser toe(s), sequela|Unsp superficial injury of left lesser toe(s), sequela +C2866476|T037|PT|S90.935S|ICD10CM|Unspecified superficial injury of left lesser toe(s), sequela|Unspecified superficial injury of left lesser toe(s), sequela +C2866477|T037|AB|S90.936|ICD10CM|Unspecified superficial injury of unspecified lesser toe(s)|Unspecified superficial injury of unspecified lesser toe(s) +C2866477|T037|HT|S90.936|ICD10CM|Unspecified superficial injury of unspecified lesser toe(s)|Unspecified superficial injury of unspecified lesser toe(s) +C2866478|T037|AB|S90.936A|ICD10CM|Unsp superficial injury of unsp lesser toe(s), init encntr|Unsp superficial injury of unsp lesser toe(s), init encntr +C2866478|T037|PT|S90.936A|ICD10CM|Unspecified superficial injury of unspecified lesser toe(s), initial encounter|Unspecified superficial injury of unspecified lesser toe(s), initial encounter +C2866479|T037|AB|S90.936D|ICD10CM|Unsp superficial injury of unsp lesser toe(s), subs encntr|Unsp superficial injury of unsp lesser toe(s), subs encntr +C2866479|T037|PT|S90.936D|ICD10CM|Unspecified superficial injury of unspecified lesser toe(s), subsequent encounter|Unspecified superficial injury of unspecified lesser toe(s), subsequent encounter +C2866480|T037|AB|S90.936S|ICD10CM|Unsp superficial injury of unsp lesser toe(s), sequela|Unsp superficial injury of unsp lesser toe(s), sequela +C2866480|T037|PT|S90.936S|ICD10CM|Unspecified superficial injury of unspecified lesser toe(s), sequela|Unspecified superficial injury of unspecified lesser toe(s), sequela +C0495962|T037|HT|S91|ICD10|Open wound of ankle and foot|Open wound of ankle and foot +C2866481|T037|AB|S91|ICD10CM|Open wound of ankle, foot and toes|Open wound of ankle, foot and toes +C2866481|T037|HT|S91|ICD10CM|Open wound of ankle, foot and toes|Open wound of ankle, foot and toes +C0347572|T037|PT|S91.0|ICD10|Open wound of ankle|Open wound of ankle +C0347572|T037|HT|S91.0|ICD10CM|Open wound of ankle|Open wound of ankle +C0347572|T037|AB|S91.0|ICD10CM|Open wound of ankle|Open wound of ankle +C2866482|T037|AB|S91.00|ICD10CM|Unspecified open wound of ankle|Unspecified open wound of ankle +C2866482|T037|HT|S91.00|ICD10CM|Unspecified open wound of ankle|Unspecified open wound of ankle +C2866483|T037|AB|S91.001|ICD10CM|Unspecified open wound, right ankle|Unspecified open wound, right ankle +C2866483|T037|HT|S91.001|ICD10CM|Unspecified open wound, right ankle|Unspecified open wound, right ankle +C2866484|T037|AB|S91.001A|ICD10CM|Unspecified open wound, right ankle, initial encounter|Unspecified open wound, right ankle, initial encounter +C2866484|T037|PT|S91.001A|ICD10CM|Unspecified open wound, right ankle, initial encounter|Unspecified open wound, right ankle, initial encounter +C2866485|T037|AB|S91.001D|ICD10CM|Unspecified open wound, right ankle, subsequent encounter|Unspecified open wound, right ankle, subsequent encounter +C2866485|T037|PT|S91.001D|ICD10CM|Unspecified open wound, right ankle, subsequent encounter|Unspecified open wound, right ankle, subsequent encounter +C2866486|T037|AB|S91.001S|ICD10CM|Unspecified open wound, right ankle, sequela|Unspecified open wound, right ankle, sequela +C2866486|T037|PT|S91.001S|ICD10CM|Unspecified open wound, right ankle, sequela|Unspecified open wound, right ankle, sequela +C2866487|T037|AB|S91.002|ICD10CM|Unspecified open wound, left ankle|Unspecified open wound, left ankle +C2866487|T037|HT|S91.002|ICD10CM|Unspecified open wound, left ankle|Unspecified open wound, left ankle +C2866488|T037|AB|S91.002A|ICD10CM|Unspecified open wound, left ankle, initial encounter|Unspecified open wound, left ankle, initial encounter +C2866488|T037|PT|S91.002A|ICD10CM|Unspecified open wound, left ankle, initial encounter|Unspecified open wound, left ankle, initial encounter +C2866489|T037|AB|S91.002D|ICD10CM|Unspecified open wound, left ankle, subsequent encounter|Unspecified open wound, left ankle, subsequent encounter +C2866489|T037|PT|S91.002D|ICD10CM|Unspecified open wound, left ankle, subsequent encounter|Unspecified open wound, left ankle, subsequent encounter +C2866490|T037|AB|S91.002S|ICD10CM|Unspecified open wound, left ankle, sequela|Unspecified open wound, left ankle, sequela +C2866490|T037|PT|S91.002S|ICD10CM|Unspecified open wound, left ankle, sequela|Unspecified open wound, left ankle, sequela +C2866491|T037|AB|S91.009|ICD10CM|Unspecified open wound, unspecified ankle|Unspecified open wound, unspecified ankle +C2866491|T037|HT|S91.009|ICD10CM|Unspecified open wound, unspecified ankle|Unspecified open wound, unspecified ankle +C2866492|T037|AB|S91.009A|ICD10CM|Unspecified open wound, unspecified ankle, initial encounter|Unspecified open wound, unspecified ankle, initial encounter +C2866492|T037|PT|S91.009A|ICD10CM|Unspecified open wound, unspecified ankle, initial encounter|Unspecified open wound, unspecified ankle, initial encounter +C2866493|T037|AB|S91.009D|ICD10CM|Unspecified open wound, unspecified ankle, subs encntr|Unspecified open wound, unspecified ankle, subs encntr +C2866493|T037|PT|S91.009D|ICD10CM|Unspecified open wound, unspecified ankle, subsequent encounter|Unspecified open wound, unspecified ankle, subsequent encounter +C2866494|T037|AB|S91.009S|ICD10CM|Unspecified open wound, unspecified ankle, sequela|Unspecified open wound, unspecified ankle, sequela +C2866494|T037|PT|S91.009S|ICD10CM|Unspecified open wound, unspecified ankle, sequela|Unspecified open wound, unspecified ankle, sequela +C2866495|T037|AB|S91.01|ICD10CM|Laceration without foreign body of ankle|Laceration without foreign body of ankle +C2866495|T037|HT|S91.01|ICD10CM|Laceration without foreign body of ankle|Laceration without foreign body of ankle +C2866496|T037|AB|S91.011|ICD10CM|Laceration without foreign body, right ankle|Laceration without foreign body, right ankle +C2866496|T037|HT|S91.011|ICD10CM|Laceration without foreign body, right ankle|Laceration without foreign body, right ankle +C2866497|T037|AB|S91.011A|ICD10CM|Laceration without foreign body, right ankle, init encntr|Laceration without foreign body, right ankle, init encntr +C2866497|T037|PT|S91.011A|ICD10CM|Laceration without foreign body, right ankle, initial encounter|Laceration without foreign body, right ankle, initial encounter +C2866498|T037|AB|S91.011D|ICD10CM|Laceration without foreign body, right ankle, subs encntr|Laceration without foreign body, right ankle, subs encntr +C2866498|T037|PT|S91.011D|ICD10CM|Laceration without foreign body, right ankle, subsequent encounter|Laceration without foreign body, right ankle, subsequent encounter +C2866499|T037|AB|S91.011S|ICD10CM|Laceration without foreign body, right ankle, sequela|Laceration without foreign body, right ankle, sequela +C2866499|T037|PT|S91.011S|ICD10CM|Laceration without foreign body, right ankle, sequela|Laceration without foreign body, right ankle, sequela +C2866500|T037|AB|S91.012|ICD10CM|Laceration without foreign body, left ankle|Laceration without foreign body, left ankle +C2866500|T037|HT|S91.012|ICD10CM|Laceration without foreign body, left ankle|Laceration without foreign body, left ankle +C2866501|T037|AB|S91.012A|ICD10CM|Laceration without foreign body, left ankle, init encntr|Laceration without foreign body, left ankle, init encntr +C2866501|T037|PT|S91.012A|ICD10CM|Laceration without foreign body, left ankle, initial encounter|Laceration without foreign body, left ankle, initial encounter +C2866502|T037|AB|S91.012D|ICD10CM|Laceration without foreign body, left ankle, subs encntr|Laceration without foreign body, left ankle, subs encntr +C2866502|T037|PT|S91.012D|ICD10CM|Laceration without foreign body, left ankle, subsequent encounter|Laceration without foreign body, left ankle, subsequent encounter +C2866503|T037|AB|S91.012S|ICD10CM|Laceration without foreign body, left ankle, sequela|Laceration without foreign body, left ankle, sequela +C2866503|T037|PT|S91.012S|ICD10CM|Laceration without foreign body, left ankle, sequela|Laceration without foreign body, left ankle, sequela +C2866504|T037|AB|S91.019|ICD10CM|Laceration without foreign body, unspecified ankle|Laceration without foreign body, unspecified ankle +C2866504|T037|HT|S91.019|ICD10CM|Laceration without foreign body, unspecified ankle|Laceration without foreign body, unspecified ankle +C2866505|T037|AB|S91.019A|ICD10CM|Laceration without foreign body, unsp ankle, init encntr|Laceration without foreign body, unsp ankle, init encntr +C2866505|T037|PT|S91.019A|ICD10CM|Laceration without foreign body, unspecified ankle, initial encounter|Laceration without foreign body, unspecified ankle, initial encounter +C2866506|T037|AB|S91.019D|ICD10CM|Laceration without foreign body, unsp ankle, subs encntr|Laceration without foreign body, unsp ankle, subs encntr +C2866506|T037|PT|S91.019D|ICD10CM|Laceration without foreign body, unspecified ankle, subsequent encounter|Laceration without foreign body, unspecified ankle, subsequent encounter +C2866507|T037|AB|S91.019S|ICD10CM|Laceration without foreign body, unspecified ankle, sequela|Laceration without foreign body, unspecified ankle, sequela +C2866507|T037|PT|S91.019S|ICD10CM|Laceration without foreign body, unspecified ankle, sequela|Laceration without foreign body, unspecified ankle, sequela +C2866508|T037|HT|S91.02|ICD10CM|Laceration with foreign body of ankle|Laceration with foreign body of ankle +C2866508|T037|AB|S91.02|ICD10CM|Laceration with foreign body of ankle|Laceration with foreign body of ankle +C2866509|T037|AB|S91.021|ICD10CM|Laceration with foreign body, right ankle|Laceration with foreign body, right ankle +C2866509|T037|HT|S91.021|ICD10CM|Laceration with foreign body, right ankle|Laceration with foreign body, right ankle +C2866510|T037|AB|S91.021A|ICD10CM|Laceration with foreign body, right ankle, initial encounter|Laceration with foreign body, right ankle, initial encounter +C2866510|T037|PT|S91.021A|ICD10CM|Laceration with foreign body, right ankle, initial encounter|Laceration with foreign body, right ankle, initial encounter +C2866511|T037|AB|S91.021D|ICD10CM|Laceration with foreign body, right ankle, subs encntr|Laceration with foreign body, right ankle, subs encntr +C2866511|T037|PT|S91.021D|ICD10CM|Laceration with foreign body, right ankle, subsequent encounter|Laceration with foreign body, right ankle, subsequent encounter +C2866512|T037|AB|S91.021S|ICD10CM|Laceration with foreign body, right ankle, sequela|Laceration with foreign body, right ankle, sequela +C2866512|T037|PT|S91.021S|ICD10CM|Laceration with foreign body, right ankle, sequela|Laceration with foreign body, right ankle, sequela +C2866513|T037|AB|S91.022|ICD10CM|Laceration with foreign body, left ankle|Laceration with foreign body, left ankle +C2866513|T037|HT|S91.022|ICD10CM|Laceration with foreign body, left ankle|Laceration with foreign body, left ankle +C2866514|T037|AB|S91.022A|ICD10CM|Laceration with foreign body, left ankle, initial encounter|Laceration with foreign body, left ankle, initial encounter +C2866514|T037|PT|S91.022A|ICD10CM|Laceration with foreign body, left ankle, initial encounter|Laceration with foreign body, left ankle, initial encounter +C2866515|T037|AB|S91.022D|ICD10CM|Laceration with foreign body, left ankle, subs encntr|Laceration with foreign body, left ankle, subs encntr +C2866515|T037|PT|S91.022D|ICD10CM|Laceration with foreign body, left ankle, subsequent encounter|Laceration with foreign body, left ankle, subsequent encounter +C2866516|T037|AB|S91.022S|ICD10CM|Laceration with foreign body, left ankle, sequela|Laceration with foreign body, left ankle, sequela +C2866516|T037|PT|S91.022S|ICD10CM|Laceration with foreign body, left ankle, sequela|Laceration with foreign body, left ankle, sequela +C2866517|T037|AB|S91.029|ICD10CM|Laceration with foreign body, unspecified ankle|Laceration with foreign body, unspecified ankle +C2866517|T037|HT|S91.029|ICD10CM|Laceration with foreign body, unspecified ankle|Laceration with foreign body, unspecified ankle +C2866518|T037|AB|S91.029A|ICD10CM|Laceration with foreign body, unspecified ankle, init encntr|Laceration with foreign body, unspecified ankle, init encntr +C2866518|T037|PT|S91.029A|ICD10CM|Laceration with foreign body, unspecified ankle, initial encounter|Laceration with foreign body, unspecified ankle, initial encounter +C2866519|T037|AB|S91.029D|ICD10CM|Laceration with foreign body, unspecified ankle, subs encntr|Laceration with foreign body, unspecified ankle, subs encntr +C2866519|T037|PT|S91.029D|ICD10CM|Laceration with foreign body, unspecified ankle, subsequent encounter|Laceration with foreign body, unspecified ankle, subsequent encounter +C2866520|T037|AB|S91.029S|ICD10CM|Laceration with foreign body, unspecified ankle, sequela|Laceration with foreign body, unspecified ankle, sequela +C2866520|T037|PT|S91.029S|ICD10CM|Laceration with foreign body, unspecified ankle, sequela|Laceration with foreign body, unspecified ankle, sequela +C2866521|T037|HT|S91.03|ICD10CM|Puncture wound without foreign body of ankle|Puncture wound without foreign body of ankle +C2866521|T037|AB|S91.03|ICD10CM|Puncture wound without foreign body of ankle|Puncture wound without foreign body of ankle +C2866522|T037|AB|S91.031|ICD10CM|Puncture wound without foreign body, right ankle|Puncture wound without foreign body, right ankle +C2866522|T037|HT|S91.031|ICD10CM|Puncture wound without foreign body, right ankle|Puncture wound without foreign body, right ankle +C2866523|T037|AB|S91.031A|ICD10CM|Puncture wound w/o foreign body, right ankle, init encntr|Puncture wound w/o foreign body, right ankle, init encntr +C2866523|T037|PT|S91.031A|ICD10CM|Puncture wound without foreign body, right ankle, initial encounter|Puncture wound without foreign body, right ankle, initial encounter +C2866524|T037|AB|S91.031D|ICD10CM|Puncture wound w/o foreign body, right ankle, subs encntr|Puncture wound w/o foreign body, right ankle, subs encntr +C2866524|T037|PT|S91.031D|ICD10CM|Puncture wound without foreign body, right ankle, subsequent encounter|Puncture wound without foreign body, right ankle, subsequent encounter +C2866525|T037|AB|S91.031S|ICD10CM|Puncture wound without foreign body, right ankle, sequela|Puncture wound without foreign body, right ankle, sequela +C2866525|T037|PT|S91.031S|ICD10CM|Puncture wound without foreign body, right ankle, sequela|Puncture wound without foreign body, right ankle, sequela +C2866526|T037|AB|S91.032|ICD10CM|Puncture wound without foreign body, left ankle|Puncture wound without foreign body, left ankle +C2866526|T037|HT|S91.032|ICD10CM|Puncture wound without foreign body, left ankle|Puncture wound without foreign body, left ankle +C2866527|T037|AB|S91.032A|ICD10CM|Puncture wound without foreign body, left ankle, init encntr|Puncture wound without foreign body, left ankle, init encntr +C2866527|T037|PT|S91.032A|ICD10CM|Puncture wound without foreign body, left ankle, initial encounter|Puncture wound without foreign body, left ankle, initial encounter +C2866528|T037|AB|S91.032D|ICD10CM|Puncture wound without foreign body, left ankle, subs encntr|Puncture wound without foreign body, left ankle, subs encntr +C2866528|T037|PT|S91.032D|ICD10CM|Puncture wound without foreign body, left ankle, subsequent encounter|Puncture wound without foreign body, left ankle, subsequent encounter +C2866529|T037|AB|S91.032S|ICD10CM|Puncture wound without foreign body, left ankle, sequela|Puncture wound without foreign body, left ankle, sequela +C2866529|T037|PT|S91.032S|ICD10CM|Puncture wound without foreign body, left ankle, sequela|Puncture wound without foreign body, left ankle, sequela +C2866530|T037|AB|S91.039|ICD10CM|Puncture wound without foreign body, unspecified ankle|Puncture wound without foreign body, unspecified ankle +C2866530|T037|HT|S91.039|ICD10CM|Puncture wound without foreign body, unspecified ankle|Puncture wound without foreign body, unspecified ankle +C2866531|T037|AB|S91.039A|ICD10CM|Puncture wound without foreign body, unsp ankle, init encntr|Puncture wound without foreign body, unsp ankle, init encntr +C2866531|T037|PT|S91.039A|ICD10CM|Puncture wound without foreign body, unspecified ankle, initial encounter|Puncture wound without foreign body, unspecified ankle, initial encounter +C2866532|T037|AB|S91.039D|ICD10CM|Puncture wound without foreign body, unsp ankle, subs encntr|Puncture wound without foreign body, unsp ankle, subs encntr +C2866532|T037|PT|S91.039D|ICD10CM|Puncture wound without foreign body, unspecified ankle, subsequent encounter|Puncture wound without foreign body, unspecified ankle, subsequent encounter +C2866533|T037|AB|S91.039S|ICD10CM|Puncture wound without foreign body, unsp ankle, sequela|Puncture wound without foreign body, unsp ankle, sequela +C2866533|T037|PT|S91.039S|ICD10CM|Puncture wound without foreign body, unspecified ankle, sequela|Puncture wound without foreign body, unspecified ankle, sequela +C2866534|T037|AB|S91.04|ICD10CM|Puncture wound with foreign body of ankle|Puncture wound with foreign body of ankle +C2866534|T037|HT|S91.04|ICD10CM|Puncture wound with foreign body of ankle|Puncture wound with foreign body of ankle +C2866535|T037|AB|S91.041|ICD10CM|Puncture wound with foreign body, right ankle|Puncture wound with foreign body, right ankle +C2866535|T037|HT|S91.041|ICD10CM|Puncture wound with foreign body, right ankle|Puncture wound with foreign body, right ankle +C2866536|T037|AB|S91.041A|ICD10CM|Puncture wound with foreign body, right ankle, init encntr|Puncture wound with foreign body, right ankle, init encntr +C2866536|T037|PT|S91.041A|ICD10CM|Puncture wound with foreign body, right ankle, initial encounter|Puncture wound with foreign body, right ankle, initial encounter +C2866537|T037|AB|S91.041D|ICD10CM|Puncture wound with foreign body, right ankle, subs encntr|Puncture wound with foreign body, right ankle, subs encntr +C2866537|T037|PT|S91.041D|ICD10CM|Puncture wound with foreign body, right ankle, subsequent encounter|Puncture wound with foreign body, right ankle, subsequent encounter +C2866538|T037|AB|S91.041S|ICD10CM|Puncture wound with foreign body, right ankle, sequela|Puncture wound with foreign body, right ankle, sequela +C2866538|T037|PT|S91.041S|ICD10CM|Puncture wound with foreign body, right ankle, sequela|Puncture wound with foreign body, right ankle, sequela +C2866539|T037|AB|S91.042|ICD10CM|Puncture wound with foreign body, left ankle|Puncture wound with foreign body, left ankle +C2866539|T037|HT|S91.042|ICD10CM|Puncture wound with foreign body, left ankle|Puncture wound with foreign body, left ankle +C2866540|T037|AB|S91.042A|ICD10CM|Puncture wound with foreign body, left ankle, init encntr|Puncture wound with foreign body, left ankle, init encntr +C2866540|T037|PT|S91.042A|ICD10CM|Puncture wound with foreign body, left ankle, initial encounter|Puncture wound with foreign body, left ankle, initial encounter +C2866541|T037|AB|S91.042D|ICD10CM|Puncture wound with foreign body, left ankle, subs encntr|Puncture wound with foreign body, left ankle, subs encntr +C2866541|T037|PT|S91.042D|ICD10CM|Puncture wound with foreign body, left ankle, subsequent encounter|Puncture wound with foreign body, left ankle, subsequent encounter +C2866542|T037|AB|S91.042S|ICD10CM|Puncture wound with foreign body, left ankle, sequela|Puncture wound with foreign body, left ankle, sequela +C2866542|T037|PT|S91.042S|ICD10CM|Puncture wound with foreign body, left ankle, sequela|Puncture wound with foreign body, left ankle, sequela +C2866543|T037|AB|S91.049|ICD10CM|Puncture wound with foreign body, unspecified ankle|Puncture wound with foreign body, unspecified ankle +C2866543|T037|HT|S91.049|ICD10CM|Puncture wound with foreign body, unspecified ankle|Puncture wound with foreign body, unspecified ankle +C2866544|T037|AB|S91.049A|ICD10CM|Puncture wound with foreign body, unsp ankle, init encntr|Puncture wound with foreign body, unsp ankle, init encntr +C2866544|T037|PT|S91.049A|ICD10CM|Puncture wound with foreign body, unspecified ankle, initial encounter|Puncture wound with foreign body, unspecified ankle, initial encounter +C2866545|T037|AB|S91.049D|ICD10CM|Puncture wound with foreign body, unsp ankle, subs encntr|Puncture wound with foreign body, unsp ankle, subs encntr +C2866545|T037|PT|S91.049D|ICD10CM|Puncture wound with foreign body, unspecified ankle, subsequent encounter|Puncture wound with foreign body, unspecified ankle, subsequent encounter +C2866546|T037|AB|S91.049S|ICD10CM|Puncture wound with foreign body, unspecified ankle, sequela|Puncture wound with foreign body, unspecified ankle, sequela +C2866546|T037|PT|S91.049S|ICD10CM|Puncture wound with foreign body, unspecified ankle, sequela|Puncture wound with foreign body, unspecified ankle, sequela +C2866547|T037|HT|S91.05|ICD10CM|Open bite of ankle|Open bite of ankle +C2866547|T037|AB|S91.05|ICD10CM|Open bite of ankle|Open bite of ankle +C2866548|T037|AB|S91.051|ICD10CM|Open bite, right ankle|Open bite, right ankle +C2866548|T037|HT|S91.051|ICD10CM|Open bite, right ankle|Open bite, right ankle +C2866549|T037|AB|S91.051A|ICD10CM|Open bite, right ankle, initial encounter|Open bite, right ankle, initial encounter +C2866549|T037|PT|S91.051A|ICD10CM|Open bite, right ankle, initial encounter|Open bite, right ankle, initial encounter +C2866550|T037|AB|S91.051D|ICD10CM|Open bite, right ankle, subsequent encounter|Open bite, right ankle, subsequent encounter +C2866550|T037|PT|S91.051D|ICD10CM|Open bite, right ankle, subsequent encounter|Open bite, right ankle, subsequent encounter +C2866551|T037|AB|S91.051S|ICD10CM|Open bite, right ankle, sequela|Open bite, right ankle, sequela +C2866551|T037|PT|S91.051S|ICD10CM|Open bite, right ankle, sequela|Open bite, right ankle, sequela +C2866552|T037|AB|S91.052|ICD10CM|Open bite, left ankle|Open bite, left ankle +C2866552|T037|HT|S91.052|ICD10CM|Open bite, left ankle|Open bite, left ankle +C2866553|T037|AB|S91.052A|ICD10CM|Open bite, left ankle, initial encounter|Open bite, left ankle, initial encounter +C2866553|T037|PT|S91.052A|ICD10CM|Open bite, left ankle, initial encounter|Open bite, left ankle, initial encounter +C2866554|T037|AB|S91.052D|ICD10CM|Open bite, left ankle, subsequent encounter|Open bite, left ankle, subsequent encounter +C2866554|T037|PT|S91.052D|ICD10CM|Open bite, left ankle, subsequent encounter|Open bite, left ankle, subsequent encounter +C2866555|T037|AB|S91.052S|ICD10CM|Open bite, left ankle, sequela|Open bite, left ankle, sequela +C2866555|T037|PT|S91.052S|ICD10CM|Open bite, left ankle, sequela|Open bite, left ankle, sequela +C2866556|T037|AB|S91.059|ICD10CM|Open bite, unspecified ankle|Open bite, unspecified ankle +C2866556|T037|HT|S91.059|ICD10CM|Open bite, unspecified ankle|Open bite, unspecified ankle +C2866557|T037|AB|S91.059A|ICD10CM|Open bite, unspecified ankle, initial encounter|Open bite, unspecified ankle, initial encounter +C2866557|T037|PT|S91.059A|ICD10CM|Open bite, unspecified ankle, initial encounter|Open bite, unspecified ankle, initial encounter +C2866558|T037|AB|S91.059D|ICD10CM|Open bite, unspecified ankle, subsequent encounter|Open bite, unspecified ankle, subsequent encounter +C2866558|T037|PT|S91.059D|ICD10CM|Open bite, unspecified ankle, subsequent encounter|Open bite, unspecified ankle, subsequent encounter +C2866559|T037|AB|S91.059S|ICD10CM|Open bite, unspecified ankle, sequela|Open bite, unspecified ankle, sequela +C2866559|T037|PT|S91.059S|ICD10CM|Open bite, unspecified ankle, sequela|Open bite, unspecified ankle, sequela +C0495963|T037|HT|S91.1|ICD10CM|Open wound of toe without damage to nail|Open wound of toe without damage to nail +C0495963|T037|AB|S91.1|ICD10CM|Open wound of toe without damage to nail|Open wound of toe without damage to nail +C0495963|T037|PT|S91.1|ICD10|Open wound of toe(s) without damage to nail|Open wound of toe(s) without damage to nail +C2866560|T037|AB|S91.10|ICD10CM|Unspecified open wound of toe without damage to nail|Unspecified open wound of toe without damage to nail +C2866560|T037|HT|S91.10|ICD10CM|Unspecified open wound of toe without damage to nail|Unspecified open wound of toe without damage to nail +C2866561|T037|AB|S91.101|ICD10CM|Unsp open wound of right great toe without damage to nail|Unsp open wound of right great toe without damage to nail +C2866561|T037|HT|S91.101|ICD10CM|Unspecified open wound of right great toe without damage to nail|Unspecified open wound of right great toe without damage to nail +C2866562|T037|AB|S91.101A|ICD10CM|Unsp open wound of right great toe w/o damage to nail, init|Unsp open wound of right great toe w/o damage to nail, init +C2866562|T037|PT|S91.101A|ICD10CM|Unspecified open wound of right great toe without damage to nail, initial encounter|Unspecified open wound of right great toe without damage to nail, initial encounter +C2866563|T037|AB|S91.101D|ICD10CM|Unsp open wound of right great toe w/o damage to nail, subs|Unsp open wound of right great toe w/o damage to nail, subs +C2866563|T037|PT|S91.101D|ICD10CM|Unspecified open wound of right great toe without damage to nail, subsequent encounter|Unspecified open wound of right great toe without damage to nail, subsequent encounter +C2866564|T037|AB|S91.101S|ICD10CM|Unsp opn wnd right great toe w/o damage to nail, sequela|Unsp opn wnd right great toe w/o damage to nail, sequela +C2866564|T037|PT|S91.101S|ICD10CM|Unspecified open wound of right great toe without damage to nail, sequela|Unspecified open wound of right great toe without damage to nail, sequela +C2866565|T037|AB|S91.102|ICD10CM|Unsp open wound of left great toe without damage to nail|Unsp open wound of left great toe without damage to nail +C2866565|T037|HT|S91.102|ICD10CM|Unspecified open wound of left great toe without damage to nail|Unspecified open wound of left great toe without damage to nail +C2866566|T037|AB|S91.102A|ICD10CM|Unsp open wound of left great toe w/o damage to nail, init|Unsp open wound of left great toe w/o damage to nail, init +C2866566|T037|PT|S91.102A|ICD10CM|Unspecified open wound of left great toe without damage to nail, initial encounter|Unspecified open wound of left great toe without damage to nail, initial encounter +C2866567|T037|AB|S91.102D|ICD10CM|Unsp open wound of left great toe w/o damage to nail, subs|Unsp open wound of left great toe w/o damage to nail, subs +C2866567|T037|PT|S91.102D|ICD10CM|Unspecified open wound of left great toe without damage to nail, subsequent encounter|Unspecified open wound of left great toe without damage to nail, subsequent encounter +C2866568|T037|AB|S91.102S|ICD10CM|Unsp opn wnd left great toe w/o damage to nail, sequela|Unsp opn wnd left great toe w/o damage to nail, sequela +C2866568|T037|PT|S91.102S|ICD10CM|Unspecified open wound of left great toe without damage to nail, sequela|Unspecified open wound of left great toe without damage to nail, sequela +C2866569|T037|AB|S91.103|ICD10CM|Unsp open wound of unsp great toe without damage to nail|Unsp open wound of unsp great toe without damage to nail +C2866569|T037|HT|S91.103|ICD10CM|Unspecified open wound of unspecified great toe without damage to nail|Unspecified open wound of unspecified great toe without damage to nail +C2866570|T037|AB|S91.103A|ICD10CM|Unsp open wound of unsp great toe w/o damage to nail, init|Unsp open wound of unsp great toe w/o damage to nail, init +C2866570|T037|PT|S91.103A|ICD10CM|Unspecified open wound of unspecified great toe without damage to nail, initial encounter|Unspecified open wound of unspecified great toe without damage to nail, initial encounter +C2866571|T037|AB|S91.103D|ICD10CM|Unsp open wound of unsp great toe w/o damage to nail, subs|Unsp open wound of unsp great toe w/o damage to nail, subs +C2866571|T037|PT|S91.103D|ICD10CM|Unspecified open wound of unspecified great toe without damage to nail, subsequent encounter|Unspecified open wound of unspecified great toe without damage to nail, subsequent encounter +C2866572|T037|AB|S91.103S|ICD10CM|Unsp opn wnd unsp great toe w/o damage to nail, sequela|Unsp opn wnd unsp great toe w/o damage to nail, sequela +C2866572|T037|PT|S91.103S|ICD10CM|Unspecified open wound of unspecified great toe without damage to nail, sequela|Unspecified open wound of unspecified great toe without damage to nail, sequela +C2866573|T037|AB|S91.104|ICD10CM|Unsp open wound of right lesser toe(s) w/o damage to nail|Unsp open wound of right lesser toe(s) w/o damage to nail +C2866573|T037|HT|S91.104|ICD10CM|Unspecified open wound of right lesser toe(s) without damage to nail|Unspecified open wound of right lesser toe(s) without damage to nail +C2866574|T037|AB|S91.104A|ICD10CM|Unsp opn wnd right lesser toe(s) w/o damage to nail, init|Unsp opn wnd right lesser toe(s) w/o damage to nail, init +C2866574|T037|PT|S91.104A|ICD10CM|Unspecified open wound of right lesser toe(s) without damage to nail, initial encounter|Unspecified open wound of right lesser toe(s) without damage to nail, initial encounter +C2866575|T037|AB|S91.104D|ICD10CM|Unsp opn wnd right lesser toe(s) w/o damage to nail, subs|Unsp opn wnd right lesser toe(s) w/o damage to nail, subs +C2866575|T037|PT|S91.104D|ICD10CM|Unspecified open wound of right lesser toe(s) without damage to nail, subsequent encounter|Unspecified open wound of right lesser toe(s) without damage to nail, subsequent encounter +C2866576|T037|AB|S91.104S|ICD10CM|Unsp opn wnd right lesser toe(s) w/o damage to nail, sequela|Unsp opn wnd right lesser toe(s) w/o damage to nail, sequela +C2866576|T037|PT|S91.104S|ICD10CM|Unspecified open wound of right lesser toe(s) without damage to nail, sequela|Unspecified open wound of right lesser toe(s) without damage to nail, sequela +C2866577|T037|AB|S91.105|ICD10CM|Unsp open wound of left lesser toe(s) without damage to nail|Unsp open wound of left lesser toe(s) without damage to nail +C2866577|T037|HT|S91.105|ICD10CM|Unspecified open wound of left lesser toe(s) without damage to nail|Unspecified open wound of left lesser toe(s) without damage to nail +C2866578|T037|AB|S91.105A|ICD10CM|Unsp opn wnd left lesser toe(s) w/o damage to nail, init|Unsp opn wnd left lesser toe(s) w/o damage to nail, init +C2866578|T037|PT|S91.105A|ICD10CM|Unspecified open wound of left lesser toe(s) without damage to nail, initial encounter|Unspecified open wound of left lesser toe(s) without damage to nail, initial encounter +C2866579|T037|AB|S91.105D|ICD10CM|Unsp opn wnd left lesser toe(s) w/o damage to nail, subs|Unsp opn wnd left lesser toe(s) w/o damage to nail, subs +C2866579|T037|PT|S91.105D|ICD10CM|Unspecified open wound of left lesser toe(s) without damage to nail, subsequent encounter|Unspecified open wound of left lesser toe(s) without damage to nail, subsequent encounter +C2866580|T037|AB|S91.105S|ICD10CM|Unsp opn wnd left lesser toe(s) w/o damage to nail, sequela|Unsp opn wnd left lesser toe(s) w/o damage to nail, sequela +C2866580|T037|PT|S91.105S|ICD10CM|Unspecified open wound of left lesser toe(s) without damage to nail, sequela|Unspecified open wound of left lesser toe(s) without damage to nail, sequela +C2866581|T037|AB|S91.106|ICD10CM|Unsp open wound of unsp lesser toe(s) without damage to nail|Unsp open wound of unsp lesser toe(s) without damage to nail +C2866581|T037|HT|S91.106|ICD10CM|Unspecified open wound of unspecified lesser toe(s) without damage to nail|Unspecified open wound of unspecified lesser toe(s) without damage to nail +C2866582|T037|AB|S91.106A|ICD10CM|Unsp opn wnd unsp lesser toe(s) w/o damage to nail, init|Unsp opn wnd unsp lesser toe(s) w/o damage to nail, init +C2866582|T037|PT|S91.106A|ICD10CM|Unspecified open wound of unspecified lesser toe(s) without damage to nail, initial encounter|Unspecified open wound of unspecified lesser toe(s) without damage to nail, initial encounter +C2866583|T037|AB|S91.106D|ICD10CM|Unsp opn wnd unsp lesser toe(s) w/o damage to nail, subs|Unsp opn wnd unsp lesser toe(s) w/o damage to nail, subs +C2866583|T037|PT|S91.106D|ICD10CM|Unspecified open wound of unspecified lesser toe(s) without damage to nail, subsequent encounter|Unspecified open wound of unspecified lesser toe(s) without damage to nail, subsequent encounter +C2866584|T037|AB|S91.106S|ICD10CM|Unsp opn wnd unsp lesser toe(s) w/o damage to nail, sequela|Unsp opn wnd unsp lesser toe(s) w/o damage to nail, sequela +C2866584|T037|PT|S91.106S|ICD10CM|Unspecified open wound of unspecified lesser toe(s) without damage to nail, sequela|Unspecified open wound of unspecified lesser toe(s) without damage to nail, sequela +C2866585|T037|AB|S91.109|ICD10CM|Unsp open wound of unspecified toe(s) without damage to nail|Unsp open wound of unspecified toe(s) without damage to nail +C2866585|T037|HT|S91.109|ICD10CM|Unspecified open wound of unspecified toe(s) without damage to nail|Unspecified open wound of unspecified toe(s) without damage to nail +C2866586|T037|AB|S91.109A|ICD10CM|Unsp open wound of unsp toe(s) w/o damage to nail, init|Unsp open wound of unsp toe(s) w/o damage to nail, init +C2866586|T037|PT|S91.109A|ICD10CM|Unspecified open wound of unspecified toe(s) without damage to nail, initial encounter|Unspecified open wound of unspecified toe(s) without damage to nail, initial encounter +C2866587|T037|AB|S91.109D|ICD10CM|Unsp open wound of unsp toe(s) w/o damage to nail, subs|Unsp open wound of unsp toe(s) w/o damage to nail, subs +C2866587|T037|PT|S91.109D|ICD10CM|Unspecified open wound of unspecified toe(s) without damage to nail, subsequent encounter|Unspecified open wound of unspecified toe(s) without damage to nail, subsequent encounter +C2866588|T037|AB|S91.109S|ICD10CM|Unsp open wound of unsp toe(s) w/o damage to nail, sequela|Unsp open wound of unsp toe(s) w/o damage to nail, sequela +C2866588|T037|PT|S91.109S|ICD10CM|Unspecified open wound of unspecified toe(s) without damage to nail, sequela|Unspecified open wound of unspecified toe(s) without damage to nail, sequela +C2866589|T037|AB|S91.11|ICD10CM|Laceration w/o foreign body of toe without damage to nail|Laceration w/o foreign body of toe without damage to nail +C2866589|T037|HT|S91.11|ICD10CM|Laceration without foreign body of toe without damage to nail|Laceration without foreign body of toe without damage to nail +C2866590|T037|AB|S91.111|ICD10CM|Laceration w/o fb of right great toe w/o damage to nail|Laceration w/o fb of right great toe w/o damage to nail +C2866590|T037|HT|S91.111|ICD10CM|Laceration without foreign body of right great toe without damage to nail|Laceration without foreign body of right great toe without damage to nail +C2866591|T037|AB|S91.111A|ICD10CM|Lac w/o fb of right great toe w/o damage to nail, init|Lac w/o fb of right great toe w/o damage to nail, init +C2866591|T037|PT|S91.111A|ICD10CM|Laceration without foreign body of right great toe without damage to nail, initial encounter|Laceration without foreign body of right great toe without damage to nail, initial encounter +C2866592|T037|AB|S91.111D|ICD10CM|Lac w/o fb of right great toe w/o damage to nail, subs|Lac w/o fb of right great toe w/o damage to nail, subs +C2866592|T037|PT|S91.111D|ICD10CM|Laceration without foreign body of right great toe without damage to nail, subsequent encounter|Laceration without foreign body of right great toe without damage to nail, subsequent encounter +C2866593|T037|AB|S91.111S|ICD10CM|Lac w/o fb of right great toe w/o damage to nail, sequela|Lac w/o fb of right great toe w/o damage to nail, sequela +C2866593|T037|PT|S91.111S|ICD10CM|Laceration without foreign body of right great toe without damage to nail, sequela|Laceration without foreign body of right great toe without damage to nail, sequela +C2866594|T037|AB|S91.112|ICD10CM|Laceration w/o fb of left great toe w/o damage to nail|Laceration w/o fb of left great toe w/o damage to nail +C2866594|T037|HT|S91.112|ICD10CM|Laceration without foreign body of left great toe without damage to nail|Laceration without foreign body of left great toe without damage to nail +C2866595|T037|AB|S91.112A|ICD10CM|Laceration w/o fb of left great toe w/o damage to nail, init|Laceration w/o fb of left great toe w/o damage to nail, init +C2866595|T037|PT|S91.112A|ICD10CM|Laceration without foreign body of left great toe without damage to nail, initial encounter|Laceration without foreign body of left great toe without damage to nail, initial encounter +C2866596|T037|AB|S91.112D|ICD10CM|Laceration w/o fb of left great toe w/o damage to nail, subs|Laceration w/o fb of left great toe w/o damage to nail, subs +C2866596|T037|PT|S91.112D|ICD10CM|Laceration without foreign body of left great toe without damage to nail, subsequent encounter|Laceration without foreign body of left great toe without damage to nail, subsequent encounter +C2866597|T037|AB|S91.112S|ICD10CM|Lac w/o fb of left great toe w/o damage to nail, sequela|Lac w/o fb of left great toe w/o damage to nail, sequela +C2866597|T037|PT|S91.112S|ICD10CM|Laceration without foreign body of left great toe without damage to nail, sequela|Laceration without foreign body of left great toe without damage to nail, sequela +C2866598|T037|AB|S91.113|ICD10CM|Laceration w/o fb of unsp great toe w/o damage to nail|Laceration w/o fb of unsp great toe w/o damage to nail +C2866598|T037|HT|S91.113|ICD10CM|Laceration without foreign body of unspecified great toe without damage to nail|Laceration without foreign body of unspecified great toe without damage to nail +C2866599|T037|AB|S91.113A|ICD10CM|Laceration w/o fb of unsp great toe w/o damage to nail, init|Laceration w/o fb of unsp great toe w/o damage to nail, init +C2866599|T037|PT|S91.113A|ICD10CM|Laceration without foreign body of unspecified great toe without damage to nail, initial encounter|Laceration without foreign body of unspecified great toe without damage to nail, initial encounter +C2866600|T037|AB|S91.113D|ICD10CM|Laceration w/o fb of unsp great toe w/o damage to nail, subs|Laceration w/o fb of unsp great toe w/o damage to nail, subs +C2866601|T037|AB|S91.113S|ICD10CM|Lac w/o fb of unsp great toe w/o damage to nail, sequela|Lac w/o fb of unsp great toe w/o damage to nail, sequela +C2866601|T037|PT|S91.113S|ICD10CM|Laceration without foreign body of unspecified great toe without damage to nail, sequela|Laceration without foreign body of unspecified great toe without damage to nail, sequela +C2866602|T037|AB|S91.114|ICD10CM|Laceration w/o fb of right lesser toe(s) w/o damage to nail|Laceration w/o fb of right lesser toe(s) w/o damage to nail +C2866602|T037|HT|S91.114|ICD10CM|Laceration without foreign body of right lesser toe(s) without damage to nail|Laceration without foreign body of right lesser toe(s) without damage to nail +C2866603|T037|AB|S91.114A|ICD10CM|Lac w/o fb of right lesser toe(s) w/o damage to nail, init|Lac w/o fb of right lesser toe(s) w/o damage to nail, init +C2866603|T037|PT|S91.114A|ICD10CM|Laceration without foreign body of right lesser toe(s) without damage to nail, initial encounter|Laceration without foreign body of right lesser toe(s) without damage to nail, initial encounter +C2866604|T037|AB|S91.114D|ICD10CM|Lac w/o fb of right lesser toe(s) w/o damage to nail, subs|Lac w/o fb of right lesser toe(s) w/o damage to nail, subs +C2866604|T037|PT|S91.114D|ICD10CM|Laceration without foreign body of right lesser toe(s) without damage to nail, subsequent encounter|Laceration without foreign body of right lesser toe(s) without damage to nail, subsequent encounter +C2866605|T037|AB|S91.114S|ICD10CM|Lac w/o fb of right lesser toe(s) w/o damage to nail, sqla|Lac w/o fb of right lesser toe(s) w/o damage to nail, sqla +C2866605|T037|PT|S91.114S|ICD10CM|Laceration without foreign body of right lesser toe(s) without damage to nail, sequela|Laceration without foreign body of right lesser toe(s) without damage to nail, sequela +C2866606|T037|AB|S91.115|ICD10CM|Laceration w/o fb of left lesser toe(s) w/o damage to nail|Laceration w/o fb of left lesser toe(s) w/o damage to nail +C2866606|T037|HT|S91.115|ICD10CM|Laceration without foreign body of left lesser toe(s) without damage to nail|Laceration without foreign body of left lesser toe(s) without damage to nail +C2866607|T037|AB|S91.115A|ICD10CM|Lac w/o fb of left lesser toe(s) w/o damage to nail, init|Lac w/o fb of left lesser toe(s) w/o damage to nail, init +C2866607|T037|PT|S91.115A|ICD10CM|Laceration without foreign body of left lesser toe(s) without damage to nail, initial encounter|Laceration without foreign body of left lesser toe(s) without damage to nail, initial encounter +C2866608|T037|AB|S91.115D|ICD10CM|Lac w/o fb of left lesser toe(s) w/o damage to nail, subs|Lac w/o fb of left lesser toe(s) w/o damage to nail, subs +C2866608|T037|PT|S91.115D|ICD10CM|Laceration without foreign body of left lesser toe(s) without damage to nail, subsequent encounter|Laceration without foreign body of left lesser toe(s) without damage to nail, subsequent encounter +C2866609|T037|AB|S91.115S|ICD10CM|Lac w/o fb of left lesser toe(s) w/o damage to nail, sequela|Lac w/o fb of left lesser toe(s) w/o damage to nail, sequela +C2866609|T037|PT|S91.115S|ICD10CM|Laceration without foreign body of left lesser toe(s) without damage to nail, sequela|Laceration without foreign body of left lesser toe(s) without damage to nail, sequela +C2866610|T037|AB|S91.116|ICD10CM|Laceration w/o fb of unsp lesser toe(s) w/o damage to nail|Laceration w/o fb of unsp lesser toe(s) w/o damage to nail +C2866610|T037|HT|S91.116|ICD10CM|Laceration without foreign body of unspecified lesser toe(s) without damage to nail|Laceration without foreign body of unspecified lesser toe(s) without damage to nail +C2866611|T037|AB|S91.116A|ICD10CM|Lac w/o fb of unsp lesser toe(s) w/o damage to nail, init|Lac w/o fb of unsp lesser toe(s) w/o damage to nail, init +C2866612|T037|AB|S91.116D|ICD10CM|Lac w/o fb of unsp lesser toe(s) w/o damage to nail, subs|Lac w/o fb of unsp lesser toe(s) w/o damage to nail, subs +C2866613|T037|AB|S91.116S|ICD10CM|Lac w/o fb of unsp lesser toe(s) w/o damage to nail, sequela|Lac w/o fb of unsp lesser toe(s) w/o damage to nail, sequela +C2866613|T037|PT|S91.116S|ICD10CM|Laceration without foreign body of unspecified lesser toe(s) without damage to nail, sequela|Laceration without foreign body of unspecified lesser toe(s) without damage to nail, sequela +C2866614|T037|AB|S91.119|ICD10CM|Laceration w/o foreign body of unsp toe w/o damage to nail|Laceration w/o foreign body of unsp toe w/o damage to nail +C2866614|T037|HT|S91.119|ICD10CM|Laceration without foreign body of unspecified toe without damage to nail|Laceration without foreign body of unspecified toe without damage to nail +C2866615|T037|AB|S91.119A|ICD10CM|Laceration w/o fb of unsp toe w/o damage to nail, init|Laceration w/o fb of unsp toe w/o damage to nail, init +C2866615|T037|PT|S91.119A|ICD10CM|Laceration without foreign body of unspecified toe without damage to nail, initial encounter|Laceration without foreign body of unspecified toe without damage to nail, initial encounter +C2866616|T037|AB|S91.119D|ICD10CM|Laceration w/o fb of unsp toe w/o damage to nail, subs|Laceration w/o fb of unsp toe w/o damage to nail, subs +C2866616|T037|PT|S91.119D|ICD10CM|Laceration without foreign body of unspecified toe without damage to nail, subsequent encounter|Laceration without foreign body of unspecified toe without damage to nail, subsequent encounter +C2866617|T037|AB|S91.119S|ICD10CM|Laceration w/o fb of unsp toe w/o damage to nail, sequela|Laceration w/o fb of unsp toe w/o damage to nail, sequela +C2866617|T037|PT|S91.119S|ICD10CM|Laceration without foreign body of unspecified toe without damage to nail, sequela|Laceration without foreign body of unspecified toe without damage to nail, sequela +C2866618|T037|AB|S91.12|ICD10CM|Laceration with foreign body of toe without damage to nail|Laceration with foreign body of toe without damage to nail +C2866618|T037|HT|S91.12|ICD10CM|Laceration with foreign body of toe without damage to nail|Laceration with foreign body of toe without damage to nail +C2866619|T037|AB|S91.121|ICD10CM|Laceration w fb of right great toe w/o damage to nail|Laceration w fb of right great toe w/o damage to nail +C2866619|T037|HT|S91.121|ICD10CM|Laceration with foreign body of right great toe without damage to nail|Laceration with foreign body of right great toe without damage to nail +C2866620|T037|AB|S91.121A|ICD10CM|Laceration w fb of right great toe w/o damage to nail, init|Laceration w fb of right great toe w/o damage to nail, init +C2866620|T037|PT|S91.121A|ICD10CM|Laceration with foreign body of right great toe without damage to nail, initial encounter|Laceration with foreign body of right great toe without damage to nail, initial encounter +C2866621|T037|AB|S91.121D|ICD10CM|Laceration w fb of right great toe w/o damage to nail, subs|Laceration w fb of right great toe w/o damage to nail, subs +C2866621|T037|PT|S91.121D|ICD10CM|Laceration with foreign body of right great toe without damage to nail, subsequent encounter|Laceration with foreign body of right great toe without damage to nail, subsequent encounter +C2866622|T037|AB|S91.121S|ICD10CM|Lac w fb of right great toe w/o damage to nail, sequela|Lac w fb of right great toe w/o damage to nail, sequela +C2866622|T037|PT|S91.121S|ICD10CM|Laceration with foreign body of right great toe without damage to nail, sequela|Laceration with foreign body of right great toe without damage to nail, sequela +C2866623|T037|AB|S91.122|ICD10CM|Laceration w fb of left great toe w/o damage to nail|Laceration w fb of left great toe w/o damage to nail +C2866623|T037|HT|S91.122|ICD10CM|Laceration with foreign body of left great toe without damage to nail|Laceration with foreign body of left great toe without damage to nail +C2866624|T037|AB|S91.122A|ICD10CM|Laceration w fb of left great toe w/o damage to nail, init|Laceration w fb of left great toe w/o damage to nail, init +C2866624|T037|PT|S91.122A|ICD10CM|Laceration with foreign body of left great toe without damage to nail, initial encounter|Laceration with foreign body of left great toe without damage to nail, initial encounter +C2866625|T037|AB|S91.122D|ICD10CM|Laceration w fb of left great toe w/o damage to nail, subs|Laceration w fb of left great toe w/o damage to nail, subs +C2866625|T037|PT|S91.122D|ICD10CM|Laceration with foreign body of left great toe without damage to nail, subsequent encounter|Laceration with foreign body of left great toe without damage to nail, subsequent encounter +C2866626|T037|AB|S91.122S|ICD10CM|Lac w fb of left great toe w/o damage to nail, sequela|Lac w fb of left great toe w/o damage to nail, sequela +C2866626|T037|PT|S91.122S|ICD10CM|Laceration with foreign body of left great toe without damage to nail, sequela|Laceration with foreign body of left great toe without damage to nail, sequela +C2866627|T037|AB|S91.123|ICD10CM|Laceration w fb of unsp great toe w/o damage to nail|Laceration w fb of unsp great toe w/o damage to nail +C2866627|T037|HT|S91.123|ICD10CM|Laceration with foreign body of unspecified great toe without damage to nail|Laceration with foreign body of unspecified great toe without damage to nail +C2866628|T037|AB|S91.123A|ICD10CM|Laceration w fb of unsp great toe w/o damage to nail, init|Laceration w fb of unsp great toe w/o damage to nail, init +C2866628|T037|PT|S91.123A|ICD10CM|Laceration with foreign body of unspecified great toe without damage to nail, initial encounter|Laceration with foreign body of unspecified great toe without damage to nail, initial encounter +C2866629|T037|AB|S91.123D|ICD10CM|Laceration w fb of unsp great toe w/o damage to nail, subs|Laceration w fb of unsp great toe w/o damage to nail, subs +C2866629|T037|PT|S91.123D|ICD10CM|Laceration with foreign body of unspecified great toe without damage to nail, subsequent encounter|Laceration with foreign body of unspecified great toe without damage to nail, subsequent encounter +C2866630|T037|AB|S91.123S|ICD10CM|Lac w fb of unsp great toe w/o damage to nail, sequela|Lac w fb of unsp great toe w/o damage to nail, sequela +C2866630|T037|PT|S91.123S|ICD10CM|Laceration with foreign body of unspecified great toe without damage to nail, sequela|Laceration with foreign body of unspecified great toe without damage to nail, sequela +C2866631|T037|AB|S91.124|ICD10CM|Laceration w fb of right lesser toe(s) w/o damage to nail|Laceration w fb of right lesser toe(s) w/o damage to nail +C2866631|T037|HT|S91.124|ICD10CM|Laceration with foreign body of right lesser toe(s) without damage to nail|Laceration with foreign body of right lesser toe(s) without damage to nail +C2866632|T037|AB|S91.124A|ICD10CM|Lac w fb of right lesser toe(s) w/o damage to nail, init|Lac w fb of right lesser toe(s) w/o damage to nail, init +C2866632|T037|PT|S91.124A|ICD10CM|Laceration with foreign body of right lesser toe(s) without damage to nail, initial encounter|Laceration with foreign body of right lesser toe(s) without damage to nail, initial encounter +C2866633|T037|AB|S91.124D|ICD10CM|Lac w fb of right lesser toe(s) w/o damage to nail, subs|Lac w fb of right lesser toe(s) w/o damage to nail, subs +C2866633|T037|PT|S91.124D|ICD10CM|Laceration with foreign body of right lesser toe(s) without damage to nail, subsequent encounter|Laceration with foreign body of right lesser toe(s) without damage to nail, subsequent encounter +C2866634|T037|AB|S91.124S|ICD10CM|Lac w fb of right lesser toe(s) w/o damage to nail, sequela|Lac w fb of right lesser toe(s) w/o damage to nail, sequela +C2866634|T037|PT|S91.124S|ICD10CM|Laceration with foreign body of right lesser toe(s) without damage to nail, sequela|Laceration with foreign body of right lesser toe(s) without damage to nail, sequela +C2866635|T037|AB|S91.125|ICD10CM|Laceration w fb of left lesser toe(s) w/o damage to nail|Laceration w fb of left lesser toe(s) w/o damage to nail +C2866635|T037|HT|S91.125|ICD10CM|Laceration with foreign body of left lesser toe(s) without damage to nail|Laceration with foreign body of left lesser toe(s) without damage to nail +C2866636|T037|AB|S91.125A|ICD10CM|Lac w fb of left lesser toe(s) w/o damage to nail, init|Lac w fb of left lesser toe(s) w/o damage to nail, init +C2866636|T037|PT|S91.125A|ICD10CM|Laceration with foreign body of left lesser toe(s) without damage to nail, initial encounter|Laceration with foreign body of left lesser toe(s) without damage to nail, initial encounter +C2866637|T037|AB|S91.125D|ICD10CM|Lac w fb of left lesser toe(s) w/o damage to nail, subs|Lac w fb of left lesser toe(s) w/o damage to nail, subs +C2866637|T037|PT|S91.125D|ICD10CM|Laceration with foreign body of left lesser toe(s) without damage to nail, subsequent encounter|Laceration with foreign body of left lesser toe(s) without damage to nail, subsequent encounter +C2866638|T037|AB|S91.125S|ICD10CM|Lac w fb of left lesser toe(s) w/o damage to nail, sequela|Lac w fb of left lesser toe(s) w/o damage to nail, sequela +C2866638|T037|PT|S91.125S|ICD10CM|Laceration with foreign body of left lesser toe(s) without damage to nail, sequela|Laceration with foreign body of left lesser toe(s) without damage to nail, sequela +C2866639|T037|AB|S91.126|ICD10CM|Laceration w fb of unsp lesser toe(s) w/o damage to nail|Laceration w fb of unsp lesser toe(s) w/o damage to nail +C2866639|T037|HT|S91.126|ICD10CM|Laceration with foreign body of unspecified lesser toe(s) without damage to nail|Laceration with foreign body of unspecified lesser toe(s) without damage to nail +C2866640|T037|AB|S91.126A|ICD10CM|Lac w fb of unsp lesser toe(s) w/o damage to nail, init|Lac w fb of unsp lesser toe(s) w/o damage to nail, init +C2866640|T037|PT|S91.126A|ICD10CM|Laceration with foreign body of unspecified lesser toe(s) without damage to nail, initial encounter|Laceration with foreign body of unspecified lesser toe(s) without damage to nail, initial encounter +C2866641|T037|AB|S91.126D|ICD10CM|Lac w fb of unsp lesser toe(s) w/o damage to nail, subs|Lac w fb of unsp lesser toe(s) w/o damage to nail, subs +C2866642|T037|AB|S91.126S|ICD10CM|Lac w fb of unsp lesser toe(s) w/o damage to nail, sequela|Lac w fb of unsp lesser toe(s) w/o damage to nail, sequela +C2866642|T037|PT|S91.126S|ICD10CM|Laceration with foreign body of unspecified lesser toe(s) without damage to nail, sequela|Laceration with foreign body of unspecified lesser toe(s) without damage to nail, sequela +C2866643|T037|AB|S91.129|ICD10CM|Laceration w foreign body of unsp toe(s) w/o damage to nail|Laceration w foreign body of unsp toe(s) w/o damage to nail +C2866643|T037|HT|S91.129|ICD10CM|Laceration with foreign body of unspecified toe(s) without damage to nail|Laceration with foreign body of unspecified toe(s) without damage to nail +C2866644|T037|AB|S91.129A|ICD10CM|Laceration w fb of unsp toe(s) w/o damage to nail, init|Laceration w fb of unsp toe(s) w/o damage to nail, init +C2866644|T037|PT|S91.129A|ICD10CM|Laceration with foreign body of unspecified toe(s) without damage to nail, initial encounter|Laceration with foreign body of unspecified toe(s) without damage to nail, initial encounter +C2866645|T037|AB|S91.129D|ICD10CM|Laceration w fb of unsp toe(s) w/o damage to nail, subs|Laceration w fb of unsp toe(s) w/o damage to nail, subs +C2866645|T037|PT|S91.129D|ICD10CM|Laceration with foreign body of unspecified toe(s) without damage to nail, subsequent encounter|Laceration with foreign body of unspecified toe(s) without damage to nail, subsequent encounter +C2866646|T037|AB|S91.129S|ICD10CM|Laceration w fb of unsp toe(s) w/o damage to nail, sequela|Laceration w fb of unsp toe(s) w/o damage to nail, sequela +C2866646|T037|PT|S91.129S|ICD10CM|Laceration with foreign body of unspecified toe(s) without damage to nail, sequela|Laceration with foreign body of unspecified toe(s) without damage to nail, sequela +C2866647|T037|AB|S91.13|ICD10CM|Puncture wound w/o foreign body of toe w/o damage to nail|Puncture wound w/o foreign body of toe w/o damage to nail +C2866647|T037|HT|S91.13|ICD10CM|Puncture wound without foreign body of toe without damage to nail|Puncture wound without foreign body of toe without damage to nail +C2866648|T037|AB|S91.131|ICD10CM|Pnctr w/o foreign body of right great toe w/o damage to nail|Pnctr w/o foreign body of right great toe w/o damage to nail +C2866648|T037|HT|S91.131|ICD10CM|Puncture wound without foreign body of right great toe without damage to nail|Puncture wound without foreign body of right great toe without damage to nail +C2866649|T037|AB|S91.131A|ICD10CM|Pnctr w/o fb of right great toe w/o damage to nail, init|Pnctr w/o fb of right great toe w/o damage to nail, init +C2866649|T037|PT|S91.131A|ICD10CM|Puncture wound without foreign body of right great toe without damage to nail, initial encounter|Puncture wound without foreign body of right great toe without damage to nail, initial encounter +C2866650|T037|AB|S91.131D|ICD10CM|Pnctr w/o fb of right great toe w/o damage to nail, subs|Pnctr w/o fb of right great toe w/o damage to nail, subs +C2866650|T037|PT|S91.131D|ICD10CM|Puncture wound without foreign body of right great toe without damage to nail, subsequent encounter|Puncture wound without foreign body of right great toe without damage to nail, subsequent encounter +C2866651|T037|AB|S91.131S|ICD10CM|Pnctr w/o fb of right great toe w/o damage to nail, sequela|Pnctr w/o fb of right great toe w/o damage to nail, sequela +C2866651|T037|PT|S91.131S|ICD10CM|Puncture wound without foreign body of right great toe without damage to nail, sequela|Puncture wound without foreign body of right great toe without damage to nail, sequela +C2866652|T037|AB|S91.132|ICD10CM|Pnctr w/o foreign body of left great toe w/o damage to nail|Pnctr w/o foreign body of left great toe w/o damage to nail +C2866652|T037|HT|S91.132|ICD10CM|Puncture wound without foreign body of left great toe without damage to nail|Puncture wound without foreign body of left great toe without damage to nail +C2866653|T037|AB|S91.132A|ICD10CM|Pnctr w/o fb of left great toe w/o damage to nail, init|Pnctr w/o fb of left great toe w/o damage to nail, init +C2866653|T037|PT|S91.132A|ICD10CM|Puncture wound without foreign body of left great toe without damage to nail, initial encounter|Puncture wound without foreign body of left great toe without damage to nail, initial encounter +C2866654|T037|AB|S91.132D|ICD10CM|Pnctr w/o fb of left great toe w/o damage to nail, subs|Pnctr w/o fb of left great toe w/o damage to nail, subs +C2866654|T037|PT|S91.132D|ICD10CM|Puncture wound without foreign body of left great toe without damage to nail, subsequent encounter|Puncture wound without foreign body of left great toe without damage to nail, subsequent encounter +C2866655|T037|AB|S91.132S|ICD10CM|Pnctr w/o fb of left great toe w/o damage to nail, sequela|Pnctr w/o fb of left great toe w/o damage to nail, sequela +C2866655|T037|PT|S91.132S|ICD10CM|Puncture wound without foreign body of left great toe without damage to nail, sequela|Puncture wound without foreign body of left great toe without damage to nail, sequela +C2866656|T037|AB|S91.133|ICD10CM|Pnctr w/o foreign body of unsp great toe w/o damage to nail|Pnctr w/o foreign body of unsp great toe w/o damage to nail +C2866656|T037|HT|S91.133|ICD10CM|Puncture wound without foreign body of unspecified great toe without damage to nail|Puncture wound without foreign body of unspecified great toe without damage to nail +C2866657|T037|AB|S91.133A|ICD10CM|Pnctr w/o fb of unsp great toe w/o damage to nail, init|Pnctr w/o fb of unsp great toe w/o damage to nail, init +C2866658|T037|AB|S91.133D|ICD10CM|Pnctr w/o fb of unsp great toe w/o damage to nail, subs|Pnctr w/o fb of unsp great toe w/o damage to nail, subs +C2866659|T037|AB|S91.133S|ICD10CM|Pnctr w/o fb of unsp great toe w/o damage to nail, sequela|Pnctr w/o fb of unsp great toe w/o damage to nail, sequela +C2866659|T037|PT|S91.133S|ICD10CM|Puncture wound without foreign body of unspecified great toe without damage to nail, sequela|Puncture wound without foreign body of unspecified great toe without damage to nail, sequela +C2866660|T037|AB|S91.134|ICD10CM|Pnctr w/o fb of right lesser toe(s) w/o damage to nail|Pnctr w/o fb of right lesser toe(s) w/o damage to nail +C2866660|T037|HT|S91.134|ICD10CM|Puncture wound without foreign body of right lesser toe(s) without damage to nail|Puncture wound without foreign body of right lesser toe(s) without damage to nail +C2866661|T037|AB|S91.134A|ICD10CM|Pnctr w/o fb of right lesser toe(s) w/o damage to nail, init|Pnctr w/o fb of right lesser toe(s) w/o damage to nail, init +C2866661|T037|PT|S91.134A|ICD10CM|Puncture wound without foreign body of right lesser toe(s) without damage to nail, initial encounter|Puncture wound without foreign body of right lesser toe(s) without damage to nail, initial encounter +C2866662|T037|AB|S91.134D|ICD10CM|Pnctr w/o fb of right lesser toe(s) w/o damage to nail, subs|Pnctr w/o fb of right lesser toe(s) w/o damage to nail, subs +C2866663|T037|AB|S91.134S|ICD10CM|Pnctr w/o fb of right lesser toe(s) w/o damage to nail, sqla|Pnctr w/o fb of right lesser toe(s) w/o damage to nail, sqla +C2866663|T037|PT|S91.134S|ICD10CM|Puncture wound without foreign body of right lesser toe(s) without damage to nail, sequela|Puncture wound without foreign body of right lesser toe(s) without damage to nail, sequela +C2866664|T037|AB|S91.135|ICD10CM|Pnctr w/o fb of left lesser toe(s) w/o damage to nail|Pnctr w/o fb of left lesser toe(s) w/o damage to nail +C2866664|T037|HT|S91.135|ICD10CM|Puncture wound without foreign body of left lesser toe(s) without damage to nail|Puncture wound without foreign body of left lesser toe(s) without damage to nail +C2866665|T037|AB|S91.135A|ICD10CM|Pnctr w/o fb of left lesser toe(s) w/o damage to nail, init|Pnctr w/o fb of left lesser toe(s) w/o damage to nail, init +C2866665|T037|PT|S91.135A|ICD10CM|Puncture wound without foreign body of left lesser toe(s) without damage to nail, initial encounter|Puncture wound without foreign body of left lesser toe(s) without damage to nail, initial encounter +C2866666|T037|AB|S91.135D|ICD10CM|Pnctr w/o fb of left lesser toe(s) w/o damage to nail, subs|Pnctr w/o fb of left lesser toe(s) w/o damage to nail, subs +C2866667|T037|AB|S91.135S|ICD10CM|Pnctr w/o fb of left lesser toe(s) w/o damage to nail, sqla|Pnctr w/o fb of left lesser toe(s) w/o damage to nail, sqla +C2866667|T037|PT|S91.135S|ICD10CM|Puncture wound without foreign body of left lesser toe(s) without damage to nail, sequela|Puncture wound without foreign body of left lesser toe(s) without damage to nail, sequela +C2866668|T037|AB|S91.136|ICD10CM|Pnctr w/o fb of unsp lesser toe(s) w/o damage to nail|Pnctr w/o fb of unsp lesser toe(s) w/o damage to nail +C2866668|T037|HT|S91.136|ICD10CM|Puncture wound without foreign body of unspecified lesser toe(s) without damage to nail|Puncture wound without foreign body of unspecified lesser toe(s) without damage to nail +C2866669|T037|AB|S91.136A|ICD10CM|Pnctr w/o fb of unsp lesser toe(s) w/o damage to nail, init|Pnctr w/o fb of unsp lesser toe(s) w/o damage to nail, init +C2866670|T037|AB|S91.136D|ICD10CM|Pnctr w/o fb of unsp lesser toe(s) w/o damage to nail, subs|Pnctr w/o fb of unsp lesser toe(s) w/o damage to nail, subs +C2866671|T037|AB|S91.136S|ICD10CM|Pnctr w/o fb of unsp lesser toe(s) w/o damage to nail, sqla|Pnctr w/o fb of unsp lesser toe(s) w/o damage to nail, sqla +C2866671|T037|PT|S91.136S|ICD10CM|Puncture wound without foreign body of unspecified lesser toe(s) without damage to nail, sequela|Puncture wound without foreign body of unspecified lesser toe(s) without damage to nail, sequela +C2866672|T037|AB|S91.139|ICD10CM|Pnctr w/o foreign body of unsp toe(s) w/o damage to nail|Pnctr w/o foreign body of unsp toe(s) w/o damage to nail +C2866672|T037|HT|S91.139|ICD10CM|Puncture wound without foreign body of unspecified toe(s) without damage to nail|Puncture wound without foreign body of unspecified toe(s) without damage to nail +C2866673|T037|AB|S91.139A|ICD10CM|Pnctr w/o fb of unsp toe(s) w/o damage to nail, init|Pnctr w/o fb of unsp toe(s) w/o damage to nail, init +C2866673|T037|PT|S91.139A|ICD10CM|Puncture wound without foreign body of unspecified toe(s) without damage to nail, initial encounter|Puncture wound without foreign body of unspecified toe(s) without damage to nail, initial encounter +C2866674|T037|AB|S91.139D|ICD10CM|Pnctr w/o fb of unsp toe(s) w/o damage to nail, subs|Pnctr w/o fb of unsp toe(s) w/o damage to nail, subs +C2866675|T037|AB|S91.139S|ICD10CM|Pnctr w/o fb of unsp toe(s) w/o damage to nail, sequela|Pnctr w/o fb of unsp toe(s) w/o damage to nail, sequela +C2866675|T037|PT|S91.139S|ICD10CM|Puncture wound without foreign body of unspecified toe(s) without damage to nail, sequela|Puncture wound without foreign body of unspecified toe(s) without damage to nail, sequela +C2866676|T037|AB|S91.14|ICD10CM|Puncture wound with foreign body of toe w/o damage to nail|Puncture wound with foreign body of toe w/o damage to nail +C2866676|T037|HT|S91.14|ICD10CM|Puncture wound with foreign body of toe without damage to nail|Puncture wound with foreign body of toe without damage to nail +C2866677|T037|AB|S91.141|ICD10CM|Pnctr w foreign body of right great toe w/o damage to nail|Pnctr w foreign body of right great toe w/o damage to nail +C2866677|T037|HT|S91.141|ICD10CM|Puncture wound with foreign body of right great toe without damage to nail|Puncture wound with foreign body of right great toe without damage to nail +C2866678|T037|AB|S91.141A|ICD10CM|Pnctr w fb of right great toe w/o damage to nail, init|Pnctr w fb of right great toe w/o damage to nail, init +C2866678|T037|PT|S91.141A|ICD10CM|Puncture wound with foreign body of right great toe without damage to nail, initial encounter|Puncture wound with foreign body of right great toe without damage to nail, initial encounter +C2866679|T037|AB|S91.141D|ICD10CM|Pnctr w fb of right great toe w/o damage to nail, subs|Pnctr w fb of right great toe w/o damage to nail, subs +C2866679|T037|PT|S91.141D|ICD10CM|Puncture wound with foreign body of right great toe without damage to nail, subsequent encounter|Puncture wound with foreign body of right great toe without damage to nail, subsequent encounter +C2866680|T037|AB|S91.141S|ICD10CM|Pnctr w fb of right great toe w/o damage to nail, sequela|Pnctr w fb of right great toe w/o damage to nail, sequela +C2866680|T037|PT|S91.141S|ICD10CM|Puncture wound with foreign body of right great toe without damage to nail, sequela|Puncture wound with foreign body of right great toe without damage to nail, sequela +C2866681|T037|AB|S91.142|ICD10CM|Pnctr w foreign body of left great toe w/o damage to nail|Pnctr w foreign body of left great toe w/o damage to nail +C2866681|T037|HT|S91.142|ICD10CM|Puncture wound with foreign body of left great toe without damage to nail|Puncture wound with foreign body of left great toe without damage to nail +C2866682|T037|AB|S91.142A|ICD10CM|Pnctr w fb of left great toe w/o damage to nail, init|Pnctr w fb of left great toe w/o damage to nail, init +C2866682|T037|PT|S91.142A|ICD10CM|Puncture wound with foreign body of left great toe without damage to nail, initial encounter|Puncture wound with foreign body of left great toe without damage to nail, initial encounter +C2866683|T037|AB|S91.142D|ICD10CM|Pnctr w fb of left great toe w/o damage to nail, subs|Pnctr w fb of left great toe w/o damage to nail, subs +C2866683|T037|PT|S91.142D|ICD10CM|Puncture wound with foreign body of left great toe without damage to nail, subsequent encounter|Puncture wound with foreign body of left great toe without damage to nail, subsequent encounter +C2866684|T037|AB|S91.142S|ICD10CM|Pnctr w fb of left great toe w/o damage to nail, sequela|Pnctr w fb of left great toe w/o damage to nail, sequela +C2866684|T037|PT|S91.142S|ICD10CM|Puncture wound with foreign body of left great toe without damage to nail, sequela|Puncture wound with foreign body of left great toe without damage to nail, sequela +C2866685|T037|AB|S91.143|ICD10CM|Pnctr w foreign body of unsp great toe w/o damage to nail|Pnctr w foreign body of unsp great toe w/o damage to nail +C2866685|T037|HT|S91.143|ICD10CM|Puncture wound with foreign body of unspecified great toe without damage to nail|Puncture wound with foreign body of unspecified great toe without damage to nail +C2866686|T037|AB|S91.143A|ICD10CM|Pnctr w fb of unsp great toe w/o damage to nail, init|Pnctr w fb of unsp great toe w/o damage to nail, init +C2866686|T037|PT|S91.143A|ICD10CM|Puncture wound with foreign body of unspecified great toe without damage to nail, initial encounter|Puncture wound with foreign body of unspecified great toe without damage to nail, initial encounter +C2866687|T037|AB|S91.143D|ICD10CM|Pnctr w fb of unsp great toe w/o damage to nail, subs|Pnctr w fb of unsp great toe w/o damage to nail, subs +C2866688|T037|AB|S91.143S|ICD10CM|Pnctr w fb of unsp great toe w/o damage to nail, sequela|Pnctr w fb of unsp great toe w/o damage to nail, sequela +C2866688|T037|PT|S91.143S|ICD10CM|Puncture wound with foreign body of unspecified great toe without damage to nail, sequela|Puncture wound with foreign body of unspecified great toe without damage to nail, sequela +C2866689|T037|AB|S91.144|ICD10CM|Pnctr w fb of right lesser toe(s) w/o damage to nail|Pnctr w fb of right lesser toe(s) w/o damage to nail +C2866689|T037|HT|S91.144|ICD10CM|Puncture wound with foreign body of right lesser toe(s) without damage to nail|Puncture wound with foreign body of right lesser toe(s) without damage to nail +C2866690|T037|AB|S91.144A|ICD10CM|Pnctr w fb of right lesser toe(s) w/o damage to nail, init|Pnctr w fb of right lesser toe(s) w/o damage to nail, init +C2866690|T037|PT|S91.144A|ICD10CM|Puncture wound with foreign body of right lesser toe(s) without damage to nail, initial encounter|Puncture wound with foreign body of right lesser toe(s) without damage to nail, initial encounter +C2866691|T037|AB|S91.144D|ICD10CM|Pnctr w fb of right lesser toe(s) w/o damage to nail, subs|Pnctr w fb of right lesser toe(s) w/o damage to nail, subs +C2866691|T037|PT|S91.144D|ICD10CM|Puncture wound with foreign body of right lesser toe(s) without damage to nail, subsequent encounter|Puncture wound with foreign body of right lesser toe(s) without damage to nail, subsequent encounter +C2866692|T037|AB|S91.144S|ICD10CM|Pnctr w fb of right lesser toe(s) w/o damage to nail, sqla|Pnctr w fb of right lesser toe(s) w/o damage to nail, sqla +C2866692|T037|PT|S91.144S|ICD10CM|Puncture wound with foreign body of right lesser toe(s) without damage to nail, sequela|Puncture wound with foreign body of right lesser toe(s) without damage to nail, sequela +C2866693|T037|AB|S91.145|ICD10CM|Pnctr w fb of left lesser toe(s) w/o damage to nail|Pnctr w fb of left lesser toe(s) w/o damage to nail +C2866693|T037|HT|S91.145|ICD10CM|Puncture wound with foreign body of left lesser toe(s) without damage to nail|Puncture wound with foreign body of left lesser toe(s) without damage to nail +C2866694|T037|AB|S91.145A|ICD10CM|Pnctr w fb of left lesser toe(s) w/o damage to nail, init|Pnctr w fb of left lesser toe(s) w/o damage to nail, init +C2866694|T037|PT|S91.145A|ICD10CM|Puncture wound with foreign body of left lesser toe(s) without damage to nail, initial encounter|Puncture wound with foreign body of left lesser toe(s) without damage to nail, initial encounter +C2866695|T037|AB|S91.145D|ICD10CM|Pnctr w fb of left lesser toe(s) w/o damage to nail, subs|Pnctr w fb of left lesser toe(s) w/o damage to nail, subs +C2866695|T037|PT|S91.145D|ICD10CM|Puncture wound with foreign body of left lesser toe(s) without damage to nail, subsequent encounter|Puncture wound with foreign body of left lesser toe(s) without damage to nail, subsequent encounter +C2866696|T037|AB|S91.145S|ICD10CM|Pnctr w fb of left lesser toe(s) w/o damage to nail, sequela|Pnctr w fb of left lesser toe(s) w/o damage to nail, sequela +C2866696|T037|PT|S91.145S|ICD10CM|Puncture wound with foreign body of left lesser toe(s) without damage to nail, sequela|Puncture wound with foreign body of left lesser toe(s) without damage to nail, sequela +C2866697|T037|AB|S91.146|ICD10CM|Pnctr w fb of unsp lesser toe(s) w/o damage to nail|Pnctr w fb of unsp lesser toe(s) w/o damage to nail +C2866697|T037|HT|S91.146|ICD10CM|Puncture wound with foreign body of unspecified lesser toe(s) without damage to nail|Puncture wound with foreign body of unspecified lesser toe(s) without damage to nail +C2866698|T037|AB|S91.146A|ICD10CM|Pnctr w fb of unsp lesser toe(s) w/o damage to nail, init|Pnctr w fb of unsp lesser toe(s) w/o damage to nail, init +C2866699|T037|AB|S91.146D|ICD10CM|Pnctr w fb of unsp lesser toe(s) w/o damage to nail, subs|Pnctr w fb of unsp lesser toe(s) w/o damage to nail, subs +C2866700|T037|AB|S91.146S|ICD10CM|Pnctr w fb of unsp lesser toe(s) w/o damage to nail, sequela|Pnctr w fb of unsp lesser toe(s) w/o damage to nail, sequela +C2866700|T037|PT|S91.146S|ICD10CM|Puncture wound with foreign body of unspecified lesser toe(s) without damage to nail, sequela|Puncture wound with foreign body of unspecified lesser toe(s) without damage to nail, sequela +C2866701|T037|AB|S91.149|ICD10CM|Pnctr w foreign body of unsp toe(s) w/o damage to nail|Pnctr w foreign body of unsp toe(s) w/o damage to nail +C2866701|T037|HT|S91.149|ICD10CM|Puncture wound with foreign body of unspecified toe(s) without damage to nail|Puncture wound with foreign body of unspecified toe(s) without damage to nail +C2866702|T037|AB|S91.149A|ICD10CM|Pnctr w foreign body of unsp toe(s) w/o damage to nail, init|Pnctr w foreign body of unsp toe(s) w/o damage to nail, init +C2866702|T037|PT|S91.149A|ICD10CM|Puncture wound with foreign body of unspecified toe(s) without damage to nail, initial encounter|Puncture wound with foreign body of unspecified toe(s) without damage to nail, initial encounter +C2866703|T037|AB|S91.149D|ICD10CM|Pnctr w foreign body of unsp toe(s) w/o damage to nail, subs|Pnctr w foreign body of unsp toe(s) w/o damage to nail, subs +C2866703|T037|PT|S91.149D|ICD10CM|Puncture wound with foreign body of unspecified toe(s) without damage to nail, subsequent encounter|Puncture wound with foreign body of unspecified toe(s) without damage to nail, subsequent encounter +C2866704|T037|AB|S91.149S|ICD10CM|Pnctr w fb of unsp toe(s) w/o damage to nail, sequela|Pnctr w fb of unsp toe(s) w/o damage to nail, sequela +C2866704|T037|PT|S91.149S|ICD10CM|Puncture wound with foreign body of unspecified toe(s) without damage to nail, sequela|Puncture wound with foreign body of unspecified toe(s) without damage to nail, sequela +C2144348|T033|ET|S91.15|ICD10CM|Bite of toe NOS|Bite of toe NOS +C2866705|T037|HT|S91.15|ICD10CM|Open bite of toe without damage to nail|Open bite of toe without damage to nail +C2866705|T037|AB|S91.15|ICD10CM|Open bite of toe without damage to nail|Open bite of toe without damage to nail +C2866706|T037|AB|S91.151|ICD10CM|Open bite of right great toe without damage to nail|Open bite of right great toe without damage to nail +C2866706|T037|HT|S91.151|ICD10CM|Open bite of right great toe without damage to nail|Open bite of right great toe without damage to nail +C2866707|T037|AB|S91.151A|ICD10CM|Open bite of right great toe w/o damage to nail, init encntr|Open bite of right great toe w/o damage to nail, init encntr +C2866707|T037|PT|S91.151A|ICD10CM|Open bite of right great toe without damage to nail, initial encounter|Open bite of right great toe without damage to nail, initial encounter +C2866708|T037|AB|S91.151D|ICD10CM|Open bite of right great toe w/o damage to nail, subs encntr|Open bite of right great toe w/o damage to nail, subs encntr +C2866708|T037|PT|S91.151D|ICD10CM|Open bite of right great toe without damage to nail, subsequent encounter|Open bite of right great toe without damage to nail, subsequent encounter +C2866709|T037|AB|S91.151S|ICD10CM|Open bite of right great toe without damage to nail, sequela|Open bite of right great toe without damage to nail, sequela +C2866709|T037|PT|S91.151S|ICD10CM|Open bite of right great toe without damage to nail, sequela|Open bite of right great toe without damage to nail, sequela +C2866710|T037|AB|S91.152|ICD10CM|Open bite of left great toe without damage to nail|Open bite of left great toe without damage to nail +C2866710|T037|HT|S91.152|ICD10CM|Open bite of left great toe without damage to nail|Open bite of left great toe without damage to nail +C2866711|T037|AB|S91.152A|ICD10CM|Open bite of left great toe w/o damage to nail, init encntr|Open bite of left great toe w/o damage to nail, init encntr +C2866711|T037|PT|S91.152A|ICD10CM|Open bite of left great toe without damage to nail, initial encounter|Open bite of left great toe without damage to nail, initial encounter +C2866712|T037|AB|S91.152D|ICD10CM|Open bite of left great toe w/o damage to nail, subs encntr|Open bite of left great toe w/o damage to nail, subs encntr +C2866712|T037|PT|S91.152D|ICD10CM|Open bite of left great toe without damage to nail, subsequent encounter|Open bite of left great toe without damage to nail, subsequent encounter +C2866713|T037|AB|S91.152S|ICD10CM|Open bite of left great toe without damage to nail, sequela|Open bite of left great toe without damage to nail, sequela +C2866713|T037|PT|S91.152S|ICD10CM|Open bite of left great toe without damage to nail, sequela|Open bite of left great toe without damage to nail, sequela +C2866714|T037|AB|S91.153|ICD10CM|Open bite of unspecified great toe without damage to nail|Open bite of unspecified great toe without damage to nail +C2866714|T037|HT|S91.153|ICD10CM|Open bite of unspecified great toe without damage to nail|Open bite of unspecified great toe without damage to nail +C2866715|T037|AB|S91.153A|ICD10CM|Open bite of unsp great toe w/o damage to nail, init encntr|Open bite of unsp great toe w/o damage to nail, init encntr +C2866715|T037|PT|S91.153A|ICD10CM|Open bite of unspecified great toe without damage to nail, initial encounter|Open bite of unspecified great toe without damage to nail, initial encounter +C2866716|T037|AB|S91.153D|ICD10CM|Open bite of unsp great toe w/o damage to nail, subs encntr|Open bite of unsp great toe w/o damage to nail, subs encntr +C2866716|T037|PT|S91.153D|ICD10CM|Open bite of unspecified great toe without damage to nail, subsequent encounter|Open bite of unspecified great toe without damage to nail, subsequent encounter +C2866717|T037|AB|S91.153S|ICD10CM|Open bite of unsp great toe without damage to nail, sequela|Open bite of unsp great toe without damage to nail, sequela +C2866717|T037|PT|S91.153S|ICD10CM|Open bite of unspecified great toe without damage to nail, sequela|Open bite of unspecified great toe without damage to nail, sequela +C2866718|T037|AB|S91.154|ICD10CM|Open bite of right lesser toe(s) without damage to nail|Open bite of right lesser toe(s) without damage to nail +C2866718|T037|HT|S91.154|ICD10CM|Open bite of right lesser toe(s) without damage to nail|Open bite of right lesser toe(s) without damage to nail +C2866719|T037|AB|S91.154A|ICD10CM|Open bite of right lesser toe(s) w/o damage to nail, init|Open bite of right lesser toe(s) w/o damage to nail, init +C2866719|T037|PT|S91.154A|ICD10CM|Open bite of right lesser toe(s) without damage to nail, initial encounter|Open bite of right lesser toe(s) without damage to nail, initial encounter +C2866720|T037|AB|S91.154D|ICD10CM|Open bite of right lesser toe(s) w/o damage to nail, subs|Open bite of right lesser toe(s) w/o damage to nail, subs +C2866720|T037|PT|S91.154D|ICD10CM|Open bite of right lesser toe(s) without damage to nail, subsequent encounter|Open bite of right lesser toe(s) without damage to nail, subsequent encounter +C2866721|T037|AB|S91.154S|ICD10CM|Open bite of right lesser toe(s) w/o damage to nail, sequela|Open bite of right lesser toe(s) w/o damage to nail, sequela +C2866721|T037|PT|S91.154S|ICD10CM|Open bite of right lesser toe(s) without damage to nail, sequela|Open bite of right lesser toe(s) without damage to nail, sequela +C2866722|T037|AB|S91.155|ICD10CM|Open bite of left lesser toe(s) without damage to nail|Open bite of left lesser toe(s) without damage to nail +C2866722|T037|HT|S91.155|ICD10CM|Open bite of left lesser toe(s) without damage to nail|Open bite of left lesser toe(s) without damage to nail +C2866723|T037|AB|S91.155A|ICD10CM|Open bite of left lesser toe(s) w/o damage to nail, init|Open bite of left lesser toe(s) w/o damage to nail, init +C2866723|T037|PT|S91.155A|ICD10CM|Open bite of left lesser toe(s) without damage to nail, initial encounter|Open bite of left lesser toe(s) without damage to nail, initial encounter +C2866724|T037|AB|S91.155D|ICD10CM|Open bite of left lesser toe(s) w/o damage to nail, subs|Open bite of left lesser toe(s) w/o damage to nail, subs +C2866724|T037|PT|S91.155D|ICD10CM|Open bite of left lesser toe(s) without damage to nail, subsequent encounter|Open bite of left lesser toe(s) without damage to nail, subsequent encounter +C2866725|T037|AB|S91.155S|ICD10CM|Open bite of left lesser toe(s) w/o damage to nail, sequela|Open bite of left lesser toe(s) w/o damage to nail, sequela +C2866725|T037|PT|S91.155S|ICD10CM|Open bite of left lesser toe(s) without damage to nail, sequela|Open bite of left lesser toe(s) without damage to nail, sequela +C2866726|T037|AB|S91.156|ICD10CM|Open bite of unsp lesser toe(s) without damage to nail|Open bite of unsp lesser toe(s) without damage to nail +C2866726|T037|HT|S91.156|ICD10CM|Open bite of unspecified lesser toe(s) without damage to nail|Open bite of unspecified lesser toe(s) without damage to nail +C2866727|T037|AB|S91.156A|ICD10CM|Open bite of unsp lesser toe(s) w/o damage to nail, init|Open bite of unsp lesser toe(s) w/o damage to nail, init +C2866727|T037|PT|S91.156A|ICD10CM|Open bite of unspecified lesser toe(s) without damage to nail, initial encounter|Open bite of unspecified lesser toe(s) without damage to nail, initial encounter +C2866728|T037|AB|S91.156D|ICD10CM|Open bite of unsp lesser toe(s) w/o damage to nail, subs|Open bite of unsp lesser toe(s) w/o damage to nail, subs +C2866728|T037|PT|S91.156D|ICD10CM|Open bite of unspecified lesser toe(s) without damage to nail, subsequent encounter|Open bite of unspecified lesser toe(s) without damage to nail, subsequent encounter +C2866729|T037|AB|S91.156S|ICD10CM|Open bite of unsp lesser toe(s) w/o damage to nail, sequela|Open bite of unsp lesser toe(s) w/o damage to nail, sequela +C2866729|T037|PT|S91.156S|ICD10CM|Open bite of unspecified lesser toe(s) without damage to nail, sequela|Open bite of unspecified lesser toe(s) without damage to nail, sequela +C2866730|T037|AB|S91.159|ICD10CM|Open bite of unspecified toe(s) without damage to nail|Open bite of unspecified toe(s) without damage to nail +C2866730|T037|HT|S91.159|ICD10CM|Open bite of unspecified toe(s) without damage to nail|Open bite of unspecified toe(s) without damage to nail +C2866731|T037|AB|S91.159A|ICD10CM|Open bite of unsp toe(s) without damage to nail, init encntr|Open bite of unsp toe(s) without damage to nail, init encntr +C2866731|T037|PT|S91.159A|ICD10CM|Open bite of unspecified toe(s) without damage to nail, initial encounter|Open bite of unspecified toe(s) without damage to nail, initial encounter +C2866732|T037|AB|S91.159D|ICD10CM|Open bite of unsp toe(s) without damage to nail, subs encntr|Open bite of unsp toe(s) without damage to nail, subs encntr +C2866732|T037|PT|S91.159D|ICD10CM|Open bite of unspecified toe(s) without damage to nail, subsequent encounter|Open bite of unspecified toe(s) without damage to nail, subsequent encounter +C2866733|T037|AB|S91.159S|ICD10CM|Open bite of unsp toe(s) without damage to nail, sequela|Open bite of unsp toe(s) without damage to nail, sequela +C2866733|T037|PT|S91.159S|ICD10CM|Open bite of unspecified toe(s) without damage to nail, sequela|Open bite of unspecified toe(s) without damage to nail, sequela +C0451915|T037|AB|S91.2|ICD10CM|Open wound of toe with damage to nail|Open wound of toe with damage to nail +C0451915|T037|HT|S91.2|ICD10CM|Open wound of toe with damage to nail|Open wound of toe with damage to nail +C0451915|T037|PT|S91.2|ICD10|Open wound of toe(s) with damage to nail|Open wound of toe(s) with damage to nail +C2866734|T037|AB|S91.20|ICD10CM|Unspecified open wound of toe with damage to nail|Unspecified open wound of toe with damage to nail +C2866734|T037|HT|S91.20|ICD10CM|Unspecified open wound of toe with damage to nail|Unspecified open wound of toe with damage to nail +C2866735|T037|AB|S91.201|ICD10CM|Unsp open wound of right great toe with damage to nail|Unsp open wound of right great toe with damage to nail +C2866735|T037|HT|S91.201|ICD10CM|Unspecified open wound of right great toe with damage to nail|Unspecified open wound of right great toe with damage to nail +C2866736|T037|AB|S91.201A|ICD10CM|Unsp open wound of right great toe w damage to nail, init|Unsp open wound of right great toe w damage to nail, init +C2866736|T037|PT|S91.201A|ICD10CM|Unspecified open wound of right great toe with damage to nail, initial encounter|Unspecified open wound of right great toe with damage to nail, initial encounter +C2866737|T037|AB|S91.201D|ICD10CM|Unsp open wound of right great toe w damage to nail, subs|Unsp open wound of right great toe w damage to nail, subs +C2866737|T037|PT|S91.201D|ICD10CM|Unspecified open wound of right great toe with damage to nail, subsequent encounter|Unspecified open wound of right great toe with damage to nail, subsequent encounter +C2866738|T037|AB|S91.201S|ICD10CM|Unsp open wound of right great toe w damage to nail, sequela|Unsp open wound of right great toe w damage to nail, sequela +C2866738|T037|PT|S91.201S|ICD10CM|Unspecified open wound of right great toe with damage to nail, sequela|Unspecified open wound of right great toe with damage to nail, sequela +C2866739|T037|AB|S91.202|ICD10CM|Unspecified open wound of left great toe with damage to nail|Unspecified open wound of left great toe with damage to nail +C2866739|T037|HT|S91.202|ICD10CM|Unspecified open wound of left great toe with damage to nail|Unspecified open wound of left great toe with damage to nail +C2866740|T037|AB|S91.202A|ICD10CM|Unsp open wound of left great toe w damage to nail, init|Unsp open wound of left great toe w damage to nail, init +C2866740|T037|PT|S91.202A|ICD10CM|Unspecified open wound of left great toe with damage to nail, initial encounter|Unspecified open wound of left great toe with damage to nail, initial encounter +C2866741|T037|AB|S91.202D|ICD10CM|Unsp open wound of left great toe w damage to nail, subs|Unsp open wound of left great toe w damage to nail, subs +C2866741|T037|PT|S91.202D|ICD10CM|Unspecified open wound of left great toe with damage to nail, subsequent encounter|Unspecified open wound of left great toe with damage to nail, subsequent encounter +C2866742|T037|AB|S91.202S|ICD10CM|Unsp open wound of left great toe w damage to nail, sequela|Unsp open wound of left great toe w damage to nail, sequela +C2866742|T037|PT|S91.202S|ICD10CM|Unspecified open wound of left great toe with damage to nail, sequela|Unspecified open wound of left great toe with damage to nail, sequela +C2866743|T037|AB|S91.203|ICD10CM|Unsp open wound of unspecified great toe with damage to nail|Unsp open wound of unspecified great toe with damage to nail +C2866743|T037|HT|S91.203|ICD10CM|Unspecified open wound of unspecified great toe with damage to nail|Unspecified open wound of unspecified great toe with damage to nail +C2866744|T037|AB|S91.203A|ICD10CM|Unsp open wound of unsp great toe w damage to nail, init|Unsp open wound of unsp great toe w damage to nail, init +C2866744|T037|PT|S91.203A|ICD10CM|Unspecified open wound of unspecified great toe with damage to nail, initial encounter|Unspecified open wound of unspecified great toe with damage to nail, initial encounter +C2866745|T037|AB|S91.203D|ICD10CM|Unsp open wound of unsp great toe w damage to nail, subs|Unsp open wound of unsp great toe w damage to nail, subs +C2866745|T037|PT|S91.203D|ICD10CM|Unspecified open wound of unspecified great toe with damage to nail, subsequent encounter|Unspecified open wound of unspecified great toe with damage to nail, subsequent encounter +C2866746|T037|AB|S91.203S|ICD10CM|Unsp open wound of unsp great toe w damage to nail, sequela|Unsp open wound of unsp great toe w damage to nail, sequela +C2866746|T037|PT|S91.203S|ICD10CM|Unspecified open wound of unspecified great toe with damage to nail, sequela|Unspecified open wound of unspecified great toe with damage to nail, sequela +C2866747|T037|AB|S91.204|ICD10CM|Unsp open wound of right lesser toe(s) with damage to nail|Unsp open wound of right lesser toe(s) with damage to nail +C2866747|T037|HT|S91.204|ICD10CM|Unspecified open wound of right lesser toe(s) with damage to nail|Unspecified open wound of right lesser toe(s) with damage to nail +C2866748|T037|AB|S91.204A|ICD10CM|Unsp opn wnd right lesser toe(s) w damage to nail, init|Unsp opn wnd right lesser toe(s) w damage to nail, init +C2866748|T037|PT|S91.204A|ICD10CM|Unspecified open wound of right lesser toe(s) with damage to nail, initial encounter|Unspecified open wound of right lesser toe(s) with damage to nail, initial encounter +C2866749|T037|AB|S91.204D|ICD10CM|Unsp opn wnd right lesser toe(s) w damage to nail, subs|Unsp opn wnd right lesser toe(s) w damage to nail, subs +C2866749|T037|PT|S91.204D|ICD10CM|Unspecified open wound of right lesser toe(s) with damage to nail, subsequent encounter|Unspecified open wound of right lesser toe(s) with damage to nail, subsequent encounter +C2866750|T037|AB|S91.204S|ICD10CM|Unsp opn wnd right lesser toe(s) w damage to nail, sequela|Unsp opn wnd right lesser toe(s) w damage to nail, sequela +C2866750|T037|PT|S91.204S|ICD10CM|Unspecified open wound of right lesser toe(s) with damage to nail, sequela|Unspecified open wound of right lesser toe(s) with damage to nail, sequela +C2866751|T037|AB|S91.205|ICD10CM|Unsp open wound of left lesser toe(s) with damage to nail|Unsp open wound of left lesser toe(s) with damage to nail +C2866751|T037|HT|S91.205|ICD10CM|Unspecified open wound of left lesser toe(s) with damage to nail|Unspecified open wound of left lesser toe(s) with damage to nail +C2866752|T037|AB|S91.205A|ICD10CM|Unsp open wound of left lesser toe(s) w damage to nail, init|Unsp open wound of left lesser toe(s) w damage to nail, init +C2866752|T037|PT|S91.205A|ICD10CM|Unspecified open wound of left lesser toe(s) with damage to nail, initial encounter|Unspecified open wound of left lesser toe(s) with damage to nail, initial encounter +C2866753|T037|AB|S91.205D|ICD10CM|Unsp open wound of left lesser toe(s) w damage to nail, subs|Unsp open wound of left lesser toe(s) w damage to nail, subs +C2866753|T037|PT|S91.205D|ICD10CM|Unspecified open wound of left lesser toe(s) with damage to nail, subsequent encounter|Unspecified open wound of left lesser toe(s) with damage to nail, subsequent encounter +C2866754|T037|AB|S91.205S|ICD10CM|Unsp opn wnd left lesser toe(s) w damage to nail, sequela|Unsp opn wnd left lesser toe(s) w damage to nail, sequela +C2866754|T037|PT|S91.205S|ICD10CM|Unspecified open wound of left lesser toe(s) with damage to nail, sequela|Unspecified open wound of left lesser toe(s) with damage to nail, sequela +C2866755|T037|AB|S91.206|ICD10CM|Unsp open wound of unsp lesser toe(s) with damage to nail|Unsp open wound of unsp lesser toe(s) with damage to nail +C2866755|T037|HT|S91.206|ICD10CM|Unspecified open wound of unspecified lesser toe(s) with damage to nail|Unspecified open wound of unspecified lesser toe(s) with damage to nail +C2866756|T037|AB|S91.206A|ICD10CM|Unsp open wound of unsp lesser toe(s) w damage to nail, init|Unsp open wound of unsp lesser toe(s) w damage to nail, init +C2866756|T037|PT|S91.206A|ICD10CM|Unspecified open wound of unspecified lesser toe(s) with damage to nail, initial encounter|Unspecified open wound of unspecified lesser toe(s) with damage to nail, initial encounter +C2866757|T037|AB|S91.206D|ICD10CM|Unsp open wound of unsp lesser toe(s) w damage to nail, subs|Unsp open wound of unsp lesser toe(s) w damage to nail, subs +C2866757|T037|PT|S91.206D|ICD10CM|Unspecified open wound of unspecified lesser toe(s) with damage to nail, subsequent encounter|Unspecified open wound of unspecified lesser toe(s) with damage to nail, subsequent encounter +C2866758|T037|AB|S91.206S|ICD10CM|Unsp opn wnd unsp lesser toe(s) w damage to nail, sequela|Unsp opn wnd unsp lesser toe(s) w damage to nail, sequela +C2866758|T037|PT|S91.206S|ICD10CM|Unspecified open wound of unspecified lesser toe(s) with damage to nail, sequela|Unspecified open wound of unspecified lesser toe(s) with damage to nail, sequela +C2866759|T037|AB|S91.209|ICD10CM|Unsp open wound of unspecified toe(s) with damage to nail|Unsp open wound of unspecified toe(s) with damage to nail +C2866759|T037|HT|S91.209|ICD10CM|Unspecified open wound of unspecified toe(s) with damage to nail|Unspecified open wound of unspecified toe(s) with damage to nail +C2866760|T037|AB|S91.209A|ICD10CM|Unsp open wound of unsp toe(s) w damage to nail, init encntr|Unsp open wound of unsp toe(s) w damage to nail, init encntr +C2866760|T037|PT|S91.209A|ICD10CM|Unspecified open wound of unspecified toe(s) with damage to nail, initial encounter|Unspecified open wound of unspecified toe(s) with damage to nail, initial encounter +C2866761|T037|AB|S91.209D|ICD10CM|Unsp open wound of unsp toe(s) w damage to nail, subs encntr|Unsp open wound of unsp toe(s) w damage to nail, subs encntr +C2866761|T037|PT|S91.209D|ICD10CM|Unspecified open wound of unspecified toe(s) with damage to nail, subsequent encounter|Unspecified open wound of unspecified toe(s) with damage to nail, subsequent encounter +C2866762|T037|AB|S91.209S|ICD10CM|Unsp open wound of unsp toe(s) with damage to nail, sequela|Unsp open wound of unsp toe(s) with damage to nail, sequela +C2866762|T037|PT|S91.209S|ICD10CM|Unspecified open wound of unspecified toe(s) with damage to nail, sequela|Unspecified open wound of unspecified toe(s) with damage to nail, sequela +C2866763|T037|AB|S91.21|ICD10CM|Laceration without foreign body of toe with damage to nail|Laceration without foreign body of toe with damage to nail +C2866763|T037|HT|S91.21|ICD10CM|Laceration without foreign body of toe with damage to nail|Laceration without foreign body of toe with damage to nail +C2866764|T037|AB|S91.211|ICD10CM|Laceration w/o fb of right great toe w damage to nail|Laceration w/o fb of right great toe w damage to nail +C2866764|T037|HT|S91.211|ICD10CM|Laceration without foreign body of right great toe with damage to nail|Laceration without foreign body of right great toe with damage to nail +C2866765|T037|AB|S91.211A|ICD10CM|Laceration w/o fb of right great toe w damage to nail, init|Laceration w/o fb of right great toe w damage to nail, init +C2866765|T037|PT|S91.211A|ICD10CM|Laceration without foreign body of right great toe with damage to nail, initial encounter|Laceration without foreign body of right great toe with damage to nail, initial encounter +C2866766|T037|AB|S91.211D|ICD10CM|Laceration w/o fb of right great toe w damage to nail, subs|Laceration w/o fb of right great toe w damage to nail, subs +C2866766|T037|PT|S91.211D|ICD10CM|Laceration without foreign body of right great toe with damage to nail, subsequent encounter|Laceration without foreign body of right great toe with damage to nail, subsequent encounter +C2866767|T037|AB|S91.211S|ICD10CM|Lac w/o fb of right great toe w damage to nail, sequela|Lac w/o fb of right great toe w damage to nail, sequela +C2866767|T037|PT|S91.211S|ICD10CM|Laceration without foreign body of right great toe with damage to nail, sequela|Laceration without foreign body of right great toe with damage to nail, sequela +C2866768|T037|AB|S91.212|ICD10CM|Laceration w/o fb of left great toe w damage to nail|Laceration w/o fb of left great toe w damage to nail +C2866768|T037|HT|S91.212|ICD10CM|Laceration without foreign body of left great toe with damage to nail|Laceration without foreign body of left great toe with damage to nail +C2866769|T037|AB|S91.212A|ICD10CM|Laceration w/o fb of left great toe w damage to nail, init|Laceration w/o fb of left great toe w damage to nail, init +C2866769|T037|PT|S91.212A|ICD10CM|Laceration without foreign body of left great toe with damage to nail, initial encounter|Laceration without foreign body of left great toe with damage to nail, initial encounter +C2866770|T037|AB|S91.212D|ICD10CM|Laceration w/o fb of left great toe w damage to nail, subs|Laceration w/o fb of left great toe w damage to nail, subs +C2866770|T037|PT|S91.212D|ICD10CM|Laceration without foreign body of left great toe with damage to nail, subsequent encounter|Laceration without foreign body of left great toe with damage to nail, subsequent encounter +C2866771|T037|AB|S91.212S|ICD10CM|Lac w/o fb of left great toe w damage to nail, sequela|Lac w/o fb of left great toe w damage to nail, sequela +C2866771|T037|PT|S91.212S|ICD10CM|Laceration without foreign body of left great toe with damage to nail, sequela|Laceration without foreign body of left great toe with damage to nail, sequela +C2866772|T037|AB|S91.213|ICD10CM|Laceration w/o fb of unsp great toe w damage to nail|Laceration w/o fb of unsp great toe w damage to nail +C2866772|T037|HT|S91.213|ICD10CM|Laceration without foreign body of unspecified great toe with damage to nail|Laceration without foreign body of unspecified great toe with damage to nail +C2866773|T037|AB|S91.213A|ICD10CM|Laceration w/o fb of unsp great toe w damage to nail, init|Laceration w/o fb of unsp great toe w damage to nail, init +C2866773|T037|PT|S91.213A|ICD10CM|Laceration without foreign body of unspecified great toe with damage to nail, initial encounter|Laceration without foreign body of unspecified great toe with damage to nail, initial encounter +C2866774|T037|AB|S91.213D|ICD10CM|Laceration w/o fb of unsp great toe w damage to nail, subs|Laceration w/o fb of unsp great toe w damage to nail, subs +C2866774|T037|PT|S91.213D|ICD10CM|Laceration without foreign body of unspecified great toe with damage to nail, subsequent encounter|Laceration without foreign body of unspecified great toe with damage to nail, subsequent encounter +C2866775|T037|AB|S91.213S|ICD10CM|Lac w/o fb of unsp great toe w damage to nail, sequela|Lac w/o fb of unsp great toe w damage to nail, sequela +C2866775|T037|PT|S91.213S|ICD10CM|Laceration without foreign body of unspecified great toe with damage to nail, sequela|Laceration without foreign body of unspecified great toe with damage to nail, sequela +C2866776|T037|AB|S91.214|ICD10CM|Laceration w/o fb of right lesser toe(s) w damage to nail|Laceration w/o fb of right lesser toe(s) w damage to nail +C2866776|T037|HT|S91.214|ICD10CM|Laceration without foreign body of right lesser toe(s) with damage to nail|Laceration without foreign body of right lesser toe(s) with damage to nail +C2866777|T037|AB|S91.214A|ICD10CM|Lac w/o fb of right lesser toe(s) w damage to nail, init|Lac w/o fb of right lesser toe(s) w damage to nail, init +C2866777|T037|PT|S91.214A|ICD10CM|Laceration without foreign body of right lesser toe(s) with damage to nail, initial encounter|Laceration without foreign body of right lesser toe(s) with damage to nail, initial encounter +C2866778|T037|AB|S91.214D|ICD10CM|Lac w/o fb of right lesser toe(s) w damage to nail, subs|Lac w/o fb of right lesser toe(s) w damage to nail, subs +C2866778|T037|PT|S91.214D|ICD10CM|Laceration without foreign body of right lesser toe(s) with damage to nail, subsequent encounter|Laceration without foreign body of right lesser toe(s) with damage to nail, subsequent encounter +C2866779|T037|AB|S91.214S|ICD10CM|Lac w/o fb of right lesser toe(s) w damage to nail, sequela|Lac w/o fb of right lesser toe(s) w damage to nail, sequela +C2866779|T037|PT|S91.214S|ICD10CM|Laceration without foreign body of right lesser toe(s) with damage to nail, sequela|Laceration without foreign body of right lesser toe(s) with damage to nail, sequela +C2866780|T037|AB|S91.215|ICD10CM|Laceration w/o fb of left lesser toe(s) w damage to nail|Laceration w/o fb of left lesser toe(s) w damage to nail +C2866780|T037|HT|S91.215|ICD10CM|Laceration without foreign body of left lesser toe(s) with damage to nail|Laceration without foreign body of left lesser toe(s) with damage to nail +C2866781|T037|AB|S91.215A|ICD10CM|Lac w/o fb of left lesser toe(s) w damage to nail, init|Lac w/o fb of left lesser toe(s) w damage to nail, init +C2866781|T037|PT|S91.215A|ICD10CM|Laceration without foreign body of left lesser toe(s) with damage to nail, initial encounter|Laceration without foreign body of left lesser toe(s) with damage to nail, initial encounter +C2866782|T037|AB|S91.215D|ICD10CM|Lac w/o fb of left lesser toe(s) w damage to nail, subs|Lac w/o fb of left lesser toe(s) w damage to nail, subs +C2866782|T037|PT|S91.215D|ICD10CM|Laceration without foreign body of left lesser toe(s) with damage to nail, subsequent encounter|Laceration without foreign body of left lesser toe(s) with damage to nail, subsequent encounter +C2866783|T037|AB|S91.215S|ICD10CM|Lac w/o fb of left lesser toe(s) w damage to nail, sequela|Lac w/o fb of left lesser toe(s) w damage to nail, sequela +C2866783|T037|PT|S91.215S|ICD10CM|Laceration without foreign body of left lesser toe(s) with damage to nail, sequela|Laceration without foreign body of left lesser toe(s) with damage to nail, sequela +C2866784|T037|AB|S91.216|ICD10CM|Laceration w/o fb of unsp lesser toe(s) w damage to nail|Laceration w/o fb of unsp lesser toe(s) w damage to nail +C2866784|T037|HT|S91.216|ICD10CM|Laceration without foreign body of unspecified lesser toe(s) with damage to nail|Laceration without foreign body of unspecified lesser toe(s) with damage to nail +C2866785|T037|AB|S91.216A|ICD10CM|Lac w/o fb of unsp lesser toe(s) w damage to nail, init|Lac w/o fb of unsp lesser toe(s) w damage to nail, init +C2866785|T037|PT|S91.216A|ICD10CM|Laceration without foreign body of unspecified lesser toe(s) with damage to nail, initial encounter|Laceration without foreign body of unspecified lesser toe(s) with damage to nail, initial encounter +C2866786|T037|AB|S91.216D|ICD10CM|Lac w/o fb of unsp lesser toe(s) w damage to nail, subs|Lac w/o fb of unsp lesser toe(s) w damage to nail, subs +C2866787|T037|AB|S91.216S|ICD10CM|Lac w/o fb of unsp lesser toe(s) w damage to nail, sequela|Lac w/o fb of unsp lesser toe(s) w damage to nail, sequela +C2866787|T037|PT|S91.216S|ICD10CM|Laceration without foreign body of unspecified lesser toe(s) with damage to nail, sequela|Laceration without foreign body of unspecified lesser toe(s) with damage to nail, sequela +C2866788|T037|AB|S91.219|ICD10CM|Laceration w/o foreign body of unsp toe(s) w damage to nail|Laceration w/o foreign body of unsp toe(s) w damage to nail +C2866788|T037|HT|S91.219|ICD10CM|Laceration without foreign body of unspecified toe(s) with damage to nail|Laceration without foreign body of unspecified toe(s) with damage to nail +C2866789|T037|AB|S91.219A|ICD10CM|Laceration w/o fb of unsp toe(s) w damage to nail, init|Laceration w/o fb of unsp toe(s) w damage to nail, init +C2866789|T037|PT|S91.219A|ICD10CM|Laceration without foreign body of unspecified toe(s) with damage to nail, initial encounter|Laceration without foreign body of unspecified toe(s) with damage to nail, initial encounter +C2866790|T037|AB|S91.219D|ICD10CM|Laceration w/o fb of unsp toe(s) w damage to nail, subs|Laceration w/o fb of unsp toe(s) w damage to nail, subs +C2866790|T037|PT|S91.219D|ICD10CM|Laceration without foreign body of unspecified toe(s) with damage to nail, subsequent encounter|Laceration without foreign body of unspecified toe(s) with damage to nail, subsequent encounter +C2866791|T037|AB|S91.219S|ICD10CM|Laceration w/o fb of unsp toe(s) w damage to nail, sequela|Laceration w/o fb of unsp toe(s) w damage to nail, sequela +C2866791|T037|PT|S91.219S|ICD10CM|Laceration without foreign body of unspecified toe(s) with damage to nail, sequela|Laceration without foreign body of unspecified toe(s) with damage to nail, sequela +C2866792|T037|AB|S91.22|ICD10CM|Laceration with foreign body of toe with damage to nail|Laceration with foreign body of toe with damage to nail +C2866792|T037|HT|S91.22|ICD10CM|Laceration with foreign body of toe with damage to nail|Laceration with foreign body of toe with damage to nail +C2866793|T037|AB|S91.221|ICD10CM|Laceration w fb of right great toe w damage to nail|Laceration w fb of right great toe w damage to nail +C2866793|T037|HT|S91.221|ICD10CM|Laceration with foreign body of right great toe with damage to nail|Laceration with foreign body of right great toe with damage to nail +C2866794|T037|AB|S91.221A|ICD10CM|Laceration w fb of right great toe w damage to nail, init|Laceration w fb of right great toe w damage to nail, init +C2866794|T037|PT|S91.221A|ICD10CM|Laceration with foreign body of right great toe with damage to nail, initial encounter|Laceration with foreign body of right great toe with damage to nail, initial encounter +C2866795|T037|AB|S91.221D|ICD10CM|Laceration w fb of right great toe w damage to nail, subs|Laceration w fb of right great toe w damage to nail, subs +C2866795|T037|PT|S91.221D|ICD10CM|Laceration with foreign body of right great toe with damage to nail, subsequent encounter|Laceration with foreign body of right great toe with damage to nail, subsequent encounter +C2866796|T037|AB|S91.221S|ICD10CM|Laceration w fb of right great toe w damage to nail, sequela|Laceration w fb of right great toe w damage to nail, sequela +C2866796|T037|PT|S91.221S|ICD10CM|Laceration with foreign body of right great toe with damage to nail, sequela|Laceration with foreign body of right great toe with damage to nail, sequela +C2866797|T037|AB|S91.222|ICD10CM|Laceration w foreign body of left great toe w damage to nail|Laceration w foreign body of left great toe w damage to nail +C2866797|T037|HT|S91.222|ICD10CM|Laceration with foreign body of left great toe with damage to nail|Laceration with foreign body of left great toe with damage to nail +C2866798|T037|AB|S91.222A|ICD10CM|Laceration w fb of left great toe w damage to nail, init|Laceration w fb of left great toe w damage to nail, init +C2866798|T037|PT|S91.222A|ICD10CM|Laceration with foreign body of left great toe with damage to nail, initial encounter|Laceration with foreign body of left great toe with damage to nail, initial encounter +C2866799|T037|AB|S91.222D|ICD10CM|Laceration w fb of left great toe w damage to nail, subs|Laceration w fb of left great toe w damage to nail, subs +C2866799|T037|PT|S91.222D|ICD10CM|Laceration with foreign body of left great toe with damage to nail, subsequent encounter|Laceration with foreign body of left great toe with damage to nail, subsequent encounter +C2866800|T037|AB|S91.222S|ICD10CM|Laceration w fb of left great toe w damage to nail, sequela|Laceration w fb of left great toe w damage to nail, sequela +C2866800|T037|PT|S91.222S|ICD10CM|Laceration with foreign body of left great toe with damage to nail, sequela|Laceration with foreign body of left great toe with damage to nail, sequela +C2866801|T037|AB|S91.223|ICD10CM|Laceration w foreign body of unsp great toe w damage to nail|Laceration w foreign body of unsp great toe w damage to nail +C2866801|T037|HT|S91.223|ICD10CM|Laceration with foreign body of unspecified great toe with damage to nail|Laceration with foreign body of unspecified great toe with damage to nail +C2866802|T037|AB|S91.223A|ICD10CM|Laceration w fb of unsp great toe w damage to nail, init|Laceration w fb of unsp great toe w damage to nail, init +C2866802|T037|PT|S91.223A|ICD10CM|Laceration with foreign body of unspecified great toe with damage to nail, initial encounter|Laceration with foreign body of unspecified great toe with damage to nail, initial encounter +C2866803|T037|AB|S91.223D|ICD10CM|Laceration w fb of unsp great toe w damage to nail, subs|Laceration w fb of unsp great toe w damage to nail, subs +C2866803|T037|PT|S91.223D|ICD10CM|Laceration with foreign body of unspecified great toe with damage to nail, subsequent encounter|Laceration with foreign body of unspecified great toe with damage to nail, subsequent encounter +C2866804|T037|AB|S91.223S|ICD10CM|Laceration w fb of unsp great toe w damage to nail, sequela|Laceration w fb of unsp great toe w damage to nail, sequela +C2866804|T037|PT|S91.223S|ICD10CM|Laceration with foreign body of unspecified great toe with damage to nail, sequela|Laceration with foreign body of unspecified great toe with damage to nail, sequela +C2866805|T037|AB|S91.224|ICD10CM|Laceration w fb of right lesser toe(s) w damage to nail|Laceration w fb of right lesser toe(s) w damage to nail +C2866805|T037|HT|S91.224|ICD10CM|Laceration with foreign body of right lesser toe(s) with damage to nail|Laceration with foreign body of right lesser toe(s) with damage to nail +C2866806|T037|AB|S91.224A|ICD10CM|Lac w fb of right lesser toe(s) w damage to nail, init|Lac w fb of right lesser toe(s) w damage to nail, init +C2866806|T037|PT|S91.224A|ICD10CM|Laceration with foreign body of right lesser toe(s) with damage to nail, initial encounter|Laceration with foreign body of right lesser toe(s) with damage to nail, initial encounter +C2866807|T037|AB|S91.224D|ICD10CM|Lac w fb of right lesser toe(s) w damage to nail, subs|Lac w fb of right lesser toe(s) w damage to nail, subs +C2866807|T037|PT|S91.224D|ICD10CM|Laceration with foreign body of right lesser toe(s) with damage to nail, subsequent encounter|Laceration with foreign body of right lesser toe(s) with damage to nail, subsequent encounter +C2866808|T037|AB|S91.224S|ICD10CM|Lac w fb of right lesser toe(s) w damage to nail, sequela|Lac w fb of right lesser toe(s) w damage to nail, sequela +C2866808|T037|PT|S91.224S|ICD10CM|Laceration with foreign body of right lesser toe(s) with damage to nail, sequela|Laceration with foreign body of right lesser toe(s) with damage to nail, sequela +C2866809|T037|AB|S91.225|ICD10CM|Laceration w fb of left lesser toe(s) w damage to nail|Laceration w fb of left lesser toe(s) w damage to nail +C2866809|T037|HT|S91.225|ICD10CM|Laceration with foreign body of left lesser toe(s) with damage to nail|Laceration with foreign body of left lesser toe(s) with damage to nail +C2866810|T037|AB|S91.225A|ICD10CM|Laceration w fb of left lesser toe(s) w damage to nail, init|Laceration w fb of left lesser toe(s) w damage to nail, init +C2866810|T037|PT|S91.225A|ICD10CM|Laceration with foreign body of left lesser toe(s) with damage to nail, initial encounter|Laceration with foreign body of left lesser toe(s) with damage to nail, initial encounter +C2866811|T037|AB|S91.225D|ICD10CM|Laceration w fb of left lesser toe(s) w damage to nail, subs|Laceration w fb of left lesser toe(s) w damage to nail, subs +C2866811|T037|PT|S91.225D|ICD10CM|Laceration with foreign body of left lesser toe(s) with damage to nail, subsequent encounter|Laceration with foreign body of left lesser toe(s) with damage to nail, subsequent encounter +C2866812|T037|AB|S91.225S|ICD10CM|Lac w fb of left lesser toe(s) w damage to nail, sequela|Lac w fb of left lesser toe(s) w damage to nail, sequela +C2866812|T037|PT|S91.225S|ICD10CM|Laceration with foreign body of left lesser toe(s) with damage to nail, sequela|Laceration with foreign body of left lesser toe(s) with damage to nail, sequela +C2866813|T037|AB|S91.226|ICD10CM|Laceration w fb of unsp lesser toe(s) w damage to nail|Laceration w fb of unsp lesser toe(s) w damage to nail +C2866813|T037|HT|S91.226|ICD10CM|Laceration with foreign body of unspecified lesser toe(s) with damage to nail|Laceration with foreign body of unspecified lesser toe(s) with damage to nail +C2866814|T037|AB|S91.226A|ICD10CM|Laceration w fb of unsp lesser toe(s) w damage to nail, init|Laceration w fb of unsp lesser toe(s) w damage to nail, init +C2866814|T037|PT|S91.226A|ICD10CM|Laceration with foreign body of unspecified lesser toe(s) with damage to nail, initial encounter|Laceration with foreign body of unspecified lesser toe(s) with damage to nail, initial encounter +C2866815|T037|AB|S91.226D|ICD10CM|Laceration w fb of unsp lesser toe(s) w damage to nail, subs|Laceration w fb of unsp lesser toe(s) w damage to nail, subs +C2866815|T037|PT|S91.226D|ICD10CM|Laceration with foreign body of unspecified lesser toe(s) with damage to nail, subsequent encounter|Laceration with foreign body of unspecified lesser toe(s) with damage to nail, subsequent encounter +C2866816|T037|AB|S91.226S|ICD10CM|Lac w fb of unsp lesser toe(s) w damage to nail, sequela|Lac w fb of unsp lesser toe(s) w damage to nail, sequela +C2866816|T037|PT|S91.226S|ICD10CM|Laceration with foreign body of unspecified lesser toe(s) with damage to nail, sequela|Laceration with foreign body of unspecified lesser toe(s) with damage to nail, sequela +C2866817|T037|AB|S91.229|ICD10CM|Laceration w foreign body of unsp toe(s) with damage to nail|Laceration w foreign body of unsp toe(s) with damage to nail +C2866817|T037|HT|S91.229|ICD10CM|Laceration with foreign body of unspecified toe(s) with damage to nail|Laceration with foreign body of unspecified toe(s) with damage to nail +C2866818|T037|AB|S91.229A|ICD10CM|Laceration w fb of unsp toe(s) w damage to nail, init|Laceration w fb of unsp toe(s) w damage to nail, init +C2866818|T037|PT|S91.229A|ICD10CM|Laceration with foreign body of unspecified toe(s) with damage to nail, initial encounter|Laceration with foreign body of unspecified toe(s) with damage to nail, initial encounter +C2866819|T037|AB|S91.229D|ICD10CM|Laceration w fb of unsp toe(s) w damage to nail, subs|Laceration w fb of unsp toe(s) w damage to nail, subs +C2866819|T037|PT|S91.229D|ICD10CM|Laceration with foreign body of unspecified toe(s) with damage to nail, subsequent encounter|Laceration with foreign body of unspecified toe(s) with damage to nail, subsequent encounter +C2866820|T037|AB|S91.229S|ICD10CM|Laceration w fb of unsp toe(s) w damage to nail, sequela|Laceration w fb of unsp toe(s) w damage to nail, sequela +C2866820|T037|PT|S91.229S|ICD10CM|Laceration with foreign body of unspecified toe(s) with damage to nail, sequela|Laceration with foreign body of unspecified toe(s) with damage to nail, sequela +C2866821|T037|AB|S91.23|ICD10CM|Puncture wound w/o foreign body of toe with damage to nail|Puncture wound w/o foreign body of toe with damage to nail +C2866821|T037|HT|S91.23|ICD10CM|Puncture wound without foreign body of toe with damage to nail|Puncture wound without foreign body of toe with damage to nail +C2866822|T037|AB|S91.231|ICD10CM|Pnctr w/o foreign body of right great toe w damage to nail|Pnctr w/o foreign body of right great toe w damage to nail +C2866822|T037|HT|S91.231|ICD10CM|Puncture wound without foreign body of right great toe with damage to nail|Puncture wound without foreign body of right great toe with damage to nail +C2866823|T037|AB|S91.231A|ICD10CM|Pnctr w/o fb of right great toe w damage to nail, init|Pnctr w/o fb of right great toe w damage to nail, init +C2866823|T037|PT|S91.231A|ICD10CM|Puncture wound without foreign body of right great toe with damage to nail, initial encounter|Puncture wound without foreign body of right great toe with damage to nail, initial encounter +C2866824|T037|AB|S91.231D|ICD10CM|Pnctr w/o fb of right great toe w damage to nail, subs|Pnctr w/o fb of right great toe w damage to nail, subs +C2866824|T037|PT|S91.231D|ICD10CM|Puncture wound without foreign body of right great toe with damage to nail, subsequent encounter|Puncture wound without foreign body of right great toe with damage to nail, subsequent encounter +C2866825|T037|AB|S91.231S|ICD10CM|Pnctr w/o fb of right great toe w damage to nail, sequela|Pnctr w/o fb of right great toe w damage to nail, sequela +C2866825|T037|PT|S91.231S|ICD10CM|Puncture wound without foreign body of right great toe with damage to nail, sequela|Puncture wound without foreign body of right great toe with damage to nail, sequela +C2866826|T037|AB|S91.232|ICD10CM|Pnctr w/o foreign body of left great toe w damage to nail|Pnctr w/o foreign body of left great toe w damage to nail +C2866826|T037|HT|S91.232|ICD10CM|Puncture wound without foreign body of left great toe with damage to nail|Puncture wound without foreign body of left great toe with damage to nail +C2866827|T037|AB|S91.232A|ICD10CM|Pnctr w/o fb of left great toe w damage to nail, init|Pnctr w/o fb of left great toe w damage to nail, init +C2866827|T037|PT|S91.232A|ICD10CM|Puncture wound without foreign body of left great toe with damage to nail, initial encounter|Puncture wound without foreign body of left great toe with damage to nail, initial encounter +C2866828|T037|AB|S91.232D|ICD10CM|Pnctr w/o fb of left great toe w damage to nail, subs|Pnctr w/o fb of left great toe w damage to nail, subs +C2866828|T037|PT|S91.232D|ICD10CM|Puncture wound without foreign body of left great toe with damage to nail, subsequent encounter|Puncture wound without foreign body of left great toe with damage to nail, subsequent encounter +C2866829|T037|AB|S91.232S|ICD10CM|Pnctr w/o fb of left great toe w damage to nail, sequela|Pnctr w/o fb of left great toe w damage to nail, sequela +C2866829|T037|PT|S91.232S|ICD10CM|Puncture wound without foreign body of left great toe with damage to nail, sequela|Puncture wound without foreign body of left great toe with damage to nail, sequela +C2866830|T037|AB|S91.233|ICD10CM|Pnctr w/o foreign body of unsp great toe w damage to nail|Pnctr w/o foreign body of unsp great toe w damage to nail +C2866830|T037|HT|S91.233|ICD10CM|Puncture wound without foreign body of unspecified great toe with damage to nail|Puncture wound without foreign body of unspecified great toe with damage to nail +C2866831|T037|AB|S91.233A|ICD10CM|Pnctr w/o fb of unsp great toe w damage to nail, init|Pnctr w/o fb of unsp great toe w damage to nail, init +C2866831|T037|PT|S91.233A|ICD10CM|Puncture wound without foreign body of unspecified great toe with damage to nail, initial encounter|Puncture wound without foreign body of unspecified great toe with damage to nail, initial encounter +C2866832|T037|AB|S91.233D|ICD10CM|Pnctr w/o fb of unsp great toe w damage to nail, subs|Pnctr w/o fb of unsp great toe w damage to nail, subs +C2866833|T037|AB|S91.233S|ICD10CM|Pnctr w/o fb of unsp great toe w damage to nail, sequela|Pnctr w/o fb of unsp great toe w damage to nail, sequela +C2866833|T037|PT|S91.233S|ICD10CM|Puncture wound without foreign body of unspecified great toe with damage to nail, sequela|Puncture wound without foreign body of unspecified great toe with damage to nail, sequela +C2866834|T037|AB|S91.234|ICD10CM|Pnctr w/o fb of right lesser toe(s) w damage to nail|Pnctr w/o fb of right lesser toe(s) w damage to nail +C2866834|T037|HT|S91.234|ICD10CM|Puncture wound without foreign body of right lesser toe(s) with damage to nail|Puncture wound without foreign body of right lesser toe(s) with damage to nail +C2866835|T037|AB|S91.234A|ICD10CM|Pnctr w/o fb of right lesser toe(s) w damage to nail, init|Pnctr w/o fb of right lesser toe(s) w damage to nail, init +C2866835|T037|PT|S91.234A|ICD10CM|Puncture wound without foreign body of right lesser toe(s) with damage to nail, initial encounter|Puncture wound without foreign body of right lesser toe(s) with damage to nail, initial encounter +C2866836|T037|AB|S91.234D|ICD10CM|Pnctr w/o fb of right lesser toe(s) w damage to nail, subs|Pnctr w/o fb of right lesser toe(s) w damage to nail, subs +C2866836|T037|PT|S91.234D|ICD10CM|Puncture wound without foreign body of right lesser toe(s) with damage to nail, subsequent encounter|Puncture wound without foreign body of right lesser toe(s) with damage to nail, subsequent encounter +C2866837|T037|AB|S91.234S|ICD10CM|Pnctr w/o fb of right lesser toe(s) w damage to nail, sqla|Pnctr w/o fb of right lesser toe(s) w damage to nail, sqla +C2866837|T037|PT|S91.234S|ICD10CM|Puncture wound without foreign body of right lesser toe(s) with damage to nail, sequela|Puncture wound without foreign body of right lesser toe(s) with damage to nail, sequela +C2866838|T037|AB|S91.235|ICD10CM|Pnctr w/o fb of left lesser toe(s) w damage to nail|Pnctr w/o fb of left lesser toe(s) w damage to nail +C2866838|T037|HT|S91.235|ICD10CM|Puncture wound without foreign body of left lesser toe(s) with damage to nail|Puncture wound without foreign body of left lesser toe(s) with damage to nail +C2866839|T037|AB|S91.235A|ICD10CM|Pnctr w/o fb of left lesser toe(s) w damage to nail, init|Pnctr w/o fb of left lesser toe(s) w damage to nail, init +C2866839|T037|PT|S91.235A|ICD10CM|Puncture wound without foreign body of left lesser toe(s) with damage to nail, initial encounter|Puncture wound without foreign body of left lesser toe(s) with damage to nail, initial encounter +C2866840|T037|AB|S91.235D|ICD10CM|Pnctr w/o fb of left lesser toe(s) w damage to nail, subs|Pnctr w/o fb of left lesser toe(s) w damage to nail, subs +C2866840|T037|PT|S91.235D|ICD10CM|Puncture wound without foreign body of left lesser toe(s) with damage to nail, subsequent encounter|Puncture wound without foreign body of left lesser toe(s) with damage to nail, subsequent encounter +C2866841|T037|AB|S91.235S|ICD10CM|Pnctr w/o fb of left lesser toe(s) w damage to nail, sequela|Pnctr w/o fb of left lesser toe(s) w damage to nail, sequela +C2866841|T037|PT|S91.235S|ICD10CM|Puncture wound without foreign body of left lesser toe(s) with damage to nail, sequela|Puncture wound without foreign body of left lesser toe(s) with damage to nail, sequela +C2866842|T037|AB|S91.236|ICD10CM|Pnctr w/o fb of unsp lesser toe(s) w damage to nail|Pnctr w/o fb of unsp lesser toe(s) w damage to nail +C2866842|T037|HT|S91.236|ICD10CM|Puncture wound without foreign body of unspecified lesser toe(s) with damage to nail|Puncture wound without foreign body of unspecified lesser toe(s) with damage to nail +C2866843|T037|AB|S91.236A|ICD10CM|Pnctr w/o fb of unsp lesser toe(s) w damage to nail, init|Pnctr w/o fb of unsp lesser toe(s) w damage to nail, init +C2866844|T037|AB|S91.236D|ICD10CM|Pnctr w/o fb of unsp lesser toe(s) w damage to nail, subs|Pnctr w/o fb of unsp lesser toe(s) w damage to nail, subs +C2866845|T037|AB|S91.236S|ICD10CM|Pnctr w/o fb of unsp lesser toe(s) w damage to nail, sequela|Pnctr w/o fb of unsp lesser toe(s) w damage to nail, sequela +C2866845|T037|PT|S91.236S|ICD10CM|Puncture wound without foreign body of unspecified lesser toe(s) with damage to nail, sequela|Puncture wound without foreign body of unspecified lesser toe(s) with damage to nail, sequela +C2866846|T037|AB|S91.239|ICD10CM|Pnctr w/o foreign body of unsp toe(s) w damage to nail|Pnctr w/o foreign body of unsp toe(s) w damage to nail +C2866846|T037|HT|S91.239|ICD10CM|Puncture wound without foreign body of unspecified toe(s) with damage to nail|Puncture wound without foreign body of unspecified toe(s) with damage to nail +C2866847|T037|AB|S91.239A|ICD10CM|Pnctr w/o foreign body of unsp toe(s) w damage to nail, init|Pnctr w/o foreign body of unsp toe(s) w damage to nail, init +C2866847|T037|PT|S91.239A|ICD10CM|Puncture wound without foreign body of unspecified toe(s) with damage to nail, initial encounter|Puncture wound without foreign body of unspecified toe(s) with damage to nail, initial encounter +C2866848|T037|AB|S91.239D|ICD10CM|Pnctr w/o foreign body of unsp toe(s) w damage to nail, subs|Pnctr w/o foreign body of unsp toe(s) w damage to nail, subs +C2866848|T037|PT|S91.239D|ICD10CM|Puncture wound without foreign body of unspecified toe(s) with damage to nail, subsequent encounter|Puncture wound without foreign body of unspecified toe(s) with damage to nail, subsequent encounter +C2866849|T037|AB|S91.239S|ICD10CM|Pnctr w/o fb of unsp toe(s) w damage to nail, sequela|Pnctr w/o fb of unsp toe(s) w damage to nail, sequela +C2866849|T037|PT|S91.239S|ICD10CM|Puncture wound without foreign body of unspecified toe(s) with damage to nail, sequela|Puncture wound without foreign body of unspecified toe(s) with damage to nail, sequela +C2866850|T037|AB|S91.24|ICD10CM|Puncture wound with foreign body of toe with damage to nail|Puncture wound with foreign body of toe with damage to nail +C2866850|T037|HT|S91.24|ICD10CM|Puncture wound with foreign body of toe with damage to nail|Puncture wound with foreign body of toe with damage to nail +C2866851|T037|AB|S91.241|ICD10CM|Pnctr w foreign body of right great toe w damage to nail|Pnctr w foreign body of right great toe w damage to nail +C2866851|T037|HT|S91.241|ICD10CM|Puncture wound with foreign body of right great toe with damage to nail|Puncture wound with foreign body of right great toe with damage to nail +C2866852|T037|AB|S91.241A|ICD10CM|Pnctr w fb of right great toe w damage to nail, init|Pnctr w fb of right great toe w damage to nail, init +C2866852|T037|PT|S91.241A|ICD10CM|Puncture wound with foreign body of right great toe with damage to nail, initial encounter|Puncture wound with foreign body of right great toe with damage to nail, initial encounter +C2866853|T037|AB|S91.241D|ICD10CM|Pnctr w fb of right great toe w damage to nail, subs|Pnctr w fb of right great toe w damage to nail, subs +C2866853|T037|PT|S91.241D|ICD10CM|Puncture wound with foreign body of right great toe with damage to nail, subsequent encounter|Puncture wound with foreign body of right great toe with damage to nail, subsequent encounter +C2866854|T037|AB|S91.241S|ICD10CM|Pnctr w fb of right great toe w damage to nail, sequela|Pnctr w fb of right great toe w damage to nail, sequela +C2866854|T037|PT|S91.241S|ICD10CM|Puncture wound with foreign body of right great toe with damage to nail, sequela|Puncture wound with foreign body of right great toe with damage to nail, sequela +C2866855|T037|AB|S91.242|ICD10CM|Pnctr w foreign body of left great toe w damage to nail|Pnctr w foreign body of left great toe w damage to nail +C2866855|T037|HT|S91.242|ICD10CM|Puncture wound with foreign body of left great toe with damage to nail|Puncture wound with foreign body of left great toe with damage to nail +C2866856|T037|AB|S91.242A|ICD10CM|Pnctr w fb of left great toe w damage to nail, init|Pnctr w fb of left great toe w damage to nail, init +C2866856|T037|PT|S91.242A|ICD10CM|Puncture wound with foreign body of left great toe with damage to nail, initial encounter|Puncture wound with foreign body of left great toe with damage to nail, initial encounter +C2866857|T037|AB|S91.242D|ICD10CM|Pnctr w fb of left great toe w damage to nail, subs|Pnctr w fb of left great toe w damage to nail, subs +C2866857|T037|PT|S91.242D|ICD10CM|Puncture wound with foreign body of left great toe with damage to nail, subsequent encounter|Puncture wound with foreign body of left great toe with damage to nail, subsequent encounter +C2866858|T037|AB|S91.242S|ICD10CM|Pnctr w fb of left great toe w damage to nail, sequela|Pnctr w fb of left great toe w damage to nail, sequela +C2866858|T037|PT|S91.242S|ICD10CM|Puncture wound with foreign body of left great toe with damage to nail, sequela|Puncture wound with foreign body of left great toe with damage to nail, sequela +C2866859|T037|AB|S91.243|ICD10CM|Pnctr w foreign body of unsp great toe w damage to nail|Pnctr w foreign body of unsp great toe w damage to nail +C2866859|T037|HT|S91.243|ICD10CM|Puncture wound with foreign body of unspecified great toe with damage to nail|Puncture wound with foreign body of unspecified great toe with damage to nail +C2866860|T037|AB|S91.243A|ICD10CM|Pnctr w fb of unsp great toe w damage to nail, init|Pnctr w fb of unsp great toe w damage to nail, init +C2866860|T037|PT|S91.243A|ICD10CM|Puncture wound with foreign body of unspecified great toe with damage to nail, initial encounter|Puncture wound with foreign body of unspecified great toe with damage to nail, initial encounter +C2866861|T037|AB|S91.243D|ICD10CM|Pnctr w fb of unsp great toe w damage to nail, subs|Pnctr w fb of unsp great toe w damage to nail, subs +C2866861|T037|PT|S91.243D|ICD10CM|Puncture wound with foreign body of unspecified great toe with damage to nail, subsequent encounter|Puncture wound with foreign body of unspecified great toe with damage to nail, subsequent encounter +C2866862|T037|AB|S91.243S|ICD10CM|Pnctr w fb of unsp great toe w damage to nail, sequela|Pnctr w fb of unsp great toe w damage to nail, sequela +C2866862|T037|PT|S91.243S|ICD10CM|Puncture wound with foreign body of unspecified great toe with damage to nail, sequela|Puncture wound with foreign body of unspecified great toe with damage to nail, sequela +C2866863|T037|AB|S91.244|ICD10CM|Pnctr w foreign body of right lesser toe(s) w damage to nail|Pnctr w foreign body of right lesser toe(s) w damage to nail +C2866863|T037|HT|S91.244|ICD10CM|Puncture wound with foreign body of right lesser toe(s) with damage to nail|Puncture wound with foreign body of right lesser toe(s) with damage to nail +C2866864|T037|AB|S91.244A|ICD10CM|Pnctr w fb of right lesser toe(s) w damage to nail, init|Pnctr w fb of right lesser toe(s) w damage to nail, init +C2866864|T037|PT|S91.244A|ICD10CM|Puncture wound with foreign body of right lesser toe(s) with damage to nail, initial encounter|Puncture wound with foreign body of right lesser toe(s) with damage to nail, initial encounter +C2866865|T037|AB|S91.244D|ICD10CM|Pnctr w fb of right lesser toe(s) w damage to nail, subs|Pnctr w fb of right lesser toe(s) w damage to nail, subs +C2866865|T037|PT|S91.244D|ICD10CM|Puncture wound with foreign body of right lesser toe(s) with damage to nail, subsequent encounter|Puncture wound with foreign body of right lesser toe(s) with damage to nail, subsequent encounter +C2866866|T037|AB|S91.244S|ICD10CM|Pnctr w fb of right lesser toe(s) w damage to nail, sequela|Pnctr w fb of right lesser toe(s) w damage to nail, sequela +C2866866|T037|PT|S91.244S|ICD10CM|Puncture wound with foreign body of right lesser toe(s) with damage to nail, sequela|Puncture wound with foreign body of right lesser toe(s) with damage to nail, sequela +C2866867|T037|AB|S91.245|ICD10CM|Pnctr w foreign body of left lesser toe(s) w damage to nail|Pnctr w foreign body of left lesser toe(s) w damage to nail +C2866867|T037|HT|S91.245|ICD10CM|Puncture wound with foreign body of left lesser toe(s) with damage to nail|Puncture wound with foreign body of left lesser toe(s) with damage to nail +C2866868|T037|AB|S91.245A|ICD10CM|Pnctr w fb of left lesser toe(s) w damage to nail, init|Pnctr w fb of left lesser toe(s) w damage to nail, init +C2866868|T037|PT|S91.245A|ICD10CM|Puncture wound with foreign body of left lesser toe(s) with damage to nail, initial encounter|Puncture wound with foreign body of left lesser toe(s) with damage to nail, initial encounter +C2866869|T037|AB|S91.245D|ICD10CM|Pnctr w fb of left lesser toe(s) w damage to nail, subs|Pnctr w fb of left lesser toe(s) w damage to nail, subs +C2866869|T037|PT|S91.245D|ICD10CM|Puncture wound with foreign body of left lesser toe(s) with damage to nail, subsequent encounter|Puncture wound with foreign body of left lesser toe(s) with damage to nail, subsequent encounter +C2866870|T037|AB|S91.245S|ICD10CM|Pnctr w fb of left lesser toe(s) w damage to nail, sequela|Pnctr w fb of left lesser toe(s) w damage to nail, sequela +C2866870|T037|PT|S91.245S|ICD10CM|Puncture wound with foreign body of left lesser toe(s) with damage to nail, sequela|Puncture wound with foreign body of left lesser toe(s) with damage to nail, sequela +C2866871|T037|AB|S91.246|ICD10CM|Pnctr w foreign body of unsp lesser toe(s) w damage to nail|Pnctr w foreign body of unsp lesser toe(s) w damage to nail +C2866871|T037|HT|S91.246|ICD10CM|Puncture wound with foreign body of unspecified lesser toe(s) with damage to nail|Puncture wound with foreign body of unspecified lesser toe(s) with damage to nail +C2866872|T037|AB|S91.246A|ICD10CM|Pnctr w fb of unsp lesser toe(s) w damage to nail, init|Pnctr w fb of unsp lesser toe(s) w damage to nail, init +C2866872|T037|PT|S91.246A|ICD10CM|Puncture wound with foreign body of unspecified lesser toe(s) with damage to nail, initial encounter|Puncture wound with foreign body of unspecified lesser toe(s) with damage to nail, initial encounter +C2866873|T037|AB|S91.246D|ICD10CM|Pnctr w fb of unsp lesser toe(s) w damage to nail, subs|Pnctr w fb of unsp lesser toe(s) w damage to nail, subs +C2866874|T037|AB|S91.246S|ICD10CM|Pnctr w fb of unsp lesser toe(s) w damage to nail, sequela|Pnctr w fb of unsp lesser toe(s) w damage to nail, sequela +C2866874|T037|PT|S91.246S|ICD10CM|Puncture wound with foreign body of unspecified lesser toe(s) with damage to nail, sequela|Puncture wound with foreign body of unspecified lesser toe(s) with damage to nail, sequela +C2866875|T037|AB|S91.249|ICD10CM|Pnctr w foreign body of unsp toe(s) w damage to nail|Pnctr w foreign body of unsp toe(s) w damage to nail +C2866875|T037|HT|S91.249|ICD10CM|Puncture wound with foreign body of unspecified toe(s) with damage to nail|Puncture wound with foreign body of unspecified toe(s) with damage to nail +C2866876|T037|AB|S91.249A|ICD10CM|Pnctr w foreign body of unsp toe(s) w damage to nail, init|Pnctr w foreign body of unsp toe(s) w damage to nail, init +C2866876|T037|PT|S91.249A|ICD10CM|Puncture wound with foreign body of unspecified toe(s) with damage to nail, initial encounter|Puncture wound with foreign body of unspecified toe(s) with damage to nail, initial encounter +C2866877|T037|AB|S91.249D|ICD10CM|Pnctr w foreign body of unsp toe(s) w damage to nail, subs|Pnctr w foreign body of unsp toe(s) w damage to nail, subs +C2866877|T037|PT|S91.249D|ICD10CM|Puncture wound with foreign body of unspecified toe(s) with damage to nail, subsequent encounter|Puncture wound with foreign body of unspecified toe(s) with damage to nail, subsequent encounter +C2866878|T037|AB|S91.249S|ICD10CM|Pnctr w fb of unsp toe(s) w damage to nail, sequela|Pnctr w fb of unsp toe(s) w damage to nail, sequela +C2866878|T037|PT|S91.249S|ICD10CM|Puncture wound with foreign body of unspecified toe(s) with damage to nail, sequela|Puncture wound with foreign body of unspecified toe(s) with damage to nail, sequela +C2866879|T037|ET|S91.25|ICD10CM|Bite of toe with damage to nail NOS|Bite of toe with damage to nail NOS +C2866880|T037|AB|S91.25|ICD10CM|Open bite of toe with damage to nail|Open bite of toe with damage to nail +C2866880|T037|HT|S91.25|ICD10CM|Open bite of toe with damage to nail|Open bite of toe with damage to nail +C2866881|T037|AB|S91.251|ICD10CM|Open bite of right great toe with damage to nail|Open bite of right great toe with damage to nail +C2866881|T037|HT|S91.251|ICD10CM|Open bite of right great toe with damage to nail|Open bite of right great toe with damage to nail +C2866882|T037|AB|S91.251A|ICD10CM|Open bite of right great toe w damage to nail, init encntr|Open bite of right great toe w damage to nail, init encntr +C2866882|T037|PT|S91.251A|ICD10CM|Open bite of right great toe with damage to nail, initial encounter|Open bite of right great toe with damage to nail, initial encounter +C2866883|T037|AB|S91.251D|ICD10CM|Open bite of right great toe w damage to nail, subs encntr|Open bite of right great toe w damage to nail, subs encntr +C2866883|T037|PT|S91.251D|ICD10CM|Open bite of right great toe with damage to nail, subsequent encounter|Open bite of right great toe with damage to nail, subsequent encounter +C2866884|T037|AB|S91.251S|ICD10CM|Open bite of right great toe with damage to nail, sequela|Open bite of right great toe with damage to nail, sequela +C2866884|T037|PT|S91.251S|ICD10CM|Open bite of right great toe with damage to nail, sequela|Open bite of right great toe with damage to nail, sequela +C2866885|T037|AB|S91.252|ICD10CM|Open bite of left great toe with damage to nail|Open bite of left great toe with damage to nail +C2866885|T037|HT|S91.252|ICD10CM|Open bite of left great toe with damage to nail|Open bite of left great toe with damage to nail +C2866886|T037|AB|S91.252A|ICD10CM|Open bite of left great toe with damage to nail, init encntr|Open bite of left great toe with damage to nail, init encntr +C2866886|T037|PT|S91.252A|ICD10CM|Open bite of left great toe with damage to nail, initial encounter|Open bite of left great toe with damage to nail, initial encounter +C2866887|T037|AB|S91.252D|ICD10CM|Open bite of left great toe with damage to nail, subs encntr|Open bite of left great toe with damage to nail, subs encntr +C2866887|T037|PT|S91.252D|ICD10CM|Open bite of left great toe with damage to nail, subsequent encounter|Open bite of left great toe with damage to nail, subsequent encounter +C2866888|T037|AB|S91.252S|ICD10CM|Open bite of left great toe with damage to nail, sequela|Open bite of left great toe with damage to nail, sequela +C2866888|T037|PT|S91.252S|ICD10CM|Open bite of left great toe with damage to nail, sequela|Open bite of left great toe with damage to nail, sequela +C2866889|T037|AB|S91.253|ICD10CM|Open bite of unspecified great toe with damage to nail|Open bite of unspecified great toe with damage to nail +C2866889|T037|HT|S91.253|ICD10CM|Open bite of unspecified great toe with damage to nail|Open bite of unspecified great toe with damage to nail +C2866890|T037|AB|S91.253A|ICD10CM|Open bite of unsp great toe with damage to nail, init encntr|Open bite of unsp great toe with damage to nail, init encntr +C2866890|T037|PT|S91.253A|ICD10CM|Open bite of unspecified great toe with damage to nail, initial encounter|Open bite of unspecified great toe with damage to nail, initial encounter +C2866891|T037|AB|S91.253D|ICD10CM|Open bite of unsp great toe with damage to nail, subs encntr|Open bite of unsp great toe with damage to nail, subs encntr +C2866891|T037|PT|S91.253D|ICD10CM|Open bite of unspecified great toe with damage to nail, subsequent encounter|Open bite of unspecified great toe with damage to nail, subsequent encounter +C2866892|T037|AB|S91.253S|ICD10CM|Open bite of unsp great toe with damage to nail, sequela|Open bite of unsp great toe with damage to nail, sequela +C2866892|T037|PT|S91.253S|ICD10CM|Open bite of unspecified great toe with damage to nail, sequela|Open bite of unspecified great toe with damage to nail, sequela +C2866893|T037|AB|S91.254|ICD10CM|Open bite of right lesser toe(s) with damage to nail|Open bite of right lesser toe(s) with damage to nail +C2866893|T037|HT|S91.254|ICD10CM|Open bite of right lesser toe(s) with damage to nail|Open bite of right lesser toe(s) with damage to nail +C2866894|T037|AB|S91.254A|ICD10CM|Open bite of right lesser toe(s) w damage to nail, init|Open bite of right lesser toe(s) w damage to nail, init +C2866894|T037|PT|S91.254A|ICD10CM|Open bite of right lesser toe(s) with damage to nail, initial encounter|Open bite of right lesser toe(s) with damage to nail, initial encounter +C2866895|T037|AB|S91.254D|ICD10CM|Open bite of right lesser toe(s) w damage to nail, subs|Open bite of right lesser toe(s) w damage to nail, subs +C2866895|T037|PT|S91.254D|ICD10CM|Open bite of right lesser toe(s) with damage to nail, subsequent encounter|Open bite of right lesser toe(s) with damage to nail, subsequent encounter +C2866896|T037|AB|S91.254S|ICD10CM|Open bite of right lesser toe(s) w damage to nail, sequela|Open bite of right lesser toe(s) w damage to nail, sequela +C2866896|T037|PT|S91.254S|ICD10CM|Open bite of right lesser toe(s) with damage to nail, sequela|Open bite of right lesser toe(s) with damage to nail, sequela +C2866897|T037|AB|S91.255|ICD10CM|Open bite of left lesser toe(s) with damage to nail|Open bite of left lesser toe(s) with damage to nail +C2866897|T037|HT|S91.255|ICD10CM|Open bite of left lesser toe(s) with damage to nail|Open bite of left lesser toe(s) with damage to nail +C2866898|T037|AB|S91.255A|ICD10CM|Open bite of left lesser toe(s) w damage to nail, init|Open bite of left lesser toe(s) w damage to nail, init +C2866898|T037|PT|S91.255A|ICD10CM|Open bite of left lesser toe(s) with damage to nail, initial encounter|Open bite of left lesser toe(s) with damage to nail, initial encounter +C2866899|T037|AB|S91.255D|ICD10CM|Open bite of left lesser toe(s) w damage to nail, subs|Open bite of left lesser toe(s) w damage to nail, subs +C2866899|T037|PT|S91.255D|ICD10CM|Open bite of left lesser toe(s) with damage to nail, subsequent encounter|Open bite of left lesser toe(s) with damage to nail, subsequent encounter +C2866900|T037|AB|S91.255S|ICD10CM|Open bite of left lesser toe(s) with damage to nail, sequela|Open bite of left lesser toe(s) with damage to nail, sequela +C2866900|T037|PT|S91.255S|ICD10CM|Open bite of left lesser toe(s) with damage to nail, sequela|Open bite of left lesser toe(s) with damage to nail, sequela +C2866901|T037|AB|S91.256|ICD10CM|Open bite of unspecified lesser toe(s) with damage to nail|Open bite of unspecified lesser toe(s) with damage to nail +C2866901|T037|HT|S91.256|ICD10CM|Open bite of unspecified lesser toe(s) with damage to nail|Open bite of unspecified lesser toe(s) with damage to nail +C2866902|T037|AB|S91.256A|ICD10CM|Open bite of unsp lesser toe(s) w damage to nail, init|Open bite of unsp lesser toe(s) w damage to nail, init +C2866902|T037|PT|S91.256A|ICD10CM|Open bite of unspecified lesser toe(s) with damage to nail, initial encounter|Open bite of unspecified lesser toe(s) with damage to nail, initial encounter +C2866903|T037|AB|S91.256D|ICD10CM|Open bite of unsp lesser toe(s) w damage to nail, subs|Open bite of unsp lesser toe(s) w damage to nail, subs +C2866903|T037|PT|S91.256D|ICD10CM|Open bite of unspecified lesser toe(s) with damage to nail, subsequent encounter|Open bite of unspecified lesser toe(s) with damage to nail, subsequent encounter +C2866904|T037|AB|S91.256S|ICD10CM|Open bite of unsp lesser toe(s) with damage to nail, sequela|Open bite of unsp lesser toe(s) with damage to nail, sequela +C2866904|T037|PT|S91.256S|ICD10CM|Open bite of unspecified lesser toe(s) with damage to nail, sequela|Open bite of unspecified lesser toe(s) with damage to nail, sequela +C2866905|T037|AB|S91.259|ICD10CM|Open bite of unspecified toe(s) with damage to nail|Open bite of unspecified toe(s) with damage to nail +C2866905|T037|HT|S91.259|ICD10CM|Open bite of unspecified toe(s) with damage to nail|Open bite of unspecified toe(s) with damage to nail +C2866906|T037|AB|S91.259A|ICD10CM|Open bite of unsp toe(s) with damage to nail, init encntr|Open bite of unsp toe(s) with damage to nail, init encntr +C2866906|T037|PT|S91.259A|ICD10CM|Open bite of unspecified toe(s) with damage to nail, initial encounter|Open bite of unspecified toe(s) with damage to nail, initial encounter +C2866907|T037|AB|S91.259D|ICD10CM|Open bite of unsp toe(s) with damage to nail, subs encntr|Open bite of unsp toe(s) with damage to nail, subs encntr +C2866907|T037|PT|S91.259D|ICD10CM|Open bite of unspecified toe(s) with damage to nail, subsequent encounter|Open bite of unspecified toe(s) with damage to nail, subsequent encounter +C2866908|T037|AB|S91.259S|ICD10CM|Open bite of unspecified toe(s) with damage to nail, sequela|Open bite of unspecified toe(s) with damage to nail, sequela +C2866908|T037|PT|S91.259S|ICD10CM|Open bite of unspecified toe(s) with damage to nail, sequela|Open bite of unspecified toe(s) with damage to nail, sequela +C0347573|T037|HT|S91.3|ICD10CM|Open wound of foot|Open wound of foot +C0347573|T037|AB|S91.3|ICD10CM|Open wound of foot|Open wound of foot +C0478350|T037|PT|S91.3|ICD10|Open wound of other parts of foot|Open wound of other parts of foot +C2866909|T037|AB|S91.30|ICD10CM|Unspecified open wound of foot|Unspecified open wound of foot +C2866909|T037|HT|S91.30|ICD10CM|Unspecified open wound of foot|Unspecified open wound of foot +C2866910|T037|AB|S91.301|ICD10CM|Unspecified open wound, right foot|Unspecified open wound, right foot +C2866910|T037|HT|S91.301|ICD10CM|Unspecified open wound, right foot|Unspecified open wound, right foot +C2866911|T037|AB|S91.301A|ICD10CM|Unspecified open wound, right foot, initial encounter|Unspecified open wound, right foot, initial encounter +C2866911|T037|PT|S91.301A|ICD10CM|Unspecified open wound, right foot, initial encounter|Unspecified open wound, right foot, initial encounter +C2866912|T037|AB|S91.301D|ICD10CM|Unspecified open wound, right foot, subsequent encounter|Unspecified open wound, right foot, subsequent encounter +C2866912|T037|PT|S91.301D|ICD10CM|Unspecified open wound, right foot, subsequent encounter|Unspecified open wound, right foot, subsequent encounter +C2866913|T037|AB|S91.301S|ICD10CM|Unspecified open wound, right foot, sequela|Unspecified open wound, right foot, sequela +C2866913|T037|PT|S91.301S|ICD10CM|Unspecified open wound, right foot, sequela|Unspecified open wound, right foot, sequela +C2866914|T037|AB|S91.302|ICD10CM|Unspecified open wound, left foot|Unspecified open wound, left foot +C2866914|T037|HT|S91.302|ICD10CM|Unspecified open wound, left foot|Unspecified open wound, left foot +C2866915|T037|AB|S91.302A|ICD10CM|Unspecified open wound, left foot, initial encounter|Unspecified open wound, left foot, initial encounter +C2866915|T037|PT|S91.302A|ICD10CM|Unspecified open wound, left foot, initial encounter|Unspecified open wound, left foot, initial encounter +C2866916|T037|AB|S91.302D|ICD10CM|Unspecified open wound, left foot, subsequent encounter|Unspecified open wound, left foot, subsequent encounter +C2866916|T037|PT|S91.302D|ICD10CM|Unspecified open wound, left foot, subsequent encounter|Unspecified open wound, left foot, subsequent encounter +C2866917|T037|AB|S91.302S|ICD10CM|Unspecified open wound, left foot, sequela|Unspecified open wound, left foot, sequela +C2866917|T037|PT|S91.302S|ICD10CM|Unspecified open wound, left foot, sequela|Unspecified open wound, left foot, sequela +C2866918|T037|AB|S91.309|ICD10CM|Unspecified open wound, unspecified foot|Unspecified open wound, unspecified foot +C2866918|T037|HT|S91.309|ICD10CM|Unspecified open wound, unspecified foot|Unspecified open wound, unspecified foot +C2866919|T037|AB|S91.309A|ICD10CM|Unspecified open wound, unspecified foot, initial encounter|Unspecified open wound, unspecified foot, initial encounter +C2866919|T037|PT|S91.309A|ICD10CM|Unspecified open wound, unspecified foot, initial encounter|Unspecified open wound, unspecified foot, initial encounter +C2866920|T037|AB|S91.309D|ICD10CM|Unspecified open wound, unspecified foot, subs encntr|Unspecified open wound, unspecified foot, subs encntr +C2866920|T037|PT|S91.309D|ICD10CM|Unspecified open wound, unspecified foot, subsequent encounter|Unspecified open wound, unspecified foot, subsequent encounter +C2866921|T037|AB|S91.309S|ICD10CM|Unspecified open wound, unspecified foot, sequela|Unspecified open wound, unspecified foot, sequela +C2866921|T037|PT|S91.309S|ICD10CM|Unspecified open wound, unspecified foot, sequela|Unspecified open wound, unspecified foot, sequela +C2866922|T037|AB|S91.31|ICD10CM|Laceration without foreign body of foot|Laceration without foreign body of foot +C2866922|T037|HT|S91.31|ICD10CM|Laceration without foreign body of foot|Laceration without foreign body of foot +C2866923|T037|AB|S91.311|ICD10CM|Laceration without foreign body, right foot|Laceration without foreign body, right foot +C2866923|T037|HT|S91.311|ICD10CM|Laceration without foreign body, right foot|Laceration without foreign body, right foot +C2866924|T037|AB|S91.311A|ICD10CM|Laceration without foreign body, right foot, init encntr|Laceration without foreign body, right foot, init encntr +C2866924|T037|PT|S91.311A|ICD10CM|Laceration without foreign body, right foot, initial encounter|Laceration without foreign body, right foot, initial encounter +C2866925|T037|AB|S91.311D|ICD10CM|Laceration without foreign body, right foot, subs encntr|Laceration without foreign body, right foot, subs encntr +C2866925|T037|PT|S91.311D|ICD10CM|Laceration without foreign body, right foot, subsequent encounter|Laceration without foreign body, right foot, subsequent encounter +C2866926|T037|AB|S91.311S|ICD10CM|Laceration without foreign body, right foot, sequela|Laceration without foreign body, right foot, sequela +C2866926|T037|PT|S91.311S|ICD10CM|Laceration without foreign body, right foot, sequela|Laceration without foreign body, right foot, sequela +C2866927|T037|AB|S91.312|ICD10CM|Laceration without foreign body, left foot|Laceration without foreign body, left foot +C2866927|T037|HT|S91.312|ICD10CM|Laceration without foreign body, left foot|Laceration without foreign body, left foot +C2866928|T037|AB|S91.312A|ICD10CM|Laceration without foreign body, left foot, init encntr|Laceration without foreign body, left foot, init encntr +C2866928|T037|PT|S91.312A|ICD10CM|Laceration without foreign body, left foot, initial encounter|Laceration without foreign body, left foot, initial encounter +C2866929|T037|AB|S91.312D|ICD10CM|Laceration without foreign body, left foot, subs encntr|Laceration without foreign body, left foot, subs encntr +C2866929|T037|PT|S91.312D|ICD10CM|Laceration without foreign body, left foot, subsequent encounter|Laceration without foreign body, left foot, subsequent encounter +C2866930|T037|AB|S91.312S|ICD10CM|Laceration without foreign body, left foot, sequela|Laceration without foreign body, left foot, sequela +C2866930|T037|PT|S91.312S|ICD10CM|Laceration without foreign body, left foot, sequela|Laceration without foreign body, left foot, sequela +C2866931|T037|AB|S91.319|ICD10CM|Laceration without foreign body, unspecified foot|Laceration without foreign body, unspecified foot +C2866931|T037|HT|S91.319|ICD10CM|Laceration without foreign body, unspecified foot|Laceration without foreign body, unspecified foot +C2866932|T037|AB|S91.319A|ICD10CM|Laceration without foreign body, unsp foot, init encntr|Laceration without foreign body, unsp foot, init encntr +C2866932|T037|PT|S91.319A|ICD10CM|Laceration without foreign body, unspecified foot, initial encounter|Laceration without foreign body, unspecified foot, initial encounter +C2866933|T037|AB|S91.319D|ICD10CM|Laceration without foreign body, unsp foot, subs encntr|Laceration without foreign body, unsp foot, subs encntr +C2866933|T037|PT|S91.319D|ICD10CM|Laceration without foreign body, unspecified foot, subsequent encounter|Laceration without foreign body, unspecified foot, subsequent encounter +C2866934|T037|AB|S91.319S|ICD10CM|Laceration without foreign body, unspecified foot, sequela|Laceration without foreign body, unspecified foot, sequela +C2866934|T037|PT|S91.319S|ICD10CM|Laceration without foreign body, unspecified foot, sequela|Laceration without foreign body, unspecified foot, sequela +C2866935|T037|AB|S91.32|ICD10CM|Laceration with foreign body of foot|Laceration with foreign body of foot +C2866935|T037|HT|S91.32|ICD10CM|Laceration with foreign body of foot|Laceration with foreign body of foot +C2866936|T037|AB|S91.321|ICD10CM|Laceration with foreign body, right foot|Laceration with foreign body, right foot +C2866936|T037|HT|S91.321|ICD10CM|Laceration with foreign body, right foot|Laceration with foreign body, right foot +C2866937|T037|AB|S91.321A|ICD10CM|Laceration with foreign body, right foot, initial encounter|Laceration with foreign body, right foot, initial encounter +C2866937|T037|PT|S91.321A|ICD10CM|Laceration with foreign body, right foot, initial encounter|Laceration with foreign body, right foot, initial encounter +C2866938|T037|AB|S91.321D|ICD10CM|Laceration with foreign body, right foot, subs encntr|Laceration with foreign body, right foot, subs encntr +C2866938|T037|PT|S91.321D|ICD10CM|Laceration with foreign body, right foot, subsequent encounter|Laceration with foreign body, right foot, subsequent encounter +C2866939|T037|AB|S91.321S|ICD10CM|Laceration with foreign body, right foot, sequela|Laceration with foreign body, right foot, sequela +C2866939|T037|PT|S91.321S|ICD10CM|Laceration with foreign body, right foot, sequela|Laceration with foreign body, right foot, sequela +C2866940|T037|AB|S91.322|ICD10CM|Laceration with foreign body, left foot|Laceration with foreign body, left foot +C2866940|T037|HT|S91.322|ICD10CM|Laceration with foreign body, left foot|Laceration with foreign body, left foot +C2866941|T037|AB|S91.322A|ICD10CM|Laceration with foreign body, left foot, initial encounter|Laceration with foreign body, left foot, initial encounter +C2866941|T037|PT|S91.322A|ICD10CM|Laceration with foreign body, left foot, initial encounter|Laceration with foreign body, left foot, initial encounter +C2866942|T037|AB|S91.322D|ICD10CM|Laceration with foreign body, left foot, subs encntr|Laceration with foreign body, left foot, subs encntr +C2866942|T037|PT|S91.322D|ICD10CM|Laceration with foreign body, left foot, subsequent encounter|Laceration with foreign body, left foot, subsequent encounter +C2866943|T037|AB|S91.322S|ICD10CM|Laceration with foreign body, left foot, sequela|Laceration with foreign body, left foot, sequela +C2866943|T037|PT|S91.322S|ICD10CM|Laceration with foreign body, left foot, sequela|Laceration with foreign body, left foot, sequela +C2866944|T037|AB|S91.329|ICD10CM|Laceration with foreign body, unspecified foot|Laceration with foreign body, unspecified foot +C2866944|T037|HT|S91.329|ICD10CM|Laceration with foreign body, unspecified foot|Laceration with foreign body, unspecified foot +C2866945|T037|AB|S91.329A|ICD10CM|Laceration with foreign body, unspecified foot, init encntr|Laceration with foreign body, unspecified foot, init encntr +C2866945|T037|PT|S91.329A|ICD10CM|Laceration with foreign body, unspecified foot, initial encounter|Laceration with foreign body, unspecified foot, initial encounter +C2866946|T037|AB|S91.329D|ICD10CM|Laceration with foreign body, unspecified foot, subs encntr|Laceration with foreign body, unspecified foot, subs encntr +C2866946|T037|PT|S91.329D|ICD10CM|Laceration with foreign body, unspecified foot, subsequent encounter|Laceration with foreign body, unspecified foot, subsequent encounter +C2866947|T037|AB|S91.329S|ICD10CM|Laceration with foreign body, unspecified foot, sequela|Laceration with foreign body, unspecified foot, sequela +C2866947|T037|PT|S91.329S|ICD10CM|Laceration with foreign body, unspecified foot, sequela|Laceration with foreign body, unspecified foot, sequela +C2866948|T037|HT|S91.33|ICD10CM|Puncture wound without foreign body of foot|Puncture wound without foreign body of foot +C2866948|T037|AB|S91.33|ICD10CM|Puncture wound without foreign body of foot|Puncture wound without foreign body of foot +C2866949|T037|AB|S91.331|ICD10CM|Puncture wound without foreign body, right foot|Puncture wound without foreign body, right foot +C2866949|T037|HT|S91.331|ICD10CM|Puncture wound without foreign body, right foot|Puncture wound without foreign body, right foot +C2866950|T037|AB|S91.331A|ICD10CM|Puncture wound without foreign body, right foot, init encntr|Puncture wound without foreign body, right foot, init encntr +C2866950|T037|PT|S91.331A|ICD10CM|Puncture wound without foreign body, right foot, initial encounter|Puncture wound without foreign body, right foot, initial encounter +C2866951|T037|AB|S91.331D|ICD10CM|Puncture wound without foreign body, right foot, subs encntr|Puncture wound without foreign body, right foot, subs encntr +C2866951|T037|PT|S91.331D|ICD10CM|Puncture wound without foreign body, right foot, subsequent encounter|Puncture wound without foreign body, right foot, subsequent encounter +C2866952|T037|AB|S91.331S|ICD10CM|Puncture wound without foreign body, right foot, sequela|Puncture wound without foreign body, right foot, sequela +C2866952|T037|PT|S91.331S|ICD10CM|Puncture wound without foreign body, right foot, sequela|Puncture wound without foreign body, right foot, sequela +C2866953|T037|AB|S91.332|ICD10CM|Puncture wound without foreign body, left foot|Puncture wound without foreign body, left foot +C2866953|T037|HT|S91.332|ICD10CM|Puncture wound without foreign body, left foot|Puncture wound without foreign body, left foot +C2866954|T037|AB|S91.332A|ICD10CM|Puncture wound without foreign body, left foot, init encntr|Puncture wound without foreign body, left foot, init encntr +C2866954|T037|PT|S91.332A|ICD10CM|Puncture wound without foreign body, left foot, initial encounter|Puncture wound without foreign body, left foot, initial encounter +C2866955|T037|AB|S91.332D|ICD10CM|Puncture wound without foreign body, left foot, subs encntr|Puncture wound without foreign body, left foot, subs encntr +C2866955|T037|PT|S91.332D|ICD10CM|Puncture wound without foreign body, left foot, subsequent encounter|Puncture wound without foreign body, left foot, subsequent encounter +C2866956|T037|AB|S91.332S|ICD10CM|Puncture wound without foreign body, left foot, sequela|Puncture wound without foreign body, left foot, sequela +C2866956|T037|PT|S91.332S|ICD10CM|Puncture wound without foreign body, left foot, sequela|Puncture wound without foreign body, left foot, sequela +C2866957|T037|AB|S91.339|ICD10CM|Puncture wound without foreign body, unspecified foot|Puncture wound without foreign body, unspecified foot +C2866957|T037|HT|S91.339|ICD10CM|Puncture wound without foreign body, unspecified foot|Puncture wound without foreign body, unspecified foot +C2866958|T037|AB|S91.339A|ICD10CM|Puncture wound without foreign body, unsp foot, init encntr|Puncture wound without foreign body, unsp foot, init encntr +C2866958|T037|PT|S91.339A|ICD10CM|Puncture wound without foreign body, unspecified foot, initial encounter|Puncture wound without foreign body, unspecified foot, initial encounter +C2866959|T037|AB|S91.339D|ICD10CM|Puncture wound without foreign body, unsp foot, subs encntr|Puncture wound without foreign body, unsp foot, subs encntr +C2866959|T037|PT|S91.339D|ICD10CM|Puncture wound without foreign body, unspecified foot, subsequent encounter|Puncture wound without foreign body, unspecified foot, subsequent encounter +C2866960|T037|AB|S91.339S|ICD10CM|Puncture wound without foreign body, unsp foot, sequela|Puncture wound without foreign body, unsp foot, sequela +C2866960|T037|PT|S91.339S|ICD10CM|Puncture wound without foreign body, unspecified foot, sequela|Puncture wound without foreign body, unspecified foot, sequela +C2866961|T037|AB|S91.34|ICD10CM|Puncture wound with foreign body of foot|Puncture wound with foreign body of foot +C2866961|T037|HT|S91.34|ICD10CM|Puncture wound with foreign body of foot|Puncture wound with foreign body of foot +C2866962|T037|AB|S91.341|ICD10CM|Puncture wound with foreign body, right foot|Puncture wound with foreign body, right foot +C2866962|T037|HT|S91.341|ICD10CM|Puncture wound with foreign body, right foot|Puncture wound with foreign body, right foot +C2866963|T037|AB|S91.341A|ICD10CM|Puncture wound with foreign body, right foot, init encntr|Puncture wound with foreign body, right foot, init encntr +C2866963|T037|PT|S91.341A|ICD10CM|Puncture wound with foreign body, right foot, initial encounter|Puncture wound with foreign body, right foot, initial encounter +C2866964|T037|AB|S91.341D|ICD10CM|Puncture wound with foreign body, right foot, subs encntr|Puncture wound with foreign body, right foot, subs encntr +C2866964|T037|PT|S91.341D|ICD10CM|Puncture wound with foreign body, right foot, subsequent encounter|Puncture wound with foreign body, right foot, subsequent encounter +C2866965|T037|AB|S91.341S|ICD10CM|Puncture wound with foreign body, right foot, sequela|Puncture wound with foreign body, right foot, sequela +C2866965|T037|PT|S91.341S|ICD10CM|Puncture wound with foreign body, right foot, sequela|Puncture wound with foreign body, right foot, sequela +C2866966|T037|AB|S91.342|ICD10CM|Puncture wound with foreign body, left foot|Puncture wound with foreign body, left foot +C2866966|T037|HT|S91.342|ICD10CM|Puncture wound with foreign body, left foot|Puncture wound with foreign body, left foot +C2866967|T037|AB|S91.342A|ICD10CM|Puncture wound with foreign body, left foot, init encntr|Puncture wound with foreign body, left foot, init encntr +C2866967|T037|PT|S91.342A|ICD10CM|Puncture wound with foreign body, left foot, initial encounter|Puncture wound with foreign body, left foot, initial encounter +C2866968|T037|AB|S91.342D|ICD10CM|Puncture wound with foreign body, left foot, subs encntr|Puncture wound with foreign body, left foot, subs encntr +C2866968|T037|PT|S91.342D|ICD10CM|Puncture wound with foreign body, left foot, subsequent encounter|Puncture wound with foreign body, left foot, subsequent encounter +C2866969|T037|AB|S91.342S|ICD10CM|Puncture wound with foreign body, left foot, sequela|Puncture wound with foreign body, left foot, sequela +C2866969|T037|PT|S91.342S|ICD10CM|Puncture wound with foreign body, left foot, sequela|Puncture wound with foreign body, left foot, sequela +C2866970|T037|AB|S91.349|ICD10CM|Puncture wound with foreign body, unspecified foot|Puncture wound with foreign body, unspecified foot +C2866970|T037|HT|S91.349|ICD10CM|Puncture wound with foreign body, unspecified foot|Puncture wound with foreign body, unspecified foot +C2866971|T037|AB|S91.349A|ICD10CM|Puncture wound with foreign body, unsp foot, init encntr|Puncture wound with foreign body, unsp foot, init encntr +C2866971|T037|PT|S91.349A|ICD10CM|Puncture wound with foreign body, unspecified foot, initial encounter|Puncture wound with foreign body, unspecified foot, initial encounter +C2866972|T037|AB|S91.349D|ICD10CM|Puncture wound with foreign body, unsp foot, subs encntr|Puncture wound with foreign body, unsp foot, subs encntr +C2866972|T037|PT|S91.349D|ICD10CM|Puncture wound with foreign body, unspecified foot, subsequent encounter|Puncture wound with foreign body, unspecified foot, subsequent encounter +C2866973|T037|AB|S91.349S|ICD10CM|Puncture wound with foreign body, unspecified foot, sequela|Puncture wound with foreign body, unspecified foot, sequela +C2866973|T037|PT|S91.349S|ICD10CM|Puncture wound with foreign body, unspecified foot, sequela|Puncture wound with foreign body, unspecified foot, sequela +C2866974|T037|HT|S91.35|ICD10CM|Open bite of foot|Open bite of foot +C2866974|T037|AB|S91.35|ICD10CM|Open bite of foot|Open bite of foot +C2866975|T037|AB|S91.351|ICD10CM|Open bite, right foot|Open bite, right foot +C2866975|T037|HT|S91.351|ICD10CM|Open bite, right foot|Open bite, right foot +C2866976|T037|AB|S91.351A|ICD10CM|Open bite, right foot, initial encounter|Open bite, right foot, initial encounter +C2866976|T037|PT|S91.351A|ICD10CM|Open bite, right foot, initial encounter|Open bite, right foot, initial encounter +C2866977|T037|AB|S91.351D|ICD10CM|Open bite, right foot, subsequent encounter|Open bite, right foot, subsequent encounter +C2866977|T037|PT|S91.351D|ICD10CM|Open bite, right foot, subsequent encounter|Open bite, right foot, subsequent encounter +C2866978|T037|AB|S91.351S|ICD10CM|Open bite, right foot, sequela|Open bite, right foot, sequela +C2866978|T037|PT|S91.351S|ICD10CM|Open bite, right foot, sequela|Open bite, right foot, sequela +C2866979|T037|AB|S91.352|ICD10CM|Open bite, left foot|Open bite, left foot +C2866979|T037|HT|S91.352|ICD10CM|Open bite, left foot|Open bite, left foot +C2866980|T037|AB|S91.352A|ICD10CM|Open bite, left foot, initial encounter|Open bite, left foot, initial encounter +C2866980|T037|PT|S91.352A|ICD10CM|Open bite, left foot, initial encounter|Open bite, left foot, initial encounter +C2866981|T037|AB|S91.352D|ICD10CM|Open bite, left foot, subsequent encounter|Open bite, left foot, subsequent encounter +C2866981|T037|PT|S91.352D|ICD10CM|Open bite, left foot, subsequent encounter|Open bite, left foot, subsequent encounter +C2866982|T037|AB|S91.352S|ICD10CM|Open bite, left foot, sequela|Open bite, left foot, sequela +C2866982|T037|PT|S91.352S|ICD10CM|Open bite, left foot, sequela|Open bite, left foot, sequela +C2866983|T037|AB|S91.359|ICD10CM|Open bite, unspecified foot|Open bite, unspecified foot +C2866983|T037|HT|S91.359|ICD10CM|Open bite, unspecified foot|Open bite, unspecified foot +C2866984|T037|AB|S91.359A|ICD10CM|Open bite, unspecified foot, initial encounter|Open bite, unspecified foot, initial encounter +C2866984|T037|PT|S91.359A|ICD10CM|Open bite, unspecified foot, initial encounter|Open bite, unspecified foot, initial encounter +C2866985|T037|AB|S91.359D|ICD10CM|Open bite, unspecified foot, subsequent encounter|Open bite, unspecified foot, subsequent encounter +C2866985|T037|PT|S91.359D|ICD10CM|Open bite, unspecified foot, subsequent encounter|Open bite, unspecified foot, subsequent encounter +C2866986|T037|AB|S91.359S|ICD10CM|Open bite, unspecified foot, sequela|Open bite, unspecified foot, sequela +C2866986|T037|PT|S91.359S|ICD10CM|Open bite, unspecified foot, sequela|Open bite, unspecified foot, sequela +C0495964|T037|PT|S91.7|ICD10|Multiple open wounds of ankle and foot|Multiple open wounds of ankle and foot +C2866987|T037|AB|S92|ICD10CM|Fracture of foot and toe, except ankle|Fracture of foot and toe, except ankle +C2866987|T037|HT|S92|ICD10CM|Fracture of foot and toe, except ankle|Fracture of foot and toe, except ankle +C0495965|T037|HT|S92|ICD10|Fracture of foot, except ankle|Fracture of foot, except ankle +C0281926|T037|PT|S92.0|ICD10|Fracture of calcaneus|Fracture of calcaneus +C0281926|T037|HT|S92.0|ICD10CM|Fracture of calcaneus|Fracture of calcaneus +C0281926|T037|AB|S92.0|ICD10CM|Fracture of calcaneus|Fracture of calcaneus +C0281926|T037|ET|S92.0|ICD10CM|Heel bone|Heel bone +C0281926|T037|ET|S92.0|ICD10CM|Os calcis|Os calcis +C2866988|T037|AB|S92.00|ICD10CM|Unspecified fracture of calcaneus|Unspecified fracture of calcaneus +C2866988|T037|HT|S92.00|ICD10CM|Unspecified fracture of calcaneus|Unspecified fracture of calcaneus +C2866989|T037|AB|S92.001|ICD10CM|Unspecified fracture of right calcaneus|Unspecified fracture of right calcaneus +C2866989|T037|HT|S92.001|ICD10CM|Unspecified fracture of right calcaneus|Unspecified fracture of right calcaneus +C2866990|T037|AB|S92.001A|ICD10CM|Unsp fracture of right calcaneus, init for clos fx|Unsp fracture of right calcaneus, init for clos fx +C2866990|T037|PT|S92.001A|ICD10CM|Unspecified fracture of right calcaneus, initial encounter for closed fracture|Unspecified fracture of right calcaneus, initial encounter for closed fracture +C2866991|T037|AB|S92.001B|ICD10CM|Unsp fracture of right calcaneus, init for opn fx|Unsp fracture of right calcaneus, init for opn fx +C2866991|T037|PT|S92.001B|ICD10CM|Unspecified fracture of right calcaneus, initial encounter for open fracture|Unspecified fracture of right calcaneus, initial encounter for open fracture +C2866992|T037|AB|S92.001D|ICD10CM|Unsp fracture of right calcaneus, subs for fx w routn heal|Unsp fracture of right calcaneus, subs for fx w routn heal +C2866992|T037|PT|S92.001D|ICD10CM|Unspecified fracture of right calcaneus, subsequent encounter for fracture with routine healing|Unspecified fracture of right calcaneus, subsequent encounter for fracture with routine healing +C2866993|T037|AB|S92.001G|ICD10CM|Unsp fracture of right calcaneus, subs for fx w delay heal|Unsp fracture of right calcaneus, subs for fx w delay heal +C2866993|T037|PT|S92.001G|ICD10CM|Unspecified fracture of right calcaneus, subsequent encounter for fracture with delayed healing|Unspecified fracture of right calcaneus, subsequent encounter for fracture with delayed healing +C2866994|T037|AB|S92.001K|ICD10CM|Unsp fracture of right calcaneus, subs for fx w nonunion|Unsp fracture of right calcaneus, subs for fx w nonunion +C2866994|T037|PT|S92.001K|ICD10CM|Unspecified fracture of right calcaneus, subsequent encounter for fracture with nonunion|Unspecified fracture of right calcaneus, subsequent encounter for fracture with nonunion +C2866995|T037|AB|S92.001P|ICD10CM|Unsp fracture of right calcaneus, subs for fx w malunion|Unsp fracture of right calcaneus, subs for fx w malunion +C2866995|T037|PT|S92.001P|ICD10CM|Unspecified fracture of right calcaneus, subsequent encounter for fracture with malunion|Unspecified fracture of right calcaneus, subsequent encounter for fracture with malunion +C2866996|T037|AB|S92.001S|ICD10CM|Unspecified fracture of right calcaneus, sequela|Unspecified fracture of right calcaneus, sequela +C2866996|T037|PT|S92.001S|ICD10CM|Unspecified fracture of right calcaneus, sequela|Unspecified fracture of right calcaneus, sequela +C2866997|T037|AB|S92.002|ICD10CM|Unspecified fracture of left calcaneus|Unspecified fracture of left calcaneus +C2866997|T037|HT|S92.002|ICD10CM|Unspecified fracture of left calcaneus|Unspecified fracture of left calcaneus +C2866998|T037|AB|S92.002A|ICD10CM|Unsp fracture of left calcaneus, init for clos fx|Unsp fracture of left calcaneus, init for clos fx +C2866998|T037|PT|S92.002A|ICD10CM|Unspecified fracture of left calcaneus, initial encounter for closed fracture|Unspecified fracture of left calcaneus, initial encounter for closed fracture +C2866999|T037|AB|S92.002B|ICD10CM|Unsp fracture of left calcaneus, init for opn fx|Unsp fracture of left calcaneus, init for opn fx +C2866999|T037|PT|S92.002B|ICD10CM|Unspecified fracture of left calcaneus, initial encounter for open fracture|Unspecified fracture of left calcaneus, initial encounter for open fracture +C2867000|T037|AB|S92.002D|ICD10CM|Unsp fracture of left calcaneus, subs for fx w routn heal|Unsp fracture of left calcaneus, subs for fx w routn heal +C2867000|T037|PT|S92.002D|ICD10CM|Unspecified fracture of left calcaneus, subsequent encounter for fracture with routine healing|Unspecified fracture of left calcaneus, subsequent encounter for fracture with routine healing +C2867001|T037|AB|S92.002G|ICD10CM|Unsp fracture of left calcaneus, subs for fx w delay heal|Unsp fracture of left calcaneus, subs for fx w delay heal +C2867001|T037|PT|S92.002G|ICD10CM|Unspecified fracture of left calcaneus, subsequent encounter for fracture with delayed healing|Unspecified fracture of left calcaneus, subsequent encounter for fracture with delayed healing +C2867002|T037|AB|S92.002K|ICD10CM|Unsp fracture of left calcaneus, subs for fx w nonunion|Unsp fracture of left calcaneus, subs for fx w nonunion +C2867002|T037|PT|S92.002K|ICD10CM|Unspecified fracture of left calcaneus, subsequent encounter for fracture with nonunion|Unspecified fracture of left calcaneus, subsequent encounter for fracture with nonunion +C2867003|T037|AB|S92.002P|ICD10CM|Unsp fracture of left calcaneus, subs for fx w malunion|Unsp fracture of left calcaneus, subs for fx w malunion +C2867003|T037|PT|S92.002P|ICD10CM|Unspecified fracture of left calcaneus, subsequent encounter for fracture with malunion|Unspecified fracture of left calcaneus, subsequent encounter for fracture with malunion +C2867004|T037|AB|S92.002S|ICD10CM|Unspecified fracture of left calcaneus, sequela|Unspecified fracture of left calcaneus, sequela +C2867004|T037|PT|S92.002S|ICD10CM|Unspecified fracture of left calcaneus, sequela|Unspecified fracture of left calcaneus, sequela +C2867005|T037|AB|S92.009|ICD10CM|Unspecified fracture of unspecified calcaneus|Unspecified fracture of unspecified calcaneus +C2867005|T037|HT|S92.009|ICD10CM|Unspecified fracture of unspecified calcaneus|Unspecified fracture of unspecified calcaneus +C2867006|T037|AB|S92.009A|ICD10CM|Unsp fracture of unsp calcaneus, init for clos fx|Unsp fracture of unsp calcaneus, init for clos fx +C2867006|T037|PT|S92.009A|ICD10CM|Unspecified fracture of unspecified calcaneus, initial encounter for closed fracture|Unspecified fracture of unspecified calcaneus, initial encounter for closed fracture +C2867007|T037|AB|S92.009B|ICD10CM|Unsp fracture of unsp calcaneus, init for opn fx|Unsp fracture of unsp calcaneus, init for opn fx +C2867007|T037|PT|S92.009B|ICD10CM|Unspecified fracture of unspecified calcaneus, initial encounter for open fracture|Unspecified fracture of unspecified calcaneus, initial encounter for open fracture +C2867008|T037|AB|S92.009D|ICD10CM|Unsp fracture of unsp calcaneus, subs for fx w routn heal|Unsp fracture of unsp calcaneus, subs for fx w routn heal +C2867009|T037|AB|S92.009G|ICD10CM|Unsp fracture of unsp calcaneus, subs for fx w delay heal|Unsp fracture of unsp calcaneus, subs for fx w delay heal +C2867010|T037|AB|S92.009K|ICD10CM|Unsp fracture of unsp calcaneus, subs for fx w nonunion|Unsp fracture of unsp calcaneus, subs for fx w nonunion +C2867010|T037|PT|S92.009K|ICD10CM|Unspecified fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion|Unspecified fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion +C2867011|T037|AB|S92.009P|ICD10CM|Unsp fracture of unsp calcaneus, subs for fx w malunion|Unsp fracture of unsp calcaneus, subs for fx w malunion +C2867011|T037|PT|S92.009P|ICD10CM|Unspecified fracture of unspecified calcaneus, subsequent encounter for fracture with malunion|Unspecified fracture of unspecified calcaneus, subsequent encounter for fracture with malunion +C2867012|T037|AB|S92.009S|ICD10CM|Unspecified fracture of unspecified calcaneus, sequela|Unspecified fracture of unspecified calcaneus, sequela +C2867012|T037|PT|S92.009S|ICD10CM|Unspecified fracture of unspecified calcaneus, sequela|Unspecified fracture of unspecified calcaneus, sequela +C2867013|T037|AB|S92.01|ICD10CM|Fracture of body of calcaneus|Fracture of body of calcaneus +C2867013|T037|HT|S92.01|ICD10CM|Fracture of body of calcaneus|Fracture of body of calcaneus +C2867014|T037|AB|S92.011|ICD10CM|Displaced fracture of body of right calcaneus|Displaced fracture of body of right calcaneus +C2867014|T037|HT|S92.011|ICD10CM|Displaced fracture of body of right calcaneus|Displaced fracture of body of right calcaneus +C2867015|T037|AB|S92.011A|ICD10CM|Disp fx of body of right calcaneus, init for clos fx|Disp fx of body of right calcaneus, init for clos fx +C2867015|T037|PT|S92.011A|ICD10CM|Displaced fracture of body of right calcaneus, initial encounter for closed fracture|Displaced fracture of body of right calcaneus, initial encounter for closed fracture +C2867016|T037|AB|S92.011B|ICD10CM|Disp fx of body of right calcaneus, init for opn fx|Disp fx of body of right calcaneus, init for opn fx +C2867016|T037|PT|S92.011B|ICD10CM|Displaced fracture of body of right calcaneus, initial encounter for open fracture|Displaced fracture of body of right calcaneus, initial encounter for open fracture +C2867017|T037|AB|S92.011D|ICD10CM|Disp fx of body of right calcaneus, subs for fx w routn heal|Disp fx of body of right calcaneus, subs for fx w routn heal +C2867018|T037|AB|S92.011G|ICD10CM|Disp fx of body of right calcaneus, subs for fx w delay heal|Disp fx of body of right calcaneus, subs for fx w delay heal +C2867019|T037|AB|S92.011K|ICD10CM|Disp fx of body of right calcaneus, subs for fx w nonunion|Disp fx of body of right calcaneus, subs for fx w nonunion +C2867019|T037|PT|S92.011K|ICD10CM|Displaced fracture of body of right calcaneus, subsequent encounter for fracture with nonunion|Displaced fracture of body of right calcaneus, subsequent encounter for fracture with nonunion +C2867020|T037|AB|S92.011P|ICD10CM|Disp fx of body of right calcaneus, subs for fx w malunion|Disp fx of body of right calcaneus, subs for fx w malunion +C2867020|T037|PT|S92.011P|ICD10CM|Displaced fracture of body of right calcaneus, subsequent encounter for fracture with malunion|Displaced fracture of body of right calcaneus, subsequent encounter for fracture with malunion +C2867021|T037|PT|S92.011S|ICD10CM|Displaced fracture of body of right calcaneus, sequela|Displaced fracture of body of right calcaneus, sequela +C2867021|T037|AB|S92.011S|ICD10CM|Displaced fracture of body of right calcaneus, sequela|Displaced fracture of body of right calcaneus, sequela +C2867022|T037|AB|S92.012|ICD10CM|Displaced fracture of body of left calcaneus|Displaced fracture of body of left calcaneus +C2867022|T037|HT|S92.012|ICD10CM|Displaced fracture of body of left calcaneus|Displaced fracture of body of left calcaneus +C2867023|T037|AB|S92.012A|ICD10CM|Disp fx of body of left calcaneus, init for clos fx|Disp fx of body of left calcaneus, init for clos fx +C2867023|T037|PT|S92.012A|ICD10CM|Displaced fracture of body of left calcaneus, initial encounter for closed fracture|Displaced fracture of body of left calcaneus, initial encounter for closed fracture +C2867024|T037|AB|S92.012B|ICD10CM|Disp fx of body of left calcaneus, init for opn fx|Disp fx of body of left calcaneus, init for opn fx +C2867024|T037|PT|S92.012B|ICD10CM|Displaced fracture of body of left calcaneus, initial encounter for open fracture|Displaced fracture of body of left calcaneus, initial encounter for open fracture +C2867025|T037|AB|S92.012D|ICD10CM|Disp fx of body of left calcaneus, subs for fx w routn heal|Disp fx of body of left calcaneus, subs for fx w routn heal +C2867025|T037|PT|S92.012D|ICD10CM|Displaced fracture of body of left calcaneus, subsequent encounter for fracture with routine healing|Displaced fracture of body of left calcaneus, subsequent encounter for fracture with routine healing +C2867026|T037|AB|S92.012G|ICD10CM|Disp fx of body of left calcaneus, subs for fx w delay heal|Disp fx of body of left calcaneus, subs for fx w delay heal +C2867026|T037|PT|S92.012G|ICD10CM|Displaced fracture of body of left calcaneus, subsequent encounter for fracture with delayed healing|Displaced fracture of body of left calcaneus, subsequent encounter for fracture with delayed healing +C2867027|T037|AB|S92.012K|ICD10CM|Disp fx of body of left calcaneus, subs for fx w nonunion|Disp fx of body of left calcaneus, subs for fx w nonunion +C2867027|T037|PT|S92.012K|ICD10CM|Displaced fracture of body of left calcaneus, subsequent encounter for fracture with nonunion|Displaced fracture of body of left calcaneus, subsequent encounter for fracture with nonunion +C2867028|T037|AB|S92.012P|ICD10CM|Disp fx of body of left calcaneus, subs for fx w malunion|Disp fx of body of left calcaneus, subs for fx w malunion +C2867028|T037|PT|S92.012P|ICD10CM|Displaced fracture of body of left calcaneus, subsequent encounter for fracture with malunion|Displaced fracture of body of left calcaneus, subsequent encounter for fracture with malunion +C2867029|T037|PT|S92.012S|ICD10CM|Displaced fracture of body of left calcaneus, sequela|Displaced fracture of body of left calcaneus, sequela +C2867029|T037|AB|S92.012S|ICD10CM|Displaced fracture of body of left calcaneus, sequela|Displaced fracture of body of left calcaneus, sequela +C2867030|T037|AB|S92.013|ICD10CM|Displaced fracture of body of unspecified calcaneus|Displaced fracture of body of unspecified calcaneus +C2867030|T037|HT|S92.013|ICD10CM|Displaced fracture of body of unspecified calcaneus|Displaced fracture of body of unspecified calcaneus +C2867031|T037|AB|S92.013A|ICD10CM|Disp fx of body of unsp calcaneus, init for clos fx|Disp fx of body of unsp calcaneus, init for clos fx +C2867031|T037|PT|S92.013A|ICD10CM|Displaced fracture of body of unspecified calcaneus, initial encounter for closed fracture|Displaced fracture of body of unspecified calcaneus, initial encounter for closed fracture +C2867032|T037|AB|S92.013B|ICD10CM|Disp fx of body of unsp calcaneus, init for opn fx|Disp fx of body of unsp calcaneus, init for opn fx +C2867032|T037|PT|S92.013B|ICD10CM|Displaced fracture of body of unspecified calcaneus, initial encounter for open fracture|Displaced fracture of body of unspecified calcaneus, initial encounter for open fracture +C2867033|T037|AB|S92.013D|ICD10CM|Disp fx of body of unsp calcaneus, subs for fx w routn heal|Disp fx of body of unsp calcaneus, subs for fx w routn heal +C2867034|T037|AB|S92.013G|ICD10CM|Disp fx of body of unsp calcaneus, subs for fx w delay heal|Disp fx of body of unsp calcaneus, subs for fx w delay heal +C2867035|T037|AB|S92.013K|ICD10CM|Disp fx of body of unsp calcaneus, subs for fx w nonunion|Disp fx of body of unsp calcaneus, subs for fx w nonunion +C2867035|T037|PT|S92.013K|ICD10CM|Displaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with nonunion|Displaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with nonunion +C2867036|T037|AB|S92.013P|ICD10CM|Disp fx of body of unsp calcaneus, subs for fx w malunion|Disp fx of body of unsp calcaneus, subs for fx w malunion +C2867036|T037|PT|S92.013P|ICD10CM|Displaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with malunion|Displaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with malunion +C2867037|T037|AB|S92.013S|ICD10CM|Displaced fracture of body of unspecified calcaneus, sequela|Displaced fracture of body of unspecified calcaneus, sequela +C2867037|T037|PT|S92.013S|ICD10CM|Displaced fracture of body of unspecified calcaneus, sequela|Displaced fracture of body of unspecified calcaneus, sequela +C2867038|T037|AB|S92.014|ICD10CM|Nondisplaced fracture of body of right calcaneus|Nondisplaced fracture of body of right calcaneus +C2867038|T037|HT|S92.014|ICD10CM|Nondisplaced fracture of body of right calcaneus|Nondisplaced fracture of body of right calcaneus +C2867039|T037|AB|S92.014A|ICD10CM|Nondisp fx of body of right calcaneus, init for clos fx|Nondisp fx of body of right calcaneus, init for clos fx +C2867039|T037|PT|S92.014A|ICD10CM|Nondisplaced fracture of body of right calcaneus, initial encounter for closed fracture|Nondisplaced fracture of body of right calcaneus, initial encounter for closed fracture +C2867040|T037|AB|S92.014B|ICD10CM|Nondisp fx of body of right calcaneus, init for opn fx|Nondisp fx of body of right calcaneus, init for opn fx +C2867040|T037|PT|S92.014B|ICD10CM|Nondisplaced fracture of body of right calcaneus, initial encounter for open fracture|Nondisplaced fracture of body of right calcaneus, initial encounter for open fracture +C2867041|T037|AB|S92.014D|ICD10CM|Nondisp fx of body of r calcaneus, subs for fx w routn heal|Nondisp fx of body of r calcaneus, subs for fx w routn heal +C2867042|T037|AB|S92.014G|ICD10CM|Nondisp fx of body of r calcaneus, subs for fx w delay heal|Nondisp fx of body of r calcaneus, subs for fx w delay heal +C2867043|T037|AB|S92.014K|ICD10CM|Nondisp fx of body of r calcaneus, subs for fx w nonunion|Nondisp fx of body of r calcaneus, subs for fx w nonunion +C2867043|T037|PT|S92.014K|ICD10CM|Nondisplaced fracture of body of right calcaneus, subsequent encounter for fracture with nonunion|Nondisplaced fracture of body of right calcaneus, subsequent encounter for fracture with nonunion +C2867044|T037|AB|S92.014P|ICD10CM|Nondisp fx of body of r calcaneus, subs for fx w malunion|Nondisp fx of body of r calcaneus, subs for fx w malunion +C2867044|T037|PT|S92.014P|ICD10CM|Nondisplaced fracture of body of right calcaneus, subsequent encounter for fracture with malunion|Nondisplaced fracture of body of right calcaneus, subsequent encounter for fracture with malunion +C2867045|T037|PT|S92.014S|ICD10CM|Nondisplaced fracture of body of right calcaneus, sequela|Nondisplaced fracture of body of right calcaneus, sequela +C2867045|T037|AB|S92.014S|ICD10CM|Nondisplaced fracture of body of right calcaneus, sequela|Nondisplaced fracture of body of right calcaneus, sequela +C2867046|T037|AB|S92.015|ICD10CM|Nondisplaced fracture of body of left calcaneus|Nondisplaced fracture of body of left calcaneus +C2867046|T037|HT|S92.015|ICD10CM|Nondisplaced fracture of body of left calcaneus|Nondisplaced fracture of body of left calcaneus +C2867047|T037|AB|S92.015A|ICD10CM|Nondisp fx of body of left calcaneus, init for clos fx|Nondisp fx of body of left calcaneus, init for clos fx +C2867047|T037|PT|S92.015A|ICD10CM|Nondisplaced fracture of body of left calcaneus, initial encounter for closed fracture|Nondisplaced fracture of body of left calcaneus, initial encounter for closed fracture +C2867048|T037|AB|S92.015B|ICD10CM|Nondisp fx of body of left calcaneus, init for opn fx|Nondisp fx of body of left calcaneus, init for opn fx +C2867048|T037|PT|S92.015B|ICD10CM|Nondisplaced fracture of body of left calcaneus, initial encounter for open fracture|Nondisplaced fracture of body of left calcaneus, initial encounter for open fracture +C2867049|T037|AB|S92.015D|ICD10CM|Nondisp fx of body of l calcaneus, subs for fx w routn heal|Nondisp fx of body of l calcaneus, subs for fx w routn heal +C2867050|T037|AB|S92.015G|ICD10CM|Nondisp fx of body of l calcaneus, subs for fx w delay heal|Nondisp fx of body of l calcaneus, subs for fx w delay heal +C2867051|T037|AB|S92.015K|ICD10CM|Nondisp fx of body of left calcaneus, subs for fx w nonunion|Nondisp fx of body of left calcaneus, subs for fx w nonunion +C2867051|T037|PT|S92.015K|ICD10CM|Nondisplaced fracture of body of left calcaneus, subsequent encounter for fracture with nonunion|Nondisplaced fracture of body of left calcaneus, subsequent encounter for fracture with nonunion +C2867052|T037|AB|S92.015P|ICD10CM|Nondisp fx of body of left calcaneus, subs for fx w malunion|Nondisp fx of body of left calcaneus, subs for fx w malunion +C2867052|T037|PT|S92.015P|ICD10CM|Nondisplaced fracture of body of left calcaneus, subsequent encounter for fracture with malunion|Nondisplaced fracture of body of left calcaneus, subsequent encounter for fracture with malunion +C2867053|T037|PT|S92.015S|ICD10CM|Nondisplaced fracture of body of left calcaneus, sequela|Nondisplaced fracture of body of left calcaneus, sequela +C2867053|T037|AB|S92.015S|ICD10CM|Nondisplaced fracture of body of left calcaneus, sequela|Nondisplaced fracture of body of left calcaneus, sequela +C2867054|T037|AB|S92.016|ICD10CM|Nondisplaced fracture of body of unspecified calcaneus|Nondisplaced fracture of body of unspecified calcaneus +C2867054|T037|HT|S92.016|ICD10CM|Nondisplaced fracture of body of unspecified calcaneus|Nondisplaced fracture of body of unspecified calcaneus +C2867055|T037|AB|S92.016A|ICD10CM|Nondisp fx of body of unsp calcaneus, init for clos fx|Nondisp fx of body of unsp calcaneus, init for clos fx +C2867055|T037|PT|S92.016A|ICD10CM|Nondisplaced fracture of body of unspecified calcaneus, initial encounter for closed fracture|Nondisplaced fracture of body of unspecified calcaneus, initial encounter for closed fracture +C2867056|T037|AB|S92.016B|ICD10CM|Nondisp fx of body of unsp calcaneus, init for opn fx|Nondisp fx of body of unsp calcaneus, init for opn fx +C2867056|T037|PT|S92.016B|ICD10CM|Nondisplaced fracture of body of unspecified calcaneus, initial encounter for open fracture|Nondisplaced fracture of body of unspecified calcaneus, initial encounter for open fracture +C2867057|T037|AB|S92.016D|ICD10CM|Nondisp fx of body of unsp calcaneus, 7thD|Nondisp fx of body of unsp calcaneus, 7thD +C2867058|T037|AB|S92.016G|ICD10CM|Nondisp fx of body of unsp calcaneus, 7thG|Nondisp fx of body of unsp calcaneus, 7thG +C2867059|T037|AB|S92.016K|ICD10CM|Nondisp fx of body of unsp calcaneus, subs for fx w nonunion|Nondisp fx of body of unsp calcaneus, subs for fx w nonunion +C2867060|T037|AB|S92.016P|ICD10CM|Nondisp fx of body of unsp calcaneus, subs for fx w malunion|Nondisp fx of body of unsp calcaneus, subs for fx w malunion +C2867061|T037|AB|S92.016S|ICD10CM|Nondisp fx of body of unspecified calcaneus, sequela|Nondisp fx of body of unspecified calcaneus, sequela +C2867061|T037|PT|S92.016S|ICD10CM|Nondisplaced fracture of body of unspecified calcaneus, sequela|Nondisplaced fracture of body of unspecified calcaneus, sequela +C2867062|T037|AB|S92.02|ICD10CM|Fracture of anterior process of calcaneus|Fracture of anterior process of calcaneus +C2867062|T037|HT|S92.02|ICD10CM|Fracture of anterior process of calcaneus|Fracture of anterior process of calcaneus +C2867063|T037|AB|S92.021|ICD10CM|Displaced fracture of anterior process of right calcaneus|Displaced fracture of anterior process of right calcaneus +C2867063|T037|HT|S92.021|ICD10CM|Displaced fracture of anterior process of right calcaneus|Displaced fracture of anterior process of right calcaneus +C2867064|T037|AB|S92.021A|ICD10CM|Disp fx of anterior process of right calcaneus, init|Disp fx of anterior process of right calcaneus, init +C2867064|T037|PT|S92.021A|ICD10CM|Displaced fracture of anterior process of right calcaneus, initial encounter for closed fracture|Displaced fracture of anterior process of right calcaneus, initial encounter for closed fracture +C2867065|T037|AB|S92.021B|ICD10CM|Disp fx of anterior process of r calcaneus, init for opn fx|Disp fx of anterior process of r calcaneus, init for opn fx +C2867065|T037|PT|S92.021B|ICD10CM|Displaced fracture of anterior process of right calcaneus, initial encounter for open fracture|Displaced fracture of anterior process of right calcaneus, initial encounter for open fracture +C2867066|T037|AB|S92.021D|ICD10CM|Disp fx of ant pro of r calcaneus, subs for fx w routn heal|Disp fx of ant pro of r calcaneus, subs for fx w routn heal +C2867067|T037|AB|S92.021G|ICD10CM|Disp fx of ant pro of r calcaneus, subs for fx w delay heal|Disp fx of ant pro of r calcaneus, subs for fx w delay heal +C2867068|T037|AB|S92.021K|ICD10CM|Disp fx of ant pro of r calcaneus, subs for fx w nonunion|Disp fx of ant pro of r calcaneus, subs for fx w nonunion +C2867069|T037|AB|S92.021P|ICD10CM|Disp fx of ant pro of r calcaneus, subs for fx w malunion|Disp fx of ant pro of r calcaneus, subs for fx w malunion +C2867070|T037|AB|S92.021S|ICD10CM|Disp fx of anterior process of right calcaneus, sequela|Disp fx of anterior process of right calcaneus, sequela +C2867070|T037|PT|S92.021S|ICD10CM|Displaced fracture of anterior process of right calcaneus, sequela|Displaced fracture of anterior process of right calcaneus, sequela +C2867071|T037|AB|S92.022|ICD10CM|Displaced fracture of anterior process of left calcaneus|Displaced fracture of anterior process of left calcaneus +C2867071|T037|HT|S92.022|ICD10CM|Displaced fracture of anterior process of left calcaneus|Displaced fracture of anterior process of left calcaneus +C2867072|T037|AB|S92.022A|ICD10CM|Disp fx of anterior process of left calcaneus, init|Disp fx of anterior process of left calcaneus, init +C2867072|T037|PT|S92.022A|ICD10CM|Displaced fracture of anterior process of left calcaneus, initial encounter for closed fracture|Displaced fracture of anterior process of left calcaneus, initial encounter for closed fracture +C2867073|T037|AB|S92.022B|ICD10CM|Disp fx of anterior process of l calcaneus, init for opn fx|Disp fx of anterior process of l calcaneus, init for opn fx +C2867073|T037|PT|S92.022B|ICD10CM|Displaced fracture of anterior process of left calcaneus, initial encounter for open fracture|Displaced fracture of anterior process of left calcaneus, initial encounter for open fracture +C2867074|T037|AB|S92.022D|ICD10CM|Disp fx of ant pro of l calcaneus, subs for fx w routn heal|Disp fx of ant pro of l calcaneus, subs for fx w routn heal +C2867075|T037|AB|S92.022G|ICD10CM|Disp fx of ant pro of l calcaneus, subs for fx w delay heal|Disp fx of ant pro of l calcaneus, subs for fx w delay heal +C2867076|T037|AB|S92.022K|ICD10CM|Disp fx of ant pro of l calcaneus, subs for fx w nonunion|Disp fx of ant pro of l calcaneus, subs for fx w nonunion +C2867077|T037|AB|S92.022P|ICD10CM|Disp fx of ant pro of l calcaneus, subs for fx w malunion|Disp fx of ant pro of l calcaneus, subs for fx w malunion +C2867078|T037|AB|S92.022S|ICD10CM|Disp fx of anterior process of left calcaneus, sequela|Disp fx of anterior process of left calcaneus, sequela +C2867078|T037|PT|S92.022S|ICD10CM|Displaced fracture of anterior process of left calcaneus, sequela|Displaced fracture of anterior process of left calcaneus, sequela +C2867079|T037|AB|S92.023|ICD10CM|Disp fx of anterior process of unspecified calcaneus|Disp fx of anterior process of unspecified calcaneus +C2867079|T037|HT|S92.023|ICD10CM|Displaced fracture of anterior process of unspecified calcaneus|Displaced fracture of anterior process of unspecified calcaneus +C2867080|T037|AB|S92.023A|ICD10CM|Disp fx of anterior process of unsp calcaneus, init|Disp fx of anterior process of unsp calcaneus, init +C2867081|T037|AB|S92.023B|ICD10CM|Disp fx of ant process of unsp calcaneus, init for opn fx|Disp fx of ant process of unsp calcaneus, init for opn fx +C2867081|T037|PT|S92.023B|ICD10CM|Displaced fracture of anterior process of unspecified calcaneus, initial encounter for open fracture|Displaced fracture of anterior process of unspecified calcaneus, initial encounter for open fracture +C2867082|T037|AB|S92.023D|ICD10CM|Disp fx of ant pro of unsp calcaneus, 7thD|Disp fx of ant pro of unsp calcaneus, 7thD +C2867083|T037|AB|S92.023G|ICD10CM|Disp fx of ant pro of unsp calcaneus, 7thG|Disp fx of ant pro of unsp calcaneus, 7thG +C2867084|T037|AB|S92.023K|ICD10CM|Disp fx of ant pro of unsp calcaneus, subs for fx w nonunion|Disp fx of ant pro of unsp calcaneus, subs for fx w nonunion +C2867085|T037|AB|S92.023P|ICD10CM|Disp fx of ant pro of unsp calcaneus, subs for fx w malunion|Disp fx of ant pro of unsp calcaneus, subs for fx w malunion +C2867086|T037|AB|S92.023S|ICD10CM|Disp fx of anterior process of unsp calcaneus, sequela|Disp fx of anterior process of unsp calcaneus, sequela +C2867086|T037|PT|S92.023S|ICD10CM|Displaced fracture of anterior process of unspecified calcaneus, sequela|Displaced fracture of anterior process of unspecified calcaneus, sequela +C2867087|T037|AB|S92.024|ICD10CM|Nondisplaced fracture of anterior process of right calcaneus|Nondisplaced fracture of anterior process of right calcaneus +C2867087|T037|HT|S92.024|ICD10CM|Nondisplaced fracture of anterior process of right calcaneus|Nondisplaced fracture of anterior process of right calcaneus +C2867088|T037|AB|S92.024A|ICD10CM|Nondisp fx of anterior process of right calcaneus, init|Nondisp fx of anterior process of right calcaneus, init +C2867088|T037|PT|S92.024A|ICD10CM|Nondisplaced fracture of anterior process of right calcaneus, initial encounter for closed fracture|Nondisplaced fracture of anterior process of right calcaneus, initial encounter for closed fracture +C2867089|T037|AB|S92.024B|ICD10CM|Nondisp fx of ant process of r calcaneus, init for opn fx|Nondisp fx of ant process of r calcaneus, init for opn fx +C2867089|T037|PT|S92.024B|ICD10CM|Nondisplaced fracture of anterior process of right calcaneus, initial encounter for open fracture|Nondisplaced fracture of anterior process of right calcaneus, initial encounter for open fracture +C2867090|T037|AB|S92.024D|ICD10CM|Nondisp fx of ant pro of r calcaneus, 7thD|Nondisp fx of ant pro of r calcaneus, 7thD +C2867091|T037|AB|S92.024G|ICD10CM|Nondisp fx of ant pro of r calcaneus, 7thG|Nondisp fx of ant pro of r calcaneus, 7thG +C2867092|T037|AB|S92.024K|ICD10CM|Nondisp fx of ant pro of r calcaneus, subs for fx w nonunion|Nondisp fx of ant pro of r calcaneus, subs for fx w nonunion +C2867093|T037|AB|S92.024P|ICD10CM|Nondisp fx of ant pro of r calcaneus, subs for fx w malunion|Nondisp fx of ant pro of r calcaneus, subs for fx w malunion +C2867094|T037|AB|S92.024S|ICD10CM|Nondisp fx of anterior process of right calcaneus, sequela|Nondisp fx of anterior process of right calcaneus, sequela +C2867094|T037|PT|S92.024S|ICD10CM|Nondisplaced fracture of anterior process of right calcaneus, sequela|Nondisplaced fracture of anterior process of right calcaneus, sequela +C2867095|T037|AB|S92.025|ICD10CM|Nondisplaced fracture of anterior process of left calcaneus|Nondisplaced fracture of anterior process of left calcaneus +C2867095|T037|HT|S92.025|ICD10CM|Nondisplaced fracture of anterior process of left calcaneus|Nondisplaced fracture of anterior process of left calcaneus +C2867096|T037|AB|S92.025A|ICD10CM|Nondisp fx of anterior process of left calcaneus, init|Nondisp fx of anterior process of left calcaneus, init +C2867096|T037|PT|S92.025A|ICD10CM|Nondisplaced fracture of anterior process of left calcaneus, initial encounter for closed fracture|Nondisplaced fracture of anterior process of left calcaneus, initial encounter for closed fracture +C2867097|T037|AB|S92.025B|ICD10CM|Nondisp fx of ant process of l calcaneus, init for opn fx|Nondisp fx of ant process of l calcaneus, init for opn fx +C2867097|T037|PT|S92.025B|ICD10CM|Nondisplaced fracture of anterior process of left calcaneus, initial encounter for open fracture|Nondisplaced fracture of anterior process of left calcaneus, initial encounter for open fracture +C2867098|T037|AB|S92.025D|ICD10CM|Nondisp fx of ant pro of l calcaneus, 7thD|Nondisp fx of ant pro of l calcaneus, 7thD +C2867099|T037|AB|S92.025G|ICD10CM|Nondisp fx of ant pro of l calcaneus, 7thG|Nondisp fx of ant pro of l calcaneus, 7thG +C2867100|T037|AB|S92.025K|ICD10CM|Nondisp fx of ant pro of l calcaneus, subs for fx w nonunion|Nondisp fx of ant pro of l calcaneus, subs for fx w nonunion +C2867101|T037|AB|S92.025P|ICD10CM|Nondisp fx of ant pro of l calcaneus, subs for fx w malunion|Nondisp fx of ant pro of l calcaneus, subs for fx w malunion +C2867102|T037|AB|S92.025S|ICD10CM|Nondisp fx of anterior process of left calcaneus, sequela|Nondisp fx of anterior process of left calcaneus, sequela +C2867102|T037|PT|S92.025S|ICD10CM|Nondisplaced fracture of anterior process of left calcaneus, sequela|Nondisplaced fracture of anterior process of left calcaneus, sequela +C2867103|T037|AB|S92.026|ICD10CM|Nondisp fx of anterior process of unspecified calcaneus|Nondisp fx of anterior process of unspecified calcaneus +C2867103|T037|HT|S92.026|ICD10CM|Nondisplaced fracture of anterior process of unspecified calcaneus|Nondisplaced fracture of anterior process of unspecified calcaneus +C2867104|T037|AB|S92.026A|ICD10CM|Nondisp fx of anterior process of unsp calcaneus, init|Nondisp fx of anterior process of unsp calcaneus, init +C2867105|T037|AB|S92.026B|ICD10CM|Nondisp fx of ant process of unsp calcaneus, init for opn fx|Nondisp fx of ant process of unsp calcaneus, init for opn fx +C2867106|T037|AB|S92.026D|ICD10CM|Nondisp fx of ant pro of unsp calcaneus, 7thD|Nondisp fx of ant pro of unsp calcaneus, 7thD +C2867107|T037|AB|S92.026G|ICD10CM|Nondisp fx of ant pro of unsp calcaneus, 7thG|Nondisp fx of ant pro of unsp calcaneus, 7thG +C2867108|T037|AB|S92.026K|ICD10CM|Nondisp fx of ant pro of unsp calcaneus, 7thK|Nondisp fx of ant pro of unsp calcaneus, 7thK +C2867109|T037|AB|S92.026P|ICD10CM|Nondisp fx of ant pro of unsp calcaneus, 7thP|Nondisp fx of ant pro of unsp calcaneus, 7thP +C2867110|T037|AB|S92.026S|ICD10CM|Nondisp fx of anterior process of unsp calcaneus, sequela|Nondisp fx of anterior process of unsp calcaneus, sequela +C2867110|T037|PT|S92.026S|ICD10CM|Nondisplaced fracture of anterior process of unspecified calcaneus, sequela|Nondisplaced fracture of anterior process of unspecified calcaneus, sequela +C2867111|T037|AB|S92.03|ICD10CM|Avulsion fracture of tuberosity of calcaneus|Avulsion fracture of tuberosity of calcaneus +C2867111|T037|HT|S92.03|ICD10CM|Avulsion fracture of tuberosity of calcaneus|Avulsion fracture of tuberosity of calcaneus +C2867112|T037|AB|S92.031|ICD10CM|Displaced avulsion fracture of tuberosity of right calcaneus|Displaced avulsion fracture of tuberosity of right calcaneus +C2867112|T037|HT|S92.031|ICD10CM|Displaced avulsion fracture of tuberosity of right calcaneus|Displaced avulsion fracture of tuberosity of right calcaneus +C2867113|T037|PT|S92.031A|ICD10CM|Displaced avulsion fracture of tuberosity of right calcaneus, initial encounter for closed fracture|Displaced avulsion fracture of tuberosity of right calcaneus, initial encounter for closed fracture +C2867113|T037|AB|S92.031A|ICD10CM|Displaced avulsion fx tuberosity of r calcaneus, init|Displaced avulsion fx tuberosity of r calcaneus, init +C2867114|T037|AB|S92.031B|ICD10CM|Displ avulsion fx tuberosity of r calcaneus, init for opn fx|Displ avulsion fx tuberosity of r calcaneus, init for opn fx +C2867114|T037|PT|S92.031B|ICD10CM|Displaced avulsion fracture of tuberosity of right calcaneus, initial encounter for open fracture|Displaced avulsion fracture of tuberosity of right calcaneus, initial encounter for open fracture +C2867115|T037|AB|S92.031D|ICD10CM|Displ avuls fx tuberosity of r calcaneus, 7thD|Displ avuls fx tuberosity of r calcaneus, 7thD +C2867116|T037|AB|S92.031G|ICD10CM|Displ avuls fx tuberosity of r calcaneus, 7thG|Displ avuls fx tuberosity of r calcaneus, 7thG +C2867117|T037|AB|S92.031K|ICD10CM|Displ avuls fx tuberosity of r calcaneus, 7thK|Displ avuls fx tuberosity of r calcaneus, 7thK +C2867118|T037|AB|S92.031P|ICD10CM|Displ avuls fx tuberosity of r calcaneus, 7thP|Displ avuls fx tuberosity of r calcaneus, 7thP +C2867119|T037|PT|S92.031S|ICD10CM|Displaced avulsion fracture of tuberosity of right calcaneus, sequela|Displaced avulsion fracture of tuberosity of right calcaneus, sequela +C2867119|T037|AB|S92.031S|ICD10CM|Displaced avulsion fx tuberosity of r calcaneus, sequela|Displaced avulsion fx tuberosity of r calcaneus, sequela +C2867120|T037|AB|S92.032|ICD10CM|Displaced avulsion fracture of tuberosity of left calcaneus|Displaced avulsion fracture of tuberosity of left calcaneus +C2867120|T037|HT|S92.032|ICD10CM|Displaced avulsion fracture of tuberosity of left calcaneus|Displaced avulsion fracture of tuberosity of left calcaneus +C2867121|T037|PT|S92.032A|ICD10CM|Displaced avulsion fracture of tuberosity of left calcaneus, initial encounter for closed fracture|Displaced avulsion fracture of tuberosity of left calcaneus, initial encounter for closed fracture +C2867121|T037|AB|S92.032A|ICD10CM|Displaced avulsion fx tuberosity of l calcaneus, init|Displaced avulsion fx tuberosity of l calcaneus, init +C2867122|T037|AB|S92.032B|ICD10CM|Displ avulsion fx tuberosity of l calcaneus, init for opn fx|Displ avulsion fx tuberosity of l calcaneus, init for opn fx +C2867122|T037|PT|S92.032B|ICD10CM|Displaced avulsion fracture of tuberosity of left calcaneus, initial encounter for open fracture|Displaced avulsion fracture of tuberosity of left calcaneus, initial encounter for open fracture +C2867123|T037|AB|S92.032D|ICD10CM|Displ avuls fx tuberosity of l calcaneus, 7thD|Displ avuls fx tuberosity of l calcaneus, 7thD +C2867124|T037|AB|S92.032G|ICD10CM|Displ avuls fx tuberosity of l calcaneus, 7thG|Displ avuls fx tuberosity of l calcaneus, 7thG +C2867125|T037|AB|S92.032K|ICD10CM|Displ avuls fx tuberosity of l calcaneus, 7thK|Displ avuls fx tuberosity of l calcaneus, 7thK +C2867126|T037|AB|S92.032P|ICD10CM|Displ avuls fx tuberosity of l calcaneus, 7thP|Displ avuls fx tuberosity of l calcaneus, 7thP +C2867127|T037|PT|S92.032S|ICD10CM|Displaced avulsion fracture of tuberosity of left calcaneus, sequela|Displaced avulsion fracture of tuberosity of left calcaneus, sequela +C2867127|T037|AB|S92.032S|ICD10CM|Displaced avulsion fx tuberosity of l calcaneus, sequela|Displaced avulsion fx tuberosity of l calcaneus, sequela +C2867128|T037|AB|S92.033|ICD10CM|Displaced avulsion fracture of tuberosity of unsp calcaneus|Displaced avulsion fracture of tuberosity of unsp calcaneus +C2867128|T037|HT|S92.033|ICD10CM|Displaced avulsion fracture of tuberosity of unspecified calcaneus|Displaced avulsion fracture of tuberosity of unspecified calcaneus +C2867129|T037|AB|S92.033A|ICD10CM|Displaced avulsion fx tuberosity of unsp calcaneus, init|Displaced avulsion fx tuberosity of unsp calcaneus, init +C2867130|T037|AB|S92.033B|ICD10CM|Displ avuls fx tuberosity of unsp calcaneus, init for opn fx|Displ avuls fx tuberosity of unsp calcaneus, init for opn fx +C2867131|T037|AB|S92.033D|ICD10CM|Displ avuls fx tuberosity of unsp calcaneus, 7thD|Displ avuls fx tuberosity of unsp calcaneus, 7thD +C2867132|T037|AB|S92.033G|ICD10CM|Displ avuls fx tuberosity of unsp calcaneus, 7thG|Displ avuls fx tuberosity of unsp calcaneus, 7thG +C2867133|T037|AB|S92.033K|ICD10CM|Displ avuls fx tuberosity of unsp calcaneus, 7thK|Displ avuls fx tuberosity of unsp calcaneus, 7thK +C2867134|T037|AB|S92.033P|ICD10CM|Displ avuls fx tuberosity of unsp calcaneus, 7thP|Displ avuls fx tuberosity of unsp calcaneus, 7thP +C2867135|T037|PT|S92.033S|ICD10CM|Displaced avulsion fracture of tuberosity of unspecified calcaneus, sequela|Displaced avulsion fracture of tuberosity of unspecified calcaneus, sequela +C2867135|T037|AB|S92.033S|ICD10CM|Displaced avulsion fx tuberosity of unsp calcaneus, sequela|Displaced avulsion fx tuberosity of unsp calcaneus, sequela +C2867136|T037|AB|S92.034|ICD10CM|Nondisplaced avulsion fracture of tuberosity of r calcaneus|Nondisplaced avulsion fracture of tuberosity of r calcaneus +C2867136|T037|HT|S92.034|ICD10CM|Nondisplaced avulsion fracture of tuberosity of right calcaneus|Nondisplaced avulsion fracture of tuberosity of right calcaneus +C2867137|T037|AB|S92.034A|ICD10CM|Nondisp avulsion fracture of tuberosity of r calcaneus, init|Nondisp avulsion fracture of tuberosity of r calcaneus, init +C2867138|T037|AB|S92.034B|ICD10CM|Nondisp avuls fx tuberosity of r calcaneus, init for opn fx|Nondisp avuls fx tuberosity of r calcaneus, init for opn fx +C2867138|T037|PT|S92.034B|ICD10CM|Nondisplaced avulsion fracture of tuberosity of right calcaneus, initial encounter for open fracture|Nondisplaced avulsion fracture of tuberosity of right calcaneus, initial encounter for open fracture +C2867139|T037|AB|S92.034D|ICD10CM|Nondisp avuls fx tuberosity of r calcaneus, 7thD|Nondisp avuls fx tuberosity of r calcaneus, 7thD +C2867140|T037|AB|S92.034G|ICD10CM|Nondisp avuls fx tuberosity of r calcaneus, 7thG|Nondisp avuls fx tuberosity of r calcaneus, 7thG +C2867141|T037|AB|S92.034K|ICD10CM|Nondisp avuls fx tuberosity of r calcaneus, 7thK|Nondisp avuls fx tuberosity of r calcaneus, 7thK +C2867142|T037|AB|S92.034P|ICD10CM|Nondisp avuls fx tuberosity of r calcaneus, 7thP|Nondisp avuls fx tuberosity of r calcaneus, 7thP +C2867143|T037|AB|S92.034S|ICD10CM|Nondisp avulsion fx tuberosity of r calcaneus, sequela|Nondisp avulsion fx tuberosity of r calcaneus, sequela +C2867143|T037|PT|S92.034S|ICD10CM|Nondisplaced avulsion fracture of tuberosity of right calcaneus, sequela|Nondisplaced avulsion fracture of tuberosity of right calcaneus, sequela +C2867144|T037|AB|S92.035|ICD10CM|Nondisplaced avulsion fracture of tuberosity of l calcaneus|Nondisplaced avulsion fracture of tuberosity of l calcaneus +C2867144|T037|HT|S92.035|ICD10CM|Nondisplaced avulsion fracture of tuberosity of left calcaneus|Nondisplaced avulsion fracture of tuberosity of left calcaneus +C2867145|T037|AB|S92.035A|ICD10CM|Nondisp avulsion fracture of tuberosity of l calcaneus, init|Nondisp avulsion fracture of tuberosity of l calcaneus, init +C2867146|T037|AB|S92.035B|ICD10CM|Nondisp avuls fx tuberosity of l calcaneus, init for opn fx|Nondisp avuls fx tuberosity of l calcaneus, init for opn fx +C2867146|T037|PT|S92.035B|ICD10CM|Nondisplaced avulsion fracture of tuberosity of left calcaneus, initial encounter for open fracture|Nondisplaced avulsion fracture of tuberosity of left calcaneus, initial encounter for open fracture +C2867147|T037|AB|S92.035D|ICD10CM|Nondisp avuls fx tuberosity of l calcaneus, 7thD|Nondisp avuls fx tuberosity of l calcaneus, 7thD +C2867148|T037|AB|S92.035G|ICD10CM|Nondisp avuls fx tuberosity of l calcaneus, 7thG|Nondisp avuls fx tuberosity of l calcaneus, 7thG +C2867149|T037|AB|S92.035K|ICD10CM|Nondisp avuls fx tuberosity of l calcaneus, 7thK|Nondisp avuls fx tuberosity of l calcaneus, 7thK +C2867150|T037|AB|S92.035P|ICD10CM|Nondisp avuls fx tuberosity of l calcaneus, 7thP|Nondisp avuls fx tuberosity of l calcaneus, 7thP +C2867151|T037|AB|S92.035S|ICD10CM|Nondisp avulsion fx tuberosity of l calcaneus, sequela|Nondisp avulsion fx tuberosity of l calcaneus, sequela +C2867151|T037|PT|S92.035S|ICD10CM|Nondisplaced avulsion fracture of tuberosity of left calcaneus, sequela|Nondisplaced avulsion fracture of tuberosity of left calcaneus, sequela +C2867152|T037|AB|S92.036|ICD10CM|Nondisp avulsion fracture of tuberosity of unsp calcaneus|Nondisp avulsion fracture of tuberosity of unsp calcaneus +C2867152|T037|HT|S92.036|ICD10CM|Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus|Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus +C2867153|T037|AB|S92.036A|ICD10CM|Nondisp avulsion fx tuberosity of unsp calcaneus, init|Nondisp avulsion fx tuberosity of unsp calcaneus, init +C2867154|T037|AB|S92.036B|ICD10CM|Nondisp avuls fx tuberosity of unsp calcaneus, 7thB|Nondisp avuls fx tuberosity of unsp calcaneus, 7thB +C2867155|T037|AB|S92.036D|ICD10CM|Nondisp avuls fx tuberosity of unsp calcaneus, 7thD|Nondisp avuls fx tuberosity of unsp calcaneus, 7thD +C2867156|T037|AB|S92.036G|ICD10CM|Nondisp avuls fx tuberosity of unsp calcaneus, 7thG|Nondisp avuls fx tuberosity of unsp calcaneus, 7thG +C2867157|T037|AB|S92.036K|ICD10CM|Nondisp avuls fx tuberosity of unsp calcaneus, 7thK|Nondisp avuls fx tuberosity of unsp calcaneus, 7thK +C2867158|T037|AB|S92.036P|ICD10CM|Nondisp avuls fx tuberosity of unsp calcaneus, 7thP|Nondisp avuls fx tuberosity of unsp calcaneus, 7thP +C2867159|T037|AB|S92.036S|ICD10CM|Nondisp avulsion fx tuberosity of unsp calcaneus, sequela|Nondisp avulsion fx tuberosity of unsp calcaneus, sequela +C2867159|T037|PT|S92.036S|ICD10CM|Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, sequela|Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, sequela +C2867160|T037|AB|S92.04|ICD10CM|Other fracture of tuberosity of calcaneus|Other fracture of tuberosity of calcaneus +C2867160|T037|HT|S92.04|ICD10CM|Other fracture of tuberosity of calcaneus|Other fracture of tuberosity of calcaneus +C2867161|T037|AB|S92.041|ICD10CM|Displaced other fracture of tuberosity of right calcaneus|Displaced other fracture of tuberosity of right calcaneus +C2867161|T037|HT|S92.041|ICD10CM|Displaced other fracture of tuberosity of right calcaneus|Displaced other fracture of tuberosity of right calcaneus +C2867162|T037|AB|S92.041A|ICD10CM|Displaced oth fracture of tuberosity of r calcaneus, init|Displaced oth fracture of tuberosity of r calcaneus, init +C2867162|T037|PT|S92.041A|ICD10CM|Displaced other fracture of tuberosity of right calcaneus, initial encounter for closed fracture|Displaced other fracture of tuberosity of right calcaneus, initial encounter for closed fracture +C2867163|T037|AB|S92.041B|ICD10CM|Displaced oth fx tuberosity of r calcaneus, init for opn fx|Displaced oth fx tuberosity of r calcaneus, init for opn fx +C2867163|T037|PT|S92.041B|ICD10CM|Displaced other fracture of tuberosity of right calcaneus, initial encounter for open fracture|Displaced other fracture of tuberosity of right calcaneus, initial encounter for open fracture +C2867164|T037|AB|S92.041D|ICD10CM|Displ oth fx tuberosity of r calcaneus, 7thD|Displ oth fx tuberosity of r calcaneus, 7thD +C2867165|T037|AB|S92.041G|ICD10CM|Displ oth fx tuberosity of r calcaneus, 7thG|Displ oth fx tuberosity of r calcaneus, 7thG +C2867166|T037|AB|S92.041K|ICD10CM|Displ oth fx tuberosity of r calcaneus, 7thK|Displ oth fx tuberosity of r calcaneus, 7thK +C2867167|T037|AB|S92.041P|ICD10CM|Displ oth fx tuberosity of r calcaneus, 7thP|Displ oth fx tuberosity of r calcaneus, 7thP +C2867168|T037|AB|S92.041S|ICD10CM|Displaced oth fracture of tuberosity of r calcaneus, sequela|Displaced oth fracture of tuberosity of r calcaneus, sequela +C2867168|T037|PT|S92.041S|ICD10CM|Displaced other fracture of tuberosity of right calcaneus, sequela|Displaced other fracture of tuberosity of right calcaneus, sequela +C2867169|T037|AB|S92.042|ICD10CM|Displaced other fracture of tuberosity of left calcaneus|Displaced other fracture of tuberosity of left calcaneus +C2867169|T037|HT|S92.042|ICD10CM|Displaced other fracture of tuberosity of left calcaneus|Displaced other fracture of tuberosity of left calcaneus +C2867170|T037|AB|S92.042A|ICD10CM|Displaced oth fracture of tuberosity of left calcaneus, init|Displaced oth fracture of tuberosity of left calcaneus, init +C2867170|T037|PT|S92.042A|ICD10CM|Displaced other fracture of tuberosity of left calcaneus, initial encounter for closed fracture|Displaced other fracture of tuberosity of left calcaneus, initial encounter for closed fracture +C2867171|T037|AB|S92.042B|ICD10CM|Displaced oth fx tuberosity of l calcaneus, init for opn fx|Displaced oth fx tuberosity of l calcaneus, init for opn fx +C2867171|T037|PT|S92.042B|ICD10CM|Displaced other fracture of tuberosity of left calcaneus, initial encounter for open fracture|Displaced other fracture of tuberosity of left calcaneus, initial encounter for open fracture +C2867172|T037|AB|S92.042D|ICD10CM|Displ oth fx tuberosity of l calcaneus, 7thD|Displ oth fx tuberosity of l calcaneus, 7thD +C2867173|T037|AB|S92.042G|ICD10CM|Displ oth fx tuberosity of l calcaneus, 7thG|Displ oth fx tuberosity of l calcaneus, 7thG +C2867174|T037|AB|S92.042K|ICD10CM|Displ oth fx tuberosity of l calcaneus, 7thK|Displ oth fx tuberosity of l calcaneus, 7thK +C2867175|T037|AB|S92.042P|ICD10CM|Displ oth fx tuberosity of l calcaneus, 7thP|Displ oth fx tuberosity of l calcaneus, 7thP +C2867176|T037|AB|S92.042S|ICD10CM|Displaced oth fracture of tuberosity of l calcaneus, sequela|Displaced oth fracture of tuberosity of l calcaneus, sequela +C2867176|T037|PT|S92.042S|ICD10CM|Displaced other fracture of tuberosity of left calcaneus, sequela|Displaced other fracture of tuberosity of left calcaneus, sequela +C2867177|T037|AB|S92.043|ICD10CM|Displaced other fracture of tuberosity of unsp calcaneus|Displaced other fracture of tuberosity of unsp calcaneus +C2867177|T037|HT|S92.043|ICD10CM|Displaced other fracture of tuberosity of unspecified calcaneus|Displaced other fracture of tuberosity of unspecified calcaneus +C2867178|T037|AB|S92.043A|ICD10CM|Displaced oth fracture of tuberosity of unsp calcaneus, init|Displaced oth fracture of tuberosity of unsp calcaneus, init +C2867179|T037|AB|S92.043B|ICD10CM|Displ oth fx tuberosity of unsp calcaneus, init for opn fx|Displ oth fx tuberosity of unsp calcaneus, init for opn fx +C2867179|T037|PT|S92.043B|ICD10CM|Displaced other fracture of tuberosity of unspecified calcaneus, initial encounter for open fracture|Displaced other fracture of tuberosity of unspecified calcaneus, initial encounter for open fracture +C2867180|T037|AB|S92.043D|ICD10CM|Displ oth fx tuberosity of unsp calcaneus, 7thD|Displ oth fx tuberosity of unsp calcaneus, 7thD +C2867181|T037|AB|S92.043G|ICD10CM|Displ oth fx tuberosity of unsp calcaneus, 7thG|Displ oth fx tuberosity of unsp calcaneus, 7thG +C2867182|T037|AB|S92.043K|ICD10CM|Displ oth fx tuberosity of unsp calcaneus, 7thK|Displ oth fx tuberosity of unsp calcaneus, 7thK +C2867183|T037|AB|S92.043P|ICD10CM|Displ oth fx tuberosity of unsp calcaneus, 7thP|Displ oth fx tuberosity of unsp calcaneus, 7thP +C2867184|T037|AB|S92.043S|ICD10CM|Displaced oth fx tuberosity of unsp calcaneus, sequela|Displaced oth fx tuberosity of unsp calcaneus, sequela +C2867184|T037|PT|S92.043S|ICD10CM|Displaced other fracture of tuberosity of unspecified calcaneus, sequela|Displaced other fracture of tuberosity of unspecified calcaneus, sequela +C2867185|T037|AB|S92.044|ICD10CM|Nondisplaced other fracture of tuberosity of right calcaneus|Nondisplaced other fracture of tuberosity of right calcaneus +C2867185|T037|HT|S92.044|ICD10CM|Nondisplaced other fracture of tuberosity of right calcaneus|Nondisplaced other fracture of tuberosity of right calcaneus +C2867186|T037|AB|S92.044A|ICD10CM|Nondisplaced oth fracture of tuberosity of r calcaneus, init|Nondisplaced oth fracture of tuberosity of r calcaneus, init +C2867186|T037|PT|S92.044A|ICD10CM|Nondisplaced other fracture of tuberosity of right calcaneus, initial encounter for closed fracture|Nondisplaced other fracture of tuberosity of right calcaneus, initial encounter for closed fracture +C2867187|T037|AB|S92.044B|ICD10CM|Nondisp oth fx tuberosity of r calcaneus, init for opn fx|Nondisp oth fx tuberosity of r calcaneus, init for opn fx +C2867187|T037|PT|S92.044B|ICD10CM|Nondisplaced other fracture of tuberosity of right calcaneus, initial encounter for open fracture|Nondisplaced other fracture of tuberosity of right calcaneus, initial encounter for open fracture +C2867188|T037|AB|S92.044D|ICD10CM|Nondisp oth fx tuberosity of r calcaneus, 7thD|Nondisp oth fx tuberosity of r calcaneus, 7thD +C2867189|T037|AB|S92.044G|ICD10CM|Nondisp oth fx tuberosity of r calcaneus, 7thG|Nondisp oth fx tuberosity of r calcaneus, 7thG +C2867190|T037|AB|S92.044K|ICD10CM|Nondisp oth fx tuberosity of r calcaneus, 7thK|Nondisp oth fx tuberosity of r calcaneus, 7thK +C2867191|T037|AB|S92.044P|ICD10CM|Nondisp oth fx tuberosity of r calcaneus, 7thP|Nondisp oth fx tuberosity of r calcaneus, 7thP +C2867192|T037|AB|S92.044S|ICD10CM|Nondisp oth fracture of tuberosity of r calcaneus, sequela|Nondisp oth fracture of tuberosity of r calcaneus, sequela +C2867192|T037|PT|S92.044S|ICD10CM|Nondisplaced other fracture of tuberosity of right calcaneus, sequela|Nondisplaced other fracture of tuberosity of right calcaneus, sequela +C2867193|T037|AB|S92.045|ICD10CM|Nondisplaced other fracture of tuberosity of left calcaneus|Nondisplaced other fracture of tuberosity of left calcaneus +C2867193|T037|HT|S92.045|ICD10CM|Nondisplaced other fracture of tuberosity of left calcaneus|Nondisplaced other fracture of tuberosity of left calcaneus +C2867194|T037|AB|S92.045A|ICD10CM|Nondisplaced oth fracture of tuberosity of l calcaneus, init|Nondisplaced oth fracture of tuberosity of l calcaneus, init +C2867194|T037|PT|S92.045A|ICD10CM|Nondisplaced other fracture of tuberosity of left calcaneus, initial encounter for closed fracture|Nondisplaced other fracture of tuberosity of left calcaneus, initial encounter for closed fracture +C2867195|T037|AB|S92.045B|ICD10CM|Nondisp oth fx tuberosity of l calcaneus, init for opn fx|Nondisp oth fx tuberosity of l calcaneus, init for opn fx +C2867195|T037|PT|S92.045B|ICD10CM|Nondisplaced other fracture of tuberosity of left calcaneus, initial encounter for open fracture|Nondisplaced other fracture of tuberosity of left calcaneus, initial encounter for open fracture +C2867196|T037|AB|S92.045D|ICD10CM|Nondisp oth fx tuberosity of l calcaneus, 7thD|Nondisp oth fx tuberosity of l calcaneus, 7thD +C2867197|T037|AB|S92.045G|ICD10CM|Nondisp oth fx tuberosity of l calcaneus, 7thG|Nondisp oth fx tuberosity of l calcaneus, 7thG +C2867198|T037|AB|S92.045K|ICD10CM|Nondisp oth fx tuberosity of l calcaneus, 7thK|Nondisp oth fx tuberosity of l calcaneus, 7thK +C2867199|T037|AB|S92.045P|ICD10CM|Nondisp oth fx tuberosity of l calcaneus, 7thP|Nondisp oth fx tuberosity of l calcaneus, 7thP +C2867200|T037|AB|S92.045S|ICD10CM|Nondisp oth fracture of tuberosity of l calcaneus, sequela|Nondisp oth fracture of tuberosity of l calcaneus, sequela +C2867200|T037|PT|S92.045S|ICD10CM|Nondisplaced other fracture of tuberosity of left calcaneus, sequela|Nondisplaced other fracture of tuberosity of left calcaneus, sequela +C2867201|T037|AB|S92.046|ICD10CM|Nondisplaced other fracture of tuberosity of unsp calcaneus|Nondisplaced other fracture of tuberosity of unsp calcaneus +C2867201|T037|HT|S92.046|ICD10CM|Nondisplaced other fracture of tuberosity of unspecified calcaneus|Nondisplaced other fracture of tuberosity of unspecified calcaneus +C2867202|T037|AB|S92.046A|ICD10CM|Nondisp oth fracture of tuberosity of unsp calcaneus, init|Nondisp oth fracture of tuberosity of unsp calcaneus, init +C2867203|T037|AB|S92.046B|ICD10CM|Nondisp oth fx tuberosity of unsp calcaneus, init for opn fx|Nondisp oth fx tuberosity of unsp calcaneus, init for opn fx +C2867204|T037|AB|S92.046D|ICD10CM|Nondisp oth fx tuberosity of unsp calcaneus, 7thD|Nondisp oth fx tuberosity of unsp calcaneus, 7thD +C2867205|T037|AB|S92.046G|ICD10CM|Nondisp oth fx tuberosity of unsp calcaneus, 7thG|Nondisp oth fx tuberosity of unsp calcaneus, 7thG +C2867206|T037|AB|S92.046K|ICD10CM|Nondisp oth fx tuberosity of unsp calcaneus, 7thK|Nondisp oth fx tuberosity of unsp calcaneus, 7thK +C2867207|T037|AB|S92.046P|ICD10CM|Nondisp oth fx tuberosity of unsp calcaneus, 7thP|Nondisp oth fx tuberosity of unsp calcaneus, 7thP +C2867208|T037|AB|S92.046S|ICD10CM|Nondisp oth fx tuberosity of unsp calcaneus, sequela|Nondisp oth fx tuberosity of unsp calcaneus, sequela +C2867208|T037|PT|S92.046S|ICD10CM|Nondisplaced other fracture of tuberosity of unspecified calcaneus, sequela|Nondisplaced other fracture of tuberosity of unspecified calcaneus, sequela +C2867209|T037|AB|S92.05|ICD10CM|Other extraarticular fracture of calcaneus|Other extraarticular fracture of calcaneus +C2867209|T037|HT|S92.05|ICD10CM|Other extraarticular fracture of calcaneus|Other extraarticular fracture of calcaneus +C2867210|T037|AB|S92.051|ICD10CM|Displaced other extraarticular fracture of right calcaneus|Displaced other extraarticular fracture of right calcaneus +C2867210|T037|HT|S92.051|ICD10CM|Displaced other extraarticular fracture of right calcaneus|Displaced other extraarticular fracture of right calcaneus +C2867211|T037|AB|S92.051A|ICD10CM|Displaced oth extraarticular fracture of r calcaneus, init|Displaced oth extraarticular fracture of r calcaneus, init +C2867211|T037|PT|S92.051A|ICD10CM|Displaced other extraarticular fracture of right calcaneus, initial encounter for closed fracture|Displaced other extraarticular fracture of right calcaneus, initial encounter for closed fracture +C2867212|T037|AB|S92.051B|ICD10CM|Displaced oth extrartic fx r calcaneus, init for opn fx|Displaced oth extrartic fx r calcaneus, init for opn fx +C2867212|T037|PT|S92.051B|ICD10CM|Displaced other extraarticular fracture of right calcaneus, initial encounter for open fracture|Displaced other extraarticular fracture of right calcaneus, initial encounter for open fracture +C2867213|T037|AB|S92.051D|ICD10CM|Displ oth extrartic fx r calcaneus, subs for fx w routn heal|Displ oth extrartic fx r calcaneus, subs for fx w routn heal +C2867214|T037|AB|S92.051G|ICD10CM|Displ oth extrartic fx r calcaneus, subs for fx w delay heal|Displ oth extrartic fx r calcaneus, subs for fx w delay heal +C2867215|T037|AB|S92.051K|ICD10CM|Displ oth extrartic fx r calcaneus, subs for fx w nonunion|Displ oth extrartic fx r calcaneus, subs for fx w nonunion +C2867216|T037|AB|S92.051P|ICD10CM|Displ oth extrartic fx r calcaneus, subs for fx w malunion|Displ oth extrartic fx r calcaneus, subs for fx w malunion +C2867217|T037|AB|S92.051S|ICD10CM|Displaced oth extrartic fracture of r calcaneus, sequela|Displaced oth extrartic fracture of r calcaneus, sequela +C2867217|T037|PT|S92.051S|ICD10CM|Displaced other extraarticular fracture of right calcaneus, sequela|Displaced other extraarticular fracture of right calcaneus, sequela +C2867218|T037|AB|S92.052|ICD10CM|Displaced other extraarticular fracture of left calcaneus|Displaced other extraarticular fracture of left calcaneus +C2867218|T037|HT|S92.052|ICD10CM|Displaced other extraarticular fracture of left calcaneus|Displaced other extraarticular fracture of left calcaneus +C2867219|T037|AB|S92.052A|ICD10CM|Displaced oth extrartic fracture of left calcaneus, init|Displaced oth extrartic fracture of left calcaneus, init +C2867219|T037|PT|S92.052A|ICD10CM|Displaced other extraarticular fracture of left calcaneus, initial encounter for closed fracture|Displaced other extraarticular fracture of left calcaneus, initial encounter for closed fracture +C2867220|T037|AB|S92.052B|ICD10CM|Displaced oth extrartic fx l calcaneus, init for opn fx|Displaced oth extrartic fx l calcaneus, init for opn fx +C2867220|T037|PT|S92.052B|ICD10CM|Displaced other extraarticular fracture of left calcaneus, initial encounter for open fracture|Displaced other extraarticular fracture of left calcaneus, initial encounter for open fracture +C2867221|T037|AB|S92.052D|ICD10CM|Displ oth extrartic fx l calcaneus, subs for fx w routn heal|Displ oth extrartic fx l calcaneus, subs for fx w routn heal +C2867222|T037|AB|S92.052G|ICD10CM|Displ oth extrartic fx l calcaneus, subs for fx w delay heal|Displ oth extrartic fx l calcaneus, subs for fx w delay heal +C2867223|T037|AB|S92.052K|ICD10CM|Displ oth extrartic fx l calcaneus, subs for fx w nonunion|Displ oth extrartic fx l calcaneus, subs for fx w nonunion +C2867224|T037|AB|S92.052P|ICD10CM|Displ oth extrartic fx l calcaneus, subs for fx w malunion|Displ oth extrartic fx l calcaneus, subs for fx w malunion +C2867225|T037|AB|S92.052S|ICD10CM|Displaced oth extrartic fracture of left calcaneus, sequela|Displaced oth extrartic fracture of left calcaneus, sequela +C2867225|T037|PT|S92.052S|ICD10CM|Displaced other extraarticular fracture of left calcaneus, sequela|Displaced other extraarticular fracture of left calcaneus, sequela +C2867226|T037|AB|S92.053|ICD10CM|Displaced other extraarticular fracture of unsp calcaneus|Displaced other extraarticular fracture of unsp calcaneus +C2867226|T037|HT|S92.053|ICD10CM|Displaced other extraarticular fracture of unspecified calcaneus|Displaced other extraarticular fracture of unspecified calcaneus +C2867227|T037|AB|S92.053A|ICD10CM|Displaced oth extrartic fracture of unsp calcaneus, init|Displaced oth extrartic fracture of unsp calcaneus, init +C2867228|T037|AB|S92.053B|ICD10CM|Displaced oth extrartic fx unsp calcaneus, init for opn fx|Displaced oth extrartic fx unsp calcaneus, init for opn fx +C2867229|T037|AB|S92.053D|ICD10CM|Displ oth extrartic fx unsp calcaneus, 7thD|Displ oth extrartic fx unsp calcaneus, 7thD +C2867230|T037|AB|S92.053G|ICD10CM|Displ oth extrartic fx unsp calcaneus, 7thG|Displ oth extrartic fx unsp calcaneus, 7thG +C2867231|T037|AB|S92.053K|ICD10CM|Displ oth extrartic fx unsp calcaneus, 7thK|Displ oth extrartic fx unsp calcaneus, 7thK +C2867232|T037|AB|S92.053P|ICD10CM|Displ oth extrartic fx unsp calcaneus, 7thP|Displ oth extrartic fx unsp calcaneus, 7thP +C2867233|T037|AB|S92.053S|ICD10CM|Displaced oth extrartic fracture of unsp calcaneus, sequela|Displaced oth extrartic fracture of unsp calcaneus, sequela +C2867233|T037|PT|S92.053S|ICD10CM|Displaced other extraarticular fracture of unspecified calcaneus, sequela|Displaced other extraarticular fracture of unspecified calcaneus, sequela +C2867234|T037|AB|S92.054|ICD10CM|Nondisplaced oth extraarticular fracture of right calcaneus|Nondisplaced oth extraarticular fracture of right calcaneus +C2867234|T037|HT|S92.054|ICD10CM|Nondisplaced other extraarticular fracture of right calcaneus|Nondisplaced other extraarticular fracture of right calcaneus +C2867235|T037|AB|S92.054A|ICD10CM|Nondisplaced oth extrartic fracture of r calcaneus, init|Nondisplaced oth extrartic fracture of r calcaneus, init +C2867235|T037|PT|S92.054A|ICD10CM|Nondisplaced other extraarticular fracture of right calcaneus, initial encounter for closed fracture|Nondisplaced other extraarticular fracture of right calcaneus, initial encounter for closed fracture +C2867236|T037|AB|S92.054B|ICD10CM|Nondisp oth extrartic fx r calcaneus, init for opn fx|Nondisp oth extrartic fx r calcaneus, init for opn fx +C2867236|T037|PT|S92.054B|ICD10CM|Nondisplaced other extraarticular fracture of right calcaneus, initial encounter for open fracture|Nondisplaced other extraarticular fracture of right calcaneus, initial encounter for open fracture +C2867237|T037|AB|S92.054D|ICD10CM|Nondisp oth extrartic fx r calcaneus, 7thD|Nondisp oth extrartic fx r calcaneus, 7thD +C2867238|T037|AB|S92.054G|ICD10CM|Nondisp oth extrartic fx r calcaneus, 7thG|Nondisp oth extrartic fx r calcaneus, 7thG +C2867239|T037|AB|S92.054K|ICD10CM|Nondisp oth extrartic fx r calcaneus, subs for fx w nonunion|Nondisp oth extrartic fx r calcaneus, subs for fx w nonunion +C2867240|T037|AB|S92.054P|ICD10CM|Nondisp oth extrartic fx r calcaneus, subs for fx w malunion|Nondisp oth extrartic fx r calcaneus, subs for fx w malunion +C2867241|T037|AB|S92.054S|ICD10CM|Nondisplaced oth extrartic fracture of r calcaneus, sequela|Nondisplaced oth extrartic fracture of r calcaneus, sequela +C2867241|T037|PT|S92.054S|ICD10CM|Nondisplaced other extraarticular fracture of right calcaneus, sequela|Nondisplaced other extraarticular fracture of right calcaneus, sequela +C2867242|T037|AB|S92.055|ICD10CM|Nondisplaced other extraarticular fracture of left calcaneus|Nondisplaced other extraarticular fracture of left calcaneus +C2867242|T037|HT|S92.055|ICD10CM|Nondisplaced other extraarticular fracture of left calcaneus|Nondisplaced other extraarticular fracture of left calcaneus +C2867243|T037|AB|S92.055A|ICD10CM|Nondisplaced oth extrartic fracture of left calcaneus, init|Nondisplaced oth extrartic fracture of left calcaneus, init +C2867243|T037|PT|S92.055A|ICD10CM|Nondisplaced other extraarticular fracture of left calcaneus, initial encounter for closed fracture|Nondisplaced other extraarticular fracture of left calcaneus, initial encounter for closed fracture +C2867244|T037|AB|S92.055B|ICD10CM|Nondisp oth extrartic fx l calcaneus, init for opn fx|Nondisp oth extrartic fx l calcaneus, init for opn fx +C2867244|T037|PT|S92.055B|ICD10CM|Nondisplaced other extraarticular fracture of left calcaneus, initial encounter for open fracture|Nondisplaced other extraarticular fracture of left calcaneus, initial encounter for open fracture +C2867245|T037|AB|S92.055D|ICD10CM|Nondisp oth extrartic fx l calcaneus, 7thD|Nondisp oth extrartic fx l calcaneus, 7thD +C2867246|T037|AB|S92.055G|ICD10CM|Nondisp oth extrartic fx l calcaneus, 7thG|Nondisp oth extrartic fx l calcaneus, 7thG +C2867247|T037|AB|S92.055K|ICD10CM|Nondisp oth extrartic fx l calcaneus, subs for fx w nonunion|Nondisp oth extrartic fx l calcaneus, subs for fx w nonunion +C2867248|T037|AB|S92.055P|ICD10CM|Nondisp oth extrartic fx l calcaneus, subs for fx w malunion|Nondisp oth extrartic fx l calcaneus, subs for fx w malunion +C2867249|T037|AB|S92.055S|ICD10CM|Nondisplaced oth extrartic fracture of l calcaneus, sequela|Nondisplaced oth extrartic fracture of l calcaneus, sequela +C2867249|T037|PT|S92.055S|ICD10CM|Nondisplaced other extraarticular fracture of left calcaneus, sequela|Nondisplaced other extraarticular fracture of left calcaneus, sequela +C2867250|T037|AB|S92.056|ICD10CM|Nondisplaced other extraarticular fracture of unsp calcaneus|Nondisplaced other extraarticular fracture of unsp calcaneus +C2867250|T037|HT|S92.056|ICD10CM|Nondisplaced other extraarticular fracture of unspecified calcaneus|Nondisplaced other extraarticular fracture of unspecified calcaneus +C2867251|T037|AB|S92.056A|ICD10CM|Nondisplaced oth extrartic fracture of unsp calcaneus, init|Nondisplaced oth extrartic fracture of unsp calcaneus, init +C2867252|T037|AB|S92.056B|ICD10CM|Nondisp oth extrartic fx unsp calcaneus, init for opn fx|Nondisp oth extrartic fx unsp calcaneus, init for opn fx +C2867253|T037|AB|S92.056D|ICD10CM|Nondisp oth extrartic fx unsp calcaneus, 7thD|Nondisp oth extrartic fx unsp calcaneus, 7thD +C2867254|T037|AB|S92.056G|ICD10CM|Nondisp oth extrartic fx unsp calcaneus, 7thG|Nondisp oth extrartic fx unsp calcaneus, 7thG +C2867255|T037|AB|S92.056K|ICD10CM|Nondisp oth extrartic fx unsp calcaneus, 7thK|Nondisp oth extrartic fx unsp calcaneus, 7thK +C2867256|T037|AB|S92.056P|ICD10CM|Nondisp oth extrartic fx unsp calcaneus, 7thP|Nondisp oth extrartic fx unsp calcaneus, 7thP +C2867257|T037|AB|S92.056S|ICD10CM|Nondisp oth extrartic fracture of unsp calcaneus, sequela|Nondisp oth extrartic fracture of unsp calcaneus, sequela +C2867257|T037|PT|S92.056S|ICD10CM|Nondisplaced other extraarticular fracture of unspecified calcaneus, sequela|Nondisplaced other extraarticular fracture of unspecified calcaneus, sequela +C2867258|T037|AB|S92.06|ICD10CM|Intraarticular fracture of calcaneus|Intraarticular fracture of calcaneus +C2867258|T037|HT|S92.06|ICD10CM|Intraarticular fracture of calcaneus|Intraarticular fracture of calcaneus +C2867259|T037|AB|S92.061|ICD10CM|Displaced intraarticular fracture of right calcaneus|Displaced intraarticular fracture of right calcaneus +C2867259|T037|HT|S92.061|ICD10CM|Displaced intraarticular fracture of right calcaneus|Displaced intraarticular fracture of right calcaneus +C2867260|T037|AB|S92.061A|ICD10CM|Displaced intraarticular fracture of right calcaneus, init|Displaced intraarticular fracture of right calcaneus, init +C2867260|T037|PT|S92.061A|ICD10CM|Displaced intraarticular fracture of right calcaneus, initial encounter for closed fracture|Displaced intraarticular fracture of right calcaneus, initial encounter for closed fracture +C2867261|T037|AB|S92.061B|ICD10CM|Displaced intartic fracture of r calcaneus, init for opn fx|Displaced intartic fracture of r calcaneus, init for opn fx +C2867261|T037|PT|S92.061B|ICD10CM|Displaced intraarticular fracture of right calcaneus, initial encounter for open fracture|Displaced intraarticular fracture of right calcaneus, initial encounter for open fracture +C2867262|T037|AB|S92.061D|ICD10CM|Displaced intartic fx r calcaneus, subs for fx w routn heal|Displaced intartic fx r calcaneus, subs for fx w routn heal +C2867263|T037|AB|S92.061G|ICD10CM|Displaced intartic fx r calcaneus, subs for fx w delay heal|Displaced intartic fx r calcaneus, subs for fx w delay heal +C2867264|T037|AB|S92.061K|ICD10CM|Displaced intartic fx r calcaneus, subs for fx w nonunion|Displaced intartic fx r calcaneus, subs for fx w nonunion +C2867265|T037|AB|S92.061P|ICD10CM|Displaced intartic fx r calcaneus, subs for fx w malunion|Displaced intartic fx r calcaneus, subs for fx w malunion +C2867266|T037|AB|S92.061S|ICD10CM|Displaced intraarticular fracture of r calcaneus, sequela|Displaced intraarticular fracture of r calcaneus, sequela +C2867266|T037|PT|S92.061S|ICD10CM|Displaced intraarticular fracture of right calcaneus, sequela|Displaced intraarticular fracture of right calcaneus, sequela +C2867267|T037|AB|S92.062|ICD10CM|Displaced intraarticular fracture of left calcaneus|Displaced intraarticular fracture of left calcaneus +C2867267|T037|HT|S92.062|ICD10CM|Displaced intraarticular fracture of left calcaneus|Displaced intraarticular fracture of left calcaneus +C2867268|T037|AB|S92.062A|ICD10CM|Displaced intraarticular fracture of left calcaneus, init|Displaced intraarticular fracture of left calcaneus, init +C2867268|T037|PT|S92.062A|ICD10CM|Displaced intraarticular fracture of left calcaneus, initial encounter for closed fracture|Displaced intraarticular fracture of left calcaneus, initial encounter for closed fracture +C2867269|T037|AB|S92.062B|ICD10CM|Displaced intartic fracture of l calcaneus, init for opn fx|Displaced intartic fracture of l calcaneus, init for opn fx +C2867269|T037|PT|S92.062B|ICD10CM|Displaced intraarticular fracture of left calcaneus, initial encounter for open fracture|Displaced intraarticular fracture of left calcaneus, initial encounter for open fracture +C2867270|T037|AB|S92.062D|ICD10CM|Displaced intartic fx l calcaneus, subs for fx w routn heal|Displaced intartic fx l calcaneus, subs for fx w routn heal +C2867271|T037|AB|S92.062G|ICD10CM|Displaced intartic fx l calcaneus, subs for fx w delay heal|Displaced intartic fx l calcaneus, subs for fx w delay heal +C2867272|T037|AB|S92.062K|ICD10CM|Displaced intartic fx l calcaneus, subs for fx w nonunion|Displaced intartic fx l calcaneus, subs for fx w nonunion +C2867272|T037|PT|S92.062K|ICD10CM|Displaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with nonunion|Displaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with nonunion +C2867273|T037|AB|S92.062P|ICD10CM|Displaced intartic fx l calcaneus, subs for fx w malunion|Displaced intartic fx l calcaneus, subs for fx w malunion +C2867273|T037|PT|S92.062P|ICD10CM|Displaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with malunion|Displaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with malunion +C2867274|T037|AB|S92.062S|ICD10CM|Displaced intraarticular fracture of left calcaneus, sequela|Displaced intraarticular fracture of left calcaneus, sequela +C2867274|T037|PT|S92.062S|ICD10CM|Displaced intraarticular fracture of left calcaneus, sequela|Displaced intraarticular fracture of left calcaneus, sequela +C2867275|T037|AB|S92.063|ICD10CM|Displaced intraarticular fracture of unspecified calcaneus|Displaced intraarticular fracture of unspecified calcaneus +C2867275|T037|HT|S92.063|ICD10CM|Displaced intraarticular fracture of unspecified calcaneus|Displaced intraarticular fracture of unspecified calcaneus +C2867276|T037|AB|S92.063A|ICD10CM|Displaced intraarticular fracture of unsp calcaneus, init|Displaced intraarticular fracture of unsp calcaneus, init +C2867276|T037|PT|S92.063A|ICD10CM|Displaced intraarticular fracture of unspecified calcaneus, initial encounter for closed fracture|Displaced intraarticular fracture of unspecified calcaneus, initial encounter for closed fracture +C2867277|T037|AB|S92.063B|ICD10CM|Displaced intartic fx unsp calcaneus, init for opn fx|Displaced intartic fx unsp calcaneus, init for opn fx +C2867277|T037|PT|S92.063B|ICD10CM|Displaced intraarticular fracture of unspecified calcaneus, initial encounter for open fracture|Displaced intraarticular fracture of unspecified calcaneus, initial encounter for open fracture +C2867278|T037|AB|S92.063D|ICD10CM|Displ intartic fx unsp calcaneus, subs for fx w routn heal|Displ intartic fx unsp calcaneus, subs for fx w routn heal +C2867279|T037|AB|S92.063G|ICD10CM|Displ intartic fx unsp calcaneus, subs for fx w delay heal|Displ intartic fx unsp calcaneus, subs for fx w delay heal +C2867280|T037|AB|S92.063K|ICD10CM|Displaced intartic fx unsp calcaneus, subs for fx w nonunion|Displaced intartic fx unsp calcaneus, subs for fx w nonunion +C2867281|T037|AB|S92.063P|ICD10CM|Displaced intartic fx unsp calcaneus, subs for fx w malunion|Displaced intartic fx unsp calcaneus, subs for fx w malunion +C2867282|T037|AB|S92.063S|ICD10CM|Displaced intraarticular fracture of unsp calcaneus, sequela|Displaced intraarticular fracture of unsp calcaneus, sequela +C2867282|T037|PT|S92.063S|ICD10CM|Displaced intraarticular fracture of unspecified calcaneus, sequela|Displaced intraarticular fracture of unspecified calcaneus, sequela +C2867283|T037|AB|S92.064|ICD10CM|Nondisplaced intraarticular fracture of right calcaneus|Nondisplaced intraarticular fracture of right calcaneus +C2867283|T037|HT|S92.064|ICD10CM|Nondisplaced intraarticular fracture of right calcaneus|Nondisplaced intraarticular fracture of right calcaneus +C2867284|T037|AB|S92.064A|ICD10CM|Nondisplaced intraarticular fracture of r calcaneus, init|Nondisplaced intraarticular fracture of r calcaneus, init +C2867284|T037|PT|S92.064A|ICD10CM|Nondisplaced intraarticular fracture of right calcaneus, initial encounter for closed fracture|Nondisplaced intraarticular fracture of right calcaneus, initial encounter for closed fracture +C2867285|T037|AB|S92.064B|ICD10CM|Nondisp intartic fracture of r calcaneus, init for opn fx|Nondisp intartic fracture of r calcaneus, init for opn fx +C2867285|T037|PT|S92.064B|ICD10CM|Nondisplaced intraarticular fracture of right calcaneus, initial encounter for open fracture|Nondisplaced intraarticular fracture of right calcaneus, initial encounter for open fracture +C2867286|T037|AB|S92.064D|ICD10CM|Nondisp intartic fx r calcaneus, subs for fx w routn heal|Nondisp intartic fx r calcaneus, subs for fx w routn heal +C2867287|T037|AB|S92.064G|ICD10CM|Nondisp intartic fx r calcaneus, subs for fx w delay heal|Nondisp intartic fx r calcaneus, subs for fx w delay heal +C2867288|T037|AB|S92.064K|ICD10CM|Nondisp intartic fx r calcaneus, subs for fx w nonunion|Nondisp intartic fx r calcaneus, subs for fx w nonunion +C2867289|T037|AB|S92.064P|ICD10CM|Nondisp intartic fx r calcaneus, subs for fx w malunion|Nondisp intartic fx r calcaneus, subs for fx w malunion +C2867290|T037|AB|S92.064S|ICD10CM|Nondisplaced intraarticular fracture of r calcaneus, sequela|Nondisplaced intraarticular fracture of r calcaneus, sequela +C2867290|T037|PT|S92.064S|ICD10CM|Nondisplaced intraarticular fracture of right calcaneus, sequela|Nondisplaced intraarticular fracture of right calcaneus, sequela +C2867291|T037|AB|S92.065|ICD10CM|Nondisplaced intraarticular fracture of left calcaneus|Nondisplaced intraarticular fracture of left calcaneus +C2867291|T037|HT|S92.065|ICD10CM|Nondisplaced intraarticular fracture of left calcaneus|Nondisplaced intraarticular fracture of left calcaneus +C2867292|T037|AB|S92.065A|ICD10CM|Nondisplaced intraarticular fracture of left calcaneus, init|Nondisplaced intraarticular fracture of left calcaneus, init +C2867292|T037|PT|S92.065A|ICD10CM|Nondisplaced intraarticular fracture of left calcaneus, initial encounter for closed fracture|Nondisplaced intraarticular fracture of left calcaneus, initial encounter for closed fracture +C2867293|T037|AB|S92.065B|ICD10CM|Nondisp intartic fracture of l calcaneus, init for opn fx|Nondisp intartic fracture of l calcaneus, init for opn fx +C2867293|T037|PT|S92.065B|ICD10CM|Nondisplaced intraarticular fracture of left calcaneus, initial encounter for open fracture|Nondisplaced intraarticular fracture of left calcaneus, initial encounter for open fracture +C2867294|T037|AB|S92.065D|ICD10CM|Nondisp intartic fx l calcaneus, subs for fx w routn heal|Nondisp intartic fx l calcaneus, subs for fx w routn heal +C2867295|T037|AB|S92.065G|ICD10CM|Nondisp intartic fx l calcaneus, subs for fx w delay heal|Nondisp intartic fx l calcaneus, subs for fx w delay heal +C2867296|T037|AB|S92.065K|ICD10CM|Nondisp intartic fx l calcaneus, subs for fx w nonunion|Nondisp intartic fx l calcaneus, subs for fx w nonunion +C2867297|T037|AB|S92.065P|ICD10CM|Nondisp intartic fx l calcaneus, subs for fx w malunion|Nondisp intartic fx l calcaneus, subs for fx w malunion +C2867298|T037|AB|S92.065S|ICD10CM|Nondisplaced intartic fracture of left calcaneus, sequela|Nondisplaced intartic fracture of left calcaneus, sequela +C2867298|T037|PT|S92.065S|ICD10CM|Nondisplaced intraarticular fracture of left calcaneus, sequela|Nondisplaced intraarticular fracture of left calcaneus, sequela +C2867299|T037|AB|S92.066|ICD10CM|Nondisplaced intraarticular fracture of unsp calcaneus|Nondisplaced intraarticular fracture of unsp calcaneus +C2867299|T037|HT|S92.066|ICD10CM|Nondisplaced intraarticular fracture of unspecified calcaneus|Nondisplaced intraarticular fracture of unspecified calcaneus +C2867300|T037|AB|S92.066A|ICD10CM|Nondisplaced intraarticular fracture of unsp calcaneus, init|Nondisplaced intraarticular fracture of unsp calcaneus, init +C2867300|T037|PT|S92.066A|ICD10CM|Nondisplaced intraarticular fracture of unspecified calcaneus, initial encounter for closed fracture|Nondisplaced intraarticular fracture of unspecified calcaneus, initial encounter for closed fracture +C2867301|T037|AB|S92.066B|ICD10CM|Nondisp intartic fracture of unsp calcaneus, init for opn fx|Nondisp intartic fracture of unsp calcaneus, init for opn fx +C2867301|T037|PT|S92.066B|ICD10CM|Nondisplaced intraarticular fracture of unspecified calcaneus, initial encounter for open fracture|Nondisplaced intraarticular fracture of unspecified calcaneus, initial encounter for open fracture +C2867302|T037|AB|S92.066D|ICD10CM|Nondisp intartic fx unsp calcaneus, subs for fx w routn heal|Nondisp intartic fx unsp calcaneus, subs for fx w routn heal +C2867303|T037|AB|S92.066G|ICD10CM|Nondisp intartic fx unsp calcaneus, subs for fx w delay heal|Nondisp intartic fx unsp calcaneus, subs for fx w delay heal +C2867304|T037|AB|S92.066K|ICD10CM|Nondisp intartic fx unsp calcaneus, subs for fx w nonunion|Nondisp intartic fx unsp calcaneus, subs for fx w nonunion +C2867305|T037|AB|S92.066P|ICD10CM|Nondisp intartic fx unsp calcaneus, subs for fx w malunion|Nondisp intartic fx unsp calcaneus, subs for fx w malunion +C2867306|T037|AB|S92.066S|ICD10CM|Nondisplaced intartic fracture of unsp calcaneus, sequela|Nondisplaced intartic fracture of unsp calcaneus, sequela +C2867306|T037|PT|S92.066S|ICD10CM|Nondisplaced intraarticular fracture of unspecified calcaneus, sequela|Nondisplaced intraarticular fracture of unspecified calcaneus, sequela +C0347813|T037|ET|S92.1|ICD10CM|Astragalus|Astragalus +C0347813|T037|HT|S92.1|ICD10CM|Fracture of talus|Fracture of talus +C0347813|T037|AB|S92.1|ICD10CM|Fracture of talus|Fracture of talus +C0347813|T037|PT|S92.1|ICD10|Fracture of talus|Fracture of talus +C2867307|T037|AB|S92.10|ICD10CM|Unspecified fracture of talus|Unspecified fracture of talus +C2867307|T037|HT|S92.10|ICD10CM|Unspecified fracture of talus|Unspecified fracture of talus +C2867308|T037|AB|S92.101|ICD10CM|Unspecified fracture of right talus|Unspecified fracture of right talus +C2867308|T037|HT|S92.101|ICD10CM|Unspecified fracture of right talus|Unspecified fracture of right talus +C2867309|T037|AB|S92.101A|ICD10CM|Unsp fracture of right talus, init for clos fx|Unsp fracture of right talus, init for clos fx +C2867309|T037|PT|S92.101A|ICD10CM|Unspecified fracture of right talus, initial encounter for closed fracture|Unspecified fracture of right talus, initial encounter for closed fracture +C2867310|T037|AB|S92.101B|ICD10CM|Unsp fracture of right talus, init encntr for open fracture|Unsp fracture of right talus, init encntr for open fracture +C2867310|T037|PT|S92.101B|ICD10CM|Unspecified fracture of right talus, initial encounter for open fracture|Unspecified fracture of right talus, initial encounter for open fracture +C2867311|T037|AB|S92.101D|ICD10CM|Unsp fracture of right talus, subs for fx w routn heal|Unsp fracture of right talus, subs for fx w routn heal +C2867311|T037|PT|S92.101D|ICD10CM|Unspecified fracture of right talus, subsequent encounter for fracture with routine healing|Unspecified fracture of right talus, subsequent encounter for fracture with routine healing +C2867312|T037|AB|S92.101G|ICD10CM|Unsp fracture of right talus, subs for fx w delay heal|Unsp fracture of right talus, subs for fx w delay heal +C2867312|T037|PT|S92.101G|ICD10CM|Unspecified fracture of right talus, subsequent encounter for fracture with delayed healing|Unspecified fracture of right talus, subsequent encounter for fracture with delayed healing +C2867313|T037|AB|S92.101K|ICD10CM|Unsp fracture of right talus, subs for fx w nonunion|Unsp fracture of right talus, subs for fx w nonunion +C2867313|T037|PT|S92.101K|ICD10CM|Unspecified fracture of right talus, subsequent encounter for fracture with nonunion|Unspecified fracture of right talus, subsequent encounter for fracture with nonunion +C2867314|T037|AB|S92.101P|ICD10CM|Unsp fracture of right talus, subs for fx w malunion|Unsp fracture of right talus, subs for fx w malunion +C2867314|T037|PT|S92.101P|ICD10CM|Unspecified fracture of right talus, subsequent encounter for fracture with malunion|Unspecified fracture of right talus, subsequent encounter for fracture with malunion +C2867315|T037|PT|S92.101S|ICD10CM|Unspecified fracture of right talus, sequela|Unspecified fracture of right talus, sequela +C2867315|T037|AB|S92.101S|ICD10CM|Unspecified fracture of right talus, sequela|Unspecified fracture of right talus, sequela +C2867316|T037|AB|S92.102|ICD10CM|Unspecified fracture of left talus|Unspecified fracture of left talus +C2867316|T037|HT|S92.102|ICD10CM|Unspecified fracture of left talus|Unspecified fracture of left talus +C2867317|T037|AB|S92.102A|ICD10CM|Unsp fracture of left talus, init encntr for closed fracture|Unsp fracture of left talus, init encntr for closed fracture +C2867317|T037|PT|S92.102A|ICD10CM|Unspecified fracture of left talus, initial encounter for closed fracture|Unspecified fracture of left talus, initial encounter for closed fracture +C2867318|T037|AB|S92.102B|ICD10CM|Unsp fracture of left talus, init encntr for open fracture|Unsp fracture of left talus, init encntr for open fracture +C2867318|T037|PT|S92.102B|ICD10CM|Unspecified fracture of left talus, initial encounter for open fracture|Unspecified fracture of left talus, initial encounter for open fracture +C2867319|T037|AB|S92.102D|ICD10CM|Unsp fracture of left talus, subs for fx w routn heal|Unsp fracture of left talus, subs for fx w routn heal +C2867319|T037|PT|S92.102D|ICD10CM|Unspecified fracture of left talus, subsequent encounter for fracture with routine healing|Unspecified fracture of left talus, subsequent encounter for fracture with routine healing +C2867320|T037|AB|S92.102G|ICD10CM|Unsp fracture of left talus, subs for fx w delay heal|Unsp fracture of left talus, subs for fx w delay heal +C2867320|T037|PT|S92.102G|ICD10CM|Unspecified fracture of left talus, subsequent encounter for fracture with delayed healing|Unspecified fracture of left talus, subsequent encounter for fracture with delayed healing +C2867321|T037|AB|S92.102K|ICD10CM|Unsp fracture of left talus, subs for fx w nonunion|Unsp fracture of left talus, subs for fx w nonunion +C2867321|T037|PT|S92.102K|ICD10CM|Unspecified fracture of left talus, subsequent encounter for fracture with nonunion|Unspecified fracture of left talus, subsequent encounter for fracture with nonunion +C2867322|T037|AB|S92.102P|ICD10CM|Unsp fracture of left talus, subs for fx w malunion|Unsp fracture of left talus, subs for fx w malunion +C2867322|T037|PT|S92.102P|ICD10CM|Unspecified fracture of left talus, subsequent encounter for fracture with malunion|Unspecified fracture of left talus, subsequent encounter for fracture with malunion +C2867323|T037|PT|S92.102S|ICD10CM|Unspecified fracture of left talus, sequela|Unspecified fracture of left talus, sequela +C2867323|T037|AB|S92.102S|ICD10CM|Unspecified fracture of left talus, sequela|Unspecified fracture of left talus, sequela +C2867324|T037|AB|S92.109|ICD10CM|Unspecified fracture of unspecified talus|Unspecified fracture of unspecified talus +C2867324|T037|HT|S92.109|ICD10CM|Unspecified fracture of unspecified talus|Unspecified fracture of unspecified talus +C2867325|T037|AB|S92.109A|ICD10CM|Unsp fracture of unsp talus, init encntr for closed fracture|Unsp fracture of unsp talus, init encntr for closed fracture +C2867325|T037|PT|S92.109A|ICD10CM|Unspecified fracture of unspecified talus, initial encounter for closed fracture|Unspecified fracture of unspecified talus, initial encounter for closed fracture +C2867326|T037|AB|S92.109B|ICD10CM|Unsp fracture of unsp talus, init encntr for open fracture|Unsp fracture of unsp talus, init encntr for open fracture +C2867326|T037|PT|S92.109B|ICD10CM|Unspecified fracture of unspecified talus, initial encounter for open fracture|Unspecified fracture of unspecified talus, initial encounter for open fracture +C2867327|T037|AB|S92.109D|ICD10CM|Unsp fracture of unsp talus, subs for fx w routn heal|Unsp fracture of unsp talus, subs for fx w routn heal +C2867327|T037|PT|S92.109D|ICD10CM|Unspecified fracture of unspecified talus, subsequent encounter for fracture with routine healing|Unspecified fracture of unspecified talus, subsequent encounter for fracture with routine healing +C2867328|T037|AB|S92.109G|ICD10CM|Unsp fracture of unsp talus, subs for fx w delay heal|Unsp fracture of unsp talus, subs for fx w delay heal +C2867328|T037|PT|S92.109G|ICD10CM|Unspecified fracture of unspecified talus, subsequent encounter for fracture with delayed healing|Unspecified fracture of unspecified talus, subsequent encounter for fracture with delayed healing +C2867329|T037|AB|S92.109K|ICD10CM|Unsp fracture of unsp talus, subs for fx w nonunion|Unsp fracture of unsp talus, subs for fx w nonunion +C2867329|T037|PT|S92.109K|ICD10CM|Unspecified fracture of unspecified talus, subsequent encounter for fracture with nonunion|Unspecified fracture of unspecified talus, subsequent encounter for fracture with nonunion +C2867330|T037|AB|S92.109P|ICD10CM|Unsp fracture of unsp talus, subs for fx w malunion|Unsp fracture of unsp talus, subs for fx w malunion +C2867330|T037|PT|S92.109P|ICD10CM|Unspecified fracture of unspecified talus, subsequent encounter for fracture with malunion|Unspecified fracture of unspecified talus, subsequent encounter for fracture with malunion +C2867331|T037|PT|S92.109S|ICD10CM|Unspecified fracture of unspecified talus, sequela|Unspecified fracture of unspecified talus, sequela +C2867331|T037|AB|S92.109S|ICD10CM|Unspecified fracture of unspecified talus, sequela|Unspecified fracture of unspecified talus, sequela +C2867332|T037|AB|S92.11|ICD10CM|Fracture of neck of talus|Fracture of neck of talus +C2867332|T037|HT|S92.11|ICD10CM|Fracture of neck of talus|Fracture of neck of talus +C2867333|T037|AB|S92.111|ICD10CM|Displaced fracture of neck of right talus|Displaced fracture of neck of right talus +C2867333|T037|HT|S92.111|ICD10CM|Displaced fracture of neck of right talus|Displaced fracture of neck of right talus +C2867334|T037|AB|S92.111A|ICD10CM|Disp fx of neck of right talus, init for clos fx|Disp fx of neck of right talus, init for clos fx +C2867334|T037|PT|S92.111A|ICD10CM|Displaced fracture of neck of right talus, initial encounter for closed fracture|Displaced fracture of neck of right talus, initial encounter for closed fracture +C2867335|T037|AB|S92.111B|ICD10CM|Disp fx of neck of right talus, init for opn fx|Disp fx of neck of right talus, init for opn fx +C2867335|T037|PT|S92.111B|ICD10CM|Displaced fracture of neck of right talus, initial encounter for open fracture|Displaced fracture of neck of right talus, initial encounter for open fracture +C2867336|T037|AB|S92.111D|ICD10CM|Disp fx of neck of right talus, subs for fx w routn heal|Disp fx of neck of right talus, subs for fx w routn heal +C2867336|T037|PT|S92.111D|ICD10CM|Displaced fracture of neck of right talus, subsequent encounter for fracture with routine healing|Displaced fracture of neck of right talus, subsequent encounter for fracture with routine healing +C2867337|T037|AB|S92.111G|ICD10CM|Disp fx of neck of right talus, subs for fx w delay heal|Disp fx of neck of right talus, subs for fx w delay heal +C2867337|T037|PT|S92.111G|ICD10CM|Displaced fracture of neck of right talus, subsequent encounter for fracture with delayed healing|Displaced fracture of neck of right talus, subsequent encounter for fracture with delayed healing +C2867338|T037|AB|S92.111K|ICD10CM|Disp fx of neck of right talus, subs for fx w nonunion|Disp fx of neck of right talus, subs for fx w nonunion +C2867338|T037|PT|S92.111K|ICD10CM|Displaced fracture of neck of right talus, subsequent encounter for fracture with nonunion|Displaced fracture of neck of right talus, subsequent encounter for fracture with nonunion +C2867339|T037|AB|S92.111P|ICD10CM|Disp fx of neck of right talus, subs for fx w malunion|Disp fx of neck of right talus, subs for fx w malunion +C2867339|T037|PT|S92.111P|ICD10CM|Displaced fracture of neck of right talus, subsequent encounter for fracture with malunion|Displaced fracture of neck of right talus, subsequent encounter for fracture with malunion +C2867340|T037|PT|S92.111S|ICD10CM|Displaced fracture of neck of right talus, sequela|Displaced fracture of neck of right talus, sequela +C2867340|T037|AB|S92.111S|ICD10CM|Displaced fracture of neck of right talus, sequela|Displaced fracture of neck of right talus, sequela +C2867341|T037|AB|S92.112|ICD10CM|Displaced fracture of neck of left talus|Displaced fracture of neck of left talus +C2867341|T037|HT|S92.112|ICD10CM|Displaced fracture of neck of left talus|Displaced fracture of neck of left talus +C2867342|T037|AB|S92.112A|ICD10CM|Disp fx of neck of left talus, init for clos fx|Disp fx of neck of left talus, init for clos fx +C2867342|T037|PT|S92.112A|ICD10CM|Displaced fracture of neck of left talus, initial encounter for closed fracture|Displaced fracture of neck of left talus, initial encounter for closed fracture +C2867343|T037|AB|S92.112B|ICD10CM|Disp fx of neck of left talus, init encntr for open fracture|Disp fx of neck of left talus, init encntr for open fracture +C2867343|T037|PT|S92.112B|ICD10CM|Displaced fracture of neck of left talus, initial encounter for open fracture|Displaced fracture of neck of left talus, initial encounter for open fracture +C2867344|T037|AB|S92.112D|ICD10CM|Disp fx of neck of left talus, subs for fx w routn heal|Disp fx of neck of left talus, subs for fx w routn heal +C2867344|T037|PT|S92.112D|ICD10CM|Displaced fracture of neck of left talus, subsequent encounter for fracture with routine healing|Displaced fracture of neck of left talus, subsequent encounter for fracture with routine healing +C2867345|T037|AB|S92.112G|ICD10CM|Disp fx of neck of left talus, subs for fx w delay heal|Disp fx of neck of left talus, subs for fx w delay heal +C2867345|T037|PT|S92.112G|ICD10CM|Displaced fracture of neck of left talus, subsequent encounter for fracture with delayed healing|Displaced fracture of neck of left talus, subsequent encounter for fracture with delayed healing +C2867346|T037|AB|S92.112K|ICD10CM|Disp fx of neck of left talus, subs for fx w nonunion|Disp fx of neck of left talus, subs for fx w nonunion +C2867346|T037|PT|S92.112K|ICD10CM|Displaced fracture of neck of left talus, subsequent encounter for fracture with nonunion|Displaced fracture of neck of left talus, subsequent encounter for fracture with nonunion +C2867347|T037|AB|S92.112P|ICD10CM|Disp fx of neck of left talus, subs for fx w malunion|Disp fx of neck of left talus, subs for fx w malunion +C2867347|T037|PT|S92.112P|ICD10CM|Displaced fracture of neck of left talus, subsequent encounter for fracture with malunion|Displaced fracture of neck of left talus, subsequent encounter for fracture with malunion +C2867348|T037|PT|S92.112S|ICD10CM|Displaced fracture of neck of left talus, sequela|Displaced fracture of neck of left talus, sequela +C2867348|T037|AB|S92.112S|ICD10CM|Displaced fracture of neck of left talus, sequela|Displaced fracture of neck of left talus, sequela +C2867349|T037|AB|S92.113|ICD10CM|Displaced fracture of neck of unspecified talus|Displaced fracture of neck of unspecified talus +C2867349|T037|HT|S92.113|ICD10CM|Displaced fracture of neck of unspecified talus|Displaced fracture of neck of unspecified talus +C2867350|T037|AB|S92.113A|ICD10CM|Disp fx of neck of unsp talus, init for clos fx|Disp fx of neck of unsp talus, init for clos fx +C2867350|T037|PT|S92.113A|ICD10CM|Displaced fracture of neck of unspecified talus, initial encounter for closed fracture|Displaced fracture of neck of unspecified talus, initial encounter for closed fracture +C2867351|T037|AB|S92.113B|ICD10CM|Disp fx of neck of unsp talus, init encntr for open fracture|Disp fx of neck of unsp talus, init encntr for open fracture +C2867351|T037|PT|S92.113B|ICD10CM|Displaced fracture of neck of unspecified talus, initial encounter for open fracture|Displaced fracture of neck of unspecified talus, initial encounter for open fracture +C2867352|T037|AB|S92.113D|ICD10CM|Disp fx of neck of unsp talus, subs for fx w routn heal|Disp fx of neck of unsp talus, subs for fx w routn heal +C2867353|T037|AB|S92.113G|ICD10CM|Disp fx of neck of unsp talus, subs for fx w delay heal|Disp fx of neck of unsp talus, subs for fx w delay heal +C2867354|T037|AB|S92.113K|ICD10CM|Disp fx of neck of unsp talus, subs for fx w nonunion|Disp fx of neck of unsp talus, subs for fx w nonunion +C2867354|T037|PT|S92.113K|ICD10CM|Displaced fracture of neck of unspecified talus, subsequent encounter for fracture with nonunion|Displaced fracture of neck of unspecified talus, subsequent encounter for fracture with nonunion +C2867355|T037|AB|S92.113P|ICD10CM|Disp fx of neck of unsp talus, subs for fx w malunion|Disp fx of neck of unsp talus, subs for fx w malunion +C2867355|T037|PT|S92.113P|ICD10CM|Displaced fracture of neck of unspecified talus, subsequent encounter for fracture with malunion|Displaced fracture of neck of unspecified talus, subsequent encounter for fracture with malunion +C2867356|T037|PT|S92.113S|ICD10CM|Displaced fracture of neck of unspecified talus, sequela|Displaced fracture of neck of unspecified talus, sequela +C2867356|T037|AB|S92.113S|ICD10CM|Displaced fracture of neck of unspecified talus, sequela|Displaced fracture of neck of unspecified talus, sequela +C2867357|T037|AB|S92.114|ICD10CM|Nondisplaced fracture of neck of right talus|Nondisplaced fracture of neck of right talus +C2867357|T037|HT|S92.114|ICD10CM|Nondisplaced fracture of neck of right talus|Nondisplaced fracture of neck of right talus +C2867358|T037|AB|S92.114A|ICD10CM|Nondisp fx of neck of right talus, init for clos fx|Nondisp fx of neck of right talus, init for clos fx +C2867358|T037|PT|S92.114A|ICD10CM|Nondisplaced fracture of neck of right talus, initial encounter for closed fracture|Nondisplaced fracture of neck of right talus, initial encounter for closed fracture +C2867359|T037|AB|S92.114B|ICD10CM|Nondisp fx of neck of right talus, init for opn fx|Nondisp fx of neck of right talus, init for opn fx +C2867359|T037|PT|S92.114B|ICD10CM|Nondisplaced fracture of neck of right talus, initial encounter for open fracture|Nondisplaced fracture of neck of right talus, initial encounter for open fracture +C2867360|T037|AB|S92.114D|ICD10CM|Nondisp fx of neck of right talus, subs for fx w routn heal|Nondisp fx of neck of right talus, subs for fx w routn heal +C2867360|T037|PT|S92.114D|ICD10CM|Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with routine healing|Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with routine healing +C2867361|T037|AB|S92.114G|ICD10CM|Nondisp fx of neck of right talus, subs for fx w delay heal|Nondisp fx of neck of right talus, subs for fx w delay heal +C2867361|T037|PT|S92.114G|ICD10CM|Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with delayed healing|Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with delayed healing +C2867362|T037|AB|S92.114K|ICD10CM|Nondisp fx of neck of right talus, subs for fx w nonunion|Nondisp fx of neck of right talus, subs for fx w nonunion +C2867362|T037|PT|S92.114K|ICD10CM|Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with nonunion|Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with nonunion +C2867363|T037|AB|S92.114P|ICD10CM|Nondisp fx of neck of right talus, subs for fx w malunion|Nondisp fx of neck of right talus, subs for fx w malunion +C2867363|T037|PT|S92.114P|ICD10CM|Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with malunion|Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with malunion +C2867364|T037|PT|S92.114S|ICD10CM|Nondisplaced fracture of neck of right talus, sequela|Nondisplaced fracture of neck of right talus, sequela +C2867364|T037|AB|S92.114S|ICD10CM|Nondisplaced fracture of neck of right talus, sequela|Nondisplaced fracture of neck of right talus, sequela +C2867365|T037|AB|S92.115|ICD10CM|Nondisplaced fracture of neck of left talus|Nondisplaced fracture of neck of left talus +C2867365|T037|HT|S92.115|ICD10CM|Nondisplaced fracture of neck of left talus|Nondisplaced fracture of neck of left talus +C2867366|T037|AB|S92.115A|ICD10CM|Nondisp fx of neck of left talus, init for clos fx|Nondisp fx of neck of left talus, init for clos fx +C2867366|T037|PT|S92.115A|ICD10CM|Nondisplaced fracture of neck of left talus, initial encounter for closed fracture|Nondisplaced fracture of neck of left talus, initial encounter for closed fracture +C2867367|T037|AB|S92.115B|ICD10CM|Nondisp fx of neck of left talus, init for opn fx|Nondisp fx of neck of left talus, init for opn fx +C2867367|T037|PT|S92.115B|ICD10CM|Nondisplaced fracture of neck of left talus, initial encounter for open fracture|Nondisplaced fracture of neck of left talus, initial encounter for open fracture +C2867368|T037|AB|S92.115D|ICD10CM|Nondisp fx of neck of left talus, subs for fx w routn heal|Nondisp fx of neck of left talus, subs for fx w routn heal +C2867368|T037|PT|S92.115D|ICD10CM|Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with routine healing|Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with routine healing +C2867369|T037|AB|S92.115G|ICD10CM|Nondisp fx of neck of left talus, subs for fx w delay heal|Nondisp fx of neck of left talus, subs for fx w delay heal +C2867369|T037|PT|S92.115G|ICD10CM|Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with delayed healing|Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with delayed healing +C2867370|T037|AB|S92.115K|ICD10CM|Nondisp fx of neck of left talus, subs for fx w nonunion|Nondisp fx of neck of left talus, subs for fx w nonunion +C2867370|T037|PT|S92.115K|ICD10CM|Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with nonunion|Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with nonunion +C2867371|T037|AB|S92.115P|ICD10CM|Nondisp fx of neck of left talus, subs for fx w malunion|Nondisp fx of neck of left talus, subs for fx w malunion +C2867371|T037|PT|S92.115P|ICD10CM|Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with malunion|Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with malunion +C2867372|T037|PT|S92.115S|ICD10CM|Nondisplaced fracture of neck of left talus, sequela|Nondisplaced fracture of neck of left talus, sequela +C2867372|T037|AB|S92.115S|ICD10CM|Nondisplaced fracture of neck of left talus, sequela|Nondisplaced fracture of neck of left talus, sequela +C2867373|T037|AB|S92.116|ICD10CM|Nondisplaced fracture of neck of unspecified talus|Nondisplaced fracture of neck of unspecified talus +C2867373|T037|HT|S92.116|ICD10CM|Nondisplaced fracture of neck of unspecified talus|Nondisplaced fracture of neck of unspecified talus +C2867374|T037|AB|S92.116A|ICD10CM|Nondisp fx of neck of unsp talus, init for clos fx|Nondisp fx of neck of unsp talus, init for clos fx +C2867374|T037|PT|S92.116A|ICD10CM|Nondisplaced fracture of neck of unspecified talus, initial encounter for closed fracture|Nondisplaced fracture of neck of unspecified talus, initial encounter for closed fracture +C2867375|T037|AB|S92.116B|ICD10CM|Nondisp fx of neck of unsp talus, init for opn fx|Nondisp fx of neck of unsp talus, init for opn fx +C2867375|T037|PT|S92.116B|ICD10CM|Nondisplaced fracture of neck of unspecified talus, initial encounter for open fracture|Nondisplaced fracture of neck of unspecified talus, initial encounter for open fracture +C2867376|T037|AB|S92.116D|ICD10CM|Nondisp fx of neck of unsp talus, subs for fx w routn heal|Nondisp fx of neck of unsp talus, subs for fx w routn heal +C2867377|T037|AB|S92.116G|ICD10CM|Nondisp fx of neck of unsp talus, subs for fx w delay heal|Nondisp fx of neck of unsp talus, subs for fx w delay heal +C2867378|T037|AB|S92.116K|ICD10CM|Nondisp fx of neck of unsp talus, subs for fx w nonunion|Nondisp fx of neck of unsp talus, subs for fx w nonunion +C2867378|T037|PT|S92.116K|ICD10CM|Nondisplaced fracture of neck of unspecified talus, subsequent encounter for fracture with nonunion|Nondisplaced fracture of neck of unspecified talus, subsequent encounter for fracture with nonunion +C2867379|T037|AB|S92.116P|ICD10CM|Nondisp fx of neck of unsp talus, subs for fx w malunion|Nondisp fx of neck of unsp talus, subs for fx w malunion +C2867379|T037|PT|S92.116P|ICD10CM|Nondisplaced fracture of neck of unspecified talus, subsequent encounter for fracture with malunion|Nondisplaced fracture of neck of unspecified talus, subsequent encounter for fracture with malunion +C2867380|T037|PT|S92.116S|ICD10CM|Nondisplaced fracture of neck of unspecified talus, sequela|Nondisplaced fracture of neck of unspecified talus, sequela +C2867380|T037|AB|S92.116S|ICD10CM|Nondisplaced fracture of neck of unspecified talus, sequela|Nondisplaced fracture of neck of unspecified talus, sequela +C2867381|T037|AB|S92.12|ICD10CM|Fracture of body of talus|Fracture of body of talus +C2867381|T037|HT|S92.12|ICD10CM|Fracture of body of talus|Fracture of body of talus +C2867382|T037|AB|S92.121|ICD10CM|Displaced fracture of body of right talus|Displaced fracture of body of right talus +C2867382|T037|HT|S92.121|ICD10CM|Displaced fracture of body of right talus|Displaced fracture of body of right talus +C2867383|T037|AB|S92.121A|ICD10CM|Disp fx of body of right talus, init for clos fx|Disp fx of body of right talus, init for clos fx +C2867383|T037|PT|S92.121A|ICD10CM|Displaced fracture of body of right talus, initial encounter for closed fracture|Displaced fracture of body of right talus, initial encounter for closed fracture +C2867384|T037|AB|S92.121B|ICD10CM|Disp fx of body of right talus, init for opn fx|Disp fx of body of right talus, init for opn fx +C2867384|T037|PT|S92.121B|ICD10CM|Displaced fracture of body of right talus, initial encounter for open fracture|Displaced fracture of body of right talus, initial encounter for open fracture +C2867385|T037|AB|S92.121D|ICD10CM|Disp fx of body of right talus, subs for fx w routn heal|Disp fx of body of right talus, subs for fx w routn heal +C2867385|T037|PT|S92.121D|ICD10CM|Displaced fracture of body of right talus, subsequent encounter for fracture with routine healing|Displaced fracture of body of right talus, subsequent encounter for fracture with routine healing +C2867386|T037|AB|S92.121G|ICD10CM|Disp fx of body of right talus, subs for fx w delay heal|Disp fx of body of right talus, subs for fx w delay heal +C2867386|T037|PT|S92.121G|ICD10CM|Displaced fracture of body of right talus, subsequent encounter for fracture with delayed healing|Displaced fracture of body of right talus, subsequent encounter for fracture with delayed healing +C2867387|T037|AB|S92.121K|ICD10CM|Disp fx of body of right talus, subs for fx w nonunion|Disp fx of body of right talus, subs for fx w nonunion +C2867387|T037|PT|S92.121K|ICD10CM|Displaced fracture of body of right talus, subsequent encounter for fracture with nonunion|Displaced fracture of body of right talus, subsequent encounter for fracture with nonunion +C2867388|T037|AB|S92.121P|ICD10CM|Disp fx of body of right talus, subs for fx w malunion|Disp fx of body of right talus, subs for fx w malunion +C2867388|T037|PT|S92.121P|ICD10CM|Displaced fracture of body of right talus, subsequent encounter for fracture with malunion|Displaced fracture of body of right talus, subsequent encounter for fracture with malunion +C2867389|T037|PT|S92.121S|ICD10CM|Displaced fracture of body of right talus, sequela|Displaced fracture of body of right talus, sequela +C2867389|T037|AB|S92.121S|ICD10CM|Displaced fracture of body of right talus, sequela|Displaced fracture of body of right talus, sequela +C2867390|T037|AB|S92.122|ICD10CM|Displaced fracture of body of left talus|Displaced fracture of body of left talus +C2867390|T037|HT|S92.122|ICD10CM|Displaced fracture of body of left talus|Displaced fracture of body of left talus +C2867391|T037|AB|S92.122A|ICD10CM|Disp fx of body of left talus, init for clos fx|Disp fx of body of left talus, init for clos fx +C2867391|T037|PT|S92.122A|ICD10CM|Displaced fracture of body of left talus, initial encounter for closed fracture|Displaced fracture of body of left talus, initial encounter for closed fracture +C2867392|T037|AB|S92.122B|ICD10CM|Disp fx of body of left talus, init encntr for open fracture|Disp fx of body of left talus, init encntr for open fracture +C2867392|T037|PT|S92.122B|ICD10CM|Displaced fracture of body of left talus, initial encounter for open fracture|Displaced fracture of body of left talus, initial encounter for open fracture +C2867393|T037|AB|S92.122D|ICD10CM|Disp fx of body of left talus, subs for fx w routn heal|Disp fx of body of left talus, subs for fx w routn heal +C2867393|T037|PT|S92.122D|ICD10CM|Displaced fracture of body of left talus, subsequent encounter for fracture with routine healing|Displaced fracture of body of left talus, subsequent encounter for fracture with routine healing +C2867394|T037|AB|S92.122G|ICD10CM|Disp fx of body of left talus, subs for fx w delay heal|Disp fx of body of left talus, subs for fx w delay heal +C2867394|T037|PT|S92.122G|ICD10CM|Displaced fracture of body of left talus, subsequent encounter for fracture with delayed healing|Displaced fracture of body of left talus, subsequent encounter for fracture with delayed healing +C2867395|T037|AB|S92.122K|ICD10CM|Disp fx of body of left talus, subs for fx w nonunion|Disp fx of body of left talus, subs for fx w nonunion +C2867395|T037|PT|S92.122K|ICD10CM|Displaced fracture of body of left talus, subsequent encounter for fracture with nonunion|Displaced fracture of body of left talus, subsequent encounter for fracture with nonunion +C2867396|T037|AB|S92.122P|ICD10CM|Disp fx of body of left talus, subs for fx w malunion|Disp fx of body of left talus, subs for fx w malunion +C2867396|T037|PT|S92.122P|ICD10CM|Displaced fracture of body of left talus, subsequent encounter for fracture with malunion|Displaced fracture of body of left talus, subsequent encounter for fracture with malunion +C2867397|T037|PT|S92.122S|ICD10CM|Displaced fracture of body of left talus, sequela|Displaced fracture of body of left talus, sequela +C2867397|T037|AB|S92.122S|ICD10CM|Displaced fracture of body of left talus, sequela|Displaced fracture of body of left talus, sequela +C2867398|T037|AB|S92.123|ICD10CM|Displaced fracture of body of unspecified talus|Displaced fracture of body of unspecified talus +C2867398|T037|HT|S92.123|ICD10CM|Displaced fracture of body of unspecified talus|Displaced fracture of body of unspecified talus +C2867399|T037|AB|S92.123A|ICD10CM|Disp fx of body of unsp talus, init for clos fx|Disp fx of body of unsp talus, init for clos fx +C2867399|T037|PT|S92.123A|ICD10CM|Displaced fracture of body of unspecified talus, initial encounter for closed fracture|Displaced fracture of body of unspecified talus, initial encounter for closed fracture +C2867400|T037|AB|S92.123B|ICD10CM|Disp fx of body of unsp talus, init encntr for open fracture|Disp fx of body of unsp talus, init encntr for open fracture +C2867400|T037|PT|S92.123B|ICD10CM|Displaced fracture of body of unspecified talus, initial encounter for open fracture|Displaced fracture of body of unspecified talus, initial encounter for open fracture +C2867401|T037|AB|S92.123D|ICD10CM|Disp fx of body of unsp talus, subs for fx w routn heal|Disp fx of body of unsp talus, subs for fx w routn heal +C2867402|T037|AB|S92.123G|ICD10CM|Disp fx of body of unsp talus, subs for fx w delay heal|Disp fx of body of unsp talus, subs for fx w delay heal +C2867403|T037|AB|S92.123K|ICD10CM|Disp fx of body of unsp talus, subs for fx w nonunion|Disp fx of body of unsp talus, subs for fx w nonunion +C2867403|T037|PT|S92.123K|ICD10CM|Displaced fracture of body of unspecified talus, subsequent encounter for fracture with nonunion|Displaced fracture of body of unspecified talus, subsequent encounter for fracture with nonunion +C2867404|T037|AB|S92.123P|ICD10CM|Disp fx of body of unsp talus, subs for fx w malunion|Disp fx of body of unsp talus, subs for fx w malunion +C2867404|T037|PT|S92.123P|ICD10CM|Displaced fracture of body of unspecified talus, subsequent encounter for fracture with malunion|Displaced fracture of body of unspecified talus, subsequent encounter for fracture with malunion +C2867405|T037|PT|S92.123S|ICD10CM|Displaced fracture of body of unspecified talus, sequela|Displaced fracture of body of unspecified talus, sequela +C2867405|T037|AB|S92.123S|ICD10CM|Displaced fracture of body of unspecified talus, sequela|Displaced fracture of body of unspecified talus, sequela +C2867406|T037|AB|S92.124|ICD10CM|Nondisplaced fracture of body of right talus|Nondisplaced fracture of body of right talus +C2867406|T037|HT|S92.124|ICD10CM|Nondisplaced fracture of body of right talus|Nondisplaced fracture of body of right talus +C2867407|T037|AB|S92.124A|ICD10CM|Nondisp fx of body of right talus, init for clos fx|Nondisp fx of body of right talus, init for clos fx +C2867407|T037|PT|S92.124A|ICD10CM|Nondisplaced fracture of body of right talus, initial encounter for closed fracture|Nondisplaced fracture of body of right talus, initial encounter for closed fracture +C2867408|T037|AB|S92.124B|ICD10CM|Nondisp fx of body of right talus, init for opn fx|Nondisp fx of body of right talus, init for opn fx +C2867408|T037|PT|S92.124B|ICD10CM|Nondisplaced fracture of body of right talus, initial encounter for open fracture|Nondisplaced fracture of body of right talus, initial encounter for open fracture +C2867409|T037|AB|S92.124D|ICD10CM|Nondisp fx of body of right talus, subs for fx w routn heal|Nondisp fx of body of right talus, subs for fx w routn heal +C2867409|T037|PT|S92.124D|ICD10CM|Nondisplaced fracture of body of right talus, subsequent encounter for fracture with routine healing|Nondisplaced fracture of body of right talus, subsequent encounter for fracture with routine healing +C2867410|T037|AB|S92.124G|ICD10CM|Nondisp fx of body of right talus, subs for fx w delay heal|Nondisp fx of body of right talus, subs for fx w delay heal +C2867410|T037|PT|S92.124G|ICD10CM|Nondisplaced fracture of body of right talus, subsequent encounter for fracture with delayed healing|Nondisplaced fracture of body of right talus, subsequent encounter for fracture with delayed healing +C2867411|T037|AB|S92.124K|ICD10CM|Nondisp fx of body of right talus, subs for fx w nonunion|Nondisp fx of body of right talus, subs for fx w nonunion +C2867411|T037|PT|S92.124K|ICD10CM|Nondisplaced fracture of body of right talus, subsequent encounter for fracture with nonunion|Nondisplaced fracture of body of right talus, subsequent encounter for fracture with nonunion +C2867412|T037|AB|S92.124P|ICD10CM|Nondisp fx of body of right talus, subs for fx w malunion|Nondisp fx of body of right talus, subs for fx w malunion +C2867412|T037|PT|S92.124P|ICD10CM|Nondisplaced fracture of body of right talus, subsequent encounter for fracture with malunion|Nondisplaced fracture of body of right talus, subsequent encounter for fracture with malunion +C2867413|T037|PT|S92.124S|ICD10CM|Nondisplaced fracture of body of right talus, sequela|Nondisplaced fracture of body of right talus, sequela +C2867413|T037|AB|S92.124S|ICD10CM|Nondisplaced fracture of body of right talus, sequela|Nondisplaced fracture of body of right talus, sequela +C2867414|T037|AB|S92.125|ICD10CM|Nondisplaced fracture of body of left talus|Nondisplaced fracture of body of left talus +C2867414|T037|HT|S92.125|ICD10CM|Nondisplaced fracture of body of left talus|Nondisplaced fracture of body of left talus +C2867415|T037|AB|S92.125A|ICD10CM|Nondisp fx of body of left talus, init for clos fx|Nondisp fx of body of left talus, init for clos fx +C2867415|T037|PT|S92.125A|ICD10CM|Nondisplaced fracture of body of left talus, initial encounter for closed fracture|Nondisplaced fracture of body of left talus, initial encounter for closed fracture +C2867416|T037|AB|S92.125B|ICD10CM|Nondisp fx of body of left talus, init for opn fx|Nondisp fx of body of left talus, init for opn fx +C2867416|T037|PT|S92.125B|ICD10CM|Nondisplaced fracture of body of left talus, initial encounter for open fracture|Nondisplaced fracture of body of left talus, initial encounter for open fracture +C2867417|T037|AB|S92.125D|ICD10CM|Nondisp fx of body of left talus, subs for fx w routn heal|Nondisp fx of body of left talus, subs for fx w routn heal +C2867417|T037|PT|S92.125D|ICD10CM|Nondisplaced fracture of body of left talus, subsequent encounter for fracture with routine healing|Nondisplaced fracture of body of left talus, subsequent encounter for fracture with routine healing +C2867418|T037|AB|S92.125G|ICD10CM|Nondisp fx of body of left talus, subs for fx w delay heal|Nondisp fx of body of left talus, subs for fx w delay heal +C2867418|T037|PT|S92.125G|ICD10CM|Nondisplaced fracture of body of left talus, subsequent encounter for fracture with delayed healing|Nondisplaced fracture of body of left talus, subsequent encounter for fracture with delayed healing +C2867419|T037|AB|S92.125K|ICD10CM|Nondisp fx of body of left talus, subs for fx w nonunion|Nondisp fx of body of left talus, subs for fx w nonunion +C2867419|T037|PT|S92.125K|ICD10CM|Nondisplaced fracture of body of left talus, subsequent encounter for fracture with nonunion|Nondisplaced fracture of body of left talus, subsequent encounter for fracture with nonunion +C2867420|T037|AB|S92.125P|ICD10CM|Nondisp fx of body of left talus, subs for fx w malunion|Nondisp fx of body of left talus, subs for fx w malunion +C2867420|T037|PT|S92.125P|ICD10CM|Nondisplaced fracture of body of left talus, subsequent encounter for fracture with malunion|Nondisplaced fracture of body of left talus, subsequent encounter for fracture with malunion +C2867421|T037|PT|S92.125S|ICD10CM|Nondisplaced fracture of body of left talus, sequela|Nondisplaced fracture of body of left talus, sequela +C2867421|T037|AB|S92.125S|ICD10CM|Nondisplaced fracture of body of left talus, sequela|Nondisplaced fracture of body of left talus, sequela +C2867422|T037|AB|S92.126|ICD10CM|Nondisplaced fracture of body of unspecified talus|Nondisplaced fracture of body of unspecified talus +C2867422|T037|HT|S92.126|ICD10CM|Nondisplaced fracture of body of unspecified talus|Nondisplaced fracture of body of unspecified talus +C2867423|T037|AB|S92.126A|ICD10CM|Nondisp fx of body of unsp talus, init for clos fx|Nondisp fx of body of unsp talus, init for clos fx +C2867423|T037|PT|S92.126A|ICD10CM|Nondisplaced fracture of body of unspecified talus, initial encounter for closed fracture|Nondisplaced fracture of body of unspecified talus, initial encounter for closed fracture +C2867424|T037|AB|S92.126B|ICD10CM|Nondisp fx of body of unsp talus, init for opn fx|Nondisp fx of body of unsp talus, init for opn fx +C2867424|T037|PT|S92.126B|ICD10CM|Nondisplaced fracture of body of unspecified talus, initial encounter for open fracture|Nondisplaced fracture of body of unspecified talus, initial encounter for open fracture +C2867425|T037|AB|S92.126D|ICD10CM|Nondisp fx of body of unsp talus, subs for fx w routn heal|Nondisp fx of body of unsp talus, subs for fx w routn heal +C2867426|T037|AB|S92.126G|ICD10CM|Nondisp fx of body of unsp talus, subs for fx w delay heal|Nondisp fx of body of unsp talus, subs for fx w delay heal +C2867427|T037|AB|S92.126K|ICD10CM|Nondisp fx of body of unsp talus, subs for fx w nonunion|Nondisp fx of body of unsp talus, subs for fx w nonunion +C2867427|T037|PT|S92.126K|ICD10CM|Nondisplaced fracture of body of unspecified talus, subsequent encounter for fracture with nonunion|Nondisplaced fracture of body of unspecified talus, subsequent encounter for fracture with nonunion +C2867428|T037|AB|S92.126P|ICD10CM|Nondisp fx of body of unsp talus, subs for fx w malunion|Nondisp fx of body of unsp talus, subs for fx w malunion +C2867428|T037|PT|S92.126P|ICD10CM|Nondisplaced fracture of body of unspecified talus, subsequent encounter for fracture with malunion|Nondisplaced fracture of body of unspecified talus, subsequent encounter for fracture with malunion +C2867429|T037|PT|S92.126S|ICD10CM|Nondisplaced fracture of body of unspecified talus, sequela|Nondisplaced fracture of body of unspecified talus, sequela +C2867429|T037|AB|S92.126S|ICD10CM|Nondisplaced fracture of body of unspecified talus, sequela|Nondisplaced fracture of body of unspecified talus, sequela +C1997224|T037|HT|S92.13|ICD10CM|Fracture of posterior process of talus|Fracture of posterior process of talus +C1997224|T037|AB|S92.13|ICD10CM|Fracture of posterior process of talus|Fracture of posterior process of talus +C2867430|T037|AB|S92.131|ICD10CM|Displaced fracture of posterior process of right talus|Displaced fracture of posterior process of right talus +C2867430|T037|HT|S92.131|ICD10CM|Displaced fracture of posterior process of right talus|Displaced fracture of posterior process of right talus +C2867431|T037|AB|S92.131A|ICD10CM|Disp fx of posterior process of right talus, init|Disp fx of posterior process of right talus, init +C2867431|T037|PT|S92.131A|ICD10CM|Displaced fracture of posterior process of right talus, initial encounter for closed fracture|Displaced fracture of posterior process of right talus, initial encounter for closed fracture +C2867432|T037|AB|S92.131B|ICD10CM|Disp fx of posterior process of right talus, init for opn fx|Disp fx of posterior process of right talus, init for opn fx +C2867432|T037|PT|S92.131B|ICD10CM|Displaced fracture of posterior process of right talus, initial encounter for open fracture|Displaced fracture of posterior process of right talus, initial encounter for open fracture +C2867433|T037|AB|S92.131D|ICD10CM|Disp fx of post pro of right talus, subs for fx w routn heal|Disp fx of post pro of right talus, subs for fx w routn heal +C2867434|T037|AB|S92.131G|ICD10CM|Disp fx of post pro of right talus, subs for fx w delay heal|Disp fx of post pro of right talus, subs for fx w delay heal +C2867435|T037|AB|S92.131K|ICD10CM|Disp fx of post pro of right talus, subs for fx w nonunion|Disp fx of post pro of right talus, subs for fx w nonunion +C2867436|T037|AB|S92.131P|ICD10CM|Disp fx of post pro of right talus, subs for fx w malunion|Disp fx of post pro of right talus, subs for fx w malunion +C2867437|T037|AB|S92.131S|ICD10CM|Disp fx of posterior process of right talus, sequela|Disp fx of posterior process of right talus, sequela +C2867437|T037|PT|S92.131S|ICD10CM|Displaced fracture of posterior process of right talus, sequela|Displaced fracture of posterior process of right talus, sequela +C2867438|T037|AB|S92.132|ICD10CM|Displaced fracture of posterior process of left talus|Displaced fracture of posterior process of left talus +C2867438|T037|HT|S92.132|ICD10CM|Displaced fracture of posterior process of left talus|Displaced fracture of posterior process of left talus +C2867439|T037|AB|S92.132A|ICD10CM|Disp fx of posterior process of left talus, init for clos fx|Disp fx of posterior process of left talus, init for clos fx +C2867439|T037|PT|S92.132A|ICD10CM|Displaced fracture of posterior process of left talus, initial encounter for closed fracture|Displaced fracture of posterior process of left talus, initial encounter for closed fracture +C2867440|T037|AB|S92.132B|ICD10CM|Disp fx of posterior process of left talus, init for opn fx|Disp fx of posterior process of left talus, init for opn fx +C2867440|T037|PT|S92.132B|ICD10CM|Displaced fracture of posterior process of left talus, initial encounter for open fracture|Displaced fracture of posterior process of left talus, initial encounter for open fracture +C2867441|T037|AB|S92.132D|ICD10CM|Disp fx of post pro of left talus, subs for fx w routn heal|Disp fx of post pro of left talus, subs for fx w routn heal +C2867442|T037|AB|S92.132G|ICD10CM|Disp fx of post pro of left talus, subs for fx w delay heal|Disp fx of post pro of left talus, subs for fx w delay heal +C2867443|T037|AB|S92.132K|ICD10CM|Disp fx of post pro of left talus, subs for fx w nonunion|Disp fx of post pro of left talus, subs for fx w nonunion +C2867444|T037|AB|S92.132P|ICD10CM|Disp fx of post pro of left talus, subs for fx w malunion|Disp fx of post pro of left talus, subs for fx w malunion +C2867445|T037|AB|S92.132S|ICD10CM|Disp fx of posterior process of left talus, sequela|Disp fx of posterior process of left talus, sequela +C2867445|T037|PT|S92.132S|ICD10CM|Displaced fracture of posterior process of left talus, sequela|Displaced fracture of posterior process of left talus, sequela +C2867446|T037|AB|S92.133|ICD10CM|Displaced fracture of posterior process of unspecified talus|Displaced fracture of posterior process of unspecified talus +C2867446|T037|HT|S92.133|ICD10CM|Displaced fracture of posterior process of unspecified talus|Displaced fracture of posterior process of unspecified talus +C2867447|T037|AB|S92.133A|ICD10CM|Disp fx of posterior process of unsp talus, init for clos fx|Disp fx of posterior process of unsp talus, init for clos fx +C2867447|T037|PT|S92.133A|ICD10CM|Displaced fracture of posterior process of unspecified talus, initial encounter for closed fracture|Displaced fracture of posterior process of unspecified talus, initial encounter for closed fracture +C2867448|T037|AB|S92.133B|ICD10CM|Disp fx of posterior process of unsp talus, init for opn fx|Disp fx of posterior process of unsp talus, init for opn fx +C2867448|T037|PT|S92.133B|ICD10CM|Displaced fracture of posterior process of unspecified talus, initial encounter for open fracture|Displaced fracture of posterior process of unspecified talus, initial encounter for open fracture +C2867449|T037|AB|S92.133D|ICD10CM|Disp fx of post pro of unsp talus, subs for fx w routn heal|Disp fx of post pro of unsp talus, subs for fx w routn heal +C2867450|T037|AB|S92.133G|ICD10CM|Disp fx of post pro of unsp talus, subs for fx w delay heal|Disp fx of post pro of unsp talus, subs for fx w delay heal +C2867451|T037|AB|S92.133K|ICD10CM|Disp fx of post pro of unsp talus, subs for fx w nonunion|Disp fx of post pro of unsp talus, subs for fx w nonunion +C2867452|T037|AB|S92.133P|ICD10CM|Disp fx of post pro of unsp talus, subs for fx w malunion|Disp fx of post pro of unsp talus, subs for fx w malunion +C2867453|T037|AB|S92.133S|ICD10CM|Disp fx of posterior process of unspecified talus, sequela|Disp fx of posterior process of unspecified talus, sequela +C2867453|T037|PT|S92.133S|ICD10CM|Displaced fracture of posterior process of unspecified talus, sequela|Displaced fracture of posterior process of unspecified talus, sequela +C2867454|T037|AB|S92.134|ICD10CM|Nondisplaced fracture of posterior process of right talus|Nondisplaced fracture of posterior process of right talus +C2867454|T037|HT|S92.134|ICD10CM|Nondisplaced fracture of posterior process of right talus|Nondisplaced fracture of posterior process of right talus +C2867455|T037|AB|S92.134A|ICD10CM|Nondisp fx of posterior process of right talus, init|Nondisp fx of posterior process of right talus, init +C2867455|T037|PT|S92.134A|ICD10CM|Nondisplaced fracture of posterior process of right talus, initial encounter for closed fracture|Nondisplaced fracture of posterior process of right talus, initial encounter for closed fracture +C2867456|T037|AB|S92.134B|ICD10CM|Nondisp fx of post process of right talus, init for opn fx|Nondisp fx of post process of right talus, init for opn fx +C2867456|T037|PT|S92.134B|ICD10CM|Nondisplaced fracture of posterior process of right talus, initial encounter for open fracture|Nondisplaced fracture of posterior process of right talus, initial encounter for open fracture +C2867457|T037|AB|S92.134D|ICD10CM|Nondisp fx of post pro of r talus, subs for fx w routn heal|Nondisp fx of post pro of r talus, subs for fx w routn heal +C2867458|T037|AB|S92.134G|ICD10CM|Nondisp fx of post pro of r talus, subs for fx w delay heal|Nondisp fx of post pro of r talus, subs for fx w delay heal +C2867459|T037|AB|S92.134K|ICD10CM|Nondisp fx of post pro of r talus, subs for fx w nonunion|Nondisp fx of post pro of r talus, subs for fx w nonunion +C2867460|T037|AB|S92.134P|ICD10CM|Nondisp fx of post pro of r talus, subs for fx w malunion|Nondisp fx of post pro of r talus, subs for fx w malunion +C2867461|T037|AB|S92.134S|ICD10CM|Nondisp fx of posterior process of right talus, sequela|Nondisp fx of posterior process of right talus, sequela +C2867461|T037|PT|S92.134S|ICD10CM|Nondisplaced fracture of posterior process of right talus, sequela|Nondisplaced fracture of posterior process of right talus, sequela +C2867462|T037|AB|S92.135|ICD10CM|Nondisplaced fracture of posterior process of left talus|Nondisplaced fracture of posterior process of left talus +C2867462|T037|HT|S92.135|ICD10CM|Nondisplaced fracture of posterior process of left talus|Nondisplaced fracture of posterior process of left talus +C2867463|T037|AB|S92.135A|ICD10CM|Nondisp fx of posterior process of left talus, init|Nondisp fx of posterior process of left talus, init +C2867463|T037|PT|S92.135A|ICD10CM|Nondisplaced fracture of posterior process of left talus, initial encounter for closed fracture|Nondisplaced fracture of posterior process of left talus, initial encounter for closed fracture +C2867464|T037|AB|S92.135B|ICD10CM|Nondisp fx of post process of left talus, init for opn fx|Nondisp fx of post process of left talus, init for opn fx +C2867464|T037|PT|S92.135B|ICD10CM|Nondisplaced fracture of posterior process of left talus, initial encounter for open fracture|Nondisplaced fracture of posterior process of left talus, initial encounter for open fracture +C2867465|T037|AB|S92.135D|ICD10CM|Nondisp fx of post pro of l talus, subs for fx w routn heal|Nondisp fx of post pro of l talus, subs for fx w routn heal +C2867466|T037|AB|S92.135G|ICD10CM|Nondisp fx of post pro of l talus, subs for fx w delay heal|Nondisp fx of post pro of l talus, subs for fx w delay heal +C2867467|T037|AB|S92.135K|ICD10CM|Nondisp fx of post pro of left talus, subs for fx w nonunion|Nondisp fx of post pro of left talus, subs for fx w nonunion +C2867468|T037|AB|S92.135P|ICD10CM|Nondisp fx of post pro of left talus, subs for fx w malunion|Nondisp fx of post pro of left talus, subs for fx w malunion +C2867469|T037|AB|S92.135S|ICD10CM|Nondisp fx of posterior process of left talus, sequela|Nondisp fx of posterior process of left talus, sequela +C2867469|T037|PT|S92.135S|ICD10CM|Nondisplaced fracture of posterior process of left talus, sequela|Nondisplaced fracture of posterior process of left talus, sequela +C2867470|T037|AB|S92.136|ICD10CM|Nondisp fx of posterior process of unspecified talus|Nondisp fx of posterior process of unspecified talus +C2867470|T037|HT|S92.136|ICD10CM|Nondisplaced fracture of posterior process of unspecified talus|Nondisplaced fracture of posterior process of unspecified talus +C2867471|T037|AB|S92.136A|ICD10CM|Nondisp fx of posterior process of unsp talus, init|Nondisp fx of posterior process of unsp talus, init +C2867472|T037|AB|S92.136B|ICD10CM|Nondisp fx of post process of unsp talus, init for opn fx|Nondisp fx of post process of unsp talus, init for opn fx +C2867472|T037|PT|S92.136B|ICD10CM|Nondisplaced fracture of posterior process of unspecified talus, initial encounter for open fracture|Nondisplaced fracture of posterior process of unspecified talus, initial encounter for open fracture +C2867473|T037|AB|S92.136D|ICD10CM|Nondisp fx of post pro of unsp talus, 7thD|Nondisp fx of post pro of unsp talus, 7thD +C2867474|T037|AB|S92.136G|ICD10CM|Nondisp fx of post pro of unsp talus, 7thG|Nondisp fx of post pro of unsp talus, 7thG +C2867475|T037|AB|S92.136K|ICD10CM|Nondisp fx of post pro of unsp talus, subs for fx w nonunion|Nondisp fx of post pro of unsp talus, subs for fx w nonunion +C2867476|T037|AB|S92.136P|ICD10CM|Nondisp fx of post pro of unsp talus, subs for fx w malunion|Nondisp fx of post pro of unsp talus, subs for fx w malunion +C2867477|T037|AB|S92.136S|ICD10CM|Nondisp fx of posterior process of unsp talus, sequela|Nondisp fx of posterior process of unsp talus, sequela +C2867477|T037|PT|S92.136S|ICD10CM|Nondisplaced fracture of posterior process of unspecified talus, sequela|Nondisplaced fracture of posterior process of unspecified talus, sequela +C2867478|T037|AB|S92.14|ICD10CM|Dome fracture of talus|Dome fracture of talus +C2867478|T037|HT|S92.14|ICD10CM|Dome fracture of talus|Dome fracture of talus +C2867479|T037|AB|S92.141|ICD10CM|Displaced dome fracture of right talus|Displaced dome fracture of right talus +C2867479|T037|HT|S92.141|ICD10CM|Displaced dome fracture of right talus|Displaced dome fracture of right talus +C2867480|T037|AB|S92.141A|ICD10CM|Displaced dome fracture of right talus, init for clos fx|Displaced dome fracture of right talus, init for clos fx +C2867480|T037|PT|S92.141A|ICD10CM|Displaced dome fracture of right talus, initial encounter for closed fracture|Displaced dome fracture of right talus, initial encounter for closed fracture +C2867481|T037|AB|S92.141B|ICD10CM|Displaced dome fracture of right talus, init for opn fx|Displaced dome fracture of right talus, init for opn fx +C2867481|T037|PT|S92.141B|ICD10CM|Displaced dome fracture of right talus, initial encounter for open fracture|Displaced dome fracture of right talus, initial encounter for open fracture +C2867482|T037|PT|S92.141D|ICD10CM|Displaced dome fracture of right talus, subsequent encounter for fracture with routine healing|Displaced dome fracture of right talus, subsequent encounter for fracture with routine healing +C2867482|T037|AB|S92.141D|ICD10CM|Displaced dome fx right talus, subs for fx w routn heal|Displaced dome fx right talus, subs for fx w routn heal +C2867483|T037|PT|S92.141G|ICD10CM|Displaced dome fracture of right talus, subsequent encounter for fracture with delayed healing|Displaced dome fracture of right talus, subsequent encounter for fracture with delayed healing +C2867483|T037|AB|S92.141G|ICD10CM|Displaced dome fx right talus, subs for fx w delay heal|Displaced dome fx right talus, subs for fx w delay heal +C2867484|T037|PT|S92.141K|ICD10CM|Displaced dome fracture of right talus, subsequent encounter for fracture with nonunion|Displaced dome fracture of right talus, subsequent encounter for fracture with nonunion +C2867484|T037|AB|S92.141K|ICD10CM|Displaced dome fx right talus, subs for fx w nonunion|Displaced dome fx right talus, subs for fx w nonunion +C2867485|T037|PT|S92.141P|ICD10CM|Displaced dome fracture of right talus, subsequent encounter for fracture with malunion|Displaced dome fracture of right talus, subsequent encounter for fracture with malunion +C2867485|T037|AB|S92.141P|ICD10CM|Displaced dome fx right talus, subs for fx w malunion|Displaced dome fx right talus, subs for fx w malunion +C2867486|T037|PT|S92.141S|ICD10CM|Displaced dome fracture of right talus, sequela|Displaced dome fracture of right talus, sequela +C2867486|T037|AB|S92.141S|ICD10CM|Displaced dome fracture of right talus, sequela|Displaced dome fracture of right talus, sequela +C2867487|T037|AB|S92.142|ICD10CM|Displaced dome fracture of left talus|Displaced dome fracture of left talus +C2867487|T037|HT|S92.142|ICD10CM|Displaced dome fracture of left talus|Displaced dome fracture of left talus +C2867488|T037|AB|S92.142A|ICD10CM|Displaced dome fracture of left talus, init for clos fx|Displaced dome fracture of left talus, init for clos fx +C2867488|T037|PT|S92.142A|ICD10CM|Displaced dome fracture of left talus, initial encounter for closed fracture|Displaced dome fracture of left talus, initial encounter for closed fracture +C2867489|T037|AB|S92.142B|ICD10CM|Displaced dome fracture of left talus, init for opn fx|Displaced dome fracture of left talus, init for opn fx +C2867489|T037|PT|S92.142B|ICD10CM|Displaced dome fracture of left talus, initial encounter for open fracture|Displaced dome fracture of left talus, initial encounter for open fracture +C2867490|T037|PT|S92.142D|ICD10CM|Displaced dome fracture of left talus, subsequent encounter for fracture with routine healing|Displaced dome fracture of left talus, subsequent encounter for fracture with routine healing +C2867490|T037|AB|S92.142D|ICD10CM|Displaced dome fx left talus, subs for fx w routn heal|Displaced dome fx left talus, subs for fx w routn heal +C2867491|T037|PT|S92.142G|ICD10CM|Displaced dome fracture of left talus, subsequent encounter for fracture with delayed healing|Displaced dome fracture of left talus, subsequent encounter for fracture with delayed healing +C2867491|T037|AB|S92.142G|ICD10CM|Displaced dome fx left talus, subs for fx w delay heal|Displaced dome fx left talus, subs for fx w delay heal +C2867492|T037|PT|S92.142K|ICD10CM|Displaced dome fracture of left talus, subsequent encounter for fracture with nonunion|Displaced dome fracture of left talus, subsequent encounter for fracture with nonunion +C2867492|T037|AB|S92.142K|ICD10CM|Displaced dome fx left talus, subs for fx w nonunion|Displaced dome fx left talus, subs for fx w nonunion +C2867493|T037|PT|S92.142P|ICD10CM|Displaced dome fracture of left talus, subsequent encounter for fracture with malunion|Displaced dome fracture of left talus, subsequent encounter for fracture with malunion +C2867493|T037|AB|S92.142P|ICD10CM|Displaced dome fx left talus, subs for fx w malunion|Displaced dome fx left talus, subs for fx w malunion +C2867494|T037|PT|S92.142S|ICD10CM|Displaced dome fracture of left talus, sequela|Displaced dome fracture of left talus, sequela +C2867494|T037|AB|S92.142S|ICD10CM|Displaced dome fracture of left talus, sequela|Displaced dome fracture of left talus, sequela +C2867495|T037|AB|S92.143|ICD10CM|Displaced dome fracture of unspecified talus|Displaced dome fracture of unspecified talus +C2867495|T037|HT|S92.143|ICD10CM|Displaced dome fracture of unspecified talus|Displaced dome fracture of unspecified talus +C2867496|T037|AB|S92.143A|ICD10CM|Displaced dome fracture of unsp talus, init for clos fx|Displaced dome fracture of unsp talus, init for clos fx +C2867496|T037|PT|S92.143A|ICD10CM|Displaced dome fracture of unspecified talus, initial encounter for closed fracture|Displaced dome fracture of unspecified talus, initial encounter for closed fracture +C2867497|T037|AB|S92.143B|ICD10CM|Displaced dome fracture of unsp talus, init for opn fx|Displaced dome fracture of unsp talus, init for opn fx +C2867497|T037|PT|S92.143B|ICD10CM|Displaced dome fracture of unspecified talus, initial encounter for open fracture|Displaced dome fracture of unspecified talus, initial encounter for open fracture +C2867498|T037|PT|S92.143D|ICD10CM|Displaced dome fracture of unspecified talus, subsequent encounter for fracture with routine healing|Displaced dome fracture of unspecified talus, subsequent encounter for fracture with routine healing +C2867498|T037|AB|S92.143D|ICD10CM|Displaced dome fx unsp talus, subs for fx w routn heal|Displaced dome fx unsp talus, subs for fx w routn heal +C2867499|T037|PT|S92.143G|ICD10CM|Displaced dome fracture of unspecified talus, subsequent encounter for fracture with delayed healing|Displaced dome fracture of unspecified talus, subsequent encounter for fracture with delayed healing +C2867499|T037|AB|S92.143G|ICD10CM|Displaced dome fx unsp talus, subs for fx w delay heal|Displaced dome fx unsp talus, subs for fx w delay heal +C2867500|T037|PT|S92.143K|ICD10CM|Displaced dome fracture of unspecified talus, subsequent encounter for fracture with nonunion|Displaced dome fracture of unspecified talus, subsequent encounter for fracture with nonunion +C2867500|T037|AB|S92.143K|ICD10CM|Displaced dome fx unsp talus, subs for fx w nonunion|Displaced dome fx unsp talus, subs for fx w nonunion +C2867501|T037|PT|S92.143P|ICD10CM|Displaced dome fracture of unspecified talus, subsequent encounter for fracture with malunion|Displaced dome fracture of unspecified talus, subsequent encounter for fracture with malunion +C2867501|T037|AB|S92.143P|ICD10CM|Displaced dome fx unsp talus, subs for fx w malunion|Displaced dome fx unsp talus, subs for fx w malunion +C2867502|T037|PT|S92.143S|ICD10CM|Displaced dome fracture of unspecified talus, sequela|Displaced dome fracture of unspecified talus, sequela +C2867502|T037|AB|S92.143S|ICD10CM|Displaced dome fracture of unspecified talus, sequela|Displaced dome fracture of unspecified talus, sequela +C2867503|T037|AB|S92.144|ICD10CM|Nondisplaced dome fracture of right talus|Nondisplaced dome fracture of right talus +C2867503|T037|HT|S92.144|ICD10CM|Nondisplaced dome fracture of right talus|Nondisplaced dome fracture of right talus +C2867504|T037|AB|S92.144A|ICD10CM|Nondisplaced dome fracture of right talus, init for clos fx|Nondisplaced dome fracture of right talus, init for clos fx +C2867504|T037|PT|S92.144A|ICD10CM|Nondisplaced dome fracture of right talus, initial encounter for closed fracture|Nondisplaced dome fracture of right talus, initial encounter for closed fracture +C2867505|T037|AB|S92.144B|ICD10CM|Nondisplaced dome fracture of right talus, init for opn fx|Nondisplaced dome fracture of right talus, init for opn fx +C2867505|T037|PT|S92.144B|ICD10CM|Nondisplaced dome fracture of right talus, initial encounter for open fracture|Nondisplaced dome fracture of right talus, initial encounter for open fracture +C2867506|T037|AB|S92.144D|ICD10CM|Nondisp dome fx right talus, subs for fx w routn heal|Nondisp dome fx right talus, subs for fx w routn heal +C2867506|T037|PT|S92.144D|ICD10CM|Nondisplaced dome fracture of right talus, subsequent encounter for fracture with routine healing|Nondisplaced dome fracture of right talus, subsequent encounter for fracture with routine healing +C2867507|T037|AB|S92.144G|ICD10CM|Nondisp dome fx right talus, subs for fx w delay heal|Nondisp dome fx right talus, subs for fx w delay heal +C2867507|T037|PT|S92.144G|ICD10CM|Nondisplaced dome fracture of right talus, subsequent encounter for fracture with delayed healing|Nondisplaced dome fracture of right talus, subsequent encounter for fracture with delayed healing +C2867508|T037|AB|S92.144K|ICD10CM|Nondisp dome fracture of right talus, subs for fx w nonunion|Nondisp dome fracture of right talus, subs for fx w nonunion +C2867508|T037|PT|S92.144K|ICD10CM|Nondisplaced dome fracture of right talus, subsequent encounter for fracture with nonunion|Nondisplaced dome fracture of right talus, subsequent encounter for fracture with nonunion +C2867509|T037|AB|S92.144P|ICD10CM|Nondisp dome fracture of right talus, subs for fx w malunion|Nondisp dome fracture of right talus, subs for fx w malunion +C2867509|T037|PT|S92.144P|ICD10CM|Nondisplaced dome fracture of right talus, subsequent encounter for fracture with malunion|Nondisplaced dome fracture of right talus, subsequent encounter for fracture with malunion +C2867510|T037|PT|S92.144S|ICD10CM|Nondisplaced dome fracture of right talus, sequela|Nondisplaced dome fracture of right talus, sequela +C2867510|T037|AB|S92.144S|ICD10CM|Nondisplaced dome fracture of right talus, sequela|Nondisplaced dome fracture of right talus, sequela +C2867511|T037|AB|S92.145|ICD10CM|Nondisplaced dome fracture of left talus|Nondisplaced dome fracture of left talus +C2867511|T037|HT|S92.145|ICD10CM|Nondisplaced dome fracture of left talus|Nondisplaced dome fracture of left talus +C2867512|T037|AB|S92.145A|ICD10CM|Nondisplaced dome fracture of left talus, init for clos fx|Nondisplaced dome fracture of left talus, init for clos fx +C2867512|T037|PT|S92.145A|ICD10CM|Nondisplaced dome fracture of left talus, initial encounter for closed fracture|Nondisplaced dome fracture of left talus, initial encounter for closed fracture +C2867513|T037|AB|S92.145B|ICD10CM|Nondisplaced dome fracture of left talus, init for opn fx|Nondisplaced dome fracture of left talus, init for opn fx +C2867513|T037|PT|S92.145B|ICD10CM|Nondisplaced dome fracture of left talus, initial encounter for open fracture|Nondisplaced dome fracture of left talus, initial encounter for open fracture +C2867514|T037|AB|S92.145D|ICD10CM|Nondisp dome fx left talus, subs for fx w routn heal|Nondisp dome fx left talus, subs for fx w routn heal +C2867514|T037|PT|S92.145D|ICD10CM|Nondisplaced dome fracture of left talus, subsequent encounter for fracture with routine healing|Nondisplaced dome fracture of left talus, subsequent encounter for fracture with routine healing +C2867515|T037|AB|S92.145G|ICD10CM|Nondisp dome fx left talus, subs for fx w delay heal|Nondisp dome fx left talus, subs for fx w delay heal +C2867515|T037|PT|S92.145G|ICD10CM|Nondisplaced dome fracture of left talus, subsequent encounter for fracture with delayed healing|Nondisplaced dome fracture of left talus, subsequent encounter for fracture with delayed healing +C2867516|T037|AB|S92.145K|ICD10CM|Nondisp dome fracture of left talus, subs for fx w nonunion|Nondisp dome fracture of left talus, subs for fx w nonunion +C2867516|T037|PT|S92.145K|ICD10CM|Nondisplaced dome fracture of left talus, subsequent encounter for fracture with nonunion|Nondisplaced dome fracture of left talus, subsequent encounter for fracture with nonunion +C2867517|T037|AB|S92.145P|ICD10CM|Nondisp dome fracture of left talus, subs for fx w malunion|Nondisp dome fracture of left talus, subs for fx w malunion +C2867517|T037|PT|S92.145P|ICD10CM|Nondisplaced dome fracture of left talus, subsequent encounter for fracture with malunion|Nondisplaced dome fracture of left talus, subsequent encounter for fracture with malunion +C2867518|T037|PT|S92.145S|ICD10CM|Nondisplaced dome fracture of left talus, sequela|Nondisplaced dome fracture of left talus, sequela +C2867518|T037|AB|S92.145S|ICD10CM|Nondisplaced dome fracture of left talus, sequela|Nondisplaced dome fracture of left talus, sequela +C2867519|T037|AB|S92.146|ICD10CM|Nondisplaced dome fracture of unspecified talus|Nondisplaced dome fracture of unspecified talus +C2867519|T037|HT|S92.146|ICD10CM|Nondisplaced dome fracture of unspecified talus|Nondisplaced dome fracture of unspecified talus +C2867520|T037|AB|S92.146A|ICD10CM|Nondisplaced dome fracture of unsp talus, init for clos fx|Nondisplaced dome fracture of unsp talus, init for clos fx +C2867520|T037|PT|S92.146A|ICD10CM|Nondisplaced dome fracture of unspecified talus, initial encounter for closed fracture|Nondisplaced dome fracture of unspecified talus, initial encounter for closed fracture +C2867521|T037|AB|S92.146B|ICD10CM|Nondisplaced dome fracture of unsp talus, init for opn fx|Nondisplaced dome fracture of unsp talus, init for opn fx +C2867521|T037|PT|S92.146B|ICD10CM|Nondisplaced dome fracture of unspecified talus, initial encounter for open fracture|Nondisplaced dome fracture of unspecified talus, initial encounter for open fracture +C2867522|T037|AB|S92.146D|ICD10CM|Nondisp dome fx unsp talus, subs for fx w routn heal|Nondisp dome fx unsp talus, subs for fx w routn heal +C2867523|T037|AB|S92.146G|ICD10CM|Nondisp dome fx unsp talus, subs for fx w delay heal|Nondisp dome fx unsp talus, subs for fx w delay heal +C2867524|T037|AB|S92.146K|ICD10CM|Nondisp dome fracture of unsp talus, subs for fx w nonunion|Nondisp dome fracture of unsp talus, subs for fx w nonunion +C2867524|T037|PT|S92.146K|ICD10CM|Nondisplaced dome fracture of unspecified talus, subsequent encounter for fracture with nonunion|Nondisplaced dome fracture of unspecified talus, subsequent encounter for fracture with nonunion +C2867525|T037|AB|S92.146P|ICD10CM|Nondisp dome fracture of unsp talus, subs for fx w malunion|Nondisp dome fracture of unsp talus, subs for fx w malunion +C2867525|T037|PT|S92.146P|ICD10CM|Nondisplaced dome fracture of unspecified talus, subsequent encounter for fracture with malunion|Nondisplaced dome fracture of unspecified talus, subsequent encounter for fracture with malunion +C2867526|T037|PT|S92.146S|ICD10CM|Nondisplaced dome fracture of unspecified talus, sequela|Nondisplaced dome fracture of unspecified talus, sequela +C2867526|T037|AB|S92.146S|ICD10CM|Nondisplaced dome fracture of unspecified talus, sequela|Nondisplaced dome fracture of unspecified talus, sequela +C2867527|T037|AB|S92.15|ICD10CM|Avulsion fracture (chip fracture) of talus|Avulsion fracture (chip fracture) of talus +C2867527|T037|HT|S92.15|ICD10CM|Avulsion fracture (chip fracture) of talus|Avulsion fracture (chip fracture) of talus +C2867528|T037|AB|S92.151|ICD10CM|Displaced avulsion fracture (chip fracture) of right talus|Displaced avulsion fracture (chip fracture) of right talus +C2867528|T037|HT|S92.151|ICD10CM|Displaced avulsion fracture (chip fracture) of right talus|Displaced avulsion fracture (chip fracture) of right talus +C2867529|T037|AB|S92.151A|ICD10CM|Displ avulsion fracture (chip fracture) of right talus, init|Displ avulsion fracture (chip fracture) of right talus, init +C2867529|T037|PT|S92.151A|ICD10CM|Displaced avulsion fracture (chip fracture) of right talus, initial encounter for closed fracture|Displaced avulsion fracture (chip fracture) of right talus, initial encounter for closed fracture +C2867530|T037|AB|S92.151B|ICD10CM|Displ avuls fx (chip fracture) of r talus, init for opn fx|Displ avuls fx (chip fracture) of r talus, init for opn fx +C2867530|T037|PT|S92.151B|ICD10CM|Displaced avulsion fracture (chip fracture) of right talus, initial encounter for open fracture|Displaced avulsion fracture (chip fracture) of right talus, initial encounter for open fracture +C2867531|T037|AB|S92.151D|ICD10CM|Displ avuls fx (chip fracture) of r talus, 7thD|Displ avuls fx (chip fracture) of r talus, 7thD +C2867532|T037|AB|S92.151G|ICD10CM|Displ avuls fx (chip fracture) of r talus, 7thG|Displ avuls fx (chip fracture) of r talus, 7thG +C2867533|T037|AB|S92.151K|ICD10CM|Displ avuls fx (chip fracture) of r talus, 7thK|Displ avuls fx (chip fracture) of r talus, 7thK +C2867534|T037|AB|S92.151P|ICD10CM|Displ avuls fx (chip fracture) of r talus, 7thP|Displ avuls fx (chip fracture) of r talus, 7thP +C2867535|T037|AB|S92.151S|ICD10CM|Displ avuls fracture (chip fracture) of right talus, sequela|Displ avuls fracture (chip fracture) of right talus, sequela +C2867535|T037|PT|S92.151S|ICD10CM|Displaced avulsion fracture (chip fracture) of right talus, sequela|Displaced avulsion fracture (chip fracture) of right talus, sequela +C2867536|T037|AB|S92.152|ICD10CM|Displaced avulsion fracture (chip fracture) of left talus|Displaced avulsion fracture (chip fracture) of left talus +C2867536|T037|HT|S92.152|ICD10CM|Displaced avulsion fracture (chip fracture) of left talus|Displaced avulsion fracture (chip fracture) of left talus +C2867537|T037|AB|S92.152A|ICD10CM|Displ avulsion fracture (chip fracture) of left talus, init|Displ avulsion fracture (chip fracture) of left talus, init +C2867537|T037|PT|S92.152A|ICD10CM|Displaced avulsion fracture (chip fracture) of left talus, initial encounter for closed fracture|Displaced avulsion fracture (chip fracture) of left talus, initial encounter for closed fracture +C2867538|T037|AB|S92.152B|ICD10CM|Displ avuls fx (chip fracture) of l talus, init for opn fx|Displ avuls fx (chip fracture) of l talus, init for opn fx +C2867538|T037|PT|S92.152B|ICD10CM|Displaced avulsion fracture (chip fracture) of left talus, initial encounter for open fracture|Displaced avulsion fracture (chip fracture) of left talus, initial encounter for open fracture +C2867539|T037|AB|S92.152D|ICD10CM|Displ avuls fx (chip fracture) of l talus, 7thD|Displ avuls fx (chip fracture) of l talus, 7thD +C2867540|T037|AB|S92.152G|ICD10CM|Displ avuls fx (chip fracture) of l talus, 7thG|Displ avuls fx (chip fracture) of l talus, 7thG +C2867541|T037|AB|S92.152K|ICD10CM|Displ avuls fx (chip fracture) of l talus, 7thK|Displ avuls fx (chip fracture) of l talus, 7thK +C2867542|T037|AB|S92.152P|ICD10CM|Displ avuls fx (chip fracture) of l talus, 7thP|Displ avuls fx (chip fracture) of l talus, 7thP +C2867543|T037|AB|S92.152S|ICD10CM|Displ avuls fracture (chip fracture) of left talus, sequela|Displ avuls fracture (chip fracture) of left talus, sequela +C2867543|T037|PT|S92.152S|ICD10CM|Displaced avulsion fracture (chip fracture) of left talus, sequela|Displaced avulsion fracture (chip fracture) of left talus, sequela +C2867544|T037|AB|S92.153|ICD10CM|Displaced avulsion fracture (chip fracture) of unsp talus|Displaced avulsion fracture (chip fracture) of unsp talus +C2867544|T037|HT|S92.153|ICD10CM|Displaced avulsion fracture (chip fracture) of unspecified talus|Displaced avulsion fracture (chip fracture) of unspecified talus +C2867545|T037|AB|S92.153A|ICD10CM|Displ avulsion fracture (chip fracture) of unsp talus, init|Displ avulsion fracture (chip fracture) of unsp talus, init +C2867546|T037|AB|S92.153B|ICD10CM|Displ avuls fx (chip fracture) of unsp talus, 7thB|Displ avuls fx (chip fracture) of unsp talus, 7thB +C2867547|T037|AB|S92.153D|ICD10CM|Displ avuls fx (chip fracture) of unsp talus, 7thD|Displ avuls fx (chip fracture) of unsp talus, 7thD +C2867548|T037|AB|S92.153G|ICD10CM|Displ avuls fx (chip fracture) of unsp talus, 7thG|Displ avuls fx (chip fracture) of unsp talus, 7thG +C2867549|T037|AB|S92.153K|ICD10CM|Displ avuls fx (chip fracture) of unsp talus, 7thK|Displ avuls fx (chip fracture) of unsp talus, 7thK +C2867550|T037|AB|S92.153P|ICD10CM|Displ avuls fx (chip fracture) of unsp talus, 7thP|Displ avuls fx (chip fracture) of unsp talus, 7thP +C2867551|T037|AB|S92.153S|ICD10CM|Displ avuls fracture (chip fracture) of unsp talus, sequela|Displ avuls fracture (chip fracture) of unsp talus, sequela +C2867551|T037|PT|S92.153S|ICD10CM|Displaced avulsion fracture (chip fracture) of unspecified talus, sequela|Displaced avulsion fracture (chip fracture) of unspecified talus, sequela +C2867552|T037|AB|S92.154|ICD10CM|Nondisp avulsion fracture (chip fracture) of right talus|Nondisp avulsion fracture (chip fracture) of right talus +C2867552|T037|HT|S92.154|ICD10CM|Nondisplaced avulsion fracture (chip fracture) of right talus|Nondisplaced avulsion fracture (chip fracture) of right talus +C2867553|T037|AB|S92.154A|ICD10CM|Nondisp avuls fracture (chip fracture) of right talus, init|Nondisp avuls fracture (chip fracture) of right talus, init +C2867553|T037|PT|S92.154A|ICD10CM|Nondisplaced avulsion fracture (chip fracture) of right talus, initial encounter for closed fracture|Nondisplaced avulsion fracture (chip fracture) of right talus, initial encounter for closed fracture +C2867554|T037|AB|S92.154B|ICD10CM|Nondisp avuls fx (chip fracture) of r talus, init for opn fx|Nondisp avuls fx (chip fracture) of r talus, init for opn fx +C2867554|T037|PT|S92.154B|ICD10CM|Nondisplaced avulsion fracture (chip fracture) of right talus, initial encounter for open fracture|Nondisplaced avulsion fracture (chip fracture) of right talus, initial encounter for open fracture +C2867555|T037|AB|S92.154D|ICD10CM|Nondisp avuls fx (chip fracture) of r talus, 7thD|Nondisp avuls fx (chip fracture) of r talus, 7thD +C2867556|T037|AB|S92.154G|ICD10CM|Nondisp avuls fx (chip fracture) of r talus, 7thG|Nondisp avuls fx (chip fracture) of r talus, 7thG +C2867557|T037|AB|S92.154K|ICD10CM|Nondisp avuls fx (chip fracture) of r talus, 7thK|Nondisp avuls fx (chip fracture) of r talus, 7thK +C2867558|T037|AB|S92.154P|ICD10CM|Nondisp avuls fx (chip fracture) of r talus, 7thP|Nondisp avuls fx (chip fracture) of r talus, 7thP +C2867559|T037|AB|S92.154S|ICD10CM|Nondisp avuls fx (chip fracture) of right talus, sequela|Nondisp avuls fx (chip fracture) of right talus, sequela +C2867559|T037|PT|S92.154S|ICD10CM|Nondisplaced avulsion fracture (chip fracture) of right talus, sequela|Nondisplaced avulsion fracture (chip fracture) of right talus, sequela +C2867560|T037|AB|S92.155|ICD10CM|Nondisplaced avulsion fracture (chip fracture) of left talus|Nondisplaced avulsion fracture (chip fracture) of left talus +C2867560|T037|HT|S92.155|ICD10CM|Nondisplaced avulsion fracture (chip fracture) of left talus|Nondisplaced avulsion fracture (chip fracture) of left talus +C2867561|T037|AB|S92.155A|ICD10CM|Nondisp avuls fracture (chip fracture) of left talus, init|Nondisp avuls fracture (chip fracture) of left talus, init +C2867561|T037|PT|S92.155A|ICD10CM|Nondisplaced avulsion fracture (chip fracture) of left talus, initial encounter for closed fracture|Nondisplaced avulsion fracture (chip fracture) of left talus, initial encounter for closed fracture +C2867562|T037|AB|S92.155B|ICD10CM|Nondisp avuls fx (chip fracture) of l talus, init for opn fx|Nondisp avuls fx (chip fracture) of l talus, init for opn fx +C2867562|T037|PT|S92.155B|ICD10CM|Nondisplaced avulsion fracture (chip fracture) of left talus, initial encounter for open fracture|Nondisplaced avulsion fracture (chip fracture) of left talus, initial encounter for open fracture +C2867563|T037|AB|S92.155D|ICD10CM|Nondisp avuls fx (chip fracture) of l talus, 7thD|Nondisp avuls fx (chip fracture) of l talus, 7thD +C2867564|T037|AB|S92.155G|ICD10CM|Nondisp avuls fx (chip fracture) of l talus, 7thG|Nondisp avuls fx (chip fracture) of l talus, 7thG +C2867565|T037|AB|S92.155K|ICD10CM|Nondisp avuls fx (chip fracture) of l talus, 7thK|Nondisp avuls fx (chip fracture) of l talus, 7thK +C2867566|T037|AB|S92.155P|ICD10CM|Nondisp avuls fx (chip fracture) of l talus, 7thP|Nondisp avuls fx (chip fracture) of l talus, 7thP +C2867567|T037|AB|S92.155S|ICD10CM|Nondisp avuls fx (chip fracture) of left talus, sequela|Nondisp avuls fx (chip fracture) of left talus, sequela +C2867567|T037|PT|S92.155S|ICD10CM|Nondisplaced avulsion fracture (chip fracture) of left talus, sequela|Nondisplaced avulsion fracture (chip fracture) of left talus, sequela +C2867568|T037|AB|S92.156|ICD10CM|Nondisplaced avulsion fracture (chip fracture) of unsp talus|Nondisplaced avulsion fracture (chip fracture) of unsp talus +C2867568|T037|HT|S92.156|ICD10CM|Nondisplaced avulsion fracture (chip fracture) of unspecified talus|Nondisplaced avulsion fracture (chip fracture) of unspecified talus +C2867569|T037|AB|S92.156A|ICD10CM|Nondisp avuls fracture (chip fracture) of unsp talus, init|Nondisp avuls fracture (chip fracture) of unsp talus, init +C2867570|T037|AB|S92.156B|ICD10CM|Nondisp avuls fx (chip fracture) of unsp talus, 7thB|Nondisp avuls fx (chip fracture) of unsp talus, 7thB +C2867571|T037|AB|S92.156D|ICD10CM|Nondisp avuls fx (chip fracture) of unsp talus, 7thD|Nondisp avuls fx (chip fracture) of unsp talus, 7thD +C2867572|T037|AB|S92.156G|ICD10CM|Nondisp avuls fx (chip fracture) of unsp talus, 7thG|Nondisp avuls fx (chip fracture) of unsp talus, 7thG +C2867573|T037|AB|S92.156K|ICD10CM|Nondisp avuls fx (chip fracture) of unsp talus, 7thK|Nondisp avuls fx (chip fracture) of unsp talus, 7thK +C2867574|T037|AB|S92.156P|ICD10CM|Nondisp avuls fx (chip fracture) of unsp talus, 7thP|Nondisp avuls fx (chip fracture) of unsp talus, 7thP +C2867575|T037|AB|S92.156S|ICD10CM|Nondisp avuls fx (chip fracture) of unsp talus, sequela|Nondisp avuls fx (chip fracture) of unsp talus, sequela +C2867575|T037|PT|S92.156S|ICD10CM|Nondisplaced avulsion fracture (chip fracture) of unspecified talus, sequela|Nondisplaced avulsion fracture (chip fracture) of unspecified talus, sequela +C2867576|T037|AB|S92.19|ICD10CM|Other fracture of talus|Other fracture of talus +C2867576|T037|HT|S92.19|ICD10CM|Other fracture of talus|Other fracture of talus +C2867577|T037|AB|S92.191|ICD10CM|Other fracture of right talus|Other fracture of right talus +C2867577|T037|HT|S92.191|ICD10CM|Other fracture of right talus|Other fracture of right talus +C2867578|T037|AB|S92.191A|ICD10CM|Oth fracture of right talus, init encntr for closed fracture|Oth fracture of right talus, init encntr for closed fracture +C2867578|T037|PT|S92.191A|ICD10CM|Other fracture of right talus, initial encounter for closed fracture|Other fracture of right talus, initial encounter for closed fracture +C2867579|T037|AB|S92.191B|ICD10CM|Other fracture of right talus, init encntr for open fracture|Other fracture of right talus, init encntr for open fracture +C2867579|T037|PT|S92.191B|ICD10CM|Other fracture of right talus, initial encounter for open fracture|Other fracture of right talus, initial encounter for open fracture +C2867580|T037|AB|S92.191D|ICD10CM|Oth fracture of right talus, subs for fx w routn heal|Oth fracture of right talus, subs for fx w routn heal +C2867580|T037|PT|S92.191D|ICD10CM|Other fracture of right talus, subsequent encounter for fracture with routine healing|Other fracture of right talus, subsequent encounter for fracture with routine healing +C2867581|T037|AB|S92.191G|ICD10CM|Oth fracture of right talus, subs for fx w delay heal|Oth fracture of right talus, subs for fx w delay heal +C2867581|T037|PT|S92.191G|ICD10CM|Other fracture of right talus, subsequent encounter for fracture with delayed healing|Other fracture of right talus, subsequent encounter for fracture with delayed healing +C2867582|T037|AB|S92.191K|ICD10CM|Oth fracture of right talus, subs for fx w nonunion|Oth fracture of right talus, subs for fx w nonunion +C2867582|T037|PT|S92.191K|ICD10CM|Other fracture of right talus, subsequent encounter for fracture with nonunion|Other fracture of right talus, subsequent encounter for fracture with nonunion +C2867583|T037|AB|S92.191P|ICD10CM|Oth fracture of right talus, subs for fx w malunion|Oth fracture of right talus, subs for fx w malunion +C2867583|T037|PT|S92.191P|ICD10CM|Other fracture of right talus, subsequent encounter for fracture with malunion|Other fracture of right talus, subsequent encounter for fracture with malunion +C2867584|T037|PT|S92.191S|ICD10CM|Other fracture of right talus, sequela|Other fracture of right talus, sequela +C2867584|T037|AB|S92.191S|ICD10CM|Other fracture of right talus, sequela|Other fracture of right talus, sequela +C2867585|T037|AB|S92.192|ICD10CM|Other fracture of left talus|Other fracture of left talus +C2867585|T037|HT|S92.192|ICD10CM|Other fracture of left talus|Other fracture of left talus +C2867586|T037|AB|S92.192A|ICD10CM|Oth fracture of left talus, init encntr for closed fracture|Oth fracture of left talus, init encntr for closed fracture +C2867586|T037|PT|S92.192A|ICD10CM|Other fracture of left talus, initial encounter for closed fracture|Other fracture of left talus, initial encounter for closed fracture +C2867587|T037|AB|S92.192B|ICD10CM|Other fracture of left talus, init encntr for open fracture|Other fracture of left talus, init encntr for open fracture +C2867587|T037|PT|S92.192B|ICD10CM|Other fracture of left talus, initial encounter for open fracture|Other fracture of left talus, initial encounter for open fracture +C2867588|T037|AB|S92.192D|ICD10CM|Oth fracture of left talus, subs for fx w routn heal|Oth fracture of left talus, subs for fx w routn heal +C2867588|T037|PT|S92.192D|ICD10CM|Other fracture of left talus, subsequent encounter for fracture with routine healing|Other fracture of left talus, subsequent encounter for fracture with routine healing +C2867589|T037|AB|S92.192G|ICD10CM|Oth fracture of left talus, subs for fx w delay heal|Oth fracture of left talus, subs for fx w delay heal +C2867589|T037|PT|S92.192G|ICD10CM|Other fracture of left talus, subsequent encounter for fracture with delayed healing|Other fracture of left talus, subsequent encounter for fracture with delayed healing +C2867590|T037|AB|S92.192K|ICD10CM|Oth fracture of left talus, subs for fx w nonunion|Oth fracture of left talus, subs for fx w nonunion +C2867590|T037|PT|S92.192K|ICD10CM|Other fracture of left talus, subsequent encounter for fracture with nonunion|Other fracture of left talus, subsequent encounter for fracture with nonunion +C2867591|T037|AB|S92.192P|ICD10CM|Oth fracture of left talus, subs for fx w malunion|Oth fracture of left talus, subs for fx w malunion +C2867591|T037|PT|S92.192P|ICD10CM|Other fracture of left talus, subsequent encounter for fracture with malunion|Other fracture of left talus, subsequent encounter for fracture with malunion +C2867592|T037|PT|S92.192S|ICD10CM|Other fracture of left talus, sequela|Other fracture of left talus, sequela +C2867592|T037|AB|S92.192S|ICD10CM|Other fracture of left talus, sequela|Other fracture of left talus, sequela +C2867593|T037|AB|S92.199|ICD10CM|Other fracture of unspecified talus|Other fracture of unspecified talus +C2867593|T037|HT|S92.199|ICD10CM|Other fracture of unspecified talus|Other fracture of unspecified talus +C2867594|T037|AB|S92.199A|ICD10CM|Oth fracture of unsp talus, init encntr for closed fracture|Oth fracture of unsp talus, init encntr for closed fracture +C2867594|T037|PT|S92.199A|ICD10CM|Other fracture of unspecified talus, initial encounter for closed fracture|Other fracture of unspecified talus, initial encounter for closed fracture +C2867595|T037|AB|S92.199B|ICD10CM|Other fracture of unsp talus, init encntr for open fracture|Other fracture of unsp talus, init encntr for open fracture +C2867595|T037|PT|S92.199B|ICD10CM|Other fracture of unspecified talus, initial encounter for open fracture|Other fracture of unspecified talus, initial encounter for open fracture +C2867596|T037|AB|S92.199D|ICD10CM|Oth fracture of unsp talus, subs for fx w routn heal|Oth fracture of unsp talus, subs for fx w routn heal +C2867596|T037|PT|S92.199D|ICD10CM|Other fracture of unspecified talus, subsequent encounter for fracture with routine healing|Other fracture of unspecified talus, subsequent encounter for fracture with routine healing +C2867597|T037|AB|S92.199G|ICD10CM|Oth fracture of unsp talus, subs for fx w delay heal|Oth fracture of unsp talus, subs for fx w delay heal +C2867597|T037|PT|S92.199G|ICD10CM|Other fracture of unspecified talus, subsequent encounter for fracture with delayed healing|Other fracture of unspecified talus, subsequent encounter for fracture with delayed healing +C2867598|T037|AB|S92.199K|ICD10CM|Oth fracture of unsp talus, subs for fx w nonunion|Oth fracture of unsp talus, subs for fx w nonunion +C2867598|T037|PT|S92.199K|ICD10CM|Other fracture of unspecified talus, subsequent encounter for fracture with nonunion|Other fracture of unspecified talus, subsequent encounter for fracture with nonunion +C2867599|T037|AB|S92.199P|ICD10CM|Oth fracture of unsp talus, subs for fx w malunion|Oth fracture of unsp talus, subs for fx w malunion +C2867599|T037|PT|S92.199P|ICD10CM|Other fracture of unspecified talus, subsequent encounter for fracture with malunion|Other fracture of unspecified talus, subsequent encounter for fracture with malunion +C2867600|T037|PT|S92.199S|ICD10CM|Other fracture of unspecified talus, sequela|Other fracture of unspecified talus, sequela +C2867600|T037|AB|S92.199S|ICD10CM|Other fracture of unspecified talus, sequela|Other fracture of unspecified talus, sequela +C2867601|T037|AB|S92.2|ICD10CM|Fracture of other and unspecified tarsal bone(s)|Fracture of other and unspecified tarsal bone(s) +C2867601|T037|HT|S92.2|ICD10CM|Fracture of other and unspecified tarsal bone(s)|Fracture of other and unspecified tarsal bone(s) +C0478352|T037|PT|S92.2|ICD10|Fracture of other tarsal bone(s)|Fracture of other tarsal bone(s) +C0840727|T037|AB|S92.20|ICD10CM|Fracture of unspecified tarsal bone(s)|Fracture of unspecified tarsal bone(s) +C0840727|T037|HT|S92.20|ICD10CM|Fracture of unspecified tarsal bone(s)|Fracture of unspecified tarsal bone(s) +C2867602|T037|AB|S92.201|ICD10CM|Fracture of unspecified tarsal bone(s) of right foot|Fracture of unspecified tarsal bone(s) of right foot +C2867602|T037|HT|S92.201|ICD10CM|Fracture of unspecified tarsal bone(s) of right foot|Fracture of unspecified tarsal bone(s) of right foot +C2867603|T037|AB|S92.201A|ICD10CM|Fracture of unsp tarsal bone(s) of right foot, init|Fracture of unsp tarsal bone(s) of right foot, init +C2867603|T037|PT|S92.201A|ICD10CM|Fracture of unspecified tarsal bone(s) of right foot, initial encounter for closed fracture|Fracture of unspecified tarsal bone(s) of right foot, initial encounter for closed fracture +C2867604|T037|PT|S92.201B|ICD10CM|Fracture of unspecified tarsal bone(s) of right foot, initial encounter for open fracture|Fracture of unspecified tarsal bone(s) of right foot, initial encounter for open fracture +C2867604|T037|AB|S92.201B|ICD10CM|Fx unsp tarsal bone(s) of right foot, init for opn fx|Fx unsp tarsal bone(s) of right foot, init for opn fx +C2867605|T037|AB|S92.201D|ICD10CM|Fx unsp tarsal bone(s) of r foot, subs for fx w routn heal|Fx unsp tarsal bone(s) of r foot, subs for fx w routn heal +C2867606|T037|AB|S92.201G|ICD10CM|Fx unsp tarsal bone(s) of r foot, subs for fx w delay heal|Fx unsp tarsal bone(s) of r foot, subs for fx w delay heal +C2867607|T037|AB|S92.201K|ICD10CM|Fx unsp tarsal bone(s) of right foot, subs for fx w nonunion|Fx unsp tarsal bone(s) of right foot, subs for fx w nonunion +C2867608|T037|AB|S92.201P|ICD10CM|Fx unsp tarsal bone(s) of right foot, subs for fx w malunion|Fx unsp tarsal bone(s) of right foot, subs for fx w malunion +C2867609|T037|AB|S92.201S|ICD10CM|Fracture of unsp tarsal bone(s) of right foot, sequela|Fracture of unsp tarsal bone(s) of right foot, sequela +C2867609|T037|PT|S92.201S|ICD10CM|Fracture of unspecified tarsal bone(s) of right foot, sequela|Fracture of unspecified tarsal bone(s) of right foot, sequela +C2867610|T037|AB|S92.202|ICD10CM|Fracture of unspecified tarsal bone(s) of left foot|Fracture of unspecified tarsal bone(s) of left foot +C2867610|T037|HT|S92.202|ICD10CM|Fracture of unspecified tarsal bone(s) of left foot|Fracture of unspecified tarsal bone(s) of left foot +C2867611|T037|AB|S92.202A|ICD10CM|Fracture of unsp tarsal bone(s) of left foot, init|Fracture of unsp tarsal bone(s) of left foot, init +C2867611|T037|PT|S92.202A|ICD10CM|Fracture of unspecified tarsal bone(s) of left foot, initial encounter for closed fracture|Fracture of unspecified tarsal bone(s) of left foot, initial encounter for closed fracture +C2867612|T037|PT|S92.202B|ICD10CM|Fracture of unspecified tarsal bone(s) of left foot, initial encounter for open fracture|Fracture of unspecified tarsal bone(s) of left foot, initial encounter for open fracture +C2867612|T037|AB|S92.202B|ICD10CM|Fx unsp tarsal bone(s) of left foot, init for opn fx|Fx unsp tarsal bone(s) of left foot, init for opn fx +C2867613|T037|AB|S92.202D|ICD10CM|Fx unsp tarsal bone(s) of l foot, subs for fx w routn heal|Fx unsp tarsal bone(s) of l foot, subs for fx w routn heal +C2867614|T037|AB|S92.202G|ICD10CM|Fx unsp tarsal bone(s) of l foot, subs for fx w delay heal|Fx unsp tarsal bone(s) of l foot, subs for fx w delay heal +C2867615|T037|PT|S92.202K|ICD10CM|Fracture of unspecified tarsal bone(s) of left foot, subsequent encounter for fracture with nonunion|Fracture of unspecified tarsal bone(s) of left foot, subsequent encounter for fracture with nonunion +C2867615|T037|AB|S92.202K|ICD10CM|Fx unsp tarsal bone(s) of left foot, subs for fx w nonunion|Fx unsp tarsal bone(s) of left foot, subs for fx w nonunion +C2867616|T037|PT|S92.202P|ICD10CM|Fracture of unspecified tarsal bone(s) of left foot, subsequent encounter for fracture with malunion|Fracture of unspecified tarsal bone(s) of left foot, subsequent encounter for fracture with malunion +C2867616|T037|AB|S92.202P|ICD10CM|Fx unsp tarsal bone(s) of left foot, subs for fx w malunion|Fx unsp tarsal bone(s) of left foot, subs for fx w malunion +C2867617|T037|AB|S92.202S|ICD10CM|Fracture of unspecified tarsal bone(s) of left foot, sequela|Fracture of unspecified tarsal bone(s) of left foot, sequela +C2867617|T037|PT|S92.202S|ICD10CM|Fracture of unspecified tarsal bone(s) of left foot, sequela|Fracture of unspecified tarsal bone(s) of left foot, sequela +C2867618|T037|AB|S92.209|ICD10CM|Fracture of unspecified tarsal bone(s) of unspecified foot|Fracture of unspecified tarsal bone(s) of unspecified foot +C2867618|T037|HT|S92.209|ICD10CM|Fracture of unspecified tarsal bone(s) of unspecified foot|Fracture of unspecified tarsal bone(s) of unspecified foot +C2867619|T037|AB|S92.209A|ICD10CM|Fracture of unsp tarsal bone(s) of unsp foot, init|Fracture of unsp tarsal bone(s) of unsp foot, init +C2867619|T037|PT|S92.209A|ICD10CM|Fracture of unspecified tarsal bone(s) of unspecified foot, initial encounter for closed fracture|Fracture of unspecified tarsal bone(s) of unspecified foot, initial encounter for closed fracture +C2867620|T037|PT|S92.209B|ICD10CM|Fracture of unspecified tarsal bone(s) of unspecified foot, initial encounter for open fracture|Fracture of unspecified tarsal bone(s) of unspecified foot, initial encounter for open fracture +C2867620|T037|AB|S92.209B|ICD10CM|Fx unsp tarsal bone(s) of unsp foot, init for opn fx|Fx unsp tarsal bone(s) of unsp foot, init for opn fx +C2867621|T037|AB|S92.209D|ICD10CM|Fx unsp tarsal bone(s) of unsp ft, subs for fx w routn heal|Fx unsp tarsal bone(s) of unsp ft, subs for fx w routn heal +C2867622|T037|AB|S92.209G|ICD10CM|Fx unsp tarsal bone(s) of unsp ft, subs for fx w delay heal|Fx unsp tarsal bone(s) of unsp ft, subs for fx w delay heal +C2867623|T037|AB|S92.209K|ICD10CM|Fx unsp tarsal bone(s) of unsp foot, subs for fx w nonunion|Fx unsp tarsal bone(s) of unsp foot, subs for fx w nonunion +C2867624|T037|AB|S92.209P|ICD10CM|Fx unsp tarsal bone(s) of unsp foot, subs for fx w malunion|Fx unsp tarsal bone(s) of unsp foot, subs for fx w malunion +C2867625|T037|AB|S92.209S|ICD10CM|Fracture of unsp tarsal bone(s) of unspecified foot, sequela|Fracture of unsp tarsal bone(s) of unspecified foot, sequela +C2867625|T037|PT|S92.209S|ICD10CM|Fracture of unspecified tarsal bone(s) of unspecified foot, sequela|Fracture of unspecified tarsal bone(s) of unspecified foot, sequela +C2867626|T037|AB|S92.21|ICD10CM|Fracture of cuboid bone|Fracture of cuboid bone +C2867626|T037|HT|S92.21|ICD10CM|Fracture of cuboid bone|Fracture of cuboid bone +C2867627|T037|AB|S92.211|ICD10CM|Displaced fracture of cuboid bone of right foot|Displaced fracture of cuboid bone of right foot +C2867627|T037|HT|S92.211|ICD10CM|Displaced fracture of cuboid bone of right foot|Displaced fracture of cuboid bone of right foot +C2867628|T037|AB|S92.211A|ICD10CM|Disp fx of cuboid bone of right foot, init for clos fx|Disp fx of cuboid bone of right foot, init for clos fx +C2867628|T037|PT|S92.211A|ICD10CM|Displaced fracture of cuboid bone of right foot, initial encounter for closed fracture|Displaced fracture of cuboid bone of right foot, initial encounter for closed fracture +C2867629|T037|AB|S92.211B|ICD10CM|Disp fx of cuboid bone of right foot, init for opn fx|Disp fx of cuboid bone of right foot, init for opn fx +C2867629|T037|PT|S92.211B|ICD10CM|Displaced fracture of cuboid bone of right foot, initial encounter for open fracture|Displaced fracture of cuboid bone of right foot, initial encounter for open fracture +C2867630|T037|AB|S92.211D|ICD10CM|Disp fx of cuboid bone of r foot, subs for fx w routn heal|Disp fx of cuboid bone of r foot, subs for fx w routn heal +C2867631|T037|AB|S92.211G|ICD10CM|Disp fx of cuboid bone of r foot, subs for fx w delay heal|Disp fx of cuboid bone of r foot, subs for fx w delay heal +C2867632|T037|AB|S92.211K|ICD10CM|Disp fx of cuboid bone of right foot, subs for fx w nonunion|Disp fx of cuboid bone of right foot, subs for fx w nonunion +C2867632|T037|PT|S92.211K|ICD10CM|Displaced fracture of cuboid bone of right foot, subsequent encounter for fracture with nonunion|Displaced fracture of cuboid bone of right foot, subsequent encounter for fracture with nonunion +C2867633|T037|AB|S92.211P|ICD10CM|Disp fx of cuboid bone of right foot, subs for fx w malunion|Disp fx of cuboid bone of right foot, subs for fx w malunion +C2867633|T037|PT|S92.211P|ICD10CM|Displaced fracture of cuboid bone of right foot, subsequent encounter for fracture with malunion|Displaced fracture of cuboid bone of right foot, subsequent encounter for fracture with malunion +C2867634|T037|PT|S92.211S|ICD10CM|Displaced fracture of cuboid bone of right foot, sequela|Displaced fracture of cuboid bone of right foot, sequela +C2867634|T037|AB|S92.211S|ICD10CM|Displaced fracture of cuboid bone of right foot, sequela|Displaced fracture of cuboid bone of right foot, sequela +C2867635|T037|AB|S92.212|ICD10CM|Displaced fracture of cuboid bone of left foot|Displaced fracture of cuboid bone of left foot +C2867635|T037|HT|S92.212|ICD10CM|Displaced fracture of cuboid bone of left foot|Displaced fracture of cuboid bone of left foot +C2867636|T037|AB|S92.212A|ICD10CM|Disp fx of cuboid bone of left foot, init for clos fx|Disp fx of cuboid bone of left foot, init for clos fx +C2867636|T037|PT|S92.212A|ICD10CM|Displaced fracture of cuboid bone of left foot, initial encounter for closed fracture|Displaced fracture of cuboid bone of left foot, initial encounter for closed fracture +C2867637|T037|AB|S92.212B|ICD10CM|Disp fx of cuboid bone of left foot, init for opn fx|Disp fx of cuboid bone of left foot, init for opn fx +C2867637|T037|PT|S92.212B|ICD10CM|Displaced fracture of cuboid bone of left foot, initial encounter for open fracture|Displaced fracture of cuboid bone of left foot, initial encounter for open fracture +C2867638|T037|AB|S92.212D|ICD10CM|Disp fx of cuboid bone of l foot, subs for fx w routn heal|Disp fx of cuboid bone of l foot, subs for fx w routn heal +C2867639|T037|AB|S92.212G|ICD10CM|Disp fx of cuboid bone of l foot, subs for fx w delay heal|Disp fx of cuboid bone of l foot, subs for fx w delay heal +C2867640|T037|AB|S92.212K|ICD10CM|Disp fx of cuboid bone of left foot, subs for fx w nonunion|Disp fx of cuboid bone of left foot, subs for fx w nonunion +C2867640|T037|PT|S92.212K|ICD10CM|Displaced fracture of cuboid bone of left foot, subsequent encounter for fracture with nonunion|Displaced fracture of cuboid bone of left foot, subsequent encounter for fracture with nonunion +C2867641|T037|AB|S92.212P|ICD10CM|Disp fx of cuboid bone of left foot, subs for fx w malunion|Disp fx of cuboid bone of left foot, subs for fx w malunion +C2867641|T037|PT|S92.212P|ICD10CM|Displaced fracture of cuboid bone of left foot, subsequent encounter for fracture with malunion|Displaced fracture of cuboid bone of left foot, subsequent encounter for fracture with malunion +C2867642|T037|PT|S92.212S|ICD10CM|Displaced fracture of cuboid bone of left foot, sequela|Displaced fracture of cuboid bone of left foot, sequela +C2867642|T037|AB|S92.212S|ICD10CM|Displaced fracture of cuboid bone of left foot, sequela|Displaced fracture of cuboid bone of left foot, sequela +C2867643|T037|AB|S92.213|ICD10CM|Displaced fracture of cuboid bone of unspecified foot|Displaced fracture of cuboid bone of unspecified foot +C2867643|T037|HT|S92.213|ICD10CM|Displaced fracture of cuboid bone of unspecified foot|Displaced fracture of cuboid bone of unspecified foot +C2867644|T037|AB|S92.213A|ICD10CM|Disp fx of cuboid bone of unsp foot, init for clos fx|Disp fx of cuboid bone of unsp foot, init for clos fx +C2867644|T037|PT|S92.213A|ICD10CM|Displaced fracture of cuboid bone of unspecified foot, initial encounter for closed fracture|Displaced fracture of cuboid bone of unspecified foot, initial encounter for closed fracture +C2867645|T037|AB|S92.213B|ICD10CM|Disp fx of cuboid bone of unsp foot, init for opn fx|Disp fx of cuboid bone of unsp foot, init for opn fx +C2867645|T037|PT|S92.213B|ICD10CM|Displaced fracture of cuboid bone of unspecified foot, initial encounter for open fracture|Displaced fracture of cuboid bone of unspecified foot, initial encounter for open fracture +C2867646|T037|AB|S92.213D|ICD10CM|Disp fx of cuboid bone of unsp ft, subs for fx w routn heal|Disp fx of cuboid bone of unsp ft, subs for fx w routn heal +C2867647|T037|AB|S92.213G|ICD10CM|Disp fx of cuboid bone of unsp ft, subs for fx w delay heal|Disp fx of cuboid bone of unsp ft, subs for fx w delay heal +C2867648|T037|AB|S92.213K|ICD10CM|Disp fx of cuboid bone of unsp foot, subs for fx w nonunion|Disp fx of cuboid bone of unsp foot, subs for fx w nonunion +C2867649|T037|AB|S92.213P|ICD10CM|Disp fx of cuboid bone of unsp foot, subs for fx w malunion|Disp fx of cuboid bone of unsp foot, subs for fx w malunion +C2867650|T037|AB|S92.213S|ICD10CM|Disp fx of cuboid bone of unspecified foot, sequela|Disp fx of cuboid bone of unspecified foot, sequela +C2867650|T037|PT|S92.213S|ICD10CM|Displaced fracture of cuboid bone of unspecified foot, sequela|Displaced fracture of cuboid bone of unspecified foot, sequela +C2867651|T037|AB|S92.214|ICD10CM|Nondisplaced fracture of cuboid bone of right foot|Nondisplaced fracture of cuboid bone of right foot +C2867651|T037|HT|S92.214|ICD10CM|Nondisplaced fracture of cuboid bone of right foot|Nondisplaced fracture of cuboid bone of right foot +C2867652|T037|AB|S92.214A|ICD10CM|Nondisp fx of cuboid bone of right foot, init for clos fx|Nondisp fx of cuboid bone of right foot, init for clos fx +C2867652|T037|PT|S92.214A|ICD10CM|Nondisplaced fracture of cuboid bone of right foot, initial encounter for closed fracture|Nondisplaced fracture of cuboid bone of right foot, initial encounter for closed fracture +C2867653|T037|AB|S92.214B|ICD10CM|Nondisp fx of cuboid bone of right foot, init for opn fx|Nondisp fx of cuboid bone of right foot, init for opn fx +C2867653|T037|PT|S92.214B|ICD10CM|Nondisplaced fracture of cuboid bone of right foot, initial encounter for open fracture|Nondisplaced fracture of cuboid bone of right foot, initial encounter for open fracture +C2867654|T037|AB|S92.214D|ICD10CM|Nondisp fx of cuboid bone of r ft, subs for fx w routn heal|Nondisp fx of cuboid bone of r ft, subs for fx w routn heal +C2867655|T037|AB|S92.214G|ICD10CM|Nondisp fx of cuboid bone of r ft, subs for fx w delay heal|Nondisp fx of cuboid bone of r ft, subs for fx w delay heal +C2867656|T037|AB|S92.214K|ICD10CM|Nondisp fx of cuboid bone of r foot, subs for fx w nonunion|Nondisp fx of cuboid bone of r foot, subs for fx w nonunion +C2867656|T037|PT|S92.214K|ICD10CM|Nondisplaced fracture of cuboid bone of right foot, subsequent encounter for fracture with nonunion|Nondisplaced fracture of cuboid bone of right foot, subsequent encounter for fracture with nonunion +C2867657|T037|AB|S92.214P|ICD10CM|Nondisp fx of cuboid bone of r foot, subs for fx w malunion|Nondisp fx of cuboid bone of r foot, subs for fx w malunion +C2867657|T037|PT|S92.214P|ICD10CM|Nondisplaced fracture of cuboid bone of right foot, subsequent encounter for fracture with malunion|Nondisplaced fracture of cuboid bone of right foot, subsequent encounter for fracture with malunion +C2867658|T037|PT|S92.214S|ICD10CM|Nondisplaced fracture of cuboid bone of right foot, sequela|Nondisplaced fracture of cuboid bone of right foot, sequela +C2867658|T037|AB|S92.214S|ICD10CM|Nondisplaced fracture of cuboid bone of right foot, sequela|Nondisplaced fracture of cuboid bone of right foot, sequela +C2867659|T037|AB|S92.215|ICD10CM|Nondisplaced fracture of cuboid bone of left foot|Nondisplaced fracture of cuboid bone of left foot +C2867659|T037|HT|S92.215|ICD10CM|Nondisplaced fracture of cuboid bone of left foot|Nondisplaced fracture of cuboid bone of left foot +C2867660|T037|AB|S92.215A|ICD10CM|Nondisp fx of cuboid bone of left foot, init for clos fx|Nondisp fx of cuboid bone of left foot, init for clos fx +C2867660|T037|PT|S92.215A|ICD10CM|Nondisplaced fracture of cuboid bone of left foot, initial encounter for closed fracture|Nondisplaced fracture of cuboid bone of left foot, initial encounter for closed fracture +C2867661|T037|AB|S92.215B|ICD10CM|Nondisp fx of cuboid bone of left foot, init for opn fx|Nondisp fx of cuboid bone of left foot, init for opn fx +C2867661|T037|PT|S92.215B|ICD10CM|Nondisplaced fracture of cuboid bone of left foot, initial encounter for open fracture|Nondisplaced fracture of cuboid bone of left foot, initial encounter for open fracture +C2867662|T037|AB|S92.215D|ICD10CM|Nondisp fx of cuboid bone of l ft, subs for fx w routn heal|Nondisp fx of cuboid bone of l ft, subs for fx w routn heal +C2867663|T037|AB|S92.215G|ICD10CM|Nondisp fx of cuboid bone of l ft, subs for fx w delay heal|Nondisp fx of cuboid bone of l ft, subs for fx w delay heal +C2867664|T037|AB|S92.215K|ICD10CM|Nondisp fx of cuboid bone of l foot, subs for fx w nonunion|Nondisp fx of cuboid bone of l foot, subs for fx w nonunion +C2867664|T037|PT|S92.215K|ICD10CM|Nondisplaced fracture of cuboid bone of left foot, subsequent encounter for fracture with nonunion|Nondisplaced fracture of cuboid bone of left foot, subsequent encounter for fracture with nonunion +C2867665|T037|AB|S92.215P|ICD10CM|Nondisp fx of cuboid bone of l foot, subs for fx w malunion|Nondisp fx of cuboid bone of l foot, subs for fx w malunion +C2867665|T037|PT|S92.215P|ICD10CM|Nondisplaced fracture of cuboid bone of left foot, subsequent encounter for fracture with malunion|Nondisplaced fracture of cuboid bone of left foot, subsequent encounter for fracture with malunion +C2867666|T037|PT|S92.215S|ICD10CM|Nondisplaced fracture of cuboid bone of left foot, sequela|Nondisplaced fracture of cuboid bone of left foot, sequela +C2867666|T037|AB|S92.215S|ICD10CM|Nondisplaced fracture of cuboid bone of left foot, sequela|Nondisplaced fracture of cuboid bone of left foot, sequela +C2867667|T037|AB|S92.216|ICD10CM|Nondisplaced fracture of cuboid bone of unspecified foot|Nondisplaced fracture of cuboid bone of unspecified foot +C2867667|T037|HT|S92.216|ICD10CM|Nondisplaced fracture of cuboid bone of unspecified foot|Nondisplaced fracture of cuboid bone of unspecified foot +C2867668|T037|AB|S92.216A|ICD10CM|Nondisp fx of cuboid bone of unsp foot, init for clos fx|Nondisp fx of cuboid bone of unsp foot, init for clos fx +C2867668|T037|PT|S92.216A|ICD10CM|Nondisplaced fracture of cuboid bone of unspecified foot, initial encounter for closed fracture|Nondisplaced fracture of cuboid bone of unspecified foot, initial encounter for closed fracture +C2867669|T037|AB|S92.216B|ICD10CM|Nondisp fx of cuboid bone of unsp foot, init for opn fx|Nondisp fx of cuboid bone of unsp foot, init for opn fx +C2867669|T037|PT|S92.216B|ICD10CM|Nondisplaced fracture of cuboid bone of unspecified foot, initial encounter for open fracture|Nondisplaced fracture of cuboid bone of unspecified foot, initial encounter for open fracture +C2867670|T037|AB|S92.216D|ICD10CM|Nondisp fx of cuboid bone of unsp ft, 7thD|Nondisp fx of cuboid bone of unsp ft, 7thD +C2867671|T037|AB|S92.216G|ICD10CM|Nondisp fx of cuboid bone of unsp ft, 7thG|Nondisp fx of cuboid bone of unsp ft, 7thG +C2867672|T037|AB|S92.216K|ICD10CM|Nondisp fx of cuboid bone of unsp ft, subs for fx w nonunion|Nondisp fx of cuboid bone of unsp ft, subs for fx w nonunion +C2867673|T037|AB|S92.216P|ICD10CM|Nondisp fx of cuboid bone of unsp ft, subs for fx w malunion|Nondisp fx of cuboid bone of unsp ft, subs for fx w malunion +C2867674|T037|AB|S92.216S|ICD10CM|Nondisp fx of cuboid bone of unspecified foot, sequela|Nondisp fx of cuboid bone of unspecified foot, sequela +C2867674|T037|PT|S92.216S|ICD10CM|Nondisplaced fracture of cuboid bone of unspecified foot, sequela|Nondisplaced fracture of cuboid bone of unspecified foot, sequela +C2867675|T037|HT|S92.22|ICD10CM|Fracture of lateral cuneiform|Fracture of lateral cuneiform +C2867675|T037|AB|S92.22|ICD10CM|Fracture of lateral cuneiform|Fracture of lateral cuneiform +C2867676|T037|AB|S92.221|ICD10CM|Displaced fracture of lateral cuneiform of right foot|Displaced fracture of lateral cuneiform of right foot +C2867676|T037|HT|S92.221|ICD10CM|Displaced fracture of lateral cuneiform of right foot|Displaced fracture of lateral cuneiform of right foot +C2867677|T037|AB|S92.221A|ICD10CM|Disp fx of lateral cuneiform of right foot, init for clos fx|Disp fx of lateral cuneiform of right foot, init for clos fx +C2867677|T037|PT|S92.221A|ICD10CM|Displaced fracture of lateral cuneiform of right foot, initial encounter for closed fracture|Displaced fracture of lateral cuneiform of right foot, initial encounter for closed fracture +C2867678|T037|AB|S92.221B|ICD10CM|Disp fx of lateral cuneiform of right foot, init for opn fx|Disp fx of lateral cuneiform of right foot, init for opn fx +C2867678|T037|PT|S92.221B|ICD10CM|Displaced fracture of lateral cuneiform of right foot, initial encounter for open fracture|Displaced fracture of lateral cuneiform of right foot, initial encounter for open fracture +C2867679|T037|AB|S92.221D|ICD10CM|Disp fx of lateral cuneiform of r ft, 7thD|Disp fx of lateral cuneiform of r ft, 7thD +C2867680|T037|AB|S92.221G|ICD10CM|Disp fx of lateral cuneiform of r ft, 7thG|Disp fx of lateral cuneiform of r ft, 7thG +C2867681|T037|AB|S92.221K|ICD10CM|Disp fx of lateral cuneiform of r ft, subs for fx w nonunion|Disp fx of lateral cuneiform of r ft, subs for fx w nonunion +C2867682|T037|AB|S92.221P|ICD10CM|Disp fx of lateral cuneiform of r ft, subs for fx w malunion|Disp fx of lateral cuneiform of r ft, subs for fx w malunion +C2867683|T037|AB|S92.221S|ICD10CM|Disp fx of lateral cuneiform of right foot, sequela|Disp fx of lateral cuneiform of right foot, sequela +C2867683|T037|PT|S92.221S|ICD10CM|Displaced fracture of lateral cuneiform of right foot, sequela|Displaced fracture of lateral cuneiform of right foot, sequela +C2867684|T037|AB|S92.222|ICD10CM|Displaced fracture of lateral cuneiform of left foot|Displaced fracture of lateral cuneiform of left foot +C2867684|T037|HT|S92.222|ICD10CM|Displaced fracture of lateral cuneiform of left foot|Displaced fracture of lateral cuneiform of left foot +C2867685|T037|AB|S92.222A|ICD10CM|Disp fx of lateral cuneiform of left foot, init for clos fx|Disp fx of lateral cuneiform of left foot, init for clos fx +C2867685|T037|PT|S92.222A|ICD10CM|Displaced fracture of lateral cuneiform of left foot, initial encounter for closed fracture|Displaced fracture of lateral cuneiform of left foot, initial encounter for closed fracture +C2867686|T037|AB|S92.222B|ICD10CM|Disp fx of lateral cuneiform of left foot, init for opn fx|Disp fx of lateral cuneiform of left foot, init for opn fx +C2867686|T037|PT|S92.222B|ICD10CM|Displaced fracture of lateral cuneiform of left foot, initial encounter for open fracture|Displaced fracture of lateral cuneiform of left foot, initial encounter for open fracture +C2867687|T037|AB|S92.222D|ICD10CM|Disp fx of lateral cuneiform of l ft, 7thD|Disp fx of lateral cuneiform of l ft, 7thD +C2867688|T037|AB|S92.222G|ICD10CM|Disp fx of lateral cuneiform of l ft, 7thG|Disp fx of lateral cuneiform of l ft, 7thG +C2867689|T037|AB|S92.222K|ICD10CM|Disp fx of lateral cuneiform of l ft, subs for fx w nonunion|Disp fx of lateral cuneiform of l ft, subs for fx w nonunion +C2867690|T037|AB|S92.222P|ICD10CM|Disp fx of lateral cuneiform of l ft, subs for fx w malunion|Disp fx of lateral cuneiform of l ft, subs for fx w malunion +C2867691|T037|AB|S92.222S|ICD10CM|Disp fx of lateral cuneiform of left foot, sequela|Disp fx of lateral cuneiform of left foot, sequela +C2867691|T037|PT|S92.222S|ICD10CM|Displaced fracture of lateral cuneiform of left foot, sequela|Displaced fracture of lateral cuneiform of left foot, sequela +C2867692|T037|AB|S92.223|ICD10CM|Displaced fracture of lateral cuneiform of unspecified foot|Displaced fracture of lateral cuneiform of unspecified foot +C2867692|T037|HT|S92.223|ICD10CM|Displaced fracture of lateral cuneiform of unspecified foot|Displaced fracture of lateral cuneiform of unspecified foot +C2867693|T037|AB|S92.223A|ICD10CM|Disp fx of lateral cuneiform of unsp foot, init for clos fx|Disp fx of lateral cuneiform of unsp foot, init for clos fx +C2867693|T037|PT|S92.223A|ICD10CM|Displaced fracture of lateral cuneiform of unspecified foot, initial encounter for closed fracture|Displaced fracture of lateral cuneiform of unspecified foot, initial encounter for closed fracture +C2867694|T037|AB|S92.223B|ICD10CM|Disp fx of lateral cuneiform of unsp foot, init for opn fx|Disp fx of lateral cuneiform of unsp foot, init for opn fx +C2867694|T037|PT|S92.223B|ICD10CM|Displaced fracture of lateral cuneiform of unspecified foot, initial encounter for open fracture|Displaced fracture of lateral cuneiform of unspecified foot, initial encounter for open fracture +C2867695|T037|AB|S92.223D|ICD10CM|Disp fx of lateral cuneiform of unsp ft, 7thD|Disp fx of lateral cuneiform of unsp ft, 7thD +C2867696|T037|AB|S92.223G|ICD10CM|Disp fx of lateral cuneiform of unsp ft, 7thG|Disp fx of lateral cuneiform of unsp ft, 7thG +C2867697|T037|AB|S92.223K|ICD10CM|Disp fx of lateral cuneiform of unsp ft, 7thK|Disp fx of lateral cuneiform of unsp ft, 7thK +C2867698|T037|AB|S92.223P|ICD10CM|Disp fx of lateral cuneiform of unsp ft, 7thP|Disp fx of lateral cuneiform of unsp ft, 7thP +C2867699|T037|AB|S92.223S|ICD10CM|Disp fx of lateral cuneiform of unspecified foot, sequela|Disp fx of lateral cuneiform of unspecified foot, sequela +C2867699|T037|PT|S92.223S|ICD10CM|Displaced fracture of lateral cuneiform of unspecified foot, sequela|Displaced fracture of lateral cuneiform of unspecified foot, sequela +C2867700|T037|AB|S92.224|ICD10CM|Nondisplaced fracture of lateral cuneiform of right foot|Nondisplaced fracture of lateral cuneiform of right foot +C2867700|T037|HT|S92.224|ICD10CM|Nondisplaced fracture of lateral cuneiform of right foot|Nondisplaced fracture of lateral cuneiform of right foot +C2867701|T037|AB|S92.224A|ICD10CM|Nondisp fx of lateral cuneiform of right foot, init|Nondisp fx of lateral cuneiform of right foot, init +C2867701|T037|PT|S92.224A|ICD10CM|Nondisplaced fracture of lateral cuneiform of right foot, initial encounter for closed fracture|Nondisplaced fracture of lateral cuneiform of right foot, initial encounter for closed fracture +C2867702|T037|AB|S92.224B|ICD10CM|Nondisp fx of lateral cuneiform of r foot, init for opn fx|Nondisp fx of lateral cuneiform of r foot, init for opn fx +C2867702|T037|PT|S92.224B|ICD10CM|Nondisplaced fracture of lateral cuneiform of right foot, initial encounter for open fracture|Nondisplaced fracture of lateral cuneiform of right foot, initial encounter for open fracture +C2867703|T037|AB|S92.224D|ICD10CM|Nondisp fx of lateral cuneiform of r ft, 7thD|Nondisp fx of lateral cuneiform of r ft, 7thD +C2867704|T037|AB|S92.224G|ICD10CM|Nondisp fx of lateral cuneiform of r ft, 7thG|Nondisp fx of lateral cuneiform of r ft, 7thG +C2867705|T037|AB|S92.224K|ICD10CM|Nondisp fx of lateral cuneiform of r ft, 7thK|Nondisp fx of lateral cuneiform of r ft, 7thK +C2867706|T037|AB|S92.224P|ICD10CM|Nondisp fx of lateral cuneiform of r ft, 7thP|Nondisp fx of lateral cuneiform of r ft, 7thP +C2867707|T037|AB|S92.224S|ICD10CM|Nondisp fx of lateral cuneiform of right foot, sequela|Nondisp fx of lateral cuneiform of right foot, sequela +C2867707|T037|PT|S92.224S|ICD10CM|Nondisplaced fracture of lateral cuneiform of right foot, sequela|Nondisplaced fracture of lateral cuneiform of right foot, sequela +C2867708|T037|AB|S92.225|ICD10CM|Nondisplaced fracture of lateral cuneiform of left foot|Nondisplaced fracture of lateral cuneiform of left foot +C2867708|T037|HT|S92.225|ICD10CM|Nondisplaced fracture of lateral cuneiform of left foot|Nondisplaced fracture of lateral cuneiform of left foot +C2867709|T037|AB|S92.225A|ICD10CM|Nondisp fx of lateral cuneiform of left foot, init|Nondisp fx of lateral cuneiform of left foot, init +C2867709|T037|PT|S92.225A|ICD10CM|Nondisplaced fracture of lateral cuneiform of left foot, initial encounter for closed fracture|Nondisplaced fracture of lateral cuneiform of left foot, initial encounter for closed fracture +C2867710|T037|AB|S92.225B|ICD10CM|Nondisp fx of lateral cuneiform of l foot, init for opn fx|Nondisp fx of lateral cuneiform of l foot, init for opn fx +C2867710|T037|PT|S92.225B|ICD10CM|Nondisplaced fracture of lateral cuneiform of left foot, initial encounter for open fracture|Nondisplaced fracture of lateral cuneiform of left foot, initial encounter for open fracture +C2867711|T037|AB|S92.225D|ICD10CM|Nondisp fx of lateral cuneiform of l ft, 7thD|Nondisp fx of lateral cuneiform of l ft, 7thD +C2867712|T037|AB|S92.225G|ICD10CM|Nondisp fx of lateral cuneiform of l ft, 7thG|Nondisp fx of lateral cuneiform of l ft, 7thG +C2867713|T037|AB|S92.225K|ICD10CM|Nondisp fx of lateral cuneiform of l ft, 7thK|Nondisp fx of lateral cuneiform of l ft, 7thK +C2867714|T037|AB|S92.225P|ICD10CM|Nondisp fx of lateral cuneiform of l ft, 7thP|Nondisp fx of lateral cuneiform of l ft, 7thP +C2867715|T037|AB|S92.225S|ICD10CM|Nondisp fx of lateral cuneiform of left foot, sequela|Nondisp fx of lateral cuneiform of left foot, sequela +C2867715|T037|PT|S92.225S|ICD10CM|Nondisplaced fracture of lateral cuneiform of left foot, sequela|Nondisplaced fracture of lateral cuneiform of left foot, sequela +C2867716|T037|AB|S92.226|ICD10CM|Nondisp fx of lateral cuneiform of unspecified foot|Nondisp fx of lateral cuneiform of unspecified foot +C2867716|T037|HT|S92.226|ICD10CM|Nondisplaced fracture of lateral cuneiform of unspecified foot|Nondisplaced fracture of lateral cuneiform of unspecified foot +C2867717|T037|AB|S92.226A|ICD10CM|Nondisp fx of lateral cuneiform of unsp foot, init|Nondisp fx of lateral cuneiform of unsp foot, init +C2867718|T037|AB|S92.226B|ICD10CM|Nondisp fx of lateral cuneiform of unsp ft, init for opn fx|Nondisp fx of lateral cuneiform of unsp ft, init for opn fx +C2867718|T037|PT|S92.226B|ICD10CM|Nondisplaced fracture of lateral cuneiform of unspecified foot, initial encounter for open fracture|Nondisplaced fracture of lateral cuneiform of unspecified foot, initial encounter for open fracture +C2867719|T037|AB|S92.226D|ICD10CM|Nondisp fx of lateral cuneiform of unsp ft, 7thD|Nondisp fx of lateral cuneiform of unsp ft, 7thD +C2867720|T037|AB|S92.226G|ICD10CM|Nondisp fx of lateral cuneiform of unsp ft, 7thG|Nondisp fx of lateral cuneiform of unsp ft, 7thG +C2867721|T037|AB|S92.226K|ICD10CM|Nondisp fx of lateral cuneiform of unsp ft, 7thK|Nondisp fx of lateral cuneiform of unsp ft, 7thK +C2867722|T037|AB|S92.226P|ICD10CM|Nondisp fx of lateral cuneiform of unsp ft, 7thP|Nondisp fx of lateral cuneiform of unsp ft, 7thP +C2867723|T037|AB|S92.226S|ICD10CM|Nondisp fx of lateral cuneiform of unspecified foot, sequela|Nondisp fx of lateral cuneiform of unspecified foot, sequela +C2867723|T037|PT|S92.226S|ICD10CM|Nondisplaced fracture of lateral cuneiform of unspecified foot, sequela|Nondisplaced fracture of lateral cuneiform of unspecified foot, sequela +C2867724|T037|HT|S92.23|ICD10CM|Fracture of intermediate cuneiform|Fracture of intermediate cuneiform +C2867724|T037|AB|S92.23|ICD10CM|Fracture of intermediate cuneiform|Fracture of intermediate cuneiform +C2867725|T037|AB|S92.231|ICD10CM|Displaced fracture of intermediate cuneiform of right foot|Displaced fracture of intermediate cuneiform of right foot +C2867725|T037|HT|S92.231|ICD10CM|Displaced fracture of intermediate cuneiform of right foot|Displaced fracture of intermediate cuneiform of right foot +C2867726|T037|AB|S92.231A|ICD10CM|Disp fx of intermediate cuneiform of right foot, init|Disp fx of intermediate cuneiform of right foot, init +C2867726|T037|PT|S92.231A|ICD10CM|Displaced fracture of intermediate cuneiform of right foot, initial encounter for closed fracture|Displaced fracture of intermediate cuneiform of right foot, initial encounter for closed fracture +C2867727|T037|AB|S92.231B|ICD10CM|Disp fx of intermed cuneiform of right foot, init for opn fx|Disp fx of intermed cuneiform of right foot, init for opn fx +C2867727|T037|PT|S92.231B|ICD10CM|Displaced fracture of intermediate cuneiform of right foot, initial encounter for open fracture|Displaced fracture of intermediate cuneiform of right foot, initial encounter for open fracture +C2867728|T037|AB|S92.231D|ICD10CM|Disp fx of intermed cuneiform of r ft, 7thD|Disp fx of intermed cuneiform of r ft, 7thD +C2867729|T037|AB|S92.231G|ICD10CM|Disp fx of intermed cuneiform of r ft, 7thG|Disp fx of intermed cuneiform of r ft, 7thG +C2867730|T037|AB|S92.231K|ICD10CM|Disp fx of intermed cuneiform of r ft, 7thK|Disp fx of intermed cuneiform of r ft, 7thK +C2867731|T037|AB|S92.231P|ICD10CM|Disp fx of intermed cuneiform of r ft, 7thP|Disp fx of intermed cuneiform of r ft, 7thP +C2867732|T037|AB|S92.231S|ICD10CM|Disp fx of intermediate cuneiform of right foot, sequela|Disp fx of intermediate cuneiform of right foot, sequela +C2867732|T037|PT|S92.231S|ICD10CM|Displaced fracture of intermediate cuneiform of right foot, sequela|Displaced fracture of intermediate cuneiform of right foot, sequela +C2867733|T037|AB|S92.232|ICD10CM|Displaced fracture of intermediate cuneiform of left foot|Displaced fracture of intermediate cuneiform of left foot +C2867733|T037|HT|S92.232|ICD10CM|Displaced fracture of intermediate cuneiform of left foot|Displaced fracture of intermediate cuneiform of left foot +C2867734|T037|AB|S92.232A|ICD10CM|Disp fx of intermediate cuneiform of left foot, init|Disp fx of intermediate cuneiform of left foot, init +C2867734|T037|PT|S92.232A|ICD10CM|Displaced fracture of intermediate cuneiform of left foot, initial encounter for closed fracture|Displaced fracture of intermediate cuneiform of left foot, initial encounter for closed fracture +C2867735|T037|AB|S92.232B|ICD10CM|Disp fx of intermed cuneiform of left foot, init for opn fx|Disp fx of intermed cuneiform of left foot, init for opn fx +C2867735|T037|PT|S92.232B|ICD10CM|Displaced fracture of intermediate cuneiform of left foot, initial encounter for open fracture|Displaced fracture of intermediate cuneiform of left foot, initial encounter for open fracture +C2867736|T037|AB|S92.232D|ICD10CM|Disp fx of intermed cuneiform of l ft, 7thD|Disp fx of intermed cuneiform of l ft, 7thD +C2867737|T037|AB|S92.232G|ICD10CM|Disp fx of intermed cuneiform of l ft, 7thG|Disp fx of intermed cuneiform of l ft, 7thG +C2867738|T037|AB|S92.232K|ICD10CM|Disp fx of intermed cuneiform of l ft, 7thK|Disp fx of intermed cuneiform of l ft, 7thK +C2867739|T037|AB|S92.232P|ICD10CM|Disp fx of intermed cuneiform of l ft, 7thP|Disp fx of intermed cuneiform of l ft, 7thP +C2867740|T037|AB|S92.232S|ICD10CM|Disp fx of intermediate cuneiform of left foot, sequela|Disp fx of intermediate cuneiform of left foot, sequela +C2867740|T037|PT|S92.232S|ICD10CM|Displaced fracture of intermediate cuneiform of left foot, sequela|Displaced fracture of intermediate cuneiform of left foot, sequela +C2867741|T037|AB|S92.233|ICD10CM|Disp fx of intermediate cuneiform of unspecified foot|Disp fx of intermediate cuneiform of unspecified foot +C2867741|T037|HT|S92.233|ICD10CM|Displaced fracture of intermediate cuneiform of unspecified foot|Displaced fracture of intermediate cuneiform of unspecified foot +C2867742|T037|AB|S92.233A|ICD10CM|Disp fx of intermediate cuneiform of unsp foot, init|Disp fx of intermediate cuneiform of unsp foot, init +C2867743|T037|AB|S92.233B|ICD10CM|Disp fx of intermed cuneiform of unsp foot, init for opn fx|Disp fx of intermed cuneiform of unsp foot, init for opn fx +C2867744|T037|AB|S92.233D|ICD10CM|Disp fx of intermed cuneiform of unsp ft, 7thD|Disp fx of intermed cuneiform of unsp ft, 7thD +C2867745|T037|AB|S92.233G|ICD10CM|Disp fx of intermed cuneiform of unsp ft, 7thG|Disp fx of intermed cuneiform of unsp ft, 7thG +C2867746|T037|AB|S92.233K|ICD10CM|Disp fx of intermed cuneiform of unsp ft, 7thK|Disp fx of intermed cuneiform of unsp ft, 7thK +C2867747|T037|AB|S92.233P|ICD10CM|Disp fx of intermed cuneiform of unsp ft, 7thP|Disp fx of intermed cuneiform of unsp ft, 7thP +C2867748|T037|AB|S92.233S|ICD10CM|Disp fx of intermediate cuneiform of unsp foot, sequela|Disp fx of intermediate cuneiform of unsp foot, sequela +C2867748|T037|PT|S92.233S|ICD10CM|Displaced fracture of intermediate cuneiform of unspecified foot, sequela|Displaced fracture of intermediate cuneiform of unspecified foot, sequela +C2867749|T037|AB|S92.234|ICD10CM|Nondisp fx of intermediate cuneiform of right foot|Nondisp fx of intermediate cuneiform of right foot +C2867749|T037|HT|S92.234|ICD10CM|Nondisplaced fracture of intermediate cuneiform of right foot|Nondisplaced fracture of intermediate cuneiform of right foot +C2867750|T037|AB|S92.234A|ICD10CM|Nondisp fx of intermediate cuneiform of right foot, init|Nondisp fx of intermediate cuneiform of right foot, init +C2867750|T037|PT|S92.234A|ICD10CM|Nondisplaced fracture of intermediate cuneiform of right foot, initial encounter for closed fracture|Nondisplaced fracture of intermediate cuneiform of right foot, initial encounter for closed fracture +C2867751|T037|AB|S92.234B|ICD10CM|Nondisp fx of intermed cuneiform of r foot, init for opn fx|Nondisp fx of intermed cuneiform of r foot, init for opn fx +C2867751|T037|PT|S92.234B|ICD10CM|Nondisplaced fracture of intermediate cuneiform of right foot, initial encounter for open fracture|Nondisplaced fracture of intermediate cuneiform of right foot, initial encounter for open fracture +C2867752|T037|AB|S92.234D|ICD10CM|Nondisp fx of intermed cuneiform of r ft, 7thD|Nondisp fx of intermed cuneiform of r ft, 7thD +C2867753|T037|AB|S92.234G|ICD10CM|Nondisp fx of intermed cuneiform of r ft, 7thG|Nondisp fx of intermed cuneiform of r ft, 7thG +C2867754|T037|AB|S92.234K|ICD10CM|Nondisp fx of intermed cuneiform of r ft, 7thK|Nondisp fx of intermed cuneiform of r ft, 7thK +C2867755|T037|AB|S92.234P|ICD10CM|Nondisp fx of intermed cuneiform of r ft, 7thP|Nondisp fx of intermed cuneiform of r ft, 7thP +C2867756|T037|AB|S92.234S|ICD10CM|Nondisp fx of intermediate cuneiform of right foot, sequela|Nondisp fx of intermediate cuneiform of right foot, sequela +C2867756|T037|PT|S92.234S|ICD10CM|Nondisplaced fracture of intermediate cuneiform of right foot, sequela|Nondisplaced fracture of intermediate cuneiform of right foot, sequela +C2867757|T037|AB|S92.235|ICD10CM|Nondisplaced fracture of intermediate cuneiform of left foot|Nondisplaced fracture of intermediate cuneiform of left foot +C2867757|T037|HT|S92.235|ICD10CM|Nondisplaced fracture of intermediate cuneiform of left foot|Nondisplaced fracture of intermediate cuneiform of left foot +C2867758|T037|AB|S92.235A|ICD10CM|Nondisp fx of intermediate cuneiform of left foot, init|Nondisp fx of intermediate cuneiform of left foot, init +C2867758|T037|PT|S92.235A|ICD10CM|Nondisplaced fracture of intermediate cuneiform of left foot, initial encounter for closed fracture|Nondisplaced fracture of intermediate cuneiform of left foot, initial encounter for closed fracture +C2867759|T037|AB|S92.235B|ICD10CM|Nondisp fx of intermed cuneiform of l foot, init for opn fx|Nondisp fx of intermed cuneiform of l foot, init for opn fx +C2867759|T037|PT|S92.235B|ICD10CM|Nondisplaced fracture of intermediate cuneiform of left foot, initial encounter for open fracture|Nondisplaced fracture of intermediate cuneiform of left foot, initial encounter for open fracture +C2867760|T037|AB|S92.235D|ICD10CM|Nondisp fx of intermed cuneiform of l ft, 7thD|Nondisp fx of intermed cuneiform of l ft, 7thD +C2867761|T037|AB|S92.235G|ICD10CM|Nondisp fx of intermed cuneiform of l ft, 7thG|Nondisp fx of intermed cuneiform of l ft, 7thG +C2867762|T037|AB|S92.235K|ICD10CM|Nondisp fx of intermed cuneiform of l ft, 7thK|Nondisp fx of intermed cuneiform of l ft, 7thK +C2867763|T037|AB|S92.235P|ICD10CM|Nondisp fx of intermed cuneiform of l ft, 7thP|Nondisp fx of intermed cuneiform of l ft, 7thP +C2867764|T037|AB|S92.235S|ICD10CM|Nondisp fx of intermediate cuneiform of left foot, sequela|Nondisp fx of intermediate cuneiform of left foot, sequela +C2867764|T037|PT|S92.235S|ICD10CM|Nondisplaced fracture of intermediate cuneiform of left foot, sequela|Nondisplaced fracture of intermediate cuneiform of left foot, sequela +C2867765|T037|AB|S92.236|ICD10CM|Nondisp fx of intermediate cuneiform of unspecified foot|Nondisp fx of intermediate cuneiform of unspecified foot +C2867765|T037|HT|S92.236|ICD10CM|Nondisplaced fracture of intermediate cuneiform of unspecified foot|Nondisplaced fracture of intermediate cuneiform of unspecified foot +C2867766|T037|AB|S92.236A|ICD10CM|Nondisp fx of intermediate cuneiform of unsp foot, init|Nondisp fx of intermediate cuneiform of unsp foot, init +C2867767|T037|AB|S92.236B|ICD10CM|Nondisp fx of intermed cuneiform of unsp ft, init for opn fx|Nondisp fx of intermed cuneiform of unsp ft, init for opn fx +C2867768|T037|AB|S92.236D|ICD10CM|Nondisp fx of intermed cuneiform of unsp ft, 7thD|Nondisp fx of intermed cuneiform of unsp ft, 7thD +C2867769|T037|AB|S92.236G|ICD10CM|Nondisp fx of intermed cuneiform of unsp ft, 7thG|Nondisp fx of intermed cuneiform of unsp ft, 7thG +C2867770|T037|AB|S92.236K|ICD10CM|Nondisp fx of intermed cuneiform of unsp ft, 7thK|Nondisp fx of intermed cuneiform of unsp ft, 7thK +C2867771|T037|AB|S92.236P|ICD10CM|Nondisp fx of intermed cuneiform of unsp ft, 7thP|Nondisp fx of intermed cuneiform of unsp ft, 7thP +C2867772|T037|AB|S92.236S|ICD10CM|Nondisp fx of intermediate cuneiform of unsp foot, sequela|Nondisp fx of intermediate cuneiform of unsp foot, sequela +C2867772|T037|PT|S92.236S|ICD10CM|Nondisplaced fracture of intermediate cuneiform of unspecified foot, sequela|Nondisplaced fracture of intermediate cuneiform of unspecified foot, sequela +C2867773|T037|HT|S92.24|ICD10CM|Fracture of medial cuneiform|Fracture of medial cuneiform +C2867773|T037|AB|S92.24|ICD10CM|Fracture of medial cuneiform|Fracture of medial cuneiform +C2867774|T037|AB|S92.241|ICD10CM|Displaced fracture of medial cuneiform of right foot|Displaced fracture of medial cuneiform of right foot +C2867774|T037|HT|S92.241|ICD10CM|Displaced fracture of medial cuneiform of right foot|Displaced fracture of medial cuneiform of right foot +C2867775|T037|AB|S92.241A|ICD10CM|Disp fx of medial cuneiform of right foot, init for clos fx|Disp fx of medial cuneiform of right foot, init for clos fx +C2867775|T037|PT|S92.241A|ICD10CM|Displaced fracture of medial cuneiform of right foot, initial encounter for closed fracture|Displaced fracture of medial cuneiform of right foot, initial encounter for closed fracture +C2867776|T037|AB|S92.241B|ICD10CM|Disp fx of medial cuneiform of right foot, init for opn fx|Disp fx of medial cuneiform of right foot, init for opn fx +C2867776|T037|PT|S92.241B|ICD10CM|Displaced fracture of medial cuneiform of right foot, initial encounter for open fracture|Displaced fracture of medial cuneiform of right foot, initial encounter for open fracture +C2867777|T037|AB|S92.241D|ICD10CM|Disp fx of med cuneiform of r foot, subs for fx w routn heal|Disp fx of med cuneiform of r foot, subs for fx w routn heal +C2867778|T037|AB|S92.241G|ICD10CM|Disp fx of med cuneiform of r foot, subs for fx w delay heal|Disp fx of med cuneiform of r foot, subs for fx w delay heal +C2867779|T037|AB|S92.241K|ICD10CM|Disp fx of med cuneiform of r foot, subs for fx w nonunion|Disp fx of med cuneiform of r foot, subs for fx w nonunion +C2867780|T037|AB|S92.241P|ICD10CM|Disp fx of med cuneiform of r foot, subs for fx w malunion|Disp fx of med cuneiform of r foot, subs for fx w malunion +C2867781|T037|AB|S92.241S|ICD10CM|Disp fx of medial cuneiform of right foot, sequela|Disp fx of medial cuneiform of right foot, sequela +C2867781|T037|PT|S92.241S|ICD10CM|Displaced fracture of medial cuneiform of right foot, sequela|Displaced fracture of medial cuneiform of right foot, sequela +C2867782|T037|AB|S92.242|ICD10CM|Displaced fracture of medial cuneiform of left foot|Displaced fracture of medial cuneiform of left foot +C2867782|T037|HT|S92.242|ICD10CM|Displaced fracture of medial cuneiform of left foot|Displaced fracture of medial cuneiform of left foot +C2867783|T037|AB|S92.242A|ICD10CM|Disp fx of medial cuneiform of left foot, init for clos fx|Disp fx of medial cuneiform of left foot, init for clos fx +C2867783|T037|PT|S92.242A|ICD10CM|Displaced fracture of medial cuneiform of left foot, initial encounter for closed fracture|Displaced fracture of medial cuneiform of left foot, initial encounter for closed fracture +C2867784|T037|AB|S92.242B|ICD10CM|Disp fx of medial cuneiform of left foot, init for opn fx|Disp fx of medial cuneiform of left foot, init for opn fx +C2867784|T037|PT|S92.242B|ICD10CM|Displaced fracture of medial cuneiform of left foot, initial encounter for open fracture|Displaced fracture of medial cuneiform of left foot, initial encounter for open fracture +C2867785|T037|AB|S92.242D|ICD10CM|Disp fx of med cuneiform of l foot, subs for fx w routn heal|Disp fx of med cuneiform of l foot, subs for fx w routn heal +C2867786|T037|AB|S92.242G|ICD10CM|Disp fx of med cuneiform of l foot, subs for fx w delay heal|Disp fx of med cuneiform of l foot, subs for fx w delay heal +C2867787|T037|AB|S92.242K|ICD10CM|Disp fx of med cuneiform of l foot, subs for fx w nonunion|Disp fx of med cuneiform of l foot, subs for fx w nonunion +C2867787|T037|PT|S92.242K|ICD10CM|Displaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with nonunion|Displaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with nonunion +C2867788|T037|AB|S92.242P|ICD10CM|Disp fx of med cuneiform of l foot, subs for fx w malunion|Disp fx of med cuneiform of l foot, subs for fx w malunion +C2867788|T037|PT|S92.242P|ICD10CM|Displaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with malunion|Displaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with malunion +C2867789|T037|AB|S92.242S|ICD10CM|Displaced fracture of medial cuneiform of left foot, sequela|Displaced fracture of medial cuneiform of left foot, sequela +C2867789|T037|PT|S92.242S|ICD10CM|Displaced fracture of medial cuneiform of left foot, sequela|Displaced fracture of medial cuneiform of left foot, sequela +C2867790|T037|AB|S92.243|ICD10CM|Displaced fracture of medial cuneiform of unspecified foot|Displaced fracture of medial cuneiform of unspecified foot +C2867790|T037|HT|S92.243|ICD10CM|Displaced fracture of medial cuneiform of unspecified foot|Displaced fracture of medial cuneiform of unspecified foot +C2867791|T037|AB|S92.243A|ICD10CM|Disp fx of medial cuneiform of unsp foot, init for clos fx|Disp fx of medial cuneiform of unsp foot, init for clos fx +C2867791|T037|PT|S92.243A|ICD10CM|Displaced fracture of medial cuneiform of unspecified foot, initial encounter for closed fracture|Displaced fracture of medial cuneiform of unspecified foot, initial encounter for closed fracture +C2867792|T037|AB|S92.243B|ICD10CM|Disp fx of medial cuneiform of unsp foot, init for opn fx|Disp fx of medial cuneiform of unsp foot, init for opn fx +C2867792|T037|PT|S92.243B|ICD10CM|Displaced fracture of medial cuneiform of unspecified foot, initial encounter for open fracture|Displaced fracture of medial cuneiform of unspecified foot, initial encounter for open fracture +C2867793|T037|AB|S92.243D|ICD10CM|Disp fx of med cuneiform of unsp ft, 7thD|Disp fx of med cuneiform of unsp ft, 7thD +C2867794|T037|AB|S92.243G|ICD10CM|Disp fx of med cuneiform of unsp ft, 7thG|Disp fx of med cuneiform of unsp ft, 7thG +C2867795|T037|AB|S92.243K|ICD10CM|Disp fx of med cuneiform of unsp ft, subs for fx w nonunion|Disp fx of med cuneiform of unsp ft, subs for fx w nonunion +C2867796|T037|AB|S92.243P|ICD10CM|Disp fx of med cuneiform of unsp ft, subs for fx w malunion|Disp fx of med cuneiform of unsp ft, subs for fx w malunion +C2867797|T037|AB|S92.243S|ICD10CM|Disp fx of medial cuneiform of unspecified foot, sequela|Disp fx of medial cuneiform of unspecified foot, sequela +C2867797|T037|PT|S92.243S|ICD10CM|Displaced fracture of medial cuneiform of unspecified foot, sequela|Displaced fracture of medial cuneiform of unspecified foot, sequela +C2867798|T037|AB|S92.244|ICD10CM|Nondisplaced fracture of medial cuneiform of right foot|Nondisplaced fracture of medial cuneiform of right foot +C2867798|T037|HT|S92.244|ICD10CM|Nondisplaced fracture of medial cuneiform of right foot|Nondisplaced fracture of medial cuneiform of right foot +C2867799|T037|AB|S92.244A|ICD10CM|Nondisp fx of medial cuneiform of right foot, init|Nondisp fx of medial cuneiform of right foot, init +C2867799|T037|PT|S92.244A|ICD10CM|Nondisplaced fracture of medial cuneiform of right foot, initial encounter for closed fracture|Nondisplaced fracture of medial cuneiform of right foot, initial encounter for closed fracture +C2867800|T037|AB|S92.244B|ICD10CM|Nondisp fx of medial cuneiform of r foot, init for opn fx|Nondisp fx of medial cuneiform of r foot, init for opn fx +C2867800|T037|PT|S92.244B|ICD10CM|Nondisplaced fracture of medial cuneiform of right foot, initial encounter for open fracture|Nondisplaced fracture of medial cuneiform of right foot, initial encounter for open fracture +C2867801|T037|AB|S92.244D|ICD10CM|Nondisp fx of med cuneiform of r ft, 7thD|Nondisp fx of med cuneiform of r ft, 7thD +C2867802|T037|AB|S92.244G|ICD10CM|Nondisp fx of med cuneiform of r ft, 7thG|Nondisp fx of med cuneiform of r ft, 7thG +C2867803|T037|AB|S92.244K|ICD10CM|Nondisp fx of med cuneiform of r ft, subs for fx w nonunion|Nondisp fx of med cuneiform of r ft, subs for fx w nonunion +C2867804|T037|AB|S92.244P|ICD10CM|Nondisp fx of med cuneiform of r ft, subs for fx w malunion|Nondisp fx of med cuneiform of r ft, subs for fx w malunion +C2867805|T037|AB|S92.244S|ICD10CM|Nondisp fx of medial cuneiform of right foot, sequela|Nondisp fx of medial cuneiform of right foot, sequela +C2867805|T037|PT|S92.244S|ICD10CM|Nondisplaced fracture of medial cuneiform of right foot, sequela|Nondisplaced fracture of medial cuneiform of right foot, sequela +C2867806|T037|AB|S92.245|ICD10CM|Nondisplaced fracture of medial cuneiform of left foot|Nondisplaced fracture of medial cuneiform of left foot +C2867806|T037|HT|S92.245|ICD10CM|Nondisplaced fracture of medial cuneiform of left foot|Nondisplaced fracture of medial cuneiform of left foot +C2867807|T037|AB|S92.245A|ICD10CM|Nondisp fx of medial cuneiform of left foot, init|Nondisp fx of medial cuneiform of left foot, init +C2867807|T037|PT|S92.245A|ICD10CM|Nondisplaced fracture of medial cuneiform of left foot, initial encounter for closed fracture|Nondisplaced fracture of medial cuneiform of left foot, initial encounter for closed fracture +C2867808|T037|AB|S92.245B|ICD10CM|Nondisp fx of medial cuneiform of left foot, init for opn fx|Nondisp fx of medial cuneiform of left foot, init for opn fx +C2867808|T037|PT|S92.245B|ICD10CM|Nondisplaced fracture of medial cuneiform of left foot, initial encounter for open fracture|Nondisplaced fracture of medial cuneiform of left foot, initial encounter for open fracture +C2867809|T037|AB|S92.245D|ICD10CM|Nondisp fx of med cuneiform of l ft, 7thD|Nondisp fx of med cuneiform of l ft, 7thD +C2867810|T037|AB|S92.245G|ICD10CM|Nondisp fx of med cuneiform of l ft, 7thG|Nondisp fx of med cuneiform of l ft, 7thG +C2867811|T037|AB|S92.245K|ICD10CM|Nondisp fx of med cuneiform of l ft, subs for fx w nonunion|Nondisp fx of med cuneiform of l ft, subs for fx w nonunion +C2867812|T037|AB|S92.245P|ICD10CM|Nondisp fx of med cuneiform of l ft, subs for fx w malunion|Nondisp fx of med cuneiform of l ft, subs for fx w malunion +C2867813|T037|AB|S92.245S|ICD10CM|Nondisp fx of medial cuneiform of left foot, sequela|Nondisp fx of medial cuneiform of left foot, sequela +C2867813|T037|PT|S92.245S|ICD10CM|Nondisplaced fracture of medial cuneiform of left foot, sequela|Nondisplaced fracture of medial cuneiform of left foot, sequela +C2867814|T037|AB|S92.246|ICD10CM|Nondisp fx of medial cuneiform of unspecified foot|Nondisp fx of medial cuneiform of unspecified foot +C2867814|T037|HT|S92.246|ICD10CM|Nondisplaced fracture of medial cuneiform of unspecified foot|Nondisplaced fracture of medial cuneiform of unspecified foot +C2867815|T037|AB|S92.246A|ICD10CM|Nondisp fx of medial cuneiform of unsp foot, init|Nondisp fx of medial cuneiform of unsp foot, init +C2867815|T037|PT|S92.246A|ICD10CM|Nondisplaced fracture of medial cuneiform of unspecified foot, initial encounter for closed fracture|Nondisplaced fracture of medial cuneiform of unspecified foot, initial encounter for closed fracture +C2867816|T037|AB|S92.246B|ICD10CM|Nondisp fx of medial cuneiform of unsp foot, init for opn fx|Nondisp fx of medial cuneiform of unsp foot, init for opn fx +C2867816|T037|PT|S92.246B|ICD10CM|Nondisplaced fracture of medial cuneiform of unspecified foot, initial encounter for open fracture|Nondisplaced fracture of medial cuneiform of unspecified foot, initial encounter for open fracture +C2867817|T037|AB|S92.246D|ICD10CM|Nondisp fx of med cuneiform of unsp ft, 7thD|Nondisp fx of med cuneiform of unsp ft, 7thD +C2867818|T037|AB|S92.246G|ICD10CM|Nondisp fx of med cuneiform of unsp ft, 7thG|Nondisp fx of med cuneiform of unsp ft, 7thG +C2867819|T037|AB|S92.246K|ICD10CM|Nondisp fx of med cuneiform of unsp ft, 7thK|Nondisp fx of med cuneiform of unsp ft, 7thK +C2867820|T037|AB|S92.246P|ICD10CM|Nondisp fx of med cuneiform of unsp ft, 7thP|Nondisp fx of med cuneiform of unsp ft, 7thP +C2867821|T037|AB|S92.246S|ICD10CM|Nondisp fx of medial cuneiform of unspecified foot, sequela|Nondisp fx of medial cuneiform of unspecified foot, sequela +C2867821|T037|PT|S92.246S|ICD10CM|Nondisplaced fracture of medial cuneiform of unspecified foot, sequela|Nondisplaced fracture of medial cuneiform of unspecified foot, sequela +C0840728|T037|AB|S92.25|ICD10CM|Fracture of navicular [scaphoid] of foot|Fracture of navicular [scaphoid] of foot +C0840728|T037|HT|S92.25|ICD10CM|Fracture of navicular [scaphoid] of foot|Fracture of navicular [scaphoid] of foot +C2867822|T037|AB|S92.251|ICD10CM|Displaced fracture of navicular [scaphoid] of right foot|Displaced fracture of navicular [scaphoid] of right foot +C2867822|T037|HT|S92.251|ICD10CM|Displaced fracture of navicular [scaphoid] of right foot|Displaced fracture of navicular [scaphoid] of right foot +C2867823|T037|AB|S92.251A|ICD10CM|Disp fx of navicular of right foot, init for clos fx|Disp fx of navicular of right foot, init for clos fx +C2867823|T037|PT|S92.251A|ICD10CM|Displaced fracture of navicular [scaphoid] of right foot, initial encounter for closed fracture|Displaced fracture of navicular [scaphoid] of right foot, initial encounter for closed fracture +C2867824|T037|AB|S92.251B|ICD10CM|Disp fx of navicular of right foot, init for opn fx|Disp fx of navicular of right foot, init for opn fx +C2867824|T037|PT|S92.251B|ICD10CM|Displaced fracture of navicular [scaphoid] of right foot, initial encounter for open fracture|Displaced fracture of navicular [scaphoid] of right foot, initial encounter for open fracture +C2867825|T037|AB|S92.251D|ICD10CM|Disp fx of navicular of right foot, subs for fx w routn heal|Disp fx of navicular of right foot, subs for fx w routn heal +C2867826|T037|AB|S92.251G|ICD10CM|Disp fx of navicular of right foot, subs for fx w delay heal|Disp fx of navicular of right foot, subs for fx w delay heal +C2867827|T037|AB|S92.251K|ICD10CM|Disp fx of navicular of right foot, subs for fx w nonunion|Disp fx of navicular of right foot, subs for fx w nonunion +C2867828|T037|AB|S92.251P|ICD10CM|Disp fx of navicular of right foot, subs for fx w malunion|Disp fx of navicular of right foot, subs for fx w malunion +C2867829|T037|PT|S92.251S|ICD10CM|Displaced fracture of navicular [scaphoid] of right foot, sequela|Displaced fracture of navicular [scaphoid] of right foot, sequela +C2867829|T037|AB|S92.251S|ICD10CM|Displaced fracture of navicular of right foot, sequela|Displaced fracture of navicular of right foot, sequela +C2867830|T037|AB|S92.252|ICD10CM|Displaced fracture of navicular [scaphoid] of left foot|Displaced fracture of navicular [scaphoid] of left foot +C2867830|T037|HT|S92.252|ICD10CM|Displaced fracture of navicular [scaphoid] of left foot|Displaced fracture of navicular [scaphoid] of left foot +C2867831|T037|AB|S92.252A|ICD10CM|Disp fx of navicular of left foot, init for clos fx|Disp fx of navicular of left foot, init for clos fx +C2867831|T037|PT|S92.252A|ICD10CM|Displaced fracture of navicular [scaphoid] of left foot, initial encounter for closed fracture|Displaced fracture of navicular [scaphoid] of left foot, initial encounter for closed fracture +C2867832|T037|AB|S92.252B|ICD10CM|Disp fx of navicular of left foot, init for opn fx|Disp fx of navicular of left foot, init for opn fx +C2867832|T037|PT|S92.252B|ICD10CM|Displaced fracture of navicular [scaphoid] of left foot, initial encounter for open fracture|Displaced fracture of navicular [scaphoid] of left foot, initial encounter for open fracture +C2867833|T037|AB|S92.252D|ICD10CM|Disp fx of navicular of left foot, subs for fx w routn heal|Disp fx of navicular of left foot, subs for fx w routn heal +C2867834|T037|AB|S92.252G|ICD10CM|Disp fx of navicular of left foot, subs for fx w delay heal|Disp fx of navicular of left foot, subs for fx w delay heal +C2867835|T037|AB|S92.252K|ICD10CM|Disp fx of navicular of left foot, subs for fx w nonunion|Disp fx of navicular of left foot, subs for fx w nonunion +C2867836|T037|AB|S92.252P|ICD10CM|Disp fx of navicular of left foot, subs for fx w malunion|Disp fx of navicular of left foot, subs for fx w malunion +C2867837|T037|PT|S92.252S|ICD10CM|Displaced fracture of navicular [scaphoid] of left foot, sequela|Displaced fracture of navicular [scaphoid] of left foot, sequela +C2867837|T037|AB|S92.252S|ICD10CM|Displaced fracture of navicular of left foot, sequela|Displaced fracture of navicular of left foot, sequela +C2867838|T037|HT|S92.253|ICD10CM|Displaced fracture of navicular [scaphoid] of unspecified foot|Displaced fracture of navicular [scaphoid] of unspecified foot +C2867838|T037|AB|S92.253|ICD10CM|Displaced fracture of navicular of unspecified foot|Displaced fracture of navicular of unspecified foot +C2867839|T037|AB|S92.253A|ICD10CM|Disp fx of navicular of unsp foot, init for clos fx|Disp fx of navicular of unsp foot, init for clos fx +C2867840|T037|AB|S92.253B|ICD10CM|Disp fx of navicular of unsp foot, init for opn fx|Disp fx of navicular of unsp foot, init for opn fx +C2867840|T037|PT|S92.253B|ICD10CM|Displaced fracture of navicular [scaphoid] of unspecified foot, initial encounter for open fracture|Displaced fracture of navicular [scaphoid] of unspecified foot, initial encounter for open fracture +C2867841|T037|AB|S92.253D|ICD10CM|Disp fx of navicular of unsp foot, subs for fx w routn heal|Disp fx of navicular of unsp foot, subs for fx w routn heal +C2867842|T037|AB|S92.253G|ICD10CM|Disp fx of navicular of unsp foot, subs for fx w delay heal|Disp fx of navicular of unsp foot, subs for fx w delay heal +C2867843|T037|AB|S92.253K|ICD10CM|Disp fx of navicular of unsp foot, subs for fx w nonunion|Disp fx of navicular of unsp foot, subs for fx w nonunion +C2867844|T037|AB|S92.253P|ICD10CM|Disp fx of navicular of unsp foot, subs for fx w malunion|Disp fx of navicular of unsp foot, subs for fx w malunion +C2867845|T037|PT|S92.253S|ICD10CM|Displaced fracture of navicular [scaphoid] of unspecified foot, sequela|Displaced fracture of navicular [scaphoid] of unspecified foot, sequela +C2867845|T037|AB|S92.253S|ICD10CM|Displaced fracture of navicular of unspecified foot, sequela|Displaced fracture of navicular of unspecified foot, sequela +C2867846|T037|AB|S92.254|ICD10CM|Nondisplaced fracture of navicular [scaphoid] of right foot|Nondisplaced fracture of navicular [scaphoid] of right foot +C2867846|T037|HT|S92.254|ICD10CM|Nondisplaced fracture of navicular [scaphoid] of right foot|Nondisplaced fracture of navicular [scaphoid] of right foot +C2867847|T037|AB|S92.254A|ICD10CM|Nondisp fx of navicular of right foot, init for clos fx|Nondisp fx of navicular of right foot, init for clos fx +C2867847|T037|PT|S92.254A|ICD10CM|Nondisplaced fracture of navicular [scaphoid] of right foot, initial encounter for closed fracture|Nondisplaced fracture of navicular [scaphoid] of right foot, initial encounter for closed fracture +C2867848|T037|AB|S92.254B|ICD10CM|Nondisp fx of navicular of right foot, init for opn fx|Nondisp fx of navicular of right foot, init for opn fx +C2867848|T037|PT|S92.254B|ICD10CM|Nondisplaced fracture of navicular [scaphoid] of right foot, initial encounter for open fracture|Nondisplaced fracture of navicular [scaphoid] of right foot, initial encounter for open fracture +C2867849|T037|AB|S92.254D|ICD10CM|Nondisp fx of navicular of r foot, subs for fx w routn heal|Nondisp fx of navicular of r foot, subs for fx w routn heal +C2867850|T037|AB|S92.254G|ICD10CM|Nondisp fx of navicular of r foot, subs for fx w delay heal|Nondisp fx of navicular of r foot, subs for fx w delay heal +C2867851|T037|AB|S92.254K|ICD10CM|Nondisp fx of navicular of r foot, subs for fx w nonunion|Nondisp fx of navicular of r foot, subs for fx w nonunion +C2867852|T037|AB|S92.254P|ICD10CM|Nondisp fx of navicular of r foot, subs for fx w malunion|Nondisp fx of navicular of r foot, subs for fx w malunion +C2867853|T037|PT|S92.254S|ICD10CM|Nondisplaced fracture of navicular [scaphoid] of right foot, sequela|Nondisplaced fracture of navicular [scaphoid] of right foot, sequela +C2867853|T037|AB|S92.254S|ICD10CM|Nondisplaced fracture of navicular of right foot, sequela|Nondisplaced fracture of navicular of right foot, sequela +C2867854|T037|AB|S92.255|ICD10CM|Nondisplaced fracture of navicular [scaphoid] of left foot|Nondisplaced fracture of navicular [scaphoid] of left foot +C2867854|T037|HT|S92.255|ICD10CM|Nondisplaced fracture of navicular [scaphoid] of left foot|Nondisplaced fracture of navicular [scaphoid] of left foot +C2867855|T037|AB|S92.255A|ICD10CM|Nondisp fx of navicular of left foot, init for clos fx|Nondisp fx of navicular of left foot, init for clos fx +C2867855|T037|PT|S92.255A|ICD10CM|Nondisplaced fracture of navicular [scaphoid] of left foot, initial encounter for closed fracture|Nondisplaced fracture of navicular [scaphoid] of left foot, initial encounter for closed fracture +C2867856|T037|AB|S92.255B|ICD10CM|Nondisp fx of navicular of left foot, init for opn fx|Nondisp fx of navicular of left foot, init for opn fx +C2867856|T037|PT|S92.255B|ICD10CM|Nondisplaced fracture of navicular [scaphoid] of left foot, initial encounter for open fracture|Nondisplaced fracture of navicular [scaphoid] of left foot, initial encounter for open fracture +C2867857|T037|AB|S92.255D|ICD10CM|Nondisp fx of navicular of l foot, subs for fx w routn heal|Nondisp fx of navicular of l foot, subs for fx w routn heal +C2867858|T037|AB|S92.255G|ICD10CM|Nondisp fx of navicular of l foot, subs for fx w delay heal|Nondisp fx of navicular of l foot, subs for fx w delay heal +C2867859|T037|AB|S92.255K|ICD10CM|Nondisp fx of navicular of left foot, subs for fx w nonunion|Nondisp fx of navicular of left foot, subs for fx w nonunion +C2867860|T037|AB|S92.255P|ICD10CM|Nondisp fx of navicular of left foot, subs for fx w malunion|Nondisp fx of navicular of left foot, subs for fx w malunion +C2867861|T037|PT|S92.255S|ICD10CM|Nondisplaced fracture of navicular [scaphoid] of left foot, sequela|Nondisplaced fracture of navicular [scaphoid] of left foot, sequela +C2867861|T037|AB|S92.255S|ICD10CM|Nondisplaced fracture of navicular of left foot, sequela|Nondisplaced fracture of navicular of left foot, sequela +C2867862|T037|HT|S92.256|ICD10CM|Nondisplaced fracture of navicular [scaphoid] of unspecified foot|Nondisplaced fracture of navicular [scaphoid] of unspecified foot +C2867862|T037|AB|S92.256|ICD10CM|Nondisplaced fracture of navicular of unspecified foot|Nondisplaced fracture of navicular of unspecified foot +C2867863|T037|AB|S92.256A|ICD10CM|Nondisp fx of navicular of unsp foot, init for clos fx|Nondisp fx of navicular of unsp foot, init for clos fx +C2867864|T037|AB|S92.256B|ICD10CM|Nondisp fx of navicular of unsp foot, init for opn fx|Nondisp fx of navicular of unsp foot, init for opn fx +C2867865|T037|AB|S92.256D|ICD10CM|Nondisp fx of navic of unsp foot, subs for fx w routn heal|Nondisp fx of navic of unsp foot, subs for fx w routn heal +C2867866|T037|AB|S92.256G|ICD10CM|Nondisp fx of navic of unsp foot, subs for fx w delay heal|Nondisp fx of navic of unsp foot, subs for fx w delay heal +C2867867|T037|AB|S92.256K|ICD10CM|Nondisp fx of navicular of unsp foot, subs for fx w nonunion|Nondisp fx of navicular of unsp foot, subs for fx w nonunion +C2867868|T037|AB|S92.256P|ICD10CM|Nondisp fx of navicular of unsp foot, subs for fx w malunion|Nondisp fx of navicular of unsp foot, subs for fx w malunion +C2867869|T037|AB|S92.256S|ICD10CM|Nondisp fx of navicular of unspecified foot, sequela|Nondisp fx of navicular of unspecified foot, sequela +C2867869|T037|PT|S92.256S|ICD10CM|Nondisplaced fracture of navicular [scaphoid] of unspecified foot, sequela|Nondisplaced fracture of navicular [scaphoid] of unspecified foot, sequela +C0435943|T037|PT|S92.3|ICD10|Fracture of metatarsal bone|Fracture of metatarsal bone +C0435943|T037|AB|S92.3|ICD10CM|Fracture of metatarsal bone(s)|Fracture of metatarsal bone(s) +C0435943|T037|HT|S92.3|ICD10CM|Fracture of metatarsal bone(s)|Fracture of metatarsal bone(s) +C2867870|T037|AB|S92.30|ICD10CM|Fracture of unspecified metatarsal bone(s)|Fracture of unspecified metatarsal bone(s) +C2867870|T037|HT|S92.30|ICD10CM|Fracture of unspecified metatarsal bone(s)|Fracture of unspecified metatarsal bone(s) +C2867871|T037|AB|S92.301|ICD10CM|Fracture of unspecified metatarsal bone(s), right foot|Fracture of unspecified metatarsal bone(s), right foot +C2867871|T037|HT|S92.301|ICD10CM|Fracture of unspecified metatarsal bone(s), right foot|Fracture of unspecified metatarsal bone(s), right foot +C2867872|T037|AB|S92.301A|ICD10CM|Fracture of unsp metatarsal bone(s), right foot, init|Fracture of unsp metatarsal bone(s), right foot, init +C2867872|T037|PT|S92.301A|ICD10CM|Fracture of unspecified metatarsal bone(s), right foot, initial encounter for closed fracture|Fracture of unspecified metatarsal bone(s), right foot, initial encounter for closed fracture +C2867873|T037|PT|S92.301B|ICD10CM|Fracture of unspecified metatarsal bone(s), right foot, initial encounter for open fracture|Fracture of unspecified metatarsal bone(s), right foot, initial encounter for open fracture +C2867873|T037|AB|S92.301B|ICD10CM|Fx unsp metatarsal bone(s), right foot, init for opn fx|Fx unsp metatarsal bone(s), right foot, init for opn fx +C2867874|T037|AB|S92.301D|ICD10CM|Fx unsp metatarsal bone(s), r foot, subs for fx w routn heal|Fx unsp metatarsal bone(s), r foot, subs for fx w routn heal +C2867875|T037|AB|S92.301G|ICD10CM|Fx unsp metatarsal bone(s), r foot, subs for fx w delay heal|Fx unsp metatarsal bone(s), r foot, subs for fx w delay heal +C2867876|T037|AB|S92.301K|ICD10CM|Fx unsp metatarsal bone(s), r foot, subs for fx w nonunion|Fx unsp metatarsal bone(s), r foot, subs for fx w nonunion +C2867877|T037|AB|S92.301P|ICD10CM|Fx unsp metatarsal bone(s), r foot, subs for fx w malunion|Fx unsp metatarsal bone(s), r foot, subs for fx w malunion +C2867878|T037|AB|S92.301S|ICD10CM|Fracture of unsp metatarsal bone(s), right foot, sequela|Fracture of unsp metatarsal bone(s), right foot, sequela +C2867878|T037|PT|S92.301S|ICD10CM|Fracture of unspecified metatarsal bone(s), right foot, sequela|Fracture of unspecified metatarsal bone(s), right foot, sequela +C2867879|T037|AB|S92.302|ICD10CM|Fracture of unspecified metatarsal bone(s), left foot|Fracture of unspecified metatarsal bone(s), left foot +C2867879|T037|HT|S92.302|ICD10CM|Fracture of unspecified metatarsal bone(s), left foot|Fracture of unspecified metatarsal bone(s), left foot +C2867880|T037|AB|S92.302A|ICD10CM|Fracture of unsp metatarsal bone(s), left foot, init|Fracture of unsp metatarsal bone(s), left foot, init +C2867880|T037|PT|S92.302A|ICD10CM|Fracture of unspecified metatarsal bone(s), left foot, initial encounter for closed fracture|Fracture of unspecified metatarsal bone(s), left foot, initial encounter for closed fracture +C2867881|T037|PT|S92.302B|ICD10CM|Fracture of unspecified metatarsal bone(s), left foot, initial encounter for open fracture|Fracture of unspecified metatarsal bone(s), left foot, initial encounter for open fracture +C2867881|T037|AB|S92.302B|ICD10CM|Fx unsp metatarsal bone(s), left foot, init for opn fx|Fx unsp metatarsal bone(s), left foot, init for opn fx +C2867882|T037|AB|S92.302D|ICD10CM|Fx unsp metatarsal bone(s), l foot, subs for fx w routn heal|Fx unsp metatarsal bone(s), l foot, subs for fx w routn heal +C2867883|T037|AB|S92.302G|ICD10CM|Fx unsp metatarsal bone(s), l foot, subs for fx w delay heal|Fx unsp metatarsal bone(s), l foot, subs for fx w delay heal +C2867884|T037|AB|S92.302K|ICD10CM|Fx unsp metatarsal bone(s), l foot, subs for fx w nonunion|Fx unsp metatarsal bone(s), l foot, subs for fx w nonunion +C2867885|T037|AB|S92.302P|ICD10CM|Fx unsp metatarsal bone(s), l foot, subs for fx w malunion|Fx unsp metatarsal bone(s), l foot, subs for fx w malunion +C2867886|T037|AB|S92.302S|ICD10CM|Fracture of unsp metatarsal bone(s), left foot, sequela|Fracture of unsp metatarsal bone(s), left foot, sequela +C2867886|T037|PT|S92.302S|ICD10CM|Fracture of unspecified metatarsal bone(s), left foot, sequela|Fracture of unspecified metatarsal bone(s), left foot, sequela +C2867887|T037|AB|S92.309|ICD10CM|Fracture of unspecified metatarsal bone(s), unspecified foot|Fracture of unspecified metatarsal bone(s), unspecified foot +C2867887|T037|HT|S92.309|ICD10CM|Fracture of unspecified metatarsal bone(s), unspecified foot|Fracture of unspecified metatarsal bone(s), unspecified foot +C2867888|T037|AB|S92.309A|ICD10CM|Fracture of unsp metatarsal bone(s), unsp foot, init|Fracture of unsp metatarsal bone(s), unsp foot, init +C2867888|T037|PT|S92.309A|ICD10CM|Fracture of unspecified metatarsal bone(s), unspecified foot, initial encounter for closed fracture|Fracture of unspecified metatarsal bone(s), unspecified foot, initial encounter for closed fracture +C2867889|T037|PT|S92.309B|ICD10CM|Fracture of unspecified metatarsal bone(s), unspecified foot, initial encounter for open fracture|Fracture of unspecified metatarsal bone(s), unspecified foot, initial encounter for open fracture +C2867889|T037|AB|S92.309B|ICD10CM|Fx unsp metatarsal bone(s), unsp foot, init for opn fx|Fx unsp metatarsal bone(s), unsp foot, init for opn fx +C2867890|T037|AB|S92.309D|ICD10CM|Fx unsp metatarsal bone(s), unsp ft, 7thD|Fx unsp metatarsal bone(s), unsp ft, 7thD +C2867891|T037|AB|S92.309G|ICD10CM|Fx unsp metatarsal bone(s), unsp ft, 7thG|Fx unsp metatarsal bone(s), unsp ft, 7thG +C2867892|T037|AB|S92.309K|ICD10CM|Fx unsp metatarsal bone(s), unsp ft, subs for fx w nonunion|Fx unsp metatarsal bone(s), unsp ft, subs for fx w nonunion +C2867893|T037|AB|S92.309P|ICD10CM|Fx unsp metatarsal bone(s), unsp ft, subs for fx w malunion|Fx unsp metatarsal bone(s), unsp ft, subs for fx w malunion +C2867894|T037|AB|S92.309S|ICD10CM|Fracture of unsp metatarsal bone(s), unsp foot, sequela|Fracture of unsp metatarsal bone(s), unsp foot, sequela +C2867894|T037|PT|S92.309S|ICD10CM|Fracture of unspecified metatarsal bone(s), unspecified foot, sequela|Fracture of unspecified metatarsal bone(s), unspecified foot, sequela +C2867895|T037|AB|S92.31|ICD10CM|Fracture of first metatarsal bone|Fracture of first metatarsal bone +C2867895|T037|HT|S92.31|ICD10CM|Fracture of first metatarsal bone|Fracture of first metatarsal bone +C2867896|T037|AB|S92.311|ICD10CM|Displaced fracture of first metatarsal bone, right foot|Displaced fracture of first metatarsal bone, right foot +C2867896|T037|HT|S92.311|ICD10CM|Displaced fracture of first metatarsal bone, right foot|Displaced fracture of first metatarsal bone, right foot +C2867897|T037|AB|S92.311A|ICD10CM|Disp fx of first metatarsal bone, right foot, init|Disp fx of first metatarsal bone, right foot, init +C2867897|T037|PT|S92.311A|ICD10CM|Displaced fracture of first metatarsal bone, right foot, initial encounter for closed fracture|Displaced fracture of first metatarsal bone, right foot, initial encounter for closed fracture +C2867898|T037|AB|S92.311B|ICD10CM|Disp fx of first metatarsal bone, r foot, init for opn fx|Disp fx of first metatarsal bone, r foot, init for opn fx +C2867898|T037|PT|S92.311B|ICD10CM|Displaced fracture of first metatarsal bone, right foot, initial encounter for open fracture|Displaced fracture of first metatarsal bone, right foot, initial encounter for open fracture +C2867899|T037|AB|S92.311D|ICD10CM|Disp fx of 1st metatarsal bone, r ft, 7thD|Disp fx of 1st metatarsal bone, r ft, 7thD +C2867900|T037|AB|S92.311G|ICD10CM|Disp fx of 1st metatarsal bone, r ft, 7thG|Disp fx of 1st metatarsal bone, r ft, 7thG +C2867901|T037|AB|S92.311K|ICD10CM|Disp fx of 1st metatarsal bone, r ft, subs for fx w nonunion|Disp fx of 1st metatarsal bone, r ft, subs for fx w nonunion +C2867902|T037|AB|S92.311P|ICD10CM|Disp fx of 1st metatarsal bone, r ft, subs for fx w malunion|Disp fx of 1st metatarsal bone, r ft, subs for fx w malunion +C2867903|T037|AB|S92.311S|ICD10CM|Disp fx of first metatarsal bone, right foot, sequela|Disp fx of first metatarsal bone, right foot, sequela +C2867903|T037|PT|S92.311S|ICD10CM|Displaced fracture of first metatarsal bone, right foot, sequela|Displaced fracture of first metatarsal bone, right foot, sequela +C2867904|T037|AB|S92.312|ICD10CM|Displaced fracture of first metatarsal bone, left foot|Displaced fracture of first metatarsal bone, left foot +C2867904|T037|HT|S92.312|ICD10CM|Displaced fracture of first metatarsal bone, left foot|Displaced fracture of first metatarsal bone, left foot +C2867905|T037|AB|S92.312A|ICD10CM|Disp fx of first metatarsal bone, left foot, init|Disp fx of first metatarsal bone, left foot, init +C2867905|T037|PT|S92.312A|ICD10CM|Displaced fracture of first metatarsal bone, left foot, initial encounter for closed fracture|Displaced fracture of first metatarsal bone, left foot, initial encounter for closed fracture +C2867906|T037|AB|S92.312B|ICD10CM|Disp fx of first metatarsal bone, left foot, init for opn fx|Disp fx of first metatarsal bone, left foot, init for opn fx +C2867906|T037|PT|S92.312B|ICD10CM|Displaced fracture of first metatarsal bone, left foot, initial encounter for open fracture|Displaced fracture of first metatarsal bone, left foot, initial encounter for open fracture +C2867907|T037|AB|S92.312D|ICD10CM|Disp fx of 1st metatarsal bone, l ft, 7thD|Disp fx of 1st metatarsal bone, l ft, 7thD +C2867908|T037|AB|S92.312G|ICD10CM|Disp fx of 1st metatarsal bone, l ft, 7thG|Disp fx of 1st metatarsal bone, l ft, 7thG +C2867909|T037|AB|S92.312K|ICD10CM|Disp fx of 1st metatarsal bone, l ft, subs for fx w nonunion|Disp fx of 1st metatarsal bone, l ft, subs for fx w nonunion +C2867910|T037|AB|S92.312P|ICD10CM|Disp fx of 1st metatarsal bone, l ft, subs for fx w malunion|Disp fx of 1st metatarsal bone, l ft, subs for fx w malunion +C2867911|T037|AB|S92.312S|ICD10CM|Disp fx of first metatarsal bone, left foot, sequela|Disp fx of first metatarsal bone, left foot, sequela +C2867911|T037|PT|S92.312S|ICD10CM|Displaced fracture of first metatarsal bone, left foot, sequela|Displaced fracture of first metatarsal bone, left foot, sequela +C2867912|T037|AB|S92.313|ICD10CM|Disp fx of first metatarsal bone, unspecified foot|Disp fx of first metatarsal bone, unspecified foot +C2867912|T037|HT|S92.313|ICD10CM|Displaced fracture of first metatarsal bone, unspecified foot|Displaced fracture of first metatarsal bone, unspecified foot +C2867913|T037|AB|S92.313A|ICD10CM|Disp fx of first metatarsal bone, unsp foot, init|Disp fx of first metatarsal bone, unsp foot, init +C2867913|T037|PT|S92.313A|ICD10CM|Displaced fracture of first metatarsal bone, unspecified foot, initial encounter for closed fracture|Displaced fracture of first metatarsal bone, unspecified foot, initial encounter for closed fracture +C2867914|T037|AB|S92.313B|ICD10CM|Disp fx of first metatarsal bone, unsp foot, init for opn fx|Disp fx of first metatarsal bone, unsp foot, init for opn fx +C2867914|T037|PT|S92.313B|ICD10CM|Displaced fracture of first metatarsal bone, unspecified foot, initial encounter for open fracture|Displaced fracture of first metatarsal bone, unspecified foot, initial encounter for open fracture +C2867915|T037|AB|S92.313D|ICD10CM|Disp fx of 1st metatarsal bone, unsp ft, 7thD|Disp fx of 1st metatarsal bone, unsp ft, 7thD +C2867916|T037|AB|S92.313G|ICD10CM|Disp fx of 1st metatarsal bone, unsp ft, 7thG|Disp fx of 1st metatarsal bone, unsp ft, 7thG +C2867917|T037|AB|S92.313K|ICD10CM|Disp fx of 1st metatarsal bone, unsp ft, 7thK|Disp fx of 1st metatarsal bone, unsp ft, 7thK +C2867918|T037|AB|S92.313P|ICD10CM|Disp fx of 1st metatarsal bone, unsp ft, 7thP|Disp fx of 1st metatarsal bone, unsp ft, 7thP +C2867919|T037|AB|S92.313S|ICD10CM|Disp fx of first metatarsal bone, unspecified foot, sequela|Disp fx of first metatarsal bone, unspecified foot, sequela +C2867919|T037|PT|S92.313S|ICD10CM|Displaced fracture of first metatarsal bone, unspecified foot, sequela|Displaced fracture of first metatarsal bone, unspecified foot, sequela +C2867920|T037|AB|S92.314|ICD10CM|Nondisplaced fracture of first metatarsal bone, right foot|Nondisplaced fracture of first metatarsal bone, right foot +C2867920|T037|HT|S92.314|ICD10CM|Nondisplaced fracture of first metatarsal bone, right foot|Nondisplaced fracture of first metatarsal bone, right foot +C2867921|T037|AB|S92.314A|ICD10CM|Nondisp fx of first metatarsal bone, right foot, init|Nondisp fx of first metatarsal bone, right foot, init +C2867921|T037|PT|S92.314A|ICD10CM|Nondisplaced fracture of first metatarsal bone, right foot, initial encounter for closed fracture|Nondisplaced fracture of first metatarsal bone, right foot, initial encounter for closed fracture +C2867922|T037|AB|S92.314B|ICD10CM|Nondisp fx of first metatarsal bone, r foot, init for opn fx|Nondisp fx of first metatarsal bone, r foot, init for opn fx +C2867922|T037|PT|S92.314B|ICD10CM|Nondisplaced fracture of first metatarsal bone, right foot, initial encounter for open fracture|Nondisplaced fracture of first metatarsal bone, right foot, initial encounter for open fracture +C2867923|T037|AB|S92.314D|ICD10CM|Nondisp fx of 1st metatarsal bone, r ft, 7thD|Nondisp fx of 1st metatarsal bone, r ft, 7thD +C2867924|T037|AB|S92.314G|ICD10CM|Nondisp fx of 1st metatarsal bone, r ft, 7thG|Nondisp fx of 1st metatarsal bone, r ft, 7thG +C2867925|T037|AB|S92.314K|ICD10CM|Nondisp fx of 1st metatarsal bone, r ft, 7thK|Nondisp fx of 1st metatarsal bone, r ft, 7thK +C2867926|T037|AB|S92.314P|ICD10CM|Nondisp fx of 1st metatarsal bone, r ft, 7thP|Nondisp fx of 1st metatarsal bone, r ft, 7thP +C2867927|T037|AB|S92.314S|ICD10CM|Nondisp fx of first metatarsal bone, right foot, sequela|Nondisp fx of first metatarsal bone, right foot, sequela +C2867927|T037|PT|S92.314S|ICD10CM|Nondisplaced fracture of first metatarsal bone, right foot, sequela|Nondisplaced fracture of first metatarsal bone, right foot, sequela +C2867928|T037|AB|S92.315|ICD10CM|Nondisplaced fracture of first metatarsal bone, left foot|Nondisplaced fracture of first metatarsal bone, left foot +C2867928|T037|HT|S92.315|ICD10CM|Nondisplaced fracture of first metatarsal bone, left foot|Nondisplaced fracture of first metatarsal bone, left foot +C2867929|T037|AB|S92.315A|ICD10CM|Nondisp fx of first metatarsal bone, left foot, init|Nondisp fx of first metatarsal bone, left foot, init +C2867929|T037|PT|S92.315A|ICD10CM|Nondisplaced fracture of first metatarsal bone, left foot, initial encounter for closed fracture|Nondisplaced fracture of first metatarsal bone, left foot, initial encounter for closed fracture +C2867930|T037|AB|S92.315B|ICD10CM|Nondisp fx of first metatarsal bone, l foot, init for opn fx|Nondisp fx of first metatarsal bone, l foot, init for opn fx +C2867930|T037|PT|S92.315B|ICD10CM|Nondisplaced fracture of first metatarsal bone, left foot, initial encounter for open fracture|Nondisplaced fracture of first metatarsal bone, left foot, initial encounter for open fracture +C2867931|T037|AB|S92.315D|ICD10CM|Nondisp fx of 1st metatarsal bone, l ft, 7thD|Nondisp fx of 1st metatarsal bone, l ft, 7thD +C2867932|T037|AB|S92.315G|ICD10CM|Nondisp fx of 1st metatarsal bone, l ft, 7thG|Nondisp fx of 1st metatarsal bone, l ft, 7thG +C2867933|T037|AB|S92.315K|ICD10CM|Nondisp fx of 1st metatarsal bone, l ft, 7thK|Nondisp fx of 1st metatarsal bone, l ft, 7thK +C2867934|T037|AB|S92.315P|ICD10CM|Nondisp fx of 1st metatarsal bone, l ft, 7thP|Nondisp fx of 1st metatarsal bone, l ft, 7thP +C2867935|T037|AB|S92.315S|ICD10CM|Nondisp fx of first metatarsal bone, left foot, sequela|Nondisp fx of first metatarsal bone, left foot, sequela +C2867935|T037|PT|S92.315S|ICD10CM|Nondisplaced fracture of first metatarsal bone, left foot, sequela|Nondisplaced fracture of first metatarsal bone, left foot, sequela +C2867936|T037|AB|S92.316|ICD10CM|Nondisp fx of first metatarsal bone, unspecified foot|Nondisp fx of first metatarsal bone, unspecified foot +C2867936|T037|HT|S92.316|ICD10CM|Nondisplaced fracture of first metatarsal bone, unspecified foot|Nondisplaced fracture of first metatarsal bone, unspecified foot +C2867937|T037|AB|S92.316A|ICD10CM|Nondisp fx of first metatarsal bone, unsp foot, init|Nondisp fx of first metatarsal bone, unsp foot, init +C2867938|T037|AB|S92.316B|ICD10CM|Nondisp fx of 1st metatarsal bone, unsp ft, init for opn fx|Nondisp fx of 1st metatarsal bone, unsp ft, init for opn fx +C2867939|T037|AB|S92.316D|ICD10CM|Nondisp fx of 1st metatarsal bone, unsp ft, 7thD|Nondisp fx of 1st metatarsal bone, unsp ft, 7thD +C2867940|T037|AB|S92.316G|ICD10CM|Nondisp fx of 1st metatarsal bone, unsp ft, 7thG|Nondisp fx of 1st metatarsal bone, unsp ft, 7thG +C2867941|T037|AB|S92.316K|ICD10CM|Nondisp fx of 1st metatarsal bone, unsp ft, 7thK|Nondisp fx of 1st metatarsal bone, unsp ft, 7thK +C2867942|T037|AB|S92.316P|ICD10CM|Nondisp fx of 1st metatarsal bone, unsp ft, 7thP|Nondisp fx of 1st metatarsal bone, unsp ft, 7thP +C2867943|T037|AB|S92.316S|ICD10CM|Nondisp fx of first metatarsal bone, unsp foot, sequela|Nondisp fx of first metatarsal bone, unsp foot, sequela +C2867943|T037|PT|S92.316S|ICD10CM|Nondisplaced fracture of first metatarsal bone, unspecified foot, sequela|Nondisplaced fracture of first metatarsal bone, unspecified foot, sequela +C2867944|T037|HT|S92.32|ICD10CM|Fracture of second metatarsal bone|Fracture of second metatarsal bone +C2867944|T037|AB|S92.32|ICD10CM|Fracture of second metatarsal bone|Fracture of second metatarsal bone +C2867945|T037|AB|S92.321|ICD10CM|Displaced fracture of second metatarsal bone, right foot|Displaced fracture of second metatarsal bone, right foot +C2867945|T037|HT|S92.321|ICD10CM|Displaced fracture of second metatarsal bone, right foot|Displaced fracture of second metatarsal bone, right foot +C2867946|T037|AB|S92.321A|ICD10CM|Disp fx of second metatarsal bone, right foot, init|Disp fx of second metatarsal bone, right foot, init +C2867946|T037|PT|S92.321A|ICD10CM|Displaced fracture of second metatarsal bone, right foot, initial encounter for closed fracture|Displaced fracture of second metatarsal bone, right foot, initial encounter for closed fracture +C2867947|T037|AB|S92.321B|ICD10CM|Disp fx of second metatarsal bone, r foot, init for opn fx|Disp fx of second metatarsal bone, r foot, init for opn fx +C2867947|T037|PT|S92.321B|ICD10CM|Displaced fracture of second metatarsal bone, right foot, initial encounter for open fracture|Displaced fracture of second metatarsal bone, right foot, initial encounter for open fracture +C2867948|T037|AB|S92.321D|ICD10CM|Disp fx of 2nd metatarsal bone, r ft, 7thD|Disp fx of 2nd metatarsal bone, r ft, 7thD +C2867949|T037|AB|S92.321G|ICD10CM|Disp fx of 2nd metatarsal bone, r ft, 7thG|Disp fx of 2nd metatarsal bone, r ft, 7thG +C2867950|T037|AB|S92.321K|ICD10CM|Disp fx of 2nd metatarsal bone, r ft, subs for fx w nonunion|Disp fx of 2nd metatarsal bone, r ft, subs for fx w nonunion +C2867951|T037|AB|S92.321P|ICD10CM|Disp fx of 2nd metatarsal bone, r ft, subs for fx w malunion|Disp fx of 2nd metatarsal bone, r ft, subs for fx w malunion +C2867952|T037|AB|S92.321S|ICD10CM|Disp fx of second metatarsal bone, right foot, sequela|Disp fx of second metatarsal bone, right foot, sequela +C2867952|T037|PT|S92.321S|ICD10CM|Displaced fracture of second metatarsal bone, right foot, sequela|Displaced fracture of second metatarsal bone, right foot, sequela +C2867953|T037|AB|S92.322|ICD10CM|Displaced fracture of second metatarsal bone, left foot|Displaced fracture of second metatarsal bone, left foot +C2867953|T037|HT|S92.322|ICD10CM|Displaced fracture of second metatarsal bone, left foot|Displaced fracture of second metatarsal bone, left foot +C2867954|T037|AB|S92.322A|ICD10CM|Disp fx of second metatarsal bone, left foot, init|Disp fx of second metatarsal bone, left foot, init +C2867954|T037|PT|S92.322A|ICD10CM|Displaced fracture of second metatarsal bone, left foot, initial encounter for closed fracture|Displaced fracture of second metatarsal bone, left foot, initial encounter for closed fracture +C2867955|T037|AB|S92.322B|ICD10CM|Disp fx of second metatarsal bone, l foot, init for opn fx|Disp fx of second metatarsal bone, l foot, init for opn fx +C2867955|T037|PT|S92.322B|ICD10CM|Displaced fracture of second metatarsal bone, left foot, initial encounter for open fracture|Displaced fracture of second metatarsal bone, left foot, initial encounter for open fracture +C2867956|T037|AB|S92.322D|ICD10CM|Disp fx of 2nd metatarsal bone, l ft, 7thD|Disp fx of 2nd metatarsal bone, l ft, 7thD +C2867957|T037|AB|S92.322G|ICD10CM|Disp fx of 2nd metatarsal bone, l ft, 7thG|Disp fx of 2nd metatarsal bone, l ft, 7thG +C2867958|T037|AB|S92.322K|ICD10CM|Disp fx of 2nd metatarsal bone, l ft, subs for fx w nonunion|Disp fx of 2nd metatarsal bone, l ft, subs for fx w nonunion +C2867959|T037|AB|S92.322P|ICD10CM|Disp fx of 2nd metatarsal bone, l ft, subs for fx w malunion|Disp fx of 2nd metatarsal bone, l ft, subs for fx w malunion +C2867960|T037|AB|S92.322S|ICD10CM|Disp fx of second metatarsal bone, left foot, sequela|Disp fx of second metatarsal bone, left foot, sequela +C2867960|T037|PT|S92.322S|ICD10CM|Displaced fracture of second metatarsal bone, left foot, sequela|Displaced fracture of second metatarsal bone, left foot, sequela +C2867961|T037|AB|S92.323|ICD10CM|Disp fx of second metatarsal bone, unspecified foot|Disp fx of second metatarsal bone, unspecified foot +C2867961|T037|HT|S92.323|ICD10CM|Displaced fracture of second metatarsal bone, unspecified foot|Displaced fracture of second metatarsal bone, unspecified foot +C2867962|T037|AB|S92.323A|ICD10CM|Disp fx of second metatarsal bone, unsp foot, init|Disp fx of second metatarsal bone, unsp foot, init +C2867963|T037|AB|S92.323B|ICD10CM|Disp fx of 2nd metatarsal bone, unsp foot, init for opn fx|Disp fx of 2nd metatarsal bone, unsp foot, init for opn fx +C2867963|T037|PT|S92.323B|ICD10CM|Displaced fracture of second metatarsal bone, unspecified foot, initial encounter for open fracture|Displaced fracture of second metatarsal bone, unspecified foot, initial encounter for open fracture +C2867964|T037|AB|S92.323D|ICD10CM|Disp fx of 2nd metatarsal bone, unsp ft, 7thD|Disp fx of 2nd metatarsal bone, unsp ft, 7thD +C2867965|T037|AB|S92.323G|ICD10CM|Disp fx of 2nd metatarsal bone, unsp ft, 7thG|Disp fx of 2nd metatarsal bone, unsp ft, 7thG +C2867966|T037|AB|S92.323K|ICD10CM|Disp fx of 2nd metatarsal bone, unsp ft, 7thK|Disp fx of 2nd metatarsal bone, unsp ft, 7thK +C2867967|T037|AB|S92.323P|ICD10CM|Disp fx of 2nd metatarsal bone, unsp ft, 7thP|Disp fx of 2nd metatarsal bone, unsp ft, 7thP +C2867968|T037|AB|S92.323S|ICD10CM|Disp fx of second metatarsal bone, unspecified foot, sequela|Disp fx of second metatarsal bone, unspecified foot, sequela +C2867968|T037|PT|S92.323S|ICD10CM|Displaced fracture of second metatarsal bone, unspecified foot, sequela|Displaced fracture of second metatarsal bone, unspecified foot, sequela +C2867969|T037|AB|S92.324|ICD10CM|Nondisplaced fracture of second metatarsal bone, right foot|Nondisplaced fracture of second metatarsal bone, right foot +C2867969|T037|HT|S92.324|ICD10CM|Nondisplaced fracture of second metatarsal bone, right foot|Nondisplaced fracture of second metatarsal bone, right foot +C2867970|T037|AB|S92.324A|ICD10CM|Nondisp fx of second metatarsal bone, right foot, init|Nondisp fx of second metatarsal bone, right foot, init +C2867970|T037|PT|S92.324A|ICD10CM|Nondisplaced fracture of second metatarsal bone, right foot, initial encounter for closed fracture|Nondisplaced fracture of second metatarsal bone, right foot, initial encounter for closed fracture +C2867971|T037|AB|S92.324B|ICD10CM|Nondisp fx of 2nd metatarsal bone, r foot, init for opn fx|Nondisp fx of 2nd metatarsal bone, r foot, init for opn fx +C2867971|T037|PT|S92.324B|ICD10CM|Nondisplaced fracture of second metatarsal bone, right foot, initial encounter for open fracture|Nondisplaced fracture of second metatarsal bone, right foot, initial encounter for open fracture +C2867972|T037|AB|S92.324D|ICD10CM|Nondisp fx of 2nd metatarsal bone, r ft, 7thD|Nondisp fx of 2nd metatarsal bone, r ft, 7thD +C2867973|T037|AB|S92.324G|ICD10CM|Nondisp fx of 2nd metatarsal bone, r ft, 7thG|Nondisp fx of 2nd metatarsal bone, r ft, 7thG +C2867974|T037|AB|S92.324K|ICD10CM|Nondisp fx of 2nd metatarsal bone, r ft, 7thK|Nondisp fx of 2nd metatarsal bone, r ft, 7thK +C2867975|T037|AB|S92.324P|ICD10CM|Nondisp fx of 2nd metatarsal bone, r ft, 7thP|Nondisp fx of 2nd metatarsal bone, r ft, 7thP +C2867976|T037|AB|S92.324S|ICD10CM|Nondisp fx of second metatarsal bone, right foot, sequela|Nondisp fx of second metatarsal bone, right foot, sequela +C2867976|T037|PT|S92.324S|ICD10CM|Nondisplaced fracture of second metatarsal bone, right foot, sequela|Nondisplaced fracture of second metatarsal bone, right foot, sequela +C2867977|T037|AB|S92.325|ICD10CM|Nondisplaced fracture of second metatarsal bone, left foot|Nondisplaced fracture of second metatarsal bone, left foot +C2867977|T037|HT|S92.325|ICD10CM|Nondisplaced fracture of second metatarsal bone, left foot|Nondisplaced fracture of second metatarsal bone, left foot +C2867978|T037|AB|S92.325A|ICD10CM|Nondisp fx of second metatarsal bone, left foot, init|Nondisp fx of second metatarsal bone, left foot, init +C2867978|T037|PT|S92.325A|ICD10CM|Nondisplaced fracture of second metatarsal bone, left foot, initial encounter for closed fracture|Nondisplaced fracture of second metatarsal bone, left foot, initial encounter for closed fracture +C2867979|T037|AB|S92.325B|ICD10CM|Nondisp fx of 2nd metatarsal bone, l foot, init for opn fx|Nondisp fx of 2nd metatarsal bone, l foot, init for opn fx +C2867979|T037|PT|S92.325B|ICD10CM|Nondisplaced fracture of second metatarsal bone, left foot, initial encounter for open fracture|Nondisplaced fracture of second metatarsal bone, left foot, initial encounter for open fracture +C2867980|T037|AB|S92.325D|ICD10CM|Nondisp fx of 2nd metatarsal bone, l ft, 7thD|Nondisp fx of 2nd metatarsal bone, l ft, 7thD +C2867981|T037|AB|S92.325G|ICD10CM|Nondisp fx of 2nd metatarsal bone, l ft, 7thG|Nondisp fx of 2nd metatarsal bone, l ft, 7thG +C2867982|T037|AB|S92.325K|ICD10CM|Nondisp fx of 2nd metatarsal bone, l ft, 7thK|Nondisp fx of 2nd metatarsal bone, l ft, 7thK +C2867983|T037|AB|S92.325P|ICD10CM|Nondisp fx of 2nd metatarsal bone, l ft, 7thP|Nondisp fx of 2nd metatarsal bone, l ft, 7thP +C2867984|T037|AB|S92.325S|ICD10CM|Nondisp fx of second metatarsal bone, left foot, sequela|Nondisp fx of second metatarsal bone, left foot, sequela +C2867984|T037|PT|S92.325S|ICD10CM|Nondisplaced fracture of second metatarsal bone, left foot, sequela|Nondisplaced fracture of second metatarsal bone, left foot, sequela +C2867985|T037|AB|S92.326|ICD10CM|Nondisp fx of second metatarsal bone, unspecified foot|Nondisp fx of second metatarsal bone, unspecified foot +C2867985|T037|HT|S92.326|ICD10CM|Nondisplaced fracture of second metatarsal bone, unspecified foot|Nondisplaced fracture of second metatarsal bone, unspecified foot +C2867986|T037|AB|S92.326A|ICD10CM|Nondisp fx of second metatarsal bone, unsp foot, init|Nondisp fx of second metatarsal bone, unsp foot, init +C2867987|T037|AB|S92.326B|ICD10CM|Nondisp fx of 2nd metatarsal bone, unsp ft, init for opn fx|Nondisp fx of 2nd metatarsal bone, unsp ft, init for opn fx +C2867988|T037|AB|S92.326D|ICD10CM|Nondisp fx of 2nd metatarsal bone, unsp ft, 7thD|Nondisp fx of 2nd metatarsal bone, unsp ft, 7thD +C2867989|T037|AB|S92.326G|ICD10CM|Nondisp fx of 2nd metatarsal bone, unsp ft, 7thG|Nondisp fx of 2nd metatarsal bone, unsp ft, 7thG +C2867990|T037|AB|S92.326K|ICD10CM|Nondisp fx of 2nd metatarsal bone, unsp ft, 7thK|Nondisp fx of 2nd metatarsal bone, unsp ft, 7thK +C2867991|T037|AB|S92.326P|ICD10CM|Nondisp fx of 2nd metatarsal bone, unsp ft, 7thP|Nondisp fx of 2nd metatarsal bone, unsp ft, 7thP +C2867992|T037|AB|S92.326S|ICD10CM|Nondisp fx of second metatarsal bone, unsp foot, sequela|Nondisp fx of second metatarsal bone, unsp foot, sequela +C2867992|T037|PT|S92.326S|ICD10CM|Nondisplaced fracture of second metatarsal bone, unspecified foot, sequela|Nondisplaced fracture of second metatarsal bone, unspecified foot, sequela +C2867993|T037|HT|S92.33|ICD10CM|Fracture of third metatarsal bone|Fracture of third metatarsal bone +C2867993|T037|AB|S92.33|ICD10CM|Fracture of third metatarsal bone|Fracture of third metatarsal bone +C2867994|T037|AB|S92.331|ICD10CM|Displaced fracture of third metatarsal bone, right foot|Displaced fracture of third metatarsal bone, right foot +C2867994|T037|HT|S92.331|ICD10CM|Displaced fracture of third metatarsal bone, right foot|Displaced fracture of third metatarsal bone, right foot +C2867995|T037|AB|S92.331A|ICD10CM|Disp fx of third metatarsal bone, right foot, init|Disp fx of third metatarsal bone, right foot, init +C2867995|T037|PT|S92.331A|ICD10CM|Displaced fracture of third metatarsal bone, right foot, initial encounter for closed fracture|Displaced fracture of third metatarsal bone, right foot, initial encounter for closed fracture +C2867996|T037|AB|S92.331B|ICD10CM|Disp fx of third metatarsal bone, r foot, init for opn fx|Disp fx of third metatarsal bone, r foot, init for opn fx +C2867996|T037|PT|S92.331B|ICD10CM|Displaced fracture of third metatarsal bone, right foot, initial encounter for open fracture|Displaced fracture of third metatarsal bone, right foot, initial encounter for open fracture +C2867997|T037|AB|S92.331D|ICD10CM|Disp fx of 3rd metatarsal bone, r ft, 7thD|Disp fx of 3rd metatarsal bone, r ft, 7thD +C2867998|T037|AB|S92.331G|ICD10CM|Disp fx of 3rd metatarsal bone, r ft, 7thG|Disp fx of 3rd metatarsal bone, r ft, 7thG +C2867999|T037|AB|S92.331K|ICD10CM|Disp fx of 3rd metatarsal bone, r ft, subs for fx w nonunion|Disp fx of 3rd metatarsal bone, r ft, subs for fx w nonunion +C2868000|T037|AB|S92.331P|ICD10CM|Disp fx of 3rd metatarsal bone, r ft, subs for fx w malunion|Disp fx of 3rd metatarsal bone, r ft, subs for fx w malunion +C2868001|T037|AB|S92.331S|ICD10CM|Disp fx of third metatarsal bone, right foot, sequela|Disp fx of third metatarsal bone, right foot, sequela +C2868001|T037|PT|S92.331S|ICD10CM|Displaced fracture of third metatarsal bone, right foot, sequela|Displaced fracture of third metatarsal bone, right foot, sequela +C2868002|T037|AB|S92.332|ICD10CM|Displaced fracture of third metatarsal bone, left foot|Displaced fracture of third metatarsal bone, left foot +C2868002|T037|HT|S92.332|ICD10CM|Displaced fracture of third metatarsal bone, left foot|Displaced fracture of third metatarsal bone, left foot +C2868003|T037|AB|S92.332A|ICD10CM|Disp fx of third metatarsal bone, left foot, init|Disp fx of third metatarsal bone, left foot, init +C2868003|T037|PT|S92.332A|ICD10CM|Displaced fracture of third metatarsal bone, left foot, initial encounter for closed fracture|Displaced fracture of third metatarsal bone, left foot, initial encounter for closed fracture +C2868004|T037|AB|S92.332B|ICD10CM|Disp fx of third metatarsal bone, left foot, init for opn fx|Disp fx of third metatarsal bone, left foot, init for opn fx +C2868004|T037|PT|S92.332B|ICD10CM|Displaced fracture of third metatarsal bone, left foot, initial encounter for open fracture|Displaced fracture of third metatarsal bone, left foot, initial encounter for open fracture +C2868005|T037|AB|S92.332D|ICD10CM|Disp fx of 3rd metatarsal bone, l ft, 7thD|Disp fx of 3rd metatarsal bone, l ft, 7thD +C2868006|T037|AB|S92.332G|ICD10CM|Disp fx of 3rd metatarsal bone, l ft, 7thG|Disp fx of 3rd metatarsal bone, l ft, 7thG +C2868007|T037|AB|S92.332K|ICD10CM|Disp fx of 3rd metatarsal bone, l ft, subs for fx w nonunion|Disp fx of 3rd metatarsal bone, l ft, subs for fx w nonunion +C2868008|T037|AB|S92.332P|ICD10CM|Disp fx of 3rd metatarsal bone, l ft, subs for fx w malunion|Disp fx of 3rd metatarsal bone, l ft, subs for fx w malunion +C2868009|T037|AB|S92.332S|ICD10CM|Disp fx of third metatarsal bone, left foot, sequela|Disp fx of third metatarsal bone, left foot, sequela +C2868009|T037|PT|S92.332S|ICD10CM|Displaced fracture of third metatarsal bone, left foot, sequela|Displaced fracture of third metatarsal bone, left foot, sequela +C2868010|T037|AB|S92.333|ICD10CM|Disp fx of third metatarsal bone, unspecified foot|Disp fx of third metatarsal bone, unspecified foot +C2868010|T037|HT|S92.333|ICD10CM|Displaced fracture of third metatarsal bone, unspecified foot|Displaced fracture of third metatarsal bone, unspecified foot +C2868011|T037|AB|S92.333A|ICD10CM|Disp fx of third metatarsal bone, unsp foot, init|Disp fx of third metatarsal bone, unsp foot, init +C2868011|T037|PT|S92.333A|ICD10CM|Displaced fracture of third metatarsal bone, unspecified foot, initial encounter for closed fracture|Displaced fracture of third metatarsal bone, unspecified foot, initial encounter for closed fracture +C2868012|T037|AB|S92.333B|ICD10CM|Disp fx of third metatarsal bone, unsp foot, init for opn fx|Disp fx of third metatarsal bone, unsp foot, init for opn fx +C2868012|T037|PT|S92.333B|ICD10CM|Displaced fracture of third metatarsal bone, unspecified foot, initial encounter for open fracture|Displaced fracture of third metatarsal bone, unspecified foot, initial encounter for open fracture +C2868013|T037|AB|S92.333D|ICD10CM|Disp fx of 3rd metatarsal bone, unsp ft, 7thD|Disp fx of 3rd metatarsal bone, unsp ft, 7thD +C2868014|T037|AB|S92.333G|ICD10CM|Disp fx of 3rd metatarsal bone, unsp ft, 7thG|Disp fx of 3rd metatarsal bone, unsp ft, 7thG +C2868015|T037|AB|S92.333K|ICD10CM|Disp fx of 3rd metatarsal bone, unsp ft, 7thK|Disp fx of 3rd metatarsal bone, unsp ft, 7thK +C2868016|T037|AB|S92.333P|ICD10CM|Disp fx of 3rd metatarsal bone, unsp ft, 7thP|Disp fx of 3rd metatarsal bone, unsp ft, 7thP +C2868017|T037|AB|S92.333S|ICD10CM|Disp fx of third metatarsal bone, unspecified foot, sequela|Disp fx of third metatarsal bone, unspecified foot, sequela +C2868017|T037|PT|S92.333S|ICD10CM|Displaced fracture of third metatarsal bone, unspecified foot, sequela|Displaced fracture of third metatarsal bone, unspecified foot, sequela +C2868018|T037|AB|S92.334|ICD10CM|Nondisplaced fracture of third metatarsal bone, right foot|Nondisplaced fracture of third metatarsal bone, right foot +C2868018|T037|HT|S92.334|ICD10CM|Nondisplaced fracture of third metatarsal bone, right foot|Nondisplaced fracture of third metatarsal bone, right foot +C2868019|T037|AB|S92.334A|ICD10CM|Nondisp fx of third metatarsal bone, right foot, init|Nondisp fx of third metatarsal bone, right foot, init +C2868019|T037|PT|S92.334A|ICD10CM|Nondisplaced fracture of third metatarsal bone, right foot, initial encounter for closed fracture|Nondisplaced fracture of third metatarsal bone, right foot, initial encounter for closed fracture +C2868020|T037|AB|S92.334B|ICD10CM|Nondisp fx of third metatarsal bone, r foot, init for opn fx|Nondisp fx of third metatarsal bone, r foot, init for opn fx +C2868020|T037|PT|S92.334B|ICD10CM|Nondisplaced fracture of third metatarsal bone, right foot, initial encounter for open fracture|Nondisplaced fracture of third metatarsal bone, right foot, initial encounter for open fracture +C2868021|T037|AB|S92.334D|ICD10CM|Nondisp fx of 3rd metatarsal bone, r ft, 7thD|Nondisp fx of 3rd metatarsal bone, r ft, 7thD +C2868022|T037|AB|S92.334G|ICD10CM|Nondisp fx of 3rd metatarsal bone, r ft, 7thG|Nondisp fx of 3rd metatarsal bone, r ft, 7thG +C2868023|T037|AB|S92.334K|ICD10CM|Nondisp fx of 3rd metatarsal bone, r ft, 7thK|Nondisp fx of 3rd metatarsal bone, r ft, 7thK +C2868024|T037|AB|S92.334P|ICD10CM|Nondisp fx of 3rd metatarsal bone, r ft, 7thP|Nondisp fx of 3rd metatarsal bone, r ft, 7thP +C2868025|T037|AB|S92.334S|ICD10CM|Nondisp fx of third metatarsal bone, right foot, sequela|Nondisp fx of third metatarsal bone, right foot, sequela +C2868025|T037|PT|S92.334S|ICD10CM|Nondisplaced fracture of third metatarsal bone, right foot, sequela|Nondisplaced fracture of third metatarsal bone, right foot, sequela +C2868026|T037|AB|S92.335|ICD10CM|Nondisplaced fracture of third metatarsal bone, left foot|Nondisplaced fracture of third metatarsal bone, left foot +C2868026|T037|HT|S92.335|ICD10CM|Nondisplaced fracture of third metatarsal bone, left foot|Nondisplaced fracture of third metatarsal bone, left foot +C2868027|T037|AB|S92.335A|ICD10CM|Nondisp fx of third metatarsal bone, left foot, init|Nondisp fx of third metatarsal bone, left foot, init +C2868027|T037|PT|S92.335A|ICD10CM|Nondisplaced fracture of third metatarsal bone, left foot, initial encounter for closed fracture|Nondisplaced fracture of third metatarsal bone, left foot, initial encounter for closed fracture +C2868028|T037|AB|S92.335B|ICD10CM|Nondisp fx of third metatarsal bone, l foot, init for opn fx|Nondisp fx of third metatarsal bone, l foot, init for opn fx +C2868028|T037|PT|S92.335B|ICD10CM|Nondisplaced fracture of third metatarsal bone, left foot, initial encounter for open fracture|Nondisplaced fracture of third metatarsal bone, left foot, initial encounter for open fracture +C2868029|T037|AB|S92.335D|ICD10CM|Nondisp fx of 3rd metatarsal bone, l ft, 7thD|Nondisp fx of 3rd metatarsal bone, l ft, 7thD +C2868030|T037|AB|S92.335G|ICD10CM|Nondisp fx of 3rd metatarsal bone, l ft, 7thG|Nondisp fx of 3rd metatarsal bone, l ft, 7thG +C2868031|T037|AB|S92.335K|ICD10CM|Nondisp fx of 3rd metatarsal bone, l ft, 7thK|Nondisp fx of 3rd metatarsal bone, l ft, 7thK +C2868032|T037|AB|S92.335P|ICD10CM|Nondisp fx of 3rd metatarsal bone, l ft, 7thP|Nondisp fx of 3rd metatarsal bone, l ft, 7thP +C2868033|T037|AB|S92.335S|ICD10CM|Nondisp fx of third metatarsal bone, left foot, sequela|Nondisp fx of third metatarsal bone, left foot, sequela +C2868033|T037|PT|S92.335S|ICD10CM|Nondisplaced fracture of third metatarsal bone, left foot, sequela|Nondisplaced fracture of third metatarsal bone, left foot, sequela +C2868034|T037|AB|S92.336|ICD10CM|Nondisp fx of third metatarsal bone, unspecified foot|Nondisp fx of third metatarsal bone, unspecified foot +C2868034|T037|HT|S92.336|ICD10CM|Nondisplaced fracture of third metatarsal bone, unspecified foot|Nondisplaced fracture of third metatarsal bone, unspecified foot +C2868035|T037|AB|S92.336A|ICD10CM|Nondisp fx of third metatarsal bone, unsp foot, init|Nondisp fx of third metatarsal bone, unsp foot, init +C2868036|T037|AB|S92.336B|ICD10CM|Nondisp fx of 3rd metatarsal bone, unsp ft, init for opn fx|Nondisp fx of 3rd metatarsal bone, unsp ft, init for opn fx +C2868037|T037|AB|S92.336D|ICD10CM|Nondisp fx of 3rd metatarsal bone, unsp ft, 7thD|Nondisp fx of 3rd metatarsal bone, unsp ft, 7thD +C2868038|T037|AB|S92.336G|ICD10CM|Nondisp fx of 3rd metatarsal bone, unsp ft, 7thG|Nondisp fx of 3rd metatarsal bone, unsp ft, 7thG +C2868039|T037|AB|S92.336K|ICD10CM|Nondisp fx of 3rd metatarsal bone, unsp ft, 7thK|Nondisp fx of 3rd metatarsal bone, unsp ft, 7thK +C2868040|T037|AB|S92.336P|ICD10CM|Nondisp fx of 3rd metatarsal bone, unsp ft, 7thP|Nondisp fx of 3rd metatarsal bone, unsp ft, 7thP +C2868041|T037|AB|S92.336S|ICD10CM|Nondisp fx of third metatarsal bone, unsp foot, sequela|Nondisp fx of third metatarsal bone, unsp foot, sequela +C2868041|T037|PT|S92.336S|ICD10CM|Nondisplaced fracture of third metatarsal bone, unspecified foot, sequela|Nondisplaced fracture of third metatarsal bone, unspecified foot, sequela +C2868042|T037|HT|S92.34|ICD10CM|Fracture of fourth metatarsal bone|Fracture of fourth metatarsal bone +C2868042|T037|AB|S92.34|ICD10CM|Fracture of fourth metatarsal bone|Fracture of fourth metatarsal bone +C2868043|T037|AB|S92.341|ICD10CM|Displaced fracture of fourth metatarsal bone, right foot|Displaced fracture of fourth metatarsal bone, right foot +C2868043|T037|HT|S92.341|ICD10CM|Displaced fracture of fourth metatarsal bone, right foot|Displaced fracture of fourth metatarsal bone, right foot +C2868044|T037|AB|S92.341A|ICD10CM|Disp fx of fourth metatarsal bone, right foot, init|Disp fx of fourth metatarsal bone, right foot, init +C2868044|T037|PT|S92.341A|ICD10CM|Displaced fracture of fourth metatarsal bone, right foot, initial encounter for closed fracture|Displaced fracture of fourth metatarsal bone, right foot, initial encounter for closed fracture +C2868045|T037|AB|S92.341B|ICD10CM|Disp fx of fourth metatarsal bone, r foot, init for opn fx|Disp fx of fourth metatarsal bone, r foot, init for opn fx +C2868045|T037|PT|S92.341B|ICD10CM|Displaced fracture of fourth metatarsal bone, right foot, initial encounter for open fracture|Displaced fracture of fourth metatarsal bone, right foot, initial encounter for open fracture +C2868046|T037|AB|S92.341D|ICD10CM|Disp fx of 4th metatarsal bone, r ft, 7thD|Disp fx of 4th metatarsal bone, r ft, 7thD +C2868047|T037|AB|S92.341G|ICD10CM|Disp fx of 4th metatarsal bone, r ft, 7thG|Disp fx of 4th metatarsal bone, r ft, 7thG +C2868048|T037|AB|S92.341K|ICD10CM|Disp fx of 4th metatarsal bone, r ft, subs for fx w nonunion|Disp fx of 4th metatarsal bone, r ft, subs for fx w nonunion +C2868049|T037|AB|S92.341P|ICD10CM|Disp fx of 4th metatarsal bone, r ft, subs for fx w malunion|Disp fx of 4th metatarsal bone, r ft, subs for fx w malunion +C2868050|T037|AB|S92.341S|ICD10CM|Disp fx of fourth metatarsal bone, right foot, sequela|Disp fx of fourth metatarsal bone, right foot, sequela +C2868050|T037|PT|S92.341S|ICD10CM|Displaced fracture of fourth metatarsal bone, right foot, sequela|Displaced fracture of fourth metatarsal bone, right foot, sequela +C2868051|T037|AB|S92.342|ICD10CM|Displaced fracture of fourth metatarsal bone, left foot|Displaced fracture of fourth metatarsal bone, left foot +C2868051|T037|HT|S92.342|ICD10CM|Displaced fracture of fourth metatarsal bone, left foot|Displaced fracture of fourth metatarsal bone, left foot +C2868052|T037|AB|S92.342A|ICD10CM|Disp fx of fourth metatarsal bone, left foot, init|Disp fx of fourth metatarsal bone, left foot, init +C2868052|T037|PT|S92.342A|ICD10CM|Displaced fracture of fourth metatarsal bone, left foot, initial encounter for closed fracture|Displaced fracture of fourth metatarsal bone, left foot, initial encounter for closed fracture +C2868053|T037|AB|S92.342B|ICD10CM|Disp fx of fourth metatarsal bone, l foot, init for opn fx|Disp fx of fourth metatarsal bone, l foot, init for opn fx +C2868053|T037|PT|S92.342B|ICD10CM|Displaced fracture of fourth metatarsal bone, left foot, initial encounter for open fracture|Displaced fracture of fourth metatarsal bone, left foot, initial encounter for open fracture +C2868054|T037|AB|S92.342D|ICD10CM|Disp fx of 4th metatarsal bone, l ft, 7thD|Disp fx of 4th metatarsal bone, l ft, 7thD +C2868055|T037|AB|S92.342G|ICD10CM|Disp fx of 4th metatarsal bone, l ft, 7thG|Disp fx of 4th metatarsal bone, l ft, 7thG +C2868056|T037|AB|S92.342K|ICD10CM|Disp fx of 4th metatarsal bone, l ft, subs for fx w nonunion|Disp fx of 4th metatarsal bone, l ft, subs for fx w nonunion +C2868057|T037|AB|S92.342P|ICD10CM|Disp fx of 4th metatarsal bone, l ft, subs for fx w malunion|Disp fx of 4th metatarsal bone, l ft, subs for fx w malunion +C2868058|T037|AB|S92.342S|ICD10CM|Disp fx of fourth metatarsal bone, left foot, sequela|Disp fx of fourth metatarsal bone, left foot, sequela +C2868058|T037|PT|S92.342S|ICD10CM|Displaced fracture of fourth metatarsal bone, left foot, sequela|Displaced fracture of fourth metatarsal bone, left foot, sequela +C2868059|T037|AB|S92.343|ICD10CM|Disp fx of fourth metatarsal bone, unspecified foot|Disp fx of fourth metatarsal bone, unspecified foot +C2868059|T037|HT|S92.343|ICD10CM|Displaced fracture of fourth metatarsal bone, unspecified foot|Displaced fracture of fourth metatarsal bone, unspecified foot +C2868060|T037|AB|S92.343A|ICD10CM|Disp fx of fourth metatarsal bone, unsp foot, init|Disp fx of fourth metatarsal bone, unsp foot, init +C2868061|T037|AB|S92.343B|ICD10CM|Disp fx of 4th metatarsal bone, unsp foot, init for opn fx|Disp fx of 4th metatarsal bone, unsp foot, init for opn fx +C2868061|T037|PT|S92.343B|ICD10CM|Displaced fracture of fourth metatarsal bone, unspecified foot, initial encounter for open fracture|Displaced fracture of fourth metatarsal bone, unspecified foot, initial encounter for open fracture +C2868062|T037|AB|S92.343D|ICD10CM|Disp fx of 4th metatarsal bone, unsp ft, 7thD|Disp fx of 4th metatarsal bone, unsp ft, 7thD +C2868063|T037|AB|S92.343G|ICD10CM|Disp fx of 4th metatarsal bone, unsp ft, 7thG|Disp fx of 4th metatarsal bone, unsp ft, 7thG +C2868064|T037|AB|S92.343K|ICD10CM|Disp fx of 4th metatarsal bone, unsp ft, 7thK|Disp fx of 4th metatarsal bone, unsp ft, 7thK +C2868065|T037|AB|S92.343P|ICD10CM|Disp fx of 4th metatarsal bone, unsp ft, 7thP|Disp fx of 4th metatarsal bone, unsp ft, 7thP +C2868066|T037|AB|S92.343S|ICD10CM|Disp fx of fourth metatarsal bone, unspecified foot, sequela|Disp fx of fourth metatarsal bone, unspecified foot, sequela +C2868066|T037|PT|S92.343S|ICD10CM|Displaced fracture of fourth metatarsal bone, unspecified foot, sequela|Displaced fracture of fourth metatarsal bone, unspecified foot, sequela +C2868067|T037|AB|S92.344|ICD10CM|Nondisplaced fracture of fourth metatarsal bone, right foot|Nondisplaced fracture of fourth metatarsal bone, right foot +C2868067|T037|HT|S92.344|ICD10CM|Nondisplaced fracture of fourth metatarsal bone, right foot|Nondisplaced fracture of fourth metatarsal bone, right foot +C2868068|T037|AB|S92.344A|ICD10CM|Nondisp fx of fourth metatarsal bone, right foot, init|Nondisp fx of fourth metatarsal bone, right foot, init +C2868068|T037|PT|S92.344A|ICD10CM|Nondisplaced fracture of fourth metatarsal bone, right foot, initial encounter for closed fracture|Nondisplaced fracture of fourth metatarsal bone, right foot, initial encounter for closed fracture +C2868069|T037|AB|S92.344B|ICD10CM|Nondisp fx of 4th metatarsal bone, r foot, init for opn fx|Nondisp fx of 4th metatarsal bone, r foot, init for opn fx +C2868069|T037|PT|S92.344B|ICD10CM|Nondisplaced fracture of fourth metatarsal bone, right foot, initial encounter for open fracture|Nondisplaced fracture of fourth metatarsal bone, right foot, initial encounter for open fracture +C2868070|T037|AB|S92.344D|ICD10CM|Nondisp fx of 4th metatarsal bone, r ft, 7thD|Nondisp fx of 4th metatarsal bone, r ft, 7thD +C2868071|T037|AB|S92.344G|ICD10CM|Nondisp fx of 4th metatarsal bone, r ft, 7thG|Nondisp fx of 4th metatarsal bone, r ft, 7thG +C2868072|T037|AB|S92.344K|ICD10CM|Nondisp fx of 4th metatarsal bone, r ft, 7thK|Nondisp fx of 4th metatarsal bone, r ft, 7thK +C2868073|T037|AB|S92.344P|ICD10CM|Nondisp fx of 4th metatarsal bone, r ft, 7thP|Nondisp fx of 4th metatarsal bone, r ft, 7thP +C2868074|T037|AB|S92.344S|ICD10CM|Nondisp fx of fourth metatarsal bone, right foot, sequela|Nondisp fx of fourth metatarsal bone, right foot, sequela +C2868074|T037|PT|S92.344S|ICD10CM|Nondisplaced fracture of fourth metatarsal bone, right foot, sequela|Nondisplaced fracture of fourth metatarsal bone, right foot, sequela +C2868075|T037|AB|S92.345|ICD10CM|Nondisplaced fracture of fourth metatarsal bone, left foot|Nondisplaced fracture of fourth metatarsal bone, left foot +C2868075|T037|HT|S92.345|ICD10CM|Nondisplaced fracture of fourth metatarsal bone, left foot|Nondisplaced fracture of fourth metatarsal bone, left foot +C2868076|T037|AB|S92.345A|ICD10CM|Nondisp fx of fourth metatarsal bone, left foot, init|Nondisp fx of fourth metatarsal bone, left foot, init +C2868076|T037|PT|S92.345A|ICD10CM|Nondisplaced fracture of fourth metatarsal bone, left foot, initial encounter for closed fracture|Nondisplaced fracture of fourth metatarsal bone, left foot, initial encounter for closed fracture +C2868077|T037|AB|S92.345B|ICD10CM|Nondisp fx of 4th metatarsal bone, l foot, init for opn fx|Nondisp fx of 4th metatarsal bone, l foot, init for opn fx +C2868077|T037|PT|S92.345B|ICD10CM|Nondisplaced fracture of fourth metatarsal bone, left foot, initial encounter for open fracture|Nondisplaced fracture of fourth metatarsal bone, left foot, initial encounter for open fracture +C2868078|T037|AB|S92.345D|ICD10CM|Nondisp fx of 4th metatarsal bone, l ft, 7thD|Nondisp fx of 4th metatarsal bone, l ft, 7thD +C2868079|T037|AB|S92.345G|ICD10CM|Nondisp fx of 4th metatarsal bone, l ft, 7thG|Nondisp fx of 4th metatarsal bone, l ft, 7thG +C2868080|T037|AB|S92.345K|ICD10CM|Nondisp fx of 4th metatarsal bone, l ft, 7thK|Nondisp fx of 4th metatarsal bone, l ft, 7thK +C2868081|T037|AB|S92.345P|ICD10CM|Nondisp fx of 4th metatarsal bone, l ft, 7thP|Nondisp fx of 4th metatarsal bone, l ft, 7thP +C2868082|T037|AB|S92.345S|ICD10CM|Nondisp fx of fourth metatarsal bone, left foot, sequela|Nondisp fx of fourth metatarsal bone, left foot, sequela +C2868082|T037|PT|S92.345S|ICD10CM|Nondisplaced fracture of fourth metatarsal bone, left foot, sequela|Nondisplaced fracture of fourth metatarsal bone, left foot, sequela +C2868083|T037|AB|S92.346|ICD10CM|Nondisp fx of fourth metatarsal bone, unspecified foot|Nondisp fx of fourth metatarsal bone, unspecified foot +C2868083|T037|HT|S92.346|ICD10CM|Nondisplaced fracture of fourth metatarsal bone, unspecified foot|Nondisplaced fracture of fourth metatarsal bone, unspecified foot +C2868084|T037|AB|S92.346A|ICD10CM|Nondisp fx of fourth metatarsal bone, unsp foot, init|Nondisp fx of fourth metatarsal bone, unsp foot, init +C2868085|T037|AB|S92.346B|ICD10CM|Nondisp fx of 4th metatarsal bone, unsp ft, init for opn fx|Nondisp fx of 4th metatarsal bone, unsp ft, init for opn fx +C2868086|T037|AB|S92.346D|ICD10CM|Nondisp fx of 4th metatarsal bone, unsp ft, 7thD|Nondisp fx of 4th metatarsal bone, unsp ft, 7thD +C2868087|T037|AB|S92.346G|ICD10CM|Nondisp fx of 4th metatarsal bone, unsp ft, 7thG|Nondisp fx of 4th metatarsal bone, unsp ft, 7thG +C2868088|T037|AB|S92.346K|ICD10CM|Nondisp fx of 4th metatarsal bone, unsp ft, 7thK|Nondisp fx of 4th metatarsal bone, unsp ft, 7thK +C2868089|T037|AB|S92.346P|ICD10CM|Nondisp fx of 4th metatarsal bone, unsp ft, 7thP|Nondisp fx of 4th metatarsal bone, unsp ft, 7thP +C2868090|T037|AB|S92.346S|ICD10CM|Nondisp fx of fourth metatarsal bone, unsp foot, sequela|Nondisp fx of fourth metatarsal bone, unsp foot, sequela +C2868090|T037|PT|S92.346S|ICD10CM|Nondisplaced fracture of fourth metatarsal bone, unspecified foot, sequela|Nondisplaced fracture of fourth metatarsal bone, unspecified foot, sequela +C2868091|T037|AB|S92.35|ICD10CM|Fracture of fifth metatarsal bone|Fracture of fifth metatarsal bone +C2868091|T037|HT|S92.35|ICD10CM|Fracture of fifth metatarsal bone|Fracture of fifth metatarsal bone +C2868092|T037|AB|S92.351|ICD10CM|Displaced fracture of fifth metatarsal bone, right foot|Displaced fracture of fifth metatarsal bone, right foot +C2868092|T037|HT|S92.351|ICD10CM|Displaced fracture of fifth metatarsal bone, right foot|Displaced fracture of fifth metatarsal bone, right foot +C2868093|T037|AB|S92.351A|ICD10CM|Disp fx of fifth metatarsal bone, right foot, init|Disp fx of fifth metatarsal bone, right foot, init +C2868093|T037|PT|S92.351A|ICD10CM|Displaced fracture of fifth metatarsal bone, right foot, initial encounter for closed fracture|Displaced fracture of fifth metatarsal bone, right foot, initial encounter for closed fracture +C2868094|T037|AB|S92.351B|ICD10CM|Disp fx of fifth metatarsal bone, r foot, init for opn fx|Disp fx of fifth metatarsal bone, r foot, init for opn fx +C2868094|T037|PT|S92.351B|ICD10CM|Displaced fracture of fifth metatarsal bone, right foot, initial encounter for open fracture|Displaced fracture of fifth metatarsal bone, right foot, initial encounter for open fracture +C2868095|T037|AB|S92.351D|ICD10CM|Disp fx of 5th metatarsal bone, r ft, 7thD|Disp fx of 5th metatarsal bone, r ft, 7thD +C2868096|T037|AB|S92.351G|ICD10CM|Disp fx of 5th metatarsal bone, r ft, 7thG|Disp fx of 5th metatarsal bone, r ft, 7thG +C2868097|T037|AB|S92.351K|ICD10CM|Disp fx of 5th metatarsal bone, r ft, subs for fx w nonunion|Disp fx of 5th metatarsal bone, r ft, subs for fx w nonunion +C2868098|T037|AB|S92.351P|ICD10CM|Disp fx of 5th metatarsal bone, r ft, subs for fx w malunion|Disp fx of 5th metatarsal bone, r ft, subs for fx w malunion +C2868099|T037|AB|S92.351S|ICD10CM|Disp fx of fifth metatarsal bone, right foot, sequela|Disp fx of fifth metatarsal bone, right foot, sequela +C2868099|T037|PT|S92.351S|ICD10CM|Displaced fracture of fifth metatarsal bone, right foot, sequela|Displaced fracture of fifth metatarsal bone, right foot, sequela +C2868100|T037|AB|S92.352|ICD10CM|Displaced fracture of fifth metatarsal bone, left foot|Displaced fracture of fifth metatarsal bone, left foot +C2868100|T037|HT|S92.352|ICD10CM|Displaced fracture of fifth metatarsal bone, left foot|Displaced fracture of fifth metatarsal bone, left foot +C2868101|T037|AB|S92.352A|ICD10CM|Disp fx of fifth metatarsal bone, left foot, init|Disp fx of fifth metatarsal bone, left foot, init +C2868101|T037|PT|S92.352A|ICD10CM|Displaced fracture of fifth metatarsal bone, left foot, initial encounter for closed fracture|Displaced fracture of fifth metatarsal bone, left foot, initial encounter for closed fracture +C2868102|T037|AB|S92.352B|ICD10CM|Disp fx of fifth metatarsal bone, left foot, init for opn fx|Disp fx of fifth metatarsal bone, left foot, init for opn fx +C2868102|T037|PT|S92.352B|ICD10CM|Displaced fracture of fifth metatarsal bone, left foot, initial encounter for open fracture|Displaced fracture of fifth metatarsal bone, left foot, initial encounter for open fracture +C2868103|T037|AB|S92.352D|ICD10CM|Disp fx of 5th metatarsal bone, l ft, 7thD|Disp fx of 5th metatarsal bone, l ft, 7thD +C2868104|T037|AB|S92.352G|ICD10CM|Disp fx of 5th metatarsal bone, l ft, 7thG|Disp fx of 5th metatarsal bone, l ft, 7thG +C2868105|T037|AB|S92.352K|ICD10CM|Disp fx of 5th metatarsal bone, l ft, subs for fx w nonunion|Disp fx of 5th metatarsal bone, l ft, subs for fx w nonunion +C2868106|T037|AB|S92.352P|ICD10CM|Disp fx of 5th metatarsal bone, l ft, subs for fx w malunion|Disp fx of 5th metatarsal bone, l ft, subs for fx w malunion +C2868107|T037|AB|S92.352S|ICD10CM|Disp fx of fifth metatarsal bone, left foot, sequela|Disp fx of fifth metatarsal bone, left foot, sequela +C2868107|T037|PT|S92.352S|ICD10CM|Displaced fracture of fifth metatarsal bone, left foot, sequela|Displaced fracture of fifth metatarsal bone, left foot, sequela +C2868108|T037|AB|S92.353|ICD10CM|Disp fx of fifth metatarsal bone, unspecified foot|Disp fx of fifth metatarsal bone, unspecified foot +C2868108|T037|HT|S92.353|ICD10CM|Displaced fracture of fifth metatarsal bone, unspecified foot|Displaced fracture of fifth metatarsal bone, unspecified foot +C2868109|T037|AB|S92.353A|ICD10CM|Disp fx of fifth metatarsal bone, unsp foot, init|Disp fx of fifth metatarsal bone, unsp foot, init +C2868109|T037|PT|S92.353A|ICD10CM|Displaced fracture of fifth metatarsal bone, unspecified foot, initial encounter for closed fracture|Displaced fracture of fifth metatarsal bone, unspecified foot, initial encounter for closed fracture +C2868110|T037|AB|S92.353B|ICD10CM|Disp fx of fifth metatarsal bone, unsp foot, init for opn fx|Disp fx of fifth metatarsal bone, unsp foot, init for opn fx +C2868110|T037|PT|S92.353B|ICD10CM|Displaced fracture of fifth metatarsal bone, unspecified foot, initial encounter for open fracture|Displaced fracture of fifth metatarsal bone, unspecified foot, initial encounter for open fracture +C2868111|T037|AB|S92.353D|ICD10CM|Disp fx of 5th metatarsal bone, unsp ft, 7thD|Disp fx of 5th metatarsal bone, unsp ft, 7thD +C2868112|T037|AB|S92.353G|ICD10CM|Disp fx of 5th metatarsal bone, unsp ft, 7thG|Disp fx of 5th metatarsal bone, unsp ft, 7thG +C2868113|T037|AB|S92.353K|ICD10CM|Disp fx of 5th metatarsal bone, unsp ft, 7thK|Disp fx of 5th metatarsal bone, unsp ft, 7thK +C2868114|T037|AB|S92.353P|ICD10CM|Disp fx of 5th metatarsal bone, unsp ft, 7thP|Disp fx of 5th metatarsal bone, unsp ft, 7thP +C2868115|T037|AB|S92.353S|ICD10CM|Disp fx of fifth metatarsal bone, unspecified foot, sequela|Disp fx of fifth metatarsal bone, unspecified foot, sequela +C2868115|T037|PT|S92.353S|ICD10CM|Displaced fracture of fifth metatarsal bone, unspecified foot, sequela|Displaced fracture of fifth metatarsal bone, unspecified foot, sequela +C2868116|T037|AB|S92.354|ICD10CM|Nondisplaced fracture of fifth metatarsal bone, right foot|Nondisplaced fracture of fifth metatarsal bone, right foot +C2868116|T037|HT|S92.354|ICD10CM|Nondisplaced fracture of fifth metatarsal bone, right foot|Nondisplaced fracture of fifth metatarsal bone, right foot +C2868117|T037|AB|S92.354A|ICD10CM|Nondisp fx of fifth metatarsal bone, right foot, init|Nondisp fx of fifth metatarsal bone, right foot, init +C2868117|T037|PT|S92.354A|ICD10CM|Nondisplaced fracture of fifth metatarsal bone, right foot, initial encounter for closed fracture|Nondisplaced fracture of fifth metatarsal bone, right foot, initial encounter for closed fracture +C2868118|T037|AB|S92.354B|ICD10CM|Nondisp fx of fifth metatarsal bone, r foot, init for opn fx|Nondisp fx of fifth metatarsal bone, r foot, init for opn fx +C2868118|T037|PT|S92.354B|ICD10CM|Nondisplaced fracture of fifth metatarsal bone, right foot, initial encounter for open fracture|Nondisplaced fracture of fifth metatarsal bone, right foot, initial encounter for open fracture +C2868119|T037|AB|S92.354D|ICD10CM|Nondisp fx of 5th metatarsal bone, r ft, 7thD|Nondisp fx of 5th metatarsal bone, r ft, 7thD +C2868120|T037|AB|S92.354G|ICD10CM|Nondisp fx of 5th metatarsal bone, r ft, 7thG|Nondisp fx of 5th metatarsal bone, r ft, 7thG +C2868121|T037|AB|S92.354K|ICD10CM|Nondisp fx of 5th metatarsal bone, r ft, 7thK|Nondisp fx of 5th metatarsal bone, r ft, 7thK +C2868122|T037|AB|S92.354P|ICD10CM|Nondisp fx of 5th metatarsal bone, r ft, 7thP|Nondisp fx of 5th metatarsal bone, r ft, 7thP +C2868123|T037|AB|S92.354S|ICD10CM|Nondisp fx of fifth metatarsal bone, right foot, sequela|Nondisp fx of fifth metatarsal bone, right foot, sequela +C2868123|T037|PT|S92.354S|ICD10CM|Nondisplaced fracture of fifth metatarsal bone, right foot, sequela|Nondisplaced fracture of fifth metatarsal bone, right foot, sequela +C2868124|T037|AB|S92.355|ICD10CM|Nondisplaced fracture of fifth metatarsal bone, left foot|Nondisplaced fracture of fifth metatarsal bone, left foot +C2868124|T037|HT|S92.355|ICD10CM|Nondisplaced fracture of fifth metatarsal bone, left foot|Nondisplaced fracture of fifth metatarsal bone, left foot +C2868125|T037|AB|S92.355A|ICD10CM|Nondisp fx of fifth metatarsal bone, left foot, init|Nondisp fx of fifth metatarsal bone, left foot, init +C2868125|T037|PT|S92.355A|ICD10CM|Nondisplaced fracture of fifth metatarsal bone, left foot, initial encounter for closed fracture|Nondisplaced fracture of fifth metatarsal bone, left foot, initial encounter for closed fracture +C2868126|T037|AB|S92.355B|ICD10CM|Nondisp fx of fifth metatarsal bone, l foot, init for opn fx|Nondisp fx of fifth metatarsal bone, l foot, init for opn fx +C2868126|T037|PT|S92.355B|ICD10CM|Nondisplaced fracture of fifth metatarsal bone, left foot, initial encounter for open fracture|Nondisplaced fracture of fifth metatarsal bone, left foot, initial encounter for open fracture +C2868127|T037|AB|S92.355D|ICD10CM|Nondisp fx of 5th metatarsal bone, l ft, 7thD|Nondisp fx of 5th metatarsal bone, l ft, 7thD +C2868128|T037|AB|S92.355G|ICD10CM|Nondisp fx of 5th metatarsal bone, l ft, 7thG|Nondisp fx of 5th metatarsal bone, l ft, 7thG +C2868129|T037|AB|S92.355K|ICD10CM|Nondisp fx of 5th metatarsal bone, l ft, 7thK|Nondisp fx of 5th metatarsal bone, l ft, 7thK +C2868130|T037|AB|S92.355P|ICD10CM|Nondisp fx of 5th metatarsal bone, l ft, 7thP|Nondisp fx of 5th metatarsal bone, l ft, 7thP +C2868131|T037|AB|S92.355S|ICD10CM|Nondisp fx of fifth metatarsal bone, left foot, sequela|Nondisp fx of fifth metatarsal bone, left foot, sequela +C2868131|T037|PT|S92.355S|ICD10CM|Nondisplaced fracture of fifth metatarsal bone, left foot, sequela|Nondisplaced fracture of fifth metatarsal bone, left foot, sequela +C2868132|T037|AB|S92.356|ICD10CM|Nondisp fx of fifth metatarsal bone, unspecified foot|Nondisp fx of fifth metatarsal bone, unspecified foot +C2868132|T037|HT|S92.356|ICD10CM|Nondisplaced fracture of fifth metatarsal bone, unspecified foot|Nondisplaced fracture of fifth metatarsal bone, unspecified foot +C2868133|T037|AB|S92.356A|ICD10CM|Nondisp fx of fifth metatarsal bone, unsp foot, init|Nondisp fx of fifth metatarsal bone, unsp foot, init +C2868134|T037|AB|S92.356B|ICD10CM|Nondisp fx of 5th metatarsal bone, unsp ft, init for opn fx|Nondisp fx of 5th metatarsal bone, unsp ft, init for opn fx +C2868135|T037|AB|S92.356D|ICD10CM|Nondisp fx of 5th metatarsal bone, unsp ft, 7thD|Nondisp fx of 5th metatarsal bone, unsp ft, 7thD +C2868136|T037|AB|S92.356G|ICD10CM|Nondisp fx of 5th metatarsal bone, unsp ft, 7thG|Nondisp fx of 5th metatarsal bone, unsp ft, 7thG +C2868137|T037|AB|S92.356K|ICD10CM|Nondisp fx of 5th metatarsal bone, unsp ft, 7thK|Nondisp fx of 5th metatarsal bone, unsp ft, 7thK +C2868138|T037|AB|S92.356P|ICD10CM|Nondisp fx of 5th metatarsal bone, unsp ft, 7thP|Nondisp fx of 5th metatarsal bone, unsp ft, 7thP +C2868139|T037|AB|S92.356S|ICD10CM|Nondisp fx of fifth metatarsal bone, unsp foot, sequela|Nondisp fx of fifth metatarsal bone, unsp foot, sequela +C2868139|T037|PT|S92.356S|ICD10CM|Nondisplaced fracture of fifth metatarsal bone, unspecified foot, sequela|Nondisplaced fracture of fifth metatarsal bone, unspecified foot, sequela +C0452093|T037|HT|S92.4|ICD10CM|Fracture of great toe|Fracture of great toe +C0452093|T037|AB|S92.4|ICD10CM|Fracture of great toe|Fracture of great toe +C0452093|T037|PT|S92.4|ICD10|Fracture of great toe|Fracture of great toe +C2868140|T037|AB|S92.40|ICD10CM|Unspecified fracture of great toe|Unspecified fracture of great toe +C2868140|T037|HT|S92.40|ICD10CM|Unspecified fracture of great toe|Unspecified fracture of great toe +C2868141|T037|AB|S92.401|ICD10CM|Displaced unspecified fracture of right great toe|Displaced unspecified fracture of right great toe +C2868141|T037|HT|S92.401|ICD10CM|Displaced unspecified fracture of right great toe|Displaced unspecified fracture of right great toe +C2868142|T037|AB|S92.401A|ICD10CM|Displaced unsp fracture of right great toe, init for clos fx|Displaced unsp fracture of right great toe, init for clos fx +C2868142|T037|PT|S92.401A|ICD10CM|Displaced unspecified fracture of right great toe, initial encounter for closed fracture|Displaced unspecified fracture of right great toe, initial encounter for closed fracture +C2868143|T037|AB|S92.401B|ICD10CM|Displaced unsp fracture of right great toe, init for opn fx|Displaced unsp fracture of right great toe, init for opn fx +C2868143|T037|PT|S92.401B|ICD10CM|Displaced unspecified fracture of right great toe, initial encounter for open fracture|Displaced unspecified fracture of right great toe, initial encounter for open fracture +C2868144|T037|AB|S92.401D|ICD10CM|Displaced unsp fx right great toe, subs for fx w routn heal|Displaced unsp fx right great toe, subs for fx w routn heal +C2868145|T037|AB|S92.401G|ICD10CM|Displaced unsp fx right great toe, subs for fx w delay heal|Displaced unsp fx right great toe, subs for fx w delay heal +C2868146|T037|AB|S92.401K|ICD10CM|Displaced unsp fx right great toe, subs for fx w nonunion|Displaced unsp fx right great toe, subs for fx w nonunion +C2868146|T037|PT|S92.401K|ICD10CM|Displaced unspecified fracture of right great toe, subsequent encounter for fracture with nonunion|Displaced unspecified fracture of right great toe, subsequent encounter for fracture with nonunion +C2868147|T037|AB|S92.401P|ICD10CM|Displaced unsp fx right great toe, subs for fx w malunion|Displaced unsp fx right great toe, subs for fx w malunion +C2868147|T037|PT|S92.401P|ICD10CM|Displaced unspecified fracture of right great toe, subsequent encounter for fracture with malunion|Displaced unspecified fracture of right great toe, subsequent encounter for fracture with malunion +C2868148|T037|PT|S92.401S|ICD10CM|Displaced unspecified fracture of right great toe, sequela|Displaced unspecified fracture of right great toe, sequela +C2868148|T037|AB|S92.401S|ICD10CM|Displaced unspecified fracture of right great toe, sequela|Displaced unspecified fracture of right great toe, sequela +C2868149|T037|AB|S92.402|ICD10CM|Displaced unspecified fracture of left great toe|Displaced unspecified fracture of left great toe +C2868149|T037|HT|S92.402|ICD10CM|Displaced unspecified fracture of left great toe|Displaced unspecified fracture of left great toe +C2868150|T037|AB|S92.402A|ICD10CM|Displaced unsp fracture of left great toe, init for clos fx|Displaced unsp fracture of left great toe, init for clos fx +C2868150|T037|PT|S92.402A|ICD10CM|Displaced unspecified fracture of left great toe, initial encounter for closed fracture|Displaced unspecified fracture of left great toe, initial encounter for closed fracture +C2868151|T037|AB|S92.402B|ICD10CM|Displaced unsp fracture of left great toe, init for opn fx|Displaced unsp fracture of left great toe, init for opn fx +C2868151|T037|PT|S92.402B|ICD10CM|Displaced unspecified fracture of left great toe, initial encounter for open fracture|Displaced unspecified fracture of left great toe, initial encounter for open fracture +C2868152|T037|AB|S92.402D|ICD10CM|Displaced unsp fx left great toe, subs for fx w routn heal|Displaced unsp fx left great toe, subs for fx w routn heal +C2868153|T037|AB|S92.402G|ICD10CM|Displaced unsp fx left great toe, subs for fx w delay heal|Displaced unsp fx left great toe, subs for fx w delay heal +C2868154|T037|AB|S92.402K|ICD10CM|Displaced unsp fx left great toe, subs for fx w nonunion|Displaced unsp fx left great toe, subs for fx w nonunion +C2868154|T037|PT|S92.402K|ICD10CM|Displaced unspecified fracture of left great toe, subsequent encounter for fracture with nonunion|Displaced unspecified fracture of left great toe, subsequent encounter for fracture with nonunion +C2868155|T037|AB|S92.402P|ICD10CM|Displaced unsp fx left great toe, subs for fx w malunion|Displaced unsp fx left great toe, subs for fx w malunion +C2868155|T037|PT|S92.402P|ICD10CM|Displaced unspecified fracture of left great toe, subsequent encounter for fracture with malunion|Displaced unspecified fracture of left great toe, subsequent encounter for fracture with malunion +C2868156|T037|AB|S92.402S|ICD10CM|Displaced unspecified fracture of left great toe, sequela|Displaced unspecified fracture of left great toe, sequela +C2868156|T037|PT|S92.402S|ICD10CM|Displaced unspecified fracture of left great toe, sequela|Displaced unspecified fracture of left great toe, sequela +C2868157|T037|AB|S92.403|ICD10CM|Displaced unspecified fracture of unspecified great toe|Displaced unspecified fracture of unspecified great toe +C2868157|T037|HT|S92.403|ICD10CM|Displaced unspecified fracture of unspecified great toe|Displaced unspecified fracture of unspecified great toe +C2868158|T037|AB|S92.403A|ICD10CM|Displaced unsp fracture of unsp great toe, init for clos fx|Displaced unsp fracture of unsp great toe, init for clos fx +C2868158|T037|PT|S92.403A|ICD10CM|Displaced unspecified fracture of unspecified great toe, initial encounter for closed fracture|Displaced unspecified fracture of unspecified great toe, initial encounter for closed fracture +C2868159|T037|AB|S92.403B|ICD10CM|Displaced unsp fracture of unsp great toe, init for opn fx|Displaced unsp fracture of unsp great toe, init for opn fx +C2868159|T037|PT|S92.403B|ICD10CM|Displaced unspecified fracture of unspecified great toe, initial encounter for open fracture|Displaced unspecified fracture of unspecified great toe, initial encounter for open fracture +C2868160|T037|AB|S92.403D|ICD10CM|Displaced unsp fx unsp great toe, subs for fx w routn heal|Displaced unsp fx unsp great toe, subs for fx w routn heal +C2868161|T037|AB|S92.403G|ICD10CM|Displaced unsp fx unsp great toe, subs for fx w delay heal|Displaced unsp fx unsp great toe, subs for fx w delay heal +C2868162|T037|AB|S92.403K|ICD10CM|Displaced unsp fx unsp great toe, subs for fx w nonunion|Displaced unsp fx unsp great toe, subs for fx w nonunion +C2868163|T037|AB|S92.403P|ICD10CM|Displaced unsp fx unsp great toe, subs for fx w malunion|Displaced unsp fx unsp great toe, subs for fx w malunion +C2868164|T037|AB|S92.403S|ICD10CM|Displaced unsp fracture of unspecified great toe, sequela|Displaced unsp fracture of unspecified great toe, sequela +C2868164|T037|PT|S92.403S|ICD10CM|Displaced unspecified fracture of unspecified great toe, sequela|Displaced unspecified fracture of unspecified great toe, sequela +C2868165|T037|AB|S92.404|ICD10CM|Nondisplaced unspecified fracture of right great toe|Nondisplaced unspecified fracture of right great toe +C2868165|T037|HT|S92.404|ICD10CM|Nondisplaced unspecified fracture of right great toe|Nondisplaced unspecified fracture of right great toe +C2868166|T037|AB|S92.404A|ICD10CM|Nondisplaced unsp fracture of right great toe, init|Nondisplaced unsp fracture of right great toe, init +C2868166|T037|PT|S92.404A|ICD10CM|Nondisplaced unspecified fracture of right great toe, initial encounter for closed fracture|Nondisplaced unspecified fracture of right great toe, initial encounter for closed fracture +C2868167|T037|AB|S92.404B|ICD10CM|Nondisp unsp fracture of right great toe, init for opn fx|Nondisp unsp fracture of right great toe, init for opn fx +C2868167|T037|PT|S92.404B|ICD10CM|Nondisplaced unspecified fracture of right great toe, initial encounter for open fracture|Nondisplaced unspecified fracture of right great toe, initial encounter for open fracture +C2868168|T037|AB|S92.404D|ICD10CM|Nondisp unsp fx right great toe, subs for fx w routn heal|Nondisp unsp fx right great toe, subs for fx w routn heal +C2868169|T037|AB|S92.404G|ICD10CM|Nondisp unsp fx right great toe, subs for fx w delay heal|Nondisp unsp fx right great toe, subs for fx w delay heal +C2868170|T037|AB|S92.404K|ICD10CM|Nondisp unsp fx right great toe, subs for fx w nonunion|Nondisp unsp fx right great toe, subs for fx w nonunion +C2868171|T037|AB|S92.404P|ICD10CM|Nondisp unsp fx right great toe, subs for fx w malunion|Nondisp unsp fx right great toe, subs for fx w malunion +C2868172|T037|AB|S92.404S|ICD10CM|Nondisplaced unsp fracture of right great toe, sequela|Nondisplaced unsp fracture of right great toe, sequela +C2868172|T037|PT|S92.404S|ICD10CM|Nondisplaced unspecified fracture of right great toe, sequela|Nondisplaced unspecified fracture of right great toe, sequela +C2868173|T037|AB|S92.405|ICD10CM|Nondisplaced unspecified fracture of left great toe|Nondisplaced unspecified fracture of left great toe +C2868173|T037|HT|S92.405|ICD10CM|Nondisplaced unspecified fracture of left great toe|Nondisplaced unspecified fracture of left great toe +C2868174|T037|AB|S92.405A|ICD10CM|Nondisplaced unsp fracture of left great toe, init|Nondisplaced unsp fracture of left great toe, init +C2868174|T037|PT|S92.405A|ICD10CM|Nondisplaced unspecified fracture of left great toe, initial encounter for closed fracture|Nondisplaced unspecified fracture of left great toe, initial encounter for closed fracture +C2868175|T037|AB|S92.405B|ICD10CM|Nondisp unsp fracture of left great toe, init for opn fx|Nondisp unsp fracture of left great toe, init for opn fx +C2868175|T037|PT|S92.405B|ICD10CM|Nondisplaced unspecified fracture of left great toe, initial encounter for open fracture|Nondisplaced unspecified fracture of left great toe, initial encounter for open fracture +C2868176|T037|AB|S92.405D|ICD10CM|Nondisp unsp fx left great toe, subs for fx w routn heal|Nondisp unsp fx left great toe, subs for fx w routn heal +C2868177|T037|AB|S92.405G|ICD10CM|Nondisp unsp fx left great toe, subs for fx w delay heal|Nondisp unsp fx left great toe, subs for fx w delay heal +C2868178|T037|AB|S92.405K|ICD10CM|Nondisp unsp fx left great toe, subs for fx w nonunion|Nondisp unsp fx left great toe, subs for fx w nonunion +C2868178|T037|PT|S92.405K|ICD10CM|Nondisplaced unspecified fracture of left great toe, subsequent encounter for fracture with nonunion|Nondisplaced unspecified fracture of left great toe, subsequent encounter for fracture with nonunion +C2868179|T037|AB|S92.405P|ICD10CM|Nondisp unsp fx left great toe, subs for fx w malunion|Nondisp unsp fx left great toe, subs for fx w malunion +C2868179|T037|PT|S92.405P|ICD10CM|Nondisplaced unspecified fracture of left great toe, subsequent encounter for fracture with malunion|Nondisplaced unspecified fracture of left great toe, subsequent encounter for fracture with malunion +C2868180|T037|AB|S92.405S|ICD10CM|Nondisplaced unspecified fracture of left great toe, sequela|Nondisplaced unspecified fracture of left great toe, sequela +C2868180|T037|PT|S92.405S|ICD10CM|Nondisplaced unspecified fracture of left great toe, sequela|Nondisplaced unspecified fracture of left great toe, sequela +C2868181|T037|AB|S92.406|ICD10CM|Nondisplaced unspecified fracture of unspecified great toe|Nondisplaced unspecified fracture of unspecified great toe +C2868181|T037|HT|S92.406|ICD10CM|Nondisplaced unspecified fracture of unspecified great toe|Nondisplaced unspecified fracture of unspecified great toe +C2868182|T037|AB|S92.406A|ICD10CM|Nondisplaced unsp fracture of unsp great toe, init|Nondisplaced unsp fracture of unsp great toe, init +C2868182|T037|PT|S92.406A|ICD10CM|Nondisplaced unspecified fracture of unspecified great toe, initial encounter for closed fracture|Nondisplaced unspecified fracture of unspecified great toe, initial encounter for closed fracture +C2868183|T037|AB|S92.406B|ICD10CM|Nondisp unsp fracture of unsp great toe, init for opn fx|Nondisp unsp fracture of unsp great toe, init for opn fx +C2868183|T037|PT|S92.406B|ICD10CM|Nondisplaced unspecified fracture of unspecified great toe, initial encounter for open fracture|Nondisplaced unspecified fracture of unspecified great toe, initial encounter for open fracture +C2868184|T037|AB|S92.406D|ICD10CM|Nondisp unsp fx unsp great toe, subs for fx w routn heal|Nondisp unsp fx unsp great toe, subs for fx w routn heal +C2868185|T037|AB|S92.406G|ICD10CM|Nondisp unsp fx unsp great toe, subs for fx w delay heal|Nondisp unsp fx unsp great toe, subs for fx w delay heal +C2868186|T037|AB|S92.406K|ICD10CM|Nondisp unsp fx unsp great toe, subs for fx w nonunion|Nondisp unsp fx unsp great toe, subs for fx w nonunion +C2868187|T037|AB|S92.406P|ICD10CM|Nondisp unsp fx unsp great toe, subs for fx w malunion|Nondisp unsp fx unsp great toe, subs for fx w malunion +C2868188|T037|AB|S92.406S|ICD10CM|Nondisplaced unsp fracture of unspecified great toe, sequela|Nondisplaced unsp fracture of unspecified great toe, sequela +C2868188|T037|PT|S92.406S|ICD10CM|Nondisplaced unspecified fracture of unspecified great toe, sequela|Nondisplaced unspecified fracture of unspecified great toe, sequela +C2868189|T037|AB|S92.41|ICD10CM|Fracture of proximal phalanx of great toe|Fracture of proximal phalanx of great toe +C2868189|T037|HT|S92.41|ICD10CM|Fracture of proximal phalanx of great toe|Fracture of proximal phalanx of great toe +C2868190|T037|AB|S92.411|ICD10CM|Displaced fracture of proximal phalanx of right great toe|Displaced fracture of proximal phalanx of right great toe +C2868190|T037|HT|S92.411|ICD10CM|Displaced fracture of proximal phalanx of right great toe|Displaced fracture of proximal phalanx of right great toe +C2868191|T037|AB|S92.411A|ICD10CM|Disp fx of proximal phalanx of right great toe, init|Disp fx of proximal phalanx of right great toe, init +C2868191|T037|PT|S92.411A|ICD10CM|Displaced fracture of proximal phalanx of right great toe, initial encounter for closed fracture|Displaced fracture of proximal phalanx of right great toe, initial encounter for closed fracture +C2868192|T037|AB|S92.411B|ICD10CM|Disp fx of prox phalanx of right great toe, init for opn fx|Disp fx of prox phalanx of right great toe, init for opn fx +C2868192|T037|PT|S92.411B|ICD10CM|Displaced fracture of proximal phalanx of right great toe, initial encounter for open fracture|Displaced fracture of proximal phalanx of right great toe, initial encounter for open fracture +C2868193|T037|AB|S92.411D|ICD10CM|Disp fx of prox phalanx of r great toe, 7thD|Disp fx of prox phalanx of r great toe, 7thD +C2868194|T037|AB|S92.411G|ICD10CM|Disp fx of prox phalanx of r great toe, 7thG|Disp fx of prox phalanx of r great toe, 7thG +C2868195|T037|AB|S92.411K|ICD10CM|Disp fx of prox phalanx of r great toe, 7thK|Disp fx of prox phalanx of r great toe, 7thK +C2868196|T037|AB|S92.411P|ICD10CM|Disp fx of prox phalanx of r great toe, 7thP|Disp fx of prox phalanx of r great toe, 7thP +C2868197|T037|AB|S92.411S|ICD10CM|Disp fx of proximal phalanx of right great toe, sequela|Disp fx of proximal phalanx of right great toe, sequela +C2868197|T037|PT|S92.411S|ICD10CM|Displaced fracture of proximal phalanx of right great toe, sequela|Displaced fracture of proximal phalanx of right great toe, sequela +C2868198|T037|AB|S92.412|ICD10CM|Displaced fracture of proximal phalanx of left great toe|Displaced fracture of proximal phalanx of left great toe +C2868198|T037|HT|S92.412|ICD10CM|Displaced fracture of proximal phalanx of left great toe|Displaced fracture of proximal phalanx of left great toe +C2868199|T037|AB|S92.412A|ICD10CM|Disp fx of proximal phalanx of left great toe, init|Disp fx of proximal phalanx of left great toe, init +C2868199|T037|PT|S92.412A|ICD10CM|Displaced fracture of proximal phalanx of left great toe, initial encounter for closed fracture|Displaced fracture of proximal phalanx of left great toe, initial encounter for closed fracture +C2868200|T037|AB|S92.412B|ICD10CM|Disp fx of prox phalanx of left great toe, init for opn fx|Disp fx of prox phalanx of left great toe, init for opn fx +C2868200|T037|PT|S92.412B|ICD10CM|Displaced fracture of proximal phalanx of left great toe, initial encounter for open fracture|Displaced fracture of proximal phalanx of left great toe, initial encounter for open fracture +C2868201|T037|AB|S92.412D|ICD10CM|Disp fx of prox phalanx of l great toe, 7thD|Disp fx of prox phalanx of l great toe, 7thD +C2868202|T037|AB|S92.412G|ICD10CM|Disp fx of prox phalanx of l great toe, 7thG|Disp fx of prox phalanx of l great toe, 7thG +C2868203|T037|AB|S92.412K|ICD10CM|Disp fx of prox phalanx of l great toe, 7thK|Disp fx of prox phalanx of l great toe, 7thK +C2868204|T037|AB|S92.412P|ICD10CM|Disp fx of prox phalanx of l great toe, 7thP|Disp fx of prox phalanx of l great toe, 7thP +C2868205|T037|AB|S92.412S|ICD10CM|Disp fx of proximal phalanx of left great toe, sequela|Disp fx of proximal phalanx of left great toe, sequela +C2868205|T037|PT|S92.412S|ICD10CM|Displaced fracture of proximal phalanx of left great toe, sequela|Displaced fracture of proximal phalanx of left great toe, sequela +C2868206|T037|AB|S92.413|ICD10CM|Disp fx of proximal phalanx of unspecified great toe|Disp fx of proximal phalanx of unspecified great toe +C2868206|T037|HT|S92.413|ICD10CM|Displaced fracture of proximal phalanx of unspecified great toe|Displaced fracture of proximal phalanx of unspecified great toe +C2868207|T037|AB|S92.413A|ICD10CM|Disp fx of proximal phalanx of unsp great toe, init|Disp fx of proximal phalanx of unsp great toe, init +C2868208|T037|AB|S92.413B|ICD10CM|Disp fx of prox phalanx of unsp great toe, init for opn fx|Disp fx of prox phalanx of unsp great toe, init for opn fx +C2868208|T037|PT|S92.413B|ICD10CM|Displaced fracture of proximal phalanx of unspecified great toe, initial encounter for open fracture|Displaced fracture of proximal phalanx of unspecified great toe, initial encounter for open fracture +C2868209|T037|AB|S92.413D|ICD10CM|Disp fx of prox phalanx of unsp great toe, 7thD|Disp fx of prox phalanx of unsp great toe, 7thD +C2868210|T037|AB|S92.413G|ICD10CM|Disp fx of prox phalanx of unsp great toe, 7thG|Disp fx of prox phalanx of unsp great toe, 7thG +C2868211|T037|AB|S92.413K|ICD10CM|Disp fx of prox phalanx of unsp great toe, 7thK|Disp fx of prox phalanx of unsp great toe, 7thK +C2868212|T037|AB|S92.413P|ICD10CM|Disp fx of prox phalanx of unsp great toe, 7thP|Disp fx of prox phalanx of unsp great toe, 7thP +C2868213|T037|AB|S92.413S|ICD10CM|Disp fx of proximal phalanx of unsp great toe, sequela|Disp fx of proximal phalanx of unsp great toe, sequela +C2868213|T037|PT|S92.413S|ICD10CM|Displaced fracture of proximal phalanx of unspecified great toe, sequela|Displaced fracture of proximal phalanx of unspecified great toe, sequela +C2868214|T037|AB|S92.414|ICD10CM|Nondisplaced fracture of proximal phalanx of right great toe|Nondisplaced fracture of proximal phalanx of right great toe +C2868214|T037|HT|S92.414|ICD10CM|Nondisplaced fracture of proximal phalanx of right great toe|Nondisplaced fracture of proximal phalanx of right great toe +C2868215|T037|AB|S92.414A|ICD10CM|Nondisp fx of proximal phalanx of right great toe, init|Nondisp fx of proximal phalanx of right great toe, init +C2868215|T037|PT|S92.414A|ICD10CM|Nondisplaced fracture of proximal phalanx of right great toe, initial encounter for closed fracture|Nondisplaced fracture of proximal phalanx of right great toe, initial encounter for closed fracture +C2868216|T037|AB|S92.414B|ICD10CM|Nondisp fx of prox phalanx of r great toe, init for opn fx|Nondisp fx of prox phalanx of r great toe, init for opn fx +C2868216|T037|PT|S92.414B|ICD10CM|Nondisplaced fracture of proximal phalanx of right great toe, initial encounter for open fracture|Nondisplaced fracture of proximal phalanx of right great toe, initial encounter for open fracture +C2868217|T037|AB|S92.414D|ICD10CM|Nondisp fx of prox phalanx of r great toe, 7thD|Nondisp fx of prox phalanx of r great toe, 7thD +C2868218|T037|AB|S92.414G|ICD10CM|Nondisp fx of prox phalanx of r great toe, 7thG|Nondisp fx of prox phalanx of r great toe, 7thG +C2868219|T037|AB|S92.414K|ICD10CM|Nondisp fx of prox phalanx of r great toe, 7thK|Nondisp fx of prox phalanx of r great toe, 7thK +C2868220|T037|AB|S92.414P|ICD10CM|Nondisp fx of prox phalanx of r great toe, 7thP|Nondisp fx of prox phalanx of r great toe, 7thP +C2868221|T037|AB|S92.414S|ICD10CM|Nondisp fx of proximal phalanx of right great toe, sequela|Nondisp fx of proximal phalanx of right great toe, sequela +C2868221|T037|PT|S92.414S|ICD10CM|Nondisplaced fracture of proximal phalanx of right great toe, sequela|Nondisplaced fracture of proximal phalanx of right great toe, sequela +C2868222|T037|AB|S92.415|ICD10CM|Nondisplaced fracture of proximal phalanx of left great toe|Nondisplaced fracture of proximal phalanx of left great toe +C2868222|T037|HT|S92.415|ICD10CM|Nondisplaced fracture of proximal phalanx of left great toe|Nondisplaced fracture of proximal phalanx of left great toe +C2868223|T037|AB|S92.415A|ICD10CM|Nondisp fx of proximal phalanx of left great toe, init|Nondisp fx of proximal phalanx of left great toe, init +C2868223|T037|PT|S92.415A|ICD10CM|Nondisplaced fracture of proximal phalanx of left great toe, initial encounter for closed fracture|Nondisplaced fracture of proximal phalanx of left great toe, initial encounter for closed fracture +C2868224|T037|AB|S92.415B|ICD10CM|Nondisp fx of prox phalanx of l great toe, init for opn fx|Nondisp fx of prox phalanx of l great toe, init for opn fx +C2868224|T037|PT|S92.415B|ICD10CM|Nondisplaced fracture of proximal phalanx of left great toe, initial encounter for open fracture|Nondisplaced fracture of proximal phalanx of left great toe, initial encounter for open fracture +C2868225|T037|AB|S92.415D|ICD10CM|Nondisp fx of prox phalanx of l great toe, 7thD|Nondisp fx of prox phalanx of l great toe, 7thD +C2868226|T037|AB|S92.415G|ICD10CM|Nondisp fx of prox phalanx of l great toe, 7thG|Nondisp fx of prox phalanx of l great toe, 7thG +C2868227|T037|AB|S92.415K|ICD10CM|Nondisp fx of prox phalanx of l great toe, 7thK|Nondisp fx of prox phalanx of l great toe, 7thK +C2868228|T037|AB|S92.415P|ICD10CM|Nondisp fx of prox phalanx of l great toe, 7thP|Nondisp fx of prox phalanx of l great toe, 7thP +C2868229|T037|AB|S92.415S|ICD10CM|Nondisp fx of proximal phalanx of left great toe, sequela|Nondisp fx of proximal phalanx of left great toe, sequela +C2868229|T037|PT|S92.415S|ICD10CM|Nondisplaced fracture of proximal phalanx of left great toe, sequela|Nondisplaced fracture of proximal phalanx of left great toe, sequela +C2868230|T037|AB|S92.416|ICD10CM|Nondisp fx of proximal phalanx of unspecified great toe|Nondisp fx of proximal phalanx of unspecified great toe +C2868230|T037|HT|S92.416|ICD10CM|Nondisplaced fracture of proximal phalanx of unspecified great toe|Nondisplaced fracture of proximal phalanx of unspecified great toe +C2868231|T037|AB|S92.416A|ICD10CM|Nondisp fx of proximal phalanx of unsp great toe, init|Nondisp fx of proximal phalanx of unsp great toe, init +C2868232|T037|AB|S92.416B|ICD10CM|Nondisp fx of prox phalanx of unsp great toe, 7thB|Nondisp fx of prox phalanx of unsp great toe, 7thB +C2868233|T037|AB|S92.416D|ICD10CM|Nondisp fx of prox phalanx of unsp great toe, 7thD|Nondisp fx of prox phalanx of unsp great toe, 7thD +C2868234|T037|AB|S92.416G|ICD10CM|Nondisp fx of prox phalanx of unsp great toe, 7thG|Nondisp fx of prox phalanx of unsp great toe, 7thG +C2868235|T037|AB|S92.416K|ICD10CM|Nondisp fx of prox phalanx of unsp great toe, 7thK|Nondisp fx of prox phalanx of unsp great toe, 7thK +C2868236|T037|AB|S92.416P|ICD10CM|Nondisp fx of prox phalanx of unsp great toe, 7thP|Nondisp fx of prox phalanx of unsp great toe, 7thP +C2868237|T037|AB|S92.416S|ICD10CM|Nondisp fx of proximal phalanx of unsp great toe, sequela|Nondisp fx of proximal phalanx of unsp great toe, sequela +C2868237|T037|PT|S92.416S|ICD10CM|Nondisplaced fracture of proximal phalanx of unspecified great toe, sequela|Nondisplaced fracture of proximal phalanx of unspecified great toe, sequela +C2868238|T037|AB|S92.42|ICD10CM|Fracture of distal phalanx of great toe|Fracture of distal phalanx of great toe +C2868238|T037|HT|S92.42|ICD10CM|Fracture of distal phalanx of great toe|Fracture of distal phalanx of great toe +C2868239|T037|AB|S92.421|ICD10CM|Displaced fracture of distal phalanx of right great toe|Displaced fracture of distal phalanx of right great toe +C2868239|T037|HT|S92.421|ICD10CM|Displaced fracture of distal phalanx of right great toe|Displaced fracture of distal phalanx of right great toe +C2868240|T037|AB|S92.421A|ICD10CM|Disp fx of distal phalanx of right great toe, init|Disp fx of distal phalanx of right great toe, init +C2868240|T037|PT|S92.421A|ICD10CM|Displaced fracture of distal phalanx of right great toe, initial encounter for closed fracture|Displaced fracture of distal phalanx of right great toe, initial encounter for closed fracture +C2868241|T037|AB|S92.421B|ICD10CM|Disp fx of dist phalanx of right great toe, init for opn fx|Disp fx of dist phalanx of right great toe, init for opn fx +C2868241|T037|PT|S92.421B|ICD10CM|Displaced fracture of distal phalanx of right great toe, initial encounter for open fracture|Displaced fracture of distal phalanx of right great toe, initial encounter for open fracture +C2868242|T037|AB|S92.421D|ICD10CM|Disp fx of dist phalanx of r great toe, 7thD|Disp fx of dist phalanx of r great toe, 7thD +C2868243|T037|AB|S92.421G|ICD10CM|Disp fx of dist phalanx of r great toe, 7thG|Disp fx of dist phalanx of r great toe, 7thG +C2868244|T037|AB|S92.421K|ICD10CM|Disp fx of dist phalanx of r great toe, 7thK|Disp fx of dist phalanx of r great toe, 7thK +C2868245|T037|AB|S92.421P|ICD10CM|Disp fx of dist phalanx of r great toe, 7thP|Disp fx of dist phalanx of r great toe, 7thP +C2868246|T037|AB|S92.421S|ICD10CM|Disp fx of distal phalanx of right great toe, sequela|Disp fx of distal phalanx of right great toe, sequela +C2868246|T037|PT|S92.421S|ICD10CM|Displaced fracture of distal phalanx of right great toe, sequela|Displaced fracture of distal phalanx of right great toe, sequela +C2868247|T037|AB|S92.422|ICD10CM|Displaced fracture of distal phalanx of left great toe|Displaced fracture of distal phalanx of left great toe +C2868247|T037|HT|S92.422|ICD10CM|Displaced fracture of distal phalanx of left great toe|Displaced fracture of distal phalanx of left great toe +C2868248|T037|AB|S92.422A|ICD10CM|Disp fx of distal phalanx of left great toe, init|Disp fx of distal phalanx of left great toe, init +C2868248|T037|PT|S92.422A|ICD10CM|Displaced fracture of distal phalanx of left great toe, initial encounter for closed fracture|Displaced fracture of distal phalanx of left great toe, initial encounter for closed fracture +C2868249|T037|AB|S92.422B|ICD10CM|Disp fx of distal phalanx of left great toe, init for opn fx|Disp fx of distal phalanx of left great toe, init for opn fx +C2868249|T037|PT|S92.422B|ICD10CM|Displaced fracture of distal phalanx of left great toe, initial encounter for open fracture|Displaced fracture of distal phalanx of left great toe, initial encounter for open fracture +C2868250|T037|AB|S92.422D|ICD10CM|Disp fx of dist phalanx of l great toe, 7thD|Disp fx of dist phalanx of l great toe, 7thD +C2868251|T037|AB|S92.422G|ICD10CM|Disp fx of dist phalanx of l great toe, 7thG|Disp fx of dist phalanx of l great toe, 7thG +C2868252|T037|AB|S92.422K|ICD10CM|Disp fx of dist phalanx of l great toe, 7thK|Disp fx of dist phalanx of l great toe, 7thK +C2868253|T037|AB|S92.422P|ICD10CM|Disp fx of dist phalanx of l great toe, 7thP|Disp fx of dist phalanx of l great toe, 7thP +C2868254|T037|AB|S92.422S|ICD10CM|Disp fx of distal phalanx of left great toe, sequela|Disp fx of distal phalanx of left great toe, sequela +C2868254|T037|PT|S92.422S|ICD10CM|Displaced fracture of distal phalanx of left great toe, sequela|Displaced fracture of distal phalanx of left great toe, sequela +C2868255|T037|AB|S92.423|ICD10CM|Disp fx of distal phalanx of unspecified great toe|Disp fx of distal phalanx of unspecified great toe +C2868255|T037|HT|S92.423|ICD10CM|Displaced fracture of distal phalanx of unspecified great toe|Displaced fracture of distal phalanx of unspecified great toe +C2868256|T037|AB|S92.423A|ICD10CM|Disp fx of distal phalanx of unsp great toe, init|Disp fx of distal phalanx of unsp great toe, init +C2868256|T037|PT|S92.423A|ICD10CM|Displaced fracture of distal phalanx of unspecified great toe, initial encounter for closed fracture|Displaced fracture of distal phalanx of unspecified great toe, initial encounter for closed fracture +C2868257|T037|AB|S92.423B|ICD10CM|Disp fx of distal phalanx of unsp great toe, init for opn fx|Disp fx of distal phalanx of unsp great toe, init for opn fx +C2868257|T037|PT|S92.423B|ICD10CM|Displaced fracture of distal phalanx of unspecified great toe, initial encounter for open fracture|Displaced fracture of distal phalanx of unspecified great toe, initial encounter for open fracture +C2868258|T037|AB|S92.423D|ICD10CM|Disp fx of dist phalanx of unsp great toe, 7thD|Disp fx of dist phalanx of unsp great toe, 7thD +C2868259|T037|AB|S92.423G|ICD10CM|Disp fx of dist phalanx of unsp great toe, 7thG|Disp fx of dist phalanx of unsp great toe, 7thG +C2868260|T037|AB|S92.423K|ICD10CM|Disp fx of dist phalanx of unsp great toe, 7thK|Disp fx of dist phalanx of unsp great toe, 7thK +C2868261|T037|AB|S92.423P|ICD10CM|Disp fx of dist phalanx of unsp great toe, 7thP|Disp fx of dist phalanx of unsp great toe, 7thP +C2868262|T037|AB|S92.423S|ICD10CM|Disp fx of distal phalanx of unspecified great toe, sequela|Disp fx of distal phalanx of unspecified great toe, sequela +C2868262|T037|PT|S92.423S|ICD10CM|Displaced fracture of distal phalanx of unspecified great toe, sequela|Displaced fracture of distal phalanx of unspecified great toe, sequela +C2868263|T037|AB|S92.424|ICD10CM|Nondisplaced fracture of distal phalanx of right great toe|Nondisplaced fracture of distal phalanx of right great toe +C2868263|T037|HT|S92.424|ICD10CM|Nondisplaced fracture of distal phalanx of right great toe|Nondisplaced fracture of distal phalanx of right great toe +C2868264|T037|AB|S92.424A|ICD10CM|Nondisp fx of distal phalanx of right great toe, init|Nondisp fx of distal phalanx of right great toe, init +C2868264|T037|PT|S92.424A|ICD10CM|Nondisplaced fracture of distal phalanx of right great toe, initial encounter for closed fracture|Nondisplaced fracture of distal phalanx of right great toe, initial encounter for closed fracture +C2868265|T037|AB|S92.424B|ICD10CM|Nondisp fx of dist phalanx of r great toe, init for opn fx|Nondisp fx of dist phalanx of r great toe, init for opn fx +C2868265|T037|PT|S92.424B|ICD10CM|Nondisplaced fracture of distal phalanx of right great toe, initial encounter for open fracture|Nondisplaced fracture of distal phalanx of right great toe, initial encounter for open fracture +C2868266|T037|AB|S92.424D|ICD10CM|Nondisp fx of dist phalanx of r great toe, 7thD|Nondisp fx of dist phalanx of r great toe, 7thD +C2868267|T037|AB|S92.424G|ICD10CM|Nondisp fx of dist phalanx of r great toe, 7thG|Nondisp fx of dist phalanx of r great toe, 7thG +C2868268|T037|AB|S92.424K|ICD10CM|Nondisp fx of dist phalanx of r great toe, 7thK|Nondisp fx of dist phalanx of r great toe, 7thK +C2868269|T037|AB|S92.424P|ICD10CM|Nondisp fx of dist phalanx of r great toe, 7thP|Nondisp fx of dist phalanx of r great toe, 7thP +C2868270|T037|AB|S92.424S|ICD10CM|Nondisp fx of distal phalanx of right great toe, sequela|Nondisp fx of distal phalanx of right great toe, sequela +C2868270|T037|PT|S92.424S|ICD10CM|Nondisplaced fracture of distal phalanx of right great toe, sequela|Nondisplaced fracture of distal phalanx of right great toe, sequela +C2868271|T037|AB|S92.425|ICD10CM|Nondisplaced fracture of distal phalanx of left great toe|Nondisplaced fracture of distal phalanx of left great toe +C2868271|T037|HT|S92.425|ICD10CM|Nondisplaced fracture of distal phalanx of left great toe|Nondisplaced fracture of distal phalanx of left great toe +C2868272|T037|AB|S92.425A|ICD10CM|Nondisp fx of distal phalanx of left great toe, init|Nondisp fx of distal phalanx of left great toe, init +C2868272|T037|PT|S92.425A|ICD10CM|Nondisplaced fracture of distal phalanx of left great toe, initial encounter for closed fracture|Nondisplaced fracture of distal phalanx of left great toe, initial encounter for closed fracture +C2868273|T037|AB|S92.425B|ICD10CM|Nondisp fx of dist phalanx of l great toe, init for opn fx|Nondisp fx of dist phalanx of l great toe, init for opn fx +C2868273|T037|PT|S92.425B|ICD10CM|Nondisplaced fracture of distal phalanx of left great toe, initial encounter for open fracture|Nondisplaced fracture of distal phalanx of left great toe, initial encounter for open fracture +C2868274|T037|AB|S92.425D|ICD10CM|Nondisp fx of dist phalanx of l great toe, 7thD|Nondisp fx of dist phalanx of l great toe, 7thD +C2868275|T037|AB|S92.425G|ICD10CM|Nondisp fx of dist phalanx of l great toe, 7thG|Nondisp fx of dist phalanx of l great toe, 7thG +C2868276|T037|AB|S92.425K|ICD10CM|Nondisp fx of dist phalanx of l great toe, 7thK|Nondisp fx of dist phalanx of l great toe, 7thK +C2868277|T037|AB|S92.425P|ICD10CM|Nondisp fx of dist phalanx of l great toe, 7thP|Nondisp fx of dist phalanx of l great toe, 7thP +C2868278|T037|AB|S92.425S|ICD10CM|Nondisp fx of distal phalanx of left great toe, sequela|Nondisp fx of distal phalanx of left great toe, sequela +C2868278|T037|PT|S92.425S|ICD10CM|Nondisplaced fracture of distal phalanx of left great toe, sequela|Nondisplaced fracture of distal phalanx of left great toe, sequela +C2868279|T037|AB|S92.426|ICD10CM|Nondisp fx of distal phalanx of unspecified great toe|Nondisp fx of distal phalanx of unspecified great toe +C2868279|T037|HT|S92.426|ICD10CM|Nondisplaced fracture of distal phalanx of unspecified great toe|Nondisplaced fracture of distal phalanx of unspecified great toe +C2868280|T037|AB|S92.426A|ICD10CM|Nondisp fx of distal phalanx of unsp great toe, init|Nondisp fx of distal phalanx of unsp great toe, init +C2868281|T037|AB|S92.426B|ICD10CM|Nondisp fx of dist phalanx of unsp great toe, 7thB|Nondisp fx of dist phalanx of unsp great toe, 7thB +C2868282|T037|AB|S92.426D|ICD10CM|Nondisp fx of dist phalanx of unsp great toe, 7thD|Nondisp fx of dist phalanx of unsp great toe, 7thD +C2868283|T037|AB|S92.426G|ICD10CM|Nondisp fx of dist phalanx of unsp great toe, 7thG|Nondisp fx of dist phalanx of unsp great toe, 7thG +C2868284|T037|AB|S92.426K|ICD10CM|Nondisp fx of dist phalanx of unsp great toe, 7thK|Nondisp fx of dist phalanx of unsp great toe, 7thK +C2868285|T037|AB|S92.426P|ICD10CM|Nondisp fx of dist phalanx of unsp great toe, 7thP|Nondisp fx of dist phalanx of unsp great toe, 7thP +C2868286|T037|AB|S92.426S|ICD10CM|Nondisp fx of distal phalanx of unsp great toe, sequela|Nondisp fx of distal phalanx of unsp great toe, sequela +C2868286|T037|PT|S92.426S|ICD10CM|Nondisplaced fracture of distal phalanx of unspecified great toe, sequela|Nondisplaced fracture of distal phalanx of unspecified great toe, sequela +C2868287|T037|AB|S92.49|ICD10CM|Other fracture of great toe|Other fracture of great toe +C2868287|T037|HT|S92.49|ICD10CM|Other fracture of great toe|Other fracture of great toe +C2868288|T037|AB|S92.491|ICD10CM|Other fracture of right great toe|Other fracture of right great toe +C2868288|T037|HT|S92.491|ICD10CM|Other fracture of right great toe|Other fracture of right great toe +C2868289|T037|AB|S92.491A|ICD10CM|Oth fracture of right great toe, init for clos fx|Oth fracture of right great toe, init for clos fx +C2868289|T037|PT|S92.491A|ICD10CM|Other fracture of right great toe, initial encounter for closed fracture|Other fracture of right great toe, initial encounter for closed fracture +C2868290|T037|AB|S92.491B|ICD10CM|Oth fracture of right great toe, init for opn fx|Oth fracture of right great toe, init for opn fx +C2868290|T037|PT|S92.491B|ICD10CM|Other fracture of right great toe, initial encounter for open fracture|Other fracture of right great toe, initial encounter for open fracture +C2868291|T037|AB|S92.491D|ICD10CM|Oth fracture of right great toe, subs for fx w routn heal|Oth fracture of right great toe, subs for fx w routn heal +C2868291|T037|PT|S92.491D|ICD10CM|Other fracture of right great toe, subsequent encounter for fracture with routine healing|Other fracture of right great toe, subsequent encounter for fracture with routine healing +C2868292|T037|AB|S92.491G|ICD10CM|Oth fracture of right great toe, subs for fx w delay heal|Oth fracture of right great toe, subs for fx w delay heal +C2868292|T037|PT|S92.491G|ICD10CM|Other fracture of right great toe, subsequent encounter for fracture with delayed healing|Other fracture of right great toe, subsequent encounter for fracture with delayed healing +C2868293|T037|AB|S92.491K|ICD10CM|Oth fracture of right great toe, subs for fx w nonunion|Oth fracture of right great toe, subs for fx w nonunion +C2868293|T037|PT|S92.491K|ICD10CM|Other fracture of right great toe, subsequent encounter for fracture with nonunion|Other fracture of right great toe, subsequent encounter for fracture with nonunion +C2868294|T037|AB|S92.491P|ICD10CM|Oth fracture of right great toe, subs for fx w malunion|Oth fracture of right great toe, subs for fx w malunion +C2868294|T037|PT|S92.491P|ICD10CM|Other fracture of right great toe, subsequent encounter for fracture with malunion|Other fracture of right great toe, subsequent encounter for fracture with malunion +C2868295|T037|AB|S92.491S|ICD10CM|Other fracture of right great toe, sequela|Other fracture of right great toe, sequela +C2868295|T037|PT|S92.491S|ICD10CM|Other fracture of right great toe, sequela|Other fracture of right great toe, sequela +C2868296|T037|AB|S92.492|ICD10CM|Other fracture of left great toe|Other fracture of left great toe +C2868296|T037|HT|S92.492|ICD10CM|Other fracture of left great toe|Other fracture of left great toe +C2868297|T037|AB|S92.492A|ICD10CM|Oth fracture of left great toe, init for clos fx|Oth fracture of left great toe, init for clos fx +C2868297|T037|PT|S92.492A|ICD10CM|Other fracture of left great toe, initial encounter for closed fracture|Other fracture of left great toe, initial encounter for closed fracture +C2868298|T037|AB|S92.492B|ICD10CM|Oth fracture of left great toe, init for opn fx|Oth fracture of left great toe, init for opn fx +C2868298|T037|PT|S92.492B|ICD10CM|Other fracture of left great toe, initial encounter for open fracture|Other fracture of left great toe, initial encounter for open fracture +C2868299|T037|AB|S92.492D|ICD10CM|Oth fracture of left great toe, subs for fx w routn heal|Oth fracture of left great toe, subs for fx w routn heal +C2868299|T037|PT|S92.492D|ICD10CM|Other fracture of left great toe, subsequent encounter for fracture with routine healing|Other fracture of left great toe, subsequent encounter for fracture with routine healing +C2868300|T037|AB|S92.492G|ICD10CM|Oth fracture of left great toe, subs for fx w delay heal|Oth fracture of left great toe, subs for fx w delay heal +C2868300|T037|PT|S92.492G|ICD10CM|Other fracture of left great toe, subsequent encounter for fracture with delayed healing|Other fracture of left great toe, subsequent encounter for fracture with delayed healing +C2868301|T037|AB|S92.492K|ICD10CM|Oth fracture of left great toe, subs for fx w nonunion|Oth fracture of left great toe, subs for fx w nonunion +C2868301|T037|PT|S92.492K|ICD10CM|Other fracture of left great toe, subsequent encounter for fracture with nonunion|Other fracture of left great toe, subsequent encounter for fracture with nonunion +C2868302|T037|AB|S92.492P|ICD10CM|Oth fracture of left great toe, subs for fx w malunion|Oth fracture of left great toe, subs for fx w malunion +C2868302|T037|PT|S92.492P|ICD10CM|Other fracture of left great toe, subsequent encounter for fracture with malunion|Other fracture of left great toe, subsequent encounter for fracture with malunion +C2868303|T037|AB|S92.492S|ICD10CM|Other fracture of left great toe, sequela|Other fracture of left great toe, sequela +C2868303|T037|PT|S92.492S|ICD10CM|Other fracture of left great toe, sequela|Other fracture of left great toe, sequela +C2868304|T037|AB|S92.499|ICD10CM|Other fracture of unspecified great toe|Other fracture of unspecified great toe +C2868304|T037|HT|S92.499|ICD10CM|Other fracture of unspecified great toe|Other fracture of unspecified great toe +C2868305|T037|AB|S92.499A|ICD10CM|Oth fracture of unsp great toe, init for clos fx|Oth fracture of unsp great toe, init for clos fx +C2868305|T037|PT|S92.499A|ICD10CM|Other fracture of unspecified great toe, initial encounter for closed fracture|Other fracture of unspecified great toe, initial encounter for closed fracture +C2868306|T037|AB|S92.499B|ICD10CM|Oth fracture of unsp great toe, init for opn fx|Oth fracture of unsp great toe, init for opn fx +C2868306|T037|PT|S92.499B|ICD10CM|Other fracture of unspecified great toe, initial encounter for open fracture|Other fracture of unspecified great toe, initial encounter for open fracture +C2868307|T037|AB|S92.499D|ICD10CM|Oth fracture of unsp great toe, subs for fx w routn heal|Oth fracture of unsp great toe, subs for fx w routn heal +C2868307|T037|PT|S92.499D|ICD10CM|Other fracture of unspecified great toe, subsequent encounter for fracture with routine healing|Other fracture of unspecified great toe, subsequent encounter for fracture with routine healing +C2868308|T037|AB|S92.499G|ICD10CM|Oth fracture of unsp great toe, subs for fx w delay heal|Oth fracture of unsp great toe, subs for fx w delay heal +C2868308|T037|PT|S92.499G|ICD10CM|Other fracture of unspecified great toe, subsequent encounter for fracture with delayed healing|Other fracture of unspecified great toe, subsequent encounter for fracture with delayed healing +C2868309|T037|AB|S92.499K|ICD10CM|Oth fracture of unsp great toe, subs for fx w nonunion|Oth fracture of unsp great toe, subs for fx w nonunion +C2868309|T037|PT|S92.499K|ICD10CM|Other fracture of unspecified great toe, subsequent encounter for fracture with nonunion|Other fracture of unspecified great toe, subsequent encounter for fracture with nonunion +C2868310|T037|AB|S92.499P|ICD10CM|Oth fracture of unsp great toe, subs for fx w malunion|Oth fracture of unsp great toe, subs for fx w malunion +C2868310|T037|PT|S92.499P|ICD10CM|Other fracture of unspecified great toe, subsequent encounter for fracture with malunion|Other fracture of unspecified great toe, subsequent encounter for fracture with malunion +C2868311|T037|AB|S92.499S|ICD10CM|Other fracture of unspecified great toe, sequela|Other fracture of unspecified great toe, sequela +C2868311|T037|PT|S92.499S|ICD10CM|Other fracture of unspecified great toe, sequela|Other fracture of unspecified great toe, sequela +C2868312|T037|AB|S92.5|ICD10CM|Fracture of lesser toe(s)|Fracture of lesser toe(s) +C2868312|T037|HT|S92.5|ICD10CM|Fracture of lesser toe(s)|Fracture of lesser toe(s) +C0452094|T037|PT|S92.5|ICD10|Fracture of other toe|Fracture of other toe +C2868313|T037|AB|S92.50|ICD10CM|Unspecified fracture of lesser toe(s)|Unspecified fracture of lesser toe(s) +C2868313|T037|HT|S92.50|ICD10CM|Unspecified fracture of lesser toe(s)|Unspecified fracture of lesser toe(s) +C2868314|T037|AB|S92.501|ICD10CM|Displaced unspecified fracture of right lesser toe(s)|Displaced unspecified fracture of right lesser toe(s) +C2868314|T037|HT|S92.501|ICD10CM|Displaced unspecified fracture of right lesser toe(s)|Displaced unspecified fracture of right lesser toe(s) +C2868315|T037|AB|S92.501A|ICD10CM|Displaced unsp fracture of right lesser toe(s), init|Displaced unsp fracture of right lesser toe(s), init +C2868315|T037|PT|S92.501A|ICD10CM|Displaced unspecified fracture of right lesser toe(s), initial encounter for closed fracture|Displaced unspecified fracture of right lesser toe(s), initial encounter for closed fracture +C2868316|T037|AB|S92.501B|ICD10CM|Displaced unsp fx right lesser toe(s), init for opn fx|Displaced unsp fx right lesser toe(s), init for opn fx +C2868316|T037|PT|S92.501B|ICD10CM|Displaced unspecified fracture of right lesser toe(s), initial encounter for open fracture|Displaced unspecified fracture of right lesser toe(s), initial encounter for open fracture +C2868317|T037|AB|S92.501D|ICD10CM|Displ unsp fx right lesser toe(s), subs for fx w routn heal|Displ unsp fx right lesser toe(s), subs for fx w routn heal +C2868318|T037|AB|S92.501G|ICD10CM|Displ unsp fx right lesser toe(s), subs for fx w delay heal|Displ unsp fx right lesser toe(s), subs for fx w delay heal +C2868319|T037|AB|S92.501K|ICD10CM|Displ unsp fx right lesser toe(s), subs for fx w nonunion|Displ unsp fx right lesser toe(s), subs for fx w nonunion +C2868320|T037|AB|S92.501P|ICD10CM|Displ unsp fx right lesser toe(s), subs for fx w malunion|Displ unsp fx right lesser toe(s), subs for fx w malunion +C2868321|T037|AB|S92.501S|ICD10CM|Displaced unsp fracture of right lesser toe(s), sequela|Displaced unsp fracture of right lesser toe(s), sequela +C2868321|T037|PT|S92.501S|ICD10CM|Displaced unspecified fracture of right lesser toe(s), sequela|Displaced unspecified fracture of right lesser toe(s), sequela +C2868322|T037|AB|S92.502|ICD10CM|Displaced unspecified fracture of left lesser toe(s)|Displaced unspecified fracture of left lesser toe(s) +C2868322|T037|HT|S92.502|ICD10CM|Displaced unspecified fracture of left lesser toe(s)|Displaced unspecified fracture of left lesser toe(s) +C2868323|T037|AB|S92.502A|ICD10CM|Displaced unsp fracture of left lesser toe(s), init|Displaced unsp fracture of left lesser toe(s), init +C2868323|T037|PT|S92.502A|ICD10CM|Displaced unspecified fracture of left lesser toe(s), initial encounter for closed fracture|Displaced unspecified fracture of left lesser toe(s), initial encounter for closed fracture +C2868324|T037|AB|S92.502B|ICD10CM|Displaced unsp fx left lesser toe(s), init for opn fx|Displaced unsp fx left lesser toe(s), init for opn fx +C2868324|T037|PT|S92.502B|ICD10CM|Displaced unspecified fracture of left lesser toe(s), initial encounter for open fracture|Displaced unspecified fracture of left lesser toe(s), initial encounter for open fracture +C2868325|T037|AB|S92.502D|ICD10CM|Displ unsp fx left lesser toe(s), subs for fx w routn heal|Displ unsp fx left lesser toe(s), subs for fx w routn heal +C2868326|T037|AB|S92.502G|ICD10CM|Displ unsp fx left lesser toe(s), subs for fx w delay heal|Displ unsp fx left lesser toe(s), subs for fx w delay heal +C2868327|T037|AB|S92.502K|ICD10CM|Displaced unsp fx left lesser toe(s), subs for fx w nonunion|Displaced unsp fx left lesser toe(s), subs for fx w nonunion +C2868328|T037|AB|S92.502P|ICD10CM|Displaced unsp fx left lesser toe(s), subs for fx w malunion|Displaced unsp fx left lesser toe(s), subs for fx w malunion +C2868329|T037|AB|S92.502S|ICD10CM|Displaced unsp fracture of left lesser toe(s), sequela|Displaced unsp fracture of left lesser toe(s), sequela +C2868329|T037|PT|S92.502S|ICD10CM|Displaced unspecified fracture of left lesser toe(s), sequela|Displaced unspecified fracture of left lesser toe(s), sequela +C2868330|T037|AB|S92.503|ICD10CM|Displaced unspecified fracture of unspecified lesser toe(s)|Displaced unspecified fracture of unspecified lesser toe(s) +C2868330|T037|HT|S92.503|ICD10CM|Displaced unspecified fracture of unspecified lesser toe(s)|Displaced unspecified fracture of unspecified lesser toe(s) +C2868331|T037|AB|S92.503A|ICD10CM|Displaced unsp fracture of unsp lesser toe(s), init|Displaced unsp fracture of unsp lesser toe(s), init +C2868331|T037|PT|S92.503A|ICD10CM|Displaced unspecified fracture of unspecified lesser toe(s), initial encounter for closed fracture|Displaced unspecified fracture of unspecified lesser toe(s), initial encounter for closed fracture +C2868332|T037|AB|S92.503B|ICD10CM|Displaced unsp fx unsp lesser toe(s), init for opn fx|Displaced unsp fx unsp lesser toe(s), init for opn fx +C2868332|T037|PT|S92.503B|ICD10CM|Displaced unspecified fracture of unspecified lesser toe(s), initial encounter for open fracture|Displaced unspecified fracture of unspecified lesser toe(s), initial encounter for open fracture +C2868333|T037|AB|S92.503D|ICD10CM|Displ unsp fx unsp lesser toe(s), subs for fx w routn heal|Displ unsp fx unsp lesser toe(s), subs for fx w routn heal +C2868334|T037|AB|S92.503G|ICD10CM|Displ unsp fx unsp lesser toe(s), subs for fx w delay heal|Displ unsp fx unsp lesser toe(s), subs for fx w delay heal +C2868335|T037|AB|S92.503K|ICD10CM|Displaced unsp fx unsp lesser toe(s), subs for fx w nonunion|Displaced unsp fx unsp lesser toe(s), subs for fx w nonunion +C2868336|T037|AB|S92.503P|ICD10CM|Displaced unsp fx unsp lesser toe(s), subs for fx w malunion|Displaced unsp fx unsp lesser toe(s), subs for fx w malunion +C2868337|T037|AB|S92.503S|ICD10CM|Displaced unsp fracture of unsp lesser toe(s), sequela|Displaced unsp fracture of unsp lesser toe(s), sequela +C2868337|T037|PT|S92.503S|ICD10CM|Displaced unspecified fracture of unspecified lesser toe(s), sequela|Displaced unspecified fracture of unspecified lesser toe(s), sequela +C2868338|T037|AB|S92.504|ICD10CM|Nondisplaced unspecified fracture of right lesser toe(s)|Nondisplaced unspecified fracture of right lesser toe(s) +C2868338|T037|HT|S92.504|ICD10CM|Nondisplaced unspecified fracture of right lesser toe(s)|Nondisplaced unspecified fracture of right lesser toe(s) +C2868339|T037|AB|S92.504A|ICD10CM|Nondisplaced unsp fracture of right lesser toe(s), init|Nondisplaced unsp fracture of right lesser toe(s), init +C2868339|T037|PT|S92.504A|ICD10CM|Nondisplaced unspecified fracture of right lesser toe(s), initial encounter for closed fracture|Nondisplaced unspecified fracture of right lesser toe(s), initial encounter for closed fracture +C2868340|T037|AB|S92.504B|ICD10CM|Nondisp unsp fx right lesser toe(s), init for opn fx|Nondisp unsp fx right lesser toe(s), init for opn fx +C2868340|T037|PT|S92.504B|ICD10CM|Nondisplaced unspecified fracture of right lesser toe(s), initial encounter for open fracture|Nondisplaced unspecified fracture of right lesser toe(s), initial encounter for open fracture +C2868341|T037|AB|S92.504D|ICD10CM|Nondisp unsp fx right less toe(s), subs for fx w routn heal|Nondisp unsp fx right less toe(s), subs for fx w routn heal +C2868342|T037|AB|S92.504G|ICD10CM|Nondisp unsp fx right less toe(s), subs for fx w delay heal|Nondisp unsp fx right less toe(s), subs for fx w delay heal +C2868343|T037|AB|S92.504K|ICD10CM|Nondisp unsp fx right lesser toe(s), subs for fx w nonunion|Nondisp unsp fx right lesser toe(s), subs for fx w nonunion +C2868344|T037|AB|S92.504P|ICD10CM|Nondisp unsp fx right lesser toe(s), subs for fx w malunion|Nondisp unsp fx right lesser toe(s), subs for fx w malunion +C2868345|T037|AB|S92.504S|ICD10CM|Nondisplaced unsp fracture of right lesser toe(s), sequela|Nondisplaced unsp fracture of right lesser toe(s), sequela +C2868345|T037|PT|S92.504S|ICD10CM|Nondisplaced unspecified fracture of right lesser toe(s), sequela|Nondisplaced unspecified fracture of right lesser toe(s), sequela +C2868346|T037|AB|S92.505|ICD10CM|Nondisplaced unspecified fracture of left lesser toe(s)|Nondisplaced unspecified fracture of left lesser toe(s) +C2868346|T037|HT|S92.505|ICD10CM|Nondisplaced unspecified fracture of left lesser toe(s)|Nondisplaced unspecified fracture of left lesser toe(s) +C2868347|T037|AB|S92.505A|ICD10CM|Nondisplaced unsp fracture of left lesser toe(s), init|Nondisplaced unsp fracture of left lesser toe(s), init +C2868347|T037|PT|S92.505A|ICD10CM|Nondisplaced unspecified fracture of left lesser toe(s), initial encounter for closed fracture|Nondisplaced unspecified fracture of left lesser toe(s), initial encounter for closed fracture +C2868348|T037|AB|S92.505B|ICD10CM|Nondisp unsp fracture of left lesser toe(s), init for opn fx|Nondisp unsp fracture of left lesser toe(s), init for opn fx +C2868348|T037|PT|S92.505B|ICD10CM|Nondisplaced unspecified fracture of left lesser toe(s), initial encounter for open fracture|Nondisplaced unspecified fracture of left lesser toe(s), initial encounter for open fracture +C2868349|T037|AB|S92.505D|ICD10CM|Nondisp unsp fx left lesser toe(s), subs for fx w routn heal|Nondisp unsp fx left lesser toe(s), subs for fx w routn heal +C2868350|T037|AB|S92.505G|ICD10CM|Nondisp unsp fx left lesser toe(s), subs for fx w delay heal|Nondisp unsp fx left lesser toe(s), subs for fx w delay heal +C2868351|T037|AB|S92.505K|ICD10CM|Nondisp unsp fx left lesser toe(s), subs for fx w nonunion|Nondisp unsp fx left lesser toe(s), subs for fx w nonunion +C2868352|T037|AB|S92.505P|ICD10CM|Nondisp unsp fx left lesser toe(s), subs for fx w malunion|Nondisp unsp fx left lesser toe(s), subs for fx w malunion +C2868353|T037|AB|S92.505S|ICD10CM|Nondisplaced unsp fracture of left lesser toe(s), sequela|Nondisplaced unsp fracture of left lesser toe(s), sequela +C2868353|T037|PT|S92.505S|ICD10CM|Nondisplaced unspecified fracture of left lesser toe(s), sequela|Nondisplaced unspecified fracture of left lesser toe(s), sequela +C2868354|T037|AB|S92.506|ICD10CM|Nondisplaced unsp fracture of unspecified lesser toe(s)|Nondisplaced unsp fracture of unspecified lesser toe(s) +C2868354|T037|HT|S92.506|ICD10CM|Nondisplaced unspecified fracture of unspecified lesser toe(s)|Nondisplaced unspecified fracture of unspecified lesser toe(s) +C2868355|T037|AB|S92.506A|ICD10CM|Nondisplaced unsp fracture of unsp lesser toe(s), init|Nondisplaced unsp fracture of unsp lesser toe(s), init +C2868356|T037|AB|S92.506B|ICD10CM|Nondisp unsp fracture of unsp lesser toe(s), init for opn fx|Nondisp unsp fracture of unsp lesser toe(s), init for opn fx +C2868356|T037|PT|S92.506B|ICD10CM|Nondisplaced unspecified fracture of unspecified lesser toe(s), initial encounter for open fracture|Nondisplaced unspecified fracture of unspecified lesser toe(s), initial encounter for open fracture +C2868357|T037|AB|S92.506D|ICD10CM|Nondisp unsp fx unsp lesser toe(s), subs for fx w routn heal|Nondisp unsp fx unsp lesser toe(s), subs for fx w routn heal +C2868358|T037|AB|S92.506G|ICD10CM|Nondisp unsp fx unsp lesser toe(s), subs for fx w delay heal|Nondisp unsp fx unsp lesser toe(s), subs for fx w delay heal +C2868359|T037|AB|S92.506K|ICD10CM|Nondisp unsp fx unsp lesser toe(s), subs for fx w nonunion|Nondisp unsp fx unsp lesser toe(s), subs for fx w nonunion +C2868360|T037|AB|S92.506P|ICD10CM|Nondisp unsp fx unsp lesser toe(s), subs for fx w malunion|Nondisp unsp fx unsp lesser toe(s), subs for fx w malunion +C2868361|T037|AB|S92.506S|ICD10CM|Nondisplaced unsp fracture of unsp lesser toe(s), sequela|Nondisplaced unsp fracture of unsp lesser toe(s), sequela +C2868361|T037|PT|S92.506S|ICD10CM|Nondisplaced unspecified fracture of unspecified lesser toe(s), sequela|Nondisplaced unspecified fracture of unspecified lesser toe(s), sequela +C2868362|T037|AB|S92.51|ICD10CM|Fracture of proximal phalanx of lesser toe(s)|Fracture of proximal phalanx of lesser toe(s) +C2868362|T037|HT|S92.51|ICD10CM|Fracture of proximal phalanx of lesser toe(s)|Fracture of proximal phalanx of lesser toe(s) +C2868363|T037|AB|S92.511|ICD10CM|Disp fx of proximal phalanx of right lesser toe(s)|Disp fx of proximal phalanx of right lesser toe(s) +C2868363|T037|HT|S92.511|ICD10CM|Displaced fracture of proximal phalanx of right lesser toe(s)|Displaced fracture of proximal phalanx of right lesser toe(s) +C2868364|T037|AB|S92.511A|ICD10CM|Disp fx of proximal phalanx of right lesser toe(s), init|Disp fx of proximal phalanx of right lesser toe(s), init +C2868364|T037|PT|S92.511A|ICD10CM|Displaced fracture of proximal phalanx of right lesser toe(s), initial encounter for closed fracture|Displaced fracture of proximal phalanx of right lesser toe(s), initial encounter for closed fracture +C2868365|T037|AB|S92.511B|ICD10CM|Disp fx of prox phalanx of r less toe(s), init for opn fx|Disp fx of prox phalanx of r less toe(s), init for opn fx +C2868365|T037|PT|S92.511B|ICD10CM|Displaced fracture of proximal phalanx of right lesser toe(s), initial encounter for open fracture|Displaced fracture of proximal phalanx of right lesser toe(s), initial encounter for open fracture +C2868366|T037|AB|S92.511D|ICD10CM|Disp fx of prox phalanx of r less toe(s), 7thD|Disp fx of prox phalanx of r less toe(s), 7thD +C2868367|T037|AB|S92.511G|ICD10CM|Disp fx of prox phalanx of r less toe(s), 7thG|Disp fx of prox phalanx of r less toe(s), 7thG +C2868368|T037|AB|S92.511K|ICD10CM|Disp fx of prox phalanx of r less toe(s), 7thK|Disp fx of prox phalanx of r less toe(s), 7thK +C2868369|T037|AB|S92.511P|ICD10CM|Disp fx of prox phalanx of r less toe(s), 7thP|Disp fx of prox phalanx of r less toe(s), 7thP +C2868370|T037|AB|S92.511S|ICD10CM|Disp fx of proximal phalanx of right lesser toe(s), sequela|Disp fx of proximal phalanx of right lesser toe(s), sequela +C2868370|T037|PT|S92.511S|ICD10CM|Displaced fracture of proximal phalanx of right lesser toe(s), sequela|Displaced fracture of proximal phalanx of right lesser toe(s), sequela +C2868371|T037|AB|S92.512|ICD10CM|Displaced fracture of proximal phalanx of left lesser toe(s)|Displaced fracture of proximal phalanx of left lesser toe(s) +C2868371|T037|HT|S92.512|ICD10CM|Displaced fracture of proximal phalanx of left lesser toe(s)|Displaced fracture of proximal phalanx of left lesser toe(s) +C2868372|T037|AB|S92.512A|ICD10CM|Disp fx of proximal phalanx of left lesser toe(s), init|Disp fx of proximal phalanx of left lesser toe(s), init +C2868372|T037|PT|S92.512A|ICD10CM|Displaced fracture of proximal phalanx of left lesser toe(s), initial encounter for closed fracture|Displaced fracture of proximal phalanx of left lesser toe(s), initial encounter for closed fracture +C2868373|T037|AB|S92.512B|ICD10CM|Disp fx of prox phalanx of left less toe(s), init for opn fx|Disp fx of prox phalanx of left less toe(s), init for opn fx +C2868373|T037|PT|S92.512B|ICD10CM|Displaced fracture of proximal phalanx of left lesser toe(s), initial encounter for open fracture|Displaced fracture of proximal phalanx of left lesser toe(s), initial encounter for open fracture +C2868374|T037|AB|S92.512D|ICD10CM|Disp fx of prox phalanx of l less toe(s), 7thD|Disp fx of prox phalanx of l less toe(s), 7thD +C2868375|T037|AB|S92.512G|ICD10CM|Disp fx of prox phalanx of l less toe(s), 7thG|Disp fx of prox phalanx of l less toe(s), 7thG +C2868376|T037|AB|S92.512K|ICD10CM|Disp fx of prox phalanx of l less toe(s), 7thK|Disp fx of prox phalanx of l less toe(s), 7thK +C2868377|T037|AB|S92.512P|ICD10CM|Disp fx of prox phalanx of l less toe(s), 7thP|Disp fx of prox phalanx of l less toe(s), 7thP +C2868378|T037|AB|S92.512S|ICD10CM|Disp fx of proximal phalanx of left lesser toe(s), sequela|Disp fx of proximal phalanx of left lesser toe(s), sequela +C2868378|T037|PT|S92.512S|ICD10CM|Displaced fracture of proximal phalanx of left lesser toe(s), sequela|Displaced fracture of proximal phalanx of left lesser toe(s), sequela +C2868379|T037|AB|S92.513|ICD10CM|Disp fx of proximal phalanx of unspecified lesser toe(s)|Disp fx of proximal phalanx of unspecified lesser toe(s) +C2868379|T037|HT|S92.513|ICD10CM|Displaced fracture of proximal phalanx of unspecified lesser toe(s)|Displaced fracture of proximal phalanx of unspecified lesser toe(s) +C2868380|T037|AB|S92.513A|ICD10CM|Disp fx of proximal phalanx of unsp lesser toe(s), init|Disp fx of proximal phalanx of unsp lesser toe(s), init +C2868381|T037|AB|S92.513B|ICD10CM|Disp fx of prox phalanx of unsp less toe(s), init for opn fx|Disp fx of prox phalanx of unsp less toe(s), init for opn fx +C2868382|T037|AB|S92.513D|ICD10CM|Disp fx of prox phalanx of unsp less toe(s), 7thD|Disp fx of prox phalanx of unsp less toe(s), 7thD +C2868383|T037|AB|S92.513G|ICD10CM|Disp fx of prox phalanx of unsp less toe(s), 7thG|Disp fx of prox phalanx of unsp less toe(s), 7thG +C2868384|T037|AB|S92.513K|ICD10CM|Disp fx of prox phalanx of unsp less toe(s), 7thK|Disp fx of prox phalanx of unsp less toe(s), 7thK +C2868385|T037|AB|S92.513P|ICD10CM|Disp fx of prox phalanx of unsp less toe(s), 7thP|Disp fx of prox phalanx of unsp less toe(s), 7thP +C2868386|T037|AB|S92.513S|ICD10CM|Disp fx of proximal phalanx of unsp lesser toe(s), sequela|Disp fx of proximal phalanx of unsp lesser toe(s), sequela +C2868386|T037|PT|S92.513S|ICD10CM|Displaced fracture of proximal phalanx of unspecified lesser toe(s), sequela|Displaced fracture of proximal phalanx of unspecified lesser toe(s), sequela +C2868387|T037|AB|S92.514|ICD10CM|Nondisp fx of proximal phalanx of right lesser toe(s)|Nondisp fx of proximal phalanx of right lesser toe(s) +C2868387|T037|HT|S92.514|ICD10CM|Nondisplaced fracture of proximal phalanx of right lesser toe(s)|Nondisplaced fracture of proximal phalanx of right lesser toe(s) +C2868388|T037|AB|S92.514A|ICD10CM|Nondisp fx of proximal phalanx of right lesser toe(s), init|Nondisp fx of proximal phalanx of right lesser toe(s), init +C2868389|T037|AB|S92.514B|ICD10CM|Nondisp fx of prox phalanx of r less toe(s), init for opn fx|Nondisp fx of prox phalanx of r less toe(s), init for opn fx +C2868390|T037|AB|S92.514D|ICD10CM|Nondisp fx of prox phalanx of r less toe(s), 7thD|Nondisp fx of prox phalanx of r less toe(s), 7thD +C2868391|T037|AB|S92.514G|ICD10CM|Nondisp fx of prox phalanx of r less toe(s), 7thG|Nondisp fx of prox phalanx of r less toe(s), 7thG +C2868392|T037|AB|S92.514K|ICD10CM|Nondisp fx of prox phalanx of r less toe(s), 7thK|Nondisp fx of prox phalanx of r less toe(s), 7thK +C2868393|T037|AB|S92.514P|ICD10CM|Nondisp fx of prox phalanx of r less toe(s), 7thP|Nondisp fx of prox phalanx of r less toe(s), 7thP +C2868394|T037|AB|S92.514S|ICD10CM|Nondisp fx of prox phalanx of right lesser toe(s), sequela|Nondisp fx of prox phalanx of right lesser toe(s), sequela +C2868394|T037|PT|S92.514S|ICD10CM|Nondisplaced fracture of proximal phalanx of right lesser toe(s), sequela|Nondisplaced fracture of proximal phalanx of right lesser toe(s), sequela +C2868395|T037|AB|S92.515|ICD10CM|Nondisp fx of proximal phalanx of left lesser toe(s)|Nondisp fx of proximal phalanx of left lesser toe(s) +C2868395|T037|HT|S92.515|ICD10CM|Nondisplaced fracture of proximal phalanx of left lesser toe(s)|Nondisplaced fracture of proximal phalanx of left lesser toe(s) +C2868396|T037|AB|S92.515A|ICD10CM|Nondisp fx of proximal phalanx of left lesser toe(s), init|Nondisp fx of proximal phalanx of left lesser toe(s), init +C2868397|T037|AB|S92.515B|ICD10CM|Nondisp fx of prox phalanx of l less toe(s), init for opn fx|Nondisp fx of prox phalanx of l less toe(s), init for opn fx +C2868397|T037|PT|S92.515B|ICD10CM|Nondisplaced fracture of proximal phalanx of left lesser toe(s), initial encounter for open fracture|Nondisplaced fracture of proximal phalanx of left lesser toe(s), initial encounter for open fracture +C2868398|T037|AB|S92.515D|ICD10CM|Nondisp fx of prox phalanx of l less toe(s), 7thD|Nondisp fx of prox phalanx of l less toe(s), 7thD +C2868399|T037|AB|S92.515G|ICD10CM|Nondisp fx of prox phalanx of l less toe(s), 7thG|Nondisp fx of prox phalanx of l less toe(s), 7thG +C2868400|T037|AB|S92.515K|ICD10CM|Nondisp fx of prox phalanx of l less toe(s), 7thK|Nondisp fx of prox phalanx of l less toe(s), 7thK +C2868401|T037|AB|S92.515P|ICD10CM|Nondisp fx of prox phalanx of l less toe(s), 7thP|Nondisp fx of prox phalanx of l less toe(s), 7thP +C2868402|T037|AB|S92.515S|ICD10CM|Nondisp fx of prox phalanx of left lesser toe(s), sequela|Nondisp fx of prox phalanx of left lesser toe(s), sequela +C2868402|T037|PT|S92.515S|ICD10CM|Nondisplaced fracture of proximal phalanx of left lesser toe(s), sequela|Nondisplaced fracture of proximal phalanx of left lesser toe(s), sequela +C2868403|T037|AB|S92.516|ICD10CM|Nondisp fx of proximal phalanx of unspecified lesser toe(s)|Nondisp fx of proximal phalanx of unspecified lesser toe(s) +C2868403|T037|HT|S92.516|ICD10CM|Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s)|Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s) +C2868404|T037|AB|S92.516A|ICD10CM|Nondisp fx of proximal phalanx of unsp lesser toe(s), init|Nondisp fx of proximal phalanx of unsp lesser toe(s), init +C2868405|T037|AB|S92.516B|ICD10CM|Nondisp fx of prox phalanx of unsp less toe(s), 7thB|Nondisp fx of prox phalanx of unsp less toe(s), 7thB +C2868406|T037|AB|S92.516D|ICD10CM|Nondisp fx of prox phalanx of unsp less toe(s), 7thD|Nondisp fx of prox phalanx of unsp less toe(s), 7thD +C2868407|T037|AB|S92.516G|ICD10CM|Nondisp fx of prox phalanx of unsp less toe(s), 7thG|Nondisp fx of prox phalanx of unsp less toe(s), 7thG +C2868408|T037|AB|S92.516K|ICD10CM|Nondisp fx of prox phalanx of unsp less toe(s), 7thK|Nondisp fx of prox phalanx of unsp less toe(s), 7thK +C2868409|T037|AB|S92.516P|ICD10CM|Nondisp fx of prox phalanx of unsp less toe(s), 7thP|Nondisp fx of prox phalanx of unsp less toe(s), 7thP +C2868410|T037|AB|S92.516S|ICD10CM|Nondisp fx of prox phalanx of unsp lesser toe(s), sequela|Nondisp fx of prox phalanx of unsp lesser toe(s), sequela +C2868410|T037|PT|S92.516S|ICD10CM|Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), sequela|Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), sequela +C3507595|T037|AB|S92.52|ICD10CM|Fracture of middle phalanx of lesser toe(s)|Fracture of middle phalanx of lesser toe(s) +C3507595|T037|HT|S92.52|ICD10CM|Fracture of middle phalanx of lesser toe(s)|Fracture of middle phalanx of lesser toe(s) +C3507600|T037|AB|S92.521|ICD10CM|Displaced fracture of middle phalanx of right lesser toe(s)|Displaced fracture of middle phalanx of right lesser toe(s) +C3507600|T037|HT|S92.521|ICD10CM|Displaced fracture of middle phalanx of right lesser toe(s)|Displaced fracture of middle phalanx of right lesser toe(s) +C2868413|T037|AB|S92.521A|ICD10CM|Disp fx of middle phalanx of right lesser toe(s), init|Disp fx of middle phalanx of right lesser toe(s), init +C2868413|T037|PT|S92.521A|ICD10CM|Displaced fracture of middle phalanx of right lesser toe(s), initial encounter for closed fracture|Displaced fracture of middle phalanx of right lesser toe(s), initial encounter for closed fracture +C2868414|T037|AB|S92.521B|ICD10CM|Disp fx of middle phalanx of right lesser toe(s), 7thB|Disp fx of middle phalanx of right lesser toe(s), 7thB +C2868414|T037|PT|S92.521B|ICD10CM|Displaced fracture of middle phalanx of right lesser toe(s), initial encounter for open fracture|Displaced fracture of middle phalanx of right lesser toe(s), initial encounter for open fracture +C2868415|T037|AB|S92.521D|ICD10CM|Disp fx of middle phalanx of right lesser toe(s), 7thD|Disp fx of middle phalanx of right lesser toe(s), 7thD +C2868416|T037|AB|S92.521G|ICD10CM|Disp fx of middle phalanx of right lesser toe(s), 7thG|Disp fx of middle phalanx of right lesser toe(s), 7thG +C2868417|T037|AB|S92.521K|ICD10CM|Disp fx of middle phalanx of right lesser toe(s), 7thK|Disp fx of middle phalanx of right lesser toe(s), 7thK +C2868418|T037|AB|S92.521P|ICD10CM|Disp fx of middle phalanx of right lesser toe(s), 7thP|Disp fx of middle phalanx of right lesser toe(s), 7thP +C2868419|T037|AB|S92.521S|ICD10CM|Disp fx of middle phalanx of right lesser toe(s), sequela|Disp fx of middle phalanx of right lesser toe(s), sequela +C2868419|T037|PT|S92.521S|ICD10CM|Displaced fracture of middle phalanx of right lesser toe(s), sequela|Displaced fracture of middle phalanx of right lesser toe(s), sequela +C3507601|T037|AB|S92.522|ICD10CM|Displaced fracture of middle phalanx of left lesser toe(s)|Displaced fracture of middle phalanx of left lesser toe(s) +C3507601|T037|HT|S92.522|ICD10CM|Displaced fracture of middle phalanx of left lesser toe(s)|Displaced fracture of middle phalanx of left lesser toe(s) +C2868421|T037|AB|S92.522A|ICD10CM|Disp fx of middle phalanx of left lesser toe(s), init|Disp fx of middle phalanx of left lesser toe(s), init +C2868421|T037|PT|S92.522A|ICD10CM|Displaced fracture of middle phalanx of left lesser toe(s), initial encounter for closed fracture|Displaced fracture of middle phalanx of left lesser toe(s), initial encounter for closed fracture +C2868422|T037|AB|S92.522B|ICD10CM|Disp fx of middle phalanx of left lesser toe(s), 7thB|Disp fx of middle phalanx of left lesser toe(s), 7thB +C2868422|T037|PT|S92.522B|ICD10CM|Displaced fracture of middle phalanx of left lesser toe(s), initial encounter for open fracture|Displaced fracture of middle phalanx of left lesser toe(s), initial encounter for open fracture +C2868423|T037|AB|S92.522D|ICD10CM|Disp fx of middle phalanx of left lesser toe(s), 7thD|Disp fx of middle phalanx of left lesser toe(s), 7thD +C2868424|T037|AB|S92.522G|ICD10CM|Disp fx of middle phalanx of left lesser toe(s), 7thG|Disp fx of middle phalanx of left lesser toe(s), 7thG +C2868425|T037|AB|S92.522K|ICD10CM|Disp fx of middle phalanx of left lesser toe(s), 7thK|Disp fx of middle phalanx of left lesser toe(s), 7thK +C2868426|T037|AB|S92.522P|ICD10CM|Disp fx of middle phalanx of left lesser toe(s), 7thP|Disp fx of middle phalanx of left lesser toe(s), 7thP +C2868427|T037|AB|S92.522S|ICD10CM|Disp fx of middle phalanx of left lesser toe(s), sequela|Disp fx of middle phalanx of left lesser toe(s), sequela +C2868427|T037|PT|S92.522S|ICD10CM|Displaced fracture of middle phalanx of left lesser toe(s), sequela|Displaced fracture of middle phalanx of left lesser toe(s), sequela +C2868428|T037|AB|S92.523|ICD10CM|Disp fx of middle phalanx of unspecified lesser toe(s)|Disp fx of middle phalanx of unspecified lesser toe(s) +C2868428|T037|HT|S92.523|ICD10CM|Displaced fracture of middle phalanx of unspecified lesser toe(s)|Displaced fracture of middle phalanx of unspecified lesser toe(s) +C2868429|T037|AB|S92.523A|ICD10CM|Disp fx of middle phalanx of unspecified lesser toe(s), init|Disp fx of middle phalanx of unspecified lesser toe(s), init +C2868430|T037|AB|S92.523B|ICD10CM|Disp fx of middle phalanx of unspecified lesser toe(s), 7thB|Disp fx of middle phalanx of unspecified lesser toe(s), 7thB +C2868431|T037|AB|S92.523D|ICD10CM|Disp fx of middle phalanx of unspecified lesser toe(s), 7thD|Disp fx of middle phalanx of unspecified lesser toe(s), 7thD +C2868432|T037|AB|S92.523G|ICD10CM|Disp fx of middle phalanx of unspecified lesser toe(s), 7thG|Disp fx of middle phalanx of unspecified lesser toe(s), 7thG +C2868433|T037|AB|S92.523K|ICD10CM|Disp fx of middle phalanx of unspecified lesser toe(s), 7thK|Disp fx of middle phalanx of unspecified lesser toe(s), 7thK +C2868434|T037|AB|S92.523P|ICD10CM|Disp fx of middle phalanx of unspecified lesser toe(s), 7thP|Disp fx of middle phalanx of unspecified lesser toe(s), 7thP +C2868435|T037|AB|S92.523S|ICD10CM|Disp fx of middle phalanx of unsp lesser toe(s), sequela|Disp fx of middle phalanx of unsp lesser toe(s), sequela +C2868435|T037|PT|S92.523S|ICD10CM|Displaced fracture of middle phalanx of unspecified lesser toe(s), sequela|Displaced fracture of middle phalanx of unspecified lesser toe(s), sequela +C3507597|T037|AB|S92.524|ICD10CM|Nondisp fx of middle phalanx of right lesser toe(s)|Nondisp fx of middle phalanx of right lesser toe(s) +C3507597|T037|HT|S92.524|ICD10CM|Nondisplaced fracture of middle phalanx of right lesser toe(s)|Nondisplaced fracture of middle phalanx of right lesser toe(s) +C2868437|T037|AB|S92.524A|ICD10CM|Nondisp fx of middle phalanx of right lesser toe(s), init|Nondisp fx of middle phalanx of right lesser toe(s), init +C2868438|T037|AB|S92.524B|ICD10CM|Nondisp fx of middle phalanx of right lesser toe(s), 7thB|Nondisp fx of middle phalanx of right lesser toe(s), 7thB +C2868438|T037|PT|S92.524B|ICD10CM|Nondisplaced fracture of middle phalanx of right lesser toe(s), initial encounter for open fracture|Nondisplaced fracture of middle phalanx of right lesser toe(s), initial encounter for open fracture +C2868439|T037|AB|S92.524D|ICD10CM|Nondisp fx of middle phalanx of right lesser toe(s), 7thD|Nondisp fx of middle phalanx of right lesser toe(s), 7thD +C2868440|T037|AB|S92.524G|ICD10CM|Nondisp fx of middle phalanx of right lesser toe(s), 7thG|Nondisp fx of middle phalanx of right lesser toe(s), 7thG +C2868441|T037|AB|S92.524K|ICD10CM|Nondisp fx of middle phalanx of right lesser toe(s), 7thK|Nondisp fx of middle phalanx of right lesser toe(s), 7thK +C2868442|T037|AB|S92.524P|ICD10CM|Nondisp fx of middle phalanx of right lesser toe(s), 7thP|Nondisp fx of middle phalanx of right lesser toe(s), 7thP +C2868443|T037|AB|S92.524S|ICD10CM|Nondisp fx of middle phalanx of right lesser toe(s), sequela|Nondisp fx of middle phalanx of right lesser toe(s), sequela +C2868443|T037|PT|S92.524S|ICD10CM|Nondisplaced fracture of middle phalanx of right lesser toe(s), sequela|Nondisplaced fracture of middle phalanx of right lesser toe(s), sequela +C3507598|T037|AB|S92.525|ICD10CM|Nondisp fx of middle phalanx of left lesser toe(s)|Nondisp fx of middle phalanx of left lesser toe(s) +C3507598|T037|HT|S92.525|ICD10CM|Nondisplaced fracture of middle phalanx of left lesser toe(s)|Nondisplaced fracture of middle phalanx of left lesser toe(s) +C2868445|T037|AB|S92.525A|ICD10CM|Nondisp fx of middle phalanx of left lesser toe(s), init|Nondisp fx of middle phalanx of left lesser toe(s), init +C2868445|T037|PT|S92.525A|ICD10CM|Nondisplaced fracture of middle phalanx of left lesser toe(s), initial encounter for closed fracture|Nondisplaced fracture of middle phalanx of left lesser toe(s), initial encounter for closed fracture +C2868446|T037|AB|S92.525B|ICD10CM|Nondisp fx of middle phalanx of left lesser toe(s), 7thB|Nondisp fx of middle phalanx of left lesser toe(s), 7thB +C2868446|T037|PT|S92.525B|ICD10CM|Nondisplaced fracture of middle phalanx of left lesser toe(s), initial encounter for open fracture|Nondisplaced fracture of middle phalanx of left lesser toe(s), initial encounter for open fracture +C2868447|T037|AB|S92.525D|ICD10CM|Nondisp fx of middle phalanx of left lesser toe(s), 7thD|Nondisp fx of middle phalanx of left lesser toe(s), 7thD +C2868448|T037|AB|S92.525G|ICD10CM|Nondisp fx of middle phalanx of left lesser toe(s), 7thG|Nondisp fx of middle phalanx of left lesser toe(s), 7thG +C2868449|T037|AB|S92.525K|ICD10CM|Nondisp fx of middle phalanx of left lesser toe(s), 7thK|Nondisp fx of middle phalanx of left lesser toe(s), 7thK +C2868450|T037|AB|S92.525P|ICD10CM|Nondisp fx of middle phalanx of left lesser toe(s), 7thP|Nondisp fx of middle phalanx of left lesser toe(s), 7thP +C2868451|T037|AB|S92.525S|ICD10CM|Nondisp fx of middle phalanx of left lesser toe(s), sequela|Nondisp fx of middle phalanx of left lesser toe(s), sequela +C2868451|T037|PT|S92.525S|ICD10CM|Nondisplaced fracture of middle phalanx of left lesser toe(s), sequela|Nondisplaced fracture of middle phalanx of left lesser toe(s), sequela +C2868452|T037|AB|S92.526|ICD10CM|Nondisp fx of middle phalanx of unspecified lesser toe(s)|Nondisp fx of middle phalanx of unspecified lesser toe(s) +C2868452|T037|HT|S92.526|ICD10CM|Nondisplaced fracture of middle phalanx of unspecified lesser toe(s)|Nondisplaced fracture of middle phalanx of unspecified lesser toe(s) +C2868453|T037|AB|S92.526A|ICD10CM|Nondisp fx of middle phalanx of unsp lesser toe(s), init|Nondisp fx of middle phalanx of unsp lesser toe(s), init +C2868454|T037|AB|S92.526B|ICD10CM|Nondisp fx of middle phalanx of unsp lesser toe(s), 7thB|Nondisp fx of middle phalanx of unsp lesser toe(s), 7thB +C2868455|T037|AB|S92.526D|ICD10CM|Nondisp fx of middle phalanx of unsp lesser toe(s), 7thD|Nondisp fx of middle phalanx of unsp lesser toe(s), 7thD +C2868456|T037|AB|S92.526G|ICD10CM|Nondisp fx of middle phalanx of unsp lesser toe(s), 7thG|Nondisp fx of middle phalanx of unsp lesser toe(s), 7thG +C2868457|T037|AB|S92.526K|ICD10CM|Nondisp fx of middle phalanx of unsp lesser toe(s), 7thK|Nondisp fx of middle phalanx of unsp lesser toe(s), 7thK +C2868458|T037|AB|S92.526P|ICD10CM|Nondisp fx of middle phalanx of unsp lesser toe(s), 7thP|Nondisp fx of middle phalanx of unsp lesser toe(s), 7thP +C2868459|T037|AB|S92.526S|ICD10CM|Nondisp fx of middle phalanx of unsp lesser toe(s), sequela|Nondisp fx of middle phalanx of unsp lesser toe(s), sequela +C2868459|T037|PT|S92.526S|ICD10CM|Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), sequela|Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), sequela +C2868460|T037|AB|S92.53|ICD10CM|Fracture of distal phalanx of lesser toe(s)|Fracture of distal phalanx of lesser toe(s) +C2868460|T037|HT|S92.53|ICD10CM|Fracture of distal phalanx of lesser toe(s)|Fracture of distal phalanx of lesser toe(s) +C2868461|T037|AB|S92.531|ICD10CM|Displaced fracture of distal phalanx of right lesser toe(s)|Displaced fracture of distal phalanx of right lesser toe(s) +C2868461|T037|HT|S92.531|ICD10CM|Displaced fracture of distal phalanx of right lesser toe(s)|Displaced fracture of distal phalanx of right lesser toe(s) +C2868462|T037|AB|S92.531A|ICD10CM|Disp fx of distal phalanx of right lesser toe(s), init|Disp fx of distal phalanx of right lesser toe(s), init +C2868462|T037|PT|S92.531A|ICD10CM|Displaced fracture of distal phalanx of right lesser toe(s), initial encounter for closed fracture|Displaced fracture of distal phalanx of right lesser toe(s), initial encounter for closed fracture +C2868463|T037|AB|S92.531B|ICD10CM|Disp fx of dist phalanx of r less toe(s), init for opn fx|Disp fx of dist phalanx of r less toe(s), init for opn fx +C2868463|T037|PT|S92.531B|ICD10CM|Displaced fracture of distal phalanx of right lesser toe(s), initial encounter for open fracture|Displaced fracture of distal phalanx of right lesser toe(s), initial encounter for open fracture +C2868464|T037|AB|S92.531D|ICD10CM|Disp fx of dist phalanx of r less toe(s), 7thD|Disp fx of dist phalanx of r less toe(s), 7thD +C2868465|T037|AB|S92.531G|ICD10CM|Disp fx of dist phalanx of r less toe(s), 7thG|Disp fx of dist phalanx of r less toe(s), 7thG +C2868466|T037|AB|S92.531K|ICD10CM|Disp fx of dist phalanx of r less toe(s), 7thK|Disp fx of dist phalanx of r less toe(s), 7thK +C2868467|T037|AB|S92.531P|ICD10CM|Disp fx of dist phalanx of r less toe(s), 7thP|Disp fx of dist phalanx of r less toe(s), 7thP +C2868468|T037|AB|S92.531S|ICD10CM|Disp fx of distal phalanx of right lesser toe(s), sequela|Disp fx of distal phalanx of right lesser toe(s), sequela +C2868468|T037|PT|S92.531S|ICD10CM|Displaced fracture of distal phalanx of right lesser toe(s), sequela|Displaced fracture of distal phalanx of right lesser toe(s), sequela +C2868469|T037|AB|S92.532|ICD10CM|Displaced fracture of distal phalanx of left lesser toe(s)|Displaced fracture of distal phalanx of left lesser toe(s) +C2868469|T037|HT|S92.532|ICD10CM|Displaced fracture of distal phalanx of left lesser toe(s)|Displaced fracture of distal phalanx of left lesser toe(s) +C2868470|T037|AB|S92.532A|ICD10CM|Disp fx of distal phalanx of left lesser toe(s), init|Disp fx of distal phalanx of left lesser toe(s), init +C2868470|T037|PT|S92.532A|ICD10CM|Displaced fracture of distal phalanx of left lesser toe(s), initial encounter for closed fracture|Displaced fracture of distal phalanx of left lesser toe(s), initial encounter for closed fracture +C2868471|T037|AB|S92.532B|ICD10CM|Disp fx of dist phalanx of left less toe(s), init for opn fx|Disp fx of dist phalanx of left less toe(s), init for opn fx +C2868471|T037|PT|S92.532B|ICD10CM|Displaced fracture of distal phalanx of left lesser toe(s), initial encounter for open fracture|Displaced fracture of distal phalanx of left lesser toe(s), initial encounter for open fracture +C2868472|T037|AB|S92.532D|ICD10CM|Disp fx of dist phalanx of l less toe(s), 7thD|Disp fx of dist phalanx of l less toe(s), 7thD +C2868473|T037|AB|S92.532G|ICD10CM|Disp fx of dist phalanx of l less toe(s), 7thG|Disp fx of dist phalanx of l less toe(s), 7thG +C2868474|T037|AB|S92.532K|ICD10CM|Disp fx of dist phalanx of l less toe(s), 7thK|Disp fx of dist phalanx of l less toe(s), 7thK +C2868475|T037|AB|S92.532P|ICD10CM|Disp fx of dist phalanx of l less toe(s), 7thP|Disp fx of dist phalanx of l less toe(s), 7thP +C2868476|T037|AB|S92.532S|ICD10CM|Disp fx of distal phalanx of left lesser toe(s), sequela|Disp fx of distal phalanx of left lesser toe(s), sequela +C2868476|T037|PT|S92.532S|ICD10CM|Displaced fracture of distal phalanx of left lesser toe(s), sequela|Displaced fracture of distal phalanx of left lesser toe(s), sequela +C2868477|T037|AB|S92.533|ICD10CM|Disp fx of distal phalanx of unspecified lesser toe(s)|Disp fx of distal phalanx of unspecified lesser toe(s) +C2868477|T037|HT|S92.533|ICD10CM|Displaced fracture of distal phalanx of unspecified lesser toe(s)|Displaced fracture of distal phalanx of unspecified lesser toe(s) +C2868478|T037|AB|S92.533A|ICD10CM|Disp fx of distal phalanx of unsp lesser toe(s), init|Disp fx of distal phalanx of unsp lesser toe(s), init +C2868479|T037|AB|S92.533B|ICD10CM|Disp fx of dist phalanx of unsp less toe(s), init for opn fx|Disp fx of dist phalanx of unsp less toe(s), init for opn fx +C2868480|T037|AB|S92.533D|ICD10CM|Disp fx of dist phalanx of unsp less toe(s), 7thD|Disp fx of dist phalanx of unsp less toe(s), 7thD +C2868481|T037|AB|S92.533G|ICD10CM|Disp fx of dist phalanx of unsp less toe(s), 7thG|Disp fx of dist phalanx of unsp less toe(s), 7thG +C2868482|T037|AB|S92.533K|ICD10CM|Disp fx of dist phalanx of unsp less toe(s), 7thK|Disp fx of dist phalanx of unsp less toe(s), 7thK +C2868483|T037|AB|S92.533P|ICD10CM|Disp fx of dist phalanx of unsp less toe(s), 7thP|Disp fx of dist phalanx of unsp less toe(s), 7thP +C2868484|T037|AB|S92.533S|ICD10CM|Disp fx of distal phalanx of unsp lesser toe(s), sequela|Disp fx of distal phalanx of unsp lesser toe(s), sequela +C2868484|T037|PT|S92.533S|ICD10CM|Displaced fracture of distal phalanx of unspecified lesser toe(s), sequela|Displaced fracture of distal phalanx of unspecified lesser toe(s), sequela +C2868485|T037|AB|S92.534|ICD10CM|Nondisp fx of distal phalanx of right lesser toe(s)|Nondisp fx of distal phalanx of right lesser toe(s) +C2868485|T037|HT|S92.534|ICD10CM|Nondisplaced fracture of distal phalanx of right lesser toe(s)|Nondisplaced fracture of distal phalanx of right lesser toe(s) +C2868486|T037|AB|S92.534A|ICD10CM|Nondisp fx of distal phalanx of right lesser toe(s), init|Nondisp fx of distal phalanx of right lesser toe(s), init +C2868487|T037|AB|S92.534B|ICD10CM|Nondisp fx of dist phalanx of r less toe(s), init for opn fx|Nondisp fx of dist phalanx of r less toe(s), init for opn fx +C2868487|T037|PT|S92.534B|ICD10CM|Nondisplaced fracture of distal phalanx of right lesser toe(s), initial encounter for open fracture|Nondisplaced fracture of distal phalanx of right lesser toe(s), initial encounter for open fracture +C2868488|T037|AB|S92.534D|ICD10CM|Nondisp fx of dist phalanx of r less toe(s), 7thD|Nondisp fx of dist phalanx of r less toe(s), 7thD +C2868489|T037|AB|S92.534G|ICD10CM|Nondisp fx of dist phalanx of r less toe(s), 7thG|Nondisp fx of dist phalanx of r less toe(s), 7thG +C2868490|T037|AB|S92.534K|ICD10CM|Nondisp fx of dist phalanx of r less toe(s), 7thK|Nondisp fx of dist phalanx of r less toe(s), 7thK +C2868491|T037|AB|S92.534P|ICD10CM|Nondisp fx of dist phalanx of r less toe(s), 7thP|Nondisp fx of dist phalanx of r less toe(s), 7thP +C2868492|T037|AB|S92.534S|ICD10CM|Nondisp fx of distal phalanx of right lesser toe(s), sequela|Nondisp fx of distal phalanx of right lesser toe(s), sequela +C2868492|T037|PT|S92.534S|ICD10CM|Nondisplaced fracture of distal phalanx of right lesser toe(s), sequela|Nondisplaced fracture of distal phalanx of right lesser toe(s), sequela +C2868493|T037|AB|S92.535|ICD10CM|Nondisp fx of distal phalanx of left lesser toe(s)|Nondisp fx of distal phalanx of left lesser toe(s) +C2868493|T037|HT|S92.535|ICD10CM|Nondisplaced fracture of distal phalanx of left lesser toe(s)|Nondisplaced fracture of distal phalanx of left lesser toe(s) +C2868494|T037|AB|S92.535A|ICD10CM|Nondisp fx of distal phalanx of left lesser toe(s), init|Nondisp fx of distal phalanx of left lesser toe(s), init +C2868494|T037|PT|S92.535A|ICD10CM|Nondisplaced fracture of distal phalanx of left lesser toe(s), initial encounter for closed fracture|Nondisplaced fracture of distal phalanx of left lesser toe(s), initial encounter for closed fracture +C2868495|T037|AB|S92.535B|ICD10CM|Nondisp fx of dist phalanx of l less toe(s), init for opn fx|Nondisp fx of dist phalanx of l less toe(s), init for opn fx +C2868495|T037|PT|S92.535B|ICD10CM|Nondisplaced fracture of distal phalanx of left lesser toe(s), initial encounter for open fracture|Nondisplaced fracture of distal phalanx of left lesser toe(s), initial encounter for open fracture +C2868496|T037|AB|S92.535D|ICD10CM|Nondisp fx of dist phalanx of l less toe(s), 7thD|Nondisp fx of dist phalanx of l less toe(s), 7thD +C2868497|T037|AB|S92.535G|ICD10CM|Nondisp fx of dist phalanx of l less toe(s), 7thG|Nondisp fx of dist phalanx of l less toe(s), 7thG +C2868498|T037|AB|S92.535K|ICD10CM|Nondisp fx of dist phalanx of l less toe(s), 7thK|Nondisp fx of dist phalanx of l less toe(s), 7thK +C2868499|T037|AB|S92.535P|ICD10CM|Nondisp fx of dist phalanx of l less toe(s), 7thP|Nondisp fx of dist phalanx of l less toe(s), 7thP +C2868500|T037|AB|S92.535S|ICD10CM|Nondisp fx of distal phalanx of left lesser toe(s), sequela|Nondisp fx of distal phalanx of left lesser toe(s), sequela +C2868500|T037|PT|S92.535S|ICD10CM|Nondisplaced fracture of distal phalanx of left lesser toe(s), sequela|Nondisplaced fracture of distal phalanx of left lesser toe(s), sequela +C2868501|T037|AB|S92.536|ICD10CM|Nondisp fx of distal phalanx of unspecified lesser toe(s)|Nondisp fx of distal phalanx of unspecified lesser toe(s) +C2868501|T037|HT|S92.536|ICD10CM|Nondisplaced fracture of distal phalanx of unspecified lesser toe(s)|Nondisplaced fracture of distal phalanx of unspecified lesser toe(s) +C2868502|T037|AB|S92.536A|ICD10CM|Nondisp fx of distal phalanx of unsp lesser toe(s), init|Nondisp fx of distal phalanx of unsp lesser toe(s), init +C2868503|T037|AB|S92.536B|ICD10CM|Nondisp fx of dist phalanx of unsp less toe(s), 7thB|Nondisp fx of dist phalanx of unsp less toe(s), 7thB +C2868504|T037|AB|S92.536D|ICD10CM|Nondisp fx of dist phalanx of unsp less toe(s), 7thD|Nondisp fx of dist phalanx of unsp less toe(s), 7thD +C2868505|T037|AB|S92.536G|ICD10CM|Nondisp fx of dist phalanx of unsp less toe(s), 7thG|Nondisp fx of dist phalanx of unsp less toe(s), 7thG +C2868506|T037|AB|S92.536K|ICD10CM|Nondisp fx of dist phalanx of unsp less toe(s), 7thK|Nondisp fx of dist phalanx of unsp less toe(s), 7thK +C2868507|T037|AB|S92.536P|ICD10CM|Nondisp fx of dist phalanx of unsp less toe(s), 7thP|Nondisp fx of dist phalanx of unsp less toe(s), 7thP +C2868508|T037|AB|S92.536S|ICD10CM|Nondisp fx of distal phalanx of unsp lesser toe(s), sequela|Nondisp fx of distal phalanx of unsp lesser toe(s), sequela +C2868508|T037|PT|S92.536S|ICD10CM|Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), sequela|Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), sequela +C2868509|T037|AB|S92.59|ICD10CM|Other fracture of lesser toe(s)|Other fracture of lesser toe(s) +C2868509|T037|HT|S92.59|ICD10CM|Other fracture of lesser toe(s)|Other fracture of lesser toe(s) +C2868510|T037|AB|S92.591|ICD10CM|Other fracture of right lesser toe(s)|Other fracture of right lesser toe(s) +C2868510|T037|HT|S92.591|ICD10CM|Other fracture of right lesser toe(s)|Other fracture of right lesser toe(s) +C2868511|T037|AB|S92.591A|ICD10CM|Oth fracture of right lesser toe(s), init for clos fx|Oth fracture of right lesser toe(s), init for clos fx +C2868511|T037|PT|S92.591A|ICD10CM|Other fracture of right lesser toe(s), initial encounter for closed fracture|Other fracture of right lesser toe(s), initial encounter for closed fracture +C2868512|T037|AB|S92.591B|ICD10CM|Oth fracture of right lesser toe(s), init for opn fx|Oth fracture of right lesser toe(s), init for opn fx +C2868512|T037|PT|S92.591B|ICD10CM|Other fracture of right lesser toe(s), initial encounter for open fracture|Other fracture of right lesser toe(s), initial encounter for open fracture +C2868513|T037|AB|S92.591D|ICD10CM|Oth fx right lesser toe(s), subs for fx w routn heal|Oth fx right lesser toe(s), subs for fx w routn heal +C2868513|T037|PT|S92.591D|ICD10CM|Other fracture of right lesser toe(s), subsequent encounter for fracture with routine healing|Other fracture of right lesser toe(s), subsequent encounter for fracture with routine healing +C2868514|T037|AB|S92.591G|ICD10CM|Oth fx right lesser toe(s), subs for fx w delay heal|Oth fx right lesser toe(s), subs for fx w delay heal +C2868514|T037|PT|S92.591G|ICD10CM|Other fracture of right lesser toe(s), subsequent encounter for fracture with delayed healing|Other fracture of right lesser toe(s), subsequent encounter for fracture with delayed healing +C2868515|T037|AB|S92.591K|ICD10CM|Oth fracture of right lesser toe(s), subs for fx w nonunion|Oth fracture of right lesser toe(s), subs for fx w nonunion +C2868515|T037|PT|S92.591K|ICD10CM|Other fracture of right lesser toe(s), subsequent encounter for fracture with nonunion|Other fracture of right lesser toe(s), subsequent encounter for fracture with nonunion +C2868516|T037|AB|S92.591P|ICD10CM|Oth fracture of right lesser toe(s), subs for fx w malunion|Oth fracture of right lesser toe(s), subs for fx w malunion +C2868516|T037|PT|S92.591P|ICD10CM|Other fracture of right lesser toe(s), subsequent encounter for fracture with malunion|Other fracture of right lesser toe(s), subsequent encounter for fracture with malunion +C2868517|T037|AB|S92.591S|ICD10CM|Other fracture of right lesser toe(s), sequela|Other fracture of right lesser toe(s), sequela +C2868517|T037|PT|S92.591S|ICD10CM|Other fracture of right lesser toe(s), sequela|Other fracture of right lesser toe(s), sequela +C2868518|T037|AB|S92.592|ICD10CM|Other fracture of left lesser toe(s)|Other fracture of left lesser toe(s) +C2868518|T037|HT|S92.592|ICD10CM|Other fracture of left lesser toe(s)|Other fracture of left lesser toe(s) +C2868519|T037|AB|S92.592A|ICD10CM|Oth fracture of left lesser toe(s), init for clos fx|Oth fracture of left lesser toe(s), init for clos fx +C2868519|T037|PT|S92.592A|ICD10CM|Other fracture of left lesser toe(s), initial encounter for closed fracture|Other fracture of left lesser toe(s), initial encounter for closed fracture +C2868520|T037|AB|S92.592B|ICD10CM|Oth fracture of left lesser toe(s), init for opn fx|Oth fracture of left lesser toe(s), init for opn fx +C2868520|T037|PT|S92.592B|ICD10CM|Other fracture of left lesser toe(s), initial encounter for open fracture|Other fracture of left lesser toe(s), initial encounter for open fracture +C2868521|T037|AB|S92.592D|ICD10CM|Oth fracture of left lesser toe(s), subs for fx w routn heal|Oth fracture of left lesser toe(s), subs for fx w routn heal +C2868521|T037|PT|S92.592D|ICD10CM|Other fracture of left lesser toe(s), subsequent encounter for fracture with routine healing|Other fracture of left lesser toe(s), subsequent encounter for fracture with routine healing +C2868522|T037|AB|S92.592G|ICD10CM|Oth fracture of left lesser toe(s), subs for fx w delay heal|Oth fracture of left lesser toe(s), subs for fx w delay heal +C2868522|T037|PT|S92.592G|ICD10CM|Other fracture of left lesser toe(s), subsequent encounter for fracture with delayed healing|Other fracture of left lesser toe(s), subsequent encounter for fracture with delayed healing +C2868523|T037|AB|S92.592K|ICD10CM|Oth fracture of left lesser toe(s), subs for fx w nonunion|Oth fracture of left lesser toe(s), subs for fx w nonunion +C2868523|T037|PT|S92.592K|ICD10CM|Other fracture of left lesser toe(s), subsequent encounter for fracture with nonunion|Other fracture of left lesser toe(s), subsequent encounter for fracture with nonunion +C2868524|T037|AB|S92.592P|ICD10CM|Oth fracture of left lesser toe(s), subs for fx w malunion|Oth fracture of left lesser toe(s), subs for fx w malunion +C2868524|T037|PT|S92.592P|ICD10CM|Other fracture of left lesser toe(s), subsequent encounter for fracture with malunion|Other fracture of left lesser toe(s), subsequent encounter for fracture with malunion +C2868525|T037|AB|S92.592S|ICD10CM|Other fracture of left lesser toe(s), sequela|Other fracture of left lesser toe(s), sequela +C2868525|T037|PT|S92.592S|ICD10CM|Other fracture of left lesser toe(s), sequela|Other fracture of left lesser toe(s), sequela +C2868526|T037|AB|S92.599|ICD10CM|Other fracture of unspecified lesser toe(s)|Other fracture of unspecified lesser toe(s) +C2868526|T037|HT|S92.599|ICD10CM|Other fracture of unspecified lesser toe(s)|Other fracture of unspecified lesser toe(s) +C2868527|T037|AB|S92.599A|ICD10CM|Oth fracture of unsp lesser toe(s), init for clos fx|Oth fracture of unsp lesser toe(s), init for clos fx +C2868527|T037|PT|S92.599A|ICD10CM|Other fracture of unspecified lesser toe(s), initial encounter for closed fracture|Other fracture of unspecified lesser toe(s), initial encounter for closed fracture +C2868528|T037|AB|S92.599B|ICD10CM|Oth fracture of unsp lesser toe(s), init for opn fx|Oth fracture of unsp lesser toe(s), init for opn fx +C2868528|T037|PT|S92.599B|ICD10CM|Other fracture of unspecified lesser toe(s), initial encounter for open fracture|Other fracture of unspecified lesser toe(s), initial encounter for open fracture +C2868529|T037|AB|S92.599D|ICD10CM|Oth fracture of unsp lesser toe(s), subs for fx w routn heal|Oth fracture of unsp lesser toe(s), subs for fx w routn heal +C2868529|T037|PT|S92.599D|ICD10CM|Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with routine healing|Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with routine healing +C2868530|T037|AB|S92.599G|ICD10CM|Oth fracture of unsp lesser toe(s), subs for fx w delay heal|Oth fracture of unsp lesser toe(s), subs for fx w delay heal +C2868530|T037|PT|S92.599G|ICD10CM|Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing|Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing +C2868531|T037|AB|S92.599K|ICD10CM|Oth fracture of unsp lesser toe(s), subs for fx w nonunion|Oth fracture of unsp lesser toe(s), subs for fx w nonunion +C2868531|T037|PT|S92.599K|ICD10CM|Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with nonunion|Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with nonunion +C2868532|T037|AB|S92.599P|ICD10CM|Oth fracture of unsp lesser toe(s), subs for fx w malunion|Oth fracture of unsp lesser toe(s), subs for fx w malunion +C2868532|T037|PT|S92.599P|ICD10CM|Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with malunion|Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with malunion +C2868533|T037|AB|S92.599S|ICD10CM|Other fracture of unspecified lesser toe(s), sequela|Other fracture of unspecified lesser toe(s), sequela +C2868533|T037|PT|S92.599S|ICD10CM|Other fracture of unspecified lesser toe(s), sequela|Other fracture of unspecified lesser toe(s), sequela +C0452095|T037|PT|S92.7|ICD10|Multiple fractures of foot|Multiple fractures of foot +C4269630|T037|AB|S92.8|ICD10CM|Other fracture of foot, except ankle|Other fracture of foot, except ankle +C4269630|T037|HT|S92.8|ICD10CM|Other fracture of foot, except ankle|Other fracture of foot, except ankle +C4269631|T037|AB|S92.81|ICD10CM|Other fracture of foot|Other fracture of foot +C4269631|T037|HT|S92.81|ICD10CM|Other fracture of foot|Other fracture of foot +C4269632|T037|ET|S92.81|ICD10CM|Sesamoid fracture of foot|Sesamoid fracture of foot +C4269633|T037|AB|S92.811|ICD10CM|Other fracture of right foot|Other fracture of right foot +C4269633|T037|HT|S92.811|ICD10CM|Other fracture of right foot|Other fracture of right foot +C4269634|T037|AB|S92.811A|ICD10CM|Other fracture of right foot, init|Other fracture of right foot, init +C4269634|T037|PT|S92.811A|ICD10CM|Other fracture of right foot, initial encounter for closed fracture|Other fracture of right foot, initial encounter for closed fracture +C4269635|T037|AB|S92.811B|ICD10CM|Other fracture of right foot, 7thB|Other fracture of right foot, 7thB +C4269635|T037|PT|S92.811B|ICD10CM|Other fracture of right foot, initial encounter for open fracture|Other fracture of right foot, initial encounter for open fracture +C4269636|T037|AB|S92.811D|ICD10CM|Other fracture of right foot, 7thD|Other fracture of right foot, 7thD +C4269636|T037|PT|S92.811D|ICD10CM|Other fracture of right foot, subsequent encounter for fracture with routine healing|Other fracture of right foot, subsequent encounter for fracture with routine healing +C4269637|T037|AB|S92.811G|ICD10CM|Other fracture of right foot, 7thG|Other fracture of right foot, 7thG +C4269637|T037|PT|S92.811G|ICD10CM|Other fracture of right foot, subsequent encounter for fracture with delayed healing|Other fracture of right foot, subsequent encounter for fracture with delayed healing +C4269638|T037|AB|S92.811K|ICD10CM|Other fracture of right foot, 7thK|Other fracture of right foot, 7thK +C4269638|T037|PT|S92.811K|ICD10CM|Other fracture of right foot, subsequent encounter for fracture with nonunion|Other fracture of right foot, subsequent encounter for fracture with nonunion +C4269639|T037|AB|S92.811P|ICD10CM|Other fracture of right foot, 7thP|Other fracture of right foot, 7thP +C4269639|T037|PT|S92.811P|ICD10CM|Other fracture of right foot, subsequent encounter for fracture with malunion|Other fracture of right foot, subsequent encounter for fracture with malunion +C4269640|T037|PT|S92.811S|ICD10CM|Other fracture of right foot, sequela|Other fracture of right foot, sequela +C4269640|T037|AB|S92.811S|ICD10CM|Other fracture of right foot, sequela|Other fracture of right foot, sequela +C4269641|T037|AB|S92.812|ICD10CM|Other fracture of left foot|Other fracture of left foot +C4269641|T037|HT|S92.812|ICD10CM|Other fracture of left foot|Other fracture of left foot +C4269642|T037|AB|S92.812A|ICD10CM|Other fracture of left foot, init|Other fracture of left foot, init +C4269642|T037|PT|S92.812A|ICD10CM|Other fracture of left foot, initial encounter for closed fracture|Other fracture of left foot, initial encounter for closed fracture +C4269643|T037|AB|S92.812B|ICD10CM|Other fracture of left foot, 7thB|Other fracture of left foot, 7thB +C4269643|T037|PT|S92.812B|ICD10CM|Other fracture of left foot, initial encounter for open fracture|Other fracture of left foot, initial encounter for open fracture +C4269644|T037|AB|S92.812D|ICD10CM|Other fracture of left foot, 7thD|Other fracture of left foot, 7thD +C4269644|T037|PT|S92.812D|ICD10CM|Other fracture of left foot, subsequent encounter for fracture with routine healing|Other fracture of left foot, subsequent encounter for fracture with routine healing +C4269645|T037|AB|S92.812G|ICD10CM|Other fracture of left foot, 7thG|Other fracture of left foot, 7thG +C4269645|T037|PT|S92.812G|ICD10CM|Other fracture of left foot, subsequent encounter for fracture with delayed healing|Other fracture of left foot, subsequent encounter for fracture with delayed healing +C4269646|T037|AB|S92.812K|ICD10CM|Other fracture of left foot, 7thK|Other fracture of left foot, 7thK +C4269646|T037|PT|S92.812K|ICD10CM|Other fracture of left foot, subsequent encounter for fracture with nonunion|Other fracture of left foot, subsequent encounter for fracture with nonunion +C4269647|T037|AB|S92.812P|ICD10CM|Other fracture of left foot, 7thP|Other fracture of left foot, 7thP +C4269647|T037|PT|S92.812P|ICD10CM|Other fracture of left foot, subsequent encounter for fracture with malunion|Other fracture of left foot, subsequent encounter for fracture with malunion +C4269648|T037|PT|S92.812S|ICD10CM|Other fracture of left foot, sequela|Other fracture of left foot, sequela +C4269648|T037|AB|S92.812S|ICD10CM|Other fracture of left foot, sequela|Other fracture of left foot, sequela +C4269649|T037|AB|S92.819|ICD10CM|Other fracture of unspecified foot|Other fracture of unspecified foot +C4269649|T037|HT|S92.819|ICD10CM|Other fracture of unspecified foot|Other fracture of unspecified foot +C4269650|T037|AB|S92.819A|ICD10CM|Other fracture of unspecified foot, init|Other fracture of unspecified foot, init +C4269650|T037|PT|S92.819A|ICD10CM|Other fracture of unspecified foot, initial encounter for closed fracture|Other fracture of unspecified foot, initial encounter for closed fracture +C4269651|T037|AB|S92.819B|ICD10CM|Other fracture of unspecified foot, 7thB|Other fracture of unspecified foot, 7thB +C4269651|T037|PT|S92.819B|ICD10CM|Other fracture of unspecified foot, initial encounter for open fracture|Other fracture of unspecified foot, initial encounter for open fracture +C4269652|T037|AB|S92.819D|ICD10CM|Other fracture of unspecified foot, 7thD|Other fracture of unspecified foot, 7thD +C4269652|T037|PT|S92.819D|ICD10CM|Other fracture of unspecified foot, subsequent encounter for fracture with routine healing|Other fracture of unspecified foot, subsequent encounter for fracture with routine healing +C4269653|T037|AB|S92.819G|ICD10CM|Other fracture of unspecified foot, 7thG|Other fracture of unspecified foot, 7thG +C4269653|T037|PT|S92.819G|ICD10CM|Other fracture of unspecified foot, subsequent encounter for fracture with delayed healing|Other fracture of unspecified foot, subsequent encounter for fracture with delayed healing +C4269654|T037|AB|S92.819K|ICD10CM|Other fracture of unspecified foot, 7thK|Other fracture of unspecified foot, 7thK +C4269654|T037|PT|S92.819K|ICD10CM|Other fracture of unspecified foot, subsequent encounter for fracture with nonunion|Other fracture of unspecified foot, subsequent encounter for fracture with nonunion +C4269655|T037|AB|S92.819P|ICD10CM|Other fracture of unspecified foot, 7thP|Other fracture of unspecified foot, 7thP +C4269655|T037|PT|S92.819P|ICD10CM|Other fracture of unspecified foot, subsequent encounter for fracture with malunion|Other fracture of unspecified foot, subsequent encounter for fracture with malunion +C4269656|T037|PT|S92.819S|ICD10CM|Other fracture of unspecified foot, sequela|Other fracture of unspecified foot, sequela +C4269656|T037|AB|S92.819S|ICD10CM|Other fracture of unspecified foot, sequela|Other fracture of unspecified foot, sequela +C0272774|T037|PT|S92.9|ICD10|Fracture of foot, unspecified|Fracture of foot, unspecified +C2868534|T037|AB|S92.9|ICD10CM|Unspecified fracture of foot and toe|Unspecified fracture of foot and toe +C2868534|T037|HT|S92.9|ICD10CM|Unspecified fracture of foot and toe|Unspecified fracture of foot and toe +C0272774|T037|AB|S92.90|ICD10CM|Unspecified fracture of foot|Unspecified fracture of foot +C0272774|T037|HT|S92.90|ICD10CM|Unspecified fracture of foot|Unspecified fracture of foot +C2868535|T037|AB|S92.901|ICD10CM|Unspecified fracture of right foot|Unspecified fracture of right foot +C2868535|T037|HT|S92.901|ICD10CM|Unspecified fracture of right foot|Unspecified fracture of right foot +C2868536|T037|AB|S92.901A|ICD10CM|Unsp fracture of right foot, init encntr for closed fracture|Unsp fracture of right foot, init encntr for closed fracture +C2868536|T037|PT|S92.901A|ICD10CM|Unspecified fracture of right foot, initial encounter for closed fracture|Unspecified fracture of right foot, initial encounter for closed fracture +C2868537|T037|AB|S92.901B|ICD10CM|Unsp fracture of right foot, init encntr for open fracture|Unsp fracture of right foot, init encntr for open fracture +C2868537|T037|PT|S92.901B|ICD10CM|Unspecified fracture of right foot, initial encounter for open fracture|Unspecified fracture of right foot, initial encounter for open fracture +C2868538|T037|AB|S92.901D|ICD10CM|Unsp fracture of right foot, subs for fx w routn heal|Unsp fracture of right foot, subs for fx w routn heal +C2868538|T037|PT|S92.901D|ICD10CM|Unspecified fracture of right foot, subsequent encounter for fracture with routine healing|Unspecified fracture of right foot, subsequent encounter for fracture with routine healing +C2868539|T037|AB|S92.901G|ICD10CM|Unsp fracture of right foot, subs for fx w delay heal|Unsp fracture of right foot, subs for fx w delay heal +C2868539|T037|PT|S92.901G|ICD10CM|Unspecified fracture of right foot, subsequent encounter for fracture with delayed healing|Unspecified fracture of right foot, subsequent encounter for fracture with delayed healing +C2868540|T037|AB|S92.901K|ICD10CM|Unsp fracture of right foot, subs for fx w nonunion|Unsp fracture of right foot, subs for fx w nonunion +C2868540|T037|PT|S92.901K|ICD10CM|Unspecified fracture of right foot, subsequent encounter for fracture with nonunion|Unspecified fracture of right foot, subsequent encounter for fracture with nonunion +C2868541|T037|AB|S92.901P|ICD10CM|Unsp fracture of right foot, subs for fx w malunion|Unsp fracture of right foot, subs for fx w malunion +C2868541|T037|PT|S92.901P|ICD10CM|Unspecified fracture of right foot, subsequent encounter for fracture with malunion|Unspecified fracture of right foot, subsequent encounter for fracture with malunion +C2868542|T037|PT|S92.901S|ICD10CM|Unspecified fracture of right foot, sequela|Unspecified fracture of right foot, sequela +C2868542|T037|AB|S92.901S|ICD10CM|Unspecified fracture of right foot, sequela|Unspecified fracture of right foot, sequela +C2868543|T037|AB|S92.902|ICD10CM|Unspecified fracture of left foot|Unspecified fracture of left foot +C2868543|T037|HT|S92.902|ICD10CM|Unspecified fracture of left foot|Unspecified fracture of left foot +C2868544|T037|AB|S92.902A|ICD10CM|Unsp fracture of left foot, init encntr for closed fracture|Unsp fracture of left foot, init encntr for closed fracture +C2868544|T037|PT|S92.902A|ICD10CM|Unspecified fracture of left foot, initial encounter for closed fracture|Unspecified fracture of left foot, initial encounter for closed fracture +C2868545|T037|AB|S92.902B|ICD10CM|Unsp fracture of left foot, init encntr for open fracture|Unsp fracture of left foot, init encntr for open fracture +C2868545|T037|PT|S92.902B|ICD10CM|Unspecified fracture of left foot, initial encounter for open fracture|Unspecified fracture of left foot, initial encounter for open fracture +C2868546|T037|AB|S92.902D|ICD10CM|Unsp fracture of left foot, subs for fx w routn heal|Unsp fracture of left foot, subs for fx w routn heal +C2868546|T037|PT|S92.902D|ICD10CM|Unspecified fracture of left foot, subsequent encounter for fracture with routine healing|Unspecified fracture of left foot, subsequent encounter for fracture with routine healing +C2868547|T037|AB|S92.902G|ICD10CM|Unsp fracture of left foot, subs for fx w delay heal|Unsp fracture of left foot, subs for fx w delay heal +C2868547|T037|PT|S92.902G|ICD10CM|Unspecified fracture of left foot, subsequent encounter for fracture with delayed healing|Unspecified fracture of left foot, subsequent encounter for fracture with delayed healing +C2868548|T037|AB|S92.902K|ICD10CM|Unsp fracture of left foot, subs for fx w nonunion|Unsp fracture of left foot, subs for fx w nonunion +C2868548|T037|PT|S92.902K|ICD10CM|Unspecified fracture of left foot, subsequent encounter for fracture with nonunion|Unspecified fracture of left foot, subsequent encounter for fracture with nonunion +C2868549|T037|AB|S92.902P|ICD10CM|Unsp fracture of left foot, subs for fx w malunion|Unsp fracture of left foot, subs for fx w malunion +C2868549|T037|PT|S92.902P|ICD10CM|Unspecified fracture of left foot, subsequent encounter for fracture with malunion|Unspecified fracture of left foot, subsequent encounter for fracture with malunion +C2868550|T037|PT|S92.902S|ICD10CM|Unspecified fracture of left foot, sequela|Unspecified fracture of left foot, sequela +C2868550|T037|AB|S92.902S|ICD10CM|Unspecified fracture of left foot, sequela|Unspecified fracture of left foot, sequela +C2868551|T037|AB|S92.909|ICD10CM|Unspecified fracture of unspecified foot|Unspecified fracture of unspecified foot +C2868551|T037|HT|S92.909|ICD10CM|Unspecified fracture of unspecified foot|Unspecified fracture of unspecified foot +C2868552|T037|AB|S92.909A|ICD10CM|Unsp fracture of unsp foot, init encntr for closed fracture|Unsp fracture of unsp foot, init encntr for closed fracture +C2868552|T037|PT|S92.909A|ICD10CM|Unspecified fracture of unspecified foot, initial encounter for closed fracture|Unspecified fracture of unspecified foot, initial encounter for closed fracture +C2868553|T037|AB|S92.909B|ICD10CM|Unsp fracture of unsp foot, init encntr for open fracture|Unsp fracture of unsp foot, init encntr for open fracture +C2868553|T037|PT|S92.909B|ICD10CM|Unspecified fracture of unspecified foot, initial encounter for open fracture|Unspecified fracture of unspecified foot, initial encounter for open fracture +C2868554|T037|AB|S92.909D|ICD10CM|Unsp fracture of unsp foot, subs for fx w routn heal|Unsp fracture of unsp foot, subs for fx w routn heal +C2868554|T037|PT|S92.909D|ICD10CM|Unspecified fracture of unspecified foot, subsequent encounter for fracture with routine healing|Unspecified fracture of unspecified foot, subsequent encounter for fracture with routine healing +C2868555|T037|AB|S92.909G|ICD10CM|Unsp fracture of unsp foot, subs for fx w delay heal|Unsp fracture of unsp foot, subs for fx w delay heal +C2868555|T037|PT|S92.909G|ICD10CM|Unspecified fracture of unspecified foot, subsequent encounter for fracture with delayed healing|Unspecified fracture of unspecified foot, subsequent encounter for fracture with delayed healing +C2868556|T037|AB|S92.909K|ICD10CM|Unsp fracture of unsp foot, subs for fx w nonunion|Unsp fracture of unsp foot, subs for fx w nonunion +C2868556|T037|PT|S92.909K|ICD10CM|Unspecified fracture of unspecified foot, subsequent encounter for fracture with nonunion|Unspecified fracture of unspecified foot, subsequent encounter for fracture with nonunion +C2868557|T037|AB|S92.909P|ICD10CM|Unsp fracture of unsp foot, subs for fx w malunion|Unsp fracture of unsp foot, subs for fx w malunion +C2868557|T037|PT|S92.909P|ICD10CM|Unspecified fracture of unspecified foot, subsequent encounter for fracture with malunion|Unspecified fracture of unspecified foot, subsequent encounter for fracture with malunion +C2868558|T037|PT|S92.909S|ICD10CM|Unspecified fracture of unspecified foot, sequela|Unspecified fracture of unspecified foot, sequela +C2868558|T037|AB|S92.909S|ICD10CM|Unspecified fracture of unspecified foot, sequela|Unspecified fracture of unspecified foot, sequela +C2868559|T037|AB|S92.91|ICD10CM|Unspecified fracture of toe|Unspecified fracture of toe +C2868559|T037|HT|S92.91|ICD10CM|Unspecified fracture of toe|Unspecified fracture of toe +C2868560|T037|AB|S92.911|ICD10CM|Unspecified fracture of right toe(s)|Unspecified fracture of right toe(s) +C2868560|T037|HT|S92.911|ICD10CM|Unspecified fracture of right toe(s)|Unspecified fracture of right toe(s) +C2868561|T037|AB|S92.911A|ICD10CM|Unsp fracture of right toe(s), init for clos fx|Unsp fracture of right toe(s), init for clos fx +C2868561|T037|PT|S92.911A|ICD10CM|Unspecified fracture of right toe(s), initial encounter for closed fracture|Unspecified fracture of right toe(s), initial encounter for closed fracture +C2868562|T037|AB|S92.911B|ICD10CM|Unsp fracture of right toe(s), init encntr for open fracture|Unsp fracture of right toe(s), init encntr for open fracture +C2868562|T037|PT|S92.911B|ICD10CM|Unspecified fracture of right toe(s), initial encounter for open fracture|Unspecified fracture of right toe(s), initial encounter for open fracture +C2868563|T037|AB|S92.911D|ICD10CM|Unsp fracture of right toe(s), subs for fx w routn heal|Unsp fracture of right toe(s), subs for fx w routn heal +C2868563|T037|PT|S92.911D|ICD10CM|Unspecified fracture of right toe(s), subsequent encounter for fracture with routine healing|Unspecified fracture of right toe(s), subsequent encounter for fracture with routine healing +C2868564|T037|AB|S92.911G|ICD10CM|Unsp fracture of right toe(s), subs for fx w delay heal|Unsp fracture of right toe(s), subs for fx w delay heal +C2868564|T037|PT|S92.911G|ICD10CM|Unspecified fracture of right toe(s), subsequent encounter for fracture with delayed healing|Unspecified fracture of right toe(s), subsequent encounter for fracture with delayed healing +C2868565|T037|AB|S92.911K|ICD10CM|Unsp fracture of right toe(s), subs for fx w nonunion|Unsp fracture of right toe(s), subs for fx w nonunion +C2868565|T037|PT|S92.911K|ICD10CM|Unspecified fracture of right toe(s), subsequent encounter for fracture with nonunion|Unspecified fracture of right toe(s), subsequent encounter for fracture with nonunion +C2868566|T037|AB|S92.911P|ICD10CM|Unsp fracture of right toe(s), subs for fx w malunion|Unsp fracture of right toe(s), subs for fx w malunion +C2868566|T037|PT|S92.911P|ICD10CM|Unspecified fracture of right toe(s), subsequent encounter for fracture with malunion|Unspecified fracture of right toe(s), subsequent encounter for fracture with malunion +C2868567|T037|AB|S92.911S|ICD10CM|Unspecified fracture of right toe(s), sequela|Unspecified fracture of right toe(s), sequela +C2868567|T037|PT|S92.911S|ICD10CM|Unspecified fracture of right toe(s), sequela|Unspecified fracture of right toe(s), sequela +C2868568|T037|AB|S92.912|ICD10CM|Unspecified fracture of left toe(s)|Unspecified fracture of left toe(s) +C2868568|T037|HT|S92.912|ICD10CM|Unspecified fracture of left toe(s)|Unspecified fracture of left toe(s) +C2868569|T037|AB|S92.912A|ICD10CM|Unsp fracture of left toe(s), init for clos fx|Unsp fracture of left toe(s), init for clos fx +C2868569|T037|PT|S92.912A|ICD10CM|Unspecified fracture of left toe(s), initial encounter for closed fracture|Unspecified fracture of left toe(s), initial encounter for closed fracture +C2868570|T037|AB|S92.912B|ICD10CM|Unsp fracture of left toe(s), init encntr for open fracture|Unsp fracture of left toe(s), init encntr for open fracture +C2868570|T037|PT|S92.912B|ICD10CM|Unspecified fracture of left toe(s), initial encounter for open fracture|Unspecified fracture of left toe(s), initial encounter for open fracture +C2868571|T037|AB|S92.912D|ICD10CM|Unsp fracture of left toe(s), subs for fx w routn heal|Unsp fracture of left toe(s), subs for fx w routn heal +C2868571|T037|PT|S92.912D|ICD10CM|Unspecified fracture of left toe(s), subsequent encounter for fracture with routine healing|Unspecified fracture of left toe(s), subsequent encounter for fracture with routine healing +C2868572|T037|AB|S92.912G|ICD10CM|Unsp fracture of left toe(s), subs for fx w delay heal|Unsp fracture of left toe(s), subs for fx w delay heal +C2868572|T037|PT|S92.912G|ICD10CM|Unspecified fracture of left toe(s), subsequent encounter for fracture with delayed healing|Unspecified fracture of left toe(s), subsequent encounter for fracture with delayed healing +C2868573|T037|AB|S92.912K|ICD10CM|Unsp fracture of left toe(s), subs for fx w nonunion|Unsp fracture of left toe(s), subs for fx w nonunion +C2868573|T037|PT|S92.912K|ICD10CM|Unspecified fracture of left toe(s), subsequent encounter for fracture with nonunion|Unspecified fracture of left toe(s), subsequent encounter for fracture with nonunion +C2868574|T037|AB|S92.912P|ICD10CM|Unsp fracture of left toe(s), subs for fx w malunion|Unsp fracture of left toe(s), subs for fx w malunion +C2868574|T037|PT|S92.912P|ICD10CM|Unspecified fracture of left toe(s), subsequent encounter for fracture with malunion|Unspecified fracture of left toe(s), subsequent encounter for fracture with malunion +C2868575|T037|AB|S92.912S|ICD10CM|Unspecified fracture of left toe(s), sequela|Unspecified fracture of left toe(s), sequela +C2868575|T037|PT|S92.912S|ICD10CM|Unspecified fracture of left toe(s), sequela|Unspecified fracture of left toe(s), sequela +C2868576|T037|AB|S92.919|ICD10CM|Unspecified fracture of unspecified toe(s)|Unspecified fracture of unspecified toe(s) +C2868576|T037|HT|S92.919|ICD10CM|Unspecified fracture of unspecified toe(s)|Unspecified fracture of unspecified toe(s) +C2868577|T037|AB|S92.919A|ICD10CM|Unsp fracture of unsp toe(s), init for clos fx|Unsp fracture of unsp toe(s), init for clos fx +C2868577|T037|PT|S92.919A|ICD10CM|Unspecified fracture of unspecified toe(s), initial encounter for closed fracture|Unspecified fracture of unspecified toe(s), initial encounter for closed fracture +C2868578|T037|AB|S92.919B|ICD10CM|Unsp fracture of unsp toe(s), init encntr for open fracture|Unsp fracture of unsp toe(s), init encntr for open fracture +C2868578|T037|PT|S92.919B|ICD10CM|Unspecified fracture of unspecified toe(s), initial encounter for open fracture|Unspecified fracture of unspecified toe(s), initial encounter for open fracture +C2868579|T037|AB|S92.919D|ICD10CM|Unsp fracture of unsp toe(s), subs for fx w routn heal|Unsp fracture of unsp toe(s), subs for fx w routn heal +C2868579|T037|PT|S92.919D|ICD10CM|Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with routine healing|Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with routine healing +C2868580|T037|AB|S92.919G|ICD10CM|Unsp fracture of unsp toe(s), subs for fx w delay heal|Unsp fracture of unsp toe(s), subs for fx w delay heal +C2868580|T037|PT|S92.919G|ICD10CM|Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with delayed healing|Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with delayed healing +C2868581|T037|AB|S92.919K|ICD10CM|Unsp fracture of unsp toe(s), subs for fx w nonunion|Unsp fracture of unsp toe(s), subs for fx w nonunion +C2868581|T037|PT|S92.919K|ICD10CM|Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with nonunion|Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with nonunion +C2868582|T037|AB|S92.919P|ICD10CM|Unsp fracture of unsp toe(s), subs for fx w malunion|Unsp fracture of unsp toe(s), subs for fx w malunion +C2868582|T037|PT|S92.919P|ICD10CM|Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with malunion|Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with malunion +C2868583|T037|AB|S92.919S|ICD10CM|Unspecified fracture of unspecified toe(s), sequela|Unspecified fracture of unspecified toe(s), sequela +C2868583|T037|PT|S92.919S|ICD10CM|Unspecified fracture of unspecified toe(s), sequela|Unspecified fracture of unspecified toe(s), sequela +C4290379|T037|ET|S93|ICD10CM|avulsion of joint or ligament of ankle, foot and toe|avulsion of joint or ligament of ankle, foot and toe +C2868591|T037|AB|S93|ICD10CM|Disloc & sprain of joints & ligaments at ankl, ft & toe lev|Disloc & sprain of joints & ligaments at ankl, ft & toe lev +C2868591|T037|HT|S93|ICD10CM|Dislocation and sprain of joints and ligaments at ankle, foot and toe level|Dislocation and sprain of joints and ligaments at ankle, foot and toe level +C0495967|T037|HT|S93|ICD10|Dislocation, sprain and strain of joints and ligaments at ankle and foot level|Dislocation, sprain and strain of joints and ligaments at ankle and foot level +C4290380|T037|ET|S93|ICD10CM|laceration of cartilage, joint or ligament of ankle, foot and toe|laceration of cartilage, joint or ligament of ankle, foot and toe +C4290381|T037|ET|S93|ICD10CM|sprain of cartilage, joint or ligament of ankle, foot and toe|sprain of cartilage, joint or ligament of ankle, foot and toe +C4290382|T037|ET|S93|ICD10CM|traumatic hemarthrosis of joint or ligament of ankle, foot and toe|traumatic hemarthrosis of joint or ligament of ankle, foot and toe +C4290383|T037|ET|S93|ICD10CM|traumatic rupture of joint or ligament of ankle, foot and toe|traumatic rupture of joint or ligament of ankle, foot and toe +C4290384|T037|ET|S93|ICD10CM|traumatic subluxation of joint or ligament of ankle, foot and toe|traumatic subluxation of joint or ligament of ankle, foot and toe +C4290385|T037|ET|S93|ICD10CM|traumatic tear of joint or ligament of ankle, foot and toe|traumatic tear of joint or ligament of ankle, foot and toe +C0434691|T037|PT|S93.0|ICD10|Dislocation of ankle joint|Dislocation of ankle joint +C2868596|T037|AB|S93.0|ICD10CM|Subluxation and dislocation of ankle joint|Subluxation and dislocation of ankle joint +C2868596|T037|HT|S93.0|ICD10CM|Subluxation and dislocation of ankle joint|Subluxation and dislocation of ankle joint +C2868592|T037|ET|S93.0|ICD10CM|Subluxation and dislocation of astragalus|Subluxation and dislocation of astragalus +C2868593|T037|ET|S93.0|ICD10CM|Subluxation and dislocation of fibula, lower end|Subluxation and dislocation of fibula, lower end +C2868592|T037|ET|S93.0|ICD10CM|Subluxation and dislocation of talus|Subluxation and dislocation of talus +C2868595|T037|ET|S93.0|ICD10CM|Subluxation and dislocation of tibia, lower end|Subluxation and dislocation of tibia, lower end +C2156802|T037|AB|S93.01|ICD10CM|Subluxation of right ankle joint|Subluxation of right ankle joint +C2156802|T037|HT|S93.01|ICD10CM|Subluxation of right ankle joint|Subluxation of right ankle joint +C2868598|T037|PT|S93.01XA|ICD10CM|Subluxation of right ankle joint, initial encounter|Subluxation of right ankle joint, initial encounter +C2868598|T037|AB|S93.01XA|ICD10CM|Subluxation of right ankle joint, initial encounter|Subluxation of right ankle joint, initial encounter +C2868599|T037|PT|S93.01XD|ICD10CM|Subluxation of right ankle joint, subsequent encounter|Subluxation of right ankle joint, subsequent encounter +C2868599|T037|AB|S93.01XD|ICD10CM|Subluxation of right ankle joint, subsequent encounter|Subluxation of right ankle joint, subsequent encounter +C2868600|T037|PT|S93.01XS|ICD10CM|Subluxation of right ankle joint, sequela|Subluxation of right ankle joint, sequela +C2868600|T037|AB|S93.01XS|ICD10CM|Subluxation of right ankle joint, sequela|Subluxation of right ankle joint, sequela +C2139542|T037|AB|S93.02|ICD10CM|Subluxation of left ankle joint|Subluxation of left ankle joint +C2139542|T037|HT|S93.02|ICD10CM|Subluxation of left ankle joint|Subluxation of left ankle joint +C2868602|T037|PT|S93.02XA|ICD10CM|Subluxation of left ankle joint, initial encounter|Subluxation of left ankle joint, initial encounter +C2868602|T037|AB|S93.02XA|ICD10CM|Subluxation of left ankle joint, initial encounter|Subluxation of left ankle joint, initial encounter +C2868603|T037|PT|S93.02XD|ICD10CM|Subluxation of left ankle joint, subsequent encounter|Subluxation of left ankle joint, subsequent encounter +C2868603|T037|AB|S93.02XD|ICD10CM|Subluxation of left ankle joint, subsequent encounter|Subluxation of left ankle joint, subsequent encounter +C2868604|T037|PT|S93.02XS|ICD10CM|Subluxation of left ankle joint, sequela|Subluxation of left ankle joint, sequela +C2868604|T037|AB|S93.02XS|ICD10CM|Subluxation of left ankle joint, sequela|Subluxation of left ankle joint, sequela +C2868605|T037|AB|S93.03|ICD10CM|Subluxation of unspecified ankle joint|Subluxation of unspecified ankle joint +C2868605|T037|HT|S93.03|ICD10CM|Subluxation of unspecified ankle joint|Subluxation of unspecified ankle joint +C2868606|T037|PT|S93.03XA|ICD10CM|Subluxation of unspecified ankle joint, initial encounter|Subluxation of unspecified ankle joint, initial encounter +C2868606|T037|AB|S93.03XA|ICD10CM|Subluxation of unspecified ankle joint, initial encounter|Subluxation of unspecified ankle joint, initial encounter +C2868607|T037|AB|S93.03XD|ICD10CM|Subluxation of unspecified ankle joint, subsequent encounter|Subluxation of unspecified ankle joint, subsequent encounter +C2868607|T037|PT|S93.03XD|ICD10CM|Subluxation of unspecified ankle joint, subsequent encounter|Subluxation of unspecified ankle joint, subsequent encounter +C2868608|T037|PT|S93.03XS|ICD10CM|Subluxation of unspecified ankle joint, sequela|Subluxation of unspecified ankle joint, sequela +C2868608|T037|AB|S93.03XS|ICD10CM|Subluxation of unspecified ankle joint, sequela|Subluxation of unspecified ankle joint, sequela +C2868609|T037|AB|S93.04|ICD10CM|Dislocation of right ankle joint|Dislocation of right ankle joint +C2868609|T037|HT|S93.04|ICD10CM|Dislocation of right ankle joint|Dislocation of right ankle joint +C2868610|T037|PT|S93.04XA|ICD10CM|Dislocation of right ankle joint, initial encounter|Dislocation of right ankle joint, initial encounter +C2868610|T037|AB|S93.04XA|ICD10CM|Dislocation of right ankle joint, initial encounter|Dislocation of right ankle joint, initial encounter +C2868611|T037|PT|S93.04XD|ICD10CM|Dislocation of right ankle joint, subsequent encounter|Dislocation of right ankle joint, subsequent encounter +C2868611|T037|AB|S93.04XD|ICD10CM|Dislocation of right ankle joint, subsequent encounter|Dislocation of right ankle joint, subsequent encounter +C2868612|T037|PT|S93.04XS|ICD10CM|Dislocation of right ankle joint, sequela|Dislocation of right ankle joint, sequela +C2868612|T037|AB|S93.04XS|ICD10CM|Dislocation of right ankle joint, sequela|Dislocation of right ankle joint, sequela +C2868613|T037|AB|S93.05|ICD10CM|Dislocation of left ankle joint|Dislocation of left ankle joint +C2868613|T037|HT|S93.05|ICD10CM|Dislocation of left ankle joint|Dislocation of left ankle joint +C2868614|T037|PT|S93.05XA|ICD10CM|Dislocation of left ankle joint, initial encounter|Dislocation of left ankle joint, initial encounter +C2868614|T037|AB|S93.05XA|ICD10CM|Dislocation of left ankle joint, initial encounter|Dislocation of left ankle joint, initial encounter +C2868615|T037|PT|S93.05XD|ICD10CM|Dislocation of left ankle joint, subsequent encounter|Dislocation of left ankle joint, subsequent encounter +C2868615|T037|AB|S93.05XD|ICD10CM|Dislocation of left ankle joint, subsequent encounter|Dislocation of left ankle joint, subsequent encounter +C2868616|T037|PT|S93.05XS|ICD10CM|Dislocation of left ankle joint, sequela|Dislocation of left ankle joint, sequela +C2868616|T037|AB|S93.05XS|ICD10CM|Dislocation of left ankle joint, sequela|Dislocation of left ankle joint, sequela +C2868617|T037|AB|S93.06|ICD10CM|Dislocation of unspecified ankle joint|Dislocation of unspecified ankle joint +C2868617|T037|HT|S93.06|ICD10CM|Dislocation of unspecified ankle joint|Dislocation of unspecified ankle joint +C2868618|T037|PT|S93.06XA|ICD10CM|Dislocation of unspecified ankle joint, initial encounter|Dislocation of unspecified ankle joint, initial encounter +C2868618|T037|AB|S93.06XA|ICD10CM|Dislocation of unspecified ankle joint, initial encounter|Dislocation of unspecified ankle joint, initial encounter +C2868619|T037|AB|S93.06XD|ICD10CM|Dislocation of unspecified ankle joint, subsequent encounter|Dislocation of unspecified ankle joint, subsequent encounter +C2868619|T037|PT|S93.06XD|ICD10CM|Dislocation of unspecified ankle joint, subsequent encounter|Dislocation of unspecified ankle joint, subsequent encounter +C2868620|T037|PT|S93.06XS|ICD10CM|Dislocation of unspecified ankle joint, sequela|Dislocation of unspecified ankle joint, sequela +C2868620|T037|AB|S93.06XS|ICD10CM|Dislocation of unspecified ankle joint, sequela|Dislocation of unspecified ankle joint, sequela +C0434717|T037|PT|S93.1|ICD10|Dislocation of toe(s)|Dislocation of toe(s) +C2868621|T037|AB|S93.1|ICD10CM|Subluxation and dislocation of toe|Subluxation and dislocation of toe +C2868621|T037|HT|S93.1|ICD10CM|Subluxation and dislocation of toe|Subluxation and dislocation of toe +C0434717|T037|ET|S93.10|ICD10CM|Dislocation of toe NOS|Dislocation of toe NOS +C0434834|T037|ET|S93.10|ICD10CM|Subluxation of toe NOS|Subluxation of toe NOS +C2868622|T037|AB|S93.10|ICD10CM|Unspecified subluxation and dislocation of toe|Unspecified subluxation and dislocation of toe +C2868622|T037|HT|S93.10|ICD10CM|Unspecified subluxation and dislocation of toe|Unspecified subluxation and dislocation of toe +C2868623|T037|AB|S93.101|ICD10CM|Unspecified subluxation of right toe(s)|Unspecified subluxation of right toe(s) +C2868623|T037|HT|S93.101|ICD10CM|Unspecified subluxation of right toe(s)|Unspecified subluxation of right toe(s) +C2868624|T037|AB|S93.101A|ICD10CM|Unspecified subluxation of right toe(s), initial encounter|Unspecified subluxation of right toe(s), initial encounter +C2868624|T037|PT|S93.101A|ICD10CM|Unspecified subluxation of right toe(s), initial encounter|Unspecified subluxation of right toe(s), initial encounter +C2868625|T037|AB|S93.101D|ICD10CM|Unspecified subluxation of right toe(s), subs encntr|Unspecified subluxation of right toe(s), subs encntr +C2868625|T037|PT|S93.101D|ICD10CM|Unspecified subluxation of right toe(s), subsequent encounter|Unspecified subluxation of right toe(s), subsequent encounter +C2868626|T037|AB|S93.101S|ICD10CM|Unspecified subluxation of right toe(s), sequela|Unspecified subluxation of right toe(s), sequela +C2868626|T037|PT|S93.101S|ICD10CM|Unspecified subluxation of right toe(s), sequela|Unspecified subluxation of right toe(s), sequela +C2868627|T037|AB|S93.102|ICD10CM|Unspecified subluxation of left toe(s)|Unspecified subluxation of left toe(s) +C2868627|T037|HT|S93.102|ICD10CM|Unspecified subluxation of left toe(s)|Unspecified subluxation of left toe(s) +C2868628|T037|AB|S93.102A|ICD10CM|Unspecified subluxation of left toe(s), initial encounter|Unspecified subluxation of left toe(s), initial encounter +C2868628|T037|PT|S93.102A|ICD10CM|Unspecified subluxation of left toe(s), initial encounter|Unspecified subluxation of left toe(s), initial encounter +C2868629|T037|AB|S93.102D|ICD10CM|Unspecified subluxation of left toe(s), subsequent encounter|Unspecified subluxation of left toe(s), subsequent encounter +C2868629|T037|PT|S93.102D|ICD10CM|Unspecified subluxation of left toe(s), subsequent encounter|Unspecified subluxation of left toe(s), subsequent encounter +C2868630|T037|AB|S93.102S|ICD10CM|Unspecified subluxation of left toe(s), sequela|Unspecified subluxation of left toe(s), sequela +C2868630|T037|PT|S93.102S|ICD10CM|Unspecified subluxation of left toe(s), sequela|Unspecified subluxation of left toe(s), sequela +C2868631|T037|AB|S93.103|ICD10CM|Unspecified subluxation of unspecified toe(s)|Unspecified subluxation of unspecified toe(s) +C2868631|T037|HT|S93.103|ICD10CM|Unspecified subluxation of unspecified toe(s)|Unspecified subluxation of unspecified toe(s) +C2868632|T037|AB|S93.103A|ICD10CM|Unspecified subluxation of unspecified toe(s), init encntr|Unspecified subluxation of unspecified toe(s), init encntr +C2868632|T037|PT|S93.103A|ICD10CM|Unspecified subluxation of unspecified toe(s), initial encounter|Unspecified subluxation of unspecified toe(s), initial encounter +C2868633|T037|AB|S93.103D|ICD10CM|Unspecified subluxation of unspecified toe(s), subs encntr|Unspecified subluxation of unspecified toe(s), subs encntr +C2868633|T037|PT|S93.103D|ICD10CM|Unspecified subluxation of unspecified toe(s), subsequent encounter|Unspecified subluxation of unspecified toe(s), subsequent encounter +C2868634|T037|AB|S93.103S|ICD10CM|Unspecified subluxation of unspecified toe(s), sequela|Unspecified subluxation of unspecified toe(s), sequela +C2868634|T037|PT|S93.103S|ICD10CM|Unspecified subluxation of unspecified toe(s), sequela|Unspecified subluxation of unspecified toe(s), sequela +C2868635|T037|AB|S93.104|ICD10CM|Unspecified dislocation of right toe(s)|Unspecified dislocation of right toe(s) +C2868635|T037|HT|S93.104|ICD10CM|Unspecified dislocation of right toe(s)|Unspecified dislocation of right toe(s) +C2868636|T037|AB|S93.104A|ICD10CM|Unspecified dislocation of right toe(s), initial encounter|Unspecified dislocation of right toe(s), initial encounter +C2868636|T037|PT|S93.104A|ICD10CM|Unspecified dislocation of right toe(s), initial encounter|Unspecified dislocation of right toe(s), initial encounter +C2868637|T037|AB|S93.104D|ICD10CM|Unspecified dislocation of right toe(s), subs encntr|Unspecified dislocation of right toe(s), subs encntr +C2868637|T037|PT|S93.104D|ICD10CM|Unspecified dislocation of right toe(s), subsequent encounter|Unspecified dislocation of right toe(s), subsequent encounter +C2868638|T037|AB|S93.104S|ICD10CM|Unspecified dislocation of right toe(s), sequela|Unspecified dislocation of right toe(s), sequela +C2868638|T037|PT|S93.104S|ICD10CM|Unspecified dislocation of right toe(s), sequela|Unspecified dislocation of right toe(s), sequela +C2868639|T037|AB|S93.105|ICD10CM|Unspecified dislocation of left toe(s)|Unspecified dislocation of left toe(s) +C2868639|T037|HT|S93.105|ICD10CM|Unspecified dislocation of left toe(s)|Unspecified dislocation of left toe(s) +C2868640|T037|AB|S93.105A|ICD10CM|Unspecified dislocation of left toe(s), initial encounter|Unspecified dislocation of left toe(s), initial encounter +C2868640|T037|PT|S93.105A|ICD10CM|Unspecified dislocation of left toe(s), initial encounter|Unspecified dislocation of left toe(s), initial encounter +C2868641|T037|AB|S93.105D|ICD10CM|Unspecified dislocation of left toe(s), subsequent encounter|Unspecified dislocation of left toe(s), subsequent encounter +C2868641|T037|PT|S93.105D|ICD10CM|Unspecified dislocation of left toe(s), subsequent encounter|Unspecified dislocation of left toe(s), subsequent encounter +C2868642|T037|AB|S93.105S|ICD10CM|Unspecified dislocation of left toe(s), sequela|Unspecified dislocation of left toe(s), sequela +C2868642|T037|PT|S93.105S|ICD10CM|Unspecified dislocation of left toe(s), sequela|Unspecified dislocation of left toe(s), sequela +C2868643|T037|AB|S93.106|ICD10CM|Unspecified dislocation of unspecified toe(s)|Unspecified dislocation of unspecified toe(s) +C2868643|T037|HT|S93.106|ICD10CM|Unspecified dislocation of unspecified toe(s)|Unspecified dislocation of unspecified toe(s) +C2868644|T037|AB|S93.106A|ICD10CM|Unspecified dislocation of unspecified toe(s), init encntr|Unspecified dislocation of unspecified toe(s), init encntr +C2868644|T037|PT|S93.106A|ICD10CM|Unspecified dislocation of unspecified toe(s), initial encounter|Unspecified dislocation of unspecified toe(s), initial encounter +C2868645|T037|AB|S93.106D|ICD10CM|Unspecified dislocation of unspecified toe(s), subs encntr|Unspecified dislocation of unspecified toe(s), subs encntr +C2868645|T037|PT|S93.106D|ICD10CM|Unspecified dislocation of unspecified toe(s), subsequent encounter|Unspecified dislocation of unspecified toe(s), subsequent encounter +C2868646|T037|AB|S93.106S|ICD10CM|Unspecified dislocation of unspecified toe(s), sequela|Unspecified dislocation of unspecified toe(s), sequela +C2868646|T037|PT|S93.106S|ICD10CM|Unspecified dislocation of unspecified toe(s), sequela|Unspecified dislocation of unspecified toe(s), sequela +C0840734|T037|AB|S93.11|ICD10CM|Dislocation of interphalangeal joint|Dislocation of interphalangeal joint +C0840734|T037|HT|S93.11|ICD10CM|Dislocation of interphalangeal joint|Dislocation of interphalangeal joint +C2868648|T037|AB|S93.111|ICD10CM|Dislocation of interphalangeal joint of right great toe|Dislocation of interphalangeal joint of right great toe +C2868648|T037|HT|S93.111|ICD10CM|Dislocation of interphalangeal joint of right great toe|Dislocation of interphalangeal joint of right great toe +C2868649|T037|PT|S93.111A|ICD10CM|Dislocation of interphalangeal joint of right great toe, initial encounter|Dislocation of interphalangeal joint of right great toe, initial encounter +C2868649|T037|AB|S93.111A|ICD10CM|Dislocation of interphaln joint of right great toe, init|Dislocation of interphaln joint of right great toe, init +C2868650|T037|PT|S93.111D|ICD10CM|Dislocation of interphalangeal joint of right great toe, subsequent encounter|Dislocation of interphalangeal joint of right great toe, subsequent encounter +C2868650|T037|AB|S93.111D|ICD10CM|Dislocation of interphaln joint of right great toe, subs|Dislocation of interphaln joint of right great toe, subs +C2868651|T037|PT|S93.111S|ICD10CM|Dislocation of interphalangeal joint of right great toe, sequela|Dislocation of interphalangeal joint of right great toe, sequela +C2868651|T037|AB|S93.111S|ICD10CM|Dislocation of interphaln joint of right great toe, sequela|Dislocation of interphaln joint of right great toe, sequela +C2868652|T037|AB|S93.112|ICD10CM|Dislocation of interphalangeal joint of left great toe|Dislocation of interphalangeal joint of left great toe +C2868652|T037|HT|S93.112|ICD10CM|Dislocation of interphalangeal joint of left great toe|Dislocation of interphalangeal joint of left great toe +C2868653|T037|AB|S93.112A|ICD10CM|Dislocation of interphalangeal joint of left great toe, init|Dislocation of interphalangeal joint of left great toe, init +C2868653|T037|PT|S93.112A|ICD10CM|Dislocation of interphalangeal joint of left great toe, initial encounter|Dislocation of interphalangeal joint of left great toe, initial encounter +C2868654|T037|AB|S93.112D|ICD10CM|Dislocation of interphalangeal joint of left great toe, subs|Dislocation of interphalangeal joint of left great toe, subs +C2868654|T037|PT|S93.112D|ICD10CM|Dislocation of interphalangeal joint of left great toe, subsequent encounter|Dislocation of interphalangeal joint of left great toe, subsequent encounter +C2868655|T037|PT|S93.112S|ICD10CM|Dislocation of interphalangeal joint of left great toe, sequela|Dislocation of interphalangeal joint of left great toe, sequela +C2868655|T037|AB|S93.112S|ICD10CM|Dislocation of interphaln joint of left great toe, sequela|Dislocation of interphaln joint of left great toe, sequela +C2868656|T037|AB|S93.113|ICD10CM|Dislocation of interphalangeal joint of unsp great toe|Dislocation of interphalangeal joint of unsp great toe +C2868656|T037|HT|S93.113|ICD10CM|Dislocation of interphalangeal joint of unspecified great toe|Dislocation of interphalangeal joint of unspecified great toe +C2868657|T037|AB|S93.113A|ICD10CM|Dislocation of interphalangeal joint of unsp great toe, init|Dislocation of interphalangeal joint of unsp great toe, init +C2868657|T037|PT|S93.113A|ICD10CM|Dislocation of interphalangeal joint of unspecified great toe, initial encounter|Dislocation of interphalangeal joint of unspecified great toe, initial encounter +C2868658|T037|AB|S93.113D|ICD10CM|Dislocation of interphalangeal joint of unsp great toe, subs|Dislocation of interphalangeal joint of unsp great toe, subs +C2868658|T037|PT|S93.113D|ICD10CM|Dislocation of interphalangeal joint of unspecified great toe, subsequent encounter|Dislocation of interphalangeal joint of unspecified great toe, subsequent encounter +C2868659|T037|PT|S93.113S|ICD10CM|Dislocation of interphalangeal joint of unspecified great toe, sequela|Dislocation of interphalangeal joint of unspecified great toe, sequela +C2868659|T037|AB|S93.113S|ICD10CM|Dislocation of interphaln joint of unsp great toe, sequela|Dislocation of interphaln joint of unsp great toe, sequela +C2868660|T037|AB|S93.114|ICD10CM|Dislocation of interphalangeal joint of right lesser toe(s)|Dislocation of interphalangeal joint of right lesser toe(s) +C2868660|T037|HT|S93.114|ICD10CM|Dislocation of interphalangeal joint of right lesser toe(s)|Dislocation of interphalangeal joint of right lesser toe(s) +C2868661|T037|PT|S93.114A|ICD10CM|Dislocation of interphalangeal joint of right lesser toe(s), initial encounter|Dislocation of interphalangeal joint of right lesser toe(s), initial encounter +C2868661|T037|AB|S93.114A|ICD10CM|Dislocation of interphaln joint of right lesser toe(s), init|Dislocation of interphaln joint of right lesser toe(s), init +C2868662|T037|PT|S93.114D|ICD10CM|Dislocation of interphalangeal joint of right lesser toe(s), subsequent encounter|Dislocation of interphalangeal joint of right lesser toe(s), subsequent encounter +C2868662|T037|AB|S93.114D|ICD10CM|Dislocation of interphaln joint of right lesser toe(s), subs|Dislocation of interphaln joint of right lesser toe(s), subs +C2868663|T037|AB|S93.114S|ICD10CM|Disloc of interphaln joint of right lesser toe(s), sequela|Disloc of interphaln joint of right lesser toe(s), sequela +C2868663|T037|PT|S93.114S|ICD10CM|Dislocation of interphalangeal joint of right lesser toe(s), sequela|Dislocation of interphalangeal joint of right lesser toe(s), sequela +C2868664|T037|AB|S93.115|ICD10CM|Dislocation of interphalangeal joint of left lesser toe(s)|Dislocation of interphalangeal joint of left lesser toe(s) +C2868664|T037|HT|S93.115|ICD10CM|Dislocation of interphalangeal joint of left lesser toe(s)|Dislocation of interphalangeal joint of left lesser toe(s) +C2868665|T037|PT|S93.115A|ICD10CM|Dislocation of interphalangeal joint of left lesser toe(s), initial encounter|Dislocation of interphalangeal joint of left lesser toe(s), initial encounter +C2868665|T037|AB|S93.115A|ICD10CM|Dislocation of interphaln joint of left lesser toe(s), init|Dislocation of interphaln joint of left lesser toe(s), init +C2868666|T037|PT|S93.115D|ICD10CM|Dislocation of interphalangeal joint of left lesser toe(s), subsequent encounter|Dislocation of interphalangeal joint of left lesser toe(s), subsequent encounter +C2868666|T037|AB|S93.115D|ICD10CM|Dislocation of interphaln joint of left lesser toe(s), subs|Dislocation of interphaln joint of left lesser toe(s), subs +C2868667|T037|AB|S93.115S|ICD10CM|Disloc of interphaln joint of left lesser toe(s), sequela|Disloc of interphaln joint of left lesser toe(s), sequela +C2868667|T037|PT|S93.115S|ICD10CM|Dislocation of interphalangeal joint of left lesser toe(s), sequela|Dislocation of interphalangeal joint of left lesser toe(s), sequela +C2868668|T037|AB|S93.116|ICD10CM|Dislocation of interphalangeal joint of unsp lesser toe(s)|Dislocation of interphalangeal joint of unsp lesser toe(s) +C2868668|T037|HT|S93.116|ICD10CM|Dislocation of interphalangeal joint of unspecified lesser toe(s)|Dislocation of interphalangeal joint of unspecified lesser toe(s) +C2868669|T037|PT|S93.116A|ICD10CM|Dislocation of interphalangeal joint of unspecified lesser toe(s), initial encounter|Dislocation of interphalangeal joint of unspecified lesser toe(s), initial encounter +C2868669|T037|AB|S93.116A|ICD10CM|Dislocation of interphaln joint of unsp lesser toe(s), init|Dislocation of interphaln joint of unsp lesser toe(s), init +C2868670|T037|PT|S93.116D|ICD10CM|Dislocation of interphalangeal joint of unspecified lesser toe(s), subsequent encounter|Dislocation of interphalangeal joint of unspecified lesser toe(s), subsequent encounter +C2868670|T037|AB|S93.116D|ICD10CM|Dislocation of interphaln joint of unsp lesser toe(s), subs|Dislocation of interphaln joint of unsp lesser toe(s), subs +C2868671|T037|AB|S93.116S|ICD10CM|Disloc of interphaln joint of unsp lesser toe(s), sequela|Disloc of interphaln joint of unsp lesser toe(s), sequela +C2868671|T037|PT|S93.116S|ICD10CM|Dislocation of interphalangeal joint of unspecified lesser toe(s), sequela|Dislocation of interphalangeal joint of unspecified lesser toe(s), sequela +C2868672|T037|AB|S93.119|ICD10CM|Dislocation of interphalangeal joint of unspecified toe(s)|Dislocation of interphalangeal joint of unspecified toe(s) +C2868672|T037|HT|S93.119|ICD10CM|Dislocation of interphalangeal joint of unspecified toe(s)|Dislocation of interphalangeal joint of unspecified toe(s) +C2868673|T037|AB|S93.119A|ICD10CM|Dislocation of interphalangeal joint of unsp toe(s), init|Dislocation of interphalangeal joint of unsp toe(s), init +C2868673|T037|PT|S93.119A|ICD10CM|Dislocation of interphalangeal joint of unspecified toe(s), initial encounter|Dislocation of interphalangeal joint of unspecified toe(s), initial encounter +C2868674|T037|AB|S93.119D|ICD10CM|Dislocation of interphalangeal joint of unsp toe(s), subs|Dislocation of interphalangeal joint of unsp toe(s), subs +C2868674|T037|PT|S93.119D|ICD10CM|Dislocation of interphalangeal joint of unspecified toe(s), subsequent encounter|Dislocation of interphalangeal joint of unspecified toe(s), subsequent encounter +C2868675|T037|AB|S93.119S|ICD10CM|Dislocation of interphalangeal joint of unsp toe(s), sequela|Dislocation of interphalangeal joint of unsp toe(s), sequela +C2868675|T037|PT|S93.119S|ICD10CM|Dislocation of interphalangeal joint of unspecified toe(s), sequela|Dislocation of interphalangeal joint of unspecified toe(s), sequela +C0840733|T037|AB|S93.12|ICD10CM|Dislocation of metatarsophalangeal joint|Dislocation of metatarsophalangeal joint +C0840733|T037|HT|S93.12|ICD10CM|Dislocation of metatarsophalangeal joint|Dislocation of metatarsophalangeal joint +C2868676|T037|AB|S93.121|ICD10CM|Dislocation of metatarsophalangeal joint of right great toe|Dislocation of metatarsophalangeal joint of right great toe +C2868676|T037|HT|S93.121|ICD10CM|Dislocation of metatarsophalangeal joint of right great toe|Dislocation of metatarsophalangeal joint of right great toe +C2868677|T037|PT|S93.121A|ICD10CM|Dislocation of metatarsophalangeal joint of right great toe, initial encounter|Dislocation of metatarsophalangeal joint of right great toe, initial encounter +C2868677|T037|AB|S93.121A|ICD10CM|Dislocation of MTP joint of right great toe, init|Dislocation of MTP joint of right great toe, init +C2868678|T037|PT|S93.121D|ICD10CM|Dislocation of metatarsophalangeal joint of right great toe, subsequent encounter|Dislocation of metatarsophalangeal joint of right great toe, subsequent encounter +C2868678|T037|AB|S93.121D|ICD10CM|Dislocation of MTP joint of right great toe, subs|Dislocation of MTP joint of right great toe, subs +C2868679|T037|PT|S93.121S|ICD10CM|Dislocation of metatarsophalangeal joint of right great toe, sequela|Dislocation of metatarsophalangeal joint of right great toe, sequela +C2868679|T037|AB|S93.121S|ICD10CM|Dislocation of MTP joint of right great toe, sequela|Dislocation of MTP joint of right great toe, sequela +C2868680|T037|AB|S93.122|ICD10CM|Dislocation of metatarsophalangeal joint of left great toe|Dislocation of metatarsophalangeal joint of left great toe +C2868680|T037|HT|S93.122|ICD10CM|Dislocation of metatarsophalangeal joint of left great toe|Dislocation of metatarsophalangeal joint of left great toe +C2868681|T037|PT|S93.122A|ICD10CM|Dislocation of metatarsophalangeal joint of left great toe, initial encounter|Dislocation of metatarsophalangeal joint of left great toe, initial encounter +C2868681|T037|AB|S93.122A|ICD10CM|Dislocation of MTP joint of left great toe, init|Dislocation of MTP joint of left great toe, init +C2868682|T037|PT|S93.122D|ICD10CM|Dislocation of metatarsophalangeal joint of left great toe, subsequent encounter|Dislocation of metatarsophalangeal joint of left great toe, subsequent encounter +C2868682|T037|AB|S93.122D|ICD10CM|Dislocation of MTP joint of left great toe, subs|Dislocation of MTP joint of left great toe, subs +C2868683|T037|PT|S93.122S|ICD10CM|Dislocation of metatarsophalangeal joint of left great toe, sequela|Dislocation of metatarsophalangeal joint of left great toe, sequela +C2868683|T037|AB|S93.122S|ICD10CM|Dislocation of MTP joint of left great toe, sequela|Dislocation of MTP joint of left great toe, sequela +C2868684|T037|AB|S93.123|ICD10CM|Dislocation of metatarsophalangeal joint of unsp great toe|Dislocation of metatarsophalangeal joint of unsp great toe +C2868684|T037|HT|S93.123|ICD10CM|Dislocation of metatarsophalangeal joint of unspecified great toe|Dislocation of metatarsophalangeal joint of unspecified great toe +C2868685|T037|PT|S93.123A|ICD10CM|Dislocation of metatarsophalangeal joint of unspecified great toe, initial encounter|Dislocation of metatarsophalangeal joint of unspecified great toe, initial encounter +C2868685|T037|AB|S93.123A|ICD10CM|Dislocation of MTP joint of unsp great toe, init|Dislocation of MTP joint of unsp great toe, init +C2868686|T037|PT|S93.123D|ICD10CM|Dislocation of metatarsophalangeal joint of unspecified great toe, subsequent encounter|Dislocation of metatarsophalangeal joint of unspecified great toe, subsequent encounter +C2868686|T037|AB|S93.123D|ICD10CM|Dislocation of MTP joint of unsp great toe, subs|Dislocation of MTP joint of unsp great toe, subs +C2868687|T037|PT|S93.123S|ICD10CM|Dislocation of metatarsophalangeal joint of unspecified great toe, sequela|Dislocation of metatarsophalangeal joint of unspecified great toe, sequela +C2868687|T037|AB|S93.123S|ICD10CM|Dislocation of MTP joint of unsp great toe, sequela|Dislocation of MTP joint of unsp great toe, sequela +C2868688|T037|HT|S93.124|ICD10CM|Dislocation of metatarsophalangeal joint of right lesser toe(s)|Dislocation of metatarsophalangeal joint of right lesser toe(s) +C2868688|T037|AB|S93.124|ICD10CM|Dislocation of MTP joint of right lesser toe(s)|Dislocation of MTP joint of right lesser toe(s) +C2868689|T037|PT|S93.124A|ICD10CM|Dislocation of metatarsophalangeal joint of right lesser toe(s), initial encounter|Dislocation of metatarsophalangeal joint of right lesser toe(s), initial encounter +C2868689|T037|AB|S93.124A|ICD10CM|Dislocation of MTP joint of right lesser toe(s), init|Dislocation of MTP joint of right lesser toe(s), init +C2868690|T037|PT|S93.124D|ICD10CM|Dislocation of metatarsophalangeal joint of right lesser toe(s), subsequent encounter|Dislocation of metatarsophalangeal joint of right lesser toe(s), subsequent encounter +C2868690|T037|AB|S93.124D|ICD10CM|Dislocation of MTP joint of right lesser toe(s), subs|Dislocation of MTP joint of right lesser toe(s), subs +C2868691|T037|PT|S93.124S|ICD10CM|Dislocation of metatarsophalangeal joint of right lesser toe(s), sequela|Dislocation of metatarsophalangeal joint of right lesser toe(s), sequela +C2868691|T037|AB|S93.124S|ICD10CM|Dislocation of MTP joint of right lesser toe(s), sequela|Dislocation of MTP joint of right lesser toe(s), sequela +C2868692|T037|HT|S93.125|ICD10CM|Dislocation of metatarsophalangeal joint of left lesser toe(s)|Dislocation of metatarsophalangeal joint of left lesser toe(s) +C2868692|T037|AB|S93.125|ICD10CM|Dislocation of MTP joint of left lesser toe(s)|Dislocation of MTP joint of left lesser toe(s) +C2868693|T037|PT|S93.125A|ICD10CM|Dislocation of metatarsophalangeal joint of left lesser toe(s), initial encounter|Dislocation of metatarsophalangeal joint of left lesser toe(s), initial encounter +C2868693|T037|AB|S93.125A|ICD10CM|Dislocation of MTP joint of left lesser toe(s), init|Dislocation of MTP joint of left lesser toe(s), init +C2868694|T037|PT|S93.125D|ICD10CM|Dislocation of metatarsophalangeal joint of left lesser toe(s), subsequent encounter|Dislocation of metatarsophalangeal joint of left lesser toe(s), subsequent encounter +C2868694|T037|AB|S93.125D|ICD10CM|Dislocation of MTP joint of left lesser toe(s), subs|Dislocation of MTP joint of left lesser toe(s), subs +C2868695|T037|PT|S93.125S|ICD10CM|Dislocation of metatarsophalangeal joint of left lesser toe(s), sequela|Dislocation of metatarsophalangeal joint of left lesser toe(s), sequela +C2868695|T037|AB|S93.125S|ICD10CM|Dislocation of MTP joint of left lesser toe(s), sequela|Dislocation of MTP joint of left lesser toe(s), sequela +C2868696|T037|HT|S93.126|ICD10CM|Dislocation of metatarsophalangeal joint of unspecified lesser toe(s)|Dislocation of metatarsophalangeal joint of unspecified lesser toe(s) +C2868696|T037|AB|S93.126|ICD10CM|Dislocation of MTP joint of unsp lesser toe(s)|Dislocation of MTP joint of unsp lesser toe(s) +C2868697|T037|PT|S93.126A|ICD10CM|Dislocation of metatarsophalangeal joint of unspecified lesser toe(s), initial encounter|Dislocation of metatarsophalangeal joint of unspecified lesser toe(s), initial encounter +C2868697|T037|AB|S93.126A|ICD10CM|Dislocation of MTP joint of unsp lesser toe(s), init|Dislocation of MTP joint of unsp lesser toe(s), init +C2868698|T037|PT|S93.126D|ICD10CM|Dislocation of metatarsophalangeal joint of unspecified lesser toe(s), subsequent encounter|Dislocation of metatarsophalangeal joint of unspecified lesser toe(s), subsequent encounter +C2868698|T037|AB|S93.126D|ICD10CM|Dislocation of MTP joint of unsp lesser toe(s), subs|Dislocation of MTP joint of unsp lesser toe(s), subs +C2868699|T037|PT|S93.126S|ICD10CM|Dislocation of metatarsophalangeal joint of unspecified lesser toe(s), sequela|Dislocation of metatarsophalangeal joint of unspecified lesser toe(s), sequela +C2868699|T037|AB|S93.126S|ICD10CM|Dislocation of MTP joint of unsp lesser toe(s), sequela|Dislocation of MTP joint of unsp lesser toe(s), sequela +C2868700|T037|AB|S93.129|ICD10CM|Dislocation of metatarsophalangeal joint of unsp toe(s)|Dislocation of metatarsophalangeal joint of unsp toe(s) +C2868700|T037|HT|S93.129|ICD10CM|Dislocation of metatarsophalangeal joint of unspecified toe(s)|Dislocation of metatarsophalangeal joint of unspecified toe(s) +C2868701|T037|PT|S93.129A|ICD10CM|Dislocation of metatarsophalangeal joint of unspecified toe(s), initial encounter|Dislocation of metatarsophalangeal joint of unspecified toe(s), initial encounter +C2868701|T037|AB|S93.129A|ICD10CM|Dislocation of MTP joint of unsp toe(s), init|Dislocation of MTP joint of unsp toe(s), init +C2868702|T037|PT|S93.129D|ICD10CM|Dislocation of metatarsophalangeal joint of unspecified toe(s), subsequent encounter|Dislocation of metatarsophalangeal joint of unspecified toe(s), subsequent encounter +C2868702|T037|AB|S93.129D|ICD10CM|Dislocation of MTP joint of unsp toe(s), subs|Dislocation of MTP joint of unsp toe(s), subs +C2868703|T037|PT|S93.129S|ICD10CM|Dislocation of metatarsophalangeal joint of unspecified toe(s), sequela|Dislocation of metatarsophalangeal joint of unspecified toe(s), sequela +C2868703|T037|AB|S93.129S|ICD10CM|Dislocation of MTP joint of unsp toe(s), sequela|Dislocation of MTP joint of unsp toe(s), sequela +C2868704|T037|AB|S93.13|ICD10CM|Subluxation of interphalangeal joint|Subluxation of interphalangeal joint +C2868704|T037|HT|S93.13|ICD10CM|Subluxation of interphalangeal joint|Subluxation of interphalangeal joint +C2868705|T037|AB|S93.131|ICD10CM|Subluxation of interphalangeal joint of right great toe|Subluxation of interphalangeal joint of right great toe +C2868705|T037|HT|S93.131|ICD10CM|Subluxation of interphalangeal joint of right great toe|Subluxation of interphalangeal joint of right great toe +C2868706|T037|PT|S93.131A|ICD10CM|Subluxation of interphalangeal joint of right great toe, initial encounter|Subluxation of interphalangeal joint of right great toe, initial encounter +C2868706|T037|AB|S93.131A|ICD10CM|Subluxation of interphaln joint of right great toe, init|Subluxation of interphaln joint of right great toe, init +C2868707|T037|PT|S93.131D|ICD10CM|Subluxation of interphalangeal joint of right great toe, subsequent encounter|Subluxation of interphalangeal joint of right great toe, subsequent encounter +C2868707|T037|AB|S93.131D|ICD10CM|Subluxation of interphaln joint of right great toe, subs|Subluxation of interphaln joint of right great toe, subs +C2868708|T037|PT|S93.131S|ICD10CM|Subluxation of interphalangeal joint of right great toe, sequela|Subluxation of interphalangeal joint of right great toe, sequela +C2868708|T037|AB|S93.131S|ICD10CM|Subluxation of interphaln joint of right great toe, sequela|Subluxation of interphaln joint of right great toe, sequela +C2868709|T037|AB|S93.132|ICD10CM|Subluxation of interphalangeal joint of left great toe|Subluxation of interphalangeal joint of left great toe +C2868709|T037|HT|S93.132|ICD10CM|Subluxation of interphalangeal joint of left great toe|Subluxation of interphalangeal joint of left great toe +C2868710|T037|AB|S93.132A|ICD10CM|Subluxation of interphalangeal joint of left great toe, init|Subluxation of interphalangeal joint of left great toe, init +C2868710|T037|PT|S93.132A|ICD10CM|Subluxation of interphalangeal joint of left great toe, initial encounter|Subluxation of interphalangeal joint of left great toe, initial encounter +C2868711|T037|AB|S93.132D|ICD10CM|Subluxation of interphalangeal joint of left great toe, subs|Subluxation of interphalangeal joint of left great toe, subs +C2868711|T037|PT|S93.132D|ICD10CM|Subluxation of interphalangeal joint of left great toe, subsequent encounter|Subluxation of interphalangeal joint of left great toe, subsequent encounter +C2868712|T037|PT|S93.132S|ICD10CM|Subluxation of interphalangeal joint of left great toe, sequela|Subluxation of interphalangeal joint of left great toe, sequela +C2868712|T037|AB|S93.132S|ICD10CM|Subluxation of interphaln joint of left great toe, sequela|Subluxation of interphaln joint of left great toe, sequela +C2868713|T037|AB|S93.133|ICD10CM|Subluxation of interphalangeal joint of unsp great toe|Subluxation of interphalangeal joint of unsp great toe +C2868713|T037|HT|S93.133|ICD10CM|Subluxation of interphalangeal joint of unspecified great toe|Subluxation of interphalangeal joint of unspecified great toe +C2868714|T037|AB|S93.133A|ICD10CM|Subluxation of interphalangeal joint of unsp great toe, init|Subluxation of interphalangeal joint of unsp great toe, init +C2868714|T037|PT|S93.133A|ICD10CM|Subluxation of interphalangeal joint of unspecified great toe, initial encounter|Subluxation of interphalangeal joint of unspecified great toe, initial encounter +C2868715|T037|AB|S93.133D|ICD10CM|Subluxation of interphalangeal joint of unsp great toe, subs|Subluxation of interphalangeal joint of unsp great toe, subs +C2868715|T037|PT|S93.133D|ICD10CM|Subluxation of interphalangeal joint of unspecified great toe, subsequent encounter|Subluxation of interphalangeal joint of unspecified great toe, subsequent encounter +C2868716|T037|PT|S93.133S|ICD10CM|Subluxation of interphalangeal joint of unspecified great toe, sequela|Subluxation of interphalangeal joint of unspecified great toe, sequela +C2868716|T037|AB|S93.133S|ICD10CM|Subluxation of interphaln joint of unsp great toe, sequela|Subluxation of interphaln joint of unsp great toe, sequela +C2868717|T037|AB|S93.134|ICD10CM|Subluxation of interphalangeal joint of right lesser toe(s)|Subluxation of interphalangeal joint of right lesser toe(s) +C2868717|T037|HT|S93.134|ICD10CM|Subluxation of interphalangeal joint of right lesser toe(s)|Subluxation of interphalangeal joint of right lesser toe(s) +C2868718|T037|PT|S93.134A|ICD10CM|Subluxation of interphalangeal joint of right lesser toe(s), initial encounter|Subluxation of interphalangeal joint of right lesser toe(s), initial encounter +C2868718|T037|AB|S93.134A|ICD10CM|Subluxation of interphaln joint of right lesser toe(s), init|Subluxation of interphaln joint of right lesser toe(s), init +C2868719|T037|PT|S93.134D|ICD10CM|Subluxation of interphalangeal joint of right lesser toe(s), subsequent encounter|Subluxation of interphalangeal joint of right lesser toe(s), subsequent encounter +C2868719|T037|AB|S93.134D|ICD10CM|Subluxation of interphaln joint of right lesser toe(s), subs|Subluxation of interphaln joint of right lesser toe(s), subs +C2868720|T037|AB|S93.134S|ICD10CM|Sublux of interphaln joint of right lesser toe(s), sequela|Sublux of interphaln joint of right lesser toe(s), sequela +C2868720|T037|PT|S93.134S|ICD10CM|Subluxation of interphalangeal joint of right lesser toe(s), sequela|Subluxation of interphalangeal joint of right lesser toe(s), sequela +C2868721|T037|AB|S93.135|ICD10CM|Subluxation of interphalangeal joint of left lesser toe(s)|Subluxation of interphalangeal joint of left lesser toe(s) +C2868721|T037|HT|S93.135|ICD10CM|Subluxation of interphalangeal joint of left lesser toe(s)|Subluxation of interphalangeal joint of left lesser toe(s) +C2868722|T037|PT|S93.135A|ICD10CM|Subluxation of interphalangeal joint of left lesser toe(s), initial encounter|Subluxation of interphalangeal joint of left lesser toe(s), initial encounter +C2868722|T037|AB|S93.135A|ICD10CM|Subluxation of interphaln joint of left lesser toe(s), init|Subluxation of interphaln joint of left lesser toe(s), init +C2868723|T037|PT|S93.135D|ICD10CM|Subluxation of interphalangeal joint of left lesser toe(s), subsequent encounter|Subluxation of interphalangeal joint of left lesser toe(s), subsequent encounter +C2868723|T037|AB|S93.135D|ICD10CM|Subluxation of interphaln joint of left lesser toe(s), subs|Subluxation of interphaln joint of left lesser toe(s), subs +C2868724|T037|AB|S93.135S|ICD10CM|Sublux of interphaln joint of left lesser toe(s), sequela|Sublux of interphaln joint of left lesser toe(s), sequela +C2868724|T037|PT|S93.135S|ICD10CM|Subluxation of interphalangeal joint of left lesser toe(s), sequela|Subluxation of interphalangeal joint of left lesser toe(s), sequela +C2868725|T037|AB|S93.136|ICD10CM|Subluxation of interphalangeal joint of unsp lesser toe(s)|Subluxation of interphalangeal joint of unsp lesser toe(s) +C2868725|T037|HT|S93.136|ICD10CM|Subluxation of interphalangeal joint of unspecified lesser toe(s)|Subluxation of interphalangeal joint of unspecified lesser toe(s) +C2868726|T037|PT|S93.136A|ICD10CM|Subluxation of interphalangeal joint of unspecified lesser toe(s), initial encounter|Subluxation of interphalangeal joint of unspecified lesser toe(s), initial encounter +C2868726|T037|AB|S93.136A|ICD10CM|Subluxation of interphaln joint of unsp lesser toe(s), init|Subluxation of interphaln joint of unsp lesser toe(s), init +C2868727|T037|PT|S93.136D|ICD10CM|Subluxation of interphalangeal joint of unspecified lesser toe(s), subsequent encounter|Subluxation of interphalangeal joint of unspecified lesser toe(s), subsequent encounter +C2868727|T037|AB|S93.136D|ICD10CM|Subluxation of interphaln joint of unsp lesser toe(s), subs|Subluxation of interphaln joint of unsp lesser toe(s), subs +C2868728|T037|AB|S93.136S|ICD10CM|Sublux of interphaln joint of unsp lesser toe(s), sequela|Sublux of interphaln joint of unsp lesser toe(s), sequela +C2868728|T037|PT|S93.136S|ICD10CM|Subluxation of interphalangeal joint of unspecified lesser toe(s), sequela|Subluxation of interphalangeal joint of unspecified lesser toe(s), sequela +C2868729|T037|AB|S93.139|ICD10CM|Subluxation of interphalangeal joint of unspecified toe(s)|Subluxation of interphalangeal joint of unspecified toe(s) +C2868729|T037|HT|S93.139|ICD10CM|Subluxation of interphalangeal joint of unspecified toe(s)|Subluxation of interphalangeal joint of unspecified toe(s) +C2868730|T037|AB|S93.139A|ICD10CM|Subluxation of interphalangeal joint of unsp toe(s), init|Subluxation of interphalangeal joint of unsp toe(s), init +C2868730|T037|PT|S93.139A|ICD10CM|Subluxation of interphalangeal joint of unspecified toe(s), initial encounter|Subluxation of interphalangeal joint of unspecified toe(s), initial encounter +C2868731|T037|AB|S93.139D|ICD10CM|Subluxation of interphalangeal joint of unsp toe(s), subs|Subluxation of interphalangeal joint of unsp toe(s), subs +C2868731|T037|PT|S93.139D|ICD10CM|Subluxation of interphalangeal joint of unspecified toe(s), subsequent encounter|Subluxation of interphalangeal joint of unspecified toe(s), subsequent encounter +C2868732|T037|AB|S93.139S|ICD10CM|Subluxation of interphalangeal joint of unsp toe(s), sequela|Subluxation of interphalangeal joint of unsp toe(s), sequela +C2868732|T037|PT|S93.139S|ICD10CM|Subluxation of interphalangeal joint of unspecified toe(s), sequela|Subluxation of interphalangeal joint of unspecified toe(s), sequela +C2868733|T037|AB|S93.14|ICD10CM|Subluxation of metatarsophalangeal joint|Subluxation of metatarsophalangeal joint +C2868733|T037|HT|S93.14|ICD10CM|Subluxation of metatarsophalangeal joint|Subluxation of metatarsophalangeal joint +C2116956|T033|AB|S93.141|ICD10CM|Subluxation of metatarsophalangeal joint of right great toe|Subluxation of metatarsophalangeal joint of right great toe +C2116956|T033|HT|S93.141|ICD10CM|Subluxation of metatarsophalangeal joint of right great toe|Subluxation of metatarsophalangeal joint of right great toe +C2868734|T037|PT|S93.141A|ICD10CM|Subluxation of metatarsophalangeal joint of right great toe, initial encounter|Subluxation of metatarsophalangeal joint of right great toe, initial encounter +C2868734|T037|AB|S93.141A|ICD10CM|Subluxation of MTP joint of right great toe, init|Subluxation of MTP joint of right great toe, init +C2868735|T037|PT|S93.141D|ICD10CM|Subluxation of metatarsophalangeal joint of right great toe, subsequent encounter|Subluxation of metatarsophalangeal joint of right great toe, subsequent encounter +C2868735|T037|AB|S93.141D|ICD10CM|Subluxation of MTP joint of right great toe, subs|Subluxation of MTP joint of right great toe, subs +C2868736|T037|PT|S93.141S|ICD10CM|Subluxation of metatarsophalangeal joint of right great toe, sequela|Subluxation of metatarsophalangeal joint of right great toe, sequela +C2868736|T037|AB|S93.141S|ICD10CM|Subluxation of MTP joint of right great toe, sequela|Subluxation of MTP joint of right great toe, sequela +C2868737|T037|AB|S93.142|ICD10CM|Subluxation of metatarsophalangeal joint of left great toe|Subluxation of metatarsophalangeal joint of left great toe +C2868737|T037|HT|S93.142|ICD10CM|Subluxation of metatarsophalangeal joint of left great toe|Subluxation of metatarsophalangeal joint of left great toe +C2868738|T037|PT|S93.142A|ICD10CM|Subluxation of metatarsophalangeal joint of left great toe, initial encounter|Subluxation of metatarsophalangeal joint of left great toe, initial encounter +C2868738|T037|AB|S93.142A|ICD10CM|Subluxation of MTP joint of left great toe, init|Subluxation of MTP joint of left great toe, init +C2868739|T037|PT|S93.142D|ICD10CM|Subluxation of metatarsophalangeal joint of left great toe, subsequent encounter|Subluxation of metatarsophalangeal joint of left great toe, subsequent encounter +C2868739|T037|AB|S93.142D|ICD10CM|Subluxation of MTP joint of left great toe, subs|Subluxation of MTP joint of left great toe, subs +C2868740|T037|PT|S93.142S|ICD10CM|Subluxation of metatarsophalangeal joint of left great toe, sequela|Subluxation of metatarsophalangeal joint of left great toe, sequela +C2868740|T037|AB|S93.142S|ICD10CM|Subluxation of MTP joint of left great toe, sequela|Subluxation of MTP joint of left great toe, sequela +C2868741|T037|AB|S93.143|ICD10CM|Subluxation of metatarsophalangeal joint of unsp great toe|Subluxation of metatarsophalangeal joint of unsp great toe +C2868741|T037|HT|S93.143|ICD10CM|Subluxation of metatarsophalangeal joint of unspecified great toe|Subluxation of metatarsophalangeal joint of unspecified great toe +C2868742|T037|PT|S93.143A|ICD10CM|Subluxation of metatarsophalangeal joint of unspecified great toe, initial encounter|Subluxation of metatarsophalangeal joint of unspecified great toe, initial encounter +C2868742|T037|AB|S93.143A|ICD10CM|Subluxation of MTP joint of unsp great toe, init|Subluxation of MTP joint of unsp great toe, init +C2868743|T037|PT|S93.143D|ICD10CM|Subluxation of metatarsophalangeal joint of unspecified great toe, subsequent encounter|Subluxation of metatarsophalangeal joint of unspecified great toe, subsequent encounter +C2868743|T037|AB|S93.143D|ICD10CM|Subluxation of MTP joint of unsp great toe, subs|Subluxation of MTP joint of unsp great toe, subs +C2868744|T037|PT|S93.143S|ICD10CM|Subluxation of metatarsophalangeal joint of unspecified great toe, sequela|Subluxation of metatarsophalangeal joint of unspecified great toe, sequela +C2868744|T037|AB|S93.143S|ICD10CM|Subluxation of MTP joint of unsp great toe, sequela|Subluxation of MTP joint of unsp great toe, sequela +C2868745|T037|HT|S93.144|ICD10CM|Subluxation of metatarsophalangeal joint of right lesser toe(s)|Subluxation of metatarsophalangeal joint of right lesser toe(s) +C2868745|T037|AB|S93.144|ICD10CM|Subluxation of MTP joint of right lesser toe(s)|Subluxation of MTP joint of right lesser toe(s) +C2868746|T037|PT|S93.144A|ICD10CM|Subluxation of metatarsophalangeal joint of right lesser toe(s), initial encounter|Subluxation of metatarsophalangeal joint of right lesser toe(s), initial encounter +C2868746|T037|AB|S93.144A|ICD10CM|Subluxation of MTP joint of right lesser toe(s), init|Subluxation of MTP joint of right lesser toe(s), init +C2868747|T037|PT|S93.144D|ICD10CM|Subluxation of metatarsophalangeal joint of right lesser toe(s), subsequent encounter|Subluxation of metatarsophalangeal joint of right lesser toe(s), subsequent encounter +C2868747|T037|AB|S93.144D|ICD10CM|Subluxation of MTP joint of right lesser toe(s), subs|Subluxation of MTP joint of right lesser toe(s), subs +C2868748|T037|PT|S93.144S|ICD10CM|Subluxation of metatarsophalangeal joint of right lesser toe(s), sequela|Subluxation of metatarsophalangeal joint of right lesser toe(s), sequela +C2868748|T037|AB|S93.144S|ICD10CM|Subluxation of MTP joint of right lesser toe(s), sequela|Subluxation of MTP joint of right lesser toe(s), sequela +C2868749|T037|HT|S93.145|ICD10CM|Subluxation of metatarsophalangeal joint of left lesser toe(s)|Subluxation of metatarsophalangeal joint of left lesser toe(s) +C2868749|T037|AB|S93.145|ICD10CM|Subluxation of MTP joint of left lesser toe(s)|Subluxation of MTP joint of left lesser toe(s) +C2868750|T037|PT|S93.145A|ICD10CM|Subluxation of metatarsophalangeal joint of left lesser toe(s), initial encounter|Subluxation of metatarsophalangeal joint of left lesser toe(s), initial encounter +C2868750|T037|AB|S93.145A|ICD10CM|Subluxation of MTP joint of left lesser toe(s), init|Subluxation of MTP joint of left lesser toe(s), init +C2868751|T037|PT|S93.145D|ICD10CM|Subluxation of metatarsophalangeal joint of left lesser toe(s), subsequent encounter|Subluxation of metatarsophalangeal joint of left lesser toe(s), subsequent encounter +C2868751|T037|AB|S93.145D|ICD10CM|Subluxation of MTP joint of left lesser toe(s), subs|Subluxation of MTP joint of left lesser toe(s), subs +C2868752|T037|PT|S93.145S|ICD10CM|Subluxation of metatarsophalangeal joint of left lesser toe(s), sequela|Subluxation of metatarsophalangeal joint of left lesser toe(s), sequela +C2868752|T037|AB|S93.145S|ICD10CM|Subluxation of MTP joint of left lesser toe(s), sequela|Subluxation of MTP joint of left lesser toe(s), sequela +C2868753|T037|HT|S93.146|ICD10CM|Subluxation of metatarsophalangeal joint of unspecified lesser toe(s)|Subluxation of metatarsophalangeal joint of unspecified lesser toe(s) +C2868753|T037|AB|S93.146|ICD10CM|Subluxation of MTP joint of unsp lesser toe(s)|Subluxation of MTP joint of unsp lesser toe(s) +C2868754|T037|PT|S93.146A|ICD10CM|Subluxation of metatarsophalangeal joint of unspecified lesser toe(s), initial encounter|Subluxation of metatarsophalangeal joint of unspecified lesser toe(s), initial encounter +C2868754|T037|AB|S93.146A|ICD10CM|Subluxation of MTP joint of unsp lesser toe(s), init|Subluxation of MTP joint of unsp lesser toe(s), init +C2868755|T037|PT|S93.146D|ICD10CM|Subluxation of metatarsophalangeal joint of unspecified lesser toe(s), subsequent encounter|Subluxation of metatarsophalangeal joint of unspecified lesser toe(s), subsequent encounter +C2868755|T037|AB|S93.146D|ICD10CM|Subluxation of MTP joint of unsp lesser toe(s), subs|Subluxation of MTP joint of unsp lesser toe(s), subs +C2868756|T037|PT|S93.146S|ICD10CM|Subluxation of metatarsophalangeal joint of unspecified lesser toe(s), sequela|Subluxation of metatarsophalangeal joint of unspecified lesser toe(s), sequela +C2868756|T037|AB|S93.146S|ICD10CM|Subluxation of MTP joint of unsp lesser toe(s), sequela|Subluxation of MTP joint of unsp lesser toe(s), sequela +C2868757|T037|AB|S93.149|ICD10CM|Subluxation of metatarsophalangeal joint of unsp toe(s)|Subluxation of metatarsophalangeal joint of unsp toe(s) +C2868757|T037|HT|S93.149|ICD10CM|Subluxation of metatarsophalangeal joint of unspecified toe(s)|Subluxation of metatarsophalangeal joint of unspecified toe(s) +C2868758|T037|PT|S93.149A|ICD10CM|Subluxation of metatarsophalangeal joint of unspecified toe(s), initial encounter|Subluxation of metatarsophalangeal joint of unspecified toe(s), initial encounter +C2868758|T037|AB|S93.149A|ICD10CM|Subluxation of MTP joint of unsp toe(s), init|Subluxation of MTP joint of unsp toe(s), init +C2868759|T037|PT|S93.149D|ICD10CM|Subluxation of metatarsophalangeal joint of unspecified toe(s), subsequent encounter|Subluxation of metatarsophalangeal joint of unspecified toe(s), subsequent encounter +C2868759|T037|AB|S93.149D|ICD10CM|Subluxation of MTP joint of unsp toe(s), subs|Subluxation of MTP joint of unsp toe(s), subs +C2868760|T037|PT|S93.149S|ICD10CM|Subluxation of metatarsophalangeal joint of unspecified toe(s), sequela|Subluxation of metatarsophalangeal joint of unspecified toe(s), sequela +C2868760|T037|AB|S93.149S|ICD10CM|Subluxation of MTP joint of unsp toe(s), sequela|Subluxation of MTP joint of unsp toe(s), sequela +C0495969|T037|PT|S93.2|ICD10|Rupture of ligaments at ankle and foot level|Rupture of ligaments at ankle and foot level +C0478353|T037|PT|S93.3|ICD10|Dislocation of other and unspecified parts of foot|Dislocation of other and unspecified parts of foot +C0434694|T037|AB|S93.3|ICD10CM|Subluxation and dislocation of foot|Subluxation and dislocation of foot +C0434694|T037|HT|S93.3|ICD10CM|Subluxation and dislocation of foot|Subluxation and dislocation of foot +C0434694|T037|ET|S93.30|ICD10CM|Dislocation of foot NOS|Dislocation of foot NOS +C0434817|T037|ET|S93.30|ICD10CM|Subluxation of foot NOS|Subluxation of foot NOS +C2868762|T037|AB|S93.30|ICD10CM|Unspecified subluxation and dislocation of foot|Unspecified subluxation and dislocation of foot +C2868762|T037|HT|S93.30|ICD10CM|Unspecified subluxation and dislocation of foot|Unspecified subluxation and dislocation of foot +C2868763|T037|AB|S93.301|ICD10CM|Unspecified subluxation of right foot|Unspecified subluxation of right foot +C2868763|T037|HT|S93.301|ICD10CM|Unspecified subluxation of right foot|Unspecified subluxation of right foot +C2868764|T037|PT|S93.301A|ICD10CM|Unspecified subluxation of right foot, initial encounter|Unspecified subluxation of right foot, initial encounter +C2868764|T037|AB|S93.301A|ICD10CM|Unspecified subluxation of right foot, initial encounter|Unspecified subluxation of right foot, initial encounter +C2868765|T037|PT|S93.301D|ICD10CM|Unspecified subluxation of right foot, subsequent encounter|Unspecified subluxation of right foot, subsequent encounter +C2868765|T037|AB|S93.301D|ICD10CM|Unspecified subluxation of right foot, subsequent encounter|Unspecified subluxation of right foot, subsequent encounter +C2868766|T037|PT|S93.301S|ICD10CM|Unspecified subluxation of right foot, sequela|Unspecified subluxation of right foot, sequela +C2868766|T037|AB|S93.301S|ICD10CM|Unspecified subluxation of right foot, sequela|Unspecified subluxation of right foot, sequela +C2868767|T037|AB|S93.302|ICD10CM|Unspecified subluxation of left foot|Unspecified subluxation of left foot +C2868767|T037|HT|S93.302|ICD10CM|Unspecified subluxation of left foot|Unspecified subluxation of left foot +C2868768|T037|PT|S93.302A|ICD10CM|Unspecified subluxation of left foot, initial encounter|Unspecified subluxation of left foot, initial encounter +C2868768|T037|AB|S93.302A|ICD10CM|Unspecified subluxation of left foot, initial encounter|Unspecified subluxation of left foot, initial encounter +C2868769|T037|PT|S93.302D|ICD10CM|Unspecified subluxation of left foot, subsequent encounter|Unspecified subluxation of left foot, subsequent encounter +C2868769|T037|AB|S93.302D|ICD10CM|Unspecified subluxation of left foot, subsequent encounter|Unspecified subluxation of left foot, subsequent encounter +C2868770|T037|PT|S93.302S|ICD10CM|Unspecified subluxation of left foot, sequela|Unspecified subluxation of left foot, sequela +C2868770|T037|AB|S93.302S|ICD10CM|Unspecified subluxation of left foot, sequela|Unspecified subluxation of left foot, sequela +C2868771|T037|AB|S93.303|ICD10CM|Unspecified subluxation of unspecified foot|Unspecified subluxation of unspecified foot +C2868771|T037|HT|S93.303|ICD10CM|Unspecified subluxation of unspecified foot|Unspecified subluxation of unspecified foot +C2868772|T037|AB|S93.303A|ICD10CM|Unspecified subluxation of unspecified foot, init encntr|Unspecified subluxation of unspecified foot, init encntr +C2868772|T037|PT|S93.303A|ICD10CM|Unspecified subluxation of unspecified foot, initial encounter|Unspecified subluxation of unspecified foot, initial encounter +C2868773|T037|AB|S93.303D|ICD10CM|Unspecified subluxation of unspecified foot, subs encntr|Unspecified subluxation of unspecified foot, subs encntr +C2868773|T037|PT|S93.303D|ICD10CM|Unspecified subluxation of unspecified foot, subsequent encounter|Unspecified subluxation of unspecified foot, subsequent encounter +C2868774|T037|PT|S93.303S|ICD10CM|Unspecified subluxation of unspecified foot, sequela|Unspecified subluxation of unspecified foot, sequela +C2868774|T037|AB|S93.303S|ICD10CM|Unspecified subluxation of unspecified foot, sequela|Unspecified subluxation of unspecified foot, sequela +C2868775|T037|AB|S93.304|ICD10CM|Unspecified dislocation of right foot|Unspecified dislocation of right foot +C2868775|T037|HT|S93.304|ICD10CM|Unspecified dislocation of right foot|Unspecified dislocation of right foot +C2868776|T037|PT|S93.304A|ICD10CM|Unspecified dislocation of right foot, initial encounter|Unspecified dislocation of right foot, initial encounter +C2868776|T037|AB|S93.304A|ICD10CM|Unspecified dislocation of right foot, initial encounter|Unspecified dislocation of right foot, initial encounter +C2868777|T037|PT|S93.304D|ICD10CM|Unspecified dislocation of right foot, subsequent encounter|Unspecified dislocation of right foot, subsequent encounter +C2868777|T037|AB|S93.304D|ICD10CM|Unspecified dislocation of right foot, subsequent encounter|Unspecified dislocation of right foot, subsequent encounter +C2868778|T037|PT|S93.304S|ICD10CM|Unspecified dislocation of right foot, sequela|Unspecified dislocation of right foot, sequela +C2868778|T037|AB|S93.304S|ICD10CM|Unspecified dislocation of right foot, sequela|Unspecified dislocation of right foot, sequela +C2868779|T037|AB|S93.305|ICD10CM|Unspecified dislocation of left foot|Unspecified dislocation of left foot +C2868779|T037|HT|S93.305|ICD10CM|Unspecified dislocation of left foot|Unspecified dislocation of left foot +C2868780|T037|PT|S93.305A|ICD10CM|Unspecified dislocation of left foot, initial encounter|Unspecified dislocation of left foot, initial encounter +C2868780|T037|AB|S93.305A|ICD10CM|Unspecified dislocation of left foot, initial encounter|Unspecified dislocation of left foot, initial encounter +C2868781|T037|PT|S93.305D|ICD10CM|Unspecified dislocation of left foot, subsequent encounter|Unspecified dislocation of left foot, subsequent encounter +C2868781|T037|AB|S93.305D|ICD10CM|Unspecified dislocation of left foot, subsequent encounter|Unspecified dislocation of left foot, subsequent encounter +C2868782|T037|PT|S93.305S|ICD10CM|Unspecified dislocation of left foot, sequela|Unspecified dislocation of left foot, sequela +C2868782|T037|AB|S93.305S|ICD10CM|Unspecified dislocation of left foot, sequela|Unspecified dislocation of left foot, sequela +C2868783|T037|AB|S93.306|ICD10CM|Unspecified dislocation of unspecified foot|Unspecified dislocation of unspecified foot +C2868783|T037|HT|S93.306|ICD10CM|Unspecified dislocation of unspecified foot|Unspecified dislocation of unspecified foot +C2868784|T037|AB|S93.306A|ICD10CM|Unspecified dislocation of unspecified foot, init encntr|Unspecified dislocation of unspecified foot, init encntr +C2868784|T037|PT|S93.306A|ICD10CM|Unspecified dislocation of unspecified foot, initial encounter|Unspecified dislocation of unspecified foot, initial encounter +C2868785|T037|AB|S93.306D|ICD10CM|Unspecified dislocation of unspecified foot, subs encntr|Unspecified dislocation of unspecified foot, subs encntr +C2868785|T037|PT|S93.306D|ICD10CM|Unspecified dislocation of unspecified foot, subsequent encounter|Unspecified dislocation of unspecified foot, subsequent encounter +C2868786|T037|PT|S93.306S|ICD10CM|Unspecified dislocation of unspecified foot, sequela|Unspecified dislocation of unspecified foot, sequela +C2868786|T037|AB|S93.306S|ICD10CM|Unspecified dislocation of unspecified foot, sequela|Unspecified dislocation of unspecified foot, sequela +C2868787|T037|AB|S93.31|ICD10CM|Subluxation and dislocation of tarsal joint|Subluxation and dislocation of tarsal joint +C2868787|T037|HT|S93.31|ICD10CM|Subluxation and dislocation of tarsal joint|Subluxation and dislocation of tarsal joint +C2868788|T037|AB|S93.311|ICD10CM|Subluxation of tarsal joint of right foot|Subluxation of tarsal joint of right foot +C2868788|T037|HT|S93.311|ICD10CM|Subluxation of tarsal joint of right foot|Subluxation of tarsal joint of right foot +C2868789|T037|AB|S93.311A|ICD10CM|Subluxation of tarsal joint of right foot, initial encounter|Subluxation of tarsal joint of right foot, initial encounter +C2868789|T037|PT|S93.311A|ICD10CM|Subluxation of tarsal joint of right foot, initial encounter|Subluxation of tarsal joint of right foot, initial encounter +C2868790|T037|AB|S93.311D|ICD10CM|Subluxation of tarsal joint of right foot, subs encntr|Subluxation of tarsal joint of right foot, subs encntr +C2868790|T037|PT|S93.311D|ICD10CM|Subluxation of tarsal joint of right foot, subsequent encounter|Subluxation of tarsal joint of right foot, subsequent encounter +C2868791|T037|PT|S93.311S|ICD10CM|Subluxation of tarsal joint of right foot, sequela|Subluxation of tarsal joint of right foot, sequela +C2868791|T037|AB|S93.311S|ICD10CM|Subluxation of tarsal joint of right foot, sequela|Subluxation of tarsal joint of right foot, sequela +C2868792|T037|AB|S93.312|ICD10CM|Subluxation of tarsal joint of left foot|Subluxation of tarsal joint of left foot +C2868792|T037|HT|S93.312|ICD10CM|Subluxation of tarsal joint of left foot|Subluxation of tarsal joint of left foot +C2868793|T037|PT|S93.312A|ICD10CM|Subluxation of tarsal joint of left foot, initial encounter|Subluxation of tarsal joint of left foot, initial encounter +C2868793|T037|AB|S93.312A|ICD10CM|Subluxation of tarsal joint of left foot, initial encounter|Subluxation of tarsal joint of left foot, initial encounter +C2868794|T037|AB|S93.312D|ICD10CM|Subluxation of tarsal joint of left foot, subs encntr|Subluxation of tarsal joint of left foot, subs encntr +C2868794|T037|PT|S93.312D|ICD10CM|Subluxation of tarsal joint of left foot, subsequent encounter|Subluxation of tarsal joint of left foot, subsequent encounter +C2868795|T037|PT|S93.312S|ICD10CM|Subluxation of tarsal joint of left foot, sequela|Subluxation of tarsal joint of left foot, sequela +C2868795|T037|AB|S93.312S|ICD10CM|Subluxation of tarsal joint of left foot, sequela|Subluxation of tarsal joint of left foot, sequela +C2868796|T037|AB|S93.313|ICD10CM|Subluxation of tarsal joint of unspecified foot|Subluxation of tarsal joint of unspecified foot +C2868796|T037|HT|S93.313|ICD10CM|Subluxation of tarsal joint of unspecified foot|Subluxation of tarsal joint of unspecified foot +C2868797|T037|AB|S93.313A|ICD10CM|Subluxation of tarsal joint of unspecified foot, init encntr|Subluxation of tarsal joint of unspecified foot, init encntr +C2868797|T037|PT|S93.313A|ICD10CM|Subluxation of tarsal joint of unspecified foot, initial encounter|Subluxation of tarsal joint of unspecified foot, initial encounter +C2868798|T037|AB|S93.313D|ICD10CM|Subluxation of tarsal joint of unspecified foot, subs encntr|Subluxation of tarsal joint of unspecified foot, subs encntr +C2868798|T037|PT|S93.313D|ICD10CM|Subluxation of tarsal joint of unspecified foot, subsequent encounter|Subluxation of tarsal joint of unspecified foot, subsequent encounter +C2868799|T037|PT|S93.313S|ICD10CM|Subluxation of tarsal joint of unspecified foot, sequela|Subluxation of tarsal joint of unspecified foot, sequela +C2868799|T037|AB|S93.313S|ICD10CM|Subluxation of tarsal joint of unspecified foot, sequela|Subluxation of tarsal joint of unspecified foot, sequela +C2868800|T037|AB|S93.314|ICD10CM|Dislocation of tarsal joint of right foot|Dislocation of tarsal joint of right foot +C2868800|T037|HT|S93.314|ICD10CM|Dislocation of tarsal joint of right foot|Dislocation of tarsal joint of right foot +C2868801|T037|AB|S93.314A|ICD10CM|Dislocation of tarsal joint of right foot, initial encounter|Dislocation of tarsal joint of right foot, initial encounter +C2868801|T037|PT|S93.314A|ICD10CM|Dislocation of tarsal joint of right foot, initial encounter|Dislocation of tarsal joint of right foot, initial encounter +C2868802|T037|AB|S93.314D|ICD10CM|Dislocation of tarsal joint of right foot, subs encntr|Dislocation of tarsal joint of right foot, subs encntr +C2868802|T037|PT|S93.314D|ICD10CM|Dislocation of tarsal joint of right foot, subsequent encounter|Dislocation of tarsal joint of right foot, subsequent encounter +C2868803|T037|PT|S93.314S|ICD10CM|Dislocation of tarsal joint of right foot, sequela|Dislocation of tarsal joint of right foot, sequela +C2868803|T037|AB|S93.314S|ICD10CM|Dislocation of tarsal joint of right foot, sequela|Dislocation of tarsal joint of right foot, sequela +C2868804|T037|AB|S93.315|ICD10CM|Dislocation of tarsal joint of left foot|Dislocation of tarsal joint of left foot +C2868804|T037|HT|S93.315|ICD10CM|Dislocation of tarsal joint of left foot|Dislocation of tarsal joint of left foot +C2868805|T037|PT|S93.315A|ICD10CM|Dislocation of tarsal joint of left foot, initial encounter|Dislocation of tarsal joint of left foot, initial encounter +C2868805|T037|AB|S93.315A|ICD10CM|Dislocation of tarsal joint of left foot, initial encounter|Dislocation of tarsal joint of left foot, initial encounter +C2868806|T037|AB|S93.315D|ICD10CM|Dislocation of tarsal joint of left foot, subs encntr|Dislocation of tarsal joint of left foot, subs encntr +C2868806|T037|PT|S93.315D|ICD10CM|Dislocation of tarsal joint of left foot, subsequent encounter|Dislocation of tarsal joint of left foot, subsequent encounter +C2868807|T037|PT|S93.315S|ICD10CM|Dislocation of tarsal joint of left foot, sequela|Dislocation of tarsal joint of left foot, sequela +C2868807|T037|AB|S93.315S|ICD10CM|Dislocation of tarsal joint of left foot, sequela|Dislocation of tarsal joint of left foot, sequela +C2868808|T037|AB|S93.316|ICD10CM|Dislocation of tarsal joint of unspecified foot|Dislocation of tarsal joint of unspecified foot +C2868808|T037|HT|S93.316|ICD10CM|Dislocation of tarsal joint of unspecified foot|Dislocation of tarsal joint of unspecified foot +C2868809|T037|AB|S93.316A|ICD10CM|Dislocation of tarsal joint of unspecified foot, init encntr|Dislocation of tarsal joint of unspecified foot, init encntr +C2868809|T037|PT|S93.316A|ICD10CM|Dislocation of tarsal joint of unspecified foot, initial encounter|Dislocation of tarsal joint of unspecified foot, initial encounter +C2868810|T037|AB|S93.316D|ICD10CM|Dislocation of tarsal joint of unspecified foot, subs encntr|Dislocation of tarsal joint of unspecified foot, subs encntr +C2868810|T037|PT|S93.316D|ICD10CM|Dislocation of tarsal joint of unspecified foot, subsequent encounter|Dislocation of tarsal joint of unspecified foot, subsequent encounter +C2868811|T037|PT|S93.316S|ICD10CM|Dislocation of tarsal joint of unspecified foot, sequela|Dislocation of tarsal joint of unspecified foot, sequela +C2868811|T037|AB|S93.316S|ICD10CM|Dislocation of tarsal joint of unspecified foot, sequela|Dislocation of tarsal joint of unspecified foot, sequela +C2868812|T037|AB|S93.32|ICD10CM|Subluxation and dislocation of tarsometatarsal joint|Subluxation and dislocation of tarsometatarsal joint +C2868812|T037|HT|S93.32|ICD10CM|Subluxation and dislocation of tarsometatarsal joint|Subluxation and dislocation of tarsometatarsal joint +C2868813|T037|AB|S93.321|ICD10CM|Subluxation of tarsometatarsal joint of right foot|Subluxation of tarsometatarsal joint of right foot +C2868813|T037|HT|S93.321|ICD10CM|Subluxation of tarsometatarsal joint of right foot|Subluxation of tarsometatarsal joint of right foot +C2868814|T037|AB|S93.321A|ICD10CM|Subluxation of tarsometatarsal joint of right foot, init|Subluxation of tarsometatarsal joint of right foot, init +C2868814|T037|PT|S93.321A|ICD10CM|Subluxation of tarsometatarsal joint of right foot, initial encounter|Subluxation of tarsometatarsal joint of right foot, initial encounter +C2868815|T037|AB|S93.321D|ICD10CM|Subluxation of tarsometatarsal joint of right foot, subs|Subluxation of tarsometatarsal joint of right foot, subs +C2868815|T037|PT|S93.321D|ICD10CM|Subluxation of tarsometatarsal joint of right foot, subsequent encounter|Subluxation of tarsometatarsal joint of right foot, subsequent encounter +C2868816|T037|PT|S93.321S|ICD10CM|Subluxation of tarsometatarsal joint of right foot, sequela|Subluxation of tarsometatarsal joint of right foot, sequela +C2868816|T037|AB|S93.321S|ICD10CM|Subluxation of tarsometatarsal joint of right foot, sequela|Subluxation of tarsometatarsal joint of right foot, sequela +C2868817|T037|AB|S93.322|ICD10CM|Subluxation of tarsometatarsal joint of left foot|Subluxation of tarsometatarsal joint of left foot +C2868817|T037|HT|S93.322|ICD10CM|Subluxation of tarsometatarsal joint of left foot|Subluxation of tarsometatarsal joint of left foot +C2868818|T037|AB|S93.322A|ICD10CM|Subluxation of tarsometatarsal joint of left foot, init|Subluxation of tarsometatarsal joint of left foot, init +C2868818|T037|PT|S93.322A|ICD10CM|Subluxation of tarsometatarsal joint of left foot, initial encounter|Subluxation of tarsometatarsal joint of left foot, initial encounter +C2868819|T037|AB|S93.322D|ICD10CM|Subluxation of tarsometatarsal joint of left foot, subs|Subluxation of tarsometatarsal joint of left foot, subs +C2868819|T037|PT|S93.322D|ICD10CM|Subluxation of tarsometatarsal joint of left foot, subsequent encounter|Subluxation of tarsometatarsal joint of left foot, subsequent encounter +C2868820|T037|PT|S93.322S|ICD10CM|Subluxation of tarsometatarsal joint of left foot, sequela|Subluxation of tarsometatarsal joint of left foot, sequela +C2868820|T037|AB|S93.322S|ICD10CM|Subluxation of tarsometatarsal joint of left foot, sequela|Subluxation of tarsometatarsal joint of left foot, sequela +C2868821|T037|AB|S93.323|ICD10CM|Subluxation of tarsometatarsal joint of unspecified foot|Subluxation of tarsometatarsal joint of unspecified foot +C2868821|T037|HT|S93.323|ICD10CM|Subluxation of tarsometatarsal joint of unspecified foot|Subluxation of tarsometatarsal joint of unspecified foot +C2868822|T037|AB|S93.323A|ICD10CM|Subluxation of tarsometatarsal joint of unsp foot, init|Subluxation of tarsometatarsal joint of unsp foot, init +C2868822|T037|PT|S93.323A|ICD10CM|Subluxation of tarsometatarsal joint of unspecified foot, initial encounter|Subluxation of tarsometatarsal joint of unspecified foot, initial encounter +C2868823|T037|AB|S93.323D|ICD10CM|Subluxation of tarsometatarsal joint of unsp foot, subs|Subluxation of tarsometatarsal joint of unsp foot, subs +C2868823|T037|PT|S93.323D|ICD10CM|Subluxation of tarsometatarsal joint of unspecified foot, subsequent encounter|Subluxation of tarsometatarsal joint of unspecified foot, subsequent encounter +C2868824|T037|AB|S93.323S|ICD10CM|Subluxation of tarsometatarsal joint of unsp foot, sequela|Subluxation of tarsometatarsal joint of unsp foot, sequela +C2868824|T037|PT|S93.323S|ICD10CM|Subluxation of tarsometatarsal joint of unspecified foot, sequela|Subluxation of tarsometatarsal joint of unspecified foot, sequela +C2868825|T037|AB|S93.324|ICD10CM|Dislocation of tarsometatarsal joint of right foot|Dislocation of tarsometatarsal joint of right foot +C2868825|T037|HT|S93.324|ICD10CM|Dislocation of tarsometatarsal joint of right foot|Dislocation of tarsometatarsal joint of right foot +C2868826|T037|AB|S93.324A|ICD10CM|Dislocation of tarsometatarsal joint of right foot, init|Dislocation of tarsometatarsal joint of right foot, init +C2868826|T037|PT|S93.324A|ICD10CM|Dislocation of tarsometatarsal joint of right foot, initial encounter|Dislocation of tarsometatarsal joint of right foot, initial encounter +C2868827|T037|AB|S93.324D|ICD10CM|Dislocation of tarsometatarsal joint of right foot, subs|Dislocation of tarsometatarsal joint of right foot, subs +C2868827|T037|PT|S93.324D|ICD10CM|Dislocation of tarsometatarsal joint of right foot, subsequent encounter|Dislocation of tarsometatarsal joint of right foot, subsequent encounter +C2868828|T037|PT|S93.324S|ICD10CM|Dislocation of tarsometatarsal joint of right foot, sequela|Dislocation of tarsometatarsal joint of right foot, sequela +C2868828|T037|AB|S93.324S|ICD10CM|Dislocation of tarsometatarsal joint of right foot, sequela|Dislocation of tarsometatarsal joint of right foot, sequela +C2868829|T037|AB|S93.325|ICD10CM|Dislocation of tarsometatarsal joint of left foot|Dislocation of tarsometatarsal joint of left foot +C2868829|T037|HT|S93.325|ICD10CM|Dislocation of tarsometatarsal joint of left foot|Dislocation of tarsometatarsal joint of left foot +C2868830|T037|AB|S93.325A|ICD10CM|Dislocation of tarsometatarsal joint of left foot, init|Dislocation of tarsometatarsal joint of left foot, init +C2868830|T037|PT|S93.325A|ICD10CM|Dislocation of tarsometatarsal joint of left foot, initial encounter|Dislocation of tarsometatarsal joint of left foot, initial encounter +C2868831|T037|AB|S93.325D|ICD10CM|Dislocation of tarsometatarsal joint of left foot, subs|Dislocation of tarsometatarsal joint of left foot, subs +C2868831|T037|PT|S93.325D|ICD10CM|Dislocation of tarsometatarsal joint of left foot, subsequent encounter|Dislocation of tarsometatarsal joint of left foot, subsequent encounter +C2868832|T037|PT|S93.325S|ICD10CM|Dislocation of tarsometatarsal joint of left foot, sequela|Dislocation of tarsometatarsal joint of left foot, sequela +C2868832|T037|AB|S93.325S|ICD10CM|Dislocation of tarsometatarsal joint of left foot, sequela|Dislocation of tarsometatarsal joint of left foot, sequela +C2868833|T037|AB|S93.326|ICD10CM|Dislocation of tarsometatarsal joint of unspecified foot|Dislocation of tarsometatarsal joint of unspecified foot +C2868833|T037|HT|S93.326|ICD10CM|Dislocation of tarsometatarsal joint of unspecified foot|Dislocation of tarsometatarsal joint of unspecified foot +C2868834|T037|AB|S93.326A|ICD10CM|Dislocation of tarsometatarsal joint of unsp foot, init|Dislocation of tarsometatarsal joint of unsp foot, init +C2868834|T037|PT|S93.326A|ICD10CM|Dislocation of tarsometatarsal joint of unspecified foot, initial encounter|Dislocation of tarsometatarsal joint of unspecified foot, initial encounter +C2868835|T037|AB|S93.326D|ICD10CM|Dislocation of tarsometatarsal joint of unsp foot, subs|Dislocation of tarsometatarsal joint of unsp foot, subs +C2868835|T037|PT|S93.326D|ICD10CM|Dislocation of tarsometatarsal joint of unspecified foot, subsequent encounter|Dislocation of tarsometatarsal joint of unspecified foot, subsequent encounter +C2868836|T037|AB|S93.326S|ICD10CM|Dislocation of tarsometatarsal joint of unsp foot, sequela|Dislocation of tarsometatarsal joint of unsp foot, sequela +C2868836|T037|PT|S93.326S|ICD10CM|Dislocation of tarsometatarsal joint of unspecified foot, sequela|Dislocation of tarsometatarsal joint of unspecified foot, sequela +C2868837|T037|AB|S93.33|ICD10CM|Other subluxation and dislocation of foot|Other subluxation and dislocation of foot +C2868837|T037|HT|S93.33|ICD10CM|Other subluxation and dislocation of foot|Other subluxation and dislocation of foot +C2868838|T037|AB|S93.331|ICD10CM|Other subluxation of right foot|Other subluxation of right foot +C2868838|T037|HT|S93.331|ICD10CM|Other subluxation of right foot|Other subluxation of right foot +C2868839|T037|PT|S93.331A|ICD10CM|Other subluxation of right foot, initial encounter|Other subluxation of right foot, initial encounter +C2868839|T037|AB|S93.331A|ICD10CM|Other subluxation of right foot, initial encounter|Other subluxation of right foot, initial encounter +C2868840|T037|PT|S93.331D|ICD10CM|Other subluxation of right foot, subsequent encounter|Other subluxation of right foot, subsequent encounter +C2868840|T037|AB|S93.331D|ICD10CM|Other subluxation of right foot, subsequent encounter|Other subluxation of right foot, subsequent encounter +C2868841|T037|PT|S93.331S|ICD10CM|Other subluxation of right foot, sequela|Other subluxation of right foot, sequela +C2868841|T037|AB|S93.331S|ICD10CM|Other subluxation of right foot, sequela|Other subluxation of right foot, sequela +C2868842|T037|AB|S93.332|ICD10CM|Other subluxation of left foot|Other subluxation of left foot +C2868842|T037|HT|S93.332|ICD10CM|Other subluxation of left foot|Other subluxation of left foot +C2868843|T037|PT|S93.332A|ICD10CM|Other subluxation of left foot, initial encounter|Other subluxation of left foot, initial encounter +C2868843|T037|AB|S93.332A|ICD10CM|Other subluxation of left foot, initial encounter|Other subluxation of left foot, initial encounter +C2868844|T037|PT|S93.332D|ICD10CM|Other subluxation of left foot, subsequent encounter|Other subluxation of left foot, subsequent encounter +C2868844|T037|AB|S93.332D|ICD10CM|Other subluxation of left foot, subsequent encounter|Other subluxation of left foot, subsequent encounter +C2868845|T037|PT|S93.332S|ICD10CM|Other subluxation of left foot, sequela|Other subluxation of left foot, sequela +C2868845|T037|AB|S93.332S|ICD10CM|Other subluxation of left foot, sequela|Other subluxation of left foot, sequela +C2868846|T037|AB|S93.333|ICD10CM|Other subluxation of unspecified foot|Other subluxation of unspecified foot +C2868846|T037|HT|S93.333|ICD10CM|Other subluxation of unspecified foot|Other subluxation of unspecified foot +C2868847|T037|PT|S93.333A|ICD10CM|Other subluxation of unspecified foot, initial encounter|Other subluxation of unspecified foot, initial encounter +C2868847|T037|AB|S93.333A|ICD10CM|Other subluxation of unspecified foot, initial encounter|Other subluxation of unspecified foot, initial encounter +C2868848|T037|PT|S93.333D|ICD10CM|Other subluxation of unspecified foot, subsequent encounter|Other subluxation of unspecified foot, subsequent encounter +C2868848|T037|AB|S93.333D|ICD10CM|Other subluxation of unspecified foot, subsequent encounter|Other subluxation of unspecified foot, subsequent encounter +C2868849|T037|PT|S93.333S|ICD10CM|Other subluxation of unspecified foot, sequela|Other subluxation of unspecified foot, sequela +C2868849|T037|AB|S93.333S|ICD10CM|Other subluxation of unspecified foot, sequela|Other subluxation of unspecified foot, sequela +C2868850|T037|AB|S93.334|ICD10CM|Other dislocation of right foot|Other dislocation of right foot +C2868850|T037|HT|S93.334|ICD10CM|Other dislocation of right foot|Other dislocation of right foot +C2868851|T037|PT|S93.334A|ICD10CM|Other dislocation of right foot, initial encounter|Other dislocation of right foot, initial encounter +C2868851|T037|AB|S93.334A|ICD10CM|Other dislocation of right foot, initial encounter|Other dislocation of right foot, initial encounter +C2868852|T037|PT|S93.334D|ICD10CM|Other dislocation of right foot, subsequent encounter|Other dislocation of right foot, subsequent encounter +C2868852|T037|AB|S93.334D|ICD10CM|Other dislocation of right foot, subsequent encounter|Other dislocation of right foot, subsequent encounter +C2868853|T037|PT|S93.334S|ICD10CM|Other dislocation of right foot, sequela|Other dislocation of right foot, sequela +C2868853|T037|AB|S93.334S|ICD10CM|Other dislocation of right foot, sequela|Other dislocation of right foot, sequela +C2868854|T037|AB|S93.335|ICD10CM|Other dislocation of left foot|Other dislocation of left foot +C2868854|T037|HT|S93.335|ICD10CM|Other dislocation of left foot|Other dislocation of left foot +C2868855|T037|PT|S93.335A|ICD10CM|Other dislocation of left foot, initial encounter|Other dislocation of left foot, initial encounter +C2868855|T037|AB|S93.335A|ICD10CM|Other dislocation of left foot, initial encounter|Other dislocation of left foot, initial encounter +C2868856|T037|PT|S93.335D|ICD10CM|Other dislocation of left foot, subsequent encounter|Other dislocation of left foot, subsequent encounter +C2868856|T037|AB|S93.335D|ICD10CM|Other dislocation of left foot, subsequent encounter|Other dislocation of left foot, subsequent encounter +C2868857|T037|PT|S93.335S|ICD10CM|Other dislocation of left foot, sequela|Other dislocation of left foot, sequela +C2868857|T037|AB|S93.335S|ICD10CM|Other dislocation of left foot, sequela|Other dislocation of left foot, sequela +C2868858|T037|AB|S93.336|ICD10CM|Other dislocation of unspecified foot|Other dislocation of unspecified foot +C2868858|T037|HT|S93.336|ICD10CM|Other dislocation of unspecified foot|Other dislocation of unspecified foot +C2868859|T037|PT|S93.336A|ICD10CM|Other dislocation of unspecified foot, initial encounter|Other dislocation of unspecified foot, initial encounter +C2868859|T037|AB|S93.336A|ICD10CM|Other dislocation of unspecified foot, initial encounter|Other dislocation of unspecified foot, initial encounter +C2868860|T037|PT|S93.336D|ICD10CM|Other dislocation of unspecified foot, subsequent encounter|Other dislocation of unspecified foot, subsequent encounter +C2868860|T037|AB|S93.336D|ICD10CM|Other dislocation of unspecified foot, subsequent encounter|Other dislocation of unspecified foot, subsequent encounter +C2868861|T037|PT|S93.336S|ICD10CM|Other dislocation of unspecified foot, sequela|Other dislocation of unspecified foot, sequela +C2868861|T037|AB|S93.336S|ICD10CM|Other dislocation of unspecified foot, sequela|Other dislocation of unspecified foot, sequela +C0392082|T037|PT|S93.4|ICD10|Sprain and strain of ankle|Sprain and strain of ankle +C0160087|T037|HT|S93.4|ICD10CM|Sprain of ankle|Sprain of ankle +C0160087|T037|AB|S93.4|ICD10CM|Sprain of ankle|Sprain of ankle +C0160087|T037|ET|S93.40|ICD10CM|Sprain of ankle NOS|Sprain of ankle NOS +C2868862|T037|AB|S93.40|ICD10CM|Sprain of unspecified ligament of ankle|Sprain of unspecified ligament of ankle +C2868862|T037|HT|S93.40|ICD10CM|Sprain of unspecified ligament of ankle|Sprain of unspecified ligament of ankle +C0160087|T037|ET|S93.40|ICD10CM|Sprained ankle NOS|Sprained ankle NOS +C2868863|T037|AB|S93.401|ICD10CM|Sprain of unspecified ligament of right ankle|Sprain of unspecified ligament of right ankle +C2868863|T037|HT|S93.401|ICD10CM|Sprain of unspecified ligament of right ankle|Sprain of unspecified ligament of right ankle +C2868864|T037|AB|S93.401A|ICD10CM|Sprain of unspecified ligament of right ankle, init encntr|Sprain of unspecified ligament of right ankle, init encntr +C2868864|T037|PT|S93.401A|ICD10CM|Sprain of unspecified ligament of right ankle, initial encounter|Sprain of unspecified ligament of right ankle, initial encounter +C2868865|T037|AB|S93.401D|ICD10CM|Sprain of unspecified ligament of right ankle, subs encntr|Sprain of unspecified ligament of right ankle, subs encntr +C2868865|T037|PT|S93.401D|ICD10CM|Sprain of unspecified ligament of right ankle, subsequent encounter|Sprain of unspecified ligament of right ankle, subsequent encounter +C2868866|T037|AB|S93.401S|ICD10CM|Sprain of unspecified ligament of right ankle, sequela|Sprain of unspecified ligament of right ankle, sequela +C2868866|T037|PT|S93.401S|ICD10CM|Sprain of unspecified ligament of right ankle, sequela|Sprain of unspecified ligament of right ankle, sequela +C2868867|T037|AB|S93.402|ICD10CM|Sprain of unspecified ligament of left ankle|Sprain of unspecified ligament of left ankle +C2868867|T037|HT|S93.402|ICD10CM|Sprain of unspecified ligament of left ankle|Sprain of unspecified ligament of left ankle +C2868868|T037|AB|S93.402A|ICD10CM|Sprain of unspecified ligament of left ankle, init encntr|Sprain of unspecified ligament of left ankle, init encntr +C2868868|T037|PT|S93.402A|ICD10CM|Sprain of unspecified ligament of left ankle, initial encounter|Sprain of unspecified ligament of left ankle, initial encounter +C2868869|T037|AB|S93.402D|ICD10CM|Sprain of unspecified ligament of left ankle, subs encntr|Sprain of unspecified ligament of left ankle, subs encntr +C2868869|T037|PT|S93.402D|ICD10CM|Sprain of unspecified ligament of left ankle, subsequent encounter|Sprain of unspecified ligament of left ankle, subsequent encounter +C2868870|T037|AB|S93.402S|ICD10CM|Sprain of unspecified ligament of left ankle, sequela|Sprain of unspecified ligament of left ankle, sequela +C2868870|T037|PT|S93.402S|ICD10CM|Sprain of unspecified ligament of left ankle, sequela|Sprain of unspecified ligament of left ankle, sequela +C2868871|T037|AB|S93.409|ICD10CM|Sprain of unspecified ligament of unspecified ankle|Sprain of unspecified ligament of unspecified ankle +C2868871|T037|HT|S93.409|ICD10CM|Sprain of unspecified ligament of unspecified ankle|Sprain of unspecified ligament of unspecified ankle +C2868872|T037|AB|S93.409A|ICD10CM|Sprain of unsp ligament of unspecified ankle, init encntr|Sprain of unsp ligament of unspecified ankle, init encntr +C2868872|T037|PT|S93.409A|ICD10CM|Sprain of unspecified ligament of unspecified ankle, initial encounter|Sprain of unspecified ligament of unspecified ankle, initial encounter +C2868873|T037|AB|S93.409D|ICD10CM|Sprain of unsp ligament of unspecified ankle, subs encntr|Sprain of unsp ligament of unspecified ankle, subs encntr +C2868873|T037|PT|S93.409D|ICD10CM|Sprain of unspecified ligament of unspecified ankle, subsequent encounter|Sprain of unspecified ligament of unspecified ankle, subsequent encounter +C2868874|T037|AB|S93.409S|ICD10CM|Sprain of unspecified ligament of unspecified ankle, sequela|Sprain of unspecified ligament of unspecified ankle, sequela +C2868874|T037|PT|S93.409S|ICD10CM|Sprain of unspecified ligament of unspecified ankle, sequela|Sprain of unspecified ligament of unspecified ankle, sequela +C0272894|T037|HT|S93.41|ICD10CM|Sprain of calcaneofibular ligament|Sprain of calcaneofibular ligament +C0272894|T037|AB|S93.41|ICD10CM|Sprain of calcaneofibular ligament|Sprain of calcaneofibular ligament +C2019141|T037|AB|S93.411|ICD10CM|Sprain of calcaneofibular ligament of right ankle|Sprain of calcaneofibular ligament of right ankle +C2019141|T037|HT|S93.411|ICD10CM|Sprain of calcaneofibular ligament of right ankle|Sprain of calcaneofibular ligament of right ankle +C2868875|T037|AB|S93.411A|ICD10CM|Sprain of calcaneofibular ligament of right ankle, init|Sprain of calcaneofibular ligament of right ankle, init +C2868875|T037|PT|S93.411A|ICD10CM|Sprain of calcaneofibular ligament of right ankle, initial encounter|Sprain of calcaneofibular ligament of right ankle, initial encounter +C2868876|T037|AB|S93.411D|ICD10CM|Sprain of calcaneofibular ligament of right ankle, subs|Sprain of calcaneofibular ligament of right ankle, subs +C2868876|T037|PT|S93.411D|ICD10CM|Sprain of calcaneofibular ligament of right ankle, subsequent encounter|Sprain of calcaneofibular ligament of right ankle, subsequent encounter +C2868877|T037|AB|S93.411S|ICD10CM|Sprain of calcaneofibular ligament of right ankle, sequela|Sprain of calcaneofibular ligament of right ankle, sequela +C2868877|T037|PT|S93.411S|ICD10CM|Sprain of calcaneofibular ligament of right ankle, sequela|Sprain of calcaneofibular ligament of right ankle, sequela +C2019126|T037|AB|S93.412|ICD10CM|Sprain of calcaneofibular ligament of left ankle|Sprain of calcaneofibular ligament of left ankle +C2019126|T037|HT|S93.412|ICD10CM|Sprain of calcaneofibular ligament of left ankle|Sprain of calcaneofibular ligament of left ankle +C2868878|T037|AB|S93.412A|ICD10CM|Sprain of calcaneofibular ligament of left ankle, init|Sprain of calcaneofibular ligament of left ankle, init +C2868878|T037|PT|S93.412A|ICD10CM|Sprain of calcaneofibular ligament of left ankle, initial encounter|Sprain of calcaneofibular ligament of left ankle, initial encounter +C2868879|T037|AB|S93.412D|ICD10CM|Sprain of calcaneofibular ligament of left ankle, subs|Sprain of calcaneofibular ligament of left ankle, subs +C2868879|T037|PT|S93.412D|ICD10CM|Sprain of calcaneofibular ligament of left ankle, subsequent encounter|Sprain of calcaneofibular ligament of left ankle, subsequent encounter +C2868880|T037|AB|S93.412S|ICD10CM|Sprain of calcaneofibular ligament of left ankle, sequela|Sprain of calcaneofibular ligament of left ankle, sequela +C2868880|T037|PT|S93.412S|ICD10CM|Sprain of calcaneofibular ligament of left ankle, sequela|Sprain of calcaneofibular ligament of left ankle, sequela +C2868881|T037|AB|S93.419|ICD10CM|Sprain of calcaneofibular ligament of unspecified ankle|Sprain of calcaneofibular ligament of unspecified ankle +C2868881|T037|HT|S93.419|ICD10CM|Sprain of calcaneofibular ligament of unspecified ankle|Sprain of calcaneofibular ligament of unspecified ankle +C2868882|T037|AB|S93.419A|ICD10CM|Sprain of calcaneofibular ligament of unsp ankle, init|Sprain of calcaneofibular ligament of unsp ankle, init +C2868882|T037|PT|S93.419A|ICD10CM|Sprain of calcaneofibular ligament of unspecified ankle, initial encounter|Sprain of calcaneofibular ligament of unspecified ankle, initial encounter +C2868883|T037|AB|S93.419D|ICD10CM|Sprain of calcaneofibular ligament of unsp ankle, subs|Sprain of calcaneofibular ligament of unsp ankle, subs +C2868883|T037|PT|S93.419D|ICD10CM|Sprain of calcaneofibular ligament of unspecified ankle, subsequent encounter|Sprain of calcaneofibular ligament of unspecified ankle, subsequent encounter +C2868884|T037|AB|S93.419S|ICD10CM|Sprain of calcaneofibular ligament of unsp ankle, sequela|Sprain of calcaneofibular ligament of unsp ankle, sequela +C2868884|T037|PT|S93.419S|ICD10CM|Sprain of calcaneofibular ligament of unspecified ankle, sequela|Sprain of calcaneofibular ligament of unspecified ankle, sequela +C0160089|T037|HT|S93.42|ICD10CM|Sprain of deltoid ligament|Sprain of deltoid ligament +C0160089|T037|AB|S93.42|ICD10CM|Sprain of deltoid ligament|Sprain of deltoid ligament +C2019116|T037|AB|S93.421|ICD10CM|Sprain of deltoid ligament of right ankle|Sprain of deltoid ligament of right ankle +C2019116|T037|HT|S93.421|ICD10CM|Sprain of deltoid ligament of right ankle|Sprain of deltoid ligament of right ankle +C2868885|T037|AB|S93.421A|ICD10CM|Sprain of deltoid ligament of right ankle, initial encounter|Sprain of deltoid ligament of right ankle, initial encounter +C2868885|T037|PT|S93.421A|ICD10CM|Sprain of deltoid ligament of right ankle, initial encounter|Sprain of deltoid ligament of right ankle, initial encounter +C2868886|T037|AB|S93.421D|ICD10CM|Sprain of deltoid ligament of right ankle, subs encntr|Sprain of deltoid ligament of right ankle, subs encntr +C2868886|T037|PT|S93.421D|ICD10CM|Sprain of deltoid ligament of right ankle, subsequent encounter|Sprain of deltoid ligament of right ankle, subsequent encounter +C2868887|T037|AB|S93.421S|ICD10CM|Sprain of deltoid ligament of right ankle, sequela|Sprain of deltoid ligament of right ankle, sequela +C2868887|T037|PT|S93.421S|ICD10CM|Sprain of deltoid ligament of right ankle, sequela|Sprain of deltoid ligament of right ankle, sequela +C2019115|T037|AB|S93.422|ICD10CM|Sprain of deltoid ligament of left ankle|Sprain of deltoid ligament of left ankle +C2019115|T037|HT|S93.422|ICD10CM|Sprain of deltoid ligament of left ankle|Sprain of deltoid ligament of left ankle +C2868888|T037|AB|S93.422A|ICD10CM|Sprain of deltoid ligament of left ankle, initial encounter|Sprain of deltoid ligament of left ankle, initial encounter +C2868888|T037|PT|S93.422A|ICD10CM|Sprain of deltoid ligament of left ankle, initial encounter|Sprain of deltoid ligament of left ankle, initial encounter +C2868889|T037|AB|S93.422D|ICD10CM|Sprain of deltoid ligament of left ankle, subs encntr|Sprain of deltoid ligament of left ankle, subs encntr +C2868889|T037|PT|S93.422D|ICD10CM|Sprain of deltoid ligament of left ankle, subsequent encounter|Sprain of deltoid ligament of left ankle, subsequent encounter +C2868890|T037|AB|S93.422S|ICD10CM|Sprain of deltoid ligament of left ankle, sequela|Sprain of deltoid ligament of left ankle, sequela +C2868890|T037|PT|S93.422S|ICD10CM|Sprain of deltoid ligament of left ankle, sequela|Sprain of deltoid ligament of left ankle, sequela +C2868891|T037|AB|S93.429|ICD10CM|Sprain of deltoid ligament of unspecified ankle|Sprain of deltoid ligament of unspecified ankle +C2868891|T037|HT|S93.429|ICD10CM|Sprain of deltoid ligament of unspecified ankle|Sprain of deltoid ligament of unspecified ankle +C2868892|T037|AB|S93.429A|ICD10CM|Sprain of deltoid ligament of unspecified ankle, init encntr|Sprain of deltoid ligament of unspecified ankle, init encntr +C2868892|T037|PT|S93.429A|ICD10CM|Sprain of deltoid ligament of unspecified ankle, initial encounter|Sprain of deltoid ligament of unspecified ankle, initial encounter +C2868893|T037|AB|S93.429D|ICD10CM|Sprain of deltoid ligament of unspecified ankle, subs encntr|Sprain of deltoid ligament of unspecified ankle, subs encntr +C2868893|T037|PT|S93.429D|ICD10CM|Sprain of deltoid ligament of unspecified ankle, subsequent encounter|Sprain of deltoid ligament of unspecified ankle, subsequent encounter +C2868894|T037|AB|S93.429S|ICD10CM|Sprain of deltoid ligament of unspecified ankle, sequela|Sprain of deltoid ligament of unspecified ankle, sequela +C2868894|T037|PT|S93.429S|ICD10CM|Sprain of deltoid ligament of unspecified ankle, sequela|Sprain of deltoid ligament of unspecified ankle, sequela +C2019149|T037|AB|S93.43|ICD10CM|Sprain of tibiofibular ligament|Sprain of tibiofibular ligament +C2019149|T037|HT|S93.43|ICD10CM|Sprain of tibiofibular ligament|Sprain of tibiofibular ligament +C2019146|T037|HT|S93.431|ICD10CM|Sprain of tibiofibular ligament of right ankle|Sprain of tibiofibular ligament of right ankle +C2019146|T037|AB|S93.431|ICD10CM|Sprain of tibiofibular ligament of right ankle|Sprain of tibiofibular ligament of right ankle +C2868895|T037|AB|S93.431A|ICD10CM|Sprain of tibiofibular ligament of right ankle, init encntr|Sprain of tibiofibular ligament of right ankle, init encntr +C2868895|T037|PT|S93.431A|ICD10CM|Sprain of tibiofibular ligament of right ankle, initial encounter|Sprain of tibiofibular ligament of right ankle, initial encounter +C2868896|T037|AB|S93.431D|ICD10CM|Sprain of tibiofibular ligament of right ankle, subs encntr|Sprain of tibiofibular ligament of right ankle, subs encntr +C2868896|T037|PT|S93.431D|ICD10CM|Sprain of tibiofibular ligament of right ankle, subsequent encounter|Sprain of tibiofibular ligament of right ankle, subsequent encounter +C2868897|T037|AB|S93.431S|ICD10CM|Sprain of tibiofibular ligament of right ankle, sequela|Sprain of tibiofibular ligament of right ankle, sequela +C2868897|T037|PT|S93.431S|ICD10CM|Sprain of tibiofibular ligament of right ankle, sequela|Sprain of tibiofibular ligament of right ankle, sequela +C2019132|T037|HT|S93.432|ICD10CM|Sprain of tibiofibular ligament of left ankle|Sprain of tibiofibular ligament of left ankle +C2019132|T037|AB|S93.432|ICD10CM|Sprain of tibiofibular ligament of left ankle|Sprain of tibiofibular ligament of left ankle +C2868898|T037|AB|S93.432A|ICD10CM|Sprain of tibiofibular ligament of left ankle, init encntr|Sprain of tibiofibular ligament of left ankle, init encntr +C2868898|T037|PT|S93.432A|ICD10CM|Sprain of tibiofibular ligament of left ankle, initial encounter|Sprain of tibiofibular ligament of left ankle, initial encounter +C2868899|T037|AB|S93.432D|ICD10CM|Sprain of tibiofibular ligament of left ankle, subs encntr|Sprain of tibiofibular ligament of left ankle, subs encntr +C2868899|T037|PT|S93.432D|ICD10CM|Sprain of tibiofibular ligament of left ankle, subsequent encounter|Sprain of tibiofibular ligament of left ankle, subsequent encounter +C2868900|T037|AB|S93.432S|ICD10CM|Sprain of tibiofibular ligament of left ankle, sequela|Sprain of tibiofibular ligament of left ankle, sequela +C2868900|T037|PT|S93.432S|ICD10CM|Sprain of tibiofibular ligament of left ankle, sequela|Sprain of tibiofibular ligament of left ankle, sequela +C2868901|T037|AB|S93.439|ICD10CM|Sprain of tibiofibular ligament of unspecified ankle|Sprain of tibiofibular ligament of unspecified ankle +C2868901|T037|HT|S93.439|ICD10CM|Sprain of tibiofibular ligament of unspecified ankle|Sprain of tibiofibular ligament of unspecified ankle +C2868902|T037|AB|S93.439A|ICD10CM|Sprain of tibiofibular ligament of unsp ankle, init encntr|Sprain of tibiofibular ligament of unsp ankle, init encntr +C2868902|T037|PT|S93.439A|ICD10CM|Sprain of tibiofibular ligament of unspecified ankle, initial encounter|Sprain of tibiofibular ligament of unspecified ankle, initial encounter +C2868903|T037|AB|S93.439D|ICD10CM|Sprain of tibiofibular ligament of unsp ankle, subs encntr|Sprain of tibiofibular ligament of unsp ankle, subs encntr +C2868903|T037|PT|S93.439D|ICD10CM|Sprain of tibiofibular ligament of unspecified ankle, subsequent encounter|Sprain of tibiofibular ligament of unspecified ankle, subsequent encounter +C2868904|T037|AB|S93.439S|ICD10CM|Sprain of tibiofibular ligament of unsp ankle, sequela|Sprain of tibiofibular ligament of unsp ankle, sequela +C2868904|T037|PT|S93.439S|ICD10CM|Sprain of tibiofibular ligament of unspecified ankle, sequela|Sprain of tibiofibular ligament of unspecified ankle, sequela +C2868905|T037|ET|S93.49|ICD10CM|Sprain of internal collateral ligament|Sprain of internal collateral ligament +C2868907|T037|AB|S93.49|ICD10CM|Sprain of other ligament of ankle|Sprain of other ligament of ankle +C2868907|T037|HT|S93.49|ICD10CM|Sprain of other ligament of ankle|Sprain of other ligament of ankle +C2868906|T037|ET|S93.49|ICD10CM|Sprain of talofibular ligament|Sprain of talofibular ligament +C2868908|T037|AB|S93.491|ICD10CM|Sprain of other ligament of right ankle|Sprain of other ligament of right ankle +C2868908|T037|HT|S93.491|ICD10CM|Sprain of other ligament of right ankle|Sprain of other ligament of right ankle +C2868909|T037|AB|S93.491A|ICD10CM|Sprain of other ligament of right ankle, initial encounter|Sprain of other ligament of right ankle, initial encounter +C2868909|T037|PT|S93.491A|ICD10CM|Sprain of other ligament of right ankle, initial encounter|Sprain of other ligament of right ankle, initial encounter +C2868910|T037|AB|S93.491D|ICD10CM|Sprain of other ligament of right ankle, subs encntr|Sprain of other ligament of right ankle, subs encntr +C2868910|T037|PT|S93.491D|ICD10CM|Sprain of other ligament of right ankle, subsequent encounter|Sprain of other ligament of right ankle, subsequent encounter +C2868911|T037|AB|S93.491S|ICD10CM|Sprain of other ligament of right ankle, sequela|Sprain of other ligament of right ankle, sequela +C2868911|T037|PT|S93.491S|ICD10CM|Sprain of other ligament of right ankle, sequela|Sprain of other ligament of right ankle, sequela +C2868912|T037|AB|S93.492|ICD10CM|Sprain of other ligament of left ankle|Sprain of other ligament of left ankle +C2868912|T037|HT|S93.492|ICD10CM|Sprain of other ligament of left ankle|Sprain of other ligament of left ankle +C2868913|T037|AB|S93.492A|ICD10CM|Sprain of other ligament of left ankle, initial encounter|Sprain of other ligament of left ankle, initial encounter +C2868913|T037|PT|S93.492A|ICD10CM|Sprain of other ligament of left ankle, initial encounter|Sprain of other ligament of left ankle, initial encounter +C2868914|T037|AB|S93.492D|ICD10CM|Sprain of other ligament of left ankle, subsequent encounter|Sprain of other ligament of left ankle, subsequent encounter +C2868914|T037|PT|S93.492D|ICD10CM|Sprain of other ligament of left ankle, subsequent encounter|Sprain of other ligament of left ankle, subsequent encounter +C2868915|T037|AB|S93.492S|ICD10CM|Sprain of other ligament of left ankle, sequela|Sprain of other ligament of left ankle, sequela +C2868915|T037|PT|S93.492S|ICD10CM|Sprain of other ligament of left ankle, sequela|Sprain of other ligament of left ankle, sequela +C2868916|T037|AB|S93.499|ICD10CM|Sprain of other ligament of unspecified ankle|Sprain of other ligament of unspecified ankle +C2868916|T037|HT|S93.499|ICD10CM|Sprain of other ligament of unspecified ankle|Sprain of other ligament of unspecified ankle +C2868917|T037|AB|S93.499A|ICD10CM|Sprain of other ligament of unspecified ankle, init encntr|Sprain of other ligament of unspecified ankle, init encntr +C2868917|T037|PT|S93.499A|ICD10CM|Sprain of other ligament of unspecified ankle, initial encounter|Sprain of other ligament of unspecified ankle, initial encounter +C2868918|T037|AB|S93.499D|ICD10CM|Sprain of other ligament of unspecified ankle, subs encntr|Sprain of other ligament of unspecified ankle, subs encntr +C2868918|T037|PT|S93.499D|ICD10CM|Sprain of other ligament of unspecified ankle, subsequent encounter|Sprain of other ligament of unspecified ankle, subsequent encounter +C2868919|T037|AB|S93.499S|ICD10CM|Sprain of other ligament of unspecified ankle, sequela|Sprain of other ligament of unspecified ankle, sequela +C2868919|T037|PT|S93.499S|ICD10CM|Sprain of other ligament of unspecified ankle, sequela|Sprain of other ligament of unspecified ankle, sequela +C0495970|T037|PT|S93.5|ICD10|Sprain and strain of toe(s)|Sprain and strain of toe(s) +C0434480|T037|AB|S93.5|ICD10CM|Sprain of toe|Sprain of toe +C0434480|T037|HT|S93.5|ICD10CM|Sprain of toe|Sprain of toe +C2868920|T037|AB|S93.50|ICD10CM|Unspecified sprain of toe|Unspecified sprain of toe +C2868920|T037|HT|S93.50|ICD10CM|Unspecified sprain of toe|Unspecified sprain of toe +C2868921|T037|AB|S93.501|ICD10CM|Unspecified sprain of right great toe|Unspecified sprain of right great toe +C2868921|T037|HT|S93.501|ICD10CM|Unspecified sprain of right great toe|Unspecified sprain of right great toe +C2868922|T037|AB|S93.501A|ICD10CM|Unspecified sprain of right great toe, initial encounter|Unspecified sprain of right great toe, initial encounter +C2868922|T037|PT|S93.501A|ICD10CM|Unspecified sprain of right great toe, initial encounter|Unspecified sprain of right great toe, initial encounter +C2868923|T037|AB|S93.501D|ICD10CM|Unspecified sprain of right great toe, subsequent encounter|Unspecified sprain of right great toe, subsequent encounter +C2868923|T037|PT|S93.501D|ICD10CM|Unspecified sprain of right great toe, subsequent encounter|Unspecified sprain of right great toe, subsequent encounter +C2868924|T037|AB|S93.501S|ICD10CM|Unspecified sprain of right great toe, sequela|Unspecified sprain of right great toe, sequela +C2868924|T037|PT|S93.501S|ICD10CM|Unspecified sprain of right great toe, sequela|Unspecified sprain of right great toe, sequela +C2868925|T037|AB|S93.502|ICD10CM|Unspecified sprain of left great toe|Unspecified sprain of left great toe +C2868925|T037|HT|S93.502|ICD10CM|Unspecified sprain of left great toe|Unspecified sprain of left great toe +C2868926|T037|AB|S93.502A|ICD10CM|Unspecified sprain of left great toe, initial encounter|Unspecified sprain of left great toe, initial encounter +C2868926|T037|PT|S93.502A|ICD10CM|Unspecified sprain of left great toe, initial encounter|Unspecified sprain of left great toe, initial encounter +C2868927|T037|AB|S93.502D|ICD10CM|Unspecified sprain of left great toe, subsequent encounter|Unspecified sprain of left great toe, subsequent encounter +C2868927|T037|PT|S93.502D|ICD10CM|Unspecified sprain of left great toe, subsequent encounter|Unspecified sprain of left great toe, subsequent encounter +C2868928|T037|AB|S93.502S|ICD10CM|Unspecified sprain of left great toe, sequela|Unspecified sprain of left great toe, sequela +C2868928|T037|PT|S93.502S|ICD10CM|Unspecified sprain of left great toe, sequela|Unspecified sprain of left great toe, sequela +C2868929|T037|AB|S93.503|ICD10CM|Unspecified sprain of unspecified great toe|Unspecified sprain of unspecified great toe +C2868929|T037|HT|S93.503|ICD10CM|Unspecified sprain of unspecified great toe|Unspecified sprain of unspecified great toe +C2868930|T037|AB|S93.503A|ICD10CM|Unspecified sprain of unspecified great toe, init encntr|Unspecified sprain of unspecified great toe, init encntr +C2868930|T037|PT|S93.503A|ICD10CM|Unspecified sprain of unspecified great toe, initial encounter|Unspecified sprain of unspecified great toe, initial encounter +C2868931|T037|AB|S93.503D|ICD10CM|Unspecified sprain of unspecified great toe, subs encntr|Unspecified sprain of unspecified great toe, subs encntr +C2868931|T037|PT|S93.503D|ICD10CM|Unspecified sprain of unspecified great toe, subsequent encounter|Unspecified sprain of unspecified great toe, subsequent encounter +C2868932|T037|AB|S93.503S|ICD10CM|Unspecified sprain of unspecified great toe, sequela|Unspecified sprain of unspecified great toe, sequela +C2868932|T037|PT|S93.503S|ICD10CM|Unspecified sprain of unspecified great toe, sequela|Unspecified sprain of unspecified great toe, sequela +C2868933|T037|AB|S93.504|ICD10CM|Unspecified sprain of right lesser toe(s)|Unspecified sprain of right lesser toe(s) +C2868933|T037|HT|S93.504|ICD10CM|Unspecified sprain of right lesser toe(s)|Unspecified sprain of right lesser toe(s) +C2868934|T037|AB|S93.504A|ICD10CM|Unspecified sprain of right lesser toe(s), initial encounter|Unspecified sprain of right lesser toe(s), initial encounter +C2868934|T037|PT|S93.504A|ICD10CM|Unspecified sprain of right lesser toe(s), initial encounter|Unspecified sprain of right lesser toe(s), initial encounter +C2868935|T037|AB|S93.504D|ICD10CM|Unspecified sprain of right lesser toe(s), subs encntr|Unspecified sprain of right lesser toe(s), subs encntr +C2868935|T037|PT|S93.504D|ICD10CM|Unspecified sprain of right lesser toe(s), subsequent encounter|Unspecified sprain of right lesser toe(s), subsequent encounter +C2868936|T037|AB|S93.504S|ICD10CM|Unspecified sprain of right lesser toe(s), sequela|Unspecified sprain of right lesser toe(s), sequela +C2868936|T037|PT|S93.504S|ICD10CM|Unspecified sprain of right lesser toe(s), sequela|Unspecified sprain of right lesser toe(s), sequela +C2868937|T037|AB|S93.505|ICD10CM|Unspecified sprain of left lesser toe(s)|Unspecified sprain of left lesser toe(s) +C2868937|T037|HT|S93.505|ICD10CM|Unspecified sprain of left lesser toe(s)|Unspecified sprain of left lesser toe(s) +C2868938|T037|AB|S93.505A|ICD10CM|Unspecified sprain of left lesser toe(s), initial encounter|Unspecified sprain of left lesser toe(s), initial encounter +C2868938|T037|PT|S93.505A|ICD10CM|Unspecified sprain of left lesser toe(s), initial encounter|Unspecified sprain of left lesser toe(s), initial encounter +C2868939|T037|AB|S93.505D|ICD10CM|Unspecified sprain of left lesser toe(s), subs encntr|Unspecified sprain of left lesser toe(s), subs encntr +C2868939|T037|PT|S93.505D|ICD10CM|Unspecified sprain of left lesser toe(s), subsequent encounter|Unspecified sprain of left lesser toe(s), subsequent encounter +C2868940|T037|AB|S93.505S|ICD10CM|Unspecified sprain of left lesser toe(s), sequela|Unspecified sprain of left lesser toe(s), sequela +C2868940|T037|PT|S93.505S|ICD10CM|Unspecified sprain of left lesser toe(s), sequela|Unspecified sprain of left lesser toe(s), sequela +C2868941|T037|AB|S93.506|ICD10CM|Unspecified sprain of unspecified lesser toe(s)|Unspecified sprain of unspecified lesser toe(s) +C2868941|T037|HT|S93.506|ICD10CM|Unspecified sprain of unspecified lesser toe(s)|Unspecified sprain of unspecified lesser toe(s) +C2868942|T037|AB|S93.506A|ICD10CM|Unspecified sprain of unspecified lesser toe(s), init encntr|Unspecified sprain of unspecified lesser toe(s), init encntr +C2868942|T037|PT|S93.506A|ICD10CM|Unspecified sprain of unspecified lesser toe(s), initial encounter|Unspecified sprain of unspecified lesser toe(s), initial encounter +C2868943|T037|AB|S93.506D|ICD10CM|Unspecified sprain of unspecified lesser toe(s), subs encntr|Unspecified sprain of unspecified lesser toe(s), subs encntr +C2868943|T037|PT|S93.506D|ICD10CM|Unspecified sprain of unspecified lesser toe(s), subsequent encounter|Unspecified sprain of unspecified lesser toe(s), subsequent encounter +C2868944|T037|AB|S93.506S|ICD10CM|Unspecified sprain of unspecified lesser toe(s), sequela|Unspecified sprain of unspecified lesser toe(s), sequela +C2868944|T037|PT|S93.506S|ICD10CM|Unspecified sprain of unspecified lesser toe(s), sequela|Unspecified sprain of unspecified lesser toe(s), sequela +C2868945|T037|AB|S93.509|ICD10CM|Unspecified sprain of unspecified toe(s)|Unspecified sprain of unspecified toe(s) +C2868945|T037|HT|S93.509|ICD10CM|Unspecified sprain of unspecified toe(s)|Unspecified sprain of unspecified toe(s) +C2868946|T037|AB|S93.509A|ICD10CM|Unspecified sprain of unspecified toe(s), initial encounter|Unspecified sprain of unspecified toe(s), initial encounter +C2868946|T037|PT|S93.509A|ICD10CM|Unspecified sprain of unspecified toe(s), initial encounter|Unspecified sprain of unspecified toe(s), initial encounter +C2868947|T037|AB|S93.509D|ICD10CM|Unspecified sprain of unspecified toe(s), subs encntr|Unspecified sprain of unspecified toe(s), subs encntr +C2868947|T037|PT|S93.509D|ICD10CM|Unspecified sprain of unspecified toe(s), subsequent encounter|Unspecified sprain of unspecified toe(s), subsequent encounter +C2868948|T037|AB|S93.509S|ICD10CM|Unspecified sprain of unspecified toe(s), sequela|Unspecified sprain of unspecified toe(s), sequela +C2868948|T037|PT|S93.509S|ICD10CM|Unspecified sprain of unspecified toe(s), sequela|Unspecified sprain of unspecified toe(s), sequela +C0160097|T037|HT|S93.51|ICD10CM|Sprain of interphalangeal joint of toe|Sprain of interphalangeal joint of toe +C0160097|T037|AB|S93.51|ICD10CM|Sprain of interphalangeal joint of toe|Sprain of interphalangeal joint of toe +C2868949|T037|AB|S93.511|ICD10CM|Sprain of interphalangeal joint of right great toe|Sprain of interphalangeal joint of right great toe +C2868949|T037|HT|S93.511|ICD10CM|Sprain of interphalangeal joint of right great toe|Sprain of interphalangeal joint of right great toe +C2868950|T037|AB|S93.511A|ICD10CM|Sprain of interphalangeal joint of right great toe, init|Sprain of interphalangeal joint of right great toe, init +C2868950|T037|PT|S93.511A|ICD10CM|Sprain of interphalangeal joint of right great toe, initial encounter|Sprain of interphalangeal joint of right great toe, initial encounter +C2868951|T037|AB|S93.511D|ICD10CM|Sprain of interphalangeal joint of right great toe, subs|Sprain of interphalangeal joint of right great toe, subs +C2868951|T037|PT|S93.511D|ICD10CM|Sprain of interphalangeal joint of right great toe, subsequent encounter|Sprain of interphalangeal joint of right great toe, subsequent encounter +C2868952|T037|PT|S93.511S|ICD10CM|Sprain of interphalangeal joint of right great toe, sequela|Sprain of interphalangeal joint of right great toe, sequela +C2868952|T037|AB|S93.511S|ICD10CM|Sprain of interphalangeal joint of right great toe, sequela|Sprain of interphalangeal joint of right great toe, sequela +C2868953|T037|AB|S93.512|ICD10CM|Sprain of interphalangeal joint of left great toe|Sprain of interphalangeal joint of left great toe +C2868953|T037|HT|S93.512|ICD10CM|Sprain of interphalangeal joint of left great toe|Sprain of interphalangeal joint of left great toe +C2868954|T037|AB|S93.512A|ICD10CM|Sprain of interphalangeal joint of left great toe, init|Sprain of interphalangeal joint of left great toe, init +C2868954|T037|PT|S93.512A|ICD10CM|Sprain of interphalangeal joint of left great toe, initial encounter|Sprain of interphalangeal joint of left great toe, initial encounter +C2868955|T037|AB|S93.512D|ICD10CM|Sprain of interphalangeal joint of left great toe, subs|Sprain of interphalangeal joint of left great toe, subs +C2868955|T037|PT|S93.512D|ICD10CM|Sprain of interphalangeal joint of left great toe, subsequent encounter|Sprain of interphalangeal joint of left great toe, subsequent encounter +C2868956|T037|PT|S93.512S|ICD10CM|Sprain of interphalangeal joint of left great toe, sequela|Sprain of interphalangeal joint of left great toe, sequela +C2868956|T037|AB|S93.512S|ICD10CM|Sprain of interphalangeal joint of left great toe, sequela|Sprain of interphalangeal joint of left great toe, sequela +C2868957|T037|AB|S93.513|ICD10CM|Sprain of interphalangeal joint of unspecified great toe|Sprain of interphalangeal joint of unspecified great toe +C2868957|T037|HT|S93.513|ICD10CM|Sprain of interphalangeal joint of unspecified great toe|Sprain of interphalangeal joint of unspecified great toe +C2868958|T037|AB|S93.513A|ICD10CM|Sprain of interphalangeal joint of unsp great toe, init|Sprain of interphalangeal joint of unsp great toe, init +C2868958|T037|PT|S93.513A|ICD10CM|Sprain of interphalangeal joint of unspecified great toe, initial encounter|Sprain of interphalangeal joint of unspecified great toe, initial encounter +C2868959|T037|AB|S93.513D|ICD10CM|Sprain of interphalangeal joint of unsp great toe, subs|Sprain of interphalangeal joint of unsp great toe, subs +C2868959|T037|PT|S93.513D|ICD10CM|Sprain of interphalangeal joint of unspecified great toe, subsequent encounter|Sprain of interphalangeal joint of unspecified great toe, subsequent encounter +C2868960|T037|AB|S93.513S|ICD10CM|Sprain of interphalangeal joint of unsp great toe, sequela|Sprain of interphalangeal joint of unsp great toe, sequela +C2868960|T037|PT|S93.513S|ICD10CM|Sprain of interphalangeal joint of unspecified great toe, sequela|Sprain of interphalangeal joint of unspecified great toe, sequela +C2868961|T037|AB|S93.514|ICD10CM|Sprain of interphalangeal joint of right lesser toe(s)|Sprain of interphalangeal joint of right lesser toe(s) +C2868961|T037|HT|S93.514|ICD10CM|Sprain of interphalangeal joint of right lesser toe(s)|Sprain of interphalangeal joint of right lesser toe(s) +C2868962|T037|AB|S93.514A|ICD10CM|Sprain of interphalangeal joint of right lesser toe(s), init|Sprain of interphalangeal joint of right lesser toe(s), init +C2868962|T037|PT|S93.514A|ICD10CM|Sprain of interphalangeal joint of right lesser toe(s), initial encounter|Sprain of interphalangeal joint of right lesser toe(s), initial encounter +C2868963|T037|AB|S93.514D|ICD10CM|Sprain of interphalangeal joint of right lesser toe(s), subs|Sprain of interphalangeal joint of right lesser toe(s), subs +C2868963|T037|PT|S93.514D|ICD10CM|Sprain of interphalangeal joint of right lesser toe(s), subsequent encounter|Sprain of interphalangeal joint of right lesser toe(s), subsequent encounter +C2868964|T037|PT|S93.514S|ICD10CM|Sprain of interphalangeal joint of right lesser toe(s), sequela|Sprain of interphalangeal joint of right lesser toe(s), sequela +C2868964|T037|AB|S93.514S|ICD10CM|Sprain of interphaln joint of right lesser toe(s), sequela|Sprain of interphaln joint of right lesser toe(s), sequela +C2868965|T037|AB|S93.515|ICD10CM|Sprain of interphalangeal joint of left lesser toe(s)|Sprain of interphalangeal joint of left lesser toe(s) +C2868965|T037|HT|S93.515|ICD10CM|Sprain of interphalangeal joint of left lesser toe(s)|Sprain of interphalangeal joint of left lesser toe(s) +C2868966|T037|AB|S93.515A|ICD10CM|Sprain of interphalangeal joint of left lesser toe(s), init|Sprain of interphalangeal joint of left lesser toe(s), init +C2868966|T037|PT|S93.515A|ICD10CM|Sprain of interphalangeal joint of left lesser toe(s), initial encounter|Sprain of interphalangeal joint of left lesser toe(s), initial encounter +C2868967|T037|AB|S93.515D|ICD10CM|Sprain of interphalangeal joint of left lesser toe(s), subs|Sprain of interphalangeal joint of left lesser toe(s), subs +C2868967|T037|PT|S93.515D|ICD10CM|Sprain of interphalangeal joint of left lesser toe(s), subsequent encounter|Sprain of interphalangeal joint of left lesser toe(s), subsequent encounter +C2868968|T037|PT|S93.515S|ICD10CM|Sprain of interphalangeal joint of left lesser toe(s), sequela|Sprain of interphalangeal joint of left lesser toe(s), sequela +C2868968|T037|AB|S93.515S|ICD10CM|Sprain of interphaln joint of left lesser toe(s), sequela|Sprain of interphaln joint of left lesser toe(s), sequela +C2868969|T037|AB|S93.516|ICD10CM|Sprain of interphalangeal joint of unspecified lesser toe(s)|Sprain of interphalangeal joint of unspecified lesser toe(s) +C2868969|T037|HT|S93.516|ICD10CM|Sprain of interphalangeal joint of unspecified lesser toe(s)|Sprain of interphalangeal joint of unspecified lesser toe(s) +C2868970|T037|AB|S93.516A|ICD10CM|Sprain of interphalangeal joint of unsp lesser toe(s), init|Sprain of interphalangeal joint of unsp lesser toe(s), init +C2868970|T037|PT|S93.516A|ICD10CM|Sprain of interphalangeal joint of unspecified lesser toe(s), initial encounter|Sprain of interphalangeal joint of unspecified lesser toe(s), initial encounter +C2868971|T037|AB|S93.516D|ICD10CM|Sprain of interphalangeal joint of unsp lesser toe(s), subs|Sprain of interphalangeal joint of unsp lesser toe(s), subs +C2868971|T037|PT|S93.516D|ICD10CM|Sprain of interphalangeal joint of unspecified lesser toe(s), subsequent encounter|Sprain of interphalangeal joint of unspecified lesser toe(s), subsequent encounter +C2868972|T037|PT|S93.516S|ICD10CM|Sprain of interphalangeal joint of unspecified lesser toe(s), sequela|Sprain of interphalangeal joint of unspecified lesser toe(s), sequela +C2868972|T037|AB|S93.516S|ICD10CM|Sprain of interphaln joint of unsp lesser toe(s), sequela|Sprain of interphaln joint of unsp lesser toe(s), sequela +C2868973|T037|AB|S93.519|ICD10CM|Sprain of interphalangeal joint of unspecified toe(s)|Sprain of interphalangeal joint of unspecified toe(s) +C2868973|T037|HT|S93.519|ICD10CM|Sprain of interphalangeal joint of unspecified toe(s)|Sprain of interphalangeal joint of unspecified toe(s) +C2868974|T037|AB|S93.519A|ICD10CM|Sprain of interphalangeal joint of unsp toe(s), init encntr|Sprain of interphalangeal joint of unsp toe(s), init encntr +C2868974|T037|PT|S93.519A|ICD10CM|Sprain of interphalangeal joint of unspecified toe(s), initial encounter|Sprain of interphalangeal joint of unspecified toe(s), initial encounter +C2868975|T037|AB|S93.519D|ICD10CM|Sprain of interphalangeal joint of unsp toe(s), subs encntr|Sprain of interphalangeal joint of unsp toe(s), subs encntr +C2868975|T037|PT|S93.519D|ICD10CM|Sprain of interphalangeal joint of unspecified toe(s), subsequent encounter|Sprain of interphalangeal joint of unspecified toe(s), subsequent encounter +C2868976|T037|AB|S93.519S|ICD10CM|Sprain of interphalangeal joint of unsp toe(s), sequela|Sprain of interphalangeal joint of unsp toe(s), sequela +C2868976|T037|PT|S93.519S|ICD10CM|Sprain of interphalangeal joint of unspecified toe(s), sequela|Sprain of interphalangeal joint of unspecified toe(s), sequela +C2868977|T037|AB|S93.52|ICD10CM|Sprain of metatarsophalangeal joint of toe|Sprain of metatarsophalangeal joint of toe +C2868977|T037|HT|S93.52|ICD10CM|Sprain of metatarsophalangeal joint of toe|Sprain of metatarsophalangeal joint of toe +C2868978|T037|AB|S93.521|ICD10CM|Sprain of metatarsophalangeal joint of right great toe|Sprain of metatarsophalangeal joint of right great toe +C2868978|T037|HT|S93.521|ICD10CM|Sprain of metatarsophalangeal joint of right great toe|Sprain of metatarsophalangeal joint of right great toe +C2868979|T037|AB|S93.521A|ICD10CM|Sprain of metatarsophalangeal joint of right great toe, init|Sprain of metatarsophalangeal joint of right great toe, init +C2868979|T037|PT|S93.521A|ICD10CM|Sprain of metatarsophalangeal joint of right great toe, initial encounter|Sprain of metatarsophalangeal joint of right great toe, initial encounter +C2868980|T037|AB|S93.521D|ICD10CM|Sprain of metatarsophalangeal joint of right great toe, subs|Sprain of metatarsophalangeal joint of right great toe, subs +C2868980|T037|PT|S93.521D|ICD10CM|Sprain of metatarsophalangeal joint of right great toe, subsequent encounter|Sprain of metatarsophalangeal joint of right great toe, subsequent encounter +C2868981|T037|PT|S93.521S|ICD10CM|Sprain of metatarsophalangeal joint of right great toe, sequela|Sprain of metatarsophalangeal joint of right great toe, sequela +C2868981|T037|AB|S93.521S|ICD10CM|Sprain of MTP joint of right great toe, sequela|Sprain of MTP joint of right great toe, sequela +C2868982|T037|AB|S93.522|ICD10CM|Sprain of metatarsophalangeal joint of left great toe|Sprain of metatarsophalangeal joint of left great toe +C2868982|T037|HT|S93.522|ICD10CM|Sprain of metatarsophalangeal joint of left great toe|Sprain of metatarsophalangeal joint of left great toe +C2868983|T037|AB|S93.522A|ICD10CM|Sprain of metatarsophalangeal joint of left great toe, init|Sprain of metatarsophalangeal joint of left great toe, init +C2868983|T037|PT|S93.522A|ICD10CM|Sprain of metatarsophalangeal joint of left great toe, initial encounter|Sprain of metatarsophalangeal joint of left great toe, initial encounter +C2868984|T037|AB|S93.522D|ICD10CM|Sprain of metatarsophalangeal joint of left great toe, subs|Sprain of metatarsophalangeal joint of left great toe, subs +C2868984|T037|PT|S93.522D|ICD10CM|Sprain of metatarsophalangeal joint of left great toe, subsequent encounter|Sprain of metatarsophalangeal joint of left great toe, subsequent encounter +C2868985|T037|PT|S93.522S|ICD10CM|Sprain of metatarsophalangeal joint of left great toe, sequela|Sprain of metatarsophalangeal joint of left great toe, sequela +C2868985|T037|AB|S93.522S|ICD10CM|Sprain of MTP joint of left great toe, sequela|Sprain of MTP joint of left great toe, sequela +C2868986|T037|AB|S93.523|ICD10CM|Sprain of metatarsophalangeal joint of unspecified great toe|Sprain of metatarsophalangeal joint of unspecified great toe +C2868986|T037|HT|S93.523|ICD10CM|Sprain of metatarsophalangeal joint of unspecified great toe|Sprain of metatarsophalangeal joint of unspecified great toe +C2868987|T037|AB|S93.523A|ICD10CM|Sprain of metatarsophalangeal joint of unsp great toe, init|Sprain of metatarsophalangeal joint of unsp great toe, init +C2868987|T037|PT|S93.523A|ICD10CM|Sprain of metatarsophalangeal joint of unspecified great toe, initial encounter|Sprain of metatarsophalangeal joint of unspecified great toe, initial encounter +C2868988|T037|AB|S93.523D|ICD10CM|Sprain of metatarsophalangeal joint of unsp great toe, subs|Sprain of metatarsophalangeal joint of unsp great toe, subs +C2868988|T037|PT|S93.523D|ICD10CM|Sprain of metatarsophalangeal joint of unspecified great toe, subsequent encounter|Sprain of metatarsophalangeal joint of unspecified great toe, subsequent encounter +C2868989|T037|PT|S93.523S|ICD10CM|Sprain of metatarsophalangeal joint of unspecified great toe, sequela|Sprain of metatarsophalangeal joint of unspecified great toe, sequela +C2868989|T037|AB|S93.523S|ICD10CM|Sprain of MTP joint of unsp great toe, sequela|Sprain of MTP joint of unsp great toe, sequela +C2868990|T037|AB|S93.524|ICD10CM|Sprain of metatarsophalangeal joint of right lesser toe(s)|Sprain of metatarsophalangeal joint of right lesser toe(s) +C2868990|T037|HT|S93.524|ICD10CM|Sprain of metatarsophalangeal joint of right lesser toe(s)|Sprain of metatarsophalangeal joint of right lesser toe(s) +C2868991|T037|PT|S93.524A|ICD10CM|Sprain of metatarsophalangeal joint of right lesser toe(s), initial encounter|Sprain of metatarsophalangeal joint of right lesser toe(s), initial encounter +C2868991|T037|AB|S93.524A|ICD10CM|Sprain of MTP joint of right lesser toe(s), init|Sprain of MTP joint of right lesser toe(s), init +C2868992|T037|PT|S93.524D|ICD10CM|Sprain of metatarsophalangeal joint of right lesser toe(s), subsequent encounter|Sprain of metatarsophalangeal joint of right lesser toe(s), subsequent encounter +C2868992|T037|AB|S93.524D|ICD10CM|Sprain of MTP joint of right lesser toe(s), subs|Sprain of MTP joint of right lesser toe(s), subs +C2868993|T037|PT|S93.524S|ICD10CM|Sprain of metatarsophalangeal joint of right lesser toe(s), sequela|Sprain of metatarsophalangeal joint of right lesser toe(s), sequela +C2868993|T037|AB|S93.524S|ICD10CM|Sprain of MTP joint of right lesser toe(s), sequela|Sprain of MTP joint of right lesser toe(s), sequela +C2868994|T037|AB|S93.525|ICD10CM|Sprain of metatarsophalangeal joint of left lesser toe(s)|Sprain of metatarsophalangeal joint of left lesser toe(s) +C2868994|T037|HT|S93.525|ICD10CM|Sprain of metatarsophalangeal joint of left lesser toe(s)|Sprain of metatarsophalangeal joint of left lesser toe(s) +C2868995|T037|PT|S93.525A|ICD10CM|Sprain of metatarsophalangeal joint of left lesser toe(s), initial encounter|Sprain of metatarsophalangeal joint of left lesser toe(s), initial encounter +C2868995|T037|AB|S93.525A|ICD10CM|Sprain of MTP joint of left lesser toe(s), init|Sprain of MTP joint of left lesser toe(s), init +C2868996|T037|PT|S93.525D|ICD10CM|Sprain of metatarsophalangeal joint of left lesser toe(s), subsequent encounter|Sprain of metatarsophalangeal joint of left lesser toe(s), subsequent encounter +C2868996|T037|AB|S93.525D|ICD10CM|Sprain of MTP joint of left lesser toe(s), subs|Sprain of MTP joint of left lesser toe(s), subs +C2868997|T037|PT|S93.525S|ICD10CM|Sprain of metatarsophalangeal joint of left lesser toe(s), sequela|Sprain of metatarsophalangeal joint of left lesser toe(s), sequela +C2868997|T037|AB|S93.525S|ICD10CM|Sprain of MTP joint of left lesser toe(s), sequela|Sprain of MTP joint of left lesser toe(s), sequela +C2868998|T037|AB|S93.526|ICD10CM|Sprain of metatarsophalangeal joint of unsp lesser toe(s)|Sprain of metatarsophalangeal joint of unsp lesser toe(s) +C2868998|T037|HT|S93.526|ICD10CM|Sprain of metatarsophalangeal joint of unspecified lesser toe(s)|Sprain of metatarsophalangeal joint of unspecified lesser toe(s) +C2868999|T037|PT|S93.526A|ICD10CM|Sprain of metatarsophalangeal joint of unspecified lesser toe(s), initial encounter|Sprain of metatarsophalangeal joint of unspecified lesser toe(s), initial encounter +C2868999|T037|AB|S93.526A|ICD10CM|Sprain of MTP joint of unsp lesser toe(s), init|Sprain of MTP joint of unsp lesser toe(s), init +C2869000|T037|PT|S93.526D|ICD10CM|Sprain of metatarsophalangeal joint of unspecified lesser toe(s), subsequent encounter|Sprain of metatarsophalangeal joint of unspecified lesser toe(s), subsequent encounter +C2869000|T037|AB|S93.526D|ICD10CM|Sprain of MTP joint of unsp lesser toe(s), subs|Sprain of MTP joint of unsp lesser toe(s), subs +C2869001|T037|PT|S93.526S|ICD10CM|Sprain of metatarsophalangeal joint of unspecified lesser toe(s), sequela|Sprain of metatarsophalangeal joint of unspecified lesser toe(s), sequela +C2869001|T037|AB|S93.526S|ICD10CM|Sprain of MTP joint of unsp lesser toe(s), sequela|Sprain of MTP joint of unsp lesser toe(s), sequela +C2869002|T037|AB|S93.529|ICD10CM|Sprain of metatarsophalangeal joint of unspecified toe(s)|Sprain of metatarsophalangeal joint of unspecified toe(s) +C2869002|T037|HT|S93.529|ICD10CM|Sprain of metatarsophalangeal joint of unspecified toe(s)|Sprain of metatarsophalangeal joint of unspecified toe(s) +C2869003|T037|AB|S93.529A|ICD10CM|Sprain of metatarsophalangeal joint of unsp toe(s), init|Sprain of metatarsophalangeal joint of unsp toe(s), init +C2869003|T037|PT|S93.529A|ICD10CM|Sprain of metatarsophalangeal joint of unspecified toe(s), initial encounter|Sprain of metatarsophalangeal joint of unspecified toe(s), initial encounter +C2869004|T037|AB|S93.529D|ICD10CM|Sprain of metatarsophalangeal joint of unsp toe(s), subs|Sprain of metatarsophalangeal joint of unsp toe(s), subs +C2869004|T037|PT|S93.529D|ICD10CM|Sprain of metatarsophalangeal joint of unspecified toe(s), subsequent encounter|Sprain of metatarsophalangeal joint of unspecified toe(s), subsequent encounter +C2869005|T037|AB|S93.529S|ICD10CM|Sprain of metatarsophalangeal joint of unsp toe(s), sequela|Sprain of metatarsophalangeal joint of unsp toe(s), sequela +C2869005|T037|PT|S93.529S|ICD10CM|Sprain of metatarsophalangeal joint of unspecified toe(s), sequela|Sprain of metatarsophalangeal joint of unspecified toe(s), sequela +C0478354|T037|PT|S93.6|ICD10|Sprain and strain of other and unspecified parts of foot|Sprain and strain of other and unspecified parts of foot +C0160093|T037|HT|S93.6|ICD10CM|Sprain of foot|Sprain of foot +C0160093|T037|AB|S93.6|ICD10CM|Sprain of foot|Sprain of foot +C0160093|T037|AB|S93.60|ICD10CM|Unspecified sprain of foot|Unspecified sprain of foot +C0160093|T037|HT|S93.60|ICD10CM|Unspecified sprain of foot|Unspecified sprain of foot +C2869006|T037|AB|S93.601|ICD10CM|Unspecified sprain of right foot|Unspecified sprain of right foot +C2869006|T037|HT|S93.601|ICD10CM|Unspecified sprain of right foot|Unspecified sprain of right foot +C2869007|T037|PT|S93.601A|ICD10CM|Unspecified sprain of right foot, initial encounter|Unspecified sprain of right foot, initial encounter +C2869007|T037|AB|S93.601A|ICD10CM|Unspecified sprain of right foot, initial encounter|Unspecified sprain of right foot, initial encounter +C2869008|T037|PT|S93.601D|ICD10CM|Unspecified sprain of right foot, subsequent encounter|Unspecified sprain of right foot, subsequent encounter +C2869008|T037|AB|S93.601D|ICD10CM|Unspecified sprain of right foot, subsequent encounter|Unspecified sprain of right foot, subsequent encounter +C2869009|T037|PT|S93.601S|ICD10CM|Unspecified sprain of right foot, sequela|Unspecified sprain of right foot, sequela +C2869009|T037|AB|S93.601S|ICD10CM|Unspecified sprain of right foot, sequela|Unspecified sprain of right foot, sequela +C2869010|T037|AB|S93.602|ICD10CM|Unspecified sprain of left foot|Unspecified sprain of left foot +C2869010|T037|HT|S93.602|ICD10CM|Unspecified sprain of left foot|Unspecified sprain of left foot +C2869011|T037|PT|S93.602A|ICD10CM|Unspecified sprain of left foot, initial encounter|Unspecified sprain of left foot, initial encounter +C2869011|T037|AB|S93.602A|ICD10CM|Unspecified sprain of left foot, initial encounter|Unspecified sprain of left foot, initial encounter +C2869012|T037|PT|S93.602D|ICD10CM|Unspecified sprain of left foot, subsequent encounter|Unspecified sprain of left foot, subsequent encounter +C2869012|T037|AB|S93.602D|ICD10CM|Unspecified sprain of left foot, subsequent encounter|Unspecified sprain of left foot, subsequent encounter +C2869013|T037|PT|S93.602S|ICD10CM|Unspecified sprain of left foot, sequela|Unspecified sprain of left foot, sequela +C2869013|T037|AB|S93.602S|ICD10CM|Unspecified sprain of left foot, sequela|Unspecified sprain of left foot, sequela +C2869014|T037|AB|S93.609|ICD10CM|Unspecified sprain of unspecified foot|Unspecified sprain of unspecified foot +C2869014|T037|HT|S93.609|ICD10CM|Unspecified sprain of unspecified foot|Unspecified sprain of unspecified foot +C2869015|T037|PT|S93.609A|ICD10CM|Unspecified sprain of unspecified foot, initial encounter|Unspecified sprain of unspecified foot, initial encounter +C2869015|T037|AB|S93.609A|ICD10CM|Unspecified sprain of unspecified foot, initial encounter|Unspecified sprain of unspecified foot, initial encounter +C2869016|T037|AB|S93.609D|ICD10CM|Unspecified sprain of unspecified foot, subsequent encounter|Unspecified sprain of unspecified foot, subsequent encounter +C2869016|T037|PT|S93.609D|ICD10CM|Unspecified sprain of unspecified foot, subsequent encounter|Unspecified sprain of unspecified foot, subsequent encounter +C2869017|T037|PT|S93.609S|ICD10CM|Unspecified sprain of unspecified foot, sequela|Unspecified sprain of unspecified foot, sequela +C2869017|T037|AB|S93.609S|ICD10CM|Unspecified sprain of unspecified foot, sequela|Unspecified sprain of unspecified foot, sequela +C2869018|T037|AB|S93.61|ICD10CM|Sprain of tarsal ligament of foot|Sprain of tarsal ligament of foot +C2869018|T037|HT|S93.61|ICD10CM|Sprain of tarsal ligament of foot|Sprain of tarsal ligament of foot +C2869019|T037|AB|S93.611|ICD10CM|Sprain of tarsal ligament of right foot|Sprain of tarsal ligament of right foot +C2869019|T037|HT|S93.611|ICD10CM|Sprain of tarsal ligament of right foot|Sprain of tarsal ligament of right foot +C2869020|T037|AB|S93.611A|ICD10CM|Sprain of tarsal ligament of right foot, initial encounter|Sprain of tarsal ligament of right foot, initial encounter +C2869020|T037|PT|S93.611A|ICD10CM|Sprain of tarsal ligament of right foot, initial encounter|Sprain of tarsal ligament of right foot, initial encounter +C2869021|T037|AB|S93.611D|ICD10CM|Sprain of tarsal ligament of right foot, subs encntr|Sprain of tarsal ligament of right foot, subs encntr +C2869021|T037|PT|S93.611D|ICD10CM|Sprain of tarsal ligament of right foot, subsequent encounter|Sprain of tarsal ligament of right foot, subsequent encounter +C2869022|T037|AB|S93.611S|ICD10CM|Sprain of tarsal ligament of right foot, sequela|Sprain of tarsal ligament of right foot, sequela +C2869022|T037|PT|S93.611S|ICD10CM|Sprain of tarsal ligament of right foot, sequela|Sprain of tarsal ligament of right foot, sequela +C2869023|T037|AB|S93.612|ICD10CM|Sprain of tarsal ligament of left foot|Sprain of tarsal ligament of left foot +C2869023|T037|HT|S93.612|ICD10CM|Sprain of tarsal ligament of left foot|Sprain of tarsal ligament of left foot +C2869024|T037|AB|S93.612A|ICD10CM|Sprain of tarsal ligament of left foot, initial encounter|Sprain of tarsal ligament of left foot, initial encounter +C2869024|T037|PT|S93.612A|ICD10CM|Sprain of tarsal ligament of left foot, initial encounter|Sprain of tarsal ligament of left foot, initial encounter +C2869025|T037|AB|S93.612D|ICD10CM|Sprain of tarsal ligament of left foot, subsequent encounter|Sprain of tarsal ligament of left foot, subsequent encounter +C2869025|T037|PT|S93.612D|ICD10CM|Sprain of tarsal ligament of left foot, subsequent encounter|Sprain of tarsal ligament of left foot, subsequent encounter +C2869026|T037|AB|S93.612S|ICD10CM|Sprain of tarsal ligament of left foot, sequela|Sprain of tarsal ligament of left foot, sequela +C2869026|T037|PT|S93.612S|ICD10CM|Sprain of tarsal ligament of left foot, sequela|Sprain of tarsal ligament of left foot, sequela +C2869027|T037|AB|S93.619|ICD10CM|Sprain of tarsal ligament of unspecified foot|Sprain of tarsal ligament of unspecified foot +C2869027|T037|HT|S93.619|ICD10CM|Sprain of tarsal ligament of unspecified foot|Sprain of tarsal ligament of unspecified foot +C2869028|T037|AB|S93.619A|ICD10CM|Sprain of tarsal ligament of unspecified foot, init encntr|Sprain of tarsal ligament of unspecified foot, init encntr +C2869028|T037|PT|S93.619A|ICD10CM|Sprain of tarsal ligament of unspecified foot, initial encounter|Sprain of tarsal ligament of unspecified foot, initial encounter +C2869029|T037|AB|S93.619D|ICD10CM|Sprain of tarsal ligament of unspecified foot, subs encntr|Sprain of tarsal ligament of unspecified foot, subs encntr +C2869029|T037|PT|S93.619D|ICD10CM|Sprain of tarsal ligament of unspecified foot, subsequent encounter|Sprain of tarsal ligament of unspecified foot, subsequent encounter +C2869030|T037|AB|S93.619S|ICD10CM|Sprain of tarsal ligament of unspecified foot, sequela|Sprain of tarsal ligament of unspecified foot, sequela +C2869030|T037|PT|S93.619S|ICD10CM|Sprain of tarsal ligament of unspecified foot, sequela|Sprain of tarsal ligament of unspecified foot, sequela +C2869031|T037|AB|S93.62|ICD10CM|Sprain of tarsometatarsal ligament of foot|Sprain of tarsometatarsal ligament of foot +C2869031|T037|HT|S93.62|ICD10CM|Sprain of tarsometatarsal ligament of foot|Sprain of tarsometatarsal ligament of foot +C2869032|T037|AB|S93.621|ICD10CM|Sprain of tarsometatarsal ligament of right foot|Sprain of tarsometatarsal ligament of right foot +C2869032|T037|HT|S93.621|ICD10CM|Sprain of tarsometatarsal ligament of right foot|Sprain of tarsometatarsal ligament of right foot +C2869033|T037|AB|S93.621A|ICD10CM|Sprain of tarsometatarsal ligament of right foot, init|Sprain of tarsometatarsal ligament of right foot, init +C2869033|T037|PT|S93.621A|ICD10CM|Sprain of tarsometatarsal ligament of right foot, initial encounter|Sprain of tarsometatarsal ligament of right foot, initial encounter +C2869034|T037|AB|S93.621D|ICD10CM|Sprain of tarsometatarsal ligament of right foot, subs|Sprain of tarsometatarsal ligament of right foot, subs +C2869034|T037|PT|S93.621D|ICD10CM|Sprain of tarsometatarsal ligament of right foot, subsequent encounter|Sprain of tarsometatarsal ligament of right foot, subsequent encounter +C2869035|T037|AB|S93.621S|ICD10CM|Sprain of tarsometatarsal ligament of right foot, sequela|Sprain of tarsometatarsal ligament of right foot, sequela +C2869035|T037|PT|S93.621S|ICD10CM|Sprain of tarsometatarsal ligament of right foot, sequela|Sprain of tarsometatarsal ligament of right foot, sequela +C2869036|T037|AB|S93.622|ICD10CM|Sprain of tarsometatarsal ligament of left foot|Sprain of tarsometatarsal ligament of left foot +C2869036|T037|HT|S93.622|ICD10CM|Sprain of tarsometatarsal ligament of left foot|Sprain of tarsometatarsal ligament of left foot +C2869037|T037|AB|S93.622A|ICD10CM|Sprain of tarsometatarsal ligament of left foot, init encntr|Sprain of tarsometatarsal ligament of left foot, init encntr +C2869037|T037|PT|S93.622A|ICD10CM|Sprain of tarsometatarsal ligament of left foot, initial encounter|Sprain of tarsometatarsal ligament of left foot, initial encounter +C2869038|T037|AB|S93.622D|ICD10CM|Sprain of tarsometatarsal ligament of left foot, subs encntr|Sprain of tarsometatarsal ligament of left foot, subs encntr +C2869038|T037|PT|S93.622D|ICD10CM|Sprain of tarsometatarsal ligament of left foot, subsequent encounter|Sprain of tarsometatarsal ligament of left foot, subsequent encounter +C2869039|T037|AB|S93.622S|ICD10CM|Sprain of tarsometatarsal ligament of left foot, sequela|Sprain of tarsometatarsal ligament of left foot, sequela +C2869039|T037|PT|S93.622S|ICD10CM|Sprain of tarsometatarsal ligament of left foot, sequela|Sprain of tarsometatarsal ligament of left foot, sequela +C2869040|T037|AB|S93.629|ICD10CM|Sprain of tarsometatarsal ligament of unspecified foot|Sprain of tarsometatarsal ligament of unspecified foot +C2869040|T037|HT|S93.629|ICD10CM|Sprain of tarsometatarsal ligament of unspecified foot|Sprain of tarsometatarsal ligament of unspecified foot +C2869041|T037|AB|S93.629A|ICD10CM|Sprain of tarsometatarsal ligament of unsp foot, init encntr|Sprain of tarsometatarsal ligament of unsp foot, init encntr +C2869041|T037|PT|S93.629A|ICD10CM|Sprain of tarsometatarsal ligament of unspecified foot, initial encounter|Sprain of tarsometatarsal ligament of unspecified foot, initial encounter +C2869042|T037|AB|S93.629D|ICD10CM|Sprain of tarsometatarsal ligament of unsp foot, subs encntr|Sprain of tarsometatarsal ligament of unsp foot, subs encntr +C2869042|T037|PT|S93.629D|ICD10CM|Sprain of tarsometatarsal ligament of unspecified foot, subsequent encounter|Sprain of tarsometatarsal ligament of unspecified foot, subsequent encounter +C2869043|T037|AB|S93.629S|ICD10CM|Sprain of tarsometatarsal ligament of unsp foot, sequela|Sprain of tarsometatarsal ligament of unsp foot, sequela +C2869043|T037|PT|S93.629S|ICD10CM|Sprain of tarsometatarsal ligament of unspecified foot, sequela|Sprain of tarsometatarsal ligament of unspecified foot, sequela +C0160098|T037|HT|S93.69|ICD10CM|Other sprain of foot|Other sprain of foot +C0160098|T037|AB|S93.69|ICD10CM|Other sprain of foot|Other sprain of foot +C2869044|T037|AB|S93.691|ICD10CM|Other sprain of right foot|Other sprain of right foot +C2869044|T037|HT|S93.691|ICD10CM|Other sprain of right foot|Other sprain of right foot +C2869045|T037|PT|S93.691A|ICD10CM|Other sprain of right foot, initial encounter|Other sprain of right foot, initial encounter +C2869045|T037|AB|S93.691A|ICD10CM|Other sprain of right foot, initial encounter|Other sprain of right foot, initial encounter +C2869046|T037|PT|S93.691D|ICD10CM|Other sprain of right foot, subsequent encounter|Other sprain of right foot, subsequent encounter +C2869046|T037|AB|S93.691D|ICD10CM|Other sprain of right foot, subsequent encounter|Other sprain of right foot, subsequent encounter +C2869047|T037|PT|S93.691S|ICD10CM|Other sprain of right foot, sequela|Other sprain of right foot, sequela +C2869047|T037|AB|S93.691S|ICD10CM|Other sprain of right foot, sequela|Other sprain of right foot, sequela +C2869048|T037|AB|S93.692|ICD10CM|Other sprain of left foot|Other sprain of left foot +C2869048|T037|HT|S93.692|ICD10CM|Other sprain of left foot|Other sprain of left foot +C2869049|T037|PT|S93.692A|ICD10CM|Other sprain of left foot, initial encounter|Other sprain of left foot, initial encounter +C2869049|T037|AB|S93.692A|ICD10CM|Other sprain of left foot, initial encounter|Other sprain of left foot, initial encounter +C2869050|T037|PT|S93.692D|ICD10CM|Other sprain of left foot, subsequent encounter|Other sprain of left foot, subsequent encounter +C2869050|T037|AB|S93.692D|ICD10CM|Other sprain of left foot, subsequent encounter|Other sprain of left foot, subsequent encounter +C2869051|T037|PT|S93.692S|ICD10CM|Other sprain of left foot, sequela|Other sprain of left foot, sequela +C2869051|T037|AB|S93.692S|ICD10CM|Other sprain of left foot, sequela|Other sprain of left foot, sequela +C2869052|T037|AB|S93.699|ICD10CM|Other sprain of unspecified foot|Other sprain of unspecified foot +C2869052|T037|HT|S93.699|ICD10CM|Other sprain of unspecified foot|Other sprain of unspecified foot +C2869053|T037|PT|S93.699A|ICD10CM|Other sprain of unspecified foot, initial encounter|Other sprain of unspecified foot, initial encounter +C2869053|T037|AB|S93.699A|ICD10CM|Other sprain of unspecified foot, initial encounter|Other sprain of unspecified foot, initial encounter +C2869054|T037|AB|S93.699D|ICD10CM|Other sprain of unspecified foot, subsequent encounter|Other sprain of unspecified foot, subsequent encounter +C2869054|T037|PT|S93.699D|ICD10CM|Other sprain of unspecified foot, subsequent encounter|Other sprain of unspecified foot, subsequent encounter +C2869055|T037|PT|S93.699S|ICD10CM|Other sprain of unspecified foot, sequela|Other sprain of unspecified foot, sequela +C2869055|T037|AB|S93.699S|ICD10CM|Other sprain of unspecified foot, sequela|Other sprain of unspecified foot, sequela +C0495972|T037|HT|S94|ICD10CM|Injury of nerves at ankle and foot level|Injury of nerves at ankle and foot level +C0495972|T037|AB|S94|ICD10CM|Injury of nerves at ankle and foot level|Injury of nerves at ankle and foot level +C0495972|T037|HT|S94|ICD10|Injury of nerves at ankle and foot level|Injury of nerves at ankle and foot level +C0451660|T037|PT|S94.0|ICD10|Injury of lateral plantar nerve|Injury of lateral plantar nerve +C0451660|T037|HT|S94.0|ICD10CM|Injury of lateral plantar nerve|Injury of lateral plantar nerve +C0451660|T037|AB|S94.0|ICD10CM|Injury of lateral plantar nerve|Injury of lateral plantar nerve +C2869056|T037|AB|S94.00|ICD10CM|Injury of lateral plantar nerve, unspecified leg|Injury of lateral plantar nerve, unspecified leg +C2869056|T037|HT|S94.00|ICD10CM|Injury of lateral plantar nerve, unspecified leg|Injury of lateral plantar nerve, unspecified leg +C2869057|T037|AB|S94.00XA|ICD10CM|Injury of lateral plantar nerve, unsp leg, init encntr|Injury of lateral plantar nerve, unsp leg, init encntr +C2869057|T037|PT|S94.00XA|ICD10CM|Injury of lateral plantar nerve, unspecified leg, initial encounter|Injury of lateral plantar nerve, unspecified leg, initial encounter +C2869058|T037|AB|S94.00XD|ICD10CM|Injury of lateral plantar nerve, unsp leg, subs encntr|Injury of lateral plantar nerve, unsp leg, subs encntr +C2869058|T037|PT|S94.00XD|ICD10CM|Injury of lateral plantar nerve, unspecified leg, subsequent encounter|Injury of lateral plantar nerve, unspecified leg, subsequent encounter +C2869059|T037|AB|S94.00XS|ICD10CM|Injury of lateral plantar nerve, unspecified leg, sequela|Injury of lateral plantar nerve, unspecified leg, sequela +C2869059|T037|PT|S94.00XS|ICD10CM|Injury of lateral plantar nerve, unspecified leg, sequela|Injury of lateral plantar nerve, unspecified leg, sequela +C2869060|T037|AB|S94.01|ICD10CM|Injury of lateral plantar nerve, right leg|Injury of lateral plantar nerve, right leg +C2869060|T037|HT|S94.01|ICD10CM|Injury of lateral plantar nerve, right leg|Injury of lateral plantar nerve, right leg +C2869061|T037|AB|S94.01XA|ICD10CM|Injury of lateral plantar nerve, right leg, init encntr|Injury of lateral plantar nerve, right leg, init encntr +C2869061|T037|PT|S94.01XA|ICD10CM|Injury of lateral plantar nerve, right leg, initial encounter|Injury of lateral plantar nerve, right leg, initial encounter +C2869062|T037|AB|S94.01XD|ICD10CM|Injury of lateral plantar nerve, right leg, subs encntr|Injury of lateral plantar nerve, right leg, subs encntr +C2869062|T037|PT|S94.01XD|ICD10CM|Injury of lateral plantar nerve, right leg, subsequent encounter|Injury of lateral plantar nerve, right leg, subsequent encounter +C2869063|T037|AB|S94.01XS|ICD10CM|Injury of lateral plantar nerve, right leg, sequela|Injury of lateral plantar nerve, right leg, sequela +C2869063|T037|PT|S94.01XS|ICD10CM|Injury of lateral plantar nerve, right leg, sequela|Injury of lateral plantar nerve, right leg, sequela +C2869064|T037|AB|S94.02|ICD10CM|Injury of lateral plantar nerve, left leg|Injury of lateral plantar nerve, left leg +C2869064|T037|HT|S94.02|ICD10CM|Injury of lateral plantar nerve, left leg|Injury of lateral plantar nerve, left leg +C2869065|T037|AB|S94.02XA|ICD10CM|Injury of lateral plantar nerve, left leg, initial encounter|Injury of lateral plantar nerve, left leg, initial encounter +C2869065|T037|PT|S94.02XA|ICD10CM|Injury of lateral plantar nerve, left leg, initial encounter|Injury of lateral plantar nerve, left leg, initial encounter +C2869066|T037|AB|S94.02XD|ICD10CM|Injury of lateral plantar nerve, left leg, subs encntr|Injury of lateral plantar nerve, left leg, subs encntr +C2869066|T037|PT|S94.02XD|ICD10CM|Injury of lateral plantar nerve, left leg, subsequent encounter|Injury of lateral plantar nerve, left leg, subsequent encounter +C2869067|T037|AB|S94.02XS|ICD10CM|Injury of lateral plantar nerve, left leg, sequela|Injury of lateral plantar nerve, left leg, sequela +C2869067|T037|PT|S94.02XS|ICD10CM|Injury of lateral plantar nerve, left leg, sequela|Injury of lateral plantar nerve, left leg, sequela +C0451661|T037|HT|S94.1|ICD10CM|Injury of medial plantar nerve|Injury of medial plantar nerve +C0451661|T037|AB|S94.1|ICD10CM|Injury of medial plantar nerve|Injury of medial plantar nerve +C0451661|T037|PT|S94.1|ICD10|Injury of medial plantar nerve|Injury of medial plantar nerve +C2869068|T037|AB|S94.10|ICD10CM|Injury of medial plantar nerve, unspecified leg|Injury of medial plantar nerve, unspecified leg +C2869068|T037|HT|S94.10|ICD10CM|Injury of medial plantar nerve, unspecified leg|Injury of medial plantar nerve, unspecified leg +C2869069|T037|AB|S94.10XA|ICD10CM|Injury of medial plantar nerve, unspecified leg, init encntr|Injury of medial plantar nerve, unspecified leg, init encntr +C2869069|T037|PT|S94.10XA|ICD10CM|Injury of medial plantar nerve, unspecified leg, initial encounter|Injury of medial plantar nerve, unspecified leg, initial encounter +C2869070|T037|AB|S94.10XD|ICD10CM|Injury of medial plantar nerve, unspecified leg, subs encntr|Injury of medial plantar nerve, unspecified leg, subs encntr +C2869070|T037|PT|S94.10XD|ICD10CM|Injury of medial plantar nerve, unspecified leg, subsequent encounter|Injury of medial plantar nerve, unspecified leg, subsequent encounter +C2869071|T037|AB|S94.10XS|ICD10CM|Injury of medial plantar nerve, unspecified leg, sequela|Injury of medial plantar nerve, unspecified leg, sequela +C2869071|T037|PT|S94.10XS|ICD10CM|Injury of medial plantar nerve, unspecified leg, sequela|Injury of medial plantar nerve, unspecified leg, sequela +C2869072|T037|AB|S94.11|ICD10CM|Injury of medial plantar nerve, right leg|Injury of medial plantar nerve, right leg +C2869072|T037|HT|S94.11|ICD10CM|Injury of medial plantar nerve, right leg|Injury of medial plantar nerve, right leg +C2869073|T037|AB|S94.11XA|ICD10CM|Injury of medial plantar nerve, right leg, initial encounter|Injury of medial plantar nerve, right leg, initial encounter +C2869073|T037|PT|S94.11XA|ICD10CM|Injury of medial plantar nerve, right leg, initial encounter|Injury of medial plantar nerve, right leg, initial encounter +C2869074|T037|AB|S94.11XD|ICD10CM|Injury of medial plantar nerve, right leg, subs encntr|Injury of medial plantar nerve, right leg, subs encntr +C2869074|T037|PT|S94.11XD|ICD10CM|Injury of medial plantar nerve, right leg, subsequent encounter|Injury of medial plantar nerve, right leg, subsequent encounter +C2869075|T037|AB|S94.11XS|ICD10CM|Injury of medial plantar nerve, right leg, sequela|Injury of medial plantar nerve, right leg, sequela +C2869075|T037|PT|S94.11XS|ICD10CM|Injury of medial plantar nerve, right leg, sequela|Injury of medial plantar nerve, right leg, sequela +C2869076|T037|AB|S94.12|ICD10CM|Injury of medial plantar nerve, left leg|Injury of medial plantar nerve, left leg +C2869076|T037|HT|S94.12|ICD10CM|Injury of medial plantar nerve, left leg|Injury of medial plantar nerve, left leg +C2869077|T037|AB|S94.12XA|ICD10CM|Injury of medial plantar nerve, left leg, initial encounter|Injury of medial plantar nerve, left leg, initial encounter +C2869077|T037|PT|S94.12XA|ICD10CM|Injury of medial plantar nerve, left leg, initial encounter|Injury of medial plantar nerve, left leg, initial encounter +C2869078|T037|AB|S94.12XD|ICD10CM|Injury of medial plantar nerve, left leg, subs encntr|Injury of medial plantar nerve, left leg, subs encntr +C2869078|T037|PT|S94.12XD|ICD10CM|Injury of medial plantar nerve, left leg, subsequent encounter|Injury of medial plantar nerve, left leg, subsequent encounter +C2869079|T037|AB|S94.12XS|ICD10CM|Injury of medial plantar nerve, left leg, sequela|Injury of medial plantar nerve, left leg, sequela +C2869079|T037|PT|S94.12XS|ICD10CM|Injury of medial plantar nerve, left leg, sequela|Injury of medial plantar nerve, left leg, sequela +C0495971|T037|PT|S94.2|ICD10|Injury of deep peroneal nerve at ankle and foot level|Injury of deep peroneal nerve at ankle and foot level +C0495971|T037|HT|S94.2|ICD10CM|Injury of deep peroneal nerve at ankle and foot level|Injury of deep peroneal nerve at ankle and foot level +C0495971|T037|AB|S94.2|ICD10CM|Injury of deep peroneal nerve at ankle and foot level|Injury of deep peroneal nerve at ankle and foot level +C2869080|T037|ET|S94.2|ICD10CM|Injury of terminal, lateral branch of deep peroneal nerve|Injury of terminal, lateral branch of deep peroneal nerve +C2869081|T037|AB|S94.20|ICD10CM|Injury of deep peroneal nerve at ank/ft level, unsp leg|Injury of deep peroneal nerve at ank/ft level, unsp leg +C2869081|T037|HT|S94.20|ICD10CM|Injury of deep peroneal nerve at ankle and foot level, unspecified leg|Injury of deep peroneal nerve at ankle and foot level, unspecified leg +C2869082|T037|PT|S94.20XA|ICD10CM|Injury of deep peroneal nerve at ankle and foot level, unspecified leg, initial encounter|Injury of deep peroneal nerve at ankle and foot level, unspecified leg, initial encounter +C2869082|T037|AB|S94.20XA|ICD10CM|Injury of deep peroneal nrv at ank/ft level, unsp leg, init|Injury of deep peroneal nrv at ank/ft level, unsp leg, init +C2869083|T037|PT|S94.20XD|ICD10CM|Injury of deep peroneal nerve at ankle and foot level, unspecified leg, subsequent encounter|Injury of deep peroneal nerve at ankle and foot level, unspecified leg, subsequent encounter +C2869083|T037|AB|S94.20XD|ICD10CM|Injury of deep peroneal nrv at ank/ft level, unsp leg, subs|Injury of deep peroneal nrv at ank/ft level, unsp leg, subs +C2869084|T037|AB|S94.20XS|ICD10CM|Inj deep peroneal nrv at ank/ft level, unsp leg, sequela|Inj deep peroneal nrv at ank/ft level, unsp leg, sequela +C2869084|T037|PT|S94.20XS|ICD10CM|Injury of deep peroneal nerve at ankle and foot level, unspecified leg, sequela|Injury of deep peroneal nerve at ankle and foot level, unspecified leg, sequela +C2869085|T037|AB|S94.21|ICD10CM|Injury of deep peroneal nerve at ank/ft level, right leg|Injury of deep peroneal nerve at ank/ft level, right leg +C2869085|T037|HT|S94.21|ICD10CM|Injury of deep peroneal nerve at ankle and foot level, right leg|Injury of deep peroneal nerve at ankle and foot level, right leg +C2869086|T037|PT|S94.21XA|ICD10CM|Injury of deep peroneal nerve at ankle and foot level, right leg, initial encounter|Injury of deep peroneal nerve at ankle and foot level, right leg, initial encounter +C2869086|T037|AB|S94.21XA|ICD10CM|Injury of deep peroneal nrv at ank/ft level, right leg, init|Injury of deep peroneal nrv at ank/ft level, right leg, init +C2869087|T037|PT|S94.21XD|ICD10CM|Injury of deep peroneal nerve at ankle and foot level, right leg, subsequent encounter|Injury of deep peroneal nerve at ankle and foot level, right leg, subsequent encounter +C2869087|T037|AB|S94.21XD|ICD10CM|Injury of deep peroneal nrv at ank/ft level, right leg, subs|Injury of deep peroneal nrv at ank/ft level, right leg, subs +C2869088|T037|AB|S94.21XS|ICD10CM|Inj deep peroneal nrv at ank/ft level, right leg, sequela|Inj deep peroneal nrv at ank/ft level, right leg, sequela +C2869088|T037|PT|S94.21XS|ICD10CM|Injury of deep peroneal nerve at ankle and foot level, right leg, sequela|Injury of deep peroneal nerve at ankle and foot level, right leg, sequela +C2869089|T037|AB|S94.22|ICD10CM|Injury of deep peroneal nerve at ank/ft level, left leg|Injury of deep peroneal nerve at ank/ft level, left leg +C2869089|T037|HT|S94.22|ICD10CM|Injury of deep peroneal nerve at ankle and foot level, left leg|Injury of deep peroneal nerve at ankle and foot level, left leg +C2869090|T037|PT|S94.22XA|ICD10CM|Injury of deep peroneal nerve at ankle and foot level, left leg, initial encounter|Injury of deep peroneal nerve at ankle and foot level, left leg, initial encounter +C2869090|T037|AB|S94.22XA|ICD10CM|Injury of deep peroneal nrv at ank/ft level, left leg, init|Injury of deep peroneal nrv at ank/ft level, left leg, init +C2869091|T037|PT|S94.22XD|ICD10CM|Injury of deep peroneal nerve at ankle and foot level, left leg, subsequent encounter|Injury of deep peroneal nerve at ankle and foot level, left leg, subsequent encounter +C2869091|T037|AB|S94.22XD|ICD10CM|Injury of deep peroneal nrv at ank/ft level, left leg, subs|Injury of deep peroneal nrv at ank/ft level, left leg, subs +C2869092|T037|AB|S94.22XS|ICD10CM|Inj deep peroneal nrv at ank/ft level, left leg, sequela|Inj deep peroneal nrv at ank/ft level, left leg, sequela +C2869092|T037|PT|S94.22XS|ICD10CM|Injury of deep peroneal nerve at ankle and foot level, left leg, sequela|Injury of deep peroneal nerve at ankle and foot level, left leg, sequela +C0451654|T037|PT|S94.3|ICD10|Injury of cutaneous sensory nerve at ankle and foot level|Injury of cutaneous sensory nerve at ankle and foot level +C0451654|T037|HT|S94.3|ICD10CM|Injury of cutaneous sensory nerve at ankle and foot level|Injury of cutaneous sensory nerve at ankle and foot level +C0451654|T037|AB|S94.3|ICD10CM|Injury of cutaneous sensory nerve at ankle and foot level|Injury of cutaneous sensory nerve at ankle and foot level +C2869093|T037|AB|S94.30|ICD10CM|Injury of cutaneous sensory nerve at ank/ft level, unsp leg|Injury of cutaneous sensory nerve at ank/ft level, unsp leg +C2869093|T037|HT|S94.30|ICD10CM|Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg|Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg +C2869094|T037|AB|S94.30XA|ICD10CM|Inj cutan sensory nerve at ank/ft level, unsp leg, init|Inj cutan sensory nerve at ank/ft level, unsp leg, init +C2869094|T037|PT|S94.30XA|ICD10CM|Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg, initial encounter|Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg, initial encounter +C2869095|T037|AB|S94.30XD|ICD10CM|Inj cutan sensory nerve at ank/ft level, unsp leg, subs|Inj cutan sensory nerve at ank/ft level, unsp leg, subs +C2869095|T037|PT|S94.30XD|ICD10CM|Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg, subsequent encounter|Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg, subsequent encounter +C2869096|T037|AB|S94.30XS|ICD10CM|Inj cutan sensory nerve at ank/ft level, unsp leg, sequela|Inj cutan sensory nerve at ank/ft level, unsp leg, sequela +C2869096|T037|PT|S94.30XS|ICD10CM|Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg, sequela|Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg, sequela +C2869097|T037|AB|S94.31|ICD10CM|Injury of cutaneous sensory nerve at ank/ft level, right leg|Injury of cutaneous sensory nerve at ank/ft level, right leg +C2869097|T037|HT|S94.31|ICD10CM|Injury of cutaneous sensory nerve at ankle and foot level, right leg|Injury of cutaneous sensory nerve at ankle and foot level, right leg +C2869098|T037|AB|S94.31XA|ICD10CM|Inj cutan sensory nerve at ank/ft level, right leg, init|Inj cutan sensory nerve at ank/ft level, right leg, init +C2869098|T037|PT|S94.31XA|ICD10CM|Injury of cutaneous sensory nerve at ankle and foot level, right leg, initial encounter|Injury of cutaneous sensory nerve at ankle and foot level, right leg, initial encounter +C2869099|T037|AB|S94.31XD|ICD10CM|Inj cutan sensory nerve at ank/ft level, right leg, subs|Inj cutan sensory nerve at ank/ft level, right leg, subs +C2869099|T037|PT|S94.31XD|ICD10CM|Injury of cutaneous sensory nerve at ankle and foot level, right leg, subsequent encounter|Injury of cutaneous sensory nerve at ankle and foot level, right leg, subsequent encounter +C2869100|T037|AB|S94.31XS|ICD10CM|Inj cutan sensory nerve at ank/ft level, right leg, sequela|Inj cutan sensory nerve at ank/ft level, right leg, sequela +C2869100|T037|PT|S94.31XS|ICD10CM|Injury of cutaneous sensory nerve at ankle and foot level, right leg, sequela|Injury of cutaneous sensory nerve at ankle and foot level, right leg, sequela +C2869101|T037|AB|S94.32|ICD10CM|Injury of cutaneous sensory nerve at ank/ft level, left leg|Injury of cutaneous sensory nerve at ank/ft level, left leg +C2869101|T037|HT|S94.32|ICD10CM|Injury of cutaneous sensory nerve at ankle and foot level, left leg|Injury of cutaneous sensory nerve at ankle and foot level, left leg +C2869102|T037|AB|S94.32XA|ICD10CM|Inj cutan sensory nerve at ank/ft level, left leg, init|Inj cutan sensory nerve at ank/ft level, left leg, init +C2869102|T037|PT|S94.32XA|ICD10CM|Injury of cutaneous sensory nerve at ankle and foot level, left leg, initial encounter|Injury of cutaneous sensory nerve at ankle and foot level, left leg, initial encounter +C2869103|T037|AB|S94.32XD|ICD10CM|Inj cutan sensory nerve at ank/ft level, left leg, subs|Inj cutan sensory nerve at ank/ft level, left leg, subs +C2869103|T037|PT|S94.32XD|ICD10CM|Injury of cutaneous sensory nerve at ankle and foot level, left leg, subsequent encounter|Injury of cutaneous sensory nerve at ankle and foot level, left leg, subsequent encounter +C2869104|T037|AB|S94.32XS|ICD10CM|Inj cutan sensory nerve at ank/ft level, left leg, sequela|Inj cutan sensory nerve at ank/ft level, left leg, sequela +C2869104|T037|PT|S94.32XS|ICD10CM|Injury of cutaneous sensory nerve at ankle and foot level, left leg, sequela|Injury of cutaneous sensory nerve at ankle and foot level, left leg, sequela +C0451655|T037|PT|S94.7|ICD10|Injury of multiple nerves at ankle and foot level|Injury of multiple nerves at ankle and foot level +C0478355|T037|PT|S94.8|ICD10|Injury of other nerves at ankle and foot level|Injury of other nerves at ankle and foot level +C0478355|T037|HT|S94.8|ICD10CM|Injury of other nerves at ankle and foot level|Injury of other nerves at ankle and foot level +C0478355|T037|AB|S94.8|ICD10CM|Injury of other nerves at ankle and foot level|Injury of other nerves at ankle and foot level +C0478355|T037|HT|S94.8X|ICD10CM|Injury of other nerves at ankle and foot level|Injury of other nerves at ankle and foot level +C0478355|T037|AB|S94.8X|ICD10CM|Injury of other nerves at ankle and foot level|Injury of other nerves at ankle and foot level +C2869105|T037|AB|S94.8X1|ICD10CM|Injury of other nerves at ankle and foot level, right leg|Injury of other nerves at ankle and foot level, right leg +C2869105|T037|HT|S94.8X1|ICD10CM|Injury of other nerves at ankle and foot level, right leg|Injury of other nerves at ankle and foot level, right leg +C2869106|T037|AB|S94.8X1A|ICD10CM|Injury of nerves at ankle and foot level, right leg, init|Injury of nerves at ankle and foot level, right leg, init +C2869106|T037|PT|S94.8X1A|ICD10CM|Injury of other nerves at ankle and foot level, right leg, initial encounter|Injury of other nerves at ankle and foot level, right leg, initial encounter +C2869107|T037|AB|S94.8X1D|ICD10CM|Injury of nerves at ankle and foot level, right leg, subs|Injury of nerves at ankle and foot level, right leg, subs +C2869107|T037|PT|S94.8X1D|ICD10CM|Injury of other nerves at ankle and foot level, right leg, subsequent encounter|Injury of other nerves at ankle and foot level, right leg, subsequent encounter +C2869108|T037|AB|S94.8X1S|ICD10CM|Injury of nerves at ankle and foot level, right leg, sequela|Injury of nerves at ankle and foot level, right leg, sequela +C2869108|T037|PT|S94.8X1S|ICD10CM|Injury of other nerves at ankle and foot level, right leg, sequela|Injury of other nerves at ankle and foot level, right leg, sequela +C2869109|T037|AB|S94.8X2|ICD10CM|Injury of other nerves at ankle and foot level, left leg|Injury of other nerves at ankle and foot level, left leg +C2869109|T037|HT|S94.8X2|ICD10CM|Injury of other nerves at ankle and foot level, left leg|Injury of other nerves at ankle and foot level, left leg +C2869110|T037|AB|S94.8X2A|ICD10CM|Injury of oth nerves at ankle and foot level, left leg, init|Injury of oth nerves at ankle and foot level, left leg, init +C2869110|T037|PT|S94.8X2A|ICD10CM|Injury of other nerves at ankle and foot level, left leg, initial encounter|Injury of other nerves at ankle and foot level, left leg, initial encounter +C2869111|T037|AB|S94.8X2D|ICD10CM|Injury of oth nerves at ankle and foot level, left leg, subs|Injury of oth nerves at ankle and foot level, left leg, subs +C2869111|T037|PT|S94.8X2D|ICD10CM|Injury of other nerves at ankle and foot level, left leg, subsequent encounter|Injury of other nerves at ankle and foot level, left leg, subsequent encounter +C2869112|T037|AB|S94.8X2S|ICD10CM|Injury of nerves at ankle and foot level, left leg, sequela|Injury of nerves at ankle and foot level, left leg, sequela +C2869112|T037|PT|S94.8X2S|ICD10CM|Injury of other nerves at ankle and foot level, left leg, sequela|Injury of other nerves at ankle and foot level, left leg, sequela +C2869113|T037|AB|S94.8X9|ICD10CM|Injury of other nerves at ankle and foot level, unsp leg|Injury of other nerves at ankle and foot level, unsp leg +C2869113|T037|HT|S94.8X9|ICD10CM|Injury of other nerves at ankle and foot level, unspecified leg|Injury of other nerves at ankle and foot level, unspecified leg +C2869114|T037|AB|S94.8X9A|ICD10CM|Injury of oth nerves at ankle and foot level, unsp leg, init|Injury of oth nerves at ankle and foot level, unsp leg, init +C2869114|T037|PT|S94.8X9A|ICD10CM|Injury of other nerves at ankle and foot level, unspecified leg, initial encounter|Injury of other nerves at ankle and foot level, unspecified leg, initial encounter +C2869115|T037|AB|S94.8X9D|ICD10CM|Injury of oth nerves at ankle and foot level, unsp leg, subs|Injury of oth nerves at ankle and foot level, unsp leg, subs +C2869115|T037|PT|S94.8X9D|ICD10CM|Injury of other nerves at ankle and foot level, unspecified leg, subsequent encounter|Injury of other nerves at ankle and foot level, unspecified leg, subsequent encounter +C2869116|T037|AB|S94.8X9S|ICD10CM|Injury of nerves at ankle and foot level, unsp leg, sequela|Injury of nerves at ankle and foot level, unsp leg, sequela +C2869116|T037|PT|S94.8X9S|ICD10CM|Injury of other nerves at ankle and foot level, unspecified leg, sequela|Injury of other nerves at ankle and foot level, unspecified leg, sequela +C0495972|T037|PT|S94.9|ICD10|Injury of unspecified nerve at ankle and foot level|Injury of unspecified nerve at ankle and foot level +C0495972|T037|HT|S94.9|ICD10CM|Injury of unspecified nerve at ankle and foot level|Injury of unspecified nerve at ankle and foot level +C0495972|T037|AB|S94.9|ICD10CM|Injury of unspecified nerve at ankle and foot level|Injury of unspecified nerve at ankle and foot level +C2869117|T037|AB|S94.90|ICD10CM|Injury of unsp nerve at ankle and foot level, unsp leg|Injury of unsp nerve at ankle and foot level, unsp leg +C2869117|T037|HT|S94.90|ICD10CM|Injury of unspecified nerve at ankle and foot level, unspecified leg|Injury of unspecified nerve at ankle and foot level, unspecified leg +C2869118|T037|AB|S94.90XA|ICD10CM|Injury of unsp nerve at ankle and foot level, unsp leg, init|Injury of unsp nerve at ankle and foot level, unsp leg, init +C2869118|T037|PT|S94.90XA|ICD10CM|Injury of unspecified nerve at ankle and foot level, unspecified leg, initial encounter|Injury of unspecified nerve at ankle and foot level, unspecified leg, initial encounter +C2869119|T037|AB|S94.90XD|ICD10CM|Injury of unsp nerve at ankle and foot level, unsp leg, subs|Injury of unsp nerve at ankle and foot level, unsp leg, subs +C2869119|T037|PT|S94.90XD|ICD10CM|Injury of unspecified nerve at ankle and foot level, unspecified leg, subsequent encounter|Injury of unspecified nerve at ankle and foot level, unspecified leg, subsequent encounter +C2869120|T037|AB|S94.90XS|ICD10CM|Injury of unsp nerve at ank/ft level, unsp leg, sequela|Injury of unsp nerve at ank/ft level, unsp leg, sequela +C2869120|T037|PT|S94.90XS|ICD10CM|Injury of unspecified nerve at ankle and foot level, unspecified leg, sequela|Injury of unspecified nerve at ankle and foot level, unspecified leg, sequela +C2869121|T037|AB|S94.91|ICD10CM|Injury of unsp nerve at ankle and foot level, right leg|Injury of unsp nerve at ankle and foot level, right leg +C2869121|T037|HT|S94.91|ICD10CM|Injury of unspecified nerve at ankle and foot level, right leg|Injury of unspecified nerve at ankle and foot level, right leg +C2869122|T037|AB|S94.91XA|ICD10CM|Injury of unsp nerve at ank/ft level, right leg, init|Injury of unsp nerve at ank/ft level, right leg, init +C2869122|T037|PT|S94.91XA|ICD10CM|Injury of unspecified nerve at ankle and foot level, right leg, initial encounter|Injury of unspecified nerve at ankle and foot level, right leg, initial encounter +C2869123|T037|AB|S94.91XD|ICD10CM|Injury of unsp nerve at ank/ft level, right leg, subs|Injury of unsp nerve at ank/ft level, right leg, subs +C2869123|T037|PT|S94.91XD|ICD10CM|Injury of unspecified nerve at ankle and foot level, right leg, subsequent encounter|Injury of unspecified nerve at ankle and foot level, right leg, subsequent encounter +C2869124|T037|AB|S94.91XS|ICD10CM|Injury of unsp nerve at ank/ft level, right leg, sequela|Injury of unsp nerve at ank/ft level, right leg, sequela +C2869124|T037|PT|S94.91XS|ICD10CM|Injury of unspecified nerve at ankle and foot level, right leg, sequela|Injury of unspecified nerve at ankle and foot level, right leg, sequela +C2869125|T037|AB|S94.92|ICD10CM|Injury of unsp nerve at ankle and foot level, left leg|Injury of unsp nerve at ankle and foot level, left leg +C2869125|T037|HT|S94.92|ICD10CM|Injury of unspecified nerve at ankle and foot level, left leg|Injury of unspecified nerve at ankle and foot level, left leg +C2869126|T037|AB|S94.92XA|ICD10CM|Injury of unsp nerve at ankle and foot level, left leg, init|Injury of unsp nerve at ankle and foot level, left leg, init +C2869126|T037|PT|S94.92XA|ICD10CM|Injury of unspecified nerve at ankle and foot level, left leg, initial encounter|Injury of unspecified nerve at ankle and foot level, left leg, initial encounter +C2869127|T037|AB|S94.92XD|ICD10CM|Injury of unsp nerve at ankle and foot level, left leg, subs|Injury of unsp nerve at ankle and foot level, left leg, subs +C2869127|T037|PT|S94.92XD|ICD10CM|Injury of unspecified nerve at ankle and foot level, left leg, subsequent encounter|Injury of unspecified nerve at ankle and foot level, left leg, subsequent encounter +C2869128|T037|AB|S94.92XS|ICD10CM|Injury of unsp nerve at ank/ft level, left leg, sequela|Injury of unsp nerve at ank/ft level, left leg, sequela +C2869128|T037|PT|S94.92XS|ICD10CM|Injury of unspecified nerve at ankle and foot level, left leg, sequela|Injury of unspecified nerve at ankle and foot level, left leg, sequela +C0452071|T037|HT|S95|ICD10|Injury of blood vessels at ankle and foot level|Injury of blood vessels at ankle and foot level +C0452071|T037|HT|S95|ICD10CM|Injury of blood vessels at ankle and foot level|Injury of blood vessels at ankle and foot level +C0452071|T037|AB|S95|ICD10CM|Injury of blood vessels at ankle and foot level|Injury of blood vessels at ankle and foot level +C0495973|T037|PT|S95.0|ICD10|Injury of dorsal artery of foot|Injury of dorsal artery of foot +C0495973|T037|HT|S95.0|ICD10CM|Injury of dorsal artery of foot|Injury of dorsal artery of foot +C0495973|T037|AB|S95.0|ICD10CM|Injury of dorsal artery of foot|Injury of dorsal artery of foot +C2869129|T037|AB|S95.00|ICD10CM|Unspecified injury of dorsal artery of foot|Unspecified injury of dorsal artery of foot +C2869129|T037|HT|S95.00|ICD10CM|Unspecified injury of dorsal artery of foot|Unspecified injury of dorsal artery of foot +C2869130|T037|AB|S95.001|ICD10CM|Unspecified injury of dorsal artery of right foot|Unspecified injury of dorsal artery of right foot +C2869130|T037|HT|S95.001|ICD10CM|Unspecified injury of dorsal artery of right foot|Unspecified injury of dorsal artery of right foot +C2869131|T037|AB|S95.001A|ICD10CM|Unsp injury of dorsal artery of right foot, init encntr|Unsp injury of dorsal artery of right foot, init encntr +C2869131|T037|PT|S95.001A|ICD10CM|Unspecified injury of dorsal artery of right foot, initial encounter|Unspecified injury of dorsal artery of right foot, initial encounter +C2869132|T037|AB|S95.001D|ICD10CM|Unsp injury of dorsal artery of right foot, subs encntr|Unsp injury of dorsal artery of right foot, subs encntr +C2869132|T037|PT|S95.001D|ICD10CM|Unspecified injury of dorsal artery of right foot, subsequent encounter|Unspecified injury of dorsal artery of right foot, subsequent encounter +C2869133|T037|AB|S95.001S|ICD10CM|Unspecified injury of dorsal artery of right foot, sequela|Unspecified injury of dorsal artery of right foot, sequela +C2869133|T037|PT|S95.001S|ICD10CM|Unspecified injury of dorsal artery of right foot, sequela|Unspecified injury of dorsal artery of right foot, sequela +C2869134|T037|AB|S95.002|ICD10CM|Unspecified injury of dorsal artery of left foot|Unspecified injury of dorsal artery of left foot +C2869134|T037|HT|S95.002|ICD10CM|Unspecified injury of dorsal artery of left foot|Unspecified injury of dorsal artery of left foot +C2869135|T037|AB|S95.002A|ICD10CM|Unsp injury of dorsal artery of left foot, init encntr|Unsp injury of dorsal artery of left foot, init encntr +C2869135|T037|PT|S95.002A|ICD10CM|Unspecified injury of dorsal artery of left foot, initial encounter|Unspecified injury of dorsal artery of left foot, initial encounter +C2869136|T037|AB|S95.002D|ICD10CM|Unsp injury of dorsal artery of left foot, subs encntr|Unsp injury of dorsal artery of left foot, subs encntr +C2869136|T037|PT|S95.002D|ICD10CM|Unspecified injury of dorsal artery of left foot, subsequent encounter|Unspecified injury of dorsal artery of left foot, subsequent encounter +C2869137|T037|AB|S95.002S|ICD10CM|Unspecified injury of dorsal artery of left foot, sequela|Unspecified injury of dorsal artery of left foot, sequela +C2869137|T037|PT|S95.002S|ICD10CM|Unspecified injury of dorsal artery of left foot, sequela|Unspecified injury of dorsal artery of left foot, sequela +C2869138|T037|AB|S95.009|ICD10CM|Unspecified injury of dorsal artery of unspecified foot|Unspecified injury of dorsal artery of unspecified foot +C2869138|T037|HT|S95.009|ICD10CM|Unspecified injury of dorsal artery of unspecified foot|Unspecified injury of dorsal artery of unspecified foot +C2869139|T037|AB|S95.009A|ICD10CM|Unsp injury of dorsal artery of unsp foot, init encntr|Unsp injury of dorsal artery of unsp foot, init encntr +C2869139|T037|PT|S95.009A|ICD10CM|Unspecified injury of dorsal artery of unspecified foot, initial encounter|Unspecified injury of dorsal artery of unspecified foot, initial encounter +C2869140|T037|AB|S95.009D|ICD10CM|Unsp injury of dorsal artery of unsp foot, subs encntr|Unsp injury of dorsal artery of unsp foot, subs encntr +C2869140|T037|PT|S95.009D|ICD10CM|Unspecified injury of dorsal artery of unspecified foot, subsequent encounter|Unspecified injury of dorsal artery of unspecified foot, subsequent encounter +C2869141|T037|AB|S95.009S|ICD10CM|Unsp injury of dorsal artery of unspecified foot, sequela|Unsp injury of dorsal artery of unspecified foot, sequela +C2869141|T037|PT|S95.009S|ICD10CM|Unspecified injury of dorsal artery of unspecified foot, sequela|Unspecified injury of dorsal artery of unspecified foot, sequela +C2869142|T037|HT|S95.01|ICD10CM|Laceration of dorsal artery of foot|Laceration of dorsal artery of foot +C2869142|T037|AB|S95.01|ICD10CM|Laceration of dorsal artery of foot|Laceration of dorsal artery of foot +C2869143|T037|AB|S95.011|ICD10CM|Laceration of dorsal artery of right foot|Laceration of dorsal artery of right foot +C2869143|T037|HT|S95.011|ICD10CM|Laceration of dorsal artery of right foot|Laceration of dorsal artery of right foot +C2869144|T037|AB|S95.011A|ICD10CM|Laceration of dorsal artery of right foot, initial encounter|Laceration of dorsal artery of right foot, initial encounter +C2869144|T037|PT|S95.011A|ICD10CM|Laceration of dorsal artery of right foot, initial encounter|Laceration of dorsal artery of right foot, initial encounter +C2869145|T037|AB|S95.011D|ICD10CM|Laceration of dorsal artery of right foot, subs encntr|Laceration of dorsal artery of right foot, subs encntr +C2869145|T037|PT|S95.011D|ICD10CM|Laceration of dorsal artery of right foot, subsequent encounter|Laceration of dorsal artery of right foot, subsequent encounter +C2869146|T037|AB|S95.011S|ICD10CM|Laceration of dorsal artery of right foot, sequela|Laceration of dorsal artery of right foot, sequela +C2869146|T037|PT|S95.011S|ICD10CM|Laceration of dorsal artery of right foot, sequela|Laceration of dorsal artery of right foot, sequela +C2869147|T037|AB|S95.012|ICD10CM|Laceration of dorsal artery of left foot|Laceration of dorsal artery of left foot +C2869147|T037|HT|S95.012|ICD10CM|Laceration of dorsal artery of left foot|Laceration of dorsal artery of left foot +C2869148|T037|AB|S95.012A|ICD10CM|Laceration of dorsal artery of left foot, initial encounter|Laceration of dorsal artery of left foot, initial encounter +C2869148|T037|PT|S95.012A|ICD10CM|Laceration of dorsal artery of left foot, initial encounter|Laceration of dorsal artery of left foot, initial encounter +C2869149|T037|AB|S95.012D|ICD10CM|Laceration of dorsal artery of left foot, subs encntr|Laceration of dorsal artery of left foot, subs encntr +C2869149|T037|PT|S95.012D|ICD10CM|Laceration of dorsal artery of left foot, subsequent encounter|Laceration of dorsal artery of left foot, subsequent encounter +C2869150|T037|AB|S95.012S|ICD10CM|Laceration of dorsal artery of left foot, sequela|Laceration of dorsal artery of left foot, sequela +C2869150|T037|PT|S95.012S|ICD10CM|Laceration of dorsal artery of left foot, sequela|Laceration of dorsal artery of left foot, sequela +C2869151|T037|AB|S95.019|ICD10CM|Laceration of dorsal artery of unspecified foot|Laceration of dorsal artery of unspecified foot +C2869151|T037|HT|S95.019|ICD10CM|Laceration of dorsal artery of unspecified foot|Laceration of dorsal artery of unspecified foot +C2869152|T037|AB|S95.019A|ICD10CM|Laceration of dorsal artery of unspecified foot, init encntr|Laceration of dorsal artery of unspecified foot, init encntr +C2869152|T037|PT|S95.019A|ICD10CM|Laceration of dorsal artery of unspecified foot, initial encounter|Laceration of dorsal artery of unspecified foot, initial encounter +C2869153|T037|AB|S95.019D|ICD10CM|Laceration of dorsal artery of unspecified foot, subs encntr|Laceration of dorsal artery of unspecified foot, subs encntr +C2869153|T037|PT|S95.019D|ICD10CM|Laceration of dorsal artery of unspecified foot, subsequent encounter|Laceration of dorsal artery of unspecified foot, subsequent encounter +C2869154|T037|AB|S95.019S|ICD10CM|Laceration of dorsal artery of unspecified foot, sequela|Laceration of dorsal artery of unspecified foot, sequela +C2869154|T037|PT|S95.019S|ICD10CM|Laceration of dorsal artery of unspecified foot, sequela|Laceration of dorsal artery of unspecified foot, sequela +C2869155|T037|AB|S95.09|ICD10CM|Other specified injury of dorsal artery of foot|Other specified injury of dorsal artery of foot +C2869155|T037|HT|S95.09|ICD10CM|Other specified injury of dorsal artery of foot|Other specified injury of dorsal artery of foot +C2869156|T037|AB|S95.091|ICD10CM|Other specified injury of dorsal artery of right foot|Other specified injury of dorsal artery of right foot +C2869156|T037|HT|S95.091|ICD10CM|Other specified injury of dorsal artery of right foot|Other specified injury of dorsal artery of right foot +C2869157|T037|AB|S95.091A|ICD10CM|Oth injury of dorsal artery of right foot, init encntr|Oth injury of dorsal artery of right foot, init encntr +C2869157|T037|PT|S95.091A|ICD10CM|Other specified injury of dorsal artery of right foot, initial encounter|Other specified injury of dorsal artery of right foot, initial encounter +C2869158|T037|AB|S95.091D|ICD10CM|Oth injury of dorsal artery of right foot, subs encntr|Oth injury of dorsal artery of right foot, subs encntr +C2869158|T037|PT|S95.091D|ICD10CM|Other specified injury of dorsal artery of right foot, subsequent encounter|Other specified injury of dorsal artery of right foot, subsequent encounter +C2869159|T037|AB|S95.091S|ICD10CM|Oth injury of dorsal artery of right foot, sequela|Oth injury of dorsal artery of right foot, sequela +C2869159|T037|PT|S95.091S|ICD10CM|Other specified injury of dorsal artery of right foot, sequela|Other specified injury of dorsal artery of right foot, sequela +C2869160|T037|AB|S95.092|ICD10CM|Other specified injury of dorsal artery of left foot|Other specified injury of dorsal artery of left foot +C2869160|T037|HT|S95.092|ICD10CM|Other specified injury of dorsal artery of left foot|Other specified injury of dorsal artery of left foot +C2869161|T037|AB|S95.092A|ICD10CM|Oth injury of dorsal artery of left foot, init encntr|Oth injury of dorsal artery of left foot, init encntr +C2869161|T037|PT|S95.092A|ICD10CM|Other specified injury of dorsal artery of left foot, initial encounter|Other specified injury of dorsal artery of left foot, initial encounter +C2869162|T037|AB|S95.092D|ICD10CM|Oth injury of dorsal artery of left foot, subs encntr|Oth injury of dorsal artery of left foot, subs encntr +C2869162|T037|PT|S95.092D|ICD10CM|Other specified injury of dorsal artery of left foot, subsequent encounter|Other specified injury of dorsal artery of left foot, subsequent encounter +C2869163|T037|AB|S95.092S|ICD10CM|Oth injury of dorsal artery of left foot, sequela|Oth injury of dorsal artery of left foot, sequela +C2869163|T037|PT|S95.092S|ICD10CM|Other specified injury of dorsal artery of left foot, sequela|Other specified injury of dorsal artery of left foot, sequela +C2869164|T037|AB|S95.099|ICD10CM|Other specified injury of dorsal artery of unspecified foot|Other specified injury of dorsal artery of unspecified foot +C2869164|T037|HT|S95.099|ICD10CM|Other specified injury of dorsal artery of unspecified foot|Other specified injury of dorsal artery of unspecified foot +C2869165|T037|AB|S95.099A|ICD10CM|Oth injury of dorsal artery of unspecified foot, init encntr|Oth injury of dorsal artery of unspecified foot, init encntr +C2869165|T037|PT|S95.099A|ICD10CM|Other specified injury of dorsal artery of unspecified foot, initial encounter|Other specified injury of dorsal artery of unspecified foot, initial encounter +C2869166|T037|AB|S95.099D|ICD10CM|Oth injury of dorsal artery of unspecified foot, subs encntr|Oth injury of dorsal artery of unspecified foot, subs encntr +C2869166|T037|PT|S95.099D|ICD10CM|Other specified injury of dorsal artery of unspecified foot, subsequent encounter|Other specified injury of dorsal artery of unspecified foot, subsequent encounter +C2869167|T037|AB|S95.099S|ICD10CM|Oth injury of dorsal artery of unspecified foot, sequela|Oth injury of dorsal artery of unspecified foot, sequela +C2869167|T037|PT|S95.099S|ICD10CM|Other specified injury of dorsal artery of unspecified foot, sequela|Other specified injury of dorsal artery of unspecified foot, sequela +C0495974|T037|HT|S95.1|ICD10CM|Injury of plantar artery of foot|Injury of plantar artery of foot +C0495974|T037|AB|S95.1|ICD10CM|Injury of plantar artery of foot|Injury of plantar artery of foot +C0495974|T037|PT|S95.1|ICD10|Injury of plantar artery of foot|Injury of plantar artery of foot +C2869168|T037|AB|S95.10|ICD10CM|Unspecified injury of plantar artery of foot|Unspecified injury of plantar artery of foot +C2869168|T037|HT|S95.10|ICD10CM|Unspecified injury of plantar artery of foot|Unspecified injury of plantar artery of foot +C2869169|T037|AB|S95.101|ICD10CM|Unspecified injury of plantar artery of right foot|Unspecified injury of plantar artery of right foot +C2869169|T037|HT|S95.101|ICD10CM|Unspecified injury of plantar artery of right foot|Unspecified injury of plantar artery of right foot +C2869170|T037|AB|S95.101A|ICD10CM|Unsp injury of plantar artery of right foot, init encntr|Unsp injury of plantar artery of right foot, init encntr +C2869170|T037|PT|S95.101A|ICD10CM|Unspecified injury of plantar artery of right foot, initial encounter|Unspecified injury of plantar artery of right foot, initial encounter +C2869171|T037|AB|S95.101D|ICD10CM|Unsp injury of plantar artery of right foot, subs encntr|Unsp injury of plantar artery of right foot, subs encntr +C2869171|T037|PT|S95.101D|ICD10CM|Unspecified injury of plantar artery of right foot, subsequent encounter|Unspecified injury of plantar artery of right foot, subsequent encounter +C2869172|T037|AB|S95.101S|ICD10CM|Unspecified injury of plantar artery of right foot, sequela|Unspecified injury of plantar artery of right foot, sequela +C2869172|T037|PT|S95.101S|ICD10CM|Unspecified injury of plantar artery of right foot, sequela|Unspecified injury of plantar artery of right foot, sequela +C2869173|T037|AB|S95.102|ICD10CM|Unspecified injury of plantar artery of left foot|Unspecified injury of plantar artery of left foot +C2869173|T037|HT|S95.102|ICD10CM|Unspecified injury of plantar artery of left foot|Unspecified injury of plantar artery of left foot +C2869174|T037|AB|S95.102A|ICD10CM|Unsp injury of plantar artery of left foot, init encntr|Unsp injury of plantar artery of left foot, init encntr +C2869174|T037|PT|S95.102A|ICD10CM|Unspecified injury of plantar artery of left foot, initial encounter|Unspecified injury of plantar artery of left foot, initial encounter +C2869175|T037|AB|S95.102D|ICD10CM|Unsp injury of plantar artery of left foot, subs encntr|Unsp injury of plantar artery of left foot, subs encntr +C2869175|T037|PT|S95.102D|ICD10CM|Unspecified injury of plantar artery of left foot, subsequent encounter|Unspecified injury of plantar artery of left foot, subsequent encounter +C2869176|T037|AB|S95.102S|ICD10CM|Unspecified injury of plantar artery of left foot, sequela|Unspecified injury of plantar artery of left foot, sequela +C2869176|T037|PT|S95.102S|ICD10CM|Unspecified injury of plantar artery of left foot, sequela|Unspecified injury of plantar artery of left foot, sequela +C2869177|T037|AB|S95.109|ICD10CM|Unspecified injury of plantar artery of unspecified foot|Unspecified injury of plantar artery of unspecified foot +C2869177|T037|HT|S95.109|ICD10CM|Unspecified injury of plantar artery of unspecified foot|Unspecified injury of plantar artery of unspecified foot +C2869178|T037|AB|S95.109A|ICD10CM|Unsp injury of plantar artery of unsp foot, init encntr|Unsp injury of plantar artery of unsp foot, init encntr +C2869178|T037|PT|S95.109A|ICD10CM|Unspecified injury of plantar artery of unspecified foot, initial encounter|Unspecified injury of plantar artery of unspecified foot, initial encounter +C2869179|T037|AB|S95.109D|ICD10CM|Unsp injury of plantar artery of unsp foot, subs encntr|Unsp injury of plantar artery of unsp foot, subs encntr +C2869179|T037|PT|S95.109D|ICD10CM|Unspecified injury of plantar artery of unspecified foot, subsequent encounter|Unspecified injury of plantar artery of unspecified foot, subsequent encounter +C2869180|T037|AB|S95.109S|ICD10CM|Unsp injury of plantar artery of unspecified foot, sequela|Unsp injury of plantar artery of unspecified foot, sequela +C2869180|T037|PT|S95.109S|ICD10CM|Unspecified injury of plantar artery of unspecified foot, sequela|Unspecified injury of plantar artery of unspecified foot, sequela +C2869181|T037|HT|S95.11|ICD10CM|Laceration of plantar artery of foot|Laceration of plantar artery of foot +C2869181|T037|AB|S95.11|ICD10CM|Laceration of plantar artery of foot|Laceration of plantar artery of foot +C2869182|T037|AB|S95.111|ICD10CM|Laceration of plantar artery of right foot|Laceration of plantar artery of right foot +C2869182|T037|HT|S95.111|ICD10CM|Laceration of plantar artery of right foot|Laceration of plantar artery of right foot +C2869183|T037|AB|S95.111A|ICD10CM|Laceration of plantar artery of right foot, init encntr|Laceration of plantar artery of right foot, init encntr +C2869183|T037|PT|S95.111A|ICD10CM|Laceration of plantar artery of right foot, initial encounter|Laceration of plantar artery of right foot, initial encounter +C2869184|T037|AB|S95.111D|ICD10CM|Laceration of plantar artery of right foot, subs encntr|Laceration of plantar artery of right foot, subs encntr +C2869184|T037|PT|S95.111D|ICD10CM|Laceration of plantar artery of right foot, subsequent encounter|Laceration of plantar artery of right foot, subsequent encounter +C2869185|T037|AB|S95.111S|ICD10CM|Laceration of plantar artery of right foot, sequela|Laceration of plantar artery of right foot, sequela +C2869185|T037|PT|S95.111S|ICD10CM|Laceration of plantar artery of right foot, sequela|Laceration of plantar artery of right foot, sequela +C2869186|T037|AB|S95.112|ICD10CM|Laceration of plantar artery of left foot|Laceration of plantar artery of left foot +C2869186|T037|HT|S95.112|ICD10CM|Laceration of plantar artery of left foot|Laceration of plantar artery of left foot +C2869187|T037|AB|S95.112A|ICD10CM|Laceration of plantar artery of left foot, initial encounter|Laceration of plantar artery of left foot, initial encounter +C2869187|T037|PT|S95.112A|ICD10CM|Laceration of plantar artery of left foot, initial encounter|Laceration of plantar artery of left foot, initial encounter +C2869188|T037|AB|S95.112D|ICD10CM|Laceration of plantar artery of left foot, subs encntr|Laceration of plantar artery of left foot, subs encntr +C2869188|T037|PT|S95.112D|ICD10CM|Laceration of plantar artery of left foot, subsequent encounter|Laceration of plantar artery of left foot, subsequent encounter +C2869189|T037|AB|S95.112S|ICD10CM|Laceration of plantar artery of left foot, sequela|Laceration of plantar artery of left foot, sequela +C2869189|T037|PT|S95.112S|ICD10CM|Laceration of plantar artery of left foot, sequela|Laceration of plantar artery of left foot, sequela +C2869190|T037|AB|S95.119|ICD10CM|Laceration of plantar artery of unspecified foot|Laceration of plantar artery of unspecified foot +C2869190|T037|HT|S95.119|ICD10CM|Laceration of plantar artery of unspecified foot|Laceration of plantar artery of unspecified foot +C2869191|T037|AB|S95.119A|ICD10CM|Laceration of plantar artery of unsp foot, init encntr|Laceration of plantar artery of unsp foot, init encntr +C2869191|T037|PT|S95.119A|ICD10CM|Laceration of plantar artery of unspecified foot, initial encounter|Laceration of plantar artery of unspecified foot, initial encounter +C2869192|T037|AB|S95.119D|ICD10CM|Laceration of plantar artery of unsp foot, subs encntr|Laceration of plantar artery of unsp foot, subs encntr +C2869192|T037|PT|S95.119D|ICD10CM|Laceration of plantar artery of unspecified foot, subsequent encounter|Laceration of plantar artery of unspecified foot, subsequent encounter +C2869193|T037|AB|S95.119S|ICD10CM|Laceration of plantar artery of unspecified foot, sequela|Laceration of plantar artery of unspecified foot, sequela +C2869193|T037|PT|S95.119S|ICD10CM|Laceration of plantar artery of unspecified foot, sequela|Laceration of plantar artery of unspecified foot, sequela +C2869194|T037|AB|S95.19|ICD10CM|Other specified injury of plantar artery of foot|Other specified injury of plantar artery of foot +C2869194|T037|HT|S95.19|ICD10CM|Other specified injury of plantar artery of foot|Other specified injury of plantar artery of foot +C2869195|T037|AB|S95.191|ICD10CM|Other specified injury of plantar artery of right foot|Other specified injury of plantar artery of right foot +C2869195|T037|HT|S95.191|ICD10CM|Other specified injury of plantar artery of right foot|Other specified injury of plantar artery of right foot +C2869196|T037|AB|S95.191A|ICD10CM|Oth injury of plantar artery of right foot, init encntr|Oth injury of plantar artery of right foot, init encntr +C2869196|T037|PT|S95.191A|ICD10CM|Other specified injury of plantar artery of right foot, initial encounter|Other specified injury of plantar artery of right foot, initial encounter +C2869197|T037|AB|S95.191D|ICD10CM|Oth injury of plantar artery of right foot, subs encntr|Oth injury of plantar artery of right foot, subs encntr +C2869197|T037|PT|S95.191D|ICD10CM|Other specified injury of plantar artery of right foot, subsequent encounter|Other specified injury of plantar artery of right foot, subsequent encounter +C2869198|T037|AB|S95.191S|ICD10CM|Oth injury of plantar artery of right foot, sequela|Oth injury of plantar artery of right foot, sequela +C2869198|T037|PT|S95.191S|ICD10CM|Other specified injury of plantar artery of right foot, sequela|Other specified injury of plantar artery of right foot, sequela +C2869199|T037|AB|S95.192|ICD10CM|Other specified injury of plantar artery of left foot|Other specified injury of plantar artery of left foot +C2869199|T037|HT|S95.192|ICD10CM|Other specified injury of plantar artery of left foot|Other specified injury of plantar artery of left foot +C2869200|T037|AB|S95.192A|ICD10CM|Oth injury of plantar artery of left foot, init encntr|Oth injury of plantar artery of left foot, init encntr +C2869200|T037|PT|S95.192A|ICD10CM|Other specified injury of plantar artery of left foot, initial encounter|Other specified injury of plantar artery of left foot, initial encounter +C2869201|T037|AB|S95.192D|ICD10CM|Oth injury of plantar artery of left foot, subs encntr|Oth injury of plantar artery of left foot, subs encntr +C2869201|T037|PT|S95.192D|ICD10CM|Other specified injury of plantar artery of left foot, subsequent encounter|Other specified injury of plantar artery of left foot, subsequent encounter +C2869202|T037|AB|S95.192S|ICD10CM|Oth injury of plantar artery of left foot, sequela|Oth injury of plantar artery of left foot, sequela +C2869202|T037|PT|S95.192S|ICD10CM|Other specified injury of plantar artery of left foot, sequela|Other specified injury of plantar artery of left foot, sequela +C2869203|T037|AB|S95.199|ICD10CM|Other specified injury of plantar artery of unspecified foot|Other specified injury of plantar artery of unspecified foot +C2869203|T037|HT|S95.199|ICD10CM|Other specified injury of plantar artery of unspecified foot|Other specified injury of plantar artery of unspecified foot +C2869204|T037|AB|S95.199A|ICD10CM|Oth injury of plantar artery of unsp foot, init encntr|Oth injury of plantar artery of unsp foot, init encntr +C2869204|T037|PT|S95.199A|ICD10CM|Other specified injury of plantar artery of unspecified foot, initial encounter|Other specified injury of plantar artery of unspecified foot, initial encounter +C2869205|T037|AB|S95.199D|ICD10CM|Oth injury of plantar artery of unsp foot, subs encntr|Oth injury of plantar artery of unsp foot, subs encntr +C2869205|T037|PT|S95.199D|ICD10CM|Other specified injury of plantar artery of unspecified foot, subsequent encounter|Other specified injury of plantar artery of unspecified foot, subsequent encounter +C2869206|T037|AB|S95.199S|ICD10CM|Oth injury of plantar artery of unspecified foot, sequela|Oth injury of plantar artery of unspecified foot, sequela +C2869206|T037|PT|S95.199S|ICD10CM|Other specified injury of plantar artery of unspecified foot, sequela|Other specified injury of plantar artery of unspecified foot, sequela +C0452072|T037|PT|S95.2|ICD10|Injury of dorsal vein of foot|Injury of dorsal vein of foot +C0452072|T037|HT|S95.2|ICD10CM|Injury of dorsal vein of foot|Injury of dorsal vein of foot +C0452072|T037|AB|S95.2|ICD10CM|Injury of dorsal vein of foot|Injury of dorsal vein of foot +C2869207|T037|AB|S95.20|ICD10CM|Unspecified injury of dorsal vein of foot|Unspecified injury of dorsal vein of foot +C2869207|T037|HT|S95.20|ICD10CM|Unspecified injury of dorsal vein of foot|Unspecified injury of dorsal vein of foot +C2869208|T037|AB|S95.201|ICD10CM|Unspecified injury of dorsal vein of right foot|Unspecified injury of dorsal vein of right foot +C2869208|T037|HT|S95.201|ICD10CM|Unspecified injury of dorsal vein of right foot|Unspecified injury of dorsal vein of right foot +C2869209|T037|AB|S95.201A|ICD10CM|Unspecified injury of dorsal vein of right foot, init encntr|Unspecified injury of dorsal vein of right foot, init encntr +C2869209|T037|PT|S95.201A|ICD10CM|Unspecified injury of dorsal vein of right foot, initial encounter|Unspecified injury of dorsal vein of right foot, initial encounter +C2869210|T037|AB|S95.201D|ICD10CM|Unspecified injury of dorsal vein of right foot, subs encntr|Unspecified injury of dorsal vein of right foot, subs encntr +C2869210|T037|PT|S95.201D|ICD10CM|Unspecified injury of dorsal vein of right foot, subsequent encounter|Unspecified injury of dorsal vein of right foot, subsequent encounter +C2869211|T037|AB|S95.201S|ICD10CM|Unspecified injury of dorsal vein of right foot, sequela|Unspecified injury of dorsal vein of right foot, sequela +C2869211|T037|PT|S95.201S|ICD10CM|Unspecified injury of dorsal vein of right foot, sequela|Unspecified injury of dorsal vein of right foot, sequela +C2869212|T037|AB|S95.202|ICD10CM|Unspecified injury of dorsal vein of left foot|Unspecified injury of dorsal vein of left foot +C2869212|T037|HT|S95.202|ICD10CM|Unspecified injury of dorsal vein of left foot|Unspecified injury of dorsal vein of left foot +C2869213|T037|AB|S95.202A|ICD10CM|Unspecified injury of dorsal vein of left foot, init encntr|Unspecified injury of dorsal vein of left foot, init encntr +C2869213|T037|PT|S95.202A|ICD10CM|Unspecified injury of dorsal vein of left foot, initial encounter|Unspecified injury of dorsal vein of left foot, initial encounter +C2869214|T037|AB|S95.202D|ICD10CM|Unspecified injury of dorsal vein of left foot, subs encntr|Unspecified injury of dorsal vein of left foot, subs encntr +C2869214|T037|PT|S95.202D|ICD10CM|Unspecified injury of dorsal vein of left foot, subsequent encounter|Unspecified injury of dorsal vein of left foot, subsequent encounter +C2869215|T037|AB|S95.202S|ICD10CM|Unspecified injury of dorsal vein of left foot, sequela|Unspecified injury of dorsal vein of left foot, sequela +C2869215|T037|PT|S95.202S|ICD10CM|Unspecified injury of dorsal vein of left foot, sequela|Unspecified injury of dorsal vein of left foot, sequela +C2869216|T037|AB|S95.209|ICD10CM|Unspecified injury of dorsal vein of unspecified foot|Unspecified injury of dorsal vein of unspecified foot +C2869216|T037|HT|S95.209|ICD10CM|Unspecified injury of dorsal vein of unspecified foot|Unspecified injury of dorsal vein of unspecified foot +C2869217|T037|AB|S95.209A|ICD10CM|Unsp injury of dorsal vein of unspecified foot, init encntr|Unsp injury of dorsal vein of unspecified foot, init encntr +C2869217|T037|PT|S95.209A|ICD10CM|Unspecified injury of dorsal vein of unspecified foot, initial encounter|Unspecified injury of dorsal vein of unspecified foot, initial encounter +C2869218|T037|AB|S95.209D|ICD10CM|Unsp injury of dorsal vein of unspecified foot, subs encntr|Unsp injury of dorsal vein of unspecified foot, subs encntr +C2869218|T037|PT|S95.209D|ICD10CM|Unspecified injury of dorsal vein of unspecified foot, subsequent encounter|Unspecified injury of dorsal vein of unspecified foot, subsequent encounter +C2869219|T037|AB|S95.209S|ICD10CM|Unsp injury of dorsal vein of unspecified foot, sequela|Unsp injury of dorsal vein of unspecified foot, sequela +C2869219|T037|PT|S95.209S|ICD10CM|Unspecified injury of dorsal vein of unspecified foot, sequela|Unspecified injury of dorsal vein of unspecified foot, sequela +C2869220|T037|HT|S95.21|ICD10CM|Laceration of dorsal vein of foot|Laceration of dorsal vein of foot +C2869220|T037|AB|S95.21|ICD10CM|Laceration of dorsal vein of foot|Laceration of dorsal vein of foot +C2869221|T037|AB|S95.211|ICD10CM|Laceration of dorsal vein of right foot|Laceration of dorsal vein of right foot +C2869221|T037|HT|S95.211|ICD10CM|Laceration of dorsal vein of right foot|Laceration of dorsal vein of right foot +C2869222|T037|AB|S95.211A|ICD10CM|Laceration of dorsal vein of right foot, initial encounter|Laceration of dorsal vein of right foot, initial encounter +C2869222|T037|PT|S95.211A|ICD10CM|Laceration of dorsal vein of right foot, initial encounter|Laceration of dorsal vein of right foot, initial encounter +C2869223|T037|AB|S95.211D|ICD10CM|Laceration of dorsal vein of right foot, subs encntr|Laceration of dorsal vein of right foot, subs encntr +C2869223|T037|PT|S95.211D|ICD10CM|Laceration of dorsal vein of right foot, subsequent encounter|Laceration of dorsal vein of right foot, subsequent encounter +C2869224|T037|AB|S95.211S|ICD10CM|Laceration of dorsal vein of right foot, sequela|Laceration of dorsal vein of right foot, sequela +C2869224|T037|PT|S95.211S|ICD10CM|Laceration of dorsal vein of right foot, sequela|Laceration of dorsal vein of right foot, sequela +C2869225|T037|AB|S95.212|ICD10CM|Laceration of dorsal vein of left foot|Laceration of dorsal vein of left foot +C2869225|T037|HT|S95.212|ICD10CM|Laceration of dorsal vein of left foot|Laceration of dorsal vein of left foot +C2869226|T037|AB|S95.212A|ICD10CM|Laceration of dorsal vein of left foot, initial encounter|Laceration of dorsal vein of left foot, initial encounter +C2869226|T037|PT|S95.212A|ICD10CM|Laceration of dorsal vein of left foot, initial encounter|Laceration of dorsal vein of left foot, initial encounter +C2869227|T037|AB|S95.212D|ICD10CM|Laceration of dorsal vein of left foot, subsequent encounter|Laceration of dorsal vein of left foot, subsequent encounter +C2869227|T037|PT|S95.212D|ICD10CM|Laceration of dorsal vein of left foot, subsequent encounter|Laceration of dorsal vein of left foot, subsequent encounter +C2869228|T037|AB|S95.212S|ICD10CM|Laceration of dorsal vein of left foot, sequela|Laceration of dorsal vein of left foot, sequela +C2869228|T037|PT|S95.212S|ICD10CM|Laceration of dorsal vein of left foot, sequela|Laceration of dorsal vein of left foot, sequela +C2869229|T037|AB|S95.219|ICD10CM|Laceration of dorsal vein of unspecified foot|Laceration of dorsal vein of unspecified foot +C2869229|T037|HT|S95.219|ICD10CM|Laceration of dorsal vein of unspecified foot|Laceration of dorsal vein of unspecified foot +C2869230|T037|AB|S95.219A|ICD10CM|Laceration of dorsal vein of unspecified foot, init encntr|Laceration of dorsal vein of unspecified foot, init encntr +C2869230|T037|PT|S95.219A|ICD10CM|Laceration of dorsal vein of unspecified foot, initial encounter|Laceration of dorsal vein of unspecified foot, initial encounter +C2869231|T037|AB|S95.219D|ICD10CM|Laceration of dorsal vein of unspecified foot, subs encntr|Laceration of dorsal vein of unspecified foot, subs encntr +C2869231|T037|PT|S95.219D|ICD10CM|Laceration of dorsal vein of unspecified foot, subsequent encounter|Laceration of dorsal vein of unspecified foot, subsequent encounter +C2869232|T037|AB|S95.219S|ICD10CM|Laceration of dorsal vein of unspecified foot, sequela|Laceration of dorsal vein of unspecified foot, sequela +C2869232|T037|PT|S95.219S|ICD10CM|Laceration of dorsal vein of unspecified foot, sequela|Laceration of dorsal vein of unspecified foot, sequela +C2869233|T037|AB|S95.29|ICD10CM|Other specified injury of dorsal vein of foot|Other specified injury of dorsal vein of foot +C2869233|T037|HT|S95.29|ICD10CM|Other specified injury of dorsal vein of foot|Other specified injury of dorsal vein of foot +C2869234|T037|AB|S95.291|ICD10CM|Other specified injury of dorsal vein of right foot|Other specified injury of dorsal vein of right foot +C2869234|T037|HT|S95.291|ICD10CM|Other specified injury of dorsal vein of right foot|Other specified injury of dorsal vein of right foot +C2869235|T037|AB|S95.291A|ICD10CM|Oth injury of dorsal vein of right foot, init encntr|Oth injury of dorsal vein of right foot, init encntr +C2869235|T037|PT|S95.291A|ICD10CM|Other specified injury of dorsal vein of right foot, initial encounter|Other specified injury of dorsal vein of right foot, initial encounter +C2869236|T037|AB|S95.291D|ICD10CM|Oth injury of dorsal vein of right foot, subs encntr|Oth injury of dorsal vein of right foot, subs encntr +C2869236|T037|PT|S95.291D|ICD10CM|Other specified injury of dorsal vein of right foot, subsequent encounter|Other specified injury of dorsal vein of right foot, subsequent encounter +C2869237|T037|AB|S95.291S|ICD10CM|Other specified injury of dorsal vein of right foot, sequela|Other specified injury of dorsal vein of right foot, sequela +C2869237|T037|PT|S95.291S|ICD10CM|Other specified injury of dorsal vein of right foot, sequela|Other specified injury of dorsal vein of right foot, sequela +C2869238|T037|AB|S95.292|ICD10CM|Other specified injury of dorsal vein of left foot|Other specified injury of dorsal vein of left foot +C2869238|T037|HT|S95.292|ICD10CM|Other specified injury of dorsal vein of left foot|Other specified injury of dorsal vein of left foot +C2869239|T037|AB|S95.292A|ICD10CM|Oth injury of dorsal vein of left foot, init encntr|Oth injury of dorsal vein of left foot, init encntr +C2869239|T037|PT|S95.292A|ICD10CM|Other specified injury of dorsal vein of left foot, initial encounter|Other specified injury of dorsal vein of left foot, initial encounter +C2869240|T037|AB|S95.292D|ICD10CM|Oth injury of dorsal vein of left foot, subs encntr|Oth injury of dorsal vein of left foot, subs encntr +C2869240|T037|PT|S95.292D|ICD10CM|Other specified injury of dorsal vein of left foot, subsequent encounter|Other specified injury of dorsal vein of left foot, subsequent encounter +C2869241|T037|AB|S95.292S|ICD10CM|Other specified injury of dorsal vein of left foot, sequela|Other specified injury of dorsal vein of left foot, sequela +C2869241|T037|PT|S95.292S|ICD10CM|Other specified injury of dorsal vein of left foot, sequela|Other specified injury of dorsal vein of left foot, sequela +C2869242|T037|AB|S95.299|ICD10CM|Other specified injury of dorsal vein of unspecified foot|Other specified injury of dorsal vein of unspecified foot +C2869242|T037|HT|S95.299|ICD10CM|Other specified injury of dorsal vein of unspecified foot|Other specified injury of dorsal vein of unspecified foot +C2869243|T037|AB|S95.299A|ICD10CM|Oth injury of dorsal vein of unspecified foot, init encntr|Oth injury of dorsal vein of unspecified foot, init encntr +C2869243|T037|PT|S95.299A|ICD10CM|Other specified injury of dorsal vein of unspecified foot, initial encounter|Other specified injury of dorsal vein of unspecified foot, initial encounter +C2869244|T037|AB|S95.299D|ICD10CM|Oth injury of dorsal vein of unspecified foot, subs encntr|Oth injury of dorsal vein of unspecified foot, subs encntr +C2869244|T037|PT|S95.299D|ICD10CM|Other specified injury of dorsal vein of unspecified foot, subsequent encounter|Other specified injury of dorsal vein of unspecified foot, subsequent encounter +C2869245|T037|AB|S95.299S|ICD10CM|Oth injury of dorsal vein of unspecified foot, sequela|Oth injury of dorsal vein of unspecified foot, sequela +C2869245|T037|PT|S95.299S|ICD10CM|Other specified injury of dorsal vein of unspecified foot, sequela|Other specified injury of dorsal vein of unspecified foot, sequela +C0452073|T037|PT|S95.7|ICD10|Injury of multiple blood vessels at ankle and foot level|Injury of multiple blood vessels at ankle and foot level +C0478357|T037|PT|S95.8|ICD10|Injury of other blood vessels at ankle and foot level|Injury of other blood vessels at ankle and foot level +C0478357|T037|HT|S95.8|ICD10CM|Injury of other blood vessels at ankle and foot level|Injury of other blood vessels at ankle and foot level +C0478357|T037|AB|S95.8|ICD10CM|Injury of other blood vessels at ankle and foot level|Injury of other blood vessels at ankle and foot level +C2869246|T037|AB|S95.80|ICD10CM|Unsp injury of other blood vessels at ankle and foot level|Unsp injury of other blood vessels at ankle and foot level +C2869246|T037|HT|S95.80|ICD10CM|Unspecified injury of other blood vessels at ankle and foot level|Unspecified injury of other blood vessels at ankle and foot level +C2869247|T037|AB|S95.801|ICD10CM|Unsp injury of blood vessels at ank/ft level, right leg|Unsp injury of blood vessels at ank/ft level, right leg +C2869247|T037|HT|S95.801|ICD10CM|Unspecified injury of other blood vessels at ankle and foot level, right leg|Unspecified injury of other blood vessels at ankle and foot level, right leg +C2869248|T037|AB|S95.801A|ICD10CM|Unsp inj blood vessels at ank/ft level, right leg, init|Unsp inj blood vessels at ank/ft level, right leg, init +C2869248|T037|PT|S95.801A|ICD10CM|Unspecified injury of other blood vessels at ankle and foot level, right leg, initial encounter|Unspecified injury of other blood vessels at ankle and foot level, right leg, initial encounter +C2869249|T037|AB|S95.801D|ICD10CM|Unsp inj blood vessels at ank/ft level, right leg, subs|Unsp inj blood vessels at ank/ft level, right leg, subs +C2869249|T037|PT|S95.801D|ICD10CM|Unspecified injury of other blood vessels at ankle and foot level, right leg, subsequent encounter|Unspecified injury of other blood vessels at ankle and foot level, right leg, subsequent encounter +C2869250|T037|AB|S95.801S|ICD10CM|Unsp inj blood vessels at ank/ft level, right leg, sequela|Unsp inj blood vessels at ank/ft level, right leg, sequela +C2869250|T037|PT|S95.801S|ICD10CM|Unspecified injury of other blood vessels at ankle and foot level, right leg, sequela|Unspecified injury of other blood vessels at ankle and foot level, right leg, sequela +C2869251|T037|AB|S95.802|ICD10CM|Unsp injury of blood vessels at ank/ft level, left leg|Unsp injury of blood vessels at ank/ft level, left leg +C2869251|T037|HT|S95.802|ICD10CM|Unspecified injury of other blood vessels at ankle and foot level, left leg|Unspecified injury of other blood vessels at ankle and foot level, left leg +C2869252|T037|AB|S95.802A|ICD10CM|Unsp injury of blood vessels at ank/ft level, left leg, init|Unsp injury of blood vessels at ank/ft level, left leg, init +C2869252|T037|PT|S95.802A|ICD10CM|Unspecified injury of other blood vessels at ankle and foot level, left leg, initial encounter|Unspecified injury of other blood vessels at ankle and foot level, left leg, initial encounter +C2869253|T037|AB|S95.802D|ICD10CM|Unsp injury of blood vessels at ank/ft level, left leg, subs|Unsp injury of blood vessels at ank/ft level, left leg, subs +C2869253|T037|PT|S95.802D|ICD10CM|Unspecified injury of other blood vessels at ankle and foot level, left leg, subsequent encounter|Unspecified injury of other blood vessels at ankle and foot level, left leg, subsequent encounter +C2869254|T037|AB|S95.802S|ICD10CM|Unsp inj blood vessels at ank/ft level, left leg, sequela|Unsp inj blood vessels at ank/ft level, left leg, sequela +C2869254|T037|PT|S95.802S|ICD10CM|Unspecified injury of other blood vessels at ankle and foot level, left leg, sequela|Unspecified injury of other blood vessels at ankle and foot level, left leg, sequela +C2869255|T037|AB|S95.809|ICD10CM|Unsp injury of blood vessels at ank/ft level, unsp leg|Unsp injury of blood vessels at ank/ft level, unsp leg +C2869255|T037|HT|S95.809|ICD10CM|Unspecified injury of other blood vessels at ankle and foot level, unspecified leg|Unspecified injury of other blood vessels at ankle and foot level, unspecified leg +C2869256|T037|AB|S95.809A|ICD10CM|Unsp injury of blood vessels at ank/ft level, unsp leg, init|Unsp injury of blood vessels at ank/ft level, unsp leg, init +C2869257|T037|AB|S95.809D|ICD10CM|Unsp injury of blood vessels at ank/ft level, unsp leg, subs|Unsp injury of blood vessels at ank/ft level, unsp leg, subs +C2869258|T037|AB|S95.809S|ICD10CM|Unsp inj blood vessels at ank/ft level, unsp leg, sequela|Unsp inj blood vessels at ank/ft level, unsp leg, sequela +C2869258|T037|PT|S95.809S|ICD10CM|Unspecified injury of other blood vessels at ankle and foot level, unspecified leg, sequela|Unspecified injury of other blood vessels at ankle and foot level, unspecified leg, sequela +C2869259|T037|HT|S95.81|ICD10CM|Laceration of other blood vessels at ankle and foot level|Laceration of other blood vessels at ankle and foot level +C2869259|T037|AB|S95.81|ICD10CM|Laceration of other blood vessels at ankle and foot level|Laceration of other blood vessels at ankle and foot level +C2869260|T037|AB|S95.811|ICD10CM|Laceration of blood vessels at ank/ft level, right leg|Laceration of blood vessels at ank/ft level, right leg +C2869260|T037|HT|S95.811|ICD10CM|Laceration of other blood vessels at ankle and foot level, right leg|Laceration of other blood vessels at ankle and foot level, right leg +C2869261|T037|AB|S95.811A|ICD10CM|Laceration of blood vessels at ank/ft level, right leg, init|Laceration of blood vessels at ank/ft level, right leg, init +C2869261|T037|PT|S95.811A|ICD10CM|Laceration of other blood vessels at ankle and foot level, right leg, initial encounter|Laceration of other blood vessels at ankle and foot level, right leg, initial encounter +C2869262|T037|AB|S95.811D|ICD10CM|Laceration of blood vessels at ank/ft level, right leg, subs|Laceration of blood vessels at ank/ft level, right leg, subs +C2869262|T037|PT|S95.811D|ICD10CM|Laceration of other blood vessels at ankle and foot level, right leg, subsequent encounter|Laceration of other blood vessels at ankle and foot level, right leg, subsequent encounter +C2869263|T037|AB|S95.811S|ICD10CM|Lacerat blood vessels at ank/ft level, right leg, sequela|Lacerat blood vessels at ank/ft level, right leg, sequela +C2869263|T037|PT|S95.811S|ICD10CM|Laceration of other blood vessels at ankle and foot level, right leg, sequela|Laceration of other blood vessels at ankle and foot level, right leg, sequela +C2869264|T037|AB|S95.812|ICD10CM|Laceration of blood vessels at ank/ft level, left leg|Laceration of blood vessels at ank/ft level, left leg +C2869264|T037|HT|S95.812|ICD10CM|Laceration of other blood vessels at ankle and foot level, left leg|Laceration of other blood vessels at ankle and foot level, left leg +C2869265|T037|AB|S95.812A|ICD10CM|Laceration of blood vessels at ank/ft level, left leg, init|Laceration of blood vessels at ank/ft level, left leg, init +C2869265|T037|PT|S95.812A|ICD10CM|Laceration of other blood vessels at ankle and foot level, left leg, initial encounter|Laceration of other blood vessels at ankle and foot level, left leg, initial encounter +C2869266|T037|AB|S95.812D|ICD10CM|Laceration of blood vessels at ank/ft level, left leg, subs|Laceration of blood vessels at ank/ft level, left leg, subs +C2869266|T037|PT|S95.812D|ICD10CM|Laceration of other blood vessels at ankle and foot level, left leg, subsequent encounter|Laceration of other blood vessels at ankle and foot level, left leg, subsequent encounter +C2869267|T037|AB|S95.812S|ICD10CM|Lacerat blood vessels at ank/ft level, left leg, sequela|Lacerat blood vessels at ank/ft level, left leg, sequela +C2869267|T037|PT|S95.812S|ICD10CM|Laceration of other blood vessels at ankle and foot level, left leg, sequela|Laceration of other blood vessels at ankle and foot level, left leg, sequela +C2869268|T037|AB|S95.819|ICD10CM|Laceration of blood vessels at ank/ft level, unsp leg|Laceration of blood vessels at ank/ft level, unsp leg +C2869268|T037|HT|S95.819|ICD10CM|Laceration of other blood vessels at ankle and foot level, unspecified leg|Laceration of other blood vessels at ankle and foot level, unspecified leg +C2869269|T037|AB|S95.819A|ICD10CM|Laceration of blood vessels at ank/ft level, unsp leg, init|Laceration of blood vessels at ank/ft level, unsp leg, init +C2869269|T037|PT|S95.819A|ICD10CM|Laceration of other blood vessels at ankle and foot level, unspecified leg, initial encounter|Laceration of other blood vessels at ankle and foot level, unspecified leg, initial encounter +C2869270|T037|AB|S95.819D|ICD10CM|Laceration of blood vessels at ank/ft level, unsp leg, subs|Laceration of blood vessels at ank/ft level, unsp leg, subs +C2869270|T037|PT|S95.819D|ICD10CM|Laceration of other blood vessels at ankle and foot level, unspecified leg, subsequent encounter|Laceration of other blood vessels at ankle and foot level, unspecified leg, subsequent encounter +C2869271|T037|AB|S95.819S|ICD10CM|Lacerat blood vessels at ank/ft level, unsp leg, sequela|Lacerat blood vessels at ank/ft level, unsp leg, sequela +C2869271|T037|PT|S95.819S|ICD10CM|Laceration of other blood vessels at ankle and foot level, unspecified leg, sequela|Laceration of other blood vessels at ankle and foot level, unspecified leg, sequela +C2869272|T037|AB|S95.89|ICD10CM|Oth injury of other blood vessels at ankle and foot level|Oth injury of other blood vessels at ankle and foot level +C2869272|T037|HT|S95.89|ICD10CM|Other specified injury of other blood vessels at ankle and foot level|Other specified injury of other blood vessels at ankle and foot level +C2869273|T037|AB|S95.891|ICD10CM|Inj oth blood vessels at ankle and foot level, right leg|Inj oth blood vessels at ankle and foot level, right leg +C2869273|T037|HT|S95.891|ICD10CM|Other specified injury of other blood vessels at ankle and foot level, right leg|Other specified injury of other blood vessels at ankle and foot level, right leg +C2869274|T037|AB|S95.891A|ICD10CM|Inj oth blood vessels at ank/ft level, right leg, init|Inj oth blood vessels at ank/ft level, right leg, init +C2869274|T037|PT|S95.891A|ICD10CM|Other specified injury of other blood vessels at ankle and foot level, right leg, initial encounter|Other specified injury of other blood vessels at ankle and foot level, right leg, initial encounter +C2869275|T037|AB|S95.891D|ICD10CM|Inj oth blood vessels at ank/ft level, right leg, subs|Inj oth blood vessels at ank/ft level, right leg, subs +C2869276|T037|AB|S95.891S|ICD10CM|Inj oth blood vessels at ank/ft level, right leg, sequela|Inj oth blood vessels at ank/ft level, right leg, sequela +C2869276|T037|PT|S95.891S|ICD10CM|Other specified injury of other blood vessels at ankle and foot level, right leg, sequela|Other specified injury of other blood vessels at ankle and foot level, right leg, sequela +C2869277|T037|AB|S95.892|ICD10CM|Inj oth blood vessels at ankle and foot level, left leg|Inj oth blood vessels at ankle and foot level, left leg +C2869277|T037|HT|S95.892|ICD10CM|Other specified injury of other blood vessels at ankle and foot level, left leg|Other specified injury of other blood vessels at ankle and foot level, left leg +C2869278|T037|AB|S95.892A|ICD10CM|Inj oth blood vessels at ank/ft level, left leg, init|Inj oth blood vessels at ank/ft level, left leg, init +C2869278|T037|PT|S95.892A|ICD10CM|Other specified injury of other blood vessels at ankle and foot level, left leg, initial encounter|Other specified injury of other blood vessels at ankle and foot level, left leg, initial encounter +C2869279|T037|AB|S95.892D|ICD10CM|Inj oth blood vessels at ank/ft level, left leg, subs|Inj oth blood vessels at ank/ft level, left leg, subs +C2869280|T037|AB|S95.892S|ICD10CM|Inj oth blood vessels at ank/ft level, left leg, sequela|Inj oth blood vessels at ank/ft level, left leg, sequela +C2869280|T037|PT|S95.892S|ICD10CM|Other specified injury of other blood vessels at ankle and foot level, left leg, sequela|Other specified injury of other blood vessels at ankle and foot level, left leg, sequela +C2869281|T037|AB|S95.899|ICD10CM|Inj oth blood vessels at ankle and foot level, unsp leg|Inj oth blood vessels at ankle and foot level, unsp leg +C2869281|T037|HT|S95.899|ICD10CM|Other specified injury of other blood vessels at ankle and foot level, unspecified leg|Other specified injury of other blood vessels at ankle and foot level, unspecified leg +C2869282|T037|AB|S95.899A|ICD10CM|Inj oth blood vessels at ank/ft level, unsp leg, init|Inj oth blood vessels at ank/ft level, unsp leg, init +C2869283|T037|AB|S95.899D|ICD10CM|Inj oth blood vessels at ank/ft level, unsp leg, subs|Inj oth blood vessels at ank/ft level, unsp leg, subs +C2869284|T037|AB|S95.899S|ICD10CM|Inj oth blood vessels at ank/ft level, unsp leg, sequela|Inj oth blood vessels at ank/ft level, unsp leg, sequela +C2869284|T037|PT|S95.899S|ICD10CM|Other specified injury of other blood vessels at ankle and foot level, unspecified leg, sequela|Other specified injury of other blood vessels at ankle and foot level, unspecified leg, sequela +C0452071|T037|HT|S95.9|ICD10CM|Injury of unspecified blood vessel at ankle and foot level|Injury of unspecified blood vessel at ankle and foot level +C0452071|T037|AB|S95.9|ICD10CM|Injury of unspecified blood vessel at ankle and foot level|Injury of unspecified blood vessel at ankle and foot level +C0452071|T037|PT|S95.9|ICD10|Injury of unspecified blood vessel at ankle and foot level|Injury of unspecified blood vessel at ankle and foot level +C2869285|T037|AB|S95.90|ICD10CM|Unsp injury of unsp blood vessel at ankle and foot level|Unsp injury of unsp blood vessel at ankle and foot level +C2869285|T037|HT|S95.90|ICD10CM|Unspecified injury of unspecified blood vessel at ankle and foot level|Unspecified injury of unspecified blood vessel at ankle and foot level +C2869286|T037|AB|S95.901|ICD10CM|Unsp injury of unsp blood vessel at ank/ft level, right leg|Unsp injury of unsp blood vessel at ank/ft level, right leg +C2869286|T037|HT|S95.901|ICD10CM|Unspecified injury of unspecified blood vessel at ankle and foot level, right leg|Unspecified injury of unspecified blood vessel at ankle and foot level, right leg +C2869287|T037|AB|S95.901A|ICD10CM|Unsp inj unsp blood vess at ank/ft level, right leg, init|Unsp inj unsp blood vess at ank/ft level, right leg, init +C2869287|T037|PT|S95.901A|ICD10CM|Unspecified injury of unspecified blood vessel at ankle and foot level, right leg, initial encounter|Unspecified injury of unspecified blood vessel at ankle and foot level, right leg, initial encounter +C2869288|T037|AB|S95.901D|ICD10CM|Unsp inj unsp blood vess at ank/ft level, right leg, subs|Unsp inj unsp blood vess at ank/ft level, right leg, subs +C2869289|T037|AB|S95.901S|ICD10CM|Unsp inj unsp blood vess at ank/ft level, right leg, sequela|Unsp inj unsp blood vess at ank/ft level, right leg, sequela +C2869289|T037|PT|S95.901S|ICD10CM|Unspecified injury of unspecified blood vessel at ankle and foot level, right leg, sequela|Unspecified injury of unspecified blood vessel at ankle and foot level, right leg, sequela +C2869290|T037|AB|S95.902|ICD10CM|Unsp injury of unsp blood vessel at ank/ft level, left leg|Unsp injury of unsp blood vessel at ank/ft level, left leg +C2869290|T037|HT|S95.902|ICD10CM|Unspecified injury of unspecified blood vessel at ankle and foot level, left leg|Unspecified injury of unspecified blood vessel at ankle and foot level, left leg +C2869291|T037|AB|S95.902A|ICD10CM|Unsp inj unsp blood vess at ank/ft level, left leg, init|Unsp inj unsp blood vess at ank/ft level, left leg, init +C2869291|T037|PT|S95.902A|ICD10CM|Unspecified injury of unspecified blood vessel at ankle and foot level, left leg, initial encounter|Unspecified injury of unspecified blood vessel at ankle and foot level, left leg, initial encounter +C2869292|T037|AB|S95.902D|ICD10CM|Unsp inj unsp blood vess at ank/ft level, left leg, subs|Unsp inj unsp blood vess at ank/ft level, left leg, subs +C2869293|T037|AB|S95.902S|ICD10CM|Unsp inj unsp blood vess at ank/ft level, left leg, sequela|Unsp inj unsp blood vess at ank/ft level, left leg, sequela +C2869293|T037|PT|S95.902S|ICD10CM|Unspecified injury of unspecified blood vessel at ankle and foot level, left leg, sequela|Unspecified injury of unspecified blood vessel at ankle and foot level, left leg, sequela +C2869294|T037|AB|S95.909|ICD10CM|Unsp injury of unsp blood vessel at ank/ft level, unsp leg|Unsp injury of unsp blood vessel at ank/ft level, unsp leg +C2869294|T037|HT|S95.909|ICD10CM|Unspecified injury of unspecified blood vessel at ankle and foot level, unspecified leg|Unspecified injury of unspecified blood vessel at ankle and foot level, unspecified leg +C2869295|T037|AB|S95.909A|ICD10CM|Unsp inj unsp blood vess at ank/ft level, unsp leg, init|Unsp inj unsp blood vess at ank/ft level, unsp leg, init +C2869296|T037|AB|S95.909D|ICD10CM|Unsp inj unsp blood vess at ank/ft level, unsp leg, subs|Unsp inj unsp blood vess at ank/ft level, unsp leg, subs +C2869297|T037|AB|S95.909S|ICD10CM|Unsp inj unsp blood vess at ank/ft level, unsp leg, sequela|Unsp inj unsp blood vess at ank/ft level, unsp leg, sequela +C2869297|T037|PT|S95.909S|ICD10CM|Unspecified injury of unspecified blood vessel at ankle and foot level, unspecified leg, sequela|Unspecified injury of unspecified blood vessel at ankle and foot level, unspecified leg, sequela +C2869298|T037|AB|S95.91|ICD10CM|Laceration of unsp blood vessel at ankle and foot level|Laceration of unsp blood vessel at ankle and foot level +C2869298|T037|HT|S95.91|ICD10CM|Laceration of unspecified blood vessel at ankle and foot level|Laceration of unspecified blood vessel at ankle and foot level +C2869299|T037|AB|S95.911|ICD10CM|Laceration of unsp blood vessel at ank/ft level, right leg|Laceration of unsp blood vessel at ank/ft level, right leg +C2869299|T037|HT|S95.911|ICD10CM|Laceration of unspecified blood vessel at ankle and foot level, right leg|Laceration of unspecified blood vessel at ankle and foot level, right leg +C2869300|T037|AB|S95.911A|ICD10CM|Lacerat unsp blood vessel at ank/ft level, right leg, init|Lacerat unsp blood vessel at ank/ft level, right leg, init +C2869300|T037|PT|S95.911A|ICD10CM|Laceration of unspecified blood vessel at ankle and foot level, right leg, initial encounter|Laceration of unspecified blood vessel at ankle and foot level, right leg, initial encounter +C2869301|T037|AB|S95.911D|ICD10CM|Lacerat unsp blood vessel at ank/ft level, right leg, subs|Lacerat unsp blood vessel at ank/ft level, right leg, subs +C2869301|T037|PT|S95.911D|ICD10CM|Laceration of unspecified blood vessel at ankle and foot level, right leg, subsequent encounter|Laceration of unspecified blood vessel at ankle and foot level, right leg, subsequent encounter +C2869302|T037|AB|S95.911S|ICD10CM|Lacerat unsp blood vess at ank/ft level, right leg, sequela|Lacerat unsp blood vess at ank/ft level, right leg, sequela +C2869302|T037|PT|S95.911S|ICD10CM|Laceration of unspecified blood vessel at ankle and foot level, right leg, sequela|Laceration of unspecified blood vessel at ankle and foot level, right leg, sequela +C2869303|T037|AB|S95.912|ICD10CM|Laceration of unsp blood vessel at ank/ft level, left leg|Laceration of unsp blood vessel at ank/ft level, left leg +C2869303|T037|HT|S95.912|ICD10CM|Laceration of unspecified blood vessel at ankle and foot level, left leg|Laceration of unspecified blood vessel at ankle and foot level, left leg +C2869304|T037|AB|S95.912A|ICD10CM|Lacerat unsp blood vessel at ank/ft level, left leg, init|Lacerat unsp blood vessel at ank/ft level, left leg, init +C2869304|T037|PT|S95.912A|ICD10CM|Laceration of unspecified blood vessel at ankle and foot level, left leg, initial encounter|Laceration of unspecified blood vessel at ankle and foot level, left leg, initial encounter +C2869305|T037|AB|S95.912D|ICD10CM|Lacerat unsp blood vessel at ank/ft level, left leg, subs|Lacerat unsp blood vessel at ank/ft level, left leg, subs +C2869305|T037|PT|S95.912D|ICD10CM|Laceration of unspecified blood vessel at ankle and foot level, left leg, subsequent encounter|Laceration of unspecified blood vessel at ankle and foot level, left leg, subsequent encounter +C2869306|T037|AB|S95.912S|ICD10CM|Lacerat unsp blood vessel at ank/ft level, left leg, sequela|Lacerat unsp blood vessel at ank/ft level, left leg, sequela +C2869306|T037|PT|S95.912S|ICD10CM|Laceration of unspecified blood vessel at ankle and foot level, left leg, sequela|Laceration of unspecified blood vessel at ankle and foot level, left leg, sequela +C2869307|T037|AB|S95.919|ICD10CM|Laceration of unsp blood vessel at ank/ft level, unsp leg|Laceration of unsp blood vessel at ank/ft level, unsp leg +C2869307|T037|HT|S95.919|ICD10CM|Laceration of unspecified blood vessel at ankle and foot level, unspecified leg|Laceration of unspecified blood vessel at ankle and foot level, unspecified leg +C2869308|T037|AB|S95.919A|ICD10CM|Lacerat unsp blood vessel at ank/ft level, unsp leg, init|Lacerat unsp blood vessel at ank/ft level, unsp leg, init +C2869308|T037|PT|S95.919A|ICD10CM|Laceration of unspecified blood vessel at ankle and foot level, unspecified leg, initial encounter|Laceration of unspecified blood vessel at ankle and foot level, unspecified leg, initial encounter +C2869309|T037|AB|S95.919D|ICD10CM|Lacerat unsp blood vessel at ank/ft level, unsp leg, subs|Lacerat unsp blood vessel at ank/ft level, unsp leg, subs +C2869310|T037|AB|S95.919S|ICD10CM|Lacerat unsp blood vessel at ank/ft level, unsp leg, sequela|Lacerat unsp blood vessel at ank/ft level, unsp leg, sequela +C2869310|T037|PT|S95.919S|ICD10CM|Laceration of unspecified blood vessel at ankle and foot level, unspecified leg, sequela|Laceration of unspecified blood vessel at ankle and foot level, unspecified leg, sequela +C2869311|T037|AB|S95.99|ICD10CM|Oth injury of unsp blood vessel at ankle and foot level|Oth injury of unsp blood vessel at ankle and foot level +C2869311|T037|HT|S95.99|ICD10CM|Other specified injury of unspecified blood vessel at ankle and foot level|Other specified injury of unspecified blood vessel at ankle and foot level +C2869312|T037|AB|S95.991|ICD10CM|Inj unsp blood vessel at ankle and foot level, right leg|Inj unsp blood vessel at ankle and foot level, right leg +C2869312|T037|HT|S95.991|ICD10CM|Other specified injury of unspecified blood vessel at ankle and foot level, right leg|Other specified injury of unspecified blood vessel at ankle and foot level, right leg +C2869313|T037|AB|S95.991A|ICD10CM|Inj unsp blood vessel at ank/ft level, right leg, init|Inj unsp blood vessel at ank/ft level, right leg, init +C2869314|T037|AB|S95.991D|ICD10CM|Inj unsp blood vessel at ank/ft level, right leg, subs|Inj unsp blood vessel at ank/ft level, right leg, subs +C2869315|T037|AB|S95.991S|ICD10CM|Inj unsp blood vessel at ank/ft level, right leg, sequela|Inj unsp blood vessel at ank/ft level, right leg, sequela +C2869315|T037|PT|S95.991S|ICD10CM|Other specified injury of unspecified blood vessel at ankle and foot level, right leg, sequela|Other specified injury of unspecified blood vessel at ankle and foot level, right leg, sequela +C2869316|T037|AB|S95.992|ICD10CM|Inj unsp blood vessel at ankle and foot level, left leg|Inj unsp blood vessel at ankle and foot level, left leg +C2869316|T037|HT|S95.992|ICD10CM|Other specified injury of unspecified blood vessel at ankle and foot level, left leg|Other specified injury of unspecified blood vessel at ankle and foot level, left leg +C2869317|T037|AB|S95.992A|ICD10CM|Inj unsp blood vessel at ank/ft level, left leg, init|Inj unsp blood vessel at ank/ft level, left leg, init +C2869318|T037|AB|S95.992D|ICD10CM|Inj unsp blood vessel at ank/ft level, left leg, subs|Inj unsp blood vessel at ank/ft level, left leg, subs +C2869319|T037|AB|S95.992S|ICD10CM|Inj unsp blood vessel at ank/ft level, left leg, sequela|Inj unsp blood vessel at ank/ft level, left leg, sequela +C2869319|T037|PT|S95.992S|ICD10CM|Other specified injury of unspecified blood vessel at ankle and foot level, left leg, sequela|Other specified injury of unspecified blood vessel at ankle and foot level, left leg, sequela +C2869320|T037|AB|S95.999|ICD10CM|Inj unsp blood vessel at ankle and foot level, unsp leg|Inj unsp blood vessel at ankle and foot level, unsp leg +C2869320|T037|HT|S95.999|ICD10CM|Other specified injury of unspecified blood vessel at ankle and foot level, unspecified leg|Other specified injury of unspecified blood vessel at ankle and foot level, unspecified leg +C2869321|T037|AB|S95.999A|ICD10CM|Inj unsp blood vessel at ank/ft level, unsp leg, init|Inj unsp blood vessel at ank/ft level, unsp leg, init +C2869322|T037|AB|S95.999D|ICD10CM|Inj unsp blood vessel at ank/ft level, unsp leg, subs|Inj unsp blood vessel at ank/ft level, unsp leg, subs +C2869323|T037|AB|S95.999S|ICD10CM|Inj unsp blood vessel at ank/ft level, unsp leg, sequela|Inj unsp blood vessel at ank/ft level, unsp leg, sequela +C2869323|T037|PT|S95.999S|ICD10CM|Other specified injury of unspecified blood vessel at ankle and foot level, unspecified leg, sequela|Other specified injury of unspecified blood vessel at ankle and foot level, unspecified leg, sequela +C0451863|T037|HT|S96|ICD10|Injury of muscle and tendon at ankle and foot level|Injury of muscle and tendon at ankle and foot level +C0451863|T037|HT|S96|ICD10CM|Injury of muscle and tendon at ankle and foot level|Injury of muscle and tendon at ankle and foot level +C0451863|T037|AB|S96|ICD10CM|Injury of muscle and tendon at ankle and foot level|Injury of muscle and tendon at ankle and foot level +C0451864|T037|AB|S96.0|ICD10CM|Injury of msl/tnd lng flexor muscle of toe at ank/ft level|Injury of msl/tnd lng flexor muscle of toe at ank/ft level +C0451864|T037|HT|S96.0|ICD10CM|Injury of muscle and tendon of long flexor muscle of toe at ankle and foot level|Injury of muscle and tendon of long flexor muscle of toe at ankle and foot level +C0451864|T037|PT|S96.0|ICD10|Injury of muscle and tendon of long flexor muscle of toe at ankle and foot level|Injury of muscle and tendon of long flexor muscle of toe at ankle and foot level +C2869324|T037|AB|S96.00|ICD10CM|Unsp inj msl/tnd lng flexor muscle of toe at ank/ft level|Unsp inj msl/tnd lng flexor muscle of toe at ank/ft level +C2869324|T037|HT|S96.00|ICD10CM|Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level|Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level +C2869325|T037|AB|S96.001|ICD10CM|Unsp inj msl/tnd lng flxr msl of toe at ank/ft level, r foot|Unsp inj msl/tnd lng flxr msl of toe at ank/ft level, r foot +C2869326|T037|AB|S96.001A|ICD10CM|Unsp inj msl/tnd lng flxr msl toe at ank/ft lev, r ft, init|Unsp inj msl/tnd lng flxr msl toe at ank/ft lev, r ft, init +C2869327|T037|AB|S96.001D|ICD10CM|Unsp inj msl/tnd lng flxr msl toe at ank/ft lev, r ft, subs|Unsp inj msl/tnd lng flxr msl toe at ank/ft lev, r ft, subs +C2869328|T037|AB|S96.001S|ICD10CM|Unsp inj msl/tnd lng flxr msl toe at ank/ft lev, r ft, sqla|Unsp inj msl/tnd lng flxr msl toe at ank/ft lev, r ft, sqla +C2869329|T037|AB|S96.002|ICD10CM|Unsp inj msl/tnd lng flxr msl of toe at ank/ft level, l foot|Unsp inj msl/tnd lng flxr msl of toe at ank/ft level, l foot +C2869330|T037|AB|S96.002A|ICD10CM|Unsp inj msl/tnd lng flxr msl toe at ank/ft lev, l ft, init|Unsp inj msl/tnd lng flxr msl toe at ank/ft lev, l ft, init +C2869331|T037|AB|S96.002D|ICD10CM|Unsp inj msl/tnd lng flxr msl toe at ank/ft lev, l ft, subs|Unsp inj msl/tnd lng flxr msl toe at ank/ft lev, l ft, subs +C2869332|T037|AB|S96.002S|ICD10CM|Unsp inj msl/tnd lng flxr msl toe at ank/ft lev, l ft, sqla|Unsp inj msl/tnd lng flxr msl toe at ank/ft lev, l ft, sqla +C2869333|T037|AB|S96.009|ICD10CM|Unsp inj msl/tnd lng flxr msl toe at ank/ft level, unsp foot|Unsp inj msl/tnd lng flxr msl toe at ank/ft level, unsp foot +C2869334|T037|AB|S96.009A|ICD10CM|Unsp inj msl/tnd lng flxr msl toe at ank/ft lev,unsp ft,init|Unsp inj msl/tnd lng flxr msl toe at ank/ft lev,unsp ft,init +C2869335|T037|AB|S96.009D|ICD10CM|Unsp inj msl/tnd lng flxr msl toe at ank/ft lev,unsp ft,subs|Unsp inj msl/tnd lng flxr msl toe at ank/ft lev,unsp ft,subs +C2869336|T037|AB|S96.009S|ICD10CM|Unsp inj msl/tnd lng flxr msl toe at ank/ft lev,unsp ft,sqla|Unsp inj msl/tnd lng flxr msl toe at ank/ft lev,unsp ft,sqla +C2869337|T037|AB|S96.01|ICD10CM|Strain of msl/tnd lng flexor muscle of toe at ank/ft level|Strain of msl/tnd lng flexor muscle of toe at ank/ft level +C2869337|T037|HT|S96.01|ICD10CM|Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level|Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level +C2869338|T037|AB|S96.011|ICD10CM|Strain msl/tnd lng flxr msl of toe at ank/ft level, r foot|Strain msl/tnd lng flxr msl of toe at ank/ft level, r foot +C2869338|T037|HT|S96.011|ICD10CM|Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot|Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot +C2869339|T037|AB|S96.011A|ICD10CM|Strain msl/tnd lng flxr msl toe at ank/ft lev, r foot, init|Strain msl/tnd lng flxr msl toe at ank/ft lev, r foot, init +C2869340|T037|AB|S96.011D|ICD10CM|Strain msl/tnd lng flxr msl toe at ank/ft lev, r foot, subs|Strain msl/tnd lng flxr msl toe at ank/ft lev, r foot, subs +C2869341|T037|AB|S96.011S|ICD10CM|Strain msl/tnd lng flxr msl toe at ank/ft lev, r foot, sqla|Strain msl/tnd lng flxr msl toe at ank/ft lev, r foot, sqla +C2869342|T037|AB|S96.012|ICD10CM|Strain msl/tnd lng flxr msl of toe at ank/ft level, l foot|Strain msl/tnd lng flxr msl of toe at ank/ft level, l foot +C2869342|T037|HT|S96.012|ICD10CM|Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot|Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot +C2869343|T037|AB|S96.012A|ICD10CM|Strain msl/tnd lng flxr msl toe at ank/ft lev, l foot, init|Strain msl/tnd lng flxr msl toe at ank/ft lev, l foot, init +C2869344|T037|AB|S96.012D|ICD10CM|Strain msl/tnd lng flxr msl toe at ank/ft lev, l foot, subs|Strain msl/tnd lng flxr msl toe at ank/ft lev, l foot, subs +C2869345|T037|AB|S96.012S|ICD10CM|Strain msl/tnd lng flxr msl toe at ank/ft lev, l foot, sqla|Strain msl/tnd lng flxr msl toe at ank/ft lev, l foot, sqla +C2869345|T037|PT|S96.012S|ICD10CM|Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, sequela|Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, sequela +C2869346|T037|AB|S96.019|ICD10CM|Strain msl/tnd lng flxr msl toe at ank/ft level, unsp foot|Strain msl/tnd lng flxr msl toe at ank/ft level, unsp foot +C2869346|T037|HT|S96.019|ICD10CM|Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot|Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot +C2869347|T037|AB|S96.019A|ICD10CM|Strain msl/tnd lng flxr msl toe at ank/ft lev, unsp ft, init|Strain msl/tnd lng flxr msl toe at ank/ft lev, unsp ft, init +C2869348|T037|AB|S96.019D|ICD10CM|Strain msl/tnd lng flxr msl toe at ank/ft lev, unsp ft, subs|Strain msl/tnd lng flxr msl toe at ank/ft lev, unsp ft, subs +C2869349|T037|AB|S96.019S|ICD10CM|Strain msl/tnd lng flxr msl toe at ank/ft lev, unsp ft, sqla|Strain msl/tnd lng flxr msl toe at ank/ft lev, unsp ft, sqla +C2869350|T037|AB|S96.02|ICD10CM|Lacerat msl/tnd lng flexor muscle of toe at ank/ft level|Lacerat msl/tnd lng flexor muscle of toe at ank/ft level +C2869350|T037|HT|S96.02|ICD10CM|Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level|Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level +C2869351|T037|AB|S96.021|ICD10CM|Lacerat msl/tnd lng flxr msl of toe at ank/ft level, r foot|Lacerat msl/tnd lng flxr msl of toe at ank/ft level, r foot +C2869351|T037|HT|S96.021|ICD10CM|Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot|Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot +C2869352|T037|AB|S96.021A|ICD10CM|Lacerat msl/tnd lng flxr msl toe at ank/ft lev, r foot, init|Lacerat msl/tnd lng flxr msl toe at ank/ft lev, r foot, init +C2869353|T037|AB|S96.021D|ICD10CM|Lacerat msl/tnd lng flxr msl toe at ank/ft lev, r foot, subs|Lacerat msl/tnd lng flxr msl toe at ank/ft lev, r foot, subs +C2869354|T037|AB|S96.021S|ICD10CM|Lacerat msl/tnd lng flxr msl toe at ank/ft lev, r foot, sqla|Lacerat msl/tnd lng flxr msl toe at ank/ft lev, r foot, sqla +C2869355|T037|AB|S96.022|ICD10CM|Lacerat msl/tnd lng flxr msl of toe at ank/ft level, l foot|Lacerat msl/tnd lng flxr msl of toe at ank/ft level, l foot +C2869355|T037|HT|S96.022|ICD10CM|Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot|Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot +C2869356|T037|AB|S96.022A|ICD10CM|Lacerat msl/tnd lng flxr msl toe at ank/ft lev, l foot, init|Lacerat msl/tnd lng flxr msl toe at ank/ft lev, l foot, init +C2869357|T037|AB|S96.022D|ICD10CM|Lacerat msl/tnd lng flxr msl toe at ank/ft lev, l foot, subs|Lacerat msl/tnd lng flxr msl toe at ank/ft lev, l foot, subs +C2869358|T037|AB|S96.022S|ICD10CM|Lacerat msl/tnd lng flxr msl toe at ank/ft lev, l foot, sqla|Lacerat msl/tnd lng flxr msl toe at ank/ft lev, l foot, sqla +C2869359|T037|AB|S96.029|ICD10CM|Lacerat msl/tnd lng flxr msl toe at ank/ft level, unsp foot|Lacerat msl/tnd lng flxr msl toe at ank/ft level, unsp foot +C2869360|T037|AB|S96.029A|ICD10CM|Lacerat msl/tnd lng flxr msl toe at ank/ft lev,unsp ft, init|Lacerat msl/tnd lng flxr msl toe at ank/ft lev,unsp ft, init +C2869361|T037|AB|S96.029D|ICD10CM|Lacerat msl/tnd lng flxr msl toe at ank/ft lev,unsp ft, subs|Lacerat msl/tnd lng flxr msl toe at ank/ft lev,unsp ft, subs +C2869362|T037|AB|S96.029S|ICD10CM|Lacerat msl/tnd lng flxr msl toe at ank/ft lev,unsp ft, sqla|Lacerat msl/tnd lng flxr msl toe at ank/ft lev,unsp ft, sqla +C2869363|T037|AB|S96.09|ICD10CM|Inj msl/tnd lng flexor muscle of toe at ankle and foot level|Inj msl/tnd lng flexor muscle of toe at ankle and foot level +C2869363|T037|HT|S96.09|ICD10CM|Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level|Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level +C2869364|T037|AB|S96.091|ICD10CM|Inj msl/tnd lng flexor muscle of toe at ank/ft level, r foot|Inj msl/tnd lng flexor muscle of toe at ank/ft level, r foot +C2869364|T037|HT|S96.091|ICD10CM|Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot|Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot +C2869365|T037|AB|S96.091A|ICD10CM|Inj msl/tnd lng flxr msl toe at ank/ft level, r foot, init|Inj msl/tnd lng flxr msl toe at ank/ft level, r foot, init +C2869366|T037|AB|S96.091D|ICD10CM|Inj msl/tnd lng flxr msl toe at ank/ft level, r foot, subs|Inj msl/tnd lng flxr msl toe at ank/ft level, r foot, subs +C2869367|T037|AB|S96.091S|ICD10CM|Inj msl/tnd lng flxr msl toe at ank/ft level, r foot, sqla|Inj msl/tnd lng flxr msl toe at ank/ft level, r foot, sqla +C2869368|T037|AB|S96.092|ICD10CM|Inj msl/tnd lng flexor muscle of toe at ank/ft level, l foot|Inj msl/tnd lng flexor muscle of toe at ank/ft level, l foot +C2869368|T037|HT|S96.092|ICD10CM|Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot|Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot +C2869369|T037|AB|S96.092A|ICD10CM|Inj msl/tnd lng flxr msl toe at ank/ft level, l foot, init|Inj msl/tnd lng flxr msl toe at ank/ft level, l foot, init +C2869370|T037|AB|S96.092D|ICD10CM|Inj msl/tnd lng flxr msl toe at ank/ft level, l foot, subs|Inj msl/tnd lng flxr msl toe at ank/ft level, l foot, subs +C2869371|T037|AB|S96.092S|ICD10CM|Inj msl/tnd lng flxr msl toe at ank/ft level, l foot, sqla|Inj msl/tnd lng flxr msl toe at ank/ft level, l foot, sqla +C2869372|T037|AB|S96.099|ICD10CM|Inj msl/tnd lng flxr msl of toe at ank/ft level, unsp foot|Inj msl/tnd lng flxr msl of toe at ank/ft level, unsp foot +C2869373|T037|AB|S96.099A|ICD10CM|Inj msl/tnd lng flxr msl toe at ank/ft lev, unsp foot, init|Inj msl/tnd lng flxr msl toe at ank/ft lev, unsp foot, init +C2869374|T037|AB|S96.099D|ICD10CM|Inj msl/tnd lng flxr msl toe at ank/ft lev, unsp foot, subs|Inj msl/tnd lng flxr msl toe at ank/ft lev, unsp foot, subs +C2869375|T037|AB|S96.099S|ICD10CM|Inj msl/tnd lng flxr msl toe at ank/ft lev, unsp foot, sqla|Inj msl/tnd lng flxr msl toe at ank/ft lev, unsp foot, sqla +C0451865|T037|AB|S96.1|ICD10CM|Injury of msl/tnd lng extensor muscle of toe at ank/ft level|Injury of msl/tnd lng extensor muscle of toe at ank/ft level +C0451865|T037|HT|S96.1|ICD10CM|Injury of muscle and tendon of long extensor muscle of toe at ankle and foot level|Injury of muscle and tendon of long extensor muscle of toe at ankle and foot level +C0451865|T037|PT|S96.1|ICD10|Injury of muscle and tendon of long extensor muscle of toe at ankle and foot level|Injury of muscle and tendon of long extensor muscle of toe at ankle and foot level +C2869376|T037|AB|S96.10|ICD10CM|Unsp inj msl/tnd lng extensor muscle of toe at ank/ft level|Unsp inj msl/tnd lng extensor muscle of toe at ank/ft level +C2869376|T037|HT|S96.10|ICD10CM|Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level|Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level +C2869377|T037|AB|S96.101|ICD10CM|Unsp inj msl/tnd lng extn msl of toe at ank/ft level, r foot|Unsp inj msl/tnd lng extn msl of toe at ank/ft level, r foot +C2869378|T037|AB|S96.101A|ICD10CM|Unsp inj msl/tnd lng extn msl toe at ank/ft lev, r ft, init|Unsp inj msl/tnd lng extn msl toe at ank/ft lev, r ft, init +C2869379|T037|AB|S96.101D|ICD10CM|Unsp inj msl/tnd lng extn msl toe at ank/ft lev, r ft, subs|Unsp inj msl/tnd lng extn msl toe at ank/ft lev, r ft, subs +C2869380|T037|AB|S96.101S|ICD10CM|Unsp inj msl/tnd lng extn msl toe at ank/ft lev, r ft, sqla|Unsp inj msl/tnd lng extn msl toe at ank/ft lev, r ft, sqla +C2869381|T037|AB|S96.102|ICD10CM|Unsp inj msl/tnd lng extn msl of toe at ank/ft level, l foot|Unsp inj msl/tnd lng extn msl of toe at ank/ft level, l foot +C2869382|T037|AB|S96.102A|ICD10CM|Unsp inj msl/tnd lng extn msl toe at ank/ft lev, l ft, init|Unsp inj msl/tnd lng extn msl toe at ank/ft lev, l ft, init +C2869383|T037|AB|S96.102D|ICD10CM|Unsp inj msl/tnd lng extn msl toe at ank/ft lev, l ft, subs|Unsp inj msl/tnd lng extn msl toe at ank/ft lev, l ft, subs +C2869384|T037|AB|S96.102S|ICD10CM|Unsp inj msl/tnd lng extn msl toe at ank/ft lev, l ft, sqla|Unsp inj msl/tnd lng extn msl toe at ank/ft lev, l ft, sqla +C2869385|T037|AB|S96.109|ICD10CM|Unsp inj msl/tnd lng extn msl toe at ank/ft level, unsp foot|Unsp inj msl/tnd lng extn msl toe at ank/ft level, unsp foot +C2869386|T037|AB|S96.109A|ICD10CM|Unsp inj msl/tnd lng extn msl toe at ank/ft lev,unsp ft,init|Unsp inj msl/tnd lng extn msl toe at ank/ft lev,unsp ft,init +C2869387|T037|AB|S96.109D|ICD10CM|Unsp inj msl/tnd lng extn msl toe at ank/ft lev,unsp ft,subs|Unsp inj msl/tnd lng extn msl toe at ank/ft lev,unsp ft,subs +C2869388|T037|AB|S96.109S|ICD10CM|Unsp inj msl/tnd lng extn msl toe at ank/ft lev,unsp ft,sqla|Unsp inj msl/tnd lng extn msl toe at ank/ft lev,unsp ft,sqla +C2869389|T037|AB|S96.11|ICD10CM|Strain of msl/tnd lng extensor muscle of toe at ank/ft level|Strain of msl/tnd lng extensor muscle of toe at ank/ft level +C2869389|T037|HT|S96.11|ICD10CM|Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level|Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level +C2869390|T037|AB|S96.111|ICD10CM|Strain msl/tnd lng extn msl of toe at ank/ft level, r foot|Strain msl/tnd lng extn msl of toe at ank/ft level, r foot +C2869390|T037|HT|S96.111|ICD10CM|Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot|Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot +C2869391|T037|AB|S96.111A|ICD10CM|Strain msl/tnd lng extn msl toe at ank/ft lev, r foot, init|Strain msl/tnd lng extn msl toe at ank/ft lev, r foot, init +C2869392|T037|AB|S96.111D|ICD10CM|Strain msl/tnd lng extn msl toe at ank/ft lev, r foot, subs|Strain msl/tnd lng extn msl toe at ank/ft lev, r foot, subs +C2869393|T037|AB|S96.111S|ICD10CM|Strain msl/tnd lng extn msl toe at ank/ft lev, r foot, sqla|Strain msl/tnd lng extn msl toe at ank/ft lev, r foot, sqla +C2869394|T037|AB|S96.112|ICD10CM|Strain msl/tnd lng extn msl of toe at ank/ft level, l foot|Strain msl/tnd lng extn msl of toe at ank/ft level, l foot +C2869394|T037|HT|S96.112|ICD10CM|Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot|Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot +C2869395|T037|AB|S96.112A|ICD10CM|Strain msl/tnd lng extn msl toe at ank/ft lev, l foot, init|Strain msl/tnd lng extn msl toe at ank/ft lev, l foot, init +C2869396|T037|AB|S96.112D|ICD10CM|Strain msl/tnd lng extn msl toe at ank/ft lev, l foot, subs|Strain msl/tnd lng extn msl toe at ank/ft lev, l foot, subs +C2869397|T037|AB|S96.112S|ICD10CM|Strain msl/tnd lng extn msl toe at ank/ft lev, l foot, sqla|Strain msl/tnd lng extn msl toe at ank/ft lev, l foot, sqla +C2869398|T037|AB|S96.119|ICD10CM|Strain msl/tnd lng extn msl toe at ank/ft level, unsp foot|Strain msl/tnd lng extn msl toe at ank/ft level, unsp foot +C2869398|T037|HT|S96.119|ICD10CM|Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot|Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot +C2869399|T037|AB|S96.119A|ICD10CM|Strain msl/tnd lng extn msl toe at ank/ft lev, unsp ft, init|Strain msl/tnd lng extn msl toe at ank/ft lev, unsp ft, init +C2869400|T037|AB|S96.119D|ICD10CM|Strain msl/tnd lng extn msl toe at ank/ft lev, unsp ft, subs|Strain msl/tnd lng extn msl toe at ank/ft lev, unsp ft, subs +C2869401|T037|AB|S96.119S|ICD10CM|Strain msl/tnd lng extn msl toe at ank/ft lev, unsp ft, sqla|Strain msl/tnd lng extn msl toe at ank/ft lev, unsp ft, sqla +C2869402|T037|AB|S96.12|ICD10CM|Lacerat msl/tnd lng extensor muscle of toe at ank/ft level|Lacerat msl/tnd lng extensor muscle of toe at ank/ft level +C2869402|T037|HT|S96.12|ICD10CM|Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level|Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level +C2869403|T037|AB|S96.121|ICD10CM|Lacerat msl/tnd lng extn msl of toe at ank/ft level, r foot|Lacerat msl/tnd lng extn msl of toe at ank/ft level, r foot +C2869403|T037|HT|S96.121|ICD10CM|Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot|Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot +C2869404|T037|AB|S96.121A|ICD10CM|Lacerat msl/tnd lng extn msl toe at ank/ft lev, r foot, init|Lacerat msl/tnd lng extn msl toe at ank/ft lev, r foot, init +C2869405|T037|AB|S96.121D|ICD10CM|Lacerat msl/tnd lng extn msl toe at ank/ft lev, r foot, subs|Lacerat msl/tnd lng extn msl toe at ank/ft lev, r foot, subs +C2869406|T037|AB|S96.121S|ICD10CM|Lacerat msl/tnd lng extn msl toe at ank/ft lev, r foot, sqla|Lacerat msl/tnd lng extn msl toe at ank/ft lev, r foot, sqla +C2869407|T037|AB|S96.122|ICD10CM|Lacerat msl/tnd lng extn msl of toe at ank/ft level, l foot|Lacerat msl/tnd lng extn msl of toe at ank/ft level, l foot +C2869407|T037|HT|S96.122|ICD10CM|Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot|Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot +C2869408|T037|AB|S96.122A|ICD10CM|Lacerat msl/tnd lng extn msl toe at ank/ft lev, l foot, init|Lacerat msl/tnd lng extn msl toe at ank/ft lev, l foot, init +C2869409|T037|AB|S96.122D|ICD10CM|Lacerat msl/tnd lng extn msl toe at ank/ft lev, l foot, subs|Lacerat msl/tnd lng extn msl toe at ank/ft lev, l foot, subs +C2869410|T037|AB|S96.122S|ICD10CM|Lacerat msl/tnd lng extn msl toe at ank/ft lev, l foot, sqla|Lacerat msl/tnd lng extn msl toe at ank/ft lev, l foot, sqla +C2869411|T037|AB|S96.129|ICD10CM|Lacerat msl/tnd lng extn msl toe at ank/ft level, unsp foot|Lacerat msl/tnd lng extn msl toe at ank/ft level, unsp foot +C2869412|T037|AB|S96.129A|ICD10CM|Lacerat msl/tnd lng extn msl toe at ank/ft lev,unsp ft, init|Lacerat msl/tnd lng extn msl toe at ank/ft lev,unsp ft, init +C2869413|T037|AB|S96.129D|ICD10CM|Lacerat msl/tnd lng extn msl toe at ank/ft lev,unsp ft, subs|Lacerat msl/tnd lng extn msl toe at ank/ft lev,unsp ft, subs +C2869414|T037|AB|S96.129S|ICD10CM|Lacerat msl/tnd lng extn msl toe at ank/ft lev,unsp ft, sqla|Lacerat msl/tnd lng extn msl toe at ank/ft lev,unsp ft, sqla +C2869415|T037|AB|S96.19|ICD10CM|Inj msl/tnd lng extensor muscle of toe at ank/ft level|Inj msl/tnd lng extensor muscle of toe at ank/ft level +C2869415|T037|HT|S96.19|ICD10CM|Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level|Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level +C2869416|T037|AB|S96.191|ICD10CM|Inj msl/tnd lng extn muscle of toe at ank/ft level, r foot|Inj msl/tnd lng extn muscle of toe at ank/ft level, r foot +C2869417|T037|AB|S96.191A|ICD10CM|Inj msl/tnd lng extn msl toe at ank/ft level, r foot, init|Inj msl/tnd lng extn msl toe at ank/ft level, r foot, init +C2869418|T037|AB|S96.191D|ICD10CM|Inj msl/tnd lng extn msl toe at ank/ft level, r foot, subs|Inj msl/tnd lng extn msl toe at ank/ft level, r foot, subs +C2869419|T037|AB|S96.191S|ICD10CM|Inj msl/tnd lng extn msl toe at ank/ft level, r foot, sqla|Inj msl/tnd lng extn msl toe at ank/ft level, r foot, sqla +C2869420|T037|AB|S96.192|ICD10CM|Inj msl/tnd lng extn muscle of toe at ank/ft level, l foot|Inj msl/tnd lng extn muscle of toe at ank/ft level, l foot +C2869421|T037|AB|S96.192A|ICD10CM|Inj msl/tnd lng extn msl toe at ank/ft level, l foot, init|Inj msl/tnd lng extn msl toe at ank/ft level, l foot, init +C2869422|T037|AB|S96.192D|ICD10CM|Inj msl/tnd lng extn msl toe at ank/ft level, l foot, subs|Inj msl/tnd lng extn msl toe at ank/ft level, l foot, subs +C2869423|T037|AB|S96.192S|ICD10CM|Inj msl/tnd lng extn msl toe at ank/ft level, l foot, sqla|Inj msl/tnd lng extn msl toe at ank/ft level, l foot, sqla +C2869424|T037|AB|S96.199|ICD10CM|Inj msl/tnd lng extn msl of toe at ank/ft level, unsp foot|Inj msl/tnd lng extn msl of toe at ank/ft level, unsp foot +C2869425|T037|AB|S96.199A|ICD10CM|Inj msl/tnd lng extn msl toe at ank/ft lev, unsp foot, init|Inj msl/tnd lng extn msl toe at ank/ft lev, unsp foot, init +C2869426|T037|AB|S96.199D|ICD10CM|Inj msl/tnd lng extn msl toe at ank/ft lev, unsp foot, subs|Inj msl/tnd lng extn msl toe at ank/ft lev, unsp foot, subs +C2869427|T037|AB|S96.199S|ICD10CM|Inj msl/tnd lng extn msl toe at ank/ft lev, unsp foot, sqla|Inj msl/tnd lng extn msl toe at ank/ft lev, unsp foot, sqla +C0495975|T037|AB|S96.2|ICD10CM|Injury of intrinsic msl/tnd at ankle and foot level|Injury of intrinsic msl/tnd at ankle and foot level +C0495975|T037|HT|S96.2|ICD10CM|Injury of intrinsic muscle and tendon at ankle and foot level|Injury of intrinsic muscle and tendon at ankle and foot level +C0495975|T037|PT|S96.2|ICD10|Injury of intrinsic muscle and tendon at ankle and foot level|Injury of intrinsic muscle and tendon at ankle and foot level +C2869428|T037|AB|S96.20|ICD10CM|Unsp injury of intrinsic msl/tnd at ankle and foot level|Unsp injury of intrinsic msl/tnd at ankle and foot level +C2869428|T037|HT|S96.20|ICD10CM|Unspecified injury of intrinsic muscle and tendon at ankle and foot level|Unspecified injury of intrinsic muscle and tendon at ankle and foot level +C2869429|T037|AB|S96.201|ICD10CM|Unsp injury of intrinsic msl/tnd at ank/ft level, right foot|Unsp injury of intrinsic msl/tnd at ank/ft level, right foot +C2869429|T037|HT|S96.201|ICD10CM|Unspecified injury of intrinsic muscle and tendon at ankle and foot level, right foot|Unspecified injury of intrinsic muscle and tendon at ankle and foot level, right foot +C2869430|T037|AB|S96.201A|ICD10CM|Unsp inj intrinsic msl/tnd at ank/ft level, r foot, init|Unsp inj intrinsic msl/tnd at ank/ft level, r foot, init +C2869431|T037|AB|S96.201D|ICD10CM|Unsp inj intrinsic msl/tnd at ank/ft level, r foot, subs|Unsp inj intrinsic msl/tnd at ank/ft level, r foot, subs +C2869432|T037|AB|S96.201S|ICD10CM|Unsp inj intrinsic msl/tnd at ank/ft level, r foot, sequela|Unsp inj intrinsic msl/tnd at ank/ft level, r foot, sequela +C2869432|T037|PT|S96.201S|ICD10CM|Unspecified injury of intrinsic muscle and tendon at ankle and foot level, right foot, sequela|Unspecified injury of intrinsic muscle and tendon at ankle and foot level, right foot, sequela +C2869433|T037|AB|S96.202|ICD10CM|Unsp injury of intrinsic msl/tnd at ank/ft level, left foot|Unsp injury of intrinsic msl/tnd at ank/ft level, left foot +C2869433|T037|HT|S96.202|ICD10CM|Unspecified injury of intrinsic muscle and tendon at ankle and foot level, left foot|Unspecified injury of intrinsic muscle and tendon at ankle and foot level, left foot +C2869434|T037|AB|S96.202A|ICD10CM|Unsp inj intrinsic msl/tnd at ank/ft level, left foot, init|Unsp inj intrinsic msl/tnd at ank/ft level, left foot, init +C2869435|T037|AB|S96.202D|ICD10CM|Unsp inj intrinsic msl/tnd at ank/ft level, left foot, subs|Unsp inj intrinsic msl/tnd at ank/ft level, left foot, subs +C2869436|T037|AB|S96.202S|ICD10CM|Unsp inj intrns msl/tnd at ank/ft level, left foot, sequela|Unsp inj intrns msl/tnd at ank/ft level, left foot, sequela +C2869436|T037|PT|S96.202S|ICD10CM|Unspecified injury of intrinsic muscle and tendon at ankle and foot level, left foot, sequela|Unspecified injury of intrinsic muscle and tendon at ankle and foot level, left foot, sequela +C2869437|T037|AB|S96.209|ICD10CM|Unsp injury of intrinsic msl/tnd at ank/ft level, unsp foot|Unsp injury of intrinsic msl/tnd at ank/ft level, unsp foot +C2869437|T037|HT|S96.209|ICD10CM|Unspecified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot|Unspecified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot +C2869438|T037|AB|S96.209A|ICD10CM|Unsp inj intrinsic msl/tnd at ank/ft level, unsp foot, init|Unsp inj intrinsic msl/tnd at ank/ft level, unsp foot, init +C2869439|T037|AB|S96.209D|ICD10CM|Unsp inj intrinsic msl/tnd at ank/ft level, unsp foot, subs|Unsp inj intrinsic msl/tnd at ank/ft level, unsp foot, subs +C2869440|T037|AB|S96.209S|ICD10CM|Unsp inj intrns msl/tnd at ank/ft level, unsp foot, sequela|Unsp inj intrns msl/tnd at ank/ft level, unsp foot, sequela +C2869440|T037|PT|S96.209S|ICD10CM|Unspecified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, sequela|Unspecified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, sequela +C2869441|T037|AB|S96.21|ICD10CM|Strain of intrinsic msl/tnd at ankle and foot level|Strain of intrinsic msl/tnd at ankle and foot level +C2869441|T037|HT|S96.21|ICD10CM|Strain of intrinsic muscle and tendon at ankle and foot level|Strain of intrinsic muscle and tendon at ankle and foot level +C2869442|T037|AB|S96.211|ICD10CM|Strain of intrinsic msl/tnd at ank/ft level, right foot|Strain of intrinsic msl/tnd at ank/ft level, right foot +C2869442|T037|HT|S96.211|ICD10CM|Strain of intrinsic muscle and tendon at ankle and foot level, right foot|Strain of intrinsic muscle and tendon at ankle and foot level, right foot +C2869443|T037|AB|S96.211A|ICD10CM|Strain of intrinsic msl/tnd at ank/ft level, r foot, init|Strain of intrinsic msl/tnd at ank/ft level, r foot, init +C2869443|T037|PT|S96.211A|ICD10CM|Strain of intrinsic muscle and tendon at ankle and foot level, right foot, initial encounter|Strain of intrinsic muscle and tendon at ankle and foot level, right foot, initial encounter +C2869444|T037|AB|S96.211D|ICD10CM|Strain of intrinsic msl/tnd at ank/ft level, r foot, subs|Strain of intrinsic msl/tnd at ank/ft level, r foot, subs +C2869444|T037|PT|S96.211D|ICD10CM|Strain of intrinsic muscle and tendon at ankle and foot level, right foot, subsequent encounter|Strain of intrinsic muscle and tendon at ankle and foot level, right foot, subsequent encounter +C2869445|T037|AB|S96.211S|ICD10CM|Strain of intrinsic msl/tnd at ank/ft level, r foot, sequela|Strain of intrinsic msl/tnd at ank/ft level, r foot, sequela +C2869445|T037|PT|S96.211S|ICD10CM|Strain of intrinsic muscle and tendon at ankle and foot level, right foot, sequela|Strain of intrinsic muscle and tendon at ankle and foot level, right foot, sequela +C2869446|T037|AB|S96.212|ICD10CM|Strain of intrinsic msl/tnd at ank/ft level, left foot|Strain of intrinsic msl/tnd at ank/ft level, left foot +C2869446|T037|HT|S96.212|ICD10CM|Strain of intrinsic muscle and tendon at ankle and foot level, left foot|Strain of intrinsic muscle and tendon at ankle and foot level, left foot +C2869447|T037|AB|S96.212A|ICD10CM|Strain of intrinsic msl/tnd at ank/ft level, left foot, init|Strain of intrinsic msl/tnd at ank/ft level, left foot, init +C2869447|T037|PT|S96.212A|ICD10CM|Strain of intrinsic muscle and tendon at ankle and foot level, left foot, initial encounter|Strain of intrinsic muscle and tendon at ankle and foot level, left foot, initial encounter +C2869448|T037|AB|S96.212D|ICD10CM|Strain of intrinsic msl/tnd at ank/ft level, left foot, subs|Strain of intrinsic msl/tnd at ank/ft level, left foot, subs +C2869448|T037|PT|S96.212D|ICD10CM|Strain of intrinsic muscle and tendon at ankle and foot level, left foot, subsequent encounter|Strain of intrinsic muscle and tendon at ankle and foot level, left foot, subsequent encounter +C2869449|T037|PT|S96.212S|ICD10CM|Strain of intrinsic muscle and tendon at ankle and foot level, left foot, sequela|Strain of intrinsic muscle and tendon at ankle and foot level, left foot, sequela +C2869449|T037|AB|S96.212S|ICD10CM|Strain of intrns msl/tnd at ank/ft level, left foot, sequela|Strain of intrns msl/tnd at ank/ft level, left foot, sequela +C2869450|T037|AB|S96.219|ICD10CM|Strain of intrinsic msl/tnd at ank/ft level, unsp foot|Strain of intrinsic msl/tnd at ank/ft level, unsp foot +C2869450|T037|HT|S96.219|ICD10CM|Strain of intrinsic muscle and tendon at ankle and foot level, unspecified foot|Strain of intrinsic muscle and tendon at ankle and foot level, unspecified foot +C2869451|T037|AB|S96.219A|ICD10CM|Strain of intrinsic msl/tnd at ank/ft level, unsp foot, init|Strain of intrinsic msl/tnd at ank/ft level, unsp foot, init +C2869451|T037|PT|S96.219A|ICD10CM|Strain of intrinsic muscle and tendon at ankle and foot level, unspecified foot, initial encounter|Strain of intrinsic muscle and tendon at ankle and foot level, unspecified foot, initial encounter +C2869452|T037|AB|S96.219D|ICD10CM|Strain of intrinsic msl/tnd at ank/ft level, unsp foot, subs|Strain of intrinsic msl/tnd at ank/ft level, unsp foot, subs +C2869453|T037|PT|S96.219S|ICD10CM|Strain of intrinsic muscle and tendon at ankle and foot level, unspecified foot, sequela|Strain of intrinsic muscle and tendon at ankle and foot level, unspecified foot, sequela +C2869453|T037|AB|S96.219S|ICD10CM|Strain of intrns msl/tnd at ank/ft level, unsp foot, sequela|Strain of intrns msl/tnd at ank/ft level, unsp foot, sequela +C2869454|T037|AB|S96.22|ICD10CM|Laceration of intrinsic msl/tnd at ankle and foot level|Laceration of intrinsic msl/tnd at ankle and foot level +C2869454|T037|HT|S96.22|ICD10CM|Laceration of intrinsic muscle and tendon at ankle and foot level|Laceration of intrinsic muscle and tendon at ankle and foot level +C2869455|T037|AB|S96.221|ICD10CM|Laceration of intrinsic msl/tnd at ank/ft level, right foot|Laceration of intrinsic msl/tnd at ank/ft level, right foot +C2869455|T037|HT|S96.221|ICD10CM|Laceration of intrinsic muscle and tendon at ankle and foot level, right foot|Laceration of intrinsic muscle and tendon at ankle and foot level, right foot +C2869456|T037|AB|S96.221A|ICD10CM|Lacerat intrinsic msl/tnd at ank/ft level, right foot, init|Lacerat intrinsic msl/tnd at ank/ft level, right foot, init +C2869456|T037|PT|S96.221A|ICD10CM|Laceration of intrinsic muscle and tendon at ankle and foot level, right foot, initial encounter|Laceration of intrinsic muscle and tendon at ankle and foot level, right foot, initial encounter +C2869457|T037|AB|S96.221D|ICD10CM|Lacerat intrinsic msl/tnd at ank/ft level, right foot, subs|Lacerat intrinsic msl/tnd at ank/ft level, right foot, subs +C2869457|T037|PT|S96.221D|ICD10CM|Laceration of intrinsic muscle and tendon at ankle and foot level, right foot, subsequent encounter|Laceration of intrinsic muscle and tendon at ankle and foot level, right foot, subsequent encounter +C2869458|T037|AB|S96.221S|ICD10CM|Lacerat intrinsic msl/tnd at ank/ft level, r foot, sequela|Lacerat intrinsic msl/tnd at ank/ft level, r foot, sequela +C2869458|T037|PT|S96.221S|ICD10CM|Laceration of intrinsic muscle and tendon at ankle and foot level, right foot, sequela|Laceration of intrinsic muscle and tendon at ankle and foot level, right foot, sequela +C2869459|T037|AB|S96.222|ICD10CM|Laceration of intrinsic msl/tnd at ank/ft level, left foot|Laceration of intrinsic msl/tnd at ank/ft level, left foot +C2869459|T037|HT|S96.222|ICD10CM|Laceration of intrinsic muscle and tendon at ankle and foot level, left foot|Laceration of intrinsic muscle and tendon at ankle and foot level, left foot +C2869460|T037|AB|S96.222A|ICD10CM|Lacerat intrinsic msl/tnd at ank/ft level, left foot, init|Lacerat intrinsic msl/tnd at ank/ft level, left foot, init +C2869460|T037|PT|S96.222A|ICD10CM|Laceration of intrinsic muscle and tendon at ankle and foot level, left foot, initial encounter|Laceration of intrinsic muscle and tendon at ankle and foot level, left foot, initial encounter +C2869461|T037|AB|S96.222D|ICD10CM|Lacerat intrinsic msl/tnd at ank/ft level, left foot, subs|Lacerat intrinsic msl/tnd at ank/ft level, left foot, subs +C2869461|T037|PT|S96.222D|ICD10CM|Laceration of intrinsic muscle and tendon at ankle and foot level, left foot, subsequent encounter|Laceration of intrinsic muscle and tendon at ankle and foot level, left foot, subsequent encounter +C2869462|T037|AB|S96.222S|ICD10CM|Lacerat intrns msl/tnd at ank/ft level, left foot, sequela|Lacerat intrns msl/tnd at ank/ft level, left foot, sequela +C2869462|T037|PT|S96.222S|ICD10CM|Laceration of intrinsic muscle and tendon at ankle and foot level, left foot, sequela|Laceration of intrinsic muscle and tendon at ankle and foot level, left foot, sequela +C2869463|T037|AB|S96.229|ICD10CM|Laceration of intrinsic msl/tnd at ank/ft level, unsp foot|Laceration of intrinsic msl/tnd at ank/ft level, unsp foot +C2869463|T037|HT|S96.229|ICD10CM|Laceration of intrinsic muscle and tendon at ankle and foot level, unspecified foot|Laceration of intrinsic muscle and tendon at ankle and foot level, unspecified foot +C2869464|T037|AB|S96.229A|ICD10CM|Lacerat intrinsic msl/tnd at ank/ft level, unsp foot, init|Lacerat intrinsic msl/tnd at ank/ft level, unsp foot, init +C2869465|T037|AB|S96.229D|ICD10CM|Lacerat intrinsic msl/tnd at ank/ft level, unsp foot, subs|Lacerat intrinsic msl/tnd at ank/ft level, unsp foot, subs +C2869466|T037|AB|S96.229S|ICD10CM|Lacerat intrns msl/tnd at ank/ft level, unsp foot, sequela|Lacerat intrns msl/tnd at ank/ft level, unsp foot, sequela +C2869466|T037|PT|S96.229S|ICD10CM|Laceration of intrinsic muscle and tendon at ankle and foot level, unspecified foot, sequela|Laceration of intrinsic muscle and tendon at ankle and foot level, unspecified foot, sequela +C2869467|T037|AB|S96.29|ICD10CM|Inj intrinsic muscle and tendon at ankle and foot level|Inj intrinsic muscle and tendon at ankle and foot level +C2869467|T037|HT|S96.29|ICD10CM|Other specified injury of intrinsic muscle and tendon at ankle and foot level|Other specified injury of intrinsic muscle and tendon at ankle and foot level +C2869468|T037|AB|S96.291|ICD10CM|Inj intrinsic msl/tnd at ankle and foot level, right foot|Inj intrinsic msl/tnd at ankle and foot level, right foot +C2869468|T037|HT|S96.291|ICD10CM|Other specified injury of intrinsic muscle and tendon at ankle and foot level, right foot|Other specified injury of intrinsic muscle and tendon at ankle and foot level, right foot +C2869469|T037|AB|S96.291A|ICD10CM|Inj intrinsic msl/tnd at ank/ft level, right foot, init|Inj intrinsic msl/tnd at ank/ft level, right foot, init +C2869470|T037|AB|S96.291D|ICD10CM|Inj intrinsic msl/tnd at ank/ft level, right foot, subs|Inj intrinsic msl/tnd at ank/ft level, right foot, subs +C2869471|T037|AB|S96.291S|ICD10CM|Inj intrinsic msl/tnd at ank/ft level, right foot, sequela|Inj intrinsic msl/tnd at ank/ft level, right foot, sequela +C2869471|T037|PT|S96.291S|ICD10CM|Other specified injury of intrinsic muscle and tendon at ankle and foot level, right foot, sequela|Other specified injury of intrinsic muscle and tendon at ankle and foot level, right foot, sequela +C2869472|T037|AB|S96.292|ICD10CM|Inj intrinsic msl/tnd at ankle and foot level, left foot|Inj intrinsic msl/tnd at ankle and foot level, left foot +C2869472|T037|HT|S96.292|ICD10CM|Other specified injury of intrinsic muscle and tendon at ankle and foot level, left foot|Other specified injury of intrinsic muscle and tendon at ankle and foot level, left foot +C2869473|T037|AB|S96.292A|ICD10CM|Inj intrinsic msl/tnd at ank/ft level, left foot, init|Inj intrinsic msl/tnd at ank/ft level, left foot, init +C2869474|T037|AB|S96.292D|ICD10CM|Inj intrinsic msl/tnd at ank/ft level, left foot, subs|Inj intrinsic msl/tnd at ank/ft level, left foot, subs +C2869475|T037|AB|S96.292S|ICD10CM|Inj intrinsic msl/tnd at ank/ft level, left foot, sequela|Inj intrinsic msl/tnd at ank/ft level, left foot, sequela +C2869475|T037|PT|S96.292S|ICD10CM|Other specified injury of intrinsic muscle and tendon at ankle and foot level, left foot, sequela|Other specified injury of intrinsic muscle and tendon at ankle and foot level, left foot, sequela +C2869476|T037|AB|S96.299|ICD10CM|Inj intrinsic msl/tnd at ankle and foot level, unsp foot|Inj intrinsic msl/tnd at ankle and foot level, unsp foot +C2869476|T037|HT|S96.299|ICD10CM|Other specified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot|Other specified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot +C2869477|T037|AB|S96.299A|ICD10CM|Inj intrinsic msl/tnd at ank/ft level, unsp foot, init|Inj intrinsic msl/tnd at ank/ft level, unsp foot, init +C2869478|T037|AB|S96.299D|ICD10CM|Inj intrinsic msl/tnd at ank/ft level, unsp foot, subs|Inj intrinsic msl/tnd at ank/ft level, unsp foot, subs +C2869479|T037|AB|S96.299S|ICD10CM|Inj intrinsic msl/tnd at ank/ft level, unsp foot, sequela|Inj intrinsic msl/tnd at ank/ft level, unsp foot, sequela +C0495976|T037|PT|S96.7|ICD10|Injury of multiple muscles and tendons at ankle and foot level|Injury of multiple muscles and tendons at ankle and foot level +C0478359|T037|AB|S96.8|ICD10CM|Injury of oth muscles and tendons at ankle and foot level|Injury of oth muscles and tendons at ankle and foot level +C0478359|T037|PT|S96.8|ICD10|Injury of other muscles and tendons at ankle and foot level|Injury of other muscles and tendons at ankle and foot level +C0478359|T037|HT|S96.8|ICD10CM|Injury of other specified muscles and tendons at ankle and foot level|Injury of other specified muscles and tendons at ankle and foot level +C2869480|T037|AB|S96.80|ICD10CM|Unsp injury of muscles and tendons at ankle and foot level|Unsp injury of muscles and tendons at ankle and foot level +C2869480|T037|HT|S96.80|ICD10CM|Unspecified injury of other specified muscles and tendons at ankle and foot level|Unspecified injury of other specified muscles and tendons at ankle and foot level +C2869481|T037|AB|S96.801|ICD10CM|Unsp injury of muscles and tendons at ank/ft level, r foot|Unsp injury of muscles and tendons at ank/ft level, r foot +C2869481|T037|HT|S96.801|ICD10CM|Unspecified injury of other specified muscles and tendons at ankle and foot level, right foot|Unspecified injury of other specified muscles and tendons at ankle and foot level, right foot +C2869482|T037|AB|S96.801A|ICD10CM|Unsp inj muscles and tendons at ank/ft level, r foot, init|Unsp inj muscles and tendons at ank/ft level, r foot, init +C2869483|T037|AB|S96.801D|ICD10CM|Unsp inj muscles and tendons at ank/ft level, r foot, subs|Unsp inj muscles and tendons at ank/ft level, r foot, subs +C2869484|T037|AB|S96.801S|ICD10CM|Unsp inj musc and tendons at ank/ft level, r foot, sequela|Unsp inj musc and tendons at ank/ft level, r foot, sequela +C2869485|T037|AB|S96.802|ICD10CM|Unsp inj muscles and tendons at ank/ft level, left foot|Unsp inj muscles and tendons at ank/ft level, left foot +C2869485|T037|HT|S96.802|ICD10CM|Unspecified injury of other specified muscles and tendons at ankle and foot level, left foot|Unspecified injury of other specified muscles and tendons at ankle and foot level, left foot +C2869486|T037|AB|S96.802A|ICD10CM|Unsp inj muscles and tendons at ank/ft level, l foot, init|Unsp inj muscles and tendons at ank/ft level, l foot, init +C2869487|T037|AB|S96.802D|ICD10CM|Unsp inj muscles and tendons at ank/ft level, l foot, subs|Unsp inj muscles and tendons at ank/ft level, l foot, subs +C2869488|T037|AB|S96.802S|ICD10CM|Unsp inj musc and tendons at ank/ft level, l foot, sequela|Unsp inj musc and tendons at ank/ft level, l foot, sequela +C2869489|T037|AB|S96.809|ICD10CM|Unsp inj muscles and tendons at ank/ft level, unsp foot|Unsp inj muscles and tendons at ank/ft level, unsp foot +C2869489|T037|HT|S96.809|ICD10CM|Unspecified injury of other specified muscles and tendons at ankle and foot level, unspecified foot|Unspecified injury of other specified muscles and tendons at ankle and foot level, unspecified foot +C2869490|T037|AB|S96.809A|ICD10CM|Unsp inj musc and tendons at ank/ft level, unsp foot, init|Unsp inj musc and tendons at ank/ft level, unsp foot, init +C2869491|T037|AB|S96.809D|ICD10CM|Unsp inj musc and tendons at ank/ft level, unsp foot, subs|Unsp inj musc and tendons at ank/ft level, unsp foot, subs +C2869492|T037|AB|S96.809S|ICD10CM|Unsp inj musc and tendons at ank/ft level, unsp foot, sqla|Unsp inj musc and tendons at ank/ft level, unsp foot, sqla +C2869493|T037|AB|S96.81|ICD10CM|Strain of oth muscles and tendons at ankle and foot level|Strain of oth muscles and tendons at ankle and foot level +C2869493|T037|HT|S96.81|ICD10CM|Strain of other specified muscles and tendons at ankle and foot level|Strain of other specified muscles and tendons at ankle and foot level +C2869494|T037|AB|S96.811|ICD10CM|Strain of muscles and tendons at ank/ft level, right foot|Strain of muscles and tendons at ank/ft level, right foot +C2869494|T037|HT|S96.811|ICD10CM|Strain of other specified muscles and tendons at ankle and foot level, right foot|Strain of other specified muscles and tendons at ankle and foot level, right foot +C2869495|T037|AB|S96.811A|ICD10CM|Strain of muscles and tendons at ank/ft level, r foot, init|Strain of muscles and tendons at ank/ft level, r foot, init +C2869495|T037|PT|S96.811A|ICD10CM|Strain of other specified muscles and tendons at ankle and foot level, right foot, initial encounter|Strain of other specified muscles and tendons at ankle and foot level, right foot, initial encounter +C2869496|T037|AB|S96.811D|ICD10CM|Strain of muscles and tendons at ank/ft level, r foot, subs|Strain of muscles and tendons at ank/ft level, r foot, subs +C2869497|T037|AB|S96.811S|ICD10CM|Strain muscles and tendons at ank/ft level, r foot, sequela|Strain muscles and tendons at ank/ft level, r foot, sequela +C2869497|T037|PT|S96.811S|ICD10CM|Strain of other specified muscles and tendons at ankle and foot level, right foot, sequela|Strain of other specified muscles and tendons at ankle and foot level, right foot, sequela +C2869498|T037|AB|S96.812|ICD10CM|Strain of muscles and tendons at ank/ft level, left foot|Strain of muscles and tendons at ank/ft level, left foot +C2869498|T037|HT|S96.812|ICD10CM|Strain of other specified muscles and tendons at ankle and foot level, left foot|Strain of other specified muscles and tendons at ankle and foot level, left foot +C2869499|T037|AB|S96.812A|ICD10CM|Strain of muscles and tendons at ank/ft level, l foot, init|Strain of muscles and tendons at ank/ft level, l foot, init +C2869499|T037|PT|S96.812A|ICD10CM|Strain of other specified muscles and tendons at ankle and foot level, left foot, initial encounter|Strain of other specified muscles and tendons at ankle and foot level, left foot, initial encounter +C2869500|T037|AB|S96.812D|ICD10CM|Strain of muscles and tendons at ank/ft level, l foot, subs|Strain of muscles and tendons at ank/ft level, l foot, subs +C2869501|T037|AB|S96.812S|ICD10CM|Strain muscles and tendons at ank/ft level, l foot, sequela|Strain muscles and tendons at ank/ft level, l foot, sequela +C2869501|T037|PT|S96.812S|ICD10CM|Strain of other specified muscles and tendons at ankle and foot level, left foot, sequela|Strain of other specified muscles and tendons at ankle and foot level, left foot, sequela +C2869502|T037|AB|S96.819|ICD10CM|Strain of muscles and tendons at ank/ft level, unsp foot|Strain of muscles and tendons at ank/ft level, unsp foot +C2869502|T037|HT|S96.819|ICD10CM|Strain of other specified muscles and tendons at ankle and foot level, unspecified foot|Strain of other specified muscles and tendons at ankle and foot level, unspecified foot +C2869614|T037|AB|S96.819A|ICD10CM|Strain muscles and tendons at ank/ft level, unsp foot, init|Strain muscles and tendons at ank/ft level, unsp foot, init +C2869615|T037|AB|S96.819D|ICD10CM|Strain muscles and tendons at ank/ft level, unsp foot, subs|Strain muscles and tendons at ank/ft level, unsp foot, subs +C2869616|T037|AB|S96.819S|ICD10CM|Strain musc and tendons at ank/ft level, unsp foot, sequela|Strain musc and tendons at ank/ft level, unsp foot, sequela +C2869616|T037|PT|S96.819S|ICD10CM|Strain of other specified muscles and tendons at ankle and foot level, unspecified foot, sequela|Strain of other specified muscles and tendons at ankle and foot level, unspecified foot, sequela +C2869617|T037|AB|S96.82|ICD10CM|Laceration of muscles and tendons at ankle and foot level|Laceration of muscles and tendons at ankle and foot level +C2869617|T037|HT|S96.82|ICD10CM|Laceration of other specified muscles and tendons at ankle and foot level|Laceration of other specified muscles and tendons at ankle and foot level +C2869618|T037|AB|S96.821|ICD10CM|Lacerat muscles and tendons at ank/ft level, right foot|Lacerat muscles and tendons at ank/ft level, right foot +C2869618|T037|HT|S96.821|ICD10CM|Laceration of other specified muscles and tendons at ankle and foot level, right foot|Laceration of other specified muscles and tendons at ankle and foot level, right foot +C2869619|T037|AB|S96.821A|ICD10CM|Lacerat muscles and tendons at ank/ft level, r foot, init|Lacerat muscles and tendons at ank/ft level, r foot, init +C2869620|T037|AB|S96.821D|ICD10CM|Lacerat muscles and tendons at ank/ft level, r foot, subs|Lacerat muscles and tendons at ank/ft level, r foot, subs +C2869621|T037|AB|S96.821S|ICD10CM|Lacerat muscles and tendons at ank/ft level, r foot, sequela|Lacerat muscles and tendons at ank/ft level, r foot, sequela +C2869621|T037|PT|S96.821S|ICD10CM|Laceration of other specified muscles and tendons at ankle and foot level, right foot, sequela|Laceration of other specified muscles and tendons at ankle and foot level, right foot, sequela +C2869622|T037|AB|S96.822|ICD10CM|Laceration of muscles and tendons at ank/ft level, left foot|Laceration of muscles and tendons at ank/ft level, left foot +C2869622|T037|HT|S96.822|ICD10CM|Laceration of other specified muscles and tendons at ankle and foot level, left foot|Laceration of other specified muscles and tendons at ankle and foot level, left foot +C2869623|T037|AB|S96.822A|ICD10CM|Lacerat muscles and tendons at ank/ft level, left foot, init|Lacerat muscles and tendons at ank/ft level, left foot, init +C2869624|T037|AB|S96.822D|ICD10CM|Lacerat muscles and tendons at ank/ft level, left foot, subs|Lacerat muscles and tendons at ank/ft level, left foot, subs +C2869625|T037|AB|S96.822S|ICD10CM|Lacerat muscles and tendons at ank/ft level, l foot, sequela|Lacerat muscles and tendons at ank/ft level, l foot, sequela +C2869625|T037|PT|S96.822S|ICD10CM|Laceration of other specified muscles and tendons at ankle and foot level, left foot, sequela|Laceration of other specified muscles and tendons at ankle and foot level, left foot, sequela +C2869626|T037|AB|S96.829|ICD10CM|Laceration of muscles and tendons at ank/ft level, unsp foot|Laceration of muscles and tendons at ank/ft level, unsp foot +C2869626|T037|HT|S96.829|ICD10CM|Laceration of other specified muscles and tendons at ankle and foot level, unspecified foot|Laceration of other specified muscles and tendons at ankle and foot level, unspecified foot +C2869627|T037|AB|S96.829A|ICD10CM|Lacerat muscles and tendons at ank/ft level, unsp foot, init|Lacerat muscles and tendons at ank/ft level, unsp foot, init +C2869628|T037|AB|S96.829D|ICD10CM|Lacerat muscles and tendons at ank/ft level, unsp foot, subs|Lacerat muscles and tendons at ank/ft level, unsp foot, subs +C2869629|T037|AB|S96.829S|ICD10CM|Lacerat musc and tendons at ank/ft level, unsp foot, sequela|Lacerat musc and tendons at ank/ft level, unsp foot, sequela +C2869629|T037|PT|S96.829S|ICD10CM|Laceration of other specified muscles and tendons at ankle and foot level, unspecified foot, sequela|Laceration of other specified muscles and tendons at ankle and foot level, unspecified foot, sequela +C2869630|T037|AB|S96.89|ICD10CM|Inj oth muscles and tendons at ankle and foot level|Inj oth muscles and tendons at ankle and foot level +C2869630|T037|HT|S96.89|ICD10CM|Other specified injury of other specified muscles and tendons at ankle and foot level|Other specified injury of other specified muscles and tendons at ankle and foot level +C2869631|T037|AB|S96.891|ICD10CM|Inj oth muscles and tendons at ank/ft level, right foot|Inj oth muscles and tendons at ank/ft level, right foot +C2869631|T037|HT|S96.891|ICD10CM|Other specified injury of other specified muscles and tendons at ankle and foot level, right foot|Other specified injury of other specified muscles and tendons at ankle and foot level, right foot +C2869632|T037|AB|S96.891A|ICD10CM|Inj oth muscles and tendons at ank/ft level, r foot, init|Inj oth muscles and tendons at ank/ft level, r foot, init +C2869633|T037|AB|S96.891D|ICD10CM|Inj oth muscles and tendons at ank/ft level, r foot, subs|Inj oth muscles and tendons at ank/ft level, r foot, subs +C2869634|T037|AB|S96.891S|ICD10CM|Inj oth muscles and tendons at ank/ft level, r foot, sequela|Inj oth muscles and tendons at ank/ft level, r foot, sequela +C2869635|T037|AB|S96.892|ICD10CM|Inj oth muscles and tendons at ank/ft level, left foot|Inj oth muscles and tendons at ank/ft level, left foot +C2869635|T037|HT|S96.892|ICD10CM|Other specified injury of other specified muscles and tendons at ankle and foot level, left foot|Other specified injury of other specified muscles and tendons at ankle and foot level, left foot +C2869636|T037|AB|S96.892A|ICD10CM|Inj oth muscles and tendons at ank/ft level, left foot, init|Inj oth muscles and tendons at ank/ft level, left foot, init +C2869637|T037|AB|S96.892D|ICD10CM|Inj oth muscles and tendons at ank/ft level, left foot, subs|Inj oth muscles and tendons at ank/ft level, left foot, subs +C2869638|T037|AB|S96.892S|ICD10CM|Inj oth muscles and tendons at ank/ft level, l foot, sequela|Inj oth muscles and tendons at ank/ft level, l foot, sequela +C2869639|T037|AB|S96.899|ICD10CM|Inj oth muscles and tendons at ank/ft level, unsp foot|Inj oth muscles and tendons at ank/ft level, unsp foot +C2869640|T037|AB|S96.899A|ICD10CM|Inj oth muscles and tendons at ank/ft level, unsp foot, init|Inj oth muscles and tendons at ank/ft level, unsp foot, init +C2869641|T037|AB|S96.899D|ICD10CM|Inj oth muscles and tendons at ank/ft level, unsp foot, subs|Inj oth muscles and tendons at ank/ft level, unsp foot, subs +C2869642|T037|AB|S96.899S|ICD10CM|Inj oth musc and tendons at ank/ft level, unsp foot, sequela|Inj oth musc and tendons at ank/ft level, unsp foot, sequela +C0451863|T037|AB|S96.9|ICD10CM|Injury of unsp muscle and tendon at ankle and foot level|Injury of unsp muscle and tendon at ankle and foot level +C0451863|T037|HT|S96.9|ICD10CM|Injury of unspecified muscle and tendon at ankle and foot level|Injury of unspecified muscle and tendon at ankle and foot level +C0451863|T037|PT|S96.9|ICD10|Injury of unspecified muscle and tendon at ankle and foot level|Injury of unspecified muscle and tendon at ankle and foot level +C2869643|T037|AB|S96.90|ICD10CM|Unsp injury of unsp msl/tnd at ankle and foot level|Unsp injury of unsp msl/tnd at ankle and foot level +C2869643|T037|HT|S96.90|ICD10CM|Unspecified injury of unspecified muscle and tendon at ankle and foot level|Unspecified injury of unspecified muscle and tendon at ankle and foot level +C2869644|T037|AB|S96.901|ICD10CM|Unsp injury of unsp msl/tnd at ank/ft level, right foot|Unsp injury of unsp msl/tnd at ank/ft level, right foot +C2869644|T037|HT|S96.901|ICD10CM|Unspecified injury of unspecified muscle and tendon at ankle and foot level, right foot|Unspecified injury of unspecified muscle and tendon at ankle and foot level, right foot +C2869645|T037|AB|S96.901A|ICD10CM|Unsp injury of unsp msl/tnd at ank/ft level, r foot, init|Unsp injury of unsp msl/tnd at ank/ft level, r foot, init +C2869646|T037|AB|S96.901D|ICD10CM|Unsp injury of unsp msl/tnd at ank/ft level, r foot, subs|Unsp injury of unsp msl/tnd at ank/ft level, r foot, subs +C2869647|T037|AB|S96.901S|ICD10CM|Unsp injury of unsp msl/tnd at ank/ft level, r foot, sequela|Unsp injury of unsp msl/tnd at ank/ft level, r foot, sequela +C2869647|T037|PT|S96.901S|ICD10CM|Unspecified injury of unspecified muscle and tendon at ankle and foot level, right foot, sequela|Unspecified injury of unspecified muscle and tendon at ankle and foot level, right foot, sequela +C2869648|T037|AB|S96.902|ICD10CM|Unsp injury of unsp msl/tnd at ank/ft level, left foot|Unsp injury of unsp msl/tnd at ank/ft level, left foot +C2869648|T037|HT|S96.902|ICD10CM|Unspecified injury of unspecified muscle and tendon at ankle and foot level, left foot|Unspecified injury of unspecified muscle and tendon at ankle and foot level, left foot +C2869649|T037|AB|S96.902A|ICD10CM|Unsp injury of unsp msl/tnd at ank/ft level, left foot, init|Unsp injury of unsp msl/tnd at ank/ft level, left foot, init +C2869650|T037|AB|S96.902D|ICD10CM|Unsp injury of unsp msl/tnd at ank/ft level, left foot, subs|Unsp injury of unsp msl/tnd at ank/ft level, left foot, subs +C2869651|T037|AB|S96.902S|ICD10CM|Unsp inj unsp msl/tnd at ank/ft level, left foot, sequela|Unsp inj unsp msl/tnd at ank/ft level, left foot, sequela +C2869651|T037|PT|S96.902S|ICD10CM|Unspecified injury of unspecified muscle and tendon at ankle and foot level, left foot, sequela|Unspecified injury of unspecified muscle and tendon at ankle and foot level, left foot, sequela +C2869652|T037|AB|S96.909|ICD10CM|Unsp injury of unsp msl/tnd at ank/ft level, unsp foot|Unsp injury of unsp msl/tnd at ank/ft level, unsp foot +C2869652|T037|HT|S96.909|ICD10CM|Unspecified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot|Unspecified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot +C2869653|T037|AB|S96.909A|ICD10CM|Unsp injury of unsp msl/tnd at ank/ft level, unsp foot, init|Unsp injury of unsp msl/tnd at ank/ft level, unsp foot, init +C2869654|T037|AB|S96.909D|ICD10CM|Unsp injury of unsp msl/tnd at ank/ft level, unsp foot, subs|Unsp injury of unsp msl/tnd at ank/ft level, unsp foot, subs +C2869655|T037|AB|S96.909S|ICD10CM|Unsp inj unsp msl/tnd at ank/ft level, unsp foot, sequela|Unsp inj unsp msl/tnd at ank/ft level, unsp foot, sequela +C2869656|T037|AB|S96.91|ICD10CM|Strain of unsp muscle and tendon at ankle and foot level|Strain of unsp muscle and tendon at ankle and foot level +C2869656|T037|HT|S96.91|ICD10CM|Strain of unspecified muscle and tendon at ankle and foot level|Strain of unspecified muscle and tendon at ankle and foot level +C2869657|T037|AB|S96.911|ICD10CM|Strain of unsp msl/tnd at ankle and foot level, right foot|Strain of unsp msl/tnd at ankle and foot level, right foot +C2869657|T037|HT|S96.911|ICD10CM|Strain of unspecified muscle and tendon at ankle and foot level, right foot|Strain of unspecified muscle and tendon at ankle and foot level, right foot +C2869658|T037|AB|S96.911A|ICD10CM|Strain of unsp msl/tnd at ank/ft level, right foot, init|Strain of unsp msl/tnd at ank/ft level, right foot, init +C2869658|T037|PT|S96.911A|ICD10CM|Strain of unspecified muscle and tendon at ankle and foot level, right foot, initial encounter|Strain of unspecified muscle and tendon at ankle and foot level, right foot, initial encounter +C2869659|T037|AB|S96.911D|ICD10CM|Strain of unsp msl/tnd at ank/ft level, right foot, subs|Strain of unsp msl/tnd at ank/ft level, right foot, subs +C2869659|T037|PT|S96.911D|ICD10CM|Strain of unspecified muscle and tendon at ankle and foot level, right foot, subsequent encounter|Strain of unspecified muscle and tendon at ankle and foot level, right foot, subsequent encounter +C2869660|T037|AB|S96.911S|ICD10CM|Strain of unsp msl/tnd at ank/ft level, right foot, sequela|Strain of unsp msl/tnd at ank/ft level, right foot, sequela +C2869660|T037|PT|S96.911S|ICD10CM|Strain of unspecified muscle and tendon at ankle and foot level, right foot, sequela|Strain of unspecified muscle and tendon at ankle and foot level, right foot, sequela +C2869661|T037|AB|S96.912|ICD10CM|Strain of unsp msl/tnd at ankle and foot level, left foot|Strain of unsp msl/tnd at ankle and foot level, left foot +C2869661|T037|HT|S96.912|ICD10CM|Strain of unspecified muscle and tendon at ankle and foot level, left foot|Strain of unspecified muscle and tendon at ankle and foot level, left foot +C2869662|T037|AB|S96.912A|ICD10CM|Strain of unsp msl/tnd at ank/ft level, left foot, init|Strain of unsp msl/tnd at ank/ft level, left foot, init +C2869662|T037|PT|S96.912A|ICD10CM|Strain of unspecified muscle and tendon at ankle and foot level, left foot, initial encounter|Strain of unspecified muscle and tendon at ankle and foot level, left foot, initial encounter +C2869663|T037|AB|S96.912D|ICD10CM|Strain of unsp msl/tnd at ank/ft level, left foot, subs|Strain of unsp msl/tnd at ank/ft level, left foot, subs +C2869663|T037|PT|S96.912D|ICD10CM|Strain of unspecified muscle and tendon at ankle and foot level, left foot, subsequent encounter|Strain of unspecified muscle and tendon at ankle and foot level, left foot, subsequent encounter +C2869664|T037|AB|S96.912S|ICD10CM|Strain of unsp msl/tnd at ank/ft level, left foot, sequela|Strain of unsp msl/tnd at ank/ft level, left foot, sequela +C2869664|T037|PT|S96.912S|ICD10CM|Strain of unspecified muscle and tendon at ankle and foot level, left foot, sequela|Strain of unspecified muscle and tendon at ankle and foot level, left foot, sequela +C2869665|T037|AB|S96.919|ICD10CM|Strain of unsp msl/tnd at ankle and foot level, unsp foot|Strain of unsp msl/tnd at ankle and foot level, unsp foot +C2869665|T037|HT|S96.919|ICD10CM|Strain of unspecified muscle and tendon at ankle and foot level, unspecified foot|Strain of unspecified muscle and tendon at ankle and foot level, unspecified foot +C2869666|T037|AB|S96.919A|ICD10CM|Strain of unsp msl/tnd at ank/ft level, unsp foot, init|Strain of unsp msl/tnd at ank/ft level, unsp foot, init +C2869666|T037|PT|S96.919A|ICD10CM|Strain of unspecified muscle and tendon at ankle and foot level, unspecified foot, initial encounter|Strain of unspecified muscle and tendon at ankle and foot level, unspecified foot, initial encounter +C2869667|T037|AB|S96.919D|ICD10CM|Strain of unsp msl/tnd at ank/ft level, unsp foot, subs|Strain of unsp msl/tnd at ank/ft level, unsp foot, subs +C2869668|T037|AB|S96.919S|ICD10CM|Strain of unsp msl/tnd at ank/ft level, unsp foot, sequela|Strain of unsp msl/tnd at ank/ft level, unsp foot, sequela +C2869668|T037|PT|S96.919S|ICD10CM|Strain of unspecified muscle and tendon at ankle and foot level, unspecified foot, sequela|Strain of unspecified muscle and tendon at ankle and foot level, unspecified foot, sequela +C2869669|T037|AB|S96.92|ICD10CM|Laceration of unsp muscle and tendon at ankle and foot level|Laceration of unsp muscle and tendon at ankle and foot level +C2869669|T037|HT|S96.92|ICD10CM|Laceration of unspecified muscle and tendon at ankle and foot level|Laceration of unspecified muscle and tendon at ankle and foot level +C2869670|T037|AB|S96.921|ICD10CM|Laceration of unsp msl/tnd at ank/ft level, right foot|Laceration of unsp msl/tnd at ank/ft level, right foot +C2869670|T037|HT|S96.921|ICD10CM|Laceration of unspecified muscle and tendon at ankle and foot level, right foot|Laceration of unspecified muscle and tendon at ankle and foot level, right foot +C2869671|T037|AB|S96.921A|ICD10CM|Laceration of unsp msl/tnd at ank/ft level, right foot, init|Laceration of unsp msl/tnd at ank/ft level, right foot, init +C2869671|T037|PT|S96.921A|ICD10CM|Laceration of unspecified muscle and tendon at ankle and foot level, right foot, initial encounter|Laceration of unspecified muscle and tendon at ankle and foot level, right foot, initial encounter +C2869672|T037|AB|S96.921D|ICD10CM|Laceration of unsp msl/tnd at ank/ft level, right foot, subs|Laceration of unsp msl/tnd at ank/ft level, right foot, subs +C2869673|T037|AB|S96.921S|ICD10CM|Lacerat unsp msl/tnd at ank/ft level, right foot, sequela|Lacerat unsp msl/tnd at ank/ft level, right foot, sequela +C2869673|T037|PT|S96.921S|ICD10CM|Laceration of unspecified muscle and tendon at ankle and foot level, right foot, sequela|Laceration of unspecified muscle and tendon at ankle and foot level, right foot, sequela +C2869674|T037|AB|S96.922|ICD10CM|Laceration of unsp msl/tnd at ank/ft level, left foot|Laceration of unsp msl/tnd at ank/ft level, left foot +C2869674|T037|HT|S96.922|ICD10CM|Laceration of unspecified muscle and tendon at ankle and foot level, left foot|Laceration of unspecified muscle and tendon at ankle and foot level, left foot +C2869675|T037|AB|S96.922A|ICD10CM|Laceration of unsp msl/tnd at ank/ft level, left foot, init|Laceration of unsp msl/tnd at ank/ft level, left foot, init +C2869675|T037|PT|S96.922A|ICD10CM|Laceration of unspecified muscle and tendon at ankle and foot level, left foot, initial encounter|Laceration of unspecified muscle and tendon at ankle and foot level, left foot, initial encounter +C2869676|T037|AB|S96.922D|ICD10CM|Laceration of unsp msl/tnd at ank/ft level, left foot, subs|Laceration of unsp msl/tnd at ank/ft level, left foot, subs +C2869676|T037|PT|S96.922D|ICD10CM|Laceration of unspecified muscle and tendon at ankle and foot level, left foot, subsequent encounter|Laceration of unspecified muscle and tendon at ankle and foot level, left foot, subsequent encounter +C2869677|T037|AB|S96.922S|ICD10CM|Lacerat unsp msl/tnd at ank/ft level, left foot, sequela|Lacerat unsp msl/tnd at ank/ft level, left foot, sequela +C2869677|T037|PT|S96.922S|ICD10CM|Laceration of unspecified muscle and tendon at ankle and foot level, left foot, sequela|Laceration of unspecified muscle and tendon at ankle and foot level, left foot, sequela +C2869678|T037|AB|S96.929|ICD10CM|Laceration of unsp msl/tnd at ank/ft level, unsp foot|Laceration of unsp msl/tnd at ank/ft level, unsp foot +C2869678|T037|HT|S96.929|ICD10CM|Laceration of unspecified muscle and tendon at ankle and foot level, unspecified foot|Laceration of unspecified muscle and tendon at ankle and foot level, unspecified foot +C2869679|T037|AB|S96.929A|ICD10CM|Laceration of unsp msl/tnd at ank/ft level, unsp foot, init|Laceration of unsp msl/tnd at ank/ft level, unsp foot, init +C2869680|T037|AB|S96.929D|ICD10CM|Laceration of unsp msl/tnd at ank/ft level, unsp foot, subs|Laceration of unsp msl/tnd at ank/ft level, unsp foot, subs +C2869681|T037|AB|S96.929S|ICD10CM|Lacerat unsp msl/tnd at ank/ft level, unsp foot, sequela|Lacerat unsp msl/tnd at ank/ft level, unsp foot, sequela +C2869681|T037|PT|S96.929S|ICD10CM|Laceration of unspecified muscle and tendon at ankle and foot level, unspecified foot, sequela|Laceration of unspecified muscle and tendon at ankle and foot level, unspecified foot, sequela +C2869682|T037|AB|S96.99|ICD10CM|Oth injury of unsp muscle and tendon at ankle and foot level|Oth injury of unsp muscle and tendon at ankle and foot level +C2869682|T037|HT|S96.99|ICD10CM|Other specified injury of unspecified muscle and tendon at ankle and foot level|Other specified injury of unspecified muscle and tendon at ankle and foot level +C2869683|T037|AB|S96.991|ICD10CM|Inj unsp msl/tnd at ankle and foot level, right foot|Inj unsp msl/tnd at ankle and foot level, right foot +C2869683|T037|HT|S96.991|ICD10CM|Other specified injury of unspecified muscle and tendon at ankle and foot level, right foot|Other specified injury of unspecified muscle and tendon at ankle and foot level, right foot +C2869684|T037|AB|S96.991A|ICD10CM|Inj unsp msl/tnd at ankle and foot level, right foot, init|Inj unsp msl/tnd at ankle and foot level, right foot, init +C2869685|T037|AB|S96.991D|ICD10CM|Inj unsp msl/tnd at ankle and foot level, right foot, subs|Inj unsp msl/tnd at ankle and foot level, right foot, subs +C2869686|T037|AB|S96.991S|ICD10CM|Inj unsp msl/tnd at ank/ft level, right foot, sequela|Inj unsp msl/tnd at ank/ft level, right foot, sequela +C2869686|T037|PT|S96.991S|ICD10CM|Other specified injury of unspecified muscle and tendon at ankle and foot level, right foot, sequela|Other specified injury of unspecified muscle and tendon at ankle and foot level, right foot, sequela +C2869687|T037|AB|S96.992|ICD10CM|Inj unsp msl/tnd at ankle and foot level, left foot|Inj unsp msl/tnd at ankle and foot level, left foot +C2869687|T037|HT|S96.992|ICD10CM|Other specified injury of unspecified muscle and tendon at ankle and foot level, left foot|Other specified injury of unspecified muscle and tendon at ankle and foot level, left foot +C2869688|T037|AB|S96.992A|ICD10CM|Inj unsp msl/tnd at ankle and foot level, left foot, init|Inj unsp msl/tnd at ankle and foot level, left foot, init +C2869689|T037|AB|S96.992D|ICD10CM|Inj unsp msl/tnd at ankle and foot level, left foot, subs|Inj unsp msl/tnd at ankle and foot level, left foot, subs +C2869690|T037|AB|S96.992S|ICD10CM|Inj unsp msl/tnd at ankle and foot level, left foot, sequela|Inj unsp msl/tnd at ankle and foot level, left foot, sequela +C2869690|T037|PT|S96.992S|ICD10CM|Other specified injury of unspecified muscle and tendon at ankle and foot level, left foot, sequela|Other specified injury of unspecified muscle and tendon at ankle and foot level, left foot, sequela +C2869691|T037|AB|S96.999|ICD10CM|Inj unsp msl/tnd at ankle and foot level, unsp foot|Inj unsp msl/tnd at ankle and foot level, unsp foot +C2869691|T037|HT|S96.999|ICD10CM|Other specified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot|Other specified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot +C2869692|T037|AB|S96.999A|ICD10CM|Inj unsp msl/tnd at ankle and foot level, unsp foot, init|Inj unsp msl/tnd at ankle and foot level, unsp foot, init +C2869693|T037|AB|S96.999D|ICD10CM|Inj unsp msl/tnd at ankle and foot level, unsp foot, subs|Inj unsp msl/tnd at ankle and foot level, unsp foot, subs +C2869694|T037|AB|S96.999S|ICD10CM|Inj unsp msl/tnd at ankle and foot level, unsp foot, sequela|Inj unsp msl/tnd at ankle and foot level, unsp foot, sequela +C0433121|T037|HT|S97|ICD10|Crushing injury of ankle and foot|Crushing injury of ankle and foot +C0433121|T037|AB|S97|ICD10CM|Crushing injury of ankle and foot|Crushing injury of ankle and foot +C0433121|T037|HT|S97|ICD10CM|Crushing injury of ankle and foot|Crushing injury of ankle and foot +C0160994|T037|HT|S97.0|ICD10CM|Crushing injury of ankle|Crushing injury of ankle +C0160994|T037|AB|S97.0|ICD10CM|Crushing injury of ankle|Crushing injury of ankle +C0160994|T037|PT|S97.0|ICD10|Crushing injury of ankle|Crushing injury of ankle +C2869695|T037|AB|S97.00|ICD10CM|Crushing injury of unspecified ankle|Crushing injury of unspecified ankle +C2869695|T037|HT|S97.00|ICD10CM|Crushing injury of unspecified ankle|Crushing injury of unspecified ankle +C2976830|T037|PT|S97.00XA|ICD10CM|Crushing injury of unspecified ankle, initial encounter|Crushing injury of unspecified ankle, initial encounter +C2976830|T037|AB|S97.00XA|ICD10CM|Crushing injury of unspecified ankle, initial encounter|Crushing injury of unspecified ankle, initial encounter +C2976831|T037|PT|S97.00XD|ICD10CM|Crushing injury of unspecified ankle, subsequent encounter|Crushing injury of unspecified ankle, subsequent encounter +C2976831|T037|AB|S97.00XD|ICD10CM|Crushing injury of unspecified ankle, subsequent encounter|Crushing injury of unspecified ankle, subsequent encounter +C2976832|T037|PT|S97.00XS|ICD10CM|Crushing injury of unspecified ankle, sequela|Crushing injury of unspecified ankle, sequela +C2976832|T037|AB|S97.00XS|ICD10CM|Crushing injury of unspecified ankle, sequela|Crushing injury of unspecified ankle, sequela +C2138541|T037|AB|S97.01|ICD10CM|Crushing injury of right ankle|Crushing injury of right ankle +C2138541|T037|HT|S97.01|ICD10CM|Crushing injury of right ankle|Crushing injury of right ankle +C2869699|T037|PT|S97.01XA|ICD10CM|Crushing injury of right ankle, initial encounter|Crushing injury of right ankle, initial encounter +C2869699|T037|AB|S97.01XA|ICD10CM|Crushing injury of right ankle, initial encounter|Crushing injury of right ankle, initial encounter +C2869700|T037|PT|S97.01XD|ICD10CM|Crushing injury of right ankle, subsequent encounter|Crushing injury of right ankle, subsequent encounter +C2869700|T037|AB|S97.01XD|ICD10CM|Crushing injury of right ankle, subsequent encounter|Crushing injury of right ankle, subsequent encounter +C2869701|T037|PT|S97.01XS|ICD10CM|Crushing injury of right ankle, sequela|Crushing injury of right ankle, sequela +C2869701|T037|AB|S97.01XS|ICD10CM|Crushing injury of right ankle, sequela|Crushing injury of right ankle, sequela +C2138519|T037|AB|S97.02|ICD10CM|Crushing injury of left ankle|Crushing injury of left ankle +C2138519|T037|HT|S97.02|ICD10CM|Crushing injury of left ankle|Crushing injury of left ankle +C2869702|T037|PT|S97.02XA|ICD10CM|Crushing injury of left ankle, initial encounter|Crushing injury of left ankle, initial encounter +C2869702|T037|AB|S97.02XA|ICD10CM|Crushing injury of left ankle, initial encounter|Crushing injury of left ankle, initial encounter +C2869703|T037|PT|S97.02XD|ICD10CM|Crushing injury of left ankle, subsequent encounter|Crushing injury of left ankle, subsequent encounter +C2869703|T037|AB|S97.02XD|ICD10CM|Crushing injury of left ankle, subsequent encounter|Crushing injury of left ankle, subsequent encounter +C2869704|T037|PT|S97.02XS|ICD10CM|Crushing injury of left ankle, sequela|Crushing injury of left ankle, sequela +C2869704|T037|AB|S97.02XS|ICD10CM|Crushing injury of left ankle, sequela|Crushing injury of left ankle, sequela +C0273448|T037|HT|S97.1|ICD10CM|Crushing injury of toe|Crushing injury of toe +C0273448|T037|AB|S97.1|ICD10CM|Crushing injury of toe|Crushing injury of toe +C0273448|T037|PT|S97.1|ICD10|Crushing injury of toe(s)|Crushing injury of toe(s) +C2869705|T037|AB|S97.10|ICD10CM|Crushing injury of unspecified toe(s)|Crushing injury of unspecified toe(s) +C2869705|T037|HT|S97.10|ICD10CM|Crushing injury of unspecified toe(s)|Crushing injury of unspecified toe(s) +C2869706|T037|AB|S97.101|ICD10CM|Crushing injury of unspecified right toe(s)|Crushing injury of unspecified right toe(s) +C2869706|T037|HT|S97.101|ICD10CM|Crushing injury of unspecified right toe(s)|Crushing injury of unspecified right toe(s) +C2869707|T037|AB|S97.101A|ICD10CM|Crushing injury of unspecified right toe(s), init encntr|Crushing injury of unspecified right toe(s), init encntr +C2869707|T037|PT|S97.101A|ICD10CM|Crushing injury of unspecified right toe(s), initial encounter|Crushing injury of unspecified right toe(s), initial encounter +C2869708|T037|AB|S97.101D|ICD10CM|Crushing injury of unspecified right toe(s), subs encntr|Crushing injury of unspecified right toe(s), subs encntr +C2869708|T037|PT|S97.101D|ICD10CM|Crushing injury of unspecified right toe(s), subsequent encounter|Crushing injury of unspecified right toe(s), subsequent encounter +C2869709|T037|AB|S97.101S|ICD10CM|Crushing injury of unspecified right toe(s), sequela|Crushing injury of unspecified right toe(s), sequela +C2869709|T037|PT|S97.101S|ICD10CM|Crushing injury of unspecified right toe(s), sequela|Crushing injury of unspecified right toe(s), sequela +C2869710|T037|AB|S97.102|ICD10CM|Crushing injury of unspecified left toe(s)|Crushing injury of unspecified left toe(s) +C2869710|T037|HT|S97.102|ICD10CM|Crushing injury of unspecified left toe(s)|Crushing injury of unspecified left toe(s) +C2869711|T037|AB|S97.102A|ICD10CM|Crushing injury of unspecified left toe(s), init encntr|Crushing injury of unspecified left toe(s), init encntr +C2869711|T037|PT|S97.102A|ICD10CM|Crushing injury of unspecified left toe(s), initial encounter|Crushing injury of unspecified left toe(s), initial encounter +C2869712|T037|AB|S97.102D|ICD10CM|Crushing injury of unspecified left toe(s), subs encntr|Crushing injury of unspecified left toe(s), subs encntr +C2869712|T037|PT|S97.102D|ICD10CM|Crushing injury of unspecified left toe(s), subsequent encounter|Crushing injury of unspecified left toe(s), subsequent encounter +C2869713|T037|AB|S97.102S|ICD10CM|Crushing injury of unspecified left toe(s), sequela|Crushing injury of unspecified left toe(s), sequela +C2869713|T037|PT|S97.102S|ICD10CM|Crushing injury of unspecified left toe(s), sequela|Crushing injury of unspecified left toe(s), sequela +C0273448|T037|ET|S97.109|ICD10CM|Crushing injury of toe NOS|Crushing injury of toe NOS +C2869705|T037|HT|S97.109|ICD10CM|Crushing injury of unspecified toe(s)|Crushing injury of unspecified toe(s) +C2869705|T037|AB|S97.109|ICD10CM|Crushing injury of unspecified toe(s)|Crushing injury of unspecified toe(s) +C2869715|T037|AB|S97.109A|ICD10CM|Crushing injury of unspecified toe(s), initial encounter|Crushing injury of unspecified toe(s), initial encounter +C2869715|T037|PT|S97.109A|ICD10CM|Crushing injury of unspecified toe(s), initial encounter|Crushing injury of unspecified toe(s), initial encounter +C2869716|T037|AB|S97.109D|ICD10CM|Crushing injury of unspecified toe(s), subsequent encounter|Crushing injury of unspecified toe(s), subsequent encounter +C2869716|T037|PT|S97.109D|ICD10CM|Crushing injury of unspecified toe(s), subsequent encounter|Crushing injury of unspecified toe(s), subsequent encounter +C2869717|T037|AB|S97.109S|ICD10CM|Crushing injury of unspecified toe(s), sequela|Crushing injury of unspecified toe(s), sequela +C2869717|T037|PT|S97.109S|ICD10CM|Crushing injury of unspecified toe(s), sequela|Crushing injury of unspecified toe(s), sequela +C0561715|T037|AB|S97.11|ICD10CM|Crushing injury of great toe|Crushing injury of great toe +C0561715|T037|HT|S97.11|ICD10CM|Crushing injury of great toe|Crushing injury of great toe +C2869718|T037|AB|S97.111|ICD10CM|Crushing injury of right great toe|Crushing injury of right great toe +C2869718|T037|HT|S97.111|ICD10CM|Crushing injury of right great toe|Crushing injury of right great toe +C2869719|T037|AB|S97.111A|ICD10CM|Crushing injury of right great toe, initial encounter|Crushing injury of right great toe, initial encounter +C2869719|T037|PT|S97.111A|ICD10CM|Crushing injury of right great toe, initial encounter|Crushing injury of right great toe, initial encounter +C2869720|T037|AB|S97.111D|ICD10CM|Crushing injury of right great toe, subsequent encounter|Crushing injury of right great toe, subsequent encounter +C2869720|T037|PT|S97.111D|ICD10CM|Crushing injury of right great toe, subsequent encounter|Crushing injury of right great toe, subsequent encounter +C2869721|T037|AB|S97.111S|ICD10CM|Crushing injury of right great toe, sequela|Crushing injury of right great toe, sequela +C2869721|T037|PT|S97.111S|ICD10CM|Crushing injury of right great toe, sequela|Crushing injury of right great toe, sequela +C2869722|T037|AB|S97.112|ICD10CM|Crushing injury of left great toe|Crushing injury of left great toe +C2869722|T037|HT|S97.112|ICD10CM|Crushing injury of left great toe|Crushing injury of left great toe +C2869723|T037|AB|S97.112A|ICD10CM|Crushing injury of left great toe, initial encounter|Crushing injury of left great toe, initial encounter +C2869723|T037|PT|S97.112A|ICD10CM|Crushing injury of left great toe, initial encounter|Crushing injury of left great toe, initial encounter +C2869724|T037|AB|S97.112D|ICD10CM|Crushing injury of left great toe, subsequent encounter|Crushing injury of left great toe, subsequent encounter +C2869724|T037|PT|S97.112D|ICD10CM|Crushing injury of left great toe, subsequent encounter|Crushing injury of left great toe, subsequent encounter +C2869725|T037|AB|S97.112S|ICD10CM|Crushing injury of left great toe, sequela|Crushing injury of left great toe, sequela +C2869725|T037|PT|S97.112S|ICD10CM|Crushing injury of left great toe, sequela|Crushing injury of left great toe, sequela +C2869726|T037|AB|S97.119|ICD10CM|Crushing injury of unspecified great toe|Crushing injury of unspecified great toe +C2869726|T037|HT|S97.119|ICD10CM|Crushing injury of unspecified great toe|Crushing injury of unspecified great toe +C2869727|T037|AB|S97.119A|ICD10CM|Crushing injury of unspecified great toe, initial encounter|Crushing injury of unspecified great toe, initial encounter +C2869727|T037|PT|S97.119A|ICD10CM|Crushing injury of unspecified great toe, initial encounter|Crushing injury of unspecified great toe, initial encounter +C2869728|T037|AB|S97.119D|ICD10CM|Crushing injury of unspecified great toe, subs encntr|Crushing injury of unspecified great toe, subs encntr +C2869728|T037|PT|S97.119D|ICD10CM|Crushing injury of unspecified great toe, subsequent encounter|Crushing injury of unspecified great toe, subsequent encounter +C2869729|T037|AB|S97.119S|ICD10CM|Crushing injury of unspecified great toe, sequela|Crushing injury of unspecified great toe, sequela +C2869729|T037|PT|S97.119S|ICD10CM|Crushing injury of unspecified great toe, sequela|Crushing injury of unspecified great toe, sequela +C2869730|T037|AB|S97.12|ICD10CM|Crushing injury of lesser toe(s)|Crushing injury of lesser toe(s) +C2869730|T037|HT|S97.12|ICD10CM|Crushing injury of lesser toe(s)|Crushing injury of lesser toe(s) +C2869731|T037|AB|S97.121|ICD10CM|Crushing injury of right lesser toe(s)|Crushing injury of right lesser toe(s) +C2869731|T037|HT|S97.121|ICD10CM|Crushing injury of right lesser toe(s)|Crushing injury of right lesser toe(s) +C2869732|T037|AB|S97.121A|ICD10CM|Crushing injury of right lesser toe(s), initial encounter|Crushing injury of right lesser toe(s), initial encounter +C2869732|T037|PT|S97.121A|ICD10CM|Crushing injury of right lesser toe(s), initial encounter|Crushing injury of right lesser toe(s), initial encounter +C2869733|T037|AB|S97.121D|ICD10CM|Crushing injury of right lesser toe(s), subsequent encounter|Crushing injury of right lesser toe(s), subsequent encounter +C2869733|T037|PT|S97.121D|ICD10CM|Crushing injury of right lesser toe(s), subsequent encounter|Crushing injury of right lesser toe(s), subsequent encounter +C2869734|T037|AB|S97.121S|ICD10CM|Crushing injury of right lesser toe(s), sequela|Crushing injury of right lesser toe(s), sequela +C2869734|T037|PT|S97.121S|ICD10CM|Crushing injury of right lesser toe(s), sequela|Crushing injury of right lesser toe(s), sequela +C2869735|T037|AB|S97.122|ICD10CM|Crushing injury of left lesser toe(s)|Crushing injury of left lesser toe(s) +C2869735|T037|HT|S97.122|ICD10CM|Crushing injury of left lesser toe(s)|Crushing injury of left lesser toe(s) +C2869736|T037|AB|S97.122A|ICD10CM|Crushing injury of left lesser toe(s), initial encounter|Crushing injury of left lesser toe(s), initial encounter +C2869736|T037|PT|S97.122A|ICD10CM|Crushing injury of left lesser toe(s), initial encounter|Crushing injury of left lesser toe(s), initial encounter +C2869737|T037|AB|S97.122D|ICD10CM|Crushing injury of left lesser toe(s), subsequent encounter|Crushing injury of left lesser toe(s), subsequent encounter +C2869737|T037|PT|S97.122D|ICD10CM|Crushing injury of left lesser toe(s), subsequent encounter|Crushing injury of left lesser toe(s), subsequent encounter +C2869738|T037|AB|S97.122S|ICD10CM|Crushing injury of left lesser toe(s), sequela|Crushing injury of left lesser toe(s), sequela +C2869738|T037|PT|S97.122S|ICD10CM|Crushing injury of left lesser toe(s), sequela|Crushing injury of left lesser toe(s), sequela +C2869739|T037|AB|S97.129|ICD10CM|Crushing injury of unspecified lesser toe(s)|Crushing injury of unspecified lesser toe(s) +C2869739|T037|HT|S97.129|ICD10CM|Crushing injury of unspecified lesser toe(s)|Crushing injury of unspecified lesser toe(s) +C2869740|T037|AB|S97.129A|ICD10CM|Crushing injury of unspecified lesser toe(s), init encntr|Crushing injury of unspecified lesser toe(s), init encntr +C2869740|T037|PT|S97.129A|ICD10CM|Crushing injury of unspecified lesser toe(s), initial encounter|Crushing injury of unspecified lesser toe(s), initial encounter +C2869741|T037|AB|S97.129D|ICD10CM|Crushing injury of unspecified lesser toe(s), subs encntr|Crushing injury of unspecified lesser toe(s), subs encntr +C2869741|T037|PT|S97.129D|ICD10CM|Crushing injury of unspecified lesser toe(s), subsequent encounter|Crushing injury of unspecified lesser toe(s), subsequent encounter +C2869742|T037|AB|S97.129S|ICD10CM|Crushing injury of unspecified lesser toe(s), sequela|Crushing injury of unspecified lesser toe(s), sequela +C2869742|T037|PT|S97.129S|ICD10CM|Crushing injury of unspecified lesser toe(s), sequela|Crushing injury of unspecified lesser toe(s), sequela +C0160993|T037|HT|S97.8|ICD10CM|Crushing injury of foot|Crushing injury of foot +C0160993|T037|AB|S97.8|ICD10CM|Crushing injury of foot|Crushing injury of foot +C0478361|T037|PT|S97.8|ICD10|Crushing injury of other parts of ankle and foot|Crushing injury of other parts of ankle and foot +C0160993|T037|ET|S97.80|ICD10CM|Crushing injury of foot NOS|Crushing injury of foot NOS +C2869743|T037|AB|S97.80|ICD10CM|Crushing injury of unspecified foot|Crushing injury of unspecified foot +C2869743|T037|HT|S97.80|ICD10CM|Crushing injury of unspecified foot|Crushing injury of unspecified foot +C2976833|T037|PT|S97.80XA|ICD10CM|Crushing injury of unspecified foot, initial encounter|Crushing injury of unspecified foot, initial encounter +C2976833|T037|AB|S97.80XA|ICD10CM|Crushing injury of unspecified foot, initial encounter|Crushing injury of unspecified foot, initial encounter +C2976834|T037|AB|S97.80XD|ICD10CM|Crushing injury of unspecified foot, subsequent encounter|Crushing injury of unspecified foot, subsequent encounter +C2976834|T037|PT|S97.80XD|ICD10CM|Crushing injury of unspecified foot, subsequent encounter|Crushing injury of unspecified foot, subsequent encounter +C2976835|T037|PT|S97.80XS|ICD10CM|Crushing injury of unspecified foot, sequela|Crushing injury of unspecified foot, sequela +C2976835|T037|AB|S97.80XS|ICD10CM|Crushing injury of unspecified foot, sequela|Crushing injury of unspecified foot, sequela +C2138547|T037|AB|S97.81|ICD10CM|Crushing injury of right foot|Crushing injury of right foot +C2138547|T037|HT|S97.81|ICD10CM|Crushing injury of right foot|Crushing injury of right foot +C2869747|T037|PT|S97.81XA|ICD10CM|Crushing injury of right foot, initial encounter|Crushing injury of right foot, initial encounter +C2869747|T037|AB|S97.81XA|ICD10CM|Crushing injury of right foot, initial encounter|Crushing injury of right foot, initial encounter +C2869748|T037|PT|S97.81XD|ICD10CM|Crushing injury of right foot, subsequent encounter|Crushing injury of right foot, subsequent encounter +C2869748|T037|AB|S97.81XD|ICD10CM|Crushing injury of right foot, subsequent encounter|Crushing injury of right foot, subsequent encounter +C2869749|T037|PT|S97.81XS|ICD10CM|Crushing injury of right foot, sequela|Crushing injury of right foot, sequela +C2869749|T037|AB|S97.81XS|ICD10CM|Crushing injury of right foot, sequela|Crushing injury of right foot, sequela +C2138525|T037|AB|S97.82|ICD10CM|Crushing injury of left foot|Crushing injury of left foot +C2138525|T037|HT|S97.82|ICD10CM|Crushing injury of left foot|Crushing injury of left foot +C2869750|T037|PT|S97.82XA|ICD10CM|Crushing injury of left foot, initial encounter|Crushing injury of left foot, initial encounter +C2869750|T037|AB|S97.82XA|ICD10CM|Crushing injury of left foot, initial encounter|Crushing injury of left foot, initial encounter +C2869751|T037|PT|S97.82XD|ICD10CM|Crushing injury of left foot, subsequent encounter|Crushing injury of left foot, subsequent encounter +C2869751|T037|AB|S97.82XD|ICD10CM|Crushing injury of left foot, subsequent encounter|Crushing injury of left foot, subsequent encounter +C2869752|T037|PT|S97.82XS|ICD10CM|Crushing injury of left foot, sequela|Crushing injury of left foot, sequela +C2869752|T037|AB|S97.82XS|ICD10CM|Crushing injury of left foot, sequela|Crushing injury of left foot, sequela +C2977737|T033|ET|S98|ICD10CM|An amputation not identified as partial or complete should be coded to complete|An amputation not identified as partial or complete should be coded to complete +C0495977|T037|HT|S98|ICD10|Traumatic amputation of ankle and foot|Traumatic amputation of ankle and foot +C0495977|T037|AB|S98|ICD10CM|Traumatic amputation of ankle and foot|Traumatic amputation of ankle and foot +C0495977|T037|HT|S98|ICD10CM|Traumatic amputation of ankle and foot|Traumatic amputation of ankle and foot +C0495978|T037|HT|S98.0|ICD10CM|Traumatic amputation of foot at ankle level|Traumatic amputation of foot at ankle level +C0495978|T037|AB|S98.0|ICD10CM|Traumatic amputation of foot at ankle level|Traumatic amputation of foot at ankle level +C0495978|T037|PT|S98.0|ICD10|Traumatic amputation of foot at ankle level|Traumatic amputation of foot at ankle level +C2869753|T037|AB|S98.01|ICD10CM|Complete traumatic amputation of foot at ankle level|Complete traumatic amputation of foot at ankle level +C2869753|T037|HT|S98.01|ICD10CM|Complete traumatic amputation of foot at ankle level|Complete traumatic amputation of foot at ankle level +C2869754|T037|AB|S98.011|ICD10CM|Complete traumatic amputation of right foot at ankle level|Complete traumatic amputation of right foot at ankle level +C2869754|T037|HT|S98.011|ICD10CM|Complete traumatic amputation of right foot at ankle level|Complete traumatic amputation of right foot at ankle level +C2869755|T037|AB|S98.011A|ICD10CM|Complete traumatic amp of right foot at ankle level, init|Complete traumatic amp of right foot at ankle level, init +C2869755|T037|PT|S98.011A|ICD10CM|Complete traumatic amputation of right foot at ankle level, initial encounter|Complete traumatic amputation of right foot at ankle level, initial encounter +C2869756|T037|AB|S98.011D|ICD10CM|Complete traumatic amp of right foot at ankle level, subs|Complete traumatic amp of right foot at ankle level, subs +C2869756|T037|PT|S98.011D|ICD10CM|Complete traumatic amputation of right foot at ankle level, subsequent encounter|Complete traumatic amputation of right foot at ankle level, subsequent encounter +C2869757|T037|AB|S98.011S|ICD10CM|Complete traumatic amp of right foot at ankle level, sequela|Complete traumatic amp of right foot at ankle level, sequela +C2869757|T037|PT|S98.011S|ICD10CM|Complete traumatic amputation of right foot at ankle level, sequela|Complete traumatic amputation of right foot at ankle level, sequela +C2869758|T037|AB|S98.012|ICD10CM|Complete traumatic amputation of left foot at ankle level|Complete traumatic amputation of left foot at ankle level +C2869758|T037|HT|S98.012|ICD10CM|Complete traumatic amputation of left foot at ankle level|Complete traumatic amputation of left foot at ankle level +C2869759|T037|AB|S98.012A|ICD10CM|Complete traumatic amp of left foot at ankle level, init|Complete traumatic amp of left foot at ankle level, init +C2869759|T037|PT|S98.012A|ICD10CM|Complete traumatic amputation of left foot at ankle level, initial encounter|Complete traumatic amputation of left foot at ankle level, initial encounter +C2869760|T037|AB|S98.012D|ICD10CM|Complete traumatic amp of left foot at ankle level, subs|Complete traumatic amp of left foot at ankle level, subs +C2869760|T037|PT|S98.012D|ICD10CM|Complete traumatic amputation of left foot at ankle level, subsequent encounter|Complete traumatic amputation of left foot at ankle level, subsequent encounter +C2869761|T037|AB|S98.012S|ICD10CM|Complete traumatic amp of left foot at ankle level, sequela|Complete traumatic amp of left foot at ankle level, sequela +C2869761|T037|PT|S98.012S|ICD10CM|Complete traumatic amputation of left foot at ankle level, sequela|Complete traumatic amputation of left foot at ankle level, sequela +C2869762|T037|AB|S98.019|ICD10CM|Complete traumatic amputation of unsp foot at ankle level|Complete traumatic amputation of unsp foot at ankle level +C2869762|T037|HT|S98.019|ICD10CM|Complete traumatic amputation of unspecified foot at ankle level|Complete traumatic amputation of unspecified foot at ankle level +C2869763|T037|AB|S98.019A|ICD10CM|Complete traumatic amp of unsp foot at ankle level, init|Complete traumatic amp of unsp foot at ankle level, init +C2869763|T037|PT|S98.019A|ICD10CM|Complete traumatic amputation of unspecified foot at ankle level, initial encounter|Complete traumatic amputation of unspecified foot at ankle level, initial encounter +C2869764|T037|AB|S98.019D|ICD10CM|Complete traumatic amp of unsp foot at ankle level, subs|Complete traumatic amp of unsp foot at ankle level, subs +C2869764|T037|PT|S98.019D|ICD10CM|Complete traumatic amputation of unspecified foot at ankle level, subsequent encounter|Complete traumatic amputation of unspecified foot at ankle level, subsequent encounter +C2869765|T037|AB|S98.019S|ICD10CM|Complete traumatic amp of unsp foot at ankle level, sequela|Complete traumatic amp of unsp foot at ankle level, sequela +C2869765|T037|PT|S98.019S|ICD10CM|Complete traumatic amputation of unspecified foot at ankle level, sequela|Complete traumatic amputation of unspecified foot at ankle level, sequela +C2869766|T037|AB|S98.02|ICD10CM|Partial traumatic amputation of foot at ankle level|Partial traumatic amputation of foot at ankle level +C2869766|T037|HT|S98.02|ICD10CM|Partial traumatic amputation of foot at ankle level|Partial traumatic amputation of foot at ankle level +C2869767|T037|AB|S98.021|ICD10CM|Partial traumatic amputation of right foot at ankle level|Partial traumatic amputation of right foot at ankle level +C2869767|T037|HT|S98.021|ICD10CM|Partial traumatic amputation of right foot at ankle level|Partial traumatic amputation of right foot at ankle level +C2869768|T037|AB|S98.021A|ICD10CM|Partial traumatic amp of right foot at ankle level, init|Partial traumatic amp of right foot at ankle level, init +C2869768|T037|PT|S98.021A|ICD10CM|Partial traumatic amputation of right foot at ankle level, initial encounter|Partial traumatic amputation of right foot at ankle level, initial encounter +C2869769|T037|AB|S98.021D|ICD10CM|Partial traumatic amp of right foot at ankle level, subs|Partial traumatic amp of right foot at ankle level, subs +C2869769|T037|PT|S98.021D|ICD10CM|Partial traumatic amputation of right foot at ankle level, subsequent encounter|Partial traumatic amputation of right foot at ankle level, subsequent encounter +C2869770|T037|AB|S98.021S|ICD10CM|Partial traumatic amp of right foot at ankle level, sequela|Partial traumatic amp of right foot at ankle level, sequela +C2869770|T037|PT|S98.021S|ICD10CM|Partial traumatic amputation of right foot at ankle level, sequela|Partial traumatic amputation of right foot at ankle level, sequela +C2869771|T037|AB|S98.022|ICD10CM|Partial traumatic amputation of left foot at ankle level|Partial traumatic amputation of left foot at ankle level +C2869771|T037|HT|S98.022|ICD10CM|Partial traumatic amputation of left foot at ankle level|Partial traumatic amputation of left foot at ankle level +C2869772|T037|AB|S98.022A|ICD10CM|Partial traumatic amp of left foot at ankle level, init|Partial traumatic amp of left foot at ankle level, init +C2869772|T037|PT|S98.022A|ICD10CM|Partial traumatic amputation of left foot at ankle level, initial encounter|Partial traumatic amputation of left foot at ankle level, initial encounter +C2869773|T037|AB|S98.022D|ICD10CM|Partial traumatic amp of left foot at ankle level, subs|Partial traumatic amp of left foot at ankle level, subs +C2869773|T037|PT|S98.022D|ICD10CM|Partial traumatic amputation of left foot at ankle level, subsequent encounter|Partial traumatic amputation of left foot at ankle level, subsequent encounter +C2869774|T037|AB|S98.022S|ICD10CM|Partial traumatic amp of left foot at ankle level, sequela|Partial traumatic amp of left foot at ankle level, sequela +C2869774|T037|PT|S98.022S|ICD10CM|Partial traumatic amputation of left foot at ankle level, sequela|Partial traumatic amputation of left foot at ankle level, sequela +C2869775|T037|AB|S98.029|ICD10CM|Partial traumatic amputation of unsp foot at ankle level|Partial traumatic amputation of unsp foot at ankle level +C2869775|T037|HT|S98.029|ICD10CM|Partial traumatic amputation of unspecified foot at ankle level|Partial traumatic amputation of unspecified foot at ankle level +C2869776|T037|AB|S98.029A|ICD10CM|Partial traumatic amp of unsp foot at ankle level, init|Partial traumatic amp of unsp foot at ankle level, init +C2869776|T037|PT|S98.029A|ICD10CM|Partial traumatic amputation of unspecified foot at ankle level, initial encounter|Partial traumatic amputation of unspecified foot at ankle level, initial encounter +C2869777|T037|AB|S98.029D|ICD10CM|Partial traumatic amp of unsp foot at ankle level, subs|Partial traumatic amp of unsp foot at ankle level, subs +C2869777|T037|PT|S98.029D|ICD10CM|Partial traumatic amputation of unspecified foot at ankle level, subsequent encounter|Partial traumatic amputation of unspecified foot at ankle level, subsequent encounter +C2869778|T037|AB|S98.029S|ICD10CM|Partial traumatic amp of unsp foot at ankle level, sequela|Partial traumatic amp of unsp foot at ankle level, sequela +C2869778|T037|PT|S98.029S|ICD10CM|Partial traumatic amputation of unspecified foot at ankle level, sequela|Partial traumatic amputation of unspecified foot at ankle level, sequela +C0160663|T037|PT|S98.1|ICD10|Traumatic amputation of one toe|Traumatic amputation of one toe +C0160663|T037|HT|S98.1|ICD10CM|Traumatic amputation of one toe|Traumatic amputation of one toe +C0160663|T037|AB|S98.1|ICD10CM|Traumatic amputation of one toe|Traumatic amputation of one toe +C2869779|T037|AB|S98.11|ICD10CM|Complete traumatic amputation of great toe|Complete traumatic amputation of great toe +C2869779|T037|HT|S98.11|ICD10CM|Complete traumatic amputation of great toe|Complete traumatic amputation of great toe +C2869780|T037|AB|S98.111|ICD10CM|Complete traumatic amputation of right great toe|Complete traumatic amputation of right great toe +C2869780|T037|HT|S98.111|ICD10CM|Complete traumatic amputation of right great toe|Complete traumatic amputation of right great toe +C2869781|T037|AB|S98.111A|ICD10CM|Complete traumatic amputation of right great toe, init|Complete traumatic amputation of right great toe, init +C2869781|T037|PT|S98.111A|ICD10CM|Complete traumatic amputation of right great toe, initial encounter|Complete traumatic amputation of right great toe, initial encounter +C2869782|T037|AB|S98.111D|ICD10CM|Complete traumatic amputation of right great toe, subs|Complete traumatic amputation of right great toe, subs +C2869782|T037|PT|S98.111D|ICD10CM|Complete traumatic amputation of right great toe, subsequent encounter|Complete traumatic amputation of right great toe, subsequent encounter +C2869783|T037|PT|S98.111S|ICD10CM|Complete traumatic amputation of right great toe, sequela|Complete traumatic amputation of right great toe, sequela +C2869783|T037|AB|S98.111S|ICD10CM|Complete traumatic amputation of right great toe, sequela|Complete traumatic amputation of right great toe, sequela +C2869784|T037|AB|S98.112|ICD10CM|Complete traumatic amputation of left great toe|Complete traumatic amputation of left great toe +C2869784|T037|HT|S98.112|ICD10CM|Complete traumatic amputation of left great toe|Complete traumatic amputation of left great toe +C2869785|T037|AB|S98.112A|ICD10CM|Complete traumatic amputation of left great toe, init encntr|Complete traumatic amputation of left great toe, init encntr +C2869785|T037|PT|S98.112A|ICD10CM|Complete traumatic amputation of left great toe, initial encounter|Complete traumatic amputation of left great toe, initial encounter +C2869786|T037|AB|S98.112D|ICD10CM|Complete traumatic amputation of left great toe, subs encntr|Complete traumatic amputation of left great toe, subs encntr +C2869786|T037|PT|S98.112D|ICD10CM|Complete traumatic amputation of left great toe, subsequent encounter|Complete traumatic amputation of left great toe, subsequent encounter +C2869787|T037|PT|S98.112S|ICD10CM|Complete traumatic amputation of left great toe, sequela|Complete traumatic amputation of left great toe, sequela +C2869787|T037|AB|S98.112S|ICD10CM|Complete traumatic amputation of left great toe, sequela|Complete traumatic amputation of left great toe, sequela +C2869788|T037|AB|S98.119|ICD10CM|Complete traumatic amputation of unspecified great toe|Complete traumatic amputation of unspecified great toe +C2869788|T037|HT|S98.119|ICD10CM|Complete traumatic amputation of unspecified great toe|Complete traumatic amputation of unspecified great toe +C2869789|T037|AB|S98.119A|ICD10CM|Complete traumatic amputation of unsp great toe, init encntr|Complete traumatic amputation of unsp great toe, init encntr +C2869789|T037|PT|S98.119A|ICD10CM|Complete traumatic amputation of unspecified great toe, initial encounter|Complete traumatic amputation of unspecified great toe, initial encounter +C2869790|T037|AB|S98.119D|ICD10CM|Complete traumatic amputation of unsp great toe, subs encntr|Complete traumatic amputation of unsp great toe, subs encntr +C2869790|T037|PT|S98.119D|ICD10CM|Complete traumatic amputation of unspecified great toe, subsequent encounter|Complete traumatic amputation of unspecified great toe, subsequent encounter +C2869791|T037|AB|S98.119S|ICD10CM|Complete traumatic amputation of unsp great toe, sequela|Complete traumatic amputation of unsp great toe, sequela +C2869791|T037|PT|S98.119S|ICD10CM|Complete traumatic amputation of unspecified great toe, sequela|Complete traumatic amputation of unspecified great toe, sequela +C2869792|T037|AB|S98.12|ICD10CM|Partial traumatic amputation of great toe|Partial traumatic amputation of great toe +C2869792|T037|HT|S98.12|ICD10CM|Partial traumatic amputation of great toe|Partial traumatic amputation of great toe +C2869793|T037|AB|S98.121|ICD10CM|Partial traumatic amputation of right great toe|Partial traumatic amputation of right great toe +C2869793|T037|HT|S98.121|ICD10CM|Partial traumatic amputation of right great toe|Partial traumatic amputation of right great toe +C2869794|T037|AB|S98.121A|ICD10CM|Partial traumatic amputation of right great toe, init encntr|Partial traumatic amputation of right great toe, init encntr +C2869794|T037|PT|S98.121A|ICD10CM|Partial traumatic amputation of right great toe, initial encounter|Partial traumatic amputation of right great toe, initial encounter +C2869795|T037|AB|S98.121D|ICD10CM|Partial traumatic amputation of right great toe, subs encntr|Partial traumatic amputation of right great toe, subs encntr +C2869795|T037|PT|S98.121D|ICD10CM|Partial traumatic amputation of right great toe, subsequent encounter|Partial traumatic amputation of right great toe, subsequent encounter +C2869796|T037|PT|S98.121S|ICD10CM|Partial traumatic amputation of right great toe, sequela|Partial traumatic amputation of right great toe, sequela +C2869796|T037|AB|S98.121S|ICD10CM|Partial traumatic amputation of right great toe, sequela|Partial traumatic amputation of right great toe, sequela +C2869797|T037|AB|S98.122|ICD10CM|Partial traumatic amputation of left great toe|Partial traumatic amputation of left great toe +C2869797|T037|HT|S98.122|ICD10CM|Partial traumatic amputation of left great toe|Partial traumatic amputation of left great toe +C2869798|T037|AB|S98.122A|ICD10CM|Partial traumatic amputation of left great toe, init encntr|Partial traumatic amputation of left great toe, init encntr +C2869798|T037|PT|S98.122A|ICD10CM|Partial traumatic amputation of left great toe, initial encounter|Partial traumatic amputation of left great toe, initial encounter +C2869799|T037|AB|S98.122D|ICD10CM|Partial traumatic amputation of left great toe, subs encntr|Partial traumatic amputation of left great toe, subs encntr +C2869799|T037|PT|S98.122D|ICD10CM|Partial traumatic amputation of left great toe, subsequent encounter|Partial traumatic amputation of left great toe, subsequent encounter +C2869800|T037|PT|S98.122S|ICD10CM|Partial traumatic amputation of left great toe, sequela|Partial traumatic amputation of left great toe, sequela +C2869800|T037|AB|S98.122S|ICD10CM|Partial traumatic amputation of left great toe, sequela|Partial traumatic amputation of left great toe, sequela +C2869801|T037|AB|S98.129|ICD10CM|Partial traumatic amputation of unspecified great toe|Partial traumatic amputation of unspecified great toe +C2869801|T037|HT|S98.129|ICD10CM|Partial traumatic amputation of unspecified great toe|Partial traumatic amputation of unspecified great toe +C2869802|T037|AB|S98.129A|ICD10CM|Partial traumatic amputation of unsp great toe, init encntr|Partial traumatic amputation of unsp great toe, init encntr +C2869802|T037|PT|S98.129A|ICD10CM|Partial traumatic amputation of unspecified great toe, initial encounter|Partial traumatic amputation of unspecified great toe, initial encounter +C2869803|T037|AB|S98.129D|ICD10CM|Partial traumatic amputation of unsp great toe, subs encntr|Partial traumatic amputation of unsp great toe, subs encntr +C2869803|T037|PT|S98.129D|ICD10CM|Partial traumatic amputation of unspecified great toe, subsequent encounter|Partial traumatic amputation of unspecified great toe, subsequent encounter +C2869804|T037|AB|S98.129S|ICD10CM|Partial traumatic amputation of unsp great toe, sequela|Partial traumatic amputation of unsp great toe, sequela +C2869804|T037|PT|S98.129S|ICD10CM|Partial traumatic amputation of unspecified great toe, sequela|Partial traumatic amputation of unspecified great toe, sequela +C2869805|T037|AB|S98.13|ICD10CM|Complete traumatic amputation of one lesser toe|Complete traumatic amputation of one lesser toe +C2869805|T037|HT|S98.13|ICD10CM|Complete traumatic amputation of one lesser toe|Complete traumatic amputation of one lesser toe +C0160663|T037|ET|S98.13|ICD10CM|Traumatic amputation of toe NOS|Traumatic amputation of toe NOS +C2869806|T037|AB|S98.131|ICD10CM|Complete traumatic amputation of one right lesser toe|Complete traumatic amputation of one right lesser toe +C2869806|T037|HT|S98.131|ICD10CM|Complete traumatic amputation of one right lesser toe|Complete traumatic amputation of one right lesser toe +C2869807|T037|AB|S98.131A|ICD10CM|Complete traumatic amputation of one right lesser toe, init|Complete traumatic amputation of one right lesser toe, init +C2869807|T037|PT|S98.131A|ICD10CM|Complete traumatic amputation of one right lesser toe, initial encounter|Complete traumatic amputation of one right lesser toe, initial encounter +C2869808|T037|AB|S98.131D|ICD10CM|Complete traumatic amputation of one right lesser toe, subs|Complete traumatic amputation of one right lesser toe, subs +C2869808|T037|PT|S98.131D|ICD10CM|Complete traumatic amputation of one right lesser toe, subsequent encounter|Complete traumatic amputation of one right lesser toe, subsequent encounter +C2869809|T037|AB|S98.131S|ICD10CM|Complete traumatic amp of one right lesser toe, sequela|Complete traumatic amp of one right lesser toe, sequela +C2869809|T037|PT|S98.131S|ICD10CM|Complete traumatic amputation of one right lesser toe, sequela|Complete traumatic amputation of one right lesser toe, sequela +C2869810|T037|AB|S98.132|ICD10CM|Complete traumatic amputation of one left lesser toe|Complete traumatic amputation of one left lesser toe +C2869810|T037|HT|S98.132|ICD10CM|Complete traumatic amputation of one left lesser toe|Complete traumatic amputation of one left lesser toe +C2869811|T037|AB|S98.132A|ICD10CM|Complete traumatic amputation of one left lesser toe, init|Complete traumatic amputation of one left lesser toe, init +C2869811|T037|PT|S98.132A|ICD10CM|Complete traumatic amputation of one left lesser toe, initial encounter|Complete traumatic amputation of one left lesser toe, initial encounter +C2869812|T037|AB|S98.132D|ICD10CM|Complete traumatic amputation of one left lesser toe, subs|Complete traumatic amputation of one left lesser toe, subs +C2869812|T037|PT|S98.132D|ICD10CM|Complete traumatic amputation of one left lesser toe, subsequent encounter|Complete traumatic amputation of one left lesser toe, subsequent encounter +C2869813|T037|AB|S98.132S|ICD10CM|Complete traumatic amp of one left lesser toe, sequela|Complete traumatic amp of one left lesser toe, sequela +C2869813|T037|PT|S98.132S|ICD10CM|Complete traumatic amputation of one left lesser toe, sequela|Complete traumatic amputation of one left lesser toe, sequela +C2869814|T037|AB|S98.139|ICD10CM|Complete traumatic amputation of one unspecified lesser toe|Complete traumatic amputation of one unspecified lesser toe +C2869814|T037|HT|S98.139|ICD10CM|Complete traumatic amputation of one unspecified lesser toe|Complete traumatic amputation of one unspecified lesser toe +C2869815|T037|AB|S98.139A|ICD10CM|Complete traumatic amputation of one unsp lesser toe, init|Complete traumatic amputation of one unsp lesser toe, init +C2869815|T037|PT|S98.139A|ICD10CM|Complete traumatic amputation of one unspecified lesser toe, initial encounter|Complete traumatic amputation of one unspecified lesser toe, initial encounter +C2869816|T037|AB|S98.139D|ICD10CM|Complete traumatic amputation of one unsp lesser toe, subs|Complete traumatic amputation of one unsp lesser toe, subs +C2869816|T037|PT|S98.139D|ICD10CM|Complete traumatic amputation of one unspecified lesser toe, subsequent encounter|Complete traumatic amputation of one unspecified lesser toe, subsequent encounter +C2869817|T037|AB|S98.139S|ICD10CM|Complete traumatic amp of one unsp lesser toe, sequela|Complete traumatic amp of one unsp lesser toe, sequela +C2869817|T037|PT|S98.139S|ICD10CM|Complete traumatic amputation of one unspecified lesser toe, sequela|Complete traumatic amputation of one unspecified lesser toe, sequela +C2869818|T037|AB|S98.14|ICD10CM|Partial traumatic amputation of one lesser toe|Partial traumatic amputation of one lesser toe +C2869818|T037|HT|S98.14|ICD10CM|Partial traumatic amputation of one lesser toe|Partial traumatic amputation of one lesser toe +C2869819|T037|AB|S98.141|ICD10CM|Partial traumatic amputation of one right lesser toe|Partial traumatic amputation of one right lesser toe +C2869819|T037|HT|S98.141|ICD10CM|Partial traumatic amputation of one right lesser toe|Partial traumatic amputation of one right lesser toe +C2869820|T037|AB|S98.141A|ICD10CM|Partial traumatic amputation of one right lesser toe, init|Partial traumatic amputation of one right lesser toe, init +C2869820|T037|PT|S98.141A|ICD10CM|Partial traumatic amputation of one right lesser toe, initial encounter|Partial traumatic amputation of one right lesser toe, initial encounter +C2869821|T037|AB|S98.141D|ICD10CM|Partial traumatic amputation of one right lesser toe, subs|Partial traumatic amputation of one right lesser toe, subs +C2869821|T037|PT|S98.141D|ICD10CM|Partial traumatic amputation of one right lesser toe, subsequent encounter|Partial traumatic amputation of one right lesser toe, subsequent encounter +C2869822|T037|AB|S98.141S|ICD10CM|Partial traumatic amp of one right lesser toe, sequela|Partial traumatic amp of one right lesser toe, sequela +C2869822|T037|PT|S98.141S|ICD10CM|Partial traumatic amputation of one right lesser toe, sequela|Partial traumatic amputation of one right lesser toe, sequela +C2869823|T037|AB|S98.142|ICD10CM|Partial traumatic amputation of one left lesser toe|Partial traumatic amputation of one left lesser toe +C2869823|T037|HT|S98.142|ICD10CM|Partial traumatic amputation of one left lesser toe|Partial traumatic amputation of one left lesser toe +C2869824|T037|AB|S98.142A|ICD10CM|Partial traumatic amputation of one left lesser toe, init|Partial traumatic amputation of one left lesser toe, init +C2869824|T037|PT|S98.142A|ICD10CM|Partial traumatic amputation of one left lesser toe, initial encounter|Partial traumatic amputation of one left lesser toe, initial encounter +C2869825|T037|AB|S98.142D|ICD10CM|Partial traumatic amputation of one left lesser toe, subs|Partial traumatic amputation of one left lesser toe, subs +C2869825|T037|PT|S98.142D|ICD10CM|Partial traumatic amputation of one left lesser toe, subsequent encounter|Partial traumatic amputation of one left lesser toe, subsequent encounter +C2869826|T037|AB|S98.142S|ICD10CM|Partial traumatic amputation of one left lesser toe, sequela|Partial traumatic amputation of one left lesser toe, sequela +C2869826|T037|PT|S98.142S|ICD10CM|Partial traumatic amputation of one left lesser toe, sequela|Partial traumatic amputation of one left lesser toe, sequela +C2869827|T037|AB|S98.149|ICD10CM|Partial traumatic amputation of one unspecified lesser toe|Partial traumatic amputation of one unspecified lesser toe +C2869827|T037|HT|S98.149|ICD10CM|Partial traumatic amputation of one unspecified lesser toe|Partial traumatic amputation of one unspecified lesser toe +C2869828|T037|AB|S98.149A|ICD10CM|Partial traumatic amputation of one unsp lesser toe, init|Partial traumatic amputation of one unsp lesser toe, init +C2869828|T037|PT|S98.149A|ICD10CM|Partial traumatic amputation of one unspecified lesser toe, initial encounter|Partial traumatic amputation of one unspecified lesser toe, initial encounter +C2869829|T037|AB|S98.149D|ICD10CM|Partial traumatic amputation of one unsp lesser toe, subs|Partial traumatic amputation of one unsp lesser toe, subs +C2869829|T037|PT|S98.149D|ICD10CM|Partial traumatic amputation of one unspecified lesser toe, subsequent encounter|Partial traumatic amputation of one unspecified lesser toe, subsequent encounter +C2869830|T037|AB|S98.149S|ICD10CM|Partial traumatic amputation of one unsp lesser toe, sequela|Partial traumatic amputation of one unsp lesser toe, sequela +C2869830|T037|PT|S98.149S|ICD10CM|Partial traumatic amputation of one unspecified lesser toe, sequela|Partial traumatic amputation of one unspecified lesser toe, sequela +C2869831|T037|AB|S98.2|ICD10CM|Traumatic amputation of two or more lesser toes|Traumatic amputation of two or more lesser toes +C2869831|T037|HT|S98.2|ICD10CM|Traumatic amputation of two or more lesser toes|Traumatic amputation of two or more lesser toes +C0478362|T037|PT|S98.2|ICD10|Traumatic amputation of two or more toes|Traumatic amputation of two or more toes +C2869832|T037|AB|S98.21|ICD10CM|Complete traumatic amputation of two or more lesser toes|Complete traumatic amputation of two or more lesser toes +C2869832|T037|HT|S98.21|ICD10CM|Complete traumatic amputation of two or more lesser toes|Complete traumatic amputation of two or more lesser toes +C2869833|T037|AB|S98.211|ICD10CM|Complete traumatic amp of two or more right lesser toes|Complete traumatic amp of two or more right lesser toes +C2869833|T037|HT|S98.211|ICD10CM|Complete traumatic amputation of two or more right lesser toes|Complete traumatic amputation of two or more right lesser toes +C2869834|T037|AB|S98.211A|ICD10CM|Complete traum amp of two or more right lesser toes, init|Complete traum amp of two or more right lesser toes, init +C2869834|T037|PT|S98.211A|ICD10CM|Complete traumatic amputation of two or more right lesser toes, initial encounter|Complete traumatic amputation of two or more right lesser toes, initial encounter +C2869835|T037|AB|S98.211D|ICD10CM|Complete traum amp of two or more right lesser toes, subs|Complete traum amp of two or more right lesser toes, subs +C2869835|T037|PT|S98.211D|ICD10CM|Complete traumatic amputation of two or more right lesser toes, subsequent encounter|Complete traumatic amputation of two or more right lesser toes, subsequent encounter +C2869836|T037|AB|S98.211S|ICD10CM|Complete traum amp of two or more right lesser toes, sequela|Complete traum amp of two or more right lesser toes, sequela +C2869836|T037|PT|S98.211S|ICD10CM|Complete traumatic amputation of two or more right lesser toes, sequela|Complete traumatic amputation of two or more right lesser toes, sequela +C2869837|T037|AB|S98.212|ICD10CM|Complete traumatic amp of two or more left lesser toes|Complete traumatic amp of two or more left lesser toes +C2869837|T037|HT|S98.212|ICD10CM|Complete traumatic amputation of two or more left lesser toes|Complete traumatic amputation of two or more left lesser toes +C2869838|T037|AB|S98.212A|ICD10CM|Complete traumatic amp of two or more left lesser toes, init|Complete traumatic amp of two or more left lesser toes, init +C2869838|T037|PT|S98.212A|ICD10CM|Complete traumatic amputation of two or more left lesser toes, initial encounter|Complete traumatic amputation of two or more left lesser toes, initial encounter +C2869839|T037|AB|S98.212D|ICD10CM|Complete traumatic amp of two or more left lesser toes, subs|Complete traumatic amp of two or more left lesser toes, subs +C2869839|T037|PT|S98.212D|ICD10CM|Complete traumatic amputation of two or more left lesser toes, subsequent encounter|Complete traumatic amputation of two or more left lesser toes, subsequent encounter +C2869840|T037|AB|S98.212S|ICD10CM|Complete traum amp of two or more left lesser toes, sequela|Complete traum amp of two or more left lesser toes, sequela +C2869840|T037|PT|S98.212S|ICD10CM|Complete traumatic amputation of two or more left lesser toes, sequela|Complete traumatic amputation of two or more left lesser toes, sequela +C2869841|T037|AB|S98.219|ICD10CM|Complete traumatic amp of two or more unsp lesser toes|Complete traumatic amp of two or more unsp lesser toes +C2869841|T037|HT|S98.219|ICD10CM|Complete traumatic amputation of two or more unspecified lesser toes|Complete traumatic amputation of two or more unspecified lesser toes +C2869842|T037|AB|S98.219A|ICD10CM|Complete traumatic amp of two or more unsp lesser toes, init|Complete traumatic amp of two or more unsp lesser toes, init +C2869842|T037|PT|S98.219A|ICD10CM|Complete traumatic amputation of two or more unspecified lesser toes, initial encounter|Complete traumatic amputation of two or more unspecified lesser toes, initial encounter +C2869843|T037|AB|S98.219D|ICD10CM|Complete traumatic amp of two or more unsp lesser toes, subs|Complete traumatic amp of two or more unsp lesser toes, subs +C2869843|T037|PT|S98.219D|ICD10CM|Complete traumatic amputation of two or more unspecified lesser toes, subsequent encounter|Complete traumatic amputation of two or more unspecified lesser toes, subsequent encounter +C2869844|T037|AB|S98.219S|ICD10CM|Complete traum amp of two or more unsp lesser toes, sequela|Complete traum amp of two or more unsp lesser toes, sequela +C2869844|T037|PT|S98.219S|ICD10CM|Complete traumatic amputation of two or more unspecified lesser toes, sequela|Complete traumatic amputation of two or more unspecified lesser toes, sequela +C2869845|T037|AB|S98.22|ICD10CM|Partial traumatic amputation of two or more lesser toes|Partial traumatic amputation of two or more lesser toes +C2869845|T037|HT|S98.22|ICD10CM|Partial traumatic amputation of two or more lesser toes|Partial traumatic amputation of two or more lesser toes +C2869846|T037|AB|S98.221|ICD10CM|Partial traumatic amp of two or more right lesser toes|Partial traumatic amp of two or more right lesser toes +C2869846|T037|HT|S98.221|ICD10CM|Partial traumatic amputation of two or more right lesser toes|Partial traumatic amputation of two or more right lesser toes +C2869847|T037|AB|S98.221A|ICD10CM|Partial traumatic amp of two or more right lesser toes, init|Partial traumatic amp of two or more right lesser toes, init +C2869847|T037|PT|S98.221A|ICD10CM|Partial traumatic amputation of two or more right lesser toes, initial encounter|Partial traumatic amputation of two or more right lesser toes, initial encounter +C2869848|T037|AB|S98.221D|ICD10CM|Partial traumatic amp of two or more right lesser toes, subs|Partial traumatic amp of two or more right lesser toes, subs +C2869848|T037|PT|S98.221D|ICD10CM|Partial traumatic amputation of two or more right lesser toes, subsequent encounter|Partial traumatic amputation of two or more right lesser toes, subsequent encounter +C2869849|T037|AB|S98.221S|ICD10CM|Partial traum amp of two or more right lesser toes, sequela|Partial traum amp of two or more right lesser toes, sequela +C2869849|T037|PT|S98.221S|ICD10CM|Partial traumatic amputation of two or more right lesser toes, sequela|Partial traumatic amputation of two or more right lesser toes, sequela +C2869850|T037|AB|S98.222|ICD10CM|Partial traumatic amputation of two or more left lesser toes|Partial traumatic amputation of two or more left lesser toes +C2869850|T037|HT|S98.222|ICD10CM|Partial traumatic amputation of two or more left lesser toes|Partial traumatic amputation of two or more left lesser toes +C2869851|T037|AB|S98.222A|ICD10CM|Partial traumatic amp of two or more left lesser toes, init|Partial traumatic amp of two or more left lesser toes, init +C2869851|T037|PT|S98.222A|ICD10CM|Partial traumatic amputation of two or more left lesser toes, initial encounter|Partial traumatic amputation of two or more left lesser toes, initial encounter +C2869852|T037|AB|S98.222D|ICD10CM|Partial traumatic amp of two or more left lesser toes, subs|Partial traumatic amp of two or more left lesser toes, subs +C2869852|T037|PT|S98.222D|ICD10CM|Partial traumatic amputation of two or more left lesser toes, subsequent encounter|Partial traumatic amputation of two or more left lesser toes, subsequent encounter +C2869853|T037|AB|S98.222S|ICD10CM|Partial traum amp of two or more left lesser toes, sequela|Partial traum amp of two or more left lesser toes, sequela +C2869853|T037|PT|S98.222S|ICD10CM|Partial traumatic amputation of two or more left lesser toes, sequela|Partial traumatic amputation of two or more left lesser toes, sequela +C2869854|T037|AB|S98.229|ICD10CM|Partial traumatic amputation of two or more unsp lesser toes|Partial traumatic amputation of two or more unsp lesser toes +C2869854|T037|HT|S98.229|ICD10CM|Partial traumatic amputation of two or more unspecified lesser toes|Partial traumatic amputation of two or more unspecified lesser toes +C2869855|T037|AB|S98.229A|ICD10CM|Partial traumatic amp of two or more unsp lesser toes, init|Partial traumatic amp of two or more unsp lesser toes, init +C2869855|T037|PT|S98.229A|ICD10CM|Partial traumatic amputation of two or more unspecified lesser toes, initial encounter|Partial traumatic amputation of two or more unspecified lesser toes, initial encounter +C2869856|T037|AB|S98.229D|ICD10CM|Partial traumatic amp of two or more unsp lesser toes, subs|Partial traumatic amp of two or more unsp lesser toes, subs +C2869856|T037|PT|S98.229D|ICD10CM|Partial traumatic amputation of two or more unspecified lesser toes, subsequent encounter|Partial traumatic amputation of two or more unspecified lesser toes, subsequent encounter +C2869857|T037|AB|S98.229S|ICD10CM|Partial traum amp of two or more unsp lesser toes, sequela|Partial traum amp of two or more unsp lesser toes, sequela +C2869857|T037|PT|S98.229S|ICD10CM|Partial traumatic amputation of two or more unspecified lesser toes, sequela|Partial traumatic amputation of two or more unspecified lesser toes, sequela +C2869858|T037|AB|S98.3|ICD10CM|Traumatic amputation of midfoot|Traumatic amputation of midfoot +C2869858|T037|HT|S98.3|ICD10CM|Traumatic amputation of midfoot|Traumatic amputation of midfoot +C0478363|T037|PT|S98.3|ICD10|Traumatic amputation of other parts of foot|Traumatic amputation of other parts of foot +C2869859|T037|AB|S98.31|ICD10CM|Complete traumatic amputation of midfoot|Complete traumatic amputation of midfoot +C2869859|T037|HT|S98.31|ICD10CM|Complete traumatic amputation of midfoot|Complete traumatic amputation of midfoot +C2869860|T037|AB|S98.311|ICD10CM|Complete traumatic amputation of right midfoot|Complete traumatic amputation of right midfoot +C2869860|T037|HT|S98.311|ICD10CM|Complete traumatic amputation of right midfoot|Complete traumatic amputation of right midfoot +C2869861|T037|AB|S98.311A|ICD10CM|Complete traumatic amputation of right midfoot, init encntr|Complete traumatic amputation of right midfoot, init encntr +C2869861|T037|PT|S98.311A|ICD10CM|Complete traumatic amputation of right midfoot, initial encounter|Complete traumatic amputation of right midfoot, initial encounter +C2869862|T037|AB|S98.311D|ICD10CM|Complete traumatic amputation of right midfoot, subs encntr|Complete traumatic amputation of right midfoot, subs encntr +C2869862|T037|PT|S98.311D|ICD10CM|Complete traumatic amputation of right midfoot, subsequent encounter|Complete traumatic amputation of right midfoot, subsequent encounter +C2869863|T037|PT|S98.311S|ICD10CM|Complete traumatic amputation of right midfoot, sequela|Complete traumatic amputation of right midfoot, sequela +C2869863|T037|AB|S98.311S|ICD10CM|Complete traumatic amputation of right midfoot, sequela|Complete traumatic amputation of right midfoot, sequela +C2869864|T037|AB|S98.312|ICD10CM|Complete traumatic amputation of left midfoot|Complete traumatic amputation of left midfoot +C2869864|T037|HT|S98.312|ICD10CM|Complete traumatic amputation of left midfoot|Complete traumatic amputation of left midfoot +C2869865|T037|AB|S98.312A|ICD10CM|Complete traumatic amputation of left midfoot, init encntr|Complete traumatic amputation of left midfoot, init encntr +C2869865|T037|PT|S98.312A|ICD10CM|Complete traumatic amputation of left midfoot, initial encounter|Complete traumatic amputation of left midfoot, initial encounter +C2869866|T037|AB|S98.312D|ICD10CM|Complete traumatic amputation of left midfoot, subs encntr|Complete traumatic amputation of left midfoot, subs encntr +C2869866|T037|PT|S98.312D|ICD10CM|Complete traumatic amputation of left midfoot, subsequent encounter|Complete traumatic amputation of left midfoot, subsequent encounter +C2869867|T037|PT|S98.312S|ICD10CM|Complete traumatic amputation of left midfoot, sequela|Complete traumatic amputation of left midfoot, sequela +C2869867|T037|AB|S98.312S|ICD10CM|Complete traumatic amputation of left midfoot, sequela|Complete traumatic amputation of left midfoot, sequela +C2869868|T037|AB|S98.319|ICD10CM|Complete traumatic amputation of unspecified midfoot|Complete traumatic amputation of unspecified midfoot +C2869868|T037|HT|S98.319|ICD10CM|Complete traumatic amputation of unspecified midfoot|Complete traumatic amputation of unspecified midfoot +C2869869|T037|AB|S98.319A|ICD10CM|Complete traumatic amputation of unsp midfoot, init encntr|Complete traumatic amputation of unsp midfoot, init encntr +C2869869|T037|PT|S98.319A|ICD10CM|Complete traumatic amputation of unspecified midfoot, initial encounter|Complete traumatic amputation of unspecified midfoot, initial encounter +C2869870|T037|AB|S98.319D|ICD10CM|Complete traumatic amputation of unsp midfoot, subs encntr|Complete traumatic amputation of unsp midfoot, subs encntr +C2869870|T037|PT|S98.319D|ICD10CM|Complete traumatic amputation of unspecified midfoot, subsequent encounter|Complete traumatic amputation of unspecified midfoot, subsequent encounter +C2869871|T037|AB|S98.319S|ICD10CM|Complete traumatic amputation of unsp midfoot, sequela|Complete traumatic amputation of unsp midfoot, sequela +C2869871|T037|PT|S98.319S|ICD10CM|Complete traumatic amputation of unspecified midfoot, sequela|Complete traumatic amputation of unspecified midfoot, sequela +C2869872|T037|AB|S98.32|ICD10CM|Partial traumatic amputation of midfoot|Partial traumatic amputation of midfoot +C2869872|T037|HT|S98.32|ICD10CM|Partial traumatic amputation of midfoot|Partial traumatic amputation of midfoot +C2869873|T037|AB|S98.321|ICD10CM|Partial traumatic amputation of right midfoot|Partial traumatic amputation of right midfoot +C2869873|T037|HT|S98.321|ICD10CM|Partial traumatic amputation of right midfoot|Partial traumatic amputation of right midfoot +C2869874|T037|AB|S98.321A|ICD10CM|Partial traumatic amputation of right midfoot, init encntr|Partial traumatic amputation of right midfoot, init encntr +C2869874|T037|PT|S98.321A|ICD10CM|Partial traumatic amputation of right midfoot, initial encounter|Partial traumatic amputation of right midfoot, initial encounter +C2869875|T037|AB|S98.321D|ICD10CM|Partial traumatic amputation of right midfoot, subs encntr|Partial traumatic amputation of right midfoot, subs encntr +C2869875|T037|PT|S98.321D|ICD10CM|Partial traumatic amputation of right midfoot, subsequent encounter|Partial traumatic amputation of right midfoot, subsequent encounter +C2869876|T037|PT|S98.321S|ICD10CM|Partial traumatic amputation of right midfoot, sequela|Partial traumatic amputation of right midfoot, sequela +C2869876|T037|AB|S98.321S|ICD10CM|Partial traumatic amputation of right midfoot, sequela|Partial traumatic amputation of right midfoot, sequela +C2869877|T037|AB|S98.322|ICD10CM|Partial traumatic amputation of left midfoot|Partial traumatic amputation of left midfoot +C2869877|T037|HT|S98.322|ICD10CM|Partial traumatic amputation of left midfoot|Partial traumatic amputation of left midfoot +C2869878|T037|AB|S98.322A|ICD10CM|Partial traumatic amputation of left midfoot, init encntr|Partial traumatic amputation of left midfoot, init encntr +C2869878|T037|PT|S98.322A|ICD10CM|Partial traumatic amputation of left midfoot, initial encounter|Partial traumatic amputation of left midfoot, initial encounter +C2869879|T037|AB|S98.322D|ICD10CM|Partial traumatic amputation of left midfoot, subs encntr|Partial traumatic amputation of left midfoot, subs encntr +C2869879|T037|PT|S98.322D|ICD10CM|Partial traumatic amputation of left midfoot, subsequent encounter|Partial traumatic amputation of left midfoot, subsequent encounter +C2869880|T037|PT|S98.322S|ICD10CM|Partial traumatic amputation of left midfoot, sequela|Partial traumatic amputation of left midfoot, sequela +C2869880|T037|AB|S98.322S|ICD10CM|Partial traumatic amputation of left midfoot, sequela|Partial traumatic amputation of left midfoot, sequela +C2869881|T037|AB|S98.329|ICD10CM|Partial traumatic amputation of unspecified midfoot|Partial traumatic amputation of unspecified midfoot +C2869881|T037|HT|S98.329|ICD10CM|Partial traumatic amputation of unspecified midfoot|Partial traumatic amputation of unspecified midfoot +C2869882|T037|AB|S98.329A|ICD10CM|Partial traumatic amputation of unsp midfoot, init encntr|Partial traumatic amputation of unsp midfoot, init encntr +C2869882|T037|PT|S98.329A|ICD10CM|Partial traumatic amputation of unspecified midfoot, initial encounter|Partial traumatic amputation of unspecified midfoot, initial encounter +C2869883|T037|AB|S98.329D|ICD10CM|Partial traumatic amputation of unsp midfoot, subs encntr|Partial traumatic amputation of unsp midfoot, subs encntr +C2869883|T037|PT|S98.329D|ICD10CM|Partial traumatic amputation of unspecified midfoot, subsequent encounter|Partial traumatic amputation of unspecified midfoot, subsequent encounter +C2869884|T037|AB|S98.329S|ICD10CM|Partial traumatic amputation of unspecified midfoot, sequela|Partial traumatic amputation of unspecified midfoot, sequela +C2869884|T037|PT|S98.329S|ICD10CM|Partial traumatic amputation of unspecified midfoot, sequela|Partial traumatic amputation of unspecified midfoot, sequela +C0160666|T037|PT|S98.4|ICD10|Traumatic amputation of foot, level unspecified|Traumatic amputation of foot, level unspecified +C0160666|T037|HT|S98.9|ICD10CM|Traumatic amputation of foot, level unspecified|Traumatic amputation of foot, level unspecified +C0160666|T037|AB|S98.9|ICD10CM|Traumatic amputation of foot, level unspecified|Traumatic amputation of foot, level unspecified +C2869885|T037|AB|S98.91|ICD10CM|Complete traumatic amputation of foot, level unspecified|Complete traumatic amputation of foot, level unspecified +C2869885|T037|HT|S98.91|ICD10CM|Complete traumatic amputation of foot, level unspecified|Complete traumatic amputation of foot, level unspecified +C2869886|T037|AB|S98.911|ICD10CM|Complete traumatic amputation of right foot, level unsp|Complete traumatic amputation of right foot, level unsp +C2869886|T037|HT|S98.911|ICD10CM|Complete traumatic amputation of right foot, level unspecified|Complete traumatic amputation of right foot, level unspecified +C2869887|T037|AB|S98.911A|ICD10CM|Complete traumatic amp of right foot, level unsp, init|Complete traumatic amp of right foot, level unsp, init +C2869887|T037|PT|S98.911A|ICD10CM|Complete traumatic amputation of right foot, level unspecified, initial encounter|Complete traumatic amputation of right foot, level unspecified, initial encounter +C2869888|T037|AB|S98.911D|ICD10CM|Complete traumatic amp of right foot, level unsp, subs|Complete traumatic amp of right foot, level unsp, subs +C2869888|T037|PT|S98.911D|ICD10CM|Complete traumatic amputation of right foot, level unspecified, subsequent encounter|Complete traumatic amputation of right foot, level unspecified, subsequent encounter +C2869889|T037|AB|S98.911S|ICD10CM|Complete traumatic amp of right foot, level unsp, sequela|Complete traumatic amp of right foot, level unsp, sequela +C2869889|T037|PT|S98.911S|ICD10CM|Complete traumatic amputation of right foot, level unspecified, sequela|Complete traumatic amputation of right foot, level unspecified, sequela +C2869890|T037|AB|S98.912|ICD10CM|Complete traumatic amputation of left foot, level unsp|Complete traumatic amputation of left foot, level unsp +C2869890|T037|HT|S98.912|ICD10CM|Complete traumatic amputation of left foot, level unspecified|Complete traumatic amputation of left foot, level unspecified +C2869891|T037|AB|S98.912A|ICD10CM|Complete traumatic amputation of left foot, level unsp, init|Complete traumatic amputation of left foot, level unsp, init +C2869891|T037|PT|S98.912A|ICD10CM|Complete traumatic amputation of left foot, level unspecified, initial encounter|Complete traumatic amputation of left foot, level unspecified, initial encounter +C2869892|T037|AB|S98.912D|ICD10CM|Complete traumatic amputation of left foot, level unsp, subs|Complete traumatic amputation of left foot, level unsp, subs +C2869892|T037|PT|S98.912D|ICD10CM|Complete traumatic amputation of left foot, level unspecified, subsequent encounter|Complete traumatic amputation of left foot, level unspecified, subsequent encounter +C2869893|T037|AB|S98.912S|ICD10CM|Complete traumatic amp of left foot, level unsp, sequela|Complete traumatic amp of left foot, level unsp, sequela +C2869893|T037|PT|S98.912S|ICD10CM|Complete traumatic amputation of left foot, level unspecified, sequela|Complete traumatic amputation of left foot, level unspecified, sequela +C2869894|T037|AB|S98.919|ICD10CM|Complete traumatic amputation of unsp foot, level unsp|Complete traumatic amputation of unsp foot, level unsp +C2869894|T037|HT|S98.919|ICD10CM|Complete traumatic amputation of unspecified foot, level unspecified|Complete traumatic amputation of unspecified foot, level unspecified +C2869895|T037|AB|S98.919A|ICD10CM|Complete traumatic amputation of unsp foot, level unsp, init|Complete traumatic amputation of unsp foot, level unsp, init +C2869895|T037|PT|S98.919A|ICD10CM|Complete traumatic amputation of unspecified foot, level unspecified, initial encounter|Complete traumatic amputation of unspecified foot, level unspecified, initial encounter +C2869896|T037|AB|S98.919D|ICD10CM|Complete traumatic amputation of unsp foot, level unsp, subs|Complete traumatic amputation of unsp foot, level unsp, subs +C2869896|T037|PT|S98.919D|ICD10CM|Complete traumatic amputation of unspecified foot, level unspecified, subsequent encounter|Complete traumatic amputation of unspecified foot, level unspecified, subsequent encounter +C2869897|T037|AB|S98.919S|ICD10CM|Complete traumatic amp of unsp foot, level unsp, sequela|Complete traumatic amp of unsp foot, level unsp, sequela +C2869897|T037|PT|S98.919S|ICD10CM|Complete traumatic amputation of unspecified foot, level unspecified, sequela|Complete traumatic amputation of unspecified foot, level unspecified, sequela +C2869898|T037|AB|S98.92|ICD10CM|Partial traumatic amputation of foot, level unspecified|Partial traumatic amputation of foot, level unspecified +C2869898|T037|HT|S98.92|ICD10CM|Partial traumatic amputation of foot, level unspecified|Partial traumatic amputation of foot, level unspecified +C2869899|T037|AB|S98.921|ICD10CM|Partial traumatic amputation of right foot, level unsp|Partial traumatic amputation of right foot, level unsp +C2869899|T037|HT|S98.921|ICD10CM|Partial traumatic amputation of right foot, level unspecified|Partial traumatic amputation of right foot, level unspecified +C2869900|T037|AB|S98.921A|ICD10CM|Partial traumatic amputation of right foot, level unsp, init|Partial traumatic amputation of right foot, level unsp, init +C2869900|T037|PT|S98.921A|ICD10CM|Partial traumatic amputation of right foot, level unspecified, initial encounter|Partial traumatic amputation of right foot, level unspecified, initial encounter +C2869901|T037|AB|S98.921D|ICD10CM|Partial traumatic amputation of right foot, level unsp, subs|Partial traumatic amputation of right foot, level unsp, subs +C2869901|T037|PT|S98.921D|ICD10CM|Partial traumatic amputation of right foot, level unspecified, subsequent encounter|Partial traumatic amputation of right foot, level unspecified, subsequent encounter +C2869902|T037|AB|S98.921S|ICD10CM|Partial traumatic amp of right foot, level unsp, sequela|Partial traumatic amp of right foot, level unsp, sequela +C2869902|T037|PT|S98.921S|ICD10CM|Partial traumatic amputation of right foot, level unspecified, sequela|Partial traumatic amputation of right foot, level unspecified, sequela +C2869903|T037|AB|S98.922|ICD10CM|Partial traumatic amputation of left foot, level unspecified|Partial traumatic amputation of left foot, level unspecified +C2869903|T037|HT|S98.922|ICD10CM|Partial traumatic amputation of left foot, level unspecified|Partial traumatic amputation of left foot, level unspecified +C2869904|T037|AB|S98.922A|ICD10CM|Partial traumatic amputation of left foot, level unsp, init|Partial traumatic amputation of left foot, level unsp, init +C2869904|T037|PT|S98.922A|ICD10CM|Partial traumatic amputation of left foot, level unspecified, initial encounter|Partial traumatic amputation of left foot, level unspecified, initial encounter +C2869905|T037|AB|S98.922D|ICD10CM|Partial traumatic amputation of left foot, level unsp, subs|Partial traumatic amputation of left foot, level unsp, subs +C2869905|T037|PT|S98.922D|ICD10CM|Partial traumatic amputation of left foot, level unspecified, subsequent encounter|Partial traumatic amputation of left foot, level unspecified, subsequent encounter +C2869906|T037|AB|S98.922S|ICD10CM|Partial traumatic amp of left foot, level unsp, sequela|Partial traumatic amp of left foot, level unsp, sequela +C2869906|T037|PT|S98.922S|ICD10CM|Partial traumatic amputation of left foot, level unspecified, sequela|Partial traumatic amputation of left foot, level unspecified, sequela +C2869907|T037|AB|S98.929|ICD10CM|Partial traumatic amputation of unsp foot, level unspecified|Partial traumatic amputation of unsp foot, level unspecified +C2869907|T037|HT|S98.929|ICD10CM|Partial traumatic amputation of unspecified foot, level unspecified|Partial traumatic amputation of unspecified foot, level unspecified +C2869908|T037|AB|S98.929A|ICD10CM|Partial traumatic amputation of unsp foot, level unsp, init|Partial traumatic amputation of unsp foot, level unsp, init +C2869908|T037|PT|S98.929A|ICD10CM|Partial traumatic amputation of unspecified foot, level unspecified, initial encounter|Partial traumatic amputation of unspecified foot, level unspecified, initial encounter +C2869909|T037|AB|S98.929D|ICD10CM|Partial traumatic amputation of unsp foot, level unsp, subs|Partial traumatic amputation of unsp foot, level unsp, subs +C2869909|T037|PT|S98.929D|ICD10CM|Partial traumatic amputation of unspecified foot, level unspecified, subsequent encounter|Partial traumatic amputation of unspecified foot, level unspecified, subsequent encounter +C2869910|T037|AB|S98.929S|ICD10CM|Partial traumatic amp of unsp foot, level unsp, sequela|Partial traumatic amp of unsp foot, level unsp, sequela +C2869910|T037|PT|S98.929S|ICD10CM|Partial traumatic amputation of unspecified foot, level unspecified, sequela|Partial traumatic amputation of unspecified foot, level unspecified, sequela +C0495979|T037|HT|S99|ICD10|Other and unspecified injuries of ankle and foot|Other and unspecified injuries of ankle and foot +C0495979|T037|AB|S99|ICD10CM|Other and unspecified injuries of ankle and foot|Other and unspecified injuries of ankle and foot +C0495979|T037|HT|S99|ICD10CM|Other and unspecified injuries of ankle and foot|Other and unspecified injuries of ankle and foot +C4269657|T037|HT|S99.0|ICD10CM|Physeal fracture of calcaneus|Physeal fracture of calcaneus +C4269657|T037|AB|S99.0|ICD10CM|Physeal fracture of calcaneus|Physeal fracture of calcaneus +C4269658|T037|AB|S99.00|ICD10CM|Unspecified physeal fracture of calcaneus|Unspecified physeal fracture of calcaneus +C4269658|T037|HT|S99.00|ICD10CM|Unspecified physeal fracture of calcaneus|Unspecified physeal fracture of calcaneus +C4269659|T037|AB|S99.001|ICD10CM|Unspecified physeal fracture of right calcaneus|Unspecified physeal fracture of right calcaneus +C4269659|T037|HT|S99.001|ICD10CM|Unspecified physeal fracture of right calcaneus|Unspecified physeal fracture of right calcaneus +C4269660|T037|AB|S99.001A|ICD10CM|Unspecified physeal fracture of right calcaneus, init|Unspecified physeal fracture of right calcaneus, init +C4269660|T037|PT|S99.001A|ICD10CM|Unspecified physeal fracture of right calcaneus, initial encounter for closed fracture|Unspecified physeal fracture of right calcaneus, initial encounter for closed fracture +C4269661|T037|AB|S99.001B|ICD10CM|Unspecified physeal fracture of right calcaneus, 7thB|Unspecified physeal fracture of right calcaneus, 7thB +C4269661|T037|PT|S99.001B|ICD10CM|Unspecified physeal fracture of right calcaneus, initial encounter for open fracture|Unspecified physeal fracture of right calcaneus, initial encounter for open fracture +C4269662|T037|AB|S99.001D|ICD10CM|Unspecified physeal fracture of right calcaneus, 7thD|Unspecified physeal fracture of right calcaneus, 7thD +C4269663|T037|AB|S99.001G|ICD10CM|Unspecified physeal fracture of right calcaneus, 7thG|Unspecified physeal fracture of right calcaneus, 7thG +C4269664|T037|AB|S99.001K|ICD10CM|Unspecified physeal fracture of right calcaneus, 7thK|Unspecified physeal fracture of right calcaneus, 7thK +C4269664|T037|PT|S99.001K|ICD10CM|Unspecified physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion|Unspecified physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion +C4269665|T037|AB|S99.001P|ICD10CM|Unspecified physeal fracture of right calcaneus, 7thP|Unspecified physeal fracture of right calcaneus, 7thP +C4269665|T037|PT|S99.001P|ICD10CM|Unspecified physeal fracture of right calcaneus, subsequent encounter for fracture with malunion|Unspecified physeal fracture of right calcaneus, subsequent encounter for fracture with malunion +C4269666|T037|AB|S99.001S|ICD10CM|Unspecified physeal fracture of right calcaneus, sequela|Unspecified physeal fracture of right calcaneus, sequela +C4269666|T037|PT|S99.001S|ICD10CM|Unspecified physeal fracture of right calcaneus, sequela|Unspecified physeal fracture of right calcaneus, sequela +C4269667|T037|AB|S99.002|ICD10CM|Unspecified physeal fracture of left calcaneus|Unspecified physeal fracture of left calcaneus +C4269667|T037|HT|S99.002|ICD10CM|Unspecified physeal fracture of left calcaneus|Unspecified physeal fracture of left calcaneus +C4269668|T037|AB|S99.002A|ICD10CM|Unspecified physeal fracture of left calcaneus, init|Unspecified physeal fracture of left calcaneus, init +C4269668|T037|PT|S99.002A|ICD10CM|Unspecified physeal fracture of left calcaneus, initial encounter for closed fracture|Unspecified physeal fracture of left calcaneus, initial encounter for closed fracture +C4269669|T037|AB|S99.002B|ICD10CM|Unspecified physeal fracture of left calcaneus, 7thB|Unspecified physeal fracture of left calcaneus, 7thB +C4269669|T037|PT|S99.002B|ICD10CM|Unspecified physeal fracture of left calcaneus, initial encounter for open fracture|Unspecified physeal fracture of left calcaneus, initial encounter for open fracture +C4269670|T037|AB|S99.002D|ICD10CM|Unspecified physeal fracture of left calcaneus, 7thD|Unspecified physeal fracture of left calcaneus, 7thD +C4269671|T037|AB|S99.002G|ICD10CM|Unspecified physeal fracture of left calcaneus, 7thG|Unspecified physeal fracture of left calcaneus, 7thG +C4269672|T037|AB|S99.002K|ICD10CM|Unspecified physeal fracture of left calcaneus, 7thK|Unspecified physeal fracture of left calcaneus, 7thK +C4269672|T037|PT|S99.002K|ICD10CM|Unspecified physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion|Unspecified physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion +C4269673|T037|AB|S99.002P|ICD10CM|Unspecified physeal fracture of left calcaneus, 7thP|Unspecified physeal fracture of left calcaneus, 7thP +C4269673|T037|PT|S99.002P|ICD10CM|Unspecified physeal fracture of left calcaneus, subsequent encounter for fracture with malunion|Unspecified physeal fracture of left calcaneus, subsequent encounter for fracture with malunion +C4269674|T037|PT|S99.002S|ICD10CM|Unspecified physeal fracture of left calcaneus, sequela|Unspecified physeal fracture of left calcaneus, sequela +C4269674|T037|AB|S99.002S|ICD10CM|Unspecified physeal fracture of left calcaneus, sequela|Unspecified physeal fracture of left calcaneus, sequela +C4269675|T037|AB|S99.009|ICD10CM|Unspecified physeal fracture of unspecified calcaneus|Unspecified physeal fracture of unspecified calcaneus +C4269675|T037|HT|S99.009|ICD10CM|Unspecified physeal fracture of unspecified calcaneus|Unspecified physeal fracture of unspecified calcaneus +C4269676|T037|AB|S99.009A|ICD10CM|Unspecified physeal fracture of unspecified calcaneus, init|Unspecified physeal fracture of unspecified calcaneus, init +C4269676|T037|PT|S99.009A|ICD10CM|Unspecified physeal fracture of unspecified calcaneus, initial encounter for closed fracture|Unspecified physeal fracture of unspecified calcaneus, initial encounter for closed fracture +C4269677|T037|AB|S99.009B|ICD10CM|Unspecified physeal fracture of unspecified calcaneus, 7thB|Unspecified physeal fracture of unspecified calcaneus, 7thB +C4269677|T037|PT|S99.009B|ICD10CM|Unspecified physeal fracture of unspecified calcaneus, initial encounter for open fracture|Unspecified physeal fracture of unspecified calcaneus, initial encounter for open fracture +C4269678|T037|AB|S99.009D|ICD10CM|Unspecified physeal fracture of unspecified calcaneus, 7thD|Unspecified physeal fracture of unspecified calcaneus, 7thD +C4269679|T037|AB|S99.009G|ICD10CM|Unspecified physeal fracture of unspecified calcaneus, 7thG|Unspecified physeal fracture of unspecified calcaneus, 7thG +C4269680|T037|AB|S99.009K|ICD10CM|Unspecified physeal fracture of unspecified calcaneus, 7thK|Unspecified physeal fracture of unspecified calcaneus, 7thK +C4269681|T037|AB|S99.009P|ICD10CM|Unspecified physeal fracture of unspecified calcaneus, 7thP|Unspecified physeal fracture of unspecified calcaneus, 7thP +C4269682|T037|PT|S99.009S|ICD10CM|Unspecified physeal fracture of unspecified calcaneus, sequela|Unspecified physeal fracture of unspecified calcaneus, sequela +C4269682|T037|AB|S99.009S|ICD10CM|Unspecified physeal fx unspecified calcaneus, sequela|Unspecified physeal fx unspecified calcaneus, sequela +C4269683|T037|HT|S99.01|ICD10CM|Salter-Harris Type I physeal fracture of calcaneus|Salter-Harris Type I physeal fracture of calcaneus +C4269683|T037|AB|S99.01|ICD10CM|Salter-Harris Type I physeal fracture of calcaneus|Salter-Harris Type I physeal fracture of calcaneus +C4269684|T037|AB|S99.011|ICD10CM|Salter-Harris Type I physeal fracture of right calcaneus|Salter-Harris Type I physeal fracture of right calcaneus +C4269684|T037|HT|S99.011|ICD10CM|Salter-Harris Type I physeal fracture of right calcaneus|Salter-Harris Type I physeal fracture of right calcaneus +C4269685|T037|AB|S99.011A|ICD10CM|Salter-Harris Type I physeal fracture of r calcaneus, init|Salter-Harris Type I physeal fracture of r calcaneus, init +C4269685|T037|PT|S99.011A|ICD10CM|Salter-Harris Type I physeal fracture of right calcaneus, initial encounter for closed fracture|Salter-Harris Type I physeal fracture of right calcaneus, initial encounter for closed fracture +C4269686|T037|AB|S99.011B|ICD10CM|Salter-Harris Type I physeal fracture of r calcaneus, 7thB|Salter-Harris Type I physeal fracture of r calcaneus, 7thB +C4269686|T037|PT|S99.011B|ICD10CM|Salter-Harris Type I physeal fracture of right calcaneus, initial encounter for open fracture|Salter-Harris Type I physeal fracture of right calcaneus, initial encounter for open fracture +C4269687|T037|AB|S99.011D|ICD10CM|Salter-Harris Type I physeal fracture of r calcaneus, 7thD|Salter-Harris Type I physeal fracture of r calcaneus, 7thD +C4269688|T037|AB|S99.011G|ICD10CM|Salter-Harris Type I physeal fracture of r calcaneus, 7thG|Salter-Harris Type I physeal fracture of r calcaneus, 7thG +C4269689|T037|AB|S99.011K|ICD10CM|Salter-Harris Type I physeal fracture of r calcaneus, 7thK|Salter-Harris Type I physeal fracture of r calcaneus, 7thK +C4269690|T037|AB|S99.011P|ICD10CM|Salter-Harris Type I physeal fracture of r calcaneus, 7thP|Salter-Harris Type I physeal fracture of r calcaneus, 7thP +C4269691|T037|PT|S99.011S|ICD10CM|Salter-Harris Type I physeal fracture of right calcaneus, sequela|Salter-Harris Type I physeal fracture of right calcaneus, sequela +C4269691|T037|AB|S99.011S|ICD10CM|Sltr-haris Type I physeal fracture of r calcaneus, sequela|Sltr-haris Type I physeal fracture of r calcaneus, sequela +C4269692|T037|AB|S99.012|ICD10CM|Salter-Harris Type I physeal fracture of left calcaneus|Salter-Harris Type I physeal fracture of left calcaneus +C4269692|T037|HT|S99.012|ICD10CM|Salter-Harris Type I physeal fracture of left calcaneus|Salter-Harris Type I physeal fracture of left calcaneus +C4269693|T037|AB|S99.012A|ICD10CM|Salter-Harris Type I physeal fracture of l calcaneus, init|Salter-Harris Type I physeal fracture of l calcaneus, init +C4269693|T037|PT|S99.012A|ICD10CM|Salter-Harris Type I physeal fracture of left calcaneus, initial encounter for closed fracture|Salter-Harris Type I physeal fracture of left calcaneus, initial encounter for closed fracture +C4269694|T037|AB|S99.012B|ICD10CM|Salter-Harris Type I physeal fracture of l calcaneus, 7thB|Salter-Harris Type I physeal fracture of l calcaneus, 7thB +C4269694|T037|PT|S99.012B|ICD10CM|Salter-Harris Type I physeal fracture of left calcaneus, initial encounter for open fracture|Salter-Harris Type I physeal fracture of left calcaneus, initial encounter for open fracture +C4269695|T037|AB|S99.012D|ICD10CM|Salter-Harris Type I physeal fracture of l calcaneus, 7thD|Salter-Harris Type I physeal fracture of l calcaneus, 7thD +C4269696|T037|AB|S99.012G|ICD10CM|Salter-Harris Type I physeal fracture of l calcaneus, 7thG|Salter-Harris Type I physeal fracture of l calcaneus, 7thG +C4269697|T037|AB|S99.012K|ICD10CM|Salter-Harris Type I physeal fracture of l calcaneus, 7thK|Salter-Harris Type I physeal fracture of l calcaneus, 7thK +C4269698|T037|AB|S99.012P|ICD10CM|Salter-Harris Type I physeal fracture of l calcaneus, 7thP|Salter-Harris Type I physeal fracture of l calcaneus, 7thP +C4269699|T037|PT|S99.012S|ICD10CM|Salter-Harris Type I physeal fracture of left calcaneus, sequela|Salter-Harris Type I physeal fracture of left calcaneus, sequela +C4269699|T037|AB|S99.012S|ICD10CM|Sltr-haris Type I physeal fracture of l calcaneus, sequela|Sltr-haris Type I physeal fracture of l calcaneus, sequela +C4269700|T037|HT|S99.019|ICD10CM|Salter-Harris Type I physeal fracture of unspecified calcaneus|Salter-Harris Type I physeal fracture of unspecified calcaneus +C4269700|T037|AB|S99.019|ICD10CM|Sltr-haris Type I physeal fracture of unspecified calcaneus|Sltr-haris Type I physeal fracture of unspecified calcaneus +C4269701|T037|AB|S99.019A|ICD10CM|Sltr-haris Type I physeal fx unspecified calcaneus, init|Sltr-haris Type I physeal fx unspecified calcaneus, init +C4269702|T037|PT|S99.019B|ICD10CM|Salter-Harris Type I physeal fracture of unspecified calcaneus, initial encounter for open fracture|Salter-Harris Type I physeal fracture of unspecified calcaneus, initial encounter for open fracture +C4269702|T037|AB|S99.019B|ICD10CM|Sltr-haris Type I physeal fx unspecified calcaneus, 7thB|Sltr-haris Type I physeal fx unspecified calcaneus, 7thB +C4269703|T037|AB|S99.019D|ICD10CM|Sltr-haris Type I physeal fx unspecified calcaneus, 7thD|Sltr-haris Type I physeal fx unspecified calcaneus, 7thD +C4269704|T037|AB|S99.019G|ICD10CM|Sltr-haris Type I physeal fx unspecified calcaneus, 7thG|Sltr-haris Type I physeal fx unspecified calcaneus, 7thG +C4269705|T037|AB|S99.019K|ICD10CM|Sltr-haris Type I physeal fx unspecified calcaneus, 7thK|Sltr-haris Type I physeal fx unspecified calcaneus, 7thK +C4269706|T037|AB|S99.019P|ICD10CM|Sltr-haris Type I physeal fx unspecified calcaneus, 7thP|Sltr-haris Type I physeal fx unspecified calcaneus, 7thP +C4269707|T037|PT|S99.019S|ICD10CM|Salter-Harris Type I physeal fracture of unspecified calcaneus, sequela|Salter-Harris Type I physeal fracture of unspecified calcaneus, sequela +C4269707|T037|AB|S99.019S|ICD10CM|Sltr-haris Type I physeal fx unspecified calcaneus, sequela|Sltr-haris Type I physeal fx unspecified calcaneus, sequela +C4269708|T037|HT|S99.02|ICD10CM|Salter-Harris Type II physeal fracture of calcaneus|Salter-Harris Type II physeal fracture of calcaneus +C4269708|T037|AB|S99.02|ICD10CM|Salter-Harris Type II physeal fracture of calcaneus|Salter-Harris Type II physeal fracture of calcaneus +C4269709|T037|AB|S99.021|ICD10CM|Salter-Harris Type II physeal fracture of right calcaneus|Salter-Harris Type II physeal fracture of right calcaneus +C4269709|T037|HT|S99.021|ICD10CM|Salter-Harris Type II physeal fracture of right calcaneus|Salter-Harris Type II physeal fracture of right calcaneus +C4269710|T037|AB|S99.021A|ICD10CM|Salter-Harris Type II physeal fracture of r calcaneus, init|Salter-Harris Type II physeal fracture of r calcaneus, init +C4269710|T037|PT|S99.021A|ICD10CM|Salter-Harris Type II physeal fracture of right calcaneus, initial encounter for closed fracture|Salter-Harris Type II physeal fracture of right calcaneus, initial encounter for closed fracture +C4269711|T037|AB|S99.021B|ICD10CM|Salter-Harris Type II physeal fracture of r calcaneus, 7thB|Salter-Harris Type II physeal fracture of r calcaneus, 7thB +C4269711|T037|PT|S99.021B|ICD10CM|Salter-Harris Type II physeal fracture of right calcaneus, initial encounter for open fracture|Salter-Harris Type II physeal fracture of right calcaneus, initial encounter for open fracture +C4269712|T037|AB|S99.021D|ICD10CM|Salter-Harris Type II physeal fracture of r calcaneus, 7thD|Salter-Harris Type II physeal fracture of r calcaneus, 7thD +C4269713|T037|AB|S99.021G|ICD10CM|Salter-Harris Type II physeal fracture of r calcaneus, 7thG|Salter-Harris Type II physeal fracture of r calcaneus, 7thG +C4269714|T037|AB|S99.021K|ICD10CM|Salter-Harris Type II physeal fracture of r calcaneus, 7thK|Salter-Harris Type II physeal fracture of r calcaneus, 7thK +C4269715|T037|AB|S99.021P|ICD10CM|Salter-Harris Type II physeal fracture of r calcaneus, 7thP|Salter-Harris Type II physeal fracture of r calcaneus, 7thP +C4269716|T037|PT|S99.021S|ICD10CM|Salter-Harris Type II physeal fracture of right calcaneus, sequela|Salter-Harris Type II physeal fracture of right calcaneus, sequela +C4269716|T037|AB|S99.021S|ICD10CM|Sltr-haris Type II physeal fracture of r calcaneus, sequela|Sltr-haris Type II physeal fracture of r calcaneus, sequela +C4269717|T037|AB|S99.022|ICD10CM|Salter-Harris Type II physeal fracture of left calcaneus|Salter-Harris Type II physeal fracture of left calcaneus +C4269717|T037|HT|S99.022|ICD10CM|Salter-Harris Type II physeal fracture of left calcaneus|Salter-Harris Type II physeal fracture of left calcaneus +C4269718|T037|AB|S99.022A|ICD10CM|Salter-Harris Type II physeal fracture of l calcaneus, init|Salter-Harris Type II physeal fracture of l calcaneus, init +C4269718|T037|PT|S99.022A|ICD10CM|Salter-Harris Type II physeal fracture of left calcaneus, initial encounter for closed fracture|Salter-Harris Type II physeal fracture of left calcaneus, initial encounter for closed fracture +C4269719|T037|AB|S99.022B|ICD10CM|Salter-Harris Type II physeal fracture of l calcaneus, 7thB|Salter-Harris Type II physeal fracture of l calcaneus, 7thB +C4269719|T037|PT|S99.022B|ICD10CM|Salter-Harris Type II physeal fracture of left calcaneus, initial encounter for open fracture|Salter-Harris Type II physeal fracture of left calcaneus, initial encounter for open fracture +C4269720|T037|AB|S99.022D|ICD10CM|Salter-Harris Type II physeal fracture of l calcaneus, 7thD|Salter-Harris Type II physeal fracture of l calcaneus, 7thD +C4269721|T037|AB|S99.022G|ICD10CM|Salter-Harris Type II physeal fracture of l calcaneus, 7thG|Salter-Harris Type II physeal fracture of l calcaneus, 7thG +C4269722|T037|AB|S99.022K|ICD10CM|Salter-Harris Type II physeal fracture of l calcaneus, 7thK|Salter-Harris Type II physeal fracture of l calcaneus, 7thK +C4269723|T037|AB|S99.022P|ICD10CM|Salter-Harris Type II physeal fracture of l calcaneus, 7thP|Salter-Harris Type II physeal fracture of l calcaneus, 7thP +C4269724|T037|PT|S99.022S|ICD10CM|Salter-Harris Type II physeal fracture of left calcaneus, sequela|Salter-Harris Type II physeal fracture of left calcaneus, sequela +C4269724|T037|AB|S99.022S|ICD10CM|Sltr-haris Type II physeal fracture of l calcaneus, sequela|Sltr-haris Type II physeal fracture of l calcaneus, sequela +C4269725|T037|HT|S99.029|ICD10CM|Salter-Harris Type II physeal fracture of unspecified calcaneus|Salter-Harris Type II physeal fracture of unspecified calcaneus +C4269725|T037|AB|S99.029|ICD10CM|Sltr-haris Type II physeal fracture of unspecified calcaneus|Sltr-haris Type II physeal fracture of unspecified calcaneus +C4269726|T037|AB|S99.029A|ICD10CM|Sltr-haris Type II physeal fx unspecified calcaneus, init|Sltr-haris Type II physeal fx unspecified calcaneus, init +C4269727|T037|PT|S99.029B|ICD10CM|Salter-Harris Type II physeal fracture of unspecified calcaneus, initial encounter for open fracture|Salter-Harris Type II physeal fracture of unspecified calcaneus, initial encounter for open fracture +C4269727|T037|AB|S99.029B|ICD10CM|Sltr-haris Type II physeal fx unspecified calcaneus, 7thB|Sltr-haris Type II physeal fx unspecified calcaneus, 7thB +C4269728|T037|AB|S99.029D|ICD10CM|Sltr-haris Type II physeal fx unspecified calcaneus, 7thD|Sltr-haris Type II physeal fx unspecified calcaneus, 7thD +C4269729|T037|AB|S99.029G|ICD10CM|Sltr-haris Type II physeal fx unspecified calcaneus, 7thG|Sltr-haris Type II physeal fx unspecified calcaneus, 7thG +C4269730|T037|AB|S99.029K|ICD10CM|Sltr-haris Type II physeal fx unspecified calcaneus, 7thK|Sltr-haris Type II physeal fx unspecified calcaneus, 7thK +C4269731|T037|AB|S99.029P|ICD10CM|Sltr-haris Type II physeal fx unspecified calcaneus, 7thP|Sltr-haris Type II physeal fx unspecified calcaneus, 7thP +C4269732|T037|PT|S99.029S|ICD10CM|Salter-Harris Type II physeal fracture of unspecified calcaneus, sequela|Salter-Harris Type II physeal fracture of unspecified calcaneus, sequela +C4269732|T037|AB|S99.029S|ICD10CM|Sltr-haris Type II physeal fx unspecified calcaneus, sequela|Sltr-haris Type II physeal fx unspecified calcaneus, sequela +C4269733|T037|HT|S99.03|ICD10CM|Salter-Harris Type III physeal fracture of calcaneus|Salter-Harris Type III physeal fracture of calcaneus +C4269733|T037|AB|S99.03|ICD10CM|Salter-Harris Type III physeal fracture of calcaneus|Salter-Harris Type III physeal fracture of calcaneus +C4269734|T037|AB|S99.031|ICD10CM|Salter-Harris Type III physeal fracture of right calcaneus|Salter-Harris Type III physeal fracture of right calcaneus +C4269734|T037|HT|S99.031|ICD10CM|Salter-Harris Type III physeal fracture of right calcaneus|Salter-Harris Type III physeal fracture of right calcaneus +C4269735|T037|AB|S99.031A|ICD10CM|Salter-Harris Type III physeal fracture of r calcaneus, init|Salter-Harris Type III physeal fracture of r calcaneus, init +C4269735|T037|PT|S99.031A|ICD10CM|Salter-Harris Type III physeal fracture of right calcaneus, initial encounter for closed fracture|Salter-Harris Type III physeal fracture of right calcaneus, initial encounter for closed fracture +C4269736|T037|AB|S99.031B|ICD10CM|Salter-Harris Type III physeal fracture of r calcaneus, 7thB|Salter-Harris Type III physeal fracture of r calcaneus, 7thB +C4269736|T037|PT|S99.031B|ICD10CM|Salter-Harris Type III physeal fracture of right calcaneus, initial encounter for open fracture|Salter-Harris Type III physeal fracture of right calcaneus, initial encounter for open fracture +C4269737|T037|AB|S99.031D|ICD10CM|Salter-Harris Type III physeal fracture of r calcaneus, 7thD|Salter-Harris Type III physeal fracture of r calcaneus, 7thD +C4269738|T037|AB|S99.031G|ICD10CM|Salter-Harris Type III physeal fracture of r calcaneus, 7thG|Salter-Harris Type III physeal fracture of r calcaneus, 7thG +C4269739|T037|AB|S99.031K|ICD10CM|Salter-Harris Type III physeal fracture of r calcaneus, 7thK|Salter-Harris Type III physeal fracture of r calcaneus, 7thK +C4269740|T037|AB|S99.031P|ICD10CM|Salter-Harris Type III physeal fracture of r calcaneus, 7thP|Salter-Harris Type III physeal fracture of r calcaneus, 7thP +C4269741|T037|PT|S99.031S|ICD10CM|Salter-Harris Type III physeal fracture of right calcaneus, sequela|Salter-Harris Type III physeal fracture of right calcaneus, sequela +C4269741|T037|AB|S99.031S|ICD10CM|Sltr-haris Type III physeal fracture of r calcaneus, sequela|Sltr-haris Type III physeal fracture of r calcaneus, sequela +C4269742|T037|AB|S99.032|ICD10CM|Salter-Harris Type III physeal fracture of left calcaneus|Salter-Harris Type III physeal fracture of left calcaneus +C4269742|T037|HT|S99.032|ICD10CM|Salter-Harris Type III physeal fracture of left calcaneus|Salter-Harris Type III physeal fracture of left calcaneus +C4269743|T037|AB|S99.032A|ICD10CM|Salter-Harris Type III physeal fracture of l calcaneus, init|Salter-Harris Type III physeal fracture of l calcaneus, init +C4269743|T037|PT|S99.032A|ICD10CM|Salter-Harris Type III physeal fracture of left calcaneus, initial encounter for closed fracture|Salter-Harris Type III physeal fracture of left calcaneus, initial encounter for closed fracture +C4269744|T037|AB|S99.032B|ICD10CM|Salter-Harris Type III physeal fracture of l calcaneus, 7thB|Salter-Harris Type III physeal fracture of l calcaneus, 7thB +C4269744|T037|PT|S99.032B|ICD10CM|Salter-Harris Type III physeal fracture of left calcaneus, initial encounter for open fracture|Salter-Harris Type III physeal fracture of left calcaneus, initial encounter for open fracture +C4269745|T037|AB|S99.032D|ICD10CM|Salter-Harris Type III physeal fracture of l calcaneus, 7thD|Salter-Harris Type III physeal fracture of l calcaneus, 7thD +C4269746|T037|AB|S99.032G|ICD10CM|Salter-Harris Type III physeal fracture of l calcaneus, 7thG|Salter-Harris Type III physeal fracture of l calcaneus, 7thG +C4269747|T037|AB|S99.032K|ICD10CM|Salter-Harris Type III physeal fracture of l calcaneus, 7thK|Salter-Harris Type III physeal fracture of l calcaneus, 7thK +C4269748|T037|AB|S99.032P|ICD10CM|Salter-Harris Type III physeal fracture of l calcaneus, 7thP|Salter-Harris Type III physeal fracture of l calcaneus, 7thP +C4269749|T037|PT|S99.032S|ICD10CM|Salter-Harris Type III physeal fracture of left calcaneus, sequela|Salter-Harris Type III physeal fracture of left calcaneus, sequela +C4269749|T037|AB|S99.032S|ICD10CM|Sltr-haris Type III physeal fracture of l calcaneus, sequela|Sltr-haris Type III physeal fracture of l calcaneus, sequela +C4269750|T037|HT|S99.039|ICD10CM|Salter-Harris Type III physeal fracture of unspecified calcaneus|Salter-Harris Type III physeal fracture of unspecified calcaneus +C4269750|T037|AB|S99.039|ICD10CM|Sltr-haris Type III physeal fx unspecified calcaneus|Sltr-haris Type III physeal fx unspecified calcaneus +C4269751|T037|AB|S99.039A|ICD10CM|Sltr-haris Type III physeal fx unspecified calcaneus, init|Sltr-haris Type III physeal fx unspecified calcaneus, init +C4269752|T037|AB|S99.039B|ICD10CM|Sltr-haris Type III physeal fx unspecified calcaneus, 7thB|Sltr-haris Type III physeal fx unspecified calcaneus, 7thB +C4269753|T037|AB|S99.039D|ICD10CM|Sltr-haris Type III physeal fx unspecified calcaneus, 7thD|Sltr-haris Type III physeal fx unspecified calcaneus, 7thD +C4269754|T037|AB|S99.039G|ICD10CM|Sltr-haris Type III physeal fx unspecified calcaneus, 7thG|Sltr-haris Type III physeal fx unspecified calcaneus, 7thG +C4269755|T037|AB|S99.039K|ICD10CM|Sltr-haris Type III physeal fx unspecified calcaneus, 7thK|Sltr-haris Type III physeal fx unspecified calcaneus, 7thK +C4269756|T037|AB|S99.039P|ICD10CM|Sltr-haris Type III physeal fx unspecified calcaneus, 7thP|Sltr-haris Type III physeal fx unspecified calcaneus, 7thP +C4269757|T037|PT|S99.039S|ICD10CM|Salter-Harris Type III physeal fracture of unspecified calcaneus, sequela|Salter-Harris Type III physeal fracture of unspecified calcaneus, sequela +C4269757|T037|AB|S99.039S|ICD10CM|Sltr-haris Type III physeal fx unsp calcaneus, sequela|Sltr-haris Type III physeal fx unsp calcaneus, sequela +C4269758|T037|HT|S99.04|ICD10CM|Salter-Harris Type IV physeal fracture of calcaneus|Salter-Harris Type IV physeal fracture of calcaneus +C4269758|T037|AB|S99.04|ICD10CM|Salter-Harris Type IV physeal fracture of calcaneus|Salter-Harris Type IV physeal fracture of calcaneus +C4269759|T037|AB|S99.041|ICD10CM|Salter-Harris Type IV physeal fracture of right calcaneus|Salter-Harris Type IV physeal fracture of right calcaneus +C4269759|T037|HT|S99.041|ICD10CM|Salter-Harris Type IV physeal fracture of right calcaneus|Salter-Harris Type IV physeal fracture of right calcaneus +C4269760|T037|AB|S99.041A|ICD10CM|Salter-Harris Type IV physeal fracture of r calcaneus, init|Salter-Harris Type IV physeal fracture of r calcaneus, init +C4269760|T037|PT|S99.041A|ICD10CM|Salter-Harris Type IV physeal fracture of right calcaneus, initial encounter for closed fracture|Salter-Harris Type IV physeal fracture of right calcaneus, initial encounter for closed fracture +C4269761|T037|AB|S99.041B|ICD10CM|Salter-Harris Type IV physeal fracture of r calcaneus, 7thB|Salter-Harris Type IV physeal fracture of r calcaneus, 7thB +C4269761|T037|PT|S99.041B|ICD10CM|Salter-Harris Type IV physeal fracture of right calcaneus, initial encounter for open fracture|Salter-Harris Type IV physeal fracture of right calcaneus, initial encounter for open fracture +C4269762|T037|AB|S99.041D|ICD10CM|Salter-Harris Type IV physeal fracture of r calcaneus, 7thD|Salter-Harris Type IV physeal fracture of r calcaneus, 7thD +C4269763|T037|AB|S99.041G|ICD10CM|Salter-Harris Type IV physeal fracture of r calcaneus, 7thG|Salter-Harris Type IV physeal fracture of r calcaneus, 7thG +C4269764|T037|AB|S99.041K|ICD10CM|Salter-Harris Type IV physeal fracture of r calcaneus, 7thK|Salter-Harris Type IV physeal fracture of r calcaneus, 7thK +C4269765|T037|AB|S99.041P|ICD10CM|Salter-Harris Type IV physeal fracture of r calcaneus, 7thP|Salter-Harris Type IV physeal fracture of r calcaneus, 7thP +C4269766|T037|PT|S99.041S|ICD10CM|Salter-Harris Type IV physeal fracture of right calcaneus, sequela|Salter-Harris Type IV physeal fracture of right calcaneus, sequela +C4269766|T037|AB|S99.041S|ICD10CM|Sltr-haris Type IV physeal fracture of r calcaneus, sequela|Sltr-haris Type IV physeal fracture of r calcaneus, sequela +C4269767|T037|AB|S99.042|ICD10CM|Salter-Harris Type IV physeal fracture of left calcaneus|Salter-Harris Type IV physeal fracture of left calcaneus +C4269767|T037|HT|S99.042|ICD10CM|Salter-Harris Type IV physeal fracture of left calcaneus|Salter-Harris Type IV physeal fracture of left calcaneus +C4269768|T037|AB|S99.042A|ICD10CM|Salter-Harris Type IV physeal fracture of l calcaneus, init|Salter-Harris Type IV physeal fracture of l calcaneus, init +C4269768|T037|PT|S99.042A|ICD10CM|Salter-Harris Type IV physeal fracture of left calcaneus, initial encounter for closed fracture|Salter-Harris Type IV physeal fracture of left calcaneus, initial encounter for closed fracture +C4269769|T037|AB|S99.042B|ICD10CM|Salter-Harris Type IV physeal fracture of l calcaneus, 7thB|Salter-Harris Type IV physeal fracture of l calcaneus, 7thB +C4269769|T037|PT|S99.042B|ICD10CM|Salter-Harris Type IV physeal fracture of left calcaneus, initial encounter for open fracture|Salter-Harris Type IV physeal fracture of left calcaneus, initial encounter for open fracture +C4269770|T037|AB|S99.042D|ICD10CM|Salter-Harris Type IV physeal fracture of l calcaneus, 7thD|Salter-Harris Type IV physeal fracture of l calcaneus, 7thD +C4269771|T037|AB|S99.042G|ICD10CM|Salter-Harris Type IV physeal fracture of l calcaneus, 7thG|Salter-Harris Type IV physeal fracture of l calcaneus, 7thG +C4269772|T037|AB|S99.042K|ICD10CM|Salter-Harris Type IV physeal fracture of l calcaneus, 7thK|Salter-Harris Type IV physeal fracture of l calcaneus, 7thK +C4269773|T037|AB|S99.042P|ICD10CM|Salter-Harris Type IV physeal fracture of l calcaneus, 7thP|Salter-Harris Type IV physeal fracture of l calcaneus, 7thP +C4269774|T037|PT|S99.042S|ICD10CM|Salter-Harris Type IV physeal fracture of left calcaneus, sequela|Salter-Harris Type IV physeal fracture of left calcaneus, sequela +C4269774|T037|AB|S99.042S|ICD10CM|Sltr-haris Type IV physeal fracture of l calcaneus, sequela|Sltr-haris Type IV physeal fracture of l calcaneus, sequela +C4269775|T037|HT|S99.049|ICD10CM|Salter-Harris Type IV physeal fracture of unspecified calcaneus|Salter-Harris Type IV physeal fracture of unspecified calcaneus +C4269775|T037|AB|S99.049|ICD10CM|Sltr-haris Type IV physeal fracture of unspecified calcaneus|Sltr-haris Type IV physeal fracture of unspecified calcaneus +C4269776|T037|AB|S99.049A|ICD10CM|Sltr-haris Type IV physeal fx unspecified calcaneus, init|Sltr-haris Type IV physeal fx unspecified calcaneus, init +C4269777|T037|PT|S99.049B|ICD10CM|Salter-Harris Type IV physeal fracture of unspecified calcaneus, initial encounter for open fracture|Salter-Harris Type IV physeal fracture of unspecified calcaneus, initial encounter for open fracture +C4269777|T037|AB|S99.049B|ICD10CM|Sltr-haris Type IV physeal fx unspecified calcaneus, 7thB|Sltr-haris Type IV physeal fx unspecified calcaneus, 7thB +C4269778|T037|AB|S99.049D|ICD10CM|Sltr-haris Type IV physeal fx unspecified calcaneus, 7thD|Sltr-haris Type IV physeal fx unspecified calcaneus, 7thD +C4269779|T037|AB|S99.049G|ICD10CM|Sltr-haris Type IV physeal fx unspecified calcaneus, 7thG|Sltr-haris Type IV physeal fx unspecified calcaneus, 7thG +C4269780|T037|AB|S99.049K|ICD10CM|Sltr-haris Type IV physeal fx unspecified calcaneus, 7thK|Sltr-haris Type IV physeal fx unspecified calcaneus, 7thK +C4269781|T037|AB|S99.049P|ICD10CM|Sltr-haris Type IV physeal fx unspecified calcaneus, 7thP|Sltr-haris Type IV physeal fx unspecified calcaneus, 7thP +C4269782|T037|PT|S99.049S|ICD10CM|Salter-Harris Type IV physeal fracture of unspecified calcaneus, sequela|Salter-Harris Type IV physeal fracture of unspecified calcaneus, sequela +C4269782|T037|AB|S99.049S|ICD10CM|Sltr-haris Type IV physeal fx unspecified calcaneus, sequela|Sltr-haris Type IV physeal fx unspecified calcaneus, sequela +C4269783|T037|AB|S99.09|ICD10CM|Other physeal fracture of calcaneus|Other physeal fracture of calcaneus +C4269783|T037|HT|S99.09|ICD10CM|Other physeal fracture of calcaneus|Other physeal fracture of calcaneus +C4269784|T037|AB|S99.091|ICD10CM|Other physeal fracture of right calcaneus|Other physeal fracture of right calcaneus +C4269784|T037|HT|S99.091|ICD10CM|Other physeal fracture of right calcaneus|Other physeal fracture of right calcaneus +C4269785|T037|AB|S99.091A|ICD10CM|Other physeal fracture of right calcaneus, init|Other physeal fracture of right calcaneus, init +C4269785|T037|PT|S99.091A|ICD10CM|Other physeal fracture of right calcaneus, initial encounter for closed fracture|Other physeal fracture of right calcaneus, initial encounter for closed fracture +C4269786|T037|AB|S99.091B|ICD10CM|Other physeal fracture of right calcaneus, 7thB|Other physeal fracture of right calcaneus, 7thB +C4269786|T037|PT|S99.091B|ICD10CM|Other physeal fracture of right calcaneus, initial encounter for open fracture|Other physeal fracture of right calcaneus, initial encounter for open fracture +C4269787|T037|AB|S99.091D|ICD10CM|Other physeal fracture of right calcaneus, 7thD|Other physeal fracture of right calcaneus, 7thD +C4269787|T037|PT|S99.091D|ICD10CM|Other physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing|Other physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing +C4269788|T037|AB|S99.091G|ICD10CM|Other physeal fracture of right calcaneus, 7thG|Other physeal fracture of right calcaneus, 7thG +C4269788|T037|PT|S99.091G|ICD10CM|Other physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing|Other physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing +C4269789|T037|AB|S99.091K|ICD10CM|Other physeal fracture of right calcaneus, 7thK|Other physeal fracture of right calcaneus, 7thK +C4269789|T037|PT|S99.091K|ICD10CM|Other physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion|Other physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion +C4269790|T037|AB|S99.091P|ICD10CM|Other physeal fracture of right calcaneus, 7thP|Other physeal fracture of right calcaneus, 7thP +C4269790|T037|PT|S99.091P|ICD10CM|Other physeal fracture of right calcaneus, subsequent encounter for fracture with malunion|Other physeal fracture of right calcaneus, subsequent encounter for fracture with malunion +C4269791|T037|AB|S99.091S|ICD10CM|Other physeal fracture of right calcaneus, sequela|Other physeal fracture of right calcaneus, sequela +C4269791|T037|PT|S99.091S|ICD10CM|Other physeal fracture of right calcaneus, sequela|Other physeal fracture of right calcaneus, sequela +C4269792|T037|AB|S99.092|ICD10CM|Other physeal fracture of left calcaneus|Other physeal fracture of left calcaneus +C4269792|T037|HT|S99.092|ICD10CM|Other physeal fracture of left calcaneus|Other physeal fracture of left calcaneus +C4269793|T037|AB|S99.092A|ICD10CM|Other physeal fracture of left calcaneus, init|Other physeal fracture of left calcaneus, init +C4269793|T037|PT|S99.092A|ICD10CM|Other physeal fracture of left calcaneus, initial encounter for closed fracture|Other physeal fracture of left calcaneus, initial encounter for closed fracture +C4269794|T037|AB|S99.092B|ICD10CM|Other physeal fracture of left calcaneus, 7thB|Other physeal fracture of left calcaneus, 7thB +C4269794|T037|PT|S99.092B|ICD10CM|Other physeal fracture of left calcaneus, initial encounter for open fracture|Other physeal fracture of left calcaneus, initial encounter for open fracture +C4269795|T037|AB|S99.092D|ICD10CM|Other physeal fracture of left calcaneus, 7thD|Other physeal fracture of left calcaneus, 7thD +C4269795|T037|PT|S99.092D|ICD10CM|Other physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing|Other physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing +C4269796|T037|AB|S99.092G|ICD10CM|Other physeal fracture of left calcaneus, 7thG|Other physeal fracture of left calcaneus, 7thG +C4269796|T037|PT|S99.092G|ICD10CM|Other physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing|Other physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing +C4269797|T037|AB|S99.092K|ICD10CM|Other physeal fracture of left calcaneus, 7thK|Other physeal fracture of left calcaneus, 7thK +C4269797|T037|PT|S99.092K|ICD10CM|Other physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion|Other physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion +C4269798|T037|AB|S99.092P|ICD10CM|Other physeal fracture of left calcaneus, 7thP|Other physeal fracture of left calcaneus, 7thP +C4269798|T037|PT|S99.092P|ICD10CM|Other physeal fracture of left calcaneus, subsequent encounter for fracture with malunion|Other physeal fracture of left calcaneus, subsequent encounter for fracture with malunion +C4269799|T037|PT|S99.092S|ICD10CM|Other physeal fracture of left calcaneus, sequela|Other physeal fracture of left calcaneus, sequela +C4269799|T037|AB|S99.092S|ICD10CM|Other physeal fracture of left calcaneus, sequela|Other physeal fracture of left calcaneus, sequela +C4269800|T037|AB|S99.099|ICD10CM|Other physeal fracture of unspecified calcaneus|Other physeal fracture of unspecified calcaneus +C4269800|T037|HT|S99.099|ICD10CM|Other physeal fracture of unspecified calcaneus|Other physeal fracture of unspecified calcaneus +C4269801|T037|AB|S99.099A|ICD10CM|Other physeal fracture of unspecified calcaneus, init|Other physeal fracture of unspecified calcaneus, init +C4269801|T037|PT|S99.099A|ICD10CM|Other physeal fracture of unspecified calcaneus, initial encounter for closed fracture|Other physeal fracture of unspecified calcaneus, initial encounter for closed fracture +C4269802|T037|AB|S99.099B|ICD10CM|Other physeal fracture of unspecified calcaneus, 7thB|Other physeal fracture of unspecified calcaneus, 7thB +C4269802|T037|PT|S99.099B|ICD10CM|Other physeal fracture of unspecified calcaneus, initial encounter for open fracture|Other physeal fracture of unspecified calcaneus, initial encounter for open fracture +C4269803|T037|AB|S99.099D|ICD10CM|Other physeal fracture of unspecified calcaneus, 7thD|Other physeal fracture of unspecified calcaneus, 7thD +C4269804|T037|AB|S99.099G|ICD10CM|Other physeal fracture of unspecified calcaneus, 7thG|Other physeal fracture of unspecified calcaneus, 7thG +C4269805|T037|AB|S99.099K|ICD10CM|Other physeal fracture of unspecified calcaneus, 7thK|Other physeal fracture of unspecified calcaneus, 7thK +C4269805|T037|PT|S99.099K|ICD10CM|Other physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion|Other physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion +C4269806|T037|AB|S99.099P|ICD10CM|Other physeal fracture of unspecified calcaneus, 7thP|Other physeal fracture of unspecified calcaneus, 7thP +C4269806|T037|PT|S99.099P|ICD10CM|Other physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion|Other physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion +C4269807|T037|PT|S99.099S|ICD10CM|Other physeal fracture of unspecified calcaneus, sequela|Other physeal fracture of unspecified calcaneus, sequela +C4269807|T037|AB|S99.099S|ICD10CM|Other physeal fracture of unspecified calcaneus, sequela|Other physeal fracture of unspecified calcaneus, sequela +C4269808|T037|AB|S99.1|ICD10CM|Physeal fracture of metatarsal|Physeal fracture of metatarsal +C4269808|T037|HT|S99.1|ICD10CM|Physeal fracture of metatarsal|Physeal fracture of metatarsal +C4269809|T037|AB|S99.10|ICD10CM|Unspecified physeal fracture of metatarsal|Unspecified physeal fracture of metatarsal +C4269809|T037|HT|S99.10|ICD10CM|Unspecified physeal fracture of metatarsal|Unspecified physeal fracture of metatarsal +C4269810|T037|AB|S99.101|ICD10CM|Unspecified physeal fracture of right metatarsal|Unspecified physeal fracture of right metatarsal +C4269810|T037|HT|S99.101|ICD10CM|Unspecified physeal fracture of right metatarsal|Unspecified physeal fracture of right metatarsal +C4269811|T037|AB|S99.101A|ICD10CM|Unspecified physeal fracture of right metatarsal, init|Unspecified physeal fracture of right metatarsal, init +C4269811|T037|PT|S99.101A|ICD10CM|Unspecified physeal fracture of right metatarsal, initial encounter for closed fracture|Unspecified physeal fracture of right metatarsal, initial encounter for closed fracture +C4269812|T037|AB|S99.101B|ICD10CM|Unspecified physeal fracture of right metatarsal, 7thB|Unspecified physeal fracture of right metatarsal, 7thB +C4269812|T037|PT|S99.101B|ICD10CM|Unspecified physeal fracture of right metatarsal, initial encounter for open fracture|Unspecified physeal fracture of right metatarsal, initial encounter for open fracture +C4269813|T037|AB|S99.101D|ICD10CM|Unspecified physeal fracture of right metatarsal, 7thD|Unspecified physeal fracture of right metatarsal, 7thD +C4269814|T037|AB|S99.101G|ICD10CM|Unspecified physeal fracture of right metatarsal, 7thG|Unspecified physeal fracture of right metatarsal, 7thG +C4269815|T037|AB|S99.101K|ICD10CM|Unspecified physeal fracture of right metatarsal, 7thK|Unspecified physeal fracture of right metatarsal, 7thK +C4269815|T037|PT|S99.101K|ICD10CM|Unspecified physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion|Unspecified physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion +C4269816|T037|AB|S99.101P|ICD10CM|Unspecified physeal fracture of right metatarsal, 7thP|Unspecified physeal fracture of right metatarsal, 7thP +C4269816|T037|PT|S99.101P|ICD10CM|Unspecified physeal fracture of right metatarsal, subsequent encounter for fracture with malunion|Unspecified physeal fracture of right metatarsal, subsequent encounter for fracture with malunion +C4269817|T037|AB|S99.101S|ICD10CM|Unspecified physeal fracture of right metatarsal, sequela|Unspecified physeal fracture of right metatarsal, sequela +C4269817|T037|PT|S99.101S|ICD10CM|Unspecified physeal fracture of right metatarsal, sequela|Unspecified physeal fracture of right metatarsal, sequela +C4269818|T037|AB|S99.102|ICD10CM|Unspecified physeal fracture of left metatarsal|Unspecified physeal fracture of left metatarsal +C4269818|T037|HT|S99.102|ICD10CM|Unspecified physeal fracture of left metatarsal|Unspecified physeal fracture of left metatarsal +C4269819|T037|AB|S99.102A|ICD10CM|Unspecified physeal fracture of left metatarsal, init|Unspecified physeal fracture of left metatarsal, init +C4269819|T037|PT|S99.102A|ICD10CM|Unspecified physeal fracture of left metatarsal, initial encounter for closed fracture|Unspecified physeal fracture of left metatarsal, initial encounter for closed fracture +C4269820|T037|AB|S99.102B|ICD10CM|Unspecified physeal fracture of left metatarsal, 7thB|Unspecified physeal fracture of left metatarsal, 7thB +C4269820|T037|PT|S99.102B|ICD10CM|Unspecified physeal fracture of left metatarsal, initial encounter for open fracture|Unspecified physeal fracture of left metatarsal, initial encounter for open fracture +C4269821|T037|AB|S99.102D|ICD10CM|Unspecified physeal fracture of left metatarsal, 7thD|Unspecified physeal fracture of left metatarsal, 7thD +C4269822|T037|AB|S99.102G|ICD10CM|Unspecified physeal fracture of left metatarsal, 7thG|Unspecified physeal fracture of left metatarsal, 7thG +C4269823|T037|AB|S99.102K|ICD10CM|Unspecified physeal fracture of left metatarsal, 7thK|Unspecified physeal fracture of left metatarsal, 7thK +C4269823|T037|PT|S99.102K|ICD10CM|Unspecified physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion|Unspecified physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion +C4269824|T037|AB|S99.102P|ICD10CM|Unspecified physeal fracture of left metatarsal, 7thP|Unspecified physeal fracture of left metatarsal, 7thP +C4269824|T037|PT|S99.102P|ICD10CM|Unspecified physeal fracture of left metatarsal, subsequent encounter for fracture with malunion|Unspecified physeal fracture of left metatarsal, subsequent encounter for fracture with malunion +C4269825|T037|AB|S99.102S|ICD10CM|Unspecified physeal fracture of left metatarsal, sequela|Unspecified physeal fracture of left metatarsal, sequela +C4269825|T037|PT|S99.102S|ICD10CM|Unspecified physeal fracture of left metatarsal, sequela|Unspecified physeal fracture of left metatarsal, sequela +C4269826|T037|AB|S99.109|ICD10CM|Unspecified physeal fracture of unspecified metatarsal|Unspecified physeal fracture of unspecified metatarsal +C4269826|T037|HT|S99.109|ICD10CM|Unspecified physeal fracture of unspecified metatarsal|Unspecified physeal fracture of unspecified metatarsal +C4269827|T037|AB|S99.109A|ICD10CM|Unspecified physeal fracture of unspecified metatarsal, init|Unspecified physeal fracture of unspecified metatarsal, init +C4269827|T037|PT|S99.109A|ICD10CM|Unspecified physeal fracture of unspecified metatarsal, initial encounter for closed fracture|Unspecified physeal fracture of unspecified metatarsal, initial encounter for closed fracture +C4269828|T037|AB|S99.109B|ICD10CM|Unspecified physeal fracture of unspecified metatarsal, 7thB|Unspecified physeal fracture of unspecified metatarsal, 7thB +C4269828|T037|PT|S99.109B|ICD10CM|Unspecified physeal fracture of unspecified metatarsal, initial encounter for open fracture|Unspecified physeal fracture of unspecified metatarsal, initial encounter for open fracture +C4269829|T037|AB|S99.109D|ICD10CM|Unspecified physeal fracture of unspecified metatarsal, 7thD|Unspecified physeal fracture of unspecified metatarsal, 7thD +C4269830|T037|AB|S99.109G|ICD10CM|Unspecified physeal fracture of unspecified metatarsal, 7thG|Unspecified physeal fracture of unspecified metatarsal, 7thG +C4269831|T037|AB|S99.109K|ICD10CM|Unspecified physeal fracture of unspecified metatarsal, 7thK|Unspecified physeal fracture of unspecified metatarsal, 7thK +C4269832|T037|AB|S99.109P|ICD10CM|Unspecified physeal fracture of unspecified metatarsal, 7thP|Unspecified physeal fracture of unspecified metatarsal, 7thP +C4269833|T037|PT|S99.109S|ICD10CM|Unspecified physeal fracture of unspecified metatarsal, sequela|Unspecified physeal fracture of unspecified metatarsal, sequela +C4269833|T037|AB|S99.109S|ICD10CM|Unspecified physeal fx unspecified metatarsal, sequela|Unspecified physeal fx unspecified metatarsal, sequela +C4269834|T037|AB|S99.11|ICD10CM|Salter-Harris Type I physeal fracture of metatarsal|Salter-Harris Type I physeal fracture of metatarsal +C4269834|T037|HT|S99.11|ICD10CM|Salter-Harris Type I physeal fracture of metatarsal|Salter-Harris Type I physeal fracture of metatarsal +C4269835|T037|AB|S99.111|ICD10CM|Salter-Harris Type I physeal fracture of right metatarsal|Salter-Harris Type I physeal fracture of right metatarsal +C4269835|T037|HT|S99.111|ICD10CM|Salter-Harris Type I physeal fracture of right metatarsal|Salter-Harris Type I physeal fracture of right metatarsal +C4269836|T037|PT|S99.111A|ICD10CM|Salter-Harris Type I physeal fracture of right metatarsal, initial encounter for closed fracture|Salter-Harris Type I physeal fracture of right metatarsal, initial encounter for closed fracture +C4269836|T037|AB|S99.111A|ICD10CM|Sltr-haris Type I physeal fracture of right metatarsal, init|Sltr-haris Type I physeal fracture of right metatarsal, init +C4269837|T037|PT|S99.111B|ICD10CM|Salter-Harris Type I physeal fracture of right metatarsal, initial encounter for open fracture|Salter-Harris Type I physeal fracture of right metatarsal, initial encounter for open fracture +C4269837|T037|AB|S99.111B|ICD10CM|Sltr-haris Type I physeal fracture of right metatarsal, 7thB|Sltr-haris Type I physeal fracture of right metatarsal, 7thB +C4269838|T037|AB|S99.111D|ICD10CM|Sltr-haris Type I physeal fracture of right metatarsal, 7thD|Sltr-haris Type I physeal fracture of right metatarsal, 7thD +C4269839|T037|AB|S99.111G|ICD10CM|Sltr-haris Type I physeal fracture of right metatarsal, 7thG|Sltr-haris Type I physeal fracture of right metatarsal, 7thG +C4269840|T037|AB|S99.111K|ICD10CM|Sltr-haris Type I physeal fracture of right metatarsal, 7thK|Sltr-haris Type I physeal fracture of right metatarsal, 7thK +C4269841|T037|AB|S99.111P|ICD10CM|Sltr-haris Type I physeal fracture of right metatarsal, 7thP|Sltr-haris Type I physeal fracture of right metatarsal, 7thP +C4269842|T037|PT|S99.111S|ICD10CM|Salter-Harris Type I physeal fracture of right metatarsal, sequela|Salter-Harris Type I physeal fracture of right metatarsal, sequela +C4269842|T037|AB|S99.111S|ICD10CM|Sltr-haris Type I physeal fx right metatarsal, sequela|Sltr-haris Type I physeal fx right metatarsal, sequela +C4269843|T037|AB|S99.112|ICD10CM|Salter-Harris Type I physeal fracture of left metatarsal|Salter-Harris Type I physeal fracture of left metatarsal +C4269843|T037|HT|S99.112|ICD10CM|Salter-Harris Type I physeal fracture of left metatarsal|Salter-Harris Type I physeal fracture of left metatarsal +C4269844|T037|PT|S99.112A|ICD10CM|Salter-Harris Type I physeal fracture of left metatarsal, initial encounter for closed fracture|Salter-Harris Type I physeal fracture of left metatarsal, initial encounter for closed fracture +C4269844|T037|AB|S99.112A|ICD10CM|Sltr-haris Type I physeal fracture of left metatarsal, init|Sltr-haris Type I physeal fracture of left metatarsal, init +C4269845|T037|PT|S99.112B|ICD10CM|Salter-Harris Type I physeal fracture of left metatarsal, initial encounter for open fracture|Salter-Harris Type I physeal fracture of left metatarsal, initial encounter for open fracture +C4269845|T037|AB|S99.112B|ICD10CM|Sltr-haris Type I physeal fracture of left metatarsal, 7thB|Sltr-haris Type I physeal fracture of left metatarsal, 7thB +C4269846|T037|AB|S99.112D|ICD10CM|Sltr-haris Type I physeal fracture of left metatarsal, 7thD|Sltr-haris Type I physeal fracture of left metatarsal, 7thD +C4269847|T037|AB|S99.112G|ICD10CM|Sltr-haris Type I physeal fracture of left metatarsal, 7thG|Sltr-haris Type I physeal fracture of left metatarsal, 7thG +C4269848|T037|AB|S99.112K|ICD10CM|Sltr-haris Type I physeal fracture of left metatarsal, 7thK|Sltr-haris Type I physeal fracture of left metatarsal, 7thK +C4269849|T037|AB|S99.112P|ICD10CM|Sltr-haris Type I physeal fracture of left metatarsal, 7thP|Sltr-haris Type I physeal fracture of left metatarsal, 7thP +C4269850|T037|PT|S99.112S|ICD10CM|Salter-Harris Type I physeal fracture of left metatarsal, sequela|Salter-Harris Type I physeal fracture of left metatarsal, sequela +C4269850|T037|AB|S99.112S|ICD10CM|Sltr-haris Type I physeal fx left metatarsal, sequela|Sltr-haris Type I physeal fx left metatarsal, sequela +C4269851|T037|HT|S99.119|ICD10CM|Salter-Harris Type I physeal fracture of unspecified metatarsal|Salter-Harris Type I physeal fracture of unspecified metatarsal +C4269851|T037|AB|S99.119|ICD10CM|Sltr-haris Type I physeal fracture of unspecified metatarsal|Sltr-haris Type I physeal fracture of unspecified metatarsal +C4269852|T037|AB|S99.119A|ICD10CM|Sltr-haris Type I physeal fx unspecified metatarsal, init|Sltr-haris Type I physeal fx unspecified metatarsal, init +C4269853|T037|PT|S99.119B|ICD10CM|Salter-Harris Type I physeal fracture of unspecified metatarsal, initial encounter for open fracture|Salter-Harris Type I physeal fracture of unspecified metatarsal, initial encounter for open fracture +C4269853|T037|AB|S99.119B|ICD10CM|Sltr-haris Type I physeal fx unspecified metatarsal, 7thB|Sltr-haris Type I physeal fx unspecified metatarsal, 7thB +C4269854|T037|AB|S99.119D|ICD10CM|Sltr-haris Type I physeal fx unspecified metatarsal, 7thD|Sltr-haris Type I physeal fx unspecified metatarsal, 7thD +C4269855|T037|AB|S99.119G|ICD10CM|Sltr-haris Type I physeal fx unspecified metatarsal, 7thG|Sltr-haris Type I physeal fx unspecified metatarsal, 7thG +C4269856|T037|AB|S99.119K|ICD10CM|Sltr-haris Type I physeal fx unspecified metatarsal, 7thK|Sltr-haris Type I physeal fx unspecified metatarsal, 7thK +C4269857|T037|AB|S99.119P|ICD10CM|Sltr-haris Type I physeal fx unspecified metatarsal, 7thP|Sltr-haris Type I physeal fx unspecified metatarsal, 7thP +C4269858|T037|PT|S99.119S|ICD10CM|Salter-Harris Type I physeal fracture of unspecified metatarsal, sequela|Salter-Harris Type I physeal fracture of unspecified metatarsal, sequela +C4269858|T037|AB|S99.119S|ICD10CM|Sltr-haris Type I physeal fx unspecified metatarsal, sequela|Sltr-haris Type I physeal fx unspecified metatarsal, sequela +C4269859|T037|AB|S99.12|ICD10CM|Salter-Harris Type II physeal fracture of metatarsal|Salter-Harris Type II physeal fracture of metatarsal +C4269859|T037|HT|S99.12|ICD10CM|Salter-Harris Type II physeal fracture of metatarsal|Salter-Harris Type II physeal fracture of metatarsal +C4269860|T037|AB|S99.121|ICD10CM|Salter-Harris Type II physeal fracture of right metatarsal|Salter-Harris Type II physeal fracture of right metatarsal +C4269860|T037|HT|S99.121|ICD10CM|Salter-Harris Type II physeal fracture of right metatarsal|Salter-Harris Type II physeal fracture of right metatarsal +C4269861|T037|PT|S99.121A|ICD10CM|Salter-Harris Type II physeal fracture of right metatarsal, initial encounter for closed fracture|Salter-Harris Type II physeal fracture of right metatarsal, initial encounter for closed fracture +C4269861|T037|AB|S99.121A|ICD10CM|Sltr-haris Type II physeal fx right metatarsal, init|Sltr-haris Type II physeal fx right metatarsal, init +C4269862|T037|PT|S99.121B|ICD10CM|Salter-Harris Type II physeal fracture of right metatarsal, initial encounter for open fracture|Salter-Harris Type II physeal fracture of right metatarsal, initial encounter for open fracture +C4269862|T037|AB|S99.121B|ICD10CM|Sltr-haris Type II physeal fx right metatarsal, 7thB|Sltr-haris Type II physeal fx right metatarsal, 7thB +C4269863|T037|AB|S99.121D|ICD10CM|Sltr-haris Type II physeal fx right metatarsal, 7thD|Sltr-haris Type II physeal fx right metatarsal, 7thD +C4269864|T037|AB|S99.121G|ICD10CM|Sltr-haris Type II physeal fx right metatarsal, 7thG|Sltr-haris Type II physeal fx right metatarsal, 7thG +C4269865|T037|AB|S99.121K|ICD10CM|Sltr-haris Type II physeal fx right metatarsal, 7thK|Sltr-haris Type II physeal fx right metatarsal, 7thK +C4269866|T037|AB|S99.121P|ICD10CM|Sltr-haris Type II physeal fx right metatarsal, 7thP|Sltr-haris Type II physeal fx right metatarsal, 7thP +C4269867|T037|PT|S99.121S|ICD10CM|Salter-Harris Type II physeal fracture of right metatarsal, sequela|Salter-Harris Type II physeal fracture of right metatarsal, sequela +C4269867|T037|AB|S99.121S|ICD10CM|Sltr-haris Type II physeal fx right metatarsal, sequela|Sltr-haris Type II physeal fx right metatarsal, sequela +C4269868|T037|AB|S99.122|ICD10CM|Salter-Harris Type II physeal fracture of left metatarsal|Salter-Harris Type II physeal fracture of left metatarsal +C4269868|T037|HT|S99.122|ICD10CM|Salter-Harris Type II physeal fracture of left metatarsal|Salter-Harris Type II physeal fracture of left metatarsal +C4269869|T037|PT|S99.122A|ICD10CM|Salter-Harris Type II physeal fracture of left metatarsal, initial encounter for closed fracture|Salter-Harris Type II physeal fracture of left metatarsal, initial encounter for closed fracture +C4269869|T037|AB|S99.122A|ICD10CM|Sltr-haris Type II physeal fracture of left metatarsal, init|Sltr-haris Type II physeal fracture of left metatarsal, init +C4269870|T037|PT|S99.122B|ICD10CM|Salter-Harris Type II physeal fracture of left metatarsal, initial encounter for open fracture|Salter-Harris Type II physeal fracture of left metatarsal, initial encounter for open fracture +C4269870|T037|AB|S99.122B|ICD10CM|Sltr-haris Type II physeal fracture of left metatarsal, 7thB|Sltr-haris Type II physeal fracture of left metatarsal, 7thB +C4269871|T037|AB|S99.122D|ICD10CM|Sltr-haris Type II physeal fracture of left metatarsal, 7thD|Sltr-haris Type II physeal fracture of left metatarsal, 7thD +C4269872|T037|AB|S99.122G|ICD10CM|Sltr-haris Type II physeal fracture of left metatarsal, 7thG|Sltr-haris Type II physeal fracture of left metatarsal, 7thG +C4269873|T037|AB|S99.122K|ICD10CM|Sltr-haris Type II physeal fracture of left metatarsal, 7thK|Sltr-haris Type II physeal fracture of left metatarsal, 7thK +C4269874|T037|AB|S99.122P|ICD10CM|Sltr-haris Type II physeal fracture of left metatarsal, 7thP|Sltr-haris Type II physeal fracture of left metatarsal, 7thP +C4269875|T037|PT|S99.122S|ICD10CM|Salter-Harris Type II physeal fracture of left metatarsal, sequela|Salter-Harris Type II physeal fracture of left metatarsal, sequela +C4269875|T037|AB|S99.122S|ICD10CM|Sltr-haris Type II physeal fx left metatarsal, sequela|Sltr-haris Type II physeal fx left metatarsal, sequela +C4269876|T037|HT|S99.129|ICD10CM|Salter-Harris Type II physeal fracture of unspecified metatarsal|Salter-Harris Type II physeal fracture of unspecified metatarsal +C4269876|T037|AB|S99.129|ICD10CM|Sltr-haris Type II physeal fx unspecified metatarsal|Sltr-haris Type II physeal fx unspecified metatarsal +C4269877|T037|AB|S99.129A|ICD10CM|Sltr-haris Type II physeal fx unspecified metatarsal, init|Sltr-haris Type II physeal fx unspecified metatarsal, init +C4269878|T037|AB|S99.129B|ICD10CM|Sltr-haris Type II physeal fx unspecified metatarsal, 7thB|Sltr-haris Type II physeal fx unspecified metatarsal, 7thB +C4269879|T037|AB|S99.129D|ICD10CM|Sltr-haris Type II physeal fx unspecified metatarsal, 7thD|Sltr-haris Type II physeal fx unspecified metatarsal, 7thD +C4269880|T037|AB|S99.129G|ICD10CM|Sltr-haris Type II physeal fx unspecified metatarsal, 7thG|Sltr-haris Type II physeal fx unspecified metatarsal, 7thG +C4269881|T037|AB|S99.129K|ICD10CM|Sltr-haris Type II physeal fx unspecified metatarsal, 7thK|Sltr-haris Type II physeal fx unspecified metatarsal, 7thK +C4269882|T037|AB|S99.129P|ICD10CM|Sltr-haris Type II physeal fx unspecified metatarsal, 7thP|Sltr-haris Type II physeal fx unspecified metatarsal, 7thP +C4269883|T037|PT|S99.129S|ICD10CM|Salter-Harris Type II physeal fracture of unspecified metatarsal, sequela|Salter-Harris Type II physeal fracture of unspecified metatarsal, sequela +C4269883|T037|AB|S99.129S|ICD10CM|Sltr-haris Type II physeal fx unsp metatarsal, sequela|Sltr-haris Type II physeal fx unsp metatarsal, sequela +C4269884|T037|AB|S99.13|ICD10CM|Salter-Harris Type III physeal fracture of metatarsal|Salter-Harris Type III physeal fracture of metatarsal +C4269884|T037|HT|S99.13|ICD10CM|Salter-Harris Type III physeal fracture of metatarsal|Salter-Harris Type III physeal fracture of metatarsal +C4269885|T037|AB|S99.131|ICD10CM|Salter-Harris Type III physeal fracture of right metatarsal|Salter-Harris Type III physeal fracture of right metatarsal +C4269885|T037|HT|S99.131|ICD10CM|Salter-Harris Type III physeal fracture of right metatarsal|Salter-Harris Type III physeal fracture of right metatarsal +C4269886|T037|PT|S99.131A|ICD10CM|Salter-Harris Type III physeal fracture of right metatarsal, initial encounter for closed fracture|Salter-Harris Type III physeal fracture of right metatarsal, initial encounter for closed fracture +C4269886|T037|AB|S99.131A|ICD10CM|Sltr-haris Type III physeal fx right metatarsal, init|Sltr-haris Type III physeal fx right metatarsal, init +C4269887|T037|PT|S99.131B|ICD10CM|Salter-Harris Type III physeal fracture of right metatarsal, initial encounter for open fracture|Salter-Harris Type III physeal fracture of right metatarsal, initial encounter for open fracture +C4269887|T037|AB|S99.131B|ICD10CM|Sltr-haris Type III physeal fx right metatarsal, 7thB|Sltr-haris Type III physeal fx right metatarsal, 7thB +C4269888|T037|AB|S99.131D|ICD10CM|Sltr-haris Type III physeal fx right metatarsal, 7thD|Sltr-haris Type III physeal fx right metatarsal, 7thD +C4269889|T037|AB|S99.131G|ICD10CM|Sltr-haris Type III physeal fx right metatarsal, 7thG|Sltr-haris Type III physeal fx right metatarsal, 7thG +C4269890|T037|AB|S99.131K|ICD10CM|Sltr-haris Type III physeal fx right metatarsal, 7thK|Sltr-haris Type III physeal fx right metatarsal, 7thK +C4269891|T037|AB|S99.131P|ICD10CM|Sltr-haris Type III physeal fx right metatarsal, 7thP|Sltr-haris Type III physeal fx right metatarsal, 7thP +C4269892|T037|PT|S99.131S|ICD10CM|Salter-Harris Type III physeal fracture of right metatarsal, sequela|Salter-Harris Type III physeal fracture of right metatarsal, sequela +C4269892|T037|AB|S99.131S|ICD10CM|Sltr-haris Type III physeal fx right metatarsal, sequela|Sltr-haris Type III physeal fx right metatarsal, sequela +C4269893|T037|AB|S99.132|ICD10CM|Salter-Harris Type III physeal fracture of left metatarsal|Salter-Harris Type III physeal fracture of left metatarsal +C4269893|T037|HT|S99.132|ICD10CM|Salter-Harris Type III physeal fracture of left metatarsal|Salter-Harris Type III physeal fracture of left metatarsal +C4269894|T037|PT|S99.132A|ICD10CM|Salter-Harris Type III physeal fracture of left metatarsal, initial encounter for closed fracture|Salter-Harris Type III physeal fracture of left metatarsal, initial encounter for closed fracture +C4269894|T037|AB|S99.132A|ICD10CM|Sltr-haris Type III physeal fx left metatarsal, init|Sltr-haris Type III physeal fx left metatarsal, init +C4269895|T037|PT|S99.132B|ICD10CM|Salter-Harris Type III physeal fracture of left metatarsal, initial encounter for open fracture|Salter-Harris Type III physeal fracture of left metatarsal, initial encounter for open fracture +C4269895|T037|AB|S99.132B|ICD10CM|Sltr-haris Type III physeal fx left metatarsal, 7thB|Sltr-haris Type III physeal fx left metatarsal, 7thB +C4269896|T037|AB|S99.132D|ICD10CM|Sltr-haris Type III physeal fx left metatarsal, 7thD|Sltr-haris Type III physeal fx left metatarsal, 7thD +C4269897|T037|AB|S99.132G|ICD10CM|Sltr-haris Type III physeal fx left metatarsal, 7thG|Sltr-haris Type III physeal fx left metatarsal, 7thG +C4269898|T037|AB|S99.132K|ICD10CM|Sltr-haris Type III physeal fx left metatarsal, 7thK|Sltr-haris Type III physeal fx left metatarsal, 7thK +C4269899|T037|AB|S99.132P|ICD10CM|Sltr-haris Type III physeal fx left metatarsal, 7thP|Sltr-haris Type III physeal fx left metatarsal, 7thP +C4269900|T037|PT|S99.132S|ICD10CM|Salter-Harris Type III physeal fracture of left metatarsal, sequela|Salter-Harris Type III physeal fracture of left metatarsal, sequela +C4269900|T037|AB|S99.132S|ICD10CM|Sltr-haris Type III physeal fx left metatarsal, sequela|Sltr-haris Type III physeal fx left metatarsal, sequela +C4269901|T037|HT|S99.139|ICD10CM|Salter-Harris Type III physeal fracture of unspecified metatarsal|Salter-Harris Type III physeal fracture of unspecified metatarsal +C4269901|T037|AB|S99.139|ICD10CM|Sltr-haris Type III physeal fx unspecified metatarsal|Sltr-haris Type III physeal fx unspecified metatarsal +C4269902|T037|AB|S99.139A|ICD10CM|Sltr-haris Type III physeal fx unspecified metatarsal, init|Sltr-haris Type III physeal fx unspecified metatarsal, init +C4269903|T037|AB|S99.139B|ICD10CM|Sltr-haris Type III physeal fx unspecified metatarsal, 7thB|Sltr-haris Type III physeal fx unspecified metatarsal, 7thB +C4269904|T037|AB|S99.139D|ICD10CM|Sltr-haris Type III physeal fx unspecified metatarsal, 7thD|Sltr-haris Type III physeal fx unspecified metatarsal, 7thD +C4269905|T037|AB|S99.139G|ICD10CM|Sltr-haris Type III physeal fx unspecified metatarsal, 7thG|Sltr-haris Type III physeal fx unspecified metatarsal, 7thG +C4269906|T037|AB|S99.139K|ICD10CM|Sltr-haris Type III physeal fx unspecified metatarsal, 7thK|Sltr-haris Type III physeal fx unspecified metatarsal, 7thK +C4269907|T037|AB|S99.139P|ICD10CM|Sltr-haris Type III physeal fx unspecified metatarsal, 7thP|Sltr-haris Type III physeal fx unspecified metatarsal, 7thP +C4269908|T037|PT|S99.139S|ICD10CM|Salter-Harris Type III physeal fracture of unspecified metatarsal, sequela|Salter-Harris Type III physeal fracture of unspecified metatarsal, sequela +C4269908|T037|AB|S99.139S|ICD10CM|Sltr-haris Type III physeal fx unsp metatarsal, sequela|Sltr-haris Type III physeal fx unsp metatarsal, sequela +C4269909|T037|AB|S99.14|ICD10CM|Salter-Harris Type IV physeal fracture of metatarsal|Salter-Harris Type IV physeal fracture of metatarsal +C4269909|T037|HT|S99.14|ICD10CM|Salter-Harris Type IV physeal fracture of metatarsal|Salter-Harris Type IV physeal fracture of metatarsal +C4269910|T037|AB|S99.141|ICD10CM|Salter-Harris Type IV physeal fracture of right metatarsal|Salter-Harris Type IV physeal fracture of right metatarsal +C4269910|T037|HT|S99.141|ICD10CM|Salter-Harris Type IV physeal fracture of right metatarsal|Salter-Harris Type IV physeal fracture of right metatarsal +C4269911|T037|PT|S99.141A|ICD10CM|Salter-Harris Type IV physeal fracture of right metatarsal, initial encounter for closed fracture|Salter-Harris Type IV physeal fracture of right metatarsal, initial encounter for closed fracture +C4269911|T037|AB|S99.141A|ICD10CM|Sltr-haris Type IV physeal fx right metatarsal, init|Sltr-haris Type IV physeal fx right metatarsal, init +C4269912|T037|PT|S99.141B|ICD10CM|Salter-Harris Type IV physeal fracture of right metatarsal, initial encounter for open fracture|Salter-Harris Type IV physeal fracture of right metatarsal, initial encounter for open fracture +C4269912|T037|AB|S99.141B|ICD10CM|Sltr-haris Type IV physeal fx right metatarsal, 7thB|Sltr-haris Type IV physeal fx right metatarsal, 7thB +C4269913|T037|AB|S99.141D|ICD10CM|Sltr-haris Type IV physeal fx right metatarsal, 7thD|Sltr-haris Type IV physeal fx right metatarsal, 7thD +C4269914|T037|AB|S99.141G|ICD10CM|Sltr-haris Type IV physeal fx right metatarsal, 7thG|Sltr-haris Type IV physeal fx right metatarsal, 7thG +C4269915|T037|AB|S99.141K|ICD10CM|Sltr-haris Type IV physeal fx right metatarsal, 7thK|Sltr-haris Type IV physeal fx right metatarsal, 7thK +C4269916|T037|AB|S99.141P|ICD10CM|Sltr-haris Type IV physeal fx right metatarsal, 7thP|Sltr-haris Type IV physeal fx right metatarsal, 7thP +C4269917|T037|PT|S99.141S|ICD10CM|Salter-Harris Type IV physeal fracture of right metatarsal, sequela|Salter-Harris Type IV physeal fracture of right metatarsal, sequela +C4269917|T037|AB|S99.141S|ICD10CM|Sltr-haris Type IV physeal fx right metatarsal, sequela|Sltr-haris Type IV physeal fx right metatarsal, sequela +C4269918|T037|AB|S99.142|ICD10CM|Salter-Harris Type IV physeal fracture of left metatarsal|Salter-Harris Type IV physeal fracture of left metatarsal +C4269918|T037|HT|S99.142|ICD10CM|Salter-Harris Type IV physeal fracture of left metatarsal|Salter-Harris Type IV physeal fracture of left metatarsal +C4269919|T037|PT|S99.142A|ICD10CM|Salter-Harris Type IV physeal fracture of left metatarsal, initial encounter for closed fracture|Salter-Harris Type IV physeal fracture of left metatarsal, initial encounter for closed fracture +C4269919|T037|AB|S99.142A|ICD10CM|Sltr-haris Type IV physeal fracture of left metatarsal, init|Sltr-haris Type IV physeal fracture of left metatarsal, init +C4269920|T037|PT|S99.142B|ICD10CM|Salter-Harris Type IV physeal fracture of left metatarsal, initial encounter for open fracture|Salter-Harris Type IV physeal fracture of left metatarsal, initial encounter for open fracture +C4269920|T037|AB|S99.142B|ICD10CM|Sltr-haris Type IV physeal fracture of left metatarsal, 7thB|Sltr-haris Type IV physeal fracture of left metatarsal, 7thB +C4269921|T037|AB|S99.142D|ICD10CM|Sltr-haris Type IV physeal fracture of left metatarsal, 7thD|Sltr-haris Type IV physeal fracture of left metatarsal, 7thD +C4269922|T037|AB|S99.142G|ICD10CM|Sltr-haris Type IV physeal fracture of left metatarsal, 7thG|Sltr-haris Type IV physeal fracture of left metatarsal, 7thG +C4269923|T037|AB|S99.142K|ICD10CM|Sltr-haris Type IV physeal fracture of left metatarsal, 7thK|Sltr-haris Type IV physeal fracture of left metatarsal, 7thK +C4269924|T037|AB|S99.142P|ICD10CM|Sltr-haris Type IV physeal fracture of left metatarsal, 7thP|Sltr-haris Type IV physeal fracture of left metatarsal, 7thP +C4269925|T037|PT|S99.142S|ICD10CM|Salter-Harris Type IV physeal fracture of left metatarsal, sequela|Salter-Harris Type IV physeal fracture of left metatarsal, sequela +C4269925|T037|AB|S99.142S|ICD10CM|Sltr-haris Type IV physeal fx left metatarsal, sequela|Sltr-haris Type IV physeal fx left metatarsal, sequela +C4269926|T037|HT|S99.149|ICD10CM|Salter-Harris Type IV physeal fracture of unspecified metatarsal|Salter-Harris Type IV physeal fracture of unspecified metatarsal +C4269926|T037|AB|S99.149|ICD10CM|Sltr-haris Type IV physeal fx unspecified metatarsal|Sltr-haris Type IV physeal fx unspecified metatarsal +C4269927|T037|AB|S99.149A|ICD10CM|Sltr-haris Type IV physeal fx unspecified metatarsal, init|Sltr-haris Type IV physeal fx unspecified metatarsal, init +C4269928|T037|AB|S99.149B|ICD10CM|Sltr-haris Type IV physeal fx unspecified metatarsal, 7thB|Sltr-haris Type IV physeal fx unspecified metatarsal, 7thB +C4269929|T037|AB|S99.149D|ICD10CM|Sltr-haris Type IV physeal fx unspecified metatarsal, 7thD|Sltr-haris Type IV physeal fx unspecified metatarsal, 7thD +C4269930|T037|AB|S99.149G|ICD10CM|Sltr-haris Type IV physeal fx unspecified metatarsal, 7thG|Sltr-haris Type IV physeal fx unspecified metatarsal, 7thG +C4269931|T037|AB|S99.149K|ICD10CM|Sltr-haris Type IV physeal fx unspecified metatarsal, 7thK|Sltr-haris Type IV physeal fx unspecified metatarsal, 7thK +C4269932|T037|AB|S99.149P|ICD10CM|Sltr-haris Type IV physeal fx unspecified metatarsal, 7thP|Sltr-haris Type IV physeal fx unspecified metatarsal, 7thP +C4269933|T037|PT|S99.149S|ICD10CM|Salter-Harris Type IV physeal fracture of unspecified metatarsal, sequela|Salter-Harris Type IV physeal fracture of unspecified metatarsal, sequela +C4269933|T037|AB|S99.149S|ICD10CM|Sltr-haris Type IV physeal fx unsp metatarsal, sequela|Sltr-haris Type IV physeal fx unsp metatarsal, sequela +C4269934|T037|AB|S99.19|ICD10CM|Other physeal fracture of metatarsal|Other physeal fracture of metatarsal +C4269934|T037|HT|S99.19|ICD10CM|Other physeal fracture of metatarsal|Other physeal fracture of metatarsal +C4269935|T037|AB|S99.191|ICD10CM|Other physeal fracture of right metatarsal|Other physeal fracture of right metatarsal +C4269935|T037|HT|S99.191|ICD10CM|Other physeal fracture of right metatarsal|Other physeal fracture of right metatarsal +C4269936|T037|AB|S99.191A|ICD10CM|Other physeal fracture of right metatarsal, init|Other physeal fracture of right metatarsal, init +C4269936|T037|PT|S99.191A|ICD10CM|Other physeal fracture of right metatarsal, initial encounter for closed fracture|Other physeal fracture of right metatarsal, initial encounter for closed fracture +C4269937|T037|AB|S99.191B|ICD10CM|Other physeal fracture of right metatarsal, 7thB|Other physeal fracture of right metatarsal, 7thB +C4269937|T037|PT|S99.191B|ICD10CM|Other physeal fracture of right metatarsal, initial encounter for open fracture|Other physeal fracture of right metatarsal, initial encounter for open fracture +C4269938|T037|AB|S99.191D|ICD10CM|Other physeal fracture of right metatarsal, 7thD|Other physeal fracture of right metatarsal, 7thD +C4269938|T037|PT|S99.191D|ICD10CM|Other physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing|Other physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing +C4269939|T037|AB|S99.191G|ICD10CM|Other physeal fracture of right metatarsal, 7thG|Other physeal fracture of right metatarsal, 7thG +C4269939|T037|PT|S99.191G|ICD10CM|Other physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing|Other physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing +C4269940|T037|AB|S99.191K|ICD10CM|Other physeal fracture of right metatarsal, 7thK|Other physeal fracture of right metatarsal, 7thK +C4269940|T037|PT|S99.191K|ICD10CM|Other physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion|Other physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion +C4269941|T037|AB|S99.191P|ICD10CM|Other physeal fracture of right metatarsal, 7thP|Other physeal fracture of right metatarsal, 7thP +C4269941|T037|PT|S99.191P|ICD10CM|Other physeal fracture of right metatarsal, subsequent encounter for fracture with malunion|Other physeal fracture of right metatarsal, subsequent encounter for fracture with malunion +C4269942|T037|AB|S99.191S|ICD10CM|Other physeal fracture of right metatarsal, sequela|Other physeal fracture of right metatarsal, sequela +C4269942|T037|PT|S99.191S|ICD10CM|Other physeal fracture of right metatarsal, sequela|Other physeal fracture of right metatarsal, sequela +C4269943|T037|AB|S99.192|ICD10CM|Other physeal fracture of left metatarsal|Other physeal fracture of left metatarsal +C4269943|T037|HT|S99.192|ICD10CM|Other physeal fracture of left metatarsal|Other physeal fracture of left metatarsal +C4269944|T037|AB|S99.192A|ICD10CM|Other physeal fracture of left metatarsal, init|Other physeal fracture of left metatarsal, init +C4269944|T037|PT|S99.192A|ICD10CM|Other physeal fracture of left metatarsal, initial encounter for closed fracture|Other physeal fracture of left metatarsal, initial encounter for closed fracture +C4269945|T037|AB|S99.192B|ICD10CM|Other physeal fracture of left metatarsal, 7thB|Other physeal fracture of left metatarsal, 7thB +C4269945|T037|PT|S99.192B|ICD10CM|Other physeal fracture of left metatarsal, initial encounter for open fracture|Other physeal fracture of left metatarsal, initial encounter for open fracture +C4269946|T037|AB|S99.192D|ICD10CM|Other physeal fracture of left metatarsal, 7thD|Other physeal fracture of left metatarsal, 7thD +C4269946|T037|PT|S99.192D|ICD10CM|Other physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing|Other physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing +C4269947|T037|AB|S99.192G|ICD10CM|Other physeal fracture of left metatarsal, 7thG|Other physeal fracture of left metatarsal, 7thG +C4269947|T037|PT|S99.192G|ICD10CM|Other physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing|Other physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing +C4269948|T037|AB|S99.192K|ICD10CM|Other physeal fracture of left metatarsal, 7thK|Other physeal fracture of left metatarsal, 7thK +C4269948|T037|PT|S99.192K|ICD10CM|Other physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion|Other physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion +C4269949|T037|AB|S99.192P|ICD10CM|Other physeal fracture of left metatarsal, 7thP|Other physeal fracture of left metatarsal, 7thP +C4269949|T037|PT|S99.192P|ICD10CM|Other physeal fracture of left metatarsal, subsequent encounter for fracture with malunion|Other physeal fracture of left metatarsal, subsequent encounter for fracture with malunion +C4269950|T037|PT|S99.192S|ICD10CM|Other physeal fracture of left metatarsal, sequela|Other physeal fracture of left metatarsal, sequela +C4269950|T037|AB|S99.192S|ICD10CM|Other physeal fracture of left metatarsal, sequela|Other physeal fracture of left metatarsal, sequela +C4269951|T037|AB|S99.199|ICD10CM|Other physeal fracture of unspecified metatarsal|Other physeal fracture of unspecified metatarsal +C4269951|T037|HT|S99.199|ICD10CM|Other physeal fracture of unspecified metatarsal|Other physeal fracture of unspecified metatarsal +C4269952|T037|AB|S99.199A|ICD10CM|Other physeal fracture of unspecified metatarsal, init|Other physeal fracture of unspecified metatarsal, init +C4269952|T037|PT|S99.199A|ICD10CM|Other physeal fracture of unspecified metatarsal, initial encounter for closed fracture|Other physeal fracture of unspecified metatarsal, initial encounter for closed fracture +C4269953|T037|AB|S99.199B|ICD10CM|Other physeal fracture of unspecified metatarsal, 7thB|Other physeal fracture of unspecified metatarsal, 7thB +C4269953|T037|PT|S99.199B|ICD10CM|Other physeal fracture of unspecified metatarsal, initial encounter for open fracture|Other physeal fracture of unspecified metatarsal, initial encounter for open fracture +C4269954|T037|AB|S99.199D|ICD10CM|Other physeal fracture of unspecified metatarsal, 7thD|Other physeal fracture of unspecified metatarsal, 7thD +C4269955|T037|AB|S99.199G|ICD10CM|Other physeal fracture of unspecified metatarsal, 7thG|Other physeal fracture of unspecified metatarsal, 7thG +C4269956|T037|AB|S99.199K|ICD10CM|Other physeal fracture of unspecified metatarsal, 7thK|Other physeal fracture of unspecified metatarsal, 7thK +C4269956|T037|PT|S99.199K|ICD10CM|Other physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion|Other physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion +C4269957|T037|AB|S99.199P|ICD10CM|Other physeal fracture of unspecified metatarsal, 7thP|Other physeal fracture of unspecified metatarsal, 7thP +C4269957|T037|PT|S99.199P|ICD10CM|Other physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion|Other physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion +C4269958|T037|AB|S99.199S|ICD10CM|Other physeal fracture of unspecified metatarsal, sequela|Other physeal fracture of unspecified metatarsal, sequela +C4269958|T037|PT|S99.199S|ICD10CM|Other physeal fracture of unspecified metatarsal, sequela|Other physeal fracture of unspecified metatarsal, sequela +C4269959|T037|AB|S99.2|ICD10CM|Physeal fracture of phalanx of toe|Physeal fracture of phalanx of toe +C4269959|T037|HT|S99.2|ICD10CM|Physeal fracture of phalanx of toe|Physeal fracture of phalanx of toe +C4269960|T037|AB|S99.20|ICD10CM|Unspecified physeal fracture of phalanx of toe|Unspecified physeal fracture of phalanx of toe +C4269960|T037|HT|S99.20|ICD10CM|Unspecified physeal fracture of phalanx of toe|Unspecified physeal fracture of phalanx of toe +C4269961|T037|AB|S99.201|ICD10CM|Unspecified physeal fracture of phalanx of right toe|Unspecified physeal fracture of phalanx of right toe +C4269961|T037|HT|S99.201|ICD10CM|Unspecified physeal fracture of phalanx of right toe|Unspecified physeal fracture of phalanx of right toe +C4269962|T037|AB|S99.201A|ICD10CM|Unspecified physeal fracture of phalanx of right toe, init|Unspecified physeal fracture of phalanx of right toe, init +C4269962|T037|PT|S99.201A|ICD10CM|Unspecified physeal fracture of phalanx of right toe, initial encounter for closed fracture|Unspecified physeal fracture of phalanx of right toe, initial encounter for closed fracture +C4269963|T037|AB|S99.201B|ICD10CM|Unspecified physeal fracture of phalanx of right toe, 7thB|Unspecified physeal fracture of phalanx of right toe, 7thB +C4269963|T037|PT|S99.201B|ICD10CM|Unspecified physeal fracture of phalanx of right toe, initial encounter for open fracture|Unspecified physeal fracture of phalanx of right toe, initial encounter for open fracture +C4269964|T037|AB|S99.201D|ICD10CM|Unspecified physeal fracture of phalanx of right toe, 7thD|Unspecified physeal fracture of phalanx of right toe, 7thD +C4269965|T037|AB|S99.201G|ICD10CM|Unspecified physeal fracture of phalanx of right toe, 7thG|Unspecified physeal fracture of phalanx of right toe, 7thG +C4269966|T037|AB|S99.201K|ICD10CM|Unspecified physeal fracture of phalanx of right toe, 7thK|Unspecified physeal fracture of phalanx of right toe, 7thK +C4269967|T037|AB|S99.201P|ICD10CM|Unspecified physeal fracture of phalanx of right toe, 7thP|Unspecified physeal fracture of phalanx of right toe, 7thP +C4269968|T037|PT|S99.201S|ICD10CM|Unspecified physeal fracture of phalanx of right toe, sequela|Unspecified physeal fracture of phalanx of right toe, sequela +C4269968|T037|AB|S99.201S|ICD10CM|Unspecified physeal fx phalanx of right toe, sequela|Unspecified physeal fx phalanx of right toe, sequela +C4269969|T037|AB|S99.202|ICD10CM|Unspecified physeal fracture of phalanx of left toe|Unspecified physeal fracture of phalanx of left toe +C4269969|T037|HT|S99.202|ICD10CM|Unspecified physeal fracture of phalanx of left toe|Unspecified physeal fracture of phalanx of left toe +C4269970|T037|AB|S99.202A|ICD10CM|Unspecified physeal fracture of phalanx of left toe, init|Unspecified physeal fracture of phalanx of left toe, init +C4269970|T037|PT|S99.202A|ICD10CM|Unspecified physeal fracture of phalanx of left toe, initial encounter for closed fracture|Unspecified physeal fracture of phalanx of left toe, initial encounter for closed fracture +C4269971|T037|AB|S99.202B|ICD10CM|Unspecified physeal fracture of phalanx of left toe, 7thB|Unspecified physeal fracture of phalanx of left toe, 7thB +C4269971|T037|PT|S99.202B|ICD10CM|Unspecified physeal fracture of phalanx of left toe, initial encounter for open fracture|Unspecified physeal fracture of phalanx of left toe, initial encounter for open fracture +C4269972|T037|AB|S99.202D|ICD10CM|Unspecified physeal fracture of phalanx of left toe, 7thD|Unspecified physeal fracture of phalanx of left toe, 7thD +C4269973|T037|AB|S99.202G|ICD10CM|Unspecified physeal fracture of phalanx of left toe, 7thG|Unspecified physeal fracture of phalanx of left toe, 7thG +C4269974|T037|AB|S99.202K|ICD10CM|Unspecified physeal fracture of phalanx of left toe, 7thK|Unspecified physeal fracture of phalanx of left toe, 7thK +C4269974|T037|PT|S99.202K|ICD10CM|Unspecified physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion|Unspecified physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion +C4269975|T037|AB|S99.202P|ICD10CM|Unspecified physeal fracture of phalanx of left toe, 7thP|Unspecified physeal fracture of phalanx of left toe, 7thP +C4269975|T037|PT|S99.202P|ICD10CM|Unspecified physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion|Unspecified physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion +C4269976|T037|AB|S99.202S|ICD10CM|Unspecified physeal fracture of phalanx of left toe, sequela|Unspecified physeal fracture of phalanx of left toe, sequela +C4269976|T037|PT|S99.202S|ICD10CM|Unspecified physeal fracture of phalanx of left toe, sequela|Unspecified physeal fracture of phalanx of left toe, sequela +C4269977|T037|AB|S99.209|ICD10CM|Unspecified physeal fracture of phalanx of unspecified toe|Unspecified physeal fracture of phalanx of unspecified toe +C4269977|T037|HT|S99.209|ICD10CM|Unspecified physeal fracture of phalanx of unspecified toe|Unspecified physeal fracture of phalanx of unspecified toe +C4269978|T037|PT|S99.209A|ICD10CM|Unspecified physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture|Unspecified physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture +C4269978|T037|AB|S99.209A|ICD10CM|Unspecified physeal fx phalanx of unspecified toe, init|Unspecified physeal fx phalanx of unspecified toe, init +C4269979|T037|PT|S99.209B|ICD10CM|Unspecified physeal fracture of phalanx of unspecified toe, initial encounter for open fracture|Unspecified physeal fracture of phalanx of unspecified toe, initial encounter for open fracture +C4269979|T037|AB|S99.209B|ICD10CM|Unspecified physeal fx phalanx of unspecified toe, 7thB|Unspecified physeal fx phalanx of unspecified toe, 7thB +C4269980|T037|AB|S99.209D|ICD10CM|Unspecified physeal fx phalanx of unspecified toe, 7thD|Unspecified physeal fx phalanx of unspecified toe, 7thD +C4269981|T037|AB|S99.209G|ICD10CM|Unspecified physeal fx phalanx of unspecified toe, 7thG|Unspecified physeal fx phalanx of unspecified toe, 7thG +C4269982|T037|AB|S99.209K|ICD10CM|Unspecified physeal fx phalanx of unspecified toe, 7thK|Unspecified physeal fx phalanx of unspecified toe, 7thK +C4269983|T037|AB|S99.209P|ICD10CM|Unspecified physeal fx phalanx of unspecified toe, 7thP|Unspecified physeal fx phalanx of unspecified toe, 7thP +C4269984|T037|PT|S99.209S|ICD10CM|Unspecified physeal fracture of phalanx of unspecified toe, sequela|Unspecified physeal fracture of phalanx of unspecified toe, sequela +C4269984|T037|AB|S99.209S|ICD10CM|Unspecified physeal fx phalanx of unspecified toe, sequela|Unspecified physeal fx phalanx of unspecified toe, sequela +C4269985|T037|AB|S99.21|ICD10CM|Salter-Harris Type I physeal fracture of phalanx of toe|Salter-Harris Type I physeal fracture of phalanx of toe +C4269985|T037|HT|S99.21|ICD10CM|Salter-Harris Type I physeal fracture of phalanx of toe|Salter-Harris Type I physeal fracture of phalanx of toe +C4269986|T037|HT|S99.211|ICD10CM|Salter-Harris Type I physeal fracture of phalanx of right toe|Salter-Harris Type I physeal fracture of phalanx of right toe +C4269986|T037|AB|S99.211|ICD10CM|Sltr-haris Type I physeal fracture of phalanx of right toe|Sltr-haris Type I physeal fracture of phalanx of right toe +C4269987|T037|PT|S99.211A|ICD10CM|Salter-Harris Type I physeal fracture of phalanx of right toe, initial encounter for closed fracture|Salter-Harris Type I physeal fracture of phalanx of right toe, initial encounter for closed fracture +C4269987|T037|AB|S99.211A|ICD10CM|Sltr-haris Type I physeal fx phalanx of right toe, init|Sltr-haris Type I physeal fx phalanx of right toe, init +C4269988|T037|PT|S99.211B|ICD10CM|Salter-Harris Type I physeal fracture of phalanx of right toe, initial encounter for open fracture|Salter-Harris Type I physeal fracture of phalanx of right toe, initial encounter for open fracture +C4269988|T037|AB|S99.211B|ICD10CM|Sltr-haris Type I physeal fx phalanx of right toe, 7thB|Sltr-haris Type I physeal fx phalanx of right toe, 7thB +C4269989|T037|AB|S99.211D|ICD10CM|Sltr-haris Type I physeal fx phalanx of right toe, 7thD|Sltr-haris Type I physeal fx phalanx of right toe, 7thD +C4269990|T037|AB|S99.211G|ICD10CM|Sltr-haris Type I physeal fx phalanx of right toe, 7thG|Sltr-haris Type I physeal fx phalanx of right toe, 7thG +C4269991|T037|AB|S99.211K|ICD10CM|Sltr-haris Type I physeal fx phalanx of right toe, 7thK|Sltr-haris Type I physeal fx phalanx of right toe, 7thK +C4269992|T037|AB|S99.211P|ICD10CM|Sltr-haris Type I physeal fx phalanx of right toe, 7thP|Sltr-haris Type I physeal fx phalanx of right toe, 7thP +C4269993|T037|PT|S99.211S|ICD10CM|Salter-Harris Type I physeal fracture of phalanx of right toe, sequela|Salter-Harris Type I physeal fracture of phalanx of right toe, sequela +C4269993|T037|AB|S99.211S|ICD10CM|Sltr-haris Type I physeal fx phalanx of right toe, sequela|Sltr-haris Type I physeal fx phalanx of right toe, sequela +C4269994|T037|AB|S99.212|ICD10CM|Salter-Harris Type I physeal fracture of phalanx of left toe|Salter-Harris Type I physeal fracture of phalanx of left toe +C4269994|T037|HT|S99.212|ICD10CM|Salter-Harris Type I physeal fracture of phalanx of left toe|Salter-Harris Type I physeal fracture of phalanx of left toe +C4269995|T037|PT|S99.212A|ICD10CM|Salter-Harris Type I physeal fracture of phalanx of left toe, initial encounter for closed fracture|Salter-Harris Type I physeal fracture of phalanx of left toe, initial encounter for closed fracture +C4269995|T037|AB|S99.212A|ICD10CM|Sltr-haris Type I physeal fx phalanx of left toe, init|Sltr-haris Type I physeal fx phalanx of left toe, init +C4269996|T037|PT|S99.212B|ICD10CM|Salter-Harris Type I physeal fracture of phalanx of left toe, initial encounter for open fracture|Salter-Harris Type I physeal fracture of phalanx of left toe, initial encounter for open fracture +C4269996|T037|AB|S99.212B|ICD10CM|Sltr-haris Type I physeal fx phalanx of left toe, 7thB|Sltr-haris Type I physeal fx phalanx of left toe, 7thB +C4269997|T037|AB|S99.212D|ICD10CM|Sltr-haris Type I physeal fx phalanx of left toe, 7thD|Sltr-haris Type I physeal fx phalanx of left toe, 7thD +C4269998|T037|AB|S99.212G|ICD10CM|Sltr-haris Type I physeal fx phalanx of left toe, 7thG|Sltr-haris Type I physeal fx phalanx of left toe, 7thG +C4269999|T037|AB|S99.212K|ICD10CM|Sltr-haris Type I physeal fx phalanx of left toe, 7thK|Sltr-haris Type I physeal fx phalanx of left toe, 7thK +C4270000|T037|AB|S99.212P|ICD10CM|Sltr-haris Type I physeal fx phalanx of left toe, 7thP|Sltr-haris Type I physeal fx phalanx of left toe, 7thP +C4270001|T037|PT|S99.212S|ICD10CM|Salter-Harris Type I physeal fracture of phalanx of left toe, sequela|Salter-Harris Type I physeal fracture of phalanx of left toe, sequela +C4270001|T037|AB|S99.212S|ICD10CM|Sltr-haris Type I physeal fx phalanx of left toe, sequela|Sltr-haris Type I physeal fx phalanx of left toe, sequela +C4270002|T037|HT|S99.219|ICD10CM|Salter-Harris Type I physeal fracture of phalanx of unspecified toe|Salter-Harris Type I physeal fracture of phalanx of unspecified toe +C4270002|T037|AB|S99.219|ICD10CM|Sltr-haris Type I physeal fx phalanx of unspecified toe|Sltr-haris Type I physeal fx phalanx of unspecified toe +C4270003|T037|AB|S99.219A|ICD10CM|Sltr-haris Type I physeal fx phalanx of unsp toe, init|Sltr-haris Type I physeal fx phalanx of unsp toe, init +C4270004|T037|AB|S99.219B|ICD10CM|Sltr-haris Type I physeal fx phalanx of unsp toe, 7thB|Sltr-haris Type I physeal fx phalanx of unsp toe, 7thB +C4270005|T037|AB|S99.219D|ICD10CM|Sltr-haris Type I physeal fx phalanx of unsp toe, 7thD|Sltr-haris Type I physeal fx phalanx of unsp toe, 7thD +C4270006|T037|AB|S99.219G|ICD10CM|Sltr-haris Type I physeal fx phalanx of unsp toe, 7thG|Sltr-haris Type I physeal fx phalanx of unsp toe, 7thG +C4270007|T037|AB|S99.219K|ICD10CM|Sltr-haris Type I physeal fx phalanx of unsp toe, 7thK|Sltr-haris Type I physeal fx phalanx of unsp toe, 7thK +C4270008|T037|AB|S99.219P|ICD10CM|Sltr-haris Type I physeal fx phalanx of unsp toe, 7thP|Sltr-haris Type I physeal fx phalanx of unsp toe, 7thP +C4270009|T037|PT|S99.219S|ICD10CM|Salter-Harris Type I physeal fracture of phalanx of unspecified toe, sequela|Salter-Harris Type I physeal fracture of phalanx of unspecified toe, sequela +C4270009|T037|AB|S99.219S|ICD10CM|Sltr-haris Type I physeal fx phalanx of unsp toe, sequela|Sltr-haris Type I physeal fx phalanx of unsp toe, sequela +C4270010|T037|AB|S99.22|ICD10CM|Salter-Harris Type II physeal fracture of phalanx of toe|Salter-Harris Type II physeal fracture of phalanx of toe +C4270010|T037|HT|S99.22|ICD10CM|Salter-Harris Type II physeal fracture of phalanx of toe|Salter-Harris Type II physeal fracture of phalanx of toe +C4270011|T037|HT|S99.221|ICD10CM|Salter-Harris Type II physeal fracture of phalanx of right toe|Salter-Harris Type II physeal fracture of phalanx of right toe +C4270011|T037|AB|S99.221|ICD10CM|Sltr-haris Type II physeal fracture of phalanx of right toe|Sltr-haris Type II physeal fracture of phalanx of right toe +C4270012|T037|AB|S99.221A|ICD10CM|Sltr-haris Type II physeal fx phalanx of right toe, init|Sltr-haris Type II physeal fx phalanx of right toe, init +C4270013|T037|PT|S99.221B|ICD10CM|Salter-Harris Type II physeal fracture of phalanx of right toe, initial encounter for open fracture|Salter-Harris Type II physeal fracture of phalanx of right toe, initial encounter for open fracture +C4270013|T037|AB|S99.221B|ICD10CM|Sltr-haris Type II physeal fx phalanx of right toe, 7thB|Sltr-haris Type II physeal fx phalanx of right toe, 7thB +C4270014|T037|AB|S99.221D|ICD10CM|Sltr-haris Type II physeal fx phalanx of right toe, 7thD|Sltr-haris Type II physeal fx phalanx of right toe, 7thD +C4270015|T037|AB|S99.221G|ICD10CM|Sltr-haris Type II physeal fx phalanx of right toe, 7thG|Sltr-haris Type II physeal fx phalanx of right toe, 7thG +C4270016|T037|AB|S99.221K|ICD10CM|Sltr-haris Type II physeal fx phalanx of right toe, 7thK|Sltr-haris Type II physeal fx phalanx of right toe, 7thK +C4270017|T037|AB|S99.221P|ICD10CM|Sltr-haris Type II physeal fx phalanx of right toe, 7thP|Sltr-haris Type II physeal fx phalanx of right toe, 7thP +C4270018|T037|PT|S99.221S|ICD10CM|Salter-Harris Type II physeal fracture of phalanx of right toe, sequela|Salter-Harris Type II physeal fracture of phalanx of right toe, sequela +C4270018|T037|AB|S99.221S|ICD10CM|Sltr-haris Type II physeal fx phalanx of right toe, sequela|Sltr-haris Type II physeal fx phalanx of right toe, sequela +C4270019|T037|HT|S99.222|ICD10CM|Salter-Harris Type II physeal fracture of phalanx of left toe|Salter-Harris Type II physeal fracture of phalanx of left toe +C4270019|T037|AB|S99.222|ICD10CM|Sltr-haris Type II physeal fracture of phalanx of left toe|Sltr-haris Type II physeal fracture of phalanx of left toe +C4270020|T037|PT|S99.222A|ICD10CM|Salter-Harris Type II physeal fracture of phalanx of left toe, initial encounter for closed fracture|Salter-Harris Type II physeal fracture of phalanx of left toe, initial encounter for closed fracture +C4270020|T037|AB|S99.222A|ICD10CM|Sltr-haris Type II physeal fx phalanx of left toe, init|Sltr-haris Type II physeal fx phalanx of left toe, init +C4270021|T037|PT|S99.222B|ICD10CM|Salter-Harris Type II physeal fracture of phalanx of left toe, initial encounter for open fracture|Salter-Harris Type II physeal fracture of phalanx of left toe, initial encounter for open fracture +C4270021|T037|AB|S99.222B|ICD10CM|Sltr-haris Type II physeal fx phalanx of left toe, 7thB|Sltr-haris Type II physeal fx phalanx of left toe, 7thB +C4270022|T037|AB|S99.222D|ICD10CM|Sltr-haris Type II physeal fx phalanx of left toe, 7thD|Sltr-haris Type II physeal fx phalanx of left toe, 7thD +C4270023|T037|AB|S99.222G|ICD10CM|Sltr-haris Type II physeal fx phalanx of left toe, 7thG|Sltr-haris Type II physeal fx phalanx of left toe, 7thG +C4270024|T037|AB|S99.222K|ICD10CM|Sltr-haris Type II physeal fx phalanx of left toe, 7thK|Sltr-haris Type II physeal fx phalanx of left toe, 7thK +C4270025|T037|AB|S99.222P|ICD10CM|Sltr-haris Type II physeal fx phalanx of left toe, 7thP|Sltr-haris Type II physeal fx phalanx of left toe, 7thP +C4270026|T037|PT|S99.222S|ICD10CM|Salter-Harris Type II physeal fracture of phalanx of left toe, sequela|Salter-Harris Type II physeal fracture of phalanx of left toe, sequela +C4270026|T037|AB|S99.222S|ICD10CM|Sltr-haris Type II physeal fx phalanx of left toe, sequela|Sltr-haris Type II physeal fx phalanx of left toe, sequela +C4270027|T037|HT|S99.229|ICD10CM|Salter-Harris Type II physeal fracture of phalanx of unspecified toe|Salter-Harris Type II physeal fracture of phalanx of unspecified toe +C4270027|T037|AB|S99.229|ICD10CM|Sltr-haris Type II physeal fx phalanx of unspecified toe|Sltr-haris Type II physeal fx phalanx of unspecified toe +C4270028|T037|AB|S99.229A|ICD10CM|Sltr-haris Type II physeal fx phalanx of unsp toe, init|Sltr-haris Type II physeal fx phalanx of unsp toe, init +C4270029|T037|AB|S99.229B|ICD10CM|Sltr-haris Type II physeal fx phalanx of unsp toe, 7thB|Sltr-haris Type II physeal fx phalanx of unsp toe, 7thB +C4270030|T037|AB|S99.229D|ICD10CM|Sltr-haris Type II physeal fx phalanx of unsp toe, 7thD|Sltr-haris Type II physeal fx phalanx of unsp toe, 7thD +C4270031|T037|AB|S99.229G|ICD10CM|Sltr-haris Type II physeal fx phalanx of unsp toe, 7thG|Sltr-haris Type II physeal fx phalanx of unsp toe, 7thG +C4270032|T037|AB|S99.229K|ICD10CM|Sltr-haris Type II physeal fx phalanx of unsp toe, 7thK|Sltr-haris Type II physeal fx phalanx of unsp toe, 7thK +C4270033|T037|AB|S99.229P|ICD10CM|Sltr-haris Type II physeal fx phalanx of unsp toe, 7thP|Sltr-haris Type II physeal fx phalanx of unsp toe, 7thP +C4270034|T037|PT|S99.229S|ICD10CM|Salter-Harris Type II physeal fracture of phalanx of unspecified toe, sequela|Salter-Harris Type II physeal fracture of phalanx of unspecified toe, sequela +C4270034|T037|AB|S99.229S|ICD10CM|Sltr-haris Type II physeal fx phalanx of unsp toe, sequela|Sltr-haris Type II physeal fx phalanx of unsp toe, sequela +C4270035|T037|AB|S99.23|ICD10CM|Salter-Harris Type III physeal fracture of phalanx of toe|Salter-Harris Type III physeal fracture of phalanx of toe +C4270035|T037|HT|S99.23|ICD10CM|Salter-Harris Type III physeal fracture of phalanx of toe|Salter-Harris Type III physeal fracture of phalanx of toe +C4270036|T037|HT|S99.231|ICD10CM|Salter-Harris Type III physeal fracture of phalanx of right toe|Salter-Harris Type III physeal fracture of phalanx of right toe +C4270036|T037|AB|S99.231|ICD10CM|Sltr-haris Type III physeal fracture of phalanx of right toe|Sltr-haris Type III physeal fracture of phalanx of right toe +C4270037|T037|AB|S99.231A|ICD10CM|Sltr-haris Type III physeal fx phalanx of right toe, init|Sltr-haris Type III physeal fx phalanx of right toe, init +C4270038|T037|PT|S99.231B|ICD10CM|Salter-Harris Type III physeal fracture of phalanx of right toe, initial encounter for open fracture|Salter-Harris Type III physeal fracture of phalanx of right toe, initial encounter for open fracture +C4270038|T037|AB|S99.231B|ICD10CM|Sltr-haris Type III physeal fx phalanx of right toe, 7thB|Sltr-haris Type III physeal fx phalanx of right toe, 7thB +C4270039|T037|AB|S99.231D|ICD10CM|Sltr-haris Type III physeal fx phalanx of right toe, 7thD|Sltr-haris Type III physeal fx phalanx of right toe, 7thD +C4270040|T037|AB|S99.231G|ICD10CM|Sltr-haris Type III physeal fx phalanx of right toe, 7thG|Sltr-haris Type III physeal fx phalanx of right toe, 7thG +C4270041|T037|AB|S99.231K|ICD10CM|Sltr-haris Type III physeal fx phalanx of right toe, 7thK|Sltr-haris Type III physeal fx phalanx of right toe, 7thK +C4270042|T037|AB|S99.231P|ICD10CM|Sltr-haris Type III physeal fx phalanx of right toe, 7thP|Sltr-haris Type III physeal fx phalanx of right toe, 7thP +C4270043|T037|PT|S99.231S|ICD10CM|Salter-Harris Type III physeal fracture of phalanx of right toe, sequela|Salter-Harris Type III physeal fracture of phalanx of right toe, sequela +C4270043|T037|AB|S99.231S|ICD10CM|Sltr-haris Type III physeal fx phalanx of right toe, sequela|Sltr-haris Type III physeal fx phalanx of right toe, sequela +C4270044|T037|HT|S99.232|ICD10CM|Salter-Harris Type III physeal fracture of phalanx of left toe|Salter-Harris Type III physeal fracture of phalanx of left toe +C4270044|T037|AB|S99.232|ICD10CM|Sltr-haris Type III physeal fracture of phalanx of left toe|Sltr-haris Type III physeal fracture of phalanx of left toe +C4270045|T037|AB|S99.232A|ICD10CM|Sltr-haris Type III physeal fx phalanx of left toe, init|Sltr-haris Type III physeal fx phalanx of left toe, init +C4270046|T037|PT|S99.232B|ICD10CM|Salter-Harris Type III physeal fracture of phalanx of left toe, initial encounter for open fracture|Salter-Harris Type III physeal fracture of phalanx of left toe, initial encounter for open fracture +C4270046|T037|AB|S99.232B|ICD10CM|Sltr-haris Type III physeal fx phalanx of left toe, 7thB|Sltr-haris Type III physeal fx phalanx of left toe, 7thB +C4270047|T037|AB|S99.232D|ICD10CM|Sltr-haris Type III physeal fx phalanx of left toe, 7thD|Sltr-haris Type III physeal fx phalanx of left toe, 7thD +C4270048|T037|AB|S99.232G|ICD10CM|Sltr-haris Type III physeal fx phalanx of left toe, 7thG|Sltr-haris Type III physeal fx phalanx of left toe, 7thG +C4270049|T037|AB|S99.232K|ICD10CM|Sltr-haris Type III physeal fx phalanx of left toe, 7thK|Sltr-haris Type III physeal fx phalanx of left toe, 7thK +C4270050|T037|AB|S99.232P|ICD10CM|Sltr-haris Type III physeal fx phalanx of left toe, 7thP|Sltr-haris Type III physeal fx phalanx of left toe, 7thP +C4270051|T037|PT|S99.232S|ICD10CM|Salter-Harris Type III physeal fracture of phalanx of left toe, sequela|Salter-Harris Type III physeal fracture of phalanx of left toe, sequela +C4270051|T037|AB|S99.232S|ICD10CM|Sltr-haris Type III physeal fx phalanx of left toe, sequela|Sltr-haris Type III physeal fx phalanx of left toe, sequela +C4270052|T037|HT|S99.239|ICD10CM|Salter-Harris Type III physeal fracture of phalanx of unspecified toe|Salter-Harris Type III physeal fracture of phalanx of unspecified toe +C4270052|T037|AB|S99.239|ICD10CM|Sltr-haris Type III physeal fx phalanx of unspecified toe|Sltr-haris Type III physeal fx phalanx of unspecified toe +C4270053|T037|AB|S99.239A|ICD10CM|Sltr-haris Type III physeal fx phalanx of unsp toe, init|Sltr-haris Type III physeal fx phalanx of unsp toe, init +C4270054|T037|AB|S99.239B|ICD10CM|Sltr-haris Type III physeal fx phalanx of unsp toe, 7thB|Sltr-haris Type III physeal fx phalanx of unsp toe, 7thB +C4270055|T037|AB|S99.239D|ICD10CM|Sltr-haris Type III physeal fx phalanx of unsp toe, 7thD|Sltr-haris Type III physeal fx phalanx of unsp toe, 7thD +C4270056|T037|AB|S99.239G|ICD10CM|Sltr-haris Type III physeal fx phalanx of unsp toe, 7thG|Sltr-haris Type III physeal fx phalanx of unsp toe, 7thG +C4270057|T037|AB|S99.239K|ICD10CM|Sltr-haris Type III physeal fx phalanx of unsp toe, 7thK|Sltr-haris Type III physeal fx phalanx of unsp toe, 7thK +C4270058|T037|AB|S99.239P|ICD10CM|Sltr-haris Type III physeal fx phalanx of unsp toe, 7thP|Sltr-haris Type III physeal fx phalanx of unsp toe, 7thP +C4270059|T037|PT|S99.239S|ICD10CM|Salter-Harris Type III physeal fracture of phalanx of unspecified toe, sequela|Salter-Harris Type III physeal fracture of phalanx of unspecified toe, sequela +C4270059|T037|AB|S99.239S|ICD10CM|Sltr-haris Type III physeal fx phalanx of unsp toe, sequela|Sltr-haris Type III physeal fx phalanx of unsp toe, sequela +C4270060|T037|AB|S99.24|ICD10CM|Salter-Harris Type IV physeal fracture of phalanx of toe|Salter-Harris Type IV physeal fracture of phalanx of toe +C4270060|T037|HT|S99.24|ICD10CM|Salter-Harris Type IV physeal fracture of phalanx of toe|Salter-Harris Type IV physeal fracture of phalanx of toe +C4270061|T037|HT|S99.241|ICD10CM|Salter-Harris Type IV physeal fracture of phalanx of right toe|Salter-Harris Type IV physeal fracture of phalanx of right toe +C4270061|T037|AB|S99.241|ICD10CM|Sltr-haris Type IV physeal fracture of phalanx of right toe|Sltr-haris Type IV physeal fracture of phalanx of right toe +C4270062|T037|AB|S99.241A|ICD10CM|Sltr-haris Type IV physeal fx phalanx of right toe, init|Sltr-haris Type IV physeal fx phalanx of right toe, init +C4270063|T037|PT|S99.241B|ICD10CM|Salter-Harris Type IV physeal fracture of phalanx of right toe, initial encounter for open fracture|Salter-Harris Type IV physeal fracture of phalanx of right toe, initial encounter for open fracture +C4270063|T037|AB|S99.241B|ICD10CM|Sltr-haris Type IV physeal fx phalanx of right toe, 7thB|Sltr-haris Type IV physeal fx phalanx of right toe, 7thB +C4270064|T037|AB|S99.241D|ICD10CM|Sltr-haris Type IV physeal fx phalanx of right toe, 7thD|Sltr-haris Type IV physeal fx phalanx of right toe, 7thD +C4270065|T037|AB|S99.241G|ICD10CM|Sltr-haris Type IV physeal fx phalanx of right toe, 7thG|Sltr-haris Type IV physeal fx phalanx of right toe, 7thG +C4270066|T037|AB|S99.241K|ICD10CM|Sltr-haris Type IV physeal fx phalanx of right toe, 7thK|Sltr-haris Type IV physeal fx phalanx of right toe, 7thK +C4270067|T037|AB|S99.241P|ICD10CM|Sltr-haris Type IV physeal fx phalanx of right toe, 7thP|Sltr-haris Type IV physeal fx phalanx of right toe, 7thP +C4270068|T037|PT|S99.241S|ICD10CM|Salter-Harris Type IV physeal fracture of phalanx of right toe, sequela|Salter-Harris Type IV physeal fracture of phalanx of right toe, sequela +C4270068|T037|AB|S99.241S|ICD10CM|Sltr-haris Type IV physeal fx phalanx of right toe, sequela|Sltr-haris Type IV physeal fx phalanx of right toe, sequela +C4270069|T037|HT|S99.242|ICD10CM|Salter-Harris Type IV physeal fracture of phalanx of left toe|Salter-Harris Type IV physeal fracture of phalanx of left toe +C4270069|T037|AB|S99.242|ICD10CM|Sltr-haris Type IV physeal fracture of phalanx of left toe|Sltr-haris Type IV physeal fracture of phalanx of left toe +C4270070|T037|PT|S99.242A|ICD10CM|Salter-Harris Type IV physeal fracture of phalanx of left toe, initial encounter for closed fracture|Salter-Harris Type IV physeal fracture of phalanx of left toe, initial encounter for closed fracture +C4270070|T037|AB|S99.242A|ICD10CM|Sltr-haris Type IV physeal fx phalanx of left toe, init|Sltr-haris Type IV physeal fx phalanx of left toe, init +C4270071|T037|PT|S99.242B|ICD10CM|Salter-Harris Type IV physeal fracture of phalanx of left toe, initial encounter for open fracture|Salter-Harris Type IV physeal fracture of phalanx of left toe, initial encounter for open fracture +C4270071|T037|AB|S99.242B|ICD10CM|Sltr-haris Type IV physeal fx phalanx of left toe, 7thB|Sltr-haris Type IV physeal fx phalanx of left toe, 7thB +C4270072|T037|AB|S99.242D|ICD10CM|Sltr-haris Type IV physeal fx phalanx of left toe, 7thD|Sltr-haris Type IV physeal fx phalanx of left toe, 7thD +C4270073|T037|AB|S99.242G|ICD10CM|Sltr-haris Type IV physeal fx phalanx of left toe, 7thG|Sltr-haris Type IV physeal fx phalanx of left toe, 7thG +C4270074|T037|AB|S99.242K|ICD10CM|Sltr-haris Type IV physeal fx phalanx of left toe, 7thK|Sltr-haris Type IV physeal fx phalanx of left toe, 7thK +C4270075|T037|AB|S99.242P|ICD10CM|Sltr-haris Type IV physeal fx phalanx of left toe, 7thP|Sltr-haris Type IV physeal fx phalanx of left toe, 7thP +C4270076|T037|PT|S99.242S|ICD10CM|Salter-Harris Type IV physeal fracture of phalanx of left toe, sequela|Salter-Harris Type IV physeal fracture of phalanx of left toe, sequela +C4270076|T037|AB|S99.242S|ICD10CM|Sltr-haris Type IV physeal fx phalanx of left toe, sequela|Sltr-haris Type IV physeal fx phalanx of left toe, sequela +C4270077|T037|HT|S99.249|ICD10CM|Salter-Harris Type IV physeal fracture of phalanx of unspecified toe|Salter-Harris Type IV physeal fracture of phalanx of unspecified toe +C4270077|T037|AB|S99.249|ICD10CM|Sltr-haris Type IV physeal fx phalanx of unspecified toe|Sltr-haris Type IV physeal fx phalanx of unspecified toe +C4270078|T037|AB|S99.249A|ICD10CM|Sltr-haris Type IV physeal fx phalanx of unsp toe, init|Sltr-haris Type IV physeal fx phalanx of unsp toe, init +C4270079|T037|AB|S99.249B|ICD10CM|Sltr-haris Type IV physeal fx phalanx of unsp toe, 7thB|Sltr-haris Type IV physeal fx phalanx of unsp toe, 7thB +C4270080|T037|AB|S99.249D|ICD10CM|Sltr-haris Type IV physeal fx phalanx of unsp toe, 7thD|Sltr-haris Type IV physeal fx phalanx of unsp toe, 7thD +C4270081|T037|AB|S99.249G|ICD10CM|Sltr-haris Type IV physeal fx phalanx of unsp toe, 7thG|Sltr-haris Type IV physeal fx phalanx of unsp toe, 7thG +C4270082|T037|AB|S99.249K|ICD10CM|Sltr-haris Type IV physeal fx phalanx of unsp toe, 7thK|Sltr-haris Type IV physeal fx phalanx of unsp toe, 7thK +C4270083|T037|AB|S99.249P|ICD10CM|Sltr-haris Type IV physeal fx phalanx of unsp toe, 7thP|Sltr-haris Type IV physeal fx phalanx of unsp toe, 7thP +C4270084|T037|PT|S99.249S|ICD10CM|Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, sequela|Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, sequela +C4270084|T037|AB|S99.249S|ICD10CM|Sltr-haris Type IV physeal fx phalanx of unsp toe, sequela|Sltr-haris Type IV physeal fx phalanx of unsp toe, sequela +C4270085|T037|AB|S99.29|ICD10CM|Other physeal fracture of phalanx of toe|Other physeal fracture of phalanx of toe +C4270085|T037|HT|S99.29|ICD10CM|Other physeal fracture of phalanx of toe|Other physeal fracture of phalanx of toe +C4270086|T037|AB|S99.291|ICD10CM|Other physeal fracture of phalanx of right toe|Other physeal fracture of phalanx of right toe +C4270086|T037|HT|S99.291|ICD10CM|Other physeal fracture of phalanx of right toe|Other physeal fracture of phalanx of right toe +C4270087|T037|AB|S99.291A|ICD10CM|Other physeal fracture of phalanx of right toe, init|Other physeal fracture of phalanx of right toe, init +C4270087|T037|PT|S99.291A|ICD10CM|Other physeal fracture of phalanx of right toe, initial encounter for closed fracture|Other physeal fracture of phalanx of right toe, initial encounter for closed fracture +C4270088|T037|AB|S99.291B|ICD10CM|Other physeal fracture of phalanx of right toe, 7thB|Other physeal fracture of phalanx of right toe, 7thB +C4270088|T037|PT|S99.291B|ICD10CM|Other physeal fracture of phalanx of right toe, initial encounter for open fracture|Other physeal fracture of phalanx of right toe, initial encounter for open fracture +C4270089|T037|AB|S99.291D|ICD10CM|Other physeal fracture of phalanx of right toe, 7thD|Other physeal fracture of phalanx of right toe, 7thD +C4270090|T037|AB|S99.291G|ICD10CM|Other physeal fracture of phalanx of right toe, 7thG|Other physeal fracture of phalanx of right toe, 7thG +C4270091|T037|AB|S99.291K|ICD10CM|Other physeal fracture of phalanx of right toe, 7thK|Other physeal fracture of phalanx of right toe, 7thK +C4270091|T037|PT|S99.291K|ICD10CM|Other physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion|Other physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion +C4270092|T037|AB|S99.291P|ICD10CM|Other physeal fracture of phalanx of right toe, 7thP|Other physeal fracture of phalanx of right toe, 7thP +C4270092|T037|PT|S99.291P|ICD10CM|Other physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion|Other physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion +C4270093|T037|PT|S99.291S|ICD10CM|Other physeal fracture of phalanx of right toe, sequela|Other physeal fracture of phalanx of right toe, sequela +C4270093|T037|AB|S99.291S|ICD10CM|Other physeal fracture of phalanx of right toe, sequela|Other physeal fracture of phalanx of right toe, sequela +C4270094|T037|AB|S99.292|ICD10CM|Other physeal fracture of phalanx of left toe|Other physeal fracture of phalanx of left toe +C4270094|T037|HT|S99.292|ICD10CM|Other physeal fracture of phalanx of left toe|Other physeal fracture of phalanx of left toe +C4270095|T037|AB|S99.292A|ICD10CM|Other physeal fracture of phalanx of left toe, init|Other physeal fracture of phalanx of left toe, init +C4270095|T037|PT|S99.292A|ICD10CM|Other physeal fracture of phalanx of left toe, initial encounter for closed fracture|Other physeal fracture of phalanx of left toe, initial encounter for closed fracture +C4270096|T037|AB|S99.292B|ICD10CM|Other physeal fracture of phalanx of left toe, 7thB|Other physeal fracture of phalanx of left toe, 7thB +C4270096|T037|PT|S99.292B|ICD10CM|Other physeal fracture of phalanx of left toe, initial encounter for open fracture|Other physeal fracture of phalanx of left toe, initial encounter for open fracture +C4270097|T037|AB|S99.292D|ICD10CM|Other physeal fracture of phalanx of left toe, 7thD|Other physeal fracture of phalanx of left toe, 7thD +C4270098|T037|AB|S99.292G|ICD10CM|Other physeal fracture of phalanx of left toe, 7thG|Other physeal fracture of phalanx of left toe, 7thG +C4270099|T037|AB|S99.292K|ICD10CM|Other physeal fracture of phalanx of left toe, 7thK|Other physeal fracture of phalanx of left toe, 7thK +C4270099|T037|PT|S99.292K|ICD10CM|Other physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion|Other physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion +C4270100|T037|AB|S99.292P|ICD10CM|Other physeal fracture of phalanx of left toe, 7thP|Other physeal fracture of phalanx of left toe, 7thP +C4270100|T037|PT|S99.292P|ICD10CM|Other physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion|Other physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion +C4270101|T037|AB|S99.292S|ICD10CM|Other physeal fracture of phalanx of left toe, sequela|Other physeal fracture of phalanx of left toe, sequela +C4270101|T037|PT|S99.292S|ICD10CM|Other physeal fracture of phalanx of left toe, sequela|Other physeal fracture of phalanx of left toe, sequela +C4270102|T037|AB|S99.299|ICD10CM|Other physeal fracture of phalanx of unspecified toe|Other physeal fracture of phalanx of unspecified toe +C4270102|T037|HT|S99.299|ICD10CM|Other physeal fracture of phalanx of unspecified toe|Other physeal fracture of phalanx of unspecified toe +C4270103|T037|AB|S99.299A|ICD10CM|Other physeal fracture of phalanx of unspecified toe, init|Other physeal fracture of phalanx of unspecified toe, init +C4270103|T037|PT|S99.299A|ICD10CM|Other physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture|Other physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture +C4270104|T037|AB|S99.299B|ICD10CM|Other physeal fracture of phalanx of unspecified toe, 7thB|Other physeal fracture of phalanx of unspecified toe, 7thB +C4270104|T037|PT|S99.299B|ICD10CM|Other physeal fracture of phalanx of unspecified toe, initial encounter for open fracture|Other physeal fracture of phalanx of unspecified toe, initial encounter for open fracture +C4270105|T037|AB|S99.299D|ICD10CM|Other physeal fracture of phalanx of unspecified toe, 7thD|Other physeal fracture of phalanx of unspecified toe, 7thD +C4270106|T037|AB|S99.299G|ICD10CM|Other physeal fracture of phalanx of unspecified toe, 7thG|Other physeal fracture of phalanx of unspecified toe, 7thG +C4270107|T037|AB|S99.299K|ICD10CM|Other physeal fracture of phalanx of unspecified toe, 7thK|Other physeal fracture of phalanx of unspecified toe, 7thK +C4270108|T037|AB|S99.299P|ICD10CM|Other physeal fracture of phalanx of unspecified toe, 7thP|Other physeal fracture of phalanx of unspecified toe, 7thP +C4270109|T037|PT|S99.299S|ICD10CM|Other physeal fracture of phalanx of unspecified toe, sequela|Other physeal fracture of phalanx of unspecified toe, sequela +C4270109|T037|AB|S99.299S|ICD10CM|Other physeal fx phalanx of unspecified toe, sequela|Other physeal fx phalanx of unspecified toe, sequela +C0451980|T037|PT|S99.7|ICD10|Multiple injuries of ankle and foot|Multiple injuries of ankle and foot +C0478364|T037|PT|S99.8|ICD10|Other specified injuries of ankle and foot|Other specified injuries of ankle and foot +C0478364|T037|HT|S99.8|ICD10CM|Other specified injuries of ankle and foot|Other specified injuries of ankle and foot +C0478364|T037|AB|S99.8|ICD10CM|Other specified injuries of ankle and foot|Other specified injuries of ankle and foot +C2869911|T037|AB|S99.81|ICD10CM|Other specified injuries of ankle|Other specified injuries of ankle +C2869911|T037|HT|S99.81|ICD10CM|Other specified injuries of ankle|Other specified injuries of ankle +C2869912|T037|AB|S99.811|ICD10CM|Other specified injuries of right ankle|Other specified injuries of right ankle +C2869912|T037|HT|S99.811|ICD10CM|Other specified injuries of right ankle|Other specified injuries of right ankle +C2869913|T037|AB|S99.811A|ICD10CM|Other specified injuries of right ankle, initial encounter|Other specified injuries of right ankle, initial encounter +C2869913|T037|PT|S99.811A|ICD10CM|Other specified injuries of right ankle, initial encounter|Other specified injuries of right ankle, initial encounter +C2869914|T037|AB|S99.811D|ICD10CM|Other specified injuries of right ankle, subs encntr|Other specified injuries of right ankle, subs encntr +C2869914|T037|PT|S99.811D|ICD10CM|Other specified injuries of right ankle, subsequent encounter|Other specified injuries of right ankle, subsequent encounter +C2869915|T037|AB|S99.811S|ICD10CM|Other specified injuries of right ankle, sequela|Other specified injuries of right ankle, sequela +C2869915|T037|PT|S99.811S|ICD10CM|Other specified injuries of right ankle, sequela|Other specified injuries of right ankle, sequela +C2869916|T037|AB|S99.812|ICD10CM|Other specified injuries of left ankle|Other specified injuries of left ankle +C2869916|T037|HT|S99.812|ICD10CM|Other specified injuries of left ankle|Other specified injuries of left ankle +C2869917|T037|AB|S99.812A|ICD10CM|Other specified injuries of left ankle, initial encounter|Other specified injuries of left ankle, initial encounter +C2869917|T037|PT|S99.812A|ICD10CM|Other specified injuries of left ankle, initial encounter|Other specified injuries of left ankle, initial encounter +C2869918|T037|AB|S99.812D|ICD10CM|Other specified injuries of left ankle, subsequent encounter|Other specified injuries of left ankle, subsequent encounter +C2869918|T037|PT|S99.812D|ICD10CM|Other specified injuries of left ankle, subsequent encounter|Other specified injuries of left ankle, subsequent encounter +C2869919|T037|AB|S99.812S|ICD10CM|Other specified injuries of left ankle, sequela|Other specified injuries of left ankle, sequela +C2869919|T037|PT|S99.812S|ICD10CM|Other specified injuries of left ankle, sequela|Other specified injuries of left ankle, sequela +C2869920|T037|AB|S99.819|ICD10CM|Other specified injuries of unspecified ankle|Other specified injuries of unspecified ankle +C2869920|T037|HT|S99.819|ICD10CM|Other specified injuries of unspecified ankle|Other specified injuries of unspecified ankle +C2869921|T037|AB|S99.819A|ICD10CM|Other specified injuries of unspecified ankle, init encntr|Other specified injuries of unspecified ankle, init encntr +C2869921|T037|PT|S99.819A|ICD10CM|Other specified injuries of unspecified ankle, initial encounter|Other specified injuries of unspecified ankle, initial encounter +C2869922|T037|AB|S99.819D|ICD10CM|Other specified injuries of unspecified ankle, subs encntr|Other specified injuries of unspecified ankle, subs encntr +C2869922|T037|PT|S99.819D|ICD10CM|Other specified injuries of unspecified ankle, subsequent encounter|Other specified injuries of unspecified ankle, subsequent encounter +C2869923|T037|AB|S99.819S|ICD10CM|Other specified injuries of unspecified ankle, sequela|Other specified injuries of unspecified ankle, sequela +C2869923|T037|PT|S99.819S|ICD10CM|Other specified injuries of unspecified ankle, sequela|Other specified injuries of unspecified ankle, sequela +C2869924|T037|AB|S99.82|ICD10CM|Other specified injuries of foot|Other specified injuries of foot +C2869924|T037|HT|S99.82|ICD10CM|Other specified injuries of foot|Other specified injuries of foot +C2869925|T037|AB|S99.821|ICD10CM|Other specified injuries of right foot|Other specified injuries of right foot +C2869925|T037|HT|S99.821|ICD10CM|Other specified injuries of right foot|Other specified injuries of right foot +C2869926|T037|AB|S99.821A|ICD10CM|Other specified injuries of right foot, initial encounter|Other specified injuries of right foot, initial encounter +C2869926|T037|PT|S99.821A|ICD10CM|Other specified injuries of right foot, initial encounter|Other specified injuries of right foot, initial encounter +C2869927|T037|AB|S99.821D|ICD10CM|Other specified injuries of right foot, subsequent encounter|Other specified injuries of right foot, subsequent encounter +C2869927|T037|PT|S99.821D|ICD10CM|Other specified injuries of right foot, subsequent encounter|Other specified injuries of right foot, subsequent encounter +C2869928|T037|AB|S99.821S|ICD10CM|Other specified injuries of right foot, sequela|Other specified injuries of right foot, sequela +C2869928|T037|PT|S99.821S|ICD10CM|Other specified injuries of right foot, sequela|Other specified injuries of right foot, sequela +C2869929|T037|AB|S99.822|ICD10CM|Other specified injuries of left foot|Other specified injuries of left foot +C2869929|T037|HT|S99.822|ICD10CM|Other specified injuries of left foot|Other specified injuries of left foot +C2869930|T037|AB|S99.822A|ICD10CM|Other specified injuries of left foot, initial encounter|Other specified injuries of left foot, initial encounter +C2869930|T037|PT|S99.822A|ICD10CM|Other specified injuries of left foot, initial encounter|Other specified injuries of left foot, initial encounter +C2869931|T037|AB|S99.822D|ICD10CM|Other specified injuries of left foot, subsequent encounter|Other specified injuries of left foot, subsequent encounter +C2869931|T037|PT|S99.822D|ICD10CM|Other specified injuries of left foot, subsequent encounter|Other specified injuries of left foot, subsequent encounter +C2869932|T037|AB|S99.822S|ICD10CM|Other specified injuries of left foot, sequela|Other specified injuries of left foot, sequela +C2869932|T037|PT|S99.822S|ICD10CM|Other specified injuries of left foot, sequela|Other specified injuries of left foot, sequela +C2869933|T037|AB|S99.829|ICD10CM|Other specified injuries of unspecified foot|Other specified injuries of unspecified foot +C2869933|T037|HT|S99.829|ICD10CM|Other specified injuries of unspecified foot|Other specified injuries of unspecified foot +C2869934|T037|AB|S99.829A|ICD10CM|Other specified injuries of unspecified foot, init encntr|Other specified injuries of unspecified foot, init encntr +C2869934|T037|PT|S99.829A|ICD10CM|Other specified injuries of unspecified foot, initial encounter|Other specified injuries of unspecified foot, initial encounter +C2869935|T037|AB|S99.829D|ICD10CM|Other specified injuries of unspecified foot, subs encntr|Other specified injuries of unspecified foot, subs encntr +C2869935|T037|PT|S99.829D|ICD10CM|Other specified injuries of unspecified foot, subsequent encounter|Other specified injuries of unspecified foot, subsequent encounter +C2869936|T037|AB|S99.829S|ICD10CM|Other specified injuries of unspecified foot, sequela|Other specified injuries of unspecified foot, sequela +C2869936|T037|PT|S99.829S|ICD10CM|Other specified injuries of unspecified foot, sequela|Other specified injuries of unspecified foot, sequela +C0348772|T037|HT|S99.9|ICD10CM|Unspecified injury of ankle and foot|Unspecified injury of ankle and foot +C0348772|T037|AB|S99.9|ICD10CM|Unspecified injury of ankle and foot|Unspecified injury of ankle and foot +C0348772|T037|PT|S99.9|ICD10|Unspecified injury of ankle and foot|Unspecified injury of ankle and foot +C2869937|T037|AB|S99.91|ICD10CM|Unspecified injury of ankle|Unspecified injury of ankle +C2869937|T037|HT|S99.91|ICD10CM|Unspecified injury of ankle|Unspecified injury of ankle +C2869938|T037|AB|S99.911|ICD10CM|Unspecified injury of right ankle|Unspecified injury of right ankle +C2869938|T037|HT|S99.911|ICD10CM|Unspecified injury of right ankle|Unspecified injury of right ankle +C2869939|T037|PT|S99.911A|ICD10CM|Unspecified injury of right ankle, initial encounter|Unspecified injury of right ankle, initial encounter +C2869939|T037|AB|S99.911A|ICD10CM|Unspecified injury of right ankle, initial encounter|Unspecified injury of right ankle, initial encounter +C2869940|T037|PT|S99.911D|ICD10CM|Unspecified injury of right ankle, subsequent encounter|Unspecified injury of right ankle, subsequent encounter +C2869940|T037|AB|S99.911D|ICD10CM|Unspecified injury of right ankle, subsequent encounter|Unspecified injury of right ankle, subsequent encounter +C2869941|T037|PT|S99.911S|ICD10CM|Unspecified injury of right ankle, sequela|Unspecified injury of right ankle, sequela +C2869941|T037|AB|S99.911S|ICD10CM|Unspecified injury of right ankle, sequela|Unspecified injury of right ankle, sequela +C2869942|T037|AB|S99.912|ICD10CM|Unspecified injury of left ankle|Unspecified injury of left ankle +C2869942|T037|HT|S99.912|ICD10CM|Unspecified injury of left ankle|Unspecified injury of left ankle +C2869943|T037|PT|S99.912A|ICD10CM|Unspecified injury of left ankle, initial encounter|Unspecified injury of left ankle, initial encounter +C2869943|T037|AB|S99.912A|ICD10CM|Unspecified injury of left ankle, initial encounter|Unspecified injury of left ankle, initial encounter +C2869944|T037|PT|S99.912D|ICD10CM|Unspecified injury of left ankle, subsequent encounter|Unspecified injury of left ankle, subsequent encounter +C2869944|T037|AB|S99.912D|ICD10CM|Unspecified injury of left ankle, subsequent encounter|Unspecified injury of left ankle, subsequent encounter +C2869945|T037|PT|S99.912S|ICD10CM|Unspecified injury of left ankle, sequela|Unspecified injury of left ankle, sequela +C2869945|T037|AB|S99.912S|ICD10CM|Unspecified injury of left ankle, sequela|Unspecified injury of left ankle, sequela +C2869946|T037|AB|S99.919|ICD10CM|Unspecified injury of unspecified ankle|Unspecified injury of unspecified ankle +C2869946|T037|HT|S99.919|ICD10CM|Unspecified injury of unspecified ankle|Unspecified injury of unspecified ankle +C2869947|T037|PT|S99.919A|ICD10CM|Unspecified injury of unspecified ankle, initial encounter|Unspecified injury of unspecified ankle, initial encounter +C2869947|T037|AB|S99.919A|ICD10CM|Unspecified injury of unspecified ankle, initial encounter|Unspecified injury of unspecified ankle, initial encounter +C2869948|T037|AB|S99.919D|ICD10CM|Unspecified injury of unspecified ankle, subs encntr|Unspecified injury of unspecified ankle, subs encntr +C2869948|T037|PT|S99.919D|ICD10CM|Unspecified injury of unspecified ankle, subsequent encounter|Unspecified injury of unspecified ankle, subsequent encounter +C2869949|T037|PT|S99.919S|ICD10CM|Unspecified injury of unspecified ankle, sequela|Unspecified injury of unspecified ankle, sequela +C2869949|T037|AB|S99.919S|ICD10CM|Unspecified injury of unspecified ankle, sequela|Unspecified injury of unspecified ankle, sequela +C2869950|T037|AB|S99.92|ICD10CM|Unspecified injury of foot|Unspecified injury of foot +C2869950|T037|HT|S99.92|ICD10CM|Unspecified injury of foot|Unspecified injury of foot +C2869951|T037|AB|S99.921|ICD10CM|Unspecified injury of right foot|Unspecified injury of right foot +C2869951|T037|HT|S99.921|ICD10CM|Unspecified injury of right foot|Unspecified injury of right foot +C2869952|T037|PT|S99.921A|ICD10CM|Unspecified injury of right foot, initial encounter|Unspecified injury of right foot, initial encounter +C2869952|T037|AB|S99.921A|ICD10CM|Unspecified injury of right foot, initial encounter|Unspecified injury of right foot, initial encounter +C2869953|T037|PT|S99.921D|ICD10CM|Unspecified injury of right foot, subsequent encounter|Unspecified injury of right foot, subsequent encounter +C2869953|T037|AB|S99.921D|ICD10CM|Unspecified injury of right foot, subsequent encounter|Unspecified injury of right foot, subsequent encounter +C2869954|T037|PT|S99.921S|ICD10CM|Unspecified injury of right foot, sequela|Unspecified injury of right foot, sequela +C2869954|T037|AB|S99.921S|ICD10CM|Unspecified injury of right foot, sequela|Unspecified injury of right foot, sequela +C2869955|T037|AB|S99.922|ICD10CM|Unspecified injury of left foot|Unspecified injury of left foot +C2869955|T037|HT|S99.922|ICD10CM|Unspecified injury of left foot|Unspecified injury of left foot +C2869956|T037|PT|S99.922A|ICD10CM|Unspecified injury of left foot, initial encounter|Unspecified injury of left foot, initial encounter +C2869956|T037|AB|S99.922A|ICD10CM|Unspecified injury of left foot, initial encounter|Unspecified injury of left foot, initial encounter +C2869957|T037|PT|S99.922D|ICD10CM|Unspecified injury of left foot, subsequent encounter|Unspecified injury of left foot, subsequent encounter +C2869957|T037|AB|S99.922D|ICD10CM|Unspecified injury of left foot, subsequent encounter|Unspecified injury of left foot, subsequent encounter +C2869958|T037|PT|S99.922S|ICD10CM|Unspecified injury of left foot, sequela|Unspecified injury of left foot, sequela +C2869958|T037|AB|S99.922S|ICD10CM|Unspecified injury of left foot, sequela|Unspecified injury of left foot, sequela +C2869959|T037|AB|S99.929|ICD10CM|Unspecified injury of unspecified foot|Unspecified injury of unspecified foot +C2869959|T037|HT|S99.929|ICD10CM|Unspecified injury of unspecified foot|Unspecified injury of unspecified foot +C2869960|T037|PT|S99.929A|ICD10CM|Unspecified injury of unspecified foot, initial encounter|Unspecified injury of unspecified foot, initial encounter +C2869960|T037|AB|S99.929A|ICD10CM|Unspecified injury of unspecified foot, initial encounter|Unspecified injury of unspecified foot, initial encounter +C2869961|T037|AB|S99.929D|ICD10CM|Unspecified injury of unspecified foot, subsequent encounter|Unspecified injury of unspecified foot, subsequent encounter +C2869961|T037|PT|S99.929D|ICD10CM|Unspecified injury of unspecified foot, subsequent encounter|Unspecified injury of unspecified foot, subsequent encounter +C2869962|T037|PT|S99.929S|ICD10CM|Unspecified injury of unspecified foot, sequela|Unspecified injury of unspecified foot, sequela +C2869962|T037|AB|S99.929S|ICD10CM|Unspecified injury of unspecified foot, sequela|Unspecified injury of unspecified foot, sequela +C0451967|T037|HT|T00|ICD10|Superficial injuries involving multiple body regions|Superficial injuries involving multiple body regions +C0478365|T037|HT|T00-T07.9|ICD10|Injuries involving multiple body regions|Injuries involving multiple body regions +C0451968|T037|PT|T00.0|ICD10|Superficial injuries involving head with neck|Superficial injuries involving head with neck +C0495980|T037|PT|T00.1|ICD10|Superficial injuries involving thorax with abdomen, lower back and pelvis|Superficial injuries involving thorax with abdomen, lower back and pelvis +C0495981|T037|PT|T00.2|ICD10|Superficial injuries involving multiple regions of upper limb(s)|Superficial injuries involving multiple regions of upper limb(s) +C0495982|T037|PT|T00.3|ICD10|Superficial injuries involving multiple regions of lower limb(s)|Superficial injuries involving multiple regions of lower limb(s) +C0451969|T037|PT|T00.6|ICD10|Superficial injuries involving multiple regions of upper limb(s) with lower limb(s)|Superficial injuries involving multiple regions of upper limb(s) with lower limb(s) +C0478366|T037|PT|T00.8|ICD10|Superficial injuries involving other combinations of body regions|Superficial injuries involving other combinations of body regions +C0332672|T037|PT|T00.9|ICD10|Multiple superficial injuries, unspecified|Multiple superficial injuries, unspecified +C0332802|T037|HT|T01|ICD10|Open wounds involving multiple body regions|Open wounds involving multiple body regions +C0451919|T037|PT|T01.0|ICD10|Open wounds involving head with neck|Open wounds involving head with neck +C0451954|T037|PT|T01.1|ICD10|Open wounds involving thorax with abdomen, lower back and pelvis|Open wounds involving thorax with abdomen, lower back and pelvis +C0495984|T037|PT|T01.2|ICD10|Open wounds involving multiple regions of upper limb(s)|Open wounds involving multiple regions of upper limb(s) +C0451918|T037|PT|T01.3|ICD10|Open wounds involving multiple regions of lower limb(s)|Open wounds involving multiple regions of lower limb(s) +C0451970|T037|PT|T01.6|ICD10|Open wounds involving multiple regions of upper limb(s) with lower limb(s)|Open wounds involving multiple regions of upper limb(s) with lower limb(s) +C0478367|T037|PT|T01.8|ICD10|Open wounds involving other combinations of body regions|Open wounds involving other combinations of body regions +C0332802|T037|PT|T01.9|ICD10|Multiple open wounds, unspecified|Multiple open wounds, unspecified +C0452098|T037|HT|T02|ICD10|Fractures involving multiple body regions|Fractures involving multiple body regions +C0452099|T037|PT|T02.0|ICD10|Fractures involving head with neck|Fractures involving head with neck +C0452100|T037|PT|T02.1|ICD10|Fractures involving thorax with lower back and pelvis|Fractures involving thorax with lower back and pelvis +C0452101|T037|PT|T02.2|ICD10|Fractures involving multiple regions of one upper limb|Fractures involving multiple regions of one upper limb +C0452102|T037|PT|T02.3|ICD10|Fractures involving multiple regions of one lower limb|Fractures involving multiple regions of one lower limb +C0452170|T037|PT|T02.4|ICD10|Fractures involving multiple regions of both upper limbs|Fractures involving multiple regions of both upper limbs +C0452103|T037|PT|T02.5|ICD10|Fractures involving multiple regions of both lower limbs|Fractures involving multiple regions of both lower limbs +C0495986|T037|PT|T02.6|ICD10|Fractures involving multiple regions of upper limb(s) with lower limb(s)|Fractures involving multiple regions of upper limb(s) with lower limb(s) +C0452105|T037|PT|T02.7|ICD10|Fractures involving thorax with lower back and pelvis with limb(s)|Fractures involving thorax with lower back and pelvis with limb(s) +C0478368|T037|PT|T02.8|ICD10|Fractures involving other combinations of body regions|Fractures involving other combinations of body regions +C0016655|T037|PT|T02.9|ICD10|Multiple fractures, unspecified|Multiple fractures, unspecified +C0451825|T037|HT|T03|ICD10|Dislocations, sprains and strains involving multiple body regions|Dislocations, sprains and strains involving multiple body regions +C0451826|T037|PT|T03.0|ICD10|Dislocations, sprains and strains involving head with neck|Dislocations, sprains and strains involving head with neck +C0451827|T037|PT|T03.1|ICD10|Dislocations, sprains and strains involving thorax with lower back and pelvis|Dislocations, sprains and strains involving thorax with lower back and pelvis +C0451828|T037|PT|T03.2|ICD10|Dislocations, sprains and strains involving multiple regions of upper limb(s)|Dislocations, sprains and strains involving multiple regions of upper limb(s) +C0451829|T037|PT|T03.3|ICD10|Dislocations, sprains and strains involving multiple regions of lower limb(s)|Dislocations, sprains and strains involving multiple regions of lower limb(s) +C0495987|T037|PT|T03.4|ICD10|Dislocations, sprains and strains involving multiple regions of upper limb(s) with lower limb(s)|Dislocations, sprains and strains involving multiple regions of upper limb(s) with lower limb(s) +C0478369|T037|PT|T03.8|ICD10|Dislocations, sprains and strains involving other combinations of body regions|Dislocations, sprains and strains involving other combinations of body regions +C0478370|T037|PT|T03.9|ICD10|Multiple dislocations, sprains and strains, unspecified|Multiple dislocations, sprains and strains, unspecified +C0451984|T037|HT|T04|ICD10|Crushing injuries involving multiple body regions|Crushing injuries involving multiple body regions +C0451985|T037|PT|T04.0|ICD10|Crushing injuries involving head with neck|Crushing injuries involving head with neck +C0495988|T037|PT|T04.1|ICD10|Crushing injuries involving thorax with abdomen, lower back and pelvis|Crushing injuries involving thorax with abdomen, lower back and pelvis +C0160983|T037|PT|T04.2|ICD10|Crushing injuries involving multiple regions of upper limb(s)|Crushing injuries involving multiple regions of upper limb(s) +C0160996|T037|PT|T04.3|ICD10|Crushing injuries involving multiple regions of lower limb(s)|Crushing injuries involving multiple regions of lower limb(s) +C0451986|T037|PT|T04.4|ICD10|Crushing injuries involving multiple regions of upper limb(s) with lower limb(s)|Crushing injuries involving multiple regions of upper limb(s) with lower limb(s) +C0451987|T037|PT|T04.7|ICD10|Crushing injuries of thorax with abdomen, lower back and pelvis with limb(s)|Crushing injuries of thorax with abdomen, lower back and pelvis with limb(s) +C0478371|T037|PT|T04.8|ICD10|Crushing injuries involving other combinations of body regions|Crushing injuries involving other combinations of body regions +C0495991|T037|PT|T04.9|ICD10|Multiple crushing injuries, unspecified|Multiple crushing injuries, unspecified +C0452042|T037|HT|T05|ICD10|Traumatic amputations involving multiple body regions|Traumatic amputations involving multiple body regions +C0349010|T037|PT|T05.0|ICD10|Traumatic amputation of both hands|Traumatic amputation of both hands +C0452043|T037|PT|T05.1|ICD10|Traumatic amputation of one hand and other arm [any level, except hand]|Traumatic amputation of one hand and other arm [any level, except hand] +C0495992|T037|PT|T05.2|ICD10|Traumatic amputation of both arms [any level]|Traumatic amputation of both arms [any level] +C0349011|T037|PT|T05.3|ICD10|Traumatic amputation of both feet|Traumatic amputation of both feet +C0452044|T037|PT|T05.4|ICD10|Traumatic amputation of one foot and other leg [any level, except foot]|Traumatic amputation of one foot and other leg [any level, except foot] +C0495993|T037|PT|T05.5|ICD10|Traumatic amputation of both legs [any level]|Traumatic amputation of both legs [any level] +C0452045|T037|PT|T05.6|ICD10|Traumatic amputation of upper and lower limbs, any combination [any level]|Traumatic amputation of upper and lower limbs, any combination [any level] +C0478372|T037|PT|T05.8|ICD10|Traumatic amputations involving other combinations of body regions|Traumatic amputations involving other combinations of body regions +C0478374|T037|PT|T05.9|ICD10|Multiple traumatic amputations, unspecified|Multiple traumatic amputations, unspecified +C0868885|T037|HT|T06|ICD10|Other injuries involving multiple body regions, not elsewhere classified|Other injuries involving multiple body regions, not elsewhere classified +C0451972|T037|PT|T06.0|ICD10|Injuries of brain and cranial nerves with injuries of nerves and spinal cord at neck level|Injuries of brain and cranial nerves with injuries of nerves and spinal cord at neck level +C0495994|T037|PT|T06.1|ICD10|Injuries of nerves and spinal cord involving other multiple body regions|Injuries of nerves and spinal cord involving other multiple body regions +C0495995|T037|PT|T06.2|ICD10|Injuries of nerves involving multiple body regions|Injuries of nerves involving multiple body regions +C0452075|T037|PT|T06.3|ICD10|Injuries of blood vessels involving multiple body regions|Injuries of blood vessels involving multiple body regions +C0451867|T037|PT|T06.4|ICD10|Injuries of muscles and tendons involving multiple body regions|Injuries of muscles and tendons involving multiple body regions +C0452054|T037|PT|T06.5|ICD10|Injuries of intrathoracic organs with intra-abdominal and pelvic organs|Injuries of intrathoracic organs with intra-abdominal and pelvic organs +C0478373|T037|PT|T06.8|ICD10|Other specified injuries involving multiple body regions|Other specified injuries involving multiple body regions +C0026771|T037|AB|T07|ICD10CM|Unspecified multiple injuries|Unspecified multiple injuries +C0026771|T037|HT|T07|ICD10CM|Unspecified multiple injuries|Unspecified multiple injuries +C0026771|T037|PT|T07|ICD10|Unspecified multiple injuries|Unspecified multiple injuries +C0478365|T037|HT|T07-T07|ICD10CM|Injuries involving multiple body regions (T07)|Injuries involving multiple body regions (T07) +C4270110|T037|HT|T07-T88|ICD10CM|Injury, poisoning and certain other consequences of external causes (T07-T88)|Injury, poisoning and certain other consequences of external causes (T07-T88) +C4509458|T037|AB|T07.XXXA|ICD10CM|Unspecified multiple injuries, initial encounter|Unspecified multiple injuries, initial encounter +C4509458|T037|PT|T07.XXXA|ICD10CM|Unspecified multiple injuries, initial encounter|Unspecified multiple injuries, initial encounter +C4509459|T037|AB|T07.XXXD|ICD10CM|Unspecified multiple injuries, subsequent encounter|Unspecified multiple injuries, subsequent encounter +C4509459|T037|PT|T07.XXXD|ICD10CM|Unspecified multiple injuries, subsequent encounter|Unspecified multiple injuries, subsequent encounter +C4509460|T037|AB|T07.XXXS|ICD10CM|Unspecified multiple injuries, sequela|Unspecified multiple injuries, sequela +C4509460|T037|PT|T07.XXXS|ICD10CM|Unspecified multiple injuries, sequela|Unspecified multiple injuries, sequela +C0495996|T037|PT|T08|ICD10|Fracture of spine, level unspecified|Fracture of spine, level unspecified +C0478375|T037|HT|T08-T14.9|ICD10|Injuries to unspecified part of trunk, limb or body region|Injuries to unspecified part of trunk, limb or body region +C0495997|T037|HT|T09|ICD10|Other injuries of spine and trunk, level unspecified|Other injuries of spine and trunk, level unspecified +C0495998|T037|PT|T09.0|ICD10|Superficial injury of trunk, level unspecified|Superficial injury of trunk, level unspecified +C0495999|T037|PT|T09.1|ICD10|Open wound of trunk, level unspecified|Open wound of trunk, level unspecified +C0478376|T037|PT|T09.2|ICD10|Dislocation, sprain and strain of unspecified joint and ligament of trunk|Dislocation, sprain and strain of unspecified joint and ligament of trunk +C0037929|T037|PT|T09.3|ICD10|Injury of spinal cord, level unspecified|Injury of spinal cord, level unspecified +C0496001|T037|PT|T09.4|ICD10|Injury of unspecified nerve, spinal nerve root and plexus of trunk|Injury of unspecified nerve, spinal nerve root and plexus of trunk +C0478394|T037|PT|T09.5|ICD10|Injury of unspecified muscle and tendon of trunk|Injury of unspecified muscle and tendon of trunk +C0452041|T037|PT|T09.6|ICD10|Traumatic amputation of trunk, level unspecified|Traumatic amputation of trunk, level unspecified +C0496002|T037|PT|T09.8|ICD10|Other specified injuries of trunk, level unspecified|Other specified injuries of trunk, level unspecified +C0496003|T037|PT|T09.9|ICD10|Unspecified injury of trunk, level unspecified|Unspecified injury of trunk, level unspecified +C0452090|T037|PT|T10|ICD10|Fracture of upper limb, level unspecified|Fracture of upper limb, level unspecified +C0496004|T037|HT|T11|ICD10|Other injuries of upper limb, level unspecified|Other injuries of upper limb, level unspecified +C0496005|T037|PT|T11.0|ICD10|Superficial injury of upper limb, level unspecified|Superficial injury of upper limb, level unspecified +C0496006|T037|PT|T11.1|ICD10|Open wound of upper limb, level unspecified|Open wound of upper limb, level unspecified +C0478395|T037|PT|T11.2|ICD10|Dislocation, sprain and strain of unspecified joint and ligament of upper limb, level unspecified|Dislocation, sprain and strain of unspecified joint and ligament of upper limb, level unspecified +C0478396|T037|PT|T11.3|ICD10|Injury of unspecified nerve of upper limb, level unspecified|Injury of unspecified nerve of upper limb, level unspecified +C0160742|T037|PT|T11.4|ICD10|Injury of unspecified blood vessel of upper limb, level unspecified|Injury of unspecified blood vessel of upper limb, level unspecified +C0496008|T037|PT|T11.5|ICD10|Injury of unspecified muscle and tendon of upper limb, level unspecified|Injury of unspecified muscle and tendon of upper limb, level unspecified +C0496009|T037|PT|T11.6|ICD10|Traumatic amputation of upper limb, level unspecified|Traumatic amputation of upper limb, level unspecified +C0478378|T037|PT|T11.8|ICD10|Other specified injuries of upper limb, level unspecified|Other specified injuries of upper limb, level unspecified +C0478398|T037|PT|T11.9|ICD10|Unspecified injury of upper limb, level unspecified|Unspecified injury of upper limb, level unspecified +C0452097|T037|PT|T12|ICD10|Fracture of lower limb, level unspecified|Fracture of lower limb, level unspecified +C0496011|T037|HT|T13|ICD10|Other injuries of lower limb, level unspecified|Other injuries of lower limb, level unspecified +C0496012|T037|PT|T13.0|ICD10|Superficial injury of lower limb, level unspecified|Superficial injury of lower limb, level unspecified +C0178323|T037|PT|T13.1|ICD10|Open wound of lower limb, level unspecified|Open wound of lower limb, level unspecified +C0496014|T037|PT|T13.2|ICD10|Dislocation, sprain and strain of unspecified joint and ligament of lower limb, level unspecified|Dislocation, sprain and strain of unspecified joint and ligament of lower limb, level unspecified +C0496015|T037|PT|T13.3|ICD10|Injury of unspecified nerve of lower limb, level unspecified|Injury of unspecified nerve of lower limb, level unspecified +C1279577|T037|PT|T13.4|ICD10|Injury of unspecified blood vessel of lower limb, level unspecified|Injury of unspecified blood vessel of lower limb, level unspecified +C0496017|T037|PT|T13.5|ICD10|Injury of unspecified muscle and tendon of lower limb, level unspecified|Injury of unspecified muscle and tendon of lower limb, level unspecified +C0478347|T037|PT|T13.6|ICD10|Traumatic amputation of lower limb, level unspecified|Traumatic amputation of lower limb, level unspecified +C0496018|T037|PT|T13.8|ICD10|Other specified injuries of lower limb, level unspecified|Other specified injuries of lower limb, level unspecified +C0496019|T037|PT|T13.9|ICD10|Unspecified injury of lower limb, level unspecified|Unspecified injury of lower limb, level unspecified +C0496020|T037|HT|T14|ICD10|Injury of unspecified body region|Injury of unspecified body region +C0496020|T037|HT|T14|ICD10CM|Injury of unspecified body region|Injury of unspecified body region +C0496020|T037|AB|T14|ICD10CM|Injury of unspecified body region|Injury of unspecified body region +C0496020|T037|HT|T14-T14|ICD10CM|Injury of unspecified body region (T14)|Injury of unspecified body region (T14) +C0478385|T037|PT|T14.0|ICD10|Superficial injury of unspecified body region|Superficial injury of unspecified body region +C0478386|T037|PT|T14.1|ICD10|Open wound of unspecified body region|Open wound of unspecified body region +C0478387|T037|PT|T14.2|ICD10|Fracture of unspecified body region|Fracture of unspecified body region +C0478388|T037|PT|T14.3|ICD10|Dislocation, sprain and strain of unspecified body region|Dislocation, sprain and strain of unspecified body region +C0161479|T037|PT|T14.4|ICD10|Injury of nerve(s) of unspecified body region|Injury of nerve(s) of unspecified body region +C0178324|T037|PT|T14.5|ICD10|Injury of blood vessel(s) of unspecified body region|Injury of blood vessel(s) of unspecified body region +C0478391|T037|PT|T14.6|ICD10|Injury of muscles and tendons of unspecified body region|Injury of muscles and tendons of unspecified body region +C0478392|T037|PT|T14.7|ICD10|Crushing injury and traumatic amputation of unspecified body region|Crushing injury and traumatic amputation of unspecified body region +C1302752|T037|ET|T14.8|ICD10CM|Abrasion NOS|Abrasion NOS +C0009938|T037|ET|T14.8|ICD10CM|Contusion NOS|Contusion NOS +C0332679|T037|ET|T14.8|ICD10CM|Crush injury NOS|Crush injury NOS +C0016658|T037|ET|T14.8|ICD10CM|Fracture NOS|Fracture NOS +C0478393|T037|PT|T14.8|ICD10|Other injuries of unspecified body region|Other injuries of unspecified body region +C0478393|T037|AB|T14.8|ICD10CM|Other injury of unspecified body region|Other injury of unspecified body region +C0478393|T037|HT|T14.8|ICD10CM|Other injury of unspecified body region|Other injury of unspecified body region +C0281980|T037|ET|T14.8|ICD10CM|Skin injury NOS|Skin injury NOS +C0178324|T037|ET|T14.8|ICD10CM|Vascular injury NOS|Vascular injury NOS +C0043250|T037|ET|T14.8|ICD10CM|Wound NOS|Wound NOS +C4509461|T037|AB|T14.8XXA|ICD10CM|Other injury of unspecified body region, initial encounter|Other injury of unspecified body region, initial encounter +C4509461|T037|PT|T14.8XXA|ICD10CM|Other injury of unspecified body region, initial encounter|Other injury of unspecified body region, initial encounter +C4509462|T037|AB|T14.8XXD|ICD10CM|Other injury of unspecified body region, subs|Other injury of unspecified body region, subs +C4509462|T037|PT|T14.8XXD|ICD10CM|Other injury of unspecified body region, subsequent encounter|Other injury of unspecified body region, subsequent encounter +C4509463|T037|AB|T14.8XXS|ICD10CM|Other injury of unspecified body region, sequela|Other injury of unspecified body region, sequela +C4509463|T037|PT|T14.8XXS|ICD10CM|Other injury of unspecified body region, sequela|Other injury of unspecified body region, sequela +C3263723|T037|PT|T14.9|ICD10|Injury, unspecified|Injury, unspecified +C3263723|T037|AB|T14.9|ICD10CM|Unspecified injury|Unspecified injury +C3263723|T037|HT|T14.9|ICD10CM|Unspecified injury|Unspecified injury +C3263723|T037|ET|T14.90|ICD10CM|Injury NOS|Injury NOS +C3263723|T037|AB|T14.90|ICD10CM|Injury, unspecified|Injury, unspecified +C3263723|T037|HT|T14.90|ICD10CM|Injury, unspecified|Injury, unspecified +C4509464|T037|AB|T14.90XA|ICD10CM|Injury, unspecified, initial encounter|Injury, unspecified, initial encounter +C4509464|T037|PT|T14.90XA|ICD10CM|Injury, unspecified, initial encounter|Injury, unspecified, initial encounter +C4509465|T037|AB|T14.90XD|ICD10CM|Injury, unspecified, subsequent encounter|Injury, unspecified, subsequent encounter +C4509465|T037|PT|T14.90XD|ICD10CM|Injury, unspecified, subsequent encounter|Injury, unspecified, subsequent encounter +C4509466|T037|PT|T14.90XS|ICD10CM|Injury, unspecified, sequela|Injury, unspecified, sequela +C4509466|T037|AB|T14.90XS|ICD10CM|Injury, unspecified, sequela|Injury, unspecified, sequela +C0038663|T037|ET|T14.91|ICD10CM|Attempted suicide NOS|Attempted suicide NOS +C0038663|T037|AB|T14.91|ICD10CM|Suicide attempt|Suicide attempt +C0038663|T037|HT|T14.91|ICD10CM|Suicide attempt|Suicide attempt +C4509467|T037|AB|T14.91XA|ICD10CM|Suicide attempt, initial encounter|Suicide attempt, initial encounter +C4509467|T037|PT|T14.91XA|ICD10CM|Suicide attempt, initial encounter|Suicide attempt, initial encounter +C4509468|T037|AB|T14.91XD|ICD10CM|Suicide attempt, subsequent encounter|Suicide attempt, subsequent encounter +C4509468|T037|PT|T14.91XD|ICD10CM|Suicide attempt, subsequent encounter|Suicide attempt, subsequent encounter +C4509469|T037|AB|T14.91XS|ICD10CM|Suicide attempt, sequela|Suicide attempt, sequela +C4509469|T037|PT|T14.91XS|ICD10CM|Suicide attempt, sequela|Suicide attempt, sequela +C0161001|T037|HT|T15|ICD10CM|Foreign body on external eye|Foreign body on external eye +C0161001|T037|AB|T15|ICD10CM|Foreign body on external eye|Foreign body on external eye +C0161001|T037|HT|T15|ICD10|Foreign body on external eye|Foreign body on external eye +C0478399|T037|HT|T15-T19|ICD10CM|Effects of foreign body entering through natural orifice (T15-T19)|Effects of foreign body entering through natural orifice (T15-T19) +C0478399|T037|HT|T15-T19.9|ICD10|Effects of foreign body entering through natural orifice|Effects of foreign body entering through natural orifice +C0161002|T037|HT|T15.0|ICD10CM|Foreign body in cornea|Foreign body in cornea +C0161002|T037|AB|T15.0|ICD10CM|Foreign body in cornea|Foreign body in cornea +C0161002|T037|PT|T15.0|ICD10|Foreign body in cornea|Foreign body in cornea +C2869964|T037|AB|T15.00|ICD10CM|Foreign body in cornea, unspecified eye|Foreign body in cornea, unspecified eye +C2869964|T037|HT|T15.00|ICD10CM|Foreign body in cornea, unspecified eye|Foreign body in cornea, unspecified eye +C2869965|T037|AB|T15.00XA|ICD10CM|Foreign body in cornea, unspecified eye, initial encounter|Foreign body in cornea, unspecified eye, initial encounter +C2869965|T037|PT|T15.00XA|ICD10CM|Foreign body in cornea, unspecified eye, initial encounter|Foreign body in cornea, unspecified eye, initial encounter +C2869966|T037|AB|T15.00XD|ICD10CM|Foreign body in cornea, unspecified eye, subs encntr|Foreign body in cornea, unspecified eye, subs encntr +C2869966|T037|PT|T15.00XD|ICD10CM|Foreign body in cornea, unspecified eye, subsequent encounter|Foreign body in cornea, unspecified eye, subsequent encounter +C2869967|T037|AB|T15.00XS|ICD10CM|Foreign body in cornea, unspecified eye, sequela|Foreign body in cornea, unspecified eye, sequela +C2869967|T037|PT|T15.00XS|ICD10CM|Foreign body in cornea, unspecified eye, sequela|Foreign body in cornea, unspecified eye, sequela +C2869968|T037|AB|T15.01|ICD10CM|Foreign body in cornea, right eye|Foreign body in cornea, right eye +C2869968|T037|HT|T15.01|ICD10CM|Foreign body in cornea, right eye|Foreign body in cornea, right eye +C2869969|T037|AB|T15.01XA|ICD10CM|Foreign body in cornea, right eye, initial encounter|Foreign body in cornea, right eye, initial encounter +C2869969|T037|PT|T15.01XA|ICD10CM|Foreign body in cornea, right eye, initial encounter|Foreign body in cornea, right eye, initial encounter +C2869970|T037|AB|T15.01XD|ICD10CM|Foreign body in cornea, right eye, subsequent encounter|Foreign body in cornea, right eye, subsequent encounter +C2869970|T037|PT|T15.01XD|ICD10CM|Foreign body in cornea, right eye, subsequent encounter|Foreign body in cornea, right eye, subsequent encounter +C2869971|T037|AB|T15.01XS|ICD10CM|Foreign body in cornea, right eye, sequela|Foreign body in cornea, right eye, sequela +C2869971|T037|PT|T15.01XS|ICD10CM|Foreign body in cornea, right eye, sequela|Foreign body in cornea, right eye, sequela +C2069839|T037|AB|T15.02|ICD10CM|Foreign body in cornea, left eye|Foreign body in cornea, left eye +C2069839|T037|HT|T15.02|ICD10CM|Foreign body in cornea, left eye|Foreign body in cornea, left eye +C2869972|T037|AB|T15.02XA|ICD10CM|Foreign body in cornea, left eye, initial encounter|Foreign body in cornea, left eye, initial encounter +C2869972|T037|PT|T15.02XA|ICD10CM|Foreign body in cornea, left eye, initial encounter|Foreign body in cornea, left eye, initial encounter +C2869973|T037|AB|T15.02XD|ICD10CM|Foreign body in cornea, left eye, subsequent encounter|Foreign body in cornea, left eye, subsequent encounter +C2869973|T037|PT|T15.02XD|ICD10CM|Foreign body in cornea, left eye, subsequent encounter|Foreign body in cornea, left eye, subsequent encounter +C2869974|T037|AB|T15.02XS|ICD10CM|Foreign body in cornea, left eye, sequela|Foreign body in cornea, left eye, sequela +C2869974|T037|PT|T15.02XS|ICD10CM|Foreign body in cornea, left eye, sequela|Foreign body in cornea, left eye, sequela +C0161003|T037|PT|T15.1|ICD10|Foreign body in conjunctival sac|Foreign body in conjunctival sac +C0161003|T037|HT|T15.1|ICD10CM|Foreign body in conjunctival sac|Foreign body in conjunctival sac +C0161003|T037|AB|T15.1|ICD10CM|Foreign body in conjunctival sac|Foreign body in conjunctival sac +C2869975|T037|AB|T15.10|ICD10CM|Foreign body in conjunctival sac, unspecified eye|Foreign body in conjunctival sac, unspecified eye +C2869975|T037|HT|T15.10|ICD10CM|Foreign body in conjunctival sac, unspecified eye|Foreign body in conjunctival sac, unspecified eye +C2869976|T037|AB|T15.10XA|ICD10CM|Foreign body in conjunctival sac, unsp eye, init encntr|Foreign body in conjunctival sac, unsp eye, init encntr +C2869976|T037|PT|T15.10XA|ICD10CM|Foreign body in conjunctival sac, unspecified eye, initial encounter|Foreign body in conjunctival sac, unspecified eye, initial encounter +C2869977|T037|AB|T15.10XD|ICD10CM|Foreign body in conjunctival sac, unsp eye, subs encntr|Foreign body in conjunctival sac, unsp eye, subs encntr +C2869977|T037|PT|T15.10XD|ICD10CM|Foreign body in conjunctival sac, unspecified eye, subsequent encounter|Foreign body in conjunctival sac, unspecified eye, subsequent encounter +C2869978|T037|AB|T15.10XS|ICD10CM|Foreign body in conjunctival sac, unspecified eye, sequela|Foreign body in conjunctival sac, unspecified eye, sequela +C2869978|T037|PT|T15.10XS|ICD10CM|Foreign body in conjunctival sac, unspecified eye, sequela|Foreign body in conjunctival sac, unspecified eye, sequela +C2064552|T037|AB|T15.11|ICD10CM|Foreign body in conjunctival sac, right eye|Foreign body in conjunctival sac, right eye +C2064552|T037|HT|T15.11|ICD10CM|Foreign body in conjunctival sac, right eye|Foreign body in conjunctival sac, right eye +C2869979|T037|AB|T15.11XA|ICD10CM|Foreign body in conjunctival sac, right eye, init encntr|Foreign body in conjunctival sac, right eye, init encntr +C2869979|T037|PT|T15.11XA|ICD10CM|Foreign body in conjunctival sac, right eye, initial encounter|Foreign body in conjunctival sac, right eye, initial encounter +C2869980|T037|AB|T15.11XD|ICD10CM|Foreign body in conjunctival sac, right eye, subs encntr|Foreign body in conjunctival sac, right eye, subs encntr +C2869980|T037|PT|T15.11XD|ICD10CM|Foreign body in conjunctival sac, right eye, subsequent encounter|Foreign body in conjunctival sac, right eye, subsequent encounter +C2869981|T037|AB|T15.11XS|ICD10CM|Foreign body in conjunctival sac, right eye, sequela|Foreign body in conjunctival sac, right eye, sequela +C2869981|T037|PT|T15.11XS|ICD10CM|Foreign body in conjunctival sac, right eye, sequela|Foreign body in conjunctival sac, right eye, sequela +C2064553|T037|AB|T15.12|ICD10CM|Foreign body in conjunctival sac, left eye|Foreign body in conjunctival sac, left eye +C2064553|T037|HT|T15.12|ICD10CM|Foreign body in conjunctival sac, left eye|Foreign body in conjunctival sac, left eye +C2869982|T037|AB|T15.12XA|ICD10CM|Foreign body in conjunctival sac, left eye, init encntr|Foreign body in conjunctival sac, left eye, init encntr +C2869982|T037|PT|T15.12XA|ICD10CM|Foreign body in conjunctival sac, left eye, initial encounter|Foreign body in conjunctival sac, left eye, initial encounter +C2869983|T037|AB|T15.12XD|ICD10CM|Foreign body in conjunctival sac, left eye, subs encntr|Foreign body in conjunctival sac, left eye, subs encntr +C2869983|T037|PT|T15.12XD|ICD10CM|Foreign body in conjunctival sac, left eye, subsequent encounter|Foreign body in conjunctival sac, left eye, subsequent encounter +C2869984|T037|AB|T15.12XS|ICD10CM|Foreign body in conjunctival sac, left eye, sequela|Foreign body in conjunctival sac, left eye, sequela +C2869984|T037|PT|T15.12XS|ICD10CM|Foreign body in conjunctival sac, left eye, sequela|Foreign body in conjunctival sac, left eye, sequela +C0161004|T037|ET|T15.8|ICD10CM|Foreign body in lacrimal punctum|Foreign body in lacrimal punctum +C0496023|T037|PT|T15.8|ICD10|Foreign body in other and multiple parts of external eye|Foreign body in other and multiple parts of external eye +C0496023|T037|HT|T15.8|ICD10CM|Foreign body in other and multiple parts of external eye|Foreign body in other and multiple parts of external eye +C0496023|T037|AB|T15.8|ICD10CM|Foreign body in other and multiple parts of external eye|Foreign body in other and multiple parts of external eye +C2869985|T037|AB|T15.80|ICD10CM|Fb in oth and multiple parts of external eye, unsp eye|Fb in oth and multiple parts of external eye, unsp eye +C2869985|T037|HT|T15.80|ICD10CM|Foreign body in other and multiple parts of external eye, unspecified eye|Foreign body in other and multiple parts of external eye, unspecified eye +C2869986|T037|AB|T15.80XA|ICD10CM|Fb in oth and multiple parts of external eye, unsp eye, init|Fb in oth and multiple parts of external eye, unsp eye, init +C2869986|T037|PT|T15.80XA|ICD10CM|Foreign body in other and multiple parts of external eye, unspecified eye, initial encounter|Foreign body in other and multiple parts of external eye, unspecified eye, initial encounter +C2869987|T037|AB|T15.80XD|ICD10CM|Fb in oth and multiple parts of external eye, unsp eye, subs|Fb in oth and multiple parts of external eye, unsp eye, subs +C2869987|T037|PT|T15.80XD|ICD10CM|Foreign body in other and multiple parts of external eye, unspecified eye, subsequent encounter|Foreign body in other and multiple parts of external eye, unspecified eye, subsequent encounter +C2869988|T037|AB|T15.80XS|ICD10CM|Fb in oth and multiple parts of extrn eye, unsp eye, sequela|Fb in oth and multiple parts of extrn eye, unsp eye, sequela +C2869988|T037|PT|T15.80XS|ICD10CM|Foreign body in other and multiple parts of external eye, unspecified eye, sequela|Foreign body in other and multiple parts of external eye, unspecified eye, sequela +C2869989|T037|AB|T15.81|ICD10CM|Fb in oth and multiple parts of external eye, right eye|Fb in oth and multiple parts of external eye, right eye +C2869989|T037|HT|T15.81|ICD10CM|Foreign body in other and multiple parts of external eye, right eye|Foreign body in other and multiple parts of external eye, right eye +C2869990|T037|AB|T15.81XA|ICD10CM|Fb in oth and multiple parts of external eye, r eye, init|Fb in oth and multiple parts of external eye, r eye, init +C2869990|T037|PT|T15.81XA|ICD10CM|Foreign body in other and multiple parts of external eye, right eye, initial encounter|Foreign body in other and multiple parts of external eye, right eye, initial encounter +C2869991|T037|AB|T15.81XD|ICD10CM|Fb in oth and multiple parts of external eye, r eye, subs|Fb in oth and multiple parts of external eye, r eye, subs +C2869991|T037|PT|T15.81XD|ICD10CM|Foreign body in other and multiple parts of external eye, right eye, subsequent encounter|Foreign body in other and multiple parts of external eye, right eye, subsequent encounter +C2869992|T037|AB|T15.81XS|ICD10CM|Fb in oth and multiple parts of external eye, r eye, sequela|Fb in oth and multiple parts of external eye, r eye, sequela +C2869992|T037|PT|T15.81XS|ICD10CM|Foreign body in other and multiple parts of external eye, right eye, sequela|Foreign body in other and multiple parts of external eye, right eye, sequela +C2869993|T037|AB|T15.82|ICD10CM|Fb in oth and multiple parts of external eye, left eye|Fb in oth and multiple parts of external eye, left eye +C2869993|T037|HT|T15.82|ICD10CM|Foreign body in other and multiple parts of external eye, left eye|Foreign body in other and multiple parts of external eye, left eye +C2869994|T037|AB|T15.82XA|ICD10CM|Fb in oth and multiple parts of external eye, left eye, init|Fb in oth and multiple parts of external eye, left eye, init +C2869994|T037|PT|T15.82XA|ICD10CM|Foreign body in other and multiple parts of external eye, left eye, initial encounter|Foreign body in other and multiple parts of external eye, left eye, initial encounter +C2869995|T037|AB|T15.82XD|ICD10CM|Fb in oth and multiple parts of external eye, left eye, subs|Fb in oth and multiple parts of external eye, left eye, subs +C2869995|T037|PT|T15.82XD|ICD10CM|Foreign body in other and multiple parts of external eye, left eye, subsequent encounter|Foreign body in other and multiple parts of external eye, left eye, subsequent encounter +C2869996|T037|AB|T15.82XS|ICD10CM|Fb in oth and multiple parts of extrn eye, left eye, sequela|Fb in oth and multiple parts of extrn eye, left eye, sequela +C2869996|T037|PT|T15.82XS|ICD10CM|Foreign body in other and multiple parts of external eye, left eye, sequela|Foreign body in other and multiple parts of external eye, left eye, sequela +C0161001|T037|HT|T15.9|ICD10CM|Foreign body on external eye, part unspecified|Foreign body on external eye, part unspecified +C0161001|T037|AB|T15.9|ICD10CM|Foreign body on external eye, part unspecified|Foreign body on external eye, part unspecified +C0161001|T037|PT|T15.9|ICD10|Foreign body on external eye, part unspecified|Foreign body on external eye, part unspecified +C2869997|T037|AB|T15.90|ICD10CM|Foreign body on external eye, part unsp, unspecified eye|Foreign body on external eye, part unsp, unspecified eye +C2869997|T037|HT|T15.90|ICD10CM|Foreign body on external eye, part unspecified, unspecified eye|Foreign body on external eye, part unspecified, unspecified eye +C2869998|T037|AB|T15.90XA|ICD10CM|Foreign body on external eye, part unsp, unsp eye, init|Foreign body on external eye, part unsp, unsp eye, init +C2869998|T037|PT|T15.90XA|ICD10CM|Foreign body on external eye, part unspecified, unspecified eye, initial encounter|Foreign body on external eye, part unspecified, unspecified eye, initial encounter +C2869999|T037|AB|T15.90XD|ICD10CM|Foreign body on external eye, part unsp, unsp eye, subs|Foreign body on external eye, part unsp, unsp eye, subs +C2869999|T037|PT|T15.90XD|ICD10CM|Foreign body on external eye, part unspecified, unspecified eye, subsequent encounter|Foreign body on external eye, part unspecified, unspecified eye, subsequent encounter +C2870000|T037|AB|T15.90XS|ICD10CM|Foreign body on external eye, part unsp, unsp eye, sequela|Foreign body on external eye, part unsp, unsp eye, sequela +C2870000|T037|PT|T15.90XS|ICD10CM|Foreign body on external eye, part unspecified, unspecified eye, sequela|Foreign body on external eye, part unspecified, unspecified eye, sequela +C2870001|T037|AB|T15.91|ICD10CM|Foreign body on external eye, part unspecified, right eye|Foreign body on external eye, part unspecified, right eye +C2870001|T037|HT|T15.91|ICD10CM|Foreign body on external eye, part unspecified, right eye|Foreign body on external eye, part unspecified, right eye +C2870002|T037|AB|T15.91XA|ICD10CM|Foreign body on external eye, part unsp, right eye, init|Foreign body on external eye, part unsp, right eye, init +C2870002|T037|PT|T15.91XA|ICD10CM|Foreign body on external eye, part unspecified, right eye, initial encounter|Foreign body on external eye, part unspecified, right eye, initial encounter +C2870003|T037|AB|T15.91XD|ICD10CM|Foreign body on external eye, part unsp, right eye, subs|Foreign body on external eye, part unsp, right eye, subs +C2870003|T037|PT|T15.91XD|ICD10CM|Foreign body on external eye, part unspecified, right eye, subsequent encounter|Foreign body on external eye, part unspecified, right eye, subsequent encounter +C2870004|T037|AB|T15.91XS|ICD10CM|Foreign body on external eye, part unsp, right eye, sequela|Foreign body on external eye, part unsp, right eye, sequela +C2870004|T037|PT|T15.91XS|ICD10CM|Foreign body on external eye, part unspecified, right eye, sequela|Foreign body on external eye, part unspecified, right eye, sequela +C2870005|T037|AB|T15.92|ICD10CM|Foreign body on external eye, part unspecified, left eye|Foreign body on external eye, part unspecified, left eye +C2870005|T037|HT|T15.92|ICD10CM|Foreign body on external eye, part unspecified, left eye|Foreign body on external eye, part unspecified, left eye +C2870006|T037|AB|T15.92XA|ICD10CM|Foreign body on external eye, part unsp, left eye, init|Foreign body on external eye, part unsp, left eye, init +C2870006|T037|PT|T15.92XA|ICD10CM|Foreign body on external eye, part unspecified, left eye, initial encounter|Foreign body on external eye, part unspecified, left eye, initial encounter +C2870007|T037|AB|T15.92XD|ICD10CM|Foreign body on external eye, part unsp, left eye, subs|Foreign body on external eye, part unsp, left eye, subs +C2870007|T037|PT|T15.92XD|ICD10CM|Foreign body on external eye, part unspecified, left eye, subsequent encounter|Foreign body on external eye, part unspecified, left eye, subsequent encounter +C2870008|T037|AB|T15.92XS|ICD10CM|Foreign body on external eye, part unsp, left eye, sequela|Foreign body on external eye, part unsp, left eye, sequela +C2870008|T037|PT|T15.92XS|ICD10CM|Foreign body on external eye, part unspecified, left eye, sequela|Foreign body on external eye, part unspecified, left eye, sequela +C0161007|T037|ET|T16|ICD10CM|foreign body in auditory canal|foreign body in auditory canal +C0161007|T037|HT|T16|ICD10CM|Foreign body in ear|Foreign body in ear +C0161007|T037|AB|T16|ICD10CM|Foreign body in ear|Foreign body in ear +C0161007|T037|PT|T16|ICD10|Foreign body in ear|Foreign body in ear +C2103546|T037|HT|T16.1|ICD10CM|Foreign body in right ear|Foreign body in right ear +C2103546|T037|AB|T16.1|ICD10CM|Foreign body in right ear|Foreign body in right ear +C2870009|T037|AB|T16.1XXA|ICD10CM|Foreign body in right ear, initial encounter|Foreign body in right ear, initial encounter +C2870009|T037|PT|T16.1XXA|ICD10CM|Foreign body in right ear, initial encounter|Foreign body in right ear, initial encounter +C2870010|T037|AB|T16.1XXD|ICD10CM|Foreign body in right ear, subsequent encounter|Foreign body in right ear, subsequent encounter +C2870010|T037|PT|T16.1XXD|ICD10CM|Foreign body in right ear, subsequent encounter|Foreign body in right ear, subsequent encounter +C2870011|T037|AB|T16.1XXS|ICD10CM|Foreign body in right ear, sequela|Foreign body in right ear, sequela +C2870011|T037|PT|T16.1XXS|ICD10CM|Foreign body in right ear, sequela|Foreign body in right ear, sequela +C2103547|T033|HT|T16.2|ICD10CM|Foreign body in left ear|Foreign body in left ear +C2103547|T033|AB|T16.2|ICD10CM|Foreign body in left ear|Foreign body in left ear +C2870012|T037|AB|T16.2XXA|ICD10CM|Foreign body in left ear, initial encounter|Foreign body in left ear, initial encounter +C2870012|T037|PT|T16.2XXA|ICD10CM|Foreign body in left ear, initial encounter|Foreign body in left ear, initial encounter +C2870013|T037|AB|T16.2XXD|ICD10CM|Foreign body in left ear, subsequent encounter|Foreign body in left ear, subsequent encounter +C2870013|T037|PT|T16.2XXD|ICD10CM|Foreign body in left ear, subsequent encounter|Foreign body in left ear, subsequent encounter +C2870014|T037|AB|T16.2XXS|ICD10CM|Foreign body in left ear, sequela|Foreign body in left ear, sequela +C2870014|T037|PT|T16.2XXS|ICD10CM|Foreign body in left ear, sequela|Foreign body in left ear, sequela +C2870015|T037|AB|T16.9|ICD10CM|Foreign body in ear, unspecified ear|Foreign body in ear, unspecified ear +C2870015|T037|HT|T16.9|ICD10CM|Foreign body in ear, unspecified ear|Foreign body in ear, unspecified ear +C2870016|T037|AB|T16.9XXA|ICD10CM|Foreign body in ear, unspecified ear, initial encounter|Foreign body in ear, unspecified ear, initial encounter +C2870016|T037|PT|T16.9XXA|ICD10CM|Foreign body in ear, unspecified ear, initial encounter|Foreign body in ear, unspecified ear, initial encounter +C2870017|T037|AB|T16.9XXD|ICD10CM|Foreign body in ear, unspecified ear, subsequent encounter|Foreign body in ear, unspecified ear, subsequent encounter +C2870017|T037|PT|T16.9XXD|ICD10CM|Foreign body in ear, unspecified ear, subsequent encounter|Foreign body in ear, unspecified ear, subsequent encounter +C2870018|T037|AB|T16.9XXS|ICD10CM|Foreign body in ear, unspecified ear, sequela|Foreign body in ear, unspecified ear, sequela +C2870018|T037|PT|T16.9XXS|ICD10CM|Foreign body in ear, unspecified ear, sequela|Foreign body in ear, unspecified ear, sequela +C0433654|T037|HT|T17|ICD10CM|Foreign body in respiratory tract|Foreign body in respiratory tract +C0433654|T037|AB|T17|ICD10CM|Foreign body in respiratory tract|Foreign body in respiratory tract +C0433654|T037|HT|T17|ICD10|Foreign body in respiratory tract|Foreign body in respiratory tract +C0274246|T037|PT|T17.0|ICD10|Foreign body in nasal sinus|Foreign body in nasal sinus +C0274246|T037|HT|T17.0|ICD10CM|Foreign body in nasal sinus|Foreign body in nasal sinus +C0274246|T037|AB|T17.0|ICD10CM|Foreign body in nasal sinus|Foreign body in nasal sinus +C2870019|T037|AB|T17.0XXA|ICD10CM|Foreign body in nasal sinus, initial encounter|Foreign body in nasal sinus, initial encounter +C2870019|T037|PT|T17.0XXA|ICD10CM|Foreign body in nasal sinus, initial encounter|Foreign body in nasal sinus, initial encounter +C2870020|T037|AB|T17.0XXD|ICD10CM|Foreign body in nasal sinus, subsequent encounter|Foreign body in nasal sinus, subsequent encounter +C2870020|T037|PT|T17.0XXD|ICD10CM|Foreign body in nasal sinus, subsequent encounter|Foreign body in nasal sinus, subsequent encounter +C2870021|T037|AB|T17.0XXS|ICD10CM|Foreign body in nasal sinus, sequela|Foreign body in nasal sinus, sequela +C2870021|T037|PT|T17.0XXS|ICD10CM|Foreign body in nasal sinus, sequela|Foreign body in nasal sinus, sequela +C0161008|T033|ET|T17.1|ICD10CM|Foreign body in nose NOS|Foreign body in nose NOS +C0274245|T037|HT|T17.1|ICD10CM|Foreign body in nostril|Foreign body in nostril +C0274245|T037|AB|T17.1|ICD10CM|Foreign body in nostril|Foreign body in nostril +C0274245|T037|PT|T17.1|ICD10|Foreign body in nostril|Foreign body in nostril +C2870022|T037|AB|T17.1XXA|ICD10CM|Foreign body in nostril, initial encounter|Foreign body in nostril, initial encounter +C2870022|T037|PT|T17.1XXA|ICD10CM|Foreign body in nostril, initial encounter|Foreign body in nostril, initial encounter +C2870023|T037|AB|T17.1XXD|ICD10CM|Foreign body in nostril, subsequent encounter|Foreign body in nostril, subsequent encounter +C2870023|T037|PT|T17.1XXD|ICD10CM|Foreign body in nostril, subsequent encounter|Foreign body in nostril, subsequent encounter +C2870024|T037|AB|T17.1XXS|ICD10CM|Foreign body in nostril, sequela|Foreign body in nostril, sequela +C2870024|T037|PT|T17.1XXS|ICD10CM|Foreign body in nostril, sequela|Foreign body in nostril, sequela +C0274248|T033|ET|T17.2|ICD10CM|Foreign body in nasopharynx|Foreign body in nasopharynx +C0161010|T037|PT|T17.2|ICD10|Foreign body in pharynx|Foreign body in pharynx +C0161010|T037|HT|T17.2|ICD10CM|Foreign body in pharynx|Foreign body in pharynx +C0161010|T037|AB|T17.2|ICD10CM|Foreign body in pharynx|Foreign body in pharynx +C0161010|T037|ET|T17.2|ICD10CM|Foreign body in throat NOS|Foreign body in throat NOS +C2870025|T037|AB|T17.20|ICD10CM|Unspecified foreign body in pharynx|Unspecified foreign body in pharynx +C2870025|T037|HT|T17.20|ICD10CM|Unspecified foreign body in pharynx|Unspecified foreign body in pharynx +C2870026|T037|AB|T17.200|ICD10CM|Unspecified foreign body in pharynx causing asphyxiation|Unspecified foreign body in pharynx causing asphyxiation +C2870026|T037|HT|T17.200|ICD10CM|Unspecified foreign body in pharynx causing asphyxiation|Unspecified foreign body in pharynx causing asphyxiation +C2870027|T037|AB|T17.200A|ICD10CM|Unsp foreign body in pharynx causing asphyxiation, init|Unsp foreign body in pharynx causing asphyxiation, init +C2870027|T037|PT|T17.200A|ICD10CM|Unspecified foreign body in pharynx causing asphyxiation, initial encounter|Unspecified foreign body in pharynx causing asphyxiation, initial encounter +C2870028|T037|AB|T17.200D|ICD10CM|Unsp foreign body in pharynx causing asphyxiation, subs|Unsp foreign body in pharynx causing asphyxiation, subs +C2870028|T037|PT|T17.200D|ICD10CM|Unspecified foreign body in pharynx causing asphyxiation, subsequent encounter|Unspecified foreign body in pharynx causing asphyxiation, subsequent encounter +C2870029|T037|AB|T17.200S|ICD10CM|Unsp foreign body in pharynx causing asphyxiation, sequela|Unsp foreign body in pharynx causing asphyxiation, sequela +C2870029|T037|PT|T17.200S|ICD10CM|Unspecified foreign body in pharynx causing asphyxiation, sequela|Unspecified foreign body in pharynx causing asphyxiation, sequela +C2870030|T037|AB|T17.208|ICD10CM|Unspecified foreign body in pharynx causing other injury|Unspecified foreign body in pharynx causing other injury +C2870030|T037|HT|T17.208|ICD10CM|Unspecified foreign body in pharynx causing other injury|Unspecified foreign body in pharynx causing other injury +C2870031|T037|AB|T17.208A|ICD10CM|Unsp foreign body in pharynx causing oth injury, init encntr|Unsp foreign body in pharynx causing oth injury, init encntr +C2870031|T037|PT|T17.208A|ICD10CM|Unspecified foreign body in pharynx causing other injury, initial encounter|Unspecified foreign body in pharynx causing other injury, initial encounter +C2870032|T037|AB|T17.208D|ICD10CM|Unsp foreign body in pharynx causing oth injury, subs encntr|Unsp foreign body in pharynx causing oth injury, subs encntr +C2870032|T037|PT|T17.208D|ICD10CM|Unspecified foreign body in pharynx causing other injury, subsequent encounter|Unspecified foreign body in pharynx causing other injury, subsequent encounter +C2870033|T037|AB|T17.208S|ICD10CM|Unsp foreign body in pharynx causing other injury, sequela|Unsp foreign body in pharynx causing other injury, sequela +C2870033|T037|PT|T17.208S|ICD10CM|Unspecified foreign body in pharynx causing other injury, sequela|Unspecified foreign body in pharynx causing other injury, sequela +C2870034|T037|ET|T17.21|ICD10CM|Aspiration of gastric contents into pharynx|Aspiration of gastric contents into pharynx +C2870036|T037|AB|T17.21|ICD10CM|Gastric contents in pharynx|Gastric contents in pharynx +C2870036|T037|HT|T17.21|ICD10CM|Gastric contents in pharynx|Gastric contents in pharynx +C2870035|T037|ET|T17.21|ICD10CM|Vomitus in pharynx|Vomitus in pharynx +C2870037|T037|AB|T17.210|ICD10CM|Gastric contents in pharynx causing asphyxiation|Gastric contents in pharynx causing asphyxiation +C2870037|T037|HT|T17.210|ICD10CM|Gastric contents in pharynx causing asphyxiation|Gastric contents in pharynx causing asphyxiation +C2870038|T037|AB|T17.210A|ICD10CM|Gastric contents in pharynx causing asphyxiation, init|Gastric contents in pharynx causing asphyxiation, init +C2870038|T037|PT|T17.210A|ICD10CM|Gastric contents in pharynx causing asphyxiation, initial encounter|Gastric contents in pharynx causing asphyxiation, initial encounter +C2870039|T037|AB|T17.210D|ICD10CM|Gastric contents in pharynx causing asphyxiation, subs|Gastric contents in pharynx causing asphyxiation, subs +C2870039|T037|PT|T17.210D|ICD10CM|Gastric contents in pharynx causing asphyxiation, subsequent encounter|Gastric contents in pharynx causing asphyxiation, subsequent encounter +C2870040|T037|AB|T17.210S|ICD10CM|Gastric contents in pharynx causing asphyxiation, sequela|Gastric contents in pharynx causing asphyxiation, sequela +C2870040|T037|PT|T17.210S|ICD10CM|Gastric contents in pharynx causing asphyxiation, sequela|Gastric contents in pharynx causing asphyxiation, sequela +C2870041|T037|AB|T17.218|ICD10CM|Gastric contents in pharynx causing other injury|Gastric contents in pharynx causing other injury +C2870041|T037|HT|T17.218|ICD10CM|Gastric contents in pharynx causing other injury|Gastric contents in pharynx causing other injury +C2870042|T037|AB|T17.218A|ICD10CM|Gastric contents in pharynx causing oth injury, init encntr|Gastric contents in pharynx causing oth injury, init encntr +C2870042|T037|PT|T17.218A|ICD10CM|Gastric contents in pharynx causing other injury, initial encounter|Gastric contents in pharynx causing other injury, initial encounter +C2870043|T037|AB|T17.218D|ICD10CM|Gastric contents in pharynx causing oth injury, subs encntr|Gastric contents in pharynx causing oth injury, subs encntr +C2870043|T037|PT|T17.218D|ICD10CM|Gastric contents in pharynx causing other injury, subsequent encounter|Gastric contents in pharynx causing other injury, subsequent encounter +C2870044|T037|AB|T17.218S|ICD10CM|Gastric contents in pharynx causing other injury, sequela|Gastric contents in pharynx causing other injury, sequela +C2870044|T037|PT|T17.218S|ICD10CM|Gastric contents in pharynx causing other injury, sequela|Gastric contents in pharynx causing other injury, sequela +C0563233|T037|ET|T17.22|ICD10CM|Bones in pharynx|Bones in pharynx +C2870046|T037|AB|T17.22|ICD10CM|Food in pharynx|Food in pharynx +C2870046|T037|HT|T17.22|ICD10CM|Food in pharynx|Food in pharynx +C2870045|T037|ET|T17.22|ICD10CM|Seeds in pharynx|Seeds in pharynx +C3508685|T037|HT|T17.220|ICD10CM|Food in pharynx causing asphyxiation|Food in pharynx causing asphyxiation +C3508685|T037|AB|T17.220|ICD10CM|Food in pharynx causing asphyxiation|Food in pharynx causing asphyxiation +C2870048|T037|AB|T17.220A|ICD10CM|Food in pharynx causing asphyxiation, initial encounter|Food in pharynx causing asphyxiation, initial encounter +C2870048|T037|PT|T17.220A|ICD10CM|Food in pharynx causing asphyxiation, initial encounter|Food in pharynx causing asphyxiation, initial encounter +C2870049|T037|AB|T17.220D|ICD10CM|Food in pharynx causing asphyxiation, subsequent encounter|Food in pharynx causing asphyxiation, subsequent encounter +C2870049|T037|PT|T17.220D|ICD10CM|Food in pharynx causing asphyxiation, subsequent encounter|Food in pharynx causing asphyxiation, subsequent encounter +C2870050|T037|AB|T17.220S|ICD10CM|Food in pharynx causing asphyxiation, sequela|Food in pharynx causing asphyxiation, sequela +C2870050|T037|PT|T17.220S|ICD10CM|Food in pharynx causing asphyxiation, sequela|Food in pharynx causing asphyxiation, sequela +C2870051|T037|AB|T17.228|ICD10CM|Food in pharynx causing other injury|Food in pharynx causing other injury +C2870051|T037|HT|T17.228|ICD10CM|Food in pharynx causing other injury|Food in pharynx causing other injury +C2870052|T037|AB|T17.228A|ICD10CM|Food in pharynx causing other injury, initial encounter|Food in pharynx causing other injury, initial encounter +C2870052|T037|PT|T17.228A|ICD10CM|Food in pharynx causing other injury, initial encounter|Food in pharynx causing other injury, initial encounter +C2870053|T037|AB|T17.228D|ICD10CM|Food in pharynx causing other injury, subsequent encounter|Food in pharynx causing other injury, subsequent encounter +C2870053|T037|PT|T17.228D|ICD10CM|Food in pharynx causing other injury, subsequent encounter|Food in pharynx causing other injury, subsequent encounter +C2870054|T037|AB|T17.228S|ICD10CM|Food in pharynx causing other injury, sequela|Food in pharynx causing other injury, sequela +C2870054|T037|PT|T17.228S|ICD10CM|Food in pharynx causing other injury, sequela|Food in pharynx causing other injury, sequela +C2870055|T037|AB|T17.29|ICD10CM|Other foreign object in pharynx|Other foreign object in pharynx +C2870055|T037|HT|T17.29|ICD10CM|Other foreign object in pharynx|Other foreign object in pharynx +C2870056|T037|AB|T17.290|ICD10CM|Other foreign object in pharynx causing asphyxiation|Other foreign object in pharynx causing asphyxiation +C2870056|T037|HT|T17.290|ICD10CM|Other foreign object in pharynx causing asphyxiation|Other foreign object in pharynx causing asphyxiation +C2870057|T037|AB|T17.290A|ICD10CM|Oth foreign object in pharynx causing asphyxiation, init|Oth foreign object in pharynx causing asphyxiation, init +C2870057|T037|PT|T17.290A|ICD10CM|Other foreign object in pharynx causing asphyxiation, initial encounter|Other foreign object in pharynx causing asphyxiation, initial encounter +C2870058|T037|AB|T17.290D|ICD10CM|Oth foreign object in pharynx causing asphyxiation, subs|Oth foreign object in pharynx causing asphyxiation, subs +C2870058|T037|PT|T17.290D|ICD10CM|Other foreign object in pharynx causing asphyxiation, subsequent encounter|Other foreign object in pharynx causing asphyxiation, subsequent encounter +C2870059|T037|AB|T17.290S|ICD10CM|Oth foreign object in pharynx causing asphyxiation, sequela|Oth foreign object in pharynx causing asphyxiation, sequela +C2870059|T037|PT|T17.290S|ICD10CM|Other foreign object in pharynx causing asphyxiation, sequela|Other foreign object in pharynx causing asphyxiation, sequela +C2870060|T037|AB|T17.298|ICD10CM|Other foreign object in pharynx causing other injury|Other foreign object in pharynx causing other injury +C2870060|T037|HT|T17.298|ICD10CM|Other foreign object in pharynx causing other injury|Other foreign object in pharynx causing other injury +C2870061|T037|AB|T17.298A|ICD10CM|Oth foreign object in pharynx causing oth injury, init|Oth foreign object in pharynx causing oth injury, init +C2870061|T037|PT|T17.298A|ICD10CM|Other foreign object in pharynx causing other injury, initial encounter|Other foreign object in pharynx causing other injury, initial encounter +C2870062|T037|AB|T17.298D|ICD10CM|Oth foreign object in pharynx causing oth injury, subs|Oth foreign object in pharynx causing oth injury, subs +C2870062|T037|PT|T17.298D|ICD10CM|Other foreign object in pharynx causing other injury, subsequent encounter|Other foreign object in pharynx causing other injury, subsequent encounter +C2870063|T037|AB|T17.298S|ICD10CM|Oth foreign object in pharynx causing other injury, sequela|Oth foreign object in pharynx causing other injury, sequela +C2870063|T037|PT|T17.298S|ICD10CM|Other foreign object in pharynx causing other injury, sequela|Other foreign object in pharynx causing other injury, sequela +C0161011|T037|HT|T17.3|ICD10CM|Foreign body in larynx|Foreign body in larynx +C0161011|T037|AB|T17.3|ICD10CM|Foreign body in larynx|Foreign body in larynx +C0161011|T037|PT|T17.3|ICD10|Foreign body in larynx|Foreign body in larynx +C2870064|T037|AB|T17.30|ICD10CM|Unspecified foreign body in larynx|Unspecified foreign body in larynx +C2870064|T037|HT|T17.30|ICD10CM|Unspecified foreign body in larynx|Unspecified foreign body in larynx +C2870065|T037|AB|T17.300|ICD10CM|Unspecified foreign body in larynx causing asphyxiation|Unspecified foreign body in larynx causing asphyxiation +C2870065|T037|HT|T17.300|ICD10CM|Unspecified foreign body in larynx causing asphyxiation|Unspecified foreign body in larynx causing asphyxiation +C2870066|T037|AB|T17.300A|ICD10CM|Unsp foreign body in larynx causing asphyxiation, init|Unsp foreign body in larynx causing asphyxiation, init +C2870066|T037|PT|T17.300A|ICD10CM|Unspecified foreign body in larynx causing asphyxiation, initial encounter|Unspecified foreign body in larynx causing asphyxiation, initial encounter +C2870067|T037|AB|T17.300D|ICD10CM|Unsp foreign body in larynx causing asphyxiation, subs|Unsp foreign body in larynx causing asphyxiation, subs +C2870067|T037|PT|T17.300D|ICD10CM|Unspecified foreign body in larynx causing asphyxiation, subsequent encounter|Unspecified foreign body in larynx causing asphyxiation, subsequent encounter +C2870068|T037|AB|T17.300S|ICD10CM|Unsp foreign body in larynx causing asphyxiation, sequela|Unsp foreign body in larynx causing asphyxiation, sequela +C2870068|T037|PT|T17.300S|ICD10CM|Unspecified foreign body in larynx causing asphyxiation, sequela|Unspecified foreign body in larynx causing asphyxiation, sequela +C2870069|T037|AB|T17.308|ICD10CM|Unspecified foreign body in larynx causing other injury|Unspecified foreign body in larynx causing other injury +C2870069|T037|HT|T17.308|ICD10CM|Unspecified foreign body in larynx causing other injury|Unspecified foreign body in larynx causing other injury +C2870070|T037|AB|T17.308A|ICD10CM|Unsp foreign body in larynx causing oth injury, init encntr|Unsp foreign body in larynx causing oth injury, init encntr +C2870070|T037|PT|T17.308A|ICD10CM|Unspecified foreign body in larynx causing other injury, initial encounter|Unspecified foreign body in larynx causing other injury, initial encounter +C2870071|T037|AB|T17.308D|ICD10CM|Unsp foreign body in larynx causing oth injury, subs encntr|Unsp foreign body in larynx causing oth injury, subs encntr +C2870071|T037|PT|T17.308D|ICD10CM|Unspecified foreign body in larynx causing other injury, subsequent encounter|Unspecified foreign body in larynx causing other injury, subsequent encounter +C2870072|T037|AB|T17.308S|ICD10CM|Unsp foreign body in larynx causing other injury, sequela|Unsp foreign body in larynx causing other injury, sequela +C2870072|T037|PT|T17.308S|ICD10CM|Unspecified foreign body in larynx causing other injury, sequela|Unspecified foreign body in larynx causing other injury, sequela +C2870073|T037|ET|T17.31|ICD10CM|Aspiration of gastric contents into larynx|Aspiration of gastric contents into larynx +C2870075|T037|AB|T17.31|ICD10CM|Gastric contents in larynx|Gastric contents in larynx +C2870075|T037|HT|T17.31|ICD10CM|Gastric contents in larynx|Gastric contents in larynx +C2870074|T037|ET|T17.31|ICD10CM|Vomitus in larynx|Vomitus in larynx +C2870076|T037|AB|T17.310|ICD10CM|Gastric contents in larynx causing asphyxiation|Gastric contents in larynx causing asphyxiation +C2870076|T037|HT|T17.310|ICD10CM|Gastric contents in larynx causing asphyxiation|Gastric contents in larynx causing asphyxiation +C2870077|T037|AB|T17.310A|ICD10CM|Gastric contents in larynx causing asphyxiation, init encntr|Gastric contents in larynx causing asphyxiation, init encntr +C2870077|T037|PT|T17.310A|ICD10CM|Gastric contents in larynx causing asphyxiation, initial encounter|Gastric contents in larynx causing asphyxiation, initial encounter +C2870078|T037|AB|T17.310D|ICD10CM|Gastric contents in larynx causing asphyxiation, subs encntr|Gastric contents in larynx causing asphyxiation, subs encntr +C2870078|T037|PT|T17.310D|ICD10CM|Gastric contents in larynx causing asphyxiation, subsequent encounter|Gastric contents in larynx causing asphyxiation, subsequent encounter +C2870079|T037|AB|T17.310S|ICD10CM|Gastric contents in larynx causing asphyxiation, sequela|Gastric contents in larynx causing asphyxiation, sequela +C2870079|T037|PT|T17.310S|ICD10CM|Gastric contents in larynx causing asphyxiation, sequela|Gastric contents in larynx causing asphyxiation, sequela +C2870080|T037|AB|T17.318|ICD10CM|Gastric contents in larynx causing other injury|Gastric contents in larynx causing other injury +C2870080|T037|HT|T17.318|ICD10CM|Gastric contents in larynx causing other injury|Gastric contents in larynx causing other injury +C2870081|T037|AB|T17.318A|ICD10CM|Gastric contents in larynx causing other injury, init encntr|Gastric contents in larynx causing other injury, init encntr +C2870081|T037|PT|T17.318A|ICD10CM|Gastric contents in larynx causing other injury, initial encounter|Gastric contents in larynx causing other injury, initial encounter +C2870082|T037|AB|T17.318D|ICD10CM|Gastric contents in larynx causing other injury, subs encntr|Gastric contents in larynx causing other injury, subs encntr +C2870082|T037|PT|T17.318D|ICD10CM|Gastric contents in larynx causing other injury, subsequent encounter|Gastric contents in larynx causing other injury, subsequent encounter +C2870083|T037|AB|T17.318S|ICD10CM|Gastric contents in larynx causing other injury, sequela|Gastric contents in larynx causing other injury, sequela +C2870083|T037|PT|T17.318S|ICD10CM|Gastric contents in larynx causing other injury, sequela|Gastric contents in larynx causing other injury, sequela +C4270111|T037|ET|T17.32|ICD10CM|Bones in larynx|Bones in larynx +C3508691|T037|HT|T17.32|ICD10CM|Food in larynx|Food in larynx +C3508691|T037|AB|T17.32|ICD10CM|Food in larynx|Food in larynx +C2870084|T037|ET|T17.32|ICD10CM|Seeds in larynx|Seeds in larynx +C3508692|T037|HT|T17.320|ICD10CM|Food in larynx causing asphyxiation|Food in larynx causing asphyxiation +C3508692|T037|AB|T17.320|ICD10CM|Food in larynx causing asphyxiation|Food in larynx causing asphyxiation +C2870088|T037|AB|T17.320A|ICD10CM|Food in larynx causing asphyxiation, initial encounter|Food in larynx causing asphyxiation, initial encounter +C2870088|T037|PT|T17.320A|ICD10CM|Food in larynx causing asphyxiation, initial encounter|Food in larynx causing asphyxiation, initial encounter +C2870089|T037|AB|T17.320D|ICD10CM|Food in larynx causing asphyxiation, subsequent encounter|Food in larynx causing asphyxiation, subsequent encounter +C2870089|T037|PT|T17.320D|ICD10CM|Food in larynx causing asphyxiation, subsequent encounter|Food in larynx causing asphyxiation, subsequent encounter +C2870090|T037|AB|T17.320S|ICD10CM|Food in larynx causing asphyxiation, sequela|Food in larynx causing asphyxiation, sequela +C2870090|T037|PT|T17.320S|ICD10CM|Food in larynx causing asphyxiation, sequela|Food in larynx causing asphyxiation, sequela +C2870091|T037|AB|T17.328|ICD10CM|Food in larynx causing other injury|Food in larynx causing other injury +C2870091|T037|HT|T17.328|ICD10CM|Food in larynx causing other injury|Food in larynx causing other injury +C2870092|T037|AB|T17.328A|ICD10CM|Food in larynx causing other injury, initial encounter|Food in larynx causing other injury, initial encounter +C2870092|T037|PT|T17.328A|ICD10CM|Food in larynx causing other injury, initial encounter|Food in larynx causing other injury, initial encounter +C2870093|T037|AB|T17.328D|ICD10CM|Food in larynx causing other injury, subsequent encounter|Food in larynx causing other injury, subsequent encounter +C2870093|T037|PT|T17.328D|ICD10CM|Food in larynx causing other injury, subsequent encounter|Food in larynx causing other injury, subsequent encounter +C2870094|T037|AB|T17.328S|ICD10CM|Food in larynx causing other injury, sequela|Food in larynx causing other injury, sequela +C2870094|T037|PT|T17.328S|ICD10CM|Food in larynx causing other injury, sequela|Food in larynx causing other injury, sequela +C2870095|T037|AB|T17.39|ICD10CM|Other foreign object in larynx|Other foreign object in larynx +C2870095|T037|HT|T17.39|ICD10CM|Other foreign object in larynx|Other foreign object in larynx +C2870096|T037|AB|T17.390|ICD10CM|Other foreign object in larynx causing asphyxiation|Other foreign object in larynx causing asphyxiation +C2870096|T037|HT|T17.390|ICD10CM|Other foreign object in larynx causing asphyxiation|Other foreign object in larynx causing asphyxiation +C2870097|T037|AB|T17.390A|ICD10CM|Oth foreign object in larynx causing asphyxiation, init|Oth foreign object in larynx causing asphyxiation, init +C2870097|T037|PT|T17.390A|ICD10CM|Other foreign object in larynx causing asphyxiation, initial encounter|Other foreign object in larynx causing asphyxiation, initial encounter +C2870098|T037|AB|T17.390D|ICD10CM|Oth foreign object in larynx causing asphyxiation, subs|Oth foreign object in larynx causing asphyxiation, subs +C2870098|T037|PT|T17.390D|ICD10CM|Other foreign object in larynx causing asphyxiation, subsequent encounter|Other foreign object in larynx causing asphyxiation, subsequent encounter +C2870099|T037|AB|T17.390S|ICD10CM|Other foreign object in larynx causing asphyxiation, sequela|Other foreign object in larynx causing asphyxiation, sequela +C2870099|T037|PT|T17.390S|ICD10CM|Other foreign object in larynx causing asphyxiation, sequela|Other foreign object in larynx causing asphyxiation, sequela +C2870100|T037|AB|T17.398|ICD10CM|Other foreign object in larynx causing other injury|Other foreign object in larynx causing other injury +C2870100|T037|HT|T17.398|ICD10CM|Other foreign object in larynx causing other injury|Other foreign object in larynx causing other injury +C2870101|T037|AB|T17.398A|ICD10CM|Oth foreign object in larynx causing oth injury, init encntr|Oth foreign object in larynx causing oth injury, init encntr +C2870101|T037|PT|T17.398A|ICD10CM|Other foreign object in larynx causing other injury, initial encounter|Other foreign object in larynx causing other injury, initial encounter +C2870102|T037|AB|T17.398D|ICD10CM|Oth foreign object in larynx causing oth injury, subs encntr|Oth foreign object in larynx causing oth injury, subs encntr +C2870102|T037|PT|T17.398D|ICD10CM|Other foreign object in larynx causing other injury, subsequent encounter|Other foreign object in larynx causing other injury, subsequent encounter +C2870103|T037|AB|T17.398S|ICD10CM|Other foreign object in larynx causing other injury, sequela|Other foreign object in larynx causing other injury, sequela +C2870103|T037|PT|T17.398S|ICD10CM|Other foreign object in larynx causing other injury, sequela|Other foreign object in larynx causing other injury, sequela +C0161013|T037|PT|T17.4|ICD10|Foreign body in trachea|Foreign body in trachea +C0161013|T037|HT|T17.4|ICD10CM|Foreign body in trachea|Foreign body in trachea +C0161013|T037|AB|T17.4|ICD10CM|Foreign body in trachea|Foreign body in trachea +C2870104|T037|AB|T17.40|ICD10CM|Unspecified foreign body in trachea|Unspecified foreign body in trachea +C2870104|T037|HT|T17.40|ICD10CM|Unspecified foreign body in trachea|Unspecified foreign body in trachea +C2870105|T037|AB|T17.400|ICD10CM|Unspecified foreign body in trachea causing asphyxiation|Unspecified foreign body in trachea causing asphyxiation +C2870105|T037|HT|T17.400|ICD10CM|Unspecified foreign body in trachea causing asphyxiation|Unspecified foreign body in trachea causing asphyxiation +C2870106|T037|AB|T17.400A|ICD10CM|Unsp foreign body in trachea causing asphyxiation, init|Unsp foreign body in trachea causing asphyxiation, init +C2870106|T037|PT|T17.400A|ICD10CM|Unspecified foreign body in trachea causing asphyxiation, initial encounter|Unspecified foreign body in trachea causing asphyxiation, initial encounter +C2870107|T037|AB|T17.400D|ICD10CM|Unsp foreign body in trachea causing asphyxiation, subs|Unsp foreign body in trachea causing asphyxiation, subs +C2870107|T037|PT|T17.400D|ICD10CM|Unspecified foreign body in trachea causing asphyxiation, subsequent encounter|Unspecified foreign body in trachea causing asphyxiation, subsequent encounter +C2870108|T037|AB|T17.400S|ICD10CM|Unsp foreign body in trachea causing asphyxiation, sequela|Unsp foreign body in trachea causing asphyxiation, sequela +C2870108|T037|PT|T17.400S|ICD10CM|Unspecified foreign body in trachea causing asphyxiation, sequela|Unspecified foreign body in trachea causing asphyxiation, sequela +C2870109|T037|AB|T17.408|ICD10CM|Unspecified foreign body in trachea causing other injury|Unspecified foreign body in trachea causing other injury +C2870109|T037|HT|T17.408|ICD10CM|Unspecified foreign body in trachea causing other injury|Unspecified foreign body in trachea causing other injury +C2870110|T037|AB|T17.408A|ICD10CM|Unsp foreign body in trachea causing oth injury, init encntr|Unsp foreign body in trachea causing oth injury, init encntr +C2870110|T037|PT|T17.408A|ICD10CM|Unspecified foreign body in trachea causing other injury, initial encounter|Unspecified foreign body in trachea causing other injury, initial encounter +C2870111|T037|AB|T17.408D|ICD10CM|Unsp foreign body in trachea causing oth injury, subs encntr|Unsp foreign body in trachea causing oth injury, subs encntr +C2870111|T037|PT|T17.408D|ICD10CM|Unspecified foreign body in trachea causing other injury, subsequent encounter|Unspecified foreign body in trachea causing other injury, subsequent encounter +C2870112|T037|AB|T17.408S|ICD10CM|Unsp foreign body in trachea causing other injury, sequela|Unsp foreign body in trachea causing other injury, sequela +C2870112|T037|PT|T17.408S|ICD10CM|Unspecified foreign body in trachea causing other injury, sequela|Unspecified foreign body in trachea causing other injury, sequela +C2870113|T037|ET|T17.41|ICD10CM|Aspiration of gastric contents into trachea|Aspiration of gastric contents into trachea +C2870115|T037|AB|T17.41|ICD10CM|Gastric contents in trachea|Gastric contents in trachea +C2870115|T037|HT|T17.41|ICD10CM|Gastric contents in trachea|Gastric contents in trachea +C2870114|T037|ET|T17.41|ICD10CM|Vomitus in trachea|Vomitus in trachea +C2870116|T037|AB|T17.410|ICD10CM|Gastric contents in trachea causing asphyxiation|Gastric contents in trachea causing asphyxiation +C2870116|T037|HT|T17.410|ICD10CM|Gastric contents in trachea causing asphyxiation|Gastric contents in trachea causing asphyxiation +C2870117|T037|AB|T17.410A|ICD10CM|Gastric contents in trachea causing asphyxiation, init|Gastric contents in trachea causing asphyxiation, init +C2870117|T037|PT|T17.410A|ICD10CM|Gastric contents in trachea causing asphyxiation, initial encounter|Gastric contents in trachea causing asphyxiation, initial encounter +C2870118|T037|AB|T17.410D|ICD10CM|Gastric contents in trachea causing asphyxiation, subs|Gastric contents in trachea causing asphyxiation, subs +C2870118|T037|PT|T17.410D|ICD10CM|Gastric contents in trachea causing asphyxiation, subsequent encounter|Gastric contents in trachea causing asphyxiation, subsequent encounter +C2870119|T037|AB|T17.410S|ICD10CM|Gastric contents in trachea causing asphyxiation, sequela|Gastric contents in trachea causing asphyxiation, sequela +C2870119|T037|PT|T17.410S|ICD10CM|Gastric contents in trachea causing asphyxiation, sequela|Gastric contents in trachea causing asphyxiation, sequela +C2870120|T037|AB|T17.418|ICD10CM|Gastric contents in trachea causing other injury|Gastric contents in trachea causing other injury +C2870120|T037|HT|T17.418|ICD10CM|Gastric contents in trachea causing other injury|Gastric contents in trachea causing other injury +C2870121|T037|AB|T17.418A|ICD10CM|Gastric contents in trachea causing oth injury, init encntr|Gastric contents in trachea causing oth injury, init encntr +C2870121|T037|PT|T17.418A|ICD10CM|Gastric contents in trachea causing other injury, initial encounter|Gastric contents in trachea causing other injury, initial encounter +C2870122|T037|AB|T17.418D|ICD10CM|Gastric contents in trachea causing oth injury, subs encntr|Gastric contents in trachea causing oth injury, subs encntr +C2870122|T037|PT|T17.418D|ICD10CM|Gastric contents in trachea causing other injury, subsequent encounter|Gastric contents in trachea causing other injury, subsequent encounter +C2870123|T037|AB|T17.418S|ICD10CM|Gastric contents in trachea causing other injury, sequela|Gastric contents in trachea causing other injury, sequela +C2870123|T037|PT|T17.418S|ICD10CM|Gastric contents in trachea causing other injury, sequela|Gastric contents in trachea causing other injury, sequela +C2870124|T037|ET|T17.42|ICD10CM|Bones in trachea|Bones in trachea +C2870126|T037|AB|T17.42|ICD10CM|Food in trachea|Food in trachea +C2870126|T037|HT|T17.42|ICD10CM|Food in trachea|Food in trachea +C2870125|T037|ET|T17.42|ICD10CM|Seeds in trachea|Seeds in trachea +C2870127|T037|AB|T17.420|ICD10CM|Food in trachea causing asphyxiation|Food in trachea causing asphyxiation +C2870127|T037|HT|T17.420|ICD10CM|Food in trachea causing asphyxiation|Food in trachea causing asphyxiation +C2870128|T037|AB|T17.420A|ICD10CM|Food in trachea causing asphyxiation, initial encounter|Food in trachea causing asphyxiation, initial encounter +C2870128|T037|PT|T17.420A|ICD10CM|Food in trachea causing asphyxiation, initial encounter|Food in trachea causing asphyxiation, initial encounter +C2870129|T037|AB|T17.420D|ICD10CM|Food in trachea causing asphyxiation, subsequent encounter|Food in trachea causing asphyxiation, subsequent encounter +C2870129|T037|PT|T17.420D|ICD10CM|Food in trachea causing asphyxiation, subsequent encounter|Food in trachea causing asphyxiation, subsequent encounter +C2870130|T037|AB|T17.420S|ICD10CM|Food in trachea causing asphyxiation, sequela|Food in trachea causing asphyxiation, sequela +C2870130|T037|PT|T17.420S|ICD10CM|Food in trachea causing asphyxiation, sequela|Food in trachea causing asphyxiation, sequela +C2870131|T037|AB|T17.428|ICD10CM|Food in trachea causing other injury|Food in trachea causing other injury +C2870131|T037|HT|T17.428|ICD10CM|Food in trachea causing other injury|Food in trachea causing other injury +C2870132|T037|AB|T17.428A|ICD10CM|Food in trachea causing other injury, initial encounter|Food in trachea causing other injury, initial encounter +C2870132|T037|PT|T17.428A|ICD10CM|Food in trachea causing other injury, initial encounter|Food in trachea causing other injury, initial encounter +C2870133|T037|AB|T17.428D|ICD10CM|Food in trachea causing other injury, subsequent encounter|Food in trachea causing other injury, subsequent encounter +C2870133|T037|PT|T17.428D|ICD10CM|Food in trachea causing other injury, subsequent encounter|Food in trachea causing other injury, subsequent encounter +C2870134|T037|AB|T17.428S|ICD10CM|Food in trachea causing other injury, sequela|Food in trachea causing other injury, sequela +C2870134|T037|PT|T17.428S|ICD10CM|Food in trachea causing other injury, sequela|Food in trachea causing other injury, sequela +C2870135|T037|AB|T17.49|ICD10CM|Other foreign object in trachea|Other foreign object in trachea +C2870135|T037|HT|T17.49|ICD10CM|Other foreign object in trachea|Other foreign object in trachea +C2870136|T037|AB|T17.490|ICD10CM|Other foreign object in trachea causing asphyxiation|Other foreign object in trachea causing asphyxiation +C2870136|T037|HT|T17.490|ICD10CM|Other foreign object in trachea causing asphyxiation|Other foreign object in trachea causing asphyxiation +C2870137|T037|AB|T17.490A|ICD10CM|Oth foreign object in trachea causing asphyxiation, init|Oth foreign object in trachea causing asphyxiation, init +C2870137|T037|PT|T17.490A|ICD10CM|Other foreign object in trachea causing asphyxiation, initial encounter|Other foreign object in trachea causing asphyxiation, initial encounter +C2870138|T037|AB|T17.490D|ICD10CM|Oth foreign object in trachea causing asphyxiation, subs|Oth foreign object in trachea causing asphyxiation, subs +C2870138|T037|PT|T17.490D|ICD10CM|Other foreign object in trachea causing asphyxiation, subsequent encounter|Other foreign object in trachea causing asphyxiation, subsequent encounter +C2870139|T037|AB|T17.490S|ICD10CM|Oth foreign object in trachea causing asphyxiation, sequela|Oth foreign object in trachea causing asphyxiation, sequela +C2870139|T037|PT|T17.490S|ICD10CM|Other foreign object in trachea causing asphyxiation, sequela|Other foreign object in trachea causing asphyxiation, sequela +C2870140|T037|AB|T17.498|ICD10CM|Other foreign object in trachea causing other injury|Other foreign object in trachea causing other injury +C2870140|T037|HT|T17.498|ICD10CM|Other foreign object in trachea causing other injury|Other foreign object in trachea causing other injury +C2870141|T037|AB|T17.498A|ICD10CM|Oth foreign object in trachea causing oth injury, init|Oth foreign object in trachea causing oth injury, init +C2870141|T037|PT|T17.498A|ICD10CM|Other foreign object in trachea causing other injury, initial encounter|Other foreign object in trachea causing other injury, initial encounter +C2870142|T037|AB|T17.498D|ICD10CM|Oth foreign object in trachea causing oth injury, subs|Oth foreign object in trachea causing oth injury, subs +C2870142|T037|PT|T17.498D|ICD10CM|Other foreign object in trachea causing other injury, subsequent encounter|Other foreign object in trachea causing other injury, subsequent encounter +C2870143|T037|AB|T17.498S|ICD10CM|Oth foreign object in trachea causing other injury, sequela|Oth foreign object in trachea causing other injury, sequela +C2870143|T037|PT|T17.498S|ICD10CM|Other foreign object in trachea causing other injury, sequela|Other foreign object in trachea causing other injury, sequela +C0238037|T037|PT|T17.5|ICD10|Foreign body in bronchus|Foreign body in bronchus +C0238037|T037|HT|T17.5|ICD10CM|Foreign body in bronchus|Foreign body in bronchus +C0238037|T037|AB|T17.5|ICD10CM|Foreign body in bronchus|Foreign body in bronchus +C2870144|T037|AB|T17.50|ICD10CM|Unspecified foreign body in bronchus|Unspecified foreign body in bronchus +C2870144|T037|HT|T17.50|ICD10CM|Unspecified foreign body in bronchus|Unspecified foreign body in bronchus +C2870145|T037|AB|T17.500|ICD10CM|Unspecified foreign body in bronchus causing asphyxiation|Unspecified foreign body in bronchus causing asphyxiation +C2870145|T037|HT|T17.500|ICD10CM|Unspecified foreign body in bronchus causing asphyxiation|Unspecified foreign body in bronchus causing asphyxiation +C2870146|T037|AB|T17.500A|ICD10CM|Unsp foreign body in bronchus causing asphyxiation, init|Unsp foreign body in bronchus causing asphyxiation, init +C2870146|T037|PT|T17.500A|ICD10CM|Unspecified foreign body in bronchus causing asphyxiation, initial encounter|Unspecified foreign body in bronchus causing asphyxiation, initial encounter +C2870147|T037|AB|T17.500D|ICD10CM|Unsp foreign body in bronchus causing asphyxiation, subs|Unsp foreign body in bronchus causing asphyxiation, subs +C2870147|T037|PT|T17.500D|ICD10CM|Unspecified foreign body in bronchus causing asphyxiation, subsequent encounter|Unspecified foreign body in bronchus causing asphyxiation, subsequent encounter +C2870148|T037|AB|T17.500S|ICD10CM|Unsp foreign body in bronchus causing asphyxiation, sequela|Unsp foreign body in bronchus causing asphyxiation, sequela +C2870148|T037|PT|T17.500S|ICD10CM|Unspecified foreign body in bronchus causing asphyxiation, sequela|Unspecified foreign body in bronchus causing asphyxiation, sequela +C2870149|T037|AB|T17.508|ICD10CM|Unspecified foreign body in bronchus causing other injury|Unspecified foreign body in bronchus causing other injury +C2870149|T037|HT|T17.508|ICD10CM|Unspecified foreign body in bronchus causing other injury|Unspecified foreign body in bronchus causing other injury +C2870150|T037|AB|T17.508A|ICD10CM|Unsp foreign body in bronchus causing oth injury, init|Unsp foreign body in bronchus causing oth injury, init +C2870150|T037|PT|T17.508A|ICD10CM|Unspecified foreign body in bronchus causing other injury, initial encounter|Unspecified foreign body in bronchus causing other injury, initial encounter +C2870151|T037|AB|T17.508D|ICD10CM|Unsp foreign body in bronchus causing oth injury, subs|Unsp foreign body in bronchus causing oth injury, subs +C2870151|T037|PT|T17.508D|ICD10CM|Unspecified foreign body in bronchus causing other injury, subsequent encounter|Unspecified foreign body in bronchus causing other injury, subsequent encounter +C2870152|T037|AB|T17.508S|ICD10CM|Unsp foreign body in bronchus causing other injury, sequela|Unsp foreign body in bronchus causing other injury, sequela +C2870152|T037|PT|T17.508S|ICD10CM|Unspecified foreign body in bronchus causing other injury, sequela|Unspecified foreign body in bronchus causing other injury, sequela +C2870153|T047|ET|T17.51|ICD10CM|Aspiration of gastric contents into bronchus|Aspiration of gastric contents into bronchus +C2870155|T037|AB|T17.51|ICD10CM|Gastric contents in bronchus|Gastric contents in bronchus +C2870155|T037|HT|T17.51|ICD10CM|Gastric contents in bronchus|Gastric contents in bronchus +C2870154|T037|ET|T17.51|ICD10CM|Vomitus in bronchus|Vomitus in bronchus +C2870156|T037|AB|T17.510|ICD10CM|Gastric contents in bronchus causing asphyxiation|Gastric contents in bronchus causing asphyxiation +C2870156|T037|HT|T17.510|ICD10CM|Gastric contents in bronchus causing asphyxiation|Gastric contents in bronchus causing asphyxiation +C2870157|T037|AB|T17.510A|ICD10CM|Gastric contents in bronchus causing asphyxiation, init|Gastric contents in bronchus causing asphyxiation, init +C2870157|T037|PT|T17.510A|ICD10CM|Gastric contents in bronchus causing asphyxiation, initial encounter|Gastric contents in bronchus causing asphyxiation, initial encounter +C2870158|T037|AB|T17.510D|ICD10CM|Gastric contents in bronchus causing asphyxiation, subs|Gastric contents in bronchus causing asphyxiation, subs +C2870158|T037|PT|T17.510D|ICD10CM|Gastric contents in bronchus causing asphyxiation, subsequent encounter|Gastric contents in bronchus causing asphyxiation, subsequent encounter +C2870159|T037|AB|T17.510S|ICD10CM|Gastric contents in bronchus causing asphyxiation, sequela|Gastric contents in bronchus causing asphyxiation, sequela +C2870159|T037|PT|T17.510S|ICD10CM|Gastric contents in bronchus causing asphyxiation, sequela|Gastric contents in bronchus causing asphyxiation, sequela +C2870160|T037|AB|T17.518|ICD10CM|Gastric contents in bronchus causing other injury|Gastric contents in bronchus causing other injury +C2870160|T037|HT|T17.518|ICD10CM|Gastric contents in bronchus causing other injury|Gastric contents in bronchus causing other injury +C2870161|T037|AB|T17.518A|ICD10CM|Gastric contents in bronchus causing oth injury, init encntr|Gastric contents in bronchus causing oth injury, init encntr +C2870161|T037|PT|T17.518A|ICD10CM|Gastric contents in bronchus causing other injury, initial encounter|Gastric contents in bronchus causing other injury, initial encounter +C2870162|T037|AB|T17.518D|ICD10CM|Gastric contents in bronchus causing oth injury, subs encntr|Gastric contents in bronchus causing oth injury, subs encntr +C2870162|T037|PT|T17.518D|ICD10CM|Gastric contents in bronchus causing other injury, subsequent encounter|Gastric contents in bronchus causing other injury, subsequent encounter +C2870163|T037|AB|T17.518S|ICD10CM|Gastric contents in bronchus causing other injury, sequela|Gastric contents in bronchus causing other injury, sequela +C2870163|T037|PT|T17.518S|ICD10CM|Gastric contents in bronchus causing other injury, sequela|Gastric contents in bronchus causing other injury, sequela +C2870164|T037|ET|T17.52|ICD10CM|Bones in bronchus|Bones in bronchus +C2870166|T037|AB|T17.52|ICD10CM|Food in bronchus|Food in bronchus +C2870166|T037|HT|T17.52|ICD10CM|Food in bronchus|Food in bronchus +C2870165|T037|ET|T17.52|ICD10CM|Seeds in bronchus|Seeds in bronchus +C2870167|T037|AB|T17.520|ICD10CM|Food in bronchus causing asphyxiation|Food in bronchus causing asphyxiation +C2870167|T037|HT|T17.520|ICD10CM|Food in bronchus causing asphyxiation|Food in bronchus causing asphyxiation +C2870168|T037|AB|T17.520A|ICD10CM|Food in bronchus causing asphyxiation, initial encounter|Food in bronchus causing asphyxiation, initial encounter +C2870168|T037|PT|T17.520A|ICD10CM|Food in bronchus causing asphyxiation, initial encounter|Food in bronchus causing asphyxiation, initial encounter +C2870169|T037|AB|T17.520D|ICD10CM|Food in bronchus causing asphyxiation, subsequent encounter|Food in bronchus causing asphyxiation, subsequent encounter +C2870169|T037|PT|T17.520D|ICD10CM|Food in bronchus causing asphyxiation, subsequent encounter|Food in bronchus causing asphyxiation, subsequent encounter +C2870170|T037|AB|T17.520S|ICD10CM|Food in bronchus causing asphyxiation, sequela|Food in bronchus causing asphyxiation, sequela +C2870170|T037|PT|T17.520S|ICD10CM|Food in bronchus causing asphyxiation, sequela|Food in bronchus causing asphyxiation, sequela +C2870171|T037|AB|T17.528|ICD10CM|Food in bronchus causing other injury|Food in bronchus causing other injury +C2870171|T037|HT|T17.528|ICD10CM|Food in bronchus causing other injury|Food in bronchus causing other injury +C2870172|T037|AB|T17.528A|ICD10CM|Food in bronchus causing other injury, initial encounter|Food in bronchus causing other injury, initial encounter +C2870172|T037|PT|T17.528A|ICD10CM|Food in bronchus causing other injury, initial encounter|Food in bronchus causing other injury, initial encounter +C2870173|T037|AB|T17.528D|ICD10CM|Food in bronchus causing other injury, subsequent encounter|Food in bronchus causing other injury, subsequent encounter +C2870173|T037|PT|T17.528D|ICD10CM|Food in bronchus causing other injury, subsequent encounter|Food in bronchus causing other injury, subsequent encounter +C2870174|T037|AB|T17.528S|ICD10CM|Food in bronchus causing other injury, sequela|Food in bronchus causing other injury, sequela +C2870174|T037|PT|T17.528S|ICD10CM|Food in bronchus causing other injury, sequela|Food in bronchus causing other injury, sequela +C2870175|T037|AB|T17.59|ICD10CM|Other foreign object in bronchus|Other foreign object in bronchus +C2870175|T037|HT|T17.59|ICD10CM|Other foreign object in bronchus|Other foreign object in bronchus +C2870176|T037|AB|T17.590|ICD10CM|Other foreign object in bronchus causing asphyxiation|Other foreign object in bronchus causing asphyxiation +C2870176|T037|HT|T17.590|ICD10CM|Other foreign object in bronchus causing asphyxiation|Other foreign object in bronchus causing asphyxiation +C2870177|T037|AB|T17.590A|ICD10CM|Oth foreign object in bronchus causing asphyxiation, init|Oth foreign object in bronchus causing asphyxiation, init +C2870177|T037|PT|T17.590A|ICD10CM|Other foreign object in bronchus causing asphyxiation, initial encounter|Other foreign object in bronchus causing asphyxiation, initial encounter +C2870178|T037|AB|T17.590D|ICD10CM|Oth foreign object in bronchus causing asphyxiation, subs|Oth foreign object in bronchus causing asphyxiation, subs +C2870178|T037|PT|T17.590D|ICD10CM|Other foreign object in bronchus causing asphyxiation, subsequent encounter|Other foreign object in bronchus causing asphyxiation, subsequent encounter +C2870179|T037|AB|T17.590S|ICD10CM|Oth foreign object in bronchus causing asphyxiation, sequela|Oth foreign object in bronchus causing asphyxiation, sequela +C2870179|T037|PT|T17.590S|ICD10CM|Other foreign object in bronchus causing asphyxiation, sequela|Other foreign object in bronchus causing asphyxiation, sequela +C2870180|T037|AB|T17.598|ICD10CM|Other foreign object in bronchus causing other injury|Other foreign object in bronchus causing other injury +C2870180|T037|HT|T17.598|ICD10CM|Other foreign object in bronchus causing other injury|Other foreign object in bronchus causing other injury +C2870181|T037|AB|T17.598A|ICD10CM|Oth foreign object in bronchus causing oth injury, init|Oth foreign object in bronchus causing oth injury, init +C2870181|T037|PT|T17.598A|ICD10CM|Other foreign object in bronchus causing other injury, initial encounter|Other foreign object in bronchus causing other injury, initial encounter +C2870182|T037|AB|T17.598D|ICD10CM|Oth foreign object in bronchus causing oth injury, subs|Oth foreign object in bronchus causing oth injury, subs +C2870182|T037|PT|T17.598D|ICD10CM|Other foreign object in bronchus causing other injury, subsequent encounter|Other foreign object in bronchus causing other injury, subsequent encounter +C2870183|T037|AB|T17.598S|ICD10CM|Oth foreign object in bronchus causing other injury, sequela|Oth foreign object in bronchus causing other injury, sequela +C2870183|T037|PT|T17.598S|ICD10CM|Other foreign object in bronchus causing other injury, sequela|Other foreign object in bronchus causing other injury, sequela +C0274252|T033|ET|T17.8|ICD10CM|Foreign body in bronchioles|Foreign body in bronchioles +C0274253|T033|ET|T17.8|ICD10CM|Foreign body in lung|Foreign body in lung +C0496024|T037|PT|T17.8|ICD10|Foreign body in other and multiple parts of respiratory tract|Foreign body in other and multiple parts of respiratory tract +C2870184|T037|HT|T17.8|ICD10CM|Foreign body in other parts of respiratory tract|Foreign body in other parts of respiratory tract +C2870184|T037|AB|T17.8|ICD10CM|Foreign body in other parts of respiratory tract|Foreign body in other parts of respiratory tract +C2870185|T037|AB|T17.80|ICD10CM|Unspecified foreign body in other parts of respiratory tract|Unspecified foreign body in other parts of respiratory tract +C2870185|T037|HT|T17.80|ICD10CM|Unspecified foreign body in other parts of respiratory tract|Unspecified foreign body in other parts of respiratory tract +C2870186|T037|AB|T17.800|ICD10CM|Unsp foreign body in oth prt resp tract causing asphyxiation|Unsp foreign body in oth prt resp tract causing asphyxiation +C2870186|T037|HT|T17.800|ICD10CM|Unspecified foreign body in other parts of respiratory tract causing asphyxiation|Unspecified foreign body in other parts of respiratory tract causing asphyxiation +C2870187|T037|AB|T17.800A|ICD10CM|Unsp foreign body in oth prt resp tract causing asphyx, init|Unsp foreign body in oth prt resp tract causing asphyx, init +C2870187|T037|PT|T17.800A|ICD10CM|Unspecified foreign body in other parts of respiratory tract causing asphyxiation, initial encounter|Unspecified foreign body in other parts of respiratory tract causing asphyxiation, initial encounter +C2870188|T037|AB|T17.800D|ICD10CM|Unsp foreign body in oth prt resp tract causing asphyx, subs|Unsp foreign body in oth prt resp tract causing asphyx, subs +C2870189|T037|AB|T17.800S|ICD10CM|Unsp fb in oth prt resp tract causing asphyx, sequela|Unsp fb in oth prt resp tract causing asphyx, sequela +C2870189|T037|PT|T17.800S|ICD10CM|Unspecified foreign body in other parts of respiratory tract causing asphyxiation, sequela|Unspecified foreign body in other parts of respiratory tract causing asphyxiation, sequela +C2870190|T037|AB|T17.808|ICD10CM|Unsp foreign body in oth prt resp tract causing oth injury|Unsp foreign body in oth prt resp tract causing oth injury +C2870190|T037|HT|T17.808|ICD10CM|Unspecified foreign body in other parts of respiratory tract causing other injury|Unspecified foreign body in other parts of respiratory tract causing other injury +C2870191|T037|AB|T17.808A|ICD10CM|Unsp fb in oth prt resp tract causing oth injury, init|Unsp fb in oth prt resp tract causing oth injury, init +C2870191|T037|PT|T17.808A|ICD10CM|Unspecified foreign body in other parts of respiratory tract causing other injury, initial encounter|Unspecified foreign body in other parts of respiratory tract causing other injury, initial encounter +C2870192|T037|AB|T17.808D|ICD10CM|Unsp fb in oth prt resp tract causing oth injury, subs|Unsp fb in oth prt resp tract causing oth injury, subs +C2870193|T037|AB|T17.808S|ICD10CM|Unsp fb in oth prt resp tract causing oth injury, sequela|Unsp fb in oth prt resp tract causing oth injury, sequela +C2870193|T037|PT|T17.808S|ICD10CM|Unspecified foreign body in other parts of respiratory tract causing other injury, sequela|Unspecified foreign body in other parts of respiratory tract causing other injury, sequela +C2870194|T037|ET|T17.81|ICD10CM|Aspiration of gastric contents into other parts of respiratory tract|Aspiration of gastric contents into other parts of respiratory tract +C2870196|T037|HT|T17.81|ICD10CM|Gastric contents in other parts of respiratory tract|Gastric contents in other parts of respiratory tract +C2870196|T037|AB|T17.81|ICD10CM|Gastric contents in other parts of respiratory tract|Gastric contents in other parts of respiratory tract +C2870195|T037|ET|T17.81|ICD10CM|Vomitus in other parts of respiratory tract|Vomitus in other parts of respiratory tract +C2870197|T037|AB|T17.810|ICD10CM|Gastric contents in oth prt resp tract causing asphyxiation|Gastric contents in oth prt resp tract causing asphyxiation +C2870197|T037|HT|T17.810|ICD10CM|Gastric contents in other parts of respiratory tract causing asphyxiation|Gastric contents in other parts of respiratory tract causing asphyxiation +C2870198|T037|AB|T17.810A|ICD10CM|Gastric contents in oth prt resp tract causing asphyx, init|Gastric contents in oth prt resp tract causing asphyx, init +C2870198|T037|PT|T17.810A|ICD10CM|Gastric contents in other parts of respiratory tract causing asphyxiation, initial encounter|Gastric contents in other parts of respiratory tract causing asphyxiation, initial encounter +C2870199|T037|AB|T17.810D|ICD10CM|Gastric contents in oth prt resp tract causing asphyx, subs|Gastric contents in oth prt resp tract causing asphyx, subs +C2870199|T037|PT|T17.810D|ICD10CM|Gastric contents in other parts of respiratory tract causing asphyxiation, subsequent encounter|Gastric contents in other parts of respiratory tract causing asphyxiation, subsequent encounter +C2870200|T037|AB|T17.810S|ICD10CM|Gastric contents in oth prt resp tract cause asphyx, sequela|Gastric contents in oth prt resp tract cause asphyx, sequela +C2870200|T037|PT|T17.810S|ICD10CM|Gastric contents in other parts of respiratory tract causing asphyxiation, sequela|Gastric contents in other parts of respiratory tract causing asphyxiation, sequela +C2870201|T037|AB|T17.818|ICD10CM|Gastric contents in oth prt resp tract causing oth injury|Gastric contents in oth prt resp tract causing oth injury +C2870201|T037|HT|T17.818|ICD10CM|Gastric contents in other parts of respiratory tract causing other injury|Gastric contents in other parts of respiratory tract causing other injury +C2870202|T037|AB|T17.818A|ICD10CM|Gastr contents in oth prt resp tract cause oth injury, init|Gastr contents in oth prt resp tract cause oth injury, init +C2870202|T037|PT|T17.818A|ICD10CM|Gastric contents in other parts of respiratory tract causing other injury, initial encounter|Gastric contents in other parts of respiratory tract causing other injury, initial encounter +C2870203|T037|AB|T17.818D|ICD10CM|Gastr contents in oth prt resp tract cause oth injury, subs|Gastr contents in oth prt resp tract cause oth injury, subs +C2870203|T037|PT|T17.818D|ICD10CM|Gastric contents in other parts of respiratory tract causing other injury, subsequent encounter|Gastric contents in other parts of respiratory tract causing other injury, subsequent encounter +C2870204|T037|AB|T17.818S|ICD10CM|Gastr contents in oth prt resp tract cause oth injury, sqla|Gastr contents in oth prt resp tract cause oth injury, sqla +C2870204|T037|PT|T17.818S|ICD10CM|Gastric contents in other parts of respiratory tract causing other injury, sequela|Gastric contents in other parts of respiratory tract causing other injury, sequela +C2870205|T037|ET|T17.82|ICD10CM|Bones in other parts of respiratory tract|Bones in other parts of respiratory tract +C2870207|T037|HT|T17.82|ICD10CM|Food in other parts of respiratory tract|Food in other parts of respiratory tract +C2870207|T037|AB|T17.82|ICD10CM|Food in other parts of respiratory tract|Food in other parts of respiratory tract +C2870206|T037|ET|T17.82|ICD10CM|Seeds in other parts of respiratory tract|Seeds in other parts of respiratory tract +C2870208|T037|AB|T17.820|ICD10CM|Food in oth parts of respiratory tract causing asphyxiation|Food in oth parts of respiratory tract causing asphyxiation +C2870208|T037|HT|T17.820|ICD10CM|Food in other parts of respiratory tract causing asphyxiation|Food in other parts of respiratory tract causing asphyxiation +C2870209|T037|AB|T17.820A|ICD10CM|Food in oth prt respiratory tract causing asphyxiation, init|Food in oth prt respiratory tract causing asphyxiation, init +C2870209|T037|PT|T17.820A|ICD10CM|Food in other parts of respiratory tract causing asphyxiation, initial encounter|Food in other parts of respiratory tract causing asphyxiation, initial encounter +C2870210|T037|AB|T17.820D|ICD10CM|Food in oth prt respiratory tract causing asphyxiation, subs|Food in oth prt respiratory tract causing asphyxiation, subs +C2870210|T037|PT|T17.820D|ICD10CM|Food in other parts of respiratory tract causing asphyxiation, subsequent encounter|Food in other parts of respiratory tract causing asphyxiation, subsequent encounter +C2870211|T037|AB|T17.820S|ICD10CM|Food in oth prt resp tract causing asphyxiation, sequela|Food in oth prt resp tract causing asphyxiation, sequela +C2870211|T037|PT|T17.820S|ICD10CM|Food in other parts of respiratory tract causing asphyxiation, sequela|Food in other parts of respiratory tract causing asphyxiation, sequela +C2870212|T037|AB|T17.828|ICD10CM|Food in oth parts of respiratory tract causing other injury|Food in oth parts of respiratory tract causing other injury +C2870212|T037|HT|T17.828|ICD10CM|Food in other parts of respiratory tract causing other injury|Food in other parts of respiratory tract causing other injury +C2870213|T037|AB|T17.828A|ICD10CM|Food in oth prt respiratory tract causing oth injury, init|Food in oth prt respiratory tract causing oth injury, init +C2870213|T037|PT|T17.828A|ICD10CM|Food in other parts of respiratory tract causing other injury, initial encounter|Food in other parts of respiratory tract causing other injury, initial encounter +C2870214|T037|AB|T17.828D|ICD10CM|Food in oth prt respiratory tract causing oth injury, subs|Food in oth prt respiratory tract causing oth injury, subs +C2870214|T037|PT|T17.828D|ICD10CM|Food in other parts of respiratory tract causing other injury, subsequent encounter|Food in other parts of respiratory tract causing other injury, subsequent encounter +C2870215|T037|AB|T17.828S|ICD10CM|Food in oth prt resp tract causing oth injury, sequela|Food in oth prt resp tract causing oth injury, sequela +C2870215|T037|PT|T17.828S|ICD10CM|Food in other parts of respiratory tract causing other injury, sequela|Food in other parts of respiratory tract causing other injury, sequela +C2870216|T037|AB|T17.89|ICD10CM|Other foreign object in other parts of respiratory tract|Other foreign object in other parts of respiratory tract +C2870216|T037|HT|T17.89|ICD10CM|Other foreign object in other parts of respiratory tract|Other foreign object in other parts of respiratory tract +C2870217|T037|AB|T17.890|ICD10CM|Oth foreign object in oth prt resp tract causing asphyx|Oth foreign object in oth prt resp tract causing asphyx +C2870217|T037|HT|T17.890|ICD10CM|Other foreign object in other parts of respiratory tract causing asphyxiation|Other foreign object in other parts of respiratory tract causing asphyxiation +C2870218|T037|AB|T17.890A|ICD10CM|Oth foreign object in oth prt resp tract cause asphyx, init|Oth foreign object in oth prt resp tract cause asphyx, init +C2870218|T037|PT|T17.890A|ICD10CM|Other foreign object in other parts of respiratory tract causing asphyxiation, initial encounter|Other foreign object in other parts of respiratory tract causing asphyxiation, initial encounter +C2870219|T037|AB|T17.890D|ICD10CM|Oth foreign object in oth prt resp tract cause asphyx, subs|Oth foreign object in oth prt resp tract cause asphyx, subs +C2870219|T037|PT|T17.890D|ICD10CM|Other foreign object in other parts of respiratory tract causing asphyxiation, subsequent encounter|Other foreign object in other parts of respiratory tract causing asphyxiation, subsequent encounter +C2870220|T037|AB|T17.890S|ICD10CM|Oth forn object in oth prt resp tract cause asphyx, sequela|Oth forn object in oth prt resp tract cause asphyx, sequela +C2870220|T037|PT|T17.890S|ICD10CM|Other foreign object in other parts of respiratory tract causing asphyxiation, sequela|Other foreign object in other parts of respiratory tract causing asphyxiation, sequela +C2870221|T037|AB|T17.898|ICD10CM|Oth foreign object in oth prt resp tract causing oth injury|Oth foreign object in oth prt resp tract causing oth injury +C2870221|T037|HT|T17.898|ICD10CM|Other foreign object in other parts of respiratory tract causing other injury|Other foreign object in other parts of respiratory tract causing other injury +C2870222|T037|AB|T17.898A|ICD10CM|Oth forn object in oth prt resp tract cause oth injury, init|Oth forn object in oth prt resp tract cause oth injury, init +C2870222|T037|PT|T17.898A|ICD10CM|Other foreign object in other parts of respiratory tract causing other injury, initial encounter|Other foreign object in other parts of respiratory tract causing other injury, initial encounter +C2870223|T037|AB|T17.898D|ICD10CM|Oth forn object in oth prt resp tract cause oth injury, subs|Oth forn object in oth prt resp tract cause oth injury, subs +C2870223|T037|PT|T17.898D|ICD10CM|Other foreign object in other parts of respiratory tract causing other injury, subsequent encounter|Other foreign object in other parts of respiratory tract causing other injury, subsequent encounter +C2870224|T037|AB|T17.898S|ICD10CM|Oth forn object in oth prt resp tract cause oth injury, sqla|Oth forn object in oth prt resp tract cause oth injury, sqla +C2870224|T037|PT|T17.898S|ICD10CM|Other foreign object in other parts of respiratory tract causing other injury, sequela|Other foreign object in other parts of respiratory tract causing other injury, sequela +C0433654|T037|PT|T17.9|ICD10|Foreign body in respiratory tract, part unspecified|Foreign body in respiratory tract, part unspecified +C0433654|T037|HT|T17.9|ICD10CM|Foreign body in respiratory tract, part unspecified|Foreign body in respiratory tract, part unspecified +C0433654|T037|AB|T17.9|ICD10CM|Foreign body in respiratory tract, part unspecified|Foreign body in respiratory tract, part unspecified +C2870225|T037|AB|T17.90|ICD10CM|Unsp foreign body in respiratory tract, part unspecified|Unsp foreign body in respiratory tract, part unspecified +C2870225|T037|HT|T17.90|ICD10CM|Unspecified foreign body in respiratory tract, part unspecified|Unspecified foreign body in respiratory tract, part unspecified +C2870226|T037|AB|T17.900|ICD10CM|Unsp foreign body in resp tract, part unsp causing asphyx|Unsp foreign body in resp tract, part unsp causing asphyx +C2870226|T037|HT|T17.900|ICD10CM|Unspecified foreign body in respiratory tract, part unspecified causing asphyxiation|Unspecified foreign body in respiratory tract, part unspecified causing asphyxiation +C2870227|T037|AB|T17.900A|ICD10CM|Unsp fb in resp tract, part unsp causing asphyx, init|Unsp fb in resp tract, part unsp causing asphyx, init +C2870228|T037|AB|T17.900D|ICD10CM|Unsp fb in resp tract, part unsp causing asphyx, subs|Unsp fb in resp tract, part unsp causing asphyx, subs +C2870229|T037|AB|T17.900S|ICD10CM|Unsp fb in resp tract, part unsp causing asphyx, sequela|Unsp fb in resp tract, part unsp causing asphyx, sequela +C2870229|T037|PT|T17.900S|ICD10CM|Unspecified foreign body in respiratory tract, part unspecified causing asphyxiation, sequela|Unspecified foreign body in respiratory tract, part unspecified causing asphyxiation, sequela +C2870230|T037|AB|T17.908|ICD10CM|Unsp fb in resp tract, part unsp causing oth injury|Unsp fb in resp tract, part unsp causing oth injury +C2870230|T037|HT|T17.908|ICD10CM|Unspecified foreign body in respiratory tract, part unspecified causing other injury|Unspecified foreign body in respiratory tract, part unspecified causing other injury +C2870231|T037|AB|T17.908A|ICD10CM|Unsp fb in resp tract, part unsp causing oth injury, init|Unsp fb in resp tract, part unsp causing oth injury, init +C2870232|T037|AB|T17.908D|ICD10CM|Unsp fb in resp tract, part unsp causing oth injury, subs|Unsp fb in resp tract, part unsp causing oth injury, subs +C2870233|T037|AB|T17.908S|ICD10CM|Unsp fb in resp tract, part unsp causing oth injury, sequela|Unsp fb in resp tract, part unsp causing oth injury, sequela +C2870233|T037|PT|T17.908S|ICD10CM|Unspecified foreign body in respiratory tract, part unspecified causing other injury, sequela|Unspecified foreign body in respiratory tract, part unspecified causing other injury, sequela +C2870234|T037|ET|T17.91|ICD10CM|Aspiration of gastric contents into respiratory tract, part unspecified|Aspiration of gastric contents into respiratory tract, part unspecified +C2870236|T037|AB|T17.91|ICD10CM|Gastric contents in respiratory tract, part unspecified|Gastric contents in respiratory tract, part unspecified +C2870236|T037|HT|T17.91|ICD10CM|Gastric contents in respiratory tract, part unspecified|Gastric contents in respiratory tract, part unspecified +C2870235|T037|ET|T17.91|ICD10CM|Vomitus in trachea respiratory tract, part unspecified|Vomitus in trachea respiratory tract, part unspecified +C2870237|T037|AB|T17.910|ICD10CM|Gastric contents in resp tract, part unsp causing asphyx|Gastric contents in resp tract, part unsp causing asphyx +C2870237|T037|HT|T17.910|ICD10CM|Gastric contents in respiratory tract, part unspecified causing asphyxiation|Gastric contents in respiratory tract, part unspecified causing asphyxiation +C2870238|T037|AB|T17.910A|ICD10CM|Gastric contents in resp tract, part unsp cause asphyx, init|Gastric contents in resp tract, part unsp cause asphyx, init +C2870238|T037|PT|T17.910A|ICD10CM|Gastric contents in respiratory tract, part unspecified causing asphyxiation, initial encounter|Gastric contents in respiratory tract, part unspecified causing asphyxiation, initial encounter +C2870239|T037|AB|T17.910D|ICD10CM|Gastric contents in resp tract, part unsp cause asphyx, subs|Gastric contents in resp tract, part unsp cause asphyx, subs +C2870239|T037|PT|T17.910D|ICD10CM|Gastric contents in respiratory tract, part unspecified causing asphyxiation, subsequent encounter|Gastric contents in respiratory tract, part unspecified causing asphyxiation, subsequent encounter +C2870240|T037|AB|T17.910S|ICD10CM|Gastr contents in resp tract, part unsp cause asphyx, sqla|Gastr contents in resp tract, part unsp cause asphyx, sqla +C2870240|T037|PT|T17.910S|ICD10CM|Gastric contents in respiratory tract, part unspecified causing asphyxiation, sequela|Gastric contents in respiratory tract, part unspecified causing asphyxiation, sequela +C2870241|T037|AB|T17.918|ICD10CM|Gastric contents in resp tract, part unsp causing oth injury|Gastric contents in resp tract, part unsp causing oth injury +C2870241|T037|HT|T17.918|ICD10CM|Gastric contents in respiratory tract, part unspecified causing other injury|Gastric contents in respiratory tract, part unspecified causing other injury +C2870242|T037|AB|T17.918A|ICD10CM|Gastr contents in resp tract, part unsp cause oth inj, init|Gastr contents in resp tract, part unsp cause oth inj, init +C2870242|T037|PT|T17.918A|ICD10CM|Gastric contents in respiratory tract, part unspecified causing other injury, initial encounter|Gastric contents in respiratory tract, part unspecified causing other injury, initial encounter +C2870243|T037|AB|T17.918D|ICD10CM|Gastr contents in resp tract, part unsp cause oth inj, subs|Gastr contents in resp tract, part unsp cause oth inj, subs +C2870243|T037|PT|T17.918D|ICD10CM|Gastric contents in respiratory tract, part unspecified causing other injury, subsequent encounter|Gastric contents in respiratory tract, part unspecified causing other injury, subsequent encounter +C2870244|T037|AB|T17.918S|ICD10CM|Gastr contents in resp tract, part unsp cause oth inj, sqla|Gastr contents in resp tract, part unsp cause oth inj, sqla +C2870244|T037|PT|T17.918S|ICD10CM|Gastric contents in respiratory tract, part unspecified causing other injury, sequela|Gastric contents in respiratory tract, part unspecified causing other injury, sequela +C2870245|T037|ET|T17.92|ICD10CM|Bones in respiratory tract, part unspecified|Bones in respiratory tract, part unspecified +C2870247|T037|AB|T17.92|ICD10CM|Food in respiratory tract, part unspecified|Food in respiratory tract, part unspecified +C2870247|T037|HT|T17.92|ICD10CM|Food in respiratory tract, part unspecified|Food in respiratory tract, part unspecified +C2870246|T037|ET|T17.92|ICD10CM|Seeds in respiratory tract, part unspecified|Seeds in respiratory tract, part unspecified +C2870248|T037|AB|T17.920|ICD10CM|Food in respiratory tract, part unsp causing asphyxiation|Food in respiratory tract, part unsp causing asphyxiation +C2870248|T037|HT|T17.920|ICD10CM|Food in respiratory tract, part unspecified causing asphyxiation|Food in respiratory tract, part unspecified causing asphyxiation +C2870249|T037|AB|T17.920A|ICD10CM|Food in resp tract, part unsp causing asphyxiation, init|Food in resp tract, part unsp causing asphyxiation, init +C2870249|T037|PT|T17.920A|ICD10CM|Food in respiratory tract, part unspecified causing asphyxiation, initial encounter|Food in respiratory tract, part unspecified causing asphyxiation, initial encounter +C2870250|T037|AB|T17.920D|ICD10CM|Food in resp tract, part unsp causing asphyxiation, subs|Food in resp tract, part unsp causing asphyxiation, subs +C2870250|T037|PT|T17.920D|ICD10CM|Food in respiratory tract, part unspecified causing asphyxiation, subsequent encounter|Food in respiratory tract, part unspecified causing asphyxiation, subsequent encounter +C2870251|T037|AB|T17.920S|ICD10CM|Food in resp tract, part unsp causing asphyxiation, sequela|Food in resp tract, part unsp causing asphyxiation, sequela +C2870251|T037|PT|T17.920S|ICD10CM|Food in respiratory tract, part unspecified causing asphyxiation, sequela|Food in respiratory tract, part unspecified causing asphyxiation, sequela +C2870252|T037|AB|T17.928|ICD10CM|Food in respiratory tract, part unsp causing other injury|Food in respiratory tract, part unsp causing other injury +C2870252|T037|HT|T17.928|ICD10CM|Food in respiratory tract, part unspecified causing other injury|Food in respiratory tract, part unspecified causing other injury +C2870253|T037|AB|T17.928A|ICD10CM|Food in resp tract, part unsp causing oth injury, init|Food in resp tract, part unsp causing oth injury, init +C2870253|T037|PT|T17.928A|ICD10CM|Food in respiratory tract, part unspecified causing other injury, initial encounter|Food in respiratory tract, part unspecified causing other injury, initial encounter +C2870254|T037|AB|T17.928D|ICD10CM|Food in resp tract, part unsp causing oth injury, subs|Food in resp tract, part unsp causing oth injury, subs +C2870254|T037|PT|T17.928D|ICD10CM|Food in respiratory tract, part unspecified causing other injury, subsequent encounter|Food in respiratory tract, part unspecified causing other injury, subsequent encounter +C2870255|T037|AB|T17.928S|ICD10CM|Food in resp tract, part unsp causing oth injury, sequela|Food in resp tract, part unsp causing oth injury, sequela +C2870255|T037|PT|T17.928S|ICD10CM|Food in respiratory tract, part unspecified causing other injury, sequela|Food in respiratory tract, part unspecified causing other injury, sequela +C2870256|T037|AB|T17.99|ICD10CM|Other foreign object in respiratory tract, part unspecified|Other foreign object in respiratory tract, part unspecified +C2870256|T037|HT|T17.99|ICD10CM|Other foreign object in respiratory tract, part unspecified|Other foreign object in respiratory tract, part unspecified +C2870257|T037|AB|T17.990|ICD10CM|Oth foreign object in resp tract, part unsp in cause asphyx|Oth foreign object in resp tract, part unsp in cause asphyx +C2870257|T037|HT|T17.990|ICD10CM|Other foreign object in respiratory tract, part unspecified in causing asphyxiation|Other foreign object in respiratory tract, part unspecified in causing asphyxiation +C2870258|T037|AB|T17.990A|ICD10CM|Oth forn obj in resp tract, part unsp in cause asphyx, init|Oth forn obj in resp tract, part unsp in cause asphyx, init +C2870259|T037|AB|T17.990D|ICD10CM|Oth forn obj in resp tract, part unsp in cause asphyx, subs|Oth forn obj in resp tract, part unsp in cause asphyx, subs +C2870260|T037|AB|T17.990S|ICD10CM|Oth forn obj in resp tract, part unsp in cause asphyx, sqla|Oth forn obj in resp tract, part unsp in cause asphyx, sqla +C2870260|T037|PT|T17.990S|ICD10CM|Other foreign object in respiratory tract, part unspecified in causing asphyxiation, sequela|Other foreign object in respiratory tract, part unspecified in causing asphyxiation, sequela +C2870261|T037|AB|T17.998|ICD10CM|Oth foreign object in resp tract, part unsp cause oth injury|Oth foreign object in resp tract, part unsp cause oth injury +C2870261|T037|HT|T17.998|ICD10CM|Other foreign object in respiratory tract, part unspecified causing other injury|Other foreign object in respiratory tract, part unspecified causing other injury +C2870262|T037|AB|T17.998A|ICD10CM|Oth forn object in resp tract, part unsp cause oth inj, init|Oth forn object in resp tract, part unsp cause oth inj, init +C2870262|T037|PT|T17.998A|ICD10CM|Other foreign object in respiratory tract, part unspecified causing other injury, initial encounter|Other foreign object in respiratory tract, part unspecified causing other injury, initial encounter +C2870263|T037|AB|T17.998D|ICD10CM|Oth forn object in resp tract, part unsp cause oth inj, subs|Oth forn object in resp tract, part unsp cause oth inj, subs +C2870264|T037|AB|T17.998S|ICD10CM|Oth forn object in resp tract, part unsp cause oth inj, sqla|Oth forn object in resp tract, part unsp cause oth inj, sqla +C2870264|T037|PT|T17.998S|ICD10CM|Other foreign object in respiratory tract, part unspecified causing other injury, sequela|Other foreign object in respiratory tract, part unspecified causing other injury, sequela +C0016546|T037|HT|T18|ICD10CM|Foreign body in alimentary tract|Foreign body in alimentary tract +C0016546|T037|AB|T18|ICD10CM|Foreign body in alimentary tract|Foreign body in alimentary tract +C0016546|T037|HT|T18|ICD10|Foreign body in alimentary tract|Foreign body in alimentary tract +C0161018|T037|PT|T18.0|ICD10|Foreign body in mouth|Foreign body in mouth +C0161018|T037|HT|T18.0|ICD10CM|Foreign body in mouth|Foreign body in mouth +C0161018|T037|AB|T18.0|ICD10CM|Foreign body in mouth|Foreign body in mouth +C2870265|T037|AB|T18.0XXA|ICD10CM|Foreign body in mouth, initial encounter|Foreign body in mouth, initial encounter +C2870265|T037|PT|T18.0XXA|ICD10CM|Foreign body in mouth, initial encounter|Foreign body in mouth, initial encounter +C2870266|T037|AB|T18.0XXD|ICD10CM|Foreign body in mouth, subsequent encounter|Foreign body in mouth, subsequent encounter +C2870266|T037|PT|T18.0XXD|ICD10CM|Foreign body in mouth, subsequent encounter|Foreign body in mouth, subsequent encounter +C2870267|T037|AB|T18.0XXS|ICD10CM|Foreign body in mouth, sequela|Foreign body in mouth, sequela +C2870267|T037|PT|T18.0XXS|ICD10CM|Foreign body in mouth, sequela|Foreign body in mouth, sequela +C0149532|T037|HT|T18.1|ICD10CM|Foreign body in esophagus|Foreign body in esophagus +C0149532|T037|AB|T18.1|ICD10CM|Foreign body in esophagus|Foreign body in esophagus +C0149532|T037|PT|T18.1|ICD10AE|Foreign body in esophagus|Foreign body in esophagus +C0149532|T037|PT|T18.1|ICD10|Foreign body in oesophagus|Foreign body in oesophagus +C2870268|T037|AB|T18.10|ICD10CM|Unspecified foreign body in esophagus|Unspecified foreign body in esophagus +C2870268|T037|HT|T18.10|ICD10CM|Unspecified foreign body in esophagus|Unspecified foreign body in esophagus +C2870270|T037|AB|T18.100|ICD10CM|Unsp fb in esophagus causing compression of trachea|Unsp fb in esophagus causing compression of trachea +C2870270|T037|HT|T18.100|ICD10CM|Unspecified foreign body in esophagus causing compression of trachea|Unspecified foreign body in esophagus causing compression of trachea +C2870269|T037|ET|T18.100|ICD10CM|Unspecified foreign body in esophagus causing obstruction of respiration|Unspecified foreign body in esophagus causing obstruction of respiration +C2870271|T037|AB|T18.100A|ICD10CM|Unsp fb in esophagus causing compression of trachea, init|Unsp fb in esophagus causing compression of trachea, init +C2870271|T037|PT|T18.100A|ICD10CM|Unspecified foreign body in esophagus causing compression of trachea, initial encounter|Unspecified foreign body in esophagus causing compression of trachea, initial encounter +C2870272|T037|AB|T18.100D|ICD10CM|Unsp fb in esophagus causing compression of trachea, subs|Unsp fb in esophagus causing compression of trachea, subs +C2870272|T037|PT|T18.100D|ICD10CM|Unspecified foreign body in esophagus causing compression of trachea, subsequent encounter|Unspecified foreign body in esophagus causing compression of trachea, subsequent encounter +C2870273|T037|AB|T18.100S|ICD10CM|Unsp fb in esophagus causing compression of trachea, sequela|Unsp fb in esophagus causing compression of trachea, sequela +C2870273|T037|PT|T18.100S|ICD10CM|Unspecified foreign body in esophagus causing compression of trachea, sequela|Unspecified foreign body in esophagus causing compression of trachea, sequela +C2870274|T037|AB|T18.108|ICD10CM|Unspecified foreign body in esophagus causing other injury|Unspecified foreign body in esophagus causing other injury +C2870274|T037|HT|T18.108|ICD10CM|Unspecified foreign body in esophagus causing other injury|Unspecified foreign body in esophagus causing other injury +C2870275|T037|AB|T18.108A|ICD10CM|Unsp foreign body in esophagus causing oth injury, init|Unsp foreign body in esophagus causing oth injury, init +C2870275|T037|PT|T18.108A|ICD10CM|Unspecified foreign body in esophagus causing other injury, initial encounter|Unspecified foreign body in esophagus causing other injury, initial encounter +C2870276|T037|AB|T18.108D|ICD10CM|Unsp foreign body in esophagus causing oth injury, subs|Unsp foreign body in esophagus causing oth injury, subs +C2870276|T037|PT|T18.108D|ICD10CM|Unspecified foreign body in esophagus causing other injury, subsequent encounter|Unspecified foreign body in esophagus causing other injury, subsequent encounter +C2870277|T037|AB|T18.108S|ICD10CM|Unsp foreign body in esophagus causing other injury, sequela|Unsp foreign body in esophagus causing other injury, sequela +C2870277|T037|PT|T18.108S|ICD10CM|Unspecified foreign body in esophagus causing other injury, sequela|Unspecified foreign body in esophagus causing other injury, sequela +C2870279|T037|AB|T18.11|ICD10CM|Gastric contents in esophagus|Gastric contents in esophagus +C2870279|T037|HT|T18.11|ICD10CM|Gastric contents in esophagus|Gastric contents in esophagus +C2870278|T037|ET|T18.11|ICD10CM|Vomitus in esophagus|Vomitus in esophagus +C2870281|T037|AB|T18.110|ICD10CM|Gastric contents in esophagus causing compression of trachea|Gastric contents in esophagus causing compression of trachea +C2870281|T037|HT|T18.110|ICD10CM|Gastric contents in esophagus causing compression of trachea|Gastric contents in esophagus causing compression of trachea +C2870280|T037|ET|T18.110|ICD10CM|Gastric contents in esophagus causing obstruction of respiration|Gastric contents in esophagus causing obstruction of respiration +C2870282|T037|AB|T18.110A|ICD10CM|Gastric contents in esoph causing comprsn of trachea, init|Gastric contents in esoph causing comprsn of trachea, init +C2870282|T037|PT|T18.110A|ICD10CM|Gastric contents in esophagus causing compression of trachea, initial encounter|Gastric contents in esophagus causing compression of trachea, initial encounter +C2870283|T037|AB|T18.110D|ICD10CM|Gastric contents in esoph causing comprsn of trachea, subs|Gastric contents in esoph causing comprsn of trachea, subs +C2870283|T037|PT|T18.110D|ICD10CM|Gastric contents in esophagus causing compression of trachea, subsequent encounter|Gastric contents in esophagus causing compression of trachea, subsequent encounter +C2870284|T037|AB|T18.110S|ICD10CM|Gastric contents in esoph cause comprsn of trachea, sequela|Gastric contents in esoph cause comprsn of trachea, sequela +C2870284|T037|PT|T18.110S|ICD10CM|Gastric contents in esophagus causing compression of trachea, sequela|Gastric contents in esophagus causing compression of trachea, sequela +C2870285|T037|AB|T18.118|ICD10CM|Gastric contents in esophagus causing other injury|Gastric contents in esophagus causing other injury +C2870285|T037|HT|T18.118|ICD10CM|Gastric contents in esophagus causing other injury|Gastric contents in esophagus causing other injury +C2870286|T037|AB|T18.118A|ICD10CM|Gastric contents in esophagus causing oth injury, init|Gastric contents in esophagus causing oth injury, init +C2870286|T037|PT|T18.118A|ICD10CM|Gastric contents in esophagus causing other injury, initial encounter|Gastric contents in esophagus causing other injury, initial encounter +C2870287|T037|AB|T18.118D|ICD10CM|Gastric contents in esophagus causing oth injury, subs|Gastric contents in esophagus causing oth injury, subs +C2870287|T037|PT|T18.118D|ICD10CM|Gastric contents in esophagus causing other injury, subsequent encounter|Gastric contents in esophagus causing other injury, subsequent encounter +C2870288|T037|AB|T18.118S|ICD10CM|Gastric contents in esophagus causing other injury, sequela|Gastric contents in esophagus causing other injury, sequela +C2870288|T037|PT|T18.118S|ICD10CM|Gastric contents in esophagus causing other injury, sequela|Gastric contents in esophagus causing other injury, sequela +C2870289|T037|ET|T18.12|ICD10CM|Bones in esophagus|Bones in esophagus +C0941255|T033|AB|T18.12|ICD10CM|Food in esophagus|Food in esophagus +C0941255|T033|HT|T18.12|ICD10CM|Food in esophagus|Food in esophagus +C2870290|T037|ET|T18.12|ICD10CM|Seeds in esophagus|Seeds in esophagus +C2870292|T037|AB|T18.120|ICD10CM|Food in esophagus causing compression of trachea|Food in esophagus causing compression of trachea +C2870292|T037|HT|T18.120|ICD10CM|Food in esophagus causing compression of trachea|Food in esophagus causing compression of trachea +C2870291|T037|ET|T18.120|ICD10CM|Food in esophagus causing obstruction of respiration|Food in esophagus causing obstruction of respiration +C2870293|T037|AB|T18.120A|ICD10CM|Food in esophagus causing compression of trachea, init|Food in esophagus causing compression of trachea, init +C2870293|T037|PT|T18.120A|ICD10CM|Food in esophagus causing compression of trachea, initial encounter|Food in esophagus causing compression of trachea, initial encounter +C2870294|T037|AB|T18.120D|ICD10CM|Food in esophagus causing compression of trachea, subs|Food in esophagus causing compression of trachea, subs +C2870294|T037|PT|T18.120D|ICD10CM|Food in esophagus causing compression of trachea, subsequent encounter|Food in esophagus causing compression of trachea, subsequent encounter +C2870295|T037|AB|T18.120S|ICD10CM|Food in esophagus causing compression of trachea, sequela|Food in esophagus causing compression of trachea, sequela +C2870295|T037|PT|T18.120S|ICD10CM|Food in esophagus causing compression of trachea, sequela|Food in esophagus causing compression of trachea, sequela +C2870296|T037|AB|T18.128|ICD10CM|Food in esophagus causing other injury|Food in esophagus causing other injury +C2870296|T037|HT|T18.128|ICD10CM|Food in esophagus causing other injury|Food in esophagus causing other injury +C2870297|T037|AB|T18.128A|ICD10CM|Food in esophagus causing other injury, initial encounter|Food in esophagus causing other injury, initial encounter +C2870297|T037|PT|T18.128A|ICD10CM|Food in esophagus causing other injury, initial encounter|Food in esophagus causing other injury, initial encounter +C2870298|T037|AB|T18.128D|ICD10CM|Food in esophagus causing other injury, subsequent encounter|Food in esophagus causing other injury, subsequent encounter +C2870298|T037|PT|T18.128D|ICD10CM|Food in esophagus causing other injury, subsequent encounter|Food in esophagus causing other injury, subsequent encounter +C2870299|T037|AB|T18.128S|ICD10CM|Food in esophagus causing other injury, sequela|Food in esophagus causing other injury, sequela +C2870299|T037|PT|T18.128S|ICD10CM|Food in esophagus causing other injury, sequela|Food in esophagus causing other injury, sequela +C2870300|T037|AB|T18.19|ICD10CM|Other foreign object in esophagus|Other foreign object in esophagus +C2870300|T037|HT|T18.19|ICD10CM|Other foreign object in esophagus|Other foreign object in esophagus +C2870302|T037|AB|T18.190|ICD10CM|Oth foreign object in esophagus causing comprsn of trachea|Oth foreign object in esophagus causing comprsn of trachea +C2870301|T037|ET|T18.190|ICD10CM|Other foreign body in esophagus causing obstruction of respiration|Other foreign body in esophagus causing obstruction of respiration +C2870302|T037|HT|T18.190|ICD10CM|Other foreign object in esophagus causing compression of trachea|Other foreign object in esophagus causing compression of trachea +C2870303|T037|AB|T18.190A|ICD10CM|Oth foreign object in esoph causing comprsn of trachea, init|Oth foreign object in esoph causing comprsn of trachea, init +C2870303|T037|PT|T18.190A|ICD10CM|Other foreign object in esophagus causing compression of trachea, initial encounter|Other foreign object in esophagus causing compression of trachea, initial encounter +C2870304|T037|AB|T18.190D|ICD10CM|Oth foreign object in esoph causing comprsn of trachea, subs|Oth foreign object in esoph causing comprsn of trachea, subs +C2870304|T037|PT|T18.190D|ICD10CM|Other foreign object in esophagus causing compression of trachea, subsequent encounter|Other foreign object in esophagus causing compression of trachea, subsequent encounter +C2870305|T037|AB|T18.190S|ICD10CM|Oth forn object in esoph cause comprsn of trachea, sequela|Oth forn object in esoph cause comprsn of trachea, sequela +C2870305|T037|PT|T18.190S|ICD10CM|Other foreign object in esophagus causing compression of trachea, sequela|Other foreign object in esophagus causing compression of trachea, sequela +C2870306|T037|AB|T18.198|ICD10CM|Other foreign object in esophagus causing other injury|Other foreign object in esophagus causing other injury +C2870306|T037|HT|T18.198|ICD10CM|Other foreign object in esophagus causing other injury|Other foreign object in esophagus causing other injury +C2870307|T037|AB|T18.198A|ICD10CM|Oth foreign object in esophagus causing oth injury, init|Oth foreign object in esophagus causing oth injury, init +C2870307|T037|PT|T18.198A|ICD10CM|Other foreign object in esophagus causing other injury, initial encounter|Other foreign object in esophagus causing other injury, initial encounter +C2870308|T037|AB|T18.198D|ICD10CM|Oth foreign object in esophagus causing oth injury, subs|Oth foreign object in esophagus causing oth injury, subs +C2870308|T037|PT|T18.198D|ICD10CM|Other foreign object in esophagus causing other injury, subsequent encounter|Other foreign object in esophagus causing other injury, subsequent encounter +C2870309|T037|AB|T18.198S|ICD10CM|Oth foreign object in esophagus causing oth injury, sequela|Oth foreign object in esophagus causing oth injury, sequela +C2870309|T037|PT|T18.198S|ICD10CM|Other foreign object in esophagus causing other injury, sequela|Other foreign object in esophagus causing other injury, sequela +C0161019|T037|PT|T18.2|ICD10|Foreign body in stomach|Foreign body in stomach +C0161019|T037|HT|T18.2|ICD10CM|Foreign body in stomach|Foreign body in stomach +C0161019|T037|AB|T18.2|ICD10CM|Foreign body in stomach|Foreign body in stomach +C2870310|T037|AB|T18.2XXA|ICD10CM|Foreign body in stomach, initial encounter|Foreign body in stomach, initial encounter +C2870310|T037|PT|T18.2XXA|ICD10CM|Foreign body in stomach, initial encounter|Foreign body in stomach, initial encounter +C2870311|T037|AB|T18.2XXD|ICD10CM|Foreign body in stomach, subsequent encounter|Foreign body in stomach, subsequent encounter +C2870311|T037|PT|T18.2XXD|ICD10CM|Foreign body in stomach, subsequent encounter|Foreign body in stomach, subsequent encounter +C2870312|T037|AB|T18.2XXS|ICD10CM|Foreign body in stomach, sequela|Foreign body in stomach, sequela +C2870312|T037|PT|T18.2XXS|ICD10CM|Foreign body in stomach, sequela|Foreign body in stomach, sequela +C0496025|T037|HT|T18.3|ICD10CM|Foreign body in small intestine|Foreign body in small intestine +C0496025|T037|AB|T18.3|ICD10CM|Foreign body in small intestine|Foreign body in small intestine +C0496025|T037|PT|T18.3|ICD10|Foreign body in small intestine|Foreign body in small intestine +C2870313|T037|AB|T18.3XXA|ICD10CM|Foreign body in small intestine, initial encounter|Foreign body in small intestine, initial encounter +C2870313|T037|PT|T18.3XXA|ICD10CM|Foreign body in small intestine, initial encounter|Foreign body in small intestine, initial encounter +C2870314|T037|AB|T18.3XXD|ICD10CM|Foreign body in small intestine, subsequent encounter|Foreign body in small intestine, subsequent encounter +C2870314|T037|PT|T18.3XXD|ICD10CM|Foreign body in small intestine, subsequent encounter|Foreign body in small intestine, subsequent encounter +C2870315|T037|AB|T18.3XXS|ICD10CM|Foreign body in small intestine, sequela|Foreign body in small intestine, sequela +C2870315|T037|PT|T18.3XXS|ICD10CM|Foreign body in small intestine, sequela|Foreign body in small intestine, sequela +C2004490|T037|HT|T18.4|ICD10CM|Foreign body in colon|Foreign body in colon +C2004490|T037|AB|T18.4|ICD10CM|Foreign body in colon|Foreign body in colon +C2004490|T037|PT|T18.4|ICD10|Foreign body in colon|Foreign body in colon +C2870316|T037|AB|T18.4XXA|ICD10CM|Foreign body in colon, initial encounter|Foreign body in colon, initial encounter +C2870316|T037|PT|T18.4XXA|ICD10CM|Foreign body in colon, initial encounter|Foreign body in colon, initial encounter +C2870317|T037|AB|T18.4XXD|ICD10CM|Foreign body in colon, subsequent encounter|Foreign body in colon, subsequent encounter +C2870317|T037|PT|T18.4XXD|ICD10CM|Foreign body in colon, subsequent encounter|Foreign body in colon, subsequent encounter +C2870318|T037|AB|T18.4XXS|ICD10CM|Foreign body in colon, sequela|Foreign body in colon, sequela +C2870318|T037|PT|T18.4XXS|ICD10CM|Foreign body in colon, sequela|Foreign body in colon, sequela +C0161021|T037|HT|T18.5|ICD10CM|Foreign body in anus and rectum|Foreign body in anus and rectum +C0161021|T037|AB|T18.5|ICD10CM|Foreign body in anus and rectum|Foreign body in anus and rectum +C0161021|T037|PT|T18.5|ICD10|Foreign body in anus and rectum|Foreign body in anus and rectum +C0274259|T037|ET|T18.5|ICD10CM|Foreign body in rectosigmoid (junction)|Foreign body in rectosigmoid (junction) +C2870319|T037|AB|T18.5XXA|ICD10CM|Foreign body in anus and rectum, initial encounter|Foreign body in anus and rectum, initial encounter +C2870319|T037|PT|T18.5XXA|ICD10CM|Foreign body in anus and rectum, initial encounter|Foreign body in anus and rectum, initial encounter +C2870320|T037|AB|T18.5XXD|ICD10CM|Foreign body in anus and rectum, subsequent encounter|Foreign body in anus and rectum, subsequent encounter +C2870320|T037|PT|T18.5XXD|ICD10CM|Foreign body in anus and rectum, subsequent encounter|Foreign body in anus and rectum, subsequent encounter +C2870321|T037|AB|T18.5XXS|ICD10CM|Foreign body in anus and rectum, sequela|Foreign body in anus and rectum, sequela +C2870321|T037|PT|T18.5XXS|ICD10CM|Foreign body in anus and rectum, sequela|Foreign body in anus and rectum, sequela +C0496026|T037|PT|T18.8|ICD10|Foreign body in other and multiple parts of alimentary tract|Foreign body in other and multiple parts of alimentary tract +C2870322|T037|AB|T18.8|ICD10CM|Foreign body in other parts of alimentary tract|Foreign body in other parts of alimentary tract +C2870322|T037|HT|T18.8|ICD10CM|Foreign body in other parts of alimentary tract|Foreign body in other parts of alimentary tract +C2870323|T037|AB|T18.8XXA|ICD10CM|Foreign body in other parts of alimentary tract, init encntr|Foreign body in other parts of alimentary tract, init encntr +C2870323|T037|PT|T18.8XXA|ICD10CM|Foreign body in other parts of alimentary tract, initial encounter|Foreign body in other parts of alimentary tract, initial encounter +C2870324|T037|AB|T18.8XXD|ICD10CM|Foreign body in other parts of alimentary tract, subs encntr|Foreign body in other parts of alimentary tract, subs encntr +C2870324|T037|PT|T18.8XXD|ICD10CM|Foreign body in other parts of alimentary tract, subsequent encounter|Foreign body in other parts of alimentary tract, subsequent encounter +C2870325|T037|AB|T18.8XXS|ICD10CM|Foreign body in other parts of alimentary tract, sequela|Foreign body in other parts of alimentary tract, sequela +C2870325|T037|PT|T18.8XXS|ICD10CM|Foreign body in other parts of alimentary tract, sequela|Foreign body in other parts of alimentary tract, sequela +C0016546|T037|PT|T18.9|ICD10|Foreign body in alimentary tract, part unspecified|Foreign body in alimentary tract, part unspecified +C0016546|T037|ET|T18.9|ICD10CM|Foreign body in digestive system NOS|Foreign body in digestive system NOS +C0016546|T037|AB|T18.9|ICD10CM|Foreign body of alimentary tract, part unspecified|Foreign body of alimentary tract, part unspecified +C0016546|T037|HT|T18.9|ICD10CM|Foreign body of alimentary tract, part unspecified|Foreign body of alimentary tract, part unspecified +C0520753|T033|ET|T18.9|ICD10CM|Swallowed foreign body NOS|Swallowed foreign body NOS +C2870326|T037|AB|T18.9XXA|ICD10CM|Foreign body of alimentary tract, part unsp, init encntr|Foreign body of alimentary tract, part unsp, init encntr +C2870326|T037|PT|T18.9XXA|ICD10CM|Foreign body of alimentary tract, part unspecified, initial encounter|Foreign body of alimentary tract, part unspecified, initial encounter +C2870327|T037|AB|T18.9XXD|ICD10CM|Foreign body of alimentary tract, part unsp, subs encntr|Foreign body of alimentary tract, part unsp, subs encntr +C2870327|T037|PT|T18.9XXD|ICD10CM|Foreign body of alimentary tract, part unspecified, subsequent encounter|Foreign body of alimentary tract, part unspecified, subsequent encounter +C2870328|T037|AB|T18.9XXS|ICD10CM|Foreign body of alimentary tract, part unspecified, sequela|Foreign body of alimentary tract, part unspecified, sequela +C2870328|T037|PT|T18.9XXS|ICD10CM|Foreign body of alimentary tract, part unspecified, sequela|Foreign body of alimentary tract, part unspecified, sequela +C0161022|T037|HT|T19|ICD10|Foreign body in genitourinary tract|Foreign body in genitourinary tract +C0161022|T037|HT|T19|ICD10CM|Foreign body in genitourinary tract|Foreign body in genitourinary tract +C0161022|T037|AB|T19|ICD10CM|Foreign body in genitourinary tract|Foreign body in genitourinary tract +C0433676|T037|HT|T19.0|ICD10CM|Foreign body in urethra|Foreign body in urethra +C0433676|T037|AB|T19.0|ICD10CM|Foreign body in urethra|Foreign body in urethra +C0433676|T037|PT|T19.0|ICD10|Foreign body in urethra|Foreign body in urethra +C2870329|T037|AB|T19.0XXA|ICD10CM|Foreign body in urethra, initial encounter|Foreign body in urethra, initial encounter +C2870329|T037|PT|T19.0XXA|ICD10CM|Foreign body in urethra, initial encounter|Foreign body in urethra, initial encounter +C2870330|T037|AB|T19.0XXD|ICD10CM|Foreign body in urethra, subsequent encounter|Foreign body in urethra, subsequent encounter +C2870330|T037|PT|T19.0XXD|ICD10CM|Foreign body in urethra, subsequent encounter|Foreign body in urethra, subsequent encounter +C2870331|T037|AB|T19.0XXS|ICD10CM|Foreign body in urethra, sequela|Foreign body in urethra, sequela +C2870331|T037|PT|T19.0XXS|ICD10CM|Foreign body in urethra, sequela|Foreign body in urethra, sequela +C0238022|T037|PT|T19.1|ICD10|Foreign body in bladder|Foreign body in bladder +C0238022|T037|HT|T19.1|ICD10CM|Foreign body in bladder|Foreign body in bladder +C0238022|T037|AB|T19.1|ICD10CM|Foreign body in bladder|Foreign body in bladder +C2870332|T037|AB|T19.1XXA|ICD10CM|Foreign body in bladder, initial encounter|Foreign body in bladder, initial encounter +C2870332|T037|PT|T19.1XXA|ICD10CM|Foreign body in bladder, initial encounter|Foreign body in bladder, initial encounter +C2870333|T037|AB|T19.1XXD|ICD10CM|Foreign body in bladder, subsequent encounter|Foreign body in bladder, subsequent encounter +C2870333|T037|PT|T19.1XXD|ICD10CM|Foreign body in bladder, subsequent encounter|Foreign body in bladder, subsequent encounter +C2870334|T037|AB|T19.1XXS|ICD10CM|Foreign body in bladder, sequela|Foreign body in bladder, sequela +C2870334|T037|PT|T19.1XXS|ICD10CM|Foreign body in bladder, sequela|Foreign body in bladder, sequela +C0161025|T037|HT|T19.2|ICD10CM|Foreign body in vulva and vagina|Foreign body in vulva and vagina +C0161025|T037|AB|T19.2|ICD10CM|Foreign body in vulva and vagina|Foreign body in vulva and vagina +C0161025|T037|PT|T19.2|ICD10|Foreign body in vulva and vagina|Foreign body in vulva and vagina +C2870335|T037|AB|T19.2XXA|ICD10CM|Foreign body in vulva and vagina, initial encounter|Foreign body in vulva and vagina, initial encounter +C2870335|T037|PT|T19.2XXA|ICD10CM|Foreign body in vulva and vagina, initial encounter|Foreign body in vulva and vagina, initial encounter +C2870336|T037|AB|T19.2XXD|ICD10CM|Foreign body in vulva and vagina, subsequent encounter|Foreign body in vulva and vagina, subsequent encounter +C2870336|T037|PT|T19.2XXD|ICD10CM|Foreign body in vulva and vagina, subsequent encounter|Foreign body in vulva and vagina, subsequent encounter +C2870337|T037|AB|T19.2XXS|ICD10CM|Foreign body in vulva and vagina, sequela|Foreign body in vulva and vagina, sequela +C2870337|T037|PT|T19.2XXS|ICD10CM|Foreign body in vulva and vagina, sequela|Foreign body in vulva and vagina, sequela +C0433686|T037|AB|T19.3|ICD10CM|Foreign body in uterus|Foreign body in uterus +C0433686|T037|HT|T19.3|ICD10CM|Foreign body in uterus|Foreign body in uterus +C0433686|T037|PT|T19.3|ICD10|Foreign body in uterus [any part]|Foreign body in uterus [any part] +C2870338|T037|AB|T19.3XXA|ICD10CM|Foreign body in uterus, initial encounter|Foreign body in uterus, initial encounter +C2870338|T037|PT|T19.3XXA|ICD10CM|Foreign body in uterus, initial encounter|Foreign body in uterus, initial encounter +C2870339|T037|AB|T19.3XXD|ICD10CM|Foreign body in uterus, subsequent encounter|Foreign body in uterus, subsequent encounter +C2870339|T037|PT|T19.3XXD|ICD10CM|Foreign body in uterus, subsequent encounter|Foreign body in uterus, subsequent encounter +C2870340|T037|AB|T19.3XXS|ICD10CM|Foreign body in uterus, sequela|Foreign body in uterus, sequela +C2870340|T037|PT|T19.3XXS|ICD10CM|Foreign body in uterus, sequela|Foreign body in uterus, sequela +C0161026|T037|HT|T19.4|ICD10CM|Foreign body in penis|Foreign body in penis +C0161026|T037|AB|T19.4|ICD10CM|Foreign body in penis|Foreign body in penis +C2870341|T037|AB|T19.4XXA|ICD10CM|Foreign body in penis, initial encounter|Foreign body in penis, initial encounter +C2870341|T037|PT|T19.4XXA|ICD10CM|Foreign body in penis, initial encounter|Foreign body in penis, initial encounter +C2870342|T037|AB|T19.4XXD|ICD10CM|Foreign body in penis, subsequent encounter|Foreign body in penis, subsequent encounter +C2870342|T037|PT|T19.4XXD|ICD10CM|Foreign body in penis, subsequent encounter|Foreign body in penis, subsequent encounter +C2870343|T037|AB|T19.4XXS|ICD10CM|Foreign body in penis, sequela|Foreign body in penis, sequela +C2870343|T037|PT|T19.4XXS|ICD10CM|Foreign body in penis, sequela|Foreign body in penis, sequela +C0496027|T037|PT|T19.8|ICD10|Foreign body in other and multiple parts of genitourinary tract|Foreign body in other and multiple parts of genitourinary tract +C2870344|T037|AB|T19.8|ICD10CM|Foreign body in other parts of genitourinary tract|Foreign body in other parts of genitourinary tract +C2870344|T037|HT|T19.8|ICD10CM|Foreign body in other parts of genitourinary tract|Foreign body in other parts of genitourinary tract +C2870345|T037|AB|T19.8XXA|ICD10CM|Foreign body in oth prt genitourinary tract, init encntr|Foreign body in oth prt genitourinary tract, init encntr +C2870345|T037|PT|T19.8XXA|ICD10CM|Foreign body in other parts of genitourinary tract, initial encounter|Foreign body in other parts of genitourinary tract, initial encounter +C2870346|T037|AB|T19.8XXD|ICD10CM|Foreign body in oth prt genitourinary tract, subs encntr|Foreign body in oth prt genitourinary tract, subs encntr +C2870346|T037|PT|T19.8XXD|ICD10CM|Foreign body in other parts of genitourinary tract, subsequent encounter|Foreign body in other parts of genitourinary tract, subsequent encounter +C2870347|T037|AB|T19.8XXS|ICD10CM|Foreign body in other parts of genitourinary tract, sequela|Foreign body in other parts of genitourinary tract, sequela +C2870347|T037|PT|T19.8XXS|ICD10CM|Foreign body in other parts of genitourinary tract, sequela|Foreign body in other parts of genitourinary tract, sequela +C0161022|T037|PT|T19.9|ICD10|Foreign body in genitourinary tract, part unspecified|Foreign body in genitourinary tract, part unspecified +C0161022|T037|HT|T19.9|ICD10CM|Foreign body in genitourinary tract, part unspecified|Foreign body in genitourinary tract, part unspecified +C0161022|T037|AB|T19.9|ICD10CM|Foreign body in genitourinary tract, part unspecified|Foreign body in genitourinary tract, part unspecified +C2870348|T037|AB|T19.9XXA|ICD10CM|Foreign body in genitourinary tract, part unsp, init encntr|Foreign body in genitourinary tract, part unsp, init encntr +C2870348|T037|PT|T19.9XXA|ICD10CM|Foreign body in genitourinary tract, part unspecified, initial encounter|Foreign body in genitourinary tract, part unspecified, initial encounter +C2870349|T037|AB|T19.9XXD|ICD10CM|Foreign body in genitourinary tract, part unsp, subs encntr|Foreign body in genitourinary tract, part unsp, subs encntr +C2870349|T037|PT|T19.9XXD|ICD10CM|Foreign body in genitourinary tract, part unspecified, subsequent encounter|Foreign body in genitourinary tract, part unspecified, subsequent encounter +C2870350|T037|AB|T19.9XXS|ICD10CM|Foreign body in genitourinary tract, part unsp, sequela|Foreign body in genitourinary tract, part unsp, sequela +C2870350|T037|PT|T19.9XXS|ICD10CM|Foreign body in genitourinary tract, part unspecified, sequela|Foreign body in genitourinary tract, part unspecified, sequela +C0496028|T037|HT|T20|ICD10|Burn and corrosion of head and neck|Burn and corrosion of head and neck +C2870351|T037|AB|T20|ICD10CM|Burn and corrosion of head, face, and neck|Burn and corrosion of head, face, and neck +C2870351|T037|HT|T20|ICD10CM|Burn and corrosion of head, face, and neck|Burn and corrosion of head, face, and neck +C0694461|T037|HT|T20-T25|ICD10CM|Burns and corrosions of external body surface, specified by site (T20-T25)|Burns and corrosions of external body surface, specified by site (T20-T25) +C4290394|T037|ET|T20-T25|ICD10CM|burns and corrosions of first degree [erythema]|burns and corrosions of first degree [erythema] +C4290395|T037|ET|T20-T25|ICD10CM|burns and corrosions of second degree [blisters][epidermal loss]|burns and corrosions of second degree [blisters][epidermal loss] +C0694461|T037|HT|T20-T25.9|ICD10|Burns and corrosions of external body surface, specified by site|Burns and corrosions of external body surface, specified by site +C4290386|T037|ET|T20-T32|ICD10CM|burns (thermal) from electrical heating appliances|burns (thermal) from electrical heating appliances +C4290387|T037|ET|T20-T32|ICD10CM|burns (thermal) from electricity|burns (thermal) from electricity +C4290388|T037|ET|T20-T32|ICD10CM|burns (thermal) from flame|burns (thermal) from flame +C4290389|T037|ET|T20-T32|ICD10CM|burns (thermal) from friction|burns (thermal) from friction +C4290390|T037|ET|T20-T32|ICD10CM|burns (thermal) from hot air and hot gases|burns (thermal) from hot air and hot gases +C4290391|T037|ET|T20-T32|ICD10CM|burns (thermal) from hot objects|burns (thermal) from hot objects +C0413292|T037|ET|T20-T32|ICD10CM|burns (thermal) from lightning|burns (thermal) from lightning +C4290392|T037|ET|T20-T32|ICD10CM|burns (thermal) from radiation|burns (thermal) from radiation +C4270112|T037|HT|T20-T32|ICD10CM|Burns and corrosions (T20-T32)|Burns and corrosions (T20-T32) +C4290393|T037|ET|T20-T32|ICD10CM|chemical burn [corrosion] (external) (internal)|chemical burn [corrosion] (external) (internal) +C0332691|T037|ET|T20-T32|ICD10CM|scalds|scalds +C0478403|T037|HT|T20-T32.9|ICD10|Burns and corrosions|Burns and corrosions +C0496029|T037|PT|T20.0|ICD10|Burn of unspecified degree of head and neck|Burn of unspecified degree of head and neck +C0496029|T037|AB|T20.0|ICD10CM|Burn of unspecified degree of head, face, and neck|Burn of unspecified degree of head, face, and neck +C0496029|T037|HT|T20.0|ICD10CM|Burn of unspecified degree of head, face, and neck|Burn of unspecified degree of head, face, and neck +C2870363|T037|AB|T20.00|ICD10CM|Burn of unsp degree of head, face, and neck, unsp site|Burn of unsp degree of head, face, and neck, unsp site +C2870363|T037|HT|T20.00|ICD10CM|Burn of unspecified degree of head, face, and neck, unspecified site|Burn of unspecified degree of head, face, and neck, unspecified site +C2870364|T037|AB|T20.00XA|ICD10CM|Burn of unsp degree of head, face, and neck, unsp site, init|Burn of unsp degree of head, face, and neck, unsp site, init +C2870364|T037|PT|T20.00XA|ICD10CM|Burn of unspecified degree of head, face, and neck, unspecified site, initial encounter|Burn of unspecified degree of head, face, and neck, unspecified site, initial encounter +C2870365|T037|AB|T20.00XD|ICD10CM|Burn of unsp degree of head, face, and neck, unsp site, subs|Burn of unsp degree of head, face, and neck, unsp site, subs +C2870365|T037|PT|T20.00XD|ICD10CM|Burn of unspecified degree of head, face, and neck, unspecified site, subsequent encounter|Burn of unspecified degree of head, face, and neck, unspecified site, subsequent encounter +C2870366|T037|PT|T20.00XS|ICD10CM|Burn of unspecified degree of head, face, and neck, unspecified site, sequela|Burn of unspecified degree of head, face, and neck, unspecified site, sequela +C2870366|T037|AB|T20.00XS|ICD10CM|Burn unsp degree of head, face, and neck, unsp site, sequela|Burn unsp degree of head, face, and neck, unsp site, sequela +C2870367|T037|AB|T20.01|ICD10CM|Burn of unspecified degree of ear|Burn of unspecified degree of ear +C2870367|T037|HT|T20.01|ICD10CM|Burn of unspecified degree of ear [any part, except ear drum]|Burn of unspecified degree of ear [any part, except ear drum] +C2870368|T037|AB|T20.011|ICD10CM|Burn of unspecified degree of right ear|Burn of unspecified degree of right ear +C2870368|T037|HT|T20.011|ICD10CM|Burn of unspecified degree of right ear [any part, except ear drum]|Burn of unspecified degree of right ear [any part, except ear drum] +C2870369|T037|PT|T20.011A|ICD10CM|Burn of unspecified degree of right ear [any part, except ear drum], initial encounter|Burn of unspecified degree of right ear [any part, except ear drum], initial encounter +C2870369|T037|AB|T20.011A|ICD10CM|Burn of unspecified degree of right ear, initial encounter|Burn of unspecified degree of right ear, initial encounter +C2870370|T037|PT|T20.011D|ICD10CM|Burn of unspecified degree of right ear [any part, except ear drum], subsequent encounter|Burn of unspecified degree of right ear [any part, except ear drum], subsequent encounter +C2870370|T037|AB|T20.011D|ICD10CM|Burn of unspecified degree of right ear, subs encntr|Burn of unspecified degree of right ear, subs encntr +C2870371|T037|PT|T20.011S|ICD10CM|Burn of unspecified degree of right ear [any part, except ear drum], sequela|Burn of unspecified degree of right ear [any part, except ear drum], sequela +C2870371|T037|AB|T20.011S|ICD10CM|Burn of unspecified degree of right ear, sequela|Burn of unspecified degree of right ear, sequela +C2870372|T037|AB|T20.012|ICD10CM|Burn of unspecified degree of left ear|Burn of unspecified degree of left ear +C2870372|T037|HT|T20.012|ICD10CM|Burn of unspecified degree of left ear [any part, except ear drum]|Burn of unspecified degree of left ear [any part, except ear drum] +C2870373|T037|PT|T20.012A|ICD10CM|Burn of unspecified degree of left ear [any part, except ear drum], initial encounter|Burn of unspecified degree of left ear [any part, except ear drum], initial encounter +C2870373|T037|AB|T20.012A|ICD10CM|Burn of unspecified degree of left ear, initial encounter|Burn of unspecified degree of left ear, initial encounter +C2870374|T037|PT|T20.012D|ICD10CM|Burn of unspecified degree of left ear [any part, except ear drum], subsequent encounter|Burn of unspecified degree of left ear [any part, except ear drum], subsequent encounter +C2870374|T037|AB|T20.012D|ICD10CM|Burn of unspecified degree of left ear, subsequent encounter|Burn of unspecified degree of left ear, subsequent encounter +C2870375|T037|PT|T20.012S|ICD10CM|Burn of unspecified degree of left ear [any part, except ear drum], sequela|Burn of unspecified degree of left ear [any part, except ear drum], sequela +C2870375|T037|AB|T20.012S|ICD10CM|Burn of unspecified degree of left ear, sequela|Burn of unspecified degree of left ear, sequela +C2870376|T037|AB|T20.019|ICD10CM|Burn of unspecified degree of unspecified ear|Burn of unspecified degree of unspecified ear +C2870376|T037|HT|T20.019|ICD10CM|Burn of unspecified degree of unspecified ear [any part, except ear drum]|Burn of unspecified degree of unspecified ear [any part, except ear drum] +C2870377|T037|PT|T20.019A|ICD10CM|Burn of unspecified degree of unspecified ear [any part, except ear drum], initial encounter|Burn of unspecified degree of unspecified ear [any part, except ear drum], initial encounter +C2870377|T037|AB|T20.019A|ICD10CM|Burn of unspecified degree of unspecified ear, init encntr|Burn of unspecified degree of unspecified ear, init encntr +C2870378|T037|PT|T20.019D|ICD10CM|Burn of unspecified degree of unspecified ear [any part, except ear drum], subsequent encounter|Burn of unspecified degree of unspecified ear [any part, except ear drum], subsequent encounter +C2870378|T037|AB|T20.019D|ICD10CM|Burn of unspecified degree of unspecified ear, subs encntr|Burn of unspecified degree of unspecified ear, subs encntr +C2870379|T037|PT|T20.019S|ICD10CM|Burn of unspecified degree of unspecified ear [any part, except ear drum], sequela|Burn of unspecified degree of unspecified ear [any part, except ear drum], sequela +C2870379|T037|AB|T20.019S|ICD10CM|Burn of unspecified degree of unspecified ear, sequela|Burn of unspecified degree of unspecified ear, sequela +C0161037|T037|HT|T20.02|ICD10CM|Burn of unspecified degree of lip(s)|Burn of unspecified degree of lip(s) +C0161037|T037|AB|T20.02|ICD10CM|Burn of unspecified degree of lip(s)|Burn of unspecified degree of lip(s) +C2870380|T037|AB|T20.02XA|ICD10CM|Burn of unspecified degree of lip(s), initial encounter|Burn of unspecified degree of lip(s), initial encounter +C2870380|T037|PT|T20.02XA|ICD10CM|Burn of unspecified degree of lip(s), initial encounter|Burn of unspecified degree of lip(s), initial encounter +C2870381|T037|PT|T20.02XD|ICD10CM|Burn of unspecified degree of lip(s), subsequent encounter|Burn of unspecified degree of lip(s), subsequent encounter +C2870381|T037|AB|T20.02XD|ICD10CM|Burn of unspecified degree of lip(s), subsequent encounter|Burn of unspecified degree of lip(s), subsequent encounter +C2870382|T037|PT|T20.02XS|ICD10CM|Burn of unspecified degree of lip(s), sequela|Burn of unspecified degree of lip(s), sequela +C2870382|T037|AB|T20.02XS|ICD10CM|Burn of unspecified degree of lip(s), sequela|Burn of unspecified degree of lip(s), sequela +C0161038|T037|HT|T20.03|ICD10CM|Burn of unspecified degree of chin|Burn of unspecified degree of chin +C0161038|T037|AB|T20.03|ICD10CM|Burn of unspecified degree of chin|Burn of unspecified degree of chin +C2870383|T037|PT|T20.03XA|ICD10CM|Burn of unspecified degree of chin, initial encounter|Burn of unspecified degree of chin, initial encounter +C2870383|T037|AB|T20.03XA|ICD10CM|Burn of unspecified degree of chin, initial encounter|Burn of unspecified degree of chin, initial encounter +C2870384|T037|PT|T20.03XD|ICD10CM|Burn of unspecified degree of chin, subsequent encounter|Burn of unspecified degree of chin, subsequent encounter +C2870384|T037|AB|T20.03XD|ICD10CM|Burn of unspecified degree of chin, subsequent encounter|Burn of unspecified degree of chin, subsequent encounter +C2870385|T037|PT|T20.03XS|ICD10CM|Burn of unspecified degree of chin, sequela|Burn of unspecified degree of chin, sequela +C2870385|T037|AB|T20.03XS|ICD10CM|Burn of unspecified degree of chin, sequela|Burn of unspecified degree of chin, sequela +C0869240|T037|HT|T20.04|ICD10CM|Burn of unspecified degree of nose (septum)|Burn of unspecified degree of nose (septum) +C0869240|T037|AB|T20.04|ICD10CM|Burn of unspecified degree of nose (septum)|Burn of unspecified degree of nose (septum) +C2870386|T037|AB|T20.04XA|ICD10CM|Burn of unspecified degree of nose (septum), init encntr|Burn of unspecified degree of nose (septum), init encntr +C2870386|T037|PT|T20.04XA|ICD10CM|Burn of unspecified degree of nose (septum), initial encounter|Burn of unspecified degree of nose (septum), initial encounter +C2870387|T037|AB|T20.04XD|ICD10CM|Burn of unspecified degree of nose (septum), subs encntr|Burn of unspecified degree of nose (septum), subs encntr +C2870387|T037|PT|T20.04XD|ICD10CM|Burn of unspecified degree of nose (septum), subsequent encounter|Burn of unspecified degree of nose (septum), subsequent encounter +C2870388|T037|PT|T20.04XS|ICD10CM|Burn of unspecified degree of nose (septum), sequela|Burn of unspecified degree of nose (septum), sequela +C2870388|T037|AB|T20.04XS|ICD10CM|Burn of unspecified degree of nose (septum), sequela|Burn of unspecified degree of nose (septum), sequela +C0273970|T037|HT|T20.05|ICD10CM|Burn of unspecified degree of scalp [any part]|Burn of unspecified degree of scalp [any part] +C0273970|T037|AB|T20.05|ICD10CM|Burn of unspecified degree of scalp [any part]|Burn of unspecified degree of scalp [any part] +C2870389|T037|PT|T20.05XA|ICD10CM|Burn of unspecified degree of scalp [any part], initial encounter|Burn of unspecified degree of scalp [any part], initial encounter +C2870389|T037|AB|T20.05XA|ICD10CM|Burn of unspecified degree of scalp, initial encounter|Burn of unspecified degree of scalp, initial encounter +C2870390|T037|PT|T20.05XD|ICD10CM|Burn of unspecified degree of scalp [any part], subsequent encounter|Burn of unspecified degree of scalp [any part], subsequent encounter +C2870390|T037|AB|T20.05XD|ICD10CM|Burn of unspecified degree of scalp, subsequent encounter|Burn of unspecified degree of scalp, subsequent encounter +C2870391|T037|AB|T20.05XS|ICD10CM|Burn of unspecified degree of scalp [any part], sequela|Burn of unspecified degree of scalp [any part], sequela +C2870391|T037|PT|T20.05XS|ICD10CM|Burn of unspecified degree of scalp [any part], sequela|Burn of unspecified degree of scalp [any part], sequela +C0161041|T037|HT|T20.06|ICD10CM|Burn of unspecified degree of forehead and cheek|Burn of unspecified degree of forehead and cheek +C0161041|T037|AB|T20.06|ICD10CM|Burn of unspecified degree of forehead and cheek|Burn of unspecified degree of forehead and cheek +C2870392|T037|AB|T20.06XA|ICD10CM|Burn of unsp degree of forehead and cheek, init encntr|Burn of unsp degree of forehead and cheek, init encntr +C2870392|T037|PT|T20.06XA|ICD10CM|Burn of unspecified degree of forehead and cheek, initial encounter|Burn of unspecified degree of forehead and cheek, initial encounter +C2870393|T037|AB|T20.06XD|ICD10CM|Burn of unsp degree of forehead and cheek, subs encntr|Burn of unsp degree of forehead and cheek, subs encntr +C2870393|T037|PT|T20.06XD|ICD10CM|Burn of unspecified degree of forehead and cheek, subsequent encounter|Burn of unspecified degree of forehead and cheek, subsequent encounter +C2870394|T037|PT|T20.06XS|ICD10CM|Burn of unspecified degree of forehead and cheek, sequela|Burn of unspecified degree of forehead and cheek, sequela +C2870394|T037|AB|T20.06XS|ICD10CM|Burn of unspecified degree of forehead and cheek, sequela|Burn of unspecified degree of forehead and cheek, sequela +C0273982|T037|HT|T20.07|ICD10CM|Burn of unspecified degree of neck|Burn of unspecified degree of neck +C0273982|T037|AB|T20.07|ICD10CM|Burn of unspecified degree of neck|Burn of unspecified degree of neck +C2870395|T037|PT|T20.07XA|ICD10CM|Burn of unspecified degree of neck, initial encounter|Burn of unspecified degree of neck, initial encounter +C2870395|T037|AB|T20.07XA|ICD10CM|Burn of unspecified degree of neck, initial encounter|Burn of unspecified degree of neck, initial encounter +C2870396|T037|PT|T20.07XD|ICD10CM|Burn of unspecified degree of neck, subsequent encounter|Burn of unspecified degree of neck, subsequent encounter +C2870396|T037|AB|T20.07XD|ICD10CM|Burn of unspecified degree of neck, subsequent encounter|Burn of unspecified degree of neck, subsequent encounter +C2870397|T037|PT|T20.07XS|ICD10CM|Burn of unspecified degree of neck, sequela|Burn of unspecified degree of neck, sequela +C2870397|T037|AB|T20.07XS|ICD10CM|Burn of unspecified degree of neck, sequela|Burn of unspecified degree of neck, sequela +C0869242|T037|AB|T20.09|ICD10CM|Burn of unsp deg mult sites of head, face, and neck|Burn of unsp deg mult sites of head, face, and neck +C0869242|T037|HT|T20.09|ICD10CM|Burn of unspecified degree of multiple sites of head, face, and neck|Burn of unspecified degree of multiple sites of head, face, and neck +C2870398|T037|AB|T20.09XA|ICD10CM|Burn of unsp deg mult sites of head, face, and neck, init|Burn of unsp deg mult sites of head, face, and neck, init +C2870398|T037|PT|T20.09XA|ICD10CM|Burn of unspecified degree of multiple sites of head, face, and neck, initial encounter|Burn of unspecified degree of multiple sites of head, face, and neck, initial encounter +C2870399|T037|AB|T20.09XD|ICD10CM|Burn of unsp deg mult sites of head, face, and neck, subs|Burn of unsp deg mult sites of head, face, and neck, subs +C2870399|T037|PT|T20.09XD|ICD10CM|Burn of unspecified degree of multiple sites of head, face, and neck, subsequent encounter|Burn of unspecified degree of multiple sites of head, face, and neck, subsequent encounter +C2870400|T037|AB|T20.09XS|ICD10CM|Burn of unsp deg mult sites of head, face, and neck, sequela|Burn of unsp deg mult sites of head, face, and neck, sequela +C2870400|T037|PT|T20.09XS|ICD10CM|Burn of unspecified degree of multiple sites of head, face, and neck, sequela|Burn of unspecified degree of multiple sites of head, face, and neck, sequela +C0496030|T037|PT|T20.1|ICD10|Burn of first degree of head and neck|Burn of first degree of head and neck +C0273935|T037|AB|T20.1|ICD10CM|Burn of first degree of head, face, and neck|Burn of first degree of head, face, and neck +C0273935|T037|HT|T20.1|ICD10CM|Burn of first degree of head, face, and neck|Burn of first degree of head, face, and neck +C2870401|T037|AB|T20.10|ICD10CM|Burn of first degree of head, face, and neck, unsp site|Burn of first degree of head, face, and neck, unsp site +C2870401|T037|HT|T20.10|ICD10CM|Burn of first degree of head, face, and neck, unspecified site|Burn of first degree of head, face, and neck, unspecified site +C2870402|T037|AB|T20.10XA|ICD10CM|Burn first degree of head, face, and neck, unsp site, init|Burn first degree of head, face, and neck, unsp site, init +C2870402|T037|PT|T20.10XA|ICD10CM|Burn of first degree of head, face, and neck, unspecified site, initial encounter|Burn of first degree of head, face, and neck, unspecified site, initial encounter +C2870403|T037|AB|T20.10XD|ICD10CM|Burn first degree of head, face, and neck, unsp site, subs|Burn first degree of head, face, and neck, unsp site, subs +C2870403|T037|PT|T20.10XD|ICD10CM|Burn of first degree of head, face, and neck, unspecified site, subsequent encounter|Burn of first degree of head, face, and neck, unspecified site, subsequent encounter +C2870404|T037|AB|T20.10XS|ICD10CM|Burn first degree of head, face, and neck, unsp site, sqla|Burn first degree of head, face, and neck, unsp site, sqla +C2870404|T037|PT|T20.10XS|ICD10CM|Burn of first degree of head, face, and neck, unspecified site, sequela|Burn of first degree of head, face, and neck, unspecified site, sequela +C2870405|T037|AB|T20.11|ICD10CM|Burn of first degree of ear [any part, except ear drum]|Burn of first degree of ear [any part, except ear drum] +C2870405|T037|HT|T20.11|ICD10CM|Burn of first degree of ear [any part, except ear drum]|Burn of first degree of ear [any part, except ear drum] +C2870406|T037|AB|T20.111|ICD10CM|Burn of first degree of right ear|Burn of first degree of right ear +C2870406|T037|HT|T20.111|ICD10CM|Burn of first degree of right ear [any part, except ear drum]|Burn of first degree of right ear [any part, except ear drum] +C2870407|T037|PT|T20.111A|ICD10CM|Burn of first degree of right ear [any part, except ear drum], initial encounter|Burn of first degree of right ear [any part, except ear drum], initial encounter +C2870407|T037|AB|T20.111A|ICD10CM|Burn of first degree of right ear, initial encounter|Burn of first degree of right ear, initial encounter +C2870408|T037|PT|T20.111D|ICD10CM|Burn of first degree of right ear [any part, except ear drum], subsequent encounter|Burn of first degree of right ear [any part, except ear drum], subsequent encounter +C2870408|T037|AB|T20.111D|ICD10CM|Burn of first degree of right ear, subsequent encounter|Burn of first degree of right ear, subsequent encounter +C2870409|T037|PT|T20.111S|ICD10CM|Burn of first degree of right ear [any part, except ear drum], sequela|Burn of first degree of right ear [any part, except ear drum], sequela +C2870409|T037|AB|T20.111S|ICD10CM|Burn of first degree of right ear, sequela|Burn of first degree of right ear, sequela +C2870410|T037|AB|T20.112|ICD10CM|Burn of first degree of left ear [any part, except ear drum]|Burn of first degree of left ear [any part, except ear drum] +C2870410|T037|HT|T20.112|ICD10CM|Burn of first degree of left ear [any part, except ear drum]|Burn of first degree of left ear [any part, except ear drum] +C2870411|T037|PT|T20.112A|ICD10CM|Burn of first degree of left ear [any part, except ear drum], initial encounter|Burn of first degree of left ear [any part, except ear drum], initial encounter +C2870411|T037|AB|T20.112A|ICD10CM|Burn of first degree of left ear, initial encounter|Burn of first degree of left ear, initial encounter +C2870412|T037|PT|T20.112D|ICD10CM|Burn of first degree of left ear [any part, except ear drum], subsequent encounter|Burn of first degree of left ear [any part, except ear drum], subsequent encounter +C2870412|T037|AB|T20.112D|ICD10CM|Burn of first degree of left ear, subsequent encounter|Burn of first degree of left ear, subsequent encounter +C2870413|T037|PT|T20.112S|ICD10CM|Burn of first degree of left ear [any part, except ear drum], sequela|Burn of first degree of left ear [any part, except ear drum], sequela +C2870413|T037|AB|T20.112S|ICD10CM|Burn of first degree of left ear, sequela|Burn of first degree of left ear, sequela +C2870414|T037|AB|T20.119|ICD10CM|Burn of first degree of unspecified ear|Burn of first degree of unspecified ear +C2870414|T037|HT|T20.119|ICD10CM|Burn of first degree of unspecified ear [any part, except ear drum]|Burn of first degree of unspecified ear [any part, except ear drum] +C2870415|T037|PT|T20.119A|ICD10CM|Burn of first degree of unspecified ear [any part, except ear drum], initial encounter|Burn of first degree of unspecified ear [any part, except ear drum], initial encounter +C2870415|T037|AB|T20.119A|ICD10CM|Burn of first degree of unspecified ear, initial encounter|Burn of first degree of unspecified ear, initial encounter +C2870416|T037|PT|T20.119D|ICD10CM|Burn of first degree of unspecified ear [any part, except ear drum], subsequent encounter|Burn of first degree of unspecified ear [any part, except ear drum], subsequent encounter +C2870416|T037|AB|T20.119D|ICD10CM|Burn of first degree of unspecified ear, subs encntr|Burn of first degree of unspecified ear, subs encntr +C2870417|T037|PT|T20.119S|ICD10CM|Burn of first degree of unspecified ear [any part, except ear drum], sequela|Burn of first degree of unspecified ear [any part, except ear drum], sequela +C2870417|T037|AB|T20.119S|ICD10CM|Burn of first degree of unspecified ear, sequela|Burn of first degree of unspecified ear, sequela +C0273953|T037|AB|T20.12|ICD10CM|Burn of first degree of lip(s)|Burn of first degree of lip(s) +C0273953|T037|HT|T20.12|ICD10CM|Burn of first degree of lip(s)|Burn of first degree of lip(s) +C2870418|T037|PT|T20.12XA|ICD10CM|Burn of first degree of lip(s), initial encounter|Burn of first degree of lip(s), initial encounter +C2870418|T037|AB|T20.12XA|ICD10CM|Burn of first degree of lip(s), initial encounter|Burn of first degree of lip(s), initial encounter +C2870419|T037|PT|T20.12XD|ICD10CM|Burn of first degree of lip(s), subsequent encounter|Burn of first degree of lip(s), subsequent encounter +C2870419|T037|AB|T20.12XD|ICD10CM|Burn of first degree of lip(s), subsequent encounter|Burn of first degree of lip(s), subsequent encounter +C2870420|T037|PT|T20.12XS|ICD10CM|Burn of first degree of lip(s), sequela|Burn of first degree of lip(s), sequela +C2870420|T037|AB|T20.12XS|ICD10CM|Burn of first degree of lip(s), sequela|Burn of first degree of lip(s), sequela +C0433307|T037|AB|T20.13|ICD10CM|Burn of first degree of chin|Burn of first degree of chin +C0433307|T037|HT|T20.13|ICD10CM|Burn of first degree of chin|Burn of first degree of chin +C2870421|T037|PT|T20.13XA|ICD10CM|Burn of first degree of chin, initial encounter|Burn of first degree of chin, initial encounter +C2870421|T037|AB|T20.13XA|ICD10CM|Burn of first degree of chin, initial encounter|Burn of first degree of chin, initial encounter +C2870422|T037|PT|T20.13XD|ICD10CM|Burn of first degree of chin, subsequent encounter|Burn of first degree of chin, subsequent encounter +C2870422|T037|AB|T20.13XD|ICD10CM|Burn of first degree of chin, subsequent encounter|Burn of first degree of chin, subsequent encounter +C2870423|T037|PT|T20.13XS|ICD10CM|Burn of first degree of chin, sequela|Burn of first degree of chin, sequela +C2870423|T037|AB|T20.13XS|ICD10CM|Burn of first degree of chin, sequela|Burn of first degree of chin, sequela +C2870424|T037|AB|T20.14|ICD10CM|Burn of first degree of nose (septum)|Burn of first degree of nose (septum) +C2870424|T037|HT|T20.14|ICD10CM|Burn of first degree of nose (septum)|Burn of first degree of nose (septum) +C2870425|T037|PT|T20.14XA|ICD10CM|Burn of first degree of nose (septum), initial encounter|Burn of first degree of nose (septum), initial encounter +C2870425|T037|AB|T20.14XA|ICD10CM|Burn of first degree of nose (septum), initial encounter|Burn of first degree of nose (septum), initial encounter +C2870426|T037|PT|T20.14XD|ICD10CM|Burn of first degree of nose (septum), subsequent encounter|Burn of first degree of nose (septum), subsequent encounter +C2870426|T037|AB|T20.14XD|ICD10CM|Burn of first degree of nose (septum), subsequent encounter|Burn of first degree of nose (septum), subsequent encounter +C2870427|T037|PT|T20.14XS|ICD10CM|Burn of first degree of nose (septum), sequela|Burn of first degree of nose (septum), sequela +C2870427|T037|AB|T20.14XS|ICD10CM|Burn of first degree of nose (septum), sequela|Burn of first degree of nose (septum), sequela +C2870428|T037|AB|T20.15|ICD10CM|Burn of first degree of scalp [any part]|Burn of first degree of scalp [any part] +C2870428|T037|HT|T20.15|ICD10CM|Burn of first degree of scalp [any part]|Burn of first degree of scalp [any part] +C2870429|T037|PT|T20.15XA|ICD10CM|Burn of first degree of scalp [any part], initial encounter|Burn of first degree of scalp [any part], initial encounter +C2870429|T037|AB|T20.15XA|ICD10CM|Burn of first degree of scalp [any part], initial encounter|Burn of first degree of scalp [any part], initial encounter +C2870430|T037|PT|T20.15XD|ICD10CM|Burn of first degree of scalp [any part], subsequent encounter|Burn of first degree of scalp [any part], subsequent encounter +C2870430|T037|AB|T20.15XD|ICD10CM|Burn of first degree of scalp, subsequent encounter|Burn of first degree of scalp, subsequent encounter +C2870431|T037|PT|T20.15XS|ICD10CM|Burn of first degree of scalp [any part], sequela|Burn of first degree of scalp [any part], sequela +C2870431|T037|AB|T20.15XS|ICD10CM|Burn of first degree of scalp [any part], sequela|Burn of first degree of scalp [any part], sequela +C0273977|T037|AB|T20.16|ICD10CM|Burn of first degree of forehead and cheek|Burn of first degree of forehead and cheek +C0273977|T037|HT|T20.16|ICD10CM|Burn of first degree of forehead and cheek|Burn of first degree of forehead and cheek +C2870432|T037|AB|T20.16XA|ICD10CM|Burn of first degree of forehead and cheek, init encntr|Burn of first degree of forehead and cheek, init encntr +C2870432|T037|PT|T20.16XA|ICD10CM|Burn of first degree of forehead and cheek, initial encounter|Burn of first degree of forehead and cheek, initial encounter +C2870433|T037|AB|T20.16XD|ICD10CM|Burn of first degree of forehead and cheek, subs encntr|Burn of first degree of forehead and cheek, subs encntr +C2870433|T037|PT|T20.16XD|ICD10CM|Burn of first degree of forehead and cheek, subsequent encounter|Burn of first degree of forehead and cheek, subsequent encounter +C2870434|T037|PT|T20.16XS|ICD10CM|Burn of first degree of forehead and cheek, sequela|Burn of first degree of forehead and cheek, sequela +C2870434|T037|AB|T20.16XS|ICD10CM|Burn of first degree of forehead and cheek, sequela|Burn of first degree of forehead and cheek, sequela +C0433302|T037|AB|T20.17|ICD10CM|Burn of first degree of neck|Burn of first degree of neck +C0433302|T037|HT|T20.17|ICD10CM|Burn of first degree of neck|Burn of first degree of neck +C2870435|T037|PT|T20.17XA|ICD10CM|Burn of first degree of neck, initial encounter|Burn of first degree of neck, initial encounter +C2870435|T037|AB|T20.17XA|ICD10CM|Burn of first degree of neck, initial encounter|Burn of first degree of neck, initial encounter +C2870436|T037|PT|T20.17XD|ICD10CM|Burn of first degree of neck, subsequent encounter|Burn of first degree of neck, subsequent encounter +C2870436|T037|AB|T20.17XD|ICD10CM|Burn of first degree of neck, subsequent encounter|Burn of first degree of neck, subsequent encounter +C2870437|T037|PT|T20.17XS|ICD10CM|Burn of first degree of neck, sequela|Burn of first degree of neck, sequela +C2870437|T037|AB|T20.17XS|ICD10CM|Burn of first degree of neck, sequela|Burn of first degree of neck, sequela +C2870438|T037|AB|T20.19|ICD10CM|Burn of first deg mult sites of head, face, and neck|Burn of first deg mult sites of head, face, and neck +C2870438|T037|HT|T20.19|ICD10CM|Burn of first degree of multiple sites of head, face, and neck|Burn of first degree of multiple sites of head, face, and neck +C2870439|T037|AB|T20.19XA|ICD10CM|Burn of first deg mult sites of head, face, and neck, init|Burn of first deg mult sites of head, face, and neck, init +C2870439|T037|PT|T20.19XA|ICD10CM|Burn of first degree of multiple sites of head, face, and neck, initial encounter|Burn of first degree of multiple sites of head, face, and neck, initial encounter +C2870440|T037|AB|T20.19XD|ICD10CM|Burn of first deg mult sites of head, face, and neck, subs|Burn of first deg mult sites of head, face, and neck, subs +C2870440|T037|PT|T20.19XD|ICD10CM|Burn of first degree of multiple sites of head, face, and neck, subsequent encounter|Burn of first degree of multiple sites of head, face, and neck, subsequent encounter +C2870441|T037|AB|T20.19XS|ICD10CM|Burn first deg mult sites of head, face, and neck, sequela|Burn first deg mult sites of head, face, and neck, sequela +C2870441|T037|PT|T20.19XS|ICD10CM|Burn of first degree of multiple sites of head, face, and neck, sequela|Burn of first degree of multiple sites of head, face, and neck, sequela +C0496031|T037|PT|T20.2|ICD10|Burn of second degree of head and neck|Burn of second degree of head and neck +C0273936|T037|AB|T20.2|ICD10CM|Burn of second degree of head, face, and neck|Burn of second degree of head, face, and neck +C0273936|T037|HT|T20.2|ICD10CM|Burn of second degree of head, face, and neck|Burn of second degree of head, face, and neck +C2870442|T037|AB|T20.20|ICD10CM|Burn of second degree of head, face, and neck, unsp site|Burn of second degree of head, face, and neck, unsp site +C2870442|T037|HT|T20.20|ICD10CM|Burn of second degree of head, face, and neck, unspecified site|Burn of second degree of head, face, and neck, unspecified site +C2870443|T037|PT|T20.20XA|ICD10CM|Burn of second degree of head, face, and neck, unspecified site, initial encounter|Burn of second degree of head, face, and neck, unspecified site, initial encounter +C2870443|T037|AB|T20.20XA|ICD10CM|Burn second degree of head, face, and neck, unsp site, init|Burn second degree of head, face, and neck, unsp site, init +C2870444|T037|PT|T20.20XD|ICD10CM|Burn of second degree of head, face, and neck, unspecified site, subsequent encounter|Burn of second degree of head, face, and neck, unspecified site, subsequent encounter +C2870444|T037|AB|T20.20XD|ICD10CM|Burn second degree of head, face, and neck, unsp site, subs|Burn second degree of head, face, and neck, unsp site, subs +C2870445|T037|PT|T20.20XS|ICD10CM|Burn of second degree of head, face, and neck, unspecified site, sequela|Burn of second degree of head, face, and neck, unspecified site, sequela +C2870445|T037|AB|T20.20XS|ICD10CM|Burn second degree of head, face, and neck, unsp site, sqla|Burn second degree of head, face, and neck, unsp site, sqla +C2870446|T037|AB|T20.21|ICD10CM|Burn of second degree of ear [any part, except ear drum]|Burn of second degree of ear [any part, except ear drum] +C2870446|T037|HT|T20.21|ICD10CM|Burn of second degree of ear [any part, except ear drum]|Burn of second degree of ear [any part, except ear drum] +C2870447|T037|AB|T20.211|ICD10CM|Burn of second degree of right ear|Burn of second degree of right ear +C2870447|T037|HT|T20.211|ICD10CM|Burn of second degree of right ear [any part, except ear drum]|Burn of second degree of right ear [any part, except ear drum] +C2870448|T037|PT|T20.211A|ICD10CM|Burn of second degree of right ear [any part, except ear drum], initial encounter|Burn of second degree of right ear [any part, except ear drum], initial encounter +C2870448|T037|AB|T20.211A|ICD10CM|Burn of second degree of right ear, initial encounter|Burn of second degree of right ear, initial encounter +C2870449|T037|PT|T20.211D|ICD10CM|Burn of second degree of right ear [any part, except ear drum], subsequent encounter|Burn of second degree of right ear [any part, except ear drum], subsequent encounter +C2870449|T037|AB|T20.211D|ICD10CM|Burn of second degree of right ear, subsequent encounter|Burn of second degree of right ear, subsequent encounter +C2870450|T037|PT|T20.211S|ICD10CM|Burn of second degree of right ear [any part, except ear drum], sequela|Burn of second degree of right ear [any part, except ear drum], sequela +C2870450|T037|AB|T20.211S|ICD10CM|Burn of second degree of right ear, sequela|Burn of second degree of right ear, sequela +C2870451|T037|AB|T20.212|ICD10CM|Burn of second degree of left ear|Burn of second degree of left ear +C2870451|T037|HT|T20.212|ICD10CM|Burn of second degree of left ear [any part, except ear drum]|Burn of second degree of left ear [any part, except ear drum] +C2870452|T037|PT|T20.212A|ICD10CM|Burn of second degree of left ear [any part, except ear drum], initial encounter|Burn of second degree of left ear [any part, except ear drum], initial encounter +C2870452|T037|AB|T20.212A|ICD10CM|Burn of second degree of left ear, initial encounter|Burn of second degree of left ear, initial encounter +C2870453|T037|PT|T20.212D|ICD10CM|Burn of second degree of left ear [any part, except ear drum], subsequent encounter|Burn of second degree of left ear [any part, except ear drum], subsequent encounter +C2870453|T037|AB|T20.212D|ICD10CM|Burn of second degree of left ear, subsequent encounter|Burn of second degree of left ear, subsequent encounter +C2870454|T037|PT|T20.212S|ICD10CM|Burn of second degree of left ear [any part, except ear drum], sequela|Burn of second degree of left ear [any part, except ear drum], sequela +C2870454|T037|AB|T20.212S|ICD10CM|Burn of second degree of left ear, sequela|Burn of second degree of left ear, sequela +C2870455|T037|AB|T20.219|ICD10CM|Burn of second degree of unspecified ear|Burn of second degree of unspecified ear +C2870455|T037|HT|T20.219|ICD10CM|Burn of second degree of unspecified ear [any part, except ear drum]|Burn of second degree of unspecified ear [any part, except ear drum] +C2870456|T037|PT|T20.219A|ICD10CM|Burn of second degree of unspecified ear [any part, except ear drum], initial encounter|Burn of second degree of unspecified ear [any part, except ear drum], initial encounter +C2870456|T037|AB|T20.219A|ICD10CM|Burn of second degree of unspecified ear, initial encounter|Burn of second degree of unspecified ear, initial encounter +C2870457|T037|PT|T20.219D|ICD10CM|Burn of second degree of unspecified ear [any part, except ear drum], subsequent encounter|Burn of second degree of unspecified ear [any part, except ear drum], subsequent encounter +C2870457|T037|AB|T20.219D|ICD10CM|Burn of second degree of unspecified ear, subs encntr|Burn of second degree of unspecified ear, subs encntr +C2870458|T037|PT|T20.219S|ICD10CM|Burn of second degree of unspecified ear [any part, except ear drum], sequela|Burn of second degree of unspecified ear [any part, except ear drum], sequela +C2870458|T037|AB|T20.219S|ICD10CM|Burn of second degree of unspecified ear, sequela|Burn of second degree of unspecified ear, sequela +C0562054|T037|AB|T20.22|ICD10CM|Burn of second degree of lip(s)|Burn of second degree of lip(s) +C0562054|T037|HT|T20.22|ICD10CM|Burn of second degree of lip(s)|Burn of second degree of lip(s) +C2870459|T037|PT|T20.22XA|ICD10CM|Burn of second degree of lip(s), initial encounter|Burn of second degree of lip(s), initial encounter +C2870459|T037|AB|T20.22XA|ICD10CM|Burn of second degree of lip(s), initial encounter|Burn of second degree of lip(s), initial encounter +C2870460|T037|PT|T20.22XD|ICD10CM|Burn of second degree of lip(s), subsequent encounter|Burn of second degree of lip(s), subsequent encounter +C2870460|T037|AB|T20.22XD|ICD10CM|Burn of second degree of lip(s), subsequent encounter|Burn of second degree of lip(s), subsequent encounter +C2870461|T037|PT|T20.22XS|ICD10CM|Burn of second degree of lip(s), sequela|Burn of second degree of lip(s), sequela +C2870461|T037|AB|T20.22XS|ICD10CM|Burn of second degree of lip(s), sequela|Burn of second degree of lip(s), sequela +C0562056|T037|AB|T20.23|ICD10CM|Burn of second degree of chin|Burn of second degree of chin +C0562056|T037|HT|T20.23|ICD10CM|Burn of second degree of chin|Burn of second degree of chin +C2870462|T037|PT|T20.23XA|ICD10CM|Burn of second degree of chin, initial encounter|Burn of second degree of chin, initial encounter +C2870462|T037|AB|T20.23XA|ICD10CM|Burn of second degree of chin, initial encounter|Burn of second degree of chin, initial encounter +C2870463|T037|PT|T20.23XD|ICD10CM|Burn of second degree of chin, subsequent encounter|Burn of second degree of chin, subsequent encounter +C2870463|T037|AB|T20.23XD|ICD10CM|Burn of second degree of chin, subsequent encounter|Burn of second degree of chin, subsequent encounter +C2870464|T037|PT|T20.23XS|ICD10CM|Burn of second degree of chin, sequela|Burn of second degree of chin, sequela +C2870464|T037|AB|T20.23XS|ICD10CM|Burn of second degree of chin, sequela|Burn of second degree of chin, sequela +C2870465|T037|AB|T20.24|ICD10CM|Burn of second degree of nose (septum)|Burn of second degree of nose (septum) +C2870465|T037|HT|T20.24|ICD10CM|Burn of second degree of nose (septum)|Burn of second degree of nose (septum) +C2870466|T037|PT|T20.24XA|ICD10CM|Burn of second degree of nose (septum), initial encounter|Burn of second degree of nose (septum), initial encounter +C2870466|T037|AB|T20.24XA|ICD10CM|Burn of second degree of nose (septum), initial encounter|Burn of second degree of nose (septum), initial encounter +C2870467|T037|AB|T20.24XD|ICD10CM|Burn of second degree of nose (septum), subsequent encounter|Burn of second degree of nose (septum), subsequent encounter +C2870467|T037|PT|T20.24XD|ICD10CM|Burn of second degree of nose (septum), subsequent encounter|Burn of second degree of nose (septum), subsequent encounter +C2870468|T037|PT|T20.24XS|ICD10CM|Burn of second degree of nose (septum), sequela|Burn of second degree of nose (septum), sequela +C2870468|T037|AB|T20.24XS|ICD10CM|Burn of second degree of nose (septum), sequela|Burn of second degree of nose (septum), sequela +C2870469|T037|AB|T20.25|ICD10CM|Burn of second degree of scalp [any part]|Burn of second degree of scalp [any part] +C2870469|T037|HT|T20.25|ICD10CM|Burn of second degree of scalp [any part]|Burn of second degree of scalp [any part] +C2870470|T037|AB|T20.25XA|ICD10CM|Burn of second degree of scalp [any part], initial encounter|Burn of second degree of scalp [any part], initial encounter +C2870470|T037|PT|T20.25XA|ICD10CM|Burn of second degree of scalp [any part], initial encounter|Burn of second degree of scalp [any part], initial encounter +C2870471|T037|PT|T20.25XD|ICD10CM|Burn of second degree of scalp [any part], subsequent encounter|Burn of second degree of scalp [any part], subsequent encounter +C2870471|T037|AB|T20.25XD|ICD10CM|Burn of second degree of scalp, subsequent encounter|Burn of second degree of scalp, subsequent encounter +C2870472|T037|PT|T20.25XS|ICD10CM|Burn of second degree of scalp [any part], sequela|Burn of second degree of scalp [any part], sequela +C2870472|T037|AB|T20.25XS|ICD10CM|Burn of second degree of scalp [any part], sequela|Burn of second degree of scalp [any part], sequela +C0273978|T037|AB|T20.26|ICD10CM|Burn of second degree of forehead and cheek|Burn of second degree of forehead and cheek +C0273978|T037|HT|T20.26|ICD10CM|Burn of second degree of forehead and cheek|Burn of second degree of forehead and cheek +C2870473|T037|AB|T20.26XA|ICD10CM|Burn of second degree of forehead and cheek, init encntr|Burn of second degree of forehead and cheek, init encntr +C2870473|T037|PT|T20.26XA|ICD10CM|Burn of second degree of forehead and cheek, initial encounter|Burn of second degree of forehead and cheek, initial encounter +C2870474|T037|AB|T20.26XD|ICD10CM|Burn of second degree of forehead and cheek, subs encntr|Burn of second degree of forehead and cheek, subs encntr +C2870474|T037|PT|T20.26XD|ICD10CM|Burn of second degree of forehead and cheek, subsequent encounter|Burn of second degree of forehead and cheek, subsequent encounter +C2870475|T037|PT|T20.26XS|ICD10CM|Burn of second degree of forehead and cheek, sequela|Burn of second degree of forehead and cheek, sequela +C2870475|T037|AB|T20.26XS|ICD10CM|Burn of second degree of forehead and cheek, sequela|Burn of second degree of forehead and cheek, sequela +C0273984|T037|AB|T20.27|ICD10CM|Burn of second degree of neck|Burn of second degree of neck +C0273984|T037|HT|T20.27|ICD10CM|Burn of second degree of neck|Burn of second degree of neck +C2870476|T037|PT|T20.27XA|ICD10CM|Burn of second degree of neck, initial encounter|Burn of second degree of neck, initial encounter +C2870476|T037|AB|T20.27XA|ICD10CM|Burn of second degree of neck, initial encounter|Burn of second degree of neck, initial encounter +C2870477|T037|PT|T20.27XD|ICD10CM|Burn of second degree of neck, subsequent encounter|Burn of second degree of neck, subsequent encounter +C2870477|T037|AB|T20.27XD|ICD10CM|Burn of second degree of neck, subsequent encounter|Burn of second degree of neck, subsequent encounter +C2870478|T037|PT|T20.27XS|ICD10CM|Burn of second degree of neck, sequela|Burn of second degree of neck, sequela +C2870478|T037|AB|T20.27XS|ICD10CM|Burn of second degree of neck, sequela|Burn of second degree of neck, sequela +C2870479|T037|AB|T20.29|ICD10CM|Burn of 2nd deg mul sites of head, face, and neck|Burn of 2nd deg mul sites of head, face, and neck +C2870479|T037|HT|T20.29|ICD10CM|Burn of second degree of multiple sites of head, face, and neck|Burn of second degree of multiple sites of head, face, and neck +C2870480|T037|AB|T20.29XA|ICD10CM|Burn of 2nd deg mul sites of head, face, and neck, init|Burn of 2nd deg mul sites of head, face, and neck, init +C2870480|T037|PT|T20.29XA|ICD10CM|Burn of second degree of multiple sites of head, face, and neck, initial encounter|Burn of second degree of multiple sites of head, face, and neck, initial encounter +C2870481|T037|AB|T20.29XD|ICD10CM|Burn of 2nd deg mul sites of head, face, and neck, subs|Burn of 2nd deg mul sites of head, face, and neck, subs +C2870481|T037|PT|T20.29XD|ICD10CM|Burn of second degree of multiple sites of head, face, and neck, subsequent encounter|Burn of second degree of multiple sites of head, face, and neck, subsequent encounter +C2870482|T037|AB|T20.29XS|ICD10CM|Burn of 2nd deg mul sites of head, face, and neck, sequela|Burn of 2nd deg mul sites of head, face, and neck, sequela +C2870482|T037|PT|T20.29XS|ICD10CM|Burn of second degree of multiple sites of head, face, and neck, sequela|Burn of second degree of multiple sites of head, face, and neck, sequela +C4545543|T037|PT|T20.3|ICD10|Burn of third degree of head and neck|Burn of third degree of head and neck +C0273937|T037|AB|T20.3|ICD10CM|Burn of third degree of head, face, and neck|Burn of third degree of head, face, and neck +C0273937|T037|HT|T20.3|ICD10CM|Burn of third degree of head, face, and neck|Burn of third degree of head, face, and neck +C2870483|T037|AB|T20.30|ICD10CM|Burn of third degree of head, face, and neck, unsp site|Burn of third degree of head, face, and neck, unsp site +C2870483|T037|HT|T20.30|ICD10CM|Burn of third degree of head, face, and neck, unspecified site|Burn of third degree of head, face, and neck, unspecified site +C2870484|T037|PT|T20.30XA|ICD10CM|Burn of third degree of head, face, and neck, unspecified site, initial encounter|Burn of third degree of head, face, and neck, unspecified site, initial encounter +C2870484|T037|AB|T20.30XA|ICD10CM|Burn third degree of head, face, and neck, unsp site, init|Burn third degree of head, face, and neck, unsp site, init +C2870485|T037|PT|T20.30XD|ICD10CM|Burn of third degree of head, face, and neck, unspecified site, subsequent encounter|Burn of third degree of head, face, and neck, unspecified site, subsequent encounter +C2870485|T037|AB|T20.30XD|ICD10CM|Burn third degree of head, face, and neck, unsp site, subs|Burn third degree of head, face, and neck, unsp site, subs +C2870486|T037|PT|T20.30XS|ICD10CM|Burn of third degree of head, face, and neck, unspecified site, sequela|Burn of third degree of head, face, and neck, unspecified site, sequela +C2870486|T037|AB|T20.30XS|ICD10CM|Burn third degree of head, face, and neck, unsp site, sqla|Burn third degree of head, face, and neck, unsp site, sqla +C2870487|T037|AB|T20.31|ICD10CM|Burn of third degree of ear [any part, except ear drum]|Burn of third degree of ear [any part, except ear drum] +C2870487|T037|HT|T20.31|ICD10CM|Burn of third degree of ear [any part, except ear drum]|Burn of third degree of ear [any part, except ear drum] +C2870488|T037|AB|T20.311|ICD10CM|Burn of third degree of right ear|Burn of third degree of right ear +C2870488|T037|HT|T20.311|ICD10CM|Burn of third degree of right ear [any part, except ear drum]|Burn of third degree of right ear [any part, except ear drum] +C2870489|T037|PT|T20.311A|ICD10CM|Burn of third degree of right ear [any part, except ear drum], initial encounter|Burn of third degree of right ear [any part, except ear drum], initial encounter +C2870489|T037|AB|T20.311A|ICD10CM|Burn of third degree of right ear, initial encounter|Burn of third degree of right ear, initial encounter +C2870490|T037|PT|T20.311D|ICD10CM|Burn of third degree of right ear [any part, except ear drum], subsequent encounter|Burn of third degree of right ear [any part, except ear drum], subsequent encounter +C2870490|T037|AB|T20.311D|ICD10CM|Burn of third degree of right ear, subsequent encounter|Burn of third degree of right ear, subsequent encounter +C2870491|T037|PT|T20.311S|ICD10CM|Burn of third degree of right ear [any part, except ear drum], sequela|Burn of third degree of right ear [any part, except ear drum], sequela +C2870491|T037|AB|T20.311S|ICD10CM|Burn of third degree of right ear, sequela|Burn of third degree of right ear, sequela +C2870492|T037|AB|T20.312|ICD10CM|Burn of third degree of left ear [any part, except ear drum]|Burn of third degree of left ear [any part, except ear drum] +C2870492|T037|HT|T20.312|ICD10CM|Burn of third degree of left ear [any part, except ear drum]|Burn of third degree of left ear [any part, except ear drum] +C2870493|T037|PT|T20.312A|ICD10CM|Burn of third degree of left ear [any part, except ear drum], initial encounter|Burn of third degree of left ear [any part, except ear drum], initial encounter +C2870493|T037|AB|T20.312A|ICD10CM|Burn of third degree of left ear, initial encounter|Burn of third degree of left ear, initial encounter +C2870494|T037|PT|T20.312D|ICD10CM|Burn of third degree of left ear [any part, except ear drum], subsequent encounter|Burn of third degree of left ear [any part, except ear drum], subsequent encounter +C2870494|T037|AB|T20.312D|ICD10CM|Burn of third degree of left ear, subsequent encounter|Burn of third degree of left ear, subsequent encounter +C2870495|T037|PT|T20.312S|ICD10CM|Burn of third degree of left ear [any part, except ear drum], sequela|Burn of third degree of left ear [any part, except ear drum], sequela +C2870495|T037|AB|T20.312S|ICD10CM|Burn of third degree of left ear, sequela|Burn of third degree of left ear, sequela +C2870496|T037|AB|T20.319|ICD10CM|Burn of third degree of unspecified ear|Burn of third degree of unspecified ear +C2870496|T037|HT|T20.319|ICD10CM|Burn of third degree of unspecified ear [any part, except ear drum]|Burn of third degree of unspecified ear [any part, except ear drum] +C2870497|T037|PT|T20.319A|ICD10CM|Burn of third degree of unspecified ear [any part, except ear drum], initial encounter|Burn of third degree of unspecified ear [any part, except ear drum], initial encounter +C2870497|T037|AB|T20.319A|ICD10CM|Burn of third degree of unspecified ear, initial encounter|Burn of third degree of unspecified ear, initial encounter +C2870498|T037|PT|T20.319D|ICD10CM|Burn of third degree of unspecified ear [any part, except ear drum], subsequent encounter|Burn of third degree of unspecified ear [any part, except ear drum], subsequent encounter +C2870498|T037|AB|T20.319D|ICD10CM|Burn of third degree of unspecified ear, subs encntr|Burn of third degree of unspecified ear, subs encntr +C2870499|T037|PT|T20.319S|ICD10CM|Burn of third degree of unspecified ear [any part, except ear drum], sequela|Burn of third degree of unspecified ear [any part, except ear drum], sequela +C2870499|T037|AB|T20.319S|ICD10CM|Burn of third degree of unspecified ear, sequela|Burn of third degree of unspecified ear, sequela +C0433448|T037|AB|T20.32|ICD10CM|Burn of third degree of lip(s)|Burn of third degree of lip(s) +C0433448|T037|HT|T20.32|ICD10CM|Burn of third degree of lip(s)|Burn of third degree of lip(s) +C2870500|T037|PT|T20.32XA|ICD10CM|Burn of third degree of lip(s), initial encounter|Burn of third degree of lip(s), initial encounter +C2870500|T037|AB|T20.32XA|ICD10CM|Burn of third degree of lip(s), initial encounter|Burn of third degree of lip(s), initial encounter +C2870501|T037|PT|T20.32XD|ICD10CM|Burn of third degree of lip(s), subsequent encounter|Burn of third degree of lip(s), subsequent encounter +C2870501|T037|AB|T20.32XD|ICD10CM|Burn of third degree of lip(s), subsequent encounter|Burn of third degree of lip(s), subsequent encounter +C2870502|T037|PT|T20.32XS|ICD10CM|Burn of third degree of lip(s), sequela|Burn of third degree of lip(s), sequela +C2870502|T037|AB|T20.32XS|ICD10CM|Burn of third degree of lip(s), sequela|Burn of third degree of lip(s), sequela +C0433449|T037|AB|T20.33|ICD10CM|Burn of third degree of chin|Burn of third degree of chin +C0433449|T037|HT|T20.33|ICD10CM|Burn of third degree of chin|Burn of third degree of chin +C2870503|T037|PT|T20.33XA|ICD10CM|Burn of third degree of chin, initial encounter|Burn of third degree of chin, initial encounter +C2870503|T037|AB|T20.33XA|ICD10CM|Burn of third degree of chin, initial encounter|Burn of third degree of chin, initial encounter +C2870504|T037|PT|T20.33XD|ICD10CM|Burn of third degree of chin, subsequent encounter|Burn of third degree of chin, subsequent encounter +C2870504|T037|AB|T20.33XD|ICD10CM|Burn of third degree of chin, subsequent encounter|Burn of third degree of chin, subsequent encounter +C2870505|T037|PT|T20.33XS|ICD10CM|Burn of third degree of chin, sequela|Burn of third degree of chin, sequela +C2870505|T037|AB|T20.33XS|ICD10CM|Burn of third degree of chin, sequela|Burn of third degree of chin, sequela +C2870506|T037|AB|T20.34|ICD10CM|Burn of third degree of nose (septum)|Burn of third degree of nose (septum) +C2870506|T037|HT|T20.34|ICD10CM|Burn of third degree of nose (septum)|Burn of third degree of nose (septum) +C2870507|T037|PT|T20.34XA|ICD10CM|Burn of third degree of nose (septum), initial encounter|Burn of third degree of nose (septum), initial encounter +C2870507|T037|AB|T20.34XA|ICD10CM|Burn of third degree of nose (septum), initial encounter|Burn of third degree of nose (septum), initial encounter +C2870508|T037|PT|T20.34XD|ICD10CM|Burn of third degree of nose (septum), subsequent encounter|Burn of third degree of nose (septum), subsequent encounter +C2870508|T037|AB|T20.34XD|ICD10CM|Burn of third degree of nose (septum), subsequent encounter|Burn of third degree of nose (septum), subsequent encounter +C2870509|T037|PT|T20.34XS|ICD10CM|Burn of third degree of nose (septum), sequela|Burn of third degree of nose (septum), sequela +C2870509|T037|AB|T20.34XS|ICD10CM|Burn of third degree of nose (septum), sequela|Burn of third degree of nose (septum), sequela +C2870510|T037|AB|T20.35|ICD10CM|Burn of third degree of scalp [any part]|Burn of third degree of scalp [any part] +C2870510|T037|HT|T20.35|ICD10CM|Burn of third degree of scalp [any part]|Burn of third degree of scalp [any part] +C2870511|T037|PT|T20.35XA|ICD10CM|Burn of third degree of scalp [any part], initial encounter|Burn of third degree of scalp [any part], initial encounter +C2870511|T037|AB|T20.35XA|ICD10CM|Burn of third degree of scalp [any part], initial encounter|Burn of third degree of scalp [any part], initial encounter +C2870512|T037|PT|T20.35XD|ICD10CM|Burn of third degree of scalp [any part], subsequent encounter|Burn of third degree of scalp [any part], subsequent encounter +C2870512|T037|AB|T20.35XD|ICD10CM|Burn of third degree of scalp, subsequent encounter|Burn of third degree of scalp, subsequent encounter +C2870513|T037|PT|T20.35XS|ICD10CM|Burn of third degree of scalp [any part], sequela|Burn of third degree of scalp [any part], sequela +C2870513|T037|AB|T20.35XS|ICD10CM|Burn of third degree of scalp [any part], sequela|Burn of third degree of scalp [any part], sequela +C0273979|T037|AB|T20.36|ICD10CM|Burn of third degree of forehead and cheek|Burn of third degree of forehead and cheek +C0273979|T037|HT|T20.36|ICD10CM|Burn of third degree of forehead and cheek|Burn of third degree of forehead and cheek +C2870514|T037|AB|T20.36XA|ICD10CM|Burn of third degree of forehead and cheek, init encntr|Burn of third degree of forehead and cheek, init encntr +C2870514|T037|PT|T20.36XA|ICD10CM|Burn of third degree of forehead and cheek, initial encounter|Burn of third degree of forehead and cheek, initial encounter +C2870515|T037|AB|T20.36XD|ICD10CM|Burn of third degree of forehead and cheek, subs encntr|Burn of third degree of forehead and cheek, subs encntr +C2870515|T037|PT|T20.36XD|ICD10CM|Burn of third degree of forehead and cheek, subsequent encounter|Burn of third degree of forehead and cheek, subsequent encounter +C2870516|T037|PT|T20.36XS|ICD10CM|Burn of third degree of forehead and cheek, sequela|Burn of third degree of forehead and cheek, sequela +C2870516|T037|AB|T20.36XS|ICD10CM|Burn of third degree of forehead and cheek, sequela|Burn of third degree of forehead and cheek, sequela +C0433454|T037|AB|T20.37|ICD10CM|Burn of third degree of neck|Burn of third degree of neck +C0433454|T037|HT|T20.37|ICD10CM|Burn of third degree of neck|Burn of third degree of neck +C2870517|T037|PT|T20.37XA|ICD10CM|Burn of third degree of neck, initial encounter|Burn of third degree of neck, initial encounter +C2870517|T037|AB|T20.37XA|ICD10CM|Burn of third degree of neck, initial encounter|Burn of third degree of neck, initial encounter +C2870518|T037|PT|T20.37XD|ICD10CM|Burn of third degree of neck, subsequent encounter|Burn of third degree of neck, subsequent encounter +C2870518|T037|AB|T20.37XD|ICD10CM|Burn of third degree of neck, subsequent encounter|Burn of third degree of neck, subsequent encounter +C2870519|T037|PT|T20.37XS|ICD10CM|Burn of third degree of neck, sequela|Burn of third degree of neck, sequela +C2870519|T037|AB|T20.37XS|ICD10CM|Burn of third degree of neck, sequela|Burn of third degree of neck, sequela +C2870520|T037|AB|T20.39|ICD10CM|Burn of 3rd deg mu sites of head, face, and neck|Burn of 3rd deg mu sites of head, face, and neck +C2870520|T037|HT|T20.39|ICD10CM|Burn of third degree of multiple sites of head, face, and neck|Burn of third degree of multiple sites of head, face, and neck +C2870521|T037|AB|T20.39XA|ICD10CM|Burn of 3rd deg mu sites of head, face, and neck, init|Burn of 3rd deg mu sites of head, face, and neck, init +C2870521|T037|PT|T20.39XA|ICD10CM|Burn of third degree of multiple sites of head, face, and neck, initial encounter|Burn of third degree of multiple sites of head, face, and neck, initial encounter +C2870522|T037|AB|T20.39XD|ICD10CM|Burn of 3rd deg mu sites of head, face, and neck, subs|Burn of 3rd deg mu sites of head, face, and neck, subs +C2870522|T037|PT|T20.39XD|ICD10CM|Burn of third degree of multiple sites of head, face, and neck, subsequent encounter|Burn of third degree of multiple sites of head, face, and neck, subsequent encounter +C2870523|T037|AB|T20.39XS|ICD10CM|Burn of 3rd deg mu sites of head, face, and neck, sequela|Burn of 3rd deg mu sites of head, face, and neck, sequela +C2870523|T037|PT|T20.39XS|ICD10CM|Burn of third degree of multiple sites of head, face, and neck, sequela|Burn of third degree of multiple sites of head, face, and neck, sequela +C0496033|T037|PT|T20.4|ICD10|Corrosion of unspecified degree of head and neck|Corrosion of unspecified degree of head and neck +C2870524|T037|AB|T20.4|ICD10CM|Corrosion of unspecified degree of head, face, and neck|Corrosion of unspecified degree of head, face, and neck +C2870524|T037|HT|T20.4|ICD10CM|Corrosion of unspecified degree of head, face, and neck|Corrosion of unspecified degree of head, face, and neck +C2870525|T037|AB|T20.40|ICD10CM|Corrosion of unsp degree of head, face, and neck, unsp site|Corrosion of unsp degree of head, face, and neck, unsp site +C2870525|T037|HT|T20.40|ICD10CM|Corrosion of unspecified degree of head, face, and neck, unspecified site|Corrosion of unspecified degree of head, face, and neck, unspecified site +C2870526|T037|AB|T20.40XA|ICD10CM|Corros unsp degree of head, face, and neck, unsp site, init|Corros unsp degree of head, face, and neck, unsp site, init +C2870526|T037|PT|T20.40XA|ICD10CM|Corrosion of unspecified degree of head, face, and neck, unspecified site, initial encounter|Corrosion of unspecified degree of head, face, and neck, unspecified site, initial encounter +C2870527|T037|AB|T20.40XD|ICD10CM|Corros unsp degree of head, face, and neck, unsp site, subs|Corros unsp degree of head, face, and neck, unsp site, subs +C2870527|T037|PT|T20.40XD|ICD10CM|Corrosion of unspecified degree of head, face, and neck, unspecified site, subsequent encounter|Corrosion of unspecified degree of head, face, and neck, unspecified site, subsequent encounter +C2870528|T037|AB|T20.40XS|ICD10CM|Corros unsp degree of head, face, and neck, unsp site, sqla|Corros unsp degree of head, face, and neck, unsp site, sqla +C2870528|T037|PT|T20.40XS|ICD10CM|Corrosion of unspecified degree of head, face, and neck, unspecified site, sequela|Corrosion of unspecified degree of head, face, and neck, unspecified site, sequela +C2870529|T037|AB|T20.41|ICD10CM|Corrosion of unspecified degree of ear|Corrosion of unspecified degree of ear +C2870529|T037|HT|T20.41|ICD10CM|Corrosion of unspecified degree of ear [any part, except ear drum]|Corrosion of unspecified degree of ear [any part, except ear drum] +C2870530|T037|AB|T20.411|ICD10CM|Corrosion of unspecified degree of right ear|Corrosion of unspecified degree of right ear +C2870530|T037|HT|T20.411|ICD10CM|Corrosion of unspecified degree of right ear [any part, except ear drum]|Corrosion of unspecified degree of right ear [any part, except ear drum] +C2870531|T037|PT|T20.411A|ICD10CM|Corrosion of unspecified degree of right ear [any part, except ear drum], initial encounter|Corrosion of unspecified degree of right ear [any part, except ear drum], initial encounter +C2870531|T037|AB|T20.411A|ICD10CM|Corrosion of unspecified degree of right ear, init encntr|Corrosion of unspecified degree of right ear, init encntr +C2870532|T037|PT|T20.411D|ICD10CM|Corrosion of unspecified degree of right ear [any part, except ear drum], subsequent encounter|Corrosion of unspecified degree of right ear [any part, except ear drum], subsequent encounter +C2870532|T037|AB|T20.411D|ICD10CM|Corrosion of unspecified degree of right ear, subs encntr|Corrosion of unspecified degree of right ear, subs encntr +C2870533|T037|PT|T20.411S|ICD10CM|Corrosion of unspecified degree of right ear [any part, except ear drum], sequela|Corrosion of unspecified degree of right ear [any part, except ear drum], sequela +C2870533|T037|AB|T20.411S|ICD10CM|Corrosion of unspecified degree of right ear, sequela|Corrosion of unspecified degree of right ear, sequela +C2870534|T037|AB|T20.412|ICD10CM|Corrosion of unspecified degree of left ear|Corrosion of unspecified degree of left ear +C2870534|T037|HT|T20.412|ICD10CM|Corrosion of unspecified degree of left ear [any part, except ear drum]|Corrosion of unspecified degree of left ear [any part, except ear drum] +C2870535|T037|PT|T20.412A|ICD10CM|Corrosion of unspecified degree of left ear [any part, except ear drum], initial encounter|Corrosion of unspecified degree of left ear [any part, except ear drum], initial encounter +C2870535|T037|AB|T20.412A|ICD10CM|Corrosion of unspecified degree of left ear, init encntr|Corrosion of unspecified degree of left ear, init encntr +C2870536|T037|PT|T20.412D|ICD10CM|Corrosion of unspecified degree of left ear [any part, except ear drum], subsequent encounter|Corrosion of unspecified degree of left ear [any part, except ear drum], subsequent encounter +C2870536|T037|AB|T20.412D|ICD10CM|Corrosion of unspecified degree of left ear, subs encntr|Corrosion of unspecified degree of left ear, subs encntr +C2870537|T037|PT|T20.412S|ICD10CM|Corrosion of unspecified degree of left ear [any part, except ear drum], sequela|Corrosion of unspecified degree of left ear [any part, except ear drum], sequela +C2870537|T037|AB|T20.412S|ICD10CM|Corrosion of unspecified degree of left ear, sequela|Corrosion of unspecified degree of left ear, sequela +C2870538|T037|AB|T20.419|ICD10CM|Corrosion of unspecified degree of unspecified ear|Corrosion of unspecified degree of unspecified ear +C2870538|T037|HT|T20.419|ICD10CM|Corrosion of unspecified degree of unspecified ear [any part, except ear drum]|Corrosion of unspecified degree of unspecified ear [any part, except ear drum] +C2870539|T037|AB|T20.419A|ICD10CM|Corrosion of unsp degree of unspecified ear, init encntr|Corrosion of unsp degree of unspecified ear, init encntr +C2870539|T037|PT|T20.419A|ICD10CM|Corrosion of unspecified degree of unspecified ear [any part, except ear drum], initial encounter|Corrosion of unspecified degree of unspecified ear [any part, except ear drum], initial encounter +C2870540|T037|AB|T20.419D|ICD10CM|Corrosion of unsp degree of unspecified ear, subs encntr|Corrosion of unsp degree of unspecified ear, subs encntr +C2870540|T037|PT|T20.419D|ICD10CM|Corrosion of unspecified degree of unspecified ear [any part, except ear drum], subsequent encounter|Corrosion of unspecified degree of unspecified ear [any part, except ear drum], subsequent encounter +C2870541|T037|PT|T20.419S|ICD10CM|Corrosion of unspecified degree of unspecified ear [any part, except ear drum], sequela|Corrosion of unspecified degree of unspecified ear [any part, except ear drum], sequela +C2870541|T037|AB|T20.419S|ICD10CM|Corrosion of unspecified degree of unspecified ear, sequela|Corrosion of unspecified degree of unspecified ear, sequela +C2870542|T037|AB|T20.42|ICD10CM|Corrosion of unspecified degree of lip(s)|Corrosion of unspecified degree of lip(s) +C2870542|T037|HT|T20.42|ICD10CM|Corrosion of unspecified degree of lip(s)|Corrosion of unspecified degree of lip(s) +C2870543|T037|AB|T20.42XA|ICD10CM|Corrosion of unspecified degree of lip(s), initial encounter|Corrosion of unspecified degree of lip(s), initial encounter +C2870543|T037|PT|T20.42XA|ICD10CM|Corrosion of unspecified degree of lip(s), initial encounter|Corrosion of unspecified degree of lip(s), initial encounter +C2870544|T037|AB|T20.42XD|ICD10CM|Corrosion of unspecified degree of lip(s), subs encntr|Corrosion of unspecified degree of lip(s), subs encntr +C2870544|T037|PT|T20.42XD|ICD10CM|Corrosion of unspecified degree of lip(s), subsequent encounter|Corrosion of unspecified degree of lip(s), subsequent encounter +C2870545|T037|PT|T20.42XS|ICD10CM|Corrosion of unspecified degree of lip(s), sequela|Corrosion of unspecified degree of lip(s), sequela +C2870545|T037|AB|T20.42XS|ICD10CM|Corrosion of unspecified degree of lip(s), sequela|Corrosion of unspecified degree of lip(s), sequela +C2870546|T037|AB|T20.43|ICD10CM|Corrosion of unspecified degree of chin|Corrosion of unspecified degree of chin +C2870546|T037|HT|T20.43|ICD10CM|Corrosion of unspecified degree of chin|Corrosion of unspecified degree of chin +C2870547|T037|PT|T20.43XA|ICD10CM|Corrosion of unspecified degree of chin, initial encounter|Corrosion of unspecified degree of chin, initial encounter +C2870547|T037|AB|T20.43XA|ICD10CM|Corrosion of unspecified degree of chin, initial encounter|Corrosion of unspecified degree of chin, initial encounter +C2870548|T037|AB|T20.43XD|ICD10CM|Corrosion of unspecified degree of chin, subs encntr|Corrosion of unspecified degree of chin, subs encntr +C2870548|T037|PT|T20.43XD|ICD10CM|Corrosion of unspecified degree of chin, subsequent encounter|Corrosion of unspecified degree of chin, subsequent encounter +C2870549|T037|PT|T20.43XS|ICD10CM|Corrosion of unspecified degree of chin, sequela|Corrosion of unspecified degree of chin, sequela +C2870549|T037|AB|T20.43XS|ICD10CM|Corrosion of unspecified degree of chin, sequela|Corrosion of unspecified degree of chin, sequela +C2870550|T037|AB|T20.44|ICD10CM|Corrosion of unspecified degree of nose (septum)|Corrosion of unspecified degree of nose (septum) +C2870550|T037|HT|T20.44|ICD10CM|Corrosion of unspecified degree of nose (septum)|Corrosion of unspecified degree of nose (septum) +C2870551|T037|AB|T20.44XA|ICD10CM|Corrosion of unsp degree of nose (septum), init encntr|Corrosion of unsp degree of nose (septum), init encntr +C2870551|T037|PT|T20.44XA|ICD10CM|Corrosion of unspecified degree of nose (septum), initial encounter|Corrosion of unspecified degree of nose (septum), initial encounter +C2870552|T037|AB|T20.44XD|ICD10CM|Corrosion of unsp degree of nose (septum), subs encntr|Corrosion of unsp degree of nose (septum), subs encntr +C2870552|T037|PT|T20.44XD|ICD10CM|Corrosion of unspecified degree of nose (septum), subsequent encounter|Corrosion of unspecified degree of nose (septum), subsequent encounter +C2870553|T037|PT|T20.44XS|ICD10CM|Corrosion of unspecified degree of nose (septum), sequela|Corrosion of unspecified degree of nose (septum), sequela +C2870553|T037|AB|T20.44XS|ICD10CM|Corrosion of unspecified degree of nose (septum), sequela|Corrosion of unspecified degree of nose (septum), sequela +C2870554|T037|AB|T20.45|ICD10CM|Corrosion of unspecified degree of scalp [any part]|Corrosion of unspecified degree of scalp [any part] +C2870554|T037|HT|T20.45|ICD10CM|Corrosion of unspecified degree of scalp [any part]|Corrosion of unspecified degree of scalp [any part] +C2870555|T037|PT|T20.45XA|ICD10CM|Corrosion of unspecified degree of scalp [any part], initial encounter|Corrosion of unspecified degree of scalp [any part], initial encounter +C2870555|T037|AB|T20.45XA|ICD10CM|Corrosion of unspecified degree of scalp, initial encounter|Corrosion of unspecified degree of scalp, initial encounter +C2870556|T037|PT|T20.45XD|ICD10CM|Corrosion of unspecified degree of scalp [any part], subsequent encounter|Corrosion of unspecified degree of scalp [any part], subsequent encounter +C2870556|T037|AB|T20.45XD|ICD10CM|Corrosion of unspecified degree of scalp, subs encntr|Corrosion of unspecified degree of scalp, subs encntr +C2870557|T037|AB|T20.45XS|ICD10CM|Corrosion of unspecified degree of scalp [any part], sequela|Corrosion of unspecified degree of scalp [any part], sequela +C2870557|T037|PT|T20.45XS|ICD10CM|Corrosion of unspecified degree of scalp [any part], sequela|Corrosion of unspecified degree of scalp [any part], sequela +C2870558|T037|AB|T20.46|ICD10CM|Corrosion of unspecified degree of forehead and cheek|Corrosion of unspecified degree of forehead and cheek +C2870558|T037|HT|T20.46|ICD10CM|Corrosion of unspecified degree of forehead and cheek|Corrosion of unspecified degree of forehead and cheek +C2870559|T037|AB|T20.46XA|ICD10CM|Corrosion of unsp degree of forehead and cheek, init encntr|Corrosion of unsp degree of forehead and cheek, init encntr +C2870559|T037|PT|T20.46XA|ICD10CM|Corrosion of unspecified degree of forehead and cheek, initial encounter|Corrosion of unspecified degree of forehead and cheek, initial encounter +C2870560|T037|AB|T20.46XD|ICD10CM|Corrosion of unsp degree of forehead and cheek, subs encntr|Corrosion of unsp degree of forehead and cheek, subs encntr +C2870560|T037|PT|T20.46XD|ICD10CM|Corrosion of unspecified degree of forehead and cheek, subsequent encounter|Corrosion of unspecified degree of forehead and cheek, subsequent encounter +C2870561|T037|AB|T20.46XS|ICD10CM|Corrosion of unsp degree of forehead and cheek, sequela|Corrosion of unsp degree of forehead and cheek, sequela +C2870561|T037|PT|T20.46XS|ICD10CM|Corrosion of unspecified degree of forehead and cheek, sequela|Corrosion of unspecified degree of forehead and cheek, sequela +C2870562|T037|AB|T20.47|ICD10CM|Corrosion of unspecified degree of neck|Corrosion of unspecified degree of neck +C2870562|T037|HT|T20.47|ICD10CM|Corrosion of unspecified degree of neck|Corrosion of unspecified degree of neck +C2870563|T037|PT|T20.47XA|ICD10CM|Corrosion of unspecified degree of neck, initial encounter|Corrosion of unspecified degree of neck, initial encounter +C2870563|T037|AB|T20.47XA|ICD10CM|Corrosion of unspecified degree of neck, initial encounter|Corrosion of unspecified degree of neck, initial encounter +C2870564|T037|AB|T20.47XD|ICD10CM|Corrosion of unspecified degree of neck, subs encntr|Corrosion of unspecified degree of neck, subs encntr +C2870564|T037|PT|T20.47XD|ICD10CM|Corrosion of unspecified degree of neck, subsequent encounter|Corrosion of unspecified degree of neck, subsequent encounter +C2870565|T037|PT|T20.47XS|ICD10CM|Corrosion of unspecified degree of neck, sequela|Corrosion of unspecified degree of neck, sequela +C2870565|T037|AB|T20.47XS|ICD10CM|Corrosion of unspecified degree of neck, sequela|Corrosion of unspecified degree of neck, sequela +C2870566|T037|AB|T20.49|ICD10CM|Corrosion of unsp deg mult sites of head, face, and neck|Corrosion of unsp deg mult sites of head, face, and neck +C2870566|T037|HT|T20.49|ICD10CM|Corrosion of unspecified degree of multiple sites of head, face, and neck|Corrosion of unspecified degree of multiple sites of head, face, and neck +C2870567|T037|AB|T20.49XA|ICD10CM|Corros unsp deg mult sites of head, face, and neck, init|Corros unsp deg mult sites of head, face, and neck, init +C2870567|T037|PT|T20.49XA|ICD10CM|Corrosion of unspecified degree of multiple sites of head, face, and neck, initial encounter|Corrosion of unspecified degree of multiple sites of head, face, and neck, initial encounter +C2870568|T037|AB|T20.49XD|ICD10CM|Corros unsp deg mult sites of head, face, and neck, subs|Corros unsp deg mult sites of head, face, and neck, subs +C2870568|T037|PT|T20.49XD|ICD10CM|Corrosion of unspecified degree of multiple sites of head, face, and neck, subsequent encounter|Corrosion of unspecified degree of multiple sites of head, face, and neck, subsequent encounter +C2870569|T037|AB|T20.49XS|ICD10CM|Corros unsp deg mult sites of head, face, and neck, sequela|Corros unsp deg mult sites of head, face, and neck, sequela +C2870569|T037|PT|T20.49XS|ICD10CM|Corrosion of unspecified degree of multiple sites of head, face, and neck, sequela|Corrosion of unspecified degree of multiple sites of head, face, and neck, sequela +C0451988|T037|PT|T20.5|ICD10|Corrosion of first degree of head and neck|Corrosion of first degree of head and neck +C2870570|T037|AB|T20.5|ICD10CM|Corrosion of first degree of head, face, and neck|Corrosion of first degree of head, face, and neck +C2870570|T037|HT|T20.5|ICD10CM|Corrosion of first degree of head, face, and neck|Corrosion of first degree of head, face, and neck +C2870571|T037|AB|T20.50|ICD10CM|Corrosion of first degree of head, face, and neck, unsp site|Corrosion of first degree of head, face, and neck, unsp site +C2870571|T037|HT|T20.50|ICD10CM|Corrosion of first degree of head, face, and neck, unspecified site|Corrosion of first degree of head, face, and neck, unspecified site +C2870572|T037|AB|T20.50XA|ICD10CM|Corros first degree of head, face, and neck, unsp site, init|Corros first degree of head, face, and neck, unsp site, init +C2870572|T037|PT|T20.50XA|ICD10CM|Corrosion of first degree of head, face, and neck, unspecified site, initial encounter|Corrosion of first degree of head, face, and neck, unspecified site, initial encounter +C2870573|T037|AB|T20.50XD|ICD10CM|Corros first degree of head, face, and neck, unsp site, subs|Corros first degree of head, face, and neck, unsp site, subs +C2870573|T037|PT|T20.50XD|ICD10CM|Corrosion of first degree of head, face, and neck, unspecified site, subsequent encounter|Corrosion of first degree of head, face, and neck, unspecified site, subsequent encounter +C2870574|T037|AB|T20.50XS|ICD10CM|Corros first degree of head, face, and neck, unsp site, sqla|Corros first degree of head, face, and neck, unsp site, sqla +C2870574|T037|PT|T20.50XS|ICD10CM|Corrosion of first degree of head, face, and neck, unspecified site, sequela|Corrosion of first degree of head, face, and neck, unspecified site, sequela +C2870575|T037|AB|T20.51|ICD10CM|Corrosion of first degree of ear [any part, except ear drum]|Corrosion of first degree of ear [any part, except ear drum] +C2870575|T037|HT|T20.51|ICD10CM|Corrosion of first degree of ear [any part, except ear drum]|Corrosion of first degree of ear [any part, except ear drum] +C2870576|T037|AB|T20.511|ICD10CM|Corrosion of first degree of right ear|Corrosion of first degree of right ear +C2870576|T037|HT|T20.511|ICD10CM|Corrosion of first degree of right ear [any part, except ear drum]|Corrosion of first degree of right ear [any part, except ear drum] +C2870577|T037|PT|T20.511A|ICD10CM|Corrosion of first degree of right ear [any part, except ear drum], initial encounter|Corrosion of first degree of right ear [any part, except ear drum], initial encounter +C2870577|T037|AB|T20.511A|ICD10CM|Corrosion of first degree of right ear, initial encounter|Corrosion of first degree of right ear, initial encounter +C2870578|T037|PT|T20.511D|ICD10CM|Corrosion of first degree of right ear [any part, except ear drum], subsequent encounter|Corrosion of first degree of right ear [any part, except ear drum], subsequent encounter +C2870578|T037|AB|T20.511D|ICD10CM|Corrosion of first degree of right ear, subsequent encounter|Corrosion of first degree of right ear, subsequent encounter +C2870579|T037|PT|T20.511S|ICD10CM|Corrosion of first degree of right ear [any part, except ear drum], sequela|Corrosion of first degree of right ear [any part, except ear drum], sequela +C2870579|T037|AB|T20.511S|ICD10CM|Corrosion of first degree of right ear, sequela|Corrosion of first degree of right ear, sequela +C2870580|T037|AB|T20.512|ICD10CM|Corrosion of first degree of left ear|Corrosion of first degree of left ear +C2870580|T037|HT|T20.512|ICD10CM|Corrosion of first degree of left ear [any part, except ear drum]|Corrosion of first degree of left ear [any part, except ear drum] +C2870581|T037|PT|T20.512A|ICD10CM|Corrosion of first degree of left ear [any part, except ear drum], initial encounter|Corrosion of first degree of left ear [any part, except ear drum], initial encounter +C2870581|T037|AB|T20.512A|ICD10CM|Corrosion of first degree of left ear, initial encounter|Corrosion of first degree of left ear, initial encounter +C2870582|T037|PT|T20.512D|ICD10CM|Corrosion of first degree of left ear [any part, except ear drum], subsequent encounter|Corrosion of first degree of left ear [any part, except ear drum], subsequent encounter +C2870582|T037|AB|T20.512D|ICD10CM|Corrosion of first degree of left ear, subsequent encounter|Corrosion of first degree of left ear, subsequent encounter +C2870583|T037|PT|T20.512S|ICD10CM|Corrosion of first degree of left ear [any part, except ear drum], sequela|Corrosion of first degree of left ear [any part, except ear drum], sequela +C2870583|T037|AB|T20.512S|ICD10CM|Corrosion of first degree of left ear, sequela|Corrosion of first degree of left ear, sequela +C2870584|T037|AB|T20.519|ICD10CM|Corrosion of first degree of unspecified ear|Corrosion of first degree of unspecified ear +C2870584|T037|HT|T20.519|ICD10CM|Corrosion of first degree of unspecified ear [any part, except ear drum]|Corrosion of first degree of unspecified ear [any part, except ear drum] +C2870585|T037|PT|T20.519A|ICD10CM|Corrosion of first degree of unspecified ear [any part, except ear drum], initial encounter|Corrosion of first degree of unspecified ear [any part, except ear drum], initial encounter +C2870585|T037|AB|T20.519A|ICD10CM|Corrosion of first degree of unspecified ear, init encntr|Corrosion of first degree of unspecified ear, init encntr +C2870586|T037|PT|T20.519D|ICD10CM|Corrosion of first degree of unspecified ear [any part, except ear drum], subsequent encounter|Corrosion of first degree of unspecified ear [any part, except ear drum], subsequent encounter +C2870586|T037|AB|T20.519D|ICD10CM|Corrosion of first degree of unspecified ear, subs encntr|Corrosion of first degree of unspecified ear, subs encntr +C2870587|T037|PT|T20.519S|ICD10CM|Corrosion of first degree of unspecified ear [any part, except ear drum], sequela|Corrosion of first degree of unspecified ear [any part, except ear drum], sequela +C2870587|T037|AB|T20.519S|ICD10CM|Corrosion of first degree of unspecified ear, sequela|Corrosion of first degree of unspecified ear, sequela +C2870588|T037|AB|T20.52|ICD10CM|Corrosion of first degree of lip(s)|Corrosion of first degree of lip(s) +C2870588|T037|HT|T20.52|ICD10CM|Corrosion of first degree of lip(s)|Corrosion of first degree of lip(s) +C2870589|T037|PT|T20.52XA|ICD10CM|Corrosion of first degree of lip(s), initial encounter|Corrosion of first degree of lip(s), initial encounter +C2870589|T037|AB|T20.52XA|ICD10CM|Corrosion of first degree of lip(s), initial encounter|Corrosion of first degree of lip(s), initial encounter +C2870590|T037|PT|T20.52XD|ICD10CM|Corrosion of first degree of lip(s), subsequent encounter|Corrosion of first degree of lip(s), subsequent encounter +C2870590|T037|AB|T20.52XD|ICD10CM|Corrosion of first degree of lip(s), subsequent encounter|Corrosion of first degree of lip(s), subsequent encounter +C2870591|T037|PT|T20.52XS|ICD10CM|Corrosion of first degree of lip(s), sequela|Corrosion of first degree of lip(s), sequela +C2870591|T037|AB|T20.52XS|ICD10CM|Corrosion of first degree of lip(s), sequela|Corrosion of first degree of lip(s), sequela +C2870592|T037|AB|T20.53|ICD10CM|Corrosion of first degree of chin|Corrosion of first degree of chin +C2870592|T037|HT|T20.53|ICD10CM|Corrosion of first degree of chin|Corrosion of first degree of chin +C2870593|T037|PT|T20.53XA|ICD10CM|Corrosion of first degree of chin, initial encounter|Corrosion of first degree of chin, initial encounter +C2870593|T037|AB|T20.53XA|ICD10CM|Corrosion of first degree of chin, initial encounter|Corrosion of first degree of chin, initial encounter +C2870594|T037|PT|T20.53XD|ICD10CM|Corrosion of first degree of chin, subsequent encounter|Corrosion of first degree of chin, subsequent encounter +C2870594|T037|AB|T20.53XD|ICD10CM|Corrosion of first degree of chin, subsequent encounter|Corrosion of first degree of chin, subsequent encounter +C2870595|T037|PT|T20.53XS|ICD10CM|Corrosion of first degree of chin, sequela|Corrosion of first degree of chin, sequela +C2870595|T037|AB|T20.53XS|ICD10CM|Corrosion of first degree of chin, sequela|Corrosion of first degree of chin, sequela +C2870596|T037|AB|T20.54|ICD10CM|Corrosion of first degree of nose (septum)|Corrosion of first degree of nose (septum) +C2870596|T037|HT|T20.54|ICD10CM|Corrosion of first degree of nose (septum)|Corrosion of first degree of nose (septum) +C2870597|T037|AB|T20.54XA|ICD10CM|Corrosion of first degree of nose (septum), init encntr|Corrosion of first degree of nose (septum), init encntr +C2870597|T037|PT|T20.54XA|ICD10CM|Corrosion of first degree of nose (septum), initial encounter|Corrosion of first degree of nose (septum), initial encounter +C2870598|T037|AB|T20.54XD|ICD10CM|Corrosion of first degree of nose (septum), subs encntr|Corrosion of first degree of nose (septum), subs encntr +C2870598|T037|PT|T20.54XD|ICD10CM|Corrosion of first degree of nose (septum), subsequent encounter|Corrosion of first degree of nose (septum), subsequent encounter +C2870599|T037|PT|T20.54XS|ICD10CM|Corrosion of first degree of nose (septum), sequela|Corrosion of first degree of nose (septum), sequela +C2870599|T037|AB|T20.54XS|ICD10CM|Corrosion of first degree of nose (septum), sequela|Corrosion of first degree of nose (septum), sequela +C2870600|T037|AB|T20.55|ICD10CM|Corrosion of first degree of scalp [any part]|Corrosion of first degree of scalp [any part] +C2870600|T037|HT|T20.55|ICD10CM|Corrosion of first degree of scalp [any part]|Corrosion of first degree of scalp [any part] +C2870601|T037|PT|T20.55XA|ICD10CM|Corrosion of first degree of scalp [any part], initial encounter|Corrosion of first degree of scalp [any part], initial encounter +C2870601|T037|AB|T20.55XA|ICD10CM|Corrosion of first degree of scalp, initial encounter|Corrosion of first degree of scalp, initial encounter +C2870602|T037|PT|T20.55XD|ICD10CM|Corrosion of first degree of scalp [any part], subsequent encounter|Corrosion of first degree of scalp [any part], subsequent encounter +C2870602|T037|AB|T20.55XD|ICD10CM|Corrosion of first degree of scalp, subsequent encounter|Corrosion of first degree of scalp, subsequent encounter +C2870603|T037|PT|T20.55XS|ICD10CM|Corrosion of first degree of scalp [any part], sequela|Corrosion of first degree of scalp [any part], sequela +C2870603|T037|AB|T20.55XS|ICD10CM|Corrosion of first degree of scalp [any part], sequela|Corrosion of first degree of scalp [any part], sequela +C3696855|T037|AB|T20.56|ICD10CM|Corrosion of first degree of forehead and cheek|Corrosion of first degree of forehead and cheek +C3696855|T037|HT|T20.56|ICD10CM|Corrosion of first degree of forehead and cheek|Corrosion of first degree of forehead and cheek +C2870605|T037|AB|T20.56XA|ICD10CM|Corrosion of first degree of forehead and cheek, init encntr|Corrosion of first degree of forehead and cheek, init encntr +C2870605|T037|PT|T20.56XA|ICD10CM|Corrosion of first degree of forehead and cheek, initial encounter|Corrosion of first degree of forehead and cheek, initial encounter +C2870606|T037|AB|T20.56XD|ICD10CM|Corrosion of first degree of forehead and cheek, subs encntr|Corrosion of first degree of forehead and cheek, subs encntr +C2870606|T037|PT|T20.56XD|ICD10CM|Corrosion of first degree of forehead and cheek, subsequent encounter|Corrosion of first degree of forehead and cheek, subsequent encounter +C2870607|T037|AB|T20.56XS|ICD10CM|Corrosion of first degree of forehead and cheek, sequela|Corrosion of first degree of forehead and cheek, sequela +C2870607|T037|PT|T20.56XS|ICD10CM|Corrosion of first degree of forehead and cheek, sequela|Corrosion of first degree of forehead and cheek, sequela +C2870608|T037|AB|T20.57|ICD10CM|Corrosion of first degree of neck|Corrosion of first degree of neck +C2870608|T037|HT|T20.57|ICD10CM|Corrosion of first degree of neck|Corrosion of first degree of neck +C2870609|T037|PT|T20.57XA|ICD10CM|Corrosion of first degree of neck, initial encounter|Corrosion of first degree of neck, initial encounter +C2870609|T037|AB|T20.57XA|ICD10CM|Corrosion of first degree of neck, initial encounter|Corrosion of first degree of neck, initial encounter +C2870610|T037|PT|T20.57XD|ICD10CM|Corrosion of first degree of neck, subsequent encounter|Corrosion of first degree of neck, subsequent encounter +C2870610|T037|AB|T20.57XD|ICD10CM|Corrosion of first degree of neck, subsequent encounter|Corrosion of first degree of neck, subsequent encounter +C2870611|T037|PT|T20.57XS|ICD10CM|Corrosion of first degree of neck, sequela|Corrosion of first degree of neck, sequela +C2870611|T037|AB|T20.57XS|ICD10CM|Corrosion of first degree of neck, sequela|Corrosion of first degree of neck, sequela +C2870612|T037|AB|T20.59|ICD10CM|Corrosion of first deg mult sites of head, face, and neck|Corrosion of first deg mult sites of head, face, and neck +C2870612|T037|HT|T20.59|ICD10CM|Corrosion of first degree of multiple sites of head, face, and neck|Corrosion of first degree of multiple sites of head, face, and neck +C2870613|T037|AB|T20.59XA|ICD10CM|Corros first deg mult sites of head, face, and neck, init|Corros first deg mult sites of head, face, and neck, init +C2870613|T037|PT|T20.59XA|ICD10CM|Corrosion of first degree of multiple sites of head, face, and neck, initial encounter|Corrosion of first degree of multiple sites of head, face, and neck, initial encounter +C2870614|T037|AB|T20.59XD|ICD10CM|Corros first deg mult sites of head, face, and neck, subs|Corros first deg mult sites of head, face, and neck, subs +C2870614|T037|PT|T20.59XD|ICD10CM|Corrosion of first degree of multiple sites of head, face, and neck, subsequent encounter|Corrosion of first degree of multiple sites of head, face, and neck, subsequent encounter +C2870615|T037|AB|T20.59XS|ICD10CM|Corros first deg mult sites of head, face, and neck, sequela|Corros first deg mult sites of head, face, and neck, sequela +C2870615|T037|PT|T20.59XS|ICD10CM|Corrosion of first degree of multiple sites of head, face, and neck, sequela|Corrosion of first degree of multiple sites of head, face, and neck, sequela +C0451997|T037|PT|T20.6|ICD10|Corrosion of second degree of head and neck|Corrosion of second degree of head and neck +C2870616|T037|AB|T20.6|ICD10CM|Corrosion of second degree of head, face, and neck|Corrosion of second degree of head, face, and neck +C2870616|T037|HT|T20.6|ICD10CM|Corrosion of second degree of head, face, and neck|Corrosion of second degree of head, face, and neck +C2870617|T037|AB|T20.60|ICD10CM|Corros second degree of head, face, and neck, unsp site|Corros second degree of head, face, and neck, unsp site +C2870617|T037|HT|T20.60|ICD10CM|Corrosion of second degree of head, face, and neck, unspecified site|Corrosion of second degree of head, face, and neck, unspecified site +C2870618|T037|AB|T20.60XA|ICD10CM|Corros second deg of head, face, and neck, unsp site, init|Corros second deg of head, face, and neck, unsp site, init +C2870618|T037|PT|T20.60XA|ICD10CM|Corrosion of second degree of head, face, and neck, unspecified site, initial encounter|Corrosion of second degree of head, face, and neck, unspecified site, initial encounter +C2870619|T037|AB|T20.60XD|ICD10CM|Corros second deg of head, face, and neck, unsp site, subs|Corros second deg of head, face, and neck, unsp site, subs +C2870619|T037|PT|T20.60XD|ICD10CM|Corrosion of second degree of head, face, and neck, unspecified site, subsequent encounter|Corrosion of second degree of head, face, and neck, unspecified site, subsequent encounter +C2870620|T037|AB|T20.60XS|ICD10CM|Corros second deg of head, face, and neck, unsp site, sqla|Corros second deg of head, face, and neck, unsp site, sqla +C2870620|T037|PT|T20.60XS|ICD10CM|Corrosion of second degree of head, face, and neck, unspecified site, sequela|Corrosion of second degree of head, face, and neck, unspecified site, sequela +C2870621|T037|AB|T20.61|ICD10CM|Corrosion of second degree of ear|Corrosion of second degree of ear +C2870621|T037|HT|T20.61|ICD10CM|Corrosion of second degree of ear [any part, except ear drum]|Corrosion of second degree of ear [any part, except ear drum] +C2870622|T037|AB|T20.611|ICD10CM|Corrosion of second degree of right ear|Corrosion of second degree of right ear +C2870622|T037|HT|T20.611|ICD10CM|Corrosion of second degree of right ear [any part, except ear drum]|Corrosion of second degree of right ear [any part, except ear drum] +C2870623|T037|PT|T20.611A|ICD10CM|Corrosion of second degree of right ear [any part, except ear drum], initial encounter|Corrosion of second degree of right ear [any part, except ear drum], initial encounter +C2870623|T037|AB|T20.611A|ICD10CM|Corrosion of second degree of right ear, initial encounter|Corrosion of second degree of right ear, initial encounter +C2870624|T037|PT|T20.611D|ICD10CM|Corrosion of second degree of right ear [any part, except ear drum], subsequent encounter|Corrosion of second degree of right ear [any part, except ear drum], subsequent encounter +C2870624|T037|AB|T20.611D|ICD10CM|Corrosion of second degree of right ear, subs encntr|Corrosion of second degree of right ear, subs encntr +C2870625|T037|PT|T20.611S|ICD10CM|Corrosion of second degree of right ear [any part, except ear drum], sequela|Corrosion of second degree of right ear [any part, except ear drum], sequela +C2870625|T037|AB|T20.611S|ICD10CM|Corrosion of second degree of right ear, sequela|Corrosion of second degree of right ear, sequela +C2870626|T037|AB|T20.612|ICD10CM|Corrosion of second degree of left ear|Corrosion of second degree of left ear +C2870626|T037|HT|T20.612|ICD10CM|Corrosion of second degree of left ear [any part, except ear drum]|Corrosion of second degree of left ear [any part, except ear drum] +C2870627|T037|PT|T20.612A|ICD10CM|Corrosion of second degree of left ear [any part, except ear drum], initial encounter|Corrosion of second degree of left ear [any part, except ear drum], initial encounter +C2870627|T037|AB|T20.612A|ICD10CM|Corrosion of second degree of left ear, initial encounter|Corrosion of second degree of left ear, initial encounter +C2870628|T037|PT|T20.612D|ICD10CM|Corrosion of second degree of left ear [any part, except ear drum], subsequent encounter|Corrosion of second degree of left ear [any part, except ear drum], subsequent encounter +C2870628|T037|AB|T20.612D|ICD10CM|Corrosion of second degree of left ear, subsequent encounter|Corrosion of second degree of left ear, subsequent encounter +C2870629|T037|PT|T20.612S|ICD10CM|Corrosion of second degree of left ear [any part, except ear drum], sequela|Corrosion of second degree of left ear [any part, except ear drum], sequela +C2870629|T037|AB|T20.612S|ICD10CM|Corrosion of second degree of left ear, sequela|Corrosion of second degree of left ear, sequela +C2870630|T037|AB|T20.619|ICD10CM|Corrosion of second degree of unspecified ear|Corrosion of second degree of unspecified ear +C2870630|T037|HT|T20.619|ICD10CM|Corrosion of second degree of unspecified ear [any part, except ear drum]|Corrosion of second degree of unspecified ear [any part, except ear drum] +C2870631|T037|PT|T20.619A|ICD10CM|Corrosion of second degree of unspecified ear [any part, except ear drum], initial encounter|Corrosion of second degree of unspecified ear [any part, except ear drum], initial encounter +C2870631|T037|AB|T20.619A|ICD10CM|Corrosion of second degree of unspecified ear, init encntr|Corrosion of second degree of unspecified ear, init encntr +C2870632|T037|PT|T20.619D|ICD10CM|Corrosion of second degree of unspecified ear [any part, except ear drum], subsequent encounter|Corrosion of second degree of unspecified ear [any part, except ear drum], subsequent encounter +C2870632|T037|AB|T20.619D|ICD10CM|Corrosion of second degree of unspecified ear, subs encntr|Corrosion of second degree of unspecified ear, subs encntr +C2870633|T037|PT|T20.619S|ICD10CM|Corrosion of second degree of unspecified ear [any part, except ear drum], sequela|Corrosion of second degree of unspecified ear [any part, except ear drum], sequela +C2870633|T037|AB|T20.619S|ICD10CM|Corrosion of second degree of unspecified ear, sequela|Corrosion of second degree of unspecified ear, sequela +C2870634|T037|AB|T20.62|ICD10CM|Corrosion of second degree of lip(s)|Corrosion of second degree of lip(s) +C2870634|T037|HT|T20.62|ICD10CM|Corrosion of second degree of lip(s)|Corrosion of second degree of lip(s) +C2870635|T037|PT|T20.62XA|ICD10CM|Corrosion of second degree of lip(s), initial encounter|Corrosion of second degree of lip(s), initial encounter +C2870635|T037|AB|T20.62XA|ICD10CM|Corrosion of second degree of lip(s), initial encounter|Corrosion of second degree of lip(s), initial encounter +C2870636|T037|PT|T20.62XD|ICD10CM|Corrosion of second degree of lip(s), subsequent encounter|Corrosion of second degree of lip(s), subsequent encounter +C2870636|T037|AB|T20.62XD|ICD10CM|Corrosion of second degree of lip(s), subsequent encounter|Corrosion of second degree of lip(s), subsequent encounter +C2870637|T037|PT|T20.62XS|ICD10CM|Corrosion of second degree of lip(s), sequela|Corrosion of second degree of lip(s), sequela +C2870637|T037|AB|T20.62XS|ICD10CM|Corrosion of second degree of lip(s), sequela|Corrosion of second degree of lip(s), sequela +C2870638|T037|AB|T20.63|ICD10CM|Corrosion of second degree of chin|Corrosion of second degree of chin +C2870638|T037|HT|T20.63|ICD10CM|Corrosion of second degree of chin|Corrosion of second degree of chin +C2870639|T037|PT|T20.63XA|ICD10CM|Corrosion of second degree of chin, initial encounter|Corrosion of second degree of chin, initial encounter +C2870639|T037|AB|T20.63XA|ICD10CM|Corrosion of second degree of chin, initial encounter|Corrosion of second degree of chin, initial encounter +C2870640|T037|PT|T20.63XD|ICD10CM|Corrosion of second degree of chin, subsequent encounter|Corrosion of second degree of chin, subsequent encounter +C2870640|T037|AB|T20.63XD|ICD10CM|Corrosion of second degree of chin, subsequent encounter|Corrosion of second degree of chin, subsequent encounter +C2870641|T037|PT|T20.63XS|ICD10CM|Corrosion of second degree of chin, sequela|Corrosion of second degree of chin, sequela +C2870641|T037|AB|T20.63XS|ICD10CM|Corrosion of second degree of chin, sequela|Corrosion of second degree of chin, sequela +C2870642|T037|AB|T20.64|ICD10CM|Corrosion of second degree of nose (septum)|Corrosion of second degree of nose (septum) +C2870642|T037|HT|T20.64|ICD10CM|Corrosion of second degree of nose (septum)|Corrosion of second degree of nose (septum) +C2870643|T037|AB|T20.64XA|ICD10CM|Corrosion of second degree of nose (septum), init encntr|Corrosion of second degree of nose (septum), init encntr +C2870643|T037|PT|T20.64XA|ICD10CM|Corrosion of second degree of nose (septum), initial encounter|Corrosion of second degree of nose (septum), initial encounter +C2870644|T037|AB|T20.64XD|ICD10CM|Corrosion of second degree of nose (septum), subs encntr|Corrosion of second degree of nose (septum), subs encntr +C2870644|T037|PT|T20.64XD|ICD10CM|Corrosion of second degree of nose (septum), subsequent encounter|Corrosion of second degree of nose (septum), subsequent encounter +C2870645|T037|PT|T20.64XS|ICD10CM|Corrosion of second degree of nose (septum), sequela|Corrosion of second degree of nose (septum), sequela +C2870645|T037|AB|T20.64XS|ICD10CM|Corrosion of second degree of nose (septum), sequela|Corrosion of second degree of nose (septum), sequela +C2870646|T037|AB|T20.65|ICD10CM|Corrosion of second degree of scalp [any part]|Corrosion of second degree of scalp [any part] +C2870646|T037|HT|T20.65|ICD10CM|Corrosion of second degree of scalp [any part]|Corrosion of second degree of scalp [any part] +C2870647|T037|PT|T20.65XA|ICD10CM|Corrosion of second degree of scalp [any part], initial encounter|Corrosion of second degree of scalp [any part], initial encounter +C2870647|T037|AB|T20.65XA|ICD10CM|Corrosion of second degree of scalp, initial encounter|Corrosion of second degree of scalp, initial encounter +C2870648|T037|PT|T20.65XD|ICD10CM|Corrosion of second degree of scalp [any part], subsequent encounter|Corrosion of second degree of scalp [any part], subsequent encounter +C2870648|T037|AB|T20.65XD|ICD10CM|Corrosion of second degree of scalp, subsequent encounter|Corrosion of second degree of scalp, subsequent encounter +C2870649|T037|PT|T20.65XS|ICD10CM|Corrosion of second degree of scalp [any part], sequela|Corrosion of second degree of scalp [any part], sequela +C2870649|T037|AB|T20.65XS|ICD10CM|Corrosion of second degree of scalp [any part], sequela|Corrosion of second degree of scalp [any part], sequela +C2870650|T037|AB|T20.66|ICD10CM|Corrosion of second degree of forehead and cheek|Corrosion of second degree of forehead and cheek +C2870650|T037|HT|T20.66|ICD10CM|Corrosion of second degree of forehead and cheek|Corrosion of second degree of forehead and cheek +C2870651|T037|AB|T20.66XA|ICD10CM|Corrosion of second degree of forehead and cheek, init|Corrosion of second degree of forehead and cheek, init +C2870651|T037|PT|T20.66XA|ICD10CM|Corrosion of second degree of forehead and cheek, initial encounter|Corrosion of second degree of forehead and cheek, initial encounter +C2870652|T037|AB|T20.66XD|ICD10CM|Corrosion of second degree of forehead and cheek, subs|Corrosion of second degree of forehead and cheek, subs +C2870652|T037|PT|T20.66XD|ICD10CM|Corrosion of second degree of forehead and cheek, subsequent encounter|Corrosion of second degree of forehead and cheek, subsequent encounter +C2870653|T037|PT|T20.66XS|ICD10CM|Corrosion of second degree of forehead and cheek, sequela|Corrosion of second degree of forehead and cheek, sequela +C2870653|T037|AB|T20.66XS|ICD10CM|Corrosion of second degree of forehead and cheek, sequela|Corrosion of second degree of forehead and cheek, sequela +C2870654|T037|AB|T20.67|ICD10CM|Corrosion of second degree of neck|Corrosion of second degree of neck +C2870654|T037|HT|T20.67|ICD10CM|Corrosion of second degree of neck|Corrosion of second degree of neck +C2870655|T037|PT|T20.67XA|ICD10CM|Corrosion of second degree of neck, initial encounter|Corrosion of second degree of neck, initial encounter +C2870655|T037|AB|T20.67XA|ICD10CM|Corrosion of second degree of neck, initial encounter|Corrosion of second degree of neck, initial encounter +C2870656|T037|PT|T20.67XD|ICD10CM|Corrosion of second degree of neck, subsequent encounter|Corrosion of second degree of neck, subsequent encounter +C2870656|T037|AB|T20.67XD|ICD10CM|Corrosion of second degree of neck, subsequent encounter|Corrosion of second degree of neck, subsequent encounter +C2870657|T037|PT|T20.67XS|ICD10CM|Corrosion of second degree of neck, sequela|Corrosion of second degree of neck, sequela +C2870657|T037|AB|T20.67XS|ICD10CM|Corrosion of second degree of neck, sequela|Corrosion of second degree of neck, sequela +C2870658|T037|AB|T20.69|ICD10CM|Corrosion of 2nd deg mul sites of head, face, and neck|Corrosion of 2nd deg mul sites of head, face, and neck +C2870658|T037|HT|T20.69|ICD10CM|Corrosion of second degree of multiple sites of head, face, and neck|Corrosion of second degree of multiple sites of head, face, and neck +C2870659|T037|AB|T20.69XA|ICD10CM|Corrosion of 2nd deg mul sites of head, face, and neck, init|Corrosion of 2nd deg mul sites of head, face, and neck, init +C2870659|T037|PT|T20.69XA|ICD10CM|Corrosion of second degree of multiple sites of head, face, and neck, initial encounter|Corrosion of second degree of multiple sites of head, face, and neck, initial encounter +C2870660|T037|AB|T20.69XD|ICD10CM|Corrosion of 2nd deg mul sites of head, face, and neck, subs|Corrosion of 2nd deg mul sites of head, face, and neck, subs +C2870660|T037|PT|T20.69XD|ICD10CM|Corrosion of second degree of multiple sites of head, face, and neck, subsequent encounter|Corrosion of second degree of multiple sites of head, face, and neck, subsequent encounter +C2870661|T037|AB|T20.69XS|ICD10CM|Corros 2nd deg mul sites of head, face, and neck, sequela|Corros 2nd deg mul sites of head, face, and neck, sequela +C2870661|T037|PT|T20.69XS|ICD10CM|Corrosion of second degree of multiple sites of head, face, and neck, sequela|Corrosion of second degree of multiple sites of head, face, and neck, sequela +C0452005|T037|PT|T20.7|ICD10|Corrosion of third degree of head and neck|Corrosion of third degree of head and neck +C2870662|T037|AB|T20.7|ICD10CM|Corrosion of third degree of head, face, and neck|Corrosion of third degree of head, face, and neck +C2870662|T037|HT|T20.7|ICD10CM|Corrosion of third degree of head, face, and neck|Corrosion of third degree of head, face, and neck +C2870663|T037|AB|T20.70|ICD10CM|Corrosion of third degree of head, face, and neck, unsp site|Corrosion of third degree of head, face, and neck, unsp site +C2870663|T037|HT|T20.70|ICD10CM|Corrosion of third degree of head, face, and neck, unspecified site|Corrosion of third degree of head, face, and neck, unspecified site +C2870664|T037|AB|T20.70XA|ICD10CM|Corros third degree of head, face, and neck, unsp site, init|Corros third degree of head, face, and neck, unsp site, init +C2870664|T037|PT|T20.70XA|ICD10CM|Corrosion of third degree of head, face, and neck, unspecified site, initial encounter|Corrosion of third degree of head, face, and neck, unspecified site, initial encounter +C2870665|T037|AB|T20.70XD|ICD10CM|Corros third degree of head, face, and neck, unsp site, subs|Corros third degree of head, face, and neck, unsp site, subs +C2870665|T037|PT|T20.70XD|ICD10CM|Corrosion of third degree of head, face, and neck, unspecified site, subsequent encounter|Corrosion of third degree of head, face, and neck, unspecified site, subsequent encounter +C2870666|T037|AB|T20.70XS|ICD10CM|Corros third degree of head, face, and neck, unsp site, sqla|Corros third degree of head, face, and neck, unsp site, sqla +C2870666|T037|PT|T20.70XS|ICD10CM|Corrosion of third degree of head, face, and neck, unspecified site, sequela|Corrosion of third degree of head, face, and neck, unspecified site, sequela +C2870667|T037|AB|T20.71|ICD10CM|Corrosion of third degree of ear [any part, except ear drum]|Corrosion of third degree of ear [any part, except ear drum] +C2870667|T037|HT|T20.71|ICD10CM|Corrosion of third degree of ear [any part, except ear drum]|Corrosion of third degree of ear [any part, except ear drum] +C2870668|T037|AB|T20.711|ICD10CM|Corrosion of third degree of right ear|Corrosion of third degree of right ear +C2870668|T037|HT|T20.711|ICD10CM|Corrosion of third degree of right ear [any part, except ear drum]|Corrosion of third degree of right ear [any part, except ear drum] +C2870669|T037|PT|T20.711A|ICD10CM|Corrosion of third degree of right ear [any part, except ear drum], initial encounter|Corrosion of third degree of right ear [any part, except ear drum], initial encounter +C2870669|T037|AB|T20.711A|ICD10CM|Corrosion of third degree of right ear, initial encounter|Corrosion of third degree of right ear, initial encounter +C2870670|T037|PT|T20.711D|ICD10CM|Corrosion of third degree of right ear [any part, except ear drum], subsequent encounter|Corrosion of third degree of right ear [any part, except ear drum], subsequent encounter +C2870670|T037|AB|T20.711D|ICD10CM|Corrosion of third degree of right ear, subsequent encounter|Corrosion of third degree of right ear, subsequent encounter +C2870671|T037|PT|T20.711S|ICD10CM|Corrosion of third degree of right ear [any part, except ear drum], sequela|Corrosion of third degree of right ear [any part, except ear drum], sequela +C2870671|T037|AB|T20.711S|ICD10CM|Corrosion of third degree of right ear, sequela|Corrosion of third degree of right ear, sequela +C2870672|T037|AB|T20.712|ICD10CM|Corrosion of third degree of left ear|Corrosion of third degree of left ear +C2870672|T037|HT|T20.712|ICD10CM|Corrosion of third degree of left ear [any part, except ear drum]|Corrosion of third degree of left ear [any part, except ear drum] +C2870673|T037|PT|T20.712A|ICD10CM|Corrosion of third degree of left ear [any part, except ear drum], initial encounter|Corrosion of third degree of left ear [any part, except ear drum], initial encounter +C2870673|T037|AB|T20.712A|ICD10CM|Corrosion of third degree of left ear, initial encounter|Corrosion of third degree of left ear, initial encounter +C2870674|T037|PT|T20.712D|ICD10CM|Corrosion of third degree of left ear [any part, except ear drum], subsequent encounter|Corrosion of third degree of left ear [any part, except ear drum], subsequent encounter +C2870674|T037|AB|T20.712D|ICD10CM|Corrosion of third degree of left ear, subsequent encounter|Corrosion of third degree of left ear, subsequent encounter +C2870675|T037|PT|T20.712S|ICD10CM|Corrosion of third degree of left ear [any part, except ear drum], sequela|Corrosion of third degree of left ear [any part, except ear drum], sequela +C2870675|T037|AB|T20.712S|ICD10CM|Corrosion of third degree of left ear, sequela|Corrosion of third degree of left ear, sequela +C2870676|T037|AB|T20.719|ICD10CM|Corrosion of third degree of unspecified ear|Corrosion of third degree of unspecified ear +C2870676|T037|HT|T20.719|ICD10CM|Corrosion of third degree of unspecified ear [any part, except ear drum]|Corrosion of third degree of unspecified ear [any part, except ear drum] +C2870677|T037|PT|T20.719A|ICD10CM|Corrosion of third degree of unspecified ear [any part, except ear drum], initial encounter|Corrosion of third degree of unspecified ear [any part, except ear drum], initial encounter +C2870677|T037|AB|T20.719A|ICD10CM|Corrosion of third degree of unspecified ear, init encntr|Corrosion of third degree of unspecified ear, init encntr +C2870678|T037|PT|T20.719D|ICD10CM|Corrosion of third degree of unspecified ear [any part, except ear drum], subsequent encounter|Corrosion of third degree of unspecified ear [any part, except ear drum], subsequent encounter +C2870678|T037|AB|T20.719D|ICD10CM|Corrosion of third degree of unspecified ear, subs encntr|Corrosion of third degree of unspecified ear, subs encntr +C2870679|T037|PT|T20.719S|ICD10CM|Corrosion of third degree of unspecified ear [any part, except ear drum], sequela|Corrosion of third degree of unspecified ear [any part, except ear drum], sequela +C2870679|T037|AB|T20.719S|ICD10CM|Corrosion of third degree of unspecified ear, sequela|Corrosion of third degree of unspecified ear, sequela +C2870680|T037|AB|T20.72|ICD10CM|Corrosion of third degree of lip(s)|Corrosion of third degree of lip(s) +C2870680|T037|HT|T20.72|ICD10CM|Corrosion of third degree of lip(s)|Corrosion of third degree of lip(s) +C2870681|T037|PT|T20.72XA|ICD10CM|Corrosion of third degree of lip(s), initial encounter|Corrosion of third degree of lip(s), initial encounter +C2870681|T037|AB|T20.72XA|ICD10CM|Corrosion of third degree of lip(s), initial encounter|Corrosion of third degree of lip(s), initial encounter +C2870682|T037|PT|T20.72XD|ICD10CM|Corrosion of third degree of lip(s), subsequent encounter|Corrosion of third degree of lip(s), subsequent encounter +C2870682|T037|AB|T20.72XD|ICD10CM|Corrosion of third degree of lip(s), subsequent encounter|Corrosion of third degree of lip(s), subsequent encounter +C2870683|T037|PT|T20.72XS|ICD10CM|Corrosion of third degree of lip(s), sequela|Corrosion of third degree of lip(s), sequela +C2870683|T037|AB|T20.72XS|ICD10CM|Corrosion of third degree of lip(s), sequela|Corrosion of third degree of lip(s), sequela +C2870684|T037|AB|T20.73|ICD10CM|Corrosion of third degree of chin|Corrosion of third degree of chin +C2870684|T037|HT|T20.73|ICD10CM|Corrosion of third degree of chin|Corrosion of third degree of chin +C2870685|T037|PT|T20.73XA|ICD10CM|Corrosion of third degree of chin, initial encounter|Corrosion of third degree of chin, initial encounter +C2870685|T037|AB|T20.73XA|ICD10CM|Corrosion of third degree of chin, initial encounter|Corrosion of third degree of chin, initial encounter +C2870686|T037|PT|T20.73XD|ICD10CM|Corrosion of third degree of chin, subsequent encounter|Corrosion of third degree of chin, subsequent encounter +C2870686|T037|AB|T20.73XD|ICD10CM|Corrosion of third degree of chin, subsequent encounter|Corrosion of third degree of chin, subsequent encounter +C2870687|T037|PT|T20.73XS|ICD10CM|Corrosion of third degree of chin, sequela|Corrosion of third degree of chin, sequela +C2870687|T037|AB|T20.73XS|ICD10CM|Corrosion of third degree of chin, sequela|Corrosion of third degree of chin, sequela +C2870688|T037|AB|T20.74|ICD10CM|Corrosion of third degree of nose (septum)|Corrosion of third degree of nose (septum) +C2870688|T037|HT|T20.74|ICD10CM|Corrosion of third degree of nose (septum)|Corrosion of third degree of nose (septum) +C2870689|T037|AB|T20.74XA|ICD10CM|Corrosion of third degree of nose (septum), init encntr|Corrosion of third degree of nose (septum), init encntr +C2870689|T037|PT|T20.74XA|ICD10CM|Corrosion of third degree of nose (septum), initial encounter|Corrosion of third degree of nose (septum), initial encounter +C2870690|T037|AB|T20.74XD|ICD10CM|Corrosion of third degree of nose (septum), subs encntr|Corrosion of third degree of nose (septum), subs encntr +C2870690|T037|PT|T20.74XD|ICD10CM|Corrosion of third degree of nose (septum), subsequent encounter|Corrosion of third degree of nose (septum), subsequent encounter +C2870691|T037|PT|T20.74XS|ICD10CM|Corrosion of third degree of nose (septum), sequela|Corrosion of third degree of nose (septum), sequela +C2870691|T037|AB|T20.74XS|ICD10CM|Corrosion of third degree of nose (septum), sequela|Corrosion of third degree of nose (septum), sequela +C2870692|T037|AB|T20.75|ICD10CM|Corrosion of third degree of scalp [any part]|Corrosion of third degree of scalp [any part] +C2870692|T037|HT|T20.75|ICD10CM|Corrosion of third degree of scalp [any part]|Corrosion of third degree of scalp [any part] +C2870693|T037|PT|T20.75XA|ICD10CM|Corrosion of third degree of scalp [any part], initial encounter|Corrosion of third degree of scalp [any part], initial encounter +C2870693|T037|AB|T20.75XA|ICD10CM|Corrosion of third degree of scalp, initial encounter|Corrosion of third degree of scalp, initial encounter +C2870694|T037|PT|T20.75XD|ICD10CM|Corrosion of third degree of scalp [any part], subsequent encounter|Corrosion of third degree of scalp [any part], subsequent encounter +C2870694|T037|AB|T20.75XD|ICD10CM|Corrosion of third degree of scalp, subsequent encounter|Corrosion of third degree of scalp, subsequent encounter +C2870695|T037|PT|T20.75XS|ICD10CM|Corrosion of third degree of scalp [any part], sequela|Corrosion of third degree of scalp [any part], sequela +C2870695|T037|AB|T20.75XS|ICD10CM|Corrosion of third degree of scalp [any part], sequela|Corrosion of third degree of scalp [any part], sequela +C2870696|T037|AB|T20.76|ICD10CM|Corrosion of third degree of forehead and cheek|Corrosion of third degree of forehead and cheek +C2870696|T037|HT|T20.76|ICD10CM|Corrosion of third degree of forehead and cheek|Corrosion of third degree of forehead and cheek +C2870697|T037|AB|T20.76XA|ICD10CM|Corrosion of third degree of forehead and cheek, init encntr|Corrosion of third degree of forehead and cheek, init encntr +C2870697|T037|PT|T20.76XA|ICD10CM|Corrosion of third degree of forehead and cheek, initial encounter|Corrosion of third degree of forehead and cheek, initial encounter +C2870698|T037|AB|T20.76XD|ICD10CM|Corrosion of third degree of forehead and cheek, subs encntr|Corrosion of third degree of forehead and cheek, subs encntr +C2870698|T037|PT|T20.76XD|ICD10CM|Corrosion of third degree of forehead and cheek, subsequent encounter|Corrosion of third degree of forehead and cheek, subsequent encounter +C2870699|T037|PT|T20.76XS|ICD10CM|Corrosion of third degree of forehead and cheek, sequela|Corrosion of third degree of forehead and cheek, sequela +C2870699|T037|AB|T20.76XS|ICD10CM|Corrosion of third degree of forehead and cheek, sequela|Corrosion of third degree of forehead and cheek, sequela +C2870700|T037|AB|T20.77|ICD10CM|Corrosion of third degree of neck|Corrosion of third degree of neck +C2870700|T037|HT|T20.77|ICD10CM|Corrosion of third degree of neck|Corrosion of third degree of neck +C2870701|T037|PT|T20.77XA|ICD10CM|Corrosion of third degree of neck, initial encounter|Corrosion of third degree of neck, initial encounter +C2870701|T037|AB|T20.77XA|ICD10CM|Corrosion of third degree of neck, initial encounter|Corrosion of third degree of neck, initial encounter +C2870702|T037|PT|T20.77XD|ICD10CM|Corrosion of third degree of neck, subsequent encounter|Corrosion of third degree of neck, subsequent encounter +C2870702|T037|AB|T20.77XD|ICD10CM|Corrosion of third degree of neck, subsequent encounter|Corrosion of third degree of neck, subsequent encounter +C2870703|T037|PT|T20.77XS|ICD10CM|Corrosion of third degree of neck, sequela|Corrosion of third degree of neck, sequela +C2870703|T037|AB|T20.77XS|ICD10CM|Corrosion of third degree of neck, sequela|Corrosion of third degree of neck, sequela +C2870704|T037|AB|T20.79|ICD10CM|Corrosion of 3rd deg mu sites of head, face, and neck|Corrosion of 3rd deg mu sites of head, face, and neck +C2870704|T037|HT|T20.79|ICD10CM|Corrosion of third degree of multiple sites of head, face, and neck|Corrosion of third degree of multiple sites of head, face, and neck +C2870705|T037|AB|T20.79XA|ICD10CM|Corrosion of 3rd deg mu sites of head, face, and neck, init|Corrosion of 3rd deg mu sites of head, face, and neck, init +C2870705|T037|PT|T20.79XA|ICD10CM|Corrosion of third degree of multiple sites of head, face, and neck, initial encounter|Corrosion of third degree of multiple sites of head, face, and neck, initial encounter +C2870706|T037|AB|T20.79XD|ICD10CM|Corrosion of 3rd deg mu sites of head, face, and neck, subs|Corrosion of 3rd deg mu sites of head, face, and neck, subs +C2870706|T037|PT|T20.79XD|ICD10CM|Corrosion of third degree of multiple sites of head, face, and neck, subsequent encounter|Corrosion of third degree of multiple sites of head, face, and neck, subsequent encounter +C2870707|T037|AB|T20.79XS|ICD10CM|Corros 3rd deg mu sites of head, face, and neck, sequela|Corros 3rd deg mu sites of head, face, and neck, sequela +C2870707|T037|PT|T20.79XS|ICD10CM|Corrosion of third degree of multiple sites of head, face, and neck, sequela|Corrosion of third degree of multiple sites of head, face, and neck, sequela +C2919011|T037|HT|T21|ICD10|Burn and corrosion of trunk|Burn and corrosion of trunk +C2919011|T037|AB|T21|ICD10CM|Burn and corrosion of trunk|Burn and corrosion of trunk +C2919011|T037|HT|T21|ICD10CM|Burn and corrosion of trunk|Burn and corrosion of trunk +C4290397|T037|ET|T21|ICD10CM|burns and corrosion of hip region|burns and corrosion of hip region +C1812614|T037|PT|T21.0|ICD10|Burn of unspecified degree of trunk|Burn of unspecified degree of trunk +C1812614|T037|HT|T21.0|ICD10CM|Burn of unspecified degree of trunk|Burn of unspecified degree of trunk +C1812614|T037|AB|T21.0|ICD10CM|Burn of unspecified degree of trunk|Burn of unspecified degree of trunk +C1812615|T037|HT|T21.00|ICD10CM|Burn of unspecified degree of trunk, unspecified site|Burn of unspecified degree of trunk, unspecified site +C1812615|T037|AB|T21.00|ICD10CM|Burn of unspecified degree of trunk, unspecified site|Burn of unspecified degree of trunk, unspecified site +C2870709|T037|AB|T21.00XA|ICD10CM|Burn of unsp degree of trunk, unspecified site, init encntr|Burn of unsp degree of trunk, unspecified site, init encntr +C2870709|T037|PT|T21.00XA|ICD10CM|Burn of unspecified degree of trunk, unspecified site, initial encounter|Burn of unspecified degree of trunk, unspecified site, initial encounter +C2870710|T037|AB|T21.00XD|ICD10CM|Burn of unsp degree of trunk, unspecified site, subs encntr|Burn of unsp degree of trunk, unspecified site, subs encntr +C2870710|T037|PT|T21.00XD|ICD10CM|Burn of unspecified degree of trunk, unspecified site, subsequent encounter|Burn of unspecified degree of trunk, unspecified site, subsequent encounter +C2870711|T037|AB|T21.00XS|ICD10CM|Burn of unsp degree of trunk, unspecified site, sequela|Burn of unsp degree of trunk, unspecified site, sequela +C2870711|T037|PT|T21.00XS|ICD10CM|Burn of unspecified degree of trunk, unspecified site, sequela|Burn of unspecified degree of trunk, unspecified site, sequela +C0273993|T037|ET|T21.01|ICD10CM|Burn of unspecified degree of breast|Burn of unspecified degree of breast +C2870712|T037|AB|T21.01|ICD10CM|Burn of unspecified degree of chest wall|Burn of unspecified degree of chest wall +C2870712|T037|HT|T21.01|ICD10CM|Burn of unspecified degree of chest wall|Burn of unspecified degree of chest wall +C2870713|T037|PT|T21.01XA|ICD10CM|Burn of unspecified degree of chest wall, initial encounter|Burn of unspecified degree of chest wall, initial encounter +C2870713|T037|AB|T21.01XA|ICD10CM|Burn of unspecified degree of chest wall, initial encounter|Burn of unspecified degree of chest wall, initial encounter +C2870714|T037|AB|T21.01XD|ICD10CM|Burn of unspecified degree of chest wall, subs encntr|Burn of unspecified degree of chest wall, subs encntr +C2870714|T037|PT|T21.01XD|ICD10CM|Burn of unspecified degree of chest wall, subsequent encounter|Burn of unspecified degree of chest wall, subsequent encounter +C2870715|T037|PT|T21.01XS|ICD10CM|Burn of unspecified degree of chest wall, sequela|Burn of unspecified degree of chest wall, sequela +C2870715|T037|AB|T21.01XS|ICD10CM|Burn of unspecified degree of chest wall, sequela|Burn of unspecified degree of chest wall, sequela +C0274005|T037|HT|T21.02|ICD10CM|Burn of unspecified degree of abdominal wall|Burn of unspecified degree of abdominal wall +C0274005|T037|AB|T21.02|ICD10CM|Burn of unspecified degree of abdominal wall|Burn of unspecified degree of abdominal wall +C2870716|T037|ET|T21.02|ICD10CM|Burn of unspecified degree of flank|Burn of unspecified degree of flank +C2870717|T037|ET|T21.02|ICD10CM|Burn of unspecified degree of groin|Burn of unspecified degree of groin +C2870718|T037|AB|T21.02XA|ICD10CM|Burn of unspecified degree of abdominal wall, init encntr|Burn of unspecified degree of abdominal wall, init encntr +C2870718|T037|PT|T21.02XA|ICD10CM|Burn of unspecified degree of abdominal wall, initial encounter|Burn of unspecified degree of abdominal wall, initial encounter +C2870719|T037|AB|T21.02XD|ICD10CM|Burn of unspecified degree of abdominal wall, subs encntr|Burn of unspecified degree of abdominal wall, subs encntr +C2870719|T037|PT|T21.02XD|ICD10CM|Burn of unspecified degree of abdominal wall, subsequent encounter|Burn of unspecified degree of abdominal wall, subsequent encounter +C2870720|T037|PT|T21.02XS|ICD10CM|Burn of unspecified degree of abdominal wall, sequela|Burn of unspecified degree of abdominal wall, sequela +C2870720|T037|AB|T21.02XS|ICD10CM|Burn of unspecified degree of abdominal wall, sequela|Burn of unspecified degree of abdominal wall, sequela +C2870721|T037|ET|T21.03|ICD10CM|Burn of unspecified degree of interscapular region|Burn of unspecified degree of interscapular region +C2870722|T037|AB|T21.03|ICD10CM|Burn of unspecified degree of upper back|Burn of unspecified degree of upper back +C2870722|T037|HT|T21.03|ICD10CM|Burn of unspecified degree of upper back|Burn of unspecified degree of upper back +C2870723|T037|PT|T21.03XA|ICD10CM|Burn of unspecified degree of upper back, initial encounter|Burn of unspecified degree of upper back, initial encounter +C2870723|T037|AB|T21.03XA|ICD10CM|Burn of unspecified degree of upper back, initial encounter|Burn of unspecified degree of upper back, initial encounter +C2870724|T037|AB|T21.03XD|ICD10CM|Burn of unspecified degree of upper back, subs encntr|Burn of unspecified degree of upper back, subs encntr +C2870724|T037|PT|T21.03XD|ICD10CM|Burn of unspecified degree of upper back, subsequent encounter|Burn of unspecified degree of upper back, subsequent encounter +C2870725|T037|PT|T21.03XS|ICD10CM|Burn of unspecified degree of upper back, sequela|Burn of unspecified degree of upper back, sequela +C2870725|T037|AB|T21.03XS|ICD10CM|Burn of unspecified degree of upper back, sequela|Burn of unspecified degree of upper back, sequela +C2870726|T037|AB|T21.04|ICD10CM|Burn of unspecified degree of lower back|Burn of unspecified degree of lower back +C2870726|T037|HT|T21.04|ICD10CM|Burn of unspecified degree of lower back|Burn of unspecified degree of lower back +C2870727|T037|PT|T21.04XA|ICD10CM|Burn of unspecified degree of lower back, initial encounter|Burn of unspecified degree of lower back, initial encounter +C2870727|T037|AB|T21.04XA|ICD10CM|Burn of unspecified degree of lower back, initial encounter|Burn of unspecified degree of lower back, initial encounter +C2870728|T037|AB|T21.04XD|ICD10CM|Burn of unspecified degree of lower back, subs encntr|Burn of unspecified degree of lower back, subs encntr +C2870728|T037|PT|T21.04XD|ICD10CM|Burn of unspecified degree of lower back, subsequent encounter|Burn of unspecified degree of lower back, subsequent encounter +C2870729|T037|PT|T21.04XS|ICD10CM|Burn of unspecified degree of lower back, sequela|Burn of unspecified degree of lower back, sequela +C2870729|T037|AB|T21.04XS|ICD10CM|Burn of unspecified degree of lower back, sequela|Burn of unspecified degree of lower back, sequela +C2870730|T037|ET|T21.05|ICD10CM|Burn of unspecified degree of anus|Burn of unspecified degree of anus +C2870731|T037|AB|T21.05|ICD10CM|Burn of unspecified degree of buttock|Burn of unspecified degree of buttock +C2870731|T037|HT|T21.05|ICD10CM|Burn of unspecified degree of buttock|Burn of unspecified degree of buttock +C2870732|T037|PT|T21.05XA|ICD10CM|Burn of unspecified degree of buttock, initial encounter|Burn of unspecified degree of buttock, initial encounter +C2870732|T037|AB|T21.05XA|ICD10CM|Burn of unspecified degree of buttock, initial encounter|Burn of unspecified degree of buttock, initial encounter +C2870733|T037|PT|T21.05XD|ICD10CM|Burn of unspecified degree of buttock, subsequent encounter|Burn of unspecified degree of buttock, subsequent encounter +C2870733|T037|AB|T21.05XD|ICD10CM|Burn of unspecified degree of buttock, subsequent encounter|Burn of unspecified degree of buttock, subsequent encounter +C2870734|T037|PT|T21.05XS|ICD10CM|Burn of unspecified degree of buttock, sequela|Burn of unspecified degree of buttock, sequela +C2870734|T037|AB|T21.05XS|ICD10CM|Burn of unspecified degree of buttock, sequela|Burn of unspecified degree of buttock, sequela +C2870738|T037|AB|T21.06|ICD10CM|Burn of unspecified degree of male genital region|Burn of unspecified degree of male genital region +C2870738|T037|HT|T21.06|ICD10CM|Burn of unspecified degree of male genital region|Burn of unspecified degree of male genital region +C2870735|T037|ET|T21.06|ICD10CM|Burn of unspecified degree of penis|Burn of unspecified degree of penis +C2870736|T037|ET|T21.06|ICD10CM|Burn of unspecified degree of scrotum|Burn of unspecified degree of scrotum +C2870737|T037|ET|T21.06|ICD10CM|Burn of unspecified degree of testis|Burn of unspecified degree of testis +C2870739|T037|AB|T21.06XA|ICD10CM|Burn of unsp degree of male genital region, init encntr|Burn of unsp degree of male genital region, init encntr +C2870739|T037|PT|T21.06XA|ICD10CM|Burn of unspecified degree of male genital region, initial encounter|Burn of unspecified degree of male genital region, initial encounter +C2870740|T037|AB|T21.06XD|ICD10CM|Burn of unsp degree of male genital region, subs encntr|Burn of unsp degree of male genital region, subs encntr +C2870740|T037|PT|T21.06XD|ICD10CM|Burn of unspecified degree of male genital region, subsequent encounter|Burn of unspecified degree of male genital region, subsequent encounter +C2870741|T037|PT|T21.06XS|ICD10CM|Burn of unspecified degree of male genital region, sequela|Burn of unspecified degree of male genital region, sequela +C2870741|T037|AB|T21.06XS|ICD10CM|Burn of unspecified degree of male genital region, sequela|Burn of unspecified degree of male genital region, sequela +C2870745|T037|AB|T21.07|ICD10CM|Burn of unspecified degree of female genital region|Burn of unspecified degree of female genital region +C2870745|T037|HT|T21.07|ICD10CM|Burn of unspecified degree of female genital region|Burn of unspecified degree of female genital region +C2870742|T037|ET|T21.07|ICD10CM|Burn of unspecified degree of labium (majus) (minus)|Burn of unspecified degree of labium (majus) (minus) +C2870743|T037|ET|T21.07|ICD10CM|Burn of unspecified degree of perineum|Burn of unspecified degree of perineum +C2870744|T037|ET|T21.07|ICD10CM|Burn of unspecified degree of vulva|Burn of unspecified degree of vulva +C2870746|T037|AB|T21.07XA|ICD10CM|Burn of unsp degree of female genital region, init encntr|Burn of unsp degree of female genital region, init encntr +C2870746|T037|PT|T21.07XA|ICD10CM|Burn of unspecified degree of female genital region, initial encounter|Burn of unspecified degree of female genital region, initial encounter +C2870747|T037|AB|T21.07XD|ICD10CM|Burn of unsp degree of female genital region, subs encntr|Burn of unsp degree of female genital region, subs encntr +C2870747|T037|PT|T21.07XD|ICD10CM|Burn of unspecified degree of female genital region, subsequent encounter|Burn of unspecified degree of female genital region, subsequent encounter +C2870748|T037|AB|T21.07XS|ICD10CM|Burn of unspecified degree of female genital region, sequela|Burn of unspecified degree of female genital region, sequela +C2870748|T037|PT|T21.07XS|ICD10CM|Burn of unspecified degree of female genital region, sequela|Burn of unspecified degree of female genital region, sequela +C2870749|T037|AB|T21.09|ICD10CM|Burn of unspecified degree of other site of trunk|Burn of unspecified degree of other site of trunk +C2870749|T037|HT|T21.09|ICD10CM|Burn of unspecified degree of other site of trunk|Burn of unspecified degree of other site of trunk +C2870750|T037|AB|T21.09XA|ICD10CM|Burn of unsp degree of other site of trunk, init encntr|Burn of unsp degree of other site of trunk, init encntr +C2870750|T037|PT|T21.09XA|ICD10CM|Burn of unspecified degree of other site of trunk, initial encounter|Burn of unspecified degree of other site of trunk, initial encounter +C2870751|T037|AB|T21.09XD|ICD10CM|Burn of unsp degree of other site of trunk, subs encntr|Burn of unsp degree of other site of trunk, subs encntr +C2870751|T037|PT|T21.09XD|ICD10CM|Burn of unspecified degree of other site of trunk, subsequent encounter|Burn of unspecified degree of other site of trunk, subsequent encounter +C2870752|T037|PT|T21.09XS|ICD10CM|Burn of unspecified degree of other site of trunk, sequela|Burn of unspecified degree of other site of trunk, sequela +C2870752|T037|AB|T21.09XS|ICD10CM|Burn of unspecified degree of other site of trunk, sequela|Burn of unspecified degree of other site of trunk, sequela +C0433310|T037|HT|T21.1|ICD10CM|Burn of first degree of trunk|Burn of first degree of trunk +C0433310|T037|AB|T21.1|ICD10CM|Burn of first degree of trunk|Burn of first degree of trunk +C0433310|T037|PT|T21.1|ICD10|Burn of first degree of trunk|Burn of first degree of trunk +C2870753|T037|AB|T21.10|ICD10CM|Burn of first degree of trunk, unspecified site|Burn of first degree of trunk, unspecified site +C2870753|T037|HT|T21.10|ICD10CM|Burn of first degree of trunk, unspecified site|Burn of first degree of trunk, unspecified site +C2870754|T037|AB|T21.10XA|ICD10CM|Burn of first degree of trunk, unspecified site, init encntr|Burn of first degree of trunk, unspecified site, init encntr +C2870754|T037|PT|T21.10XA|ICD10CM|Burn of first degree of trunk, unspecified site, initial encounter|Burn of first degree of trunk, unspecified site, initial encounter +C2870755|T037|AB|T21.10XD|ICD10CM|Burn of first degree of trunk, unspecified site, subs encntr|Burn of first degree of trunk, unspecified site, subs encntr +C2870755|T037|PT|T21.10XD|ICD10CM|Burn of first degree of trunk, unspecified site, subsequent encounter|Burn of first degree of trunk, unspecified site, subsequent encounter +C2870756|T037|PT|T21.10XS|ICD10CM|Burn of first degree of trunk, unspecified site, sequela|Burn of first degree of trunk, unspecified site, sequela +C2870756|T037|AB|T21.10XS|ICD10CM|Burn of first degree of trunk, unspecified site, sequela|Burn of first degree of trunk, unspecified site, sequela +C0433319|T037|ET|T21.11|ICD10CM|Burn of first degree of breast|Burn of first degree of breast +C0433318|T037|AB|T21.11|ICD10CM|Burn of first degree of chest wall|Burn of first degree of chest wall +C0433318|T037|HT|T21.11|ICD10CM|Burn of first degree of chest wall|Burn of first degree of chest wall +C2870757|T037|PT|T21.11XA|ICD10CM|Burn of first degree of chest wall, initial encounter|Burn of first degree of chest wall, initial encounter +C2870757|T037|AB|T21.11XA|ICD10CM|Burn of first degree of chest wall, initial encounter|Burn of first degree of chest wall, initial encounter +C2870758|T037|PT|T21.11XD|ICD10CM|Burn of first degree of chest wall, subsequent encounter|Burn of first degree of chest wall, subsequent encounter +C2870758|T037|AB|T21.11XD|ICD10CM|Burn of first degree of chest wall, subsequent encounter|Burn of first degree of chest wall, subsequent encounter +C2870759|T037|PT|T21.11XS|ICD10CM|Burn of first degree of chest wall, sequela|Burn of first degree of chest wall, sequela +C2870759|T037|AB|T21.11XS|ICD10CM|Burn of first degree of chest wall, sequela|Burn of first degree of chest wall, sequela +C0433317|T037|AB|T21.12|ICD10CM|Burn of first degree of abdominal wall|Burn of first degree of abdominal wall +C0433317|T037|HT|T21.12|ICD10CM|Burn of first degree of abdominal wall|Burn of first degree of abdominal wall +C2153545|T037|ET|T21.12|ICD10CM|Burn of first degree of flank|Burn of first degree of flank +C2870760|T037|ET|T21.12|ICD10CM|Burn of first degree of groin|Burn of first degree of groin +C2870761|T037|PT|T21.12XA|ICD10CM|Burn of first degree of abdominal wall, initial encounter|Burn of first degree of abdominal wall, initial encounter +C2870761|T037|AB|T21.12XA|ICD10CM|Burn of first degree of abdominal wall, initial encounter|Burn of first degree of abdominal wall, initial encounter +C2870762|T037|AB|T21.12XD|ICD10CM|Burn of first degree of abdominal wall, subsequent encounter|Burn of first degree of abdominal wall, subsequent encounter +C2870762|T037|PT|T21.12XD|ICD10CM|Burn of first degree of abdominal wall, subsequent encounter|Burn of first degree of abdominal wall, subsequent encounter +C2870763|T037|PT|T21.12XS|ICD10CM|Burn of first degree of abdominal wall, sequela|Burn of first degree of abdominal wall, sequela +C2870763|T037|AB|T21.12XS|ICD10CM|Burn of first degree of abdominal wall, sequela|Burn of first degree of abdominal wall, sequela +C2870764|T037|ET|T21.13|ICD10CM|Burn of first degree of interscapular region|Burn of first degree of interscapular region +C2870765|T037|AB|T21.13|ICD10CM|Burn of first degree of upper back|Burn of first degree of upper back +C2870765|T037|HT|T21.13|ICD10CM|Burn of first degree of upper back|Burn of first degree of upper back +C2870766|T037|PT|T21.13XA|ICD10CM|Burn of first degree of upper back, initial encounter|Burn of first degree of upper back, initial encounter +C2870766|T037|AB|T21.13XA|ICD10CM|Burn of first degree of upper back, initial encounter|Burn of first degree of upper back, initial encounter +C2870767|T037|PT|T21.13XD|ICD10CM|Burn of first degree of upper back, subsequent encounter|Burn of first degree of upper back, subsequent encounter +C2870767|T037|AB|T21.13XD|ICD10CM|Burn of first degree of upper back, subsequent encounter|Burn of first degree of upper back, subsequent encounter +C2870768|T037|PT|T21.13XS|ICD10CM|Burn of first degree of upper back, sequela|Burn of first degree of upper back, sequela +C2870768|T037|AB|T21.13XS|ICD10CM|Burn of first degree of upper back, sequela|Burn of first degree of upper back, sequela +C2870769|T037|AB|T21.14|ICD10CM|Burn of first degree of lower back|Burn of first degree of lower back +C2870769|T037|HT|T21.14|ICD10CM|Burn of first degree of lower back|Burn of first degree of lower back +C2870770|T037|PT|T21.14XA|ICD10CM|Burn of first degree of lower back, initial encounter|Burn of first degree of lower back, initial encounter +C2870770|T037|AB|T21.14XA|ICD10CM|Burn of first degree of lower back, initial encounter|Burn of first degree of lower back, initial encounter +C2870771|T037|PT|T21.14XD|ICD10CM|Burn of first degree of lower back, subsequent encounter|Burn of first degree of lower back, subsequent encounter +C2870771|T037|AB|T21.14XD|ICD10CM|Burn of first degree of lower back, subsequent encounter|Burn of first degree of lower back, subsequent encounter +C2870772|T037|PT|T21.14XS|ICD10CM|Burn of first degree of lower back, sequela|Burn of first degree of lower back, sequela +C2870772|T037|AB|T21.14XS|ICD10CM|Burn of first degree of lower back, sequela|Burn of first degree of lower back, sequela +C2870773|T037|ET|T21.15|ICD10CM|Burn of first degree of anus|Burn of first degree of anus +C0433315|T037|AB|T21.15|ICD10CM|Burn of first degree of buttock|Burn of first degree of buttock +C0433315|T037|HT|T21.15|ICD10CM|Burn of first degree of buttock|Burn of first degree of buttock +C2870774|T037|PT|T21.15XA|ICD10CM|Burn of first degree of buttock, initial encounter|Burn of first degree of buttock, initial encounter +C2870774|T037|AB|T21.15XA|ICD10CM|Burn of first degree of buttock, initial encounter|Burn of first degree of buttock, initial encounter +C2870775|T037|PT|T21.15XD|ICD10CM|Burn of first degree of buttock, subsequent encounter|Burn of first degree of buttock, subsequent encounter +C2870775|T037|AB|T21.15XD|ICD10CM|Burn of first degree of buttock, subsequent encounter|Burn of first degree of buttock, subsequent encounter +C2870776|T037|PT|T21.15XS|ICD10CM|Burn of first degree of buttock, sequela|Burn of first degree of buttock, sequela +C2870776|T037|AB|T21.15XS|ICD10CM|Burn of first degree of buttock, sequela|Burn of first degree of buttock, sequela +C2870777|T037|AB|T21.16|ICD10CM|Burn of first degree of male genital region|Burn of first degree of male genital region +C2870777|T037|HT|T21.16|ICD10CM|Burn of first degree of male genital region|Burn of first degree of male genital region +C2231663|T037|ET|T21.16|ICD10CM|Burn of first degree of penis|Burn of first degree of penis +C2231664|T037|ET|T21.16|ICD10CM|Burn of first degree of scrotum|Burn of first degree of scrotum +C2231665|T037|ET|T21.16|ICD10CM|Burn of first degree of testis|Burn of first degree of testis +C2870778|T037|AB|T21.16XA|ICD10CM|Burn of first degree of male genital region, init encntr|Burn of first degree of male genital region, init encntr +C2870778|T037|PT|T21.16XA|ICD10CM|Burn of first degree of male genital region, initial encounter|Burn of first degree of male genital region, initial encounter +C2870779|T037|AB|T21.16XD|ICD10CM|Burn of first degree of male genital region, subs encntr|Burn of first degree of male genital region, subs encntr +C2870779|T037|PT|T21.16XD|ICD10CM|Burn of first degree of male genital region, subsequent encounter|Burn of first degree of male genital region, subsequent encounter +C2870780|T037|PT|T21.16XS|ICD10CM|Burn of first degree of male genital region, sequela|Burn of first degree of male genital region, sequela +C2870780|T037|AB|T21.16XS|ICD10CM|Burn of first degree of male genital region, sequela|Burn of first degree of male genital region, sequela +C2870782|T037|AB|T21.17|ICD10CM|Burn of first degree of female genital region|Burn of first degree of female genital region +C2870782|T037|HT|T21.17|ICD10CM|Burn of first degree of female genital region|Burn of first degree of female genital region +C2870781|T037|ET|T21.17|ICD10CM|Burn of first degree of labium (majus) (minus)|Burn of first degree of labium (majus) (minus) +C2231668|T037|ET|T21.17|ICD10CM|Burn of first degree of perineum|Burn of first degree of perineum +C2231654|T037|ET|T21.17|ICD10CM|Burn of first degree of vulva|Burn of first degree of vulva +C2870783|T037|AB|T21.17XA|ICD10CM|Burn of first degree of female genital region, init encntr|Burn of first degree of female genital region, init encntr +C2870783|T037|PT|T21.17XA|ICD10CM|Burn of first degree of female genital region, initial encounter|Burn of first degree of female genital region, initial encounter +C2870784|T037|AB|T21.17XD|ICD10CM|Burn of first degree of female genital region, subs encntr|Burn of first degree of female genital region, subs encntr +C2870784|T037|PT|T21.17XD|ICD10CM|Burn of first degree of female genital region, subsequent encounter|Burn of first degree of female genital region, subsequent encounter +C2870785|T037|PT|T21.17XS|ICD10CM|Burn of first degree of female genital region, sequela|Burn of first degree of female genital region, sequela +C2870785|T037|AB|T21.17XS|ICD10CM|Burn of first degree of female genital region, sequela|Burn of first degree of female genital region, sequela +C2870786|T037|AB|T21.19|ICD10CM|Burn of first degree of other site of trunk|Burn of first degree of other site of trunk +C2870786|T037|HT|T21.19|ICD10CM|Burn of first degree of other site of trunk|Burn of first degree of other site of trunk +C2870787|T037|AB|T21.19XA|ICD10CM|Burn of first degree of other site of trunk, init encntr|Burn of first degree of other site of trunk, init encntr +C2870787|T037|PT|T21.19XA|ICD10CM|Burn of first degree of other site of trunk, initial encounter|Burn of first degree of other site of trunk, initial encounter +C2870788|T037|AB|T21.19XD|ICD10CM|Burn of first degree of other site of trunk, subs encntr|Burn of first degree of other site of trunk, subs encntr +C2870788|T037|PT|T21.19XD|ICD10CM|Burn of first degree of other site of trunk, subsequent encounter|Burn of first degree of other site of trunk, subsequent encounter +C2870789|T037|PT|T21.19XS|ICD10CM|Burn of first degree of other site of trunk, sequela|Burn of first degree of other site of trunk, sequela +C2870789|T037|AB|T21.19XS|ICD10CM|Burn of first degree of other site of trunk, sequela|Burn of first degree of other site of trunk, sequela +C0433353|T037|HT|T21.2|ICD10CM|Burn of second degree of trunk|Burn of second degree of trunk +C0433353|T037|AB|T21.2|ICD10CM|Burn of second degree of trunk|Burn of second degree of trunk +C0433353|T037|PT|T21.2|ICD10|Burn of second degree of trunk|Burn of second degree of trunk +C2870790|T037|AB|T21.20|ICD10CM|Burn of second degree of trunk, unspecified site|Burn of second degree of trunk, unspecified site +C2870790|T037|HT|T21.20|ICD10CM|Burn of second degree of trunk, unspecified site|Burn of second degree of trunk, unspecified site +C2870791|T037|AB|T21.20XA|ICD10CM|Burn of second degree of trunk, unsp site, init encntr|Burn of second degree of trunk, unsp site, init encntr +C2870791|T037|PT|T21.20XA|ICD10CM|Burn of second degree of trunk, unspecified site, initial encounter|Burn of second degree of trunk, unspecified site, initial encounter +C2870792|T037|AB|T21.20XD|ICD10CM|Burn of second degree of trunk, unsp site, subs encntr|Burn of second degree of trunk, unsp site, subs encntr +C2870792|T037|PT|T21.20XD|ICD10CM|Burn of second degree of trunk, unspecified site, subsequent encounter|Burn of second degree of trunk, unspecified site, subsequent encounter +C2870793|T037|PT|T21.20XS|ICD10CM|Burn of second degree of trunk, unspecified site, sequela|Burn of second degree of trunk, unspecified site, sequela +C2870793|T037|AB|T21.20XS|ICD10CM|Burn of second degree of trunk, unspecified site, sequela|Burn of second degree of trunk, unspecified site, sequela +C0562079|T037|ET|T21.21|ICD10CM|Burn of second degree of breast|Burn of second degree of breast +C0562077|T037|AB|T21.21|ICD10CM|Burn of second degree of chest wall|Burn of second degree of chest wall +C0562077|T037|HT|T21.21|ICD10CM|Burn of second degree of chest wall|Burn of second degree of chest wall +C2870794|T037|PT|T21.21XA|ICD10CM|Burn of second degree of chest wall, initial encounter|Burn of second degree of chest wall, initial encounter +C2870794|T037|AB|T21.21XA|ICD10CM|Burn of second degree of chest wall, initial encounter|Burn of second degree of chest wall, initial encounter +C2870795|T037|PT|T21.21XD|ICD10CM|Burn of second degree of chest wall, subsequent encounter|Burn of second degree of chest wall, subsequent encounter +C2870795|T037|AB|T21.21XD|ICD10CM|Burn of second degree of chest wall, subsequent encounter|Burn of second degree of chest wall, subsequent encounter +C2870796|T037|PT|T21.21XS|ICD10CM|Burn of second degree of chest wall, sequela|Burn of second degree of chest wall, sequela +C2870796|T037|AB|T21.21XS|ICD10CM|Burn of second degree of chest wall, sequela|Burn of second degree of chest wall, sequela +C0562080|T037|AB|T21.22|ICD10CM|Burn of second degree of abdominal wall|Burn of second degree of abdominal wall +C0562080|T037|HT|T21.22|ICD10CM|Burn of second degree of abdominal wall|Burn of second degree of abdominal wall +C2153546|T037|ET|T21.22|ICD10CM|Burn of second degree of flank|Burn of second degree of flank +C2870797|T037|ET|T21.22|ICD10CM|Burn of second degree of groin|Burn of second degree of groin +C2870798|T037|PT|T21.22XA|ICD10CM|Burn of second degree of abdominal wall, initial encounter|Burn of second degree of abdominal wall, initial encounter +C2870798|T037|AB|T21.22XA|ICD10CM|Burn of second degree of abdominal wall, initial encounter|Burn of second degree of abdominal wall, initial encounter +C2870799|T037|AB|T21.22XD|ICD10CM|Burn of second degree of abdominal wall, subs encntr|Burn of second degree of abdominal wall, subs encntr +C2870799|T037|PT|T21.22XD|ICD10CM|Burn of second degree of abdominal wall, subsequent encounter|Burn of second degree of abdominal wall, subsequent encounter +C2870800|T037|PT|T21.22XS|ICD10CM|Burn of second degree of abdominal wall, sequela|Burn of second degree of abdominal wall, sequela +C2870800|T037|AB|T21.22XS|ICD10CM|Burn of second degree of abdominal wall, sequela|Burn of second degree of abdominal wall, sequela +C2870801|T037|ET|T21.23|ICD10CM|Burn of second degree of interscapular region|Burn of second degree of interscapular region +C2870802|T037|AB|T21.23|ICD10CM|Burn of second degree of upper back|Burn of second degree of upper back +C2870802|T037|HT|T21.23|ICD10CM|Burn of second degree of upper back|Burn of second degree of upper back +C2870803|T037|PT|T21.23XA|ICD10CM|Burn of second degree of upper back, initial encounter|Burn of second degree of upper back, initial encounter +C2870803|T037|AB|T21.23XA|ICD10CM|Burn of second degree of upper back, initial encounter|Burn of second degree of upper back, initial encounter +C2870804|T037|PT|T21.23XD|ICD10CM|Burn of second degree of upper back, subsequent encounter|Burn of second degree of upper back, subsequent encounter +C2870804|T037|AB|T21.23XD|ICD10CM|Burn of second degree of upper back, subsequent encounter|Burn of second degree of upper back, subsequent encounter +C2870805|T037|PT|T21.23XS|ICD10CM|Burn of second degree of upper back, sequela|Burn of second degree of upper back, sequela +C2870805|T037|AB|T21.23XS|ICD10CM|Burn of second degree of upper back, sequela|Burn of second degree of upper back, sequela +C2870806|T037|AB|T21.24|ICD10CM|Burn of second degree of lower back|Burn of second degree of lower back +C2870806|T037|HT|T21.24|ICD10CM|Burn of second degree of lower back|Burn of second degree of lower back +C2870807|T037|PT|T21.24XA|ICD10CM|Burn of second degree of lower back, initial encounter|Burn of second degree of lower back, initial encounter +C2870807|T037|AB|T21.24XA|ICD10CM|Burn of second degree of lower back, initial encounter|Burn of second degree of lower back, initial encounter +C2870808|T037|PT|T21.24XD|ICD10CM|Burn of second degree of lower back, subsequent encounter|Burn of second degree of lower back, subsequent encounter +C2870808|T037|AB|T21.24XD|ICD10CM|Burn of second degree of lower back, subsequent encounter|Burn of second degree of lower back, subsequent encounter +C2870809|T037|PT|T21.24XS|ICD10CM|Burn of second degree of lower back, sequela|Burn of second degree of lower back, sequela +C2870809|T037|AB|T21.24XS|ICD10CM|Burn of second degree of lower back, sequela|Burn of second degree of lower back, sequela +C2870810|T037|ET|T21.25|ICD10CM|Burn of second degree of anus|Burn of second degree of anus +C0562089|T037|AB|T21.25|ICD10CM|Burn of second degree of buttock|Burn of second degree of buttock +C0562089|T037|HT|T21.25|ICD10CM|Burn of second degree of buttock|Burn of second degree of buttock +C2870811|T037|PT|T21.25XA|ICD10CM|Burn of second degree of buttock, initial encounter|Burn of second degree of buttock, initial encounter +C2870811|T037|AB|T21.25XA|ICD10CM|Burn of second degree of buttock, initial encounter|Burn of second degree of buttock, initial encounter +C2870812|T037|PT|T21.25XD|ICD10CM|Burn of second degree of buttock, subsequent encounter|Burn of second degree of buttock, subsequent encounter +C2870812|T037|AB|T21.25XD|ICD10CM|Burn of second degree of buttock, subsequent encounter|Burn of second degree of buttock, subsequent encounter +C2870813|T037|PT|T21.25XS|ICD10CM|Burn of second degree of buttock, sequela|Burn of second degree of buttock, sequela +C2870813|T037|AB|T21.25XS|ICD10CM|Burn of second degree of buttock, sequela|Burn of second degree of buttock, sequela +C2870814|T037|AB|T21.26|ICD10CM|Burn of second degree of male genital region|Burn of second degree of male genital region +C2870814|T037|HT|T21.26|ICD10CM|Burn of second degree of male genital region|Burn of second degree of male genital region +C2229308|T037|ET|T21.26|ICD10CM|Burn of second degree of penis|Burn of second degree of penis +C2229322|T037|ET|T21.26|ICD10CM|Burn of second degree of scrotum|Burn of second degree of scrotum +C2229324|T037|ET|T21.26|ICD10CM|Burn of second degree of testis|Burn of second degree of testis +C2870815|T037|AB|T21.26XA|ICD10CM|Burn of second degree of male genital region, init encntr|Burn of second degree of male genital region, init encntr +C2870815|T037|PT|T21.26XA|ICD10CM|Burn of second degree of male genital region, initial encounter|Burn of second degree of male genital region, initial encounter +C2870816|T037|AB|T21.26XD|ICD10CM|Burn of second degree of male genital region, subs encntr|Burn of second degree of male genital region, subs encntr +C2870816|T037|PT|T21.26XD|ICD10CM|Burn of second degree of male genital region, subsequent encounter|Burn of second degree of male genital region, subsequent encounter +C2870817|T037|PT|T21.26XS|ICD10CM|Burn of second degree of male genital region, sequela|Burn of second degree of male genital region, sequela +C2870817|T037|AB|T21.26XS|ICD10CM|Burn of second degree of male genital region, sequela|Burn of second degree of male genital region, sequela +C2870819|T037|AB|T21.27|ICD10CM|Burn of second degree of female genital region|Burn of second degree of female genital region +C2870819|T037|HT|T21.27|ICD10CM|Burn of second degree of female genital region|Burn of second degree of female genital region +C2870818|T037|ET|T21.27|ICD10CM|Burn of second degree of labium (majus) (minus)|Burn of second degree of labium (majus) (minus) +C2153554|T037|ET|T21.27|ICD10CM|Burn of second degree of perineum|Burn of second degree of perineum +C2229327|T037|ET|T21.27|ICD10CM|Burn of second degree of vulva|Burn of second degree of vulva +C2870820|T037|AB|T21.27XA|ICD10CM|Burn of second degree of female genital region, init encntr|Burn of second degree of female genital region, init encntr +C2870820|T037|PT|T21.27XA|ICD10CM|Burn of second degree of female genital region, initial encounter|Burn of second degree of female genital region, initial encounter +C2870821|T037|AB|T21.27XD|ICD10CM|Burn of second degree of female genital region, subs encntr|Burn of second degree of female genital region, subs encntr +C2870821|T037|PT|T21.27XD|ICD10CM|Burn of second degree of female genital region, subsequent encounter|Burn of second degree of female genital region, subsequent encounter +C2870822|T037|AB|T21.27XS|ICD10CM|Burn of second degree of female genital region, sequela|Burn of second degree of female genital region, sequela +C2870822|T037|PT|T21.27XS|ICD10CM|Burn of second degree of female genital region, sequela|Burn of second degree of female genital region, sequela +C2870823|T037|AB|T21.29|ICD10CM|Burn of second degree of other site of trunk|Burn of second degree of other site of trunk +C2870823|T037|HT|T21.29|ICD10CM|Burn of second degree of other site of trunk|Burn of second degree of other site of trunk +C2870824|T037|AB|T21.29XA|ICD10CM|Burn of second degree of other site of trunk, init encntr|Burn of second degree of other site of trunk, init encntr +C2870824|T037|PT|T21.29XA|ICD10CM|Burn of second degree of other site of trunk, initial encounter|Burn of second degree of other site of trunk, initial encounter +C2870825|T037|AB|T21.29XD|ICD10CM|Burn of second degree of other site of trunk, subs encntr|Burn of second degree of other site of trunk, subs encntr +C2870825|T037|PT|T21.29XD|ICD10CM|Burn of second degree of other site of trunk, subsequent encounter|Burn of second degree of other site of trunk, subsequent encounter +C2870826|T037|PT|T21.29XS|ICD10CM|Burn of second degree of other site of trunk, sequela|Burn of second degree of other site of trunk, sequela +C2870826|T037|AB|T21.29XS|ICD10CM|Burn of second degree of other site of trunk, sequela|Burn of second degree of other site of trunk, sequela +C0273990|T037|HT|T21.3|ICD10CM|Burn of third degree of trunk|Burn of third degree of trunk +C0273990|T037|AB|T21.3|ICD10CM|Burn of third degree of trunk|Burn of third degree of trunk +C0273990|T037|PT|T21.3|ICD10|Burn of third degree of trunk|Burn of third degree of trunk +C2870827|T037|AB|T21.30|ICD10CM|Burn of third degree of trunk, unspecified site|Burn of third degree of trunk, unspecified site +C2870827|T037|HT|T21.30|ICD10CM|Burn of third degree of trunk, unspecified site|Burn of third degree of trunk, unspecified site +C2870828|T037|AB|T21.30XA|ICD10CM|Burn of third degree of trunk, unspecified site, init encntr|Burn of third degree of trunk, unspecified site, init encntr +C2870828|T037|PT|T21.30XA|ICD10CM|Burn of third degree of trunk, unspecified site, initial encounter|Burn of third degree of trunk, unspecified site, initial encounter +C2870829|T037|AB|T21.30XD|ICD10CM|Burn of third degree of trunk, unspecified site, subs encntr|Burn of third degree of trunk, unspecified site, subs encntr +C2870829|T037|PT|T21.30XD|ICD10CM|Burn of third degree of trunk, unspecified site, subsequent encounter|Burn of third degree of trunk, unspecified site, subsequent encounter +C2870830|T037|PT|T21.30XS|ICD10CM|Burn of third degree of trunk, unspecified site, sequela|Burn of third degree of trunk, unspecified site, sequela +C2870830|T037|AB|T21.30XS|ICD10CM|Burn of third degree of trunk, unspecified site, sequela|Burn of third degree of trunk, unspecified site, sequela +C0433480|T037|ET|T21.31|ICD10CM|Burn of third degree of breast|Burn of third degree of breast +C0433481|T037|AB|T21.31|ICD10CM|Burn of third degree of chest wall|Burn of third degree of chest wall +C0433481|T037|HT|T21.31|ICD10CM|Burn of third degree of chest wall|Burn of third degree of chest wall +C2870831|T037|PT|T21.31XA|ICD10CM|Burn of third degree of chest wall, initial encounter|Burn of third degree of chest wall, initial encounter +C2870831|T037|AB|T21.31XA|ICD10CM|Burn of third degree of chest wall, initial encounter|Burn of third degree of chest wall, initial encounter +C2870832|T037|PT|T21.31XD|ICD10CM|Burn of third degree of chest wall, subsequent encounter|Burn of third degree of chest wall, subsequent encounter +C2870832|T037|AB|T21.31XD|ICD10CM|Burn of third degree of chest wall, subsequent encounter|Burn of third degree of chest wall, subsequent encounter +C2870833|T037|PT|T21.31XS|ICD10CM|Burn of third degree of chest wall, sequela|Burn of third degree of chest wall, sequela +C2870833|T037|AB|T21.31XS|ICD10CM|Burn of third degree of chest wall, sequela|Burn of third degree of chest wall, sequela +C0433482|T037|AB|T21.32|ICD10CM|Burn of third degree of abdominal wall|Burn of third degree of abdominal wall +C0433482|T037|HT|T21.32|ICD10CM|Burn of third degree of abdominal wall|Burn of third degree of abdominal wall +C2083576|T037|ET|T21.32|ICD10CM|Burn of third degree of flank|Burn of third degree of flank +C2870834|T037|ET|T21.32|ICD10CM|Burn of third degree of groin|Burn of third degree of groin +C2870835|T037|PT|T21.32XA|ICD10CM|Burn of third degree of abdominal wall, initial encounter|Burn of third degree of abdominal wall, initial encounter +C2870835|T037|AB|T21.32XA|ICD10CM|Burn of third degree of abdominal wall, initial encounter|Burn of third degree of abdominal wall, initial encounter +C2870836|T037|AB|T21.32XD|ICD10CM|Burn of third degree of abdominal wall, subsequent encounter|Burn of third degree of abdominal wall, subsequent encounter +C2870836|T037|PT|T21.32XD|ICD10CM|Burn of third degree of abdominal wall, subsequent encounter|Burn of third degree of abdominal wall, subsequent encounter +C2870837|T037|PT|T21.32XS|ICD10CM|Burn of third degree of abdominal wall, sequela|Burn of third degree of abdominal wall, sequela +C2870837|T037|AB|T21.32XS|ICD10CM|Burn of third degree of abdominal wall, sequela|Burn of third degree of abdominal wall, sequela +C2870838|T037|ET|T21.33|ICD10CM|Burn of third degree of interscapular region|Burn of third degree of interscapular region +C2870839|T037|AB|T21.33|ICD10CM|Burn of third degree of upper back|Burn of third degree of upper back +C2870839|T037|HT|T21.33|ICD10CM|Burn of third degree of upper back|Burn of third degree of upper back +C2870840|T037|PT|T21.33XA|ICD10CM|Burn of third degree of upper back, initial encounter|Burn of third degree of upper back, initial encounter +C2870840|T037|AB|T21.33XA|ICD10CM|Burn of third degree of upper back, initial encounter|Burn of third degree of upper back, initial encounter +C2870841|T037|PT|T21.33XD|ICD10CM|Burn of third degree of upper back, subsequent encounter|Burn of third degree of upper back, subsequent encounter +C2870841|T037|AB|T21.33XD|ICD10CM|Burn of third degree of upper back, subsequent encounter|Burn of third degree of upper back, subsequent encounter +C2870842|T037|PT|T21.33XS|ICD10CM|Burn of third degree of upper back, sequela|Burn of third degree of upper back, sequela +C2870842|T037|AB|T21.33XS|ICD10CM|Burn of third degree of upper back, sequela|Burn of third degree of upper back, sequela +C2870843|T037|AB|T21.34|ICD10CM|Burn of third degree of lower back|Burn of third degree of lower back +C2870843|T037|HT|T21.34|ICD10CM|Burn of third degree of lower back|Burn of third degree of lower back +C2870844|T037|PT|T21.34XA|ICD10CM|Burn of third degree of lower back, initial encounter|Burn of third degree of lower back, initial encounter +C2870844|T037|AB|T21.34XA|ICD10CM|Burn of third degree of lower back, initial encounter|Burn of third degree of lower back, initial encounter +C2870845|T037|PT|T21.34XD|ICD10CM|Burn of third degree of lower back, subsequent encounter|Burn of third degree of lower back, subsequent encounter +C2870845|T037|AB|T21.34XD|ICD10CM|Burn of third degree of lower back, subsequent encounter|Burn of third degree of lower back, subsequent encounter +C2870846|T037|PT|T21.34XS|ICD10CM|Burn of third degree of lower back, sequela|Burn of third degree of lower back, sequela +C2870846|T037|AB|T21.34XS|ICD10CM|Burn of third degree of lower back, sequela|Burn of third degree of lower back, sequela +C2870847|T037|ET|T21.35|ICD10CM|Burn of third degree of anus|Burn of third degree of anus +C0433484|T037|AB|T21.35|ICD10CM|Burn of third degree of buttock|Burn of third degree of buttock +C0433484|T037|HT|T21.35|ICD10CM|Burn of third degree of buttock|Burn of third degree of buttock +C2870848|T037|PT|T21.35XA|ICD10CM|Burn of third degree of buttock, initial encounter|Burn of third degree of buttock, initial encounter +C2870848|T037|AB|T21.35XA|ICD10CM|Burn of third degree of buttock, initial encounter|Burn of third degree of buttock, initial encounter +C2870849|T037|PT|T21.35XD|ICD10CM|Burn of third degree of buttock, subsequent encounter|Burn of third degree of buttock, subsequent encounter +C2870849|T037|AB|T21.35XD|ICD10CM|Burn of third degree of buttock, subsequent encounter|Burn of third degree of buttock, subsequent encounter +C2870850|T037|PT|T21.35XS|ICD10CM|Burn of third degree of buttock, sequela|Burn of third degree of buttock, sequela +C2870850|T037|AB|T21.35XS|ICD10CM|Burn of third degree of buttock, sequela|Burn of third degree of buttock, sequela +C2870851|T037|AB|T21.36|ICD10CM|Burn of third degree of male genital region|Burn of third degree of male genital region +C2870851|T037|HT|T21.36|ICD10CM|Burn of third degree of male genital region|Burn of third degree of male genital region +C2083625|T037|ET|T21.36|ICD10CM|Burn of third degree of penis|Burn of third degree of penis +C2083652|T037|ET|T21.36|ICD10CM|Burn of third degree of scrotum|Burn of third degree of scrotum +C2083658|T037|ET|T21.36|ICD10CM|Burn of third degree of testis|Burn of third degree of testis +C2870852|T037|AB|T21.36XA|ICD10CM|Burn of third degree of male genital region, init encntr|Burn of third degree of male genital region, init encntr +C2870852|T037|PT|T21.36XA|ICD10CM|Burn of third degree of male genital region, initial encounter|Burn of third degree of male genital region, initial encounter +C2870853|T037|AB|T21.36XD|ICD10CM|Burn of third degree of male genital region, subs encntr|Burn of third degree of male genital region, subs encntr +C2870853|T037|PT|T21.36XD|ICD10CM|Burn of third degree of male genital region, subsequent encounter|Burn of third degree of male genital region, subsequent encounter +C2870854|T037|PT|T21.36XS|ICD10CM|Burn of third degree of male genital region, sequela|Burn of third degree of male genital region, sequela +C2870854|T037|AB|T21.36XS|ICD10CM|Burn of third degree of male genital region, sequela|Burn of third degree of male genital region, sequela +C2870856|T037|AB|T21.37|ICD10CM|Burn of third degree of female genital region|Burn of third degree of female genital region +C2870856|T037|HT|T21.37|ICD10CM|Burn of third degree of female genital region|Burn of third degree of female genital region +C2870855|T037|ET|T21.37|ICD10CM|Burn of third degree of labium (majus) (minus)|Burn of third degree of labium (majus) (minus) +C4543791|T037|ET|T21.37|ICD10CM|Burn of third degree of perineum|Burn of third degree of perineum +C2083668|T037|ET|T21.37|ICD10CM|Burn of third degree of vulva|Burn of third degree of vulva +C2870857|T037|AB|T21.37XA|ICD10CM|Burn of third degree of female genital region, init encntr|Burn of third degree of female genital region, init encntr +C2870857|T037|PT|T21.37XA|ICD10CM|Burn of third degree of female genital region, initial encounter|Burn of third degree of female genital region, initial encounter +C2870858|T037|AB|T21.37XD|ICD10CM|Burn of third degree of female genital region, subs encntr|Burn of third degree of female genital region, subs encntr +C2870858|T037|PT|T21.37XD|ICD10CM|Burn of third degree of female genital region, subsequent encounter|Burn of third degree of female genital region, subsequent encounter +C2870859|T037|PT|T21.37XS|ICD10CM|Burn of third degree of female genital region, sequela|Burn of third degree of female genital region, sequela +C2870859|T037|AB|T21.37XS|ICD10CM|Burn of third degree of female genital region, sequela|Burn of third degree of female genital region, sequela +C2870860|T037|AB|T21.39|ICD10CM|Burn of third degree of other site of trunk|Burn of third degree of other site of trunk +C2870860|T037|HT|T21.39|ICD10CM|Burn of third degree of other site of trunk|Burn of third degree of other site of trunk +C2870861|T037|AB|T21.39XA|ICD10CM|Burn of third degree of other site of trunk, init encntr|Burn of third degree of other site of trunk, init encntr +C2870861|T037|PT|T21.39XA|ICD10CM|Burn of third degree of other site of trunk, initial encounter|Burn of third degree of other site of trunk, initial encounter +C2870862|T037|AB|T21.39XD|ICD10CM|Burn of third degree of other site of trunk, subs encntr|Burn of third degree of other site of trunk, subs encntr +C2870862|T037|PT|T21.39XD|ICD10CM|Burn of third degree of other site of trunk, subsequent encounter|Burn of third degree of other site of trunk, subsequent encounter +C2870863|T037|PT|T21.39XS|ICD10CM|Burn of third degree of other site of trunk, sequela|Burn of third degree of other site of trunk, sequela +C2870863|T037|AB|T21.39XS|ICD10CM|Burn of third degree of other site of trunk, sequela|Burn of third degree of other site of trunk, sequela +C0452007|T037|HT|T21.4|ICD10CM|Corrosion of unspecified degree of trunk|Corrosion of unspecified degree of trunk +C0452007|T037|AB|T21.4|ICD10CM|Corrosion of unspecified degree of trunk|Corrosion of unspecified degree of trunk +C0452007|T037|PT|T21.4|ICD10|Corrosion of unspecified degree of trunk|Corrosion of unspecified degree of trunk +C2870864|T037|AB|T21.40|ICD10CM|Corrosion of unspecified degree of trunk, unspecified site|Corrosion of unspecified degree of trunk, unspecified site +C2870864|T037|HT|T21.40|ICD10CM|Corrosion of unspecified degree of trunk, unspecified site|Corrosion of unspecified degree of trunk, unspecified site +C2870865|T037|AB|T21.40XA|ICD10CM|Corrosion of unsp degree of trunk, unsp site, init encntr|Corrosion of unsp degree of trunk, unsp site, init encntr +C2870865|T037|PT|T21.40XA|ICD10CM|Corrosion of unspecified degree of trunk, unspecified site, initial encounter|Corrosion of unspecified degree of trunk, unspecified site, initial encounter +C2870866|T037|AB|T21.40XD|ICD10CM|Corrosion of unsp degree of trunk, unsp site, subs encntr|Corrosion of unsp degree of trunk, unsp site, subs encntr +C2870866|T037|PT|T21.40XD|ICD10CM|Corrosion of unspecified degree of trunk, unspecified site, subsequent encounter|Corrosion of unspecified degree of trunk, unspecified site, subsequent encounter +C2870867|T037|AB|T21.40XS|ICD10CM|Corrosion of unsp degree of trunk, unspecified site, sequela|Corrosion of unsp degree of trunk, unspecified site, sequela +C2870867|T037|PT|T21.40XS|ICD10CM|Corrosion of unspecified degree of trunk, unspecified site, sequela|Corrosion of unspecified degree of trunk, unspecified site, sequela +C2870868|T037|ET|T21.41|ICD10CM|Corrosion of unspecified degree of breast|Corrosion of unspecified degree of breast +C2870869|T037|AB|T21.41|ICD10CM|Corrosion of unspecified degree of chest wall|Corrosion of unspecified degree of chest wall +C2870869|T037|HT|T21.41|ICD10CM|Corrosion of unspecified degree of chest wall|Corrosion of unspecified degree of chest wall +C2870870|T037|AB|T21.41XA|ICD10CM|Corrosion of unspecified degree of chest wall, init encntr|Corrosion of unspecified degree of chest wall, init encntr +C2870870|T037|PT|T21.41XA|ICD10CM|Corrosion of unspecified degree of chest wall, initial encounter|Corrosion of unspecified degree of chest wall, initial encounter +C2870871|T037|AB|T21.41XD|ICD10CM|Corrosion of unspecified degree of chest wall, subs encntr|Corrosion of unspecified degree of chest wall, subs encntr +C2870871|T037|PT|T21.41XD|ICD10CM|Corrosion of unspecified degree of chest wall, subsequent encounter|Corrosion of unspecified degree of chest wall, subsequent encounter +C2870872|T037|PT|T21.41XS|ICD10CM|Corrosion of unspecified degree of chest wall, sequela|Corrosion of unspecified degree of chest wall, sequela +C2870872|T037|AB|T21.41XS|ICD10CM|Corrosion of unspecified degree of chest wall, sequela|Corrosion of unspecified degree of chest wall, sequela +C2870875|T037|AB|T21.42|ICD10CM|Corrosion of unspecified degree of abdominal wall|Corrosion of unspecified degree of abdominal wall +C2870875|T037|HT|T21.42|ICD10CM|Corrosion of unspecified degree of abdominal wall|Corrosion of unspecified degree of abdominal wall +C2870873|T037|ET|T21.42|ICD10CM|Corrosion of unspecified degree of flank|Corrosion of unspecified degree of flank +C2870874|T037|ET|T21.42|ICD10CM|Corrosion of unspecified degree of groin|Corrosion of unspecified degree of groin +C2870876|T037|AB|T21.42XA|ICD10CM|Corrosion of unsp degree of abdominal wall, init encntr|Corrosion of unsp degree of abdominal wall, init encntr +C2870876|T037|PT|T21.42XA|ICD10CM|Corrosion of unspecified degree of abdominal wall, initial encounter|Corrosion of unspecified degree of abdominal wall, initial encounter +C2870877|T037|AB|T21.42XD|ICD10CM|Corrosion of unsp degree of abdominal wall, subs encntr|Corrosion of unsp degree of abdominal wall, subs encntr +C2870877|T037|PT|T21.42XD|ICD10CM|Corrosion of unspecified degree of abdominal wall, subsequent encounter|Corrosion of unspecified degree of abdominal wall, subsequent encounter +C2870878|T037|PT|T21.42XS|ICD10CM|Corrosion of unspecified degree of abdominal wall, sequela|Corrosion of unspecified degree of abdominal wall, sequela +C2870878|T037|AB|T21.42XS|ICD10CM|Corrosion of unspecified degree of abdominal wall, sequela|Corrosion of unspecified degree of abdominal wall, sequela +C2870879|T037|ET|T21.43|ICD10CM|Corrosion of unspecified degree of interscapular region|Corrosion of unspecified degree of interscapular region +C2870880|T037|AB|T21.43|ICD10CM|Corrosion of unspecified degree of upper back|Corrosion of unspecified degree of upper back +C2870880|T037|HT|T21.43|ICD10CM|Corrosion of unspecified degree of upper back|Corrosion of unspecified degree of upper back +C2870881|T037|AB|T21.43XA|ICD10CM|Corrosion of unspecified degree of upper back, init encntr|Corrosion of unspecified degree of upper back, init encntr +C2870881|T037|PT|T21.43XA|ICD10CM|Corrosion of unspecified degree of upper back, initial encounter|Corrosion of unspecified degree of upper back, initial encounter +C2870882|T037|AB|T21.43XD|ICD10CM|Corrosion of unspecified degree of upper back, subs encntr|Corrosion of unspecified degree of upper back, subs encntr +C2870882|T037|PT|T21.43XD|ICD10CM|Corrosion of unspecified degree of upper back, subsequent encounter|Corrosion of unspecified degree of upper back, subsequent encounter +C2870883|T037|PT|T21.43XS|ICD10CM|Corrosion of unspecified degree of upper back, sequela|Corrosion of unspecified degree of upper back, sequela +C2870883|T037|AB|T21.43XS|ICD10CM|Corrosion of unspecified degree of upper back, sequela|Corrosion of unspecified degree of upper back, sequela +C2870884|T037|AB|T21.44|ICD10CM|Corrosion of unspecified degree of lower back|Corrosion of unspecified degree of lower back +C2870884|T037|HT|T21.44|ICD10CM|Corrosion of unspecified degree of lower back|Corrosion of unspecified degree of lower back +C2870885|T037|AB|T21.44XA|ICD10CM|Corrosion of unspecified degree of lower back, init encntr|Corrosion of unspecified degree of lower back, init encntr +C2870885|T037|PT|T21.44XA|ICD10CM|Corrosion of unspecified degree of lower back, initial encounter|Corrosion of unspecified degree of lower back, initial encounter +C2870886|T037|AB|T21.44XD|ICD10CM|Corrosion of unspecified degree of lower back, subs encntr|Corrosion of unspecified degree of lower back, subs encntr +C2870886|T037|PT|T21.44XD|ICD10CM|Corrosion of unspecified degree of lower back, subsequent encounter|Corrosion of unspecified degree of lower back, subsequent encounter +C2870887|T037|PT|T21.44XS|ICD10CM|Corrosion of unspecified degree of lower back, sequela|Corrosion of unspecified degree of lower back, sequela +C2870887|T037|AB|T21.44XS|ICD10CM|Corrosion of unspecified degree of lower back, sequela|Corrosion of unspecified degree of lower back, sequela +C2870888|T037|ET|T21.45|ICD10CM|Corrosion of unspecified degree of anus|Corrosion of unspecified degree of anus +C2870889|T037|AB|T21.45|ICD10CM|Corrosion of unspecified degree of buttock|Corrosion of unspecified degree of buttock +C2870889|T037|HT|T21.45|ICD10CM|Corrosion of unspecified degree of buttock|Corrosion of unspecified degree of buttock +C2870890|T037|AB|T21.45XA|ICD10CM|Corrosion of unspecified degree of buttock, init encntr|Corrosion of unspecified degree of buttock, init encntr +C2870890|T037|PT|T21.45XA|ICD10CM|Corrosion of unspecified degree of buttock, initial encounter|Corrosion of unspecified degree of buttock, initial encounter +C2870891|T037|AB|T21.45XD|ICD10CM|Corrosion of unspecified degree of buttock, subs encntr|Corrosion of unspecified degree of buttock, subs encntr +C2870891|T037|PT|T21.45XD|ICD10CM|Corrosion of unspecified degree of buttock, subsequent encounter|Corrosion of unspecified degree of buttock, subsequent encounter +C2870892|T037|PT|T21.45XS|ICD10CM|Corrosion of unspecified degree of buttock, sequela|Corrosion of unspecified degree of buttock, sequela +C2870892|T037|AB|T21.45XS|ICD10CM|Corrosion of unspecified degree of buttock, sequela|Corrosion of unspecified degree of buttock, sequela +C2870896|T037|AB|T21.46|ICD10CM|Corrosion of unspecified degree of male genital region|Corrosion of unspecified degree of male genital region +C2870896|T037|HT|T21.46|ICD10CM|Corrosion of unspecified degree of male genital region|Corrosion of unspecified degree of male genital region +C2870893|T037|ET|T21.46|ICD10CM|Corrosion of unspecified degree of penis|Corrosion of unspecified degree of penis +C2870894|T037|ET|T21.46|ICD10CM|Corrosion of unspecified degree of scrotum|Corrosion of unspecified degree of scrotum +C2870895|T037|ET|T21.46|ICD10CM|Corrosion of unspecified degree of testis|Corrosion of unspecified degree of testis +C2870897|T037|AB|T21.46XA|ICD10CM|Corrosion of unsp degree of male genital region, init encntr|Corrosion of unsp degree of male genital region, init encntr +C2870897|T037|PT|T21.46XA|ICD10CM|Corrosion of unspecified degree of male genital region, initial encounter|Corrosion of unspecified degree of male genital region, initial encounter +C2870898|T037|AB|T21.46XD|ICD10CM|Corrosion of unsp degree of male genital region, subs encntr|Corrosion of unsp degree of male genital region, subs encntr +C2870898|T037|PT|T21.46XD|ICD10CM|Corrosion of unspecified degree of male genital region, subsequent encounter|Corrosion of unspecified degree of male genital region, subsequent encounter +C2870899|T037|AB|T21.46XS|ICD10CM|Corrosion of unsp degree of male genital region, sequela|Corrosion of unsp degree of male genital region, sequela +C2870899|T037|PT|T21.46XS|ICD10CM|Corrosion of unspecified degree of male genital region, sequela|Corrosion of unspecified degree of male genital region, sequela +C2870903|T037|AB|T21.47|ICD10CM|Corrosion of unspecified degree of female genital region|Corrosion of unspecified degree of female genital region +C2870903|T037|HT|T21.47|ICD10CM|Corrosion of unspecified degree of female genital region|Corrosion of unspecified degree of female genital region +C2870900|T037|ET|T21.47|ICD10CM|Corrosion of unspecified degree of labium (majus) (minus)|Corrosion of unspecified degree of labium (majus) (minus) +C2870901|T037|ET|T21.47|ICD10CM|Corrosion of unspecified degree of perineum|Corrosion of unspecified degree of perineum +C2870902|T037|ET|T21.47|ICD10CM|Corrosion of unspecified degree of vulva|Corrosion of unspecified degree of vulva +C2870904|T037|AB|T21.47XA|ICD10CM|Corrosion of unsp degree of female genital region, init|Corrosion of unsp degree of female genital region, init +C2870904|T037|PT|T21.47XA|ICD10CM|Corrosion of unspecified degree of female genital region, initial encounter|Corrosion of unspecified degree of female genital region, initial encounter +C2870905|T037|AB|T21.47XD|ICD10CM|Corrosion of unsp degree of female genital region, subs|Corrosion of unsp degree of female genital region, subs +C2870905|T037|PT|T21.47XD|ICD10CM|Corrosion of unspecified degree of female genital region, subsequent encounter|Corrosion of unspecified degree of female genital region, subsequent encounter +C2870906|T037|AB|T21.47XS|ICD10CM|Corrosion of unsp degree of female genital region, sequela|Corrosion of unsp degree of female genital region, sequela +C2870906|T037|PT|T21.47XS|ICD10CM|Corrosion of unspecified degree of female genital region, sequela|Corrosion of unspecified degree of female genital region, sequela +C2870907|T037|AB|T21.49|ICD10CM|Corrosion of unspecified degree of other site of trunk|Corrosion of unspecified degree of other site of trunk +C2870907|T037|HT|T21.49|ICD10CM|Corrosion of unspecified degree of other site of trunk|Corrosion of unspecified degree of other site of trunk +C2870908|T037|AB|T21.49XA|ICD10CM|Corrosion of unsp degree of other site of trunk, init encntr|Corrosion of unsp degree of other site of trunk, init encntr +C2870908|T037|PT|T21.49XA|ICD10CM|Corrosion of unspecified degree of other site of trunk, initial encounter|Corrosion of unspecified degree of other site of trunk, initial encounter +C2870909|T037|AB|T21.49XD|ICD10CM|Corrosion of unsp degree of other site of trunk, subs encntr|Corrosion of unsp degree of other site of trunk, subs encntr +C2870909|T037|PT|T21.49XD|ICD10CM|Corrosion of unspecified degree of other site of trunk, subsequent encounter|Corrosion of unspecified degree of other site of trunk, subsequent encounter +C2870910|T037|AB|T21.49XS|ICD10CM|Corrosion of unsp degree of other site of trunk, sequela|Corrosion of unsp degree of other site of trunk, sequela +C2870910|T037|PT|T21.49XS|ICD10CM|Corrosion of unspecified degree of other site of trunk, sequela|Corrosion of unspecified degree of other site of trunk, sequela +C0451990|T037|PT|T21.5|ICD10|Corrosion of first degree of trunk|Corrosion of first degree of trunk +C0451990|T037|HT|T21.5|ICD10CM|Corrosion of first degree of trunk|Corrosion of first degree of trunk +C0451990|T037|AB|T21.5|ICD10CM|Corrosion of first degree of trunk|Corrosion of first degree of trunk +C2870911|T037|AB|T21.50|ICD10CM|Corrosion of first degree of trunk, unspecified site|Corrosion of first degree of trunk, unspecified site +C2870911|T037|HT|T21.50|ICD10CM|Corrosion of first degree of trunk, unspecified site|Corrosion of first degree of trunk, unspecified site +C2870912|T037|AB|T21.50XA|ICD10CM|Corrosion of first degree of trunk, unsp site, init encntr|Corrosion of first degree of trunk, unsp site, init encntr +C2870912|T037|PT|T21.50XA|ICD10CM|Corrosion of first degree of trunk, unspecified site, initial encounter|Corrosion of first degree of trunk, unspecified site, initial encounter +C2870913|T037|AB|T21.50XD|ICD10CM|Corrosion of first degree of trunk, unsp site, subs encntr|Corrosion of first degree of trunk, unsp site, subs encntr +C2870913|T037|PT|T21.50XD|ICD10CM|Corrosion of first degree of trunk, unspecified site, subsequent encounter|Corrosion of first degree of trunk, unspecified site, subsequent encounter +C2870914|T037|AB|T21.50XS|ICD10CM|Corrosion of first degree of trunk, unsp site, sequela|Corrosion of first degree of trunk, unsp site, sequela +C2870914|T037|PT|T21.50XS|ICD10CM|Corrosion of first degree of trunk, unspecified site, sequela|Corrosion of first degree of trunk, unspecified site, sequela +C2870915|T037|ET|T21.51|ICD10CM|Corrosion of first degree of breast|Corrosion of first degree of breast +C2870916|T037|AB|T21.51|ICD10CM|Corrosion of first degree of chest wall|Corrosion of first degree of chest wall +C2870916|T037|HT|T21.51|ICD10CM|Corrosion of first degree of chest wall|Corrosion of first degree of chest wall +C2870917|T037|PT|T21.51XA|ICD10CM|Corrosion of first degree of chest wall, initial encounter|Corrosion of first degree of chest wall, initial encounter +C2870917|T037|AB|T21.51XA|ICD10CM|Corrosion of first degree of chest wall, initial encounter|Corrosion of first degree of chest wall, initial encounter +C2870918|T037|AB|T21.51XD|ICD10CM|Corrosion of first degree of chest wall, subs encntr|Corrosion of first degree of chest wall, subs encntr +C2870918|T037|PT|T21.51XD|ICD10CM|Corrosion of first degree of chest wall, subsequent encounter|Corrosion of first degree of chest wall, subsequent encounter +C2870919|T037|PT|T21.51XS|ICD10CM|Corrosion of first degree of chest wall, sequela|Corrosion of first degree of chest wall, sequela +C2870919|T037|AB|T21.51XS|ICD10CM|Corrosion of first degree of chest wall, sequela|Corrosion of first degree of chest wall, sequela +C2870922|T037|AB|T21.52|ICD10CM|Corrosion of first degree of abdominal wall|Corrosion of first degree of abdominal wall +C2870922|T037|HT|T21.52|ICD10CM|Corrosion of first degree of abdominal wall|Corrosion of first degree of abdominal wall +C2870920|T037|ET|T21.52|ICD10CM|Corrosion of first degree of flank|Corrosion of first degree of flank +C2870921|T037|ET|T21.52|ICD10CM|Corrosion of first degree of groin|Corrosion of first degree of groin +C2870923|T037|AB|T21.52XA|ICD10CM|Corrosion of first degree of abdominal wall, init encntr|Corrosion of first degree of abdominal wall, init encntr +C2870923|T037|PT|T21.52XA|ICD10CM|Corrosion of first degree of abdominal wall, initial encounter|Corrosion of first degree of abdominal wall, initial encounter +C2870924|T037|AB|T21.52XD|ICD10CM|Corrosion of first degree of abdominal wall, subs encntr|Corrosion of first degree of abdominal wall, subs encntr +C2870924|T037|PT|T21.52XD|ICD10CM|Corrosion of first degree of abdominal wall, subsequent encounter|Corrosion of first degree of abdominal wall, subsequent encounter +C2870925|T037|PT|T21.52XS|ICD10CM|Corrosion of first degree of abdominal wall, sequela|Corrosion of first degree of abdominal wall, sequela +C2870925|T037|AB|T21.52XS|ICD10CM|Corrosion of first degree of abdominal wall, sequela|Corrosion of first degree of abdominal wall, sequela +C2870926|T037|ET|T21.53|ICD10CM|Corrosion of first degree of interscapular region|Corrosion of first degree of interscapular region +C2870927|T037|AB|T21.53|ICD10CM|Corrosion of first degree of upper back|Corrosion of first degree of upper back +C2870927|T037|HT|T21.53|ICD10CM|Corrosion of first degree of upper back|Corrosion of first degree of upper back +C2870928|T037|PT|T21.53XA|ICD10CM|Corrosion of first degree of upper back, initial encounter|Corrosion of first degree of upper back, initial encounter +C2870928|T037|AB|T21.53XA|ICD10CM|Corrosion of first degree of upper back, initial encounter|Corrosion of first degree of upper back, initial encounter +C2870929|T037|AB|T21.53XD|ICD10CM|Corrosion of first degree of upper back, subs encntr|Corrosion of first degree of upper back, subs encntr +C2870929|T037|PT|T21.53XD|ICD10CM|Corrosion of first degree of upper back, subsequent encounter|Corrosion of first degree of upper back, subsequent encounter +C2870930|T037|PT|T21.53XS|ICD10CM|Corrosion of first degree of upper back, sequela|Corrosion of first degree of upper back, sequela +C2870930|T037|AB|T21.53XS|ICD10CM|Corrosion of first degree of upper back, sequela|Corrosion of first degree of upper back, sequela +C2870931|T037|AB|T21.54|ICD10CM|Corrosion of first degree of lower back|Corrosion of first degree of lower back +C2870931|T037|HT|T21.54|ICD10CM|Corrosion of first degree of lower back|Corrosion of first degree of lower back +C2870932|T037|PT|T21.54XA|ICD10CM|Corrosion of first degree of lower back, initial encounter|Corrosion of first degree of lower back, initial encounter +C2870932|T037|AB|T21.54XA|ICD10CM|Corrosion of first degree of lower back, initial encounter|Corrosion of first degree of lower back, initial encounter +C2870933|T037|AB|T21.54XD|ICD10CM|Corrosion of first degree of lower back, subs encntr|Corrosion of first degree of lower back, subs encntr +C2870933|T037|PT|T21.54XD|ICD10CM|Corrosion of first degree of lower back, subsequent encounter|Corrosion of first degree of lower back, subsequent encounter +C2870934|T037|PT|T21.54XS|ICD10CM|Corrosion of first degree of lower back, sequela|Corrosion of first degree of lower back, sequela +C2870934|T037|AB|T21.54XS|ICD10CM|Corrosion of first degree of lower back, sequela|Corrosion of first degree of lower back, sequela +C2870935|T037|ET|T21.55|ICD10CM|Corrosion of first degree of anus|Corrosion of first degree of anus +C2870936|T037|AB|T21.55|ICD10CM|Corrosion of first degree of buttock|Corrosion of first degree of buttock +C2870936|T037|HT|T21.55|ICD10CM|Corrosion of first degree of buttock|Corrosion of first degree of buttock +C2870937|T037|PT|T21.55XA|ICD10CM|Corrosion of first degree of buttock, initial encounter|Corrosion of first degree of buttock, initial encounter +C2870937|T037|AB|T21.55XA|ICD10CM|Corrosion of first degree of buttock, initial encounter|Corrosion of first degree of buttock, initial encounter +C2870938|T037|PT|T21.55XD|ICD10CM|Corrosion of first degree of buttock, subsequent encounter|Corrosion of first degree of buttock, subsequent encounter +C2870938|T037|AB|T21.55XD|ICD10CM|Corrosion of first degree of buttock, subsequent encounter|Corrosion of first degree of buttock, subsequent encounter +C2870939|T037|PT|T21.55XS|ICD10CM|Corrosion of first degree of buttock, sequela|Corrosion of first degree of buttock, sequela +C2870939|T037|AB|T21.55XS|ICD10CM|Corrosion of first degree of buttock, sequela|Corrosion of first degree of buttock, sequela +C2870943|T037|AB|T21.56|ICD10CM|Corrosion of first degree of male genital region|Corrosion of first degree of male genital region +C2870943|T037|HT|T21.56|ICD10CM|Corrosion of first degree of male genital region|Corrosion of first degree of male genital region +C2870940|T037|ET|T21.56|ICD10CM|Corrosion of first degree of penis|Corrosion of first degree of penis +C2870941|T037|ET|T21.56|ICD10CM|Corrosion of first degree of scrotum|Corrosion of first degree of scrotum +C2870942|T037|ET|T21.56|ICD10CM|Corrosion of first degree of testis|Corrosion of first degree of testis +C2870944|T037|AB|T21.56XA|ICD10CM|Corrosion of first degree of male genital region, init|Corrosion of first degree of male genital region, init +C2870944|T037|PT|T21.56XA|ICD10CM|Corrosion of first degree of male genital region, initial encounter|Corrosion of first degree of male genital region, initial encounter +C2870945|T037|AB|T21.56XD|ICD10CM|Corrosion of first degree of male genital region, subs|Corrosion of first degree of male genital region, subs +C2870945|T037|PT|T21.56XD|ICD10CM|Corrosion of first degree of male genital region, subsequent encounter|Corrosion of first degree of male genital region, subsequent encounter +C2870946|T037|PT|T21.56XS|ICD10CM|Corrosion of first degree of male genital region, sequela|Corrosion of first degree of male genital region, sequela +C2870946|T037|AB|T21.56XS|ICD10CM|Corrosion of first degree of male genital region, sequela|Corrosion of first degree of male genital region, sequela +C2870950|T037|AB|T21.57|ICD10CM|Corrosion of first degree of female genital region|Corrosion of first degree of female genital region +C2870950|T037|HT|T21.57|ICD10CM|Corrosion of first degree of female genital region|Corrosion of first degree of female genital region +C2870947|T037|ET|T21.57|ICD10CM|Corrosion of first degree of labium (majus) (minus)|Corrosion of first degree of labium (majus) (minus) +C2870948|T037|ET|T21.57|ICD10CM|Corrosion of first degree of perineum|Corrosion of first degree of perineum +C2870949|T037|ET|T21.57|ICD10CM|Corrosion of first degree of vulva|Corrosion of first degree of vulva +C2870951|T037|AB|T21.57XA|ICD10CM|Corrosion of first degree of female genital region, init|Corrosion of first degree of female genital region, init +C2870951|T037|PT|T21.57XA|ICD10CM|Corrosion of first degree of female genital region, initial encounter|Corrosion of first degree of female genital region, initial encounter +C2870952|T037|AB|T21.57XD|ICD10CM|Corrosion of first degree of female genital region, subs|Corrosion of first degree of female genital region, subs +C2870952|T037|PT|T21.57XD|ICD10CM|Corrosion of first degree of female genital region, subsequent encounter|Corrosion of first degree of female genital region, subsequent encounter +C2870953|T037|PT|T21.57XS|ICD10CM|Corrosion of first degree of female genital region, sequela|Corrosion of first degree of female genital region, sequela +C2870953|T037|AB|T21.57XS|ICD10CM|Corrosion of first degree of female genital region, sequela|Corrosion of first degree of female genital region, sequela +C2870954|T037|AB|T21.59|ICD10CM|Corrosion of first degree of other site of trunk|Corrosion of first degree of other site of trunk +C2870954|T037|HT|T21.59|ICD10CM|Corrosion of first degree of other site of trunk|Corrosion of first degree of other site of trunk +C2870955|T037|AB|T21.59XA|ICD10CM|Corrosion of first degree of oth site of trunk, init encntr|Corrosion of first degree of oth site of trunk, init encntr +C2870955|T037|PT|T21.59XA|ICD10CM|Corrosion of first degree of other site of trunk, initial encounter|Corrosion of first degree of other site of trunk, initial encounter +C2870956|T037|AB|T21.59XD|ICD10CM|Corrosion of first degree of oth site of trunk, subs encntr|Corrosion of first degree of oth site of trunk, subs encntr +C2870956|T037|PT|T21.59XD|ICD10CM|Corrosion of first degree of other site of trunk, subsequent encounter|Corrosion of first degree of other site of trunk, subsequent encounter +C2870957|T037|PT|T21.59XS|ICD10CM|Corrosion of first degree of other site of trunk, sequela|Corrosion of first degree of other site of trunk, sequela +C2870957|T037|AB|T21.59XS|ICD10CM|Corrosion of first degree of other site of trunk, sequela|Corrosion of first degree of other site of trunk, sequela +C0451999|T037|HT|T21.6|ICD10CM|Corrosion of second degree of trunk|Corrosion of second degree of trunk +C0451999|T037|AB|T21.6|ICD10CM|Corrosion of second degree of trunk|Corrosion of second degree of trunk +C0451999|T037|PT|T21.6|ICD10|Corrosion of second degree of trunk|Corrosion of second degree of trunk +C2870958|T037|AB|T21.60|ICD10CM|Corrosion of second degree of trunk, unspecified site|Corrosion of second degree of trunk, unspecified site +C2870958|T037|HT|T21.60|ICD10CM|Corrosion of second degree of trunk, unspecified site|Corrosion of second degree of trunk, unspecified site +C2870959|T037|AB|T21.60XA|ICD10CM|Corrosion of second degree of trunk, unsp site, init encntr|Corrosion of second degree of trunk, unsp site, init encntr +C2870959|T037|PT|T21.60XA|ICD10CM|Corrosion of second degree of trunk, unspecified site, initial encounter|Corrosion of second degree of trunk, unspecified site, initial encounter +C2870960|T037|AB|T21.60XD|ICD10CM|Corrosion of second degree of trunk, unsp site, subs encntr|Corrosion of second degree of trunk, unsp site, subs encntr +C2870960|T037|PT|T21.60XD|ICD10CM|Corrosion of second degree of trunk, unspecified site, subsequent encounter|Corrosion of second degree of trunk, unspecified site, subsequent encounter +C2870961|T037|AB|T21.60XS|ICD10CM|Corrosion of second degree of trunk, unsp site, sequela|Corrosion of second degree of trunk, unsp site, sequela +C2870961|T037|PT|T21.60XS|ICD10CM|Corrosion of second degree of trunk, unspecified site, sequela|Corrosion of second degree of trunk, unspecified site, sequela +C2870962|T037|ET|T21.61|ICD10CM|Corrosion of second degree of breast|Corrosion of second degree of breast +C2870963|T037|AB|T21.61|ICD10CM|Corrosion of second degree of chest wall|Corrosion of second degree of chest wall +C2870963|T037|HT|T21.61|ICD10CM|Corrosion of second degree of chest wall|Corrosion of second degree of chest wall +C2870964|T037|PT|T21.61XA|ICD10CM|Corrosion of second degree of chest wall, initial encounter|Corrosion of second degree of chest wall, initial encounter +C2870964|T037|AB|T21.61XA|ICD10CM|Corrosion of second degree of chest wall, initial encounter|Corrosion of second degree of chest wall, initial encounter +C2870965|T037|AB|T21.61XD|ICD10CM|Corrosion of second degree of chest wall, subs encntr|Corrosion of second degree of chest wall, subs encntr +C2870965|T037|PT|T21.61XD|ICD10CM|Corrosion of second degree of chest wall, subsequent encounter|Corrosion of second degree of chest wall, subsequent encounter +C2870966|T037|PT|T21.61XS|ICD10CM|Corrosion of second degree of chest wall, sequela|Corrosion of second degree of chest wall, sequela +C2870966|T037|AB|T21.61XS|ICD10CM|Corrosion of second degree of chest wall, sequela|Corrosion of second degree of chest wall, sequela +C2870969|T037|AB|T21.62|ICD10CM|Corrosion of second degree of abdominal wall|Corrosion of second degree of abdominal wall +C2870969|T037|HT|T21.62|ICD10CM|Corrosion of second degree of abdominal wall|Corrosion of second degree of abdominal wall +C2870967|T037|ET|T21.62|ICD10CM|Corrosion of second degree of flank|Corrosion of second degree of flank +C2870968|T037|ET|T21.62|ICD10CM|Corrosion of second degree of groin|Corrosion of second degree of groin +C2870970|T037|AB|T21.62XA|ICD10CM|Corrosion of second degree of abdominal wall, init encntr|Corrosion of second degree of abdominal wall, init encntr +C2870970|T037|PT|T21.62XA|ICD10CM|Corrosion of second degree of abdominal wall, initial encounter|Corrosion of second degree of abdominal wall, initial encounter +C2870971|T037|AB|T21.62XD|ICD10CM|Corrosion of second degree of abdominal wall, subs encntr|Corrosion of second degree of abdominal wall, subs encntr +C2870971|T037|PT|T21.62XD|ICD10CM|Corrosion of second degree of abdominal wall, subsequent encounter|Corrosion of second degree of abdominal wall, subsequent encounter +C2870972|T037|PT|T21.62XS|ICD10CM|Corrosion of second degree of abdominal wall, sequela|Corrosion of second degree of abdominal wall, sequela +C2870972|T037|AB|T21.62XS|ICD10CM|Corrosion of second degree of abdominal wall, sequela|Corrosion of second degree of abdominal wall, sequela +C2870973|T037|ET|T21.63|ICD10CM|Corrosion of second degree of interscapular region|Corrosion of second degree of interscapular region +C2870974|T037|AB|T21.63|ICD10CM|Corrosion of second degree of upper back|Corrosion of second degree of upper back +C2870974|T037|HT|T21.63|ICD10CM|Corrosion of second degree of upper back|Corrosion of second degree of upper back +C2870975|T037|PT|T21.63XA|ICD10CM|Corrosion of second degree of upper back, initial encounter|Corrosion of second degree of upper back, initial encounter +C2870975|T037|AB|T21.63XA|ICD10CM|Corrosion of second degree of upper back, initial encounter|Corrosion of second degree of upper back, initial encounter +C2870976|T037|AB|T21.63XD|ICD10CM|Corrosion of second degree of upper back, subs encntr|Corrosion of second degree of upper back, subs encntr +C2870976|T037|PT|T21.63XD|ICD10CM|Corrosion of second degree of upper back, subsequent encounter|Corrosion of second degree of upper back, subsequent encounter +C2870977|T037|PT|T21.63XS|ICD10CM|Corrosion of second degree of upper back, sequela|Corrosion of second degree of upper back, sequela +C2870977|T037|AB|T21.63XS|ICD10CM|Corrosion of second degree of upper back, sequela|Corrosion of second degree of upper back, sequela +C2870978|T037|AB|T21.64|ICD10CM|Corrosion of second degree of lower back|Corrosion of second degree of lower back +C2870978|T037|HT|T21.64|ICD10CM|Corrosion of second degree of lower back|Corrosion of second degree of lower back +C2870979|T037|PT|T21.64XA|ICD10CM|Corrosion of second degree of lower back, initial encounter|Corrosion of second degree of lower back, initial encounter +C2870979|T037|AB|T21.64XA|ICD10CM|Corrosion of second degree of lower back, initial encounter|Corrosion of second degree of lower back, initial encounter +C2870980|T037|AB|T21.64XD|ICD10CM|Corrosion of second degree of lower back, subs encntr|Corrosion of second degree of lower back, subs encntr +C2870980|T037|PT|T21.64XD|ICD10CM|Corrosion of second degree of lower back, subsequent encounter|Corrosion of second degree of lower back, subsequent encounter +C2870981|T037|PT|T21.64XS|ICD10CM|Corrosion of second degree of lower back, sequela|Corrosion of second degree of lower back, sequela +C2870981|T037|AB|T21.64XS|ICD10CM|Corrosion of second degree of lower back, sequela|Corrosion of second degree of lower back, sequela +C2870982|T037|ET|T21.65|ICD10CM|Corrosion of second degree of anus|Corrosion of second degree of anus +C2870983|T037|AB|T21.65|ICD10CM|Corrosion of second degree of buttock|Corrosion of second degree of buttock +C2870983|T037|HT|T21.65|ICD10CM|Corrosion of second degree of buttock|Corrosion of second degree of buttock +C2870984|T037|PT|T21.65XA|ICD10CM|Corrosion of second degree of buttock, initial encounter|Corrosion of second degree of buttock, initial encounter +C2870984|T037|AB|T21.65XA|ICD10CM|Corrosion of second degree of buttock, initial encounter|Corrosion of second degree of buttock, initial encounter +C2870985|T037|PT|T21.65XD|ICD10CM|Corrosion of second degree of buttock, subsequent encounter|Corrosion of second degree of buttock, subsequent encounter +C2870985|T037|AB|T21.65XD|ICD10CM|Corrosion of second degree of buttock, subsequent encounter|Corrosion of second degree of buttock, subsequent encounter +C2870986|T037|PT|T21.65XS|ICD10CM|Corrosion of second degree of buttock, sequela|Corrosion of second degree of buttock, sequela +C2870986|T037|AB|T21.65XS|ICD10CM|Corrosion of second degree of buttock, sequela|Corrosion of second degree of buttock, sequela +C2870990|T037|AB|T21.66|ICD10CM|Corrosion of second degree of male genital region|Corrosion of second degree of male genital region +C2870990|T037|HT|T21.66|ICD10CM|Corrosion of second degree of male genital region|Corrosion of second degree of male genital region +C2870987|T037|ET|T21.66|ICD10CM|Corrosion of second degree of penis|Corrosion of second degree of penis +C2870988|T037|ET|T21.66|ICD10CM|Corrosion of second degree of scrotum|Corrosion of second degree of scrotum +C2870989|T037|ET|T21.66|ICD10CM|Corrosion of second degree of testis|Corrosion of second degree of testis +C2870991|T037|AB|T21.66XA|ICD10CM|Corrosion of second degree of male genital region, init|Corrosion of second degree of male genital region, init +C2870991|T037|PT|T21.66XA|ICD10CM|Corrosion of second degree of male genital region, initial encounter|Corrosion of second degree of male genital region, initial encounter +C2870992|T037|AB|T21.66XD|ICD10CM|Corrosion of second degree of male genital region, subs|Corrosion of second degree of male genital region, subs +C2870992|T037|PT|T21.66XD|ICD10CM|Corrosion of second degree of male genital region, subsequent encounter|Corrosion of second degree of male genital region, subsequent encounter +C2870993|T037|PT|T21.66XS|ICD10CM|Corrosion of second degree of male genital region, sequela|Corrosion of second degree of male genital region, sequela +C2870993|T037|AB|T21.66XS|ICD10CM|Corrosion of second degree of male genital region, sequela|Corrosion of second degree of male genital region, sequela +C2870997|T037|AB|T21.67|ICD10CM|Corrosion of second degree of female genital region|Corrosion of second degree of female genital region +C2870997|T037|HT|T21.67|ICD10CM|Corrosion of second degree of female genital region|Corrosion of second degree of female genital region +C2870994|T037|ET|T21.67|ICD10CM|Corrosion of second degree of labium (majus) (minus)|Corrosion of second degree of labium (majus) (minus) +C2870995|T037|ET|T21.67|ICD10CM|Corrosion of second degree of perineum|Corrosion of second degree of perineum +C2870996|T037|ET|T21.67|ICD10CM|Corrosion of second degree of vulva|Corrosion of second degree of vulva +C2870998|T037|AB|T21.67XA|ICD10CM|Corrosion of second degree of female genital region, init|Corrosion of second degree of female genital region, init +C2870998|T037|PT|T21.67XA|ICD10CM|Corrosion of second degree of female genital region, initial encounter|Corrosion of second degree of female genital region, initial encounter +C2870999|T037|AB|T21.67XD|ICD10CM|Corrosion of second degree of female genital region, subs|Corrosion of second degree of female genital region, subs +C2870999|T037|PT|T21.67XD|ICD10CM|Corrosion of second degree of female genital region, subsequent encounter|Corrosion of second degree of female genital region, subsequent encounter +C2871000|T037|AB|T21.67XS|ICD10CM|Corrosion of second degree of female genital region, sequela|Corrosion of second degree of female genital region, sequela +C2871000|T037|PT|T21.67XS|ICD10CM|Corrosion of second degree of female genital region, sequela|Corrosion of second degree of female genital region, sequela +C2871001|T037|AB|T21.69|ICD10CM|Corrosion of second degree of other site of trunk|Corrosion of second degree of other site of trunk +C2871001|T037|HT|T21.69|ICD10CM|Corrosion of second degree of other site of trunk|Corrosion of second degree of other site of trunk +C2871002|T037|AB|T21.69XA|ICD10CM|Corrosion of second degree of oth site of trunk, init encntr|Corrosion of second degree of oth site of trunk, init encntr +C2871002|T037|PT|T21.69XA|ICD10CM|Corrosion of second degree of other site of trunk, initial encounter|Corrosion of second degree of other site of trunk, initial encounter +C2871003|T037|AB|T21.69XD|ICD10CM|Corrosion of second degree of oth site of trunk, subs encntr|Corrosion of second degree of oth site of trunk, subs encntr +C2871003|T037|PT|T21.69XD|ICD10CM|Corrosion of second degree of other site of trunk, subsequent encounter|Corrosion of second degree of other site of trunk, subsequent encounter +C2871004|T037|PT|T21.69XS|ICD10CM|Corrosion of second degree of other site of trunk, sequela|Corrosion of second degree of other site of trunk, sequela +C2871004|T037|AB|T21.69XS|ICD10CM|Corrosion of second degree of other site of trunk, sequela|Corrosion of second degree of other site of trunk, sequela +C0452002|T037|PT|T21.7|ICD10|Corrosion of third degree of trunk|Corrosion of third degree of trunk +C0452002|T037|HT|T21.7|ICD10CM|Corrosion of third degree of trunk|Corrosion of third degree of trunk +C0452002|T037|AB|T21.7|ICD10CM|Corrosion of third degree of trunk|Corrosion of third degree of trunk +C2871005|T037|AB|T21.70|ICD10CM|Corrosion of third degree of trunk, unspecified site|Corrosion of third degree of trunk, unspecified site +C2871005|T037|HT|T21.70|ICD10CM|Corrosion of third degree of trunk, unspecified site|Corrosion of third degree of trunk, unspecified site +C2871006|T037|AB|T21.70XA|ICD10CM|Corrosion of third degree of trunk, unsp site, init encntr|Corrosion of third degree of trunk, unsp site, init encntr +C2871006|T037|PT|T21.70XA|ICD10CM|Corrosion of third degree of trunk, unspecified site, initial encounter|Corrosion of third degree of trunk, unspecified site, initial encounter +C2871007|T037|AB|T21.70XD|ICD10CM|Corrosion of third degree of trunk, unsp site, subs encntr|Corrosion of third degree of trunk, unsp site, subs encntr +C2871007|T037|PT|T21.70XD|ICD10CM|Corrosion of third degree of trunk, unspecified site, subsequent encounter|Corrosion of third degree of trunk, unspecified site, subsequent encounter +C2871008|T037|AB|T21.70XS|ICD10CM|Corrosion of third degree of trunk, unsp site, sequela|Corrosion of third degree of trunk, unsp site, sequela +C2871008|T037|PT|T21.70XS|ICD10CM|Corrosion of third degree of trunk, unspecified site, sequela|Corrosion of third degree of trunk, unspecified site, sequela +C2871009|T037|ET|T21.71|ICD10CM|Corrosion of third degree of breast|Corrosion of third degree of breast +C2871010|T037|AB|T21.71|ICD10CM|Corrosion of third degree of chest wall|Corrosion of third degree of chest wall +C2871010|T037|HT|T21.71|ICD10CM|Corrosion of third degree of chest wall|Corrosion of third degree of chest wall +C2871011|T037|PT|T21.71XA|ICD10CM|Corrosion of third degree of chest wall, initial encounter|Corrosion of third degree of chest wall, initial encounter +C2871011|T037|AB|T21.71XA|ICD10CM|Corrosion of third degree of chest wall, initial encounter|Corrosion of third degree of chest wall, initial encounter +C2871012|T037|AB|T21.71XD|ICD10CM|Corrosion of third degree of chest wall, subs encntr|Corrosion of third degree of chest wall, subs encntr +C2871012|T037|PT|T21.71XD|ICD10CM|Corrosion of third degree of chest wall, subsequent encounter|Corrosion of third degree of chest wall, subsequent encounter +C2871013|T037|PT|T21.71XS|ICD10CM|Corrosion of third degree of chest wall, sequela|Corrosion of third degree of chest wall, sequela +C2871013|T037|AB|T21.71XS|ICD10CM|Corrosion of third degree of chest wall, sequela|Corrosion of third degree of chest wall, sequela +C2871016|T037|AB|T21.72|ICD10CM|Corrosion of third degree of abdominal wall|Corrosion of third degree of abdominal wall +C2871016|T037|HT|T21.72|ICD10CM|Corrosion of third degree of abdominal wall|Corrosion of third degree of abdominal wall +C2871014|T037|ET|T21.72|ICD10CM|Corrosion of third degree of flank|Corrosion of third degree of flank +C2871015|T037|ET|T21.72|ICD10CM|Corrosion of third degree of groin|Corrosion of third degree of groin +C2871017|T037|AB|T21.72XA|ICD10CM|Corrosion of third degree of abdominal wall, init encntr|Corrosion of third degree of abdominal wall, init encntr +C2871017|T037|PT|T21.72XA|ICD10CM|Corrosion of third degree of abdominal wall, initial encounter|Corrosion of third degree of abdominal wall, initial encounter +C2871018|T037|AB|T21.72XD|ICD10CM|Corrosion of third degree of abdominal wall, subs encntr|Corrosion of third degree of abdominal wall, subs encntr +C2871018|T037|PT|T21.72XD|ICD10CM|Corrosion of third degree of abdominal wall, subsequent encounter|Corrosion of third degree of abdominal wall, subsequent encounter +C2871019|T037|PT|T21.72XS|ICD10CM|Corrosion of third degree of abdominal wall, sequela|Corrosion of third degree of abdominal wall, sequela +C2871019|T037|AB|T21.72XS|ICD10CM|Corrosion of third degree of abdominal wall, sequela|Corrosion of third degree of abdominal wall, sequela +C2871020|T037|ET|T21.73|ICD10CM|Corrosion of third degree of interscapular region|Corrosion of third degree of interscapular region +C2871021|T037|AB|T21.73|ICD10CM|Corrosion of third degree of upper back|Corrosion of third degree of upper back +C2871021|T037|HT|T21.73|ICD10CM|Corrosion of third degree of upper back|Corrosion of third degree of upper back +C2871022|T037|PT|T21.73XA|ICD10CM|Corrosion of third degree of upper back, initial encounter|Corrosion of third degree of upper back, initial encounter +C2871022|T037|AB|T21.73XA|ICD10CM|Corrosion of third degree of upper back, initial encounter|Corrosion of third degree of upper back, initial encounter +C2871023|T037|AB|T21.73XD|ICD10CM|Corrosion of third degree of upper back, subs encntr|Corrosion of third degree of upper back, subs encntr +C2871023|T037|PT|T21.73XD|ICD10CM|Corrosion of third degree of upper back, subsequent encounter|Corrosion of third degree of upper back, subsequent encounter +C2871024|T037|PT|T21.73XS|ICD10CM|Corrosion of third degree of upper back, sequela|Corrosion of third degree of upper back, sequela +C2871024|T037|AB|T21.73XS|ICD10CM|Corrosion of third degree of upper back, sequela|Corrosion of third degree of upper back, sequela +C2871025|T037|AB|T21.74|ICD10CM|Corrosion of third degree of lower back|Corrosion of third degree of lower back +C2871025|T037|HT|T21.74|ICD10CM|Corrosion of third degree of lower back|Corrosion of third degree of lower back +C2871026|T037|PT|T21.74XA|ICD10CM|Corrosion of third degree of lower back, initial encounter|Corrosion of third degree of lower back, initial encounter +C2871026|T037|AB|T21.74XA|ICD10CM|Corrosion of third degree of lower back, initial encounter|Corrosion of third degree of lower back, initial encounter +C2871027|T037|AB|T21.74XD|ICD10CM|Corrosion of third degree of lower back, subs encntr|Corrosion of third degree of lower back, subs encntr +C2871027|T037|PT|T21.74XD|ICD10CM|Corrosion of third degree of lower back, subsequent encounter|Corrosion of third degree of lower back, subsequent encounter +C2871028|T037|PT|T21.74XS|ICD10CM|Corrosion of third degree of lower back, sequela|Corrosion of third degree of lower back, sequela +C2871028|T037|AB|T21.74XS|ICD10CM|Corrosion of third degree of lower back, sequela|Corrosion of third degree of lower back, sequela +C2871029|T037|ET|T21.75|ICD10CM|Corrosion of third degree of anus|Corrosion of third degree of anus +C2871030|T037|AB|T21.75|ICD10CM|Corrosion of third degree of buttock|Corrosion of third degree of buttock +C2871030|T037|HT|T21.75|ICD10CM|Corrosion of third degree of buttock|Corrosion of third degree of buttock +C2871031|T037|PT|T21.75XA|ICD10CM|Corrosion of third degree of buttock, initial encounter|Corrosion of third degree of buttock, initial encounter +C2871031|T037|AB|T21.75XA|ICD10CM|Corrosion of third degree of buttock, initial encounter|Corrosion of third degree of buttock, initial encounter +C2871032|T037|PT|T21.75XD|ICD10CM|Corrosion of third degree of buttock, subsequent encounter|Corrosion of third degree of buttock, subsequent encounter +C2871032|T037|AB|T21.75XD|ICD10CM|Corrosion of third degree of buttock, subsequent encounter|Corrosion of third degree of buttock, subsequent encounter +C2871033|T037|PT|T21.75XS|ICD10CM|Corrosion of third degree of buttock, sequela|Corrosion of third degree of buttock, sequela +C2871033|T037|AB|T21.75XS|ICD10CM|Corrosion of third degree of buttock, sequela|Corrosion of third degree of buttock, sequela +C2871037|T037|AB|T21.76|ICD10CM|Corrosion of third degree of male genital region|Corrosion of third degree of male genital region +C2871037|T037|HT|T21.76|ICD10CM|Corrosion of third degree of male genital region|Corrosion of third degree of male genital region +C2871034|T037|ET|T21.76|ICD10CM|Corrosion of third degree of penis|Corrosion of third degree of penis +C2871035|T037|ET|T21.76|ICD10CM|Corrosion of third degree of scrotum|Corrosion of third degree of scrotum +C2871036|T037|ET|T21.76|ICD10CM|Corrosion of third degree of testis|Corrosion of third degree of testis +C2871038|T037|AB|T21.76XA|ICD10CM|Corrosion of third degree of male genital region, init|Corrosion of third degree of male genital region, init +C2871038|T037|PT|T21.76XA|ICD10CM|Corrosion of third degree of male genital region, initial encounter|Corrosion of third degree of male genital region, initial encounter +C2871039|T037|AB|T21.76XD|ICD10CM|Corrosion of third degree of male genital region, subs|Corrosion of third degree of male genital region, subs +C2871039|T037|PT|T21.76XD|ICD10CM|Corrosion of third degree of male genital region, subsequent encounter|Corrosion of third degree of male genital region, subsequent encounter +C2871040|T037|PT|T21.76XS|ICD10CM|Corrosion of third degree of male genital region, sequela|Corrosion of third degree of male genital region, sequela +C2871040|T037|AB|T21.76XS|ICD10CM|Corrosion of third degree of male genital region, sequela|Corrosion of third degree of male genital region, sequela +C2871044|T037|AB|T21.77|ICD10CM|Corrosion of third degree of female genital region|Corrosion of third degree of female genital region +C2871044|T037|HT|T21.77|ICD10CM|Corrosion of third degree of female genital region|Corrosion of third degree of female genital region +C2871041|T037|ET|T21.77|ICD10CM|Corrosion of third degree of labium (majus) (minus)|Corrosion of third degree of labium (majus) (minus) +C2871042|T037|ET|T21.77|ICD10CM|Corrosion of third degree of perineum|Corrosion of third degree of perineum +C2871043|T037|ET|T21.77|ICD10CM|Corrosion of third degree of vulva|Corrosion of third degree of vulva +C2871045|T037|AB|T21.77XA|ICD10CM|Corrosion of third degree of female genital region, init|Corrosion of third degree of female genital region, init +C2871045|T037|PT|T21.77XA|ICD10CM|Corrosion of third degree of female genital region, initial encounter|Corrosion of third degree of female genital region, initial encounter +C2871046|T037|AB|T21.77XD|ICD10CM|Corrosion of third degree of female genital region, subs|Corrosion of third degree of female genital region, subs +C2871046|T037|PT|T21.77XD|ICD10CM|Corrosion of third degree of female genital region, subsequent encounter|Corrosion of third degree of female genital region, subsequent encounter +C2871047|T037|PT|T21.77XS|ICD10CM|Corrosion of third degree of female genital region, sequela|Corrosion of third degree of female genital region, sequela +C2871047|T037|AB|T21.77XS|ICD10CM|Corrosion of third degree of female genital region, sequela|Corrosion of third degree of female genital region, sequela +C2871048|T037|AB|T21.79|ICD10CM|Corrosion of third degree of other site of trunk|Corrosion of third degree of other site of trunk +C2871048|T037|HT|T21.79|ICD10CM|Corrosion of third degree of other site of trunk|Corrosion of third degree of other site of trunk +C2871049|T037|AB|T21.79XA|ICD10CM|Corrosion of third degree of oth site of trunk, init encntr|Corrosion of third degree of oth site of trunk, init encntr +C2871049|T037|PT|T21.79XA|ICD10CM|Corrosion of third degree of other site of trunk, initial encounter|Corrosion of third degree of other site of trunk, initial encounter +C2871050|T037|AB|T21.79XD|ICD10CM|Corrosion of third degree of oth site of trunk, subs encntr|Corrosion of third degree of oth site of trunk, subs encntr +C2871050|T037|PT|T21.79XD|ICD10CM|Corrosion of third degree of other site of trunk, subsequent encounter|Corrosion of third degree of other site of trunk, subsequent encounter +C2871051|T037|PT|T21.79XS|ICD10CM|Corrosion of third degree of other site of trunk, sequela|Corrosion of third degree of other site of trunk, sequela +C2871051|T037|AB|T21.79XS|ICD10CM|Corrosion of third degree of other site of trunk, sequela|Corrosion of third degree of other site of trunk, sequela +C0496035|T037|AB|T22|ICD10CM|Burn and corrosion of shldr/up lmb, except wrist and hand|Burn and corrosion of shldr/up lmb, except wrist and hand +C0496035|T037|HT|T22|ICD10CM|Burn and corrosion of shoulder and upper limb, except wrist and hand|Burn and corrosion of shoulder and upper limb, except wrist and hand +C0496035|T037|HT|T22|ICD10|Burn and corrosion of shoulder and upper limb, except wrist and hand|Burn and corrosion of shoulder and upper limb, except wrist and hand +C0496036|T037|AB|T22.0|ICD10CM|Burn of unsp degree of shldr/up lmb, except wrist and hand|Burn of unsp degree of shldr/up lmb, except wrist and hand +C0496036|T037|HT|T22.0|ICD10CM|Burn of unspecified degree of shoulder and upper limb, except wrist and hand|Burn of unspecified degree of shoulder and upper limb, except wrist and hand +C0496036|T037|PT|T22.0|ICD10|Burn of unspecified degree of shoulder and upper limb, except wrist and hand|Burn of unspecified degree of shoulder and upper limb, except wrist and hand +C2871052|T037|HT|T22.00|ICD10CM|Burn of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site|Burn of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site +C2871052|T037|AB|T22.00|ICD10CM|Burn unsp degree of shldr/up lmb, except wrs/hnd, unsp site|Burn unsp degree of shldr/up lmb, except wrs/hnd, unsp site +C2871053|T037|AB|T22.00XA|ICD10CM|Burn unsp deg of shldr/up lmb, ex wrs/hnd, unsp site, init|Burn unsp deg of shldr/up lmb, ex wrs/hnd, unsp site, init +C2871054|T037|AB|T22.00XD|ICD10CM|Burn unsp deg of shldr/up lmb, ex wrs/hnd, unsp site, subs|Burn unsp deg of shldr/up lmb, ex wrs/hnd, unsp site, subs +C2871055|T037|AB|T22.00XS|ICD10CM|Burn unsp deg of shldr/up lmb, ex wrs/hnd, unsp site, sqla|Burn unsp deg of shldr/up lmb, ex wrs/hnd, unsp site, sqla +C0274071|T037|HT|T22.01|ICD10CM|Burn of unspecified degree of forearm|Burn of unspecified degree of forearm +C0274071|T037|AB|T22.01|ICD10CM|Burn of unspecified degree of forearm|Burn of unspecified degree of forearm +C2871056|T037|AB|T22.011|ICD10CM|Burn of unspecified degree of right forearm|Burn of unspecified degree of right forearm +C2871056|T037|HT|T22.011|ICD10CM|Burn of unspecified degree of right forearm|Burn of unspecified degree of right forearm +C2871057|T037|AB|T22.011A|ICD10CM|Burn of unspecified degree of right forearm, init encntr|Burn of unspecified degree of right forearm, init encntr +C2871057|T037|PT|T22.011A|ICD10CM|Burn of unspecified degree of right forearm, initial encounter|Burn of unspecified degree of right forearm, initial encounter +C2871058|T037|AB|T22.011D|ICD10CM|Burn of unspecified degree of right forearm, subs encntr|Burn of unspecified degree of right forearm, subs encntr +C2871058|T037|PT|T22.011D|ICD10CM|Burn of unspecified degree of right forearm, subsequent encounter|Burn of unspecified degree of right forearm, subsequent encounter +C2871059|T037|PT|T22.011S|ICD10CM|Burn of unspecified degree of right forearm, sequela|Burn of unspecified degree of right forearm, sequela +C2871059|T037|AB|T22.011S|ICD10CM|Burn of unspecified degree of right forearm, sequela|Burn of unspecified degree of right forearm, sequela +C2871060|T037|AB|T22.012|ICD10CM|Burn of unspecified degree of left forearm|Burn of unspecified degree of left forearm +C2871060|T037|HT|T22.012|ICD10CM|Burn of unspecified degree of left forearm|Burn of unspecified degree of left forearm +C2871061|T037|AB|T22.012A|ICD10CM|Burn of unspecified degree of left forearm, init encntr|Burn of unspecified degree of left forearm, init encntr +C2871061|T037|PT|T22.012A|ICD10CM|Burn of unspecified degree of left forearm, initial encounter|Burn of unspecified degree of left forearm, initial encounter +C2871062|T037|AB|T22.012D|ICD10CM|Burn of unspecified degree of left forearm, subs encntr|Burn of unspecified degree of left forearm, subs encntr +C2871062|T037|PT|T22.012D|ICD10CM|Burn of unspecified degree of left forearm, subsequent encounter|Burn of unspecified degree of left forearm, subsequent encounter +C2871063|T037|PT|T22.012S|ICD10CM|Burn of unspecified degree of left forearm, sequela|Burn of unspecified degree of left forearm, sequela +C2871063|T037|AB|T22.012S|ICD10CM|Burn of unspecified degree of left forearm, sequela|Burn of unspecified degree of left forearm, sequela +C2871064|T037|AB|T22.019|ICD10CM|Burn of unspecified degree of unspecified forearm|Burn of unspecified degree of unspecified forearm +C2871064|T037|HT|T22.019|ICD10CM|Burn of unspecified degree of unspecified forearm|Burn of unspecified degree of unspecified forearm +C2871065|T037|AB|T22.019A|ICD10CM|Burn of unsp degree of unspecified forearm, init encntr|Burn of unsp degree of unspecified forearm, init encntr +C2871065|T037|PT|T22.019A|ICD10CM|Burn of unspecified degree of unspecified forearm, initial encounter|Burn of unspecified degree of unspecified forearm, initial encounter +C2871066|T037|AB|T22.019D|ICD10CM|Burn of unsp degree of unspecified forearm, subs encntr|Burn of unsp degree of unspecified forearm, subs encntr +C2871066|T037|PT|T22.019D|ICD10CM|Burn of unspecified degree of unspecified forearm, subsequent encounter|Burn of unspecified degree of unspecified forearm, subsequent encounter +C2871067|T037|PT|T22.019S|ICD10CM|Burn of unspecified degree of unspecified forearm, sequela|Burn of unspecified degree of unspecified forearm, sequela +C2871067|T037|AB|T22.019S|ICD10CM|Burn of unspecified degree of unspecified forearm, sequela|Burn of unspecified degree of unspecified forearm, sequela +C0274065|T037|HT|T22.02|ICD10CM|Burn of unspecified degree of elbow|Burn of unspecified degree of elbow +C0274065|T037|AB|T22.02|ICD10CM|Burn of unspecified degree of elbow|Burn of unspecified degree of elbow +C2871068|T037|AB|T22.021|ICD10CM|Burn of unspecified degree of right elbow|Burn of unspecified degree of right elbow +C2871068|T037|HT|T22.021|ICD10CM|Burn of unspecified degree of right elbow|Burn of unspecified degree of right elbow +C2871069|T037|AB|T22.021A|ICD10CM|Burn of unspecified degree of right elbow, initial encounter|Burn of unspecified degree of right elbow, initial encounter +C2871069|T037|PT|T22.021A|ICD10CM|Burn of unspecified degree of right elbow, initial encounter|Burn of unspecified degree of right elbow, initial encounter +C2871070|T037|AB|T22.021D|ICD10CM|Burn of unspecified degree of right elbow, subs encntr|Burn of unspecified degree of right elbow, subs encntr +C2871070|T037|PT|T22.021D|ICD10CM|Burn of unspecified degree of right elbow, subsequent encounter|Burn of unspecified degree of right elbow, subsequent encounter +C2871071|T037|PT|T22.021S|ICD10CM|Burn of unspecified degree of right elbow, sequela|Burn of unspecified degree of right elbow, sequela +C2871071|T037|AB|T22.021S|ICD10CM|Burn of unspecified degree of right elbow, sequela|Burn of unspecified degree of right elbow, sequela +C2871072|T037|AB|T22.022|ICD10CM|Burn of unspecified degree of left elbow|Burn of unspecified degree of left elbow +C2871072|T037|HT|T22.022|ICD10CM|Burn of unspecified degree of left elbow|Burn of unspecified degree of left elbow +C2871073|T037|PT|T22.022A|ICD10CM|Burn of unspecified degree of left elbow, initial encounter|Burn of unspecified degree of left elbow, initial encounter +C2871073|T037|AB|T22.022A|ICD10CM|Burn of unspecified degree of left elbow, initial encounter|Burn of unspecified degree of left elbow, initial encounter +C2871074|T037|AB|T22.022D|ICD10CM|Burn of unspecified degree of left elbow, subs encntr|Burn of unspecified degree of left elbow, subs encntr +C2871074|T037|PT|T22.022D|ICD10CM|Burn of unspecified degree of left elbow, subsequent encounter|Burn of unspecified degree of left elbow, subsequent encounter +C2871075|T037|PT|T22.022S|ICD10CM|Burn of unspecified degree of left elbow, sequela|Burn of unspecified degree of left elbow, sequela +C2871075|T037|AB|T22.022S|ICD10CM|Burn of unspecified degree of left elbow, sequela|Burn of unspecified degree of left elbow, sequela +C2871076|T037|AB|T22.029|ICD10CM|Burn of unspecified degree of unspecified elbow|Burn of unspecified degree of unspecified elbow +C2871076|T037|HT|T22.029|ICD10CM|Burn of unspecified degree of unspecified elbow|Burn of unspecified degree of unspecified elbow +C2871077|T037|AB|T22.029A|ICD10CM|Burn of unspecified degree of unspecified elbow, init encntr|Burn of unspecified degree of unspecified elbow, init encntr +C2871077|T037|PT|T22.029A|ICD10CM|Burn of unspecified degree of unspecified elbow, initial encounter|Burn of unspecified degree of unspecified elbow, initial encounter +C2871078|T037|AB|T22.029D|ICD10CM|Burn of unspecified degree of unspecified elbow, subs encntr|Burn of unspecified degree of unspecified elbow, subs encntr +C2871078|T037|PT|T22.029D|ICD10CM|Burn of unspecified degree of unspecified elbow, subsequent encounter|Burn of unspecified degree of unspecified elbow, subsequent encounter +C2871079|T037|PT|T22.029S|ICD10CM|Burn of unspecified degree of unspecified elbow, sequela|Burn of unspecified degree of unspecified elbow, sequela +C2871079|T037|AB|T22.029S|ICD10CM|Burn of unspecified degree of unspecified elbow, sequela|Burn of unspecified degree of unspecified elbow, sequela +C0161151|T037|HT|T22.03|ICD10CM|Burn of unspecified degree of upper arm|Burn of unspecified degree of upper arm +C0161151|T037|AB|T22.03|ICD10CM|Burn of unspecified degree of upper arm|Burn of unspecified degree of upper arm +C2871080|T037|AB|T22.031|ICD10CM|Burn of unspecified degree of right upper arm|Burn of unspecified degree of right upper arm +C2871080|T037|HT|T22.031|ICD10CM|Burn of unspecified degree of right upper arm|Burn of unspecified degree of right upper arm +C2871081|T037|AB|T22.031A|ICD10CM|Burn of unspecified degree of right upper arm, init encntr|Burn of unspecified degree of right upper arm, init encntr +C2871081|T037|PT|T22.031A|ICD10CM|Burn of unspecified degree of right upper arm, initial encounter|Burn of unspecified degree of right upper arm, initial encounter +C2871082|T037|AB|T22.031D|ICD10CM|Burn of unspecified degree of right upper arm, subs encntr|Burn of unspecified degree of right upper arm, subs encntr +C2871082|T037|PT|T22.031D|ICD10CM|Burn of unspecified degree of right upper arm, subsequent encounter|Burn of unspecified degree of right upper arm, subsequent encounter +C2871083|T037|PT|T22.031S|ICD10CM|Burn of unspecified degree of right upper arm, sequela|Burn of unspecified degree of right upper arm, sequela +C2871083|T037|AB|T22.031S|ICD10CM|Burn of unspecified degree of right upper arm, sequela|Burn of unspecified degree of right upper arm, sequela +C2871084|T037|AB|T22.032|ICD10CM|Burn of unspecified degree of left upper arm|Burn of unspecified degree of left upper arm +C2871084|T037|HT|T22.032|ICD10CM|Burn of unspecified degree of left upper arm|Burn of unspecified degree of left upper arm +C2871085|T037|AB|T22.032A|ICD10CM|Burn of unspecified degree of left upper arm, init encntr|Burn of unspecified degree of left upper arm, init encntr +C2871085|T037|PT|T22.032A|ICD10CM|Burn of unspecified degree of left upper arm, initial encounter|Burn of unspecified degree of left upper arm, initial encounter +C2871086|T037|AB|T22.032D|ICD10CM|Burn of unspecified degree of left upper arm, subs encntr|Burn of unspecified degree of left upper arm, subs encntr +C2871086|T037|PT|T22.032D|ICD10CM|Burn of unspecified degree of left upper arm, subsequent encounter|Burn of unspecified degree of left upper arm, subsequent encounter +C2871087|T037|PT|T22.032S|ICD10CM|Burn of unspecified degree of left upper arm, sequela|Burn of unspecified degree of left upper arm, sequela +C2871087|T037|AB|T22.032S|ICD10CM|Burn of unspecified degree of left upper arm, sequela|Burn of unspecified degree of left upper arm, sequela +C2871088|T037|AB|T22.039|ICD10CM|Burn of unspecified degree of unspecified upper arm|Burn of unspecified degree of unspecified upper arm +C2871088|T037|HT|T22.039|ICD10CM|Burn of unspecified degree of unspecified upper arm|Burn of unspecified degree of unspecified upper arm +C2871089|T037|AB|T22.039A|ICD10CM|Burn of unsp degree of unspecified upper arm, init encntr|Burn of unsp degree of unspecified upper arm, init encntr +C2871089|T037|PT|T22.039A|ICD10CM|Burn of unspecified degree of unspecified upper arm, initial encounter|Burn of unspecified degree of unspecified upper arm, initial encounter +C2871090|T037|AB|T22.039D|ICD10CM|Burn of unsp degree of unspecified upper arm, subs encntr|Burn of unsp degree of unspecified upper arm, subs encntr +C2871090|T037|PT|T22.039D|ICD10CM|Burn of unspecified degree of unspecified upper arm, subsequent encounter|Burn of unspecified degree of unspecified upper arm, subsequent encounter +C2871091|T037|AB|T22.039S|ICD10CM|Burn of unspecified degree of unspecified upper arm, sequela|Burn of unspecified degree of unspecified upper arm, sequela +C2871091|T037|PT|T22.039S|ICD10CM|Burn of unspecified degree of unspecified upper arm, sequela|Burn of unspecified degree of unspecified upper arm, sequela +C0274053|T037|HT|T22.04|ICD10CM|Burn of unspecified degree of axilla|Burn of unspecified degree of axilla +C0274053|T037|AB|T22.04|ICD10CM|Burn of unspecified degree of axilla|Burn of unspecified degree of axilla +C2871092|T037|AB|T22.041|ICD10CM|Burn of unspecified degree of right axilla|Burn of unspecified degree of right axilla +C2871092|T037|HT|T22.041|ICD10CM|Burn of unspecified degree of right axilla|Burn of unspecified degree of right axilla +C2871093|T037|AB|T22.041A|ICD10CM|Burn of unspecified degree of right axilla, init encntr|Burn of unspecified degree of right axilla, init encntr +C2871093|T037|PT|T22.041A|ICD10CM|Burn of unspecified degree of right axilla, initial encounter|Burn of unspecified degree of right axilla, initial encounter +C2871094|T037|AB|T22.041D|ICD10CM|Burn of unspecified degree of right axilla, subs encntr|Burn of unspecified degree of right axilla, subs encntr +C2871094|T037|PT|T22.041D|ICD10CM|Burn of unspecified degree of right axilla, subsequent encounter|Burn of unspecified degree of right axilla, subsequent encounter +C2871095|T037|PT|T22.041S|ICD10CM|Burn of unspecified degree of right axilla, sequela|Burn of unspecified degree of right axilla, sequela +C2871095|T037|AB|T22.041S|ICD10CM|Burn of unspecified degree of right axilla, sequela|Burn of unspecified degree of right axilla, sequela +C2871096|T037|AB|T22.042|ICD10CM|Burn of unspecified degree of left axilla|Burn of unspecified degree of left axilla +C2871096|T037|HT|T22.042|ICD10CM|Burn of unspecified degree of left axilla|Burn of unspecified degree of left axilla +C2871097|T037|AB|T22.042A|ICD10CM|Burn of unspecified degree of left axilla, initial encounter|Burn of unspecified degree of left axilla, initial encounter +C2871097|T037|PT|T22.042A|ICD10CM|Burn of unspecified degree of left axilla, initial encounter|Burn of unspecified degree of left axilla, initial encounter +C2871098|T037|AB|T22.042D|ICD10CM|Burn of unspecified degree of left axilla, subs encntr|Burn of unspecified degree of left axilla, subs encntr +C2871098|T037|PT|T22.042D|ICD10CM|Burn of unspecified degree of left axilla, subsequent encounter|Burn of unspecified degree of left axilla, subsequent encounter +C2871099|T037|PT|T22.042S|ICD10CM|Burn of unspecified degree of left axilla, sequela|Burn of unspecified degree of left axilla, sequela +C2871099|T037|AB|T22.042S|ICD10CM|Burn of unspecified degree of left axilla, sequela|Burn of unspecified degree of left axilla, sequela +C2871100|T037|AB|T22.049|ICD10CM|Burn of unspecified degree of unspecified axilla|Burn of unspecified degree of unspecified axilla +C2871100|T037|HT|T22.049|ICD10CM|Burn of unspecified degree of unspecified axilla|Burn of unspecified degree of unspecified axilla +C2871101|T037|AB|T22.049A|ICD10CM|Burn of unsp degree of unspecified axilla, init encntr|Burn of unsp degree of unspecified axilla, init encntr +C2871101|T037|PT|T22.049A|ICD10CM|Burn of unspecified degree of unspecified axilla, initial encounter|Burn of unspecified degree of unspecified axilla, initial encounter +C2871102|T037|AB|T22.049D|ICD10CM|Burn of unsp degree of unspecified axilla, subs encntr|Burn of unsp degree of unspecified axilla, subs encntr +C2871102|T037|PT|T22.049D|ICD10CM|Burn of unspecified degree of unspecified axilla, subsequent encounter|Burn of unspecified degree of unspecified axilla, subsequent encounter +C2871103|T037|PT|T22.049S|ICD10CM|Burn of unspecified degree of unspecified axilla, sequela|Burn of unspecified degree of unspecified axilla, sequela +C2871103|T037|AB|T22.049S|ICD10CM|Burn of unspecified degree of unspecified axilla, sequela|Burn of unspecified degree of unspecified axilla, sequela +C0274041|T037|HT|T22.05|ICD10CM|Burn of unspecified degree of shoulder|Burn of unspecified degree of shoulder +C0274041|T037|AB|T22.05|ICD10CM|Burn of unspecified degree of shoulder|Burn of unspecified degree of shoulder +C2871104|T037|AB|T22.051|ICD10CM|Burn of unspecified degree of right shoulder|Burn of unspecified degree of right shoulder +C2871104|T037|HT|T22.051|ICD10CM|Burn of unspecified degree of right shoulder|Burn of unspecified degree of right shoulder +C2871105|T037|AB|T22.051A|ICD10CM|Burn of unspecified degree of right shoulder, init encntr|Burn of unspecified degree of right shoulder, init encntr +C2871105|T037|PT|T22.051A|ICD10CM|Burn of unspecified degree of right shoulder, initial encounter|Burn of unspecified degree of right shoulder, initial encounter +C2871106|T037|AB|T22.051D|ICD10CM|Burn of unspecified degree of right shoulder, subs encntr|Burn of unspecified degree of right shoulder, subs encntr +C2871106|T037|PT|T22.051D|ICD10CM|Burn of unspecified degree of right shoulder, subsequent encounter|Burn of unspecified degree of right shoulder, subsequent encounter +C2871107|T037|PT|T22.051S|ICD10CM|Burn of unspecified degree of right shoulder, sequela|Burn of unspecified degree of right shoulder, sequela +C2871107|T037|AB|T22.051S|ICD10CM|Burn of unspecified degree of right shoulder, sequela|Burn of unspecified degree of right shoulder, sequela +C2871108|T037|AB|T22.052|ICD10CM|Burn of unspecified degree of left shoulder|Burn of unspecified degree of left shoulder +C2871108|T037|HT|T22.052|ICD10CM|Burn of unspecified degree of left shoulder|Burn of unspecified degree of left shoulder +C2871109|T037|AB|T22.052A|ICD10CM|Burn of unspecified degree of left shoulder, init encntr|Burn of unspecified degree of left shoulder, init encntr +C2871109|T037|PT|T22.052A|ICD10CM|Burn of unspecified degree of left shoulder, initial encounter|Burn of unspecified degree of left shoulder, initial encounter +C2871110|T037|AB|T22.052D|ICD10CM|Burn of unspecified degree of left shoulder, subs encntr|Burn of unspecified degree of left shoulder, subs encntr +C2871110|T037|PT|T22.052D|ICD10CM|Burn of unspecified degree of left shoulder, subsequent encounter|Burn of unspecified degree of left shoulder, subsequent encounter +C2871111|T037|PT|T22.052S|ICD10CM|Burn of unspecified degree of left shoulder, sequela|Burn of unspecified degree of left shoulder, sequela +C2871111|T037|AB|T22.052S|ICD10CM|Burn of unspecified degree of left shoulder, sequela|Burn of unspecified degree of left shoulder, sequela +C2871112|T037|AB|T22.059|ICD10CM|Burn of unspecified degree of unspecified shoulder|Burn of unspecified degree of unspecified shoulder +C2871112|T037|HT|T22.059|ICD10CM|Burn of unspecified degree of unspecified shoulder|Burn of unspecified degree of unspecified shoulder +C2871113|T037|AB|T22.059A|ICD10CM|Burn of unsp degree of unspecified shoulder, init encntr|Burn of unsp degree of unspecified shoulder, init encntr +C2871113|T037|PT|T22.059A|ICD10CM|Burn of unspecified degree of unspecified shoulder, initial encounter|Burn of unspecified degree of unspecified shoulder, initial encounter +C2871114|T037|AB|T22.059D|ICD10CM|Burn of unsp degree of unspecified shoulder, subs encntr|Burn of unsp degree of unspecified shoulder, subs encntr +C2871114|T037|PT|T22.059D|ICD10CM|Burn of unspecified degree of unspecified shoulder, subsequent encounter|Burn of unspecified degree of unspecified shoulder, subsequent encounter +C2871115|T037|PT|T22.059S|ICD10CM|Burn of unspecified degree of unspecified shoulder, sequela|Burn of unspecified degree of unspecified shoulder, sequela +C2871115|T037|AB|T22.059S|ICD10CM|Burn of unspecified degree of unspecified shoulder, sequela|Burn of unspecified degree of unspecified shoulder, sequela +C0274047|T037|HT|T22.06|ICD10CM|Burn of unspecified degree of scapular region|Burn of unspecified degree of scapular region +C0274047|T037|AB|T22.06|ICD10CM|Burn of unspecified degree of scapular region|Burn of unspecified degree of scapular region +C2871116|T037|AB|T22.061|ICD10CM|Burn of unspecified degree of right scapular region|Burn of unspecified degree of right scapular region +C2871116|T037|HT|T22.061|ICD10CM|Burn of unspecified degree of right scapular region|Burn of unspecified degree of right scapular region +C2871117|T037|AB|T22.061A|ICD10CM|Burn of unsp degree of right scapular region, init encntr|Burn of unsp degree of right scapular region, init encntr +C2871117|T037|PT|T22.061A|ICD10CM|Burn of unspecified degree of right scapular region, initial encounter|Burn of unspecified degree of right scapular region, initial encounter +C2871118|T037|AB|T22.061D|ICD10CM|Burn of unsp degree of right scapular region, subs encntr|Burn of unsp degree of right scapular region, subs encntr +C2871118|T037|PT|T22.061D|ICD10CM|Burn of unspecified degree of right scapular region, subsequent encounter|Burn of unspecified degree of right scapular region, subsequent encounter +C2871119|T037|AB|T22.061S|ICD10CM|Burn of unspecified degree of right scapular region, sequela|Burn of unspecified degree of right scapular region, sequela +C2871119|T037|PT|T22.061S|ICD10CM|Burn of unspecified degree of right scapular region, sequela|Burn of unspecified degree of right scapular region, sequela +C2871120|T037|AB|T22.062|ICD10CM|Burn of unspecified degree of left scapular region|Burn of unspecified degree of left scapular region +C2871120|T037|HT|T22.062|ICD10CM|Burn of unspecified degree of left scapular region|Burn of unspecified degree of left scapular region +C2871121|T037|AB|T22.062A|ICD10CM|Burn of unsp degree of left scapular region, init encntr|Burn of unsp degree of left scapular region, init encntr +C2871121|T037|PT|T22.062A|ICD10CM|Burn of unspecified degree of left scapular region, initial encounter|Burn of unspecified degree of left scapular region, initial encounter +C2871122|T037|AB|T22.062D|ICD10CM|Burn of unsp degree of left scapular region, subs encntr|Burn of unsp degree of left scapular region, subs encntr +C2871122|T037|PT|T22.062D|ICD10CM|Burn of unspecified degree of left scapular region, subsequent encounter|Burn of unspecified degree of left scapular region, subsequent encounter +C2871123|T037|PT|T22.062S|ICD10CM|Burn of unspecified degree of left scapular region, sequela|Burn of unspecified degree of left scapular region, sequela +C2871123|T037|AB|T22.062S|ICD10CM|Burn of unspecified degree of left scapular region, sequela|Burn of unspecified degree of left scapular region, sequela +C2871124|T037|AB|T22.069|ICD10CM|Burn of unspecified degree of unspecified scapular region|Burn of unspecified degree of unspecified scapular region +C2871124|T037|HT|T22.069|ICD10CM|Burn of unspecified degree of unspecified scapular region|Burn of unspecified degree of unspecified scapular region +C2871125|T037|AB|T22.069A|ICD10CM|Burn of unsp degree of unsp scapular region, init encntr|Burn of unsp degree of unsp scapular region, init encntr +C2871125|T037|PT|T22.069A|ICD10CM|Burn of unspecified degree of unspecified scapular region, initial encounter|Burn of unspecified degree of unspecified scapular region, initial encounter +C2871126|T037|AB|T22.069D|ICD10CM|Burn of unsp degree of unsp scapular region, subs encntr|Burn of unsp degree of unsp scapular region, subs encntr +C2871126|T037|PT|T22.069D|ICD10CM|Burn of unspecified degree of unspecified scapular region, subsequent encounter|Burn of unspecified degree of unspecified scapular region, subsequent encounter +C2871127|T037|AB|T22.069S|ICD10CM|Burn of unsp degree of unspecified scapular region, sequela|Burn of unsp degree of unspecified scapular region, sequela +C2871127|T037|PT|T22.069S|ICD10CM|Burn of unspecified degree of unspecified scapular region, sequela|Burn of unspecified degree of unspecified scapular region, sequela +C2871128|T037|AB|T22.09|ICD10CM|Burn of unsp deg mult sites of shldr/up lmb, except wrs/hnd|Burn of unsp deg mult sites of shldr/up lmb, except wrs/hnd +C2871128|T037|HT|T22.09|ICD10CM|Burn of unspecified degree of multiple sites of shoulder and upper limb, except wrist and hand|Burn of unspecified degree of multiple sites of shoulder and upper limb, except wrist and hand +C2871129|T037|HT|T22.091|ICD10CM|Burn of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand|Burn of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand +C2871129|T037|AB|T22.091|ICD10CM|Burn unsp deg mult sites of right shldr/up lmb, ex wrs/hnd|Burn unsp deg mult sites of right shldr/up lmb, ex wrs/hnd +C2871130|T037|AB|T22.091A|ICD10CM|Burn unsp deg mult sites of r shldr/up lmb, ex wrs/hnd, init|Burn unsp deg mult sites of r shldr/up lmb, ex wrs/hnd, init +C2871131|T037|AB|T22.091D|ICD10CM|Burn unsp deg mult sites of r shldr/up lmb, ex wrs/hnd, subs|Burn unsp deg mult sites of r shldr/up lmb, ex wrs/hnd, subs +C2871132|T037|AB|T22.091S|ICD10CM|Burn unsp deg mult sites of r shldr/up lmb, ex wrs/hnd, sqla|Burn unsp deg mult sites of r shldr/up lmb, ex wrs/hnd, sqla +C2871133|T037|HT|T22.092|ICD10CM|Burn of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand|Burn of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand +C2871133|T037|AB|T22.092|ICD10CM|Burn unsp deg mult sites of left shldr/up lmb, ex wrs/hnd|Burn unsp deg mult sites of left shldr/up lmb, ex wrs/hnd +C2871134|T037|AB|T22.092A|ICD10CM|Burn unsp deg mult site of l shldr/up lmb, ex wrs/hnd, init|Burn unsp deg mult site of l shldr/up lmb, ex wrs/hnd, init +C2871135|T037|AB|T22.092D|ICD10CM|Burn unsp deg mult site of l shldr/up lmb, ex wrs/hnd, subs|Burn unsp deg mult site of l shldr/up lmb, ex wrs/hnd, subs +C2871136|T037|AB|T22.092S|ICD10CM|Burn unsp deg mult site of l shldr/up lmb, ex wrs/hnd, sqla|Burn unsp deg mult site of l shldr/up lmb, ex wrs/hnd, sqla +C2871137|T037|AB|T22.099|ICD10CM|Burn of unsp deg mult sites of shldr/up lmb, except wrs/hnd|Burn of unsp deg mult sites of shldr/up lmb, except wrs/hnd +C2871138|T037|AB|T22.099A|ICD10CM|Burn unsp deg mult sites of shldr/up lmb, ex wrs/hnd, init|Burn unsp deg mult sites of shldr/up lmb, ex wrs/hnd, init +C2871139|T037|AB|T22.099D|ICD10CM|Burn unsp deg mult sites of shldr/up lmb, ex wrs/hnd, subs|Burn unsp deg mult sites of shldr/up lmb, ex wrs/hnd, subs +C2871140|T037|AB|T22.099S|ICD10CM|Burn unsp deg mult sites of shldr/up lmb, ex wrs/hnd, sqla|Burn unsp deg mult sites of shldr/up lmb, ex wrs/hnd, sqla +C0496037|T037|AB|T22.1|ICD10CM|Burn of first degree of shldr/up lmb, except wrist and hand|Burn of first degree of shldr/up lmb, except wrist and hand +C0496037|T037|HT|T22.1|ICD10CM|Burn of first degree of shoulder and upper limb, except wrist and hand|Burn of first degree of shoulder and upper limb, except wrist and hand +C0496037|T037|PT|T22.1|ICD10|Burn of first degree of shoulder and upper limb, except wrist and hand|Burn of first degree of shoulder and upper limb, except wrist and hand +C2871141|T037|AB|T22.10|ICD10CM|Burn first degree of shldr/up lmb, except wrs/hnd, unsp site|Burn first degree of shldr/up lmb, except wrs/hnd, unsp site +C2871141|T037|HT|T22.10|ICD10CM|Burn of first degree of shoulder and upper limb, except wrist and hand, unspecified site|Burn of first degree of shoulder and upper limb, except wrist and hand, unspecified site +C2871142|T037|AB|T22.10XA|ICD10CM|Burn first deg of shldr/up lmb, ex wrs/hnd, unsp site, init|Burn first deg of shldr/up lmb, ex wrs/hnd, unsp site, init +C2871143|T037|AB|T22.10XD|ICD10CM|Burn first deg of shldr/up lmb, ex wrs/hnd, unsp site, subs|Burn first deg of shldr/up lmb, ex wrs/hnd, unsp site, subs +C2871144|T037|AB|T22.10XS|ICD10CM|Burn first deg of shldr/up lmb, ex wrs/hnd, unsp site, sqla|Burn first deg of shldr/up lmb, ex wrs/hnd, unsp site, sqla +C2871144|T037|PT|T22.10XS|ICD10CM|Burn of first degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela|Burn of first degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela +C0433329|T037|AB|T22.11|ICD10CM|Burn of first degree of forearm|Burn of first degree of forearm +C0433329|T037|HT|T22.11|ICD10CM|Burn of first degree of forearm|Burn of first degree of forearm +C2231635|T037|AB|T22.111|ICD10CM|Burn of first degree of right forearm|Burn of first degree of right forearm +C2231635|T037|HT|T22.111|ICD10CM|Burn of first degree of right forearm|Burn of first degree of right forearm +C2871145|T037|PT|T22.111A|ICD10CM|Burn of first degree of right forearm, initial encounter|Burn of first degree of right forearm, initial encounter +C2871145|T037|AB|T22.111A|ICD10CM|Burn of first degree of right forearm, initial encounter|Burn of first degree of right forearm, initial encounter +C2871146|T037|PT|T22.111D|ICD10CM|Burn of first degree of right forearm, subsequent encounter|Burn of first degree of right forearm, subsequent encounter +C2871146|T037|AB|T22.111D|ICD10CM|Burn of first degree of right forearm, subsequent encounter|Burn of first degree of right forearm, subsequent encounter +C2871147|T037|PT|T22.111S|ICD10CM|Burn of first degree of right forearm, sequela|Burn of first degree of right forearm, sequela +C2871147|T037|AB|T22.111S|ICD10CM|Burn of first degree of right forearm, sequela|Burn of first degree of right forearm, sequela +C2231636|T037|AB|T22.112|ICD10CM|Burn of first degree of left forearm|Burn of first degree of left forearm +C2231636|T037|HT|T22.112|ICD10CM|Burn of first degree of left forearm|Burn of first degree of left forearm +C2871148|T037|AB|T22.112A|ICD10CM|Burn of first degree of left forearm, initial encounter|Burn of first degree of left forearm, initial encounter +C2871148|T037|PT|T22.112A|ICD10CM|Burn of first degree of left forearm, initial encounter|Burn of first degree of left forearm, initial encounter +C2871149|T037|PT|T22.112D|ICD10CM|Burn of first degree of left forearm, subsequent encounter|Burn of first degree of left forearm, subsequent encounter +C2871149|T037|AB|T22.112D|ICD10CM|Burn of first degree of left forearm, subsequent encounter|Burn of first degree of left forearm, subsequent encounter +C2871150|T037|PT|T22.112S|ICD10CM|Burn of first degree of left forearm, sequela|Burn of first degree of left forearm, sequela +C2871150|T037|AB|T22.112S|ICD10CM|Burn of first degree of left forearm, sequela|Burn of first degree of left forearm, sequela +C2871151|T037|AB|T22.119|ICD10CM|Burn of first degree of unspecified forearm|Burn of first degree of unspecified forearm +C2871151|T037|HT|T22.119|ICD10CM|Burn of first degree of unspecified forearm|Burn of first degree of unspecified forearm +C2871152|T037|AB|T22.119A|ICD10CM|Burn of first degree of unspecified forearm, init encntr|Burn of first degree of unspecified forearm, init encntr +C2871152|T037|PT|T22.119A|ICD10CM|Burn of first degree of unspecified forearm, initial encounter|Burn of first degree of unspecified forearm, initial encounter +C2871153|T037|AB|T22.119D|ICD10CM|Burn of first degree of unspecified forearm, subs encntr|Burn of first degree of unspecified forearm, subs encntr +C2871153|T037|PT|T22.119D|ICD10CM|Burn of first degree of unspecified forearm, subsequent encounter|Burn of first degree of unspecified forearm, subsequent encounter +C2871154|T037|PT|T22.119S|ICD10CM|Burn of first degree of unspecified forearm, sequela|Burn of first degree of unspecified forearm, sequela +C2871154|T037|AB|T22.119S|ICD10CM|Burn of first degree of unspecified forearm, sequela|Burn of first degree of unspecified forearm, sequela +C0433328|T037|AB|T22.12|ICD10CM|Burn of first degree of elbow|Burn of first degree of elbow +C0433328|T037|HT|T22.12|ICD10CM|Burn of first degree of elbow|Burn of first degree of elbow +C2231637|T037|AB|T22.121|ICD10CM|Burn of first degree of right elbow|Burn of first degree of right elbow +C2231637|T037|HT|T22.121|ICD10CM|Burn of first degree of right elbow|Burn of first degree of right elbow +C2871155|T037|PT|T22.121A|ICD10CM|Burn of first degree of right elbow, initial encounter|Burn of first degree of right elbow, initial encounter +C2871155|T037|AB|T22.121A|ICD10CM|Burn of first degree of right elbow, initial encounter|Burn of first degree of right elbow, initial encounter +C2871156|T037|PT|T22.121D|ICD10CM|Burn of first degree of right elbow, subsequent encounter|Burn of first degree of right elbow, subsequent encounter +C2871156|T037|AB|T22.121D|ICD10CM|Burn of first degree of right elbow, subsequent encounter|Burn of first degree of right elbow, subsequent encounter +C2871157|T037|PT|T22.121S|ICD10CM|Burn of first degree of right elbow, sequela|Burn of first degree of right elbow, sequela +C2871157|T037|AB|T22.121S|ICD10CM|Burn of first degree of right elbow, sequela|Burn of first degree of right elbow, sequela +C2231638|T037|AB|T22.122|ICD10CM|Burn of first degree of left elbow|Burn of first degree of left elbow +C2231638|T037|HT|T22.122|ICD10CM|Burn of first degree of left elbow|Burn of first degree of left elbow +C2871158|T037|PT|T22.122A|ICD10CM|Burn of first degree of left elbow, initial encounter|Burn of first degree of left elbow, initial encounter +C2871158|T037|AB|T22.122A|ICD10CM|Burn of first degree of left elbow, initial encounter|Burn of first degree of left elbow, initial encounter +C2871159|T037|PT|T22.122D|ICD10CM|Burn of first degree of left elbow, subsequent encounter|Burn of first degree of left elbow, subsequent encounter +C2871159|T037|AB|T22.122D|ICD10CM|Burn of first degree of left elbow, subsequent encounter|Burn of first degree of left elbow, subsequent encounter +C2871160|T037|PT|T22.122S|ICD10CM|Burn of first degree of left elbow, sequela|Burn of first degree of left elbow, sequela +C2871160|T037|AB|T22.122S|ICD10CM|Burn of first degree of left elbow, sequela|Burn of first degree of left elbow, sequela +C2871161|T037|AB|T22.129|ICD10CM|Burn of first degree of unspecified elbow|Burn of first degree of unspecified elbow +C2871161|T037|HT|T22.129|ICD10CM|Burn of first degree of unspecified elbow|Burn of first degree of unspecified elbow +C2871162|T037|AB|T22.129A|ICD10CM|Burn of first degree of unspecified elbow, initial encounter|Burn of first degree of unspecified elbow, initial encounter +C2871162|T037|PT|T22.129A|ICD10CM|Burn of first degree of unspecified elbow, initial encounter|Burn of first degree of unspecified elbow, initial encounter +C2871163|T037|AB|T22.129D|ICD10CM|Burn of first degree of unspecified elbow, subs encntr|Burn of first degree of unspecified elbow, subs encntr +C2871163|T037|PT|T22.129D|ICD10CM|Burn of first degree of unspecified elbow, subsequent encounter|Burn of first degree of unspecified elbow, subsequent encounter +C2871164|T037|PT|T22.129S|ICD10CM|Burn of first degree of unspecified elbow, sequela|Burn of first degree of unspecified elbow, sequela +C2871164|T037|AB|T22.129S|ICD10CM|Burn of first degree of unspecified elbow, sequela|Burn of first degree of unspecified elbow, sequela +C0433327|T037|AB|T22.13|ICD10CM|Burn of first degree of upper arm|Burn of first degree of upper arm +C0433327|T037|HT|T22.13|ICD10CM|Burn of first degree of upper arm|Burn of first degree of upper arm +C2231639|T037|AB|T22.131|ICD10CM|Burn of first degree of right upper arm|Burn of first degree of right upper arm +C2231639|T037|HT|T22.131|ICD10CM|Burn of first degree of right upper arm|Burn of first degree of right upper arm +C2871165|T037|PT|T22.131A|ICD10CM|Burn of first degree of right upper arm, initial encounter|Burn of first degree of right upper arm, initial encounter +C2871165|T037|AB|T22.131A|ICD10CM|Burn of first degree of right upper arm, initial encounter|Burn of first degree of right upper arm, initial encounter +C2871166|T037|AB|T22.131D|ICD10CM|Burn of first degree of right upper arm, subs encntr|Burn of first degree of right upper arm, subs encntr +C2871166|T037|PT|T22.131D|ICD10CM|Burn of first degree of right upper arm, subsequent encounter|Burn of first degree of right upper arm, subsequent encounter +C2871167|T037|PT|T22.131S|ICD10CM|Burn of first degree of right upper arm, sequela|Burn of first degree of right upper arm, sequela +C2871167|T037|AB|T22.131S|ICD10CM|Burn of first degree of right upper arm, sequela|Burn of first degree of right upper arm, sequela +C2231640|T037|AB|T22.132|ICD10CM|Burn of first degree of left upper arm|Burn of first degree of left upper arm +C2231640|T037|HT|T22.132|ICD10CM|Burn of first degree of left upper arm|Burn of first degree of left upper arm +C2871168|T037|PT|T22.132A|ICD10CM|Burn of first degree of left upper arm, initial encounter|Burn of first degree of left upper arm, initial encounter +C2871168|T037|AB|T22.132A|ICD10CM|Burn of first degree of left upper arm, initial encounter|Burn of first degree of left upper arm, initial encounter +C2871169|T037|AB|T22.132D|ICD10CM|Burn of first degree of left upper arm, subsequent encounter|Burn of first degree of left upper arm, subsequent encounter +C2871169|T037|PT|T22.132D|ICD10CM|Burn of first degree of left upper arm, subsequent encounter|Burn of first degree of left upper arm, subsequent encounter +C2871170|T037|PT|T22.132S|ICD10CM|Burn of first degree of left upper arm, sequela|Burn of first degree of left upper arm, sequela +C2871170|T037|AB|T22.132S|ICD10CM|Burn of first degree of left upper arm, sequela|Burn of first degree of left upper arm, sequela +C2871171|T037|AB|T22.139|ICD10CM|Burn of first degree of unspecified upper arm|Burn of first degree of unspecified upper arm +C2871171|T037|HT|T22.139|ICD10CM|Burn of first degree of unspecified upper arm|Burn of first degree of unspecified upper arm +C2871172|T037|AB|T22.139A|ICD10CM|Burn of first degree of unspecified upper arm, init encntr|Burn of first degree of unspecified upper arm, init encntr +C2871172|T037|PT|T22.139A|ICD10CM|Burn of first degree of unspecified upper arm, initial encounter|Burn of first degree of unspecified upper arm, initial encounter +C2871173|T037|AB|T22.139D|ICD10CM|Burn of first degree of unspecified upper arm, subs encntr|Burn of first degree of unspecified upper arm, subs encntr +C2871173|T037|PT|T22.139D|ICD10CM|Burn of first degree of unspecified upper arm, subsequent encounter|Burn of first degree of unspecified upper arm, subsequent encounter +C2871174|T037|PT|T22.139S|ICD10CM|Burn of first degree of unspecified upper arm, sequela|Burn of first degree of unspecified upper arm, sequela +C2871174|T037|AB|T22.139S|ICD10CM|Burn of first degree of unspecified upper arm, sequela|Burn of first degree of unspecified upper arm, sequela +C0433326|T037|AB|T22.14|ICD10CM|Burn of first degree of axilla|Burn of first degree of axilla +C0433326|T037|HT|T22.14|ICD10CM|Burn of first degree of axilla|Burn of first degree of axilla +C2231641|T037|AB|T22.141|ICD10CM|Burn of first degree of right axilla|Burn of first degree of right axilla +C2231641|T037|HT|T22.141|ICD10CM|Burn of first degree of right axilla|Burn of first degree of right axilla +C2871175|T037|AB|T22.141A|ICD10CM|Burn of first degree of right axilla, initial encounter|Burn of first degree of right axilla, initial encounter +C2871175|T037|PT|T22.141A|ICD10CM|Burn of first degree of right axilla, initial encounter|Burn of first degree of right axilla, initial encounter +C2871176|T037|PT|T22.141D|ICD10CM|Burn of first degree of right axilla, subsequent encounter|Burn of first degree of right axilla, subsequent encounter +C2871176|T037|AB|T22.141D|ICD10CM|Burn of first degree of right axilla, subsequent encounter|Burn of first degree of right axilla, subsequent encounter +C2871177|T037|PT|T22.141S|ICD10CM|Burn of first degree of right axilla, sequela|Burn of first degree of right axilla, sequela +C2871177|T037|AB|T22.141S|ICD10CM|Burn of first degree of right axilla, sequela|Burn of first degree of right axilla, sequela +C2231642|T037|AB|T22.142|ICD10CM|Burn of first degree of left axilla|Burn of first degree of left axilla +C2231642|T037|HT|T22.142|ICD10CM|Burn of first degree of left axilla|Burn of first degree of left axilla +C2871178|T037|PT|T22.142A|ICD10CM|Burn of first degree of left axilla, initial encounter|Burn of first degree of left axilla, initial encounter +C2871178|T037|AB|T22.142A|ICD10CM|Burn of first degree of left axilla, initial encounter|Burn of first degree of left axilla, initial encounter +C2871179|T037|PT|T22.142D|ICD10CM|Burn of first degree of left axilla, subsequent encounter|Burn of first degree of left axilla, subsequent encounter +C2871179|T037|AB|T22.142D|ICD10CM|Burn of first degree of left axilla, subsequent encounter|Burn of first degree of left axilla, subsequent encounter +C2871180|T037|PT|T22.142S|ICD10CM|Burn of first degree of left axilla, sequela|Burn of first degree of left axilla, sequela +C2871180|T037|AB|T22.142S|ICD10CM|Burn of first degree of left axilla, sequela|Burn of first degree of left axilla, sequela +C2871181|T037|AB|T22.149|ICD10CM|Burn of first degree of unspecified axilla|Burn of first degree of unspecified axilla +C2871181|T037|HT|T22.149|ICD10CM|Burn of first degree of unspecified axilla|Burn of first degree of unspecified axilla +C2871182|T037|AB|T22.149A|ICD10CM|Burn of first degree of unspecified axilla, init encntr|Burn of first degree of unspecified axilla, init encntr +C2871182|T037|PT|T22.149A|ICD10CM|Burn of first degree of unspecified axilla, initial encounter|Burn of first degree of unspecified axilla, initial encounter +C2871183|T037|AB|T22.149D|ICD10CM|Burn of first degree of unspecified axilla, subs encntr|Burn of first degree of unspecified axilla, subs encntr +C2871183|T037|PT|T22.149D|ICD10CM|Burn of first degree of unspecified axilla, subsequent encounter|Burn of first degree of unspecified axilla, subsequent encounter +C2871184|T037|PT|T22.149S|ICD10CM|Burn of first degree of unspecified axilla, sequela|Burn of first degree of unspecified axilla, sequela +C2871184|T037|AB|T22.149S|ICD10CM|Burn of first degree of unspecified axilla, sequela|Burn of first degree of unspecified axilla, sequela +C0433325|T037|AB|T22.15|ICD10CM|Burn of first degree of shoulder|Burn of first degree of shoulder +C0433325|T037|HT|T22.15|ICD10CM|Burn of first degree of shoulder|Burn of first degree of shoulder +C2231643|T037|AB|T22.151|ICD10CM|Burn of first degree of right shoulder|Burn of first degree of right shoulder +C2231643|T037|HT|T22.151|ICD10CM|Burn of first degree of right shoulder|Burn of first degree of right shoulder +C2871185|T037|PT|T22.151A|ICD10CM|Burn of first degree of right shoulder, initial encounter|Burn of first degree of right shoulder, initial encounter +C2871185|T037|AB|T22.151A|ICD10CM|Burn of first degree of right shoulder, initial encounter|Burn of first degree of right shoulder, initial encounter +C2871186|T037|AB|T22.151D|ICD10CM|Burn of first degree of right shoulder, subsequent encounter|Burn of first degree of right shoulder, subsequent encounter +C2871186|T037|PT|T22.151D|ICD10CM|Burn of first degree of right shoulder, subsequent encounter|Burn of first degree of right shoulder, subsequent encounter +C2871187|T037|PT|T22.151S|ICD10CM|Burn of first degree of right shoulder, sequela|Burn of first degree of right shoulder, sequela +C2871187|T037|AB|T22.151S|ICD10CM|Burn of first degree of right shoulder, sequela|Burn of first degree of right shoulder, sequela +C2231644|T037|AB|T22.152|ICD10CM|Burn of first degree of left shoulder|Burn of first degree of left shoulder +C2231644|T037|HT|T22.152|ICD10CM|Burn of first degree of left shoulder|Burn of first degree of left shoulder +C2871188|T037|PT|T22.152A|ICD10CM|Burn of first degree of left shoulder, initial encounter|Burn of first degree of left shoulder, initial encounter +C2871188|T037|AB|T22.152A|ICD10CM|Burn of first degree of left shoulder, initial encounter|Burn of first degree of left shoulder, initial encounter +C2871189|T037|PT|T22.152D|ICD10CM|Burn of first degree of left shoulder, subsequent encounter|Burn of first degree of left shoulder, subsequent encounter +C2871189|T037|AB|T22.152D|ICD10CM|Burn of first degree of left shoulder, subsequent encounter|Burn of first degree of left shoulder, subsequent encounter +C2871190|T037|PT|T22.152S|ICD10CM|Burn of first degree of left shoulder, sequela|Burn of first degree of left shoulder, sequela +C2871190|T037|AB|T22.152S|ICD10CM|Burn of first degree of left shoulder, sequela|Burn of first degree of left shoulder, sequela +C2871191|T037|AB|T22.159|ICD10CM|Burn of first degree of unspecified shoulder|Burn of first degree of unspecified shoulder +C2871191|T037|HT|T22.159|ICD10CM|Burn of first degree of unspecified shoulder|Burn of first degree of unspecified shoulder +C2871192|T037|AB|T22.159A|ICD10CM|Burn of first degree of unspecified shoulder, init encntr|Burn of first degree of unspecified shoulder, init encntr +C2871192|T037|PT|T22.159A|ICD10CM|Burn of first degree of unspecified shoulder, initial encounter|Burn of first degree of unspecified shoulder, initial encounter +C2871193|T037|AB|T22.159D|ICD10CM|Burn of first degree of unspecified shoulder, subs encntr|Burn of first degree of unspecified shoulder, subs encntr +C2871193|T037|PT|T22.159D|ICD10CM|Burn of first degree of unspecified shoulder, subsequent encounter|Burn of first degree of unspecified shoulder, subsequent encounter +C2871194|T037|PT|T22.159S|ICD10CM|Burn of first degree of unspecified shoulder, sequela|Burn of first degree of unspecified shoulder, sequela +C2871194|T037|AB|T22.159S|ICD10CM|Burn of first degree of unspecified shoulder, sequela|Burn of first degree of unspecified shoulder, sequela +C0433324|T037|AB|T22.16|ICD10CM|Burn of first degree of scapular region|Burn of first degree of scapular region +C0433324|T037|HT|T22.16|ICD10CM|Burn of first degree of scapular region|Burn of first degree of scapular region +C2231645|T037|AB|T22.161|ICD10CM|Burn of first degree of right scapular region|Burn of first degree of right scapular region +C2231645|T037|HT|T22.161|ICD10CM|Burn of first degree of right scapular region|Burn of first degree of right scapular region +C2871195|T037|AB|T22.161A|ICD10CM|Burn of first degree of right scapular region, init encntr|Burn of first degree of right scapular region, init encntr +C2871195|T037|PT|T22.161A|ICD10CM|Burn of first degree of right scapular region, initial encounter|Burn of first degree of right scapular region, initial encounter +C2871196|T037|AB|T22.161D|ICD10CM|Burn of first degree of right scapular region, subs encntr|Burn of first degree of right scapular region, subs encntr +C2871196|T037|PT|T22.161D|ICD10CM|Burn of first degree of right scapular region, subsequent encounter|Burn of first degree of right scapular region, subsequent encounter +C2871197|T037|PT|T22.161S|ICD10CM|Burn of first degree of right scapular region, sequela|Burn of first degree of right scapular region, sequela +C2871197|T037|AB|T22.161S|ICD10CM|Burn of first degree of right scapular region, sequela|Burn of first degree of right scapular region, sequela +C2231646|T037|AB|T22.162|ICD10CM|Burn of first degree of left scapular region|Burn of first degree of left scapular region +C2231646|T037|HT|T22.162|ICD10CM|Burn of first degree of left scapular region|Burn of first degree of left scapular region +C2871198|T037|AB|T22.162A|ICD10CM|Burn of first degree of left scapular region, init encntr|Burn of first degree of left scapular region, init encntr +C2871198|T037|PT|T22.162A|ICD10CM|Burn of first degree of left scapular region, initial encounter|Burn of first degree of left scapular region, initial encounter +C2871199|T037|AB|T22.162D|ICD10CM|Burn of first degree of left scapular region, subs encntr|Burn of first degree of left scapular region, subs encntr +C2871199|T037|PT|T22.162D|ICD10CM|Burn of first degree of left scapular region, subsequent encounter|Burn of first degree of left scapular region, subsequent encounter +C2871200|T037|PT|T22.162S|ICD10CM|Burn of first degree of left scapular region, sequela|Burn of first degree of left scapular region, sequela +C2871200|T037|AB|T22.162S|ICD10CM|Burn of first degree of left scapular region, sequela|Burn of first degree of left scapular region, sequela +C2871201|T037|AB|T22.169|ICD10CM|Burn of first degree of unspecified scapular region|Burn of first degree of unspecified scapular region +C2871201|T037|HT|T22.169|ICD10CM|Burn of first degree of unspecified scapular region|Burn of first degree of unspecified scapular region +C2871202|T037|AB|T22.169A|ICD10CM|Burn of first degree of unsp scapular region, init encntr|Burn of first degree of unsp scapular region, init encntr +C2871202|T037|PT|T22.169A|ICD10CM|Burn of first degree of unspecified scapular region, initial encounter|Burn of first degree of unspecified scapular region, initial encounter +C2871203|T037|AB|T22.169D|ICD10CM|Burn of first degree of unsp scapular region, subs encntr|Burn of first degree of unsp scapular region, subs encntr +C2871203|T037|PT|T22.169D|ICD10CM|Burn of first degree of unspecified scapular region, subsequent encounter|Burn of first degree of unspecified scapular region, subsequent encounter +C2871204|T037|AB|T22.169S|ICD10CM|Burn of first degree of unspecified scapular region, sequela|Burn of first degree of unspecified scapular region, sequela +C2871204|T037|PT|T22.169S|ICD10CM|Burn of first degree of unspecified scapular region, sequela|Burn of first degree of unspecified scapular region, sequela +C2871205|T037|AB|T22.19|ICD10CM|Burn of first deg mult sites of shldr/up lmb, except wrs/hnd|Burn of first deg mult sites of shldr/up lmb, except wrs/hnd +C2871205|T037|HT|T22.19|ICD10CM|Burn of first degree of multiple sites of shoulder and upper limb, except wrist and hand|Burn of first degree of multiple sites of shoulder and upper limb, except wrist and hand +C2871206|T037|AB|T22.191|ICD10CM|Burn first deg mult sites of right shldr/up lmb, ex wrs/hnd|Burn first deg mult sites of right shldr/up lmb, ex wrs/hnd +C2871206|T037|HT|T22.191|ICD10CM|Burn of first degree of multiple sites of right shoulder and upper limb, except wrist and hand|Burn of first degree of multiple sites of right shoulder and upper limb, except wrist and hand +C2871207|T037|AB|T22.191A|ICD10CM|Burn 1st deg mult sites of r shldr/up lmb, ex wrs/hnd, init|Burn 1st deg mult sites of r shldr/up lmb, ex wrs/hnd, init +C2871208|T037|AB|T22.191D|ICD10CM|Burn 1st deg mult sites of r shldr/up lmb, ex wrs/hnd, subs|Burn 1st deg mult sites of r shldr/up lmb, ex wrs/hnd, subs +C2871209|T037|AB|T22.191S|ICD10CM|Burn 1st deg mult sites of r shldr/up lmb, ex wrs/hnd, sqla|Burn 1st deg mult sites of r shldr/up lmb, ex wrs/hnd, sqla +C2871210|T037|AB|T22.192|ICD10CM|Burn first deg mult sites of left shldr/up lmb, ex wrs/hnd|Burn first deg mult sites of left shldr/up lmb, ex wrs/hnd +C2871210|T037|HT|T22.192|ICD10CM|Burn of first degree of multiple sites of left shoulder and upper limb, except wrist and hand|Burn of first degree of multiple sites of left shoulder and upper limb, except wrist and hand +C2871211|T037|AB|T22.192A|ICD10CM|Burn 1st deg mult site of l shldr/up lmb, ex wrs/hnd, init|Burn 1st deg mult site of l shldr/up lmb, ex wrs/hnd, init +C2871212|T037|AB|T22.192D|ICD10CM|Burn 1st deg mult site of l shldr/up lmb, ex wrs/hnd, subs|Burn 1st deg mult site of l shldr/up lmb, ex wrs/hnd, subs +C2871213|T037|AB|T22.192S|ICD10CM|Burn 1st deg mult site of l shldr/up lmb, ex wrs/hnd, sqla|Burn 1st deg mult site of l shldr/up lmb, ex wrs/hnd, sqla +C2871205|T037|AB|T22.199|ICD10CM|Burn of first deg mult sites of shldr/up lmb, except wrs/hnd|Burn of first deg mult sites of shldr/up lmb, except wrs/hnd +C2871205|T037|HT|T22.199|ICD10CM|Burn of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand|Burn of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand +C2871215|T037|AB|T22.199A|ICD10CM|Burn first deg mult sites of shldr/up lmb, ex wrs/hnd, init|Burn first deg mult sites of shldr/up lmb, ex wrs/hnd, init +C2871216|T037|AB|T22.199D|ICD10CM|Burn first deg mult sites of shldr/up lmb, ex wrs/hnd, subs|Burn first deg mult sites of shldr/up lmb, ex wrs/hnd, subs +C2871217|T037|AB|T22.199S|ICD10CM|Burn first deg mult sites of shldr/up lmb, ex wrs/hnd, sqla|Burn first deg mult sites of shldr/up lmb, ex wrs/hnd, sqla +C0496038|T037|AB|T22.2|ICD10CM|Burn of second degree of shldr/up lmb, except wrist and hand|Burn of second degree of shldr/up lmb, except wrist and hand +C0496038|T037|HT|T22.2|ICD10CM|Burn of second degree of shoulder and upper limb, except wrist and hand|Burn of second degree of shoulder and upper limb, except wrist and hand +C0496038|T037|PT|T22.2|ICD10|Burn of second degree of shoulder and upper limb, except wrist and hand|Burn of second degree of shoulder and upper limb, except wrist and hand +C2871218|T037|HT|T22.20|ICD10CM|Burn of second degree of shoulder and upper limb, except wrist and hand, unspecified site|Burn of second degree of shoulder and upper limb, except wrist and hand, unspecified site +C2871218|T037|AB|T22.20|ICD10CM|Burn second deg of shldr/up lmb, except wrs/hnd, unsp site|Burn second deg of shldr/up lmb, except wrs/hnd, unsp site +C2871219|T037|AB|T22.20XA|ICD10CM|Burn second deg of shldr/up lmb, ex wrs/hnd, unsp site, init|Burn second deg of shldr/up lmb, ex wrs/hnd, unsp site, init +C2871220|T037|AB|T22.20XD|ICD10CM|Burn second deg of shldr/up lmb, ex wrs/hnd, unsp site, subs|Burn second deg of shldr/up lmb, ex wrs/hnd, unsp site, subs +C2871221|T037|PT|T22.20XS|ICD10CM|Burn of second degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela|Burn of second degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela +C2871221|T037|AB|T22.20XS|ICD10CM|Burn second deg of shldr/up lmb, ex wrs/hnd, unsp site, sqla|Burn second deg of shldr/up lmb, ex wrs/hnd, unsp site, sqla +C0562066|T037|AB|T22.21|ICD10CM|Burn of second degree of forearm|Burn of second degree of forearm +C0562066|T037|HT|T22.21|ICD10CM|Burn of second degree of forearm|Burn of second degree of forearm +C2229313|T037|AB|T22.211|ICD10CM|Burn of second degree of right forearm|Burn of second degree of right forearm +C2229313|T037|HT|T22.211|ICD10CM|Burn of second degree of right forearm|Burn of second degree of right forearm +C2871222|T037|PT|T22.211A|ICD10CM|Burn of second degree of right forearm, initial encounter|Burn of second degree of right forearm, initial encounter +C2871222|T037|AB|T22.211A|ICD10CM|Burn of second degree of right forearm, initial encounter|Burn of second degree of right forearm, initial encounter +C2871223|T037|AB|T22.211D|ICD10CM|Burn of second degree of right forearm, subsequent encounter|Burn of second degree of right forearm, subsequent encounter +C2871223|T037|PT|T22.211D|ICD10CM|Burn of second degree of right forearm, subsequent encounter|Burn of second degree of right forearm, subsequent encounter +C2871224|T037|PT|T22.211S|ICD10CM|Burn of second degree of right forearm, sequela|Burn of second degree of right forearm, sequela +C2871224|T037|AB|T22.211S|ICD10CM|Burn of second degree of right forearm, sequela|Burn of second degree of right forearm, sequela +C2229296|T037|AB|T22.212|ICD10CM|Burn of second degree of left forearm|Burn of second degree of left forearm +C2229296|T037|HT|T22.212|ICD10CM|Burn of second degree of left forearm|Burn of second degree of left forearm +C2871225|T037|PT|T22.212A|ICD10CM|Burn of second degree of left forearm, initial encounter|Burn of second degree of left forearm, initial encounter +C2871225|T037|AB|T22.212A|ICD10CM|Burn of second degree of left forearm, initial encounter|Burn of second degree of left forearm, initial encounter +C2871226|T037|PT|T22.212D|ICD10CM|Burn of second degree of left forearm, subsequent encounter|Burn of second degree of left forearm, subsequent encounter +C2871226|T037|AB|T22.212D|ICD10CM|Burn of second degree of left forearm, subsequent encounter|Burn of second degree of left forearm, subsequent encounter +C2871227|T037|PT|T22.212S|ICD10CM|Burn of second degree of left forearm, sequela|Burn of second degree of left forearm, sequela +C2871227|T037|AB|T22.212S|ICD10CM|Burn of second degree of left forearm, sequela|Burn of second degree of left forearm, sequela +C2871228|T037|AB|T22.219|ICD10CM|Burn of second degree of unspecified forearm|Burn of second degree of unspecified forearm +C2871228|T037|HT|T22.219|ICD10CM|Burn of second degree of unspecified forearm|Burn of second degree of unspecified forearm +C2871229|T037|AB|T22.219A|ICD10CM|Burn of second degree of unspecified forearm, init encntr|Burn of second degree of unspecified forearm, init encntr +C2871229|T037|PT|T22.219A|ICD10CM|Burn of second degree of unspecified forearm, initial encounter|Burn of second degree of unspecified forearm, initial encounter +C2871230|T037|AB|T22.219D|ICD10CM|Burn of second degree of unspecified forearm, subs encntr|Burn of second degree of unspecified forearm, subs encntr +C2871230|T037|PT|T22.219D|ICD10CM|Burn of second degree of unspecified forearm, subsequent encounter|Burn of second degree of unspecified forearm, subsequent encounter +C2871231|T037|PT|T22.219S|ICD10CM|Burn of second degree of unspecified forearm, sequela|Burn of second degree of unspecified forearm, sequela +C2871231|T037|AB|T22.219S|ICD10CM|Burn of second degree of unspecified forearm, sequela|Burn of second degree of unspecified forearm, sequela +C0562065|T037|AB|T22.22|ICD10CM|Burn of second degree of elbow|Burn of second degree of elbow +C0562065|T037|HT|T22.22|ICD10CM|Burn of second degree of elbow|Burn of second degree of elbow +C2229312|T037|AB|T22.221|ICD10CM|Burn of second degree of right elbow|Burn of second degree of right elbow +C2229312|T037|HT|T22.221|ICD10CM|Burn of second degree of right elbow|Burn of second degree of right elbow +C2871232|T037|AB|T22.221A|ICD10CM|Burn of second degree of right elbow, initial encounter|Burn of second degree of right elbow, initial encounter +C2871232|T037|PT|T22.221A|ICD10CM|Burn of second degree of right elbow, initial encounter|Burn of second degree of right elbow, initial encounter +C2871233|T037|PT|T22.221D|ICD10CM|Burn of second degree of right elbow, subsequent encounter|Burn of second degree of right elbow, subsequent encounter +C2871233|T037|AB|T22.221D|ICD10CM|Burn of second degree of right elbow, subsequent encounter|Burn of second degree of right elbow, subsequent encounter +C2871234|T037|PT|T22.221S|ICD10CM|Burn of second degree of right elbow, sequela|Burn of second degree of right elbow, sequela +C2871234|T037|AB|T22.221S|ICD10CM|Burn of second degree of right elbow, sequela|Burn of second degree of right elbow, sequela +C2229295|T037|AB|T22.222|ICD10CM|Burn of second degree of left elbow|Burn of second degree of left elbow +C2229295|T037|HT|T22.222|ICD10CM|Burn of second degree of left elbow|Burn of second degree of left elbow +C2871235|T037|PT|T22.222A|ICD10CM|Burn of second degree of left elbow, initial encounter|Burn of second degree of left elbow, initial encounter +C2871235|T037|AB|T22.222A|ICD10CM|Burn of second degree of left elbow, initial encounter|Burn of second degree of left elbow, initial encounter +C2871236|T037|PT|T22.222D|ICD10CM|Burn of second degree of left elbow, subsequent encounter|Burn of second degree of left elbow, subsequent encounter +C2871236|T037|AB|T22.222D|ICD10CM|Burn of second degree of left elbow, subsequent encounter|Burn of second degree of left elbow, subsequent encounter +C2871237|T037|PT|T22.222S|ICD10CM|Burn of second degree of left elbow, sequela|Burn of second degree of left elbow, sequela +C2871237|T037|AB|T22.222S|ICD10CM|Burn of second degree of left elbow, sequela|Burn of second degree of left elbow, sequela +C2871238|T037|AB|T22.229|ICD10CM|Burn of second degree of unspecified elbow|Burn of second degree of unspecified elbow +C2871238|T037|HT|T22.229|ICD10CM|Burn of second degree of unspecified elbow|Burn of second degree of unspecified elbow +C2871239|T037|AB|T22.229A|ICD10CM|Burn of second degree of unspecified elbow, init encntr|Burn of second degree of unspecified elbow, init encntr +C2871239|T037|PT|T22.229A|ICD10CM|Burn of second degree of unspecified elbow, initial encounter|Burn of second degree of unspecified elbow, initial encounter +C2871240|T037|AB|T22.229D|ICD10CM|Burn of second degree of unspecified elbow, subs encntr|Burn of second degree of unspecified elbow, subs encntr +C2871240|T037|PT|T22.229D|ICD10CM|Burn of second degree of unspecified elbow, subsequent encounter|Burn of second degree of unspecified elbow, subsequent encounter +C2871241|T037|PT|T22.229S|ICD10CM|Burn of second degree of unspecified elbow, sequela|Burn of second degree of unspecified elbow, sequela +C2871241|T037|AB|T22.229S|ICD10CM|Burn of second degree of unspecified elbow, sequela|Burn of second degree of unspecified elbow, sequela +C0562064|T037|AB|T22.23|ICD10CM|Burn of second degree of upper arm|Burn of second degree of upper arm +C0562064|T037|HT|T22.23|ICD10CM|Burn of second degree of upper arm|Burn of second degree of upper arm +C2229320|T037|AB|T22.231|ICD10CM|Burn of second degree of right upper arm|Burn of second degree of right upper arm +C2229320|T037|HT|T22.231|ICD10CM|Burn of second degree of right upper arm|Burn of second degree of right upper arm +C2871242|T037|PT|T22.231A|ICD10CM|Burn of second degree of right upper arm, initial encounter|Burn of second degree of right upper arm, initial encounter +C2871242|T037|AB|T22.231A|ICD10CM|Burn of second degree of right upper arm, initial encounter|Burn of second degree of right upper arm, initial encounter +C2871243|T037|AB|T22.231D|ICD10CM|Burn of second degree of right upper arm, subs encntr|Burn of second degree of right upper arm, subs encntr +C2871243|T037|PT|T22.231D|ICD10CM|Burn of second degree of right upper arm, subsequent encounter|Burn of second degree of right upper arm, subsequent encounter +C2871244|T037|PT|T22.231S|ICD10CM|Burn of second degree of right upper arm, sequela|Burn of second degree of right upper arm, sequela +C2871244|T037|AB|T22.231S|ICD10CM|Burn of second degree of right upper arm, sequela|Burn of second degree of right upper arm, sequela +C2229303|T037|AB|T22.232|ICD10CM|Burn of second degree of left upper arm|Burn of second degree of left upper arm +C2229303|T037|HT|T22.232|ICD10CM|Burn of second degree of left upper arm|Burn of second degree of left upper arm +C2871245|T037|PT|T22.232A|ICD10CM|Burn of second degree of left upper arm, initial encounter|Burn of second degree of left upper arm, initial encounter +C2871245|T037|AB|T22.232A|ICD10CM|Burn of second degree of left upper arm, initial encounter|Burn of second degree of left upper arm, initial encounter +C2871246|T037|AB|T22.232D|ICD10CM|Burn of second degree of left upper arm, subs encntr|Burn of second degree of left upper arm, subs encntr +C2871246|T037|PT|T22.232D|ICD10CM|Burn of second degree of left upper arm, subsequent encounter|Burn of second degree of left upper arm, subsequent encounter +C2871247|T037|PT|T22.232S|ICD10CM|Burn of second degree of left upper arm, sequela|Burn of second degree of left upper arm, sequela +C2871247|T037|AB|T22.232S|ICD10CM|Burn of second degree of left upper arm, sequela|Burn of second degree of left upper arm, sequela +C2871248|T037|AB|T22.239|ICD10CM|Burn of second degree of unspecified upper arm|Burn of second degree of unspecified upper arm +C2871248|T037|HT|T22.239|ICD10CM|Burn of second degree of unspecified upper arm|Burn of second degree of unspecified upper arm +C2871249|T037|AB|T22.239A|ICD10CM|Burn of second degree of unspecified upper arm, init encntr|Burn of second degree of unspecified upper arm, init encntr +C2871249|T037|PT|T22.239A|ICD10CM|Burn of second degree of unspecified upper arm, initial encounter|Burn of second degree of unspecified upper arm, initial encounter +C2871250|T037|AB|T22.239D|ICD10CM|Burn of second degree of unspecified upper arm, subs encntr|Burn of second degree of unspecified upper arm, subs encntr +C2871250|T037|PT|T22.239D|ICD10CM|Burn of second degree of unspecified upper arm, subsequent encounter|Burn of second degree of unspecified upper arm, subsequent encounter +C2871251|T037|AB|T22.239S|ICD10CM|Burn of second degree of unspecified upper arm, sequela|Burn of second degree of unspecified upper arm, sequela +C2871251|T037|PT|T22.239S|ICD10CM|Burn of second degree of unspecified upper arm, sequela|Burn of second degree of unspecified upper arm, sequela +C0562063|T037|AB|T22.24|ICD10CM|Burn of second degree of axilla|Burn of second degree of axilla +C0562063|T037|HT|T22.24|ICD10CM|Burn of second degree of axilla|Burn of second degree of axilla +C2229310|T037|AB|T22.241|ICD10CM|Burn of second degree of right axilla|Burn of second degree of right axilla +C2229310|T037|HT|T22.241|ICD10CM|Burn of second degree of right axilla|Burn of second degree of right axilla +C2871252|T037|PT|T22.241A|ICD10CM|Burn of second degree of right axilla, initial encounter|Burn of second degree of right axilla, initial encounter +C2871252|T037|AB|T22.241A|ICD10CM|Burn of second degree of right axilla, initial encounter|Burn of second degree of right axilla, initial encounter +C2871253|T037|PT|T22.241D|ICD10CM|Burn of second degree of right axilla, subsequent encounter|Burn of second degree of right axilla, subsequent encounter +C2871253|T037|AB|T22.241D|ICD10CM|Burn of second degree of right axilla, subsequent encounter|Burn of second degree of right axilla, subsequent encounter +C2871254|T037|PT|T22.241S|ICD10CM|Burn of second degree of right axilla, sequela|Burn of second degree of right axilla, sequela +C2871254|T037|AB|T22.241S|ICD10CM|Burn of second degree of right axilla, sequela|Burn of second degree of right axilla, sequela +C2229292|T037|AB|T22.242|ICD10CM|Burn of second degree of left axilla|Burn of second degree of left axilla +C2229292|T037|HT|T22.242|ICD10CM|Burn of second degree of left axilla|Burn of second degree of left axilla +C2871255|T037|AB|T22.242A|ICD10CM|Burn of second degree of left axilla, initial encounter|Burn of second degree of left axilla, initial encounter +C2871255|T037|PT|T22.242A|ICD10CM|Burn of second degree of left axilla, initial encounter|Burn of second degree of left axilla, initial encounter +C2871256|T037|PT|T22.242D|ICD10CM|Burn of second degree of left axilla, subsequent encounter|Burn of second degree of left axilla, subsequent encounter +C2871256|T037|AB|T22.242D|ICD10CM|Burn of second degree of left axilla, subsequent encounter|Burn of second degree of left axilla, subsequent encounter +C2871257|T037|PT|T22.242S|ICD10CM|Burn of second degree of left axilla, sequela|Burn of second degree of left axilla, sequela +C2871257|T037|AB|T22.242S|ICD10CM|Burn of second degree of left axilla, sequela|Burn of second degree of left axilla, sequela +C2871258|T037|AB|T22.249|ICD10CM|Burn of second degree of unspecified axilla|Burn of second degree of unspecified axilla +C2871258|T037|HT|T22.249|ICD10CM|Burn of second degree of unspecified axilla|Burn of second degree of unspecified axilla +C2871259|T037|AB|T22.249A|ICD10CM|Burn of second degree of unspecified axilla, init encntr|Burn of second degree of unspecified axilla, init encntr +C2871259|T037|PT|T22.249A|ICD10CM|Burn of second degree of unspecified axilla, initial encounter|Burn of second degree of unspecified axilla, initial encounter +C2871260|T037|AB|T22.249D|ICD10CM|Burn of second degree of unspecified axilla, subs encntr|Burn of second degree of unspecified axilla, subs encntr +C2871260|T037|PT|T22.249D|ICD10CM|Burn of second degree of unspecified axilla, subsequent encounter|Burn of second degree of unspecified axilla, subsequent encounter +C2871261|T037|PT|T22.249S|ICD10CM|Burn of second degree of unspecified axilla, sequela|Burn of second degree of unspecified axilla, sequela +C2871261|T037|AB|T22.249S|ICD10CM|Burn of second degree of unspecified axilla, sequela|Burn of second degree of unspecified axilla, sequela +C0562062|T037|AB|T22.25|ICD10CM|Burn of second degree of shoulder|Burn of second degree of shoulder +C0562062|T037|HT|T22.25|ICD10CM|Burn of second degree of shoulder|Burn of second degree of shoulder +C2229317|T037|AB|T22.251|ICD10CM|Burn of second degree of right shoulder|Burn of second degree of right shoulder +C2229317|T037|HT|T22.251|ICD10CM|Burn of second degree of right shoulder|Burn of second degree of right shoulder +C2871262|T037|PT|T22.251A|ICD10CM|Burn of second degree of right shoulder, initial encounter|Burn of second degree of right shoulder, initial encounter +C2871262|T037|AB|T22.251A|ICD10CM|Burn of second degree of right shoulder, initial encounter|Burn of second degree of right shoulder, initial encounter +C2871263|T037|AB|T22.251D|ICD10CM|Burn of second degree of right shoulder, subs encntr|Burn of second degree of right shoulder, subs encntr +C2871263|T037|PT|T22.251D|ICD10CM|Burn of second degree of right shoulder, subsequent encounter|Burn of second degree of right shoulder, subsequent encounter +C2871264|T037|PT|T22.251S|ICD10CM|Burn of second degree of right shoulder, sequela|Burn of second degree of right shoulder, sequela +C2871264|T037|AB|T22.251S|ICD10CM|Burn of second degree of right shoulder, sequela|Burn of second degree of right shoulder, sequela +C2229300|T037|AB|T22.252|ICD10CM|Burn of second degree of left shoulder|Burn of second degree of left shoulder +C2229300|T037|HT|T22.252|ICD10CM|Burn of second degree of left shoulder|Burn of second degree of left shoulder +C2871265|T037|PT|T22.252A|ICD10CM|Burn of second degree of left shoulder, initial encounter|Burn of second degree of left shoulder, initial encounter +C2871265|T037|AB|T22.252A|ICD10CM|Burn of second degree of left shoulder, initial encounter|Burn of second degree of left shoulder, initial encounter +C2871266|T037|AB|T22.252D|ICD10CM|Burn of second degree of left shoulder, subsequent encounter|Burn of second degree of left shoulder, subsequent encounter +C2871266|T037|PT|T22.252D|ICD10CM|Burn of second degree of left shoulder, subsequent encounter|Burn of second degree of left shoulder, subsequent encounter +C2871267|T037|PT|T22.252S|ICD10CM|Burn of second degree of left shoulder, sequela|Burn of second degree of left shoulder, sequela +C2871267|T037|AB|T22.252S|ICD10CM|Burn of second degree of left shoulder, sequela|Burn of second degree of left shoulder, sequela +C2871268|T037|AB|T22.259|ICD10CM|Burn of second degree of unspecified shoulder|Burn of second degree of unspecified shoulder +C2871268|T037|HT|T22.259|ICD10CM|Burn of second degree of unspecified shoulder|Burn of second degree of unspecified shoulder +C2871269|T037|AB|T22.259A|ICD10CM|Burn of second degree of unspecified shoulder, init encntr|Burn of second degree of unspecified shoulder, init encntr +C2871269|T037|PT|T22.259A|ICD10CM|Burn of second degree of unspecified shoulder, initial encounter|Burn of second degree of unspecified shoulder, initial encounter +C2871270|T037|AB|T22.259D|ICD10CM|Burn of second degree of unspecified shoulder, subs encntr|Burn of second degree of unspecified shoulder, subs encntr +C2871270|T037|PT|T22.259D|ICD10CM|Burn of second degree of unspecified shoulder, subsequent encounter|Burn of second degree of unspecified shoulder, subsequent encounter +C2871271|T037|PT|T22.259S|ICD10CM|Burn of second degree of unspecified shoulder, sequela|Burn of second degree of unspecified shoulder, sequela +C2871271|T037|AB|T22.259S|ICD10CM|Burn of second degree of unspecified shoulder, sequela|Burn of second degree of unspecified shoulder, sequela +C0562061|T037|AB|T22.26|ICD10CM|Burn of second degree of scapular region|Burn of second degree of scapular region +C0562061|T037|HT|T22.26|ICD10CM|Burn of second degree of scapular region|Burn of second degree of scapular region +C2871272|T037|AB|T22.261|ICD10CM|Burn of second degree of right scapular region|Burn of second degree of right scapular region +C2871272|T037|HT|T22.261|ICD10CM|Burn of second degree of right scapular region|Burn of second degree of right scapular region +C2871273|T037|AB|T22.261A|ICD10CM|Burn of second degree of right scapular region, init encntr|Burn of second degree of right scapular region, init encntr +C2871273|T037|PT|T22.261A|ICD10CM|Burn of second degree of right scapular region, initial encounter|Burn of second degree of right scapular region, initial encounter +C2871274|T037|AB|T22.261D|ICD10CM|Burn of second degree of right scapular region, subs encntr|Burn of second degree of right scapular region, subs encntr +C2871274|T037|PT|T22.261D|ICD10CM|Burn of second degree of right scapular region, subsequent encounter|Burn of second degree of right scapular region, subsequent encounter +C2871275|T037|AB|T22.261S|ICD10CM|Burn of second degree of right scapular region, sequela|Burn of second degree of right scapular region, sequela +C2871275|T037|PT|T22.261S|ICD10CM|Burn of second degree of right scapular region, sequela|Burn of second degree of right scapular region, sequela +C2871276|T037|AB|T22.262|ICD10CM|Burn of second degree of left scapular region|Burn of second degree of left scapular region +C2871276|T037|HT|T22.262|ICD10CM|Burn of second degree of left scapular region|Burn of second degree of left scapular region +C2871277|T037|AB|T22.262A|ICD10CM|Burn of second degree of left scapular region, init encntr|Burn of second degree of left scapular region, init encntr +C2871277|T037|PT|T22.262A|ICD10CM|Burn of second degree of left scapular region, initial encounter|Burn of second degree of left scapular region, initial encounter +C2871278|T037|AB|T22.262D|ICD10CM|Burn of second degree of left scapular region, subs encntr|Burn of second degree of left scapular region, subs encntr +C2871278|T037|PT|T22.262D|ICD10CM|Burn of second degree of left scapular region, subsequent encounter|Burn of second degree of left scapular region, subsequent encounter +C2871279|T037|PT|T22.262S|ICD10CM|Burn of second degree of left scapular region, sequela|Burn of second degree of left scapular region, sequela +C2871279|T037|AB|T22.262S|ICD10CM|Burn of second degree of left scapular region, sequela|Burn of second degree of left scapular region, sequela +C2871280|T037|AB|T22.269|ICD10CM|Burn of second degree of unspecified scapular region|Burn of second degree of unspecified scapular region +C2871280|T037|HT|T22.269|ICD10CM|Burn of second degree of unspecified scapular region|Burn of second degree of unspecified scapular region +C2871281|T037|AB|T22.269A|ICD10CM|Burn of second degree of unsp scapular region, init encntr|Burn of second degree of unsp scapular region, init encntr +C2871281|T037|PT|T22.269A|ICD10CM|Burn of second degree of unspecified scapular region, initial encounter|Burn of second degree of unspecified scapular region, initial encounter +C2871282|T037|AB|T22.269D|ICD10CM|Burn of second degree of unsp scapular region, subs encntr|Burn of second degree of unsp scapular region, subs encntr +C2871282|T037|PT|T22.269D|ICD10CM|Burn of second degree of unspecified scapular region, subsequent encounter|Burn of second degree of unspecified scapular region, subsequent encounter +C2871283|T037|AB|T22.269S|ICD10CM|Burn of second degree of unsp scapular region, sequela|Burn of second degree of unsp scapular region, sequela +C2871283|T037|PT|T22.269S|ICD10CM|Burn of second degree of unspecified scapular region, sequela|Burn of second degree of unspecified scapular region, sequela +C2871284|T037|AB|T22.29|ICD10CM|Burn of 2nd deg mul sites of shldr/up lmb, except wrs/hnd|Burn of 2nd deg mul sites of shldr/up lmb, except wrs/hnd +C2871284|T037|HT|T22.29|ICD10CM|Burn of second degree of multiple sites of shoulder and upper limb, except wrist and hand|Burn of second degree of multiple sites of shoulder and upper limb, except wrist and hand +C2871285|T037|AB|T22.291|ICD10CM|Burn 2nd deg mul sites of right shldr/up lmb, except wrs/hnd|Burn 2nd deg mul sites of right shldr/up lmb, except wrs/hnd +C2871285|T037|HT|T22.291|ICD10CM|Burn of second degree of multiple sites of right shoulder and upper limb, except wrist and hand|Burn of second degree of multiple sites of right shoulder and upper limb, except wrist and hand +C2871286|T037|AB|T22.291A|ICD10CM|Burn 2nd deg mul sites of r shldr/up lmb, ex wrs/hnd, init|Burn 2nd deg mul sites of r shldr/up lmb, ex wrs/hnd, init +C2871287|T037|AB|T22.291D|ICD10CM|Burn 2nd deg mul sites of r shldr/up lmb, ex wrs/hnd, subs|Burn 2nd deg mul sites of r shldr/up lmb, ex wrs/hnd, subs +C2871288|T037|AB|T22.291S|ICD10CM|Burn 2nd deg mul sites of r shldr/up lmb, ex wrs/hnd, sqla|Burn 2nd deg mul sites of r shldr/up lmb, ex wrs/hnd, sqla +C2871289|T037|AB|T22.292|ICD10CM|Burn 2nd deg mul sites of left shldr/up lmb, except wrs/hnd|Burn 2nd deg mul sites of left shldr/up lmb, except wrs/hnd +C2871289|T037|HT|T22.292|ICD10CM|Burn of second degree of multiple sites of left shoulder and upper limb, except wrist and hand|Burn of second degree of multiple sites of left shoulder and upper limb, except wrist and hand +C2871290|T037|AB|T22.292A|ICD10CM|Burn 2nd deg mul site of left shldr/up lmb, ex wrs/hnd, init|Burn 2nd deg mul site of left shldr/up lmb, ex wrs/hnd, init +C2871291|T037|AB|T22.292D|ICD10CM|Burn 2nd deg mul site of left shldr/up lmb, ex wrs/hnd, subs|Burn 2nd deg mul site of left shldr/up lmb, ex wrs/hnd, subs +C2871292|T037|AB|T22.292S|ICD10CM|Burn 2nd deg mul site of left shldr/up lmb, ex wrs/hnd, sqla|Burn 2nd deg mul site of left shldr/up lmb, ex wrs/hnd, sqla +C2871284|T037|AB|T22.299|ICD10CM|Burn of 2nd deg mul sites of shldr/up lmb, except wrs/hnd|Burn of 2nd deg mul sites of shldr/up lmb, except wrs/hnd +C2871294|T037|AB|T22.299A|ICD10CM|Burn 2nd deg mul sites of shldr/up lmb, except wrs/hnd, init|Burn 2nd deg mul sites of shldr/up lmb, except wrs/hnd, init +C2871295|T037|AB|T22.299D|ICD10CM|Burn 2nd deg mul sites of shldr/up lmb, except wrs/hnd, subs|Burn 2nd deg mul sites of shldr/up lmb, except wrs/hnd, subs +C2871296|T037|AB|T22.299S|ICD10CM|Burn 2nd deg mul sites of shldr/up lmb, except wrs/hnd, sqla|Burn 2nd deg mul sites of shldr/up lmb, except wrs/hnd, sqla +C0496039|T037|AB|T22.3|ICD10CM|Burn of third degree of shldr/up lmb, except wrist and hand|Burn of third degree of shldr/up lmb, except wrist and hand +C0496039|T037|HT|T22.3|ICD10CM|Burn of third degree of shoulder and upper limb, except wrist and hand|Burn of third degree of shoulder and upper limb, except wrist and hand +C0496039|T037|PT|T22.3|ICD10|Burn of third degree of shoulder and upper limb, except wrist and hand|Burn of third degree of shoulder and upper limb, except wrist and hand +C2871297|T037|HT|T22.30|ICD10CM|Burn of third degree of shoulder and upper limb, except wrist and hand, unspecified site|Burn of third degree of shoulder and upper limb, except wrist and hand, unspecified site +C2871297|T037|AB|T22.30|ICD10CM|Burn third degree of shldr/up lmb, except wrs/hnd, unsp site|Burn third degree of shldr/up lmb, except wrs/hnd, unsp site +C2871298|T037|AB|T22.30XA|ICD10CM|Burn third deg of shldr/up lmb, ex wrs/hnd, unsp site, init|Burn third deg of shldr/up lmb, ex wrs/hnd, unsp site, init +C2871299|T037|AB|T22.30XD|ICD10CM|Burn third deg of shldr/up lmb, ex wrs/hnd, unsp site, subs|Burn third deg of shldr/up lmb, ex wrs/hnd, unsp site, subs +C2871300|T037|PT|T22.30XS|ICD10CM|Burn of third degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela|Burn of third degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela +C2871300|T037|AB|T22.30XS|ICD10CM|Burn third deg of shldr/up lmb, ex wrs/hnd, unsp site, sqla|Burn third deg of shldr/up lmb, ex wrs/hnd, unsp site, sqla +C0433527|T037|AB|T22.31|ICD10CM|Burn of third degree of forearm|Burn of third degree of forearm +C0433527|T037|HT|T22.31|ICD10CM|Burn of third degree of forearm|Burn of third degree of forearm +C2083635|T037|AB|T22.311|ICD10CM|Burn of third degree of right forearm|Burn of third degree of right forearm +C2083635|T037|HT|T22.311|ICD10CM|Burn of third degree of right forearm|Burn of third degree of right forearm +C2871301|T037|PT|T22.311A|ICD10CM|Burn of third degree of right forearm, initial encounter|Burn of third degree of right forearm, initial encounter +C2871301|T037|AB|T22.311A|ICD10CM|Burn of third degree of right forearm, initial encounter|Burn of third degree of right forearm, initial encounter +C2871302|T037|PT|T22.311D|ICD10CM|Burn of third degree of right forearm, subsequent encounter|Burn of third degree of right forearm, subsequent encounter +C2871302|T037|AB|T22.311D|ICD10CM|Burn of third degree of right forearm, subsequent encounter|Burn of third degree of right forearm, subsequent encounter +C2871303|T037|PT|T22.311S|ICD10CM|Burn of third degree of right forearm, sequela|Burn of third degree of right forearm, sequela +C2871303|T037|AB|T22.311S|ICD10CM|Burn of third degree of right forearm, sequela|Burn of third degree of right forearm, sequela +C2083595|T037|AB|T22.312|ICD10CM|Burn of third degree of left forearm|Burn of third degree of left forearm +C2083595|T037|HT|T22.312|ICD10CM|Burn of third degree of left forearm|Burn of third degree of left forearm +C2871304|T037|AB|T22.312A|ICD10CM|Burn of third degree of left forearm, initial encounter|Burn of third degree of left forearm, initial encounter +C2871304|T037|PT|T22.312A|ICD10CM|Burn of third degree of left forearm, initial encounter|Burn of third degree of left forearm, initial encounter +C2871305|T037|PT|T22.312D|ICD10CM|Burn of third degree of left forearm, subsequent encounter|Burn of third degree of left forearm, subsequent encounter +C2871305|T037|AB|T22.312D|ICD10CM|Burn of third degree of left forearm, subsequent encounter|Burn of third degree of left forearm, subsequent encounter +C2871306|T037|PT|T22.312S|ICD10CM|Burn of third degree of left forearm, sequela|Burn of third degree of left forearm, sequela +C2871306|T037|AB|T22.312S|ICD10CM|Burn of third degree of left forearm, sequela|Burn of third degree of left forearm, sequela +C2871307|T037|AB|T22.319|ICD10CM|Burn of third degree of unspecified forearm|Burn of third degree of unspecified forearm +C2871307|T037|HT|T22.319|ICD10CM|Burn of third degree of unspecified forearm|Burn of third degree of unspecified forearm +C2871308|T037|AB|T22.319A|ICD10CM|Burn of third degree of unspecified forearm, init encntr|Burn of third degree of unspecified forearm, init encntr +C2871308|T037|PT|T22.319A|ICD10CM|Burn of third degree of unspecified forearm, initial encounter|Burn of third degree of unspecified forearm, initial encounter +C2871309|T037|AB|T22.319D|ICD10CM|Burn of third degree of unspecified forearm, subs encntr|Burn of third degree of unspecified forearm, subs encntr +C2871309|T037|PT|T22.319D|ICD10CM|Burn of third degree of unspecified forearm, subsequent encounter|Burn of third degree of unspecified forearm, subsequent encounter +C2871310|T037|PT|T22.319S|ICD10CM|Burn of third degree of unspecified forearm, sequela|Burn of third degree of unspecified forearm, sequela +C2871310|T037|AB|T22.319S|ICD10CM|Burn of third degree of unspecified forearm, sequela|Burn of third degree of unspecified forearm, sequela +C0433526|T037|AB|T22.32|ICD10CM|Burn of third degree of elbow|Burn of third degree of elbow +C0433526|T037|HT|T22.32|ICD10CM|Burn of third degree of elbow|Burn of third degree of elbow +C2083633|T037|AB|T22.321|ICD10CM|Burn of third degree of right elbow|Burn of third degree of right elbow +C2083633|T037|HT|T22.321|ICD10CM|Burn of third degree of right elbow|Burn of third degree of right elbow +C2871311|T037|PT|T22.321A|ICD10CM|Burn of third degree of right elbow, initial encounter|Burn of third degree of right elbow, initial encounter +C2871311|T037|AB|T22.321A|ICD10CM|Burn of third degree of right elbow, initial encounter|Burn of third degree of right elbow, initial encounter +C2871312|T037|PT|T22.321D|ICD10CM|Burn of third degree of right elbow, subsequent encounter|Burn of third degree of right elbow, subsequent encounter +C2871312|T037|AB|T22.321D|ICD10CM|Burn of third degree of right elbow, subsequent encounter|Burn of third degree of right elbow, subsequent encounter +C2871313|T037|PT|T22.321S|ICD10CM|Burn of third degree of right elbow, sequela|Burn of third degree of right elbow, sequela +C2871313|T037|AB|T22.321S|ICD10CM|Burn of third degree of right elbow, sequela|Burn of third degree of right elbow, sequela +C2083593|T037|AB|T22.322|ICD10CM|Burn of third degree of left elbow|Burn of third degree of left elbow +C2083593|T037|HT|T22.322|ICD10CM|Burn of third degree of left elbow|Burn of third degree of left elbow +C2871314|T037|PT|T22.322A|ICD10CM|Burn of third degree of left elbow, initial encounter|Burn of third degree of left elbow, initial encounter +C2871314|T037|AB|T22.322A|ICD10CM|Burn of third degree of left elbow, initial encounter|Burn of third degree of left elbow, initial encounter +C2871315|T037|PT|T22.322D|ICD10CM|Burn of third degree of left elbow, subsequent encounter|Burn of third degree of left elbow, subsequent encounter +C2871315|T037|AB|T22.322D|ICD10CM|Burn of third degree of left elbow, subsequent encounter|Burn of third degree of left elbow, subsequent encounter +C2871316|T037|PT|T22.322S|ICD10CM|Burn of third degree of left elbow, sequela|Burn of third degree of left elbow, sequela +C2871316|T037|AB|T22.322S|ICD10CM|Burn of third degree of left elbow, sequela|Burn of third degree of left elbow, sequela +C2871317|T037|AB|T22.329|ICD10CM|Burn of third degree of unspecified elbow|Burn of third degree of unspecified elbow +C2871317|T037|HT|T22.329|ICD10CM|Burn of third degree of unspecified elbow|Burn of third degree of unspecified elbow +C2871318|T037|AB|T22.329A|ICD10CM|Burn of third degree of unspecified elbow, initial encounter|Burn of third degree of unspecified elbow, initial encounter +C2871318|T037|PT|T22.329A|ICD10CM|Burn of third degree of unspecified elbow, initial encounter|Burn of third degree of unspecified elbow, initial encounter +C2871319|T037|AB|T22.329D|ICD10CM|Burn of third degree of unspecified elbow, subs encntr|Burn of third degree of unspecified elbow, subs encntr +C2871319|T037|PT|T22.329D|ICD10CM|Burn of third degree of unspecified elbow, subsequent encounter|Burn of third degree of unspecified elbow, subsequent encounter +C2871320|T037|PT|T22.329S|ICD10CM|Burn of third degree of unspecified elbow, sequela|Burn of third degree of unspecified elbow, sequela +C2871320|T037|AB|T22.329S|ICD10CM|Burn of third degree of unspecified elbow, sequela|Burn of third degree of unspecified elbow, sequela +C0433525|T037|AB|T22.33|ICD10CM|Burn of third degree of upper arm|Burn of third degree of upper arm +C0433525|T037|HT|T22.33|ICD10CM|Burn of third degree of upper arm|Burn of third degree of upper arm +C2083647|T037|AB|T22.331|ICD10CM|Burn of third degree of right upper arm|Burn of third degree of right upper arm +C2083647|T037|HT|T22.331|ICD10CM|Burn of third degree of right upper arm|Burn of third degree of right upper arm +C2871321|T037|PT|T22.331A|ICD10CM|Burn of third degree of right upper arm, initial encounter|Burn of third degree of right upper arm, initial encounter +C2871321|T037|AB|T22.331A|ICD10CM|Burn of third degree of right upper arm, initial encounter|Burn of third degree of right upper arm, initial encounter +C2871322|T037|AB|T22.331D|ICD10CM|Burn of third degree of right upper arm, subs encntr|Burn of third degree of right upper arm, subs encntr +C2871322|T037|PT|T22.331D|ICD10CM|Burn of third degree of right upper arm, subsequent encounter|Burn of third degree of right upper arm, subsequent encounter +C2871323|T037|PT|T22.331S|ICD10CM|Burn of third degree of right upper arm, sequela|Burn of third degree of right upper arm, sequela +C2871323|T037|AB|T22.331S|ICD10CM|Burn of third degree of right upper arm, sequela|Burn of third degree of right upper arm, sequela +C2083606|T037|AB|T22.332|ICD10CM|Burn of third degree of left upper arm|Burn of third degree of left upper arm +C2083606|T037|HT|T22.332|ICD10CM|Burn of third degree of left upper arm|Burn of third degree of left upper arm +C2871324|T037|PT|T22.332A|ICD10CM|Burn of third degree of left upper arm, initial encounter|Burn of third degree of left upper arm, initial encounter +C2871324|T037|AB|T22.332A|ICD10CM|Burn of third degree of left upper arm, initial encounter|Burn of third degree of left upper arm, initial encounter +C2871325|T037|AB|T22.332D|ICD10CM|Burn of third degree of left upper arm, subsequent encounter|Burn of third degree of left upper arm, subsequent encounter +C2871325|T037|PT|T22.332D|ICD10CM|Burn of third degree of left upper arm, subsequent encounter|Burn of third degree of left upper arm, subsequent encounter +C2871326|T037|PT|T22.332S|ICD10CM|Burn of third degree of left upper arm, sequela|Burn of third degree of left upper arm, sequela +C2871326|T037|AB|T22.332S|ICD10CM|Burn of third degree of left upper arm, sequela|Burn of third degree of left upper arm, sequela +C2871327|T037|AB|T22.339|ICD10CM|Burn of third degree of unspecified upper arm|Burn of third degree of unspecified upper arm +C2871327|T037|HT|T22.339|ICD10CM|Burn of third degree of unspecified upper arm|Burn of third degree of unspecified upper arm +C2871328|T037|AB|T22.339A|ICD10CM|Burn of third degree of unspecified upper arm, init encntr|Burn of third degree of unspecified upper arm, init encntr +C2871328|T037|PT|T22.339A|ICD10CM|Burn of third degree of unspecified upper arm, initial encounter|Burn of third degree of unspecified upper arm, initial encounter +C2871329|T037|AB|T22.339D|ICD10CM|Burn of third degree of unspecified upper arm, subs encntr|Burn of third degree of unspecified upper arm, subs encntr +C2871329|T037|PT|T22.339D|ICD10CM|Burn of third degree of unspecified upper arm, subsequent encounter|Burn of third degree of unspecified upper arm, subsequent encounter +C2871330|T037|PT|T22.339S|ICD10CM|Burn of third degree of unspecified upper arm, sequela|Burn of third degree of unspecified upper arm, sequela +C2871330|T037|AB|T22.339S|ICD10CM|Burn of third degree of unspecified upper arm, sequela|Burn of third degree of unspecified upper arm, sequela +C0274056|T037|AB|T22.34|ICD10CM|Burn of third degree of axilla|Burn of third degree of axilla +C0274056|T037|HT|T22.34|ICD10CM|Burn of third degree of axilla|Burn of third degree of axilla +C2083631|T037|AB|T22.341|ICD10CM|Burn of third degree of right axilla|Burn of third degree of right axilla +C2083631|T037|HT|T22.341|ICD10CM|Burn of third degree of right axilla|Burn of third degree of right axilla +C2871331|T037|AB|T22.341A|ICD10CM|Burn of third degree of right axilla, initial encounter|Burn of third degree of right axilla, initial encounter +C2871331|T037|PT|T22.341A|ICD10CM|Burn of third degree of right axilla, initial encounter|Burn of third degree of right axilla, initial encounter +C2871332|T037|PT|T22.341D|ICD10CM|Burn of third degree of right axilla, subsequent encounter|Burn of third degree of right axilla, subsequent encounter +C2871332|T037|AB|T22.341D|ICD10CM|Burn of third degree of right axilla, subsequent encounter|Burn of third degree of right axilla, subsequent encounter +C2871333|T037|PT|T22.341S|ICD10CM|Burn of third degree of right axilla, sequela|Burn of third degree of right axilla, sequela +C2871333|T037|AB|T22.341S|ICD10CM|Burn of third degree of right axilla, sequela|Burn of third degree of right axilla, sequela +C2083591|T037|AB|T22.342|ICD10CM|Burn of third degree of left axilla|Burn of third degree of left axilla +C2083591|T037|HT|T22.342|ICD10CM|Burn of third degree of left axilla|Burn of third degree of left axilla +C2871334|T037|PT|T22.342A|ICD10CM|Burn of third degree of left axilla, initial encounter|Burn of third degree of left axilla, initial encounter +C2871334|T037|AB|T22.342A|ICD10CM|Burn of third degree of left axilla, initial encounter|Burn of third degree of left axilla, initial encounter +C2871335|T037|PT|T22.342D|ICD10CM|Burn of third degree of left axilla, subsequent encounter|Burn of third degree of left axilla, subsequent encounter +C2871335|T037|AB|T22.342D|ICD10CM|Burn of third degree of left axilla, subsequent encounter|Burn of third degree of left axilla, subsequent encounter +C2871336|T037|PT|T22.342S|ICD10CM|Burn of third degree of left axilla, sequela|Burn of third degree of left axilla, sequela +C2871336|T037|AB|T22.342S|ICD10CM|Burn of third degree of left axilla, sequela|Burn of third degree of left axilla, sequela +C2871337|T037|AB|T22.349|ICD10CM|Burn of third degree of unspecified axilla|Burn of third degree of unspecified axilla +C2871337|T037|HT|T22.349|ICD10CM|Burn of third degree of unspecified axilla|Burn of third degree of unspecified axilla +C2871338|T037|AB|T22.349A|ICD10CM|Burn of third degree of unspecified axilla, init encntr|Burn of third degree of unspecified axilla, init encntr +C2871338|T037|PT|T22.349A|ICD10CM|Burn of third degree of unspecified axilla, initial encounter|Burn of third degree of unspecified axilla, initial encounter +C2871339|T037|AB|T22.349D|ICD10CM|Burn of third degree of unspecified axilla, subs encntr|Burn of third degree of unspecified axilla, subs encntr +C2871339|T037|PT|T22.349D|ICD10CM|Burn of third degree of unspecified axilla, subsequent encounter|Burn of third degree of unspecified axilla, subsequent encounter +C2871340|T037|PT|T22.349S|ICD10CM|Burn of third degree of unspecified axilla, sequela|Burn of third degree of unspecified axilla, sequela +C2871340|T037|AB|T22.349S|ICD10CM|Burn of third degree of unspecified axilla, sequela|Burn of third degree of unspecified axilla, sequela +C0433523|T037|AB|T22.35|ICD10CM|Burn of third degree of shoulder|Burn of third degree of shoulder +C0433523|T037|HT|T22.35|ICD10CM|Burn of third degree of shoulder|Burn of third degree of shoulder +C2083642|T037|AB|T22.351|ICD10CM|Burn of third degree of right shoulder|Burn of third degree of right shoulder +C2083642|T037|HT|T22.351|ICD10CM|Burn of third degree of right shoulder|Burn of third degree of right shoulder +C2871341|T037|PT|T22.351A|ICD10CM|Burn of third degree of right shoulder, initial encounter|Burn of third degree of right shoulder, initial encounter +C2871341|T037|AB|T22.351A|ICD10CM|Burn of third degree of right shoulder, initial encounter|Burn of third degree of right shoulder, initial encounter +C2871342|T037|AB|T22.351D|ICD10CM|Burn of third degree of right shoulder, subsequent encounter|Burn of third degree of right shoulder, subsequent encounter +C2871342|T037|PT|T22.351D|ICD10CM|Burn of third degree of right shoulder, subsequent encounter|Burn of third degree of right shoulder, subsequent encounter +C2871343|T037|PT|T22.351S|ICD10CM|Burn of third degree of right shoulder, sequela|Burn of third degree of right shoulder, sequela +C2871343|T037|AB|T22.351S|ICD10CM|Burn of third degree of right shoulder, sequela|Burn of third degree of right shoulder, sequela +C2083602|T037|AB|T22.352|ICD10CM|Burn of third degree of left shoulder|Burn of third degree of left shoulder +C2083602|T037|HT|T22.352|ICD10CM|Burn of third degree of left shoulder|Burn of third degree of left shoulder +C2871344|T037|PT|T22.352A|ICD10CM|Burn of third degree of left shoulder, initial encounter|Burn of third degree of left shoulder, initial encounter +C2871344|T037|AB|T22.352A|ICD10CM|Burn of third degree of left shoulder, initial encounter|Burn of third degree of left shoulder, initial encounter +C2871345|T037|PT|T22.352D|ICD10CM|Burn of third degree of left shoulder, subsequent encounter|Burn of third degree of left shoulder, subsequent encounter +C2871345|T037|AB|T22.352D|ICD10CM|Burn of third degree of left shoulder, subsequent encounter|Burn of third degree of left shoulder, subsequent encounter +C2871346|T037|PT|T22.352S|ICD10CM|Burn of third degree of left shoulder, sequela|Burn of third degree of left shoulder, sequela +C2871346|T037|AB|T22.352S|ICD10CM|Burn of third degree of left shoulder, sequela|Burn of third degree of left shoulder, sequela +C2871347|T037|AB|T22.359|ICD10CM|Burn of third degree of unspecified shoulder|Burn of third degree of unspecified shoulder +C2871347|T037|HT|T22.359|ICD10CM|Burn of third degree of unspecified shoulder|Burn of third degree of unspecified shoulder +C2871348|T037|AB|T22.359A|ICD10CM|Burn of third degree of unspecified shoulder, init encntr|Burn of third degree of unspecified shoulder, init encntr +C2871348|T037|PT|T22.359A|ICD10CM|Burn of third degree of unspecified shoulder, initial encounter|Burn of third degree of unspecified shoulder, initial encounter +C2871349|T037|AB|T22.359D|ICD10CM|Burn of third degree of unspecified shoulder, subs encntr|Burn of third degree of unspecified shoulder, subs encntr +C2871349|T037|PT|T22.359D|ICD10CM|Burn of third degree of unspecified shoulder, subsequent encounter|Burn of third degree of unspecified shoulder, subsequent encounter +C2871350|T037|PT|T22.359S|ICD10CM|Burn of third degree of unspecified shoulder, sequela|Burn of third degree of unspecified shoulder, sequela +C2871350|T037|AB|T22.359S|ICD10CM|Burn of third degree of unspecified shoulder, sequela|Burn of third degree of unspecified shoulder, sequela +C0433522|T037|AB|T22.36|ICD10CM|Burn of third degree of scapular region|Burn of third degree of scapular region +C0433522|T037|HT|T22.36|ICD10CM|Burn of third degree of scapular region|Burn of third degree of scapular region +C2083641|T037|AB|T22.361|ICD10CM|Burn of third degree of right scapular region|Burn of third degree of right scapular region +C2083641|T037|HT|T22.361|ICD10CM|Burn of third degree of right scapular region|Burn of third degree of right scapular region +C2871351|T037|AB|T22.361A|ICD10CM|Burn of third degree of right scapular region, init encntr|Burn of third degree of right scapular region, init encntr +C2871351|T037|PT|T22.361A|ICD10CM|Burn of third degree of right scapular region, initial encounter|Burn of third degree of right scapular region, initial encounter +C2871352|T037|AB|T22.361D|ICD10CM|Burn of third degree of right scapular region, subs encntr|Burn of third degree of right scapular region, subs encntr +C2871352|T037|PT|T22.361D|ICD10CM|Burn of third degree of right scapular region, subsequent encounter|Burn of third degree of right scapular region, subsequent encounter +C2871353|T037|PT|T22.361S|ICD10CM|Burn of third degree of right scapular region, sequela|Burn of third degree of right scapular region, sequela +C2871353|T037|AB|T22.361S|ICD10CM|Burn of third degree of right scapular region, sequela|Burn of third degree of right scapular region, sequela +C2083601|T037|AB|T22.362|ICD10CM|Burn of third degree of left scapular region|Burn of third degree of left scapular region +C2083601|T037|HT|T22.362|ICD10CM|Burn of third degree of left scapular region|Burn of third degree of left scapular region +C2871354|T037|AB|T22.362A|ICD10CM|Burn of third degree of left scapular region, init encntr|Burn of third degree of left scapular region, init encntr +C2871354|T037|PT|T22.362A|ICD10CM|Burn of third degree of left scapular region, initial encounter|Burn of third degree of left scapular region, initial encounter +C2871355|T037|AB|T22.362D|ICD10CM|Burn of third degree of left scapular region, subs encntr|Burn of third degree of left scapular region, subs encntr +C2871355|T037|PT|T22.362D|ICD10CM|Burn of third degree of left scapular region, subsequent encounter|Burn of third degree of left scapular region, subsequent encounter +C2871356|T037|PT|T22.362S|ICD10CM|Burn of third degree of left scapular region, sequela|Burn of third degree of left scapular region, sequela +C2871356|T037|AB|T22.362S|ICD10CM|Burn of third degree of left scapular region, sequela|Burn of third degree of left scapular region, sequela +C2871357|T037|AB|T22.369|ICD10CM|Burn of third degree of unspecified scapular region|Burn of third degree of unspecified scapular region +C2871357|T037|HT|T22.369|ICD10CM|Burn of third degree of unspecified scapular region|Burn of third degree of unspecified scapular region +C2871358|T037|AB|T22.369A|ICD10CM|Burn of third degree of unsp scapular region, init encntr|Burn of third degree of unsp scapular region, init encntr +C2871358|T037|PT|T22.369A|ICD10CM|Burn of third degree of unspecified scapular region, initial encounter|Burn of third degree of unspecified scapular region, initial encounter +C2871359|T037|AB|T22.369D|ICD10CM|Burn of third degree of unsp scapular region, subs encntr|Burn of third degree of unsp scapular region, subs encntr +C2871359|T037|PT|T22.369D|ICD10CM|Burn of third degree of unspecified scapular region, subsequent encounter|Burn of third degree of unspecified scapular region, subsequent encounter +C2871360|T037|AB|T22.369S|ICD10CM|Burn of third degree of unspecified scapular region, sequela|Burn of third degree of unspecified scapular region, sequela +C2871360|T037|PT|T22.369S|ICD10CM|Burn of third degree of unspecified scapular region, sequela|Burn of third degree of unspecified scapular region, sequela +C2871361|T037|AB|T22.39|ICD10CM|Burn of 3rd deg mu sites of shldr/up lmb, except wrs/hnd|Burn of 3rd deg mu sites of shldr/up lmb, except wrs/hnd +C2871361|T037|HT|T22.39|ICD10CM|Burn of third degree of multiple sites of shoulder and upper limb, except wrist and hand|Burn of third degree of multiple sites of shoulder and upper limb, except wrist and hand +C2871362|T037|AB|T22.391|ICD10CM|Burn 3rd deg mu sites of right shldr/up lmb, except wrs/hnd|Burn 3rd deg mu sites of right shldr/up lmb, except wrs/hnd +C2871362|T037|HT|T22.391|ICD10CM|Burn of third degree of multiple sites of right shoulder and upper limb, except wrist and hand|Burn of third degree of multiple sites of right shoulder and upper limb, except wrist and hand +C2871363|T037|AB|T22.391A|ICD10CM|Burn 3rd deg mu sites of r shldr/up lmb, ex wrs/hnd, init|Burn 3rd deg mu sites of r shldr/up lmb, ex wrs/hnd, init +C2871364|T037|AB|T22.391D|ICD10CM|Burn 3rd deg mu sites of r shldr/up lmb, ex wrs/hnd, subs|Burn 3rd deg mu sites of r shldr/up lmb, ex wrs/hnd, subs +C2871365|T037|AB|T22.391S|ICD10CM|Burn 3rd deg mu sites of r shldr/up lmb, ex wrs/hnd, sqla|Burn 3rd deg mu sites of r shldr/up lmb, ex wrs/hnd, sqla +C2871366|T037|AB|T22.392|ICD10CM|Burn 3rd deg mu sites of left shldr/up lmb, except wrs/hnd|Burn 3rd deg mu sites of left shldr/up lmb, except wrs/hnd +C2871366|T037|HT|T22.392|ICD10CM|Burn of third degree of multiple sites of left shoulder and upper limb, except wrist and hand|Burn of third degree of multiple sites of left shoulder and upper limb, except wrist and hand +C2871367|T037|AB|T22.392A|ICD10CM|Burn 3rd deg mu sites of left shldr/up lmb, ex wrs/hnd, init|Burn 3rd deg mu sites of left shldr/up lmb, ex wrs/hnd, init +C2871368|T037|AB|T22.392D|ICD10CM|Burn 3rd deg mu sites of left shldr/up lmb, ex wrs/hnd, subs|Burn 3rd deg mu sites of left shldr/up lmb, ex wrs/hnd, subs +C2871369|T037|AB|T22.392S|ICD10CM|Burn 3rd deg mu sites of left shldr/up lmb, ex wrs/hnd, sqla|Burn 3rd deg mu sites of left shldr/up lmb, ex wrs/hnd, sqla +C2871370|T037|AB|T22.399|ICD10CM|Burn of 3rd deg mu sites of shldr/up lmb, except wrs/hnd|Burn of 3rd deg mu sites of shldr/up lmb, except wrs/hnd +C2871370|T037|HT|T22.399|ICD10CM|Burn of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand|Burn of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand +C2871371|T037|AB|T22.399A|ICD10CM|Burn 3rd deg mu sites of shldr/up lmb, except wrs/hnd, init|Burn 3rd deg mu sites of shldr/up lmb, except wrs/hnd, init +C2871372|T037|AB|T22.399D|ICD10CM|Burn 3rd deg mu sites of shldr/up lmb, except wrs/hnd, subs|Burn 3rd deg mu sites of shldr/up lmb, except wrs/hnd, subs +C2871373|T037|AB|T22.399S|ICD10CM|Burn 3rd deg mu sites of shldr/up lmb, except wrs/hnd, sqla|Burn 3rd deg mu sites of shldr/up lmb, except wrs/hnd, sqla +C0452008|T037|AB|T22.4|ICD10CM|Corrosion of unsp degree of shldr/up lmb, except wrs/hnd|Corrosion of unsp degree of shldr/up lmb, except wrs/hnd +C0452008|T037|HT|T22.4|ICD10CM|Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand|Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand +C0452008|T037|PT|T22.4|ICD10|Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand|Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand +C2871374|T037|AB|T22.40|ICD10CM|Corros unsp deg of shldr/up lmb, except wrs/hnd, unsp site|Corros unsp deg of shldr/up lmb, except wrs/hnd, unsp site +C2871374|T037|HT|T22.40|ICD10CM|Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site|Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site +C2871375|T037|AB|T22.40XA|ICD10CM|Corros unsp deg of shldr/up lmb, ex wrs/hnd, unsp site, init|Corros unsp deg of shldr/up lmb, ex wrs/hnd, unsp site, init +C2871376|T037|AB|T22.40XD|ICD10CM|Corros unsp deg of shldr/up lmb, ex wrs/hnd, unsp site, subs|Corros unsp deg of shldr/up lmb, ex wrs/hnd, unsp site, subs +C2871377|T037|AB|T22.40XS|ICD10CM|Corros unsp deg of shldr/up lmb, ex wrs/hnd, unsp site, sqla|Corros unsp deg of shldr/up lmb, ex wrs/hnd, unsp site, sqla +C2871378|T037|AB|T22.41|ICD10CM|Corrosion of unspecified degree of forearm|Corrosion of unspecified degree of forearm +C2871378|T037|HT|T22.41|ICD10CM|Corrosion of unspecified degree of forearm|Corrosion of unspecified degree of forearm +C2871379|T037|AB|T22.411|ICD10CM|Corrosion of unspecified degree of right forearm|Corrosion of unspecified degree of right forearm +C2871379|T037|HT|T22.411|ICD10CM|Corrosion of unspecified degree of right forearm|Corrosion of unspecified degree of right forearm +C2871380|T037|AB|T22.411A|ICD10CM|Corrosion of unsp degree of right forearm, init encntr|Corrosion of unsp degree of right forearm, init encntr +C2871380|T037|PT|T22.411A|ICD10CM|Corrosion of unspecified degree of right forearm, initial encounter|Corrosion of unspecified degree of right forearm, initial encounter +C2871381|T037|AB|T22.411D|ICD10CM|Corrosion of unsp degree of right forearm, subs encntr|Corrosion of unsp degree of right forearm, subs encntr +C2871381|T037|PT|T22.411D|ICD10CM|Corrosion of unspecified degree of right forearm, subsequent encounter|Corrosion of unspecified degree of right forearm, subsequent encounter +C2871382|T037|PT|T22.411S|ICD10CM|Corrosion of unspecified degree of right forearm, sequela|Corrosion of unspecified degree of right forearm, sequela +C2871382|T037|AB|T22.411S|ICD10CM|Corrosion of unspecified degree of right forearm, sequela|Corrosion of unspecified degree of right forearm, sequela +C2871383|T037|AB|T22.412|ICD10CM|Corrosion of unspecified degree of left forearm|Corrosion of unspecified degree of left forearm +C2871383|T037|HT|T22.412|ICD10CM|Corrosion of unspecified degree of left forearm|Corrosion of unspecified degree of left forearm +C2871384|T037|AB|T22.412A|ICD10CM|Corrosion of unspecified degree of left forearm, init encntr|Corrosion of unspecified degree of left forearm, init encntr +C2871384|T037|PT|T22.412A|ICD10CM|Corrosion of unspecified degree of left forearm, initial encounter|Corrosion of unspecified degree of left forearm, initial encounter +C2871385|T037|AB|T22.412D|ICD10CM|Corrosion of unspecified degree of left forearm, subs encntr|Corrosion of unspecified degree of left forearm, subs encntr +C2871385|T037|PT|T22.412D|ICD10CM|Corrosion of unspecified degree of left forearm, subsequent encounter|Corrosion of unspecified degree of left forearm, subsequent encounter +C2871386|T037|PT|T22.412S|ICD10CM|Corrosion of unspecified degree of left forearm, sequela|Corrosion of unspecified degree of left forearm, sequela +C2871386|T037|AB|T22.412S|ICD10CM|Corrosion of unspecified degree of left forearm, sequela|Corrosion of unspecified degree of left forearm, sequela +C2871387|T037|AB|T22.419|ICD10CM|Corrosion of unspecified degree of unspecified forearm|Corrosion of unspecified degree of unspecified forearm +C2871387|T037|HT|T22.419|ICD10CM|Corrosion of unspecified degree of unspecified forearm|Corrosion of unspecified degree of unspecified forearm +C2871388|T037|AB|T22.419A|ICD10CM|Corrosion of unsp degree of unspecified forearm, init encntr|Corrosion of unsp degree of unspecified forearm, init encntr +C2871388|T037|PT|T22.419A|ICD10CM|Corrosion of unspecified degree of unspecified forearm, initial encounter|Corrosion of unspecified degree of unspecified forearm, initial encounter +C2871389|T037|AB|T22.419D|ICD10CM|Corrosion of unsp degree of unspecified forearm, subs encntr|Corrosion of unsp degree of unspecified forearm, subs encntr +C2871389|T037|PT|T22.419D|ICD10CM|Corrosion of unspecified degree of unspecified forearm, subsequent encounter|Corrosion of unspecified degree of unspecified forearm, subsequent encounter +C2871390|T037|AB|T22.419S|ICD10CM|Corrosion of unsp degree of unspecified forearm, sequela|Corrosion of unsp degree of unspecified forearm, sequela +C2871390|T037|PT|T22.419S|ICD10CM|Corrosion of unspecified degree of unspecified forearm, sequela|Corrosion of unspecified degree of unspecified forearm, sequela +C2871391|T037|AB|T22.42|ICD10CM|Corrosion of unspecified degree of elbow|Corrosion of unspecified degree of elbow +C2871391|T037|HT|T22.42|ICD10CM|Corrosion of unspecified degree of elbow|Corrosion of unspecified degree of elbow +C2871392|T037|AB|T22.421|ICD10CM|Corrosion of unspecified degree of right elbow|Corrosion of unspecified degree of right elbow +C2871392|T037|HT|T22.421|ICD10CM|Corrosion of unspecified degree of right elbow|Corrosion of unspecified degree of right elbow +C2871393|T037|AB|T22.421A|ICD10CM|Corrosion of unspecified degree of right elbow, init encntr|Corrosion of unspecified degree of right elbow, init encntr +C2871393|T037|PT|T22.421A|ICD10CM|Corrosion of unspecified degree of right elbow, initial encounter|Corrosion of unspecified degree of right elbow, initial encounter +C2871394|T037|AB|T22.421D|ICD10CM|Corrosion of unspecified degree of right elbow, subs encntr|Corrosion of unspecified degree of right elbow, subs encntr +C2871394|T037|PT|T22.421D|ICD10CM|Corrosion of unspecified degree of right elbow, subsequent encounter|Corrosion of unspecified degree of right elbow, subsequent encounter +C2871395|T037|PT|T22.421S|ICD10CM|Corrosion of unspecified degree of right elbow, sequela|Corrosion of unspecified degree of right elbow, sequela +C2871395|T037|AB|T22.421S|ICD10CM|Corrosion of unspecified degree of right elbow, sequela|Corrosion of unspecified degree of right elbow, sequela +C2871396|T037|AB|T22.422|ICD10CM|Corrosion of unspecified degree of left elbow|Corrosion of unspecified degree of left elbow +C2871396|T037|HT|T22.422|ICD10CM|Corrosion of unspecified degree of left elbow|Corrosion of unspecified degree of left elbow +C2871397|T037|AB|T22.422A|ICD10CM|Corrosion of unspecified degree of left elbow, init encntr|Corrosion of unspecified degree of left elbow, init encntr +C2871397|T037|PT|T22.422A|ICD10CM|Corrosion of unspecified degree of left elbow, initial encounter|Corrosion of unspecified degree of left elbow, initial encounter +C2871398|T037|AB|T22.422D|ICD10CM|Corrosion of unspecified degree of left elbow, subs encntr|Corrosion of unspecified degree of left elbow, subs encntr +C2871398|T037|PT|T22.422D|ICD10CM|Corrosion of unspecified degree of left elbow, subsequent encounter|Corrosion of unspecified degree of left elbow, subsequent encounter +C2871399|T037|PT|T22.422S|ICD10CM|Corrosion of unspecified degree of left elbow, sequela|Corrosion of unspecified degree of left elbow, sequela +C2871399|T037|AB|T22.422S|ICD10CM|Corrosion of unspecified degree of left elbow, sequela|Corrosion of unspecified degree of left elbow, sequela +C2871400|T037|AB|T22.429|ICD10CM|Corrosion of unspecified degree of unspecified elbow|Corrosion of unspecified degree of unspecified elbow +C2871400|T037|HT|T22.429|ICD10CM|Corrosion of unspecified degree of unspecified elbow|Corrosion of unspecified degree of unspecified elbow +C2871401|T037|AB|T22.429A|ICD10CM|Corrosion of unsp degree of unspecified elbow, init encntr|Corrosion of unsp degree of unspecified elbow, init encntr +C2871401|T037|PT|T22.429A|ICD10CM|Corrosion of unspecified degree of unspecified elbow, initial encounter|Corrosion of unspecified degree of unspecified elbow, initial encounter +C2871402|T037|AB|T22.429D|ICD10CM|Corrosion of unsp degree of unspecified elbow, subs encntr|Corrosion of unsp degree of unspecified elbow, subs encntr +C2871402|T037|PT|T22.429D|ICD10CM|Corrosion of unspecified degree of unspecified elbow, subsequent encounter|Corrosion of unspecified degree of unspecified elbow, subsequent encounter +C2871403|T037|AB|T22.429S|ICD10CM|Corrosion of unsp degree of unspecified elbow, sequela|Corrosion of unsp degree of unspecified elbow, sequela +C2871403|T037|PT|T22.429S|ICD10CM|Corrosion of unspecified degree of unspecified elbow, sequela|Corrosion of unspecified degree of unspecified elbow, sequela +C2871404|T037|AB|T22.43|ICD10CM|Corrosion of unspecified degree of upper arm|Corrosion of unspecified degree of upper arm +C2871404|T037|HT|T22.43|ICD10CM|Corrosion of unspecified degree of upper arm|Corrosion of unspecified degree of upper arm +C2871405|T037|AB|T22.431|ICD10CM|Corrosion of unspecified degree of right upper arm|Corrosion of unspecified degree of right upper arm +C2871405|T037|HT|T22.431|ICD10CM|Corrosion of unspecified degree of right upper arm|Corrosion of unspecified degree of right upper arm +C2871406|T037|AB|T22.431A|ICD10CM|Corrosion of unsp degree of right upper arm, init encntr|Corrosion of unsp degree of right upper arm, init encntr +C2871406|T037|PT|T22.431A|ICD10CM|Corrosion of unspecified degree of right upper arm, initial encounter|Corrosion of unspecified degree of right upper arm, initial encounter +C2871407|T037|AB|T22.431D|ICD10CM|Corrosion of unsp degree of right upper arm, subs encntr|Corrosion of unsp degree of right upper arm, subs encntr +C2871407|T037|PT|T22.431D|ICD10CM|Corrosion of unspecified degree of right upper arm, subsequent encounter|Corrosion of unspecified degree of right upper arm, subsequent encounter +C2871408|T037|PT|T22.431S|ICD10CM|Corrosion of unspecified degree of right upper arm, sequela|Corrosion of unspecified degree of right upper arm, sequela +C2871408|T037|AB|T22.431S|ICD10CM|Corrosion of unspecified degree of right upper arm, sequela|Corrosion of unspecified degree of right upper arm, sequela +C2871409|T037|AB|T22.432|ICD10CM|Corrosion of unspecified degree of left upper arm|Corrosion of unspecified degree of left upper arm +C2871409|T037|HT|T22.432|ICD10CM|Corrosion of unspecified degree of left upper arm|Corrosion of unspecified degree of left upper arm +C2871410|T037|AB|T22.432A|ICD10CM|Corrosion of unsp degree of left upper arm, init encntr|Corrosion of unsp degree of left upper arm, init encntr +C2871410|T037|PT|T22.432A|ICD10CM|Corrosion of unspecified degree of left upper arm, initial encounter|Corrosion of unspecified degree of left upper arm, initial encounter +C2871411|T037|AB|T22.432D|ICD10CM|Corrosion of unsp degree of left upper arm, subs encntr|Corrosion of unsp degree of left upper arm, subs encntr +C2871411|T037|PT|T22.432D|ICD10CM|Corrosion of unspecified degree of left upper arm, subsequent encounter|Corrosion of unspecified degree of left upper arm, subsequent encounter +C2871412|T037|PT|T22.432S|ICD10CM|Corrosion of unspecified degree of left upper arm, sequela|Corrosion of unspecified degree of left upper arm, sequela +C2871412|T037|AB|T22.432S|ICD10CM|Corrosion of unspecified degree of left upper arm, sequela|Corrosion of unspecified degree of left upper arm, sequela +C2871413|T037|AB|T22.439|ICD10CM|Corrosion of unspecified degree of unspecified upper arm|Corrosion of unspecified degree of unspecified upper arm +C2871413|T037|HT|T22.439|ICD10CM|Corrosion of unspecified degree of unspecified upper arm|Corrosion of unspecified degree of unspecified upper arm +C2871414|T037|AB|T22.439A|ICD10CM|Corrosion of unsp degree of unsp upper arm, init encntr|Corrosion of unsp degree of unsp upper arm, init encntr +C2871414|T037|PT|T22.439A|ICD10CM|Corrosion of unspecified degree of unspecified upper arm, initial encounter|Corrosion of unspecified degree of unspecified upper arm, initial encounter +C2871415|T037|AB|T22.439D|ICD10CM|Corrosion of unsp degree of unsp upper arm, subs encntr|Corrosion of unsp degree of unsp upper arm, subs encntr +C2871415|T037|PT|T22.439D|ICD10CM|Corrosion of unspecified degree of unspecified upper arm, subsequent encounter|Corrosion of unspecified degree of unspecified upper arm, subsequent encounter +C2871416|T037|AB|T22.439S|ICD10CM|Corrosion of unsp degree of unspecified upper arm, sequela|Corrosion of unsp degree of unspecified upper arm, sequela +C2871416|T037|PT|T22.439S|ICD10CM|Corrosion of unspecified degree of unspecified upper arm, sequela|Corrosion of unspecified degree of unspecified upper arm, sequela +C2871417|T037|AB|T22.44|ICD10CM|Corrosion of unspecified degree of axilla|Corrosion of unspecified degree of axilla +C2871417|T037|HT|T22.44|ICD10CM|Corrosion of unspecified degree of axilla|Corrosion of unspecified degree of axilla +C2871418|T037|AB|T22.441|ICD10CM|Corrosion of unspecified degree of right axilla|Corrosion of unspecified degree of right axilla +C2871418|T037|HT|T22.441|ICD10CM|Corrosion of unspecified degree of right axilla|Corrosion of unspecified degree of right axilla +C2871419|T037|AB|T22.441A|ICD10CM|Corrosion of unspecified degree of right axilla, init encntr|Corrosion of unspecified degree of right axilla, init encntr +C2871419|T037|PT|T22.441A|ICD10CM|Corrosion of unspecified degree of right axilla, initial encounter|Corrosion of unspecified degree of right axilla, initial encounter +C2871420|T037|AB|T22.441D|ICD10CM|Corrosion of unspecified degree of right axilla, subs encntr|Corrosion of unspecified degree of right axilla, subs encntr +C2871420|T037|PT|T22.441D|ICD10CM|Corrosion of unspecified degree of right axilla, subsequent encounter|Corrosion of unspecified degree of right axilla, subsequent encounter +C2871421|T037|PT|T22.441S|ICD10CM|Corrosion of unspecified degree of right axilla, sequela|Corrosion of unspecified degree of right axilla, sequela +C2871421|T037|AB|T22.441S|ICD10CM|Corrosion of unspecified degree of right axilla, sequela|Corrosion of unspecified degree of right axilla, sequela +C2871422|T037|AB|T22.442|ICD10CM|Corrosion of unspecified degree of left axilla|Corrosion of unspecified degree of left axilla +C2871422|T037|HT|T22.442|ICD10CM|Corrosion of unspecified degree of left axilla|Corrosion of unspecified degree of left axilla +C2871423|T037|AB|T22.442A|ICD10CM|Corrosion of unspecified degree of left axilla, init encntr|Corrosion of unspecified degree of left axilla, init encntr +C2871423|T037|PT|T22.442A|ICD10CM|Corrosion of unspecified degree of left axilla, initial encounter|Corrosion of unspecified degree of left axilla, initial encounter +C2871424|T037|AB|T22.442D|ICD10CM|Corrosion of unspecified degree of left axilla, subs encntr|Corrosion of unspecified degree of left axilla, subs encntr +C2871424|T037|PT|T22.442D|ICD10CM|Corrosion of unspecified degree of left axilla, subsequent encounter|Corrosion of unspecified degree of left axilla, subsequent encounter +C2871425|T037|PT|T22.442S|ICD10CM|Corrosion of unspecified degree of left axilla, sequela|Corrosion of unspecified degree of left axilla, sequela +C2871425|T037|AB|T22.442S|ICD10CM|Corrosion of unspecified degree of left axilla, sequela|Corrosion of unspecified degree of left axilla, sequela +C2871426|T037|AB|T22.449|ICD10CM|Corrosion of unspecified degree of unspecified axilla|Corrosion of unspecified degree of unspecified axilla +C2871426|T037|HT|T22.449|ICD10CM|Corrosion of unspecified degree of unspecified axilla|Corrosion of unspecified degree of unspecified axilla +C2871427|T037|AB|T22.449A|ICD10CM|Corrosion of unsp degree of unspecified axilla, init encntr|Corrosion of unsp degree of unspecified axilla, init encntr +C2871427|T037|PT|T22.449A|ICD10CM|Corrosion of unspecified degree of unspecified axilla, initial encounter|Corrosion of unspecified degree of unspecified axilla, initial encounter +C2871428|T037|AB|T22.449D|ICD10CM|Corrosion of unsp degree of unspecified axilla, subs encntr|Corrosion of unsp degree of unspecified axilla, subs encntr +C2871428|T037|PT|T22.449D|ICD10CM|Corrosion of unspecified degree of unspecified axilla, subsequent encounter|Corrosion of unspecified degree of unspecified axilla, subsequent encounter +C2871429|T037|AB|T22.449S|ICD10CM|Corrosion of unsp degree of unspecified axilla, sequela|Corrosion of unsp degree of unspecified axilla, sequela +C2871429|T037|PT|T22.449S|ICD10CM|Corrosion of unspecified degree of unspecified axilla, sequela|Corrosion of unspecified degree of unspecified axilla, sequela +C2871430|T037|AB|T22.45|ICD10CM|Corrosion of unspecified degree of shoulder|Corrosion of unspecified degree of shoulder +C2871430|T037|HT|T22.45|ICD10CM|Corrosion of unspecified degree of shoulder|Corrosion of unspecified degree of shoulder +C2871431|T037|AB|T22.451|ICD10CM|Corrosion of unspecified degree of right shoulder|Corrosion of unspecified degree of right shoulder +C2871431|T037|HT|T22.451|ICD10CM|Corrosion of unspecified degree of right shoulder|Corrosion of unspecified degree of right shoulder +C2871432|T037|AB|T22.451A|ICD10CM|Corrosion of unsp degree of right shoulder, init encntr|Corrosion of unsp degree of right shoulder, init encntr +C2871432|T037|PT|T22.451A|ICD10CM|Corrosion of unspecified degree of right shoulder, initial encounter|Corrosion of unspecified degree of right shoulder, initial encounter +C2871433|T037|AB|T22.451D|ICD10CM|Corrosion of unsp degree of right shoulder, subs encntr|Corrosion of unsp degree of right shoulder, subs encntr +C2871433|T037|PT|T22.451D|ICD10CM|Corrosion of unspecified degree of right shoulder, subsequent encounter|Corrosion of unspecified degree of right shoulder, subsequent encounter +C2871434|T037|PT|T22.451S|ICD10CM|Corrosion of unspecified degree of right shoulder, sequela|Corrosion of unspecified degree of right shoulder, sequela +C2871434|T037|AB|T22.451S|ICD10CM|Corrosion of unspecified degree of right shoulder, sequela|Corrosion of unspecified degree of right shoulder, sequela +C2871435|T037|AB|T22.452|ICD10CM|Corrosion of unspecified degree of left shoulder|Corrosion of unspecified degree of left shoulder +C2871435|T037|HT|T22.452|ICD10CM|Corrosion of unspecified degree of left shoulder|Corrosion of unspecified degree of left shoulder +C2871436|T037|AB|T22.452A|ICD10CM|Corrosion of unsp degree of left shoulder, init encntr|Corrosion of unsp degree of left shoulder, init encntr +C2871436|T037|PT|T22.452A|ICD10CM|Corrosion of unspecified degree of left shoulder, initial encounter|Corrosion of unspecified degree of left shoulder, initial encounter +C2871437|T037|AB|T22.452D|ICD10CM|Corrosion of unsp degree of left shoulder, subs encntr|Corrosion of unsp degree of left shoulder, subs encntr +C2871437|T037|PT|T22.452D|ICD10CM|Corrosion of unspecified degree of left shoulder, subsequent encounter|Corrosion of unspecified degree of left shoulder, subsequent encounter +C2871438|T037|PT|T22.452S|ICD10CM|Corrosion of unspecified degree of left shoulder, sequela|Corrosion of unspecified degree of left shoulder, sequela +C2871438|T037|AB|T22.452S|ICD10CM|Corrosion of unspecified degree of left shoulder, sequela|Corrosion of unspecified degree of left shoulder, sequela +C2871439|T037|AB|T22.459|ICD10CM|Corrosion of unspecified degree of unspecified shoulder|Corrosion of unspecified degree of unspecified shoulder +C2871439|T037|HT|T22.459|ICD10CM|Corrosion of unspecified degree of unspecified shoulder|Corrosion of unspecified degree of unspecified shoulder +C2871440|T037|AB|T22.459A|ICD10CM|Corrosion of unsp degree of unsp shoulder, init encntr|Corrosion of unsp degree of unsp shoulder, init encntr +C2871440|T037|PT|T22.459A|ICD10CM|Corrosion of unspecified degree of unspecified shoulder, initial encounter|Corrosion of unspecified degree of unspecified shoulder, initial encounter +C2871441|T037|AB|T22.459D|ICD10CM|Corrosion of unsp degree of unsp shoulder, subs encntr|Corrosion of unsp degree of unsp shoulder, subs encntr +C2871441|T037|PT|T22.459D|ICD10CM|Corrosion of unspecified degree of unspecified shoulder, subsequent encounter|Corrosion of unspecified degree of unspecified shoulder, subsequent encounter +C2871442|T037|AB|T22.459S|ICD10CM|Corrosion of unsp degree of unspecified shoulder, sequela|Corrosion of unsp degree of unspecified shoulder, sequela +C2871442|T037|PT|T22.459S|ICD10CM|Corrosion of unspecified degree of unspecified shoulder, sequela|Corrosion of unspecified degree of unspecified shoulder, sequela +C2871443|T037|AB|T22.46|ICD10CM|Corrosion of unspecified degree of scapular region|Corrosion of unspecified degree of scapular region +C2871443|T037|HT|T22.46|ICD10CM|Corrosion of unspecified degree of scapular region|Corrosion of unspecified degree of scapular region +C2871444|T037|AB|T22.461|ICD10CM|Corrosion of unspecified degree of right scapular region|Corrosion of unspecified degree of right scapular region +C2871444|T037|HT|T22.461|ICD10CM|Corrosion of unspecified degree of right scapular region|Corrosion of unspecified degree of right scapular region +C2871445|T037|AB|T22.461A|ICD10CM|Corrosion of unsp degree of right scapular region, init|Corrosion of unsp degree of right scapular region, init +C2871445|T037|PT|T22.461A|ICD10CM|Corrosion of unspecified degree of right scapular region, initial encounter|Corrosion of unspecified degree of right scapular region, initial encounter +C2871446|T037|AB|T22.461D|ICD10CM|Corrosion of unsp degree of right scapular region, subs|Corrosion of unsp degree of right scapular region, subs +C2871446|T037|PT|T22.461D|ICD10CM|Corrosion of unspecified degree of right scapular region, subsequent encounter|Corrosion of unspecified degree of right scapular region, subsequent encounter +C2871447|T037|AB|T22.461S|ICD10CM|Corrosion of unsp degree of right scapular region, sequela|Corrosion of unsp degree of right scapular region, sequela +C2871447|T037|PT|T22.461S|ICD10CM|Corrosion of unspecified degree of right scapular region, sequela|Corrosion of unspecified degree of right scapular region, sequela +C2871448|T037|AB|T22.462|ICD10CM|Corrosion of unspecified degree of left scapular region|Corrosion of unspecified degree of left scapular region +C2871448|T037|HT|T22.462|ICD10CM|Corrosion of unspecified degree of left scapular region|Corrosion of unspecified degree of left scapular region +C2871449|T037|AB|T22.462A|ICD10CM|Corrosion of unsp degree of left scapular region, init|Corrosion of unsp degree of left scapular region, init +C2871449|T037|PT|T22.462A|ICD10CM|Corrosion of unspecified degree of left scapular region, initial encounter|Corrosion of unspecified degree of left scapular region, initial encounter +C2871450|T037|AB|T22.462D|ICD10CM|Corrosion of unsp degree of left scapular region, subs|Corrosion of unsp degree of left scapular region, subs +C2871450|T037|PT|T22.462D|ICD10CM|Corrosion of unspecified degree of left scapular region, subsequent encounter|Corrosion of unspecified degree of left scapular region, subsequent encounter +C2871451|T037|AB|T22.462S|ICD10CM|Corrosion of unsp degree of left scapular region, sequela|Corrosion of unsp degree of left scapular region, sequela +C2871451|T037|PT|T22.462S|ICD10CM|Corrosion of unspecified degree of left scapular region, sequela|Corrosion of unspecified degree of left scapular region, sequela +C2871452|T037|AB|T22.469|ICD10CM|Corrosion of unsp degree of unspecified scapular region|Corrosion of unsp degree of unspecified scapular region +C2871452|T037|HT|T22.469|ICD10CM|Corrosion of unspecified degree of unspecified scapular region|Corrosion of unspecified degree of unspecified scapular region +C2871453|T037|AB|T22.469A|ICD10CM|Corrosion of unsp degree of unsp scapular region, init|Corrosion of unsp degree of unsp scapular region, init +C2871453|T037|PT|T22.469A|ICD10CM|Corrosion of unspecified degree of unspecified scapular region, initial encounter|Corrosion of unspecified degree of unspecified scapular region, initial encounter +C2871454|T037|AB|T22.469D|ICD10CM|Corrosion of unsp degree of unsp scapular region, subs|Corrosion of unsp degree of unsp scapular region, subs +C2871454|T037|PT|T22.469D|ICD10CM|Corrosion of unspecified degree of unspecified scapular region, subsequent encounter|Corrosion of unspecified degree of unspecified scapular region, subsequent encounter +C2871455|T037|AB|T22.469S|ICD10CM|Corrosion of unsp degree of unsp scapular region, sequela|Corrosion of unsp degree of unsp scapular region, sequela +C2871455|T037|PT|T22.469S|ICD10CM|Corrosion of unspecified degree of unspecified scapular region, sequela|Corrosion of unspecified degree of unspecified scapular region, sequela +C2871456|T037|AB|T22.49|ICD10CM|Corros unsp deg mult sites of shldr/up lmb, except wrs/hnd|Corros unsp deg mult sites of shldr/up lmb, except wrs/hnd +C2871456|T037|HT|T22.49|ICD10CM|Corrosion of unspecified degree of multiple sites of shoulder and upper limb, except wrist and hand|Corrosion of unspecified degree of multiple sites of shoulder and upper limb, except wrist and hand +C2871457|T037|AB|T22.491|ICD10CM|Corros unsp deg mult sites of right shldr/up lmb, ex wrs/hnd|Corros unsp deg mult sites of right shldr/up lmb, ex wrs/hnd +C2871458|T037|AB|T22.491A|ICD10CM|Corros unsp deg mult site of r shldr/up lmb,ex wrs/hnd, init|Corros unsp deg mult site of r shldr/up lmb,ex wrs/hnd, init +C2871459|T037|AB|T22.491D|ICD10CM|Corros unsp deg mult site of r shldr/up lmb,ex wrs/hnd, subs|Corros unsp deg mult site of r shldr/up lmb,ex wrs/hnd, subs +C2871460|T037|AB|T22.491S|ICD10CM|Corros unsp deg mult site of r shldr/up lmb,ex wrs/hnd, sqla|Corros unsp deg mult site of r shldr/up lmb,ex wrs/hnd, sqla +C2871461|T037|AB|T22.492|ICD10CM|Corros unsp deg mult sites of left shldr/up lmb, ex wrs/hnd|Corros unsp deg mult sites of left shldr/up lmb, ex wrs/hnd +C2871462|T037|AB|T22.492A|ICD10CM|Corros unsp deg mult site of l shldr/up lmb,ex wrs/hnd, init|Corros unsp deg mult site of l shldr/up lmb,ex wrs/hnd, init +C2871463|T037|AB|T22.492D|ICD10CM|Corros unsp deg mult site of l shldr/up lmb,ex wrs/hnd, subs|Corros unsp deg mult site of l shldr/up lmb,ex wrs/hnd, subs +C2871464|T037|AB|T22.492S|ICD10CM|Corros unsp deg mult site of l shldr/up lmb,ex wrs/hnd, sqla|Corros unsp deg mult site of l shldr/up lmb,ex wrs/hnd, sqla +C2871456|T037|AB|T22.499|ICD10CM|Corros unsp deg mult sites of shldr/up lmb, except wrs/hnd|Corros unsp deg mult sites of shldr/up lmb, except wrs/hnd +C2871466|T037|AB|T22.499A|ICD10CM|Corros unsp deg mult sites of shldr/up lmb, ex wrs/hnd, init|Corros unsp deg mult sites of shldr/up lmb, ex wrs/hnd, init +C2871467|T037|AB|T22.499D|ICD10CM|Corros unsp deg mult sites of shldr/up lmb, ex wrs/hnd, subs|Corros unsp deg mult sites of shldr/up lmb, ex wrs/hnd, subs +C2871468|T037|AB|T22.499S|ICD10CM|Corros unsp deg mult sites of shldr/up lmb, ex wrs/hnd, sqla|Corros unsp deg mult sites of shldr/up lmb, ex wrs/hnd, sqla +C0451991|T037|AB|T22.5|ICD10CM|Corrosion of first degree of shldr/up lmb, except wrs/hnd|Corrosion of first degree of shldr/up lmb, except wrs/hnd +C0451991|T037|HT|T22.5|ICD10CM|Corrosion of first degree of shoulder and upper limb, except wrist and hand|Corrosion of first degree of shoulder and upper limb, except wrist and hand +C0451991|T037|PT|T22.5|ICD10|Corrosion of first degree of shoulder and upper limb, except wrist and hand|Corrosion of first degree of shoulder and upper limb, except wrist and hand +C2871469|T037|AB|T22.50|ICD10CM|Corros first deg of shldr/up lmb, except wrs/hnd unsp site|Corros first deg of shldr/up lmb, except wrs/hnd unsp site +C2871469|T037|HT|T22.50|ICD10CM|Corrosion of first degree of shoulder and upper limb, except wrist and hand unspecified site|Corrosion of first degree of shoulder and upper limb, except wrist and hand unspecified site +C2871470|T037|AB|T22.50XA|ICD10CM|Corros first deg of shldr/up lmb, ex wrs/hnd unsp site, init|Corros first deg of shldr/up lmb, ex wrs/hnd unsp site, init +C2871471|T037|AB|T22.50XD|ICD10CM|Corros first deg of shldr/up lmb, ex wrs/hnd unsp site, subs|Corros first deg of shldr/up lmb, ex wrs/hnd unsp site, subs +C2871472|T037|AB|T22.50XS|ICD10CM|Corros first deg of shldr/up lmb, ex wrs/hnd unsp site, sqla|Corros first deg of shldr/up lmb, ex wrs/hnd unsp site, sqla +C2871473|T037|AB|T22.51|ICD10CM|Corrosion of first degree of forearm|Corrosion of first degree of forearm +C2871473|T037|HT|T22.51|ICD10CM|Corrosion of first degree of forearm|Corrosion of first degree of forearm +C2871474|T037|AB|T22.511|ICD10CM|Corrosion of first degree of right forearm|Corrosion of first degree of right forearm +C2871474|T037|HT|T22.511|ICD10CM|Corrosion of first degree of right forearm|Corrosion of first degree of right forearm +C2871475|T037|AB|T22.511A|ICD10CM|Corrosion of first degree of right forearm, init encntr|Corrosion of first degree of right forearm, init encntr +C2871475|T037|PT|T22.511A|ICD10CM|Corrosion of first degree of right forearm, initial encounter|Corrosion of first degree of right forearm, initial encounter +C2871476|T037|AB|T22.511D|ICD10CM|Corrosion of first degree of right forearm, subs encntr|Corrosion of first degree of right forearm, subs encntr +C2871476|T037|PT|T22.511D|ICD10CM|Corrosion of first degree of right forearm, subsequent encounter|Corrosion of first degree of right forearm, subsequent encounter +C2871477|T037|PT|T22.511S|ICD10CM|Corrosion of first degree of right forearm, sequela|Corrosion of first degree of right forearm, sequela +C2871477|T037|AB|T22.511S|ICD10CM|Corrosion of first degree of right forearm, sequela|Corrosion of first degree of right forearm, sequela +C2871478|T037|AB|T22.512|ICD10CM|Corrosion of first degree of left forearm|Corrosion of first degree of left forearm +C2871478|T037|HT|T22.512|ICD10CM|Corrosion of first degree of left forearm|Corrosion of first degree of left forearm +C2871479|T037|AB|T22.512A|ICD10CM|Corrosion of first degree of left forearm, initial encounter|Corrosion of first degree of left forearm, initial encounter +C2871479|T037|PT|T22.512A|ICD10CM|Corrosion of first degree of left forearm, initial encounter|Corrosion of first degree of left forearm, initial encounter +C2871480|T037|AB|T22.512D|ICD10CM|Corrosion of first degree of left forearm, subs encntr|Corrosion of first degree of left forearm, subs encntr +C2871480|T037|PT|T22.512D|ICD10CM|Corrosion of first degree of left forearm, subsequent encounter|Corrosion of first degree of left forearm, subsequent encounter +C2871481|T037|PT|T22.512S|ICD10CM|Corrosion of first degree of left forearm, sequela|Corrosion of first degree of left forearm, sequela +C2871481|T037|AB|T22.512S|ICD10CM|Corrosion of first degree of left forearm, sequela|Corrosion of first degree of left forearm, sequela +C2871482|T037|AB|T22.519|ICD10CM|Corrosion of first degree of unspecified forearm|Corrosion of first degree of unspecified forearm +C2871482|T037|HT|T22.519|ICD10CM|Corrosion of first degree of unspecified forearm|Corrosion of first degree of unspecified forearm +C2871483|T037|AB|T22.519A|ICD10CM|Corrosion of first degree of unsp forearm, init encntr|Corrosion of first degree of unsp forearm, init encntr +C2871483|T037|PT|T22.519A|ICD10CM|Corrosion of first degree of unspecified forearm, initial encounter|Corrosion of first degree of unspecified forearm, initial encounter +C2871484|T037|AB|T22.519D|ICD10CM|Corrosion of first degree of unsp forearm, subs encntr|Corrosion of first degree of unsp forearm, subs encntr +C2871484|T037|PT|T22.519D|ICD10CM|Corrosion of first degree of unspecified forearm, subsequent encounter|Corrosion of first degree of unspecified forearm, subsequent encounter +C2871485|T037|PT|T22.519S|ICD10CM|Corrosion of first degree of unspecified forearm, sequela|Corrosion of first degree of unspecified forearm, sequela +C2871485|T037|AB|T22.519S|ICD10CM|Corrosion of first degree of unspecified forearm, sequela|Corrosion of first degree of unspecified forearm, sequela +C2871486|T037|AB|T22.52|ICD10CM|Corrosion of first degree of elbow|Corrosion of first degree of elbow +C2871486|T037|HT|T22.52|ICD10CM|Corrosion of first degree of elbow|Corrosion of first degree of elbow +C2871487|T037|AB|T22.521|ICD10CM|Corrosion of first degree of right elbow|Corrosion of first degree of right elbow +C2871487|T037|HT|T22.521|ICD10CM|Corrosion of first degree of right elbow|Corrosion of first degree of right elbow +C2871488|T037|PT|T22.521A|ICD10CM|Corrosion of first degree of right elbow, initial encounter|Corrosion of first degree of right elbow, initial encounter +C2871488|T037|AB|T22.521A|ICD10CM|Corrosion of first degree of right elbow, initial encounter|Corrosion of first degree of right elbow, initial encounter +C2871489|T037|AB|T22.521D|ICD10CM|Corrosion of first degree of right elbow, subs encntr|Corrosion of first degree of right elbow, subs encntr +C2871489|T037|PT|T22.521D|ICD10CM|Corrosion of first degree of right elbow, subsequent encounter|Corrosion of first degree of right elbow, subsequent encounter +C2871490|T037|PT|T22.521S|ICD10CM|Corrosion of first degree of right elbow, sequela|Corrosion of first degree of right elbow, sequela +C2871490|T037|AB|T22.521S|ICD10CM|Corrosion of first degree of right elbow, sequela|Corrosion of first degree of right elbow, sequela +C2871491|T037|AB|T22.522|ICD10CM|Corrosion of first degree of left elbow|Corrosion of first degree of left elbow +C2871491|T037|HT|T22.522|ICD10CM|Corrosion of first degree of left elbow|Corrosion of first degree of left elbow +C2871492|T037|PT|T22.522A|ICD10CM|Corrosion of first degree of left elbow, initial encounter|Corrosion of first degree of left elbow, initial encounter +C2871492|T037|AB|T22.522A|ICD10CM|Corrosion of first degree of left elbow, initial encounter|Corrosion of first degree of left elbow, initial encounter +C2871493|T037|AB|T22.522D|ICD10CM|Corrosion of first degree of left elbow, subs encntr|Corrosion of first degree of left elbow, subs encntr +C2871493|T037|PT|T22.522D|ICD10CM|Corrosion of first degree of left elbow, subsequent encounter|Corrosion of first degree of left elbow, subsequent encounter +C2871494|T037|PT|T22.522S|ICD10CM|Corrosion of first degree of left elbow, sequela|Corrosion of first degree of left elbow, sequela +C2871494|T037|AB|T22.522S|ICD10CM|Corrosion of first degree of left elbow, sequela|Corrosion of first degree of left elbow, sequela +C2871495|T037|AB|T22.529|ICD10CM|Corrosion of first degree of unspecified elbow|Corrosion of first degree of unspecified elbow +C2871495|T037|HT|T22.529|ICD10CM|Corrosion of first degree of unspecified elbow|Corrosion of first degree of unspecified elbow +C2871496|T037|AB|T22.529A|ICD10CM|Corrosion of first degree of unspecified elbow, init encntr|Corrosion of first degree of unspecified elbow, init encntr +C2871496|T037|PT|T22.529A|ICD10CM|Corrosion of first degree of unspecified elbow, initial encounter|Corrosion of first degree of unspecified elbow, initial encounter +C2871497|T037|AB|T22.529D|ICD10CM|Corrosion of first degree of unspecified elbow, subs encntr|Corrosion of first degree of unspecified elbow, subs encntr +C2871497|T037|PT|T22.529D|ICD10CM|Corrosion of first degree of unspecified elbow, subsequent encounter|Corrosion of first degree of unspecified elbow, subsequent encounter +C2871498|T037|PT|T22.529S|ICD10CM|Corrosion of first degree of unspecified elbow, sequela|Corrosion of first degree of unspecified elbow, sequela +C2871498|T037|AB|T22.529S|ICD10CM|Corrosion of first degree of unspecified elbow, sequela|Corrosion of first degree of unspecified elbow, sequela +C2871499|T037|AB|T22.53|ICD10CM|Corrosion of first degree of upper arm|Corrosion of first degree of upper arm +C2871499|T037|HT|T22.53|ICD10CM|Corrosion of first degree of upper arm|Corrosion of first degree of upper arm +C2871500|T037|AB|T22.531|ICD10CM|Corrosion of first degree of right upper arm|Corrosion of first degree of right upper arm +C2871500|T037|HT|T22.531|ICD10CM|Corrosion of first degree of right upper arm|Corrosion of first degree of right upper arm +C2871501|T037|AB|T22.531A|ICD10CM|Corrosion of first degree of right upper arm, init encntr|Corrosion of first degree of right upper arm, init encntr +C2871501|T037|PT|T22.531A|ICD10CM|Corrosion of first degree of right upper arm, initial encounter|Corrosion of first degree of right upper arm, initial encounter +C2871502|T037|AB|T22.531D|ICD10CM|Corrosion of first degree of right upper arm, subs encntr|Corrosion of first degree of right upper arm, subs encntr +C2871502|T037|PT|T22.531D|ICD10CM|Corrosion of first degree of right upper arm, subsequent encounter|Corrosion of first degree of right upper arm, subsequent encounter +C2871503|T037|PT|T22.531S|ICD10CM|Corrosion of first degree of right upper arm, sequela|Corrosion of first degree of right upper arm, sequela +C2871503|T037|AB|T22.531S|ICD10CM|Corrosion of first degree of right upper arm, sequela|Corrosion of first degree of right upper arm, sequela +C2871504|T037|AB|T22.532|ICD10CM|Corrosion of first degree of left upper arm|Corrosion of first degree of left upper arm +C2871504|T037|HT|T22.532|ICD10CM|Corrosion of first degree of left upper arm|Corrosion of first degree of left upper arm +C2871505|T037|AB|T22.532A|ICD10CM|Corrosion of first degree of left upper arm, init encntr|Corrosion of first degree of left upper arm, init encntr +C2871505|T037|PT|T22.532A|ICD10CM|Corrosion of first degree of left upper arm, initial encounter|Corrosion of first degree of left upper arm, initial encounter +C2871506|T037|AB|T22.532D|ICD10CM|Corrosion of first degree of left upper arm, subs encntr|Corrosion of first degree of left upper arm, subs encntr +C2871506|T037|PT|T22.532D|ICD10CM|Corrosion of first degree of left upper arm, subsequent encounter|Corrosion of first degree of left upper arm, subsequent encounter +C2871507|T037|PT|T22.532S|ICD10CM|Corrosion of first degree of left upper arm, sequela|Corrosion of first degree of left upper arm, sequela +C2871507|T037|AB|T22.532S|ICD10CM|Corrosion of first degree of left upper arm, sequela|Corrosion of first degree of left upper arm, sequela +C2871508|T037|AB|T22.539|ICD10CM|Corrosion of first degree of unspecified upper arm|Corrosion of first degree of unspecified upper arm +C2871508|T037|HT|T22.539|ICD10CM|Corrosion of first degree of unspecified upper arm|Corrosion of first degree of unspecified upper arm +C2871509|T037|AB|T22.539A|ICD10CM|Corrosion of first degree of unsp upper arm, init encntr|Corrosion of first degree of unsp upper arm, init encntr +C2871509|T037|PT|T22.539A|ICD10CM|Corrosion of first degree of unspecified upper arm, initial encounter|Corrosion of first degree of unspecified upper arm, initial encounter +C2871510|T037|AB|T22.539D|ICD10CM|Corrosion of first degree of unsp upper arm, subs encntr|Corrosion of first degree of unsp upper arm, subs encntr +C2871510|T037|PT|T22.539D|ICD10CM|Corrosion of first degree of unspecified upper arm, subsequent encounter|Corrosion of first degree of unspecified upper arm, subsequent encounter +C2871511|T037|PT|T22.539S|ICD10CM|Corrosion of first degree of unspecified upper arm, sequela|Corrosion of first degree of unspecified upper arm, sequela +C2871511|T037|AB|T22.539S|ICD10CM|Corrosion of first degree of unspecified upper arm, sequela|Corrosion of first degree of unspecified upper arm, sequela +C2871512|T037|AB|T22.54|ICD10CM|Corrosion of first degree of axilla|Corrosion of first degree of axilla +C2871512|T037|HT|T22.54|ICD10CM|Corrosion of first degree of axilla|Corrosion of first degree of axilla +C2871513|T037|AB|T22.541|ICD10CM|Corrosion of first degree of right axilla|Corrosion of first degree of right axilla +C2871513|T037|HT|T22.541|ICD10CM|Corrosion of first degree of right axilla|Corrosion of first degree of right axilla +C2871514|T037|AB|T22.541A|ICD10CM|Corrosion of first degree of right axilla, initial encounter|Corrosion of first degree of right axilla, initial encounter +C2871514|T037|PT|T22.541A|ICD10CM|Corrosion of first degree of right axilla, initial encounter|Corrosion of first degree of right axilla, initial encounter +C2871515|T037|AB|T22.541D|ICD10CM|Corrosion of first degree of right axilla, subs encntr|Corrosion of first degree of right axilla, subs encntr +C2871515|T037|PT|T22.541D|ICD10CM|Corrosion of first degree of right axilla, subsequent encounter|Corrosion of first degree of right axilla, subsequent encounter +C2871516|T037|PT|T22.541S|ICD10CM|Corrosion of first degree of right axilla, sequela|Corrosion of first degree of right axilla, sequela +C2871516|T037|AB|T22.541S|ICD10CM|Corrosion of first degree of right axilla, sequela|Corrosion of first degree of right axilla, sequela +C2871517|T037|AB|T22.542|ICD10CM|Corrosion of first degree of left axilla|Corrosion of first degree of left axilla +C2871517|T037|HT|T22.542|ICD10CM|Corrosion of first degree of left axilla|Corrosion of first degree of left axilla +C2871518|T037|PT|T22.542A|ICD10CM|Corrosion of first degree of left axilla, initial encounter|Corrosion of first degree of left axilla, initial encounter +C2871518|T037|AB|T22.542A|ICD10CM|Corrosion of first degree of left axilla, initial encounter|Corrosion of first degree of left axilla, initial encounter +C2871519|T037|AB|T22.542D|ICD10CM|Corrosion of first degree of left axilla, subs encntr|Corrosion of first degree of left axilla, subs encntr +C2871519|T037|PT|T22.542D|ICD10CM|Corrosion of first degree of left axilla, subsequent encounter|Corrosion of first degree of left axilla, subsequent encounter +C2871520|T037|PT|T22.542S|ICD10CM|Corrosion of first degree of left axilla, sequela|Corrosion of first degree of left axilla, sequela +C2871520|T037|AB|T22.542S|ICD10CM|Corrosion of first degree of left axilla, sequela|Corrosion of first degree of left axilla, sequela +C2871521|T037|AB|T22.549|ICD10CM|Corrosion of first degree of unspecified axilla|Corrosion of first degree of unspecified axilla +C2871521|T037|HT|T22.549|ICD10CM|Corrosion of first degree of unspecified axilla|Corrosion of first degree of unspecified axilla +C2871522|T037|AB|T22.549A|ICD10CM|Corrosion of first degree of unspecified axilla, init encntr|Corrosion of first degree of unspecified axilla, init encntr +C2871522|T037|PT|T22.549A|ICD10CM|Corrosion of first degree of unspecified axilla, initial encounter|Corrosion of first degree of unspecified axilla, initial encounter +C2871523|T037|AB|T22.549D|ICD10CM|Corrosion of first degree of unspecified axilla, subs encntr|Corrosion of first degree of unspecified axilla, subs encntr +C2871523|T037|PT|T22.549D|ICD10CM|Corrosion of first degree of unspecified axilla, subsequent encounter|Corrosion of first degree of unspecified axilla, subsequent encounter +C2871524|T037|PT|T22.549S|ICD10CM|Corrosion of first degree of unspecified axilla, sequela|Corrosion of first degree of unspecified axilla, sequela +C2871524|T037|AB|T22.549S|ICD10CM|Corrosion of first degree of unspecified axilla, sequela|Corrosion of first degree of unspecified axilla, sequela +C2871525|T037|AB|T22.55|ICD10CM|Corrosion of first degree of shoulder|Corrosion of first degree of shoulder +C2871525|T037|HT|T22.55|ICD10CM|Corrosion of first degree of shoulder|Corrosion of first degree of shoulder +C2871526|T037|AB|T22.551|ICD10CM|Corrosion of first degree of right shoulder|Corrosion of first degree of right shoulder +C2871526|T037|HT|T22.551|ICD10CM|Corrosion of first degree of right shoulder|Corrosion of first degree of right shoulder +C2871527|T037|AB|T22.551A|ICD10CM|Corrosion of first degree of right shoulder, init encntr|Corrosion of first degree of right shoulder, init encntr +C2871527|T037|PT|T22.551A|ICD10CM|Corrosion of first degree of right shoulder, initial encounter|Corrosion of first degree of right shoulder, initial encounter +C2871528|T037|AB|T22.551D|ICD10CM|Corrosion of first degree of right shoulder, subs encntr|Corrosion of first degree of right shoulder, subs encntr +C2871528|T037|PT|T22.551D|ICD10CM|Corrosion of first degree of right shoulder, subsequent encounter|Corrosion of first degree of right shoulder, subsequent encounter +C2871529|T037|PT|T22.551S|ICD10CM|Corrosion of first degree of right shoulder, sequela|Corrosion of first degree of right shoulder, sequela +C2871529|T037|AB|T22.551S|ICD10CM|Corrosion of first degree of right shoulder, sequela|Corrosion of first degree of right shoulder, sequela +C2871530|T037|AB|T22.552|ICD10CM|Corrosion of first degree of left shoulder|Corrosion of first degree of left shoulder +C2871530|T037|HT|T22.552|ICD10CM|Corrosion of first degree of left shoulder|Corrosion of first degree of left shoulder +C2871531|T037|AB|T22.552A|ICD10CM|Corrosion of first degree of left shoulder, init encntr|Corrosion of first degree of left shoulder, init encntr +C2871531|T037|PT|T22.552A|ICD10CM|Corrosion of first degree of left shoulder, initial encounter|Corrosion of first degree of left shoulder, initial encounter +C2871532|T037|AB|T22.552D|ICD10CM|Corrosion of first degree of left shoulder, subs encntr|Corrosion of first degree of left shoulder, subs encntr +C2871532|T037|PT|T22.552D|ICD10CM|Corrosion of first degree of left shoulder, subsequent encounter|Corrosion of first degree of left shoulder, subsequent encounter +C2871533|T037|PT|T22.552S|ICD10CM|Corrosion of first degree of left shoulder, sequela|Corrosion of first degree of left shoulder, sequela +C2871533|T037|AB|T22.552S|ICD10CM|Corrosion of first degree of left shoulder, sequela|Corrosion of first degree of left shoulder, sequela +C2871534|T037|AB|T22.559|ICD10CM|Corrosion of first degree of unspecified shoulder|Corrosion of first degree of unspecified shoulder +C2871534|T037|HT|T22.559|ICD10CM|Corrosion of first degree of unspecified shoulder|Corrosion of first degree of unspecified shoulder +C2871535|T037|AB|T22.559A|ICD10CM|Corrosion of first degree of unsp shoulder, init encntr|Corrosion of first degree of unsp shoulder, init encntr +C2871535|T037|PT|T22.559A|ICD10CM|Corrosion of first degree of unspecified shoulder, initial encounter|Corrosion of first degree of unspecified shoulder, initial encounter +C2871536|T037|AB|T22.559D|ICD10CM|Corrosion of first degree of unsp shoulder, subs encntr|Corrosion of first degree of unsp shoulder, subs encntr +C2871536|T037|PT|T22.559D|ICD10CM|Corrosion of first degree of unspecified shoulder, subsequent encounter|Corrosion of first degree of unspecified shoulder, subsequent encounter +C2871537|T037|PT|T22.559S|ICD10CM|Corrosion of first degree of unspecified shoulder, sequela|Corrosion of first degree of unspecified shoulder, sequela +C2871537|T037|AB|T22.559S|ICD10CM|Corrosion of first degree of unspecified shoulder, sequela|Corrosion of first degree of unspecified shoulder, sequela +C2871538|T037|AB|T22.56|ICD10CM|Corrosion of first degree of scapular region|Corrosion of first degree of scapular region +C2871538|T037|HT|T22.56|ICD10CM|Corrosion of first degree of scapular region|Corrosion of first degree of scapular region +C2871539|T037|AB|T22.561|ICD10CM|Corrosion of first degree of right scapular region|Corrosion of first degree of right scapular region +C2871539|T037|HT|T22.561|ICD10CM|Corrosion of first degree of right scapular region|Corrosion of first degree of right scapular region +C2871540|T037|AB|T22.561A|ICD10CM|Corrosion of first degree of right scapular region, init|Corrosion of first degree of right scapular region, init +C2871540|T037|PT|T22.561A|ICD10CM|Corrosion of first degree of right scapular region, initial encounter|Corrosion of first degree of right scapular region, initial encounter +C2871541|T037|AB|T22.561D|ICD10CM|Corrosion of first degree of right scapular region, subs|Corrosion of first degree of right scapular region, subs +C2871541|T037|PT|T22.561D|ICD10CM|Corrosion of first degree of right scapular region, subsequent encounter|Corrosion of first degree of right scapular region, subsequent encounter +C2871542|T037|PT|T22.561S|ICD10CM|Corrosion of first degree of right scapular region, sequela|Corrosion of first degree of right scapular region, sequela +C2871542|T037|AB|T22.561S|ICD10CM|Corrosion of first degree of right scapular region, sequela|Corrosion of first degree of right scapular region, sequela +C2871543|T037|AB|T22.562|ICD10CM|Corrosion of first degree of left scapular region|Corrosion of first degree of left scapular region +C2871543|T037|HT|T22.562|ICD10CM|Corrosion of first degree of left scapular region|Corrosion of first degree of left scapular region +C2871544|T037|AB|T22.562A|ICD10CM|Corrosion of first degree of left scapular region, init|Corrosion of first degree of left scapular region, init +C2871544|T037|PT|T22.562A|ICD10CM|Corrosion of first degree of left scapular region, initial encounter|Corrosion of first degree of left scapular region, initial encounter +C2871545|T037|AB|T22.562D|ICD10CM|Corrosion of first degree of left scapular region, subs|Corrosion of first degree of left scapular region, subs +C2871545|T037|PT|T22.562D|ICD10CM|Corrosion of first degree of left scapular region, subsequent encounter|Corrosion of first degree of left scapular region, subsequent encounter +C2871546|T037|PT|T22.562S|ICD10CM|Corrosion of first degree of left scapular region, sequela|Corrosion of first degree of left scapular region, sequela +C2871546|T037|AB|T22.562S|ICD10CM|Corrosion of first degree of left scapular region, sequela|Corrosion of first degree of left scapular region, sequela +C2871547|T037|AB|T22.569|ICD10CM|Corrosion of first degree of unspecified scapular region|Corrosion of first degree of unspecified scapular region +C2871547|T037|HT|T22.569|ICD10CM|Corrosion of first degree of unspecified scapular region|Corrosion of first degree of unspecified scapular region +C2871548|T037|AB|T22.569A|ICD10CM|Corrosion of first degree of unsp scapular region, init|Corrosion of first degree of unsp scapular region, init +C2871548|T037|PT|T22.569A|ICD10CM|Corrosion of first degree of unspecified scapular region, initial encounter|Corrosion of first degree of unspecified scapular region, initial encounter +C2871549|T037|AB|T22.569D|ICD10CM|Corrosion of first degree of unsp scapular region, subs|Corrosion of first degree of unsp scapular region, subs +C2871549|T037|PT|T22.569D|ICD10CM|Corrosion of first degree of unspecified scapular region, subsequent encounter|Corrosion of first degree of unspecified scapular region, subsequent encounter +C2871550|T037|AB|T22.569S|ICD10CM|Corrosion of first degree of unsp scapular region, sequela|Corrosion of first degree of unsp scapular region, sequela +C2871550|T037|PT|T22.569S|ICD10CM|Corrosion of first degree of unspecified scapular region, sequela|Corrosion of first degree of unspecified scapular region, sequela +C2871551|T037|AB|T22.59|ICD10CM|Corros first deg mult sites of shldr/up lmb, except wrs/hnd|Corros first deg mult sites of shldr/up lmb, except wrs/hnd +C2871551|T037|HT|T22.59|ICD10CM|Corrosion of first degree of multiple sites of shoulder and upper limb, except wrist and hand|Corrosion of first degree of multiple sites of shoulder and upper limb, except wrist and hand +C2871552|T037|AB|T22.591|ICD10CM|Corros 1st deg mult sites of right shldr/up lmb, ex wrs/hnd|Corros 1st deg mult sites of right shldr/up lmb, ex wrs/hnd +C2871552|T037|HT|T22.591|ICD10CM|Corrosion of first degree of multiple sites of right shoulder and upper limb, except wrist and hand|Corrosion of first degree of multiple sites of right shoulder and upper limb, except wrist and hand +C2871553|T037|AB|T22.591A|ICD10CM|Corros 1st deg mult site of r shldr/up lmb, ex wrs/hnd, init|Corros 1st deg mult site of r shldr/up lmb, ex wrs/hnd, init +C2871554|T037|AB|T22.591D|ICD10CM|Corros 1st deg mult site of r shldr/up lmb, ex wrs/hnd, subs|Corros 1st deg mult site of r shldr/up lmb, ex wrs/hnd, subs +C2871555|T037|AB|T22.591S|ICD10CM|Corros 1st deg mult site of r shldr/up lmb, ex wrs/hnd, sqla|Corros 1st deg mult site of r shldr/up lmb, ex wrs/hnd, sqla +C2871556|T037|AB|T22.592|ICD10CM|Corros first deg mult sites of left shldr/up lmb, ex wrs/hnd|Corros first deg mult sites of left shldr/up lmb, ex wrs/hnd +C2871556|T037|HT|T22.592|ICD10CM|Corrosion of first degree of multiple sites of left shoulder and upper limb, except wrist and hand|Corrosion of first degree of multiple sites of left shoulder and upper limb, except wrist and hand +C2871557|T037|AB|T22.592A|ICD10CM|Corros 1st deg mult site of l shldr/up lmb, ex wrs/hnd, init|Corros 1st deg mult site of l shldr/up lmb, ex wrs/hnd, init +C2871558|T037|AB|T22.592D|ICD10CM|Corros 1st deg mult site of l shldr/up lmb, ex wrs/hnd, subs|Corros 1st deg mult site of l shldr/up lmb, ex wrs/hnd, subs +C2871559|T037|AB|T22.592S|ICD10CM|Corros 1st deg mult site of l shldr/up lmb, ex wrs/hnd, sqla|Corros 1st deg mult site of l shldr/up lmb, ex wrs/hnd, sqla +C2871551|T037|AB|T22.599|ICD10CM|Corros first deg mult sites of shldr/up lmb, except wrs/hnd|Corros first deg mult sites of shldr/up lmb, except wrs/hnd +C2871561|T037|AB|T22.599A|ICD10CM|Corros 1st deg mult sites of shldr/up lmb, ex wrs/hnd, init|Corros 1st deg mult sites of shldr/up lmb, ex wrs/hnd, init +C2871562|T037|AB|T22.599D|ICD10CM|Corros 1st deg mult sites of shldr/up lmb, ex wrs/hnd, subs|Corros 1st deg mult sites of shldr/up lmb, ex wrs/hnd, subs +C2871563|T037|AB|T22.599S|ICD10CM|Corros 1st deg mult sites of shldr/up lmb, ex wrs/hnd, sqla|Corros 1st deg mult sites of shldr/up lmb, ex wrs/hnd, sqla +C0451995|T037|AB|T22.6|ICD10CM|Corrosion of second degree of shldr/up lmb, except wrs/hnd|Corrosion of second degree of shldr/up lmb, except wrs/hnd +C0451995|T037|HT|T22.6|ICD10CM|Corrosion of second degree of shoulder and upper limb, except wrist and hand|Corrosion of second degree of shoulder and upper limb, except wrist and hand +C0451995|T037|PT|T22.6|ICD10|Corrosion of second degree of shoulder and upper limb, except wrist and hand|Corrosion of second degree of shoulder and upper limb, except wrist and hand +C2871564|T037|AB|T22.60|ICD10CM|Corros second deg of shldr/up lmb, except wrs/hnd, unsp site|Corros second deg of shldr/up lmb, except wrs/hnd, unsp site +C2871564|T037|HT|T22.60|ICD10CM|Corrosion of second degree of shoulder and upper limb, except wrist and hand, unspecified site|Corrosion of second degree of shoulder and upper limb, except wrist and hand, unspecified site +C2871565|T037|AB|T22.60XA|ICD10CM|Corros 2nd deg of shldr/up lmb, ex wrs/hnd, unsp site, init|Corros 2nd deg of shldr/up lmb, ex wrs/hnd, unsp site, init +C2871566|T037|AB|T22.60XD|ICD10CM|Corros 2nd deg of shldr/up lmb, ex wrs/hnd, unsp site, subs|Corros 2nd deg of shldr/up lmb, ex wrs/hnd, unsp site, subs +C2871567|T037|AB|T22.60XS|ICD10CM|Corros 2nd deg of shldr/up lmb, ex wrs/hnd, unsp site, sqla|Corros 2nd deg of shldr/up lmb, ex wrs/hnd, unsp site, sqla +C2871568|T037|AB|T22.61|ICD10CM|Corrosion of second degree of forearm|Corrosion of second degree of forearm +C2871568|T037|HT|T22.61|ICD10CM|Corrosion of second degree of forearm|Corrosion of second degree of forearm +C2871569|T037|AB|T22.611|ICD10CM|Corrosion of second degree of right forearm|Corrosion of second degree of right forearm +C2871569|T037|HT|T22.611|ICD10CM|Corrosion of second degree of right forearm|Corrosion of second degree of right forearm +C2871570|T037|AB|T22.611A|ICD10CM|Corrosion of second degree of right forearm, init encntr|Corrosion of second degree of right forearm, init encntr +C2871570|T037|PT|T22.611A|ICD10CM|Corrosion of second degree of right forearm, initial encounter|Corrosion of second degree of right forearm, initial encounter +C2871571|T037|AB|T22.611D|ICD10CM|Corrosion of second degree of right forearm, subs encntr|Corrosion of second degree of right forearm, subs encntr +C2871571|T037|PT|T22.611D|ICD10CM|Corrosion of second degree of right forearm, subsequent encounter|Corrosion of second degree of right forearm, subsequent encounter +C2871572|T037|PT|T22.611S|ICD10CM|Corrosion of second degree of right forearm, sequela|Corrosion of second degree of right forearm, sequela +C2871572|T037|AB|T22.611S|ICD10CM|Corrosion of second degree of right forearm, sequela|Corrosion of second degree of right forearm, sequela +C2871573|T037|AB|T22.612|ICD10CM|Corrosion of second degree of left forearm|Corrosion of second degree of left forearm +C2871573|T037|HT|T22.612|ICD10CM|Corrosion of second degree of left forearm|Corrosion of second degree of left forearm +C2871574|T037|AB|T22.612A|ICD10CM|Corrosion of second degree of left forearm, init encntr|Corrosion of second degree of left forearm, init encntr +C2871574|T037|PT|T22.612A|ICD10CM|Corrosion of second degree of left forearm, initial encounter|Corrosion of second degree of left forearm, initial encounter +C2871575|T037|AB|T22.612D|ICD10CM|Corrosion of second degree of left forearm, subs encntr|Corrosion of second degree of left forearm, subs encntr +C2871575|T037|PT|T22.612D|ICD10CM|Corrosion of second degree of left forearm, subsequent encounter|Corrosion of second degree of left forearm, subsequent encounter +C2871576|T037|PT|T22.612S|ICD10CM|Corrosion of second degree of left forearm, sequela|Corrosion of second degree of left forearm, sequela +C2871576|T037|AB|T22.612S|ICD10CM|Corrosion of second degree of left forearm, sequela|Corrosion of second degree of left forearm, sequela +C2871577|T037|AB|T22.619|ICD10CM|Corrosion of second degree of unspecified forearm|Corrosion of second degree of unspecified forearm +C2871577|T037|HT|T22.619|ICD10CM|Corrosion of second degree of unspecified forearm|Corrosion of second degree of unspecified forearm +C2871578|T037|AB|T22.619A|ICD10CM|Corrosion of second degree of unsp forearm, init encntr|Corrosion of second degree of unsp forearm, init encntr +C2871578|T037|PT|T22.619A|ICD10CM|Corrosion of second degree of unspecified forearm, initial encounter|Corrosion of second degree of unspecified forearm, initial encounter +C2871579|T037|AB|T22.619D|ICD10CM|Corrosion of second degree of unsp forearm, subs encntr|Corrosion of second degree of unsp forearm, subs encntr +C2871579|T037|PT|T22.619D|ICD10CM|Corrosion of second degree of unspecified forearm, subsequent encounter|Corrosion of second degree of unspecified forearm, subsequent encounter +C2871580|T037|PT|T22.619S|ICD10CM|Corrosion of second degree of unspecified forearm, sequela|Corrosion of second degree of unspecified forearm, sequela +C2871580|T037|AB|T22.619S|ICD10CM|Corrosion of second degree of unspecified forearm, sequela|Corrosion of second degree of unspecified forearm, sequela +C2871581|T037|AB|T22.62|ICD10CM|Corrosion of second degree of elbow|Corrosion of second degree of elbow +C2871581|T037|HT|T22.62|ICD10CM|Corrosion of second degree of elbow|Corrosion of second degree of elbow +C2871582|T037|AB|T22.621|ICD10CM|Corrosion of second degree of right elbow|Corrosion of second degree of right elbow +C2871582|T037|HT|T22.621|ICD10CM|Corrosion of second degree of right elbow|Corrosion of second degree of right elbow +C2871583|T037|AB|T22.621A|ICD10CM|Corrosion of second degree of right elbow, initial encounter|Corrosion of second degree of right elbow, initial encounter +C2871583|T037|PT|T22.621A|ICD10CM|Corrosion of second degree of right elbow, initial encounter|Corrosion of second degree of right elbow, initial encounter +C2871584|T037|AB|T22.621D|ICD10CM|Corrosion of second degree of right elbow, subs encntr|Corrosion of second degree of right elbow, subs encntr +C2871584|T037|PT|T22.621D|ICD10CM|Corrosion of second degree of right elbow, subsequent encounter|Corrosion of second degree of right elbow, subsequent encounter +C2871585|T037|PT|T22.621S|ICD10CM|Corrosion of second degree of right elbow, sequela|Corrosion of second degree of right elbow, sequela +C2871585|T037|AB|T22.621S|ICD10CM|Corrosion of second degree of right elbow, sequela|Corrosion of second degree of right elbow, sequela +C2871586|T037|AB|T22.622|ICD10CM|Corrosion of second degree of left elbow|Corrosion of second degree of left elbow +C2871586|T037|HT|T22.622|ICD10CM|Corrosion of second degree of left elbow|Corrosion of second degree of left elbow +C2871587|T037|PT|T22.622A|ICD10CM|Corrosion of second degree of left elbow, initial encounter|Corrosion of second degree of left elbow, initial encounter +C2871587|T037|AB|T22.622A|ICD10CM|Corrosion of second degree of left elbow, initial encounter|Corrosion of second degree of left elbow, initial encounter +C2871588|T037|AB|T22.622D|ICD10CM|Corrosion of second degree of left elbow, subs encntr|Corrosion of second degree of left elbow, subs encntr +C2871588|T037|PT|T22.622D|ICD10CM|Corrosion of second degree of left elbow, subsequent encounter|Corrosion of second degree of left elbow, subsequent encounter +C2871589|T037|PT|T22.622S|ICD10CM|Corrosion of second degree of left elbow, sequela|Corrosion of second degree of left elbow, sequela +C2871589|T037|AB|T22.622S|ICD10CM|Corrosion of second degree of left elbow, sequela|Corrosion of second degree of left elbow, sequela +C2871590|T037|AB|T22.629|ICD10CM|Corrosion of second degree of unspecified elbow|Corrosion of second degree of unspecified elbow +C2871590|T037|HT|T22.629|ICD10CM|Corrosion of second degree of unspecified elbow|Corrosion of second degree of unspecified elbow +C2871591|T037|AB|T22.629A|ICD10CM|Corrosion of second degree of unspecified elbow, init encntr|Corrosion of second degree of unspecified elbow, init encntr +C2871591|T037|PT|T22.629A|ICD10CM|Corrosion of second degree of unspecified elbow, initial encounter|Corrosion of second degree of unspecified elbow, initial encounter +C2871592|T037|AB|T22.629D|ICD10CM|Corrosion of second degree of unspecified elbow, subs encntr|Corrosion of second degree of unspecified elbow, subs encntr +C2871592|T037|PT|T22.629D|ICD10CM|Corrosion of second degree of unspecified elbow, subsequent encounter|Corrosion of second degree of unspecified elbow, subsequent encounter +C2871593|T037|PT|T22.629S|ICD10CM|Corrosion of second degree of unspecified elbow, sequela|Corrosion of second degree of unspecified elbow, sequela +C2871593|T037|AB|T22.629S|ICD10CM|Corrosion of second degree of unspecified elbow, sequela|Corrosion of second degree of unspecified elbow, sequela +C2871594|T037|AB|T22.63|ICD10CM|Corrosion of second degree of upper arm|Corrosion of second degree of upper arm +C2871594|T037|HT|T22.63|ICD10CM|Corrosion of second degree of upper arm|Corrosion of second degree of upper arm +C2871595|T037|AB|T22.631|ICD10CM|Corrosion of second degree of right upper arm|Corrosion of second degree of right upper arm +C2871595|T037|HT|T22.631|ICD10CM|Corrosion of second degree of right upper arm|Corrosion of second degree of right upper arm +C2871596|T037|AB|T22.631A|ICD10CM|Corrosion of second degree of right upper arm, init encntr|Corrosion of second degree of right upper arm, init encntr +C2871596|T037|PT|T22.631A|ICD10CM|Corrosion of second degree of right upper arm, initial encounter|Corrosion of second degree of right upper arm, initial encounter +C2871597|T037|AB|T22.631D|ICD10CM|Corrosion of second degree of right upper arm, subs encntr|Corrosion of second degree of right upper arm, subs encntr +C2871597|T037|PT|T22.631D|ICD10CM|Corrosion of second degree of right upper arm, subsequent encounter|Corrosion of second degree of right upper arm, subsequent encounter +C2871598|T037|PT|T22.631S|ICD10CM|Corrosion of second degree of right upper arm, sequela|Corrosion of second degree of right upper arm, sequela +C2871598|T037|AB|T22.631S|ICD10CM|Corrosion of second degree of right upper arm, sequela|Corrosion of second degree of right upper arm, sequela +C2871599|T037|AB|T22.632|ICD10CM|Corrosion of second degree of left upper arm|Corrosion of second degree of left upper arm +C2871599|T037|HT|T22.632|ICD10CM|Corrosion of second degree of left upper arm|Corrosion of second degree of left upper arm +C2871600|T037|AB|T22.632A|ICD10CM|Corrosion of second degree of left upper arm, init encntr|Corrosion of second degree of left upper arm, init encntr +C2871600|T037|PT|T22.632A|ICD10CM|Corrosion of second degree of left upper arm, initial encounter|Corrosion of second degree of left upper arm, initial encounter +C2871601|T037|AB|T22.632D|ICD10CM|Corrosion of second degree of left upper arm, subs encntr|Corrosion of second degree of left upper arm, subs encntr +C2871601|T037|PT|T22.632D|ICD10CM|Corrosion of second degree of left upper arm, subsequent encounter|Corrosion of second degree of left upper arm, subsequent encounter +C2871602|T037|PT|T22.632S|ICD10CM|Corrosion of second degree of left upper arm, sequela|Corrosion of second degree of left upper arm, sequela +C2871602|T037|AB|T22.632S|ICD10CM|Corrosion of second degree of left upper arm, sequela|Corrosion of second degree of left upper arm, sequela +C2871603|T037|AB|T22.639|ICD10CM|Corrosion of second degree of unspecified upper arm|Corrosion of second degree of unspecified upper arm +C2871603|T037|HT|T22.639|ICD10CM|Corrosion of second degree of unspecified upper arm|Corrosion of second degree of unspecified upper arm +C2871604|T037|AB|T22.639A|ICD10CM|Corrosion of second degree of unsp upper arm, init encntr|Corrosion of second degree of unsp upper arm, init encntr +C2871604|T037|PT|T22.639A|ICD10CM|Corrosion of second degree of unspecified upper arm, initial encounter|Corrosion of second degree of unspecified upper arm, initial encounter +C2871605|T037|AB|T22.639D|ICD10CM|Corrosion of second degree of unsp upper arm, subs encntr|Corrosion of second degree of unsp upper arm, subs encntr +C2871605|T037|PT|T22.639D|ICD10CM|Corrosion of second degree of unspecified upper arm, subsequent encounter|Corrosion of second degree of unspecified upper arm, subsequent encounter +C2871606|T037|AB|T22.639S|ICD10CM|Corrosion of second degree of unspecified upper arm, sequela|Corrosion of second degree of unspecified upper arm, sequela +C2871606|T037|PT|T22.639S|ICD10CM|Corrosion of second degree of unspecified upper arm, sequela|Corrosion of second degree of unspecified upper arm, sequela +C2871607|T037|AB|T22.64|ICD10CM|Corrosion of second degree of axilla|Corrosion of second degree of axilla +C2871607|T037|HT|T22.64|ICD10CM|Corrosion of second degree of axilla|Corrosion of second degree of axilla +C2871608|T037|AB|T22.641|ICD10CM|Corrosion of second degree of right axilla|Corrosion of second degree of right axilla +C2871608|T037|HT|T22.641|ICD10CM|Corrosion of second degree of right axilla|Corrosion of second degree of right axilla +C2871609|T037|AB|T22.641A|ICD10CM|Corrosion of second degree of right axilla, init encntr|Corrosion of second degree of right axilla, init encntr +C2871609|T037|PT|T22.641A|ICD10CM|Corrosion of second degree of right axilla, initial encounter|Corrosion of second degree of right axilla, initial encounter +C2871610|T037|AB|T22.641D|ICD10CM|Corrosion of second degree of right axilla, subs encntr|Corrosion of second degree of right axilla, subs encntr +C2871610|T037|PT|T22.641D|ICD10CM|Corrosion of second degree of right axilla, subsequent encounter|Corrosion of second degree of right axilla, subsequent encounter +C2871611|T037|PT|T22.641S|ICD10CM|Corrosion of second degree of right axilla, sequela|Corrosion of second degree of right axilla, sequela +C2871611|T037|AB|T22.641S|ICD10CM|Corrosion of second degree of right axilla, sequela|Corrosion of second degree of right axilla, sequela +C2871612|T037|AB|T22.642|ICD10CM|Corrosion of second degree of left axilla|Corrosion of second degree of left axilla +C2871612|T037|HT|T22.642|ICD10CM|Corrosion of second degree of left axilla|Corrosion of second degree of left axilla +C2871613|T037|AB|T22.642A|ICD10CM|Corrosion of second degree of left axilla, initial encounter|Corrosion of second degree of left axilla, initial encounter +C2871613|T037|PT|T22.642A|ICD10CM|Corrosion of second degree of left axilla, initial encounter|Corrosion of second degree of left axilla, initial encounter +C2871614|T037|AB|T22.642D|ICD10CM|Corrosion of second degree of left axilla, subs encntr|Corrosion of second degree of left axilla, subs encntr +C2871614|T037|PT|T22.642D|ICD10CM|Corrosion of second degree of left axilla, subsequent encounter|Corrosion of second degree of left axilla, subsequent encounter +C2871615|T037|PT|T22.642S|ICD10CM|Corrosion of second degree of left axilla, sequela|Corrosion of second degree of left axilla, sequela +C2871615|T037|AB|T22.642S|ICD10CM|Corrosion of second degree of left axilla, sequela|Corrosion of second degree of left axilla, sequela +C2871616|T037|AB|T22.649|ICD10CM|Corrosion of second degree of unspecified axilla|Corrosion of second degree of unspecified axilla +C2871616|T037|HT|T22.649|ICD10CM|Corrosion of second degree of unspecified axilla|Corrosion of second degree of unspecified axilla +C2871617|T037|AB|T22.649A|ICD10CM|Corrosion of second degree of unsp axilla, init encntr|Corrosion of second degree of unsp axilla, init encntr +C2871617|T037|PT|T22.649A|ICD10CM|Corrosion of second degree of unspecified axilla, initial encounter|Corrosion of second degree of unspecified axilla, initial encounter +C2871618|T037|AB|T22.649D|ICD10CM|Corrosion of second degree of unsp axilla, subs encntr|Corrosion of second degree of unsp axilla, subs encntr +C2871618|T037|PT|T22.649D|ICD10CM|Corrosion of second degree of unspecified axilla, subsequent encounter|Corrosion of second degree of unspecified axilla, subsequent encounter +C2871619|T037|PT|T22.649S|ICD10CM|Corrosion of second degree of unspecified axilla, sequela|Corrosion of second degree of unspecified axilla, sequela +C2871619|T037|AB|T22.649S|ICD10CM|Corrosion of second degree of unspecified axilla, sequela|Corrosion of second degree of unspecified axilla, sequela +C2871620|T037|AB|T22.65|ICD10CM|Corrosion of second degree of shoulder|Corrosion of second degree of shoulder +C2871620|T037|HT|T22.65|ICD10CM|Corrosion of second degree of shoulder|Corrosion of second degree of shoulder +C2871621|T037|AB|T22.651|ICD10CM|Corrosion of second degree of right shoulder|Corrosion of second degree of right shoulder +C2871621|T037|HT|T22.651|ICD10CM|Corrosion of second degree of right shoulder|Corrosion of second degree of right shoulder +C2871622|T037|AB|T22.651A|ICD10CM|Corrosion of second degree of right shoulder, init encntr|Corrosion of second degree of right shoulder, init encntr +C2871622|T037|PT|T22.651A|ICD10CM|Corrosion of second degree of right shoulder, initial encounter|Corrosion of second degree of right shoulder, initial encounter +C2871623|T037|AB|T22.651D|ICD10CM|Corrosion of second degree of right shoulder, subs encntr|Corrosion of second degree of right shoulder, subs encntr +C2871623|T037|PT|T22.651D|ICD10CM|Corrosion of second degree of right shoulder, subsequent encounter|Corrosion of second degree of right shoulder, subsequent encounter +C2871624|T037|PT|T22.651S|ICD10CM|Corrosion of second degree of right shoulder, sequela|Corrosion of second degree of right shoulder, sequela +C2871624|T037|AB|T22.651S|ICD10CM|Corrosion of second degree of right shoulder, sequela|Corrosion of second degree of right shoulder, sequela +C2871625|T037|AB|T22.652|ICD10CM|Corrosion of second degree of left shoulder|Corrosion of second degree of left shoulder +C2871625|T037|HT|T22.652|ICD10CM|Corrosion of second degree of left shoulder|Corrosion of second degree of left shoulder +C2871626|T037|AB|T22.652A|ICD10CM|Corrosion of second degree of left shoulder, init encntr|Corrosion of second degree of left shoulder, init encntr +C2871626|T037|PT|T22.652A|ICD10CM|Corrosion of second degree of left shoulder, initial encounter|Corrosion of second degree of left shoulder, initial encounter +C2871627|T037|AB|T22.652D|ICD10CM|Corrosion of second degree of left shoulder, subs encntr|Corrosion of second degree of left shoulder, subs encntr +C2871627|T037|PT|T22.652D|ICD10CM|Corrosion of second degree of left shoulder, subsequent encounter|Corrosion of second degree of left shoulder, subsequent encounter +C2871628|T037|PT|T22.652S|ICD10CM|Corrosion of second degree of left shoulder, sequela|Corrosion of second degree of left shoulder, sequela +C2871628|T037|AB|T22.652S|ICD10CM|Corrosion of second degree of left shoulder, sequela|Corrosion of second degree of left shoulder, sequela +C2871629|T037|AB|T22.659|ICD10CM|Corrosion of second degree of unspecified shoulder|Corrosion of second degree of unspecified shoulder +C2871629|T037|HT|T22.659|ICD10CM|Corrosion of second degree of unspecified shoulder|Corrosion of second degree of unspecified shoulder +C2871630|T037|AB|T22.659A|ICD10CM|Corrosion of second degree of unsp shoulder, init encntr|Corrosion of second degree of unsp shoulder, init encntr +C2871630|T037|PT|T22.659A|ICD10CM|Corrosion of second degree of unspecified shoulder, initial encounter|Corrosion of second degree of unspecified shoulder, initial encounter +C2871631|T037|AB|T22.659D|ICD10CM|Corrosion of second degree of unsp shoulder, subs encntr|Corrosion of second degree of unsp shoulder, subs encntr +C2871631|T037|PT|T22.659D|ICD10CM|Corrosion of second degree of unspecified shoulder, subsequent encounter|Corrosion of second degree of unspecified shoulder, subsequent encounter +C2871632|T037|PT|T22.659S|ICD10CM|Corrosion of second degree of unspecified shoulder, sequela|Corrosion of second degree of unspecified shoulder, sequela +C2871632|T037|AB|T22.659S|ICD10CM|Corrosion of second degree of unspecified shoulder, sequela|Corrosion of second degree of unspecified shoulder, sequela +C2871633|T037|AB|T22.66|ICD10CM|Corrosion of second degree of scapular region|Corrosion of second degree of scapular region +C2871633|T037|HT|T22.66|ICD10CM|Corrosion of second degree of scapular region|Corrosion of second degree of scapular region +C2871634|T037|AB|T22.661|ICD10CM|Corrosion of second degree of right scapular region|Corrosion of second degree of right scapular region +C2871634|T037|HT|T22.661|ICD10CM|Corrosion of second degree of right scapular region|Corrosion of second degree of right scapular region +C2871635|T037|AB|T22.661A|ICD10CM|Corrosion of second degree of right scapular region, init|Corrosion of second degree of right scapular region, init +C2871635|T037|PT|T22.661A|ICD10CM|Corrosion of second degree of right scapular region, initial encounter|Corrosion of second degree of right scapular region, initial encounter +C2871636|T037|AB|T22.661D|ICD10CM|Corrosion of second degree of right scapular region, subs|Corrosion of second degree of right scapular region, subs +C2871636|T037|PT|T22.661D|ICD10CM|Corrosion of second degree of right scapular region, subsequent encounter|Corrosion of second degree of right scapular region, subsequent encounter +C2871637|T037|AB|T22.661S|ICD10CM|Corrosion of second degree of right scapular region, sequela|Corrosion of second degree of right scapular region, sequela +C2871637|T037|PT|T22.661S|ICD10CM|Corrosion of second degree of right scapular region, sequela|Corrosion of second degree of right scapular region, sequela +C2871638|T037|AB|T22.662|ICD10CM|Corrosion of second degree of left scapular region|Corrosion of second degree of left scapular region +C2871638|T037|HT|T22.662|ICD10CM|Corrosion of second degree of left scapular region|Corrosion of second degree of left scapular region +C2871639|T037|AB|T22.662A|ICD10CM|Corrosion of second degree of left scapular region, init|Corrosion of second degree of left scapular region, init +C2871639|T037|PT|T22.662A|ICD10CM|Corrosion of second degree of left scapular region, initial encounter|Corrosion of second degree of left scapular region, initial encounter +C2871640|T037|AB|T22.662D|ICD10CM|Corrosion of second degree of left scapular region, subs|Corrosion of second degree of left scapular region, subs +C2871640|T037|PT|T22.662D|ICD10CM|Corrosion of second degree of left scapular region, subsequent encounter|Corrosion of second degree of left scapular region, subsequent encounter +C2871641|T037|PT|T22.662S|ICD10CM|Corrosion of second degree of left scapular region, sequela|Corrosion of second degree of left scapular region, sequela +C2871641|T037|AB|T22.662S|ICD10CM|Corrosion of second degree of left scapular region, sequela|Corrosion of second degree of left scapular region, sequela +C2871642|T037|AB|T22.669|ICD10CM|Corrosion of second degree of unspecified scapular region|Corrosion of second degree of unspecified scapular region +C2871642|T037|HT|T22.669|ICD10CM|Corrosion of second degree of unspecified scapular region|Corrosion of second degree of unspecified scapular region +C2871643|T037|AB|T22.669A|ICD10CM|Corrosion of second degree of unsp scapular region, init|Corrosion of second degree of unsp scapular region, init +C2871643|T037|PT|T22.669A|ICD10CM|Corrosion of second degree of unspecified scapular region, initial encounter|Corrosion of second degree of unspecified scapular region, initial encounter +C2871644|T037|AB|T22.669D|ICD10CM|Corrosion of second degree of unsp scapular region, subs|Corrosion of second degree of unsp scapular region, subs +C2871644|T037|PT|T22.669D|ICD10CM|Corrosion of second degree of unspecified scapular region, subsequent encounter|Corrosion of second degree of unspecified scapular region, subsequent encounter +C2871645|T037|AB|T22.669S|ICD10CM|Corrosion of second degree of unsp scapular region, sequela|Corrosion of second degree of unsp scapular region, sequela +C2871645|T037|PT|T22.669S|ICD10CM|Corrosion of second degree of unspecified scapular region, sequela|Corrosion of second degree of unspecified scapular region, sequela +C2871646|T037|AB|T22.69|ICD10CM|Corros 2nd deg mul sites of shldr/up lmb, except wrs/hnd|Corros 2nd deg mul sites of shldr/up lmb, except wrs/hnd +C2871646|T037|HT|T22.69|ICD10CM|Corrosion of second degree of multiple sites of shoulder and upper limb, except wrist and hand|Corrosion of second degree of multiple sites of shoulder and upper limb, except wrist and hand +C2871647|T037|AB|T22.691|ICD10CM|Corros 2nd deg mul sites of right shldr/up lmb, ex wrs/hnd|Corros 2nd deg mul sites of right shldr/up lmb, ex wrs/hnd +C2871647|T037|HT|T22.691|ICD10CM|Corrosion of second degree of multiple sites of right shoulder and upper limb, except wrist and hand|Corrosion of second degree of multiple sites of right shoulder and upper limb, except wrist and hand +C2871648|T037|AB|T22.691A|ICD10CM|Corros 2nd deg mul sites of r shldr/up lmb, ex wrs/hnd, init|Corros 2nd deg mul sites of r shldr/up lmb, ex wrs/hnd, init +C2871649|T037|AB|T22.691D|ICD10CM|Corros 2nd deg mul sites of r shldr/up lmb, ex wrs/hnd, subs|Corros 2nd deg mul sites of r shldr/up lmb, ex wrs/hnd, subs +C2871650|T037|AB|T22.691S|ICD10CM|Corros 2nd deg mul sites of r shldr/up lmb, ex wrs/hnd, sqla|Corros 2nd deg mul sites of r shldr/up lmb, ex wrs/hnd, sqla +C2871651|T037|AB|T22.692|ICD10CM|Corros 2nd deg mul sites of left shldr/up lmb, ex wrs/hnd|Corros 2nd deg mul sites of left shldr/up lmb, ex wrs/hnd +C2871651|T037|HT|T22.692|ICD10CM|Corrosion of second degree of multiple sites of left shoulder and upper limb, except wrist and hand|Corrosion of second degree of multiple sites of left shoulder and upper limb, except wrist and hand +C2871652|T037|AB|T22.692A|ICD10CM|Corros 2nd deg mul site of l shldr/up lmb, ex wrs/hnd, init|Corros 2nd deg mul site of l shldr/up lmb, ex wrs/hnd, init +C2871653|T037|AB|T22.692D|ICD10CM|Corros 2nd deg mul site of l shldr/up lmb, ex wrs/hnd, subs|Corros 2nd deg mul site of l shldr/up lmb, ex wrs/hnd, subs +C2871654|T037|AB|T22.692S|ICD10CM|Corros 2nd deg mul site of l shldr/up lmb, ex wrs/hnd, sqla|Corros 2nd deg mul site of l shldr/up lmb, ex wrs/hnd, sqla +C2871655|T037|AB|T22.699|ICD10CM|Corros 2nd deg mul sites of shldr/up lmb, except wrs/hnd|Corros 2nd deg mul sites of shldr/up lmb, except wrs/hnd +C2871656|T037|AB|T22.699A|ICD10CM|Corros 2nd deg mul sites of shldr/up lmb, ex wrs/hnd, init|Corros 2nd deg mul sites of shldr/up lmb, ex wrs/hnd, init +C2871657|T037|AB|T22.699D|ICD10CM|Corros 2nd deg mul sites of shldr/up lmb, ex wrs/hnd, subs|Corros 2nd deg mul sites of shldr/up lmb, ex wrs/hnd, subs +C2871658|T037|AB|T22.699S|ICD10CM|Corros 2nd deg mul sites of shldr/up lmb, ex wrs/hnd, sqla|Corros 2nd deg mul sites of shldr/up lmb, ex wrs/hnd, sqla +C0452003|T037|AB|T22.7|ICD10CM|Corrosion of third degree of shldr/up lmb, except wrs/hnd|Corrosion of third degree of shldr/up lmb, except wrs/hnd +C0452003|T037|HT|T22.7|ICD10CM|Corrosion of third degree of shoulder and upper limb, except wrist and hand|Corrosion of third degree of shoulder and upper limb, except wrist and hand +C0452003|T037|PT|T22.7|ICD10|Corrosion of third degree of shoulder and upper limb, except wrist and hand|Corrosion of third degree of shoulder and upper limb, except wrist and hand +C2871659|T037|AB|T22.70|ICD10CM|Corros third deg of shldr/up lmb, except wrs/hnd, unsp site|Corros third deg of shldr/up lmb, except wrs/hnd, unsp site +C2871659|T037|HT|T22.70|ICD10CM|Corrosion of third degree of shoulder and upper limb, except wrist and hand, unspecified site|Corrosion of third degree of shoulder and upper limb, except wrist and hand, unspecified site +C2871660|T037|AB|T22.70XA|ICD10CM|Corros 3rd deg of shldr/up lmb, ex wrs/hnd, unsp site, init|Corros 3rd deg of shldr/up lmb, ex wrs/hnd, unsp site, init +C2871661|T037|AB|T22.70XD|ICD10CM|Corros 3rd deg of shldr/up lmb, ex wrs/hnd, unsp site, subs|Corros 3rd deg of shldr/up lmb, ex wrs/hnd, unsp site, subs +C2871662|T037|AB|T22.70XS|ICD10CM|Corros 3rd deg of shldr/up lmb, ex wrs/hnd, unsp site, sqla|Corros 3rd deg of shldr/up lmb, ex wrs/hnd, unsp site, sqla +C2871663|T037|AB|T22.71|ICD10CM|Corrosion of third degree of forearm|Corrosion of third degree of forearm +C2871663|T037|HT|T22.71|ICD10CM|Corrosion of third degree of forearm|Corrosion of third degree of forearm +C2871664|T037|AB|T22.711|ICD10CM|Corrosion of third degree of right forearm|Corrosion of third degree of right forearm +C2871664|T037|HT|T22.711|ICD10CM|Corrosion of third degree of right forearm|Corrosion of third degree of right forearm +C2871665|T037|AB|T22.711A|ICD10CM|Corrosion of third degree of right forearm, init encntr|Corrosion of third degree of right forearm, init encntr +C2871665|T037|PT|T22.711A|ICD10CM|Corrosion of third degree of right forearm, initial encounter|Corrosion of third degree of right forearm, initial encounter +C2871666|T037|AB|T22.711D|ICD10CM|Corrosion of third degree of right forearm, subs encntr|Corrosion of third degree of right forearm, subs encntr +C2871666|T037|PT|T22.711D|ICD10CM|Corrosion of third degree of right forearm, subsequent encounter|Corrosion of third degree of right forearm, subsequent encounter +C2871667|T037|PT|T22.711S|ICD10CM|Corrosion of third degree of right forearm, sequela|Corrosion of third degree of right forearm, sequela +C2871667|T037|AB|T22.711S|ICD10CM|Corrosion of third degree of right forearm, sequela|Corrosion of third degree of right forearm, sequela +C2871668|T037|AB|T22.712|ICD10CM|Corrosion of third degree of left forearm|Corrosion of third degree of left forearm +C2871668|T037|HT|T22.712|ICD10CM|Corrosion of third degree of left forearm|Corrosion of third degree of left forearm +C2871669|T037|AB|T22.712A|ICD10CM|Corrosion of third degree of left forearm, initial encounter|Corrosion of third degree of left forearm, initial encounter +C2871669|T037|PT|T22.712A|ICD10CM|Corrosion of third degree of left forearm, initial encounter|Corrosion of third degree of left forearm, initial encounter +C2871670|T037|AB|T22.712D|ICD10CM|Corrosion of third degree of left forearm, subs encntr|Corrosion of third degree of left forearm, subs encntr +C2871670|T037|PT|T22.712D|ICD10CM|Corrosion of third degree of left forearm, subsequent encounter|Corrosion of third degree of left forearm, subsequent encounter +C2871671|T037|PT|T22.712S|ICD10CM|Corrosion of third degree of left forearm, sequela|Corrosion of third degree of left forearm, sequela +C2871671|T037|AB|T22.712S|ICD10CM|Corrosion of third degree of left forearm, sequela|Corrosion of third degree of left forearm, sequela +C2871672|T037|AB|T22.719|ICD10CM|Corrosion of third degree of unspecified forearm|Corrosion of third degree of unspecified forearm +C2871672|T037|HT|T22.719|ICD10CM|Corrosion of third degree of unspecified forearm|Corrosion of third degree of unspecified forearm +C2871673|T037|AB|T22.719A|ICD10CM|Corrosion of third degree of unsp forearm, init encntr|Corrosion of third degree of unsp forearm, init encntr +C2871673|T037|PT|T22.719A|ICD10CM|Corrosion of third degree of unspecified forearm, initial encounter|Corrosion of third degree of unspecified forearm, initial encounter +C2871674|T037|AB|T22.719D|ICD10CM|Corrosion of third degree of unsp forearm, subs encntr|Corrosion of third degree of unsp forearm, subs encntr +C2871674|T037|PT|T22.719D|ICD10CM|Corrosion of third degree of unspecified forearm, subsequent encounter|Corrosion of third degree of unspecified forearm, subsequent encounter +C2871675|T037|PT|T22.719S|ICD10CM|Corrosion of third degree of unspecified forearm, sequela|Corrosion of third degree of unspecified forearm, sequela +C2871675|T037|AB|T22.719S|ICD10CM|Corrosion of third degree of unspecified forearm, sequela|Corrosion of third degree of unspecified forearm, sequela +C2871676|T037|AB|T22.72|ICD10CM|Corrosion of third degree of elbow|Corrosion of third degree of elbow +C2871676|T037|HT|T22.72|ICD10CM|Corrosion of third degree of elbow|Corrosion of third degree of elbow +C2871677|T037|AB|T22.721|ICD10CM|Corrosion of third degree of right elbow|Corrosion of third degree of right elbow +C2871677|T037|HT|T22.721|ICD10CM|Corrosion of third degree of right elbow|Corrosion of third degree of right elbow +C2871678|T037|PT|T22.721A|ICD10CM|Corrosion of third degree of right elbow, initial encounter|Corrosion of third degree of right elbow, initial encounter +C2871678|T037|AB|T22.721A|ICD10CM|Corrosion of third degree of right elbow, initial encounter|Corrosion of third degree of right elbow, initial encounter +C2871679|T037|AB|T22.721D|ICD10CM|Corrosion of third degree of right elbow, subs encntr|Corrosion of third degree of right elbow, subs encntr +C2871679|T037|PT|T22.721D|ICD10CM|Corrosion of third degree of right elbow, subsequent encounter|Corrosion of third degree of right elbow, subsequent encounter +C2871680|T037|PT|T22.721S|ICD10CM|Corrosion of third degree of right elbow, sequela|Corrosion of third degree of right elbow, sequela +C2871680|T037|AB|T22.721S|ICD10CM|Corrosion of third degree of right elbow, sequela|Corrosion of third degree of right elbow, sequela +C2871681|T037|AB|T22.722|ICD10CM|Corrosion of third degree of left elbow|Corrosion of third degree of left elbow +C2871681|T037|HT|T22.722|ICD10CM|Corrosion of third degree of left elbow|Corrosion of third degree of left elbow +C2871682|T037|PT|T22.722A|ICD10CM|Corrosion of third degree of left elbow, initial encounter|Corrosion of third degree of left elbow, initial encounter +C2871682|T037|AB|T22.722A|ICD10CM|Corrosion of third degree of left elbow, initial encounter|Corrosion of third degree of left elbow, initial encounter +C2871683|T037|AB|T22.722D|ICD10CM|Corrosion of third degree of left elbow, subs encntr|Corrosion of third degree of left elbow, subs encntr +C2871683|T037|PT|T22.722D|ICD10CM|Corrosion of third degree of left elbow, subsequent encounter|Corrosion of third degree of left elbow, subsequent encounter +C2871684|T037|PT|T22.722S|ICD10CM|Corrosion of third degree of left elbow, sequela|Corrosion of third degree of left elbow, sequela +C2871684|T037|AB|T22.722S|ICD10CM|Corrosion of third degree of left elbow, sequela|Corrosion of third degree of left elbow, sequela +C2871685|T037|AB|T22.729|ICD10CM|Corrosion of third degree of unspecified elbow|Corrosion of third degree of unspecified elbow +C2871685|T037|HT|T22.729|ICD10CM|Corrosion of third degree of unspecified elbow|Corrosion of third degree of unspecified elbow +C2871686|T037|AB|T22.729A|ICD10CM|Corrosion of third degree of unspecified elbow, init encntr|Corrosion of third degree of unspecified elbow, init encntr +C2871686|T037|PT|T22.729A|ICD10CM|Corrosion of third degree of unspecified elbow, initial encounter|Corrosion of third degree of unspecified elbow, initial encounter +C2871687|T037|AB|T22.729D|ICD10CM|Corrosion of third degree of unspecified elbow, subs encntr|Corrosion of third degree of unspecified elbow, subs encntr +C2871687|T037|PT|T22.729D|ICD10CM|Corrosion of third degree of unspecified elbow, subsequent encounter|Corrosion of third degree of unspecified elbow, subsequent encounter +C2871688|T037|PT|T22.729S|ICD10CM|Corrosion of third degree of unspecified elbow, sequela|Corrosion of third degree of unspecified elbow, sequela +C2871688|T037|AB|T22.729S|ICD10CM|Corrosion of third degree of unspecified elbow, sequela|Corrosion of third degree of unspecified elbow, sequela +C2871689|T037|AB|T22.73|ICD10CM|Corrosion of third degree of upper arm|Corrosion of third degree of upper arm +C2871689|T037|HT|T22.73|ICD10CM|Corrosion of third degree of upper arm|Corrosion of third degree of upper arm +C2871690|T037|AB|T22.731|ICD10CM|Corrosion of third degree of right upper arm|Corrosion of third degree of right upper arm +C2871690|T037|HT|T22.731|ICD10CM|Corrosion of third degree of right upper arm|Corrosion of third degree of right upper arm +C2871691|T037|AB|T22.731A|ICD10CM|Corrosion of third degree of right upper arm, init encntr|Corrosion of third degree of right upper arm, init encntr +C2871691|T037|PT|T22.731A|ICD10CM|Corrosion of third degree of right upper arm, initial encounter|Corrosion of third degree of right upper arm, initial encounter +C2871692|T037|AB|T22.731D|ICD10CM|Corrosion of third degree of right upper arm, subs encntr|Corrosion of third degree of right upper arm, subs encntr +C2871692|T037|PT|T22.731D|ICD10CM|Corrosion of third degree of right upper arm, subsequent encounter|Corrosion of third degree of right upper arm, subsequent encounter +C2871693|T037|PT|T22.731S|ICD10CM|Corrosion of third degree of right upper arm, sequela|Corrosion of third degree of right upper arm, sequela +C2871693|T037|AB|T22.731S|ICD10CM|Corrosion of third degree of right upper arm, sequela|Corrosion of third degree of right upper arm, sequela +C2871694|T037|AB|T22.732|ICD10CM|Corrosion of third degree of left upper arm|Corrosion of third degree of left upper arm +C2871694|T037|HT|T22.732|ICD10CM|Corrosion of third degree of left upper arm|Corrosion of third degree of left upper arm +C2871695|T037|AB|T22.732A|ICD10CM|Corrosion of third degree of left upper arm, init encntr|Corrosion of third degree of left upper arm, init encntr +C2871695|T037|PT|T22.732A|ICD10CM|Corrosion of third degree of left upper arm, initial encounter|Corrosion of third degree of left upper arm, initial encounter +C2871696|T037|AB|T22.732D|ICD10CM|Corrosion of third degree of left upper arm, subs encntr|Corrosion of third degree of left upper arm, subs encntr +C2871696|T037|PT|T22.732D|ICD10CM|Corrosion of third degree of left upper arm, subsequent encounter|Corrosion of third degree of left upper arm, subsequent encounter +C2871697|T037|PT|T22.732S|ICD10CM|Corrosion of third degree of left upper arm, sequela|Corrosion of third degree of left upper arm, sequela +C2871697|T037|AB|T22.732S|ICD10CM|Corrosion of third degree of left upper arm, sequela|Corrosion of third degree of left upper arm, sequela +C2871698|T037|AB|T22.739|ICD10CM|Corrosion of third degree of unspecified upper arm|Corrosion of third degree of unspecified upper arm +C2871698|T037|HT|T22.739|ICD10CM|Corrosion of third degree of unspecified upper arm|Corrosion of third degree of unspecified upper arm +C2871699|T037|AB|T22.739A|ICD10CM|Corrosion of third degree of unsp upper arm, init encntr|Corrosion of third degree of unsp upper arm, init encntr +C2871699|T037|PT|T22.739A|ICD10CM|Corrosion of third degree of unspecified upper arm, initial encounter|Corrosion of third degree of unspecified upper arm, initial encounter +C2871700|T037|AB|T22.739D|ICD10CM|Corrosion of third degree of unsp upper arm, subs encntr|Corrosion of third degree of unsp upper arm, subs encntr +C2871700|T037|PT|T22.739D|ICD10CM|Corrosion of third degree of unspecified upper arm, subsequent encounter|Corrosion of third degree of unspecified upper arm, subsequent encounter +C2871701|T037|PT|T22.739S|ICD10CM|Corrosion of third degree of unspecified upper arm, sequela|Corrosion of third degree of unspecified upper arm, sequela +C2871701|T037|AB|T22.739S|ICD10CM|Corrosion of third degree of unspecified upper arm, sequela|Corrosion of third degree of unspecified upper arm, sequela +C2871702|T037|AB|T22.74|ICD10CM|Corrosion of third degree of axilla|Corrosion of third degree of axilla +C2871702|T037|HT|T22.74|ICD10CM|Corrosion of third degree of axilla|Corrosion of third degree of axilla +C2871703|T037|AB|T22.741|ICD10CM|Corrosion of third degree of right axilla|Corrosion of third degree of right axilla +C2871703|T037|HT|T22.741|ICD10CM|Corrosion of third degree of right axilla|Corrosion of third degree of right axilla +C2871704|T037|AB|T22.741A|ICD10CM|Corrosion of third degree of right axilla, initial encounter|Corrosion of third degree of right axilla, initial encounter +C2871704|T037|PT|T22.741A|ICD10CM|Corrosion of third degree of right axilla, initial encounter|Corrosion of third degree of right axilla, initial encounter +C2871705|T037|AB|T22.741D|ICD10CM|Corrosion of third degree of right axilla, subs encntr|Corrosion of third degree of right axilla, subs encntr +C2871705|T037|PT|T22.741D|ICD10CM|Corrosion of third degree of right axilla, subsequent encounter|Corrosion of third degree of right axilla, subsequent encounter +C2871706|T037|PT|T22.741S|ICD10CM|Corrosion of third degree of right axilla, sequela|Corrosion of third degree of right axilla, sequela +C2871706|T037|AB|T22.741S|ICD10CM|Corrosion of third degree of right axilla, sequela|Corrosion of third degree of right axilla, sequela +C2871707|T037|AB|T22.742|ICD10CM|Corrosion of third degree of left axilla|Corrosion of third degree of left axilla +C2871707|T037|HT|T22.742|ICD10CM|Corrosion of third degree of left axilla|Corrosion of third degree of left axilla +C2871708|T037|PT|T22.742A|ICD10CM|Corrosion of third degree of left axilla, initial encounter|Corrosion of third degree of left axilla, initial encounter +C2871708|T037|AB|T22.742A|ICD10CM|Corrosion of third degree of left axilla, initial encounter|Corrosion of third degree of left axilla, initial encounter +C2871709|T037|AB|T22.742D|ICD10CM|Corrosion of third degree of left axilla, subs encntr|Corrosion of third degree of left axilla, subs encntr +C2871709|T037|PT|T22.742D|ICD10CM|Corrosion of third degree of left axilla, subsequent encounter|Corrosion of third degree of left axilla, subsequent encounter +C2871710|T037|PT|T22.742S|ICD10CM|Corrosion of third degree of left axilla, sequela|Corrosion of third degree of left axilla, sequela +C2871710|T037|AB|T22.742S|ICD10CM|Corrosion of third degree of left axilla, sequela|Corrosion of third degree of left axilla, sequela +C2871711|T037|AB|T22.749|ICD10CM|Corrosion of third degree of unspecified axilla|Corrosion of third degree of unspecified axilla +C2871711|T037|HT|T22.749|ICD10CM|Corrosion of third degree of unspecified axilla|Corrosion of third degree of unspecified axilla +C2871712|T037|AB|T22.749A|ICD10CM|Corrosion of third degree of unspecified axilla, init encntr|Corrosion of third degree of unspecified axilla, init encntr +C2871712|T037|PT|T22.749A|ICD10CM|Corrosion of third degree of unspecified axilla, initial encounter|Corrosion of third degree of unspecified axilla, initial encounter +C2871713|T037|AB|T22.749D|ICD10CM|Corrosion of third degree of unspecified axilla, subs encntr|Corrosion of third degree of unspecified axilla, subs encntr +C2871713|T037|PT|T22.749D|ICD10CM|Corrosion of third degree of unspecified axilla, subsequent encounter|Corrosion of third degree of unspecified axilla, subsequent encounter +C2871714|T037|PT|T22.749S|ICD10CM|Corrosion of third degree of unspecified axilla, sequela|Corrosion of third degree of unspecified axilla, sequela +C2871714|T037|AB|T22.749S|ICD10CM|Corrosion of third degree of unspecified axilla, sequela|Corrosion of third degree of unspecified axilla, sequela +C2871715|T037|AB|T22.75|ICD10CM|Corrosion of third degree of shoulder|Corrosion of third degree of shoulder +C2871715|T037|HT|T22.75|ICD10CM|Corrosion of third degree of shoulder|Corrosion of third degree of shoulder +C2871716|T037|AB|T22.751|ICD10CM|Corrosion of third degree of right shoulder|Corrosion of third degree of right shoulder +C2871716|T037|HT|T22.751|ICD10CM|Corrosion of third degree of right shoulder|Corrosion of third degree of right shoulder +C2871717|T037|AB|T22.751A|ICD10CM|Corrosion of third degree of right shoulder, init encntr|Corrosion of third degree of right shoulder, init encntr +C2871717|T037|PT|T22.751A|ICD10CM|Corrosion of third degree of right shoulder, initial encounter|Corrosion of third degree of right shoulder, initial encounter +C2871718|T037|AB|T22.751D|ICD10CM|Corrosion of third degree of right shoulder, subs encntr|Corrosion of third degree of right shoulder, subs encntr +C2871718|T037|PT|T22.751D|ICD10CM|Corrosion of third degree of right shoulder, subsequent encounter|Corrosion of third degree of right shoulder, subsequent encounter +C2871719|T037|PT|T22.751S|ICD10CM|Corrosion of third degree of right shoulder, sequela|Corrosion of third degree of right shoulder, sequela +C2871719|T037|AB|T22.751S|ICD10CM|Corrosion of third degree of right shoulder, sequela|Corrosion of third degree of right shoulder, sequela +C2871720|T037|AB|T22.752|ICD10CM|Corrosion of third degree of left shoulder|Corrosion of third degree of left shoulder +C2871720|T037|HT|T22.752|ICD10CM|Corrosion of third degree of left shoulder|Corrosion of third degree of left shoulder +C2871721|T037|AB|T22.752A|ICD10CM|Corrosion of third degree of left shoulder, init encntr|Corrosion of third degree of left shoulder, init encntr +C2871721|T037|PT|T22.752A|ICD10CM|Corrosion of third degree of left shoulder, initial encounter|Corrosion of third degree of left shoulder, initial encounter +C2871722|T037|AB|T22.752D|ICD10CM|Corrosion of third degree of left shoulder, subs encntr|Corrosion of third degree of left shoulder, subs encntr +C2871722|T037|PT|T22.752D|ICD10CM|Corrosion of third degree of left shoulder, subsequent encounter|Corrosion of third degree of left shoulder, subsequent encounter +C2871723|T037|PT|T22.752S|ICD10CM|Corrosion of third degree of left shoulder, sequela|Corrosion of third degree of left shoulder, sequela +C2871723|T037|AB|T22.752S|ICD10CM|Corrosion of third degree of left shoulder, sequela|Corrosion of third degree of left shoulder, sequela +C2871724|T037|AB|T22.759|ICD10CM|Corrosion of third degree of unspecified shoulder|Corrosion of third degree of unspecified shoulder +C2871724|T037|HT|T22.759|ICD10CM|Corrosion of third degree of unspecified shoulder|Corrosion of third degree of unspecified shoulder +C2871725|T037|AB|T22.759A|ICD10CM|Corrosion of third degree of unsp shoulder, init encntr|Corrosion of third degree of unsp shoulder, init encntr +C2871725|T037|PT|T22.759A|ICD10CM|Corrosion of third degree of unspecified shoulder, initial encounter|Corrosion of third degree of unspecified shoulder, initial encounter +C2871726|T037|AB|T22.759D|ICD10CM|Corrosion of third degree of unsp shoulder, subs encntr|Corrosion of third degree of unsp shoulder, subs encntr +C2871726|T037|PT|T22.759D|ICD10CM|Corrosion of third degree of unspecified shoulder, subsequent encounter|Corrosion of third degree of unspecified shoulder, subsequent encounter +C2871727|T037|PT|T22.759S|ICD10CM|Corrosion of third degree of unspecified shoulder, sequela|Corrosion of third degree of unspecified shoulder, sequela +C2871727|T037|AB|T22.759S|ICD10CM|Corrosion of third degree of unspecified shoulder, sequela|Corrosion of third degree of unspecified shoulder, sequela +C2871728|T037|AB|T22.76|ICD10CM|Corrosion of third degree of scapular region|Corrosion of third degree of scapular region +C2871728|T037|HT|T22.76|ICD10CM|Corrosion of third degree of scapular region|Corrosion of third degree of scapular region +C2871729|T037|AB|T22.761|ICD10CM|Corrosion of third degree of right scapular region|Corrosion of third degree of right scapular region +C2871729|T037|HT|T22.761|ICD10CM|Corrosion of third degree of right scapular region|Corrosion of third degree of right scapular region +C2871730|T037|AB|T22.761A|ICD10CM|Corrosion of third degree of right scapular region, init|Corrosion of third degree of right scapular region, init +C2871730|T037|PT|T22.761A|ICD10CM|Corrosion of third degree of right scapular region, initial encounter|Corrosion of third degree of right scapular region, initial encounter +C2871731|T037|AB|T22.761D|ICD10CM|Corrosion of third degree of right scapular region, subs|Corrosion of third degree of right scapular region, subs +C2871731|T037|PT|T22.761D|ICD10CM|Corrosion of third degree of right scapular region, subsequent encounter|Corrosion of third degree of right scapular region, subsequent encounter +C2871732|T037|PT|T22.761S|ICD10CM|Corrosion of third degree of right scapular region, sequela|Corrosion of third degree of right scapular region, sequela +C2871732|T037|AB|T22.761S|ICD10CM|Corrosion of third degree of right scapular region, sequela|Corrosion of third degree of right scapular region, sequela +C2871733|T037|AB|T22.762|ICD10CM|Corrosion of third degree of left scapular region|Corrosion of third degree of left scapular region +C2871733|T037|HT|T22.762|ICD10CM|Corrosion of third degree of left scapular region|Corrosion of third degree of left scapular region +C2871734|T037|AB|T22.762A|ICD10CM|Corrosion of third degree of left scapular region, init|Corrosion of third degree of left scapular region, init +C2871734|T037|PT|T22.762A|ICD10CM|Corrosion of third degree of left scapular region, initial encounter|Corrosion of third degree of left scapular region, initial encounter +C2871735|T037|AB|T22.762D|ICD10CM|Corrosion of third degree of left scapular region, subs|Corrosion of third degree of left scapular region, subs +C2871735|T037|PT|T22.762D|ICD10CM|Corrosion of third degree of left scapular region, subsequent encounter|Corrosion of third degree of left scapular region, subsequent encounter +C2871736|T037|PT|T22.762S|ICD10CM|Corrosion of third degree of left scapular region, sequela|Corrosion of third degree of left scapular region, sequela +C2871736|T037|AB|T22.762S|ICD10CM|Corrosion of third degree of left scapular region, sequela|Corrosion of third degree of left scapular region, sequela +C2871737|T037|AB|T22.769|ICD10CM|Corrosion of third degree of unspecified scapular region|Corrosion of third degree of unspecified scapular region +C2871737|T037|HT|T22.769|ICD10CM|Corrosion of third degree of unspecified scapular region|Corrosion of third degree of unspecified scapular region +C2871738|T037|AB|T22.769A|ICD10CM|Corrosion of third degree of unsp scapular region, init|Corrosion of third degree of unsp scapular region, init +C2871738|T037|PT|T22.769A|ICD10CM|Corrosion of third degree of unspecified scapular region, initial encounter|Corrosion of third degree of unspecified scapular region, initial encounter +C2871739|T037|AB|T22.769D|ICD10CM|Corrosion of third degree of unsp scapular region, subs|Corrosion of third degree of unsp scapular region, subs +C2871739|T037|PT|T22.769D|ICD10CM|Corrosion of third degree of unspecified scapular region, subsequent encounter|Corrosion of third degree of unspecified scapular region, subsequent encounter +C2871740|T037|AB|T22.769S|ICD10CM|Corrosion of third degree of unsp scapular region, sequela|Corrosion of third degree of unsp scapular region, sequela +C2871740|T037|PT|T22.769S|ICD10CM|Corrosion of third degree of unspecified scapular region, sequela|Corrosion of third degree of unspecified scapular region, sequela +C2871741|T037|AB|T22.79|ICD10CM|Corros 3rd deg mu sites of shldr/up lmb, except wrs/hnd|Corros 3rd deg mu sites of shldr/up lmb, except wrs/hnd +C2871741|T037|HT|T22.79|ICD10CM|Corrosion of third degree of multiple sites of shoulder and upper limb, except wrist and hand|Corrosion of third degree of multiple sites of shoulder and upper limb, except wrist and hand +C2871742|T037|AB|T22.791|ICD10CM|Corros 3rd deg mu sites of right shldr/up lmb, ex wrs/hnd|Corros 3rd deg mu sites of right shldr/up lmb, ex wrs/hnd +C2871742|T037|HT|T22.791|ICD10CM|Corrosion of third degree of multiple sites of right shoulder and upper limb, except wrist and hand|Corrosion of third degree of multiple sites of right shoulder and upper limb, except wrist and hand +C2871743|T037|AB|T22.791A|ICD10CM|Corros 3rd deg mu sites of r shldr/up lmb, ex wrs/hnd, init|Corros 3rd deg mu sites of r shldr/up lmb, ex wrs/hnd, init +C2871744|T037|AB|T22.791D|ICD10CM|Corros 3rd deg mu sites of r shldr/up lmb, ex wrs/hnd, subs|Corros 3rd deg mu sites of r shldr/up lmb, ex wrs/hnd, subs +C2871745|T037|AB|T22.791S|ICD10CM|Corros 3rd deg mu sites of r shldr/up lmb, ex wrs/hnd, sqla|Corros 3rd deg mu sites of r shldr/up lmb, ex wrs/hnd, sqla +C2871746|T037|AB|T22.792|ICD10CM|Corros 3rd deg mu sites of left shldr/up lmb, except wrs/hnd|Corros 3rd deg mu sites of left shldr/up lmb, except wrs/hnd +C2871746|T037|HT|T22.792|ICD10CM|Corrosion of third degree of multiple sites of left shoulder and upper limb, except wrist and hand|Corrosion of third degree of multiple sites of left shoulder and upper limb, except wrist and hand +C2871747|T037|AB|T22.792A|ICD10CM|Corros 3rd deg mu site of l shldr/up lmb, ex wrs/hnd, init|Corros 3rd deg mu site of l shldr/up lmb, ex wrs/hnd, init +C2871748|T037|AB|T22.792D|ICD10CM|Corros 3rd deg mu site of l shldr/up lmb, ex wrs/hnd, subs|Corros 3rd deg mu site of l shldr/up lmb, ex wrs/hnd, subs +C2871749|T037|AB|T22.792S|ICD10CM|Corros 3rd deg mu site of l shldr/up lmb, ex wrs/hnd, sqla|Corros 3rd deg mu site of l shldr/up lmb, ex wrs/hnd, sqla +C2871741|T037|AB|T22.799|ICD10CM|Corros 3rd deg mu sites of shldr/up lmb, except wrs/hnd|Corros 3rd deg mu sites of shldr/up lmb, except wrs/hnd +C2871751|T037|AB|T22.799A|ICD10CM|Corros 3rd deg mu sites of shldr/up lmb, ex wrs/hnd, init|Corros 3rd deg mu sites of shldr/up lmb, ex wrs/hnd, init +C2871752|T037|AB|T22.799D|ICD10CM|Corros 3rd deg mu sites of shldr/up lmb, ex wrs/hnd, subs|Corros 3rd deg mu sites of shldr/up lmb, ex wrs/hnd, subs +C2871753|T037|AB|T22.799S|ICD10CM|Corros 3rd deg mu sites of shldr/up lmb, ex wrs/hnd, sqla|Corros 3rd deg mu sites of shldr/up lmb, ex wrs/hnd, sqla +C0496040|T037|HT|T23|ICD10|Burn and corrosion of wrist and hand|Burn and corrosion of wrist and hand +C0496040|T037|AB|T23|ICD10CM|Burn and corrosion of wrist and hand|Burn and corrosion of wrist and hand +C0496040|T037|HT|T23|ICD10CM|Burn and corrosion of wrist and hand|Burn and corrosion of wrist and hand +C1812619|T037|PT|T23.0|ICD10|Burn of unspecified degree of wrist and hand|Burn of unspecified degree of wrist and hand +C1812619|T037|HT|T23.0|ICD10CM|Burn of unspecified degree of wrist and hand|Burn of unspecified degree of wrist and hand +C1812619|T037|AB|T23.0|ICD10CM|Burn of unspecified degree of wrist and hand|Burn of unspecified degree of wrist and hand +C0274089|T037|HT|T23.00|ICD10CM|Burn of unspecified degree of hand, unspecified site|Burn of unspecified degree of hand, unspecified site +C0274089|T037|AB|T23.00|ICD10CM|Burn of unspecified degree of hand, unspecified site|Burn of unspecified degree of hand, unspecified site +C2871754|T037|AB|T23.001|ICD10CM|Burn of unspecified degree of right hand, unspecified site|Burn of unspecified degree of right hand, unspecified site +C2871754|T037|HT|T23.001|ICD10CM|Burn of unspecified degree of right hand, unspecified site|Burn of unspecified degree of right hand, unspecified site +C2871755|T037|AB|T23.001A|ICD10CM|Burn of unsp degree of right hand, unsp site, init encntr|Burn of unsp degree of right hand, unsp site, init encntr +C2871755|T037|PT|T23.001A|ICD10CM|Burn of unspecified degree of right hand, unspecified site, initial encounter|Burn of unspecified degree of right hand, unspecified site, initial encounter +C2871756|T037|AB|T23.001D|ICD10CM|Burn of unsp degree of right hand, unsp site, subs encntr|Burn of unsp degree of right hand, unsp site, subs encntr +C2871756|T037|PT|T23.001D|ICD10CM|Burn of unspecified degree of right hand, unspecified site, subsequent encounter|Burn of unspecified degree of right hand, unspecified site, subsequent encounter +C2871757|T037|AB|T23.001S|ICD10CM|Burn of unsp degree of right hand, unspecified site, sequela|Burn of unsp degree of right hand, unspecified site, sequela +C2871757|T037|PT|T23.001S|ICD10CM|Burn of unspecified degree of right hand, unspecified site, sequela|Burn of unspecified degree of right hand, unspecified site, sequela +C2871758|T037|AB|T23.002|ICD10CM|Burn of unspecified degree of left hand, unspecified site|Burn of unspecified degree of left hand, unspecified site +C2871758|T037|HT|T23.002|ICD10CM|Burn of unspecified degree of left hand, unspecified site|Burn of unspecified degree of left hand, unspecified site +C2871759|T037|AB|T23.002A|ICD10CM|Burn of unsp degree of left hand, unsp site, init encntr|Burn of unsp degree of left hand, unsp site, init encntr +C2871759|T037|PT|T23.002A|ICD10CM|Burn of unspecified degree of left hand, unspecified site, initial encounter|Burn of unspecified degree of left hand, unspecified site, initial encounter +C2871760|T037|AB|T23.002D|ICD10CM|Burn of unsp degree of left hand, unsp site, subs encntr|Burn of unsp degree of left hand, unsp site, subs encntr +C2871760|T037|PT|T23.002D|ICD10CM|Burn of unspecified degree of left hand, unspecified site, subsequent encounter|Burn of unspecified degree of left hand, unspecified site, subsequent encounter +C2871761|T037|AB|T23.002S|ICD10CM|Burn of unsp degree of left hand, unspecified site, sequela|Burn of unsp degree of left hand, unspecified site, sequela +C2871761|T037|PT|T23.002S|ICD10CM|Burn of unspecified degree of left hand, unspecified site, sequela|Burn of unspecified degree of left hand, unspecified site, sequela +C2871762|T037|AB|T23.009|ICD10CM|Burn of unsp degree of unspecified hand, unspecified site|Burn of unsp degree of unspecified hand, unspecified site +C2871762|T037|HT|T23.009|ICD10CM|Burn of unspecified degree of unspecified hand, unspecified site|Burn of unspecified degree of unspecified hand, unspecified site +C2871763|T037|AB|T23.009A|ICD10CM|Burn of unsp degree of unsp hand, unsp site, init encntr|Burn of unsp degree of unsp hand, unsp site, init encntr +C2871763|T037|PT|T23.009A|ICD10CM|Burn of unspecified degree of unspecified hand, unspecified site, initial encounter|Burn of unspecified degree of unspecified hand, unspecified site, initial encounter +C2871764|T037|AB|T23.009D|ICD10CM|Burn of unsp degree of unsp hand, unsp site, subs encntr|Burn of unsp degree of unsp hand, unsp site, subs encntr +C2871764|T037|PT|T23.009D|ICD10CM|Burn of unspecified degree of unspecified hand, unspecified site, subsequent encounter|Burn of unspecified degree of unspecified hand, unspecified site, subsequent encounter +C2871765|T037|AB|T23.009S|ICD10CM|Burn of unsp degree of unsp hand, unspecified site, sequela|Burn of unsp degree of unsp hand, unspecified site, sequela +C2871765|T037|PT|T23.009S|ICD10CM|Burn of unspecified degree of unspecified hand, unspecified site, sequela|Burn of unspecified degree of unspecified hand, unspecified site, sequela +C0161204|T037|HT|T23.01|ICD10CM|Burn of unspecified degree of thumb (nail)|Burn of unspecified degree of thumb (nail) +C0161204|T037|AB|T23.01|ICD10CM|Burn of unspecified degree of thumb (nail)|Burn of unspecified degree of thumb (nail) +C2871766|T037|AB|T23.011|ICD10CM|Burn of unspecified degree of right thumb (nail)|Burn of unspecified degree of right thumb (nail) +C2871766|T037|HT|T23.011|ICD10CM|Burn of unspecified degree of right thumb (nail)|Burn of unspecified degree of right thumb (nail) +C2871767|T037|AB|T23.011A|ICD10CM|Burn of unsp degree of right thumb (nail), init encntr|Burn of unsp degree of right thumb (nail), init encntr +C2871767|T037|PT|T23.011A|ICD10CM|Burn of unspecified degree of right thumb (nail), initial encounter|Burn of unspecified degree of right thumb (nail), initial encounter +C2871768|T037|AB|T23.011D|ICD10CM|Burn of unsp degree of right thumb (nail), subs encntr|Burn of unsp degree of right thumb (nail), subs encntr +C2871768|T037|PT|T23.011D|ICD10CM|Burn of unspecified degree of right thumb (nail), subsequent encounter|Burn of unspecified degree of right thumb (nail), subsequent encounter +C2871769|T037|PT|T23.011S|ICD10CM|Burn of unspecified degree of right thumb (nail), sequela|Burn of unspecified degree of right thumb (nail), sequela +C2871769|T037|AB|T23.011S|ICD10CM|Burn of unspecified degree of right thumb (nail), sequela|Burn of unspecified degree of right thumb (nail), sequela +C2871770|T037|AB|T23.012|ICD10CM|Burn of unspecified degree of left thumb (nail)|Burn of unspecified degree of left thumb (nail) +C2871770|T037|HT|T23.012|ICD10CM|Burn of unspecified degree of left thumb (nail)|Burn of unspecified degree of left thumb (nail) +C2871771|T037|AB|T23.012A|ICD10CM|Burn of unspecified degree of left thumb (nail), init encntr|Burn of unspecified degree of left thumb (nail), init encntr +C2871771|T037|PT|T23.012A|ICD10CM|Burn of unspecified degree of left thumb (nail), initial encounter|Burn of unspecified degree of left thumb (nail), initial encounter +C2871772|T037|AB|T23.012D|ICD10CM|Burn of unspecified degree of left thumb (nail), subs encntr|Burn of unspecified degree of left thumb (nail), subs encntr +C2871772|T037|PT|T23.012D|ICD10CM|Burn of unspecified degree of left thumb (nail), subsequent encounter|Burn of unspecified degree of left thumb (nail), subsequent encounter +C2871773|T037|PT|T23.012S|ICD10CM|Burn of unspecified degree of left thumb (nail), sequela|Burn of unspecified degree of left thumb (nail), sequela +C2871773|T037|AB|T23.012S|ICD10CM|Burn of unspecified degree of left thumb (nail), sequela|Burn of unspecified degree of left thumb (nail), sequela +C2871774|T037|AB|T23.019|ICD10CM|Burn of unspecified degree of unspecified thumb (nail)|Burn of unspecified degree of unspecified thumb (nail) +C2871774|T037|HT|T23.019|ICD10CM|Burn of unspecified degree of unspecified thumb (nail)|Burn of unspecified degree of unspecified thumb (nail) +C2871775|T037|AB|T23.019A|ICD10CM|Burn of unsp degree of unspecified thumb (nail), init encntr|Burn of unsp degree of unspecified thumb (nail), init encntr +C2871775|T037|PT|T23.019A|ICD10CM|Burn of unspecified degree of unspecified thumb (nail), initial encounter|Burn of unspecified degree of unspecified thumb (nail), initial encounter +C2871776|T037|AB|T23.019D|ICD10CM|Burn of unsp degree of unspecified thumb (nail), subs encntr|Burn of unsp degree of unspecified thumb (nail), subs encntr +C2871776|T037|PT|T23.019D|ICD10CM|Burn of unspecified degree of unspecified thumb (nail), subsequent encounter|Burn of unspecified degree of unspecified thumb (nail), subsequent encounter +C2871777|T037|AB|T23.019S|ICD10CM|Burn of unsp degree of unspecified thumb (nail), sequela|Burn of unsp degree of unspecified thumb (nail), sequela +C2871777|T037|PT|T23.019S|ICD10CM|Burn of unspecified degree of unspecified thumb (nail), sequela|Burn of unspecified degree of unspecified thumb (nail), sequela +C2871778|T037|AB|T23.02|ICD10CM|Burn of unsp degree of single finger (nail) except thumb|Burn of unsp degree of single finger (nail) except thumb +C2871778|T037|HT|T23.02|ICD10CM|Burn of unspecified degree of single finger (nail) except thumb|Burn of unspecified degree of single finger (nail) except thumb +C2871779|T037|AB|T23.021|ICD10CM|Burn of unsp degree of single r finger (nail) except thumb|Burn of unsp degree of single r finger (nail) except thumb +C2871779|T037|HT|T23.021|ICD10CM|Burn of unspecified degree of single right finger (nail) except thumb|Burn of unspecified degree of single right finger (nail) except thumb +C2871780|T037|PT|T23.021A|ICD10CM|Burn of unspecified degree of single right finger (nail) except thumb, initial encounter|Burn of unspecified degree of single right finger (nail) except thumb, initial encounter +C2871780|T037|AB|T23.021A|ICD10CM|Burn unsp degree of single r finger except thumb, init|Burn unsp degree of single r finger except thumb, init +C2871781|T037|PT|T23.021D|ICD10CM|Burn of unspecified degree of single right finger (nail) except thumb, subsequent encounter|Burn of unspecified degree of single right finger (nail) except thumb, subsequent encounter +C2871781|T037|AB|T23.021D|ICD10CM|Burn unsp degree of single r finger except thumb, subs|Burn unsp degree of single r finger except thumb, subs +C2871782|T037|PT|T23.021S|ICD10CM|Burn of unspecified degree of single right finger (nail) except thumb, sequela|Burn of unspecified degree of single right finger (nail) except thumb, sequela +C2871782|T037|AB|T23.021S|ICD10CM|Burn unsp degree of single r finger except thumb, sqla|Burn unsp degree of single r finger except thumb, sqla +C2871783|T037|AB|T23.022|ICD10CM|Burn of unsp degree of single l finger (nail) except thumb|Burn of unsp degree of single l finger (nail) except thumb +C2871783|T037|HT|T23.022|ICD10CM|Burn of unspecified degree of single left finger (nail) except thumb|Burn of unspecified degree of single left finger (nail) except thumb +C2871784|T037|PT|T23.022A|ICD10CM|Burn of unspecified degree of single left finger (nail) except thumb, initial encounter|Burn of unspecified degree of single left finger (nail) except thumb, initial encounter +C2871784|T037|AB|T23.022A|ICD10CM|Burn unsp degree of single l finger except thumb, init|Burn unsp degree of single l finger except thumb, init +C2871785|T037|PT|T23.022D|ICD10CM|Burn of unspecified degree of single left finger (nail) except thumb, subsequent encounter|Burn of unspecified degree of single left finger (nail) except thumb, subsequent encounter +C2871785|T037|AB|T23.022D|ICD10CM|Burn unsp degree of single l finger except thumb, subs|Burn unsp degree of single l finger except thumb, subs +C2871786|T037|PT|T23.022S|ICD10CM|Burn of unspecified degree of single left finger (nail) except thumb, sequela|Burn of unspecified degree of single left finger (nail) except thumb, sequela +C2871786|T037|AB|T23.022S|ICD10CM|Burn unsp degree of single l finger except thumb, sqla|Burn unsp degree of single l finger except thumb, sqla +C2871787|T037|HT|T23.029|ICD10CM|Burn of unspecified degree of unspecified single finger (nail) except thumb|Burn of unspecified degree of unspecified single finger (nail) except thumb +C2871787|T037|AB|T23.029|ICD10CM|Burn unsp degree of unsp single finger (nail) except thumb|Burn unsp degree of unsp single finger (nail) except thumb +C2871788|T037|PT|T23.029A|ICD10CM|Burn of unspecified degree of unspecified single finger (nail) except thumb, initial encounter|Burn of unspecified degree of unspecified single finger (nail) except thumb, initial encounter +C2871788|T037|AB|T23.029A|ICD10CM|Burn unsp degree of unsp single finger except thumb, init|Burn unsp degree of unsp single finger except thumb, init +C2871789|T037|PT|T23.029D|ICD10CM|Burn of unspecified degree of unspecified single finger (nail) except thumb, subsequent encounter|Burn of unspecified degree of unspecified single finger (nail) except thumb, subsequent encounter +C2871789|T037|AB|T23.029D|ICD10CM|Burn unsp degree of unsp single finger except thumb, subs|Burn unsp degree of unsp single finger except thumb, subs +C2871790|T037|PT|T23.029S|ICD10CM|Burn of unspecified degree of unspecified single finger (nail) except thumb, sequela|Burn of unspecified degree of unspecified single finger (nail) except thumb, sequela +C2871790|T037|AB|T23.029S|ICD10CM|Burn unsp degree of unsp single finger except thumb, sqla|Burn unsp degree of unsp single finger except thumb, sqla +C2871791|T037|AB|T23.03|ICD10CM|Burn of unsp deg mult fingers (nail), not including thumb|Burn of unsp deg mult fingers (nail), not including thumb +C2871791|T037|HT|T23.03|ICD10CM|Burn of unspecified degree of multiple fingers (nail), not including thumb|Burn of unspecified degree of multiple fingers (nail), not including thumb +C2871792|T037|AB|T23.031|ICD10CM|Burn of unsp deg mult right fingers (nail), not inc thumb|Burn of unsp deg mult right fingers (nail), not inc thumb +C2871792|T037|HT|T23.031|ICD10CM|Burn of unspecified degree of multiple right fingers (nail), not including thumb|Burn of unspecified degree of multiple right fingers (nail), not including thumb +C2871793|T037|PT|T23.031A|ICD10CM|Burn of unspecified degree of multiple right fingers (nail), not including thumb, initial encounter|Burn of unspecified degree of multiple right fingers (nail), not including thumb, initial encounter +C2871793|T037|AB|T23.031A|ICD10CM|Burn unsp deg mult right fingers (nail), not inc thumb, init|Burn unsp deg mult right fingers (nail), not inc thumb, init +C2871794|T037|AB|T23.031D|ICD10CM|Burn unsp deg mult right fingers (nail), not inc thumb, subs|Burn unsp deg mult right fingers (nail), not inc thumb, subs +C2871795|T037|PT|T23.031S|ICD10CM|Burn of unspecified degree of multiple right fingers (nail), not including thumb, sequela|Burn of unspecified degree of multiple right fingers (nail), not including thumb, sequela +C2871795|T037|AB|T23.031S|ICD10CM|Burn unsp deg mult right fngr (nail), not inc thumb, sequela|Burn unsp deg mult right fngr (nail), not inc thumb, sequela +C2871796|T037|AB|T23.032|ICD10CM|Burn of unsp deg mult left fingers (nail), not inc thumb|Burn of unsp deg mult left fingers (nail), not inc thumb +C2871796|T037|HT|T23.032|ICD10CM|Burn of unspecified degree of multiple left fingers (nail), not including thumb|Burn of unspecified degree of multiple left fingers (nail), not including thumb +C2871797|T037|PT|T23.032A|ICD10CM|Burn of unspecified degree of multiple left fingers (nail), not including thumb, initial encounter|Burn of unspecified degree of multiple left fingers (nail), not including thumb, initial encounter +C2871797|T037|AB|T23.032A|ICD10CM|Burn unsp deg mult left fingers (nail), not inc thumb, init|Burn unsp deg mult left fingers (nail), not inc thumb, init +C2871798|T037|AB|T23.032D|ICD10CM|Burn unsp deg mult left fingers (nail), not inc thumb, subs|Burn unsp deg mult left fingers (nail), not inc thumb, subs +C2871799|T037|PT|T23.032S|ICD10CM|Burn of unspecified degree of multiple left fingers (nail), not including thumb, sequela|Burn of unspecified degree of multiple left fingers (nail), not including thumb, sequela +C2871799|T037|AB|T23.032S|ICD10CM|Burn unsp deg mult left fngr (nail), not inc thumb, sequela|Burn unsp deg mult left fngr (nail), not inc thumb, sequela +C2871800|T037|HT|T23.039|ICD10CM|Burn of unspecified degree of unspecified multiple fingers (nail), not including thumb|Burn of unspecified degree of unspecified multiple fingers (nail), not including thumb +C2871800|T037|AB|T23.039|ICD10CM|Burn unsp degree of unsp mult fingers (nail), not inc thumb|Burn unsp degree of unsp mult fingers (nail), not inc thumb +C2871801|T037|AB|T23.039A|ICD10CM|Burn unsp degree of unsp mult fngr, not inc thumb, init|Burn unsp degree of unsp mult fngr, not inc thumb, init +C2871802|T037|AB|T23.039D|ICD10CM|Burn unsp degree of unsp mult fngr, not inc thumb, subs|Burn unsp degree of unsp mult fngr, not inc thumb, subs +C2871803|T037|PT|T23.039S|ICD10CM|Burn of unspecified degree of unspecified multiple fingers (nail), not including thumb, sequela|Burn of unspecified degree of unspecified multiple fingers (nail), not including thumb, sequela +C2871803|T037|AB|T23.039S|ICD10CM|Burn unsp degree of unsp mult fngr, not inc thumb, sqla|Burn unsp degree of unsp mult fngr, not inc thumb, sqla +C2871804|T037|AB|T23.04|ICD10CM|Burn of unsp deg mult fingers (nail), including thumb|Burn of unsp deg mult fingers (nail), including thumb +C2871804|T037|HT|T23.04|ICD10CM|Burn of unspecified degree of multiple fingers (nail), including thumb|Burn of unspecified degree of multiple fingers (nail), including thumb +C2871805|T037|AB|T23.041|ICD10CM|Burn of unsp deg mult right fingers (nail), including thumb|Burn of unsp deg mult right fingers (nail), including thumb +C2871805|T037|HT|T23.041|ICD10CM|Burn of unspecified degree of multiple right fingers (nail), including thumb|Burn of unspecified degree of multiple right fingers (nail), including thumb +C2871806|T037|AB|T23.041A|ICD10CM|Burn of unsp deg mult right fingers (nail), inc thumb, init|Burn of unsp deg mult right fingers (nail), inc thumb, init +C2871806|T037|PT|T23.041A|ICD10CM|Burn of unspecified degree of multiple right fingers (nail), including thumb, initial encounter|Burn of unspecified degree of multiple right fingers (nail), including thumb, initial encounter +C2871807|T037|AB|T23.041D|ICD10CM|Burn of unsp deg mult right fingers (nail), inc thumb, subs|Burn of unsp deg mult right fingers (nail), inc thumb, subs +C2871807|T037|PT|T23.041D|ICD10CM|Burn of unspecified degree of multiple right fingers (nail), including thumb, subsequent encounter|Burn of unspecified degree of multiple right fingers (nail), including thumb, subsequent encounter +C2871808|T037|PT|T23.041S|ICD10CM|Burn of unspecified degree of multiple right fingers (nail), including thumb, sequela|Burn of unspecified degree of multiple right fingers (nail), including thumb, sequela +C2871808|T037|AB|T23.041S|ICD10CM|Burn unsp deg mult right fingers (nail), inc thumb, sequela|Burn unsp deg mult right fingers (nail), inc thumb, sequela +C2871809|T037|AB|T23.042|ICD10CM|Burn of unsp deg mult left fingers (nail), including thumb|Burn of unsp deg mult left fingers (nail), including thumb +C2871809|T037|HT|T23.042|ICD10CM|Burn of unspecified degree of multiple left fingers (nail), including thumb|Burn of unspecified degree of multiple left fingers (nail), including thumb +C2871810|T037|AB|T23.042A|ICD10CM|Burn of unsp deg mult left fingers (nail), inc thumb, init|Burn of unsp deg mult left fingers (nail), inc thumb, init +C2871810|T037|PT|T23.042A|ICD10CM|Burn of unspecified degree of multiple left fingers (nail), including thumb, initial encounter|Burn of unspecified degree of multiple left fingers (nail), including thumb, initial encounter +C2871811|T037|AB|T23.042D|ICD10CM|Burn of unsp deg mult left fingers (nail), inc thumb, subs|Burn of unsp deg mult left fingers (nail), inc thumb, subs +C2871811|T037|PT|T23.042D|ICD10CM|Burn of unspecified degree of multiple left fingers (nail), including thumb, subsequent encounter|Burn of unspecified degree of multiple left fingers (nail), including thumb, subsequent encounter +C2871812|T037|PT|T23.042S|ICD10CM|Burn of unspecified degree of multiple left fingers (nail), including thumb, sequela|Burn of unspecified degree of multiple left fingers (nail), including thumb, sequela +C2871812|T037|AB|T23.042S|ICD10CM|Burn unsp deg mult left fingers (nail), inc thumb, sequela|Burn unsp deg mult left fingers (nail), inc thumb, sequela +C2871813|T037|AB|T23.049|ICD10CM|Burn of unsp degree of unsp mult fingers (nail), inc thumb|Burn of unsp degree of unsp mult fingers (nail), inc thumb +C2871813|T037|HT|T23.049|ICD10CM|Burn of unspecified degree of unspecified multiple fingers (nail), including thumb|Burn of unspecified degree of unspecified multiple fingers (nail), including thumb +C2871814|T037|AB|T23.049A|ICD10CM|Burn unsp degree of unsp mult fngr (nail), inc thumb, init|Burn unsp degree of unsp mult fngr (nail), inc thumb, init +C2871815|T037|AB|T23.049D|ICD10CM|Burn unsp degree of unsp mult fngr (nail), inc thumb, subs|Burn unsp degree of unsp mult fngr (nail), inc thumb, subs +C2871816|T037|PT|T23.049S|ICD10CM|Burn of unspecified degree of unspecified multiple fingers (nail), including thumb, sequela|Burn of unspecified degree of unspecified multiple fingers (nail), including thumb, sequela +C2871816|T037|AB|T23.049S|ICD10CM|Burn unsp degree of unsp mult fngr (nail), inc thumb, sqla|Burn unsp degree of unsp mult fngr (nail), inc thumb, sqla +C0161207|T037|HT|T23.05|ICD10CM|Burn of unspecified degree of palm|Burn of unspecified degree of palm +C0161207|T037|AB|T23.05|ICD10CM|Burn of unspecified degree of palm|Burn of unspecified degree of palm +C2871818|T037|AB|T23.051|ICD10CM|Burn of unspecified degree of right palm|Burn of unspecified degree of right palm +C2871818|T037|HT|T23.051|ICD10CM|Burn of unspecified degree of right palm|Burn of unspecified degree of right palm +C2871819|T037|PT|T23.051A|ICD10CM|Burn of unspecified degree of right palm, initial encounter|Burn of unspecified degree of right palm, initial encounter +C2871819|T037|AB|T23.051A|ICD10CM|Burn of unspecified degree of right palm, initial encounter|Burn of unspecified degree of right palm, initial encounter +C2871820|T037|AB|T23.051D|ICD10CM|Burn of unspecified degree of right palm, subs encntr|Burn of unspecified degree of right palm, subs encntr +C2871820|T037|PT|T23.051D|ICD10CM|Burn of unspecified degree of right palm, subsequent encounter|Burn of unspecified degree of right palm, subsequent encounter +C2871821|T037|PT|T23.051S|ICD10CM|Burn of unspecified degree of right palm, sequela|Burn of unspecified degree of right palm, sequela +C2871821|T037|AB|T23.051S|ICD10CM|Burn of unspecified degree of right palm, sequela|Burn of unspecified degree of right palm, sequela +C2871822|T037|AB|T23.052|ICD10CM|Burn of unspecified degree of left palm|Burn of unspecified degree of left palm +C2871822|T037|HT|T23.052|ICD10CM|Burn of unspecified degree of left palm|Burn of unspecified degree of left palm +C2871823|T037|PT|T23.052A|ICD10CM|Burn of unspecified degree of left palm, initial encounter|Burn of unspecified degree of left palm, initial encounter +C2871823|T037|AB|T23.052A|ICD10CM|Burn of unspecified degree of left palm, initial encounter|Burn of unspecified degree of left palm, initial encounter +C2871824|T037|AB|T23.052D|ICD10CM|Burn of unspecified degree of left palm, subs encntr|Burn of unspecified degree of left palm, subs encntr +C2871824|T037|PT|T23.052D|ICD10CM|Burn of unspecified degree of left palm, subsequent encounter|Burn of unspecified degree of left palm, subsequent encounter +C2871825|T037|PT|T23.052S|ICD10CM|Burn of unspecified degree of left palm, sequela|Burn of unspecified degree of left palm, sequela +C2871825|T037|AB|T23.052S|ICD10CM|Burn of unspecified degree of left palm, sequela|Burn of unspecified degree of left palm, sequela +C2871826|T037|AB|T23.059|ICD10CM|Burn of unspecified degree of unspecified palm|Burn of unspecified degree of unspecified palm +C2871826|T037|HT|T23.059|ICD10CM|Burn of unspecified degree of unspecified palm|Burn of unspecified degree of unspecified palm +C2871827|T037|AB|T23.059A|ICD10CM|Burn of unspecified degree of unspecified palm, init encntr|Burn of unspecified degree of unspecified palm, init encntr +C2871827|T037|PT|T23.059A|ICD10CM|Burn of unspecified degree of unspecified palm, initial encounter|Burn of unspecified degree of unspecified palm, initial encounter +C2871828|T037|AB|T23.059D|ICD10CM|Burn of unspecified degree of unspecified palm, subs encntr|Burn of unspecified degree of unspecified palm, subs encntr +C2871828|T037|PT|T23.059D|ICD10CM|Burn of unspecified degree of unspecified palm, subsequent encounter|Burn of unspecified degree of unspecified palm, subsequent encounter +C2871829|T037|AB|T23.059S|ICD10CM|Burn of unspecified degree of unspecified palm, sequela|Burn of unspecified degree of unspecified palm, sequela +C2871829|T037|PT|T23.059S|ICD10CM|Burn of unspecified degree of unspecified palm, sequela|Burn of unspecified degree of unspecified palm, sequela +C0161208|T037|HT|T23.06|ICD10CM|Burn of unspecified degree of back of hand|Burn of unspecified degree of back of hand +C0161208|T037|AB|T23.06|ICD10CM|Burn of unspecified degree of back of hand|Burn of unspecified degree of back of hand +C2871830|T037|AB|T23.061|ICD10CM|Burn of unspecified degree of back of right hand|Burn of unspecified degree of back of right hand +C2871830|T037|HT|T23.061|ICD10CM|Burn of unspecified degree of back of right hand|Burn of unspecified degree of back of right hand +C2871831|T037|AB|T23.061A|ICD10CM|Burn of unsp degree of back of right hand, init encntr|Burn of unsp degree of back of right hand, init encntr +C2871831|T037|PT|T23.061A|ICD10CM|Burn of unspecified degree of back of right hand, initial encounter|Burn of unspecified degree of back of right hand, initial encounter +C2871832|T037|AB|T23.061D|ICD10CM|Burn of unsp degree of back of right hand, subs encntr|Burn of unsp degree of back of right hand, subs encntr +C2871832|T037|PT|T23.061D|ICD10CM|Burn of unspecified degree of back of right hand, subsequent encounter|Burn of unspecified degree of back of right hand, subsequent encounter +C2871833|T037|PT|T23.061S|ICD10CM|Burn of unspecified degree of back of right hand, sequela|Burn of unspecified degree of back of right hand, sequela +C2871833|T037|AB|T23.061S|ICD10CM|Burn of unspecified degree of back of right hand, sequela|Burn of unspecified degree of back of right hand, sequela +C2871834|T037|AB|T23.062|ICD10CM|Burn of unspecified degree of back of left hand|Burn of unspecified degree of back of left hand +C2871834|T037|HT|T23.062|ICD10CM|Burn of unspecified degree of back of left hand|Burn of unspecified degree of back of left hand +C2871835|T037|AB|T23.062A|ICD10CM|Burn of unspecified degree of back of left hand, init encntr|Burn of unspecified degree of back of left hand, init encntr +C2871835|T037|PT|T23.062A|ICD10CM|Burn of unspecified degree of back of left hand, initial encounter|Burn of unspecified degree of back of left hand, initial encounter +C2871836|T037|AB|T23.062D|ICD10CM|Burn of unspecified degree of back of left hand, subs encntr|Burn of unspecified degree of back of left hand, subs encntr +C2871836|T037|PT|T23.062D|ICD10CM|Burn of unspecified degree of back of left hand, subsequent encounter|Burn of unspecified degree of back of left hand, subsequent encounter +C2871837|T037|PT|T23.062S|ICD10CM|Burn of unspecified degree of back of left hand, sequela|Burn of unspecified degree of back of left hand, sequela +C2871837|T037|AB|T23.062S|ICD10CM|Burn of unspecified degree of back of left hand, sequela|Burn of unspecified degree of back of left hand, sequela +C2871838|T037|AB|T23.069|ICD10CM|Burn of unspecified degree of back of unspecified hand|Burn of unspecified degree of back of unspecified hand +C2871838|T037|HT|T23.069|ICD10CM|Burn of unspecified degree of back of unspecified hand|Burn of unspecified degree of back of unspecified hand +C2871839|T037|AB|T23.069A|ICD10CM|Burn of unsp degree of back of unspecified hand, init encntr|Burn of unsp degree of back of unspecified hand, init encntr +C2871839|T037|PT|T23.069A|ICD10CM|Burn of unspecified degree of back of unspecified hand, initial encounter|Burn of unspecified degree of back of unspecified hand, initial encounter +C2871840|T037|AB|T23.069D|ICD10CM|Burn of unsp degree of back of unspecified hand, subs encntr|Burn of unsp degree of back of unspecified hand, subs encntr +C2871840|T037|PT|T23.069D|ICD10CM|Burn of unspecified degree of back of unspecified hand, subsequent encounter|Burn of unspecified degree of back of unspecified hand, subsequent encounter +C2871841|T037|AB|T23.069S|ICD10CM|Burn of unsp degree of back of unspecified hand, sequela|Burn of unsp degree of back of unspecified hand, sequela +C2871841|T037|PT|T23.069S|ICD10CM|Burn of unspecified degree of back of unspecified hand, sequela|Burn of unspecified degree of back of unspecified hand, sequela +C0274083|T037|HT|T23.07|ICD10CM|Burn of unspecified degree of wrist|Burn of unspecified degree of wrist +C0274083|T037|AB|T23.07|ICD10CM|Burn of unspecified degree of wrist|Burn of unspecified degree of wrist +C2871842|T037|AB|T23.071|ICD10CM|Burn of unspecified degree of right wrist|Burn of unspecified degree of right wrist +C2871842|T037|HT|T23.071|ICD10CM|Burn of unspecified degree of right wrist|Burn of unspecified degree of right wrist +C2871843|T037|AB|T23.071A|ICD10CM|Burn of unspecified degree of right wrist, initial encounter|Burn of unspecified degree of right wrist, initial encounter +C2871843|T037|PT|T23.071A|ICD10CM|Burn of unspecified degree of right wrist, initial encounter|Burn of unspecified degree of right wrist, initial encounter +C2871844|T037|AB|T23.071D|ICD10CM|Burn of unspecified degree of right wrist, subs encntr|Burn of unspecified degree of right wrist, subs encntr +C2871844|T037|PT|T23.071D|ICD10CM|Burn of unspecified degree of right wrist, subsequent encounter|Burn of unspecified degree of right wrist, subsequent encounter +C2871845|T037|PT|T23.071S|ICD10CM|Burn of unspecified degree of right wrist, sequela|Burn of unspecified degree of right wrist, sequela +C2871845|T037|AB|T23.071S|ICD10CM|Burn of unspecified degree of right wrist, sequela|Burn of unspecified degree of right wrist, sequela +C2871846|T037|AB|T23.072|ICD10CM|Burn of unspecified degree of left wrist|Burn of unspecified degree of left wrist +C2871846|T037|HT|T23.072|ICD10CM|Burn of unspecified degree of left wrist|Burn of unspecified degree of left wrist +C2871847|T037|PT|T23.072A|ICD10CM|Burn of unspecified degree of left wrist, initial encounter|Burn of unspecified degree of left wrist, initial encounter +C2871847|T037|AB|T23.072A|ICD10CM|Burn of unspecified degree of left wrist, initial encounter|Burn of unspecified degree of left wrist, initial encounter +C2871848|T037|AB|T23.072D|ICD10CM|Burn of unspecified degree of left wrist, subs encntr|Burn of unspecified degree of left wrist, subs encntr +C2871848|T037|PT|T23.072D|ICD10CM|Burn of unspecified degree of left wrist, subsequent encounter|Burn of unspecified degree of left wrist, subsequent encounter +C2871849|T037|PT|T23.072S|ICD10CM|Burn of unspecified degree of left wrist, sequela|Burn of unspecified degree of left wrist, sequela +C2871849|T037|AB|T23.072S|ICD10CM|Burn of unspecified degree of left wrist, sequela|Burn of unspecified degree of left wrist, sequela +C2871850|T037|AB|T23.079|ICD10CM|Burn of unspecified degree of unspecified wrist|Burn of unspecified degree of unspecified wrist +C2871850|T037|HT|T23.079|ICD10CM|Burn of unspecified degree of unspecified wrist|Burn of unspecified degree of unspecified wrist +C2871851|T037|AB|T23.079A|ICD10CM|Burn of unspecified degree of unspecified wrist, init encntr|Burn of unspecified degree of unspecified wrist, init encntr +C2871851|T037|PT|T23.079A|ICD10CM|Burn of unspecified degree of unspecified wrist, initial encounter|Burn of unspecified degree of unspecified wrist, initial encounter +C2871852|T037|AB|T23.079D|ICD10CM|Burn of unspecified degree of unspecified wrist, subs encntr|Burn of unspecified degree of unspecified wrist, subs encntr +C2871852|T037|PT|T23.079D|ICD10CM|Burn of unspecified degree of unspecified wrist, subsequent encounter|Burn of unspecified degree of unspecified wrist, subsequent encounter +C2871853|T037|PT|T23.079S|ICD10CM|Burn of unspecified degree of unspecified wrist, sequela|Burn of unspecified degree of unspecified wrist, sequela +C2871853|T037|AB|T23.079S|ICD10CM|Burn of unspecified degree of unspecified wrist, sequela|Burn of unspecified degree of unspecified wrist, sequela +C0161210|T037|AB|T23.09|ICD10CM|Burn of unsp degree of multiple sites of wrist and hand|Burn of unsp degree of multiple sites of wrist and hand +C0161210|T037|HT|T23.09|ICD10CM|Burn of unspecified degree of multiple sites of wrist and hand|Burn of unspecified degree of multiple sites of wrist and hand +C2871854|T037|AB|T23.091|ICD10CM|Burn of unsp deg mult sites of right wrist and hand|Burn of unsp deg mult sites of right wrist and hand +C2871854|T037|HT|T23.091|ICD10CM|Burn of unspecified degree of multiple sites of right wrist and hand|Burn of unspecified degree of multiple sites of right wrist and hand +C2871855|T037|AB|T23.091A|ICD10CM|Burn of unsp deg mult sites of right wrist and hand, init|Burn of unsp deg mult sites of right wrist and hand, init +C2871855|T037|PT|T23.091A|ICD10CM|Burn of unspecified degree of multiple sites of right wrist and hand, initial encounter|Burn of unspecified degree of multiple sites of right wrist and hand, initial encounter +C2871856|T037|AB|T23.091D|ICD10CM|Burn of unsp deg mult sites of right wrist and hand, subs|Burn of unsp deg mult sites of right wrist and hand, subs +C2871856|T037|PT|T23.091D|ICD10CM|Burn of unspecified degree of multiple sites of right wrist and hand, subsequent encounter|Burn of unspecified degree of multiple sites of right wrist and hand, subsequent encounter +C2871857|T037|AB|T23.091S|ICD10CM|Burn of unsp deg mult sites of right wrist and hand, sequela|Burn of unsp deg mult sites of right wrist and hand, sequela +C2871857|T037|PT|T23.091S|ICD10CM|Burn of unspecified degree of multiple sites of right wrist and hand, sequela|Burn of unspecified degree of multiple sites of right wrist and hand, sequela +C2871858|T037|AB|T23.092|ICD10CM|Burn of unsp degree of multiple sites of left wrist and hand|Burn of unsp degree of multiple sites of left wrist and hand +C2871858|T037|HT|T23.092|ICD10CM|Burn of unspecified degree of multiple sites of left wrist and hand|Burn of unspecified degree of multiple sites of left wrist and hand +C2871859|T037|AB|T23.092A|ICD10CM|Burn of unsp deg mult sites of left wrist and hand, init|Burn of unsp deg mult sites of left wrist and hand, init +C2871859|T037|PT|T23.092A|ICD10CM|Burn of unspecified degree of multiple sites of left wrist and hand, initial encounter|Burn of unspecified degree of multiple sites of left wrist and hand, initial encounter +C2871860|T037|AB|T23.092D|ICD10CM|Burn of unsp deg mult sites of left wrist and hand, subs|Burn of unsp deg mult sites of left wrist and hand, subs +C2871860|T037|PT|T23.092D|ICD10CM|Burn of unspecified degree of multiple sites of left wrist and hand, subsequent encounter|Burn of unspecified degree of multiple sites of left wrist and hand, subsequent encounter +C2871861|T037|AB|T23.092S|ICD10CM|Burn of unsp deg mult sites of left wrist and hand, sequela|Burn of unsp deg mult sites of left wrist and hand, sequela +C2871861|T037|PT|T23.092S|ICD10CM|Burn of unspecified degree of multiple sites of left wrist and hand, sequela|Burn of unspecified degree of multiple sites of left wrist and hand, sequela +C2871862|T037|AB|T23.099|ICD10CM|Burn of unsp degree of multiple sites of unsp wrist and hand|Burn of unsp degree of multiple sites of unsp wrist and hand +C2871862|T037|HT|T23.099|ICD10CM|Burn of unspecified degree of multiple sites of unspecified wrist and hand|Burn of unspecified degree of multiple sites of unspecified wrist and hand +C2871863|T037|AB|T23.099A|ICD10CM|Burn of unsp deg mult sites of unsp wrist and hand, init|Burn of unsp deg mult sites of unsp wrist and hand, init +C2871863|T037|PT|T23.099A|ICD10CM|Burn of unspecified degree of multiple sites of unspecified wrist and hand, initial encounter|Burn of unspecified degree of multiple sites of unspecified wrist and hand, initial encounter +C2871864|T037|AB|T23.099D|ICD10CM|Burn of unsp deg mult sites of unsp wrist and hand, subs|Burn of unsp deg mult sites of unsp wrist and hand, subs +C2871864|T037|PT|T23.099D|ICD10CM|Burn of unspecified degree of multiple sites of unspecified wrist and hand, subsequent encounter|Burn of unspecified degree of multiple sites of unspecified wrist and hand, subsequent encounter +C2871865|T037|AB|T23.099S|ICD10CM|Burn of unsp deg mult sites of unsp wrist and hand, sequela|Burn of unsp deg mult sites of unsp wrist and hand, sequela +C2871865|T037|PT|T23.099S|ICD10CM|Burn of unspecified degree of multiple sites of unspecified wrist and hand, sequela|Burn of unspecified degree of multiple sites of unspecified wrist and hand, sequela +C0433331|T037|PT|T23.1|ICD10|Burn of first degree of wrist and hand|Burn of first degree of wrist and hand +C0433331|T037|HT|T23.1|ICD10CM|Burn of first degree of wrist and hand|Burn of first degree of wrist and hand +C0433331|T037|AB|T23.1|ICD10CM|Burn of first degree of wrist and hand|Burn of first degree of wrist and hand +C2871866|T037|AB|T23.10|ICD10CM|Burn of first degree of hand, unspecified site|Burn of first degree of hand, unspecified site +C2871866|T037|HT|T23.10|ICD10CM|Burn of first degree of hand, unspecified site|Burn of first degree of hand, unspecified site +C2871867|T037|AB|T23.101|ICD10CM|Burn of first degree of right hand, unspecified site|Burn of first degree of right hand, unspecified site +C2871867|T037|HT|T23.101|ICD10CM|Burn of first degree of right hand, unspecified site|Burn of first degree of right hand, unspecified site +C2871868|T037|AB|T23.101A|ICD10CM|Burn of first degree of right hand, unsp site, init encntr|Burn of first degree of right hand, unsp site, init encntr +C2871868|T037|PT|T23.101A|ICD10CM|Burn of first degree of right hand, unspecified site, initial encounter|Burn of first degree of right hand, unspecified site, initial encounter +C2871869|T037|AB|T23.101D|ICD10CM|Burn of first degree of right hand, unsp site, subs encntr|Burn of first degree of right hand, unsp site, subs encntr +C2871869|T037|PT|T23.101D|ICD10CM|Burn of first degree of right hand, unspecified site, subsequent encounter|Burn of first degree of right hand, unspecified site, subsequent encounter +C2871870|T037|AB|T23.101S|ICD10CM|Burn of first degree of right hand, unsp site, sequela|Burn of first degree of right hand, unsp site, sequela +C2871870|T037|PT|T23.101S|ICD10CM|Burn of first degree of right hand, unspecified site, sequela|Burn of first degree of right hand, unspecified site, sequela +C2871871|T037|AB|T23.102|ICD10CM|Burn of first degree of left hand, unspecified site|Burn of first degree of left hand, unspecified site +C2871871|T037|HT|T23.102|ICD10CM|Burn of first degree of left hand, unspecified site|Burn of first degree of left hand, unspecified site +C2871872|T037|AB|T23.102A|ICD10CM|Burn of first degree of left hand, unsp site, init encntr|Burn of first degree of left hand, unsp site, init encntr +C2871872|T037|PT|T23.102A|ICD10CM|Burn of first degree of left hand, unspecified site, initial encounter|Burn of first degree of left hand, unspecified site, initial encounter +C2871873|T037|AB|T23.102D|ICD10CM|Burn of first degree of left hand, unsp site, subs encntr|Burn of first degree of left hand, unsp site, subs encntr +C2871873|T037|PT|T23.102D|ICD10CM|Burn of first degree of left hand, unspecified site, subsequent encounter|Burn of first degree of left hand, unspecified site, subsequent encounter +C2871874|T037|AB|T23.102S|ICD10CM|Burn of first degree of left hand, unspecified site, sequela|Burn of first degree of left hand, unspecified site, sequela +C2871874|T037|PT|T23.102S|ICD10CM|Burn of first degree of left hand, unspecified site, sequela|Burn of first degree of left hand, unspecified site, sequela +C2871875|T037|AB|T23.109|ICD10CM|Burn of first degree of unspecified hand, unspecified site|Burn of first degree of unspecified hand, unspecified site +C2871875|T037|HT|T23.109|ICD10CM|Burn of first degree of unspecified hand, unspecified site|Burn of first degree of unspecified hand, unspecified site +C2871876|T037|AB|T23.109A|ICD10CM|Burn of first degree of unsp hand, unsp site, init encntr|Burn of first degree of unsp hand, unsp site, init encntr +C2871876|T037|PT|T23.109A|ICD10CM|Burn of first degree of unspecified hand, unspecified site, initial encounter|Burn of first degree of unspecified hand, unspecified site, initial encounter +C2871877|T037|AB|T23.109D|ICD10CM|Burn of first degree of unsp hand, unsp site, subs encntr|Burn of first degree of unsp hand, unsp site, subs encntr +C2871877|T037|PT|T23.109D|ICD10CM|Burn of first degree of unspecified hand, unspecified site, subsequent encounter|Burn of first degree of unspecified hand, unspecified site, subsequent encounter +C2871878|T037|AB|T23.109S|ICD10CM|Burn of first degree of unsp hand, unspecified site, sequela|Burn of first degree of unsp hand, unspecified site, sequela +C2871878|T037|PT|T23.109S|ICD10CM|Burn of first degree of unspecified hand, unspecified site, sequela|Burn of first degree of unspecified hand, unspecified site, sequela +C2871879|T037|AB|T23.11|ICD10CM|Burn of first degree of thumb (nail)|Burn of first degree of thumb (nail) +C2871879|T037|HT|T23.11|ICD10CM|Burn of first degree of thumb (nail)|Burn of first degree of thumb (nail) +C2871880|T037|AB|T23.111|ICD10CM|Burn of first degree of right thumb (nail)|Burn of first degree of right thumb (nail) +C2871880|T037|HT|T23.111|ICD10CM|Burn of first degree of right thumb (nail)|Burn of first degree of right thumb (nail) +C2871881|T037|AB|T23.111A|ICD10CM|Burn of first degree of right thumb (nail), init encntr|Burn of first degree of right thumb (nail), init encntr +C2871881|T037|PT|T23.111A|ICD10CM|Burn of first degree of right thumb (nail), initial encounter|Burn of first degree of right thumb (nail), initial encounter +C2871882|T037|AB|T23.111D|ICD10CM|Burn of first degree of right thumb (nail), subs encntr|Burn of first degree of right thumb (nail), subs encntr +C2871882|T037|PT|T23.111D|ICD10CM|Burn of first degree of right thumb (nail), subsequent encounter|Burn of first degree of right thumb (nail), subsequent encounter +C2871883|T037|PT|T23.111S|ICD10CM|Burn of first degree of right thumb (nail), sequela|Burn of first degree of right thumb (nail), sequela +C2871883|T037|AB|T23.111S|ICD10CM|Burn of first degree of right thumb (nail), sequela|Burn of first degree of right thumb (nail), sequela +C2871884|T037|AB|T23.112|ICD10CM|Burn of first degree of left thumb (nail)|Burn of first degree of left thumb (nail) +C2871884|T037|HT|T23.112|ICD10CM|Burn of first degree of left thumb (nail)|Burn of first degree of left thumb (nail) +C2871885|T037|AB|T23.112A|ICD10CM|Burn of first degree of left thumb (nail), initial encounter|Burn of first degree of left thumb (nail), initial encounter +C2871885|T037|PT|T23.112A|ICD10CM|Burn of first degree of left thumb (nail), initial encounter|Burn of first degree of left thumb (nail), initial encounter +C2871886|T037|AB|T23.112D|ICD10CM|Burn of first degree of left thumb (nail), subs encntr|Burn of first degree of left thumb (nail), subs encntr +C2871886|T037|PT|T23.112D|ICD10CM|Burn of first degree of left thumb (nail), subsequent encounter|Burn of first degree of left thumb (nail), subsequent encounter +C2871887|T037|PT|T23.112S|ICD10CM|Burn of first degree of left thumb (nail), sequela|Burn of first degree of left thumb (nail), sequela +C2871887|T037|AB|T23.112S|ICD10CM|Burn of first degree of left thumb (nail), sequela|Burn of first degree of left thumb (nail), sequela +C2871888|T037|AB|T23.119|ICD10CM|Burn of first degree of unspecified thumb (nail)|Burn of first degree of unspecified thumb (nail) +C2871888|T037|HT|T23.119|ICD10CM|Burn of first degree of unspecified thumb (nail)|Burn of first degree of unspecified thumb (nail) +C2871889|T037|AB|T23.119A|ICD10CM|Burn of first degree of unsp thumb (nail), init encntr|Burn of first degree of unsp thumb (nail), init encntr +C2871889|T037|PT|T23.119A|ICD10CM|Burn of first degree of unspecified thumb (nail), initial encounter|Burn of first degree of unspecified thumb (nail), initial encounter +C2871890|T037|AB|T23.119D|ICD10CM|Burn of first degree of unsp thumb (nail), subs encntr|Burn of first degree of unsp thumb (nail), subs encntr +C2871890|T037|PT|T23.119D|ICD10CM|Burn of first degree of unspecified thumb (nail), subsequent encounter|Burn of first degree of unspecified thumb (nail), subsequent encounter +C2871891|T037|PT|T23.119S|ICD10CM|Burn of first degree of unspecified thumb (nail), sequela|Burn of first degree of unspecified thumb (nail), sequela +C2871891|T037|AB|T23.119S|ICD10CM|Burn of first degree of unspecified thumb (nail), sequela|Burn of first degree of unspecified thumb (nail), sequela +C2871892|T037|AB|T23.12|ICD10CM|Burn of first degree of single finger (nail) except thumb|Burn of first degree of single finger (nail) except thumb +C2871892|T037|HT|T23.12|ICD10CM|Burn of first degree of single finger (nail) except thumb|Burn of first degree of single finger (nail) except thumb +C2871893|T037|AB|T23.121|ICD10CM|Burn of first degree of single r finger (nail) except thumb|Burn of first degree of single r finger (nail) except thumb +C2871893|T037|HT|T23.121|ICD10CM|Burn of first degree of single right finger (nail) except thumb|Burn of first degree of single right finger (nail) except thumb +C2871894|T037|AB|T23.121A|ICD10CM|Burn first degree of single r finger except thumb, init|Burn first degree of single r finger except thumb, init +C2871894|T037|PT|T23.121A|ICD10CM|Burn of first degree of single right finger (nail) except thumb, initial encounter|Burn of first degree of single right finger (nail) except thumb, initial encounter +C2871895|T037|AB|T23.121D|ICD10CM|Burn first degree of single r finger except thumb, subs|Burn first degree of single r finger except thumb, subs +C2871895|T037|PT|T23.121D|ICD10CM|Burn of first degree of single right finger (nail) except thumb, subsequent encounter|Burn of first degree of single right finger (nail) except thumb, subsequent encounter +C2871896|T037|AB|T23.121S|ICD10CM|Burn first degree of single r finger except thumb, sqla|Burn first degree of single r finger except thumb, sqla +C2871896|T037|PT|T23.121S|ICD10CM|Burn of first degree of single right finger (nail) except thumb, sequela|Burn of first degree of single right finger (nail) except thumb, sequela +C2871897|T037|AB|T23.122|ICD10CM|Burn of first degree of single l finger (nail) except thumb|Burn of first degree of single l finger (nail) except thumb +C2871897|T037|HT|T23.122|ICD10CM|Burn of first degree of single left finger (nail) except thumb|Burn of first degree of single left finger (nail) except thumb +C2871898|T037|AB|T23.122A|ICD10CM|Burn first degree of single l finger except thumb, init|Burn first degree of single l finger except thumb, init +C2871898|T037|PT|T23.122A|ICD10CM|Burn of first degree of single left finger (nail) except thumb, initial encounter|Burn of first degree of single left finger (nail) except thumb, initial encounter +C2871899|T037|AB|T23.122D|ICD10CM|Burn first degree of single l finger except thumb, subs|Burn first degree of single l finger except thumb, subs +C2871899|T037|PT|T23.122D|ICD10CM|Burn of first degree of single left finger (nail) except thumb, subsequent encounter|Burn of first degree of single left finger (nail) except thumb, subsequent encounter +C2871900|T037|AB|T23.122S|ICD10CM|Burn first degree of single l finger except thumb, sqla|Burn first degree of single l finger except thumb, sqla +C2871900|T037|PT|T23.122S|ICD10CM|Burn of first degree of single left finger (nail) except thumb, sequela|Burn of first degree of single left finger (nail) except thumb, sequela +C2871901|T037|AB|T23.129|ICD10CM|Burn first degree of unsp single finger (nail) except thumb|Burn first degree of unsp single finger (nail) except thumb +C2871901|T037|HT|T23.129|ICD10CM|Burn of first degree of unspecified single finger (nail) except thumb|Burn of first degree of unspecified single finger (nail) except thumb +C2871902|T037|AB|T23.129A|ICD10CM|Burn first degree of unsp single finger except thumb, init|Burn first degree of unsp single finger except thumb, init +C2871902|T037|PT|T23.129A|ICD10CM|Burn of first degree of unspecified single finger (nail) except thumb, initial encounter|Burn of first degree of unspecified single finger (nail) except thumb, initial encounter +C2871903|T037|AB|T23.129D|ICD10CM|Burn first degree of unsp single finger except thumb, subs|Burn first degree of unsp single finger except thumb, subs +C2871903|T037|PT|T23.129D|ICD10CM|Burn of first degree of unspecified single finger (nail) except thumb, subsequent encounter|Burn of first degree of unspecified single finger (nail) except thumb, subsequent encounter +C2871904|T037|AB|T23.129S|ICD10CM|Burn first degree of unsp single finger except thumb, sqla|Burn first degree of unsp single finger except thumb, sqla +C2871904|T037|PT|T23.129S|ICD10CM|Burn of first degree of unspecified single finger (nail) except thumb, sequela|Burn of first degree of unspecified single finger (nail) except thumb, sequela +C2871905|T037|AB|T23.13|ICD10CM|Burn of first deg mult fingers (nail), not including thumb|Burn of first deg mult fingers (nail), not including thumb +C2871905|T037|HT|T23.13|ICD10CM|Burn of first degree of multiple fingers (nail), not including thumb|Burn of first degree of multiple fingers (nail), not including thumb +C2871906|T037|AB|T23.131|ICD10CM|Burn of first deg mult right fingers (nail), not inc thumb|Burn of first deg mult right fingers (nail), not inc thumb +C2871906|T037|HT|T23.131|ICD10CM|Burn of first degree of multiple right fingers (nail), not including thumb|Burn of first degree of multiple right fingers (nail), not including thumb +C2871907|T037|AB|T23.131A|ICD10CM|Burn first deg mult right fngr (nail), not inc thumb, init|Burn first deg mult right fngr (nail), not inc thumb, init +C2871907|T037|PT|T23.131A|ICD10CM|Burn of first degree of multiple right fingers (nail), not including thumb, initial encounter|Burn of first degree of multiple right fingers (nail), not including thumb, initial encounter +C2871908|T037|AB|T23.131D|ICD10CM|Burn first deg mult right fngr (nail), not inc thumb, subs|Burn first deg mult right fngr (nail), not inc thumb, subs +C2871908|T037|PT|T23.131D|ICD10CM|Burn of first degree of multiple right fingers (nail), not including thumb, subsequent encounter|Burn of first degree of multiple right fingers (nail), not including thumb, subsequent encounter +C2871909|T037|AB|T23.131S|ICD10CM|Burn first deg mult right fngr (nail), not inc thumb, sqla|Burn first deg mult right fngr (nail), not inc thumb, sqla +C2871909|T037|PT|T23.131S|ICD10CM|Burn of first degree of multiple right fingers (nail), not including thumb, sequela|Burn of first degree of multiple right fingers (nail), not including thumb, sequela +C2871910|T037|AB|T23.132|ICD10CM|Burn of first deg mult left fingers (nail), not inc thumb|Burn of first deg mult left fingers (nail), not inc thumb +C2871910|T037|HT|T23.132|ICD10CM|Burn of first degree of multiple left fingers (nail), not including thumb|Burn of first degree of multiple left fingers (nail), not including thumb +C2871911|T037|AB|T23.132A|ICD10CM|Burn first deg mult left fingers (nail), not inc thumb, init|Burn first deg mult left fingers (nail), not inc thumb, init +C2871911|T037|PT|T23.132A|ICD10CM|Burn of first degree of multiple left fingers (nail), not including thumb, initial encounter|Burn of first degree of multiple left fingers (nail), not including thumb, initial encounter +C2871912|T037|AB|T23.132D|ICD10CM|Burn first deg mult left fingers (nail), not inc thumb, subs|Burn first deg mult left fingers (nail), not inc thumb, subs +C2871912|T037|PT|T23.132D|ICD10CM|Burn of first degree of multiple left fingers (nail), not including thumb, subsequent encounter|Burn of first degree of multiple left fingers (nail), not including thumb, subsequent encounter +C2871913|T037|AB|T23.132S|ICD10CM|Burn first deg mult left fngr (nail), not inc thumb, sequela|Burn first deg mult left fngr (nail), not inc thumb, sequela +C2871913|T037|PT|T23.132S|ICD10CM|Burn of first degree of multiple left fingers (nail), not including thumb, sequela|Burn of first degree of multiple left fingers (nail), not including thumb, sequela +C2871914|T037|AB|T23.139|ICD10CM|Burn first degree of unsp mult fingers (nail), not inc thumb|Burn first degree of unsp mult fingers (nail), not inc thumb +C2871914|T037|HT|T23.139|ICD10CM|Burn of first degree of unspecified multiple fingers (nail), not including thumb|Burn of first degree of unspecified multiple fingers (nail), not including thumb +C2871915|T037|AB|T23.139A|ICD10CM|Burn first degree of unsp mult fngr, not inc thumb, init|Burn first degree of unsp mult fngr, not inc thumb, init +C2871915|T037|PT|T23.139A|ICD10CM|Burn of first degree of unspecified multiple fingers (nail), not including thumb, initial encounter|Burn of first degree of unspecified multiple fingers (nail), not including thumb, initial encounter +C2871916|T037|AB|T23.139D|ICD10CM|Burn first degree of unsp mult fngr, not inc thumb, subs|Burn first degree of unsp mult fngr, not inc thumb, subs +C2871917|T037|AB|T23.139S|ICD10CM|Burn first degree of unsp mult fngr, not inc thumb, sqla|Burn first degree of unsp mult fngr, not inc thumb, sqla +C2871917|T037|PT|T23.139S|ICD10CM|Burn of first degree of unspecified multiple fingers (nail), not including thumb, sequela|Burn of first degree of unspecified multiple fingers (nail), not including thumb, sequela +C2871918|T037|AB|T23.14|ICD10CM|Burn of first deg mult fingers (nail), including thumb|Burn of first deg mult fingers (nail), including thumb +C2871918|T037|HT|T23.14|ICD10CM|Burn of first degree of multiple fingers (nail), including thumb|Burn of first degree of multiple fingers (nail), including thumb +C2871919|T037|AB|T23.141|ICD10CM|Burn of first deg mult right fingers (nail), including thumb|Burn of first deg mult right fingers (nail), including thumb +C2871919|T037|HT|T23.141|ICD10CM|Burn of first degree of multiple right fingers (nail), including thumb|Burn of first degree of multiple right fingers (nail), including thumb +C2871920|T037|AB|T23.141A|ICD10CM|Burn of first deg mult right fingers (nail), inc thumb, init|Burn of first deg mult right fingers (nail), inc thumb, init +C2871920|T037|PT|T23.141A|ICD10CM|Burn of first degree of multiple right fingers (nail), including thumb, initial encounter|Burn of first degree of multiple right fingers (nail), including thumb, initial encounter +C2871921|T037|AB|T23.141D|ICD10CM|Burn of first deg mult right fingers (nail), inc thumb, subs|Burn of first deg mult right fingers (nail), inc thumb, subs +C2871921|T037|PT|T23.141D|ICD10CM|Burn of first degree of multiple right fingers (nail), including thumb, subsequent encounter|Burn of first degree of multiple right fingers (nail), including thumb, subsequent encounter +C2871922|T037|AB|T23.141S|ICD10CM|Burn first deg mult right fingers (nail), inc thumb, sequela|Burn first deg mult right fingers (nail), inc thumb, sequela +C2871922|T037|PT|T23.141S|ICD10CM|Burn of first degree of multiple right fingers (nail), including thumb, sequela|Burn of first degree of multiple right fingers (nail), including thumb, sequela +C2871923|T037|AB|T23.142|ICD10CM|Burn of first deg mult left fingers (nail), including thumb|Burn of first deg mult left fingers (nail), including thumb +C2871923|T037|HT|T23.142|ICD10CM|Burn of first degree of multiple left fingers (nail), including thumb|Burn of first degree of multiple left fingers (nail), including thumb +C2871924|T037|AB|T23.142A|ICD10CM|Burn of first deg mult left fingers (nail), inc thumb, init|Burn of first deg mult left fingers (nail), inc thumb, init +C2871924|T037|PT|T23.142A|ICD10CM|Burn of first degree of multiple left fingers (nail), including thumb, initial encounter|Burn of first degree of multiple left fingers (nail), including thumb, initial encounter +C2871925|T037|AB|T23.142D|ICD10CM|Burn of first deg mult left fingers (nail), inc thumb, subs|Burn of first deg mult left fingers (nail), inc thumb, subs +C2871925|T037|PT|T23.142D|ICD10CM|Burn of first degree of multiple left fingers (nail), including thumb, subsequent encounter|Burn of first degree of multiple left fingers (nail), including thumb, subsequent encounter +C2871926|T037|AB|T23.142S|ICD10CM|Burn first deg mult left fingers (nail), inc thumb, sequela|Burn first deg mult left fingers (nail), inc thumb, sequela +C2871926|T037|PT|T23.142S|ICD10CM|Burn of first degree of multiple left fingers (nail), including thumb, sequela|Burn of first degree of multiple left fingers (nail), including thumb, sequela +C2871927|T037|AB|T23.149|ICD10CM|Burn of first degree of unsp mult fingers (nail), inc thumb|Burn of first degree of unsp mult fingers (nail), inc thumb +C2871927|T037|HT|T23.149|ICD10CM|Burn of first degree of unspecified multiple fingers (nail), including thumb|Burn of first degree of unspecified multiple fingers (nail), including thumb +C2871928|T037|AB|T23.149A|ICD10CM|Burn first degree of unsp mult fngr (nail), inc thumb, init|Burn first degree of unsp mult fngr (nail), inc thumb, init +C2871928|T037|PT|T23.149A|ICD10CM|Burn of first degree of unspecified multiple fingers (nail), including thumb, initial encounter|Burn of first degree of unspecified multiple fingers (nail), including thumb, initial encounter +C2871929|T037|AB|T23.149D|ICD10CM|Burn first degree of unsp mult fngr (nail), inc thumb, subs|Burn first degree of unsp mult fngr (nail), inc thumb, subs +C2871929|T037|PT|T23.149D|ICD10CM|Burn of first degree of unspecified multiple fingers (nail), including thumb, subsequent encounter|Burn of first degree of unspecified multiple fingers (nail), including thumb, subsequent encounter +C2871930|T037|AB|T23.149S|ICD10CM|Burn first degree of unsp mult fngr (nail), inc thumb, sqla|Burn first degree of unsp mult fngr (nail), inc thumb, sqla +C2871930|T037|PT|T23.149S|ICD10CM|Burn of first degree of unspecified multiple fingers (nail), including thumb, sequela|Burn of first degree of unspecified multiple fingers (nail), including thumb, sequela +C0433334|T037|AB|T23.15|ICD10CM|Burn of first degree of palm|Burn of first degree of palm +C0433334|T037|HT|T23.15|ICD10CM|Burn of first degree of palm|Burn of first degree of palm +C2231647|T037|AB|T23.151|ICD10CM|Burn of first degree of right palm|Burn of first degree of right palm +C2231647|T037|HT|T23.151|ICD10CM|Burn of first degree of right palm|Burn of first degree of right palm +C2871931|T037|PT|T23.151A|ICD10CM|Burn of first degree of right palm, initial encounter|Burn of first degree of right palm, initial encounter +C2871931|T037|AB|T23.151A|ICD10CM|Burn of first degree of right palm, initial encounter|Burn of first degree of right palm, initial encounter +C2871932|T037|PT|T23.151D|ICD10CM|Burn of first degree of right palm, subsequent encounter|Burn of first degree of right palm, subsequent encounter +C2871932|T037|AB|T23.151D|ICD10CM|Burn of first degree of right palm, subsequent encounter|Burn of first degree of right palm, subsequent encounter +C2871933|T037|PT|T23.151S|ICD10CM|Burn of first degree of right palm, sequela|Burn of first degree of right palm, sequela +C2871933|T037|AB|T23.151S|ICD10CM|Burn of first degree of right palm, sequela|Burn of first degree of right palm, sequela +C2871934|T037|AB|T23.152|ICD10CM|Burn of first degree of left palm|Burn of first degree of left palm +C2871934|T037|HT|T23.152|ICD10CM|Burn of first degree of left palm|Burn of first degree of left palm +C2871935|T037|PT|T23.152A|ICD10CM|Burn of first degree of left palm, initial encounter|Burn of first degree of left palm, initial encounter +C2871935|T037|AB|T23.152A|ICD10CM|Burn of first degree of left palm, initial encounter|Burn of first degree of left palm, initial encounter +C2871936|T037|AB|T23.152D|ICD10CM|Burn of first degree of left palm, subsequent encounter|Burn of first degree of left palm, subsequent encounter +C2871936|T037|PT|T23.152D|ICD10CM|Burn of first degree of left palm, subsequent encounter|Burn of first degree of left palm, subsequent encounter +C2871937|T037|PT|T23.152S|ICD10CM|Burn of first degree of left palm, sequela|Burn of first degree of left palm, sequela +C2871937|T037|AB|T23.152S|ICD10CM|Burn of first degree of left palm, sequela|Burn of first degree of left palm, sequela +C2871938|T037|AB|T23.159|ICD10CM|Burn of first degree of unspecified palm|Burn of first degree of unspecified palm +C2871938|T037|HT|T23.159|ICD10CM|Burn of first degree of unspecified palm|Burn of first degree of unspecified palm +C2871939|T037|PT|T23.159A|ICD10CM|Burn of first degree of unspecified palm, initial encounter|Burn of first degree of unspecified palm, initial encounter +C2871939|T037|AB|T23.159A|ICD10CM|Burn of first degree of unspecified palm, initial encounter|Burn of first degree of unspecified palm, initial encounter +C2871940|T037|AB|T23.159D|ICD10CM|Burn of first degree of unspecified palm, subs encntr|Burn of first degree of unspecified palm, subs encntr +C2871940|T037|PT|T23.159D|ICD10CM|Burn of first degree of unspecified palm, subsequent encounter|Burn of first degree of unspecified palm, subsequent encounter +C2871941|T037|PT|T23.159S|ICD10CM|Burn of first degree of unspecified palm, sequela|Burn of first degree of unspecified palm, sequela +C2871941|T037|AB|T23.159S|ICD10CM|Burn of first degree of unspecified palm, sequela|Burn of first degree of unspecified palm, sequela +C0433333|T037|AB|T23.16|ICD10CM|Burn of first degree of back of hand|Burn of first degree of back of hand +C0433333|T037|HT|T23.16|ICD10CM|Burn of first degree of back of hand|Burn of first degree of back of hand +C2231649|T037|AB|T23.161|ICD10CM|Burn of first degree of back of right hand|Burn of first degree of back of right hand +C2231649|T037|HT|T23.161|ICD10CM|Burn of first degree of back of right hand|Burn of first degree of back of right hand +C2871942|T037|AB|T23.161A|ICD10CM|Burn of first degree of back of right hand, init encntr|Burn of first degree of back of right hand, init encntr +C2871942|T037|PT|T23.161A|ICD10CM|Burn of first degree of back of right hand, initial encounter|Burn of first degree of back of right hand, initial encounter +C2871943|T037|AB|T23.161D|ICD10CM|Burn of first degree of back of right hand, subs encntr|Burn of first degree of back of right hand, subs encntr +C2871943|T037|PT|T23.161D|ICD10CM|Burn of first degree of back of right hand, subsequent encounter|Burn of first degree of back of right hand, subsequent encounter +C2871944|T037|PT|T23.161S|ICD10CM|Burn of first degree of back of right hand, sequela|Burn of first degree of back of right hand, sequela +C2871944|T037|AB|T23.161S|ICD10CM|Burn of first degree of back of right hand, sequela|Burn of first degree of back of right hand, sequela +C2231650|T037|AB|T23.162|ICD10CM|Burn of first degree of back of left hand|Burn of first degree of back of left hand +C2231650|T037|HT|T23.162|ICD10CM|Burn of first degree of back of left hand|Burn of first degree of back of left hand +C2871945|T037|AB|T23.162A|ICD10CM|Burn of first degree of back of left hand, initial encounter|Burn of first degree of back of left hand, initial encounter +C2871945|T037|PT|T23.162A|ICD10CM|Burn of first degree of back of left hand, initial encounter|Burn of first degree of back of left hand, initial encounter +C2871946|T037|AB|T23.162D|ICD10CM|Burn of first degree of back of left hand, subs encntr|Burn of first degree of back of left hand, subs encntr +C2871946|T037|PT|T23.162D|ICD10CM|Burn of first degree of back of left hand, subsequent encounter|Burn of first degree of back of left hand, subsequent encounter +C2871947|T037|PT|T23.162S|ICD10CM|Burn of first degree of back of left hand, sequela|Burn of first degree of back of left hand, sequela +C2871947|T037|AB|T23.162S|ICD10CM|Burn of first degree of back of left hand, sequela|Burn of first degree of back of left hand, sequela +C2871948|T037|AB|T23.169|ICD10CM|Burn of first degree of back of unspecified hand|Burn of first degree of back of unspecified hand +C2871948|T037|HT|T23.169|ICD10CM|Burn of first degree of back of unspecified hand|Burn of first degree of back of unspecified hand +C2871949|T037|AB|T23.169A|ICD10CM|Burn of first degree of back of unsp hand, init encntr|Burn of first degree of back of unsp hand, init encntr +C2871949|T037|PT|T23.169A|ICD10CM|Burn of first degree of back of unspecified hand, initial encounter|Burn of first degree of back of unspecified hand, initial encounter +C2871950|T037|AB|T23.169D|ICD10CM|Burn of first degree of back of unsp hand, subs encntr|Burn of first degree of back of unsp hand, subs encntr +C2871950|T037|PT|T23.169D|ICD10CM|Burn of first degree of back of unspecified hand, subsequent encounter|Burn of first degree of back of unspecified hand, subsequent encounter +C2871951|T037|PT|T23.169S|ICD10CM|Burn of first degree of back of unspecified hand, sequela|Burn of first degree of back of unspecified hand, sequela +C2871951|T037|AB|T23.169S|ICD10CM|Burn of first degree of back of unspecified hand, sequela|Burn of first degree of back of unspecified hand, sequela +C0274084|T037|AB|T23.17|ICD10CM|Burn of first degree of wrist|Burn of first degree of wrist +C0274084|T037|HT|T23.17|ICD10CM|Burn of first degree of wrist|Burn of first degree of wrist +C2231651|T037|AB|T23.171|ICD10CM|Burn of first degree of right wrist|Burn of first degree of right wrist +C2231651|T037|HT|T23.171|ICD10CM|Burn of first degree of right wrist|Burn of first degree of right wrist +C2871952|T037|PT|T23.171A|ICD10CM|Burn of first degree of right wrist, initial encounter|Burn of first degree of right wrist, initial encounter +C2871952|T037|AB|T23.171A|ICD10CM|Burn of first degree of right wrist, initial encounter|Burn of first degree of right wrist, initial encounter +C2871953|T037|PT|T23.171D|ICD10CM|Burn of first degree of right wrist, subsequent encounter|Burn of first degree of right wrist, subsequent encounter +C2871953|T037|AB|T23.171D|ICD10CM|Burn of first degree of right wrist, subsequent encounter|Burn of first degree of right wrist, subsequent encounter +C2871954|T037|PT|T23.171S|ICD10CM|Burn of first degree of right wrist, sequela|Burn of first degree of right wrist, sequela +C2871954|T037|AB|T23.171S|ICD10CM|Burn of first degree of right wrist, sequela|Burn of first degree of right wrist, sequela +C2231652|T037|AB|T23.172|ICD10CM|Burn of first degree of left wrist|Burn of first degree of left wrist +C2231652|T037|HT|T23.172|ICD10CM|Burn of first degree of left wrist|Burn of first degree of left wrist +C2871955|T037|PT|T23.172A|ICD10CM|Burn of first degree of left wrist, initial encounter|Burn of first degree of left wrist, initial encounter +C2871955|T037|AB|T23.172A|ICD10CM|Burn of first degree of left wrist, initial encounter|Burn of first degree of left wrist, initial encounter +C2871956|T037|PT|T23.172D|ICD10CM|Burn of first degree of left wrist, subsequent encounter|Burn of first degree of left wrist, subsequent encounter +C2871956|T037|AB|T23.172D|ICD10CM|Burn of first degree of left wrist, subsequent encounter|Burn of first degree of left wrist, subsequent encounter +C2871957|T037|PT|T23.172S|ICD10CM|Burn of first degree of left wrist, sequela|Burn of first degree of left wrist, sequela +C2871957|T037|AB|T23.172S|ICD10CM|Burn of first degree of left wrist, sequela|Burn of first degree of left wrist, sequela +C2871958|T037|AB|T23.179|ICD10CM|Burn of first degree of unspecified wrist|Burn of first degree of unspecified wrist +C2871958|T037|HT|T23.179|ICD10CM|Burn of first degree of unspecified wrist|Burn of first degree of unspecified wrist +C2871959|T037|AB|T23.179A|ICD10CM|Burn of first degree of unspecified wrist, initial encounter|Burn of first degree of unspecified wrist, initial encounter +C2871959|T037|PT|T23.179A|ICD10CM|Burn of first degree of unspecified wrist, initial encounter|Burn of first degree of unspecified wrist, initial encounter +C2871960|T037|AB|T23.179D|ICD10CM|Burn of first degree of unspecified wrist, subs encntr|Burn of first degree of unspecified wrist, subs encntr +C2871960|T037|PT|T23.179D|ICD10CM|Burn of first degree of unspecified wrist, subsequent encounter|Burn of first degree of unspecified wrist, subsequent encounter +C2871961|T037|PT|T23.179S|ICD10CM|Burn of first degree of unspecified wrist, sequela|Burn of first degree of unspecified wrist, sequela +C2871961|T037|AB|T23.179S|ICD10CM|Burn of first degree of unspecified wrist, sequela|Burn of first degree of unspecified wrist, sequela +C2871962|T037|AB|T23.19|ICD10CM|Burn of first degree of multiple sites of wrist and hand|Burn of first degree of multiple sites of wrist and hand +C2871962|T037|HT|T23.19|ICD10CM|Burn of first degree of multiple sites of wrist and hand|Burn of first degree of multiple sites of wrist and hand +C2871963|T037|AB|T23.191|ICD10CM|Burn of first deg mult sites of right wrist and hand|Burn of first deg mult sites of right wrist and hand +C2871963|T037|HT|T23.191|ICD10CM|Burn of first degree of multiple sites of right wrist and hand|Burn of first degree of multiple sites of right wrist and hand +C2871964|T037|AB|T23.191A|ICD10CM|Burn of first deg mult sites of right wrist and hand, init|Burn of first deg mult sites of right wrist and hand, init +C2871964|T037|PT|T23.191A|ICD10CM|Burn of first degree of multiple sites of right wrist and hand, initial encounter|Burn of first degree of multiple sites of right wrist and hand, initial encounter +C2871965|T037|AB|T23.191D|ICD10CM|Burn of first deg mult sites of right wrist and hand, subs|Burn of first deg mult sites of right wrist and hand, subs +C2871965|T037|PT|T23.191D|ICD10CM|Burn of first degree of multiple sites of right wrist and hand, subsequent encounter|Burn of first degree of multiple sites of right wrist and hand, subsequent encounter +C2871966|T037|AB|T23.191S|ICD10CM|Burn of first deg mult sites of right wrs/hnd, sequela|Burn of first deg mult sites of right wrs/hnd, sequela +C2871966|T037|PT|T23.191S|ICD10CM|Burn of first degree of multiple sites of right wrist and hand, sequela|Burn of first degree of multiple sites of right wrist and hand, sequela +C2871967|T037|AB|T23.192|ICD10CM|Burn of first deg mult sites of left wrist and hand|Burn of first deg mult sites of left wrist and hand +C2871967|T037|HT|T23.192|ICD10CM|Burn of first degree of multiple sites of left wrist and hand|Burn of first degree of multiple sites of left wrist and hand +C2871968|T037|AB|T23.192A|ICD10CM|Burn of first deg mult sites of left wrist and hand, init|Burn of first deg mult sites of left wrist and hand, init +C2871968|T037|PT|T23.192A|ICD10CM|Burn of first degree of multiple sites of left wrist and hand, initial encounter|Burn of first degree of multiple sites of left wrist and hand, initial encounter +C2871969|T037|AB|T23.192D|ICD10CM|Burn of first deg mult sites of left wrist and hand, subs|Burn of first deg mult sites of left wrist and hand, subs +C2871969|T037|PT|T23.192D|ICD10CM|Burn of first degree of multiple sites of left wrist and hand, subsequent encounter|Burn of first degree of multiple sites of left wrist and hand, subsequent encounter +C2871970|T037|AB|T23.192S|ICD10CM|Burn of first deg mult sites of left wrist and hand, sequela|Burn of first deg mult sites of left wrist and hand, sequela +C2871970|T037|PT|T23.192S|ICD10CM|Burn of first degree of multiple sites of left wrist and hand, sequela|Burn of first degree of multiple sites of left wrist and hand, sequela +C2871971|T037|AB|T23.199|ICD10CM|Burn of first deg mult sites of unsp wrist and hand|Burn of first deg mult sites of unsp wrist and hand +C2871971|T037|HT|T23.199|ICD10CM|Burn of first degree of multiple sites of unspecified wrist and hand|Burn of first degree of multiple sites of unspecified wrist and hand +C2871972|T037|AB|T23.199A|ICD10CM|Burn of first deg mult sites of unsp wrist and hand, init|Burn of first deg mult sites of unsp wrist and hand, init +C2871972|T037|PT|T23.199A|ICD10CM|Burn of first degree of multiple sites of unspecified wrist and hand, initial encounter|Burn of first degree of multiple sites of unspecified wrist and hand, initial encounter +C2871973|T037|AB|T23.199D|ICD10CM|Burn of first deg mult sites of unsp wrist and hand, subs|Burn of first deg mult sites of unsp wrist and hand, subs +C2871973|T037|PT|T23.199D|ICD10CM|Burn of first degree of multiple sites of unspecified wrist and hand, subsequent encounter|Burn of first degree of multiple sites of unspecified wrist and hand, subsequent encounter +C2871974|T037|AB|T23.199S|ICD10CM|Burn of first deg mult sites of unsp wrist and hand, sequela|Burn of first deg mult sites of unsp wrist and hand, sequela +C2871974|T037|PT|T23.199S|ICD10CM|Burn of first degree of multiple sites of unspecified wrist and hand, sequela|Burn of first degree of multiple sites of unspecified wrist and hand, sequela +C0433361|T037|HT|T23.2|ICD10CM|Burn of second degree of wrist and hand|Burn of second degree of wrist and hand +C0433361|T037|AB|T23.2|ICD10CM|Burn of second degree of wrist and hand|Burn of second degree of wrist and hand +C0433361|T037|PT|T23.2|ICD10|Burn of second degree of wrist and hand|Burn of second degree of wrist and hand +C2871975|T037|AB|T23.20|ICD10CM|Burn of second degree of hand, unspecified site|Burn of second degree of hand, unspecified site +C2871975|T037|HT|T23.20|ICD10CM|Burn of second degree of hand, unspecified site|Burn of second degree of hand, unspecified site +C2871976|T037|AB|T23.201|ICD10CM|Burn of second degree of right hand, unspecified site|Burn of second degree of right hand, unspecified site +C2871976|T037|HT|T23.201|ICD10CM|Burn of second degree of right hand, unspecified site|Burn of second degree of right hand, unspecified site +C2871977|T037|AB|T23.201A|ICD10CM|Burn of second degree of right hand, unsp site, init encntr|Burn of second degree of right hand, unsp site, init encntr +C2871977|T037|PT|T23.201A|ICD10CM|Burn of second degree of right hand, unspecified site, initial encounter|Burn of second degree of right hand, unspecified site, initial encounter +C2871978|T037|AB|T23.201D|ICD10CM|Burn of second degree of right hand, unsp site, subs encntr|Burn of second degree of right hand, unsp site, subs encntr +C2871978|T037|PT|T23.201D|ICD10CM|Burn of second degree of right hand, unspecified site, subsequent encounter|Burn of second degree of right hand, unspecified site, subsequent encounter +C2871979|T037|AB|T23.201S|ICD10CM|Burn of second degree of right hand, unsp site, sequela|Burn of second degree of right hand, unsp site, sequela +C2871979|T037|PT|T23.201S|ICD10CM|Burn of second degree of right hand, unspecified site, sequela|Burn of second degree of right hand, unspecified site, sequela +C2871980|T037|AB|T23.202|ICD10CM|Burn of second degree of left hand, unspecified site|Burn of second degree of left hand, unspecified site +C2871980|T037|HT|T23.202|ICD10CM|Burn of second degree of left hand, unspecified site|Burn of second degree of left hand, unspecified site +C2871981|T037|AB|T23.202A|ICD10CM|Burn of second degree of left hand, unsp site, init encntr|Burn of second degree of left hand, unsp site, init encntr +C2871981|T037|PT|T23.202A|ICD10CM|Burn of second degree of left hand, unspecified site, initial encounter|Burn of second degree of left hand, unspecified site, initial encounter +C2871982|T037|AB|T23.202D|ICD10CM|Burn of second degree of left hand, unsp site, subs encntr|Burn of second degree of left hand, unsp site, subs encntr +C2871982|T037|PT|T23.202D|ICD10CM|Burn of second degree of left hand, unspecified site, subsequent encounter|Burn of second degree of left hand, unspecified site, subsequent encounter +C2871983|T037|AB|T23.202S|ICD10CM|Burn of second degree of left hand, unsp site, sequela|Burn of second degree of left hand, unsp site, sequela +C2871983|T037|PT|T23.202S|ICD10CM|Burn of second degree of left hand, unspecified site, sequela|Burn of second degree of left hand, unspecified site, sequela +C2871984|T037|AB|T23.209|ICD10CM|Burn of second degree of unspecified hand, unspecified site|Burn of second degree of unspecified hand, unspecified site +C2871984|T037|HT|T23.209|ICD10CM|Burn of second degree of unspecified hand, unspecified site|Burn of second degree of unspecified hand, unspecified site +C2871985|T037|AB|T23.209A|ICD10CM|Burn of second degree of unsp hand, unsp site, init encntr|Burn of second degree of unsp hand, unsp site, init encntr +C2871985|T037|PT|T23.209A|ICD10CM|Burn of second degree of unspecified hand, unspecified site, initial encounter|Burn of second degree of unspecified hand, unspecified site, initial encounter +C2871986|T037|AB|T23.209D|ICD10CM|Burn of second degree of unsp hand, unsp site, subs encntr|Burn of second degree of unsp hand, unsp site, subs encntr +C2871986|T037|PT|T23.209D|ICD10CM|Burn of second degree of unspecified hand, unspecified site, subsequent encounter|Burn of second degree of unspecified hand, unspecified site, subsequent encounter +C2871987|T037|AB|T23.209S|ICD10CM|Burn of second degree of unsp hand, unsp site, sequela|Burn of second degree of unsp hand, unsp site, sequela +C2871987|T037|PT|T23.209S|ICD10CM|Burn of second degree of unspecified hand, unspecified site, sequela|Burn of second degree of unspecified hand, unspecified site, sequela +C2871988|T037|AB|T23.21|ICD10CM|Burn of second degree of thumb (nail)|Burn of second degree of thumb (nail) +C2871988|T037|HT|T23.21|ICD10CM|Burn of second degree of thumb (nail)|Burn of second degree of thumb (nail) +C2871989|T037|AB|T23.211|ICD10CM|Burn of second degree of right thumb (nail)|Burn of second degree of right thumb (nail) +C2871989|T037|HT|T23.211|ICD10CM|Burn of second degree of right thumb (nail)|Burn of second degree of right thumb (nail) +C2871990|T037|AB|T23.211A|ICD10CM|Burn of second degree of right thumb (nail), init encntr|Burn of second degree of right thumb (nail), init encntr +C2871990|T037|PT|T23.211A|ICD10CM|Burn of second degree of right thumb (nail), initial encounter|Burn of second degree of right thumb (nail), initial encounter +C2871991|T037|AB|T23.211D|ICD10CM|Burn of second degree of right thumb (nail), subs encntr|Burn of second degree of right thumb (nail), subs encntr +C2871991|T037|PT|T23.211D|ICD10CM|Burn of second degree of right thumb (nail), subsequent encounter|Burn of second degree of right thumb (nail), subsequent encounter +C2871992|T037|PT|T23.211S|ICD10CM|Burn of second degree of right thumb (nail), sequela|Burn of second degree of right thumb (nail), sequela +C2871992|T037|AB|T23.211S|ICD10CM|Burn of second degree of right thumb (nail), sequela|Burn of second degree of right thumb (nail), sequela +C2871993|T037|AB|T23.212|ICD10CM|Burn of second degree of left thumb (nail)|Burn of second degree of left thumb (nail) +C2871993|T037|HT|T23.212|ICD10CM|Burn of second degree of left thumb (nail)|Burn of second degree of left thumb (nail) +C2871994|T037|AB|T23.212A|ICD10CM|Burn of second degree of left thumb (nail), init encntr|Burn of second degree of left thumb (nail), init encntr +C2871994|T037|PT|T23.212A|ICD10CM|Burn of second degree of left thumb (nail), initial encounter|Burn of second degree of left thumb (nail), initial encounter +C2871995|T037|AB|T23.212D|ICD10CM|Burn of second degree of left thumb (nail), subs encntr|Burn of second degree of left thumb (nail), subs encntr +C2871995|T037|PT|T23.212D|ICD10CM|Burn of second degree of left thumb (nail), subsequent encounter|Burn of second degree of left thumb (nail), subsequent encounter +C2871996|T037|PT|T23.212S|ICD10CM|Burn of second degree of left thumb (nail), sequela|Burn of second degree of left thumb (nail), sequela +C2871996|T037|AB|T23.212S|ICD10CM|Burn of second degree of left thumb (nail), sequela|Burn of second degree of left thumb (nail), sequela +C2871997|T037|AB|T23.219|ICD10CM|Burn of second degree of unspecified thumb (nail)|Burn of second degree of unspecified thumb (nail) +C2871997|T037|HT|T23.219|ICD10CM|Burn of second degree of unspecified thumb (nail)|Burn of second degree of unspecified thumb (nail) +C2871998|T037|AB|T23.219A|ICD10CM|Burn of second degree of unsp thumb (nail), init encntr|Burn of second degree of unsp thumb (nail), init encntr +C2871998|T037|PT|T23.219A|ICD10CM|Burn of second degree of unspecified thumb (nail), initial encounter|Burn of second degree of unspecified thumb (nail), initial encounter +C2871999|T037|AB|T23.219D|ICD10CM|Burn of second degree of unsp thumb (nail), subs encntr|Burn of second degree of unsp thumb (nail), subs encntr +C2871999|T037|PT|T23.219D|ICD10CM|Burn of second degree of unspecified thumb (nail), subsequent encounter|Burn of second degree of unspecified thumb (nail), subsequent encounter +C2872000|T037|PT|T23.219S|ICD10CM|Burn of second degree of unspecified thumb (nail), sequela|Burn of second degree of unspecified thumb (nail), sequela +C2872000|T037|AB|T23.219S|ICD10CM|Burn of second degree of unspecified thumb (nail), sequela|Burn of second degree of unspecified thumb (nail), sequela +C2872001|T037|AB|T23.22|ICD10CM|Burn of second degree of single finger (nail) except thumb|Burn of second degree of single finger (nail) except thumb +C2872001|T037|HT|T23.22|ICD10CM|Burn of second degree of single finger (nail) except thumb|Burn of second degree of single finger (nail) except thumb +C2872002|T037|AB|T23.221|ICD10CM|Burn of second degree of single r finger (nail) except thumb|Burn of second degree of single r finger (nail) except thumb +C2872002|T037|HT|T23.221|ICD10CM|Burn of second degree of single right finger (nail) except thumb|Burn of second degree of single right finger (nail) except thumb +C2872003|T037|PT|T23.221A|ICD10CM|Burn of second degree of single right finger (nail) except thumb, initial encounter|Burn of second degree of single right finger (nail) except thumb, initial encounter +C2872003|T037|AB|T23.221A|ICD10CM|Burn second degree of single r finger except thumb, init|Burn second degree of single r finger except thumb, init +C2872004|T037|PT|T23.221D|ICD10CM|Burn of second degree of single right finger (nail) except thumb, subsequent encounter|Burn of second degree of single right finger (nail) except thumb, subsequent encounter +C2872004|T037|AB|T23.221D|ICD10CM|Burn second degree of single r finger except thumb, subs|Burn second degree of single r finger except thumb, subs +C2872005|T037|PT|T23.221S|ICD10CM|Burn of second degree of single right finger (nail) except thumb, sequela|Burn of second degree of single right finger (nail) except thumb, sequela +C2872005|T037|AB|T23.221S|ICD10CM|Burn second degree of single r finger except thumb, sqla|Burn second degree of single r finger except thumb, sqla +C2872006|T037|AB|T23.222|ICD10CM|Burn of second degree of single l finger (nail) except thumb|Burn of second degree of single l finger (nail) except thumb +C2872006|T037|HT|T23.222|ICD10CM|Burn of second degree of single left finger (nail) except thumb|Burn of second degree of single left finger (nail) except thumb +C2872007|T037|PT|T23.222A|ICD10CM|Burn of second degree of single left finger (nail) except thumb, initial encounter|Burn of second degree of single left finger (nail) except thumb, initial encounter +C2872007|T037|AB|T23.222A|ICD10CM|Burn second degree of single l finger except thumb, init|Burn second degree of single l finger except thumb, init +C2872008|T037|PT|T23.222D|ICD10CM|Burn of second degree of single left finger (nail) except thumb, subsequent encounter|Burn of second degree of single left finger (nail) except thumb, subsequent encounter +C2872008|T037|AB|T23.222D|ICD10CM|Burn second degree of single l finger except thumb, subs|Burn second degree of single l finger except thumb, subs +C2872009|T037|PT|T23.222S|ICD10CM|Burn of second degree of single left finger (nail) except thumb, sequela|Burn of second degree of single left finger (nail) except thumb, sequela +C2872009|T037|AB|T23.222S|ICD10CM|Burn second degree of single l finger except thumb, sqla|Burn second degree of single l finger except thumb, sqla +C2872010|T037|HT|T23.229|ICD10CM|Burn of second degree of unspecified single finger (nail) except thumb|Burn of second degree of unspecified single finger (nail) except thumb +C2872010|T037|AB|T23.229|ICD10CM|Burn second degree of unsp single finger (nail) except thumb|Burn second degree of unsp single finger (nail) except thumb +C2872011|T037|PT|T23.229A|ICD10CM|Burn of second degree of unspecified single finger (nail) except thumb, initial encounter|Burn of second degree of unspecified single finger (nail) except thumb, initial encounter +C2872011|T037|AB|T23.229A|ICD10CM|Burn second degree of unsp single finger except thumb, init|Burn second degree of unsp single finger except thumb, init +C2872012|T037|PT|T23.229D|ICD10CM|Burn of second degree of unspecified single finger (nail) except thumb, subsequent encounter|Burn of second degree of unspecified single finger (nail) except thumb, subsequent encounter +C2872012|T037|AB|T23.229D|ICD10CM|Burn second degree of unsp single finger except thumb, subs|Burn second degree of unsp single finger except thumb, subs +C2872013|T037|PT|T23.229S|ICD10CM|Burn of second degree of unspecified single finger (nail) except thumb, sequela|Burn of second degree of unspecified single finger (nail) except thumb, sequela +C2872013|T037|AB|T23.229S|ICD10CM|Burn second degree of unsp single finger except thumb, sqla|Burn second degree of unsp single finger except thumb, sqla +C2872014|T037|AB|T23.23|ICD10CM|Burn of 2nd deg mul fingers (nail), not including thumb|Burn of 2nd deg mul fingers (nail), not including thumb +C2872014|T037|HT|T23.23|ICD10CM|Burn of second degree of multiple fingers (nail), not including thumb|Burn of second degree of multiple fingers (nail), not including thumb +C2872015|T037|AB|T23.231|ICD10CM|Burn of 2nd deg mul right fingers (nail), not inc thumb|Burn of 2nd deg mul right fingers (nail), not inc thumb +C2872015|T037|HT|T23.231|ICD10CM|Burn of second degree of multiple right fingers (nail), not including thumb|Burn of second degree of multiple right fingers (nail), not including thumb +C2872016|T037|AB|T23.231A|ICD10CM|Burn 2nd deg mul right fingers (nail), not inc thumb, init|Burn 2nd deg mul right fingers (nail), not inc thumb, init +C2872016|T037|PT|T23.231A|ICD10CM|Burn of second degree of multiple right fingers (nail), not including thumb, initial encounter|Burn of second degree of multiple right fingers (nail), not including thumb, initial encounter +C2872017|T037|AB|T23.231D|ICD10CM|Burn 2nd deg mul right fingers (nail), not inc thumb, subs|Burn 2nd deg mul right fingers (nail), not inc thumb, subs +C2872017|T037|PT|T23.231D|ICD10CM|Burn of second degree of multiple right fingers (nail), not including thumb, subsequent encounter|Burn of second degree of multiple right fingers (nail), not including thumb, subsequent encounter +C2872018|T037|AB|T23.231S|ICD10CM|Burn 2nd deg mul right fngr (nail), not inc thumb, sequela|Burn 2nd deg mul right fngr (nail), not inc thumb, sequela +C2872018|T037|PT|T23.231S|ICD10CM|Burn of second degree of multiple right fingers (nail), not including thumb, sequela|Burn of second degree of multiple right fingers (nail), not including thumb, sequela +C2872019|T037|AB|T23.232|ICD10CM|Burn of 2nd deg mul left fingers (nail), not including thumb|Burn of 2nd deg mul left fingers (nail), not including thumb +C2872019|T037|HT|T23.232|ICD10CM|Burn of second degree of multiple left fingers (nail), not including thumb|Burn of second degree of multiple left fingers (nail), not including thumb +C2872020|T037|AB|T23.232A|ICD10CM|Burn of 2nd deg mul left fingers (nail), not inc thumb, init|Burn of 2nd deg mul left fingers (nail), not inc thumb, init +C2872020|T037|PT|T23.232A|ICD10CM|Burn of second degree of multiple left fingers (nail), not including thumb, initial encounter|Burn of second degree of multiple left fingers (nail), not including thumb, initial encounter +C2872021|T037|AB|T23.232D|ICD10CM|Burn of 2nd deg mul left fingers (nail), not inc thumb, subs|Burn of 2nd deg mul left fingers (nail), not inc thumb, subs +C2872021|T037|PT|T23.232D|ICD10CM|Burn of second degree of multiple left fingers (nail), not including thumb, subsequent encounter|Burn of second degree of multiple left fingers (nail), not including thumb, subsequent encounter +C2872022|T037|AB|T23.232S|ICD10CM|Burn 2nd deg mul left fingers (nail), not inc thumb, sequela|Burn 2nd deg mul left fingers (nail), not inc thumb, sequela +C2872022|T037|PT|T23.232S|ICD10CM|Burn of second degree of multiple left fingers (nail), not including thumb, sequela|Burn of second degree of multiple left fingers (nail), not including thumb, sequela +C2872023|T037|HT|T23.239|ICD10CM|Burn of second degree of unspecified multiple fingers (nail), not including thumb|Burn of second degree of unspecified multiple fingers (nail), not including thumb +C2872023|T037|AB|T23.239|ICD10CM|Burn second degree of unsp mult fngr (nail), not inc thumb|Burn second degree of unsp mult fngr (nail), not inc thumb +C2872024|T037|PT|T23.239A|ICD10CM|Burn of second degree of unspecified multiple fingers (nail), not including thumb, initial encounter|Burn of second degree of unspecified multiple fingers (nail), not including thumb, initial encounter +C2872024|T037|AB|T23.239A|ICD10CM|Burn second degree of unsp mult fngr, not inc thumb, init|Burn second degree of unsp mult fngr, not inc thumb, init +C2872025|T037|AB|T23.239D|ICD10CM|Burn second degree of unsp mult fngr, not inc thumb, subs|Burn second degree of unsp mult fngr, not inc thumb, subs +C2872026|T037|PT|T23.239S|ICD10CM|Burn of second degree of unspecified multiple fingers (nail), not including thumb, sequela|Burn of second degree of unspecified multiple fingers (nail), not including thumb, sequela +C2872026|T037|AB|T23.239S|ICD10CM|Burn second degree of unsp mult fngr, not inc thumb, sqla|Burn second degree of unsp mult fngr, not inc thumb, sqla +C2872027|T037|AB|T23.24|ICD10CM|Burn of 2nd deg mul fingers (nail), including thumb|Burn of 2nd deg mul fingers (nail), including thumb +C2872027|T037|HT|T23.24|ICD10CM|Burn of second degree of multiple fingers (nail), including thumb|Burn of second degree of multiple fingers (nail), including thumb +C2872028|T037|AB|T23.241|ICD10CM|Burn of 2nd deg mul right fingers (nail), including thumb|Burn of 2nd deg mul right fingers (nail), including thumb +C2872028|T037|HT|T23.241|ICD10CM|Burn of second degree of multiple right fingers (nail), including thumb|Burn of second degree of multiple right fingers (nail), including thumb +C2872029|T037|AB|T23.241A|ICD10CM|Burn of 2nd deg mul right fingers (nail), inc thumb, init|Burn of 2nd deg mul right fingers (nail), inc thumb, init +C2872029|T037|PT|T23.241A|ICD10CM|Burn of second degree of multiple right fingers (nail), including thumb, initial encounter|Burn of second degree of multiple right fingers (nail), including thumb, initial encounter +C2872030|T037|AB|T23.241D|ICD10CM|Burn of 2nd deg mul right fingers (nail), inc thumb, subs|Burn of 2nd deg mul right fingers (nail), inc thumb, subs +C2872030|T037|PT|T23.241D|ICD10CM|Burn of second degree of multiple right fingers (nail), including thumb, subsequent encounter|Burn of second degree of multiple right fingers (nail), including thumb, subsequent encounter +C2872031|T037|AB|T23.241S|ICD10CM|Burn of 2nd deg mul right fingers (nail), inc thumb, sequela|Burn of 2nd deg mul right fingers (nail), inc thumb, sequela +C2872031|T037|PT|T23.241S|ICD10CM|Burn of second degree of multiple right fingers (nail), including thumb, sequela|Burn of second degree of multiple right fingers (nail), including thumb, sequela +C2872032|T037|AB|T23.242|ICD10CM|Burn of 2nd deg mul left fingers (nail), including thumb|Burn of 2nd deg mul left fingers (nail), including thumb +C2872032|T037|HT|T23.242|ICD10CM|Burn of second degree of multiple left fingers (nail), including thumb|Burn of second degree of multiple left fingers (nail), including thumb +C2872033|T037|AB|T23.242A|ICD10CM|Burn of 2nd deg mul left fingers (nail), inc thumb, init|Burn of 2nd deg mul left fingers (nail), inc thumb, init +C2872033|T037|PT|T23.242A|ICD10CM|Burn of second degree of multiple left fingers (nail), including thumb, initial encounter|Burn of second degree of multiple left fingers (nail), including thumb, initial encounter +C2872034|T037|AB|T23.242D|ICD10CM|Burn of 2nd deg mul left fingers (nail), inc thumb, subs|Burn of 2nd deg mul left fingers (nail), inc thumb, subs +C2872034|T037|PT|T23.242D|ICD10CM|Burn of second degree of multiple left fingers (nail), including thumb, subsequent encounter|Burn of second degree of multiple left fingers (nail), including thumb, subsequent encounter +C2872035|T037|AB|T23.242S|ICD10CM|Burn of 2nd deg mul left fingers (nail), inc thumb, sequela|Burn of 2nd deg mul left fingers (nail), inc thumb, sequela +C2872035|T037|PT|T23.242S|ICD10CM|Burn of second degree of multiple left fingers (nail), including thumb, sequela|Burn of second degree of multiple left fingers (nail), including thumb, sequela +C2872036|T037|AB|T23.249|ICD10CM|Burn of second degree of unsp mult fingers (nail), inc thumb|Burn of second degree of unsp mult fingers (nail), inc thumb +C2872036|T037|HT|T23.249|ICD10CM|Burn of second degree of unspecified multiple fingers (nail), including thumb|Burn of second degree of unspecified multiple fingers (nail), including thumb +C2872037|T037|PT|T23.249A|ICD10CM|Burn of second degree of unspecified multiple fingers (nail), including thumb, initial encounter|Burn of second degree of unspecified multiple fingers (nail), including thumb, initial encounter +C2872037|T037|AB|T23.249A|ICD10CM|Burn second degree of unsp mult fngr (nail), inc thumb, init|Burn second degree of unsp mult fngr (nail), inc thumb, init +C2872038|T037|PT|T23.249D|ICD10CM|Burn of second degree of unspecified multiple fingers (nail), including thumb, subsequent encounter|Burn of second degree of unspecified multiple fingers (nail), including thumb, subsequent encounter +C2872038|T037|AB|T23.249D|ICD10CM|Burn second degree of unsp mult fngr (nail), inc thumb, subs|Burn second degree of unsp mult fngr (nail), inc thumb, subs +C2872039|T037|PT|T23.249S|ICD10CM|Burn of second degree of unspecified multiple fingers (nail), including thumb, sequela|Burn of second degree of unspecified multiple fingers (nail), including thumb, sequela +C2872039|T037|AB|T23.249S|ICD10CM|Burn second degree of unsp mult fngr (nail), inc thumb, sqla|Burn second degree of unsp mult fngr (nail), inc thumb, sqla +C0562069|T037|AB|T23.25|ICD10CM|Burn of second degree of palm|Burn of second degree of palm +C0562069|T037|HT|T23.25|ICD10CM|Burn of second degree of palm|Burn of second degree of palm +C2872040|T037|AB|T23.251|ICD10CM|Burn of second degree of right palm|Burn of second degree of right palm +C2872040|T037|HT|T23.251|ICD10CM|Burn of second degree of right palm|Burn of second degree of right palm +C2872041|T037|PT|T23.251A|ICD10CM|Burn of second degree of right palm, initial encounter|Burn of second degree of right palm, initial encounter +C2872041|T037|AB|T23.251A|ICD10CM|Burn of second degree of right palm, initial encounter|Burn of second degree of right palm, initial encounter +C2872042|T037|PT|T23.251D|ICD10CM|Burn of second degree of right palm, subsequent encounter|Burn of second degree of right palm, subsequent encounter +C2872042|T037|AB|T23.251D|ICD10CM|Burn of second degree of right palm, subsequent encounter|Burn of second degree of right palm, subsequent encounter +C2872043|T037|PT|T23.251S|ICD10CM|Burn of second degree of right palm, sequela|Burn of second degree of right palm, sequela +C2872043|T037|AB|T23.251S|ICD10CM|Burn of second degree of right palm, sequela|Burn of second degree of right palm, sequela +C2872044|T037|AB|T23.252|ICD10CM|Burn of second degree of left palm|Burn of second degree of left palm +C2872044|T037|HT|T23.252|ICD10CM|Burn of second degree of left palm|Burn of second degree of left palm +C2872045|T037|PT|T23.252A|ICD10CM|Burn of second degree of left palm, initial encounter|Burn of second degree of left palm, initial encounter +C2872045|T037|AB|T23.252A|ICD10CM|Burn of second degree of left palm, initial encounter|Burn of second degree of left palm, initial encounter +C2872046|T037|PT|T23.252D|ICD10CM|Burn of second degree of left palm, subsequent encounter|Burn of second degree of left palm, subsequent encounter +C2872046|T037|AB|T23.252D|ICD10CM|Burn of second degree of left palm, subsequent encounter|Burn of second degree of left palm, subsequent encounter +C2872047|T037|PT|T23.252S|ICD10CM|Burn of second degree of left palm, sequela|Burn of second degree of left palm, sequela +C2872047|T037|AB|T23.252S|ICD10CM|Burn of second degree of left palm, sequela|Burn of second degree of left palm, sequela +C2872048|T037|AB|T23.259|ICD10CM|Burn of second degree of unspecified palm|Burn of second degree of unspecified palm +C2872048|T037|HT|T23.259|ICD10CM|Burn of second degree of unspecified palm|Burn of second degree of unspecified palm +C2872049|T037|AB|T23.259A|ICD10CM|Burn of second degree of unspecified palm, initial encounter|Burn of second degree of unspecified palm, initial encounter +C2872049|T037|PT|T23.259A|ICD10CM|Burn of second degree of unspecified palm, initial encounter|Burn of second degree of unspecified palm, initial encounter +C2872050|T037|AB|T23.259D|ICD10CM|Burn of second degree of unspecified palm, subs encntr|Burn of second degree of unspecified palm, subs encntr +C2872050|T037|PT|T23.259D|ICD10CM|Burn of second degree of unspecified palm, subsequent encounter|Burn of second degree of unspecified palm, subsequent encounter +C2872051|T037|PT|T23.259S|ICD10CM|Burn of second degree of unspecified palm, sequela|Burn of second degree of unspecified palm, sequela +C2872051|T037|AB|T23.259S|ICD10CM|Burn of second degree of unspecified palm, sequela|Burn of second degree of unspecified palm, sequela +C0562070|T037|AB|T23.26|ICD10CM|Burn of second degree of back of hand|Burn of second degree of back of hand +C0562070|T037|HT|T23.26|ICD10CM|Burn of second degree of back of hand|Burn of second degree of back of hand +C2229286|T037|AB|T23.261|ICD10CM|Burn of second degree of back of right hand|Burn of second degree of back of right hand +C2229286|T037|HT|T23.261|ICD10CM|Burn of second degree of back of right hand|Burn of second degree of back of right hand +C2872052|T037|AB|T23.261A|ICD10CM|Burn of second degree of back of right hand, init encntr|Burn of second degree of back of right hand, init encntr +C2872052|T037|PT|T23.261A|ICD10CM|Burn of second degree of back of right hand, initial encounter|Burn of second degree of back of right hand, initial encounter +C2872053|T037|AB|T23.261D|ICD10CM|Burn of second degree of back of right hand, subs encntr|Burn of second degree of back of right hand, subs encntr +C2872053|T037|PT|T23.261D|ICD10CM|Burn of second degree of back of right hand, subsequent encounter|Burn of second degree of back of right hand, subsequent encounter +C2872054|T037|AB|T23.261S|ICD10CM|Burn of second degree of back of right hand, sequela|Burn of second degree of back of right hand, sequela +C2872054|T037|PT|T23.261S|ICD10CM|Burn of second degree of back of right hand, sequela|Burn of second degree of back of right hand, sequela +C2229285|T037|AB|T23.262|ICD10CM|Burn of second degree of back of left hand|Burn of second degree of back of left hand +C2229285|T037|HT|T23.262|ICD10CM|Burn of second degree of back of left hand|Burn of second degree of back of left hand +C2872055|T037|AB|T23.262A|ICD10CM|Burn of second degree of back of left hand, init encntr|Burn of second degree of back of left hand, init encntr +C2872055|T037|PT|T23.262A|ICD10CM|Burn of second degree of back of left hand, initial encounter|Burn of second degree of back of left hand, initial encounter +C2872056|T037|AB|T23.262D|ICD10CM|Burn of second degree of back of left hand, subs encntr|Burn of second degree of back of left hand, subs encntr +C2872056|T037|PT|T23.262D|ICD10CM|Burn of second degree of back of left hand, subsequent encounter|Burn of second degree of back of left hand, subsequent encounter +C2872057|T037|AB|T23.262S|ICD10CM|Burn of second degree of back of left hand, sequela|Burn of second degree of back of left hand, sequela +C2872057|T037|PT|T23.262S|ICD10CM|Burn of second degree of back of left hand, sequela|Burn of second degree of back of left hand, sequela +C2872058|T037|AB|T23.269|ICD10CM|Burn of second degree of back of unspecified hand|Burn of second degree of back of unspecified hand +C2872058|T037|HT|T23.269|ICD10CM|Burn of second degree of back of unspecified hand|Burn of second degree of back of unspecified hand +C2872059|T037|AB|T23.269A|ICD10CM|Burn of second degree of back of unsp hand, init encntr|Burn of second degree of back of unsp hand, init encntr +C2872059|T037|PT|T23.269A|ICD10CM|Burn of second degree of back of unspecified hand, initial encounter|Burn of second degree of back of unspecified hand, initial encounter +C2872060|T037|AB|T23.269D|ICD10CM|Burn of second degree of back of unsp hand, subs encntr|Burn of second degree of back of unsp hand, subs encntr +C2872060|T037|PT|T23.269D|ICD10CM|Burn of second degree of back of unspecified hand, subsequent encounter|Burn of second degree of back of unspecified hand, subsequent encounter +C2872061|T037|AB|T23.269S|ICD10CM|Burn of second degree of back of unspecified hand, sequela|Burn of second degree of back of unspecified hand, sequela +C2872061|T037|PT|T23.269S|ICD10CM|Burn of second degree of back of unspecified hand, sequela|Burn of second degree of back of unspecified hand, sequela +C0274085|T037|AB|T23.27|ICD10CM|Burn of second degree of wrist|Burn of second degree of wrist +C0274085|T037|HT|T23.27|ICD10CM|Burn of second degree of wrist|Burn of second degree of wrist +C2229321|T037|AB|T23.271|ICD10CM|Burn of second degree of right wrist|Burn of second degree of right wrist +C2229321|T037|HT|T23.271|ICD10CM|Burn of second degree of right wrist|Burn of second degree of right wrist +C2872062|T037|AB|T23.271A|ICD10CM|Burn of second degree of right wrist, initial encounter|Burn of second degree of right wrist, initial encounter +C2872062|T037|PT|T23.271A|ICD10CM|Burn of second degree of right wrist, initial encounter|Burn of second degree of right wrist, initial encounter +C2872063|T037|PT|T23.271D|ICD10CM|Burn of second degree of right wrist, subsequent encounter|Burn of second degree of right wrist, subsequent encounter +C2872063|T037|AB|T23.271D|ICD10CM|Burn of second degree of right wrist, subsequent encounter|Burn of second degree of right wrist, subsequent encounter +C2872064|T037|PT|T23.271S|ICD10CM|Burn of second degree of right wrist, sequela|Burn of second degree of right wrist, sequela +C2872064|T037|AB|T23.271S|ICD10CM|Burn of second degree of right wrist, sequela|Burn of second degree of right wrist, sequela +C2229304|T037|AB|T23.272|ICD10CM|Burn of second degree of left wrist|Burn of second degree of left wrist +C2229304|T037|HT|T23.272|ICD10CM|Burn of second degree of left wrist|Burn of second degree of left wrist +C2872065|T037|PT|T23.272A|ICD10CM|Burn of second degree of left wrist, initial encounter|Burn of second degree of left wrist, initial encounter +C2872065|T037|AB|T23.272A|ICD10CM|Burn of second degree of left wrist, initial encounter|Burn of second degree of left wrist, initial encounter +C2872066|T037|PT|T23.272D|ICD10CM|Burn of second degree of left wrist, subsequent encounter|Burn of second degree of left wrist, subsequent encounter +C2872066|T037|AB|T23.272D|ICD10CM|Burn of second degree of left wrist, subsequent encounter|Burn of second degree of left wrist, subsequent encounter +C2872067|T037|PT|T23.272S|ICD10CM|Burn of second degree of left wrist, sequela|Burn of second degree of left wrist, sequela +C2872067|T037|AB|T23.272S|ICD10CM|Burn of second degree of left wrist, sequela|Burn of second degree of left wrist, sequela +C2872068|T037|AB|T23.279|ICD10CM|Burn of second degree of unspecified wrist|Burn of second degree of unspecified wrist +C2872068|T037|HT|T23.279|ICD10CM|Burn of second degree of unspecified wrist|Burn of second degree of unspecified wrist +C2872069|T037|AB|T23.279A|ICD10CM|Burn of second degree of unspecified wrist, init encntr|Burn of second degree of unspecified wrist, init encntr +C2872069|T037|PT|T23.279A|ICD10CM|Burn of second degree of unspecified wrist, initial encounter|Burn of second degree of unspecified wrist, initial encounter +C2872070|T037|AB|T23.279D|ICD10CM|Burn of second degree of unspecified wrist, subs encntr|Burn of second degree of unspecified wrist, subs encntr +C2872070|T037|PT|T23.279D|ICD10CM|Burn of second degree of unspecified wrist, subsequent encounter|Burn of second degree of unspecified wrist, subsequent encounter +C2872071|T037|PT|T23.279S|ICD10CM|Burn of second degree of unspecified wrist, sequela|Burn of second degree of unspecified wrist, sequela +C2872071|T037|AB|T23.279S|ICD10CM|Burn of second degree of unspecified wrist, sequela|Burn of second degree of unspecified wrist, sequela +C2872072|T037|AB|T23.29|ICD10CM|Burn of second degree of multiple sites of wrist and hand|Burn of second degree of multiple sites of wrist and hand +C2872072|T037|HT|T23.29|ICD10CM|Burn of second degree of multiple sites of wrist and hand|Burn of second degree of multiple sites of wrist and hand +C2872073|T037|AB|T23.291|ICD10CM|Burn of 2nd deg mul sites of right wrist and hand|Burn of 2nd deg mul sites of right wrist and hand +C2872073|T037|HT|T23.291|ICD10CM|Burn of second degree of multiple sites of right wrist and hand|Burn of second degree of multiple sites of right wrist and hand +C2872074|T037|AB|T23.291A|ICD10CM|Burn of 2nd deg mul sites of right wrist and hand, init|Burn of 2nd deg mul sites of right wrist and hand, init +C2872074|T037|PT|T23.291A|ICD10CM|Burn of second degree of multiple sites of right wrist and hand, initial encounter|Burn of second degree of multiple sites of right wrist and hand, initial encounter +C2872075|T037|AB|T23.291D|ICD10CM|Burn of 2nd deg mul sites of right wrist and hand, subs|Burn of 2nd deg mul sites of right wrist and hand, subs +C2872075|T037|PT|T23.291D|ICD10CM|Burn of second degree of multiple sites of right wrist and hand, subsequent encounter|Burn of second degree of multiple sites of right wrist and hand, subsequent encounter +C2872076|T037|AB|T23.291S|ICD10CM|Burn of 2nd deg mul sites of right wrist and hand, sequela|Burn of 2nd deg mul sites of right wrist and hand, sequela +C2872076|T037|PT|T23.291S|ICD10CM|Burn of second degree of multiple sites of right wrist and hand, sequela|Burn of second degree of multiple sites of right wrist and hand, sequela +C2872077|T037|AB|T23.292|ICD10CM|Burn of 2nd deg mul sites of left wrist and hand|Burn of 2nd deg mul sites of left wrist and hand +C2872077|T037|HT|T23.292|ICD10CM|Burn of second degree of multiple sites of left wrist and hand|Burn of second degree of multiple sites of left wrist and hand +C2872078|T037|AB|T23.292A|ICD10CM|Burn of 2nd deg mul sites of left wrist and hand, init|Burn of 2nd deg mul sites of left wrist and hand, init +C2872078|T037|PT|T23.292A|ICD10CM|Burn of second degree of multiple sites of left wrist and hand, initial encounter|Burn of second degree of multiple sites of left wrist and hand, initial encounter +C2872079|T037|AB|T23.292D|ICD10CM|Burn of 2nd deg mul sites of left wrist and hand, subs|Burn of 2nd deg mul sites of left wrist and hand, subs +C2872079|T037|PT|T23.292D|ICD10CM|Burn of second degree of multiple sites of left wrist and hand, subsequent encounter|Burn of second degree of multiple sites of left wrist and hand, subsequent encounter +C2872080|T037|AB|T23.292S|ICD10CM|Burn of 2nd deg mul sites of left wrist and hand, sequela|Burn of 2nd deg mul sites of left wrist and hand, sequela +C2872080|T037|PT|T23.292S|ICD10CM|Burn of second degree of multiple sites of left wrist and hand, sequela|Burn of second degree of multiple sites of left wrist and hand, sequela +C2872081|T037|AB|T23.299|ICD10CM|Burn of 2nd deg mul sites of unsp wrist and hand|Burn of 2nd deg mul sites of unsp wrist and hand +C2872081|T037|HT|T23.299|ICD10CM|Burn of second degree of multiple sites of unspecified wrist and hand|Burn of second degree of multiple sites of unspecified wrist and hand +C2872082|T037|AB|T23.299A|ICD10CM|Burn of 2nd deg mul sites of unsp wrist and hand, init|Burn of 2nd deg mul sites of unsp wrist and hand, init +C2872082|T037|PT|T23.299A|ICD10CM|Burn of second degree of multiple sites of unspecified wrist and hand, initial encounter|Burn of second degree of multiple sites of unspecified wrist and hand, initial encounter +C2872083|T037|AB|T23.299D|ICD10CM|Burn of 2nd deg mul sites of unsp wrist and hand, subs|Burn of 2nd deg mul sites of unsp wrist and hand, subs +C2872083|T037|PT|T23.299D|ICD10CM|Burn of second degree of multiple sites of unspecified wrist and hand, subsequent encounter|Burn of second degree of multiple sites of unspecified wrist and hand, subsequent encounter +C2872084|T037|AB|T23.299S|ICD10CM|Burn of 2nd deg mul sites of unsp wrist and hand, sequela|Burn of 2nd deg mul sites of unsp wrist and hand, sequela +C2872084|T037|PT|T23.299S|ICD10CM|Burn of second degree of multiple sites of unspecified wrist and hand, sequela|Burn of second degree of multiple sites of unspecified wrist and hand, sequela +C0274134|T037|HT|T23.3|ICD10CM|Burn of third degree of wrist and hand|Burn of third degree of wrist and hand +C0274134|T037|AB|T23.3|ICD10CM|Burn of third degree of wrist and hand|Burn of third degree of wrist and hand +C0274134|T037|PT|T23.3|ICD10|Burn of third degree of wrist and hand|Burn of third degree of wrist and hand +C2872085|T037|AB|T23.30|ICD10CM|Burn of third degree of hand, unspecified site|Burn of third degree of hand, unspecified site +C2872085|T037|HT|T23.30|ICD10CM|Burn of third degree of hand, unspecified site|Burn of third degree of hand, unspecified site +C2872086|T037|AB|T23.301|ICD10CM|Burn of third degree of right hand, unspecified site|Burn of third degree of right hand, unspecified site +C2872086|T037|HT|T23.301|ICD10CM|Burn of third degree of right hand, unspecified site|Burn of third degree of right hand, unspecified site +C2872087|T037|AB|T23.301A|ICD10CM|Burn of third degree of right hand, unsp site, init encntr|Burn of third degree of right hand, unsp site, init encntr +C2872087|T037|PT|T23.301A|ICD10CM|Burn of third degree of right hand, unspecified site, initial encounter|Burn of third degree of right hand, unspecified site, initial encounter +C2872088|T037|AB|T23.301D|ICD10CM|Burn of third degree of right hand, unsp site, subs encntr|Burn of third degree of right hand, unsp site, subs encntr +C2872088|T037|PT|T23.301D|ICD10CM|Burn of third degree of right hand, unspecified site, subsequent encounter|Burn of third degree of right hand, unspecified site, subsequent encounter +C2872089|T037|AB|T23.301S|ICD10CM|Burn of third degree of right hand, unsp site, sequela|Burn of third degree of right hand, unsp site, sequela +C2872089|T037|PT|T23.301S|ICD10CM|Burn of third degree of right hand, unspecified site, sequela|Burn of third degree of right hand, unspecified site, sequela +C2872090|T037|AB|T23.302|ICD10CM|Burn of third degree of left hand, unspecified site|Burn of third degree of left hand, unspecified site +C2872090|T037|HT|T23.302|ICD10CM|Burn of third degree of left hand, unspecified site|Burn of third degree of left hand, unspecified site +C2872091|T037|AB|T23.302A|ICD10CM|Burn of third degree of left hand, unsp site, init encntr|Burn of third degree of left hand, unsp site, init encntr +C2872091|T037|PT|T23.302A|ICD10CM|Burn of third degree of left hand, unspecified site, initial encounter|Burn of third degree of left hand, unspecified site, initial encounter +C2872092|T037|AB|T23.302D|ICD10CM|Burn of third degree of left hand, unsp site, subs encntr|Burn of third degree of left hand, unsp site, subs encntr +C2872092|T037|PT|T23.302D|ICD10CM|Burn of third degree of left hand, unspecified site, subsequent encounter|Burn of third degree of left hand, unspecified site, subsequent encounter +C2872093|T037|AB|T23.302S|ICD10CM|Burn of third degree of left hand, unspecified site, sequela|Burn of third degree of left hand, unspecified site, sequela +C2872093|T037|PT|T23.302S|ICD10CM|Burn of third degree of left hand, unspecified site, sequela|Burn of third degree of left hand, unspecified site, sequela +C2872094|T037|AB|T23.309|ICD10CM|Burn of third degree of unspecified hand, unspecified site|Burn of third degree of unspecified hand, unspecified site +C2872094|T037|HT|T23.309|ICD10CM|Burn of third degree of unspecified hand, unspecified site|Burn of third degree of unspecified hand, unspecified site +C2872095|T037|AB|T23.309A|ICD10CM|Burn of third degree of unsp hand, unsp site, init encntr|Burn of third degree of unsp hand, unsp site, init encntr +C2872095|T037|PT|T23.309A|ICD10CM|Burn of third degree of unspecified hand, unspecified site, initial encounter|Burn of third degree of unspecified hand, unspecified site, initial encounter +C2872096|T037|AB|T23.309D|ICD10CM|Burn of third degree of unsp hand, unsp site, subs encntr|Burn of third degree of unsp hand, unsp site, subs encntr +C2872096|T037|PT|T23.309D|ICD10CM|Burn of third degree of unspecified hand, unspecified site, subsequent encounter|Burn of third degree of unspecified hand, unspecified site, subsequent encounter +C2872097|T037|AB|T23.309S|ICD10CM|Burn of third degree of unsp hand, unspecified site, sequela|Burn of third degree of unsp hand, unspecified site, sequela +C2872097|T037|PT|T23.309S|ICD10CM|Burn of third degree of unspecified hand, unspecified site, sequela|Burn of third degree of unspecified hand, unspecified site, sequela +C2872098|T037|AB|T23.31|ICD10CM|Burn of third degree of thumb (nail)|Burn of third degree of thumb (nail) +C2872098|T037|HT|T23.31|ICD10CM|Burn of third degree of thumb (nail)|Burn of third degree of thumb (nail) +C2872099|T037|AB|T23.311|ICD10CM|Burn of third degree of right thumb (nail)|Burn of third degree of right thumb (nail) +C2872099|T037|HT|T23.311|ICD10CM|Burn of third degree of right thumb (nail)|Burn of third degree of right thumb (nail) +C2872100|T037|AB|T23.311A|ICD10CM|Burn of third degree of right thumb (nail), init encntr|Burn of third degree of right thumb (nail), init encntr +C2872100|T037|PT|T23.311A|ICD10CM|Burn of third degree of right thumb (nail), initial encounter|Burn of third degree of right thumb (nail), initial encounter +C2872101|T037|AB|T23.311D|ICD10CM|Burn of third degree of right thumb (nail), subs encntr|Burn of third degree of right thumb (nail), subs encntr +C2872101|T037|PT|T23.311D|ICD10CM|Burn of third degree of right thumb (nail), subsequent encounter|Burn of third degree of right thumb (nail), subsequent encounter +C2872102|T037|PT|T23.311S|ICD10CM|Burn of third degree of right thumb (nail), sequela|Burn of third degree of right thumb (nail), sequela +C2872102|T037|AB|T23.311S|ICD10CM|Burn of third degree of right thumb (nail), sequela|Burn of third degree of right thumb (nail), sequela +C2872103|T037|AB|T23.312|ICD10CM|Burn of third degree of left thumb (nail)|Burn of third degree of left thumb (nail) +C2872103|T037|HT|T23.312|ICD10CM|Burn of third degree of left thumb (nail)|Burn of third degree of left thumb (nail) +C2872104|T037|AB|T23.312A|ICD10CM|Burn of third degree of left thumb (nail), initial encounter|Burn of third degree of left thumb (nail), initial encounter +C2872104|T037|PT|T23.312A|ICD10CM|Burn of third degree of left thumb (nail), initial encounter|Burn of third degree of left thumb (nail), initial encounter +C2872105|T037|AB|T23.312D|ICD10CM|Burn of third degree of left thumb (nail), subs encntr|Burn of third degree of left thumb (nail), subs encntr +C2872105|T037|PT|T23.312D|ICD10CM|Burn of third degree of left thumb (nail), subsequent encounter|Burn of third degree of left thumb (nail), subsequent encounter +C2872106|T037|PT|T23.312S|ICD10CM|Burn of third degree of left thumb (nail), sequela|Burn of third degree of left thumb (nail), sequela +C2872106|T037|AB|T23.312S|ICD10CM|Burn of third degree of left thumb (nail), sequela|Burn of third degree of left thumb (nail), sequela +C2872107|T037|AB|T23.319|ICD10CM|Burn of third degree of unspecified thumb (nail)|Burn of third degree of unspecified thumb (nail) +C2872107|T037|HT|T23.319|ICD10CM|Burn of third degree of unspecified thumb (nail)|Burn of third degree of unspecified thumb (nail) +C2872108|T037|AB|T23.319A|ICD10CM|Burn of third degree of unsp thumb (nail), init encntr|Burn of third degree of unsp thumb (nail), init encntr +C2872108|T037|PT|T23.319A|ICD10CM|Burn of third degree of unspecified thumb (nail), initial encounter|Burn of third degree of unspecified thumb (nail), initial encounter +C2872109|T037|AB|T23.319D|ICD10CM|Burn of third degree of unsp thumb (nail), subs encntr|Burn of third degree of unsp thumb (nail), subs encntr +C2872109|T037|PT|T23.319D|ICD10CM|Burn of third degree of unspecified thumb (nail), subsequent encounter|Burn of third degree of unspecified thumb (nail), subsequent encounter +C2872110|T037|PT|T23.319S|ICD10CM|Burn of third degree of unspecified thumb (nail), sequela|Burn of third degree of unspecified thumb (nail), sequela +C2872110|T037|AB|T23.319S|ICD10CM|Burn of third degree of unspecified thumb (nail), sequela|Burn of third degree of unspecified thumb (nail), sequela +C2872111|T037|AB|T23.32|ICD10CM|Burn of third degree of single finger (nail) except thumb|Burn of third degree of single finger (nail) except thumb +C2872111|T037|HT|T23.32|ICD10CM|Burn of third degree of single finger (nail) except thumb|Burn of third degree of single finger (nail) except thumb +C2872112|T037|AB|T23.321|ICD10CM|Burn of third degree of single r finger (nail) except thumb|Burn of third degree of single r finger (nail) except thumb +C2872112|T037|HT|T23.321|ICD10CM|Burn of third degree of single right finger (nail) except thumb|Burn of third degree of single right finger (nail) except thumb +C2872113|T037|PT|T23.321A|ICD10CM|Burn of third degree of single right finger (nail) except thumb, initial encounter|Burn of third degree of single right finger (nail) except thumb, initial encounter +C2872113|T037|AB|T23.321A|ICD10CM|Burn third degree of single r finger except thumb, init|Burn third degree of single r finger except thumb, init +C2872114|T037|PT|T23.321D|ICD10CM|Burn of third degree of single right finger (nail) except thumb, subsequent encounter|Burn of third degree of single right finger (nail) except thumb, subsequent encounter +C2872114|T037|AB|T23.321D|ICD10CM|Burn third degree of single r finger except thumb, subs|Burn third degree of single r finger except thumb, subs +C2872115|T037|PT|T23.321S|ICD10CM|Burn of third degree of single right finger (nail) except thumb, sequela|Burn of third degree of single right finger (nail) except thumb, sequela +C2872115|T037|AB|T23.321S|ICD10CM|Burn third degree of single r finger except thumb, sqla|Burn third degree of single r finger except thumb, sqla +C2872116|T037|AB|T23.322|ICD10CM|Burn of third degree of single l finger (nail) except thumb|Burn of third degree of single l finger (nail) except thumb +C2872116|T037|HT|T23.322|ICD10CM|Burn of third degree of single left finger (nail) except thumb|Burn of third degree of single left finger (nail) except thumb +C2872117|T037|PT|T23.322A|ICD10CM|Burn of third degree of single left finger (nail) except thumb, initial encounter|Burn of third degree of single left finger (nail) except thumb, initial encounter +C2872117|T037|AB|T23.322A|ICD10CM|Burn third degree of single l finger except thumb, init|Burn third degree of single l finger except thumb, init +C2872118|T037|PT|T23.322D|ICD10CM|Burn of third degree of single left finger (nail) except thumb, subsequent encounter|Burn of third degree of single left finger (nail) except thumb, subsequent encounter +C2872118|T037|AB|T23.322D|ICD10CM|Burn third degree of single l finger except thumb, subs|Burn third degree of single l finger except thumb, subs +C2872119|T037|PT|T23.322S|ICD10CM|Burn of third degree of single left finger (nail) except thumb, sequela|Burn of third degree of single left finger (nail) except thumb, sequela +C2872119|T037|AB|T23.322S|ICD10CM|Burn third degree of single l finger except thumb, sqla|Burn third degree of single l finger except thumb, sqla +C2872120|T037|HT|T23.329|ICD10CM|Burn of third degree of unspecified single finger (nail) except thumb|Burn of third degree of unspecified single finger (nail) except thumb +C2872120|T037|AB|T23.329|ICD10CM|Burn third degree of unsp single finger (nail) except thumb|Burn third degree of unsp single finger (nail) except thumb +C2872121|T037|PT|T23.329A|ICD10CM|Burn of third degree of unspecified single finger (nail) except thumb, initial encounter|Burn of third degree of unspecified single finger (nail) except thumb, initial encounter +C2872121|T037|AB|T23.329A|ICD10CM|Burn third degree of unsp single finger except thumb, init|Burn third degree of unsp single finger except thumb, init +C2872122|T037|PT|T23.329D|ICD10CM|Burn of third degree of unspecified single finger (nail) except thumb, subsequent encounter|Burn of third degree of unspecified single finger (nail) except thumb, subsequent encounter +C2872122|T037|AB|T23.329D|ICD10CM|Burn third degree of unsp single finger except thumb, subs|Burn third degree of unsp single finger except thumb, subs +C2872123|T037|PT|T23.329S|ICD10CM|Burn of third degree of unspecified single finger (nail) except thumb, sequela|Burn of third degree of unspecified single finger (nail) except thumb, sequela +C2872123|T037|AB|T23.329S|ICD10CM|Burn third degree of unsp single finger except thumb, sqla|Burn third degree of unsp single finger except thumb, sqla +C2872124|T037|AB|T23.33|ICD10CM|Burn of 3rd deg mu fingers (nail), not including thumb|Burn of 3rd deg mu fingers (nail), not including thumb +C2872124|T037|HT|T23.33|ICD10CM|Burn of third degree of multiple fingers (nail), not including thumb|Burn of third degree of multiple fingers (nail), not including thumb +C2872125|T037|AB|T23.331|ICD10CM|Burn of 3rd deg mu right fingers (nail), not including thumb|Burn of 3rd deg mu right fingers (nail), not including thumb +C2872125|T037|HT|T23.331|ICD10CM|Burn of third degree of multiple right fingers (nail), not including thumb|Burn of third degree of multiple right fingers (nail), not including thumb +C2872126|T037|AB|T23.331A|ICD10CM|Burn of 3rd deg mu right fingers (nail), not inc thumb, init|Burn of 3rd deg mu right fingers (nail), not inc thumb, init +C2872126|T037|PT|T23.331A|ICD10CM|Burn of third degree of multiple right fingers (nail), not including thumb, initial encounter|Burn of third degree of multiple right fingers (nail), not including thumb, initial encounter +C2872127|T037|AB|T23.331D|ICD10CM|Burn of 3rd deg mu right fingers (nail), not inc thumb, subs|Burn of 3rd deg mu right fingers (nail), not inc thumb, subs +C2872127|T037|PT|T23.331D|ICD10CM|Burn of third degree of multiple right fingers (nail), not including thumb, subsequent encounter|Burn of third degree of multiple right fingers (nail), not including thumb, subsequent encounter +C2872128|T037|AB|T23.331S|ICD10CM|Burn 3rd deg mu right fingers (nail), not inc thumb, sequela|Burn 3rd deg mu right fingers (nail), not inc thumb, sequela +C2872128|T037|PT|T23.331S|ICD10CM|Burn of third degree of multiple right fingers (nail), not including thumb, sequela|Burn of third degree of multiple right fingers (nail), not including thumb, sequela +C2872129|T037|AB|T23.332|ICD10CM|Burn of 3rd deg mu left fingers (nail), not including thumb|Burn of 3rd deg mu left fingers (nail), not including thumb +C2872129|T037|HT|T23.332|ICD10CM|Burn of third degree of multiple left fingers (nail), not including thumb|Burn of third degree of multiple left fingers (nail), not including thumb +C2872130|T037|AB|T23.332A|ICD10CM|Burn of 3rd deg mu left fingers (nail), not inc thumb, init|Burn of 3rd deg mu left fingers (nail), not inc thumb, init +C2872130|T037|PT|T23.332A|ICD10CM|Burn of third degree of multiple left fingers (nail), not including thumb, initial encounter|Burn of third degree of multiple left fingers (nail), not including thumb, initial encounter +C2872131|T037|AB|T23.332D|ICD10CM|Burn of 3rd deg mu left fingers (nail), not inc thumb, subs|Burn of 3rd deg mu left fingers (nail), not inc thumb, subs +C2872131|T037|PT|T23.332D|ICD10CM|Burn of third degree of multiple left fingers (nail), not including thumb, subsequent encounter|Burn of third degree of multiple left fingers (nail), not including thumb, subsequent encounter +C2872132|T037|AB|T23.332S|ICD10CM|Burn 3rd deg mu left fingers (nail), not inc thumb, sequela|Burn 3rd deg mu left fingers (nail), not inc thumb, sequela +C2872132|T037|PT|T23.332S|ICD10CM|Burn of third degree of multiple left fingers (nail), not including thumb, sequela|Burn of third degree of multiple left fingers (nail), not including thumb, sequela +C2872133|T037|HT|T23.339|ICD10CM|Burn of third degree of unspecified multiple fingers (nail), not including thumb|Burn of third degree of unspecified multiple fingers (nail), not including thumb +C2872133|T037|AB|T23.339|ICD10CM|Burn third degree of unsp mult fingers (nail), not inc thumb|Burn third degree of unsp mult fingers (nail), not inc thumb +C2872134|T037|PT|T23.339A|ICD10CM|Burn of third degree of unspecified multiple fingers (nail), not including thumb, initial encounter|Burn of third degree of unspecified multiple fingers (nail), not including thumb, initial encounter +C2872134|T037|AB|T23.339A|ICD10CM|Burn third degree of unsp mult fngr, not inc thumb, init|Burn third degree of unsp mult fngr, not inc thumb, init +C2872135|T037|AB|T23.339D|ICD10CM|Burn third degree of unsp mult fngr, not inc thumb, subs|Burn third degree of unsp mult fngr, not inc thumb, subs +C2872136|T037|PT|T23.339S|ICD10CM|Burn of third degree of unspecified multiple fingers (nail), not including thumb, sequela|Burn of third degree of unspecified multiple fingers (nail), not including thumb, sequela +C2872136|T037|AB|T23.339S|ICD10CM|Burn third degree of unsp mult fngr, not inc thumb, sqla|Burn third degree of unsp mult fngr, not inc thumb, sqla +C2872137|T037|AB|T23.34|ICD10CM|Burn of 3rd deg mu fingers (nail), including thumb|Burn of 3rd deg mu fingers (nail), including thumb +C2872137|T037|HT|T23.34|ICD10CM|Burn of third degree of multiple fingers (nail), including thumb|Burn of third degree of multiple fingers (nail), including thumb +C2872138|T037|AB|T23.341|ICD10CM|Burn of 3rd deg mu right fingers (nail), including thumb|Burn of 3rd deg mu right fingers (nail), including thumb +C2872138|T037|HT|T23.341|ICD10CM|Burn of third degree of multiple right fingers (nail), including thumb|Burn of third degree of multiple right fingers (nail), including thumb +C2872139|T037|AB|T23.341A|ICD10CM|Burn of 3rd deg mu right fingers (nail), inc thumb, init|Burn of 3rd deg mu right fingers (nail), inc thumb, init +C2872139|T037|PT|T23.341A|ICD10CM|Burn of third degree of multiple right fingers (nail), including thumb, initial encounter|Burn of third degree of multiple right fingers (nail), including thumb, initial encounter +C2872140|T037|AB|T23.341D|ICD10CM|Burn of 3rd deg mu right fingers (nail), inc thumb, subs|Burn of 3rd deg mu right fingers (nail), inc thumb, subs +C2872140|T037|PT|T23.341D|ICD10CM|Burn of third degree of multiple right fingers (nail), including thumb, subsequent encounter|Burn of third degree of multiple right fingers (nail), including thumb, subsequent encounter +C2872141|T037|AB|T23.341S|ICD10CM|Burn of 3rd deg mu right fingers (nail), inc thumb, sequela|Burn of 3rd deg mu right fingers (nail), inc thumb, sequela +C2872141|T037|PT|T23.341S|ICD10CM|Burn of third degree of multiple right fingers (nail), including thumb, sequela|Burn of third degree of multiple right fingers (nail), including thumb, sequela +C2872142|T037|AB|T23.342|ICD10CM|Burn of 3rd deg mu left fingers (nail), including thumb|Burn of 3rd deg mu left fingers (nail), including thumb +C2872142|T037|HT|T23.342|ICD10CM|Burn of third degree of multiple left fingers (nail), including thumb|Burn of third degree of multiple left fingers (nail), including thumb +C2872143|T037|AB|T23.342A|ICD10CM|Burn of 3rd deg mu left fingers (nail), inc thumb, init|Burn of 3rd deg mu left fingers (nail), inc thumb, init +C2872143|T037|PT|T23.342A|ICD10CM|Burn of third degree of multiple left fingers (nail), including thumb, initial encounter|Burn of third degree of multiple left fingers (nail), including thumb, initial encounter +C2872144|T037|AB|T23.342D|ICD10CM|Burn of 3rd deg mu left fingers (nail), inc thumb, subs|Burn of 3rd deg mu left fingers (nail), inc thumb, subs +C2872144|T037|PT|T23.342D|ICD10CM|Burn of third degree of multiple left fingers (nail), including thumb, subsequent encounter|Burn of third degree of multiple left fingers (nail), including thumb, subsequent encounter +C2872145|T037|AB|T23.342S|ICD10CM|Burn of 3rd deg mu left fingers (nail), inc thumb, sequela|Burn of 3rd deg mu left fingers (nail), inc thumb, sequela +C2872145|T037|PT|T23.342S|ICD10CM|Burn of third degree of multiple left fingers (nail), including thumb, sequela|Burn of third degree of multiple left fingers (nail), including thumb, sequela +C2872146|T037|AB|T23.349|ICD10CM|Burn of third degree of unsp mult fingers (nail), inc thumb|Burn of third degree of unsp mult fingers (nail), inc thumb +C2872146|T037|HT|T23.349|ICD10CM|Burn of third degree of unspecified multiple fingers (nail), including thumb|Burn of third degree of unspecified multiple fingers (nail), including thumb +C2872147|T037|PT|T23.349A|ICD10CM|Burn of third degree of unspecified multiple fingers (nail), including thumb, initial encounter|Burn of third degree of unspecified multiple fingers (nail), including thumb, initial encounter +C2872147|T037|AB|T23.349A|ICD10CM|Burn third degree of unsp mult fngr (nail), inc thumb, init|Burn third degree of unsp mult fngr (nail), inc thumb, init +C2872148|T037|PT|T23.349D|ICD10CM|Burn of third degree of unspecified multiple fingers (nail), including thumb, subsequent encounter|Burn of third degree of unspecified multiple fingers (nail), including thumb, subsequent encounter +C2872148|T037|AB|T23.349D|ICD10CM|Burn third degree of unsp mult fngr (nail), inc thumb, subs|Burn third degree of unsp mult fngr (nail), inc thumb, subs +C2872149|T037|PT|T23.349S|ICD10CM|Burn of third degree of unspecified multiple fingers (nail), including thumb, sequela|Burn of third degree of unspecified multiple fingers (nail), including thumb, sequela +C2872149|T037|AB|T23.349S|ICD10CM|Burn third degree of unsp mult fngr (nail), inc thumb, sqla|Burn third degree of unsp mult fngr (nail), inc thumb, sqla +C0433555|T037|AB|T23.35|ICD10CM|Burn of third degree of palm|Burn of third degree of palm +C0433555|T037|HT|T23.35|ICD10CM|Burn of third degree of palm|Burn of third degree of palm +C2872150|T037|AB|T23.351|ICD10CM|Burn of third degree of right palm|Burn of third degree of right palm +C2872150|T037|HT|T23.351|ICD10CM|Burn of third degree of right palm|Burn of third degree of right palm +C2872151|T037|PT|T23.351A|ICD10CM|Burn of third degree of right palm, initial encounter|Burn of third degree of right palm, initial encounter +C2872151|T037|AB|T23.351A|ICD10CM|Burn of third degree of right palm, initial encounter|Burn of third degree of right palm, initial encounter +C2872152|T037|PT|T23.351D|ICD10CM|Burn of third degree of right palm, subsequent encounter|Burn of third degree of right palm, subsequent encounter +C2872152|T037|AB|T23.351D|ICD10CM|Burn of third degree of right palm, subsequent encounter|Burn of third degree of right palm, subsequent encounter +C2872153|T037|PT|T23.351S|ICD10CM|Burn of third degree of right palm, sequela|Burn of third degree of right palm, sequela +C2872153|T037|AB|T23.351S|ICD10CM|Burn of third degree of right palm, sequela|Burn of third degree of right palm, sequela +C2872154|T037|AB|T23.352|ICD10CM|Burn of third degree of left palm|Burn of third degree of left palm +C2872154|T037|HT|T23.352|ICD10CM|Burn of third degree of left palm|Burn of third degree of left palm +C2872155|T037|PT|T23.352A|ICD10CM|Burn of third degree of left palm, initial encounter|Burn of third degree of left palm, initial encounter +C2872155|T037|AB|T23.352A|ICD10CM|Burn of third degree of left palm, initial encounter|Burn of third degree of left palm, initial encounter +C2872156|T037|AB|T23.352D|ICD10CM|Burn of third degree of left palm, subsequent encounter|Burn of third degree of left palm, subsequent encounter +C2872156|T037|PT|T23.352D|ICD10CM|Burn of third degree of left palm, subsequent encounter|Burn of third degree of left palm, subsequent encounter +C2872157|T037|PT|T23.352S|ICD10CM|Burn of third degree of left palm, sequela|Burn of third degree of left palm, sequela +C2872157|T037|AB|T23.352S|ICD10CM|Burn of third degree of left palm, sequela|Burn of third degree of left palm, sequela +C2872158|T037|AB|T23.359|ICD10CM|Burn of third degree of unspecified palm|Burn of third degree of unspecified palm +C2872158|T037|HT|T23.359|ICD10CM|Burn of third degree of unspecified palm|Burn of third degree of unspecified palm +C2872159|T037|PT|T23.359A|ICD10CM|Burn of third degree of unspecified palm, initial encounter|Burn of third degree of unspecified palm, initial encounter +C2872159|T037|AB|T23.359A|ICD10CM|Burn of third degree of unspecified palm, initial encounter|Burn of third degree of unspecified palm, initial encounter +C2872160|T037|AB|T23.359D|ICD10CM|Burn of third degree of unspecified palm, subs encntr|Burn of third degree of unspecified palm, subs encntr +C2872160|T037|PT|T23.359D|ICD10CM|Burn of third degree of unspecified palm, subsequent encounter|Burn of third degree of unspecified palm, subsequent encounter +C2872161|T037|PT|T23.359S|ICD10CM|Burn of third degree of unspecified palm, sequela|Burn of third degree of unspecified palm, sequela +C2872161|T037|AB|T23.359S|ICD10CM|Burn of third degree of unspecified palm, sequela|Burn of third degree of unspecified palm, sequela +C0433554|T037|AB|T23.36|ICD10CM|Burn of third degree of back of hand|Burn of third degree of back of hand +C0433554|T037|HT|T23.36|ICD10CM|Burn of third degree of back of hand|Burn of third degree of back of hand +C2083565|T037|AB|T23.361|ICD10CM|Burn of third degree of back of right hand|Burn of third degree of back of right hand +C2083565|T037|HT|T23.361|ICD10CM|Burn of third degree of back of right hand|Burn of third degree of back of right hand +C2872162|T037|AB|T23.361A|ICD10CM|Burn of third degree of back of right hand, init encntr|Burn of third degree of back of right hand, init encntr +C2872162|T037|PT|T23.361A|ICD10CM|Burn of third degree of back of right hand, initial encounter|Burn of third degree of back of right hand, initial encounter +C2872163|T037|AB|T23.361D|ICD10CM|Burn of third degree of back of right hand, subs encntr|Burn of third degree of back of right hand, subs encntr +C2872163|T037|PT|T23.361D|ICD10CM|Burn of third degree of back of right hand, subsequent encounter|Burn of third degree of back of right hand, subsequent encounter +C2872164|T037|PT|T23.361S|ICD10CM|Burn of third degree of back of right hand, sequela|Burn of third degree of back of right hand, sequela +C2872164|T037|AB|T23.361S|ICD10CM|Burn of third degree of back of right hand, sequela|Burn of third degree of back of right hand, sequela +C2083564|T037|AB|T23.362|ICD10CM|Burn of third degree of back of left hand|Burn of third degree of back of left hand +C2083564|T037|HT|T23.362|ICD10CM|Burn of third degree of back of left hand|Burn of third degree of back of left hand +C2872165|T037|AB|T23.362A|ICD10CM|Burn of third degree of back of left hand, initial encounter|Burn of third degree of back of left hand, initial encounter +C2872165|T037|PT|T23.362A|ICD10CM|Burn of third degree of back of left hand, initial encounter|Burn of third degree of back of left hand, initial encounter +C2872166|T037|AB|T23.362D|ICD10CM|Burn of third degree of back of left hand, subs encntr|Burn of third degree of back of left hand, subs encntr +C2872166|T037|PT|T23.362D|ICD10CM|Burn of third degree of back of left hand, subsequent encounter|Burn of third degree of back of left hand, subsequent encounter +C2872167|T037|PT|T23.362S|ICD10CM|Burn of third degree of back of left hand, sequela|Burn of third degree of back of left hand, sequela +C2872167|T037|AB|T23.362S|ICD10CM|Burn of third degree of back of left hand, sequela|Burn of third degree of back of left hand, sequela +C2872168|T037|AB|T23.369|ICD10CM|Burn of third degree of back of unspecified hand|Burn of third degree of back of unspecified hand +C2872168|T037|HT|T23.369|ICD10CM|Burn of third degree of back of unspecified hand|Burn of third degree of back of unspecified hand +C2872169|T037|AB|T23.369A|ICD10CM|Burn of third degree of back of unsp hand, init encntr|Burn of third degree of back of unsp hand, init encntr +C2872169|T037|PT|T23.369A|ICD10CM|Burn of third degree of back of unspecified hand, initial encounter|Burn of third degree of back of unspecified hand, initial encounter +C2872170|T037|AB|T23.369D|ICD10CM|Burn of third degree of back of unsp hand, subs encntr|Burn of third degree of back of unsp hand, subs encntr +C2872170|T037|PT|T23.369D|ICD10CM|Burn of third degree of back of unspecified hand, subsequent encounter|Burn of third degree of back of unspecified hand, subsequent encounter +C2872171|T037|AB|T23.369S|ICD10CM|Burn of third degree of back of unspecified hand, sequela|Burn of third degree of back of unspecified hand, sequela +C2872171|T037|PT|T23.369S|ICD10CM|Burn of third degree of back of unspecified hand, sequela|Burn of third degree of back of unspecified hand, sequela +C0274086|T037|AB|T23.37|ICD10CM|Burn of third degree of wrist|Burn of third degree of wrist +C0274086|T037|HT|T23.37|ICD10CM|Burn of third degree of wrist|Burn of third degree of wrist +C2083648|T037|AB|T23.371|ICD10CM|Burn of third degree of right wrist|Burn of third degree of right wrist +C2083648|T037|HT|T23.371|ICD10CM|Burn of third degree of right wrist|Burn of third degree of right wrist +C2872172|T037|PT|T23.371A|ICD10CM|Burn of third degree of right wrist, initial encounter|Burn of third degree of right wrist, initial encounter +C2872172|T037|AB|T23.371A|ICD10CM|Burn of third degree of right wrist, initial encounter|Burn of third degree of right wrist, initial encounter +C2872173|T037|PT|T23.371D|ICD10CM|Burn of third degree of right wrist, subsequent encounter|Burn of third degree of right wrist, subsequent encounter +C2872173|T037|AB|T23.371D|ICD10CM|Burn of third degree of right wrist, subsequent encounter|Burn of third degree of right wrist, subsequent encounter +C2872174|T037|PT|T23.371S|ICD10CM|Burn of third degree of right wrist, sequela|Burn of third degree of right wrist, sequela +C2872174|T037|AB|T23.371S|ICD10CM|Burn of third degree of right wrist, sequela|Burn of third degree of right wrist, sequela +C2083607|T037|AB|T23.372|ICD10CM|Burn of third degree of left wrist|Burn of third degree of left wrist +C2083607|T037|HT|T23.372|ICD10CM|Burn of third degree of left wrist|Burn of third degree of left wrist +C2872175|T037|PT|T23.372A|ICD10CM|Burn of third degree of left wrist, initial encounter|Burn of third degree of left wrist, initial encounter +C2872175|T037|AB|T23.372A|ICD10CM|Burn of third degree of left wrist, initial encounter|Burn of third degree of left wrist, initial encounter +C2872176|T037|PT|T23.372D|ICD10CM|Burn of third degree of left wrist, subsequent encounter|Burn of third degree of left wrist, subsequent encounter +C2872176|T037|AB|T23.372D|ICD10CM|Burn of third degree of left wrist, subsequent encounter|Burn of third degree of left wrist, subsequent encounter +C2872177|T037|PT|T23.372S|ICD10CM|Burn of third degree of left wrist, sequela|Burn of third degree of left wrist, sequela +C2872177|T037|AB|T23.372S|ICD10CM|Burn of third degree of left wrist, sequela|Burn of third degree of left wrist, sequela +C2872178|T037|AB|T23.379|ICD10CM|Burn of third degree of unspecified wrist|Burn of third degree of unspecified wrist +C2872178|T037|HT|T23.379|ICD10CM|Burn of third degree of unspecified wrist|Burn of third degree of unspecified wrist +C2872179|T037|AB|T23.379A|ICD10CM|Burn of third degree of unspecified wrist, initial encounter|Burn of third degree of unspecified wrist, initial encounter +C2872179|T037|PT|T23.379A|ICD10CM|Burn of third degree of unspecified wrist, initial encounter|Burn of third degree of unspecified wrist, initial encounter +C2872180|T037|AB|T23.379D|ICD10CM|Burn of third degree of unspecified wrist, subs encntr|Burn of third degree of unspecified wrist, subs encntr +C2872180|T037|PT|T23.379D|ICD10CM|Burn of third degree of unspecified wrist, subsequent encounter|Burn of third degree of unspecified wrist, subsequent encounter +C2872181|T037|PT|T23.379S|ICD10CM|Burn of third degree of unspecified wrist, sequela|Burn of third degree of unspecified wrist, sequela +C2872181|T037|AB|T23.379S|ICD10CM|Burn of third degree of unspecified wrist, sequela|Burn of third degree of unspecified wrist, sequela +C2872182|T037|AB|T23.39|ICD10CM|Burn of third degree of multiple sites of wrist and hand|Burn of third degree of multiple sites of wrist and hand +C2872182|T037|HT|T23.39|ICD10CM|Burn of third degree of multiple sites of wrist and hand|Burn of third degree of multiple sites of wrist and hand +C2872183|T037|AB|T23.391|ICD10CM|Burn of 3rd deg mu sites of right wrist and hand|Burn of 3rd deg mu sites of right wrist and hand +C2872183|T037|HT|T23.391|ICD10CM|Burn of third degree of multiple sites of right wrist and hand|Burn of third degree of multiple sites of right wrist and hand +C2872184|T037|AB|T23.391A|ICD10CM|Burn of 3rd deg mu sites of right wrist and hand, init|Burn of 3rd deg mu sites of right wrist and hand, init +C2872184|T037|PT|T23.391A|ICD10CM|Burn of third degree of multiple sites of right wrist and hand, initial encounter|Burn of third degree of multiple sites of right wrist and hand, initial encounter +C2872185|T037|AB|T23.391D|ICD10CM|Burn of 3rd deg mu sites of right wrist and hand, subs|Burn of 3rd deg mu sites of right wrist and hand, subs +C2872185|T037|PT|T23.391D|ICD10CM|Burn of third degree of multiple sites of right wrist and hand, subsequent encounter|Burn of third degree of multiple sites of right wrist and hand, subsequent encounter +C2872186|T037|AB|T23.391S|ICD10CM|Burn of 3rd deg mu sites of right wrist and hand, sequela|Burn of 3rd deg mu sites of right wrist and hand, sequela +C2872186|T037|PT|T23.391S|ICD10CM|Burn of third degree of multiple sites of right wrist and hand, sequela|Burn of third degree of multiple sites of right wrist and hand, sequela +C2872187|T037|AB|T23.392|ICD10CM|Burn of 3rd deg mu sites of left wrist and hand|Burn of 3rd deg mu sites of left wrist and hand +C2872187|T037|HT|T23.392|ICD10CM|Burn of third degree of multiple sites of left wrist and hand|Burn of third degree of multiple sites of left wrist and hand +C2872188|T037|AB|T23.392A|ICD10CM|Burn of 3rd deg mu sites of left wrist and hand, init|Burn of 3rd deg mu sites of left wrist and hand, init +C2872188|T037|PT|T23.392A|ICD10CM|Burn of third degree of multiple sites of left wrist and hand, initial encounter|Burn of third degree of multiple sites of left wrist and hand, initial encounter +C2872189|T037|AB|T23.392D|ICD10CM|Burn of 3rd deg mu sites of left wrist and hand, subs|Burn of 3rd deg mu sites of left wrist and hand, subs +C2872189|T037|PT|T23.392D|ICD10CM|Burn of third degree of multiple sites of left wrist and hand, subsequent encounter|Burn of third degree of multiple sites of left wrist and hand, subsequent encounter +C2872190|T037|AB|T23.392S|ICD10CM|Burn of 3rd deg mu sites of left wrist and hand, sequela|Burn of 3rd deg mu sites of left wrist and hand, sequela +C2872190|T037|PT|T23.392S|ICD10CM|Burn of third degree of multiple sites of left wrist and hand, sequela|Burn of third degree of multiple sites of left wrist and hand, sequela +C2872191|T037|AB|T23.399|ICD10CM|Burn of 3rd deg mu sites of unsp wrist and hand|Burn of 3rd deg mu sites of unsp wrist and hand +C2872191|T037|HT|T23.399|ICD10CM|Burn of third degree of multiple sites of unspecified wrist and hand|Burn of third degree of multiple sites of unspecified wrist and hand +C2872192|T037|AB|T23.399A|ICD10CM|Burn of 3rd deg mu sites of unsp wrist and hand, init|Burn of 3rd deg mu sites of unsp wrist and hand, init +C2872192|T037|PT|T23.399A|ICD10CM|Burn of third degree of multiple sites of unspecified wrist and hand, initial encounter|Burn of third degree of multiple sites of unspecified wrist and hand, initial encounter +C2872193|T037|AB|T23.399D|ICD10CM|Burn of 3rd deg mu sites of unsp wrist and hand, subs|Burn of 3rd deg mu sites of unsp wrist and hand, subs +C2872193|T037|PT|T23.399D|ICD10CM|Burn of third degree of multiple sites of unspecified wrist and hand, subsequent encounter|Burn of third degree of multiple sites of unspecified wrist and hand, subsequent encounter +C2872194|T037|AB|T23.399S|ICD10CM|Burn of 3rd deg mu sites of unsp wrist and hand, sequela|Burn of 3rd deg mu sites of unsp wrist and hand, sequela +C2872194|T037|PT|T23.399S|ICD10CM|Burn of third degree of multiple sites of unspecified wrist and hand, sequela|Burn of third degree of multiple sites of unspecified wrist and hand, sequela +C0496042|T037|HT|T23.4|ICD10CM|Corrosion of unspecified degree of wrist and hand|Corrosion of unspecified degree of wrist and hand +C0496042|T037|AB|T23.4|ICD10CM|Corrosion of unspecified degree of wrist and hand|Corrosion of unspecified degree of wrist and hand +C0496042|T037|PT|T23.4|ICD10|Corrosion of unspecified degree of wrist and hand|Corrosion of unspecified degree of wrist and hand +C2872195|T037|AB|T23.40|ICD10CM|Corrosion of unspecified degree of hand, unspecified site|Corrosion of unspecified degree of hand, unspecified site +C2872195|T037|HT|T23.40|ICD10CM|Corrosion of unspecified degree of hand, unspecified site|Corrosion of unspecified degree of hand, unspecified site +C2872196|T037|AB|T23.401|ICD10CM|Corrosion of unsp degree of right hand, unspecified site|Corrosion of unsp degree of right hand, unspecified site +C2872196|T037|HT|T23.401|ICD10CM|Corrosion of unspecified degree of right hand, unspecified site|Corrosion of unspecified degree of right hand, unspecified site +C2872197|T037|AB|T23.401A|ICD10CM|Corrosion of unsp degree of right hand, unsp site, init|Corrosion of unsp degree of right hand, unsp site, init +C2872197|T037|PT|T23.401A|ICD10CM|Corrosion of unspecified degree of right hand, unspecified site, initial encounter|Corrosion of unspecified degree of right hand, unspecified site, initial encounter +C2872198|T037|AB|T23.401D|ICD10CM|Corrosion of unsp degree of right hand, unsp site, subs|Corrosion of unsp degree of right hand, unsp site, subs +C2872198|T037|PT|T23.401D|ICD10CM|Corrosion of unspecified degree of right hand, unspecified site, subsequent encounter|Corrosion of unspecified degree of right hand, unspecified site, subsequent encounter +C2872199|T037|AB|T23.401S|ICD10CM|Corrosion of unsp degree of right hand, unsp site, sequela|Corrosion of unsp degree of right hand, unsp site, sequela +C2872199|T037|PT|T23.401S|ICD10CM|Corrosion of unspecified degree of right hand, unspecified site, sequela|Corrosion of unspecified degree of right hand, unspecified site, sequela +C2872200|T037|AB|T23.402|ICD10CM|Corrosion of unsp degree of left hand, unspecified site|Corrosion of unsp degree of left hand, unspecified site +C2872200|T037|HT|T23.402|ICD10CM|Corrosion of unspecified degree of left hand, unspecified site|Corrosion of unspecified degree of left hand, unspecified site +C2872201|T037|AB|T23.402A|ICD10CM|Corrosion of unsp degree of left hand, unsp site, init|Corrosion of unsp degree of left hand, unsp site, init +C2872201|T037|PT|T23.402A|ICD10CM|Corrosion of unspecified degree of left hand, unspecified site, initial encounter|Corrosion of unspecified degree of left hand, unspecified site, initial encounter +C2872202|T037|AB|T23.402D|ICD10CM|Corrosion of unsp degree of left hand, unsp site, subs|Corrosion of unsp degree of left hand, unsp site, subs +C2872202|T037|PT|T23.402D|ICD10CM|Corrosion of unspecified degree of left hand, unspecified site, subsequent encounter|Corrosion of unspecified degree of left hand, unspecified site, subsequent encounter +C2872203|T037|AB|T23.402S|ICD10CM|Corrosion of unsp degree of left hand, unsp site, sequela|Corrosion of unsp degree of left hand, unsp site, sequela +C2872203|T037|PT|T23.402S|ICD10CM|Corrosion of unspecified degree of left hand, unspecified site, sequela|Corrosion of unspecified degree of left hand, unspecified site, sequela +C2872204|T037|AB|T23.409|ICD10CM|Corrosion of unsp degree of unsp hand, unspecified site|Corrosion of unsp degree of unsp hand, unspecified site +C2872204|T037|HT|T23.409|ICD10CM|Corrosion of unspecified degree of unspecified hand, unspecified site|Corrosion of unspecified degree of unspecified hand, unspecified site +C2872205|T037|AB|T23.409A|ICD10CM|Corrosion of unsp degree of unsp hand, unsp site, init|Corrosion of unsp degree of unsp hand, unsp site, init +C2872205|T037|PT|T23.409A|ICD10CM|Corrosion of unspecified degree of unspecified hand, unspecified site, initial encounter|Corrosion of unspecified degree of unspecified hand, unspecified site, initial encounter +C2872206|T037|AB|T23.409D|ICD10CM|Corrosion of unsp degree of unsp hand, unsp site, subs|Corrosion of unsp degree of unsp hand, unsp site, subs +C2872206|T037|PT|T23.409D|ICD10CM|Corrosion of unspecified degree of unspecified hand, unspecified site, subsequent encounter|Corrosion of unspecified degree of unspecified hand, unspecified site, subsequent encounter +C2872207|T037|AB|T23.409S|ICD10CM|Corrosion of unsp degree of unsp hand, unsp site, sequela|Corrosion of unsp degree of unsp hand, unsp site, sequela +C2872207|T037|PT|T23.409S|ICD10CM|Corrosion of unspecified degree of unspecified hand, unspecified site, sequela|Corrosion of unspecified degree of unspecified hand, unspecified site, sequela +C2872208|T037|AB|T23.41|ICD10CM|Corrosion of unspecified degree of thumb (nail)|Corrosion of unspecified degree of thumb (nail) +C2872208|T037|HT|T23.41|ICD10CM|Corrosion of unspecified degree of thumb (nail)|Corrosion of unspecified degree of thumb (nail) +C2872209|T037|AB|T23.411|ICD10CM|Corrosion of unspecified degree of right thumb (nail)|Corrosion of unspecified degree of right thumb (nail) +C2872209|T037|HT|T23.411|ICD10CM|Corrosion of unspecified degree of right thumb (nail)|Corrosion of unspecified degree of right thumb (nail) +C2872210|T037|AB|T23.411A|ICD10CM|Corrosion of unsp degree of right thumb (nail), init encntr|Corrosion of unsp degree of right thumb (nail), init encntr +C2872210|T037|PT|T23.411A|ICD10CM|Corrosion of unspecified degree of right thumb (nail), initial encounter|Corrosion of unspecified degree of right thumb (nail), initial encounter +C2872211|T037|AB|T23.411D|ICD10CM|Corrosion of unsp degree of right thumb (nail), subs encntr|Corrosion of unsp degree of right thumb (nail), subs encntr +C2872211|T037|PT|T23.411D|ICD10CM|Corrosion of unspecified degree of right thumb (nail), subsequent encounter|Corrosion of unspecified degree of right thumb (nail), subsequent encounter +C2872212|T037|AB|T23.411S|ICD10CM|Corrosion of unsp degree of right thumb (nail), sequela|Corrosion of unsp degree of right thumb (nail), sequela +C2872212|T037|PT|T23.411S|ICD10CM|Corrosion of unspecified degree of right thumb (nail), sequela|Corrosion of unspecified degree of right thumb (nail), sequela +C2872213|T037|AB|T23.412|ICD10CM|Corrosion of unspecified degree of left thumb (nail)|Corrosion of unspecified degree of left thumb (nail) +C2872213|T037|HT|T23.412|ICD10CM|Corrosion of unspecified degree of left thumb (nail)|Corrosion of unspecified degree of left thumb (nail) +C2872214|T037|AB|T23.412A|ICD10CM|Corrosion of unsp degree of left thumb (nail), init encntr|Corrosion of unsp degree of left thumb (nail), init encntr +C2872214|T037|PT|T23.412A|ICD10CM|Corrosion of unspecified degree of left thumb (nail), initial encounter|Corrosion of unspecified degree of left thumb (nail), initial encounter +C2872215|T037|AB|T23.412D|ICD10CM|Corrosion of unsp degree of left thumb (nail), subs encntr|Corrosion of unsp degree of left thumb (nail), subs encntr +C2872215|T037|PT|T23.412D|ICD10CM|Corrosion of unspecified degree of left thumb (nail), subsequent encounter|Corrosion of unspecified degree of left thumb (nail), subsequent encounter +C2872216|T037|AB|T23.412S|ICD10CM|Corrosion of unsp degree of left thumb (nail), sequela|Corrosion of unsp degree of left thumb (nail), sequela +C2872216|T037|PT|T23.412S|ICD10CM|Corrosion of unspecified degree of left thumb (nail), sequela|Corrosion of unspecified degree of left thumb (nail), sequela +C2872217|T037|AB|T23.419|ICD10CM|Corrosion of unspecified degree of unspecified thumb (nail)|Corrosion of unspecified degree of unspecified thumb (nail) +C2872217|T037|HT|T23.419|ICD10CM|Corrosion of unspecified degree of unspecified thumb (nail)|Corrosion of unspecified degree of unspecified thumb (nail) +C2872218|T037|AB|T23.419A|ICD10CM|Corrosion of unsp degree of unsp thumb (nail), init encntr|Corrosion of unsp degree of unsp thumb (nail), init encntr +C2872218|T037|PT|T23.419A|ICD10CM|Corrosion of unspecified degree of unspecified thumb (nail), initial encounter|Corrosion of unspecified degree of unspecified thumb (nail), initial encounter +C2872219|T037|AB|T23.419D|ICD10CM|Corrosion of unsp degree of unsp thumb (nail), subs encntr|Corrosion of unsp degree of unsp thumb (nail), subs encntr +C2872219|T037|PT|T23.419D|ICD10CM|Corrosion of unspecified degree of unspecified thumb (nail), subsequent encounter|Corrosion of unspecified degree of unspecified thumb (nail), subsequent encounter +C2872220|T037|AB|T23.419S|ICD10CM|Corrosion of unsp degree of unsp thumb (nail), sequela|Corrosion of unsp degree of unsp thumb (nail), sequela +C2872220|T037|PT|T23.419S|ICD10CM|Corrosion of unspecified degree of unspecified thumb (nail), sequela|Corrosion of unspecified degree of unspecified thumb (nail), sequela +C2872221|T037|AB|T23.42|ICD10CM|Corros unsp degree of single finger (nail) except thumb|Corros unsp degree of single finger (nail) except thumb +C2872221|T037|HT|T23.42|ICD10CM|Corrosion of unspecified degree of single finger (nail) except thumb|Corrosion of unspecified degree of single finger (nail) except thumb +C2872222|T037|AB|T23.421|ICD10CM|Corros unsp degree of single r finger (nail) except thumb|Corros unsp degree of single r finger (nail) except thumb +C2872222|T037|HT|T23.421|ICD10CM|Corrosion of unspecified degree of single right finger (nail) except thumb|Corrosion of unspecified degree of single right finger (nail) except thumb +C2872223|T037|AB|T23.421A|ICD10CM|Corros unsp degree of single r finger except thumb, init|Corros unsp degree of single r finger except thumb, init +C2872223|T037|PT|T23.421A|ICD10CM|Corrosion of unspecified degree of single right finger (nail) except thumb, initial encounter|Corrosion of unspecified degree of single right finger (nail) except thumb, initial encounter +C2872224|T037|AB|T23.421D|ICD10CM|Corros unsp degree of single r finger except thumb, subs|Corros unsp degree of single r finger except thumb, subs +C2872224|T037|PT|T23.421D|ICD10CM|Corrosion of unspecified degree of single right finger (nail) except thumb, subsequent encounter|Corrosion of unspecified degree of single right finger (nail) except thumb, subsequent encounter +C2872225|T037|AB|T23.421S|ICD10CM|Corros unsp degree of single r finger except thumb, sqla|Corros unsp degree of single r finger except thumb, sqla +C2872225|T037|PT|T23.421S|ICD10CM|Corrosion of unspecified degree of single right finger (nail) except thumb, sequela|Corrosion of unspecified degree of single right finger (nail) except thumb, sequela +C2872226|T037|AB|T23.422|ICD10CM|Corros unsp degree of single left finger (nail) except thumb|Corros unsp degree of single left finger (nail) except thumb +C2872226|T037|HT|T23.422|ICD10CM|Corrosion of unspecified degree of single left finger (nail) except thumb|Corrosion of unspecified degree of single left finger (nail) except thumb +C2872227|T037|AB|T23.422A|ICD10CM|Corros unsp degree of single l finger except thumb, init|Corros unsp degree of single l finger except thumb, init +C2872227|T037|PT|T23.422A|ICD10CM|Corrosion of unspecified degree of single left finger (nail) except thumb, initial encounter|Corrosion of unspecified degree of single left finger (nail) except thumb, initial encounter +C2872228|T037|AB|T23.422D|ICD10CM|Corros unsp degree of single l finger except thumb, subs|Corros unsp degree of single l finger except thumb, subs +C2872228|T037|PT|T23.422D|ICD10CM|Corrosion of unspecified degree of single left finger (nail) except thumb, subsequent encounter|Corrosion of unspecified degree of single left finger (nail) except thumb, subsequent encounter +C2872229|T037|AB|T23.422S|ICD10CM|Corros unsp degree of single l finger except thumb, sqla|Corros unsp degree of single l finger except thumb, sqla +C2872229|T037|PT|T23.422S|ICD10CM|Corrosion of unspecified degree of single left finger (nail) except thumb, sequela|Corrosion of unspecified degree of single left finger (nail) except thumb, sequela +C2872230|T037|AB|T23.429|ICD10CM|Corros unsp degree of unsp single finger (nail) except thumb|Corros unsp degree of unsp single finger (nail) except thumb +C2872230|T037|HT|T23.429|ICD10CM|Corrosion of unspecified degree of unspecified single finger (nail) except thumb|Corrosion of unspecified degree of unspecified single finger (nail) except thumb +C2872231|T037|AB|T23.429A|ICD10CM|Corros unsp degree of unsp single finger except thumb, init|Corros unsp degree of unsp single finger except thumb, init +C2872231|T037|PT|T23.429A|ICD10CM|Corrosion of unspecified degree of unspecified single finger (nail) except thumb, initial encounter|Corrosion of unspecified degree of unspecified single finger (nail) except thumb, initial encounter +C2872232|T037|AB|T23.429D|ICD10CM|Corros unsp degree of unsp single finger except thumb, subs|Corros unsp degree of unsp single finger except thumb, subs +C2872233|T037|AB|T23.429S|ICD10CM|Corros unsp degree of unsp single finger except thumb, sqla|Corros unsp degree of unsp single finger except thumb, sqla +C2872233|T037|PT|T23.429S|ICD10CM|Corrosion of unspecified degree of unspecified single finger (nail) except thumb, sequela|Corrosion of unspecified degree of unspecified single finger (nail) except thumb, sequela +C2872234|T037|AB|T23.43|ICD10CM|Corros unsp deg mult fingers (nail), not including thumb|Corros unsp deg mult fingers (nail), not including thumb +C2872234|T037|HT|T23.43|ICD10CM|Corrosion of unspecified degree of multiple fingers (nail), not including thumb|Corrosion of unspecified degree of multiple fingers (nail), not including thumb +C2872235|T037|AB|T23.431|ICD10CM|Corros unsp deg mult right fingers (nail), not inc thumb|Corros unsp deg mult right fingers (nail), not inc thumb +C2872235|T037|HT|T23.431|ICD10CM|Corrosion of unspecified degree of multiple right fingers (nail), not including thumb|Corrosion of unspecified degree of multiple right fingers (nail), not including thumb +C2872236|T037|AB|T23.431A|ICD10CM|Corros unsp deg mult right fngr (nail), not inc thumb, init|Corros unsp deg mult right fngr (nail), not inc thumb, init +C2872237|T037|AB|T23.431D|ICD10CM|Corros unsp deg mult right fngr (nail), not inc thumb, subs|Corros unsp deg mult right fngr (nail), not inc thumb, subs +C2872238|T037|AB|T23.431S|ICD10CM|Corros unsp deg mult right fngr (nail), not inc thumb, sqla|Corros unsp deg mult right fngr (nail), not inc thumb, sqla +C2872238|T037|PT|T23.431S|ICD10CM|Corrosion of unspecified degree of multiple right fingers (nail), not including thumb, sequela|Corrosion of unspecified degree of multiple right fingers (nail), not including thumb, sequela +C2872239|T037|AB|T23.432|ICD10CM|Corros unsp deg mult left fingers (nail), not inc thumb|Corros unsp deg mult left fingers (nail), not inc thumb +C2872239|T037|HT|T23.432|ICD10CM|Corrosion of unspecified degree of multiple left fingers (nail), not including thumb|Corrosion of unspecified degree of multiple left fingers (nail), not including thumb +C2872240|T037|AB|T23.432A|ICD10CM|Corros unsp deg mult left fngr (nail), not inc thumb, init|Corros unsp deg mult left fngr (nail), not inc thumb, init +C2872241|T037|AB|T23.432D|ICD10CM|Corros unsp deg mult left fngr (nail), not inc thumb, subs|Corros unsp deg mult left fngr (nail), not inc thumb, subs +C2872242|T037|AB|T23.432S|ICD10CM|Corros unsp deg mult left fngr (nail), not inc thumb, sqla|Corros unsp deg mult left fngr (nail), not inc thumb, sqla +C2872242|T037|PT|T23.432S|ICD10CM|Corrosion of unspecified degree of multiple left fingers (nail), not including thumb, sequela|Corrosion of unspecified degree of multiple left fingers (nail), not including thumb, sequela +C2872243|T037|AB|T23.439|ICD10CM|Corros unsp degree of unsp mult fngr (nail), not inc thumb|Corros unsp degree of unsp mult fngr (nail), not inc thumb +C2872243|T037|HT|T23.439|ICD10CM|Corrosion of unspecified degree of unspecified multiple fingers (nail), not including thumb|Corrosion of unspecified degree of unspecified multiple fingers (nail), not including thumb +C2872244|T037|AB|T23.439A|ICD10CM|Corros unsp degree of unsp mult fngr, not inc thumb, init|Corros unsp degree of unsp mult fngr, not inc thumb, init +C2872245|T037|AB|T23.439D|ICD10CM|Corros unsp degree of unsp mult fngr, not inc thumb, subs|Corros unsp degree of unsp mult fngr, not inc thumb, subs +C2872246|T037|AB|T23.439S|ICD10CM|Corros unsp degree of unsp mult fngr, not inc thumb, sqla|Corros unsp degree of unsp mult fngr, not inc thumb, sqla +C2872246|T037|PT|T23.439S|ICD10CM|Corrosion of unspecified degree of unspecified multiple fingers (nail), not including thumb, sequela|Corrosion of unspecified degree of unspecified multiple fingers (nail), not including thumb, sequela +C2872247|T037|AB|T23.44|ICD10CM|Corrosion of unsp deg mult fingers (nail), including thumb|Corrosion of unsp deg mult fingers (nail), including thumb +C2872247|T037|HT|T23.44|ICD10CM|Corrosion of unspecified degree of multiple fingers (nail), including thumb|Corrosion of unspecified degree of multiple fingers (nail), including thumb +C2872248|T037|AB|T23.441|ICD10CM|Corros unsp deg mult right fingers (nail), including thumb|Corros unsp deg mult right fingers (nail), including thumb +C2872248|T037|HT|T23.441|ICD10CM|Corrosion of unspecified degree of multiple right fingers (nail), including thumb|Corrosion of unspecified degree of multiple right fingers (nail), including thumb +C2872249|T037|AB|T23.441A|ICD10CM|Corros unsp deg mult right fingers (nail), inc thumb, init|Corros unsp deg mult right fingers (nail), inc thumb, init +C2872249|T037|PT|T23.441A|ICD10CM|Corrosion of unspecified degree of multiple right fingers (nail), including thumb, initial encounter|Corrosion of unspecified degree of multiple right fingers (nail), including thumb, initial encounter +C2872250|T037|AB|T23.441D|ICD10CM|Corros unsp deg mult right fingers (nail), inc thumb, subs|Corros unsp deg mult right fingers (nail), inc thumb, subs +C2872251|T037|AB|T23.441S|ICD10CM|Corros unsp deg mult right fngr (nail), inc thumb, sequela|Corros unsp deg mult right fngr (nail), inc thumb, sequela +C2872251|T037|PT|T23.441S|ICD10CM|Corrosion of unspecified degree of multiple right fingers (nail), including thumb, sequela|Corrosion of unspecified degree of multiple right fingers (nail), including thumb, sequela +C2872252|T037|AB|T23.442|ICD10CM|Corros unsp deg mult left fingers (nail), including thumb|Corros unsp deg mult left fingers (nail), including thumb +C2872252|T037|HT|T23.442|ICD10CM|Corrosion of unspecified degree of multiple left fingers (nail), including thumb|Corrosion of unspecified degree of multiple left fingers (nail), including thumb +C2872253|T037|AB|T23.442A|ICD10CM|Corros unsp deg mult left fingers (nail), inc thumb, init|Corros unsp deg mult left fingers (nail), inc thumb, init +C2872253|T037|PT|T23.442A|ICD10CM|Corrosion of unspecified degree of multiple left fingers (nail), including thumb, initial encounter|Corrosion of unspecified degree of multiple left fingers (nail), including thumb, initial encounter +C2872254|T037|AB|T23.442D|ICD10CM|Corros unsp deg mult left fingers (nail), inc thumb, subs|Corros unsp deg mult left fingers (nail), inc thumb, subs +C2872255|T037|AB|T23.442S|ICD10CM|Corros unsp deg mult left fingers (nail), inc thumb, sequela|Corros unsp deg mult left fingers (nail), inc thumb, sequela +C2872255|T037|PT|T23.442S|ICD10CM|Corrosion of unspecified degree of multiple left fingers (nail), including thumb, sequela|Corrosion of unspecified degree of multiple left fingers (nail), including thumb, sequela +C2872256|T037|AB|T23.449|ICD10CM|Corros unsp degree of unsp mult fingers (nail), inc thumb|Corros unsp degree of unsp mult fingers (nail), inc thumb +C2872256|T037|HT|T23.449|ICD10CM|Corrosion of unspecified degree of unspecified multiple fingers (nail), including thumb|Corrosion of unspecified degree of unspecified multiple fingers (nail), including thumb +C2872257|T037|AB|T23.449A|ICD10CM|Corros unsp degree of unsp mult fngr (nail), inc thumb, init|Corros unsp degree of unsp mult fngr (nail), inc thumb, init +C2872258|T037|AB|T23.449D|ICD10CM|Corros unsp degree of unsp mult fngr (nail), inc thumb, subs|Corros unsp degree of unsp mult fngr (nail), inc thumb, subs +C2872259|T037|AB|T23.449S|ICD10CM|Corros unsp degree of unsp mult fngr (nail), inc thumb, sqla|Corros unsp degree of unsp mult fngr (nail), inc thumb, sqla +C2872259|T037|PT|T23.449S|ICD10CM|Corrosion of unspecified degree of unspecified multiple fingers (nail), including thumb, sequela|Corrosion of unspecified degree of unspecified multiple fingers (nail), including thumb, sequela +C2872260|T037|AB|T23.45|ICD10CM|Corrosion of unspecified degree of palm|Corrosion of unspecified degree of palm +C2872260|T037|HT|T23.45|ICD10CM|Corrosion of unspecified degree of palm|Corrosion of unspecified degree of palm +C2872261|T037|AB|T23.451|ICD10CM|Corrosion of unspecified degree of right palm|Corrosion of unspecified degree of right palm +C2872261|T037|HT|T23.451|ICD10CM|Corrosion of unspecified degree of right palm|Corrosion of unspecified degree of right palm +C2872262|T037|AB|T23.451A|ICD10CM|Corrosion of unspecified degree of right palm, init encntr|Corrosion of unspecified degree of right palm, init encntr +C2872262|T037|PT|T23.451A|ICD10CM|Corrosion of unspecified degree of right palm, initial encounter|Corrosion of unspecified degree of right palm, initial encounter +C2872263|T037|AB|T23.451D|ICD10CM|Corrosion of unspecified degree of right palm, subs encntr|Corrosion of unspecified degree of right palm, subs encntr +C2872263|T037|PT|T23.451D|ICD10CM|Corrosion of unspecified degree of right palm, subsequent encounter|Corrosion of unspecified degree of right palm, subsequent encounter +C2872264|T037|PT|T23.451S|ICD10CM|Corrosion of unspecified degree of right palm, sequela|Corrosion of unspecified degree of right palm, sequela +C2872264|T037|AB|T23.451S|ICD10CM|Corrosion of unspecified degree of right palm, sequela|Corrosion of unspecified degree of right palm, sequela +C2872265|T037|AB|T23.452|ICD10CM|Corrosion of unspecified degree of left palm|Corrosion of unspecified degree of left palm +C2872265|T037|HT|T23.452|ICD10CM|Corrosion of unspecified degree of left palm|Corrosion of unspecified degree of left palm +C2872266|T037|AB|T23.452A|ICD10CM|Corrosion of unspecified degree of left palm, init encntr|Corrosion of unspecified degree of left palm, init encntr +C2872266|T037|PT|T23.452A|ICD10CM|Corrosion of unspecified degree of left palm, initial encounter|Corrosion of unspecified degree of left palm, initial encounter +C2872267|T037|AB|T23.452D|ICD10CM|Corrosion of unspecified degree of left palm, subs encntr|Corrosion of unspecified degree of left palm, subs encntr +C2872267|T037|PT|T23.452D|ICD10CM|Corrosion of unspecified degree of left palm, subsequent encounter|Corrosion of unspecified degree of left palm, subsequent encounter +C2872268|T037|PT|T23.452S|ICD10CM|Corrosion of unspecified degree of left palm, sequela|Corrosion of unspecified degree of left palm, sequela +C2872268|T037|AB|T23.452S|ICD10CM|Corrosion of unspecified degree of left palm, sequela|Corrosion of unspecified degree of left palm, sequela +C2872269|T037|AB|T23.459|ICD10CM|Corrosion of unspecified degree of unspecified palm|Corrosion of unspecified degree of unspecified palm +C2872269|T037|HT|T23.459|ICD10CM|Corrosion of unspecified degree of unspecified palm|Corrosion of unspecified degree of unspecified palm +C2872270|T037|AB|T23.459A|ICD10CM|Corrosion of unsp degree of unspecified palm, init encntr|Corrosion of unsp degree of unspecified palm, init encntr +C2872270|T037|PT|T23.459A|ICD10CM|Corrosion of unspecified degree of unspecified palm, initial encounter|Corrosion of unspecified degree of unspecified palm, initial encounter +C2872271|T037|AB|T23.459D|ICD10CM|Corrosion of unsp degree of unspecified palm, subs encntr|Corrosion of unsp degree of unspecified palm, subs encntr +C2872271|T037|PT|T23.459D|ICD10CM|Corrosion of unspecified degree of unspecified palm, subsequent encounter|Corrosion of unspecified degree of unspecified palm, subsequent encounter +C2872272|T037|AB|T23.459S|ICD10CM|Corrosion of unspecified degree of unspecified palm, sequela|Corrosion of unspecified degree of unspecified palm, sequela +C2872272|T037|PT|T23.459S|ICD10CM|Corrosion of unspecified degree of unspecified palm, sequela|Corrosion of unspecified degree of unspecified palm, sequela +C2872273|T037|AB|T23.46|ICD10CM|Corrosion of unspecified degree of back of hand|Corrosion of unspecified degree of back of hand +C2872273|T037|HT|T23.46|ICD10CM|Corrosion of unspecified degree of back of hand|Corrosion of unspecified degree of back of hand +C2872274|T037|AB|T23.461|ICD10CM|Corrosion of unspecified degree of back of right hand|Corrosion of unspecified degree of back of right hand +C2872274|T037|HT|T23.461|ICD10CM|Corrosion of unspecified degree of back of right hand|Corrosion of unspecified degree of back of right hand +C2872275|T037|AB|T23.461A|ICD10CM|Corrosion of unsp degree of back of right hand, init encntr|Corrosion of unsp degree of back of right hand, init encntr +C2872275|T037|PT|T23.461A|ICD10CM|Corrosion of unspecified degree of back of right hand, initial encounter|Corrosion of unspecified degree of back of right hand, initial encounter +C2872276|T037|AB|T23.461D|ICD10CM|Corrosion of unsp degree of back of right hand, subs encntr|Corrosion of unsp degree of back of right hand, subs encntr +C2872276|T037|PT|T23.461D|ICD10CM|Corrosion of unspecified degree of back of right hand, subsequent encounter|Corrosion of unspecified degree of back of right hand, subsequent encounter +C2872277|T037|AB|T23.461S|ICD10CM|Corrosion of unsp degree of back of right hand, sequela|Corrosion of unsp degree of back of right hand, sequela +C2872277|T037|PT|T23.461S|ICD10CM|Corrosion of unspecified degree of back of right hand, sequela|Corrosion of unspecified degree of back of right hand, sequela +C2872278|T037|AB|T23.462|ICD10CM|Corrosion of unspecified degree of back of left hand|Corrosion of unspecified degree of back of left hand +C2872278|T037|HT|T23.462|ICD10CM|Corrosion of unspecified degree of back of left hand|Corrosion of unspecified degree of back of left hand +C2872279|T037|AB|T23.462A|ICD10CM|Corrosion of unsp degree of back of left hand, init encntr|Corrosion of unsp degree of back of left hand, init encntr +C2872279|T037|PT|T23.462A|ICD10CM|Corrosion of unspecified degree of back of left hand, initial encounter|Corrosion of unspecified degree of back of left hand, initial encounter +C2872280|T037|AB|T23.462D|ICD10CM|Corrosion of unsp degree of back of left hand, subs encntr|Corrosion of unsp degree of back of left hand, subs encntr +C2872280|T037|PT|T23.462D|ICD10CM|Corrosion of unspecified degree of back of left hand, subsequent encounter|Corrosion of unspecified degree of back of left hand, subsequent encounter +C2872281|T037|AB|T23.462S|ICD10CM|Corrosion of unsp degree of back of left hand, sequela|Corrosion of unsp degree of back of left hand, sequela +C2872281|T037|PT|T23.462S|ICD10CM|Corrosion of unspecified degree of back of left hand, sequela|Corrosion of unspecified degree of back of left hand, sequela +C2872282|T037|AB|T23.469|ICD10CM|Corrosion of unspecified degree of back of unspecified hand|Corrosion of unspecified degree of back of unspecified hand +C2872282|T037|HT|T23.469|ICD10CM|Corrosion of unspecified degree of back of unspecified hand|Corrosion of unspecified degree of back of unspecified hand +C2872283|T037|AB|T23.469A|ICD10CM|Corrosion of unsp degree of back of unsp hand, init encntr|Corrosion of unsp degree of back of unsp hand, init encntr +C2872283|T037|PT|T23.469A|ICD10CM|Corrosion of unspecified degree of back of unspecified hand, initial encounter|Corrosion of unspecified degree of back of unspecified hand, initial encounter +C2872284|T037|AB|T23.469D|ICD10CM|Corrosion of unsp degree of back of unsp hand, subs encntr|Corrosion of unsp degree of back of unsp hand, subs encntr +C2872284|T037|PT|T23.469D|ICD10CM|Corrosion of unspecified degree of back of unspecified hand, subsequent encounter|Corrosion of unspecified degree of back of unspecified hand, subsequent encounter +C2872285|T037|AB|T23.469S|ICD10CM|Corrosion of unsp degree of back of unsp hand, sequela|Corrosion of unsp degree of back of unsp hand, sequela +C2872285|T037|PT|T23.469S|ICD10CM|Corrosion of unspecified degree of back of unspecified hand, sequela|Corrosion of unspecified degree of back of unspecified hand, sequela +C2872286|T037|AB|T23.47|ICD10CM|Corrosion of unspecified degree of wrist|Corrosion of unspecified degree of wrist +C2872286|T037|HT|T23.47|ICD10CM|Corrosion of unspecified degree of wrist|Corrosion of unspecified degree of wrist +C2872287|T037|AB|T23.471|ICD10CM|Corrosion of unspecified degree of right wrist|Corrosion of unspecified degree of right wrist +C2872287|T037|HT|T23.471|ICD10CM|Corrosion of unspecified degree of right wrist|Corrosion of unspecified degree of right wrist +C2872288|T037|AB|T23.471A|ICD10CM|Corrosion of unspecified degree of right wrist, init encntr|Corrosion of unspecified degree of right wrist, init encntr +C2872288|T037|PT|T23.471A|ICD10CM|Corrosion of unspecified degree of right wrist, initial encounter|Corrosion of unspecified degree of right wrist, initial encounter +C2872289|T037|AB|T23.471D|ICD10CM|Corrosion of unspecified degree of right wrist, subs encntr|Corrosion of unspecified degree of right wrist, subs encntr +C2872289|T037|PT|T23.471D|ICD10CM|Corrosion of unspecified degree of right wrist, subsequent encounter|Corrosion of unspecified degree of right wrist, subsequent encounter +C2872290|T037|PT|T23.471S|ICD10CM|Corrosion of unspecified degree of right wrist, sequela|Corrosion of unspecified degree of right wrist, sequela +C2872290|T037|AB|T23.471S|ICD10CM|Corrosion of unspecified degree of right wrist, sequela|Corrosion of unspecified degree of right wrist, sequela +C2872291|T037|AB|T23.472|ICD10CM|Corrosion of unspecified degree of left wrist|Corrosion of unspecified degree of left wrist +C2872291|T037|HT|T23.472|ICD10CM|Corrosion of unspecified degree of left wrist|Corrosion of unspecified degree of left wrist +C2872292|T037|AB|T23.472A|ICD10CM|Corrosion of unspecified degree of left wrist, init encntr|Corrosion of unspecified degree of left wrist, init encntr +C2872292|T037|PT|T23.472A|ICD10CM|Corrosion of unspecified degree of left wrist, initial encounter|Corrosion of unspecified degree of left wrist, initial encounter +C2872293|T037|AB|T23.472D|ICD10CM|Corrosion of unspecified degree of left wrist, subs encntr|Corrosion of unspecified degree of left wrist, subs encntr +C2872293|T037|PT|T23.472D|ICD10CM|Corrosion of unspecified degree of left wrist, subsequent encounter|Corrosion of unspecified degree of left wrist, subsequent encounter +C2872294|T037|PT|T23.472S|ICD10CM|Corrosion of unspecified degree of left wrist, sequela|Corrosion of unspecified degree of left wrist, sequela +C2872294|T037|AB|T23.472S|ICD10CM|Corrosion of unspecified degree of left wrist, sequela|Corrosion of unspecified degree of left wrist, sequela +C2872295|T037|AB|T23.479|ICD10CM|Corrosion of unspecified degree of unspecified wrist|Corrosion of unspecified degree of unspecified wrist +C2872295|T037|HT|T23.479|ICD10CM|Corrosion of unspecified degree of unspecified wrist|Corrosion of unspecified degree of unspecified wrist +C2872296|T037|AB|T23.479A|ICD10CM|Corrosion of unsp degree of unspecified wrist, init encntr|Corrosion of unsp degree of unspecified wrist, init encntr +C2872296|T037|PT|T23.479A|ICD10CM|Corrosion of unspecified degree of unspecified wrist, initial encounter|Corrosion of unspecified degree of unspecified wrist, initial encounter +C2872297|T037|AB|T23.479D|ICD10CM|Corrosion of unsp degree of unspecified wrist, subs encntr|Corrosion of unsp degree of unspecified wrist, subs encntr +C2872297|T037|PT|T23.479D|ICD10CM|Corrosion of unspecified degree of unspecified wrist, subsequent encounter|Corrosion of unspecified degree of unspecified wrist, subsequent encounter +C2872298|T037|AB|T23.479S|ICD10CM|Corrosion of unsp degree of unspecified wrist, sequela|Corrosion of unsp degree of unspecified wrist, sequela +C2872298|T037|PT|T23.479S|ICD10CM|Corrosion of unspecified degree of unspecified wrist, sequela|Corrosion of unspecified degree of unspecified wrist, sequela +C2872299|T037|AB|T23.49|ICD10CM|Corrosion of unsp degree of multiple sites of wrist and hand|Corrosion of unsp degree of multiple sites of wrist and hand +C2872299|T037|HT|T23.49|ICD10CM|Corrosion of unspecified degree of multiple sites of wrist and hand|Corrosion of unspecified degree of multiple sites of wrist and hand +C2872300|T037|AB|T23.491|ICD10CM|Corrosion of unsp deg mult sites of right wrist and hand|Corrosion of unsp deg mult sites of right wrist and hand +C2872300|T037|HT|T23.491|ICD10CM|Corrosion of unspecified degree of multiple sites of right wrist and hand|Corrosion of unspecified degree of multiple sites of right wrist and hand +C2872301|T037|AB|T23.491A|ICD10CM|Corrosion of unsp deg mult sites of right wrs/hnd, init|Corrosion of unsp deg mult sites of right wrs/hnd, init +C2872301|T037|PT|T23.491A|ICD10CM|Corrosion of unspecified degree of multiple sites of right wrist and hand, initial encounter|Corrosion of unspecified degree of multiple sites of right wrist and hand, initial encounter +C2872302|T037|AB|T23.491D|ICD10CM|Corrosion of unsp deg mult sites of right wrs/hnd, subs|Corrosion of unsp deg mult sites of right wrs/hnd, subs +C2872302|T037|PT|T23.491D|ICD10CM|Corrosion of unspecified degree of multiple sites of right wrist and hand, subsequent encounter|Corrosion of unspecified degree of multiple sites of right wrist and hand, subsequent encounter +C2872303|T037|AB|T23.491S|ICD10CM|Corrosion of unsp deg mult sites of right wrs/hnd, sequela|Corrosion of unsp deg mult sites of right wrs/hnd, sequela +C2872303|T037|PT|T23.491S|ICD10CM|Corrosion of unspecified degree of multiple sites of right wrist and hand, sequela|Corrosion of unspecified degree of multiple sites of right wrist and hand, sequela +C2872304|T037|AB|T23.492|ICD10CM|Corrosion of unsp deg mult sites of left wrist and hand|Corrosion of unsp deg mult sites of left wrist and hand +C2872304|T037|HT|T23.492|ICD10CM|Corrosion of unspecified degree of multiple sites of left wrist and hand|Corrosion of unspecified degree of multiple sites of left wrist and hand +C2872305|T037|AB|T23.492A|ICD10CM|Corrosion of unsp deg mult sites of left wrs/hnd, init|Corrosion of unsp deg mult sites of left wrs/hnd, init +C2872305|T037|PT|T23.492A|ICD10CM|Corrosion of unspecified degree of multiple sites of left wrist and hand, initial encounter|Corrosion of unspecified degree of multiple sites of left wrist and hand, initial encounter +C2872306|T037|AB|T23.492D|ICD10CM|Corrosion of unsp deg mult sites of left wrs/hnd, subs|Corrosion of unsp deg mult sites of left wrs/hnd, subs +C2872306|T037|PT|T23.492D|ICD10CM|Corrosion of unspecified degree of multiple sites of left wrist and hand, subsequent encounter|Corrosion of unspecified degree of multiple sites of left wrist and hand, subsequent encounter +C2872307|T037|AB|T23.492S|ICD10CM|Corrosion of unsp deg mult sites of left wrs/hnd, sequela|Corrosion of unsp deg mult sites of left wrs/hnd, sequela +C2872307|T037|PT|T23.492S|ICD10CM|Corrosion of unspecified degree of multiple sites of left wrist and hand, sequela|Corrosion of unspecified degree of multiple sites of left wrist and hand, sequela +C2872308|T037|AB|T23.499|ICD10CM|Corrosion of unsp deg mult sites of unsp wrist and hand|Corrosion of unsp deg mult sites of unsp wrist and hand +C2872308|T037|HT|T23.499|ICD10CM|Corrosion of unspecified degree of multiple sites of unspecified wrist and hand|Corrosion of unspecified degree of multiple sites of unspecified wrist and hand +C2872309|T037|AB|T23.499A|ICD10CM|Corrosion of unsp deg mult sites of unsp wrs/hnd, init|Corrosion of unsp deg mult sites of unsp wrs/hnd, init +C2872309|T037|PT|T23.499A|ICD10CM|Corrosion of unspecified degree of multiple sites of unspecified wrist and hand, initial encounter|Corrosion of unspecified degree of multiple sites of unspecified wrist and hand, initial encounter +C2872310|T037|AB|T23.499D|ICD10CM|Corrosion of unsp deg mult sites of unsp wrs/hnd, subs|Corrosion of unsp deg mult sites of unsp wrs/hnd, subs +C2872311|T037|AB|T23.499S|ICD10CM|Corrosion of unsp deg mult sites of unsp wrs/hnd, sequela|Corrosion of unsp deg mult sites of unsp wrs/hnd, sequela +C2872311|T037|PT|T23.499S|ICD10CM|Corrosion of unspecified degree of multiple sites of unspecified wrist and hand, sequela|Corrosion of unspecified degree of multiple sites of unspecified wrist and hand, sequela +C0451992|T037|PT|T23.5|ICD10|Corrosion of first degree of wrist and hand|Corrosion of first degree of wrist and hand +C0451992|T037|HT|T23.5|ICD10CM|Corrosion of first degree of wrist and hand|Corrosion of first degree of wrist and hand +C0451992|T037|AB|T23.5|ICD10CM|Corrosion of first degree of wrist and hand|Corrosion of first degree of wrist and hand +C2872312|T037|AB|T23.50|ICD10CM|Corrosion of first degree of hand, unspecified site|Corrosion of first degree of hand, unspecified site +C2872312|T037|HT|T23.50|ICD10CM|Corrosion of first degree of hand, unspecified site|Corrosion of first degree of hand, unspecified site +C2872313|T037|AB|T23.501|ICD10CM|Corrosion of first degree of right hand, unspecified site|Corrosion of first degree of right hand, unspecified site +C2872313|T037|HT|T23.501|ICD10CM|Corrosion of first degree of right hand, unspecified site|Corrosion of first degree of right hand, unspecified site +C2872314|T037|AB|T23.501A|ICD10CM|Corrosion of first degree of right hand, unsp site, init|Corrosion of first degree of right hand, unsp site, init +C2872314|T037|PT|T23.501A|ICD10CM|Corrosion of first degree of right hand, unspecified site, initial encounter|Corrosion of first degree of right hand, unspecified site, initial encounter +C2872315|T037|AB|T23.501D|ICD10CM|Corrosion of first degree of right hand, unsp site, subs|Corrosion of first degree of right hand, unsp site, subs +C2872315|T037|PT|T23.501D|ICD10CM|Corrosion of first degree of right hand, unspecified site, subsequent encounter|Corrosion of first degree of right hand, unspecified site, subsequent encounter +C2872316|T037|AB|T23.501S|ICD10CM|Corrosion of first degree of right hand, unsp site, sequela|Corrosion of first degree of right hand, unsp site, sequela +C2872316|T037|PT|T23.501S|ICD10CM|Corrosion of first degree of right hand, unspecified site, sequela|Corrosion of first degree of right hand, unspecified site, sequela +C2872317|T037|AB|T23.502|ICD10CM|Corrosion of first degree of left hand, unspecified site|Corrosion of first degree of left hand, unspecified site +C2872317|T037|HT|T23.502|ICD10CM|Corrosion of first degree of left hand, unspecified site|Corrosion of first degree of left hand, unspecified site +C2872318|T037|AB|T23.502A|ICD10CM|Corrosion of first degree of left hand, unsp site, init|Corrosion of first degree of left hand, unsp site, init +C2872318|T037|PT|T23.502A|ICD10CM|Corrosion of first degree of left hand, unspecified site, initial encounter|Corrosion of first degree of left hand, unspecified site, initial encounter +C2872319|T037|AB|T23.502D|ICD10CM|Corrosion of first degree of left hand, unsp site, subs|Corrosion of first degree of left hand, unsp site, subs +C2872319|T037|PT|T23.502D|ICD10CM|Corrosion of first degree of left hand, unspecified site, subsequent encounter|Corrosion of first degree of left hand, unspecified site, subsequent encounter +C2872320|T037|AB|T23.502S|ICD10CM|Corrosion of first degree of left hand, unsp site, sequela|Corrosion of first degree of left hand, unsp site, sequela +C2872320|T037|PT|T23.502S|ICD10CM|Corrosion of first degree of left hand, unspecified site, sequela|Corrosion of first degree of left hand, unspecified site, sequela +C2872321|T037|AB|T23.509|ICD10CM|Corrosion of first degree of unsp hand, unspecified site|Corrosion of first degree of unsp hand, unspecified site +C2872321|T037|HT|T23.509|ICD10CM|Corrosion of first degree of unspecified hand, unspecified site|Corrosion of first degree of unspecified hand, unspecified site +C2872322|T037|AB|T23.509A|ICD10CM|Corrosion of first degree of unsp hand, unsp site, init|Corrosion of first degree of unsp hand, unsp site, init +C2872322|T037|PT|T23.509A|ICD10CM|Corrosion of first degree of unspecified hand, unspecified site, initial encounter|Corrosion of first degree of unspecified hand, unspecified site, initial encounter +C2872323|T037|AB|T23.509D|ICD10CM|Corrosion of first degree of unsp hand, unsp site, subs|Corrosion of first degree of unsp hand, unsp site, subs +C2872323|T037|PT|T23.509D|ICD10CM|Corrosion of first degree of unspecified hand, unspecified site, subsequent encounter|Corrosion of first degree of unspecified hand, unspecified site, subsequent encounter +C2872324|T037|AB|T23.509S|ICD10CM|Corrosion of first degree of unsp hand, unsp site, sequela|Corrosion of first degree of unsp hand, unsp site, sequela +C2872324|T037|PT|T23.509S|ICD10CM|Corrosion of first degree of unspecified hand, unspecified site, sequela|Corrosion of first degree of unspecified hand, unspecified site, sequela +C2872325|T037|AB|T23.51|ICD10CM|Corrosion of first degree of thumb (nail)|Corrosion of first degree of thumb (nail) +C2872325|T037|HT|T23.51|ICD10CM|Corrosion of first degree of thumb (nail)|Corrosion of first degree of thumb (nail) +C2872326|T037|AB|T23.511|ICD10CM|Corrosion of first degree of right thumb (nail)|Corrosion of first degree of right thumb (nail) +C2872326|T037|HT|T23.511|ICD10CM|Corrosion of first degree of right thumb (nail)|Corrosion of first degree of right thumb (nail) +C2872327|T037|AB|T23.511A|ICD10CM|Corrosion of first degree of right thumb (nail), init encntr|Corrosion of first degree of right thumb (nail), init encntr +C2872327|T037|PT|T23.511A|ICD10CM|Corrosion of first degree of right thumb (nail), initial encounter|Corrosion of first degree of right thumb (nail), initial encounter +C2872328|T037|AB|T23.511D|ICD10CM|Corrosion of first degree of right thumb (nail), subs encntr|Corrosion of first degree of right thumb (nail), subs encntr +C2872328|T037|PT|T23.511D|ICD10CM|Corrosion of first degree of right thumb (nail), subsequent encounter|Corrosion of first degree of right thumb (nail), subsequent encounter +C2872329|T037|PT|T23.511S|ICD10CM|Corrosion of first degree of right thumb (nail), sequela|Corrosion of first degree of right thumb (nail), sequela +C2872329|T037|AB|T23.511S|ICD10CM|Corrosion of first degree of right thumb (nail), sequela|Corrosion of first degree of right thumb (nail), sequela +C2872330|T037|AB|T23.512|ICD10CM|Corrosion of first degree of left thumb (nail)|Corrosion of first degree of left thumb (nail) +C2872330|T037|HT|T23.512|ICD10CM|Corrosion of first degree of left thumb (nail)|Corrosion of first degree of left thumb (nail) +C2872331|T037|AB|T23.512A|ICD10CM|Corrosion of first degree of left thumb (nail), init encntr|Corrosion of first degree of left thumb (nail), init encntr +C2872331|T037|PT|T23.512A|ICD10CM|Corrosion of first degree of left thumb (nail), initial encounter|Corrosion of first degree of left thumb (nail), initial encounter +C2872332|T037|AB|T23.512D|ICD10CM|Corrosion of first degree of left thumb (nail), subs encntr|Corrosion of first degree of left thumb (nail), subs encntr +C2872332|T037|PT|T23.512D|ICD10CM|Corrosion of first degree of left thumb (nail), subsequent encounter|Corrosion of first degree of left thumb (nail), subsequent encounter +C2872333|T037|PT|T23.512S|ICD10CM|Corrosion of first degree of left thumb (nail), sequela|Corrosion of first degree of left thumb (nail), sequela +C2872333|T037|AB|T23.512S|ICD10CM|Corrosion of first degree of left thumb (nail), sequela|Corrosion of first degree of left thumb (nail), sequela +C2872334|T037|AB|T23.519|ICD10CM|Corrosion of first degree of unspecified thumb (nail)|Corrosion of first degree of unspecified thumb (nail) +C2872334|T037|HT|T23.519|ICD10CM|Corrosion of first degree of unspecified thumb (nail)|Corrosion of first degree of unspecified thumb (nail) +C2872335|T037|AB|T23.519A|ICD10CM|Corrosion of first degree of unsp thumb (nail), init encntr|Corrosion of first degree of unsp thumb (nail), init encntr +C2872335|T037|PT|T23.519A|ICD10CM|Corrosion of first degree of unspecified thumb (nail), initial encounter|Corrosion of first degree of unspecified thumb (nail), initial encounter +C2872336|T037|AB|T23.519D|ICD10CM|Corrosion of first degree of unsp thumb (nail), subs encntr|Corrosion of first degree of unsp thumb (nail), subs encntr +C2872336|T037|PT|T23.519D|ICD10CM|Corrosion of first degree of unspecified thumb (nail), subsequent encounter|Corrosion of first degree of unspecified thumb (nail), subsequent encounter +C2872337|T037|AB|T23.519S|ICD10CM|Corrosion of first degree of unsp thumb (nail), sequela|Corrosion of first degree of unsp thumb (nail), sequela +C2872337|T037|PT|T23.519S|ICD10CM|Corrosion of first degree of unspecified thumb (nail), sequela|Corrosion of first degree of unspecified thumb (nail), sequela +C2872338|T037|AB|T23.52|ICD10CM|Corros first degree of single finger (nail) except thumb|Corros first degree of single finger (nail) except thumb +C2872338|T037|HT|T23.52|ICD10CM|Corrosion of first degree of single finger (nail) except thumb|Corrosion of first degree of single finger (nail) except thumb +C2872339|T037|AB|T23.521|ICD10CM|Corros first degree of single r finger (nail) except thumb|Corros first degree of single r finger (nail) except thumb +C2872339|T037|HT|T23.521|ICD10CM|Corrosion of first degree of single right finger (nail) except thumb|Corrosion of first degree of single right finger (nail) except thumb +C2872340|T037|AB|T23.521A|ICD10CM|Corros first degree of single r finger except thumb, init|Corros first degree of single r finger except thumb, init +C2872340|T037|PT|T23.521A|ICD10CM|Corrosion of first degree of single right finger (nail) except thumb, initial encounter|Corrosion of first degree of single right finger (nail) except thumb, initial encounter +C2872341|T037|AB|T23.521D|ICD10CM|Corros first degree of single r finger except thumb, subs|Corros first degree of single r finger except thumb, subs +C2872341|T037|PT|T23.521D|ICD10CM|Corrosion of first degree of single right finger (nail) except thumb, subsequent encounter|Corrosion of first degree of single right finger (nail) except thumb, subsequent encounter +C2872342|T037|AB|T23.521S|ICD10CM|Corros first degree of single r finger except thumb, sqla|Corros first degree of single r finger except thumb, sqla +C2872342|T037|PT|T23.521S|ICD10CM|Corrosion of first degree of single right finger (nail) except thumb, sequela|Corrosion of first degree of single right finger (nail) except thumb, sequela +C2872343|T037|AB|T23.522|ICD10CM|Corros first degree of single l finger (nail) except thumb|Corros first degree of single l finger (nail) except thumb +C2872343|T037|HT|T23.522|ICD10CM|Corrosion of first degree of single left finger (nail) except thumb|Corrosion of first degree of single left finger (nail) except thumb +C2872344|T037|AB|T23.522A|ICD10CM|Corros first degree of single l finger except thumb, init|Corros first degree of single l finger except thumb, init +C2872344|T037|PT|T23.522A|ICD10CM|Corrosion of first degree of single left finger (nail) except thumb, initial encounter|Corrosion of first degree of single left finger (nail) except thumb, initial encounter +C2872345|T037|AB|T23.522D|ICD10CM|Corros first degree of single l finger except thumb, subs|Corros first degree of single l finger except thumb, subs +C2872345|T037|PT|T23.522D|ICD10CM|Corrosion of first degree of single left finger (nail) except thumb, subsequent encounter|Corrosion of first degree of single left finger (nail) except thumb, subsequent encounter +C2872346|T037|AB|T23.522S|ICD10CM|Corros first degree of single l finger except thumb, sqla|Corros first degree of single l finger except thumb, sqla +C2872346|T037|PT|T23.522S|ICD10CM|Corrosion of first degree of single left finger (nail) except thumb, sequela|Corrosion of first degree of single left finger (nail) except thumb, sequela +C2872347|T037|AB|T23.529|ICD10CM|Corros first degree of unsp single finger except thumb|Corros first degree of unsp single finger except thumb +C2872347|T037|HT|T23.529|ICD10CM|Corrosion of first degree of unspecified single finger (nail) except thumb|Corrosion of first degree of unspecified single finger (nail) except thumb +C2872348|T037|AB|T23.529A|ICD10CM|Corros first degree of unsp single finger except thumb, init|Corros first degree of unsp single finger except thumb, init +C2872348|T037|PT|T23.529A|ICD10CM|Corrosion of first degree of unspecified single finger (nail) except thumb, initial encounter|Corrosion of first degree of unspecified single finger (nail) except thumb, initial encounter +C2872349|T037|AB|T23.529D|ICD10CM|Corros first degree of unsp single finger except thumb, subs|Corros first degree of unsp single finger except thumb, subs +C2872349|T037|PT|T23.529D|ICD10CM|Corrosion of first degree of unspecified single finger (nail) except thumb, subsequent encounter|Corrosion of first degree of unspecified single finger (nail) except thumb, subsequent encounter +C2872350|T037|AB|T23.529S|ICD10CM|Corros first degree of unsp single finger except thumb, sqla|Corros first degree of unsp single finger except thumb, sqla +C2872350|T037|PT|T23.529S|ICD10CM|Corrosion of first degree of unspecified single finger (nail) except thumb, sequela|Corrosion of first degree of unspecified single finger (nail) except thumb, sequela +C2872351|T037|AB|T23.53|ICD10CM|Corros first deg mult fingers (nail), not including thumb|Corros first deg mult fingers (nail), not including thumb +C2872351|T037|HT|T23.53|ICD10CM|Corrosion of first degree of multiple fingers (nail), not including thumb|Corrosion of first degree of multiple fingers (nail), not including thumb +C2872352|T037|AB|T23.531|ICD10CM|Corros first deg mult right fingers (nail), not inc thumb|Corros first deg mult right fingers (nail), not inc thumb +C2872352|T037|HT|T23.531|ICD10CM|Corrosion of first degree of multiple right fingers (nail), not including thumb|Corrosion of first degree of multiple right fingers (nail), not including thumb +C2872353|T037|AB|T23.531A|ICD10CM|Corros first deg mult right fngr (nail), not inc thumb, init|Corros first deg mult right fngr (nail), not inc thumb, init +C2872353|T037|PT|T23.531A|ICD10CM|Corrosion of first degree of multiple right fingers (nail), not including thumb, initial encounter|Corrosion of first degree of multiple right fingers (nail), not including thumb, initial encounter +C2872354|T037|AB|T23.531D|ICD10CM|Corros first deg mult right fngr (nail), not inc thumb, subs|Corros first deg mult right fngr (nail), not inc thumb, subs +C2872355|T037|AB|T23.531S|ICD10CM|Corros first deg mult right fngr (nail), not inc thumb, sqla|Corros first deg mult right fngr (nail), not inc thumb, sqla +C2872355|T037|PT|T23.531S|ICD10CM|Corrosion of first degree of multiple right fingers (nail), not including thumb, sequela|Corrosion of first degree of multiple right fingers (nail), not including thumb, sequela +C2872356|T037|AB|T23.532|ICD10CM|Corros first deg mult left fingers (nail), not inc thumb|Corros first deg mult left fingers (nail), not inc thumb +C2872356|T037|HT|T23.532|ICD10CM|Corrosion of first degree of multiple left fingers (nail), not including thumb|Corrosion of first degree of multiple left fingers (nail), not including thumb +C2872357|T037|AB|T23.532A|ICD10CM|Corros first deg mult left fngr (nail), not inc thumb, init|Corros first deg mult left fngr (nail), not inc thumb, init +C2872357|T037|PT|T23.532A|ICD10CM|Corrosion of first degree of multiple left fingers (nail), not including thumb, initial encounter|Corrosion of first degree of multiple left fingers (nail), not including thumb, initial encounter +C2872358|T037|AB|T23.532D|ICD10CM|Corros first deg mult left fngr (nail), not inc thumb, subs|Corros first deg mult left fngr (nail), not inc thumb, subs +C2872358|T037|PT|T23.532D|ICD10CM|Corrosion of first degree of multiple left fingers (nail), not including thumb, subsequent encounter|Corrosion of first degree of multiple left fingers (nail), not including thumb, subsequent encounter +C2872359|T037|AB|T23.532S|ICD10CM|Corros first deg mult left fngr (nail), not inc thumb, sqla|Corros first deg mult left fngr (nail), not inc thumb, sqla +C2872359|T037|PT|T23.532S|ICD10CM|Corrosion of first degree of multiple left fingers (nail), not including thumb, sequela|Corrosion of first degree of multiple left fingers (nail), not including thumb, sequela +C2872360|T037|AB|T23.539|ICD10CM|Corros first degree of unsp mult fngr (nail), not inc thumb|Corros first degree of unsp mult fngr (nail), not inc thumb +C2872360|T037|HT|T23.539|ICD10CM|Corrosion of first degree of unspecified multiple fingers (nail), not including thumb|Corrosion of first degree of unspecified multiple fingers (nail), not including thumb +C2872361|T037|AB|T23.539A|ICD10CM|Corros first degree of unsp mult fngr, not inc thumb, init|Corros first degree of unsp mult fngr, not inc thumb, init +C2872362|T037|AB|T23.539D|ICD10CM|Corros first degree of unsp mult fngr, not inc thumb, subs|Corros first degree of unsp mult fngr, not inc thumb, subs +C2872363|T037|AB|T23.539S|ICD10CM|Corros first degree of unsp mult fngr, not inc thumb, sqla|Corros first degree of unsp mult fngr, not inc thumb, sqla +C2872363|T037|PT|T23.539S|ICD10CM|Corrosion of first degree of unspecified multiple fingers (nail), not including thumb, sequela|Corrosion of first degree of unspecified multiple fingers (nail), not including thumb, sequela +C2872364|T037|AB|T23.54|ICD10CM|Corrosion of first deg mult fingers (nail), including thumb|Corrosion of first deg mult fingers (nail), including thumb +C2872364|T037|HT|T23.54|ICD10CM|Corrosion of first degree of multiple fingers (nail), including thumb|Corrosion of first degree of multiple fingers (nail), including thumb +C2872365|T037|AB|T23.541|ICD10CM|Corros first deg mult right fingers (nail), including thumb|Corros first deg mult right fingers (nail), including thumb +C2872365|T037|HT|T23.541|ICD10CM|Corrosion of first degree of multiple right fingers (nail), including thumb|Corrosion of first degree of multiple right fingers (nail), including thumb +C2872366|T037|AB|T23.541A|ICD10CM|Corros first deg mult right fingers (nail), inc thumb, init|Corros first deg mult right fingers (nail), inc thumb, init +C2872366|T037|PT|T23.541A|ICD10CM|Corrosion of first degree of multiple right fingers (nail), including thumb, initial encounter|Corrosion of first degree of multiple right fingers (nail), including thumb, initial encounter +C2872367|T037|AB|T23.541D|ICD10CM|Corros first deg mult right fingers (nail), inc thumb, subs|Corros first deg mult right fingers (nail), inc thumb, subs +C2872367|T037|PT|T23.541D|ICD10CM|Corrosion of first degree of multiple right fingers (nail), including thumb, subsequent encounter|Corrosion of first degree of multiple right fingers (nail), including thumb, subsequent encounter +C2872368|T037|AB|T23.541S|ICD10CM|Corros first deg mult right fngr (nail), inc thumb, sequela|Corros first deg mult right fngr (nail), inc thumb, sequela +C2872368|T037|PT|T23.541S|ICD10CM|Corrosion of first degree of multiple right fingers (nail), including thumb, sequela|Corrosion of first degree of multiple right fingers (nail), including thumb, sequela +C2872369|T037|AB|T23.542|ICD10CM|Corros first deg mult left fingers (nail), including thumb|Corros first deg mult left fingers (nail), including thumb +C2872369|T037|HT|T23.542|ICD10CM|Corrosion of first degree of multiple left fingers (nail), including thumb|Corrosion of first degree of multiple left fingers (nail), including thumb +C2872370|T037|AB|T23.542A|ICD10CM|Corros first deg mult left fingers (nail), inc thumb, init|Corros first deg mult left fingers (nail), inc thumb, init +C2872370|T037|PT|T23.542A|ICD10CM|Corrosion of first degree of multiple left fingers (nail), including thumb, initial encounter|Corrosion of first degree of multiple left fingers (nail), including thumb, initial encounter +C2872371|T037|AB|T23.542D|ICD10CM|Corros first deg mult left fingers (nail), inc thumb, subs|Corros first deg mult left fingers (nail), inc thumb, subs +C2872371|T037|PT|T23.542D|ICD10CM|Corrosion of first degree of multiple left fingers (nail), including thumb, subsequent encounter|Corrosion of first degree of multiple left fingers (nail), including thumb, subsequent encounter +C2872372|T037|AB|T23.542S|ICD10CM|Corros first deg mult left fngr (nail), inc thumb, sequela|Corros first deg mult left fngr (nail), inc thumb, sequela +C2872372|T037|PT|T23.542S|ICD10CM|Corrosion of first degree of multiple left fingers (nail), including thumb, sequela|Corrosion of first degree of multiple left fingers (nail), including thumb, sequela +C2872373|T037|AB|T23.549|ICD10CM|Corros first degree of unsp mult fingers (nail), inc thumb|Corros first degree of unsp mult fingers (nail), inc thumb +C2872373|T037|HT|T23.549|ICD10CM|Corrosion of first degree of unspecified multiple fingers (nail), including thumb|Corrosion of first degree of unspecified multiple fingers (nail), including thumb +C2872374|T037|AB|T23.549A|ICD10CM|Corros first degree of unsp mult fngr, inc thumb, init|Corros first degree of unsp mult fngr, inc thumb, init +C2872374|T037|PT|T23.549A|ICD10CM|Corrosion of first degree of unspecified multiple fingers (nail), including thumb, initial encounter|Corrosion of first degree of unspecified multiple fingers (nail), including thumb, initial encounter +C2872375|T037|AB|T23.549D|ICD10CM|Corros first degree of unsp mult fngr, inc thumb, subs|Corros first degree of unsp mult fngr, inc thumb, subs +C2872376|T037|AB|T23.549S|ICD10CM|Corros first degree of unsp mult fngr, inc thumb, sqla|Corros first degree of unsp mult fngr, inc thumb, sqla +C2872376|T037|PT|T23.549S|ICD10CM|Corrosion of first degree of unspecified multiple fingers (nail), including thumb, sequela|Corrosion of first degree of unspecified multiple fingers (nail), including thumb, sequela +C2872377|T037|AB|T23.55|ICD10CM|Corrosion of first degree of palm|Corrosion of first degree of palm +C2872377|T037|HT|T23.55|ICD10CM|Corrosion of first degree of palm|Corrosion of first degree of palm +C2872378|T037|AB|T23.551|ICD10CM|Corrosion of first degree of right palm|Corrosion of first degree of right palm +C2872378|T037|HT|T23.551|ICD10CM|Corrosion of first degree of right palm|Corrosion of first degree of right palm +C2872379|T037|PT|T23.551A|ICD10CM|Corrosion of first degree of right palm, initial encounter|Corrosion of first degree of right palm, initial encounter +C2872379|T037|AB|T23.551A|ICD10CM|Corrosion of first degree of right palm, initial encounter|Corrosion of first degree of right palm, initial encounter +C2872380|T037|AB|T23.551D|ICD10CM|Corrosion of first degree of right palm, subs encntr|Corrosion of first degree of right palm, subs encntr +C2872380|T037|PT|T23.551D|ICD10CM|Corrosion of first degree of right palm, subsequent encounter|Corrosion of first degree of right palm, subsequent encounter +C2872381|T037|PT|T23.551S|ICD10CM|Corrosion of first degree of right palm, sequela|Corrosion of first degree of right palm, sequela +C2872381|T037|AB|T23.551S|ICD10CM|Corrosion of first degree of right palm, sequela|Corrosion of first degree of right palm, sequela +C2872382|T037|AB|T23.552|ICD10CM|Corrosion of first degree of left palm|Corrosion of first degree of left palm +C2872382|T037|HT|T23.552|ICD10CM|Corrosion of first degree of left palm|Corrosion of first degree of left palm +C2872383|T037|PT|T23.552A|ICD10CM|Corrosion of first degree of left palm, initial encounter|Corrosion of first degree of left palm, initial encounter +C2872383|T037|AB|T23.552A|ICD10CM|Corrosion of first degree of left palm, initial encounter|Corrosion of first degree of left palm, initial encounter +C2872384|T037|AB|T23.552D|ICD10CM|Corrosion of first degree of left palm, subsequent encounter|Corrosion of first degree of left palm, subsequent encounter +C2872384|T037|PT|T23.552D|ICD10CM|Corrosion of first degree of left palm, subsequent encounter|Corrosion of first degree of left palm, subsequent encounter +C2872385|T037|PT|T23.552S|ICD10CM|Corrosion of first degree of left palm, sequela|Corrosion of first degree of left palm, sequela +C2872385|T037|AB|T23.552S|ICD10CM|Corrosion of first degree of left palm, sequela|Corrosion of first degree of left palm, sequela +C2872386|T037|AB|T23.559|ICD10CM|Corrosion of first degree of unspecified palm|Corrosion of first degree of unspecified palm +C2872386|T037|HT|T23.559|ICD10CM|Corrosion of first degree of unspecified palm|Corrosion of first degree of unspecified palm +C2872387|T037|AB|T23.559A|ICD10CM|Corrosion of first degree of unspecified palm, init encntr|Corrosion of first degree of unspecified palm, init encntr +C2872387|T037|PT|T23.559A|ICD10CM|Corrosion of first degree of unspecified palm, initial encounter|Corrosion of first degree of unspecified palm, initial encounter +C2872388|T037|AB|T23.559D|ICD10CM|Corrosion of first degree of unspecified palm, subs encntr|Corrosion of first degree of unspecified palm, subs encntr +C2872388|T037|PT|T23.559D|ICD10CM|Corrosion of first degree of unspecified palm, subsequent encounter|Corrosion of first degree of unspecified palm, subsequent encounter +C2872389|T037|PT|T23.559S|ICD10CM|Corrosion of first degree of unspecified palm, sequela|Corrosion of first degree of unspecified palm, sequela +C2872389|T037|AB|T23.559S|ICD10CM|Corrosion of first degree of unspecified palm, sequela|Corrosion of first degree of unspecified palm, sequela +C2872390|T037|AB|T23.56|ICD10CM|Corrosion of first degree of back of hand|Corrosion of first degree of back of hand +C2872390|T037|HT|T23.56|ICD10CM|Corrosion of first degree of back of hand|Corrosion of first degree of back of hand +C2872391|T037|AB|T23.561|ICD10CM|Corrosion of first degree of back of right hand|Corrosion of first degree of back of right hand +C2872391|T037|HT|T23.561|ICD10CM|Corrosion of first degree of back of right hand|Corrosion of first degree of back of right hand +C2872392|T037|AB|T23.561A|ICD10CM|Corrosion of first degree of back of right hand, init encntr|Corrosion of first degree of back of right hand, init encntr +C2872392|T037|PT|T23.561A|ICD10CM|Corrosion of first degree of back of right hand, initial encounter|Corrosion of first degree of back of right hand, initial encounter +C2872393|T037|AB|T23.561D|ICD10CM|Corrosion of first degree of back of right hand, subs encntr|Corrosion of first degree of back of right hand, subs encntr +C2872393|T037|PT|T23.561D|ICD10CM|Corrosion of first degree of back of right hand, subsequent encounter|Corrosion of first degree of back of right hand, subsequent encounter +C2872394|T037|PT|T23.561S|ICD10CM|Corrosion of first degree of back of right hand, sequela|Corrosion of first degree of back of right hand, sequela +C2872394|T037|AB|T23.561S|ICD10CM|Corrosion of first degree of back of right hand, sequela|Corrosion of first degree of back of right hand, sequela +C2872395|T037|AB|T23.562|ICD10CM|Corrosion of first degree of back of left hand|Corrosion of first degree of back of left hand +C2872395|T037|HT|T23.562|ICD10CM|Corrosion of first degree of back of left hand|Corrosion of first degree of back of left hand +C2872396|T037|AB|T23.562A|ICD10CM|Corrosion of first degree of back of left hand, init encntr|Corrosion of first degree of back of left hand, init encntr +C2872396|T037|PT|T23.562A|ICD10CM|Corrosion of first degree of back of left hand, initial encounter|Corrosion of first degree of back of left hand, initial encounter +C2872397|T037|AB|T23.562D|ICD10CM|Corrosion of first degree of back of left hand, subs encntr|Corrosion of first degree of back of left hand, subs encntr +C2872397|T037|PT|T23.562D|ICD10CM|Corrosion of first degree of back of left hand, subsequent encounter|Corrosion of first degree of back of left hand, subsequent encounter +C2872398|T037|PT|T23.562S|ICD10CM|Corrosion of first degree of back of left hand, sequela|Corrosion of first degree of back of left hand, sequela +C2872398|T037|AB|T23.562S|ICD10CM|Corrosion of first degree of back of left hand, sequela|Corrosion of first degree of back of left hand, sequela +C2872399|T037|AB|T23.569|ICD10CM|Corrosion of first degree of back of unspecified hand|Corrosion of first degree of back of unspecified hand +C2872399|T037|HT|T23.569|ICD10CM|Corrosion of first degree of back of unspecified hand|Corrosion of first degree of back of unspecified hand +C2872400|T037|AB|T23.569A|ICD10CM|Corrosion of first degree of back of unsp hand, init encntr|Corrosion of first degree of back of unsp hand, init encntr +C2872400|T037|PT|T23.569A|ICD10CM|Corrosion of first degree of back of unspecified hand, initial encounter|Corrosion of first degree of back of unspecified hand, initial encounter +C2872401|T037|AB|T23.569D|ICD10CM|Corrosion of first degree of back of unsp hand, subs encntr|Corrosion of first degree of back of unsp hand, subs encntr +C2872401|T037|PT|T23.569D|ICD10CM|Corrosion of first degree of back of unspecified hand, subsequent encounter|Corrosion of first degree of back of unspecified hand, subsequent encounter +C2872402|T037|AB|T23.569S|ICD10CM|Corrosion of first degree of back of unsp hand, sequela|Corrosion of first degree of back of unsp hand, sequela +C2872402|T037|PT|T23.569S|ICD10CM|Corrosion of first degree of back of unspecified hand, sequela|Corrosion of first degree of back of unspecified hand, sequela +C2872403|T037|AB|T23.57|ICD10CM|Corrosion of first degree of wrist|Corrosion of first degree of wrist +C2872403|T037|HT|T23.57|ICD10CM|Corrosion of first degree of wrist|Corrosion of first degree of wrist +C2872404|T037|AB|T23.571|ICD10CM|Corrosion of first degree of right wrist|Corrosion of first degree of right wrist +C2872404|T037|HT|T23.571|ICD10CM|Corrosion of first degree of right wrist|Corrosion of first degree of right wrist +C2872405|T037|PT|T23.571A|ICD10CM|Corrosion of first degree of right wrist, initial encounter|Corrosion of first degree of right wrist, initial encounter +C2872405|T037|AB|T23.571A|ICD10CM|Corrosion of first degree of right wrist, initial encounter|Corrosion of first degree of right wrist, initial encounter +C2872406|T037|AB|T23.571D|ICD10CM|Corrosion of first degree of right wrist, subs encntr|Corrosion of first degree of right wrist, subs encntr +C2872406|T037|PT|T23.571D|ICD10CM|Corrosion of first degree of right wrist, subsequent encounter|Corrosion of first degree of right wrist, subsequent encounter +C2872407|T037|PT|T23.571S|ICD10CM|Corrosion of first degree of right wrist, sequela|Corrosion of first degree of right wrist, sequela +C2872407|T037|AB|T23.571S|ICD10CM|Corrosion of first degree of right wrist, sequela|Corrosion of first degree of right wrist, sequela +C2872408|T037|AB|T23.572|ICD10CM|Corrosion of first degree of left wrist|Corrosion of first degree of left wrist +C2872408|T037|HT|T23.572|ICD10CM|Corrosion of first degree of left wrist|Corrosion of first degree of left wrist +C2872409|T037|PT|T23.572A|ICD10CM|Corrosion of first degree of left wrist, initial encounter|Corrosion of first degree of left wrist, initial encounter +C2872409|T037|AB|T23.572A|ICD10CM|Corrosion of first degree of left wrist, initial encounter|Corrosion of first degree of left wrist, initial encounter +C2872410|T037|AB|T23.572D|ICD10CM|Corrosion of first degree of left wrist, subs encntr|Corrosion of first degree of left wrist, subs encntr +C2872410|T037|PT|T23.572D|ICD10CM|Corrosion of first degree of left wrist, subsequent encounter|Corrosion of first degree of left wrist, subsequent encounter +C2872411|T037|PT|T23.572S|ICD10CM|Corrosion of first degree of left wrist, sequela|Corrosion of first degree of left wrist, sequela +C2872411|T037|AB|T23.572S|ICD10CM|Corrosion of first degree of left wrist, sequela|Corrosion of first degree of left wrist, sequela +C2872412|T037|AB|T23.579|ICD10CM|Corrosion of first degree of unspecified wrist|Corrosion of first degree of unspecified wrist +C2872412|T037|HT|T23.579|ICD10CM|Corrosion of first degree of unspecified wrist|Corrosion of first degree of unspecified wrist +C2872413|T037|AB|T23.579A|ICD10CM|Corrosion of first degree of unspecified wrist, init encntr|Corrosion of first degree of unspecified wrist, init encntr +C2872413|T037|PT|T23.579A|ICD10CM|Corrosion of first degree of unspecified wrist, initial encounter|Corrosion of first degree of unspecified wrist, initial encounter +C2872414|T037|AB|T23.579D|ICD10CM|Corrosion of first degree of unspecified wrist, subs encntr|Corrosion of first degree of unspecified wrist, subs encntr +C2872414|T037|PT|T23.579D|ICD10CM|Corrosion of first degree of unspecified wrist, subsequent encounter|Corrosion of first degree of unspecified wrist, subsequent encounter +C2872415|T037|PT|T23.579S|ICD10CM|Corrosion of first degree of unspecified wrist, sequela|Corrosion of first degree of unspecified wrist, sequela +C2872415|T037|AB|T23.579S|ICD10CM|Corrosion of first degree of unspecified wrist, sequela|Corrosion of first degree of unspecified wrist, sequela +C2872416|T037|AB|T23.59|ICD10CM|Corrosion of first deg mult sites of wrist and hand|Corrosion of first deg mult sites of wrist and hand +C2872416|T037|HT|T23.59|ICD10CM|Corrosion of first degree of multiple sites of wrist and hand|Corrosion of first degree of multiple sites of wrist and hand +C2872417|T037|AB|T23.591|ICD10CM|Corrosion of first deg mult sites of right wrist and hand|Corrosion of first deg mult sites of right wrist and hand +C2872417|T037|HT|T23.591|ICD10CM|Corrosion of first degree of multiple sites of right wrist and hand|Corrosion of first degree of multiple sites of right wrist and hand +C2872418|T037|AB|T23.591A|ICD10CM|Corrosion of first deg mult sites of right wrs/hnd, init|Corrosion of first deg mult sites of right wrs/hnd, init +C2872418|T037|PT|T23.591A|ICD10CM|Corrosion of first degree of multiple sites of right wrist and hand, initial encounter|Corrosion of first degree of multiple sites of right wrist and hand, initial encounter +C2872419|T037|AB|T23.591D|ICD10CM|Corrosion of first deg mult sites of right wrs/hnd, subs|Corrosion of first deg mult sites of right wrs/hnd, subs +C2872419|T037|PT|T23.591D|ICD10CM|Corrosion of first degree of multiple sites of right wrist and hand, subsequent encounter|Corrosion of first degree of multiple sites of right wrist and hand, subsequent encounter +C2872420|T037|AB|T23.591S|ICD10CM|Corrosion of first deg mult sites of right wrs/hnd, sequela|Corrosion of first deg mult sites of right wrs/hnd, sequela +C2872420|T037|PT|T23.591S|ICD10CM|Corrosion of first degree of multiple sites of right wrist and hand, sequela|Corrosion of first degree of multiple sites of right wrist and hand, sequela +C2872421|T037|AB|T23.592|ICD10CM|Corrosion of first deg mult sites of left wrist and hand|Corrosion of first deg mult sites of left wrist and hand +C2872421|T037|HT|T23.592|ICD10CM|Corrosion of first degree of multiple sites of left wrist and hand|Corrosion of first degree of multiple sites of left wrist and hand +C2872422|T037|AB|T23.592A|ICD10CM|Corrosion of first deg mult sites of left wrs/hnd, init|Corrosion of first deg mult sites of left wrs/hnd, init +C2872422|T037|PT|T23.592A|ICD10CM|Corrosion of first degree of multiple sites of left wrist and hand, initial encounter|Corrosion of first degree of multiple sites of left wrist and hand, initial encounter +C2872423|T037|AB|T23.592D|ICD10CM|Corrosion of first deg mult sites of left wrs/hnd, subs|Corrosion of first deg mult sites of left wrs/hnd, subs +C2872423|T037|PT|T23.592D|ICD10CM|Corrosion of first degree of multiple sites of left wrist and hand, subsequent encounter|Corrosion of first degree of multiple sites of left wrist and hand, subsequent encounter +C2872424|T037|AB|T23.592S|ICD10CM|Corrosion of first deg mult sites of left wrs/hnd, sequela|Corrosion of first deg mult sites of left wrs/hnd, sequela +C2872424|T037|PT|T23.592S|ICD10CM|Corrosion of first degree of multiple sites of left wrist and hand, sequela|Corrosion of first degree of multiple sites of left wrist and hand, sequela +C2872425|T037|AB|T23.599|ICD10CM|Corrosion of first deg mult sites of unsp wrist and hand|Corrosion of first deg mult sites of unsp wrist and hand +C2872425|T037|HT|T23.599|ICD10CM|Corrosion of first degree of multiple sites of unspecified wrist and hand|Corrosion of first degree of multiple sites of unspecified wrist and hand +C2872426|T037|AB|T23.599A|ICD10CM|Corrosion of first deg mult sites of unsp wrs/hnd, init|Corrosion of first deg mult sites of unsp wrs/hnd, init +C2872426|T037|PT|T23.599A|ICD10CM|Corrosion of first degree of multiple sites of unspecified wrist and hand, initial encounter|Corrosion of first degree of multiple sites of unspecified wrist and hand, initial encounter +C2872427|T037|AB|T23.599D|ICD10CM|Corrosion of first deg mult sites of unsp wrs/hnd, subs|Corrosion of first deg mult sites of unsp wrs/hnd, subs +C2872427|T037|PT|T23.599D|ICD10CM|Corrosion of first degree of multiple sites of unspecified wrist and hand, subsequent encounter|Corrosion of first degree of multiple sites of unspecified wrist and hand, subsequent encounter +C2872428|T037|AB|T23.599S|ICD10CM|Corrosion of first deg mult sites of unsp wrs/hnd, sequela|Corrosion of first deg mult sites of unsp wrs/hnd, sequela +C2872428|T037|PT|T23.599S|ICD10CM|Corrosion of first degree of multiple sites of unspecified wrist and hand, sequela|Corrosion of first degree of multiple sites of unspecified wrist and hand, sequela +C0452000|T037|HT|T23.6|ICD10CM|Corrosion of second degree of wrist and hand|Corrosion of second degree of wrist and hand +C0452000|T037|AB|T23.6|ICD10CM|Corrosion of second degree of wrist and hand|Corrosion of second degree of wrist and hand +C0452000|T037|PT|T23.6|ICD10|Corrosion of second degree of wrist and hand|Corrosion of second degree of wrist and hand +C2872429|T037|AB|T23.60|ICD10CM|Corrosion of second degree of hand, unspecified site|Corrosion of second degree of hand, unspecified site +C2872429|T037|HT|T23.60|ICD10CM|Corrosion of second degree of hand, unspecified site|Corrosion of second degree of hand, unspecified site +C2872430|T037|AB|T23.601|ICD10CM|Corrosion of second degree of right hand, unspecified site|Corrosion of second degree of right hand, unspecified site +C2872430|T037|HT|T23.601|ICD10CM|Corrosion of second degree of right hand, unspecified site|Corrosion of second degree of right hand, unspecified site +C2872431|T037|AB|T23.601A|ICD10CM|Corrosion of second degree of right hand, unsp site, init|Corrosion of second degree of right hand, unsp site, init +C2872431|T037|PT|T23.601A|ICD10CM|Corrosion of second degree of right hand, unspecified site, initial encounter|Corrosion of second degree of right hand, unspecified site, initial encounter +C2872432|T037|AB|T23.601D|ICD10CM|Corrosion of second degree of right hand, unsp site, subs|Corrosion of second degree of right hand, unsp site, subs +C2872432|T037|PT|T23.601D|ICD10CM|Corrosion of second degree of right hand, unspecified site, subsequent encounter|Corrosion of second degree of right hand, unspecified site, subsequent encounter +C2872433|T037|AB|T23.601S|ICD10CM|Corrosion of second degree of right hand, unsp site, sequela|Corrosion of second degree of right hand, unsp site, sequela +C2872433|T037|PT|T23.601S|ICD10CM|Corrosion of second degree of right hand, unspecified site, sequela|Corrosion of second degree of right hand, unspecified site, sequela +C2872434|T037|AB|T23.602|ICD10CM|Corrosion of second degree of left hand, unspecified site|Corrosion of second degree of left hand, unspecified site +C2872434|T037|HT|T23.602|ICD10CM|Corrosion of second degree of left hand, unspecified site|Corrosion of second degree of left hand, unspecified site +C2872435|T037|AB|T23.602A|ICD10CM|Corrosion of second degree of left hand, unsp site, init|Corrosion of second degree of left hand, unsp site, init +C2872435|T037|PT|T23.602A|ICD10CM|Corrosion of second degree of left hand, unspecified site, initial encounter|Corrosion of second degree of left hand, unspecified site, initial encounter +C2872436|T037|AB|T23.602D|ICD10CM|Corrosion of second degree of left hand, unsp site, subs|Corrosion of second degree of left hand, unsp site, subs +C2872436|T037|PT|T23.602D|ICD10CM|Corrosion of second degree of left hand, unspecified site, subsequent encounter|Corrosion of second degree of left hand, unspecified site, subsequent encounter +C2872437|T037|AB|T23.602S|ICD10CM|Corrosion of second degree of left hand, unsp site, sequela|Corrosion of second degree of left hand, unsp site, sequela +C2872437|T037|PT|T23.602S|ICD10CM|Corrosion of second degree of left hand, unspecified site, sequela|Corrosion of second degree of left hand, unspecified site, sequela +C2872438|T037|AB|T23.609|ICD10CM|Corrosion of second degree of unsp hand, unspecified site|Corrosion of second degree of unsp hand, unspecified site +C2872438|T037|HT|T23.609|ICD10CM|Corrosion of second degree of unspecified hand, unspecified site|Corrosion of second degree of unspecified hand, unspecified site +C2872439|T037|AB|T23.609A|ICD10CM|Corrosion of second degree of unsp hand, unsp site, init|Corrosion of second degree of unsp hand, unsp site, init +C2872439|T037|PT|T23.609A|ICD10CM|Corrosion of second degree of unspecified hand, unspecified site, initial encounter|Corrosion of second degree of unspecified hand, unspecified site, initial encounter +C2872440|T037|AB|T23.609D|ICD10CM|Corrosion of second degree of unsp hand, unsp site, subs|Corrosion of second degree of unsp hand, unsp site, subs +C2872440|T037|PT|T23.609D|ICD10CM|Corrosion of second degree of unspecified hand, unspecified site, subsequent encounter|Corrosion of second degree of unspecified hand, unspecified site, subsequent encounter +C2872441|T037|AB|T23.609S|ICD10CM|Corrosion of second degree of unsp hand, unsp site, sequela|Corrosion of second degree of unsp hand, unsp site, sequela +C2872441|T037|PT|T23.609S|ICD10CM|Corrosion of second degree of unspecified hand, unspecified site, sequela|Corrosion of second degree of unspecified hand, unspecified site, sequela +C2872442|T037|AB|T23.61|ICD10CM|Corrosion of second degree of thumb (nail)|Corrosion of second degree of thumb (nail) +C2872442|T037|HT|T23.61|ICD10CM|Corrosion of second degree of thumb (nail)|Corrosion of second degree of thumb (nail) +C2872443|T037|AB|T23.611|ICD10CM|Corrosion of second degree of right thumb (nail)|Corrosion of second degree of right thumb (nail) +C2872443|T037|HT|T23.611|ICD10CM|Corrosion of second degree of right thumb (nail)|Corrosion of second degree of right thumb (nail) +C2872444|T037|AB|T23.611A|ICD10CM|Corrosion of second degree of right thumb (nail), init|Corrosion of second degree of right thumb (nail), init +C2872444|T037|PT|T23.611A|ICD10CM|Corrosion of second degree of right thumb (nail), initial encounter|Corrosion of second degree of right thumb (nail), initial encounter +C2872445|T037|AB|T23.611D|ICD10CM|Corrosion of second degree of right thumb (nail), subs|Corrosion of second degree of right thumb (nail), subs +C2872445|T037|PT|T23.611D|ICD10CM|Corrosion of second degree of right thumb (nail), subsequent encounter|Corrosion of second degree of right thumb (nail), subsequent encounter +C2872446|T037|PT|T23.611S|ICD10CM|Corrosion of second degree of right thumb (nail), sequela|Corrosion of second degree of right thumb (nail), sequela +C2872446|T037|AB|T23.611S|ICD10CM|Corrosion of second degree of right thumb (nail), sequela|Corrosion of second degree of right thumb (nail), sequela +C2872447|T037|AB|T23.612|ICD10CM|Corrosion of second degree of left thumb (nail)|Corrosion of second degree of left thumb (nail) +C2872447|T037|HT|T23.612|ICD10CM|Corrosion of second degree of left thumb (nail)|Corrosion of second degree of left thumb (nail) +C2872448|T037|AB|T23.612A|ICD10CM|Corrosion of second degree of left thumb (nail), init encntr|Corrosion of second degree of left thumb (nail), init encntr +C2872448|T037|PT|T23.612A|ICD10CM|Corrosion of second degree of left thumb (nail), initial encounter|Corrosion of second degree of left thumb (nail), initial encounter +C2872449|T037|AB|T23.612D|ICD10CM|Corrosion of second degree of left thumb (nail), subs encntr|Corrosion of second degree of left thumb (nail), subs encntr +C2872449|T037|PT|T23.612D|ICD10CM|Corrosion of second degree of left thumb (nail), subsequent encounter|Corrosion of second degree of left thumb (nail), subsequent encounter +C2872450|T037|PT|T23.612S|ICD10CM|Corrosion of second degree of left thumb (nail), sequela|Corrosion of second degree of left thumb (nail), sequela +C2872450|T037|AB|T23.612S|ICD10CM|Corrosion of second degree of left thumb (nail), sequela|Corrosion of second degree of left thumb (nail), sequela +C2872451|T037|AB|T23.619|ICD10CM|Corrosion of second degree of unspecified thumb (nail)|Corrosion of second degree of unspecified thumb (nail) +C2872451|T037|HT|T23.619|ICD10CM|Corrosion of second degree of unspecified thumb (nail)|Corrosion of second degree of unspecified thumb (nail) +C2872452|T037|AB|T23.619A|ICD10CM|Corrosion of second degree of unsp thumb (nail), init encntr|Corrosion of second degree of unsp thumb (nail), init encntr +C2872452|T037|PT|T23.619A|ICD10CM|Corrosion of second degree of unspecified thumb (nail), initial encounter|Corrosion of second degree of unspecified thumb (nail), initial encounter +C2872453|T037|AB|T23.619D|ICD10CM|Corrosion of second degree of unsp thumb (nail), subs encntr|Corrosion of second degree of unsp thumb (nail), subs encntr +C2872453|T037|PT|T23.619D|ICD10CM|Corrosion of second degree of unspecified thumb (nail), subsequent encounter|Corrosion of second degree of unspecified thumb (nail), subsequent encounter +C2872454|T037|AB|T23.619S|ICD10CM|Corrosion of second degree of unsp thumb (nail), sequela|Corrosion of second degree of unsp thumb (nail), sequela +C2872454|T037|PT|T23.619S|ICD10CM|Corrosion of second degree of unspecified thumb (nail), sequela|Corrosion of second degree of unspecified thumb (nail), sequela +C2872455|T037|AB|T23.62|ICD10CM|Corros second degree of single finger (nail) except thumb|Corros second degree of single finger (nail) except thumb +C2872455|T037|HT|T23.62|ICD10CM|Corrosion of second degree of single finger (nail) except thumb|Corrosion of second degree of single finger (nail) except thumb +C2872456|T037|AB|T23.621|ICD10CM|Corros second degree of single r finger (nail) except thumb|Corros second degree of single r finger (nail) except thumb +C2872456|T037|HT|T23.621|ICD10CM|Corrosion of second degree of single right finger (nail) except thumb|Corrosion of second degree of single right finger (nail) except thumb +C2872457|T037|AB|T23.621A|ICD10CM|Corros second degree of single r finger except thumb, init|Corros second degree of single r finger except thumb, init +C2872457|T037|PT|T23.621A|ICD10CM|Corrosion of second degree of single right finger (nail) except thumb, initial encounter|Corrosion of second degree of single right finger (nail) except thumb, initial encounter +C2872458|T037|AB|T23.621D|ICD10CM|Corros second degree of single r finger except thumb, subs|Corros second degree of single r finger except thumb, subs +C2872458|T037|PT|T23.621D|ICD10CM|Corrosion of second degree of single right finger (nail) except thumb, subsequent encounter|Corrosion of second degree of single right finger (nail) except thumb, subsequent encounter +C2872459|T037|AB|T23.621S|ICD10CM|Corros second degree of single r finger except thumb, sqla|Corros second degree of single r finger except thumb, sqla +C2872459|T037|PT|T23.621S|ICD10CM|Corrosion of second degree of single right finger (nail) except thumb, sequela|Corrosion of second degree of single right finger (nail) except thumb, sequela +C2872460|T037|AB|T23.622|ICD10CM|Corros second degree of single l finger (nail) except thumb|Corros second degree of single l finger (nail) except thumb +C2872460|T037|HT|T23.622|ICD10CM|Corrosion of second degree of single left finger (nail) except thumb|Corrosion of second degree of single left finger (nail) except thumb +C2872461|T037|AB|T23.622A|ICD10CM|Corros second degree of single l finger except thumb, init|Corros second degree of single l finger except thumb, init +C2872461|T037|PT|T23.622A|ICD10CM|Corrosion of second degree of single left finger (nail) except thumb, initial encounter|Corrosion of second degree of single left finger (nail) except thumb, initial encounter +C2872462|T037|AB|T23.622D|ICD10CM|Corros second degree of single l finger except thumb, subs|Corros second degree of single l finger except thumb, subs +C2872462|T037|PT|T23.622D|ICD10CM|Corrosion of second degree of single left finger (nail) except thumb, subsequent encounter|Corrosion of second degree of single left finger (nail) except thumb, subsequent encounter +C2872463|T037|AB|T23.622S|ICD10CM|Corros second degree of single l finger except thumb, sqla|Corros second degree of single l finger except thumb, sqla +C2872463|T037|PT|T23.622S|ICD10CM|Corrosion of second degree of single left finger (nail) except thumb, sequela|Corrosion of second degree of single left finger (nail) except thumb, sequela +C2872464|T037|AB|T23.629|ICD10CM|Corros second degree of unsp single finger except thumb|Corros second degree of unsp single finger except thumb +C2872464|T037|HT|T23.629|ICD10CM|Corrosion of second degree of unspecified single finger (nail) except thumb|Corrosion of second degree of unspecified single finger (nail) except thumb +C2872465|T037|AB|T23.629A|ICD10CM|Corros second deg of unsp single finger except thumb, init|Corros second deg of unsp single finger except thumb, init +C2872465|T037|PT|T23.629A|ICD10CM|Corrosion of second degree of unspecified single finger (nail) except thumb, initial encounter|Corrosion of second degree of unspecified single finger (nail) except thumb, initial encounter +C2872466|T037|AB|T23.629D|ICD10CM|Corros second deg of unsp single finger except thumb, subs|Corros second deg of unsp single finger except thumb, subs +C2872466|T037|PT|T23.629D|ICD10CM|Corrosion of second degree of unspecified single finger (nail) except thumb, subsequent encounter|Corrosion of second degree of unspecified single finger (nail) except thumb, subsequent encounter +C2872467|T037|AB|T23.629S|ICD10CM|Corros second deg of unsp single finger except thumb, sqla|Corros second deg of unsp single finger except thumb, sqla +C2872467|T037|PT|T23.629S|ICD10CM|Corrosion of second degree of unspecified single finger (nail) except thumb, sequela|Corrosion of second degree of unspecified single finger (nail) except thumb, sequela +C2872468|T037|AB|T23.63|ICD10CM|Corrosion of 2nd deg mul fingers (nail), not including thumb|Corrosion of 2nd deg mul fingers (nail), not including thumb +C2872468|T037|HT|T23.63|ICD10CM|Corrosion of second degree of multiple fingers (nail), not including thumb|Corrosion of second degree of multiple fingers (nail), not including thumb +C2872469|T037|AB|T23.631|ICD10CM|Corros 2nd deg mul right fingers (nail), not including thumb|Corros 2nd deg mul right fingers (nail), not including thumb +C2872469|T037|HT|T23.631|ICD10CM|Corrosion of second degree of multiple right fingers (nail), not including thumb|Corrosion of second degree of multiple right fingers (nail), not including thumb +C2872470|T037|AB|T23.631A|ICD10CM|Corros 2nd deg mul right fingers (nail), not inc thumb, init|Corros 2nd deg mul right fingers (nail), not inc thumb, init +C2872470|T037|PT|T23.631A|ICD10CM|Corrosion of second degree of multiple right fingers (nail), not including thumb, initial encounter|Corrosion of second degree of multiple right fingers (nail), not including thumb, initial encounter +C2872471|T037|AB|T23.631D|ICD10CM|Corros 2nd deg mul right fingers (nail), not inc thumb, subs|Corros 2nd deg mul right fingers (nail), not inc thumb, subs +C2872472|T037|AB|T23.631S|ICD10CM|Corros 2nd deg mul right fngr (nail), not inc thumb, sequela|Corros 2nd deg mul right fngr (nail), not inc thumb, sequela +C2872472|T037|PT|T23.631S|ICD10CM|Corrosion of second degree of multiple right fingers (nail), not including thumb, sequela|Corrosion of second degree of multiple right fingers (nail), not including thumb, sequela +C2872473|T037|AB|T23.632|ICD10CM|Corros 2nd deg mul left fingers (nail), not including thumb|Corros 2nd deg mul left fingers (nail), not including thumb +C2872473|T037|HT|T23.632|ICD10CM|Corrosion of second degree of multiple left fingers (nail), not including thumb|Corrosion of second degree of multiple left fingers (nail), not including thumb +C2872474|T037|AB|T23.632A|ICD10CM|Corros 2nd deg mul left fingers (nail), not inc thumb, init|Corros 2nd deg mul left fingers (nail), not inc thumb, init +C2872474|T037|PT|T23.632A|ICD10CM|Corrosion of second degree of multiple left fingers (nail), not including thumb, initial encounter|Corrosion of second degree of multiple left fingers (nail), not including thumb, initial encounter +C2872475|T037|AB|T23.632D|ICD10CM|Corros 2nd deg mul left fingers (nail), not inc thumb, subs|Corros 2nd deg mul left fingers (nail), not inc thumb, subs +C2872476|T037|AB|T23.632S|ICD10CM|Corros 2nd deg mul left fngr (nail), not inc thumb, sequela|Corros 2nd deg mul left fngr (nail), not inc thumb, sequela +C2872476|T037|PT|T23.632S|ICD10CM|Corrosion of second degree of multiple left fingers (nail), not including thumb, sequela|Corrosion of second degree of multiple left fingers (nail), not including thumb, sequela +C2872477|T037|AB|T23.639|ICD10CM|Corros second degree of unsp mult fngr (nail), not inc thumb|Corros second degree of unsp mult fngr (nail), not inc thumb +C2872477|T037|HT|T23.639|ICD10CM|Corrosion of second degree of unspecified multiple fingers (nail), not including thumb|Corrosion of second degree of unspecified multiple fingers (nail), not including thumb +C2872478|T037|AB|T23.639A|ICD10CM|Corros second degree of unsp mult fngr, not inc thumb, init|Corros second degree of unsp mult fngr, not inc thumb, init +C2872479|T037|AB|T23.639D|ICD10CM|Corros second degree of unsp mult fngr, not inc thumb, subs|Corros second degree of unsp mult fngr, not inc thumb, subs +C2872480|T037|AB|T23.639S|ICD10CM|Corros second degree of unsp mult fngr, not inc thumb, sqla|Corros second degree of unsp mult fngr, not inc thumb, sqla +C2872480|T037|PT|T23.639S|ICD10CM|Corrosion of second degree of unspecified multiple fingers (nail), not including thumb, sequela|Corrosion of second degree of unspecified multiple fingers (nail), not including thumb, sequela +C2872481|T037|AB|T23.64|ICD10CM|Corrosion of 2nd deg mul fingers (nail), including thumb|Corrosion of 2nd deg mul fingers (nail), including thumb +C2872481|T037|HT|T23.64|ICD10CM|Corrosion of second degree of multiple fingers (nail), including thumb|Corrosion of second degree of multiple fingers (nail), including thumb +C2872482|T037|AB|T23.641|ICD10CM|Corros 2nd deg mul right fingers (nail), including thumb|Corros 2nd deg mul right fingers (nail), including thumb +C2872482|T037|HT|T23.641|ICD10CM|Corrosion of second degree of multiple right fingers (nail), including thumb|Corrosion of second degree of multiple right fingers (nail), including thumb +C2872483|T037|AB|T23.641A|ICD10CM|Corros 2nd deg mul right fingers (nail), inc thumb, init|Corros 2nd deg mul right fingers (nail), inc thumb, init +C2872483|T037|PT|T23.641A|ICD10CM|Corrosion of second degree of multiple right fingers (nail), including thumb, initial encounter|Corrosion of second degree of multiple right fingers (nail), including thumb, initial encounter +C2872484|T037|AB|T23.641D|ICD10CM|Corros 2nd deg mul right fingers (nail), inc thumb, subs|Corros 2nd deg mul right fingers (nail), inc thumb, subs +C2872484|T037|PT|T23.641D|ICD10CM|Corrosion of second degree of multiple right fingers (nail), including thumb, subsequent encounter|Corrosion of second degree of multiple right fingers (nail), including thumb, subsequent encounter +C2872485|T037|AB|T23.641S|ICD10CM|Corros 2nd deg mul right fingers (nail), inc thumb, sequela|Corros 2nd deg mul right fingers (nail), inc thumb, sequela +C2872485|T037|PT|T23.641S|ICD10CM|Corrosion of second degree of multiple right fingers (nail), including thumb, sequela|Corrosion of second degree of multiple right fingers (nail), including thumb, sequela +C2872486|T037|AB|T23.642|ICD10CM|Corros 2nd deg mul left fingers (nail), including thumb|Corros 2nd deg mul left fingers (nail), including thumb +C2872486|T037|HT|T23.642|ICD10CM|Corrosion of second degree of multiple left fingers (nail), including thumb|Corrosion of second degree of multiple left fingers (nail), including thumb +C2872487|T037|AB|T23.642A|ICD10CM|Corros 2nd deg mul left fingers (nail), inc thumb, init|Corros 2nd deg mul left fingers (nail), inc thumb, init +C2872487|T037|PT|T23.642A|ICD10CM|Corrosion of second degree of multiple left fingers (nail), including thumb, initial encounter|Corrosion of second degree of multiple left fingers (nail), including thumb, initial encounter +C2872488|T037|AB|T23.642D|ICD10CM|Corros 2nd deg mul left fingers (nail), inc thumb, subs|Corros 2nd deg mul left fingers (nail), inc thumb, subs +C2872488|T037|PT|T23.642D|ICD10CM|Corrosion of second degree of multiple left fingers (nail), including thumb, subsequent encounter|Corrosion of second degree of multiple left fingers (nail), including thumb, subsequent encounter +C2872489|T037|AB|T23.642S|ICD10CM|Corros 2nd deg mul left fingers (nail), inc thumb, sequela|Corros 2nd deg mul left fingers (nail), inc thumb, sequela +C2872489|T037|PT|T23.642S|ICD10CM|Corrosion of second degree of multiple left fingers (nail), including thumb, sequela|Corrosion of second degree of multiple left fingers (nail), including thumb, sequela +C2872490|T037|AB|T23.649|ICD10CM|Corros second degree of unsp mult fingers (nail), inc thumb|Corros second degree of unsp mult fingers (nail), inc thumb +C2872490|T037|HT|T23.649|ICD10CM|Corrosion of second degree of unspecified multiple fingers (nail), including thumb|Corrosion of second degree of unspecified multiple fingers (nail), including thumb +C2872491|T037|AB|T23.649A|ICD10CM|Corros second degree of unsp mult fngr, inc thumb, init|Corros second degree of unsp mult fngr, inc thumb, init +C2872492|T037|AB|T23.649D|ICD10CM|Corros second degree of unsp mult fngr, inc thumb, subs|Corros second degree of unsp mult fngr, inc thumb, subs +C2872493|T037|AB|T23.649S|ICD10CM|Corros second degree of unsp mult fngr, inc thumb, sqla|Corros second degree of unsp mult fngr, inc thumb, sqla +C2872493|T037|PT|T23.649S|ICD10CM|Corrosion of second degree of unspecified multiple fingers (nail), including thumb, sequela|Corrosion of second degree of unspecified multiple fingers (nail), including thumb, sequela +C2872494|T037|AB|T23.65|ICD10CM|Corrosion of second degree of palm|Corrosion of second degree of palm +C2872494|T037|HT|T23.65|ICD10CM|Corrosion of second degree of palm|Corrosion of second degree of palm +C2872495|T037|AB|T23.651|ICD10CM|Corrosion of second degree of right palm|Corrosion of second degree of right palm +C2872495|T037|HT|T23.651|ICD10CM|Corrosion of second degree of right palm|Corrosion of second degree of right palm +C2872496|T037|PT|T23.651A|ICD10CM|Corrosion of second degree of right palm, initial encounter|Corrosion of second degree of right palm, initial encounter +C2872496|T037|AB|T23.651A|ICD10CM|Corrosion of second degree of right palm, initial encounter|Corrosion of second degree of right palm, initial encounter +C2872497|T037|AB|T23.651D|ICD10CM|Corrosion of second degree of right palm, subs encntr|Corrosion of second degree of right palm, subs encntr +C2872497|T037|PT|T23.651D|ICD10CM|Corrosion of second degree of right palm, subsequent encounter|Corrosion of second degree of right palm, subsequent encounter +C2872498|T037|PT|T23.651S|ICD10CM|Corrosion of second degree of right palm, sequela|Corrosion of second degree of right palm, sequela +C2872498|T037|AB|T23.651S|ICD10CM|Corrosion of second degree of right palm, sequela|Corrosion of second degree of right palm, sequela +C2872499|T037|AB|T23.652|ICD10CM|Corrosion of second degree of left palm|Corrosion of second degree of left palm +C2872499|T037|HT|T23.652|ICD10CM|Corrosion of second degree of left palm|Corrosion of second degree of left palm +C2872500|T037|PT|T23.652A|ICD10CM|Corrosion of second degree of left palm, initial encounter|Corrosion of second degree of left palm, initial encounter +C2872500|T037|AB|T23.652A|ICD10CM|Corrosion of second degree of left palm, initial encounter|Corrosion of second degree of left palm, initial encounter +C2872501|T037|AB|T23.652D|ICD10CM|Corrosion of second degree of left palm, subs encntr|Corrosion of second degree of left palm, subs encntr +C2872501|T037|PT|T23.652D|ICD10CM|Corrosion of second degree of left palm, subsequent encounter|Corrosion of second degree of left palm, subsequent encounter +C2872502|T037|PT|T23.652S|ICD10CM|Corrosion of second degree of left palm, sequela|Corrosion of second degree of left palm, sequela +C2872502|T037|AB|T23.652S|ICD10CM|Corrosion of second degree of left palm, sequela|Corrosion of second degree of left palm, sequela +C2872503|T037|AB|T23.659|ICD10CM|Corrosion of second degree of unspecified palm|Corrosion of second degree of unspecified palm +C2872503|T037|HT|T23.659|ICD10CM|Corrosion of second degree of unspecified palm|Corrosion of second degree of unspecified palm +C2872504|T037|AB|T23.659A|ICD10CM|Corrosion of second degree of unspecified palm, init encntr|Corrosion of second degree of unspecified palm, init encntr +C2872504|T037|PT|T23.659A|ICD10CM|Corrosion of second degree of unspecified palm, initial encounter|Corrosion of second degree of unspecified palm, initial encounter +C2872505|T037|AB|T23.659D|ICD10CM|Corrosion of second degree of unspecified palm, subs encntr|Corrosion of second degree of unspecified palm, subs encntr +C2872505|T037|PT|T23.659D|ICD10CM|Corrosion of second degree of unspecified palm, subsequent encounter|Corrosion of second degree of unspecified palm, subsequent encounter +C2872506|T037|PT|T23.659S|ICD10CM|Corrosion of second degree of unspecified palm, sequela|Corrosion of second degree of unspecified palm, sequela +C2872506|T037|AB|T23.659S|ICD10CM|Corrosion of second degree of unspecified palm, sequela|Corrosion of second degree of unspecified palm, sequela +C2872507|T037|AB|T23.66|ICD10CM|Corrosion of second degree of back of hand|Corrosion of second degree of back of hand +C2872507|T037|HT|T23.66|ICD10CM|Corrosion of second degree of back of hand|Corrosion of second degree of back of hand +C2872508|T037|AB|T23.661|ICD10CM|Corrosion of second degree back of right hand|Corrosion of second degree back of right hand +C2872508|T037|HT|T23.661|ICD10CM|Corrosion of second degree back of right hand|Corrosion of second degree back of right hand +C2872509|T037|AB|T23.661A|ICD10CM|Corrosion of second degree back of right hand, init encntr|Corrosion of second degree back of right hand, init encntr +C2872509|T037|PT|T23.661A|ICD10CM|Corrosion of second degree back of right hand, initial encounter|Corrosion of second degree back of right hand, initial encounter +C2872510|T037|AB|T23.661D|ICD10CM|Corrosion of second degree back of right hand, subs encntr|Corrosion of second degree back of right hand, subs encntr +C2872510|T037|PT|T23.661D|ICD10CM|Corrosion of second degree back of right hand, subsequent encounter|Corrosion of second degree back of right hand, subsequent encounter +C2872511|T037|AB|T23.661S|ICD10CM|Corrosion of second degree back of right hand, sequela|Corrosion of second degree back of right hand, sequela +C2872511|T037|PT|T23.661S|ICD10CM|Corrosion of second degree back of right hand, sequela|Corrosion of second degree back of right hand, sequela +C2872512|T037|AB|T23.662|ICD10CM|Corrosion of second degree back of left hand|Corrosion of second degree back of left hand +C2872512|T037|HT|T23.662|ICD10CM|Corrosion of second degree back of left hand|Corrosion of second degree back of left hand +C2872513|T037|AB|T23.662A|ICD10CM|Corrosion of second degree back of left hand, init encntr|Corrosion of second degree back of left hand, init encntr +C2872513|T037|PT|T23.662A|ICD10CM|Corrosion of second degree back of left hand, initial encounter|Corrosion of second degree back of left hand, initial encounter +C2872514|T037|AB|T23.662D|ICD10CM|Corrosion of second degree back of left hand, subs encntr|Corrosion of second degree back of left hand, subs encntr +C2872514|T037|PT|T23.662D|ICD10CM|Corrosion of second degree back of left hand, subsequent encounter|Corrosion of second degree back of left hand, subsequent encounter +C2872515|T037|AB|T23.662S|ICD10CM|Corrosion of second degree back of left hand, sequela|Corrosion of second degree back of left hand, sequela +C2872515|T037|PT|T23.662S|ICD10CM|Corrosion of second degree back of left hand, sequela|Corrosion of second degree back of left hand, sequela +C2872516|T037|AB|T23.669|ICD10CM|Corrosion of second degree back of unspecified hand|Corrosion of second degree back of unspecified hand +C2872516|T037|HT|T23.669|ICD10CM|Corrosion of second degree back of unspecified hand|Corrosion of second degree back of unspecified hand +C2872517|T037|AB|T23.669A|ICD10CM|Corrosion of second degree back of unsp hand, init encntr|Corrosion of second degree back of unsp hand, init encntr +C2872517|T037|PT|T23.669A|ICD10CM|Corrosion of second degree back of unspecified hand, initial encounter|Corrosion of second degree back of unspecified hand, initial encounter +C2872518|T037|AB|T23.669D|ICD10CM|Corrosion of second degree back of unsp hand, subs encntr|Corrosion of second degree back of unsp hand, subs encntr +C2872518|T037|PT|T23.669D|ICD10CM|Corrosion of second degree back of unspecified hand, subsequent encounter|Corrosion of second degree back of unspecified hand, subsequent encounter +C2872519|T037|AB|T23.669S|ICD10CM|Corrosion of second degree back of unspecified hand, sequela|Corrosion of second degree back of unspecified hand, sequela +C2872519|T037|PT|T23.669S|ICD10CM|Corrosion of second degree back of unspecified hand, sequela|Corrosion of second degree back of unspecified hand, sequela +C2872520|T037|AB|T23.67|ICD10CM|Corrosion of second degree of wrist|Corrosion of second degree of wrist +C2872520|T037|HT|T23.67|ICD10CM|Corrosion of second degree of wrist|Corrosion of second degree of wrist +C2872521|T037|AB|T23.671|ICD10CM|Corrosion of second degree of right wrist|Corrosion of second degree of right wrist +C2872521|T037|HT|T23.671|ICD10CM|Corrosion of second degree of right wrist|Corrosion of second degree of right wrist +C2872522|T037|AB|T23.671A|ICD10CM|Corrosion of second degree of right wrist, initial encounter|Corrosion of second degree of right wrist, initial encounter +C2872522|T037|PT|T23.671A|ICD10CM|Corrosion of second degree of right wrist, initial encounter|Corrosion of second degree of right wrist, initial encounter +C2872523|T037|AB|T23.671D|ICD10CM|Corrosion of second degree of right wrist, subs encntr|Corrosion of second degree of right wrist, subs encntr +C2872523|T037|PT|T23.671D|ICD10CM|Corrosion of second degree of right wrist, subsequent encounter|Corrosion of second degree of right wrist, subsequent encounter +C2872524|T037|PT|T23.671S|ICD10CM|Corrosion of second degree of right wrist, sequela|Corrosion of second degree of right wrist, sequela +C2872524|T037|AB|T23.671S|ICD10CM|Corrosion of second degree of right wrist, sequela|Corrosion of second degree of right wrist, sequela +C2872525|T037|AB|T23.672|ICD10CM|Corrosion of second degree of left wrist|Corrosion of second degree of left wrist +C2872525|T037|HT|T23.672|ICD10CM|Corrosion of second degree of left wrist|Corrosion of second degree of left wrist +C2872526|T037|PT|T23.672A|ICD10CM|Corrosion of second degree of left wrist, initial encounter|Corrosion of second degree of left wrist, initial encounter +C2872526|T037|AB|T23.672A|ICD10CM|Corrosion of second degree of left wrist, initial encounter|Corrosion of second degree of left wrist, initial encounter +C2872527|T037|AB|T23.672D|ICD10CM|Corrosion of second degree of left wrist, subs encntr|Corrosion of second degree of left wrist, subs encntr +C2872527|T037|PT|T23.672D|ICD10CM|Corrosion of second degree of left wrist, subsequent encounter|Corrosion of second degree of left wrist, subsequent encounter +C2872528|T037|PT|T23.672S|ICD10CM|Corrosion of second degree of left wrist, sequela|Corrosion of second degree of left wrist, sequela +C2872528|T037|AB|T23.672S|ICD10CM|Corrosion of second degree of left wrist, sequela|Corrosion of second degree of left wrist, sequela +C2872529|T037|AB|T23.679|ICD10CM|Corrosion of second degree of unspecified wrist|Corrosion of second degree of unspecified wrist +C2872529|T037|HT|T23.679|ICD10CM|Corrosion of second degree of unspecified wrist|Corrosion of second degree of unspecified wrist +C2872530|T037|AB|T23.679A|ICD10CM|Corrosion of second degree of unspecified wrist, init encntr|Corrosion of second degree of unspecified wrist, init encntr +C2872530|T037|PT|T23.679A|ICD10CM|Corrosion of second degree of unspecified wrist, initial encounter|Corrosion of second degree of unspecified wrist, initial encounter +C2872531|T037|AB|T23.679D|ICD10CM|Corrosion of second degree of unspecified wrist, subs encntr|Corrosion of second degree of unspecified wrist, subs encntr +C2872531|T037|PT|T23.679D|ICD10CM|Corrosion of second degree of unspecified wrist, subsequent encounter|Corrosion of second degree of unspecified wrist, subsequent encounter +C2872532|T037|PT|T23.679S|ICD10CM|Corrosion of second degree of unspecified wrist, sequela|Corrosion of second degree of unspecified wrist, sequela +C2872532|T037|AB|T23.679S|ICD10CM|Corrosion of second degree of unspecified wrist, sequela|Corrosion of second degree of unspecified wrist, sequela +C2872533|T037|AB|T23.69|ICD10CM|Corrosion of 2nd deg mul sites of wrist and hand|Corrosion of 2nd deg mul sites of wrist and hand +C2872533|T037|HT|T23.69|ICD10CM|Corrosion of second degree of multiple sites of wrist and hand|Corrosion of second degree of multiple sites of wrist and hand +C2872534|T037|AB|T23.691|ICD10CM|Corrosion of 2nd deg mul sites of right wrist and hand|Corrosion of 2nd deg mul sites of right wrist and hand +C2872534|T037|HT|T23.691|ICD10CM|Corrosion of second degree of multiple sites of right wrist and hand|Corrosion of second degree of multiple sites of right wrist and hand +C2872535|T037|AB|T23.691A|ICD10CM|Corrosion of 2nd deg mul sites of right wrist and hand, init|Corrosion of 2nd deg mul sites of right wrist and hand, init +C2872535|T037|PT|T23.691A|ICD10CM|Corrosion of second degree of multiple sites of right wrist and hand, initial encounter|Corrosion of second degree of multiple sites of right wrist and hand, initial encounter +C2872536|T037|AB|T23.691D|ICD10CM|Corrosion of 2nd deg mul sites of right wrist and hand, subs|Corrosion of 2nd deg mul sites of right wrist and hand, subs +C2872536|T037|PT|T23.691D|ICD10CM|Corrosion of second degree of multiple sites of right wrist and hand, subsequent encounter|Corrosion of second degree of multiple sites of right wrist and hand, subsequent encounter +C2872537|T037|AB|T23.691S|ICD10CM|Corrosion of 2nd deg mul sites of right wrs/hnd, sequela|Corrosion of 2nd deg mul sites of right wrs/hnd, sequela +C2872537|T037|PT|T23.691S|ICD10CM|Corrosion of second degree of multiple sites of right wrist and hand, sequela|Corrosion of second degree of multiple sites of right wrist and hand, sequela +C2872538|T037|AB|T23.692|ICD10CM|Corrosion of 2nd deg mul sites of left wrist and hand|Corrosion of 2nd deg mul sites of left wrist and hand +C2872538|T037|HT|T23.692|ICD10CM|Corrosion of second degree of multiple sites of left wrist and hand|Corrosion of second degree of multiple sites of left wrist and hand +C2872539|T037|AB|T23.692A|ICD10CM|Corrosion of 2nd deg mul sites of left wrist and hand, init|Corrosion of 2nd deg mul sites of left wrist and hand, init +C2872539|T037|PT|T23.692A|ICD10CM|Corrosion of second degree of multiple sites of left wrist and hand, initial encounter|Corrosion of second degree of multiple sites of left wrist and hand, initial encounter +C2872540|T037|AB|T23.692D|ICD10CM|Corrosion of 2nd deg mul sites of left wrist and hand, subs|Corrosion of 2nd deg mul sites of left wrist and hand, subs +C2872540|T037|PT|T23.692D|ICD10CM|Corrosion of second degree of multiple sites of left wrist and hand, subsequent encounter|Corrosion of second degree of multiple sites of left wrist and hand, subsequent encounter +C2872541|T037|AB|T23.692S|ICD10CM|Corrosion of 2nd deg mul sites of left wrs/hnd, sequela|Corrosion of 2nd deg mul sites of left wrs/hnd, sequela +C2872541|T037|PT|T23.692S|ICD10CM|Corrosion of second degree of multiple sites of left wrist and hand, sequela|Corrosion of second degree of multiple sites of left wrist and hand, sequela +C2872542|T037|AB|T23.699|ICD10CM|Corrosion of 2nd deg mul sites of unsp wrist and hand|Corrosion of 2nd deg mul sites of unsp wrist and hand +C2872542|T037|HT|T23.699|ICD10CM|Corrosion of second degree of multiple sites of unspecified wrist and hand|Corrosion of second degree of multiple sites of unspecified wrist and hand +C2872543|T037|AB|T23.699A|ICD10CM|Corrosion of 2nd deg mul sites of unsp wrist and hand, init|Corrosion of 2nd deg mul sites of unsp wrist and hand, init +C2872543|T037|PT|T23.699A|ICD10CM|Corrosion of second degree of multiple sites of unspecified wrist and hand, initial encounter|Corrosion of second degree of multiple sites of unspecified wrist and hand, initial encounter +C2872544|T037|AB|T23.699D|ICD10CM|Corrosion of 2nd deg mul sites of unsp wrist and hand, subs|Corrosion of 2nd deg mul sites of unsp wrist and hand, subs +C2872544|T037|PT|T23.699D|ICD10CM|Corrosion of second degree of multiple sites of unspecified wrist and hand, subsequent encounter|Corrosion of second degree of multiple sites of unspecified wrist and hand, subsequent encounter +C2872545|T037|AB|T23.699S|ICD10CM|Corrosion of 2nd deg mul sites of unsp wrs/hnd, sequela|Corrosion of 2nd deg mul sites of unsp wrs/hnd, sequela +C2872545|T037|PT|T23.699S|ICD10CM|Corrosion of second degree of multiple sites of unspecified wrist and hand, sequela|Corrosion of second degree of multiple sites of unspecified wrist and hand, sequela +C0452004|T037|PT|T23.7|ICD10|Corrosion of third degree of wrist and hand|Corrosion of third degree of wrist and hand +C0452004|T037|HT|T23.7|ICD10CM|Corrosion of third degree of wrist and hand|Corrosion of third degree of wrist and hand +C0452004|T037|AB|T23.7|ICD10CM|Corrosion of third degree of wrist and hand|Corrosion of third degree of wrist and hand +C2872546|T037|AB|T23.70|ICD10CM|Corrosion of third degree of hand, unspecified site|Corrosion of third degree of hand, unspecified site +C2872546|T037|HT|T23.70|ICD10CM|Corrosion of third degree of hand, unspecified site|Corrosion of third degree of hand, unspecified site +C2872547|T037|AB|T23.701|ICD10CM|Corrosion of third degree of right hand, unspecified site|Corrosion of third degree of right hand, unspecified site +C2872547|T037|HT|T23.701|ICD10CM|Corrosion of third degree of right hand, unspecified site|Corrosion of third degree of right hand, unspecified site +C2872548|T037|AB|T23.701A|ICD10CM|Corrosion of third degree of right hand, unsp site, init|Corrosion of third degree of right hand, unsp site, init +C2872548|T037|PT|T23.701A|ICD10CM|Corrosion of third degree of right hand, unspecified site, initial encounter|Corrosion of third degree of right hand, unspecified site, initial encounter +C2872549|T037|AB|T23.701D|ICD10CM|Corrosion of third degree of right hand, unsp site, subs|Corrosion of third degree of right hand, unsp site, subs +C2872549|T037|PT|T23.701D|ICD10CM|Corrosion of third degree of right hand, unspecified site, subsequent encounter|Corrosion of third degree of right hand, unspecified site, subsequent encounter +C2872550|T037|AB|T23.701S|ICD10CM|Corrosion of third degree of right hand, unsp site, sequela|Corrosion of third degree of right hand, unsp site, sequela +C2872550|T037|PT|T23.701S|ICD10CM|Corrosion of third degree of right hand, unspecified site, sequela|Corrosion of third degree of right hand, unspecified site, sequela +C2872551|T037|AB|T23.702|ICD10CM|Corrosion of third degree of left hand, unspecified site|Corrosion of third degree of left hand, unspecified site +C2872551|T037|HT|T23.702|ICD10CM|Corrosion of third degree of left hand, unspecified site|Corrosion of third degree of left hand, unspecified site +C2872552|T037|AB|T23.702A|ICD10CM|Corrosion of third degree of left hand, unsp site, init|Corrosion of third degree of left hand, unsp site, init +C2872552|T037|PT|T23.702A|ICD10CM|Corrosion of third degree of left hand, unspecified site, initial encounter|Corrosion of third degree of left hand, unspecified site, initial encounter +C2872553|T037|AB|T23.702D|ICD10CM|Corrosion of third degree of left hand, unsp site, subs|Corrosion of third degree of left hand, unsp site, subs +C2872553|T037|PT|T23.702D|ICD10CM|Corrosion of third degree of left hand, unspecified site, subsequent encounter|Corrosion of third degree of left hand, unspecified site, subsequent encounter +C2872554|T037|AB|T23.702S|ICD10CM|Corrosion of third degree of left hand, unsp site, sequela|Corrosion of third degree of left hand, unsp site, sequela +C2872554|T037|PT|T23.702S|ICD10CM|Corrosion of third degree of left hand, unspecified site, sequela|Corrosion of third degree of left hand, unspecified site, sequela +C2872555|T037|AB|T23.709|ICD10CM|Corrosion of third degree of unsp hand, unspecified site|Corrosion of third degree of unsp hand, unspecified site +C2872555|T037|HT|T23.709|ICD10CM|Corrosion of third degree of unspecified hand, unspecified site|Corrosion of third degree of unspecified hand, unspecified site +C2872556|T037|AB|T23.709A|ICD10CM|Corrosion of third degree of unsp hand, unsp site, init|Corrosion of third degree of unsp hand, unsp site, init +C2872556|T037|PT|T23.709A|ICD10CM|Corrosion of third degree of unspecified hand, unspecified site, initial encounter|Corrosion of third degree of unspecified hand, unspecified site, initial encounter +C2872557|T037|AB|T23.709D|ICD10CM|Corrosion of third degree of unsp hand, unsp site, subs|Corrosion of third degree of unsp hand, unsp site, subs +C2872557|T037|PT|T23.709D|ICD10CM|Corrosion of third degree of unspecified hand, unspecified site, subsequent encounter|Corrosion of third degree of unspecified hand, unspecified site, subsequent encounter +C2872558|T037|AB|T23.709S|ICD10CM|Corrosion of third degree of unsp hand, unsp site, sequela|Corrosion of third degree of unsp hand, unsp site, sequela +C2872558|T037|PT|T23.709S|ICD10CM|Corrosion of third degree of unspecified hand, unspecified site, sequela|Corrosion of third degree of unspecified hand, unspecified site, sequela +C2872559|T037|AB|T23.71|ICD10CM|Corrosion of third degree of thumb (nail)|Corrosion of third degree of thumb (nail) +C2872559|T037|HT|T23.71|ICD10CM|Corrosion of third degree of thumb (nail)|Corrosion of third degree of thumb (nail) +C2872560|T037|AB|T23.711|ICD10CM|Corrosion of third degree of right thumb (nail)|Corrosion of third degree of right thumb (nail) +C2872560|T037|HT|T23.711|ICD10CM|Corrosion of third degree of right thumb (nail)|Corrosion of third degree of right thumb (nail) +C2872561|T037|AB|T23.711A|ICD10CM|Corrosion of third degree of right thumb (nail), init encntr|Corrosion of third degree of right thumb (nail), init encntr +C2872561|T037|PT|T23.711A|ICD10CM|Corrosion of third degree of right thumb (nail), initial encounter|Corrosion of third degree of right thumb (nail), initial encounter +C2872562|T037|AB|T23.711D|ICD10CM|Corrosion of third degree of right thumb (nail), subs encntr|Corrosion of third degree of right thumb (nail), subs encntr +C2872562|T037|PT|T23.711D|ICD10CM|Corrosion of third degree of right thumb (nail), subsequent encounter|Corrosion of third degree of right thumb (nail), subsequent encounter +C2872563|T037|PT|T23.711S|ICD10CM|Corrosion of third degree of right thumb (nail), sequela|Corrosion of third degree of right thumb (nail), sequela +C2872563|T037|AB|T23.711S|ICD10CM|Corrosion of third degree of right thumb (nail), sequela|Corrosion of third degree of right thumb (nail), sequela +C2872564|T037|AB|T23.712|ICD10CM|Corrosion of third degree of left thumb (nail)|Corrosion of third degree of left thumb (nail) +C2872564|T037|HT|T23.712|ICD10CM|Corrosion of third degree of left thumb (nail)|Corrosion of third degree of left thumb (nail) +C2872565|T037|AB|T23.712A|ICD10CM|Corrosion of third degree of left thumb (nail), init encntr|Corrosion of third degree of left thumb (nail), init encntr +C2872565|T037|PT|T23.712A|ICD10CM|Corrosion of third degree of left thumb (nail), initial encounter|Corrosion of third degree of left thumb (nail), initial encounter +C2872566|T037|AB|T23.712D|ICD10CM|Corrosion of third degree of left thumb (nail), subs encntr|Corrosion of third degree of left thumb (nail), subs encntr +C2872566|T037|PT|T23.712D|ICD10CM|Corrosion of third degree of left thumb (nail), subsequent encounter|Corrosion of third degree of left thumb (nail), subsequent encounter +C2872567|T037|PT|T23.712S|ICD10CM|Corrosion of third degree of left thumb (nail), sequela|Corrosion of third degree of left thumb (nail), sequela +C2872567|T037|AB|T23.712S|ICD10CM|Corrosion of third degree of left thumb (nail), sequela|Corrosion of third degree of left thumb (nail), sequela +C2872568|T037|AB|T23.719|ICD10CM|Corrosion of third degree of unspecified thumb (nail)|Corrosion of third degree of unspecified thumb (nail) +C2872568|T037|HT|T23.719|ICD10CM|Corrosion of third degree of unspecified thumb (nail)|Corrosion of third degree of unspecified thumb (nail) +C2872569|T037|AB|T23.719A|ICD10CM|Corrosion of third degree of unsp thumb (nail), init encntr|Corrosion of third degree of unsp thumb (nail), init encntr +C2872569|T037|PT|T23.719A|ICD10CM|Corrosion of third degree of unspecified thumb (nail), initial encounter|Corrosion of third degree of unspecified thumb (nail), initial encounter +C2872570|T037|AB|T23.719D|ICD10CM|Corrosion of third degree of unsp thumb (nail), subs encntr|Corrosion of third degree of unsp thumb (nail), subs encntr +C2872570|T037|PT|T23.719D|ICD10CM|Corrosion of third degree of unspecified thumb (nail), subsequent encounter|Corrosion of third degree of unspecified thumb (nail), subsequent encounter +C2872571|T037|AB|T23.719S|ICD10CM|Corrosion of third degree of unsp thumb (nail), sequela|Corrosion of third degree of unsp thumb (nail), sequela +C2872571|T037|PT|T23.719S|ICD10CM|Corrosion of third degree of unspecified thumb (nail), sequela|Corrosion of third degree of unspecified thumb (nail), sequela +C2872572|T037|AB|T23.72|ICD10CM|Corros third degree of single finger (nail) except thumb|Corros third degree of single finger (nail) except thumb +C2872572|T037|HT|T23.72|ICD10CM|Corrosion of third degree of single finger (nail) except thumb|Corrosion of third degree of single finger (nail) except thumb +C2872573|T037|AB|T23.721|ICD10CM|Corros third degree of single r finger (nail) except thumb|Corros third degree of single r finger (nail) except thumb +C2872573|T037|HT|T23.721|ICD10CM|Corrosion of third degree of single right finger (nail) except thumb|Corrosion of third degree of single right finger (nail) except thumb +C2872574|T037|AB|T23.721A|ICD10CM|Corros third degree of single r finger except thumb, init|Corros third degree of single r finger except thumb, init +C2872574|T037|PT|T23.721A|ICD10CM|Corrosion of third degree of single right finger (nail) except thumb, initial encounter|Corrosion of third degree of single right finger (nail) except thumb, initial encounter +C2872575|T037|AB|T23.721D|ICD10CM|Corros third degree of single r finger except thumb, subs|Corros third degree of single r finger except thumb, subs +C2872575|T037|PT|T23.721D|ICD10CM|Corrosion of third degree of single right finger (nail) except thumb, subsequent encounter|Corrosion of third degree of single right finger (nail) except thumb, subsequent encounter +C2872576|T037|AB|T23.721S|ICD10CM|Corros third degree of single r finger except thumb, sqla|Corros third degree of single r finger except thumb, sqla +C2872576|T037|PT|T23.721S|ICD10CM|Corrosion of third degree of single right finger (nail) except thumb, sequela|Corrosion of third degree of single right finger (nail) except thumb, sequela +C2872577|T037|AB|T23.722|ICD10CM|Corros third degree of single l finger (nail) except thumb|Corros third degree of single l finger (nail) except thumb +C2872577|T037|HT|T23.722|ICD10CM|Corrosion of third degree of single left finger (nail) except thumb|Corrosion of third degree of single left finger (nail) except thumb +C2872578|T037|AB|T23.722A|ICD10CM|Corros third degree of single l finger except thumb, init|Corros third degree of single l finger except thumb, init +C2872578|T037|PT|T23.722A|ICD10CM|Corrosion of third degree of single left finger (nail) except thumb, initial encounter|Corrosion of third degree of single left finger (nail) except thumb, initial encounter +C2872579|T037|AB|T23.722D|ICD10CM|Corros third degree of single l finger except thumb, subs|Corros third degree of single l finger except thumb, subs +C2872579|T037|PT|T23.722D|ICD10CM|Corrosion of third degree of single left finger (nail) except thumb, subsequent encounter|Corrosion of third degree of single left finger (nail) except thumb, subsequent encounter +C2872580|T037|AB|T23.722S|ICD10CM|Corros third degree of single l finger except thumb, sqla|Corros third degree of single l finger except thumb, sqla +C2872580|T037|PT|T23.722S|ICD10CM|Corrosion of third degree of single left finger (nail) except thumb, sequela|Corrosion of third degree of single left finger (nail) except thumb, sequela +C2872581|T037|AB|T23.729|ICD10CM|Corros third degree of unsp single finger except thumb|Corros third degree of unsp single finger except thumb +C2872581|T037|HT|T23.729|ICD10CM|Corrosion of third degree of unspecified single finger (nail) except thumb|Corrosion of third degree of unspecified single finger (nail) except thumb +C2872582|T037|AB|T23.729A|ICD10CM|Corros third degree of unsp single finger except thumb, init|Corros third degree of unsp single finger except thumb, init +C2872582|T037|PT|T23.729A|ICD10CM|Corrosion of third degree of unspecified single finger (nail) except thumb, initial encounter|Corrosion of third degree of unspecified single finger (nail) except thumb, initial encounter +C2872583|T037|AB|T23.729D|ICD10CM|Corros third degree of unsp single finger except thumb, subs|Corros third degree of unsp single finger except thumb, subs +C2872583|T037|PT|T23.729D|ICD10CM|Corrosion of third degree of unspecified single finger (nail) except thumb, subsequent encounter|Corrosion of third degree of unspecified single finger (nail) except thumb, subsequent encounter +C2872584|T037|AB|T23.729S|ICD10CM|Corros third degree of unsp single finger except thumb, sqla|Corros third degree of unsp single finger except thumb, sqla +C2872584|T037|PT|T23.729S|ICD10CM|Corrosion of third degree of unspecified single finger (nail) except thumb, sequela|Corrosion of third degree of unspecified single finger (nail) except thumb, sequela +C2872585|T037|AB|T23.73|ICD10CM|Corrosion of 3rd deg mu fingers (nail), not including thumb|Corrosion of 3rd deg mu fingers (nail), not including thumb +C2872585|T037|HT|T23.73|ICD10CM|Corrosion of third degree of multiple fingers (nail), not including thumb|Corrosion of third degree of multiple fingers (nail), not including thumb +C2872586|T037|AB|T23.731|ICD10CM|Corros 3rd deg mu right fingers (nail), not including thumb|Corros 3rd deg mu right fingers (nail), not including thumb +C2872586|T037|HT|T23.731|ICD10CM|Corrosion of third degree of multiple right fingers (nail), not including thumb|Corrosion of third degree of multiple right fingers (nail), not including thumb +C2872587|T037|AB|T23.731A|ICD10CM|Corros 3rd deg mu right fingers (nail), not inc thumb, init|Corros 3rd deg mu right fingers (nail), not inc thumb, init +C2872587|T037|PT|T23.731A|ICD10CM|Corrosion of third degree of multiple right fingers (nail), not including thumb, initial encounter|Corrosion of third degree of multiple right fingers (nail), not including thumb, initial encounter +C2872588|T037|AB|T23.731D|ICD10CM|Corros 3rd deg mu right fingers (nail), not inc thumb, subs|Corros 3rd deg mu right fingers (nail), not inc thumb, subs +C2872589|T037|AB|T23.731S|ICD10CM|Corros 3rd deg mu right fngr (nail), not inc thumb, sequela|Corros 3rd deg mu right fngr (nail), not inc thumb, sequela +C2872589|T037|PT|T23.731S|ICD10CM|Corrosion of third degree of multiple right fingers (nail), not including thumb, sequela|Corrosion of third degree of multiple right fingers (nail), not including thumb, sequela +C2872590|T037|AB|T23.732|ICD10CM|Corros 3rd deg mu left fingers (nail), not including thumb|Corros 3rd deg mu left fingers (nail), not including thumb +C2872590|T037|HT|T23.732|ICD10CM|Corrosion of third degree of multiple left fingers (nail), not including thumb|Corrosion of third degree of multiple left fingers (nail), not including thumb +C2872591|T037|AB|T23.732A|ICD10CM|Corros 3rd deg mu left fingers (nail), not inc thumb, init|Corros 3rd deg mu left fingers (nail), not inc thumb, init +C2872591|T037|PT|T23.732A|ICD10CM|Corrosion of third degree of multiple left fingers (nail), not including thumb, initial encounter|Corrosion of third degree of multiple left fingers (nail), not including thumb, initial encounter +C2872592|T037|AB|T23.732D|ICD10CM|Corros 3rd deg mu left fingers (nail), not inc thumb, subs|Corros 3rd deg mu left fingers (nail), not inc thumb, subs +C2872592|T037|PT|T23.732D|ICD10CM|Corrosion of third degree of multiple left fingers (nail), not including thumb, subsequent encounter|Corrosion of third degree of multiple left fingers (nail), not including thumb, subsequent encounter +C2872593|T037|AB|T23.732S|ICD10CM|Corros 3rd deg mu left fngr (nail), not inc thumb, sequela|Corros 3rd deg mu left fngr (nail), not inc thumb, sequela +C2872593|T037|PT|T23.732S|ICD10CM|Corrosion of third degree of multiple left fingers (nail), not including thumb, sequela|Corrosion of third degree of multiple left fingers (nail), not including thumb, sequela +C2872594|T037|AB|T23.739|ICD10CM|Corros third degree of unsp mult fngr (nail), not inc thumb|Corros third degree of unsp mult fngr (nail), not inc thumb +C2872594|T037|HT|T23.739|ICD10CM|Corrosion of third degree of unspecified multiple fingers (nail), not including thumb|Corrosion of third degree of unspecified multiple fingers (nail), not including thumb +C2872595|T037|AB|T23.739A|ICD10CM|Corros third degree of unsp mult fngr, not inc thumb, init|Corros third degree of unsp mult fngr, not inc thumb, init +C2872596|T037|AB|T23.739D|ICD10CM|Corros third degree of unsp mult fngr, not inc thumb, subs|Corros third degree of unsp mult fngr, not inc thumb, subs +C2872597|T037|AB|T23.739S|ICD10CM|Corros third degree of unsp mult fngr, not inc thumb, sqla|Corros third degree of unsp mult fngr, not inc thumb, sqla +C2872597|T037|PT|T23.739S|ICD10CM|Corrosion of third degree of unspecified multiple fingers (nail), not including thumb, sequela|Corrosion of third degree of unspecified multiple fingers (nail), not including thumb, sequela +C2872598|T037|AB|T23.74|ICD10CM|Corrosion of 3rd deg mu fingers (nail), including thumb|Corrosion of 3rd deg mu fingers (nail), including thumb +C2872598|T037|HT|T23.74|ICD10CM|Corrosion of third degree of multiple fingers (nail), including thumb|Corrosion of third degree of multiple fingers (nail), including thumb +C2872599|T037|AB|T23.741|ICD10CM|Corros 3rd deg mu right fingers (nail), including thumb|Corros 3rd deg mu right fingers (nail), including thumb +C2872599|T037|HT|T23.741|ICD10CM|Corrosion of third degree of multiple right fingers (nail), including thumb|Corrosion of third degree of multiple right fingers (nail), including thumb +C2872600|T037|AB|T23.741A|ICD10CM|Corros 3rd deg mu right fingers (nail), inc thumb, init|Corros 3rd deg mu right fingers (nail), inc thumb, init +C2872600|T037|PT|T23.741A|ICD10CM|Corrosion of third degree of multiple right fingers (nail), including thumb, initial encounter|Corrosion of third degree of multiple right fingers (nail), including thumb, initial encounter +C2872601|T037|AB|T23.741D|ICD10CM|Corros 3rd deg mu right fingers (nail), inc thumb, subs|Corros 3rd deg mu right fingers (nail), inc thumb, subs +C2872601|T037|PT|T23.741D|ICD10CM|Corrosion of third degree of multiple right fingers (nail), including thumb, subsequent encounter|Corrosion of third degree of multiple right fingers (nail), including thumb, subsequent encounter +C2872602|T037|AB|T23.741S|ICD10CM|Corros 3rd deg mu right fingers (nail), inc thumb, sequela|Corros 3rd deg mu right fingers (nail), inc thumb, sequela +C2872602|T037|PT|T23.741S|ICD10CM|Corrosion of third degree of multiple right fingers (nail), including thumb, sequela|Corrosion of third degree of multiple right fingers (nail), including thumb, sequela +C2872603|T037|AB|T23.742|ICD10CM|Corrosion of 3rd deg mu left fingers (nail), including thumb|Corrosion of 3rd deg mu left fingers (nail), including thumb +C2872603|T037|HT|T23.742|ICD10CM|Corrosion of third degree of multiple left fingers (nail), including thumb|Corrosion of third degree of multiple left fingers (nail), including thumb +C2872604|T037|AB|T23.742A|ICD10CM|Corros 3rd deg mu left fingers (nail), including thumb, init|Corros 3rd deg mu left fingers (nail), including thumb, init +C2872604|T037|PT|T23.742A|ICD10CM|Corrosion of third degree of multiple left fingers (nail), including thumb, initial encounter|Corrosion of third degree of multiple left fingers (nail), including thumb, initial encounter +C2872605|T037|AB|T23.742D|ICD10CM|Corros 3rd deg mu left fingers (nail), including thumb, subs|Corros 3rd deg mu left fingers (nail), including thumb, subs +C2872605|T037|PT|T23.742D|ICD10CM|Corrosion of third degree of multiple left fingers (nail), including thumb, subsequent encounter|Corrosion of third degree of multiple left fingers (nail), including thumb, subsequent encounter +C2872606|T037|AB|T23.742S|ICD10CM|Corros 3rd deg mu left fingers (nail), inc thumb, sequela|Corros 3rd deg mu left fingers (nail), inc thumb, sequela +C2872606|T037|PT|T23.742S|ICD10CM|Corrosion of third degree of multiple left fingers (nail), including thumb, sequela|Corrosion of third degree of multiple left fingers (nail), including thumb, sequela +C2872607|T037|AB|T23.749|ICD10CM|Corros third degree of unsp mult fingers (nail), inc thumb|Corros third degree of unsp mult fingers (nail), inc thumb +C2872607|T037|HT|T23.749|ICD10CM|Corrosion of third degree of unspecified multiple fingers (nail), including thumb|Corrosion of third degree of unspecified multiple fingers (nail), including thumb +C2872608|T037|AB|T23.749A|ICD10CM|Corros third degree of unsp mult fngr, inc thumb, init|Corros third degree of unsp mult fngr, inc thumb, init +C2872608|T037|PT|T23.749A|ICD10CM|Corrosion of third degree of unspecified multiple fingers (nail), including thumb, initial encounter|Corrosion of third degree of unspecified multiple fingers (nail), including thumb, initial encounter +C2872609|T037|AB|T23.749D|ICD10CM|Corros third degree of unsp mult fngr, inc thumb, subs|Corros third degree of unsp mult fngr, inc thumb, subs +C2872610|T037|AB|T23.749S|ICD10CM|Corros third degree of unsp mult fngr, inc thumb, sqla|Corros third degree of unsp mult fngr, inc thumb, sqla +C2872610|T037|PT|T23.749S|ICD10CM|Corrosion of third degree of unspecified multiple fingers (nail), including thumb, sequela|Corrosion of third degree of unspecified multiple fingers (nail), including thumb, sequela +C2872611|T037|AB|T23.75|ICD10CM|Corrosion of third degree of palm|Corrosion of third degree of palm +C2872611|T037|HT|T23.75|ICD10CM|Corrosion of third degree of palm|Corrosion of third degree of palm +C2872612|T037|AB|T23.751|ICD10CM|Corrosion of third degree of right palm|Corrosion of third degree of right palm +C2872612|T037|HT|T23.751|ICD10CM|Corrosion of third degree of right palm|Corrosion of third degree of right palm +C2872613|T037|PT|T23.751A|ICD10CM|Corrosion of third degree of right palm, initial encounter|Corrosion of third degree of right palm, initial encounter +C2872613|T037|AB|T23.751A|ICD10CM|Corrosion of third degree of right palm, initial encounter|Corrosion of third degree of right palm, initial encounter +C2872614|T037|AB|T23.751D|ICD10CM|Corrosion of third degree of right palm, subs encntr|Corrosion of third degree of right palm, subs encntr +C2872614|T037|PT|T23.751D|ICD10CM|Corrosion of third degree of right palm, subsequent encounter|Corrosion of third degree of right palm, subsequent encounter +C2872615|T037|PT|T23.751S|ICD10CM|Corrosion of third degree of right palm, sequela|Corrosion of third degree of right palm, sequela +C2872615|T037|AB|T23.751S|ICD10CM|Corrosion of third degree of right palm, sequela|Corrosion of third degree of right palm, sequela +C2872616|T037|AB|T23.752|ICD10CM|Corrosion of third degree of left palm|Corrosion of third degree of left palm +C2872616|T037|HT|T23.752|ICD10CM|Corrosion of third degree of left palm|Corrosion of third degree of left palm +C2872617|T037|PT|T23.752A|ICD10CM|Corrosion of third degree of left palm, initial encounter|Corrosion of third degree of left palm, initial encounter +C2872617|T037|AB|T23.752A|ICD10CM|Corrosion of third degree of left palm, initial encounter|Corrosion of third degree of left palm, initial encounter +C2872618|T037|AB|T23.752D|ICD10CM|Corrosion of third degree of left palm, subsequent encounter|Corrosion of third degree of left palm, subsequent encounter +C2872618|T037|PT|T23.752D|ICD10CM|Corrosion of third degree of left palm, subsequent encounter|Corrosion of third degree of left palm, subsequent encounter +C2872619|T037|PT|T23.752S|ICD10CM|Corrosion of third degree of left palm, sequela|Corrosion of third degree of left palm, sequela +C2872619|T037|AB|T23.752S|ICD10CM|Corrosion of third degree of left palm, sequela|Corrosion of third degree of left palm, sequela +C2872620|T037|AB|T23.759|ICD10CM|Corrosion of third degree of unspecified palm|Corrosion of third degree of unspecified palm +C2872620|T037|HT|T23.759|ICD10CM|Corrosion of third degree of unspecified palm|Corrosion of third degree of unspecified palm +C2872621|T037|AB|T23.759A|ICD10CM|Corrosion of third degree of unspecified palm, init encntr|Corrosion of third degree of unspecified palm, init encntr +C2872621|T037|PT|T23.759A|ICD10CM|Corrosion of third degree of unspecified palm, initial encounter|Corrosion of third degree of unspecified palm, initial encounter +C2872622|T037|AB|T23.759D|ICD10CM|Corrosion of third degree of unspecified palm, subs encntr|Corrosion of third degree of unspecified palm, subs encntr +C2872622|T037|PT|T23.759D|ICD10CM|Corrosion of third degree of unspecified palm, subsequent encounter|Corrosion of third degree of unspecified palm, subsequent encounter +C2872623|T037|PT|T23.759S|ICD10CM|Corrosion of third degree of unspecified palm, sequela|Corrosion of third degree of unspecified palm, sequela +C2872623|T037|AB|T23.759S|ICD10CM|Corrosion of third degree of unspecified palm, sequela|Corrosion of third degree of unspecified palm, sequela +C2872624|T037|AB|T23.76|ICD10CM|Corrosion of third degree of back of hand|Corrosion of third degree of back of hand +C2872624|T037|HT|T23.76|ICD10CM|Corrosion of third degree of back of hand|Corrosion of third degree of back of hand +C2872625|T037|AB|T23.761|ICD10CM|Corrosion of third degree of back of right hand|Corrosion of third degree of back of right hand +C2872625|T037|HT|T23.761|ICD10CM|Corrosion of third degree of back of right hand|Corrosion of third degree of back of right hand +C2872626|T037|AB|T23.761A|ICD10CM|Corrosion of third degree of back of right hand, init encntr|Corrosion of third degree of back of right hand, init encntr +C2872626|T037|PT|T23.761A|ICD10CM|Corrosion of third degree of back of right hand, initial encounter|Corrosion of third degree of back of right hand, initial encounter +C2872627|T037|AB|T23.761D|ICD10CM|Corrosion of third degree of back of right hand, subs encntr|Corrosion of third degree of back of right hand, subs encntr +C2872627|T037|PT|T23.761D|ICD10CM|Corrosion of third degree of back of right hand, subsequent encounter|Corrosion of third degree of back of right hand, subsequent encounter +C2872628|T037|PT|T23.761S|ICD10CM|Corrosion of third degree of back of right hand, sequela|Corrosion of third degree of back of right hand, sequela +C2872628|T037|AB|T23.761S|ICD10CM|Corrosion of third degree of back of right hand, sequela|Corrosion of third degree of back of right hand, sequela +C2872629|T037|AB|T23.762|ICD10CM|Corrosion of third degree of back of left hand|Corrosion of third degree of back of left hand +C2872629|T037|HT|T23.762|ICD10CM|Corrosion of third degree of back of left hand|Corrosion of third degree of back of left hand +C2872630|T037|AB|T23.762A|ICD10CM|Corrosion of third degree of back of left hand, init encntr|Corrosion of third degree of back of left hand, init encntr +C2872630|T037|PT|T23.762A|ICD10CM|Corrosion of third degree of back of left hand, initial encounter|Corrosion of third degree of back of left hand, initial encounter +C2872631|T037|AB|T23.762D|ICD10CM|Corrosion of third degree of back of left hand, subs encntr|Corrosion of third degree of back of left hand, subs encntr +C2872631|T037|PT|T23.762D|ICD10CM|Corrosion of third degree of back of left hand, subsequent encounter|Corrosion of third degree of back of left hand, subsequent encounter +C2872632|T037|PT|T23.762S|ICD10CM|Corrosion of third degree of back of left hand, sequela|Corrosion of third degree of back of left hand, sequela +C2872632|T037|AB|T23.762S|ICD10CM|Corrosion of third degree of back of left hand, sequela|Corrosion of third degree of back of left hand, sequela +C2872633|T037|AB|T23.769|ICD10CM|Corrosion of third degree back of unspecified hand|Corrosion of third degree back of unspecified hand +C2872633|T037|HT|T23.769|ICD10CM|Corrosion of third degree back of unspecified hand|Corrosion of third degree back of unspecified hand +C2872634|T037|AB|T23.769A|ICD10CM|Corrosion of third degree back of unsp hand, init encntr|Corrosion of third degree back of unsp hand, init encntr +C2872634|T037|PT|T23.769A|ICD10CM|Corrosion of third degree back of unspecified hand, initial encounter|Corrosion of third degree back of unspecified hand, initial encounter +C2872635|T037|AB|T23.769D|ICD10CM|Corrosion of third degree back of unsp hand, subs encntr|Corrosion of third degree back of unsp hand, subs encntr +C2872635|T037|PT|T23.769D|ICD10CM|Corrosion of third degree back of unspecified hand, subsequent encounter|Corrosion of third degree back of unspecified hand, subsequent encounter +C2872636|T037|AB|T23.769S|ICD10CM|Corrosion of third degree back of unspecified hand, sequela|Corrosion of third degree back of unspecified hand, sequela +C2872636|T037|PT|T23.769S|ICD10CM|Corrosion of third degree back of unspecified hand, sequela|Corrosion of third degree back of unspecified hand, sequela +C2872637|T037|AB|T23.77|ICD10CM|Corrosion of third degree of wrist|Corrosion of third degree of wrist +C2872637|T037|HT|T23.77|ICD10CM|Corrosion of third degree of wrist|Corrosion of third degree of wrist +C2872638|T037|AB|T23.771|ICD10CM|Corrosion of third degree of right wrist|Corrosion of third degree of right wrist +C2872638|T037|HT|T23.771|ICD10CM|Corrosion of third degree of right wrist|Corrosion of third degree of right wrist +C2872639|T037|PT|T23.771A|ICD10CM|Corrosion of third degree of right wrist, initial encounter|Corrosion of third degree of right wrist, initial encounter +C2872639|T037|AB|T23.771A|ICD10CM|Corrosion of third degree of right wrist, initial encounter|Corrosion of third degree of right wrist, initial encounter +C2872640|T037|AB|T23.771D|ICD10CM|Corrosion of third degree of right wrist, subs encntr|Corrosion of third degree of right wrist, subs encntr +C2872640|T037|PT|T23.771D|ICD10CM|Corrosion of third degree of right wrist, subsequent encounter|Corrosion of third degree of right wrist, subsequent encounter +C2872641|T037|PT|T23.771S|ICD10CM|Corrosion of third degree of right wrist, sequela|Corrosion of third degree of right wrist, sequela +C2872641|T037|AB|T23.771S|ICD10CM|Corrosion of third degree of right wrist, sequela|Corrosion of third degree of right wrist, sequela +C2872642|T037|AB|T23.772|ICD10CM|Corrosion of third degree of left wrist|Corrosion of third degree of left wrist +C2872642|T037|HT|T23.772|ICD10CM|Corrosion of third degree of left wrist|Corrosion of third degree of left wrist +C2872643|T037|PT|T23.772A|ICD10CM|Corrosion of third degree of left wrist, initial encounter|Corrosion of third degree of left wrist, initial encounter +C2872643|T037|AB|T23.772A|ICD10CM|Corrosion of third degree of left wrist, initial encounter|Corrosion of third degree of left wrist, initial encounter +C2872644|T037|AB|T23.772D|ICD10CM|Corrosion of third degree of left wrist, subs encntr|Corrosion of third degree of left wrist, subs encntr +C2872644|T037|PT|T23.772D|ICD10CM|Corrosion of third degree of left wrist, subsequent encounter|Corrosion of third degree of left wrist, subsequent encounter +C2872645|T037|PT|T23.772S|ICD10CM|Corrosion of third degree of left wrist, sequela|Corrosion of third degree of left wrist, sequela +C2872645|T037|AB|T23.772S|ICD10CM|Corrosion of third degree of left wrist, sequela|Corrosion of third degree of left wrist, sequela +C2872646|T037|AB|T23.779|ICD10CM|Corrosion of third degree of unspecified wrist|Corrosion of third degree of unspecified wrist +C2872646|T037|HT|T23.779|ICD10CM|Corrosion of third degree of unspecified wrist|Corrosion of third degree of unspecified wrist +C2872647|T037|AB|T23.779A|ICD10CM|Corrosion of third degree of unspecified wrist, init encntr|Corrosion of third degree of unspecified wrist, init encntr +C2872647|T037|PT|T23.779A|ICD10CM|Corrosion of third degree of unspecified wrist, initial encounter|Corrosion of third degree of unspecified wrist, initial encounter +C2872648|T037|AB|T23.779D|ICD10CM|Corrosion of third degree of unspecified wrist, subs encntr|Corrosion of third degree of unspecified wrist, subs encntr +C2872648|T037|PT|T23.779D|ICD10CM|Corrosion of third degree of unspecified wrist, subsequent encounter|Corrosion of third degree of unspecified wrist, subsequent encounter +C2872649|T037|PT|T23.779S|ICD10CM|Corrosion of third degree of unspecified wrist, sequela|Corrosion of third degree of unspecified wrist, sequela +C2872649|T037|AB|T23.779S|ICD10CM|Corrosion of third degree of unspecified wrist, sequela|Corrosion of third degree of unspecified wrist, sequela +C2872650|T037|AB|T23.79|ICD10CM|Corrosion of 3rd deg mu sites of wrist and hand|Corrosion of 3rd deg mu sites of wrist and hand +C2872650|T037|HT|T23.79|ICD10CM|Corrosion of third degree of multiple sites of wrist and hand|Corrosion of third degree of multiple sites of wrist and hand +C2872651|T037|AB|T23.791|ICD10CM|Corrosion of 3rd deg mu sites of right wrist and hand|Corrosion of 3rd deg mu sites of right wrist and hand +C2872651|T037|HT|T23.791|ICD10CM|Corrosion of third degree of multiple sites of right wrist and hand|Corrosion of third degree of multiple sites of right wrist and hand +C2872652|T037|AB|T23.791A|ICD10CM|Corrosion of 3rd deg mu sites of right wrist and hand, init|Corrosion of 3rd deg mu sites of right wrist and hand, init +C2872652|T037|PT|T23.791A|ICD10CM|Corrosion of third degree of multiple sites of right wrist and hand, initial encounter|Corrosion of third degree of multiple sites of right wrist and hand, initial encounter +C2872653|T037|AB|T23.791D|ICD10CM|Corrosion of 3rd deg mu sites of right wrist and hand, subs|Corrosion of 3rd deg mu sites of right wrist and hand, subs +C2872653|T037|PT|T23.791D|ICD10CM|Corrosion of third degree of multiple sites of right wrist and hand, subsequent encounter|Corrosion of third degree of multiple sites of right wrist and hand, subsequent encounter +C2872654|T037|AB|T23.791S|ICD10CM|Corrosion of 3rd deg mu sites of right wrs/hnd, sequela|Corrosion of 3rd deg mu sites of right wrs/hnd, sequela +C2872654|T037|PT|T23.791S|ICD10CM|Corrosion of third degree of multiple sites of right wrist and hand, sequela|Corrosion of third degree of multiple sites of right wrist and hand, sequela +C2872655|T037|AB|T23.792|ICD10CM|Corrosion of 3rd deg mu sites of left wrist and hand|Corrosion of 3rd deg mu sites of left wrist and hand +C2872655|T037|HT|T23.792|ICD10CM|Corrosion of third degree of multiple sites of left wrist and hand|Corrosion of third degree of multiple sites of left wrist and hand +C2872656|T037|AB|T23.792A|ICD10CM|Corrosion of 3rd deg mu sites of left wrist and hand, init|Corrosion of 3rd deg mu sites of left wrist and hand, init +C2872656|T037|PT|T23.792A|ICD10CM|Corrosion of third degree of multiple sites of left wrist and hand, initial encounter|Corrosion of third degree of multiple sites of left wrist and hand, initial encounter +C2872657|T037|AB|T23.792D|ICD10CM|Corrosion of 3rd deg mu sites of left wrist and hand, subs|Corrosion of 3rd deg mu sites of left wrist and hand, subs +C2872657|T037|PT|T23.792D|ICD10CM|Corrosion of third degree of multiple sites of left wrist and hand, subsequent encounter|Corrosion of third degree of multiple sites of left wrist and hand, subsequent encounter +C2872658|T037|AB|T23.792S|ICD10CM|Corrosion of 3rd deg mu sites of left wrs/hnd, sequela|Corrosion of 3rd deg mu sites of left wrs/hnd, sequela +C2872658|T037|PT|T23.792S|ICD10CM|Corrosion of third degree of multiple sites of left wrist and hand, sequela|Corrosion of third degree of multiple sites of left wrist and hand, sequela +C2872659|T037|AB|T23.799|ICD10CM|Corrosion of 3rd deg mu sites of unsp wrist and hand|Corrosion of 3rd deg mu sites of unsp wrist and hand +C2872659|T037|HT|T23.799|ICD10CM|Corrosion of third degree of multiple sites of unspecified wrist and hand|Corrosion of third degree of multiple sites of unspecified wrist and hand +C2872660|T037|AB|T23.799A|ICD10CM|Corrosion of 3rd deg mu sites of unsp wrist and hand, init|Corrosion of 3rd deg mu sites of unsp wrist and hand, init +C2872660|T037|PT|T23.799A|ICD10CM|Corrosion of third degree of multiple sites of unspecified wrist and hand, initial encounter|Corrosion of third degree of multiple sites of unspecified wrist and hand, initial encounter +C2872661|T037|AB|T23.799D|ICD10CM|Corrosion of 3rd deg mu sites of unsp wrist and hand, subs|Corrosion of 3rd deg mu sites of unsp wrist and hand, subs +C2872661|T037|PT|T23.799D|ICD10CM|Corrosion of third degree of multiple sites of unspecified wrist and hand, subsequent encounter|Corrosion of third degree of multiple sites of unspecified wrist and hand, subsequent encounter +C2872662|T037|AB|T23.799S|ICD10CM|Corrosion of 3rd deg mu sites of unsp wrs/hnd, sequela|Corrosion of 3rd deg mu sites of unsp wrs/hnd, sequela +C2872662|T037|PT|T23.799S|ICD10CM|Corrosion of third degree of multiple sites of unspecified wrist and hand, sequela|Corrosion of third degree of multiple sites of unspecified wrist and hand, sequela +C0452006|T037|HT|T24|ICD10|Burn and corrosion of hip and lower limb, except ankle and foot|Burn and corrosion of hip and lower limb, except ankle and foot +C2872663|T037|AB|T24|ICD10CM|Burn and corrosion of lower limb, except ankle and foot|Burn and corrosion of lower limb, except ankle and foot +C2872663|T037|HT|T24|ICD10CM|Burn and corrosion of lower limb, except ankle and foot|Burn and corrosion of lower limb, except ankle and foot +C2872664|T037|AB|T24.0|ICD10CM|Burn of unsp degree of lower limb, except ankle and foot|Burn of unsp degree of lower limb, except ankle and foot +C0496043|T037|PT|T24.0|ICD10|Burn of unspecified degree of hip and lower limb, except ankle and foot|Burn of unspecified degree of hip and lower limb, except ankle and foot +C2872664|T037|HT|T24.0|ICD10CM|Burn of unspecified degree of lower limb, except ankle and foot|Burn of unspecified degree of lower limb, except ankle and foot +C2872665|T037|AB|T24.00|ICD10CM|Burn of unsp degree of unsp site lower limb, except ank/ft|Burn of unsp degree of unsp site lower limb, except ank/ft +C2872665|T037|HT|T24.00|ICD10CM|Burn of unspecified degree of unspecified site of lower limb, except ankle and foot|Burn of unspecified degree of unspecified site of lower limb, except ankle and foot +C2872666|T037|HT|T24.001|ICD10CM|Burn of unspecified degree of unspecified site of right lower limb, except ankle and foot|Burn of unspecified degree of unspecified site of right lower limb, except ankle and foot +C2872666|T037|AB|T24.001|ICD10CM|Burn unsp deg of unsp site right lower limb, except ank/ft|Burn unsp deg of unsp site right lower limb, except ank/ft +C2872667|T037|AB|T24.001A|ICD10CM|Burn unsp deg of unsp site right lower limb, ex ank/ft, init|Burn unsp deg of unsp site right lower limb, ex ank/ft, init +C2872668|T037|AB|T24.001D|ICD10CM|Burn unsp deg of unsp site right lower limb, ex ank/ft, subs|Burn unsp deg of unsp site right lower limb, ex ank/ft, subs +C2872669|T037|PT|T24.001S|ICD10CM|Burn of unspecified degree of unspecified site of right lower limb, except ankle and foot, sequela|Burn of unspecified degree of unspecified site of right lower limb, except ankle and foot, sequela +C2872669|T037|AB|T24.001S|ICD10CM|Burn unsp deg of unsp site right lower limb, ex ank/ft, sqla|Burn unsp deg of unsp site right lower limb, ex ank/ft, sqla +C2872670|T037|HT|T24.002|ICD10CM|Burn of unspecified degree of unspecified site of left lower limb, except ankle and foot|Burn of unspecified degree of unspecified site of left lower limb, except ankle and foot +C2872670|T037|AB|T24.002|ICD10CM|Burn unsp degree of unsp site left lower limb, except ank/ft|Burn unsp degree of unsp site left lower limb, except ank/ft +C2872671|T037|AB|T24.002A|ICD10CM|Burn unsp deg of unsp site left lower limb, ex ank/ft, init|Burn unsp deg of unsp site left lower limb, ex ank/ft, init +C2872672|T037|AB|T24.002D|ICD10CM|Burn unsp deg of unsp site left lower limb, ex ank/ft, subs|Burn unsp deg of unsp site left lower limb, ex ank/ft, subs +C2872673|T037|PT|T24.002S|ICD10CM|Burn of unspecified degree of unspecified site of left lower limb, except ankle and foot, sequela|Burn of unspecified degree of unspecified site of left lower limb, except ankle and foot, sequela +C2872673|T037|AB|T24.002S|ICD10CM|Burn unsp deg of unsp site left lower limb, ex ank/ft, sqla|Burn unsp deg of unsp site left lower limb, ex ank/ft, sqla +C2872674|T037|HT|T24.009|ICD10CM|Burn of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot|Burn of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot +C2872674|T037|AB|T24.009|ICD10CM|Burn unsp degree of unsp site unsp lower limb, except ank/ft|Burn unsp degree of unsp site unsp lower limb, except ank/ft +C2872675|T037|AB|T24.009A|ICD10CM|Burn unsp deg of unsp site unsp lower limb, ex ank/ft, init|Burn unsp deg of unsp site unsp lower limb, ex ank/ft, init +C2872676|T037|AB|T24.009D|ICD10CM|Burn unsp deg of unsp site unsp lower limb, ex ank/ft, subs|Burn unsp deg of unsp site unsp lower limb, ex ank/ft, subs +C2872677|T037|AB|T24.009S|ICD10CM|Burn unsp deg of unsp site unsp lower limb, ex ank/ft, sqla|Burn unsp deg of unsp site unsp lower limb, ex ank/ft, sqla +C0274143|T037|AB|T24.01|ICD10CM|Burn of unspecified degree of thigh|Burn of unspecified degree of thigh +C0274143|T037|HT|T24.01|ICD10CM|Burn of unspecified degree of thigh|Burn of unspecified degree of thigh +C2872678|T037|AB|T24.011|ICD10CM|Burn of unspecified degree of right thigh|Burn of unspecified degree of right thigh +C2872678|T037|HT|T24.011|ICD10CM|Burn of unspecified degree of right thigh|Burn of unspecified degree of right thigh +C2872679|T037|AB|T24.011A|ICD10CM|Burn of unspecified degree of right thigh, initial encounter|Burn of unspecified degree of right thigh, initial encounter +C2872679|T037|PT|T24.011A|ICD10CM|Burn of unspecified degree of right thigh, initial encounter|Burn of unspecified degree of right thigh, initial encounter +C2872680|T037|AB|T24.011D|ICD10CM|Burn of unspecified degree of right thigh, subs encntr|Burn of unspecified degree of right thigh, subs encntr +C2872680|T037|PT|T24.011D|ICD10CM|Burn of unspecified degree of right thigh, subsequent encounter|Burn of unspecified degree of right thigh, subsequent encounter +C2872681|T037|PT|T24.011S|ICD10CM|Burn of unspecified degree of right thigh, sequela|Burn of unspecified degree of right thigh, sequela +C2872681|T037|AB|T24.011S|ICD10CM|Burn of unspecified degree of right thigh, sequela|Burn of unspecified degree of right thigh, sequela +C2872682|T037|AB|T24.012|ICD10CM|Burn of unspecified degree of left thigh|Burn of unspecified degree of left thigh +C2872682|T037|HT|T24.012|ICD10CM|Burn of unspecified degree of left thigh|Burn of unspecified degree of left thigh +C2872683|T037|PT|T24.012A|ICD10CM|Burn of unspecified degree of left thigh, initial encounter|Burn of unspecified degree of left thigh, initial encounter +C2872683|T037|AB|T24.012A|ICD10CM|Burn of unspecified degree of left thigh, initial encounter|Burn of unspecified degree of left thigh, initial encounter +C2872684|T037|AB|T24.012D|ICD10CM|Burn of unspecified degree of left thigh, subs encntr|Burn of unspecified degree of left thigh, subs encntr +C2872684|T037|PT|T24.012D|ICD10CM|Burn of unspecified degree of left thigh, subsequent encounter|Burn of unspecified degree of left thigh, subsequent encounter +C2872685|T037|PT|T24.012S|ICD10CM|Burn of unspecified degree of left thigh, sequela|Burn of unspecified degree of left thigh, sequela +C2872685|T037|AB|T24.012S|ICD10CM|Burn of unspecified degree of left thigh, sequela|Burn of unspecified degree of left thigh, sequela +C2872686|T037|AB|T24.019|ICD10CM|Burn of unspecified degree of unspecified thigh|Burn of unspecified degree of unspecified thigh +C2872686|T037|HT|T24.019|ICD10CM|Burn of unspecified degree of unspecified thigh|Burn of unspecified degree of unspecified thigh +C2872687|T037|AB|T24.019A|ICD10CM|Burn of unspecified degree of unspecified thigh, init encntr|Burn of unspecified degree of unspecified thigh, init encntr +C2872687|T037|PT|T24.019A|ICD10CM|Burn of unspecified degree of unspecified thigh, initial encounter|Burn of unspecified degree of unspecified thigh, initial encounter +C2872688|T037|AB|T24.019D|ICD10CM|Burn of unspecified degree of unspecified thigh, subs encntr|Burn of unspecified degree of unspecified thigh, subs encntr +C2872688|T037|PT|T24.019D|ICD10CM|Burn of unspecified degree of unspecified thigh, subsequent encounter|Burn of unspecified degree of unspecified thigh, subsequent encounter +C2872689|T037|PT|T24.019S|ICD10CM|Burn of unspecified degree of unspecified thigh, sequela|Burn of unspecified degree of unspecified thigh, sequela +C2872689|T037|AB|T24.019S|ICD10CM|Burn of unspecified degree of unspecified thigh, sequela|Burn of unspecified degree of unspecified thigh, sequela +C0274149|T037|HT|T24.02|ICD10CM|Burn of unspecified degree of knee|Burn of unspecified degree of knee +C0274149|T037|AB|T24.02|ICD10CM|Burn of unspecified degree of knee|Burn of unspecified degree of knee +C2872690|T037|AB|T24.021|ICD10CM|Burn of unspecified degree of right knee|Burn of unspecified degree of right knee +C2872690|T037|HT|T24.021|ICD10CM|Burn of unspecified degree of right knee|Burn of unspecified degree of right knee +C2872691|T037|PT|T24.021A|ICD10CM|Burn of unspecified degree of right knee, initial encounter|Burn of unspecified degree of right knee, initial encounter +C2872691|T037|AB|T24.021A|ICD10CM|Burn of unspecified degree of right knee, initial encounter|Burn of unspecified degree of right knee, initial encounter +C2872692|T037|AB|T24.021D|ICD10CM|Burn of unspecified degree of right knee, subs encntr|Burn of unspecified degree of right knee, subs encntr +C2872692|T037|PT|T24.021D|ICD10CM|Burn of unspecified degree of right knee, subsequent encounter|Burn of unspecified degree of right knee, subsequent encounter +C2872693|T037|PT|T24.021S|ICD10CM|Burn of unspecified degree of right knee, sequela|Burn of unspecified degree of right knee, sequela +C2872693|T037|AB|T24.021S|ICD10CM|Burn of unspecified degree of right knee, sequela|Burn of unspecified degree of right knee, sequela +C2872694|T037|AB|T24.022|ICD10CM|Burn of unspecified degree of left knee|Burn of unspecified degree of left knee +C2872694|T037|HT|T24.022|ICD10CM|Burn of unspecified degree of left knee|Burn of unspecified degree of left knee +C2872695|T037|PT|T24.022A|ICD10CM|Burn of unspecified degree of left knee, initial encounter|Burn of unspecified degree of left knee, initial encounter +C2872695|T037|AB|T24.022A|ICD10CM|Burn of unspecified degree of left knee, initial encounter|Burn of unspecified degree of left knee, initial encounter +C2872696|T037|AB|T24.022D|ICD10CM|Burn of unspecified degree of left knee, subs encntr|Burn of unspecified degree of left knee, subs encntr +C2872696|T037|PT|T24.022D|ICD10CM|Burn of unspecified degree of left knee, subsequent encounter|Burn of unspecified degree of left knee, subsequent encounter +C2872697|T037|PT|T24.022S|ICD10CM|Burn of unspecified degree of left knee, sequela|Burn of unspecified degree of left knee, sequela +C2872697|T037|AB|T24.022S|ICD10CM|Burn of unspecified degree of left knee, sequela|Burn of unspecified degree of left knee, sequela +C2872698|T037|AB|T24.029|ICD10CM|Burn of unspecified degree of unspecified knee|Burn of unspecified degree of unspecified knee +C2872698|T037|HT|T24.029|ICD10CM|Burn of unspecified degree of unspecified knee|Burn of unspecified degree of unspecified knee +C2872699|T037|AB|T24.029A|ICD10CM|Burn of unspecified degree of unspecified knee, init encntr|Burn of unspecified degree of unspecified knee, init encntr +C2872699|T037|PT|T24.029A|ICD10CM|Burn of unspecified degree of unspecified knee, initial encounter|Burn of unspecified degree of unspecified knee, initial encounter +C2872700|T037|AB|T24.029D|ICD10CM|Burn of unspecified degree of unspecified knee, subs encntr|Burn of unspecified degree of unspecified knee, subs encntr +C2872700|T037|PT|T24.029D|ICD10CM|Burn of unspecified degree of unspecified knee, subsequent encounter|Burn of unspecified degree of unspecified knee, subsequent encounter +C2872701|T037|AB|T24.029S|ICD10CM|Burn of unspecified degree of unspecified knee, sequela|Burn of unspecified degree of unspecified knee, sequela +C2872701|T037|PT|T24.029S|ICD10CM|Burn of unspecified degree of unspecified knee, sequela|Burn of unspecified degree of unspecified knee, sequela +C0274155|T037|HT|T24.03|ICD10CM|Burn of unspecified degree of lower leg|Burn of unspecified degree of lower leg +C0274155|T037|AB|T24.03|ICD10CM|Burn of unspecified degree of lower leg|Burn of unspecified degree of lower leg +C2872702|T037|AB|T24.031|ICD10CM|Burn of unspecified degree of right lower leg|Burn of unspecified degree of right lower leg +C2872702|T037|HT|T24.031|ICD10CM|Burn of unspecified degree of right lower leg|Burn of unspecified degree of right lower leg +C2872703|T037|AB|T24.031A|ICD10CM|Burn of unspecified degree of right lower leg, init encntr|Burn of unspecified degree of right lower leg, init encntr +C2872703|T037|PT|T24.031A|ICD10CM|Burn of unspecified degree of right lower leg, initial encounter|Burn of unspecified degree of right lower leg, initial encounter +C2872704|T037|AB|T24.031D|ICD10CM|Burn of unspecified degree of right lower leg, subs encntr|Burn of unspecified degree of right lower leg, subs encntr +C2872704|T037|PT|T24.031D|ICD10CM|Burn of unspecified degree of right lower leg, subsequent encounter|Burn of unspecified degree of right lower leg, subsequent encounter +C2872705|T037|PT|T24.031S|ICD10CM|Burn of unspecified degree of right lower leg, sequela|Burn of unspecified degree of right lower leg, sequela +C2872705|T037|AB|T24.031S|ICD10CM|Burn of unspecified degree of right lower leg, sequela|Burn of unspecified degree of right lower leg, sequela +C2872706|T037|AB|T24.032|ICD10CM|Burn of unspecified degree of left lower leg|Burn of unspecified degree of left lower leg +C2872706|T037|HT|T24.032|ICD10CM|Burn of unspecified degree of left lower leg|Burn of unspecified degree of left lower leg +C2872707|T037|AB|T24.032A|ICD10CM|Burn of unspecified degree of left lower leg, init encntr|Burn of unspecified degree of left lower leg, init encntr +C2872707|T037|PT|T24.032A|ICD10CM|Burn of unspecified degree of left lower leg, initial encounter|Burn of unspecified degree of left lower leg, initial encounter +C2872708|T037|AB|T24.032D|ICD10CM|Burn of unspecified degree of left lower leg, subs encntr|Burn of unspecified degree of left lower leg, subs encntr +C2872708|T037|PT|T24.032D|ICD10CM|Burn of unspecified degree of left lower leg, subsequent encounter|Burn of unspecified degree of left lower leg, subsequent encounter +C2872709|T037|PT|T24.032S|ICD10CM|Burn of unspecified degree of left lower leg, sequela|Burn of unspecified degree of left lower leg, sequela +C2872709|T037|AB|T24.032S|ICD10CM|Burn of unspecified degree of left lower leg, sequela|Burn of unspecified degree of left lower leg, sequela +C2872710|T037|AB|T24.039|ICD10CM|Burn of unspecified degree of unspecified lower leg|Burn of unspecified degree of unspecified lower leg +C2872710|T037|HT|T24.039|ICD10CM|Burn of unspecified degree of unspecified lower leg|Burn of unspecified degree of unspecified lower leg +C2872711|T037|AB|T24.039A|ICD10CM|Burn of unsp degree of unspecified lower leg, init encntr|Burn of unsp degree of unspecified lower leg, init encntr +C2872711|T037|PT|T24.039A|ICD10CM|Burn of unspecified degree of unspecified lower leg, initial encounter|Burn of unspecified degree of unspecified lower leg, initial encounter +C2872712|T037|AB|T24.039D|ICD10CM|Burn of unsp degree of unspecified lower leg, subs encntr|Burn of unsp degree of unspecified lower leg, subs encntr +C2872712|T037|PT|T24.039D|ICD10CM|Burn of unspecified degree of unspecified lower leg, subsequent encounter|Burn of unspecified degree of unspecified lower leg, subsequent encounter +C2872713|T037|AB|T24.039S|ICD10CM|Burn of unspecified degree of unspecified lower leg, sequela|Burn of unspecified degree of unspecified lower leg, sequela +C2872713|T037|PT|T24.039S|ICD10CM|Burn of unspecified degree of unspecified lower leg, sequela|Burn of unspecified degree of unspecified lower leg, sequela +C2872714|T037|AB|T24.09|ICD10CM|Burn of unsp deg mult sites of lower limb, except ank/ft|Burn of unsp deg mult sites of lower limb, except ank/ft +C2872714|T037|HT|T24.09|ICD10CM|Burn of unspecified degree of multiple sites of lower limb, except ankle and foot|Burn of unspecified degree of multiple sites of lower limb, except ankle and foot +C2872715|T037|HT|T24.091|ICD10CM|Burn of unspecified degree of multiple sites of right lower limb, except ankle and foot|Burn of unspecified degree of multiple sites of right lower limb, except ankle and foot +C2872715|T037|AB|T24.091|ICD10CM|Burn unsp deg mult sites of right lower limb, except ank/ft|Burn unsp deg mult sites of right lower limb, except ank/ft +C2872716|T037|AB|T24.091A|ICD10CM|Burn unsp deg mult sites of right low limb, ex ank/ft, init|Burn unsp deg mult sites of right low limb, ex ank/ft, init +C2872717|T037|AB|T24.091D|ICD10CM|Burn unsp deg mult sites of right low limb, ex ank/ft, subs|Burn unsp deg mult sites of right low limb, ex ank/ft, subs +C2872718|T037|PT|T24.091S|ICD10CM|Burn of unspecified degree of multiple sites of right lower limb, except ankle and foot, sequela|Burn of unspecified degree of multiple sites of right lower limb, except ankle and foot, sequela +C2872718|T037|AB|T24.091S|ICD10CM|Burn unsp deg mult sites of right low limb, ex ank/ft, sqla|Burn unsp deg mult sites of right low limb, ex ank/ft, sqla +C2872719|T037|HT|T24.092|ICD10CM|Burn of unspecified degree of multiple sites of left lower limb, except ankle and foot|Burn of unspecified degree of multiple sites of left lower limb, except ankle and foot +C2872719|T037|AB|T24.092|ICD10CM|Burn unsp deg mult sites of left lower limb, except ank/ft|Burn unsp deg mult sites of left lower limb, except ank/ft +C2872720|T037|AB|T24.092A|ICD10CM|Burn unsp deg mult sites of left lower limb, ex ank/ft, init|Burn unsp deg mult sites of left lower limb, ex ank/ft, init +C2872721|T037|AB|T24.092D|ICD10CM|Burn unsp deg mult sites of left lower limb, ex ank/ft, subs|Burn unsp deg mult sites of left lower limb, ex ank/ft, subs +C2872722|T037|PT|T24.092S|ICD10CM|Burn of unspecified degree of multiple sites of left lower limb, except ankle and foot, sequela|Burn of unspecified degree of multiple sites of left lower limb, except ankle and foot, sequela +C2872722|T037|AB|T24.092S|ICD10CM|Burn unsp deg mult sites of left lower limb, ex ank/ft, sqla|Burn unsp deg mult sites of left lower limb, ex ank/ft, sqla +C2872723|T037|HT|T24.099|ICD10CM|Burn of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot|Burn of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot +C2872723|T037|AB|T24.099|ICD10CM|Burn unsp deg mult sites of unsp lower limb, except ank/ft|Burn unsp deg mult sites of unsp lower limb, except ank/ft +C2872724|T037|AB|T24.099A|ICD10CM|Burn unsp deg mult sites of unsp lower limb, ex ank/ft, init|Burn unsp deg mult sites of unsp lower limb, ex ank/ft, init +C2872725|T037|AB|T24.099D|ICD10CM|Burn unsp deg mult sites of unsp lower limb, ex ank/ft, subs|Burn unsp deg mult sites of unsp lower limb, ex ank/ft, subs +C2872726|T037|AB|T24.099S|ICD10CM|Burn unsp deg mult sites of unsp lower limb, ex ank/ft, sqla|Burn unsp deg mult sites of unsp lower limb, ex ank/ft, sqla +C0496044|T037|PT|T24.1|ICD10|Burn of first degree of hip and lower limb, except ankle and foot|Burn of first degree of hip and lower limb, except ankle and foot +C2872727|T037|AB|T24.1|ICD10CM|Burn of first degree of lower limb, except ankle and foot|Burn of first degree of lower limb, except ankle and foot +C2872727|T037|HT|T24.1|ICD10CM|Burn of first degree of lower limb, except ankle and foot|Burn of first degree of lower limb, except ankle and foot +C2872728|T037|AB|T24.10|ICD10CM|Burn of first degree of unsp site lower limb, except ank/ft|Burn of first degree of unsp site lower limb, except ank/ft +C2872728|T037|HT|T24.10|ICD10CM|Burn of first degree of unspecified site of lower limb, except ankle and foot|Burn of first degree of unspecified site of lower limb, except ankle and foot +C2872729|T037|AB|T24.101|ICD10CM|Burn first deg of unsp site right lower limb, except ank/ft|Burn first deg of unsp site right lower limb, except ank/ft +C2872729|T037|HT|T24.101|ICD10CM|Burn of first degree of unspecified site of right lower limb, except ankle and foot|Burn of first degree of unspecified site of right lower limb, except ankle and foot +C2872730|T037|AB|T24.101A|ICD10CM|Burn 1st deg of unsp site right lower limb, ex ank/ft, init|Burn 1st deg of unsp site right lower limb, ex ank/ft, init +C2872731|T037|AB|T24.101D|ICD10CM|Burn 1st deg of unsp site right lower limb, ex ank/ft, subs|Burn 1st deg of unsp site right lower limb, ex ank/ft, subs +C2872732|T037|AB|T24.101S|ICD10CM|Burn 1st deg of unsp site right lower limb, ex ank/ft, sqla|Burn 1st deg of unsp site right lower limb, ex ank/ft, sqla +C2872732|T037|PT|T24.101S|ICD10CM|Burn of first degree of unspecified site of right lower limb, except ankle and foot, sequela|Burn of first degree of unspecified site of right lower limb, except ankle and foot, sequela +C2872733|T037|AB|T24.102|ICD10CM|Burn first deg of unsp site left lower limb, except ank/ft|Burn first deg of unsp site left lower limb, except ank/ft +C2872733|T037|HT|T24.102|ICD10CM|Burn of first degree of unspecified site of left lower limb, except ankle and foot|Burn of first degree of unspecified site of left lower limb, except ankle and foot +C2872734|T037|AB|T24.102A|ICD10CM|Burn first deg of unsp site left lower limb, ex ank/ft, init|Burn first deg of unsp site left lower limb, ex ank/ft, init +C2872735|T037|AB|T24.102D|ICD10CM|Burn first deg of unsp site left lower limb, ex ank/ft, subs|Burn first deg of unsp site left lower limb, ex ank/ft, subs +C2872736|T037|AB|T24.102S|ICD10CM|Burn first deg of unsp site left lower limb, ex ank/ft, sqla|Burn first deg of unsp site left lower limb, ex ank/ft, sqla +C2872736|T037|PT|T24.102S|ICD10CM|Burn of first degree of unspecified site of left lower limb, except ankle and foot, sequela|Burn of first degree of unspecified site of left lower limb, except ankle and foot, sequela +C2872737|T037|AB|T24.109|ICD10CM|Burn first deg of unsp site unsp lower limb, except ank/ft|Burn first deg of unsp site unsp lower limb, except ank/ft +C2872737|T037|HT|T24.109|ICD10CM|Burn of first degree of unspecified site of unspecified lower limb, except ankle and foot|Burn of first degree of unspecified site of unspecified lower limb, except ankle and foot +C2872738|T037|AB|T24.109A|ICD10CM|Burn first deg of unsp site unsp lower limb, ex ank/ft, init|Burn first deg of unsp site unsp lower limb, ex ank/ft, init +C2872739|T037|AB|T24.109D|ICD10CM|Burn first deg of unsp site unsp lower limb, ex ank/ft, subs|Burn first deg of unsp site unsp lower limb, ex ank/ft, subs +C2872740|T037|AB|T24.109S|ICD10CM|Burn first deg of unsp site unsp lower limb, ex ank/ft, sqla|Burn first deg of unsp site unsp lower limb, ex ank/ft, sqla +C2872740|T037|PT|T24.109S|ICD10CM|Burn of first degree of unspecified site of unspecified lower limb, except ankle and foot, sequela|Burn of first degree of unspecified site of unspecified lower limb, except ankle and foot, sequela +C0433341|T037|AB|T24.11|ICD10CM|Burn of first degree of thigh|Burn of first degree of thigh +C0433341|T037|HT|T24.11|ICD10CM|Burn of first degree of thigh|Burn of first degree of thigh +C2103881|T037|AB|T24.111|ICD10CM|Burn of first degree of right thigh|Burn of first degree of right thigh +C2103881|T037|HT|T24.111|ICD10CM|Burn of first degree of right thigh|Burn of first degree of right thigh +C2872741|T037|PT|T24.111A|ICD10CM|Burn of first degree of right thigh, initial encounter|Burn of first degree of right thigh, initial encounter +C2872741|T037|AB|T24.111A|ICD10CM|Burn of first degree of right thigh, initial encounter|Burn of first degree of right thigh, initial encounter +C2872742|T037|PT|T24.111D|ICD10CM|Burn of first degree of right thigh, subsequent encounter|Burn of first degree of right thigh, subsequent encounter +C2872742|T037|AB|T24.111D|ICD10CM|Burn of first degree of right thigh, subsequent encounter|Burn of first degree of right thigh, subsequent encounter +C2872743|T037|PT|T24.111S|ICD10CM|Burn of first degree of right thigh, sequela|Burn of first degree of right thigh, sequela +C2872743|T037|AB|T24.111S|ICD10CM|Burn of first degree of right thigh, sequela|Burn of first degree of right thigh, sequela +C2103886|T037|AB|T24.112|ICD10CM|Burn of first degree of left thigh|Burn of first degree of left thigh +C2103886|T037|HT|T24.112|ICD10CM|Burn of first degree of left thigh|Burn of first degree of left thigh +C2872744|T037|PT|T24.112A|ICD10CM|Burn of first degree of left thigh, initial encounter|Burn of first degree of left thigh, initial encounter +C2872744|T037|AB|T24.112A|ICD10CM|Burn of first degree of left thigh, initial encounter|Burn of first degree of left thigh, initial encounter +C2872745|T037|PT|T24.112D|ICD10CM|Burn of first degree of left thigh, subsequent encounter|Burn of first degree of left thigh, subsequent encounter +C2872745|T037|AB|T24.112D|ICD10CM|Burn of first degree of left thigh, subsequent encounter|Burn of first degree of left thigh, subsequent encounter +C2872746|T037|PT|T24.112S|ICD10CM|Burn of first degree of left thigh, sequela|Burn of first degree of left thigh, sequela +C2872746|T037|AB|T24.112S|ICD10CM|Burn of first degree of left thigh, sequela|Burn of first degree of left thigh, sequela +C2872747|T037|AB|T24.119|ICD10CM|Burn of first degree of unspecified thigh|Burn of first degree of unspecified thigh +C2872747|T037|HT|T24.119|ICD10CM|Burn of first degree of unspecified thigh|Burn of first degree of unspecified thigh +C2872748|T037|AB|T24.119A|ICD10CM|Burn of first degree of unspecified thigh, initial encounter|Burn of first degree of unspecified thigh, initial encounter +C2872748|T037|PT|T24.119A|ICD10CM|Burn of first degree of unspecified thigh, initial encounter|Burn of first degree of unspecified thigh, initial encounter +C2872749|T037|AB|T24.119D|ICD10CM|Burn of first degree of unspecified thigh, subs encntr|Burn of first degree of unspecified thigh, subs encntr +C2872749|T037|PT|T24.119D|ICD10CM|Burn of first degree of unspecified thigh, subsequent encounter|Burn of first degree of unspecified thigh, subsequent encounter +C2872750|T037|PT|T24.119S|ICD10CM|Burn of first degree of unspecified thigh, sequela|Burn of first degree of unspecified thigh, sequela +C2872750|T037|AB|T24.119S|ICD10CM|Burn of first degree of unspecified thigh, sequela|Burn of first degree of unspecified thigh, sequela +C0433342|T037|AB|T24.12|ICD10CM|Burn of first degree of knee|Burn of first degree of knee +C0433342|T037|HT|T24.12|ICD10CM|Burn of first degree of knee|Burn of first degree of knee +C2103880|T037|AB|T24.121|ICD10CM|Burn of first degree of right knee|Burn of first degree of right knee +C2103880|T037|HT|T24.121|ICD10CM|Burn of first degree of right knee|Burn of first degree of right knee +C2872751|T037|PT|T24.121A|ICD10CM|Burn of first degree of right knee, initial encounter|Burn of first degree of right knee, initial encounter +C2872751|T037|AB|T24.121A|ICD10CM|Burn of first degree of right knee, initial encounter|Burn of first degree of right knee, initial encounter +C2872752|T037|PT|T24.121D|ICD10CM|Burn of first degree of right knee, subsequent encounter|Burn of first degree of right knee, subsequent encounter +C2872752|T037|AB|T24.121D|ICD10CM|Burn of first degree of right knee, subsequent encounter|Burn of first degree of right knee, subsequent encounter +C2872753|T037|PT|T24.121S|ICD10CM|Burn of first degree of right knee, sequela|Burn of first degree of right knee, sequela +C2872753|T037|AB|T24.121S|ICD10CM|Burn of first degree of right knee, sequela|Burn of first degree of right knee, sequela +C2103885|T037|AB|T24.122|ICD10CM|Burn of first degree of left knee|Burn of first degree of left knee +C2103885|T037|HT|T24.122|ICD10CM|Burn of first degree of left knee|Burn of first degree of left knee +C2872754|T037|PT|T24.122A|ICD10CM|Burn of first degree of left knee, initial encounter|Burn of first degree of left knee, initial encounter +C2872754|T037|AB|T24.122A|ICD10CM|Burn of first degree of left knee, initial encounter|Burn of first degree of left knee, initial encounter +C2872755|T037|AB|T24.122D|ICD10CM|Burn of first degree of left knee, subsequent encounter|Burn of first degree of left knee, subsequent encounter +C2872755|T037|PT|T24.122D|ICD10CM|Burn of first degree of left knee, subsequent encounter|Burn of first degree of left knee, subsequent encounter +C2872756|T037|PT|T24.122S|ICD10CM|Burn of first degree of left knee, sequela|Burn of first degree of left knee, sequela +C2872756|T037|AB|T24.122S|ICD10CM|Burn of first degree of left knee, sequela|Burn of first degree of left knee, sequela +C2872757|T037|AB|T24.129|ICD10CM|Burn of first degree of unspecified knee|Burn of first degree of unspecified knee +C2872757|T037|HT|T24.129|ICD10CM|Burn of first degree of unspecified knee|Burn of first degree of unspecified knee +C2872758|T037|PT|T24.129A|ICD10CM|Burn of first degree of unspecified knee, initial encounter|Burn of first degree of unspecified knee, initial encounter +C2872758|T037|AB|T24.129A|ICD10CM|Burn of first degree of unspecified knee, initial encounter|Burn of first degree of unspecified knee, initial encounter +C2872759|T037|AB|T24.129D|ICD10CM|Burn of first degree of unspecified knee, subs encntr|Burn of first degree of unspecified knee, subs encntr +C2872759|T037|PT|T24.129D|ICD10CM|Burn of first degree of unspecified knee, subsequent encounter|Burn of first degree of unspecified knee, subsequent encounter +C2872760|T037|PT|T24.129S|ICD10CM|Burn of first degree of unspecified knee, sequela|Burn of first degree of unspecified knee, sequela +C2872760|T037|AB|T24.129S|ICD10CM|Burn of first degree of unspecified knee, sequela|Burn of first degree of unspecified knee, sequela +C0433343|T037|AB|T24.13|ICD10CM|Burn of first degree of lower leg|Burn of first degree of lower leg +C0433343|T037|HT|T24.13|ICD10CM|Burn of first degree of lower leg|Burn of first degree of lower leg +C2103879|T037|AB|T24.131|ICD10CM|Burn of first degree of right lower leg|Burn of first degree of right lower leg +C2103879|T037|HT|T24.131|ICD10CM|Burn of first degree of right lower leg|Burn of first degree of right lower leg +C2872761|T037|PT|T24.131A|ICD10CM|Burn of first degree of right lower leg, initial encounter|Burn of first degree of right lower leg, initial encounter +C2872761|T037|AB|T24.131A|ICD10CM|Burn of first degree of right lower leg, initial encounter|Burn of first degree of right lower leg, initial encounter +C2872762|T037|AB|T24.131D|ICD10CM|Burn of first degree of right lower leg, subs encntr|Burn of first degree of right lower leg, subs encntr +C2872762|T037|PT|T24.131D|ICD10CM|Burn of first degree of right lower leg, subsequent encounter|Burn of first degree of right lower leg, subsequent encounter +C2872763|T037|PT|T24.131S|ICD10CM|Burn of first degree of right lower leg, sequela|Burn of first degree of right lower leg, sequela +C2872763|T037|AB|T24.131S|ICD10CM|Burn of first degree of right lower leg, sequela|Burn of first degree of right lower leg, sequela +C2103884|T037|AB|T24.132|ICD10CM|Burn of first degree of left lower leg|Burn of first degree of left lower leg +C2103884|T037|HT|T24.132|ICD10CM|Burn of first degree of left lower leg|Burn of first degree of left lower leg +C2872764|T037|PT|T24.132A|ICD10CM|Burn of first degree of left lower leg, initial encounter|Burn of first degree of left lower leg, initial encounter +C2872764|T037|AB|T24.132A|ICD10CM|Burn of first degree of left lower leg, initial encounter|Burn of first degree of left lower leg, initial encounter +C2872765|T037|AB|T24.132D|ICD10CM|Burn of first degree of left lower leg, subsequent encounter|Burn of first degree of left lower leg, subsequent encounter +C2872765|T037|PT|T24.132D|ICD10CM|Burn of first degree of left lower leg, subsequent encounter|Burn of first degree of left lower leg, subsequent encounter +C2872766|T037|PT|T24.132S|ICD10CM|Burn of first degree of left lower leg, sequela|Burn of first degree of left lower leg, sequela +C2872766|T037|AB|T24.132S|ICD10CM|Burn of first degree of left lower leg, sequela|Burn of first degree of left lower leg, sequela +C2872767|T037|AB|T24.139|ICD10CM|Burn of first degree of unspecified lower leg|Burn of first degree of unspecified lower leg +C2872767|T037|HT|T24.139|ICD10CM|Burn of first degree of unspecified lower leg|Burn of first degree of unspecified lower leg +C2872768|T037|AB|T24.139A|ICD10CM|Burn of first degree of unspecified lower leg, init encntr|Burn of first degree of unspecified lower leg, init encntr +C2872768|T037|PT|T24.139A|ICD10CM|Burn of first degree of unspecified lower leg, initial encounter|Burn of first degree of unspecified lower leg, initial encounter +C2872769|T037|AB|T24.139D|ICD10CM|Burn of first degree of unspecified lower leg, subs encntr|Burn of first degree of unspecified lower leg, subs encntr +C2872769|T037|PT|T24.139D|ICD10CM|Burn of first degree of unspecified lower leg, subsequent encounter|Burn of first degree of unspecified lower leg, subsequent encounter +C2872770|T037|PT|T24.139S|ICD10CM|Burn of first degree of unspecified lower leg, sequela|Burn of first degree of unspecified lower leg, sequela +C2872770|T037|AB|T24.139S|ICD10CM|Burn of first degree of unspecified lower leg, sequela|Burn of first degree of unspecified lower leg, sequela +C2872771|T037|AB|T24.19|ICD10CM|Burn of first deg mult sites of lower limb, except ank/ft|Burn of first deg mult sites of lower limb, except ank/ft +C2872771|T037|HT|T24.19|ICD10CM|Burn of first degree of multiple sites of lower limb, except ankle and foot|Burn of first degree of multiple sites of lower limb, except ankle and foot +C2872772|T037|AB|T24.191|ICD10CM|Burn first deg mult sites of right lower limb, except ank/ft|Burn first deg mult sites of right lower limb, except ank/ft +C2872772|T037|HT|T24.191|ICD10CM|Burn of first degree of multiple sites of right lower limb, except ankle and foot|Burn of first degree of multiple sites of right lower limb, except ankle and foot +C2872773|T037|AB|T24.191A|ICD10CM|Burn 1st deg mult sites of right lower limb, ex ank/ft, init|Burn 1st deg mult sites of right lower limb, ex ank/ft, init +C2872773|T037|PT|T24.191A|ICD10CM|Burn of first degree of multiple sites of right lower limb, except ankle and foot, initial encounter|Burn of first degree of multiple sites of right lower limb, except ankle and foot, initial encounter +C2872774|T037|AB|T24.191D|ICD10CM|Burn 1st deg mult sites of right lower limb, ex ank/ft, subs|Burn 1st deg mult sites of right lower limb, ex ank/ft, subs +C2872775|T037|AB|T24.191S|ICD10CM|Burn 1st deg mult sites of right lower limb, ex ank/ft, sqla|Burn 1st deg mult sites of right lower limb, ex ank/ft, sqla +C2872775|T037|PT|T24.191S|ICD10CM|Burn of first degree of multiple sites of right lower limb, except ankle and foot, sequela|Burn of first degree of multiple sites of right lower limb, except ankle and foot, sequela +C2872776|T037|AB|T24.192|ICD10CM|Burn first deg mult sites of left lower limb, except ank/ft|Burn first deg mult sites of left lower limb, except ank/ft +C2872776|T037|HT|T24.192|ICD10CM|Burn of first degree of multiple sites of left lower limb, except ankle and foot|Burn of first degree of multiple sites of left lower limb, except ankle and foot +C2872777|T037|AB|T24.192A|ICD10CM|Burn 1st deg mult sites of left lower limb, ex ank/ft, init|Burn 1st deg mult sites of left lower limb, ex ank/ft, init +C2872777|T037|PT|T24.192A|ICD10CM|Burn of first degree of multiple sites of left lower limb, except ankle and foot, initial encounter|Burn of first degree of multiple sites of left lower limb, except ankle and foot, initial encounter +C2872778|T037|AB|T24.192D|ICD10CM|Burn 1st deg mult sites of left lower limb, ex ank/ft, subs|Burn 1st deg mult sites of left lower limb, ex ank/ft, subs +C2872779|T037|AB|T24.192S|ICD10CM|Burn 1st deg mult sites of left lower limb, ex ank/ft, sqla|Burn 1st deg mult sites of left lower limb, ex ank/ft, sqla +C2872779|T037|PT|T24.192S|ICD10CM|Burn of first degree of multiple sites of left lower limb, except ankle and foot, sequela|Burn of first degree of multiple sites of left lower limb, except ankle and foot, sequela +C2872780|T037|AB|T24.199|ICD10CM|Burn first deg mult sites of unsp lower limb, except ank/ft|Burn first deg mult sites of unsp lower limb, except ank/ft +C2872780|T037|HT|T24.199|ICD10CM|Burn of first degree of multiple sites of unspecified lower limb, except ankle and foot|Burn of first degree of multiple sites of unspecified lower limb, except ankle and foot +C2872781|T037|AB|T24.199A|ICD10CM|Burn 1st deg mult sites of unsp lower limb, ex ank/ft, init|Burn 1st deg mult sites of unsp lower limb, ex ank/ft, init +C2872782|T037|AB|T24.199D|ICD10CM|Burn 1st deg mult sites of unsp lower limb, ex ank/ft, subs|Burn 1st deg mult sites of unsp lower limb, ex ank/ft, subs +C2872783|T037|AB|T24.199S|ICD10CM|Burn 1st deg mult sites of unsp lower limb, ex ank/ft, sqla|Burn 1st deg mult sites of unsp lower limb, ex ank/ft, sqla +C2872783|T037|PT|T24.199S|ICD10CM|Burn of first degree of multiple sites of unspecified lower limb, except ankle and foot, sequela|Burn of first degree of multiple sites of unspecified lower limb, except ankle and foot, sequela +C0496045|T037|PT|T24.2|ICD10|Burn of second degree of hip and lower limb, except ankle and foot|Burn of second degree of hip and lower limb, except ankle and foot +C2872784|T037|AB|T24.2|ICD10CM|Burn of second degree of lower limb, except ankle and foot|Burn of second degree of lower limb, except ankle and foot +C2872784|T037|HT|T24.2|ICD10CM|Burn of second degree of lower limb, except ankle and foot|Burn of second degree of lower limb, except ankle and foot +C2872785|T037|AB|T24.20|ICD10CM|Burn of second degree of unsp site lower limb, except ank/ft|Burn of second degree of unsp site lower limb, except ank/ft +C2872785|T037|HT|T24.20|ICD10CM|Burn of second degree of unspecified site of lower limb, except ankle and foot|Burn of second degree of unspecified site of lower limb, except ankle and foot +C2872786|T037|HT|T24.201|ICD10CM|Burn of second degree of unspecified site of right lower limb, except ankle and foot|Burn of second degree of unspecified site of right lower limb, except ankle and foot +C2872786|T037|AB|T24.201|ICD10CM|Burn second deg of unsp site right lower limb, except ank/ft|Burn second deg of unsp site right lower limb, except ank/ft +C2872787|T037|AB|T24.201A|ICD10CM|Burn 2nd deg of unsp site right lower limb, ex ank/ft, init|Burn 2nd deg of unsp site right lower limb, ex ank/ft, init +C2872788|T037|AB|T24.201D|ICD10CM|Burn 2nd deg of unsp site right lower limb, ex ank/ft, subs|Burn 2nd deg of unsp site right lower limb, ex ank/ft, subs +C2872789|T037|AB|T24.201S|ICD10CM|Burn 2nd deg of unsp site right lower limb, ex ank/ft, sqla|Burn 2nd deg of unsp site right lower limb, ex ank/ft, sqla +C2872789|T037|PT|T24.201S|ICD10CM|Burn of second degree of unspecified site of right lower limb, except ankle and foot, sequela|Burn of second degree of unspecified site of right lower limb, except ankle and foot, sequela +C2872790|T037|HT|T24.202|ICD10CM|Burn of second degree of unspecified site of left lower limb, except ankle and foot|Burn of second degree of unspecified site of left lower limb, except ankle and foot +C2872790|T037|AB|T24.202|ICD10CM|Burn second deg of unsp site left lower limb, except ank/ft|Burn second deg of unsp site left lower limb, except ank/ft +C2872791|T037|AB|T24.202A|ICD10CM|Burn 2nd deg of unsp site left lower limb, ex ank/ft, init|Burn 2nd deg of unsp site left lower limb, ex ank/ft, init +C2872792|T037|AB|T24.202D|ICD10CM|Burn 2nd deg of unsp site left lower limb, ex ank/ft, subs|Burn 2nd deg of unsp site left lower limb, ex ank/ft, subs +C2872793|T037|AB|T24.202S|ICD10CM|Burn 2nd deg of unsp site left lower limb, ex ank/ft, sqla|Burn 2nd deg of unsp site left lower limb, ex ank/ft, sqla +C2872793|T037|PT|T24.202S|ICD10CM|Burn of second degree of unspecified site of left lower limb, except ankle and foot, sequela|Burn of second degree of unspecified site of left lower limb, except ankle and foot, sequela +C2872794|T037|HT|T24.209|ICD10CM|Burn of second degree of unspecified site of unspecified lower limb, except ankle and foot|Burn of second degree of unspecified site of unspecified lower limb, except ankle and foot +C2872794|T037|AB|T24.209|ICD10CM|Burn second deg of unsp site unsp lower limb, except ank/ft|Burn second deg of unsp site unsp lower limb, except ank/ft +C2872795|T037|AB|T24.209A|ICD10CM|Burn 2nd deg of unsp site unsp lower limb, ex ank/ft, init|Burn 2nd deg of unsp site unsp lower limb, ex ank/ft, init +C2872796|T037|AB|T24.209D|ICD10CM|Burn 2nd deg of unsp site unsp lower limb, ex ank/ft, subs|Burn 2nd deg of unsp site unsp lower limb, ex ank/ft, subs +C2872797|T037|AB|T24.209S|ICD10CM|Burn 2nd deg of unsp site unsp lower limb, ex ank/ft, sqla|Burn 2nd deg of unsp site unsp lower limb, ex ank/ft, sqla +C2872797|T037|PT|T24.209S|ICD10CM|Burn of second degree of unspecified site of unspecified lower limb, except ankle and foot, sequela|Burn of second degree of unspecified site of unspecified lower limb, except ankle and foot, sequela +C0562091|T037|AB|T24.21|ICD10CM|Burn of second degree of thigh|Burn of second degree of thigh +C0562091|T037|HT|T24.21|ICD10CM|Burn of second degree of thigh|Burn of second degree of thigh +C2103892|T037|AB|T24.211|ICD10CM|Burn of second degree of right thigh|Burn of second degree of right thigh +C2103892|T037|HT|T24.211|ICD10CM|Burn of second degree of right thigh|Burn of second degree of right thigh +C2872798|T037|AB|T24.211A|ICD10CM|Burn of second degree of right thigh, initial encounter|Burn of second degree of right thigh, initial encounter +C2872798|T037|PT|T24.211A|ICD10CM|Burn of second degree of right thigh, initial encounter|Burn of second degree of right thigh, initial encounter +C2872799|T037|PT|T24.211D|ICD10CM|Burn of second degree of right thigh, subsequent encounter|Burn of second degree of right thigh, subsequent encounter +C2872799|T037|AB|T24.211D|ICD10CM|Burn of second degree of right thigh, subsequent encounter|Burn of second degree of right thigh, subsequent encounter +C2872800|T037|PT|T24.211S|ICD10CM|Burn of second degree of right thigh, sequela|Burn of second degree of right thigh, sequela +C2872800|T037|AB|T24.211S|ICD10CM|Burn of second degree of right thigh, sequela|Burn of second degree of right thigh, sequela +C2103898|T037|AB|T24.212|ICD10CM|Burn of second degree of left thigh|Burn of second degree of left thigh +C2103898|T037|HT|T24.212|ICD10CM|Burn of second degree of left thigh|Burn of second degree of left thigh +C2872801|T037|PT|T24.212A|ICD10CM|Burn of second degree of left thigh, initial encounter|Burn of second degree of left thigh, initial encounter +C2872801|T037|AB|T24.212A|ICD10CM|Burn of second degree of left thigh, initial encounter|Burn of second degree of left thigh, initial encounter +C2872802|T037|PT|T24.212D|ICD10CM|Burn of second degree of left thigh, subsequent encounter|Burn of second degree of left thigh, subsequent encounter +C2872802|T037|AB|T24.212D|ICD10CM|Burn of second degree of left thigh, subsequent encounter|Burn of second degree of left thigh, subsequent encounter +C2872803|T037|PT|T24.212S|ICD10CM|Burn of second degree of left thigh, sequela|Burn of second degree of left thigh, sequela +C2872803|T037|AB|T24.212S|ICD10CM|Burn of second degree of left thigh, sequela|Burn of second degree of left thigh, sequela +C2872804|T037|AB|T24.219|ICD10CM|Burn of second degree of unspecified thigh|Burn of second degree of unspecified thigh +C2872804|T037|HT|T24.219|ICD10CM|Burn of second degree of unspecified thigh|Burn of second degree of unspecified thigh +C2872805|T037|AB|T24.219A|ICD10CM|Burn of second degree of unspecified thigh, init encntr|Burn of second degree of unspecified thigh, init encntr +C2872805|T037|PT|T24.219A|ICD10CM|Burn of second degree of unspecified thigh, initial encounter|Burn of second degree of unspecified thigh, initial encounter +C2872806|T037|AB|T24.219D|ICD10CM|Burn of second degree of unspecified thigh, subs encntr|Burn of second degree of unspecified thigh, subs encntr +C2872806|T037|PT|T24.219D|ICD10CM|Burn of second degree of unspecified thigh, subsequent encounter|Burn of second degree of unspecified thigh, subsequent encounter +C2872807|T037|PT|T24.219S|ICD10CM|Burn of second degree of unspecified thigh, sequela|Burn of second degree of unspecified thigh, sequela +C2872807|T037|AB|T24.219S|ICD10CM|Burn of second degree of unspecified thigh, sequela|Burn of second degree of unspecified thigh, sequela +C0562092|T037|AB|T24.22|ICD10CM|Burn of second degree of knee|Burn of second degree of knee +C0562092|T037|HT|T24.22|ICD10CM|Burn of second degree of knee|Burn of second degree of knee +C2103891|T037|AB|T24.221|ICD10CM|Burn of second degree of right knee|Burn of second degree of right knee +C2103891|T037|HT|T24.221|ICD10CM|Burn of second degree of right knee|Burn of second degree of right knee +C2872808|T037|PT|T24.221A|ICD10CM|Burn of second degree of right knee, initial encounter|Burn of second degree of right knee, initial encounter +C2872808|T037|AB|T24.221A|ICD10CM|Burn of second degree of right knee, initial encounter|Burn of second degree of right knee, initial encounter +C2872809|T037|PT|T24.221D|ICD10CM|Burn of second degree of right knee, subsequent encounter|Burn of second degree of right knee, subsequent encounter +C2872809|T037|AB|T24.221D|ICD10CM|Burn of second degree of right knee, subsequent encounter|Burn of second degree of right knee, subsequent encounter +C2872810|T037|PT|T24.221S|ICD10CM|Burn of second degree of right knee, sequela|Burn of second degree of right knee, sequela +C2872810|T037|AB|T24.221S|ICD10CM|Burn of second degree of right knee, sequela|Burn of second degree of right knee, sequela +C2103897|T037|AB|T24.222|ICD10CM|Burn of second degree of left knee|Burn of second degree of left knee +C2103897|T037|HT|T24.222|ICD10CM|Burn of second degree of left knee|Burn of second degree of left knee +C2872811|T037|PT|T24.222A|ICD10CM|Burn of second degree of left knee, initial encounter|Burn of second degree of left knee, initial encounter +C2872811|T037|AB|T24.222A|ICD10CM|Burn of second degree of left knee, initial encounter|Burn of second degree of left knee, initial encounter +C2872812|T037|PT|T24.222D|ICD10CM|Burn of second degree of left knee, subsequent encounter|Burn of second degree of left knee, subsequent encounter +C2872812|T037|AB|T24.222D|ICD10CM|Burn of second degree of left knee, subsequent encounter|Burn of second degree of left knee, subsequent encounter +C2872813|T037|PT|T24.222S|ICD10CM|Burn of second degree of left knee, sequela|Burn of second degree of left knee, sequela +C2872813|T037|AB|T24.222S|ICD10CM|Burn of second degree of left knee, sequela|Burn of second degree of left knee, sequela +C2872814|T037|AB|T24.229|ICD10CM|Burn of second degree of unspecified knee|Burn of second degree of unspecified knee +C2872814|T037|HT|T24.229|ICD10CM|Burn of second degree of unspecified knee|Burn of second degree of unspecified knee +C2872815|T037|AB|T24.229A|ICD10CM|Burn of second degree of unspecified knee, initial encounter|Burn of second degree of unspecified knee, initial encounter +C2872815|T037|PT|T24.229A|ICD10CM|Burn of second degree of unspecified knee, initial encounter|Burn of second degree of unspecified knee, initial encounter +C2872816|T037|AB|T24.229D|ICD10CM|Burn of second degree of unspecified knee, subs encntr|Burn of second degree of unspecified knee, subs encntr +C2872816|T037|PT|T24.229D|ICD10CM|Burn of second degree of unspecified knee, subsequent encounter|Burn of second degree of unspecified knee, subsequent encounter +C2872817|T037|PT|T24.229S|ICD10CM|Burn of second degree of unspecified knee, sequela|Burn of second degree of unspecified knee, sequela +C2872817|T037|AB|T24.229S|ICD10CM|Burn of second degree of unspecified knee, sequela|Burn of second degree of unspecified knee, sequela +C0562093|T037|AB|T24.23|ICD10CM|Burn of second degree of lower leg|Burn of second degree of lower leg +C0562093|T037|HT|T24.23|ICD10CM|Burn of second degree of lower leg|Burn of second degree of lower leg +C2103890|T037|AB|T24.231|ICD10CM|Burn of second degree of right lower leg|Burn of second degree of right lower leg +C2103890|T037|HT|T24.231|ICD10CM|Burn of second degree of right lower leg|Burn of second degree of right lower leg +C2872818|T037|PT|T24.231A|ICD10CM|Burn of second degree of right lower leg, initial encounter|Burn of second degree of right lower leg, initial encounter +C2872818|T037|AB|T24.231A|ICD10CM|Burn of second degree of right lower leg, initial encounter|Burn of second degree of right lower leg, initial encounter +C2872819|T037|AB|T24.231D|ICD10CM|Burn of second degree of right lower leg, subs encntr|Burn of second degree of right lower leg, subs encntr +C2872819|T037|PT|T24.231D|ICD10CM|Burn of second degree of right lower leg, subsequent encounter|Burn of second degree of right lower leg, subsequent encounter +C2872820|T037|PT|T24.231S|ICD10CM|Burn of second degree of right lower leg, sequela|Burn of second degree of right lower leg, sequela +C2872820|T037|AB|T24.231S|ICD10CM|Burn of second degree of right lower leg, sequela|Burn of second degree of right lower leg, sequela +C2103896|T037|AB|T24.232|ICD10CM|Burn of second degree of left lower leg|Burn of second degree of left lower leg +C2103896|T037|HT|T24.232|ICD10CM|Burn of second degree of left lower leg|Burn of second degree of left lower leg +C2872821|T037|PT|T24.232A|ICD10CM|Burn of second degree of left lower leg, initial encounter|Burn of second degree of left lower leg, initial encounter +C2872821|T037|AB|T24.232A|ICD10CM|Burn of second degree of left lower leg, initial encounter|Burn of second degree of left lower leg, initial encounter +C2872822|T037|AB|T24.232D|ICD10CM|Burn of second degree of left lower leg, subs encntr|Burn of second degree of left lower leg, subs encntr +C2872822|T037|PT|T24.232D|ICD10CM|Burn of second degree of left lower leg, subsequent encounter|Burn of second degree of left lower leg, subsequent encounter +C2872823|T037|PT|T24.232S|ICD10CM|Burn of second degree of left lower leg, sequela|Burn of second degree of left lower leg, sequela +C2872823|T037|AB|T24.232S|ICD10CM|Burn of second degree of left lower leg, sequela|Burn of second degree of left lower leg, sequela +C2872824|T037|AB|T24.239|ICD10CM|Burn of second degree of unspecified lower leg|Burn of second degree of unspecified lower leg +C2872824|T037|HT|T24.239|ICD10CM|Burn of second degree of unspecified lower leg|Burn of second degree of unspecified lower leg +C2872825|T037|AB|T24.239A|ICD10CM|Burn of second degree of unspecified lower leg, init encntr|Burn of second degree of unspecified lower leg, init encntr +C2872825|T037|PT|T24.239A|ICD10CM|Burn of second degree of unspecified lower leg, initial encounter|Burn of second degree of unspecified lower leg, initial encounter +C2872826|T037|AB|T24.239D|ICD10CM|Burn of second degree of unspecified lower leg, subs encntr|Burn of second degree of unspecified lower leg, subs encntr +C2872826|T037|PT|T24.239D|ICD10CM|Burn of second degree of unspecified lower leg, subsequent encounter|Burn of second degree of unspecified lower leg, subsequent encounter +C2872827|T037|AB|T24.239S|ICD10CM|Burn of second degree of unspecified lower leg, sequela|Burn of second degree of unspecified lower leg, sequela +C2872827|T037|PT|T24.239S|ICD10CM|Burn of second degree of unspecified lower leg, sequela|Burn of second degree of unspecified lower leg, sequela +C2872828|T037|AB|T24.29|ICD10CM|Burn of 2nd deg mul sites of lower limb, except ank/ft|Burn of 2nd deg mul sites of lower limb, except ank/ft +C2872828|T037|HT|T24.29|ICD10CM|Burn of second degree of multiple sites of lower limb, except ankle and foot|Burn of second degree of multiple sites of lower limb, except ankle and foot +C2872829|T037|AB|T24.291|ICD10CM|Burn of 2nd deg mul sites of right lower limb, except ank/ft|Burn of 2nd deg mul sites of right lower limb, except ank/ft +C2872829|T037|HT|T24.291|ICD10CM|Burn of second degree of multiple sites of right lower limb, except ankle and foot|Burn of second degree of multiple sites of right lower limb, except ankle and foot +C2872830|T037|AB|T24.291A|ICD10CM|Burn 2nd deg mul sites of right lower limb, ex ank/ft, init|Burn 2nd deg mul sites of right lower limb, ex ank/ft, init +C2872831|T037|AB|T24.291D|ICD10CM|Burn 2nd deg mul sites of right lower limb, ex ank/ft, subs|Burn 2nd deg mul sites of right lower limb, ex ank/ft, subs +C2872832|T037|AB|T24.291S|ICD10CM|Burn 2nd deg mul sites of right lower limb, ex ank/ft, sqla|Burn 2nd deg mul sites of right lower limb, ex ank/ft, sqla +C2872832|T037|PT|T24.291S|ICD10CM|Burn of second degree of multiple sites of right lower limb, except ankle and foot, sequela|Burn of second degree of multiple sites of right lower limb, except ankle and foot, sequela +C2872833|T037|AB|T24.292|ICD10CM|Burn of 2nd deg mul sites of left lower limb, except ank/ft|Burn of 2nd deg mul sites of left lower limb, except ank/ft +C2872833|T037|HT|T24.292|ICD10CM|Burn of second degree of multiple sites of left lower limb, except ankle and foot|Burn of second degree of multiple sites of left lower limb, except ankle and foot +C2872834|T037|AB|T24.292A|ICD10CM|Burn 2nd deg mul sites of left lower limb, ex ank/ft, init|Burn 2nd deg mul sites of left lower limb, ex ank/ft, init +C2872834|T037|PT|T24.292A|ICD10CM|Burn of second degree of multiple sites of left lower limb, except ankle and foot, initial encounter|Burn of second degree of multiple sites of left lower limb, except ankle and foot, initial encounter +C2872835|T037|AB|T24.292D|ICD10CM|Burn 2nd deg mul sites of left lower limb, ex ank/ft, subs|Burn 2nd deg mul sites of left lower limb, ex ank/ft, subs +C2872836|T037|AB|T24.292S|ICD10CM|Burn 2nd deg mul sites of left lower limb, ex ank/ft, sqla|Burn 2nd deg mul sites of left lower limb, ex ank/ft, sqla +C2872836|T037|PT|T24.292S|ICD10CM|Burn of second degree of multiple sites of left lower limb, except ankle and foot, sequela|Burn of second degree of multiple sites of left lower limb, except ankle and foot, sequela +C2872837|T037|AB|T24.299|ICD10CM|Burn of 2nd deg mul sites of unsp lower limb, except ank/ft|Burn of 2nd deg mul sites of unsp lower limb, except ank/ft +C2872837|T037|HT|T24.299|ICD10CM|Burn of second degree of multiple sites of unspecified lower limb, except ankle and foot|Burn of second degree of multiple sites of unspecified lower limb, except ankle and foot +C2872838|T037|AB|T24.299A|ICD10CM|Burn 2nd deg mul sites of unsp lower limb, ex ank/ft, init|Burn 2nd deg mul sites of unsp lower limb, ex ank/ft, init +C2872839|T037|AB|T24.299D|ICD10CM|Burn 2nd deg mul sites of unsp lower limb, ex ank/ft, subs|Burn 2nd deg mul sites of unsp lower limb, ex ank/ft, subs +C2872840|T037|AB|T24.299S|ICD10CM|Burn 2nd deg mul sites of unsp lower limb, ex ank/ft, sqla|Burn 2nd deg mul sites of unsp lower limb, ex ank/ft, sqla +C2872840|T037|PT|T24.299S|ICD10CM|Burn of second degree of multiple sites of unspecified lower limb, except ankle and foot, sequela|Burn of second degree of multiple sites of unspecified lower limb, except ankle and foot, sequela +C0496046|T037|PT|T24.3|ICD10|Burn of third degree of hip and lower limb, except ankle and foot|Burn of third degree of hip and lower limb, except ankle and foot +C2872841|T037|AB|T24.3|ICD10CM|Burn of third degree of lower limb, except ankle and foot|Burn of third degree of lower limb, except ankle and foot +C2872841|T037|HT|T24.3|ICD10CM|Burn of third degree of lower limb, except ankle and foot|Burn of third degree of lower limb, except ankle and foot +C2872842|T037|AB|T24.30|ICD10CM|Burn of third degree of unsp site lower limb, except ank/ft|Burn of third degree of unsp site lower limb, except ank/ft +C2872842|T037|HT|T24.30|ICD10CM|Burn of third degree of unspecified site of lower limb, except ankle and foot|Burn of third degree of unspecified site of lower limb, except ankle and foot +C2872843|T037|HT|T24.301|ICD10CM|Burn of third degree of unspecified site of right lower limb, except ankle and foot|Burn of third degree of unspecified site of right lower limb, except ankle and foot +C2872843|T037|AB|T24.301|ICD10CM|Burn third deg of unsp site right lower limb, except ank/ft|Burn third deg of unsp site right lower limb, except ank/ft +C2872844|T037|AB|T24.301A|ICD10CM|Burn third deg of unsp site right low limb, ex ank/ft, init|Burn third deg of unsp site right low limb, ex ank/ft, init +C2872845|T037|AB|T24.301D|ICD10CM|Burn third deg of unsp site right low limb, ex ank/ft, subs|Burn third deg of unsp site right low limb, ex ank/ft, subs +C2872846|T037|PT|T24.301S|ICD10CM|Burn of third degree of unspecified site of right lower limb, except ankle and foot, sequela|Burn of third degree of unspecified site of right lower limb, except ankle and foot, sequela +C2872846|T037|AB|T24.301S|ICD10CM|Burn third deg of unsp site right low limb, ex ank/ft, sqla|Burn third deg of unsp site right low limb, ex ank/ft, sqla +C2872847|T037|HT|T24.302|ICD10CM|Burn of third degree of unspecified site of left lower limb, except ankle and foot|Burn of third degree of unspecified site of left lower limb, except ankle and foot +C2872847|T037|AB|T24.302|ICD10CM|Burn third deg of unsp site left lower limb, except ank/ft|Burn third deg of unsp site left lower limb, except ank/ft +C2872848|T037|AB|T24.302A|ICD10CM|Burn third deg of unsp site left lower limb, ex ank/ft, init|Burn third deg of unsp site left lower limb, ex ank/ft, init +C2872849|T037|AB|T24.302D|ICD10CM|Burn third deg of unsp site left lower limb, ex ank/ft, subs|Burn third deg of unsp site left lower limb, ex ank/ft, subs +C2872850|T037|PT|T24.302S|ICD10CM|Burn of third degree of unspecified site of left lower limb, except ankle and foot, sequela|Burn of third degree of unspecified site of left lower limb, except ankle and foot, sequela +C2872850|T037|AB|T24.302S|ICD10CM|Burn third deg of unsp site left lower limb, ex ank/ft, sqla|Burn third deg of unsp site left lower limb, ex ank/ft, sqla +C2872851|T037|HT|T24.309|ICD10CM|Burn of third degree of unspecified site of unspecified lower limb, except ankle and foot|Burn of third degree of unspecified site of unspecified lower limb, except ankle and foot +C2872851|T037|AB|T24.309|ICD10CM|Burn third deg of unsp site unsp lower limb, except ank/ft|Burn third deg of unsp site unsp lower limb, except ank/ft +C2872852|T037|AB|T24.309A|ICD10CM|Burn third deg of unsp site unsp lower limb, ex ank/ft, init|Burn third deg of unsp site unsp lower limb, ex ank/ft, init +C2872853|T037|AB|T24.309D|ICD10CM|Burn third deg of unsp site unsp lower limb, ex ank/ft, subs|Burn third deg of unsp site unsp lower limb, ex ank/ft, subs +C2872854|T037|PT|T24.309S|ICD10CM|Burn of third degree of unspecified site of unspecified lower limb, except ankle and foot, sequela|Burn of third degree of unspecified site of unspecified lower limb, except ankle and foot, sequela +C2872854|T037|AB|T24.309S|ICD10CM|Burn third deg of unsp site unsp lower limb, ex ank/ft, sqla|Burn third deg of unsp site unsp lower limb, ex ank/ft, sqla +C0433577|T037|AB|T24.31|ICD10CM|Burn of third degree of thigh|Burn of third degree of thigh +C0433577|T037|HT|T24.31|ICD10CM|Burn of third degree of thigh|Burn of third degree of thigh +C2083645|T037|AB|T24.311|ICD10CM|Burn of third degree of right thigh|Burn of third degree of right thigh +C2083645|T037|HT|T24.311|ICD10CM|Burn of third degree of right thigh|Burn of third degree of right thigh +C2872855|T037|PT|T24.311A|ICD10CM|Burn of third degree of right thigh, initial encounter|Burn of third degree of right thigh, initial encounter +C2872855|T037|AB|T24.311A|ICD10CM|Burn of third degree of right thigh, initial encounter|Burn of third degree of right thigh, initial encounter +C2872856|T037|PT|T24.311D|ICD10CM|Burn of third degree of right thigh, subsequent encounter|Burn of third degree of right thigh, subsequent encounter +C2872856|T037|AB|T24.311D|ICD10CM|Burn of third degree of right thigh, subsequent encounter|Burn of third degree of right thigh, subsequent encounter +C2872857|T037|PT|T24.311S|ICD10CM|Burn of third degree of right thigh, sequela|Burn of third degree of right thigh, sequela +C2872857|T037|AB|T24.311S|ICD10CM|Burn of third degree of right thigh, sequela|Burn of third degree of right thigh, sequela +C2083605|T037|AB|T24.312|ICD10CM|Burn of third degree of left thigh|Burn of third degree of left thigh +C2083605|T037|HT|T24.312|ICD10CM|Burn of third degree of left thigh|Burn of third degree of left thigh +C2872858|T037|PT|T24.312A|ICD10CM|Burn of third degree of left thigh, initial encounter|Burn of third degree of left thigh, initial encounter +C2872858|T037|AB|T24.312A|ICD10CM|Burn of third degree of left thigh, initial encounter|Burn of third degree of left thigh, initial encounter +C2872859|T037|PT|T24.312D|ICD10CM|Burn of third degree of left thigh, subsequent encounter|Burn of third degree of left thigh, subsequent encounter +C2872859|T037|AB|T24.312D|ICD10CM|Burn of third degree of left thigh, subsequent encounter|Burn of third degree of left thigh, subsequent encounter +C2872860|T037|PT|T24.312S|ICD10CM|Burn of third degree of left thigh, sequela|Burn of third degree of left thigh, sequela +C2872860|T037|AB|T24.312S|ICD10CM|Burn of third degree of left thigh, sequela|Burn of third degree of left thigh, sequela +C2872861|T037|AB|T24.319|ICD10CM|Burn of third degree of unspecified thigh|Burn of third degree of unspecified thigh +C2872861|T037|HT|T24.319|ICD10CM|Burn of third degree of unspecified thigh|Burn of third degree of unspecified thigh +C2872862|T037|AB|T24.319A|ICD10CM|Burn of third degree of unspecified thigh, initial encounter|Burn of third degree of unspecified thigh, initial encounter +C2872862|T037|PT|T24.319A|ICD10CM|Burn of third degree of unspecified thigh, initial encounter|Burn of third degree of unspecified thigh, initial encounter +C2872863|T037|AB|T24.319D|ICD10CM|Burn of third degree of unspecified thigh, subs encntr|Burn of third degree of unspecified thigh, subs encntr +C2872863|T037|PT|T24.319D|ICD10CM|Burn of third degree of unspecified thigh, subsequent encounter|Burn of third degree of unspecified thigh, subsequent encounter +C2872864|T037|PT|T24.319S|ICD10CM|Burn of third degree of unspecified thigh, sequela|Burn of third degree of unspecified thigh, sequela +C2872864|T037|AB|T24.319S|ICD10CM|Burn of third degree of unspecified thigh, sequela|Burn of third degree of unspecified thigh, sequela +C0433578|T037|AB|T24.32|ICD10CM|Burn of third degree of knee|Burn of third degree of knee +C0433578|T037|HT|T24.32|ICD10CM|Burn of third degree of knee|Burn of third degree of knee +C2083636|T037|AB|T24.321|ICD10CM|Burn of third degree of right knee|Burn of third degree of right knee +C2083636|T037|HT|T24.321|ICD10CM|Burn of third degree of right knee|Burn of third degree of right knee +C2872865|T037|PT|T24.321A|ICD10CM|Burn of third degree of right knee, initial encounter|Burn of third degree of right knee, initial encounter +C2872865|T037|AB|T24.321A|ICD10CM|Burn of third degree of right knee, initial encounter|Burn of third degree of right knee, initial encounter +C2872866|T037|PT|T24.321D|ICD10CM|Burn of third degree of right knee, subsequent encounter|Burn of third degree of right knee, subsequent encounter +C2872866|T037|AB|T24.321D|ICD10CM|Burn of third degree of right knee, subsequent encounter|Burn of third degree of right knee, subsequent encounter +C2872867|T037|PT|T24.321S|ICD10CM|Burn of third degree of right knee, sequela|Burn of third degree of right knee, sequela +C2872867|T037|AB|T24.321S|ICD10CM|Burn of third degree of right knee, sequela|Burn of third degree of right knee, sequela +C2083596|T037|AB|T24.322|ICD10CM|Burn of third degree of left knee|Burn of third degree of left knee +C2083596|T037|HT|T24.322|ICD10CM|Burn of third degree of left knee|Burn of third degree of left knee +C2872868|T037|PT|T24.322A|ICD10CM|Burn of third degree of left knee, initial encounter|Burn of third degree of left knee, initial encounter +C2872868|T037|AB|T24.322A|ICD10CM|Burn of third degree of left knee, initial encounter|Burn of third degree of left knee, initial encounter +C2872869|T037|AB|T24.322D|ICD10CM|Burn of third degree of left knee, subsequent encounter|Burn of third degree of left knee, subsequent encounter +C2872869|T037|PT|T24.322D|ICD10CM|Burn of third degree of left knee, subsequent encounter|Burn of third degree of left knee, subsequent encounter +C2872870|T037|PT|T24.322S|ICD10CM|Burn of third degree of left knee, sequela|Burn of third degree of left knee, sequela +C2872870|T037|AB|T24.322S|ICD10CM|Burn of third degree of left knee, sequela|Burn of third degree of left knee, sequela +C2872871|T037|AB|T24.329|ICD10CM|Burn of third degree of unspecified knee|Burn of third degree of unspecified knee +C2872871|T037|HT|T24.329|ICD10CM|Burn of third degree of unspecified knee|Burn of third degree of unspecified knee +C2872872|T037|PT|T24.329A|ICD10CM|Burn of third degree of unspecified knee, initial encounter|Burn of third degree of unspecified knee, initial encounter +C2872872|T037|AB|T24.329A|ICD10CM|Burn of third degree of unspecified knee, initial encounter|Burn of third degree of unspecified knee, initial encounter +C2872873|T037|AB|T24.329D|ICD10CM|Burn of third degree of unspecified knee, subs encntr|Burn of third degree of unspecified knee, subs encntr +C2872873|T037|PT|T24.329D|ICD10CM|Burn of third degree of unspecified knee, subsequent encounter|Burn of third degree of unspecified knee, subsequent encounter +C2872874|T037|PT|T24.329S|ICD10CM|Burn of third degree of unspecified knee, sequela|Burn of third degree of unspecified knee, sequela +C2872874|T037|AB|T24.329S|ICD10CM|Burn of third degree of unspecified knee, sequela|Burn of third degree of unspecified knee, sequela +C0433579|T037|AB|T24.33|ICD10CM|Burn of third degree of lower leg|Burn of third degree of lower leg +C0433579|T037|HT|T24.33|ICD10CM|Burn of third degree of lower leg|Burn of third degree of lower leg +C2083640|T037|AB|T24.331|ICD10CM|Burn of third degree of right lower leg|Burn of third degree of right lower leg +C2083640|T037|HT|T24.331|ICD10CM|Burn of third degree of right lower leg|Burn of third degree of right lower leg +C2872875|T037|PT|T24.331A|ICD10CM|Burn of third degree of right lower leg, initial encounter|Burn of third degree of right lower leg, initial encounter +C2872875|T037|AB|T24.331A|ICD10CM|Burn of third degree of right lower leg, initial encounter|Burn of third degree of right lower leg, initial encounter +C2872876|T037|AB|T24.331D|ICD10CM|Burn of third degree of right lower leg, subs encntr|Burn of third degree of right lower leg, subs encntr +C2872876|T037|PT|T24.331D|ICD10CM|Burn of third degree of right lower leg, subsequent encounter|Burn of third degree of right lower leg, subsequent encounter +C2872877|T037|PT|T24.331S|ICD10CM|Burn of third degree of right lower leg, sequela|Burn of third degree of right lower leg, sequela +C2872877|T037|AB|T24.331S|ICD10CM|Burn of third degree of right lower leg, sequela|Burn of third degree of right lower leg, sequela +C2083600|T037|AB|T24.332|ICD10CM|Burn of third degree of left lower leg|Burn of third degree of left lower leg +C2083600|T037|HT|T24.332|ICD10CM|Burn of third degree of left lower leg|Burn of third degree of left lower leg +C2872878|T037|PT|T24.332A|ICD10CM|Burn of third degree of left lower leg, initial encounter|Burn of third degree of left lower leg, initial encounter +C2872878|T037|AB|T24.332A|ICD10CM|Burn of third degree of left lower leg, initial encounter|Burn of third degree of left lower leg, initial encounter +C2872879|T037|AB|T24.332D|ICD10CM|Burn of third degree of left lower leg, subsequent encounter|Burn of third degree of left lower leg, subsequent encounter +C2872879|T037|PT|T24.332D|ICD10CM|Burn of third degree of left lower leg, subsequent encounter|Burn of third degree of left lower leg, subsequent encounter +C2872880|T037|PT|T24.332S|ICD10CM|Burn of third degree of left lower leg, sequela|Burn of third degree of left lower leg, sequela +C2872880|T037|AB|T24.332S|ICD10CM|Burn of third degree of left lower leg, sequela|Burn of third degree of left lower leg, sequela +C2872881|T037|AB|T24.339|ICD10CM|Burn of third degree of unspecified lower leg|Burn of third degree of unspecified lower leg +C2872881|T037|HT|T24.339|ICD10CM|Burn of third degree of unspecified lower leg|Burn of third degree of unspecified lower leg +C2872882|T037|AB|T24.339A|ICD10CM|Burn of third degree of unspecified lower leg, init encntr|Burn of third degree of unspecified lower leg, init encntr +C2872882|T037|PT|T24.339A|ICD10CM|Burn of third degree of unspecified lower leg, initial encounter|Burn of third degree of unspecified lower leg, initial encounter +C2872883|T037|AB|T24.339D|ICD10CM|Burn of third degree of unspecified lower leg, subs encntr|Burn of third degree of unspecified lower leg, subs encntr +C2872883|T037|PT|T24.339D|ICD10CM|Burn of third degree of unspecified lower leg, subsequent encounter|Burn of third degree of unspecified lower leg, subsequent encounter +C2872884|T037|PT|T24.339S|ICD10CM|Burn of third degree of unspecified lower leg, sequela|Burn of third degree of unspecified lower leg, sequela +C2872884|T037|AB|T24.339S|ICD10CM|Burn of third degree of unspecified lower leg, sequela|Burn of third degree of unspecified lower leg, sequela +C2872885|T037|AB|T24.39|ICD10CM|Burn of 3rd deg mu sites of lower limb, except ank/ft|Burn of 3rd deg mu sites of lower limb, except ank/ft +C2872885|T037|HT|T24.39|ICD10CM|Burn of third degree of multiple sites of lower limb, except ankle and foot|Burn of third degree of multiple sites of lower limb, except ankle and foot +C2872886|T037|AB|T24.391|ICD10CM|Burn of 3rd deg mu sites of right lower limb, except ank/ft|Burn of 3rd deg mu sites of right lower limb, except ank/ft +C2872886|T037|HT|T24.391|ICD10CM|Burn of third degree of multiple sites of right lower limb, except ankle and foot|Burn of third degree of multiple sites of right lower limb, except ankle and foot +C2872887|T037|AB|T24.391A|ICD10CM|Burn 3rd deg mu sites of right lower limb, ex ank/ft, init|Burn 3rd deg mu sites of right lower limb, ex ank/ft, init +C2872887|T037|PT|T24.391A|ICD10CM|Burn of third degree of multiple sites of right lower limb, except ankle and foot, initial encounter|Burn of third degree of multiple sites of right lower limb, except ankle and foot, initial encounter +C2872888|T037|AB|T24.391D|ICD10CM|Burn 3rd deg mu sites of right lower limb, ex ank/ft, subs|Burn 3rd deg mu sites of right lower limb, ex ank/ft, subs +C2872889|T037|AB|T24.391S|ICD10CM|Burn 3rd deg mu sites of right lower limb, ex ank/ft, sqla|Burn 3rd deg mu sites of right lower limb, ex ank/ft, sqla +C2872889|T037|PT|T24.391S|ICD10CM|Burn of third degree of multiple sites of right lower limb, except ankle and foot, sequela|Burn of third degree of multiple sites of right lower limb, except ankle and foot, sequela +C2872890|T037|AB|T24.392|ICD10CM|Burn of 3rd deg mu sites of left lower limb, except ank/ft|Burn of 3rd deg mu sites of left lower limb, except ank/ft +C2872890|T037|HT|T24.392|ICD10CM|Burn of third degree of multiple sites of left lower limb, except ankle and foot|Burn of third degree of multiple sites of left lower limb, except ankle and foot +C2872891|T037|AB|T24.392A|ICD10CM|Burn 3rd deg mu sites of left lower limb, ex ank/ft, init|Burn 3rd deg mu sites of left lower limb, ex ank/ft, init +C2872891|T037|PT|T24.392A|ICD10CM|Burn of third degree of multiple sites of left lower limb, except ankle and foot, initial encounter|Burn of third degree of multiple sites of left lower limb, except ankle and foot, initial encounter +C2872892|T037|AB|T24.392D|ICD10CM|Burn 3rd deg mu sites of left lower limb, ex ank/ft, subs|Burn 3rd deg mu sites of left lower limb, ex ank/ft, subs +C2872893|T037|AB|T24.392S|ICD10CM|Burn 3rd deg mu sites of left lower limb, ex ank/ft, sqla|Burn 3rd deg mu sites of left lower limb, ex ank/ft, sqla +C2872893|T037|PT|T24.392S|ICD10CM|Burn of third degree of multiple sites of left lower limb, except ankle and foot, sequela|Burn of third degree of multiple sites of left lower limb, except ankle and foot, sequela +C2872894|T037|AB|T24.399|ICD10CM|Burn of 3rd deg mu sites of unsp lower limb, except ank/ft|Burn of 3rd deg mu sites of unsp lower limb, except ank/ft +C2872894|T037|HT|T24.399|ICD10CM|Burn of third degree of multiple sites of unspecified lower limb, except ankle and foot|Burn of third degree of multiple sites of unspecified lower limb, except ankle and foot +C2872895|T037|AB|T24.399A|ICD10CM|Burn 3rd deg mu sites of unsp lower limb, ex ank/ft, init|Burn 3rd deg mu sites of unsp lower limb, ex ank/ft, init +C2872896|T037|AB|T24.399D|ICD10CM|Burn 3rd deg mu sites of unsp lower limb, ex ank/ft, subs|Burn 3rd deg mu sites of unsp lower limb, ex ank/ft, subs +C2872897|T037|AB|T24.399S|ICD10CM|Burn 3rd deg mu sites of unsp lower limb, ex ank/ft, sqla|Burn 3rd deg mu sites of unsp lower limb, ex ank/ft, sqla +C2872897|T037|PT|T24.399S|ICD10CM|Burn of third degree of multiple sites of unspecified lower limb, except ankle and foot, sequela|Burn of third degree of multiple sites of unspecified lower limb, except ankle and foot, sequela +C2872898|T037|AB|T24.4|ICD10CM|Corrosion of unsp degree of lower limb, except ank/ft|Corrosion of unsp degree of lower limb, except ank/ft +C0496047|T037|PT|T24.4|ICD10|Corrosion of unspecified degree of hip and lower limb, except ankle and foot|Corrosion of unspecified degree of hip and lower limb, except ankle and foot +C2872898|T037|HT|T24.4|ICD10CM|Corrosion of unspecified degree of lower limb, except ankle and foot|Corrosion of unspecified degree of lower limb, except ankle and foot +C2872899|T037|AB|T24.40|ICD10CM|Corros unsp degree of unsp site lower limb, except ank/ft|Corros unsp degree of unsp site lower limb, except ank/ft +C2872899|T037|HT|T24.40|ICD10CM|Corrosion of unspecified degree of unspecified site of lower limb, except ankle and foot|Corrosion of unspecified degree of unspecified site of lower limb, except ankle and foot +C2872900|T037|AB|T24.401|ICD10CM|Corros unsp deg of unsp site right lower limb, except ank/ft|Corros unsp deg of unsp site right lower limb, except ank/ft +C2872900|T037|HT|T24.401|ICD10CM|Corrosion of unspecified degree of unspecified site of right lower limb, except ankle and foot|Corrosion of unspecified degree of unspecified site of right lower limb, except ankle and foot +C2872901|T037|AB|T24.401A|ICD10CM|Corros unsp deg of unsp site right low limb, ex ank/ft, init|Corros unsp deg of unsp site right low limb, ex ank/ft, init +C2872902|T037|AB|T24.401D|ICD10CM|Corros unsp deg of unsp site right low limb, ex ank/ft, subs|Corros unsp deg of unsp site right low limb, ex ank/ft, subs +C2872903|T037|AB|T24.401S|ICD10CM|Corros unsp deg of unsp site right low limb, ex ank/ft, sqla|Corros unsp deg of unsp site right low limb, ex ank/ft, sqla +C2872904|T037|AB|T24.402|ICD10CM|Corros unsp deg of unsp site left lower limb, except ank/ft|Corros unsp deg of unsp site left lower limb, except ank/ft +C2872904|T037|HT|T24.402|ICD10CM|Corrosion of unspecified degree of unspecified site of left lower limb, except ankle and foot|Corrosion of unspecified degree of unspecified site of left lower limb, except ankle and foot +C2872905|T037|AB|T24.402A|ICD10CM|Corros unsp deg of unsp site left low limb, ex ank/ft, init|Corros unsp deg of unsp site left low limb, ex ank/ft, init +C2872906|T037|AB|T24.402D|ICD10CM|Corros unsp deg of unsp site left low limb, ex ank/ft, subs|Corros unsp deg of unsp site left low limb, ex ank/ft, subs +C2872907|T037|AB|T24.402S|ICD10CM|Corros unsp deg of unsp site left low limb, ex ank/ft, sqla|Corros unsp deg of unsp site left low limb, ex ank/ft, sqla +C2872908|T037|AB|T24.409|ICD10CM|Corros unsp deg of unsp site unsp lower limb, except ank/ft|Corros unsp deg of unsp site unsp lower limb, except ank/ft +C2872908|T037|HT|T24.409|ICD10CM|Corrosion of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot|Corrosion of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot +C2872909|T037|AB|T24.409A|ICD10CM|Corros unsp deg of unsp site unsp low limb, ex ank/ft, init|Corros unsp deg of unsp site unsp low limb, ex ank/ft, init +C2872910|T037|AB|T24.409D|ICD10CM|Corros unsp deg of unsp site unsp low limb, ex ank/ft, subs|Corros unsp deg of unsp site unsp low limb, ex ank/ft, subs +C2872911|T037|AB|T24.409S|ICD10CM|Corros unsp deg of unsp site unsp low limb, ex ank/ft, sqla|Corros unsp deg of unsp site unsp low limb, ex ank/ft, sqla +C2872912|T037|AB|T24.41|ICD10CM|Corrosion of unspecified degree of thigh|Corrosion of unspecified degree of thigh +C2872912|T037|HT|T24.41|ICD10CM|Corrosion of unspecified degree of thigh|Corrosion of unspecified degree of thigh +C2872913|T037|AB|T24.411|ICD10CM|Corrosion of unspecified degree of right thigh|Corrosion of unspecified degree of right thigh +C2872913|T037|HT|T24.411|ICD10CM|Corrosion of unspecified degree of right thigh|Corrosion of unspecified degree of right thigh +C2872914|T037|AB|T24.411A|ICD10CM|Corrosion of unspecified degree of right thigh, init encntr|Corrosion of unspecified degree of right thigh, init encntr +C2872914|T037|PT|T24.411A|ICD10CM|Corrosion of unspecified degree of right thigh, initial encounter|Corrosion of unspecified degree of right thigh, initial encounter +C2872915|T037|AB|T24.411D|ICD10CM|Corrosion of unspecified degree of right thigh, subs encntr|Corrosion of unspecified degree of right thigh, subs encntr +C2872915|T037|PT|T24.411D|ICD10CM|Corrosion of unspecified degree of right thigh, subsequent encounter|Corrosion of unspecified degree of right thigh, subsequent encounter +C2872916|T037|PT|T24.411S|ICD10CM|Corrosion of unspecified degree of right thigh, sequela|Corrosion of unspecified degree of right thigh, sequela +C2872916|T037|AB|T24.411S|ICD10CM|Corrosion of unspecified degree of right thigh, sequela|Corrosion of unspecified degree of right thigh, sequela +C2872917|T037|AB|T24.412|ICD10CM|Corrosion of unspecified degree of left thigh|Corrosion of unspecified degree of left thigh +C2872917|T037|HT|T24.412|ICD10CM|Corrosion of unspecified degree of left thigh|Corrosion of unspecified degree of left thigh +C2872918|T037|AB|T24.412A|ICD10CM|Corrosion of unspecified degree of left thigh, init encntr|Corrosion of unspecified degree of left thigh, init encntr +C2872918|T037|PT|T24.412A|ICD10CM|Corrosion of unspecified degree of left thigh, initial encounter|Corrosion of unspecified degree of left thigh, initial encounter +C2872919|T037|AB|T24.412D|ICD10CM|Corrosion of unspecified degree of left thigh, subs encntr|Corrosion of unspecified degree of left thigh, subs encntr +C2872919|T037|PT|T24.412D|ICD10CM|Corrosion of unspecified degree of left thigh, subsequent encounter|Corrosion of unspecified degree of left thigh, subsequent encounter +C2872920|T037|PT|T24.412S|ICD10CM|Corrosion of unspecified degree of left thigh, sequela|Corrosion of unspecified degree of left thigh, sequela +C2872920|T037|AB|T24.412S|ICD10CM|Corrosion of unspecified degree of left thigh, sequela|Corrosion of unspecified degree of left thigh, sequela +C2872921|T037|AB|T24.419|ICD10CM|Corrosion of unspecified degree of unspecified thigh|Corrosion of unspecified degree of unspecified thigh +C2872921|T037|HT|T24.419|ICD10CM|Corrosion of unspecified degree of unspecified thigh|Corrosion of unspecified degree of unspecified thigh +C2872922|T037|AB|T24.419A|ICD10CM|Corrosion of unsp degree of unspecified thigh, init encntr|Corrosion of unsp degree of unspecified thigh, init encntr +C2872922|T037|PT|T24.419A|ICD10CM|Corrosion of unspecified degree of unspecified thigh, initial encounter|Corrosion of unspecified degree of unspecified thigh, initial encounter +C2872923|T037|AB|T24.419D|ICD10CM|Corrosion of unsp degree of unspecified thigh, subs encntr|Corrosion of unsp degree of unspecified thigh, subs encntr +C2872923|T037|PT|T24.419D|ICD10CM|Corrosion of unspecified degree of unspecified thigh, subsequent encounter|Corrosion of unspecified degree of unspecified thigh, subsequent encounter +C2872924|T037|AB|T24.419S|ICD10CM|Corrosion of unsp degree of unspecified thigh, sequela|Corrosion of unsp degree of unspecified thigh, sequela +C2872924|T037|PT|T24.419S|ICD10CM|Corrosion of unspecified degree of unspecified thigh, sequela|Corrosion of unspecified degree of unspecified thigh, sequela +C2872925|T037|AB|T24.42|ICD10CM|Corrosion of unspecified degree of knee|Corrosion of unspecified degree of knee +C2872925|T037|HT|T24.42|ICD10CM|Corrosion of unspecified degree of knee|Corrosion of unspecified degree of knee +C2872926|T037|AB|T24.421|ICD10CM|Corrosion of unspecified degree of right knee|Corrosion of unspecified degree of right knee +C2872926|T037|HT|T24.421|ICD10CM|Corrosion of unspecified degree of right knee|Corrosion of unspecified degree of right knee +C2872927|T037|AB|T24.421A|ICD10CM|Corrosion of unspecified degree of right knee, init encntr|Corrosion of unspecified degree of right knee, init encntr +C2872927|T037|PT|T24.421A|ICD10CM|Corrosion of unspecified degree of right knee, initial encounter|Corrosion of unspecified degree of right knee, initial encounter +C2872928|T037|AB|T24.421D|ICD10CM|Corrosion of unspecified degree of right knee, subs encntr|Corrosion of unspecified degree of right knee, subs encntr +C2872928|T037|PT|T24.421D|ICD10CM|Corrosion of unspecified degree of right knee, subsequent encounter|Corrosion of unspecified degree of right knee, subsequent encounter +C2872929|T037|PT|T24.421S|ICD10CM|Corrosion of unspecified degree of right knee, sequela|Corrosion of unspecified degree of right knee, sequela +C2872929|T037|AB|T24.421S|ICD10CM|Corrosion of unspecified degree of right knee, sequela|Corrosion of unspecified degree of right knee, sequela +C2872930|T037|AB|T24.422|ICD10CM|Corrosion of unspecified degree of left knee|Corrosion of unspecified degree of left knee +C2872930|T037|HT|T24.422|ICD10CM|Corrosion of unspecified degree of left knee|Corrosion of unspecified degree of left knee +C2872931|T037|AB|T24.422A|ICD10CM|Corrosion of unspecified degree of left knee, init encntr|Corrosion of unspecified degree of left knee, init encntr +C2872931|T037|PT|T24.422A|ICD10CM|Corrosion of unspecified degree of left knee, initial encounter|Corrosion of unspecified degree of left knee, initial encounter +C2872932|T037|AB|T24.422D|ICD10CM|Corrosion of unspecified degree of left knee, subs encntr|Corrosion of unspecified degree of left knee, subs encntr +C2872932|T037|PT|T24.422D|ICD10CM|Corrosion of unspecified degree of left knee, subsequent encounter|Corrosion of unspecified degree of left knee, subsequent encounter +C2872933|T037|PT|T24.422S|ICD10CM|Corrosion of unspecified degree of left knee, sequela|Corrosion of unspecified degree of left knee, sequela +C2872933|T037|AB|T24.422S|ICD10CM|Corrosion of unspecified degree of left knee, sequela|Corrosion of unspecified degree of left knee, sequela +C2872934|T037|AB|T24.429|ICD10CM|Corrosion of unspecified degree of unspecified knee|Corrosion of unspecified degree of unspecified knee +C2872934|T037|HT|T24.429|ICD10CM|Corrosion of unspecified degree of unspecified knee|Corrosion of unspecified degree of unspecified knee +C2872935|T037|AB|T24.429A|ICD10CM|Corrosion of unsp degree of unspecified knee, init encntr|Corrosion of unsp degree of unspecified knee, init encntr +C2872935|T037|PT|T24.429A|ICD10CM|Corrosion of unspecified degree of unspecified knee, initial encounter|Corrosion of unspecified degree of unspecified knee, initial encounter +C2872936|T037|AB|T24.429D|ICD10CM|Corrosion of unsp degree of unspecified knee, subs encntr|Corrosion of unsp degree of unspecified knee, subs encntr +C2872936|T037|PT|T24.429D|ICD10CM|Corrosion of unspecified degree of unspecified knee, subsequent encounter|Corrosion of unspecified degree of unspecified knee, subsequent encounter +C2872937|T037|AB|T24.429S|ICD10CM|Corrosion of unspecified degree of unspecified knee, sequela|Corrosion of unspecified degree of unspecified knee, sequela +C2872937|T037|PT|T24.429S|ICD10CM|Corrosion of unspecified degree of unspecified knee, sequela|Corrosion of unspecified degree of unspecified knee, sequela +C2872938|T037|AB|T24.43|ICD10CM|Corrosion of unspecified degree of lower leg|Corrosion of unspecified degree of lower leg +C2872938|T037|HT|T24.43|ICD10CM|Corrosion of unspecified degree of lower leg|Corrosion of unspecified degree of lower leg +C2872939|T037|AB|T24.431|ICD10CM|Corrosion of unspecified degree of right lower leg|Corrosion of unspecified degree of right lower leg +C2872939|T037|HT|T24.431|ICD10CM|Corrosion of unspecified degree of right lower leg|Corrosion of unspecified degree of right lower leg +C2872940|T037|AB|T24.431A|ICD10CM|Corrosion of unsp degree of right lower leg, init encntr|Corrosion of unsp degree of right lower leg, init encntr +C2872940|T037|PT|T24.431A|ICD10CM|Corrosion of unspecified degree of right lower leg, initial encounter|Corrosion of unspecified degree of right lower leg, initial encounter +C2872941|T037|AB|T24.431D|ICD10CM|Corrosion of unsp degree of right lower leg, subs encntr|Corrosion of unsp degree of right lower leg, subs encntr +C2872941|T037|PT|T24.431D|ICD10CM|Corrosion of unspecified degree of right lower leg, subsequent encounter|Corrosion of unspecified degree of right lower leg, subsequent encounter +C2872942|T037|PT|T24.431S|ICD10CM|Corrosion of unspecified degree of right lower leg, sequela|Corrosion of unspecified degree of right lower leg, sequela +C2872942|T037|AB|T24.431S|ICD10CM|Corrosion of unspecified degree of right lower leg, sequela|Corrosion of unspecified degree of right lower leg, sequela +C2872943|T037|AB|T24.432|ICD10CM|Corrosion of unspecified degree of left lower leg|Corrosion of unspecified degree of left lower leg +C2872943|T037|HT|T24.432|ICD10CM|Corrosion of unspecified degree of left lower leg|Corrosion of unspecified degree of left lower leg +C2872944|T037|AB|T24.432A|ICD10CM|Corrosion of unsp degree of left lower leg, init encntr|Corrosion of unsp degree of left lower leg, init encntr +C2872944|T037|PT|T24.432A|ICD10CM|Corrosion of unspecified degree of left lower leg, initial encounter|Corrosion of unspecified degree of left lower leg, initial encounter +C2872945|T037|AB|T24.432D|ICD10CM|Corrosion of unsp degree of left lower leg, subs encntr|Corrosion of unsp degree of left lower leg, subs encntr +C2872945|T037|PT|T24.432D|ICD10CM|Corrosion of unspecified degree of left lower leg, subsequent encounter|Corrosion of unspecified degree of left lower leg, subsequent encounter +C2872946|T037|PT|T24.432S|ICD10CM|Corrosion of unspecified degree of left lower leg, sequela|Corrosion of unspecified degree of left lower leg, sequela +C2872946|T037|AB|T24.432S|ICD10CM|Corrosion of unspecified degree of left lower leg, sequela|Corrosion of unspecified degree of left lower leg, sequela +C2872947|T037|AB|T24.439|ICD10CM|Corrosion of unspecified degree of unspecified lower leg|Corrosion of unspecified degree of unspecified lower leg +C2872947|T037|HT|T24.439|ICD10CM|Corrosion of unspecified degree of unspecified lower leg|Corrosion of unspecified degree of unspecified lower leg +C2872948|T037|AB|T24.439A|ICD10CM|Corrosion of unsp degree of unsp lower leg, init encntr|Corrosion of unsp degree of unsp lower leg, init encntr +C2872948|T037|PT|T24.439A|ICD10CM|Corrosion of unspecified degree of unspecified lower leg, initial encounter|Corrosion of unspecified degree of unspecified lower leg, initial encounter +C2872949|T037|AB|T24.439D|ICD10CM|Corrosion of unsp degree of unsp lower leg, subs encntr|Corrosion of unsp degree of unsp lower leg, subs encntr +C2872949|T037|PT|T24.439D|ICD10CM|Corrosion of unspecified degree of unspecified lower leg, subsequent encounter|Corrosion of unspecified degree of unspecified lower leg, subsequent encounter +C2872950|T037|AB|T24.439S|ICD10CM|Corrosion of unsp degree of unspecified lower leg, sequela|Corrosion of unsp degree of unspecified lower leg, sequela +C2872950|T037|PT|T24.439S|ICD10CM|Corrosion of unspecified degree of unspecified lower leg, sequela|Corrosion of unspecified degree of unspecified lower leg, sequela +C2872951|T037|AB|T24.49|ICD10CM|Corros unsp deg mult sites of lower limb, except ank/ft|Corros unsp deg mult sites of lower limb, except ank/ft +C2872951|T037|HT|T24.49|ICD10CM|Corrosion of unspecified degree of multiple sites of lower limb, except ankle and foot|Corrosion of unspecified degree of multiple sites of lower limb, except ankle and foot +C2872952|T037|AB|T24.491|ICD10CM|Corros unsp deg mult sites of right lower limb, ex ank/ft|Corros unsp deg mult sites of right lower limb, ex ank/ft +C2872952|T037|HT|T24.491|ICD10CM|Corrosion of unspecified degree of multiple sites of right lower limb, except ankle and foot|Corrosion of unspecified degree of multiple sites of right lower limb, except ankle and foot +C2872953|T037|AB|T24.491A|ICD10CM|Corros unsp deg mult sites of r low limb, ex ank/ft, init|Corros unsp deg mult sites of r low limb, ex ank/ft, init +C2872954|T037|AB|T24.491D|ICD10CM|Corros unsp deg mult sites of r low limb, ex ank/ft, subs|Corros unsp deg mult sites of r low limb, ex ank/ft, subs +C2872955|T037|AB|T24.491S|ICD10CM|Corros unsp deg mult sites of r low limb, ex ank/ft, sqla|Corros unsp deg mult sites of r low limb, ex ank/ft, sqla +C2872956|T037|AB|T24.492|ICD10CM|Corros unsp deg mult sites of left lower limb, except ank/ft|Corros unsp deg mult sites of left lower limb, except ank/ft +C2872956|T037|HT|T24.492|ICD10CM|Corrosion of unspecified degree of multiple sites of left lower limb, except ankle and foot|Corrosion of unspecified degree of multiple sites of left lower limb, except ankle and foot +C2872957|T037|AB|T24.492A|ICD10CM|Corros unsp deg mult sites of left low limb, ex ank/ft, init|Corros unsp deg mult sites of left low limb, ex ank/ft, init +C2872958|T037|AB|T24.492D|ICD10CM|Corros unsp deg mult sites of left low limb, ex ank/ft, subs|Corros unsp deg mult sites of left low limb, ex ank/ft, subs +C2872959|T037|AB|T24.492S|ICD10CM|Corros unsp deg mult sites of left low limb, ex ank/ft, sqla|Corros unsp deg mult sites of left low limb, ex ank/ft, sqla +C2872959|T037|PT|T24.492S|ICD10CM|Corrosion of unspecified degree of multiple sites of left lower limb, except ankle and foot, sequela|Corrosion of unspecified degree of multiple sites of left lower limb, except ankle and foot, sequela +C2872960|T037|AB|T24.499|ICD10CM|Corros unsp deg mult sites of unsp lower limb, except ank/ft|Corros unsp deg mult sites of unsp lower limb, except ank/ft +C2872960|T037|HT|T24.499|ICD10CM|Corrosion of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot|Corrosion of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot +C2872961|T037|AB|T24.499A|ICD10CM|Corros unsp deg mult sites of unsp low limb, ex ank/ft, init|Corros unsp deg mult sites of unsp low limb, ex ank/ft, init +C2872962|T037|AB|T24.499D|ICD10CM|Corros unsp deg mult sites of unsp low limb, ex ank/ft, subs|Corros unsp deg mult sites of unsp low limb, ex ank/ft, subs +C2872963|T037|AB|T24.499S|ICD10CM|Corros unsp deg mult sites of unsp low limb, ex ank/ft, sqla|Corros unsp deg mult sites of unsp low limb, ex ank/ft, sqla +C0451993|T037|PT|T24.5|ICD10|Corrosion of first degree of hip and lower limb, except ankle and foot|Corrosion of first degree of hip and lower limb, except ankle and foot +C2872964|T037|AB|T24.5|ICD10CM|Corrosion of first degree of lower limb, except ank/ft|Corrosion of first degree of lower limb, except ank/ft +C2872964|T037|HT|T24.5|ICD10CM|Corrosion of first degree of lower limb, except ankle and foot|Corrosion of first degree of lower limb, except ankle and foot +C2872965|T037|AB|T24.50|ICD10CM|Corros first degree of unsp site lower limb, except ank/ft|Corros first degree of unsp site lower limb, except ank/ft +C2872965|T037|HT|T24.50|ICD10CM|Corrosion of first degree of unspecified site of lower limb, except ankle and foot|Corrosion of first degree of unspecified site of lower limb, except ankle and foot +C2872966|T037|AB|T24.501|ICD10CM|Corros first deg of unsp site right lower limb, ex ank/ft|Corros first deg of unsp site right lower limb, ex ank/ft +C2872966|T037|HT|T24.501|ICD10CM|Corrosion of first degree of unspecified site of right lower limb, except ankle and foot|Corrosion of first degree of unspecified site of right lower limb, except ankle and foot +C2872967|T037|AB|T24.501A|ICD10CM|Corros 1st deg of unsp site right low limb, ex ank/ft, init|Corros 1st deg of unsp site right low limb, ex ank/ft, init +C2872968|T037|AB|T24.501D|ICD10CM|Corros 1st deg of unsp site right low limb, ex ank/ft, subs|Corros 1st deg of unsp site right low limb, ex ank/ft, subs +C2872969|T037|AB|T24.501S|ICD10CM|Corros 1st deg of unsp site right low limb, ex ank/ft, sqla|Corros 1st deg of unsp site right low limb, ex ank/ft, sqla +C2872969|T037|PT|T24.501S|ICD10CM|Corrosion of first degree of unspecified site of right lower limb, except ankle and foot, sequela|Corrosion of first degree of unspecified site of right lower limb, except ankle and foot, sequela +C2872970|T037|AB|T24.502|ICD10CM|Corros first deg of unsp site left lower limb, except ank/ft|Corros first deg of unsp site left lower limb, except ank/ft +C2872970|T037|HT|T24.502|ICD10CM|Corrosion of first degree of unspecified site of left lower limb, except ankle and foot|Corrosion of first degree of unspecified site of left lower limb, except ankle and foot +C2872971|T037|AB|T24.502A|ICD10CM|Corros 1st deg of unsp site left lower limb, ex ank/ft, init|Corros 1st deg of unsp site left lower limb, ex ank/ft, init +C2872972|T037|AB|T24.502D|ICD10CM|Corros 1st deg of unsp site left lower limb, ex ank/ft, subs|Corros 1st deg of unsp site left lower limb, ex ank/ft, subs +C2872973|T037|AB|T24.502S|ICD10CM|Corros 1st deg of unsp site left lower limb, ex ank/ft, sqla|Corros 1st deg of unsp site left lower limb, ex ank/ft, sqla +C2872973|T037|PT|T24.502S|ICD10CM|Corrosion of first degree of unspecified site of left lower limb, except ankle and foot, sequela|Corrosion of first degree of unspecified site of left lower limb, except ankle and foot, sequela +C2872974|T037|AB|T24.509|ICD10CM|Corros first deg of unsp site unsp lower limb, except ank/ft|Corros first deg of unsp site unsp lower limb, except ank/ft +C2872974|T037|HT|T24.509|ICD10CM|Corrosion of first degree of unspecified site of unspecified lower limb, except ankle and foot|Corrosion of first degree of unspecified site of unspecified lower limb, except ankle and foot +C2872975|T037|AB|T24.509A|ICD10CM|Corros 1st deg of unsp site unsp lower limb, ex ank/ft, init|Corros 1st deg of unsp site unsp lower limb, ex ank/ft, init +C2872976|T037|AB|T24.509D|ICD10CM|Corros 1st deg of unsp site unsp lower limb, ex ank/ft, subs|Corros 1st deg of unsp site unsp lower limb, ex ank/ft, subs +C2872977|T037|AB|T24.509S|ICD10CM|Corros 1st deg of unsp site unsp lower limb, ex ank/ft, sqla|Corros 1st deg of unsp site unsp lower limb, ex ank/ft, sqla +C2872978|T037|AB|T24.51|ICD10CM|Corrosion of first degree of thigh|Corrosion of first degree of thigh +C2872978|T037|HT|T24.51|ICD10CM|Corrosion of first degree of thigh|Corrosion of first degree of thigh +C2872979|T037|AB|T24.511|ICD10CM|Corrosion of first degree of right thigh|Corrosion of first degree of right thigh +C2872979|T037|HT|T24.511|ICD10CM|Corrosion of first degree of right thigh|Corrosion of first degree of right thigh +C2872980|T037|PT|T24.511A|ICD10CM|Corrosion of first degree of right thigh, initial encounter|Corrosion of first degree of right thigh, initial encounter +C2872980|T037|AB|T24.511A|ICD10CM|Corrosion of first degree of right thigh, initial encounter|Corrosion of first degree of right thigh, initial encounter +C2872981|T037|AB|T24.511D|ICD10CM|Corrosion of first degree of right thigh, subs encntr|Corrosion of first degree of right thigh, subs encntr +C2872981|T037|PT|T24.511D|ICD10CM|Corrosion of first degree of right thigh, subsequent encounter|Corrosion of first degree of right thigh, subsequent encounter +C2872982|T037|PT|T24.511S|ICD10CM|Corrosion of first degree of right thigh, sequela|Corrosion of first degree of right thigh, sequela +C2872982|T037|AB|T24.511S|ICD10CM|Corrosion of first degree of right thigh, sequela|Corrosion of first degree of right thigh, sequela +C2872983|T037|AB|T24.512|ICD10CM|Corrosion of first degree of left thigh|Corrosion of first degree of left thigh +C2872983|T037|HT|T24.512|ICD10CM|Corrosion of first degree of left thigh|Corrosion of first degree of left thigh +C2872984|T037|PT|T24.512A|ICD10CM|Corrosion of first degree of left thigh, initial encounter|Corrosion of first degree of left thigh, initial encounter +C2872984|T037|AB|T24.512A|ICD10CM|Corrosion of first degree of left thigh, initial encounter|Corrosion of first degree of left thigh, initial encounter +C2872985|T037|AB|T24.512D|ICD10CM|Corrosion of first degree of left thigh, subs encntr|Corrosion of first degree of left thigh, subs encntr +C2872985|T037|PT|T24.512D|ICD10CM|Corrosion of first degree of left thigh, subsequent encounter|Corrosion of first degree of left thigh, subsequent encounter +C2872986|T037|PT|T24.512S|ICD10CM|Corrosion of first degree of left thigh, sequela|Corrosion of first degree of left thigh, sequela +C2872986|T037|AB|T24.512S|ICD10CM|Corrosion of first degree of left thigh, sequela|Corrosion of first degree of left thigh, sequela +C2872987|T037|AB|T24.519|ICD10CM|Corrosion of first degree of unspecified thigh|Corrosion of first degree of unspecified thigh +C2872987|T037|HT|T24.519|ICD10CM|Corrosion of first degree of unspecified thigh|Corrosion of first degree of unspecified thigh +C2872988|T037|AB|T24.519A|ICD10CM|Corrosion of first degree of unspecified thigh, init encntr|Corrosion of first degree of unspecified thigh, init encntr +C2872988|T037|PT|T24.519A|ICD10CM|Corrosion of first degree of unspecified thigh, initial encounter|Corrosion of first degree of unspecified thigh, initial encounter +C2872989|T037|AB|T24.519D|ICD10CM|Corrosion of first degree of unspecified thigh, subs encntr|Corrosion of first degree of unspecified thigh, subs encntr +C2872989|T037|PT|T24.519D|ICD10CM|Corrosion of first degree of unspecified thigh, subsequent encounter|Corrosion of first degree of unspecified thigh, subsequent encounter +C2872990|T037|PT|T24.519S|ICD10CM|Corrosion of first degree of unspecified thigh, sequela|Corrosion of first degree of unspecified thigh, sequela +C2872990|T037|AB|T24.519S|ICD10CM|Corrosion of first degree of unspecified thigh, sequela|Corrosion of first degree of unspecified thigh, sequela +C2872991|T037|AB|T24.52|ICD10CM|Corrosion of first degree of knee|Corrosion of first degree of knee +C2872991|T037|HT|T24.52|ICD10CM|Corrosion of first degree of knee|Corrosion of first degree of knee +C2872992|T037|AB|T24.521|ICD10CM|Corrosion of first degree of right knee|Corrosion of first degree of right knee +C2872992|T037|HT|T24.521|ICD10CM|Corrosion of first degree of right knee|Corrosion of first degree of right knee +C2872993|T037|PT|T24.521A|ICD10CM|Corrosion of first degree of right knee, initial encounter|Corrosion of first degree of right knee, initial encounter +C2872993|T037|AB|T24.521A|ICD10CM|Corrosion of first degree of right knee, initial encounter|Corrosion of first degree of right knee, initial encounter +C2872994|T037|AB|T24.521D|ICD10CM|Corrosion of first degree of right knee, subs encntr|Corrosion of first degree of right knee, subs encntr +C2872994|T037|PT|T24.521D|ICD10CM|Corrosion of first degree of right knee, subsequent encounter|Corrosion of first degree of right knee, subsequent encounter +C2872995|T037|PT|T24.521S|ICD10CM|Corrosion of first degree of right knee, sequela|Corrosion of first degree of right knee, sequela +C2872995|T037|AB|T24.521S|ICD10CM|Corrosion of first degree of right knee, sequela|Corrosion of first degree of right knee, sequela +C2872996|T037|AB|T24.522|ICD10CM|Corrosion of first degree of left knee|Corrosion of first degree of left knee +C2872996|T037|HT|T24.522|ICD10CM|Corrosion of first degree of left knee|Corrosion of first degree of left knee +C2872997|T037|PT|T24.522A|ICD10CM|Corrosion of first degree of left knee, initial encounter|Corrosion of first degree of left knee, initial encounter +C2872997|T037|AB|T24.522A|ICD10CM|Corrosion of first degree of left knee, initial encounter|Corrosion of first degree of left knee, initial encounter +C2872998|T037|AB|T24.522D|ICD10CM|Corrosion of first degree of left knee, subsequent encounter|Corrosion of first degree of left knee, subsequent encounter +C2872998|T037|PT|T24.522D|ICD10CM|Corrosion of first degree of left knee, subsequent encounter|Corrosion of first degree of left knee, subsequent encounter +C2872999|T037|PT|T24.522S|ICD10CM|Corrosion of first degree of left knee, sequela|Corrosion of first degree of left knee, sequela +C2872999|T037|AB|T24.522S|ICD10CM|Corrosion of first degree of left knee, sequela|Corrosion of first degree of left knee, sequela +C2873000|T037|AB|T24.529|ICD10CM|Corrosion of first degree of unspecified knee|Corrosion of first degree of unspecified knee +C2873000|T037|HT|T24.529|ICD10CM|Corrosion of first degree of unspecified knee|Corrosion of first degree of unspecified knee +C2873001|T037|AB|T24.529A|ICD10CM|Corrosion of first degree of unspecified knee, init encntr|Corrosion of first degree of unspecified knee, init encntr +C2873001|T037|PT|T24.529A|ICD10CM|Corrosion of first degree of unspecified knee, initial encounter|Corrosion of first degree of unspecified knee, initial encounter +C2873002|T037|AB|T24.529D|ICD10CM|Corrosion of first degree of unspecified knee, subs encntr|Corrosion of first degree of unspecified knee, subs encntr +C2873002|T037|PT|T24.529D|ICD10CM|Corrosion of first degree of unspecified knee, subsequent encounter|Corrosion of first degree of unspecified knee, subsequent encounter +C2873003|T037|PT|T24.529S|ICD10CM|Corrosion of first degree of unspecified knee, sequela|Corrosion of first degree of unspecified knee, sequela +C2873003|T037|AB|T24.529S|ICD10CM|Corrosion of first degree of unspecified knee, sequela|Corrosion of first degree of unspecified knee, sequela +C2873004|T037|AB|T24.53|ICD10CM|Corrosion of first degree of lower leg|Corrosion of first degree of lower leg +C2873004|T037|HT|T24.53|ICD10CM|Corrosion of first degree of lower leg|Corrosion of first degree of lower leg +C2873005|T037|AB|T24.531|ICD10CM|Corrosion of first degree of right lower leg|Corrosion of first degree of right lower leg +C2873005|T037|HT|T24.531|ICD10CM|Corrosion of first degree of right lower leg|Corrosion of first degree of right lower leg +C2873006|T037|AB|T24.531A|ICD10CM|Corrosion of first degree of right lower leg, init encntr|Corrosion of first degree of right lower leg, init encntr +C2873006|T037|PT|T24.531A|ICD10CM|Corrosion of first degree of right lower leg, initial encounter|Corrosion of first degree of right lower leg, initial encounter +C2873007|T037|AB|T24.531D|ICD10CM|Corrosion of first degree of right lower leg, subs encntr|Corrosion of first degree of right lower leg, subs encntr +C2873007|T037|PT|T24.531D|ICD10CM|Corrosion of first degree of right lower leg, subsequent encounter|Corrosion of first degree of right lower leg, subsequent encounter +C2873008|T037|PT|T24.531S|ICD10CM|Corrosion of first degree of right lower leg, sequela|Corrosion of first degree of right lower leg, sequela +C2873008|T037|AB|T24.531S|ICD10CM|Corrosion of first degree of right lower leg, sequela|Corrosion of first degree of right lower leg, sequela +C2873009|T037|AB|T24.532|ICD10CM|Corrosion of first degree of left lower leg|Corrosion of first degree of left lower leg +C2873009|T037|HT|T24.532|ICD10CM|Corrosion of first degree of left lower leg|Corrosion of first degree of left lower leg +C2873010|T037|AB|T24.532A|ICD10CM|Corrosion of first degree of left lower leg, init encntr|Corrosion of first degree of left lower leg, init encntr +C2873010|T037|PT|T24.532A|ICD10CM|Corrosion of first degree of left lower leg, initial encounter|Corrosion of first degree of left lower leg, initial encounter +C2873011|T037|AB|T24.532D|ICD10CM|Corrosion of first degree of left lower leg, subs encntr|Corrosion of first degree of left lower leg, subs encntr +C2873011|T037|PT|T24.532D|ICD10CM|Corrosion of first degree of left lower leg, subsequent encounter|Corrosion of first degree of left lower leg, subsequent encounter +C2873012|T037|PT|T24.532S|ICD10CM|Corrosion of first degree of left lower leg, sequela|Corrosion of first degree of left lower leg, sequela +C2873012|T037|AB|T24.532S|ICD10CM|Corrosion of first degree of left lower leg, sequela|Corrosion of first degree of left lower leg, sequela +C2873013|T037|AB|T24.539|ICD10CM|Corrosion of first degree of unspecified lower leg|Corrosion of first degree of unspecified lower leg +C2873013|T037|HT|T24.539|ICD10CM|Corrosion of first degree of unspecified lower leg|Corrosion of first degree of unspecified lower leg +C2873014|T037|AB|T24.539A|ICD10CM|Corrosion of first degree of unsp lower leg, init encntr|Corrosion of first degree of unsp lower leg, init encntr +C2873014|T037|PT|T24.539A|ICD10CM|Corrosion of first degree of unspecified lower leg, initial encounter|Corrosion of first degree of unspecified lower leg, initial encounter +C2873015|T037|AB|T24.539D|ICD10CM|Corrosion of first degree of unsp lower leg, subs encntr|Corrosion of first degree of unsp lower leg, subs encntr +C2873015|T037|PT|T24.539D|ICD10CM|Corrosion of first degree of unspecified lower leg, subsequent encounter|Corrosion of first degree of unspecified lower leg, subsequent encounter +C2873016|T037|PT|T24.539S|ICD10CM|Corrosion of first degree of unspecified lower leg, sequela|Corrosion of first degree of unspecified lower leg, sequela +C2873016|T037|AB|T24.539S|ICD10CM|Corrosion of first degree of unspecified lower leg, sequela|Corrosion of first degree of unspecified lower leg, sequela +C2873017|T037|AB|T24.59|ICD10CM|Corros first deg mult sites of lower limb, except ank/ft|Corros first deg mult sites of lower limb, except ank/ft +C2873017|T037|HT|T24.59|ICD10CM|Corrosion of first degree of multiple sites of lower limb, except ankle and foot|Corrosion of first degree of multiple sites of lower limb, except ankle and foot +C2873018|T037|AB|T24.591|ICD10CM|Corros first deg mult sites of right lower limb, ex ank/ft|Corros first deg mult sites of right lower limb, ex ank/ft +C2873018|T037|HT|T24.591|ICD10CM|Corrosion of first degree of multiple sites of right lower limb, except ankle and foot|Corrosion of first degree of multiple sites of right lower limb, except ankle and foot +C2873019|T037|AB|T24.591A|ICD10CM|Corros 1st deg mult sites of right low limb, ex ank/ft, init|Corros 1st deg mult sites of right low limb, ex ank/ft, init +C2873020|T037|AB|T24.591D|ICD10CM|Corros 1st deg mult sites of right low limb, ex ank/ft, subs|Corros 1st deg mult sites of right low limb, ex ank/ft, subs +C2873021|T037|AB|T24.591S|ICD10CM|Corros 1st deg mult sites of right low limb, ex ank/ft, sqla|Corros 1st deg mult sites of right low limb, ex ank/ft, sqla +C2873021|T037|PT|T24.591S|ICD10CM|Corrosion of first degree of multiple sites of right lower limb, except ankle and foot, sequela|Corrosion of first degree of multiple sites of right lower limb, except ankle and foot, sequela +C2873022|T037|AB|T24.592|ICD10CM|Corros first deg mult sites of left lower limb, ex ank/ft|Corros first deg mult sites of left lower limb, ex ank/ft +C2873022|T037|HT|T24.592|ICD10CM|Corrosion of first degree of multiple sites of left lower limb, except ankle and foot|Corrosion of first degree of multiple sites of left lower limb, except ankle and foot +C2873023|T037|AB|T24.592A|ICD10CM|Corros 1st deg mult sites of left low limb, ex ank/ft, init|Corros 1st deg mult sites of left low limb, ex ank/ft, init +C2873024|T037|AB|T24.592D|ICD10CM|Corros 1st deg mult sites of left low limb, ex ank/ft, subs|Corros 1st deg mult sites of left low limb, ex ank/ft, subs +C2873025|T037|AB|T24.592S|ICD10CM|Corros 1st deg mult sites of left low limb, ex ank/ft, sqla|Corros 1st deg mult sites of left low limb, ex ank/ft, sqla +C2873025|T037|PT|T24.592S|ICD10CM|Corrosion of first degree of multiple sites of left lower limb, except ankle and foot, sequela|Corrosion of first degree of multiple sites of left lower limb, except ankle and foot, sequela +C2873026|T037|AB|T24.599|ICD10CM|Corros first deg mult sites of unsp lower limb, ex ank/ft|Corros first deg mult sites of unsp lower limb, ex ank/ft +C2873026|T037|HT|T24.599|ICD10CM|Corrosion of first degree of multiple sites of unspecified lower limb, except ankle and foot|Corrosion of first degree of multiple sites of unspecified lower limb, except ankle and foot +C2873027|T037|AB|T24.599A|ICD10CM|Corros 1st deg mult sites of unsp low limb, ex ank/ft, init|Corros 1st deg mult sites of unsp low limb, ex ank/ft, init +C2873028|T037|AB|T24.599D|ICD10CM|Corros 1st deg mult sites of unsp low limb, ex ank/ft, subs|Corros 1st deg mult sites of unsp low limb, ex ank/ft, subs +C2873029|T037|AB|T24.599S|ICD10CM|Corros 1st deg mult sites of unsp low limb, ex ank/ft, sqla|Corros 1st deg mult sites of unsp low limb, ex ank/ft, sqla +C0451994|T037|PT|T24.6|ICD10|Corrosion of second degree of hip and lower limb, except ankle and foot|Corrosion of second degree of hip and lower limb, except ankle and foot +C2873030|T037|AB|T24.6|ICD10CM|Corrosion of second degree of lower limb, except ank/ft|Corrosion of second degree of lower limb, except ank/ft +C2873030|T037|HT|T24.6|ICD10CM|Corrosion of second degree of lower limb, except ankle and foot|Corrosion of second degree of lower limb, except ankle and foot +C2873031|T037|AB|T24.60|ICD10CM|Corros second degree of unsp site lower limb, except ank/ft|Corros second degree of unsp site lower limb, except ank/ft +C2873031|T037|HT|T24.60|ICD10CM|Corrosion of second degree of unspecified site of lower limb, except ankle and foot|Corrosion of second degree of unspecified site of lower limb, except ankle and foot +C2873032|T037|AB|T24.601|ICD10CM|Corros second deg of unsp site right lower limb, ex ank/ft|Corros second deg of unsp site right lower limb, ex ank/ft +C2873032|T037|HT|T24.601|ICD10CM|Corrosion of second degree of unspecified site of right lower limb, except ankle and foot|Corrosion of second degree of unspecified site of right lower limb, except ankle and foot +C2873033|T037|AB|T24.601A|ICD10CM|Corros 2nd deg of unsp site right low limb, ex ank/ft, init|Corros 2nd deg of unsp site right low limb, ex ank/ft, init +C2873034|T037|AB|T24.601D|ICD10CM|Corros 2nd deg of unsp site right low limb, ex ank/ft, subs|Corros 2nd deg of unsp site right low limb, ex ank/ft, subs +C2873035|T037|AB|T24.601S|ICD10CM|Corros 2nd deg of unsp site right low limb, ex ank/ft, sqla|Corros 2nd deg of unsp site right low limb, ex ank/ft, sqla +C2873035|T037|PT|T24.601S|ICD10CM|Corrosion of second degree of unspecified site of right lower limb, except ankle and foot, sequela|Corrosion of second degree of unspecified site of right lower limb, except ankle and foot, sequela +C2873036|T037|AB|T24.602|ICD10CM|Corros second deg of unsp site left lower limb, ex ank/ft|Corros second deg of unsp site left lower limb, ex ank/ft +C2873036|T037|HT|T24.602|ICD10CM|Corrosion of second degree of unspecified site of left lower limb, except ankle and foot|Corrosion of second degree of unspecified site of left lower limb, except ankle and foot +C2873037|T037|AB|T24.602A|ICD10CM|Corros 2nd deg of unsp site left lower limb, ex ank/ft, init|Corros 2nd deg of unsp site left lower limb, ex ank/ft, init +C2873038|T037|AB|T24.602D|ICD10CM|Corros 2nd deg of unsp site left lower limb, ex ank/ft, subs|Corros 2nd deg of unsp site left lower limb, ex ank/ft, subs +C2873039|T037|AB|T24.602S|ICD10CM|Corros 2nd deg of unsp site left lower limb, ex ank/ft, sqla|Corros 2nd deg of unsp site left lower limb, ex ank/ft, sqla +C2873039|T037|PT|T24.602S|ICD10CM|Corrosion of second degree of unspecified site of left lower limb, except ankle and foot, sequela|Corrosion of second degree of unspecified site of left lower limb, except ankle and foot, sequela +C2873040|T037|AB|T24.609|ICD10CM|Corros second deg of unsp site unsp lower limb, ex ank/ft|Corros second deg of unsp site unsp lower limb, ex ank/ft +C2873040|T037|HT|T24.609|ICD10CM|Corrosion of second degree of unspecified site of unspecified lower limb, except ankle and foot|Corrosion of second degree of unspecified site of unspecified lower limb, except ankle and foot +C2873041|T037|AB|T24.609A|ICD10CM|Corros 2nd deg of unsp site unsp lower limb, ex ank/ft, init|Corros 2nd deg of unsp site unsp lower limb, ex ank/ft, init +C2873042|T037|AB|T24.609D|ICD10CM|Corros 2nd deg of unsp site unsp lower limb, ex ank/ft, subs|Corros 2nd deg of unsp site unsp lower limb, ex ank/ft, subs +C2873043|T037|AB|T24.609S|ICD10CM|Corros 2nd deg of unsp site unsp lower limb, ex ank/ft, sqla|Corros 2nd deg of unsp site unsp lower limb, ex ank/ft, sqla +C2873044|T037|AB|T24.61|ICD10CM|Corrosion of second degree of thigh|Corrosion of second degree of thigh +C2873044|T037|HT|T24.61|ICD10CM|Corrosion of second degree of thigh|Corrosion of second degree of thigh +C2873045|T037|AB|T24.611|ICD10CM|Corrosion of second degree of right thigh|Corrosion of second degree of right thigh +C2873045|T037|HT|T24.611|ICD10CM|Corrosion of second degree of right thigh|Corrosion of second degree of right thigh +C2873046|T037|AB|T24.611A|ICD10CM|Corrosion of second degree of right thigh, initial encounter|Corrosion of second degree of right thigh, initial encounter +C2873046|T037|PT|T24.611A|ICD10CM|Corrosion of second degree of right thigh, initial encounter|Corrosion of second degree of right thigh, initial encounter +C2873047|T037|AB|T24.611D|ICD10CM|Corrosion of second degree of right thigh, subs encntr|Corrosion of second degree of right thigh, subs encntr +C2873047|T037|PT|T24.611D|ICD10CM|Corrosion of second degree of right thigh, subsequent encounter|Corrosion of second degree of right thigh, subsequent encounter +C2873048|T037|PT|T24.611S|ICD10CM|Corrosion of second degree of right thigh, sequela|Corrosion of second degree of right thigh, sequela +C2873048|T037|AB|T24.611S|ICD10CM|Corrosion of second degree of right thigh, sequela|Corrosion of second degree of right thigh, sequela +C2873049|T037|AB|T24.612|ICD10CM|Corrosion of second degree of left thigh|Corrosion of second degree of left thigh +C2873049|T037|HT|T24.612|ICD10CM|Corrosion of second degree of left thigh|Corrosion of second degree of left thigh +C2873050|T037|PT|T24.612A|ICD10CM|Corrosion of second degree of left thigh, initial encounter|Corrosion of second degree of left thigh, initial encounter +C2873050|T037|AB|T24.612A|ICD10CM|Corrosion of second degree of left thigh, initial encounter|Corrosion of second degree of left thigh, initial encounter +C2873051|T037|AB|T24.612D|ICD10CM|Corrosion of second degree of left thigh, subs encntr|Corrosion of second degree of left thigh, subs encntr +C2873051|T037|PT|T24.612D|ICD10CM|Corrosion of second degree of left thigh, subsequent encounter|Corrosion of second degree of left thigh, subsequent encounter +C2873052|T037|PT|T24.612S|ICD10CM|Corrosion of second degree of left thigh, sequela|Corrosion of second degree of left thigh, sequela +C2873052|T037|AB|T24.612S|ICD10CM|Corrosion of second degree of left thigh, sequela|Corrosion of second degree of left thigh, sequela +C2873053|T037|AB|T24.619|ICD10CM|Corrosion of second degree of unspecified thigh|Corrosion of second degree of unspecified thigh +C2873053|T037|HT|T24.619|ICD10CM|Corrosion of second degree of unspecified thigh|Corrosion of second degree of unspecified thigh +C2873054|T037|AB|T24.619A|ICD10CM|Corrosion of second degree of unspecified thigh, init encntr|Corrosion of second degree of unspecified thigh, init encntr +C2873054|T037|PT|T24.619A|ICD10CM|Corrosion of second degree of unspecified thigh, initial encounter|Corrosion of second degree of unspecified thigh, initial encounter +C2873055|T037|AB|T24.619D|ICD10CM|Corrosion of second degree of unspecified thigh, subs encntr|Corrosion of second degree of unspecified thigh, subs encntr +C2873055|T037|PT|T24.619D|ICD10CM|Corrosion of second degree of unspecified thigh, subsequent encounter|Corrosion of second degree of unspecified thigh, subsequent encounter +C2873056|T037|PT|T24.619S|ICD10CM|Corrosion of second degree of unspecified thigh, sequela|Corrosion of second degree of unspecified thigh, sequela +C2873056|T037|AB|T24.619S|ICD10CM|Corrosion of second degree of unspecified thigh, sequela|Corrosion of second degree of unspecified thigh, sequela +C2873057|T037|AB|T24.62|ICD10CM|Corrosion of second degree of knee|Corrosion of second degree of knee +C2873057|T037|HT|T24.62|ICD10CM|Corrosion of second degree of knee|Corrosion of second degree of knee +C2873058|T037|AB|T24.621|ICD10CM|Corrosion of second degree of right knee|Corrosion of second degree of right knee +C2873058|T037|HT|T24.621|ICD10CM|Corrosion of second degree of right knee|Corrosion of second degree of right knee +C2873059|T037|PT|T24.621A|ICD10CM|Corrosion of second degree of right knee, initial encounter|Corrosion of second degree of right knee, initial encounter +C2873059|T037|AB|T24.621A|ICD10CM|Corrosion of second degree of right knee, initial encounter|Corrosion of second degree of right knee, initial encounter +C2873060|T037|AB|T24.621D|ICD10CM|Corrosion of second degree of right knee, subs encntr|Corrosion of second degree of right knee, subs encntr +C2873060|T037|PT|T24.621D|ICD10CM|Corrosion of second degree of right knee, subsequent encounter|Corrosion of second degree of right knee, subsequent encounter +C2873061|T037|PT|T24.621S|ICD10CM|Corrosion of second degree of right knee, sequela|Corrosion of second degree of right knee, sequela +C2873061|T037|AB|T24.621S|ICD10CM|Corrosion of second degree of right knee, sequela|Corrosion of second degree of right knee, sequela +C2873062|T037|AB|T24.622|ICD10CM|Corrosion of second degree of left knee|Corrosion of second degree of left knee +C2873062|T037|HT|T24.622|ICD10CM|Corrosion of second degree of left knee|Corrosion of second degree of left knee +C2873063|T037|PT|T24.622A|ICD10CM|Corrosion of second degree of left knee, initial encounter|Corrosion of second degree of left knee, initial encounter +C2873063|T037|AB|T24.622A|ICD10CM|Corrosion of second degree of left knee, initial encounter|Corrosion of second degree of left knee, initial encounter +C2873064|T037|AB|T24.622D|ICD10CM|Corrosion of second degree of left knee, subs encntr|Corrosion of second degree of left knee, subs encntr +C2873064|T037|PT|T24.622D|ICD10CM|Corrosion of second degree of left knee, subsequent encounter|Corrosion of second degree of left knee, subsequent encounter +C2873065|T037|PT|T24.622S|ICD10CM|Corrosion of second degree of left knee, sequela|Corrosion of second degree of left knee, sequela +C2873065|T037|AB|T24.622S|ICD10CM|Corrosion of second degree of left knee, sequela|Corrosion of second degree of left knee, sequela +C2873066|T037|AB|T24.629|ICD10CM|Corrosion of second degree of unspecified knee|Corrosion of second degree of unspecified knee +C2873066|T037|HT|T24.629|ICD10CM|Corrosion of second degree of unspecified knee|Corrosion of second degree of unspecified knee +C2873067|T037|AB|T24.629A|ICD10CM|Corrosion of second degree of unspecified knee, init encntr|Corrosion of second degree of unspecified knee, init encntr +C2873067|T037|PT|T24.629A|ICD10CM|Corrosion of second degree of unspecified knee, initial encounter|Corrosion of second degree of unspecified knee, initial encounter +C2873068|T037|AB|T24.629D|ICD10CM|Corrosion of second degree of unspecified knee, subs encntr|Corrosion of second degree of unspecified knee, subs encntr +C2873068|T037|PT|T24.629D|ICD10CM|Corrosion of second degree of unspecified knee, subsequent encounter|Corrosion of second degree of unspecified knee, subsequent encounter +C2873069|T037|PT|T24.629S|ICD10CM|Corrosion of second degree of unspecified knee, sequela|Corrosion of second degree of unspecified knee, sequela +C2873069|T037|AB|T24.629S|ICD10CM|Corrosion of second degree of unspecified knee, sequela|Corrosion of second degree of unspecified knee, sequela +C2873070|T037|AB|T24.63|ICD10CM|Corrosion of second degree of lower leg|Corrosion of second degree of lower leg +C2873070|T037|HT|T24.63|ICD10CM|Corrosion of second degree of lower leg|Corrosion of second degree of lower leg +C2873071|T037|AB|T24.631|ICD10CM|Corrosion of second degree of right lower leg|Corrosion of second degree of right lower leg +C2873071|T037|HT|T24.631|ICD10CM|Corrosion of second degree of right lower leg|Corrosion of second degree of right lower leg +C2873072|T037|AB|T24.631A|ICD10CM|Corrosion of second degree of right lower leg, init encntr|Corrosion of second degree of right lower leg, init encntr +C2873072|T037|PT|T24.631A|ICD10CM|Corrosion of second degree of right lower leg, initial encounter|Corrosion of second degree of right lower leg, initial encounter +C2873073|T037|AB|T24.631D|ICD10CM|Corrosion of second degree of right lower leg, subs encntr|Corrosion of second degree of right lower leg, subs encntr +C2873073|T037|PT|T24.631D|ICD10CM|Corrosion of second degree of right lower leg, subsequent encounter|Corrosion of second degree of right lower leg, subsequent encounter +C2873074|T037|PT|T24.631S|ICD10CM|Corrosion of second degree of right lower leg, sequela|Corrosion of second degree of right lower leg, sequela +C2873074|T037|AB|T24.631S|ICD10CM|Corrosion of second degree of right lower leg, sequela|Corrosion of second degree of right lower leg, sequela +C2873075|T037|AB|T24.632|ICD10CM|Corrosion of second degree of left lower leg|Corrosion of second degree of left lower leg +C2873075|T037|HT|T24.632|ICD10CM|Corrosion of second degree of left lower leg|Corrosion of second degree of left lower leg +C2873076|T037|AB|T24.632A|ICD10CM|Corrosion of second degree of left lower leg, init encntr|Corrosion of second degree of left lower leg, init encntr +C2873076|T037|PT|T24.632A|ICD10CM|Corrosion of second degree of left lower leg, initial encounter|Corrosion of second degree of left lower leg, initial encounter +C2873077|T037|AB|T24.632D|ICD10CM|Corrosion of second degree of left lower leg, subs encntr|Corrosion of second degree of left lower leg, subs encntr +C2873077|T037|PT|T24.632D|ICD10CM|Corrosion of second degree of left lower leg, subsequent encounter|Corrosion of second degree of left lower leg, subsequent encounter +C2873078|T037|PT|T24.632S|ICD10CM|Corrosion of second degree of left lower leg, sequela|Corrosion of second degree of left lower leg, sequela +C2873078|T037|AB|T24.632S|ICD10CM|Corrosion of second degree of left lower leg, sequela|Corrosion of second degree of left lower leg, sequela +C2873079|T037|AB|T24.639|ICD10CM|Corrosion of second degree of unspecified lower leg|Corrosion of second degree of unspecified lower leg +C2873079|T037|HT|T24.639|ICD10CM|Corrosion of second degree of unspecified lower leg|Corrosion of second degree of unspecified lower leg +C2873080|T037|AB|T24.639A|ICD10CM|Corrosion of second degree of unsp lower leg, init encntr|Corrosion of second degree of unsp lower leg, init encntr +C2873080|T037|PT|T24.639A|ICD10CM|Corrosion of second degree of unspecified lower leg, initial encounter|Corrosion of second degree of unspecified lower leg, initial encounter +C2873081|T037|AB|T24.639D|ICD10CM|Corrosion of second degree of unsp lower leg, subs encntr|Corrosion of second degree of unsp lower leg, subs encntr +C2873081|T037|PT|T24.639D|ICD10CM|Corrosion of second degree of unspecified lower leg, subsequent encounter|Corrosion of second degree of unspecified lower leg, subsequent encounter +C2873082|T037|AB|T24.639S|ICD10CM|Corrosion of second degree of unspecified lower leg, sequela|Corrosion of second degree of unspecified lower leg, sequela +C2873082|T037|PT|T24.639S|ICD10CM|Corrosion of second degree of unspecified lower leg, sequela|Corrosion of second degree of unspecified lower leg, sequela +C2873083|T037|AB|T24.69|ICD10CM|Corrosion of 2nd deg mul sites of lower limb, except ank/ft|Corrosion of 2nd deg mul sites of lower limb, except ank/ft +C2873083|T037|HT|T24.69|ICD10CM|Corrosion of second degree of multiple sites of lower limb, except ankle and foot|Corrosion of second degree of multiple sites of lower limb, except ankle and foot +C2873084|T037|AB|T24.691|ICD10CM|Corros 2nd deg mul sites of right lower limb, except ank/ft|Corros 2nd deg mul sites of right lower limb, except ank/ft +C2873084|T037|HT|T24.691|ICD10CM|Corrosion of second degree of multiple sites of right lower limb, except ankle and foot|Corrosion of second degree of multiple sites of right lower limb, except ankle and foot +C2873085|T037|AB|T24.691A|ICD10CM|Corros 2nd deg mul sites of right low limb, ex ank/ft, init|Corros 2nd deg mul sites of right low limb, ex ank/ft, init +C2873086|T037|AB|T24.691D|ICD10CM|Corros 2nd deg mul sites of right low limb, ex ank/ft, subs|Corros 2nd deg mul sites of right low limb, ex ank/ft, subs +C2873087|T037|AB|T24.691S|ICD10CM|Corros 2nd deg mul sites of right low limb, ex ank/ft, sqla|Corros 2nd deg mul sites of right low limb, ex ank/ft, sqla +C2873087|T037|PT|T24.691S|ICD10CM|Corrosion of second degree of multiple sites of right lower limb, except ankle and foot, sequela|Corrosion of second degree of multiple sites of right lower limb, except ankle and foot, sequela +C2873088|T037|AB|T24.692|ICD10CM|Corros 2nd deg mul sites of left lower limb, except ank/ft|Corros 2nd deg mul sites of left lower limb, except ank/ft +C2873088|T037|HT|T24.692|ICD10CM|Corrosion of second degree of multiple sites of left lower limb, except ankle and foot|Corrosion of second degree of multiple sites of left lower limb, except ankle and foot +C2873089|T037|AB|T24.692A|ICD10CM|Corros 2nd deg mul sites of left lower limb, ex ank/ft, init|Corros 2nd deg mul sites of left lower limb, ex ank/ft, init +C2873090|T037|AB|T24.692D|ICD10CM|Corros 2nd deg mul sites of left lower limb, ex ank/ft, subs|Corros 2nd deg mul sites of left lower limb, ex ank/ft, subs +C2873091|T037|AB|T24.692S|ICD10CM|Corros 2nd deg mul sites of left lower limb, ex ank/ft, sqla|Corros 2nd deg mul sites of left lower limb, ex ank/ft, sqla +C2873091|T037|PT|T24.692S|ICD10CM|Corrosion of second degree of multiple sites of left lower limb, except ankle and foot, sequela|Corrosion of second degree of multiple sites of left lower limb, except ankle and foot, sequela +C2873092|T037|AB|T24.699|ICD10CM|Corros 2nd deg mul sites of unsp lower limb, except ank/ft|Corros 2nd deg mul sites of unsp lower limb, except ank/ft +C2873092|T037|HT|T24.699|ICD10CM|Corrosion of second degree of multiple sites of unspecified lower limb, except ankle and foot|Corrosion of second degree of multiple sites of unspecified lower limb, except ankle and foot +C2873093|T037|AB|T24.699A|ICD10CM|Corros 2nd deg mul sites of unsp lower limb, ex ank/ft, init|Corros 2nd deg mul sites of unsp lower limb, ex ank/ft, init +C2873094|T037|AB|T24.699D|ICD10CM|Corros 2nd deg mul sites of unsp lower limb, ex ank/ft, subs|Corros 2nd deg mul sites of unsp lower limb, ex ank/ft, subs +C2873095|T037|AB|T24.699S|ICD10CM|Corros 2nd deg mul sites of unsp lower limb, ex ank/ft, sqla|Corros 2nd deg mul sites of unsp lower limb, ex ank/ft, sqla +C0451996|T037|PT|T24.7|ICD10|Corrosion of third degree of hip and lower limb, except ankle and foot|Corrosion of third degree of hip and lower limb, except ankle and foot +C2873096|T037|AB|T24.7|ICD10CM|Corrosion of third degree of lower limb, except ank/ft|Corrosion of third degree of lower limb, except ank/ft +C2873096|T037|HT|T24.7|ICD10CM|Corrosion of third degree of lower limb, except ankle and foot|Corrosion of third degree of lower limb, except ankle and foot +C2873097|T037|AB|T24.70|ICD10CM|Corros third degree of unsp site lower limb, except ank/ft|Corros third degree of unsp site lower limb, except ank/ft +C2873097|T037|HT|T24.70|ICD10CM|Corrosion of third degree of unspecified site of lower limb, except ankle and foot|Corrosion of third degree of unspecified site of lower limb, except ankle and foot +C2873098|T037|AB|T24.701|ICD10CM|Corros third deg of unsp site right lower limb, ex ank/ft|Corros third deg of unsp site right lower limb, ex ank/ft +C2873098|T037|HT|T24.701|ICD10CM|Corrosion of third degree of unspecified site of right lower limb, except ankle and foot|Corrosion of third degree of unspecified site of right lower limb, except ankle and foot +C2873099|T037|AB|T24.701A|ICD10CM|Corros third deg of unsp site r low limb, ex ank/ft, init|Corros third deg of unsp site r low limb, ex ank/ft, init +C2873100|T037|AB|T24.701D|ICD10CM|Corros third deg of unsp site r low limb, ex ank/ft, subs|Corros third deg of unsp site r low limb, ex ank/ft, subs +C2873101|T037|AB|T24.701S|ICD10CM|Corros third deg of unsp site r low limb, ex ank/ft, sqla|Corros third deg of unsp site r low limb, ex ank/ft, sqla +C2873101|T037|PT|T24.701S|ICD10CM|Corrosion of third degree of unspecified site of right lower limb, except ankle and foot, sequela|Corrosion of third degree of unspecified site of right lower limb, except ankle and foot, sequela +C2873102|T037|AB|T24.702|ICD10CM|Corros third deg of unsp site left lower limb, except ank/ft|Corros third deg of unsp site left lower limb, except ank/ft +C2873102|T037|HT|T24.702|ICD10CM|Corrosion of third degree of unspecified site of left lower limb, except ankle and foot|Corrosion of third degree of unspecified site of left lower limb, except ankle and foot +C2873103|T037|AB|T24.702A|ICD10CM|Corros third deg of unsp site left low limb, ex ank/ft, init|Corros third deg of unsp site left low limb, ex ank/ft, init +C2873104|T037|AB|T24.702D|ICD10CM|Corros third deg of unsp site left low limb, ex ank/ft, subs|Corros third deg of unsp site left low limb, ex ank/ft, subs +C2873105|T037|AB|T24.702S|ICD10CM|Corros third deg of unsp site left low limb, ex ank/ft, sqla|Corros third deg of unsp site left low limb, ex ank/ft, sqla +C2873105|T037|PT|T24.702S|ICD10CM|Corrosion of third degree of unspecified site of left lower limb, except ankle and foot, sequela|Corrosion of third degree of unspecified site of left lower limb, except ankle and foot, sequela +C2873106|T037|AB|T24.709|ICD10CM|Corros third deg of unsp site unsp lower limb, except ank/ft|Corros third deg of unsp site unsp lower limb, except ank/ft +C2873106|T037|HT|T24.709|ICD10CM|Corrosion of third degree of unspecified site of unspecified lower limb, except ankle and foot|Corrosion of third degree of unspecified site of unspecified lower limb, except ankle and foot +C2873107|T037|AB|T24.709A|ICD10CM|Corros third deg of unsp site unsp low limb, ex ank/ft, init|Corros third deg of unsp site unsp low limb, ex ank/ft, init +C2873108|T037|AB|T24.709D|ICD10CM|Corros third deg of unsp site unsp low limb, ex ank/ft, subs|Corros third deg of unsp site unsp low limb, ex ank/ft, subs +C2873109|T037|AB|T24.709S|ICD10CM|Corros third deg of unsp site unsp low limb, ex ank/ft, sqla|Corros third deg of unsp site unsp low limb, ex ank/ft, sqla +C2873110|T037|AB|T24.71|ICD10CM|Corrosion of third degree of thigh|Corrosion of third degree of thigh +C2873110|T037|HT|T24.71|ICD10CM|Corrosion of third degree of thigh|Corrosion of third degree of thigh +C2873111|T037|AB|T24.711|ICD10CM|Corrosion of third degree of right thigh|Corrosion of third degree of right thigh +C2873111|T037|HT|T24.711|ICD10CM|Corrosion of third degree of right thigh|Corrosion of third degree of right thigh +C2873112|T037|PT|T24.711A|ICD10CM|Corrosion of third degree of right thigh, initial encounter|Corrosion of third degree of right thigh, initial encounter +C2873112|T037|AB|T24.711A|ICD10CM|Corrosion of third degree of right thigh, initial encounter|Corrosion of third degree of right thigh, initial encounter +C2873113|T037|AB|T24.711D|ICD10CM|Corrosion of third degree of right thigh, subs encntr|Corrosion of third degree of right thigh, subs encntr +C2873113|T037|PT|T24.711D|ICD10CM|Corrosion of third degree of right thigh, subsequent encounter|Corrosion of third degree of right thigh, subsequent encounter +C2873114|T037|PT|T24.711S|ICD10CM|Corrosion of third degree of right thigh, sequela|Corrosion of third degree of right thigh, sequela +C2873114|T037|AB|T24.711S|ICD10CM|Corrosion of third degree of right thigh, sequela|Corrosion of third degree of right thigh, sequela +C2873115|T037|AB|T24.712|ICD10CM|Corrosion of third degree of left thigh|Corrosion of third degree of left thigh +C2873115|T037|HT|T24.712|ICD10CM|Corrosion of third degree of left thigh|Corrosion of third degree of left thigh +C2873116|T037|PT|T24.712A|ICD10CM|Corrosion of third degree of left thigh, initial encounter|Corrosion of third degree of left thigh, initial encounter +C2873116|T037|AB|T24.712A|ICD10CM|Corrosion of third degree of left thigh, initial encounter|Corrosion of third degree of left thigh, initial encounter +C2873117|T037|AB|T24.712D|ICD10CM|Corrosion of third degree of left thigh, subs encntr|Corrosion of third degree of left thigh, subs encntr +C2873117|T037|PT|T24.712D|ICD10CM|Corrosion of third degree of left thigh, subsequent encounter|Corrosion of third degree of left thigh, subsequent encounter +C2873118|T037|PT|T24.712S|ICD10CM|Corrosion of third degree of left thigh, sequela|Corrosion of third degree of left thigh, sequela +C2873118|T037|AB|T24.712S|ICD10CM|Corrosion of third degree of left thigh, sequela|Corrosion of third degree of left thigh, sequela +C2873119|T037|AB|T24.719|ICD10CM|Corrosion of third degree of unspecified thigh|Corrosion of third degree of unspecified thigh +C2873119|T037|HT|T24.719|ICD10CM|Corrosion of third degree of unspecified thigh|Corrosion of third degree of unspecified thigh +C2873120|T037|AB|T24.719A|ICD10CM|Corrosion of third degree of unspecified thigh, init encntr|Corrosion of third degree of unspecified thigh, init encntr +C2873120|T037|PT|T24.719A|ICD10CM|Corrosion of third degree of unspecified thigh, initial encounter|Corrosion of third degree of unspecified thigh, initial encounter +C2873121|T037|AB|T24.719D|ICD10CM|Corrosion of third degree of unspecified thigh, subs encntr|Corrosion of third degree of unspecified thigh, subs encntr +C2873121|T037|PT|T24.719D|ICD10CM|Corrosion of third degree of unspecified thigh, subsequent encounter|Corrosion of third degree of unspecified thigh, subsequent encounter +C2873122|T037|PT|T24.719S|ICD10CM|Corrosion of third degree of unspecified thigh, sequela|Corrosion of third degree of unspecified thigh, sequela +C2873122|T037|AB|T24.719S|ICD10CM|Corrosion of third degree of unspecified thigh, sequela|Corrosion of third degree of unspecified thigh, sequela +C2873123|T037|AB|T24.72|ICD10CM|Corrosion of third degree of knee|Corrosion of third degree of knee +C2873123|T037|HT|T24.72|ICD10CM|Corrosion of third degree of knee|Corrosion of third degree of knee +C2873124|T037|AB|T24.721|ICD10CM|Corrosion of third degree of right knee|Corrosion of third degree of right knee +C2873124|T037|HT|T24.721|ICD10CM|Corrosion of third degree of right knee|Corrosion of third degree of right knee +C2873125|T037|PT|T24.721A|ICD10CM|Corrosion of third degree of right knee, initial encounter|Corrosion of third degree of right knee, initial encounter +C2873125|T037|AB|T24.721A|ICD10CM|Corrosion of third degree of right knee, initial encounter|Corrosion of third degree of right knee, initial encounter +C2873126|T037|AB|T24.721D|ICD10CM|Corrosion of third degree of right knee, subs encntr|Corrosion of third degree of right knee, subs encntr +C2873126|T037|PT|T24.721D|ICD10CM|Corrosion of third degree of right knee, subsequent encounter|Corrosion of third degree of right knee, subsequent encounter +C2873127|T037|PT|T24.721S|ICD10CM|Corrosion of third degree of right knee, sequela|Corrosion of third degree of right knee, sequela +C2873127|T037|AB|T24.721S|ICD10CM|Corrosion of third degree of right knee, sequela|Corrosion of third degree of right knee, sequela +C2873128|T037|AB|T24.722|ICD10CM|Corrosion of third degree of left knee|Corrosion of third degree of left knee +C2873128|T037|HT|T24.722|ICD10CM|Corrosion of third degree of left knee|Corrosion of third degree of left knee +C2873129|T037|PT|T24.722A|ICD10CM|Corrosion of third degree of left knee, initial encounter|Corrosion of third degree of left knee, initial encounter +C2873129|T037|AB|T24.722A|ICD10CM|Corrosion of third degree of left knee, initial encounter|Corrosion of third degree of left knee, initial encounter +C2873130|T037|AB|T24.722D|ICD10CM|Corrosion of third degree of left knee, subsequent encounter|Corrosion of third degree of left knee, subsequent encounter +C2873130|T037|PT|T24.722D|ICD10CM|Corrosion of third degree of left knee, subsequent encounter|Corrosion of third degree of left knee, subsequent encounter +C2873131|T037|PT|T24.722S|ICD10CM|Corrosion of third degree of left knee, sequela|Corrosion of third degree of left knee, sequela +C2873131|T037|AB|T24.722S|ICD10CM|Corrosion of third degree of left knee, sequela|Corrosion of third degree of left knee, sequela +C2873132|T037|AB|T24.729|ICD10CM|Corrosion of third degree of unspecified knee|Corrosion of third degree of unspecified knee +C2873132|T037|HT|T24.729|ICD10CM|Corrosion of third degree of unspecified knee|Corrosion of third degree of unspecified knee +C2873133|T037|AB|T24.729A|ICD10CM|Corrosion of third degree of unspecified knee, init encntr|Corrosion of third degree of unspecified knee, init encntr +C2873133|T037|PT|T24.729A|ICD10CM|Corrosion of third degree of unspecified knee, initial encounter|Corrosion of third degree of unspecified knee, initial encounter +C2873134|T037|AB|T24.729D|ICD10CM|Corrosion of third degree of unspecified knee, subs encntr|Corrosion of third degree of unspecified knee, subs encntr +C2873134|T037|PT|T24.729D|ICD10CM|Corrosion of third degree of unspecified knee, subsequent encounter|Corrosion of third degree of unspecified knee, subsequent encounter +C2873135|T037|PT|T24.729S|ICD10CM|Corrosion of third degree of unspecified knee, sequela|Corrosion of third degree of unspecified knee, sequela +C2873135|T037|AB|T24.729S|ICD10CM|Corrosion of third degree of unspecified knee, sequela|Corrosion of third degree of unspecified knee, sequela +C2873136|T037|AB|T24.73|ICD10CM|Corrosion of third degree of lower leg|Corrosion of third degree of lower leg +C2873136|T037|HT|T24.73|ICD10CM|Corrosion of third degree of lower leg|Corrosion of third degree of lower leg +C2873137|T037|AB|T24.731|ICD10CM|Corrosion of third degree of right lower leg|Corrosion of third degree of right lower leg +C2873137|T037|HT|T24.731|ICD10CM|Corrosion of third degree of right lower leg|Corrosion of third degree of right lower leg +C2873138|T037|AB|T24.731A|ICD10CM|Corrosion of third degree of right lower leg, init encntr|Corrosion of third degree of right lower leg, init encntr +C2873138|T037|PT|T24.731A|ICD10CM|Corrosion of third degree of right lower leg, initial encounter|Corrosion of third degree of right lower leg, initial encounter +C2873139|T037|AB|T24.731D|ICD10CM|Corrosion of third degree of right lower leg, subs encntr|Corrosion of third degree of right lower leg, subs encntr +C2873139|T037|PT|T24.731D|ICD10CM|Corrosion of third degree of right lower leg, subsequent encounter|Corrosion of third degree of right lower leg, subsequent encounter +C2873140|T037|PT|T24.731S|ICD10CM|Corrosion of third degree of right lower leg, sequela|Corrosion of third degree of right lower leg, sequela +C2873140|T037|AB|T24.731S|ICD10CM|Corrosion of third degree of right lower leg, sequela|Corrosion of third degree of right lower leg, sequela +C2873141|T037|AB|T24.732|ICD10CM|Corrosion of third degree of left lower leg|Corrosion of third degree of left lower leg +C2873141|T037|HT|T24.732|ICD10CM|Corrosion of third degree of left lower leg|Corrosion of third degree of left lower leg +C2873142|T037|AB|T24.732A|ICD10CM|Corrosion of third degree of left lower leg, init encntr|Corrosion of third degree of left lower leg, init encntr +C2873142|T037|PT|T24.732A|ICD10CM|Corrosion of third degree of left lower leg, initial encounter|Corrosion of third degree of left lower leg, initial encounter +C2873143|T037|AB|T24.732D|ICD10CM|Corrosion of third degree of left lower leg, subs encntr|Corrosion of third degree of left lower leg, subs encntr +C2873143|T037|PT|T24.732D|ICD10CM|Corrosion of third degree of left lower leg, subsequent encounter|Corrosion of third degree of left lower leg, subsequent encounter +C2873144|T037|PT|T24.732S|ICD10CM|Corrosion of third degree of left lower leg, sequela|Corrosion of third degree of left lower leg, sequela +C2873144|T037|AB|T24.732S|ICD10CM|Corrosion of third degree of left lower leg, sequela|Corrosion of third degree of left lower leg, sequela +C2873145|T037|AB|T24.739|ICD10CM|Corrosion of third degree of unspecified lower leg|Corrosion of third degree of unspecified lower leg +C2873145|T037|HT|T24.739|ICD10CM|Corrosion of third degree of unspecified lower leg|Corrosion of third degree of unspecified lower leg +C2873146|T037|AB|T24.739A|ICD10CM|Corrosion of third degree of unsp lower leg, init encntr|Corrosion of third degree of unsp lower leg, init encntr +C2873146|T037|PT|T24.739A|ICD10CM|Corrosion of third degree of unspecified lower leg, initial encounter|Corrosion of third degree of unspecified lower leg, initial encounter +C2873147|T037|AB|T24.739D|ICD10CM|Corrosion of third degree of unsp lower leg, subs encntr|Corrosion of third degree of unsp lower leg, subs encntr +C2873147|T037|PT|T24.739D|ICD10CM|Corrosion of third degree of unspecified lower leg, subsequent encounter|Corrosion of third degree of unspecified lower leg, subsequent encounter +C2873148|T037|PT|T24.739S|ICD10CM|Corrosion of third degree of unspecified lower leg, sequela|Corrosion of third degree of unspecified lower leg, sequela +C2873148|T037|AB|T24.739S|ICD10CM|Corrosion of third degree of unspecified lower leg, sequela|Corrosion of third degree of unspecified lower leg, sequela +C2873149|T037|AB|T24.79|ICD10CM|Corrosion of 3rd deg mu sites of lower limb, except ank/ft|Corrosion of 3rd deg mu sites of lower limb, except ank/ft +C2873149|T037|HT|T24.79|ICD10CM|Corrosion of third degree of multiple sites of lower limb, except ankle and foot|Corrosion of third degree of multiple sites of lower limb, except ankle and foot +C2873150|T037|AB|T24.791|ICD10CM|Corros 3rd deg mu sites of right lower limb, except ank/ft|Corros 3rd deg mu sites of right lower limb, except ank/ft +C2873150|T037|HT|T24.791|ICD10CM|Corrosion of third degree of multiple sites of right lower limb, except ankle and foot|Corrosion of third degree of multiple sites of right lower limb, except ankle and foot +C2873151|T037|AB|T24.791A|ICD10CM|Corros 3rd deg mu sites of right lower limb, ex ank/ft, init|Corros 3rd deg mu sites of right lower limb, ex ank/ft, init +C2873152|T037|AB|T24.791D|ICD10CM|Corros 3rd deg mu sites of right lower limb, ex ank/ft, subs|Corros 3rd deg mu sites of right lower limb, ex ank/ft, subs +C2873153|T037|AB|T24.791S|ICD10CM|Corros 3rd deg mu sites of right lower limb, ex ank/ft, sqla|Corros 3rd deg mu sites of right lower limb, ex ank/ft, sqla +C2873153|T037|PT|T24.791S|ICD10CM|Corrosion of third degree of multiple sites of right lower limb, except ankle and foot, sequela|Corrosion of third degree of multiple sites of right lower limb, except ankle and foot, sequela +C2873154|T037|AB|T24.792|ICD10CM|Corros 3rd deg mu sites of left lower limb, except ank/ft|Corros 3rd deg mu sites of left lower limb, except ank/ft +C2873154|T037|HT|T24.792|ICD10CM|Corrosion of third degree of multiple sites of left lower limb, except ankle and foot|Corrosion of third degree of multiple sites of left lower limb, except ankle and foot +C2873155|T037|AB|T24.792A|ICD10CM|Corros 3rd deg mu sites of left lower limb, ex ank/ft, init|Corros 3rd deg mu sites of left lower limb, ex ank/ft, init +C2873156|T037|AB|T24.792D|ICD10CM|Corros 3rd deg mu sites of left lower limb, ex ank/ft, subs|Corros 3rd deg mu sites of left lower limb, ex ank/ft, subs +C2873157|T037|AB|T24.792S|ICD10CM|Corros 3rd deg mu sites of left lower limb, ex ank/ft, sqla|Corros 3rd deg mu sites of left lower limb, ex ank/ft, sqla +C2873157|T037|PT|T24.792S|ICD10CM|Corrosion of third degree of multiple sites of left lower limb, except ankle and foot, sequela|Corrosion of third degree of multiple sites of left lower limb, except ankle and foot, sequela +C2873158|T037|AB|T24.799|ICD10CM|Corros 3rd deg mu sites of unsp lower limb, except ank/ft|Corros 3rd deg mu sites of unsp lower limb, except ank/ft +C2873158|T037|HT|T24.799|ICD10CM|Corrosion of third degree of multiple sites of unspecified lower limb, except ankle and foot|Corrosion of third degree of multiple sites of unspecified lower limb, except ankle and foot +C2873159|T037|AB|T24.799A|ICD10CM|Corros 3rd deg mu sites of unsp lower limb, ex ank/ft, init|Corros 3rd deg mu sites of unsp lower limb, ex ank/ft, init +C2873160|T037|AB|T24.799D|ICD10CM|Corros 3rd deg mu sites of unsp lower limb, ex ank/ft, subs|Corros 3rd deg mu sites of unsp lower limb, ex ank/ft, subs +C2873161|T037|AB|T24.799S|ICD10CM|Corros 3rd deg mu sites of unsp lower limb, ex ank/ft, sqla|Corros 3rd deg mu sites of unsp lower limb, ex ank/ft, sqla +C0562094|T037|HT|T25|ICD10|Burn and corrosion of ankle and foot|Burn and corrosion of ankle and foot +C0562094|T037|AB|T25|ICD10CM|Burn and corrosion of ankle and foot|Burn and corrosion of ankle and foot +C0562094|T037|HT|T25|ICD10CM|Burn and corrosion of ankle and foot|Burn and corrosion of ankle and foot +C0496050|T037|HT|T25.0|ICD10CM|Burn of unspecified degree of ankle and foot|Burn of unspecified degree of ankle and foot +C0496050|T037|AB|T25.0|ICD10CM|Burn of unspecified degree of ankle and foot|Burn of unspecified degree of ankle and foot +C0496050|T037|PT|T25.0|ICD10|Burn of unspecified degree of ankle and foot|Burn of unspecified degree of ankle and foot +C0274161|T037|HT|T25.01|ICD10CM|Burn of unspecified degree of ankle|Burn of unspecified degree of ankle +C0274161|T037|AB|T25.01|ICD10CM|Burn of unspecified degree of ankle|Burn of unspecified degree of ankle +C2873162|T037|AB|T25.011|ICD10CM|Burn of unspecified degree of right ankle|Burn of unspecified degree of right ankle +C2873162|T037|HT|T25.011|ICD10CM|Burn of unspecified degree of right ankle|Burn of unspecified degree of right ankle +C2873163|T037|AB|T25.011A|ICD10CM|Burn of unspecified degree of right ankle, initial encounter|Burn of unspecified degree of right ankle, initial encounter +C2873163|T037|PT|T25.011A|ICD10CM|Burn of unspecified degree of right ankle, initial encounter|Burn of unspecified degree of right ankle, initial encounter +C2873164|T037|AB|T25.011D|ICD10CM|Burn of unspecified degree of right ankle, subs encntr|Burn of unspecified degree of right ankle, subs encntr +C2873164|T037|PT|T25.011D|ICD10CM|Burn of unspecified degree of right ankle, subsequent encounter|Burn of unspecified degree of right ankle, subsequent encounter +C2873165|T037|PT|T25.011S|ICD10CM|Burn of unspecified degree of right ankle, sequela|Burn of unspecified degree of right ankle, sequela +C2873165|T037|AB|T25.011S|ICD10CM|Burn of unspecified degree of right ankle, sequela|Burn of unspecified degree of right ankle, sequela +C2873166|T037|AB|T25.012|ICD10CM|Burn of unspecified degree of left ankle|Burn of unspecified degree of left ankle +C2873166|T037|HT|T25.012|ICD10CM|Burn of unspecified degree of left ankle|Burn of unspecified degree of left ankle +C2873167|T037|PT|T25.012A|ICD10CM|Burn of unspecified degree of left ankle, initial encounter|Burn of unspecified degree of left ankle, initial encounter +C2873167|T037|AB|T25.012A|ICD10CM|Burn of unspecified degree of left ankle, initial encounter|Burn of unspecified degree of left ankle, initial encounter +C2873168|T037|AB|T25.012D|ICD10CM|Burn of unspecified degree of left ankle, subs encntr|Burn of unspecified degree of left ankle, subs encntr +C2873168|T037|PT|T25.012D|ICD10CM|Burn of unspecified degree of left ankle, subsequent encounter|Burn of unspecified degree of left ankle, subsequent encounter +C2873169|T037|PT|T25.012S|ICD10CM|Burn of unspecified degree of left ankle, sequela|Burn of unspecified degree of left ankle, sequela +C2873169|T037|AB|T25.012S|ICD10CM|Burn of unspecified degree of left ankle, sequela|Burn of unspecified degree of left ankle, sequela +C2873170|T037|AB|T25.019|ICD10CM|Burn of unspecified degree of unspecified ankle|Burn of unspecified degree of unspecified ankle +C2873170|T037|HT|T25.019|ICD10CM|Burn of unspecified degree of unspecified ankle|Burn of unspecified degree of unspecified ankle +C2873171|T037|AB|T25.019A|ICD10CM|Burn of unspecified degree of unspecified ankle, init encntr|Burn of unspecified degree of unspecified ankle, init encntr +C2873171|T037|PT|T25.019A|ICD10CM|Burn of unspecified degree of unspecified ankle, initial encounter|Burn of unspecified degree of unspecified ankle, initial encounter +C2873172|T037|AB|T25.019D|ICD10CM|Burn of unspecified degree of unspecified ankle, subs encntr|Burn of unspecified degree of unspecified ankle, subs encntr +C2873172|T037|PT|T25.019D|ICD10CM|Burn of unspecified degree of unspecified ankle, subsequent encounter|Burn of unspecified degree of unspecified ankle, subsequent encounter +C2873173|T037|PT|T25.019S|ICD10CM|Burn of unspecified degree of unspecified ankle, sequela|Burn of unspecified degree of unspecified ankle, sequela +C2873173|T037|AB|T25.019S|ICD10CM|Burn of unspecified degree of unspecified ankle, sequela|Burn of unspecified degree of unspecified ankle, sequela +C0274167|T037|HT|T25.02|ICD10CM|Burn of unspecified degree of foot|Burn of unspecified degree of foot +C0274167|T037|AB|T25.02|ICD10CM|Burn of unspecified degree of foot|Burn of unspecified degree of foot +C2873174|T037|AB|T25.021|ICD10CM|Burn of unspecified degree of right foot|Burn of unspecified degree of right foot +C2873174|T037|HT|T25.021|ICD10CM|Burn of unspecified degree of right foot|Burn of unspecified degree of right foot +C2873175|T037|PT|T25.021A|ICD10CM|Burn of unspecified degree of right foot, initial encounter|Burn of unspecified degree of right foot, initial encounter +C2873175|T037|AB|T25.021A|ICD10CM|Burn of unspecified degree of right foot, initial encounter|Burn of unspecified degree of right foot, initial encounter +C2873176|T037|AB|T25.021D|ICD10CM|Burn of unspecified degree of right foot, subs encntr|Burn of unspecified degree of right foot, subs encntr +C2873176|T037|PT|T25.021D|ICD10CM|Burn of unspecified degree of right foot, subsequent encounter|Burn of unspecified degree of right foot, subsequent encounter +C2873177|T037|PT|T25.021S|ICD10CM|Burn of unspecified degree of right foot, sequela|Burn of unspecified degree of right foot, sequela +C2873177|T037|AB|T25.021S|ICD10CM|Burn of unspecified degree of right foot, sequela|Burn of unspecified degree of right foot, sequela +C2873178|T037|AB|T25.022|ICD10CM|Burn of unspecified degree of left foot|Burn of unspecified degree of left foot +C2873178|T037|HT|T25.022|ICD10CM|Burn of unspecified degree of left foot|Burn of unspecified degree of left foot +C2873179|T037|PT|T25.022A|ICD10CM|Burn of unspecified degree of left foot, initial encounter|Burn of unspecified degree of left foot, initial encounter +C2873179|T037|AB|T25.022A|ICD10CM|Burn of unspecified degree of left foot, initial encounter|Burn of unspecified degree of left foot, initial encounter +C2873180|T037|AB|T25.022D|ICD10CM|Burn of unspecified degree of left foot, subs encntr|Burn of unspecified degree of left foot, subs encntr +C2873180|T037|PT|T25.022D|ICD10CM|Burn of unspecified degree of left foot, subsequent encounter|Burn of unspecified degree of left foot, subsequent encounter +C2873181|T037|PT|T25.022S|ICD10CM|Burn of unspecified degree of left foot, sequela|Burn of unspecified degree of left foot, sequela +C2873181|T037|AB|T25.022S|ICD10CM|Burn of unspecified degree of left foot, sequela|Burn of unspecified degree of left foot, sequela +C2873182|T037|AB|T25.029|ICD10CM|Burn of unspecified degree of unspecified foot|Burn of unspecified degree of unspecified foot +C2873182|T037|HT|T25.029|ICD10CM|Burn of unspecified degree of unspecified foot|Burn of unspecified degree of unspecified foot +C2873183|T037|AB|T25.029A|ICD10CM|Burn of unspecified degree of unspecified foot, init encntr|Burn of unspecified degree of unspecified foot, init encntr +C2873183|T037|PT|T25.029A|ICD10CM|Burn of unspecified degree of unspecified foot, initial encounter|Burn of unspecified degree of unspecified foot, initial encounter +C2873184|T037|AB|T25.029D|ICD10CM|Burn of unspecified degree of unspecified foot, subs encntr|Burn of unspecified degree of unspecified foot, subs encntr +C2873184|T037|PT|T25.029D|ICD10CM|Burn of unspecified degree of unspecified foot, subsequent encounter|Burn of unspecified degree of unspecified foot, subsequent encounter +C2873185|T037|AB|T25.029S|ICD10CM|Burn of unspecified degree of unspecified foot, sequela|Burn of unspecified degree of unspecified foot, sequela +C2873185|T037|PT|T25.029S|ICD10CM|Burn of unspecified degree of unspecified foot, sequela|Burn of unspecified degree of unspecified foot, sequela +C0161263|T037|HT|T25.03|ICD10CM|Burn of unspecified degree of toe(s) (nail)|Burn of unspecified degree of toe(s) (nail) +C0161263|T037|AB|T25.03|ICD10CM|Burn of unspecified degree of toe(s) (nail)|Burn of unspecified degree of toe(s) (nail) +C2873186|T037|AB|T25.031|ICD10CM|Burn of unspecified degree of right toe(s) (nail)|Burn of unspecified degree of right toe(s) (nail) +C2873186|T037|HT|T25.031|ICD10CM|Burn of unspecified degree of right toe(s) (nail)|Burn of unspecified degree of right toe(s) (nail) +C2873187|T037|AB|T25.031A|ICD10CM|Burn of unsp degree of right toe(s) (nail), init encntr|Burn of unsp degree of right toe(s) (nail), init encntr +C2873187|T037|PT|T25.031A|ICD10CM|Burn of unspecified degree of right toe(s) (nail), initial encounter|Burn of unspecified degree of right toe(s) (nail), initial encounter +C2873188|T037|AB|T25.031D|ICD10CM|Burn of unsp degree of right toe(s) (nail), subs encntr|Burn of unsp degree of right toe(s) (nail), subs encntr +C2873188|T037|PT|T25.031D|ICD10CM|Burn of unspecified degree of right toe(s) (nail), subsequent encounter|Burn of unspecified degree of right toe(s) (nail), subsequent encounter +C2873189|T037|PT|T25.031S|ICD10CM|Burn of unspecified degree of right toe(s) (nail), sequela|Burn of unspecified degree of right toe(s) (nail), sequela +C2873189|T037|AB|T25.031S|ICD10CM|Burn of unspecified degree of right toe(s) (nail), sequela|Burn of unspecified degree of right toe(s) (nail), sequela +C2873190|T037|AB|T25.032|ICD10CM|Burn of unspecified degree of left toe(s) (nail)|Burn of unspecified degree of left toe(s) (nail) +C2873190|T037|HT|T25.032|ICD10CM|Burn of unspecified degree of left toe(s) (nail)|Burn of unspecified degree of left toe(s) (nail) +C2873191|T037|AB|T25.032A|ICD10CM|Burn of unsp degree of left toe(s) (nail), init encntr|Burn of unsp degree of left toe(s) (nail), init encntr +C2873191|T037|PT|T25.032A|ICD10CM|Burn of unspecified degree of left toe(s) (nail), initial encounter|Burn of unspecified degree of left toe(s) (nail), initial encounter +C2873192|T037|AB|T25.032D|ICD10CM|Burn of unsp degree of left toe(s) (nail), subs encntr|Burn of unsp degree of left toe(s) (nail), subs encntr +C2873192|T037|PT|T25.032D|ICD10CM|Burn of unspecified degree of left toe(s) (nail), subsequent encounter|Burn of unspecified degree of left toe(s) (nail), subsequent encounter +C2873193|T037|PT|T25.032S|ICD10CM|Burn of unspecified degree of left toe(s) (nail), sequela|Burn of unspecified degree of left toe(s) (nail), sequela +C2873193|T037|AB|T25.032S|ICD10CM|Burn of unspecified degree of left toe(s) (nail), sequela|Burn of unspecified degree of left toe(s) (nail), sequela +C2873194|T037|AB|T25.039|ICD10CM|Burn of unspecified degree of unspecified toe(s) (nail)|Burn of unspecified degree of unspecified toe(s) (nail) +C2873194|T037|HT|T25.039|ICD10CM|Burn of unspecified degree of unspecified toe(s) (nail)|Burn of unspecified degree of unspecified toe(s) (nail) +C2873195|T037|AB|T25.039A|ICD10CM|Burn of unsp degree of unsp toe(s) (nail), init encntr|Burn of unsp degree of unsp toe(s) (nail), init encntr +C2873195|T037|PT|T25.039A|ICD10CM|Burn of unspecified degree of unspecified toe(s) (nail), initial encounter|Burn of unspecified degree of unspecified toe(s) (nail), initial encounter +C2873196|T037|AB|T25.039D|ICD10CM|Burn of unsp degree of unsp toe(s) (nail), subs encntr|Burn of unsp degree of unsp toe(s) (nail), subs encntr +C2873196|T037|PT|T25.039D|ICD10CM|Burn of unspecified degree of unspecified toe(s) (nail), subsequent encounter|Burn of unspecified degree of unspecified toe(s) (nail), subsequent encounter +C2873197|T037|AB|T25.039S|ICD10CM|Burn of unsp degree of unspecified toe(s) (nail), sequela|Burn of unsp degree of unspecified toe(s) (nail), sequela +C2873197|T037|PT|T25.039S|ICD10CM|Burn of unspecified degree of unspecified toe(s) (nail), sequela|Burn of unspecified degree of unspecified toe(s) (nail), sequela +C2873198|T037|AB|T25.09|ICD10CM|Burn of unsp degree of multiple sites of ankle and foot|Burn of unsp degree of multiple sites of ankle and foot +C2873198|T037|HT|T25.09|ICD10CM|Burn of unspecified degree of multiple sites of ankle and foot|Burn of unspecified degree of multiple sites of ankle and foot +C2873199|T037|AB|T25.091|ICD10CM|Burn of unsp deg mult sites of right ankle and foot|Burn of unsp deg mult sites of right ankle and foot +C2873199|T037|HT|T25.091|ICD10CM|Burn of unspecified degree of multiple sites of right ankle and foot|Burn of unspecified degree of multiple sites of right ankle and foot +C2873200|T037|AB|T25.091A|ICD10CM|Burn of unsp deg mult sites of right ankle and foot, init|Burn of unsp deg mult sites of right ankle and foot, init +C2873200|T037|PT|T25.091A|ICD10CM|Burn of unspecified degree of multiple sites of right ankle and foot, initial encounter|Burn of unspecified degree of multiple sites of right ankle and foot, initial encounter +C2873201|T037|AB|T25.091D|ICD10CM|Burn of unsp deg mult sites of right ankle and foot, subs|Burn of unsp deg mult sites of right ankle and foot, subs +C2873201|T037|PT|T25.091D|ICD10CM|Burn of unspecified degree of multiple sites of right ankle and foot, subsequent encounter|Burn of unspecified degree of multiple sites of right ankle and foot, subsequent encounter +C2873202|T037|AB|T25.091S|ICD10CM|Burn of unsp deg mult sites of right ankle and foot, sequela|Burn of unsp deg mult sites of right ankle and foot, sequela +C2873202|T037|PT|T25.091S|ICD10CM|Burn of unspecified degree of multiple sites of right ankle and foot, sequela|Burn of unspecified degree of multiple sites of right ankle and foot, sequela +C2873203|T037|AB|T25.092|ICD10CM|Burn of unsp degree of multiple sites of left ankle and foot|Burn of unsp degree of multiple sites of left ankle and foot +C2873203|T037|HT|T25.092|ICD10CM|Burn of unspecified degree of multiple sites of left ankle and foot|Burn of unspecified degree of multiple sites of left ankle and foot +C2873204|T037|AB|T25.092A|ICD10CM|Burn of unsp deg mult sites of left ankle and foot, init|Burn of unsp deg mult sites of left ankle and foot, init +C2873204|T037|PT|T25.092A|ICD10CM|Burn of unspecified degree of multiple sites of left ankle and foot, initial encounter|Burn of unspecified degree of multiple sites of left ankle and foot, initial encounter +C2873205|T037|AB|T25.092D|ICD10CM|Burn of unsp deg mult sites of left ankle and foot, subs|Burn of unsp deg mult sites of left ankle and foot, subs +C2873205|T037|PT|T25.092D|ICD10CM|Burn of unspecified degree of multiple sites of left ankle and foot, subsequent encounter|Burn of unspecified degree of multiple sites of left ankle and foot, subsequent encounter +C2873206|T037|AB|T25.092S|ICD10CM|Burn of unsp deg mult sites of left ankle and foot, sequela|Burn of unsp deg mult sites of left ankle and foot, sequela +C2873206|T037|PT|T25.092S|ICD10CM|Burn of unspecified degree of multiple sites of left ankle and foot, sequela|Burn of unspecified degree of multiple sites of left ankle and foot, sequela +C2873207|T037|AB|T25.099|ICD10CM|Burn of unsp degree of multiple sites of unsp ankle and foot|Burn of unsp degree of multiple sites of unsp ankle and foot +C2873207|T037|HT|T25.099|ICD10CM|Burn of unspecified degree of multiple sites of unspecified ankle and foot|Burn of unspecified degree of multiple sites of unspecified ankle and foot +C2873208|T037|AB|T25.099A|ICD10CM|Burn of unsp deg mult sites of unsp ankle and foot, init|Burn of unsp deg mult sites of unsp ankle and foot, init +C2873208|T037|PT|T25.099A|ICD10CM|Burn of unspecified degree of multiple sites of unspecified ankle and foot, initial encounter|Burn of unspecified degree of multiple sites of unspecified ankle and foot, initial encounter +C2873209|T037|AB|T25.099D|ICD10CM|Burn of unsp deg mult sites of unsp ankle and foot, subs|Burn of unsp deg mult sites of unsp ankle and foot, subs +C2873209|T037|PT|T25.099D|ICD10CM|Burn of unspecified degree of multiple sites of unspecified ankle and foot, subsequent encounter|Burn of unspecified degree of multiple sites of unspecified ankle and foot, subsequent encounter +C2873210|T037|AB|T25.099S|ICD10CM|Burn of unsp deg mult sites of unsp ankle and foot, sequela|Burn of unsp deg mult sites of unsp ankle and foot, sequela +C2873210|T037|PT|T25.099S|ICD10CM|Burn of unspecified degree of multiple sites of unspecified ankle and foot, sequela|Burn of unspecified degree of multiple sites of unspecified ankle and foot, sequela +C0496051|T037|PT|T25.1|ICD10|Burn of first degree of ankle and foot|Burn of first degree of ankle and foot +C0496051|T037|HT|T25.1|ICD10CM|Burn of first degree of ankle and foot|Burn of first degree of ankle and foot +C0496051|T037|AB|T25.1|ICD10CM|Burn of first degree of ankle and foot|Burn of first degree of ankle and foot +C0433344|T037|AB|T25.11|ICD10CM|Burn of first degree of ankle|Burn of first degree of ankle +C0433344|T037|HT|T25.11|ICD10CM|Burn of first degree of ankle|Burn of first degree of ankle +C2103878|T037|AB|T25.111|ICD10CM|Burn of first degree of right ankle|Burn of first degree of right ankle +C2103878|T037|HT|T25.111|ICD10CM|Burn of first degree of right ankle|Burn of first degree of right ankle +C2873211|T037|PT|T25.111A|ICD10CM|Burn of first degree of right ankle, initial encounter|Burn of first degree of right ankle, initial encounter +C2873211|T037|AB|T25.111A|ICD10CM|Burn of first degree of right ankle, initial encounter|Burn of first degree of right ankle, initial encounter +C2873212|T037|PT|T25.111D|ICD10CM|Burn of first degree of right ankle, subsequent encounter|Burn of first degree of right ankle, subsequent encounter +C2873212|T037|AB|T25.111D|ICD10CM|Burn of first degree of right ankle, subsequent encounter|Burn of first degree of right ankle, subsequent encounter +C2873213|T037|PT|T25.111S|ICD10CM|Burn of first degree of right ankle, sequela|Burn of first degree of right ankle, sequela +C2873213|T037|AB|T25.111S|ICD10CM|Burn of first degree of right ankle, sequela|Burn of first degree of right ankle, sequela +C2103883|T037|AB|T25.112|ICD10CM|Burn of first degree of left ankle|Burn of first degree of left ankle +C2103883|T037|HT|T25.112|ICD10CM|Burn of first degree of left ankle|Burn of first degree of left ankle +C2873214|T037|PT|T25.112A|ICD10CM|Burn of first degree of left ankle, initial encounter|Burn of first degree of left ankle, initial encounter +C2873214|T037|AB|T25.112A|ICD10CM|Burn of first degree of left ankle, initial encounter|Burn of first degree of left ankle, initial encounter +C2873215|T037|PT|T25.112D|ICD10CM|Burn of first degree of left ankle, subsequent encounter|Burn of first degree of left ankle, subsequent encounter +C2873215|T037|AB|T25.112D|ICD10CM|Burn of first degree of left ankle, subsequent encounter|Burn of first degree of left ankle, subsequent encounter +C2873216|T037|PT|T25.112S|ICD10CM|Burn of first degree of left ankle, sequela|Burn of first degree of left ankle, sequela +C2873216|T037|AB|T25.112S|ICD10CM|Burn of first degree of left ankle, sequela|Burn of first degree of left ankle, sequela +C2873217|T037|AB|T25.119|ICD10CM|Burn of first degree of unspecified ankle|Burn of first degree of unspecified ankle +C2873217|T037|HT|T25.119|ICD10CM|Burn of first degree of unspecified ankle|Burn of first degree of unspecified ankle +C2873218|T037|AB|T25.119A|ICD10CM|Burn of first degree of unspecified ankle, initial encounter|Burn of first degree of unspecified ankle, initial encounter +C2873218|T037|PT|T25.119A|ICD10CM|Burn of first degree of unspecified ankle, initial encounter|Burn of first degree of unspecified ankle, initial encounter +C2873219|T037|AB|T25.119D|ICD10CM|Burn of first degree of unspecified ankle, subs encntr|Burn of first degree of unspecified ankle, subs encntr +C2873219|T037|PT|T25.119D|ICD10CM|Burn of first degree of unspecified ankle, subsequent encounter|Burn of first degree of unspecified ankle, subsequent encounter +C2873220|T037|PT|T25.119S|ICD10CM|Burn of first degree of unspecified ankle, sequela|Burn of first degree of unspecified ankle, sequela +C2873220|T037|AB|T25.119S|ICD10CM|Burn of first degree of unspecified ankle, sequela|Burn of first degree of unspecified ankle, sequela +C0433345|T037|AB|T25.12|ICD10CM|Burn of first degree of foot|Burn of first degree of foot +C0433345|T037|HT|T25.12|ICD10CM|Burn of first degree of foot|Burn of first degree of foot +C2103877|T037|AB|T25.121|ICD10CM|Burn of first degree of right foot|Burn of first degree of right foot +C2103877|T037|HT|T25.121|ICD10CM|Burn of first degree of right foot|Burn of first degree of right foot +C2873221|T037|PT|T25.121A|ICD10CM|Burn of first degree of right foot, initial encounter|Burn of first degree of right foot, initial encounter +C2873221|T037|AB|T25.121A|ICD10CM|Burn of first degree of right foot, initial encounter|Burn of first degree of right foot, initial encounter +C2873222|T037|PT|T25.121D|ICD10CM|Burn of first degree of right foot, subsequent encounter|Burn of first degree of right foot, subsequent encounter +C2873222|T037|AB|T25.121D|ICD10CM|Burn of first degree of right foot, subsequent encounter|Burn of first degree of right foot, subsequent encounter +C2873223|T037|PT|T25.121S|ICD10CM|Burn of first degree of right foot, sequela|Burn of first degree of right foot, sequela +C2873223|T037|AB|T25.121S|ICD10CM|Burn of first degree of right foot, sequela|Burn of first degree of right foot, sequela +C2103882|T037|AB|T25.122|ICD10CM|Burn of first degree of left foot|Burn of first degree of left foot +C2103882|T037|HT|T25.122|ICD10CM|Burn of first degree of left foot|Burn of first degree of left foot +C2873224|T037|PT|T25.122A|ICD10CM|Burn of first degree of left foot, initial encounter|Burn of first degree of left foot, initial encounter +C2873224|T037|AB|T25.122A|ICD10CM|Burn of first degree of left foot, initial encounter|Burn of first degree of left foot, initial encounter +C2873225|T037|AB|T25.122D|ICD10CM|Burn of first degree of left foot, subsequent encounter|Burn of first degree of left foot, subsequent encounter +C2873225|T037|PT|T25.122D|ICD10CM|Burn of first degree of left foot, subsequent encounter|Burn of first degree of left foot, subsequent encounter +C2873226|T037|PT|T25.122S|ICD10CM|Burn of first degree of left foot, sequela|Burn of first degree of left foot, sequela +C2873226|T037|AB|T25.122S|ICD10CM|Burn of first degree of left foot, sequela|Burn of first degree of left foot, sequela +C2873227|T037|AB|T25.129|ICD10CM|Burn of first degree of unspecified foot|Burn of first degree of unspecified foot +C2873227|T037|HT|T25.129|ICD10CM|Burn of first degree of unspecified foot|Burn of first degree of unspecified foot +C2873228|T037|PT|T25.129A|ICD10CM|Burn of first degree of unspecified foot, initial encounter|Burn of first degree of unspecified foot, initial encounter +C2873228|T037|AB|T25.129A|ICD10CM|Burn of first degree of unspecified foot, initial encounter|Burn of first degree of unspecified foot, initial encounter +C2873229|T037|AB|T25.129D|ICD10CM|Burn of first degree of unspecified foot, subs encntr|Burn of first degree of unspecified foot, subs encntr +C2873229|T037|PT|T25.129D|ICD10CM|Burn of first degree of unspecified foot, subsequent encounter|Burn of first degree of unspecified foot, subsequent encounter +C2873230|T037|PT|T25.129S|ICD10CM|Burn of first degree of unspecified foot, sequela|Burn of first degree of unspecified foot, sequela +C2873230|T037|AB|T25.129S|ICD10CM|Burn of first degree of unspecified foot, sequela|Burn of first degree of unspecified foot, sequela +C2873231|T037|AB|T25.13|ICD10CM|Burn of first degree of toe(s) (nail)|Burn of first degree of toe(s) (nail) +C2873231|T037|HT|T25.13|ICD10CM|Burn of first degree of toe(s) (nail)|Burn of first degree of toe(s) (nail) +C2873232|T037|AB|T25.131|ICD10CM|Burn of first degree of right toe(s) (nail)|Burn of first degree of right toe(s) (nail) +C2873232|T037|HT|T25.131|ICD10CM|Burn of first degree of right toe(s) (nail)|Burn of first degree of right toe(s) (nail) +C2873233|T037|AB|T25.131A|ICD10CM|Burn of first degree of right toe(s) (nail), init encntr|Burn of first degree of right toe(s) (nail), init encntr +C2873233|T037|PT|T25.131A|ICD10CM|Burn of first degree of right toe(s) (nail), initial encounter|Burn of first degree of right toe(s) (nail), initial encounter +C2873234|T037|AB|T25.131D|ICD10CM|Burn of first degree of right toe(s) (nail), subs encntr|Burn of first degree of right toe(s) (nail), subs encntr +C2873234|T037|PT|T25.131D|ICD10CM|Burn of first degree of right toe(s) (nail), subsequent encounter|Burn of first degree of right toe(s) (nail), subsequent encounter +C2873235|T037|PT|T25.131S|ICD10CM|Burn of first degree of right toe(s) (nail), sequela|Burn of first degree of right toe(s) (nail), sequela +C2873235|T037|AB|T25.131S|ICD10CM|Burn of first degree of right toe(s) (nail), sequela|Burn of first degree of right toe(s) (nail), sequela +C2873236|T037|AB|T25.132|ICD10CM|Burn of first degree of left toe(s) (nail)|Burn of first degree of left toe(s) (nail) +C2873236|T037|HT|T25.132|ICD10CM|Burn of first degree of left toe(s) (nail)|Burn of first degree of left toe(s) (nail) +C2873237|T037|AB|T25.132A|ICD10CM|Burn of first degree of left toe(s) (nail), init encntr|Burn of first degree of left toe(s) (nail), init encntr +C2873237|T037|PT|T25.132A|ICD10CM|Burn of first degree of left toe(s) (nail), initial encounter|Burn of first degree of left toe(s) (nail), initial encounter +C2873238|T037|AB|T25.132D|ICD10CM|Burn of first degree of left toe(s) (nail), subs encntr|Burn of first degree of left toe(s) (nail), subs encntr +C2873238|T037|PT|T25.132D|ICD10CM|Burn of first degree of left toe(s) (nail), subsequent encounter|Burn of first degree of left toe(s) (nail), subsequent encounter +C2873239|T037|PT|T25.132S|ICD10CM|Burn of first degree of left toe(s) (nail), sequela|Burn of first degree of left toe(s) (nail), sequela +C2873239|T037|AB|T25.132S|ICD10CM|Burn of first degree of left toe(s) (nail), sequela|Burn of first degree of left toe(s) (nail), sequela +C2873240|T037|AB|T25.139|ICD10CM|Burn of first degree of unspecified toe(s) (nail)|Burn of first degree of unspecified toe(s) (nail) +C2873240|T037|HT|T25.139|ICD10CM|Burn of first degree of unspecified toe(s) (nail)|Burn of first degree of unspecified toe(s) (nail) +C2873241|T037|AB|T25.139A|ICD10CM|Burn of first degree of unsp toe(s) (nail), init encntr|Burn of first degree of unsp toe(s) (nail), init encntr +C2873241|T037|PT|T25.139A|ICD10CM|Burn of first degree of unspecified toe(s) (nail), initial encounter|Burn of first degree of unspecified toe(s) (nail), initial encounter +C2873242|T037|AB|T25.139D|ICD10CM|Burn of first degree of unsp toe(s) (nail), subs encntr|Burn of first degree of unsp toe(s) (nail), subs encntr +C2873242|T037|PT|T25.139D|ICD10CM|Burn of first degree of unspecified toe(s) (nail), subsequent encounter|Burn of first degree of unspecified toe(s) (nail), subsequent encounter +C2873243|T037|PT|T25.139S|ICD10CM|Burn of first degree of unspecified toe(s) (nail), sequela|Burn of first degree of unspecified toe(s) (nail), sequela +C2873243|T037|AB|T25.139S|ICD10CM|Burn of first degree of unspecified toe(s) (nail), sequela|Burn of first degree of unspecified toe(s) (nail), sequela +C2873244|T037|AB|T25.19|ICD10CM|Burn of first degree of multiple sites of ankle and foot|Burn of first degree of multiple sites of ankle and foot +C2873244|T037|HT|T25.19|ICD10CM|Burn of first degree of multiple sites of ankle and foot|Burn of first degree of multiple sites of ankle and foot +C2873245|T037|AB|T25.191|ICD10CM|Burn of first deg mult sites of right ankle and foot|Burn of first deg mult sites of right ankle and foot +C2873245|T037|HT|T25.191|ICD10CM|Burn of first degree of multiple sites of right ankle and foot|Burn of first degree of multiple sites of right ankle and foot +C2873246|T037|AB|T25.191A|ICD10CM|Burn of first deg mult sites of right ankle and foot, init|Burn of first deg mult sites of right ankle and foot, init +C2873246|T037|PT|T25.191A|ICD10CM|Burn of first degree of multiple sites of right ankle and foot, initial encounter|Burn of first degree of multiple sites of right ankle and foot, initial encounter +C2873247|T037|AB|T25.191D|ICD10CM|Burn of first deg mult sites of right ankle and foot, subs|Burn of first deg mult sites of right ankle and foot, subs +C2873247|T037|PT|T25.191D|ICD10CM|Burn of first degree of multiple sites of right ankle and foot, subsequent encounter|Burn of first degree of multiple sites of right ankle and foot, subsequent encounter +C2873248|T037|AB|T25.191S|ICD10CM|Burn of first deg mult sites of right ank/ft, sequela|Burn of first deg mult sites of right ank/ft, sequela +C2873248|T037|PT|T25.191S|ICD10CM|Burn of first degree of multiple sites of right ankle and foot, sequela|Burn of first degree of multiple sites of right ankle and foot, sequela +C2873249|T037|AB|T25.192|ICD10CM|Burn of first deg mult sites of left ankle and foot|Burn of first deg mult sites of left ankle and foot +C2873249|T037|HT|T25.192|ICD10CM|Burn of first degree of multiple sites of left ankle and foot|Burn of first degree of multiple sites of left ankle and foot +C2873250|T037|AB|T25.192A|ICD10CM|Burn of first deg mult sites of left ankle and foot, init|Burn of first deg mult sites of left ankle and foot, init +C2873250|T037|PT|T25.192A|ICD10CM|Burn of first degree of multiple sites of left ankle and foot, initial encounter|Burn of first degree of multiple sites of left ankle and foot, initial encounter +C2873251|T037|AB|T25.192D|ICD10CM|Burn of first deg mult sites of left ankle and foot, subs|Burn of first deg mult sites of left ankle and foot, subs +C2873251|T037|PT|T25.192D|ICD10CM|Burn of first degree of multiple sites of left ankle and foot, subsequent encounter|Burn of first degree of multiple sites of left ankle and foot, subsequent encounter +C2873252|T037|AB|T25.192S|ICD10CM|Burn of first deg mult sites of left ankle and foot, sequela|Burn of first deg mult sites of left ankle and foot, sequela +C2873252|T037|PT|T25.192S|ICD10CM|Burn of first degree of multiple sites of left ankle and foot, sequela|Burn of first degree of multiple sites of left ankle and foot, sequela +C2873253|T037|AB|T25.199|ICD10CM|Burn of first deg mult sites of unsp ankle and foot|Burn of first deg mult sites of unsp ankle and foot +C2873253|T037|HT|T25.199|ICD10CM|Burn of first degree of multiple sites of unspecified ankle and foot|Burn of first degree of multiple sites of unspecified ankle and foot +C2873254|T037|AB|T25.199A|ICD10CM|Burn of first deg mult sites of unsp ankle and foot, init|Burn of first deg mult sites of unsp ankle and foot, init +C2873254|T037|PT|T25.199A|ICD10CM|Burn of first degree of multiple sites of unspecified ankle and foot, initial encounter|Burn of first degree of multiple sites of unspecified ankle and foot, initial encounter +C2873255|T037|AB|T25.199D|ICD10CM|Burn of first deg mult sites of unsp ankle and foot, subs|Burn of first deg mult sites of unsp ankle and foot, subs +C2873255|T037|PT|T25.199D|ICD10CM|Burn of first degree of multiple sites of unspecified ankle and foot, subsequent encounter|Burn of first degree of multiple sites of unspecified ankle and foot, subsequent encounter +C2873256|T037|AB|T25.199S|ICD10CM|Burn of first deg mult sites of unsp ankle and foot, sequela|Burn of first deg mult sites of unsp ankle and foot, sequela +C2873256|T037|PT|T25.199S|ICD10CM|Burn of first degree of multiple sites of unspecified ankle and foot, sequela|Burn of first degree of multiple sites of unspecified ankle and foot, sequela +C0496052|T037|PT|T25.2|ICD10|Burn of second degree of ankle and foot|Burn of second degree of ankle and foot +C0496052|T037|HT|T25.2|ICD10CM|Burn of second degree of ankle and foot|Burn of second degree of ankle and foot +C0496052|T037|AB|T25.2|ICD10CM|Burn of second degree of ankle and foot|Burn of second degree of ankle and foot +C0562095|T037|AB|T25.21|ICD10CM|Burn of second degree of ankle|Burn of second degree of ankle +C0562095|T037|HT|T25.21|ICD10CM|Burn of second degree of ankle|Burn of second degree of ankle +C2103889|T037|AB|T25.211|ICD10CM|Burn of second degree of right ankle|Burn of second degree of right ankle +C2103889|T037|HT|T25.211|ICD10CM|Burn of second degree of right ankle|Burn of second degree of right ankle +C2873257|T037|AB|T25.211A|ICD10CM|Burn of second degree of right ankle, initial encounter|Burn of second degree of right ankle, initial encounter +C2873257|T037|PT|T25.211A|ICD10CM|Burn of second degree of right ankle, initial encounter|Burn of second degree of right ankle, initial encounter +C2873258|T037|PT|T25.211D|ICD10CM|Burn of second degree of right ankle, subsequent encounter|Burn of second degree of right ankle, subsequent encounter +C2873258|T037|AB|T25.211D|ICD10CM|Burn of second degree of right ankle, subsequent encounter|Burn of second degree of right ankle, subsequent encounter +C2873259|T037|PT|T25.211S|ICD10CM|Burn of second degree of right ankle, sequela|Burn of second degree of right ankle, sequela +C2873259|T037|AB|T25.211S|ICD10CM|Burn of second degree of right ankle, sequela|Burn of second degree of right ankle, sequela +C2103895|T037|AB|T25.212|ICD10CM|Burn of second degree of left ankle|Burn of second degree of left ankle +C2103895|T037|HT|T25.212|ICD10CM|Burn of second degree of left ankle|Burn of second degree of left ankle +C2873260|T037|PT|T25.212A|ICD10CM|Burn of second degree of left ankle, initial encounter|Burn of second degree of left ankle, initial encounter +C2873260|T037|AB|T25.212A|ICD10CM|Burn of second degree of left ankle, initial encounter|Burn of second degree of left ankle, initial encounter +C2873261|T037|PT|T25.212D|ICD10CM|Burn of second degree of left ankle, subsequent encounter|Burn of second degree of left ankle, subsequent encounter +C2873261|T037|AB|T25.212D|ICD10CM|Burn of second degree of left ankle, subsequent encounter|Burn of second degree of left ankle, subsequent encounter +C2873262|T037|PT|T25.212S|ICD10CM|Burn of second degree of left ankle, sequela|Burn of second degree of left ankle, sequela +C2873262|T037|AB|T25.212S|ICD10CM|Burn of second degree of left ankle, sequela|Burn of second degree of left ankle, sequela +C2873263|T037|AB|T25.219|ICD10CM|Burn of second degree of unspecified ankle|Burn of second degree of unspecified ankle +C2873263|T037|HT|T25.219|ICD10CM|Burn of second degree of unspecified ankle|Burn of second degree of unspecified ankle +C2873264|T037|AB|T25.219A|ICD10CM|Burn of second degree of unspecified ankle, init encntr|Burn of second degree of unspecified ankle, init encntr +C2873264|T037|PT|T25.219A|ICD10CM|Burn of second degree of unspecified ankle, initial encounter|Burn of second degree of unspecified ankle, initial encounter +C2873265|T037|AB|T25.219D|ICD10CM|Burn of second degree of unspecified ankle, subs encntr|Burn of second degree of unspecified ankle, subs encntr +C2873265|T037|PT|T25.219D|ICD10CM|Burn of second degree of unspecified ankle, subsequent encounter|Burn of second degree of unspecified ankle, subsequent encounter +C2873266|T037|PT|T25.219S|ICD10CM|Burn of second degree of unspecified ankle, sequela|Burn of second degree of unspecified ankle, sequela +C2873266|T037|AB|T25.219S|ICD10CM|Burn of second degree of unspecified ankle, sequela|Burn of second degree of unspecified ankle, sequela +C0562099|T037|AB|T25.22|ICD10CM|Burn of second degree of foot|Burn of second degree of foot +C0562099|T037|HT|T25.22|ICD10CM|Burn of second degree of foot|Burn of second degree of foot +C2103888|T037|AB|T25.221|ICD10CM|Burn of second degree of right foot|Burn of second degree of right foot +C2103888|T037|HT|T25.221|ICD10CM|Burn of second degree of right foot|Burn of second degree of right foot +C2873267|T037|PT|T25.221A|ICD10CM|Burn of second degree of right foot, initial encounter|Burn of second degree of right foot, initial encounter +C2873267|T037|AB|T25.221A|ICD10CM|Burn of second degree of right foot, initial encounter|Burn of second degree of right foot, initial encounter +C2873268|T037|PT|T25.221D|ICD10CM|Burn of second degree of right foot, subsequent encounter|Burn of second degree of right foot, subsequent encounter +C2873268|T037|AB|T25.221D|ICD10CM|Burn of second degree of right foot, subsequent encounter|Burn of second degree of right foot, subsequent encounter +C2873269|T037|PT|T25.221S|ICD10CM|Burn of second degree of right foot, sequela|Burn of second degree of right foot, sequela +C2873269|T037|AB|T25.221S|ICD10CM|Burn of second degree of right foot, sequela|Burn of second degree of right foot, sequela +C2103894|T037|AB|T25.222|ICD10CM|Burn of second degree of left foot|Burn of second degree of left foot +C2103894|T037|HT|T25.222|ICD10CM|Burn of second degree of left foot|Burn of second degree of left foot +C2873270|T037|PT|T25.222A|ICD10CM|Burn of second degree of left foot, initial encounter|Burn of second degree of left foot, initial encounter +C2873270|T037|AB|T25.222A|ICD10CM|Burn of second degree of left foot, initial encounter|Burn of second degree of left foot, initial encounter +C2873271|T037|PT|T25.222D|ICD10CM|Burn of second degree of left foot, subsequent encounter|Burn of second degree of left foot, subsequent encounter +C2873271|T037|AB|T25.222D|ICD10CM|Burn of second degree of left foot, subsequent encounter|Burn of second degree of left foot, subsequent encounter +C2873272|T037|PT|T25.222S|ICD10CM|Burn of second degree of left foot, sequela|Burn of second degree of left foot, sequela +C2873272|T037|AB|T25.222S|ICD10CM|Burn of second degree of left foot, sequela|Burn of second degree of left foot, sequela +C2873273|T037|AB|T25.229|ICD10CM|Burn of second degree of unspecified foot|Burn of second degree of unspecified foot +C2873273|T037|HT|T25.229|ICD10CM|Burn of second degree of unspecified foot|Burn of second degree of unspecified foot +C2873274|T037|AB|T25.229A|ICD10CM|Burn of second degree of unspecified foot, initial encounter|Burn of second degree of unspecified foot, initial encounter +C2873274|T037|PT|T25.229A|ICD10CM|Burn of second degree of unspecified foot, initial encounter|Burn of second degree of unspecified foot, initial encounter +C2873275|T037|AB|T25.229D|ICD10CM|Burn of second degree of unspecified foot, subs encntr|Burn of second degree of unspecified foot, subs encntr +C2873275|T037|PT|T25.229D|ICD10CM|Burn of second degree of unspecified foot, subsequent encounter|Burn of second degree of unspecified foot, subsequent encounter +C2873276|T037|PT|T25.229S|ICD10CM|Burn of second degree of unspecified foot, sequela|Burn of second degree of unspecified foot, sequela +C2873276|T037|AB|T25.229S|ICD10CM|Burn of second degree of unspecified foot, sequela|Burn of second degree of unspecified foot, sequela +C2873277|T037|AB|T25.23|ICD10CM|Burn of second degree of toe(s) (nail)|Burn of second degree of toe(s) (nail) +C2873277|T037|HT|T25.23|ICD10CM|Burn of second degree of toe(s) (nail)|Burn of second degree of toe(s) (nail) +C2873278|T037|AB|T25.231|ICD10CM|Burn of second degree of right toe(s) (nail)|Burn of second degree of right toe(s) (nail) +C2873278|T037|HT|T25.231|ICD10CM|Burn of second degree of right toe(s) (nail)|Burn of second degree of right toe(s) (nail) +C2873279|T037|AB|T25.231A|ICD10CM|Burn of second degree of right toe(s) (nail), init encntr|Burn of second degree of right toe(s) (nail), init encntr +C2873279|T037|PT|T25.231A|ICD10CM|Burn of second degree of right toe(s) (nail), initial encounter|Burn of second degree of right toe(s) (nail), initial encounter +C2873280|T037|AB|T25.231D|ICD10CM|Burn of second degree of right toe(s) (nail), subs encntr|Burn of second degree of right toe(s) (nail), subs encntr +C2873280|T037|PT|T25.231D|ICD10CM|Burn of second degree of right toe(s) (nail), subsequent encounter|Burn of second degree of right toe(s) (nail), subsequent encounter +C2873281|T037|PT|T25.231S|ICD10CM|Burn of second degree of right toe(s) (nail), sequela|Burn of second degree of right toe(s) (nail), sequela +C2873281|T037|AB|T25.231S|ICD10CM|Burn of second degree of right toe(s) (nail), sequela|Burn of second degree of right toe(s) (nail), sequela +C2873282|T037|AB|T25.232|ICD10CM|Burn of second degree of left toe(s) (nail)|Burn of second degree of left toe(s) (nail) +C2873282|T037|HT|T25.232|ICD10CM|Burn of second degree of left toe(s) (nail)|Burn of second degree of left toe(s) (nail) +C2873283|T037|AB|T25.232A|ICD10CM|Burn of second degree of left toe(s) (nail), init encntr|Burn of second degree of left toe(s) (nail), init encntr +C2873283|T037|PT|T25.232A|ICD10CM|Burn of second degree of left toe(s) (nail), initial encounter|Burn of second degree of left toe(s) (nail), initial encounter +C2873284|T037|AB|T25.232D|ICD10CM|Burn of second degree of left toe(s) (nail), subs encntr|Burn of second degree of left toe(s) (nail), subs encntr +C2873284|T037|PT|T25.232D|ICD10CM|Burn of second degree of left toe(s) (nail), subsequent encounter|Burn of second degree of left toe(s) (nail), subsequent encounter +C2873285|T037|PT|T25.232S|ICD10CM|Burn of second degree of left toe(s) (nail), sequela|Burn of second degree of left toe(s) (nail), sequela +C2873285|T037|AB|T25.232S|ICD10CM|Burn of second degree of left toe(s) (nail), sequela|Burn of second degree of left toe(s) (nail), sequela +C2873286|T037|AB|T25.239|ICD10CM|Burn of second degree of unspecified toe(s) (nail)|Burn of second degree of unspecified toe(s) (nail) +C2873286|T037|HT|T25.239|ICD10CM|Burn of second degree of unspecified toe(s) (nail)|Burn of second degree of unspecified toe(s) (nail) +C2873287|T037|AB|T25.239A|ICD10CM|Burn of second degree of unsp toe(s) (nail), init encntr|Burn of second degree of unsp toe(s) (nail), init encntr +C2873287|T037|PT|T25.239A|ICD10CM|Burn of second degree of unspecified toe(s) (nail), initial encounter|Burn of second degree of unspecified toe(s) (nail), initial encounter +C2873288|T037|AB|T25.239D|ICD10CM|Burn of second degree of unsp toe(s) (nail), subs encntr|Burn of second degree of unsp toe(s) (nail), subs encntr +C2873288|T037|PT|T25.239D|ICD10CM|Burn of second degree of unspecified toe(s) (nail), subsequent encounter|Burn of second degree of unspecified toe(s) (nail), subsequent encounter +C2873289|T037|PT|T25.239S|ICD10CM|Burn of second degree of unspecified toe(s) (nail), sequela|Burn of second degree of unspecified toe(s) (nail), sequela +C2873289|T037|AB|T25.239S|ICD10CM|Burn of second degree of unspecified toe(s) (nail), sequela|Burn of second degree of unspecified toe(s) (nail), sequela +C2873290|T037|AB|T25.29|ICD10CM|Burn of second degree of multiple sites of ankle and foot|Burn of second degree of multiple sites of ankle and foot +C2873290|T037|HT|T25.29|ICD10CM|Burn of second degree of multiple sites of ankle and foot|Burn of second degree of multiple sites of ankle and foot +C2873291|T037|AB|T25.291|ICD10CM|Burn of 2nd deg mul sites of right ankle and foot|Burn of 2nd deg mul sites of right ankle and foot +C2873291|T037|HT|T25.291|ICD10CM|Burn of second degree of multiple sites of right ankle and foot|Burn of second degree of multiple sites of right ankle and foot +C2873292|T037|AB|T25.291A|ICD10CM|Burn of 2nd deg mul sites of right ankle and foot, init|Burn of 2nd deg mul sites of right ankle and foot, init +C2873292|T037|PT|T25.291A|ICD10CM|Burn of second degree of multiple sites of right ankle and foot, initial encounter|Burn of second degree of multiple sites of right ankle and foot, initial encounter +C2873293|T037|AB|T25.291D|ICD10CM|Burn of 2nd deg mul sites of right ankle and foot, subs|Burn of 2nd deg mul sites of right ankle and foot, subs +C2873293|T037|PT|T25.291D|ICD10CM|Burn of second degree of multiple sites of right ankle and foot, subsequent encounter|Burn of second degree of multiple sites of right ankle and foot, subsequent encounter +C2873294|T037|AB|T25.291S|ICD10CM|Burn of 2nd deg mul sites of right ankle and foot, sequela|Burn of 2nd deg mul sites of right ankle and foot, sequela +C2873294|T037|PT|T25.291S|ICD10CM|Burn of second degree of multiple sites of right ankle and foot, sequela|Burn of second degree of multiple sites of right ankle and foot, sequela +C2873295|T037|AB|T25.292|ICD10CM|Burn of 2nd deg mul sites of left ankle and foot|Burn of 2nd deg mul sites of left ankle and foot +C2873295|T037|HT|T25.292|ICD10CM|Burn of second degree of multiple sites of left ankle and foot|Burn of second degree of multiple sites of left ankle and foot +C2873296|T037|AB|T25.292A|ICD10CM|Burn of 2nd deg mul sites of left ankle and foot, init|Burn of 2nd deg mul sites of left ankle and foot, init +C2873296|T037|PT|T25.292A|ICD10CM|Burn of second degree of multiple sites of left ankle and foot, initial encounter|Burn of second degree of multiple sites of left ankle and foot, initial encounter +C2873297|T037|AB|T25.292D|ICD10CM|Burn of 2nd deg mul sites of left ankle and foot, subs|Burn of 2nd deg mul sites of left ankle and foot, subs +C2873297|T037|PT|T25.292D|ICD10CM|Burn of second degree of multiple sites of left ankle and foot, subsequent encounter|Burn of second degree of multiple sites of left ankle and foot, subsequent encounter +C2873298|T037|AB|T25.292S|ICD10CM|Burn of 2nd deg mul sites of left ankle and foot, sequela|Burn of 2nd deg mul sites of left ankle and foot, sequela +C2873298|T037|PT|T25.292S|ICD10CM|Burn of second degree of multiple sites of left ankle and foot, sequela|Burn of second degree of multiple sites of left ankle and foot, sequela +C2873299|T037|AB|T25.299|ICD10CM|Burn of 2nd deg mul sites of unsp ankle and foot|Burn of 2nd deg mul sites of unsp ankle and foot +C2873299|T037|HT|T25.299|ICD10CM|Burn of second degree of multiple sites of unspecified ankle and foot|Burn of second degree of multiple sites of unspecified ankle and foot +C2873300|T037|AB|T25.299A|ICD10CM|Burn of 2nd deg mul sites of unsp ankle and foot, init|Burn of 2nd deg mul sites of unsp ankle and foot, init +C2873300|T037|PT|T25.299A|ICD10CM|Burn of second degree of multiple sites of unspecified ankle and foot, initial encounter|Burn of second degree of multiple sites of unspecified ankle and foot, initial encounter +C2873301|T037|AB|T25.299D|ICD10CM|Burn of 2nd deg mul sites of unsp ankle and foot, subs|Burn of 2nd deg mul sites of unsp ankle and foot, subs +C2873301|T037|PT|T25.299D|ICD10CM|Burn of second degree of multiple sites of unspecified ankle and foot, subsequent encounter|Burn of second degree of multiple sites of unspecified ankle and foot, subsequent encounter +C2873302|T037|AB|T25.299S|ICD10CM|Burn of 2nd deg mul sites of unsp ankle and foot, sequela|Burn of 2nd deg mul sites of unsp ankle and foot, sequela +C2873302|T037|PT|T25.299S|ICD10CM|Burn of second degree of multiple sites of unspecified ankle and foot, sequela|Burn of second degree of multiple sites of unspecified ankle and foot, sequela +C0496053|T037|HT|T25.3|ICD10CM|Burn of third degree of ankle and foot|Burn of third degree of ankle and foot +C0496053|T037|AB|T25.3|ICD10CM|Burn of third degree of ankle and foot|Burn of third degree of ankle and foot +C0496053|T037|PT|T25.3|ICD10|Burn of third degree of ankle and foot|Burn of third degree of ankle and foot +C0433580|T037|AB|T25.31|ICD10CM|Burn of third degree of ankle|Burn of third degree of ankle +C0433580|T037|HT|T25.31|ICD10CM|Burn of third degree of ankle|Burn of third degree of ankle +C2083630|T037|AB|T25.311|ICD10CM|Burn of third degree of right ankle|Burn of third degree of right ankle +C2083630|T037|HT|T25.311|ICD10CM|Burn of third degree of right ankle|Burn of third degree of right ankle +C2873303|T037|PT|T25.311A|ICD10CM|Burn of third degree of right ankle, initial encounter|Burn of third degree of right ankle, initial encounter +C2873303|T037|AB|T25.311A|ICD10CM|Burn of third degree of right ankle, initial encounter|Burn of third degree of right ankle, initial encounter +C2873304|T037|PT|T25.311D|ICD10CM|Burn of third degree of right ankle, subsequent encounter|Burn of third degree of right ankle, subsequent encounter +C2873304|T037|AB|T25.311D|ICD10CM|Burn of third degree of right ankle, subsequent encounter|Burn of third degree of right ankle, subsequent encounter +C2873305|T037|PT|T25.311S|ICD10CM|Burn of third degree of right ankle, sequela|Burn of third degree of right ankle, sequela +C2873305|T037|AB|T25.311S|ICD10CM|Burn of third degree of right ankle, sequela|Burn of third degree of right ankle, sequela +C2083590|T037|AB|T25.312|ICD10CM|Burn of third degree of left ankle|Burn of third degree of left ankle +C2083590|T037|HT|T25.312|ICD10CM|Burn of third degree of left ankle|Burn of third degree of left ankle +C2873306|T037|PT|T25.312A|ICD10CM|Burn of third degree of left ankle, initial encounter|Burn of third degree of left ankle, initial encounter +C2873306|T037|AB|T25.312A|ICD10CM|Burn of third degree of left ankle, initial encounter|Burn of third degree of left ankle, initial encounter +C2873307|T037|PT|T25.312D|ICD10CM|Burn of third degree of left ankle, subsequent encounter|Burn of third degree of left ankle, subsequent encounter +C2873307|T037|AB|T25.312D|ICD10CM|Burn of third degree of left ankle, subsequent encounter|Burn of third degree of left ankle, subsequent encounter +C2873308|T037|PT|T25.312S|ICD10CM|Burn of third degree of left ankle, sequela|Burn of third degree of left ankle, sequela +C2873308|T037|AB|T25.312S|ICD10CM|Burn of third degree of left ankle, sequela|Burn of third degree of left ankle, sequela +C2873309|T037|AB|T25.319|ICD10CM|Burn of third degree of unspecified ankle|Burn of third degree of unspecified ankle +C2873309|T037|HT|T25.319|ICD10CM|Burn of third degree of unspecified ankle|Burn of third degree of unspecified ankle +C2873310|T037|AB|T25.319A|ICD10CM|Burn of third degree of unspecified ankle, initial encounter|Burn of third degree of unspecified ankle, initial encounter +C2873310|T037|PT|T25.319A|ICD10CM|Burn of third degree of unspecified ankle, initial encounter|Burn of third degree of unspecified ankle, initial encounter +C2873311|T037|AB|T25.319D|ICD10CM|Burn of third degree of unspecified ankle, subs encntr|Burn of third degree of unspecified ankle, subs encntr +C2873311|T037|PT|T25.319D|ICD10CM|Burn of third degree of unspecified ankle, subsequent encounter|Burn of third degree of unspecified ankle, subsequent encounter +C2873312|T037|PT|T25.319S|ICD10CM|Burn of third degree of unspecified ankle, sequela|Burn of third degree of unspecified ankle, sequela +C2873312|T037|AB|T25.319S|ICD10CM|Burn of third degree of unspecified ankle, sequela|Burn of third degree of unspecified ankle, sequela +C0433581|T037|AB|T25.32|ICD10CM|Burn of third degree of foot|Burn of third degree of foot +C0433581|T037|HT|T25.32|ICD10CM|Burn of third degree of foot|Burn of third degree of foot +C2083634|T037|AB|T25.321|ICD10CM|Burn of third degree of right foot|Burn of third degree of right foot +C2083634|T037|HT|T25.321|ICD10CM|Burn of third degree of right foot|Burn of third degree of right foot +C2873313|T037|PT|T25.321A|ICD10CM|Burn of third degree of right foot, initial encounter|Burn of third degree of right foot, initial encounter +C2873313|T037|AB|T25.321A|ICD10CM|Burn of third degree of right foot, initial encounter|Burn of third degree of right foot, initial encounter +C2873314|T037|PT|T25.321D|ICD10CM|Burn of third degree of right foot, subsequent encounter|Burn of third degree of right foot, subsequent encounter +C2873314|T037|AB|T25.321D|ICD10CM|Burn of third degree of right foot, subsequent encounter|Burn of third degree of right foot, subsequent encounter +C2873315|T037|PT|T25.321S|ICD10CM|Burn of third degree of right foot, sequela|Burn of third degree of right foot, sequela +C2873315|T037|AB|T25.321S|ICD10CM|Burn of third degree of right foot, sequela|Burn of third degree of right foot, sequela +C2083594|T037|AB|T25.322|ICD10CM|Burn of third degree of left foot|Burn of third degree of left foot +C2083594|T037|HT|T25.322|ICD10CM|Burn of third degree of left foot|Burn of third degree of left foot +C2873316|T037|PT|T25.322A|ICD10CM|Burn of third degree of left foot, initial encounter|Burn of third degree of left foot, initial encounter +C2873316|T037|AB|T25.322A|ICD10CM|Burn of third degree of left foot, initial encounter|Burn of third degree of left foot, initial encounter +C2873317|T037|AB|T25.322D|ICD10CM|Burn of third degree of left foot, subsequent encounter|Burn of third degree of left foot, subsequent encounter +C2873317|T037|PT|T25.322D|ICD10CM|Burn of third degree of left foot, subsequent encounter|Burn of third degree of left foot, subsequent encounter +C2873318|T037|PT|T25.322S|ICD10CM|Burn of third degree of left foot, sequela|Burn of third degree of left foot, sequela +C2873318|T037|AB|T25.322S|ICD10CM|Burn of third degree of left foot, sequela|Burn of third degree of left foot, sequela +C2873319|T037|AB|T25.329|ICD10CM|Burn of third degree of unspecified foot|Burn of third degree of unspecified foot +C2873319|T037|HT|T25.329|ICD10CM|Burn of third degree of unspecified foot|Burn of third degree of unspecified foot +C2873320|T037|PT|T25.329A|ICD10CM|Burn of third degree of unspecified foot, initial encounter|Burn of third degree of unspecified foot, initial encounter +C2873320|T037|AB|T25.329A|ICD10CM|Burn of third degree of unspecified foot, initial encounter|Burn of third degree of unspecified foot, initial encounter +C2873321|T037|AB|T25.329D|ICD10CM|Burn of third degree of unspecified foot, subs encntr|Burn of third degree of unspecified foot, subs encntr +C2873321|T037|PT|T25.329D|ICD10CM|Burn of third degree of unspecified foot, subsequent encounter|Burn of third degree of unspecified foot, subsequent encounter +C2873322|T037|PT|T25.329S|ICD10CM|Burn of third degree of unspecified foot, sequela|Burn of third degree of unspecified foot, sequela +C2873322|T037|AB|T25.329S|ICD10CM|Burn of third degree of unspecified foot, sequela|Burn of third degree of unspecified foot, sequela +C2873323|T037|AB|T25.33|ICD10CM|Burn of third degree of toe(s) (nail)|Burn of third degree of toe(s) (nail) +C2873323|T037|HT|T25.33|ICD10CM|Burn of third degree of toe(s) (nail)|Burn of third degree of toe(s) (nail) +C2873324|T037|AB|T25.331|ICD10CM|Burn of third degree of right toe(s) (nail)|Burn of third degree of right toe(s) (nail) +C2873324|T037|HT|T25.331|ICD10CM|Burn of third degree of right toe(s) (nail)|Burn of third degree of right toe(s) (nail) +C2873325|T037|AB|T25.331A|ICD10CM|Burn of third degree of right toe(s) (nail), init encntr|Burn of third degree of right toe(s) (nail), init encntr +C2873325|T037|PT|T25.331A|ICD10CM|Burn of third degree of right toe(s) (nail), initial encounter|Burn of third degree of right toe(s) (nail), initial encounter +C2873326|T037|AB|T25.331D|ICD10CM|Burn of third degree of right toe(s) (nail), subs encntr|Burn of third degree of right toe(s) (nail), subs encntr +C2873326|T037|PT|T25.331D|ICD10CM|Burn of third degree of right toe(s) (nail), subsequent encounter|Burn of third degree of right toe(s) (nail), subsequent encounter +C2873327|T037|PT|T25.331S|ICD10CM|Burn of third degree of right toe(s) (nail), sequela|Burn of third degree of right toe(s) (nail), sequela +C2873327|T037|AB|T25.331S|ICD10CM|Burn of third degree of right toe(s) (nail), sequela|Burn of third degree of right toe(s) (nail), sequela +C2873328|T037|AB|T25.332|ICD10CM|Burn of third degree of left toe(s) (nail)|Burn of third degree of left toe(s) (nail) +C2873328|T037|HT|T25.332|ICD10CM|Burn of third degree of left toe(s) (nail)|Burn of third degree of left toe(s) (nail) +C2873329|T037|AB|T25.332A|ICD10CM|Burn of third degree of left toe(s) (nail), init encntr|Burn of third degree of left toe(s) (nail), init encntr +C2873329|T037|PT|T25.332A|ICD10CM|Burn of third degree of left toe(s) (nail), initial encounter|Burn of third degree of left toe(s) (nail), initial encounter +C2873330|T037|AB|T25.332D|ICD10CM|Burn of third degree of left toe(s) (nail), subs encntr|Burn of third degree of left toe(s) (nail), subs encntr +C2873330|T037|PT|T25.332D|ICD10CM|Burn of third degree of left toe(s) (nail), subsequent encounter|Burn of third degree of left toe(s) (nail), subsequent encounter +C2873331|T037|PT|T25.332S|ICD10CM|Burn of third degree of left toe(s) (nail), sequela|Burn of third degree of left toe(s) (nail), sequela +C2873331|T037|AB|T25.332S|ICD10CM|Burn of third degree of left toe(s) (nail), sequela|Burn of third degree of left toe(s) (nail), sequela +C2873332|T037|AB|T25.339|ICD10CM|Burn of third degree of unspecified toe(s) (nail)|Burn of third degree of unspecified toe(s) (nail) +C2873332|T037|HT|T25.339|ICD10CM|Burn of third degree of unspecified toe(s) (nail)|Burn of third degree of unspecified toe(s) (nail) +C2873333|T037|AB|T25.339A|ICD10CM|Burn of third degree of unsp toe(s) (nail), init encntr|Burn of third degree of unsp toe(s) (nail), init encntr +C2873333|T037|PT|T25.339A|ICD10CM|Burn of third degree of unspecified toe(s) (nail), initial encounter|Burn of third degree of unspecified toe(s) (nail), initial encounter +C2873334|T037|AB|T25.339D|ICD10CM|Burn of third degree of unsp toe(s) (nail), subs encntr|Burn of third degree of unsp toe(s) (nail), subs encntr +C2873334|T037|PT|T25.339D|ICD10CM|Burn of third degree of unspecified toe(s) (nail), subsequent encounter|Burn of third degree of unspecified toe(s) (nail), subsequent encounter +C2873335|T037|PT|T25.339S|ICD10CM|Burn of third degree of unspecified toe(s) (nail), sequela|Burn of third degree of unspecified toe(s) (nail), sequela +C2873335|T037|AB|T25.339S|ICD10CM|Burn of third degree of unspecified toe(s) (nail), sequela|Burn of third degree of unspecified toe(s) (nail), sequela +C2873336|T037|AB|T25.39|ICD10CM|Burn of third degree of multiple sites of ankle and foot|Burn of third degree of multiple sites of ankle and foot +C2873336|T037|HT|T25.39|ICD10CM|Burn of third degree of multiple sites of ankle and foot|Burn of third degree of multiple sites of ankle and foot +C2873337|T037|AB|T25.391|ICD10CM|Burn of 3rd deg mu sites of right ankle and foot|Burn of 3rd deg mu sites of right ankle and foot +C2873337|T037|HT|T25.391|ICD10CM|Burn of third degree of multiple sites of right ankle and foot|Burn of third degree of multiple sites of right ankle and foot +C2873338|T037|AB|T25.391A|ICD10CM|Burn of 3rd deg mu sites of right ankle and foot, init|Burn of 3rd deg mu sites of right ankle and foot, init +C2873338|T037|PT|T25.391A|ICD10CM|Burn of third degree of multiple sites of right ankle and foot, initial encounter|Burn of third degree of multiple sites of right ankle and foot, initial encounter +C2873339|T037|AB|T25.391D|ICD10CM|Burn of 3rd deg mu sites of right ankle and foot, subs|Burn of 3rd deg mu sites of right ankle and foot, subs +C2873339|T037|PT|T25.391D|ICD10CM|Burn of third degree of multiple sites of right ankle and foot, subsequent encounter|Burn of third degree of multiple sites of right ankle and foot, subsequent encounter +C2873340|T037|AB|T25.391S|ICD10CM|Burn of 3rd deg mu sites of right ankle and foot, sequela|Burn of 3rd deg mu sites of right ankle and foot, sequela +C2873340|T037|PT|T25.391S|ICD10CM|Burn of third degree of multiple sites of right ankle and foot, sequela|Burn of third degree of multiple sites of right ankle and foot, sequela +C2873341|T037|AB|T25.392|ICD10CM|Burn of 3rd deg mu sites of left ankle and foot|Burn of 3rd deg mu sites of left ankle and foot +C2873341|T037|HT|T25.392|ICD10CM|Burn of third degree of multiple sites of left ankle and foot|Burn of third degree of multiple sites of left ankle and foot +C2873342|T037|AB|T25.392A|ICD10CM|Burn of 3rd deg mu sites of left ankle and foot, init|Burn of 3rd deg mu sites of left ankle and foot, init +C2873342|T037|PT|T25.392A|ICD10CM|Burn of third degree of multiple sites of left ankle and foot, initial encounter|Burn of third degree of multiple sites of left ankle and foot, initial encounter +C2873343|T037|AB|T25.392D|ICD10CM|Burn of 3rd deg mu sites of left ankle and foot, subs|Burn of 3rd deg mu sites of left ankle and foot, subs +C2873343|T037|PT|T25.392D|ICD10CM|Burn of third degree of multiple sites of left ankle and foot, subsequent encounter|Burn of third degree of multiple sites of left ankle and foot, subsequent encounter +C2873344|T037|AB|T25.392S|ICD10CM|Burn of 3rd deg mu sites of left ankle and foot, sequela|Burn of 3rd deg mu sites of left ankle and foot, sequela +C2873344|T037|PT|T25.392S|ICD10CM|Burn of third degree of multiple sites of left ankle and foot, sequela|Burn of third degree of multiple sites of left ankle and foot, sequela +C2873345|T037|AB|T25.399|ICD10CM|Burn of 3rd deg mu sites of unsp ankle and foot|Burn of 3rd deg mu sites of unsp ankle and foot +C2873345|T037|HT|T25.399|ICD10CM|Burn of third degree of multiple sites of unspecified ankle and foot|Burn of third degree of multiple sites of unspecified ankle and foot +C2873346|T037|AB|T25.399A|ICD10CM|Burn of 3rd deg mu sites of unsp ankle and foot, init|Burn of 3rd deg mu sites of unsp ankle and foot, init +C2873346|T037|PT|T25.399A|ICD10CM|Burn of third degree of multiple sites of unspecified ankle and foot, initial encounter|Burn of third degree of multiple sites of unspecified ankle and foot, initial encounter +C2873347|T037|AB|T25.399D|ICD10CM|Burn of 3rd deg mu sites of unsp ankle and foot, subs|Burn of 3rd deg mu sites of unsp ankle and foot, subs +C2873347|T037|PT|T25.399D|ICD10CM|Burn of third degree of multiple sites of unspecified ankle and foot, subsequent encounter|Burn of third degree of multiple sites of unspecified ankle and foot, subsequent encounter +C2873348|T037|AB|T25.399S|ICD10CM|Burn of 3rd deg mu sites of unsp ankle and foot, sequela|Burn of 3rd deg mu sites of unsp ankle and foot, sequela +C2873348|T037|PT|T25.399S|ICD10CM|Burn of third degree of multiple sites of unspecified ankle and foot, sequela|Burn of third degree of multiple sites of unspecified ankle and foot, sequela +C0496054|T037|PT|T25.4|ICD10|Corrosion of unspecified degree of ankle and foot|Corrosion of unspecified degree of ankle and foot +C0496054|T037|HT|T25.4|ICD10CM|Corrosion of unspecified degree of ankle and foot|Corrosion of unspecified degree of ankle and foot +C0496054|T037|AB|T25.4|ICD10CM|Corrosion of unspecified degree of ankle and foot|Corrosion of unspecified degree of ankle and foot +C2873349|T037|AB|T25.41|ICD10CM|Corrosion of unspecified degree of ankle|Corrosion of unspecified degree of ankle +C2873349|T037|HT|T25.41|ICD10CM|Corrosion of unspecified degree of ankle|Corrosion of unspecified degree of ankle +C2873350|T037|AB|T25.411|ICD10CM|Corrosion of unspecified degree of right ankle|Corrosion of unspecified degree of right ankle +C2873350|T037|HT|T25.411|ICD10CM|Corrosion of unspecified degree of right ankle|Corrosion of unspecified degree of right ankle +C2873351|T037|AB|T25.411A|ICD10CM|Corrosion of unspecified degree of right ankle, init encntr|Corrosion of unspecified degree of right ankle, init encntr +C2873351|T037|PT|T25.411A|ICD10CM|Corrosion of unspecified degree of right ankle, initial encounter|Corrosion of unspecified degree of right ankle, initial encounter +C2873352|T037|AB|T25.411D|ICD10CM|Corrosion of unspecified degree of right ankle, subs encntr|Corrosion of unspecified degree of right ankle, subs encntr +C2873352|T037|PT|T25.411D|ICD10CM|Corrosion of unspecified degree of right ankle, subsequent encounter|Corrosion of unspecified degree of right ankle, subsequent encounter +C2873353|T037|PT|T25.411S|ICD10CM|Corrosion of unspecified degree of right ankle, sequela|Corrosion of unspecified degree of right ankle, sequela +C2873353|T037|AB|T25.411S|ICD10CM|Corrosion of unspecified degree of right ankle, sequela|Corrosion of unspecified degree of right ankle, sequela +C2873354|T037|AB|T25.412|ICD10CM|Corrosion of unspecified degree of left ankle|Corrosion of unspecified degree of left ankle +C2873354|T037|HT|T25.412|ICD10CM|Corrosion of unspecified degree of left ankle|Corrosion of unspecified degree of left ankle +C2873355|T037|AB|T25.412A|ICD10CM|Corrosion of unspecified degree of left ankle, init encntr|Corrosion of unspecified degree of left ankle, init encntr +C2873355|T037|PT|T25.412A|ICD10CM|Corrosion of unspecified degree of left ankle, initial encounter|Corrosion of unspecified degree of left ankle, initial encounter +C2873356|T037|AB|T25.412D|ICD10CM|Corrosion of unspecified degree of left ankle, subs encntr|Corrosion of unspecified degree of left ankle, subs encntr +C2873356|T037|PT|T25.412D|ICD10CM|Corrosion of unspecified degree of left ankle, subsequent encounter|Corrosion of unspecified degree of left ankle, subsequent encounter +C2873357|T037|PT|T25.412S|ICD10CM|Corrosion of unspecified degree of left ankle, sequela|Corrosion of unspecified degree of left ankle, sequela +C2873357|T037|AB|T25.412S|ICD10CM|Corrosion of unspecified degree of left ankle, sequela|Corrosion of unspecified degree of left ankle, sequela +C2873358|T037|AB|T25.419|ICD10CM|Corrosion of unspecified degree of unspecified ankle|Corrosion of unspecified degree of unspecified ankle +C2873358|T037|HT|T25.419|ICD10CM|Corrosion of unspecified degree of unspecified ankle|Corrosion of unspecified degree of unspecified ankle +C2873359|T037|AB|T25.419A|ICD10CM|Corrosion of unsp degree of unspecified ankle, init encntr|Corrosion of unsp degree of unspecified ankle, init encntr +C2873359|T037|PT|T25.419A|ICD10CM|Corrosion of unspecified degree of unspecified ankle, initial encounter|Corrosion of unspecified degree of unspecified ankle, initial encounter +C2873360|T037|AB|T25.419D|ICD10CM|Corrosion of unsp degree of unspecified ankle, subs encntr|Corrosion of unsp degree of unspecified ankle, subs encntr +C2873360|T037|PT|T25.419D|ICD10CM|Corrosion of unspecified degree of unspecified ankle, subsequent encounter|Corrosion of unspecified degree of unspecified ankle, subsequent encounter +C2873361|T037|AB|T25.419S|ICD10CM|Corrosion of unsp degree of unspecified ankle, sequela|Corrosion of unsp degree of unspecified ankle, sequela +C2873361|T037|PT|T25.419S|ICD10CM|Corrosion of unspecified degree of unspecified ankle, sequela|Corrosion of unspecified degree of unspecified ankle, sequela +C2873362|T037|AB|T25.42|ICD10CM|Corrosion of unspecified degree of foot|Corrosion of unspecified degree of foot +C2873362|T037|HT|T25.42|ICD10CM|Corrosion of unspecified degree of foot|Corrosion of unspecified degree of foot +C2873363|T037|AB|T25.421|ICD10CM|Corrosion of unspecified degree of right foot|Corrosion of unspecified degree of right foot +C2873363|T037|HT|T25.421|ICD10CM|Corrosion of unspecified degree of right foot|Corrosion of unspecified degree of right foot +C2873364|T037|AB|T25.421A|ICD10CM|Corrosion of unspecified degree of right foot, init encntr|Corrosion of unspecified degree of right foot, init encntr +C2873364|T037|PT|T25.421A|ICD10CM|Corrosion of unspecified degree of right foot, initial encounter|Corrosion of unspecified degree of right foot, initial encounter +C2873365|T037|AB|T25.421D|ICD10CM|Corrosion of unspecified degree of right foot, subs encntr|Corrosion of unspecified degree of right foot, subs encntr +C2873365|T037|PT|T25.421D|ICD10CM|Corrosion of unspecified degree of right foot, subsequent encounter|Corrosion of unspecified degree of right foot, subsequent encounter +C2873366|T037|PT|T25.421S|ICD10CM|Corrosion of unspecified degree of right foot, sequela|Corrosion of unspecified degree of right foot, sequela +C2873366|T037|AB|T25.421S|ICD10CM|Corrosion of unspecified degree of right foot, sequela|Corrosion of unspecified degree of right foot, sequela +C2873367|T037|AB|T25.422|ICD10CM|Corrosion of unspecified degree of left foot|Corrosion of unspecified degree of left foot +C2873367|T037|HT|T25.422|ICD10CM|Corrosion of unspecified degree of left foot|Corrosion of unspecified degree of left foot +C2873368|T037|AB|T25.422A|ICD10CM|Corrosion of unspecified degree of left foot, init encntr|Corrosion of unspecified degree of left foot, init encntr +C2873368|T037|PT|T25.422A|ICD10CM|Corrosion of unspecified degree of left foot, initial encounter|Corrosion of unspecified degree of left foot, initial encounter +C2873369|T037|AB|T25.422D|ICD10CM|Corrosion of unspecified degree of left foot, subs encntr|Corrosion of unspecified degree of left foot, subs encntr +C2873369|T037|PT|T25.422D|ICD10CM|Corrosion of unspecified degree of left foot, subsequent encounter|Corrosion of unspecified degree of left foot, subsequent encounter +C2873370|T037|PT|T25.422S|ICD10CM|Corrosion of unspecified degree of left foot, sequela|Corrosion of unspecified degree of left foot, sequela +C2873370|T037|AB|T25.422S|ICD10CM|Corrosion of unspecified degree of left foot, sequela|Corrosion of unspecified degree of left foot, sequela +C2873371|T037|AB|T25.429|ICD10CM|Corrosion of unspecified degree of unspecified foot|Corrosion of unspecified degree of unspecified foot +C2873371|T037|HT|T25.429|ICD10CM|Corrosion of unspecified degree of unspecified foot|Corrosion of unspecified degree of unspecified foot +C2873372|T037|AB|T25.429A|ICD10CM|Corrosion of unsp degree of unspecified foot, init encntr|Corrosion of unsp degree of unspecified foot, init encntr +C2873372|T037|PT|T25.429A|ICD10CM|Corrosion of unspecified degree of unspecified foot, initial encounter|Corrosion of unspecified degree of unspecified foot, initial encounter +C2873373|T037|AB|T25.429D|ICD10CM|Corrosion of unsp degree of unspecified foot, subs encntr|Corrosion of unsp degree of unspecified foot, subs encntr +C2873373|T037|PT|T25.429D|ICD10CM|Corrosion of unspecified degree of unspecified foot, subsequent encounter|Corrosion of unspecified degree of unspecified foot, subsequent encounter +C2873374|T037|AB|T25.429S|ICD10CM|Corrosion of unspecified degree of unspecified foot, sequela|Corrosion of unspecified degree of unspecified foot, sequela +C2873374|T037|PT|T25.429S|ICD10CM|Corrosion of unspecified degree of unspecified foot, sequela|Corrosion of unspecified degree of unspecified foot, sequela +C2873375|T037|AB|T25.43|ICD10CM|Corrosion of unspecified degree of toe(s) (nail)|Corrosion of unspecified degree of toe(s) (nail) +C2873375|T037|HT|T25.43|ICD10CM|Corrosion of unspecified degree of toe(s) (nail)|Corrosion of unspecified degree of toe(s) (nail) +C2873376|T037|AB|T25.431|ICD10CM|Corrosion of unspecified degree of right toe(s) (nail)|Corrosion of unspecified degree of right toe(s) (nail) +C2873376|T037|HT|T25.431|ICD10CM|Corrosion of unspecified degree of right toe(s) (nail)|Corrosion of unspecified degree of right toe(s) (nail) +C2873377|T037|AB|T25.431A|ICD10CM|Corrosion of unsp degree of right toe(s) (nail), init encntr|Corrosion of unsp degree of right toe(s) (nail), init encntr +C2873377|T037|PT|T25.431A|ICD10CM|Corrosion of unspecified degree of right toe(s) (nail), initial encounter|Corrosion of unspecified degree of right toe(s) (nail), initial encounter +C2873378|T037|AB|T25.431D|ICD10CM|Corrosion of unsp degree of right toe(s) (nail), subs encntr|Corrosion of unsp degree of right toe(s) (nail), subs encntr +C2873378|T037|PT|T25.431D|ICD10CM|Corrosion of unspecified degree of right toe(s) (nail), subsequent encounter|Corrosion of unspecified degree of right toe(s) (nail), subsequent encounter +C2873379|T037|AB|T25.431S|ICD10CM|Corrosion of unsp degree of right toe(s) (nail), sequela|Corrosion of unsp degree of right toe(s) (nail), sequela +C2873379|T037|PT|T25.431S|ICD10CM|Corrosion of unspecified degree of right toe(s) (nail), sequela|Corrosion of unspecified degree of right toe(s) (nail), sequela +C2873380|T037|AB|T25.432|ICD10CM|Corrosion of unspecified degree of left toe(s) (nail)|Corrosion of unspecified degree of left toe(s) (nail) +C2873380|T037|HT|T25.432|ICD10CM|Corrosion of unspecified degree of left toe(s) (nail)|Corrosion of unspecified degree of left toe(s) (nail) +C2873381|T037|AB|T25.432A|ICD10CM|Corrosion of unsp degree of left toe(s) (nail), init encntr|Corrosion of unsp degree of left toe(s) (nail), init encntr +C2873381|T037|PT|T25.432A|ICD10CM|Corrosion of unspecified degree of left toe(s) (nail), initial encounter|Corrosion of unspecified degree of left toe(s) (nail), initial encounter +C2873382|T037|AB|T25.432D|ICD10CM|Corrosion of unsp degree of left toe(s) (nail), subs encntr|Corrosion of unsp degree of left toe(s) (nail), subs encntr +C2873382|T037|PT|T25.432D|ICD10CM|Corrosion of unspecified degree of left toe(s) (nail), subsequent encounter|Corrosion of unspecified degree of left toe(s) (nail), subsequent encounter +C2873383|T037|AB|T25.432S|ICD10CM|Corrosion of unsp degree of left toe(s) (nail), sequela|Corrosion of unsp degree of left toe(s) (nail), sequela +C2873383|T037|PT|T25.432S|ICD10CM|Corrosion of unspecified degree of left toe(s) (nail), sequela|Corrosion of unspecified degree of left toe(s) (nail), sequela +C2873384|T037|AB|T25.439|ICD10CM|Corrosion of unspecified degree of unspecified toe(s) (nail)|Corrosion of unspecified degree of unspecified toe(s) (nail) +C2873384|T037|HT|T25.439|ICD10CM|Corrosion of unspecified degree of unspecified toe(s) (nail)|Corrosion of unspecified degree of unspecified toe(s) (nail) +C2873385|T037|AB|T25.439A|ICD10CM|Corrosion of unsp degree of unsp toe(s) (nail), init encntr|Corrosion of unsp degree of unsp toe(s) (nail), init encntr +C2873385|T037|PT|T25.439A|ICD10CM|Corrosion of unspecified degree of unspecified toe(s) (nail), initial encounter|Corrosion of unspecified degree of unspecified toe(s) (nail), initial encounter +C2873386|T037|AB|T25.439D|ICD10CM|Corrosion of unsp degree of unsp toe(s) (nail), subs encntr|Corrosion of unsp degree of unsp toe(s) (nail), subs encntr +C2873386|T037|PT|T25.439D|ICD10CM|Corrosion of unspecified degree of unspecified toe(s) (nail), subsequent encounter|Corrosion of unspecified degree of unspecified toe(s) (nail), subsequent encounter +C2873387|T037|AB|T25.439S|ICD10CM|Corrosion of unsp degree of unsp toe(s) (nail), sequela|Corrosion of unsp degree of unsp toe(s) (nail), sequela +C2873387|T037|PT|T25.439S|ICD10CM|Corrosion of unspecified degree of unspecified toe(s) (nail), sequela|Corrosion of unspecified degree of unspecified toe(s) (nail), sequela +C2873388|T037|AB|T25.49|ICD10CM|Corrosion of unsp degree of multiple sites of ankle and foot|Corrosion of unsp degree of multiple sites of ankle and foot +C2873388|T037|HT|T25.49|ICD10CM|Corrosion of unspecified degree of multiple sites of ankle and foot|Corrosion of unspecified degree of multiple sites of ankle and foot +C2873389|T037|AB|T25.491|ICD10CM|Corrosion of unsp deg mult sites of right ankle and foot|Corrosion of unsp deg mult sites of right ankle and foot +C2873389|T037|HT|T25.491|ICD10CM|Corrosion of unspecified degree of multiple sites of right ankle and foot|Corrosion of unspecified degree of multiple sites of right ankle and foot +C2873390|T037|AB|T25.491A|ICD10CM|Corrosion of unsp deg mult sites of right ank/ft, init|Corrosion of unsp deg mult sites of right ank/ft, init +C2873390|T037|PT|T25.491A|ICD10CM|Corrosion of unspecified degree of multiple sites of right ankle and foot, initial encounter|Corrosion of unspecified degree of multiple sites of right ankle and foot, initial encounter +C2873391|T037|AB|T25.491D|ICD10CM|Corrosion of unsp deg mult sites of right ank/ft, subs|Corrosion of unsp deg mult sites of right ank/ft, subs +C2873391|T037|PT|T25.491D|ICD10CM|Corrosion of unspecified degree of multiple sites of right ankle and foot, subsequent encounter|Corrosion of unspecified degree of multiple sites of right ankle and foot, subsequent encounter +C2873392|T037|AB|T25.491S|ICD10CM|Corrosion of unsp deg mult sites of right ank/ft, sequela|Corrosion of unsp deg mult sites of right ank/ft, sequela +C2873392|T037|PT|T25.491S|ICD10CM|Corrosion of unspecified degree of multiple sites of right ankle and foot, sequela|Corrosion of unspecified degree of multiple sites of right ankle and foot, sequela +C2873393|T037|AB|T25.492|ICD10CM|Corrosion of unsp deg mult sites of left ankle and foot|Corrosion of unsp deg mult sites of left ankle and foot +C2873393|T037|HT|T25.492|ICD10CM|Corrosion of unspecified degree of multiple sites of left ankle and foot|Corrosion of unspecified degree of multiple sites of left ankle and foot +C2873394|T037|AB|T25.492A|ICD10CM|Corrosion of unsp deg mult sites of left ank/ft, init|Corrosion of unsp deg mult sites of left ank/ft, init +C2873394|T037|PT|T25.492A|ICD10CM|Corrosion of unspecified degree of multiple sites of left ankle and foot, initial encounter|Corrosion of unspecified degree of multiple sites of left ankle and foot, initial encounter +C2873395|T037|AB|T25.492D|ICD10CM|Corrosion of unsp deg mult sites of left ank/ft, subs|Corrosion of unsp deg mult sites of left ank/ft, subs +C2873395|T037|PT|T25.492D|ICD10CM|Corrosion of unspecified degree of multiple sites of left ankle and foot, subsequent encounter|Corrosion of unspecified degree of multiple sites of left ankle and foot, subsequent encounter +C2873396|T037|AB|T25.492S|ICD10CM|Corrosion of unsp deg mult sites of left ank/ft, sequela|Corrosion of unsp deg mult sites of left ank/ft, sequela +C2873396|T037|PT|T25.492S|ICD10CM|Corrosion of unspecified degree of multiple sites of left ankle and foot, sequela|Corrosion of unspecified degree of multiple sites of left ankle and foot, sequela +C2873397|T037|AB|T25.499|ICD10CM|Corrosion of unsp deg mult sites of unsp ankle and foot|Corrosion of unsp deg mult sites of unsp ankle and foot +C2873397|T037|HT|T25.499|ICD10CM|Corrosion of unspecified degree of multiple sites of unspecified ankle and foot|Corrosion of unspecified degree of multiple sites of unspecified ankle and foot +C2873398|T037|AB|T25.499A|ICD10CM|Corrosion of unsp deg mult sites of unsp ank/ft, init|Corrosion of unsp deg mult sites of unsp ank/ft, init +C2873398|T037|PT|T25.499A|ICD10CM|Corrosion of unspecified degree of multiple sites of unspecified ankle and foot, initial encounter|Corrosion of unspecified degree of multiple sites of unspecified ankle and foot, initial encounter +C2873399|T037|AB|T25.499D|ICD10CM|Corrosion of unsp deg mult sites of unsp ank/ft, subs|Corrosion of unsp deg mult sites of unsp ank/ft, subs +C2873400|T037|AB|T25.499S|ICD10CM|Corrosion of unsp deg mult sites of unsp ank/ft, sequela|Corrosion of unsp deg mult sites of unsp ank/ft, sequela +C2873400|T037|PT|T25.499S|ICD10CM|Corrosion of unspecified degree of multiple sites of unspecified ankle and foot, sequela|Corrosion of unspecified degree of multiple sites of unspecified ankle and foot, sequela +C0452019|T037|HT|T25.5|ICD10CM|Corrosion of first degree of ankle and foot|Corrosion of first degree of ankle and foot +C0452019|T037|AB|T25.5|ICD10CM|Corrosion of first degree of ankle and foot|Corrosion of first degree of ankle and foot +C0452019|T037|PT|T25.5|ICD10|Corrosion of first degree of ankle and foot|Corrosion of first degree of ankle and foot +C2873401|T037|AB|T25.51|ICD10CM|Corrosion of first degree of ankle|Corrosion of first degree of ankle +C2873401|T037|HT|T25.51|ICD10CM|Corrosion of first degree of ankle|Corrosion of first degree of ankle +C2873402|T037|AB|T25.511|ICD10CM|Corrosion of first degree of right ankle|Corrosion of first degree of right ankle +C2873402|T037|HT|T25.511|ICD10CM|Corrosion of first degree of right ankle|Corrosion of first degree of right ankle +C2873403|T037|PT|T25.511A|ICD10CM|Corrosion of first degree of right ankle, initial encounter|Corrosion of first degree of right ankle, initial encounter +C2873403|T037|AB|T25.511A|ICD10CM|Corrosion of first degree of right ankle, initial encounter|Corrosion of first degree of right ankle, initial encounter +C2873404|T037|AB|T25.511D|ICD10CM|Corrosion of first degree of right ankle, subs encntr|Corrosion of first degree of right ankle, subs encntr +C2873404|T037|PT|T25.511D|ICD10CM|Corrosion of first degree of right ankle, subsequent encounter|Corrosion of first degree of right ankle, subsequent encounter +C2873405|T037|PT|T25.511S|ICD10CM|Corrosion of first degree of right ankle, sequela|Corrosion of first degree of right ankle, sequela +C2873405|T037|AB|T25.511S|ICD10CM|Corrosion of first degree of right ankle, sequela|Corrosion of first degree of right ankle, sequela +C2873406|T037|AB|T25.512|ICD10CM|Corrosion of first degree of left ankle|Corrosion of first degree of left ankle +C2873406|T037|HT|T25.512|ICD10CM|Corrosion of first degree of left ankle|Corrosion of first degree of left ankle +C2873407|T037|PT|T25.512A|ICD10CM|Corrosion of first degree of left ankle, initial encounter|Corrosion of first degree of left ankle, initial encounter +C2873407|T037|AB|T25.512A|ICD10CM|Corrosion of first degree of left ankle, initial encounter|Corrosion of first degree of left ankle, initial encounter +C2873408|T037|AB|T25.512D|ICD10CM|Corrosion of first degree of left ankle, subs encntr|Corrosion of first degree of left ankle, subs encntr +C2873408|T037|PT|T25.512D|ICD10CM|Corrosion of first degree of left ankle, subsequent encounter|Corrosion of first degree of left ankle, subsequent encounter +C2873409|T037|PT|T25.512S|ICD10CM|Corrosion of first degree of left ankle, sequela|Corrosion of first degree of left ankle, sequela +C2873409|T037|AB|T25.512S|ICD10CM|Corrosion of first degree of left ankle, sequela|Corrosion of first degree of left ankle, sequela +C2873410|T037|AB|T25.519|ICD10CM|Corrosion of first degree of unspecified ankle|Corrosion of first degree of unspecified ankle +C2873410|T037|HT|T25.519|ICD10CM|Corrosion of first degree of unspecified ankle|Corrosion of first degree of unspecified ankle +C2873411|T037|AB|T25.519A|ICD10CM|Corrosion of first degree of unspecified ankle, init encntr|Corrosion of first degree of unspecified ankle, init encntr +C2873411|T037|PT|T25.519A|ICD10CM|Corrosion of first degree of unspecified ankle, initial encounter|Corrosion of first degree of unspecified ankle, initial encounter +C2873412|T037|AB|T25.519D|ICD10CM|Corrosion of first degree of unspecified ankle, subs encntr|Corrosion of first degree of unspecified ankle, subs encntr +C2873412|T037|PT|T25.519D|ICD10CM|Corrosion of first degree of unspecified ankle, subsequent encounter|Corrosion of first degree of unspecified ankle, subsequent encounter +C2873413|T037|PT|T25.519S|ICD10CM|Corrosion of first degree of unspecified ankle, sequela|Corrosion of first degree of unspecified ankle, sequela +C2873413|T037|AB|T25.519S|ICD10CM|Corrosion of first degree of unspecified ankle, sequela|Corrosion of first degree of unspecified ankle, sequela +C2873414|T037|AB|T25.52|ICD10CM|Corrosion of first degree of foot|Corrosion of first degree of foot +C2873414|T037|HT|T25.52|ICD10CM|Corrosion of first degree of foot|Corrosion of first degree of foot +C2873415|T037|AB|T25.521|ICD10CM|Corrosion of first degree of right foot|Corrosion of first degree of right foot +C2873415|T037|HT|T25.521|ICD10CM|Corrosion of first degree of right foot|Corrosion of first degree of right foot +C2873416|T037|PT|T25.521A|ICD10CM|Corrosion of first degree of right foot, initial encounter|Corrosion of first degree of right foot, initial encounter +C2873416|T037|AB|T25.521A|ICD10CM|Corrosion of first degree of right foot, initial encounter|Corrosion of first degree of right foot, initial encounter +C2873417|T037|AB|T25.521D|ICD10CM|Corrosion of first degree of right foot, subs encntr|Corrosion of first degree of right foot, subs encntr +C2873417|T037|PT|T25.521D|ICD10CM|Corrosion of first degree of right foot, subsequent encounter|Corrosion of first degree of right foot, subsequent encounter +C2873418|T037|PT|T25.521S|ICD10CM|Corrosion of first degree of right foot, sequela|Corrosion of first degree of right foot, sequela +C2873418|T037|AB|T25.521S|ICD10CM|Corrosion of first degree of right foot, sequela|Corrosion of first degree of right foot, sequela +C2873419|T037|AB|T25.522|ICD10CM|Corrosion of first degree of left foot|Corrosion of first degree of left foot +C2873419|T037|HT|T25.522|ICD10CM|Corrosion of first degree of left foot|Corrosion of first degree of left foot +C2873420|T037|PT|T25.522A|ICD10CM|Corrosion of first degree of left foot, initial encounter|Corrosion of first degree of left foot, initial encounter +C2873420|T037|AB|T25.522A|ICD10CM|Corrosion of first degree of left foot, initial encounter|Corrosion of first degree of left foot, initial encounter +C2873421|T037|AB|T25.522D|ICD10CM|Corrosion of first degree of left foot, subsequent encounter|Corrosion of first degree of left foot, subsequent encounter +C2873421|T037|PT|T25.522D|ICD10CM|Corrosion of first degree of left foot, subsequent encounter|Corrosion of first degree of left foot, subsequent encounter +C2873422|T037|PT|T25.522S|ICD10CM|Corrosion of first degree of left foot, sequela|Corrosion of first degree of left foot, sequela +C2873422|T037|AB|T25.522S|ICD10CM|Corrosion of first degree of left foot, sequela|Corrosion of first degree of left foot, sequela +C2873423|T037|AB|T25.529|ICD10CM|Corrosion of first degree of unspecified foot|Corrosion of first degree of unspecified foot +C2873423|T037|HT|T25.529|ICD10CM|Corrosion of first degree of unspecified foot|Corrosion of first degree of unspecified foot +C2873424|T037|AB|T25.529A|ICD10CM|Corrosion of first degree of unspecified foot, init encntr|Corrosion of first degree of unspecified foot, init encntr +C2873424|T037|PT|T25.529A|ICD10CM|Corrosion of first degree of unspecified foot, initial encounter|Corrosion of first degree of unspecified foot, initial encounter +C2873425|T037|AB|T25.529D|ICD10CM|Corrosion of first degree of unspecified foot, subs encntr|Corrosion of first degree of unspecified foot, subs encntr +C2873425|T037|PT|T25.529D|ICD10CM|Corrosion of first degree of unspecified foot, subsequent encounter|Corrosion of first degree of unspecified foot, subsequent encounter +C2873426|T037|PT|T25.529S|ICD10CM|Corrosion of first degree of unspecified foot, sequela|Corrosion of first degree of unspecified foot, sequela +C2873426|T037|AB|T25.529S|ICD10CM|Corrosion of first degree of unspecified foot, sequela|Corrosion of first degree of unspecified foot, sequela +C2873427|T037|AB|T25.53|ICD10CM|Corrosion of first degree of toe(s) (nail)|Corrosion of first degree of toe(s) (nail) +C2873427|T037|HT|T25.53|ICD10CM|Corrosion of first degree of toe(s) (nail)|Corrosion of first degree of toe(s) (nail) +C2873428|T037|AB|T25.531|ICD10CM|Corrosion of first degree of right toe(s) (nail)|Corrosion of first degree of right toe(s) (nail) +C2873428|T037|HT|T25.531|ICD10CM|Corrosion of first degree of right toe(s) (nail)|Corrosion of first degree of right toe(s) (nail) +C2873429|T037|AB|T25.531A|ICD10CM|Corrosion of first degree of right toe(s) (nail), init|Corrosion of first degree of right toe(s) (nail), init +C2873429|T037|PT|T25.531A|ICD10CM|Corrosion of first degree of right toe(s) (nail), initial encounter|Corrosion of first degree of right toe(s) (nail), initial encounter +C2873430|T037|AB|T25.531D|ICD10CM|Corrosion of first degree of right toe(s) (nail), subs|Corrosion of first degree of right toe(s) (nail), subs +C2873430|T037|PT|T25.531D|ICD10CM|Corrosion of first degree of right toe(s) (nail), subsequent encounter|Corrosion of first degree of right toe(s) (nail), subsequent encounter +C2873431|T037|PT|T25.531S|ICD10CM|Corrosion of first degree of right toe(s) (nail), sequela|Corrosion of first degree of right toe(s) (nail), sequela +C2873431|T037|AB|T25.531S|ICD10CM|Corrosion of first degree of right toe(s) (nail), sequela|Corrosion of first degree of right toe(s) (nail), sequela +C2873432|T037|AB|T25.532|ICD10CM|Corrosion of first degree of left toe(s) (nail)|Corrosion of first degree of left toe(s) (nail) +C2873432|T037|HT|T25.532|ICD10CM|Corrosion of first degree of left toe(s) (nail)|Corrosion of first degree of left toe(s) (nail) +C2873433|T037|AB|T25.532A|ICD10CM|Corrosion of first degree of left toe(s) (nail), init encntr|Corrosion of first degree of left toe(s) (nail), init encntr +C2873433|T037|PT|T25.532A|ICD10CM|Corrosion of first degree of left toe(s) (nail), initial encounter|Corrosion of first degree of left toe(s) (nail), initial encounter +C2873434|T037|AB|T25.532D|ICD10CM|Corrosion of first degree of left toe(s) (nail), subs encntr|Corrosion of first degree of left toe(s) (nail), subs encntr +C2873434|T037|PT|T25.532D|ICD10CM|Corrosion of first degree of left toe(s) (nail), subsequent encounter|Corrosion of first degree of left toe(s) (nail), subsequent encounter +C2873435|T037|PT|T25.532S|ICD10CM|Corrosion of first degree of left toe(s) (nail), sequela|Corrosion of first degree of left toe(s) (nail), sequela +C2873435|T037|AB|T25.532S|ICD10CM|Corrosion of first degree of left toe(s) (nail), sequela|Corrosion of first degree of left toe(s) (nail), sequela +C2873436|T037|AB|T25.539|ICD10CM|Corrosion of first degree of unspecified toe(s) (nail)|Corrosion of first degree of unspecified toe(s) (nail) +C2873436|T037|HT|T25.539|ICD10CM|Corrosion of first degree of unspecified toe(s) (nail)|Corrosion of first degree of unspecified toe(s) (nail) +C2873437|T037|AB|T25.539A|ICD10CM|Corrosion of first degree of unsp toe(s) (nail), init encntr|Corrosion of first degree of unsp toe(s) (nail), init encntr +C2873437|T037|PT|T25.539A|ICD10CM|Corrosion of first degree of unspecified toe(s) (nail), initial encounter|Corrosion of first degree of unspecified toe(s) (nail), initial encounter +C2873438|T037|AB|T25.539D|ICD10CM|Corrosion of first degree of unsp toe(s) (nail), subs encntr|Corrosion of first degree of unsp toe(s) (nail), subs encntr +C2873438|T037|PT|T25.539D|ICD10CM|Corrosion of first degree of unspecified toe(s) (nail), subsequent encounter|Corrosion of first degree of unspecified toe(s) (nail), subsequent encounter +C2873439|T037|AB|T25.539S|ICD10CM|Corrosion of first degree of unsp toe(s) (nail), sequela|Corrosion of first degree of unsp toe(s) (nail), sequela +C2873439|T037|PT|T25.539S|ICD10CM|Corrosion of first degree of unspecified toe(s) (nail), sequela|Corrosion of first degree of unspecified toe(s) (nail), sequela +C2873440|T037|AB|T25.59|ICD10CM|Corrosion of first deg mult sites of ankle and foot|Corrosion of first deg mult sites of ankle and foot +C2873440|T037|HT|T25.59|ICD10CM|Corrosion of first degree of multiple sites of ankle and foot|Corrosion of first degree of multiple sites of ankle and foot +C2873441|T037|AB|T25.591|ICD10CM|Corrosion of first deg mult sites of right ankle and foot|Corrosion of first deg mult sites of right ankle and foot +C2873441|T037|HT|T25.591|ICD10CM|Corrosion of first degree of multiple sites of right ankle and foot|Corrosion of first degree of multiple sites of right ankle and foot +C2873442|T037|AB|T25.591A|ICD10CM|Corrosion of first deg mult sites of right ank/ft, init|Corrosion of first deg mult sites of right ank/ft, init +C2873442|T037|PT|T25.591A|ICD10CM|Corrosion of first degree of multiple sites of right ankle and foot, initial encounter|Corrosion of first degree of multiple sites of right ankle and foot, initial encounter +C2873443|T037|AB|T25.591D|ICD10CM|Corrosion of first deg mult sites of right ank/ft, subs|Corrosion of first deg mult sites of right ank/ft, subs +C2873443|T037|PT|T25.591D|ICD10CM|Corrosion of first degree of multiple sites of right ankle and foot, subsequent encounter|Corrosion of first degree of multiple sites of right ankle and foot, subsequent encounter +C2873444|T037|AB|T25.591S|ICD10CM|Corrosion of first deg mult sites of right ank/ft, sequela|Corrosion of first deg mult sites of right ank/ft, sequela +C2873444|T037|PT|T25.591S|ICD10CM|Corrosion of first degree of multiple sites of right ankle and foot, sequela|Corrosion of first degree of multiple sites of right ankle and foot, sequela +C2873445|T037|AB|T25.592|ICD10CM|Corrosion of first deg mult sites of left ankle and foot|Corrosion of first deg mult sites of left ankle and foot +C2873445|T037|HT|T25.592|ICD10CM|Corrosion of first degree of multiple sites of left ankle and foot|Corrosion of first degree of multiple sites of left ankle and foot +C2873446|T037|AB|T25.592A|ICD10CM|Corrosion of first deg mult sites of left ank/ft, init|Corrosion of first deg mult sites of left ank/ft, init +C2873446|T037|PT|T25.592A|ICD10CM|Corrosion of first degree of multiple sites of left ankle and foot, initial encounter|Corrosion of first degree of multiple sites of left ankle and foot, initial encounter +C2873447|T037|AB|T25.592D|ICD10CM|Corrosion of first deg mult sites of left ank/ft, subs|Corrosion of first deg mult sites of left ank/ft, subs +C2873447|T037|PT|T25.592D|ICD10CM|Corrosion of first degree of multiple sites of left ankle and foot, subsequent encounter|Corrosion of first degree of multiple sites of left ankle and foot, subsequent encounter +C2873448|T037|AB|T25.592S|ICD10CM|Corrosion of first deg mult sites of left ank/ft, sequela|Corrosion of first deg mult sites of left ank/ft, sequela +C2873448|T037|PT|T25.592S|ICD10CM|Corrosion of first degree of multiple sites of left ankle and foot, sequela|Corrosion of first degree of multiple sites of left ankle and foot, sequela +C2873449|T037|AB|T25.599|ICD10CM|Corrosion of first deg mult sites of unsp ankle and foot|Corrosion of first deg mult sites of unsp ankle and foot +C2873449|T037|HT|T25.599|ICD10CM|Corrosion of first degree of multiple sites of unspecified ankle and foot|Corrosion of first degree of multiple sites of unspecified ankle and foot +C2873450|T037|AB|T25.599A|ICD10CM|Corrosion of first deg mult sites of unsp ank/ft, init|Corrosion of first deg mult sites of unsp ank/ft, init +C2873450|T037|PT|T25.599A|ICD10CM|Corrosion of first degree of multiple sites of unspecified ankle and foot, initial encounter|Corrosion of first degree of multiple sites of unspecified ankle and foot, initial encounter +C2873451|T037|AB|T25.599D|ICD10CM|Corrosion of first deg mult sites of unsp ank/ft, subs|Corrosion of first deg mult sites of unsp ank/ft, subs +C2873451|T037|PT|T25.599D|ICD10CM|Corrosion of first degree of multiple sites of unspecified ankle and foot, subsequent encounter|Corrosion of first degree of multiple sites of unspecified ankle and foot, subsequent encounter +C2873452|T037|AB|T25.599S|ICD10CM|Corrosion of first deg mult sites of unsp ank/ft, sequela|Corrosion of first deg mult sites of unsp ank/ft, sequela +C2873452|T037|PT|T25.599S|ICD10CM|Corrosion of first degree of multiple sites of unspecified ankle and foot, sequela|Corrosion of first degree of multiple sites of unspecified ankle and foot, sequela +C0452020|T037|PT|T25.6|ICD10|Corrosion of second degree of ankle and foot|Corrosion of second degree of ankle and foot +C0452020|T037|HT|T25.6|ICD10CM|Corrosion of second degree of ankle and foot|Corrosion of second degree of ankle and foot +C0452020|T037|AB|T25.6|ICD10CM|Corrosion of second degree of ankle and foot|Corrosion of second degree of ankle and foot +C2873453|T037|AB|T25.61|ICD10CM|Corrosion of second degree of ankle|Corrosion of second degree of ankle +C2873453|T037|HT|T25.61|ICD10CM|Corrosion of second degree of ankle|Corrosion of second degree of ankle +C2873454|T037|AB|T25.611|ICD10CM|Corrosion of second degree of right ankle|Corrosion of second degree of right ankle +C2873454|T037|HT|T25.611|ICD10CM|Corrosion of second degree of right ankle|Corrosion of second degree of right ankle +C2873455|T037|AB|T25.611A|ICD10CM|Corrosion of second degree of right ankle, initial encounter|Corrosion of second degree of right ankle, initial encounter +C2873455|T037|PT|T25.611A|ICD10CM|Corrosion of second degree of right ankle, initial encounter|Corrosion of second degree of right ankle, initial encounter +C2873456|T037|AB|T25.611D|ICD10CM|Corrosion of second degree of right ankle, subs encntr|Corrosion of second degree of right ankle, subs encntr +C2873456|T037|PT|T25.611D|ICD10CM|Corrosion of second degree of right ankle, subsequent encounter|Corrosion of second degree of right ankle, subsequent encounter +C2873457|T037|PT|T25.611S|ICD10CM|Corrosion of second degree of right ankle, sequela|Corrosion of second degree of right ankle, sequela +C2873457|T037|AB|T25.611S|ICD10CM|Corrosion of second degree of right ankle, sequela|Corrosion of second degree of right ankle, sequela +C2873458|T037|AB|T25.612|ICD10CM|Corrosion of second degree of left ankle|Corrosion of second degree of left ankle +C2873458|T037|HT|T25.612|ICD10CM|Corrosion of second degree of left ankle|Corrosion of second degree of left ankle +C2873459|T037|PT|T25.612A|ICD10CM|Corrosion of second degree of left ankle, initial encounter|Corrosion of second degree of left ankle, initial encounter +C2873459|T037|AB|T25.612A|ICD10CM|Corrosion of second degree of left ankle, initial encounter|Corrosion of second degree of left ankle, initial encounter +C2873460|T037|AB|T25.612D|ICD10CM|Corrosion of second degree of left ankle, subs encntr|Corrosion of second degree of left ankle, subs encntr +C2873460|T037|PT|T25.612D|ICD10CM|Corrosion of second degree of left ankle, subsequent encounter|Corrosion of second degree of left ankle, subsequent encounter +C2873461|T037|PT|T25.612S|ICD10CM|Corrosion of second degree of left ankle, sequela|Corrosion of second degree of left ankle, sequela +C2873461|T037|AB|T25.612S|ICD10CM|Corrosion of second degree of left ankle, sequela|Corrosion of second degree of left ankle, sequela +C2873462|T037|AB|T25.619|ICD10CM|Corrosion of second degree of unspecified ankle|Corrosion of second degree of unspecified ankle +C2873462|T037|HT|T25.619|ICD10CM|Corrosion of second degree of unspecified ankle|Corrosion of second degree of unspecified ankle +C2873463|T037|AB|T25.619A|ICD10CM|Corrosion of second degree of unspecified ankle, init encntr|Corrosion of second degree of unspecified ankle, init encntr +C2873463|T037|PT|T25.619A|ICD10CM|Corrosion of second degree of unspecified ankle, initial encounter|Corrosion of second degree of unspecified ankle, initial encounter +C2873464|T037|AB|T25.619D|ICD10CM|Corrosion of second degree of unspecified ankle, subs encntr|Corrosion of second degree of unspecified ankle, subs encntr +C2873464|T037|PT|T25.619D|ICD10CM|Corrosion of second degree of unspecified ankle, subsequent encounter|Corrosion of second degree of unspecified ankle, subsequent encounter +C2873465|T037|PT|T25.619S|ICD10CM|Corrosion of second degree of unspecified ankle, sequela|Corrosion of second degree of unspecified ankle, sequela +C2873465|T037|AB|T25.619S|ICD10CM|Corrosion of second degree of unspecified ankle, sequela|Corrosion of second degree of unspecified ankle, sequela +C2873466|T037|AB|T25.62|ICD10CM|Corrosion of second degree of foot|Corrosion of second degree of foot +C2873466|T037|HT|T25.62|ICD10CM|Corrosion of second degree of foot|Corrosion of second degree of foot +C2873467|T037|AB|T25.621|ICD10CM|Corrosion of second degree of right foot|Corrosion of second degree of right foot +C2873467|T037|HT|T25.621|ICD10CM|Corrosion of second degree of right foot|Corrosion of second degree of right foot +C2873468|T037|PT|T25.621A|ICD10CM|Corrosion of second degree of right foot, initial encounter|Corrosion of second degree of right foot, initial encounter +C2873468|T037|AB|T25.621A|ICD10CM|Corrosion of second degree of right foot, initial encounter|Corrosion of second degree of right foot, initial encounter +C2873469|T037|AB|T25.621D|ICD10CM|Corrosion of second degree of right foot, subs encntr|Corrosion of second degree of right foot, subs encntr +C2873469|T037|PT|T25.621D|ICD10CM|Corrosion of second degree of right foot, subsequent encounter|Corrosion of second degree of right foot, subsequent encounter +C2873470|T037|PT|T25.621S|ICD10CM|Corrosion of second degree of right foot, sequela|Corrosion of second degree of right foot, sequela +C2873470|T037|AB|T25.621S|ICD10CM|Corrosion of second degree of right foot, sequela|Corrosion of second degree of right foot, sequela +C2873471|T037|AB|T25.622|ICD10CM|Corrosion of second degree of left foot|Corrosion of second degree of left foot +C2873471|T037|HT|T25.622|ICD10CM|Corrosion of second degree of left foot|Corrosion of second degree of left foot +C2873472|T037|PT|T25.622A|ICD10CM|Corrosion of second degree of left foot, initial encounter|Corrosion of second degree of left foot, initial encounter +C2873472|T037|AB|T25.622A|ICD10CM|Corrosion of second degree of left foot, initial encounter|Corrosion of second degree of left foot, initial encounter +C2873473|T037|AB|T25.622D|ICD10CM|Corrosion of second degree of left foot, subs encntr|Corrosion of second degree of left foot, subs encntr +C2873473|T037|PT|T25.622D|ICD10CM|Corrosion of second degree of left foot, subsequent encounter|Corrosion of second degree of left foot, subsequent encounter +C2873474|T037|PT|T25.622S|ICD10CM|Corrosion of second degree of left foot, sequela|Corrosion of second degree of left foot, sequela +C2873474|T037|AB|T25.622S|ICD10CM|Corrosion of second degree of left foot, sequela|Corrosion of second degree of left foot, sequela +C2873475|T037|AB|T25.629|ICD10CM|Corrosion of second degree of unspecified foot|Corrosion of second degree of unspecified foot +C2873475|T037|HT|T25.629|ICD10CM|Corrosion of second degree of unspecified foot|Corrosion of second degree of unspecified foot +C2873476|T037|AB|T25.629A|ICD10CM|Corrosion of second degree of unspecified foot, init encntr|Corrosion of second degree of unspecified foot, init encntr +C2873476|T037|PT|T25.629A|ICD10CM|Corrosion of second degree of unspecified foot, initial encounter|Corrosion of second degree of unspecified foot, initial encounter +C2873477|T037|AB|T25.629D|ICD10CM|Corrosion of second degree of unspecified foot, subs encntr|Corrosion of second degree of unspecified foot, subs encntr +C2873477|T037|PT|T25.629D|ICD10CM|Corrosion of second degree of unspecified foot, subsequent encounter|Corrosion of second degree of unspecified foot, subsequent encounter +C2873478|T037|PT|T25.629S|ICD10CM|Corrosion of second degree of unspecified foot, sequela|Corrosion of second degree of unspecified foot, sequela +C2873478|T037|AB|T25.629S|ICD10CM|Corrosion of second degree of unspecified foot, sequela|Corrosion of second degree of unspecified foot, sequela +C2873479|T037|AB|T25.63|ICD10CM|Corrosion of second degree of toe(s) (nail)|Corrosion of second degree of toe(s) (nail) +C2873479|T037|HT|T25.63|ICD10CM|Corrosion of second degree of toe(s) (nail)|Corrosion of second degree of toe(s) (nail) +C2873480|T037|AB|T25.631|ICD10CM|Corrosion of second degree of right toe(s) (nail)|Corrosion of second degree of right toe(s) (nail) +C2873480|T037|HT|T25.631|ICD10CM|Corrosion of second degree of right toe(s) (nail)|Corrosion of second degree of right toe(s) (nail) +C2873481|T037|AB|T25.631A|ICD10CM|Corrosion of second degree of right toe(s) (nail), init|Corrosion of second degree of right toe(s) (nail), init +C2873481|T037|PT|T25.631A|ICD10CM|Corrosion of second degree of right toe(s) (nail), initial encounter|Corrosion of second degree of right toe(s) (nail), initial encounter +C2873482|T037|AB|T25.631D|ICD10CM|Corrosion of second degree of right toe(s) (nail), subs|Corrosion of second degree of right toe(s) (nail), subs +C2873482|T037|PT|T25.631D|ICD10CM|Corrosion of second degree of right toe(s) (nail), subsequent encounter|Corrosion of second degree of right toe(s) (nail), subsequent encounter +C2873483|T037|PT|T25.631S|ICD10CM|Corrosion of second degree of right toe(s) (nail), sequela|Corrosion of second degree of right toe(s) (nail), sequela +C2873483|T037|AB|T25.631S|ICD10CM|Corrosion of second degree of right toe(s) (nail), sequela|Corrosion of second degree of right toe(s) (nail), sequela +C2873484|T037|AB|T25.632|ICD10CM|Corrosion of second degree of left toe(s) (nail)|Corrosion of second degree of left toe(s) (nail) +C2873484|T037|HT|T25.632|ICD10CM|Corrosion of second degree of left toe(s) (nail)|Corrosion of second degree of left toe(s) (nail) +C2873485|T037|AB|T25.632A|ICD10CM|Corrosion of second degree of left toe(s) (nail), init|Corrosion of second degree of left toe(s) (nail), init +C2873485|T037|PT|T25.632A|ICD10CM|Corrosion of second degree of left toe(s) (nail), initial encounter|Corrosion of second degree of left toe(s) (nail), initial encounter +C2873486|T037|AB|T25.632D|ICD10CM|Corrosion of second degree of left toe(s) (nail), subs|Corrosion of second degree of left toe(s) (nail), subs +C2873486|T037|PT|T25.632D|ICD10CM|Corrosion of second degree of left toe(s) (nail), subsequent encounter|Corrosion of second degree of left toe(s) (nail), subsequent encounter +C2873487|T037|PT|T25.632S|ICD10CM|Corrosion of second degree of left toe(s) (nail), sequela|Corrosion of second degree of left toe(s) (nail), sequela +C2873487|T037|AB|T25.632S|ICD10CM|Corrosion of second degree of left toe(s) (nail), sequela|Corrosion of second degree of left toe(s) (nail), sequela +C2873488|T037|AB|T25.639|ICD10CM|Corrosion of second degree of unspecified toe(s) (nail)|Corrosion of second degree of unspecified toe(s) (nail) +C2873488|T037|HT|T25.639|ICD10CM|Corrosion of second degree of unspecified toe(s) (nail)|Corrosion of second degree of unspecified toe(s) (nail) +C2873489|T037|AB|T25.639A|ICD10CM|Corrosion of second degree of unsp toe(s) (nail), init|Corrosion of second degree of unsp toe(s) (nail), init +C2873489|T037|PT|T25.639A|ICD10CM|Corrosion of second degree of unspecified toe(s) (nail), initial encounter|Corrosion of second degree of unspecified toe(s) (nail), initial encounter +C2873490|T037|AB|T25.639D|ICD10CM|Corrosion of second degree of unsp toe(s) (nail), subs|Corrosion of second degree of unsp toe(s) (nail), subs +C2873490|T037|PT|T25.639D|ICD10CM|Corrosion of second degree of unspecified toe(s) (nail), subsequent encounter|Corrosion of second degree of unspecified toe(s) (nail), subsequent encounter +C2873491|T037|AB|T25.639S|ICD10CM|Corrosion of second degree of unsp toe(s) (nail), sequela|Corrosion of second degree of unsp toe(s) (nail), sequela +C2873491|T037|PT|T25.639S|ICD10CM|Corrosion of second degree of unspecified toe(s) (nail), sequela|Corrosion of second degree of unspecified toe(s) (nail), sequela +C2873492|T037|AB|T25.69|ICD10CM|Corrosion of 2nd deg mul sites of ankle and foot|Corrosion of 2nd deg mul sites of ankle and foot +C2873492|T037|HT|T25.69|ICD10CM|Corrosion of second degree of multiple sites of ankle and foot|Corrosion of second degree of multiple sites of ankle and foot +C2873493|T037|AB|T25.691|ICD10CM|Corrosion of second degree of right ankle and foot|Corrosion of second degree of right ankle and foot +C2873493|T037|HT|T25.691|ICD10CM|Corrosion of second degree of right ankle and foot|Corrosion of second degree of right ankle and foot +C2873494|T037|AB|T25.691A|ICD10CM|Corrosion of second degree of right ankle and foot, init|Corrosion of second degree of right ankle and foot, init +C2873494|T037|PT|T25.691A|ICD10CM|Corrosion of second degree of right ankle and foot, initial encounter|Corrosion of second degree of right ankle and foot, initial encounter +C2873495|T037|AB|T25.691D|ICD10CM|Corrosion of second degree of right ankle and foot, subs|Corrosion of second degree of right ankle and foot, subs +C2873495|T037|PT|T25.691D|ICD10CM|Corrosion of second degree of right ankle and foot, subsequent encounter|Corrosion of second degree of right ankle and foot, subsequent encounter +C2873496|T037|AB|T25.691S|ICD10CM|Corrosion of second degree of right ankle and foot, sequela|Corrosion of second degree of right ankle and foot, sequela +C2873496|T037|PT|T25.691S|ICD10CM|Corrosion of second degree of right ankle and foot, sequela|Corrosion of second degree of right ankle and foot, sequela +C2873497|T037|AB|T25.692|ICD10CM|Corrosion of second degree of left ankle and foot|Corrosion of second degree of left ankle and foot +C2873497|T037|HT|T25.692|ICD10CM|Corrosion of second degree of left ankle and foot|Corrosion of second degree of left ankle and foot +C2873498|T037|AB|T25.692A|ICD10CM|Corrosion of second degree of left ankle and foot, init|Corrosion of second degree of left ankle and foot, init +C2873498|T037|PT|T25.692A|ICD10CM|Corrosion of second degree of left ankle and foot, initial encounter|Corrosion of second degree of left ankle and foot, initial encounter +C2873499|T037|AB|T25.692D|ICD10CM|Corrosion of second degree of left ankle and foot, subs|Corrosion of second degree of left ankle and foot, subs +C2873499|T037|PT|T25.692D|ICD10CM|Corrosion of second degree of left ankle and foot, subsequent encounter|Corrosion of second degree of left ankle and foot, subsequent encounter +C2873500|T037|AB|T25.692S|ICD10CM|Corrosion of second degree of left ankle and foot, sequela|Corrosion of second degree of left ankle and foot, sequela +C2873500|T037|PT|T25.692S|ICD10CM|Corrosion of second degree of left ankle and foot, sequela|Corrosion of second degree of left ankle and foot, sequela +C2873501|T037|AB|T25.699|ICD10CM|Corrosion of second degree of unspecified ankle and foot|Corrosion of second degree of unspecified ankle and foot +C2873501|T037|HT|T25.699|ICD10CM|Corrosion of second degree of unspecified ankle and foot|Corrosion of second degree of unspecified ankle and foot +C2873502|T037|AB|T25.699A|ICD10CM|Corrosion of second degree of unsp ankle and foot, init|Corrosion of second degree of unsp ankle and foot, init +C2873502|T037|PT|T25.699A|ICD10CM|Corrosion of second degree of unspecified ankle and foot, initial encounter|Corrosion of second degree of unspecified ankle and foot, initial encounter +C2873503|T037|AB|T25.699D|ICD10CM|Corrosion of second degree of unsp ankle and foot, subs|Corrosion of second degree of unsp ankle and foot, subs +C2873503|T037|PT|T25.699D|ICD10CM|Corrosion of second degree of unspecified ankle and foot, subsequent encounter|Corrosion of second degree of unspecified ankle and foot, subsequent encounter +C2873504|T037|AB|T25.699S|ICD10CM|Corrosion of second degree of unsp ankle and foot, sequela|Corrosion of second degree of unsp ankle and foot, sequela +C2873504|T037|PT|T25.699S|ICD10CM|Corrosion of second degree of unspecified ankle and foot, sequela|Corrosion of second degree of unspecified ankle and foot, sequela +C0452021|T037|HT|T25.7|ICD10CM|Corrosion of third degree of ankle and foot|Corrosion of third degree of ankle and foot +C0452021|T037|AB|T25.7|ICD10CM|Corrosion of third degree of ankle and foot|Corrosion of third degree of ankle and foot +C0452021|T037|PT|T25.7|ICD10|Corrosion of third degree of ankle and foot|Corrosion of third degree of ankle and foot +C2873505|T037|AB|T25.71|ICD10CM|Corrosion of third degree of ankle|Corrosion of third degree of ankle +C2873505|T037|HT|T25.71|ICD10CM|Corrosion of third degree of ankle|Corrosion of third degree of ankle +C2873506|T037|AB|T25.711|ICD10CM|Corrosion of third degree of right ankle|Corrosion of third degree of right ankle +C2873506|T037|HT|T25.711|ICD10CM|Corrosion of third degree of right ankle|Corrosion of third degree of right ankle +C2873507|T037|PT|T25.711A|ICD10CM|Corrosion of third degree of right ankle, initial encounter|Corrosion of third degree of right ankle, initial encounter +C2873507|T037|AB|T25.711A|ICD10CM|Corrosion of third degree of right ankle, initial encounter|Corrosion of third degree of right ankle, initial encounter +C2873508|T037|AB|T25.711D|ICD10CM|Corrosion of third degree of right ankle, subs encntr|Corrosion of third degree of right ankle, subs encntr +C2873508|T037|PT|T25.711D|ICD10CM|Corrosion of third degree of right ankle, subsequent encounter|Corrosion of third degree of right ankle, subsequent encounter +C2873509|T037|PT|T25.711S|ICD10CM|Corrosion of third degree of right ankle, sequela|Corrosion of third degree of right ankle, sequela +C2873509|T037|AB|T25.711S|ICD10CM|Corrosion of third degree of right ankle, sequela|Corrosion of third degree of right ankle, sequela +C2873510|T037|AB|T25.712|ICD10CM|Corrosion of third degree of left ankle|Corrosion of third degree of left ankle +C2873510|T037|HT|T25.712|ICD10CM|Corrosion of third degree of left ankle|Corrosion of third degree of left ankle +C2873511|T037|PT|T25.712A|ICD10CM|Corrosion of third degree of left ankle, initial encounter|Corrosion of third degree of left ankle, initial encounter +C2873511|T037|AB|T25.712A|ICD10CM|Corrosion of third degree of left ankle, initial encounter|Corrosion of third degree of left ankle, initial encounter +C2873512|T037|AB|T25.712D|ICD10CM|Corrosion of third degree of left ankle, subs encntr|Corrosion of third degree of left ankle, subs encntr +C2873512|T037|PT|T25.712D|ICD10CM|Corrosion of third degree of left ankle, subsequent encounter|Corrosion of third degree of left ankle, subsequent encounter +C2873513|T037|PT|T25.712S|ICD10CM|Corrosion of third degree of left ankle, sequela|Corrosion of third degree of left ankle, sequela +C2873513|T037|AB|T25.712S|ICD10CM|Corrosion of third degree of left ankle, sequela|Corrosion of third degree of left ankle, sequela +C2873514|T037|AB|T25.719|ICD10CM|Corrosion of third degree of unspecified ankle|Corrosion of third degree of unspecified ankle +C2873514|T037|HT|T25.719|ICD10CM|Corrosion of third degree of unspecified ankle|Corrosion of third degree of unspecified ankle +C2873515|T037|AB|T25.719A|ICD10CM|Corrosion of third degree of unspecified ankle, init encntr|Corrosion of third degree of unspecified ankle, init encntr +C2873515|T037|PT|T25.719A|ICD10CM|Corrosion of third degree of unspecified ankle, initial encounter|Corrosion of third degree of unspecified ankle, initial encounter +C2873516|T037|AB|T25.719D|ICD10CM|Corrosion of third degree of unspecified ankle, subs encntr|Corrosion of third degree of unspecified ankle, subs encntr +C2873516|T037|PT|T25.719D|ICD10CM|Corrosion of third degree of unspecified ankle, subsequent encounter|Corrosion of third degree of unspecified ankle, subsequent encounter +C2873517|T037|PT|T25.719S|ICD10CM|Corrosion of third degree of unspecified ankle, sequela|Corrosion of third degree of unspecified ankle, sequela +C2873517|T037|AB|T25.719S|ICD10CM|Corrosion of third degree of unspecified ankle, sequela|Corrosion of third degree of unspecified ankle, sequela +C2873518|T037|AB|T25.72|ICD10CM|Corrosion of third degree of foot|Corrosion of third degree of foot +C2873518|T037|HT|T25.72|ICD10CM|Corrosion of third degree of foot|Corrosion of third degree of foot +C2873519|T037|AB|T25.721|ICD10CM|Corrosion of third degree of right foot|Corrosion of third degree of right foot +C2873519|T037|HT|T25.721|ICD10CM|Corrosion of third degree of right foot|Corrosion of third degree of right foot +C2873520|T037|PT|T25.721A|ICD10CM|Corrosion of third degree of right foot, initial encounter|Corrosion of third degree of right foot, initial encounter +C2873520|T037|AB|T25.721A|ICD10CM|Corrosion of third degree of right foot, initial encounter|Corrosion of third degree of right foot, initial encounter +C2873521|T037|AB|T25.721D|ICD10CM|Corrosion of third degree of right foot, subs encntr|Corrosion of third degree of right foot, subs encntr +C2873521|T037|PT|T25.721D|ICD10CM|Corrosion of third degree of right foot, subsequent encounter|Corrosion of third degree of right foot, subsequent encounter +C2873522|T037|PT|T25.721S|ICD10CM|Corrosion of third degree of right foot, sequela|Corrosion of third degree of right foot, sequela +C2873522|T037|AB|T25.721S|ICD10CM|Corrosion of third degree of right foot, sequela|Corrosion of third degree of right foot, sequela +C2873523|T037|AB|T25.722|ICD10CM|Corrosion of third degree of left foot|Corrosion of third degree of left foot +C2873523|T037|HT|T25.722|ICD10CM|Corrosion of third degree of left foot|Corrosion of third degree of left foot +C2873524|T037|PT|T25.722A|ICD10CM|Corrosion of third degree of left foot, initial encounter|Corrosion of third degree of left foot, initial encounter +C2873524|T037|AB|T25.722A|ICD10CM|Corrosion of third degree of left foot, initial encounter|Corrosion of third degree of left foot, initial encounter +C2873525|T037|AB|T25.722D|ICD10CM|Corrosion of third degree of left foot, subsequent encounter|Corrosion of third degree of left foot, subsequent encounter +C2873525|T037|PT|T25.722D|ICD10CM|Corrosion of third degree of left foot, subsequent encounter|Corrosion of third degree of left foot, subsequent encounter +C2873526|T037|PT|T25.722S|ICD10CM|Corrosion of third degree of left foot, sequela|Corrosion of third degree of left foot, sequela +C2873526|T037|AB|T25.722S|ICD10CM|Corrosion of third degree of left foot, sequela|Corrosion of third degree of left foot, sequela +C2873527|T037|AB|T25.729|ICD10CM|Corrosion of third degree of unspecified foot|Corrosion of third degree of unspecified foot +C2873527|T037|HT|T25.729|ICD10CM|Corrosion of third degree of unspecified foot|Corrosion of third degree of unspecified foot +C2873528|T037|AB|T25.729A|ICD10CM|Corrosion of third degree of unspecified foot, init encntr|Corrosion of third degree of unspecified foot, init encntr +C2873528|T037|PT|T25.729A|ICD10CM|Corrosion of third degree of unspecified foot, initial encounter|Corrosion of third degree of unspecified foot, initial encounter +C2873529|T037|AB|T25.729D|ICD10CM|Corrosion of third degree of unspecified foot, subs encntr|Corrosion of third degree of unspecified foot, subs encntr +C2873529|T037|PT|T25.729D|ICD10CM|Corrosion of third degree of unspecified foot, subsequent encounter|Corrosion of third degree of unspecified foot, subsequent encounter +C2873530|T037|PT|T25.729S|ICD10CM|Corrosion of third degree of unspecified foot, sequela|Corrosion of third degree of unspecified foot, sequela +C2873530|T037|AB|T25.729S|ICD10CM|Corrosion of third degree of unspecified foot, sequela|Corrosion of third degree of unspecified foot, sequela +C2873531|T037|AB|T25.73|ICD10CM|Corrosion of third degree of toe(s) (nail)|Corrosion of third degree of toe(s) (nail) +C2873531|T037|HT|T25.73|ICD10CM|Corrosion of third degree of toe(s) (nail)|Corrosion of third degree of toe(s) (nail) +C2873532|T037|AB|T25.731|ICD10CM|Corrosion of third degree of right toe(s) (nail)|Corrosion of third degree of right toe(s) (nail) +C2873532|T037|HT|T25.731|ICD10CM|Corrosion of third degree of right toe(s) (nail)|Corrosion of third degree of right toe(s) (nail) +C2873533|T037|AB|T25.731A|ICD10CM|Corrosion of third degree of right toe(s) (nail), init|Corrosion of third degree of right toe(s) (nail), init +C2873533|T037|PT|T25.731A|ICD10CM|Corrosion of third degree of right toe(s) (nail), initial encounter|Corrosion of third degree of right toe(s) (nail), initial encounter +C2873534|T037|AB|T25.731D|ICD10CM|Corrosion of third degree of right toe(s) (nail), subs|Corrosion of third degree of right toe(s) (nail), subs +C2873534|T037|PT|T25.731D|ICD10CM|Corrosion of third degree of right toe(s) (nail), subsequent encounter|Corrosion of third degree of right toe(s) (nail), subsequent encounter +C2873535|T037|PT|T25.731S|ICD10CM|Corrosion of third degree of right toe(s) (nail), sequela|Corrosion of third degree of right toe(s) (nail), sequela +C2873535|T037|AB|T25.731S|ICD10CM|Corrosion of third degree of right toe(s) (nail), sequela|Corrosion of third degree of right toe(s) (nail), sequela +C2873536|T037|AB|T25.732|ICD10CM|Corrosion of third degree of left toe(s) (nail)|Corrosion of third degree of left toe(s) (nail) +C2873536|T037|HT|T25.732|ICD10CM|Corrosion of third degree of left toe(s) (nail)|Corrosion of third degree of left toe(s) (nail) +C2873537|T037|AB|T25.732A|ICD10CM|Corrosion of third degree of left toe(s) (nail), init encntr|Corrosion of third degree of left toe(s) (nail), init encntr +C2873537|T037|PT|T25.732A|ICD10CM|Corrosion of third degree of left toe(s) (nail), initial encounter|Corrosion of third degree of left toe(s) (nail), initial encounter +C2873538|T037|AB|T25.732D|ICD10CM|Corrosion of third degree of left toe(s) (nail), subs encntr|Corrosion of third degree of left toe(s) (nail), subs encntr +C2873538|T037|PT|T25.732D|ICD10CM|Corrosion of third degree of left toe(s) (nail), subsequent encounter|Corrosion of third degree of left toe(s) (nail), subsequent encounter +C2873539|T037|PT|T25.732S|ICD10CM|Corrosion of third degree of left toe(s) (nail), sequela|Corrosion of third degree of left toe(s) (nail), sequela +C2873539|T037|AB|T25.732S|ICD10CM|Corrosion of third degree of left toe(s) (nail), sequela|Corrosion of third degree of left toe(s) (nail), sequela +C2873540|T037|AB|T25.739|ICD10CM|Corrosion of third degree of unspecified toe(s) (nail)|Corrosion of third degree of unspecified toe(s) (nail) +C2873540|T037|HT|T25.739|ICD10CM|Corrosion of third degree of unspecified toe(s) (nail)|Corrosion of third degree of unspecified toe(s) (nail) +C2873541|T037|AB|T25.739A|ICD10CM|Corrosion of third degree of unsp toe(s) (nail), init encntr|Corrosion of third degree of unsp toe(s) (nail), init encntr +C2873541|T037|PT|T25.739A|ICD10CM|Corrosion of third degree of unspecified toe(s) (nail), initial encounter|Corrosion of third degree of unspecified toe(s) (nail), initial encounter +C2873542|T037|AB|T25.739D|ICD10CM|Corrosion of third degree of unsp toe(s) (nail), subs encntr|Corrosion of third degree of unsp toe(s) (nail), subs encntr +C2873542|T037|PT|T25.739D|ICD10CM|Corrosion of third degree of unspecified toe(s) (nail), subsequent encounter|Corrosion of third degree of unspecified toe(s) (nail), subsequent encounter +C2873543|T037|AB|T25.739S|ICD10CM|Corrosion of third degree of unsp toe(s) (nail), sequela|Corrosion of third degree of unsp toe(s) (nail), sequela +C2873543|T037|PT|T25.739S|ICD10CM|Corrosion of third degree of unspecified toe(s) (nail), sequela|Corrosion of third degree of unspecified toe(s) (nail), sequela +C2873544|T037|AB|T25.79|ICD10CM|Corrosion of 3rd deg mu sites of ankle and foot|Corrosion of 3rd deg mu sites of ankle and foot +C2873544|T037|HT|T25.79|ICD10CM|Corrosion of third degree of multiple sites of ankle and foot|Corrosion of third degree of multiple sites of ankle and foot +C2873545|T037|AB|T25.791|ICD10CM|Corrosion of 3rd deg mu sites of right ankle and foot|Corrosion of 3rd deg mu sites of right ankle and foot +C2873545|T037|HT|T25.791|ICD10CM|Corrosion of third degree of multiple sites of right ankle and foot|Corrosion of third degree of multiple sites of right ankle and foot +C2873546|T037|AB|T25.791A|ICD10CM|Corrosion of 3rd deg mu sites of right ankle and foot, init|Corrosion of 3rd deg mu sites of right ankle and foot, init +C2873546|T037|PT|T25.791A|ICD10CM|Corrosion of third degree of multiple sites of right ankle and foot, initial encounter|Corrosion of third degree of multiple sites of right ankle and foot, initial encounter +C2873547|T037|AB|T25.791D|ICD10CM|Corrosion of 3rd deg mu sites of right ankle and foot, subs|Corrosion of 3rd deg mu sites of right ankle and foot, subs +C2873547|T037|PT|T25.791D|ICD10CM|Corrosion of third degree of multiple sites of right ankle and foot, subsequent encounter|Corrosion of third degree of multiple sites of right ankle and foot, subsequent encounter +C2873548|T037|AB|T25.791S|ICD10CM|Corrosion of 3rd deg mu sites of right ank/ft, sequela|Corrosion of 3rd deg mu sites of right ank/ft, sequela +C2873548|T037|PT|T25.791S|ICD10CM|Corrosion of third degree of multiple sites of right ankle and foot, sequela|Corrosion of third degree of multiple sites of right ankle and foot, sequela +C2873549|T037|AB|T25.792|ICD10CM|Corrosion of 3rd deg mu sites of left ankle and foot|Corrosion of 3rd deg mu sites of left ankle and foot +C2873549|T037|HT|T25.792|ICD10CM|Corrosion of third degree of multiple sites of left ankle and foot|Corrosion of third degree of multiple sites of left ankle and foot +C2873550|T037|AB|T25.792A|ICD10CM|Corrosion of 3rd deg mu sites of left ankle and foot, init|Corrosion of 3rd deg mu sites of left ankle and foot, init +C2873550|T037|PT|T25.792A|ICD10CM|Corrosion of third degree of multiple sites of left ankle and foot, initial encounter|Corrosion of third degree of multiple sites of left ankle and foot, initial encounter +C2873551|T037|AB|T25.792D|ICD10CM|Corrosion of 3rd deg mu sites of left ankle and foot, subs|Corrosion of 3rd deg mu sites of left ankle and foot, subs +C2873551|T037|PT|T25.792D|ICD10CM|Corrosion of third degree of multiple sites of left ankle and foot, subsequent encounter|Corrosion of third degree of multiple sites of left ankle and foot, subsequent encounter +C2873552|T037|AB|T25.792S|ICD10CM|Corrosion of 3rd deg mu sites of left ank/ft, sequela|Corrosion of 3rd deg mu sites of left ank/ft, sequela +C2873552|T037|PT|T25.792S|ICD10CM|Corrosion of third degree of multiple sites of left ankle and foot, sequela|Corrosion of third degree of multiple sites of left ankle and foot, sequela +C2873553|T037|AB|T25.799|ICD10CM|Corrosion of 3rd deg mu sites of unsp ankle and foot|Corrosion of 3rd deg mu sites of unsp ankle and foot +C2873553|T037|HT|T25.799|ICD10CM|Corrosion of third degree of multiple sites of unspecified ankle and foot|Corrosion of third degree of multiple sites of unspecified ankle and foot +C2873554|T037|AB|T25.799A|ICD10CM|Corrosion of 3rd deg mu sites of unsp ankle and foot, init|Corrosion of 3rd deg mu sites of unsp ankle and foot, init +C2873554|T037|PT|T25.799A|ICD10CM|Corrosion of third degree of multiple sites of unspecified ankle and foot, initial encounter|Corrosion of third degree of multiple sites of unspecified ankle and foot, initial encounter +C2873555|T037|AB|T25.799D|ICD10CM|Corrosion of 3rd deg mu sites of unsp ankle and foot, subs|Corrosion of 3rd deg mu sites of unsp ankle and foot, subs +C2873555|T037|PT|T25.799D|ICD10CM|Corrosion of third degree of multiple sites of unspecified ankle and foot, subsequent encounter|Corrosion of third degree of multiple sites of unspecified ankle and foot, subsequent encounter +C2873556|T037|AB|T25.799S|ICD10CM|Corrosion of 3rd deg mu sites of unsp ank/ft, sequela|Corrosion of 3rd deg mu sites of unsp ank/ft, sequela +C2873556|T037|PT|T25.799S|ICD10CM|Corrosion of third degree of multiple sites of unspecified ankle and foot, sequela|Corrosion of third degree of multiple sites of unspecified ankle and foot, sequela +C2911661|T037|AB|T26|ICD10CM|Burn and corrosion confined to eye and adnexa|Burn and corrosion confined to eye and adnexa +C2911661|T037|HT|T26|ICD10CM|Burn and corrosion confined to eye and adnexa|Burn and corrosion confined to eye and adnexa +C2911661|T037|HT|T26|ICD10|Burn and corrosion confined to eye and adnexa|Burn and corrosion confined to eye and adnexa +C0694462|T037|HT|T26-T28|ICD10CM|Burns and corrosions confined to eye and internal organs (T26-T28)|Burns and corrosions confined to eye and internal organs (T26-T28) +C0694462|T037|HT|T26-T28.9|ICD10|Burns and corrosions confined to eye and internal organs|Burns and corrosions confined to eye and internal organs +C0496056|T037|HT|T26.0|ICD10CM|Burn of eyelid and periocular area|Burn of eyelid and periocular area +C0496056|T037|AB|T26.0|ICD10CM|Burn of eyelid and periocular area|Burn of eyelid and periocular area +C0496056|T037|PT|T26.0|ICD10|Burn of eyelid and periocular area|Burn of eyelid and periocular area +C2873557|T037|AB|T26.00|ICD10CM|Burn of unspecified eyelid and periocular area|Burn of unspecified eyelid and periocular area +C2873557|T037|HT|T26.00|ICD10CM|Burn of unspecified eyelid and periocular area|Burn of unspecified eyelid and periocular area +C2976883|T037|AB|T26.00XA|ICD10CM|Burn of unspecified eyelid and periocular area, init encntr|Burn of unspecified eyelid and periocular area, init encntr +C2976883|T037|PT|T26.00XA|ICD10CM|Burn of unspecified eyelid and periocular area, initial encounter|Burn of unspecified eyelid and periocular area, initial encounter +C2976884|T037|AB|T26.00XD|ICD10CM|Burn of unspecified eyelid and periocular area, subs encntr|Burn of unspecified eyelid and periocular area, subs encntr +C2976884|T037|PT|T26.00XD|ICD10CM|Burn of unspecified eyelid and periocular area, subsequent encounter|Burn of unspecified eyelid and periocular area, subsequent encounter +C2976885|T037|PT|T26.00XS|ICD10CM|Burn of unspecified eyelid and periocular area, sequela|Burn of unspecified eyelid and periocular area, sequela +C2976885|T037|AB|T26.00XS|ICD10CM|Burn of unspecified eyelid and periocular area, sequela|Burn of unspecified eyelid and periocular area, sequela +C2873561|T037|AB|T26.01|ICD10CM|Burn of right eyelid and periocular area|Burn of right eyelid and periocular area +C2873561|T037|HT|T26.01|ICD10CM|Burn of right eyelid and periocular area|Burn of right eyelid and periocular area +C2873562|T037|PT|T26.01XA|ICD10CM|Burn of right eyelid and periocular area, initial encounter|Burn of right eyelid and periocular area, initial encounter +C2873562|T037|AB|T26.01XA|ICD10CM|Burn of right eyelid and periocular area, initial encounter|Burn of right eyelid and periocular area, initial encounter +C2873563|T037|AB|T26.01XD|ICD10CM|Burn of right eyelid and periocular area, subs encntr|Burn of right eyelid and periocular area, subs encntr +C2873563|T037|PT|T26.01XD|ICD10CM|Burn of right eyelid and periocular area, subsequent encounter|Burn of right eyelid and periocular area, subsequent encounter +C2873564|T037|PT|T26.01XS|ICD10CM|Burn of right eyelid and periocular area, sequela|Burn of right eyelid and periocular area, sequela +C2873564|T037|AB|T26.01XS|ICD10CM|Burn of right eyelid and periocular area, sequela|Burn of right eyelid and periocular area, sequela +C2873565|T037|AB|T26.02|ICD10CM|Burn of left eyelid and periocular area|Burn of left eyelid and periocular area +C2873565|T037|HT|T26.02|ICD10CM|Burn of left eyelid and periocular area|Burn of left eyelid and periocular area +C2873566|T037|PT|T26.02XA|ICD10CM|Burn of left eyelid and periocular area, initial encounter|Burn of left eyelid and periocular area, initial encounter +C2873566|T037|AB|T26.02XA|ICD10CM|Burn of left eyelid and periocular area, initial encounter|Burn of left eyelid and periocular area, initial encounter +C2873567|T037|AB|T26.02XD|ICD10CM|Burn of left eyelid and periocular area, subs encntr|Burn of left eyelid and periocular area, subs encntr +C2873567|T037|PT|T26.02XD|ICD10CM|Burn of left eyelid and periocular area, subsequent encounter|Burn of left eyelid and periocular area, subsequent encounter +C2873568|T037|PT|T26.02XS|ICD10CM|Burn of left eyelid and periocular area, sequela|Burn of left eyelid and periocular area, sequela +C2873568|T037|AB|T26.02XS|ICD10CM|Burn of left eyelid and periocular area, sequela|Burn of left eyelid and periocular area, sequela +C0496057|T037|PT|T26.1|ICD10|Burn of cornea and conjunctival sac|Burn of cornea and conjunctival sac +C0496057|T037|HT|T26.1|ICD10CM|Burn of cornea and conjunctival sac|Burn of cornea and conjunctival sac +C0496057|T037|AB|T26.1|ICD10CM|Burn of cornea and conjunctival sac|Burn of cornea and conjunctival sac +C2873569|T037|AB|T26.10|ICD10CM|Burn of cornea and conjunctival sac, unspecified eye|Burn of cornea and conjunctival sac, unspecified eye +C2873569|T037|HT|T26.10|ICD10CM|Burn of cornea and conjunctival sac, unspecified eye|Burn of cornea and conjunctival sac, unspecified eye +C2976886|T037|AB|T26.10XA|ICD10CM|Burn of cornea and conjunctival sac, unsp eye, init encntr|Burn of cornea and conjunctival sac, unsp eye, init encntr +C2976886|T037|PT|T26.10XA|ICD10CM|Burn of cornea and conjunctival sac, unspecified eye, initial encounter|Burn of cornea and conjunctival sac, unspecified eye, initial encounter +C2976887|T037|AB|T26.10XD|ICD10CM|Burn of cornea and conjunctival sac, unsp eye, subs encntr|Burn of cornea and conjunctival sac, unsp eye, subs encntr +C2976887|T037|PT|T26.10XD|ICD10CM|Burn of cornea and conjunctival sac, unspecified eye, subsequent encounter|Burn of cornea and conjunctival sac, unspecified eye, subsequent encounter +C2976888|T037|AB|T26.10XS|ICD10CM|Burn of cornea and conjunctival sac, unsp eye, sequela|Burn of cornea and conjunctival sac, unsp eye, sequela +C2976888|T037|PT|T26.10XS|ICD10CM|Burn of cornea and conjunctival sac, unspecified eye, sequela|Burn of cornea and conjunctival sac, unspecified eye, sequela +C2873573|T037|AB|T26.11|ICD10CM|Burn of cornea and conjunctival sac, right eye|Burn of cornea and conjunctival sac, right eye +C2873573|T037|HT|T26.11|ICD10CM|Burn of cornea and conjunctival sac, right eye|Burn of cornea and conjunctival sac, right eye +C2873574|T037|AB|T26.11XA|ICD10CM|Burn of cornea and conjunctival sac, right eye, init encntr|Burn of cornea and conjunctival sac, right eye, init encntr +C2873574|T037|PT|T26.11XA|ICD10CM|Burn of cornea and conjunctival sac, right eye, initial encounter|Burn of cornea and conjunctival sac, right eye, initial encounter +C2873575|T037|AB|T26.11XD|ICD10CM|Burn of cornea and conjunctival sac, right eye, subs encntr|Burn of cornea and conjunctival sac, right eye, subs encntr +C2873575|T037|PT|T26.11XD|ICD10CM|Burn of cornea and conjunctival sac, right eye, subsequent encounter|Burn of cornea and conjunctival sac, right eye, subsequent encounter +C2873576|T037|AB|T26.11XS|ICD10CM|Burn of cornea and conjunctival sac, right eye, sequela|Burn of cornea and conjunctival sac, right eye, sequela +C2873576|T037|PT|T26.11XS|ICD10CM|Burn of cornea and conjunctival sac, right eye, sequela|Burn of cornea and conjunctival sac, right eye, sequela +C2873577|T037|AB|T26.12|ICD10CM|Burn of cornea and conjunctival sac, left eye|Burn of cornea and conjunctival sac, left eye +C2873577|T037|HT|T26.12|ICD10CM|Burn of cornea and conjunctival sac, left eye|Burn of cornea and conjunctival sac, left eye +C2873578|T037|AB|T26.12XA|ICD10CM|Burn of cornea and conjunctival sac, left eye, init encntr|Burn of cornea and conjunctival sac, left eye, init encntr +C2873578|T037|PT|T26.12XA|ICD10CM|Burn of cornea and conjunctival sac, left eye, initial encounter|Burn of cornea and conjunctival sac, left eye, initial encounter +C2873579|T037|AB|T26.12XD|ICD10CM|Burn of cornea and conjunctival sac, left eye, subs encntr|Burn of cornea and conjunctival sac, left eye, subs encntr +C2873579|T037|PT|T26.12XD|ICD10CM|Burn of cornea and conjunctival sac, left eye, subsequent encounter|Burn of cornea and conjunctival sac, left eye, subsequent encounter +C2873580|T037|PT|T26.12XS|ICD10CM|Burn of cornea and conjunctival sac, left eye, sequela|Burn of cornea and conjunctival sac, left eye, sequela +C2873580|T037|AB|T26.12XS|ICD10CM|Burn of cornea and conjunctival sac, left eye, sequela|Burn of cornea and conjunctival sac, left eye, sequela +C0161033|T037|HT|T26.2|ICD10CM|Burn with resulting rupture and destruction of eyeball|Burn with resulting rupture and destruction of eyeball +C0161033|T037|AB|T26.2|ICD10CM|Burn with resulting rupture and destruction of eyeball|Burn with resulting rupture and destruction of eyeball +C0161033|T037|PT|T26.2|ICD10|Burn with resulting rupture and destruction of eyeball|Burn with resulting rupture and destruction of eyeball +C2873581|T037|AB|T26.20|ICD10CM|Burn with resulting rupture and destruction of unsp eyeball|Burn with resulting rupture and destruction of unsp eyeball +C2873581|T037|HT|T26.20|ICD10CM|Burn with resulting rupture and destruction of unspecified eyeball|Burn with resulting rupture and destruction of unspecified eyeball +C2976889|T037|AB|T26.20XA|ICD10CM|Burn w resulting rupture and dest of unsp eyeball, init|Burn w resulting rupture and dest of unsp eyeball, init +C2976889|T037|PT|T26.20XA|ICD10CM|Burn with resulting rupture and destruction of unspecified eyeball, initial encounter|Burn with resulting rupture and destruction of unspecified eyeball, initial encounter +C2976890|T037|AB|T26.20XD|ICD10CM|Burn w resulting rupture and dest of unsp eyeball, subs|Burn w resulting rupture and dest of unsp eyeball, subs +C2976890|T037|PT|T26.20XD|ICD10CM|Burn with resulting rupture and destruction of unspecified eyeball, subsequent encounter|Burn with resulting rupture and destruction of unspecified eyeball, subsequent encounter +C2976891|T037|AB|T26.20XS|ICD10CM|Burn w resulting rupture and dest of unsp eyeball, sequela|Burn w resulting rupture and dest of unsp eyeball, sequela +C2976891|T037|PT|T26.20XS|ICD10CM|Burn with resulting rupture and destruction of unspecified eyeball, sequela|Burn with resulting rupture and destruction of unspecified eyeball, sequela +C2873585|T037|AB|T26.21|ICD10CM|Burn with resulting rupture and destruction of right eyeball|Burn with resulting rupture and destruction of right eyeball +C2873585|T037|HT|T26.21|ICD10CM|Burn with resulting rupture and destruction of right eyeball|Burn with resulting rupture and destruction of right eyeball +C2873586|T037|AB|T26.21XA|ICD10CM|Burn w resulting rupture and dest of right eyeball, init|Burn w resulting rupture and dest of right eyeball, init +C2873586|T037|PT|T26.21XA|ICD10CM|Burn with resulting rupture and destruction of right eyeball, initial encounter|Burn with resulting rupture and destruction of right eyeball, initial encounter +C2873587|T037|AB|T26.21XD|ICD10CM|Burn w resulting rupture and dest of right eyeball, subs|Burn w resulting rupture and dest of right eyeball, subs +C2873587|T037|PT|T26.21XD|ICD10CM|Burn with resulting rupture and destruction of right eyeball, subsequent encounter|Burn with resulting rupture and destruction of right eyeball, subsequent encounter +C2873588|T037|AB|T26.21XS|ICD10CM|Burn w resulting rupture and dest of right eyeball, sequela|Burn w resulting rupture and dest of right eyeball, sequela +C2873588|T037|PT|T26.21XS|ICD10CM|Burn with resulting rupture and destruction of right eyeball, sequela|Burn with resulting rupture and destruction of right eyeball, sequela +C2873589|T037|AB|T26.22|ICD10CM|Burn with resulting rupture and destruction of left eyeball|Burn with resulting rupture and destruction of left eyeball +C2873589|T037|HT|T26.22|ICD10CM|Burn with resulting rupture and destruction of left eyeball|Burn with resulting rupture and destruction of left eyeball +C2873590|T037|AB|T26.22XA|ICD10CM|Burn w resulting rupture and dest of left eyeball, init|Burn w resulting rupture and dest of left eyeball, init +C2873590|T037|PT|T26.22XA|ICD10CM|Burn with resulting rupture and destruction of left eyeball, initial encounter|Burn with resulting rupture and destruction of left eyeball, initial encounter +C2873591|T037|AB|T26.22XD|ICD10CM|Burn w resulting rupture and dest of left eyeball, subs|Burn w resulting rupture and dest of left eyeball, subs +C2873591|T037|PT|T26.22XD|ICD10CM|Burn with resulting rupture and destruction of left eyeball, subsequent encounter|Burn with resulting rupture and destruction of left eyeball, subsequent encounter +C2873592|T037|AB|T26.22XS|ICD10CM|Burn w resulting rupture and dest of left eyeball, sequela|Burn w resulting rupture and dest of left eyeball, sequela +C2873592|T037|PT|T26.22XS|ICD10CM|Burn with resulting rupture and destruction of left eyeball, sequela|Burn with resulting rupture and destruction of left eyeball, sequela +C0478404|T037|PT|T26.3|ICD10|Burn of other parts of eye and adnexa|Burn of other parts of eye and adnexa +C0478404|T037|AB|T26.3|ICD10CM|Burns of other specified parts of eye and adnexa|Burns of other specified parts of eye and adnexa +C0478404|T037|HT|T26.3|ICD10CM|Burns of other specified parts of eye and adnexa|Burns of other specified parts of eye and adnexa +C2873593|T037|AB|T26.30|ICD10CM|Burns of other specified parts of unspecified eye and adnexa|Burns of other specified parts of unspecified eye and adnexa +C2873593|T037|HT|T26.30|ICD10CM|Burns of other specified parts of unspecified eye and adnexa|Burns of other specified parts of unspecified eye and adnexa +C2976892|T037|AB|T26.30XA|ICD10CM|Burns of oth parts of unsp eye and adnexa, init encntr|Burns of oth parts of unsp eye and adnexa, init encntr +C2976892|T037|PT|T26.30XA|ICD10CM|Burns of other specified parts of unspecified eye and adnexa, initial encounter|Burns of other specified parts of unspecified eye and adnexa, initial encounter +C2976893|T037|AB|T26.30XD|ICD10CM|Burns of oth parts of unsp eye and adnexa, subs encntr|Burns of oth parts of unsp eye and adnexa, subs encntr +C2976893|T037|PT|T26.30XD|ICD10CM|Burns of other specified parts of unspecified eye and adnexa, subsequent encounter|Burns of other specified parts of unspecified eye and adnexa, subsequent encounter +C2976894|T037|AB|T26.30XS|ICD10CM|Burns of oth parts of unspecified eye and adnexa, sequela|Burns of oth parts of unspecified eye and adnexa, sequela +C2976894|T037|PT|T26.30XS|ICD10CM|Burns of other specified parts of unspecified eye and adnexa, sequela|Burns of other specified parts of unspecified eye and adnexa, sequela +C2873597|T037|AB|T26.31|ICD10CM|Burns of other specified parts of right eye and adnexa|Burns of other specified parts of right eye and adnexa +C2873597|T037|HT|T26.31|ICD10CM|Burns of other specified parts of right eye and adnexa|Burns of other specified parts of right eye and adnexa +C2976895|T037|AB|T26.31XA|ICD10CM|Burns of oth parts of right eye and adnexa, init encntr|Burns of oth parts of right eye and adnexa, init encntr +C2976895|T037|PT|T26.31XA|ICD10CM|Burns of other specified parts of right eye and adnexa, initial encounter|Burns of other specified parts of right eye and adnexa, initial encounter +C2976896|T037|AB|T26.31XD|ICD10CM|Burns of oth parts of right eye and adnexa, subs encntr|Burns of oth parts of right eye and adnexa, subs encntr +C2976896|T037|PT|T26.31XD|ICD10CM|Burns of other specified parts of right eye and adnexa, subsequent encounter|Burns of other specified parts of right eye and adnexa, subsequent encounter +C2976897|T037|AB|T26.31XS|ICD10CM|Burns of oth parts of right eye and adnexa, sequela|Burns of oth parts of right eye and adnexa, sequela +C2976897|T037|PT|T26.31XS|ICD10CM|Burns of other specified parts of right eye and adnexa, sequela|Burns of other specified parts of right eye and adnexa, sequela +C2873601|T037|AB|T26.32|ICD10CM|Burns of other specified parts of left eye and adnexa|Burns of other specified parts of left eye and adnexa +C2873601|T037|HT|T26.32|ICD10CM|Burns of other specified parts of left eye and adnexa|Burns of other specified parts of left eye and adnexa +C2976898|T037|AB|T26.32XA|ICD10CM|Burns of oth parts of left eye and adnexa, init encntr|Burns of oth parts of left eye and adnexa, init encntr +C2976898|T037|PT|T26.32XA|ICD10CM|Burns of other specified parts of left eye and adnexa, initial encounter|Burns of other specified parts of left eye and adnexa, initial encounter +C2976899|T037|AB|T26.32XD|ICD10CM|Burns of oth parts of left eye and adnexa, subs encntr|Burns of oth parts of left eye and adnexa, subs encntr +C2976899|T037|PT|T26.32XD|ICD10CM|Burns of other specified parts of left eye and adnexa, subsequent encounter|Burns of other specified parts of left eye and adnexa, subsequent encounter +C2976900|T037|AB|T26.32XS|ICD10CM|Burns of oth parts of left eye and adnexa, sequela|Burns of oth parts of left eye and adnexa, sequela +C2976900|T037|PT|T26.32XS|ICD10CM|Burns of other specified parts of left eye and adnexa, sequela|Burns of other specified parts of left eye and adnexa, sequela +C0273934|T037|HT|T26.4|ICD10CM|Burn of eye and adnexa, part unspecified|Burn of eye and adnexa, part unspecified +C0273934|T037|AB|T26.4|ICD10CM|Burn of eye and adnexa, part unspecified|Burn of eye and adnexa, part unspecified +C0273934|T037|PT|T26.4|ICD10|Burn of eye and adnexa, part unspecified|Burn of eye and adnexa, part unspecified +C2873605|T037|AB|T26.40|ICD10CM|Burn of unspecified eye and adnexa, part unspecified|Burn of unspecified eye and adnexa, part unspecified +C2873605|T037|HT|T26.40|ICD10CM|Burn of unspecified eye and adnexa, part unspecified|Burn of unspecified eye and adnexa, part unspecified +C2976901|T037|AB|T26.40XA|ICD10CM|Burn of unsp eye and adnexa, part unspecified, init encntr|Burn of unsp eye and adnexa, part unspecified, init encntr +C2976901|T037|PT|T26.40XA|ICD10CM|Burn of unspecified eye and adnexa, part unspecified, initial encounter|Burn of unspecified eye and adnexa, part unspecified, initial encounter +C2976902|T037|AB|T26.40XD|ICD10CM|Burn of unsp eye and adnexa, part unspecified, subs encntr|Burn of unsp eye and adnexa, part unspecified, subs encntr +C2976902|T037|PT|T26.40XD|ICD10CM|Burn of unspecified eye and adnexa, part unspecified, subsequent encounter|Burn of unspecified eye and adnexa, part unspecified, subsequent encounter +C2976903|T037|AB|T26.40XS|ICD10CM|Burn of unsp eye and adnexa, part unspecified, sequela|Burn of unsp eye and adnexa, part unspecified, sequela +C2976903|T037|PT|T26.40XS|ICD10CM|Burn of unspecified eye and adnexa, part unspecified, sequela|Burn of unspecified eye and adnexa, part unspecified, sequela +C2873609|T037|AB|T26.41|ICD10CM|Burn of right eye and adnexa, part unspecified|Burn of right eye and adnexa, part unspecified +C2873609|T037|HT|T26.41|ICD10CM|Burn of right eye and adnexa, part unspecified|Burn of right eye and adnexa, part unspecified +C2873610|T037|AB|T26.41XA|ICD10CM|Burn of right eye and adnexa, part unspecified, init encntr|Burn of right eye and adnexa, part unspecified, init encntr +C2873610|T037|PT|T26.41XA|ICD10CM|Burn of right eye and adnexa, part unspecified, initial encounter|Burn of right eye and adnexa, part unspecified, initial encounter +C2873611|T037|AB|T26.41XD|ICD10CM|Burn of right eye and adnexa, part unspecified, subs encntr|Burn of right eye and adnexa, part unspecified, subs encntr +C2873611|T037|PT|T26.41XD|ICD10CM|Burn of right eye and adnexa, part unspecified, subsequent encounter|Burn of right eye and adnexa, part unspecified, subsequent encounter +C2873612|T037|AB|T26.41XS|ICD10CM|Burn of right eye and adnexa, part unspecified, sequela|Burn of right eye and adnexa, part unspecified, sequela +C2873612|T037|PT|T26.41XS|ICD10CM|Burn of right eye and adnexa, part unspecified, sequela|Burn of right eye and adnexa, part unspecified, sequela +C2873613|T037|AB|T26.42|ICD10CM|Burn of left eye and adnexa, part unspecified|Burn of left eye and adnexa, part unspecified +C2873613|T037|HT|T26.42|ICD10CM|Burn of left eye and adnexa, part unspecified|Burn of left eye and adnexa, part unspecified +C2873614|T037|AB|T26.42XA|ICD10CM|Burn of left eye and adnexa, part unspecified, init encntr|Burn of left eye and adnexa, part unspecified, init encntr +C2873614|T037|PT|T26.42XA|ICD10CM|Burn of left eye and adnexa, part unspecified, initial encounter|Burn of left eye and adnexa, part unspecified, initial encounter +C2873615|T037|AB|T26.42XD|ICD10CM|Burn of left eye and adnexa, part unspecified, subs encntr|Burn of left eye and adnexa, part unspecified, subs encntr +C2873615|T037|PT|T26.42XD|ICD10CM|Burn of left eye and adnexa, part unspecified, subsequent encounter|Burn of left eye and adnexa, part unspecified, subsequent encounter +C2873616|T037|PT|T26.42XS|ICD10CM|Burn of left eye and adnexa, part unspecified, sequela|Burn of left eye and adnexa, part unspecified, sequela +C2873616|T037|AB|T26.42XS|ICD10CM|Burn of left eye and adnexa, part unspecified, sequela|Burn of left eye and adnexa, part unspecified, sequela +C2919012|T037|HT|T26.5|ICD10CM|Corrosion of eyelid and periocular area|Corrosion of eyelid and periocular area +C2919012|T037|AB|T26.5|ICD10CM|Corrosion of eyelid and periocular area|Corrosion of eyelid and periocular area +C2919012|T037|PT|T26.5|ICD10|Corrosion of eyelid and periocular area|Corrosion of eyelid and periocular area +C2873617|T037|AB|T26.50|ICD10CM|Corrosion of unspecified eyelid and periocular area|Corrosion of unspecified eyelid and periocular area +C2873617|T037|HT|T26.50|ICD10CM|Corrosion of unspecified eyelid and periocular area|Corrosion of unspecified eyelid and periocular area +C2976904|T037|AB|T26.50XA|ICD10CM|Corrosion of unsp eyelid and periocular area, init encntr|Corrosion of unsp eyelid and periocular area, init encntr +C2976904|T037|PT|T26.50XA|ICD10CM|Corrosion of unspecified eyelid and periocular area, initial encounter|Corrosion of unspecified eyelid and periocular area, initial encounter +C2976905|T037|AB|T26.50XD|ICD10CM|Corrosion of unsp eyelid and periocular area, subs encntr|Corrosion of unsp eyelid and periocular area, subs encntr +C2976905|T037|PT|T26.50XD|ICD10CM|Corrosion of unspecified eyelid and periocular area, subsequent encounter|Corrosion of unspecified eyelid and periocular area, subsequent encounter +C2976906|T037|AB|T26.50XS|ICD10CM|Corrosion of unspecified eyelid and periocular area, sequela|Corrosion of unspecified eyelid and periocular area, sequela +C2976906|T037|PT|T26.50XS|ICD10CM|Corrosion of unspecified eyelid and periocular area, sequela|Corrosion of unspecified eyelid and periocular area, sequela +C2873621|T037|AB|T26.51|ICD10CM|Corrosion of right eyelid and periocular area|Corrosion of right eyelid and periocular area +C2873621|T037|HT|T26.51|ICD10CM|Corrosion of right eyelid and periocular area|Corrosion of right eyelid and periocular area +C2976907|T037|AB|T26.51XA|ICD10CM|Corrosion of right eyelid and periocular area, init encntr|Corrosion of right eyelid and periocular area, init encntr +C2976907|T037|PT|T26.51XA|ICD10CM|Corrosion of right eyelid and periocular area, initial encounter|Corrosion of right eyelid and periocular area, initial encounter +C2976908|T037|AB|T26.51XD|ICD10CM|Corrosion of right eyelid and periocular area, subs encntr|Corrosion of right eyelid and periocular area, subs encntr +C2976908|T037|PT|T26.51XD|ICD10CM|Corrosion of right eyelid and periocular area, subsequent encounter|Corrosion of right eyelid and periocular area, subsequent encounter +C2976909|T037|PT|T26.51XS|ICD10CM|Corrosion of right eyelid and periocular area, sequela|Corrosion of right eyelid and periocular area, sequela +C2976909|T037|AB|T26.51XS|ICD10CM|Corrosion of right eyelid and periocular area, sequela|Corrosion of right eyelid and periocular area, sequela +C2873625|T037|AB|T26.52|ICD10CM|Corrosion of left eyelid and periocular area|Corrosion of left eyelid and periocular area +C2873625|T037|HT|T26.52|ICD10CM|Corrosion of left eyelid and periocular area|Corrosion of left eyelid and periocular area +C2976910|T037|AB|T26.52XA|ICD10CM|Corrosion of left eyelid and periocular area, init encntr|Corrosion of left eyelid and periocular area, init encntr +C2976910|T037|PT|T26.52XA|ICD10CM|Corrosion of left eyelid and periocular area, initial encounter|Corrosion of left eyelid and periocular area, initial encounter +C2976911|T037|AB|T26.52XD|ICD10CM|Corrosion of left eyelid and periocular area, subs encntr|Corrosion of left eyelid and periocular area, subs encntr +C2976911|T037|PT|T26.52XD|ICD10CM|Corrosion of left eyelid and periocular area, subsequent encounter|Corrosion of left eyelid and periocular area, subsequent encounter +C2976912|T037|PT|T26.52XS|ICD10CM|Corrosion of left eyelid and periocular area, sequela|Corrosion of left eyelid and periocular area, sequela +C2976912|T037|AB|T26.52XS|ICD10CM|Corrosion of left eyelid and periocular area, sequela|Corrosion of left eyelid and periocular area, sequela +C0496060|T037|HT|T26.6|ICD10CM|Corrosion of cornea and conjunctival sac|Corrosion of cornea and conjunctival sac +C0496060|T037|AB|T26.6|ICD10CM|Corrosion of cornea and conjunctival sac|Corrosion of cornea and conjunctival sac +C0496060|T037|PT|T26.6|ICD10|Corrosion of cornea and conjunctival sac|Corrosion of cornea and conjunctival sac +C2873629|T037|AB|T26.60|ICD10CM|Corrosion of cornea and conjunctival sac, unspecified eye|Corrosion of cornea and conjunctival sac, unspecified eye +C2873629|T037|HT|T26.60|ICD10CM|Corrosion of cornea and conjunctival sac, unspecified eye|Corrosion of cornea and conjunctival sac, unspecified eye +C2976913|T037|AB|T26.60XA|ICD10CM|Corrosion of cornea and conjunctival sac, unsp eye, init|Corrosion of cornea and conjunctival sac, unsp eye, init +C2976913|T037|PT|T26.60XA|ICD10CM|Corrosion of cornea and conjunctival sac, unspecified eye, initial encounter|Corrosion of cornea and conjunctival sac, unspecified eye, initial encounter +C2976914|T037|AB|T26.60XD|ICD10CM|Corrosion of cornea and conjunctival sac, unsp eye, subs|Corrosion of cornea and conjunctival sac, unsp eye, subs +C2976914|T037|PT|T26.60XD|ICD10CM|Corrosion of cornea and conjunctival sac, unspecified eye, subsequent encounter|Corrosion of cornea and conjunctival sac, unspecified eye, subsequent encounter +C2976915|T037|AB|T26.60XS|ICD10CM|Corrosion of cornea and conjunctival sac, unsp eye, sequela|Corrosion of cornea and conjunctival sac, unsp eye, sequela +C2976915|T037|PT|T26.60XS|ICD10CM|Corrosion of cornea and conjunctival sac, unspecified eye, sequela|Corrosion of cornea and conjunctival sac, unspecified eye, sequela +C2873633|T037|AB|T26.61|ICD10CM|Corrosion of cornea and conjunctival sac, right eye|Corrosion of cornea and conjunctival sac, right eye +C2873633|T037|HT|T26.61|ICD10CM|Corrosion of cornea and conjunctival sac, right eye|Corrosion of cornea and conjunctival sac, right eye +C2873634|T037|AB|T26.61XA|ICD10CM|Corrosion of cornea and conjunctival sac, right eye, init|Corrosion of cornea and conjunctival sac, right eye, init +C2873634|T037|PT|T26.61XA|ICD10CM|Corrosion of cornea and conjunctival sac, right eye, initial encounter|Corrosion of cornea and conjunctival sac, right eye, initial encounter +C2873635|T037|AB|T26.61XD|ICD10CM|Corrosion of cornea and conjunctival sac, right eye, subs|Corrosion of cornea and conjunctival sac, right eye, subs +C2873635|T037|PT|T26.61XD|ICD10CM|Corrosion of cornea and conjunctival sac, right eye, subsequent encounter|Corrosion of cornea and conjunctival sac, right eye, subsequent encounter +C2873636|T037|AB|T26.61XS|ICD10CM|Corrosion of cornea and conjunctival sac, right eye, sequela|Corrosion of cornea and conjunctival sac, right eye, sequela +C2873636|T037|PT|T26.61XS|ICD10CM|Corrosion of cornea and conjunctival sac, right eye, sequela|Corrosion of cornea and conjunctival sac, right eye, sequela +C2873637|T037|AB|T26.62|ICD10CM|Corrosion of cornea and conjunctival sac, left eye|Corrosion of cornea and conjunctival sac, left eye +C2873637|T037|HT|T26.62|ICD10CM|Corrosion of cornea and conjunctival sac, left eye|Corrosion of cornea and conjunctival sac, left eye +C2873638|T037|AB|T26.62XA|ICD10CM|Corrosion of cornea and conjunctival sac, left eye, init|Corrosion of cornea and conjunctival sac, left eye, init +C2873638|T037|PT|T26.62XA|ICD10CM|Corrosion of cornea and conjunctival sac, left eye, initial encounter|Corrosion of cornea and conjunctival sac, left eye, initial encounter +C2873639|T037|AB|T26.62XD|ICD10CM|Corrosion of cornea and conjunctival sac, left eye, subs|Corrosion of cornea and conjunctival sac, left eye, subs +C2873639|T037|PT|T26.62XD|ICD10CM|Corrosion of cornea and conjunctival sac, left eye, subsequent encounter|Corrosion of cornea and conjunctival sac, left eye, subsequent encounter +C2873640|T037|PT|T26.62XS|ICD10CM|Corrosion of cornea and conjunctival sac, left eye, sequela|Corrosion of cornea and conjunctival sac, left eye, sequela +C2873640|T037|AB|T26.62XS|ICD10CM|Corrosion of cornea and conjunctival sac, left eye, sequela|Corrosion of cornea and conjunctival sac, left eye, sequela +C0348788|T037|PT|T26.7|ICD10|Corrosion with resulting rupture and destruction of eyeball|Corrosion with resulting rupture and destruction of eyeball +C0348788|T037|HT|T26.7|ICD10CM|Corrosion with resulting rupture and destruction of eyeball|Corrosion with resulting rupture and destruction of eyeball +C0348788|T037|AB|T26.7|ICD10CM|Corrosion with resulting rupture and destruction of eyeball|Corrosion with resulting rupture and destruction of eyeball +C2873641|T037|AB|T26.70|ICD10CM|Corrosion w resulting rupture and dest of unsp eyeball|Corrosion w resulting rupture and dest of unsp eyeball +C2873641|T037|HT|T26.70|ICD10CM|Corrosion with resulting rupture and destruction of unspecified eyeball|Corrosion with resulting rupture and destruction of unspecified eyeball +C2976916|T037|AB|T26.70XA|ICD10CM|Corrosion w resulting rupture and dest of unsp eyeball, init|Corrosion w resulting rupture and dest of unsp eyeball, init +C2976916|T037|PT|T26.70XA|ICD10CM|Corrosion with resulting rupture and destruction of unspecified eyeball, initial encounter|Corrosion with resulting rupture and destruction of unspecified eyeball, initial encounter +C2976917|T037|AB|T26.70XD|ICD10CM|Corrosion w resulting rupture and dest of unsp eyeball, subs|Corrosion w resulting rupture and dest of unsp eyeball, subs +C2976917|T037|PT|T26.70XD|ICD10CM|Corrosion with resulting rupture and destruction of unspecified eyeball, subsequent encounter|Corrosion with resulting rupture and destruction of unspecified eyeball, subsequent encounter +C2976918|T037|AB|T26.70XS|ICD10CM|Corros w resulting rupture and dest of unsp eyeball, sequela|Corros w resulting rupture and dest of unsp eyeball, sequela +C2976918|T037|PT|T26.70XS|ICD10CM|Corrosion with resulting rupture and destruction of unspecified eyeball, sequela|Corrosion with resulting rupture and destruction of unspecified eyeball, sequela +C2873645|T037|AB|T26.71|ICD10CM|Corrosion w resulting rupture and dest of right eyeball|Corrosion w resulting rupture and dest of right eyeball +C2873645|T037|HT|T26.71|ICD10CM|Corrosion with resulting rupture and destruction of right eyeball|Corrosion with resulting rupture and destruction of right eyeball +C2873646|T037|AB|T26.71XA|ICD10CM|Corros w resulting rupture and dest of right eyeball, init|Corros w resulting rupture and dest of right eyeball, init +C2873646|T037|PT|T26.71XA|ICD10CM|Corrosion with resulting rupture and destruction of right eyeball, initial encounter|Corrosion with resulting rupture and destruction of right eyeball, initial encounter +C2873647|T037|AB|T26.71XD|ICD10CM|Corros w resulting rupture and dest of right eyeball, subs|Corros w resulting rupture and dest of right eyeball, subs +C2873647|T037|PT|T26.71XD|ICD10CM|Corrosion with resulting rupture and destruction of right eyeball, subsequent encounter|Corrosion with resulting rupture and destruction of right eyeball, subsequent encounter +C2873648|T037|AB|T26.71XS|ICD10CM|Corros w rslt rupture and dest of right eyeball, sequela|Corros w rslt rupture and dest of right eyeball, sequela +C2873648|T037|PT|T26.71XS|ICD10CM|Corrosion with resulting rupture and destruction of right eyeball, sequela|Corrosion with resulting rupture and destruction of right eyeball, sequela +C2873649|T037|AB|T26.72|ICD10CM|Corrosion w resulting rupture and dest of left eyeball|Corrosion w resulting rupture and dest of left eyeball +C2873649|T037|HT|T26.72|ICD10CM|Corrosion with resulting rupture and destruction of left eyeball|Corrosion with resulting rupture and destruction of left eyeball +C2873650|T037|AB|T26.72XA|ICD10CM|Corrosion w resulting rupture and dest of left eyeball, init|Corrosion w resulting rupture and dest of left eyeball, init +C2873650|T037|PT|T26.72XA|ICD10CM|Corrosion with resulting rupture and destruction of left eyeball, initial encounter|Corrosion with resulting rupture and destruction of left eyeball, initial encounter +C2873651|T037|AB|T26.72XD|ICD10CM|Corrosion w resulting rupture and dest of left eyeball, subs|Corrosion w resulting rupture and dest of left eyeball, subs +C2873651|T037|PT|T26.72XD|ICD10CM|Corrosion with resulting rupture and destruction of left eyeball, subsequent encounter|Corrosion with resulting rupture and destruction of left eyeball, subsequent encounter +C2873652|T037|AB|T26.72XS|ICD10CM|Corros w resulting rupture and dest of left eyeball, sequela|Corros w resulting rupture and dest of left eyeball, sequela +C2873652|T037|PT|T26.72XS|ICD10CM|Corrosion with resulting rupture and destruction of left eyeball, sequela|Corrosion with resulting rupture and destruction of left eyeball, sequela +C0478405|T037|PT|T26.8|ICD10|Corrosion of other parts of eye and adnexa|Corrosion of other parts of eye and adnexa +C0478405|T037|AB|T26.8|ICD10CM|Corrosions of other specified parts of eye and adnexa|Corrosions of other specified parts of eye and adnexa +C0478405|T037|HT|T26.8|ICD10CM|Corrosions of other specified parts of eye and adnexa|Corrosions of other specified parts of eye and adnexa +C2873653|T037|AB|T26.80|ICD10CM|Corrosions of oth parts of unspecified eye and adnexa|Corrosions of oth parts of unspecified eye and adnexa +C2873653|T037|HT|T26.80|ICD10CM|Corrosions of other specified parts of unspecified eye and adnexa|Corrosions of other specified parts of unspecified eye and adnexa +C2976919|T037|AB|T26.80XA|ICD10CM|Corrosions of oth parts of unsp eye and adnexa, init encntr|Corrosions of oth parts of unsp eye and adnexa, init encntr +C2976919|T037|PT|T26.80XA|ICD10CM|Corrosions of other specified parts of unspecified eye and adnexa, initial encounter|Corrosions of other specified parts of unspecified eye and adnexa, initial encounter +C2976920|T037|AB|T26.80XD|ICD10CM|Corrosions of oth parts of unsp eye and adnexa, subs encntr|Corrosions of oth parts of unsp eye and adnexa, subs encntr +C2976920|T037|PT|T26.80XD|ICD10CM|Corrosions of other specified parts of unspecified eye and adnexa, subsequent encounter|Corrosions of other specified parts of unspecified eye and adnexa, subsequent encounter +C2976921|T037|AB|T26.80XS|ICD10CM|Corrosions of oth parts of unsp eye and adnexa, sequela|Corrosions of oth parts of unsp eye and adnexa, sequela +C2976921|T037|PT|T26.80XS|ICD10CM|Corrosions of other specified parts of unspecified eye and adnexa, sequela|Corrosions of other specified parts of unspecified eye and adnexa, sequela +C2873657|T037|AB|T26.81|ICD10CM|Corrosions of other specified parts of right eye and adnexa|Corrosions of other specified parts of right eye and adnexa +C2873657|T037|HT|T26.81|ICD10CM|Corrosions of other specified parts of right eye and adnexa|Corrosions of other specified parts of right eye and adnexa +C2976922|T037|AB|T26.81XA|ICD10CM|Corrosions of oth parts of right eye and adnexa, init encntr|Corrosions of oth parts of right eye and adnexa, init encntr +C2976922|T037|PT|T26.81XA|ICD10CM|Corrosions of other specified parts of right eye and adnexa, initial encounter|Corrosions of other specified parts of right eye and adnexa, initial encounter +C2976923|T037|AB|T26.81XD|ICD10CM|Corrosions of oth parts of right eye and adnexa, subs encntr|Corrosions of oth parts of right eye and adnexa, subs encntr +C2976923|T037|PT|T26.81XD|ICD10CM|Corrosions of other specified parts of right eye and adnexa, subsequent encounter|Corrosions of other specified parts of right eye and adnexa, subsequent encounter +C2976924|T037|AB|T26.81XS|ICD10CM|Corrosions of oth parts of right eye and adnexa, sequela|Corrosions of oth parts of right eye and adnexa, sequela +C2976924|T037|PT|T26.81XS|ICD10CM|Corrosions of other specified parts of right eye and adnexa, sequela|Corrosions of other specified parts of right eye and adnexa, sequela +C2873661|T037|AB|T26.82|ICD10CM|Corrosions of other specified parts of left eye and adnexa|Corrosions of other specified parts of left eye and adnexa +C2873661|T037|HT|T26.82|ICD10CM|Corrosions of other specified parts of left eye and adnexa|Corrosions of other specified parts of left eye and adnexa +C2976925|T037|AB|T26.82XA|ICD10CM|Corrosions of oth parts of left eye and adnexa, init encntr|Corrosions of oth parts of left eye and adnexa, init encntr +C2976925|T037|PT|T26.82XA|ICD10CM|Corrosions of other specified parts of left eye and adnexa, initial encounter|Corrosions of other specified parts of left eye and adnexa, initial encounter +C2976926|T037|AB|T26.82XD|ICD10CM|Corrosions of oth parts of left eye and adnexa, subs encntr|Corrosions of oth parts of left eye and adnexa, subs encntr +C2976926|T037|PT|T26.82XD|ICD10CM|Corrosions of other specified parts of left eye and adnexa, subsequent encounter|Corrosions of other specified parts of left eye and adnexa, subsequent encounter +C2976927|T037|AB|T26.82XS|ICD10CM|Corrosions of oth parts of left eye and adnexa, sequela|Corrosions of oth parts of left eye and adnexa, sequela +C2976927|T037|PT|T26.82XS|ICD10CM|Corrosions of other specified parts of left eye and adnexa, sequela|Corrosions of other specified parts of left eye and adnexa, sequela +C0478416|T037|HT|T26.9|ICD10CM|Corrosion of eye and adnexa, part unspecified|Corrosion of eye and adnexa, part unspecified +C0478416|T037|AB|T26.9|ICD10CM|Corrosion of eye and adnexa, part unspecified|Corrosion of eye and adnexa, part unspecified +C0478416|T037|PT|T26.9|ICD10|Corrosion of eye and adnexa, part unspecified|Corrosion of eye and adnexa, part unspecified +C2873665|T037|AB|T26.90|ICD10CM|Corrosion of unspecified eye and adnexa, part unspecified|Corrosion of unspecified eye and adnexa, part unspecified +C2873665|T037|HT|T26.90|ICD10CM|Corrosion of unspecified eye and adnexa, part unspecified|Corrosion of unspecified eye and adnexa, part unspecified +C2976928|T037|AB|T26.90XA|ICD10CM|Corrosion of unsp eye and adnexa, part unsp, init encntr|Corrosion of unsp eye and adnexa, part unsp, init encntr +C2976928|T037|PT|T26.90XA|ICD10CM|Corrosion of unspecified eye and adnexa, part unspecified, initial encounter|Corrosion of unspecified eye and adnexa, part unspecified, initial encounter +C2976929|T037|AB|T26.90XD|ICD10CM|Corrosion of unsp eye and adnexa, part unsp, subs encntr|Corrosion of unsp eye and adnexa, part unsp, subs encntr +C2976929|T037|PT|T26.90XD|ICD10CM|Corrosion of unspecified eye and adnexa, part unspecified, subsequent encounter|Corrosion of unspecified eye and adnexa, part unspecified, subsequent encounter +C2976930|T037|AB|T26.90XS|ICD10CM|Corrosion of unsp eye and adnexa, part unspecified, sequela|Corrosion of unsp eye and adnexa, part unspecified, sequela +C2976930|T037|PT|T26.90XS|ICD10CM|Corrosion of unspecified eye and adnexa, part unspecified, sequela|Corrosion of unspecified eye and adnexa, part unspecified, sequela +C2873669|T037|AB|T26.91|ICD10CM|Corrosion of right eye and adnexa, part unspecified|Corrosion of right eye and adnexa, part unspecified +C2873669|T037|HT|T26.91|ICD10CM|Corrosion of right eye and adnexa, part unspecified|Corrosion of right eye and adnexa, part unspecified +C2873670|T037|AB|T26.91XA|ICD10CM|Corrosion of right eye and adnexa, part unsp, init encntr|Corrosion of right eye and adnexa, part unsp, init encntr +C2873670|T037|PT|T26.91XA|ICD10CM|Corrosion of right eye and adnexa, part unspecified, initial encounter|Corrosion of right eye and adnexa, part unspecified, initial encounter +C2873671|T037|AB|T26.91XD|ICD10CM|Corrosion of right eye and adnexa, part unsp, subs encntr|Corrosion of right eye and adnexa, part unsp, subs encntr +C2873671|T037|PT|T26.91XD|ICD10CM|Corrosion of right eye and adnexa, part unspecified, subsequent encounter|Corrosion of right eye and adnexa, part unspecified, subsequent encounter +C2873672|T037|AB|T26.91XS|ICD10CM|Corrosion of right eye and adnexa, part unspecified, sequela|Corrosion of right eye and adnexa, part unspecified, sequela +C2873672|T037|PT|T26.91XS|ICD10CM|Corrosion of right eye and adnexa, part unspecified, sequela|Corrosion of right eye and adnexa, part unspecified, sequela +C2873673|T037|AB|T26.92|ICD10CM|Corrosion of left eye and adnexa, part unspecified|Corrosion of left eye and adnexa, part unspecified +C2873673|T037|HT|T26.92|ICD10CM|Corrosion of left eye and adnexa, part unspecified|Corrosion of left eye and adnexa, part unspecified +C2873674|T037|AB|T26.92XA|ICD10CM|Corrosion of left eye and adnexa, part unsp, init encntr|Corrosion of left eye and adnexa, part unsp, init encntr +C2873674|T037|PT|T26.92XA|ICD10CM|Corrosion of left eye and adnexa, part unspecified, initial encounter|Corrosion of left eye and adnexa, part unspecified, initial encounter +C2873675|T037|AB|T26.92XD|ICD10CM|Corrosion of left eye and adnexa, part unsp, subs encntr|Corrosion of left eye and adnexa, part unsp, subs encntr +C2873675|T037|PT|T26.92XD|ICD10CM|Corrosion of left eye and adnexa, part unspecified, subsequent encounter|Corrosion of left eye and adnexa, part unspecified, subsequent encounter +C2873676|T037|PT|T26.92XS|ICD10CM|Corrosion of left eye and adnexa, part unspecified, sequela|Corrosion of left eye and adnexa, part unspecified, sequela +C2873676|T037|AB|T26.92XS|ICD10CM|Corrosion of left eye and adnexa, part unspecified, sequela|Corrosion of left eye and adnexa, part unspecified, sequela +C1306131|T037|HT|T27|ICD10|Burn and corrosion of respiratory tract|Burn and corrosion of respiratory tract +C1306131|T037|AB|T27|ICD10CM|Burn and corrosion of respiratory tract|Burn and corrosion of respiratory tract +C1306131|T037|HT|T27|ICD10CM|Burn and corrosion of respiratory tract|Burn and corrosion of respiratory tract +C0496062|T037|PT|T27.0|ICD10|Burn of larynx and trachea|Burn of larynx and trachea +C0496062|T037|HT|T27.0|ICD10CM|Burn of larynx and trachea|Burn of larynx and trachea +C0496062|T037|AB|T27.0|ICD10CM|Burn of larynx and trachea|Burn of larynx and trachea +C2873677|T037|PT|T27.0XXA|ICD10CM|Burn of larynx and trachea, initial encounter|Burn of larynx and trachea, initial encounter +C2873677|T037|AB|T27.0XXA|ICD10CM|Burn of larynx and trachea, initial encounter|Burn of larynx and trachea, initial encounter +C2873678|T037|PT|T27.0XXD|ICD10CM|Burn of larynx and trachea, subsequent encounter|Burn of larynx and trachea, subsequent encounter +C2873678|T037|AB|T27.0XXD|ICD10CM|Burn of larynx and trachea, subsequent encounter|Burn of larynx and trachea, subsequent encounter +C2873679|T037|PT|T27.0XXS|ICD10CM|Burn of larynx and trachea, sequela|Burn of larynx and trachea, sequela +C2873679|T037|AB|T27.0XXS|ICD10CM|Burn of larynx and trachea, sequela|Burn of larynx and trachea, sequela +C0161322|T037|PT|T27.1|ICD10|Burn involving larynx and trachea with lung|Burn involving larynx and trachea with lung +C0161322|T037|HT|T27.1|ICD10CM|Burn involving larynx and trachea with lung|Burn involving larynx and trachea with lung +C0161322|T037|AB|T27.1|ICD10CM|Burn involving larynx and trachea with lung|Burn involving larynx and trachea with lung +C2873680|T037|AB|T27.1XXA|ICD10CM|Burn involving larynx and trachea with lung, init encntr|Burn involving larynx and trachea with lung, init encntr +C2873680|T037|PT|T27.1XXA|ICD10CM|Burn involving larynx and trachea with lung, initial encounter|Burn involving larynx and trachea with lung, initial encounter +C2873681|T037|AB|T27.1XXD|ICD10CM|Burn involving larynx and trachea with lung, subs encntr|Burn involving larynx and trachea with lung, subs encntr +C2873681|T037|PT|T27.1XXD|ICD10CM|Burn involving larynx and trachea with lung, subsequent encounter|Burn involving larynx and trachea with lung, subsequent encounter +C2873682|T037|PT|T27.1XXS|ICD10CM|Burn involving larynx and trachea with lung, sequela|Burn involving larynx and trachea with lung, sequela +C2873682|T037|AB|T27.1XXS|ICD10CM|Burn involving larynx and trachea with lung, sequela|Burn involving larynx and trachea with lung, sequela +C0478406|T037|HT|T27.2|ICD10CM|Burn of other parts of respiratory tract|Burn of other parts of respiratory tract +C0478406|T037|AB|T27.2|ICD10CM|Burn of other parts of respiratory tract|Burn of other parts of respiratory tract +C0478406|T037|PT|T27.2|ICD10|Burn of other parts of respiratory tract|Burn of other parts of respiratory tract +C2873683|T037|ET|T27.2|ICD10CM|Burn of thoracic cavity|Burn of thoracic cavity +C2873684|T037|PT|T27.2XXA|ICD10CM|Burn of other parts of respiratory tract, initial encounter|Burn of other parts of respiratory tract, initial encounter +C2873684|T037|AB|T27.2XXA|ICD10CM|Burn of other parts of respiratory tract, initial encounter|Burn of other parts of respiratory tract, initial encounter +C2873685|T037|AB|T27.2XXD|ICD10CM|Burn of other parts of respiratory tract, subs encntr|Burn of other parts of respiratory tract, subs encntr +C2873685|T037|PT|T27.2XXD|ICD10CM|Burn of other parts of respiratory tract, subsequent encounter|Burn of other parts of respiratory tract, subsequent encounter +C2873686|T037|PT|T27.2XXS|ICD10CM|Burn of other parts of respiratory tract, sequela|Burn of other parts of respiratory tract, sequela +C2873686|T037|AB|T27.2XXS|ICD10CM|Burn of other parts of respiratory tract, sequela|Burn of other parts of respiratory tract, sequela +C0478417|T037|PT|T27.3|ICD10|Burn of respiratory tract, part unspecified|Burn of respiratory tract, part unspecified +C0478417|T037|HT|T27.3|ICD10CM|Burn of respiratory tract, part unspecified|Burn of respiratory tract, part unspecified +C0478417|T037|AB|T27.3|ICD10CM|Burn of respiratory tract, part unspecified|Burn of respiratory tract, part unspecified +C2873687|T037|AB|T27.3XXA|ICD10CM|Burn of respiratory tract, part unspecified, init encntr|Burn of respiratory tract, part unspecified, init encntr +C2873687|T037|PT|T27.3XXA|ICD10CM|Burn of respiratory tract, part unspecified, initial encounter|Burn of respiratory tract, part unspecified, initial encounter +C2873688|T037|AB|T27.3XXD|ICD10CM|Burn of respiratory tract, part unspecified, subs encntr|Burn of respiratory tract, part unspecified, subs encntr +C2873688|T037|PT|T27.3XXD|ICD10CM|Burn of respiratory tract, part unspecified, subsequent encounter|Burn of respiratory tract, part unspecified, subsequent encounter +C2873689|T037|PT|T27.3XXS|ICD10CM|Burn of respiratory tract, part unspecified, sequela|Burn of respiratory tract, part unspecified, sequela +C2873689|T037|AB|T27.3XXS|ICD10CM|Burn of respiratory tract, part unspecified, sequela|Burn of respiratory tract, part unspecified, sequela +C0452011|T037|HT|T27.4|ICD10CM|Corrosion of larynx and trachea|Corrosion of larynx and trachea +C0452011|T037|AB|T27.4|ICD10CM|Corrosion of larynx and trachea|Corrosion of larynx and trachea +C0452011|T037|PT|T27.4|ICD10|Corrosion of larynx and trachea|Corrosion of larynx and trachea +C2873690|T037|PT|T27.4XXA|ICD10CM|Corrosion of larynx and trachea, initial encounter|Corrosion of larynx and trachea, initial encounter +C2873690|T037|AB|T27.4XXA|ICD10CM|Corrosion of larynx and trachea, initial encounter|Corrosion of larynx and trachea, initial encounter +C2873691|T037|PT|T27.4XXD|ICD10CM|Corrosion of larynx and trachea, subsequent encounter|Corrosion of larynx and trachea, subsequent encounter +C2873691|T037|AB|T27.4XXD|ICD10CM|Corrosion of larynx and trachea, subsequent encounter|Corrosion of larynx and trachea, subsequent encounter +C2873692|T037|PT|T27.4XXS|ICD10CM|Corrosion of larynx and trachea, sequela|Corrosion of larynx and trachea, sequela +C2873692|T037|AB|T27.4XXS|ICD10CM|Corrosion of larynx and trachea, sequela|Corrosion of larynx and trachea, sequela +C0452012|T037|PT|T27.5|ICD10|Corrosion involving larynx and trachea with lung|Corrosion involving larynx and trachea with lung +C0452012|T037|HT|T27.5|ICD10CM|Corrosion involving larynx and trachea with lung|Corrosion involving larynx and trachea with lung +C0452012|T037|AB|T27.5|ICD10CM|Corrosion involving larynx and trachea with lung|Corrosion involving larynx and trachea with lung +C2873693|T037|AB|T27.5XXA|ICD10CM|Corrosion involving larynx and trachea w lung, init encntr|Corrosion involving larynx and trachea w lung, init encntr +C2873693|T037|PT|T27.5XXA|ICD10CM|Corrosion involving larynx and trachea with lung, initial encounter|Corrosion involving larynx and trachea with lung, initial encounter +C2873694|T037|AB|T27.5XXD|ICD10CM|Corrosion involving larynx and trachea w lung, subs encntr|Corrosion involving larynx and trachea w lung, subs encntr +C2873694|T037|PT|T27.5XXD|ICD10CM|Corrosion involving larynx and trachea with lung, subsequent encounter|Corrosion involving larynx and trachea with lung, subsequent encounter +C2873695|T037|PT|T27.5XXS|ICD10CM|Corrosion involving larynx and trachea with lung, sequela|Corrosion involving larynx and trachea with lung, sequela +C2873695|T037|AB|T27.5XXS|ICD10CM|Corrosion involving larynx and trachea with lung, sequela|Corrosion involving larynx and trachea with lung, sequela +C0478407|T037|HT|T27.6|ICD10CM|Corrosion of other parts of respiratory tract|Corrosion of other parts of respiratory tract +C0478407|T037|AB|T27.6|ICD10CM|Corrosion of other parts of respiratory tract|Corrosion of other parts of respiratory tract +C0478407|T037|PT|T27.6|ICD10|Corrosion of other parts of respiratory tract|Corrosion of other parts of respiratory tract +C2873696|T037|AB|T27.6XXA|ICD10CM|Corrosion of other parts of respiratory tract, init encntr|Corrosion of other parts of respiratory tract, init encntr +C2873696|T037|PT|T27.6XXA|ICD10CM|Corrosion of other parts of respiratory tract, initial encounter|Corrosion of other parts of respiratory tract, initial encounter +C2873697|T037|AB|T27.6XXD|ICD10CM|Corrosion of other parts of respiratory tract, subs encntr|Corrosion of other parts of respiratory tract, subs encntr +C2873697|T037|PT|T27.6XXD|ICD10CM|Corrosion of other parts of respiratory tract, subsequent encounter|Corrosion of other parts of respiratory tract, subsequent encounter +C2876058|T037|PT|T27.6XXS|ICD10CM|Corrosion of other parts of respiratory tract, sequela|Corrosion of other parts of respiratory tract, sequela +C2876058|T037|AB|T27.6XXS|ICD10CM|Corrosion of other parts of respiratory tract, sequela|Corrosion of other parts of respiratory tract, sequela +C0478418|T037|PT|T27.7|ICD10|Corrosion of respiratory tract, part unspecified|Corrosion of respiratory tract, part unspecified +C0478418|T037|HT|T27.7|ICD10CM|Corrosion of respiratory tract, part unspecified|Corrosion of respiratory tract, part unspecified +C0478418|T037|AB|T27.7|ICD10CM|Corrosion of respiratory tract, part unspecified|Corrosion of respiratory tract, part unspecified +C2876059|T037|AB|T27.7XXA|ICD10CM|Corrosion of respiratory tract, part unsp, init encntr|Corrosion of respiratory tract, part unsp, init encntr +C2876059|T037|PT|T27.7XXA|ICD10CM|Corrosion of respiratory tract, part unspecified, initial encounter|Corrosion of respiratory tract, part unspecified, initial encounter +C2876060|T037|AB|T27.7XXD|ICD10CM|Corrosion of respiratory tract, part unsp, subs encntr|Corrosion of respiratory tract, part unsp, subs encntr +C2876060|T037|PT|T27.7XXD|ICD10CM|Corrosion of respiratory tract, part unspecified, subsequent encounter|Corrosion of respiratory tract, part unspecified, subsequent encounter +C2876061|T037|PT|T27.7XXS|ICD10CM|Corrosion of respiratory tract, part unspecified, sequela|Corrosion of respiratory tract, part unspecified, sequela +C2876061|T037|AB|T27.7XXS|ICD10CM|Corrosion of respiratory tract, part unspecified, sequela|Corrosion of respiratory tract, part unspecified, sequela +C2911662|T037|HT|T28|ICD10|Burn and corrosion of other internal organs|Burn and corrosion of other internal organs +C2911662|T037|AB|T28|ICD10CM|Burn and corrosion of other internal organs|Burn and corrosion of other internal organs +C2911662|T037|HT|T28|ICD10CM|Burn and corrosion of other internal organs|Burn and corrosion of other internal organs +C0161321|T037|AB|T28.0|ICD10CM|Burn of mouth and pharynx|Burn of mouth and pharynx +C0161321|T037|PT|T28.0|ICD10|Burn of mouth and pharynx|Burn of mouth and pharynx +C0161321|T037|HT|T28.0|ICD10CM|Burn of mouth and pharynx|Burn of mouth and pharynx +C2876062|T037|PT|T28.0XXA|ICD10CM|Burn of mouth and pharynx, initial encounter|Burn of mouth and pharynx, initial encounter +C2876062|T037|AB|T28.0XXA|ICD10CM|Burn of mouth and pharynx, initial encounter|Burn of mouth and pharynx, initial encounter +C2876063|T037|PT|T28.0XXD|ICD10CM|Burn of mouth and pharynx, subsequent encounter|Burn of mouth and pharynx, subsequent encounter +C2876063|T037|AB|T28.0XXD|ICD10CM|Burn of mouth and pharynx, subsequent encounter|Burn of mouth and pharynx, subsequent encounter +C2876064|T037|PT|T28.0XXS|ICD10CM|Burn of mouth and pharynx, sequela|Burn of mouth and pharynx, sequela +C2876064|T037|AB|T28.0XXS|ICD10CM|Burn of mouth and pharynx, sequela|Burn of mouth and pharynx, sequela +C0162286|T037|PT|T28.1|ICD10AE|Burn of esophagus|Burn of esophagus +C0162286|T037|HT|T28.1|ICD10CM|Burn of esophagus|Burn of esophagus +C0162286|T037|AB|T28.1|ICD10CM|Burn of esophagus|Burn of esophagus +C0162286|T037|PT|T28.1|ICD10|Burn of oesophagus|Burn of oesophagus +C2876065|T037|PT|T28.1XXA|ICD10CM|Burn of esophagus, initial encounter|Burn of esophagus, initial encounter +C2876065|T037|AB|T28.1XXA|ICD10CM|Burn of esophagus, initial encounter|Burn of esophagus, initial encounter +C2876066|T037|PT|T28.1XXD|ICD10CM|Burn of esophagus, subsequent encounter|Burn of esophagus, subsequent encounter +C2876066|T037|AB|T28.1XXD|ICD10CM|Burn of esophagus, subsequent encounter|Burn of esophagus, subsequent encounter +C2876067|T037|PT|T28.1XXS|ICD10CM|Burn of esophagus, sequela|Burn of esophagus, sequela +C2876067|T037|AB|T28.1XXS|ICD10CM|Burn of esophagus, sequela|Burn of esophagus, sequela +C0478408|T037|HT|T28.2|ICD10CM|Burn of other parts of alimentary tract|Burn of other parts of alimentary tract +C0478408|T037|AB|T28.2|ICD10CM|Burn of other parts of alimentary tract|Burn of other parts of alimentary tract +C0478408|T037|PT|T28.2|ICD10|Burn of other parts of alimentary tract|Burn of other parts of alimentary tract +C2876068|T037|PT|T28.2XXA|ICD10CM|Burn of other parts of alimentary tract, initial encounter|Burn of other parts of alimentary tract, initial encounter +C2876068|T037|AB|T28.2XXA|ICD10CM|Burn of other parts of alimentary tract, initial encounter|Burn of other parts of alimentary tract, initial encounter +C2876069|T037|AB|T28.2XXD|ICD10CM|Burn of other parts of alimentary tract, subs encntr|Burn of other parts of alimentary tract, subs encntr +C2876069|T037|PT|T28.2XXD|ICD10CM|Burn of other parts of alimentary tract, subsequent encounter|Burn of other parts of alimentary tract, subsequent encounter +C2876070|T037|PT|T28.2XXS|ICD10CM|Burn of other parts of alimentary tract, sequela|Burn of other parts of alimentary tract, sequela +C2876070|T037|AB|T28.2XXS|ICD10CM|Burn of other parts of alimentary tract, sequela|Burn of other parts of alimentary tract, sequela +C0392001|T037|PT|T28.3|ICD10|Burn of internal genitourinary organs|Burn of internal genitourinary organs +C0392001|T037|HT|T28.3|ICD10CM|Burn of internal genitourinary organs|Burn of internal genitourinary organs +C0392001|T037|AB|T28.3|ICD10CM|Burn of internal genitourinary organs|Burn of internal genitourinary organs +C2876071|T037|PT|T28.3XXA|ICD10CM|Burn of internal genitourinary organs, initial encounter|Burn of internal genitourinary organs, initial encounter +C2876071|T037|AB|T28.3XXA|ICD10CM|Burn of internal genitourinary organs, initial encounter|Burn of internal genitourinary organs, initial encounter +C2876072|T037|PT|T28.3XXD|ICD10CM|Burn of internal genitourinary organs, subsequent encounter|Burn of internal genitourinary organs, subsequent encounter +C2876072|T037|AB|T28.3XXD|ICD10CM|Burn of internal genitourinary organs, subsequent encounter|Burn of internal genitourinary organs, subsequent encounter +C2876073|T037|PT|T28.3XXS|ICD10CM|Burn of internal genitourinary organs, sequela|Burn of internal genitourinary organs, sequela +C2876073|T037|AB|T28.3XXS|ICD10CM|Burn of internal genitourinary organs, sequela|Burn of internal genitourinary organs, sequela +C0006420|T037|PT|T28.4|ICD10|Burn of other and unspecified internal organs|Burn of other and unspecified internal organs +C0006420|T037|AB|T28.4|ICD10CM|Burns of other and unspecified internal organs|Burns of other and unspecified internal organs +C0006420|T037|HT|T28.4|ICD10CM|Burns of other and unspecified internal organs|Burns of other and unspecified internal organs +C2876074|T037|AB|T28.40|ICD10CM|Burn of unspecified internal organ|Burn of unspecified internal organ +C2876074|T037|HT|T28.40|ICD10CM|Burn of unspecified internal organ|Burn of unspecified internal organ +C2876075|T037|AB|T28.40XA|ICD10CM|Burn of unspecified internal organ, initial encounter|Burn of unspecified internal organ, initial encounter +C2876075|T037|PT|T28.40XA|ICD10CM|Burn of unspecified internal organ, initial encounter|Burn of unspecified internal organ, initial encounter +C2876076|T037|AB|T28.40XD|ICD10CM|Burn of unspecified internal organ, subsequent encounter|Burn of unspecified internal organ, subsequent encounter +C2876076|T037|PT|T28.40XD|ICD10CM|Burn of unspecified internal organ, subsequent encounter|Burn of unspecified internal organ, subsequent encounter +C2876077|T037|AB|T28.40XS|ICD10CM|Burn of unspecified internal organ, sequela|Burn of unspecified internal organ, sequela +C2876077|T037|PT|T28.40XS|ICD10CM|Burn of unspecified internal organ, sequela|Burn of unspecified internal organ, sequela +C2876078|T037|AB|T28.41|ICD10CM|Burn of ear drum|Burn of ear drum +C2876078|T037|HT|T28.41|ICD10CM|Burn of ear drum|Burn of ear drum +C2876079|T037|AB|T28.411|ICD10CM|Burn of right ear drum|Burn of right ear drum +C2876079|T037|HT|T28.411|ICD10CM|Burn of right ear drum|Burn of right ear drum +C2876080|T037|PT|T28.411A|ICD10CM|Burn of right ear drum, initial encounter|Burn of right ear drum, initial encounter +C2876080|T037|AB|T28.411A|ICD10CM|Burn of right ear drum, initial encounter|Burn of right ear drum, initial encounter +C2876081|T037|PT|T28.411D|ICD10CM|Burn of right ear drum, subsequent encounter|Burn of right ear drum, subsequent encounter +C2876081|T037|AB|T28.411D|ICD10CM|Burn of right ear drum, subsequent encounter|Burn of right ear drum, subsequent encounter +C2876082|T037|PT|T28.411S|ICD10CM|Burn of right ear drum, sequela|Burn of right ear drum, sequela +C2876082|T037|AB|T28.411S|ICD10CM|Burn of right ear drum, sequela|Burn of right ear drum, sequela +C2876083|T037|AB|T28.412|ICD10CM|Burn of left ear drum|Burn of left ear drum +C2876083|T037|HT|T28.412|ICD10CM|Burn of left ear drum|Burn of left ear drum +C2876084|T037|PT|T28.412A|ICD10CM|Burn of left ear drum, initial encounter|Burn of left ear drum, initial encounter +C2876084|T037|AB|T28.412A|ICD10CM|Burn of left ear drum, initial encounter|Burn of left ear drum, initial encounter +C2876085|T037|PT|T28.412D|ICD10CM|Burn of left ear drum, subsequent encounter|Burn of left ear drum, subsequent encounter +C2876085|T037|AB|T28.412D|ICD10CM|Burn of left ear drum, subsequent encounter|Burn of left ear drum, subsequent encounter +C2876086|T037|PT|T28.412S|ICD10CM|Burn of left ear drum, sequela|Burn of left ear drum, sequela +C2876086|T037|AB|T28.412S|ICD10CM|Burn of left ear drum, sequela|Burn of left ear drum, sequela +C2876087|T037|AB|T28.419|ICD10CM|Burn of unspecified ear drum|Burn of unspecified ear drum +C2876087|T037|HT|T28.419|ICD10CM|Burn of unspecified ear drum|Burn of unspecified ear drum +C2876088|T037|PT|T28.419A|ICD10CM|Burn of unspecified ear drum, initial encounter|Burn of unspecified ear drum, initial encounter +C2876088|T037|AB|T28.419A|ICD10CM|Burn of unspecified ear drum, initial encounter|Burn of unspecified ear drum, initial encounter +C2876089|T037|PT|T28.419D|ICD10CM|Burn of unspecified ear drum, subsequent encounter|Burn of unspecified ear drum, subsequent encounter +C2876089|T037|AB|T28.419D|ICD10CM|Burn of unspecified ear drum, subsequent encounter|Burn of unspecified ear drum, subsequent encounter +C2876090|T037|PT|T28.419S|ICD10CM|Burn of unspecified ear drum, sequela|Burn of unspecified ear drum, sequela +C2876090|T037|AB|T28.419S|ICD10CM|Burn of unspecified ear drum, sequela|Burn of unspecified ear drum, sequela +C0006420|T037|AB|T28.49|ICD10CM|Burn of other internal organ|Burn of other internal organ +C0006420|T037|HT|T28.49|ICD10CM|Burn of other internal organ|Burn of other internal organ +C2876091|T037|AB|T28.49XA|ICD10CM|Burn of other internal organ, initial encounter|Burn of other internal organ, initial encounter +C2876091|T037|PT|T28.49XA|ICD10CM|Burn of other internal organ, initial encounter|Burn of other internal organ, initial encounter +C2876092|T037|AB|T28.49XD|ICD10CM|Burn of other internal organ, subsequent encounter|Burn of other internal organ, subsequent encounter +C2876092|T037|PT|T28.49XD|ICD10CM|Burn of other internal organ, subsequent encounter|Burn of other internal organ, subsequent encounter +C2876093|T037|AB|T28.49XS|ICD10CM|Burn of other internal organ, sequela|Burn of other internal organ, sequela +C2876093|T037|PT|T28.49XS|ICD10CM|Burn of other internal organ, sequela|Burn of other internal organ, sequela +C0452010|T037|HT|T28.5|ICD10CM|Corrosion of mouth and pharynx|Corrosion of mouth and pharynx +C0452010|T037|AB|T28.5|ICD10CM|Corrosion of mouth and pharynx|Corrosion of mouth and pharynx +C0452010|T037|PT|T28.5|ICD10|Corrosion of mouth and pharynx|Corrosion of mouth and pharynx +C2876094|T037|PT|T28.5XXA|ICD10CM|Corrosion of mouth and pharynx, initial encounter|Corrosion of mouth and pharynx, initial encounter +C2876094|T037|AB|T28.5XXA|ICD10CM|Corrosion of mouth and pharynx, initial encounter|Corrosion of mouth and pharynx, initial encounter +C2876095|T037|PT|T28.5XXD|ICD10CM|Corrosion of mouth and pharynx, subsequent encounter|Corrosion of mouth and pharynx, subsequent encounter +C2876095|T037|AB|T28.5XXD|ICD10CM|Corrosion of mouth and pharynx, subsequent encounter|Corrosion of mouth and pharynx, subsequent encounter +C2876096|T037|PT|T28.5XXS|ICD10CM|Corrosion of mouth and pharynx, sequela|Corrosion of mouth and pharynx, sequela +C2876096|T037|AB|T28.5XXS|ICD10CM|Corrosion of mouth and pharynx, sequela|Corrosion of mouth and pharynx, sequela +C0475569|T037|PT|T28.6|ICD10AE|Corrosion of esophagus|Corrosion of esophagus +C0475569|T037|HT|T28.6|ICD10CM|Corrosion of esophagus|Corrosion of esophagus +C0475569|T037|AB|T28.6|ICD10CM|Corrosion of esophagus|Corrosion of esophagus +C0475569|T037|PT|T28.6|ICD10|Corrosion of oesophagus|Corrosion of oesophagus +C2876097|T037|PT|T28.6XXA|ICD10CM|Corrosion of esophagus, initial encounter|Corrosion of esophagus, initial encounter +C2876097|T037|AB|T28.6XXA|ICD10CM|Corrosion of esophagus, initial encounter|Corrosion of esophagus, initial encounter +C2876098|T037|PT|T28.6XXD|ICD10CM|Corrosion of esophagus, subsequent encounter|Corrosion of esophagus, subsequent encounter +C2876098|T037|AB|T28.6XXD|ICD10CM|Corrosion of esophagus, subsequent encounter|Corrosion of esophagus, subsequent encounter +C2876099|T037|PT|T28.6XXS|ICD10CM|Corrosion of esophagus, sequela|Corrosion of esophagus, sequela +C2876099|T037|AB|T28.6XXS|ICD10CM|Corrosion of esophagus, sequela|Corrosion of esophagus, sequela +C0478410|T037|PT|T28.7|ICD10|Corrosion of other parts of alimentary tract|Corrosion of other parts of alimentary tract +C0478410|T037|HT|T28.7|ICD10CM|Corrosion of other parts of alimentary tract|Corrosion of other parts of alimentary tract +C0478410|T037|AB|T28.7|ICD10CM|Corrosion of other parts of alimentary tract|Corrosion of other parts of alimentary tract +C2876100|T037|AB|T28.7XXA|ICD10CM|Corrosion of other parts of alimentary tract, init encntr|Corrosion of other parts of alimentary tract, init encntr +C2876100|T037|PT|T28.7XXA|ICD10CM|Corrosion of other parts of alimentary tract, initial encounter|Corrosion of other parts of alimentary tract, initial encounter +C2876101|T037|AB|T28.7XXD|ICD10CM|Corrosion of other parts of alimentary tract, subs encntr|Corrosion of other parts of alimentary tract, subs encntr +C2876101|T037|PT|T28.7XXD|ICD10CM|Corrosion of other parts of alimentary tract, subsequent encounter|Corrosion of other parts of alimentary tract, subsequent encounter +C2876102|T037|PT|T28.7XXS|ICD10CM|Corrosion of other parts of alimentary tract, sequela|Corrosion of other parts of alimentary tract, sequela +C2876102|T037|AB|T28.7XXS|ICD10CM|Corrosion of other parts of alimentary tract, sequela|Corrosion of other parts of alimentary tract, sequela +C0452013|T037|HT|T28.8|ICD10CM|Corrosion of internal genitourinary organs|Corrosion of internal genitourinary organs +C0452013|T037|AB|T28.8|ICD10CM|Corrosion of internal genitourinary organs|Corrosion of internal genitourinary organs +C0452013|T037|PT|T28.8|ICD10|Corrosion of internal genitourinary organs|Corrosion of internal genitourinary organs +C2876103|T037|AB|T28.8XXA|ICD10CM|Corrosion of internal genitourinary organs, init encntr|Corrosion of internal genitourinary organs, init encntr +C2876103|T037|PT|T28.8XXA|ICD10CM|Corrosion of internal genitourinary organs, initial encounter|Corrosion of internal genitourinary organs, initial encounter +C2876104|T037|AB|T28.8XXD|ICD10CM|Corrosion of internal genitourinary organs, subs encntr|Corrosion of internal genitourinary organs, subs encntr +C2876104|T037|PT|T28.8XXD|ICD10CM|Corrosion of internal genitourinary organs, subsequent encounter|Corrosion of internal genitourinary organs, subsequent encounter +C2876105|T037|PT|T28.8XXS|ICD10CM|Corrosion of internal genitourinary organs, sequela|Corrosion of internal genitourinary organs, sequela +C2876105|T037|AB|T28.8XXS|ICD10CM|Corrosion of internal genitourinary organs, sequela|Corrosion of internal genitourinary organs, sequela +C0478411|T037|PT|T28.9|ICD10|Corrosion of other and unspecified internal organs|Corrosion of other and unspecified internal organs +C0478411|T037|AB|T28.9|ICD10CM|Corrosions of other and unspecified internal organs|Corrosions of other and unspecified internal organs +C0478411|T037|HT|T28.9|ICD10CM|Corrosions of other and unspecified internal organs|Corrosions of other and unspecified internal organs +C2876106|T037|AB|T28.90|ICD10CM|Corrosions of unspecified internal organs|Corrosions of unspecified internal organs +C2876106|T037|HT|T28.90|ICD10CM|Corrosions of unspecified internal organs|Corrosions of unspecified internal organs +C2876107|T037|AB|T28.90XA|ICD10CM|Corrosions of unspecified internal organs, initial encounter|Corrosions of unspecified internal organs, initial encounter +C2876107|T037|PT|T28.90XA|ICD10CM|Corrosions of unspecified internal organs, initial encounter|Corrosions of unspecified internal organs, initial encounter +C2876108|T037|AB|T28.90XD|ICD10CM|Corrosions of unspecified internal organs, subs encntr|Corrosions of unspecified internal organs, subs encntr +C2876108|T037|PT|T28.90XD|ICD10CM|Corrosions of unspecified internal organs, subsequent encounter|Corrosions of unspecified internal organs, subsequent encounter +C2876109|T037|AB|T28.90XS|ICD10CM|Corrosions of unspecified internal organs, sequela|Corrosions of unspecified internal organs, sequela +C2876109|T037|PT|T28.90XS|ICD10CM|Corrosions of unspecified internal organs, sequela|Corrosions of unspecified internal organs, sequela +C2876110|T037|AB|T28.91|ICD10CM|Corrosions of ear drum|Corrosions of ear drum +C2876110|T037|HT|T28.91|ICD10CM|Corrosions of ear drum|Corrosions of ear drum +C2876111|T037|AB|T28.911|ICD10CM|Corrosions of right ear drum|Corrosions of right ear drum +C2876111|T037|HT|T28.911|ICD10CM|Corrosions of right ear drum|Corrosions of right ear drum +C2876112|T037|PT|T28.911A|ICD10CM|Corrosions of right ear drum, initial encounter|Corrosions of right ear drum, initial encounter +C2876112|T037|AB|T28.911A|ICD10CM|Corrosions of right ear drum, initial encounter|Corrosions of right ear drum, initial encounter +C2876113|T037|PT|T28.911D|ICD10CM|Corrosions of right ear drum, subsequent encounter|Corrosions of right ear drum, subsequent encounter +C2876113|T037|AB|T28.911D|ICD10CM|Corrosions of right ear drum, subsequent encounter|Corrosions of right ear drum, subsequent encounter +C2876114|T037|PT|T28.911S|ICD10CM|Corrosions of right ear drum, sequela|Corrosions of right ear drum, sequela +C2876114|T037|AB|T28.911S|ICD10CM|Corrosions of right ear drum, sequela|Corrosions of right ear drum, sequela +C2876115|T037|AB|T28.912|ICD10CM|Corrosions of left ear drum|Corrosions of left ear drum +C2876115|T037|HT|T28.912|ICD10CM|Corrosions of left ear drum|Corrosions of left ear drum +C2876116|T037|PT|T28.912A|ICD10CM|Corrosions of left ear drum, initial encounter|Corrosions of left ear drum, initial encounter +C2876116|T037|AB|T28.912A|ICD10CM|Corrosions of left ear drum, initial encounter|Corrosions of left ear drum, initial encounter +C2876117|T037|PT|T28.912D|ICD10CM|Corrosions of left ear drum, subsequent encounter|Corrosions of left ear drum, subsequent encounter +C2876117|T037|AB|T28.912D|ICD10CM|Corrosions of left ear drum, subsequent encounter|Corrosions of left ear drum, subsequent encounter +C2876118|T037|PT|T28.912S|ICD10CM|Corrosions of left ear drum, sequela|Corrosions of left ear drum, sequela +C2876118|T037|AB|T28.912S|ICD10CM|Corrosions of left ear drum, sequela|Corrosions of left ear drum, sequela +C2876119|T037|AB|T28.919|ICD10CM|Corrosions of unspecified ear drum|Corrosions of unspecified ear drum +C2876119|T037|HT|T28.919|ICD10CM|Corrosions of unspecified ear drum|Corrosions of unspecified ear drum +C2876120|T037|PT|T28.919A|ICD10CM|Corrosions of unspecified ear drum, initial encounter|Corrosions of unspecified ear drum, initial encounter +C2876120|T037|AB|T28.919A|ICD10CM|Corrosions of unspecified ear drum, initial encounter|Corrosions of unspecified ear drum, initial encounter +C2876121|T037|PT|T28.919D|ICD10CM|Corrosions of unspecified ear drum, subsequent encounter|Corrosions of unspecified ear drum, subsequent encounter +C2876121|T037|AB|T28.919D|ICD10CM|Corrosions of unspecified ear drum, subsequent encounter|Corrosions of unspecified ear drum, subsequent encounter +C2876122|T037|PT|T28.919S|ICD10CM|Corrosions of unspecified ear drum, sequela|Corrosions of unspecified ear drum, sequela +C2876122|T037|AB|T28.919S|ICD10CM|Corrosions of unspecified ear drum, sequela|Corrosions of unspecified ear drum, sequela +C2876123|T037|AB|T28.99|ICD10CM|Corrosions of other internal organs|Corrosions of other internal organs +C2876123|T037|HT|T28.99|ICD10CM|Corrosions of other internal organs|Corrosions of other internal organs +C2876124|T037|AB|T28.99XA|ICD10CM|Corrosions of other internal organs, initial encounter|Corrosions of other internal organs, initial encounter +C2876124|T037|PT|T28.99XA|ICD10CM|Corrosions of other internal organs, initial encounter|Corrosions of other internal organs, initial encounter +C2876125|T037|AB|T28.99XD|ICD10CM|Corrosions of other internal organs, subsequent encounter|Corrosions of other internal organs, subsequent encounter +C2876125|T037|PT|T28.99XD|ICD10CM|Corrosions of other internal organs, subsequent encounter|Corrosions of other internal organs, subsequent encounter +C2876126|T037|AB|T28.99XS|ICD10CM|Corrosions of other internal organs, sequela|Corrosions of other internal organs, sequela +C2876126|T037|PT|T28.99XS|ICD10CM|Corrosions of other internal organs, sequela|Corrosions of other internal organs, sequela +C0496065|T037|HT|T29|ICD10|Burns and corrosions of multiple body regions|Burns and corrosions of multiple body regions +C0694463|T037|HT|T29-T32.9|ICD10|Burns and corrosions of multiple and unspecified body regions|Burns and corrosions of multiple and unspecified body regions +C0496066|T037|PT|T29.0|ICD10|Burns of multiple regions, unspecified degree|Burns of multiple regions, unspecified degree +C0496067|T037|PT|T29.1|ICD10|Burns of multiple regions, no more than first-degree burns mentioned|Burns of multiple regions, no more than first-degree burns mentioned +C0496068|T037|PT|T29.2|ICD10|Burns of multiple regions, no more than second-degree burns mentioned|Burns of multiple regions, no more than second-degree burns mentioned +C0478412|T037|PT|T29.3|ICD10|Burns of multiple regions, at least one burn of third degree mentioned|Burns of multiple regions, at least one burn of third degree mentioned +C0452022|T037|PT|T29.4|ICD10|Corrosions of multiple regions, unspecified degree|Corrosions of multiple regions, unspecified degree +C0452023|T037|PT|T29.5|ICD10|Corrosions of multiple regions, no more than first-degree corrosions mentioned|Corrosions of multiple regions, no more than first-degree corrosions mentioned +C0452024|T037|PT|T29.6|ICD10|Corrosions of multiple regions, no more than second-degree corrosions mentioned|Corrosions of multiple regions, no more than second-degree corrosions mentioned +C0478413|T037|PT|T29.7|ICD10|Corrosions of multiple regions, at least one corrosion of third degree mentioned|Corrosions of multiple regions, at least one corrosion of third degree mentioned +C0496069|T037|HT|T30|ICD10|Burn and corrosion, body region unspecified|Burn and corrosion, body region unspecified +C0496069|T037|AB|T30|ICD10CM|Burn and corrosion, body region unspecified|Burn and corrosion, body region unspecified +C0496069|T037|HT|T30|ICD10CM|Burn and corrosion, body region unspecified|Burn and corrosion, body region unspecified +C0694463|T037|HT|T30-T32|ICD10CM|Burns and corrosions of multiple and unspecified body regions (T30-T32)|Burns and corrosions of multiple and unspecified body regions (T30-T32) +C0006434|T037|ET|T30.0|ICD10CM|Burn NOS|Burn NOS +C0478414|T037|PT|T30.0|ICD10|Burn of unspecified body region, unspecified degree|Burn of unspecified body region, unspecified degree +C0478414|T037|PT|T30.0|ICD10CM|Burn of unspecified body region, unspecified degree|Burn of unspecified body region, unspecified degree +C0478414|T037|AB|T30.0|ICD10CM|Burn of unspecified body region, unspecified degree|Burn of unspecified body region, unspecified degree +C0161315|T037|ET|T30.0|ICD10CM|Multiple burns NOS|Multiple burns NOS +C0332686|T037|PT|T30.1|ICD10|Burn of first degree, body region unspecified|Burn of first degree, body region unspecified +C0496071|T037|PT|T30.2|ICD10|Burn of second degree, body region unspecified|Burn of second degree, body region unspecified +C0496072|T037|PT|T30.3|ICD10|Burn of third degree, body region unspecified|Burn of third degree, body region unspecified +C2919087|T037|ET|T30.4|ICD10CM|Corrosion NOS|Corrosion NOS +C0478415|T037|PT|T30.4|ICD10|Corrosion of unspecified body region, unspecified degree|Corrosion of unspecified body region, unspecified degree +C0478415|T037|PT|T30.4|ICD10CM|Corrosion of unspecified body region, unspecified degree|Corrosion of unspecified body region, unspecified degree +C0478415|T037|AB|T30.4|ICD10CM|Corrosion of unspecified body region, unspecified degree|Corrosion of unspecified body region, unspecified degree +C2876127|T037|ET|T30.4|ICD10CM|Multiple corrosion NOS|Multiple corrosion NOS +C0452015|T037|PT|T30.5|ICD10|Corrosion of first degree, body region unspecified|Corrosion of first degree, body region unspecified +C0452016|T037|PT|T30.6|ICD10|Corrosion of second degree, body region unspecified|Corrosion of second degree, body region unspecified +C0452017|T037|PT|T30.7|ICD10|Corrosion of third degree, body region unspecified|Corrosion of third degree, body region unspecified +C0433219|T037|AB|T31|ICD10CM|Burns classified accord extent body involv|Burns classified accord extent body involv +C0433219|T037|HT|T31|ICD10CM|Burns classified according to extent of body surface involved|Burns classified according to extent of body surface involved +C0433219|T037|HT|T31|ICD10|Burns classified according to extent of body surface involved|Burns classified according to extent of body surface involved +C0161327|T037|PT|T31.0|ICD10|Burns involving less than 10% of body surface|Burns involving less than 10% of body surface +C0161327|T037|PT|T31.0|ICD10CM|Burns involving less than 10% of body surface|Burns involving less than 10% of body surface +C0161327|T037|AB|T31.0|ICD10CM|Burns involving less than 10% of body surface|Burns involving less than 10% of body surface +C0161329|T037|HT|T31.1|ICD10CM|Burns involving 10-19% of body surface|Burns involving 10-19% of body surface +C0161329|T037|AB|T31.1|ICD10CM|Burns involving 10-19% of body surface|Burns involving 10-19% of body surface +C0161329|T037|PT|T31.1|ICD10|Burns involving 10-19% of body surface|Burns involving 10-19% of body surface +C0161329|T037|ET|T31.10|ICD10CM|Burns involving 10-19% of body surface NOS|Burns involving 10-19% of body surface NOS +C2876128|T037|PT|T31.10|ICD10CM|Burns involving 10-19% of body surface with 0% to 9% third degree burns|Burns involving 10-19% of body surface with 0% to 9% third degree burns +C2876128|T037|AB|T31.10|ICD10CM|Burns of 10-19% of body surfc w 0% to 9% third degree burns|Burns of 10-19% of body surfc w 0% to 9% third degree burns +C2876129|T037|PT|T31.11|ICD10CM|Burns involving 10-19% of body surface with 10-19% third degree burns|Burns involving 10-19% of body surface with 10-19% third degree burns +C2876129|T037|AB|T31.11|ICD10CM|Burns of 10-19% of body surface w 10-19% third degree burns|Burns of 10-19% of body surface w 10-19% third degree burns +C0161332|T037|HT|T31.2|ICD10CM|Burns involving 20-29% of body surface|Burns involving 20-29% of body surface +C0161332|T037|AB|T31.2|ICD10CM|Burns involving 20-29% of body surface|Burns involving 20-29% of body surface +C0161332|T037|PT|T31.2|ICD10|Burns involving 20-29% of body surface|Burns involving 20-29% of body surface +C0161332|T037|ET|T31.20|ICD10CM|Burns involving 20-29% of body surface NOS|Burns involving 20-29% of body surface NOS +C2876130|T037|PT|T31.20|ICD10CM|Burns involving 20-29% of body surface with 0% to 9% third degree burns|Burns involving 20-29% of body surface with 0% to 9% third degree burns +C2876130|T037|AB|T31.20|ICD10CM|Burns of 20-29% of body surfc w 0% to 9% third degree burns|Burns of 20-29% of body surfc w 0% to 9% third degree burns +C2876131|T037|PT|T31.21|ICD10CM|Burns involving 20-29% of body surface with 10-19% third degree burns|Burns involving 20-29% of body surface with 10-19% third degree burns +C2876131|T037|AB|T31.21|ICD10CM|Burns of 20-29% of body surface w 10-19% third degree burns|Burns of 20-29% of body surface w 10-19% third degree burns +C2876132|T037|PT|T31.22|ICD10CM|Burns involving 20-29% of body surface with 20-29% third degree burns|Burns involving 20-29% of body surface with 20-29% third degree burns +C2876132|T037|AB|T31.22|ICD10CM|Burns of 20-29% of body surface w 20-29% third degree burns|Burns of 20-29% of body surface w 20-29% third degree burns +C0161336|T037|HT|T31.3|ICD10CM|Burns involving 30-39% of body surface|Burns involving 30-39% of body surface +C0161336|T037|AB|T31.3|ICD10CM|Burns involving 30-39% of body surface|Burns involving 30-39% of body surface +C0161336|T037|PT|T31.3|ICD10|Burns involving 30-39% of body surface|Burns involving 30-39% of body surface +C0161336|T037|ET|T31.30|ICD10CM|Burns involving 30-39% of body surface NOS|Burns involving 30-39% of body surface NOS +C2876133|T037|PT|T31.30|ICD10CM|Burns involving 30-39% of body surface with 0% to 9% third degree burns|Burns involving 30-39% of body surface with 0% to 9% third degree burns +C2876133|T037|AB|T31.30|ICD10CM|Burns of 30-39% of body surfc w 0% to 9% third degree burns|Burns of 30-39% of body surfc w 0% to 9% third degree burns +C2876134|T037|PT|T31.31|ICD10CM|Burns involving 30-39% of body surface with 10-19% third degree burns|Burns involving 30-39% of body surface with 10-19% third degree burns +C2876134|T037|AB|T31.31|ICD10CM|Burns of 30-39% of body surface w 10-19% third degree burns|Burns of 30-39% of body surface w 10-19% third degree burns +C2876135|T037|PT|T31.32|ICD10CM|Burns involving 30-39% of body surface with 20-29% third degree burns|Burns involving 30-39% of body surface with 20-29% third degree burns +C2876135|T037|AB|T31.32|ICD10CM|Burns of 30-39% of body surface w 20-29% third degree burns|Burns of 30-39% of body surface w 20-29% third degree burns +C2876136|T037|PT|T31.33|ICD10CM|Burns involving 30-39% of body surface with 30-39% third degree burns|Burns involving 30-39% of body surface with 30-39% third degree burns +C2876136|T037|AB|T31.33|ICD10CM|Burns of 30-39% of body surface w 30-39% third degree burns|Burns of 30-39% of body surface w 30-39% third degree burns +C0161341|T037|HT|T31.4|ICD10CM|Burns involving 40-49% of body surface|Burns involving 40-49% of body surface +C0161341|T037|AB|T31.4|ICD10CM|Burns involving 40-49% of body surface|Burns involving 40-49% of body surface +C0161341|T037|PT|T31.4|ICD10|Burns involving 40-49% of body surface|Burns involving 40-49% of body surface +C0161341|T037|ET|T31.40|ICD10CM|Burns involving 40-49% of body surface NOS|Burns involving 40-49% of body surface NOS +C2876137|T037|PT|T31.40|ICD10CM|Burns involving 40-49% of body surface with 0% to 9% third degree burns|Burns involving 40-49% of body surface with 0% to 9% third degree burns +C2876137|T037|AB|T31.40|ICD10CM|Burns of 40-49% of body surfc w 0% to 9% third degree burns|Burns of 40-49% of body surfc w 0% to 9% third degree burns +C2876138|T037|PT|T31.41|ICD10CM|Burns involving 40-49% of body surface with 10-19% third degree burns|Burns involving 40-49% of body surface with 10-19% third degree burns +C2876138|T037|AB|T31.41|ICD10CM|Burns of 40-49% of body surface w 10-19% third degree burns|Burns of 40-49% of body surface w 10-19% third degree burns +C2876139|T037|PT|T31.42|ICD10CM|Burns involving 40-49% of body surface with 20-29% third degree burns|Burns involving 40-49% of body surface with 20-29% third degree burns +C2876139|T037|AB|T31.42|ICD10CM|Burns of 40-49% of body surface w 20-29% third degree burns|Burns of 40-49% of body surface w 20-29% third degree burns +C2876140|T037|PT|T31.43|ICD10CM|Burns involving 40-49% of body surface with 30-39% third degree burns|Burns involving 40-49% of body surface with 30-39% third degree burns +C2876140|T037|AB|T31.43|ICD10CM|Burns of 40-49% of body surface w 30-39% third degree burns|Burns of 40-49% of body surface w 30-39% third degree burns +C2876141|T037|PT|T31.44|ICD10CM|Burns involving 40-49% of body surface with 40-49% third degree burns|Burns involving 40-49% of body surface with 40-49% third degree burns +C2876141|T037|AB|T31.44|ICD10CM|Burns of 40-49% of body surface w 40-49% third degree burns|Burns of 40-49% of body surface w 40-49% third degree burns +C0161347|T037|HT|T31.5|ICD10CM|Burns involving 50-59% of body surface|Burns involving 50-59% of body surface +C0161347|T037|AB|T31.5|ICD10CM|Burns involving 50-59% of body surface|Burns involving 50-59% of body surface +C0161347|T037|PT|T31.5|ICD10|Burns involving 50-59% of body surface|Burns involving 50-59% of body surface +C0161347|T037|ET|T31.50|ICD10CM|Burns involving 50-59% of body surface NOS|Burns involving 50-59% of body surface NOS +C2876142|T037|PT|T31.50|ICD10CM|Burns involving 50-59% of body surface with 0% to 9% third degree burns|Burns involving 50-59% of body surface with 0% to 9% third degree burns +C2876142|T037|AB|T31.50|ICD10CM|Burns of 50-59% of body surfc w 0% to 9% third degree burns|Burns of 50-59% of body surfc w 0% to 9% third degree burns +C2876143|T037|PT|T31.51|ICD10CM|Burns involving 50-59% of body surface with 10-19% third degree burns|Burns involving 50-59% of body surface with 10-19% third degree burns +C2876143|T037|AB|T31.51|ICD10CM|Burns of 50-59% of body surface w 10-19% third degree burns|Burns of 50-59% of body surface w 10-19% third degree burns +C2876144|T037|PT|T31.52|ICD10CM|Burns involving 50-59% of body surface with 20-29% third degree burns|Burns involving 50-59% of body surface with 20-29% third degree burns +C2876144|T037|AB|T31.52|ICD10CM|Burns of 50-59% of body surface w 20-29% third degree burns|Burns of 50-59% of body surface w 20-29% third degree burns +C2876145|T037|PT|T31.53|ICD10CM|Burns involving 50-59% of body surface with 30-39% third degree burns|Burns involving 50-59% of body surface with 30-39% third degree burns +C2876145|T037|AB|T31.53|ICD10CM|Burns of 50-59% of body surface w 30-39% third degree burns|Burns of 50-59% of body surface w 30-39% third degree burns +C2876146|T037|PT|T31.54|ICD10CM|Burns involving 50-59% of body surface with 40-49% third degree burns|Burns involving 50-59% of body surface with 40-49% third degree burns +C2876146|T037|AB|T31.54|ICD10CM|Burns of 50-59% of body surface w 40-49% third degree burns|Burns of 50-59% of body surface w 40-49% third degree burns +C2876147|T037|PT|T31.55|ICD10CM|Burns involving 50-59% of body surface with 50-59% third degree burns|Burns involving 50-59% of body surface with 50-59% third degree burns +C2876147|T037|AB|T31.55|ICD10CM|Burns of 50-59% of body surface w 50-59% third degree burns|Burns of 50-59% of body surface w 50-59% third degree burns +C0161354|T037|HT|T31.6|ICD10CM|Burns involving 60-69% of body surface|Burns involving 60-69% of body surface +C0161354|T037|AB|T31.6|ICD10CM|Burns involving 60-69% of body surface|Burns involving 60-69% of body surface +C0161354|T037|PT|T31.6|ICD10|Burns involving 60-69% of body surface|Burns involving 60-69% of body surface +C0161354|T037|ET|T31.60|ICD10CM|Burns involving 60-69% of body surface NOS|Burns involving 60-69% of body surface NOS +C2876148|T037|PT|T31.60|ICD10CM|Burns involving 60-69% of body surface with 0% to 9% third degree burns|Burns involving 60-69% of body surface with 0% to 9% third degree burns +C2876148|T037|AB|T31.60|ICD10CM|Burns of 60-69% of body surfc w 0% to 9% third degree burns|Burns of 60-69% of body surfc w 0% to 9% third degree burns +C2876149|T037|PT|T31.61|ICD10CM|Burns involving 60-69% of body surface with 10-19% third degree burns|Burns involving 60-69% of body surface with 10-19% third degree burns +C2876149|T037|AB|T31.61|ICD10CM|Burns of 60-69% of body surface w 10-19% third degree burns|Burns of 60-69% of body surface w 10-19% third degree burns +C2876150|T037|PT|T31.62|ICD10CM|Burns involving 60-69% of body surface with 20-29% third degree burns|Burns involving 60-69% of body surface with 20-29% third degree burns +C2876150|T037|AB|T31.62|ICD10CM|Burns of 60-69% of body surface w 20-29% third degree burns|Burns of 60-69% of body surface w 20-29% third degree burns +C2876151|T037|PT|T31.63|ICD10CM|Burns involving 60-69% of body surface with 30-39% third degree burns|Burns involving 60-69% of body surface with 30-39% third degree burns +C2876151|T037|AB|T31.63|ICD10CM|Burns of 60-69% of body surface w 30-39% third degree burns|Burns of 60-69% of body surface w 30-39% third degree burns +C2876152|T037|PT|T31.64|ICD10CM|Burns involving 60-69% of body surface with 40-49% third degree burns|Burns involving 60-69% of body surface with 40-49% third degree burns +C2876152|T037|AB|T31.64|ICD10CM|Burns of 60-69% of body surface w 40-49% third degree burns|Burns of 60-69% of body surface w 40-49% third degree burns +C2876153|T037|PT|T31.65|ICD10CM|Burns involving 60-69% of body surface with 50-59% third degree burns|Burns involving 60-69% of body surface with 50-59% third degree burns +C2876153|T037|AB|T31.65|ICD10CM|Burns of 60-69% of body surface w 50-59% third degree burns|Burns of 60-69% of body surface w 50-59% third degree burns +C2876154|T037|PT|T31.66|ICD10CM|Burns involving 60-69% of body surface with 60-69% third degree burns|Burns involving 60-69% of body surface with 60-69% third degree burns +C2876154|T037|AB|T31.66|ICD10CM|Burns of 60-69% of body surface w 60-69% third degree burns|Burns of 60-69% of body surface w 60-69% third degree burns +C0161362|T037|HT|T31.7|ICD10CM|Burns involving 70-79% of body surface|Burns involving 70-79% of body surface +C0161362|T037|AB|T31.7|ICD10CM|Burns involving 70-79% of body surface|Burns involving 70-79% of body surface +C0161362|T037|PT|T31.7|ICD10|Burns involving 70-79% of body surface|Burns involving 70-79% of body surface +C0161362|T037|ET|T31.70|ICD10CM|Burns involving 70-79% of body surface NOS|Burns involving 70-79% of body surface NOS +C2876155|T037|PT|T31.70|ICD10CM|Burns involving 70-79% of body surface with 0% to 9% third degree burns|Burns involving 70-79% of body surface with 0% to 9% third degree burns +C2876155|T037|AB|T31.70|ICD10CM|Burns of 70-79% of body surfc w 0% to 9% third degree burns|Burns of 70-79% of body surfc w 0% to 9% third degree burns +C2876156|T037|PT|T31.71|ICD10CM|Burns involving 70-79% of body surface with 10-19% third degree burns|Burns involving 70-79% of body surface with 10-19% third degree burns +C2876156|T037|AB|T31.71|ICD10CM|Burns of 70-79% of body surface w 10-19% third degree burns|Burns of 70-79% of body surface w 10-19% third degree burns +C2876157|T037|PT|T31.72|ICD10CM|Burns involving 70-79% of body surface with 20-29% third degree burns|Burns involving 70-79% of body surface with 20-29% third degree burns +C2876157|T037|AB|T31.72|ICD10CM|Burns of 70-79% of body surface w 20-29% third degree burns|Burns of 70-79% of body surface w 20-29% third degree burns +C2876158|T037|PT|T31.73|ICD10CM|Burns involving 70-79% of body surface with 30-39% third degree burns|Burns involving 70-79% of body surface with 30-39% third degree burns +C2876158|T037|AB|T31.73|ICD10CM|Burns of 70-79% of body surface w 30-39% third degree burns|Burns of 70-79% of body surface w 30-39% third degree burns +C2876159|T037|PT|T31.74|ICD10CM|Burns involving 70-79% of body surface with 40-49% third degree burns|Burns involving 70-79% of body surface with 40-49% third degree burns +C2876159|T037|AB|T31.74|ICD10CM|Burns of 70-79% of body surface w 40-49% third degree burns|Burns of 70-79% of body surface w 40-49% third degree burns +C2876160|T037|PT|T31.75|ICD10CM|Burns involving 70-79% of body surface with 50-59% third degree burns|Burns involving 70-79% of body surface with 50-59% third degree burns +C2876160|T037|AB|T31.75|ICD10CM|Burns of 70-79% of body surface w 50-59% third degree burns|Burns of 70-79% of body surface w 50-59% third degree burns +C2876161|T037|PT|T31.76|ICD10CM|Burns involving 70-79% of body surface with 60-69% third degree burns|Burns involving 70-79% of body surface with 60-69% third degree burns +C2876161|T037|AB|T31.76|ICD10CM|Burns of 70-79% of body surface w 60-69% third degree burns|Burns of 70-79% of body surface w 60-69% third degree burns +C2876162|T037|PT|T31.77|ICD10CM|Burns involving 70-79% of body surface with 70-79% third degree burns|Burns involving 70-79% of body surface with 70-79% third degree burns +C2876162|T037|AB|T31.77|ICD10CM|Burns of 70-79% of body surface w 70-79% third degree burns|Burns of 70-79% of body surface w 70-79% third degree burns +C0161371|T037|HT|T31.8|ICD10CM|Burns involving 80-89% of body surface|Burns involving 80-89% of body surface +C0161371|T037|AB|T31.8|ICD10CM|Burns involving 80-89% of body surface|Burns involving 80-89% of body surface +C0161371|T037|PT|T31.8|ICD10|Burns involving 80-89% of body surface|Burns involving 80-89% of body surface +C0161371|T037|ET|T31.80|ICD10CM|Burns involving 80-89% of body surface NOS|Burns involving 80-89% of body surface NOS +C2876163|T037|PT|T31.80|ICD10CM|Burns involving 80-89% of body surface with 0% to 9% third degree burns|Burns involving 80-89% of body surface with 0% to 9% third degree burns +C2876163|T037|AB|T31.80|ICD10CM|Burns of 80-89% of body surfc w 0% to 9% third degree burns|Burns of 80-89% of body surfc w 0% to 9% third degree burns +C2876164|T037|PT|T31.81|ICD10CM|Burns involving 80-89% of body surface with 10-19% third degree burns|Burns involving 80-89% of body surface with 10-19% third degree burns +C2876164|T037|AB|T31.81|ICD10CM|Burns of 80-89% of body surface w 10-19% third degree burns|Burns of 80-89% of body surface w 10-19% third degree burns +C2876165|T037|PT|T31.82|ICD10CM|Burns involving 80-89% of body surface with 20-29% third degree burns|Burns involving 80-89% of body surface with 20-29% third degree burns +C2876165|T037|AB|T31.82|ICD10CM|Burns of 80-89% of body surface w 20-29% third degree burns|Burns of 80-89% of body surface w 20-29% third degree burns +C2876166|T037|PT|T31.83|ICD10CM|Burns involving 80-89% of body surface with 30-39% third degree burns|Burns involving 80-89% of body surface with 30-39% third degree burns +C2876166|T037|AB|T31.83|ICD10CM|Burns of 80-89% of body surface w 30-39% third degree burns|Burns of 80-89% of body surface w 30-39% third degree burns +C2876167|T037|PT|T31.84|ICD10CM|Burns involving 80-89% of body surface with 40-49% third degree burns|Burns involving 80-89% of body surface with 40-49% third degree burns +C2876167|T037|AB|T31.84|ICD10CM|Burns of 80-89% of body surface w 40-49% third degree burns|Burns of 80-89% of body surface w 40-49% third degree burns +C2876168|T037|PT|T31.85|ICD10CM|Burns involving 80-89% of body surface with 50-59% third degree burns|Burns involving 80-89% of body surface with 50-59% third degree burns +C2876168|T037|AB|T31.85|ICD10CM|Burns of 80-89% of body surface w 50-59% third degree burns|Burns of 80-89% of body surface w 50-59% third degree burns +C2876169|T037|PT|T31.86|ICD10CM|Burns involving 80-89% of body surface with 60-69% third degree burns|Burns involving 80-89% of body surface with 60-69% third degree burns +C2876169|T037|AB|T31.86|ICD10CM|Burns of 80-89% of body surface w 60-69% third degree burns|Burns of 80-89% of body surface w 60-69% third degree burns +C2876170|T037|PT|T31.87|ICD10CM|Burns involving 80-89% of body surface with 70-79% third degree burns|Burns involving 80-89% of body surface with 70-79% third degree burns +C2876170|T037|AB|T31.87|ICD10CM|Burns of 80-89% of body surface w 70-79% third degree burns|Burns of 80-89% of body surface w 70-79% third degree burns +C2876171|T037|PT|T31.88|ICD10CM|Burns involving 80-89% of body surface with 80-89% third degree burns|Burns involving 80-89% of body surface with 80-89% third degree burns +C2876171|T037|AB|T31.88|ICD10CM|Burns of 80-89% of body surface w 80-89% third degree burns|Burns of 80-89% of body surface w 80-89% third degree burns +C0161381|T037|HT|T31.9|ICD10CM|Burns involving 90% or more of body surface|Burns involving 90% or more of body surface +C0161381|T037|AB|T31.9|ICD10CM|Burns involving 90% or more of body surface|Burns involving 90% or more of body surface +C0161381|T037|PT|T31.9|ICD10|Burns involving 90% or more of body surface|Burns involving 90% or more of body surface +C0161381|T037|ET|T31.90|ICD10CM|Burns involving 90% or more of body surface NOS|Burns involving 90% or more of body surface NOS +C2876172|T037|PT|T31.90|ICD10CM|Burns involving 90% or more of body surface with 0% to 9% third degree burns|Burns involving 90% or more of body surface with 0% to 9% third degree burns +C2876172|T037|AB|T31.90|ICD10CM|Burns of 90%/more of body surfc w 0% to 9% third deg burns|Burns of 90%/more of body surfc w 0% to 9% third deg burns +C2876173|T037|PT|T31.91|ICD10CM|Burns involving 90% or more of body surface with 10-19% third degree burns|Burns involving 90% or more of body surface with 10-19% third degree burns +C2876173|T037|AB|T31.91|ICD10CM|Burns of 90%/more of body surfc w 10-19% third degree burns|Burns of 90%/more of body surfc w 10-19% third degree burns +C2876174|T037|PT|T31.92|ICD10CM|Burns involving 90% or more of body surface with 20-29% third degree burns|Burns involving 90% or more of body surface with 20-29% third degree burns +C2876174|T037|AB|T31.92|ICD10CM|Burns of 90%/more of body surfc w 20-29% third degree burns|Burns of 90%/more of body surfc w 20-29% third degree burns +C2876175|T037|PT|T31.93|ICD10CM|Burns involving 90% or more of body surface with 30-39% third degree burns|Burns involving 90% or more of body surface with 30-39% third degree burns +C2876175|T037|AB|T31.93|ICD10CM|Burns of 90%/more of body surfc w 30-39% third degree burns|Burns of 90%/more of body surfc w 30-39% third degree burns +C2876176|T037|PT|T31.94|ICD10CM|Burns involving 90% or more of body surface with 40-49% third degree burns|Burns involving 90% or more of body surface with 40-49% third degree burns +C2876176|T037|AB|T31.94|ICD10CM|Burns of 90%/more of body surfc w 40-49% third degree burns|Burns of 90%/more of body surfc w 40-49% third degree burns +C2876177|T037|PT|T31.95|ICD10CM|Burns involving 90% or more of body surface with 50-59% third degree burns|Burns involving 90% or more of body surface with 50-59% third degree burns +C2876177|T037|AB|T31.95|ICD10CM|Burns of 90%/more of body surfc w 50-59% third degree burns|Burns of 90%/more of body surfc w 50-59% third degree burns +C2876178|T037|PT|T31.96|ICD10CM|Burns involving 90% or more of body surface with 60-69% third degree burns|Burns involving 90% or more of body surface with 60-69% third degree burns +C2876178|T037|AB|T31.96|ICD10CM|Burns of 90%/more of body surfc w 60-69% third degree burns|Burns of 90%/more of body surfc w 60-69% third degree burns +C2876179|T037|PT|T31.97|ICD10CM|Burns involving 90% or more of body surface with 70-79% third degree burns|Burns involving 90% or more of body surface with 70-79% third degree burns +C2876179|T037|AB|T31.97|ICD10CM|Burns of 90%/more of body surfc w 70-79% third degree burns|Burns of 90%/more of body surfc w 70-79% third degree burns +C2876180|T037|PT|T31.98|ICD10CM|Burns involving 90% or more of body surface with 80-89% third degree burns|Burns involving 90% or more of body surface with 80-89% third degree burns +C2876180|T037|AB|T31.98|ICD10CM|Burns of 90%/more of body surfc w 80-89% third degree burns|Burns of 90%/more of body surfc w 80-89% third degree burns +C2876181|T037|PT|T31.99|ICD10CM|Burns involving 90% or more of body surface with 90% or more third degree burns|Burns involving 90% or more of body surface with 90% or more third degree burns +C2876181|T037|AB|T31.99|ICD10CM|Burns of 90%/more of body surfc w 90%/more third deg burns|Burns of 90%/more of body surfc w 90%/more third deg burns +C0496083|T037|AB|T32|ICD10CM|Corrosions classified accord extent body involv|Corrosions classified accord extent body involv +C0496083|T037|HT|T32|ICD10CM|Corrosions classified according to extent of body surface involved|Corrosions classified according to extent of body surface involved +C0496083|T037|HT|T32|ICD10|Corrosions classified according to extent of body surface involved|Corrosions classified according to extent of body surface involved +C0452028|T037|PT|T32.0|ICD10|Corrosions involving less than 10% of body surface|Corrosions involving less than 10% of body surface +C0452028|T037|PT|T32.0|ICD10CM|Corrosions involving less than 10% of body surface|Corrosions involving less than 10% of body surface +C0452028|T037|AB|T32.0|ICD10CM|Corrosions involving less than 10% of body surface|Corrosions involving less than 10% of body surface +C0452029|T037|HT|T32.1|ICD10CM|Corrosions involving 10-19% of body surface|Corrosions involving 10-19% of body surface +C0452029|T037|AB|T32.1|ICD10CM|Corrosions involving 10-19% of body surface|Corrosions involving 10-19% of body surface +C0452029|T037|PT|T32.1|ICD10|Corrosions involving 10-19% of body surface|Corrosions involving 10-19% of body surface +C2876182|T037|AB|T32.10|ICD10CM|Corros 10-19% of body surface w 0% to 9% third degree corros|Corros 10-19% of body surface w 0% to 9% third degree corros +C0452029|T037|ET|T32.10|ICD10CM|Corrosions involving 10-19% of body surface NOS|Corrosions involving 10-19% of body surface NOS +C2876182|T037|PT|T32.10|ICD10CM|Corrosions involving 10-19% of body surface with 0% to 9% third degree corrosion|Corrosions involving 10-19% of body surface with 0% to 9% third degree corrosion +C2876183|T037|AB|T32.11|ICD10CM|Corros 10-19% of body surface w 10-19% third degree corros|Corros 10-19% of body surface w 10-19% third degree corros +C2876183|T037|PT|T32.11|ICD10CM|Corrosions involving 10-19% of body surface with 10-19% third degree corrosion|Corrosions involving 10-19% of body surface with 10-19% third degree corrosion +C0496084|T037|PT|T32.2|ICD10|Corrosions involving 20-29% of body surface|Corrosions involving 20-29% of body surface +C0496084|T037|HT|T32.2|ICD10CM|Corrosions involving 20-29% of body surface|Corrosions involving 20-29% of body surface +C0496084|T037|AB|T32.2|ICD10CM|Corrosions involving 20-29% of body surface|Corrosions involving 20-29% of body surface +C2876184|T037|AB|T32.20|ICD10CM|Corros 20-29% of body surface w 0% to 9% third degree corros|Corros 20-29% of body surface w 0% to 9% third degree corros +C2876184|T037|PT|T32.20|ICD10CM|Corrosions involving 20-29% of body surface with 0% to 9% third degree corrosion|Corrosions involving 20-29% of body surface with 0% to 9% third degree corrosion +C2876185|T037|AB|T32.21|ICD10CM|Corros 20-29% of body surface w 10-19% third degree corros|Corros 20-29% of body surface w 10-19% third degree corros +C2876185|T037|PT|T32.21|ICD10CM|Corrosions involving 20-29% of body surface with 10-19% third degree corrosion|Corrosions involving 20-29% of body surface with 10-19% third degree corrosion +C2876186|T037|AB|T32.22|ICD10CM|Corros 20-29% of body surface w 20-29% third degree corros|Corros 20-29% of body surface w 20-29% third degree corros +C2876186|T037|PT|T32.22|ICD10CM|Corrosions involving 20-29% of body surface with 20-29% third degree corrosion|Corrosions involving 20-29% of body surface with 20-29% third degree corrosion +C0452031|T037|PT|T32.3|ICD10|Corrosions involving 30-39% of body surface|Corrosions involving 30-39% of body surface +C0452031|T037|HT|T32.3|ICD10CM|Corrosions involving 30-39% of body surface|Corrosions involving 30-39% of body surface +C0452031|T037|AB|T32.3|ICD10CM|Corrosions involving 30-39% of body surface|Corrosions involving 30-39% of body surface +C2876187|T037|AB|T32.30|ICD10CM|Corros 30-39% of body surface w 0% to 9% third degree corros|Corros 30-39% of body surface w 0% to 9% third degree corros +C2876187|T037|PT|T32.30|ICD10CM|Corrosions involving 30-39% of body surface with 0% to 9% third degree corrosion|Corrosions involving 30-39% of body surface with 0% to 9% third degree corrosion +C2876188|T037|AB|T32.31|ICD10CM|Corros 30-39% of body surface w 10-19% third degree corros|Corros 30-39% of body surface w 10-19% third degree corros +C2876188|T037|PT|T32.31|ICD10CM|Corrosions involving 30-39% of body surface with 10-19% third degree corrosion|Corrosions involving 30-39% of body surface with 10-19% third degree corrosion +C2876189|T037|AB|T32.32|ICD10CM|Corros 30-39% of body surface w 20-29% third degree corros|Corros 30-39% of body surface w 20-29% third degree corros +C2876189|T037|PT|T32.32|ICD10CM|Corrosions involving 30-39% of body surface with 20-29% third degree corrosion|Corrosions involving 30-39% of body surface with 20-29% third degree corrosion +C2876190|T037|AB|T32.33|ICD10CM|Corros 30-39% of body surface w 30-39% third degree corros|Corros 30-39% of body surface w 30-39% third degree corros +C2876190|T037|PT|T32.33|ICD10CM|Corrosions involving 30-39% of body surface with 30-39% third degree corrosion|Corrosions involving 30-39% of body surface with 30-39% third degree corrosion +C0452032|T037|HT|T32.4|ICD10CM|Corrosions involving 40-49% of body surface|Corrosions involving 40-49% of body surface +C0452032|T037|AB|T32.4|ICD10CM|Corrosions involving 40-49% of body surface|Corrosions involving 40-49% of body surface +C0452032|T037|PT|T32.4|ICD10|Corrosions involving 40-49% of body surface|Corrosions involving 40-49% of body surface +C2876191|T037|AB|T32.40|ICD10CM|Corros 40-49% of body surface w 0% to 9% third degree corros|Corros 40-49% of body surface w 0% to 9% third degree corros +C2876191|T037|PT|T32.40|ICD10CM|Corrosions involving 40-49% of body surface with 0% to 9% third degree corrosion|Corrosions involving 40-49% of body surface with 0% to 9% third degree corrosion +C2876192|T037|AB|T32.41|ICD10CM|Corros 40-49% of body surface w 10-19% third degree corros|Corros 40-49% of body surface w 10-19% third degree corros +C2876192|T037|PT|T32.41|ICD10CM|Corrosions involving 40-49% of body surface with 10-19% third degree corrosion|Corrosions involving 40-49% of body surface with 10-19% third degree corrosion +C2876193|T037|AB|T32.42|ICD10CM|Corros 40-49% of body surface w 20-29% third degree corros|Corros 40-49% of body surface w 20-29% third degree corros +C2876193|T037|PT|T32.42|ICD10CM|Corrosions involving 40-49% of body surface with 20-29% third degree corrosion|Corrosions involving 40-49% of body surface with 20-29% third degree corrosion +C2876194|T037|AB|T32.43|ICD10CM|Corros 40-49% of body surface w 30-39% third degree corros|Corros 40-49% of body surface w 30-39% third degree corros +C2876194|T037|PT|T32.43|ICD10CM|Corrosions involving 40-49% of body surface with 30-39% third degree corrosion|Corrosions involving 40-49% of body surface with 30-39% third degree corrosion +C2876195|T037|AB|T32.44|ICD10CM|Corros 40-49% of body surface w 40-49% third degree corros|Corros 40-49% of body surface w 40-49% third degree corros +C2876195|T037|PT|T32.44|ICD10CM|Corrosions involving 40-49% of body surface with 40-49% third degree corrosion|Corrosions involving 40-49% of body surface with 40-49% third degree corrosion +C0452033|T037|PT|T32.5|ICD10|Corrosions involving 50-59% of body surface|Corrosions involving 50-59% of body surface +C0452033|T037|HT|T32.5|ICD10CM|Corrosions involving 50-59% of body surface|Corrosions involving 50-59% of body surface +C0452033|T037|AB|T32.5|ICD10CM|Corrosions involving 50-59% of body surface|Corrosions involving 50-59% of body surface +C2876196|T037|AB|T32.50|ICD10CM|Corros 50-59% of body surface w 0% to 9% third degree corros|Corros 50-59% of body surface w 0% to 9% third degree corros +C2876196|T037|PT|T32.50|ICD10CM|Corrosions involving 50-59% of body surface with 0% to 9% third degree corrosion|Corrosions involving 50-59% of body surface with 0% to 9% third degree corrosion +C2876197|T037|AB|T32.51|ICD10CM|Corros 50-59% of body surface w 10-19% third degree corros|Corros 50-59% of body surface w 10-19% third degree corros +C2876197|T037|PT|T32.51|ICD10CM|Corrosions involving 50-59% of body surface with 10-19% third degree corrosion|Corrosions involving 50-59% of body surface with 10-19% third degree corrosion +C2876198|T037|AB|T32.52|ICD10CM|Corros 50-59% of body surface w 20-29% third degree corros|Corros 50-59% of body surface w 20-29% third degree corros +C2876198|T037|PT|T32.52|ICD10CM|Corrosions involving 50-59% of body surface with 20-29% third degree corrosion|Corrosions involving 50-59% of body surface with 20-29% third degree corrosion +C2876199|T037|AB|T32.53|ICD10CM|Corros 50-59% of body surface w 30-39% third degree corros|Corros 50-59% of body surface w 30-39% third degree corros +C2876199|T037|PT|T32.53|ICD10CM|Corrosions involving 50-59% of body surface with 30-39% third degree corrosion|Corrosions involving 50-59% of body surface with 30-39% third degree corrosion +C2876200|T037|AB|T32.54|ICD10CM|Corros 50-59% of body surface w 40-49% third degree corros|Corros 50-59% of body surface w 40-49% third degree corros +C2876200|T037|PT|T32.54|ICD10CM|Corrosions involving 50-59% of body surface with 40-49% third degree corrosion|Corrosions involving 50-59% of body surface with 40-49% third degree corrosion +C2876201|T037|AB|T32.55|ICD10CM|Corros 50-59% of body surface w 50-59% third degree corros|Corros 50-59% of body surface w 50-59% third degree corros +C2876201|T037|PT|T32.55|ICD10CM|Corrosions involving 50-59% of body surface with 50-59% third degree corrosion|Corrosions involving 50-59% of body surface with 50-59% third degree corrosion +C0452034|T037|HT|T32.6|ICD10CM|Corrosions involving 60-69% of body surface|Corrosions involving 60-69% of body surface +C0452034|T037|AB|T32.6|ICD10CM|Corrosions involving 60-69% of body surface|Corrosions involving 60-69% of body surface +C0452034|T037|PT|T32.6|ICD10|Corrosions involving 60-69% of body surface|Corrosions involving 60-69% of body surface +C2876202|T037|AB|T32.60|ICD10CM|Corros 60-69% of body surface w 0% to 9% third degree corros|Corros 60-69% of body surface w 0% to 9% third degree corros +C2876202|T037|PT|T32.60|ICD10CM|Corrosions involving 60-69% of body surface with 0% to 9% third degree corrosion|Corrosions involving 60-69% of body surface with 0% to 9% third degree corrosion +C2876203|T037|AB|T32.61|ICD10CM|Corros 60-69% of body surface w 10-19% third degree corros|Corros 60-69% of body surface w 10-19% third degree corros +C2876203|T037|PT|T32.61|ICD10CM|Corrosions involving 60-69% of body surface with 10-19% third degree corrosion|Corrosions involving 60-69% of body surface with 10-19% third degree corrosion +C2876204|T037|AB|T32.62|ICD10CM|Corros 60-69% of body surface w 20-29% third degree corros|Corros 60-69% of body surface w 20-29% third degree corros +C2876204|T037|PT|T32.62|ICD10CM|Corrosions involving 60-69% of body surface with 20-29% third degree corrosion|Corrosions involving 60-69% of body surface with 20-29% third degree corrosion +C2876205|T037|AB|T32.63|ICD10CM|Corros 60-69% of body surface w 30-39% third degree corros|Corros 60-69% of body surface w 30-39% third degree corros +C2876205|T037|PT|T32.63|ICD10CM|Corrosions involving 60-69% of body surface with 30-39% third degree corrosion|Corrosions involving 60-69% of body surface with 30-39% third degree corrosion +C2876206|T037|AB|T32.64|ICD10CM|Corros 60-69% of body surface w 40-49% third degree corros|Corros 60-69% of body surface w 40-49% third degree corros +C2876206|T037|PT|T32.64|ICD10CM|Corrosions involving 60-69% of body surface with 40-49% third degree corrosion|Corrosions involving 60-69% of body surface with 40-49% third degree corrosion +C2876207|T037|AB|T32.65|ICD10CM|Corros 60-69% of body surface w 50-59% third degree corros|Corros 60-69% of body surface w 50-59% third degree corros +C2876207|T037|PT|T32.65|ICD10CM|Corrosions involving 60-69% of body surface with 50-59% third degree corrosion|Corrosions involving 60-69% of body surface with 50-59% third degree corrosion +C2876208|T037|AB|T32.66|ICD10CM|Corros 60-69% of body surface w 60-69% third degree corros|Corros 60-69% of body surface w 60-69% third degree corros +C2876208|T037|PT|T32.66|ICD10CM|Corrosions involving 60-69% of body surface with 60-69% third degree corrosion|Corrosions involving 60-69% of body surface with 60-69% third degree corrosion +C0452035|T037|PT|T32.7|ICD10|Corrosions involving 70-79% of body surface|Corrosions involving 70-79% of body surface +C0452035|T037|HT|T32.7|ICD10CM|Corrosions involving 70-79% of body surface|Corrosions involving 70-79% of body surface +C0452035|T037|AB|T32.7|ICD10CM|Corrosions involving 70-79% of body surface|Corrosions involving 70-79% of body surface +C2876209|T037|AB|T32.70|ICD10CM|Corros 70-79% of body surface w 0% to 9% third degree corros|Corros 70-79% of body surface w 0% to 9% third degree corros +C2876209|T037|PT|T32.70|ICD10CM|Corrosions involving 70-79% of body surface with 0% to 9% third degree corrosion|Corrosions involving 70-79% of body surface with 0% to 9% third degree corrosion +C2876210|T037|AB|T32.71|ICD10CM|Corros 70-79% of body surface w 10-19% third degree corros|Corros 70-79% of body surface w 10-19% third degree corros +C2876210|T037|PT|T32.71|ICD10CM|Corrosions involving 70-79% of body surface with 10-19% third degree corrosion|Corrosions involving 70-79% of body surface with 10-19% third degree corrosion +C2876211|T037|AB|T32.72|ICD10CM|Corros 70-79% of body surface w 20-29% third degree corros|Corros 70-79% of body surface w 20-29% third degree corros +C2876211|T037|PT|T32.72|ICD10CM|Corrosions involving 70-79% of body surface with 20-29% third degree corrosion|Corrosions involving 70-79% of body surface with 20-29% third degree corrosion +C2876212|T037|AB|T32.73|ICD10CM|Corros 70-79% of body surface w 30-39% third degree corros|Corros 70-79% of body surface w 30-39% third degree corros +C2876212|T037|PT|T32.73|ICD10CM|Corrosions involving 70-79% of body surface with 30-39% third degree corrosion|Corrosions involving 70-79% of body surface with 30-39% third degree corrosion +C2876213|T037|AB|T32.74|ICD10CM|Corros 70-79% of body surface w 40-49% third degree corros|Corros 70-79% of body surface w 40-49% third degree corros +C2876213|T037|PT|T32.74|ICD10CM|Corrosions involving 70-79% of body surface with 40-49% third degree corrosion|Corrosions involving 70-79% of body surface with 40-49% third degree corrosion +C2876214|T037|AB|T32.75|ICD10CM|Corros 70-79% of body surface w 50-59% third degree corros|Corros 70-79% of body surface w 50-59% third degree corros +C2876214|T037|PT|T32.75|ICD10CM|Corrosions involving 70-79% of body surface with 50-59% third degree corrosion|Corrosions involving 70-79% of body surface with 50-59% third degree corrosion +C2876215|T037|AB|T32.76|ICD10CM|Corros 70-79% of body surface w 60-69% third degree corros|Corros 70-79% of body surface w 60-69% third degree corros +C2876215|T037|PT|T32.76|ICD10CM|Corrosions involving 70-79% of body surface with 60-69% third degree corrosion|Corrosions involving 70-79% of body surface with 60-69% third degree corrosion +C2876216|T037|AB|T32.77|ICD10CM|Corros 70-79% of body surface w 70-79% third degree corros|Corros 70-79% of body surface w 70-79% third degree corros +C2876216|T037|PT|T32.77|ICD10CM|Corrosions involving 70-79% of body surface with 70-79% third degree corrosion|Corrosions involving 70-79% of body surface with 70-79% third degree corrosion +C0452036|T037|HT|T32.8|ICD10CM|Corrosions involving 80-89% of body surface|Corrosions involving 80-89% of body surface +C0452036|T037|AB|T32.8|ICD10CM|Corrosions involving 80-89% of body surface|Corrosions involving 80-89% of body surface +C0452036|T037|PT|T32.8|ICD10|Corrosions involving 80-89% of body surface|Corrosions involving 80-89% of body surface +C2876217|T037|AB|T32.80|ICD10CM|Corros 80-89% of body surface w 0% to 9% third degree corros|Corros 80-89% of body surface w 0% to 9% third degree corros +C2876217|T037|PT|T32.80|ICD10CM|Corrosions involving 80-89% of body surface with 0% to 9% third degree corrosion|Corrosions involving 80-89% of body surface with 0% to 9% third degree corrosion +C2876218|T037|AB|T32.81|ICD10CM|Corros 80-89% of body surface w 10-19% third degree corros|Corros 80-89% of body surface w 10-19% third degree corros +C2876218|T037|PT|T32.81|ICD10CM|Corrosions involving 80-89% of body surface with 10-19% third degree corrosion|Corrosions involving 80-89% of body surface with 10-19% third degree corrosion +C2876219|T037|AB|T32.82|ICD10CM|Corros 80-89% of body surface w 20-29% third degree corros|Corros 80-89% of body surface w 20-29% third degree corros +C2876219|T037|PT|T32.82|ICD10CM|Corrosions involving 80-89% of body surface with 20-29% third degree corrosion|Corrosions involving 80-89% of body surface with 20-29% third degree corrosion +C2876220|T037|AB|T32.83|ICD10CM|Corros 80-89% of body surface w 30-39% third degree corros|Corros 80-89% of body surface w 30-39% third degree corros +C2876220|T037|PT|T32.83|ICD10CM|Corrosions involving 80-89% of body surface with 30-39% third degree corrosion|Corrosions involving 80-89% of body surface with 30-39% third degree corrosion +C2876221|T037|AB|T32.84|ICD10CM|Corros 80-89% of body surface w 40-49% third degree corros|Corros 80-89% of body surface w 40-49% third degree corros +C2876221|T037|PT|T32.84|ICD10CM|Corrosions involving 80-89% of body surface with 40-49% third degree corrosion|Corrosions involving 80-89% of body surface with 40-49% third degree corrosion +C2876222|T037|AB|T32.85|ICD10CM|Corros 80-89% of body surface w 50-59% third degree corros|Corros 80-89% of body surface w 50-59% third degree corros +C2876222|T037|PT|T32.85|ICD10CM|Corrosions involving 80-89% of body surface with 50-59% third degree corrosion|Corrosions involving 80-89% of body surface with 50-59% third degree corrosion +C2876223|T037|AB|T32.86|ICD10CM|Corros 80-89% of body surface w 60-69% third degree corros|Corros 80-89% of body surface w 60-69% third degree corros +C2876223|T037|PT|T32.86|ICD10CM|Corrosions involving 80-89% of body surface with 60-69% third degree corrosion|Corrosions involving 80-89% of body surface with 60-69% third degree corrosion +C2876224|T037|AB|T32.87|ICD10CM|Corros 80-89% of body surface w 70-79% third degree corros|Corros 80-89% of body surface w 70-79% third degree corros +C2876224|T037|PT|T32.87|ICD10CM|Corrosions involving 80-89% of body surface with 70-79% third degree corrosion|Corrosions involving 80-89% of body surface with 70-79% third degree corrosion +C2876225|T037|AB|T32.88|ICD10CM|Corros 80-89% of body surface w 80-89% third degree corros|Corros 80-89% of body surface w 80-89% third degree corros +C2876225|T037|PT|T32.88|ICD10CM|Corrosions involving 80-89% of body surface with 80-89% third degree corrosion|Corrosions involving 80-89% of body surface with 80-89% third degree corrosion +C0452037|T037|PT|T32.9|ICD10|Corrosions involving 90% or more of body surface|Corrosions involving 90% or more of body surface +C0452037|T037|HT|T32.9|ICD10CM|Corrosions involving 90% or more of body surface|Corrosions involving 90% or more of body surface +C0452037|T037|AB|T32.9|ICD10CM|Corrosions involving 90% or more of body surface|Corrosions involving 90% or more of body surface +C2876226|T037|AB|T32.90|ICD10CM|Corros 90%/more of body surfc w 0% to 9% third degree corros|Corros 90%/more of body surfc w 0% to 9% third degree corros +C2876226|T037|PT|T32.90|ICD10CM|Corrosions involving 90% or more of body surface with 0% to 9% third degree corrosion|Corrosions involving 90% or more of body surface with 0% to 9% third degree corrosion +C2876227|T037|AB|T32.91|ICD10CM|Corros 90%/more of body surface w 10-19% third degree corros|Corros 90%/more of body surface w 10-19% third degree corros +C2876227|T037|PT|T32.91|ICD10CM|Corrosions involving 90% or more of body surface with 10-19% third degree corrosion|Corrosions involving 90% or more of body surface with 10-19% third degree corrosion +C2876228|T037|AB|T32.92|ICD10CM|Corros 90%/more of body surface w 20-29% third degree corros|Corros 90%/more of body surface w 20-29% third degree corros +C2876228|T037|PT|T32.92|ICD10CM|Corrosions involving 90% or more of body surface with 20-29% third degree corrosion|Corrosions involving 90% or more of body surface with 20-29% third degree corrosion +C2876229|T037|AB|T32.93|ICD10CM|Corros 90%/more of body surface w 30-39% third degree corros|Corros 90%/more of body surface w 30-39% third degree corros +C2876229|T037|PT|T32.93|ICD10CM|Corrosions involving 90% or more of body surface with 30-39% third degree corrosion|Corrosions involving 90% or more of body surface with 30-39% third degree corrosion +C2876230|T037|AB|T32.94|ICD10CM|Corros 90%/more of body surface w 40-49% third degree corros|Corros 90%/more of body surface w 40-49% third degree corros +C2876230|T037|PT|T32.94|ICD10CM|Corrosions involving 90% or more of body surface with 40-49% third degree corrosion|Corrosions involving 90% or more of body surface with 40-49% third degree corrosion +C2876231|T037|AB|T32.95|ICD10CM|Corros 90%/more of body surface w 50-59% third degree corros|Corros 90%/more of body surface w 50-59% third degree corros +C2876231|T037|PT|T32.95|ICD10CM|Corrosions involving 90% or more of body surface with 50-59% third degree corrosion|Corrosions involving 90% or more of body surface with 50-59% third degree corrosion +C2876232|T037|AB|T32.96|ICD10CM|Corros 90%/more of body surface w 60-69% third degree corros|Corros 90%/more of body surface w 60-69% third degree corros +C2876232|T037|PT|T32.96|ICD10CM|Corrosions involving 90% or more of body surface with 60-69% third degree corrosion|Corrosions involving 90% or more of body surface with 60-69% third degree corrosion +C2876233|T037|AB|T32.97|ICD10CM|Corros 90%/more of body surface w 70-79% third degree corros|Corros 90%/more of body surface w 70-79% third degree corros +C2876233|T037|PT|T32.97|ICD10CM|Corrosions involving 90% or more of body surface with 70-79% third degree corrosion|Corrosions involving 90% or more of body surface with 70-79% third degree corrosion +C2876234|T037|AB|T32.98|ICD10CM|Corros 90%/more of body surface w 80-89% third degree corros|Corros 90%/more of body surface w 80-89% third degree corros +C2876234|T037|PT|T32.98|ICD10CM|Corrosions involving 90% or more of body surface with 80-89% third degree corrosion|Corrosions involving 90% or more of body surface with 80-89% third degree corrosion +C2876235|T037|AB|T32.99|ICD10CM|Corros 90%/more of body surfc w 90%/more third degree corros|Corros 90%/more of body surfc w 90%/more third degree corros +C2876235|T037|PT|T32.99|ICD10CM|Corrosions involving 90% or more of body surface with 90% or more third degree corrosion|Corrosions involving 90% or more of body surface with 90% or more third degree corrosion +C4290398|T037|ET|T33|ICD10CM|frostbite with partial thickness skin loss|frostbite with partial thickness skin loss +C0332699|T037|HT|T33|ICD10CM|Superficial frostbite|Superficial frostbite +C0332699|T037|AB|T33|ICD10CM|Superficial frostbite|Superficial frostbite +C0332699|T037|HT|T33|ICD10|Superficial frostbite|Superficial frostbite +C0016736|T037|HT|T33-T34|ICD10CM|Frostbite (T33-T34)|Frostbite (T33-T34) +C0016736|T037|HT|T33-T35.9|ICD10|Frostbite|Frostbite +C0496085|T037|PT|T33.0|ICD10|Superficial frostbite of head|Superficial frostbite of head +C0496085|T037|HT|T33.0|ICD10CM|Superficial frostbite of head|Superficial frostbite of head +C0496085|T037|AB|T33.0|ICD10CM|Superficial frostbite of head|Superficial frostbite of head +C2876237|T037|AB|T33.01|ICD10CM|Superficial frostbite of ear|Superficial frostbite of ear +C2876237|T037|HT|T33.01|ICD10CM|Superficial frostbite of ear|Superficial frostbite of ear +C2876238|T037|AB|T33.011|ICD10CM|Superficial frostbite of right ear|Superficial frostbite of right ear +C2876238|T037|HT|T33.011|ICD10CM|Superficial frostbite of right ear|Superficial frostbite of right ear +C2876239|T037|AB|T33.011A|ICD10CM|Superficial frostbite of right ear, initial encounter|Superficial frostbite of right ear, initial encounter +C2876239|T037|PT|T33.011A|ICD10CM|Superficial frostbite of right ear, initial encounter|Superficial frostbite of right ear, initial encounter +C2876240|T037|AB|T33.011D|ICD10CM|Superficial frostbite of right ear, subsequent encounter|Superficial frostbite of right ear, subsequent encounter +C2876240|T037|PT|T33.011D|ICD10CM|Superficial frostbite of right ear, subsequent encounter|Superficial frostbite of right ear, subsequent encounter +C2876241|T037|AB|T33.011S|ICD10CM|Superficial frostbite of right ear, sequela|Superficial frostbite of right ear, sequela +C2876241|T037|PT|T33.011S|ICD10CM|Superficial frostbite of right ear, sequela|Superficial frostbite of right ear, sequela +C2876242|T037|AB|T33.012|ICD10CM|Superficial frostbite of left ear|Superficial frostbite of left ear +C2876242|T037|HT|T33.012|ICD10CM|Superficial frostbite of left ear|Superficial frostbite of left ear +C2876243|T037|AB|T33.012A|ICD10CM|Superficial frostbite of left ear, initial encounter|Superficial frostbite of left ear, initial encounter +C2876243|T037|PT|T33.012A|ICD10CM|Superficial frostbite of left ear, initial encounter|Superficial frostbite of left ear, initial encounter +C2876244|T037|AB|T33.012D|ICD10CM|Superficial frostbite of left ear, subsequent encounter|Superficial frostbite of left ear, subsequent encounter +C2876244|T037|PT|T33.012D|ICD10CM|Superficial frostbite of left ear, subsequent encounter|Superficial frostbite of left ear, subsequent encounter +C2876245|T037|AB|T33.012S|ICD10CM|Superficial frostbite of left ear, sequela|Superficial frostbite of left ear, sequela +C2876245|T037|PT|T33.012S|ICD10CM|Superficial frostbite of left ear, sequela|Superficial frostbite of left ear, sequela +C2876246|T037|AB|T33.019|ICD10CM|Superficial frostbite of unspecified ear|Superficial frostbite of unspecified ear +C2876246|T037|HT|T33.019|ICD10CM|Superficial frostbite of unspecified ear|Superficial frostbite of unspecified ear +C2876247|T037|AB|T33.019A|ICD10CM|Superficial frostbite of unspecified ear, initial encounter|Superficial frostbite of unspecified ear, initial encounter +C2876247|T037|PT|T33.019A|ICD10CM|Superficial frostbite of unspecified ear, initial encounter|Superficial frostbite of unspecified ear, initial encounter +C2876248|T037|AB|T33.019D|ICD10CM|Superficial frostbite of unspecified ear, subs encntr|Superficial frostbite of unspecified ear, subs encntr +C2876248|T037|PT|T33.019D|ICD10CM|Superficial frostbite of unspecified ear, subsequent encounter|Superficial frostbite of unspecified ear, subsequent encounter +C2876249|T037|AB|T33.019S|ICD10CM|Superficial frostbite of unspecified ear, sequela|Superficial frostbite of unspecified ear, sequela +C2876249|T037|PT|T33.019S|ICD10CM|Superficial frostbite of unspecified ear, sequela|Superficial frostbite of unspecified ear, sequela +C2876250|T037|AB|T33.02|ICD10CM|Superficial frostbite of nose|Superficial frostbite of nose +C2876250|T037|HT|T33.02|ICD10CM|Superficial frostbite of nose|Superficial frostbite of nose +C2876251|T037|AB|T33.02XA|ICD10CM|Superficial frostbite of nose, initial encounter|Superficial frostbite of nose, initial encounter +C2876251|T037|PT|T33.02XA|ICD10CM|Superficial frostbite of nose, initial encounter|Superficial frostbite of nose, initial encounter +C2876252|T037|AB|T33.02XD|ICD10CM|Superficial frostbite of nose, subsequent encounter|Superficial frostbite of nose, subsequent encounter +C2876252|T037|PT|T33.02XD|ICD10CM|Superficial frostbite of nose, subsequent encounter|Superficial frostbite of nose, subsequent encounter +C2876253|T037|AB|T33.02XS|ICD10CM|Superficial frostbite of nose, sequela|Superficial frostbite of nose, sequela +C2876253|T037|PT|T33.02XS|ICD10CM|Superficial frostbite of nose, sequela|Superficial frostbite of nose, sequela +C2876254|T037|AB|T33.09|ICD10CM|Superficial frostbite of other part of head|Superficial frostbite of other part of head +C2876254|T037|HT|T33.09|ICD10CM|Superficial frostbite of other part of head|Superficial frostbite of other part of head +C2876255|T037|AB|T33.09XA|ICD10CM|Superficial frostbite of other part of head, init encntr|Superficial frostbite of other part of head, init encntr +C2876255|T037|PT|T33.09XA|ICD10CM|Superficial frostbite of other part of head, initial encounter|Superficial frostbite of other part of head, initial encounter +C2876256|T037|AB|T33.09XD|ICD10CM|Superficial frostbite of other part of head, subs encntr|Superficial frostbite of other part of head, subs encntr +C2876256|T037|PT|T33.09XD|ICD10CM|Superficial frostbite of other part of head, subsequent encounter|Superficial frostbite of other part of head, subsequent encounter +C2876257|T037|AB|T33.09XS|ICD10CM|Superficial frostbite of other part of head, sequela|Superficial frostbite of other part of head, sequela +C2876257|T037|PT|T33.09XS|ICD10CM|Superficial frostbite of other part of head, sequela|Superficial frostbite of other part of head, sequela +C0348839|T037|PT|T33.1|ICD10|Superficial frostbite of neck|Superficial frostbite of neck +C0348839|T037|HT|T33.1|ICD10CM|Superficial frostbite of neck|Superficial frostbite of neck +C0348839|T037|AB|T33.1|ICD10CM|Superficial frostbite of neck|Superficial frostbite of neck +C2876258|T037|AB|T33.1XXA|ICD10CM|Superficial frostbite of neck, initial encounter|Superficial frostbite of neck, initial encounter +C2876258|T037|PT|T33.1XXA|ICD10CM|Superficial frostbite of neck, initial encounter|Superficial frostbite of neck, initial encounter +C2876259|T037|AB|T33.1XXD|ICD10CM|Superficial frostbite of neck, subsequent encounter|Superficial frostbite of neck, subsequent encounter +C2876259|T037|PT|T33.1XXD|ICD10CM|Superficial frostbite of neck, subsequent encounter|Superficial frostbite of neck, subsequent encounter +C2876260|T037|AB|T33.1XXS|ICD10CM|Superficial frostbite of neck, sequela|Superficial frostbite of neck, sequela +C2876260|T037|PT|T33.1XXS|ICD10CM|Superficial frostbite of neck, sequela|Superficial frostbite of neck, sequela +C0348840|T037|HT|T33.2|ICD10CM|Superficial frostbite of thorax|Superficial frostbite of thorax +C0348840|T037|AB|T33.2|ICD10CM|Superficial frostbite of thorax|Superficial frostbite of thorax +C0348840|T037|PT|T33.2|ICD10|Superficial frostbite of thorax|Superficial frostbite of thorax +C2876261|T037|AB|T33.2XXA|ICD10CM|Superficial frostbite of thorax, initial encounter|Superficial frostbite of thorax, initial encounter +C2876261|T037|PT|T33.2XXA|ICD10CM|Superficial frostbite of thorax, initial encounter|Superficial frostbite of thorax, initial encounter +C2876262|T037|AB|T33.2XXD|ICD10CM|Superficial frostbite of thorax, subsequent encounter|Superficial frostbite of thorax, subsequent encounter +C2876262|T037|PT|T33.2XXD|ICD10CM|Superficial frostbite of thorax, subsequent encounter|Superficial frostbite of thorax, subsequent encounter +C2876263|T037|AB|T33.2XXS|ICD10CM|Superficial frostbite of thorax, sequela|Superficial frostbite of thorax, sequela +C2876263|T037|PT|T33.2XXS|ICD10CM|Superficial frostbite of thorax, sequela|Superficial frostbite of thorax, sequela +C0348841|T037|AB|T33.3|ICD10CM|Superficial frostbite of abd wall, lower back and pelvis|Superficial frostbite of abd wall, lower back and pelvis +C0348841|T037|HT|T33.3|ICD10CM|Superficial frostbite of abdominal wall, lower back and pelvis|Superficial frostbite of abdominal wall, lower back and pelvis +C0348841|T037|PT|T33.3|ICD10|Superficial frostbite of abdominal wall, lower back and pelvis|Superficial frostbite of abdominal wall, lower back and pelvis +C2876264|T037|AB|T33.3XXA|ICD10CM|Superfic frostbite of abd wall, lower back and pelvis, init|Superfic frostbite of abd wall, lower back and pelvis, init +C2876264|T037|PT|T33.3XXA|ICD10CM|Superficial frostbite of abdominal wall, lower back and pelvis, initial encounter|Superficial frostbite of abdominal wall, lower back and pelvis, initial encounter +C2876265|T037|AB|T33.3XXD|ICD10CM|Superfic frostbite of abd wall, lower back and pelvis, subs|Superfic frostbite of abd wall, lower back and pelvis, subs +C2876265|T037|PT|T33.3XXD|ICD10CM|Superficial frostbite of abdominal wall, lower back and pelvis, subsequent encounter|Superficial frostbite of abdominal wall, lower back and pelvis, subsequent encounter +C2876266|T037|AB|T33.3XXS|ICD10CM|Superfic frostbite of abd wall, low back and pelvis, sequela|Superfic frostbite of abd wall, low back and pelvis, sequela +C2876266|T037|PT|T33.3XXS|ICD10CM|Superficial frostbite of abdominal wall, lower back and pelvis, sequela|Superficial frostbite of abdominal wall, lower back and pelvis, sequela +C0348842|T037|PT|T33.4|ICD10|Superficial frostbite of arm|Superficial frostbite of arm +C0348842|T037|HT|T33.4|ICD10CM|Superficial frostbite of arm|Superficial frostbite of arm +C0348842|T037|AB|T33.4|ICD10CM|Superficial frostbite of arm|Superficial frostbite of arm +C2876267|T037|AB|T33.40|ICD10CM|Superficial frostbite of unspecified arm|Superficial frostbite of unspecified arm +C2876267|T037|HT|T33.40|ICD10CM|Superficial frostbite of unspecified arm|Superficial frostbite of unspecified arm +C2976934|T037|AB|T33.40XA|ICD10CM|Superficial frostbite of unspecified arm, initial encounter|Superficial frostbite of unspecified arm, initial encounter +C2976934|T037|PT|T33.40XA|ICD10CM|Superficial frostbite of unspecified arm, initial encounter|Superficial frostbite of unspecified arm, initial encounter +C2976935|T037|AB|T33.40XD|ICD10CM|Superficial frostbite of unspecified arm, subs encntr|Superficial frostbite of unspecified arm, subs encntr +C2976935|T037|PT|T33.40XD|ICD10CM|Superficial frostbite of unspecified arm, subsequent encounter|Superficial frostbite of unspecified arm, subsequent encounter +C2976936|T037|AB|T33.40XS|ICD10CM|Superficial frostbite of unspecified arm, sequela|Superficial frostbite of unspecified arm, sequela +C2976936|T037|PT|T33.40XS|ICD10CM|Superficial frostbite of unspecified arm, sequela|Superficial frostbite of unspecified arm, sequela +C2876271|T037|AB|T33.41|ICD10CM|Superficial frostbite of right arm|Superficial frostbite of right arm +C2876271|T037|HT|T33.41|ICD10CM|Superficial frostbite of right arm|Superficial frostbite of right arm +C2876272|T037|AB|T33.41XA|ICD10CM|Superficial frostbite of right arm, initial encounter|Superficial frostbite of right arm, initial encounter +C2876272|T037|PT|T33.41XA|ICD10CM|Superficial frostbite of right arm, initial encounter|Superficial frostbite of right arm, initial encounter +C2876273|T037|AB|T33.41XD|ICD10CM|Superficial frostbite of right arm, subsequent encounter|Superficial frostbite of right arm, subsequent encounter +C2876273|T037|PT|T33.41XD|ICD10CM|Superficial frostbite of right arm, subsequent encounter|Superficial frostbite of right arm, subsequent encounter +C2876274|T037|AB|T33.41XS|ICD10CM|Superficial frostbite of right arm, sequela|Superficial frostbite of right arm, sequela +C2876274|T037|PT|T33.41XS|ICD10CM|Superficial frostbite of right arm, sequela|Superficial frostbite of right arm, sequela +C2876275|T037|AB|T33.42|ICD10CM|Superficial frostbite of left arm|Superficial frostbite of left arm +C2876275|T037|HT|T33.42|ICD10CM|Superficial frostbite of left arm|Superficial frostbite of left arm +C2876276|T037|AB|T33.42XA|ICD10CM|Superficial frostbite of left arm, initial encounter|Superficial frostbite of left arm, initial encounter +C2876276|T037|PT|T33.42XA|ICD10CM|Superficial frostbite of left arm, initial encounter|Superficial frostbite of left arm, initial encounter +C2876277|T037|AB|T33.42XD|ICD10CM|Superficial frostbite of left arm, subsequent encounter|Superficial frostbite of left arm, subsequent encounter +C2876277|T037|PT|T33.42XD|ICD10CM|Superficial frostbite of left arm, subsequent encounter|Superficial frostbite of left arm, subsequent encounter +C2876278|T037|AB|T33.42XS|ICD10CM|Superficial frostbite of left arm, sequela|Superficial frostbite of left arm, sequela +C2876278|T037|PT|T33.42XS|ICD10CM|Superficial frostbite of left arm, sequela|Superficial frostbite of left arm, sequela +C0496086|T037|PT|T33.5|ICD10|Superficial frostbite of wrist and hand|Superficial frostbite of wrist and hand +C2876279|T037|AB|T33.5|ICD10CM|Superficial frostbite of wrist, hand, and fingers|Superficial frostbite of wrist, hand, and fingers +C2876279|T037|HT|T33.5|ICD10CM|Superficial frostbite of wrist, hand, and fingers|Superficial frostbite of wrist, hand, and fingers +C1389753|T037|AB|T33.51|ICD10CM|Superficial frostbite of wrist|Superficial frostbite of wrist +C1389753|T037|HT|T33.51|ICD10CM|Superficial frostbite of wrist|Superficial frostbite of wrist +C2876280|T037|AB|T33.511|ICD10CM|Superficial frostbite of right wrist|Superficial frostbite of right wrist +C2876280|T037|HT|T33.511|ICD10CM|Superficial frostbite of right wrist|Superficial frostbite of right wrist +C2876281|T037|AB|T33.511A|ICD10CM|Superficial frostbite of right wrist, initial encounter|Superficial frostbite of right wrist, initial encounter +C2876281|T037|PT|T33.511A|ICD10CM|Superficial frostbite of right wrist, initial encounter|Superficial frostbite of right wrist, initial encounter +C2876282|T037|AB|T33.511D|ICD10CM|Superficial frostbite of right wrist, subsequent encounter|Superficial frostbite of right wrist, subsequent encounter +C2876282|T037|PT|T33.511D|ICD10CM|Superficial frostbite of right wrist, subsequent encounter|Superficial frostbite of right wrist, subsequent encounter +C2876283|T037|AB|T33.511S|ICD10CM|Superficial frostbite of right wrist, sequela|Superficial frostbite of right wrist, sequela +C2876283|T037|PT|T33.511S|ICD10CM|Superficial frostbite of right wrist, sequela|Superficial frostbite of right wrist, sequela +C2876284|T037|AB|T33.512|ICD10CM|Superficial frostbite of left wrist|Superficial frostbite of left wrist +C2876284|T037|HT|T33.512|ICD10CM|Superficial frostbite of left wrist|Superficial frostbite of left wrist +C2876285|T037|AB|T33.512A|ICD10CM|Superficial frostbite of left wrist, initial encounter|Superficial frostbite of left wrist, initial encounter +C2876285|T037|PT|T33.512A|ICD10CM|Superficial frostbite of left wrist, initial encounter|Superficial frostbite of left wrist, initial encounter +C2876286|T037|AB|T33.512D|ICD10CM|Superficial frostbite of left wrist, subsequent encounter|Superficial frostbite of left wrist, subsequent encounter +C2876286|T037|PT|T33.512D|ICD10CM|Superficial frostbite of left wrist, subsequent encounter|Superficial frostbite of left wrist, subsequent encounter +C2876287|T037|AB|T33.512S|ICD10CM|Superficial frostbite of left wrist, sequela|Superficial frostbite of left wrist, sequela +C2876287|T037|PT|T33.512S|ICD10CM|Superficial frostbite of left wrist, sequela|Superficial frostbite of left wrist, sequela +C2876288|T037|AB|T33.519|ICD10CM|Superficial frostbite of unspecified wrist|Superficial frostbite of unspecified wrist +C2876288|T037|HT|T33.519|ICD10CM|Superficial frostbite of unspecified wrist|Superficial frostbite of unspecified wrist +C2876289|T037|AB|T33.519A|ICD10CM|Superficial frostbite of unspecified wrist, init encntr|Superficial frostbite of unspecified wrist, init encntr +C2876289|T037|PT|T33.519A|ICD10CM|Superficial frostbite of unspecified wrist, initial encounter|Superficial frostbite of unspecified wrist, initial encounter +C2876290|T037|AB|T33.519D|ICD10CM|Superficial frostbite of unspecified wrist, subs encntr|Superficial frostbite of unspecified wrist, subs encntr +C2876290|T037|PT|T33.519D|ICD10CM|Superficial frostbite of unspecified wrist, subsequent encounter|Superficial frostbite of unspecified wrist, subsequent encounter +C2876291|T037|AB|T33.519S|ICD10CM|Superficial frostbite of unspecified wrist, sequela|Superficial frostbite of unspecified wrist, sequela +C2876291|T037|PT|T33.519S|ICD10CM|Superficial frostbite of unspecified wrist, sequela|Superficial frostbite of unspecified wrist, sequela +C1389740|T037|AB|T33.52|ICD10CM|Superficial frostbite of hand|Superficial frostbite of hand +C1389740|T037|HT|T33.52|ICD10CM|Superficial frostbite of hand|Superficial frostbite of hand +C2876292|T037|AB|T33.521|ICD10CM|Superficial frostbite of right hand|Superficial frostbite of right hand +C2876292|T037|HT|T33.521|ICD10CM|Superficial frostbite of right hand|Superficial frostbite of right hand +C2876293|T037|AB|T33.521A|ICD10CM|Superficial frostbite of right hand, initial encounter|Superficial frostbite of right hand, initial encounter +C2876293|T037|PT|T33.521A|ICD10CM|Superficial frostbite of right hand, initial encounter|Superficial frostbite of right hand, initial encounter +C2876294|T037|AB|T33.521D|ICD10CM|Superficial frostbite of right hand, subsequent encounter|Superficial frostbite of right hand, subsequent encounter +C2876294|T037|PT|T33.521D|ICD10CM|Superficial frostbite of right hand, subsequent encounter|Superficial frostbite of right hand, subsequent encounter +C2876295|T037|AB|T33.521S|ICD10CM|Superficial frostbite of right hand, sequela|Superficial frostbite of right hand, sequela +C2876295|T037|PT|T33.521S|ICD10CM|Superficial frostbite of right hand, sequela|Superficial frostbite of right hand, sequela +C2876296|T037|AB|T33.522|ICD10CM|Superficial frostbite of left hand|Superficial frostbite of left hand +C2876296|T037|HT|T33.522|ICD10CM|Superficial frostbite of left hand|Superficial frostbite of left hand +C2876297|T037|AB|T33.522A|ICD10CM|Superficial frostbite of left hand, initial encounter|Superficial frostbite of left hand, initial encounter +C2876297|T037|PT|T33.522A|ICD10CM|Superficial frostbite of left hand, initial encounter|Superficial frostbite of left hand, initial encounter +C2876298|T037|AB|T33.522D|ICD10CM|Superficial frostbite of left hand, subsequent encounter|Superficial frostbite of left hand, subsequent encounter +C2876298|T037|PT|T33.522D|ICD10CM|Superficial frostbite of left hand, subsequent encounter|Superficial frostbite of left hand, subsequent encounter +C2876299|T037|AB|T33.522S|ICD10CM|Superficial frostbite of left hand, sequela|Superficial frostbite of left hand, sequela +C2876299|T037|PT|T33.522S|ICD10CM|Superficial frostbite of left hand, sequela|Superficial frostbite of left hand, sequela +C2876300|T037|AB|T33.529|ICD10CM|Superficial frostbite of unspecified hand|Superficial frostbite of unspecified hand +C2876300|T037|HT|T33.529|ICD10CM|Superficial frostbite of unspecified hand|Superficial frostbite of unspecified hand +C2876301|T037|AB|T33.529A|ICD10CM|Superficial frostbite of unspecified hand, initial encounter|Superficial frostbite of unspecified hand, initial encounter +C2876301|T037|PT|T33.529A|ICD10CM|Superficial frostbite of unspecified hand, initial encounter|Superficial frostbite of unspecified hand, initial encounter +C2876302|T037|AB|T33.529D|ICD10CM|Superficial frostbite of unspecified hand, subs encntr|Superficial frostbite of unspecified hand, subs encntr +C2876302|T037|PT|T33.529D|ICD10CM|Superficial frostbite of unspecified hand, subsequent encounter|Superficial frostbite of unspecified hand, subsequent encounter +C2876303|T037|AB|T33.529S|ICD10CM|Superficial frostbite of unspecified hand, sequela|Superficial frostbite of unspecified hand, sequela +C2876303|T037|PT|T33.529S|ICD10CM|Superficial frostbite of unspecified hand, sequela|Superficial frostbite of unspecified hand, sequela +C1389764|T037|AB|T33.53|ICD10CM|Superficial frostbite of finger(s)|Superficial frostbite of finger(s) +C1389764|T037|HT|T33.53|ICD10CM|Superficial frostbite of finger(s)|Superficial frostbite of finger(s) +C2876304|T037|AB|T33.531|ICD10CM|Superficial frostbite of right finger(s)|Superficial frostbite of right finger(s) +C2876304|T037|HT|T33.531|ICD10CM|Superficial frostbite of right finger(s)|Superficial frostbite of right finger(s) +C2876305|T037|AB|T33.531A|ICD10CM|Superficial frostbite of right finger(s), initial encounter|Superficial frostbite of right finger(s), initial encounter +C2876305|T037|PT|T33.531A|ICD10CM|Superficial frostbite of right finger(s), initial encounter|Superficial frostbite of right finger(s), initial encounter +C2876306|T037|AB|T33.531D|ICD10CM|Superficial frostbite of right finger(s), subs encntr|Superficial frostbite of right finger(s), subs encntr +C2876306|T037|PT|T33.531D|ICD10CM|Superficial frostbite of right finger(s), subsequent encounter|Superficial frostbite of right finger(s), subsequent encounter +C2876307|T037|AB|T33.531S|ICD10CM|Superficial frostbite of right finger(s), sequela|Superficial frostbite of right finger(s), sequela +C2876307|T037|PT|T33.531S|ICD10CM|Superficial frostbite of right finger(s), sequela|Superficial frostbite of right finger(s), sequela +C2876308|T037|AB|T33.532|ICD10CM|Superficial frostbite of left finger(s)|Superficial frostbite of left finger(s) +C2876308|T037|HT|T33.532|ICD10CM|Superficial frostbite of left finger(s)|Superficial frostbite of left finger(s) +C2876309|T037|AB|T33.532A|ICD10CM|Superficial frostbite of left finger(s), initial encounter|Superficial frostbite of left finger(s), initial encounter +C2876309|T037|PT|T33.532A|ICD10CM|Superficial frostbite of left finger(s), initial encounter|Superficial frostbite of left finger(s), initial encounter +C2876310|T037|AB|T33.532D|ICD10CM|Superficial frostbite of left finger(s), subs encntr|Superficial frostbite of left finger(s), subs encntr +C2876310|T037|PT|T33.532D|ICD10CM|Superficial frostbite of left finger(s), subsequent encounter|Superficial frostbite of left finger(s), subsequent encounter +C2876311|T037|AB|T33.532S|ICD10CM|Superficial frostbite of left finger(s), sequela|Superficial frostbite of left finger(s), sequela +C2876311|T037|PT|T33.532S|ICD10CM|Superficial frostbite of left finger(s), sequela|Superficial frostbite of left finger(s), sequela +C2876312|T037|AB|T33.539|ICD10CM|Superficial frostbite of unspecified finger(s)|Superficial frostbite of unspecified finger(s) +C2876312|T037|HT|T33.539|ICD10CM|Superficial frostbite of unspecified finger(s)|Superficial frostbite of unspecified finger(s) +C2876313|T037|AB|T33.539A|ICD10CM|Superficial frostbite of unspecified finger(s), init encntr|Superficial frostbite of unspecified finger(s), init encntr +C2876313|T037|PT|T33.539A|ICD10CM|Superficial frostbite of unspecified finger(s), initial encounter|Superficial frostbite of unspecified finger(s), initial encounter +C2876314|T037|AB|T33.539D|ICD10CM|Superficial frostbite of unspecified finger(s), subs encntr|Superficial frostbite of unspecified finger(s), subs encntr +C2876314|T037|PT|T33.539D|ICD10CM|Superficial frostbite of unspecified finger(s), subsequent encounter|Superficial frostbite of unspecified finger(s), subsequent encounter +C2876315|T037|AB|T33.539S|ICD10CM|Superficial frostbite of unspecified finger(s), sequela|Superficial frostbite of unspecified finger(s), sequela +C2876315|T037|PT|T33.539S|ICD10CM|Superficial frostbite of unspecified finger(s), sequela|Superficial frostbite of unspecified finger(s), sequela +C0348843|T037|HT|T33.6|ICD10CM|Superficial frostbite of hip and thigh|Superficial frostbite of hip and thigh +C0348843|T037|AB|T33.6|ICD10CM|Superficial frostbite of hip and thigh|Superficial frostbite of hip and thigh +C0348843|T037|PT|T33.6|ICD10|Superficial frostbite of hip and thigh|Superficial frostbite of hip and thigh +C2876316|T037|AB|T33.60|ICD10CM|Superficial frostbite of unspecified hip and thigh|Superficial frostbite of unspecified hip and thigh +C2876316|T037|HT|T33.60|ICD10CM|Superficial frostbite of unspecified hip and thigh|Superficial frostbite of unspecified hip and thigh +C2976937|T037|AB|T33.60XA|ICD10CM|Superficial frostbite of unsp hip and thigh, init encntr|Superficial frostbite of unsp hip and thigh, init encntr +C2976937|T037|PT|T33.60XA|ICD10CM|Superficial frostbite of unspecified hip and thigh, initial encounter|Superficial frostbite of unspecified hip and thigh, initial encounter +C2976938|T037|AB|T33.60XD|ICD10CM|Superficial frostbite of unsp hip and thigh, subs encntr|Superficial frostbite of unsp hip and thigh, subs encntr +C2976938|T037|PT|T33.60XD|ICD10CM|Superficial frostbite of unspecified hip and thigh, subsequent encounter|Superficial frostbite of unspecified hip and thigh, subsequent encounter +C2976939|T037|AB|T33.60XS|ICD10CM|Superficial frostbite of unspecified hip and thigh, sequela|Superficial frostbite of unspecified hip and thigh, sequela +C2976939|T037|PT|T33.60XS|ICD10CM|Superficial frostbite of unspecified hip and thigh, sequela|Superficial frostbite of unspecified hip and thigh, sequela +C2876320|T037|AB|T33.61|ICD10CM|Superficial frostbite of right hip and thigh|Superficial frostbite of right hip and thigh +C2876320|T037|HT|T33.61|ICD10CM|Superficial frostbite of right hip and thigh|Superficial frostbite of right hip and thigh +C2876321|T037|AB|T33.61XA|ICD10CM|Superficial frostbite of right hip and thigh, init encntr|Superficial frostbite of right hip and thigh, init encntr +C2876321|T037|PT|T33.61XA|ICD10CM|Superficial frostbite of right hip and thigh, initial encounter|Superficial frostbite of right hip and thigh, initial encounter +C2876322|T037|AB|T33.61XD|ICD10CM|Superficial frostbite of right hip and thigh, subs encntr|Superficial frostbite of right hip and thigh, subs encntr +C2876322|T037|PT|T33.61XD|ICD10CM|Superficial frostbite of right hip and thigh, subsequent encounter|Superficial frostbite of right hip and thigh, subsequent encounter +C2876323|T037|AB|T33.61XS|ICD10CM|Superficial frostbite of right hip and thigh, sequela|Superficial frostbite of right hip and thigh, sequela +C2876323|T037|PT|T33.61XS|ICD10CM|Superficial frostbite of right hip and thigh, sequela|Superficial frostbite of right hip and thigh, sequela +C2876324|T037|AB|T33.62|ICD10CM|Superficial frostbite of left hip and thigh|Superficial frostbite of left hip and thigh +C2876324|T037|HT|T33.62|ICD10CM|Superficial frostbite of left hip and thigh|Superficial frostbite of left hip and thigh +C2876325|T037|AB|T33.62XA|ICD10CM|Superficial frostbite of left hip and thigh, init encntr|Superficial frostbite of left hip and thigh, init encntr +C2876325|T037|PT|T33.62XA|ICD10CM|Superficial frostbite of left hip and thigh, initial encounter|Superficial frostbite of left hip and thigh, initial encounter +C2876326|T037|AB|T33.62XD|ICD10CM|Superficial frostbite of left hip and thigh, subs encntr|Superficial frostbite of left hip and thigh, subs encntr +C2876326|T037|PT|T33.62XD|ICD10CM|Superficial frostbite of left hip and thigh, subsequent encounter|Superficial frostbite of left hip and thigh, subsequent encounter +C2876327|T037|AB|T33.62XS|ICD10CM|Superficial frostbite of left hip and thigh, sequela|Superficial frostbite of left hip and thigh, sequela +C2876327|T037|PT|T33.62XS|ICD10CM|Superficial frostbite of left hip and thigh, sequela|Superficial frostbite of left hip and thigh, sequela +C0348844|T037|PT|T33.7|ICD10|Superficial frostbite of knee and lower leg|Superficial frostbite of knee and lower leg +C0348844|T037|HT|T33.7|ICD10CM|Superficial frostbite of knee and lower leg|Superficial frostbite of knee and lower leg +C0348844|T037|AB|T33.7|ICD10CM|Superficial frostbite of knee and lower leg|Superficial frostbite of knee and lower leg +C2876328|T037|AB|T33.70|ICD10CM|Superficial frostbite of unspecified knee and lower leg|Superficial frostbite of unspecified knee and lower leg +C2876328|T037|HT|T33.70|ICD10CM|Superficial frostbite of unspecified knee and lower leg|Superficial frostbite of unspecified knee and lower leg +C2976940|T037|AB|T33.70XA|ICD10CM|Superficial frostbite of unsp knee and lower leg, init|Superficial frostbite of unsp knee and lower leg, init +C2976940|T037|PT|T33.70XA|ICD10CM|Superficial frostbite of unspecified knee and lower leg, initial encounter|Superficial frostbite of unspecified knee and lower leg, initial encounter +C2976941|T037|AB|T33.70XD|ICD10CM|Superficial frostbite of unsp knee and lower leg, subs|Superficial frostbite of unsp knee and lower leg, subs +C2976941|T037|PT|T33.70XD|ICD10CM|Superficial frostbite of unspecified knee and lower leg, subsequent encounter|Superficial frostbite of unspecified knee and lower leg, subsequent encounter +C2976942|T037|AB|T33.70XS|ICD10CM|Superficial frostbite of unsp knee and lower leg, sequela|Superficial frostbite of unsp knee and lower leg, sequela +C2976942|T037|PT|T33.70XS|ICD10CM|Superficial frostbite of unspecified knee and lower leg, sequela|Superficial frostbite of unspecified knee and lower leg, sequela +C2876332|T037|AB|T33.71|ICD10CM|Superficial frostbite of right knee and lower leg|Superficial frostbite of right knee and lower leg +C2876332|T037|HT|T33.71|ICD10CM|Superficial frostbite of right knee and lower leg|Superficial frostbite of right knee and lower leg +C2876333|T037|AB|T33.71XA|ICD10CM|Superficial frostbite of right knee and lower leg, init|Superficial frostbite of right knee and lower leg, init +C2876333|T037|PT|T33.71XA|ICD10CM|Superficial frostbite of right knee and lower leg, initial encounter|Superficial frostbite of right knee and lower leg, initial encounter +C2876334|T037|AB|T33.71XD|ICD10CM|Superficial frostbite of right knee and lower leg, subs|Superficial frostbite of right knee and lower leg, subs +C2876334|T037|PT|T33.71XD|ICD10CM|Superficial frostbite of right knee and lower leg, subsequent encounter|Superficial frostbite of right knee and lower leg, subsequent encounter +C2876335|T037|AB|T33.71XS|ICD10CM|Superficial frostbite of right knee and lower leg, sequela|Superficial frostbite of right knee and lower leg, sequela +C2876335|T037|PT|T33.71XS|ICD10CM|Superficial frostbite of right knee and lower leg, sequela|Superficial frostbite of right knee and lower leg, sequela +C2876336|T037|AB|T33.72|ICD10CM|Superficial frostbite of left knee and lower leg|Superficial frostbite of left knee and lower leg +C2876336|T037|HT|T33.72|ICD10CM|Superficial frostbite of left knee and lower leg|Superficial frostbite of left knee and lower leg +C2876337|T037|AB|T33.72XA|ICD10CM|Superficial frostbite of left knee and lower leg, init|Superficial frostbite of left knee and lower leg, init +C2876337|T037|PT|T33.72XA|ICD10CM|Superficial frostbite of left knee and lower leg, initial encounter|Superficial frostbite of left knee and lower leg, initial encounter +C2876338|T037|AB|T33.72XD|ICD10CM|Superficial frostbite of left knee and lower leg, subs|Superficial frostbite of left knee and lower leg, subs +C2876338|T037|PT|T33.72XD|ICD10CM|Superficial frostbite of left knee and lower leg, subsequent encounter|Superficial frostbite of left knee and lower leg, subsequent encounter +C2876339|T037|AB|T33.72XS|ICD10CM|Superficial frostbite of left knee and lower leg, sequela|Superficial frostbite of left knee and lower leg, sequela +C2876339|T037|PT|T33.72XS|ICD10CM|Superficial frostbite of left knee and lower leg, sequela|Superficial frostbite of left knee and lower leg, sequela +C0496087|T037|PT|T33.8|ICD10|Superficial frostbite of ankle and foot|Superficial frostbite of ankle and foot +C2876340|T037|AB|T33.8|ICD10CM|Superficial frostbite of ankle, foot, and toe(s)|Superficial frostbite of ankle, foot, and toe(s) +C2876340|T037|HT|T33.8|ICD10CM|Superficial frostbite of ankle, foot, and toe(s)|Superficial frostbite of ankle, foot, and toe(s) +C1389731|T037|AB|T33.81|ICD10CM|Superficial frostbite of ankle|Superficial frostbite of ankle +C1389731|T037|HT|T33.81|ICD10CM|Superficial frostbite of ankle|Superficial frostbite of ankle +C2876341|T037|AB|T33.811|ICD10CM|Superficial frostbite of right ankle|Superficial frostbite of right ankle +C2876341|T037|HT|T33.811|ICD10CM|Superficial frostbite of right ankle|Superficial frostbite of right ankle +C2876342|T037|AB|T33.811A|ICD10CM|Superficial frostbite of right ankle, initial encounter|Superficial frostbite of right ankle, initial encounter +C2876342|T037|PT|T33.811A|ICD10CM|Superficial frostbite of right ankle, initial encounter|Superficial frostbite of right ankle, initial encounter +C2876343|T037|AB|T33.811D|ICD10CM|Superficial frostbite of right ankle, subsequent encounter|Superficial frostbite of right ankle, subsequent encounter +C2876343|T037|PT|T33.811D|ICD10CM|Superficial frostbite of right ankle, subsequent encounter|Superficial frostbite of right ankle, subsequent encounter +C2876344|T037|AB|T33.811S|ICD10CM|Superficial frostbite of right ankle, sequela|Superficial frostbite of right ankle, sequela +C2876344|T037|PT|T33.811S|ICD10CM|Superficial frostbite of right ankle, sequela|Superficial frostbite of right ankle, sequela +C2876345|T037|AB|T33.812|ICD10CM|Superficial frostbite of left ankle|Superficial frostbite of left ankle +C2876345|T037|HT|T33.812|ICD10CM|Superficial frostbite of left ankle|Superficial frostbite of left ankle +C2876346|T037|AB|T33.812A|ICD10CM|Superficial frostbite of left ankle, initial encounter|Superficial frostbite of left ankle, initial encounter +C2876346|T037|PT|T33.812A|ICD10CM|Superficial frostbite of left ankle, initial encounter|Superficial frostbite of left ankle, initial encounter +C2876347|T037|AB|T33.812D|ICD10CM|Superficial frostbite of left ankle, subsequent encounter|Superficial frostbite of left ankle, subsequent encounter +C2876347|T037|PT|T33.812D|ICD10CM|Superficial frostbite of left ankle, subsequent encounter|Superficial frostbite of left ankle, subsequent encounter +C2876348|T037|AB|T33.812S|ICD10CM|Superficial frostbite of left ankle, sequela|Superficial frostbite of left ankle, sequela +C2876348|T037|PT|T33.812S|ICD10CM|Superficial frostbite of left ankle, sequela|Superficial frostbite of left ankle, sequela +C2876349|T037|AB|T33.819|ICD10CM|Superficial frostbite of unspecified ankle|Superficial frostbite of unspecified ankle +C2876349|T037|HT|T33.819|ICD10CM|Superficial frostbite of unspecified ankle|Superficial frostbite of unspecified ankle +C2876350|T037|AB|T33.819A|ICD10CM|Superficial frostbite of unspecified ankle, init encntr|Superficial frostbite of unspecified ankle, init encntr +C2876350|T037|PT|T33.819A|ICD10CM|Superficial frostbite of unspecified ankle, initial encounter|Superficial frostbite of unspecified ankle, initial encounter +C2876351|T037|AB|T33.819D|ICD10CM|Superficial frostbite of unspecified ankle, subs encntr|Superficial frostbite of unspecified ankle, subs encntr +C2876351|T037|PT|T33.819D|ICD10CM|Superficial frostbite of unspecified ankle, subsequent encounter|Superficial frostbite of unspecified ankle, subsequent encounter +C2876352|T037|AB|T33.819S|ICD10CM|Superficial frostbite of unspecified ankle, sequela|Superficial frostbite of unspecified ankle, sequela +C2876352|T037|PT|T33.819S|ICD10CM|Superficial frostbite of unspecified ankle, sequela|Superficial frostbite of unspecified ankle, sequela +C1389766|T037|AB|T33.82|ICD10CM|Superficial frostbite of foot|Superficial frostbite of foot +C1389766|T037|HT|T33.82|ICD10CM|Superficial frostbite of foot|Superficial frostbite of foot +C2876353|T037|AB|T33.821|ICD10CM|Superficial frostbite of right foot|Superficial frostbite of right foot +C2876353|T037|HT|T33.821|ICD10CM|Superficial frostbite of right foot|Superficial frostbite of right foot +C2876354|T037|AB|T33.821A|ICD10CM|Superficial frostbite of right foot, initial encounter|Superficial frostbite of right foot, initial encounter +C2876354|T037|PT|T33.821A|ICD10CM|Superficial frostbite of right foot, initial encounter|Superficial frostbite of right foot, initial encounter +C2876355|T037|AB|T33.821D|ICD10CM|Superficial frostbite of right foot, subsequent encounter|Superficial frostbite of right foot, subsequent encounter +C2876355|T037|PT|T33.821D|ICD10CM|Superficial frostbite of right foot, subsequent encounter|Superficial frostbite of right foot, subsequent encounter +C2876356|T037|AB|T33.821S|ICD10CM|Superficial frostbite of right foot, sequela|Superficial frostbite of right foot, sequela +C2876356|T037|PT|T33.821S|ICD10CM|Superficial frostbite of right foot, sequela|Superficial frostbite of right foot, sequela +C2876357|T037|AB|T33.822|ICD10CM|Superficial frostbite of left foot|Superficial frostbite of left foot +C2876357|T037|HT|T33.822|ICD10CM|Superficial frostbite of left foot|Superficial frostbite of left foot +C2876358|T037|AB|T33.822A|ICD10CM|Superficial frostbite of left foot, initial encounter|Superficial frostbite of left foot, initial encounter +C2876358|T037|PT|T33.822A|ICD10CM|Superficial frostbite of left foot, initial encounter|Superficial frostbite of left foot, initial encounter +C2876359|T037|AB|T33.822D|ICD10CM|Superficial frostbite of left foot, subsequent encounter|Superficial frostbite of left foot, subsequent encounter +C2876359|T037|PT|T33.822D|ICD10CM|Superficial frostbite of left foot, subsequent encounter|Superficial frostbite of left foot, subsequent encounter +C2876360|T037|AB|T33.822S|ICD10CM|Superficial frostbite of left foot, sequela|Superficial frostbite of left foot, sequela +C2876360|T037|PT|T33.822S|ICD10CM|Superficial frostbite of left foot, sequela|Superficial frostbite of left foot, sequela +C2876361|T037|AB|T33.829|ICD10CM|Superficial frostbite of unspecified foot|Superficial frostbite of unspecified foot +C2876361|T037|HT|T33.829|ICD10CM|Superficial frostbite of unspecified foot|Superficial frostbite of unspecified foot +C2876362|T037|AB|T33.829A|ICD10CM|Superficial frostbite of unspecified foot, initial encounter|Superficial frostbite of unspecified foot, initial encounter +C2876362|T037|PT|T33.829A|ICD10CM|Superficial frostbite of unspecified foot, initial encounter|Superficial frostbite of unspecified foot, initial encounter +C2876363|T037|AB|T33.829D|ICD10CM|Superficial frostbite of unspecified foot, subs encntr|Superficial frostbite of unspecified foot, subs encntr +C2876363|T037|PT|T33.829D|ICD10CM|Superficial frostbite of unspecified foot, subsequent encounter|Superficial frostbite of unspecified foot, subsequent encounter +C2876364|T037|AB|T33.829S|ICD10CM|Superficial frostbite of unspecified foot, sequela|Superficial frostbite of unspecified foot, sequela +C2876364|T037|PT|T33.829S|ICD10CM|Superficial frostbite of unspecified foot, sequela|Superficial frostbite of unspecified foot, sequela +C1389761|T037|AB|T33.83|ICD10CM|Superficial frostbite of toe(s)|Superficial frostbite of toe(s) +C1389761|T037|HT|T33.83|ICD10CM|Superficial frostbite of toe(s)|Superficial frostbite of toe(s) +C2876365|T037|AB|T33.831|ICD10CM|Superficial frostbite of right toe(s)|Superficial frostbite of right toe(s) +C2876365|T037|HT|T33.831|ICD10CM|Superficial frostbite of right toe(s)|Superficial frostbite of right toe(s) +C2876366|T037|AB|T33.831A|ICD10CM|Superficial frostbite of right toe(s), initial encounter|Superficial frostbite of right toe(s), initial encounter +C2876366|T037|PT|T33.831A|ICD10CM|Superficial frostbite of right toe(s), initial encounter|Superficial frostbite of right toe(s), initial encounter +C2876367|T037|AB|T33.831D|ICD10CM|Superficial frostbite of right toe(s), subsequent encounter|Superficial frostbite of right toe(s), subsequent encounter +C2876367|T037|PT|T33.831D|ICD10CM|Superficial frostbite of right toe(s), subsequent encounter|Superficial frostbite of right toe(s), subsequent encounter +C2876368|T037|AB|T33.831S|ICD10CM|Superficial frostbite of right toe(s), sequela|Superficial frostbite of right toe(s), sequela +C2876368|T037|PT|T33.831S|ICD10CM|Superficial frostbite of right toe(s), sequela|Superficial frostbite of right toe(s), sequela +C2876369|T037|AB|T33.832|ICD10CM|Superficial frostbite of left toe(s)|Superficial frostbite of left toe(s) +C2876369|T037|HT|T33.832|ICD10CM|Superficial frostbite of left toe(s)|Superficial frostbite of left toe(s) +C2876370|T037|AB|T33.832A|ICD10CM|Superficial frostbite of left toe(s), initial encounter|Superficial frostbite of left toe(s), initial encounter +C2876370|T037|PT|T33.832A|ICD10CM|Superficial frostbite of left toe(s), initial encounter|Superficial frostbite of left toe(s), initial encounter +C2876371|T037|AB|T33.832D|ICD10CM|Superficial frostbite of left toe(s), subsequent encounter|Superficial frostbite of left toe(s), subsequent encounter +C2876371|T037|PT|T33.832D|ICD10CM|Superficial frostbite of left toe(s), subsequent encounter|Superficial frostbite of left toe(s), subsequent encounter +C2876372|T037|AB|T33.832S|ICD10CM|Superficial frostbite of left toe(s), sequela|Superficial frostbite of left toe(s), sequela +C2876372|T037|PT|T33.832S|ICD10CM|Superficial frostbite of left toe(s), sequela|Superficial frostbite of left toe(s), sequela +C2876373|T037|AB|T33.839|ICD10CM|Superficial frostbite of unspecified toe(s)|Superficial frostbite of unspecified toe(s) +C2876373|T037|HT|T33.839|ICD10CM|Superficial frostbite of unspecified toe(s)|Superficial frostbite of unspecified toe(s) +C2876374|T037|AB|T33.839A|ICD10CM|Superficial frostbite of unspecified toe(s), init encntr|Superficial frostbite of unspecified toe(s), init encntr +C2876374|T037|PT|T33.839A|ICD10CM|Superficial frostbite of unspecified toe(s), initial encounter|Superficial frostbite of unspecified toe(s), initial encounter +C2876375|T037|AB|T33.839D|ICD10CM|Superficial frostbite of unspecified toe(s), subs encntr|Superficial frostbite of unspecified toe(s), subs encntr +C2876375|T037|PT|T33.839D|ICD10CM|Superficial frostbite of unspecified toe(s), subsequent encounter|Superficial frostbite of unspecified toe(s), subsequent encounter +C2876376|T037|AB|T33.839S|ICD10CM|Superficial frostbite of unspecified toe(s), sequela|Superficial frostbite of unspecified toe(s), sequela +C2876376|T037|PT|T33.839S|ICD10CM|Superficial frostbite of unspecified toe(s), sequela|Superficial frostbite of unspecified toe(s), sequela +C0478419|T037|PT|T33.9|ICD10|Superficial frostbite of other and unspecified sites|Superficial frostbite of other and unspecified sites +C0478419|T037|HT|T33.9|ICD10CM|Superficial frostbite of other and unspecified sites|Superficial frostbite of other and unspecified sites +C0478419|T037|AB|T33.9|ICD10CM|Superficial frostbite of other and unspecified sites|Superficial frostbite of other and unspecified sites +C0332699|T037|ET|T33.90|ICD10CM|Superficial frostbite NOS|Superficial frostbite NOS +C2876377|T037|AB|T33.90|ICD10CM|Superficial frostbite of unspecified sites|Superficial frostbite of unspecified sites +C2876377|T037|HT|T33.90|ICD10CM|Superficial frostbite of unspecified sites|Superficial frostbite of unspecified sites +C2876378|T037|AB|T33.90XA|ICD10CM|Superficial frostbite of unspecified sites, init encntr|Superficial frostbite of unspecified sites, init encntr +C2876378|T037|PT|T33.90XA|ICD10CM|Superficial frostbite of unspecified sites, initial encounter|Superficial frostbite of unspecified sites, initial encounter +C2876379|T037|AB|T33.90XD|ICD10CM|Superficial frostbite of unspecified sites, subs encntr|Superficial frostbite of unspecified sites, subs encntr +C2876379|T037|PT|T33.90XD|ICD10CM|Superficial frostbite of unspecified sites, subsequent encounter|Superficial frostbite of unspecified sites, subsequent encounter +C2876380|T037|AB|T33.90XS|ICD10CM|Superficial frostbite of unspecified sites, sequela|Superficial frostbite of unspecified sites, sequela +C2876380|T037|PT|T33.90XS|ICD10CM|Superficial frostbite of unspecified sites, sequela|Superficial frostbite of unspecified sites, sequela +C1389737|T037|ET|T33.99|ICD10CM|Superficial frostbite of leg NOS|Superficial frostbite of leg NOS +C2876381|T037|AB|T33.99|ICD10CM|Superficial frostbite of other sites|Superficial frostbite of other sites +C2876381|T037|HT|T33.99|ICD10CM|Superficial frostbite of other sites|Superficial frostbite of other sites +C1389756|T037|ET|T33.99|ICD10CM|Superficial frostbite of trunk NOS|Superficial frostbite of trunk NOS +C2876382|T037|AB|T33.99XA|ICD10CM|Superficial frostbite of other sites, initial encounter|Superficial frostbite of other sites, initial encounter +C2876382|T037|PT|T33.99XA|ICD10CM|Superficial frostbite of other sites, initial encounter|Superficial frostbite of other sites, initial encounter +C2876383|T037|AB|T33.99XD|ICD10CM|Superficial frostbite of other sites, subsequent encounter|Superficial frostbite of other sites, subsequent encounter +C2876383|T037|PT|T33.99XD|ICD10CM|Superficial frostbite of other sites, subsequent encounter|Superficial frostbite of other sites, subsequent encounter +C2876384|T037|AB|T33.99XS|ICD10CM|Superficial frostbite of other sites, sequela|Superficial frostbite of other sites, sequela +C2876384|T037|PT|T33.99XS|ICD10CM|Superficial frostbite of other sites, sequela|Superficial frostbite of other sites, sequela +C0348846|T037|HT|T34|ICD10CM|Frostbite with tissue necrosis|Frostbite with tissue necrosis +C0348846|T037|AB|T34|ICD10CM|Frostbite with tissue necrosis|Frostbite with tissue necrosis +C0348846|T037|HT|T34|ICD10|Frostbite with tissue necrosis|Frostbite with tissue necrosis +C0348847|T037|PT|T34.0|ICD10|Frostbite with tissue necrosis of head|Frostbite with tissue necrosis of head +C0348847|T037|HT|T34.0|ICD10CM|Frostbite with tissue necrosis of head|Frostbite with tissue necrosis of head +C0348847|T037|AB|T34.0|ICD10CM|Frostbite with tissue necrosis of head|Frostbite with tissue necrosis of head +C2876385|T037|AB|T34.01|ICD10CM|Frostbite with tissue necrosis of ear|Frostbite with tissue necrosis of ear +C2876385|T037|HT|T34.01|ICD10CM|Frostbite with tissue necrosis of ear|Frostbite with tissue necrosis of ear +C2876386|T037|AB|T34.011|ICD10CM|Frostbite with tissue necrosis of right ear|Frostbite with tissue necrosis of right ear +C2876386|T037|HT|T34.011|ICD10CM|Frostbite with tissue necrosis of right ear|Frostbite with tissue necrosis of right ear +C2876387|T037|AB|T34.011A|ICD10CM|Frostbite with tissue necrosis of right ear, init encntr|Frostbite with tissue necrosis of right ear, init encntr +C2876387|T037|PT|T34.011A|ICD10CM|Frostbite with tissue necrosis of right ear, initial encounter|Frostbite with tissue necrosis of right ear, initial encounter +C2876388|T037|AB|T34.011D|ICD10CM|Frostbite with tissue necrosis of right ear, subs encntr|Frostbite with tissue necrosis of right ear, subs encntr +C2876388|T037|PT|T34.011D|ICD10CM|Frostbite with tissue necrosis of right ear, subsequent encounter|Frostbite with tissue necrosis of right ear, subsequent encounter +C2876389|T037|AB|T34.011S|ICD10CM|Frostbite with tissue necrosis of right ear, sequela|Frostbite with tissue necrosis of right ear, sequela +C2876389|T037|PT|T34.011S|ICD10CM|Frostbite with tissue necrosis of right ear, sequela|Frostbite with tissue necrosis of right ear, sequela +C2876390|T037|AB|T34.012|ICD10CM|Frostbite with tissue necrosis of left ear|Frostbite with tissue necrosis of left ear +C2876390|T037|HT|T34.012|ICD10CM|Frostbite with tissue necrosis of left ear|Frostbite with tissue necrosis of left ear +C2876391|T037|AB|T34.012A|ICD10CM|Frostbite with tissue necrosis of left ear, init encntr|Frostbite with tissue necrosis of left ear, init encntr +C2876391|T037|PT|T34.012A|ICD10CM|Frostbite with tissue necrosis of left ear, initial encounter|Frostbite with tissue necrosis of left ear, initial encounter +C2876392|T037|AB|T34.012D|ICD10CM|Frostbite with tissue necrosis of left ear, subs encntr|Frostbite with tissue necrosis of left ear, subs encntr +C2876392|T037|PT|T34.012D|ICD10CM|Frostbite with tissue necrosis of left ear, subsequent encounter|Frostbite with tissue necrosis of left ear, subsequent encounter +C2876393|T037|AB|T34.012S|ICD10CM|Frostbite with tissue necrosis of left ear, sequela|Frostbite with tissue necrosis of left ear, sequela +C2876393|T037|PT|T34.012S|ICD10CM|Frostbite with tissue necrosis of left ear, sequela|Frostbite with tissue necrosis of left ear, sequela +C2876394|T037|AB|T34.019|ICD10CM|Frostbite with tissue necrosis of unspecified ear|Frostbite with tissue necrosis of unspecified ear +C2876394|T037|HT|T34.019|ICD10CM|Frostbite with tissue necrosis of unspecified ear|Frostbite with tissue necrosis of unspecified ear +C2876395|T037|AB|T34.019A|ICD10CM|Frostbite with tissue necrosis of unsp ear, init encntr|Frostbite with tissue necrosis of unsp ear, init encntr +C2876395|T037|PT|T34.019A|ICD10CM|Frostbite with tissue necrosis of unspecified ear, initial encounter|Frostbite with tissue necrosis of unspecified ear, initial encounter +C2876396|T037|AB|T34.019D|ICD10CM|Frostbite with tissue necrosis of unsp ear, subs encntr|Frostbite with tissue necrosis of unsp ear, subs encntr +C2876396|T037|PT|T34.019D|ICD10CM|Frostbite with tissue necrosis of unspecified ear, subsequent encounter|Frostbite with tissue necrosis of unspecified ear, subsequent encounter +C2876397|T037|AB|T34.019S|ICD10CM|Frostbite with tissue necrosis of unspecified ear, sequela|Frostbite with tissue necrosis of unspecified ear, sequela +C2876397|T037|PT|T34.019S|ICD10CM|Frostbite with tissue necrosis of unspecified ear, sequela|Frostbite with tissue necrosis of unspecified ear, sequela +C2876398|T037|AB|T34.02|ICD10CM|Frostbite with tissue necrosis of nose|Frostbite with tissue necrosis of nose +C2876398|T037|HT|T34.02|ICD10CM|Frostbite with tissue necrosis of nose|Frostbite with tissue necrosis of nose +C2876399|T037|AB|T34.02XA|ICD10CM|Frostbite with tissue necrosis of nose, initial encounter|Frostbite with tissue necrosis of nose, initial encounter +C2876399|T037|PT|T34.02XA|ICD10CM|Frostbite with tissue necrosis of nose, initial encounter|Frostbite with tissue necrosis of nose, initial encounter +C2876400|T037|AB|T34.02XD|ICD10CM|Frostbite with tissue necrosis of nose, subsequent encounter|Frostbite with tissue necrosis of nose, subsequent encounter +C2876400|T037|PT|T34.02XD|ICD10CM|Frostbite with tissue necrosis of nose, subsequent encounter|Frostbite with tissue necrosis of nose, subsequent encounter +C2876401|T037|AB|T34.02XS|ICD10CM|Frostbite with tissue necrosis of nose, sequela|Frostbite with tissue necrosis of nose, sequela +C2876401|T037|PT|T34.02XS|ICD10CM|Frostbite with tissue necrosis of nose, sequela|Frostbite with tissue necrosis of nose, sequela +C2876402|T037|AB|T34.09|ICD10CM|Frostbite with tissue necrosis of other part of head|Frostbite with tissue necrosis of other part of head +C2876402|T037|HT|T34.09|ICD10CM|Frostbite with tissue necrosis of other part of head|Frostbite with tissue necrosis of other part of head +C2876403|T037|AB|T34.09XA|ICD10CM|Frostbite w tissue necrosis of oth part of head, init encntr|Frostbite w tissue necrosis of oth part of head, init encntr +C2876403|T037|PT|T34.09XA|ICD10CM|Frostbite with tissue necrosis of other part of head, initial encounter|Frostbite with tissue necrosis of other part of head, initial encounter +C2876404|T037|AB|T34.09XD|ICD10CM|Frostbite w tissue necrosis of oth part of head, subs encntr|Frostbite w tissue necrosis of oth part of head, subs encntr +C2876404|T037|PT|T34.09XD|ICD10CM|Frostbite with tissue necrosis of other part of head, subsequent encounter|Frostbite with tissue necrosis of other part of head, subsequent encounter +C2876405|T037|AB|T34.09XS|ICD10CM|Frostbite with tissue necrosis of oth part of head, sequela|Frostbite with tissue necrosis of oth part of head, sequela +C2876405|T037|PT|T34.09XS|ICD10CM|Frostbite with tissue necrosis of other part of head, sequela|Frostbite with tissue necrosis of other part of head, sequela +C0348848|T037|HT|T34.1|ICD10CM|Frostbite with tissue necrosis of neck|Frostbite with tissue necrosis of neck +C0348848|T037|AB|T34.1|ICD10CM|Frostbite with tissue necrosis of neck|Frostbite with tissue necrosis of neck +C0348848|T037|PT|T34.1|ICD10|Frostbite with tissue necrosis of neck|Frostbite with tissue necrosis of neck +C2876406|T037|AB|T34.1XXA|ICD10CM|Frostbite with tissue necrosis of neck, initial encounter|Frostbite with tissue necrosis of neck, initial encounter +C2876406|T037|PT|T34.1XXA|ICD10CM|Frostbite with tissue necrosis of neck, initial encounter|Frostbite with tissue necrosis of neck, initial encounter +C2876407|T037|AB|T34.1XXD|ICD10CM|Frostbite with tissue necrosis of neck, subsequent encounter|Frostbite with tissue necrosis of neck, subsequent encounter +C2876407|T037|PT|T34.1XXD|ICD10CM|Frostbite with tissue necrosis of neck, subsequent encounter|Frostbite with tissue necrosis of neck, subsequent encounter +C2876408|T037|AB|T34.1XXS|ICD10CM|Frostbite with tissue necrosis of neck, sequela|Frostbite with tissue necrosis of neck, sequela +C2876408|T037|PT|T34.1XXS|ICD10CM|Frostbite with tissue necrosis of neck, sequela|Frostbite with tissue necrosis of neck, sequela +C0348849|T037|PT|T34.2|ICD10|Frostbite with tissue necrosis of thorax|Frostbite with tissue necrosis of thorax +C0348849|T037|HT|T34.2|ICD10CM|Frostbite with tissue necrosis of thorax|Frostbite with tissue necrosis of thorax +C0348849|T037|AB|T34.2|ICD10CM|Frostbite with tissue necrosis of thorax|Frostbite with tissue necrosis of thorax +C2876409|T037|AB|T34.2XXA|ICD10CM|Frostbite with tissue necrosis of thorax, initial encounter|Frostbite with tissue necrosis of thorax, initial encounter +C2876409|T037|PT|T34.2XXA|ICD10CM|Frostbite with tissue necrosis of thorax, initial encounter|Frostbite with tissue necrosis of thorax, initial encounter +C2876410|T037|AB|T34.2XXD|ICD10CM|Frostbite with tissue necrosis of thorax, subs encntr|Frostbite with tissue necrosis of thorax, subs encntr +C2876410|T037|PT|T34.2XXD|ICD10CM|Frostbite with tissue necrosis of thorax, subsequent encounter|Frostbite with tissue necrosis of thorax, subsequent encounter +C2876411|T037|AB|T34.2XXS|ICD10CM|Frostbite with tissue necrosis of thorax, sequela|Frostbite with tissue necrosis of thorax, sequela +C2876411|T037|PT|T34.2XXS|ICD10CM|Frostbite with tissue necrosis of thorax, sequela|Frostbite with tissue necrosis of thorax, sequela +C0348850|T037|AB|T34.3|ICD10CM|Frostbite w tissue necros abd wall, lower back and pelvis|Frostbite w tissue necros abd wall, lower back and pelvis +C0348850|T037|HT|T34.3|ICD10CM|Frostbite with tissue necrosis of abdominal wall, lower back and pelvis|Frostbite with tissue necrosis of abdominal wall, lower back and pelvis +C0348850|T037|PT|T34.3|ICD10|Frostbite with tissue necrosis of abdominal wall, lower back and pelvis|Frostbite with tissue necrosis of abdominal wall, lower back and pelvis +C2876412|T037|PT|T34.3XXA|ICD10CM|Frostbite with tissue necrosis of abdominal wall, lower back and pelvis, initial encounter|Frostbite with tissue necrosis of abdominal wall, lower back and pelvis, initial encounter +C2876412|T037|AB|T34.3XXA|ICD10CM|Frstbte w tissue necros abd wall, low back and pelvis, init|Frstbte w tissue necros abd wall, low back and pelvis, init +C2876413|T037|PT|T34.3XXD|ICD10CM|Frostbite with tissue necrosis of abdominal wall, lower back and pelvis, subsequent encounter|Frostbite with tissue necrosis of abdominal wall, lower back and pelvis, subsequent encounter +C2876413|T037|AB|T34.3XXD|ICD10CM|Frstbte w tissue necros abd wall, low back and pelvis, subs|Frstbte w tissue necros abd wall, low back and pelvis, subs +C2876414|T037|PT|T34.3XXS|ICD10CM|Frostbite with tissue necrosis of abdominal wall, lower back and pelvis, sequela|Frostbite with tissue necrosis of abdominal wall, lower back and pelvis, sequela +C2876414|T037|AB|T34.3XXS|ICD10CM|Frstbte w tissue necros abd wall, low back and pelvis, sqla|Frstbte w tissue necros abd wall, low back and pelvis, sqla +C0348851|T037|PT|T34.4|ICD10|Frostbite with tissue necrosis of arm|Frostbite with tissue necrosis of arm +C0348851|T037|HT|T34.4|ICD10CM|Frostbite with tissue necrosis of arm|Frostbite with tissue necrosis of arm +C0348851|T037|AB|T34.4|ICD10CM|Frostbite with tissue necrosis of arm|Frostbite with tissue necrosis of arm +C2876415|T037|AB|T34.40|ICD10CM|Frostbite with tissue necrosis of unspecified arm|Frostbite with tissue necrosis of unspecified arm +C2876415|T037|HT|T34.40|ICD10CM|Frostbite with tissue necrosis of unspecified arm|Frostbite with tissue necrosis of unspecified arm +C2976943|T037|AB|T34.40XA|ICD10CM|Frostbite with tissue necrosis of unsp arm, init encntr|Frostbite with tissue necrosis of unsp arm, init encntr +C2976943|T037|PT|T34.40XA|ICD10CM|Frostbite with tissue necrosis of unspecified arm, initial encounter|Frostbite with tissue necrosis of unspecified arm, initial encounter +C2976944|T037|AB|T34.40XD|ICD10CM|Frostbite with tissue necrosis of unsp arm, subs encntr|Frostbite with tissue necrosis of unsp arm, subs encntr +C2976944|T037|PT|T34.40XD|ICD10CM|Frostbite with tissue necrosis of unspecified arm, subsequent encounter|Frostbite with tissue necrosis of unspecified arm, subsequent encounter +C2976945|T037|AB|T34.40XS|ICD10CM|Frostbite with tissue necrosis of unspecified arm, sequela|Frostbite with tissue necrosis of unspecified arm, sequela +C2976945|T037|PT|T34.40XS|ICD10CM|Frostbite with tissue necrosis of unspecified arm, sequela|Frostbite with tissue necrosis of unspecified arm, sequela +C2876419|T037|AB|T34.41|ICD10CM|Frostbite with tissue necrosis of right arm|Frostbite with tissue necrosis of right arm +C2876419|T037|HT|T34.41|ICD10CM|Frostbite with tissue necrosis of right arm|Frostbite with tissue necrosis of right arm +C2876420|T037|AB|T34.41XA|ICD10CM|Frostbite with tissue necrosis of right arm, init encntr|Frostbite with tissue necrosis of right arm, init encntr +C2876420|T037|PT|T34.41XA|ICD10CM|Frostbite with tissue necrosis of right arm, initial encounter|Frostbite with tissue necrosis of right arm, initial encounter +C2876421|T037|AB|T34.41XD|ICD10CM|Frostbite with tissue necrosis of right arm, subs encntr|Frostbite with tissue necrosis of right arm, subs encntr +C2876421|T037|PT|T34.41XD|ICD10CM|Frostbite with tissue necrosis of right arm, subsequent encounter|Frostbite with tissue necrosis of right arm, subsequent encounter +C2876422|T037|AB|T34.41XS|ICD10CM|Frostbite with tissue necrosis of right arm, sequela|Frostbite with tissue necrosis of right arm, sequela +C2876422|T037|PT|T34.41XS|ICD10CM|Frostbite with tissue necrosis of right arm, sequela|Frostbite with tissue necrosis of right arm, sequela +C2876423|T037|AB|T34.42|ICD10CM|Frostbite with tissue necrosis of left arm|Frostbite with tissue necrosis of left arm +C2876423|T037|HT|T34.42|ICD10CM|Frostbite with tissue necrosis of left arm|Frostbite with tissue necrosis of left arm +C2876424|T037|AB|T34.42XA|ICD10CM|Frostbite with tissue necrosis of left arm, init encntr|Frostbite with tissue necrosis of left arm, init encntr +C2876424|T037|PT|T34.42XA|ICD10CM|Frostbite with tissue necrosis of left arm, initial encounter|Frostbite with tissue necrosis of left arm, initial encounter +C2876425|T037|AB|T34.42XD|ICD10CM|Frostbite with tissue necrosis of left arm, subs encntr|Frostbite with tissue necrosis of left arm, subs encntr +C2876425|T037|PT|T34.42XD|ICD10CM|Frostbite with tissue necrosis of left arm, subsequent encounter|Frostbite with tissue necrosis of left arm, subsequent encounter +C2876426|T037|AB|T34.42XS|ICD10CM|Frostbite with tissue necrosis of left arm, sequela|Frostbite with tissue necrosis of left arm, sequela +C2876426|T037|PT|T34.42XS|ICD10CM|Frostbite with tissue necrosis of left arm, sequela|Frostbite with tissue necrosis of left arm, sequela +C0348852|T037|PT|T34.5|ICD10|Frostbite with tissue necrosis of wrist and hand|Frostbite with tissue necrosis of wrist and hand +C2876427|T037|AB|T34.5|ICD10CM|Frostbite with tissue necrosis of wrist, hand, and finger(s)|Frostbite with tissue necrosis of wrist, hand, and finger(s) +C2876427|T037|HT|T34.5|ICD10CM|Frostbite with tissue necrosis of wrist, hand, and finger(s)|Frostbite with tissue necrosis of wrist, hand, and finger(s) +C1389752|T037|AB|T34.51|ICD10CM|Frostbite with tissue necrosis of wrist|Frostbite with tissue necrosis of wrist +C1389752|T037|HT|T34.51|ICD10CM|Frostbite with tissue necrosis of wrist|Frostbite with tissue necrosis of wrist +C2876428|T037|AB|T34.511|ICD10CM|Frostbite with tissue necrosis of right wrist|Frostbite with tissue necrosis of right wrist +C2876428|T037|HT|T34.511|ICD10CM|Frostbite with tissue necrosis of right wrist|Frostbite with tissue necrosis of right wrist +C2876429|T037|AB|T34.511A|ICD10CM|Frostbite with tissue necrosis of right wrist, init encntr|Frostbite with tissue necrosis of right wrist, init encntr +C2876429|T037|PT|T34.511A|ICD10CM|Frostbite with tissue necrosis of right wrist, initial encounter|Frostbite with tissue necrosis of right wrist, initial encounter +C2876430|T037|AB|T34.511D|ICD10CM|Frostbite with tissue necrosis of right wrist, subs encntr|Frostbite with tissue necrosis of right wrist, subs encntr +C2876430|T037|PT|T34.511D|ICD10CM|Frostbite with tissue necrosis of right wrist, subsequent encounter|Frostbite with tissue necrosis of right wrist, subsequent encounter +C2876431|T037|AB|T34.511S|ICD10CM|Frostbite with tissue necrosis of right wrist, sequela|Frostbite with tissue necrosis of right wrist, sequela +C2876431|T037|PT|T34.511S|ICD10CM|Frostbite with tissue necrosis of right wrist, sequela|Frostbite with tissue necrosis of right wrist, sequela +C2876432|T037|AB|T34.512|ICD10CM|Frostbite with tissue necrosis of left wrist|Frostbite with tissue necrosis of left wrist +C2876432|T037|HT|T34.512|ICD10CM|Frostbite with tissue necrosis of left wrist|Frostbite with tissue necrosis of left wrist +C2876433|T037|AB|T34.512A|ICD10CM|Frostbite with tissue necrosis of left wrist, init encntr|Frostbite with tissue necrosis of left wrist, init encntr +C2876433|T037|PT|T34.512A|ICD10CM|Frostbite with tissue necrosis of left wrist, initial encounter|Frostbite with tissue necrosis of left wrist, initial encounter +C2876434|T037|AB|T34.512D|ICD10CM|Frostbite with tissue necrosis of left wrist, subs encntr|Frostbite with tissue necrosis of left wrist, subs encntr +C2876434|T037|PT|T34.512D|ICD10CM|Frostbite with tissue necrosis of left wrist, subsequent encounter|Frostbite with tissue necrosis of left wrist, subsequent encounter +C2876435|T037|AB|T34.512S|ICD10CM|Frostbite with tissue necrosis of left wrist, sequela|Frostbite with tissue necrosis of left wrist, sequela +C2876435|T037|PT|T34.512S|ICD10CM|Frostbite with tissue necrosis of left wrist, sequela|Frostbite with tissue necrosis of left wrist, sequela +C2876436|T037|AB|T34.519|ICD10CM|Frostbite with tissue necrosis of unspecified wrist|Frostbite with tissue necrosis of unspecified wrist +C2876436|T037|HT|T34.519|ICD10CM|Frostbite with tissue necrosis of unspecified wrist|Frostbite with tissue necrosis of unspecified wrist +C2876437|T037|AB|T34.519A|ICD10CM|Frostbite with tissue necrosis of unsp wrist, init encntr|Frostbite with tissue necrosis of unsp wrist, init encntr +C2876437|T037|PT|T34.519A|ICD10CM|Frostbite with tissue necrosis of unspecified wrist, initial encounter|Frostbite with tissue necrosis of unspecified wrist, initial encounter +C2876438|T037|AB|T34.519D|ICD10CM|Frostbite with tissue necrosis of unsp wrist, subs encntr|Frostbite with tissue necrosis of unsp wrist, subs encntr +C2876438|T037|PT|T34.519D|ICD10CM|Frostbite with tissue necrosis of unspecified wrist, subsequent encounter|Frostbite with tissue necrosis of unspecified wrist, subsequent encounter +C2876439|T037|AB|T34.519S|ICD10CM|Frostbite with tissue necrosis of unspecified wrist, sequela|Frostbite with tissue necrosis of unspecified wrist, sequela +C2876439|T037|PT|T34.519S|ICD10CM|Frostbite with tissue necrosis of unspecified wrist, sequela|Frostbite with tissue necrosis of unspecified wrist, sequela +C1389739|T037|AB|T34.52|ICD10CM|Frostbite with tissue necrosis of hand|Frostbite with tissue necrosis of hand +C1389739|T037|HT|T34.52|ICD10CM|Frostbite with tissue necrosis of hand|Frostbite with tissue necrosis of hand +C2876440|T037|AB|T34.521|ICD10CM|Frostbite with tissue necrosis of right hand|Frostbite with tissue necrosis of right hand +C2876440|T037|HT|T34.521|ICD10CM|Frostbite with tissue necrosis of right hand|Frostbite with tissue necrosis of right hand +C2876441|T037|AB|T34.521A|ICD10CM|Frostbite with tissue necrosis of right hand, init encntr|Frostbite with tissue necrosis of right hand, init encntr +C2876441|T037|PT|T34.521A|ICD10CM|Frostbite with tissue necrosis of right hand, initial encounter|Frostbite with tissue necrosis of right hand, initial encounter +C2876442|T037|AB|T34.521D|ICD10CM|Frostbite with tissue necrosis of right hand, subs encntr|Frostbite with tissue necrosis of right hand, subs encntr +C2876442|T037|PT|T34.521D|ICD10CM|Frostbite with tissue necrosis of right hand, subsequent encounter|Frostbite with tissue necrosis of right hand, subsequent encounter +C2876443|T037|AB|T34.521S|ICD10CM|Frostbite with tissue necrosis of right hand, sequela|Frostbite with tissue necrosis of right hand, sequela +C2876443|T037|PT|T34.521S|ICD10CM|Frostbite with tissue necrosis of right hand, sequela|Frostbite with tissue necrosis of right hand, sequela +C2876444|T037|AB|T34.522|ICD10CM|Frostbite with tissue necrosis of left hand|Frostbite with tissue necrosis of left hand +C2876444|T037|HT|T34.522|ICD10CM|Frostbite with tissue necrosis of left hand|Frostbite with tissue necrosis of left hand +C2876445|T037|AB|T34.522A|ICD10CM|Frostbite with tissue necrosis of left hand, init encntr|Frostbite with tissue necrosis of left hand, init encntr +C2876445|T037|PT|T34.522A|ICD10CM|Frostbite with tissue necrosis of left hand, initial encounter|Frostbite with tissue necrosis of left hand, initial encounter +C2876446|T037|AB|T34.522D|ICD10CM|Frostbite with tissue necrosis of left hand, subs encntr|Frostbite with tissue necrosis of left hand, subs encntr +C2876446|T037|PT|T34.522D|ICD10CM|Frostbite with tissue necrosis of left hand, subsequent encounter|Frostbite with tissue necrosis of left hand, subsequent encounter +C2876447|T037|AB|T34.522S|ICD10CM|Frostbite with tissue necrosis of left hand, sequela|Frostbite with tissue necrosis of left hand, sequela +C2876447|T037|PT|T34.522S|ICD10CM|Frostbite with tissue necrosis of left hand, sequela|Frostbite with tissue necrosis of left hand, sequela +C2876448|T037|AB|T34.529|ICD10CM|Frostbite with tissue necrosis of unspecified hand|Frostbite with tissue necrosis of unspecified hand +C2876448|T037|HT|T34.529|ICD10CM|Frostbite with tissue necrosis of unspecified hand|Frostbite with tissue necrosis of unspecified hand +C2876449|T037|AB|T34.529A|ICD10CM|Frostbite with tissue necrosis of unsp hand, init encntr|Frostbite with tissue necrosis of unsp hand, init encntr +C2876449|T037|PT|T34.529A|ICD10CM|Frostbite with tissue necrosis of unspecified hand, initial encounter|Frostbite with tissue necrosis of unspecified hand, initial encounter +C2876450|T037|AB|T34.529D|ICD10CM|Frostbite with tissue necrosis of unsp hand, subs encntr|Frostbite with tissue necrosis of unsp hand, subs encntr +C2876450|T037|PT|T34.529D|ICD10CM|Frostbite with tissue necrosis of unspecified hand, subsequent encounter|Frostbite with tissue necrosis of unspecified hand, subsequent encounter +C2876451|T037|AB|T34.529S|ICD10CM|Frostbite with tissue necrosis of unspecified hand, sequela|Frostbite with tissue necrosis of unspecified hand, sequela +C2876451|T037|PT|T34.529S|ICD10CM|Frostbite with tissue necrosis of unspecified hand, sequela|Frostbite with tissue necrosis of unspecified hand, sequela +C1389763|T037|AB|T34.53|ICD10CM|Frostbite with tissue necrosis of finger(s)|Frostbite with tissue necrosis of finger(s) +C1389763|T037|HT|T34.53|ICD10CM|Frostbite with tissue necrosis of finger(s)|Frostbite with tissue necrosis of finger(s) +C2876452|T037|AB|T34.531|ICD10CM|Frostbite with tissue necrosis of right finger(s)|Frostbite with tissue necrosis of right finger(s) +C2876452|T037|HT|T34.531|ICD10CM|Frostbite with tissue necrosis of right finger(s)|Frostbite with tissue necrosis of right finger(s) +C2876453|T037|AB|T34.531A|ICD10CM|Frostbite w tissue necrosis of right finger(s), init encntr|Frostbite w tissue necrosis of right finger(s), init encntr +C2876453|T037|PT|T34.531A|ICD10CM|Frostbite with tissue necrosis of right finger(s), initial encounter|Frostbite with tissue necrosis of right finger(s), initial encounter +C2876454|T037|AB|T34.531D|ICD10CM|Frostbite w tissue necrosis of right finger(s), subs encntr|Frostbite w tissue necrosis of right finger(s), subs encntr +C2876454|T037|PT|T34.531D|ICD10CM|Frostbite with tissue necrosis of right finger(s), subsequent encounter|Frostbite with tissue necrosis of right finger(s), subsequent encounter +C2876455|T037|AB|T34.531S|ICD10CM|Frostbite with tissue necrosis of right finger(s), sequela|Frostbite with tissue necrosis of right finger(s), sequela +C2876455|T037|PT|T34.531S|ICD10CM|Frostbite with tissue necrosis of right finger(s), sequela|Frostbite with tissue necrosis of right finger(s), sequela +C2876456|T037|AB|T34.532|ICD10CM|Frostbite with tissue necrosis of left finger(s)|Frostbite with tissue necrosis of left finger(s) +C2876456|T037|HT|T34.532|ICD10CM|Frostbite with tissue necrosis of left finger(s)|Frostbite with tissue necrosis of left finger(s) +C2876457|T037|AB|T34.532A|ICD10CM|Frostbite w tissue necrosis of left finger(s), init encntr|Frostbite w tissue necrosis of left finger(s), init encntr +C2876457|T037|PT|T34.532A|ICD10CM|Frostbite with tissue necrosis of left finger(s), initial encounter|Frostbite with tissue necrosis of left finger(s), initial encounter +C2876458|T037|AB|T34.532D|ICD10CM|Frostbite w tissue necrosis of left finger(s), subs encntr|Frostbite w tissue necrosis of left finger(s), subs encntr +C2876458|T037|PT|T34.532D|ICD10CM|Frostbite with tissue necrosis of left finger(s), subsequent encounter|Frostbite with tissue necrosis of left finger(s), subsequent encounter +C2876459|T037|AB|T34.532S|ICD10CM|Frostbite with tissue necrosis of left finger(s), sequela|Frostbite with tissue necrosis of left finger(s), sequela +C2876459|T037|PT|T34.532S|ICD10CM|Frostbite with tissue necrosis of left finger(s), sequela|Frostbite with tissue necrosis of left finger(s), sequela +C2876460|T037|AB|T34.539|ICD10CM|Frostbite with tissue necrosis of unspecified finger(s)|Frostbite with tissue necrosis of unspecified finger(s) +C2876460|T037|HT|T34.539|ICD10CM|Frostbite with tissue necrosis of unspecified finger(s)|Frostbite with tissue necrosis of unspecified finger(s) +C2876461|T037|AB|T34.539A|ICD10CM|Frostbite w tissue necrosis of unsp finger(s), init encntr|Frostbite w tissue necrosis of unsp finger(s), init encntr +C2876461|T037|PT|T34.539A|ICD10CM|Frostbite with tissue necrosis of unspecified finger(s), initial encounter|Frostbite with tissue necrosis of unspecified finger(s), initial encounter +C2876462|T037|AB|T34.539D|ICD10CM|Frostbite w tissue necrosis of unsp finger(s), subs encntr|Frostbite w tissue necrosis of unsp finger(s), subs encntr +C2876462|T037|PT|T34.539D|ICD10CM|Frostbite with tissue necrosis of unspecified finger(s), subsequent encounter|Frostbite with tissue necrosis of unspecified finger(s), subsequent encounter +C2876463|T037|AB|T34.539S|ICD10CM|Frostbite with tissue necrosis of unsp finger(s), sequela|Frostbite with tissue necrosis of unsp finger(s), sequela +C2876463|T037|PT|T34.539S|ICD10CM|Frostbite with tissue necrosis of unspecified finger(s), sequela|Frostbite with tissue necrosis of unspecified finger(s), sequela +C0348853|T037|PT|T34.6|ICD10|Frostbite with tissue necrosis of hip and thigh|Frostbite with tissue necrosis of hip and thigh +C0348853|T037|HT|T34.6|ICD10CM|Frostbite with tissue necrosis of hip and thigh|Frostbite with tissue necrosis of hip and thigh +C0348853|T037|AB|T34.6|ICD10CM|Frostbite with tissue necrosis of hip and thigh|Frostbite with tissue necrosis of hip and thigh +C2876464|T037|AB|T34.60|ICD10CM|Frostbite with tissue necrosis of unspecified hip and thigh|Frostbite with tissue necrosis of unspecified hip and thigh +C2876464|T037|HT|T34.60|ICD10CM|Frostbite with tissue necrosis of unspecified hip and thigh|Frostbite with tissue necrosis of unspecified hip and thigh +C2976946|T037|AB|T34.60XA|ICD10CM|Frostbite w tissue necrosis of unsp hip and thigh, init|Frostbite w tissue necrosis of unsp hip and thigh, init +C2976946|T037|PT|T34.60XA|ICD10CM|Frostbite with tissue necrosis of unspecified hip and thigh, initial encounter|Frostbite with tissue necrosis of unspecified hip and thigh, initial encounter +C2976947|T037|AB|T34.60XD|ICD10CM|Frostbite w tissue necrosis of unsp hip and thigh, subs|Frostbite w tissue necrosis of unsp hip and thigh, subs +C2976947|T037|PT|T34.60XD|ICD10CM|Frostbite with tissue necrosis of unspecified hip and thigh, subsequent encounter|Frostbite with tissue necrosis of unspecified hip and thigh, subsequent encounter +C2976948|T037|AB|T34.60XS|ICD10CM|Frostbite w tissue necrosis of unsp hip and thigh, sequela|Frostbite w tissue necrosis of unsp hip and thigh, sequela +C2976948|T037|PT|T34.60XS|ICD10CM|Frostbite with tissue necrosis of unspecified hip and thigh, sequela|Frostbite with tissue necrosis of unspecified hip and thigh, sequela +C2876468|T037|AB|T34.61|ICD10CM|Frostbite with tissue necrosis of right hip and thigh|Frostbite with tissue necrosis of right hip and thigh +C2876468|T037|HT|T34.61|ICD10CM|Frostbite with tissue necrosis of right hip and thigh|Frostbite with tissue necrosis of right hip and thigh +C2876469|T037|AB|T34.61XA|ICD10CM|Frostbite w tissue necrosis of right hip and thigh, init|Frostbite w tissue necrosis of right hip and thigh, init +C2876469|T037|PT|T34.61XA|ICD10CM|Frostbite with tissue necrosis of right hip and thigh, initial encounter|Frostbite with tissue necrosis of right hip and thigh, initial encounter +C2876470|T037|AB|T34.61XD|ICD10CM|Frostbite w tissue necrosis of right hip and thigh, subs|Frostbite w tissue necrosis of right hip and thigh, subs +C2876470|T037|PT|T34.61XD|ICD10CM|Frostbite with tissue necrosis of right hip and thigh, subsequent encounter|Frostbite with tissue necrosis of right hip and thigh, subsequent encounter +C2876471|T037|AB|T34.61XS|ICD10CM|Frostbite w tissue necrosis of right hip and thigh, sequela|Frostbite w tissue necrosis of right hip and thigh, sequela +C2876471|T037|PT|T34.61XS|ICD10CM|Frostbite with tissue necrosis of right hip and thigh, sequela|Frostbite with tissue necrosis of right hip and thigh, sequela +C2876472|T037|AB|T34.62|ICD10CM|Frostbite with tissue necrosis of left hip and thigh|Frostbite with tissue necrosis of left hip and thigh +C2876472|T037|HT|T34.62|ICD10CM|Frostbite with tissue necrosis of left hip and thigh|Frostbite with tissue necrosis of left hip and thigh +C2876473|T037|AB|T34.62XA|ICD10CM|Frostbite w tissue necrosis of left hip and thigh, init|Frostbite w tissue necrosis of left hip and thigh, init +C2876473|T037|PT|T34.62XA|ICD10CM|Frostbite with tissue necrosis of left hip and thigh, initial encounter|Frostbite with tissue necrosis of left hip and thigh, initial encounter +C2876474|T037|AB|T34.62XD|ICD10CM|Frostbite w tissue necrosis of left hip and thigh, subs|Frostbite w tissue necrosis of left hip and thigh, subs +C2876474|T037|PT|T34.62XD|ICD10CM|Frostbite with tissue necrosis of left hip and thigh, subsequent encounter|Frostbite with tissue necrosis of left hip and thigh, subsequent encounter +C2876475|T037|AB|T34.62XS|ICD10CM|Frostbite w tissue necrosis of left hip and thigh, sequela|Frostbite w tissue necrosis of left hip and thigh, sequela +C2876475|T037|PT|T34.62XS|ICD10CM|Frostbite with tissue necrosis of left hip and thigh, sequela|Frostbite with tissue necrosis of left hip and thigh, sequela +C0348854|T037|HT|T34.7|ICD10CM|Frostbite with tissue necrosis of knee and lower leg|Frostbite with tissue necrosis of knee and lower leg +C0348854|T037|AB|T34.7|ICD10CM|Frostbite with tissue necrosis of knee and lower leg|Frostbite with tissue necrosis of knee and lower leg +C0348854|T037|PT|T34.7|ICD10|Frostbite with tissue necrosis of knee and lower leg|Frostbite with tissue necrosis of knee and lower leg +C2876476|T037|AB|T34.70|ICD10CM|Frostbite with tissue necrosis of unsp knee and lower leg|Frostbite with tissue necrosis of unsp knee and lower leg +C2876476|T037|HT|T34.70|ICD10CM|Frostbite with tissue necrosis of unspecified knee and lower leg|Frostbite with tissue necrosis of unspecified knee and lower leg +C2976949|T037|AB|T34.70XA|ICD10CM|Frostbite w tissue necrosis of unsp knee and lower leg, init|Frostbite w tissue necrosis of unsp knee and lower leg, init +C2976949|T037|PT|T34.70XA|ICD10CM|Frostbite with tissue necrosis of unspecified knee and lower leg, initial encounter|Frostbite with tissue necrosis of unspecified knee and lower leg, initial encounter +C2976950|T037|AB|T34.70XD|ICD10CM|Frostbite w tissue necrosis of unsp knee and lower leg, subs|Frostbite w tissue necrosis of unsp knee and lower leg, subs +C2976950|T037|PT|T34.70XD|ICD10CM|Frostbite with tissue necrosis of unspecified knee and lower leg, subsequent encounter|Frostbite with tissue necrosis of unspecified knee and lower leg, subsequent encounter +C2976951|T037|AB|T34.70XS|ICD10CM|Frostbite w tissue necros unsp knee and lower leg, sequela|Frostbite w tissue necros unsp knee and lower leg, sequela +C2976951|T037|PT|T34.70XS|ICD10CM|Frostbite with tissue necrosis of unspecified knee and lower leg, sequela|Frostbite with tissue necrosis of unspecified knee and lower leg, sequela +C2876480|T037|AB|T34.71|ICD10CM|Frostbite with tissue necrosis of right knee and lower leg|Frostbite with tissue necrosis of right knee and lower leg +C2876480|T037|HT|T34.71|ICD10CM|Frostbite with tissue necrosis of right knee and lower leg|Frostbite with tissue necrosis of right knee and lower leg +C2876481|T037|AB|T34.71XA|ICD10CM|Frostbite w tissue necros right knee and lower leg, init|Frostbite w tissue necros right knee and lower leg, init +C2876481|T037|PT|T34.71XA|ICD10CM|Frostbite with tissue necrosis of right knee and lower leg, initial encounter|Frostbite with tissue necrosis of right knee and lower leg, initial encounter +C2876482|T037|AB|T34.71XD|ICD10CM|Frostbite w tissue necros right knee and lower leg, subs|Frostbite w tissue necros right knee and lower leg, subs +C2876482|T037|PT|T34.71XD|ICD10CM|Frostbite with tissue necrosis of right knee and lower leg, subsequent encounter|Frostbite with tissue necrosis of right knee and lower leg, subsequent encounter +C2876483|T037|AB|T34.71XS|ICD10CM|Frostbite w tissue necros right knee and lower leg, sequela|Frostbite w tissue necros right knee and lower leg, sequela +C2876483|T037|PT|T34.71XS|ICD10CM|Frostbite with tissue necrosis of right knee and lower leg, sequela|Frostbite with tissue necrosis of right knee and lower leg, sequela +C2876484|T037|AB|T34.72|ICD10CM|Frostbite with tissue necrosis of left knee and lower leg|Frostbite with tissue necrosis of left knee and lower leg +C2876484|T037|HT|T34.72|ICD10CM|Frostbite with tissue necrosis of left knee and lower leg|Frostbite with tissue necrosis of left knee and lower leg +C2876485|T037|AB|T34.72XA|ICD10CM|Frostbite w tissue necrosis of left knee and lower leg, init|Frostbite w tissue necrosis of left knee and lower leg, init +C2876485|T037|PT|T34.72XA|ICD10CM|Frostbite with tissue necrosis of left knee and lower leg, initial encounter|Frostbite with tissue necrosis of left knee and lower leg, initial encounter +C2876486|T037|AB|T34.72XD|ICD10CM|Frostbite w tissue necrosis of left knee and lower leg, subs|Frostbite w tissue necrosis of left knee and lower leg, subs +C2876486|T037|PT|T34.72XD|ICD10CM|Frostbite with tissue necrosis of left knee and lower leg, subsequent encounter|Frostbite with tissue necrosis of left knee and lower leg, subsequent encounter +C2876487|T037|AB|T34.72XS|ICD10CM|Frostbite w tissue necros left knee and lower leg, sequela|Frostbite w tissue necros left knee and lower leg, sequela +C2876487|T037|PT|T34.72XS|ICD10CM|Frostbite with tissue necrosis of left knee and lower leg, sequela|Frostbite with tissue necrosis of left knee and lower leg, sequela +C0348855|T037|PT|T34.8|ICD10|Frostbite with tissue necrosis of ankle and foot|Frostbite with tissue necrosis of ankle and foot +C2876488|T037|AB|T34.8|ICD10CM|Frostbite with tissue necrosis of ankle, foot, and toe(s)|Frostbite with tissue necrosis of ankle, foot, and toe(s) +C2876488|T037|HT|T34.8|ICD10CM|Frostbite with tissue necrosis of ankle, foot, and toe(s)|Frostbite with tissue necrosis of ankle, foot, and toe(s) +C1389730|T037|HT|T34.81|ICD10CM|Frostbite with tissue necrosis of ankle|Frostbite with tissue necrosis of ankle +C1389730|T037|AB|T34.81|ICD10CM|Frostbite with tissue necrosis of ankle|Frostbite with tissue necrosis of ankle +C2876489|T037|AB|T34.811|ICD10CM|Frostbite with tissue necrosis of right ankle|Frostbite with tissue necrosis of right ankle +C2876489|T037|HT|T34.811|ICD10CM|Frostbite with tissue necrosis of right ankle|Frostbite with tissue necrosis of right ankle +C2876490|T037|AB|T34.811A|ICD10CM|Frostbite with tissue necrosis of right ankle, init encntr|Frostbite with tissue necrosis of right ankle, init encntr +C2876490|T037|PT|T34.811A|ICD10CM|Frostbite with tissue necrosis of right ankle, initial encounter|Frostbite with tissue necrosis of right ankle, initial encounter +C2876491|T037|AB|T34.811D|ICD10CM|Frostbite with tissue necrosis of right ankle, subs encntr|Frostbite with tissue necrosis of right ankle, subs encntr +C2876491|T037|PT|T34.811D|ICD10CM|Frostbite with tissue necrosis of right ankle, subsequent encounter|Frostbite with tissue necrosis of right ankle, subsequent encounter +C2876492|T037|AB|T34.811S|ICD10CM|Frostbite with tissue necrosis of right ankle, sequela|Frostbite with tissue necrosis of right ankle, sequela +C2876492|T037|PT|T34.811S|ICD10CM|Frostbite with tissue necrosis of right ankle, sequela|Frostbite with tissue necrosis of right ankle, sequela +C2876493|T037|AB|T34.812|ICD10CM|Frostbite with tissue necrosis of left ankle|Frostbite with tissue necrosis of left ankle +C2876493|T037|HT|T34.812|ICD10CM|Frostbite with tissue necrosis of left ankle|Frostbite with tissue necrosis of left ankle +C2876494|T037|AB|T34.812A|ICD10CM|Frostbite with tissue necrosis of left ankle, init encntr|Frostbite with tissue necrosis of left ankle, init encntr +C2876494|T037|PT|T34.812A|ICD10CM|Frostbite with tissue necrosis of left ankle, initial encounter|Frostbite with tissue necrosis of left ankle, initial encounter +C2876495|T037|AB|T34.812D|ICD10CM|Frostbite with tissue necrosis of left ankle, subs encntr|Frostbite with tissue necrosis of left ankle, subs encntr +C2876495|T037|PT|T34.812D|ICD10CM|Frostbite with tissue necrosis of left ankle, subsequent encounter|Frostbite with tissue necrosis of left ankle, subsequent encounter +C2876496|T037|AB|T34.812S|ICD10CM|Frostbite with tissue necrosis of left ankle, sequela|Frostbite with tissue necrosis of left ankle, sequela +C2876496|T037|PT|T34.812S|ICD10CM|Frostbite with tissue necrosis of left ankle, sequela|Frostbite with tissue necrosis of left ankle, sequela +C2876497|T037|AB|T34.819|ICD10CM|Frostbite with tissue necrosis of unspecified ankle|Frostbite with tissue necrosis of unspecified ankle +C2876497|T037|HT|T34.819|ICD10CM|Frostbite with tissue necrosis of unspecified ankle|Frostbite with tissue necrosis of unspecified ankle +C2876498|T037|AB|T34.819A|ICD10CM|Frostbite with tissue necrosis of unsp ankle, init encntr|Frostbite with tissue necrosis of unsp ankle, init encntr +C2876498|T037|PT|T34.819A|ICD10CM|Frostbite with tissue necrosis of unspecified ankle, initial encounter|Frostbite with tissue necrosis of unspecified ankle, initial encounter +C2876499|T037|AB|T34.819D|ICD10CM|Frostbite with tissue necrosis of unsp ankle, subs encntr|Frostbite with tissue necrosis of unsp ankle, subs encntr +C2876499|T037|PT|T34.819D|ICD10CM|Frostbite with tissue necrosis of unspecified ankle, subsequent encounter|Frostbite with tissue necrosis of unspecified ankle, subsequent encounter +C2876500|T037|AB|T34.819S|ICD10CM|Frostbite with tissue necrosis of unspecified ankle, sequela|Frostbite with tissue necrosis of unspecified ankle, sequela +C2876500|T037|PT|T34.819S|ICD10CM|Frostbite with tissue necrosis of unspecified ankle, sequela|Frostbite with tissue necrosis of unspecified ankle, sequela +C1389765|T037|AB|T34.82|ICD10CM|Frostbite with tissue necrosis of foot|Frostbite with tissue necrosis of foot +C1389765|T037|HT|T34.82|ICD10CM|Frostbite with tissue necrosis of foot|Frostbite with tissue necrosis of foot +C2876501|T037|AB|T34.821|ICD10CM|Frostbite with tissue necrosis of right foot|Frostbite with tissue necrosis of right foot +C2876501|T037|HT|T34.821|ICD10CM|Frostbite with tissue necrosis of right foot|Frostbite with tissue necrosis of right foot +C2876502|T037|AB|T34.821A|ICD10CM|Frostbite with tissue necrosis of right foot, init encntr|Frostbite with tissue necrosis of right foot, init encntr +C2876502|T037|PT|T34.821A|ICD10CM|Frostbite with tissue necrosis of right foot, initial encounter|Frostbite with tissue necrosis of right foot, initial encounter +C2876503|T037|AB|T34.821D|ICD10CM|Frostbite with tissue necrosis of right foot, subs encntr|Frostbite with tissue necrosis of right foot, subs encntr +C2876503|T037|PT|T34.821D|ICD10CM|Frostbite with tissue necrosis of right foot, subsequent encounter|Frostbite with tissue necrosis of right foot, subsequent encounter +C2876504|T037|AB|T34.821S|ICD10CM|Frostbite with tissue necrosis of right foot, sequela|Frostbite with tissue necrosis of right foot, sequela +C2876504|T037|PT|T34.821S|ICD10CM|Frostbite with tissue necrosis of right foot, sequela|Frostbite with tissue necrosis of right foot, sequela +C2876505|T037|AB|T34.822|ICD10CM|Frostbite with tissue necrosis of left foot|Frostbite with tissue necrosis of left foot +C2876505|T037|HT|T34.822|ICD10CM|Frostbite with tissue necrosis of left foot|Frostbite with tissue necrosis of left foot +C2876506|T037|AB|T34.822A|ICD10CM|Frostbite with tissue necrosis of left foot, init encntr|Frostbite with tissue necrosis of left foot, init encntr +C2876506|T037|PT|T34.822A|ICD10CM|Frostbite with tissue necrosis of left foot, initial encounter|Frostbite with tissue necrosis of left foot, initial encounter +C2876507|T037|AB|T34.822D|ICD10CM|Frostbite with tissue necrosis of left foot, subs encntr|Frostbite with tissue necrosis of left foot, subs encntr +C2876507|T037|PT|T34.822D|ICD10CM|Frostbite with tissue necrosis of left foot, subsequent encounter|Frostbite with tissue necrosis of left foot, subsequent encounter +C2876508|T037|AB|T34.822S|ICD10CM|Frostbite with tissue necrosis of left foot, sequela|Frostbite with tissue necrosis of left foot, sequela +C2876508|T037|PT|T34.822S|ICD10CM|Frostbite with tissue necrosis of left foot, sequela|Frostbite with tissue necrosis of left foot, sequela +C2876509|T037|AB|T34.829|ICD10CM|Frostbite with tissue necrosis of unspecified foot|Frostbite with tissue necrosis of unspecified foot +C2876509|T037|HT|T34.829|ICD10CM|Frostbite with tissue necrosis of unspecified foot|Frostbite with tissue necrosis of unspecified foot +C2876510|T037|AB|T34.829A|ICD10CM|Frostbite with tissue necrosis of unsp foot, init encntr|Frostbite with tissue necrosis of unsp foot, init encntr +C2876510|T037|PT|T34.829A|ICD10CM|Frostbite with tissue necrosis of unspecified foot, initial encounter|Frostbite with tissue necrosis of unspecified foot, initial encounter +C2876511|T037|AB|T34.829D|ICD10CM|Frostbite with tissue necrosis of unsp foot, subs encntr|Frostbite with tissue necrosis of unsp foot, subs encntr +C2876511|T037|PT|T34.829D|ICD10CM|Frostbite with tissue necrosis of unspecified foot, subsequent encounter|Frostbite with tissue necrosis of unspecified foot, subsequent encounter +C2876512|T037|AB|T34.829S|ICD10CM|Frostbite with tissue necrosis of unspecified foot, sequela|Frostbite with tissue necrosis of unspecified foot, sequela +C2876512|T037|PT|T34.829S|ICD10CM|Frostbite with tissue necrosis of unspecified foot, sequela|Frostbite with tissue necrosis of unspecified foot, sequela +C1389760|T037|AB|T34.83|ICD10CM|Frostbite with tissue necrosis of toe(s)|Frostbite with tissue necrosis of toe(s) +C1389760|T037|HT|T34.83|ICD10CM|Frostbite with tissue necrosis of toe(s)|Frostbite with tissue necrosis of toe(s) +C2876513|T037|AB|T34.831|ICD10CM|Frostbite with tissue necrosis of right toe(s)|Frostbite with tissue necrosis of right toe(s) +C2876513|T037|HT|T34.831|ICD10CM|Frostbite with tissue necrosis of right toe(s)|Frostbite with tissue necrosis of right toe(s) +C2876514|T037|AB|T34.831A|ICD10CM|Frostbite with tissue necrosis of right toe(s), init encntr|Frostbite with tissue necrosis of right toe(s), init encntr +C2876514|T037|PT|T34.831A|ICD10CM|Frostbite with tissue necrosis of right toe(s), initial encounter|Frostbite with tissue necrosis of right toe(s), initial encounter +C2876515|T037|AB|T34.831D|ICD10CM|Frostbite with tissue necrosis of right toe(s), subs encntr|Frostbite with tissue necrosis of right toe(s), subs encntr +C2876515|T037|PT|T34.831D|ICD10CM|Frostbite with tissue necrosis of right toe(s), subsequent encounter|Frostbite with tissue necrosis of right toe(s), subsequent encounter +C2876516|T037|AB|T34.831S|ICD10CM|Frostbite with tissue necrosis of right toe(s), sequela|Frostbite with tissue necrosis of right toe(s), sequela +C2876516|T037|PT|T34.831S|ICD10CM|Frostbite with tissue necrosis of right toe(s), sequela|Frostbite with tissue necrosis of right toe(s), sequela +C2876517|T037|AB|T34.832|ICD10CM|Frostbite with tissue necrosis of left toe(s)|Frostbite with tissue necrosis of left toe(s) +C2876517|T037|HT|T34.832|ICD10CM|Frostbite with tissue necrosis of left toe(s)|Frostbite with tissue necrosis of left toe(s) +C2876518|T037|AB|T34.832A|ICD10CM|Frostbite with tissue necrosis of left toe(s), init encntr|Frostbite with tissue necrosis of left toe(s), init encntr +C2876518|T037|PT|T34.832A|ICD10CM|Frostbite with tissue necrosis of left toe(s), initial encounter|Frostbite with tissue necrosis of left toe(s), initial encounter +C2876519|T037|AB|T34.832D|ICD10CM|Frostbite with tissue necrosis of left toe(s), subs encntr|Frostbite with tissue necrosis of left toe(s), subs encntr +C2876519|T037|PT|T34.832D|ICD10CM|Frostbite with tissue necrosis of left toe(s), subsequent encounter|Frostbite with tissue necrosis of left toe(s), subsequent encounter +C2876520|T037|AB|T34.832S|ICD10CM|Frostbite with tissue necrosis of left toe(s), sequela|Frostbite with tissue necrosis of left toe(s), sequela +C2876520|T037|PT|T34.832S|ICD10CM|Frostbite with tissue necrosis of left toe(s), sequela|Frostbite with tissue necrosis of left toe(s), sequela +C2876521|T037|AB|T34.839|ICD10CM|Frostbite with tissue necrosis of unspecified toe(s)|Frostbite with tissue necrosis of unspecified toe(s) +C2876521|T037|HT|T34.839|ICD10CM|Frostbite with tissue necrosis of unspecified toe(s)|Frostbite with tissue necrosis of unspecified toe(s) +C2876522|T037|AB|T34.839A|ICD10CM|Frostbite with tissue necrosis of unsp toe(s), init encntr|Frostbite with tissue necrosis of unsp toe(s), init encntr +C2876522|T037|PT|T34.839A|ICD10CM|Frostbite with tissue necrosis of unspecified toe(s), initial encounter|Frostbite with tissue necrosis of unspecified toe(s), initial encounter +C2876523|T037|AB|T34.839D|ICD10CM|Frostbite with tissue necrosis of unsp toe(s), subs encntr|Frostbite with tissue necrosis of unsp toe(s), subs encntr +C2876523|T037|PT|T34.839D|ICD10CM|Frostbite with tissue necrosis of unspecified toe(s), subsequent encounter|Frostbite with tissue necrosis of unspecified toe(s), subsequent encounter +C2876524|T037|AB|T34.839S|ICD10CM|Frostbite with tissue necrosis of unsp toe(s), sequela|Frostbite with tissue necrosis of unsp toe(s), sequela +C2876524|T037|PT|T34.839S|ICD10CM|Frostbite with tissue necrosis of unspecified toe(s), sequela|Frostbite with tissue necrosis of unspecified toe(s), sequela +C0478420|T037|AB|T34.9|ICD10CM|Frostbite with tissue necrosis of other and unsp sites|Frostbite with tissue necrosis of other and unsp sites +C0478420|T037|HT|T34.9|ICD10CM|Frostbite with tissue necrosis of other and unspecified sites|Frostbite with tissue necrosis of other and unspecified sites +C0478420|T037|PT|T34.9|ICD10|Frostbite with tissue necrosis of other and unspecified sites|Frostbite with tissue necrosis of other and unspecified sites +C0348846|T037|ET|T34.90|ICD10CM|Frostbite with tissue necrosis NOS|Frostbite with tissue necrosis NOS +C2876525|T037|AB|T34.90|ICD10CM|Frostbite with tissue necrosis of unspecified sites|Frostbite with tissue necrosis of unspecified sites +C2876525|T037|HT|T34.90|ICD10CM|Frostbite with tissue necrosis of unspecified sites|Frostbite with tissue necrosis of unspecified sites +C2876526|T037|AB|T34.90XA|ICD10CM|Frostbite with tissue necrosis of unsp sites, init encntr|Frostbite with tissue necrosis of unsp sites, init encntr +C2876526|T037|PT|T34.90XA|ICD10CM|Frostbite with tissue necrosis of unspecified sites, initial encounter|Frostbite with tissue necrosis of unspecified sites, initial encounter +C2876527|T037|AB|T34.90XD|ICD10CM|Frostbite with tissue necrosis of unsp sites, subs encntr|Frostbite with tissue necrosis of unsp sites, subs encntr +C2876527|T037|PT|T34.90XD|ICD10CM|Frostbite with tissue necrosis of unspecified sites, subsequent encounter|Frostbite with tissue necrosis of unspecified sites, subsequent encounter +C2876528|T037|AB|T34.90XS|ICD10CM|Frostbite with tissue necrosis of unspecified sites, sequela|Frostbite with tissue necrosis of unspecified sites, sequela +C2876528|T037|PT|T34.90XS|ICD10CM|Frostbite with tissue necrosis of unspecified sites, sequela|Frostbite with tissue necrosis of unspecified sites, sequela +C1389736|T037|ET|T34.99|ICD10CM|Frostbite with tissue necrosis of leg NOS|Frostbite with tissue necrosis of leg NOS +C2876529|T037|AB|T34.99|ICD10CM|Frostbite with tissue necrosis of other sites|Frostbite with tissue necrosis of other sites +C2876529|T037|HT|T34.99|ICD10CM|Frostbite with tissue necrosis of other sites|Frostbite with tissue necrosis of other sites +C1389755|T037|ET|T34.99|ICD10CM|Frostbite with tissue necrosis of trunk NOS|Frostbite with tissue necrosis of trunk NOS +C2876530|T037|AB|T34.99XA|ICD10CM|Frostbite with tissue necrosis of other sites, init encntr|Frostbite with tissue necrosis of other sites, init encntr +C2876530|T037|PT|T34.99XA|ICD10CM|Frostbite with tissue necrosis of other sites, initial encounter|Frostbite with tissue necrosis of other sites, initial encounter +C2876531|T037|AB|T34.99XD|ICD10CM|Frostbite with tissue necrosis of other sites, subs encntr|Frostbite with tissue necrosis of other sites, subs encntr +C2876531|T037|PT|T34.99XD|ICD10CM|Frostbite with tissue necrosis of other sites, subsequent encounter|Frostbite with tissue necrosis of other sites, subsequent encounter +C2876532|T037|AB|T34.99XS|ICD10CM|Frostbite with tissue necrosis of other sites, sequela|Frostbite with tissue necrosis of other sites, sequela +C2876532|T037|PT|T34.99XS|ICD10CM|Frostbite with tissue necrosis of other sites, sequela|Frostbite with tissue necrosis of other sites, sequela +C0496088|T037|HT|T35|ICD10|Frostbite involving multiple body regions and unspecified frostbite|Frostbite involving multiple body regions and unspecified frostbite +C0348845|T037|PT|T35.0|ICD10|Superficial frostbite involving multiple body regions|Superficial frostbite involving multiple body regions +C0348856|T037|PT|T35.1|ICD10|Frostbite with tissue necrosis involving multiple body regions|Frostbite with tissue necrosis involving multiple body regions +C0478422|T037|PT|T35.2|ICD10|Unspecified frostbite of head and neck|Unspecified frostbite of head and neck +C0496089|T037|PT|T35.3|ICD10|Unspecified frostbite of thorax, abdomen, lower back and pelvis|Unspecified frostbite of thorax, abdomen, lower back and pelvis +C0478424|T037|PT|T35.4|ICD10|Unspecified frostbite of upper limb|Unspecified frostbite of upper limb +C0478425|T037|PT|T35.5|ICD10|Unspecified frostbite of lower limb|Unspecified frostbite of lower limb +C0478426|T037|PT|T35.6|ICD10|Unspecified frostbite involving multiple body regions|Unspecified frostbite involving multiple body regions +C0478421|T037|PT|T35.7|ICD10|Unspecified frostbite of unspecified site|Unspecified frostbite of unspecified site +C0496963|T037|HT|T36|ICD10|Poisoning by systemic antibiotics|Poisoning by systemic antibiotics +C2876533|T037|HT|T36|ICD10CM|Poisoning by, adverse effect of and underdosing of systemic antibiotics|Poisoning by, adverse effect of and underdosing of systemic antibiotics +C2876533|T037|AB|T36|ICD10CM|Systemic antibiotics|Systemic antibiotics +C4290399|T046|ET|T36-T50|ICD10CM|adverse effect of correct substance properly administered|adverse effect of correct substance properly administered +C4290400|T037|ET|T36-T50|ICD10CM|poisoning by overdose of substance|poisoning by overdose of substance +C4290401|T037|ET|T36-T50|ICD10CM|poisoning by wrong substance given or taken in error|poisoning by wrong substance given or taken in error +C4290402|T037|ET|T36-T50|ICD10CM|underdosing by (inadvertently) (deliberately) taking less substance than prescribed or instructed|underdosing by (inadvertently) (deliberately) taking less substance than prescribed or instructed +C0694464|T037|HT|T36-T50.9|ICD10|Poisoning by drugs, medicaments and biological substances|Poisoning by drugs, medicaments and biological substances +C0161486|T037|PS|T36.0|ICD10|Penicillins|Penicillins +C2876539|T037|AB|T36.0|ICD10CM|Penicillins|Penicillins +C0161486|T037|PX|T36.0|ICD10|Poisoning by penicillins|Poisoning by penicillins +C2876539|T037|HT|T36.0|ICD10CM|Poisoning by, adverse effect of and underdosing of penicillins|Poisoning by, adverse effect of and underdosing of penicillins +C2876539|T037|AB|T36.0X|ICD10CM|Penicillins|Penicillins +C2876539|T037|HT|T36.0X|ICD10CM|Poisoning by, adverse effect of and underdosing of penicillins|Poisoning by, adverse effect of and underdosing of penicillins +C0161486|T037|ET|T36.0X1|ICD10CM|Poisoning by penicillins NOS|Poisoning by penicillins NOS +C2876540|T037|AB|T36.0X1|ICD10CM|Poisoning by penicillins, accidental (unintentional)|Poisoning by penicillins, accidental (unintentional) +C2876540|T037|HT|T36.0X1|ICD10CM|Poisoning by penicillins, accidental (unintentional)|Poisoning by penicillins, accidental (unintentional) +C2876541|T037|AB|T36.0X1A|ICD10CM|Poisoning by penicillins, accidental (unintentional), init|Poisoning by penicillins, accidental (unintentional), init +C2876541|T037|PT|T36.0X1A|ICD10CM|Poisoning by penicillins, accidental (unintentional), initial encounter|Poisoning by penicillins, accidental (unintentional), initial encounter +C2876542|T037|AB|T36.0X1D|ICD10CM|Poisoning by penicillins, accidental (unintentional), subs|Poisoning by penicillins, accidental (unintentional), subs +C2876542|T037|PT|T36.0X1D|ICD10CM|Poisoning by penicillins, accidental (unintentional), subsequent encounter|Poisoning by penicillins, accidental (unintentional), subsequent encounter +C2876543|T037|PT|T36.0X1S|ICD10CM|Poisoning by penicillins, accidental (unintentional), sequela|Poisoning by penicillins, accidental (unintentional), sequela +C2876543|T037|AB|T36.0X1S|ICD10CM|Poisoning by penicillins, accidental, sequela|Poisoning by penicillins, accidental, sequela +C2876544|T037|AB|T36.0X2|ICD10CM|Poisoning by penicillins, intentional self-harm|Poisoning by penicillins, intentional self-harm +C2876544|T037|HT|T36.0X2|ICD10CM|Poisoning by penicillins, intentional self-harm|Poisoning by penicillins, intentional self-harm +C2876545|T037|AB|T36.0X2A|ICD10CM|Poisoning by penicillins, intentional self-harm, init encntr|Poisoning by penicillins, intentional self-harm, init encntr +C2876545|T037|PT|T36.0X2A|ICD10CM|Poisoning by penicillins, intentional self-harm, initial encounter|Poisoning by penicillins, intentional self-harm, initial encounter +C2876546|T037|AB|T36.0X2D|ICD10CM|Poisoning by penicillins, intentional self-harm, subs encntr|Poisoning by penicillins, intentional self-harm, subs encntr +C2876546|T037|PT|T36.0X2D|ICD10CM|Poisoning by penicillins, intentional self-harm, subsequent encounter|Poisoning by penicillins, intentional self-harm, subsequent encounter +C2876547|T037|AB|T36.0X2S|ICD10CM|Poisoning by penicillins, intentional self-harm, sequela|Poisoning by penicillins, intentional self-harm, sequela +C2876547|T037|PT|T36.0X2S|ICD10CM|Poisoning by penicillins, intentional self-harm, sequela|Poisoning by penicillins, intentional self-harm, sequela +C2876548|T037|AB|T36.0X3|ICD10CM|Poisoning by penicillins, assault|Poisoning by penicillins, assault +C2876548|T037|HT|T36.0X3|ICD10CM|Poisoning by penicillins, assault|Poisoning by penicillins, assault +C2876549|T037|AB|T36.0X3A|ICD10CM|Poisoning by penicillins, assault, initial encounter|Poisoning by penicillins, assault, initial encounter +C2876549|T037|PT|T36.0X3A|ICD10CM|Poisoning by penicillins, assault, initial encounter|Poisoning by penicillins, assault, initial encounter +C2876550|T037|AB|T36.0X3D|ICD10CM|Poisoning by penicillins, assault, subsequent encounter|Poisoning by penicillins, assault, subsequent encounter +C2876550|T037|PT|T36.0X3D|ICD10CM|Poisoning by penicillins, assault, subsequent encounter|Poisoning by penicillins, assault, subsequent encounter +C2876551|T037|AB|T36.0X3S|ICD10CM|Poisoning by penicillins, assault, sequela|Poisoning by penicillins, assault, sequela +C2876551|T037|PT|T36.0X3S|ICD10CM|Poisoning by penicillins, assault, sequela|Poisoning by penicillins, assault, sequela +C2876552|T037|AB|T36.0X4|ICD10CM|Poisoning by penicillins, undetermined|Poisoning by penicillins, undetermined +C2876552|T037|HT|T36.0X4|ICD10CM|Poisoning by penicillins, undetermined|Poisoning by penicillins, undetermined +C2876553|T037|AB|T36.0X4A|ICD10CM|Poisoning by penicillins, undetermined, initial encounter|Poisoning by penicillins, undetermined, initial encounter +C2876553|T037|PT|T36.0X4A|ICD10CM|Poisoning by penicillins, undetermined, initial encounter|Poisoning by penicillins, undetermined, initial encounter +C2876554|T037|AB|T36.0X4D|ICD10CM|Poisoning by penicillins, undetermined, subsequent encounter|Poisoning by penicillins, undetermined, subsequent encounter +C2876554|T037|PT|T36.0X4D|ICD10CM|Poisoning by penicillins, undetermined, subsequent encounter|Poisoning by penicillins, undetermined, subsequent encounter +C2876555|T037|AB|T36.0X4S|ICD10CM|Poisoning by penicillins, undetermined, sequela|Poisoning by penicillins, undetermined, sequela +C2876555|T037|PT|T36.0X4S|ICD10CM|Poisoning by penicillins, undetermined, sequela|Poisoning by penicillins, undetermined, sequela +C0413443|T046|AB|T36.0X5|ICD10CM|Adverse effect of penicillins|Adverse effect of penicillins +C0413443|T046|HT|T36.0X5|ICD10CM|Adverse effect of penicillins|Adverse effect of penicillins +C2876556|T037|AB|T36.0X5A|ICD10CM|Adverse effect of penicillins, initial encounter|Adverse effect of penicillins, initial encounter +C2876556|T037|PT|T36.0X5A|ICD10CM|Adverse effect of penicillins, initial encounter|Adverse effect of penicillins, initial encounter +C2876557|T037|AB|T36.0X5D|ICD10CM|Adverse effect of penicillins, subsequent encounter|Adverse effect of penicillins, subsequent encounter +C2876557|T037|PT|T36.0X5D|ICD10CM|Adverse effect of penicillins, subsequent encounter|Adverse effect of penicillins, subsequent encounter +C2876558|T037|AB|T36.0X5S|ICD10CM|Adverse effect of penicillins, sequela|Adverse effect of penicillins, sequela +C2876558|T037|PT|T36.0X5S|ICD10CM|Adverse effect of penicillins, sequela|Adverse effect of penicillins, sequela +C2876559|T033|HT|T36.0X6|ICD10CM|Underdosing of penicillins|Underdosing of penicillins +C2876559|T033|AB|T36.0X6|ICD10CM|Underdosing of penicillins|Underdosing of penicillins +C2876560|T037|AB|T36.0X6A|ICD10CM|Underdosing of penicillins, initial encounter|Underdosing of penicillins, initial encounter +C2876560|T037|PT|T36.0X6A|ICD10CM|Underdosing of penicillins, initial encounter|Underdosing of penicillins, initial encounter +C2876561|T037|AB|T36.0X6D|ICD10CM|Underdosing of penicillins, subsequent encounter|Underdosing of penicillins, subsequent encounter +C2876561|T037|PT|T36.0X6D|ICD10CM|Underdosing of penicillins, subsequent encounter|Underdosing of penicillins, subsequent encounter +C2876562|T037|AB|T36.0X6S|ICD10CM|Underdosing of penicillins, sequela|Underdosing of penicillins, sequela +C2876562|T037|PT|T36.0X6S|ICD10CM|Underdosing of penicillins, sequela|Underdosing of penicillins, sequela +C0496959|T037|PS|T36.1|ICD10|Cefalosporins and other beta-lactam antibiotics|Cefalosporins and other beta-lactam antibiotics +C2876563|T037|AB|T36.1|ICD10CM|Cephalospor/oth beta-lactm antibiotics|Cephalospor/oth beta-lactm antibiotics +C0496959|T037|PX|T36.1|ICD10|Poisoning by cefalosporins and other beta-lactam antibiotics|Poisoning by cefalosporins and other beta-lactam antibiotics +C2876563|T037|HT|T36.1|ICD10CM|Poisoning by, adverse effect of and underdosing of cephalosporins and other beta-lactam antibiotics|Poisoning by, adverse effect of and underdosing of cephalosporins and other beta-lactam antibiotics +C2876563|T037|AB|T36.1X|ICD10CM|Cephalospor/oth beta-lactm antibiotics|Cephalospor/oth beta-lactm antibiotics +C2876563|T037|HT|T36.1X|ICD10CM|Poisoning by, adverse effect of and underdosing of cephalosporins and other beta-lactam antibiotics|Poisoning by, adverse effect of and underdosing of cephalosporins and other beta-lactam antibiotics +C2876564|T037|AB|T36.1X1|ICD10CM|Poisoning by cephalospor/oth beta-lactm antibiot, acc|Poisoning by cephalospor/oth beta-lactm antibiot, acc +C0496959|T037|ET|T36.1X1|ICD10CM|Poisoning by cephalosporins and other beta-lactam antibiotics NOS|Poisoning by cephalosporins and other beta-lactam antibiotics NOS +C2876564|T037|HT|T36.1X1|ICD10CM|Poisoning by cephalosporins and other beta-lactam antibiotics, accidental (unintentional)|Poisoning by cephalosporins and other beta-lactam antibiotics, accidental (unintentional) +C2876565|T037|AB|T36.1X1A|ICD10CM|Poisoning by cephalospor/oth beta-lactm antibiot, acc, init|Poisoning by cephalospor/oth beta-lactm antibiot, acc, init +C2876566|T037|AB|T36.1X1D|ICD10CM|Poisoning by cephalospor/oth beta-lactm antibiot, acc, subs|Poisoning by cephalospor/oth beta-lactm antibiot, acc, subs +C2876567|T037|AB|T36.1X1S|ICD10CM|Poisn by cephalospor/oth beta-lactm antibiot, acc, sequela|Poisn by cephalospor/oth beta-lactm antibiot, acc, sequela +C2876567|T037|PT|T36.1X1S|ICD10CM|Poisoning by cephalosporins and other beta-lactam antibiotics, accidental (unintentional), sequela|Poisoning by cephalosporins and other beta-lactam antibiotics, accidental (unintentional), sequela +C2876568|T037|AB|T36.1X2|ICD10CM|Poisoning by cephalospor/oth beta-lactm antibiot, self-harm|Poisoning by cephalospor/oth beta-lactm antibiot, self-harm +C2876568|T037|HT|T36.1X2|ICD10CM|Poisoning by cephalosporins and other beta-lactam antibiotics, intentional self-harm|Poisoning by cephalosporins and other beta-lactam antibiotics, intentional self-harm +C2876569|T037|AB|T36.1X2A|ICD10CM|Poisn by cephalospor/oth beta-lactm antibiot, slf-hrm, init|Poisn by cephalospor/oth beta-lactm antibiot, slf-hrm, init +C2876570|T037|AB|T36.1X2D|ICD10CM|Poisn by cephalospor/oth beta-lactm antibiot, slf-hrm, subs|Poisn by cephalospor/oth beta-lactm antibiot, slf-hrm, subs +C2876571|T037|AB|T36.1X2S|ICD10CM|Poisn by cephalospor/oth beta-lactm antibiot, slf-hrm, sqla|Poisn by cephalospor/oth beta-lactm antibiot, slf-hrm, sqla +C2876571|T037|PT|T36.1X2S|ICD10CM|Poisoning by cephalosporins and other beta-lactam antibiotics, intentional self-harm, sequela|Poisoning by cephalosporins and other beta-lactam antibiotics, intentional self-harm, sequela +C2876572|T037|AB|T36.1X3|ICD10CM|Poisoning by cephalospor/oth beta-lactm antibiotics, assault|Poisoning by cephalospor/oth beta-lactm antibiotics, assault +C2876572|T037|HT|T36.1X3|ICD10CM|Poisoning by cephalosporins and other beta-lactam antibiotics, assault|Poisoning by cephalosporins and other beta-lactam antibiotics, assault +C2876573|T037|AB|T36.1X3A|ICD10CM|Poisn by cephalospor/oth beta-lactm antibiot, assault, init|Poisn by cephalospor/oth beta-lactm antibiot, assault, init +C2876573|T037|PT|T36.1X3A|ICD10CM|Poisoning by cephalosporins and other beta-lactam antibiotics, assault, initial encounter|Poisoning by cephalosporins and other beta-lactam antibiotics, assault, initial encounter +C2876574|T037|AB|T36.1X3D|ICD10CM|Poisn by cephalospor/oth beta-lactm antibiot, assault, subs|Poisn by cephalospor/oth beta-lactm antibiot, assault, subs +C2876574|T037|PT|T36.1X3D|ICD10CM|Poisoning by cephalosporins and other beta-lactam antibiotics, assault, subsequent encounter|Poisoning by cephalosporins and other beta-lactam antibiotics, assault, subsequent encounter +C2876575|T037|AB|T36.1X3S|ICD10CM|Poisn by cephalospor/oth beta-lactm antibiot, asslt, sequela|Poisn by cephalospor/oth beta-lactm antibiot, asslt, sequela +C2876575|T037|PT|T36.1X3S|ICD10CM|Poisoning by cephalosporins and other beta-lactam antibiotics, assault, sequela|Poisoning by cephalosporins and other beta-lactam antibiotics, assault, sequela +C2876576|T037|AB|T36.1X4|ICD10CM|Poisoning by cephalospor/oth beta-lactm antibiotics, undet|Poisoning by cephalospor/oth beta-lactm antibiotics, undet +C2876576|T037|HT|T36.1X4|ICD10CM|Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined|Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined +C2876577|T037|AB|T36.1X4A|ICD10CM|Poisn by cephalospor/oth beta-lactm antibiot, undet, init|Poisn by cephalospor/oth beta-lactm antibiot, undet, init +C2876577|T037|PT|T36.1X4A|ICD10CM|Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined, initial encounter|Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined, initial encounter +C2876578|T037|AB|T36.1X4D|ICD10CM|Poisn by cephalospor/oth beta-lactm antibiot, undet, subs|Poisn by cephalospor/oth beta-lactm antibiot, undet, subs +C2876578|T037|PT|T36.1X4D|ICD10CM|Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined, subsequent encounter|Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined, subsequent encounter +C2876579|T037|AB|T36.1X4S|ICD10CM|Poisn by cephalospor/oth beta-lactm antibiot, undet, sequela|Poisn by cephalospor/oth beta-lactm antibiot, undet, sequela +C2876579|T037|PT|T36.1X4S|ICD10CM|Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined, sequela|Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined, sequela +C2876580|T037|AB|T36.1X5|ICD10CM|Adverse effect of cephalospor/oth beta-lactm antibiotics|Adverse effect of cephalospor/oth beta-lactm antibiotics +C2876580|T037|HT|T36.1X5|ICD10CM|Adverse effect of cephalosporins and other beta-lactam antibiotics|Adverse effect of cephalosporins and other beta-lactam antibiotics +C2876581|T037|AB|T36.1X5A|ICD10CM|Adverse effect of cephalospor/oth beta-lactm antibiot, init|Adverse effect of cephalospor/oth beta-lactm antibiot, init +C2876581|T037|PT|T36.1X5A|ICD10CM|Adverse effect of cephalosporins and other beta-lactam antibiotics, initial encounter|Adverse effect of cephalosporins and other beta-lactam antibiotics, initial encounter +C2876582|T037|AB|T36.1X5D|ICD10CM|Adverse effect of cephalospor/oth beta-lactm antibiot, subs|Adverse effect of cephalospor/oth beta-lactm antibiot, subs +C2876582|T037|PT|T36.1X5D|ICD10CM|Adverse effect of cephalosporins and other beta-lactam antibiotics, subsequent encounter|Adverse effect of cephalosporins and other beta-lactam antibiotics, subsequent encounter +C2876583|T037|PT|T36.1X5S|ICD10CM|Adverse effect of cephalosporins and other beta-lactam antibiotics, sequela|Adverse effect of cephalosporins and other beta-lactam antibiotics, sequela +C2876583|T037|AB|T36.1X5S|ICD10CM|Advrs effect of cephalospor/oth beta-lactm antibiot, sequela|Advrs effect of cephalospor/oth beta-lactm antibiot, sequela +C2876584|T037|AB|T36.1X6|ICD10CM|Underdosing of cephalospor/oth beta-lactm antibiotics|Underdosing of cephalospor/oth beta-lactm antibiotics +C2876584|T037|HT|T36.1X6|ICD10CM|Underdosing of cephalosporins and other beta-lactam antibiotics|Underdosing of cephalosporins and other beta-lactam antibiotics +C2876585|T037|AB|T36.1X6A|ICD10CM|Underdosing of cephalospor/oth beta-lactm antibiotics, init|Underdosing of cephalospor/oth beta-lactm antibiotics, init +C2876585|T037|PT|T36.1X6A|ICD10CM|Underdosing of cephalosporins and other beta-lactam antibiotics, initial encounter|Underdosing of cephalosporins and other beta-lactam antibiotics, initial encounter +C2876586|T037|AB|T36.1X6D|ICD10CM|Underdosing of cephalospor/oth beta-lactm antibiotics, subs|Underdosing of cephalospor/oth beta-lactm antibiotics, subs +C2876586|T037|PT|T36.1X6D|ICD10CM|Underdosing of cephalosporins and other beta-lactam antibiotics, subsequent encounter|Underdosing of cephalosporins and other beta-lactam antibiotics, subsequent encounter +C2876587|T037|AB|T36.1X6S|ICD10CM|Underdosing of cephalospor/oth beta-lactm antibiot, sequela|Underdosing of cephalospor/oth beta-lactm antibiot, sequela +C2876587|T037|PT|T36.1X6S|ICD10CM|Underdosing of cephalosporins and other beta-lactam antibiotics, sequela|Underdosing of cephalosporins and other beta-lactam antibiotics, sequela +C2876588|T037|AB|T36.2|ICD10CM|Chloramphenicol group|Chloramphenicol group +C0161488|T037|PS|T36.2|ICD10|Chloramphenicol group|Chloramphenicol group +C0161488|T037|PX|T36.2|ICD10|Poisoning by chloramphenicol group|Poisoning by chloramphenicol group +C2876588|T037|HT|T36.2|ICD10CM|Poisoning by, adverse effect of and underdosing of chloramphenicol group|Poisoning by, adverse effect of and underdosing of chloramphenicol group +C2876588|T037|AB|T36.2X|ICD10CM|Chloramphenicol group|Chloramphenicol group +C2876588|T037|HT|T36.2X|ICD10CM|Poisoning by, adverse effect of and underdosing of chloramphenicol group|Poisoning by, adverse effect of and underdosing of chloramphenicol group +C0161488|T037|ET|T36.2X1|ICD10CM|Poisoning by chloramphenicol group NOS|Poisoning by chloramphenicol group NOS +C2876589|T037|AB|T36.2X1|ICD10CM|Poisoning by chloramphenicol group, accidental|Poisoning by chloramphenicol group, accidental +C2876589|T037|HT|T36.2X1|ICD10CM|Poisoning by chloramphenicol group, accidental (unintentional)|Poisoning by chloramphenicol group, accidental (unintentional) +C2876590|T037|PT|T36.2X1A|ICD10CM|Poisoning by chloramphenicol group, accidental (unintentional), initial encounter|Poisoning by chloramphenicol group, accidental (unintentional), initial encounter +C2876590|T037|AB|T36.2X1A|ICD10CM|Poisoning by chloramphenicol group, accidental, init|Poisoning by chloramphenicol group, accidental, init +C2876591|T037|PT|T36.2X1D|ICD10CM|Poisoning by chloramphenicol group, accidental (unintentional), subsequent encounter|Poisoning by chloramphenicol group, accidental (unintentional), subsequent encounter +C2876591|T037|AB|T36.2X1D|ICD10CM|Poisoning by chloramphenicol group, accidental, subs|Poisoning by chloramphenicol group, accidental, subs +C2876592|T037|PT|T36.2X1S|ICD10CM|Poisoning by chloramphenicol group, accidental (unintentional), sequela|Poisoning by chloramphenicol group, accidental (unintentional), sequela +C2876592|T037|AB|T36.2X1S|ICD10CM|Poisoning by chloramphenicol group, accidental, sequela|Poisoning by chloramphenicol group, accidental, sequela +C2876593|T037|AB|T36.2X2|ICD10CM|Poisoning by chloramphenicol group, intentional self-harm|Poisoning by chloramphenicol group, intentional self-harm +C2876593|T037|HT|T36.2X2|ICD10CM|Poisoning by chloramphenicol group, intentional self-harm|Poisoning by chloramphenicol group, intentional self-harm +C2876594|T037|PT|T36.2X2A|ICD10CM|Poisoning by chloramphenicol group, intentional self-harm, initial encounter|Poisoning by chloramphenicol group, intentional self-harm, initial encounter +C2876594|T037|AB|T36.2X2A|ICD10CM|Poisoning by chloramphenicol group, self-harm, init|Poisoning by chloramphenicol group, self-harm, init +C2876595|T037|PT|T36.2X2D|ICD10CM|Poisoning by chloramphenicol group, intentional self-harm, subsequent encounter|Poisoning by chloramphenicol group, intentional self-harm, subsequent encounter +C2876595|T037|AB|T36.2X2D|ICD10CM|Poisoning by chloramphenicol group, self-harm, subs|Poisoning by chloramphenicol group, self-harm, subs +C2876596|T037|PT|T36.2X2S|ICD10CM|Poisoning by chloramphenicol group, intentional self-harm, sequela|Poisoning by chloramphenicol group, intentional self-harm, sequela +C2876596|T037|AB|T36.2X2S|ICD10CM|Poisoning by chloramphenicol group, self-harm, sequela|Poisoning by chloramphenicol group, self-harm, sequela +C2876597|T037|AB|T36.2X3|ICD10CM|Poisoning by chloramphenicol group, assault|Poisoning by chloramphenicol group, assault +C2876597|T037|HT|T36.2X3|ICD10CM|Poisoning by chloramphenicol group, assault|Poisoning by chloramphenicol group, assault +C2876598|T037|AB|T36.2X3A|ICD10CM|Poisoning by chloramphenicol group, assault, init encntr|Poisoning by chloramphenicol group, assault, init encntr +C2876598|T037|PT|T36.2X3A|ICD10CM|Poisoning by chloramphenicol group, assault, initial encounter|Poisoning by chloramphenicol group, assault, initial encounter +C2876599|T037|AB|T36.2X3D|ICD10CM|Poisoning by chloramphenicol group, assault, subs encntr|Poisoning by chloramphenicol group, assault, subs encntr +C2876599|T037|PT|T36.2X3D|ICD10CM|Poisoning by chloramphenicol group, assault, subsequent encounter|Poisoning by chloramphenicol group, assault, subsequent encounter +C2876600|T037|AB|T36.2X3S|ICD10CM|Poisoning by chloramphenicol group, assault, sequela|Poisoning by chloramphenicol group, assault, sequela +C2876600|T037|PT|T36.2X3S|ICD10CM|Poisoning by chloramphenicol group, assault, sequela|Poisoning by chloramphenicol group, assault, sequela +C2876601|T037|AB|T36.2X4|ICD10CM|Poisoning by chloramphenicol group, undetermined|Poisoning by chloramphenicol group, undetermined +C2876601|T037|HT|T36.2X4|ICD10CM|Poisoning by chloramphenicol group, undetermined|Poisoning by chloramphenicol group, undetermined +C2876602|T037|AB|T36.2X4A|ICD10CM|Poisoning by chloramphenicol group, undetermined, init|Poisoning by chloramphenicol group, undetermined, init +C2876602|T037|PT|T36.2X4A|ICD10CM|Poisoning by chloramphenicol group, undetermined, initial encounter|Poisoning by chloramphenicol group, undetermined, initial encounter +C2876603|T037|AB|T36.2X4D|ICD10CM|Poisoning by chloramphenicol group, undetermined, subs|Poisoning by chloramphenicol group, undetermined, subs +C2876603|T037|PT|T36.2X4D|ICD10CM|Poisoning by chloramphenicol group, undetermined, subsequent encounter|Poisoning by chloramphenicol group, undetermined, subsequent encounter +C2876604|T037|AB|T36.2X4S|ICD10CM|Poisoning by chloramphenicol group, undetermined, sequela|Poisoning by chloramphenicol group, undetermined, sequela +C2876604|T037|PT|T36.2X4S|ICD10CM|Poisoning by chloramphenicol group, undetermined, sequela|Poisoning by chloramphenicol group, undetermined, sequela +C2876605|T037|AB|T36.2X5|ICD10CM|Adverse effect of chloramphenicol group|Adverse effect of chloramphenicol group +C2876605|T037|HT|T36.2X5|ICD10CM|Adverse effect of chloramphenicol group|Adverse effect of chloramphenicol group +C2876606|T037|AB|T36.2X5A|ICD10CM|Adverse effect of chloramphenicol group, initial encounter|Adverse effect of chloramphenicol group, initial encounter +C2876606|T037|PT|T36.2X5A|ICD10CM|Adverse effect of chloramphenicol group, initial encounter|Adverse effect of chloramphenicol group, initial encounter +C2876607|T037|AB|T36.2X5D|ICD10CM|Adverse effect of chloramphenicol group, subs encntr|Adverse effect of chloramphenicol group, subs encntr +C2876607|T037|PT|T36.2X5D|ICD10CM|Adverse effect of chloramphenicol group, subsequent encounter|Adverse effect of chloramphenicol group, subsequent encounter +C2876608|T037|AB|T36.2X5S|ICD10CM|Adverse effect of chloramphenicol group, sequela|Adverse effect of chloramphenicol group, sequela +C2876608|T037|PT|T36.2X5S|ICD10CM|Adverse effect of chloramphenicol group, sequela|Adverse effect of chloramphenicol group, sequela +C2876609|T037|AB|T36.2X6|ICD10CM|Underdosing of chloramphenicol group|Underdosing of chloramphenicol group +C2876609|T037|HT|T36.2X6|ICD10CM|Underdosing of chloramphenicol group|Underdosing of chloramphenicol group +C2876610|T037|AB|T36.2X6A|ICD10CM|Underdosing of chloramphenicol group, initial encounter|Underdosing of chloramphenicol group, initial encounter +C2876610|T037|PT|T36.2X6A|ICD10CM|Underdosing of chloramphenicol group, initial encounter|Underdosing of chloramphenicol group, initial encounter +C2876611|T037|AB|T36.2X6D|ICD10CM|Underdosing of chloramphenicol group, subsequent encounter|Underdosing of chloramphenicol group, subsequent encounter +C2876611|T037|PT|T36.2X6D|ICD10CM|Underdosing of chloramphenicol group, subsequent encounter|Underdosing of chloramphenicol group, subsequent encounter +C2876612|T037|AB|T36.2X6S|ICD10CM|Underdosing of chloramphenicol group, sequela|Underdosing of chloramphenicol group, sequela +C2876612|T037|PT|T36.2X6S|ICD10CM|Underdosing of chloramphenicol group, sequela|Underdosing of chloramphenicol group, sequela +C2876613|T037|AB|T36.3|ICD10CM|Macrolides|Macrolides +C0344110|T037|PS|T36.3|ICD10|Macrolides|Macrolides +C0344110|T037|PX|T36.3|ICD10|Poisoning by macrolides|Poisoning by macrolides +C2876613|T037|HT|T36.3|ICD10CM|Poisoning by, adverse effect of and underdosing of macrolides|Poisoning by, adverse effect of and underdosing of macrolides +C2876613|T037|AB|T36.3X|ICD10CM|Macrolides|Macrolides +C2876613|T037|HT|T36.3X|ICD10CM|Poisoning by, adverse effect of and underdosing of macrolides|Poisoning by, adverse effect of and underdosing of macrolides +C0344110|T037|ET|T36.3X1|ICD10CM|Poisoning by macrolides NOS|Poisoning by macrolides NOS +C2876614|T037|AB|T36.3X1|ICD10CM|Poisoning by macrolides, accidental (unintentional)|Poisoning by macrolides, accidental (unintentional) +C2876614|T037|HT|T36.3X1|ICD10CM|Poisoning by macrolides, accidental (unintentional)|Poisoning by macrolides, accidental (unintentional) +C2876615|T037|AB|T36.3X1A|ICD10CM|Poisoning by macrolides, accidental (unintentional), init|Poisoning by macrolides, accidental (unintentional), init +C2876615|T037|PT|T36.3X1A|ICD10CM|Poisoning by macrolides, accidental (unintentional), initial encounter|Poisoning by macrolides, accidental (unintentional), initial encounter +C2876616|T037|AB|T36.3X1D|ICD10CM|Poisoning by macrolides, accidental (unintentional), subs|Poisoning by macrolides, accidental (unintentional), subs +C2876616|T037|PT|T36.3X1D|ICD10CM|Poisoning by macrolides, accidental (unintentional), subsequent encounter|Poisoning by macrolides, accidental (unintentional), subsequent encounter +C2876617|T037|AB|T36.3X1S|ICD10CM|Poisoning by macrolides, accidental (unintentional), sequela|Poisoning by macrolides, accidental (unintentional), sequela +C2876617|T037|PT|T36.3X1S|ICD10CM|Poisoning by macrolides, accidental (unintentional), sequela|Poisoning by macrolides, accidental (unintentional), sequela +C2876618|T037|AB|T36.3X2|ICD10CM|Poisoning by macrolides, intentional self-harm|Poisoning by macrolides, intentional self-harm +C2876618|T037|HT|T36.3X2|ICD10CM|Poisoning by macrolides, intentional self-harm|Poisoning by macrolides, intentional self-harm +C2876619|T037|AB|T36.3X2A|ICD10CM|Poisoning by macrolides, intentional self-harm, init encntr|Poisoning by macrolides, intentional self-harm, init encntr +C2876619|T037|PT|T36.3X2A|ICD10CM|Poisoning by macrolides, intentional self-harm, initial encounter|Poisoning by macrolides, intentional self-harm, initial encounter +C2876620|T037|AB|T36.3X2D|ICD10CM|Poisoning by macrolides, intentional self-harm, subs encntr|Poisoning by macrolides, intentional self-harm, subs encntr +C2876620|T037|PT|T36.3X2D|ICD10CM|Poisoning by macrolides, intentional self-harm, subsequent encounter|Poisoning by macrolides, intentional self-harm, subsequent encounter +C2876621|T037|AB|T36.3X2S|ICD10CM|Poisoning by macrolides, intentional self-harm, sequela|Poisoning by macrolides, intentional self-harm, sequela +C2876621|T037|PT|T36.3X2S|ICD10CM|Poisoning by macrolides, intentional self-harm, sequela|Poisoning by macrolides, intentional self-harm, sequela +C2876622|T037|AB|T36.3X3|ICD10CM|Poisoning by macrolides, assault|Poisoning by macrolides, assault +C2876622|T037|HT|T36.3X3|ICD10CM|Poisoning by macrolides, assault|Poisoning by macrolides, assault +C2876623|T037|AB|T36.3X3A|ICD10CM|Poisoning by macrolides, assault, initial encounter|Poisoning by macrolides, assault, initial encounter +C2876623|T037|PT|T36.3X3A|ICD10CM|Poisoning by macrolides, assault, initial encounter|Poisoning by macrolides, assault, initial encounter +C2876624|T037|AB|T36.3X3D|ICD10CM|Poisoning by macrolides, assault, subsequent encounter|Poisoning by macrolides, assault, subsequent encounter +C2876624|T037|PT|T36.3X3D|ICD10CM|Poisoning by macrolides, assault, subsequent encounter|Poisoning by macrolides, assault, subsequent encounter +C2876625|T037|AB|T36.3X3S|ICD10CM|Poisoning by macrolides, assault, sequela|Poisoning by macrolides, assault, sequela +C2876625|T037|PT|T36.3X3S|ICD10CM|Poisoning by macrolides, assault, sequela|Poisoning by macrolides, assault, sequela +C2876626|T037|AB|T36.3X4|ICD10CM|Poisoning by macrolides, undetermined|Poisoning by macrolides, undetermined +C2876626|T037|HT|T36.3X4|ICD10CM|Poisoning by macrolides, undetermined|Poisoning by macrolides, undetermined +C2876627|T037|AB|T36.3X4A|ICD10CM|Poisoning by macrolides, undetermined, initial encounter|Poisoning by macrolides, undetermined, initial encounter +C2876627|T037|PT|T36.3X4A|ICD10CM|Poisoning by macrolides, undetermined, initial encounter|Poisoning by macrolides, undetermined, initial encounter +C2876628|T037|AB|T36.3X4D|ICD10CM|Poisoning by macrolides, undetermined, subsequent encounter|Poisoning by macrolides, undetermined, subsequent encounter +C2876628|T037|PT|T36.3X4D|ICD10CM|Poisoning by macrolides, undetermined, subsequent encounter|Poisoning by macrolides, undetermined, subsequent encounter +C2876629|T037|AB|T36.3X4S|ICD10CM|Poisoning by macrolides, undetermined, sequela|Poisoning by macrolides, undetermined, sequela +C2876629|T037|PT|T36.3X4S|ICD10CM|Poisoning by macrolides, undetermined, sequela|Poisoning by macrolides, undetermined, sequela +C0481113|T046|AB|T36.3X5|ICD10CM|Adverse effect of macrolides|Adverse effect of macrolides +C0481113|T046|HT|T36.3X5|ICD10CM|Adverse effect of macrolides|Adverse effect of macrolides +C2876630|T037|AB|T36.3X5A|ICD10CM|Adverse effect of macrolides, initial encounter|Adverse effect of macrolides, initial encounter +C2876630|T037|PT|T36.3X5A|ICD10CM|Adverse effect of macrolides, initial encounter|Adverse effect of macrolides, initial encounter +C2876631|T037|AB|T36.3X5D|ICD10CM|Adverse effect of macrolides, subsequent encounter|Adverse effect of macrolides, subsequent encounter +C2876631|T037|PT|T36.3X5D|ICD10CM|Adverse effect of macrolides, subsequent encounter|Adverse effect of macrolides, subsequent encounter +C2876632|T037|AB|T36.3X5S|ICD10CM|Adverse effect of macrolides, sequela|Adverse effect of macrolides, sequela +C2876632|T037|PT|T36.3X5S|ICD10CM|Adverse effect of macrolides, sequela|Adverse effect of macrolides, sequela +C2876633|T033|HT|T36.3X6|ICD10CM|Underdosing of macrolides|Underdosing of macrolides +C2876633|T033|AB|T36.3X6|ICD10CM|Underdosing of macrolides|Underdosing of macrolides +C2876634|T037|AB|T36.3X6A|ICD10CM|Underdosing of macrolides, initial encounter|Underdosing of macrolides, initial encounter +C2876634|T037|PT|T36.3X6A|ICD10CM|Underdosing of macrolides, initial encounter|Underdosing of macrolides, initial encounter +C2876635|T037|AB|T36.3X6D|ICD10CM|Underdosing of macrolides, subsequent encounter|Underdosing of macrolides, subsequent encounter +C2876635|T037|PT|T36.3X6D|ICD10CM|Underdosing of macrolides, subsequent encounter|Underdosing of macrolides, subsequent encounter +C2876636|T037|AB|T36.3X6S|ICD10CM|Underdosing of macrolides, sequela|Underdosing of macrolides, sequela +C2876636|T037|PT|T36.3X6S|ICD10CM|Underdosing of macrolides, sequela|Underdosing of macrolides, sequela +C0344112|T037|PX|T36.4|ICD10|Poisoning by tetracyclines|Poisoning by tetracyclines +C2876637|T037|HT|T36.4|ICD10CM|Poisoning by, adverse effect of and underdosing of tetracyclines|Poisoning by, adverse effect of and underdosing of tetracyclines +C2876637|T037|AB|T36.4|ICD10CM|Tetracyclines|Tetracyclines +C0344112|T037|PS|T36.4|ICD10|Tetracyclines|Tetracyclines +C2876637|T037|HT|T36.4X|ICD10CM|Poisoning by, adverse effect of and underdosing of tetracyclines|Poisoning by, adverse effect of and underdosing of tetracyclines +C2876637|T037|AB|T36.4X|ICD10CM|Tetracyclines|Tetracyclines +C0344112|T037|ET|T36.4X1|ICD10CM|Poisoning by tetracyclines NOS|Poisoning by tetracyclines NOS +C2876638|T037|AB|T36.4X1|ICD10CM|Poisoning by tetracyclines, accidental (unintentional)|Poisoning by tetracyclines, accidental (unintentional) +C2876638|T037|HT|T36.4X1|ICD10CM|Poisoning by tetracyclines, accidental (unintentional)|Poisoning by tetracyclines, accidental (unintentional) +C2876639|T037|AB|T36.4X1A|ICD10CM|Poisoning by tetracyclines, accidental (unintentional), init|Poisoning by tetracyclines, accidental (unintentional), init +C2876639|T037|PT|T36.4X1A|ICD10CM|Poisoning by tetracyclines, accidental (unintentional), initial encounter|Poisoning by tetracyclines, accidental (unintentional), initial encounter +C2876640|T037|AB|T36.4X1D|ICD10CM|Poisoning by tetracyclines, accidental (unintentional), subs|Poisoning by tetracyclines, accidental (unintentional), subs +C2876640|T037|PT|T36.4X1D|ICD10CM|Poisoning by tetracyclines, accidental (unintentional), subsequent encounter|Poisoning by tetracyclines, accidental (unintentional), subsequent encounter +C2876641|T037|PT|T36.4X1S|ICD10CM|Poisoning by tetracyclines, accidental (unintentional), sequela|Poisoning by tetracyclines, accidental (unintentional), sequela +C2876641|T037|AB|T36.4X1S|ICD10CM|Poisoning by tetracyclines, accidental, sequela|Poisoning by tetracyclines, accidental, sequela +C2876642|T037|AB|T36.4X2|ICD10CM|Poisoning by tetracyclines, intentional self-harm|Poisoning by tetracyclines, intentional self-harm +C2876642|T037|HT|T36.4X2|ICD10CM|Poisoning by tetracyclines, intentional self-harm|Poisoning by tetracyclines, intentional self-harm +C2876643|T037|AB|T36.4X2A|ICD10CM|Poisoning by tetracyclines, intentional self-harm, init|Poisoning by tetracyclines, intentional self-harm, init +C2876643|T037|PT|T36.4X2A|ICD10CM|Poisoning by tetracyclines, intentional self-harm, initial encounter|Poisoning by tetracyclines, intentional self-harm, initial encounter +C2876644|T037|AB|T36.4X2D|ICD10CM|Poisoning by tetracyclines, intentional self-harm, subs|Poisoning by tetracyclines, intentional self-harm, subs +C2876644|T037|PT|T36.4X2D|ICD10CM|Poisoning by tetracyclines, intentional self-harm, subsequent encounter|Poisoning by tetracyclines, intentional self-harm, subsequent encounter +C2876645|T037|AB|T36.4X2S|ICD10CM|Poisoning by tetracyclines, intentional self-harm, sequela|Poisoning by tetracyclines, intentional self-harm, sequela +C2876645|T037|PT|T36.4X2S|ICD10CM|Poisoning by tetracyclines, intentional self-harm, sequela|Poisoning by tetracyclines, intentional self-harm, sequela +C2876646|T037|AB|T36.4X3|ICD10CM|Poisoning by tetracyclines, assault|Poisoning by tetracyclines, assault +C2876646|T037|HT|T36.4X3|ICD10CM|Poisoning by tetracyclines, assault|Poisoning by tetracyclines, assault +C2876647|T037|AB|T36.4X3A|ICD10CM|Poisoning by tetracyclines, assault, initial encounter|Poisoning by tetracyclines, assault, initial encounter +C2876647|T037|PT|T36.4X3A|ICD10CM|Poisoning by tetracyclines, assault, initial encounter|Poisoning by tetracyclines, assault, initial encounter +C2876648|T037|AB|T36.4X3D|ICD10CM|Poisoning by tetracyclines, assault, subsequent encounter|Poisoning by tetracyclines, assault, subsequent encounter +C2876648|T037|PT|T36.4X3D|ICD10CM|Poisoning by tetracyclines, assault, subsequent encounter|Poisoning by tetracyclines, assault, subsequent encounter +C2876649|T037|AB|T36.4X3S|ICD10CM|Poisoning by tetracyclines, assault, sequela|Poisoning by tetracyclines, assault, sequela +C2876649|T037|PT|T36.4X3S|ICD10CM|Poisoning by tetracyclines, assault, sequela|Poisoning by tetracyclines, assault, sequela +C2876650|T037|AB|T36.4X4|ICD10CM|Poisoning by tetracyclines, undetermined|Poisoning by tetracyclines, undetermined +C2876650|T037|HT|T36.4X4|ICD10CM|Poisoning by tetracyclines, undetermined|Poisoning by tetracyclines, undetermined +C2876651|T037|AB|T36.4X4A|ICD10CM|Poisoning by tetracyclines, undetermined, initial encounter|Poisoning by tetracyclines, undetermined, initial encounter +C2876651|T037|PT|T36.4X4A|ICD10CM|Poisoning by tetracyclines, undetermined, initial encounter|Poisoning by tetracyclines, undetermined, initial encounter +C2876652|T037|AB|T36.4X4D|ICD10CM|Poisoning by tetracyclines, undetermined, subs encntr|Poisoning by tetracyclines, undetermined, subs encntr +C2876652|T037|PT|T36.4X4D|ICD10CM|Poisoning by tetracyclines, undetermined, subsequent encounter|Poisoning by tetracyclines, undetermined, subsequent encounter +C2876653|T037|AB|T36.4X4S|ICD10CM|Poisoning by tetracyclines, undetermined, sequela|Poisoning by tetracyclines, undetermined, sequela +C2876653|T037|PT|T36.4X4S|ICD10CM|Poisoning by tetracyclines, undetermined, sequela|Poisoning by tetracyclines, undetermined, sequela +C0413483|T046|AB|T36.4X5|ICD10CM|Adverse effect of tetracyclines|Adverse effect of tetracyclines +C0413483|T046|HT|T36.4X5|ICD10CM|Adverse effect of tetracyclines|Adverse effect of tetracyclines +C2876654|T037|AB|T36.4X5A|ICD10CM|Adverse effect of tetracyclines, initial encounter|Adverse effect of tetracyclines, initial encounter +C2876654|T037|PT|T36.4X5A|ICD10CM|Adverse effect of tetracyclines, initial encounter|Adverse effect of tetracyclines, initial encounter +C2876655|T037|AB|T36.4X5D|ICD10CM|Adverse effect of tetracyclines, subsequent encounter|Adverse effect of tetracyclines, subsequent encounter +C2876655|T037|PT|T36.4X5D|ICD10CM|Adverse effect of tetracyclines, subsequent encounter|Adverse effect of tetracyclines, subsequent encounter +C2876656|T037|AB|T36.4X5S|ICD10CM|Adverse effect of tetracyclines, sequela|Adverse effect of tetracyclines, sequela +C2876656|T037|PT|T36.4X5S|ICD10CM|Adverse effect of tetracyclines, sequela|Adverse effect of tetracyclines, sequela +C2876657|T033|HT|T36.4X6|ICD10CM|Underdosing of tetracyclines|Underdosing of tetracyclines +C2876657|T033|AB|T36.4X6|ICD10CM|Underdosing of tetracyclines|Underdosing of tetracyclines +C2876658|T037|AB|T36.4X6A|ICD10CM|Underdosing of tetracyclines, initial encounter|Underdosing of tetracyclines, initial encounter +C2876658|T037|PT|T36.4X6A|ICD10CM|Underdosing of tetracyclines, initial encounter|Underdosing of tetracyclines, initial encounter +C2876659|T037|AB|T36.4X6D|ICD10CM|Underdosing of tetracyclines, subsequent encounter|Underdosing of tetracyclines, subsequent encounter +C2876659|T037|PT|T36.4X6D|ICD10CM|Underdosing of tetracyclines, subsequent encounter|Underdosing of tetracyclines, subsequent encounter +C2876660|T037|AB|T36.4X6S|ICD10CM|Underdosing of tetracyclines, sequela|Underdosing of tetracyclines, sequela +C2876660|T037|PT|T36.4X6S|ICD10CM|Underdosing of tetracyclines, sequela|Underdosing of tetracyclines, sequela +C2876662|T037|AB|T36.5|ICD10CM|Aminoglycosides|Aminoglycosides +C0496960|T037|PS|T36.5|ICD10|Aminoglycosides|Aminoglycosides +C0496960|T037|PX|T36.5|ICD10|Poisoning by aminoglycosides|Poisoning by aminoglycosides +C2876662|T037|HT|T36.5|ICD10CM|Poisoning by, adverse effect of and underdosing of aminoglycosides|Poisoning by, adverse effect of and underdosing of aminoglycosides +C2876661|T037|ET|T36.5|ICD10CM|Poisoning by, adverse effect of and underdosing of streptomycin|Poisoning by, adverse effect of and underdosing of streptomycin +C2876662|T037|AB|T36.5X|ICD10CM|Aminoglycosides|Aminoglycosides +C2876662|T037|HT|T36.5X|ICD10CM|Poisoning by, adverse effect of and underdosing of aminoglycosides|Poisoning by, adverse effect of and underdosing of aminoglycosides +C0496960|T037|ET|T36.5X1|ICD10CM|Poisoning by aminoglycosides NOS|Poisoning by aminoglycosides NOS +C2876663|T037|AB|T36.5X1|ICD10CM|Poisoning by aminoglycosides, accidental (unintentional)|Poisoning by aminoglycosides, accidental (unintentional) +C2876663|T037|HT|T36.5X1|ICD10CM|Poisoning by aminoglycosides, accidental (unintentional)|Poisoning by aminoglycosides, accidental (unintentional) +C2876664|T037|PT|T36.5X1A|ICD10CM|Poisoning by aminoglycosides, accidental (unintentional), initial encounter|Poisoning by aminoglycosides, accidental (unintentional), initial encounter +C2876664|T037|AB|T36.5X1A|ICD10CM|Poisoning by aminoglycosides, accidental, init|Poisoning by aminoglycosides, accidental, init +C2876665|T037|PT|T36.5X1D|ICD10CM|Poisoning by aminoglycosides, accidental (unintentional), subsequent encounter|Poisoning by aminoglycosides, accidental (unintentional), subsequent encounter +C2876665|T037|AB|T36.5X1D|ICD10CM|Poisoning by aminoglycosides, accidental, subs|Poisoning by aminoglycosides, accidental, subs +C2876666|T037|PT|T36.5X1S|ICD10CM|Poisoning by aminoglycosides, accidental (unintentional), sequela|Poisoning by aminoglycosides, accidental (unintentional), sequela +C2876666|T037|AB|T36.5X1S|ICD10CM|Poisoning by aminoglycosides, accidental, sequela|Poisoning by aminoglycosides, accidental, sequela +C2876667|T037|AB|T36.5X2|ICD10CM|Poisoning by aminoglycosides, intentional self-harm|Poisoning by aminoglycosides, intentional self-harm +C2876667|T037|HT|T36.5X2|ICD10CM|Poisoning by aminoglycosides, intentional self-harm|Poisoning by aminoglycosides, intentional self-harm +C2876668|T037|AB|T36.5X2A|ICD10CM|Poisoning by aminoglycosides, intentional self-harm, init|Poisoning by aminoglycosides, intentional self-harm, init +C2876668|T037|PT|T36.5X2A|ICD10CM|Poisoning by aminoglycosides, intentional self-harm, initial encounter|Poisoning by aminoglycosides, intentional self-harm, initial encounter +C2876669|T037|AB|T36.5X2D|ICD10CM|Poisoning by aminoglycosides, intentional self-harm, subs|Poisoning by aminoglycosides, intentional self-harm, subs +C2876669|T037|PT|T36.5X2D|ICD10CM|Poisoning by aminoglycosides, intentional self-harm, subsequent encounter|Poisoning by aminoglycosides, intentional self-harm, subsequent encounter +C2876670|T037|AB|T36.5X2S|ICD10CM|Poisoning by aminoglycosides, intentional self-harm, sequela|Poisoning by aminoglycosides, intentional self-harm, sequela +C2876670|T037|PT|T36.5X2S|ICD10CM|Poisoning by aminoglycosides, intentional self-harm, sequela|Poisoning by aminoglycosides, intentional self-harm, sequela +C2876671|T037|AB|T36.5X3|ICD10CM|Poisoning by aminoglycosides, assault|Poisoning by aminoglycosides, assault +C2876671|T037|HT|T36.5X3|ICD10CM|Poisoning by aminoglycosides, assault|Poisoning by aminoglycosides, assault +C2876672|T037|AB|T36.5X3A|ICD10CM|Poisoning by aminoglycosides, assault, initial encounter|Poisoning by aminoglycosides, assault, initial encounter +C2876672|T037|PT|T36.5X3A|ICD10CM|Poisoning by aminoglycosides, assault, initial encounter|Poisoning by aminoglycosides, assault, initial encounter +C2876673|T037|AB|T36.5X3D|ICD10CM|Poisoning by aminoglycosides, assault, subsequent encounter|Poisoning by aminoglycosides, assault, subsequent encounter +C2876673|T037|PT|T36.5X3D|ICD10CM|Poisoning by aminoglycosides, assault, subsequent encounter|Poisoning by aminoglycosides, assault, subsequent encounter +C2876674|T037|AB|T36.5X3S|ICD10CM|Poisoning by aminoglycosides, assault, sequela|Poisoning by aminoglycosides, assault, sequela +C2876674|T037|PT|T36.5X3S|ICD10CM|Poisoning by aminoglycosides, assault, sequela|Poisoning by aminoglycosides, assault, sequela +C2876675|T037|AB|T36.5X4|ICD10CM|Poisoning by aminoglycosides, undetermined|Poisoning by aminoglycosides, undetermined +C2876675|T037|HT|T36.5X4|ICD10CM|Poisoning by aminoglycosides, undetermined|Poisoning by aminoglycosides, undetermined +C2876676|T037|AB|T36.5X4A|ICD10CM|Poisoning by aminoglycosides, undetermined, init encntr|Poisoning by aminoglycosides, undetermined, init encntr +C2876676|T037|PT|T36.5X4A|ICD10CM|Poisoning by aminoglycosides, undetermined, initial encounter|Poisoning by aminoglycosides, undetermined, initial encounter +C2876677|T037|AB|T36.5X4D|ICD10CM|Poisoning by aminoglycosides, undetermined, subs encntr|Poisoning by aminoglycosides, undetermined, subs encntr +C2876677|T037|PT|T36.5X4D|ICD10CM|Poisoning by aminoglycosides, undetermined, subsequent encounter|Poisoning by aminoglycosides, undetermined, subsequent encounter +C2876678|T037|AB|T36.5X4S|ICD10CM|Poisoning by aminoglycosides, undetermined, sequela|Poisoning by aminoglycosides, undetermined, sequela +C2876678|T037|PT|T36.5X4S|ICD10CM|Poisoning by aminoglycosides, undetermined, sequela|Poisoning by aminoglycosides, undetermined, sequela +C0570035|T046|AB|T36.5X5|ICD10CM|Adverse effect of aminoglycosides|Adverse effect of aminoglycosides +C0570035|T046|HT|T36.5X5|ICD10CM|Adverse effect of aminoglycosides|Adverse effect of aminoglycosides +C2876679|T037|AB|T36.5X5A|ICD10CM|Adverse effect of aminoglycosides, initial encounter|Adverse effect of aminoglycosides, initial encounter +C2876679|T037|PT|T36.5X5A|ICD10CM|Adverse effect of aminoglycosides, initial encounter|Adverse effect of aminoglycosides, initial encounter +C2876680|T037|AB|T36.5X5D|ICD10CM|Adverse effect of aminoglycosides, subsequent encounter|Adverse effect of aminoglycosides, subsequent encounter +C2876680|T037|PT|T36.5X5D|ICD10CM|Adverse effect of aminoglycosides, subsequent encounter|Adverse effect of aminoglycosides, subsequent encounter +C2876681|T037|AB|T36.5X5S|ICD10CM|Adverse effect of aminoglycosides, sequela|Adverse effect of aminoglycosides, sequela +C2876681|T037|PT|T36.5X5S|ICD10CM|Adverse effect of aminoglycosides, sequela|Adverse effect of aminoglycosides, sequela +C2876682|T033|AB|T36.5X6|ICD10CM|Underdosing of aminoglycosides|Underdosing of aminoglycosides +C2876682|T033|HT|T36.5X6|ICD10CM|Underdosing of aminoglycosides|Underdosing of aminoglycosides +C2876683|T037|AB|T36.5X6A|ICD10CM|Underdosing of aminoglycosides, initial encounter|Underdosing of aminoglycosides, initial encounter +C2876683|T037|PT|T36.5X6A|ICD10CM|Underdosing of aminoglycosides, initial encounter|Underdosing of aminoglycosides, initial encounter +C2876684|T037|AB|T36.5X6D|ICD10CM|Underdosing of aminoglycosides, subsequent encounter|Underdosing of aminoglycosides, subsequent encounter +C2876684|T037|PT|T36.5X6D|ICD10CM|Underdosing of aminoglycosides, subsequent encounter|Underdosing of aminoglycosides, subsequent encounter +C2876685|T037|AB|T36.5X6S|ICD10CM|Underdosing of aminoglycosides, sequela|Underdosing of aminoglycosides, sequela +C2876685|T037|PT|T36.5X6S|ICD10CM|Underdosing of aminoglycosides, sequela|Underdosing of aminoglycosides, sequela +C0496961|T037|PX|T36.6|ICD10|Poisoning by rifamycins|Poisoning by rifamycins +C2876686|T037|HT|T36.6|ICD10CM|Poisoning by, adverse effect of and underdosing of rifampicins|Poisoning by, adverse effect of and underdosing of rifampicins +C2876686|T037|AB|T36.6|ICD10CM|Rifampicins|Rifampicins +C0496961|T037|PS|T36.6|ICD10|Rifamycins|Rifamycins +C2876686|T037|HT|T36.6X|ICD10CM|Poisoning by, adverse effect of and underdosing of rifampicins|Poisoning by, adverse effect of and underdosing of rifampicins +C2876686|T037|AB|T36.6X|ICD10CM|Rifampicins|Rifampicins +C2876687|T037|ET|T36.6X1|ICD10CM|Poisoning by rifampicins NOS|Poisoning by rifampicins NOS +C2876688|T037|AB|T36.6X1|ICD10CM|Poisoning by rifampicins, accidental (unintentional)|Poisoning by rifampicins, accidental (unintentional) +C2876688|T037|HT|T36.6X1|ICD10CM|Poisoning by rifampicins, accidental (unintentional)|Poisoning by rifampicins, accidental (unintentional) +C2876689|T037|AB|T36.6X1A|ICD10CM|Poisoning by rifampicins, accidental (unintentional), init|Poisoning by rifampicins, accidental (unintentional), init +C2876689|T037|PT|T36.6X1A|ICD10CM|Poisoning by rifampicins, accidental (unintentional), initial encounter|Poisoning by rifampicins, accidental (unintentional), initial encounter +C2876690|T037|AB|T36.6X1D|ICD10CM|Poisoning by rifampicins, accidental (unintentional), subs|Poisoning by rifampicins, accidental (unintentional), subs +C2876690|T037|PT|T36.6X1D|ICD10CM|Poisoning by rifampicins, accidental (unintentional), subsequent encounter|Poisoning by rifampicins, accidental (unintentional), subsequent encounter +C2876691|T037|PT|T36.6X1S|ICD10CM|Poisoning by rifampicins, accidental (unintentional), sequela|Poisoning by rifampicins, accidental (unintentional), sequela +C2876691|T037|AB|T36.6X1S|ICD10CM|Poisoning by rifampicins, accidental, sequela|Poisoning by rifampicins, accidental, sequela +C2876692|T037|AB|T36.6X2|ICD10CM|Poisoning by rifampicins, intentional self-harm|Poisoning by rifampicins, intentional self-harm +C2876692|T037|HT|T36.6X2|ICD10CM|Poisoning by rifampicins, intentional self-harm|Poisoning by rifampicins, intentional self-harm +C2876693|T037|AB|T36.6X2A|ICD10CM|Poisoning by rifampicins, intentional self-harm, init encntr|Poisoning by rifampicins, intentional self-harm, init encntr +C2876693|T037|PT|T36.6X2A|ICD10CM|Poisoning by rifampicins, intentional self-harm, initial encounter|Poisoning by rifampicins, intentional self-harm, initial encounter +C2876694|T037|AB|T36.6X2D|ICD10CM|Poisoning by rifampicins, intentional self-harm, subs encntr|Poisoning by rifampicins, intentional self-harm, subs encntr +C2876694|T037|PT|T36.6X2D|ICD10CM|Poisoning by rifampicins, intentional self-harm, subsequent encounter|Poisoning by rifampicins, intentional self-harm, subsequent encounter +C2876695|T037|AB|T36.6X2S|ICD10CM|Poisoning by rifampicins, intentional self-harm, sequela|Poisoning by rifampicins, intentional self-harm, sequela +C2876695|T037|PT|T36.6X2S|ICD10CM|Poisoning by rifampicins, intentional self-harm, sequela|Poisoning by rifampicins, intentional self-harm, sequela +C2876696|T037|AB|T36.6X3|ICD10CM|Poisoning by rifampicins, assault|Poisoning by rifampicins, assault +C2876696|T037|HT|T36.6X3|ICD10CM|Poisoning by rifampicins, assault|Poisoning by rifampicins, assault +C2876697|T037|AB|T36.6X3A|ICD10CM|Poisoning by rifampicins, assault, initial encounter|Poisoning by rifampicins, assault, initial encounter +C2876697|T037|PT|T36.6X3A|ICD10CM|Poisoning by rifampicins, assault, initial encounter|Poisoning by rifampicins, assault, initial encounter +C2876698|T037|AB|T36.6X3D|ICD10CM|Poisoning by rifampicins, assault, subsequent encounter|Poisoning by rifampicins, assault, subsequent encounter +C2876698|T037|PT|T36.6X3D|ICD10CM|Poisoning by rifampicins, assault, subsequent encounter|Poisoning by rifampicins, assault, subsequent encounter +C2876699|T037|AB|T36.6X3S|ICD10CM|Poisoning by rifampicins, assault, sequela|Poisoning by rifampicins, assault, sequela +C2876699|T037|PT|T36.6X3S|ICD10CM|Poisoning by rifampicins, assault, sequela|Poisoning by rifampicins, assault, sequela +C2876700|T037|AB|T36.6X4|ICD10CM|Poisoning by rifampicins, undetermined|Poisoning by rifampicins, undetermined +C2876700|T037|HT|T36.6X4|ICD10CM|Poisoning by rifampicins, undetermined|Poisoning by rifampicins, undetermined +C2876701|T037|AB|T36.6X4A|ICD10CM|Poisoning by rifampicins, undetermined, initial encounter|Poisoning by rifampicins, undetermined, initial encounter +C2876701|T037|PT|T36.6X4A|ICD10CM|Poisoning by rifampicins, undetermined, initial encounter|Poisoning by rifampicins, undetermined, initial encounter +C2876702|T037|AB|T36.6X4D|ICD10CM|Poisoning by rifampicins, undetermined, subsequent encounter|Poisoning by rifampicins, undetermined, subsequent encounter +C2876702|T037|PT|T36.6X4D|ICD10CM|Poisoning by rifampicins, undetermined, subsequent encounter|Poisoning by rifampicins, undetermined, subsequent encounter +C2876703|T037|AB|T36.6X4S|ICD10CM|Poisoning by rifampicins, undetermined, sequela|Poisoning by rifampicins, undetermined, sequela +C2876703|T037|PT|T36.6X4S|ICD10CM|Poisoning by rifampicins, undetermined, sequela|Poisoning by rifampicins, undetermined, sequela +C2876704|T037|AB|T36.6X5|ICD10CM|Adverse effect of rifampicins|Adverse effect of rifampicins +C2876704|T037|HT|T36.6X5|ICD10CM|Adverse effect of rifampicins|Adverse effect of rifampicins +C2876705|T037|AB|T36.6X5A|ICD10CM|Adverse effect of rifampicins, initial encounter|Adverse effect of rifampicins, initial encounter +C2876705|T037|PT|T36.6X5A|ICD10CM|Adverse effect of rifampicins, initial encounter|Adverse effect of rifampicins, initial encounter +C2876706|T037|AB|T36.6X5D|ICD10CM|Adverse effect of rifampicins, subsequent encounter|Adverse effect of rifampicins, subsequent encounter +C2876706|T037|PT|T36.6X5D|ICD10CM|Adverse effect of rifampicins, subsequent encounter|Adverse effect of rifampicins, subsequent encounter +C2876707|T037|AB|T36.6X5S|ICD10CM|Adverse effect of rifampicins, sequela|Adverse effect of rifampicins, sequela +C2876707|T037|PT|T36.6X5S|ICD10CM|Adverse effect of rifampicins, sequela|Adverse effect of rifampicins, sequela +C2876708|T037|AB|T36.6X6|ICD10CM|Underdosing of rifampicins|Underdosing of rifampicins +C2876708|T037|HT|T36.6X6|ICD10CM|Underdosing of rifampicins|Underdosing of rifampicins +C2876709|T037|AB|T36.6X6A|ICD10CM|Underdosing of rifampicins, initial encounter|Underdosing of rifampicins, initial encounter +C2876709|T037|PT|T36.6X6A|ICD10CM|Underdosing of rifampicins, initial encounter|Underdosing of rifampicins, initial encounter +C2876710|T037|AB|T36.6X6D|ICD10CM|Underdosing of rifampicins, subsequent encounter|Underdosing of rifampicins, subsequent encounter +C2876710|T037|PT|T36.6X6D|ICD10CM|Underdosing of rifampicins, subsequent encounter|Underdosing of rifampicins, subsequent encounter +C2876711|T037|AB|T36.6X6S|ICD10CM|Underdosing of rifampicins, sequela|Underdosing of rifampicins, sequela +C2876711|T037|PT|T36.6X6S|ICD10CM|Underdosing of rifampicins, sequela|Underdosing of rifampicins, sequela +C2876712|T037|AB|T36.7|ICD10CM|Antifungal antibiotics, systemically used|Antifungal antibiotics, systemically used +C0496962|T037|PS|T36.7|ICD10|Antifungal antibiotics, systemically used|Antifungal antibiotics, systemically used +C0496962|T037|PX|T36.7|ICD10|Poisoning by antifungal antibiotics, systemically used|Poisoning by antifungal antibiotics, systemically used +C2876712|T037|HT|T36.7|ICD10CM|Poisoning by, adverse effect of and underdosing of antifungal antibiotics, systemically used|Poisoning by, adverse effect of and underdosing of antifungal antibiotics, systemically used +C2876712|T037|AB|T36.7X|ICD10CM|Antifungal antibiotics, systemically used|Antifungal antibiotics, systemically used +C2876712|T037|HT|T36.7X|ICD10CM|Poisoning by, adverse effect of and underdosing of antifungal antibiotics, systemically used|Poisoning by, adverse effect of and underdosing of antifungal antibiotics, systemically used +C2876713|T037|AB|T36.7X1|ICD10CM|Poisoning by antifungal antibiotics, sys used, accidental|Poisoning by antifungal antibiotics, sys used, accidental +C0496962|T037|ET|T36.7X1|ICD10CM|Poisoning by antifungal antibiotics, systemically used NOS|Poisoning by antifungal antibiotics, systemically used NOS +C2876713|T037|HT|T36.7X1|ICD10CM|Poisoning by antifungal antibiotics, systemically used, accidental (unintentional)|Poisoning by antifungal antibiotics, systemically used, accidental (unintentional) +C2876714|T037|AB|T36.7X1A|ICD10CM|Poisoning by antifungal antibiot, sys used, acc, init|Poisoning by antifungal antibiot, sys used, acc, init +C2876715|T037|AB|T36.7X1D|ICD10CM|Poisoning by antifungal antibiot, sys used, acc, subs|Poisoning by antifungal antibiot, sys used, acc, subs +C2876716|T037|AB|T36.7X1S|ICD10CM|Poisoning by antifungal antibiot, sys used, acc, sequela|Poisoning by antifungal antibiot, sys used, acc, sequela +C2876716|T037|PT|T36.7X1S|ICD10CM|Poisoning by antifungal antibiotics, systemically used, accidental (unintentional), sequela|Poisoning by antifungal antibiotics, systemically used, accidental (unintentional), sequela +C2876717|T037|AB|T36.7X2|ICD10CM|Poisoning by antifungal antibiotics, sys used, self-harm|Poisoning by antifungal antibiotics, sys used, self-harm +C2876717|T037|HT|T36.7X2|ICD10CM|Poisoning by antifungal antibiotics, systemically used, intentional self-harm|Poisoning by antifungal antibiotics, systemically used, intentional self-harm +C2876718|T037|AB|T36.7X2A|ICD10CM|Poisoning by antifungal antibiot, sys used, self-harm, init|Poisoning by antifungal antibiot, sys used, self-harm, init +C2876718|T037|PT|T36.7X2A|ICD10CM|Poisoning by antifungal antibiotics, systemically used, intentional self-harm, initial encounter|Poisoning by antifungal antibiotics, systemically used, intentional self-harm, initial encounter +C2876719|T037|AB|T36.7X2D|ICD10CM|Poisoning by antifungal antibiot, sys used, self-harm, subs|Poisoning by antifungal antibiot, sys used, self-harm, subs +C2876719|T037|PT|T36.7X2D|ICD10CM|Poisoning by antifungal antibiotics, systemically used, intentional self-harm, subsequent encounter|Poisoning by antifungal antibiotics, systemically used, intentional self-harm, subsequent encounter +C2876720|T037|AB|T36.7X2S|ICD10CM|Poisoning by antifung antibiot, sys used, self-harm, sequela|Poisoning by antifung antibiot, sys used, self-harm, sequela +C2876720|T037|PT|T36.7X2S|ICD10CM|Poisoning by antifungal antibiotics, systemically used, intentional self-harm, sequela|Poisoning by antifungal antibiotics, systemically used, intentional self-harm, sequela +C2876721|T037|AB|T36.7X3|ICD10CM|Poisoning by antifungal antibiotics, sys used, assault|Poisoning by antifungal antibiotics, sys used, assault +C2876721|T037|HT|T36.7X3|ICD10CM|Poisoning by antifungal antibiotics, systemically used, assault|Poisoning by antifungal antibiotics, systemically used, assault +C2876722|T037|AB|T36.7X3A|ICD10CM|Poisoning by antifungal antibiotics, sys used, assault, init|Poisoning by antifungal antibiotics, sys used, assault, init +C2876722|T037|PT|T36.7X3A|ICD10CM|Poisoning by antifungal antibiotics, systemically used, assault, initial encounter|Poisoning by antifungal antibiotics, systemically used, assault, initial encounter +C2876723|T037|AB|T36.7X3D|ICD10CM|Poisoning by antifungal antibiotics, sys used, assault, subs|Poisoning by antifungal antibiotics, sys used, assault, subs +C2876723|T037|PT|T36.7X3D|ICD10CM|Poisoning by antifungal antibiotics, systemically used, assault, subsequent encounter|Poisoning by antifungal antibiotics, systemically used, assault, subsequent encounter +C2876724|T037|AB|T36.7X3S|ICD10CM|Poisoning by antifungal antibiot, sys used, assault, sequela|Poisoning by antifungal antibiot, sys used, assault, sequela +C2876724|T037|PT|T36.7X3S|ICD10CM|Poisoning by antifungal antibiotics, systemically used, assault, sequela|Poisoning by antifungal antibiotics, systemically used, assault, sequela +C2876725|T037|AB|T36.7X4|ICD10CM|Poisoning by antifungal antibiotics, sys used, undetermined|Poisoning by antifungal antibiotics, sys used, undetermined +C2876725|T037|HT|T36.7X4|ICD10CM|Poisoning by antifungal antibiotics, systemically used, undetermined|Poisoning by antifungal antibiotics, systemically used, undetermined +C2876726|T037|AB|T36.7X4A|ICD10CM|Poisoning by antifungal antibiotics, sys used, undet, init|Poisoning by antifungal antibiotics, sys used, undet, init +C2876726|T037|PT|T36.7X4A|ICD10CM|Poisoning by antifungal antibiotics, systemically used, undetermined, initial encounter|Poisoning by antifungal antibiotics, systemically used, undetermined, initial encounter +C2876727|T037|AB|T36.7X4D|ICD10CM|Poisoning by antifungal antibiotics, sys used, undet, subs|Poisoning by antifungal antibiotics, sys used, undet, subs +C2876727|T037|PT|T36.7X4D|ICD10CM|Poisoning by antifungal antibiotics, systemically used, undetermined, subsequent encounter|Poisoning by antifungal antibiotics, systemically used, undetermined, subsequent encounter +C2876728|T037|AB|T36.7X4S|ICD10CM|Poisoning by antifungal antibiot, sys used, undet, sequela|Poisoning by antifungal antibiot, sys used, undet, sequela +C2876728|T037|PT|T36.7X4S|ICD10CM|Poisoning by antifungal antibiotics, systemically used, undetermined, sequela|Poisoning by antifungal antibiotics, systemically used, undetermined, sequela +C2876729|T037|AB|T36.7X5|ICD10CM|Adverse effect of antifungal antibiotics, systemically used|Adverse effect of antifungal antibiotics, systemically used +C2876729|T037|HT|T36.7X5|ICD10CM|Adverse effect of antifungal antibiotics, systemically used|Adverse effect of antifungal antibiotics, systemically used +C2876730|T037|AB|T36.7X5A|ICD10CM|Adverse effect of antifungal antibiotics, sys used, init|Adverse effect of antifungal antibiotics, sys used, init +C2876730|T037|PT|T36.7X5A|ICD10CM|Adverse effect of antifungal antibiotics, systemically used, initial encounter|Adverse effect of antifungal antibiotics, systemically used, initial encounter +C2876731|T037|AB|T36.7X5D|ICD10CM|Adverse effect of antifungal antibiotics, sys used, subs|Adverse effect of antifungal antibiotics, sys used, subs +C2876731|T037|PT|T36.7X5D|ICD10CM|Adverse effect of antifungal antibiotics, systemically used, subsequent encounter|Adverse effect of antifungal antibiotics, systemically used, subsequent encounter +C2876732|T037|AB|T36.7X5S|ICD10CM|Adverse effect of antifungal antibiotics, sys used, sequela|Adverse effect of antifungal antibiotics, sys used, sequela +C2876732|T037|PT|T36.7X5S|ICD10CM|Adverse effect of antifungal antibiotics, systemically used, sequela|Adverse effect of antifungal antibiotics, systemically used, sequela +C2876733|T037|AB|T36.7X6|ICD10CM|Underdosing of antifungal antibiotics, systemically used|Underdosing of antifungal antibiotics, systemically used +C2876733|T037|HT|T36.7X6|ICD10CM|Underdosing of antifungal antibiotics, systemically used|Underdosing of antifungal antibiotics, systemically used +C2876734|T037|AB|T36.7X6A|ICD10CM|Underdosing of antifungal antibiotics, sys used, init|Underdosing of antifungal antibiotics, sys used, init +C2876734|T037|PT|T36.7X6A|ICD10CM|Underdosing of antifungal antibiotics, systemically used, initial encounter|Underdosing of antifungal antibiotics, systemically used, initial encounter +C2876735|T037|AB|T36.7X6D|ICD10CM|Underdosing of antifungal antibiotics, sys used, subs|Underdosing of antifungal antibiotics, sys used, subs +C2876735|T037|PT|T36.7X6D|ICD10CM|Underdosing of antifungal antibiotics, systemically used, subsequent encounter|Underdosing of antifungal antibiotics, systemically used, subsequent encounter +C2876736|T037|AB|T36.7X6S|ICD10CM|Underdosing of antifungal antibiotics, sys used, sequela|Underdosing of antifungal antibiotics, sys used, sequela +C2876736|T037|PT|T36.7X6S|ICD10CM|Underdosing of antifungal antibiotics, systemically used, sequela|Underdosing of antifungal antibiotics, systemically used, sequela +C0478428|T037|PS|T36.8|ICD10|Other systemic antibiotics|Other systemic antibiotics +C0478428|T037|PX|T36.8|ICD10|Poisoning by other systemic antibiotics|Poisoning by other systemic antibiotics +C2876737|T037|HT|T36.8|ICD10CM|Poisoning by, adverse effect of and underdosing of other systemic antibiotics|Poisoning by, adverse effect of and underdosing of other systemic antibiotics +C2876737|T037|AB|T36.8|ICD10CM|Systemic antibiotics|Systemic antibiotics +C2876737|T037|HT|T36.8X|ICD10CM|Poisoning by, adverse effect of and underdosing of other systemic antibiotics|Poisoning by, adverse effect of and underdosing of other systemic antibiotics +C2876737|T037|AB|T36.8X|ICD10CM|Systemic antibiotics|Systemic antibiotics +C2876738|T037|AB|T36.8X1|ICD10CM|Poisoning by oth systemic antibiotics, accidental|Poisoning by oth systemic antibiotics, accidental +C0478428|T037|ET|T36.8X1|ICD10CM|Poisoning by other systemic antibiotics NOS|Poisoning by other systemic antibiotics NOS +C2876738|T037|HT|T36.8X1|ICD10CM|Poisoning by other systemic antibiotics, accidental (unintentional)|Poisoning by other systemic antibiotics, accidental (unintentional) +C2876739|T037|AB|T36.8X1A|ICD10CM|Poisoning by oth systemic antibiotics, accidental, init|Poisoning by oth systemic antibiotics, accidental, init +C2876739|T037|PT|T36.8X1A|ICD10CM|Poisoning by other systemic antibiotics, accidental (unintentional), initial encounter|Poisoning by other systemic antibiotics, accidental (unintentional), initial encounter +C2876740|T037|AB|T36.8X1D|ICD10CM|Poisoning by oth systemic antibiotics, accidental, subs|Poisoning by oth systemic antibiotics, accidental, subs +C2876740|T037|PT|T36.8X1D|ICD10CM|Poisoning by other systemic antibiotics, accidental (unintentional), subsequent encounter|Poisoning by other systemic antibiotics, accidental (unintentional), subsequent encounter +C2876741|T037|AB|T36.8X1S|ICD10CM|Poisoning by oth systemic antibiotics, accidental, sequela|Poisoning by oth systemic antibiotics, accidental, sequela +C2876741|T037|PT|T36.8X1S|ICD10CM|Poisoning by other systemic antibiotics, accidental (unintentional), sequela|Poisoning by other systemic antibiotics, accidental (unintentional), sequela +C2876742|T037|AB|T36.8X2|ICD10CM|Poisoning by oth systemic antibiotics, intentional self-harm|Poisoning by oth systemic antibiotics, intentional self-harm +C2876742|T037|HT|T36.8X2|ICD10CM|Poisoning by other systemic antibiotics, intentional self-harm|Poisoning by other systemic antibiotics, intentional self-harm +C2876743|T037|AB|T36.8X2A|ICD10CM|Poisoning by oth systemic antibiotics, self-harm, init|Poisoning by oth systemic antibiotics, self-harm, init +C2876743|T037|PT|T36.8X2A|ICD10CM|Poisoning by other systemic antibiotics, intentional self-harm, initial encounter|Poisoning by other systemic antibiotics, intentional self-harm, initial encounter +C2876744|T037|AB|T36.8X2D|ICD10CM|Poisoning by oth systemic antibiotics, self-harm, subs|Poisoning by oth systemic antibiotics, self-harm, subs +C2876744|T037|PT|T36.8X2D|ICD10CM|Poisoning by other systemic antibiotics, intentional self-harm, subsequent encounter|Poisoning by other systemic antibiotics, intentional self-harm, subsequent encounter +C2876745|T037|AB|T36.8X2S|ICD10CM|Poisoning by oth systemic antibiotics, self-harm, sequela|Poisoning by oth systemic antibiotics, self-harm, sequela +C2876745|T037|PT|T36.8X2S|ICD10CM|Poisoning by other systemic antibiotics, intentional self-harm, sequela|Poisoning by other systemic antibiotics, intentional self-harm, sequela +C2876746|T037|AB|T36.8X3|ICD10CM|Poisoning by other systemic antibiotics, assault|Poisoning by other systemic antibiotics, assault +C2876746|T037|HT|T36.8X3|ICD10CM|Poisoning by other systemic antibiotics, assault|Poisoning by other systemic antibiotics, assault +C2876747|T037|AB|T36.8X3A|ICD10CM|Poisoning by oth systemic antibiotics, assault, init encntr|Poisoning by oth systemic antibiotics, assault, init encntr +C2876747|T037|PT|T36.8X3A|ICD10CM|Poisoning by other systemic antibiotics, assault, initial encounter|Poisoning by other systemic antibiotics, assault, initial encounter +C2876748|T037|AB|T36.8X3D|ICD10CM|Poisoning by oth systemic antibiotics, assault, subs encntr|Poisoning by oth systemic antibiotics, assault, subs encntr +C2876748|T037|PT|T36.8X3D|ICD10CM|Poisoning by other systemic antibiotics, assault, subsequent encounter|Poisoning by other systemic antibiotics, assault, subsequent encounter +C2876749|T037|AB|T36.8X3S|ICD10CM|Poisoning by other systemic antibiotics, assault, sequela|Poisoning by other systemic antibiotics, assault, sequela +C2876749|T037|PT|T36.8X3S|ICD10CM|Poisoning by other systemic antibiotics, assault, sequela|Poisoning by other systemic antibiotics, assault, sequela +C2876750|T037|AB|T36.8X4|ICD10CM|Poisoning by other systemic antibiotics, undetermined|Poisoning by other systemic antibiotics, undetermined +C2876750|T037|HT|T36.8X4|ICD10CM|Poisoning by other systemic antibiotics, undetermined|Poisoning by other systemic antibiotics, undetermined +C2876751|T037|AB|T36.8X4A|ICD10CM|Poisoning by oth systemic antibiotics, undetermined, init|Poisoning by oth systemic antibiotics, undetermined, init +C2876751|T037|PT|T36.8X4A|ICD10CM|Poisoning by other systemic antibiotics, undetermined, initial encounter|Poisoning by other systemic antibiotics, undetermined, initial encounter +C2876752|T037|AB|T36.8X4D|ICD10CM|Poisoning by oth systemic antibiotics, undetermined, subs|Poisoning by oth systemic antibiotics, undetermined, subs +C2876752|T037|PT|T36.8X4D|ICD10CM|Poisoning by other systemic antibiotics, undetermined, subsequent encounter|Poisoning by other systemic antibiotics, undetermined, subsequent encounter +C2876753|T037|AB|T36.8X4S|ICD10CM|Poisoning by oth systemic antibiotics, undetermined, sequela|Poisoning by oth systemic antibiotics, undetermined, sequela +C2876753|T037|PT|T36.8X4S|ICD10CM|Poisoning by other systemic antibiotics, undetermined, sequela|Poisoning by other systemic antibiotics, undetermined, sequela +C2876754|T037|AB|T36.8X5|ICD10CM|Adverse effect of other systemic antibiotics|Adverse effect of other systemic antibiotics +C2876754|T037|HT|T36.8X5|ICD10CM|Adverse effect of other systemic antibiotics|Adverse effect of other systemic antibiotics +C2876755|T037|AB|T36.8X5A|ICD10CM|Adverse effect of other systemic antibiotics, init encntr|Adverse effect of other systemic antibiotics, init encntr +C2876755|T037|PT|T36.8X5A|ICD10CM|Adverse effect of other systemic antibiotics, initial encounter|Adverse effect of other systemic antibiotics, initial encounter +C2876756|T037|AB|T36.8X5D|ICD10CM|Adverse effect of other systemic antibiotics, subs encntr|Adverse effect of other systemic antibiotics, subs encntr +C2876756|T037|PT|T36.8X5D|ICD10CM|Adverse effect of other systemic antibiotics, subsequent encounter|Adverse effect of other systemic antibiotics, subsequent encounter +C2876757|T037|AB|T36.8X5S|ICD10CM|Adverse effect of other systemic antibiotics, sequela|Adverse effect of other systemic antibiotics, sequela +C2876757|T037|PT|T36.8X5S|ICD10CM|Adverse effect of other systemic antibiotics, sequela|Adverse effect of other systemic antibiotics, sequela +C2876758|T037|AB|T36.8X6|ICD10CM|Underdosing of other systemic antibiotics|Underdosing of other systemic antibiotics +C2876758|T037|HT|T36.8X6|ICD10CM|Underdosing of other systemic antibiotics|Underdosing of other systemic antibiotics +C2876759|T037|AB|T36.8X6A|ICD10CM|Underdosing of other systemic antibiotics, initial encounter|Underdosing of other systemic antibiotics, initial encounter +C2876759|T037|PT|T36.8X6A|ICD10CM|Underdosing of other systemic antibiotics, initial encounter|Underdosing of other systemic antibiotics, initial encounter +C2876760|T037|AB|T36.8X6D|ICD10CM|Underdosing of other systemic antibiotics, subs encntr|Underdosing of other systemic antibiotics, subs encntr +C2876760|T037|PT|T36.8X6D|ICD10CM|Underdosing of other systemic antibiotics, subsequent encounter|Underdosing of other systemic antibiotics, subsequent encounter +C2876761|T037|AB|T36.8X6S|ICD10CM|Underdosing of other systemic antibiotics, sequela|Underdosing of other systemic antibiotics, sequela +C2876761|T037|PT|T36.8X6S|ICD10CM|Underdosing of other systemic antibiotics, sequela|Underdosing of other systemic antibiotics, sequela +C0496963|T037|PX|T36.9|ICD10|Poisoning by systemic antibiotic, unspecified|Poisoning by systemic antibiotic, unspecified +C2876762|T037|HT|T36.9|ICD10CM|Poisoning by, adverse effect of and underdosing of unspecified systemic antibiotic|Poisoning by, adverse effect of and underdosing of unspecified systemic antibiotic +C0496963|T037|PS|T36.9|ICD10|Systemic antibiotic, unspecified|Systemic antibiotic, unspecified +C2876762|T037|AB|T36.9|ICD10CM|Unsp systemic antibiotic|Unsp systemic antibiotic +C0496963|T037|ET|T36.91|ICD10CM|Poisoning by systemic antibiotic NOS|Poisoning by systemic antibiotic NOS +C2876763|T037|AB|T36.91|ICD10CM|Poisoning by unsp systemic antibiotic, accidental|Poisoning by unsp systemic antibiotic, accidental +C2876763|T037|HT|T36.91|ICD10CM|Poisoning by unspecified systemic antibiotic, accidental (unintentional)|Poisoning by unspecified systemic antibiotic, accidental (unintentional) +C2876764|T037|AB|T36.91XA|ICD10CM|Poisoning by unsp systemic antibiotic, accidental, init|Poisoning by unsp systemic antibiotic, accidental, init +C2876764|T037|PT|T36.91XA|ICD10CM|Poisoning by unspecified systemic antibiotic, accidental (unintentional), initial encounter|Poisoning by unspecified systemic antibiotic, accidental (unintentional), initial encounter +C2876765|T037|AB|T36.91XD|ICD10CM|Poisoning by unsp systemic antibiotic, accidental, subs|Poisoning by unsp systemic antibiotic, accidental, subs +C2876765|T037|PT|T36.91XD|ICD10CM|Poisoning by unspecified systemic antibiotic, accidental (unintentional), subsequent encounter|Poisoning by unspecified systemic antibiotic, accidental (unintentional), subsequent encounter +C2876766|T037|AB|T36.91XS|ICD10CM|Poisoning by unsp systemic antibiotic, accidental, sequela|Poisoning by unsp systemic antibiotic, accidental, sequela +C2876766|T037|PT|T36.91XS|ICD10CM|Poisoning by unspecified systemic antibiotic, accidental (unintentional), sequela|Poisoning by unspecified systemic antibiotic, accidental (unintentional), sequela +C2876767|T037|AB|T36.92|ICD10CM|Poisoning by unsp systemic antibiotic, intentional self-harm|Poisoning by unsp systemic antibiotic, intentional self-harm +C2876767|T037|HT|T36.92|ICD10CM|Poisoning by unspecified systemic antibiotic, intentional self-harm|Poisoning by unspecified systemic antibiotic, intentional self-harm +C2876768|T037|AB|T36.92XA|ICD10CM|Poisoning by unsp systemic antibiotic, self-harm, init|Poisoning by unsp systemic antibiotic, self-harm, init +C2876768|T037|PT|T36.92XA|ICD10CM|Poisoning by unspecified systemic antibiotic, intentional self-harm, initial encounter|Poisoning by unspecified systemic antibiotic, intentional self-harm, initial encounter +C2876769|T037|AB|T36.92XD|ICD10CM|Poisoning by unsp systemic antibiotic, self-harm, subs|Poisoning by unsp systemic antibiotic, self-harm, subs +C2876769|T037|PT|T36.92XD|ICD10CM|Poisoning by unspecified systemic antibiotic, intentional self-harm, subsequent encounter|Poisoning by unspecified systemic antibiotic, intentional self-harm, subsequent encounter +C2876770|T037|AB|T36.92XS|ICD10CM|Poisoning by unsp systemic antibiotic, self-harm, sequela|Poisoning by unsp systemic antibiotic, self-harm, sequela +C2876770|T037|PT|T36.92XS|ICD10CM|Poisoning by unspecified systemic antibiotic, intentional self-harm, sequela|Poisoning by unspecified systemic antibiotic, intentional self-harm, sequela +C2876771|T037|AB|T36.93|ICD10CM|Poisoning by unspecified systemic antibiotic, assault|Poisoning by unspecified systemic antibiotic, assault +C2876771|T037|HT|T36.93|ICD10CM|Poisoning by unspecified systemic antibiotic, assault|Poisoning by unspecified systemic antibiotic, assault +C2876772|T037|AB|T36.93XA|ICD10CM|Poisoning by unsp systemic antibiotic, assault, init encntr|Poisoning by unsp systemic antibiotic, assault, init encntr +C2876772|T037|PT|T36.93XA|ICD10CM|Poisoning by unspecified systemic antibiotic, assault, initial encounter|Poisoning by unspecified systemic antibiotic, assault, initial encounter +C2876773|T037|AB|T36.93XD|ICD10CM|Poisoning by unsp systemic antibiotic, assault, subs encntr|Poisoning by unsp systemic antibiotic, assault, subs encntr +C2876773|T037|PT|T36.93XD|ICD10CM|Poisoning by unspecified systemic antibiotic, assault, subsequent encounter|Poisoning by unspecified systemic antibiotic, assault, subsequent encounter +C2876774|T037|AB|T36.93XS|ICD10CM|Poisoning by unsp systemic antibiotic, assault, sequela|Poisoning by unsp systemic antibiotic, assault, sequela +C2876774|T037|PT|T36.93XS|ICD10CM|Poisoning by unspecified systemic antibiotic, assault, sequela|Poisoning by unspecified systemic antibiotic, assault, sequela +C2876775|T037|AB|T36.94|ICD10CM|Poisoning by unspecified systemic antibiotic, undetermined|Poisoning by unspecified systemic antibiotic, undetermined +C2876775|T037|HT|T36.94|ICD10CM|Poisoning by unspecified systemic antibiotic, undetermined|Poisoning by unspecified systemic antibiotic, undetermined +C2876776|T037|AB|T36.94XA|ICD10CM|Poisoning by unsp systemic antibiotic, undetermined, init|Poisoning by unsp systemic antibiotic, undetermined, init +C2876776|T037|PT|T36.94XA|ICD10CM|Poisoning by unspecified systemic antibiotic, undetermined, initial encounter|Poisoning by unspecified systemic antibiotic, undetermined, initial encounter +C2876777|T037|AB|T36.94XD|ICD10CM|Poisoning by unsp systemic antibiotic, undetermined, subs|Poisoning by unsp systemic antibiotic, undetermined, subs +C2876777|T037|PT|T36.94XD|ICD10CM|Poisoning by unspecified systemic antibiotic, undetermined, subsequent encounter|Poisoning by unspecified systemic antibiotic, undetermined, subsequent encounter +C2876778|T037|AB|T36.94XS|ICD10CM|Poisoning by unsp systemic antibiotic, undetermined, sequela|Poisoning by unsp systemic antibiotic, undetermined, sequela +C2876778|T037|PT|T36.94XS|ICD10CM|Poisoning by unspecified systemic antibiotic, undetermined, sequela|Poisoning by unspecified systemic antibiotic, undetermined, sequela +C2876779|T037|AB|T36.95|ICD10CM|Adverse effect of unspecified systemic antibiotic|Adverse effect of unspecified systemic antibiotic +C2876779|T037|HT|T36.95|ICD10CM|Adverse effect of unspecified systemic antibiotic|Adverse effect of unspecified systemic antibiotic +C2876780|T037|AB|T36.95XA|ICD10CM|Adverse effect of unsp systemic antibiotic, init encntr|Adverse effect of unsp systemic antibiotic, init encntr +C2876780|T037|PT|T36.95XA|ICD10CM|Adverse effect of unspecified systemic antibiotic, initial encounter|Adverse effect of unspecified systemic antibiotic, initial encounter +C2876781|T037|AB|T36.95XD|ICD10CM|Adverse effect of unsp systemic antibiotic, subs encntr|Adverse effect of unsp systemic antibiotic, subs encntr +C2876781|T037|PT|T36.95XD|ICD10CM|Adverse effect of unspecified systemic antibiotic, subsequent encounter|Adverse effect of unspecified systemic antibiotic, subsequent encounter +C2876782|T037|AB|T36.95XS|ICD10CM|Adverse effect of unspecified systemic antibiotic, sequela|Adverse effect of unspecified systemic antibiotic, sequela +C2876782|T037|PT|T36.95XS|ICD10CM|Adverse effect of unspecified systemic antibiotic, sequela|Adverse effect of unspecified systemic antibiotic, sequela +C2876783|T037|AB|T36.96|ICD10CM|Underdosing of unspecified systemic antibiotic|Underdosing of unspecified systemic antibiotic +C2876783|T037|HT|T36.96|ICD10CM|Underdosing of unspecified systemic antibiotic|Underdosing of unspecified systemic antibiotic +C2876784|T037|AB|T36.96XA|ICD10CM|Underdosing of unspecified systemic antibiotic, init encntr|Underdosing of unspecified systemic antibiotic, init encntr +C2876784|T037|PT|T36.96XA|ICD10CM|Underdosing of unspecified systemic antibiotic, initial encounter|Underdosing of unspecified systemic antibiotic, initial encounter +C2876785|T037|AB|T36.96XD|ICD10CM|Underdosing of unspecified systemic antibiotic, subs encntr|Underdosing of unspecified systemic antibiotic, subs encntr +C2876785|T037|PT|T36.96XD|ICD10CM|Underdosing of unspecified systemic antibiotic, subsequent encounter|Underdosing of unspecified systemic antibiotic, subsequent encounter +C2876786|T037|AB|T36.96XS|ICD10CM|Underdosing of unspecified systemic antibiotic, sequela|Underdosing of unspecified systemic antibiotic, sequela +C2876786|T037|PT|T36.96XS|ICD10CM|Underdosing of unspecified systemic antibiotic, sequela|Underdosing of unspecified systemic antibiotic, sequela +C2876787|T037|AB|T37|ICD10CM|Other systemic anti-infectives and antiparasitics|Other systemic anti-infectives and antiparasitics +C0496091|T037|HT|T37|ICD10|Poisoning by other systemic anti-infectives and antiparasitics|Poisoning by other systemic anti-infectives and antiparasitics +C2876787|T037|HT|T37|ICD10CM|Poisoning by, adverse effect of and underdosing of other systemic anti-infectives and antiparasitics|Poisoning by, adverse effect of and underdosing of other systemic anti-infectives and antiparasitics +C0161497|T037|PX|T37.0|ICD10|Poisoning by sulfonamides|Poisoning by sulfonamides +C2876788|T037|HT|T37.0|ICD10CM|Poisoning by, adverse effect of and underdosing of sulfonamides|Poisoning by, adverse effect of and underdosing of sulfonamides +C2876788|T037|AB|T37.0|ICD10CM|Sulfonamides|Sulfonamides +C0161497|T037|PS|T37.0|ICD10|Sulfonamides|Sulfonamides +C2876788|T037|HT|T37.0X|ICD10CM|Poisoning by, adverse effect of and underdosing of sulfonamides|Poisoning by, adverse effect of and underdosing of sulfonamides +C2876788|T037|AB|T37.0X|ICD10CM|Sulfonamides|Sulfonamides +C0161497|T037|ET|T37.0X1|ICD10CM|Poisoning by sulfonamides NOS|Poisoning by sulfonamides NOS +C2876789|T037|AB|T37.0X1|ICD10CM|Poisoning by sulfonamides, accidental (unintentional)|Poisoning by sulfonamides, accidental (unintentional) +C2876789|T037|HT|T37.0X1|ICD10CM|Poisoning by sulfonamides, accidental (unintentional)|Poisoning by sulfonamides, accidental (unintentional) +C2876790|T037|AB|T37.0X1A|ICD10CM|Poisoning by sulfonamides, accidental (unintentional), init|Poisoning by sulfonamides, accidental (unintentional), init +C2876790|T037|PT|T37.0X1A|ICD10CM|Poisoning by sulfonamides, accidental (unintentional), initial encounter|Poisoning by sulfonamides, accidental (unintentional), initial encounter +C2876791|T037|AB|T37.0X1D|ICD10CM|Poisoning by sulfonamides, accidental (unintentional), subs|Poisoning by sulfonamides, accidental (unintentional), subs +C2876791|T037|PT|T37.0X1D|ICD10CM|Poisoning by sulfonamides, accidental (unintentional), subsequent encounter|Poisoning by sulfonamides, accidental (unintentional), subsequent encounter +C2876792|T037|PT|T37.0X1S|ICD10CM|Poisoning by sulfonamides, accidental (unintentional), sequela|Poisoning by sulfonamides, accidental (unintentional), sequela +C2876792|T037|AB|T37.0X1S|ICD10CM|Poisoning by sulfonamides, accidental, sequela|Poisoning by sulfonamides, accidental, sequela +C2876793|T037|AB|T37.0X2|ICD10CM|Poisoning by sulfonamides, intentional self-harm|Poisoning by sulfonamides, intentional self-harm +C2876793|T037|HT|T37.0X2|ICD10CM|Poisoning by sulfonamides, intentional self-harm|Poisoning by sulfonamides, intentional self-harm +C2876794|T037|AB|T37.0X2A|ICD10CM|Poisoning by sulfonamides, intentional self-harm, init|Poisoning by sulfonamides, intentional self-harm, init +C2876794|T037|PT|T37.0X2A|ICD10CM|Poisoning by sulfonamides, intentional self-harm, initial encounter|Poisoning by sulfonamides, intentional self-harm, initial encounter +C2876795|T037|AB|T37.0X2D|ICD10CM|Poisoning by sulfonamides, intentional self-harm, subs|Poisoning by sulfonamides, intentional self-harm, subs +C2876795|T037|PT|T37.0X2D|ICD10CM|Poisoning by sulfonamides, intentional self-harm, subsequent encounter|Poisoning by sulfonamides, intentional self-harm, subsequent encounter +C2876796|T037|AB|T37.0X2S|ICD10CM|Poisoning by sulfonamides, intentional self-harm, sequela|Poisoning by sulfonamides, intentional self-harm, sequela +C2876796|T037|PT|T37.0X2S|ICD10CM|Poisoning by sulfonamides, intentional self-harm, sequela|Poisoning by sulfonamides, intentional self-harm, sequela +C2876797|T037|AB|T37.0X3|ICD10CM|Poisoning by sulfonamides, assault|Poisoning by sulfonamides, assault +C2876797|T037|HT|T37.0X3|ICD10CM|Poisoning by sulfonamides, assault|Poisoning by sulfonamides, assault +C2876798|T037|AB|T37.0X3A|ICD10CM|Poisoning by sulfonamides, assault, initial encounter|Poisoning by sulfonamides, assault, initial encounter +C2876798|T037|PT|T37.0X3A|ICD10CM|Poisoning by sulfonamides, assault, initial encounter|Poisoning by sulfonamides, assault, initial encounter +C2876799|T037|AB|T37.0X3D|ICD10CM|Poisoning by sulfonamides, assault, subsequent encounter|Poisoning by sulfonamides, assault, subsequent encounter +C2876799|T037|PT|T37.0X3D|ICD10CM|Poisoning by sulfonamides, assault, subsequent encounter|Poisoning by sulfonamides, assault, subsequent encounter +C2876800|T037|AB|T37.0X3S|ICD10CM|Poisoning by sulfonamides, assault, sequela|Poisoning by sulfonamides, assault, sequela +C2876800|T037|PT|T37.0X3S|ICD10CM|Poisoning by sulfonamides, assault, sequela|Poisoning by sulfonamides, assault, sequela +C2876801|T037|AB|T37.0X4|ICD10CM|Poisoning by sulfonamides, undetermined|Poisoning by sulfonamides, undetermined +C2876801|T037|HT|T37.0X4|ICD10CM|Poisoning by sulfonamides, undetermined|Poisoning by sulfonamides, undetermined +C2876802|T037|AB|T37.0X4A|ICD10CM|Poisoning by sulfonamides, undetermined, initial encounter|Poisoning by sulfonamides, undetermined, initial encounter +C2876802|T037|PT|T37.0X4A|ICD10CM|Poisoning by sulfonamides, undetermined, initial encounter|Poisoning by sulfonamides, undetermined, initial encounter +C2876803|T037|AB|T37.0X4D|ICD10CM|Poisoning by sulfonamides, undetermined, subs encntr|Poisoning by sulfonamides, undetermined, subs encntr +C2876803|T037|PT|T37.0X4D|ICD10CM|Poisoning by sulfonamides, undetermined, subsequent encounter|Poisoning by sulfonamides, undetermined, subsequent encounter +C2876804|T037|AB|T37.0X4S|ICD10CM|Poisoning by sulfonamides, undetermined, sequela|Poisoning by sulfonamides, undetermined, sequela +C2876804|T037|PT|T37.0X4S|ICD10CM|Poisoning by sulfonamides, undetermined, sequela|Poisoning by sulfonamides, undetermined, sequela +C0261773|T046|AB|T37.0X5|ICD10CM|Adverse effect of sulfonamides|Adverse effect of sulfonamides +C0261773|T046|HT|T37.0X5|ICD10CM|Adverse effect of sulfonamides|Adverse effect of sulfonamides +C2876805|T037|AB|T37.0X5A|ICD10CM|Adverse effect of sulfonamides, initial encounter|Adverse effect of sulfonamides, initial encounter +C2876805|T037|PT|T37.0X5A|ICD10CM|Adverse effect of sulfonamides, initial encounter|Adverse effect of sulfonamides, initial encounter +C2876806|T037|AB|T37.0X5D|ICD10CM|Adverse effect of sulfonamides, subsequent encounter|Adverse effect of sulfonamides, subsequent encounter +C2876806|T037|PT|T37.0X5D|ICD10CM|Adverse effect of sulfonamides, subsequent encounter|Adverse effect of sulfonamides, subsequent encounter +C2876807|T037|AB|T37.0X5S|ICD10CM|Adverse effect of sulfonamides, sequela|Adverse effect of sulfonamides, sequela +C2876807|T037|PT|T37.0X5S|ICD10CM|Adverse effect of sulfonamides, sequela|Adverse effect of sulfonamides, sequela +C2876808|T033|HT|T37.0X6|ICD10CM|Underdosing of sulfonamides|Underdosing of sulfonamides +C2876808|T033|AB|T37.0X6|ICD10CM|Underdosing of sulfonamides|Underdosing of sulfonamides +C2876809|T037|AB|T37.0X6A|ICD10CM|Underdosing of sulfonamides, initial encounter|Underdosing of sulfonamides, initial encounter +C2876809|T037|PT|T37.0X6A|ICD10CM|Underdosing of sulfonamides, initial encounter|Underdosing of sulfonamides, initial encounter +C2876810|T037|AB|T37.0X6D|ICD10CM|Underdosing of sulfonamides, subsequent encounter|Underdosing of sulfonamides, subsequent encounter +C2876810|T037|PT|T37.0X6D|ICD10CM|Underdosing of sulfonamides, subsequent encounter|Underdosing of sulfonamides, subsequent encounter +C2876811|T037|AB|T37.0X6S|ICD10CM|Underdosing of sulfonamides, sequela|Underdosing of sulfonamides, sequela +C2876811|T037|PT|T37.0X6S|ICD10CM|Underdosing of sulfonamides, sequela|Underdosing of sulfonamides, sequela +C2876812|T037|AB|T37.1|ICD10CM|Antimycobacterial drugs|Antimycobacterial drugs +C0274484|T037|PS|T37.1|ICD10|Antimycobacterial drugs|Antimycobacterial drugs +C0274484|T037|PX|T37.1|ICD10|Poisoning by antimycobacterial drugs|Poisoning by antimycobacterial drugs +C2876812|T037|HT|T37.1|ICD10CM|Poisoning by, adverse effect of and underdosing of antimycobacterial drugs|Poisoning by, adverse effect of and underdosing of antimycobacterial drugs +C2876812|T037|AB|T37.1X|ICD10CM|Antimycobacterial drugs|Antimycobacterial drugs +C2876812|T037|HT|T37.1X|ICD10CM|Poisoning by, adverse effect of and underdosing of antimycobacterial drugs|Poisoning by, adverse effect of and underdosing of antimycobacterial drugs +C2876813|T037|AB|T37.1X1|ICD10CM|Poisoning by antimycobac drugs, accidental (unintentional)|Poisoning by antimycobac drugs, accidental (unintentional) +C0274484|T037|ET|T37.1X1|ICD10CM|Poisoning by antimycobacterial drugs NOS|Poisoning by antimycobacterial drugs NOS +C2876813|T037|HT|T37.1X1|ICD10CM|Poisoning by antimycobacterial drugs, accidental (unintentional)|Poisoning by antimycobacterial drugs, accidental (unintentional) +C2876814|T037|AB|T37.1X1A|ICD10CM|Poisoning by antimycobac drugs, accidental, init|Poisoning by antimycobac drugs, accidental, init +C2876814|T037|PT|T37.1X1A|ICD10CM|Poisoning by antimycobacterial drugs, accidental (unintentional), initial encounter|Poisoning by antimycobacterial drugs, accidental (unintentional), initial encounter +C2876815|T037|AB|T37.1X1D|ICD10CM|Poisoning by antimycobac drugs, accidental, subs|Poisoning by antimycobac drugs, accidental, subs +C2876815|T037|PT|T37.1X1D|ICD10CM|Poisoning by antimycobacterial drugs, accidental (unintentional), subsequent encounter|Poisoning by antimycobacterial drugs, accidental (unintentional), subsequent encounter +C2876816|T037|AB|T37.1X1S|ICD10CM|Poisoning by antimycobac drugs, accidental, sequela|Poisoning by antimycobac drugs, accidental, sequela +C2876816|T037|PT|T37.1X1S|ICD10CM|Poisoning by antimycobacterial drugs, accidental (unintentional), sequela|Poisoning by antimycobacterial drugs, accidental (unintentional), sequela +C2876817|T037|AB|T37.1X2|ICD10CM|Poisoning by antimycobacterial drugs, intentional self-harm|Poisoning by antimycobacterial drugs, intentional self-harm +C2876817|T037|HT|T37.1X2|ICD10CM|Poisoning by antimycobacterial drugs, intentional self-harm|Poisoning by antimycobacterial drugs, intentional self-harm +C2876818|T037|PT|T37.1X2A|ICD10CM|Poisoning by antimycobacterial drugs, intentional self-harm, initial encounter|Poisoning by antimycobacterial drugs, intentional self-harm, initial encounter +C2876818|T037|AB|T37.1X2A|ICD10CM|Poisoning by antimycobacterial drugs, self-harm, init|Poisoning by antimycobacterial drugs, self-harm, init +C2876819|T037|PT|T37.1X2D|ICD10CM|Poisoning by antimycobacterial drugs, intentional self-harm, subsequent encounter|Poisoning by antimycobacterial drugs, intentional self-harm, subsequent encounter +C2876819|T037|AB|T37.1X2D|ICD10CM|Poisoning by antimycobacterial drugs, self-harm, subs|Poisoning by antimycobacterial drugs, self-harm, subs +C2876820|T037|PT|T37.1X2S|ICD10CM|Poisoning by antimycobacterial drugs, intentional self-harm, sequela|Poisoning by antimycobacterial drugs, intentional self-harm, sequela +C2876820|T037|AB|T37.1X2S|ICD10CM|Poisoning by antimycobacterial drugs, self-harm, sequela|Poisoning by antimycobacterial drugs, self-harm, sequela +C2876821|T037|AB|T37.1X3|ICD10CM|Poisoning by antimycobacterial drugs, assault|Poisoning by antimycobacterial drugs, assault +C2876821|T037|HT|T37.1X3|ICD10CM|Poisoning by antimycobacterial drugs, assault|Poisoning by antimycobacterial drugs, assault +C2876822|T037|AB|T37.1X3A|ICD10CM|Poisoning by antimycobacterial drugs, assault, init encntr|Poisoning by antimycobacterial drugs, assault, init encntr +C2876822|T037|PT|T37.1X3A|ICD10CM|Poisoning by antimycobacterial drugs, assault, initial encounter|Poisoning by antimycobacterial drugs, assault, initial encounter +C2876823|T037|AB|T37.1X3D|ICD10CM|Poisoning by antimycobacterial drugs, assault, subs encntr|Poisoning by antimycobacterial drugs, assault, subs encntr +C2876823|T037|PT|T37.1X3D|ICD10CM|Poisoning by antimycobacterial drugs, assault, subsequent encounter|Poisoning by antimycobacterial drugs, assault, subsequent encounter +C2876824|T037|AB|T37.1X3S|ICD10CM|Poisoning by antimycobacterial drugs, assault, sequela|Poisoning by antimycobacterial drugs, assault, sequela +C2876824|T037|PT|T37.1X3S|ICD10CM|Poisoning by antimycobacterial drugs, assault, sequela|Poisoning by antimycobacterial drugs, assault, sequela +C2876825|T037|AB|T37.1X4|ICD10CM|Poisoning by antimycobacterial drugs, undetermined|Poisoning by antimycobacterial drugs, undetermined +C2876825|T037|HT|T37.1X4|ICD10CM|Poisoning by antimycobacterial drugs, undetermined|Poisoning by antimycobacterial drugs, undetermined +C2876826|T037|AB|T37.1X4A|ICD10CM|Poisoning by antimycobacterial drugs, undetermined, init|Poisoning by antimycobacterial drugs, undetermined, init +C2876826|T037|PT|T37.1X4A|ICD10CM|Poisoning by antimycobacterial drugs, undetermined, initial encounter|Poisoning by antimycobacterial drugs, undetermined, initial encounter +C2876827|T037|AB|T37.1X4D|ICD10CM|Poisoning by antimycobacterial drugs, undetermined, subs|Poisoning by antimycobacterial drugs, undetermined, subs +C2876827|T037|PT|T37.1X4D|ICD10CM|Poisoning by antimycobacterial drugs, undetermined, subsequent encounter|Poisoning by antimycobacterial drugs, undetermined, subsequent encounter +C2876828|T037|AB|T37.1X4S|ICD10CM|Poisoning by antimycobacterial drugs, undetermined, sequela|Poisoning by antimycobacterial drugs, undetermined, sequela +C2876828|T037|PT|T37.1X4S|ICD10CM|Poisoning by antimycobacterial drugs, undetermined, sequela|Poisoning by antimycobacterial drugs, undetermined, sequela +C2876829|T037|AB|T37.1X5|ICD10CM|Adverse effect of antimycobacterial drugs|Adverse effect of antimycobacterial drugs +C2876829|T037|HT|T37.1X5|ICD10CM|Adverse effect of antimycobacterial drugs|Adverse effect of antimycobacterial drugs +C2876830|T037|AB|T37.1X5A|ICD10CM|Adverse effect of antimycobacterial drugs, initial encounter|Adverse effect of antimycobacterial drugs, initial encounter +C2876830|T037|PT|T37.1X5A|ICD10CM|Adverse effect of antimycobacterial drugs, initial encounter|Adverse effect of antimycobacterial drugs, initial encounter +C2876831|T037|AB|T37.1X5D|ICD10CM|Adverse effect of antimycobacterial drugs, subs encntr|Adverse effect of antimycobacterial drugs, subs encntr +C2876831|T037|PT|T37.1X5D|ICD10CM|Adverse effect of antimycobacterial drugs, subsequent encounter|Adverse effect of antimycobacterial drugs, subsequent encounter +C2876832|T037|AB|T37.1X5S|ICD10CM|Adverse effect of antimycobacterial drugs, sequela|Adverse effect of antimycobacterial drugs, sequela +C2876832|T037|PT|T37.1X5S|ICD10CM|Adverse effect of antimycobacterial drugs, sequela|Adverse effect of antimycobacterial drugs, sequela +C2876833|T037|AB|T37.1X6|ICD10CM|Underdosing of antimycobacterial drugs|Underdosing of antimycobacterial drugs +C2876833|T037|HT|T37.1X6|ICD10CM|Underdosing of antimycobacterial drugs|Underdosing of antimycobacterial drugs +C2876834|T037|AB|T37.1X6A|ICD10CM|Underdosing of antimycobacterial drugs, initial encounter|Underdosing of antimycobacterial drugs, initial encounter +C2876834|T037|PT|T37.1X6A|ICD10CM|Underdosing of antimycobacterial drugs, initial encounter|Underdosing of antimycobacterial drugs, initial encounter +C2876835|T037|AB|T37.1X6D|ICD10CM|Underdosing of antimycobacterial drugs, subsequent encounter|Underdosing of antimycobacterial drugs, subsequent encounter +C2876835|T037|PT|T37.1X6D|ICD10CM|Underdosing of antimycobacterial drugs, subsequent encounter|Underdosing of antimycobacterial drugs, subsequent encounter +C2876836|T037|AB|T37.1X6S|ICD10CM|Underdosing of antimycobacterial drugs, sequela|Underdosing of antimycobacterial drugs, sequela +C2876836|T037|PT|T37.1X6S|ICD10CM|Underdosing of antimycobacterial drugs, sequela|Underdosing of antimycobacterial drugs, sequela +C2876837|T037|AB|T37.2|ICD10CM|Antimalarials and drugs acting on bld protzoa|Antimalarials and drugs acting on bld protzoa +C0161501|T037|PS|T37.2|ICD10|Antimalarials and drugs acting on other blood protozoa|Antimalarials and drugs acting on other blood protozoa +C0161501|T037|PX|T37.2|ICD10|Poisoning by antimalarials and drugs acting on other blood protozoa|Poisoning by antimalarials and drugs acting on other blood protozoa +C2876837|T037|AB|T37.2X|ICD10CM|Antimalarials and drugs acting on bld protzoa|Antimalarials and drugs acting on bld protzoa +C2876838|T037|AB|T37.2X1|ICD10CM|Poisoning by antimalari/drugs acting on bld protzoa, acc|Poisoning by antimalari/drugs acting on bld protzoa, acc +C0161501|T037|ET|T37.2X1|ICD10CM|Poisoning by antimalarials and drugs acting on other blood protozoa NOS|Poisoning by antimalarials and drugs acting on other blood protozoa NOS +C2876838|T037|HT|T37.2X1|ICD10CM|Poisoning by antimalarials and drugs acting on other blood protozoa, accidental (unintentional)|Poisoning by antimalarials and drugs acting on other blood protozoa, accidental (unintentional) +C2876839|T037|AB|T37.2X1A|ICD10CM|Poisn by antimalari/drugs acting on bld protzoa, acc, init|Poisn by antimalari/drugs acting on bld protzoa, acc, init +C2876840|T037|AB|T37.2X1D|ICD10CM|Poisn by antimalari/drugs acting on bld protzoa, acc, subs|Poisn by antimalari/drugs acting on bld protzoa, acc, subs +C2876841|T037|AB|T37.2X1S|ICD10CM|Poisn by antimalari/drugs acting on bld protzoa, acc, sqla|Poisn by antimalari/drugs acting on bld protzoa, acc, sqla +C2876842|T037|AB|T37.2X2|ICD10CM|Poisn by antimalari/drugs acting on bld protzoa, self-harm|Poisn by antimalari/drugs acting on bld protzoa, self-harm +C2876842|T037|HT|T37.2X2|ICD10CM|Poisoning by antimalarials and drugs acting on other blood protozoa, intentional self-harm|Poisoning by antimalarials and drugs acting on other blood protozoa, intentional self-harm +C2876843|T037|AB|T37.2X2A|ICD10CM|Poisn by antimalari/drugs act on bld protzoa, slf-hrm, init|Poisn by antimalari/drugs act on bld protzoa, slf-hrm, init +C2876844|T037|AB|T37.2X2D|ICD10CM|Poisn by antimalari/drugs act on bld protzoa, slf-hrm, subs|Poisn by antimalari/drugs act on bld protzoa, slf-hrm, subs +C2876845|T037|AB|T37.2X2S|ICD10CM|Poisn by antimalari/drugs act on bld protzoa, slf-hrm, sqla|Poisn by antimalari/drugs act on bld protzoa, slf-hrm, sqla +C2876845|T037|PT|T37.2X2S|ICD10CM|Poisoning by antimalarials and drugs acting on other blood protozoa, intentional self-harm, sequela|Poisoning by antimalarials and drugs acting on other blood protozoa, intentional self-harm, sequela +C2876846|T037|AB|T37.2X3|ICD10CM|Poisoning by antimalari/drugs acting on bld protzoa, assault|Poisoning by antimalari/drugs acting on bld protzoa, assault +C2876846|T037|HT|T37.2X3|ICD10CM|Poisoning by antimalarials and drugs acting on other blood protozoa, assault|Poisoning by antimalarials and drugs acting on other blood protozoa, assault +C2876847|T037|AB|T37.2X3A|ICD10CM|Poisn by antimalari/drugs acting on bld protzoa, asslt, init|Poisn by antimalari/drugs acting on bld protzoa, asslt, init +C2876847|T037|PT|T37.2X3A|ICD10CM|Poisoning by antimalarials and drugs acting on other blood protozoa, assault, initial encounter|Poisoning by antimalarials and drugs acting on other blood protozoa, assault, initial encounter +C2876848|T037|AB|T37.2X3D|ICD10CM|Poisn by antimalari/drugs acting on bld protzoa, asslt, subs|Poisn by antimalari/drugs acting on bld protzoa, asslt, subs +C2876848|T037|PT|T37.2X3D|ICD10CM|Poisoning by antimalarials and drugs acting on other blood protozoa, assault, subsequent encounter|Poisoning by antimalarials and drugs acting on other blood protozoa, assault, subsequent encounter +C2876849|T037|AB|T37.2X3S|ICD10CM|Poisn by antimalari/drugs acting on bld protzoa, asslt, sqla|Poisn by antimalari/drugs acting on bld protzoa, asslt, sqla +C2876849|T037|PT|T37.2X3S|ICD10CM|Poisoning by antimalarials and drugs acting on other blood protozoa, assault, sequela|Poisoning by antimalarials and drugs acting on other blood protozoa, assault, sequela +C2876850|T037|AB|T37.2X4|ICD10CM|Poisoning by antimalari/drugs acting on bld protzoa, undet|Poisoning by antimalari/drugs acting on bld protzoa, undet +C2876850|T037|HT|T37.2X4|ICD10CM|Poisoning by antimalarials and drugs acting on other blood protozoa, undetermined|Poisoning by antimalarials and drugs acting on other blood protozoa, undetermined +C2876851|T037|AB|T37.2X4A|ICD10CM|Poisn by antimalari/drugs acting on bld protzoa, undet, init|Poisn by antimalari/drugs acting on bld protzoa, undet, init +C2876851|T037|PT|T37.2X4A|ICD10CM|Poisoning by antimalarials and drugs acting on other blood protozoa, undetermined, initial encounter|Poisoning by antimalarials and drugs acting on other blood protozoa, undetermined, initial encounter +C2876852|T037|AB|T37.2X4D|ICD10CM|Poisn by antimalari/drugs acting on bld protzoa, undet, subs|Poisn by antimalari/drugs acting on bld protzoa, undet, subs +C2876853|T037|AB|T37.2X4S|ICD10CM|Poisn by antimalari/drugs acting on bld protzoa, undet, sqla|Poisn by antimalari/drugs acting on bld protzoa, undet, sqla +C2876853|T037|PT|T37.2X4S|ICD10CM|Poisoning by antimalarials and drugs acting on other blood protozoa, undetermined, sequela|Poisoning by antimalarials and drugs acting on other blood protozoa, undetermined, sequela +C2876854|T037|AB|T37.2X5|ICD10CM|Adverse effect of antimalari/drugs acting on bld protzoa|Adverse effect of antimalari/drugs acting on bld protzoa +C2876854|T037|HT|T37.2X5|ICD10CM|Adverse effect of antimalarials and drugs acting on other blood protozoa|Adverse effect of antimalarials and drugs acting on other blood protozoa +C2876855|T037|PT|T37.2X5A|ICD10CM|Adverse effect of antimalarials and drugs acting on other blood protozoa, initial encounter|Adverse effect of antimalarials and drugs acting on other blood protozoa, initial encounter +C2876855|T037|AB|T37.2X5A|ICD10CM|Advrs effect of antimalari/drugs acting on bld protzoa, init|Advrs effect of antimalari/drugs acting on bld protzoa, init +C2876856|T037|PT|T37.2X5D|ICD10CM|Adverse effect of antimalarials and drugs acting on other blood protozoa, subsequent encounter|Adverse effect of antimalarials and drugs acting on other blood protozoa, subsequent encounter +C2876856|T037|AB|T37.2X5D|ICD10CM|Advrs effect of antimalari/drugs acting on bld protzoa, subs|Advrs effect of antimalari/drugs acting on bld protzoa, subs +C2876857|T037|PT|T37.2X5S|ICD10CM|Adverse effect of antimalarials and drugs acting on other blood protozoa, sequela|Adverse effect of antimalarials and drugs acting on other blood protozoa, sequela +C2876857|T037|AB|T37.2X5S|ICD10CM|Advrs effect of antimalari/drugs acting on bld protzoa, sqla|Advrs effect of antimalari/drugs acting on bld protzoa, sqla +C2876858|T037|AB|T37.2X6|ICD10CM|Underdosing of antimalarials and drugs acting on bld protzoa|Underdosing of antimalarials and drugs acting on bld protzoa +C2876858|T037|HT|T37.2X6|ICD10CM|Underdosing of antimalarials and drugs acting on other blood protozoa|Underdosing of antimalarials and drugs acting on other blood protozoa +C2876859|T037|AB|T37.2X6A|ICD10CM|Underdosing of antimalari/drugs acting on bld protzoa, init|Underdosing of antimalari/drugs acting on bld protzoa, init +C2876859|T037|PT|T37.2X6A|ICD10CM|Underdosing of antimalarials and drugs acting on other blood protozoa, initial encounter|Underdosing of antimalarials and drugs acting on other blood protozoa, initial encounter +C2876860|T037|AB|T37.2X6D|ICD10CM|Underdosing of antimalari/drugs acting on bld protzoa, subs|Underdosing of antimalari/drugs acting on bld protzoa, subs +C2876860|T037|PT|T37.2X6D|ICD10CM|Underdosing of antimalarials and drugs acting on other blood protozoa, subsequent encounter|Underdosing of antimalarials and drugs acting on other blood protozoa, subsequent encounter +C2876861|T037|PT|T37.2X6S|ICD10CM|Underdosing of antimalarials and drugs acting on other blood protozoa, sequela|Underdosing of antimalarials and drugs acting on other blood protozoa, sequela +C2876861|T037|AB|T37.2X6S|ICD10CM|Undrdose of antimalari/drugs acting on bld protzoa, sequela|Undrdose of antimalari/drugs acting on bld protzoa, sequela +C2876862|T037|AB|T37.3|ICD10CM|Antiprotozoal drugs|Antiprotozoal drugs +C0161502|T037|PS|T37.3|ICD10|Other antiprotozoal drugs|Other antiprotozoal drugs +C0161502|T037|PX|T37.3|ICD10|Poisoning by other antiprotozoal drugs|Poisoning by other antiprotozoal drugs +C2876862|T037|HT|T37.3|ICD10CM|Poisoning by, adverse effect of and underdosing of other antiprotozoal drugs|Poisoning by, adverse effect of and underdosing of other antiprotozoal drugs +C2876862|T037|AB|T37.3X|ICD10CM|Antiprotozoal drugs|Antiprotozoal drugs +C2876862|T037|HT|T37.3X|ICD10CM|Poisoning by, adverse effect of and underdosing of other antiprotozoal drugs|Poisoning by, adverse effect of and underdosing of other antiprotozoal drugs +C2876863|T037|AB|T37.3X1|ICD10CM|Poisoning by oth antiprotozoal drugs, accidental|Poisoning by oth antiprotozoal drugs, accidental +C0161502|T037|ET|T37.3X1|ICD10CM|Poisoning by other antiprotozoal drugs NOS|Poisoning by other antiprotozoal drugs NOS +C2876863|T037|HT|T37.3X1|ICD10CM|Poisoning by other antiprotozoal drugs, accidental (unintentional)|Poisoning by other antiprotozoal drugs, accidental (unintentional) +C2876864|T037|AB|T37.3X1A|ICD10CM|Poisoning by oth antiprotozoal drugs, accidental, init|Poisoning by oth antiprotozoal drugs, accidental, init +C2876864|T037|PT|T37.3X1A|ICD10CM|Poisoning by other antiprotozoal drugs, accidental (unintentional), initial encounter|Poisoning by other antiprotozoal drugs, accidental (unintentional), initial encounter +C2876865|T037|AB|T37.3X1D|ICD10CM|Poisoning by oth antiprotozoal drugs, accidental, subs|Poisoning by oth antiprotozoal drugs, accidental, subs +C2876865|T037|PT|T37.3X1D|ICD10CM|Poisoning by other antiprotozoal drugs, accidental (unintentional), subsequent encounter|Poisoning by other antiprotozoal drugs, accidental (unintentional), subsequent encounter +C2876866|T037|AB|T37.3X1S|ICD10CM|Poisoning by oth antiprotozoal drugs, accidental, sequela|Poisoning by oth antiprotozoal drugs, accidental, sequela +C2876866|T037|PT|T37.3X1S|ICD10CM|Poisoning by other antiprotozoal drugs, accidental (unintentional), sequela|Poisoning by other antiprotozoal drugs, accidental (unintentional), sequela +C2876867|T037|AB|T37.3X2|ICD10CM|Poisoning by oth antiprotozoal drugs, intentional self-harm|Poisoning by oth antiprotozoal drugs, intentional self-harm +C2876867|T037|HT|T37.3X2|ICD10CM|Poisoning by other antiprotozoal drugs, intentional self-harm|Poisoning by other antiprotozoal drugs, intentional self-harm +C2876868|T037|AB|T37.3X2A|ICD10CM|Poisoning by oth antiprotozoal drugs, self-harm, init|Poisoning by oth antiprotozoal drugs, self-harm, init +C2876868|T037|PT|T37.3X2A|ICD10CM|Poisoning by other antiprotozoal drugs, intentional self-harm, initial encounter|Poisoning by other antiprotozoal drugs, intentional self-harm, initial encounter +C2876869|T037|AB|T37.3X2D|ICD10CM|Poisoning by oth antiprotozoal drugs, self-harm, subs|Poisoning by oth antiprotozoal drugs, self-harm, subs +C2876869|T037|PT|T37.3X2D|ICD10CM|Poisoning by other antiprotozoal drugs, intentional self-harm, subsequent encounter|Poisoning by other antiprotozoal drugs, intentional self-harm, subsequent encounter +C2876870|T037|AB|T37.3X2S|ICD10CM|Poisoning by oth antiprotozoal drugs, self-harm, sequela|Poisoning by oth antiprotozoal drugs, self-harm, sequela +C2876870|T037|PT|T37.3X2S|ICD10CM|Poisoning by other antiprotozoal drugs, intentional self-harm, sequela|Poisoning by other antiprotozoal drugs, intentional self-harm, sequela +C2876871|T037|AB|T37.3X3|ICD10CM|Poisoning by other antiprotozoal drugs, assault|Poisoning by other antiprotozoal drugs, assault +C2876871|T037|HT|T37.3X3|ICD10CM|Poisoning by other antiprotozoal drugs, assault|Poisoning by other antiprotozoal drugs, assault +C2876872|T037|AB|T37.3X3A|ICD10CM|Poisoning by other antiprotozoal drugs, assault, init encntr|Poisoning by other antiprotozoal drugs, assault, init encntr +C2876872|T037|PT|T37.3X3A|ICD10CM|Poisoning by other antiprotozoal drugs, assault, initial encounter|Poisoning by other antiprotozoal drugs, assault, initial encounter +C2876873|T037|AB|T37.3X3D|ICD10CM|Poisoning by other antiprotozoal drugs, assault, subs encntr|Poisoning by other antiprotozoal drugs, assault, subs encntr +C2876873|T037|PT|T37.3X3D|ICD10CM|Poisoning by other antiprotozoal drugs, assault, subsequent encounter|Poisoning by other antiprotozoal drugs, assault, subsequent encounter +C2876874|T037|AB|T37.3X3S|ICD10CM|Poisoning by other antiprotozoal drugs, assault, sequela|Poisoning by other antiprotozoal drugs, assault, sequela +C2876874|T037|PT|T37.3X3S|ICD10CM|Poisoning by other antiprotozoal drugs, assault, sequela|Poisoning by other antiprotozoal drugs, assault, sequela +C2876875|T037|AB|T37.3X4|ICD10CM|Poisoning by other antiprotozoal drugs, undetermined|Poisoning by other antiprotozoal drugs, undetermined +C2876875|T037|HT|T37.3X4|ICD10CM|Poisoning by other antiprotozoal drugs, undetermined|Poisoning by other antiprotozoal drugs, undetermined +C2876876|T037|AB|T37.3X4A|ICD10CM|Poisoning by oth antiprotozoal drugs, undetermined, init|Poisoning by oth antiprotozoal drugs, undetermined, init +C2876876|T037|PT|T37.3X4A|ICD10CM|Poisoning by other antiprotozoal drugs, undetermined, initial encounter|Poisoning by other antiprotozoal drugs, undetermined, initial encounter +C2876877|T037|AB|T37.3X4D|ICD10CM|Poisoning by oth antiprotozoal drugs, undetermined, subs|Poisoning by oth antiprotozoal drugs, undetermined, subs +C2876877|T037|PT|T37.3X4D|ICD10CM|Poisoning by other antiprotozoal drugs, undetermined, subsequent encounter|Poisoning by other antiprotozoal drugs, undetermined, subsequent encounter +C2876878|T037|AB|T37.3X4S|ICD10CM|Poisoning by oth antiprotozoal drugs, undetermined, sequela|Poisoning by oth antiprotozoal drugs, undetermined, sequela +C2876878|T037|PT|T37.3X4S|ICD10CM|Poisoning by other antiprotozoal drugs, undetermined, sequela|Poisoning by other antiprotozoal drugs, undetermined, sequela +C2876879|T037|AB|T37.3X5|ICD10CM|Adverse effect of other antiprotozoal drugs|Adverse effect of other antiprotozoal drugs +C2876879|T037|HT|T37.3X5|ICD10CM|Adverse effect of other antiprotozoal drugs|Adverse effect of other antiprotozoal drugs +C2876880|T037|AB|T37.3X5A|ICD10CM|Adverse effect of other antiprotozoal drugs, init encntr|Adverse effect of other antiprotozoal drugs, init encntr +C2876880|T037|PT|T37.3X5A|ICD10CM|Adverse effect of other antiprotozoal drugs, initial encounter|Adverse effect of other antiprotozoal drugs, initial encounter +C2876881|T037|AB|T37.3X5D|ICD10CM|Adverse effect of other antiprotozoal drugs, subs encntr|Adverse effect of other antiprotozoal drugs, subs encntr +C2876881|T037|PT|T37.3X5D|ICD10CM|Adverse effect of other antiprotozoal drugs, subsequent encounter|Adverse effect of other antiprotozoal drugs, subsequent encounter +C2876882|T037|AB|T37.3X5S|ICD10CM|Adverse effect of other antiprotozoal drugs, sequela|Adverse effect of other antiprotozoal drugs, sequela +C2876882|T037|PT|T37.3X5S|ICD10CM|Adverse effect of other antiprotozoal drugs, sequela|Adverse effect of other antiprotozoal drugs, sequela +C2876883|T037|AB|T37.3X6|ICD10CM|Underdosing of other antiprotozoal drugs|Underdosing of other antiprotozoal drugs +C2876883|T037|HT|T37.3X6|ICD10CM|Underdosing of other antiprotozoal drugs|Underdosing of other antiprotozoal drugs +C2876884|T037|AB|T37.3X6A|ICD10CM|Underdosing of other antiprotozoal drugs, initial encounter|Underdosing of other antiprotozoal drugs, initial encounter +C2876884|T037|PT|T37.3X6A|ICD10CM|Underdosing of other antiprotozoal drugs, initial encounter|Underdosing of other antiprotozoal drugs, initial encounter +C2876885|T037|AB|T37.3X6D|ICD10CM|Underdosing of other antiprotozoal drugs, subs encntr|Underdosing of other antiprotozoal drugs, subs encntr +C2876885|T037|PT|T37.3X6D|ICD10CM|Underdosing of other antiprotozoal drugs, subsequent encounter|Underdosing of other antiprotozoal drugs, subsequent encounter +C2876886|T037|AB|T37.3X6S|ICD10CM|Underdosing of other antiprotozoal drugs, sequela|Underdosing of other antiprotozoal drugs, sequela +C2876886|T037|PT|T37.3X6S|ICD10CM|Underdosing of other antiprotozoal drugs, sequela|Underdosing of other antiprotozoal drugs, sequela +C2876887|T037|AB|T37.4|ICD10CM|Anthelminthics|Anthelminthics +C0496964|T037|PS|T37.4|ICD10|Anthelminthics|Anthelminthics +C0496964|T037|PX|T37.4|ICD10|Poisoning by anthelminthics|Poisoning by anthelminthics +C2876887|T037|HT|T37.4|ICD10CM|Poisoning by, adverse effect of and underdosing of anthelminthics|Poisoning by, adverse effect of and underdosing of anthelminthics +C2876887|T037|AB|T37.4X|ICD10CM|Anthelminthics|Anthelminthics +C2876887|T037|HT|T37.4X|ICD10CM|Poisoning by, adverse effect of and underdosing of anthelminthics|Poisoning by, adverse effect of and underdosing of anthelminthics +C0496964|T037|ET|T37.4X1|ICD10CM|Poisoning by anthelminthics NOS|Poisoning by anthelminthics NOS +C2876888|T037|AB|T37.4X1|ICD10CM|Poisoning by anthelminthics, accidental (unintentional)|Poisoning by anthelminthics, accidental (unintentional) +C2876888|T037|HT|T37.4X1|ICD10CM|Poisoning by anthelminthics, accidental (unintentional)|Poisoning by anthelminthics, accidental (unintentional) +C2876889|T037|PT|T37.4X1A|ICD10CM|Poisoning by anthelminthics, accidental (unintentional), initial encounter|Poisoning by anthelminthics, accidental (unintentional), initial encounter +C2876889|T037|AB|T37.4X1A|ICD10CM|Poisoning by anthelminthics, accidental, init|Poisoning by anthelminthics, accidental, init +C2876890|T037|PT|T37.4X1D|ICD10CM|Poisoning by anthelminthics, accidental (unintentional), subsequent encounter|Poisoning by anthelminthics, accidental (unintentional), subsequent encounter +C2876890|T037|AB|T37.4X1D|ICD10CM|Poisoning by anthelminthics, accidental, subs|Poisoning by anthelminthics, accidental, subs +C2876891|T037|PT|T37.4X1S|ICD10CM|Poisoning by anthelminthics, accidental (unintentional), sequela|Poisoning by anthelminthics, accidental (unintentional), sequela +C2876891|T037|AB|T37.4X1S|ICD10CM|Poisoning by anthelminthics, accidental, sequela|Poisoning by anthelminthics, accidental, sequela +C2876892|T037|AB|T37.4X2|ICD10CM|Poisoning by anthelminthics, intentional self-harm|Poisoning by anthelminthics, intentional self-harm +C2876892|T037|HT|T37.4X2|ICD10CM|Poisoning by anthelminthics, intentional self-harm|Poisoning by anthelminthics, intentional self-harm +C2876893|T037|AB|T37.4X2A|ICD10CM|Poisoning by anthelminthics, intentional self-harm, init|Poisoning by anthelminthics, intentional self-harm, init +C2876893|T037|PT|T37.4X2A|ICD10CM|Poisoning by anthelminthics, intentional self-harm, initial encounter|Poisoning by anthelminthics, intentional self-harm, initial encounter +C2876894|T037|AB|T37.4X2D|ICD10CM|Poisoning by anthelminthics, intentional self-harm, subs|Poisoning by anthelminthics, intentional self-harm, subs +C2876894|T037|PT|T37.4X2D|ICD10CM|Poisoning by anthelminthics, intentional self-harm, subsequent encounter|Poisoning by anthelminthics, intentional self-harm, subsequent encounter +C2876895|T037|AB|T37.4X2S|ICD10CM|Poisoning by anthelminthics, intentional self-harm, sequela|Poisoning by anthelminthics, intentional self-harm, sequela +C2876895|T037|PT|T37.4X2S|ICD10CM|Poisoning by anthelminthics, intentional self-harm, sequela|Poisoning by anthelminthics, intentional self-harm, sequela +C2876896|T037|AB|T37.4X3|ICD10CM|Poisoning by anthelminthics, assault|Poisoning by anthelminthics, assault +C2876896|T037|HT|T37.4X3|ICD10CM|Poisoning by anthelminthics, assault|Poisoning by anthelminthics, assault +C2876897|T037|AB|T37.4X3A|ICD10CM|Poisoning by anthelminthics, assault, initial encounter|Poisoning by anthelminthics, assault, initial encounter +C2876897|T037|PT|T37.4X3A|ICD10CM|Poisoning by anthelminthics, assault, initial encounter|Poisoning by anthelminthics, assault, initial encounter +C2876898|T037|AB|T37.4X3D|ICD10CM|Poisoning by anthelminthics, assault, subsequent encounter|Poisoning by anthelminthics, assault, subsequent encounter +C2876898|T037|PT|T37.4X3D|ICD10CM|Poisoning by anthelminthics, assault, subsequent encounter|Poisoning by anthelminthics, assault, subsequent encounter +C2876899|T037|AB|T37.4X3S|ICD10CM|Poisoning by anthelminthics, assault, sequela|Poisoning by anthelminthics, assault, sequela +C2876899|T037|PT|T37.4X3S|ICD10CM|Poisoning by anthelminthics, assault, sequela|Poisoning by anthelminthics, assault, sequela +C2876900|T037|AB|T37.4X4|ICD10CM|Poisoning by anthelminthics, undetermined|Poisoning by anthelminthics, undetermined +C2876900|T037|HT|T37.4X4|ICD10CM|Poisoning by anthelminthics, undetermined|Poisoning by anthelminthics, undetermined +C2876901|T037|AB|T37.4X4A|ICD10CM|Poisoning by anthelminthics, undetermined, initial encounter|Poisoning by anthelminthics, undetermined, initial encounter +C2876901|T037|PT|T37.4X4A|ICD10CM|Poisoning by anthelminthics, undetermined, initial encounter|Poisoning by anthelminthics, undetermined, initial encounter +C2876902|T037|AB|T37.4X4D|ICD10CM|Poisoning by anthelminthics, undetermined, subs encntr|Poisoning by anthelminthics, undetermined, subs encntr +C2876902|T037|PT|T37.4X4D|ICD10CM|Poisoning by anthelminthics, undetermined, subsequent encounter|Poisoning by anthelminthics, undetermined, subsequent encounter +C2876903|T037|AB|T37.4X4S|ICD10CM|Poisoning by anthelminthics, undetermined, sequela|Poisoning by anthelminthics, undetermined, sequela +C2876903|T037|PT|T37.4X4S|ICD10CM|Poisoning by anthelminthics, undetermined, sequela|Poisoning by anthelminthics, undetermined, sequela +C0413512|T046|AB|T37.4X5|ICD10CM|Adverse effect of anthelminthics|Adverse effect of anthelminthics +C0413512|T046|HT|T37.4X5|ICD10CM|Adverse effect of anthelminthics|Adverse effect of anthelminthics +C2876905|T037|AB|T37.4X5A|ICD10CM|Adverse effect of anthelminthics, initial encounter|Adverse effect of anthelminthics, initial encounter +C2876905|T037|PT|T37.4X5A|ICD10CM|Adverse effect of anthelminthics, initial encounter|Adverse effect of anthelminthics, initial encounter +C2876906|T037|AB|T37.4X5D|ICD10CM|Adverse effect of anthelminthics, subsequent encounter|Adverse effect of anthelminthics, subsequent encounter +C2876906|T037|PT|T37.4X5D|ICD10CM|Adverse effect of anthelminthics, subsequent encounter|Adverse effect of anthelminthics, subsequent encounter +C2876907|T037|AB|T37.4X5S|ICD10CM|Adverse effect of anthelminthics, sequela|Adverse effect of anthelminthics, sequela +C2876907|T037|PT|T37.4X5S|ICD10CM|Adverse effect of anthelminthics, sequela|Adverse effect of anthelminthics, sequela +C2876908|T033|AB|T37.4X6|ICD10CM|Underdosing of anthelminthics|Underdosing of anthelminthics +C2876908|T033|HT|T37.4X6|ICD10CM|Underdosing of anthelminthics|Underdosing of anthelminthics +C2876909|T037|AB|T37.4X6A|ICD10CM|Underdosing of anthelminthics, initial encounter|Underdosing of anthelminthics, initial encounter +C2876909|T037|PT|T37.4X6A|ICD10CM|Underdosing of anthelminthics, initial encounter|Underdosing of anthelminthics, initial encounter +C2876910|T037|AB|T37.4X6D|ICD10CM|Underdosing of anthelminthics, subsequent encounter|Underdosing of anthelminthics, subsequent encounter +C2876910|T037|PT|T37.4X6D|ICD10CM|Underdosing of anthelminthics, subsequent encounter|Underdosing of anthelminthics, subsequent encounter +C2876911|T037|AB|T37.4X6S|ICD10CM|Underdosing of anthelminthics, sequela|Underdosing of anthelminthics, sequela +C2876911|T037|PT|T37.4X6S|ICD10CM|Underdosing of anthelminthics, sequela|Underdosing of anthelminthics, sequela +C2876912|T037|AB|T37.5|ICD10CM|Antiviral drugs|Antiviral drugs +C0161504|T037|PS|T37.5|ICD10|Antiviral drugs|Antiviral drugs +C0161504|T037|PX|T37.5|ICD10|Poisoning by antiviral drugs|Poisoning by antiviral drugs +C2876912|T037|HT|T37.5|ICD10CM|Poisoning by, adverse effect of and underdosing of antiviral drugs|Poisoning by, adverse effect of and underdosing of antiviral drugs +C2876912|T037|AB|T37.5X|ICD10CM|Antiviral drugs|Antiviral drugs +C2876912|T037|HT|T37.5X|ICD10CM|Poisoning by, adverse effect of and underdosing of antiviral drugs|Poisoning by, adverse effect of and underdosing of antiviral drugs +C0161504|T037|ET|T37.5X1|ICD10CM|Poisoning by antiviral drugs NOS|Poisoning by antiviral drugs NOS +C2876913|T037|AB|T37.5X1|ICD10CM|Poisoning by antiviral drugs, accidental (unintentional)|Poisoning by antiviral drugs, accidental (unintentional) +C2876913|T037|HT|T37.5X1|ICD10CM|Poisoning by antiviral drugs, accidental (unintentional)|Poisoning by antiviral drugs, accidental (unintentional) +C2876914|T037|PT|T37.5X1A|ICD10CM|Poisoning by antiviral drugs, accidental (unintentional), initial encounter|Poisoning by antiviral drugs, accidental (unintentional), initial encounter +C2876914|T037|AB|T37.5X1A|ICD10CM|Poisoning by antiviral drugs, accidental, init|Poisoning by antiviral drugs, accidental, init +C2876915|T037|PT|T37.5X1D|ICD10CM|Poisoning by antiviral drugs, accidental (unintentional), subsequent encounter|Poisoning by antiviral drugs, accidental (unintentional), subsequent encounter +C2876915|T037|AB|T37.5X1D|ICD10CM|Poisoning by antiviral drugs, accidental, subs|Poisoning by antiviral drugs, accidental, subs +C2876916|T037|PT|T37.5X1S|ICD10CM|Poisoning by antiviral drugs, accidental (unintentional), sequela|Poisoning by antiviral drugs, accidental (unintentional), sequela +C2876916|T037|AB|T37.5X1S|ICD10CM|Poisoning by antiviral drugs, accidental, sequela|Poisoning by antiviral drugs, accidental, sequela +C2876917|T037|AB|T37.5X2|ICD10CM|Poisoning by antiviral drugs, intentional self-harm|Poisoning by antiviral drugs, intentional self-harm +C2876917|T037|HT|T37.5X2|ICD10CM|Poisoning by antiviral drugs, intentional self-harm|Poisoning by antiviral drugs, intentional self-harm +C2876918|T037|AB|T37.5X2A|ICD10CM|Poisoning by antiviral drugs, intentional self-harm, init|Poisoning by antiviral drugs, intentional self-harm, init +C2876918|T037|PT|T37.5X2A|ICD10CM|Poisoning by antiviral drugs, intentional self-harm, initial encounter|Poisoning by antiviral drugs, intentional self-harm, initial encounter +C2876919|T037|AB|T37.5X2D|ICD10CM|Poisoning by antiviral drugs, intentional self-harm, subs|Poisoning by antiviral drugs, intentional self-harm, subs +C2876919|T037|PT|T37.5X2D|ICD10CM|Poisoning by antiviral drugs, intentional self-harm, subsequent encounter|Poisoning by antiviral drugs, intentional self-harm, subsequent encounter +C2876920|T037|AB|T37.5X2S|ICD10CM|Poisoning by antiviral drugs, intentional self-harm, sequela|Poisoning by antiviral drugs, intentional self-harm, sequela +C2876920|T037|PT|T37.5X2S|ICD10CM|Poisoning by antiviral drugs, intentional self-harm, sequela|Poisoning by antiviral drugs, intentional self-harm, sequela +C2876921|T037|AB|T37.5X3|ICD10CM|Poisoning by antiviral drugs, assault|Poisoning by antiviral drugs, assault +C2876921|T037|HT|T37.5X3|ICD10CM|Poisoning by antiviral drugs, assault|Poisoning by antiviral drugs, assault +C2876922|T037|AB|T37.5X3A|ICD10CM|Poisoning by antiviral drugs, assault, initial encounter|Poisoning by antiviral drugs, assault, initial encounter +C2876922|T037|PT|T37.5X3A|ICD10CM|Poisoning by antiviral drugs, assault, initial encounter|Poisoning by antiviral drugs, assault, initial encounter +C2876923|T037|AB|T37.5X3D|ICD10CM|Poisoning by antiviral drugs, assault, subsequent encounter|Poisoning by antiviral drugs, assault, subsequent encounter +C2876923|T037|PT|T37.5X3D|ICD10CM|Poisoning by antiviral drugs, assault, subsequent encounter|Poisoning by antiviral drugs, assault, subsequent encounter +C2876924|T037|AB|T37.5X3S|ICD10CM|Poisoning by antiviral drugs, assault, sequela|Poisoning by antiviral drugs, assault, sequela +C2876924|T037|PT|T37.5X3S|ICD10CM|Poisoning by antiviral drugs, assault, sequela|Poisoning by antiviral drugs, assault, sequela +C2876925|T037|AB|T37.5X4|ICD10CM|Poisoning by antiviral drugs, undetermined|Poisoning by antiviral drugs, undetermined +C2876925|T037|HT|T37.5X4|ICD10CM|Poisoning by antiviral drugs, undetermined|Poisoning by antiviral drugs, undetermined +C2876926|T037|AB|T37.5X4A|ICD10CM|Poisoning by antiviral drugs, undetermined, init encntr|Poisoning by antiviral drugs, undetermined, init encntr +C2876926|T037|PT|T37.5X4A|ICD10CM|Poisoning by antiviral drugs, undetermined, initial encounter|Poisoning by antiviral drugs, undetermined, initial encounter +C2876927|T037|AB|T37.5X4D|ICD10CM|Poisoning by antiviral drugs, undetermined, subs encntr|Poisoning by antiviral drugs, undetermined, subs encntr +C2876927|T037|PT|T37.5X4D|ICD10CM|Poisoning by antiviral drugs, undetermined, subsequent encounter|Poisoning by antiviral drugs, undetermined, subsequent encounter +C2876928|T037|AB|T37.5X4S|ICD10CM|Poisoning by antiviral drugs, undetermined, sequela|Poisoning by antiviral drugs, undetermined, sequela +C2876928|T037|PT|T37.5X4S|ICD10CM|Poisoning by antiviral drugs, undetermined, sequela|Poisoning by antiviral drugs, undetermined, sequela +C2876929|T037|AB|T37.5X5|ICD10CM|Adverse effect of antiviral drugs|Adverse effect of antiviral drugs +C2876929|T037|HT|T37.5X5|ICD10CM|Adverse effect of antiviral drugs|Adverse effect of antiviral drugs +C2876930|T037|AB|T37.5X5A|ICD10CM|Adverse effect of antiviral drugs, initial encounter|Adverse effect of antiviral drugs, initial encounter +C2876930|T037|PT|T37.5X5A|ICD10CM|Adverse effect of antiviral drugs, initial encounter|Adverse effect of antiviral drugs, initial encounter +C2876931|T037|AB|T37.5X5D|ICD10CM|Adverse effect of antiviral drugs, subsequent encounter|Adverse effect of antiviral drugs, subsequent encounter +C2876931|T037|PT|T37.5X5D|ICD10CM|Adverse effect of antiviral drugs, subsequent encounter|Adverse effect of antiviral drugs, subsequent encounter +C2876932|T037|AB|T37.5X5S|ICD10CM|Adverse effect of antiviral drugs, sequela|Adverse effect of antiviral drugs, sequela +C2876932|T037|PT|T37.5X5S|ICD10CM|Adverse effect of antiviral drugs, sequela|Adverse effect of antiviral drugs, sequela +C2876933|T037|AB|T37.5X6|ICD10CM|Underdosing of antiviral drugs|Underdosing of antiviral drugs +C2876933|T037|HT|T37.5X6|ICD10CM|Underdosing of antiviral drugs|Underdosing of antiviral drugs +C2876934|T037|AB|T37.5X6A|ICD10CM|Underdosing of antiviral drugs, initial encounter|Underdosing of antiviral drugs, initial encounter +C2876934|T037|PT|T37.5X6A|ICD10CM|Underdosing of antiviral drugs, initial encounter|Underdosing of antiviral drugs, initial encounter +C2876935|T037|AB|T37.5X6D|ICD10CM|Underdosing of antiviral drugs, subsequent encounter|Underdosing of antiviral drugs, subsequent encounter +C2876935|T037|PT|T37.5X6D|ICD10CM|Underdosing of antiviral drugs, subsequent encounter|Underdosing of antiviral drugs, subsequent encounter +C2876936|T037|AB|T37.5X6S|ICD10CM|Underdosing of antiviral drugs, sequela|Underdosing of antiviral drugs, sequela +C2876936|T037|PT|T37.5X6S|ICD10CM|Underdosing of antiviral drugs, sequela|Underdosing of antiviral drugs, sequela +C0478429|T037|PS|T37.8|ICD10|Other specified systemic anti-infectives and antiparasitics|Other specified systemic anti-infectives and antiparasitics +C0478429|T037|PX|T37.8|ICD10|Poisoning by other specified systemic anti-infectives and antiparasitics|Poisoning by other specified systemic anti-infectives and antiparasitics +C2876937|T037|ET|T37.8|ICD10CM|Poisoning by, adverse effect of and underdosing of hydroxyquinoline derivatives|Poisoning by, adverse effect of and underdosing of hydroxyquinoline derivatives +C2876938|T037|AB|T37.8|ICD10CM|Systemic anti-infectives and antiparasitics|Systemic anti-infectives and antiparasitics +C2876938|T037|AB|T37.8X|ICD10CM|Systemic anti-infectives and antiparasitics|Systemic anti-infectives and antiparasitics +C2876939|T037|AB|T37.8X1|ICD10CM|Poisoning by oth systemic anti-infect/parasit, accidental|Poisoning by oth systemic anti-infect/parasit, accidental +C0478429|T037|ET|T37.8X1|ICD10CM|Poisoning by other specified systemic anti-infectives and antiparasitics NOS|Poisoning by other specified systemic anti-infectives and antiparasitics NOS +C2876939|T037|HT|T37.8X1|ICD10CM|Poisoning by other specified systemic anti-infectives and antiparasitics, accidental (unintentional)|Poisoning by other specified systemic anti-infectives and antiparasitics, accidental (unintentional) +C2876940|T037|AB|T37.8X1A|ICD10CM|Poisoning by oth systemic anti-infect/parasit, acc, init|Poisoning by oth systemic anti-infect/parasit, acc, init +C2876941|T037|AB|T37.8X1D|ICD10CM|Poisoning by oth systemic anti-infect/parasit, acc, subs|Poisoning by oth systemic anti-infect/parasit, acc, subs +C2876942|T037|AB|T37.8X1S|ICD10CM|Poisoning by oth systemic anti-infect/parasit, acc, sequela|Poisoning by oth systemic anti-infect/parasit, acc, sequela +C2876943|T037|AB|T37.8X2|ICD10CM|Poisoning by oth systemic anti-infect/parasit, self-harm|Poisoning by oth systemic anti-infect/parasit, self-harm +C2876943|T037|HT|T37.8X2|ICD10CM|Poisoning by other specified systemic anti-infectives and antiparasitics, intentional self-harm|Poisoning by other specified systemic anti-infectives and antiparasitics, intentional self-harm +C2876944|T037|AB|T37.8X2A|ICD10CM|Poisn by oth systemic anti-infect/parasit, self-harm, init|Poisn by oth systemic anti-infect/parasit, self-harm, init +C2876945|T037|AB|T37.8X2D|ICD10CM|Poisn by oth systemic anti-infect/parasit, self-harm, subs|Poisn by oth systemic anti-infect/parasit, self-harm, subs +C2876946|T037|AB|T37.8X2S|ICD10CM|Poisn by oth systemic anti-infect/parasit, slf-hrm, sequela|Poisn by oth systemic anti-infect/parasit, slf-hrm, sequela +C2876947|T037|AB|T37.8X3|ICD10CM|Poisoning by oth systemic anti-infect/parasit, assault|Poisoning by oth systemic anti-infect/parasit, assault +C2876947|T037|HT|T37.8X3|ICD10CM|Poisoning by other specified systemic anti-infectives and antiparasitics, assault|Poisoning by other specified systemic anti-infectives and antiparasitics, assault +C2876948|T037|AB|T37.8X3A|ICD10CM|Poisoning by oth systemic anti-infect/parasit, assault, init|Poisoning by oth systemic anti-infect/parasit, assault, init +C2876948|T037|PT|T37.8X3A|ICD10CM|Poisoning by other specified systemic anti-infectives and antiparasitics, assault, initial encounter|Poisoning by other specified systemic anti-infectives and antiparasitics, assault, initial encounter +C2876949|T037|AB|T37.8X3D|ICD10CM|Poisoning by oth systemic anti-infect/parasit, assault, subs|Poisoning by oth systemic anti-infect/parasit, assault, subs +C2876950|T037|AB|T37.8X3S|ICD10CM|Poisn by oth systemic anti-infect/parasit, assault, sequela|Poisn by oth systemic anti-infect/parasit, assault, sequela +C2876950|T037|PT|T37.8X3S|ICD10CM|Poisoning by other specified systemic anti-infectives and antiparasitics, assault, sequela|Poisoning by other specified systemic anti-infectives and antiparasitics, assault, sequela +C2876951|T037|AB|T37.8X4|ICD10CM|Poisoning by oth systemic anti-infect/parasit, undetermined|Poisoning by oth systemic anti-infect/parasit, undetermined +C2876951|T037|HT|T37.8X4|ICD10CM|Poisoning by other specified systemic anti-infectives and antiparasitics, undetermined|Poisoning by other specified systemic anti-infectives and antiparasitics, undetermined +C2876952|T037|AB|T37.8X4A|ICD10CM|Poisoning by oth systemic anti-infect/parasit, undet, init|Poisoning by oth systemic anti-infect/parasit, undet, init +C2876953|T037|AB|T37.8X4D|ICD10CM|Poisoning by oth systemic anti-infect/parasit, undet, subs|Poisoning by oth systemic anti-infect/parasit, undet, subs +C2876954|T037|AB|T37.8X4S|ICD10CM|Poisn by oth systemic anti-infect/parasit, undet, sequela|Poisn by oth systemic anti-infect/parasit, undet, sequela +C2876954|T037|PT|T37.8X4S|ICD10CM|Poisoning by other specified systemic anti-infectives and antiparasitics, undetermined, sequela|Poisoning by other specified systemic anti-infectives and antiparasitics, undetermined, sequela +C2876955|T037|HT|T37.8X5|ICD10CM|Adverse effect of other specified systemic anti-infectives and antiparasitics|Adverse effect of other specified systemic anti-infectives and antiparasitics +C2876955|T037|AB|T37.8X5|ICD10CM|Adverse effect of systemic anti-infect/parasit|Adverse effect of systemic anti-infect/parasit +C2876956|T037|PT|T37.8X5A|ICD10CM|Adverse effect of other specified systemic anti-infectives and antiparasitics, initial encounter|Adverse effect of other specified systemic anti-infectives and antiparasitics, initial encounter +C2876956|T037|AB|T37.8X5A|ICD10CM|Adverse effect of systemic anti-infect/parasit, init|Adverse effect of systemic anti-infect/parasit, init +C2876957|T037|PT|T37.8X5D|ICD10CM|Adverse effect of other specified systemic anti-infectives and antiparasitics, subsequent encounter|Adverse effect of other specified systemic anti-infectives and antiparasitics, subsequent encounter +C2876957|T037|AB|T37.8X5D|ICD10CM|Adverse effect of systemic anti-infect/parasit, subs|Adverse effect of systemic anti-infect/parasit, subs +C2876958|T037|PT|T37.8X5S|ICD10CM|Adverse effect of other specified systemic anti-infectives and antiparasitics, sequela|Adverse effect of other specified systemic anti-infectives and antiparasitics, sequela +C2876958|T037|AB|T37.8X5S|ICD10CM|Adverse effect of systemic anti-infect/parasit, sequela|Adverse effect of systemic anti-infect/parasit, sequela +C2876959|T037|HT|T37.8X6|ICD10CM|Underdosing of other specified systemic anti-infectives and antiparasitics|Underdosing of other specified systemic anti-infectives and antiparasitics +C2876959|T037|AB|T37.8X6|ICD10CM|Underdosing of systemic anti-infectives and antiparasitics|Underdosing of systemic anti-infectives and antiparasitics +C2876960|T037|PT|T37.8X6A|ICD10CM|Underdosing of other specified systemic anti-infectives and antiparasitics, initial encounter|Underdosing of other specified systemic anti-infectives and antiparasitics, initial encounter +C2876960|T037|AB|T37.8X6A|ICD10CM|Underdosing of systemic anti-infect/parasit, init|Underdosing of systemic anti-infect/parasit, init +C2876961|T037|PT|T37.8X6D|ICD10CM|Underdosing of other specified systemic anti-infectives and antiparasitics, subsequent encounter|Underdosing of other specified systemic anti-infectives and antiparasitics, subsequent encounter +C2876961|T037|AB|T37.8X6D|ICD10CM|Underdosing of systemic anti-infect/parasit, subs|Underdosing of systemic anti-infect/parasit, subs +C2876962|T037|PT|T37.8X6S|ICD10CM|Underdosing of other specified systemic anti-infectives and antiparasitics, sequela|Underdosing of other specified systemic anti-infectives and antiparasitics, sequela +C2876962|T037|AB|T37.8X6S|ICD10CM|Underdosing of systemic anti-infect/parasit, sequela|Underdosing of systemic anti-infect/parasit, sequela +C0496965|T037|PX|T37.9|ICD10|Poisoning by systemic anti-infective and antiparasitic, unspecified|Poisoning by systemic anti-infective and antiparasitic, unspecified +C0496965|T037|PS|T37.9|ICD10|Systemic anti-infective and antiparasitic, unspecified|Systemic anti-infective and antiparasitic, unspecified +C2876963|T037|AB|T37.9|ICD10CM|Unsp systemic anti-infective and antiparasitics|Unsp systemic anti-infective and antiparasitics +C2876965|T037|AB|T37.91|ICD10CM|Poisoning by unsp systemic anti-infect and antiparastc, acc|Poisoning by unsp systemic anti-infect and antiparastc, acc +C2876965|T037|HT|T37.91|ICD10CM|Poisoning by unspecified systemic anti-infective and antiparasitics, accidental (unintentional)|Poisoning by unspecified systemic anti-infective and antiparasitics, accidental (unintentional) +C2876964|T037|ET|T37.91|ICD10CM|Poisoning by, adverse effect of and underdosing of systemic anti-infective and antiparasitics NOS|Poisoning by, adverse effect of and underdosing of systemic anti-infective and antiparasitics NOS +C2876966|T037|AB|T37.91XA|ICD10CM|Poisn by unsp sys anti-infect and antiparastc, acc, init|Poisn by unsp sys anti-infect and antiparastc, acc, init +C2876967|T037|AB|T37.91XD|ICD10CM|Poisn by unsp sys anti-infect and antiparastc, acc, subs|Poisn by unsp sys anti-infect and antiparastc, acc, subs +C2876968|T037|AB|T37.91XS|ICD10CM|Poisn by unsp sys anti-infect and antiparastc, acc, sequela|Poisn by unsp sys anti-infect and antiparastc, acc, sequela +C2876969|T037|AB|T37.92|ICD10CM|Poisn by unsp systemic anti-infect and antiparastc, slf-hrm|Poisn by unsp systemic anti-infect and antiparastc, slf-hrm +C2876969|T037|HT|T37.92|ICD10CM|Poisoning by unspecified systemic anti-infective and antiparasitics, intentional self-harm|Poisoning by unspecified systemic anti-infective and antiparasitics, intentional self-harm +C2876970|T037|AB|T37.92XA|ICD10CM|Poisn by unsp sys anti-infect and antiparastc, slf-hrm, init|Poisn by unsp sys anti-infect and antiparastc, slf-hrm, init +C2876971|T037|AB|T37.92XD|ICD10CM|Poisn by unsp sys anti-infect and antiparastc, slf-hrm, subs|Poisn by unsp sys anti-infect and antiparastc, slf-hrm, subs +C2876972|T037|AB|T37.92XS|ICD10CM|Poisn by unsp sys anti-infect and antiparastc, slf-hrm, sqla|Poisn by unsp sys anti-infect and antiparastc, slf-hrm, sqla +C2876972|T037|PT|T37.92XS|ICD10CM|Poisoning by unspecified systemic anti-infective and antiparasitics, intentional self-harm, sequela|Poisoning by unspecified systemic anti-infective and antiparasitics, intentional self-harm, sequela +C2876973|T037|AB|T37.93|ICD10CM|Poisn by unsp systemic anti-infect and antiparastc, assault|Poisn by unsp systemic anti-infect and antiparastc, assault +C2876973|T037|HT|T37.93|ICD10CM|Poisoning by unspecified systemic anti-infective and antiparasitics, assault|Poisoning by unspecified systemic anti-infective and antiparasitics, assault +C2876974|T037|AB|T37.93XA|ICD10CM|Poisn by unsp sys anti-infect and antiparastc, assault, init|Poisn by unsp sys anti-infect and antiparastc, assault, init +C2876974|T037|PT|T37.93XA|ICD10CM|Poisoning by unspecified systemic anti-infective and antiparasitics, assault, initial encounter|Poisoning by unspecified systemic anti-infective and antiparasitics, assault, initial encounter +C2876975|T037|AB|T37.93XD|ICD10CM|Poisn by unsp sys anti-infect and antiparastc, assault, subs|Poisn by unsp sys anti-infect and antiparastc, assault, subs +C2876975|T037|PT|T37.93XD|ICD10CM|Poisoning by unspecified systemic anti-infective and antiparasitics, assault, subsequent encounter|Poisoning by unspecified systemic anti-infective and antiparasitics, assault, subsequent encounter +C2876976|T037|AB|T37.93XS|ICD10CM|Poisn by unsp sys anti-infect and antiparastc, asslt, sqla|Poisn by unsp sys anti-infect and antiparastc, asslt, sqla +C2876976|T037|PT|T37.93XS|ICD10CM|Poisoning by unspecified systemic anti-infective and antiparasitics, assault, sequela|Poisoning by unspecified systemic anti-infective and antiparasitics, assault, sequela +C2876977|T037|AB|T37.94|ICD10CM|Poisn by unsp systemic anti-infect and antiparastc, undet|Poisn by unsp systemic anti-infect and antiparastc, undet +C2876977|T037|HT|T37.94|ICD10CM|Poisoning by unspecified systemic anti-infective and antiparasitics, undetermined|Poisoning by unspecified systemic anti-infective and antiparasitics, undetermined +C2876978|T037|AB|T37.94XA|ICD10CM|Poisn by unsp sys anti-infect and antiparastc, undet, init|Poisn by unsp sys anti-infect and antiparastc, undet, init +C2876978|T037|PT|T37.94XA|ICD10CM|Poisoning by unspecified systemic anti-infective and antiparasitics, undetermined, initial encounter|Poisoning by unspecified systemic anti-infective and antiparasitics, undetermined, initial encounter +C2876979|T037|AB|T37.94XD|ICD10CM|Poisn by unsp sys anti-infect and antiparastc, undet, subs|Poisn by unsp sys anti-infect and antiparastc, undet, subs +C2876980|T037|AB|T37.94XS|ICD10CM|Poisn by unsp sys anti-infect and antiparastc, undet, sqla|Poisn by unsp sys anti-infect and antiparastc, undet, sqla +C2876980|T037|PT|T37.94XS|ICD10CM|Poisoning by unspecified systemic anti-infective and antiparasitics, undetermined, sequela|Poisoning by unspecified systemic anti-infective and antiparasitics, undetermined, sequela +C2876981|T037|AB|T37.95|ICD10CM|Adverse effect of unsp sys anti-infect and antiparasitic|Adverse effect of unsp sys anti-infect and antiparasitic +C2876981|T037|HT|T37.95|ICD10CM|Adverse effect of unspecified systemic anti-infective and antiparasitic|Adverse effect of unspecified systemic anti-infective and antiparasitic +C2876982|T037|PT|T37.95XA|ICD10CM|Adverse effect of unspecified systemic anti-infective and antiparasitic, initial encounter|Adverse effect of unspecified systemic anti-infective and antiparasitic, initial encounter +C2876982|T037|AB|T37.95XA|ICD10CM|Advrs effect of unsp sys anti-infect and antiparasitic, init|Advrs effect of unsp sys anti-infect and antiparasitic, init +C2876983|T037|PT|T37.95XD|ICD10CM|Adverse effect of unspecified systemic anti-infective and antiparasitic, subsequent encounter|Adverse effect of unspecified systemic anti-infective and antiparasitic, subsequent encounter +C2876983|T037|AB|T37.95XD|ICD10CM|Advrs effect of unsp sys anti-infect and antiparasitic, subs|Advrs effect of unsp sys anti-infect and antiparasitic, subs +C2876984|T037|PT|T37.95XS|ICD10CM|Adverse effect of unspecified systemic anti-infective and antiparasitic, sequela|Adverse effect of unspecified systemic anti-infective and antiparasitic, sequela +C2876984|T037|AB|T37.95XS|ICD10CM|Advrs effect of unsp sys anti-infect and antiparasitic, sqla|Advrs effect of unsp sys anti-infect and antiparasitic, sqla +C2876985|T037|AB|T37.96|ICD10CM|Underdosing of unsp systemic anti-infect/parasit|Underdosing of unsp systemic anti-infect/parasit +C2876985|T037|HT|T37.96|ICD10CM|Underdosing of unspecified systemic anti-infectives and antiparasitics|Underdosing of unspecified systemic anti-infectives and antiparasitics +C2876986|T037|AB|T37.96XA|ICD10CM|Underdosing of unsp systemic anti-infect/parasit, init|Underdosing of unsp systemic anti-infect/parasit, init +C2876986|T037|PT|T37.96XA|ICD10CM|Underdosing of unspecified systemic anti-infectives and antiparasitics, initial encounter|Underdosing of unspecified systemic anti-infectives and antiparasitics, initial encounter +C2876987|T037|AB|T37.96XD|ICD10CM|Underdosing of unsp systemic anti-infect/parasit, subs|Underdosing of unsp systemic anti-infect/parasit, subs +C2876987|T037|PT|T37.96XD|ICD10CM|Underdosing of unspecified systemic anti-infectives and antiparasitics, subsequent encounter|Underdosing of unspecified systemic anti-infectives and antiparasitics, subsequent encounter +C2876988|T037|AB|T37.96XS|ICD10CM|Underdosing of unsp systemic anti-infect/parasit, sequela|Underdosing of unsp systemic anti-infect/parasit, sequela +C2876988|T037|PT|T37.96XS|ICD10CM|Underdosing of unspecified systemic anti-infectives and antiparasitics, sequela|Underdosing of unspecified systemic anti-infectives and antiparasitics, sequela +C2876989|T037|AB|T38|ICD10CM|Hormones and their synthetic substitutes and antag, NEC|Hormones and their synthetic substitutes and antag, NEC +C0694532|T037|HT|T38|ICD10|Poisoning by hormones and their synthetic substitutes and antagonists, not elsewhere classified|Poisoning by hormones and their synthetic substitutes and antagonists, not elsewhere classified +C0475574|T037|PS|T38.0|ICD10AE|Glucocorticoids and synthetic analogs|Glucocorticoids and synthetic analogs +C0475574|T037|PS|T38.0|ICD10|Glucocorticoids and synthetic analogues|Glucocorticoids and synthetic analogues +C2876990|T037|AB|T38.0|ICD10CM|Glucocorticoids and synthetic analogues|Glucocorticoids and synthetic analogues +C0475574|T037|PX|T38.0|ICD10AE|Poisoning by glucocorticoids and synthetic analogs|Poisoning by glucocorticoids and synthetic analogs +C0475574|T037|PX|T38.0|ICD10|Poisoning by glucocorticoids and synthetic analogues|Poisoning by glucocorticoids and synthetic analogues +C2876990|T037|HT|T38.0|ICD10CM|Poisoning by, adverse effect of and underdosing of glucocorticoids and synthetic analogues|Poisoning by, adverse effect of and underdosing of glucocorticoids and synthetic analogues +C2876990|T037|AB|T38.0X|ICD10CM|Glucocorticoids and synthetic analogues|Glucocorticoids and synthetic analogues +C2876990|T037|HT|T38.0X|ICD10CM|Poisoning by, adverse effect of and underdosing of glucocorticoids and synthetic analogues|Poisoning by, adverse effect of and underdosing of glucocorticoids and synthetic analogues +C2876991|T037|AB|T38.0X1|ICD10CM|Poisoning by glucocort/synth analog, accidental|Poisoning by glucocort/synth analog, accidental +C0475574|T037|ET|T38.0X1|ICD10CM|Poisoning by glucocorticoids and synthetic analogues NOS|Poisoning by glucocorticoids and synthetic analogues NOS +C2876991|T037|HT|T38.0X1|ICD10CM|Poisoning by glucocorticoids and synthetic analogues, accidental (unintentional)|Poisoning by glucocorticoids and synthetic analogues, accidental (unintentional) +C2876992|T037|AB|T38.0X1A|ICD10CM|Poisoning by glucocort/synth analog, accidental, init|Poisoning by glucocort/synth analog, accidental, init +C2876992|T037|PT|T38.0X1A|ICD10CM|Poisoning by glucocorticoids and synthetic analogues, accidental (unintentional), initial encounter|Poisoning by glucocorticoids and synthetic analogues, accidental (unintentional), initial encounter +C2876993|T037|AB|T38.0X1D|ICD10CM|Poisoning by glucocort/synth analog, accidental, subs|Poisoning by glucocort/synth analog, accidental, subs +C2876994|T037|AB|T38.0X1S|ICD10CM|Poisoning by glucocort/synth analog, accidental, sequela|Poisoning by glucocort/synth analog, accidental, sequela +C2876994|T037|PT|T38.0X1S|ICD10CM|Poisoning by glucocorticoids and synthetic analogues, accidental (unintentional), sequela|Poisoning by glucocorticoids and synthetic analogues, accidental (unintentional), sequela +C2876995|T037|AB|T38.0X2|ICD10CM|Poisoning by glucocort/synth analog, intentional self-harm|Poisoning by glucocort/synth analog, intentional self-harm +C2876995|T037|HT|T38.0X2|ICD10CM|Poisoning by glucocorticoids and synthetic analogues, intentional self-harm|Poisoning by glucocorticoids and synthetic analogues, intentional self-harm +C2876996|T037|AB|T38.0X2A|ICD10CM|Poisoning by glucocort/synth analog, self-harm, init|Poisoning by glucocort/synth analog, self-harm, init +C2876996|T037|PT|T38.0X2A|ICD10CM|Poisoning by glucocorticoids and synthetic analogues, intentional self-harm, initial encounter|Poisoning by glucocorticoids and synthetic analogues, intentional self-harm, initial encounter +C2876997|T037|AB|T38.0X2D|ICD10CM|Poisoning by glucocort/synth analog, self-harm, subs|Poisoning by glucocort/synth analog, self-harm, subs +C2876997|T037|PT|T38.0X2D|ICD10CM|Poisoning by glucocorticoids and synthetic analogues, intentional self-harm, subsequent encounter|Poisoning by glucocorticoids and synthetic analogues, intentional self-harm, subsequent encounter +C2876998|T037|AB|T38.0X2S|ICD10CM|Poisoning by glucocort/synth analog, self-harm, sequela|Poisoning by glucocort/synth analog, self-harm, sequela +C2876998|T037|PT|T38.0X2S|ICD10CM|Poisoning by glucocorticoids and synthetic analogues, intentional self-harm, sequela|Poisoning by glucocorticoids and synthetic analogues, intentional self-harm, sequela +C2876999|T037|AB|T38.0X3|ICD10CM|Poisoning by glucocort/synth analog, assault|Poisoning by glucocort/synth analog, assault +C2876999|T037|HT|T38.0X3|ICD10CM|Poisoning by glucocorticoids and synthetic analogues, assault|Poisoning by glucocorticoids and synthetic analogues, assault +C2877000|T037|AB|T38.0X3A|ICD10CM|Poisoning by glucocort/synth analog, assault, init|Poisoning by glucocort/synth analog, assault, init +C2877000|T037|PT|T38.0X3A|ICD10CM|Poisoning by glucocorticoids and synthetic analogues, assault, initial encounter|Poisoning by glucocorticoids and synthetic analogues, assault, initial encounter +C2877001|T037|AB|T38.0X3D|ICD10CM|Poisoning by glucocort/synth analog, assault, subs|Poisoning by glucocort/synth analog, assault, subs +C2877001|T037|PT|T38.0X3D|ICD10CM|Poisoning by glucocorticoids and synthetic analogues, assault, subsequent encounter|Poisoning by glucocorticoids and synthetic analogues, assault, subsequent encounter +C2877002|T037|AB|T38.0X3S|ICD10CM|Poisoning by glucocort/synth analog, assault, sequela|Poisoning by glucocort/synth analog, assault, sequela +C2877002|T037|PT|T38.0X3S|ICD10CM|Poisoning by glucocorticoids and synthetic analogues, assault, sequela|Poisoning by glucocorticoids and synthetic analogues, assault, sequela +C2877003|T037|AB|T38.0X4|ICD10CM|Poisoning by glucocort/synth analog, undetermined|Poisoning by glucocort/synth analog, undetermined +C2877003|T037|HT|T38.0X4|ICD10CM|Poisoning by glucocorticoids and synthetic analogues, undetermined|Poisoning by glucocorticoids and synthetic analogues, undetermined +C2877004|T037|AB|T38.0X4A|ICD10CM|Poisoning by glucocort/synth analog, undetermined, init|Poisoning by glucocort/synth analog, undetermined, init +C2877004|T037|PT|T38.0X4A|ICD10CM|Poisoning by glucocorticoids and synthetic analogues, undetermined, initial encounter|Poisoning by glucocorticoids and synthetic analogues, undetermined, initial encounter +C2877005|T037|AB|T38.0X4D|ICD10CM|Poisoning by glucocort/synth analog, undetermined, subs|Poisoning by glucocort/synth analog, undetermined, subs +C2877005|T037|PT|T38.0X4D|ICD10CM|Poisoning by glucocorticoids and synthetic analogues, undetermined, subsequent encounter|Poisoning by glucocorticoids and synthetic analogues, undetermined, subsequent encounter +C2877006|T037|AB|T38.0X4S|ICD10CM|Poisoning by glucocort/synth analog, undetermined, sequela|Poisoning by glucocort/synth analog, undetermined, sequela +C2877006|T037|PT|T38.0X4S|ICD10CM|Poisoning by glucocorticoids and synthetic analogues, undetermined, sequela|Poisoning by glucocorticoids and synthetic analogues, undetermined, sequela +C2877007|T037|AB|T38.0X5|ICD10CM|Adverse effect of glucocorticoids and synthetic analogues|Adverse effect of glucocorticoids and synthetic analogues +C2877007|T037|HT|T38.0X5|ICD10CM|Adverse effect of glucocorticoids and synthetic analogues|Adverse effect of glucocorticoids and synthetic analogues +C2877008|T037|AB|T38.0X5A|ICD10CM|Adverse effect of glucocort/synth analog, init|Adverse effect of glucocort/synth analog, init +C2877008|T037|PT|T38.0X5A|ICD10CM|Adverse effect of glucocorticoids and synthetic analogues, initial encounter|Adverse effect of glucocorticoids and synthetic analogues, initial encounter +C2877009|T037|AB|T38.0X5D|ICD10CM|Adverse effect of glucocort/synth analog, subs|Adverse effect of glucocort/synth analog, subs +C2877009|T037|PT|T38.0X5D|ICD10CM|Adverse effect of glucocorticoids and synthetic analogues, subsequent encounter|Adverse effect of glucocorticoids and synthetic analogues, subsequent encounter +C2877010|T037|AB|T38.0X5S|ICD10CM|Adverse effect of glucocort/synth analog, sequela|Adverse effect of glucocort/synth analog, sequela +C2877010|T037|PT|T38.0X5S|ICD10CM|Adverse effect of glucocorticoids and synthetic analogues, sequela|Adverse effect of glucocorticoids and synthetic analogues, sequela +C2877011|T037|AB|T38.0X6|ICD10CM|Underdosing of glucocorticoids and synthetic analogues|Underdosing of glucocorticoids and synthetic analogues +C2877011|T037|HT|T38.0X6|ICD10CM|Underdosing of glucocorticoids and synthetic analogues|Underdosing of glucocorticoids and synthetic analogues +C2877012|T037|AB|T38.0X6A|ICD10CM|Underdosing of glucocorticoids and synthetic analogues, init|Underdosing of glucocorticoids and synthetic analogues, init +C2877012|T037|PT|T38.0X6A|ICD10CM|Underdosing of glucocorticoids and synthetic analogues, initial encounter|Underdosing of glucocorticoids and synthetic analogues, initial encounter +C2877013|T037|AB|T38.0X6D|ICD10CM|Underdosing of glucocorticoids and synthetic analogues, subs|Underdosing of glucocorticoids and synthetic analogues, subs +C2877013|T037|PT|T38.0X6D|ICD10CM|Underdosing of glucocorticoids and synthetic analogues, subsequent encounter|Underdosing of glucocorticoids and synthetic analogues, subsequent encounter +C2877014|T037|AB|T38.0X6S|ICD10CM|Underdosing of glucocort/synth analog, sequela|Underdosing of glucocort/synth analog, sequela +C2877014|T037|PT|T38.0X6S|ICD10CM|Underdosing of glucocorticoids and synthetic analogues, sequela|Underdosing of glucocorticoids and synthetic analogues, sequela +C0496966|T037|PX|T38.1|ICD10|Poisoning by thyroid hormones and substitutes|Poisoning by thyroid hormones and substitutes +C2877015|T037|HT|T38.1|ICD10CM|Poisoning by, adverse effect of and underdosing of thyroid hormones and substitutes|Poisoning by, adverse effect of and underdosing of thyroid hormones and substitutes +C2877015|T037|AB|T38.1|ICD10CM|Thyroid hormones and substitutes|Thyroid hormones and substitutes +C0496966|T037|PS|T38.1|ICD10|Thyroid hormones and substitutes|Thyroid hormones and substitutes +C2877015|T037|HT|T38.1X|ICD10CM|Poisoning by, adverse effect of and underdosing of thyroid hormones and substitutes|Poisoning by, adverse effect of and underdosing of thyroid hormones and substitutes +C2877015|T037|AB|T38.1X|ICD10CM|Thyroid hormones and substitutes|Thyroid hormones and substitutes +C0496966|T037|ET|T38.1X1|ICD10CM|Poisoning by thyroid hormones and substitutes NOS|Poisoning by thyroid hormones and substitutes NOS +C2877016|T037|AB|T38.1X1|ICD10CM|Poisoning by thyroid hormones and substitutes, accidental|Poisoning by thyroid hormones and substitutes, accidental +C2877016|T037|HT|T38.1X1|ICD10CM|Poisoning by thyroid hormones and substitutes, accidental (unintentional)|Poisoning by thyroid hormones and substitutes, accidental (unintentional) +C2877017|T037|AB|T38.1X1A|ICD10CM|Poisoning by thyroid hormones and sub, accidental, init|Poisoning by thyroid hormones and sub, accidental, init +C2877017|T037|PT|T38.1X1A|ICD10CM|Poisoning by thyroid hormones and substitutes, accidental (unintentional), initial encounter|Poisoning by thyroid hormones and substitutes, accidental (unintentional), initial encounter +C2877018|T037|AB|T38.1X1D|ICD10CM|Poisoning by thyroid hormones and sub, accidental, subs|Poisoning by thyroid hormones and sub, accidental, subs +C2877018|T037|PT|T38.1X1D|ICD10CM|Poisoning by thyroid hormones and substitutes, accidental (unintentional), subsequent encounter|Poisoning by thyroid hormones and substitutes, accidental (unintentional), subsequent encounter +C2877019|T037|AB|T38.1X1S|ICD10CM|Poisoning by thyroid hormones and sub, accidental, sequela|Poisoning by thyroid hormones and sub, accidental, sequela +C2877019|T037|PT|T38.1X1S|ICD10CM|Poisoning by thyroid hormones and substitutes, accidental (unintentional), sequela|Poisoning by thyroid hormones and substitutes, accidental (unintentional), sequela +C2877020|T037|HT|T38.1X2|ICD10CM|Poisoning by thyroid hormones and substitutes, intentional self-harm|Poisoning by thyroid hormones and substitutes, intentional self-harm +C2877020|T037|AB|T38.1X2|ICD10CM|Poisoning by thyroid hormones and substitutes, self-harm|Poisoning by thyroid hormones and substitutes, self-harm +C2877021|T037|AB|T38.1X2A|ICD10CM|Poisoning by thyroid hormones and sub, self-harm, init|Poisoning by thyroid hormones and sub, self-harm, init +C2877021|T037|PT|T38.1X2A|ICD10CM|Poisoning by thyroid hormones and substitutes, intentional self-harm, initial encounter|Poisoning by thyroid hormones and substitutes, intentional self-harm, initial encounter +C2877022|T037|AB|T38.1X2D|ICD10CM|Poisoning by thyroid hormones and sub, self-harm, subs|Poisoning by thyroid hormones and sub, self-harm, subs +C2877022|T037|PT|T38.1X2D|ICD10CM|Poisoning by thyroid hormones and substitutes, intentional self-harm, subsequent encounter|Poisoning by thyroid hormones and substitutes, intentional self-harm, subsequent encounter +C2877023|T037|AB|T38.1X2S|ICD10CM|Poisoning by thyroid hormones and sub, self-harm, sequela|Poisoning by thyroid hormones and sub, self-harm, sequela +C2877023|T037|PT|T38.1X2S|ICD10CM|Poisoning by thyroid hormones and substitutes, intentional self-harm, sequela|Poisoning by thyroid hormones and substitutes, intentional self-harm, sequela +C2877024|T037|AB|T38.1X3|ICD10CM|Poisoning by thyroid hormones and substitutes, assault|Poisoning by thyroid hormones and substitutes, assault +C2877024|T037|HT|T38.1X3|ICD10CM|Poisoning by thyroid hormones and substitutes, assault|Poisoning by thyroid hormones and substitutes, assault +C2877025|T037|AB|T38.1X3A|ICD10CM|Poisoning by thyroid hormones and substitutes, assault, init|Poisoning by thyroid hormones and substitutes, assault, init +C2877025|T037|PT|T38.1X3A|ICD10CM|Poisoning by thyroid hormones and substitutes, assault, initial encounter|Poisoning by thyroid hormones and substitutes, assault, initial encounter +C2877026|T037|AB|T38.1X3D|ICD10CM|Poisoning by thyroid hormones and substitutes, assault, subs|Poisoning by thyroid hormones and substitutes, assault, subs +C2877026|T037|PT|T38.1X3D|ICD10CM|Poisoning by thyroid hormones and substitutes, assault, subsequent encounter|Poisoning by thyroid hormones and substitutes, assault, subsequent encounter +C2877027|T037|AB|T38.1X3S|ICD10CM|Poisoning by thyroid hormones and sub, assault, sequela|Poisoning by thyroid hormones and sub, assault, sequela +C2877027|T037|PT|T38.1X3S|ICD10CM|Poisoning by thyroid hormones and substitutes, assault, sequela|Poisoning by thyroid hormones and substitutes, assault, sequela +C2877028|T037|AB|T38.1X4|ICD10CM|Poisoning by thyroid hormones and substitutes, undetermined|Poisoning by thyroid hormones and substitutes, undetermined +C2877028|T037|HT|T38.1X4|ICD10CM|Poisoning by thyroid hormones and substitutes, undetermined|Poisoning by thyroid hormones and substitutes, undetermined +C2877029|T037|AB|T38.1X4A|ICD10CM|Poisoning by thyroid hormones and substitutes, undet, init|Poisoning by thyroid hormones and substitutes, undet, init +C2877029|T037|PT|T38.1X4A|ICD10CM|Poisoning by thyroid hormones and substitutes, undetermined, initial encounter|Poisoning by thyroid hormones and substitutes, undetermined, initial encounter +C2877030|T037|AB|T38.1X4D|ICD10CM|Poisoning by thyroid hormones and substitutes, undet, subs|Poisoning by thyroid hormones and substitutes, undet, subs +C2877030|T037|PT|T38.1X4D|ICD10CM|Poisoning by thyroid hormones and substitutes, undetermined, subsequent encounter|Poisoning by thyroid hormones and substitutes, undetermined, subsequent encounter +C2877031|T037|AB|T38.1X4S|ICD10CM|Poisoning by thyroid hormones and sub, undet, sequela|Poisoning by thyroid hormones and sub, undet, sequela +C2877031|T037|PT|T38.1X4S|ICD10CM|Poisoning by thyroid hormones and substitutes, undetermined, sequela|Poisoning by thyroid hormones and substitutes, undetermined, sequela +C2877032|T037|AB|T38.1X5|ICD10CM|Adverse effect of thyroid hormones and substitutes|Adverse effect of thyroid hormones and substitutes +C2877032|T037|HT|T38.1X5|ICD10CM|Adverse effect of thyroid hormones and substitutes|Adverse effect of thyroid hormones and substitutes +C2877033|T037|AB|T38.1X5A|ICD10CM|Adverse effect of thyroid hormones and substitutes, init|Adverse effect of thyroid hormones and substitutes, init +C2877033|T037|PT|T38.1X5A|ICD10CM|Adverse effect of thyroid hormones and substitutes, initial encounter|Adverse effect of thyroid hormones and substitutes, initial encounter +C2877034|T037|AB|T38.1X5D|ICD10CM|Adverse effect of thyroid hormones and substitutes, subs|Adverse effect of thyroid hormones and substitutes, subs +C2877034|T037|PT|T38.1X5D|ICD10CM|Adverse effect of thyroid hormones and substitutes, subsequent encounter|Adverse effect of thyroid hormones and substitutes, subsequent encounter +C2877035|T037|AB|T38.1X5S|ICD10CM|Adverse effect of thyroid hormones and substitutes, sequela|Adverse effect of thyroid hormones and substitutes, sequela +C2877035|T037|PT|T38.1X5S|ICD10CM|Adverse effect of thyroid hormones and substitutes, sequela|Adverse effect of thyroid hormones and substitutes, sequela +C2877036|T037|AB|T38.1X6|ICD10CM|Underdosing of thyroid hormones and substitutes|Underdosing of thyroid hormones and substitutes +C2877036|T037|HT|T38.1X6|ICD10CM|Underdosing of thyroid hormones and substitutes|Underdosing of thyroid hormones and substitutes +C2877037|T037|AB|T38.1X6A|ICD10CM|Underdosing of thyroid hormones and substitutes, init encntr|Underdosing of thyroid hormones and substitutes, init encntr +C2877037|T037|PT|T38.1X6A|ICD10CM|Underdosing of thyroid hormones and substitutes, initial encounter|Underdosing of thyroid hormones and substitutes, initial encounter +C2877038|T037|AB|T38.1X6D|ICD10CM|Underdosing of thyroid hormones and substitutes, subs encntr|Underdosing of thyroid hormones and substitutes, subs encntr +C2877038|T037|PT|T38.1X6D|ICD10CM|Underdosing of thyroid hormones and substitutes, subsequent encounter|Underdosing of thyroid hormones and substitutes, subsequent encounter +C2877039|T037|AB|T38.1X6S|ICD10CM|Underdosing of thyroid hormones and substitutes, sequela|Underdosing of thyroid hormones and substitutes, sequela +C2877039|T037|PT|T38.1X6S|ICD10CM|Underdosing of thyroid hormones and substitutes, sequela|Underdosing of thyroid hormones and substitutes, sequela +C2877040|T037|AB|T38.2|ICD10CM|Antithyroid drugs|Antithyroid drugs +C0161516|T037|PS|T38.2|ICD10|Antithyroid drugs|Antithyroid drugs +C0161516|T037|PX|T38.2|ICD10|Poisoning by antithyroid drugs|Poisoning by antithyroid drugs +C2877040|T037|HT|T38.2|ICD10CM|Poisoning by, adverse effect of and underdosing of antithyroid drugs|Poisoning by, adverse effect of and underdosing of antithyroid drugs +C2877040|T037|AB|T38.2X|ICD10CM|Antithyroid drugs|Antithyroid drugs +C2877040|T037|HT|T38.2X|ICD10CM|Poisoning by, adverse effect of and underdosing of antithyroid drugs|Poisoning by, adverse effect of and underdosing of antithyroid drugs +C0161516|T037|ET|T38.2X1|ICD10CM|Poisoning by antithyroid drugs NOS|Poisoning by antithyroid drugs NOS +C2877041|T037|AB|T38.2X1|ICD10CM|Poisoning by antithyroid drugs, accidental (unintentional)|Poisoning by antithyroid drugs, accidental (unintentional) +C2877041|T037|HT|T38.2X1|ICD10CM|Poisoning by antithyroid drugs, accidental (unintentional)|Poisoning by antithyroid drugs, accidental (unintentional) +C2877042|T037|PT|T38.2X1A|ICD10CM|Poisoning by antithyroid drugs, accidental (unintentional), initial encounter|Poisoning by antithyroid drugs, accidental (unintentional), initial encounter +C2877042|T037|AB|T38.2X1A|ICD10CM|Poisoning by antithyroid drugs, accidental, init|Poisoning by antithyroid drugs, accidental, init +C2877043|T037|PT|T38.2X1D|ICD10CM|Poisoning by antithyroid drugs, accidental (unintentional), subsequent encounter|Poisoning by antithyroid drugs, accidental (unintentional), subsequent encounter +C2877043|T037|AB|T38.2X1D|ICD10CM|Poisoning by antithyroid drugs, accidental, subs|Poisoning by antithyroid drugs, accidental, subs +C2877044|T037|PT|T38.2X1S|ICD10CM|Poisoning by antithyroid drugs, accidental (unintentional), sequela|Poisoning by antithyroid drugs, accidental (unintentional), sequela +C2877044|T037|AB|T38.2X1S|ICD10CM|Poisoning by antithyroid drugs, accidental, sequela|Poisoning by antithyroid drugs, accidental, sequela +C2877045|T037|AB|T38.2X2|ICD10CM|Poisoning by antithyroid drugs, intentional self-harm|Poisoning by antithyroid drugs, intentional self-harm +C2877045|T037|HT|T38.2X2|ICD10CM|Poisoning by antithyroid drugs, intentional self-harm|Poisoning by antithyroid drugs, intentional self-harm +C2877046|T037|AB|T38.2X2A|ICD10CM|Poisoning by antithyroid drugs, intentional self-harm, init|Poisoning by antithyroid drugs, intentional self-harm, init +C2877046|T037|PT|T38.2X2A|ICD10CM|Poisoning by antithyroid drugs, intentional self-harm, initial encounter|Poisoning by antithyroid drugs, intentional self-harm, initial encounter +C2877047|T037|AB|T38.2X2D|ICD10CM|Poisoning by antithyroid drugs, intentional self-harm, subs|Poisoning by antithyroid drugs, intentional self-harm, subs +C2877047|T037|PT|T38.2X2D|ICD10CM|Poisoning by antithyroid drugs, intentional self-harm, subsequent encounter|Poisoning by antithyroid drugs, intentional self-harm, subsequent encounter +C2877048|T037|PT|T38.2X2S|ICD10CM|Poisoning by antithyroid drugs, intentional self-harm, sequela|Poisoning by antithyroid drugs, intentional self-harm, sequela +C2877048|T037|AB|T38.2X2S|ICD10CM|Poisoning by antithyroid drugs, self-harm, sequela|Poisoning by antithyroid drugs, self-harm, sequela +C2877049|T037|AB|T38.2X3|ICD10CM|Poisoning by antithyroid drugs, assault|Poisoning by antithyroid drugs, assault +C2877049|T037|HT|T38.2X3|ICD10CM|Poisoning by antithyroid drugs, assault|Poisoning by antithyroid drugs, assault +C2877050|T037|AB|T38.2X3A|ICD10CM|Poisoning by antithyroid drugs, assault, initial encounter|Poisoning by antithyroid drugs, assault, initial encounter +C2877050|T037|PT|T38.2X3A|ICD10CM|Poisoning by antithyroid drugs, assault, initial encounter|Poisoning by antithyroid drugs, assault, initial encounter +C2877051|T037|AB|T38.2X3D|ICD10CM|Poisoning by antithyroid drugs, assault, subs encntr|Poisoning by antithyroid drugs, assault, subs encntr +C2877051|T037|PT|T38.2X3D|ICD10CM|Poisoning by antithyroid drugs, assault, subsequent encounter|Poisoning by antithyroid drugs, assault, subsequent encounter +C2877052|T037|AB|T38.2X3S|ICD10CM|Poisoning by antithyroid drugs, assault, sequela|Poisoning by antithyroid drugs, assault, sequela +C2877052|T037|PT|T38.2X3S|ICD10CM|Poisoning by antithyroid drugs, assault, sequela|Poisoning by antithyroid drugs, assault, sequela +C2877053|T037|AB|T38.2X4|ICD10CM|Poisoning by antithyroid drugs, undetermined|Poisoning by antithyroid drugs, undetermined +C2877053|T037|HT|T38.2X4|ICD10CM|Poisoning by antithyroid drugs, undetermined|Poisoning by antithyroid drugs, undetermined +C2877054|T037|AB|T38.2X4A|ICD10CM|Poisoning by antithyroid drugs, undetermined, init encntr|Poisoning by antithyroid drugs, undetermined, init encntr +C2877054|T037|PT|T38.2X4A|ICD10CM|Poisoning by antithyroid drugs, undetermined, initial encounter|Poisoning by antithyroid drugs, undetermined, initial encounter +C2877055|T037|AB|T38.2X4D|ICD10CM|Poisoning by antithyroid drugs, undetermined, subs encntr|Poisoning by antithyroid drugs, undetermined, subs encntr +C2877055|T037|PT|T38.2X4D|ICD10CM|Poisoning by antithyroid drugs, undetermined, subsequent encounter|Poisoning by antithyroid drugs, undetermined, subsequent encounter +C2877056|T037|AB|T38.2X4S|ICD10CM|Poisoning by antithyroid drugs, undetermined, sequela|Poisoning by antithyroid drugs, undetermined, sequela +C2877056|T037|PT|T38.2X4S|ICD10CM|Poisoning by antithyroid drugs, undetermined, sequela|Poisoning by antithyroid drugs, undetermined, sequela +C2877057|T037|AB|T38.2X5|ICD10CM|Adverse effect of antithyroid drugs|Adverse effect of antithyroid drugs +C2877057|T037|HT|T38.2X5|ICD10CM|Adverse effect of antithyroid drugs|Adverse effect of antithyroid drugs +C2877058|T037|AB|T38.2X5A|ICD10CM|Adverse effect of antithyroid drugs, initial encounter|Adverse effect of antithyroid drugs, initial encounter +C2877058|T037|PT|T38.2X5A|ICD10CM|Adverse effect of antithyroid drugs, initial encounter|Adverse effect of antithyroid drugs, initial encounter +C2877059|T037|AB|T38.2X5D|ICD10CM|Adverse effect of antithyroid drugs, subsequent encounter|Adverse effect of antithyroid drugs, subsequent encounter +C2877059|T037|PT|T38.2X5D|ICD10CM|Adverse effect of antithyroid drugs, subsequent encounter|Adverse effect of antithyroid drugs, subsequent encounter +C2877060|T037|AB|T38.2X5S|ICD10CM|Adverse effect of antithyroid drugs, sequela|Adverse effect of antithyroid drugs, sequela +C2877060|T037|PT|T38.2X5S|ICD10CM|Adverse effect of antithyroid drugs, sequela|Adverse effect of antithyroid drugs, sequela +C2877061|T037|AB|T38.2X6|ICD10CM|Underdosing of antithyroid drugs|Underdosing of antithyroid drugs +C2877061|T037|HT|T38.2X6|ICD10CM|Underdosing of antithyroid drugs|Underdosing of antithyroid drugs +C2877062|T037|AB|T38.2X6A|ICD10CM|Underdosing of antithyroid drugs, initial encounter|Underdosing of antithyroid drugs, initial encounter +C2877062|T037|PT|T38.2X6A|ICD10CM|Underdosing of antithyroid drugs, initial encounter|Underdosing of antithyroid drugs, initial encounter +C2877063|T037|AB|T38.2X6D|ICD10CM|Underdosing of antithyroid drugs, subsequent encounter|Underdosing of antithyroid drugs, subsequent encounter +C2877063|T037|PT|T38.2X6D|ICD10CM|Underdosing of antithyroid drugs, subsequent encounter|Underdosing of antithyroid drugs, subsequent encounter +C2877064|T037|AB|T38.2X6S|ICD10CM|Underdosing of antithyroid drugs, sequela|Underdosing of antithyroid drugs, sequela +C2877064|T037|PT|T38.2X6S|ICD10CM|Underdosing of antithyroid drugs, sequela|Underdosing of antithyroid drugs, sequela +C0496967|T037|PS|T38.3|ICD10|Insulin and oral hypoglycaemic [antidiabetic] drugs|Insulin and oral hypoglycaemic [antidiabetic] drugs +C0496967|T037|PS|T38.3|ICD10AE|Insulin and oral hypoglycemic [antidiabetic] drugs|Insulin and oral hypoglycemic [antidiabetic] drugs +C2877065|T037|AB|T38.3|ICD10CM|Insulin and oral hypoglycemic drugs|Insulin and oral hypoglycemic drugs +C0496967|T037|PX|T38.3|ICD10|Poisoning by insulin and oral hypoglycaemic [antidiabetic] drugs|Poisoning by insulin and oral hypoglycaemic [antidiabetic] drugs +C0496967|T037|PX|T38.3|ICD10AE|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs +C2877065|T037|AB|T38.3X|ICD10CM|Insulin and oral hypoglycemic drugs|Insulin and oral hypoglycemic drugs +C0496967|T037|ET|T38.3X1|ICD10CM|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs NOS|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs NOS +C2877066|T037|HT|T38.3X1|ICD10CM|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, accidental (unintentional)|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, accidental (unintentional) +C2877066|T037|AB|T38.3X1|ICD10CM|Poisoning by insulin and oral hypoglycemic drugs, acc|Poisoning by insulin and oral hypoglycemic drugs, acc +C2877067|T037|AB|T38.3X1A|ICD10CM|Poisoning by insulin and oral hypoglycemic drugs, acc, init|Poisoning by insulin and oral hypoglycemic drugs, acc, init +C2877068|T037|AB|T38.3X1D|ICD10CM|Poisoning by insulin and oral hypoglycemic drugs, acc, subs|Poisoning by insulin and oral hypoglycemic drugs, acc, subs +C2877069|T037|AB|T38.3X1S|ICD10CM|Poisn by insulin and oral hypoglycemic drugs, acc, sequela|Poisn by insulin and oral hypoglycemic drugs, acc, sequela +C2877069|T037|PT|T38.3X1S|ICD10CM|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, accidental (unintentional), sequela|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, accidental (unintentional), sequela +C2877070|T037|HT|T38.3X2|ICD10CM|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, intentional self-harm|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, intentional self-harm +C2877070|T037|AB|T38.3X2|ICD10CM|Poisoning by insulin and oral hypoglycemic drugs, self-harm|Poisoning by insulin and oral hypoglycemic drugs, self-harm +C2877071|T037|AB|T38.3X2A|ICD10CM|Poisn by insulin and oral hypoglycemic drugs, slf-hrm, init|Poisn by insulin and oral hypoglycemic drugs, slf-hrm, init +C2877072|T037|AB|T38.3X2D|ICD10CM|Poisn by insulin and oral hypoglycemic drugs, slf-hrm, subs|Poisn by insulin and oral hypoglycemic drugs, slf-hrm, subs +C2877073|T037|AB|T38.3X2S|ICD10CM|Poisn by insulin and oral hypoglycemic drugs, slf-hrm, sqla|Poisn by insulin and oral hypoglycemic drugs, slf-hrm, sqla +C2877073|T037|PT|T38.3X2S|ICD10CM|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, intentional self-harm, sequela|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, intentional self-harm, sequela +C2877074|T037|HT|T38.3X3|ICD10CM|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault +C2877074|T037|AB|T38.3X3|ICD10CM|Poisoning by insulin and oral hypoglycemic drugs, assault|Poisoning by insulin and oral hypoglycemic drugs, assault +C2877075|T037|AB|T38.3X3A|ICD10CM|Poisn by insulin and oral hypoglycemic drugs, assault, init|Poisn by insulin and oral hypoglycemic drugs, assault, init +C2877075|T037|PT|T38.3X3A|ICD10CM|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault, initial encounter|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault, initial encounter +C2877076|T037|AB|T38.3X3D|ICD10CM|Poisn by insulin and oral hypoglycemic drugs, assault, subs|Poisn by insulin and oral hypoglycemic drugs, assault, subs +C2877076|T037|PT|T38.3X3D|ICD10CM|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault, subsequent encounter|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault, subsequent encounter +C2877077|T037|AB|T38.3X3S|ICD10CM|Poisn by insulin and oral hypoglycemic drugs, asslt, sequela|Poisn by insulin and oral hypoglycemic drugs, asslt, sequela +C2877077|T037|PT|T38.3X3S|ICD10CM|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault, sequela|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault, sequela +C2877078|T037|HT|T38.3X4|ICD10CM|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined +C2877078|T037|AB|T38.3X4|ICD10CM|Poisoning by insulin and oral hypoglycemic drugs, undet|Poisoning by insulin and oral hypoglycemic drugs, undet +C2877079|T037|AB|T38.3X4A|ICD10CM|Poisn by insulin and oral hypoglycemic drugs, undet, init|Poisn by insulin and oral hypoglycemic drugs, undet, init +C2877079|T037|PT|T38.3X4A|ICD10CM|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined, initial encounter|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined, initial encounter +C2877080|T037|AB|T38.3X4D|ICD10CM|Poisn by insulin and oral hypoglycemic drugs, undet, subs|Poisn by insulin and oral hypoglycemic drugs, undet, subs +C2877080|T037|PT|T38.3X4D|ICD10CM|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined, subsequent encounter|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined, subsequent encounter +C2877081|T037|AB|T38.3X4S|ICD10CM|Poisn by insulin and oral hypoglycemic drugs, undet, sequela|Poisn by insulin and oral hypoglycemic drugs, undet, sequela +C2877081|T037|PT|T38.3X4S|ICD10CM|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined, sequela|Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined, sequela +C2877082|T037|HT|T38.3X5|ICD10CM|Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs|Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs +C2877082|T037|AB|T38.3X5|ICD10CM|Adverse effect of insulin and oral hypoglycemic drugs|Adverse effect of insulin and oral hypoglycemic drugs +C2877083|T037|PT|T38.3X5A|ICD10CM|Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs, initial encounter|Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs, initial encounter +C2877083|T037|AB|T38.3X5A|ICD10CM|Adverse effect of insulin and oral hypoglycemic drugs, init|Adverse effect of insulin and oral hypoglycemic drugs, init +C2877084|T037|PT|T38.3X5D|ICD10CM|Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs, subsequent encounter|Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs, subsequent encounter +C2877084|T037|AB|T38.3X5D|ICD10CM|Adverse effect of insulin and oral hypoglycemic drugs, subs|Adverse effect of insulin and oral hypoglycemic drugs, subs +C2877085|T037|PT|T38.3X5S|ICD10CM|Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs, sequela|Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs, sequela +C2877085|T037|AB|T38.3X5S|ICD10CM|Advrs effect of insulin and oral hypoglycemic drugs, sequela|Advrs effect of insulin and oral hypoglycemic drugs, sequela +C2877086|T037|HT|T38.3X6|ICD10CM|Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs|Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs +C2877086|T037|AB|T38.3X6|ICD10CM|Underdosing of insulin and oral hypoglycemic drugs|Underdosing of insulin and oral hypoglycemic drugs +C2877087|T037|PT|T38.3X6A|ICD10CM|Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs, initial encounter|Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs, initial encounter +C2877087|T037|AB|T38.3X6A|ICD10CM|Underdosing of insulin and oral hypoglycemic drugs, init|Underdosing of insulin and oral hypoglycemic drugs, init +C2877088|T037|PT|T38.3X6D|ICD10CM|Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs, subsequent encounter|Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs, subsequent encounter +C2877088|T037|AB|T38.3X6D|ICD10CM|Underdosing of insulin and oral hypoglycemic drugs, subs|Underdosing of insulin and oral hypoglycemic drugs, subs +C2877089|T037|PT|T38.3X6S|ICD10CM|Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs, sequela|Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs, sequela +C2877089|T037|AB|T38.3X6S|ICD10CM|Underdosing of insulin and oral hypoglycemic drugs, sequela|Underdosing of insulin and oral hypoglycemic drugs, sequela +C2877091|T037|AB|T38.4|ICD10CM|Oral contraceptives|Oral contraceptives +C0274536|T037|PS|T38.4|ICD10|Oral contraceptives|Oral contraceptives +C0274536|T037|PX|T38.4|ICD10|Poisoning by oral contraceptives|Poisoning by oral contraceptives +C2877091|T037|HT|T38.4|ICD10CM|Poisoning by, adverse effect of and underdosing of oral contraceptives|Poisoning by, adverse effect of and underdosing of oral contraceptives +C2877091|T037|AB|T38.4X|ICD10CM|Oral contraceptives|Oral contraceptives +C2877091|T037|HT|T38.4X|ICD10CM|Poisoning by, adverse effect of and underdosing of oral contraceptives|Poisoning by, adverse effect of and underdosing of oral contraceptives +C0274536|T037|ET|T38.4X1|ICD10CM|Poisoning by oral contraceptives NOS|Poisoning by oral contraceptives NOS +C2877092|T037|AB|T38.4X1|ICD10CM|Poisoning by oral contraceptives, accidental (unintentional)|Poisoning by oral contraceptives, accidental (unintentional) +C2877092|T037|HT|T38.4X1|ICD10CM|Poisoning by oral contraceptives, accidental (unintentional)|Poisoning by oral contraceptives, accidental (unintentional) +C2877093|T037|PT|T38.4X1A|ICD10CM|Poisoning by oral contraceptives, accidental (unintentional), initial encounter|Poisoning by oral contraceptives, accidental (unintentional), initial encounter +C2877093|T037|AB|T38.4X1A|ICD10CM|Poisoning by oral contraceptives, accidental, init|Poisoning by oral contraceptives, accidental, init +C2877094|T037|PT|T38.4X1D|ICD10CM|Poisoning by oral contraceptives, accidental (unintentional), subsequent encounter|Poisoning by oral contraceptives, accidental (unintentional), subsequent encounter +C2877094|T037|AB|T38.4X1D|ICD10CM|Poisoning by oral contraceptives, accidental, subs|Poisoning by oral contraceptives, accidental, subs +C2877095|T037|PT|T38.4X1S|ICD10CM|Poisoning by oral contraceptives, accidental (unintentional), sequela|Poisoning by oral contraceptives, accidental (unintentional), sequela +C2877095|T037|AB|T38.4X1S|ICD10CM|Poisoning by oral contraceptives, accidental, sequela|Poisoning by oral contraceptives, accidental, sequela +C2877096|T037|AB|T38.4X2|ICD10CM|Poisoning by oral contraceptives, intentional self-harm|Poisoning by oral contraceptives, intentional self-harm +C2877096|T037|HT|T38.4X2|ICD10CM|Poisoning by oral contraceptives, intentional self-harm|Poisoning by oral contraceptives, intentional self-harm +C2877097|T037|PT|T38.4X2A|ICD10CM|Poisoning by oral contraceptives, intentional self-harm, initial encounter|Poisoning by oral contraceptives, intentional self-harm, initial encounter +C2877097|T037|AB|T38.4X2A|ICD10CM|Poisoning by oral contraceptives, self-harm, init|Poisoning by oral contraceptives, self-harm, init +C2877098|T037|PT|T38.4X2D|ICD10CM|Poisoning by oral contraceptives, intentional self-harm, subsequent encounter|Poisoning by oral contraceptives, intentional self-harm, subsequent encounter +C2877098|T037|AB|T38.4X2D|ICD10CM|Poisoning by oral contraceptives, self-harm, subs|Poisoning by oral contraceptives, self-harm, subs +C2877099|T037|PT|T38.4X2S|ICD10CM|Poisoning by oral contraceptives, intentional self-harm, sequela|Poisoning by oral contraceptives, intentional self-harm, sequela +C2877099|T037|AB|T38.4X2S|ICD10CM|Poisoning by oral contraceptives, self-harm, sequela|Poisoning by oral contraceptives, self-harm, sequela +C2877100|T037|AB|T38.4X3|ICD10CM|Poisoning by oral contraceptives, assault|Poisoning by oral contraceptives, assault +C2877100|T037|HT|T38.4X3|ICD10CM|Poisoning by oral contraceptives, assault|Poisoning by oral contraceptives, assault +C2877101|T037|AB|T38.4X3A|ICD10CM|Poisoning by oral contraceptives, assault, initial encounter|Poisoning by oral contraceptives, assault, initial encounter +C2877101|T037|PT|T38.4X3A|ICD10CM|Poisoning by oral contraceptives, assault, initial encounter|Poisoning by oral contraceptives, assault, initial encounter +C2877102|T037|AB|T38.4X3D|ICD10CM|Poisoning by oral contraceptives, assault, subs encntr|Poisoning by oral contraceptives, assault, subs encntr +C2877102|T037|PT|T38.4X3D|ICD10CM|Poisoning by oral contraceptives, assault, subsequent encounter|Poisoning by oral contraceptives, assault, subsequent encounter +C2877103|T037|AB|T38.4X3S|ICD10CM|Poisoning by oral contraceptives, assault, sequela|Poisoning by oral contraceptives, assault, sequela +C2877103|T037|PT|T38.4X3S|ICD10CM|Poisoning by oral contraceptives, assault, sequela|Poisoning by oral contraceptives, assault, sequela +C2877104|T037|AB|T38.4X4|ICD10CM|Poisoning by oral contraceptives, undetermined|Poisoning by oral contraceptives, undetermined +C2877104|T037|HT|T38.4X4|ICD10CM|Poisoning by oral contraceptives, undetermined|Poisoning by oral contraceptives, undetermined +C2877105|T037|AB|T38.4X4A|ICD10CM|Poisoning by oral contraceptives, undetermined, init encntr|Poisoning by oral contraceptives, undetermined, init encntr +C2877105|T037|PT|T38.4X4A|ICD10CM|Poisoning by oral contraceptives, undetermined, initial encounter|Poisoning by oral contraceptives, undetermined, initial encounter +C2877106|T037|AB|T38.4X4D|ICD10CM|Poisoning by oral contraceptives, undetermined, subs encntr|Poisoning by oral contraceptives, undetermined, subs encntr +C2877106|T037|PT|T38.4X4D|ICD10CM|Poisoning by oral contraceptives, undetermined, subsequent encounter|Poisoning by oral contraceptives, undetermined, subsequent encounter +C2877107|T037|AB|T38.4X4S|ICD10CM|Poisoning by oral contraceptives, undetermined, sequela|Poisoning by oral contraceptives, undetermined, sequela +C2877107|T037|PT|T38.4X4S|ICD10CM|Poisoning by oral contraceptives, undetermined, sequela|Poisoning by oral contraceptives, undetermined, sequela +C2062919|T046|AB|T38.4X5|ICD10CM|Adverse effect of oral contraceptives|Adverse effect of oral contraceptives +C2062919|T046|HT|T38.4X5|ICD10CM|Adverse effect of oral contraceptives|Adverse effect of oral contraceptives +C2877108|T037|AB|T38.4X5A|ICD10CM|Adverse effect of oral contraceptives, initial encounter|Adverse effect of oral contraceptives, initial encounter +C2877108|T037|PT|T38.4X5A|ICD10CM|Adverse effect of oral contraceptives, initial encounter|Adverse effect of oral contraceptives, initial encounter +C2877109|T037|AB|T38.4X5D|ICD10CM|Adverse effect of oral contraceptives, subsequent encounter|Adverse effect of oral contraceptives, subsequent encounter +C2877109|T037|PT|T38.4X5D|ICD10CM|Adverse effect of oral contraceptives, subsequent encounter|Adverse effect of oral contraceptives, subsequent encounter +C2877110|T037|AB|T38.4X5S|ICD10CM|Adverse effect of oral contraceptives, sequela|Adverse effect of oral contraceptives, sequela +C2877110|T037|PT|T38.4X5S|ICD10CM|Adverse effect of oral contraceptives, sequela|Adverse effect of oral contraceptives, sequela +C2976959|T033|AB|T38.4X6|ICD10CM|Underdosing of oral contraceptives|Underdosing of oral contraceptives +C2976959|T033|HT|T38.4X6|ICD10CM|Underdosing of oral contraceptives|Underdosing of oral contraceptives +C2976960|T033|AB|T38.4X6A|ICD10CM|Underdosing of oral contraceptives, initial encounter|Underdosing of oral contraceptives, initial encounter +C2976960|T033|PT|T38.4X6A|ICD10CM|Underdosing of oral contraceptives, initial encounter|Underdosing of oral contraceptives, initial encounter +C2976961|T033|AB|T38.4X6D|ICD10CM|Underdosing of oral contraceptives, subsequent encounter|Underdosing of oral contraceptives, subsequent encounter +C2976961|T033|PT|T38.4X6D|ICD10CM|Underdosing of oral contraceptives, subsequent encounter|Underdosing of oral contraceptives, subsequent encounter +C2976962|T033|AB|T38.4X6S|ICD10CM|Underdosing of oral contraceptives, sequela|Underdosing of oral contraceptives, sequela +C2976962|T033|PT|T38.4X6S|ICD10CM|Underdosing of oral contraceptives, sequela|Underdosing of oral contraceptives, sequela +C2877116|T037|AB|T38.5|ICD10CM|Estrogens and progestogens|Estrogens and progestogens +C0478430|T037|PS|T38.5|ICD10|Other estrogens and progestogens|Other estrogens and progestogens +C0478430|T037|PX|T38.5|ICD10|Poisoning by other estrogens and progestogens|Poisoning by other estrogens and progestogens +C2877116|T037|HT|T38.5|ICD10CM|Poisoning by, adverse effect of and underdosing of other estrogens and progestogens|Poisoning by, adverse effect of and underdosing of other estrogens and progestogens +C2877116|T037|AB|T38.5X|ICD10CM|Estrogens and progestogens|Estrogens and progestogens +C2877116|T037|HT|T38.5X|ICD10CM|Poisoning by, adverse effect of and underdosing of other estrogens and progestogens|Poisoning by, adverse effect of and underdosing of other estrogens and progestogens +C2877117|T037|AB|T38.5X1|ICD10CM|Poisoning by oth estrogens and progestogens, accidental|Poisoning by oth estrogens and progestogens, accidental +C0478430|T037|ET|T38.5X1|ICD10CM|Poisoning by other estrogens and progestogens NOS|Poisoning by other estrogens and progestogens NOS +C2877117|T037|HT|T38.5X1|ICD10CM|Poisoning by other estrogens and progestogens, accidental (unintentional)|Poisoning by other estrogens and progestogens, accidental (unintentional) +C2877118|T037|AB|T38.5X1A|ICD10CM|Poisoning by oth estrogens and progstrn, accidental, init|Poisoning by oth estrogens and progstrn, accidental, init +C2877118|T037|PT|T38.5X1A|ICD10CM|Poisoning by other estrogens and progestogens, accidental (unintentional), initial encounter|Poisoning by other estrogens and progestogens, accidental (unintentional), initial encounter +C2877119|T037|AB|T38.5X1D|ICD10CM|Poisoning by oth estrogens and progstrn, accidental, subs|Poisoning by oth estrogens and progstrn, accidental, subs +C2877119|T037|PT|T38.5X1D|ICD10CM|Poisoning by other estrogens and progestogens, accidental (unintentional), subsequent encounter|Poisoning by other estrogens and progestogens, accidental (unintentional), subsequent encounter +C2877120|T037|AB|T38.5X1S|ICD10CM|Poisoning by oth estrogens and progstrn, acc, sequela|Poisoning by oth estrogens and progstrn, acc, sequela +C2877120|T037|PT|T38.5X1S|ICD10CM|Poisoning by other estrogens and progestogens, accidental (unintentional), sequela|Poisoning by other estrogens and progestogens, accidental (unintentional), sequela +C2877121|T037|AB|T38.5X2|ICD10CM|Poisoning by oth estrogens and progestogens, self-harm|Poisoning by oth estrogens and progestogens, self-harm +C2877121|T037|HT|T38.5X2|ICD10CM|Poisoning by other estrogens and progestogens, intentional self-harm|Poisoning by other estrogens and progestogens, intentional self-harm +C2877122|T037|AB|T38.5X2A|ICD10CM|Poisoning by oth estrogens and progestogens, self-harm, init|Poisoning by oth estrogens and progestogens, self-harm, init +C2877122|T037|PT|T38.5X2A|ICD10CM|Poisoning by other estrogens and progestogens, intentional self-harm, initial encounter|Poisoning by other estrogens and progestogens, intentional self-harm, initial encounter +C2877123|T037|AB|T38.5X2D|ICD10CM|Poisoning by oth estrogens and progestogens, self-harm, subs|Poisoning by oth estrogens and progestogens, self-harm, subs +C2877123|T037|PT|T38.5X2D|ICD10CM|Poisoning by other estrogens and progestogens, intentional self-harm, subsequent encounter|Poisoning by other estrogens and progestogens, intentional self-harm, subsequent encounter +C2877124|T037|AB|T38.5X2S|ICD10CM|Poisoning by oth estrogens and progstrn, self-harm, sequela|Poisoning by oth estrogens and progstrn, self-harm, sequela +C2877124|T037|PT|T38.5X2S|ICD10CM|Poisoning by other estrogens and progestogens, intentional self-harm, sequela|Poisoning by other estrogens and progestogens, intentional self-harm, sequela +C2877125|T037|AB|T38.5X3|ICD10CM|Poisoning by other estrogens and progestogens, assault|Poisoning by other estrogens and progestogens, assault +C2877125|T037|HT|T38.5X3|ICD10CM|Poisoning by other estrogens and progestogens, assault|Poisoning by other estrogens and progestogens, assault +C2877126|T037|AB|T38.5X3A|ICD10CM|Poisoning by oth estrogens and progestogens, assault, init|Poisoning by oth estrogens and progestogens, assault, init +C2877126|T037|PT|T38.5X3A|ICD10CM|Poisoning by other estrogens and progestogens, assault, initial encounter|Poisoning by other estrogens and progestogens, assault, initial encounter +C2877127|T037|AB|T38.5X3D|ICD10CM|Poisoning by oth estrogens and progestogens, assault, subs|Poisoning by oth estrogens and progestogens, assault, subs +C2877127|T037|PT|T38.5X3D|ICD10CM|Poisoning by other estrogens and progestogens, assault, subsequent encounter|Poisoning by other estrogens and progestogens, assault, subsequent encounter +C2877128|T037|AB|T38.5X3S|ICD10CM|Poisoning by oth estrogens and progstrn, assault, sequela|Poisoning by oth estrogens and progstrn, assault, sequela +C2877128|T037|PT|T38.5X3S|ICD10CM|Poisoning by other estrogens and progestogens, assault, sequela|Poisoning by other estrogens and progestogens, assault, sequela +C2877129|T037|AB|T38.5X4|ICD10CM|Poisoning by other estrogens and progestogens, undetermined|Poisoning by other estrogens and progestogens, undetermined +C2877129|T037|HT|T38.5X4|ICD10CM|Poisoning by other estrogens and progestogens, undetermined|Poisoning by other estrogens and progestogens, undetermined +C2877130|T037|AB|T38.5X4A|ICD10CM|Poisoning by oth estrogens and progstrn, undetermined, init|Poisoning by oth estrogens and progstrn, undetermined, init +C2877130|T037|PT|T38.5X4A|ICD10CM|Poisoning by other estrogens and progestogens, undetermined, initial encounter|Poisoning by other estrogens and progestogens, undetermined, initial encounter +C2877131|T037|AB|T38.5X4D|ICD10CM|Poisoning by oth estrogens and progstrn, undetermined, subs|Poisoning by oth estrogens and progstrn, undetermined, subs +C2877131|T037|PT|T38.5X4D|ICD10CM|Poisoning by other estrogens and progestogens, undetermined, subsequent encounter|Poisoning by other estrogens and progestogens, undetermined, subsequent encounter +C2877132|T037|AB|T38.5X4S|ICD10CM|Poisoning by oth estrogens and progstrn, undet, sequela|Poisoning by oth estrogens and progstrn, undet, sequela +C2877132|T037|PT|T38.5X4S|ICD10CM|Poisoning by other estrogens and progestogens, undetermined, sequela|Poisoning by other estrogens and progestogens, undetermined, sequela +C2877133|T037|AB|T38.5X5|ICD10CM|Adverse effect of other estrogens and progestogens|Adverse effect of other estrogens and progestogens +C2877133|T037|HT|T38.5X5|ICD10CM|Adverse effect of other estrogens and progestogens|Adverse effect of other estrogens and progestogens +C2877134|T037|AB|T38.5X5A|ICD10CM|Adverse effect of oth estrogens and progestogens, init|Adverse effect of oth estrogens and progestogens, init +C2877134|T037|PT|T38.5X5A|ICD10CM|Adverse effect of other estrogens and progestogens, initial encounter|Adverse effect of other estrogens and progestogens, initial encounter +C2877135|T037|AB|T38.5X5D|ICD10CM|Adverse effect of oth estrogens and progestogens, subs|Adverse effect of oth estrogens and progestogens, subs +C2877135|T037|PT|T38.5X5D|ICD10CM|Adverse effect of other estrogens and progestogens, subsequent encounter|Adverse effect of other estrogens and progestogens, subsequent encounter +C2877136|T037|AB|T38.5X5S|ICD10CM|Adverse effect of other estrogens and progestogens, sequela|Adverse effect of other estrogens and progestogens, sequela +C2877136|T037|PT|T38.5X5S|ICD10CM|Adverse effect of other estrogens and progestogens, sequela|Adverse effect of other estrogens and progestogens, sequela +C2877137|T037|AB|T38.5X6|ICD10CM|Underdosing of other estrogens and progestogens|Underdosing of other estrogens and progestogens +C2877137|T037|HT|T38.5X6|ICD10CM|Underdosing of other estrogens and progestogens|Underdosing of other estrogens and progestogens +C2877138|T037|AB|T38.5X6A|ICD10CM|Underdosing of other estrogens and progestogens, init encntr|Underdosing of other estrogens and progestogens, init encntr +C2877138|T037|PT|T38.5X6A|ICD10CM|Underdosing of other estrogens and progestogens, initial encounter|Underdosing of other estrogens and progestogens, initial encounter +C2877139|T037|AB|T38.5X6D|ICD10CM|Underdosing of other estrogens and progestogens, subs encntr|Underdosing of other estrogens and progestogens, subs encntr +C2877139|T037|PT|T38.5X6D|ICD10CM|Underdosing of other estrogens and progestogens, subsequent encounter|Underdosing of other estrogens and progestogens, subsequent encounter +C2877140|T037|AB|T38.5X6S|ICD10CM|Underdosing of other estrogens and progestogens, sequela|Underdosing of other estrogens and progestogens, sequela +C2877140|T037|PT|T38.5X6S|ICD10CM|Underdosing of other estrogens and progestogens, sequela|Underdosing of other estrogens and progestogens, sequela +C0869089|T037|PS|T38.6|ICD10|Antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified|Antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified +C2877142|T037|AB|T38.6|ICD10CM|Antigonadtr/antiestr/antiandrg, not elsewhere classified|Antigonadtr/antiestr/antiandrg, not elsewhere classified +C0869089|T037|PX|T38.6|ICD10|Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified|Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified +C2877141|T037|ET|T38.6|ICD10CM|Poisoning by, adverse effect of and underdosing of tamoxifen|Poisoning by, adverse effect of and underdosing of tamoxifen +C2877142|T037|AB|T38.6X|ICD10CM|Antigonadtr/antiestr/antiandrg, not elsewhere classified|Antigonadtr/antiestr/antiandrg, not elsewhere classified +C0869089|T037|ET|T38.6X1|ICD10CM|Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified NOS|Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified NOS +C2877143|T037|AB|T38.6X1|ICD10CM|Poisoning by antigonadtr/antiestr/antiandrg, NEC, acc|Poisoning by antigonadtr/antiestr/antiandrg, NEC, acc +C2877144|T037|AB|T38.6X1A|ICD10CM|Poisoning by antigonadtr/antiestr/antiandrg, NEC, acc, init|Poisoning by antigonadtr/antiestr/antiandrg, NEC, acc, init +C2877145|T037|AB|T38.6X1D|ICD10CM|Poisoning by antigonadtr/antiestr/antiandrg, NEC, acc, subs|Poisoning by antigonadtr/antiestr/antiandrg, NEC, acc, subs +C2877146|T037|AB|T38.6X1S|ICD10CM|Poisn by antigonadtr/antiestr/antiandrg, NEC, acc, sequela|Poisn by antigonadtr/antiestr/antiandrg, NEC, acc, sequela +C2877147|T037|AB|T38.6X2|ICD10CM|Poisoning by antigonadtr/antiestr/antiandrg, NEC, self-harm|Poisoning by antigonadtr/antiestr/antiandrg, NEC, self-harm +C2877148|T037|AB|T38.6X2A|ICD10CM|Poisn by antigonadtr/antiestr/antiandrg, NEC, slf-hrm, init|Poisn by antigonadtr/antiestr/antiandrg, NEC, slf-hrm, init +C2877149|T037|AB|T38.6X2D|ICD10CM|Poisn by antigonadtr/antiestr/antiandrg, NEC, slf-hrm, subs|Poisn by antigonadtr/antiestr/antiandrg, NEC, slf-hrm, subs +C2877150|T037|AB|T38.6X2S|ICD10CM|Poisn by antigonadtr/antiestr/antiandrg, NEC, slf-hrm, sqla|Poisn by antigonadtr/antiestr/antiandrg, NEC, slf-hrm, sqla +C2877151|T037|HT|T38.6X3|ICD10CM|Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, assault|Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, assault +C2877151|T037|AB|T38.6X3|ICD10CM|Poisoning by antigonadtr/antiestr/antiandrg, NEC, assault|Poisoning by antigonadtr/antiestr/antiandrg, NEC, assault +C2877152|T037|AB|T38.6X3A|ICD10CM|Poisn by antigonadtr/antiestr/antiandrg, NEC, assault, init|Poisn by antigonadtr/antiestr/antiandrg, NEC, assault, init +C2877153|T037|AB|T38.6X3D|ICD10CM|Poisn by antigonadtr/antiestr/antiandrg, NEC, assault, subs|Poisn by antigonadtr/antiestr/antiandrg, NEC, assault, subs +C2877154|T037|AB|T38.6X3S|ICD10CM|Poisn by antigonadtr/antiestr/antiandrg, NEC, asslt, sequela|Poisn by antigonadtr/antiestr/antiandrg, NEC, asslt, sequela +C2877155|T037|AB|T38.6X4|ICD10CM|Poisoning by antigonadtr/antiestr/antiandrg, NEC, undet|Poisoning by antigonadtr/antiestr/antiandrg, NEC, undet +C2877156|T037|AB|T38.6X4A|ICD10CM|Poisn by antigonadtr/antiestr/antiandrg, NEC, undet, init|Poisn by antigonadtr/antiestr/antiandrg, NEC, undet, init +C2877157|T037|AB|T38.6X4D|ICD10CM|Poisn by antigonadtr/antiestr/antiandrg, NEC, undet, subs|Poisn by antigonadtr/antiestr/antiandrg, NEC, undet, subs +C2877158|T037|AB|T38.6X4S|ICD10CM|Poisn by antigonadtr/antiestr/antiandrg, NEC, undet, sequela|Poisn by antigonadtr/antiestr/antiandrg, NEC, undet, sequela +C2877159|T037|HT|T38.6X5|ICD10CM|Adverse effect of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified|Adverse effect of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified +C2877159|T037|AB|T38.6X5|ICD10CM|Adverse effect of antigonadtr/antiestr/antiandrg, NEC|Adverse effect of antigonadtr/antiestr/antiandrg, NEC +C2877160|T037|AB|T38.6X5A|ICD10CM|Adverse effect of antigonadtr/antiestr/antiandrg, NEC, init|Adverse effect of antigonadtr/antiestr/antiandrg, NEC, init +C2877161|T037|AB|T38.6X5D|ICD10CM|Adverse effect of antigonadtr/antiestr/antiandrg, NEC, subs|Adverse effect of antigonadtr/antiestr/antiandrg, NEC, subs +C2877162|T037|AB|T38.6X5S|ICD10CM|Advrs effect of antigonadtr/antiestr/antiandrg, NEC, sequela|Advrs effect of antigonadtr/antiestr/antiandrg, NEC, sequela +C2877163|T037|HT|T38.6X6|ICD10CM|Underdosing of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified|Underdosing of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified +C2877163|T037|AB|T38.6X6|ICD10CM|Underdosing of antigonadtr/antiestr/antiandrg, NEC|Underdosing of antigonadtr/antiestr/antiandrg, NEC +C2877164|T037|AB|T38.6X6A|ICD10CM|Underdosing of antigonadtr/antiestr/antiandrg, NEC, init|Underdosing of antigonadtr/antiestr/antiandrg, NEC, init +C2877165|T037|AB|T38.6X6D|ICD10CM|Underdosing of antigonadtr/antiestr/antiandrg, NEC, subs|Underdosing of antigonadtr/antiestr/antiandrg, NEC, subs +C2877166|T037|PT|T38.6X6S|ICD10CM|Underdosing of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, sequela|Underdosing of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, sequela +C2877166|T037|AB|T38.6X6S|ICD10CM|Underdosing of antigonadtr/antiestr/antiandrg, NEC, sequela|Underdosing of antigonadtr/antiestr/antiandrg, NEC, sequela +C2877167|T037|AB|T38.7|ICD10CM|Androgens and anabolic congeners|Androgens and anabolic congeners +C0161509|T037|PS|T38.7|ICD10|Androgens and anabolic congeners|Androgens and anabolic congeners +C0161509|T037|PX|T38.7|ICD10|Poisoning by androgens and anabolic congeners|Poisoning by androgens and anabolic congeners +C2877167|T037|HT|T38.7|ICD10CM|Poisoning by, adverse effect of and underdosing of androgens and anabolic congeners|Poisoning by, adverse effect of and underdosing of androgens and anabolic congeners +C2877167|T037|AB|T38.7X|ICD10CM|Androgens and anabolic congeners|Androgens and anabolic congeners +C2877167|T037|HT|T38.7X|ICD10CM|Poisoning by, adverse effect of and underdosing of androgens and anabolic congeners|Poisoning by, adverse effect of and underdosing of androgens and anabolic congeners +C0161509|T037|ET|T38.7X1|ICD10CM|Poisoning by androgens and anabolic congeners NOS|Poisoning by androgens and anabolic congeners NOS +C2877168|T037|AB|T38.7X1|ICD10CM|Poisoning by androgens and anabolic congeners, accidental|Poisoning by androgens and anabolic congeners, accidental +C2877168|T037|HT|T38.7X1|ICD10CM|Poisoning by androgens and anabolic congeners, accidental (unintentional)|Poisoning by androgens and anabolic congeners, accidental (unintentional) +C2877169|T037|AB|T38.7X1A|ICD10CM|Poisoning by androgens and anabolic congeners, acc, init|Poisoning by androgens and anabolic congeners, acc, init +C2877169|T037|PT|T38.7X1A|ICD10CM|Poisoning by androgens and anabolic congeners, accidental (unintentional), initial encounter|Poisoning by androgens and anabolic congeners, accidental (unintentional), initial encounter +C2877170|T037|AB|T38.7X1D|ICD10CM|Poisoning by androgens and anabolic congeners, acc, subs|Poisoning by androgens and anabolic congeners, acc, subs +C2877170|T037|PT|T38.7X1D|ICD10CM|Poisoning by androgens and anabolic congeners, accidental (unintentional), subsequent encounter|Poisoning by androgens and anabolic congeners, accidental (unintentional), subsequent encounter +C2877171|T037|AB|T38.7X1S|ICD10CM|Poisoning by androgens and anabolic congeners, acc, sequela|Poisoning by androgens and anabolic congeners, acc, sequela +C2877171|T037|PT|T38.7X1S|ICD10CM|Poisoning by androgens and anabolic congeners, accidental (unintentional), sequela|Poisoning by androgens and anabolic congeners, accidental (unintentional), sequela +C2877172|T037|HT|T38.7X2|ICD10CM|Poisoning by androgens and anabolic congeners, intentional self-harm|Poisoning by androgens and anabolic congeners, intentional self-harm +C2877172|T037|AB|T38.7X2|ICD10CM|Poisoning by androgens and anabolic congeners, self-harm|Poisoning by androgens and anabolic congeners, self-harm +C2877173|T037|AB|T38.7X2A|ICD10CM|Poisn by androgens and anabolic congeners, self-harm, init|Poisn by androgens and anabolic congeners, self-harm, init +C2877173|T037|PT|T38.7X2A|ICD10CM|Poisoning by androgens and anabolic congeners, intentional self-harm, initial encounter|Poisoning by androgens and anabolic congeners, intentional self-harm, initial encounter +C2877174|T037|AB|T38.7X2D|ICD10CM|Poisn by androgens and anabolic congeners, self-harm, subs|Poisn by androgens and anabolic congeners, self-harm, subs +C2877174|T037|PT|T38.7X2D|ICD10CM|Poisoning by androgens and anabolic congeners, intentional self-harm, subsequent encounter|Poisoning by androgens and anabolic congeners, intentional self-harm, subsequent encounter +C2877175|T037|AB|T38.7X2S|ICD10CM|Poisn by androgens and anabolic congeners, slf-hrm, sequela|Poisn by androgens and anabolic congeners, slf-hrm, sequela +C2877175|T037|PT|T38.7X2S|ICD10CM|Poisoning by androgens and anabolic congeners, intentional self-harm, sequela|Poisoning by androgens and anabolic congeners, intentional self-harm, sequela +C2877176|T037|AB|T38.7X3|ICD10CM|Poisoning by androgens and anabolic congeners, assault|Poisoning by androgens and anabolic congeners, assault +C2877176|T037|HT|T38.7X3|ICD10CM|Poisoning by androgens and anabolic congeners, assault|Poisoning by androgens and anabolic congeners, assault +C2877177|T037|AB|T38.7X3A|ICD10CM|Poisoning by androgens and anabolic congeners, assault, init|Poisoning by androgens and anabolic congeners, assault, init +C2877177|T037|PT|T38.7X3A|ICD10CM|Poisoning by androgens and anabolic congeners, assault, initial encounter|Poisoning by androgens and anabolic congeners, assault, initial encounter +C2877178|T037|AB|T38.7X3D|ICD10CM|Poisoning by androgens and anabolic congeners, assault, subs|Poisoning by androgens and anabolic congeners, assault, subs +C2877178|T037|PT|T38.7X3D|ICD10CM|Poisoning by androgens and anabolic congeners, assault, subsequent encounter|Poisoning by androgens and anabolic congeners, assault, subsequent encounter +C2877179|T037|AB|T38.7X3S|ICD10CM|Poisn by androgens and anabolic congeners, assault, sequela|Poisn by androgens and anabolic congeners, assault, sequela +C2877179|T037|PT|T38.7X3S|ICD10CM|Poisoning by androgens and anabolic congeners, assault, sequela|Poisoning by androgens and anabolic congeners, assault, sequela +C2877180|T037|AB|T38.7X4|ICD10CM|Poisoning by androgens and anabolic congeners, undetermined|Poisoning by androgens and anabolic congeners, undetermined +C2877180|T037|HT|T38.7X4|ICD10CM|Poisoning by androgens and anabolic congeners, undetermined|Poisoning by androgens and anabolic congeners, undetermined +C2877181|T037|AB|T38.7X4A|ICD10CM|Poisoning by androgens and anabolic congeners, undet, init|Poisoning by androgens and anabolic congeners, undet, init +C2877181|T037|PT|T38.7X4A|ICD10CM|Poisoning by androgens and anabolic congeners, undetermined, initial encounter|Poisoning by androgens and anabolic congeners, undetermined, initial encounter +C2877182|T037|AB|T38.7X4D|ICD10CM|Poisoning by androgens and anabolic congeners, undet, subs|Poisoning by androgens and anabolic congeners, undet, subs +C2877182|T037|PT|T38.7X4D|ICD10CM|Poisoning by androgens and anabolic congeners, undetermined, subsequent encounter|Poisoning by androgens and anabolic congeners, undetermined, subsequent encounter +C2877183|T037|AB|T38.7X4S|ICD10CM|Poisn by androgens and anabolic congeners, undet, sequela|Poisn by androgens and anabolic congeners, undet, sequela +C2877183|T037|PT|T38.7X4S|ICD10CM|Poisoning by androgens and anabolic congeners, undetermined, sequela|Poisoning by androgens and anabolic congeners, undetermined, sequela +C2877184|T037|AB|T38.7X5|ICD10CM|Adverse effect of androgens and anabolic congeners|Adverse effect of androgens and anabolic congeners +C2877184|T037|HT|T38.7X5|ICD10CM|Adverse effect of androgens and anabolic congeners|Adverse effect of androgens and anabolic congeners +C2877185|T037|AB|T38.7X5A|ICD10CM|Adverse effect of androgens and anabolic congeners, init|Adverse effect of androgens and anabolic congeners, init +C2877185|T037|PT|T38.7X5A|ICD10CM|Adverse effect of androgens and anabolic congeners, initial encounter|Adverse effect of androgens and anabolic congeners, initial encounter +C2877186|T037|AB|T38.7X5D|ICD10CM|Adverse effect of androgens and anabolic congeners, subs|Adverse effect of androgens and anabolic congeners, subs +C2877186|T037|PT|T38.7X5D|ICD10CM|Adverse effect of androgens and anabolic congeners, subsequent encounter|Adverse effect of androgens and anabolic congeners, subsequent encounter +C2877187|T037|AB|T38.7X5S|ICD10CM|Adverse effect of androgens and anabolic congeners, sequela|Adverse effect of androgens and anabolic congeners, sequela +C2877187|T037|PT|T38.7X5S|ICD10CM|Adverse effect of androgens and anabolic congeners, sequela|Adverse effect of androgens and anabolic congeners, sequela +C2877188|T037|AB|T38.7X6|ICD10CM|Underdosing of androgens and anabolic congeners|Underdosing of androgens and anabolic congeners +C2877188|T037|HT|T38.7X6|ICD10CM|Underdosing of androgens and anabolic congeners|Underdosing of androgens and anabolic congeners +C2877189|T037|AB|T38.7X6A|ICD10CM|Underdosing of androgens and anabolic congeners, init encntr|Underdosing of androgens and anabolic congeners, init encntr +C2877189|T037|PT|T38.7X6A|ICD10CM|Underdosing of androgens and anabolic congeners, initial encounter|Underdosing of androgens and anabolic congeners, initial encounter +C2877190|T037|AB|T38.7X6D|ICD10CM|Underdosing of androgens and anabolic congeners, subs encntr|Underdosing of androgens and anabolic congeners, subs encntr +C2877190|T037|PT|T38.7X6D|ICD10CM|Underdosing of androgens and anabolic congeners, subsequent encounter|Underdosing of androgens and anabolic congeners, subsequent encounter +C2877191|T037|AB|T38.7X6S|ICD10CM|Underdosing of androgens and anabolic congeners, sequela|Underdosing of androgens and anabolic congeners, sequela +C2877191|T037|PT|T38.7X6S|ICD10CM|Underdosing of androgens and anabolic congeners, sequela|Underdosing of androgens and anabolic congeners, sequela +C2877192|T037|AB|T38.8|ICD10CM|And unsp hormones and synthetic substitutes|And unsp hormones and synthetic substitutes +C0161517|T037|PS|T38.8|ICD10|Other and unspecified hormones and their synthetic substitutes|Other and unspecified hormones and their synthetic substitutes +C0161517|T037|PX|T38.8|ICD10|Poisoning by other and unspecified hormones and their synthetic substitutes|Poisoning by other and unspecified hormones and their synthetic substitutes +C2877193|T037|HT|T38.80|ICD10CM|Poisoning by, adverse effect of and underdosing of unspecified hormones and synthetic substitutes|Poisoning by, adverse effect of and underdosing of unspecified hormones and synthetic substitutes +C2877193|T037|AB|T38.80|ICD10CM|Unsp hormones and synthetic substitutes|Unsp hormones and synthetic substitutes +C2877195|T037|AB|T38.801|ICD10CM|Poisoning by unsp hormones and synthetic sub, accidental|Poisoning by unsp hormones and synthetic sub, accidental +C2877194|T037|ET|T38.801|ICD10CM|Poisoning by unspecified hormones and synthetic substitutes NOS|Poisoning by unspecified hormones and synthetic substitutes NOS +C2877195|T037|HT|T38.801|ICD10CM|Poisoning by unspecified hormones and synthetic substitutes, accidental (unintentional)|Poisoning by unspecified hormones and synthetic substitutes, accidental (unintentional) +C2877196|T037|AB|T38.801A|ICD10CM|Poisoning by unsp hormones and synthetic sub, acc, init|Poisoning by unsp hormones and synthetic sub, acc, init +C2877197|T037|AB|T38.801D|ICD10CM|Poisoning by unsp hormones and synthetic sub, acc, subs|Poisoning by unsp hormones and synthetic sub, acc, subs +C2877198|T037|AB|T38.801S|ICD10CM|Poisoning by unsp hormones and synthetic sub, acc, sequela|Poisoning by unsp hormones and synthetic sub, acc, sequela +C2877198|T037|PT|T38.801S|ICD10CM|Poisoning by unspecified hormones and synthetic substitutes, accidental (unintentional), sequela|Poisoning by unspecified hormones and synthetic substitutes, accidental (unintentional), sequela +C2877199|T037|AB|T38.802|ICD10CM|Poisoning by unsp hormones and synthetic sub, self-harm|Poisoning by unsp hormones and synthetic sub, self-harm +C2877199|T037|HT|T38.802|ICD10CM|Poisoning by unspecified hormones and synthetic substitutes, intentional self-harm|Poisoning by unspecified hormones and synthetic substitutes, intentional self-harm +C2877200|T037|AB|T38.802A|ICD10CM|Poisn by unsp hormones and synthetic sub, self-harm, init|Poisn by unsp hormones and synthetic sub, self-harm, init +C2877201|T037|AB|T38.802D|ICD10CM|Poisn by unsp hormones and synthetic sub, self-harm, subs|Poisn by unsp hormones and synthetic sub, self-harm, subs +C2877202|T037|AB|T38.802S|ICD10CM|Poisn by unsp hormones and synthetic sub, self-harm, sequela|Poisn by unsp hormones and synthetic sub, self-harm, sequela +C2877202|T037|PT|T38.802S|ICD10CM|Poisoning by unspecified hormones and synthetic substitutes, intentional self-harm, sequela|Poisoning by unspecified hormones and synthetic substitutes, intentional self-harm, sequela +C2877203|T037|AB|T38.803|ICD10CM|Poisoning by unsp hormones and synthetic sub, assault|Poisoning by unsp hormones and synthetic sub, assault +C2877203|T037|HT|T38.803|ICD10CM|Poisoning by unspecified hormones and synthetic substitutes, assault|Poisoning by unspecified hormones and synthetic substitutes, assault +C2877204|T037|AB|T38.803A|ICD10CM|Poisoning by unsp hormones and synthetic sub, assault, init|Poisoning by unsp hormones and synthetic sub, assault, init +C2877204|T037|PT|T38.803A|ICD10CM|Poisoning by unspecified hormones and synthetic substitutes, assault, initial encounter|Poisoning by unspecified hormones and synthetic substitutes, assault, initial encounter +C2877205|T037|AB|T38.803D|ICD10CM|Poisoning by unsp hormones and synthetic sub, assault, subs|Poisoning by unsp hormones and synthetic sub, assault, subs +C2877205|T037|PT|T38.803D|ICD10CM|Poisoning by unspecified hormones and synthetic substitutes, assault, subsequent encounter|Poisoning by unspecified hormones and synthetic substitutes, assault, subsequent encounter +C2877206|T037|AB|T38.803S|ICD10CM|Poisn by unsp hormones and synthetic sub, assault, sequela|Poisn by unsp hormones and synthetic sub, assault, sequela +C2877206|T037|PT|T38.803S|ICD10CM|Poisoning by unspecified hormones and synthetic substitutes, assault, sequela|Poisoning by unspecified hormones and synthetic substitutes, assault, sequela +C2877207|T037|AB|T38.804|ICD10CM|Poisoning by unsp hormones and synthetic substitutes, undet|Poisoning by unsp hormones and synthetic substitutes, undet +C2877207|T037|HT|T38.804|ICD10CM|Poisoning by unspecified hormones and synthetic substitutes, undetermined|Poisoning by unspecified hormones and synthetic substitutes, undetermined +C2877208|T037|AB|T38.804A|ICD10CM|Poisoning by unsp hormones and synthetic sub, undet, init|Poisoning by unsp hormones and synthetic sub, undet, init +C2877208|T037|PT|T38.804A|ICD10CM|Poisoning by unspecified hormones and synthetic substitutes, undetermined, initial encounter|Poisoning by unspecified hormones and synthetic substitutes, undetermined, initial encounter +C2877209|T037|AB|T38.804D|ICD10CM|Poisoning by unsp hormones and synthetic sub, undet, subs|Poisoning by unsp hormones and synthetic sub, undet, subs +C2877209|T037|PT|T38.804D|ICD10CM|Poisoning by unspecified hormones and synthetic substitutes, undetermined, subsequent encounter|Poisoning by unspecified hormones and synthetic substitutes, undetermined, subsequent encounter +C2877210|T037|AB|T38.804S|ICD10CM|Poisoning by unsp hormones and synthetic sub, undet, sequela|Poisoning by unsp hormones and synthetic sub, undet, sequela +C2877210|T037|PT|T38.804S|ICD10CM|Poisoning by unspecified hormones and synthetic substitutes, undetermined, sequela|Poisoning by unspecified hormones and synthetic substitutes, undetermined, sequela +C2877211|T037|AB|T38.805|ICD10CM|Adverse effect of unsp hormones and synthetic substitutes|Adverse effect of unsp hormones and synthetic substitutes +C2877211|T037|HT|T38.805|ICD10CM|Adverse effect of unspecified hormones and synthetic substitutes|Adverse effect of unspecified hormones and synthetic substitutes +C2877212|T037|AB|T38.805A|ICD10CM|Adverse effect of unsp hormones and synthetic sub, init|Adverse effect of unsp hormones and synthetic sub, init +C2877212|T037|PT|T38.805A|ICD10CM|Adverse effect of unspecified hormones and synthetic substitutes, initial encounter|Adverse effect of unspecified hormones and synthetic substitutes, initial encounter +C2877213|T037|AB|T38.805D|ICD10CM|Adverse effect of unsp hormones and synthetic sub, subs|Adverse effect of unsp hormones and synthetic sub, subs +C2877213|T037|PT|T38.805D|ICD10CM|Adverse effect of unspecified hormones and synthetic substitutes, subsequent encounter|Adverse effect of unspecified hormones and synthetic substitutes, subsequent encounter +C2877214|T037|AB|T38.805S|ICD10CM|Adverse effect of unsp hormones and synthetic sub, sequela|Adverse effect of unsp hormones and synthetic sub, sequela +C2877214|T037|PT|T38.805S|ICD10CM|Adverse effect of unspecified hormones and synthetic substitutes, sequela|Adverse effect of unspecified hormones and synthetic substitutes, sequela +C2877215|T037|AB|T38.806|ICD10CM|Underdosing of unsp hormones and synthetic substitutes|Underdosing of unsp hormones and synthetic substitutes +C2877215|T037|HT|T38.806|ICD10CM|Underdosing of unspecified hormones and synthetic substitutes|Underdosing of unspecified hormones and synthetic substitutes +C2877216|T037|AB|T38.806A|ICD10CM|Underdosing of unsp hormones and synthetic substitutes, init|Underdosing of unsp hormones and synthetic substitutes, init +C2877216|T037|PT|T38.806A|ICD10CM|Underdosing of unspecified hormones and synthetic substitutes, initial encounter|Underdosing of unspecified hormones and synthetic substitutes, initial encounter +C2877217|T037|AB|T38.806D|ICD10CM|Underdosing of unsp hormones and synthetic substitutes, subs|Underdosing of unsp hormones and synthetic substitutes, subs +C2877217|T037|PT|T38.806D|ICD10CM|Underdosing of unspecified hormones and synthetic substitutes, subsequent encounter|Underdosing of unspecified hormones and synthetic substitutes, subsequent encounter +C2877218|T037|AB|T38.806S|ICD10CM|Underdosing of unsp hormones and synthetic sub, sequela|Underdosing of unsp hormones and synthetic sub, sequela +C2877218|T037|PT|T38.806S|ICD10CM|Underdosing of unspecified hormones and synthetic substitutes, sequela|Underdosing of unspecified hormones and synthetic substitutes, sequela +C2877219|T037|AB|T38.81|ICD10CM|Anterior pituitary hormones|Anterior pituitary hormones +C2877219|T037|HT|T38.81|ICD10CM|Poisoning by, adverse effect of and underdosing of anterior pituitary [adenohypophyseal] hormones|Poisoning by, adverse effect of and underdosing of anterior pituitary [adenohypophyseal] hormones +C2877220|T037|ET|T38.811|ICD10CM|Poisoning by anterior pituitary [adenohypophyseal] hormones NOS|Poisoning by anterior pituitary [adenohypophyseal] hormones NOS +C2083213|T037|HT|T38.811|ICD10CM|Poisoning by anterior pituitary [adenohypophyseal] hormones, accidental (unintentional)|Poisoning by anterior pituitary [adenohypophyseal] hormones, accidental (unintentional) +C2083213|T037|AB|T38.811|ICD10CM|Poisoning by anterior pituitary hormones, accidental|Poisoning by anterior pituitary hormones, accidental +C2877222|T037|AB|T38.811A|ICD10CM|Poisoning by anterior pituitary hormones, accidental, init|Poisoning by anterior pituitary hormones, accidental, init +C2877223|T037|AB|T38.811D|ICD10CM|Poisoning by anterior pituitary hormones, accidental, subs|Poisoning by anterior pituitary hormones, accidental, subs +C2877224|T037|PT|T38.811S|ICD10CM|Poisoning by anterior pituitary [adenohypophyseal] hormones, accidental (unintentional), sequela|Poisoning by anterior pituitary [adenohypophyseal] hormones, accidental (unintentional), sequela +C2877224|T037|AB|T38.811S|ICD10CM|Poisoning by anterior pituitary hormones, acc, sequela|Poisoning by anterior pituitary hormones, acc, sequela +C2877225|T037|HT|T38.812|ICD10CM|Poisoning by anterior pituitary [adenohypophyseal] hormones, intentional self-harm|Poisoning by anterior pituitary [adenohypophyseal] hormones, intentional self-harm +C2877225|T037|AB|T38.812|ICD10CM|Poisoning by anterior pituitary hormones, self-harm|Poisoning by anterior pituitary hormones, self-harm +C2877226|T037|AB|T38.812A|ICD10CM|Poisoning by anterior pituitary hormones, self-harm, init|Poisoning by anterior pituitary hormones, self-harm, init +C2877227|T037|AB|T38.812D|ICD10CM|Poisoning by anterior pituitary hormones, self-harm, subs|Poisoning by anterior pituitary hormones, self-harm, subs +C2877228|T037|PT|T38.812S|ICD10CM|Poisoning by anterior pituitary [adenohypophyseal] hormones, intentional self-harm, sequela|Poisoning by anterior pituitary [adenohypophyseal] hormones, intentional self-harm, sequela +C2877228|T037|AB|T38.812S|ICD10CM|Poisoning by anterior pituitary hormones, self-harm, sequela|Poisoning by anterior pituitary hormones, self-harm, sequela +C2877229|T037|HT|T38.813|ICD10CM|Poisoning by anterior pituitary [adenohypophyseal] hormones, assault|Poisoning by anterior pituitary [adenohypophyseal] hormones, assault +C2877229|T037|AB|T38.813|ICD10CM|Poisoning by anterior pituitary hormones, assault|Poisoning by anterior pituitary hormones, assault +C2877230|T037|PT|T38.813A|ICD10CM|Poisoning by anterior pituitary [adenohypophyseal] hormones, assault, initial encounter|Poisoning by anterior pituitary [adenohypophyseal] hormones, assault, initial encounter +C2877230|T037|AB|T38.813A|ICD10CM|Poisoning by anterior pituitary hormones, assault, init|Poisoning by anterior pituitary hormones, assault, init +C2877231|T037|PT|T38.813D|ICD10CM|Poisoning by anterior pituitary [adenohypophyseal] hormones, assault, subsequent encounter|Poisoning by anterior pituitary [adenohypophyseal] hormones, assault, subsequent encounter +C2877231|T037|AB|T38.813D|ICD10CM|Poisoning by anterior pituitary hormones, assault, subs|Poisoning by anterior pituitary hormones, assault, subs +C2877232|T037|PT|T38.813S|ICD10CM|Poisoning by anterior pituitary [adenohypophyseal] hormones, assault, sequela|Poisoning by anterior pituitary [adenohypophyseal] hormones, assault, sequela +C2877232|T037|AB|T38.813S|ICD10CM|Poisoning by anterior pituitary hormones, assault, sequela|Poisoning by anterior pituitary hormones, assault, sequela +C2877233|T037|HT|T38.814|ICD10CM|Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined|Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined +C2877233|T037|AB|T38.814|ICD10CM|Poisoning by anterior pituitary hormones, undetermined|Poisoning by anterior pituitary hormones, undetermined +C2877234|T037|PT|T38.814A|ICD10CM|Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined, initial encounter|Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined, initial encounter +C2877234|T037|AB|T38.814A|ICD10CM|Poisoning by anterior pituitary hormones, undetermined, init|Poisoning by anterior pituitary hormones, undetermined, init +C2877235|T037|PT|T38.814D|ICD10CM|Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined, subsequent encounter|Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined, subsequent encounter +C2877235|T037|AB|T38.814D|ICD10CM|Poisoning by anterior pituitary hormones, undetermined, subs|Poisoning by anterior pituitary hormones, undetermined, subs +C2877236|T037|PT|T38.814S|ICD10CM|Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined, sequela|Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined, sequela +C2877236|T037|AB|T38.814S|ICD10CM|Poisoning by anterior pituitary hormones, undet, sequela|Poisoning by anterior pituitary hormones, undet, sequela +C0413603|T046|HT|T38.815|ICD10CM|Adverse effect of anterior pituitary [adenohypophyseal] hormones|Adverse effect of anterior pituitary [adenohypophyseal] hormones +C0413603|T046|AB|T38.815|ICD10CM|Adverse effect of anterior pituitary hormones|Adverse effect of anterior pituitary hormones +C2877238|T037|PT|T38.815A|ICD10CM|Adverse effect of anterior pituitary [adenohypophyseal] hormones, initial encounter|Adverse effect of anterior pituitary [adenohypophyseal] hormones, initial encounter +C2877238|T037|AB|T38.815A|ICD10CM|Adverse effect of anterior pituitary hormones, init encntr|Adverse effect of anterior pituitary hormones, init encntr +C2877239|T037|PT|T38.815D|ICD10CM|Adverse effect of anterior pituitary [adenohypophyseal] hormones, subsequent encounter|Adverse effect of anterior pituitary [adenohypophyseal] hormones, subsequent encounter +C2877239|T037|AB|T38.815D|ICD10CM|Adverse effect of anterior pituitary hormones, subs encntr|Adverse effect of anterior pituitary hormones, subs encntr +C2877240|T037|PT|T38.815S|ICD10CM|Adverse effect of anterior pituitary [adenohypophyseal] hormones, sequela|Adverse effect of anterior pituitary [adenohypophyseal] hormones, sequela +C2877240|T037|AB|T38.815S|ICD10CM|Adverse effect of anterior pituitary hormones, sequela|Adverse effect of anterior pituitary hormones, sequela +C3508329|T037|HT|T38.816|ICD10CM|Underdosing of anterior pituitary [adenohypophyseal] hormones|Underdosing of anterior pituitary [adenohypophyseal] hormones +C3508329|T037|AB|T38.816|ICD10CM|Underdosing of anterior pituitary hormones|Underdosing of anterior pituitary hormones +C2877242|T037|PT|T38.816A|ICD10CM|Underdosing of anterior pituitary [adenohypophyseal] hormones, initial encounter|Underdosing of anterior pituitary [adenohypophyseal] hormones, initial encounter +C2877242|T037|AB|T38.816A|ICD10CM|Underdosing of anterior pituitary hormones, init encntr|Underdosing of anterior pituitary hormones, init encntr +C2877243|T037|PT|T38.816D|ICD10CM|Underdosing of anterior pituitary [adenohypophyseal] hormones, subsequent encounter|Underdosing of anterior pituitary [adenohypophyseal] hormones, subsequent encounter +C2877243|T037|AB|T38.816D|ICD10CM|Underdosing of anterior pituitary hormones, subs encntr|Underdosing of anterior pituitary hormones, subs encntr +C2877244|T037|PT|T38.816S|ICD10CM|Underdosing of anterior pituitary [adenohypophyseal] hormones, sequela|Underdosing of anterior pituitary [adenohypophyseal] hormones, sequela +C2877244|T037|AB|T38.816S|ICD10CM|Underdosing of anterior pituitary hormones, sequela|Underdosing of anterior pituitary hormones, sequela +C2877245|T037|AB|T38.89|ICD10CM|Hormones and synthetic substitutes|Hormones and synthetic substitutes +C2877245|T037|HT|T38.89|ICD10CM|Poisoning by, adverse effect of and underdosing of other hormones and synthetic substitutes|Poisoning by, adverse effect of and underdosing of other hormones and synthetic substitutes +C2877247|T037|AB|T38.891|ICD10CM|Poisoning by oth hormones and synthetic sub, accidental|Poisoning by oth hormones and synthetic sub, accidental +C2877246|T037|ET|T38.891|ICD10CM|Poisoning by other hormones and synthetic substitutes NOS|Poisoning by other hormones and synthetic substitutes NOS +C2877247|T037|HT|T38.891|ICD10CM|Poisoning by other hormones and synthetic substitutes, accidental (unintentional)|Poisoning by other hormones and synthetic substitutes, accidental (unintentional) +C2877248|T037|AB|T38.891A|ICD10CM|Poisoning by oth hormones and synthetic sub, acc, init|Poisoning by oth hormones and synthetic sub, acc, init +C2877248|T037|PT|T38.891A|ICD10CM|Poisoning by other hormones and synthetic substitutes, accidental (unintentional), initial encounter|Poisoning by other hormones and synthetic substitutes, accidental (unintentional), initial encounter +C2877249|T037|AB|T38.891D|ICD10CM|Poisoning by oth hormones and synthetic sub, acc, subs|Poisoning by oth hormones and synthetic sub, acc, subs +C2877250|T037|AB|T38.891S|ICD10CM|Poisoning by oth hormones and synthetic sub, acc, sequela|Poisoning by oth hormones and synthetic sub, acc, sequela +C2877250|T037|PT|T38.891S|ICD10CM|Poisoning by other hormones and synthetic substitutes, accidental (unintentional), sequela|Poisoning by other hormones and synthetic substitutes, accidental (unintentional), sequela +C2877251|T037|AB|T38.892|ICD10CM|Poisoning by oth hormones and synthetic sub, self-harm|Poisoning by oth hormones and synthetic sub, self-harm +C2877251|T037|HT|T38.892|ICD10CM|Poisoning by other hormones and synthetic substitutes, intentional self-harm|Poisoning by other hormones and synthetic substitutes, intentional self-harm +C2877252|T037|AB|T38.892A|ICD10CM|Poisoning by oth hormones and synthetic sub, self-harm, init|Poisoning by oth hormones and synthetic sub, self-harm, init +C2877252|T037|PT|T38.892A|ICD10CM|Poisoning by other hormones and synthetic substitutes, intentional self-harm, initial encounter|Poisoning by other hormones and synthetic substitutes, intentional self-harm, initial encounter +C2877253|T037|AB|T38.892D|ICD10CM|Poisoning by oth hormones and synthetic sub, self-harm, subs|Poisoning by oth hormones and synthetic sub, self-harm, subs +C2877253|T037|PT|T38.892D|ICD10CM|Poisoning by other hormones and synthetic substitutes, intentional self-harm, subsequent encounter|Poisoning by other hormones and synthetic substitutes, intentional self-harm, subsequent encounter +C2877254|T037|AB|T38.892S|ICD10CM|Poisn by oth hormones and synthetic sub, self-harm, sequela|Poisn by oth hormones and synthetic sub, self-harm, sequela +C2877254|T037|PT|T38.892S|ICD10CM|Poisoning by other hormones and synthetic substitutes, intentional self-harm, sequela|Poisoning by other hormones and synthetic substitutes, intentional self-harm, sequela +C2877255|T037|AB|T38.893|ICD10CM|Poisoning by oth hormones and synthetic substitutes, assault|Poisoning by oth hormones and synthetic substitutes, assault +C2877255|T037|HT|T38.893|ICD10CM|Poisoning by other hormones and synthetic substitutes, assault|Poisoning by other hormones and synthetic substitutes, assault +C2877256|T037|AB|T38.893A|ICD10CM|Poisoning by oth hormones and synthetic sub, assault, init|Poisoning by oth hormones and synthetic sub, assault, init +C2877256|T037|PT|T38.893A|ICD10CM|Poisoning by other hormones and synthetic substitutes, assault, initial encounter|Poisoning by other hormones and synthetic substitutes, assault, initial encounter +C2877257|T037|AB|T38.893D|ICD10CM|Poisoning by oth hormones and synthetic sub, assault, subs|Poisoning by oth hormones and synthetic sub, assault, subs +C2877257|T037|PT|T38.893D|ICD10CM|Poisoning by other hormones and synthetic substitutes, assault, subsequent encounter|Poisoning by other hormones and synthetic substitutes, assault, subsequent encounter +C2877258|T037|AB|T38.893S|ICD10CM|Poisn by oth hormones and synthetic sub, assault, sequela|Poisn by oth hormones and synthetic sub, assault, sequela +C2877258|T037|PT|T38.893S|ICD10CM|Poisoning by other hormones and synthetic substitutes, assault, sequela|Poisoning by other hormones and synthetic substitutes, assault, sequela +C2877259|T037|AB|T38.894|ICD10CM|Poisoning by oth hormones and synthetic substitutes, undet|Poisoning by oth hormones and synthetic substitutes, undet +C2877259|T037|HT|T38.894|ICD10CM|Poisoning by other hormones and synthetic substitutes, undetermined|Poisoning by other hormones and synthetic substitutes, undetermined +C2877260|T037|AB|T38.894A|ICD10CM|Poisoning by oth hormones and synthetic sub, undet, init|Poisoning by oth hormones and synthetic sub, undet, init +C2877260|T037|PT|T38.894A|ICD10CM|Poisoning by other hormones and synthetic substitutes, undetermined, initial encounter|Poisoning by other hormones and synthetic substitutes, undetermined, initial encounter +C2877261|T037|AB|T38.894D|ICD10CM|Poisoning by oth hormones and synthetic sub, undet, subs|Poisoning by oth hormones and synthetic sub, undet, subs +C2877261|T037|PT|T38.894D|ICD10CM|Poisoning by other hormones and synthetic substitutes, undetermined, subsequent encounter|Poisoning by other hormones and synthetic substitutes, undetermined, subsequent encounter +C2877262|T037|AB|T38.894S|ICD10CM|Poisoning by oth hormones and synthetic sub, undet, sequela|Poisoning by oth hormones and synthetic sub, undet, sequela +C2877262|T037|PT|T38.894S|ICD10CM|Poisoning by other hormones and synthetic substitutes, undetermined, sequela|Poisoning by other hormones and synthetic substitutes, undetermined, sequela +C2877263|T037|AB|T38.895|ICD10CM|Adverse effect of other hormones and synthetic substitutes|Adverse effect of other hormones and synthetic substitutes +C2877263|T037|HT|T38.895|ICD10CM|Adverse effect of other hormones and synthetic substitutes|Adverse effect of other hormones and synthetic substitutes +C2877264|T037|AB|T38.895A|ICD10CM|Adverse effect of hormones and synthetic substitutes, init|Adverse effect of hormones and synthetic substitutes, init +C2877264|T037|PT|T38.895A|ICD10CM|Adverse effect of other hormones and synthetic substitutes, initial encounter|Adverse effect of other hormones and synthetic substitutes, initial encounter +C2877265|T037|AB|T38.895D|ICD10CM|Adverse effect of hormones and synthetic substitutes, subs|Adverse effect of hormones and synthetic substitutes, subs +C2877265|T037|PT|T38.895D|ICD10CM|Adverse effect of other hormones and synthetic substitutes, subsequent encounter|Adverse effect of other hormones and synthetic substitutes, subsequent encounter +C2877266|T037|AB|T38.895S|ICD10CM|Adverse effect of hormones and synthetic sub, sequela|Adverse effect of hormones and synthetic sub, sequela +C2877266|T037|PT|T38.895S|ICD10CM|Adverse effect of other hormones and synthetic substitutes, sequela|Adverse effect of other hormones and synthetic substitutes, sequela +C2877267|T037|AB|T38.896|ICD10CM|Underdosing of other hormones and synthetic substitutes|Underdosing of other hormones and synthetic substitutes +C2877267|T037|HT|T38.896|ICD10CM|Underdosing of other hormones and synthetic substitutes|Underdosing of other hormones and synthetic substitutes +C2877268|T037|AB|T38.896A|ICD10CM|Underdosing of oth hormones and synthetic substitutes, init|Underdosing of oth hormones and synthetic substitutes, init +C2877268|T037|PT|T38.896A|ICD10CM|Underdosing of other hormones and synthetic substitutes, initial encounter|Underdosing of other hormones and synthetic substitutes, initial encounter +C2877269|T037|AB|T38.896D|ICD10CM|Underdosing of oth hormones and synthetic substitutes, subs|Underdosing of oth hormones and synthetic substitutes, subs +C2877269|T037|PT|T38.896D|ICD10CM|Underdosing of other hormones and synthetic substitutes, subsequent encounter|Underdosing of other hormones and synthetic substitutes, subsequent encounter +C2877270|T037|AB|T38.896S|ICD10CM|Underdosing of hormones and synthetic substitutes, sequela|Underdosing of hormones and synthetic substitutes, sequela +C2877270|T037|PT|T38.896S|ICD10CM|Underdosing of other hormones and synthetic substitutes, sequela|Underdosing of other hormones and synthetic substitutes, sequela +C2877271|T037|AB|T38.9|ICD10CM|And unsp hormone antagonists|And unsp hormone antagonists +C0478432|T037|PS|T38.9|ICD10|Other and unspecified hormone antagonists|Other and unspecified hormone antagonists +C0478432|T037|PX|T38.9|ICD10|Poisoning by other and unspecified hormone antagonists|Poisoning by other and unspecified hormone antagonists +C2877271|T037|HT|T38.9|ICD10CM|Poisoning by, adverse effect of and underdosing of other and unspecified hormone antagonists|Poisoning by, adverse effect of and underdosing of other and unspecified hormone antagonists +C2877272|T037|HT|T38.90|ICD10CM|Poisoning by, adverse effect of and underdosing of unspecified hormone antagonists|Poisoning by, adverse effect of and underdosing of unspecified hormone antagonists +C2877272|T037|AB|T38.90|ICD10CM|Unsp hormone antagonists|Unsp hormone antagonists +C2877274|T037|AB|T38.901|ICD10CM|Poisoning by unsp hormone antagonists, accidental|Poisoning by unsp hormone antagonists, accidental +C2877273|T037|ET|T38.901|ICD10CM|Poisoning by unspecified hormone antagonists NOS|Poisoning by unspecified hormone antagonists NOS +C2877274|T037|HT|T38.901|ICD10CM|Poisoning by unspecified hormone antagonists, accidental (unintentional)|Poisoning by unspecified hormone antagonists, accidental (unintentional) +C2877275|T037|AB|T38.901A|ICD10CM|Poisoning by unsp hormone antagonists, accidental, init|Poisoning by unsp hormone antagonists, accidental, init +C2877275|T037|PT|T38.901A|ICD10CM|Poisoning by unspecified hormone antagonists, accidental (unintentional), initial encounter|Poisoning by unspecified hormone antagonists, accidental (unintentional), initial encounter +C2877276|T037|AB|T38.901D|ICD10CM|Poisoning by unsp hormone antagonists, accidental, subs|Poisoning by unsp hormone antagonists, accidental, subs +C2877276|T037|PT|T38.901D|ICD10CM|Poisoning by unspecified hormone antagonists, accidental (unintentional), subsequent encounter|Poisoning by unspecified hormone antagonists, accidental (unintentional), subsequent encounter +C2877277|T037|AB|T38.901S|ICD10CM|Poisoning by unsp hormone antagonists, accidental, sequela|Poisoning by unsp hormone antagonists, accidental, sequela +C2877277|T037|PT|T38.901S|ICD10CM|Poisoning by unspecified hormone antagonists, accidental (unintentional), sequela|Poisoning by unspecified hormone antagonists, accidental (unintentional), sequela +C2877278|T037|AB|T38.902|ICD10CM|Poisoning by unsp hormone antagonists, intentional self-harm|Poisoning by unsp hormone antagonists, intentional self-harm +C2877278|T037|HT|T38.902|ICD10CM|Poisoning by unspecified hormone antagonists, intentional self-harm|Poisoning by unspecified hormone antagonists, intentional self-harm +C2877279|T037|AB|T38.902A|ICD10CM|Poisoning by unsp hormone antagonists, self-harm, init|Poisoning by unsp hormone antagonists, self-harm, init +C2877279|T037|PT|T38.902A|ICD10CM|Poisoning by unspecified hormone antagonists, intentional self-harm, initial encounter|Poisoning by unspecified hormone antagonists, intentional self-harm, initial encounter +C2877280|T037|AB|T38.902D|ICD10CM|Poisoning by unsp hormone antagonists, self-harm, subs|Poisoning by unsp hormone antagonists, self-harm, subs +C2877280|T037|PT|T38.902D|ICD10CM|Poisoning by unspecified hormone antagonists, intentional self-harm, subsequent encounter|Poisoning by unspecified hormone antagonists, intentional self-harm, subsequent encounter +C2877281|T037|AB|T38.902S|ICD10CM|Poisoning by unsp hormone antagonists, self-harm, sequela|Poisoning by unsp hormone antagonists, self-harm, sequela +C2877281|T037|PT|T38.902S|ICD10CM|Poisoning by unspecified hormone antagonists, intentional self-harm, sequela|Poisoning by unspecified hormone antagonists, intentional self-harm, sequela +C2877282|T037|AB|T38.903|ICD10CM|Poisoning by unspecified hormone antagonists, assault|Poisoning by unspecified hormone antagonists, assault +C2877282|T037|HT|T38.903|ICD10CM|Poisoning by unspecified hormone antagonists, assault|Poisoning by unspecified hormone antagonists, assault +C2877283|T037|AB|T38.903A|ICD10CM|Poisoning by unsp hormone antagonists, assault, init encntr|Poisoning by unsp hormone antagonists, assault, init encntr +C2877283|T037|PT|T38.903A|ICD10CM|Poisoning by unspecified hormone antagonists, assault, initial encounter|Poisoning by unspecified hormone antagonists, assault, initial encounter +C2877284|T037|AB|T38.903D|ICD10CM|Poisoning by unsp hormone antagonists, assault, subs encntr|Poisoning by unsp hormone antagonists, assault, subs encntr +C2877284|T037|PT|T38.903D|ICD10CM|Poisoning by unspecified hormone antagonists, assault, subsequent encounter|Poisoning by unspecified hormone antagonists, assault, subsequent encounter +C2877285|T037|AB|T38.903S|ICD10CM|Poisoning by unsp hormone antagonists, assault, sequela|Poisoning by unsp hormone antagonists, assault, sequela +C2877285|T037|PT|T38.903S|ICD10CM|Poisoning by unspecified hormone antagonists, assault, sequela|Poisoning by unspecified hormone antagonists, assault, sequela +C2877286|T037|AB|T38.904|ICD10CM|Poisoning by unspecified hormone antagonists, undetermined|Poisoning by unspecified hormone antagonists, undetermined +C2877286|T037|HT|T38.904|ICD10CM|Poisoning by unspecified hormone antagonists, undetermined|Poisoning by unspecified hormone antagonists, undetermined +C2877287|T037|AB|T38.904A|ICD10CM|Poisoning by unsp hormone antagonists, undetermined, init|Poisoning by unsp hormone antagonists, undetermined, init +C2877287|T037|PT|T38.904A|ICD10CM|Poisoning by unspecified hormone antagonists, undetermined, initial encounter|Poisoning by unspecified hormone antagonists, undetermined, initial encounter +C2877288|T037|AB|T38.904D|ICD10CM|Poisoning by unsp hormone antagonists, undetermined, subs|Poisoning by unsp hormone antagonists, undetermined, subs +C2877288|T037|PT|T38.904D|ICD10CM|Poisoning by unspecified hormone antagonists, undetermined, subsequent encounter|Poisoning by unspecified hormone antagonists, undetermined, subsequent encounter +C2877289|T037|AB|T38.904S|ICD10CM|Poisoning by unsp hormone antagonists, undetermined, sequela|Poisoning by unsp hormone antagonists, undetermined, sequela +C2877289|T037|PT|T38.904S|ICD10CM|Poisoning by unspecified hormone antagonists, undetermined, sequela|Poisoning by unspecified hormone antagonists, undetermined, sequela +C2877290|T037|AB|T38.905|ICD10CM|Adverse effect of unspecified hormone antagonists|Adverse effect of unspecified hormone antagonists +C2877290|T037|HT|T38.905|ICD10CM|Adverse effect of unspecified hormone antagonists|Adverse effect of unspecified hormone antagonists +C2877291|T037|AB|T38.905A|ICD10CM|Adverse effect of unsp hormone antagonists, init encntr|Adverse effect of unsp hormone antagonists, init encntr +C2877291|T037|PT|T38.905A|ICD10CM|Adverse effect of unspecified hormone antagonists, initial encounter|Adverse effect of unspecified hormone antagonists, initial encounter +C2877292|T037|AB|T38.905D|ICD10CM|Adverse effect of unsp hormone antagonists, subs encntr|Adverse effect of unsp hormone antagonists, subs encntr +C2877292|T037|PT|T38.905D|ICD10CM|Adverse effect of unspecified hormone antagonists, subsequent encounter|Adverse effect of unspecified hormone antagonists, subsequent encounter +C2877293|T037|AB|T38.905S|ICD10CM|Adverse effect of unspecified hormone antagonists, sequela|Adverse effect of unspecified hormone antagonists, sequela +C2877293|T037|PT|T38.905S|ICD10CM|Adverse effect of unspecified hormone antagonists, sequela|Adverse effect of unspecified hormone antagonists, sequela +C2877294|T037|AB|T38.906|ICD10CM|Underdosing of unspecified hormone antagonists|Underdosing of unspecified hormone antagonists +C2877294|T037|HT|T38.906|ICD10CM|Underdosing of unspecified hormone antagonists|Underdosing of unspecified hormone antagonists +C2877295|T037|AB|T38.906A|ICD10CM|Underdosing of unspecified hormone antagonists, init encntr|Underdosing of unspecified hormone antagonists, init encntr +C2877295|T037|PT|T38.906A|ICD10CM|Underdosing of unspecified hormone antagonists, initial encounter|Underdosing of unspecified hormone antagonists, initial encounter +C2877296|T037|AB|T38.906D|ICD10CM|Underdosing of unspecified hormone antagonists, subs encntr|Underdosing of unspecified hormone antagonists, subs encntr +C2877296|T037|PT|T38.906D|ICD10CM|Underdosing of unspecified hormone antagonists, subsequent encounter|Underdosing of unspecified hormone antagonists, subsequent encounter +C2877297|T037|AB|T38.906S|ICD10CM|Underdosing of unspecified hormone antagonists, sequela|Underdosing of unspecified hormone antagonists, sequela +C2877297|T037|PT|T38.906S|ICD10CM|Underdosing of unspecified hormone antagonists, sequela|Underdosing of unspecified hormone antagonists, sequela +C2877298|T037|AB|T38.99|ICD10CM|Hormone antagonists|Hormone antagonists +C2877298|T037|HT|T38.99|ICD10CM|Poisoning by, adverse effect of and underdosing of other hormone antagonists|Poisoning by, adverse effect of and underdosing of other hormone antagonists +C2877300|T037|AB|T38.991|ICD10CM|Poisoning by oth hormone antagonists, accidental|Poisoning by oth hormone antagonists, accidental +C2877299|T037|ET|T38.991|ICD10CM|Poisoning by other hormone antagonists NOS|Poisoning by other hormone antagonists NOS +C2877300|T037|HT|T38.991|ICD10CM|Poisoning by other hormone antagonists, accidental (unintentional)|Poisoning by other hormone antagonists, accidental (unintentional) +C2877301|T037|AB|T38.991A|ICD10CM|Poisoning by oth hormone antagonists, accidental, init|Poisoning by oth hormone antagonists, accidental, init +C2877301|T037|PT|T38.991A|ICD10CM|Poisoning by other hormone antagonists, accidental (unintentional), initial encounter|Poisoning by other hormone antagonists, accidental (unintentional), initial encounter +C2877302|T037|AB|T38.991D|ICD10CM|Poisoning by oth hormone antagonists, accidental, subs|Poisoning by oth hormone antagonists, accidental, subs +C2877302|T037|PT|T38.991D|ICD10CM|Poisoning by other hormone antagonists, accidental (unintentional), subsequent encounter|Poisoning by other hormone antagonists, accidental (unintentional), subsequent encounter +C2877303|T037|AB|T38.991S|ICD10CM|Poisoning by oth hormone antagonists, accidental, sequela|Poisoning by oth hormone antagonists, accidental, sequela +C2877303|T037|PT|T38.991S|ICD10CM|Poisoning by other hormone antagonists, accidental (unintentional), sequela|Poisoning by other hormone antagonists, accidental (unintentional), sequela +C2877304|T037|AB|T38.992|ICD10CM|Poisoning by oth hormone antagonists, intentional self-harm|Poisoning by oth hormone antagonists, intentional self-harm +C2877304|T037|HT|T38.992|ICD10CM|Poisoning by other hormone antagonists, intentional self-harm|Poisoning by other hormone antagonists, intentional self-harm +C2877305|T037|AB|T38.992A|ICD10CM|Poisoning by oth hormone antagonists, self-harm, init|Poisoning by oth hormone antagonists, self-harm, init +C2877305|T037|PT|T38.992A|ICD10CM|Poisoning by other hormone antagonists, intentional self-harm, initial encounter|Poisoning by other hormone antagonists, intentional self-harm, initial encounter +C2877306|T037|AB|T38.992D|ICD10CM|Poisoning by oth hormone antagonists, self-harm, subs|Poisoning by oth hormone antagonists, self-harm, subs +C2877306|T037|PT|T38.992D|ICD10CM|Poisoning by other hormone antagonists, intentional self-harm, subsequent encounter|Poisoning by other hormone antagonists, intentional self-harm, subsequent encounter +C2877307|T037|AB|T38.992S|ICD10CM|Poisoning by oth hormone antagonists, self-harm, sequela|Poisoning by oth hormone antagonists, self-harm, sequela +C2877307|T037|PT|T38.992S|ICD10CM|Poisoning by other hormone antagonists, intentional self-harm, sequela|Poisoning by other hormone antagonists, intentional self-harm, sequela +C2877308|T037|AB|T38.993|ICD10CM|Poisoning by other hormone antagonists, assault|Poisoning by other hormone antagonists, assault +C2877308|T037|HT|T38.993|ICD10CM|Poisoning by other hormone antagonists, assault|Poisoning by other hormone antagonists, assault +C2877309|T037|AB|T38.993A|ICD10CM|Poisoning by other hormone antagonists, assault, init encntr|Poisoning by other hormone antagonists, assault, init encntr +C2877309|T037|PT|T38.993A|ICD10CM|Poisoning by other hormone antagonists, assault, initial encounter|Poisoning by other hormone antagonists, assault, initial encounter +C2877310|T037|AB|T38.993D|ICD10CM|Poisoning by other hormone antagonists, assault, subs encntr|Poisoning by other hormone antagonists, assault, subs encntr +C2877310|T037|PT|T38.993D|ICD10CM|Poisoning by other hormone antagonists, assault, subsequent encounter|Poisoning by other hormone antagonists, assault, subsequent encounter +C2877311|T037|AB|T38.993S|ICD10CM|Poisoning by other hormone antagonists, assault, sequela|Poisoning by other hormone antagonists, assault, sequela +C2877311|T037|PT|T38.993S|ICD10CM|Poisoning by other hormone antagonists, assault, sequela|Poisoning by other hormone antagonists, assault, sequela +C2877312|T037|AB|T38.994|ICD10CM|Poisoning by other hormone antagonists, undetermined|Poisoning by other hormone antagonists, undetermined +C2877312|T037|HT|T38.994|ICD10CM|Poisoning by other hormone antagonists, undetermined|Poisoning by other hormone antagonists, undetermined +C2877313|T037|AB|T38.994A|ICD10CM|Poisoning by oth hormone antagonists, undetermined, init|Poisoning by oth hormone antagonists, undetermined, init +C2877313|T037|PT|T38.994A|ICD10CM|Poisoning by other hormone antagonists, undetermined, initial encounter|Poisoning by other hormone antagonists, undetermined, initial encounter +C2877314|T037|AB|T38.994D|ICD10CM|Poisoning by oth hormone antagonists, undetermined, subs|Poisoning by oth hormone antagonists, undetermined, subs +C2877314|T037|PT|T38.994D|ICD10CM|Poisoning by other hormone antagonists, undetermined, subsequent encounter|Poisoning by other hormone antagonists, undetermined, subsequent encounter +C2877315|T037|AB|T38.994S|ICD10CM|Poisoning by oth hormone antagonists, undetermined, sequela|Poisoning by oth hormone antagonists, undetermined, sequela +C2877315|T037|PT|T38.994S|ICD10CM|Poisoning by other hormone antagonists, undetermined, sequela|Poisoning by other hormone antagonists, undetermined, sequela +C2877316|T037|AB|T38.995|ICD10CM|Adverse effect of other hormone antagonists|Adverse effect of other hormone antagonists +C2877316|T037|HT|T38.995|ICD10CM|Adverse effect of other hormone antagonists|Adverse effect of other hormone antagonists +C2877317|T037|AB|T38.995A|ICD10CM|Adverse effect of other hormone antagonists, init encntr|Adverse effect of other hormone antagonists, init encntr +C2877317|T037|PT|T38.995A|ICD10CM|Adverse effect of other hormone antagonists, initial encounter|Adverse effect of other hormone antagonists, initial encounter +C2877318|T037|AB|T38.995D|ICD10CM|Adverse effect of other hormone antagonists, subs encntr|Adverse effect of other hormone antagonists, subs encntr +C2877318|T037|PT|T38.995D|ICD10CM|Adverse effect of other hormone antagonists, subsequent encounter|Adverse effect of other hormone antagonists, subsequent encounter +C2877319|T037|AB|T38.995S|ICD10CM|Adverse effect of other hormone antagonists, sequela|Adverse effect of other hormone antagonists, sequela +C2877319|T037|PT|T38.995S|ICD10CM|Adverse effect of other hormone antagonists, sequela|Adverse effect of other hormone antagonists, sequela +C2877320|T037|AB|T38.996|ICD10CM|Underdosing of other hormone antagonists|Underdosing of other hormone antagonists +C2877320|T037|HT|T38.996|ICD10CM|Underdosing of other hormone antagonists|Underdosing of other hormone antagonists +C2877321|T037|AB|T38.996A|ICD10CM|Underdosing of other hormone antagonists, initial encounter|Underdosing of other hormone antagonists, initial encounter +C2877321|T037|PT|T38.996A|ICD10CM|Underdosing of other hormone antagonists, initial encounter|Underdosing of other hormone antagonists, initial encounter +C2877322|T037|AB|T38.996D|ICD10CM|Underdosing of other hormone antagonists, subs encntr|Underdosing of other hormone antagonists, subs encntr +C2877322|T037|PT|T38.996D|ICD10CM|Underdosing of other hormone antagonists, subsequent encounter|Underdosing of other hormone antagonists, subsequent encounter +C2877323|T037|AB|T38.996S|ICD10CM|Underdosing of other hormone antagonists, sequela|Underdosing of other hormone antagonists, sequela +C2877323|T037|PT|T38.996S|ICD10CM|Underdosing of other hormone antagonists, sequela|Underdosing of other hormone antagonists, sequela +C2877324|T037|AB|T39|ICD10CM|Nonopioid analgesics, antipyretics and antirheumatics|Nonopioid analgesics, antipyretics and antirheumatics +C0496972|T037|HT|T39|ICD10|Poisoning by nonopioid analgesics, antipyretics and antirheumatics|Poisoning by nonopioid analgesics, antipyretics and antirheumatics +C0161544|T037|PX|T39.0|ICD10|Poisoning by salicylates|Poisoning by salicylates +C2877351|T037|HT|T39.0|ICD10CM|Poisoning by, adverse effect of and underdosing of salicylates|Poisoning by, adverse effect of and underdosing of salicylates +C2877351|T037|AB|T39.0|ICD10CM|Salicylates|Salicylates +C0161544|T037|PS|T39.0|ICD10|Salicylates|Salicylates +C2877327|T037|ET|T39.01|ICD10CM|Poisoning by, adverse effect of and underdosing of acetylsalicylic acid|Poisoning by, adverse effect of and underdosing of acetylsalicylic acid +C2877327|T037|AB|T39.01|ICD10CM|Poisoning by, adverse effect of and underdosing of aspirin|Poisoning by, adverse effect of and underdosing of aspirin +C2877327|T037|HT|T39.01|ICD10CM|Poisoning by, adverse effect of and underdosing of aspirin|Poisoning by, adverse effect of and underdosing of aspirin +C2877328|T037|AB|T39.011|ICD10CM|Poisoning by aspirin, accidental (unintentional)|Poisoning by aspirin, accidental (unintentional) +C2877328|T037|HT|T39.011|ICD10CM|Poisoning by aspirin, accidental (unintentional)|Poisoning by aspirin, accidental (unintentional) +C2877329|T037|AB|T39.011A|ICD10CM|Poisoning by aspirin, accidental (unintentional), init|Poisoning by aspirin, accidental (unintentional), init +C2877329|T037|PT|T39.011A|ICD10CM|Poisoning by aspirin, accidental (unintentional), initial encounter|Poisoning by aspirin, accidental (unintentional), initial encounter +C2877330|T037|AB|T39.011D|ICD10CM|Poisoning by aspirin, accidental (unintentional), subs|Poisoning by aspirin, accidental (unintentional), subs +C2877330|T037|PT|T39.011D|ICD10CM|Poisoning by aspirin, accidental (unintentional), subsequent encounter|Poisoning by aspirin, accidental (unintentional), subsequent encounter +C2877331|T037|AB|T39.011S|ICD10CM|Poisoning by aspirin, accidental (unintentional), sequela|Poisoning by aspirin, accidental (unintentional), sequela +C2877331|T037|PT|T39.011S|ICD10CM|Poisoning by aspirin, accidental (unintentional), sequela|Poisoning by aspirin, accidental (unintentional), sequela +C2877332|T037|AB|T39.012|ICD10CM|Poisoning by aspirin, intentional self-harm|Poisoning by aspirin, intentional self-harm +C2877332|T037|HT|T39.012|ICD10CM|Poisoning by aspirin, intentional self-harm|Poisoning by aspirin, intentional self-harm +C2877333|T037|AB|T39.012A|ICD10CM|Poisoning by aspirin, intentional self-harm, init encntr|Poisoning by aspirin, intentional self-harm, init encntr +C2877333|T037|PT|T39.012A|ICD10CM|Poisoning by aspirin, intentional self-harm, initial encounter|Poisoning by aspirin, intentional self-harm, initial encounter +C2877334|T037|AB|T39.012D|ICD10CM|Poisoning by aspirin, intentional self-harm, subs encntr|Poisoning by aspirin, intentional self-harm, subs encntr +C2877334|T037|PT|T39.012D|ICD10CM|Poisoning by aspirin, intentional self-harm, subsequent encounter|Poisoning by aspirin, intentional self-harm, subsequent encounter +C2877335|T037|AB|T39.012S|ICD10CM|Poisoning by aspirin, intentional self-harm, sequela|Poisoning by aspirin, intentional self-harm, sequela +C2877335|T037|PT|T39.012S|ICD10CM|Poisoning by aspirin, intentional self-harm, sequela|Poisoning by aspirin, intentional self-harm, sequela +C2877336|T037|AB|T39.013|ICD10CM|Poisoning by aspirin, assault|Poisoning by aspirin, assault +C2877336|T037|HT|T39.013|ICD10CM|Poisoning by aspirin, assault|Poisoning by aspirin, assault +C2877337|T037|AB|T39.013A|ICD10CM|Poisoning by aspirin, assault, initial encounter|Poisoning by aspirin, assault, initial encounter +C2877337|T037|PT|T39.013A|ICD10CM|Poisoning by aspirin, assault, initial encounter|Poisoning by aspirin, assault, initial encounter +C2877338|T037|AB|T39.013D|ICD10CM|Poisoning by aspirin, assault, subsequent encounter|Poisoning by aspirin, assault, subsequent encounter +C2877338|T037|PT|T39.013D|ICD10CM|Poisoning by aspirin, assault, subsequent encounter|Poisoning by aspirin, assault, subsequent encounter +C2877339|T037|AB|T39.013S|ICD10CM|Poisoning by aspirin, assault, sequela|Poisoning by aspirin, assault, sequela +C2877339|T037|PT|T39.013S|ICD10CM|Poisoning by aspirin, assault, sequela|Poisoning by aspirin, assault, sequela +C2877340|T037|AB|T39.014|ICD10CM|Poisoning by aspirin, undetermined|Poisoning by aspirin, undetermined +C2877340|T037|HT|T39.014|ICD10CM|Poisoning by aspirin, undetermined|Poisoning by aspirin, undetermined +C2877341|T037|AB|T39.014A|ICD10CM|Poisoning by aspirin, undetermined, initial encounter|Poisoning by aspirin, undetermined, initial encounter +C2877341|T037|PT|T39.014A|ICD10CM|Poisoning by aspirin, undetermined, initial encounter|Poisoning by aspirin, undetermined, initial encounter +C2877342|T037|AB|T39.014D|ICD10CM|Poisoning by aspirin, undetermined, subsequent encounter|Poisoning by aspirin, undetermined, subsequent encounter +C2877342|T037|PT|T39.014D|ICD10CM|Poisoning by aspirin, undetermined, subsequent encounter|Poisoning by aspirin, undetermined, subsequent encounter +C2877343|T037|AB|T39.014S|ICD10CM|Poisoning by aspirin, undetermined, sequela|Poisoning by aspirin, undetermined, sequela +C2877343|T037|PT|T39.014S|ICD10CM|Poisoning by aspirin, undetermined, sequela|Poisoning by aspirin, undetermined, sequela +C0413696|T046|AB|T39.015|ICD10CM|Adverse effect of aspirin|Adverse effect of aspirin +C0413696|T046|HT|T39.015|ICD10CM|Adverse effect of aspirin|Adverse effect of aspirin +C2877344|T037|AB|T39.015A|ICD10CM|Adverse effect of aspirin, initial encounter|Adverse effect of aspirin, initial encounter +C2877344|T037|PT|T39.015A|ICD10CM|Adverse effect of aspirin, initial encounter|Adverse effect of aspirin, initial encounter +C2877345|T037|AB|T39.015D|ICD10CM|Adverse effect of aspirin, subsequent encounter|Adverse effect of aspirin, subsequent encounter +C2877345|T037|PT|T39.015D|ICD10CM|Adverse effect of aspirin, subsequent encounter|Adverse effect of aspirin, subsequent encounter +C2877346|T037|AB|T39.015S|ICD10CM|Adverse effect of aspirin, sequela|Adverse effect of aspirin, sequela +C2877346|T037|PT|T39.015S|ICD10CM|Adverse effect of aspirin, sequela|Adverse effect of aspirin, sequela +C2877347|T033|HT|T39.016|ICD10CM|Underdosing of aspirin|Underdosing of aspirin +C2877347|T033|AB|T39.016|ICD10CM|Underdosing of aspirin|Underdosing of aspirin +C2877348|T037|AB|T39.016A|ICD10CM|Underdosing of aspirin, initial encounter|Underdosing of aspirin, initial encounter +C2877348|T037|PT|T39.016A|ICD10CM|Underdosing of aspirin, initial encounter|Underdosing of aspirin, initial encounter +C2877349|T037|AB|T39.016D|ICD10CM|Underdosing of aspirin, subsequent encounter|Underdosing of aspirin, subsequent encounter +C2877349|T037|PT|T39.016D|ICD10CM|Underdosing of aspirin, subsequent encounter|Underdosing of aspirin, subsequent encounter +C2877350|T037|AB|T39.016S|ICD10CM|Underdosing of aspirin, sequela|Underdosing of aspirin, sequela +C2877350|T037|PT|T39.016S|ICD10CM|Underdosing of aspirin, sequela|Underdosing of aspirin, sequela +C2877351|T037|HT|T39.09|ICD10CM|Poisoning by, adverse effect of and underdosing of other salicylates|Poisoning by, adverse effect of and underdosing of other salicylates +C2877351|T037|AB|T39.09|ICD10CM|Salicylates|Salicylates +C0161544|T037|ET|T39.091|ICD10CM|Poisoning by salicylates NOS|Poisoning by salicylates NOS +C2877352|T037|AB|T39.091|ICD10CM|Poisoning by salicylates, accidental (unintentional)|Poisoning by salicylates, accidental (unintentional) +C2877352|T037|HT|T39.091|ICD10CM|Poisoning by salicylates, accidental (unintentional)|Poisoning by salicylates, accidental (unintentional) +C2877353|T037|AB|T39.091A|ICD10CM|Poisoning by salicylates, accidental (unintentional), init|Poisoning by salicylates, accidental (unintentional), init +C2877353|T037|PT|T39.091A|ICD10CM|Poisoning by salicylates, accidental (unintentional), initial encounter|Poisoning by salicylates, accidental (unintentional), initial encounter +C2877354|T037|AB|T39.091D|ICD10CM|Poisoning by salicylates, accidental (unintentional), subs|Poisoning by salicylates, accidental (unintentional), subs +C2877354|T037|PT|T39.091D|ICD10CM|Poisoning by salicylates, accidental (unintentional), subsequent encounter|Poisoning by salicylates, accidental (unintentional), subsequent encounter +C2877355|T037|PT|T39.091S|ICD10CM|Poisoning by salicylates, accidental (unintentional), sequela|Poisoning by salicylates, accidental (unintentional), sequela +C2877355|T037|AB|T39.091S|ICD10CM|Poisoning by salicylates, accidental, sequela|Poisoning by salicylates, accidental, sequela +C2877356|T037|AB|T39.092|ICD10CM|Poisoning by salicylates, intentional self-harm|Poisoning by salicylates, intentional self-harm +C2877356|T037|HT|T39.092|ICD10CM|Poisoning by salicylates, intentional self-harm|Poisoning by salicylates, intentional self-harm +C2877357|T037|AB|T39.092A|ICD10CM|Poisoning by salicylates, intentional self-harm, init encntr|Poisoning by salicylates, intentional self-harm, init encntr +C2877357|T037|PT|T39.092A|ICD10CM|Poisoning by salicylates, intentional self-harm, initial encounter|Poisoning by salicylates, intentional self-harm, initial encounter +C2877358|T037|AB|T39.092D|ICD10CM|Poisoning by salicylates, intentional self-harm, subs encntr|Poisoning by salicylates, intentional self-harm, subs encntr +C2877358|T037|PT|T39.092D|ICD10CM|Poisoning by salicylates, intentional self-harm, subsequent encounter|Poisoning by salicylates, intentional self-harm, subsequent encounter +C2877359|T037|AB|T39.092S|ICD10CM|Poisoning by salicylates, intentional self-harm, sequela|Poisoning by salicylates, intentional self-harm, sequela +C2877359|T037|PT|T39.092S|ICD10CM|Poisoning by salicylates, intentional self-harm, sequela|Poisoning by salicylates, intentional self-harm, sequela +C2877360|T037|AB|T39.093|ICD10CM|Poisoning by salicylates, assault|Poisoning by salicylates, assault +C2877360|T037|HT|T39.093|ICD10CM|Poisoning by salicylates, assault|Poisoning by salicylates, assault +C2877361|T037|AB|T39.093A|ICD10CM|Poisoning by salicylates, assault, initial encounter|Poisoning by salicylates, assault, initial encounter +C2877361|T037|PT|T39.093A|ICD10CM|Poisoning by salicylates, assault, initial encounter|Poisoning by salicylates, assault, initial encounter +C2877362|T037|AB|T39.093D|ICD10CM|Poisoning by salicylates, assault, subsequent encounter|Poisoning by salicylates, assault, subsequent encounter +C2877362|T037|PT|T39.093D|ICD10CM|Poisoning by salicylates, assault, subsequent encounter|Poisoning by salicylates, assault, subsequent encounter +C2877363|T037|AB|T39.093S|ICD10CM|Poisoning by salicylates, assault, sequela|Poisoning by salicylates, assault, sequela +C2877363|T037|PT|T39.093S|ICD10CM|Poisoning by salicylates, assault, sequela|Poisoning by salicylates, assault, sequela +C2877364|T037|AB|T39.094|ICD10CM|Poisoning by salicylates, undetermined|Poisoning by salicylates, undetermined +C2877364|T037|HT|T39.094|ICD10CM|Poisoning by salicylates, undetermined|Poisoning by salicylates, undetermined +C2877365|T037|AB|T39.094A|ICD10CM|Poisoning by salicylates, undetermined, initial encounter|Poisoning by salicylates, undetermined, initial encounter +C2877365|T037|PT|T39.094A|ICD10CM|Poisoning by salicylates, undetermined, initial encounter|Poisoning by salicylates, undetermined, initial encounter +C2877366|T037|AB|T39.094D|ICD10CM|Poisoning by salicylates, undetermined, subsequent encounter|Poisoning by salicylates, undetermined, subsequent encounter +C2877366|T037|PT|T39.094D|ICD10CM|Poisoning by salicylates, undetermined, subsequent encounter|Poisoning by salicylates, undetermined, subsequent encounter +C2877367|T037|AB|T39.094S|ICD10CM|Poisoning by salicylates, undetermined, sequela|Poisoning by salicylates, undetermined, sequela +C2877367|T037|PT|T39.094S|ICD10CM|Poisoning by salicylates, undetermined, sequela|Poisoning by salicylates, undetermined, sequela +C0413695|T046|AB|T39.095|ICD10CM|Adverse effect of salicylates|Adverse effect of salicylates +C0413695|T046|HT|T39.095|ICD10CM|Adverse effect of salicylates|Adverse effect of salicylates +C2877369|T037|AB|T39.095A|ICD10CM|Adverse effect of salicylates, initial encounter|Adverse effect of salicylates, initial encounter +C2877369|T037|PT|T39.095A|ICD10CM|Adverse effect of salicylates, initial encounter|Adverse effect of salicylates, initial encounter +C2877370|T037|AB|T39.095D|ICD10CM|Adverse effect of salicylates, subsequent encounter|Adverse effect of salicylates, subsequent encounter +C2877370|T037|PT|T39.095D|ICD10CM|Adverse effect of salicylates, subsequent encounter|Adverse effect of salicylates, subsequent encounter +C2877371|T037|AB|T39.095S|ICD10CM|Adverse effect of salicylates, sequela|Adverse effect of salicylates, sequela +C2877371|T037|PT|T39.095S|ICD10CM|Adverse effect of salicylates, sequela|Adverse effect of salicylates, sequela +C2877372|T033|HT|T39.096|ICD10CM|Underdosing of salicylates|Underdosing of salicylates +C2877372|T033|AB|T39.096|ICD10CM|Underdosing of salicylates|Underdosing of salicylates +C2877373|T037|AB|T39.096A|ICD10CM|Underdosing of salicylates, initial encounter|Underdosing of salicylates, initial encounter +C2877373|T037|PT|T39.096A|ICD10CM|Underdosing of salicylates, initial encounter|Underdosing of salicylates, initial encounter +C2877374|T037|AB|T39.096D|ICD10CM|Underdosing of salicylates, subsequent encounter|Underdosing of salicylates, subsequent encounter +C2877374|T037|PT|T39.096D|ICD10CM|Underdosing of salicylates, subsequent encounter|Underdosing of salicylates, subsequent encounter +C2877375|T037|AB|T39.096S|ICD10CM|Underdosing of salicylates, sequela|Underdosing of salicylates, sequela +C2877375|T037|PT|T39.096S|ICD10CM|Underdosing of salicylates, sequela|Underdosing of salicylates, sequela +C2877376|T037|AB|T39.1|ICD10CM|4-Aminophenol derivatives|4-Aminophenol derivatives +C0496968|T037|PS|T39.1|ICD10|4-Aminophenol derivatives|4-Aminophenol derivatives +C0496968|T037|PX|T39.1|ICD10|Poisoning by 4-aminophenol derivatives|Poisoning by 4-aminophenol derivatives +C2877376|T037|HT|T39.1|ICD10CM|Poisoning by, adverse effect of and underdosing of 4-Aminophenol derivatives|Poisoning by, adverse effect of and underdosing of 4-Aminophenol derivatives +C2877376|T037|AB|T39.1X|ICD10CM|4-Aminophenol derivatives|4-Aminophenol derivatives +C2877376|T037|HT|T39.1X|ICD10CM|Poisoning by, adverse effect of and underdosing of 4-Aminophenol derivatives|Poisoning by, adverse effect of and underdosing of 4-Aminophenol derivatives +C0496968|T037|ET|T39.1X1|ICD10CM|Poisoning by 4-Aminophenol derivatives NOS|Poisoning by 4-Aminophenol derivatives NOS +C2877377|T037|AB|T39.1X1|ICD10CM|Poisoning by 4-Aminophenol derivatives, accidental|Poisoning by 4-Aminophenol derivatives, accidental +C2877377|T037|HT|T39.1X1|ICD10CM|Poisoning by 4-Aminophenol derivatives, accidental (unintentional)|Poisoning by 4-Aminophenol derivatives, accidental (unintentional) +C2877378|T037|PT|T39.1X1A|ICD10CM|Poisoning by 4-Aminophenol derivatives, accidental (unintentional), initial encounter|Poisoning by 4-Aminophenol derivatives, accidental (unintentional), initial encounter +C2877378|T037|AB|T39.1X1A|ICD10CM|Poisoning by 4-Aminophenol derivatives, accidental, init|Poisoning by 4-Aminophenol derivatives, accidental, init +C2877379|T037|PT|T39.1X1D|ICD10CM|Poisoning by 4-Aminophenol derivatives, accidental (unintentional), subsequent encounter|Poisoning by 4-Aminophenol derivatives, accidental (unintentional), subsequent encounter +C2877379|T037|AB|T39.1X1D|ICD10CM|Poisoning by 4-Aminophenol derivatives, accidental, subs|Poisoning by 4-Aminophenol derivatives, accidental, subs +C2877380|T037|PT|T39.1X1S|ICD10CM|Poisoning by 4-Aminophenol derivatives, accidental (unintentional), sequela|Poisoning by 4-Aminophenol derivatives, accidental (unintentional), sequela +C2877380|T037|AB|T39.1X1S|ICD10CM|Poisoning by 4-Aminophenol derivatives, accidental, sequela|Poisoning by 4-Aminophenol derivatives, accidental, sequela +C2877381|T037|HT|T39.1X2|ICD10CM|Poisoning by 4-Aminophenol derivatives, intentional self-harm|Poisoning by 4-Aminophenol derivatives, intentional self-harm +C2877381|T037|AB|T39.1X2|ICD10CM|Poisoning by 4-Aminophenol derivatives, self-harm|Poisoning by 4-Aminophenol derivatives, self-harm +C2877382|T037|PT|T39.1X2A|ICD10CM|Poisoning by 4-Aminophenol derivatives, intentional self-harm, initial encounter|Poisoning by 4-Aminophenol derivatives, intentional self-harm, initial encounter +C2877382|T037|AB|T39.1X2A|ICD10CM|Poisoning by 4-Aminophenol derivatives, self-harm, init|Poisoning by 4-Aminophenol derivatives, self-harm, init +C2877383|T037|PT|T39.1X2D|ICD10CM|Poisoning by 4-Aminophenol derivatives, intentional self-harm, subsequent encounter|Poisoning by 4-Aminophenol derivatives, intentional self-harm, subsequent encounter +C2877383|T037|AB|T39.1X2D|ICD10CM|Poisoning by 4-Aminophenol derivatives, self-harm, subs|Poisoning by 4-Aminophenol derivatives, self-harm, subs +C2877384|T037|PT|T39.1X2S|ICD10CM|Poisoning by 4-Aminophenol derivatives, intentional self-harm, sequela|Poisoning by 4-Aminophenol derivatives, intentional self-harm, sequela +C2877384|T037|AB|T39.1X2S|ICD10CM|Poisoning by 4-Aminophenol derivatives, self-harm, sequela|Poisoning by 4-Aminophenol derivatives, self-harm, sequela +C2877385|T037|AB|T39.1X3|ICD10CM|Poisoning by 4-Aminophenol derivatives, assault|Poisoning by 4-Aminophenol derivatives, assault +C2877385|T037|HT|T39.1X3|ICD10CM|Poisoning by 4-Aminophenol derivatives, assault|Poisoning by 4-Aminophenol derivatives, assault +C2877386|T037|AB|T39.1X3A|ICD10CM|Poisoning by 4-Aminophenol derivatives, assault, init encntr|Poisoning by 4-Aminophenol derivatives, assault, init encntr +C2877386|T037|PT|T39.1X3A|ICD10CM|Poisoning by 4-Aminophenol derivatives, assault, initial encounter|Poisoning by 4-Aminophenol derivatives, assault, initial encounter +C2877387|T037|AB|T39.1X3D|ICD10CM|Poisoning by 4-Aminophenol derivatives, assault, subs encntr|Poisoning by 4-Aminophenol derivatives, assault, subs encntr +C2877387|T037|PT|T39.1X3D|ICD10CM|Poisoning by 4-Aminophenol derivatives, assault, subsequent encounter|Poisoning by 4-Aminophenol derivatives, assault, subsequent encounter +C2877388|T037|AB|T39.1X3S|ICD10CM|Poisoning by 4-Aminophenol derivatives, assault, sequela|Poisoning by 4-Aminophenol derivatives, assault, sequela +C2877388|T037|PT|T39.1X3S|ICD10CM|Poisoning by 4-Aminophenol derivatives, assault, sequela|Poisoning by 4-Aminophenol derivatives, assault, sequela +C2877389|T037|AB|T39.1X4|ICD10CM|Poisoning by 4-Aminophenol derivatives, undetermined|Poisoning by 4-Aminophenol derivatives, undetermined +C2877389|T037|HT|T39.1X4|ICD10CM|Poisoning by 4-Aminophenol derivatives, undetermined|Poisoning by 4-Aminophenol derivatives, undetermined +C2877390|T037|AB|T39.1X4A|ICD10CM|Poisoning by 4-Aminophenol derivatives, undetermined, init|Poisoning by 4-Aminophenol derivatives, undetermined, init +C2877390|T037|PT|T39.1X4A|ICD10CM|Poisoning by 4-Aminophenol derivatives, undetermined, initial encounter|Poisoning by 4-Aminophenol derivatives, undetermined, initial encounter +C2877391|T037|AB|T39.1X4D|ICD10CM|Poisoning by 4-Aminophenol derivatives, undetermined, subs|Poisoning by 4-Aminophenol derivatives, undetermined, subs +C2877391|T037|PT|T39.1X4D|ICD10CM|Poisoning by 4-Aminophenol derivatives, undetermined, subsequent encounter|Poisoning by 4-Aminophenol derivatives, undetermined, subsequent encounter +C2877392|T037|AB|T39.1X4S|ICD10CM|Poisoning by 4-Aminophenol derivatives, undet, sequela|Poisoning by 4-Aminophenol derivatives, undet, sequela +C2877392|T037|PT|T39.1X4S|ICD10CM|Poisoning by 4-Aminophenol derivatives, undetermined, sequela|Poisoning by 4-Aminophenol derivatives, undetermined, sequela +C2877393|T037|AB|T39.1X5|ICD10CM|Adverse effect of 4-Aminophenol derivatives|Adverse effect of 4-Aminophenol derivatives +C2877393|T037|HT|T39.1X5|ICD10CM|Adverse effect of 4-Aminophenol derivatives|Adverse effect of 4-Aminophenol derivatives +C2877394|T037|AB|T39.1X5A|ICD10CM|Adverse effect of 4-Aminophenol derivatives, init encntr|Adverse effect of 4-Aminophenol derivatives, init encntr +C2877394|T037|PT|T39.1X5A|ICD10CM|Adverse effect of 4-Aminophenol derivatives, initial encounter|Adverse effect of 4-Aminophenol derivatives, initial encounter +C2877395|T037|AB|T39.1X5D|ICD10CM|Adverse effect of 4-Aminophenol derivatives, subs encntr|Adverse effect of 4-Aminophenol derivatives, subs encntr +C2877395|T037|PT|T39.1X5D|ICD10CM|Adverse effect of 4-Aminophenol derivatives, subsequent encounter|Adverse effect of 4-Aminophenol derivatives, subsequent encounter +C2877396|T037|AB|T39.1X5S|ICD10CM|Adverse effect of 4-Aminophenol derivatives, sequela|Adverse effect of 4-Aminophenol derivatives, sequela +C2877396|T037|PT|T39.1X5S|ICD10CM|Adverse effect of 4-Aminophenol derivatives, sequela|Adverse effect of 4-Aminophenol derivatives, sequela +C2877397|T037|AB|T39.1X6|ICD10CM|Underdosing of 4-Aminophenol derivatives|Underdosing of 4-Aminophenol derivatives +C2877397|T037|HT|T39.1X6|ICD10CM|Underdosing of 4-Aminophenol derivatives|Underdosing of 4-Aminophenol derivatives +C2877398|T037|AB|T39.1X6A|ICD10CM|Underdosing of 4-Aminophenol derivatives, initial encounter|Underdosing of 4-Aminophenol derivatives, initial encounter +C2877398|T037|PT|T39.1X6A|ICD10CM|Underdosing of 4-Aminophenol derivatives, initial encounter|Underdosing of 4-Aminophenol derivatives, initial encounter +C2877399|T037|AB|T39.1X6D|ICD10CM|Underdosing of 4-Aminophenol derivatives, subs encntr|Underdosing of 4-Aminophenol derivatives, subs encntr +C2877399|T037|PT|T39.1X6D|ICD10CM|Underdosing of 4-Aminophenol derivatives, subsequent encounter|Underdosing of 4-Aminophenol derivatives, subsequent encounter +C2877400|T037|AB|T39.1X6S|ICD10CM|Underdosing of 4-Aminophenol derivatives, sequela|Underdosing of 4-Aminophenol derivatives, sequela +C2877400|T037|PT|T39.1X6S|ICD10CM|Underdosing of 4-Aminophenol derivatives, sequela|Underdosing of 4-Aminophenol derivatives, sequela +C0496969|T037|PX|T39.2|ICD10|Poisoning by pyrazolone derivatives|Poisoning by pyrazolone derivatives +C2877401|T037|HT|T39.2|ICD10CM|Poisoning by, adverse effect of and underdosing of pyrazolone derivatives|Poisoning by, adverse effect of and underdosing of pyrazolone derivatives +C2877401|T037|AB|T39.2|ICD10CM|Pyrazolone derivatives|Pyrazolone derivatives +C0496969|T037|PS|T39.2|ICD10|Pyrazolone derivatives|Pyrazolone derivatives +C2877401|T037|HT|T39.2X|ICD10CM|Poisoning by, adverse effect of and underdosing of pyrazolone derivatives|Poisoning by, adverse effect of and underdosing of pyrazolone derivatives +C2877401|T037|AB|T39.2X|ICD10CM|Pyrazolone derivatives|Pyrazolone derivatives +C0496969|T037|ET|T39.2X1|ICD10CM|Poisoning by pyrazolone derivatives NOS|Poisoning by pyrazolone derivatives NOS +C2877402|T037|AB|T39.2X1|ICD10CM|Poisoning by pyrazolone derivatives, accidental|Poisoning by pyrazolone derivatives, accidental +C2877402|T037|HT|T39.2X1|ICD10CM|Poisoning by pyrazolone derivatives, accidental (unintentional)|Poisoning by pyrazolone derivatives, accidental (unintentional) +C2877403|T037|PT|T39.2X1A|ICD10CM|Poisoning by pyrazolone derivatives, accidental (unintentional), initial encounter|Poisoning by pyrazolone derivatives, accidental (unintentional), initial encounter +C2877403|T037|AB|T39.2X1A|ICD10CM|Poisoning by pyrazolone derivatives, accidental, init|Poisoning by pyrazolone derivatives, accidental, init +C2877404|T037|PT|T39.2X1D|ICD10CM|Poisoning by pyrazolone derivatives, accidental (unintentional), subsequent encounter|Poisoning by pyrazolone derivatives, accidental (unintentional), subsequent encounter +C2877404|T037|AB|T39.2X1D|ICD10CM|Poisoning by pyrazolone derivatives, accidental, subs|Poisoning by pyrazolone derivatives, accidental, subs +C2877405|T037|PT|T39.2X1S|ICD10CM|Poisoning by pyrazolone derivatives, accidental (unintentional), sequela|Poisoning by pyrazolone derivatives, accidental (unintentional), sequela +C2877405|T037|AB|T39.2X1S|ICD10CM|Poisoning by pyrazolone derivatives, accidental, sequela|Poisoning by pyrazolone derivatives, accidental, sequela +C2877406|T037|AB|T39.2X2|ICD10CM|Poisoning by pyrazolone derivatives, intentional self-harm|Poisoning by pyrazolone derivatives, intentional self-harm +C2877406|T037|HT|T39.2X2|ICD10CM|Poisoning by pyrazolone derivatives, intentional self-harm|Poisoning by pyrazolone derivatives, intentional self-harm +C2877407|T037|PT|T39.2X2A|ICD10CM|Poisoning by pyrazolone derivatives, intentional self-harm, initial encounter|Poisoning by pyrazolone derivatives, intentional self-harm, initial encounter +C2877407|T037|AB|T39.2X2A|ICD10CM|Poisoning by pyrazolone derivatives, self-harm, init|Poisoning by pyrazolone derivatives, self-harm, init +C2877408|T037|PT|T39.2X2D|ICD10CM|Poisoning by pyrazolone derivatives, intentional self-harm, subsequent encounter|Poisoning by pyrazolone derivatives, intentional self-harm, subsequent encounter +C2877408|T037|AB|T39.2X2D|ICD10CM|Poisoning by pyrazolone derivatives, self-harm, subs|Poisoning by pyrazolone derivatives, self-harm, subs +C2877409|T037|PT|T39.2X2S|ICD10CM|Poisoning by pyrazolone derivatives, intentional self-harm, sequela|Poisoning by pyrazolone derivatives, intentional self-harm, sequela +C2877409|T037|AB|T39.2X2S|ICD10CM|Poisoning by pyrazolone derivatives, self-harm, sequela|Poisoning by pyrazolone derivatives, self-harm, sequela +C2877410|T037|AB|T39.2X3|ICD10CM|Poisoning by pyrazolone derivatives, assault|Poisoning by pyrazolone derivatives, assault +C2877410|T037|HT|T39.2X3|ICD10CM|Poisoning by pyrazolone derivatives, assault|Poisoning by pyrazolone derivatives, assault +C2877411|T037|AB|T39.2X3A|ICD10CM|Poisoning by pyrazolone derivatives, assault, init encntr|Poisoning by pyrazolone derivatives, assault, init encntr +C2877411|T037|PT|T39.2X3A|ICD10CM|Poisoning by pyrazolone derivatives, assault, initial encounter|Poisoning by pyrazolone derivatives, assault, initial encounter +C2877412|T037|AB|T39.2X3D|ICD10CM|Poisoning by pyrazolone derivatives, assault, subs encntr|Poisoning by pyrazolone derivatives, assault, subs encntr +C2877412|T037|PT|T39.2X3D|ICD10CM|Poisoning by pyrazolone derivatives, assault, subsequent encounter|Poisoning by pyrazolone derivatives, assault, subsequent encounter +C2877413|T037|AB|T39.2X3S|ICD10CM|Poisoning by pyrazolone derivatives, assault, sequela|Poisoning by pyrazolone derivatives, assault, sequela +C2877413|T037|PT|T39.2X3S|ICD10CM|Poisoning by pyrazolone derivatives, assault, sequela|Poisoning by pyrazolone derivatives, assault, sequela +C2877414|T037|AB|T39.2X4|ICD10CM|Poisoning by pyrazolone derivatives, undetermined|Poisoning by pyrazolone derivatives, undetermined +C2877414|T037|HT|T39.2X4|ICD10CM|Poisoning by pyrazolone derivatives, undetermined|Poisoning by pyrazolone derivatives, undetermined +C2877415|T037|AB|T39.2X4A|ICD10CM|Poisoning by pyrazolone derivatives, undetermined, init|Poisoning by pyrazolone derivatives, undetermined, init +C2877415|T037|PT|T39.2X4A|ICD10CM|Poisoning by pyrazolone derivatives, undetermined, initial encounter|Poisoning by pyrazolone derivatives, undetermined, initial encounter +C2877416|T037|AB|T39.2X4D|ICD10CM|Poisoning by pyrazolone derivatives, undetermined, subs|Poisoning by pyrazolone derivatives, undetermined, subs +C2877416|T037|PT|T39.2X4D|ICD10CM|Poisoning by pyrazolone derivatives, undetermined, subsequent encounter|Poisoning by pyrazolone derivatives, undetermined, subsequent encounter +C2877417|T037|AB|T39.2X4S|ICD10CM|Poisoning by pyrazolone derivatives, undetermined, sequela|Poisoning by pyrazolone derivatives, undetermined, sequela +C2877417|T037|PT|T39.2X4S|ICD10CM|Poisoning by pyrazolone derivatives, undetermined, sequela|Poisoning by pyrazolone derivatives, undetermined, sequela +C2877418|T037|AB|T39.2X5|ICD10CM|Adverse effect of pyrazolone derivatives|Adverse effect of pyrazolone derivatives +C2877418|T037|HT|T39.2X5|ICD10CM|Adverse effect of pyrazolone derivatives|Adverse effect of pyrazolone derivatives +C2877419|T037|AB|T39.2X5A|ICD10CM|Adverse effect of pyrazolone derivatives, initial encounter|Adverse effect of pyrazolone derivatives, initial encounter +C2877419|T037|PT|T39.2X5A|ICD10CM|Adverse effect of pyrazolone derivatives, initial encounter|Adverse effect of pyrazolone derivatives, initial encounter +C2877420|T037|AB|T39.2X5D|ICD10CM|Adverse effect of pyrazolone derivatives, subs encntr|Adverse effect of pyrazolone derivatives, subs encntr +C2877420|T037|PT|T39.2X5D|ICD10CM|Adverse effect of pyrazolone derivatives, subsequent encounter|Adverse effect of pyrazolone derivatives, subsequent encounter +C2877421|T037|AB|T39.2X5S|ICD10CM|Adverse effect of pyrazolone derivatives, sequela|Adverse effect of pyrazolone derivatives, sequela +C2877421|T037|PT|T39.2X5S|ICD10CM|Adverse effect of pyrazolone derivatives, sequela|Adverse effect of pyrazolone derivatives, sequela +C2877422|T037|AB|T39.2X6|ICD10CM|Underdosing of pyrazolone derivatives|Underdosing of pyrazolone derivatives +C2877422|T037|HT|T39.2X6|ICD10CM|Underdosing of pyrazolone derivatives|Underdosing of pyrazolone derivatives +C2877423|T037|AB|T39.2X6A|ICD10CM|Underdosing of pyrazolone derivatives, initial encounter|Underdosing of pyrazolone derivatives, initial encounter +C2877423|T037|PT|T39.2X6A|ICD10CM|Underdosing of pyrazolone derivatives, initial encounter|Underdosing of pyrazolone derivatives, initial encounter +C2877424|T037|AB|T39.2X6D|ICD10CM|Underdosing of pyrazolone derivatives, subsequent encounter|Underdosing of pyrazolone derivatives, subsequent encounter +C2877424|T037|PT|T39.2X6D|ICD10CM|Underdosing of pyrazolone derivatives, subsequent encounter|Underdosing of pyrazolone derivatives, subsequent encounter +C2877425|T037|AB|T39.2X6S|ICD10CM|Underdosing of pyrazolone derivatives, sequela|Underdosing of pyrazolone derivatives, sequela +C2877425|T037|PT|T39.2X6S|ICD10CM|Underdosing of pyrazolone derivatives, sequela|Underdosing of pyrazolone derivatives, sequela +C2877426|T037|AB|T39.3|ICD10CM|Nonsteroidal anti-inflammatory drugs|Nonsteroidal anti-inflammatory drugs +C0478433|T037|PS|T39.3|ICD10|Other nonsteroidal anti-inflammatory drugs [NSAID]|Other nonsteroidal anti-inflammatory drugs [NSAID] +C0478433|T037|PX|T39.3|ICD10|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID]|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID] +C2877427|T037|ET|T39.31|ICD10CM|Poisoning by, adverse effect of and underdosing of fenoprofen|Poisoning by, adverse effect of and underdosing of fenoprofen +C2877428|T037|ET|T39.31|ICD10CM|Poisoning by, adverse effect of and underdosing of flurbiprofen|Poisoning by, adverse effect of and underdosing of flurbiprofen +C2877429|T037|ET|T39.31|ICD10CM|Poisoning by, adverse effect of and underdosing of ibuprofen|Poisoning by, adverse effect of and underdosing of ibuprofen +C2877430|T037|ET|T39.31|ICD10CM|Poisoning by, adverse effect of and underdosing of ketoprofen|Poisoning by, adverse effect of and underdosing of ketoprofen +C2877431|T037|ET|T39.31|ICD10CM|Poisoning by, adverse effect of and underdosing of naproxen|Poisoning by, adverse effect of and underdosing of naproxen +C2877432|T037|ET|T39.31|ICD10CM|Poisoning by, adverse effect of and underdosing of oxaprozin|Poisoning by, adverse effect of and underdosing of oxaprozin +C2877433|T037|HT|T39.31|ICD10CM|Poisoning by, adverse effect of and underdosing of propionic acid derivatives|Poisoning by, adverse effect of and underdosing of propionic acid derivatives +C2877433|T037|AB|T39.31|ICD10CM|Propionic acid derivatives|Propionic acid derivatives +C2117658|T037|AB|T39.311|ICD10CM|Poisoning by propionic acid derivatives, accidental|Poisoning by propionic acid derivatives, accidental +C2117658|T037|HT|T39.311|ICD10CM|Poisoning by propionic acid derivatives, accidental (unintentional)|Poisoning by propionic acid derivatives, accidental (unintentional) +C2877435|T037|PT|T39.311A|ICD10CM|Poisoning by propionic acid derivatives, accidental (unintentional), initial encounter|Poisoning by propionic acid derivatives, accidental (unintentional), initial encounter +C2877435|T037|AB|T39.311A|ICD10CM|Poisoning by propionic acid derivatives, accidental, init|Poisoning by propionic acid derivatives, accidental, init +C2877436|T037|PT|T39.311D|ICD10CM|Poisoning by propionic acid derivatives, accidental (unintentional), subsequent encounter|Poisoning by propionic acid derivatives, accidental (unintentional), subsequent encounter +C2877436|T037|AB|T39.311D|ICD10CM|Poisoning by propionic acid derivatives, accidental, subs|Poisoning by propionic acid derivatives, accidental, subs +C2877437|T037|AB|T39.311S|ICD10CM|Poisoning by propionic acid deriv, accidental, sequela|Poisoning by propionic acid deriv, accidental, sequela +C2877437|T037|PT|T39.311S|ICD10CM|Poisoning by propionic acid derivatives, accidental (unintentional), sequela|Poisoning by propionic acid derivatives, accidental (unintentional), sequela +C2877438|T037|HT|T39.312|ICD10CM|Poisoning by propionic acid derivatives, intentional self-harm|Poisoning by propionic acid derivatives, intentional self-harm +C2877438|T037|AB|T39.312|ICD10CM|Poisoning by propionic acid derivatives, self-harm|Poisoning by propionic acid derivatives, self-harm +C2877439|T037|PT|T39.312A|ICD10CM|Poisoning by propionic acid derivatives, intentional self-harm, initial encounter|Poisoning by propionic acid derivatives, intentional self-harm, initial encounter +C2877439|T037|AB|T39.312A|ICD10CM|Poisoning by propionic acid derivatives, self-harm, init|Poisoning by propionic acid derivatives, self-harm, init +C2877440|T037|PT|T39.312D|ICD10CM|Poisoning by propionic acid derivatives, intentional self-harm, subsequent encounter|Poisoning by propionic acid derivatives, intentional self-harm, subsequent encounter +C2877440|T037|AB|T39.312D|ICD10CM|Poisoning by propionic acid derivatives, self-harm, subs|Poisoning by propionic acid derivatives, self-harm, subs +C2877441|T037|PT|T39.312S|ICD10CM|Poisoning by propionic acid derivatives, intentional self-harm, sequela|Poisoning by propionic acid derivatives, intentional self-harm, sequela +C2877441|T037|AB|T39.312S|ICD10CM|Poisoning by propionic acid derivatives, self-harm, sequela|Poisoning by propionic acid derivatives, self-harm, sequela +C2877442|T037|AB|T39.313|ICD10CM|Poisoning by propionic acid derivatives, assault|Poisoning by propionic acid derivatives, assault +C2877442|T037|HT|T39.313|ICD10CM|Poisoning by propionic acid derivatives, assault|Poisoning by propionic acid derivatives, assault +C2877443|T037|AB|T39.313A|ICD10CM|Poisoning by propionic acid derivatives, assault, init|Poisoning by propionic acid derivatives, assault, init +C2877443|T037|PT|T39.313A|ICD10CM|Poisoning by propionic acid derivatives, assault, initial encounter|Poisoning by propionic acid derivatives, assault, initial encounter +C2877444|T037|AB|T39.313D|ICD10CM|Poisoning by propionic acid derivatives, assault, subs|Poisoning by propionic acid derivatives, assault, subs +C2877444|T037|PT|T39.313D|ICD10CM|Poisoning by propionic acid derivatives, assault, subsequent encounter|Poisoning by propionic acid derivatives, assault, subsequent encounter +C2877445|T037|AB|T39.313S|ICD10CM|Poisoning by propionic acid derivatives, assault, sequela|Poisoning by propionic acid derivatives, assault, sequela +C2877445|T037|PT|T39.313S|ICD10CM|Poisoning by propionic acid derivatives, assault, sequela|Poisoning by propionic acid derivatives, assault, sequela +C2877446|T037|AB|T39.314|ICD10CM|Poisoning by propionic acid derivatives, undetermined|Poisoning by propionic acid derivatives, undetermined +C2877446|T037|HT|T39.314|ICD10CM|Poisoning by propionic acid derivatives, undetermined|Poisoning by propionic acid derivatives, undetermined +C2877447|T037|AB|T39.314A|ICD10CM|Poisoning by propionic acid derivatives, undetermined, init|Poisoning by propionic acid derivatives, undetermined, init +C2877447|T037|PT|T39.314A|ICD10CM|Poisoning by propionic acid derivatives, undetermined, initial encounter|Poisoning by propionic acid derivatives, undetermined, initial encounter +C2877448|T037|AB|T39.314D|ICD10CM|Poisoning by propionic acid derivatives, undetermined, subs|Poisoning by propionic acid derivatives, undetermined, subs +C2877448|T037|PT|T39.314D|ICD10CM|Poisoning by propionic acid derivatives, undetermined, subsequent encounter|Poisoning by propionic acid derivatives, undetermined, subsequent encounter +C2877449|T037|AB|T39.314S|ICD10CM|Poisoning by propionic acid derivatives, undet, sequela|Poisoning by propionic acid derivatives, undet, sequela +C2877449|T037|PT|T39.314S|ICD10CM|Poisoning by propionic acid derivatives, undetermined, sequela|Poisoning by propionic acid derivatives, undetermined, sequela +C1631072|T046|AB|T39.315|ICD10CM|Adverse effect of propionic acid derivatives|Adverse effect of propionic acid derivatives +C1631072|T046|HT|T39.315|ICD10CM|Adverse effect of propionic acid derivatives|Adverse effect of propionic acid derivatives +C2877450|T037|AB|T39.315A|ICD10CM|Adverse effect of propionic acid derivatives, init encntr|Adverse effect of propionic acid derivatives, init encntr +C2877450|T037|PT|T39.315A|ICD10CM|Adverse effect of propionic acid derivatives, initial encounter|Adverse effect of propionic acid derivatives, initial encounter +C2877451|T037|AB|T39.315D|ICD10CM|Adverse effect of propionic acid derivatives, subs encntr|Adverse effect of propionic acid derivatives, subs encntr +C2877451|T037|PT|T39.315D|ICD10CM|Adverse effect of propionic acid derivatives, subsequent encounter|Adverse effect of propionic acid derivatives, subsequent encounter +C2877452|T037|AB|T39.315S|ICD10CM|Adverse effect of propionic acid derivatives, sequela|Adverse effect of propionic acid derivatives, sequela +C2877452|T037|PT|T39.315S|ICD10CM|Adverse effect of propionic acid derivatives, sequela|Adverse effect of propionic acid derivatives, sequela +C2877453|T033|HT|T39.316|ICD10CM|Underdosing of propionic acid derivatives|Underdosing of propionic acid derivatives +C2877453|T033|AB|T39.316|ICD10CM|Underdosing of propionic acid derivatives|Underdosing of propionic acid derivatives +C2877454|T037|AB|T39.316A|ICD10CM|Underdosing of propionic acid derivatives, initial encounter|Underdosing of propionic acid derivatives, initial encounter +C2877454|T037|PT|T39.316A|ICD10CM|Underdosing of propionic acid derivatives, initial encounter|Underdosing of propionic acid derivatives, initial encounter +C2877455|T037|AB|T39.316D|ICD10CM|Underdosing of propionic acid derivatives, subs encntr|Underdosing of propionic acid derivatives, subs encntr +C2877455|T037|PT|T39.316D|ICD10CM|Underdosing of propionic acid derivatives, subsequent encounter|Underdosing of propionic acid derivatives, subsequent encounter +C2877456|T037|AB|T39.316S|ICD10CM|Underdosing of propionic acid derivatives, sequela|Underdosing of propionic acid derivatives, sequela +C2877456|T037|PT|T39.316S|ICD10CM|Underdosing of propionic acid derivatives, sequela|Underdosing of propionic acid derivatives, sequela +C2877426|T037|AB|T39.39|ICD10CM|Nonsteroidal anti-inflammatory drugs|Nonsteroidal anti-inflammatory drugs +C2877457|T037|AB|T39.391|ICD10CM|Poisoning by oth nonsteroidal anti-inflam drugs, accidental|Poisoning by oth nonsteroidal anti-inflam drugs, accidental +C2877457|T037|HT|T39.391|ICD10CM|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], accidental (unintentional)|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], accidental (unintentional) +C0478433|T037|ET|T39.391|ICD10CM|Poisoning by other nonsteroidal anti-inflammatory drugs NOS|Poisoning by other nonsteroidal anti-inflammatory drugs NOS +C2877458|T037|AB|T39.391A|ICD10CM|Poisoning by oth nonsteroid anti-inflam drugs, acc, init|Poisoning by oth nonsteroid anti-inflam drugs, acc, init +C2877459|T037|AB|T39.391D|ICD10CM|Poisoning by oth nonsteroid anti-inflam drugs, acc, subs|Poisoning by oth nonsteroid anti-inflam drugs, acc, subs +C2877460|T037|AB|T39.391S|ICD10CM|Poisoning by oth nonsteroid anti-inflam drugs, acc, sequela|Poisoning by oth nonsteroid anti-inflam drugs, acc, sequela +C2877460|T037|PT|T39.391S|ICD10CM|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], accidental (unintentional), sequela|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], accidental (unintentional), sequela +C2877461|T037|AB|T39.392|ICD10CM|Poisoning by oth nonsteroidal anti-inflam drugs, self-harm|Poisoning by oth nonsteroidal anti-inflam drugs, self-harm +C2877461|T037|HT|T39.392|ICD10CM|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], intentional self-harm|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], intentional self-harm +C2877462|T037|AB|T39.392A|ICD10CM|Poisn by oth nonsteroid anti-inflam drugs, self-harm, init|Poisn by oth nonsteroid anti-inflam drugs, self-harm, init +C2877463|T037|AB|T39.392D|ICD10CM|Poisn by oth nonsteroid anti-inflam drugs, self-harm, subs|Poisn by oth nonsteroid anti-inflam drugs, self-harm, subs +C2877464|T037|AB|T39.392S|ICD10CM|Poisn by oth nonsteroid anti-inflam drugs, slf-hrm, sequela|Poisn by oth nonsteroid anti-inflam drugs, slf-hrm, sequela +C2877464|T037|PT|T39.392S|ICD10CM|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], intentional self-harm, sequela|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], intentional self-harm, sequela +C2877465|T037|AB|T39.393|ICD10CM|Poisoning by oth nonsteroidal anti-inflam drugs, assault|Poisoning by oth nonsteroidal anti-inflam drugs, assault +C2877465|T037|HT|T39.393|ICD10CM|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault +C2877466|T037|AB|T39.393A|ICD10CM|Poisoning by oth nonsteroid anti-inflam drugs, assault, init|Poisoning by oth nonsteroid anti-inflam drugs, assault, init +C2877466|T037|PT|T39.393A|ICD10CM|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault, initial encounter|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault, initial encounter +C2877467|T037|AB|T39.393D|ICD10CM|Poisoning by oth nonsteroid anti-inflam drugs, assault, subs|Poisoning by oth nonsteroid anti-inflam drugs, assault, subs +C2877467|T037|PT|T39.393D|ICD10CM|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault, subsequent encounter|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault, subsequent encounter +C2877468|T037|AB|T39.393S|ICD10CM|Poisn by oth nonsteroid anti-inflam drugs, assault, sequela|Poisn by oth nonsteroid anti-inflam drugs, assault, sequela +C2877468|T037|PT|T39.393S|ICD10CM|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault, sequela|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault, sequela +C2877469|T037|AB|T39.394|ICD10CM|Poisoning by oth nonsteroid anti-inflam drugs, undetermined|Poisoning by oth nonsteroid anti-inflam drugs, undetermined +C2877469|T037|HT|T39.394|ICD10CM|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined +C2877470|T037|AB|T39.394A|ICD10CM|Poisoning by oth nonsteroid anti-inflam drugs, undet, init|Poisoning by oth nonsteroid anti-inflam drugs, undet, init +C2877470|T037|PT|T39.394A|ICD10CM|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined, initial encounter|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined, initial encounter +C2877471|T037|AB|T39.394D|ICD10CM|Poisoning by oth nonsteroid anti-inflam drugs, undet, subs|Poisoning by oth nonsteroid anti-inflam drugs, undet, subs +C2877471|T037|PT|T39.394D|ICD10CM|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined, subsequent encounter|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined, subsequent encounter +C2877472|T037|AB|T39.394S|ICD10CM|Poisn by oth nonsteroid anti-inflam drugs, undet, sequela|Poisn by oth nonsteroid anti-inflam drugs, undet, sequela +C2877472|T037|PT|T39.394S|ICD10CM|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined, sequela|Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined, sequela +C2877473|T037|AB|T39.395|ICD10CM|Adverse effect of other nonsteroidal anti-inflammatory drugs|Adverse effect of other nonsteroidal anti-inflammatory drugs +C2877473|T037|HT|T39.395|ICD10CM|Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID]|Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID] +C2877474|T037|AB|T39.395A|ICD10CM|Adverse effect of nonsteroidal anti-inflammatory drugs, init|Adverse effect of nonsteroidal anti-inflammatory drugs, init +C2877474|T037|PT|T39.395A|ICD10CM|Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID], initial encounter|Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID], initial encounter +C2877475|T037|AB|T39.395D|ICD10CM|Adverse effect of nonsteroidal anti-inflammatory drugs, subs|Adverse effect of nonsteroidal anti-inflammatory drugs, subs +C2877475|T037|PT|T39.395D|ICD10CM|Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID], subsequent encounter|Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID], subsequent encounter +C2877476|T037|AB|T39.395S|ICD10CM|Adverse effect of nonsteroidal anti-inflam drugs, sequela|Adverse effect of nonsteroidal anti-inflam drugs, sequela +C2877476|T037|PT|T39.395S|ICD10CM|Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID], sequela|Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID], sequela +C2877477|T037|AB|T39.396|ICD10CM|Underdosing of other nonsteroidal anti-inflammatory drugs|Underdosing of other nonsteroidal anti-inflammatory drugs +C2877477|T037|HT|T39.396|ICD10CM|Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID]|Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID] +C2877478|T037|AB|T39.396A|ICD10CM|Underdosing of nonsteroidal anti-inflammatory drugs, init|Underdosing of nonsteroidal anti-inflammatory drugs, init +C2877478|T037|PT|T39.396A|ICD10CM|Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID], initial encounter|Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID], initial encounter +C2877479|T037|AB|T39.396D|ICD10CM|Underdosing of nonsteroidal anti-inflammatory drugs, subs|Underdosing of nonsteroidal anti-inflammatory drugs, subs +C2877479|T037|PT|T39.396D|ICD10CM|Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID], subsequent encounter|Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID], subsequent encounter +C2877480|T037|AB|T39.396S|ICD10CM|Underdosing of nonsteroidal anti-inflammatory drugs, sequela|Underdosing of nonsteroidal anti-inflammatory drugs, sequela +C2877480|T037|PT|T39.396S|ICD10CM|Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID], sequela|Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID], sequela +C2877481|T037|AB|T39.4|ICD10CM|Antirheumatics, not elsewhere classified|Antirheumatics, not elsewhere classified +C0869261|T037|PS|T39.4|ICD10|Antirheumatics, not elsewhere classified|Antirheumatics, not elsewhere classified +C0869261|T037|PX|T39.4|ICD10|Poisoning by antirheumatics, not elsewhere classified|Poisoning by antirheumatics, not elsewhere classified +C2877481|T037|HT|T39.4|ICD10CM|Poisoning by, adverse effect of and underdosing of antirheumatics, not elsewhere classified|Poisoning by, adverse effect of and underdosing of antirheumatics, not elsewhere classified +C2877481|T037|AB|T39.4X|ICD10CM|Antirheumatics, not elsewhere classified|Antirheumatics, not elsewhere classified +C2877481|T037|HT|T39.4X|ICD10CM|Poisoning by, adverse effect of and underdosing of antirheumatics, not elsewhere classified|Poisoning by, adverse effect of and underdosing of antirheumatics, not elsewhere classified +C2877482|T037|AB|T39.4X1|ICD10CM|Poisoning by antirheumatics, NEC, accidental (unintentional)|Poisoning by antirheumatics, NEC, accidental (unintentional) +C0869261|T037|ET|T39.4X1|ICD10CM|Poisoning by antirheumatics, not elsewhere classified NOS|Poisoning by antirheumatics, not elsewhere classified NOS +C2877482|T037|HT|T39.4X1|ICD10CM|Poisoning by antirheumatics, not elsewhere classified, accidental (unintentional)|Poisoning by antirheumatics, not elsewhere classified, accidental (unintentional) +C2877483|T037|AB|T39.4X1A|ICD10CM|Poisoning by antirheumatics, NEC, accidental, init|Poisoning by antirheumatics, NEC, accidental, init +C2877483|T037|PT|T39.4X1A|ICD10CM|Poisoning by antirheumatics, not elsewhere classified, accidental (unintentional), initial encounter|Poisoning by antirheumatics, not elsewhere classified, accidental (unintentional), initial encounter +C2877484|T037|AB|T39.4X1D|ICD10CM|Poisoning by antirheumatics, NEC, accidental, subs|Poisoning by antirheumatics, NEC, accidental, subs +C2877485|T037|AB|T39.4X1S|ICD10CM|Poisoning by antirheumatics, NEC, accidental, sequela|Poisoning by antirheumatics, NEC, accidental, sequela +C2877485|T037|PT|T39.4X1S|ICD10CM|Poisoning by antirheumatics, not elsewhere classified, accidental (unintentional), sequela|Poisoning by antirheumatics, not elsewhere classified, accidental (unintentional), sequela +C2877486|T037|AB|T39.4X2|ICD10CM|Poisoning by antirheumatics, NEC, intentional self-harm|Poisoning by antirheumatics, NEC, intentional self-harm +C2877486|T037|HT|T39.4X2|ICD10CM|Poisoning by antirheumatics, not elsewhere classified, intentional self-harm|Poisoning by antirheumatics, not elsewhere classified, intentional self-harm +C2877487|T037|AB|T39.4X2A|ICD10CM|Poisoning by antirheumatics, NEC, self-harm, init|Poisoning by antirheumatics, NEC, self-harm, init +C2877487|T037|PT|T39.4X2A|ICD10CM|Poisoning by antirheumatics, not elsewhere classified, intentional self-harm, initial encounter|Poisoning by antirheumatics, not elsewhere classified, intentional self-harm, initial encounter +C2877488|T037|AB|T39.4X2D|ICD10CM|Poisoning by antirheumatics, NEC, self-harm, subs|Poisoning by antirheumatics, NEC, self-harm, subs +C2877488|T037|PT|T39.4X2D|ICD10CM|Poisoning by antirheumatics, not elsewhere classified, intentional self-harm, subsequent encounter|Poisoning by antirheumatics, not elsewhere classified, intentional self-harm, subsequent encounter +C2877489|T037|AB|T39.4X2S|ICD10CM|Poisoning by antirheumatics, NEC, self-harm, sequela|Poisoning by antirheumatics, NEC, self-harm, sequela +C2877489|T037|PT|T39.4X2S|ICD10CM|Poisoning by antirheumatics, not elsewhere classified, intentional self-harm, sequela|Poisoning by antirheumatics, not elsewhere classified, intentional self-harm, sequela +C2877490|T037|AB|T39.4X3|ICD10CM|Poisoning by antirheumatics, NEC, assault|Poisoning by antirheumatics, NEC, assault +C2877490|T037|HT|T39.4X3|ICD10CM|Poisoning by antirheumatics, not elsewhere classified, assault|Poisoning by antirheumatics, not elsewhere classified, assault +C2877491|T037|AB|T39.4X3A|ICD10CM|Poisoning by antirheumatics, NEC, assault, init|Poisoning by antirheumatics, NEC, assault, init +C2877491|T037|PT|T39.4X3A|ICD10CM|Poisoning by antirheumatics, not elsewhere classified, assault, initial encounter|Poisoning by antirheumatics, not elsewhere classified, assault, initial encounter +C2877492|T037|AB|T39.4X3D|ICD10CM|Poisoning by antirheumatics, NEC, assault, subs|Poisoning by antirheumatics, NEC, assault, subs +C2877492|T037|PT|T39.4X3D|ICD10CM|Poisoning by antirheumatics, not elsewhere classified, assault, subsequent encounter|Poisoning by antirheumatics, not elsewhere classified, assault, subsequent encounter +C2877493|T037|AB|T39.4X3S|ICD10CM|Poisoning by antirheumatics, NEC, assault, sequela|Poisoning by antirheumatics, NEC, assault, sequela +C2877493|T037|PT|T39.4X3S|ICD10CM|Poisoning by antirheumatics, not elsewhere classified, assault, sequela|Poisoning by antirheumatics, not elsewhere classified, assault, sequela +C2877494|T037|AB|T39.4X4|ICD10CM|Poisoning by antirheumatics, NEC, undetermined|Poisoning by antirheumatics, NEC, undetermined +C2877494|T037|HT|T39.4X4|ICD10CM|Poisoning by antirheumatics, not elsewhere classified, undetermined|Poisoning by antirheumatics, not elsewhere classified, undetermined +C2877495|T037|AB|T39.4X4A|ICD10CM|Poisoning by antirheumatics, NEC, undetermined, init|Poisoning by antirheumatics, NEC, undetermined, init +C2877495|T037|PT|T39.4X4A|ICD10CM|Poisoning by antirheumatics, not elsewhere classified, undetermined, initial encounter|Poisoning by antirheumatics, not elsewhere classified, undetermined, initial encounter +C2877496|T037|AB|T39.4X4D|ICD10CM|Poisoning by antirheumatics, NEC, undetermined, subs|Poisoning by antirheumatics, NEC, undetermined, subs +C2877496|T037|PT|T39.4X4D|ICD10CM|Poisoning by antirheumatics, not elsewhere classified, undetermined, subsequent encounter|Poisoning by antirheumatics, not elsewhere classified, undetermined, subsequent encounter +C2877497|T037|AB|T39.4X4S|ICD10CM|Poisoning by antirheumatics, NEC, undetermined, sequela|Poisoning by antirheumatics, NEC, undetermined, sequela +C2877497|T037|PT|T39.4X4S|ICD10CM|Poisoning by antirheumatics, not elsewhere classified, undetermined, sequela|Poisoning by antirheumatics, not elsewhere classified, undetermined, sequela +C2877498|T037|AB|T39.4X5|ICD10CM|Adverse effect of antirheumatics, not elsewhere classified|Adverse effect of antirheumatics, not elsewhere classified +C2877498|T037|HT|T39.4X5|ICD10CM|Adverse effect of antirheumatics, not elsewhere classified|Adverse effect of antirheumatics, not elsewhere classified +C2877499|T037|AB|T39.4X5A|ICD10CM|Adverse effect of antirheumatics, NEC, init|Adverse effect of antirheumatics, NEC, init +C2877499|T037|PT|T39.4X5A|ICD10CM|Adverse effect of antirheumatics, not elsewhere classified, initial encounter|Adverse effect of antirheumatics, not elsewhere classified, initial encounter +C2877500|T037|AB|T39.4X5D|ICD10CM|Adverse effect of antirheumatics, NEC, subs|Adverse effect of antirheumatics, NEC, subs +C2877500|T037|PT|T39.4X5D|ICD10CM|Adverse effect of antirheumatics, not elsewhere classified, subsequent encounter|Adverse effect of antirheumatics, not elsewhere classified, subsequent encounter +C2877501|T037|AB|T39.4X5S|ICD10CM|Adverse effect of antirheumatics, NEC, sequela|Adverse effect of antirheumatics, NEC, sequela +C2877501|T037|PT|T39.4X5S|ICD10CM|Adverse effect of antirheumatics, not elsewhere classified, sequela|Adverse effect of antirheumatics, not elsewhere classified, sequela +C2877502|T037|AB|T39.4X6|ICD10CM|Underdosing of antirheumatics, not elsewhere classified|Underdosing of antirheumatics, not elsewhere classified +C2877502|T037|HT|T39.4X6|ICD10CM|Underdosing of antirheumatics, not elsewhere classified|Underdosing of antirheumatics, not elsewhere classified +C2877503|T037|AB|T39.4X6A|ICD10CM|Underdosing of antirheumatics, NEC, init|Underdosing of antirheumatics, NEC, init +C2877503|T037|PT|T39.4X6A|ICD10CM|Underdosing of antirheumatics, not elsewhere classified, initial encounter|Underdosing of antirheumatics, not elsewhere classified, initial encounter +C2877504|T037|AB|T39.4X6D|ICD10CM|Underdosing of antirheumatics, NEC, subs|Underdosing of antirheumatics, NEC, subs +C2877504|T037|PT|T39.4X6D|ICD10CM|Underdosing of antirheumatics, not elsewhere classified, subsequent encounter|Underdosing of antirheumatics, not elsewhere classified, subsequent encounter +C2877505|T037|AB|T39.4X6S|ICD10CM|Underdosing of antirheumatics, NEC, sequela|Underdosing of antirheumatics, NEC, sequela +C2877505|T037|PT|T39.4X6S|ICD10CM|Underdosing of antirheumatics, not elsewhere classified, sequela|Underdosing of antirheumatics, not elsewhere classified, sequela +C2877506|T037|AB|T39.8|ICD10CM|Nonopioid analges/antipyret, not elsewhere classified|Nonopioid analges/antipyret, not elsewhere classified +C0496971|T037|PS|T39.8|ICD10|Other nonopioid analgesics and antipyretics, not elsewhere classified|Other nonopioid analgesics and antipyretics, not elsewhere classified +C0496971|T037|PX|T39.8|ICD10|Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified|Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified +C2877506|T037|AB|T39.8X|ICD10CM|Nonopioid analges/antipyret, not elsewhere classified|Nonopioid analges/antipyret, not elsewhere classified +C2877507|T037|AB|T39.8X1|ICD10CM|Poisoning by oth nonopioid analges/antipyret, NEC, acc|Poisoning by oth nonopioid analges/antipyret, NEC, acc +C0496971|T037|ET|T39.8X1|ICD10CM|Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified NOS|Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified NOS +C2877508|T037|AB|T39.8X1A|ICD10CM|Poisoning by oth nonopio analges/antipyret, NEC, acc, init|Poisoning by oth nonopio analges/antipyret, NEC, acc, init +C2877509|T037|AB|T39.8X1D|ICD10CM|Poisoning by oth nonopio analges/antipyret, NEC, acc, subs|Poisoning by oth nonopio analges/antipyret, NEC, acc, subs +C2877510|T037|AB|T39.8X1S|ICD10CM|Poisn by oth nonopio analges/antipyret, NEC, acc, sequela|Poisn by oth nonopio analges/antipyret, NEC, acc, sequela +C2877511|T037|AB|T39.8X2|ICD10CM|Poisoning by oth nonopioid analges/antipyret, NEC, self-harm|Poisoning by oth nonopioid analges/antipyret, NEC, self-harm +C2877512|T037|AB|T39.8X2A|ICD10CM|Poisn by oth nonopio analges/antipyret, NEC, self-harm, init|Poisn by oth nonopio analges/antipyret, NEC, self-harm, init +C2877513|T037|AB|T39.8X2D|ICD10CM|Poisn by oth nonopio analges/antipyret, NEC, self-harm, subs|Poisn by oth nonopio analges/antipyret, NEC, self-harm, subs +C2877514|T037|AB|T39.8X2S|ICD10CM|Poisn by oth nonopio analges/antipyret, NEC, slf-hrm, sqla|Poisn by oth nonopio analges/antipyret, NEC, slf-hrm, sqla +C2877515|T037|AB|T39.8X3|ICD10CM|Poisoning by oth nonopioid analges/antipyret, NEC, assault|Poisoning by oth nonopioid analges/antipyret, NEC, assault +C2877515|T037|HT|T39.8X3|ICD10CM|Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, assault|Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, assault +C2877516|T037|AB|T39.8X3A|ICD10CM|Poisn by oth nonopio analges/antipyret, NEC, assault, init|Poisn by oth nonopio analges/antipyret, NEC, assault, init +C2877517|T037|AB|T39.8X3D|ICD10CM|Poisn by oth nonopio analges/antipyret, NEC, assault, subs|Poisn by oth nonopio analges/antipyret, NEC, assault, subs +C2877518|T037|AB|T39.8X3S|ICD10CM|Poisn by oth nonopio analges/antipyret, NEC, asslt, sequela|Poisn by oth nonopio analges/antipyret, NEC, asslt, sequela +C2877518|T037|PT|T39.8X3S|ICD10CM|Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, assault, sequela|Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, assault, sequela +C2877519|T037|AB|T39.8X4|ICD10CM|Poisoning by oth nonopioid analges/antipyret, NEC, undet|Poisoning by oth nonopioid analges/antipyret, NEC, undet +C2877519|T037|HT|T39.8X4|ICD10CM|Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, undetermined|Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, undetermined +C2877520|T037|AB|T39.8X4A|ICD10CM|Poisoning by oth nonopio analges/antipyret, NEC, undet, init|Poisoning by oth nonopio analges/antipyret, NEC, undet, init +C2877521|T037|AB|T39.8X4D|ICD10CM|Poisoning by oth nonopio analges/antipyret, NEC, undet, subs|Poisoning by oth nonopio analges/antipyret, NEC, undet, subs +C2877522|T037|AB|T39.8X4S|ICD10CM|Poisn by oth nonopio analges/antipyret, NEC, undet, sequela|Poisn by oth nonopio analges/antipyret, NEC, undet, sequela +C2877523|T037|AB|T39.8X5|ICD10CM|Adverse effect of nonopioid analges/antipyret, NEC|Adverse effect of nonopioid analges/antipyret, NEC +C2877523|T037|HT|T39.8X5|ICD10CM|Adverse effect of other nonopioid analgesics and antipyretics, not elsewhere classified|Adverse effect of other nonopioid analgesics and antipyretics, not elsewhere classified +C2877524|T037|AB|T39.8X5A|ICD10CM|Adverse effect of nonopioid analges/antipyret, NEC, init|Adverse effect of nonopioid analges/antipyret, NEC, init +C2877525|T037|AB|T39.8X5D|ICD10CM|Adverse effect of nonopioid analges/antipyret, NEC, subs|Adverse effect of nonopioid analges/antipyret, NEC, subs +C2877526|T037|AB|T39.8X5S|ICD10CM|Adverse effect of nonopioid analges/antipyret, NEC, sequela|Adverse effect of nonopioid analges/antipyret, NEC, sequela +C2877526|T037|PT|T39.8X5S|ICD10CM|Adverse effect of other nonopioid analgesics and antipyretics, not elsewhere classified, sequela|Adverse effect of other nonopioid analgesics and antipyretics, not elsewhere classified, sequela +C2877527|T037|AB|T39.8X6|ICD10CM|Underdosing of nonopioid analges/antipyret, NEC|Underdosing of nonopioid analges/antipyret, NEC +C2877527|T037|HT|T39.8X6|ICD10CM|Underdosing of other nonopioid analgesics and antipyretics, not elsewhere classified|Underdosing of other nonopioid analgesics and antipyretics, not elsewhere classified +C2877528|T037|AB|T39.8X6A|ICD10CM|Underdosing of nonopioid analges/antipyret, NEC, init|Underdosing of nonopioid analges/antipyret, NEC, init +C2877529|T037|AB|T39.8X6D|ICD10CM|Underdosing of nonopioid analges/antipyret, NEC, subs|Underdosing of nonopioid analges/antipyret, NEC, subs +C2877530|T037|AB|T39.8X6S|ICD10CM|Underdosing of nonopioid analges/antipyret, NEC, sequela|Underdosing of nonopioid analges/antipyret, NEC, sequela +C2877530|T037|PT|T39.8X6S|ICD10CM|Underdosing of other nonopioid analgesics and antipyretics, not elsewhere classified, sequela|Underdosing of other nonopioid analgesics and antipyretics, not elsewhere classified, sequela +C0496972|T037|PS|T39.9|ICD10|Nonopioid analgesic, antipyretic and antirheumatic, unspecified|Nonopioid analgesic, antipyretic and antirheumatic, unspecified +C0496972|T037|PX|T39.9|ICD10|Poisoning by nonopioid analgesic, antipyretic and antirheumatic, unspecified|Poisoning by nonopioid analgesic, antipyretic and antirheumatic, unspecified +C2877531|T037|AB|T39.9|ICD10CM|Unsp nonopi analgs/antipyr/antirheu|Unsp nonopi analgs/antipyr/antirheu +C0496972|T037|ET|T39.91|ICD10CM|Poisoning by nonopioid analgesic, antipyretic and antirheumatic NOS|Poisoning by nonopioid analgesic, antipyretic and antirheumatic NOS +C2877532|T037|AB|T39.91|ICD10CM|Poisoning by unsp nonopi analgs/antipyr/antirheu, acc|Poisoning by unsp nonopi analgs/antipyr/antirheu, acc +C2877533|T037|AB|T39.91XA|ICD10CM|Poisoning by unsp nonopi analgs/antipyr/antirheu, acc, init|Poisoning by unsp nonopi analgs/antipyr/antirheu, acc, init +C2877534|T037|AB|T39.91XD|ICD10CM|Poisoning by unsp nonopi analgs/antipyr/antirheu, acc, subs|Poisoning by unsp nonopi analgs/antipyr/antirheu, acc, subs +C2877535|T037|AB|T39.91XS|ICD10CM|Poisn by unsp nonopi analgs/antipyr/antirheu, acc, sequela|Poisn by unsp nonopi analgs/antipyr/antirheu, acc, sequela +C2877536|T037|AB|T39.92|ICD10CM|Poisoning by unsp nonopi analgs/antipyr/antirheu, self-harm|Poisoning by unsp nonopi analgs/antipyr/antirheu, self-harm +C2877536|T037|HT|T39.92|ICD10CM|Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, intentional self-harm|Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, intentional self-harm +C2877537|T037|AB|T39.92XA|ICD10CM|Poisn by unsp nonopi analgs/antipyr/antirheu, slf-hrm, init|Poisn by unsp nonopi analgs/antipyr/antirheu, slf-hrm, init +C2877538|T037|AB|T39.92XD|ICD10CM|Poisn by unsp nonopi analgs/antipyr/antirheu, slf-hrm, subs|Poisn by unsp nonopi analgs/antipyr/antirheu, slf-hrm, subs +C2877539|T037|AB|T39.92XS|ICD10CM|Poisn by unsp nonopi analgs/antipyr/antirheu, slf-hrm, sqla|Poisn by unsp nonopi analgs/antipyr/antirheu, slf-hrm, sqla +C2877540|T037|AB|T39.93|ICD10CM|Poisoning by unsp nonopi analgs/antipyr/antirheu, assault|Poisoning by unsp nonopi analgs/antipyr/antirheu, assault +C2877540|T037|HT|T39.93|ICD10CM|Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, assault|Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, assault +C2877541|T037|AB|T39.93XA|ICD10CM|Poisn by unsp nonopi analgs/antipyr/antirheu, assault, init|Poisn by unsp nonopi analgs/antipyr/antirheu, assault, init +C2877542|T037|AB|T39.93XD|ICD10CM|Poisn by unsp nonopi analgs/antipyr/antirheu, assault, subs|Poisn by unsp nonopi analgs/antipyr/antirheu, assault, subs +C2877543|T037|AB|T39.93XS|ICD10CM|Poisn by unsp nonopi analgs/antipyr/antirheu, asslt, sequela|Poisn by unsp nonopi analgs/antipyr/antirheu, asslt, sequela +C2877543|T037|PT|T39.93XS|ICD10CM|Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, assault, sequela|Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, assault, sequela +C2877544|T037|AB|T39.94|ICD10CM|Poisoning by unsp nonopi analgs/antipyr/antirheu, undet|Poisoning by unsp nonopi analgs/antipyr/antirheu, undet +C2877544|T037|HT|T39.94|ICD10CM|Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, undetermined|Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, undetermined +C2877545|T037|AB|T39.94XA|ICD10CM|Poisn by unsp nonopi analgs/antipyr/antirheu, undet, init|Poisn by unsp nonopi analgs/antipyr/antirheu, undet, init +C2877546|T037|AB|T39.94XD|ICD10CM|Poisn by unsp nonopi analgs/antipyr/antirheu, undet, subs|Poisn by unsp nonopi analgs/antipyr/antirheu, undet, subs +C2877547|T037|AB|T39.94XS|ICD10CM|Poisn by unsp nonopi analgs/antipyr/antirheu, undet, sequela|Poisn by unsp nonopi analgs/antipyr/antirheu, undet, sequela +C2877547|T037|PT|T39.94XS|ICD10CM|Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, undetermined, sequela|Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, undetermined, sequela +C2877548|T037|AB|T39.95|ICD10CM|Adverse effect of unsp nonopi analgs/antipyr/antirheu|Adverse effect of unsp nonopi analgs/antipyr/antirheu +C2877548|T037|HT|T39.95|ICD10CM|Adverse effect of unspecified nonopioid analgesic, antipyretic and antirheumatic|Adverse effect of unspecified nonopioid analgesic, antipyretic and antirheumatic +C2877549|T037|AB|T39.95XA|ICD10CM|Adverse effect of unsp nonopi analgs/antipyr/antirheu, init|Adverse effect of unsp nonopi analgs/antipyr/antirheu, init +C2877549|T037|PT|T39.95XA|ICD10CM|Adverse effect of unspecified nonopioid analgesic, antipyretic and antirheumatic, initial encounter|Adverse effect of unspecified nonopioid analgesic, antipyretic and antirheumatic, initial encounter +C2877550|T037|AB|T39.95XD|ICD10CM|Adverse effect of unsp nonopi analgs/antipyr/antirheu, subs|Adverse effect of unsp nonopi analgs/antipyr/antirheu, subs +C2877551|T037|PT|T39.95XS|ICD10CM|Adverse effect of unspecified nonopioid analgesic, antipyretic and antirheumatic, sequela|Adverse effect of unspecified nonopioid analgesic, antipyretic and antirheumatic, sequela +C2877551|T037|AB|T39.95XS|ICD10CM|Advrs effect of unsp nonopi analgs/antipyr/antirheu, sequela|Advrs effect of unsp nonopi analgs/antipyr/antirheu, sequela +C2877552|T037|AB|T39.96|ICD10CM|Underdosing of unsp nonopi analgs/antipyr/antirheu|Underdosing of unsp nonopi analgs/antipyr/antirheu +C2877552|T037|HT|T39.96|ICD10CM|Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic|Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic +C2877553|T037|AB|T39.96XA|ICD10CM|Underdosing of unsp nonopi analgs/antipyr/antirheu, init|Underdosing of unsp nonopi analgs/antipyr/antirheu, init +C2877553|T037|PT|T39.96XA|ICD10CM|Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic, initial encounter|Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic, initial encounter +C2877554|T037|AB|T39.96XD|ICD10CM|Underdosing of unsp nonopi analgs/antipyr/antirheu, subs|Underdosing of unsp nonopi analgs/antipyr/antirheu, subs +C2877554|T037|PT|T39.96XD|ICD10CM|Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic, subsequent encounter|Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic, subsequent encounter +C2877555|T037|AB|T39.96XS|ICD10CM|Underdosing of unsp nonopi analgs/antipyr/antirheu, sequela|Underdosing of unsp nonopi analgs/antipyr/antirheu, sequela +C2877555|T037|PT|T39.96XS|ICD10CM|Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic, sequela|Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic, sequela +C2877556|T037|AB|T40|ICD10CM|Narcotics and psychodysleptics|Narcotics and psychodysleptics +C0496093|T037|HT|T40|ICD10|Poisoning by narcotics and psychodysleptics [hallucinogens]|Poisoning by narcotics and psychodysleptics [hallucinogens] +C2877556|T037|HT|T40|ICD10CM|Poisoning by, adverse effect of and underdosing of narcotics and psychodysleptics [hallucinogens]|Poisoning by, adverse effect of and underdosing of narcotics and psychodysleptics [hallucinogens] +C0496973|T037|PS|T40.0|ICD10|Opium|Opium +C0496973|T037|PX|T40.0|ICD10|Poisoning by opium|Poisoning by opium +C2877557|T037|AB|T40.0|ICD10CM|Poisoning by, adverse effect of and underdosing of opium|Poisoning by, adverse effect of and underdosing of opium +C2877557|T037|HT|T40.0|ICD10CM|Poisoning by, adverse effect of and underdosing of opium|Poisoning by, adverse effect of and underdosing of opium +C2877557|T037|HT|T40.0X|ICD10CM|Poisoning by, adverse effect of and underdosing of opium|Poisoning by, adverse effect of and underdosing of opium +C2877557|T037|AB|T40.0X|ICD10CM|Poisoning by, adverse effect of and underdosing of opium|Poisoning by, adverse effect of and underdosing of opium +C0496973|T037|ET|T40.0X1|ICD10CM|Poisoning by opium NOS|Poisoning by opium NOS +C2877558|T037|AB|T40.0X1|ICD10CM|Poisoning by opium, accidental (unintentional)|Poisoning by opium, accidental (unintentional) +C2877558|T037|HT|T40.0X1|ICD10CM|Poisoning by opium, accidental (unintentional)|Poisoning by opium, accidental (unintentional) +C2877559|T037|AB|T40.0X1A|ICD10CM|Poisoning by opium, accidental (unintentional), init encntr|Poisoning by opium, accidental (unintentional), init encntr +C2877559|T037|PT|T40.0X1A|ICD10CM|Poisoning by opium, accidental (unintentional), initial encounter|Poisoning by opium, accidental (unintentional), initial encounter +C2877560|T037|AB|T40.0X1D|ICD10CM|Poisoning by opium, accidental (unintentional), subs encntr|Poisoning by opium, accidental (unintentional), subs encntr +C2877560|T037|PT|T40.0X1D|ICD10CM|Poisoning by opium, accidental (unintentional), subsequent encounter|Poisoning by opium, accidental (unintentional), subsequent encounter +C2877561|T037|AB|T40.0X1S|ICD10CM|Poisoning by opium, accidental (unintentional), sequela|Poisoning by opium, accidental (unintentional), sequela +C2877561|T037|PT|T40.0X1S|ICD10CM|Poisoning by opium, accidental (unintentional), sequela|Poisoning by opium, accidental (unintentional), sequela +C2877562|T037|AB|T40.0X2|ICD10CM|Poisoning by opium, intentional self-harm|Poisoning by opium, intentional self-harm +C2877562|T037|HT|T40.0X2|ICD10CM|Poisoning by opium, intentional self-harm|Poisoning by opium, intentional self-harm +C2877563|T037|AB|T40.0X2A|ICD10CM|Poisoning by opium, intentional self-harm, initial encounter|Poisoning by opium, intentional self-harm, initial encounter +C2877563|T037|PT|T40.0X2A|ICD10CM|Poisoning by opium, intentional self-harm, initial encounter|Poisoning by opium, intentional self-harm, initial encounter +C2877564|T037|AB|T40.0X2D|ICD10CM|Poisoning by opium, intentional self-harm, subs encntr|Poisoning by opium, intentional self-harm, subs encntr +C2877564|T037|PT|T40.0X2D|ICD10CM|Poisoning by opium, intentional self-harm, subsequent encounter|Poisoning by opium, intentional self-harm, subsequent encounter +C2877565|T037|AB|T40.0X2S|ICD10CM|Poisoning by opium, intentional self-harm, sequela|Poisoning by opium, intentional self-harm, sequela +C2877565|T037|PT|T40.0X2S|ICD10CM|Poisoning by opium, intentional self-harm, sequela|Poisoning by opium, intentional self-harm, sequela +C2877566|T037|AB|T40.0X3|ICD10CM|Poisoning by opium, assault|Poisoning by opium, assault +C2877566|T037|HT|T40.0X3|ICD10CM|Poisoning by opium, assault|Poisoning by opium, assault +C2877567|T037|AB|T40.0X3A|ICD10CM|Poisoning by opium, assault, initial encounter|Poisoning by opium, assault, initial encounter +C2877567|T037|PT|T40.0X3A|ICD10CM|Poisoning by opium, assault, initial encounter|Poisoning by opium, assault, initial encounter +C2877568|T037|AB|T40.0X3D|ICD10CM|Poisoning by opium, assault, subsequent encounter|Poisoning by opium, assault, subsequent encounter +C2877568|T037|PT|T40.0X3D|ICD10CM|Poisoning by opium, assault, subsequent encounter|Poisoning by opium, assault, subsequent encounter +C2877569|T037|AB|T40.0X3S|ICD10CM|Poisoning by opium, assault, sequela|Poisoning by opium, assault, sequela +C2877569|T037|PT|T40.0X3S|ICD10CM|Poisoning by opium, assault, sequela|Poisoning by opium, assault, sequela +C2877570|T037|AB|T40.0X4|ICD10CM|Poisoning by opium, undetermined|Poisoning by opium, undetermined +C2877570|T037|HT|T40.0X4|ICD10CM|Poisoning by opium, undetermined|Poisoning by opium, undetermined +C2877571|T037|AB|T40.0X4A|ICD10CM|Poisoning by opium, undetermined, initial encounter|Poisoning by opium, undetermined, initial encounter +C2877571|T037|PT|T40.0X4A|ICD10CM|Poisoning by opium, undetermined, initial encounter|Poisoning by opium, undetermined, initial encounter +C2877572|T037|AB|T40.0X4D|ICD10CM|Poisoning by opium, undetermined, subsequent encounter|Poisoning by opium, undetermined, subsequent encounter +C2877572|T037|PT|T40.0X4D|ICD10CM|Poisoning by opium, undetermined, subsequent encounter|Poisoning by opium, undetermined, subsequent encounter +C2877573|T037|AB|T40.0X4S|ICD10CM|Poisoning by opium, undetermined, sequela|Poisoning by opium, undetermined, sequela +C2877573|T037|PT|T40.0X4S|ICD10CM|Poisoning by opium, undetermined, sequela|Poisoning by opium, undetermined, sequela +C2877574|T037|AB|T40.0X5|ICD10CM|Adverse effect of opium|Adverse effect of opium +C2877574|T037|HT|T40.0X5|ICD10CM|Adverse effect of opium|Adverse effect of opium +C2877575|T037|AB|T40.0X5A|ICD10CM|Adverse effect of opium, initial encounter|Adverse effect of opium, initial encounter +C2877575|T037|PT|T40.0X5A|ICD10CM|Adverse effect of opium, initial encounter|Adverse effect of opium, initial encounter +C2877576|T037|AB|T40.0X5D|ICD10CM|Adverse effect of opium, subsequent encounter|Adverse effect of opium, subsequent encounter +C2877576|T037|PT|T40.0X5D|ICD10CM|Adverse effect of opium, subsequent encounter|Adverse effect of opium, subsequent encounter +C2877577|T037|AB|T40.0X5S|ICD10CM|Adverse effect of opium, sequela|Adverse effect of opium, sequela +C2877577|T037|PT|T40.0X5S|ICD10CM|Adverse effect of opium, sequela|Adverse effect of opium, sequela +C2877578|T037|AB|T40.0X6|ICD10CM|Underdosing of opium|Underdosing of opium +C2877578|T037|HT|T40.0X6|ICD10CM|Underdosing of opium|Underdosing of opium +C2877579|T037|AB|T40.0X6A|ICD10CM|Underdosing of opium, initial encounter|Underdosing of opium, initial encounter +C2877579|T037|PT|T40.0X6A|ICD10CM|Underdosing of opium, initial encounter|Underdosing of opium, initial encounter +C2877580|T037|AB|T40.0X6D|ICD10CM|Underdosing of opium, subsequent encounter|Underdosing of opium, subsequent encounter +C2877580|T037|PT|T40.0X6D|ICD10CM|Underdosing of opium, subsequent encounter|Underdosing of opium, subsequent encounter +C2877581|T037|AB|T40.0X6S|ICD10CM|Underdosing of opium, sequela|Underdosing of opium, sequela +C2877581|T037|PT|T40.0X6S|ICD10CM|Underdosing of opium, sequela|Underdosing of opium, sequela +C0161541|T037|PS|T40.1|ICD10|Heroin|Heroin +C2877583|T037|HT|T40.1|ICD10CM|Poisoning by and adverse effect of heroin|Poisoning by and adverse effect of heroin +C2877583|T037|AB|T40.1|ICD10CM|Poisoning by and adverse effect of heroin|Poisoning by and adverse effect of heroin +C0161541|T037|PX|T40.1|ICD10|Poisoning by heroin|Poisoning by heroin +C2877583|T037|AB|T40.1X|ICD10CM|Poisoning by and adverse effect of heroin|Poisoning by and adverse effect of heroin +C2877583|T037|HT|T40.1X|ICD10CM|Poisoning by and adverse effect of heroin|Poisoning by and adverse effect of heroin +C0161541|T037|ET|T40.1X1|ICD10CM|Poisoning by heroin NOS|Poisoning by heroin NOS +C2877584|T037|AB|T40.1X1|ICD10CM|Poisoning by heroin, accidental (unintentional)|Poisoning by heroin, accidental (unintentional) +C2877584|T037|HT|T40.1X1|ICD10CM|Poisoning by heroin, accidental (unintentional)|Poisoning by heroin, accidental (unintentional) +C2877585|T037|AB|T40.1X1A|ICD10CM|Poisoning by heroin, accidental (unintentional), init encntr|Poisoning by heroin, accidental (unintentional), init encntr +C2877585|T037|PT|T40.1X1A|ICD10CM|Poisoning by heroin, accidental (unintentional), initial encounter|Poisoning by heroin, accidental (unintentional), initial encounter +C2877586|T037|AB|T40.1X1D|ICD10CM|Poisoning by heroin, accidental (unintentional), subs encntr|Poisoning by heroin, accidental (unintentional), subs encntr +C2877586|T037|PT|T40.1X1D|ICD10CM|Poisoning by heroin, accidental (unintentional), subsequent encounter|Poisoning by heroin, accidental (unintentional), subsequent encounter +C2877587|T037|AB|T40.1X1S|ICD10CM|Poisoning by heroin, accidental (unintentional), sequela|Poisoning by heroin, accidental (unintentional), sequela +C2877587|T037|PT|T40.1X1S|ICD10CM|Poisoning by heroin, accidental (unintentional), sequela|Poisoning by heroin, accidental (unintentional), sequela +C2877588|T037|AB|T40.1X2|ICD10CM|Poisoning by heroin, intentional self-harm|Poisoning by heroin, intentional self-harm +C2877588|T037|HT|T40.1X2|ICD10CM|Poisoning by heroin, intentional self-harm|Poisoning by heroin, intentional self-harm +C2877589|T037|AB|T40.1X2A|ICD10CM|Poisoning by heroin, intentional self-harm, init encntr|Poisoning by heroin, intentional self-harm, init encntr +C2877589|T037|PT|T40.1X2A|ICD10CM|Poisoning by heroin, intentional self-harm, initial encounter|Poisoning by heroin, intentional self-harm, initial encounter +C2877590|T037|AB|T40.1X2D|ICD10CM|Poisoning by heroin, intentional self-harm, subs encntr|Poisoning by heroin, intentional self-harm, subs encntr +C2877590|T037|PT|T40.1X2D|ICD10CM|Poisoning by heroin, intentional self-harm, subsequent encounter|Poisoning by heroin, intentional self-harm, subsequent encounter +C2877591|T037|AB|T40.1X2S|ICD10CM|Poisoning by heroin, intentional self-harm, sequela|Poisoning by heroin, intentional self-harm, sequela +C2877591|T037|PT|T40.1X2S|ICD10CM|Poisoning by heroin, intentional self-harm, sequela|Poisoning by heroin, intentional self-harm, sequela +C2877592|T037|AB|T40.1X3|ICD10CM|Poisoning by heroin, assault|Poisoning by heroin, assault +C2877592|T037|HT|T40.1X3|ICD10CM|Poisoning by heroin, assault|Poisoning by heroin, assault +C2877593|T037|AB|T40.1X3A|ICD10CM|Poisoning by heroin, assault, initial encounter|Poisoning by heroin, assault, initial encounter +C2877593|T037|PT|T40.1X3A|ICD10CM|Poisoning by heroin, assault, initial encounter|Poisoning by heroin, assault, initial encounter +C2877594|T037|AB|T40.1X3D|ICD10CM|Poisoning by heroin, assault, subsequent encounter|Poisoning by heroin, assault, subsequent encounter +C2877594|T037|PT|T40.1X3D|ICD10CM|Poisoning by heroin, assault, subsequent encounter|Poisoning by heroin, assault, subsequent encounter +C2877595|T037|AB|T40.1X3S|ICD10CM|Poisoning by heroin, assault, sequela|Poisoning by heroin, assault, sequela +C2877595|T037|PT|T40.1X3S|ICD10CM|Poisoning by heroin, assault, sequela|Poisoning by heroin, assault, sequela +C2877596|T037|AB|T40.1X4|ICD10CM|Poisoning by heroin, undetermined|Poisoning by heroin, undetermined +C2877596|T037|HT|T40.1X4|ICD10CM|Poisoning by heroin, undetermined|Poisoning by heroin, undetermined +C2877597|T037|AB|T40.1X4A|ICD10CM|Poisoning by heroin, undetermined, initial encounter|Poisoning by heroin, undetermined, initial encounter +C2877597|T037|PT|T40.1X4A|ICD10CM|Poisoning by heroin, undetermined, initial encounter|Poisoning by heroin, undetermined, initial encounter +C2877598|T037|AB|T40.1X4D|ICD10CM|Poisoning by heroin, undetermined, subsequent encounter|Poisoning by heroin, undetermined, subsequent encounter +C2877598|T037|PT|T40.1X4D|ICD10CM|Poisoning by heroin, undetermined, subsequent encounter|Poisoning by heroin, undetermined, subsequent encounter +C2877599|T037|AB|T40.1X4S|ICD10CM|Poisoning by heroin, undetermined, sequela|Poisoning by heroin, undetermined, sequela +C2877599|T037|PT|T40.1X4S|ICD10CM|Poisoning by heroin, undetermined, sequela|Poisoning by heroin, undetermined, sequela +C0478435|T037|PS|T40.2|ICD10|Other opioids|Other opioids +C0478435|T037|PX|T40.2|ICD10|Poisoning by other opioids|Poisoning by other opioids +C2877607|T037|AB|T40.2|ICD10CM|Poisoning by, adverse effect of and underdosing of opioids|Poisoning by, adverse effect of and underdosing of opioids +C2877607|T037|HT|T40.2|ICD10CM|Poisoning by, adverse effect of and underdosing of other opioids|Poisoning by, adverse effect of and underdosing of other opioids +C2877607|T037|AB|T40.2X|ICD10CM|Poisoning by, adverse effect of and underdosing of opioids|Poisoning by, adverse effect of and underdosing of opioids +C2877607|T037|HT|T40.2X|ICD10CM|Poisoning by, adverse effect of and underdosing of other opioids|Poisoning by, adverse effect of and underdosing of other opioids +C0478435|T037|ET|T40.2X1|ICD10CM|Poisoning by other opioids NOS|Poisoning by other opioids NOS +C2877608|T037|AB|T40.2X1|ICD10CM|Poisoning by other opioids, accidental (unintentional)|Poisoning by other opioids, accidental (unintentional) +C2877608|T037|HT|T40.2X1|ICD10CM|Poisoning by other opioids, accidental (unintentional)|Poisoning by other opioids, accidental (unintentional) +C2877609|T037|AB|T40.2X1A|ICD10CM|Poisoning by oth opioids, accidental (unintentional), init|Poisoning by oth opioids, accidental (unintentional), init +C2877609|T037|PT|T40.2X1A|ICD10CM|Poisoning by other opioids, accidental (unintentional), initial encounter|Poisoning by other opioids, accidental (unintentional), initial encounter +C2877610|T037|AB|T40.2X1D|ICD10CM|Poisoning by oth opioids, accidental (unintentional), subs|Poisoning by oth opioids, accidental (unintentional), subs +C2877610|T037|PT|T40.2X1D|ICD10CM|Poisoning by other opioids, accidental (unintentional), subsequent encounter|Poisoning by other opioids, accidental (unintentional), subsequent encounter +C2877611|T037|AB|T40.2X1S|ICD10CM|Poisoning by oth opioids, accidental, sequela|Poisoning by oth opioids, accidental, sequela +C2877611|T037|PT|T40.2X1S|ICD10CM|Poisoning by other opioids, accidental (unintentional), sequela|Poisoning by other opioids, accidental (unintentional), sequela +C2877612|T037|AB|T40.2X2|ICD10CM|Poisoning by other opioids, intentional self-harm|Poisoning by other opioids, intentional self-harm +C2877612|T037|HT|T40.2X2|ICD10CM|Poisoning by other opioids, intentional self-harm|Poisoning by other opioids, intentional self-harm +C2877613|T037|AB|T40.2X2A|ICD10CM|Poisoning by oth opioids, intentional self-harm, init encntr|Poisoning by oth opioids, intentional self-harm, init encntr +C2877613|T037|PT|T40.2X2A|ICD10CM|Poisoning by other opioids, intentional self-harm, initial encounter|Poisoning by other opioids, intentional self-harm, initial encounter +C2877614|T037|AB|T40.2X2D|ICD10CM|Poisoning by oth opioids, intentional self-harm, subs encntr|Poisoning by oth opioids, intentional self-harm, subs encntr +C2877614|T037|PT|T40.2X2D|ICD10CM|Poisoning by other opioids, intentional self-harm, subsequent encounter|Poisoning by other opioids, intentional self-harm, subsequent encounter +C2877615|T037|AB|T40.2X2S|ICD10CM|Poisoning by other opioids, intentional self-harm, sequela|Poisoning by other opioids, intentional self-harm, sequela +C2877615|T037|PT|T40.2X2S|ICD10CM|Poisoning by other opioids, intentional self-harm, sequela|Poisoning by other opioids, intentional self-harm, sequela +C2877616|T037|AB|T40.2X3|ICD10CM|Poisoning by other opioids, assault|Poisoning by other opioids, assault +C2877616|T037|HT|T40.2X3|ICD10CM|Poisoning by other opioids, assault|Poisoning by other opioids, assault +C2877617|T037|AB|T40.2X3A|ICD10CM|Poisoning by other opioids, assault, initial encounter|Poisoning by other opioids, assault, initial encounter +C2877617|T037|PT|T40.2X3A|ICD10CM|Poisoning by other opioids, assault, initial encounter|Poisoning by other opioids, assault, initial encounter +C2877618|T037|AB|T40.2X3D|ICD10CM|Poisoning by other opioids, assault, subsequent encounter|Poisoning by other opioids, assault, subsequent encounter +C2877618|T037|PT|T40.2X3D|ICD10CM|Poisoning by other opioids, assault, subsequent encounter|Poisoning by other opioids, assault, subsequent encounter +C2877619|T037|AB|T40.2X3S|ICD10CM|Poisoning by other opioids, assault, sequela|Poisoning by other opioids, assault, sequela +C2877619|T037|PT|T40.2X3S|ICD10CM|Poisoning by other opioids, assault, sequela|Poisoning by other opioids, assault, sequela +C2877620|T037|AB|T40.2X4|ICD10CM|Poisoning by other opioids, undetermined|Poisoning by other opioids, undetermined +C2877620|T037|HT|T40.2X4|ICD10CM|Poisoning by other opioids, undetermined|Poisoning by other opioids, undetermined +C2877621|T037|AB|T40.2X4A|ICD10CM|Poisoning by other opioids, undetermined, initial encounter|Poisoning by other opioids, undetermined, initial encounter +C2877621|T037|PT|T40.2X4A|ICD10CM|Poisoning by other opioids, undetermined, initial encounter|Poisoning by other opioids, undetermined, initial encounter +C2877622|T037|AB|T40.2X4D|ICD10CM|Poisoning by other opioids, undetermined, subs encntr|Poisoning by other opioids, undetermined, subs encntr +C2877622|T037|PT|T40.2X4D|ICD10CM|Poisoning by other opioids, undetermined, subsequent encounter|Poisoning by other opioids, undetermined, subsequent encounter +C2877623|T037|AB|T40.2X4S|ICD10CM|Poisoning by other opioids, undetermined, sequela|Poisoning by other opioids, undetermined, sequela +C2877623|T037|PT|T40.2X4S|ICD10CM|Poisoning by other opioids, undetermined, sequela|Poisoning by other opioids, undetermined, sequela +C2877624|T037|AB|T40.2X5|ICD10CM|Adverse effect of other opioids|Adverse effect of other opioids +C2877624|T037|HT|T40.2X5|ICD10CM|Adverse effect of other opioids|Adverse effect of other opioids +C2877625|T037|AB|T40.2X5A|ICD10CM|Adverse effect of other opioids, initial encounter|Adverse effect of other opioids, initial encounter +C2877625|T037|PT|T40.2X5A|ICD10CM|Adverse effect of other opioids, initial encounter|Adverse effect of other opioids, initial encounter +C2877626|T037|AB|T40.2X5D|ICD10CM|Adverse effect of other opioids, subsequent encounter|Adverse effect of other opioids, subsequent encounter +C2877626|T037|PT|T40.2X5D|ICD10CM|Adverse effect of other opioids, subsequent encounter|Adverse effect of other opioids, subsequent encounter +C2877627|T037|AB|T40.2X5S|ICD10CM|Adverse effect of other opioids, sequela|Adverse effect of other opioids, sequela +C2877627|T037|PT|T40.2X5S|ICD10CM|Adverse effect of other opioids, sequela|Adverse effect of other opioids, sequela +C2877628|T037|AB|T40.2X6|ICD10CM|Underdosing of other opioids|Underdosing of other opioids +C2877628|T037|HT|T40.2X6|ICD10CM|Underdosing of other opioids|Underdosing of other opioids +C2877629|T037|AB|T40.2X6A|ICD10CM|Underdosing of other opioids, initial encounter|Underdosing of other opioids, initial encounter +C2877629|T037|PT|T40.2X6A|ICD10CM|Underdosing of other opioids, initial encounter|Underdosing of other opioids, initial encounter +C2877630|T037|AB|T40.2X6D|ICD10CM|Underdosing of other opioids, subsequent encounter|Underdosing of other opioids, subsequent encounter +C2877630|T037|PT|T40.2X6D|ICD10CM|Underdosing of other opioids, subsequent encounter|Underdosing of other opioids, subsequent encounter +C2877631|T037|AB|T40.2X6S|ICD10CM|Underdosing of other opioids, sequela|Underdosing of other opioids, sequela +C2877631|T037|PT|T40.2X6S|ICD10CM|Underdosing of other opioids, sequela|Underdosing of other opioids, sequela +C0161542|T037|PS|T40.3|ICD10|Methadone|Methadone +C0161542|T037|PX|T40.3|ICD10|Poisoning by methadone|Poisoning by methadone +C2877632|T037|AB|T40.3|ICD10CM|Poisoning by, adverse effect of and underdosing of methadone|Poisoning by, adverse effect of and underdosing of methadone +C2877632|T037|HT|T40.3|ICD10CM|Poisoning by, adverse effect of and underdosing of methadone|Poisoning by, adverse effect of and underdosing of methadone +C2877632|T037|HT|T40.3X|ICD10CM|Poisoning by, adverse effect of and underdosing of methadone|Poisoning by, adverse effect of and underdosing of methadone +C2877632|T037|AB|T40.3X|ICD10CM|Poisoning by, adverse effect of and underdosing of methadone|Poisoning by, adverse effect of and underdosing of methadone +C0161542|T037|ET|T40.3X1|ICD10CM|Poisoning by methadone NOS|Poisoning by methadone NOS +C2877633|T037|AB|T40.3X1|ICD10CM|Poisoning by methadone, accidental (unintentional)|Poisoning by methadone, accidental (unintentional) +C2877633|T037|HT|T40.3X1|ICD10CM|Poisoning by methadone, accidental (unintentional)|Poisoning by methadone, accidental (unintentional) +C2877634|T037|AB|T40.3X1A|ICD10CM|Poisoning by methadone, accidental (unintentional), init|Poisoning by methadone, accidental (unintentional), init +C2877634|T037|PT|T40.3X1A|ICD10CM|Poisoning by methadone, accidental (unintentional), initial encounter|Poisoning by methadone, accidental (unintentional), initial encounter +C2877635|T037|AB|T40.3X1D|ICD10CM|Poisoning by methadone, accidental (unintentional), subs|Poisoning by methadone, accidental (unintentional), subs +C2877635|T037|PT|T40.3X1D|ICD10CM|Poisoning by methadone, accidental (unintentional), subsequent encounter|Poisoning by methadone, accidental (unintentional), subsequent encounter +C2877636|T037|AB|T40.3X1S|ICD10CM|Poisoning by methadone, accidental (unintentional), sequela|Poisoning by methadone, accidental (unintentional), sequela +C2877636|T037|PT|T40.3X1S|ICD10CM|Poisoning by methadone, accidental (unintentional), sequela|Poisoning by methadone, accidental (unintentional), sequela +C2877637|T037|AB|T40.3X2|ICD10CM|Poisoning by methadone, intentional self-harm|Poisoning by methadone, intentional self-harm +C2877637|T037|HT|T40.3X2|ICD10CM|Poisoning by methadone, intentional self-harm|Poisoning by methadone, intentional self-harm +C2877638|T037|AB|T40.3X2A|ICD10CM|Poisoning by methadone, intentional self-harm, init encntr|Poisoning by methadone, intentional self-harm, init encntr +C2877638|T037|PT|T40.3X2A|ICD10CM|Poisoning by methadone, intentional self-harm, initial encounter|Poisoning by methadone, intentional self-harm, initial encounter +C2877639|T037|AB|T40.3X2D|ICD10CM|Poisoning by methadone, intentional self-harm, subs encntr|Poisoning by methadone, intentional self-harm, subs encntr +C2877639|T037|PT|T40.3X2D|ICD10CM|Poisoning by methadone, intentional self-harm, subsequent encounter|Poisoning by methadone, intentional self-harm, subsequent encounter +C2877640|T037|AB|T40.3X2S|ICD10CM|Poisoning by methadone, intentional self-harm, sequela|Poisoning by methadone, intentional self-harm, sequela +C2877640|T037|PT|T40.3X2S|ICD10CM|Poisoning by methadone, intentional self-harm, sequela|Poisoning by methadone, intentional self-harm, sequela +C2877641|T037|AB|T40.3X3|ICD10CM|Poisoning by methadone, assault|Poisoning by methadone, assault +C2877641|T037|HT|T40.3X3|ICD10CM|Poisoning by methadone, assault|Poisoning by methadone, assault +C2877642|T037|AB|T40.3X3A|ICD10CM|Poisoning by methadone, assault, initial encounter|Poisoning by methadone, assault, initial encounter +C2877642|T037|PT|T40.3X3A|ICD10CM|Poisoning by methadone, assault, initial encounter|Poisoning by methadone, assault, initial encounter +C2877643|T037|AB|T40.3X3D|ICD10CM|Poisoning by methadone, assault, subsequent encounter|Poisoning by methadone, assault, subsequent encounter +C2877643|T037|PT|T40.3X3D|ICD10CM|Poisoning by methadone, assault, subsequent encounter|Poisoning by methadone, assault, subsequent encounter +C2877644|T037|AB|T40.3X3S|ICD10CM|Poisoning by methadone, assault, sequela|Poisoning by methadone, assault, sequela +C2877644|T037|PT|T40.3X3S|ICD10CM|Poisoning by methadone, assault, sequela|Poisoning by methadone, assault, sequela +C2877645|T037|AB|T40.3X4|ICD10CM|Poisoning by methadone, undetermined|Poisoning by methadone, undetermined +C2877645|T037|HT|T40.3X4|ICD10CM|Poisoning by methadone, undetermined|Poisoning by methadone, undetermined +C2877646|T037|AB|T40.3X4A|ICD10CM|Poisoning by methadone, undetermined, initial encounter|Poisoning by methadone, undetermined, initial encounter +C2877646|T037|PT|T40.3X4A|ICD10CM|Poisoning by methadone, undetermined, initial encounter|Poisoning by methadone, undetermined, initial encounter +C2877647|T037|AB|T40.3X4D|ICD10CM|Poisoning by methadone, undetermined, subsequent encounter|Poisoning by methadone, undetermined, subsequent encounter +C2877647|T037|PT|T40.3X4D|ICD10CM|Poisoning by methadone, undetermined, subsequent encounter|Poisoning by methadone, undetermined, subsequent encounter +C2877648|T037|AB|T40.3X4S|ICD10CM|Poisoning by methadone, undetermined, sequela|Poisoning by methadone, undetermined, sequela +C2877648|T037|PT|T40.3X4S|ICD10CM|Poisoning by methadone, undetermined, sequela|Poisoning by methadone, undetermined, sequela +C0413699|T046|AB|T40.3X5|ICD10CM|Adverse effect of methadone|Adverse effect of methadone +C0413699|T046|HT|T40.3X5|ICD10CM|Adverse effect of methadone|Adverse effect of methadone +C2877649|T037|AB|T40.3X5A|ICD10CM|Adverse effect of methadone, initial encounter|Adverse effect of methadone, initial encounter +C2877649|T037|PT|T40.3X5A|ICD10CM|Adverse effect of methadone, initial encounter|Adverse effect of methadone, initial encounter +C2877650|T037|AB|T40.3X5D|ICD10CM|Adverse effect of methadone, subsequent encounter|Adverse effect of methadone, subsequent encounter +C2877650|T037|PT|T40.3X5D|ICD10CM|Adverse effect of methadone, subsequent encounter|Adverse effect of methadone, subsequent encounter +C2877651|T037|AB|T40.3X5S|ICD10CM|Adverse effect of methadone, sequela|Adverse effect of methadone, sequela +C2877651|T037|PT|T40.3X5S|ICD10CM|Adverse effect of methadone, sequela|Adverse effect of methadone, sequela +C2877652|T033|AB|T40.3X6|ICD10CM|Underdosing of methadone|Underdosing of methadone +C2877652|T033|HT|T40.3X6|ICD10CM|Underdosing of methadone|Underdosing of methadone +C2877653|T037|AB|T40.3X6A|ICD10CM|Underdosing of methadone, initial encounter|Underdosing of methadone, initial encounter +C2877653|T037|PT|T40.3X6A|ICD10CM|Underdosing of methadone, initial encounter|Underdosing of methadone, initial encounter +C2877654|T037|AB|T40.3X6D|ICD10CM|Underdosing of methadone, subsequent encounter|Underdosing of methadone, subsequent encounter +C2877654|T037|PT|T40.3X6D|ICD10CM|Underdosing of methadone, subsequent encounter|Underdosing of methadone, subsequent encounter +C2877655|T037|AB|T40.3X6S|ICD10CM|Underdosing of methadone, sequela|Underdosing of methadone, sequela +C2877655|T037|PT|T40.3X6S|ICD10CM|Underdosing of methadone, sequela|Underdosing of methadone, sequela +C0478436|T037|PS|T40.4|ICD10|Other synthetic narcotics|Other synthetic narcotics +C0478436|T037|PX|T40.4|ICD10|Poisoning by other synthetic narcotics|Poisoning by other synthetic narcotics +C2877656|T037|HT|T40.4|ICD10CM|Poisoning by, adverse effect of and underdosing of other synthetic narcotics|Poisoning by, adverse effect of and underdosing of other synthetic narcotics +C2877656|T037|AB|T40.4|ICD10CM|Synthetic narcotics|Synthetic narcotics +C2877656|T037|HT|T40.4X|ICD10CM|Poisoning by, adverse effect of and underdosing of other synthetic narcotics|Poisoning by, adverse effect of and underdosing of other synthetic narcotics +C2877656|T037|AB|T40.4X|ICD10CM|Synthetic narcotics|Synthetic narcotics +C2877657|T037|AB|T40.4X1|ICD10CM|Poisoning by oth synthetic narcotics, accidental|Poisoning by oth synthetic narcotics, accidental +C0478436|T037|ET|T40.4X1|ICD10CM|Poisoning by other synthetic narcotics NOS|Poisoning by other synthetic narcotics NOS +C2877657|T037|HT|T40.4X1|ICD10CM|Poisoning by other synthetic narcotics, accidental (unintentional)|Poisoning by other synthetic narcotics, accidental (unintentional) +C2877658|T037|AB|T40.4X1A|ICD10CM|Poisoning by oth synthetic narcotics, accidental, init|Poisoning by oth synthetic narcotics, accidental, init +C2877658|T037|PT|T40.4X1A|ICD10CM|Poisoning by other synthetic narcotics, accidental (unintentional), initial encounter|Poisoning by other synthetic narcotics, accidental (unintentional), initial encounter +C2877659|T037|AB|T40.4X1D|ICD10CM|Poisoning by oth synthetic narcotics, accidental, subs|Poisoning by oth synthetic narcotics, accidental, subs +C2877659|T037|PT|T40.4X1D|ICD10CM|Poisoning by other synthetic narcotics, accidental (unintentional), subsequent encounter|Poisoning by other synthetic narcotics, accidental (unintentional), subsequent encounter +C2877660|T037|AB|T40.4X1S|ICD10CM|Poisoning by oth synthetic narcotics, accidental, sequela|Poisoning by oth synthetic narcotics, accidental, sequela +C2877660|T037|PT|T40.4X1S|ICD10CM|Poisoning by other synthetic narcotics, accidental (unintentional), sequela|Poisoning by other synthetic narcotics, accidental (unintentional), sequela +C2877661|T037|AB|T40.4X2|ICD10CM|Poisoning by oth synthetic narcotics, intentional self-harm|Poisoning by oth synthetic narcotics, intentional self-harm +C2877661|T037|HT|T40.4X2|ICD10CM|Poisoning by other synthetic narcotics, intentional self-harm|Poisoning by other synthetic narcotics, intentional self-harm +C2877662|T037|AB|T40.4X2A|ICD10CM|Poisoning by oth synthetic narcotics, self-harm, init|Poisoning by oth synthetic narcotics, self-harm, init +C2877662|T037|PT|T40.4X2A|ICD10CM|Poisoning by other synthetic narcotics, intentional self-harm, initial encounter|Poisoning by other synthetic narcotics, intentional self-harm, initial encounter +C2877663|T037|AB|T40.4X2D|ICD10CM|Poisoning by oth synthetic narcotics, self-harm, subs|Poisoning by oth synthetic narcotics, self-harm, subs +C2877663|T037|PT|T40.4X2D|ICD10CM|Poisoning by other synthetic narcotics, intentional self-harm, subsequent encounter|Poisoning by other synthetic narcotics, intentional self-harm, subsequent encounter +C2877664|T037|AB|T40.4X2S|ICD10CM|Poisoning by oth synthetic narcotics, self-harm, sequela|Poisoning by oth synthetic narcotics, self-harm, sequela +C2877664|T037|PT|T40.4X2S|ICD10CM|Poisoning by other synthetic narcotics, intentional self-harm, sequela|Poisoning by other synthetic narcotics, intentional self-harm, sequela +C2877665|T037|AB|T40.4X3|ICD10CM|Poisoning by other synthetic narcotics, assault|Poisoning by other synthetic narcotics, assault +C2877665|T037|HT|T40.4X3|ICD10CM|Poisoning by other synthetic narcotics, assault|Poisoning by other synthetic narcotics, assault +C2877666|T037|AB|T40.4X3A|ICD10CM|Poisoning by other synthetic narcotics, assault, init encntr|Poisoning by other synthetic narcotics, assault, init encntr +C2877666|T037|PT|T40.4X3A|ICD10CM|Poisoning by other synthetic narcotics, assault, initial encounter|Poisoning by other synthetic narcotics, assault, initial encounter +C2877667|T037|AB|T40.4X3D|ICD10CM|Poisoning by other synthetic narcotics, assault, subs encntr|Poisoning by other synthetic narcotics, assault, subs encntr +C2877667|T037|PT|T40.4X3D|ICD10CM|Poisoning by other synthetic narcotics, assault, subsequent encounter|Poisoning by other synthetic narcotics, assault, subsequent encounter +C2877668|T037|AB|T40.4X3S|ICD10CM|Poisoning by other synthetic narcotics, assault, sequela|Poisoning by other synthetic narcotics, assault, sequela +C2877668|T037|PT|T40.4X3S|ICD10CM|Poisoning by other synthetic narcotics, assault, sequela|Poisoning by other synthetic narcotics, assault, sequela +C2877669|T037|AB|T40.4X4|ICD10CM|Poisoning by other synthetic narcotics, undetermined|Poisoning by other synthetic narcotics, undetermined +C2877669|T037|HT|T40.4X4|ICD10CM|Poisoning by other synthetic narcotics, undetermined|Poisoning by other synthetic narcotics, undetermined +C2877670|T037|AB|T40.4X4A|ICD10CM|Poisoning by oth synthetic narcotics, undetermined, init|Poisoning by oth synthetic narcotics, undetermined, init +C2877670|T037|PT|T40.4X4A|ICD10CM|Poisoning by other synthetic narcotics, undetermined, initial encounter|Poisoning by other synthetic narcotics, undetermined, initial encounter +C2877671|T037|AB|T40.4X4D|ICD10CM|Poisoning by oth synthetic narcotics, undetermined, subs|Poisoning by oth synthetic narcotics, undetermined, subs +C2877671|T037|PT|T40.4X4D|ICD10CM|Poisoning by other synthetic narcotics, undetermined, subsequent encounter|Poisoning by other synthetic narcotics, undetermined, subsequent encounter +C2877672|T037|AB|T40.4X4S|ICD10CM|Poisoning by oth synthetic narcotics, undetermined, sequela|Poisoning by oth synthetic narcotics, undetermined, sequela +C2877672|T037|PT|T40.4X4S|ICD10CM|Poisoning by other synthetic narcotics, undetermined, sequela|Poisoning by other synthetic narcotics, undetermined, sequela +C2877673|T037|AB|T40.4X5|ICD10CM|Adverse effect of other synthetic narcotics|Adverse effect of other synthetic narcotics +C2877673|T037|HT|T40.4X5|ICD10CM|Adverse effect of other synthetic narcotics|Adverse effect of other synthetic narcotics +C2877674|T037|AB|T40.4X5A|ICD10CM|Adverse effect of other synthetic narcotics, init encntr|Adverse effect of other synthetic narcotics, init encntr +C2877674|T037|PT|T40.4X5A|ICD10CM|Adverse effect of other synthetic narcotics, initial encounter|Adverse effect of other synthetic narcotics, initial encounter +C2877675|T037|AB|T40.4X5D|ICD10CM|Adverse effect of other synthetic narcotics, subs encntr|Adverse effect of other synthetic narcotics, subs encntr +C2877675|T037|PT|T40.4X5D|ICD10CM|Adverse effect of other synthetic narcotics, subsequent encounter|Adverse effect of other synthetic narcotics, subsequent encounter +C2877676|T037|AB|T40.4X5S|ICD10CM|Adverse effect of other synthetic narcotics, sequela|Adverse effect of other synthetic narcotics, sequela +C2877676|T037|PT|T40.4X5S|ICD10CM|Adverse effect of other synthetic narcotics, sequela|Adverse effect of other synthetic narcotics, sequela +C2877677|T037|AB|T40.4X6|ICD10CM|Underdosing of other synthetic narcotics|Underdosing of other synthetic narcotics +C2877677|T037|HT|T40.4X6|ICD10CM|Underdosing of other synthetic narcotics|Underdosing of other synthetic narcotics +C2877678|T037|AB|T40.4X6A|ICD10CM|Underdosing of other synthetic narcotics, initial encounter|Underdosing of other synthetic narcotics, initial encounter +C2877678|T037|PT|T40.4X6A|ICD10CM|Underdosing of other synthetic narcotics, initial encounter|Underdosing of other synthetic narcotics, initial encounter +C2877679|T037|AB|T40.4X6D|ICD10CM|Underdosing of other synthetic narcotics, subs encntr|Underdosing of other synthetic narcotics, subs encntr +C2877679|T037|PT|T40.4X6D|ICD10CM|Underdosing of other synthetic narcotics, subsequent encounter|Underdosing of other synthetic narcotics, subsequent encounter +C2877680|T037|AB|T40.4X6S|ICD10CM|Underdosing of other synthetic narcotics, sequela|Underdosing of other synthetic narcotics, sequela +C2877680|T037|PT|T40.4X6S|ICD10CM|Underdosing of other synthetic narcotics, sequela|Underdosing of other synthetic narcotics, sequela +C0274659|T037|PS|T40.5|ICD10|Cocaine|Cocaine +C0274659|T037|PX|T40.5|ICD10|Poisoning by cocaine|Poisoning by cocaine +C2877681|T037|AB|T40.5|ICD10CM|Poisoning by, adverse effect of and underdosing of cocaine|Poisoning by, adverse effect of and underdosing of cocaine +C2877681|T037|HT|T40.5|ICD10CM|Poisoning by, adverse effect of and underdosing of cocaine|Poisoning by, adverse effect of and underdosing of cocaine +C2877681|T037|HT|T40.5X|ICD10CM|Poisoning by, adverse effect of and underdosing of cocaine|Poisoning by, adverse effect of and underdosing of cocaine +C2877681|T037|AB|T40.5X|ICD10CM|Poisoning by, adverse effect of and underdosing of cocaine|Poisoning by, adverse effect of and underdosing of cocaine +C0274659|T037|ET|T40.5X1|ICD10CM|Poisoning by cocaine NOS|Poisoning by cocaine NOS +C2877682|T037|AB|T40.5X1|ICD10CM|Poisoning by cocaine, accidental (unintentional)|Poisoning by cocaine, accidental (unintentional) +C2877682|T037|HT|T40.5X1|ICD10CM|Poisoning by cocaine, accidental (unintentional)|Poisoning by cocaine, accidental (unintentional) +C2877683|T037|AB|T40.5X1A|ICD10CM|Poisoning by cocaine, accidental (unintentional), init|Poisoning by cocaine, accidental (unintentional), init +C2877683|T037|PT|T40.5X1A|ICD10CM|Poisoning by cocaine, accidental (unintentional), initial encounter|Poisoning by cocaine, accidental (unintentional), initial encounter +C2877684|T037|AB|T40.5X1D|ICD10CM|Poisoning by cocaine, accidental (unintentional), subs|Poisoning by cocaine, accidental (unintentional), subs +C2877684|T037|PT|T40.5X1D|ICD10CM|Poisoning by cocaine, accidental (unintentional), subsequent encounter|Poisoning by cocaine, accidental (unintentional), subsequent encounter +C2877685|T037|AB|T40.5X1S|ICD10CM|Poisoning by cocaine, accidental (unintentional), sequela|Poisoning by cocaine, accidental (unintentional), sequela +C2877685|T037|PT|T40.5X1S|ICD10CM|Poisoning by cocaine, accidental (unintentional), sequela|Poisoning by cocaine, accidental (unintentional), sequela +C2877686|T037|AB|T40.5X2|ICD10CM|Poisoning by cocaine, intentional self-harm|Poisoning by cocaine, intentional self-harm +C2877686|T037|HT|T40.5X2|ICD10CM|Poisoning by cocaine, intentional self-harm|Poisoning by cocaine, intentional self-harm +C2877687|T037|AB|T40.5X2A|ICD10CM|Poisoning by cocaine, intentional self-harm, init encntr|Poisoning by cocaine, intentional self-harm, init encntr +C2877687|T037|PT|T40.5X2A|ICD10CM|Poisoning by cocaine, intentional self-harm, initial encounter|Poisoning by cocaine, intentional self-harm, initial encounter +C2877688|T037|AB|T40.5X2D|ICD10CM|Poisoning by cocaine, intentional self-harm, subs encntr|Poisoning by cocaine, intentional self-harm, subs encntr +C2877688|T037|PT|T40.5X2D|ICD10CM|Poisoning by cocaine, intentional self-harm, subsequent encounter|Poisoning by cocaine, intentional self-harm, subsequent encounter +C2877689|T037|AB|T40.5X2S|ICD10CM|Poisoning by cocaine, intentional self-harm, sequela|Poisoning by cocaine, intentional self-harm, sequela +C2877689|T037|PT|T40.5X2S|ICD10CM|Poisoning by cocaine, intentional self-harm, sequela|Poisoning by cocaine, intentional self-harm, sequela +C2877690|T037|AB|T40.5X3|ICD10CM|Poisoning by cocaine, assault|Poisoning by cocaine, assault +C2877690|T037|HT|T40.5X3|ICD10CM|Poisoning by cocaine, assault|Poisoning by cocaine, assault +C2877691|T037|AB|T40.5X3A|ICD10CM|Poisoning by cocaine, assault, initial encounter|Poisoning by cocaine, assault, initial encounter +C2877691|T037|PT|T40.5X3A|ICD10CM|Poisoning by cocaine, assault, initial encounter|Poisoning by cocaine, assault, initial encounter +C2877692|T037|AB|T40.5X3D|ICD10CM|Poisoning by cocaine, assault, subsequent encounter|Poisoning by cocaine, assault, subsequent encounter +C2877692|T037|PT|T40.5X3D|ICD10CM|Poisoning by cocaine, assault, subsequent encounter|Poisoning by cocaine, assault, subsequent encounter +C2877693|T037|AB|T40.5X3S|ICD10CM|Poisoning by cocaine, assault, sequela|Poisoning by cocaine, assault, sequela +C2877693|T037|PT|T40.5X3S|ICD10CM|Poisoning by cocaine, assault, sequela|Poisoning by cocaine, assault, sequela +C2877694|T037|AB|T40.5X4|ICD10CM|Poisoning by cocaine, undetermined|Poisoning by cocaine, undetermined +C2877694|T037|HT|T40.5X4|ICD10CM|Poisoning by cocaine, undetermined|Poisoning by cocaine, undetermined +C2877695|T037|AB|T40.5X4A|ICD10CM|Poisoning by cocaine, undetermined, initial encounter|Poisoning by cocaine, undetermined, initial encounter +C2877695|T037|PT|T40.5X4A|ICD10CM|Poisoning by cocaine, undetermined, initial encounter|Poisoning by cocaine, undetermined, initial encounter +C2877696|T037|AB|T40.5X4D|ICD10CM|Poisoning by cocaine, undetermined, subsequent encounter|Poisoning by cocaine, undetermined, subsequent encounter +C2877696|T037|PT|T40.5X4D|ICD10CM|Poisoning by cocaine, undetermined, subsequent encounter|Poisoning by cocaine, undetermined, subsequent encounter +C2877697|T037|AB|T40.5X4S|ICD10CM|Poisoning by cocaine, undetermined, sequela|Poisoning by cocaine, undetermined, sequela +C2877697|T037|PT|T40.5X4S|ICD10CM|Poisoning by cocaine, undetermined, sequela|Poisoning by cocaine, undetermined, sequela +C2877698|T046|AB|T40.5X5|ICD10CM|Adverse effect of cocaine|Adverse effect of cocaine +C2877698|T046|HT|T40.5X5|ICD10CM|Adverse effect of cocaine|Adverse effect of cocaine +C2877699|T037|AB|T40.5X5A|ICD10CM|Adverse effect of cocaine, initial encounter|Adverse effect of cocaine, initial encounter +C2877699|T037|PT|T40.5X5A|ICD10CM|Adverse effect of cocaine, initial encounter|Adverse effect of cocaine, initial encounter +C2877700|T037|AB|T40.5X5D|ICD10CM|Adverse effect of cocaine, subsequent encounter|Adverse effect of cocaine, subsequent encounter +C2877700|T037|PT|T40.5X5D|ICD10CM|Adverse effect of cocaine, subsequent encounter|Adverse effect of cocaine, subsequent encounter +C2877701|T037|AB|T40.5X5S|ICD10CM|Adverse effect of cocaine, sequela|Adverse effect of cocaine, sequela +C2877701|T037|PT|T40.5X5S|ICD10CM|Adverse effect of cocaine, sequela|Adverse effect of cocaine, sequela +C3508317|T033|AB|T40.5X6|ICD10CM|Underdosing of cocaine|Underdosing of cocaine +C3508317|T033|HT|T40.5X6|ICD10CM|Underdosing of cocaine|Underdosing of cocaine +C2877703|T037|AB|T40.5X6A|ICD10CM|Underdosing of cocaine, initial encounter|Underdosing of cocaine, initial encounter +C2877703|T037|PT|T40.5X6A|ICD10CM|Underdosing of cocaine, initial encounter|Underdosing of cocaine, initial encounter +C2877704|T037|AB|T40.5X6D|ICD10CM|Underdosing of cocaine, subsequent encounter|Underdosing of cocaine, subsequent encounter +C2877704|T037|PT|T40.5X6D|ICD10CM|Underdosing of cocaine, subsequent encounter|Underdosing of cocaine, subsequent encounter +C2877705|T037|AB|T40.5X6S|ICD10CM|Underdosing of cocaine, sequela|Underdosing of cocaine, sequela +C2877705|T037|PT|T40.5X6S|ICD10CM|Underdosing of cocaine, sequela|Underdosing of cocaine, sequela +C2877706|T037|AB|T40.6|ICD10CM|And unsp narcotics|And unsp narcotics +C0478437|T037|PS|T40.6|ICD10|Other and unspecified narcotics|Other and unspecified narcotics +C0478437|T037|PX|T40.6|ICD10|Poisoning by other and unspecified narcotics|Poisoning by other and unspecified narcotics +C2877706|T037|HT|T40.6|ICD10CM|Poisoning by, adverse effect of and underdosing of other and unspecified narcotics|Poisoning by, adverse effect of and underdosing of other and unspecified narcotics +C2877707|T037|HT|T40.60|ICD10CM|Poisoning by, adverse effect of and underdosing of unspecified narcotics|Poisoning by, adverse effect of and underdosing of unspecified narcotics +C2877707|T037|AB|T40.60|ICD10CM|Unsp narcotics|Unsp narcotics +C0344155|T037|ET|T40.601|ICD10CM|Poisoning by narcotics NOS|Poisoning by narcotics NOS +C2877708|T037|AB|T40.601|ICD10CM|Poisoning by unsp narcotics, accidental (unintentional)|Poisoning by unsp narcotics, accidental (unintentional) +C2877708|T037|HT|T40.601|ICD10CM|Poisoning by unspecified narcotics, accidental (unintentional)|Poisoning by unspecified narcotics, accidental (unintentional) +C2877709|T037|AB|T40.601A|ICD10CM|Poisoning by unsp narcotics, accidental, init|Poisoning by unsp narcotics, accidental, init +C2877709|T037|PT|T40.601A|ICD10CM|Poisoning by unspecified narcotics, accidental (unintentional), initial encounter|Poisoning by unspecified narcotics, accidental (unintentional), initial encounter +C2877710|T037|AB|T40.601D|ICD10CM|Poisoning by unsp narcotics, accidental, subs|Poisoning by unsp narcotics, accidental, subs +C2877710|T037|PT|T40.601D|ICD10CM|Poisoning by unspecified narcotics, accidental (unintentional), subsequent encounter|Poisoning by unspecified narcotics, accidental (unintentional), subsequent encounter +C2877711|T037|AB|T40.601S|ICD10CM|Poisoning by unsp narcotics, accidental, sequela|Poisoning by unsp narcotics, accidental, sequela +C2877711|T037|PT|T40.601S|ICD10CM|Poisoning by unspecified narcotics, accidental (unintentional), sequela|Poisoning by unspecified narcotics, accidental (unintentional), sequela +C2877712|T037|AB|T40.602|ICD10CM|Poisoning by unspecified narcotics, intentional self-harm|Poisoning by unspecified narcotics, intentional self-harm +C2877712|T037|HT|T40.602|ICD10CM|Poisoning by unspecified narcotics, intentional self-harm|Poisoning by unspecified narcotics, intentional self-harm +C2877713|T037|AB|T40.602A|ICD10CM|Poisoning by unsp narcotics, intentional self-harm, init|Poisoning by unsp narcotics, intentional self-harm, init +C2877713|T037|PT|T40.602A|ICD10CM|Poisoning by unspecified narcotics, intentional self-harm, initial encounter|Poisoning by unspecified narcotics, intentional self-harm, initial encounter +C2877714|T037|AB|T40.602D|ICD10CM|Poisoning by unsp narcotics, intentional self-harm, subs|Poisoning by unsp narcotics, intentional self-harm, subs +C2877714|T037|PT|T40.602D|ICD10CM|Poisoning by unspecified narcotics, intentional self-harm, subsequent encounter|Poisoning by unspecified narcotics, intentional self-harm, subsequent encounter +C2877715|T037|AB|T40.602S|ICD10CM|Poisoning by unsp narcotics, intentional self-harm, sequela|Poisoning by unsp narcotics, intentional self-harm, sequela +C2877715|T037|PT|T40.602S|ICD10CM|Poisoning by unspecified narcotics, intentional self-harm, sequela|Poisoning by unspecified narcotics, intentional self-harm, sequela +C2877716|T037|AB|T40.603|ICD10CM|Poisoning by unspecified narcotics, assault|Poisoning by unspecified narcotics, assault +C2877716|T037|HT|T40.603|ICD10CM|Poisoning by unspecified narcotics, assault|Poisoning by unspecified narcotics, assault +C2877717|T037|AB|T40.603A|ICD10CM|Poisoning by unspecified narcotics, assault, init encntr|Poisoning by unspecified narcotics, assault, init encntr +C2877717|T037|PT|T40.603A|ICD10CM|Poisoning by unspecified narcotics, assault, initial encounter|Poisoning by unspecified narcotics, assault, initial encounter +C2877718|T037|AB|T40.603D|ICD10CM|Poisoning by unspecified narcotics, assault, subs encntr|Poisoning by unspecified narcotics, assault, subs encntr +C2877718|T037|PT|T40.603D|ICD10CM|Poisoning by unspecified narcotics, assault, subsequent encounter|Poisoning by unspecified narcotics, assault, subsequent encounter +C2877719|T037|AB|T40.603S|ICD10CM|Poisoning by unspecified narcotics, assault, sequela|Poisoning by unspecified narcotics, assault, sequela +C2877719|T037|PT|T40.603S|ICD10CM|Poisoning by unspecified narcotics, assault, sequela|Poisoning by unspecified narcotics, assault, sequela +C2877720|T037|AB|T40.604|ICD10CM|Poisoning by unspecified narcotics, undetermined|Poisoning by unspecified narcotics, undetermined +C2877720|T037|HT|T40.604|ICD10CM|Poisoning by unspecified narcotics, undetermined|Poisoning by unspecified narcotics, undetermined +C2877721|T037|AB|T40.604A|ICD10CM|Poisoning by unsp narcotics, undetermined, init encntr|Poisoning by unsp narcotics, undetermined, init encntr +C2877721|T037|PT|T40.604A|ICD10CM|Poisoning by unspecified narcotics, undetermined, initial encounter|Poisoning by unspecified narcotics, undetermined, initial encounter +C2877722|T037|AB|T40.604D|ICD10CM|Poisoning by unsp narcotics, undetermined, subs encntr|Poisoning by unsp narcotics, undetermined, subs encntr +C2877722|T037|PT|T40.604D|ICD10CM|Poisoning by unspecified narcotics, undetermined, subsequent encounter|Poisoning by unspecified narcotics, undetermined, subsequent encounter +C2877723|T037|AB|T40.604S|ICD10CM|Poisoning by unspecified narcotics, undetermined, sequela|Poisoning by unspecified narcotics, undetermined, sequela +C2877723|T037|PT|T40.604S|ICD10CM|Poisoning by unspecified narcotics, undetermined, sequela|Poisoning by unspecified narcotics, undetermined, sequela +C2877724|T037|AB|T40.605|ICD10CM|Adverse effect of unspecified narcotics|Adverse effect of unspecified narcotics +C2877724|T037|HT|T40.605|ICD10CM|Adverse effect of unspecified narcotics|Adverse effect of unspecified narcotics +C2877725|T037|AB|T40.605A|ICD10CM|Adverse effect of unspecified narcotics, initial encounter|Adverse effect of unspecified narcotics, initial encounter +C2877725|T037|PT|T40.605A|ICD10CM|Adverse effect of unspecified narcotics, initial encounter|Adverse effect of unspecified narcotics, initial encounter +C2877726|T037|AB|T40.605D|ICD10CM|Adverse effect of unspecified narcotics, subs encntr|Adverse effect of unspecified narcotics, subs encntr +C2877726|T037|PT|T40.605D|ICD10CM|Adverse effect of unspecified narcotics, subsequent encounter|Adverse effect of unspecified narcotics, subsequent encounter +C2877727|T037|AB|T40.605S|ICD10CM|Adverse effect of unspecified narcotics, sequela|Adverse effect of unspecified narcotics, sequela +C2877727|T037|PT|T40.605S|ICD10CM|Adverse effect of unspecified narcotics, sequela|Adverse effect of unspecified narcotics, sequela +C2877728|T037|AB|T40.606|ICD10CM|Underdosing of unspecified narcotics|Underdosing of unspecified narcotics +C2877728|T037|HT|T40.606|ICD10CM|Underdosing of unspecified narcotics|Underdosing of unspecified narcotics +C2877729|T037|AB|T40.606A|ICD10CM|Underdosing of unspecified narcotics, initial encounter|Underdosing of unspecified narcotics, initial encounter +C2877729|T037|PT|T40.606A|ICD10CM|Underdosing of unspecified narcotics, initial encounter|Underdosing of unspecified narcotics, initial encounter +C2877730|T037|AB|T40.606D|ICD10CM|Underdosing of unspecified narcotics, subsequent encounter|Underdosing of unspecified narcotics, subsequent encounter +C2877730|T037|PT|T40.606D|ICD10CM|Underdosing of unspecified narcotics, subsequent encounter|Underdosing of unspecified narcotics, subsequent encounter +C2877731|T037|AB|T40.606S|ICD10CM|Underdosing of unspecified narcotics, sequela|Underdosing of unspecified narcotics, sequela +C2877731|T037|PT|T40.606S|ICD10CM|Underdosing of unspecified narcotics, sequela|Underdosing of unspecified narcotics, sequela +C2877732|T037|AB|T40.69|ICD10CM|Poisoning by, adverse effect of and underdosing of narcotics|Poisoning by, adverse effect of and underdosing of narcotics +C2877732|T037|HT|T40.69|ICD10CM|Poisoning by, adverse effect of and underdosing of other narcotics|Poisoning by, adverse effect of and underdosing of other narcotics +C2877733|T037|ET|T40.691|ICD10CM|Poisoning by other narcotics NOS|Poisoning by other narcotics NOS +C2877734|T037|AB|T40.691|ICD10CM|Poisoning by other narcotics, accidental (unintentional)|Poisoning by other narcotics, accidental (unintentional) +C2877734|T037|HT|T40.691|ICD10CM|Poisoning by other narcotics, accidental (unintentional)|Poisoning by other narcotics, accidental (unintentional) +C2877735|T037|AB|T40.691A|ICD10CM|Poisoning by oth narcotics, accidental (unintentional), init|Poisoning by oth narcotics, accidental (unintentional), init +C2877735|T037|PT|T40.691A|ICD10CM|Poisoning by other narcotics, accidental (unintentional), initial encounter|Poisoning by other narcotics, accidental (unintentional), initial encounter +C2877736|T037|AB|T40.691D|ICD10CM|Poisoning by oth narcotics, accidental (unintentional), subs|Poisoning by oth narcotics, accidental (unintentional), subs +C2877736|T037|PT|T40.691D|ICD10CM|Poisoning by other narcotics, accidental (unintentional), subsequent encounter|Poisoning by other narcotics, accidental (unintentional), subsequent encounter +C2877737|T037|AB|T40.691S|ICD10CM|Poisoning by oth narcotics, accidental, sequela|Poisoning by oth narcotics, accidental, sequela +C2877737|T037|PT|T40.691S|ICD10CM|Poisoning by other narcotics, accidental (unintentional), sequela|Poisoning by other narcotics, accidental (unintentional), sequela +C2877738|T037|AB|T40.692|ICD10CM|Poisoning by other narcotics, intentional self-harm|Poisoning by other narcotics, intentional self-harm +C2877738|T037|HT|T40.692|ICD10CM|Poisoning by other narcotics, intentional self-harm|Poisoning by other narcotics, intentional self-harm +C2877739|T037|AB|T40.692A|ICD10CM|Poisoning by oth narcotics, intentional self-harm, init|Poisoning by oth narcotics, intentional self-harm, init +C2877739|T037|PT|T40.692A|ICD10CM|Poisoning by other narcotics, intentional self-harm, initial encounter|Poisoning by other narcotics, intentional self-harm, initial encounter +C2877740|T037|AB|T40.692D|ICD10CM|Poisoning by oth narcotics, intentional self-harm, subs|Poisoning by oth narcotics, intentional self-harm, subs +C2877740|T037|PT|T40.692D|ICD10CM|Poisoning by other narcotics, intentional self-harm, subsequent encounter|Poisoning by other narcotics, intentional self-harm, subsequent encounter +C2877741|T037|AB|T40.692S|ICD10CM|Poisoning by other narcotics, intentional self-harm, sequela|Poisoning by other narcotics, intentional self-harm, sequela +C2877741|T037|PT|T40.692S|ICD10CM|Poisoning by other narcotics, intentional self-harm, sequela|Poisoning by other narcotics, intentional self-harm, sequela +C2877742|T037|AB|T40.693|ICD10CM|Poisoning by other narcotics, assault|Poisoning by other narcotics, assault +C2877742|T037|HT|T40.693|ICD10CM|Poisoning by other narcotics, assault|Poisoning by other narcotics, assault +C2877743|T037|AB|T40.693A|ICD10CM|Poisoning by other narcotics, assault, initial encounter|Poisoning by other narcotics, assault, initial encounter +C2877743|T037|PT|T40.693A|ICD10CM|Poisoning by other narcotics, assault, initial encounter|Poisoning by other narcotics, assault, initial encounter +C2877744|T037|AB|T40.693D|ICD10CM|Poisoning by other narcotics, assault, subsequent encounter|Poisoning by other narcotics, assault, subsequent encounter +C2877744|T037|PT|T40.693D|ICD10CM|Poisoning by other narcotics, assault, subsequent encounter|Poisoning by other narcotics, assault, subsequent encounter +C2877745|T037|AB|T40.693S|ICD10CM|Poisoning by other narcotics, assault, sequela|Poisoning by other narcotics, assault, sequela +C2877745|T037|PT|T40.693S|ICD10CM|Poisoning by other narcotics, assault, sequela|Poisoning by other narcotics, assault, sequela +C2877746|T037|AB|T40.694|ICD10CM|Poisoning by other narcotics, undetermined|Poisoning by other narcotics, undetermined +C2877746|T037|HT|T40.694|ICD10CM|Poisoning by other narcotics, undetermined|Poisoning by other narcotics, undetermined +C2877747|T037|AB|T40.694A|ICD10CM|Poisoning by other narcotics, undetermined, init encntr|Poisoning by other narcotics, undetermined, init encntr +C2877747|T037|PT|T40.694A|ICD10CM|Poisoning by other narcotics, undetermined, initial encounter|Poisoning by other narcotics, undetermined, initial encounter +C2877748|T037|AB|T40.694D|ICD10CM|Poisoning by other narcotics, undetermined, subs encntr|Poisoning by other narcotics, undetermined, subs encntr +C2877748|T037|PT|T40.694D|ICD10CM|Poisoning by other narcotics, undetermined, subsequent encounter|Poisoning by other narcotics, undetermined, subsequent encounter +C2877749|T037|AB|T40.694S|ICD10CM|Poisoning by other narcotics, undetermined, sequela|Poisoning by other narcotics, undetermined, sequela +C2877749|T037|PT|T40.694S|ICD10CM|Poisoning by other narcotics, undetermined, sequela|Poisoning by other narcotics, undetermined, sequela +C2877750|T037|AB|T40.695|ICD10CM|Adverse effect of other narcotics|Adverse effect of other narcotics +C2877750|T037|HT|T40.695|ICD10CM|Adverse effect of other narcotics|Adverse effect of other narcotics +C2877751|T037|AB|T40.695A|ICD10CM|Adverse effect of other narcotics, initial encounter|Adverse effect of other narcotics, initial encounter +C2877751|T037|PT|T40.695A|ICD10CM|Adverse effect of other narcotics, initial encounter|Adverse effect of other narcotics, initial encounter +C2877752|T037|AB|T40.695D|ICD10CM|Adverse effect of other narcotics, subsequent encounter|Adverse effect of other narcotics, subsequent encounter +C2877752|T037|PT|T40.695D|ICD10CM|Adverse effect of other narcotics, subsequent encounter|Adverse effect of other narcotics, subsequent encounter +C2877753|T037|AB|T40.695S|ICD10CM|Adverse effect of other narcotics, sequela|Adverse effect of other narcotics, sequela +C2877753|T037|PT|T40.695S|ICD10CM|Adverse effect of other narcotics, sequela|Adverse effect of other narcotics, sequela +C2877754|T037|AB|T40.696|ICD10CM|Underdosing of other narcotics|Underdosing of other narcotics +C2877754|T037|HT|T40.696|ICD10CM|Underdosing of other narcotics|Underdosing of other narcotics +C2877755|T037|AB|T40.696A|ICD10CM|Underdosing of other narcotics, initial encounter|Underdosing of other narcotics, initial encounter +C2877755|T037|PT|T40.696A|ICD10CM|Underdosing of other narcotics, initial encounter|Underdosing of other narcotics, initial encounter +C2877756|T037|AB|T40.696D|ICD10CM|Underdosing of other narcotics, subsequent encounter|Underdosing of other narcotics, subsequent encounter +C2877756|T037|PT|T40.696D|ICD10CM|Underdosing of other narcotics, subsequent encounter|Underdosing of other narcotics, subsequent encounter +C2877757|T037|AB|T40.696S|ICD10CM|Underdosing of other narcotics, sequela|Underdosing of other narcotics, sequela +C2877757|T037|PT|T40.696S|ICD10CM|Underdosing of other narcotics, sequela|Underdosing of other narcotics, sequela +C2877758|T037|AB|T40.7|ICD10CM|Cannabis (derivatives)|Cannabis (derivatives) +C0275208|T037|PS|T40.7|ICD10|Cannabis (derivatives)|Cannabis (derivatives) +C0275208|T037|PX|T40.7|ICD10|Poisoning by cannabis (derivatives)|Poisoning by cannabis (derivatives) +C2877758|T037|HT|T40.7|ICD10CM|Poisoning by, adverse effect of and underdosing of cannabis (derivatives)|Poisoning by, adverse effect of and underdosing of cannabis (derivatives) +C2877758|T037|AB|T40.7X|ICD10CM|Cannabis (derivatives)|Cannabis (derivatives) +C2877758|T037|HT|T40.7X|ICD10CM|Poisoning by, adverse effect of and underdosing of cannabis (derivatives)|Poisoning by, adverse effect of and underdosing of cannabis (derivatives) +C0416637|T037|AB|T40.7X1|ICD10CM|Poisoning by cannabis (derivatives), accidental|Poisoning by cannabis (derivatives), accidental +C0416637|T037|HT|T40.7X1|ICD10CM|Poisoning by cannabis (derivatives), accidental (unintentional)|Poisoning by cannabis (derivatives), accidental (unintentional) +C0728842|T037|ET|T40.7X1|ICD10CM|Poisoning by cannabis NOS|Poisoning by cannabis NOS +C2877760|T037|PT|T40.7X1A|ICD10CM|Poisoning by cannabis (derivatives), accidental (unintentional), initial encounter|Poisoning by cannabis (derivatives), accidental (unintentional), initial encounter +C2877760|T037|AB|T40.7X1A|ICD10CM|Poisoning by cannabis (derivatives), accidental, init|Poisoning by cannabis (derivatives), accidental, init +C2877761|T037|PT|T40.7X1D|ICD10CM|Poisoning by cannabis (derivatives), accidental (unintentional), subsequent encounter|Poisoning by cannabis (derivatives), accidental (unintentional), subsequent encounter +C2877761|T037|AB|T40.7X1D|ICD10CM|Poisoning by cannabis (derivatives), accidental, subs|Poisoning by cannabis (derivatives), accidental, subs +C2877762|T037|PT|T40.7X1S|ICD10CM|Poisoning by cannabis (derivatives), accidental (unintentional), sequela|Poisoning by cannabis (derivatives), accidental (unintentional), sequela +C2877762|T037|AB|T40.7X1S|ICD10CM|Poisoning by cannabis (derivatives), accidental, sequela|Poisoning by cannabis (derivatives), accidental, sequela +C2877763|T037|AB|T40.7X2|ICD10CM|Poisoning by cannabis (derivatives), intentional self-harm|Poisoning by cannabis (derivatives), intentional self-harm +C2877763|T037|HT|T40.7X2|ICD10CM|Poisoning by cannabis (derivatives), intentional self-harm|Poisoning by cannabis (derivatives), intentional self-harm +C2877764|T037|PT|T40.7X2A|ICD10CM|Poisoning by cannabis (derivatives), intentional self-harm, initial encounter|Poisoning by cannabis (derivatives), intentional self-harm, initial encounter +C2877764|T037|AB|T40.7X2A|ICD10CM|Poisoning by cannabis (derivatives), self-harm, init|Poisoning by cannabis (derivatives), self-harm, init +C2877765|T037|PT|T40.7X2D|ICD10CM|Poisoning by cannabis (derivatives), intentional self-harm, subsequent encounter|Poisoning by cannabis (derivatives), intentional self-harm, subsequent encounter +C2877765|T037|AB|T40.7X2D|ICD10CM|Poisoning by cannabis (derivatives), self-harm, subs|Poisoning by cannabis (derivatives), self-harm, subs +C2877766|T037|PT|T40.7X2S|ICD10CM|Poisoning by cannabis (derivatives), intentional self-harm, sequela|Poisoning by cannabis (derivatives), intentional self-harm, sequela +C2877766|T037|AB|T40.7X2S|ICD10CM|Poisoning by cannabis (derivatives), self-harm, sequela|Poisoning by cannabis (derivatives), self-harm, sequela +C2877767|T037|AB|T40.7X3|ICD10CM|Poisoning by cannabis (derivatives), assault|Poisoning by cannabis (derivatives), assault +C2877767|T037|HT|T40.7X3|ICD10CM|Poisoning by cannabis (derivatives), assault|Poisoning by cannabis (derivatives), assault +C2877768|T037|AB|T40.7X3A|ICD10CM|Poisoning by cannabis (derivatives), assault, init encntr|Poisoning by cannabis (derivatives), assault, init encntr +C2877768|T037|PT|T40.7X3A|ICD10CM|Poisoning by cannabis (derivatives), assault, initial encounter|Poisoning by cannabis (derivatives), assault, initial encounter +C2877769|T037|AB|T40.7X3D|ICD10CM|Poisoning by cannabis (derivatives), assault, subs encntr|Poisoning by cannabis (derivatives), assault, subs encntr +C2877769|T037|PT|T40.7X3D|ICD10CM|Poisoning by cannabis (derivatives), assault, subsequent encounter|Poisoning by cannabis (derivatives), assault, subsequent encounter +C2877770|T037|AB|T40.7X3S|ICD10CM|Poisoning by cannabis (derivatives), assault, sequela|Poisoning by cannabis (derivatives), assault, sequela +C2877770|T037|PT|T40.7X3S|ICD10CM|Poisoning by cannabis (derivatives), assault, sequela|Poisoning by cannabis (derivatives), assault, sequela +C2877771|T037|AB|T40.7X4|ICD10CM|Poisoning by cannabis (derivatives), undetermined|Poisoning by cannabis (derivatives), undetermined +C2877771|T037|HT|T40.7X4|ICD10CM|Poisoning by cannabis (derivatives), undetermined|Poisoning by cannabis (derivatives), undetermined +C2877772|T037|AB|T40.7X4A|ICD10CM|Poisoning by cannabis (derivatives), undetermined, init|Poisoning by cannabis (derivatives), undetermined, init +C2877772|T037|PT|T40.7X4A|ICD10CM|Poisoning by cannabis (derivatives), undetermined, initial encounter|Poisoning by cannabis (derivatives), undetermined, initial encounter +C2877773|T037|AB|T40.7X4D|ICD10CM|Poisoning by cannabis (derivatives), undetermined, subs|Poisoning by cannabis (derivatives), undetermined, subs +C2877773|T037|PT|T40.7X4D|ICD10CM|Poisoning by cannabis (derivatives), undetermined, subsequent encounter|Poisoning by cannabis (derivatives), undetermined, subsequent encounter +C2877774|T037|AB|T40.7X4S|ICD10CM|Poisoning by cannabis (derivatives), undetermined, sequela|Poisoning by cannabis (derivatives), undetermined, sequela +C2877774|T037|PT|T40.7X4S|ICD10CM|Poisoning by cannabis (derivatives), undetermined, sequela|Poisoning by cannabis (derivatives), undetermined, sequela +C2118157|T046|AB|T40.7X5|ICD10CM|Adverse effect of cannabis (derivatives)|Adverse effect of cannabis (derivatives) +C2118157|T046|HT|T40.7X5|ICD10CM|Adverse effect of cannabis (derivatives)|Adverse effect of cannabis (derivatives) +C2877775|T037|AB|T40.7X5A|ICD10CM|Adverse effect of cannabis (derivatives), initial encounter|Adverse effect of cannabis (derivatives), initial encounter +C2877775|T037|PT|T40.7X5A|ICD10CM|Adverse effect of cannabis (derivatives), initial encounter|Adverse effect of cannabis (derivatives), initial encounter +C2877776|T037|AB|T40.7X5D|ICD10CM|Adverse effect of cannabis (derivatives), subs encntr|Adverse effect of cannabis (derivatives), subs encntr +C2877776|T037|PT|T40.7X5D|ICD10CM|Adverse effect of cannabis (derivatives), subsequent encounter|Adverse effect of cannabis (derivatives), subsequent encounter +C2877777|T037|AB|T40.7X5S|ICD10CM|Adverse effect of cannabis (derivatives), sequela|Adverse effect of cannabis (derivatives), sequela +C2877777|T037|PT|T40.7X5S|ICD10CM|Adverse effect of cannabis (derivatives), sequela|Adverse effect of cannabis (derivatives), sequela +C2877778|T037|AB|T40.7X6|ICD10CM|Underdosing of cannabis (derivatives)|Underdosing of cannabis (derivatives) +C2877778|T037|HT|T40.7X6|ICD10CM|Underdosing of cannabis (derivatives)|Underdosing of cannabis (derivatives) +C2877779|T037|AB|T40.7X6A|ICD10CM|Underdosing of cannabis (derivatives), initial encounter|Underdosing of cannabis (derivatives), initial encounter +C2877779|T037|PT|T40.7X6A|ICD10CM|Underdosing of cannabis (derivatives), initial encounter|Underdosing of cannabis (derivatives), initial encounter +C2877780|T037|AB|T40.7X6D|ICD10CM|Underdosing of cannabis (derivatives), subsequent encounter|Underdosing of cannabis (derivatives), subsequent encounter +C2877780|T037|PT|T40.7X6D|ICD10CM|Underdosing of cannabis (derivatives), subsequent encounter|Underdosing of cannabis (derivatives), subsequent encounter +C2877781|T037|AB|T40.7X6S|ICD10CM|Underdosing of cannabis (derivatives), sequela|Underdosing of cannabis (derivatives), sequela +C2877781|T037|PT|T40.7X6S|ICD10CM|Underdosing of cannabis (derivatives), sequela|Underdosing of cannabis (derivatives), sequela +C0274688|T037|PS|T40.8|ICD10|Lysergide [LSD]|Lysergide [LSD] +C2877783|T037|HT|T40.8|ICD10CM|Poisoning by and adverse effect of lysergide [LSD]|Poisoning by and adverse effect of lysergide [LSD] +C2877783|T037|AB|T40.8|ICD10CM|Poisoning by and adverse effect of lysergide [LSD]|Poisoning by and adverse effect of lysergide [LSD] +C0274688|T037|PX|T40.8|ICD10|Poisoning by lysergide [LSD]|Poisoning by lysergide [LSD] +C2877783|T037|AB|T40.8X|ICD10CM|Poisoning by and adverse effect of lysergide [LSD]|Poisoning by and adverse effect of lysergide [LSD] +C2877783|T037|HT|T40.8X|ICD10CM|Poisoning by and adverse effect of lysergide [LSD]|Poisoning by and adverse effect of lysergide [LSD] +C0274688|T037|ET|T40.8X1|ICD10CM|Poisoning by lysergide [LSD] NOS|Poisoning by lysergide [LSD] NOS +C2877784|T037|AB|T40.8X1|ICD10CM|Poisoning by lysergide [LSD], accidental (unintentional)|Poisoning by lysergide [LSD], accidental (unintentional) +C2877784|T037|HT|T40.8X1|ICD10CM|Poisoning by lysergide [LSD], accidental (unintentional)|Poisoning by lysergide [LSD], accidental (unintentional) +C2877785|T037|PT|T40.8X1A|ICD10CM|Poisoning by lysergide [LSD], accidental (unintentional), initial encounter|Poisoning by lysergide [LSD], accidental (unintentional), initial encounter +C2877785|T037|AB|T40.8X1A|ICD10CM|Poisoning by lysergide, accidental (unintentional), init|Poisoning by lysergide, accidental (unintentional), init +C2877786|T037|PT|T40.8X1D|ICD10CM|Poisoning by lysergide [LSD], accidental (unintentional), subsequent encounter|Poisoning by lysergide [LSD], accidental (unintentional), subsequent encounter +C2877786|T037|AB|T40.8X1D|ICD10CM|Poisoning by lysergide, accidental (unintentional), subs|Poisoning by lysergide, accidental (unintentional), subs +C2877787|T037|PT|T40.8X1S|ICD10CM|Poisoning by lysergide [LSD], accidental (unintentional), sequela|Poisoning by lysergide [LSD], accidental (unintentional), sequela +C2877787|T037|AB|T40.8X1S|ICD10CM|Poisoning by lysergide, accidental (unintentional), sequela|Poisoning by lysergide, accidental (unintentional), sequela +C2877788|T037|AB|T40.8X2|ICD10CM|Poisoning by lysergide [LSD], intentional self-harm|Poisoning by lysergide [LSD], intentional self-harm +C2877788|T037|HT|T40.8X2|ICD10CM|Poisoning by lysergide [LSD], intentional self-harm|Poisoning by lysergide [LSD], intentional self-harm +C2877789|T037|PT|T40.8X2A|ICD10CM|Poisoning by lysergide [LSD], intentional self-harm, initial encounter|Poisoning by lysergide [LSD], intentional self-harm, initial encounter +C2877789|T037|AB|T40.8X2A|ICD10CM|Poisoning by lysergide, intentional self-harm, init encntr|Poisoning by lysergide, intentional self-harm, init encntr +C2877790|T037|PT|T40.8X2D|ICD10CM|Poisoning by lysergide [LSD], intentional self-harm, subsequent encounter|Poisoning by lysergide [LSD], intentional self-harm, subsequent encounter +C2877790|T037|AB|T40.8X2D|ICD10CM|Poisoning by lysergide, intentional self-harm, subs encntr|Poisoning by lysergide, intentional self-harm, subs encntr +C2877791|T037|AB|T40.8X2S|ICD10CM|Poisoning by lysergide [LSD], intentional self-harm, sequela|Poisoning by lysergide [LSD], intentional self-harm, sequela +C2877791|T037|PT|T40.8X2S|ICD10CM|Poisoning by lysergide [LSD], intentional self-harm, sequela|Poisoning by lysergide [LSD], intentional self-harm, sequela +C2877792|T037|AB|T40.8X3|ICD10CM|Poisoning by lysergide [LSD], assault|Poisoning by lysergide [LSD], assault +C2877792|T037|HT|T40.8X3|ICD10CM|Poisoning by lysergide [LSD], assault|Poisoning by lysergide [LSD], assault +C2877793|T037|AB|T40.8X3A|ICD10CM|Poisoning by lysergide [LSD], assault, initial encounter|Poisoning by lysergide [LSD], assault, initial encounter +C2877793|T037|PT|T40.8X3A|ICD10CM|Poisoning by lysergide [LSD], assault, initial encounter|Poisoning by lysergide [LSD], assault, initial encounter +C2877794|T037|AB|T40.8X3D|ICD10CM|Poisoning by lysergide [LSD], assault, subsequent encounter|Poisoning by lysergide [LSD], assault, subsequent encounter +C2877794|T037|PT|T40.8X3D|ICD10CM|Poisoning by lysergide [LSD], assault, subsequent encounter|Poisoning by lysergide [LSD], assault, subsequent encounter +C2877795|T037|AB|T40.8X3S|ICD10CM|Poisoning by lysergide [LSD], assault, sequela|Poisoning by lysergide [LSD], assault, sequela +C2877795|T037|PT|T40.8X3S|ICD10CM|Poisoning by lysergide [LSD], assault, sequela|Poisoning by lysergide [LSD], assault, sequela +C2877796|T037|AB|T40.8X4|ICD10CM|Poisoning by lysergide [LSD], undetermined|Poisoning by lysergide [LSD], undetermined +C2877796|T037|HT|T40.8X4|ICD10CM|Poisoning by lysergide [LSD], undetermined|Poisoning by lysergide [LSD], undetermined +C2877797|T037|PT|T40.8X4A|ICD10CM|Poisoning by lysergide [LSD], undetermined, initial encounter|Poisoning by lysergide [LSD], undetermined, initial encounter +C2877797|T037|AB|T40.8X4A|ICD10CM|Poisoning by lysergide, undetermined, initial encounter|Poisoning by lysergide, undetermined, initial encounter +C2877798|T037|PT|T40.8X4D|ICD10CM|Poisoning by lysergide [LSD], undetermined, subsequent encounter|Poisoning by lysergide [LSD], undetermined, subsequent encounter +C2877798|T037|AB|T40.8X4D|ICD10CM|Poisoning by lysergide, undetermined, subsequent encounter|Poisoning by lysergide, undetermined, subsequent encounter +C2877799|T037|AB|T40.8X4S|ICD10CM|Poisoning by lysergide [LSD], undetermined, sequela|Poisoning by lysergide [LSD], undetermined, sequela +C2877799|T037|PT|T40.8X4S|ICD10CM|Poisoning by lysergide [LSD], undetermined, sequela|Poisoning by lysergide [LSD], undetermined, sequela +C2877808|T037|AB|T40.9|ICD10CM|And unsp psychodysleptics|And unsp psychodysleptics +C0478438|T037|PS|T40.9|ICD10|Other and unspecified psychodysleptics [hallucinogens]|Other and unspecified psychodysleptics [hallucinogens] +C0478438|T037|PX|T40.9|ICD10|Poisoning by other and unspecified psychodysleptics [hallucinogens]|Poisoning by other and unspecified psychodysleptics [hallucinogens] +C2877808|T037|HT|T40.90|ICD10CM|Poisoning by, adverse effect of and underdosing of unspecified psychodysleptics [hallucinogens]|Poisoning by, adverse effect of and underdosing of unspecified psychodysleptics [hallucinogens] +C2877808|T037|AB|T40.90|ICD10CM|Unsp psychodysleptics|Unsp psychodysleptics +C2877810|T037|AB|T40.901|ICD10CM|Poisoning by unsp psychodyslept, accidental (unintentional)|Poisoning by unsp psychodyslept, accidental (unintentional) +C2877810|T037|HT|T40.901|ICD10CM|Poisoning by unspecified psychodysleptics [hallucinogens], accidental (unintentional)|Poisoning by unspecified psychodysleptics [hallucinogens], accidental (unintentional) +C2877811|T037|AB|T40.901A|ICD10CM|Poisoning by unsp psychodyslept, accidental, init|Poisoning by unsp psychodyslept, accidental, init +C2877812|T037|AB|T40.901D|ICD10CM|Poisoning by unsp psychodyslept, accidental, subs|Poisoning by unsp psychodyslept, accidental, subs +C2877813|T037|AB|T40.901S|ICD10CM|Poisoning by unsp psychodyslept, accidental, sequela|Poisoning by unsp psychodyslept, accidental, sequela +C2877813|T037|PT|T40.901S|ICD10CM|Poisoning by unspecified psychodysleptics [hallucinogens], accidental (unintentional), sequela|Poisoning by unspecified psychodysleptics [hallucinogens], accidental (unintentional), sequela +C2877814|T037|AB|T40.902|ICD10CM|Poisoning by unsp psychodysleptics, intentional self-harm|Poisoning by unsp psychodysleptics, intentional self-harm +C2877814|T037|HT|T40.902|ICD10CM|Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm|Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm +C2877815|T037|AB|T40.902A|ICD10CM|Poisoning by unsp psychodysleptics, self-harm, init|Poisoning by unsp psychodysleptics, self-harm, init +C2877815|T037|PT|T40.902A|ICD10CM|Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm, initial encounter|Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm, initial encounter +C2877816|T037|AB|T40.902D|ICD10CM|Poisoning by unsp psychodysleptics, self-harm, subs|Poisoning by unsp psychodysleptics, self-harm, subs +C2877817|T037|AB|T40.902S|ICD10CM|Poisoning by unsp psychodysleptics, self-harm, sequela|Poisoning by unsp psychodysleptics, self-harm, sequela +C2877817|T037|PT|T40.902S|ICD10CM|Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm, sequela|Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm, sequela +C2877818|T037|HT|T40.903|ICD10CM|Poisoning by unspecified psychodysleptics [hallucinogens], assault|Poisoning by unspecified psychodysleptics [hallucinogens], assault +C2877818|T037|AB|T40.903|ICD10CM|Poisoning by unspecified psychodysleptics, assault|Poisoning by unspecified psychodysleptics, assault +C2877819|T037|AB|T40.903A|ICD10CM|Poisoning by unsp psychodysleptics, assault, init encntr|Poisoning by unsp psychodysleptics, assault, init encntr +C2877819|T037|PT|T40.903A|ICD10CM|Poisoning by unspecified psychodysleptics [hallucinogens], assault, initial encounter|Poisoning by unspecified psychodysleptics [hallucinogens], assault, initial encounter +C2877820|T037|AB|T40.903D|ICD10CM|Poisoning by unsp psychodysleptics, assault, subs encntr|Poisoning by unsp psychodysleptics, assault, subs encntr +C2877820|T037|PT|T40.903D|ICD10CM|Poisoning by unspecified psychodysleptics [hallucinogens], assault, subsequent encounter|Poisoning by unspecified psychodysleptics [hallucinogens], assault, subsequent encounter +C2877821|T037|PT|T40.903S|ICD10CM|Poisoning by unspecified psychodysleptics [hallucinogens], assault, sequela|Poisoning by unspecified psychodysleptics [hallucinogens], assault, sequela +C2877821|T037|AB|T40.903S|ICD10CM|Poisoning by unspecified psychodysleptics, assault, sequela|Poisoning by unspecified psychodysleptics, assault, sequela +C2877822|T037|HT|T40.904|ICD10CM|Poisoning by unspecified psychodysleptics [hallucinogens], undetermined|Poisoning by unspecified psychodysleptics [hallucinogens], undetermined +C2877822|T037|AB|T40.904|ICD10CM|Poisoning by unspecified psychodysleptics, undetermined|Poisoning by unspecified psychodysleptics, undetermined +C2877823|T037|AB|T40.904A|ICD10CM|Poisoning by unsp psychodysleptics, undetermined, init|Poisoning by unsp psychodysleptics, undetermined, init +C2877823|T037|PT|T40.904A|ICD10CM|Poisoning by unspecified psychodysleptics [hallucinogens], undetermined, initial encounter|Poisoning by unspecified psychodysleptics [hallucinogens], undetermined, initial encounter +C2877824|T037|AB|T40.904D|ICD10CM|Poisoning by unsp psychodysleptics, undetermined, subs|Poisoning by unsp psychodysleptics, undetermined, subs +C2877824|T037|PT|T40.904D|ICD10CM|Poisoning by unspecified psychodysleptics [hallucinogens], undetermined, subsequent encounter|Poisoning by unspecified psychodysleptics [hallucinogens], undetermined, subsequent encounter +C2877825|T037|AB|T40.904S|ICD10CM|Poisoning by unsp psychodysleptics, undetermined, sequela|Poisoning by unsp psychodysleptics, undetermined, sequela +C2877825|T037|PT|T40.904S|ICD10CM|Poisoning by unspecified psychodysleptics [hallucinogens], undetermined, sequela|Poisoning by unspecified psychodysleptics [hallucinogens], undetermined, sequela +C2877826|T037|AB|T40.905|ICD10CM|Adverse effect of unspecified psychodysleptics|Adverse effect of unspecified psychodysleptics +C2877826|T037|HT|T40.905|ICD10CM|Adverse effect of unspecified psychodysleptics [hallucinogens]|Adverse effect of unspecified psychodysleptics [hallucinogens] +C2877827|T037|PT|T40.905A|ICD10CM|Adverse effect of unspecified psychodysleptics [hallucinogens], initial encounter|Adverse effect of unspecified psychodysleptics [hallucinogens], initial encounter +C2877827|T037|AB|T40.905A|ICD10CM|Adverse effect of unspecified psychodysleptics, init encntr|Adverse effect of unspecified psychodysleptics, init encntr +C2877828|T037|PT|T40.905D|ICD10CM|Adverse effect of unspecified psychodysleptics [hallucinogens], subsequent encounter|Adverse effect of unspecified psychodysleptics [hallucinogens], subsequent encounter +C2877828|T037|AB|T40.905D|ICD10CM|Adverse effect of unspecified psychodysleptics, subs encntr|Adverse effect of unspecified psychodysleptics, subs encntr +C2877829|T037|PT|T40.905S|ICD10CM|Adverse effect of unspecified psychodysleptics [hallucinogens], sequela|Adverse effect of unspecified psychodysleptics [hallucinogens], sequela +C2877829|T037|AB|T40.905S|ICD10CM|Adverse effect of unspecified psychodysleptics, sequela|Adverse effect of unspecified psychodysleptics, sequela +C2877830|T037|AB|T40.906|ICD10CM|Underdosing of unspecified psychodysleptics [hallucinogens]|Underdosing of unspecified psychodysleptics [hallucinogens] +C2877830|T037|HT|T40.906|ICD10CM|Underdosing of unspecified psychodysleptics [hallucinogens]|Underdosing of unspecified psychodysleptics [hallucinogens] +C2877831|T037|PT|T40.906A|ICD10CM|Underdosing of unspecified psychodysleptics [hallucinogens], initial encounter|Underdosing of unspecified psychodysleptics [hallucinogens], initial encounter +C2877831|T037|AB|T40.906A|ICD10CM|Underdosing of unspecified psychodysleptics, init|Underdosing of unspecified psychodysleptics, init +C2877832|T037|PT|T40.906D|ICD10CM|Underdosing of unspecified psychodysleptics [hallucinogens], subsequent encounter|Underdosing of unspecified psychodysleptics [hallucinogens], subsequent encounter +C2877832|T037|AB|T40.906D|ICD10CM|Underdosing of unspecified psychodysleptics, subs|Underdosing of unspecified psychodysleptics, subs +C5140965|T037|PT|T40.906S|ICD10CM|Underdosing of unspecified psychodysleptics [hallucinogens], sequela|Underdosing of unspecified psychodysleptics [hallucinogens], sequela +C5140965|T037|AB|T40.906S|ICD10CM|Underdosing of unspecified psychodysleptics, sequela|Underdosing of unspecified psychodysleptics, sequela +C2877834|T037|HT|T40.99|ICD10CM|Poisoning by, adverse effect of and underdosing of other psychodysleptics [hallucinogens]|Poisoning by, adverse effect of and underdosing of other psychodysleptics [hallucinogens] +C2877834|T037|AB|T40.99|ICD10CM|Psychodysleptics|Psychodysleptics +C2877836|T037|AB|T40.991|ICD10CM|Poisoning by oth psychodyslept, accidental (unintentional)|Poisoning by oth psychodyslept, accidental (unintentional) +C2877835|T037|ET|T40.991|ICD10CM|Poisoning by other psychodysleptics [hallucinogens] NOS|Poisoning by other psychodysleptics [hallucinogens] NOS +C2877836|T037|HT|T40.991|ICD10CM|Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional)|Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional) +C2877837|T037|AB|T40.991A|ICD10CM|Poisoning by oth psychodyslept, accidental, init|Poisoning by oth psychodyslept, accidental, init +C2877837|T037|PT|T40.991A|ICD10CM|Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional), initial encounter|Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional), initial encounter +C2877838|T037|AB|T40.991D|ICD10CM|Poisoning by oth psychodyslept, accidental, subs|Poisoning by oth psychodyslept, accidental, subs +C2877839|T037|AB|T40.991S|ICD10CM|Poisoning by oth psychodyslept, accidental, sequela|Poisoning by oth psychodyslept, accidental, sequela +C2877839|T037|PT|T40.991S|ICD10CM|Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional), sequela|Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional), sequela +C2877840|T037|HT|T40.992|ICD10CM|Poisoning by other psychodysleptics [hallucinogens], intentional self-harm|Poisoning by other psychodysleptics [hallucinogens], intentional self-harm +C2877840|T037|AB|T40.992|ICD10CM|Poisoning by other psychodysleptics, intentional self-harm|Poisoning by other psychodysleptics, intentional self-harm +C2877841|T037|AB|T40.992A|ICD10CM|Poisoning by oth psychodysleptics, self-harm, init|Poisoning by oth psychodysleptics, self-harm, init +C2877841|T037|PT|T40.992A|ICD10CM|Poisoning by other psychodysleptics [hallucinogens], intentional self-harm, initial encounter|Poisoning by other psychodysleptics [hallucinogens], intentional self-harm, initial encounter +C2877842|T037|AB|T40.992D|ICD10CM|Poisoning by oth psychodysleptics, self-harm, subs|Poisoning by oth psychodysleptics, self-harm, subs +C2877842|T037|PT|T40.992D|ICD10CM|Poisoning by other psychodysleptics [hallucinogens], intentional self-harm, subsequent encounter|Poisoning by other psychodysleptics [hallucinogens], intentional self-harm, subsequent encounter +C2877843|T037|AB|T40.992S|ICD10CM|Poisoning by oth psychodysleptics, self-harm, sequela|Poisoning by oth psychodysleptics, self-harm, sequela +C2877843|T037|PT|T40.992S|ICD10CM|Poisoning by other psychodysleptics [hallucinogens], intentional self-harm, sequela|Poisoning by other psychodysleptics [hallucinogens], intentional self-harm, sequela +C2877844|T037|AB|T40.993|ICD10CM|Poisoning by other psychodysleptics [hallucinogens], assault|Poisoning by other psychodysleptics [hallucinogens], assault +C2877844|T037|HT|T40.993|ICD10CM|Poisoning by other psychodysleptics [hallucinogens], assault|Poisoning by other psychodysleptics [hallucinogens], assault +C2877845|T037|PT|T40.993A|ICD10CM|Poisoning by other psychodysleptics [hallucinogens], assault, initial encounter|Poisoning by other psychodysleptics [hallucinogens], assault, initial encounter +C2877845|T037|AB|T40.993A|ICD10CM|Poisoning by other psychodysleptics, assault, init encntr|Poisoning by other psychodysleptics, assault, init encntr +C2877846|T037|PT|T40.993D|ICD10CM|Poisoning by other psychodysleptics [hallucinogens], assault, subsequent encounter|Poisoning by other psychodysleptics [hallucinogens], assault, subsequent encounter +C2877846|T037|AB|T40.993D|ICD10CM|Poisoning by other psychodysleptics, assault, subs encntr|Poisoning by other psychodysleptics, assault, subs encntr +C2877847|T037|PT|T40.993S|ICD10CM|Poisoning by other psychodysleptics [hallucinogens], assault, sequela|Poisoning by other psychodysleptics [hallucinogens], assault, sequela +C2877847|T037|AB|T40.993S|ICD10CM|Poisoning by other psychodysleptics, assault, sequela|Poisoning by other psychodysleptics, assault, sequela +C2877848|T037|HT|T40.994|ICD10CM|Poisoning by other psychodysleptics [hallucinogens], undetermined|Poisoning by other psychodysleptics [hallucinogens], undetermined +C2877848|T037|AB|T40.994|ICD10CM|Poisoning by other psychodysleptics, undetermined|Poisoning by other psychodysleptics, undetermined +C2877849|T037|AB|T40.994A|ICD10CM|Poisoning by oth psychodysleptics, undetermined, init encntr|Poisoning by oth psychodysleptics, undetermined, init encntr +C2877849|T037|PT|T40.994A|ICD10CM|Poisoning by other psychodysleptics [hallucinogens], undetermined, initial encounter|Poisoning by other psychodysleptics [hallucinogens], undetermined, initial encounter +C2877850|T037|AB|T40.994D|ICD10CM|Poisoning by oth psychodysleptics, undetermined, subs encntr|Poisoning by oth psychodysleptics, undetermined, subs encntr +C2877850|T037|PT|T40.994D|ICD10CM|Poisoning by other psychodysleptics [hallucinogens], undetermined, subsequent encounter|Poisoning by other psychodysleptics [hallucinogens], undetermined, subsequent encounter +C2877851|T037|PT|T40.994S|ICD10CM|Poisoning by other psychodysleptics [hallucinogens], undetermined, sequela|Poisoning by other psychodysleptics [hallucinogens], undetermined, sequela +C2877851|T037|AB|T40.994S|ICD10CM|Poisoning by other psychodysleptics, undetermined, sequela|Poisoning by other psychodysleptics, undetermined, sequela +C2877852|T037|AB|T40.995|ICD10CM|Adverse effect of other psychodysleptics [hallucinogens]|Adverse effect of other psychodysleptics [hallucinogens] +C2877852|T037|HT|T40.995|ICD10CM|Adverse effect of other psychodysleptics [hallucinogens]|Adverse effect of other psychodysleptics [hallucinogens] +C2877853|T037|PT|T40.995A|ICD10CM|Adverse effect of other psychodysleptics [hallucinogens], initial encounter|Adverse effect of other psychodysleptics [hallucinogens], initial encounter +C2877853|T037|AB|T40.995A|ICD10CM|Adverse effect of other psychodysleptics, initial encounter|Adverse effect of other psychodysleptics, initial encounter +C2877854|T037|PT|T40.995D|ICD10CM|Adverse effect of other psychodysleptics [hallucinogens], subsequent encounter|Adverse effect of other psychodysleptics [hallucinogens], subsequent encounter +C2877854|T037|AB|T40.995D|ICD10CM|Adverse effect of other psychodysleptics, subs encntr|Adverse effect of other psychodysleptics, subs encntr +C2877855|T037|PT|T40.995S|ICD10CM|Adverse effect of other psychodysleptics [hallucinogens], sequela|Adverse effect of other psychodysleptics [hallucinogens], sequela +C2877855|T037|AB|T40.995S|ICD10CM|Adverse effect of other psychodysleptics, sequela|Adverse effect of other psychodysleptics, sequela +C2877856|T037|AB|T40.996|ICD10CM|Underdosing of other psychodysleptics [hallucinogens]|Underdosing of other psychodysleptics [hallucinogens] +C2877856|T037|HT|T40.996|ICD10CM|Underdosing of other psychodysleptics [hallucinogens]|Underdosing of other psychodysleptics [hallucinogens] +C2877857|T037|PT|T40.996A|ICD10CM|Underdosing of other psychodysleptics [hallucinogens], initial encounter|Underdosing of other psychodysleptics [hallucinogens], initial encounter +C2877857|T037|AB|T40.996A|ICD10CM|Underdosing of other psychodysleptics, initial encounter|Underdosing of other psychodysleptics, initial encounter +C2877858|T037|PT|T40.996D|ICD10CM|Underdosing of other psychodysleptics [hallucinogens], subsequent encounter|Underdosing of other psychodysleptics [hallucinogens], subsequent encounter +C2877858|T037|AB|T40.996D|ICD10CM|Underdosing of other psychodysleptics, subsequent encounter|Underdosing of other psychodysleptics, subsequent encounter +C2877859|T037|PT|T40.996S|ICD10CM|Underdosing of other psychodysleptics [hallucinogens], sequela|Underdosing of other psychodysleptics [hallucinogens], sequela +C2877859|T037|AB|T40.996S|ICD10CM|Underdosing of other psychodysleptics, sequela|Underdosing of other psychodysleptics, sequela +C2877860|T037|AB|T41|ICD10CM|Anesthetics and therapeutic gases|Anesthetics and therapeutic gases +C0496094|T037|HT|T41|ICD10|Poisoning by anaesthetics and therapeutic gases|Poisoning by anaesthetics and therapeutic gases +C0496094|T037|HT|T41|ICD10AE|Poisoning by anesthetics and therapeutic gases|Poisoning by anesthetics and therapeutic gases +C2877860|T037|HT|T41|ICD10CM|Poisoning by, adverse effect of and underdosing of anesthetics and therapeutic gases|Poisoning by, adverse effect of and underdosing of anesthetics and therapeutic gases +C0496975|T037|PS|T41.0|ICD10|Inhaled anaesthetics|Inhaled anaesthetics +C0496975|T037|PS|T41.0|ICD10AE|Inhaled anesthetics|Inhaled anesthetics +C2877861|T037|AB|T41.0|ICD10CM|Inhaled anesthetics|Inhaled anesthetics +C0496975|T037|PX|T41.0|ICD10|Poisoning by inhaled anaesthetics|Poisoning by inhaled anaesthetics +C0496975|T037|PX|T41.0|ICD10AE|Poisoning by inhaled anesthetics|Poisoning by inhaled anesthetics +C2877861|T037|HT|T41.0|ICD10CM|Poisoning by, adverse effect of and underdosing of inhaled anesthetics|Poisoning by, adverse effect of and underdosing of inhaled anesthetics +C2877861|T037|AB|T41.0X|ICD10CM|Inhaled anesthetics|Inhaled anesthetics +C2877861|T037|HT|T41.0X|ICD10CM|Poisoning by, adverse effect of and underdosing of inhaled anesthetics|Poisoning by, adverse effect of and underdosing of inhaled anesthetics +C0496975|T037|ET|T41.0X1|ICD10CM|Poisoning by inhaled anesthetics NOS|Poisoning by inhaled anesthetics NOS +C2877862|T037|AB|T41.0X1|ICD10CM|Poisoning by inhaled anesthetics, accidental (unintentional)|Poisoning by inhaled anesthetics, accidental (unintentional) +C2877862|T037|HT|T41.0X1|ICD10CM|Poisoning by inhaled anesthetics, accidental (unintentional)|Poisoning by inhaled anesthetics, accidental (unintentional) +C2877863|T037|PT|T41.0X1A|ICD10CM|Poisoning by inhaled anesthetics, accidental (unintentional), initial encounter|Poisoning by inhaled anesthetics, accidental (unintentional), initial encounter +C2877863|T037|AB|T41.0X1A|ICD10CM|Poisoning by inhaled anesthetics, accidental, init|Poisoning by inhaled anesthetics, accidental, init +C2877864|T037|PT|T41.0X1D|ICD10CM|Poisoning by inhaled anesthetics, accidental (unintentional), subsequent encounter|Poisoning by inhaled anesthetics, accidental (unintentional), subsequent encounter +C2877864|T037|AB|T41.0X1D|ICD10CM|Poisoning by inhaled anesthetics, accidental, subs|Poisoning by inhaled anesthetics, accidental, subs +C2877865|T037|PT|T41.0X1S|ICD10CM|Poisoning by inhaled anesthetics, accidental (unintentional), sequela|Poisoning by inhaled anesthetics, accidental (unintentional), sequela +C2877865|T037|AB|T41.0X1S|ICD10CM|Poisoning by inhaled anesthetics, accidental, sequela|Poisoning by inhaled anesthetics, accidental, sequela +C2877866|T037|AB|T41.0X2|ICD10CM|Poisoning by inhaled anesthetics, intentional self-harm|Poisoning by inhaled anesthetics, intentional self-harm +C2877866|T037|HT|T41.0X2|ICD10CM|Poisoning by inhaled anesthetics, intentional self-harm|Poisoning by inhaled anesthetics, intentional self-harm +C2877867|T037|PT|T41.0X2A|ICD10CM|Poisoning by inhaled anesthetics, intentional self-harm, initial encounter|Poisoning by inhaled anesthetics, intentional self-harm, initial encounter +C2877867|T037|AB|T41.0X2A|ICD10CM|Poisoning by inhaled anesthetics, self-harm, init|Poisoning by inhaled anesthetics, self-harm, init +C2877868|T037|PT|T41.0X2D|ICD10CM|Poisoning by inhaled anesthetics, intentional self-harm, subsequent encounter|Poisoning by inhaled anesthetics, intentional self-harm, subsequent encounter +C2877868|T037|AB|T41.0X2D|ICD10CM|Poisoning by inhaled anesthetics, self-harm, subs|Poisoning by inhaled anesthetics, self-harm, subs +C2877869|T037|PT|T41.0X2S|ICD10CM|Poisoning by inhaled anesthetics, intentional self-harm, sequela|Poisoning by inhaled anesthetics, intentional self-harm, sequela +C2877869|T037|AB|T41.0X2S|ICD10CM|Poisoning by inhaled anesthetics, self-harm, sequela|Poisoning by inhaled anesthetics, self-harm, sequela +C2877870|T037|AB|T41.0X3|ICD10CM|Poisoning by inhaled anesthetics, assault|Poisoning by inhaled anesthetics, assault +C2877870|T037|HT|T41.0X3|ICD10CM|Poisoning by inhaled anesthetics, assault|Poisoning by inhaled anesthetics, assault +C2877871|T037|AB|T41.0X3A|ICD10CM|Poisoning by inhaled anesthetics, assault, initial encounter|Poisoning by inhaled anesthetics, assault, initial encounter +C2877871|T037|PT|T41.0X3A|ICD10CM|Poisoning by inhaled anesthetics, assault, initial encounter|Poisoning by inhaled anesthetics, assault, initial encounter +C2877872|T037|AB|T41.0X3D|ICD10CM|Poisoning by inhaled anesthetics, assault, subs encntr|Poisoning by inhaled anesthetics, assault, subs encntr +C2877872|T037|PT|T41.0X3D|ICD10CM|Poisoning by inhaled anesthetics, assault, subsequent encounter|Poisoning by inhaled anesthetics, assault, subsequent encounter +C2877873|T037|AB|T41.0X3S|ICD10CM|Poisoning by inhaled anesthetics, assault, sequela|Poisoning by inhaled anesthetics, assault, sequela +C2877873|T037|PT|T41.0X3S|ICD10CM|Poisoning by inhaled anesthetics, assault, sequela|Poisoning by inhaled anesthetics, assault, sequela +C2877874|T037|AB|T41.0X4|ICD10CM|Poisoning by inhaled anesthetics, undetermined|Poisoning by inhaled anesthetics, undetermined +C2877874|T037|HT|T41.0X4|ICD10CM|Poisoning by inhaled anesthetics, undetermined|Poisoning by inhaled anesthetics, undetermined +C2877875|T037|AB|T41.0X4A|ICD10CM|Poisoning by inhaled anesthetics, undetermined, init encntr|Poisoning by inhaled anesthetics, undetermined, init encntr +C2877875|T037|PT|T41.0X4A|ICD10CM|Poisoning by inhaled anesthetics, undetermined, initial encounter|Poisoning by inhaled anesthetics, undetermined, initial encounter +C2877876|T037|AB|T41.0X4D|ICD10CM|Poisoning by inhaled anesthetics, undetermined, subs encntr|Poisoning by inhaled anesthetics, undetermined, subs encntr +C2877876|T037|PT|T41.0X4D|ICD10CM|Poisoning by inhaled anesthetics, undetermined, subsequent encounter|Poisoning by inhaled anesthetics, undetermined, subsequent encounter +C2877877|T037|AB|T41.0X4S|ICD10CM|Poisoning by inhaled anesthetics, undetermined, sequela|Poisoning by inhaled anesthetics, undetermined, sequela +C2877877|T037|PT|T41.0X4S|ICD10CM|Poisoning by inhaled anesthetics, undetermined, sequela|Poisoning by inhaled anesthetics, undetermined, sequela +C2877878|T037|AB|T41.0X5|ICD10CM|Adverse effect of inhaled anesthetics|Adverse effect of inhaled anesthetics +C2877878|T037|HT|T41.0X5|ICD10CM|Adverse effect of inhaled anesthetics|Adverse effect of inhaled anesthetics +C2877879|T037|AB|T41.0X5A|ICD10CM|Adverse effect of inhaled anesthetics, initial encounter|Adverse effect of inhaled anesthetics, initial encounter +C2877879|T037|PT|T41.0X5A|ICD10CM|Adverse effect of inhaled anesthetics, initial encounter|Adverse effect of inhaled anesthetics, initial encounter +C2877880|T037|AB|T41.0X5D|ICD10CM|Adverse effect of inhaled anesthetics, subsequent encounter|Adverse effect of inhaled anesthetics, subsequent encounter +C2877880|T037|PT|T41.0X5D|ICD10CM|Adverse effect of inhaled anesthetics, subsequent encounter|Adverse effect of inhaled anesthetics, subsequent encounter +C2877881|T037|AB|T41.0X5S|ICD10CM|Adverse effect of inhaled anesthetics, sequela|Adverse effect of inhaled anesthetics, sequela +C2877881|T037|PT|T41.0X5S|ICD10CM|Adverse effect of inhaled anesthetics, sequela|Adverse effect of inhaled anesthetics, sequela +C2877882|T037|AB|T41.0X6|ICD10CM|Underdosing of inhaled anesthetics|Underdosing of inhaled anesthetics +C2877882|T037|HT|T41.0X6|ICD10CM|Underdosing of inhaled anesthetics|Underdosing of inhaled anesthetics +C2877883|T037|AB|T41.0X6A|ICD10CM|Underdosing of inhaled anesthetics, initial encounter|Underdosing of inhaled anesthetics, initial encounter +C2877883|T037|PT|T41.0X6A|ICD10CM|Underdosing of inhaled anesthetics, initial encounter|Underdosing of inhaled anesthetics, initial encounter +C2877884|T037|AB|T41.0X6D|ICD10CM|Underdosing of inhaled anesthetics, subsequent encounter|Underdosing of inhaled anesthetics, subsequent encounter +C2877884|T037|PT|T41.0X6D|ICD10CM|Underdosing of inhaled anesthetics, subsequent encounter|Underdosing of inhaled anesthetics, subsequent encounter +C2877885|T037|AB|T41.0X6S|ICD10CM|Underdosing of inhaled anesthetics, sequela|Underdosing of inhaled anesthetics, sequela +C2877885|T037|PT|T41.0X6S|ICD10CM|Underdosing of inhaled anesthetics, sequela|Underdosing of inhaled anesthetics, sequela +C0161571|T037|PS|T41.1|ICD10|Intravenous anaesthetics|Intravenous anaesthetics +C0161571|T037|PS|T41.1|ICD10AE|Intravenous anesthetics|Intravenous anesthetics +C2877887|T037|AB|T41.1|ICD10CM|Intravenous anesthetics|Intravenous anesthetics +C0161571|T037|PX|T41.1|ICD10|Poisoning by intravenous anaesthetics|Poisoning by intravenous anaesthetics +C0161571|T037|PX|T41.1|ICD10AE|Poisoning by intravenous anesthetics|Poisoning by intravenous anesthetics +C2877887|T037|HT|T41.1|ICD10CM|Poisoning by, adverse effect of and underdosing of intravenous anesthetics|Poisoning by, adverse effect of and underdosing of intravenous anesthetics +C2877886|T037|ET|T41.1|ICD10CM|Poisoning by, adverse effect of and underdosing of thiobarbiturates|Poisoning by, adverse effect of and underdosing of thiobarbiturates +C2877887|T037|AB|T41.1X|ICD10CM|Intravenous anesthetics|Intravenous anesthetics +C2877887|T037|HT|T41.1X|ICD10CM|Poisoning by, adverse effect of and underdosing of intravenous anesthetics|Poisoning by, adverse effect of and underdosing of intravenous anesthetics +C0161571|T037|ET|T41.1X1|ICD10CM|Poisoning by intravenous anesthetics NOS|Poisoning by intravenous anesthetics NOS +C0474062|T037|AB|T41.1X1|ICD10CM|Poisoning by intravenous anesthetics, accidental|Poisoning by intravenous anesthetics, accidental +C0474062|T037|HT|T41.1X1|ICD10CM|Poisoning by intravenous anesthetics, accidental (unintentional)|Poisoning by intravenous anesthetics, accidental (unintentional) +C2877889|T037|PT|T41.1X1A|ICD10CM|Poisoning by intravenous anesthetics, accidental (unintentional), initial encounter|Poisoning by intravenous anesthetics, accidental (unintentional), initial encounter +C2877889|T037|AB|T41.1X1A|ICD10CM|Poisoning by intravenous anesthetics, accidental, init|Poisoning by intravenous anesthetics, accidental, init +C2877890|T037|PT|T41.1X1D|ICD10CM|Poisoning by intravenous anesthetics, accidental (unintentional), subsequent encounter|Poisoning by intravenous anesthetics, accidental (unintentional), subsequent encounter +C2877890|T037|AB|T41.1X1D|ICD10CM|Poisoning by intravenous anesthetics, accidental, subs|Poisoning by intravenous anesthetics, accidental, subs +C2877891|T037|PT|T41.1X1S|ICD10CM|Poisoning by intravenous anesthetics, accidental (unintentional), sequela|Poisoning by intravenous anesthetics, accidental (unintentional), sequela +C2877891|T037|AB|T41.1X1S|ICD10CM|Poisoning by intravenous anesthetics, accidental, sequela|Poisoning by intravenous anesthetics, accidental, sequela +C2877892|T037|AB|T41.1X2|ICD10CM|Poisoning by intravenous anesthetics, intentional self-harm|Poisoning by intravenous anesthetics, intentional self-harm +C2877892|T037|HT|T41.1X2|ICD10CM|Poisoning by intravenous anesthetics, intentional self-harm|Poisoning by intravenous anesthetics, intentional self-harm +C2877893|T037|PT|T41.1X2A|ICD10CM|Poisoning by intravenous anesthetics, intentional self-harm, initial encounter|Poisoning by intravenous anesthetics, intentional self-harm, initial encounter +C2877893|T037|AB|T41.1X2A|ICD10CM|Poisoning by intravenous anesthetics, self-harm, init|Poisoning by intravenous anesthetics, self-harm, init +C2877894|T037|PT|T41.1X2D|ICD10CM|Poisoning by intravenous anesthetics, intentional self-harm, subsequent encounter|Poisoning by intravenous anesthetics, intentional self-harm, subsequent encounter +C2877894|T037|AB|T41.1X2D|ICD10CM|Poisoning by intravenous anesthetics, self-harm, subs|Poisoning by intravenous anesthetics, self-harm, subs +C2877895|T037|PT|T41.1X2S|ICD10CM|Poisoning by intravenous anesthetics, intentional self-harm, sequela|Poisoning by intravenous anesthetics, intentional self-harm, sequela +C2877895|T037|AB|T41.1X2S|ICD10CM|Poisoning by intravenous anesthetics, self-harm, sequela|Poisoning by intravenous anesthetics, self-harm, sequela +C2877896|T037|AB|T41.1X3|ICD10CM|Poisoning by intravenous anesthetics, assault|Poisoning by intravenous anesthetics, assault +C2877896|T037|HT|T41.1X3|ICD10CM|Poisoning by intravenous anesthetics, assault|Poisoning by intravenous anesthetics, assault +C2877897|T037|AB|T41.1X3A|ICD10CM|Poisoning by intravenous anesthetics, assault, init encntr|Poisoning by intravenous anesthetics, assault, init encntr +C2877897|T037|PT|T41.1X3A|ICD10CM|Poisoning by intravenous anesthetics, assault, initial encounter|Poisoning by intravenous anesthetics, assault, initial encounter +C2877898|T037|AB|T41.1X3D|ICD10CM|Poisoning by intravenous anesthetics, assault, subs encntr|Poisoning by intravenous anesthetics, assault, subs encntr +C2877898|T037|PT|T41.1X3D|ICD10CM|Poisoning by intravenous anesthetics, assault, subsequent encounter|Poisoning by intravenous anesthetics, assault, subsequent encounter +C2877899|T037|AB|T41.1X3S|ICD10CM|Poisoning by intravenous anesthetics, assault, sequela|Poisoning by intravenous anesthetics, assault, sequela +C2877899|T037|PT|T41.1X3S|ICD10CM|Poisoning by intravenous anesthetics, assault, sequela|Poisoning by intravenous anesthetics, assault, sequela +C2877900|T037|AB|T41.1X4|ICD10CM|Poisoning by intravenous anesthetics, undetermined|Poisoning by intravenous anesthetics, undetermined +C2877900|T037|HT|T41.1X4|ICD10CM|Poisoning by intravenous anesthetics, undetermined|Poisoning by intravenous anesthetics, undetermined +C2877901|T037|AB|T41.1X4A|ICD10CM|Poisoning by intravenous anesthetics, undetermined, init|Poisoning by intravenous anesthetics, undetermined, init +C2877901|T037|PT|T41.1X4A|ICD10CM|Poisoning by intravenous anesthetics, undetermined, initial encounter|Poisoning by intravenous anesthetics, undetermined, initial encounter +C2877902|T037|AB|T41.1X4D|ICD10CM|Poisoning by intravenous anesthetics, undetermined, subs|Poisoning by intravenous anesthetics, undetermined, subs +C2877902|T037|PT|T41.1X4D|ICD10CM|Poisoning by intravenous anesthetics, undetermined, subsequent encounter|Poisoning by intravenous anesthetics, undetermined, subsequent encounter +C2877903|T037|AB|T41.1X4S|ICD10CM|Poisoning by intravenous anesthetics, undetermined, sequela|Poisoning by intravenous anesthetics, undetermined, sequela +C2877903|T037|PT|T41.1X4S|ICD10CM|Poisoning by intravenous anesthetics, undetermined, sequela|Poisoning by intravenous anesthetics, undetermined, sequela +C0474017|T046|AB|T41.1X5|ICD10CM|Adverse effect of intravenous anesthetics|Adverse effect of intravenous anesthetics +C0474017|T046|HT|T41.1X5|ICD10CM|Adverse effect of intravenous anesthetics|Adverse effect of intravenous anesthetics +C2877905|T037|AB|T41.1X5A|ICD10CM|Adverse effect of intravenous anesthetics, initial encounter|Adverse effect of intravenous anesthetics, initial encounter +C2877905|T037|PT|T41.1X5A|ICD10CM|Adverse effect of intravenous anesthetics, initial encounter|Adverse effect of intravenous anesthetics, initial encounter +C2877906|T037|AB|T41.1X5D|ICD10CM|Adverse effect of intravenous anesthetics, subs encntr|Adverse effect of intravenous anesthetics, subs encntr +C2877906|T037|PT|T41.1X5D|ICD10CM|Adverse effect of intravenous anesthetics, subsequent encounter|Adverse effect of intravenous anesthetics, subsequent encounter +C2877907|T037|AB|T41.1X5S|ICD10CM|Adverse effect of intravenous anesthetics, sequela|Adverse effect of intravenous anesthetics, sequela +C2877907|T037|PT|T41.1X5S|ICD10CM|Adverse effect of intravenous anesthetics, sequela|Adverse effect of intravenous anesthetics, sequela +C2877908|T033|HT|T41.1X6|ICD10CM|Underdosing of intravenous anesthetics|Underdosing of intravenous anesthetics +C2877908|T033|AB|T41.1X6|ICD10CM|Underdosing of intravenous anesthetics|Underdosing of intravenous anesthetics +C2877909|T037|AB|T41.1X6A|ICD10CM|Underdosing of intravenous anesthetics, initial encounter|Underdosing of intravenous anesthetics, initial encounter +C2877909|T037|PT|T41.1X6A|ICD10CM|Underdosing of intravenous anesthetics, initial encounter|Underdosing of intravenous anesthetics, initial encounter +C2877910|T037|AB|T41.1X6D|ICD10CM|Underdosing of intravenous anesthetics, subsequent encounter|Underdosing of intravenous anesthetics, subsequent encounter +C2877910|T037|PT|T41.1X6D|ICD10CM|Underdosing of intravenous anesthetics, subsequent encounter|Underdosing of intravenous anesthetics, subsequent encounter +C2877911|T037|AB|T41.1X6S|ICD10CM|Underdosing of intravenous anesthetics, sequela|Underdosing of intravenous anesthetics, sequela +C2877911|T037|PT|T41.1X6S|ICD10CM|Underdosing of intravenous anesthetics, sequela|Underdosing of intravenous anesthetics, sequela +C2877912|T037|AB|T41.2|ICD10CM|And unsp general anesthetics|And unsp general anesthetics +C0161572|T037|PS|T41.2|ICD10|Other and unspecified general anaesthetics|Other and unspecified general anaesthetics +C0161572|T037|PS|T41.2|ICD10AE|Other and unspecified general anesthetics|Other and unspecified general anesthetics +C0161572|T037|PX|T41.2|ICD10|Poisoning by other and unspecified general anaesthetics|Poisoning by other and unspecified general anaesthetics +C0161572|T037|PX|T41.2|ICD10AE|Poisoning by other and unspecified general anesthetics|Poisoning by other and unspecified general anesthetics +C2877912|T037|HT|T41.2|ICD10CM|Poisoning by, adverse effect of and underdosing of other and unspecified general anesthetics|Poisoning by, adverse effect of and underdosing of other and unspecified general anesthetics +C2877912|T037|HT|T41.20|ICD10CM|Poisoning by, adverse effect of and underdosing of unspecified general anesthetics|Poisoning by, adverse effect of and underdosing of unspecified general anesthetics +C2877912|T037|AB|T41.20|ICD10CM|Unsp general anesthetics|Unsp general anesthetics +C2877914|T037|ET|T41.201|ICD10CM|Poisoning by general anesthetics NOS|Poisoning by general anesthetics NOS +C2877915|T037|AB|T41.201|ICD10CM|Poisoning by unsp general anesthetics, accidental|Poisoning by unsp general anesthetics, accidental +C2877915|T037|HT|T41.201|ICD10CM|Poisoning by unspecified general anesthetics, accidental (unintentional)|Poisoning by unspecified general anesthetics, accidental (unintentional) +C2877916|T037|AB|T41.201A|ICD10CM|Poisoning by unsp general anesthetics, accidental, init|Poisoning by unsp general anesthetics, accidental, init +C2877916|T037|PT|T41.201A|ICD10CM|Poisoning by unspecified general anesthetics, accidental (unintentional), initial encounter|Poisoning by unspecified general anesthetics, accidental (unintentional), initial encounter +C2877917|T037|AB|T41.201D|ICD10CM|Poisoning by unsp general anesthetics, accidental, subs|Poisoning by unsp general anesthetics, accidental, subs +C2877917|T037|PT|T41.201D|ICD10CM|Poisoning by unspecified general anesthetics, accidental (unintentional), subsequent encounter|Poisoning by unspecified general anesthetics, accidental (unintentional), subsequent encounter +C2877918|T037|AB|T41.201S|ICD10CM|Poisoning by unsp general anesthetics, accidental, sequela|Poisoning by unsp general anesthetics, accidental, sequela +C2877918|T037|PT|T41.201S|ICD10CM|Poisoning by unspecified general anesthetics, accidental (unintentional), sequela|Poisoning by unspecified general anesthetics, accidental (unintentional), sequela +C2877919|T037|AB|T41.202|ICD10CM|Poisoning by unsp general anesthetics, intentional self-harm|Poisoning by unsp general anesthetics, intentional self-harm +C2877919|T037|HT|T41.202|ICD10CM|Poisoning by unspecified general anesthetics, intentional self-harm|Poisoning by unspecified general anesthetics, intentional self-harm +C2877920|T037|AB|T41.202A|ICD10CM|Poisoning by unsp general anesthetics, self-harm, init|Poisoning by unsp general anesthetics, self-harm, init +C2877920|T037|PT|T41.202A|ICD10CM|Poisoning by unspecified general anesthetics, intentional self-harm, initial encounter|Poisoning by unspecified general anesthetics, intentional self-harm, initial encounter +C2877921|T037|AB|T41.202D|ICD10CM|Poisoning by unsp general anesthetics, self-harm, subs|Poisoning by unsp general anesthetics, self-harm, subs +C2877921|T037|PT|T41.202D|ICD10CM|Poisoning by unspecified general anesthetics, intentional self-harm, subsequent encounter|Poisoning by unspecified general anesthetics, intentional self-harm, subsequent encounter +C2877922|T037|AB|T41.202S|ICD10CM|Poisoning by unsp general anesthetics, self-harm, sequela|Poisoning by unsp general anesthetics, self-harm, sequela +C2877922|T037|PT|T41.202S|ICD10CM|Poisoning by unspecified general anesthetics, intentional self-harm, sequela|Poisoning by unspecified general anesthetics, intentional self-harm, sequela +C2877923|T037|AB|T41.203|ICD10CM|Poisoning by unspecified general anesthetics, assault|Poisoning by unspecified general anesthetics, assault +C2877923|T037|HT|T41.203|ICD10CM|Poisoning by unspecified general anesthetics, assault|Poisoning by unspecified general anesthetics, assault +C2877924|T037|AB|T41.203A|ICD10CM|Poisoning by unsp general anesthetics, assault, init encntr|Poisoning by unsp general anesthetics, assault, init encntr +C2877924|T037|PT|T41.203A|ICD10CM|Poisoning by unspecified general anesthetics, assault, initial encounter|Poisoning by unspecified general anesthetics, assault, initial encounter +C2877925|T037|AB|T41.203D|ICD10CM|Poisoning by unsp general anesthetics, assault, subs encntr|Poisoning by unsp general anesthetics, assault, subs encntr +C2877925|T037|PT|T41.203D|ICD10CM|Poisoning by unspecified general anesthetics, assault, subsequent encounter|Poisoning by unspecified general anesthetics, assault, subsequent encounter +C2877926|T037|AB|T41.203S|ICD10CM|Poisoning by unsp general anesthetics, assault, sequela|Poisoning by unsp general anesthetics, assault, sequela +C2877926|T037|PT|T41.203S|ICD10CM|Poisoning by unspecified general anesthetics, assault, sequela|Poisoning by unspecified general anesthetics, assault, sequela +C2877927|T037|AB|T41.204|ICD10CM|Poisoning by unspecified general anesthetics, undetermined|Poisoning by unspecified general anesthetics, undetermined +C2877927|T037|HT|T41.204|ICD10CM|Poisoning by unspecified general anesthetics, undetermined|Poisoning by unspecified general anesthetics, undetermined +C2877928|T037|AB|T41.204A|ICD10CM|Poisoning by unsp general anesthetics, undetermined, init|Poisoning by unsp general anesthetics, undetermined, init +C2877928|T037|PT|T41.204A|ICD10CM|Poisoning by unspecified general anesthetics, undetermined, initial encounter|Poisoning by unspecified general anesthetics, undetermined, initial encounter +C2877929|T037|AB|T41.204D|ICD10CM|Poisoning by unsp general anesthetics, undetermined, subs|Poisoning by unsp general anesthetics, undetermined, subs +C2877929|T037|PT|T41.204D|ICD10CM|Poisoning by unspecified general anesthetics, undetermined, subsequent encounter|Poisoning by unspecified general anesthetics, undetermined, subsequent encounter +C2877930|T037|AB|T41.204S|ICD10CM|Poisoning by unsp general anesthetics, undetermined, sequela|Poisoning by unsp general anesthetics, undetermined, sequela +C2877930|T037|PT|T41.204S|ICD10CM|Poisoning by unspecified general anesthetics, undetermined, sequela|Poisoning by unspecified general anesthetics, undetermined, sequela +C2877931|T037|AB|T41.205|ICD10CM|Adverse effect of unspecified general anesthetics|Adverse effect of unspecified general anesthetics +C2877931|T037|HT|T41.205|ICD10CM|Adverse effect of unspecified general anesthetics|Adverse effect of unspecified general anesthetics +C2877932|T037|AB|T41.205A|ICD10CM|Adverse effect of unsp general anesthetics, init encntr|Adverse effect of unsp general anesthetics, init encntr +C2877932|T037|PT|T41.205A|ICD10CM|Adverse effect of unspecified general anesthetics, initial encounter|Adverse effect of unspecified general anesthetics, initial encounter +C2877933|T037|AB|T41.205D|ICD10CM|Adverse effect of unsp general anesthetics, subs encntr|Adverse effect of unsp general anesthetics, subs encntr +C2877933|T037|PT|T41.205D|ICD10CM|Adverse effect of unspecified general anesthetics, subsequent encounter|Adverse effect of unspecified general anesthetics, subsequent encounter +C2877934|T037|AB|T41.205S|ICD10CM|Adverse effect of unspecified general anesthetics, sequela|Adverse effect of unspecified general anesthetics, sequela +C2877934|T037|PT|T41.205S|ICD10CM|Adverse effect of unspecified general anesthetics, sequela|Adverse effect of unspecified general anesthetics, sequela +C2877935|T037|AB|T41.206|ICD10CM|Underdosing of unspecified general anesthetics|Underdosing of unspecified general anesthetics +C2877935|T037|HT|T41.206|ICD10CM|Underdosing of unspecified general anesthetics|Underdosing of unspecified general anesthetics +C2877936|T037|AB|T41.206A|ICD10CM|Underdosing of unspecified general anesthetics, init encntr|Underdosing of unspecified general anesthetics, init encntr +C2877936|T037|PT|T41.206A|ICD10CM|Underdosing of unspecified general anesthetics, initial encounter|Underdosing of unspecified general anesthetics, initial encounter +C2877937|T037|AB|T41.206D|ICD10CM|Underdosing of unspecified general anesthetics, subs encntr|Underdosing of unspecified general anesthetics, subs encntr +C2877937|T037|PT|T41.206D|ICD10CM|Underdosing of unspecified general anesthetics, subsequent encounter|Underdosing of unspecified general anesthetics, subsequent encounter +C2877938|T037|AB|T41.206S|ICD10CM|Underdosing of unspecified general anesthetics, sequela|Underdosing of unspecified general anesthetics, sequela +C2877938|T037|PT|T41.206S|ICD10CM|Underdosing of unspecified general anesthetics, sequela|Underdosing of unspecified general anesthetics, sequela +C2877939|T037|AB|T41.29|ICD10CM|General anesthetics|General anesthetics +C2877939|T037|HT|T41.29|ICD10CM|Poisoning by, adverse effect of and underdosing of other general anesthetics|Poisoning by, adverse effect of and underdosing of other general anesthetics +C2877941|T037|AB|T41.291|ICD10CM|Poisoning by oth general anesthetics, accidental|Poisoning by oth general anesthetics, accidental +C0473976|T037|ET|T41.291|ICD10CM|Poisoning by other general anesthetics NOS|Poisoning by other general anesthetics NOS +C2877941|T037|HT|T41.291|ICD10CM|Poisoning by other general anesthetics, accidental (unintentional)|Poisoning by other general anesthetics, accidental (unintentional) +C2877942|T037|AB|T41.291A|ICD10CM|Poisoning by oth general anesthetics, accidental, init|Poisoning by oth general anesthetics, accidental, init +C2877942|T037|PT|T41.291A|ICD10CM|Poisoning by other general anesthetics, accidental (unintentional), initial encounter|Poisoning by other general anesthetics, accidental (unintentional), initial encounter +C2877943|T037|AB|T41.291D|ICD10CM|Poisoning by oth general anesthetics, accidental, subs|Poisoning by oth general anesthetics, accidental, subs +C2877943|T037|PT|T41.291D|ICD10CM|Poisoning by other general anesthetics, accidental (unintentional), subsequent encounter|Poisoning by other general anesthetics, accidental (unintentional), subsequent encounter +C2877944|T037|AB|T41.291S|ICD10CM|Poisoning by oth general anesthetics, accidental, sequela|Poisoning by oth general anesthetics, accidental, sequela +C2877944|T037|PT|T41.291S|ICD10CM|Poisoning by other general anesthetics, accidental (unintentional), sequela|Poisoning by other general anesthetics, accidental (unintentional), sequela +C2877945|T037|AB|T41.292|ICD10CM|Poisoning by oth general anesthetics, intentional self-harm|Poisoning by oth general anesthetics, intentional self-harm +C2877945|T037|HT|T41.292|ICD10CM|Poisoning by other general anesthetics, intentional self-harm|Poisoning by other general anesthetics, intentional self-harm +C2877946|T037|AB|T41.292A|ICD10CM|Poisoning by oth general anesthetics, self-harm, init|Poisoning by oth general anesthetics, self-harm, init +C2877946|T037|PT|T41.292A|ICD10CM|Poisoning by other general anesthetics, intentional self-harm, initial encounter|Poisoning by other general anesthetics, intentional self-harm, initial encounter +C2877947|T037|AB|T41.292D|ICD10CM|Poisoning by oth general anesthetics, self-harm, subs|Poisoning by oth general anesthetics, self-harm, subs +C2877947|T037|PT|T41.292D|ICD10CM|Poisoning by other general anesthetics, intentional self-harm, subsequent encounter|Poisoning by other general anesthetics, intentional self-harm, subsequent encounter +C2877948|T037|AB|T41.292S|ICD10CM|Poisoning by oth general anesthetics, self-harm, sequela|Poisoning by oth general anesthetics, self-harm, sequela +C2877948|T037|PT|T41.292S|ICD10CM|Poisoning by other general anesthetics, intentional self-harm, sequela|Poisoning by other general anesthetics, intentional self-harm, sequela +C2877949|T037|AB|T41.293|ICD10CM|Poisoning by other general anesthetics, assault|Poisoning by other general anesthetics, assault +C2877949|T037|HT|T41.293|ICD10CM|Poisoning by other general anesthetics, assault|Poisoning by other general anesthetics, assault +C2877950|T037|AB|T41.293A|ICD10CM|Poisoning by other general anesthetics, assault, init encntr|Poisoning by other general anesthetics, assault, init encntr +C2877950|T037|PT|T41.293A|ICD10CM|Poisoning by other general anesthetics, assault, initial encounter|Poisoning by other general anesthetics, assault, initial encounter +C2877951|T037|AB|T41.293D|ICD10CM|Poisoning by other general anesthetics, assault, subs encntr|Poisoning by other general anesthetics, assault, subs encntr +C2877951|T037|PT|T41.293D|ICD10CM|Poisoning by other general anesthetics, assault, subsequent encounter|Poisoning by other general anesthetics, assault, subsequent encounter +C2877952|T037|AB|T41.293S|ICD10CM|Poisoning by other general anesthetics, assault, sequela|Poisoning by other general anesthetics, assault, sequela +C2877952|T037|PT|T41.293S|ICD10CM|Poisoning by other general anesthetics, assault, sequela|Poisoning by other general anesthetics, assault, sequela +C2877953|T037|AB|T41.294|ICD10CM|Poisoning by other general anesthetics, undetermined|Poisoning by other general anesthetics, undetermined +C2877953|T037|HT|T41.294|ICD10CM|Poisoning by other general anesthetics, undetermined|Poisoning by other general anesthetics, undetermined +C2877954|T037|AB|T41.294A|ICD10CM|Poisoning by oth general anesthetics, undetermined, init|Poisoning by oth general anesthetics, undetermined, init +C2877954|T037|PT|T41.294A|ICD10CM|Poisoning by other general anesthetics, undetermined, initial encounter|Poisoning by other general anesthetics, undetermined, initial encounter +C2877955|T037|AB|T41.294D|ICD10CM|Poisoning by oth general anesthetics, undetermined, subs|Poisoning by oth general anesthetics, undetermined, subs +C2877955|T037|PT|T41.294D|ICD10CM|Poisoning by other general anesthetics, undetermined, subsequent encounter|Poisoning by other general anesthetics, undetermined, subsequent encounter +C2877956|T037|AB|T41.294S|ICD10CM|Poisoning by oth general anesthetics, undetermined, sequela|Poisoning by oth general anesthetics, undetermined, sequela +C2877956|T037|PT|T41.294S|ICD10CM|Poisoning by other general anesthetics, undetermined, sequela|Poisoning by other general anesthetics, undetermined, sequela +C2877957|T037|AB|T41.295|ICD10CM|Adverse effect of other general anesthetics|Adverse effect of other general anesthetics +C2877957|T037|HT|T41.295|ICD10CM|Adverse effect of other general anesthetics|Adverse effect of other general anesthetics +C2877958|T037|AB|T41.295A|ICD10CM|Adverse effect of other general anesthetics, init encntr|Adverse effect of other general anesthetics, init encntr +C2877958|T037|PT|T41.295A|ICD10CM|Adverse effect of other general anesthetics, initial encounter|Adverse effect of other general anesthetics, initial encounter +C2877959|T037|AB|T41.295D|ICD10CM|Adverse effect of other general anesthetics, subs encntr|Adverse effect of other general anesthetics, subs encntr +C2877959|T037|PT|T41.295D|ICD10CM|Adverse effect of other general anesthetics, subsequent encounter|Adverse effect of other general anesthetics, subsequent encounter +C2877960|T037|AB|T41.295S|ICD10CM|Adverse effect of other general anesthetics, sequela|Adverse effect of other general anesthetics, sequela +C2877960|T037|PT|T41.295S|ICD10CM|Adverse effect of other general anesthetics, sequela|Adverse effect of other general anesthetics, sequela +C2877961|T037|AB|T41.296|ICD10CM|Underdosing of other general anesthetics|Underdosing of other general anesthetics +C2877961|T037|HT|T41.296|ICD10CM|Underdosing of other general anesthetics|Underdosing of other general anesthetics +C2877962|T037|AB|T41.296A|ICD10CM|Underdosing of other general anesthetics, initial encounter|Underdosing of other general anesthetics, initial encounter +C2877962|T037|PT|T41.296A|ICD10CM|Underdosing of other general anesthetics, initial encounter|Underdosing of other general anesthetics, initial encounter +C2877963|T037|AB|T41.296D|ICD10CM|Underdosing of other general anesthetics, subs encntr|Underdosing of other general anesthetics, subs encntr +C2877963|T037|PT|T41.296D|ICD10CM|Underdosing of other general anesthetics, subsequent encounter|Underdosing of other general anesthetics, subsequent encounter +C2877964|T037|AB|T41.296S|ICD10CM|Underdosing of other general anesthetics, sequela|Underdosing of other general anesthetics, sequela +C2877964|T037|PT|T41.296S|ICD10CM|Underdosing of other general anesthetics, sequela|Underdosing of other general anesthetics, sequela +C4759771|T037|ET|T41.3|ICD10CM|Cocaine (topical)|Cocaine (topical) +C0473977|T037|PS|T41.3|ICD10|Local anaesthetics|Local anaesthetics +C0473977|T037|PS|T41.3|ICD10AE|Local anesthetics|Local anesthetics +C2877965|T037|AB|T41.3|ICD10CM|Local anesthetics|Local anesthetics +C0473977|T037|PX|T41.3|ICD10|Poisoning by local anaesthetics|Poisoning by local anaesthetics +C0473977|T037|PX|T41.3|ICD10AE|Poisoning by local anesthetics|Poisoning by local anesthetics +C2877965|T037|HT|T41.3|ICD10CM|Poisoning by, adverse effect of and underdosing of local anesthetics|Poisoning by, adverse effect of and underdosing of local anesthetics +C2877965|T037|AB|T41.3X|ICD10CM|Local anesthetics|Local anesthetics +C2877965|T037|HT|T41.3X|ICD10CM|Poisoning by, adverse effect of and underdosing of local anesthetics|Poisoning by, adverse effect of and underdosing of local anesthetics +C0473977|T037|ET|T41.3X1|ICD10CM|Poisoning by local anesthetics NOS|Poisoning by local anesthetics NOS +C2877966|T037|AB|T41.3X1|ICD10CM|Poisoning by local anesthetics, accidental (unintentional)|Poisoning by local anesthetics, accidental (unintentional) +C2877966|T037|HT|T41.3X1|ICD10CM|Poisoning by local anesthetics, accidental (unintentional)|Poisoning by local anesthetics, accidental (unintentional) +C2877967|T037|PT|T41.3X1A|ICD10CM|Poisoning by local anesthetics, accidental (unintentional), initial encounter|Poisoning by local anesthetics, accidental (unintentional), initial encounter +C2877967|T037|AB|T41.3X1A|ICD10CM|Poisoning by local anesthetics, accidental, init|Poisoning by local anesthetics, accidental, init +C2877968|T037|PT|T41.3X1D|ICD10CM|Poisoning by local anesthetics, accidental (unintentional), subsequent encounter|Poisoning by local anesthetics, accidental (unintentional), subsequent encounter +C2877968|T037|AB|T41.3X1D|ICD10CM|Poisoning by local anesthetics, accidental, subs|Poisoning by local anesthetics, accidental, subs +C2877969|T037|PT|T41.3X1S|ICD10CM|Poisoning by local anesthetics, accidental (unintentional), sequela|Poisoning by local anesthetics, accidental (unintentional), sequela +C2877969|T037|AB|T41.3X1S|ICD10CM|Poisoning by local anesthetics, accidental, sequela|Poisoning by local anesthetics, accidental, sequela +C2877970|T037|AB|T41.3X2|ICD10CM|Poisoning by local anesthetics, intentional self-harm|Poisoning by local anesthetics, intentional self-harm +C2877970|T037|HT|T41.3X2|ICD10CM|Poisoning by local anesthetics, intentional self-harm|Poisoning by local anesthetics, intentional self-harm +C2877971|T037|AB|T41.3X2A|ICD10CM|Poisoning by local anesthetics, intentional self-harm, init|Poisoning by local anesthetics, intentional self-harm, init +C2877971|T037|PT|T41.3X2A|ICD10CM|Poisoning by local anesthetics, intentional self-harm, initial encounter|Poisoning by local anesthetics, intentional self-harm, initial encounter +C2877972|T037|AB|T41.3X2D|ICD10CM|Poisoning by local anesthetics, intentional self-harm, subs|Poisoning by local anesthetics, intentional self-harm, subs +C2877972|T037|PT|T41.3X2D|ICD10CM|Poisoning by local anesthetics, intentional self-harm, subsequent encounter|Poisoning by local anesthetics, intentional self-harm, subsequent encounter +C2877973|T037|PT|T41.3X2S|ICD10CM|Poisoning by local anesthetics, intentional self-harm, sequela|Poisoning by local anesthetics, intentional self-harm, sequela +C2877973|T037|AB|T41.3X2S|ICD10CM|Poisoning by local anesthetics, self-harm, sequela|Poisoning by local anesthetics, self-harm, sequela +C2877974|T037|AB|T41.3X3|ICD10CM|Poisoning by local anesthetics, assault|Poisoning by local anesthetics, assault +C2877974|T037|HT|T41.3X3|ICD10CM|Poisoning by local anesthetics, assault|Poisoning by local anesthetics, assault +C2877975|T037|AB|T41.3X3A|ICD10CM|Poisoning by local anesthetics, assault, initial encounter|Poisoning by local anesthetics, assault, initial encounter +C2877975|T037|PT|T41.3X3A|ICD10CM|Poisoning by local anesthetics, assault, initial encounter|Poisoning by local anesthetics, assault, initial encounter +C2877976|T037|AB|T41.3X3D|ICD10CM|Poisoning by local anesthetics, assault, subs encntr|Poisoning by local anesthetics, assault, subs encntr +C2877976|T037|PT|T41.3X3D|ICD10CM|Poisoning by local anesthetics, assault, subsequent encounter|Poisoning by local anesthetics, assault, subsequent encounter +C2877977|T037|AB|T41.3X3S|ICD10CM|Poisoning by local anesthetics, assault, sequela|Poisoning by local anesthetics, assault, sequela +C2877977|T037|PT|T41.3X3S|ICD10CM|Poisoning by local anesthetics, assault, sequela|Poisoning by local anesthetics, assault, sequela +C2877978|T037|AB|T41.3X4|ICD10CM|Poisoning by local anesthetics, undetermined|Poisoning by local anesthetics, undetermined +C2877978|T037|HT|T41.3X4|ICD10CM|Poisoning by local anesthetics, undetermined|Poisoning by local anesthetics, undetermined +C2877979|T037|AB|T41.3X4A|ICD10CM|Poisoning by local anesthetics, undetermined, init encntr|Poisoning by local anesthetics, undetermined, init encntr +C2877979|T037|PT|T41.3X4A|ICD10CM|Poisoning by local anesthetics, undetermined, initial encounter|Poisoning by local anesthetics, undetermined, initial encounter +C2877980|T037|AB|T41.3X4D|ICD10CM|Poisoning by local anesthetics, undetermined, subs encntr|Poisoning by local anesthetics, undetermined, subs encntr +C2877980|T037|PT|T41.3X4D|ICD10CM|Poisoning by local anesthetics, undetermined, subsequent encounter|Poisoning by local anesthetics, undetermined, subsequent encounter +C2877981|T037|AB|T41.3X4S|ICD10CM|Poisoning by local anesthetics, undetermined, sequela|Poisoning by local anesthetics, undetermined, sequela +C2877981|T037|PT|T41.3X4S|ICD10CM|Poisoning by local anesthetics, undetermined, sequela|Poisoning by local anesthetics, undetermined, sequela +C0452211|T046|AB|T41.3X5|ICD10CM|Adverse effect of local anesthetics|Adverse effect of local anesthetics +C0452211|T046|HT|T41.3X5|ICD10CM|Adverse effect of local anesthetics|Adverse effect of local anesthetics +C2877982|T037|AB|T41.3X5A|ICD10CM|Adverse effect of local anesthetics, initial encounter|Adverse effect of local anesthetics, initial encounter +C2877982|T037|PT|T41.3X5A|ICD10CM|Adverse effect of local anesthetics, initial encounter|Adverse effect of local anesthetics, initial encounter +C2877983|T037|AB|T41.3X5D|ICD10CM|Adverse effect of local anesthetics, subsequent encounter|Adverse effect of local anesthetics, subsequent encounter +C2877983|T037|PT|T41.3X5D|ICD10CM|Adverse effect of local anesthetics, subsequent encounter|Adverse effect of local anesthetics, subsequent encounter +C2877984|T037|AB|T41.3X5S|ICD10CM|Adverse effect of local anesthetics, sequela|Adverse effect of local anesthetics, sequela +C2877984|T037|PT|T41.3X5S|ICD10CM|Adverse effect of local anesthetics, sequela|Adverse effect of local anesthetics, sequela +C2877985|T033|HT|T41.3X6|ICD10CM|Underdosing of local anesthetics|Underdosing of local anesthetics +C2877985|T033|AB|T41.3X6|ICD10CM|Underdosing of local anesthetics|Underdosing of local anesthetics +C2877986|T037|AB|T41.3X6A|ICD10CM|Underdosing of local anesthetics, initial encounter|Underdosing of local anesthetics, initial encounter +C2877986|T037|PT|T41.3X6A|ICD10CM|Underdosing of local anesthetics, initial encounter|Underdosing of local anesthetics, initial encounter +C2877987|T037|AB|T41.3X6D|ICD10CM|Underdosing of local anesthetics, subsequent encounter|Underdosing of local anesthetics, subsequent encounter +C2877987|T037|PT|T41.3X6D|ICD10CM|Underdosing of local anesthetics, subsequent encounter|Underdosing of local anesthetics, subsequent encounter +C2877988|T037|AB|T41.3X6S|ICD10CM|Underdosing of local anesthetics, sequela|Underdosing of local anesthetics, sequela +C2877988|T037|PT|T41.3X6S|ICD10CM|Underdosing of local anesthetics, sequela|Underdosing of local anesthetics, sequela +C0478457|T037|PS|T41.4|ICD10|Anaesthetic, unspecified|Anaesthetic, unspecified +C0478457|T037|PS|T41.4|ICD10AE|Anesthetic, unspecified|Anesthetic, unspecified +C0478457|T037|PX|T41.4|ICD10|Poisoning by anaesthetic, unspecified|Poisoning by anaesthetic, unspecified +C0478457|T037|PX|T41.4|ICD10AE|Poisoning by anesthetic, unspecified|Poisoning by anesthetic, unspecified +C2877989|T037|HT|T41.4|ICD10CM|Poisoning by, adverse effect of and underdosing of unspecified anesthetic|Poisoning by, adverse effect of and underdosing of unspecified anesthetic +C2877989|T037|AB|T41.4|ICD10CM|Unsp anesthetic|Unsp anesthetic +C0478457|T037|ET|T41.41|ICD10CM|Poisoning by anesthetic NOS|Poisoning by anesthetic NOS +C2877990|T037|AB|T41.41|ICD10CM|Poisoning by unsp anesthetic, accidental (unintentional)|Poisoning by unsp anesthetic, accidental (unintentional) +C2877990|T037|HT|T41.41|ICD10CM|Poisoning by unspecified anesthetic, accidental (unintentional)|Poisoning by unspecified anesthetic, accidental (unintentional) +C2877991|T037|AB|T41.41XA|ICD10CM|Poisoning by unsp anesthetic, accidental, init|Poisoning by unsp anesthetic, accidental, init +C2877991|T037|PT|T41.41XA|ICD10CM|Poisoning by unspecified anesthetic, accidental (unintentional), initial encounter|Poisoning by unspecified anesthetic, accidental (unintentional), initial encounter +C2877992|T037|AB|T41.41XD|ICD10CM|Poisoning by unsp anesthetic, accidental, subs|Poisoning by unsp anesthetic, accidental, subs +C2877992|T037|PT|T41.41XD|ICD10CM|Poisoning by unspecified anesthetic, accidental (unintentional), subsequent encounter|Poisoning by unspecified anesthetic, accidental (unintentional), subsequent encounter +C2877993|T037|AB|T41.41XS|ICD10CM|Poisoning by unsp anesthetic, accidental, sequela|Poisoning by unsp anesthetic, accidental, sequela +C2877993|T037|PT|T41.41XS|ICD10CM|Poisoning by unspecified anesthetic, accidental (unintentional), sequela|Poisoning by unspecified anesthetic, accidental (unintentional), sequela +C2877994|T037|AB|T41.42|ICD10CM|Poisoning by unspecified anesthetic, intentional self-harm|Poisoning by unspecified anesthetic, intentional self-harm +C2877994|T037|HT|T41.42|ICD10CM|Poisoning by unspecified anesthetic, intentional self-harm|Poisoning by unspecified anesthetic, intentional self-harm +C2877995|T037|AB|T41.42XA|ICD10CM|Poisoning by unsp anesthetic, intentional self-harm, init|Poisoning by unsp anesthetic, intentional self-harm, init +C2877995|T037|PT|T41.42XA|ICD10CM|Poisoning by unspecified anesthetic, intentional self-harm, initial encounter|Poisoning by unspecified anesthetic, intentional self-harm, initial encounter +C2877996|T037|AB|T41.42XD|ICD10CM|Poisoning by unsp anesthetic, intentional self-harm, subs|Poisoning by unsp anesthetic, intentional self-harm, subs +C2877996|T037|PT|T41.42XD|ICD10CM|Poisoning by unspecified anesthetic, intentional self-harm, subsequent encounter|Poisoning by unspecified anesthetic, intentional self-harm, subsequent encounter +C2877997|T037|AB|T41.42XS|ICD10CM|Poisoning by unsp anesthetic, intentional self-harm, sequela|Poisoning by unsp anesthetic, intentional self-harm, sequela +C2877997|T037|PT|T41.42XS|ICD10CM|Poisoning by unspecified anesthetic, intentional self-harm, sequela|Poisoning by unspecified anesthetic, intentional self-harm, sequela +C2877998|T037|AB|T41.43|ICD10CM|Poisoning by unspecified anesthetic, assault|Poisoning by unspecified anesthetic, assault +C2877998|T037|HT|T41.43|ICD10CM|Poisoning by unspecified anesthetic, assault|Poisoning by unspecified anesthetic, assault +C2877999|T037|AB|T41.43XA|ICD10CM|Poisoning by unspecified anesthetic, assault, init encntr|Poisoning by unspecified anesthetic, assault, init encntr +C2877999|T037|PT|T41.43XA|ICD10CM|Poisoning by unspecified anesthetic, assault, initial encounter|Poisoning by unspecified anesthetic, assault, initial encounter +C2878000|T037|AB|T41.43XD|ICD10CM|Poisoning by unspecified anesthetic, assault, subs encntr|Poisoning by unspecified anesthetic, assault, subs encntr +C2878000|T037|PT|T41.43XD|ICD10CM|Poisoning by unspecified anesthetic, assault, subsequent encounter|Poisoning by unspecified anesthetic, assault, subsequent encounter +C2878001|T037|AB|T41.43XS|ICD10CM|Poisoning by unspecified anesthetic, assault, sequela|Poisoning by unspecified anesthetic, assault, sequela +C2878001|T037|PT|T41.43XS|ICD10CM|Poisoning by unspecified anesthetic, assault, sequela|Poisoning by unspecified anesthetic, assault, sequela +C2878002|T037|AB|T41.44|ICD10CM|Poisoning by unspecified anesthetic, undetermined|Poisoning by unspecified anesthetic, undetermined +C2878002|T037|HT|T41.44|ICD10CM|Poisoning by unspecified anesthetic, undetermined|Poisoning by unspecified anesthetic, undetermined +C2878003|T037|AB|T41.44XA|ICD10CM|Poisoning by unsp anesthetic, undetermined, init encntr|Poisoning by unsp anesthetic, undetermined, init encntr +C2878003|T037|PT|T41.44XA|ICD10CM|Poisoning by unspecified anesthetic, undetermined, initial encounter|Poisoning by unspecified anesthetic, undetermined, initial encounter +C2878004|T037|AB|T41.44XD|ICD10CM|Poisoning by unsp anesthetic, undetermined, subs encntr|Poisoning by unsp anesthetic, undetermined, subs encntr +C2878004|T037|PT|T41.44XD|ICD10CM|Poisoning by unspecified anesthetic, undetermined, subsequent encounter|Poisoning by unspecified anesthetic, undetermined, subsequent encounter +C2878005|T037|AB|T41.44XS|ICD10CM|Poisoning by unspecified anesthetic, undetermined, sequela|Poisoning by unspecified anesthetic, undetermined, sequela +C2878005|T037|PT|T41.44XS|ICD10CM|Poisoning by unspecified anesthetic, undetermined, sequela|Poisoning by unspecified anesthetic, undetermined, sequela +C2878006|T037|AB|T41.45|ICD10CM|Adverse effect of unspecified anesthetic|Adverse effect of unspecified anesthetic +C2878006|T037|HT|T41.45|ICD10CM|Adverse effect of unspecified anesthetic|Adverse effect of unspecified anesthetic +C2878007|T037|AB|T41.45XA|ICD10CM|Adverse effect of unspecified anesthetic, initial encounter|Adverse effect of unspecified anesthetic, initial encounter +C2878007|T037|PT|T41.45XA|ICD10CM|Adverse effect of unspecified anesthetic, initial encounter|Adverse effect of unspecified anesthetic, initial encounter +C2878008|T037|AB|T41.45XD|ICD10CM|Adverse effect of unspecified anesthetic, subs encntr|Adverse effect of unspecified anesthetic, subs encntr +C2878008|T037|PT|T41.45XD|ICD10CM|Adverse effect of unspecified anesthetic, subsequent encounter|Adverse effect of unspecified anesthetic, subsequent encounter +C2878009|T037|AB|T41.45XS|ICD10CM|Adverse effect of unspecified anesthetic, sequela|Adverse effect of unspecified anesthetic, sequela +C2878009|T037|PT|T41.45XS|ICD10CM|Adverse effect of unspecified anesthetic, sequela|Adverse effect of unspecified anesthetic, sequela +C2878010|T037|AB|T41.46|ICD10CM|Underdosing of unspecified anesthetics|Underdosing of unspecified anesthetics +C2878010|T037|HT|T41.46|ICD10CM|Underdosing of unspecified anesthetics|Underdosing of unspecified anesthetics +C2878011|T037|AB|T41.46XA|ICD10CM|Underdosing of unspecified anesthetics, initial encounter|Underdosing of unspecified anesthetics, initial encounter +C2878011|T037|PT|T41.46XA|ICD10CM|Underdosing of unspecified anesthetics, initial encounter|Underdosing of unspecified anesthetics, initial encounter +C2878012|T037|AB|T41.46XD|ICD10CM|Underdosing of unspecified anesthetics, subsequent encounter|Underdosing of unspecified anesthetics, subsequent encounter +C2878012|T037|PT|T41.46XD|ICD10CM|Underdosing of unspecified anesthetics, subsequent encounter|Underdosing of unspecified anesthetics, subsequent encounter +C2878013|T037|AB|T41.46XS|ICD10CM|Underdosing of unspecified anesthetics, sequela|Underdosing of unspecified anesthetics, sequela +C2878013|T037|PT|T41.46XS|ICD10CM|Underdosing of unspecified anesthetics, sequela|Underdosing of unspecified anesthetics, sequela +C3507315|T037|PX|T41.5|ICD10|Poisoning by therapeutic gases|Poisoning by therapeutic gases +C2878014|T037|HT|T41.5|ICD10CM|Poisoning by, adverse effect of and underdosing of therapeutic gases|Poisoning by, adverse effect of and underdosing of therapeutic gases +C2878014|T037|AB|T41.5|ICD10CM|Therapeutic gases|Therapeutic gases +C3507315|T037|PS|T41.5|ICD10|Therapeutic gases|Therapeutic gases +C2878014|T037|HT|T41.5X|ICD10CM|Poisoning by, adverse effect of and underdosing of therapeutic gases|Poisoning by, adverse effect of and underdosing of therapeutic gases +C2878014|T037|AB|T41.5X|ICD10CM|Therapeutic gases|Therapeutic gases +C3507315|T037|ET|T41.5X1|ICD10CM|Poisoning by therapeutic gases NOS|Poisoning by therapeutic gases NOS +C2878015|T037|AB|T41.5X1|ICD10CM|Poisoning by therapeutic gases, accidental (unintentional)|Poisoning by therapeutic gases, accidental (unintentional) +C2878015|T037|HT|T41.5X1|ICD10CM|Poisoning by therapeutic gases, accidental (unintentional)|Poisoning by therapeutic gases, accidental (unintentional) +C2878016|T037|PT|T41.5X1A|ICD10CM|Poisoning by therapeutic gases, accidental (unintentional), initial encounter|Poisoning by therapeutic gases, accidental (unintentional), initial encounter +C2878016|T037|AB|T41.5X1A|ICD10CM|Poisoning by therapeutic gases, accidental, init|Poisoning by therapeutic gases, accidental, init +C2878017|T037|PT|T41.5X1D|ICD10CM|Poisoning by therapeutic gases, accidental (unintentional), subsequent encounter|Poisoning by therapeutic gases, accidental (unintentional), subsequent encounter +C2878017|T037|AB|T41.5X1D|ICD10CM|Poisoning by therapeutic gases, accidental, subs|Poisoning by therapeutic gases, accidental, subs +C2878018|T037|PT|T41.5X1S|ICD10CM|Poisoning by therapeutic gases, accidental (unintentional), sequela|Poisoning by therapeutic gases, accidental (unintentional), sequela +C2878018|T037|AB|T41.5X1S|ICD10CM|Poisoning by therapeutic gases, accidental, sequela|Poisoning by therapeutic gases, accidental, sequela +C2878019|T037|AB|T41.5X2|ICD10CM|Poisoning by therapeutic gases, intentional self-harm|Poisoning by therapeutic gases, intentional self-harm +C2878019|T037|HT|T41.5X2|ICD10CM|Poisoning by therapeutic gases, intentional self-harm|Poisoning by therapeutic gases, intentional self-harm +C2878020|T037|AB|T41.5X2A|ICD10CM|Poisoning by therapeutic gases, intentional self-harm, init|Poisoning by therapeutic gases, intentional self-harm, init +C2878020|T037|PT|T41.5X2A|ICD10CM|Poisoning by therapeutic gases, intentional self-harm, initial encounter|Poisoning by therapeutic gases, intentional self-harm, initial encounter +C2878021|T037|AB|T41.5X2D|ICD10CM|Poisoning by therapeutic gases, intentional self-harm, subs|Poisoning by therapeutic gases, intentional self-harm, subs +C2878021|T037|PT|T41.5X2D|ICD10CM|Poisoning by therapeutic gases, intentional self-harm, subsequent encounter|Poisoning by therapeutic gases, intentional self-harm, subsequent encounter +C2878022|T037|PT|T41.5X2S|ICD10CM|Poisoning by therapeutic gases, intentional self-harm, sequela|Poisoning by therapeutic gases, intentional self-harm, sequela +C2878022|T037|AB|T41.5X2S|ICD10CM|Poisoning by therapeutic gases, self-harm, sequela|Poisoning by therapeutic gases, self-harm, sequela +C2878023|T037|AB|T41.5X3|ICD10CM|Poisoning by therapeutic gases, assault|Poisoning by therapeutic gases, assault +C2878023|T037|HT|T41.5X3|ICD10CM|Poisoning by therapeutic gases, assault|Poisoning by therapeutic gases, assault +C2878024|T037|AB|T41.5X3A|ICD10CM|Poisoning by therapeutic gases, assault, initial encounter|Poisoning by therapeutic gases, assault, initial encounter +C2878024|T037|PT|T41.5X3A|ICD10CM|Poisoning by therapeutic gases, assault, initial encounter|Poisoning by therapeutic gases, assault, initial encounter +C2878025|T037|AB|T41.5X3D|ICD10CM|Poisoning by therapeutic gases, assault, subs encntr|Poisoning by therapeutic gases, assault, subs encntr +C2878025|T037|PT|T41.5X3D|ICD10CM|Poisoning by therapeutic gases, assault, subsequent encounter|Poisoning by therapeutic gases, assault, subsequent encounter +C2878026|T037|AB|T41.5X3S|ICD10CM|Poisoning by therapeutic gases, assault, sequela|Poisoning by therapeutic gases, assault, sequela +C2878026|T037|PT|T41.5X3S|ICD10CM|Poisoning by therapeutic gases, assault, sequela|Poisoning by therapeutic gases, assault, sequela +C2878027|T037|AB|T41.5X4|ICD10CM|Poisoning by therapeutic gases, undetermined|Poisoning by therapeutic gases, undetermined +C2878027|T037|HT|T41.5X4|ICD10CM|Poisoning by therapeutic gases, undetermined|Poisoning by therapeutic gases, undetermined +C2878028|T037|AB|T41.5X4A|ICD10CM|Poisoning by therapeutic gases, undetermined, init encntr|Poisoning by therapeutic gases, undetermined, init encntr +C2878028|T037|PT|T41.5X4A|ICD10CM|Poisoning by therapeutic gases, undetermined, initial encounter|Poisoning by therapeutic gases, undetermined, initial encounter +C2878029|T037|AB|T41.5X4D|ICD10CM|Poisoning by therapeutic gases, undetermined, subs encntr|Poisoning by therapeutic gases, undetermined, subs encntr +C2878029|T037|PT|T41.5X4D|ICD10CM|Poisoning by therapeutic gases, undetermined, subsequent encounter|Poisoning by therapeutic gases, undetermined, subsequent encounter +C2878030|T037|AB|T41.5X4S|ICD10CM|Poisoning by therapeutic gases, undetermined, sequela|Poisoning by therapeutic gases, undetermined, sequela +C2878030|T037|PT|T41.5X4S|ICD10CM|Poisoning by therapeutic gases, undetermined, sequela|Poisoning by therapeutic gases, undetermined, sequela +C2878031|T037|AB|T41.5X5|ICD10CM|Adverse effect of therapeutic gases|Adverse effect of therapeutic gases +C2878031|T037|HT|T41.5X5|ICD10CM|Adverse effect of therapeutic gases|Adverse effect of therapeutic gases +C2878032|T037|AB|T41.5X5A|ICD10CM|Adverse effect of therapeutic gases, initial encounter|Adverse effect of therapeutic gases, initial encounter +C2878032|T037|PT|T41.5X5A|ICD10CM|Adverse effect of therapeutic gases, initial encounter|Adverse effect of therapeutic gases, initial encounter +C2878033|T037|AB|T41.5X5D|ICD10CM|Adverse effect of therapeutic gases, subsequent encounter|Adverse effect of therapeutic gases, subsequent encounter +C2878033|T037|PT|T41.5X5D|ICD10CM|Adverse effect of therapeutic gases, subsequent encounter|Adverse effect of therapeutic gases, subsequent encounter +C2878034|T037|AB|T41.5X5S|ICD10CM|Adverse effect of therapeutic gases, sequela|Adverse effect of therapeutic gases, sequela +C2878034|T037|PT|T41.5X5S|ICD10CM|Adverse effect of therapeutic gases, sequela|Adverse effect of therapeutic gases, sequela +C2878035|T037|AB|T41.5X6|ICD10CM|Underdosing of therapeutic gases|Underdosing of therapeutic gases +C2878035|T037|HT|T41.5X6|ICD10CM|Underdosing of therapeutic gases|Underdosing of therapeutic gases +C2878036|T037|AB|T41.5X6A|ICD10CM|Underdosing of therapeutic gases, initial encounter|Underdosing of therapeutic gases, initial encounter +C2878036|T037|PT|T41.5X6A|ICD10CM|Underdosing of therapeutic gases, initial encounter|Underdosing of therapeutic gases, initial encounter +C2878037|T037|AB|T41.5X6D|ICD10CM|Underdosing of therapeutic gases, subsequent encounter|Underdosing of therapeutic gases, subsequent encounter +C2878037|T037|PT|T41.5X6D|ICD10CM|Underdosing of therapeutic gases, subsequent encounter|Underdosing of therapeutic gases, subsequent encounter +C2878038|T037|AB|T41.5X6S|ICD10CM|Underdosing of therapeutic gases, sequela|Underdosing of therapeutic gases, sequela +C2878038|T037|PT|T41.5X6S|ICD10CM|Underdosing of therapeutic gases, sequela|Underdosing of therapeutic gases, sequela +C2878039|T037|AB|T42|ICD10CM|Antiepileptic, sedative- hypnotic and antiparkinsonism drugs|Antiepileptic, sedative- hypnotic and antiparkinsonism drugs +C0496095|T037|HT|T42|ICD10|Poisoning by antiepileptic, sedative-hypnotic and antiparkinsonism drugs|Poisoning by antiepileptic, sedative-hypnotic and antiparkinsonism drugs +C2878040|T037|AB|T42.0|ICD10CM|Hydantoin derivatives|Hydantoin derivatives +C0161553|T037|PS|T42.0|ICD10|Hydantoin derivatives|Hydantoin derivatives +C0161553|T037|PX|T42.0|ICD10|Poisoning by hydantoin derivatives|Poisoning by hydantoin derivatives +C2878040|T037|HT|T42.0|ICD10CM|Poisoning by, adverse effect of and underdosing of hydantoin derivatives|Poisoning by, adverse effect of and underdosing of hydantoin derivatives +C2878040|T037|AB|T42.0X|ICD10CM|Hydantoin derivatives|Hydantoin derivatives +C2878040|T037|HT|T42.0X|ICD10CM|Poisoning by, adverse effect of and underdosing of hydantoin derivatives|Poisoning by, adverse effect of and underdosing of hydantoin derivatives +C0161553|T037|ET|T42.0X1|ICD10CM|Poisoning by hydantoin derivatives NOS|Poisoning by hydantoin derivatives NOS +C0416652|T037|AB|T42.0X1|ICD10CM|Poisoning by hydantoin derivatives, accidental|Poisoning by hydantoin derivatives, accidental +C0416652|T037|HT|T42.0X1|ICD10CM|Poisoning by hydantoin derivatives, accidental (unintentional)|Poisoning by hydantoin derivatives, accidental (unintentional) +C2878042|T037|PT|T42.0X1A|ICD10CM|Poisoning by hydantoin derivatives, accidental (unintentional), initial encounter|Poisoning by hydantoin derivatives, accidental (unintentional), initial encounter +C2878042|T037|AB|T42.0X1A|ICD10CM|Poisoning by hydantoin derivatives, accidental, init|Poisoning by hydantoin derivatives, accidental, init +C2878043|T037|PT|T42.0X1D|ICD10CM|Poisoning by hydantoin derivatives, accidental (unintentional), subsequent encounter|Poisoning by hydantoin derivatives, accidental (unintentional), subsequent encounter +C2878043|T037|AB|T42.0X1D|ICD10CM|Poisoning by hydantoin derivatives, accidental, subs|Poisoning by hydantoin derivatives, accidental, subs +C2878044|T037|PT|T42.0X1S|ICD10CM|Poisoning by hydantoin derivatives, accidental (unintentional), sequela|Poisoning by hydantoin derivatives, accidental (unintentional), sequela +C2878044|T037|AB|T42.0X1S|ICD10CM|Poisoning by hydantoin derivatives, accidental, sequela|Poisoning by hydantoin derivatives, accidental, sequela +C2878045|T037|AB|T42.0X2|ICD10CM|Poisoning by hydantoin derivatives, intentional self-harm|Poisoning by hydantoin derivatives, intentional self-harm +C2878045|T037|HT|T42.0X2|ICD10CM|Poisoning by hydantoin derivatives, intentional self-harm|Poisoning by hydantoin derivatives, intentional self-harm +C2878046|T037|PT|T42.0X2A|ICD10CM|Poisoning by hydantoin derivatives, intentional self-harm, initial encounter|Poisoning by hydantoin derivatives, intentional self-harm, initial encounter +C2878046|T037|AB|T42.0X2A|ICD10CM|Poisoning by hydantoin derivatives, self-harm, init|Poisoning by hydantoin derivatives, self-harm, init +C2878047|T037|PT|T42.0X2D|ICD10CM|Poisoning by hydantoin derivatives, intentional self-harm, subsequent encounter|Poisoning by hydantoin derivatives, intentional self-harm, subsequent encounter +C2878047|T037|AB|T42.0X2D|ICD10CM|Poisoning by hydantoin derivatives, self-harm, subs|Poisoning by hydantoin derivatives, self-harm, subs +C2878048|T037|PT|T42.0X2S|ICD10CM|Poisoning by hydantoin derivatives, intentional self-harm, sequela|Poisoning by hydantoin derivatives, intentional self-harm, sequela +C2878048|T037|AB|T42.0X2S|ICD10CM|Poisoning by hydantoin derivatives, self-harm, sequela|Poisoning by hydantoin derivatives, self-harm, sequela +C2878049|T037|AB|T42.0X3|ICD10CM|Poisoning by hydantoin derivatives, assault|Poisoning by hydantoin derivatives, assault +C2878049|T037|HT|T42.0X3|ICD10CM|Poisoning by hydantoin derivatives, assault|Poisoning by hydantoin derivatives, assault +C2878050|T037|AB|T42.0X3A|ICD10CM|Poisoning by hydantoin derivatives, assault, init encntr|Poisoning by hydantoin derivatives, assault, init encntr +C2878050|T037|PT|T42.0X3A|ICD10CM|Poisoning by hydantoin derivatives, assault, initial encounter|Poisoning by hydantoin derivatives, assault, initial encounter +C2878051|T037|AB|T42.0X3D|ICD10CM|Poisoning by hydantoin derivatives, assault, subs encntr|Poisoning by hydantoin derivatives, assault, subs encntr +C2878051|T037|PT|T42.0X3D|ICD10CM|Poisoning by hydantoin derivatives, assault, subsequent encounter|Poisoning by hydantoin derivatives, assault, subsequent encounter +C2878052|T037|AB|T42.0X3S|ICD10CM|Poisoning by hydantoin derivatives, assault, sequela|Poisoning by hydantoin derivatives, assault, sequela +C2878052|T037|PT|T42.0X3S|ICD10CM|Poisoning by hydantoin derivatives, assault, sequela|Poisoning by hydantoin derivatives, assault, sequela +C2878053|T037|AB|T42.0X4|ICD10CM|Poisoning by hydantoin derivatives, undetermined|Poisoning by hydantoin derivatives, undetermined +C2878053|T037|HT|T42.0X4|ICD10CM|Poisoning by hydantoin derivatives, undetermined|Poisoning by hydantoin derivatives, undetermined +C2878054|T037|AB|T42.0X4A|ICD10CM|Poisoning by hydantoin derivatives, undetermined, init|Poisoning by hydantoin derivatives, undetermined, init +C2878054|T037|PT|T42.0X4A|ICD10CM|Poisoning by hydantoin derivatives, undetermined, initial encounter|Poisoning by hydantoin derivatives, undetermined, initial encounter +C2878055|T037|AB|T42.0X4D|ICD10CM|Poisoning by hydantoin derivatives, undetermined, subs|Poisoning by hydantoin derivatives, undetermined, subs +C2878055|T037|PT|T42.0X4D|ICD10CM|Poisoning by hydantoin derivatives, undetermined, subsequent encounter|Poisoning by hydantoin derivatives, undetermined, subsequent encounter +C2878056|T037|AB|T42.0X4S|ICD10CM|Poisoning by hydantoin derivatives, undetermined, sequela|Poisoning by hydantoin derivatives, undetermined, sequela +C2878056|T037|PT|T42.0X4S|ICD10CM|Poisoning by hydantoin derivatives, undetermined, sequela|Poisoning by hydantoin derivatives, undetermined, sequela +C0413740|T046|AB|T42.0X5|ICD10CM|Adverse effect of hydantoin derivatives|Adverse effect of hydantoin derivatives +C0413740|T046|HT|T42.0X5|ICD10CM|Adverse effect of hydantoin derivatives|Adverse effect of hydantoin derivatives +C2878058|T037|AB|T42.0X5A|ICD10CM|Adverse effect of hydantoin derivatives, initial encounter|Adverse effect of hydantoin derivatives, initial encounter +C2878058|T037|PT|T42.0X5A|ICD10CM|Adverse effect of hydantoin derivatives, initial encounter|Adverse effect of hydantoin derivatives, initial encounter +C2878059|T037|AB|T42.0X5D|ICD10CM|Adverse effect of hydantoin derivatives, subs encntr|Adverse effect of hydantoin derivatives, subs encntr +C2878059|T037|PT|T42.0X5D|ICD10CM|Adverse effect of hydantoin derivatives, subsequent encounter|Adverse effect of hydantoin derivatives, subsequent encounter +C2878060|T037|AB|T42.0X5S|ICD10CM|Adverse effect of hydantoin derivatives, sequela|Adverse effect of hydantoin derivatives, sequela +C2878060|T037|PT|T42.0X5S|ICD10CM|Adverse effect of hydantoin derivatives, sequela|Adverse effect of hydantoin derivatives, sequela +C2878061|T033|AB|T42.0X6|ICD10CM|Underdosing of hydantoin derivatives|Underdosing of hydantoin derivatives +C2878061|T033|HT|T42.0X6|ICD10CM|Underdosing of hydantoin derivatives|Underdosing of hydantoin derivatives +C2878062|T037|AB|T42.0X6A|ICD10CM|Underdosing of hydantoin derivatives, initial encounter|Underdosing of hydantoin derivatives, initial encounter +C2878062|T037|PT|T42.0X6A|ICD10CM|Underdosing of hydantoin derivatives, initial encounter|Underdosing of hydantoin derivatives, initial encounter +C2878063|T037|AB|T42.0X6D|ICD10CM|Underdosing of hydantoin derivatives, subsequent encounter|Underdosing of hydantoin derivatives, subsequent encounter +C2878063|T037|PT|T42.0X6D|ICD10CM|Underdosing of hydantoin derivatives, subsequent encounter|Underdosing of hydantoin derivatives, subsequent encounter +C2878064|T037|AB|T42.0X6S|ICD10CM|Underdosing of hydantoin derivatives, sequela|Underdosing of hydantoin derivatives, sequela +C2878064|T037|PT|T42.0X6S|ICD10CM|Underdosing of hydantoin derivatives, sequela|Underdosing of hydantoin derivatives, sequela +C2878066|T037|AB|T42.1|ICD10CM|Iminostilbenes|Iminostilbenes +C0452120|T037|PS|T42.1|ICD10|Iminostilbenes|Iminostilbenes +C0452120|T037|PX|T42.1|ICD10|Poisoning by iminostilbenes|Poisoning by iminostilbenes +C2878065|T037|ET|T42.1|ICD10CM|Poisoning by, adverse effect of and underdosing of carbamazepine|Poisoning by, adverse effect of and underdosing of carbamazepine +C2878066|T037|HT|T42.1|ICD10CM|Poisoning by, adverse effect of and underdosing of iminostilbenes|Poisoning by, adverse effect of and underdosing of iminostilbenes +C2878066|T037|AB|T42.1X|ICD10CM|Iminostilbenes|Iminostilbenes +C2878066|T037|HT|T42.1X|ICD10CM|Poisoning by, adverse effect of and underdosing of iminostilbenes|Poisoning by, adverse effect of and underdosing of iminostilbenes +C0452120|T037|ET|T42.1X1|ICD10CM|Poisoning by iminostilbenes NOS|Poisoning by iminostilbenes NOS +C2878067|T037|AB|T42.1X1|ICD10CM|Poisoning by iminostilbenes, accidental (unintentional)|Poisoning by iminostilbenes, accidental (unintentional) +C2878067|T037|HT|T42.1X1|ICD10CM|Poisoning by iminostilbenes, accidental (unintentional)|Poisoning by iminostilbenes, accidental (unintentional) +C2878068|T037|PT|T42.1X1A|ICD10CM|Poisoning by iminostilbenes, accidental (unintentional), initial encounter|Poisoning by iminostilbenes, accidental (unintentional), initial encounter +C2878068|T037|AB|T42.1X1A|ICD10CM|Poisoning by iminostilbenes, accidental, init|Poisoning by iminostilbenes, accidental, init +C2878069|T037|PT|T42.1X1D|ICD10CM|Poisoning by iminostilbenes, accidental (unintentional), subsequent encounter|Poisoning by iminostilbenes, accidental (unintentional), subsequent encounter +C2878069|T037|AB|T42.1X1D|ICD10CM|Poisoning by iminostilbenes, accidental, subs|Poisoning by iminostilbenes, accidental, subs +C2878070|T037|PT|T42.1X1S|ICD10CM|Poisoning by iminostilbenes, accidental (unintentional), sequela|Poisoning by iminostilbenes, accidental (unintentional), sequela +C2878070|T037|AB|T42.1X1S|ICD10CM|Poisoning by iminostilbenes, accidental, sequela|Poisoning by iminostilbenes, accidental, sequela +C2878071|T037|AB|T42.1X2|ICD10CM|Poisoning by iminostilbenes, intentional self-harm|Poisoning by iminostilbenes, intentional self-harm +C2878071|T037|HT|T42.1X2|ICD10CM|Poisoning by iminostilbenes, intentional self-harm|Poisoning by iminostilbenes, intentional self-harm +C2878072|T037|AB|T42.1X2A|ICD10CM|Poisoning by iminostilbenes, intentional self-harm, init|Poisoning by iminostilbenes, intentional self-harm, init +C2878072|T037|PT|T42.1X2A|ICD10CM|Poisoning by iminostilbenes, intentional self-harm, initial encounter|Poisoning by iminostilbenes, intentional self-harm, initial encounter +C2878073|T037|AB|T42.1X2D|ICD10CM|Poisoning by iminostilbenes, intentional self-harm, subs|Poisoning by iminostilbenes, intentional self-harm, subs +C2878073|T037|PT|T42.1X2D|ICD10CM|Poisoning by iminostilbenes, intentional self-harm, subsequent encounter|Poisoning by iminostilbenes, intentional self-harm, subsequent encounter +C2878074|T037|AB|T42.1X2S|ICD10CM|Poisoning by iminostilbenes, intentional self-harm, sequela|Poisoning by iminostilbenes, intentional self-harm, sequela +C2878074|T037|PT|T42.1X2S|ICD10CM|Poisoning by iminostilbenes, intentional self-harm, sequela|Poisoning by iminostilbenes, intentional self-harm, sequela +C2878075|T037|AB|T42.1X3|ICD10CM|Poisoning by iminostilbenes, assault|Poisoning by iminostilbenes, assault +C2878075|T037|HT|T42.1X3|ICD10CM|Poisoning by iminostilbenes, assault|Poisoning by iminostilbenes, assault +C2878076|T037|AB|T42.1X3A|ICD10CM|Poisoning by iminostilbenes, assault, initial encounter|Poisoning by iminostilbenes, assault, initial encounter +C2878076|T037|PT|T42.1X3A|ICD10CM|Poisoning by iminostilbenes, assault, initial encounter|Poisoning by iminostilbenes, assault, initial encounter +C2878077|T037|AB|T42.1X3D|ICD10CM|Poisoning by iminostilbenes, assault, subsequent encounter|Poisoning by iminostilbenes, assault, subsequent encounter +C2878077|T037|PT|T42.1X3D|ICD10CM|Poisoning by iminostilbenes, assault, subsequent encounter|Poisoning by iminostilbenes, assault, subsequent encounter +C2878078|T037|AB|T42.1X3S|ICD10CM|Poisoning by iminostilbenes, assault, sequela|Poisoning by iminostilbenes, assault, sequela +C2878078|T037|PT|T42.1X3S|ICD10CM|Poisoning by iminostilbenes, assault, sequela|Poisoning by iminostilbenes, assault, sequela +C2878079|T037|AB|T42.1X4|ICD10CM|Poisoning by iminostilbenes, undetermined|Poisoning by iminostilbenes, undetermined +C2878079|T037|HT|T42.1X4|ICD10CM|Poisoning by iminostilbenes, undetermined|Poisoning by iminostilbenes, undetermined +C2878080|T037|AB|T42.1X4A|ICD10CM|Poisoning by iminostilbenes, undetermined, initial encounter|Poisoning by iminostilbenes, undetermined, initial encounter +C2878080|T037|PT|T42.1X4A|ICD10CM|Poisoning by iminostilbenes, undetermined, initial encounter|Poisoning by iminostilbenes, undetermined, initial encounter +C2878081|T037|AB|T42.1X4D|ICD10CM|Poisoning by iminostilbenes, undetermined, subs encntr|Poisoning by iminostilbenes, undetermined, subs encntr +C2878081|T037|PT|T42.1X4D|ICD10CM|Poisoning by iminostilbenes, undetermined, subsequent encounter|Poisoning by iminostilbenes, undetermined, subsequent encounter +C2878082|T037|AB|T42.1X4S|ICD10CM|Poisoning by iminostilbenes, undetermined, sequela|Poisoning by iminostilbenes, undetermined, sequela +C2878082|T037|PT|T42.1X4S|ICD10CM|Poisoning by iminostilbenes, undetermined, sequela|Poisoning by iminostilbenes, undetermined, sequela +C0481145|T037|HT|T42.1X5|ICD10CM|Adverse effect of iminostilbenes|Adverse effect of iminostilbenes +C0481145|T037|AB|T42.1X5|ICD10CM|Adverse effect of iminostilbenes|Adverse effect of iminostilbenes +C2878083|T037|AB|T42.1X5A|ICD10CM|Adverse effect of iminostilbenes, initial encounter|Adverse effect of iminostilbenes, initial encounter +C2878083|T037|PT|T42.1X5A|ICD10CM|Adverse effect of iminostilbenes, initial encounter|Adverse effect of iminostilbenes, initial encounter +C2878084|T037|AB|T42.1X5D|ICD10CM|Adverse effect of iminostilbenes, subsequent encounter|Adverse effect of iminostilbenes, subsequent encounter +C2878084|T037|PT|T42.1X5D|ICD10CM|Adverse effect of iminostilbenes, subsequent encounter|Adverse effect of iminostilbenes, subsequent encounter +C2878085|T037|AB|T42.1X5S|ICD10CM|Adverse effect of iminostilbenes, sequela|Adverse effect of iminostilbenes, sequela +C2878085|T037|PT|T42.1X5S|ICD10CM|Adverse effect of iminostilbenes, sequela|Adverse effect of iminostilbenes, sequela +C2878086|T037|AB|T42.1X6|ICD10CM|Underdosing of iminostilbenes|Underdosing of iminostilbenes +C2878086|T037|HT|T42.1X6|ICD10CM|Underdosing of iminostilbenes|Underdosing of iminostilbenes +C2878087|T037|AB|T42.1X6A|ICD10CM|Underdosing of iminostilbenes, initial encounter|Underdosing of iminostilbenes, initial encounter +C2878087|T037|PT|T42.1X6A|ICD10CM|Underdosing of iminostilbenes, initial encounter|Underdosing of iminostilbenes, initial encounter +C2878088|T037|AB|T42.1X6D|ICD10CM|Underdosing of iminostilbenes, subsequent encounter|Underdosing of iminostilbenes, subsequent encounter +C2878088|T037|PT|T42.1X6D|ICD10CM|Underdosing of iminostilbenes, subsequent encounter|Underdosing of iminostilbenes, subsequent encounter +C2878089|T037|AB|T42.1X6S|ICD10CM|Underdosing of iminostilbenes, sequela|Underdosing of iminostilbenes, sequela +C2878089|T037|PT|T42.1X6S|ICD10CM|Underdosing of iminostilbenes, sequela|Underdosing of iminostilbenes, sequela +C0496976|T037|PX|T42.2|ICD10|Poisoning by succinimides and oxazolidinediones|Poisoning by succinimides and oxazolidinediones +C2878090|T037|HT|T42.2|ICD10CM|Poisoning by, adverse effect of and underdosing of succinimides and oxazolidinediones|Poisoning by, adverse effect of and underdosing of succinimides and oxazolidinediones +C2878090|T037|AB|T42.2|ICD10CM|Succinimides and oxazolidinediones|Succinimides and oxazolidinediones +C0496976|T037|PS|T42.2|ICD10|Succinimides and oxazolidinediones|Succinimides and oxazolidinediones +C2878090|T037|HT|T42.2X|ICD10CM|Poisoning by, adverse effect of and underdosing of succinimides and oxazolidinediones|Poisoning by, adverse effect of and underdosing of succinimides and oxazolidinediones +C2878090|T037|AB|T42.2X|ICD10CM|Succinimides and oxazolidinediones|Succinimides and oxazolidinediones +C0496976|T037|ET|T42.2X1|ICD10CM|Poisoning by succinimides and oxazolidinediones NOS|Poisoning by succinimides and oxazolidinediones NOS +C2878091|T037|AB|T42.2X1|ICD10CM|Poisoning by succinimides and oxazolidinediones, accidental|Poisoning by succinimides and oxazolidinediones, accidental +C2878091|T037|HT|T42.2X1|ICD10CM|Poisoning by succinimides and oxazolidinediones, accidental (unintentional)|Poisoning by succinimides and oxazolidinediones, accidental (unintentional) +C2878092|T037|AB|T42.2X1A|ICD10CM|Poisoning by succinimides and oxazolidinediones, acc, init|Poisoning by succinimides and oxazolidinediones, acc, init +C2878092|T037|PT|T42.2X1A|ICD10CM|Poisoning by succinimides and oxazolidinediones, accidental (unintentional), initial encounter|Poisoning by succinimides and oxazolidinediones, accidental (unintentional), initial encounter +C2878093|T037|AB|T42.2X1D|ICD10CM|Poisoning by succinimides and oxazolidinediones, acc, subs|Poisoning by succinimides and oxazolidinediones, acc, subs +C2878093|T037|PT|T42.2X1D|ICD10CM|Poisoning by succinimides and oxazolidinediones, accidental (unintentional), subsequent encounter|Poisoning by succinimides and oxazolidinediones, accidental (unintentional), subsequent encounter +C2878094|T037|AB|T42.2X1S|ICD10CM|Poisn by succinimides and oxazolidinediones, acc, sequela|Poisn by succinimides and oxazolidinediones, acc, sequela +C2878094|T037|PT|T42.2X1S|ICD10CM|Poisoning by succinimides and oxazolidinediones, accidental (unintentional), sequela|Poisoning by succinimides and oxazolidinediones, accidental (unintentional), sequela +C2878095|T037|HT|T42.2X2|ICD10CM|Poisoning by succinimides and oxazolidinediones, intentional self-harm|Poisoning by succinimides and oxazolidinediones, intentional self-harm +C2878095|T037|AB|T42.2X2|ICD10CM|Poisoning by succinimides and oxazolidinediones, self-harm|Poisoning by succinimides and oxazolidinediones, self-harm +C2878096|T037|AB|T42.2X2A|ICD10CM|Poisn by succinimides and oxazolidinediones, self-harm, init|Poisn by succinimides and oxazolidinediones, self-harm, init +C2878096|T037|PT|T42.2X2A|ICD10CM|Poisoning by succinimides and oxazolidinediones, intentional self-harm, initial encounter|Poisoning by succinimides and oxazolidinediones, intentional self-harm, initial encounter +C2878097|T037|AB|T42.2X2D|ICD10CM|Poisn by succinimides and oxazolidinediones, self-harm, subs|Poisn by succinimides and oxazolidinediones, self-harm, subs +C2878097|T037|PT|T42.2X2D|ICD10CM|Poisoning by succinimides and oxazolidinediones, intentional self-harm, subsequent encounter|Poisoning by succinimides and oxazolidinediones, intentional self-harm, subsequent encounter +C2878098|T037|AB|T42.2X2S|ICD10CM|Poisn by succinimides and oxazolidinediones, slf-hrm, sqla|Poisn by succinimides and oxazolidinediones, slf-hrm, sqla +C2878098|T037|PT|T42.2X2S|ICD10CM|Poisoning by succinimides and oxazolidinediones, intentional self-harm, sequela|Poisoning by succinimides and oxazolidinediones, intentional self-harm, sequela +C2878099|T037|AB|T42.2X3|ICD10CM|Poisoning by succinimides and oxazolidinediones, assault|Poisoning by succinimides and oxazolidinediones, assault +C2878099|T037|HT|T42.2X3|ICD10CM|Poisoning by succinimides and oxazolidinediones, assault|Poisoning by succinimides and oxazolidinediones, assault +C2878100|T037|AB|T42.2X3A|ICD10CM|Poisn by succinimides and oxazolidinediones, assault, init|Poisn by succinimides and oxazolidinediones, assault, init +C2878100|T037|PT|T42.2X3A|ICD10CM|Poisoning by succinimides and oxazolidinediones, assault, initial encounter|Poisoning by succinimides and oxazolidinediones, assault, initial encounter +C2878101|T037|AB|T42.2X3D|ICD10CM|Poisn by succinimides and oxazolidinediones, assault, subs|Poisn by succinimides and oxazolidinediones, assault, subs +C2878101|T037|PT|T42.2X3D|ICD10CM|Poisoning by succinimides and oxazolidinediones, assault, subsequent encounter|Poisoning by succinimides and oxazolidinediones, assault, subsequent encounter +C2878102|T037|AB|T42.2X3S|ICD10CM|Poisn by succinimides and oxazolidinediones, asslt, sequela|Poisn by succinimides and oxazolidinediones, asslt, sequela +C2878102|T037|PT|T42.2X3S|ICD10CM|Poisoning by succinimides and oxazolidinediones, assault, sequela|Poisoning by succinimides and oxazolidinediones, assault, sequela +C2878103|T037|AB|T42.2X4|ICD10CM|Poisoning by succinimides and oxazolidinediones, undet|Poisoning by succinimides and oxazolidinediones, undet +C2878103|T037|HT|T42.2X4|ICD10CM|Poisoning by succinimides and oxazolidinediones, undetermined|Poisoning by succinimides and oxazolidinediones, undetermined +C2878104|T037|AB|T42.2X4A|ICD10CM|Poisoning by succinimides and oxazolidinediones, undet, init|Poisoning by succinimides and oxazolidinediones, undet, init +C2878104|T037|PT|T42.2X4A|ICD10CM|Poisoning by succinimides and oxazolidinediones, undetermined, initial encounter|Poisoning by succinimides and oxazolidinediones, undetermined, initial encounter +C2878105|T037|AB|T42.2X4D|ICD10CM|Poisoning by succinimides and oxazolidinediones, undet, subs|Poisoning by succinimides and oxazolidinediones, undet, subs +C2878105|T037|PT|T42.2X4D|ICD10CM|Poisoning by succinimides and oxazolidinediones, undetermined, subsequent encounter|Poisoning by succinimides and oxazolidinediones, undetermined, subsequent encounter +C2878106|T037|AB|T42.2X4S|ICD10CM|Poisn by succinimides and oxazolidinediones, undet, sequela|Poisn by succinimides and oxazolidinediones, undet, sequela +C2878106|T037|PT|T42.2X4S|ICD10CM|Poisoning by succinimides and oxazolidinediones, undetermined, sequela|Poisoning by succinimides and oxazolidinediones, undetermined, sequela +C2878107|T037|AB|T42.2X5|ICD10CM|Adverse effect of succinimides and oxazolidinediones|Adverse effect of succinimides and oxazolidinediones +C2878107|T037|HT|T42.2X5|ICD10CM|Adverse effect of succinimides and oxazolidinediones|Adverse effect of succinimides and oxazolidinediones +C2878108|T037|AB|T42.2X5A|ICD10CM|Adverse effect of succinimides and oxazolidinediones, init|Adverse effect of succinimides and oxazolidinediones, init +C2878108|T037|PT|T42.2X5A|ICD10CM|Adverse effect of succinimides and oxazolidinediones, initial encounter|Adverse effect of succinimides and oxazolidinediones, initial encounter +C2878109|T037|AB|T42.2X5D|ICD10CM|Adverse effect of succinimides and oxazolidinediones, subs|Adverse effect of succinimides and oxazolidinediones, subs +C2878109|T037|PT|T42.2X5D|ICD10CM|Adverse effect of succinimides and oxazolidinediones, subsequent encounter|Adverse effect of succinimides and oxazolidinediones, subsequent encounter +C2878110|T037|PT|T42.2X5S|ICD10CM|Adverse effect of succinimides and oxazolidinediones, sequela|Adverse effect of succinimides and oxazolidinediones, sequela +C2878110|T037|AB|T42.2X5S|ICD10CM|Advrs effect of succinimides and oxazolidinediones, sequela|Advrs effect of succinimides and oxazolidinediones, sequela +C2878111|T037|AB|T42.2X6|ICD10CM|Underdosing of succinimides and oxazolidinediones|Underdosing of succinimides and oxazolidinediones +C2878111|T037|HT|T42.2X6|ICD10CM|Underdosing of succinimides and oxazolidinediones|Underdosing of succinimides and oxazolidinediones +C2878112|T037|AB|T42.2X6A|ICD10CM|Underdosing of succinimides and oxazolidinediones, init|Underdosing of succinimides and oxazolidinediones, init +C2878112|T037|PT|T42.2X6A|ICD10CM|Underdosing of succinimides and oxazolidinediones, initial encounter|Underdosing of succinimides and oxazolidinediones, initial encounter +C2878113|T037|AB|T42.2X6D|ICD10CM|Underdosing of succinimides and oxazolidinediones, subs|Underdosing of succinimides and oxazolidinediones, subs +C2878113|T037|PT|T42.2X6D|ICD10CM|Underdosing of succinimides and oxazolidinediones, subsequent encounter|Underdosing of succinimides and oxazolidinediones, subsequent encounter +C2878114|T037|AB|T42.2X6S|ICD10CM|Underdosing of succinimides and oxazolidinediones, sequela|Underdosing of succinimides and oxazolidinediones, sequela +C2878114|T037|PT|T42.2X6S|ICD10CM|Underdosing of succinimides and oxazolidinediones, sequela|Underdosing of succinimides and oxazolidinediones, sequela +C2878115|T037|AB|T42.3|ICD10CM|Barbiturates|Barbiturates +C0161558|T037|PS|T42.3|ICD10|Barbiturates|Barbiturates +C0161558|T037|PX|T42.3|ICD10|Poisoning by barbiturates|Poisoning by barbiturates +C2878115|T037|HT|T42.3|ICD10CM|Poisoning by, adverse effect of and underdosing of barbiturates|Poisoning by, adverse effect of and underdosing of barbiturates +C2878115|T037|AB|T42.3X|ICD10CM|Barbiturates|Barbiturates +C2878115|T037|HT|T42.3X|ICD10CM|Poisoning by, adverse effect of and underdosing of barbiturates|Poisoning by, adverse effect of and underdosing of barbiturates +C0161558|T037|ET|T42.3X1|ICD10CM|Poisoning by barbiturates NOS|Poisoning by barbiturates NOS +C2878116|T037|AB|T42.3X1|ICD10CM|Poisoning by barbiturates, accidental (unintentional)|Poisoning by barbiturates, accidental (unintentional) +C2878116|T037|HT|T42.3X1|ICD10CM|Poisoning by barbiturates, accidental (unintentional)|Poisoning by barbiturates, accidental (unintentional) +C2878117|T037|AB|T42.3X1A|ICD10CM|Poisoning by barbiturates, accidental (unintentional), init|Poisoning by barbiturates, accidental (unintentional), init +C2878117|T037|PT|T42.3X1A|ICD10CM|Poisoning by barbiturates, accidental (unintentional), initial encounter|Poisoning by barbiturates, accidental (unintentional), initial encounter +C2878118|T037|AB|T42.3X1D|ICD10CM|Poisoning by barbiturates, accidental (unintentional), subs|Poisoning by barbiturates, accidental (unintentional), subs +C2878118|T037|PT|T42.3X1D|ICD10CM|Poisoning by barbiturates, accidental (unintentional), subsequent encounter|Poisoning by barbiturates, accidental (unintentional), subsequent encounter +C2878119|T037|PT|T42.3X1S|ICD10CM|Poisoning by barbiturates, accidental (unintentional), sequela|Poisoning by barbiturates, accidental (unintentional), sequela +C2878119|T037|AB|T42.3X1S|ICD10CM|Poisoning by barbiturates, accidental, sequela|Poisoning by barbiturates, accidental, sequela +C2878120|T037|AB|T42.3X2|ICD10CM|Poisoning by barbiturates, intentional self-harm|Poisoning by barbiturates, intentional self-harm +C2878120|T037|HT|T42.3X2|ICD10CM|Poisoning by barbiturates, intentional self-harm|Poisoning by barbiturates, intentional self-harm +C2878121|T037|AB|T42.3X2A|ICD10CM|Poisoning by barbiturates, intentional self-harm, init|Poisoning by barbiturates, intentional self-harm, init +C2878121|T037|PT|T42.3X2A|ICD10CM|Poisoning by barbiturates, intentional self-harm, initial encounter|Poisoning by barbiturates, intentional self-harm, initial encounter +C2878122|T037|AB|T42.3X2D|ICD10CM|Poisoning by barbiturates, intentional self-harm, subs|Poisoning by barbiturates, intentional self-harm, subs +C2878122|T037|PT|T42.3X2D|ICD10CM|Poisoning by barbiturates, intentional self-harm, subsequent encounter|Poisoning by barbiturates, intentional self-harm, subsequent encounter +C2878123|T037|AB|T42.3X2S|ICD10CM|Poisoning by barbiturates, intentional self-harm, sequela|Poisoning by barbiturates, intentional self-harm, sequela +C2878123|T037|PT|T42.3X2S|ICD10CM|Poisoning by barbiturates, intentional self-harm, sequela|Poisoning by barbiturates, intentional self-harm, sequela +C2878124|T037|AB|T42.3X3|ICD10CM|Poisoning by barbiturates, assault|Poisoning by barbiturates, assault +C2878124|T037|HT|T42.3X3|ICD10CM|Poisoning by barbiturates, assault|Poisoning by barbiturates, assault +C2878125|T037|AB|T42.3X3A|ICD10CM|Poisoning by barbiturates, assault, initial encounter|Poisoning by barbiturates, assault, initial encounter +C2878125|T037|PT|T42.3X3A|ICD10CM|Poisoning by barbiturates, assault, initial encounter|Poisoning by barbiturates, assault, initial encounter +C2878126|T037|AB|T42.3X3D|ICD10CM|Poisoning by barbiturates, assault, subsequent encounter|Poisoning by barbiturates, assault, subsequent encounter +C2878126|T037|PT|T42.3X3D|ICD10CM|Poisoning by barbiturates, assault, subsequent encounter|Poisoning by barbiturates, assault, subsequent encounter +C2878127|T037|AB|T42.3X3S|ICD10CM|Poisoning by barbiturates, assault, sequela|Poisoning by barbiturates, assault, sequela +C2878127|T037|PT|T42.3X3S|ICD10CM|Poisoning by barbiturates, assault, sequela|Poisoning by barbiturates, assault, sequela +C2878128|T037|AB|T42.3X4|ICD10CM|Poisoning by barbiturates, undetermined|Poisoning by barbiturates, undetermined +C2878128|T037|HT|T42.3X4|ICD10CM|Poisoning by barbiturates, undetermined|Poisoning by barbiturates, undetermined +C2878129|T037|AB|T42.3X4A|ICD10CM|Poisoning by barbiturates, undetermined, initial encounter|Poisoning by barbiturates, undetermined, initial encounter +C2878129|T037|PT|T42.3X4A|ICD10CM|Poisoning by barbiturates, undetermined, initial encounter|Poisoning by barbiturates, undetermined, initial encounter +C2878130|T037|AB|T42.3X4D|ICD10CM|Poisoning by barbiturates, undetermined, subs encntr|Poisoning by barbiturates, undetermined, subs encntr +C2878130|T037|PT|T42.3X4D|ICD10CM|Poisoning by barbiturates, undetermined, subsequent encounter|Poisoning by barbiturates, undetermined, subsequent encounter +C2878131|T037|AB|T42.3X4S|ICD10CM|Poisoning by barbiturates, undetermined, sequela|Poisoning by barbiturates, undetermined, sequela +C2878131|T037|PT|T42.3X4S|ICD10CM|Poisoning by barbiturates, undetermined, sequela|Poisoning by barbiturates, undetermined, sequela +C0413758|T046|AB|T42.3X5|ICD10CM|Adverse effect of barbiturates|Adverse effect of barbiturates +C0413758|T046|HT|T42.3X5|ICD10CM|Adverse effect of barbiturates|Adverse effect of barbiturates +C2878133|T037|AB|T42.3X5A|ICD10CM|Adverse effect of barbiturates, initial encounter|Adverse effect of barbiturates, initial encounter +C2878133|T037|PT|T42.3X5A|ICD10CM|Adverse effect of barbiturates, initial encounter|Adverse effect of barbiturates, initial encounter +C2878134|T037|AB|T42.3X5D|ICD10CM|Adverse effect of barbiturates, subsequent encounter|Adverse effect of barbiturates, subsequent encounter +C2878134|T037|PT|T42.3X5D|ICD10CM|Adverse effect of barbiturates, subsequent encounter|Adverse effect of barbiturates, subsequent encounter +C2878135|T037|AB|T42.3X5S|ICD10CM|Adverse effect of barbiturates, sequela|Adverse effect of barbiturates, sequela +C2878135|T037|PT|T42.3X5S|ICD10CM|Adverse effect of barbiturates, sequela|Adverse effect of barbiturates, sequela +C2878136|T033|AB|T42.3X6|ICD10CM|Underdosing of barbiturates|Underdosing of barbiturates +C2878136|T033|HT|T42.3X6|ICD10CM|Underdosing of barbiturates|Underdosing of barbiturates +C2878137|T037|AB|T42.3X6A|ICD10CM|Underdosing of barbiturates, initial encounter|Underdosing of barbiturates, initial encounter +C2878137|T037|PT|T42.3X6A|ICD10CM|Underdosing of barbiturates, initial encounter|Underdosing of barbiturates, initial encounter +C2878138|T037|AB|T42.3X6D|ICD10CM|Underdosing of barbiturates, subsequent encounter|Underdosing of barbiturates, subsequent encounter +C2878138|T037|PT|T42.3X6D|ICD10CM|Underdosing of barbiturates, subsequent encounter|Underdosing of barbiturates, subsequent encounter +C2878139|T037|AB|T42.3X6S|ICD10CM|Underdosing of barbiturates, sequela|Underdosing of barbiturates, sequela +C2878139|T037|PT|T42.3X6S|ICD10CM|Underdosing of barbiturates, sequela|Underdosing of barbiturates, sequela +C2878140|T037|AB|T42.4|ICD10CM|Benzodiazepines|Benzodiazepines +C0412862|T037|PS|T42.4|ICD10|Benzodiazepines|Benzodiazepines +C0412862|T037|PX|T42.4|ICD10|Poisoning by benzodiazepines|Poisoning by benzodiazepines +C2878140|T037|HT|T42.4|ICD10CM|Poisoning by, adverse effect of and underdosing of benzodiazepines|Poisoning by, adverse effect of and underdosing of benzodiazepines +C2878140|T037|AB|T42.4X|ICD10CM|Benzodiazepines|Benzodiazepines +C2878140|T037|HT|T42.4X|ICD10CM|Poisoning by, adverse effect of and underdosing of benzodiazepines|Poisoning by, adverse effect of and underdosing of benzodiazepines +C0412862|T037|ET|T42.4X1|ICD10CM|Poisoning by benzodiazepines NOS|Poisoning by benzodiazepines NOS +C2878141|T037|AB|T42.4X1|ICD10CM|Poisoning by benzodiazepines, accidental (unintentional)|Poisoning by benzodiazepines, accidental (unintentional) +C2878141|T037|HT|T42.4X1|ICD10CM|Poisoning by benzodiazepines, accidental (unintentional)|Poisoning by benzodiazepines, accidental (unintentional) +C2878142|T037|PT|T42.4X1A|ICD10CM|Poisoning by benzodiazepines, accidental (unintentional), initial encounter|Poisoning by benzodiazepines, accidental (unintentional), initial encounter +C2878142|T037|AB|T42.4X1A|ICD10CM|Poisoning by benzodiazepines, accidental, init|Poisoning by benzodiazepines, accidental, init +C2878143|T037|PT|T42.4X1D|ICD10CM|Poisoning by benzodiazepines, accidental (unintentional), subsequent encounter|Poisoning by benzodiazepines, accidental (unintentional), subsequent encounter +C2878143|T037|AB|T42.4X1D|ICD10CM|Poisoning by benzodiazepines, accidental, subs|Poisoning by benzodiazepines, accidental, subs +C2878144|T037|PT|T42.4X1S|ICD10CM|Poisoning by benzodiazepines, accidental (unintentional), sequela|Poisoning by benzodiazepines, accidental (unintentional), sequela +C2878144|T037|AB|T42.4X1S|ICD10CM|Poisoning by benzodiazepines, accidental, sequela|Poisoning by benzodiazepines, accidental, sequela +C2878145|T037|AB|T42.4X2|ICD10CM|Poisoning by benzodiazepines, intentional self-harm|Poisoning by benzodiazepines, intentional self-harm +C2878145|T037|HT|T42.4X2|ICD10CM|Poisoning by benzodiazepines, intentional self-harm|Poisoning by benzodiazepines, intentional self-harm +C2878146|T037|AB|T42.4X2A|ICD10CM|Poisoning by benzodiazepines, intentional self-harm, init|Poisoning by benzodiazepines, intentional self-harm, init +C2878146|T037|PT|T42.4X2A|ICD10CM|Poisoning by benzodiazepines, intentional self-harm, initial encounter|Poisoning by benzodiazepines, intentional self-harm, initial encounter +C2878147|T037|AB|T42.4X2D|ICD10CM|Poisoning by benzodiazepines, intentional self-harm, subs|Poisoning by benzodiazepines, intentional self-harm, subs +C2878147|T037|PT|T42.4X2D|ICD10CM|Poisoning by benzodiazepines, intentional self-harm, subsequent encounter|Poisoning by benzodiazepines, intentional self-harm, subsequent encounter +C2878148|T037|AB|T42.4X2S|ICD10CM|Poisoning by benzodiazepines, intentional self-harm, sequela|Poisoning by benzodiazepines, intentional self-harm, sequela +C2878148|T037|PT|T42.4X2S|ICD10CM|Poisoning by benzodiazepines, intentional self-harm, sequela|Poisoning by benzodiazepines, intentional self-harm, sequela +C2878149|T037|AB|T42.4X3|ICD10CM|Poisoning by benzodiazepines, assault|Poisoning by benzodiazepines, assault +C2878149|T037|HT|T42.4X3|ICD10CM|Poisoning by benzodiazepines, assault|Poisoning by benzodiazepines, assault +C2878150|T037|AB|T42.4X3A|ICD10CM|Poisoning by benzodiazepines, assault, initial encounter|Poisoning by benzodiazepines, assault, initial encounter +C2878150|T037|PT|T42.4X3A|ICD10CM|Poisoning by benzodiazepines, assault, initial encounter|Poisoning by benzodiazepines, assault, initial encounter +C2878151|T037|AB|T42.4X3D|ICD10CM|Poisoning by benzodiazepines, assault, subsequent encounter|Poisoning by benzodiazepines, assault, subsequent encounter +C2878151|T037|PT|T42.4X3D|ICD10CM|Poisoning by benzodiazepines, assault, subsequent encounter|Poisoning by benzodiazepines, assault, subsequent encounter +C2878152|T037|AB|T42.4X3S|ICD10CM|Poisoning by benzodiazepines, assault, sequela|Poisoning by benzodiazepines, assault, sequela +C2878152|T037|PT|T42.4X3S|ICD10CM|Poisoning by benzodiazepines, assault, sequela|Poisoning by benzodiazepines, assault, sequela +C2878153|T037|AB|T42.4X4|ICD10CM|Poisoning by benzodiazepines, undetermined|Poisoning by benzodiazepines, undetermined +C2878153|T037|HT|T42.4X4|ICD10CM|Poisoning by benzodiazepines, undetermined|Poisoning by benzodiazepines, undetermined +C2878154|T037|AB|T42.4X4A|ICD10CM|Poisoning by benzodiazepines, undetermined, init encntr|Poisoning by benzodiazepines, undetermined, init encntr +C2878154|T037|PT|T42.4X4A|ICD10CM|Poisoning by benzodiazepines, undetermined, initial encounter|Poisoning by benzodiazepines, undetermined, initial encounter +C2878155|T037|AB|T42.4X4D|ICD10CM|Poisoning by benzodiazepines, undetermined, subs encntr|Poisoning by benzodiazepines, undetermined, subs encntr +C2878155|T037|PT|T42.4X4D|ICD10CM|Poisoning by benzodiazepines, undetermined, subsequent encounter|Poisoning by benzodiazepines, undetermined, subsequent encounter +C2878156|T037|AB|T42.4X4S|ICD10CM|Poisoning by benzodiazepines, undetermined, sequela|Poisoning by benzodiazepines, undetermined, sequela +C2878156|T037|PT|T42.4X4S|ICD10CM|Poisoning by benzodiazepines, undetermined, sequela|Poisoning by benzodiazepines, undetermined, sequela +C0474027|T046|AB|T42.4X5|ICD10CM|Adverse effect of benzodiazepines|Adverse effect of benzodiazepines +C0474027|T046|HT|T42.4X5|ICD10CM|Adverse effect of benzodiazepines|Adverse effect of benzodiazepines +C2878158|T037|AB|T42.4X5A|ICD10CM|Adverse effect of benzodiazepines, initial encounter|Adverse effect of benzodiazepines, initial encounter +C2878158|T037|PT|T42.4X5A|ICD10CM|Adverse effect of benzodiazepines, initial encounter|Adverse effect of benzodiazepines, initial encounter +C2878159|T037|AB|T42.4X5D|ICD10CM|Adverse effect of benzodiazepines, subsequent encounter|Adverse effect of benzodiazepines, subsequent encounter +C2878159|T037|PT|T42.4X5D|ICD10CM|Adverse effect of benzodiazepines, subsequent encounter|Adverse effect of benzodiazepines, subsequent encounter +C2878160|T037|AB|T42.4X5S|ICD10CM|Adverse effect of benzodiazepines, sequela|Adverse effect of benzodiazepines, sequela +C2878160|T037|PT|T42.4X5S|ICD10CM|Adverse effect of benzodiazepines, sequela|Adverse effect of benzodiazepines, sequela +C2878161|T033|AB|T42.4X6|ICD10CM|Underdosing of benzodiazepines|Underdosing of benzodiazepines +C2878161|T033|HT|T42.4X6|ICD10CM|Underdosing of benzodiazepines|Underdosing of benzodiazepines +C2878162|T037|AB|T42.4X6A|ICD10CM|Underdosing of benzodiazepines, initial encounter|Underdosing of benzodiazepines, initial encounter +C2878162|T037|PT|T42.4X6A|ICD10CM|Underdosing of benzodiazepines, initial encounter|Underdosing of benzodiazepines, initial encounter +C2878163|T037|AB|T42.4X6D|ICD10CM|Underdosing of benzodiazepines, subsequent encounter|Underdosing of benzodiazepines, subsequent encounter +C2878163|T037|PT|T42.4X6D|ICD10CM|Underdosing of benzodiazepines, subsequent encounter|Underdosing of benzodiazepines, subsequent encounter +C2878164|T037|AB|T42.4X6S|ICD10CM|Underdosing of benzodiazepines, sequela|Underdosing of benzodiazepines, sequela +C2878164|T037|PT|T42.4X6S|ICD10CM|Underdosing of benzodiazepines, sequela|Underdosing of benzodiazepines, sequela +C2878165|T037|AB|T42.5|ICD10CM|Mixed antiepileptics|Mixed antiepileptics +C0869090|T037|PS|T42.5|ICD10|Mixed antiepileptics, not elsewhere classified|Mixed antiepileptics, not elsewhere classified +C0869090|T037|PX|T42.5|ICD10|Poisoning by mixed antiepileptics, not elsewhere classified|Poisoning by mixed antiepileptics, not elsewhere classified +C2878165|T037|HT|T42.5|ICD10CM|Poisoning by, adverse effect of and underdosing of mixed antiepileptics|Poisoning by, adverse effect of and underdosing of mixed antiepileptics +C2878166|T037|AB|T42.5X|ICD10CM|Antiepileptics|Antiepileptics +C2878166|T037|HT|T42.5X|ICD10CM|Poisoning by, adverse effect of and underdosing of antiepileptics|Poisoning by, adverse effect of and underdosing of antiepileptics +C2878167|T037|ET|T42.5X1|ICD10CM|Poisoning by mixed antiepileptics NOS|Poisoning by mixed antiepileptics NOS +C2878168|T037|AB|T42.5X1|ICD10CM|Poisoning by mixed antiepileptics, accidental|Poisoning by mixed antiepileptics, accidental +C2878168|T037|HT|T42.5X1|ICD10CM|Poisoning by mixed antiepileptics, accidental (unintentional)|Poisoning by mixed antiepileptics, accidental (unintentional) +C2878169|T037|PT|T42.5X1A|ICD10CM|Poisoning by mixed antiepileptics, accidental (unintentional), initial encounter|Poisoning by mixed antiepileptics, accidental (unintentional), initial encounter +C2878169|T037|AB|T42.5X1A|ICD10CM|Poisoning by mixed antiepileptics, accidental, init|Poisoning by mixed antiepileptics, accidental, init +C2878170|T037|PT|T42.5X1D|ICD10CM|Poisoning by mixed antiepileptics, accidental (unintentional), subsequent encounter|Poisoning by mixed antiepileptics, accidental (unintentional), subsequent encounter +C2878170|T037|AB|T42.5X1D|ICD10CM|Poisoning by mixed antiepileptics, accidental, subs|Poisoning by mixed antiepileptics, accidental, subs +C2878171|T037|PT|T42.5X1S|ICD10CM|Poisoning by mixed antiepileptics, accidental (unintentional), sequela|Poisoning by mixed antiepileptics, accidental (unintentional), sequela +C2878171|T037|AB|T42.5X1S|ICD10CM|Poisoning by mixed antiepileptics, accidental, sequela|Poisoning by mixed antiepileptics, accidental, sequela +C2878172|T037|AB|T42.5X2|ICD10CM|Poisoning by mixed antiepileptics, intentional self-harm|Poisoning by mixed antiepileptics, intentional self-harm +C2878172|T037|HT|T42.5X2|ICD10CM|Poisoning by mixed antiepileptics, intentional self-harm|Poisoning by mixed antiepileptics, intentional self-harm +C2878173|T037|PT|T42.5X2A|ICD10CM|Poisoning by mixed antiepileptics, intentional self-harm, initial encounter|Poisoning by mixed antiepileptics, intentional self-harm, initial encounter +C2878173|T037|AB|T42.5X2A|ICD10CM|Poisoning by mixed antiepileptics, self-harm, init|Poisoning by mixed antiepileptics, self-harm, init +C2878174|T037|PT|T42.5X2D|ICD10CM|Poisoning by mixed antiepileptics, intentional self-harm, subsequent encounter|Poisoning by mixed antiepileptics, intentional self-harm, subsequent encounter +C2878174|T037|AB|T42.5X2D|ICD10CM|Poisoning by mixed antiepileptics, self-harm, subs|Poisoning by mixed antiepileptics, self-harm, subs +C2878175|T037|PT|T42.5X2S|ICD10CM|Poisoning by mixed antiepileptics, intentional self-harm, sequela|Poisoning by mixed antiepileptics, intentional self-harm, sequela +C2878175|T037|AB|T42.5X2S|ICD10CM|Poisoning by mixed antiepileptics, self-harm, sequela|Poisoning by mixed antiepileptics, self-harm, sequela +C2878176|T037|AB|T42.5X3|ICD10CM|Poisoning by mixed antiepileptics, assault|Poisoning by mixed antiepileptics, assault +C2878176|T037|HT|T42.5X3|ICD10CM|Poisoning by mixed antiepileptics, assault|Poisoning by mixed antiepileptics, assault +C2878177|T037|AB|T42.5X3A|ICD10CM|Poisoning by mixed antiepileptics, assault, init encntr|Poisoning by mixed antiepileptics, assault, init encntr +C2878177|T037|PT|T42.5X3A|ICD10CM|Poisoning by mixed antiepileptics, assault, initial encounter|Poisoning by mixed antiepileptics, assault, initial encounter +C2878178|T037|AB|T42.5X3D|ICD10CM|Poisoning by mixed antiepileptics, assault, subs encntr|Poisoning by mixed antiepileptics, assault, subs encntr +C2878178|T037|PT|T42.5X3D|ICD10CM|Poisoning by mixed antiepileptics, assault, subsequent encounter|Poisoning by mixed antiepileptics, assault, subsequent encounter +C2878179|T037|AB|T42.5X3S|ICD10CM|Poisoning by mixed antiepileptics, assault, sequela|Poisoning by mixed antiepileptics, assault, sequela +C2878179|T037|PT|T42.5X3S|ICD10CM|Poisoning by mixed antiepileptics, assault, sequela|Poisoning by mixed antiepileptics, assault, sequela +C2878180|T037|AB|T42.5X4|ICD10CM|Poisoning by mixed antiepileptics, undetermined|Poisoning by mixed antiepileptics, undetermined +C2878180|T037|HT|T42.5X4|ICD10CM|Poisoning by mixed antiepileptics, undetermined|Poisoning by mixed antiepileptics, undetermined +C2878181|T037|AB|T42.5X4A|ICD10CM|Poisoning by mixed antiepileptics, undetermined, init encntr|Poisoning by mixed antiepileptics, undetermined, init encntr +C2878181|T037|PT|T42.5X4A|ICD10CM|Poisoning by mixed antiepileptics, undetermined, initial encounter|Poisoning by mixed antiepileptics, undetermined, initial encounter +C2878182|T037|AB|T42.5X4D|ICD10CM|Poisoning by mixed antiepileptics, undetermined, subs encntr|Poisoning by mixed antiepileptics, undetermined, subs encntr +C2878182|T037|PT|T42.5X4D|ICD10CM|Poisoning by mixed antiepileptics, undetermined, subsequent encounter|Poisoning by mixed antiepileptics, undetermined, subsequent encounter +C2878183|T037|AB|T42.5X4S|ICD10CM|Poisoning by mixed antiepileptics, undetermined, sequela|Poisoning by mixed antiepileptics, undetermined, sequela +C2878183|T037|PT|T42.5X4S|ICD10CM|Poisoning by mixed antiepileptics, undetermined, sequela|Poisoning by mixed antiepileptics, undetermined, sequela +C2878184|T037|AB|T42.5X5|ICD10CM|Adverse effect of mixed antiepileptics|Adverse effect of mixed antiepileptics +C2878184|T037|HT|T42.5X5|ICD10CM|Adverse effect of mixed antiepileptics|Adverse effect of mixed antiepileptics +C2878185|T037|AB|T42.5X5A|ICD10CM|Adverse effect of mixed antiepileptics, initial encounter|Adverse effect of mixed antiepileptics, initial encounter +C2878185|T037|PT|T42.5X5A|ICD10CM|Adverse effect of mixed antiepileptics, initial encounter|Adverse effect of mixed antiepileptics, initial encounter +C2878186|T037|AB|T42.5X5D|ICD10CM|Adverse effect of mixed antiepileptics, subsequent encounter|Adverse effect of mixed antiepileptics, subsequent encounter +C2878186|T037|PT|T42.5X5D|ICD10CM|Adverse effect of mixed antiepileptics, subsequent encounter|Adverse effect of mixed antiepileptics, subsequent encounter +C2878187|T037|AB|T42.5X5S|ICD10CM|Adverse effect of mixed antiepileptics, sequela|Adverse effect of mixed antiepileptics, sequela +C2878187|T037|PT|T42.5X5S|ICD10CM|Adverse effect of mixed antiepileptics, sequela|Adverse effect of mixed antiepileptics, sequela +C2878188|T037|AB|T42.5X6|ICD10CM|Underdosing of mixed antiepileptics|Underdosing of mixed antiepileptics +C2878188|T037|HT|T42.5X6|ICD10CM|Underdosing of mixed antiepileptics|Underdosing of mixed antiepileptics +C2878189|T037|AB|T42.5X6A|ICD10CM|Underdosing of mixed antiepileptics, initial encounter|Underdosing of mixed antiepileptics, initial encounter +C2878189|T037|PT|T42.5X6A|ICD10CM|Underdosing of mixed antiepileptics, initial encounter|Underdosing of mixed antiepileptics, initial encounter +C2878190|T037|AB|T42.5X6D|ICD10CM|Underdosing of mixed antiepileptics, subsequent encounter|Underdosing of mixed antiepileptics, subsequent encounter +C2878190|T037|PT|T42.5X6D|ICD10CM|Underdosing of mixed antiepileptics, subsequent encounter|Underdosing of mixed antiepileptics, subsequent encounter +C2878191|T037|AB|T42.5X6S|ICD10CM|Underdosing of mixed antiepileptics, sequela|Underdosing of mixed antiepileptics, sequela +C2878191|T037|PT|T42.5X6S|ICD10CM|Underdosing of mixed antiepileptics, sequela|Underdosing of mixed antiepileptics, sequela +C2878194|T037|AB|T42.6|ICD10CM|Antiepileptic and sedative-hypnotic drugs|Antiepileptic and sedative-hypnotic drugs +C0478440|T037|PS|T42.6|ICD10|Other antiepileptic and sedative-hypnotic drugs|Other antiepileptic and sedative-hypnotic drugs +C0478440|T037|PX|T42.6|ICD10|Poisoning by other antiepileptic and sedative-hypnotic drugs|Poisoning by other antiepileptic and sedative-hypnotic drugs +C2878192|T037|ET|T42.6|ICD10CM|Poisoning by, adverse effect of and underdosing of methaqualone|Poisoning by, adverse effect of and underdosing of methaqualone +C2878194|T037|HT|T42.6|ICD10CM|Poisoning by, adverse effect of and underdosing of other antiepileptic and sedative-hypnotic drugs|Poisoning by, adverse effect of and underdosing of other antiepileptic and sedative-hypnotic drugs +C2878193|T037|ET|T42.6|ICD10CM|Poisoning by, adverse effect of and underdosing of valproic acid|Poisoning by, adverse effect of and underdosing of valproic acid +C2878194|T037|AB|T42.6X|ICD10CM|Antiepileptic and sedative-hypnotic drugs|Antiepileptic and sedative-hypnotic drugs +C2878194|T037|HT|T42.6X|ICD10CM|Poisoning by, adverse effect of and underdosing of other antiepileptic and sedative-hypnotic drugs|Poisoning by, adverse effect of and underdosing of other antiepileptic and sedative-hypnotic drugs +C2878195|T037|AB|T42.6X1|ICD10CM|Poisoning by oth antieplptc and sed-hypntc drugs, acc|Poisoning by oth antieplptc and sed-hypntc drugs, acc +C0478440|T037|ET|T42.6X1|ICD10CM|Poisoning by other antiepileptic and sedative-hypnotic drugs NOS|Poisoning by other antiepileptic and sedative-hypnotic drugs NOS +C2878195|T037|HT|T42.6X1|ICD10CM|Poisoning by other antiepileptic and sedative-hypnotic drugs, accidental (unintentional)|Poisoning by other antiepileptic and sedative-hypnotic drugs, accidental (unintentional) +C2878196|T037|AB|T42.6X1A|ICD10CM|Poisoning by oth antieplptc and sed-hypntc drugs, acc, init|Poisoning by oth antieplptc and sed-hypntc drugs, acc, init +C2878197|T037|AB|T42.6X1D|ICD10CM|Poisoning by oth antieplptc and sed-hypntc drugs, acc, subs|Poisoning by oth antieplptc and sed-hypntc drugs, acc, subs +C2878198|T037|AB|T42.6X1S|ICD10CM|Poisn by oth antieplptc and sed-hypntc drugs, acc, sequela|Poisn by oth antieplptc and sed-hypntc drugs, acc, sequela +C2878198|T037|PT|T42.6X1S|ICD10CM|Poisoning by other antiepileptic and sedative-hypnotic drugs, accidental (unintentional), sequela|Poisoning by other antiepileptic and sedative-hypnotic drugs, accidental (unintentional), sequela +C2878199|T037|AB|T42.6X2|ICD10CM|Poisoning by oth antieplptc and sed-hypntc drugs, self-harm|Poisoning by oth antieplptc and sed-hypntc drugs, self-harm +C2878199|T037|HT|T42.6X2|ICD10CM|Poisoning by other antiepileptic and sedative-hypnotic drugs, intentional self-harm|Poisoning by other antiepileptic and sedative-hypnotic drugs, intentional self-harm +C2878200|T037|AB|T42.6X2A|ICD10CM|Poisn by oth antieplptc and sed-hypntc drugs, slf-hrm, init|Poisn by oth antieplptc and sed-hypntc drugs, slf-hrm, init +C2878201|T037|AB|T42.6X2D|ICD10CM|Poisn by oth antieplptc and sed-hypntc drugs, slf-hrm, subs|Poisn by oth antieplptc and sed-hypntc drugs, slf-hrm, subs +C2878202|T037|AB|T42.6X2S|ICD10CM|Poisn by oth antieplptc and sed-hypntc drugs, slf-hrm, sqla|Poisn by oth antieplptc and sed-hypntc drugs, slf-hrm, sqla +C2878202|T037|PT|T42.6X2S|ICD10CM|Poisoning by other antiepileptic and sedative-hypnotic drugs, intentional self-harm, sequela|Poisoning by other antiepileptic and sedative-hypnotic drugs, intentional self-harm, sequela +C2878203|T037|AB|T42.6X3|ICD10CM|Poisoning by oth antiepileptic and sed-hypntc drugs, assault|Poisoning by oth antiepileptic and sed-hypntc drugs, assault +C2878203|T037|HT|T42.6X3|ICD10CM|Poisoning by other antiepileptic and sedative-hypnotic drugs, assault|Poisoning by other antiepileptic and sedative-hypnotic drugs, assault +C2878204|T037|AB|T42.6X3A|ICD10CM|Poisn by oth antieplptc and sed-hypntc drugs, assault, init|Poisn by oth antieplptc and sed-hypntc drugs, assault, init +C2878204|T037|PT|T42.6X3A|ICD10CM|Poisoning by other antiepileptic and sedative-hypnotic drugs, assault, initial encounter|Poisoning by other antiepileptic and sedative-hypnotic drugs, assault, initial encounter +C2878205|T037|AB|T42.6X3D|ICD10CM|Poisn by oth antieplptc and sed-hypntc drugs, assault, subs|Poisn by oth antieplptc and sed-hypntc drugs, assault, subs +C2878205|T037|PT|T42.6X3D|ICD10CM|Poisoning by other antiepileptic and sedative-hypnotic drugs, assault, subsequent encounter|Poisoning by other antiepileptic and sedative-hypnotic drugs, assault, subsequent encounter +C2878206|T037|AB|T42.6X3S|ICD10CM|Poisn by oth antieplptc and sed-hypntc drugs, asslt, sequela|Poisn by oth antieplptc and sed-hypntc drugs, asslt, sequela +C2878206|T037|PT|T42.6X3S|ICD10CM|Poisoning by other antiepileptic and sedative-hypnotic drugs, assault, sequela|Poisoning by other antiepileptic and sedative-hypnotic drugs, assault, sequela +C2878207|T037|AB|T42.6X4|ICD10CM|Poisoning by oth antieplptc and sed-hypntc drugs, undet|Poisoning by oth antieplptc and sed-hypntc drugs, undet +C2878207|T037|HT|T42.6X4|ICD10CM|Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined|Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined +C2878208|T037|AB|T42.6X4A|ICD10CM|Poisn by oth antieplptc and sed-hypntc drugs, undet, init|Poisn by oth antieplptc and sed-hypntc drugs, undet, init +C2878208|T037|PT|T42.6X4A|ICD10CM|Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined, initial encounter|Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined, initial encounter +C2878209|T037|AB|T42.6X4D|ICD10CM|Poisn by oth antieplptc and sed-hypntc drugs, undet, subs|Poisn by oth antieplptc and sed-hypntc drugs, undet, subs +C2878209|T037|PT|T42.6X4D|ICD10CM|Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined, subsequent encounter|Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined, subsequent encounter +C2878210|T037|AB|T42.6X4S|ICD10CM|Poisn by oth antieplptc and sed-hypntc drugs, undet, sequela|Poisn by oth antieplptc and sed-hypntc drugs, undet, sequela +C2878210|T037|PT|T42.6X4S|ICD10CM|Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined, sequela|Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined, sequela +C2878211|T037|AB|T42.6X5|ICD10CM|Adverse effect of antiepileptic and sedative-hypnotic drugs|Adverse effect of antiepileptic and sedative-hypnotic drugs +C2878211|T037|HT|T42.6X5|ICD10CM|Adverse effect of other antiepileptic and sedative-hypnotic drugs|Adverse effect of other antiepileptic and sedative-hypnotic drugs +C2878212|T037|AB|T42.6X5A|ICD10CM|Adverse effect of antiepileptic and sed-hypntc drugs, init|Adverse effect of antiepileptic and sed-hypntc drugs, init +C2878212|T037|PT|T42.6X5A|ICD10CM|Adverse effect of other antiepileptic and sedative-hypnotic drugs, initial encounter|Adverse effect of other antiepileptic and sedative-hypnotic drugs, initial encounter +C2878213|T037|AB|T42.6X5D|ICD10CM|Adverse effect of antiepileptic and sed-hypntc drugs, subs|Adverse effect of antiepileptic and sed-hypntc drugs, subs +C2878213|T037|PT|T42.6X5D|ICD10CM|Adverse effect of other antiepileptic and sedative-hypnotic drugs, subsequent encounter|Adverse effect of other antiepileptic and sedative-hypnotic drugs, subsequent encounter +C2878214|T037|AB|T42.6X5S|ICD10CM|Adverse effect of antieplptc and sed-hypntc drugs, sequela|Adverse effect of antieplptc and sed-hypntc drugs, sequela +C2878214|T037|PT|T42.6X5S|ICD10CM|Adverse effect of other antiepileptic and sedative-hypnotic drugs, sequela|Adverse effect of other antiepileptic and sedative-hypnotic drugs, sequela +C2878215|T037|AB|T42.6X6|ICD10CM|Underdosing of oth antiepileptic and sedative-hypnotic drugs|Underdosing of oth antiepileptic and sedative-hypnotic drugs +C2878215|T037|HT|T42.6X6|ICD10CM|Underdosing of other antiepileptic and sedative-hypnotic drugs|Underdosing of other antiepileptic and sedative-hypnotic drugs +C2878216|T037|AB|T42.6X6A|ICD10CM|Underdosing of antiepileptic and sed-hypntc drugs, init|Underdosing of antiepileptic and sed-hypntc drugs, init +C2878216|T037|PT|T42.6X6A|ICD10CM|Underdosing of other antiepileptic and sedative-hypnotic drugs, initial encounter|Underdosing of other antiepileptic and sedative-hypnotic drugs, initial encounter +C2878217|T037|AB|T42.6X6D|ICD10CM|Underdosing of antiepileptic and sed-hypntc drugs, subs|Underdosing of antiepileptic and sed-hypntc drugs, subs +C2878217|T037|PT|T42.6X6D|ICD10CM|Underdosing of other antiepileptic and sedative-hypnotic drugs, subsequent encounter|Underdosing of other antiepileptic and sedative-hypnotic drugs, subsequent encounter +C2878218|T037|AB|T42.6X6S|ICD10CM|Underdosing of antiepileptic and sed-hypntc drugs, sequela|Underdosing of antiepileptic and sed-hypntc drugs, sequela +C2878218|T037|PT|T42.6X6S|ICD10CM|Underdosing of other antiepileptic and sedative-hypnotic drugs, sequela|Underdosing of other antiepileptic and sedative-hypnotic drugs, sequela +C0496977|T037|PS|T42.7|ICD10|Antiepileptic and sedative-hypnotic drugs, unspecified|Antiepileptic and sedative-hypnotic drugs, unspecified +C0496977|T037|PX|T42.7|ICD10|Poisoning by antiepileptic and sedative-hypnotic drugs, unspecified|Poisoning by antiepileptic and sedative-hypnotic drugs, unspecified +C2878219|T037|AB|T42.7|ICD10CM|Unsp antiepileptic and sedative-hypnotic drugs|Unsp antiepileptic and sedative-hypnotic drugs +C2878220|T037|ET|T42.71|ICD10CM|Poisoning by antiepileptic and sedative-hypnotic drugs NOS|Poisoning by antiepileptic and sedative-hypnotic drugs NOS +C2878221|T037|AB|T42.71|ICD10CM|Poisoning by unsp antieplptc and sed-hypntc drugs, acc|Poisoning by unsp antieplptc and sed-hypntc drugs, acc +C2878221|T037|HT|T42.71|ICD10CM|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, accidental (unintentional)|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, accidental (unintentional) +C2878222|T037|AB|T42.71XA|ICD10CM|Poisn by unsp antieplptc and sed-hypntc drugs, acc, init|Poisn by unsp antieplptc and sed-hypntc drugs, acc, init +C2878223|T037|AB|T42.71XD|ICD10CM|Poisn by unsp antieplptc and sed-hypntc drugs, acc, subs|Poisn by unsp antieplptc and sed-hypntc drugs, acc, subs +C2878224|T037|AB|T42.71XS|ICD10CM|Poisn by unsp antieplptc and sed-hypntc drugs, acc, sequela|Poisn by unsp antieplptc and sed-hypntc drugs, acc, sequela +C2878225|T037|AB|T42.72|ICD10CM|Poisoning by unsp antieplptc and sed-hypntc drugs, self-harm|Poisoning by unsp antieplptc and sed-hypntc drugs, self-harm +C2878225|T037|HT|T42.72|ICD10CM|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, intentional self-harm|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, intentional self-harm +C2878226|T037|AB|T42.72XA|ICD10CM|Poisn by unsp antieplptc and sed-hypntc drugs, slf-hrm, init|Poisn by unsp antieplptc and sed-hypntc drugs, slf-hrm, init +C2878227|T037|AB|T42.72XD|ICD10CM|Poisn by unsp antieplptc and sed-hypntc drugs, slf-hrm, subs|Poisn by unsp antieplptc and sed-hypntc drugs, slf-hrm, subs +C2878228|T037|AB|T42.72XS|ICD10CM|Poisn by unsp antieplptc and sed-hypntc drugs, slf-hrm, sqla|Poisn by unsp antieplptc and sed-hypntc drugs, slf-hrm, sqla +C2878228|T037|PT|T42.72XS|ICD10CM|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, intentional self-harm, sequela|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, intentional self-harm, sequela +C2878229|T037|AB|T42.73|ICD10CM|Poisoning by unsp antieplptc and sed-hypntc drugs, assault|Poisoning by unsp antieplptc and sed-hypntc drugs, assault +C2878229|T037|HT|T42.73|ICD10CM|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault +C2878230|T037|AB|T42.73XA|ICD10CM|Poisn by unsp antieplptc and sed-hypntc drugs, assault, init|Poisn by unsp antieplptc and sed-hypntc drugs, assault, init +C2878230|T037|PT|T42.73XA|ICD10CM|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault, initial encounter|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault, initial encounter +C2878231|T037|AB|T42.73XD|ICD10CM|Poisn by unsp antieplptc and sed-hypntc drugs, assault, subs|Poisn by unsp antieplptc and sed-hypntc drugs, assault, subs +C2878231|T037|PT|T42.73XD|ICD10CM|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault, subsequent encounter|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault, subsequent encounter +C2878232|T037|AB|T42.73XS|ICD10CM|Poisn by unsp antieplptc and sed-hypntc drugs, asslt, sqla|Poisn by unsp antieplptc and sed-hypntc drugs, asslt, sqla +C2878232|T037|PT|T42.73XS|ICD10CM|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault, sequela|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault, sequela +C2878233|T037|AB|T42.74|ICD10CM|Poisoning by unsp antieplptc and sed-hypntc drugs, undet|Poisoning by unsp antieplptc and sed-hypntc drugs, undet +C2878233|T037|HT|T42.74|ICD10CM|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined +C2878234|T037|AB|T42.74XA|ICD10CM|Poisn by unsp antieplptc and sed-hypntc drugs, undet, init|Poisn by unsp antieplptc and sed-hypntc drugs, undet, init +C2878234|T037|PT|T42.74XA|ICD10CM|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined, initial encounter|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined, initial encounter +C2878235|T037|AB|T42.74XD|ICD10CM|Poisn by unsp antieplptc and sed-hypntc drugs, undet, subs|Poisn by unsp antieplptc and sed-hypntc drugs, undet, subs +C2878236|T037|AB|T42.74XS|ICD10CM|Poisn by unsp antieplptc and sed-hypntc drugs, undet, sqla|Poisn by unsp antieplptc and sed-hypntc drugs, undet, sqla +C2878236|T037|PT|T42.74XS|ICD10CM|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined, sequela|Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined, sequela +C2878237|T037|AB|T42.75|ICD10CM|Adverse effect of unsp antiepileptic and sed-hypntc drugs|Adverse effect of unsp antiepileptic and sed-hypntc drugs +C2878237|T037|HT|T42.75|ICD10CM|Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs|Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs +C2878238|T037|AB|T42.75XA|ICD10CM|Adverse effect of unsp antieplptc and sed-hypntc drugs, init|Adverse effect of unsp antieplptc and sed-hypntc drugs, init +C2878238|T037|PT|T42.75XA|ICD10CM|Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs, initial encounter|Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs, initial encounter +C2878239|T037|AB|T42.75XD|ICD10CM|Adverse effect of unsp antieplptc and sed-hypntc drugs, subs|Adverse effect of unsp antieplptc and sed-hypntc drugs, subs +C2878239|T037|PT|T42.75XD|ICD10CM|Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs, subsequent encounter|Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs, subsequent encounter +C2878240|T037|PT|T42.75XS|ICD10CM|Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs, sequela|Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs, sequela +C2878240|T037|AB|T42.75XS|ICD10CM|Advrs effect of unsp antieplptc and sed-hypntc drugs, sqla|Advrs effect of unsp antieplptc and sed-hypntc drugs, sqla +C2878241|T037|AB|T42.76|ICD10CM|Underdosing of unsp antiepileptic and sed-hypntc drugs|Underdosing of unsp antiepileptic and sed-hypntc drugs +C2878241|T037|HT|T42.76|ICD10CM|Underdosing of unspecified antiepileptic and sedative-hypnotic drugs|Underdosing of unspecified antiepileptic and sedative-hypnotic drugs +C2878242|T037|AB|T42.76XA|ICD10CM|Underdosing of unsp antiepileptic and sed-hypntc drugs, init|Underdosing of unsp antiepileptic and sed-hypntc drugs, init +C2878242|T037|PT|T42.76XA|ICD10CM|Underdosing of unspecified antiepileptic and sedative-hypnotic drugs, initial encounter|Underdosing of unspecified antiepileptic and sedative-hypnotic drugs, initial encounter +C2878243|T037|AB|T42.76XD|ICD10CM|Underdosing of unsp antiepileptic and sed-hypntc drugs, subs|Underdosing of unsp antiepileptic and sed-hypntc drugs, subs +C2878243|T037|PT|T42.76XD|ICD10CM|Underdosing of unspecified antiepileptic and sedative-hypnotic drugs, subsequent encounter|Underdosing of unspecified antiepileptic and sedative-hypnotic drugs, subsequent encounter +C2878244|T037|AB|T42.76XS|ICD10CM|Underdosing of unsp antieplptc and sed-hypntc drugs, sequela|Underdosing of unsp antieplptc and sed-hypntc drugs, sequela +C2878244|T037|PT|T42.76XS|ICD10CM|Underdosing of unspecified antiepileptic and sedative-hypnotic drugs, sequela|Underdosing of unspecified antiepileptic and sedative-hypnotic drugs, sequela +C0478441|T037|PS|T42.8|ICD10|Antiparkinsonism drugs and other central muscle-tone depressants|Antiparkinsonism drugs and other central muscle-tone depressants +C2878246|T037|AB|T42.8|ICD10CM|Antiparkns drug/centr muscle-tone depressants|Antiparkns drug/centr muscle-tone depressants +C0478441|T037|PX|T42.8|ICD10|Poisoning by antiparkinsonism drugs and other central muscle-tone depressants|Poisoning by antiparkinsonism drugs and other central muscle-tone depressants +C2878245|T037|ET|T42.8|ICD10CM|Poisoning by, adverse effect of and underdosing of amantadine|Poisoning by, adverse effect of and underdosing of amantadine +C2878246|T037|AB|T42.8X|ICD10CM|Antiparkns drug/centr muscle-tone depressants|Antiparkns drug/centr muscle-tone depressants +C0478441|T037|ET|T42.8X1|ICD10CM|Poisoning by antiparkinsonism drugs and other central muscle-tone depressants NOS|Poisoning by antiparkinsonism drugs and other central muscle-tone depressants NOS +C2878247|T037|AB|T42.8X1|ICD10CM|Poisoning by antiparkns drug/centr musc-tone depr, acc|Poisoning by antiparkns drug/centr musc-tone depr, acc +C2878248|T037|AB|T42.8X1A|ICD10CM|Poisn by antiparkns drug/centr musc-tone depr, acc, init|Poisn by antiparkns drug/centr musc-tone depr, acc, init +C2878249|T037|AB|T42.8X1D|ICD10CM|Poisn by antiparkns drug/centr musc-tone depr, acc, subs|Poisn by antiparkns drug/centr musc-tone depr, acc, subs +C2878250|T037|AB|T42.8X1S|ICD10CM|Poisn by antiparkns drug/centr musc-tone depr, acc, sequela|Poisn by antiparkns drug/centr musc-tone depr, acc, sequela +C2878251|T037|HT|T42.8X2|ICD10CM|Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, intentional self-harm|Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, intentional self-harm +C2878251|T037|AB|T42.8X2|ICD10CM|Poisoning by antiparkns drug/centr musc-tone depr, self-harm|Poisoning by antiparkns drug/centr musc-tone depr, self-harm +C2878252|T037|AB|T42.8X2A|ICD10CM|Poisn by antiparkns drug/centr musc-tone depr, slf-hrm, init|Poisn by antiparkns drug/centr musc-tone depr, slf-hrm, init +C2878253|T037|AB|T42.8X2D|ICD10CM|Poisn by antiparkns drug/centr musc-tone depr, slf-hrm, subs|Poisn by antiparkns drug/centr musc-tone depr, slf-hrm, subs +C2878254|T037|AB|T42.8X2S|ICD10CM|Poisn by antiparkns drug/centr musc-tone depr, slf-hrm, sqla|Poisn by antiparkns drug/centr musc-tone depr, slf-hrm, sqla +C2878255|T037|HT|T42.8X3|ICD10CM|Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, assault|Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, assault +C2878255|T037|AB|T42.8X3|ICD10CM|Poisoning by antiparkns drug/centr muscle-tone depr, assault|Poisoning by antiparkns drug/centr muscle-tone depr, assault +C2878256|T037|AB|T42.8X3A|ICD10CM|Poisn by antiparkns drug/centr musc-tone depr, assault, init|Poisn by antiparkns drug/centr musc-tone depr, assault, init +C2878257|T037|AB|T42.8X3D|ICD10CM|Poisn by antiparkns drug/centr musc-tone depr, assault, subs|Poisn by antiparkns drug/centr musc-tone depr, assault, subs +C2878258|T037|AB|T42.8X3S|ICD10CM|Poisn by antiparkns drug/centr musc-tone depr, asslt, sqla|Poisn by antiparkns drug/centr musc-tone depr, asslt, sqla +C2878258|T037|PT|T42.8X3S|ICD10CM|Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, assault, sequela|Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, assault, sequela +C2878259|T037|HT|T42.8X4|ICD10CM|Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, undetermined|Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, undetermined +C2878259|T037|AB|T42.8X4|ICD10CM|Poisoning by antiparkns drug/centr muscle-tone depr, undet|Poisoning by antiparkns drug/centr muscle-tone depr, undet +C2878260|T037|AB|T42.8X4A|ICD10CM|Poisn by antiparkns drug/centr musc-tone depr, undet, init|Poisn by antiparkns drug/centr musc-tone depr, undet, init +C2878261|T037|AB|T42.8X4D|ICD10CM|Poisn by antiparkns drug/centr musc-tone depr, undet, subs|Poisn by antiparkns drug/centr musc-tone depr, undet, subs +C2878262|T037|AB|T42.8X4S|ICD10CM|Poisn by antiparkns drug/centr musc-tone depr, undet, sqla|Poisn by antiparkns drug/centr musc-tone depr, undet, sqla +C2878262|T037|PT|T42.8X4S|ICD10CM|Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, undetermined, sequela|Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, undetermined, sequela +C2878263|T037|HT|T42.8X5|ICD10CM|Adverse effect of antiparkinsonism drugs and other central muscle-tone depressants|Adverse effect of antiparkinsonism drugs and other central muscle-tone depressants +C2878263|T037|AB|T42.8X5|ICD10CM|Adverse effect of antiparkns drug/centr muscle-tone depr|Adverse effect of antiparkns drug/centr muscle-tone depr +C2878264|T037|AB|T42.8X5A|ICD10CM|Adverse effect of antiparkns drug/centr musc-tone depr, init|Adverse effect of antiparkns drug/centr musc-tone depr, init +C2878265|T037|AB|T42.8X5D|ICD10CM|Adverse effect of antiparkns drug/centr musc-tone depr, subs|Adverse effect of antiparkns drug/centr musc-tone depr, subs +C2878266|T037|PT|T42.8X5S|ICD10CM|Adverse effect of antiparkinsonism drugs and other central muscle-tone depressants, sequela|Adverse effect of antiparkinsonism drugs and other central muscle-tone depressants, sequela +C2878266|T037|AB|T42.8X5S|ICD10CM|Advrs effect of antiparkns drug/centr musc-tone depr, sqla|Advrs effect of antiparkns drug/centr musc-tone depr, sqla +C2878267|T037|HT|T42.8X6|ICD10CM|Underdosing of antiparkinsonism drugs and other central muscle-tone depressants|Underdosing of antiparkinsonism drugs and other central muscle-tone depressants +C2878267|T037|AB|T42.8X6|ICD10CM|Underdosing of antiparkns drug/centr muscle-tone depressants|Underdosing of antiparkns drug/centr muscle-tone depressants +C2878268|T037|PT|T42.8X6A|ICD10CM|Underdosing of antiparkinsonism drugs and other central muscle-tone depressants, initial encounter|Underdosing of antiparkinsonism drugs and other central muscle-tone depressants, initial encounter +C2878268|T037|AB|T42.8X6A|ICD10CM|Underdosing of antiparkns drug/centr muscle-tone depr, init|Underdosing of antiparkns drug/centr muscle-tone depr, init +C2878269|T037|AB|T42.8X6D|ICD10CM|Underdosing of antiparkns drug/centr muscle-tone depr, subs|Underdosing of antiparkns drug/centr muscle-tone depr, subs +C2878270|T037|PT|T42.8X6S|ICD10CM|Underdosing of antiparkinsonism drugs and other central muscle-tone depressants, sequela|Underdosing of antiparkinsonism drugs and other central muscle-tone depressants, sequela +C2878270|T037|AB|T42.8X6S|ICD10CM|Underdosing of antiparkns drug/centr musc-tone depr, sequela|Underdosing of antiparkns drug/centr musc-tone depr, sequela +C0496096|T037|HT|T43|ICD10|Poisoning by psychotropic drugs, not elsewhere classified|Poisoning by psychotropic drugs, not elsewhere classified +C2878271|T037|HT|T43|ICD10CM|Poisoning by, adverse effect of and underdosing of psychotropic drugs, not elsewhere classified|Poisoning by, adverse effect of and underdosing of psychotropic drugs, not elsewhere classified +C2878271|T037|AB|T43|ICD10CM|Psychotropic drugs, not elsewhere classified|Psychotropic drugs, not elsewhere classified +C0496978|T037|PX|T43.0|ICD10|Poisoning by tricyclic and tetracyclic antidepressants|Poisoning by tricyclic and tetracyclic antidepressants +C2878272|T037|HT|T43.0|ICD10CM|Poisoning by, adverse effect of and underdosing of tricyclic and tetracyclic antidepressants|Poisoning by, adverse effect of and underdosing of tricyclic and tetracyclic antidepressants +C2878272|T037|AB|T43.0|ICD10CM|Tricyclic and tetracyclic antidepressants|Tricyclic and tetracyclic antidepressants +C0496978|T037|PS|T43.0|ICD10|Tricyclic and tetracyclic antidepressants|Tricyclic and tetracyclic antidepressants +C2878273|T037|HT|T43.01|ICD10CM|Poisoning by, adverse effect of and underdosing of tricyclic antidepressants|Poisoning by, adverse effect of and underdosing of tricyclic antidepressants +C2878273|T037|AB|T43.01|ICD10CM|Tricyclic antidepressants|Tricyclic antidepressants +C0496978|T037|ET|T43.011|ICD10CM|Poisoning by tricyclic antidepressants NOS|Poisoning by tricyclic antidepressants NOS +C0568233|T037|AB|T43.011|ICD10CM|Poisoning by tricyclic antidepressants, accidental|Poisoning by tricyclic antidepressants, accidental +C0568233|T037|HT|T43.011|ICD10CM|Poisoning by tricyclic antidepressants, accidental (unintentional)|Poisoning by tricyclic antidepressants, accidental (unintentional) +C2878275|T037|PT|T43.011A|ICD10CM|Poisoning by tricyclic antidepressants, accidental (unintentional), initial encounter|Poisoning by tricyclic antidepressants, accidental (unintentional), initial encounter +C2878275|T037|AB|T43.011A|ICD10CM|Poisoning by tricyclic antidepressants, accidental, init|Poisoning by tricyclic antidepressants, accidental, init +C2878276|T037|PT|T43.011D|ICD10CM|Poisoning by tricyclic antidepressants, accidental (unintentional), subsequent encounter|Poisoning by tricyclic antidepressants, accidental (unintentional), subsequent encounter +C2878276|T037|AB|T43.011D|ICD10CM|Poisoning by tricyclic antidepressants, accidental, subs|Poisoning by tricyclic antidepressants, accidental, subs +C2878277|T037|PT|T43.011S|ICD10CM|Poisoning by tricyclic antidepressants, accidental (unintentional), sequela|Poisoning by tricyclic antidepressants, accidental (unintentional), sequela +C2878277|T037|AB|T43.011S|ICD10CM|Poisoning by tricyclic antidepressants, accidental, sequela|Poisoning by tricyclic antidepressants, accidental, sequela +C2878278|T037|HT|T43.012|ICD10CM|Poisoning by tricyclic antidepressants, intentional self-harm|Poisoning by tricyclic antidepressants, intentional self-harm +C2878278|T037|AB|T43.012|ICD10CM|Poisoning by tricyclic antidepressants, self-harm|Poisoning by tricyclic antidepressants, self-harm +C2878279|T037|PT|T43.012A|ICD10CM|Poisoning by tricyclic antidepressants, intentional self-harm, initial encounter|Poisoning by tricyclic antidepressants, intentional self-harm, initial encounter +C2878279|T037|AB|T43.012A|ICD10CM|Poisoning by tricyclic antidepressants, self-harm, init|Poisoning by tricyclic antidepressants, self-harm, init +C2878280|T037|PT|T43.012D|ICD10CM|Poisoning by tricyclic antidepressants, intentional self-harm, subsequent encounter|Poisoning by tricyclic antidepressants, intentional self-harm, subsequent encounter +C2878280|T037|AB|T43.012D|ICD10CM|Poisoning by tricyclic antidepressants, self-harm, subs|Poisoning by tricyclic antidepressants, self-harm, subs +C2878281|T037|PT|T43.012S|ICD10CM|Poisoning by tricyclic antidepressants, intentional self-harm, sequela|Poisoning by tricyclic antidepressants, intentional self-harm, sequela +C2878281|T037|AB|T43.012S|ICD10CM|Poisoning by tricyclic antidepressants, self-harm, sequela|Poisoning by tricyclic antidepressants, self-harm, sequela +C2878282|T037|AB|T43.013|ICD10CM|Poisoning by tricyclic antidepressants, assault|Poisoning by tricyclic antidepressants, assault +C2878282|T037|HT|T43.013|ICD10CM|Poisoning by tricyclic antidepressants, assault|Poisoning by tricyclic antidepressants, assault +C2878283|T037|AB|T43.013A|ICD10CM|Poisoning by tricyclic antidepressants, assault, init encntr|Poisoning by tricyclic antidepressants, assault, init encntr +C2878283|T037|PT|T43.013A|ICD10CM|Poisoning by tricyclic antidepressants, assault, initial encounter|Poisoning by tricyclic antidepressants, assault, initial encounter +C2878284|T037|AB|T43.013D|ICD10CM|Poisoning by tricyclic antidepressants, assault, subs encntr|Poisoning by tricyclic antidepressants, assault, subs encntr +C2878284|T037|PT|T43.013D|ICD10CM|Poisoning by tricyclic antidepressants, assault, subsequent encounter|Poisoning by tricyclic antidepressants, assault, subsequent encounter +C2878285|T037|AB|T43.013S|ICD10CM|Poisoning by tricyclic antidepressants, assault, sequela|Poisoning by tricyclic antidepressants, assault, sequela +C2878285|T037|PT|T43.013S|ICD10CM|Poisoning by tricyclic antidepressants, assault, sequela|Poisoning by tricyclic antidepressants, assault, sequela +C2878286|T037|AB|T43.014|ICD10CM|Poisoning by tricyclic antidepressants, undetermined|Poisoning by tricyclic antidepressants, undetermined +C2878286|T037|HT|T43.014|ICD10CM|Poisoning by tricyclic antidepressants, undetermined|Poisoning by tricyclic antidepressants, undetermined +C2878287|T037|AB|T43.014A|ICD10CM|Poisoning by tricyclic antidepressants, undetermined, init|Poisoning by tricyclic antidepressants, undetermined, init +C2878287|T037|PT|T43.014A|ICD10CM|Poisoning by tricyclic antidepressants, undetermined, initial encounter|Poisoning by tricyclic antidepressants, undetermined, initial encounter +C2878288|T037|AB|T43.014D|ICD10CM|Poisoning by tricyclic antidepressants, undetermined, subs|Poisoning by tricyclic antidepressants, undetermined, subs +C2878288|T037|PT|T43.014D|ICD10CM|Poisoning by tricyclic antidepressants, undetermined, subsequent encounter|Poisoning by tricyclic antidepressants, undetermined, subsequent encounter +C2878289|T037|AB|T43.014S|ICD10CM|Poisoning by tricyclic antidepress, undetermined, sequela|Poisoning by tricyclic antidepress, undetermined, sequela +C2878289|T037|PT|T43.014S|ICD10CM|Poisoning by tricyclic antidepressants, undetermined, sequela|Poisoning by tricyclic antidepressants, undetermined, sequela +C0569546|T046|AB|T43.015|ICD10CM|Adverse effect of tricyclic antidepressants|Adverse effect of tricyclic antidepressants +C0569546|T046|HT|T43.015|ICD10CM|Adverse effect of tricyclic antidepressants|Adverse effect of tricyclic antidepressants +C2878290|T037|AB|T43.015A|ICD10CM|Adverse effect of tricyclic antidepressants, init encntr|Adverse effect of tricyclic antidepressants, init encntr +C2878290|T037|PT|T43.015A|ICD10CM|Adverse effect of tricyclic antidepressants, initial encounter|Adverse effect of tricyclic antidepressants, initial encounter +C2878291|T037|AB|T43.015D|ICD10CM|Adverse effect of tricyclic antidepressants, subs encntr|Adverse effect of tricyclic antidepressants, subs encntr +C2878291|T037|PT|T43.015D|ICD10CM|Adverse effect of tricyclic antidepressants, subsequent encounter|Adverse effect of tricyclic antidepressants, subsequent encounter +C2878292|T037|AB|T43.015S|ICD10CM|Adverse effect of tricyclic antidepressants, sequela|Adverse effect of tricyclic antidepressants, sequela +C2878292|T037|PT|T43.015S|ICD10CM|Adverse effect of tricyclic antidepressants, sequela|Adverse effect of tricyclic antidepressants, sequela +C2878293|T033|AB|T43.016|ICD10CM|Underdosing of tricyclic antidepressants|Underdosing of tricyclic antidepressants +C2878293|T033|HT|T43.016|ICD10CM|Underdosing of tricyclic antidepressants|Underdosing of tricyclic antidepressants +C2878294|T037|AB|T43.016A|ICD10CM|Underdosing of tricyclic antidepressants, initial encounter|Underdosing of tricyclic antidepressants, initial encounter +C2878294|T037|PT|T43.016A|ICD10CM|Underdosing of tricyclic antidepressants, initial encounter|Underdosing of tricyclic antidepressants, initial encounter +C2878295|T037|AB|T43.016D|ICD10CM|Underdosing of tricyclic antidepressants, subs encntr|Underdosing of tricyclic antidepressants, subs encntr +C2878295|T037|PT|T43.016D|ICD10CM|Underdosing of tricyclic antidepressants, subsequent encounter|Underdosing of tricyclic antidepressants, subsequent encounter +C2878296|T037|AB|T43.016S|ICD10CM|Underdosing of tricyclic antidepressants, sequela|Underdosing of tricyclic antidepressants, sequela +C2878296|T037|PT|T43.016S|ICD10CM|Underdosing of tricyclic antidepressants, sequela|Underdosing of tricyclic antidepressants, sequela +C2878297|T037|HT|T43.02|ICD10CM|Poisoning by, adverse effect of and underdosing of tetracyclic antidepressants|Poisoning by, adverse effect of and underdosing of tetracyclic antidepressants +C2878297|T037|AB|T43.02|ICD10CM|Tetracyclic antidepressants|Tetracyclic antidepressants +C2712377|T037|ET|T43.021|ICD10CM|Poisoning by tetracyclic antidepressants NOS|Poisoning by tetracyclic antidepressants NOS +C2728285|T037|AB|T43.021|ICD10CM|Poisoning by tetracyclic antidepressants, accidental|Poisoning by tetracyclic antidepressants, accidental +C2728285|T037|HT|T43.021|ICD10CM|Poisoning by tetracyclic antidepressants, accidental (unintentional)|Poisoning by tetracyclic antidepressants, accidental (unintentional) +C2878299|T037|PT|T43.021A|ICD10CM|Poisoning by tetracyclic antidepressants, accidental (unintentional), initial encounter|Poisoning by tetracyclic antidepressants, accidental (unintentional), initial encounter +C2878299|T037|AB|T43.021A|ICD10CM|Poisoning by tetracyclic antidepressants, accidental, init|Poisoning by tetracyclic antidepressants, accidental, init +C2878300|T037|PT|T43.021D|ICD10CM|Poisoning by tetracyclic antidepressants, accidental (unintentional), subsequent encounter|Poisoning by tetracyclic antidepressants, accidental (unintentional), subsequent encounter +C2878300|T037|AB|T43.021D|ICD10CM|Poisoning by tetracyclic antidepressants, accidental, subs|Poisoning by tetracyclic antidepressants, accidental, subs +C2878301|T037|AB|T43.021S|ICD10CM|Poisoning by tetracyclic antidepress, accidental, sequela|Poisoning by tetracyclic antidepress, accidental, sequela +C2878301|T037|PT|T43.021S|ICD10CM|Poisoning by tetracyclic antidepressants, accidental (unintentional), sequela|Poisoning by tetracyclic antidepressants, accidental (unintentional), sequela +C2878302|T037|HT|T43.022|ICD10CM|Poisoning by tetracyclic antidepressants, intentional self-harm|Poisoning by tetracyclic antidepressants, intentional self-harm +C2878302|T037|AB|T43.022|ICD10CM|Poisoning by tetracyclic antidepressants, self-harm|Poisoning by tetracyclic antidepressants, self-harm +C2878303|T037|PT|T43.022A|ICD10CM|Poisoning by tetracyclic antidepressants, intentional self-harm, initial encounter|Poisoning by tetracyclic antidepressants, intentional self-harm, initial encounter +C2878303|T037|AB|T43.022A|ICD10CM|Poisoning by tetracyclic antidepressants, self-harm, init|Poisoning by tetracyclic antidepressants, self-harm, init +C2878304|T037|PT|T43.022D|ICD10CM|Poisoning by tetracyclic antidepressants, intentional self-harm, subsequent encounter|Poisoning by tetracyclic antidepressants, intentional self-harm, subsequent encounter +C2878304|T037|AB|T43.022D|ICD10CM|Poisoning by tetracyclic antidepressants, self-harm, subs|Poisoning by tetracyclic antidepressants, self-harm, subs +C2878305|T037|PT|T43.022S|ICD10CM|Poisoning by tetracyclic antidepressants, intentional self-harm, sequela|Poisoning by tetracyclic antidepressants, intentional self-harm, sequela +C2878305|T037|AB|T43.022S|ICD10CM|Poisoning by tetracyclic antidepressants, self-harm, sequela|Poisoning by tetracyclic antidepressants, self-harm, sequela +C2878306|T037|AB|T43.023|ICD10CM|Poisoning by tetracyclic antidepressants, assault|Poisoning by tetracyclic antidepressants, assault +C2878306|T037|HT|T43.023|ICD10CM|Poisoning by tetracyclic antidepressants, assault|Poisoning by tetracyclic antidepressants, assault +C2878307|T037|AB|T43.023A|ICD10CM|Poisoning by tetracyclic antidepressants, assault, init|Poisoning by tetracyclic antidepressants, assault, init +C2878307|T037|PT|T43.023A|ICD10CM|Poisoning by tetracyclic antidepressants, assault, initial encounter|Poisoning by tetracyclic antidepressants, assault, initial encounter +C2878308|T037|AB|T43.023D|ICD10CM|Poisoning by tetracyclic antidepressants, assault, subs|Poisoning by tetracyclic antidepressants, assault, subs +C2878308|T037|PT|T43.023D|ICD10CM|Poisoning by tetracyclic antidepressants, assault, subsequent encounter|Poisoning by tetracyclic antidepressants, assault, subsequent encounter +C2878309|T037|AB|T43.023S|ICD10CM|Poisoning by tetracyclic antidepressants, assault, sequela|Poisoning by tetracyclic antidepressants, assault, sequela +C2878309|T037|PT|T43.023S|ICD10CM|Poisoning by tetracyclic antidepressants, assault, sequela|Poisoning by tetracyclic antidepressants, assault, sequela +C2878310|T037|AB|T43.024|ICD10CM|Poisoning by tetracyclic antidepressants, undetermined|Poisoning by tetracyclic antidepressants, undetermined +C2878310|T037|HT|T43.024|ICD10CM|Poisoning by tetracyclic antidepressants, undetermined|Poisoning by tetracyclic antidepressants, undetermined +C2878311|T037|AB|T43.024A|ICD10CM|Poisoning by tetracyclic antidepressants, undetermined, init|Poisoning by tetracyclic antidepressants, undetermined, init +C2878311|T037|PT|T43.024A|ICD10CM|Poisoning by tetracyclic antidepressants, undetermined, initial encounter|Poisoning by tetracyclic antidepressants, undetermined, initial encounter +C2878312|T037|AB|T43.024D|ICD10CM|Poisoning by tetracyclic antidepressants, undetermined, subs|Poisoning by tetracyclic antidepressants, undetermined, subs +C2878312|T037|PT|T43.024D|ICD10CM|Poisoning by tetracyclic antidepressants, undetermined, subsequent encounter|Poisoning by tetracyclic antidepressants, undetermined, subsequent encounter +C2878313|T037|AB|T43.024S|ICD10CM|Poisoning by tetracyclic antidepress, undetermined, sequela|Poisoning by tetracyclic antidepress, undetermined, sequela +C2878313|T037|PT|T43.024S|ICD10CM|Poisoning by tetracyclic antidepressants, undetermined, sequela|Poisoning by tetracyclic antidepressants, undetermined, sequela +C3161905|T037|AB|T43.025|ICD10CM|Adverse effect of tetracyclic antidepressants|Adverse effect of tetracyclic antidepressants +C3161905|T037|HT|T43.025|ICD10CM|Adverse effect of tetracyclic antidepressants|Adverse effect of tetracyclic antidepressants +C2878315|T037|AB|T43.025A|ICD10CM|Adverse effect of tetracyclic antidepressants, init encntr|Adverse effect of tetracyclic antidepressants, init encntr +C2878315|T037|PT|T43.025A|ICD10CM|Adverse effect of tetracyclic antidepressants, initial encounter|Adverse effect of tetracyclic antidepressants, initial encounter +C2878316|T037|AB|T43.025D|ICD10CM|Adverse effect of tetracyclic antidepressants, subs encntr|Adverse effect of tetracyclic antidepressants, subs encntr +C2878316|T037|PT|T43.025D|ICD10CM|Adverse effect of tetracyclic antidepressants, subsequent encounter|Adverse effect of tetracyclic antidepressants, subsequent encounter +C2878317|T037|AB|T43.025S|ICD10CM|Adverse effect of tetracyclic antidepressants, sequela|Adverse effect of tetracyclic antidepressants, sequela +C2878317|T037|PT|T43.025S|ICD10CM|Adverse effect of tetracyclic antidepressants, sequela|Adverse effect of tetracyclic antidepressants, sequela +C2878318|T033|AB|T43.026|ICD10CM|Underdosing of tetracyclic antidepressants|Underdosing of tetracyclic antidepressants +C2878318|T033|HT|T43.026|ICD10CM|Underdosing of tetracyclic antidepressants|Underdosing of tetracyclic antidepressants +C2878319|T037|AB|T43.026A|ICD10CM|Underdosing of tetracyclic antidepressants, init encntr|Underdosing of tetracyclic antidepressants, init encntr +C2878319|T037|PT|T43.026A|ICD10CM|Underdosing of tetracyclic antidepressants, initial encounter|Underdosing of tetracyclic antidepressants, initial encounter +C2878320|T037|AB|T43.026D|ICD10CM|Underdosing of tetracyclic antidepressants, subs encntr|Underdosing of tetracyclic antidepressants, subs encntr +C2878320|T037|PT|T43.026D|ICD10CM|Underdosing of tetracyclic antidepressants, subsequent encounter|Underdosing of tetracyclic antidepressants, subsequent encounter +C2878321|T037|AB|T43.026S|ICD10CM|Underdosing of tetracyclic antidepressants, sequela|Underdosing of tetracyclic antidepressants, sequela +C2878321|T037|PT|T43.026S|ICD10CM|Underdosing of tetracyclic antidepressants, sequela|Underdosing of tetracyclic antidepressants, sequela +C2878322|T037|AB|T43.1|ICD10CM|Monoamine-oxidase-inhibitor antidepressants|Monoamine-oxidase-inhibitor antidepressants +C0274669|T037|PS|T43.1|ICD10|Monoamine-oxidase-inhibitor antidepressants|Monoamine-oxidase-inhibitor antidepressants +C0274669|T037|PX|T43.1|ICD10|Poisoning by monoamine-oxidase-inhibitor antidepressants|Poisoning by monoamine-oxidase-inhibitor antidepressants +C2878322|T037|HT|T43.1|ICD10CM|Poisoning by, adverse effect of and underdosing of monoamine-oxidase-inhibitor antidepressants|Poisoning by, adverse effect of and underdosing of monoamine-oxidase-inhibitor antidepressants +C2878322|T037|AB|T43.1X|ICD10CM|Monoamine-oxidase-inhibitor antidepressants|Monoamine-oxidase-inhibitor antidepressants +C2878322|T037|HT|T43.1X|ICD10CM|Poisoning by, adverse effect of and underdosing of monoamine-oxidase-inhibitor antidepressants|Poisoning by, adverse effect of and underdosing of monoamine-oxidase-inhibitor antidepressants +C2878323|T037|AB|T43.1X1|ICD10CM|Poisoning by MAO inhib antidepressants, accidental|Poisoning by MAO inhib antidepressants, accidental +C0274669|T037|ET|T43.1X1|ICD10CM|Poisoning by monoamine-oxidase-inhibitor antidepressants NOS|Poisoning by monoamine-oxidase-inhibitor antidepressants NOS +C2878323|T037|HT|T43.1X1|ICD10CM|Poisoning by monoamine-oxidase-inhibitor antidepressants, accidental (unintentional)|Poisoning by monoamine-oxidase-inhibitor antidepressants, accidental (unintentional) +C2878324|T037|AB|T43.1X1A|ICD10CM|Poisoning by MAO inhib antidepressants, accidental, init|Poisoning by MAO inhib antidepressants, accidental, init +C2878325|T037|AB|T43.1X1D|ICD10CM|Poisoning by MAO inhib antidepressants, accidental, subs|Poisoning by MAO inhib antidepressants, accidental, subs +C2878326|T037|AB|T43.1X1S|ICD10CM|Poisoning by MAO inhib antidepressants, accidental, sequela|Poisoning by MAO inhib antidepressants, accidental, sequela +C2878326|T037|PT|T43.1X1S|ICD10CM|Poisoning by monoamine-oxidase-inhibitor antidepressants, accidental (unintentional), sequela|Poisoning by monoamine-oxidase-inhibitor antidepressants, accidental (unintentional), sequela +C2878327|T037|AB|T43.1X2|ICD10CM|Poisoning by MAO inhib antidepressants, self-harm|Poisoning by MAO inhib antidepressants, self-harm +C2878327|T037|HT|T43.1X2|ICD10CM|Poisoning by monoamine-oxidase-inhibitor antidepressants, intentional self-harm|Poisoning by monoamine-oxidase-inhibitor antidepressants, intentional self-harm +C2878328|T037|AB|T43.1X2A|ICD10CM|Poisoning by MAO inhib antidepressants, self-harm, init|Poisoning by MAO inhib antidepressants, self-harm, init +C2878328|T037|PT|T43.1X2A|ICD10CM|Poisoning by monoamine-oxidase-inhibitor antidepressants, intentional self-harm, initial encounter|Poisoning by monoamine-oxidase-inhibitor antidepressants, intentional self-harm, initial encounter +C2878329|T037|AB|T43.1X2D|ICD10CM|Poisoning by MAO inhib antidepressants, self-harm, subs|Poisoning by MAO inhib antidepressants, self-harm, subs +C2878330|T037|AB|T43.1X2S|ICD10CM|Poisoning by MAO inhib antidepressants, self-harm, sequela|Poisoning by MAO inhib antidepressants, self-harm, sequela +C2878330|T037|PT|T43.1X2S|ICD10CM|Poisoning by monoamine-oxidase-inhibitor antidepressants, intentional self-harm, sequela|Poisoning by monoamine-oxidase-inhibitor antidepressants, intentional self-harm, sequela +C2878331|T037|AB|T43.1X3|ICD10CM|Poisoning by MAO inhib antidepressants, assault|Poisoning by MAO inhib antidepressants, assault +C2878331|T037|HT|T43.1X3|ICD10CM|Poisoning by monoamine-oxidase-inhibitor antidepressants, assault|Poisoning by monoamine-oxidase-inhibitor antidepressants, assault +C2878332|T037|AB|T43.1X3A|ICD10CM|Poisoning by MAO inhib antidepressants, assault, init|Poisoning by MAO inhib antidepressants, assault, init +C2878332|T037|PT|T43.1X3A|ICD10CM|Poisoning by monoamine-oxidase-inhibitor antidepressants, assault, initial encounter|Poisoning by monoamine-oxidase-inhibitor antidepressants, assault, initial encounter +C2878333|T037|AB|T43.1X3D|ICD10CM|Poisoning by MAO inhib antidepressants, assault, subs|Poisoning by MAO inhib antidepressants, assault, subs +C2878333|T037|PT|T43.1X3D|ICD10CM|Poisoning by monoamine-oxidase-inhibitor antidepressants, assault, subsequent encounter|Poisoning by monoamine-oxidase-inhibitor antidepressants, assault, subsequent encounter +C2878334|T037|AB|T43.1X3S|ICD10CM|Poisoning by MAO inhib antidepressants, assault, sequela|Poisoning by MAO inhib antidepressants, assault, sequela +C2878334|T037|PT|T43.1X3S|ICD10CM|Poisoning by monoamine-oxidase-inhibitor antidepressants, assault, sequela|Poisoning by monoamine-oxidase-inhibitor antidepressants, assault, sequela +C2878335|T037|AB|T43.1X4|ICD10CM|Poisoning by MAO inhib antidepressants, undetermined|Poisoning by MAO inhib antidepressants, undetermined +C2878335|T037|HT|T43.1X4|ICD10CM|Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined|Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined +C2878336|T037|AB|T43.1X4A|ICD10CM|Poisoning by MAO inhib antidepressants, undetermined, init|Poisoning by MAO inhib antidepressants, undetermined, init +C2878336|T037|PT|T43.1X4A|ICD10CM|Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined, initial encounter|Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined, initial encounter +C2878337|T037|AB|T43.1X4D|ICD10CM|Poisoning by MAO inhib antidepressants, undetermined, subs|Poisoning by MAO inhib antidepressants, undetermined, subs +C2878337|T037|PT|T43.1X4D|ICD10CM|Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined, subsequent encounter|Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined, subsequent encounter +C2878338|T037|AB|T43.1X4S|ICD10CM|Poisoning by MAO inhib antidepress, undetermined, sequela|Poisoning by MAO inhib antidepress, undetermined, sequela +C2878338|T037|PT|T43.1X4S|ICD10CM|Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined, sequela|Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined, sequela +C2878339|T037|AB|T43.1X5|ICD10CM|Adverse effect of MAO inhib antidepressants|Adverse effect of MAO inhib antidepressants +C2878339|T037|HT|T43.1X5|ICD10CM|Adverse effect of monoamine-oxidase-inhibitor antidepressants|Adverse effect of monoamine-oxidase-inhibitor antidepressants +C2878340|T037|AB|T43.1X5A|ICD10CM|Adverse effect of MAO inhib antidepressants, init|Adverse effect of MAO inhib antidepressants, init +C2878340|T037|PT|T43.1X5A|ICD10CM|Adverse effect of monoamine-oxidase-inhibitor antidepressants, initial encounter|Adverse effect of monoamine-oxidase-inhibitor antidepressants, initial encounter +C2878341|T037|AB|T43.1X5D|ICD10CM|Adverse effect of MAO inhib antidepressants, subs|Adverse effect of MAO inhib antidepressants, subs +C2878341|T037|PT|T43.1X5D|ICD10CM|Adverse effect of monoamine-oxidase-inhibitor antidepressants, subsequent encounter|Adverse effect of monoamine-oxidase-inhibitor antidepressants, subsequent encounter +C2878342|T037|AB|T43.1X5S|ICD10CM|Adverse effect of MAO inhib antidepressants, sequela|Adverse effect of MAO inhib antidepressants, sequela +C2878342|T037|PT|T43.1X5S|ICD10CM|Adverse effect of monoamine-oxidase-inhibitor antidepressants, sequela|Adverse effect of monoamine-oxidase-inhibitor antidepressants, sequela +C2878343|T037|AB|T43.1X6|ICD10CM|Underdosing of monoamine-oxidase-inhibitor antidepressants|Underdosing of monoamine-oxidase-inhibitor antidepressants +C2878343|T037|HT|T43.1X6|ICD10CM|Underdosing of monoamine-oxidase-inhibitor antidepressants|Underdosing of monoamine-oxidase-inhibitor antidepressants +C2878344|T037|AB|T43.1X6A|ICD10CM|Underdosing of MAO inhib antidepressants, init|Underdosing of MAO inhib antidepressants, init +C2878344|T037|PT|T43.1X6A|ICD10CM|Underdosing of monoamine-oxidase-inhibitor antidepressants, initial encounter|Underdosing of monoamine-oxidase-inhibitor antidepressants, initial encounter +C2878345|T037|AB|T43.1X6D|ICD10CM|Underdosing of MAO inhib antidepressants, subs|Underdosing of MAO inhib antidepressants, subs +C2878345|T037|PT|T43.1X6D|ICD10CM|Underdosing of monoamine-oxidase-inhibitor antidepressants, subsequent encounter|Underdosing of monoamine-oxidase-inhibitor antidepressants, subsequent encounter +C2878346|T037|AB|T43.1X6S|ICD10CM|Underdosing of MAO inhib antidepressants, sequela|Underdosing of MAO inhib antidepressants, sequela +C2878346|T037|PT|T43.1X6S|ICD10CM|Underdosing of monoamine-oxidase-inhibitor antidepressants, sequela|Underdosing of monoamine-oxidase-inhibitor antidepressants, sequela +C2878347|T037|AB|T43.2|ICD10CM|And unsp antidepressants|And unsp antidepressants +C0478442|T037|PS|T43.2|ICD10|Other and unspecified antidepressants|Other and unspecified antidepressants +C0478442|T037|PX|T43.2|ICD10|Poisoning by other and unspecified antidepressants|Poisoning by other and unspecified antidepressants +C2878347|T037|HT|T43.2|ICD10CM|Poisoning by, adverse effect of and underdosing of other and unspecified antidepressants|Poisoning by, adverse effect of and underdosing of other and unspecified antidepressants +C2878348|T037|HT|T43.20|ICD10CM|Poisoning by, adverse effect of and underdosing of unspecified antidepressants|Poisoning by, adverse effect of and underdosing of unspecified antidepressants +C2878348|T037|AB|T43.20|ICD10CM|Unsp antidepressants|Unsp antidepressants +C0161578|T037|ET|T43.201|ICD10CM|Poisoning by antidepressants NOS|Poisoning by antidepressants NOS +C2878349|T037|AB|T43.201|ICD10CM|Poisoning by unsp antidepressants, accidental|Poisoning by unsp antidepressants, accidental +C2878349|T037|HT|T43.201|ICD10CM|Poisoning by unspecified antidepressants, accidental (unintentional)|Poisoning by unspecified antidepressants, accidental (unintentional) +C2878350|T037|AB|T43.201A|ICD10CM|Poisoning by unsp antidepressants, accidental, init|Poisoning by unsp antidepressants, accidental, init +C2878350|T037|PT|T43.201A|ICD10CM|Poisoning by unspecified antidepressants, accidental (unintentional), initial encounter|Poisoning by unspecified antidepressants, accidental (unintentional), initial encounter +C2878351|T037|AB|T43.201D|ICD10CM|Poisoning by unsp antidepressants, accidental, subs|Poisoning by unsp antidepressants, accidental, subs +C2878351|T037|PT|T43.201D|ICD10CM|Poisoning by unspecified antidepressants, accidental (unintentional), subsequent encounter|Poisoning by unspecified antidepressants, accidental (unintentional), subsequent encounter +C2878352|T037|AB|T43.201S|ICD10CM|Poisoning by unsp antidepressants, accidental, sequela|Poisoning by unsp antidepressants, accidental, sequela +C2878352|T037|PT|T43.201S|ICD10CM|Poisoning by unspecified antidepressants, accidental (unintentional), sequela|Poisoning by unspecified antidepressants, accidental (unintentional), sequela +C2878353|T037|AB|T43.202|ICD10CM|Poisoning by unsp antidepressants, intentional self-harm|Poisoning by unsp antidepressants, intentional self-harm +C2878353|T037|HT|T43.202|ICD10CM|Poisoning by unspecified antidepressants, intentional self-harm|Poisoning by unspecified antidepressants, intentional self-harm +C2878354|T037|AB|T43.202A|ICD10CM|Poisoning by unsp antidepressants, self-harm, init|Poisoning by unsp antidepressants, self-harm, init +C2878354|T037|PT|T43.202A|ICD10CM|Poisoning by unspecified antidepressants, intentional self-harm, initial encounter|Poisoning by unspecified antidepressants, intentional self-harm, initial encounter +C2878355|T037|AB|T43.202D|ICD10CM|Poisoning by unsp antidepressants, self-harm, subs|Poisoning by unsp antidepressants, self-harm, subs +C2878355|T037|PT|T43.202D|ICD10CM|Poisoning by unspecified antidepressants, intentional self-harm, subsequent encounter|Poisoning by unspecified antidepressants, intentional self-harm, subsequent encounter +C2878356|T037|AB|T43.202S|ICD10CM|Poisoning by unsp antidepressants, self-harm, sequela|Poisoning by unsp antidepressants, self-harm, sequela +C2878356|T037|PT|T43.202S|ICD10CM|Poisoning by unspecified antidepressants, intentional self-harm, sequela|Poisoning by unspecified antidepressants, intentional self-harm, sequela +C2878357|T037|AB|T43.203|ICD10CM|Poisoning by unspecified antidepressants, assault|Poisoning by unspecified antidepressants, assault +C2878357|T037|HT|T43.203|ICD10CM|Poisoning by unspecified antidepressants, assault|Poisoning by unspecified antidepressants, assault +C2878358|T037|AB|T43.203A|ICD10CM|Poisoning by unsp antidepressants, assault, init encntr|Poisoning by unsp antidepressants, assault, init encntr +C2878358|T037|PT|T43.203A|ICD10CM|Poisoning by unspecified antidepressants, assault, initial encounter|Poisoning by unspecified antidepressants, assault, initial encounter +C2878359|T037|AB|T43.203D|ICD10CM|Poisoning by unsp antidepressants, assault, subs encntr|Poisoning by unsp antidepressants, assault, subs encntr +C2878359|T037|PT|T43.203D|ICD10CM|Poisoning by unspecified antidepressants, assault, subsequent encounter|Poisoning by unspecified antidepressants, assault, subsequent encounter +C2878360|T037|AB|T43.203S|ICD10CM|Poisoning by unspecified antidepressants, assault, sequela|Poisoning by unspecified antidepressants, assault, sequela +C2878360|T037|PT|T43.203S|ICD10CM|Poisoning by unspecified antidepressants, assault, sequela|Poisoning by unspecified antidepressants, assault, sequela +C2878361|T037|AB|T43.204|ICD10CM|Poisoning by unspecified antidepressants, undetermined|Poisoning by unspecified antidepressants, undetermined +C2878361|T037|HT|T43.204|ICD10CM|Poisoning by unspecified antidepressants, undetermined|Poisoning by unspecified antidepressants, undetermined +C2878362|T037|AB|T43.204A|ICD10CM|Poisoning by unsp antidepressants, undetermined, init encntr|Poisoning by unsp antidepressants, undetermined, init encntr +C2878362|T037|PT|T43.204A|ICD10CM|Poisoning by unspecified antidepressants, undetermined, initial encounter|Poisoning by unspecified antidepressants, undetermined, initial encounter +C2878363|T037|AB|T43.204D|ICD10CM|Poisoning by unsp antidepressants, undetermined, subs encntr|Poisoning by unsp antidepressants, undetermined, subs encntr +C2878363|T037|PT|T43.204D|ICD10CM|Poisoning by unspecified antidepressants, undetermined, subsequent encounter|Poisoning by unspecified antidepressants, undetermined, subsequent encounter +C2878364|T037|AB|T43.204S|ICD10CM|Poisoning by unsp antidepressants, undetermined, sequela|Poisoning by unsp antidepressants, undetermined, sequela +C2878364|T037|PT|T43.204S|ICD10CM|Poisoning by unspecified antidepressants, undetermined, sequela|Poisoning by unspecified antidepressants, undetermined, sequela +C2878365|T037|AB|T43.205|ICD10CM|Adverse effect of unspecified antidepressants|Adverse effect of unspecified antidepressants +C2878365|T037|HT|T43.205|ICD10CM|Adverse effect of unspecified antidepressants|Adverse effect of unspecified antidepressants +C4509470|T047|ET|T43.205|ICD10CM|Antidepressant discontinuation syndrome|Antidepressant discontinuation syndrome +C2878366|T037|AB|T43.205A|ICD10CM|Adverse effect of unspecified antidepressants, init encntr|Adverse effect of unspecified antidepressants, init encntr +C2878366|T037|PT|T43.205A|ICD10CM|Adverse effect of unspecified antidepressants, initial encounter|Adverse effect of unspecified antidepressants, initial encounter +C2878367|T037|AB|T43.205D|ICD10CM|Adverse effect of unspecified antidepressants, subs encntr|Adverse effect of unspecified antidepressants, subs encntr +C2878367|T037|PT|T43.205D|ICD10CM|Adverse effect of unspecified antidepressants, subsequent encounter|Adverse effect of unspecified antidepressants, subsequent encounter +C2878368|T037|AB|T43.205S|ICD10CM|Adverse effect of unspecified antidepressants, sequela|Adverse effect of unspecified antidepressants, sequela +C2878368|T037|PT|T43.205S|ICD10CM|Adverse effect of unspecified antidepressants, sequela|Adverse effect of unspecified antidepressants, sequela +C2878369|T037|AB|T43.206|ICD10CM|Underdosing of unspecified antidepressants|Underdosing of unspecified antidepressants +C2878369|T037|HT|T43.206|ICD10CM|Underdosing of unspecified antidepressants|Underdosing of unspecified antidepressants +C2878370|T037|AB|T43.206A|ICD10CM|Underdosing of unspecified antidepressants, init encntr|Underdosing of unspecified antidepressants, init encntr +C2878370|T037|PT|T43.206A|ICD10CM|Underdosing of unspecified antidepressants, initial encounter|Underdosing of unspecified antidepressants, initial encounter +C2878371|T037|AB|T43.206D|ICD10CM|Underdosing of unspecified antidepressants, subs encntr|Underdosing of unspecified antidepressants, subs encntr +C2878371|T037|PT|T43.206D|ICD10CM|Underdosing of unspecified antidepressants, subsequent encounter|Underdosing of unspecified antidepressants, subsequent encounter +C2878372|T037|AB|T43.206S|ICD10CM|Underdosing of unspecified antidepressants, sequela|Underdosing of unspecified antidepressants, sequela +C2878372|T037|PT|T43.206S|ICD10CM|Underdosing of unspecified antidepressants, sequela|Underdosing of unspecified antidepressants, sequela +C2878373|T037|ET|T43.21|ICD10CM|Poisoning by, adverse effect of and underdosing of SSNRI antidepressants|Poisoning by, adverse effect of and underdosing of SSNRI antidepressants +C2878374|T037|AB|T43.21|ICD10CM|Selective serotonin and norepinephrine reuptake inhibitors|Selective serotonin and norepinephrine reuptake inhibitors +C2878375|T037|AB|T43.211|ICD10CM|Poisoning by selective seroton/norepineph reup inhibtr, acc|Poisoning by selective seroton/norepineph reup inhibtr, acc +C2878375|T037|HT|T43.211|ICD10CM|Poisoning by selective serotonin and norepinephrine reuptake inhibitors, accidental (unintentional)|Poisoning by selective serotonin and norepinephrine reuptake inhibitors, accidental (unintentional) +C2878376|T037|AB|T43.211A|ICD10CM|Poisn by slctv seroton/norepineph reup inhibtr, acc, init|Poisn by slctv seroton/norepineph reup inhibtr, acc, init +C2878377|T037|AB|T43.211D|ICD10CM|Poisn by slctv seroton/norepineph reup inhibtr, acc, subs|Poisn by slctv seroton/norepineph reup inhibtr, acc, subs +C2878378|T037|AB|T43.211S|ICD10CM|Poisn by slctv seroton/norepineph reup inhibtr, acc, sqla|Poisn by slctv seroton/norepineph reup inhibtr, acc, sqla +C2878379|T037|AB|T43.212|ICD10CM|Poisn by slctv seroton/norepineph reup inhibtr, self-harm|Poisn by slctv seroton/norepineph reup inhibtr, self-harm +C2878379|T037|HT|T43.212|ICD10CM|Poisoning by selective serotonin and norepinephrine reuptake inhibitors, intentional self-harm|Poisoning by selective serotonin and norepinephrine reuptake inhibitors, intentional self-harm +C2878380|T037|AB|T43.212A|ICD10CM|Poisn by slctv seroton/norepineph reup inhibtr,slf-hrm, init|Poisn by slctv seroton/norepineph reup inhibtr,slf-hrm, init +C2878381|T037|AB|T43.212D|ICD10CM|Poisn by slctv seroton/norepineph reup inhibtr,slf-hrm, subs|Poisn by slctv seroton/norepineph reup inhibtr,slf-hrm, subs +C2878382|T037|AB|T43.212S|ICD10CM|Poisn by slctv seroton/norepineph reup inhibtr,slf-hrm, sqla|Poisn by slctv seroton/norepineph reup inhibtr,slf-hrm, sqla +C2878383|T037|AB|T43.213|ICD10CM|Poisn by selective seroton/norepineph reup inhibtr, assault|Poisn by selective seroton/norepineph reup inhibtr, assault +C2878383|T037|HT|T43.213|ICD10CM|Poisoning by selective serotonin and norepinephrine reuptake inhibitors, assault|Poisoning by selective serotonin and norepinephrine reuptake inhibitors, assault +C2878384|T037|AB|T43.213A|ICD10CM|Poisn by slctv seroton/norepineph reup inhibtr, asslt, init|Poisn by slctv seroton/norepineph reup inhibtr, asslt, init +C2878384|T037|PT|T43.213A|ICD10CM|Poisoning by selective serotonin and norepinephrine reuptake inhibitors, assault, initial encounter|Poisoning by selective serotonin and norepinephrine reuptake inhibitors, assault, initial encounter +C2878385|T037|AB|T43.213D|ICD10CM|Poisn by slctv seroton/norepineph reup inhibtr, asslt, subs|Poisn by slctv seroton/norepineph reup inhibtr, asslt, subs +C2878386|T037|AB|T43.213S|ICD10CM|Poisn by slctv seroton/norepineph reup inhibtr, asslt, sqla|Poisn by slctv seroton/norepineph reup inhibtr, asslt, sqla +C2878386|T037|PT|T43.213S|ICD10CM|Poisoning by selective serotonin and norepinephrine reuptake inhibitors, assault, sequela|Poisoning by selective serotonin and norepinephrine reuptake inhibitors, assault, sequela +C2878387|T037|AB|T43.214|ICD10CM|Poisn by selective seroton/norepineph reup inhibtr, undet|Poisn by selective seroton/norepineph reup inhibtr, undet +C2878387|T037|HT|T43.214|ICD10CM|Poisoning by selective serotonin and norepinephrine reuptake inhibitors, undetermined|Poisoning by selective serotonin and norepinephrine reuptake inhibitors, undetermined +C2878388|T037|AB|T43.214A|ICD10CM|Poisn by slctv seroton/norepineph reup inhibtr, undet, init|Poisn by slctv seroton/norepineph reup inhibtr, undet, init +C2878389|T037|AB|T43.214D|ICD10CM|Poisn by slctv seroton/norepineph reup inhibtr, undet, subs|Poisn by slctv seroton/norepineph reup inhibtr, undet, subs +C2878390|T037|AB|T43.214S|ICD10CM|Poisn by slctv seroton/norepineph reup inhibtr, undet, sqla|Poisn by slctv seroton/norepineph reup inhibtr, undet, sqla +C2878390|T037|PT|T43.214S|ICD10CM|Poisoning by selective serotonin and norepinephrine reuptake inhibitors, undetermined, sequela|Poisoning by selective serotonin and norepinephrine reuptake inhibitors, undetermined, sequela +C3161904|T037|AB|T43.215|ICD10CM|Adverse effect of selective seroton/norepineph reup inhibtr|Adverse effect of selective seroton/norepineph reup inhibtr +C3161904|T037|HT|T43.215|ICD10CM|Adverse effect of selective serotonin and norepinephrine reuptake inhibitors|Adverse effect of selective serotonin and norepinephrine reuptake inhibitors +C2878392|T037|PT|T43.215A|ICD10CM|Adverse effect of selective serotonin and norepinephrine reuptake inhibitors, initial encounter|Adverse effect of selective serotonin and norepinephrine reuptake inhibitors, initial encounter +C2878392|T037|AB|T43.215A|ICD10CM|Advrs effect of slctv seroton/norepineph reup inhibtr, init|Advrs effect of slctv seroton/norepineph reup inhibtr, init +C2878393|T037|PT|T43.215D|ICD10CM|Adverse effect of selective serotonin and norepinephrine reuptake inhibitors, subsequent encounter|Adverse effect of selective serotonin and norepinephrine reuptake inhibitors, subsequent encounter +C2878393|T037|AB|T43.215D|ICD10CM|Advrs effect of slctv seroton/norepineph reup inhibtr, subs|Advrs effect of slctv seroton/norepineph reup inhibtr, subs +C2878394|T037|PT|T43.215S|ICD10CM|Adverse effect of selective serotonin and norepinephrine reuptake inhibitors, sequela|Adverse effect of selective serotonin and norepinephrine reuptake inhibitors, sequela +C2878394|T037|AB|T43.215S|ICD10CM|Advrs effect of slctv seroton/norepineph reup inhibtr, sqla|Advrs effect of slctv seroton/norepineph reup inhibtr, sqla +C2878395|T033|AB|T43.216|ICD10CM|Underdosing of selective seroton/norepineph reup inhibitors|Underdosing of selective seroton/norepineph reup inhibitors +C2878395|T033|HT|T43.216|ICD10CM|Underdosing of selective serotonin and norepinephrine reuptake inhibitors|Underdosing of selective serotonin and norepinephrine reuptake inhibitors +C2878396|T037|PT|T43.216A|ICD10CM|Underdosing of selective serotonin and norepinephrine reuptake inhibitors, initial encounter|Underdosing of selective serotonin and norepinephrine reuptake inhibitors, initial encounter +C2878396|T037|AB|T43.216A|ICD10CM|Undrdose of selective seroton/norepineph reup inhibtr, init|Undrdose of selective seroton/norepineph reup inhibtr, init +C2878397|T037|PT|T43.216D|ICD10CM|Underdosing of selective serotonin and norepinephrine reuptake inhibitors, subsequent encounter|Underdosing of selective serotonin and norepinephrine reuptake inhibitors, subsequent encounter +C2878397|T037|AB|T43.216D|ICD10CM|Undrdose of selective seroton/norepineph reup inhibtr, subs|Undrdose of selective seroton/norepineph reup inhibtr, subs +C2878398|T037|PT|T43.216S|ICD10CM|Underdosing of selective serotonin and norepinephrine reuptake inhibitors, sequela|Underdosing of selective serotonin and norepinephrine reuptake inhibitors, sequela +C2878398|T037|AB|T43.216S|ICD10CM|Undrdose of slctv seroton/norepineph reup inhibtr, sequela|Undrdose of slctv seroton/norepineph reup inhibtr, sequela +C2878400|T037|HT|T43.22|ICD10CM|Poisoning by, adverse effect of and underdosing of selective serotonin reuptake inhibitors|Poisoning by, adverse effect of and underdosing of selective serotonin reuptake inhibitors +C2878399|T037|ET|T43.22|ICD10CM|Poisoning by, adverse effect of and underdosing of SSRI antidepressants|Poisoning by, adverse effect of and underdosing of SSRI antidepressants +C2878400|T037|AB|T43.22|ICD10CM|Selective serotonin reuptake inhibitors|Selective serotonin reuptake inhibitors +C2878401|T037|AB|T43.221|ICD10CM|Poisoning by selective serotonin reuptake inhibitors, acc|Poisoning by selective serotonin reuptake inhibitors, acc +C2878401|T037|HT|T43.221|ICD10CM|Poisoning by selective serotonin reuptake inhibitors, accidental (unintentional)|Poisoning by selective serotonin reuptake inhibitors, accidental (unintentional) +C2878402|T037|AB|T43.221A|ICD10CM|Poisn by selective serotonin reuptake inhibtr, acc, init|Poisn by selective serotonin reuptake inhibtr, acc, init +C2878402|T037|PT|T43.221A|ICD10CM|Poisoning by selective serotonin reuptake inhibitors, accidental (unintentional), initial encounter|Poisoning by selective serotonin reuptake inhibitors, accidental (unintentional), initial encounter +C2878403|T037|AB|T43.221D|ICD10CM|Poisn by selective serotonin reuptake inhibtr, acc, subs|Poisn by selective serotonin reuptake inhibtr, acc, subs +C2878404|T037|AB|T43.221S|ICD10CM|Poisn by selective serotonin reuptake inhibtr, acc, sequela|Poisn by selective serotonin reuptake inhibtr, acc, sequela +C2878404|T037|PT|T43.221S|ICD10CM|Poisoning by selective serotonin reuptake inhibitors, accidental (unintentional), sequela|Poisoning by selective serotonin reuptake inhibitors, accidental (unintentional), sequela +C2878405|T037|HT|T43.222|ICD10CM|Poisoning by selective serotonin reuptake inhibitors, intentional self-harm|Poisoning by selective serotonin reuptake inhibitors, intentional self-harm +C2878405|T037|AB|T43.222|ICD10CM|Poisoning by selective serotonin reuptake inhibtr, self-harm|Poisoning by selective serotonin reuptake inhibtr, self-harm +C2878406|T037|AB|T43.222A|ICD10CM|Poisn by slctv serotonin reuptake inhibtr, self-harm, init|Poisn by slctv serotonin reuptake inhibtr, self-harm, init +C2878406|T037|PT|T43.222A|ICD10CM|Poisoning by selective serotonin reuptake inhibitors, intentional self-harm, initial encounter|Poisoning by selective serotonin reuptake inhibitors, intentional self-harm, initial encounter +C2878407|T037|AB|T43.222D|ICD10CM|Poisn by slctv serotonin reuptake inhibtr, self-harm, subs|Poisn by slctv serotonin reuptake inhibtr, self-harm, subs +C2878407|T037|PT|T43.222D|ICD10CM|Poisoning by selective serotonin reuptake inhibitors, intentional self-harm, subsequent encounter|Poisoning by selective serotonin reuptake inhibitors, intentional self-harm, subsequent encounter +C2878408|T037|AB|T43.222S|ICD10CM|Poisn by slctv serotonin reuptake inhibtr, slf-hrm, sequela|Poisn by slctv serotonin reuptake inhibtr, slf-hrm, sequela +C2878408|T037|PT|T43.222S|ICD10CM|Poisoning by selective serotonin reuptake inhibitors, intentional self-harm, sequela|Poisoning by selective serotonin reuptake inhibitors, intentional self-harm, sequela +C2878409|T037|HT|T43.223|ICD10CM|Poisoning by selective serotonin reuptake inhibitors, assault|Poisoning by selective serotonin reuptake inhibitors, assault +C2878409|T037|AB|T43.223|ICD10CM|Poisoning by selective serotonin reuptake inhibtr, assault|Poisoning by selective serotonin reuptake inhibtr, assault +C2878410|T037|AB|T43.223A|ICD10CM|Poisn by selective serotonin reuptake inhibtr, assault, init|Poisn by selective serotonin reuptake inhibtr, assault, init +C2878410|T037|PT|T43.223A|ICD10CM|Poisoning by selective serotonin reuptake inhibitors, assault, initial encounter|Poisoning by selective serotonin reuptake inhibitors, assault, initial encounter +C2878411|T037|AB|T43.223D|ICD10CM|Poisn by selective serotonin reuptake inhibtr, assault, subs|Poisn by selective serotonin reuptake inhibtr, assault, subs +C2878411|T037|PT|T43.223D|ICD10CM|Poisoning by selective serotonin reuptake inhibitors, assault, subsequent encounter|Poisoning by selective serotonin reuptake inhibitors, assault, subsequent encounter +C2878412|T037|AB|T43.223S|ICD10CM|Poisn by slctv serotonin reuptake inhibtr, assault, sequela|Poisn by slctv serotonin reuptake inhibtr, assault, sequela +C2878412|T037|PT|T43.223S|ICD10CM|Poisoning by selective serotonin reuptake inhibitors, assault, sequela|Poisoning by selective serotonin reuptake inhibitors, assault, sequela +C2878413|T037|AB|T43.224|ICD10CM|Poisoning by selective serotonin reuptake inhibitors, undet|Poisoning by selective serotonin reuptake inhibitors, undet +C2878413|T037|HT|T43.224|ICD10CM|Poisoning by selective serotonin reuptake inhibitors, undetermined|Poisoning by selective serotonin reuptake inhibitors, undetermined +C2878414|T037|AB|T43.224A|ICD10CM|Poisn by selective serotonin reuptake inhibtr, undet, init|Poisn by selective serotonin reuptake inhibtr, undet, init +C2878414|T037|PT|T43.224A|ICD10CM|Poisoning by selective serotonin reuptake inhibitors, undetermined, initial encounter|Poisoning by selective serotonin reuptake inhibitors, undetermined, initial encounter +C2878415|T037|AB|T43.224D|ICD10CM|Poisn by selective serotonin reuptake inhibtr, undet, subs|Poisn by selective serotonin reuptake inhibtr, undet, subs +C2878415|T037|PT|T43.224D|ICD10CM|Poisoning by selective serotonin reuptake inhibitors, undetermined, subsequent encounter|Poisoning by selective serotonin reuptake inhibitors, undetermined, subsequent encounter +C2878416|T037|AB|T43.224S|ICD10CM|Poisn by slctv serotonin reuptake inhibtr, undet, sequela|Poisn by slctv serotonin reuptake inhibtr, undet, sequela +C2878416|T037|PT|T43.224S|ICD10CM|Poisoning by selective serotonin reuptake inhibitors, undetermined, sequela|Poisoning by selective serotonin reuptake inhibitors, undetermined, sequela +C3161903|T037|AB|T43.225|ICD10CM|Adverse effect of selective serotonin reuptake inhibitors|Adverse effect of selective serotonin reuptake inhibitors +C3161903|T037|HT|T43.225|ICD10CM|Adverse effect of selective serotonin reuptake inhibitors|Adverse effect of selective serotonin reuptake inhibitors +C2878418|T037|PT|T43.225A|ICD10CM|Adverse effect of selective serotonin reuptake inhibitors, initial encounter|Adverse effect of selective serotonin reuptake inhibitors, initial encounter +C2878418|T037|AB|T43.225A|ICD10CM|Adverse effect of selective serotonin reuptake inhibtr, init|Adverse effect of selective serotonin reuptake inhibtr, init +C2878419|T037|PT|T43.225D|ICD10CM|Adverse effect of selective serotonin reuptake inhibitors, subsequent encounter|Adverse effect of selective serotonin reuptake inhibitors, subsequent encounter +C2878419|T037|AB|T43.225D|ICD10CM|Adverse effect of selective serotonin reuptake inhibtr, subs|Adverse effect of selective serotonin reuptake inhibtr, subs +C2878420|T037|PT|T43.225S|ICD10CM|Adverse effect of selective serotonin reuptake inhibitors, sequela|Adverse effect of selective serotonin reuptake inhibitors, sequela +C2878420|T037|AB|T43.225S|ICD10CM|Adverse effect of slctv serotonin reuptake inhibtr, sequela|Adverse effect of slctv serotonin reuptake inhibtr, sequela +C2878421|T033|AB|T43.226|ICD10CM|Underdosing of selective serotonin reuptake inhibitors|Underdosing of selective serotonin reuptake inhibitors +C2878421|T033|HT|T43.226|ICD10CM|Underdosing of selective serotonin reuptake inhibitors|Underdosing of selective serotonin reuptake inhibitors +C2878422|T037|AB|T43.226A|ICD10CM|Underdosing of selective serotonin reuptake inhibitors, init|Underdosing of selective serotonin reuptake inhibitors, init +C2878422|T037|PT|T43.226A|ICD10CM|Underdosing of selective serotonin reuptake inhibitors, initial encounter|Underdosing of selective serotonin reuptake inhibitors, initial encounter +C2878423|T037|AB|T43.226D|ICD10CM|Underdosing of selective serotonin reuptake inhibitors, subs|Underdosing of selective serotonin reuptake inhibitors, subs +C2878423|T037|PT|T43.226D|ICD10CM|Underdosing of selective serotonin reuptake inhibitors, subsequent encounter|Underdosing of selective serotonin reuptake inhibitors, subsequent encounter +C2878424|T037|PT|T43.226S|ICD10CM|Underdosing of selective serotonin reuptake inhibitors, sequela|Underdosing of selective serotonin reuptake inhibitors, sequela +C2878424|T037|AB|T43.226S|ICD10CM|Undrdose of selective serotonin reuptake inhibitors, sequela|Undrdose of selective serotonin reuptake inhibitors, sequela +C2878425|T037|AB|T43.29|ICD10CM|Antidepressants|Antidepressants +C2878425|T037|HT|T43.29|ICD10CM|Poisoning by, adverse effect of and underdosing of other antidepressants|Poisoning by, adverse effect of and underdosing of other antidepressants +C2878426|T037|AB|T43.291|ICD10CM|Poisoning by oth antidepressants, accidental (unintentional)|Poisoning by oth antidepressants, accidental (unintentional) +C2712378|T037|ET|T43.291|ICD10CM|Poisoning by other antidepressants NOS|Poisoning by other antidepressants NOS +C2878426|T037|HT|T43.291|ICD10CM|Poisoning by other antidepressants, accidental (unintentional)|Poisoning by other antidepressants, accidental (unintentional) +C2878427|T037|AB|T43.291A|ICD10CM|Poisoning by oth antidepressants, accidental, init|Poisoning by oth antidepressants, accidental, init +C2878427|T037|PT|T43.291A|ICD10CM|Poisoning by other antidepressants, accidental (unintentional), initial encounter|Poisoning by other antidepressants, accidental (unintentional), initial encounter +C2878428|T037|AB|T43.291D|ICD10CM|Poisoning by oth antidepressants, accidental, subs|Poisoning by oth antidepressants, accidental, subs +C2878428|T037|PT|T43.291D|ICD10CM|Poisoning by other antidepressants, accidental (unintentional), subsequent encounter|Poisoning by other antidepressants, accidental (unintentional), subsequent encounter +C2878429|T037|AB|T43.291S|ICD10CM|Poisoning by oth antidepressants, accidental, sequela|Poisoning by oth antidepressants, accidental, sequela +C2878429|T037|PT|T43.291S|ICD10CM|Poisoning by other antidepressants, accidental (unintentional), sequela|Poisoning by other antidepressants, accidental (unintentional), sequela +C2878430|T037|AB|T43.292|ICD10CM|Poisoning by other antidepressants, intentional self-harm|Poisoning by other antidepressants, intentional self-harm +C2878430|T037|HT|T43.292|ICD10CM|Poisoning by other antidepressants, intentional self-harm|Poisoning by other antidepressants, intentional self-harm +C2878431|T037|AB|T43.292A|ICD10CM|Poisoning by oth antidepressants, self-harm, init|Poisoning by oth antidepressants, self-harm, init +C2878431|T037|PT|T43.292A|ICD10CM|Poisoning by other antidepressants, intentional self-harm, initial encounter|Poisoning by other antidepressants, intentional self-harm, initial encounter +C2878432|T037|AB|T43.292D|ICD10CM|Poisoning by oth antidepressants, self-harm, subs|Poisoning by oth antidepressants, self-harm, subs +C2878432|T037|PT|T43.292D|ICD10CM|Poisoning by other antidepressants, intentional self-harm, subsequent encounter|Poisoning by other antidepressants, intentional self-harm, subsequent encounter +C2878433|T037|AB|T43.292S|ICD10CM|Poisoning by oth antidepressants, self-harm, sequela|Poisoning by oth antidepressants, self-harm, sequela +C2878433|T037|PT|T43.292S|ICD10CM|Poisoning by other antidepressants, intentional self-harm, sequela|Poisoning by other antidepressants, intentional self-harm, sequela +C2878434|T037|AB|T43.293|ICD10CM|Poisoning by other antidepressants, assault|Poisoning by other antidepressants, assault +C2878434|T037|HT|T43.293|ICD10CM|Poisoning by other antidepressants, assault|Poisoning by other antidepressants, assault +C2878435|T037|AB|T43.293A|ICD10CM|Poisoning by other antidepressants, assault, init encntr|Poisoning by other antidepressants, assault, init encntr +C2878435|T037|PT|T43.293A|ICD10CM|Poisoning by other antidepressants, assault, initial encounter|Poisoning by other antidepressants, assault, initial encounter +C2878436|T037|AB|T43.293D|ICD10CM|Poisoning by other antidepressants, assault, subs encntr|Poisoning by other antidepressants, assault, subs encntr +C2878436|T037|PT|T43.293D|ICD10CM|Poisoning by other antidepressants, assault, subsequent encounter|Poisoning by other antidepressants, assault, subsequent encounter +C2878437|T037|AB|T43.293S|ICD10CM|Poisoning by other antidepressants, assault, sequela|Poisoning by other antidepressants, assault, sequela +C2878437|T037|PT|T43.293S|ICD10CM|Poisoning by other antidepressants, assault, sequela|Poisoning by other antidepressants, assault, sequela +C2878438|T037|AB|T43.294|ICD10CM|Poisoning by other antidepressants, undetermined|Poisoning by other antidepressants, undetermined +C2878438|T037|HT|T43.294|ICD10CM|Poisoning by other antidepressants, undetermined|Poisoning by other antidepressants, undetermined +C2878439|T037|AB|T43.294A|ICD10CM|Poisoning by oth antidepressants, undetermined, init encntr|Poisoning by oth antidepressants, undetermined, init encntr +C2878439|T037|PT|T43.294A|ICD10CM|Poisoning by other antidepressants, undetermined, initial encounter|Poisoning by other antidepressants, undetermined, initial encounter +C2878440|T037|AB|T43.294D|ICD10CM|Poisoning by oth antidepressants, undetermined, subs encntr|Poisoning by oth antidepressants, undetermined, subs encntr +C2878440|T037|PT|T43.294D|ICD10CM|Poisoning by other antidepressants, undetermined, subsequent encounter|Poisoning by other antidepressants, undetermined, subsequent encounter +C2878441|T037|AB|T43.294S|ICD10CM|Poisoning by other antidepressants, undetermined, sequela|Poisoning by other antidepressants, undetermined, sequela +C2878441|T037|PT|T43.294S|ICD10CM|Poisoning by other antidepressants, undetermined, sequela|Poisoning by other antidepressants, undetermined, sequela +C2878442|T037|AB|T43.295|ICD10CM|Adverse effect of other antidepressants|Adverse effect of other antidepressants +C2878442|T037|HT|T43.295|ICD10CM|Adverse effect of other antidepressants|Adverse effect of other antidepressants +C2878443|T037|AB|T43.295A|ICD10CM|Adverse effect of other antidepressants, initial encounter|Adverse effect of other antidepressants, initial encounter +C2878443|T037|PT|T43.295A|ICD10CM|Adverse effect of other antidepressants, initial encounter|Adverse effect of other antidepressants, initial encounter +C2878444|T037|AB|T43.295D|ICD10CM|Adverse effect of other antidepressants, subs encntr|Adverse effect of other antidepressants, subs encntr +C2878444|T037|PT|T43.295D|ICD10CM|Adverse effect of other antidepressants, subsequent encounter|Adverse effect of other antidepressants, subsequent encounter +C2878445|T037|AB|T43.295S|ICD10CM|Adverse effect of other antidepressants, sequela|Adverse effect of other antidepressants, sequela +C2878445|T037|PT|T43.295S|ICD10CM|Adverse effect of other antidepressants, sequela|Adverse effect of other antidepressants, sequela +C2878446|T037|AB|T43.296|ICD10CM|Underdosing of other antidepressants|Underdosing of other antidepressants +C2878446|T037|HT|T43.296|ICD10CM|Underdosing of other antidepressants|Underdosing of other antidepressants +C2878447|T037|AB|T43.296A|ICD10CM|Underdosing of other antidepressants, initial encounter|Underdosing of other antidepressants, initial encounter +C2878447|T037|PT|T43.296A|ICD10CM|Underdosing of other antidepressants, initial encounter|Underdosing of other antidepressants, initial encounter +C2878448|T037|AB|T43.296D|ICD10CM|Underdosing of other antidepressants, subsequent encounter|Underdosing of other antidepressants, subsequent encounter +C2878448|T037|PT|T43.296D|ICD10CM|Underdosing of other antidepressants, subsequent encounter|Underdosing of other antidepressants, subsequent encounter +C2878449|T037|AB|T43.296S|ICD10CM|Underdosing of other antidepressants, sequela|Underdosing of other antidepressants, sequela +C2878449|T037|PT|T43.296S|ICD10CM|Underdosing of other antidepressants, sequela|Underdosing of other antidepressants, sequela +C2878450|T037|AB|T43.3|ICD10CM|Phenothiazine antipsychotics and neuroleptics|Phenothiazine antipsychotics and neuroleptics +C0496979|T037|PS|T43.3|ICD10|Phenothiazine antipsychotics and neuroleptics|Phenothiazine antipsychotics and neuroleptics +C0496979|T037|PX|T43.3|ICD10|Poisoning by phenothiazine antipsychotics and neuroleptics|Poisoning by phenothiazine antipsychotics and neuroleptics +C2878450|T037|HT|T43.3|ICD10CM|Poisoning by, adverse effect of and underdosing of phenothiazine antipsychotics and neuroleptics|Poisoning by, adverse effect of and underdosing of phenothiazine antipsychotics and neuroleptics +C2878450|T037|AB|T43.3X|ICD10CM|Phenothiazine antipsychotics and neuroleptics|Phenothiazine antipsychotics and neuroleptics +C2878450|T037|HT|T43.3X|ICD10CM|Poisoning by, adverse effect of and underdosing of phenothiazine antipsychotics and neuroleptics|Poisoning by, adverse effect of and underdosing of phenothiazine antipsychotics and neuroleptics +C2878451|T037|AB|T43.3X1|ICD10CM|Poisoning by phenothiaz antipsychot/neurolept, accidental|Poisoning by phenothiaz antipsychot/neurolept, accidental +C0496979|T037|ET|T43.3X1|ICD10CM|Poisoning by phenothiazine antipsychotics and neuroleptics NOS|Poisoning by phenothiazine antipsychotics and neuroleptics NOS +C2878451|T037|HT|T43.3X1|ICD10CM|Poisoning by phenothiazine antipsychotics and neuroleptics, accidental (unintentional)|Poisoning by phenothiazine antipsychotics and neuroleptics, accidental (unintentional) +C2878452|T037|AB|T43.3X1A|ICD10CM|Poisoning by phenothiaz antipsychot/neurolept, acc, init|Poisoning by phenothiaz antipsychot/neurolept, acc, init +C2878453|T037|AB|T43.3X1D|ICD10CM|Poisoning by phenothiaz antipsychot/neurolept, acc, subs|Poisoning by phenothiaz antipsychot/neurolept, acc, subs +C2878454|T037|AB|T43.3X1S|ICD10CM|Poisoning by phenothiaz antipsychot/neurolept, acc, sequela|Poisoning by phenothiaz antipsychot/neurolept, acc, sequela +C2878454|T037|PT|T43.3X1S|ICD10CM|Poisoning by phenothiazine antipsychotics and neuroleptics, accidental (unintentional), sequela|Poisoning by phenothiazine antipsychotics and neuroleptics, accidental (unintentional), sequela +C2878455|T037|AB|T43.3X2|ICD10CM|Poisoning by phenothiazine antipsychot/neurolept, self-harm|Poisoning by phenothiazine antipsychot/neurolept, self-harm +C2878455|T037|HT|T43.3X2|ICD10CM|Poisoning by phenothiazine antipsychotics and neuroleptics, intentional self-harm|Poisoning by phenothiazine antipsychotics and neuroleptics, intentional self-harm +C2878456|T037|AB|T43.3X2A|ICD10CM|Poisn by phenothiaz antipsychot/neurolept, self-harm, init|Poisn by phenothiaz antipsychot/neurolept, self-harm, init +C2878456|T037|PT|T43.3X2A|ICD10CM|Poisoning by phenothiazine antipsychotics and neuroleptics, intentional self-harm, initial encounter|Poisoning by phenothiazine antipsychotics and neuroleptics, intentional self-harm, initial encounter +C2878457|T037|AB|T43.3X2D|ICD10CM|Poisn by phenothiaz antipsychot/neurolept, self-harm, subs|Poisn by phenothiaz antipsychot/neurolept, self-harm, subs +C2878458|T037|AB|T43.3X2S|ICD10CM|Poisn by phenothiaz antipsychot/neurolept, slf-hrm, sequela|Poisn by phenothiaz antipsychot/neurolept, slf-hrm, sequela +C2878458|T037|PT|T43.3X2S|ICD10CM|Poisoning by phenothiazine antipsychotics and neuroleptics, intentional self-harm, sequela|Poisoning by phenothiazine antipsychotics and neuroleptics, intentional self-harm, sequela +C2878459|T037|AB|T43.3X3|ICD10CM|Poisoning by phenothiazine antipsychot/neurolept, assault|Poisoning by phenothiazine antipsychot/neurolept, assault +C2878459|T037|HT|T43.3X3|ICD10CM|Poisoning by phenothiazine antipsychotics and neuroleptics, assault|Poisoning by phenothiazine antipsychotics and neuroleptics, assault +C2878460|T037|AB|T43.3X3A|ICD10CM|Poisoning by phenothiaz antipsychot/neurolept, assault, init|Poisoning by phenothiaz antipsychot/neurolept, assault, init +C2878460|T037|PT|T43.3X3A|ICD10CM|Poisoning by phenothiazine antipsychotics and neuroleptics, assault, initial encounter|Poisoning by phenothiazine antipsychotics and neuroleptics, assault, initial encounter +C2878461|T037|AB|T43.3X3D|ICD10CM|Poisoning by phenothiaz antipsychot/neurolept, assault, subs|Poisoning by phenothiaz antipsychot/neurolept, assault, subs +C2878461|T037|PT|T43.3X3D|ICD10CM|Poisoning by phenothiazine antipsychotics and neuroleptics, assault, subsequent encounter|Poisoning by phenothiazine antipsychotics and neuroleptics, assault, subsequent encounter +C2878462|T037|AB|T43.3X3S|ICD10CM|Poisn by phenothiaz antipsychot/neurolept, assault, sequela|Poisn by phenothiaz antipsychot/neurolept, assault, sequela +C2878462|T037|PT|T43.3X3S|ICD10CM|Poisoning by phenothiazine antipsychotics and neuroleptics, assault, sequela|Poisoning by phenothiazine antipsychotics and neuroleptics, assault, sequela +C2878463|T037|AB|T43.3X4|ICD10CM|Poisoning by phenothiaz antipsychot/neurolept, undetermined|Poisoning by phenothiaz antipsychot/neurolept, undetermined +C2878463|T037|HT|T43.3X4|ICD10CM|Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined|Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined +C2878464|T037|AB|T43.3X4A|ICD10CM|Poisoning by phenothiaz antipsychot/neurolept, undet, init|Poisoning by phenothiaz antipsychot/neurolept, undet, init +C2878464|T037|PT|T43.3X4A|ICD10CM|Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined, initial encounter|Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined, initial encounter +C2878465|T037|AB|T43.3X4D|ICD10CM|Poisoning by phenothiaz antipsychot/neurolept, undet, subs|Poisoning by phenothiaz antipsychot/neurolept, undet, subs +C2878465|T037|PT|T43.3X4D|ICD10CM|Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined, subsequent encounter|Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined, subsequent encounter +C2878466|T037|AB|T43.3X4S|ICD10CM|Poisn by phenothiaz antipsychot/neurolept, undet, sequela|Poisn by phenothiaz antipsychot/neurolept, undet, sequela +C2878466|T037|PT|T43.3X4S|ICD10CM|Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined, sequela|Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined, sequela +C2878467|T037|AB|T43.3X5|ICD10CM|Adverse effect of phenothiazine antipsychot/neurolept|Adverse effect of phenothiazine antipsychot/neurolept +C2878467|T037|HT|T43.3X5|ICD10CM|Adverse effect of phenothiazine antipsychotics and neuroleptics|Adverse effect of phenothiazine antipsychotics and neuroleptics +C2878468|T037|AB|T43.3X5A|ICD10CM|Adverse effect of phenothiazine antipsychot/neurolept, init|Adverse effect of phenothiazine antipsychot/neurolept, init +C2878468|T037|PT|T43.3X5A|ICD10CM|Adverse effect of phenothiazine antipsychotics and neuroleptics, initial encounter|Adverse effect of phenothiazine antipsychotics and neuroleptics, initial encounter +C2878469|T037|AB|T43.3X5D|ICD10CM|Adverse effect of phenothiazine antipsychot/neurolept, subs|Adverse effect of phenothiazine antipsychot/neurolept, subs +C2878469|T037|PT|T43.3X5D|ICD10CM|Adverse effect of phenothiazine antipsychotics and neuroleptics, subsequent encounter|Adverse effect of phenothiazine antipsychotics and neuroleptics, subsequent encounter +C2878470|T037|AB|T43.3X5S|ICD10CM|Adverse effect of phenothiaz antipsychot/neurolept, sequela|Adverse effect of phenothiaz antipsychot/neurolept, sequela +C2878470|T037|PT|T43.3X5S|ICD10CM|Adverse effect of phenothiazine antipsychotics and neuroleptics, sequela|Adverse effect of phenothiazine antipsychotics and neuroleptics, sequela +C2878471|T037|AB|T43.3X6|ICD10CM|Underdosing of phenothiazine antipsychotics and neuroleptics|Underdosing of phenothiazine antipsychotics and neuroleptics +C2878471|T037|HT|T43.3X6|ICD10CM|Underdosing of phenothiazine antipsychotics and neuroleptics|Underdosing of phenothiazine antipsychotics and neuroleptics +C2878472|T037|AB|T43.3X6A|ICD10CM|Underdosing of phenothiazine antipsychot/neurolept, init|Underdosing of phenothiazine antipsychot/neurolept, init +C2878472|T037|PT|T43.3X6A|ICD10CM|Underdosing of phenothiazine antipsychotics and neuroleptics, initial encounter|Underdosing of phenothiazine antipsychotics and neuroleptics, initial encounter +C2878473|T037|AB|T43.3X6D|ICD10CM|Underdosing of phenothiazine antipsychot/neurolept, subs|Underdosing of phenothiazine antipsychot/neurolept, subs +C2878473|T037|PT|T43.3X6D|ICD10CM|Underdosing of phenothiazine antipsychotics and neuroleptics, subsequent encounter|Underdosing of phenothiazine antipsychotics and neuroleptics, subsequent encounter +C2878474|T037|AB|T43.3X6S|ICD10CM|Underdosing of phenothiazine antipsychot/neurolept, sequela|Underdosing of phenothiazine antipsychot/neurolept, sequela +C2878474|T037|PT|T43.3X6S|ICD10CM|Underdosing of phenothiazine antipsychotics and neuroleptics, sequela|Underdosing of phenothiazine antipsychotics and neuroleptics, sequela +C2878475|T037|AB|T43.4|ICD10CM|Butyrophenone and thiothixene neuroleptics|Butyrophenone and thiothixene neuroleptics +C0496980|T037|PS|T43.4|ICD10|Butyrophenone and thioxanthene neuroleptics|Butyrophenone and thioxanthene neuroleptics +C0496980|T037|PX|T43.4|ICD10|Poisoning by butyrophenone and thioxanthene neuroleptics|Poisoning by butyrophenone and thioxanthene neuroleptics +C2878475|T037|HT|T43.4|ICD10CM|Poisoning by, adverse effect of and underdosing of butyrophenone and thiothixene neuroleptics|Poisoning by, adverse effect of and underdosing of butyrophenone and thiothixene neuroleptics +C2878475|T037|AB|T43.4X|ICD10CM|Butyrophenone and thiothixene neuroleptics|Butyrophenone and thiothixene neuroleptics +C2878475|T037|HT|T43.4X|ICD10CM|Poisoning by, adverse effect of and underdosing of butyrophenone and thiothixene neuroleptics|Poisoning by, adverse effect of and underdosing of butyrophenone and thiothixene neuroleptics +C2878477|T037|AB|T43.4X1|ICD10CM|Poisoning by butyrophen/thiothixen neuroleptics, accidental|Poisoning by butyrophen/thiothixen neuroleptics, accidental +C2878476|T037|ET|T43.4X1|ICD10CM|Poisoning by butyrophenone and thiothixene neuroleptics NOS|Poisoning by butyrophenone and thiothixene neuroleptics NOS +C2878477|T037|HT|T43.4X1|ICD10CM|Poisoning by butyrophenone and thiothixene neuroleptics, accidental (unintentional)|Poisoning by butyrophenone and thiothixene neuroleptics, accidental (unintentional) +C2878478|T037|AB|T43.4X1A|ICD10CM|Poisoning by butyrophen/thiothixen neuroleptc, acc, init|Poisoning by butyrophen/thiothixen neuroleptc, acc, init +C2878479|T037|AB|T43.4X1D|ICD10CM|Poisoning by butyrophen/thiothixen neuroleptc, acc, subs|Poisoning by butyrophen/thiothixen neuroleptc, acc, subs +C2878480|T037|AB|T43.4X1S|ICD10CM|Poisoning by butyrophen/thiothixen neuroleptc, acc, sequela|Poisoning by butyrophen/thiothixen neuroleptc, acc, sequela +C2878480|T037|PT|T43.4X1S|ICD10CM|Poisoning by butyrophenone and thiothixene neuroleptics, accidental (unintentional), sequela|Poisoning by butyrophenone and thiothixene neuroleptics, accidental (unintentional), sequela +C2878481|T037|AB|T43.4X2|ICD10CM|Poisoning by butyrophen/thiothixen neuroleptics, self-harm|Poisoning by butyrophen/thiothixen neuroleptics, self-harm +C2878481|T037|HT|T43.4X2|ICD10CM|Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm|Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm +C2878482|T037|AB|T43.4X2A|ICD10CM|Poisn by butyrophen/thiothixen neuroleptc, self-harm, init|Poisn by butyrophen/thiothixen neuroleptc, self-harm, init +C2878482|T037|PT|T43.4X2A|ICD10CM|Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm, initial encounter|Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm, initial encounter +C2878483|T037|AB|T43.4X2D|ICD10CM|Poisn by butyrophen/thiothixen neuroleptc, self-harm, subs|Poisn by butyrophen/thiothixen neuroleptc, self-harm, subs +C2878483|T037|PT|T43.4X2D|ICD10CM|Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm, subsequent encounter|Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm, subsequent encounter +C2878484|T037|AB|T43.4X2S|ICD10CM|Poisn by butyrophen/thiothixen neuroleptc, slf-hrm, sequela|Poisn by butyrophen/thiothixen neuroleptc, slf-hrm, sequela +C2878484|T037|PT|T43.4X2S|ICD10CM|Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm, sequela|Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm, sequela +C2878485|T037|AB|T43.4X3|ICD10CM|Poisoning by butyrophen/thiothixen neuroleptics, assault|Poisoning by butyrophen/thiothixen neuroleptics, assault +C2878485|T037|HT|T43.4X3|ICD10CM|Poisoning by butyrophenone and thiothixene neuroleptics, assault|Poisoning by butyrophenone and thiothixene neuroleptics, assault +C2878486|T037|AB|T43.4X3A|ICD10CM|Poisoning by butyrophen/thiothixen neuroleptc, assault, init|Poisoning by butyrophen/thiothixen neuroleptc, assault, init +C2878486|T037|PT|T43.4X3A|ICD10CM|Poisoning by butyrophenone and thiothixene neuroleptics, assault, initial encounter|Poisoning by butyrophenone and thiothixene neuroleptics, assault, initial encounter +C2878487|T037|AB|T43.4X3D|ICD10CM|Poisoning by butyrophen/thiothixen neuroleptc, assault, subs|Poisoning by butyrophen/thiothixen neuroleptc, assault, subs +C2878487|T037|PT|T43.4X3D|ICD10CM|Poisoning by butyrophenone and thiothixene neuroleptics, assault, subsequent encounter|Poisoning by butyrophenone and thiothixene neuroleptics, assault, subsequent encounter +C2878488|T037|AB|T43.4X3S|ICD10CM|Poisn by butyrophen/thiothixen neuroleptc, assault, sequela|Poisn by butyrophen/thiothixen neuroleptc, assault, sequela +C2878488|T037|PT|T43.4X3S|ICD10CM|Poisoning by butyrophenone and thiothixene neuroleptics, assault, sequela|Poisoning by butyrophenone and thiothixene neuroleptics, assault, sequela +C2878489|T037|AB|T43.4X4|ICD10CM|Poisoning by butyrophen/thiothixen neuroleptc, undetermined|Poisoning by butyrophen/thiothixen neuroleptc, undetermined +C2878489|T037|HT|T43.4X4|ICD10CM|Poisoning by butyrophenone and thiothixene neuroleptics, undetermined|Poisoning by butyrophenone and thiothixene neuroleptics, undetermined +C2878490|T037|AB|T43.4X4A|ICD10CM|Poisoning by butyrophen/thiothixen neuroleptc, undet, init|Poisoning by butyrophen/thiothixen neuroleptc, undet, init +C2878490|T037|PT|T43.4X4A|ICD10CM|Poisoning by butyrophenone and thiothixene neuroleptics, undetermined, initial encounter|Poisoning by butyrophenone and thiothixene neuroleptics, undetermined, initial encounter +C2878491|T037|AB|T43.4X4D|ICD10CM|Poisoning by butyrophen/thiothixen neuroleptc, undet, subs|Poisoning by butyrophen/thiothixen neuroleptc, undet, subs +C2878491|T037|PT|T43.4X4D|ICD10CM|Poisoning by butyrophenone and thiothixene neuroleptics, undetermined, subsequent encounter|Poisoning by butyrophenone and thiothixene neuroleptics, undetermined, subsequent encounter +C2878492|T037|AB|T43.4X4S|ICD10CM|Poisn by butyrophen/thiothixen neuroleptc, undet, sequela|Poisn by butyrophen/thiothixen neuroleptc, undet, sequela +C2878492|T037|PT|T43.4X4S|ICD10CM|Poisoning by butyrophenone and thiothixene neuroleptics, undetermined, sequela|Poisoning by butyrophenone and thiothixene neuroleptics, undetermined, sequela +C2878493|T037|AB|T43.4X5|ICD10CM|Adverse effect of butyrophenone and thiothixene neuroleptics|Adverse effect of butyrophenone and thiothixene neuroleptics +C2878493|T037|HT|T43.4X5|ICD10CM|Adverse effect of butyrophenone and thiothixene neuroleptics|Adverse effect of butyrophenone and thiothixene neuroleptics +C2878494|T037|AB|T43.4X5A|ICD10CM|Adverse effect of butyrophen/thiothixen neuroleptics, init|Adverse effect of butyrophen/thiothixen neuroleptics, init +C2878494|T037|PT|T43.4X5A|ICD10CM|Adverse effect of butyrophenone and thiothixene neuroleptics, initial encounter|Adverse effect of butyrophenone and thiothixene neuroleptics, initial encounter +C2878495|T037|AB|T43.4X5D|ICD10CM|Adverse effect of butyrophen/thiothixen neuroleptics, subs|Adverse effect of butyrophen/thiothixen neuroleptics, subs +C2878495|T037|PT|T43.4X5D|ICD10CM|Adverse effect of butyrophenone and thiothixene neuroleptics, subsequent encounter|Adverse effect of butyrophenone and thiothixene neuroleptics, subsequent encounter +C2878496|T037|AB|T43.4X5S|ICD10CM|Adverse effect of butyrophen/thiothixen neuroleptc, sequela|Adverse effect of butyrophen/thiothixen neuroleptc, sequela +C2878496|T037|PT|T43.4X5S|ICD10CM|Adverse effect of butyrophenone and thiothixene neuroleptics, sequela|Adverse effect of butyrophenone and thiothixene neuroleptics, sequela +C2878497|T037|AB|T43.4X6|ICD10CM|Underdosing of butyrophenone and thiothixene neuroleptics|Underdosing of butyrophenone and thiothixene neuroleptics +C2878497|T037|HT|T43.4X6|ICD10CM|Underdosing of butyrophenone and thiothixene neuroleptics|Underdosing of butyrophenone and thiothixene neuroleptics +C2878498|T037|AB|T43.4X6A|ICD10CM|Underdosing of butyrophen/thiothixen neuroleptics, init|Underdosing of butyrophen/thiothixen neuroleptics, init +C2878498|T037|PT|T43.4X6A|ICD10CM|Underdosing of butyrophenone and thiothixene neuroleptics, initial encounter|Underdosing of butyrophenone and thiothixene neuroleptics, initial encounter +C2878499|T037|AB|T43.4X6D|ICD10CM|Underdosing of butyrophen/thiothixen neuroleptics, subs|Underdosing of butyrophen/thiothixen neuroleptics, subs +C2878499|T037|PT|T43.4X6D|ICD10CM|Underdosing of butyrophenone and thiothixene neuroleptics, subsequent encounter|Underdosing of butyrophenone and thiothixene neuroleptics, subsequent encounter +C2878500|T037|AB|T43.4X6S|ICD10CM|Underdosing of butyrophen/thiothixen neuroleptics, sequela|Underdosing of butyrophen/thiothixen neuroleptics, sequela +C2878500|T037|PT|T43.4X6S|ICD10CM|Underdosing of butyrophenone and thiothixene neuroleptics, sequela|Underdosing of butyrophenone and thiothixene neuroleptics, sequela +C2878501|T037|AB|T43.5|ICD10CM|And unsp antipsychotics and neuroleptics|And unsp antipsychotics and neuroleptics +C0478443|T037|PS|T43.5|ICD10|Other and unspecified antipsychotics and neuroleptics|Other and unspecified antipsychotics and neuroleptics +C0478443|T037|PX|T43.5|ICD10|Poisoning by other and unspecified antipsychotics and neuroleptics|Poisoning by other and unspecified antipsychotics and neuroleptics +C2878502|T037|HT|T43.50|ICD10CM|Poisoning by, adverse effect of and underdosing of unspecified antipsychotics and neuroleptics|Poisoning by, adverse effect of and underdosing of unspecified antipsychotics and neuroleptics +C2878502|T037|AB|T43.50|ICD10CM|Unsp antipsychotics and neuroleptics|Unsp antipsychotics and neuroleptics +C2878503|T037|ET|T43.501|ICD10CM|Poisoning by antipsychotics and neuroleptics NOS|Poisoning by antipsychotics and neuroleptics NOS +C2878504|T037|AB|T43.501|ICD10CM|Poisoning by unsp antipsychot/neurolept, accidental|Poisoning by unsp antipsychot/neurolept, accidental +C2878504|T037|HT|T43.501|ICD10CM|Poisoning by unspecified antipsychotics and neuroleptics, accidental (unintentional)|Poisoning by unspecified antipsychotics and neuroleptics, accidental (unintentional) +C2878505|T037|AB|T43.501A|ICD10CM|Poisoning by unsp antipsychot/neurolept, accidental, init|Poisoning by unsp antipsychot/neurolept, accidental, init +C2878506|T037|AB|T43.501D|ICD10CM|Poisoning by unsp antipsychot/neurolept, accidental, subs|Poisoning by unsp antipsychot/neurolept, accidental, subs +C2878507|T037|AB|T43.501S|ICD10CM|Poisoning by unsp antipsychot/neurolept, acc, sequela|Poisoning by unsp antipsychot/neurolept, acc, sequela +C2878507|T037|PT|T43.501S|ICD10CM|Poisoning by unspecified antipsychotics and neuroleptics, accidental (unintentional), sequela|Poisoning by unspecified antipsychotics and neuroleptics, accidental (unintentional), sequela +C2878508|T037|AB|T43.502|ICD10CM|Poisoning by unsp antipsychot/neurolept, self-harm|Poisoning by unsp antipsychot/neurolept, self-harm +C2878508|T037|HT|T43.502|ICD10CM|Poisoning by unspecified antipsychotics and neuroleptics, intentional self-harm|Poisoning by unspecified antipsychotics and neuroleptics, intentional self-harm +C2878509|T037|AB|T43.502A|ICD10CM|Poisoning by unsp antipsychot/neurolept, self-harm, init|Poisoning by unsp antipsychot/neurolept, self-harm, init +C2878509|T037|PT|T43.502A|ICD10CM|Poisoning by unspecified antipsychotics and neuroleptics, intentional self-harm, initial encounter|Poisoning by unspecified antipsychotics and neuroleptics, intentional self-harm, initial encounter +C2878510|T037|AB|T43.502D|ICD10CM|Poisoning by unsp antipsychot/neurolept, self-harm, subs|Poisoning by unsp antipsychot/neurolept, self-harm, subs +C2878511|T037|AB|T43.502S|ICD10CM|Poisoning by unsp antipsychot/neurolept, self-harm, sequela|Poisoning by unsp antipsychot/neurolept, self-harm, sequela +C2878511|T037|PT|T43.502S|ICD10CM|Poisoning by unspecified antipsychotics and neuroleptics, intentional self-harm, sequela|Poisoning by unspecified antipsychotics and neuroleptics, intentional self-harm, sequela +C2878512|T037|AB|T43.503|ICD10CM|Poisoning by unsp antipsychotics and neuroleptics, assault|Poisoning by unsp antipsychotics and neuroleptics, assault +C2878512|T037|HT|T43.503|ICD10CM|Poisoning by unspecified antipsychotics and neuroleptics, assault|Poisoning by unspecified antipsychotics and neuroleptics, assault +C2878513|T037|AB|T43.503A|ICD10CM|Poisoning by unsp antipsychot/neurolept, assault, init|Poisoning by unsp antipsychot/neurolept, assault, init +C2878513|T037|PT|T43.503A|ICD10CM|Poisoning by unspecified antipsychotics and neuroleptics, assault, initial encounter|Poisoning by unspecified antipsychotics and neuroleptics, assault, initial encounter +C2878514|T037|AB|T43.503D|ICD10CM|Poisoning by unsp antipsychot/neurolept, assault, subs|Poisoning by unsp antipsychot/neurolept, assault, subs +C2878514|T037|PT|T43.503D|ICD10CM|Poisoning by unspecified antipsychotics and neuroleptics, assault, subsequent encounter|Poisoning by unspecified antipsychotics and neuroleptics, assault, subsequent encounter +C2878515|T037|AB|T43.503S|ICD10CM|Poisoning by unsp antipsychot/neurolept, assault, sequela|Poisoning by unsp antipsychot/neurolept, assault, sequela +C2878515|T037|PT|T43.503S|ICD10CM|Poisoning by unspecified antipsychotics and neuroleptics, assault, sequela|Poisoning by unspecified antipsychotics and neuroleptics, assault, sequela +C2878516|T037|AB|T43.504|ICD10CM|Poisoning by unsp antipsychot/neurolept, undetermined|Poisoning by unsp antipsychot/neurolept, undetermined +C2878516|T037|HT|T43.504|ICD10CM|Poisoning by unspecified antipsychotics and neuroleptics, undetermined|Poisoning by unspecified antipsychotics and neuroleptics, undetermined +C2878517|T037|AB|T43.504A|ICD10CM|Poisoning by unsp antipsychot/neurolept, undetermined, init|Poisoning by unsp antipsychot/neurolept, undetermined, init +C2878517|T037|PT|T43.504A|ICD10CM|Poisoning by unspecified antipsychotics and neuroleptics, undetermined, initial encounter|Poisoning by unspecified antipsychotics and neuroleptics, undetermined, initial encounter +C2878518|T037|AB|T43.504D|ICD10CM|Poisoning by unsp antipsychot/neurolept, undetermined, subs|Poisoning by unsp antipsychot/neurolept, undetermined, subs +C2878518|T037|PT|T43.504D|ICD10CM|Poisoning by unspecified antipsychotics and neuroleptics, undetermined, subsequent encounter|Poisoning by unspecified antipsychotics and neuroleptics, undetermined, subsequent encounter +C2878519|T037|AB|T43.504S|ICD10CM|Poisoning by unsp antipsychot/neurolept, undet, sequela|Poisoning by unsp antipsychot/neurolept, undet, sequela +C2878519|T037|PT|T43.504S|ICD10CM|Poisoning by unspecified antipsychotics and neuroleptics, undetermined, sequela|Poisoning by unspecified antipsychotics and neuroleptics, undetermined, sequela +C2878520|T037|AB|T43.505|ICD10CM|Adverse effect of unsp antipsychotics and neuroleptics|Adverse effect of unsp antipsychotics and neuroleptics +C2878520|T037|HT|T43.505|ICD10CM|Adverse effect of unspecified antipsychotics and neuroleptics|Adverse effect of unspecified antipsychotics and neuroleptics +C2878521|T037|AB|T43.505A|ICD10CM|Adverse effect of unsp antipsychotics and neuroleptics, init|Adverse effect of unsp antipsychotics and neuroleptics, init +C2878521|T037|PT|T43.505A|ICD10CM|Adverse effect of unspecified antipsychotics and neuroleptics, initial encounter|Adverse effect of unspecified antipsychotics and neuroleptics, initial encounter +C2878522|T037|AB|T43.505D|ICD10CM|Adverse effect of unsp antipsychotics and neuroleptics, subs|Adverse effect of unsp antipsychotics and neuroleptics, subs +C2878522|T037|PT|T43.505D|ICD10CM|Adverse effect of unspecified antipsychotics and neuroleptics, subsequent encounter|Adverse effect of unspecified antipsychotics and neuroleptics, subsequent encounter +C2878523|T037|AB|T43.505S|ICD10CM|Adverse effect of unsp antipsychot/neurolept, sequela|Adverse effect of unsp antipsychot/neurolept, sequela +C2878523|T037|PT|T43.505S|ICD10CM|Adverse effect of unspecified antipsychotics and neuroleptics, sequela|Adverse effect of unspecified antipsychotics and neuroleptics, sequela +C2878524|T037|AB|T43.506|ICD10CM|Underdosing of unspecified antipsychotics and neuroleptics|Underdosing of unspecified antipsychotics and neuroleptics +C2878524|T037|HT|T43.506|ICD10CM|Underdosing of unspecified antipsychotics and neuroleptics|Underdosing of unspecified antipsychotics and neuroleptics +C2878525|T037|AB|T43.506A|ICD10CM|Underdosing of unsp antipsychotics and neuroleptics, init|Underdosing of unsp antipsychotics and neuroleptics, init +C2878525|T037|PT|T43.506A|ICD10CM|Underdosing of unspecified antipsychotics and neuroleptics, initial encounter|Underdosing of unspecified antipsychotics and neuroleptics, initial encounter +C2878526|T037|AB|T43.506D|ICD10CM|Underdosing of unsp antipsychotics and neuroleptics, subs|Underdosing of unsp antipsychotics and neuroleptics, subs +C2878526|T037|PT|T43.506D|ICD10CM|Underdosing of unspecified antipsychotics and neuroleptics, subsequent encounter|Underdosing of unspecified antipsychotics and neuroleptics, subsequent encounter +C2878527|T037|AB|T43.506S|ICD10CM|Underdosing of unsp antipsychotics and neuroleptics, sequela|Underdosing of unsp antipsychotics and neuroleptics, sequela +C2878527|T037|PT|T43.506S|ICD10CM|Underdosing of unspecified antipsychotics and neuroleptics, sequela|Underdosing of unspecified antipsychotics and neuroleptics, sequela +C2878528|T037|AB|T43.59|ICD10CM|Antipsychotics and neuroleptics|Antipsychotics and neuroleptics +C2878528|T037|HT|T43.59|ICD10CM|Poisoning by, adverse effect of and underdosing of other antipsychotics and neuroleptics|Poisoning by, adverse effect of and underdosing of other antipsychotics and neuroleptics +C2878530|T037|AB|T43.591|ICD10CM|Poisoning by oth antipsychot/neurolept, accidental|Poisoning by oth antipsychot/neurolept, accidental +C2878529|T037|ET|T43.591|ICD10CM|Poisoning by other antipsychotics and neuroleptics NOS|Poisoning by other antipsychotics and neuroleptics NOS +C2878530|T037|HT|T43.591|ICD10CM|Poisoning by other antipsychotics and neuroleptics, accidental (unintentional)|Poisoning by other antipsychotics and neuroleptics, accidental (unintentional) +C2878531|T037|AB|T43.591A|ICD10CM|Poisoning by oth antipsychot/neurolept, accidental, init|Poisoning by oth antipsychot/neurolept, accidental, init +C2878531|T037|PT|T43.591A|ICD10CM|Poisoning by other antipsychotics and neuroleptics, accidental (unintentional), initial encounter|Poisoning by other antipsychotics and neuroleptics, accidental (unintentional), initial encounter +C2878532|T037|AB|T43.591D|ICD10CM|Poisoning by oth antipsychot/neurolept, accidental, subs|Poisoning by oth antipsychot/neurolept, accidental, subs +C2878532|T037|PT|T43.591D|ICD10CM|Poisoning by other antipsychotics and neuroleptics, accidental (unintentional), subsequent encounter|Poisoning by other antipsychotics and neuroleptics, accidental (unintentional), subsequent encounter +C2878533|T037|AB|T43.591S|ICD10CM|Poisoning by oth antipsychot/neurolept, accidental, sequela|Poisoning by oth antipsychot/neurolept, accidental, sequela +C2878533|T037|PT|T43.591S|ICD10CM|Poisoning by other antipsychotics and neuroleptics, accidental (unintentional), sequela|Poisoning by other antipsychotics and neuroleptics, accidental (unintentional), sequela +C2878534|T037|AB|T43.592|ICD10CM|Poisoning by oth antipsychot/neurolept, self-harm|Poisoning by oth antipsychot/neurolept, self-harm +C2878534|T037|HT|T43.592|ICD10CM|Poisoning by other antipsychotics and neuroleptics, intentional self-harm|Poisoning by other antipsychotics and neuroleptics, intentional self-harm +C2878535|T037|AB|T43.592A|ICD10CM|Poisoning by oth antipsychot/neurolept, self-harm, init|Poisoning by oth antipsychot/neurolept, self-harm, init +C2878535|T037|PT|T43.592A|ICD10CM|Poisoning by other antipsychotics and neuroleptics, intentional self-harm, initial encounter|Poisoning by other antipsychotics and neuroleptics, intentional self-harm, initial encounter +C2878536|T037|AB|T43.592D|ICD10CM|Poisoning by oth antipsychot/neurolept, self-harm, subs|Poisoning by oth antipsychot/neurolept, self-harm, subs +C2878536|T037|PT|T43.592D|ICD10CM|Poisoning by other antipsychotics and neuroleptics, intentional self-harm, subsequent encounter|Poisoning by other antipsychotics and neuroleptics, intentional self-harm, subsequent encounter +C2878537|T037|AB|T43.592S|ICD10CM|Poisoning by oth antipsychot/neurolept, self-harm, sequela|Poisoning by oth antipsychot/neurolept, self-harm, sequela +C2878537|T037|PT|T43.592S|ICD10CM|Poisoning by other antipsychotics and neuroleptics, intentional self-harm, sequela|Poisoning by other antipsychotics and neuroleptics, intentional self-harm, sequela +C2878538|T037|AB|T43.593|ICD10CM|Poisoning by other antipsychotics and neuroleptics, assault|Poisoning by other antipsychotics and neuroleptics, assault +C2878538|T037|HT|T43.593|ICD10CM|Poisoning by other antipsychotics and neuroleptics, assault|Poisoning by other antipsychotics and neuroleptics, assault +C2878539|T037|AB|T43.593A|ICD10CM|Poisoning by oth antipsychot/neurolept, assault, init|Poisoning by oth antipsychot/neurolept, assault, init +C2878539|T037|PT|T43.593A|ICD10CM|Poisoning by other antipsychotics and neuroleptics, assault, initial encounter|Poisoning by other antipsychotics and neuroleptics, assault, initial encounter +C2878540|T037|AB|T43.593D|ICD10CM|Poisoning by oth antipsychot/neurolept, assault, subs|Poisoning by oth antipsychot/neurolept, assault, subs +C2878540|T037|PT|T43.593D|ICD10CM|Poisoning by other antipsychotics and neuroleptics, assault, subsequent encounter|Poisoning by other antipsychotics and neuroleptics, assault, subsequent encounter +C2878541|T037|AB|T43.593S|ICD10CM|Poisoning by oth antipsychot/neurolept, assault, sequela|Poisoning by oth antipsychot/neurolept, assault, sequela +C2878541|T037|PT|T43.593S|ICD10CM|Poisoning by other antipsychotics and neuroleptics, assault, sequela|Poisoning by other antipsychotics and neuroleptics, assault, sequela +C2878542|T037|AB|T43.594|ICD10CM|Poisoning by oth antipsychot/neurolept, undetermined|Poisoning by oth antipsychot/neurolept, undetermined +C2878542|T037|HT|T43.594|ICD10CM|Poisoning by other antipsychotics and neuroleptics, undetermined|Poisoning by other antipsychotics and neuroleptics, undetermined +C2878543|T037|AB|T43.594A|ICD10CM|Poisoning by oth antipsychot/neurolept, undetermined, init|Poisoning by oth antipsychot/neurolept, undetermined, init +C2878543|T037|PT|T43.594A|ICD10CM|Poisoning by other antipsychotics and neuroleptics, undetermined, initial encounter|Poisoning by other antipsychotics and neuroleptics, undetermined, initial encounter +C2878544|T037|AB|T43.594D|ICD10CM|Poisoning by oth antipsychot/neurolept, undetermined, subs|Poisoning by oth antipsychot/neurolept, undetermined, subs +C2878544|T037|PT|T43.594D|ICD10CM|Poisoning by other antipsychotics and neuroleptics, undetermined, subsequent encounter|Poisoning by other antipsychotics and neuroleptics, undetermined, subsequent encounter +C2878545|T037|AB|T43.594S|ICD10CM|Poisoning by oth antipsychot/neurolept, undet, sequela|Poisoning by oth antipsychot/neurolept, undet, sequela +C2878545|T037|PT|T43.594S|ICD10CM|Poisoning by other antipsychotics and neuroleptics, undetermined, sequela|Poisoning by other antipsychotics and neuroleptics, undetermined, sequela +C2878546|T037|AB|T43.595|ICD10CM|Adverse effect of other antipsychotics and neuroleptics|Adverse effect of other antipsychotics and neuroleptics +C2878546|T037|HT|T43.595|ICD10CM|Adverse effect of other antipsychotics and neuroleptics|Adverse effect of other antipsychotics and neuroleptics +C2878547|T037|AB|T43.595A|ICD10CM|Adverse effect of oth antipsychotics and neuroleptics, init|Adverse effect of oth antipsychotics and neuroleptics, init +C2878547|T037|PT|T43.595A|ICD10CM|Adverse effect of other antipsychotics and neuroleptics, initial encounter|Adverse effect of other antipsychotics and neuroleptics, initial encounter +C2878548|T037|AB|T43.595D|ICD10CM|Adverse effect of oth antipsychotics and neuroleptics, subs|Adverse effect of oth antipsychotics and neuroleptics, subs +C2878548|T037|PT|T43.595D|ICD10CM|Adverse effect of other antipsychotics and neuroleptics, subsequent encounter|Adverse effect of other antipsychotics and neuroleptics, subsequent encounter +C2878549|T037|AB|T43.595S|ICD10CM|Adverse effect of antipsychotics and neuroleptics, sequela|Adverse effect of antipsychotics and neuroleptics, sequela +C2878549|T037|PT|T43.595S|ICD10CM|Adverse effect of other antipsychotics and neuroleptics, sequela|Adverse effect of other antipsychotics and neuroleptics, sequela +C2878550|T037|AB|T43.596|ICD10CM|Underdosing of other antipsychotics and neuroleptics|Underdosing of other antipsychotics and neuroleptics +C2878550|T037|HT|T43.596|ICD10CM|Underdosing of other antipsychotics and neuroleptics|Underdosing of other antipsychotics and neuroleptics +C2878551|T037|AB|T43.596A|ICD10CM|Underdosing of oth antipsychotics and neuroleptics, init|Underdosing of oth antipsychotics and neuroleptics, init +C2878551|T037|PT|T43.596A|ICD10CM|Underdosing of other antipsychotics and neuroleptics, initial encounter|Underdosing of other antipsychotics and neuroleptics, initial encounter +C2878552|T037|AB|T43.596D|ICD10CM|Underdosing of oth antipsychotics and neuroleptics, subs|Underdosing of oth antipsychotics and neuroleptics, subs +C2878552|T037|PT|T43.596D|ICD10CM|Underdosing of other antipsychotics and neuroleptics, subsequent encounter|Underdosing of other antipsychotics and neuroleptics, subsequent encounter +C2878553|T037|AB|T43.596S|ICD10CM|Underdosing of oth antipsychotics and neuroleptics, sequela|Underdosing of oth antipsychotics and neuroleptics, sequela +C2878553|T037|PT|T43.596S|ICD10CM|Underdosing of other antipsychotics and neuroleptics, sequela|Underdosing of other antipsychotics and neuroleptics, sequela +C0496981|T037|PX|T43.6|ICD10|Poisoning by psychostimulants with abuse potential|Poisoning by psychostimulants with abuse potential +C2878654|T037|HT|T43.6|ICD10CM|Poisoning by, adverse effect of and underdosing of psychostimulants|Poisoning by, adverse effect of and underdosing of psychostimulants +C2878654|T037|AB|T43.6|ICD10CM|Psychostimulants|Psychostimulants +C0496981|T037|PS|T43.6|ICD10|Psychostimulants with abuse potential|Psychostimulants with abuse potential +C2878555|T037|HT|T43.60|ICD10CM|Poisoning by, adverse effect of and underdosing of unspecified psychostimulant|Poisoning by, adverse effect of and underdosing of unspecified psychostimulant +C2878555|T037|AB|T43.60|ICD10CM|Unsp psychostimulant|Unsp psychostimulant +C0161585|T037|ET|T43.601|ICD10CM|Poisoning by psychostimulants NOS|Poisoning by psychostimulants NOS +C2878556|T037|AB|T43.601|ICD10CM|Poisoning by unsp psychostim, accidental (unintentional)|Poisoning by unsp psychostim, accidental (unintentional) +C2878556|T037|HT|T43.601|ICD10CM|Poisoning by unspecified psychostimulants, accidental (unintentional)|Poisoning by unspecified psychostimulants, accidental (unintentional) +C2878557|T037|AB|T43.601A|ICD10CM|Poisoning by unsp psychostim, accidental, init|Poisoning by unsp psychostim, accidental, init +C2878557|T037|PT|T43.601A|ICD10CM|Poisoning by unspecified psychostimulants, accidental (unintentional), initial encounter|Poisoning by unspecified psychostimulants, accidental (unintentional), initial encounter +C2878558|T037|AB|T43.601D|ICD10CM|Poisoning by unsp psychostim, accidental, subs|Poisoning by unsp psychostim, accidental, subs +C2878558|T037|PT|T43.601D|ICD10CM|Poisoning by unspecified psychostimulants, accidental (unintentional), subsequent encounter|Poisoning by unspecified psychostimulants, accidental (unintentional), subsequent encounter +C2878559|T037|AB|T43.601S|ICD10CM|Poisoning by unsp psychostim, accidental, sequela|Poisoning by unsp psychostim, accidental, sequela +C2878559|T037|PT|T43.601S|ICD10CM|Poisoning by unspecified psychostimulants, accidental (unintentional), sequela|Poisoning by unspecified psychostimulants, accidental (unintentional), sequela +C2878560|T037|AB|T43.602|ICD10CM|Poisoning by unsp psychostimulants, intentional self-harm|Poisoning by unsp psychostimulants, intentional self-harm +C2878560|T037|HT|T43.602|ICD10CM|Poisoning by unspecified psychostimulants, intentional self-harm|Poisoning by unspecified psychostimulants, intentional self-harm +C2878561|T037|AB|T43.602A|ICD10CM|Poisoning by unsp psychostimulants, self-harm, init|Poisoning by unsp psychostimulants, self-harm, init +C2878561|T037|PT|T43.602A|ICD10CM|Poisoning by unspecified psychostimulants, intentional self-harm, initial encounter|Poisoning by unspecified psychostimulants, intentional self-harm, initial encounter +C2878562|T037|AB|T43.602D|ICD10CM|Poisoning by unsp psychostimulants, self-harm, subs|Poisoning by unsp psychostimulants, self-harm, subs +C2878562|T037|PT|T43.602D|ICD10CM|Poisoning by unspecified psychostimulants, intentional self-harm, subsequent encounter|Poisoning by unspecified psychostimulants, intentional self-harm, subsequent encounter +C2878563|T037|AB|T43.602S|ICD10CM|Poisoning by unsp psychostimulants, self-harm, sequela|Poisoning by unsp psychostimulants, self-harm, sequela +C2878563|T037|PT|T43.602S|ICD10CM|Poisoning by unspecified psychostimulants, intentional self-harm, sequela|Poisoning by unspecified psychostimulants, intentional self-harm, sequela +C2878564|T037|AB|T43.603|ICD10CM|Poisoning by unspecified psychostimulants, assault|Poisoning by unspecified psychostimulants, assault +C2878564|T037|HT|T43.603|ICD10CM|Poisoning by unspecified psychostimulants, assault|Poisoning by unspecified psychostimulants, assault +C2878565|T037|AB|T43.603A|ICD10CM|Poisoning by unsp psychostimulants, assault, init encntr|Poisoning by unsp psychostimulants, assault, init encntr +C2878565|T037|PT|T43.603A|ICD10CM|Poisoning by unspecified psychostimulants, assault, initial encounter|Poisoning by unspecified psychostimulants, assault, initial encounter +C2878566|T037|AB|T43.603D|ICD10CM|Poisoning by unsp psychostimulants, assault, subs encntr|Poisoning by unsp psychostimulants, assault, subs encntr +C2878566|T037|PT|T43.603D|ICD10CM|Poisoning by unspecified psychostimulants, assault, subsequent encounter|Poisoning by unspecified psychostimulants, assault, subsequent encounter +C2878567|T037|AB|T43.603S|ICD10CM|Poisoning by unspecified psychostimulants, assault, sequela|Poisoning by unspecified psychostimulants, assault, sequela +C2878567|T037|PT|T43.603S|ICD10CM|Poisoning by unspecified psychostimulants, assault, sequela|Poisoning by unspecified psychostimulants, assault, sequela +C2878568|T037|AB|T43.604|ICD10CM|Poisoning by unspecified psychostimulants, undetermined|Poisoning by unspecified psychostimulants, undetermined +C2878568|T037|HT|T43.604|ICD10CM|Poisoning by unspecified psychostimulants, undetermined|Poisoning by unspecified psychostimulants, undetermined +C2878569|T037|AB|T43.604A|ICD10CM|Poisoning by unsp psychostimulants, undetermined, init|Poisoning by unsp psychostimulants, undetermined, init +C2878569|T037|PT|T43.604A|ICD10CM|Poisoning by unspecified psychostimulants, undetermined, initial encounter|Poisoning by unspecified psychostimulants, undetermined, initial encounter +C2878570|T037|AB|T43.604D|ICD10CM|Poisoning by unsp psychostimulants, undetermined, subs|Poisoning by unsp psychostimulants, undetermined, subs +C2878570|T037|PT|T43.604D|ICD10CM|Poisoning by unspecified psychostimulants, undetermined, subsequent encounter|Poisoning by unspecified psychostimulants, undetermined, subsequent encounter +C2878571|T037|AB|T43.604S|ICD10CM|Poisoning by unsp psychostimulants, undetermined, sequela|Poisoning by unsp psychostimulants, undetermined, sequela +C2878571|T037|PT|T43.604S|ICD10CM|Poisoning by unspecified psychostimulants, undetermined, sequela|Poisoning by unspecified psychostimulants, undetermined, sequela +C2878572|T037|AB|T43.605|ICD10CM|Adverse effect of unspecified psychostimulants|Adverse effect of unspecified psychostimulants +C2878572|T037|HT|T43.605|ICD10CM|Adverse effect of unspecified psychostimulants|Adverse effect of unspecified psychostimulants +C2878573|T037|AB|T43.605A|ICD10CM|Adverse effect of unspecified psychostimulants, init encntr|Adverse effect of unspecified psychostimulants, init encntr +C2878573|T037|PT|T43.605A|ICD10CM|Adverse effect of unspecified psychostimulants, initial encounter|Adverse effect of unspecified psychostimulants, initial encounter +C2878574|T037|AB|T43.605D|ICD10CM|Adverse effect of unspecified psychostimulants, subs encntr|Adverse effect of unspecified psychostimulants, subs encntr +C2878574|T037|PT|T43.605D|ICD10CM|Adverse effect of unspecified psychostimulants, subsequent encounter|Adverse effect of unspecified psychostimulants, subsequent encounter +C2878575|T037|AB|T43.605S|ICD10CM|Adverse effect of unspecified psychostimulants, sequela|Adverse effect of unspecified psychostimulants, sequela +C2878575|T037|PT|T43.605S|ICD10CM|Adverse effect of unspecified psychostimulants, sequela|Adverse effect of unspecified psychostimulants, sequela +C2878576|T037|AB|T43.606|ICD10CM|Underdosing of unspecified psychostimulants|Underdosing of unspecified psychostimulants +C2878576|T037|HT|T43.606|ICD10CM|Underdosing of unspecified psychostimulants|Underdosing of unspecified psychostimulants +C2878577|T037|AB|T43.606A|ICD10CM|Underdosing of unspecified psychostimulants, init encntr|Underdosing of unspecified psychostimulants, init encntr +C2878577|T037|PT|T43.606A|ICD10CM|Underdosing of unspecified psychostimulants, initial encounter|Underdosing of unspecified psychostimulants, initial encounter +C2878578|T037|AB|T43.606D|ICD10CM|Underdosing of unspecified psychostimulants, subs encntr|Underdosing of unspecified psychostimulants, subs encntr +C2878578|T037|PT|T43.606D|ICD10CM|Underdosing of unspecified psychostimulants, subsequent encounter|Underdosing of unspecified psychostimulants, subsequent encounter +C2878579|T037|AB|T43.606S|ICD10CM|Underdosing of unspecified psychostimulants, sequela|Underdosing of unspecified psychostimulants, sequela +C2878579|T037|PT|T43.606S|ICD10CM|Underdosing of unspecified psychostimulants, sequela|Underdosing of unspecified psychostimulants, sequela +C2878580|T037|AB|T43.61|ICD10CM|Poisoning by, adverse effect of and underdosing of caffeine|Poisoning by, adverse effect of and underdosing of caffeine +C2878580|T037|HT|T43.61|ICD10CM|Poisoning by, adverse effect of and underdosing of caffeine|Poisoning by, adverse effect of and underdosing of caffeine +C0274693|T037|ET|T43.611|ICD10CM|Poisoning by caffeine NOS|Poisoning by caffeine NOS +C2878581|T037|AB|T43.611|ICD10CM|Poisoning by caffeine, accidental (unintentional)|Poisoning by caffeine, accidental (unintentional) +C2878581|T037|HT|T43.611|ICD10CM|Poisoning by caffeine, accidental (unintentional)|Poisoning by caffeine, accidental (unintentional) +C2878582|T037|AB|T43.611A|ICD10CM|Poisoning by caffeine, accidental (unintentional), init|Poisoning by caffeine, accidental (unintentional), init +C2878582|T037|PT|T43.611A|ICD10CM|Poisoning by caffeine, accidental (unintentional), initial encounter|Poisoning by caffeine, accidental (unintentional), initial encounter +C2878583|T037|AB|T43.611D|ICD10CM|Poisoning by caffeine, accidental (unintentional), subs|Poisoning by caffeine, accidental (unintentional), subs +C2878583|T037|PT|T43.611D|ICD10CM|Poisoning by caffeine, accidental (unintentional), subsequent encounter|Poisoning by caffeine, accidental (unintentional), subsequent encounter +C2878584|T037|AB|T43.611S|ICD10CM|Poisoning by caffeine, accidental (unintentional), sequela|Poisoning by caffeine, accidental (unintentional), sequela +C2878584|T037|PT|T43.611S|ICD10CM|Poisoning by caffeine, accidental (unintentional), sequela|Poisoning by caffeine, accidental (unintentional), sequela +C2878585|T037|AB|T43.612|ICD10CM|Poisoning by caffeine, intentional self-harm|Poisoning by caffeine, intentional self-harm +C2878585|T037|HT|T43.612|ICD10CM|Poisoning by caffeine, intentional self-harm|Poisoning by caffeine, intentional self-harm +C2878586|T037|AB|T43.612A|ICD10CM|Poisoning by caffeine, intentional self-harm, init encntr|Poisoning by caffeine, intentional self-harm, init encntr +C2878586|T037|PT|T43.612A|ICD10CM|Poisoning by caffeine, intentional self-harm, initial encounter|Poisoning by caffeine, intentional self-harm, initial encounter +C2878587|T037|AB|T43.612D|ICD10CM|Poisoning by caffeine, intentional self-harm, subs encntr|Poisoning by caffeine, intentional self-harm, subs encntr +C2878587|T037|PT|T43.612D|ICD10CM|Poisoning by caffeine, intentional self-harm, subsequent encounter|Poisoning by caffeine, intentional self-harm, subsequent encounter +C2878588|T037|AB|T43.612S|ICD10CM|Poisoning by caffeine, intentional self-harm, sequela|Poisoning by caffeine, intentional self-harm, sequela +C2878588|T037|PT|T43.612S|ICD10CM|Poisoning by caffeine, intentional self-harm, sequela|Poisoning by caffeine, intentional self-harm, sequela +C2878589|T037|AB|T43.613|ICD10CM|Poisoning by caffeine, assault|Poisoning by caffeine, assault +C2878589|T037|HT|T43.613|ICD10CM|Poisoning by caffeine, assault|Poisoning by caffeine, assault +C2878590|T037|AB|T43.613A|ICD10CM|Poisoning by caffeine, assault, initial encounter|Poisoning by caffeine, assault, initial encounter +C2878590|T037|PT|T43.613A|ICD10CM|Poisoning by caffeine, assault, initial encounter|Poisoning by caffeine, assault, initial encounter +C2878591|T037|AB|T43.613D|ICD10CM|Poisoning by caffeine, assault, subsequent encounter|Poisoning by caffeine, assault, subsequent encounter +C2878591|T037|PT|T43.613D|ICD10CM|Poisoning by caffeine, assault, subsequent encounter|Poisoning by caffeine, assault, subsequent encounter +C2878592|T037|AB|T43.613S|ICD10CM|Poisoning by caffeine, assault, sequela|Poisoning by caffeine, assault, sequela +C2878592|T037|PT|T43.613S|ICD10CM|Poisoning by caffeine, assault, sequela|Poisoning by caffeine, assault, sequela +C2878593|T037|AB|T43.614|ICD10CM|Poisoning by caffeine, undetermined|Poisoning by caffeine, undetermined +C2878593|T037|HT|T43.614|ICD10CM|Poisoning by caffeine, undetermined|Poisoning by caffeine, undetermined +C2878594|T037|AB|T43.614A|ICD10CM|Poisoning by caffeine, undetermined, initial encounter|Poisoning by caffeine, undetermined, initial encounter +C2878594|T037|PT|T43.614A|ICD10CM|Poisoning by caffeine, undetermined, initial encounter|Poisoning by caffeine, undetermined, initial encounter +C2878595|T037|AB|T43.614D|ICD10CM|Poisoning by caffeine, undetermined, subsequent encounter|Poisoning by caffeine, undetermined, subsequent encounter +C2878595|T037|PT|T43.614D|ICD10CM|Poisoning by caffeine, undetermined, subsequent encounter|Poisoning by caffeine, undetermined, subsequent encounter +C2878596|T037|AB|T43.614S|ICD10CM|Poisoning by caffeine, undetermined, sequela|Poisoning by caffeine, undetermined, sequela +C2878596|T037|PT|T43.614S|ICD10CM|Poisoning by caffeine, undetermined, sequela|Poisoning by caffeine, undetermined, sequela +C0413862|T046|AB|T43.615|ICD10CM|Adverse effect of caffeine|Adverse effect of caffeine +C0413862|T046|HT|T43.615|ICD10CM|Adverse effect of caffeine|Adverse effect of caffeine +C2878597|T037|AB|T43.615A|ICD10CM|Adverse effect of caffeine, initial encounter|Adverse effect of caffeine, initial encounter +C2878597|T037|PT|T43.615A|ICD10CM|Adverse effect of caffeine, initial encounter|Adverse effect of caffeine, initial encounter +C2878598|T037|AB|T43.615D|ICD10CM|Adverse effect of caffeine, subsequent encounter|Adverse effect of caffeine, subsequent encounter +C2878598|T037|PT|T43.615D|ICD10CM|Adverse effect of caffeine, subsequent encounter|Adverse effect of caffeine, subsequent encounter +C2878599|T037|AB|T43.615S|ICD10CM|Adverse effect of caffeine, sequela|Adverse effect of caffeine, sequela +C2878599|T037|PT|T43.615S|ICD10CM|Adverse effect of caffeine, sequela|Adverse effect of caffeine, sequela +C2878600|T033|AB|T43.616|ICD10CM|Underdosing of caffeine|Underdosing of caffeine +C2878600|T033|HT|T43.616|ICD10CM|Underdosing of caffeine|Underdosing of caffeine +C2878601|T037|AB|T43.616A|ICD10CM|Underdosing of caffeine, initial encounter|Underdosing of caffeine, initial encounter +C2878601|T037|PT|T43.616A|ICD10CM|Underdosing of caffeine, initial encounter|Underdosing of caffeine, initial encounter +C2878602|T037|AB|T43.616D|ICD10CM|Underdosing of caffeine, subsequent encounter|Underdosing of caffeine, subsequent encounter +C2878602|T037|PT|T43.616D|ICD10CM|Underdosing of caffeine, subsequent encounter|Underdosing of caffeine, subsequent encounter +C2878603|T037|AB|T43.616S|ICD10CM|Underdosing of caffeine, sequela|Underdosing of caffeine, sequela +C2878603|T037|PT|T43.616S|ICD10CM|Underdosing of caffeine, sequela|Underdosing of caffeine, sequela +C2878605|T037|AB|T43.62|ICD10CM|Amphetamines|Amphetamines +C2878605|T037|HT|T43.62|ICD10CM|Poisoning by, adverse effect of and underdosing of amphetamines|Poisoning by, adverse effect of and underdosing of amphetamines +C2878604|T037|ET|T43.62|ICD10CM|Poisoning by, adverse effect of and underdosing of methamphetamines|Poisoning by, adverse effect of and underdosing of methamphetamines +C0274692|T037|ET|T43.621|ICD10CM|Poisoning by amphetamines NOS|Poisoning by amphetamines NOS +C2878606|T037|AB|T43.621|ICD10CM|Poisoning by amphetamines, accidental (unintentional)|Poisoning by amphetamines, accidental (unintentional) +C2878606|T037|HT|T43.621|ICD10CM|Poisoning by amphetamines, accidental (unintentional)|Poisoning by amphetamines, accidental (unintentional) +C2878607|T037|AB|T43.621A|ICD10CM|Poisoning by amphetamines, accidental (unintentional), init|Poisoning by amphetamines, accidental (unintentional), init +C2878607|T037|PT|T43.621A|ICD10CM|Poisoning by amphetamines, accidental (unintentional), initial encounter|Poisoning by amphetamines, accidental (unintentional), initial encounter +C2878608|T037|AB|T43.621D|ICD10CM|Poisoning by amphetamines, accidental (unintentional), subs|Poisoning by amphetamines, accidental (unintentional), subs +C2878608|T037|PT|T43.621D|ICD10CM|Poisoning by amphetamines, accidental (unintentional), subsequent encounter|Poisoning by amphetamines, accidental (unintentional), subsequent encounter +C2878609|T037|PT|T43.621S|ICD10CM|Poisoning by amphetamines, accidental (unintentional), sequela|Poisoning by amphetamines, accidental (unintentional), sequela +C2878609|T037|AB|T43.621S|ICD10CM|Poisoning by amphetamines, accidental, sequela|Poisoning by amphetamines, accidental, sequela +C2878610|T037|AB|T43.622|ICD10CM|Poisoning by amphetamines, intentional self-harm|Poisoning by amphetamines, intentional self-harm +C2878610|T037|HT|T43.622|ICD10CM|Poisoning by amphetamines, intentional self-harm|Poisoning by amphetamines, intentional self-harm +C2878611|T037|AB|T43.622A|ICD10CM|Poisoning by amphetamines, intentional self-harm, init|Poisoning by amphetamines, intentional self-harm, init +C2878611|T037|PT|T43.622A|ICD10CM|Poisoning by amphetamines, intentional self-harm, initial encounter|Poisoning by amphetamines, intentional self-harm, initial encounter +C2878612|T037|AB|T43.622D|ICD10CM|Poisoning by amphetamines, intentional self-harm, subs|Poisoning by amphetamines, intentional self-harm, subs +C2878612|T037|PT|T43.622D|ICD10CM|Poisoning by amphetamines, intentional self-harm, subsequent encounter|Poisoning by amphetamines, intentional self-harm, subsequent encounter +C2878613|T037|AB|T43.622S|ICD10CM|Poisoning by amphetamines, intentional self-harm, sequela|Poisoning by amphetamines, intentional self-harm, sequela +C2878613|T037|PT|T43.622S|ICD10CM|Poisoning by amphetamines, intentional self-harm, sequela|Poisoning by amphetamines, intentional self-harm, sequela +C2878614|T037|AB|T43.623|ICD10CM|Poisoning by amphetamines, assault|Poisoning by amphetamines, assault +C2878614|T037|HT|T43.623|ICD10CM|Poisoning by amphetamines, assault|Poisoning by amphetamines, assault +C2878615|T037|AB|T43.623A|ICD10CM|Poisoning by amphetamines, assault, initial encounter|Poisoning by amphetamines, assault, initial encounter +C2878615|T037|PT|T43.623A|ICD10CM|Poisoning by amphetamines, assault, initial encounter|Poisoning by amphetamines, assault, initial encounter +C2878616|T037|AB|T43.623D|ICD10CM|Poisoning by amphetamines, assault, subsequent encounter|Poisoning by amphetamines, assault, subsequent encounter +C2878616|T037|PT|T43.623D|ICD10CM|Poisoning by amphetamines, assault, subsequent encounter|Poisoning by amphetamines, assault, subsequent encounter +C2878617|T037|AB|T43.623S|ICD10CM|Poisoning by amphetamines, assault, sequela|Poisoning by amphetamines, assault, sequela +C2878617|T037|PT|T43.623S|ICD10CM|Poisoning by amphetamines, assault, sequela|Poisoning by amphetamines, assault, sequela +C2878618|T037|AB|T43.624|ICD10CM|Poisoning by amphetamines, undetermined|Poisoning by amphetamines, undetermined +C2878618|T037|HT|T43.624|ICD10CM|Poisoning by amphetamines, undetermined|Poisoning by amphetamines, undetermined +C2878619|T037|AB|T43.624A|ICD10CM|Poisoning by amphetamines, undetermined, initial encounter|Poisoning by amphetamines, undetermined, initial encounter +C2878619|T037|PT|T43.624A|ICD10CM|Poisoning by amphetamines, undetermined, initial encounter|Poisoning by amphetamines, undetermined, initial encounter +C2878620|T037|AB|T43.624D|ICD10CM|Poisoning by amphetamines, undetermined, subs encntr|Poisoning by amphetamines, undetermined, subs encntr +C2878620|T037|PT|T43.624D|ICD10CM|Poisoning by amphetamines, undetermined, subsequent encounter|Poisoning by amphetamines, undetermined, subsequent encounter +C2878621|T037|AB|T43.624S|ICD10CM|Poisoning by amphetamines, undetermined, sequela|Poisoning by amphetamines, undetermined, sequela +C2878621|T037|PT|T43.624S|ICD10CM|Poisoning by amphetamines, undetermined, sequela|Poisoning by amphetamines, undetermined, sequela +C0569624|T046|AB|T43.625|ICD10CM|Adverse effect of amphetamines|Adverse effect of amphetamines +C0569624|T046|HT|T43.625|ICD10CM|Adverse effect of amphetamines|Adverse effect of amphetamines +C2878622|T037|AB|T43.625A|ICD10CM|Adverse effect of amphetamines, initial encounter|Adverse effect of amphetamines, initial encounter +C2878622|T037|PT|T43.625A|ICD10CM|Adverse effect of amphetamines, initial encounter|Adverse effect of amphetamines, initial encounter +C2878623|T037|AB|T43.625D|ICD10CM|Adverse effect of amphetamines, subsequent encounter|Adverse effect of amphetamines, subsequent encounter +C2878623|T037|PT|T43.625D|ICD10CM|Adverse effect of amphetamines, subsequent encounter|Adverse effect of amphetamines, subsequent encounter +C2878624|T037|AB|T43.625S|ICD10CM|Adverse effect of amphetamines, sequela|Adverse effect of amphetamines, sequela +C2878624|T037|PT|T43.625S|ICD10CM|Adverse effect of amphetamines, sequela|Adverse effect of amphetamines, sequela +C2878625|T033|AB|T43.626|ICD10CM|Underdosing of amphetamines|Underdosing of amphetamines +C2878625|T033|HT|T43.626|ICD10CM|Underdosing of amphetamines|Underdosing of amphetamines +C2878626|T037|AB|T43.626A|ICD10CM|Underdosing of amphetamines, initial encounter|Underdosing of amphetamines, initial encounter +C2878626|T037|PT|T43.626A|ICD10CM|Underdosing of amphetamines, initial encounter|Underdosing of amphetamines, initial encounter +C2878627|T037|AB|T43.626D|ICD10CM|Underdosing of amphetamines, subsequent encounter|Underdosing of amphetamines, subsequent encounter +C2878627|T037|PT|T43.626D|ICD10CM|Underdosing of amphetamines, subsequent encounter|Underdosing of amphetamines, subsequent encounter +C2878628|T037|AB|T43.626S|ICD10CM|Underdosing of amphetamines, sequela|Underdosing of amphetamines, sequela +C2878628|T037|PT|T43.626S|ICD10CM|Underdosing of amphetamines, sequela|Underdosing of amphetamines, sequela +C2878629|T037|AB|T43.63|ICD10CM|Methylphenidate|Methylphenidate +C2878629|T037|HT|T43.63|ICD10CM|Poisoning by, adverse effect of and underdosing of methylphenidate|Poisoning by, adverse effect of and underdosing of methylphenidate +C2712380|T037|ET|T43.631|ICD10CM|Poisoning by methylphenidate NOS|Poisoning by methylphenidate NOS +C2878630|T037|AB|T43.631|ICD10CM|Poisoning by methylphenidate, accidental (unintentional)|Poisoning by methylphenidate, accidental (unintentional) +C2878630|T037|HT|T43.631|ICD10CM|Poisoning by methylphenidate, accidental (unintentional)|Poisoning by methylphenidate, accidental (unintentional) +C2878631|T037|PT|T43.631A|ICD10CM|Poisoning by methylphenidate, accidental (unintentional), initial encounter|Poisoning by methylphenidate, accidental (unintentional), initial encounter +C2878631|T037|AB|T43.631A|ICD10CM|Poisoning by methylphenidate, accidental, init|Poisoning by methylphenidate, accidental, init +C2878632|T037|PT|T43.631D|ICD10CM|Poisoning by methylphenidate, accidental (unintentional), subsequent encounter|Poisoning by methylphenidate, accidental (unintentional), subsequent encounter +C2878632|T037|AB|T43.631D|ICD10CM|Poisoning by methylphenidate, accidental, subs|Poisoning by methylphenidate, accidental, subs +C2878633|T037|PT|T43.631S|ICD10CM|Poisoning by methylphenidate, accidental (unintentional), sequela|Poisoning by methylphenidate, accidental (unintentional), sequela +C2878633|T037|AB|T43.631S|ICD10CM|Poisoning by methylphenidate, accidental, sequela|Poisoning by methylphenidate, accidental, sequela +C2878634|T037|AB|T43.632|ICD10CM|Poisoning by methylphenidate, intentional self-harm|Poisoning by methylphenidate, intentional self-harm +C2878634|T037|HT|T43.632|ICD10CM|Poisoning by methylphenidate, intentional self-harm|Poisoning by methylphenidate, intentional self-harm +C2878635|T037|AB|T43.632A|ICD10CM|Poisoning by methylphenidate, intentional self-harm, init|Poisoning by methylphenidate, intentional self-harm, init +C2878635|T037|PT|T43.632A|ICD10CM|Poisoning by methylphenidate, intentional self-harm, initial encounter|Poisoning by methylphenidate, intentional self-harm, initial encounter +C2878636|T037|AB|T43.632D|ICD10CM|Poisoning by methylphenidate, intentional self-harm, subs|Poisoning by methylphenidate, intentional self-harm, subs +C2878636|T037|PT|T43.632D|ICD10CM|Poisoning by methylphenidate, intentional self-harm, subsequent encounter|Poisoning by methylphenidate, intentional self-harm, subsequent encounter +C2878637|T037|AB|T43.632S|ICD10CM|Poisoning by methylphenidate, intentional self-harm, sequela|Poisoning by methylphenidate, intentional self-harm, sequela +C2878637|T037|PT|T43.632S|ICD10CM|Poisoning by methylphenidate, intentional self-harm, sequela|Poisoning by methylphenidate, intentional self-harm, sequela +C2878638|T037|AB|T43.633|ICD10CM|Poisoning by methylphenidate, assault|Poisoning by methylphenidate, assault +C2878638|T037|HT|T43.633|ICD10CM|Poisoning by methylphenidate, assault|Poisoning by methylphenidate, assault +C2878639|T037|AB|T43.633A|ICD10CM|Poisoning by methylphenidate, assault, initial encounter|Poisoning by methylphenidate, assault, initial encounter +C2878639|T037|PT|T43.633A|ICD10CM|Poisoning by methylphenidate, assault, initial encounter|Poisoning by methylphenidate, assault, initial encounter +C2878640|T037|AB|T43.633D|ICD10CM|Poisoning by methylphenidate, assault, subsequent encounter|Poisoning by methylphenidate, assault, subsequent encounter +C2878640|T037|PT|T43.633D|ICD10CM|Poisoning by methylphenidate, assault, subsequent encounter|Poisoning by methylphenidate, assault, subsequent encounter +C2878641|T037|AB|T43.633S|ICD10CM|Poisoning by methylphenidate, assault, sequela|Poisoning by methylphenidate, assault, sequela +C2878641|T037|PT|T43.633S|ICD10CM|Poisoning by methylphenidate, assault, sequela|Poisoning by methylphenidate, assault, sequela +C2878642|T037|AB|T43.634|ICD10CM|Poisoning by methylphenidate, undetermined|Poisoning by methylphenidate, undetermined +C2878642|T037|HT|T43.634|ICD10CM|Poisoning by methylphenidate, undetermined|Poisoning by methylphenidate, undetermined +C2878643|T037|AB|T43.634A|ICD10CM|Poisoning by methylphenidate, undetermined, init encntr|Poisoning by methylphenidate, undetermined, init encntr +C2878643|T037|PT|T43.634A|ICD10CM|Poisoning by methylphenidate, undetermined, initial encounter|Poisoning by methylphenidate, undetermined, initial encounter +C2878644|T037|AB|T43.634D|ICD10CM|Poisoning by methylphenidate, undetermined, subs encntr|Poisoning by methylphenidate, undetermined, subs encntr +C2878644|T037|PT|T43.634D|ICD10CM|Poisoning by methylphenidate, undetermined, subsequent encounter|Poisoning by methylphenidate, undetermined, subsequent encounter +C2878645|T037|AB|T43.634S|ICD10CM|Poisoning by methylphenidate, undetermined, sequela|Poisoning by methylphenidate, undetermined, sequela +C2878645|T037|PT|T43.634S|ICD10CM|Poisoning by methylphenidate, undetermined, sequela|Poisoning by methylphenidate, undetermined, sequela +C2878646|T037|AB|T43.635|ICD10CM|Adverse effect of methylphenidate|Adverse effect of methylphenidate +C2878646|T037|HT|T43.635|ICD10CM|Adverse effect of methylphenidate|Adverse effect of methylphenidate +C2878647|T037|AB|T43.635A|ICD10CM|Adverse effect of methylphenidate, initial encounter|Adverse effect of methylphenidate, initial encounter +C2878647|T037|PT|T43.635A|ICD10CM|Adverse effect of methylphenidate, initial encounter|Adverse effect of methylphenidate, initial encounter +C2878648|T037|AB|T43.635D|ICD10CM|Adverse effect of methylphenidate, subsequent encounter|Adverse effect of methylphenidate, subsequent encounter +C2878648|T037|PT|T43.635D|ICD10CM|Adverse effect of methylphenidate, subsequent encounter|Adverse effect of methylphenidate, subsequent encounter +C2878649|T037|AB|T43.635S|ICD10CM|Adverse effect of methylphenidate, sequela|Adverse effect of methylphenidate, sequela +C2878649|T037|PT|T43.635S|ICD10CM|Adverse effect of methylphenidate, sequela|Adverse effect of methylphenidate, sequela +C2878650|T037|AB|T43.636|ICD10CM|Underdosing of methylphenidate|Underdosing of methylphenidate +C2878650|T037|HT|T43.636|ICD10CM|Underdosing of methylphenidate|Underdosing of methylphenidate +C2878651|T037|AB|T43.636A|ICD10CM|Underdosing of methylphenidate, initial encounter|Underdosing of methylphenidate, initial encounter +C2878651|T037|PT|T43.636A|ICD10CM|Underdosing of methylphenidate, initial encounter|Underdosing of methylphenidate, initial encounter +C2878652|T037|AB|T43.636D|ICD10CM|Underdosing of methylphenidate, subsequent encounter|Underdosing of methylphenidate, subsequent encounter +C2878652|T037|PT|T43.636D|ICD10CM|Underdosing of methylphenidate, subsequent encounter|Underdosing of methylphenidate, subsequent encounter +C2878653|T037|AB|T43.636S|ICD10CM|Underdosing of methylphenidate, sequela|Underdosing of methylphenidate, sequela +C2878653|T037|PT|T43.636S|ICD10CM|Underdosing of methylphenidate, sequela|Underdosing of methylphenidate, sequela +C4718819|T037|ET|T43.64|ICD10CM|Poisoning by 3,4-methylenedioxymethamphetamine|Poisoning by 3,4-methylenedioxymethamphetamine +C0412866|T037|AB|T43.64|ICD10CM|Poisoning by ecstasy|Poisoning by ecstasy +C0412866|T037|HT|T43.64|ICD10CM|Poisoning by ecstasy|Poisoning by ecstasy +C0412866|T037|ET|T43.64|ICD10CM|Poisoning by MDMA|Poisoning by MDMA +C0412866|T037|ET|T43.641|ICD10CM|Poisoning by ecstasy NOS|Poisoning by ecstasy NOS +C4718820|T037|AB|T43.641|ICD10CM|Poisoning by ecstasy, accidental (unintentional)|Poisoning by ecstasy, accidental (unintentional) +C4718820|T037|HT|T43.641|ICD10CM|Poisoning by ecstasy, accidental (unintentional)|Poisoning by ecstasy, accidental (unintentional) +C4553259|T037|AB|T43.641A|ICD10CM|Poisoning by ecstasy, accidental (unintentional), init|Poisoning by ecstasy, accidental (unintentional), init +C4553259|T037|PT|T43.641A|ICD10CM|Poisoning by ecstasy, accidental (unintentional), initial encounter|Poisoning by ecstasy, accidental (unintentional), initial encounter +C4553260|T037|AB|T43.641D|ICD10CM|Poisoning by ecstasy, accidental (unintentional), subs|Poisoning by ecstasy, accidental (unintentional), subs +C4553260|T037|PT|T43.641D|ICD10CM|Poisoning by ecstasy, accidental (unintentional), subsequent encounter|Poisoning by ecstasy, accidental (unintentional), subsequent encounter +C4553261|T037|AB|T43.641S|ICD10CM|Poisoning by ecstasy, accidental (unintentional), sequela|Poisoning by ecstasy, accidental (unintentional), sequela +C4553261|T037|PT|T43.641S|ICD10CM|Poisoning by ecstasy, accidental (unintentional), sequela|Poisoning by ecstasy, accidental (unintentional), sequela +C4718821|T037|AB|T43.642|ICD10CM|Poisoning by ecstasy, intentional self-harm|Poisoning by ecstasy, intentional self-harm +C4718821|T037|HT|T43.642|ICD10CM|Poisoning by ecstasy, intentional self-harm|Poisoning by ecstasy, intentional self-harm +C4553262|T037|PT|T43.642A|ICD10CM|Poisoning by ecstasy, intentional self-harm, initial encounter|Poisoning by ecstasy, intentional self-harm, initial encounter +C4553262|T037|AB|T43.642A|ICD10CM|Poisoning by ecstasy, self-harm, initial encounter|Poisoning by ecstasy, self-harm, initial encounter +C4553263|T037|PT|T43.642D|ICD10CM|Poisoning by ecstasy, intentional self-harm, subsequent encounter|Poisoning by ecstasy, intentional self-harm, subsequent encounter +C4553263|T037|AB|T43.642D|ICD10CM|Poisoning by ecstasy, self-harm, subsequent encounter|Poisoning by ecstasy, self-harm, subsequent encounter +C4553264|T037|AB|T43.642S|ICD10CM|Poisoning by ecstasy, intentional self-harm, sequela|Poisoning by ecstasy, intentional self-harm, sequela +C4553264|T037|PT|T43.642S|ICD10CM|Poisoning by ecstasy, intentional self-harm, sequela|Poisoning by ecstasy, intentional self-harm, sequela +C4718822|T037|AB|T43.643|ICD10CM|Poisoning by ecstasy, assault|Poisoning by ecstasy, assault +C4718822|T037|HT|T43.643|ICD10CM|Poisoning by ecstasy, assault|Poisoning by ecstasy, assault +C4553426|T037|AB|T43.643A|ICD10CM|Poisoning by ecstasy, assault, initial encounter|Poisoning by ecstasy, assault, initial encounter +C4553426|T037|PT|T43.643A|ICD10CM|Poisoning by ecstasy, assault, initial encounter|Poisoning by ecstasy, assault, initial encounter +C4553427|T037|AB|T43.643D|ICD10CM|Poisoning by ecstasy, assault, subsequent encounter|Poisoning by ecstasy, assault, subsequent encounter +C4553427|T037|PT|T43.643D|ICD10CM|Poisoning by ecstasy, assault, subsequent encounter|Poisoning by ecstasy, assault, subsequent encounter +C4553428|T037|AB|T43.643S|ICD10CM|Poisoning by ecstasy, assault, sequela|Poisoning by ecstasy, assault, sequela +C4553428|T037|PT|T43.643S|ICD10CM|Poisoning by ecstasy, assault, sequela|Poisoning by ecstasy, assault, sequela +C4718823|T037|AB|T43.644|ICD10CM|Poisoning by ecstasy, undetermined|Poisoning by ecstasy, undetermined +C4718823|T037|HT|T43.644|ICD10CM|Poisoning by ecstasy, undetermined|Poisoning by ecstasy, undetermined +C4553429|T037|AB|T43.644A|ICD10CM|Poisoning by ecstasy, undetermined, initial encounter|Poisoning by ecstasy, undetermined, initial encounter +C4553429|T037|PT|T43.644A|ICD10CM|Poisoning by ecstasy, undetermined, initial encounter|Poisoning by ecstasy, undetermined, initial encounter +C4553430|T037|AB|T43.644D|ICD10CM|Poisoning by ecstasy, undetermined, subsequent encounter|Poisoning by ecstasy, undetermined, subsequent encounter +C4553430|T037|PT|T43.644D|ICD10CM|Poisoning by ecstasy, undetermined, subsequent encounter|Poisoning by ecstasy, undetermined, subsequent encounter +C4553431|T037|AB|T43.644S|ICD10CM|Poisoning by ecstasy, undetermined, sequela|Poisoning by ecstasy, undetermined, sequela +C4553431|T037|PT|T43.644S|ICD10CM|Poisoning by ecstasy, undetermined, sequela|Poisoning by ecstasy, undetermined, sequela +C2878654|T037|HT|T43.69|ICD10CM|Poisoning by, adverse effect of and underdosing of other psychostimulants|Poisoning by, adverse effect of and underdosing of other psychostimulants +C2878654|T037|AB|T43.69|ICD10CM|Psychostimulants|Psychostimulants +C2878655|T037|AB|T43.691|ICD10CM|Poisoning by oth psychostim, accidental (unintentional)|Poisoning by oth psychostim, accidental (unintentional) +C2712381|T037|ET|T43.691|ICD10CM|Poisoning by other psychostimulants NOS|Poisoning by other psychostimulants NOS +C2878655|T037|HT|T43.691|ICD10CM|Poisoning by other psychostimulants, accidental (unintentional)|Poisoning by other psychostimulants, accidental (unintentional) +C2878656|T037|AB|T43.691A|ICD10CM|Poisoning by oth psychostim, accidental, init|Poisoning by oth psychostim, accidental, init +C2878656|T037|PT|T43.691A|ICD10CM|Poisoning by other psychostimulants, accidental (unintentional), initial encounter|Poisoning by other psychostimulants, accidental (unintentional), initial encounter +C2878657|T037|AB|T43.691D|ICD10CM|Poisoning by oth psychostim, accidental, subs|Poisoning by oth psychostim, accidental, subs +C2878657|T037|PT|T43.691D|ICD10CM|Poisoning by other psychostimulants, accidental (unintentional), subsequent encounter|Poisoning by other psychostimulants, accidental (unintentional), subsequent encounter +C2878658|T037|AB|T43.691S|ICD10CM|Poisoning by oth psychostim, accidental, sequela|Poisoning by oth psychostim, accidental, sequela +C2878658|T037|PT|T43.691S|ICD10CM|Poisoning by other psychostimulants, accidental (unintentional), sequela|Poisoning by other psychostimulants, accidental (unintentional), sequela +C2878659|T037|AB|T43.692|ICD10CM|Poisoning by other psychostimulants, intentional self-harm|Poisoning by other psychostimulants, intentional self-harm +C2878659|T037|HT|T43.692|ICD10CM|Poisoning by other psychostimulants, intentional self-harm|Poisoning by other psychostimulants, intentional self-harm +C2878660|T037|AB|T43.692A|ICD10CM|Poisoning by oth psychostimulants, self-harm, init|Poisoning by oth psychostimulants, self-harm, init +C2878660|T037|PT|T43.692A|ICD10CM|Poisoning by other psychostimulants, intentional self-harm, initial encounter|Poisoning by other psychostimulants, intentional self-harm, initial encounter +C2878661|T037|AB|T43.692D|ICD10CM|Poisoning by oth psychostimulants, self-harm, subs|Poisoning by oth psychostimulants, self-harm, subs +C2878661|T037|PT|T43.692D|ICD10CM|Poisoning by other psychostimulants, intentional self-harm, subsequent encounter|Poisoning by other psychostimulants, intentional self-harm, subsequent encounter +C2878662|T037|AB|T43.692S|ICD10CM|Poisoning by oth psychostimulants, self-harm, sequela|Poisoning by oth psychostimulants, self-harm, sequela +C2878662|T037|PT|T43.692S|ICD10CM|Poisoning by other psychostimulants, intentional self-harm, sequela|Poisoning by other psychostimulants, intentional self-harm, sequela +C2878663|T037|AB|T43.693|ICD10CM|Poisoning by other psychostimulants, assault|Poisoning by other psychostimulants, assault +C2878663|T037|HT|T43.693|ICD10CM|Poisoning by other psychostimulants, assault|Poisoning by other psychostimulants, assault +C2878664|T037|AB|T43.693A|ICD10CM|Poisoning by other psychostimulants, assault, init encntr|Poisoning by other psychostimulants, assault, init encntr +C2878664|T037|PT|T43.693A|ICD10CM|Poisoning by other psychostimulants, assault, initial encounter|Poisoning by other psychostimulants, assault, initial encounter +C2878665|T037|AB|T43.693D|ICD10CM|Poisoning by other psychostimulants, assault, subs encntr|Poisoning by other psychostimulants, assault, subs encntr +C2878665|T037|PT|T43.693D|ICD10CM|Poisoning by other psychostimulants, assault, subsequent encounter|Poisoning by other psychostimulants, assault, subsequent encounter +C2878666|T037|AB|T43.693S|ICD10CM|Poisoning by other psychostimulants, assault, sequela|Poisoning by other psychostimulants, assault, sequela +C2878666|T037|PT|T43.693S|ICD10CM|Poisoning by other psychostimulants, assault, sequela|Poisoning by other psychostimulants, assault, sequela +C2878667|T037|AB|T43.694|ICD10CM|Poisoning by other psychostimulants, undetermined|Poisoning by other psychostimulants, undetermined +C2878667|T037|HT|T43.694|ICD10CM|Poisoning by other psychostimulants, undetermined|Poisoning by other psychostimulants, undetermined +C2878668|T037|AB|T43.694A|ICD10CM|Poisoning by oth psychostimulants, undetermined, init encntr|Poisoning by oth psychostimulants, undetermined, init encntr +C2878668|T037|PT|T43.694A|ICD10CM|Poisoning by other psychostimulants, undetermined, initial encounter|Poisoning by other psychostimulants, undetermined, initial encounter +C2878669|T037|AB|T43.694D|ICD10CM|Poisoning by oth psychostimulants, undetermined, subs encntr|Poisoning by oth psychostimulants, undetermined, subs encntr +C2878669|T037|PT|T43.694D|ICD10CM|Poisoning by other psychostimulants, undetermined, subsequent encounter|Poisoning by other psychostimulants, undetermined, subsequent encounter +C2878670|T037|AB|T43.694S|ICD10CM|Poisoning by other psychostimulants, undetermined, sequela|Poisoning by other psychostimulants, undetermined, sequela +C2878670|T037|PT|T43.694S|ICD10CM|Poisoning by other psychostimulants, undetermined, sequela|Poisoning by other psychostimulants, undetermined, sequela +C2878671|T037|AB|T43.695|ICD10CM|Adverse effect of other psychostimulants|Adverse effect of other psychostimulants +C2878671|T037|HT|T43.695|ICD10CM|Adverse effect of other psychostimulants|Adverse effect of other psychostimulants +C2878672|T037|AB|T43.695A|ICD10CM|Adverse effect of other psychostimulants, initial encounter|Adverse effect of other psychostimulants, initial encounter +C2878672|T037|PT|T43.695A|ICD10CM|Adverse effect of other psychostimulants, initial encounter|Adverse effect of other psychostimulants, initial encounter +C2878673|T037|AB|T43.695D|ICD10CM|Adverse effect of other psychostimulants, subs encntr|Adverse effect of other psychostimulants, subs encntr +C2878673|T037|PT|T43.695D|ICD10CM|Adverse effect of other psychostimulants, subsequent encounter|Adverse effect of other psychostimulants, subsequent encounter +C2878674|T037|AB|T43.695S|ICD10CM|Adverse effect of other psychostimulants, sequela|Adverse effect of other psychostimulants, sequela +C2878674|T037|PT|T43.695S|ICD10CM|Adverse effect of other psychostimulants, sequela|Adverse effect of other psychostimulants, sequela +C2878675|T037|AB|T43.696|ICD10CM|Underdosing of other psychostimulants|Underdosing of other psychostimulants +C2878675|T037|HT|T43.696|ICD10CM|Underdosing of other psychostimulants|Underdosing of other psychostimulants +C2878676|T037|AB|T43.696A|ICD10CM|Underdosing of other psychostimulants, initial encounter|Underdosing of other psychostimulants, initial encounter +C2878676|T037|PT|T43.696A|ICD10CM|Underdosing of other psychostimulants, initial encounter|Underdosing of other psychostimulants, initial encounter +C2878677|T037|AB|T43.696D|ICD10CM|Underdosing of other psychostimulants, subsequent encounter|Underdosing of other psychostimulants, subsequent encounter +C2878677|T037|PT|T43.696D|ICD10CM|Underdosing of other psychostimulants, subsequent encounter|Underdosing of other psychostimulants, subsequent encounter +C2878678|T037|AB|T43.696S|ICD10CM|Underdosing of other psychostimulants, sequela|Underdosing of other psychostimulants, sequela +C2878678|T037|PT|T43.696S|ICD10CM|Underdosing of other psychostimulants, sequela|Underdosing of other psychostimulants, sequela +C0869091|T037|PS|T43.8|ICD10|Other psychotropic drugs, not elsewhere classified|Other psychotropic drugs, not elsewhere classified +C0869091|T037|PX|T43.8|ICD10|Poisoning by other psychotropic drugs, not elsewhere classified|Poisoning by other psychotropic drugs, not elsewhere classified +C2878679|T037|HT|T43.8|ICD10CM|Poisoning by, adverse effect of and underdosing of other psychotropic drugs|Poisoning by, adverse effect of and underdosing of other psychotropic drugs +C2878679|T037|AB|T43.8|ICD10CM|Psychotropic drugs|Psychotropic drugs +C2878679|T037|HT|T43.8X|ICD10CM|Poisoning by, adverse effect of and underdosing of other psychotropic drugs|Poisoning by, adverse effect of and underdosing of other psychotropic drugs +C2878679|T037|AB|T43.8X|ICD10CM|Psychotropic drugs|Psychotropic drugs +C2878681|T037|AB|T43.8X1|ICD10CM|Poisoning by oth psychotropic drugs, accidental|Poisoning by oth psychotropic drugs, accidental +C2878680|T037|ET|T43.8X1|ICD10CM|Poisoning by other psychotropic drugs NOS|Poisoning by other psychotropic drugs NOS +C2878681|T037|HT|T43.8X1|ICD10CM|Poisoning by other psychotropic drugs, accidental (unintentional)|Poisoning by other psychotropic drugs, accidental (unintentional) +C2878682|T037|AB|T43.8X1A|ICD10CM|Poisoning by oth psychotropic drugs, accidental, init|Poisoning by oth psychotropic drugs, accidental, init +C2878682|T037|PT|T43.8X1A|ICD10CM|Poisoning by other psychotropic drugs, accidental (unintentional), initial encounter|Poisoning by other psychotropic drugs, accidental (unintentional), initial encounter +C2878683|T037|AB|T43.8X1D|ICD10CM|Poisoning by oth psychotropic drugs, accidental, subs|Poisoning by oth psychotropic drugs, accidental, subs +C2878683|T037|PT|T43.8X1D|ICD10CM|Poisoning by other psychotropic drugs, accidental (unintentional), subsequent encounter|Poisoning by other psychotropic drugs, accidental (unintentional), subsequent encounter +C2878684|T037|AB|T43.8X1S|ICD10CM|Poisoning by oth psychotropic drugs, accidental, sequela|Poisoning by oth psychotropic drugs, accidental, sequela +C2878684|T037|PT|T43.8X1S|ICD10CM|Poisoning by other psychotropic drugs, accidental (unintentional), sequela|Poisoning by other psychotropic drugs, accidental (unintentional), sequela +C2878685|T037|AB|T43.8X2|ICD10CM|Poisoning by other psychotropic drugs, intentional self-harm|Poisoning by other psychotropic drugs, intentional self-harm +C2878685|T037|HT|T43.8X2|ICD10CM|Poisoning by other psychotropic drugs, intentional self-harm|Poisoning by other psychotropic drugs, intentional self-harm +C2878686|T037|AB|T43.8X2A|ICD10CM|Poisoning by oth psychotropic drugs, self-harm, init|Poisoning by oth psychotropic drugs, self-harm, init +C2878686|T037|PT|T43.8X2A|ICD10CM|Poisoning by other psychotropic drugs, intentional self-harm, initial encounter|Poisoning by other psychotropic drugs, intentional self-harm, initial encounter +C2878687|T037|AB|T43.8X2D|ICD10CM|Poisoning by oth psychotropic drugs, self-harm, subs|Poisoning by oth psychotropic drugs, self-harm, subs +C2878687|T037|PT|T43.8X2D|ICD10CM|Poisoning by other psychotropic drugs, intentional self-harm, subsequent encounter|Poisoning by other psychotropic drugs, intentional self-harm, subsequent encounter +C2878688|T037|AB|T43.8X2S|ICD10CM|Poisoning by oth psychotropic drugs, self-harm, sequela|Poisoning by oth psychotropic drugs, self-harm, sequela +C2878688|T037|PT|T43.8X2S|ICD10CM|Poisoning by other psychotropic drugs, intentional self-harm, sequela|Poisoning by other psychotropic drugs, intentional self-harm, sequela +C2878689|T037|AB|T43.8X3|ICD10CM|Poisoning by other psychotropic drugs, assault|Poisoning by other psychotropic drugs, assault +C2878689|T037|HT|T43.8X3|ICD10CM|Poisoning by other psychotropic drugs, assault|Poisoning by other psychotropic drugs, assault +C2878690|T037|AB|T43.8X3A|ICD10CM|Poisoning by other psychotropic drugs, assault, init encntr|Poisoning by other psychotropic drugs, assault, init encntr +C2878690|T037|PT|T43.8X3A|ICD10CM|Poisoning by other psychotropic drugs, assault, initial encounter|Poisoning by other psychotropic drugs, assault, initial encounter +C2878691|T037|AB|T43.8X3D|ICD10CM|Poisoning by other psychotropic drugs, assault, subs encntr|Poisoning by other psychotropic drugs, assault, subs encntr +C2878691|T037|PT|T43.8X3D|ICD10CM|Poisoning by other psychotropic drugs, assault, subsequent encounter|Poisoning by other psychotropic drugs, assault, subsequent encounter +C2878692|T037|AB|T43.8X3S|ICD10CM|Poisoning by other psychotropic drugs, assault, sequela|Poisoning by other psychotropic drugs, assault, sequela +C2878692|T037|PT|T43.8X3S|ICD10CM|Poisoning by other psychotropic drugs, assault, sequela|Poisoning by other psychotropic drugs, assault, sequela +C2878693|T037|AB|T43.8X4|ICD10CM|Poisoning by other psychotropic drugs, undetermined|Poisoning by other psychotropic drugs, undetermined +C2878693|T037|HT|T43.8X4|ICD10CM|Poisoning by other psychotropic drugs, undetermined|Poisoning by other psychotropic drugs, undetermined +C2878694|T037|AB|T43.8X4A|ICD10CM|Poisoning by oth psychotropic drugs, undetermined, init|Poisoning by oth psychotropic drugs, undetermined, init +C2878694|T037|PT|T43.8X4A|ICD10CM|Poisoning by other psychotropic drugs, undetermined, initial encounter|Poisoning by other psychotropic drugs, undetermined, initial encounter +C2878695|T037|AB|T43.8X4D|ICD10CM|Poisoning by oth psychotropic drugs, undetermined, subs|Poisoning by oth psychotropic drugs, undetermined, subs +C2878695|T037|PT|T43.8X4D|ICD10CM|Poisoning by other psychotropic drugs, undetermined, subsequent encounter|Poisoning by other psychotropic drugs, undetermined, subsequent encounter +C2878696|T037|AB|T43.8X4S|ICD10CM|Poisoning by other psychotropic drugs, undetermined, sequela|Poisoning by other psychotropic drugs, undetermined, sequela +C2878696|T037|PT|T43.8X4S|ICD10CM|Poisoning by other psychotropic drugs, undetermined, sequela|Poisoning by other psychotropic drugs, undetermined, sequela +C2878697|T037|AB|T43.8X5|ICD10CM|Adverse effect of other psychotropic drugs|Adverse effect of other psychotropic drugs +C2878697|T037|HT|T43.8X5|ICD10CM|Adverse effect of other psychotropic drugs|Adverse effect of other psychotropic drugs +C2878698|T037|AB|T43.8X5A|ICD10CM|Adverse effect of other psychotropic drugs, init encntr|Adverse effect of other psychotropic drugs, init encntr +C2878698|T037|PT|T43.8X5A|ICD10CM|Adverse effect of other psychotropic drugs, initial encounter|Adverse effect of other psychotropic drugs, initial encounter +C2878699|T037|AB|T43.8X5D|ICD10CM|Adverse effect of other psychotropic drugs, subs encntr|Adverse effect of other psychotropic drugs, subs encntr +C2878699|T037|PT|T43.8X5D|ICD10CM|Adverse effect of other psychotropic drugs, subsequent encounter|Adverse effect of other psychotropic drugs, subsequent encounter +C2878700|T037|AB|T43.8X5S|ICD10CM|Adverse effect of other psychotropic drugs, sequela|Adverse effect of other psychotropic drugs, sequela +C2878700|T037|PT|T43.8X5S|ICD10CM|Adverse effect of other psychotropic drugs, sequela|Adverse effect of other psychotropic drugs, sequela +C2878701|T037|AB|T43.8X6|ICD10CM|Underdosing of other psychotropic drugs|Underdosing of other psychotropic drugs +C2878701|T037|HT|T43.8X6|ICD10CM|Underdosing of other psychotropic drugs|Underdosing of other psychotropic drugs +C2878702|T037|AB|T43.8X6A|ICD10CM|Underdosing of other psychotropic drugs, initial encounter|Underdosing of other psychotropic drugs, initial encounter +C2878702|T037|PT|T43.8X6A|ICD10CM|Underdosing of other psychotropic drugs, initial encounter|Underdosing of other psychotropic drugs, initial encounter +C2878703|T037|AB|T43.8X6D|ICD10CM|Underdosing of other psychotropic drugs, subs encntr|Underdosing of other psychotropic drugs, subs encntr +C2878703|T037|PT|T43.8X6D|ICD10CM|Underdosing of other psychotropic drugs, subsequent encounter|Underdosing of other psychotropic drugs, subsequent encounter +C2878704|T037|AB|T43.8X6S|ICD10CM|Underdosing of other psychotropic drugs, sequela|Underdosing of other psychotropic drugs, sequela +C2878704|T037|PT|T43.8X6S|ICD10CM|Underdosing of other psychotropic drugs, sequela|Underdosing of other psychotropic drugs, sequela +C0161577|T037|PX|T43.9|ICD10|Poisoning by psychotropic drug, unspecified|Poisoning by psychotropic drug, unspecified +C2878705|T037|HT|T43.9|ICD10CM|Poisoning by, adverse effect of and underdosing of unspecified psychotropic drug|Poisoning by, adverse effect of and underdosing of unspecified psychotropic drug +C0161577|T037|PS|T43.9|ICD10|Psychotropic drug, unspecified|Psychotropic drug, unspecified +C2878705|T037|AB|T43.9|ICD10CM|Unsp psychotropic drug|Unsp psychotropic drug +C2878706|T037|ET|T43.91|ICD10CM|Poisoning by psychotropic drug NOS|Poisoning by psychotropic drug NOS +C2878707|T037|AB|T43.91|ICD10CM|Poisoning by unsp psychotropic drug, accidental|Poisoning by unsp psychotropic drug, accidental +C2878707|T037|HT|T43.91|ICD10CM|Poisoning by unspecified psychotropic drug, accidental (unintentional)|Poisoning by unspecified psychotropic drug, accidental (unintentional) +C2878708|T037|AB|T43.91XA|ICD10CM|Poisoning by unsp psychotropic drug, accidental, init|Poisoning by unsp psychotropic drug, accidental, init +C2878708|T037|PT|T43.91XA|ICD10CM|Poisoning by unspecified psychotropic drug, accidental (unintentional), initial encounter|Poisoning by unspecified psychotropic drug, accidental (unintentional), initial encounter +C2878709|T037|AB|T43.91XD|ICD10CM|Poisoning by unsp psychotropic drug, accidental, subs|Poisoning by unsp psychotropic drug, accidental, subs +C2878709|T037|PT|T43.91XD|ICD10CM|Poisoning by unspecified psychotropic drug, accidental (unintentional), subsequent encounter|Poisoning by unspecified psychotropic drug, accidental (unintentional), subsequent encounter +C2878710|T037|AB|T43.91XS|ICD10CM|Poisoning by unsp psychotropic drug, accidental, sequela|Poisoning by unsp psychotropic drug, accidental, sequela +C2878710|T037|PT|T43.91XS|ICD10CM|Poisoning by unspecified psychotropic drug, accidental (unintentional), sequela|Poisoning by unspecified psychotropic drug, accidental (unintentional), sequela +C2878711|T037|AB|T43.92|ICD10CM|Poisoning by unsp psychotropic drug, intentional self-harm|Poisoning by unsp psychotropic drug, intentional self-harm +C2878711|T037|HT|T43.92|ICD10CM|Poisoning by unspecified psychotropic drug, intentional self-harm|Poisoning by unspecified psychotropic drug, intentional self-harm +C2878712|T037|AB|T43.92XA|ICD10CM|Poisoning by unsp psychotropic drug, self-harm, init|Poisoning by unsp psychotropic drug, self-harm, init +C2878712|T037|PT|T43.92XA|ICD10CM|Poisoning by unspecified psychotropic drug, intentional self-harm, initial encounter|Poisoning by unspecified psychotropic drug, intentional self-harm, initial encounter +C2878713|T037|AB|T43.92XD|ICD10CM|Poisoning by unsp psychotropic drug, self-harm, subs|Poisoning by unsp psychotropic drug, self-harm, subs +C2878713|T037|PT|T43.92XD|ICD10CM|Poisoning by unspecified psychotropic drug, intentional self-harm, subsequent encounter|Poisoning by unspecified psychotropic drug, intentional self-harm, subsequent encounter +C2878714|T037|AB|T43.92XS|ICD10CM|Poisoning by unsp psychotropic drug, self-harm, sequela|Poisoning by unsp psychotropic drug, self-harm, sequela +C2878714|T037|PT|T43.92XS|ICD10CM|Poisoning by unspecified psychotropic drug, intentional self-harm, sequela|Poisoning by unspecified psychotropic drug, intentional self-harm, sequela +C2878715|T037|AB|T43.93|ICD10CM|Poisoning by unspecified psychotropic drug, assault|Poisoning by unspecified psychotropic drug, assault +C2878715|T037|HT|T43.93|ICD10CM|Poisoning by unspecified psychotropic drug, assault|Poisoning by unspecified psychotropic drug, assault +C2878716|T037|AB|T43.93XA|ICD10CM|Poisoning by unsp psychotropic drug, assault, init encntr|Poisoning by unsp psychotropic drug, assault, init encntr +C2878716|T037|PT|T43.93XA|ICD10CM|Poisoning by unspecified psychotropic drug, assault, initial encounter|Poisoning by unspecified psychotropic drug, assault, initial encounter +C2878717|T037|AB|T43.93XD|ICD10CM|Poisoning by unsp psychotropic drug, assault, subs encntr|Poisoning by unsp psychotropic drug, assault, subs encntr +C2878717|T037|PT|T43.93XD|ICD10CM|Poisoning by unspecified psychotropic drug, assault, subsequent encounter|Poisoning by unspecified psychotropic drug, assault, subsequent encounter +C2878718|T037|AB|T43.93XS|ICD10CM|Poisoning by unspecified psychotropic drug, assault, sequela|Poisoning by unspecified psychotropic drug, assault, sequela +C2878718|T037|PT|T43.93XS|ICD10CM|Poisoning by unspecified psychotropic drug, assault, sequela|Poisoning by unspecified psychotropic drug, assault, sequela +C2878719|T037|AB|T43.94|ICD10CM|Poisoning by unspecified psychotropic drug, undetermined|Poisoning by unspecified psychotropic drug, undetermined +C2878719|T037|HT|T43.94|ICD10CM|Poisoning by unspecified psychotropic drug, undetermined|Poisoning by unspecified psychotropic drug, undetermined +C2878720|T037|AB|T43.94XA|ICD10CM|Poisoning by unsp psychotropic drug, undetermined, init|Poisoning by unsp psychotropic drug, undetermined, init +C2878720|T037|PT|T43.94XA|ICD10CM|Poisoning by unspecified psychotropic drug, undetermined, initial encounter|Poisoning by unspecified psychotropic drug, undetermined, initial encounter +C2878721|T037|AB|T43.94XD|ICD10CM|Poisoning by unsp psychotropic drug, undetermined, subs|Poisoning by unsp psychotropic drug, undetermined, subs +C2878721|T037|PT|T43.94XD|ICD10CM|Poisoning by unspecified psychotropic drug, undetermined, subsequent encounter|Poisoning by unspecified psychotropic drug, undetermined, subsequent encounter +C2878722|T037|AB|T43.94XS|ICD10CM|Poisoning by unsp psychotropic drug, undetermined, sequela|Poisoning by unsp psychotropic drug, undetermined, sequela +C2878722|T037|PT|T43.94XS|ICD10CM|Poisoning by unspecified psychotropic drug, undetermined, sequela|Poisoning by unspecified psychotropic drug, undetermined, sequela +C2878723|T037|AB|T43.95|ICD10CM|Adverse effect of unspecified psychotropic drug|Adverse effect of unspecified psychotropic drug +C2878723|T037|HT|T43.95|ICD10CM|Adverse effect of unspecified psychotropic drug|Adverse effect of unspecified psychotropic drug +C2878724|T037|AB|T43.95XA|ICD10CM|Adverse effect of unspecified psychotropic drug, init encntr|Adverse effect of unspecified psychotropic drug, init encntr +C2878724|T037|PT|T43.95XA|ICD10CM|Adverse effect of unspecified psychotropic drug, initial encounter|Adverse effect of unspecified psychotropic drug, initial encounter +C2878725|T037|AB|T43.95XD|ICD10CM|Adverse effect of unspecified psychotropic drug, subs encntr|Adverse effect of unspecified psychotropic drug, subs encntr +C2878725|T037|PT|T43.95XD|ICD10CM|Adverse effect of unspecified psychotropic drug, subsequent encounter|Adverse effect of unspecified psychotropic drug, subsequent encounter +C2878726|T037|AB|T43.95XS|ICD10CM|Adverse effect of unspecified psychotropic drug, sequela|Adverse effect of unspecified psychotropic drug, sequela +C2878726|T037|PT|T43.95XS|ICD10CM|Adverse effect of unspecified psychotropic drug, sequela|Adverse effect of unspecified psychotropic drug, sequela +C2878727|T033|AB|T43.96|ICD10CM|Underdosing of unspecified psychotropic drug|Underdosing of unspecified psychotropic drug +C2878727|T033|HT|T43.96|ICD10CM|Underdosing of unspecified psychotropic drug|Underdosing of unspecified psychotropic drug +C2976963|T033|AB|T43.96XA|ICD10CM|Underdosing of unspecified psychotropic drug, init encntr|Underdosing of unspecified psychotropic drug, init encntr +C2976963|T033|PT|T43.96XA|ICD10CM|Underdosing of unspecified psychotropic drug, initial encounter|Underdosing of unspecified psychotropic drug, initial encounter +C2976964|T033|AB|T43.96XD|ICD10CM|Underdosing of unspecified psychotropic drug, subs encntr|Underdosing of unspecified psychotropic drug, subs encntr +C2976964|T033|PT|T43.96XD|ICD10CM|Underdosing of unspecified psychotropic drug, subsequent encounter|Underdosing of unspecified psychotropic drug, subsequent encounter +C2976965|T033|AB|T43.96XS|ICD10CM|Underdosing of unspecified psychotropic drug, sequela|Underdosing of unspecified psychotropic drug, sequela +C2976965|T033|PT|T43.96XS|ICD10CM|Underdosing of unspecified psychotropic drug, sequela|Underdosing of unspecified psychotropic drug, sequela +C2878731|T037|AB|T44|ICD10CM|Drugs primarily affecting the autonomic nervous system|Drugs primarily affecting the autonomic nervous system +C0161593|T037|HT|T44|ICD10|Poisoning by drugs primarily affecting the autonomic nervous system|Poisoning by drugs primarily affecting the autonomic nervous system +C2878732|T037|AB|T44.0|ICD10CM|Anticholinesterase agents|Anticholinesterase agents +C0274704|T037|PS|T44.0|ICD10|Anticholinesterase agents|Anticholinesterase agents +C0274704|T037|PX|T44.0|ICD10|Poisoning by anticholinesterase agents|Poisoning by anticholinesterase agents +C2878732|T037|HT|T44.0|ICD10CM|Poisoning by, adverse effect of and underdosing of anticholinesterase agents|Poisoning by, adverse effect of and underdosing of anticholinesterase agents +C2878732|T037|AB|T44.0X|ICD10CM|Anticholinesterase agents|Anticholinesterase agents +C2878732|T037|HT|T44.0X|ICD10CM|Poisoning by, adverse effect of and underdosing of anticholinesterase agents|Poisoning by, adverse effect of and underdosing of anticholinesterase agents +C2878733|T037|AB|T44.0X1|ICD10CM|Poisoning by anticholin agents, accidental (unintentional)|Poisoning by anticholin agents, accidental (unintentional) +C0274704|T037|ET|T44.0X1|ICD10CM|Poisoning by anticholinesterase agents NOS|Poisoning by anticholinesterase agents NOS +C2878733|T037|HT|T44.0X1|ICD10CM|Poisoning by anticholinesterase agents, accidental (unintentional)|Poisoning by anticholinesterase agents, accidental (unintentional) +C2878734|T037|AB|T44.0X1A|ICD10CM|Poisoning by anticholin agents, accidental, init|Poisoning by anticholin agents, accidental, init +C2878734|T037|PT|T44.0X1A|ICD10CM|Poisoning by anticholinesterase agents, accidental (unintentional), initial encounter|Poisoning by anticholinesterase agents, accidental (unintentional), initial encounter +C2878735|T037|AB|T44.0X1D|ICD10CM|Poisoning by anticholin agents, accidental, subs|Poisoning by anticholin agents, accidental, subs +C2878735|T037|PT|T44.0X1D|ICD10CM|Poisoning by anticholinesterase agents, accidental (unintentional), subsequent encounter|Poisoning by anticholinesterase agents, accidental (unintentional), subsequent encounter +C2878736|T037|AB|T44.0X1S|ICD10CM|Poisoning by anticholin agents, accidental, sequela|Poisoning by anticholin agents, accidental, sequela +C2878736|T037|PT|T44.0X1S|ICD10CM|Poisoning by anticholinesterase agents, accidental (unintentional), sequela|Poisoning by anticholinesterase agents, accidental (unintentional), sequela +C2878737|T037|HT|T44.0X2|ICD10CM|Poisoning by anticholinesterase agents, intentional self-harm|Poisoning by anticholinesterase agents, intentional self-harm +C2878737|T037|AB|T44.0X2|ICD10CM|Poisoning by anticholinesterase agents, self-harm|Poisoning by anticholinesterase agents, self-harm +C2878738|T037|PT|T44.0X2A|ICD10CM|Poisoning by anticholinesterase agents, intentional self-harm, initial encounter|Poisoning by anticholinesterase agents, intentional self-harm, initial encounter +C2878738|T037|AB|T44.0X2A|ICD10CM|Poisoning by anticholinesterase agents, self-harm, init|Poisoning by anticholinesterase agents, self-harm, init +C2878739|T037|PT|T44.0X2D|ICD10CM|Poisoning by anticholinesterase agents, intentional self-harm, subsequent encounter|Poisoning by anticholinesterase agents, intentional self-harm, subsequent encounter +C2878739|T037|AB|T44.0X2D|ICD10CM|Poisoning by anticholinesterase agents, self-harm, subs|Poisoning by anticholinesterase agents, self-harm, subs +C2878740|T037|PT|T44.0X2S|ICD10CM|Poisoning by anticholinesterase agents, intentional self-harm, sequela|Poisoning by anticholinesterase agents, intentional self-harm, sequela +C2878740|T037|AB|T44.0X2S|ICD10CM|Poisoning by anticholinesterase agents, self-harm, sequela|Poisoning by anticholinesterase agents, self-harm, sequela +C2878741|T037|AB|T44.0X3|ICD10CM|Poisoning by anticholinesterase agents, assault|Poisoning by anticholinesterase agents, assault +C2878741|T037|HT|T44.0X3|ICD10CM|Poisoning by anticholinesterase agents, assault|Poisoning by anticholinesterase agents, assault +C2878742|T037|AB|T44.0X3A|ICD10CM|Poisoning by anticholinesterase agents, assault, init encntr|Poisoning by anticholinesterase agents, assault, init encntr +C2878742|T037|PT|T44.0X3A|ICD10CM|Poisoning by anticholinesterase agents, assault, initial encounter|Poisoning by anticholinesterase agents, assault, initial encounter +C2878743|T037|AB|T44.0X3D|ICD10CM|Poisoning by anticholinesterase agents, assault, subs encntr|Poisoning by anticholinesterase agents, assault, subs encntr +C2878743|T037|PT|T44.0X3D|ICD10CM|Poisoning by anticholinesterase agents, assault, subsequent encounter|Poisoning by anticholinesterase agents, assault, subsequent encounter +C2878744|T037|AB|T44.0X3S|ICD10CM|Poisoning by anticholinesterase agents, assault, sequela|Poisoning by anticholinesterase agents, assault, sequela +C2878744|T037|PT|T44.0X3S|ICD10CM|Poisoning by anticholinesterase agents, assault, sequela|Poisoning by anticholinesterase agents, assault, sequela +C2878745|T037|AB|T44.0X4|ICD10CM|Poisoning by anticholinesterase agents, undetermined|Poisoning by anticholinesterase agents, undetermined +C2878745|T037|HT|T44.0X4|ICD10CM|Poisoning by anticholinesterase agents, undetermined|Poisoning by anticholinesterase agents, undetermined +C2878746|T037|AB|T44.0X4A|ICD10CM|Poisoning by anticholinesterase agents, undetermined, init|Poisoning by anticholinesterase agents, undetermined, init +C2878746|T037|PT|T44.0X4A|ICD10CM|Poisoning by anticholinesterase agents, undetermined, initial encounter|Poisoning by anticholinesterase agents, undetermined, initial encounter +C2878747|T037|AB|T44.0X4D|ICD10CM|Poisoning by anticholinesterase agents, undetermined, subs|Poisoning by anticholinesterase agents, undetermined, subs +C2878747|T037|PT|T44.0X4D|ICD10CM|Poisoning by anticholinesterase agents, undetermined, subsequent encounter|Poisoning by anticholinesterase agents, undetermined, subsequent encounter +C2878748|T037|AB|T44.0X4S|ICD10CM|Poisoning by anticholin agents, undetermined, sequela|Poisoning by anticholin agents, undetermined, sequela +C2878748|T037|PT|T44.0X4S|ICD10CM|Poisoning by anticholinesterase agents, undetermined, sequela|Poisoning by anticholinesterase agents, undetermined, sequela +C2878749|T037|AB|T44.0X5|ICD10CM|Adverse effect of anticholinesterase agents|Adverse effect of anticholinesterase agents +C2878749|T037|HT|T44.0X5|ICD10CM|Adverse effect of anticholinesterase agents|Adverse effect of anticholinesterase agents +C2878750|T037|AB|T44.0X5A|ICD10CM|Adverse effect of anticholinesterase agents, init encntr|Adverse effect of anticholinesterase agents, init encntr +C2878750|T037|PT|T44.0X5A|ICD10CM|Adverse effect of anticholinesterase agents, initial encounter|Adverse effect of anticholinesterase agents, initial encounter +C2878751|T037|AB|T44.0X5D|ICD10CM|Adverse effect of anticholinesterase agents, subs encntr|Adverse effect of anticholinesterase agents, subs encntr +C2878751|T037|PT|T44.0X5D|ICD10CM|Adverse effect of anticholinesterase agents, subsequent encounter|Adverse effect of anticholinesterase agents, subsequent encounter +C2878752|T037|AB|T44.0X5S|ICD10CM|Adverse effect of anticholinesterase agents, sequela|Adverse effect of anticholinesterase agents, sequela +C2878752|T037|PT|T44.0X5S|ICD10CM|Adverse effect of anticholinesterase agents, sequela|Adverse effect of anticholinesterase agents, sequela +C2878753|T037|AB|T44.0X6|ICD10CM|Underdosing of anticholinesterase agents|Underdosing of anticholinesterase agents +C2878753|T037|HT|T44.0X6|ICD10CM|Underdosing of anticholinesterase agents|Underdosing of anticholinesterase agents +C2878754|T037|AB|T44.0X6A|ICD10CM|Underdosing of anticholinesterase agents, initial encounter|Underdosing of anticholinesterase agents, initial encounter +C2878754|T037|PT|T44.0X6A|ICD10CM|Underdosing of anticholinesterase agents, initial encounter|Underdosing of anticholinesterase agents, initial encounter +C2878755|T037|AB|T44.0X6D|ICD10CM|Underdosing of anticholinesterase agents, subs encntr|Underdosing of anticholinesterase agents, subs encntr +C2878755|T037|PT|T44.0X6D|ICD10CM|Underdosing of anticholinesterase agents, subsequent encounter|Underdosing of anticholinesterase agents, subsequent encounter +C2878756|T037|AB|T44.0X6S|ICD10CM|Underdosing of anticholinesterase agents, sequela|Underdosing of anticholinesterase agents, sequela +C2878756|T037|PT|T44.0X6S|ICD10CM|Underdosing of anticholinesterase agents, sequela|Underdosing of anticholinesterase agents, sequela +C0478444|T037|PS|T44.1|ICD10|Other parasympathomimetics [cholinergics]|Other parasympathomimetics [cholinergics] +C2878757|T037|AB|T44.1|ICD10CM|Parasympathomimetics|Parasympathomimetics +C0478444|T037|PX|T44.1|ICD10|Poisoning by other parasympathomimetics [cholinergics]|Poisoning by other parasympathomimetics [cholinergics] +C2878757|T037|HT|T44.1|ICD10CM|Poisoning by, adverse effect of and underdosing of other parasympathomimetics [cholinergics]|Poisoning by, adverse effect of and underdosing of other parasympathomimetics [cholinergics] +C2878757|T037|AB|T44.1X|ICD10CM|Parasympathomimetics|Parasympathomimetics +C2878757|T037|HT|T44.1X|ICD10CM|Poisoning by, adverse effect of and underdosing of other parasympathomimetics [cholinergics]|Poisoning by, adverse effect of and underdosing of other parasympathomimetics [cholinergics] +C2878758|T037|AB|T44.1X1|ICD10CM|Poisoning by oth parasympath, accidental (unintentional)|Poisoning by oth parasympath, accidental (unintentional) +C0478444|T037|ET|T44.1X1|ICD10CM|Poisoning by other parasympathomimetics [cholinergics] NOS|Poisoning by other parasympathomimetics [cholinergics] NOS +C2878758|T037|HT|T44.1X1|ICD10CM|Poisoning by other parasympathomimetics [cholinergics], accidental (unintentional)|Poisoning by other parasympathomimetics [cholinergics], accidental (unintentional) +C2878759|T037|AB|T44.1X1A|ICD10CM|Poisoning by oth parasympath, accidental, init|Poisoning by oth parasympath, accidental, init +C2878760|T037|AB|T44.1X1D|ICD10CM|Poisoning by oth parasympath, accidental, subs|Poisoning by oth parasympath, accidental, subs +C2878761|T037|AB|T44.1X1S|ICD10CM|Poisoning by oth parasympath, accidental, sequela|Poisoning by oth parasympath, accidental, sequela +C2878761|T037|PT|T44.1X1S|ICD10CM|Poisoning by other parasympathomimetics [cholinergics], accidental (unintentional), sequela|Poisoning by other parasympathomimetics [cholinergics], accidental (unintentional), sequela +C2878762|T037|AB|T44.1X2|ICD10CM|Poisoning by oth parasympathomimetics, intentional self-harm|Poisoning by oth parasympathomimetics, intentional self-harm +C2878762|T037|HT|T44.1X2|ICD10CM|Poisoning by other parasympathomimetics [cholinergics], intentional self-harm|Poisoning by other parasympathomimetics [cholinergics], intentional self-harm +C2878763|T037|AB|T44.1X2A|ICD10CM|Poisoning by oth parasympathomimetics, self-harm, init|Poisoning by oth parasympathomimetics, self-harm, init +C2878763|T037|PT|T44.1X2A|ICD10CM|Poisoning by other parasympathomimetics [cholinergics], intentional self-harm, initial encounter|Poisoning by other parasympathomimetics [cholinergics], intentional self-harm, initial encounter +C2878764|T037|AB|T44.1X2D|ICD10CM|Poisoning by oth parasympathomimetics, self-harm, subs|Poisoning by oth parasympathomimetics, self-harm, subs +C2878764|T037|PT|T44.1X2D|ICD10CM|Poisoning by other parasympathomimetics [cholinergics], intentional self-harm, subsequent encounter|Poisoning by other parasympathomimetics [cholinergics], intentional self-harm, subsequent encounter +C2878765|T037|AB|T44.1X2S|ICD10CM|Poisoning by oth parasympathomimetics, self-harm, sequela|Poisoning by oth parasympathomimetics, self-harm, sequela +C2878765|T037|PT|T44.1X2S|ICD10CM|Poisoning by other parasympathomimetics [cholinergics], intentional self-harm, sequela|Poisoning by other parasympathomimetics [cholinergics], intentional self-harm, sequela +C2878766|T037|HT|T44.1X3|ICD10CM|Poisoning by other parasympathomimetics [cholinergics], assault|Poisoning by other parasympathomimetics [cholinergics], assault +C2878766|T037|AB|T44.1X3|ICD10CM|Poisoning by other parasympathomimetics, assault|Poisoning by other parasympathomimetics, assault +C2878767|T037|AB|T44.1X3A|ICD10CM|Poisoning by oth parasympathomimetics, assault, init encntr|Poisoning by oth parasympathomimetics, assault, init encntr +C2878767|T037|PT|T44.1X3A|ICD10CM|Poisoning by other parasympathomimetics [cholinergics], assault, initial encounter|Poisoning by other parasympathomimetics [cholinergics], assault, initial encounter +C2878768|T037|AB|T44.1X3D|ICD10CM|Poisoning by oth parasympathomimetics, assault, subs encntr|Poisoning by oth parasympathomimetics, assault, subs encntr +C2878768|T037|PT|T44.1X3D|ICD10CM|Poisoning by other parasympathomimetics [cholinergics], assault, subsequent encounter|Poisoning by other parasympathomimetics [cholinergics], assault, subsequent encounter +C2878769|T037|PT|T44.1X3S|ICD10CM|Poisoning by other parasympathomimetics [cholinergics], assault, sequela|Poisoning by other parasympathomimetics [cholinergics], assault, sequela +C2878769|T037|AB|T44.1X3S|ICD10CM|Poisoning by other parasympathomimetics, assault, sequela|Poisoning by other parasympathomimetics, assault, sequela +C2878770|T037|HT|T44.1X4|ICD10CM|Poisoning by other parasympathomimetics [cholinergics], undetermined|Poisoning by other parasympathomimetics [cholinergics], undetermined +C2878770|T037|AB|T44.1X4|ICD10CM|Poisoning by other parasympathomimetics, undetermined|Poisoning by other parasympathomimetics, undetermined +C2878771|T037|AB|T44.1X4A|ICD10CM|Poisoning by oth parasympathomimetics, undetermined, init|Poisoning by oth parasympathomimetics, undetermined, init +C2878771|T037|PT|T44.1X4A|ICD10CM|Poisoning by other parasympathomimetics [cholinergics], undetermined, initial encounter|Poisoning by other parasympathomimetics [cholinergics], undetermined, initial encounter +C2878772|T037|AB|T44.1X4D|ICD10CM|Poisoning by oth parasympathomimetics, undetermined, subs|Poisoning by oth parasympathomimetics, undetermined, subs +C2878772|T037|PT|T44.1X4D|ICD10CM|Poisoning by other parasympathomimetics [cholinergics], undetermined, subsequent encounter|Poisoning by other parasympathomimetics [cholinergics], undetermined, subsequent encounter +C2878773|T037|AB|T44.1X4S|ICD10CM|Poisoning by oth parasympathomimetics, undetermined, sequela|Poisoning by oth parasympathomimetics, undetermined, sequela +C2878773|T037|PT|T44.1X4S|ICD10CM|Poisoning by other parasympathomimetics [cholinergics], undetermined, sequela|Poisoning by other parasympathomimetics [cholinergics], undetermined, sequela +C2878774|T037|AB|T44.1X5|ICD10CM|Adverse effect of other parasympathomimetics [cholinergics]|Adverse effect of other parasympathomimetics [cholinergics] +C2878774|T037|HT|T44.1X5|ICD10CM|Adverse effect of other parasympathomimetics [cholinergics]|Adverse effect of other parasympathomimetics [cholinergics] +C2878775|T037|PT|T44.1X5A|ICD10CM|Adverse effect of other parasympathomimetics [cholinergics], initial encounter|Adverse effect of other parasympathomimetics [cholinergics], initial encounter +C2878775|T037|AB|T44.1X5A|ICD10CM|Adverse effect of other parasympathomimetics, init encntr|Adverse effect of other parasympathomimetics, init encntr +C2878776|T037|PT|T44.1X5D|ICD10CM|Adverse effect of other parasympathomimetics [cholinergics], subsequent encounter|Adverse effect of other parasympathomimetics [cholinergics], subsequent encounter +C2878776|T037|AB|T44.1X5D|ICD10CM|Adverse effect of other parasympathomimetics, subs encntr|Adverse effect of other parasympathomimetics, subs encntr +C2878777|T037|PT|T44.1X5S|ICD10CM|Adverse effect of other parasympathomimetics [cholinergics], sequela|Adverse effect of other parasympathomimetics [cholinergics], sequela +C2878777|T037|AB|T44.1X5S|ICD10CM|Adverse effect of other parasympathomimetics, sequela|Adverse effect of other parasympathomimetics, sequela +C2878778|T037|AB|T44.1X6|ICD10CM|Underdosing of other parasympathomimetics [cholinergics]|Underdosing of other parasympathomimetics [cholinergics] +C2878778|T037|HT|T44.1X6|ICD10CM|Underdosing of other parasympathomimetics [cholinergics]|Underdosing of other parasympathomimetics [cholinergics] +C2878779|T037|PT|T44.1X6A|ICD10CM|Underdosing of other parasympathomimetics [cholinergics], initial encounter|Underdosing of other parasympathomimetics [cholinergics], initial encounter +C2878779|T037|AB|T44.1X6A|ICD10CM|Underdosing of other parasympathomimetics, initial encounter|Underdosing of other parasympathomimetics, initial encounter +C2878780|T037|AB|T44.1X6D|ICD10CM|Underdosing of other parasympath, subsequent encounter|Underdosing of other parasympath, subsequent encounter +C2878780|T037|PT|T44.1X6D|ICD10CM|Underdosing of other parasympathomimetics [cholinergics], subsequent encounter|Underdosing of other parasympathomimetics [cholinergics], subsequent encounter +C2878781|T037|PT|T44.1X6S|ICD10CM|Underdosing of other parasympathomimetics [cholinergics], sequela|Underdosing of other parasympathomimetics [cholinergics], sequela +C2878781|T037|AB|T44.1X6S|ICD10CM|Underdosing of other parasympathomimetics, sequela|Underdosing of other parasympathomimetics, sequela +C2878782|T037|AB|T44.2|ICD10CM|Ganglionic blocking drugs|Ganglionic blocking drugs +C0496982|T037|PS|T44.2|ICD10|Ganglionic blocking drugs, not elsewhere classified|Ganglionic blocking drugs, not elsewhere classified +C0496982|T037|PX|T44.2|ICD10|Poisoning by ganglionic blocking drugs, not elsewhere classified|Poisoning by ganglionic blocking drugs, not elsewhere classified +C2878782|T037|HT|T44.2|ICD10CM|Poisoning by, adverse effect of and underdosing of ganglionic blocking drugs|Poisoning by, adverse effect of and underdosing of ganglionic blocking drugs +C2878782|T037|AB|T44.2X|ICD10CM|Ganglionic blocking drugs|Ganglionic blocking drugs +C2878782|T037|HT|T44.2X|ICD10CM|Poisoning by, adverse effect of and underdosing of ganglionic blocking drugs|Poisoning by, adverse effect of and underdosing of ganglionic blocking drugs +C2878783|T037|ET|T44.2X1|ICD10CM|Poisoning by ganglionic blocking drugs NOS|Poisoning by ganglionic blocking drugs NOS +C3507175|T037|AB|T44.2X1|ICD10CM|Poisoning by ganglionic blocking drugs, accidental|Poisoning by ganglionic blocking drugs, accidental +C3507175|T037|HT|T44.2X1|ICD10CM|Poisoning by ganglionic blocking drugs, accidental (unintentional)|Poisoning by ganglionic blocking drugs, accidental (unintentional) +C2878785|T037|PT|T44.2X1A|ICD10CM|Poisoning by ganglionic blocking drugs, accidental (unintentional), initial encounter|Poisoning by ganglionic blocking drugs, accidental (unintentional), initial encounter +C2878785|T037|AB|T44.2X1A|ICD10CM|Poisoning by ganglionic blocking drugs, accidental, init|Poisoning by ganglionic blocking drugs, accidental, init +C2878786|T037|PT|T44.2X1D|ICD10CM|Poisoning by ganglionic blocking drugs, accidental (unintentional), subsequent encounter|Poisoning by ganglionic blocking drugs, accidental (unintentional), subsequent encounter +C2878786|T037|AB|T44.2X1D|ICD10CM|Poisoning by ganglionic blocking drugs, accidental, subs|Poisoning by ganglionic blocking drugs, accidental, subs +C2878787|T037|PT|T44.2X1S|ICD10CM|Poisoning by ganglionic blocking drugs, accidental (unintentional), sequela|Poisoning by ganglionic blocking drugs, accidental (unintentional), sequela +C2878787|T037|AB|T44.2X1S|ICD10CM|Poisoning by ganglionic blocking drugs, accidental, sequela|Poisoning by ganglionic blocking drugs, accidental, sequela +C2878788|T037|HT|T44.2X2|ICD10CM|Poisoning by ganglionic blocking drugs, intentional self-harm|Poisoning by ganglionic blocking drugs, intentional self-harm +C2878788|T037|AB|T44.2X2|ICD10CM|Poisoning by ganglionic blocking drugs, self-harm|Poisoning by ganglionic blocking drugs, self-harm +C2878789|T037|PT|T44.2X2A|ICD10CM|Poisoning by ganglionic blocking drugs, intentional self-harm, initial encounter|Poisoning by ganglionic blocking drugs, intentional self-harm, initial encounter +C2878789|T037|AB|T44.2X2A|ICD10CM|Poisoning by ganglionic blocking drugs, self-harm, init|Poisoning by ganglionic blocking drugs, self-harm, init +C2878790|T037|PT|T44.2X2D|ICD10CM|Poisoning by ganglionic blocking drugs, intentional self-harm, subsequent encounter|Poisoning by ganglionic blocking drugs, intentional self-harm, subsequent encounter +C2878790|T037|AB|T44.2X2D|ICD10CM|Poisoning by ganglionic blocking drugs, self-harm, subs|Poisoning by ganglionic blocking drugs, self-harm, subs +C2878791|T037|PT|T44.2X2S|ICD10CM|Poisoning by ganglionic blocking drugs, intentional self-harm, sequela|Poisoning by ganglionic blocking drugs, intentional self-harm, sequela +C2878791|T037|AB|T44.2X2S|ICD10CM|Poisoning by ganglionic blocking drugs, self-harm, sequela|Poisoning by ganglionic blocking drugs, self-harm, sequela +C2878792|T037|AB|T44.2X3|ICD10CM|Poisoning by ganglionic blocking drugs, assault|Poisoning by ganglionic blocking drugs, assault +C2878792|T037|HT|T44.2X3|ICD10CM|Poisoning by ganglionic blocking drugs, assault|Poisoning by ganglionic blocking drugs, assault +C2878793|T037|AB|T44.2X3A|ICD10CM|Poisoning by ganglionic blocking drugs, assault, init encntr|Poisoning by ganglionic blocking drugs, assault, init encntr +C2878793|T037|PT|T44.2X3A|ICD10CM|Poisoning by ganglionic blocking drugs, assault, initial encounter|Poisoning by ganglionic blocking drugs, assault, initial encounter +C2878794|T037|AB|T44.2X3D|ICD10CM|Poisoning by ganglionic blocking drugs, assault, subs encntr|Poisoning by ganglionic blocking drugs, assault, subs encntr +C2878794|T037|PT|T44.2X3D|ICD10CM|Poisoning by ganglionic blocking drugs, assault, subsequent encounter|Poisoning by ganglionic blocking drugs, assault, subsequent encounter +C2878795|T037|AB|T44.2X3S|ICD10CM|Poisoning by ganglionic blocking drugs, assault, sequela|Poisoning by ganglionic blocking drugs, assault, sequela +C2878795|T037|PT|T44.2X3S|ICD10CM|Poisoning by ganglionic blocking drugs, assault, sequela|Poisoning by ganglionic blocking drugs, assault, sequela +C2878796|T037|AB|T44.2X4|ICD10CM|Poisoning by ganglionic blocking drugs, undetermined|Poisoning by ganglionic blocking drugs, undetermined +C2878796|T037|HT|T44.2X4|ICD10CM|Poisoning by ganglionic blocking drugs, undetermined|Poisoning by ganglionic blocking drugs, undetermined +C2878797|T037|AB|T44.2X4A|ICD10CM|Poisoning by ganglionic blocking drugs, undetermined, init|Poisoning by ganglionic blocking drugs, undetermined, init +C2878797|T037|PT|T44.2X4A|ICD10CM|Poisoning by ganglionic blocking drugs, undetermined, initial encounter|Poisoning by ganglionic blocking drugs, undetermined, initial encounter +C2878798|T037|AB|T44.2X4D|ICD10CM|Poisoning by ganglionic blocking drugs, undetermined, subs|Poisoning by ganglionic blocking drugs, undetermined, subs +C2878798|T037|PT|T44.2X4D|ICD10CM|Poisoning by ganglionic blocking drugs, undetermined, subsequent encounter|Poisoning by ganglionic blocking drugs, undetermined, subsequent encounter +C2878799|T037|AB|T44.2X4S|ICD10CM|Poisoning by ganglionic blocking drugs, undet, sequela|Poisoning by ganglionic blocking drugs, undet, sequela +C2878799|T037|PT|T44.2X4S|ICD10CM|Poisoning by ganglionic blocking drugs, undetermined, sequela|Poisoning by ganglionic blocking drugs, undetermined, sequela +C0413912|T046|AB|T44.2X5|ICD10CM|Adverse effect of ganglionic blocking drugs|Adverse effect of ganglionic blocking drugs +C0413912|T046|HT|T44.2X5|ICD10CM|Adverse effect of ganglionic blocking drugs|Adverse effect of ganglionic blocking drugs +C2878801|T037|AB|T44.2X5A|ICD10CM|Adverse effect of ganglionic blocking drugs, init encntr|Adverse effect of ganglionic blocking drugs, init encntr +C2878801|T037|PT|T44.2X5A|ICD10CM|Adverse effect of ganglionic blocking drugs, initial encounter|Adverse effect of ganglionic blocking drugs, initial encounter +C2878802|T037|AB|T44.2X5D|ICD10CM|Adverse effect of ganglionic blocking drugs, subs encntr|Adverse effect of ganglionic blocking drugs, subs encntr +C2878802|T037|PT|T44.2X5D|ICD10CM|Adverse effect of ganglionic blocking drugs, subsequent encounter|Adverse effect of ganglionic blocking drugs, subsequent encounter +C2878803|T037|AB|T44.2X5S|ICD10CM|Adverse effect of ganglionic blocking drugs, sequela|Adverse effect of ganglionic blocking drugs, sequela +C2878803|T037|PT|T44.2X5S|ICD10CM|Adverse effect of ganglionic blocking drugs, sequela|Adverse effect of ganglionic blocking drugs, sequela +C2878804|T037|AB|T44.2X6|ICD10CM|Underdosing of ganglionic blocking drugs|Underdosing of ganglionic blocking drugs +C2878804|T037|HT|T44.2X6|ICD10CM|Underdosing of ganglionic blocking drugs|Underdosing of ganglionic blocking drugs +C2878805|T037|AB|T44.2X6A|ICD10CM|Underdosing of ganglionic blocking drugs, initial encounter|Underdosing of ganglionic blocking drugs, initial encounter +C2878805|T037|PT|T44.2X6A|ICD10CM|Underdosing of ganglionic blocking drugs, initial encounter|Underdosing of ganglionic blocking drugs, initial encounter +C2878806|T037|AB|T44.2X6D|ICD10CM|Underdosing of ganglionic blocking drugs, subs encntr|Underdosing of ganglionic blocking drugs, subs encntr +C2878806|T037|PT|T44.2X6D|ICD10CM|Underdosing of ganglionic blocking drugs, subsequent encounter|Underdosing of ganglionic blocking drugs, subsequent encounter +C2878807|T037|AB|T44.2X6S|ICD10CM|Underdosing of ganglionic blocking drugs, sequela|Underdosing of ganglionic blocking drugs, sequela +C2878807|T037|PT|T44.2X6S|ICD10CM|Underdosing of ganglionic blocking drugs, sequela|Underdosing of ganglionic blocking drugs, sequela +C2878809|T037|AB|T44.3|ICD10CM|Parasympatholytics and spasmolytics|Parasympatholytics and spasmolytics +C2878808|T037|ET|T44.3|ICD10CM|Poisoning by, adverse effect of and underdosing of papaverine|Poisoning by, adverse effect of and underdosing of papaverine +C2878809|T037|AB|T44.3X|ICD10CM|Parasympatholytics and spasmolytics|Parasympatholytics and spasmolytics +C2878811|T037|AB|T44.3X1|ICD10CM|Poisoning by oth parasympath and spasmolytics, accidental|Poisoning by oth parasympath and spasmolytics, accidental +C2878810|T037|ET|T44.3X1|ICD10CM|Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics NOS|Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics NOS +C2878812|T037|AB|T44.3X1A|ICD10CM|Poisoning by oth parasympath and spasmolytics, acc, init|Poisoning by oth parasympath and spasmolytics, acc, init +C2878813|T037|AB|T44.3X1D|ICD10CM|Poisoning by oth parasympath and spasmolytics, acc, subs|Poisoning by oth parasympath and spasmolytics, acc, subs +C2878814|T037|AB|T44.3X1S|ICD10CM|Poisoning by oth parasympath and spasmolytics, acc, sequela|Poisoning by oth parasympath and spasmolytics, acc, sequela +C2878815|T037|AB|T44.3X2|ICD10CM|Poisoning by oth parasympath and spasmolytics, self-harm|Poisoning by oth parasympath and spasmolytics, self-harm +C2878816|T037|AB|T44.3X2A|ICD10CM|Poisn by oth parasympath and spasmolytics, self-harm, init|Poisn by oth parasympath and spasmolytics, self-harm, init +C2878817|T037|AB|T44.3X2D|ICD10CM|Poisn by oth parasympath and spasmolytics, self-harm, subs|Poisn by oth parasympath and spasmolytics, self-harm, subs +C2878818|T037|AB|T44.3X2S|ICD10CM|Poisn by oth parasympath and spasmolytics, slf-hrm, sequela|Poisn by oth parasympath and spasmolytics, slf-hrm, sequela +C2878819|T037|AB|T44.3X3|ICD10CM|Poisoning by oth parasympath and spasmolytics, assault|Poisoning by oth parasympath and spasmolytics, assault +C2878820|T037|AB|T44.3X3A|ICD10CM|Poisoning by oth parasympath and spasmolytics, assault, init|Poisoning by oth parasympath and spasmolytics, assault, init +C2878821|T037|AB|T44.3X3D|ICD10CM|Poisoning by oth parasympath and spasmolytics, assault, subs|Poisoning by oth parasympath and spasmolytics, assault, subs +C2878822|T037|AB|T44.3X3S|ICD10CM|Poisn by oth parasympath and spasmolytics, assault, sequela|Poisn by oth parasympath and spasmolytics, assault, sequela +C2878823|T037|AB|T44.3X4|ICD10CM|Poisoning by oth parasympath and spasmolytics, undetermined|Poisoning by oth parasympath and spasmolytics, undetermined +C2878824|T037|AB|T44.3X4A|ICD10CM|Poisoning by oth parasympath and spasmolytics, undet, init|Poisoning by oth parasympath and spasmolytics, undet, init +C2878825|T037|AB|T44.3X4D|ICD10CM|Poisoning by oth parasympath and spasmolytics, undet, subs|Poisoning by oth parasympath and spasmolytics, undet, subs +C2878826|T037|AB|T44.3X4S|ICD10CM|Poisn by oth parasympath and spasmolytics, undet, sequela|Poisn by oth parasympath and spasmolytics, undet, sequela +C2878827|T037|HT|T44.3X5|ICD10CM|Adverse effect of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics|Adverse effect of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics +C2878827|T037|AB|T44.3X5|ICD10CM|Adverse effect of other parasympatholytics and spasmolytics|Adverse effect of other parasympatholytics and spasmolytics +C2878828|T037|AB|T44.3X5A|ICD10CM|Adverse effect of parasympatholytics and spasmolytics, init|Adverse effect of parasympatholytics and spasmolytics, init +C2878829|T037|AB|T44.3X5D|ICD10CM|Adverse effect of parasympatholytics and spasmolytics, subs|Adverse effect of parasympatholytics and spasmolytics, subs +C2878830|T037|AB|T44.3X5S|ICD10CM|Adverse effect of parasympath and spasmolytics, sequela|Adverse effect of parasympath and spasmolytics, sequela +C2878831|T037|HT|T44.3X6|ICD10CM|Underdosing of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics|Underdosing of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics +C2878831|T037|AB|T44.3X6|ICD10CM|Underdosing of other parasympatholytics and spasmolytics|Underdosing of other parasympatholytics and spasmolytics +C2878832|T037|AB|T44.3X6A|ICD10CM|Underdosing of oth parasympatholytics and spasmolytics, init|Underdosing of oth parasympatholytics and spasmolytics, init +C2878833|T037|AB|T44.3X6D|ICD10CM|Underdosing of oth parasympatholytics and spasmolytics, subs|Underdosing of oth parasympatholytics and spasmolytics, subs +C2878834|T037|AB|T44.3X6S|ICD10CM|Underdosing of parasympatholytics and spasmolytics, sequela|Underdosing of parasympatholytics and spasmolytics, sequela +C0496983|T037|PX|T44.4|ICD10|Poisoning by predominantly alpha-adrenoreceptor agonists, not elsewhere classified|Poisoning by predominantly alpha-adrenoreceptor agonists, not elsewhere classified +C2878835|T037|ET|T44.4|ICD10CM|Poisoning by, adverse effect of and underdosing of metaraminol|Poisoning by, adverse effect of and underdosing of metaraminol +C2878836|T037|HT|T44.4|ICD10CM|Poisoning by, adverse effect of and underdosing of predominantly alpha-adrenoreceptor agonists|Poisoning by, adverse effect of and underdosing of predominantly alpha-adrenoreceptor agonists +C2878836|T037|AB|T44.4|ICD10CM|Predominantly alpha-adrenoreceptor agonists|Predominantly alpha-adrenoreceptor agonists +C0496983|T037|PS|T44.4|ICD10|Predominantly alpha-adrenoreceptor agonists, not elsewhere classified|Predominantly alpha-adrenoreceptor agonists, not elsewhere classified +C2878836|T037|HT|T44.4X|ICD10CM|Poisoning by, adverse effect of and underdosing of predominantly alpha-adrenoreceptor agonists|Poisoning by, adverse effect of and underdosing of predominantly alpha-adrenoreceptor agonists +C2878836|T037|AB|T44.4X|ICD10CM|Predominantly alpha-adrenoreceptor agonists|Predominantly alpha-adrenoreceptor agonists +C2878838|T037|AB|T44.4X1|ICD10CM|Poisoning by predom alpha-adrenocpt agonists, accidental|Poisoning by predom alpha-adrenocpt agonists, accidental +C2878837|T037|ET|T44.4X1|ICD10CM|Poisoning by predominantly alpha-adrenoreceptor agonists NOS|Poisoning by predominantly alpha-adrenoreceptor agonists NOS +C2878838|T037|HT|T44.4X1|ICD10CM|Poisoning by predominantly alpha-adrenoreceptor agonists, accidental (unintentional)|Poisoning by predominantly alpha-adrenoreceptor agonists, accidental (unintentional) +C2878839|T037|AB|T44.4X1A|ICD10CM|Poisoning by predom alpha-adrenocpt agonists, acc, init|Poisoning by predom alpha-adrenocpt agonists, acc, init +C2878840|T037|AB|T44.4X1D|ICD10CM|Poisoning by predom alpha-adrenocpt agonists, acc, subs|Poisoning by predom alpha-adrenocpt agonists, acc, subs +C2878841|T037|AB|T44.4X1S|ICD10CM|Poisoning by predom alpha-adrenocpt agonists, acc, sequela|Poisoning by predom alpha-adrenocpt agonists, acc, sequela +C2878841|T037|PT|T44.4X1S|ICD10CM|Poisoning by predominantly alpha-adrenoreceptor agonists, accidental (unintentional), sequela|Poisoning by predominantly alpha-adrenoreceptor agonists, accidental (unintentional), sequela +C2878842|T037|AB|T44.4X2|ICD10CM|Poisoning by predom alpha-adrenocpt agonists, self-harm|Poisoning by predom alpha-adrenocpt agonists, self-harm +C2878842|T037|HT|T44.4X2|ICD10CM|Poisoning by predominantly alpha-adrenoreceptor agonists, intentional self-harm|Poisoning by predominantly alpha-adrenoreceptor agonists, intentional self-harm +C2878843|T037|AB|T44.4X2A|ICD10CM|Poisn by predom alpha-adrenocpt agonists, self-harm, init|Poisn by predom alpha-adrenocpt agonists, self-harm, init +C2878843|T037|PT|T44.4X2A|ICD10CM|Poisoning by predominantly alpha-adrenoreceptor agonists, intentional self-harm, initial encounter|Poisoning by predominantly alpha-adrenoreceptor agonists, intentional self-harm, initial encounter +C2878844|T037|AB|T44.4X2D|ICD10CM|Poisn by predom alpha-adrenocpt agonists, self-harm, subs|Poisn by predom alpha-adrenocpt agonists, self-harm, subs +C2878845|T037|AB|T44.4X2S|ICD10CM|Poisn by predom alpha-adrenocpt agonists, self-harm, sequela|Poisn by predom alpha-adrenocpt agonists, self-harm, sequela +C2878845|T037|PT|T44.4X2S|ICD10CM|Poisoning by predominantly alpha-adrenoreceptor agonists, intentional self-harm, sequela|Poisoning by predominantly alpha-adrenoreceptor agonists, intentional self-harm, sequela +C2878846|T037|AB|T44.4X3|ICD10CM|Poisoning by predominantly alpha-adrenocpt agonists, assault|Poisoning by predominantly alpha-adrenocpt agonists, assault +C2878846|T037|HT|T44.4X3|ICD10CM|Poisoning by predominantly alpha-adrenoreceptor agonists, assault|Poisoning by predominantly alpha-adrenoreceptor agonists, assault +C2878847|T037|AB|T44.4X3A|ICD10CM|Poisoning by predom alpha-adrenocpt agonists, assault, init|Poisoning by predom alpha-adrenocpt agonists, assault, init +C2878847|T037|PT|T44.4X3A|ICD10CM|Poisoning by predominantly alpha-adrenoreceptor agonists, assault, initial encounter|Poisoning by predominantly alpha-adrenoreceptor agonists, assault, initial encounter +C2878848|T037|AB|T44.4X3D|ICD10CM|Poisoning by predom alpha-adrenocpt agonists, assault, subs|Poisoning by predom alpha-adrenocpt agonists, assault, subs +C2878848|T037|PT|T44.4X3D|ICD10CM|Poisoning by predominantly alpha-adrenoreceptor agonists, assault, subsequent encounter|Poisoning by predominantly alpha-adrenoreceptor agonists, assault, subsequent encounter +C2878849|T037|AB|T44.4X3S|ICD10CM|Poisn by predom alpha-adrenocpt agonists, assault, sequela|Poisn by predom alpha-adrenocpt agonists, assault, sequela +C2878849|T037|PT|T44.4X3S|ICD10CM|Poisoning by predominantly alpha-adrenoreceptor agonists, assault, sequela|Poisoning by predominantly alpha-adrenoreceptor agonists, assault, sequela +C2878850|T037|AB|T44.4X4|ICD10CM|Poisoning by predom alpha-adrenocpt agonists, undetermined|Poisoning by predom alpha-adrenocpt agonists, undetermined +C2878850|T037|HT|T44.4X4|ICD10CM|Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined|Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined +C2878851|T037|AB|T44.4X4A|ICD10CM|Poisoning by predom alpha-adrenocpt agonists, undet, init|Poisoning by predom alpha-adrenocpt agonists, undet, init +C2878851|T037|PT|T44.4X4A|ICD10CM|Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined, initial encounter|Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined, initial encounter +C2878852|T037|AB|T44.4X4D|ICD10CM|Poisoning by predom alpha-adrenocpt agonists, undet, subs|Poisoning by predom alpha-adrenocpt agonists, undet, subs +C2878852|T037|PT|T44.4X4D|ICD10CM|Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined, subsequent encounter|Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined, subsequent encounter +C2878853|T037|AB|T44.4X4S|ICD10CM|Poisoning by predom alpha-adrenocpt agonists, undet, sequela|Poisoning by predom alpha-adrenocpt agonists, undet, sequela +C2878853|T037|PT|T44.4X4S|ICD10CM|Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined, sequela|Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined, sequela +C2878854|T037|AB|T44.4X5|ICD10CM|Adverse effect of predominantly alpha-adrenocpt agonists|Adverse effect of predominantly alpha-adrenocpt agonists +C2878854|T037|HT|T44.4X5|ICD10CM|Adverse effect of predominantly alpha-adrenoreceptor agonists|Adverse effect of predominantly alpha-adrenoreceptor agonists +C2878855|T037|AB|T44.4X5A|ICD10CM|Adverse effect of predom alpha-adrenocpt agonists, init|Adverse effect of predom alpha-adrenocpt agonists, init +C2878855|T037|PT|T44.4X5A|ICD10CM|Adverse effect of predominantly alpha-adrenoreceptor agonists, initial encounter|Adverse effect of predominantly alpha-adrenoreceptor agonists, initial encounter +C2878856|T037|AB|T44.4X5D|ICD10CM|Adverse effect of predom alpha-adrenocpt agonists, subs|Adverse effect of predom alpha-adrenocpt agonists, subs +C2878856|T037|PT|T44.4X5D|ICD10CM|Adverse effect of predominantly alpha-adrenoreceptor agonists, subsequent encounter|Adverse effect of predominantly alpha-adrenoreceptor agonists, subsequent encounter +C2878857|T037|AB|T44.4X5S|ICD10CM|Adverse effect of predom alpha-adrenocpt agonists, sequela|Adverse effect of predom alpha-adrenocpt agonists, sequela +C2878857|T037|PT|T44.4X5S|ICD10CM|Adverse effect of predominantly alpha-adrenoreceptor agonists, sequela|Adverse effect of predominantly alpha-adrenoreceptor agonists, sequela +C2878858|T037|AB|T44.4X6|ICD10CM|Underdosing of predominantly alpha-adrenoreceptor agonists|Underdosing of predominantly alpha-adrenoreceptor agonists +C2878858|T037|HT|T44.4X6|ICD10CM|Underdosing of predominantly alpha-adrenoreceptor agonists|Underdosing of predominantly alpha-adrenoreceptor agonists +C2878859|T037|AB|T44.4X6A|ICD10CM|Underdosing of predominantly alpha-adrenocpt agonists, init|Underdosing of predominantly alpha-adrenocpt agonists, init +C2878859|T037|PT|T44.4X6A|ICD10CM|Underdosing of predominantly alpha-adrenoreceptor agonists, initial encounter|Underdosing of predominantly alpha-adrenoreceptor agonists, initial encounter +C2878860|T037|AB|T44.4X6D|ICD10CM|Underdosing of predominantly alpha-adrenocpt agonists, subs|Underdosing of predominantly alpha-adrenocpt agonists, subs +C2878860|T037|PT|T44.4X6D|ICD10CM|Underdosing of predominantly alpha-adrenoreceptor agonists, subsequent encounter|Underdosing of predominantly alpha-adrenoreceptor agonists, subsequent encounter +C2878861|T037|AB|T44.4X6S|ICD10CM|Underdosing of predom alpha-adrenocpt agonists, sequela|Underdosing of predom alpha-adrenocpt agonists, sequela +C2878861|T037|PT|T44.4X6S|ICD10CM|Underdosing of predominantly alpha-adrenoreceptor agonists, sequela|Underdosing of predominantly alpha-adrenoreceptor agonists, sequela +C0496984|T037|PX|T44.5|ICD10|Poisoning by predominantly beta-adrenoreceptor agonists, not elsewhere classified|Poisoning by predominantly beta-adrenoreceptor agonists, not elsewhere classified +C2878862|T037|HT|T44.5|ICD10CM|Poisoning by, adverse effect of and underdosing of predominantly beta-adrenoreceptor agonists|Poisoning by, adverse effect of and underdosing of predominantly beta-adrenoreceptor agonists +C2878862|T037|AB|T44.5|ICD10CM|Predominantly beta-adrenoreceptor agonists|Predominantly beta-adrenoreceptor agonists +C0496984|T037|PS|T44.5|ICD10|Predominantly beta-adrenoreceptor agonists, not elsewhere classified|Predominantly beta-adrenoreceptor agonists, not elsewhere classified +C2878862|T037|HT|T44.5X|ICD10CM|Poisoning by, adverse effect of and underdosing of predominantly beta-adrenoreceptor agonists|Poisoning by, adverse effect of and underdosing of predominantly beta-adrenoreceptor agonists +C2878862|T037|AB|T44.5X|ICD10CM|Predominantly beta-adrenoreceptor agonists|Predominantly beta-adrenoreceptor agonists +C2878864|T037|AB|T44.5X1|ICD10CM|Poisoning by predom beta-adrenocpt agonists, accidental|Poisoning by predom beta-adrenocpt agonists, accidental +C2878863|T037|ET|T44.5X1|ICD10CM|Poisoning by predominantly beta-adrenoreceptor agonists NOS|Poisoning by predominantly beta-adrenoreceptor agonists NOS +C2878864|T037|HT|T44.5X1|ICD10CM|Poisoning by predominantly beta-adrenoreceptor agonists, accidental (unintentional)|Poisoning by predominantly beta-adrenoreceptor agonists, accidental (unintentional) +C2878865|T037|AB|T44.5X1A|ICD10CM|Poisoning by predom beta-adrenocpt agonists, acc, init|Poisoning by predom beta-adrenocpt agonists, acc, init +C2878866|T037|AB|T44.5X1D|ICD10CM|Poisoning by predom beta-adrenocpt agonists, acc, subs|Poisoning by predom beta-adrenocpt agonists, acc, subs +C2878867|T037|AB|T44.5X1S|ICD10CM|Poisoning by predom beta-adrenocpt agonists, acc, sequela|Poisoning by predom beta-adrenocpt agonists, acc, sequela +C2878867|T037|PT|T44.5X1S|ICD10CM|Poisoning by predominantly beta-adrenoreceptor agonists, accidental (unintentional), sequela|Poisoning by predominantly beta-adrenoreceptor agonists, accidental (unintentional), sequela +C2878868|T037|AB|T44.5X2|ICD10CM|Poisoning by predom beta-adrenocpt agonists, self-harm|Poisoning by predom beta-adrenocpt agonists, self-harm +C2878868|T037|HT|T44.5X2|ICD10CM|Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm|Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm +C2878869|T037|AB|T44.5X2A|ICD10CM|Poisoning by predom beta-adrenocpt agonists, self-harm, init|Poisoning by predom beta-adrenocpt agonists, self-harm, init +C2878869|T037|PT|T44.5X2A|ICD10CM|Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm, initial encounter|Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm, initial encounter +C2878870|T037|AB|T44.5X2D|ICD10CM|Poisoning by predom beta-adrenocpt agonists, self-harm, subs|Poisoning by predom beta-adrenocpt agonists, self-harm, subs +C2878870|T037|PT|T44.5X2D|ICD10CM|Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm, subsequent encounter|Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm, subsequent encounter +C2878871|T037|AB|T44.5X2S|ICD10CM|Poisn by predom beta-adrenocpt agonists, self-harm, sequela|Poisn by predom beta-adrenocpt agonists, self-harm, sequela +C2878871|T037|PT|T44.5X2S|ICD10CM|Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm, sequela|Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm, sequela +C2878872|T037|AB|T44.5X3|ICD10CM|Poisoning by predominantly beta-adrenocpt agonists, assault|Poisoning by predominantly beta-adrenocpt agonists, assault +C2878872|T037|HT|T44.5X3|ICD10CM|Poisoning by predominantly beta-adrenoreceptor agonists, assault|Poisoning by predominantly beta-adrenoreceptor agonists, assault +C2878873|T037|AB|T44.5X3A|ICD10CM|Poisoning by predom beta-adrenocpt agonists, assault, init|Poisoning by predom beta-adrenocpt agonists, assault, init +C2878873|T037|PT|T44.5X3A|ICD10CM|Poisoning by predominantly beta-adrenoreceptor agonists, assault, initial encounter|Poisoning by predominantly beta-adrenoreceptor agonists, assault, initial encounter +C2878874|T037|AB|T44.5X3D|ICD10CM|Poisoning by predom beta-adrenocpt agonists, assault, subs|Poisoning by predom beta-adrenocpt agonists, assault, subs +C2878874|T037|PT|T44.5X3D|ICD10CM|Poisoning by predominantly beta-adrenoreceptor agonists, assault, subsequent encounter|Poisoning by predominantly beta-adrenoreceptor agonists, assault, subsequent encounter +C2878875|T037|AB|T44.5X3S|ICD10CM|Poisn by predom beta-adrenocpt agonists, assault, sequela|Poisn by predom beta-adrenocpt agonists, assault, sequela +C2878875|T037|PT|T44.5X3S|ICD10CM|Poisoning by predominantly beta-adrenoreceptor agonists, assault, sequela|Poisoning by predominantly beta-adrenoreceptor agonists, assault, sequela +C2878876|T037|AB|T44.5X4|ICD10CM|Poisoning by predom beta-adrenocpt agonists, undetermined|Poisoning by predom beta-adrenocpt agonists, undetermined +C2878876|T037|HT|T44.5X4|ICD10CM|Poisoning by predominantly beta-adrenoreceptor agonists, undetermined|Poisoning by predominantly beta-adrenoreceptor agonists, undetermined +C2878877|T037|AB|T44.5X4A|ICD10CM|Poisoning by predom beta-adrenocpt agonists, undet, init|Poisoning by predom beta-adrenocpt agonists, undet, init +C2878877|T037|PT|T44.5X4A|ICD10CM|Poisoning by predominantly beta-adrenoreceptor agonists, undetermined, initial encounter|Poisoning by predominantly beta-adrenoreceptor agonists, undetermined, initial encounter +C2878878|T037|AB|T44.5X4D|ICD10CM|Poisoning by predom beta-adrenocpt agonists, undet, subs|Poisoning by predom beta-adrenocpt agonists, undet, subs +C2878878|T037|PT|T44.5X4D|ICD10CM|Poisoning by predominantly beta-adrenoreceptor agonists, undetermined, subsequent encounter|Poisoning by predominantly beta-adrenoreceptor agonists, undetermined, subsequent encounter +C2878879|T037|AB|T44.5X4S|ICD10CM|Poisoning by predom beta-adrenocpt agonists, undet, sequela|Poisoning by predom beta-adrenocpt agonists, undet, sequela +C2878879|T037|PT|T44.5X4S|ICD10CM|Poisoning by predominantly beta-adrenoreceptor agonists, undetermined, sequela|Poisoning by predominantly beta-adrenoreceptor agonists, undetermined, sequela +C2878880|T037|AB|T44.5X5|ICD10CM|Adverse effect of predominantly beta-adrenoreceptor agonists|Adverse effect of predominantly beta-adrenoreceptor agonists +C2878880|T037|HT|T44.5X5|ICD10CM|Adverse effect of predominantly beta-adrenoreceptor agonists|Adverse effect of predominantly beta-adrenoreceptor agonists +C2878881|T037|AB|T44.5X5A|ICD10CM|Adverse effect of predom beta-adrenocpt agonists, init|Adverse effect of predom beta-adrenocpt agonists, init +C2878881|T037|PT|T44.5X5A|ICD10CM|Adverse effect of predominantly beta-adrenoreceptor agonists, initial encounter|Adverse effect of predominantly beta-adrenoreceptor agonists, initial encounter +C2878882|T037|AB|T44.5X5D|ICD10CM|Adverse effect of predom beta-adrenocpt agonists, subs|Adverse effect of predom beta-adrenocpt agonists, subs +C2878882|T037|PT|T44.5X5D|ICD10CM|Adverse effect of predominantly beta-adrenoreceptor agonists, subsequent encounter|Adverse effect of predominantly beta-adrenoreceptor agonists, subsequent encounter +C2878883|T037|AB|T44.5X5S|ICD10CM|Adverse effect of predom beta-adrenocpt agonists, sequela|Adverse effect of predom beta-adrenocpt agonists, sequela +C2878883|T037|PT|T44.5X5S|ICD10CM|Adverse effect of predominantly beta-adrenoreceptor agonists, sequela|Adverse effect of predominantly beta-adrenoreceptor agonists, sequela +C2878884|T037|AB|T44.5X6|ICD10CM|Underdosing of predominantly beta-adrenoreceptor agonists|Underdosing of predominantly beta-adrenoreceptor agonists +C2878884|T037|HT|T44.5X6|ICD10CM|Underdosing of predominantly beta-adrenoreceptor agonists|Underdosing of predominantly beta-adrenoreceptor agonists +C2878885|T037|AB|T44.5X6A|ICD10CM|Underdosing of predominantly beta-adrenocpt agonists, init|Underdosing of predominantly beta-adrenocpt agonists, init +C2878885|T037|PT|T44.5X6A|ICD10CM|Underdosing of predominantly beta-adrenoreceptor agonists, initial encounter|Underdosing of predominantly beta-adrenoreceptor agonists, initial encounter +C2878886|T037|AB|T44.5X6D|ICD10CM|Underdosing of predominantly beta-adrenocpt agonists, subs|Underdosing of predominantly beta-adrenocpt agonists, subs +C2878886|T037|PT|T44.5X6D|ICD10CM|Underdosing of predominantly beta-adrenoreceptor agonists, subsequent encounter|Underdosing of predominantly beta-adrenoreceptor agonists, subsequent encounter +C2878887|T037|AB|T44.5X6S|ICD10CM|Underdosing of predom beta-adrenocpt agonists, sequela|Underdosing of predom beta-adrenocpt agonists, sequela +C2878887|T037|PT|T44.5X6S|ICD10CM|Underdosing of predominantly beta-adrenoreceptor agonists, sequela|Underdosing of predominantly beta-adrenoreceptor agonists, sequela +C2878888|T037|AB|T44.6|ICD10CM|Alpha-adrenoreceptor antagonists|Alpha-adrenoreceptor antagonists +C0869262|T037|PS|T44.6|ICD10|Alpha-adrenoreceptor antagonists, not elsewhere classified|Alpha-adrenoreceptor antagonists, not elsewhere classified +C0869262|T037|PX|T44.6|ICD10|Poisoning by alpha-adrenoreceptor antagonists, not elsewhere classified|Poisoning by alpha-adrenoreceptor antagonists, not elsewhere classified +C2878888|T037|HT|T44.6|ICD10CM|Poisoning by, adverse effect of and underdosing of alpha-adrenoreceptor antagonists|Poisoning by, adverse effect of and underdosing of alpha-adrenoreceptor antagonists +C2878888|T037|AB|T44.6X|ICD10CM|Alpha-adrenoreceptor antagonists|Alpha-adrenoreceptor antagonists +C2878888|T037|HT|T44.6X|ICD10CM|Poisoning by, adverse effect of and underdosing of alpha-adrenoreceptor antagonists|Poisoning by, adverse effect of and underdosing of alpha-adrenoreceptor antagonists +C2878890|T037|AB|T44.6X1|ICD10CM|Poisoning by alpha-adrenocpt antagonists, accidental|Poisoning by alpha-adrenocpt antagonists, accidental +C2878889|T037|ET|T44.6X1|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists NOS|Poisoning by alpha-adrenoreceptor antagonists NOS +C2878890|T037|HT|T44.6X1|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional)|Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional) +C2878891|T037|AB|T44.6X1A|ICD10CM|Poisoning by alpha-adrenocpt antagonists, accidental, init|Poisoning by alpha-adrenocpt antagonists, accidental, init +C2878891|T037|PT|T44.6X1A|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional), initial encounter|Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional), initial encounter +C2878892|T037|AB|T44.6X1D|ICD10CM|Poisoning by alpha-adrenocpt antagonists, accidental, subs|Poisoning by alpha-adrenocpt antagonists, accidental, subs +C2878892|T037|PT|T44.6X1D|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional), subsequent encounter|Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional), subsequent encounter +C2878893|T037|AB|T44.6X1S|ICD10CM|Poisoning by alpha-adrenocpt antag, accidental, sequela|Poisoning by alpha-adrenocpt antag, accidental, sequela +C2878893|T037|PT|T44.6X1S|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional), sequela|Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional), sequela +C2878894|T037|HT|T44.6X2|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm|Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm +C2878894|T037|AB|T44.6X2|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, self-harm|Poisoning by alpha-adrenoreceptor antagonists, self-harm +C2878895|T037|AB|T44.6X2A|ICD10CM|Poisoning by alpha-adrenocpt antagonists, self-harm, init|Poisoning by alpha-adrenocpt antagonists, self-harm, init +C2878895|T037|PT|T44.6X2A|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm, initial encounter|Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm, initial encounter +C2878896|T037|AB|T44.6X2D|ICD10CM|Poisoning by alpha-adrenocpt antagonists, self-harm, subs|Poisoning by alpha-adrenocpt antagonists, self-harm, subs +C2878896|T037|PT|T44.6X2D|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm, subsequent encounter|Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm, subsequent encounter +C2878897|T037|AB|T44.6X2S|ICD10CM|Poisoning by alpha-adrenocpt antagonists, self-harm, sequela|Poisoning by alpha-adrenocpt antagonists, self-harm, sequela +C2878897|T037|PT|T44.6X2S|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm, sequela|Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm, sequela +C2878898|T037|AB|T44.6X3|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, assault|Poisoning by alpha-adrenoreceptor antagonists, assault +C2878898|T037|HT|T44.6X3|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, assault|Poisoning by alpha-adrenoreceptor antagonists, assault +C2878899|T037|AB|T44.6X3A|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, assault, init|Poisoning by alpha-adrenoreceptor antagonists, assault, init +C2878899|T037|PT|T44.6X3A|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, assault, initial encounter|Poisoning by alpha-adrenoreceptor antagonists, assault, initial encounter +C2878900|T037|AB|T44.6X3D|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, assault, subs|Poisoning by alpha-adrenoreceptor antagonists, assault, subs +C2878900|T037|PT|T44.6X3D|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, assault, subsequent encounter|Poisoning by alpha-adrenoreceptor antagonists, assault, subsequent encounter +C2878901|T037|AB|T44.6X3S|ICD10CM|Poisoning by alpha-adrenocpt antagonists, assault, sequela|Poisoning by alpha-adrenocpt antagonists, assault, sequela +C2878901|T037|PT|T44.6X3S|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, assault, sequela|Poisoning by alpha-adrenoreceptor antagonists, assault, sequela +C2878902|T037|AB|T44.6X4|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, undetermined|Poisoning by alpha-adrenoreceptor antagonists, undetermined +C2878902|T037|HT|T44.6X4|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, undetermined|Poisoning by alpha-adrenoreceptor antagonists, undetermined +C2878903|T037|AB|T44.6X4A|ICD10CM|Poisoning by alpha-adrenocpt antagonists, undetermined, init|Poisoning by alpha-adrenocpt antagonists, undetermined, init +C2878903|T037|PT|T44.6X4A|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, undetermined, initial encounter|Poisoning by alpha-adrenoreceptor antagonists, undetermined, initial encounter +C2878904|T037|AB|T44.6X4D|ICD10CM|Poisoning by alpha-adrenocpt antagonists, undetermined, subs|Poisoning by alpha-adrenocpt antagonists, undetermined, subs +C2878904|T037|PT|T44.6X4D|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, undetermined, subsequent encounter|Poisoning by alpha-adrenoreceptor antagonists, undetermined, subsequent encounter +C2878905|T037|AB|T44.6X4S|ICD10CM|Poisoning by alpha-adrenocpt antagonists, undet, sequela|Poisoning by alpha-adrenocpt antagonists, undet, sequela +C2878905|T037|PT|T44.6X4S|ICD10CM|Poisoning by alpha-adrenoreceptor antagonists, undetermined, sequela|Poisoning by alpha-adrenoreceptor antagonists, undetermined, sequela +C2878906|T037|AB|T44.6X5|ICD10CM|Adverse effect of alpha-adrenoreceptor antagonists|Adverse effect of alpha-adrenoreceptor antagonists +C2878906|T037|HT|T44.6X5|ICD10CM|Adverse effect of alpha-adrenoreceptor antagonists|Adverse effect of alpha-adrenoreceptor antagonists +C2878907|T037|AB|T44.6X5A|ICD10CM|Adverse effect of alpha-adrenoreceptor antagonists, init|Adverse effect of alpha-adrenoreceptor antagonists, init +C2878907|T037|PT|T44.6X5A|ICD10CM|Adverse effect of alpha-adrenoreceptor antagonists, initial encounter|Adverse effect of alpha-adrenoreceptor antagonists, initial encounter +C2878908|T037|AB|T44.6X5D|ICD10CM|Adverse effect of alpha-adrenoreceptor antagonists, subs|Adverse effect of alpha-adrenoreceptor antagonists, subs +C2878908|T037|PT|T44.6X5D|ICD10CM|Adverse effect of alpha-adrenoreceptor antagonists, subsequent encounter|Adverse effect of alpha-adrenoreceptor antagonists, subsequent encounter +C2878909|T037|AB|T44.6X5S|ICD10CM|Adverse effect of alpha-adrenoreceptor antagonists, sequela|Adverse effect of alpha-adrenoreceptor antagonists, sequela +C2878909|T037|PT|T44.6X5S|ICD10CM|Adverse effect of alpha-adrenoreceptor antagonists, sequela|Adverse effect of alpha-adrenoreceptor antagonists, sequela +C2878910|T037|AB|T44.6X6|ICD10CM|Underdosing of alpha-adrenoreceptor antagonists|Underdosing of alpha-adrenoreceptor antagonists +C2878910|T037|HT|T44.6X6|ICD10CM|Underdosing of alpha-adrenoreceptor antagonists|Underdosing of alpha-adrenoreceptor antagonists +C2878911|T037|AB|T44.6X6A|ICD10CM|Underdosing of alpha-adrenoreceptor antagonists, init encntr|Underdosing of alpha-adrenoreceptor antagonists, init encntr +C2878911|T037|PT|T44.6X6A|ICD10CM|Underdosing of alpha-adrenoreceptor antagonists, initial encounter|Underdosing of alpha-adrenoreceptor antagonists, initial encounter +C2878912|T037|AB|T44.6X6D|ICD10CM|Underdosing of alpha-adrenoreceptor antagonists, subs encntr|Underdosing of alpha-adrenoreceptor antagonists, subs encntr +C2878912|T037|PT|T44.6X6D|ICD10CM|Underdosing of alpha-adrenoreceptor antagonists, subsequent encounter|Underdosing of alpha-adrenoreceptor antagonists, subsequent encounter +C2878913|T037|AB|T44.6X6S|ICD10CM|Underdosing of alpha-adrenoreceptor antagonists, sequela|Underdosing of alpha-adrenoreceptor antagonists, sequela +C2878913|T037|PT|T44.6X6S|ICD10CM|Underdosing of alpha-adrenoreceptor antagonists, sequela|Underdosing of alpha-adrenoreceptor antagonists, sequela +C2878914|T037|AB|T44.7|ICD10CM|Beta-adrenoreceptor antagonists|Beta-adrenoreceptor antagonists +C0496986|T037|PS|T44.7|ICD10|Beta-adrenoreceptor antagonists, not elsewhere classified|Beta-adrenoreceptor antagonists, not elsewhere classified +C0496986|T037|PX|T44.7|ICD10|Poisoning by beta-adrenoreceptor antagonists, not elsewhere classified|Poisoning by beta-adrenoreceptor antagonists, not elsewhere classified +C2878914|T037|HT|T44.7|ICD10CM|Poisoning by, adverse effect of and underdosing of beta-adrenoreceptor antagonists|Poisoning by, adverse effect of and underdosing of beta-adrenoreceptor antagonists +C2878914|T037|AB|T44.7X|ICD10CM|Beta-adrenoreceptor antagonists|Beta-adrenoreceptor antagonists +C2878914|T037|HT|T44.7X|ICD10CM|Poisoning by, adverse effect of and underdosing of beta-adrenoreceptor antagonists|Poisoning by, adverse effect of and underdosing of beta-adrenoreceptor antagonists +C2878916|T037|AB|T44.7X1|ICD10CM|Poisoning by beta-adrenocpt antagonists, accidental|Poisoning by beta-adrenocpt antagonists, accidental +C2878915|T037|ET|T44.7X1|ICD10CM|Poisoning by beta-adrenoreceptor antagonists NOS|Poisoning by beta-adrenoreceptor antagonists NOS +C2878916|T037|HT|T44.7X1|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional)|Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional) +C2878917|T037|AB|T44.7X1A|ICD10CM|Poisoning by beta-adrenocpt antagonists, accidental, init|Poisoning by beta-adrenocpt antagonists, accidental, init +C2878917|T037|PT|T44.7X1A|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional), initial encounter|Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional), initial encounter +C2878918|T037|AB|T44.7X1D|ICD10CM|Poisoning by beta-adrenocpt antagonists, accidental, subs|Poisoning by beta-adrenocpt antagonists, accidental, subs +C2878918|T037|PT|T44.7X1D|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional), subsequent encounter|Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional), subsequent encounter +C2878919|T037|AB|T44.7X1S|ICD10CM|Poisoning by beta-adrenocpt antag, accidental, sequela|Poisoning by beta-adrenocpt antag, accidental, sequela +C2878919|T037|PT|T44.7X1S|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional), sequela|Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional), sequela +C2878920|T037|HT|T44.7X2|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, intentional self-harm|Poisoning by beta-adrenoreceptor antagonists, intentional self-harm +C2878920|T037|AB|T44.7X2|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, self-harm|Poisoning by beta-adrenoreceptor antagonists, self-harm +C2878921|T037|AB|T44.7X2A|ICD10CM|Poisoning by beta-adrenocpt antagonists, self-harm, init|Poisoning by beta-adrenocpt antagonists, self-harm, init +C2878921|T037|PT|T44.7X2A|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, intentional self-harm, initial encounter|Poisoning by beta-adrenoreceptor antagonists, intentional self-harm, initial encounter +C2878922|T037|AB|T44.7X2D|ICD10CM|Poisoning by beta-adrenocpt antagonists, self-harm, subs|Poisoning by beta-adrenocpt antagonists, self-harm, subs +C2878922|T037|PT|T44.7X2D|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, intentional self-harm, subsequent encounter|Poisoning by beta-adrenoreceptor antagonists, intentional self-harm, subsequent encounter +C2878923|T037|AB|T44.7X2S|ICD10CM|Poisoning by beta-adrenocpt antagonists, self-harm, sequela|Poisoning by beta-adrenocpt antagonists, self-harm, sequela +C2878923|T037|PT|T44.7X2S|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, intentional self-harm, sequela|Poisoning by beta-adrenoreceptor antagonists, intentional self-harm, sequela +C2878924|T037|AB|T44.7X3|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, assault|Poisoning by beta-adrenoreceptor antagonists, assault +C2878924|T037|HT|T44.7X3|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, assault|Poisoning by beta-adrenoreceptor antagonists, assault +C2878925|T037|AB|T44.7X3A|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, assault, init|Poisoning by beta-adrenoreceptor antagonists, assault, init +C2878925|T037|PT|T44.7X3A|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, assault, initial encounter|Poisoning by beta-adrenoreceptor antagonists, assault, initial encounter +C2878926|T037|AB|T44.7X3D|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, assault, subs|Poisoning by beta-adrenoreceptor antagonists, assault, subs +C2878926|T037|PT|T44.7X3D|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, assault, subsequent encounter|Poisoning by beta-adrenoreceptor antagonists, assault, subsequent encounter +C2878927|T037|AB|T44.7X3S|ICD10CM|Poisoning by beta-adrenocpt antagonists, assault, sequela|Poisoning by beta-adrenocpt antagonists, assault, sequela +C2878927|T037|PT|T44.7X3S|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, assault, sequela|Poisoning by beta-adrenoreceptor antagonists, assault, sequela +C2878928|T037|AB|T44.7X4|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, undetermined|Poisoning by beta-adrenoreceptor antagonists, undetermined +C2878928|T037|HT|T44.7X4|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, undetermined|Poisoning by beta-adrenoreceptor antagonists, undetermined +C2878929|T037|AB|T44.7X4A|ICD10CM|Poisoning by beta-adrenocpt antagonists, undetermined, init|Poisoning by beta-adrenocpt antagonists, undetermined, init +C2878929|T037|PT|T44.7X4A|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, undetermined, initial encounter|Poisoning by beta-adrenoreceptor antagonists, undetermined, initial encounter +C2878930|T037|AB|T44.7X4D|ICD10CM|Poisoning by beta-adrenocpt antagonists, undetermined, subs|Poisoning by beta-adrenocpt antagonists, undetermined, subs +C2878930|T037|PT|T44.7X4D|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, undetermined, subsequent encounter|Poisoning by beta-adrenoreceptor antagonists, undetermined, subsequent encounter +C2878931|T037|AB|T44.7X4S|ICD10CM|Poisoning by beta-adrenocpt antagonists, undet, sequela|Poisoning by beta-adrenocpt antagonists, undet, sequela +C2878931|T037|PT|T44.7X4S|ICD10CM|Poisoning by beta-adrenoreceptor antagonists, undetermined, sequela|Poisoning by beta-adrenoreceptor antagonists, undetermined, sequela +C2878932|T037|AB|T44.7X5|ICD10CM|Adverse effect of beta-adrenoreceptor antagonists|Adverse effect of beta-adrenoreceptor antagonists +C2878932|T037|HT|T44.7X5|ICD10CM|Adverse effect of beta-adrenoreceptor antagonists|Adverse effect of beta-adrenoreceptor antagonists +C2878933|T037|AB|T44.7X5A|ICD10CM|Adverse effect of beta-adrenoreceptor antagonists, init|Adverse effect of beta-adrenoreceptor antagonists, init +C2878933|T037|PT|T44.7X5A|ICD10CM|Adverse effect of beta-adrenoreceptor antagonists, initial encounter|Adverse effect of beta-adrenoreceptor antagonists, initial encounter +C2878934|T037|AB|T44.7X5D|ICD10CM|Adverse effect of beta-adrenoreceptor antagonists, subs|Adverse effect of beta-adrenoreceptor antagonists, subs +C2878934|T037|PT|T44.7X5D|ICD10CM|Adverse effect of beta-adrenoreceptor antagonists, subsequent encounter|Adverse effect of beta-adrenoreceptor antagonists, subsequent encounter +C2878935|T037|AB|T44.7X5S|ICD10CM|Adverse effect of beta-adrenoreceptor antagonists, sequela|Adverse effect of beta-adrenoreceptor antagonists, sequela +C2878935|T037|PT|T44.7X5S|ICD10CM|Adverse effect of beta-adrenoreceptor antagonists, sequela|Adverse effect of beta-adrenoreceptor antagonists, sequela +C2878936|T037|AB|T44.7X6|ICD10CM|Underdosing of beta-adrenoreceptor antagonists|Underdosing of beta-adrenoreceptor antagonists +C2878936|T037|HT|T44.7X6|ICD10CM|Underdosing of beta-adrenoreceptor antagonists|Underdosing of beta-adrenoreceptor antagonists +C2878937|T037|AB|T44.7X6A|ICD10CM|Underdosing of beta-adrenoreceptor antagonists, init encntr|Underdosing of beta-adrenoreceptor antagonists, init encntr +C2878937|T037|PT|T44.7X6A|ICD10CM|Underdosing of beta-adrenoreceptor antagonists, initial encounter|Underdosing of beta-adrenoreceptor antagonists, initial encounter +C2878938|T037|AB|T44.7X6D|ICD10CM|Underdosing of beta-adrenoreceptor antagonists, subs encntr|Underdosing of beta-adrenoreceptor antagonists, subs encntr +C2878938|T037|PT|T44.7X6D|ICD10CM|Underdosing of beta-adrenoreceptor antagonists, subsequent encounter|Underdosing of beta-adrenoreceptor antagonists, subsequent encounter +C2878939|T037|AB|T44.7X6S|ICD10CM|Underdosing of beta-adrenoreceptor antagonists, sequela|Underdosing of beta-adrenoreceptor antagonists, sequela +C2878939|T037|PT|T44.7X6S|ICD10CM|Underdosing of beta-adrenoreceptor antagonists, sequela|Underdosing of beta-adrenoreceptor antagonists, sequela +C0496987|T037|PS|T44.8|ICD10|Centrally acting and adrenergic-neuron-blocking agents, not elsewhere classified|Centrally acting and adrenergic-neuron-blocking agents, not elsewhere classified +C2878940|T037|AB|T44.8|ICD10CM|Centrally-acting and adrenergic-neuron- blocking agents|Centrally-acting and adrenergic-neuron- blocking agents +C0496987|T037|PX|T44.8|ICD10|Poisoning by centrally acting and adrenergic-neuron-blocking agents, not elsewhere classified|Poisoning by centrally acting and adrenergic-neuron-blocking agents, not elsewhere classified +C2878940|T037|AB|T44.8X|ICD10CM|Centrally-acting and adrenergic- neuron-blocking agents|Centrally-acting and adrenergic- neuron-blocking agents +C2878942|T037|AB|T44.8X1|ICD10CM|Poisoning by centr-acting/adren-neurn-block agnt, acc|Poisoning by centr-acting/adren-neurn-block agnt, acc +C2878941|T037|ET|T44.8X1|ICD10CM|Poisoning by centrally-acting and adrenergic-neuron-blocking agents NOS|Poisoning by centrally-acting and adrenergic-neuron-blocking agents NOS +C2878942|T037|HT|T44.8X1|ICD10CM|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, accidental (unintentional)|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, accidental (unintentional) +C2878943|T037|AB|T44.8X1A|ICD10CM|Poisoning by centr-acting/adren-neurn-block agnt, acc, init|Poisoning by centr-acting/adren-neurn-block agnt, acc, init +C2878944|T037|AB|T44.8X1D|ICD10CM|Poisoning by centr-acting/adren-neurn-block agnt, acc, subs|Poisoning by centr-acting/adren-neurn-block agnt, acc, subs +C2878945|T037|AB|T44.8X1S|ICD10CM|Poisn by centr-acting/adren-neurn-block agnt, acc, sequela|Poisn by centr-acting/adren-neurn-block agnt, acc, sequela +C2878946|T037|AB|T44.8X2|ICD10CM|Poisoning by centr-acting/adren-neurn-block agnt, self-harm|Poisoning by centr-acting/adren-neurn-block agnt, self-harm +C2878946|T037|HT|T44.8X2|ICD10CM|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, intentional self-harm|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, intentional self-harm +C2878947|T037|AB|T44.8X2A|ICD10CM|Poisn by centr-acting/adren-neurn-block agnt, slf-hrm, init|Poisn by centr-acting/adren-neurn-block agnt, slf-hrm, init +C2878948|T037|AB|T44.8X2D|ICD10CM|Poisn by centr-acting/adren-neurn-block agnt, slf-hrm, subs|Poisn by centr-acting/adren-neurn-block agnt, slf-hrm, subs +C2878949|T037|AB|T44.8X2S|ICD10CM|Poisn by centr-acting/adren-neurn-block agnt, slf-hrm, sqla|Poisn by centr-acting/adren-neurn-block agnt, slf-hrm, sqla +C2878949|T037|PT|T44.8X2S|ICD10CM|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, intentional self-harm, sequela|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, intentional self-harm, sequela +C2878950|T037|AB|T44.8X3|ICD10CM|Poisoning by centr-acting/adren-neurn-block agnt, assault|Poisoning by centr-acting/adren-neurn-block agnt, assault +C2878950|T037|HT|T44.8X3|ICD10CM|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault +C2878951|T037|AB|T44.8X3A|ICD10CM|Poisn by centr-acting/adren-neurn-block agnt, assault, init|Poisn by centr-acting/adren-neurn-block agnt, assault, init +C2878951|T037|PT|T44.8X3A|ICD10CM|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault, initial encounter|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault, initial encounter +C2878952|T037|AB|T44.8X3D|ICD10CM|Poisn by centr-acting/adren-neurn-block agnt, assault, subs|Poisn by centr-acting/adren-neurn-block agnt, assault, subs +C2878952|T037|PT|T44.8X3D|ICD10CM|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault, subsequent encounter|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault, subsequent encounter +C2878953|T037|AB|T44.8X3S|ICD10CM|Poisn by centr-acting/adren-neurn-block agnt, asslt, sequela|Poisn by centr-acting/adren-neurn-block agnt, asslt, sequela +C2878953|T037|PT|T44.8X3S|ICD10CM|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault, sequela|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault, sequela +C2878954|T037|AB|T44.8X4|ICD10CM|Poisoning by centr-acting/adren-neurn-block agnt, undet|Poisoning by centr-acting/adren-neurn-block agnt, undet +C2878954|T037|HT|T44.8X4|ICD10CM|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, undetermined|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, undetermined +C2878955|T037|AB|T44.8X4A|ICD10CM|Poisn by centr-acting/adren-neurn-block agnt, undet, init|Poisn by centr-acting/adren-neurn-block agnt, undet, init +C2878955|T037|PT|T44.8X4A|ICD10CM|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, undetermined, initial encounter|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, undetermined, initial encounter +C2878956|T037|AB|T44.8X4D|ICD10CM|Poisn by centr-acting/adren-neurn-block agnt, undet, subs|Poisn by centr-acting/adren-neurn-block agnt, undet, subs +C2878957|T037|AB|T44.8X4S|ICD10CM|Poisn by centr-acting/adren-neurn-block agnt, undet, sequela|Poisn by centr-acting/adren-neurn-block agnt, undet, sequela +C2878957|T037|PT|T44.8X4S|ICD10CM|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, undetermined, sequela|Poisoning by centrally-acting and adrenergic-neuron-blocking agents, undetermined, sequela +C2878958|T037|AB|T44.8X5|ICD10CM|Adverse effect of centr-acting/adren-neurn-block agnt|Adverse effect of centr-acting/adren-neurn-block agnt +C2878958|T037|HT|T44.8X5|ICD10CM|Adverse effect of centrally-acting and adrenergic-neuron-blocking agents|Adverse effect of centrally-acting and adrenergic-neuron-blocking agents +C2878959|T037|AB|T44.8X5A|ICD10CM|Adverse effect of centr-acting/adren-neurn-block agnt, init|Adverse effect of centr-acting/adren-neurn-block agnt, init +C2878959|T037|PT|T44.8X5A|ICD10CM|Adverse effect of centrally-acting and adrenergic-neuron-blocking agents, initial encounter|Adverse effect of centrally-acting and adrenergic-neuron-blocking agents, initial encounter +C2878960|T037|AB|T44.8X5D|ICD10CM|Adverse effect of centr-acting/adren-neurn-block agnt, subs|Adverse effect of centr-acting/adren-neurn-block agnt, subs +C2878960|T037|PT|T44.8X5D|ICD10CM|Adverse effect of centrally-acting and adrenergic-neuron-blocking agents, subsequent encounter|Adverse effect of centrally-acting and adrenergic-neuron-blocking agents, subsequent encounter +C2878961|T037|PT|T44.8X5S|ICD10CM|Adverse effect of centrally-acting and adrenergic-neuron-blocking agents, sequela|Adverse effect of centrally-acting and adrenergic-neuron-blocking agents, sequela +C2878961|T037|AB|T44.8X5S|ICD10CM|Advrs effect of centr-acting/adren-neurn-block agnt, sequela|Advrs effect of centr-acting/adren-neurn-block agnt, sequela +C2878962|T037|AB|T44.8X6|ICD10CM|Underdosing of centr-acting/adren-neurn-block agnt|Underdosing of centr-acting/adren-neurn-block agnt +C2878962|T037|HT|T44.8X6|ICD10CM|Underdosing of centrally-acting and adrenergic-neuron-blocking agents|Underdosing of centrally-acting and adrenergic-neuron-blocking agents +C2878963|T037|AB|T44.8X6A|ICD10CM|Underdosing of centr-acting/adren-neurn-block agnt, init|Underdosing of centr-acting/adren-neurn-block agnt, init +C2878963|T037|PT|T44.8X6A|ICD10CM|Underdosing of centrally-acting and adrenergic-neuron-blocking agents, initial encounter|Underdosing of centrally-acting and adrenergic-neuron-blocking agents, initial encounter +C2878964|T037|AB|T44.8X6D|ICD10CM|Underdosing of centr-acting/adren-neurn-block agnt, subs|Underdosing of centr-acting/adren-neurn-block agnt, subs +C2878964|T037|PT|T44.8X6D|ICD10CM|Underdosing of centrally-acting and adrenergic-neuron-blocking agents, subsequent encounter|Underdosing of centrally-acting and adrenergic-neuron-blocking agents, subsequent encounter +C2878965|T037|AB|T44.8X6S|ICD10CM|Underdosing of centr-acting/adren-neurn-block agnt, sequela|Underdosing of centr-acting/adren-neurn-block agnt, sequela +C2878965|T037|PT|T44.8X6S|ICD10CM|Underdosing of centrally-acting and adrenergic-neuron-blocking agents, sequela|Underdosing of centrally-acting and adrenergic-neuron-blocking agents, sequela +C2878967|T037|AB|T44.9|ICD10CM|And unsp drugs aff the autonomic nervous system|And unsp drugs aff the autonomic nervous system +C0496988|T037|PS|T44.9|ICD10|Other and unspecified drugs primarily affecting the autonomic nervous system|Other and unspecified drugs primarily affecting the autonomic nervous system +C0496988|T037|PX|T44.9|ICD10|Poisoning by other and unspecified drugs primarily affecting the autonomic nervous system|Poisoning by other and unspecified drugs primarily affecting the autonomic nervous system +C2878968|T037|AB|T44.90|ICD10CM|Unsp drugs primarily affecting the autonomic nervous system|Unsp drugs primarily affecting the autonomic nervous system +C2878969|T037|AB|T44.901|ICD10CM|Poisoning by unsp drugs aff the autonomic nervous sys, acc|Poisoning by unsp drugs aff the autonomic nervous sys, acc +C0161598|T037|ET|T44.901|ICD10CM|Poisoning by unspecified drugs primarily affecting the autonomic nervous system NOS|Poisoning by unspecified drugs primarily affecting the autonomic nervous system NOS +C2878970|T037|AB|T44.901A|ICD10CM|Poisn by unsp drugs aff the autonm nervous sys, acc, init|Poisn by unsp drugs aff the autonm nervous sys, acc, init +C2878971|T037|AB|T44.901D|ICD10CM|Poisn by unsp drugs aff the autonm nervous sys, acc, subs|Poisn by unsp drugs aff the autonm nervous sys, acc, subs +C2878972|T037|AB|T44.901S|ICD10CM|Poisn by unsp drugs aff the autonm nrv sys, acc, sequela|Poisn by unsp drugs aff the autonm nrv sys, acc, sequela +C2878973|T037|AB|T44.902|ICD10CM|Poisn by unsp drugs aff the autonm nervous sys, self-harm|Poisn by unsp drugs aff the autonm nervous sys, self-harm +C2878974|T037|AB|T44.902A|ICD10CM|Poisn by unsp drugs aff the autonm nrv sys, slf-hrm, init|Poisn by unsp drugs aff the autonm nrv sys, slf-hrm, init +C2878975|T037|AB|T44.902D|ICD10CM|Poisn by unsp drugs aff the autonm nrv sys, slf-hrm, subs|Poisn by unsp drugs aff the autonm nrv sys, slf-hrm, subs +C2878976|T037|AB|T44.902S|ICD10CM|Poisn by unsp drugs aff the autonm nrv sys, slf-hrm, sequela|Poisn by unsp drugs aff the autonm nrv sys, slf-hrm, sequela +C2878977|T037|AB|T44.903|ICD10CM|Poisoning by unsp drugs aff the autonm nervous sys, assault|Poisoning by unsp drugs aff the autonm nervous sys, assault +C2878977|T037|HT|T44.903|ICD10CM|Poisoning by unspecified drugs primarily affecting the autonomic nervous system, assault|Poisoning by unspecified drugs primarily affecting the autonomic nervous system, assault +C2878978|T037|AB|T44.903A|ICD10CM|Poisn by unsp drugs aff the autonm nervous sys, asslt, init|Poisn by unsp drugs aff the autonm nervous sys, asslt, init +C2878979|T037|AB|T44.903D|ICD10CM|Poisn by unsp drugs aff the autonm nervous sys, asslt, subs|Poisn by unsp drugs aff the autonm nervous sys, asslt, subs +C2878980|T037|AB|T44.903S|ICD10CM|Poisn by unsp drugs aff the autonm nrv sys, asslt, sequela|Poisn by unsp drugs aff the autonm nrv sys, asslt, sequela +C2878980|T037|PT|T44.903S|ICD10CM|Poisoning by unspecified drugs primarily affecting the autonomic nervous system, assault, sequela|Poisoning by unspecified drugs primarily affecting the autonomic nervous system, assault, sequela +C2878981|T037|AB|T44.904|ICD10CM|Poisoning by unsp drugs aff the autonomic nervous sys, undet|Poisoning by unsp drugs aff the autonomic nervous sys, undet +C2878981|T037|HT|T44.904|ICD10CM|Poisoning by unspecified drugs primarily affecting the autonomic nervous system, undetermined|Poisoning by unspecified drugs primarily affecting the autonomic nervous system, undetermined +C2878982|T037|AB|T44.904A|ICD10CM|Poisn by unsp drugs aff the autonm nervous sys, undet, init|Poisn by unsp drugs aff the autonm nervous sys, undet, init +C2878983|T037|AB|T44.904D|ICD10CM|Poisn by unsp drugs aff the autonm nervous sys, undet, subs|Poisn by unsp drugs aff the autonm nervous sys, undet, subs +C2878984|T037|AB|T44.904S|ICD10CM|Poisn by unsp drugs aff the autonm nrv sys, undet, sequela|Poisn by unsp drugs aff the autonm nrv sys, undet, sequela +C2878985|T037|AB|T44.905|ICD10CM|Adverse effect of unsp drugs aff the autonomic nervous sys|Adverse effect of unsp drugs aff the autonomic nervous sys +C2878985|T037|HT|T44.905|ICD10CM|Adverse effect of unspecified drugs primarily affecting the autonomic nervous system|Adverse effect of unspecified drugs primarily affecting the autonomic nervous system +C2878986|T037|AB|T44.905A|ICD10CM|Advrs effect of unsp drugs aff the autonm nervous sys, init|Advrs effect of unsp drugs aff the autonm nervous sys, init +C2878987|T037|AB|T44.905D|ICD10CM|Advrs effect of unsp drugs aff the autonm nervous sys, subs|Advrs effect of unsp drugs aff the autonm nervous sys, subs +C2878988|T037|PT|T44.905S|ICD10CM|Adverse effect of unspecified drugs primarily affecting the autonomic nervous system, sequela|Adverse effect of unspecified drugs primarily affecting the autonomic nervous system, sequela +C2878988|T037|AB|T44.905S|ICD10CM|Advrs effect of unsp drugs aff the autonm nrv sys, sequela|Advrs effect of unsp drugs aff the autonm nrv sys, sequela +C2878989|T037|AB|T44.906|ICD10CM|Underdosing of unsp drugs aff the autonomic nervous system|Underdosing of unsp drugs aff the autonomic nervous system +C2878989|T037|HT|T44.906|ICD10CM|Underdosing of unspecified drugs primarily affecting the autonomic nervous system|Underdosing of unspecified drugs primarily affecting the autonomic nervous system +C2878990|T037|PT|T44.906A|ICD10CM|Underdosing of unspecified drugs primarily affecting the autonomic nervous system, initial encounter|Underdosing of unspecified drugs primarily affecting the autonomic nervous system, initial encounter +C2878990|T037|AB|T44.906A|ICD10CM|Undrdose of unsp drugs aff the autonomic nervous sys, init|Undrdose of unsp drugs aff the autonomic nervous sys, init +C2878991|T037|AB|T44.906D|ICD10CM|Undrdose of unsp drugs aff the autonomic nervous sys, subs|Undrdose of unsp drugs aff the autonomic nervous sys, subs +C2878992|T037|PT|T44.906S|ICD10CM|Underdosing of unspecified drugs primarily affecting the autonomic nervous system, sequela|Underdosing of unspecified drugs primarily affecting the autonomic nervous system, sequela +C2878992|T037|AB|T44.906S|ICD10CM|Undrdose of unsp drugs aff the autonm nervous sys, sequela|Undrdose of unsp drugs aff the autonm nervous sys, sequela +C2878993|T037|AB|T44.99|ICD10CM|Drugs primarily affecting the autonomic nervous system|Drugs primarily affecting the autonomic nervous system +C2878995|T037|AB|T44.991|ICD10CM|Poisoning by oth drug aff the autonomic nervous sys, acc|Poisoning by oth drug aff the autonomic nervous sys, acc +C2878995|T037|HT|T44.991|ICD10CM|Poisoning by other drug primarily affecting the autonomic nervous system, accidental (unintentional)|Poisoning by other drug primarily affecting the autonomic nervous system, accidental (unintentional) +C2878994|T037|ET|T44.991|ICD10CM|Poisoning by other drugs primarily affecting the autonomic nervous system NOS|Poisoning by other drugs primarily affecting the autonomic nervous system NOS +C2878996|T037|AB|T44.991A|ICD10CM|Poisoning by oth drug aff the autonm nervous sys, acc, init|Poisoning by oth drug aff the autonm nervous sys, acc, init +C2878997|T037|AB|T44.991D|ICD10CM|Poisoning by oth drug aff the autonm nervous sys, acc, subs|Poisoning by oth drug aff the autonm nervous sys, acc, subs +C2878998|T037|AB|T44.991S|ICD10CM|Poisn by oth drug aff the autonm nervous sys, acc, sequela|Poisn by oth drug aff the autonm nervous sys, acc, sequela +C2878999|T037|AB|T44.992|ICD10CM|Poisoning by oth drug aff the autonm nervous sys, self-harm|Poisoning by oth drug aff the autonm nervous sys, self-harm +C2878999|T037|HT|T44.992|ICD10CM|Poisoning by other drug primarily affecting the autonomic nervous system, intentional self-harm|Poisoning by other drug primarily affecting the autonomic nervous system, intentional self-harm +C2879000|T037|AB|T44.992A|ICD10CM|Poisn by oth drug aff the autonm nervous sys, slf-hrm, init|Poisn by oth drug aff the autonm nervous sys, slf-hrm, init +C2879001|T037|AB|T44.992D|ICD10CM|Poisn by oth drug aff the autonm nervous sys, slf-hrm, subs|Poisn by oth drug aff the autonm nervous sys, slf-hrm, subs +C2879002|T037|AB|T44.992S|ICD10CM|Poisn by oth drug aff the autonm nrv sys, slf-hrm, sequela|Poisn by oth drug aff the autonm nrv sys, slf-hrm, sequela +C2879003|T037|AB|T44.993|ICD10CM|Poisoning by oth drug aff the autonomic nervous sys, assault|Poisoning by oth drug aff the autonomic nervous sys, assault +C2879003|T037|HT|T44.993|ICD10CM|Poisoning by other drug primarily affecting the autonomic nervous system, assault|Poisoning by other drug primarily affecting the autonomic nervous system, assault +C2879004|T037|AB|T44.993A|ICD10CM|Poisn by oth drug aff the autonm nervous sys, assault, init|Poisn by oth drug aff the autonm nervous sys, assault, init +C2879004|T037|PT|T44.993A|ICD10CM|Poisoning by other drug primarily affecting the autonomic nervous system, assault, initial encounter|Poisoning by other drug primarily affecting the autonomic nervous system, assault, initial encounter +C2879005|T037|AB|T44.993D|ICD10CM|Poisn by oth drug aff the autonm nervous sys, assault, subs|Poisn by oth drug aff the autonm nervous sys, assault, subs +C2879006|T037|AB|T44.993S|ICD10CM|Poisn by oth drug aff the autonm nervous sys, asslt, sequela|Poisn by oth drug aff the autonm nervous sys, asslt, sequela +C2879006|T037|PT|T44.993S|ICD10CM|Poisoning by other drug primarily affecting the autonomic nervous system, assault, sequela|Poisoning by other drug primarily affecting the autonomic nervous system, assault, sequela +C2879007|T037|AB|T44.994|ICD10CM|Poisoning by oth drug aff the autonomic nervous sys, undet|Poisoning by oth drug aff the autonomic nervous sys, undet +C2879007|T037|HT|T44.994|ICD10CM|Poisoning by other drug primarily affecting the autonomic nervous system, undetermined|Poisoning by other drug primarily affecting the autonomic nervous system, undetermined +C2879008|T037|AB|T44.994A|ICD10CM|Poisn by oth drug aff the autonm nervous sys, undet, init|Poisn by oth drug aff the autonm nervous sys, undet, init +C2879009|T037|AB|T44.994D|ICD10CM|Poisn by oth drug aff the autonm nervous sys, undet, subs|Poisn by oth drug aff the autonm nervous sys, undet, subs +C2879010|T037|AB|T44.994S|ICD10CM|Poisn by oth drug aff the autonm nervous sys, undet, sequela|Poisn by oth drug aff the autonm nervous sys, undet, sequela +C2879010|T037|PT|T44.994S|ICD10CM|Poisoning by other drug primarily affecting the autonomic nervous system, undetermined, sequela|Poisoning by other drug primarily affecting the autonomic nervous system, undetermined, sequela +C2879011|T037|AB|T44.995|ICD10CM|Adverse effect of drug aff the autonomic nervous system|Adverse effect of drug aff the autonomic nervous system +C2879011|T037|HT|T44.995|ICD10CM|Adverse effect of other drug primarily affecting the autonomic nervous system|Adverse effect of other drug primarily affecting the autonomic nervous system +C2879012|T037|AB|T44.995A|ICD10CM|Adverse effect of drug aff the autonomic nervous sys, init|Adverse effect of drug aff the autonomic nervous sys, init +C2879012|T037|PT|T44.995A|ICD10CM|Adverse effect of other drug primarily affecting the autonomic nervous system, initial encounter|Adverse effect of other drug primarily affecting the autonomic nervous system, initial encounter +C2879013|T037|AB|T44.995D|ICD10CM|Adverse effect of drug aff the autonomic nervous sys, subs|Adverse effect of drug aff the autonomic nervous sys, subs +C2879013|T037|PT|T44.995D|ICD10CM|Adverse effect of other drug primarily affecting the autonomic nervous system, subsequent encounter|Adverse effect of other drug primarily affecting the autonomic nervous system, subsequent encounter +C2879014|T037|AB|T44.995S|ICD10CM|Adverse effect of drug aff the autonm nervous sys, sequela|Adverse effect of drug aff the autonm nervous sys, sequela +C2879014|T037|PT|T44.995S|ICD10CM|Adverse effect of other drug primarily affecting the autonomic nervous system, sequela|Adverse effect of other drug primarily affecting the autonomic nervous system, sequela +C2879015|T037|AB|T44.996|ICD10CM|Underdosing of drug aff the autonomic nervous system|Underdosing of drug aff the autonomic nervous system +C2879015|T037|HT|T44.996|ICD10CM|Underdosing of other drug primarily affecting the autonomic nervous system|Underdosing of other drug primarily affecting the autonomic nervous system +C2879016|T037|AB|T44.996A|ICD10CM|Underdosing of drug aff the autonomic nervous system, init|Underdosing of drug aff the autonomic nervous system, init +C2879016|T037|PT|T44.996A|ICD10CM|Underdosing of other drug primarily affecting the autonomic nervous system, initial encounter|Underdosing of other drug primarily affecting the autonomic nervous system, initial encounter +C2879017|T037|AB|T44.996D|ICD10CM|Underdosing of drug aff the autonomic nervous system, subs|Underdosing of drug aff the autonomic nervous system, subs +C2879017|T037|PT|T44.996D|ICD10CM|Underdosing of other drug primarily affecting the autonomic nervous system, subsequent encounter|Underdosing of other drug primarily affecting the autonomic nervous system, subsequent encounter +C2879018|T037|AB|T44.996S|ICD10CM|Underdosing of drug aff the autonomic nervous sys, sequela|Underdosing of drug aff the autonomic nervous sys, sequela +C2879018|T037|PT|T44.996S|ICD10CM|Underdosing of other drug primarily affecting the autonomic nervous system, sequela|Underdosing of other drug primarily affecting the autonomic nervous system, sequela +C0496097|T037|HT|T45|ICD10|Poisoning by primarily systemic and haematological agents, not elsewhere classified|Poisoning by primarily systemic and haematological agents, not elsewhere classified +C0496097|T037|HT|T45|ICD10AE|Poisoning by primarily systemic and hematological agents, not elsewhere classified|Poisoning by primarily systemic and hematological agents, not elsewhere classified +C2879019|T037|AB|T45|ICD10CM|Primarily systemic and hematological agents, NEC|Primarily systemic and hematological agents, NEC +C2879020|T037|AB|T45.0|ICD10CM|Antiallergic and antiemetic drugs|Antiallergic and antiemetic drugs +C0161519|T037|PS|T45.0|ICD10|Antiallergic and antiemetic drugs|Antiallergic and antiemetic drugs +C0161519|T037|PX|T45.0|ICD10|Poisoning by antiallergic and antiemetic drugs|Poisoning by antiallergic and antiemetic drugs +C2879020|T037|HT|T45.0|ICD10CM|Poisoning by, adverse effect of and underdosing of antiallergic and antiemetic drugs|Poisoning by, adverse effect of and underdosing of antiallergic and antiemetic drugs +C2879020|T037|AB|T45.0X|ICD10CM|Antiallergic and antiemetic drugs|Antiallergic and antiemetic drugs +C2879020|T037|HT|T45.0X|ICD10CM|Poisoning by, adverse effect of and underdosing of antiallergic and antiemetic drugs|Poisoning by, adverse effect of and underdosing of antiallergic and antiemetic drugs +C2879021|T037|AB|T45.0X1|ICD10CM|Poisoning by antiallerg/antiemetic, accidental|Poisoning by antiallerg/antiemetic, accidental +C0161519|T037|ET|T45.0X1|ICD10CM|Poisoning by antiallergic and antiemetic drugs NOS|Poisoning by antiallergic and antiemetic drugs NOS +C2879021|T037|HT|T45.0X1|ICD10CM|Poisoning by antiallergic and antiemetic drugs, accidental (unintentional)|Poisoning by antiallergic and antiemetic drugs, accidental (unintentional) +C2879022|T037|AB|T45.0X1A|ICD10CM|Poisoning by antiallerg/antiemetic, accidental, init|Poisoning by antiallerg/antiemetic, accidental, init +C2879022|T037|PT|T45.0X1A|ICD10CM|Poisoning by antiallergic and antiemetic drugs, accidental (unintentional), initial encounter|Poisoning by antiallergic and antiemetic drugs, accidental (unintentional), initial encounter +C2879023|T037|AB|T45.0X1D|ICD10CM|Poisoning by antiallerg/antiemetic, accidental, subs|Poisoning by antiallerg/antiemetic, accidental, subs +C2879023|T037|PT|T45.0X1D|ICD10CM|Poisoning by antiallergic and antiemetic drugs, accidental (unintentional), subsequent encounter|Poisoning by antiallergic and antiemetic drugs, accidental (unintentional), subsequent encounter +C2879024|T037|AB|T45.0X1S|ICD10CM|Poisoning by antiallerg/antiemetic, accidental, sequela|Poisoning by antiallerg/antiemetic, accidental, sequela +C2879024|T037|PT|T45.0X1S|ICD10CM|Poisoning by antiallergic and antiemetic drugs, accidental (unintentional), sequela|Poisoning by antiallergic and antiemetic drugs, accidental (unintentional), sequela +C2879025|T037|AB|T45.0X2|ICD10CM|Poisoning by antiallerg/antiemetic, intentional self-harm|Poisoning by antiallerg/antiemetic, intentional self-harm +C2879025|T037|HT|T45.0X2|ICD10CM|Poisoning by antiallergic and antiemetic drugs, intentional self-harm|Poisoning by antiallergic and antiemetic drugs, intentional self-harm +C2879026|T037|AB|T45.0X2A|ICD10CM|Poisoning by antiallerg/antiemetic, self-harm, init|Poisoning by antiallerg/antiemetic, self-harm, init +C2879026|T037|PT|T45.0X2A|ICD10CM|Poisoning by antiallergic and antiemetic drugs, intentional self-harm, initial encounter|Poisoning by antiallergic and antiemetic drugs, intentional self-harm, initial encounter +C2879027|T037|AB|T45.0X2D|ICD10CM|Poisoning by antiallerg/antiemetic, self-harm, subs|Poisoning by antiallerg/antiemetic, self-harm, subs +C2879027|T037|PT|T45.0X2D|ICD10CM|Poisoning by antiallergic and antiemetic drugs, intentional self-harm, subsequent encounter|Poisoning by antiallergic and antiemetic drugs, intentional self-harm, subsequent encounter +C2879028|T037|AB|T45.0X2S|ICD10CM|Poisoning by antiallerg/antiemetic, self-harm, sequela|Poisoning by antiallerg/antiemetic, self-harm, sequela +C2879028|T037|PT|T45.0X2S|ICD10CM|Poisoning by antiallergic and antiemetic drugs, intentional self-harm, sequela|Poisoning by antiallergic and antiemetic drugs, intentional self-harm, sequela +C2879029|T037|AB|T45.0X3|ICD10CM|Poisoning by antiallergic and antiemetic drugs, assault|Poisoning by antiallergic and antiemetic drugs, assault +C2879029|T037|HT|T45.0X3|ICD10CM|Poisoning by antiallergic and antiemetic drugs, assault|Poisoning by antiallergic and antiemetic drugs, assault +C2879030|T037|AB|T45.0X3A|ICD10CM|Poisoning by antiallerg/antiemetic, assault, init|Poisoning by antiallerg/antiemetic, assault, init +C2879030|T037|PT|T45.0X3A|ICD10CM|Poisoning by antiallergic and antiemetic drugs, assault, initial encounter|Poisoning by antiallergic and antiemetic drugs, assault, initial encounter +C2879031|T037|AB|T45.0X3D|ICD10CM|Poisoning by antiallerg/antiemetic, assault, subs|Poisoning by antiallerg/antiemetic, assault, subs +C2879031|T037|PT|T45.0X3D|ICD10CM|Poisoning by antiallergic and antiemetic drugs, assault, subsequent encounter|Poisoning by antiallergic and antiemetic drugs, assault, subsequent encounter +C2879032|T037|AB|T45.0X3S|ICD10CM|Poisoning by antiallerg/antiemetic, assault, sequela|Poisoning by antiallerg/antiemetic, assault, sequela +C2879032|T037|PT|T45.0X3S|ICD10CM|Poisoning by antiallergic and antiemetic drugs, assault, sequela|Poisoning by antiallergic and antiemetic drugs, assault, sequela +C2879033|T037|AB|T45.0X4|ICD10CM|Poisoning by antiallergic and antiemetic drugs, undetermined|Poisoning by antiallergic and antiemetic drugs, undetermined +C2879033|T037|HT|T45.0X4|ICD10CM|Poisoning by antiallergic and antiemetic drugs, undetermined|Poisoning by antiallergic and antiemetic drugs, undetermined +C2879034|T037|AB|T45.0X4A|ICD10CM|Poisoning by antiallerg/antiemetic, undetermined, init|Poisoning by antiallerg/antiemetic, undetermined, init +C2879034|T037|PT|T45.0X4A|ICD10CM|Poisoning by antiallergic and antiemetic drugs, undetermined, initial encounter|Poisoning by antiallergic and antiemetic drugs, undetermined, initial encounter +C2879035|T037|AB|T45.0X4D|ICD10CM|Poisoning by antiallerg/antiemetic, undetermined, subs|Poisoning by antiallerg/antiemetic, undetermined, subs +C2879035|T037|PT|T45.0X4D|ICD10CM|Poisoning by antiallergic and antiemetic drugs, undetermined, subsequent encounter|Poisoning by antiallergic and antiemetic drugs, undetermined, subsequent encounter +C2879036|T037|AB|T45.0X4S|ICD10CM|Poisoning by antiallerg/antiemetic, undetermined, sequela|Poisoning by antiallerg/antiemetic, undetermined, sequela +C2879036|T037|PT|T45.0X4S|ICD10CM|Poisoning by antiallergic and antiemetic drugs, undetermined, sequela|Poisoning by antiallergic and antiemetic drugs, undetermined, sequela +C2879037|T037|AB|T45.0X5|ICD10CM|Adverse effect of antiallergic and antiemetic drugs|Adverse effect of antiallergic and antiemetic drugs +C2879037|T037|HT|T45.0X5|ICD10CM|Adverse effect of antiallergic and antiemetic drugs|Adverse effect of antiallergic and antiemetic drugs +C2879038|T037|AB|T45.0X5A|ICD10CM|Adverse effect of antiallergic and antiemetic drugs, init|Adverse effect of antiallergic and antiemetic drugs, init +C2879038|T037|PT|T45.0X5A|ICD10CM|Adverse effect of antiallergic and antiemetic drugs, initial encounter|Adverse effect of antiallergic and antiemetic drugs, initial encounter +C2879039|T037|AB|T45.0X5D|ICD10CM|Adverse effect of antiallergic and antiemetic drugs, subs|Adverse effect of antiallergic and antiemetic drugs, subs +C2879039|T037|PT|T45.0X5D|ICD10CM|Adverse effect of antiallergic and antiemetic drugs, subsequent encounter|Adverse effect of antiallergic and antiemetic drugs, subsequent encounter +C2879040|T037|AB|T45.0X5S|ICD10CM|Adverse effect of antiallergic and antiemetic drugs, sequela|Adverse effect of antiallergic and antiemetic drugs, sequela +C2879040|T037|PT|T45.0X5S|ICD10CM|Adverse effect of antiallergic and antiemetic drugs, sequela|Adverse effect of antiallergic and antiemetic drugs, sequela +C2879041|T037|AB|T45.0X6|ICD10CM|Underdosing of antiallergic and antiemetic drugs|Underdosing of antiallergic and antiemetic drugs +C2879041|T037|HT|T45.0X6|ICD10CM|Underdosing of antiallergic and antiemetic drugs|Underdosing of antiallergic and antiemetic drugs +C2879042|T037|AB|T45.0X6A|ICD10CM|Underdosing of antiallergic and antiemetic drugs, init|Underdosing of antiallergic and antiemetic drugs, init +C2879042|T037|PT|T45.0X6A|ICD10CM|Underdosing of antiallergic and antiemetic drugs, initial encounter|Underdosing of antiallergic and antiemetic drugs, initial encounter +C2879043|T037|AB|T45.0X6D|ICD10CM|Underdosing of antiallergic and antiemetic drugs, subs|Underdosing of antiallergic and antiemetic drugs, subs +C2879043|T037|PT|T45.0X6D|ICD10CM|Underdosing of antiallergic and antiemetic drugs, subsequent encounter|Underdosing of antiallergic and antiemetic drugs, subsequent encounter +C2879044|T037|AB|T45.0X6S|ICD10CM|Underdosing of antiallergic and antiemetic drugs, sequela|Underdosing of antiallergic and antiemetic drugs, sequela +C2879044|T037|PT|T45.0X6S|ICD10CM|Underdosing of antiallergic and antiemetic drugs, sequela|Underdosing of antiallergic and antiemetic drugs, sequela +C2879045|T037|AB|T45.1|ICD10CM|Antineoplastic and immunosuppressive drugs|Antineoplastic and immunosuppressive drugs +C0412836|T037|PS|T45.1|ICD10|Antineoplastic and immunosuppressive drugs|Antineoplastic and immunosuppressive drugs +C0412836|T037|PX|T45.1|ICD10|Poisoning by antineoplastic and immunosuppressive drugs|Poisoning by antineoplastic and immunosuppressive drugs +C2879045|T037|HT|T45.1|ICD10CM|Poisoning by, adverse effect of and underdosing of antineoplastic and immunosuppressive drugs|Poisoning by, adverse effect of and underdosing of antineoplastic and immunosuppressive drugs +C2879045|T037|AB|T45.1X|ICD10CM|Antineoplastic and immunosuppressive drugs|Antineoplastic and immunosuppressive drugs +C2879045|T037|HT|T45.1X|ICD10CM|Poisoning by, adverse effect of and underdosing of antineoplastic and immunosuppressive drugs|Poisoning by, adverse effect of and underdosing of antineoplastic and immunosuppressive drugs +C2879046|T037|AB|T45.1X1|ICD10CM|Poisoning by antineoplastic and immunosup drugs, accidental|Poisoning by antineoplastic and immunosup drugs, accidental +C0412836|T037|ET|T45.1X1|ICD10CM|Poisoning by antineoplastic and immunosuppressive drugs NOS|Poisoning by antineoplastic and immunosuppressive drugs NOS +C2879046|T037|HT|T45.1X1|ICD10CM|Poisoning by antineoplastic and immunosuppressive drugs, accidental (unintentional)|Poisoning by antineoplastic and immunosuppressive drugs, accidental (unintentional) +C2879047|T037|AB|T45.1X1A|ICD10CM|Poisoning by antineopl and immunosup drugs, acc, init|Poisoning by antineopl and immunosup drugs, acc, init +C2879048|T037|AB|T45.1X1D|ICD10CM|Poisoning by antineopl and immunosup drugs, acc, subs|Poisoning by antineopl and immunosup drugs, acc, subs +C2879049|T037|AB|T45.1X1S|ICD10CM|Poisoning by antineopl and immunosup drugs, acc, sequela|Poisoning by antineopl and immunosup drugs, acc, sequela +C2879049|T037|PT|T45.1X1S|ICD10CM|Poisoning by antineoplastic and immunosuppressive drugs, accidental (unintentional), sequela|Poisoning by antineoplastic and immunosuppressive drugs, accidental (unintentional), sequela +C2879050|T037|AB|T45.1X2|ICD10CM|Poisoning by antineoplastic and immunosup drugs, self-harm|Poisoning by antineoplastic and immunosup drugs, self-harm +C2879050|T037|HT|T45.1X2|ICD10CM|Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm|Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm +C2879051|T037|AB|T45.1X2A|ICD10CM|Poisoning by antineopl and immunosup drugs, self-harm, init|Poisoning by antineopl and immunosup drugs, self-harm, init +C2879051|T037|PT|T45.1X2A|ICD10CM|Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm, initial encounter|Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm, initial encounter +C2879052|T037|AB|T45.1X2D|ICD10CM|Poisoning by antineopl and immunosup drugs, self-harm, subs|Poisoning by antineopl and immunosup drugs, self-harm, subs +C2879052|T037|PT|T45.1X2D|ICD10CM|Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm, subsequent encounter|Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm, subsequent encounter +C2879053|T037|AB|T45.1X2S|ICD10CM|Poisn by antineopl and immunosup drugs, self-harm, sequela|Poisn by antineopl and immunosup drugs, self-harm, sequela +C2879053|T037|PT|T45.1X2S|ICD10CM|Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm, sequela|Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm, sequela +C2879054|T037|AB|T45.1X3|ICD10CM|Poisoning by antineoplastic and immunosup drugs, assault|Poisoning by antineoplastic and immunosup drugs, assault +C2879054|T037|HT|T45.1X3|ICD10CM|Poisoning by antineoplastic and immunosuppressive drugs, assault|Poisoning by antineoplastic and immunosuppressive drugs, assault +C2879055|T037|AB|T45.1X3A|ICD10CM|Poisoning by antineopl and immunosup drugs, assault, init|Poisoning by antineopl and immunosup drugs, assault, init +C2879055|T037|PT|T45.1X3A|ICD10CM|Poisoning by antineoplastic and immunosuppressive drugs, assault, initial encounter|Poisoning by antineoplastic and immunosuppressive drugs, assault, initial encounter +C2879056|T037|AB|T45.1X3D|ICD10CM|Poisoning by antineopl and immunosup drugs, assault, subs|Poisoning by antineopl and immunosup drugs, assault, subs +C2879056|T037|PT|T45.1X3D|ICD10CM|Poisoning by antineoplastic and immunosuppressive drugs, assault, subsequent encounter|Poisoning by antineoplastic and immunosuppressive drugs, assault, subsequent encounter +C2879057|T037|AB|T45.1X3S|ICD10CM|Poisoning by antineopl and immunosup drugs, assault, sequela|Poisoning by antineopl and immunosup drugs, assault, sequela +C2879057|T037|PT|T45.1X3S|ICD10CM|Poisoning by antineoplastic and immunosuppressive drugs, assault, sequela|Poisoning by antineoplastic and immunosuppressive drugs, assault, sequela +C2879058|T037|AB|T45.1X4|ICD10CM|Poisoning by antineopl and immunosup drugs, undetermined|Poisoning by antineopl and immunosup drugs, undetermined +C2879058|T037|HT|T45.1X4|ICD10CM|Poisoning by antineoplastic and immunosuppressive drugs, undetermined|Poisoning by antineoplastic and immunosuppressive drugs, undetermined +C2879059|T037|AB|T45.1X4A|ICD10CM|Poisoning by antineopl and immunosup drugs, undet, init|Poisoning by antineopl and immunosup drugs, undet, init +C2879059|T037|PT|T45.1X4A|ICD10CM|Poisoning by antineoplastic and immunosuppressive drugs, undetermined, initial encounter|Poisoning by antineoplastic and immunosuppressive drugs, undetermined, initial encounter +C2879060|T037|AB|T45.1X4D|ICD10CM|Poisoning by antineopl and immunosup drugs, undet, subs|Poisoning by antineopl and immunosup drugs, undet, subs +C2879060|T037|PT|T45.1X4D|ICD10CM|Poisoning by antineoplastic and immunosuppressive drugs, undetermined, subsequent encounter|Poisoning by antineoplastic and immunosuppressive drugs, undetermined, subsequent encounter +C2879061|T037|AB|T45.1X4S|ICD10CM|Poisoning by antineopl and immunosup drugs, undet, sequela|Poisoning by antineopl and immunosup drugs, undet, sequela +C2879061|T037|PT|T45.1X4S|ICD10CM|Poisoning by antineoplastic and immunosuppressive drugs, undetermined, sequela|Poisoning by antineoplastic and immunosuppressive drugs, undetermined, sequela +C2879062|T037|AB|T45.1X5|ICD10CM|Adverse effect of antineoplastic and immunosuppressive drugs|Adverse effect of antineoplastic and immunosuppressive drugs +C2879062|T037|HT|T45.1X5|ICD10CM|Adverse effect of antineoplastic and immunosuppressive drugs|Adverse effect of antineoplastic and immunosuppressive drugs +C2879063|T037|AB|T45.1X5A|ICD10CM|Adverse effect of antineoplastic and immunosup drugs, init|Adverse effect of antineoplastic and immunosup drugs, init +C2879063|T037|PT|T45.1X5A|ICD10CM|Adverse effect of antineoplastic and immunosuppressive drugs, initial encounter|Adverse effect of antineoplastic and immunosuppressive drugs, initial encounter +C2879064|T037|AB|T45.1X5D|ICD10CM|Adverse effect of antineoplastic and immunosup drugs, subs|Adverse effect of antineoplastic and immunosup drugs, subs +C2879064|T037|PT|T45.1X5D|ICD10CM|Adverse effect of antineoplastic and immunosuppressive drugs, subsequent encounter|Adverse effect of antineoplastic and immunosuppressive drugs, subsequent encounter +C2879065|T037|AB|T45.1X5S|ICD10CM|Adverse effect of antineopl and immunosup drugs, sequela|Adverse effect of antineopl and immunosup drugs, sequela +C2879065|T037|PT|T45.1X5S|ICD10CM|Adverse effect of antineoplastic and immunosuppressive drugs, sequela|Adverse effect of antineoplastic and immunosuppressive drugs, sequela +C2879066|T037|AB|T45.1X6|ICD10CM|Underdosing of antineoplastic and immunosuppressive drugs|Underdosing of antineoplastic and immunosuppressive drugs +C2879066|T037|HT|T45.1X6|ICD10CM|Underdosing of antineoplastic and immunosuppressive drugs|Underdosing of antineoplastic and immunosuppressive drugs +C2879067|T037|AB|T45.1X6A|ICD10CM|Underdosing of antineoplastic and immunosup drugs, init|Underdosing of antineoplastic and immunosup drugs, init +C2879067|T037|PT|T45.1X6A|ICD10CM|Underdosing of antineoplastic and immunosuppressive drugs, initial encounter|Underdosing of antineoplastic and immunosuppressive drugs, initial encounter +C2879068|T037|AB|T45.1X6D|ICD10CM|Underdosing of antineoplastic and immunosup drugs, subs|Underdosing of antineoplastic and immunosup drugs, subs +C2879068|T037|PT|T45.1X6D|ICD10CM|Underdosing of antineoplastic and immunosuppressive drugs, subsequent encounter|Underdosing of antineoplastic and immunosuppressive drugs, subsequent encounter +C2879069|T037|AB|T45.1X6S|ICD10CM|Underdosing of antineoplastic and immunosup drugs, sequela|Underdosing of antineoplastic and immunosup drugs, sequela +C2879069|T037|PT|T45.1X6S|ICD10CM|Underdosing of antineoplastic and immunosuppressive drugs, sequela|Underdosing of antineoplastic and immunosuppressive drugs, sequela +C0869509|T037|PX|T45.2|ICD10|Poisoning by vitamins, not elsewhere classified|Poisoning by vitamins, not elsewhere classified +C2879070|T037|AB|T45.2|ICD10CM|Poisoning by, adverse effect of and underdosing of vitamins|Poisoning by, adverse effect of and underdosing of vitamins +C2879070|T037|HT|T45.2|ICD10CM|Poisoning by, adverse effect of and underdosing of vitamins|Poisoning by, adverse effect of and underdosing of vitamins +C0869509|T037|PS|T45.2|ICD10|Vitamins, not elsewhere classified|Vitamins, not elsewhere classified +C2879070|T037|HT|T45.2X|ICD10CM|Poisoning by, adverse effect of and underdosing of vitamins|Poisoning by, adverse effect of and underdosing of vitamins +C2879070|T037|AB|T45.2X|ICD10CM|Poisoning by, adverse effect of and underdosing of vitamins|Poisoning by, adverse effect of and underdosing of vitamins +C0344124|T037|ET|T45.2X1|ICD10CM|Poisoning by vitamins NOS|Poisoning by vitamins NOS +C2879071|T037|AB|T45.2X1|ICD10CM|Poisoning by vitamins, accidental (unintentional)|Poisoning by vitamins, accidental (unintentional) +C2879071|T037|HT|T45.2X1|ICD10CM|Poisoning by vitamins, accidental (unintentional)|Poisoning by vitamins, accidental (unintentional) +C2879072|T037|AB|T45.2X1A|ICD10CM|Poisoning by vitamins, accidental (unintentional), init|Poisoning by vitamins, accidental (unintentional), init +C2879072|T037|PT|T45.2X1A|ICD10CM|Poisoning by vitamins, accidental (unintentional), initial encounter|Poisoning by vitamins, accidental (unintentional), initial encounter +C2879073|T037|AB|T45.2X1D|ICD10CM|Poisoning by vitamins, accidental (unintentional), subs|Poisoning by vitamins, accidental (unintentional), subs +C2879073|T037|PT|T45.2X1D|ICD10CM|Poisoning by vitamins, accidental (unintentional), subsequent encounter|Poisoning by vitamins, accidental (unintentional), subsequent encounter +C2879074|T037|AB|T45.2X1S|ICD10CM|Poisoning by vitamins, accidental (unintentional), sequela|Poisoning by vitamins, accidental (unintentional), sequela +C2879074|T037|PT|T45.2X1S|ICD10CM|Poisoning by vitamins, accidental (unintentional), sequela|Poisoning by vitamins, accidental (unintentional), sequela +C2879075|T037|AB|T45.2X2|ICD10CM|Poisoning by vitamins, intentional self-harm|Poisoning by vitamins, intentional self-harm +C2879075|T037|HT|T45.2X2|ICD10CM|Poisoning by vitamins, intentional self-harm|Poisoning by vitamins, intentional self-harm +C2879076|T037|AB|T45.2X2A|ICD10CM|Poisoning by vitamins, intentional self-harm, init encntr|Poisoning by vitamins, intentional self-harm, init encntr +C2879076|T037|PT|T45.2X2A|ICD10CM|Poisoning by vitamins, intentional self-harm, initial encounter|Poisoning by vitamins, intentional self-harm, initial encounter +C2879077|T037|AB|T45.2X2D|ICD10CM|Poisoning by vitamins, intentional self-harm, subs encntr|Poisoning by vitamins, intentional self-harm, subs encntr +C2879077|T037|PT|T45.2X2D|ICD10CM|Poisoning by vitamins, intentional self-harm, subsequent encounter|Poisoning by vitamins, intentional self-harm, subsequent encounter +C2879078|T037|AB|T45.2X2S|ICD10CM|Poisoning by vitamins, intentional self-harm, sequela|Poisoning by vitamins, intentional self-harm, sequela +C2879078|T037|PT|T45.2X2S|ICD10CM|Poisoning by vitamins, intentional self-harm, sequela|Poisoning by vitamins, intentional self-harm, sequela +C2879079|T037|AB|T45.2X3|ICD10CM|Poisoning by vitamins, assault|Poisoning by vitamins, assault +C2879079|T037|HT|T45.2X3|ICD10CM|Poisoning by vitamins, assault|Poisoning by vitamins, assault +C2879080|T037|AB|T45.2X3A|ICD10CM|Poisoning by vitamins, assault, initial encounter|Poisoning by vitamins, assault, initial encounter +C2879080|T037|PT|T45.2X3A|ICD10CM|Poisoning by vitamins, assault, initial encounter|Poisoning by vitamins, assault, initial encounter +C2879081|T037|AB|T45.2X3D|ICD10CM|Poisoning by vitamins, assault, subsequent encounter|Poisoning by vitamins, assault, subsequent encounter +C2879081|T037|PT|T45.2X3D|ICD10CM|Poisoning by vitamins, assault, subsequent encounter|Poisoning by vitamins, assault, subsequent encounter +C2879082|T037|AB|T45.2X3S|ICD10CM|Poisoning by vitamins, assault, sequela|Poisoning by vitamins, assault, sequela +C2879082|T037|PT|T45.2X3S|ICD10CM|Poisoning by vitamins, assault, sequela|Poisoning by vitamins, assault, sequela +C2879083|T037|AB|T45.2X4|ICD10CM|Poisoning by vitamins, undetermined|Poisoning by vitamins, undetermined +C2879083|T037|HT|T45.2X4|ICD10CM|Poisoning by vitamins, undetermined|Poisoning by vitamins, undetermined +C2879084|T037|AB|T45.2X4A|ICD10CM|Poisoning by vitamins, undetermined, initial encounter|Poisoning by vitamins, undetermined, initial encounter +C2879084|T037|PT|T45.2X4A|ICD10CM|Poisoning by vitamins, undetermined, initial encounter|Poisoning by vitamins, undetermined, initial encounter +C2879085|T037|AB|T45.2X4D|ICD10CM|Poisoning by vitamins, undetermined, subsequent encounter|Poisoning by vitamins, undetermined, subsequent encounter +C2879085|T037|PT|T45.2X4D|ICD10CM|Poisoning by vitamins, undetermined, subsequent encounter|Poisoning by vitamins, undetermined, subsequent encounter +C2879086|T037|AB|T45.2X4S|ICD10CM|Poisoning by vitamins, undetermined, sequela|Poisoning by vitamins, undetermined, sequela +C2879086|T037|PT|T45.2X4S|ICD10CM|Poisoning by vitamins, undetermined, sequela|Poisoning by vitamins, undetermined, sequela +C0413656|T046|AB|T45.2X5|ICD10CM|Adverse effect of vitamins|Adverse effect of vitamins +C0413656|T046|HT|T45.2X5|ICD10CM|Adverse effect of vitamins|Adverse effect of vitamins +C2879088|T037|AB|T45.2X5A|ICD10CM|Adverse effect of vitamins, initial encounter|Adverse effect of vitamins, initial encounter +C2879088|T037|PT|T45.2X5A|ICD10CM|Adverse effect of vitamins, initial encounter|Adverse effect of vitamins, initial encounter +C2879089|T037|AB|T45.2X5D|ICD10CM|Adverse effect of vitamins, subsequent encounter|Adverse effect of vitamins, subsequent encounter +C2879089|T037|PT|T45.2X5D|ICD10CM|Adverse effect of vitamins, subsequent encounter|Adverse effect of vitamins, subsequent encounter +C2879090|T037|AB|T45.2X5S|ICD10CM|Adverse effect of vitamins, sequela|Adverse effect of vitamins, sequela +C2879090|T037|PT|T45.2X5S|ICD10CM|Adverse effect of vitamins, sequela|Adverse effect of vitamins, sequela +C2879091|T033|AB|T45.2X6|ICD10CM|Underdosing of vitamins|Underdosing of vitamins +C2879091|T033|HT|T45.2X6|ICD10CM|Underdosing of vitamins|Underdosing of vitamins +C2879092|T037|AB|T45.2X6A|ICD10CM|Underdosing of vitamins, initial encounter|Underdosing of vitamins, initial encounter +C2879092|T037|PT|T45.2X6A|ICD10CM|Underdosing of vitamins, initial encounter|Underdosing of vitamins, initial encounter +C2879093|T037|AB|T45.2X6D|ICD10CM|Underdosing of vitamins, subsequent encounter|Underdosing of vitamins, subsequent encounter +C2879093|T037|PT|T45.2X6D|ICD10CM|Underdosing of vitamins, subsequent encounter|Underdosing of vitamins, subsequent encounter +C2879094|T037|AB|T45.2X6S|ICD10CM|Underdosing of vitamins, sequela|Underdosing of vitamins, sequela +C2879094|T037|PT|T45.2X6S|ICD10CM|Underdosing of vitamins, sequela|Underdosing of vitamins, sequela +C0869505|T037|PS|T45.3|ICD10|Enzymes, not elsewhere classified|Enzymes, not elsewhere classified +C0869505|T037|PX|T45.3|ICD10|Poisoning by enzymes, not elsewhere classified|Poisoning by enzymes, not elsewhere classified +C2879095|T037|AB|T45.3|ICD10CM|Poisoning by, adverse effect of and underdosing of enzymes|Poisoning by, adverse effect of and underdosing of enzymes +C2879095|T037|HT|T45.3|ICD10CM|Poisoning by, adverse effect of and underdosing of enzymes|Poisoning by, adverse effect of and underdosing of enzymes +C2879095|T037|HT|T45.3X|ICD10CM|Poisoning by, adverse effect of and underdosing of enzymes|Poisoning by, adverse effect of and underdosing of enzymes +C2879095|T037|AB|T45.3X|ICD10CM|Poisoning by, adverse effect of and underdosing of enzymes|Poisoning by, adverse effect of and underdosing of enzymes +C0344123|T037|ET|T45.3X1|ICD10CM|Poisoning by enzymes NOS|Poisoning by enzymes NOS +C2879096|T037|AB|T45.3X1|ICD10CM|Poisoning by enzymes, accidental (unintentional)|Poisoning by enzymes, accidental (unintentional) +C2879096|T037|HT|T45.3X1|ICD10CM|Poisoning by enzymes, accidental (unintentional)|Poisoning by enzymes, accidental (unintentional) +C2879097|T037|AB|T45.3X1A|ICD10CM|Poisoning by enzymes, accidental (unintentional), init|Poisoning by enzymes, accidental (unintentional), init +C2879097|T037|PT|T45.3X1A|ICD10CM|Poisoning by enzymes, accidental (unintentional), initial encounter|Poisoning by enzymes, accidental (unintentional), initial encounter +C2879098|T037|AB|T45.3X1D|ICD10CM|Poisoning by enzymes, accidental (unintentional), subs|Poisoning by enzymes, accidental (unintentional), subs +C2879098|T037|PT|T45.3X1D|ICD10CM|Poisoning by enzymes, accidental (unintentional), subsequent encounter|Poisoning by enzymes, accidental (unintentional), subsequent encounter +C2879099|T037|AB|T45.3X1S|ICD10CM|Poisoning by enzymes, accidental (unintentional), sequela|Poisoning by enzymes, accidental (unintentional), sequela +C2879099|T037|PT|T45.3X1S|ICD10CM|Poisoning by enzymes, accidental (unintentional), sequela|Poisoning by enzymes, accidental (unintentional), sequela +C2879100|T037|AB|T45.3X2|ICD10CM|Poisoning by enzymes, intentional self-harm|Poisoning by enzymes, intentional self-harm +C2879100|T037|HT|T45.3X2|ICD10CM|Poisoning by enzymes, intentional self-harm|Poisoning by enzymes, intentional self-harm +C2879101|T037|AB|T45.3X2A|ICD10CM|Poisoning by enzymes, intentional self-harm, init encntr|Poisoning by enzymes, intentional self-harm, init encntr +C2879101|T037|PT|T45.3X2A|ICD10CM|Poisoning by enzymes, intentional self-harm, initial encounter|Poisoning by enzymes, intentional self-harm, initial encounter +C2879102|T037|AB|T45.3X2D|ICD10CM|Poisoning by enzymes, intentional self-harm, subs encntr|Poisoning by enzymes, intentional self-harm, subs encntr +C2879102|T037|PT|T45.3X2D|ICD10CM|Poisoning by enzymes, intentional self-harm, subsequent encounter|Poisoning by enzymes, intentional self-harm, subsequent encounter +C2879103|T037|AB|T45.3X2S|ICD10CM|Poisoning by enzymes, intentional self-harm, sequela|Poisoning by enzymes, intentional self-harm, sequela +C2879103|T037|PT|T45.3X2S|ICD10CM|Poisoning by enzymes, intentional self-harm, sequela|Poisoning by enzymes, intentional self-harm, sequela +C2879104|T037|AB|T45.3X3|ICD10CM|Poisoning by enzymes, assault|Poisoning by enzymes, assault +C2879104|T037|HT|T45.3X3|ICD10CM|Poisoning by enzymes, assault|Poisoning by enzymes, assault +C2879105|T037|AB|T45.3X3A|ICD10CM|Poisoning by enzymes, assault, initial encounter|Poisoning by enzymes, assault, initial encounter +C2879105|T037|PT|T45.3X3A|ICD10CM|Poisoning by enzymes, assault, initial encounter|Poisoning by enzymes, assault, initial encounter +C2879106|T037|AB|T45.3X3D|ICD10CM|Poisoning by enzymes, assault, subsequent encounter|Poisoning by enzymes, assault, subsequent encounter +C2879106|T037|PT|T45.3X3D|ICD10CM|Poisoning by enzymes, assault, subsequent encounter|Poisoning by enzymes, assault, subsequent encounter +C2879107|T037|AB|T45.3X3S|ICD10CM|Poisoning by enzymes, assault, sequela|Poisoning by enzymes, assault, sequela +C2879107|T037|PT|T45.3X3S|ICD10CM|Poisoning by enzymes, assault, sequela|Poisoning by enzymes, assault, sequela +C2879108|T037|AB|T45.3X4|ICD10CM|Poisoning by enzymes, undetermined|Poisoning by enzymes, undetermined +C2879108|T037|HT|T45.3X4|ICD10CM|Poisoning by enzymes, undetermined|Poisoning by enzymes, undetermined +C2879109|T037|AB|T45.3X4A|ICD10CM|Poisoning by enzymes, undetermined, initial encounter|Poisoning by enzymes, undetermined, initial encounter +C2879109|T037|PT|T45.3X4A|ICD10CM|Poisoning by enzymes, undetermined, initial encounter|Poisoning by enzymes, undetermined, initial encounter +C2879110|T037|AB|T45.3X4D|ICD10CM|Poisoning by enzymes, undetermined, subsequent encounter|Poisoning by enzymes, undetermined, subsequent encounter +C2879110|T037|PT|T45.3X4D|ICD10CM|Poisoning by enzymes, undetermined, subsequent encounter|Poisoning by enzymes, undetermined, subsequent encounter +C2879111|T037|AB|T45.3X4S|ICD10CM|Poisoning by enzymes, undetermined, sequela|Poisoning by enzymes, undetermined, sequela +C2879111|T037|PT|T45.3X4S|ICD10CM|Poisoning by enzymes, undetermined, sequela|Poisoning by enzymes, undetermined, sequela +C0413654|T046|AB|T45.3X5|ICD10CM|Adverse effect of enzymes|Adverse effect of enzymes +C0413654|T046|HT|T45.3X5|ICD10CM|Adverse effect of enzymes|Adverse effect of enzymes +C2879113|T037|AB|T45.3X5A|ICD10CM|Adverse effect of enzymes, initial encounter|Adverse effect of enzymes, initial encounter +C2879113|T037|PT|T45.3X5A|ICD10CM|Adverse effect of enzymes, initial encounter|Adverse effect of enzymes, initial encounter +C2879114|T037|AB|T45.3X5D|ICD10CM|Adverse effect of enzymes, subsequent encounter|Adverse effect of enzymes, subsequent encounter +C2879114|T037|PT|T45.3X5D|ICD10CM|Adverse effect of enzymes, subsequent encounter|Adverse effect of enzymes, subsequent encounter +C2879115|T037|AB|T45.3X5S|ICD10CM|Adverse effect of enzymes, sequela|Adverse effect of enzymes, sequela +C2879115|T037|PT|T45.3X5S|ICD10CM|Adverse effect of enzymes, sequela|Adverse effect of enzymes, sequela +C2879116|T033|AB|T45.3X6|ICD10CM|Underdosing of enzymes|Underdosing of enzymes +C2879116|T033|HT|T45.3X6|ICD10CM|Underdosing of enzymes|Underdosing of enzymes +C2879117|T037|AB|T45.3X6A|ICD10CM|Underdosing of enzymes, initial encounter|Underdosing of enzymes, initial encounter +C2879117|T037|PT|T45.3X6A|ICD10CM|Underdosing of enzymes, initial encounter|Underdosing of enzymes, initial encounter +C2879118|T037|AB|T45.3X6D|ICD10CM|Underdosing of enzymes, subsequent encounter|Underdosing of enzymes, subsequent encounter +C2879118|T037|PT|T45.3X6D|ICD10CM|Underdosing of enzymes, subsequent encounter|Underdosing of enzymes, subsequent encounter +C2879119|T037|AB|T45.3X6S|ICD10CM|Underdosing of enzymes, sequela|Underdosing of enzymes, sequela +C2879119|T037|PT|T45.3X6S|ICD10CM|Underdosing of enzymes, sequela|Underdosing of enzymes, sequela +C2879120|T037|AB|T45.4|ICD10CM|Iron and its compounds|Iron and its compounds +C0412842|T037|PS|T45.4|ICD10|Iron and its compounds|Iron and its compounds +C0412842|T037|PX|T45.4|ICD10|Poisoning by iron and its compounds|Poisoning by iron and its compounds +C2879120|T037|HT|T45.4|ICD10CM|Poisoning by, adverse effect of and underdosing of iron and its compounds|Poisoning by, adverse effect of and underdosing of iron and its compounds +C2879120|T037|AB|T45.4X|ICD10CM|Iron and its compounds|Iron and its compounds +C2879120|T037|HT|T45.4X|ICD10CM|Poisoning by, adverse effect of and underdosing of iron and its compounds|Poisoning by, adverse effect of and underdosing of iron and its compounds +C0412842|T037|ET|T45.4X1|ICD10CM|Poisoning by iron and its compounds NOS|Poisoning by iron and its compounds NOS +C2879121|T037|AB|T45.4X1|ICD10CM|Poisoning by iron and its compounds, accidental|Poisoning by iron and its compounds, accidental +C2879121|T037|HT|T45.4X1|ICD10CM|Poisoning by iron and its compounds, accidental (unintentional)|Poisoning by iron and its compounds, accidental (unintentional) +C2879122|T037|PT|T45.4X1A|ICD10CM|Poisoning by iron and its compounds, accidental (unintentional), initial encounter|Poisoning by iron and its compounds, accidental (unintentional), initial encounter +C2879122|T037|AB|T45.4X1A|ICD10CM|Poisoning by iron and its compounds, accidental, init|Poisoning by iron and its compounds, accidental, init +C2879123|T037|PT|T45.4X1D|ICD10CM|Poisoning by iron and its compounds, accidental (unintentional), subsequent encounter|Poisoning by iron and its compounds, accidental (unintentional), subsequent encounter +C2879123|T037|AB|T45.4X1D|ICD10CM|Poisoning by iron and its compounds, accidental, subs|Poisoning by iron and its compounds, accidental, subs +C2879124|T037|PT|T45.4X1S|ICD10CM|Poisoning by iron and its compounds, accidental (unintentional), sequela|Poisoning by iron and its compounds, accidental (unintentional), sequela +C2879124|T037|AB|T45.4X1S|ICD10CM|Poisoning by iron and its compounds, accidental, sequela|Poisoning by iron and its compounds, accidental, sequela +C2879125|T037|AB|T45.4X2|ICD10CM|Poisoning by iron and its compounds, intentional self-harm|Poisoning by iron and its compounds, intentional self-harm +C2879125|T037|HT|T45.4X2|ICD10CM|Poisoning by iron and its compounds, intentional self-harm|Poisoning by iron and its compounds, intentional self-harm +C2879126|T037|PT|T45.4X2A|ICD10CM|Poisoning by iron and its compounds, intentional self-harm, initial encounter|Poisoning by iron and its compounds, intentional self-harm, initial encounter +C2879126|T037|AB|T45.4X2A|ICD10CM|Poisoning by iron and its compounds, self-harm, init|Poisoning by iron and its compounds, self-harm, init +C2879127|T037|PT|T45.4X2D|ICD10CM|Poisoning by iron and its compounds, intentional self-harm, subsequent encounter|Poisoning by iron and its compounds, intentional self-harm, subsequent encounter +C2879127|T037|AB|T45.4X2D|ICD10CM|Poisoning by iron and its compounds, self-harm, subs|Poisoning by iron and its compounds, self-harm, subs +C2879128|T037|PT|T45.4X2S|ICD10CM|Poisoning by iron and its compounds, intentional self-harm, sequela|Poisoning by iron and its compounds, intentional self-harm, sequela +C2879128|T037|AB|T45.4X2S|ICD10CM|Poisoning by iron and its compounds, self-harm, sequela|Poisoning by iron and its compounds, self-harm, sequela +C2879129|T037|AB|T45.4X3|ICD10CM|Poisoning by iron and its compounds, assault|Poisoning by iron and its compounds, assault +C2879129|T037|HT|T45.4X3|ICD10CM|Poisoning by iron and its compounds, assault|Poisoning by iron and its compounds, assault +C2879130|T037|AB|T45.4X3A|ICD10CM|Poisoning by iron and its compounds, assault, init encntr|Poisoning by iron and its compounds, assault, init encntr +C2879130|T037|PT|T45.4X3A|ICD10CM|Poisoning by iron and its compounds, assault, initial encounter|Poisoning by iron and its compounds, assault, initial encounter +C2879131|T037|AB|T45.4X3D|ICD10CM|Poisoning by iron and its compounds, assault, subs encntr|Poisoning by iron and its compounds, assault, subs encntr +C2879131|T037|PT|T45.4X3D|ICD10CM|Poisoning by iron and its compounds, assault, subsequent encounter|Poisoning by iron and its compounds, assault, subsequent encounter +C2879132|T037|AB|T45.4X3S|ICD10CM|Poisoning by iron and its compounds, assault, sequela|Poisoning by iron and its compounds, assault, sequela +C2879132|T037|PT|T45.4X3S|ICD10CM|Poisoning by iron and its compounds, assault, sequela|Poisoning by iron and its compounds, assault, sequela +C2879133|T037|AB|T45.4X4|ICD10CM|Poisoning by iron and its compounds, undetermined|Poisoning by iron and its compounds, undetermined +C2879133|T037|HT|T45.4X4|ICD10CM|Poisoning by iron and its compounds, undetermined|Poisoning by iron and its compounds, undetermined +C2879134|T037|AB|T45.4X4A|ICD10CM|Poisoning by iron and its compounds, undetermined, init|Poisoning by iron and its compounds, undetermined, init +C2879134|T037|PT|T45.4X4A|ICD10CM|Poisoning by iron and its compounds, undetermined, initial encounter|Poisoning by iron and its compounds, undetermined, initial encounter +C2879135|T037|AB|T45.4X4D|ICD10CM|Poisoning by iron and its compounds, undetermined, subs|Poisoning by iron and its compounds, undetermined, subs +C2879135|T037|PT|T45.4X4D|ICD10CM|Poisoning by iron and its compounds, undetermined, subsequent encounter|Poisoning by iron and its compounds, undetermined, subsequent encounter +C2879136|T037|AB|T45.4X4S|ICD10CM|Poisoning by iron and its compounds, undetermined, sequela|Poisoning by iron and its compounds, undetermined, sequela +C2879136|T037|PT|T45.4X4S|ICD10CM|Poisoning by iron and its compounds, undetermined, sequela|Poisoning by iron and its compounds, undetermined, sequela +C2879137|T037|AB|T45.4X5|ICD10CM|Adverse effect of iron and its compounds|Adverse effect of iron and its compounds +C2879137|T037|HT|T45.4X5|ICD10CM|Adverse effect of iron and its compounds|Adverse effect of iron and its compounds +C2879138|T037|AB|T45.4X5A|ICD10CM|Adverse effect of iron and its compounds, initial encounter|Adverse effect of iron and its compounds, initial encounter +C2879138|T037|PT|T45.4X5A|ICD10CM|Adverse effect of iron and its compounds, initial encounter|Adverse effect of iron and its compounds, initial encounter +C2879139|T037|AB|T45.4X5D|ICD10CM|Adverse effect of iron and its compounds, subs encntr|Adverse effect of iron and its compounds, subs encntr +C2879139|T037|PT|T45.4X5D|ICD10CM|Adverse effect of iron and its compounds, subsequent encounter|Adverse effect of iron and its compounds, subsequent encounter +C2879140|T037|AB|T45.4X5S|ICD10CM|Adverse effect of iron and its compounds, sequela|Adverse effect of iron and its compounds, sequela +C2879140|T037|PT|T45.4X5S|ICD10CM|Adverse effect of iron and its compounds, sequela|Adverse effect of iron and its compounds, sequela +C2879141|T037|AB|T45.4X6|ICD10CM|Underdosing of iron and its compounds|Underdosing of iron and its compounds +C2879141|T037|HT|T45.4X6|ICD10CM|Underdosing of iron and its compounds|Underdosing of iron and its compounds +C2879142|T037|AB|T45.4X6A|ICD10CM|Underdosing of iron and its compounds, initial encounter|Underdosing of iron and its compounds, initial encounter +C2879142|T037|PT|T45.4X6A|ICD10CM|Underdosing of iron and its compounds, initial encounter|Underdosing of iron and its compounds, initial encounter +C2879143|T037|AB|T45.4X6D|ICD10CM|Underdosing of iron and its compounds, subsequent encounter|Underdosing of iron and its compounds, subsequent encounter +C2879143|T037|PT|T45.4X6D|ICD10CM|Underdosing of iron and its compounds, subsequent encounter|Underdosing of iron and its compounds, subsequent encounter +C2879144|T037|AB|T45.4X6S|ICD10CM|Underdosing of iron and its compounds, sequela|Underdosing of iron and its compounds, sequela +C2879144|T037|PT|T45.4X6S|ICD10CM|Underdosing of iron and its compounds, sequela|Underdosing of iron and its compounds, sequela +C0161530|T037|PS|T45.5|ICD10|Anticoagulants|Anticoagulants +C2879145|T037|AB|T45.5|ICD10CM|Anticoagulants and antithrombotic drugs|Anticoagulants and antithrombotic drugs +C0161530|T037|PX|T45.5|ICD10|Poisoning by anticoagulants|Poisoning by anticoagulants +C2879145|T037|HT|T45.5|ICD10CM|Poisoning by, adverse effect of and underdosing of anticoagulants and antithrombotic drugs|Poisoning by, adverse effect of and underdosing of anticoagulants and antithrombotic drugs +C2879146|T037|AB|T45.51|ICD10CM|Anticoagulants|Anticoagulants +C2879146|T037|HT|T45.51|ICD10CM|Poisoning by, adverse effect of and underdosing of anticoagulants|Poisoning by, adverse effect of and underdosing of anticoagulants +C0161530|T037|ET|T45.511|ICD10CM|Poisoning by anticoagulants NOS|Poisoning by anticoagulants NOS +C2879147|T037|AB|T45.511|ICD10CM|Poisoning by anticoagulants, accidental (unintentional)|Poisoning by anticoagulants, accidental (unintentional) +C2879147|T037|HT|T45.511|ICD10CM|Poisoning by anticoagulants, accidental (unintentional)|Poisoning by anticoagulants, accidental (unintentional) +C2879148|T037|PT|T45.511A|ICD10CM|Poisoning by anticoagulants, accidental (unintentional), initial encounter|Poisoning by anticoagulants, accidental (unintentional), initial encounter +C2879148|T037|AB|T45.511A|ICD10CM|Poisoning by anticoagulants, accidental, init|Poisoning by anticoagulants, accidental, init +C2879149|T037|PT|T45.511D|ICD10CM|Poisoning by anticoagulants, accidental (unintentional), subsequent encounter|Poisoning by anticoagulants, accidental (unintentional), subsequent encounter +C2879149|T037|AB|T45.511D|ICD10CM|Poisoning by anticoagulants, accidental, subs|Poisoning by anticoagulants, accidental, subs +C2879150|T037|PT|T45.511S|ICD10CM|Poisoning by anticoagulants, accidental (unintentional), sequela|Poisoning by anticoagulants, accidental (unintentional), sequela +C2879150|T037|AB|T45.511S|ICD10CM|Poisoning by anticoagulants, accidental, sequela|Poisoning by anticoagulants, accidental, sequela +C2879151|T037|AB|T45.512|ICD10CM|Poisoning by anticoagulants, intentional self-harm|Poisoning by anticoagulants, intentional self-harm +C2879151|T037|HT|T45.512|ICD10CM|Poisoning by anticoagulants, intentional self-harm|Poisoning by anticoagulants, intentional self-harm +C2879152|T037|AB|T45.512A|ICD10CM|Poisoning by anticoagulants, intentional self-harm, init|Poisoning by anticoagulants, intentional self-harm, init +C2879152|T037|PT|T45.512A|ICD10CM|Poisoning by anticoagulants, intentional self-harm, initial encounter|Poisoning by anticoagulants, intentional self-harm, initial encounter +C2879153|T037|AB|T45.512D|ICD10CM|Poisoning by anticoagulants, intentional self-harm, subs|Poisoning by anticoagulants, intentional self-harm, subs +C2879153|T037|PT|T45.512D|ICD10CM|Poisoning by anticoagulants, intentional self-harm, subsequent encounter|Poisoning by anticoagulants, intentional self-harm, subsequent encounter +C2879154|T037|AB|T45.512S|ICD10CM|Poisoning by anticoagulants, intentional self-harm, sequela|Poisoning by anticoagulants, intentional self-harm, sequela +C2879154|T037|PT|T45.512S|ICD10CM|Poisoning by anticoagulants, intentional self-harm, sequela|Poisoning by anticoagulants, intentional self-harm, sequela +C2879155|T037|AB|T45.513|ICD10CM|Poisoning by anticoagulants, assault|Poisoning by anticoagulants, assault +C2879155|T037|HT|T45.513|ICD10CM|Poisoning by anticoagulants, assault|Poisoning by anticoagulants, assault +C2879156|T037|AB|T45.513A|ICD10CM|Poisoning by anticoagulants, assault, initial encounter|Poisoning by anticoagulants, assault, initial encounter +C2879156|T037|PT|T45.513A|ICD10CM|Poisoning by anticoagulants, assault, initial encounter|Poisoning by anticoagulants, assault, initial encounter +C2879157|T037|AB|T45.513D|ICD10CM|Poisoning by anticoagulants, assault, subsequent encounter|Poisoning by anticoagulants, assault, subsequent encounter +C2879157|T037|PT|T45.513D|ICD10CM|Poisoning by anticoagulants, assault, subsequent encounter|Poisoning by anticoagulants, assault, subsequent encounter +C2879158|T037|AB|T45.513S|ICD10CM|Poisoning by anticoagulants, assault, sequela|Poisoning by anticoagulants, assault, sequela +C2879158|T037|PT|T45.513S|ICD10CM|Poisoning by anticoagulants, assault, sequela|Poisoning by anticoagulants, assault, sequela +C2879159|T037|AB|T45.514|ICD10CM|Poisoning by anticoagulants, undetermined|Poisoning by anticoagulants, undetermined +C2879159|T037|HT|T45.514|ICD10CM|Poisoning by anticoagulants, undetermined|Poisoning by anticoagulants, undetermined +C2879160|T037|AB|T45.514A|ICD10CM|Poisoning by anticoagulants, undetermined, initial encounter|Poisoning by anticoagulants, undetermined, initial encounter +C2879160|T037|PT|T45.514A|ICD10CM|Poisoning by anticoagulants, undetermined, initial encounter|Poisoning by anticoagulants, undetermined, initial encounter +C2879161|T037|AB|T45.514D|ICD10CM|Poisoning by anticoagulants, undetermined, subs encntr|Poisoning by anticoagulants, undetermined, subs encntr +C2879161|T037|PT|T45.514D|ICD10CM|Poisoning by anticoagulants, undetermined, subsequent encounter|Poisoning by anticoagulants, undetermined, subsequent encounter +C2879162|T037|AB|T45.514S|ICD10CM|Poisoning by anticoagulants, undetermined, sequela|Poisoning by anticoagulants, undetermined, sequela +C2879162|T037|PT|T45.514S|ICD10CM|Poisoning by anticoagulants, undetermined, sequela|Poisoning by anticoagulants, undetermined, sequela +C0413671|T046|AB|T45.515|ICD10CM|Adverse effect of anticoagulants|Adverse effect of anticoagulants +C0413671|T046|HT|T45.515|ICD10CM|Adverse effect of anticoagulants|Adverse effect of anticoagulants +C2879164|T037|AB|T45.515A|ICD10CM|Adverse effect of anticoagulants, initial encounter|Adverse effect of anticoagulants, initial encounter +C2879164|T037|PT|T45.515A|ICD10CM|Adverse effect of anticoagulants, initial encounter|Adverse effect of anticoagulants, initial encounter +C2879165|T037|AB|T45.515D|ICD10CM|Adverse effect of anticoagulants, subsequent encounter|Adverse effect of anticoagulants, subsequent encounter +C2879165|T037|PT|T45.515D|ICD10CM|Adverse effect of anticoagulants, subsequent encounter|Adverse effect of anticoagulants, subsequent encounter +C2879166|T037|AB|T45.515S|ICD10CM|Adverse effect of anticoagulants, sequela|Adverse effect of anticoagulants, sequela +C2879166|T037|PT|T45.515S|ICD10CM|Adverse effect of anticoagulants, sequela|Adverse effect of anticoagulants, sequela +C2879167|T037|AB|T45.516|ICD10CM|Underdosing of anticoagulants|Underdosing of anticoagulants +C2879167|T037|HT|T45.516|ICD10CM|Underdosing of anticoagulants|Underdosing of anticoagulants +C2879168|T037|AB|T45.516A|ICD10CM|Underdosing of anticoagulants, initial encounter|Underdosing of anticoagulants, initial encounter +C2879168|T037|PT|T45.516A|ICD10CM|Underdosing of anticoagulants, initial encounter|Underdosing of anticoagulants, initial encounter +C2879169|T037|AB|T45.516D|ICD10CM|Underdosing of anticoagulants, subsequent encounter|Underdosing of anticoagulants, subsequent encounter +C2879169|T037|PT|T45.516D|ICD10CM|Underdosing of anticoagulants, subsequent encounter|Underdosing of anticoagulants, subsequent encounter +C2879170|T037|AB|T45.516S|ICD10CM|Underdosing of anticoagulants, sequela|Underdosing of anticoagulants, sequela +C2879170|T037|PT|T45.516S|ICD10CM|Underdosing of anticoagulants, sequela|Underdosing of anticoagulants, sequela +C2879172|T037|AB|T45.52|ICD10CM|Antithrombotic drugs|Antithrombotic drugs +C2879171|T037|ET|T45.52|ICD10CM|Poisoning by, adverse effect of and underdosing of antiplatelet drugs|Poisoning by, adverse effect of and underdosing of antiplatelet drugs +C2879172|T037|HT|T45.52|ICD10CM|Poisoning by, adverse effect of and underdosing of antithrombotic drugs|Poisoning by, adverse effect of and underdosing of antithrombotic drugs +C2879173|T037|ET|T45.521|ICD10CM|Poisoning by antithrombotic drug NOS|Poisoning by antithrombotic drug NOS +C3507189|T037|AB|T45.521|ICD10CM|Poisoning by antithrombotic drugs, accidental|Poisoning by antithrombotic drugs, accidental +C3507189|T037|HT|T45.521|ICD10CM|Poisoning by antithrombotic drugs, accidental (unintentional)|Poisoning by antithrombotic drugs, accidental (unintentional) +C2879175|T037|PT|T45.521A|ICD10CM|Poisoning by antithrombotic drugs, accidental (unintentional), initial encounter|Poisoning by antithrombotic drugs, accidental (unintentional), initial encounter +C2879175|T037|AB|T45.521A|ICD10CM|Poisoning by antithrombotic drugs, accidental, init|Poisoning by antithrombotic drugs, accidental, init +C2879176|T037|PT|T45.521D|ICD10CM|Poisoning by antithrombotic drugs, accidental (unintentional), subsequent encounter|Poisoning by antithrombotic drugs, accidental (unintentional), subsequent encounter +C2879176|T037|AB|T45.521D|ICD10CM|Poisoning by antithrombotic drugs, accidental, subs|Poisoning by antithrombotic drugs, accidental, subs +C2879177|T037|PT|T45.521S|ICD10CM|Poisoning by antithrombotic drugs, accidental (unintentional), sequela|Poisoning by antithrombotic drugs, accidental (unintentional), sequela +C2879177|T037|AB|T45.521S|ICD10CM|Poisoning by antithrombotic drugs, accidental, sequela|Poisoning by antithrombotic drugs, accidental, sequela +C2879178|T037|AB|T45.522|ICD10CM|Poisoning by antithrombotic drugs, intentional self-harm|Poisoning by antithrombotic drugs, intentional self-harm +C2879178|T037|HT|T45.522|ICD10CM|Poisoning by antithrombotic drugs, intentional self-harm|Poisoning by antithrombotic drugs, intentional self-harm +C2879179|T037|PT|T45.522A|ICD10CM|Poisoning by antithrombotic drugs, intentional self-harm, initial encounter|Poisoning by antithrombotic drugs, intentional self-harm, initial encounter +C2879179|T037|AB|T45.522A|ICD10CM|Poisoning by antithrombotic drugs, self-harm, init|Poisoning by antithrombotic drugs, self-harm, init +C2879180|T037|PT|T45.522D|ICD10CM|Poisoning by antithrombotic drugs, intentional self-harm, subsequent encounter|Poisoning by antithrombotic drugs, intentional self-harm, subsequent encounter +C2879180|T037|AB|T45.522D|ICD10CM|Poisoning by antithrombotic drugs, self-harm, subs|Poisoning by antithrombotic drugs, self-harm, subs +C2879181|T037|PT|T45.522S|ICD10CM|Poisoning by antithrombotic drugs, intentional self-harm, sequela|Poisoning by antithrombotic drugs, intentional self-harm, sequela +C2879181|T037|AB|T45.522S|ICD10CM|Poisoning by antithrombotic drugs, self-harm, sequela|Poisoning by antithrombotic drugs, self-harm, sequela +C2879182|T037|AB|T45.523|ICD10CM|Poisoning by antithrombotic drugs, assault|Poisoning by antithrombotic drugs, assault +C2879182|T037|HT|T45.523|ICD10CM|Poisoning by antithrombotic drugs, assault|Poisoning by antithrombotic drugs, assault +C2879183|T037|AB|T45.523A|ICD10CM|Poisoning by antithrombotic drugs, assault, init encntr|Poisoning by antithrombotic drugs, assault, init encntr +C2879183|T037|PT|T45.523A|ICD10CM|Poisoning by antithrombotic drugs, assault, initial encounter|Poisoning by antithrombotic drugs, assault, initial encounter +C2879184|T037|AB|T45.523D|ICD10CM|Poisoning by antithrombotic drugs, assault, subs encntr|Poisoning by antithrombotic drugs, assault, subs encntr +C2879184|T037|PT|T45.523D|ICD10CM|Poisoning by antithrombotic drugs, assault, subsequent encounter|Poisoning by antithrombotic drugs, assault, subsequent encounter +C2879185|T037|AB|T45.523S|ICD10CM|Poisoning by antithrombotic drugs, assault, sequela|Poisoning by antithrombotic drugs, assault, sequela +C2879185|T037|PT|T45.523S|ICD10CM|Poisoning by antithrombotic drugs, assault, sequela|Poisoning by antithrombotic drugs, assault, sequela +C2879186|T037|AB|T45.524|ICD10CM|Poisoning by antithrombotic drugs, undetermined|Poisoning by antithrombotic drugs, undetermined +C2879186|T037|HT|T45.524|ICD10CM|Poisoning by antithrombotic drugs, undetermined|Poisoning by antithrombotic drugs, undetermined +C2879187|T037|AB|T45.524A|ICD10CM|Poisoning by antithrombotic drugs, undetermined, init encntr|Poisoning by antithrombotic drugs, undetermined, init encntr +C2879187|T037|PT|T45.524A|ICD10CM|Poisoning by antithrombotic drugs, undetermined, initial encounter|Poisoning by antithrombotic drugs, undetermined, initial encounter +C2879188|T037|AB|T45.524D|ICD10CM|Poisoning by antithrombotic drugs, undetermined, subs encntr|Poisoning by antithrombotic drugs, undetermined, subs encntr +C2879188|T037|PT|T45.524D|ICD10CM|Poisoning by antithrombotic drugs, undetermined, subsequent encounter|Poisoning by antithrombotic drugs, undetermined, subsequent encounter +C2879189|T037|AB|T45.524S|ICD10CM|Poisoning by antithrombotic drugs, undetermined, sequela|Poisoning by antithrombotic drugs, undetermined, sequela +C2879189|T037|PT|T45.524S|ICD10CM|Poisoning by antithrombotic drugs, undetermined, sequela|Poisoning by antithrombotic drugs, undetermined, sequela +C2879190|T037|AB|T45.525|ICD10CM|Adverse effect of antithrombotic drugs|Adverse effect of antithrombotic drugs +C2879190|T037|HT|T45.525|ICD10CM|Adverse effect of antithrombotic drugs|Adverse effect of antithrombotic drugs +C2879191|T037|AB|T45.525A|ICD10CM|Adverse effect of antithrombotic drugs, initial encounter|Adverse effect of antithrombotic drugs, initial encounter +C2879191|T037|PT|T45.525A|ICD10CM|Adverse effect of antithrombotic drugs, initial encounter|Adverse effect of antithrombotic drugs, initial encounter +C2879192|T037|AB|T45.525D|ICD10CM|Adverse effect of antithrombotic drugs, subsequent encounter|Adverse effect of antithrombotic drugs, subsequent encounter +C2879192|T037|PT|T45.525D|ICD10CM|Adverse effect of antithrombotic drugs, subsequent encounter|Adverse effect of antithrombotic drugs, subsequent encounter +C2879193|T037|AB|T45.525S|ICD10CM|Adverse effect of antithrombotic drugs, sequela|Adverse effect of antithrombotic drugs, sequela +C2879193|T037|PT|T45.525S|ICD10CM|Adverse effect of antithrombotic drugs, sequela|Adverse effect of antithrombotic drugs, sequela +C2879194|T037|AB|T45.526|ICD10CM|Underdosing of antithrombotic drugs|Underdosing of antithrombotic drugs +C2879194|T037|HT|T45.526|ICD10CM|Underdosing of antithrombotic drugs|Underdosing of antithrombotic drugs +C2879195|T037|AB|T45.526A|ICD10CM|Underdosing of antithrombotic drugs, initial encounter|Underdosing of antithrombotic drugs, initial encounter +C2879195|T037|PT|T45.526A|ICD10CM|Underdosing of antithrombotic drugs, initial encounter|Underdosing of antithrombotic drugs, initial encounter +C2879196|T037|AB|T45.526D|ICD10CM|Underdosing of antithrombotic drugs, subsequent encounter|Underdosing of antithrombotic drugs, subsequent encounter +C2879196|T037|PT|T45.526D|ICD10CM|Underdosing of antithrombotic drugs, subsequent encounter|Underdosing of antithrombotic drugs, subsequent encounter +C2879197|T037|AB|T45.526S|ICD10CM|Underdosing of antithrombotic drugs, sequela|Underdosing of antithrombotic drugs, sequela +C2879197|T037|PT|T45.526S|ICD10CM|Underdosing of antithrombotic drugs, sequela|Underdosing of antithrombotic drugs, sequela +C2879198|T037|AB|T45.6|ICD10CM|Fibrinolysis-affecting drugs|Fibrinolysis-affecting drugs +C0412845|T037|PS|T45.6|ICD10|Fibrinolysis-affecting drugs|Fibrinolysis-affecting drugs +C0412845|T037|PX|T45.6|ICD10|Poisoning by fibrinolysis-affecting drugs|Poisoning by fibrinolysis-affecting drugs +C2879198|T037|HT|T45.6|ICD10CM|Poisoning by, adverse effect of and underdosing of fibrinolysis-affecting drugs|Poisoning by, adverse effect of and underdosing of fibrinolysis-affecting drugs +C2879199|T037|HT|T45.60|ICD10CM|Poisoning by, adverse effect of and underdosing of unspecified fibrinolysis-affecting drugs|Poisoning by, adverse effect of and underdosing of unspecified fibrinolysis-affecting drugs +C2879199|T037|AB|T45.60|ICD10CM|Unsp fibrinolysis-affecting drugs|Unsp fibrinolysis-affecting drugs +C0412845|T037|ET|T45.601|ICD10CM|Poisoning by fibrinolysis-affecting drug NOS|Poisoning by fibrinolysis-affecting drug NOS +C2879200|T037|AB|T45.601|ICD10CM|Poisoning by unsp fibrin-affct drugs, accidental|Poisoning by unsp fibrin-affct drugs, accidental +C2879200|T037|HT|T45.601|ICD10CM|Poisoning by unspecified fibrinolysis-affecting drugs, accidental (unintentional)|Poisoning by unspecified fibrinolysis-affecting drugs, accidental (unintentional) +C2879201|T037|AB|T45.601A|ICD10CM|Poisoning by unsp fibrin-affct drugs, accidental, init|Poisoning by unsp fibrin-affct drugs, accidental, init +C2879201|T037|PT|T45.601A|ICD10CM|Poisoning by unspecified fibrinolysis-affecting drugs, accidental (unintentional), initial encounter|Poisoning by unspecified fibrinolysis-affecting drugs, accidental (unintentional), initial encounter +C2879202|T037|AB|T45.601D|ICD10CM|Poisoning by unsp fibrin-affct drugs, accidental, subs|Poisoning by unsp fibrin-affct drugs, accidental, subs +C2879203|T037|AB|T45.601S|ICD10CM|Poisoning by unsp fibrin-affct drugs, accidental, sequela|Poisoning by unsp fibrin-affct drugs, accidental, sequela +C2879203|T037|PT|T45.601S|ICD10CM|Poisoning by unspecified fibrinolysis-affecting drugs, accidental (unintentional), sequela|Poisoning by unspecified fibrinolysis-affecting drugs, accidental (unintentional), sequela +C2879204|T037|AB|T45.602|ICD10CM|Poisoning by unsp fibrin-affct drugs, intentional self-harm|Poisoning by unsp fibrin-affct drugs, intentional self-harm +C2879204|T037|HT|T45.602|ICD10CM|Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm|Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm +C2879205|T037|AB|T45.602A|ICD10CM|Poisoning by unsp fibrin-affct drugs, self-harm, init|Poisoning by unsp fibrin-affct drugs, self-harm, init +C2879205|T037|PT|T45.602A|ICD10CM|Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm, initial encounter|Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm, initial encounter +C2879206|T037|AB|T45.602D|ICD10CM|Poisoning by unsp fibrin-affct drugs, self-harm, subs|Poisoning by unsp fibrin-affct drugs, self-harm, subs +C2879206|T037|PT|T45.602D|ICD10CM|Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm, subsequent encounter|Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm, subsequent encounter +C2879207|T037|AB|T45.602S|ICD10CM|Poisoning by unsp fibrin-affct drugs, self-harm, sequela|Poisoning by unsp fibrin-affct drugs, self-harm, sequela +C2879207|T037|PT|T45.602S|ICD10CM|Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm, sequela|Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm, sequela +C2879208|T037|AB|T45.603|ICD10CM|Poisoning by unsp fibrinolysis-affecting drugs, assault|Poisoning by unsp fibrinolysis-affecting drugs, assault +C2879208|T037|HT|T45.603|ICD10CM|Poisoning by unspecified fibrinolysis-affecting drugs, assault|Poisoning by unspecified fibrinolysis-affecting drugs, assault +C2879209|T037|AB|T45.603A|ICD10CM|Poisoning by unsp fibrin-affct drugs, assault, init|Poisoning by unsp fibrin-affct drugs, assault, init +C2879209|T037|PT|T45.603A|ICD10CM|Poisoning by unspecified fibrinolysis-affecting drugs, assault, initial encounter|Poisoning by unspecified fibrinolysis-affecting drugs, assault, initial encounter +C2879210|T037|AB|T45.603D|ICD10CM|Poisoning by unsp fibrin-affct drugs, assault, subs|Poisoning by unsp fibrin-affct drugs, assault, subs +C2879210|T037|PT|T45.603D|ICD10CM|Poisoning by unspecified fibrinolysis-affecting drugs, assault, subsequent encounter|Poisoning by unspecified fibrinolysis-affecting drugs, assault, subsequent encounter +C2879211|T037|AB|T45.603S|ICD10CM|Poisoning by unsp fibrin-affct drugs, assault, sequela|Poisoning by unsp fibrin-affct drugs, assault, sequela +C2879211|T037|PT|T45.603S|ICD10CM|Poisoning by unspecified fibrinolysis-affecting drugs, assault, sequela|Poisoning by unspecified fibrinolysis-affecting drugs, assault, sequela +C2879212|T037|AB|T45.604|ICD10CM|Poisoning by unsp fibrinolysis-affecting drugs, undetermined|Poisoning by unsp fibrinolysis-affecting drugs, undetermined +C2879212|T037|HT|T45.604|ICD10CM|Poisoning by unspecified fibrinolysis-affecting drugs, undetermined|Poisoning by unspecified fibrinolysis-affecting drugs, undetermined +C2879213|T037|AB|T45.604A|ICD10CM|Poisoning by unsp fibrin-affct drugs, undetermined, init|Poisoning by unsp fibrin-affct drugs, undetermined, init +C2879213|T037|PT|T45.604A|ICD10CM|Poisoning by unspecified fibrinolysis-affecting drugs, undetermined, initial encounter|Poisoning by unspecified fibrinolysis-affecting drugs, undetermined, initial encounter +C2879214|T037|AB|T45.604D|ICD10CM|Poisoning by unsp fibrin-affct drugs, undetermined, subs|Poisoning by unsp fibrin-affct drugs, undetermined, subs +C2879214|T037|PT|T45.604D|ICD10CM|Poisoning by unspecified fibrinolysis-affecting drugs, undetermined, subsequent encounter|Poisoning by unspecified fibrinolysis-affecting drugs, undetermined, subsequent encounter +C2879215|T037|AB|T45.604S|ICD10CM|Poisoning by unsp fibrin-affct drugs, undetermined, sequela|Poisoning by unsp fibrin-affct drugs, undetermined, sequela +C2879215|T037|PT|T45.604S|ICD10CM|Poisoning by unspecified fibrinolysis-affecting drugs, undetermined, sequela|Poisoning by unspecified fibrinolysis-affecting drugs, undetermined, sequela +C2879216|T037|AB|T45.605|ICD10CM|Adverse effect of unspecified fibrinolysis-affecting drugs|Adverse effect of unspecified fibrinolysis-affecting drugs +C2879216|T037|HT|T45.605|ICD10CM|Adverse effect of unspecified fibrinolysis-affecting drugs|Adverse effect of unspecified fibrinolysis-affecting drugs +C2879217|T037|AB|T45.605A|ICD10CM|Adverse effect of unsp fibrinolysis-affecting drugs, init|Adverse effect of unsp fibrinolysis-affecting drugs, init +C2879217|T037|PT|T45.605A|ICD10CM|Adverse effect of unspecified fibrinolysis-affecting drugs, initial encounter|Adverse effect of unspecified fibrinolysis-affecting drugs, initial encounter +C2879218|T037|AB|T45.605D|ICD10CM|Adverse effect of unsp fibrinolysis-affecting drugs, subs|Adverse effect of unsp fibrinolysis-affecting drugs, subs +C2879218|T037|PT|T45.605D|ICD10CM|Adverse effect of unspecified fibrinolysis-affecting drugs, subsequent encounter|Adverse effect of unspecified fibrinolysis-affecting drugs, subsequent encounter +C2879219|T037|AB|T45.605S|ICD10CM|Adverse effect of unsp fibrinolysis-affecting drugs, sequela|Adverse effect of unsp fibrinolysis-affecting drugs, sequela +C2879219|T037|PT|T45.605S|ICD10CM|Adverse effect of unspecified fibrinolysis-affecting drugs, sequela|Adverse effect of unspecified fibrinolysis-affecting drugs, sequela +C2879220|T037|AB|T45.606|ICD10CM|Underdosing of unspecified fibrinolysis-affecting drugs|Underdosing of unspecified fibrinolysis-affecting drugs +C2879220|T037|HT|T45.606|ICD10CM|Underdosing of unspecified fibrinolysis-affecting drugs|Underdosing of unspecified fibrinolysis-affecting drugs +C2879221|T037|AB|T45.606A|ICD10CM|Underdosing of unsp fibrinolysis-affecting drugs, init|Underdosing of unsp fibrinolysis-affecting drugs, init +C2879221|T037|PT|T45.606A|ICD10CM|Underdosing of unspecified fibrinolysis-affecting drugs, initial encounter|Underdosing of unspecified fibrinolysis-affecting drugs, initial encounter +C2879222|T037|AB|T45.606D|ICD10CM|Underdosing of unsp fibrinolysis-affecting drugs, subs|Underdosing of unsp fibrinolysis-affecting drugs, subs +C2879222|T037|PT|T45.606D|ICD10CM|Underdosing of unspecified fibrinolysis-affecting drugs, subsequent encounter|Underdosing of unspecified fibrinolysis-affecting drugs, subsequent encounter +C2879223|T037|AB|T45.606S|ICD10CM|Underdosing of unsp fibrinolysis-affecting drugs, sequela|Underdosing of unsp fibrinolysis-affecting drugs, sequela +C2879223|T037|PT|T45.606S|ICD10CM|Underdosing of unspecified fibrinolysis-affecting drugs, sequela|Underdosing of unspecified fibrinolysis-affecting drugs, sequela +C2879224|T037|HT|T45.61|ICD10CM|Poisoning by, adverse effect of and underdosing of thrombolytic drugs|Poisoning by, adverse effect of and underdosing of thrombolytic drugs +C2879224|T037|AB|T45.61|ICD10CM|Thrombolytic drugs|Thrombolytic drugs +C2879225|T037|ET|T45.611|ICD10CM|Poisoning by thrombolytic drug NOS|Poisoning by thrombolytic drug NOS +C2879226|T037|AB|T45.611|ICD10CM|Poisoning by thrombolytic drug, accidental (unintentional)|Poisoning by thrombolytic drug, accidental (unintentional) +C2879226|T037|HT|T45.611|ICD10CM|Poisoning by thrombolytic drug, accidental (unintentional)|Poisoning by thrombolytic drug, accidental (unintentional) +C2879227|T037|PT|T45.611A|ICD10CM|Poisoning by thrombolytic drug, accidental (unintentional), initial encounter|Poisoning by thrombolytic drug, accidental (unintentional), initial encounter +C2879227|T037|AB|T45.611A|ICD10CM|Poisoning by thrombolytic drug, accidental, init|Poisoning by thrombolytic drug, accidental, init +C2879228|T037|PT|T45.611D|ICD10CM|Poisoning by thrombolytic drug, accidental (unintentional), subsequent encounter|Poisoning by thrombolytic drug, accidental (unintentional), subsequent encounter +C2879228|T037|AB|T45.611D|ICD10CM|Poisoning by thrombolytic drug, accidental, subs|Poisoning by thrombolytic drug, accidental, subs +C2879229|T037|PT|T45.611S|ICD10CM|Poisoning by thrombolytic drug, accidental (unintentional), sequela|Poisoning by thrombolytic drug, accidental (unintentional), sequela +C2879229|T037|AB|T45.611S|ICD10CM|Poisoning by thrombolytic drug, accidental, sequela|Poisoning by thrombolytic drug, accidental, sequela +C2879230|T037|AB|T45.612|ICD10CM|Poisoning by thrombolytic drug, intentional self-harm|Poisoning by thrombolytic drug, intentional self-harm +C2879230|T037|HT|T45.612|ICD10CM|Poisoning by thrombolytic drug, intentional self-harm|Poisoning by thrombolytic drug, intentional self-harm +C2879231|T037|AB|T45.612A|ICD10CM|Poisoning by thrombolytic drug, intentional self-harm, init|Poisoning by thrombolytic drug, intentional self-harm, init +C2879231|T037|PT|T45.612A|ICD10CM|Poisoning by thrombolytic drug, intentional self-harm, initial encounter|Poisoning by thrombolytic drug, intentional self-harm, initial encounter +C2879232|T037|AB|T45.612D|ICD10CM|Poisoning by thrombolytic drug, intentional self-harm, subs|Poisoning by thrombolytic drug, intentional self-harm, subs +C2879232|T037|PT|T45.612D|ICD10CM|Poisoning by thrombolytic drug, intentional self-harm, subsequent encounter|Poisoning by thrombolytic drug, intentional self-harm, subsequent encounter +C2879233|T037|PT|T45.612S|ICD10CM|Poisoning by thrombolytic drug, intentional self-harm, sequela|Poisoning by thrombolytic drug, intentional self-harm, sequela +C2879233|T037|AB|T45.612S|ICD10CM|Poisoning by thrombolytic drug, self-harm, sequela|Poisoning by thrombolytic drug, self-harm, sequela +C2879234|T037|AB|T45.613|ICD10CM|Poisoning by thrombolytic drug, assault|Poisoning by thrombolytic drug, assault +C2879234|T037|HT|T45.613|ICD10CM|Poisoning by thrombolytic drug, assault|Poisoning by thrombolytic drug, assault +C2879235|T037|AB|T45.613A|ICD10CM|Poisoning by thrombolytic drug, assault, initial encounter|Poisoning by thrombolytic drug, assault, initial encounter +C2879235|T037|PT|T45.613A|ICD10CM|Poisoning by thrombolytic drug, assault, initial encounter|Poisoning by thrombolytic drug, assault, initial encounter +C2879236|T037|AB|T45.613D|ICD10CM|Poisoning by thrombolytic drug, assault, subs encntr|Poisoning by thrombolytic drug, assault, subs encntr +C2879236|T037|PT|T45.613D|ICD10CM|Poisoning by thrombolytic drug, assault, subsequent encounter|Poisoning by thrombolytic drug, assault, subsequent encounter +C2879237|T037|AB|T45.613S|ICD10CM|Poisoning by thrombolytic drug, assault, sequela|Poisoning by thrombolytic drug, assault, sequela +C2879237|T037|PT|T45.613S|ICD10CM|Poisoning by thrombolytic drug, assault, sequela|Poisoning by thrombolytic drug, assault, sequela +C2879238|T037|AB|T45.614|ICD10CM|Poisoning by thrombolytic drug, undetermined|Poisoning by thrombolytic drug, undetermined +C2879238|T037|HT|T45.614|ICD10CM|Poisoning by thrombolytic drug, undetermined|Poisoning by thrombolytic drug, undetermined +C2879239|T037|AB|T45.614A|ICD10CM|Poisoning by thrombolytic drug, undetermined, init encntr|Poisoning by thrombolytic drug, undetermined, init encntr +C2879239|T037|PT|T45.614A|ICD10CM|Poisoning by thrombolytic drug, undetermined, initial encounter|Poisoning by thrombolytic drug, undetermined, initial encounter +C2879240|T037|AB|T45.614D|ICD10CM|Poisoning by thrombolytic drug, undetermined, subs encntr|Poisoning by thrombolytic drug, undetermined, subs encntr +C2879240|T037|PT|T45.614D|ICD10CM|Poisoning by thrombolytic drug, undetermined, subsequent encounter|Poisoning by thrombolytic drug, undetermined, subsequent encounter +C2879241|T037|AB|T45.614S|ICD10CM|Poisoning by thrombolytic drug, undetermined, sequela|Poisoning by thrombolytic drug, undetermined, sequela +C2879241|T037|PT|T45.614S|ICD10CM|Poisoning by thrombolytic drug, undetermined, sequela|Poisoning by thrombolytic drug, undetermined, sequela +C2879242|T037|AB|T45.615|ICD10CM|Adverse effect of thrombolytic drugs|Adverse effect of thrombolytic drugs +C2879242|T037|HT|T45.615|ICD10CM|Adverse effect of thrombolytic drugs|Adverse effect of thrombolytic drugs +C2879243|T037|AB|T45.615A|ICD10CM|Adverse effect of thrombolytic drugs, initial encounter|Adverse effect of thrombolytic drugs, initial encounter +C2879243|T037|PT|T45.615A|ICD10CM|Adverse effect of thrombolytic drugs, initial encounter|Adverse effect of thrombolytic drugs, initial encounter +C2879244|T037|AB|T45.615D|ICD10CM|Adverse effect of thrombolytic drugs, subsequent encounter|Adverse effect of thrombolytic drugs, subsequent encounter +C2879244|T037|PT|T45.615D|ICD10CM|Adverse effect of thrombolytic drugs, subsequent encounter|Adverse effect of thrombolytic drugs, subsequent encounter +C2879245|T037|AB|T45.615S|ICD10CM|Adverse effect of thrombolytic drugs, sequela|Adverse effect of thrombolytic drugs, sequela +C2879245|T037|PT|T45.615S|ICD10CM|Adverse effect of thrombolytic drugs, sequela|Adverse effect of thrombolytic drugs, sequela +C2879246|T037|AB|T45.616|ICD10CM|Underdosing of thrombolytic drugs|Underdosing of thrombolytic drugs +C2879246|T037|HT|T45.616|ICD10CM|Underdosing of thrombolytic drugs|Underdosing of thrombolytic drugs +C2879247|T037|AB|T45.616A|ICD10CM|Underdosing of thrombolytic drugs, initial encounter|Underdosing of thrombolytic drugs, initial encounter +C2879247|T037|PT|T45.616A|ICD10CM|Underdosing of thrombolytic drugs, initial encounter|Underdosing of thrombolytic drugs, initial encounter +C2879248|T037|AB|T45.616D|ICD10CM|Underdosing of thrombolytic drugs, subsequent encounter|Underdosing of thrombolytic drugs, subsequent encounter +C2879248|T037|PT|T45.616D|ICD10CM|Underdosing of thrombolytic drugs, subsequent encounter|Underdosing of thrombolytic drugs, subsequent encounter +C2879249|T037|AB|T45.616S|ICD10CM|Underdosing of thrombolytic drugs, sequela|Underdosing of thrombolytic drugs, sequela +C2879249|T037|PT|T45.616S|ICD10CM|Underdosing of thrombolytic drugs, sequela|Underdosing of thrombolytic drugs, sequela +C2879250|T037|AB|T45.62|ICD10CM|Hemostatic drugs|Hemostatic drugs +C2879250|T037|HT|T45.62|ICD10CM|Poisoning by, adverse effect of and underdosing of hemostatic drugs|Poisoning by, adverse effect of and underdosing of hemostatic drugs +C2879251|T037|ET|T45.621|ICD10CM|Poisoning by hemostatic drug NOS|Poisoning by hemostatic drug NOS +C2879252|T037|AB|T45.621|ICD10CM|Poisoning by hemostatic drug, accidental (unintentional)|Poisoning by hemostatic drug, accidental (unintentional) +C2879252|T037|HT|T45.621|ICD10CM|Poisoning by hemostatic drug, accidental (unintentional)|Poisoning by hemostatic drug, accidental (unintentional) +C2879253|T037|PT|T45.621A|ICD10CM|Poisoning by hemostatic drug, accidental (unintentional), initial encounter|Poisoning by hemostatic drug, accidental (unintentional), initial encounter +C2879253|T037|AB|T45.621A|ICD10CM|Poisoning by hemostatic drug, accidental, init|Poisoning by hemostatic drug, accidental, init +C2879254|T037|PT|T45.621D|ICD10CM|Poisoning by hemostatic drug, accidental (unintentional), subsequent encounter|Poisoning by hemostatic drug, accidental (unintentional), subsequent encounter +C2879254|T037|AB|T45.621D|ICD10CM|Poisoning by hemostatic drug, accidental, subs|Poisoning by hemostatic drug, accidental, subs +C2879255|T037|PT|T45.621S|ICD10CM|Poisoning by hemostatic drug, accidental (unintentional), sequela|Poisoning by hemostatic drug, accidental (unintentional), sequela +C2879255|T037|AB|T45.621S|ICD10CM|Poisoning by hemostatic drug, accidental, sequela|Poisoning by hemostatic drug, accidental, sequela +C2879256|T037|AB|T45.622|ICD10CM|Poisoning by hemostatic drug, intentional self-harm|Poisoning by hemostatic drug, intentional self-harm +C2879256|T037|HT|T45.622|ICD10CM|Poisoning by hemostatic drug, intentional self-harm|Poisoning by hemostatic drug, intentional self-harm +C2879257|T037|AB|T45.622A|ICD10CM|Poisoning by hemostatic drug, intentional self-harm, init|Poisoning by hemostatic drug, intentional self-harm, init +C2879257|T037|PT|T45.622A|ICD10CM|Poisoning by hemostatic drug, intentional self-harm, initial encounter|Poisoning by hemostatic drug, intentional self-harm, initial encounter +C2879258|T037|AB|T45.622D|ICD10CM|Poisoning by hemostatic drug, intentional self-harm, subs|Poisoning by hemostatic drug, intentional self-harm, subs +C2879258|T037|PT|T45.622D|ICD10CM|Poisoning by hemostatic drug, intentional self-harm, subsequent encounter|Poisoning by hemostatic drug, intentional self-harm, subsequent encounter +C2879259|T037|AB|T45.622S|ICD10CM|Poisoning by hemostatic drug, intentional self-harm, sequela|Poisoning by hemostatic drug, intentional self-harm, sequela +C2879259|T037|PT|T45.622S|ICD10CM|Poisoning by hemostatic drug, intentional self-harm, sequela|Poisoning by hemostatic drug, intentional self-harm, sequela +C2879260|T037|AB|T45.623|ICD10CM|Poisoning by hemostatic drug, assault|Poisoning by hemostatic drug, assault +C2879260|T037|HT|T45.623|ICD10CM|Poisoning by hemostatic drug, assault|Poisoning by hemostatic drug, assault +C2879261|T037|AB|T45.623A|ICD10CM|Poisoning by hemostatic drug, assault, initial encounter|Poisoning by hemostatic drug, assault, initial encounter +C2879261|T037|PT|T45.623A|ICD10CM|Poisoning by hemostatic drug, assault, initial encounter|Poisoning by hemostatic drug, assault, initial encounter +C2879262|T037|AB|T45.623D|ICD10CM|Poisoning by hemostatic drug, assault, subsequent encounter|Poisoning by hemostatic drug, assault, subsequent encounter +C2879262|T037|PT|T45.623D|ICD10CM|Poisoning by hemostatic drug, assault, subsequent encounter|Poisoning by hemostatic drug, assault, subsequent encounter +C2879263|T037|AB|T45.623S|ICD10CM|Poisoning by hemostatic drug, assault, sequela|Poisoning by hemostatic drug, assault, sequela +C2879263|T037|PT|T45.623S|ICD10CM|Poisoning by hemostatic drug, assault, sequela|Poisoning by hemostatic drug, assault, sequela +C2879264|T037|AB|T45.624|ICD10CM|Poisoning by hemostatic drug, undetermined|Poisoning by hemostatic drug, undetermined +C2879264|T037|HT|T45.624|ICD10CM|Poisoning by hemostatic drug, undetermined|Poisoning by hemostatic drug, undetermined +C2879265|T037|AB|T45.624A|ICD10CM|Poisoning by hemostatic drug, undetermined, init encntr|Poisoning by hemostatic drug, undetermined, init encntr +C2879265|T037|PT|T45.624A|ICD10CM|Poisoning by hemostatic drug, undetermined, initial encounter|Poisoning by hemostatic drug, undetermined, initial encounter +C2879266|T037|AB|T45.624D|ICD10CM|Poisoning by hemostatic drug, undetermined, subs encntr|Poisoning by hemostatic drug, undetermined, subs encntr +C2879266|T037|PT|T45.624D|ICD10CM|Poisoning by hemostatic drug, undetermined, subsequent encounter|Poisoning by hemostatic drug, undetermined, subsequent encounter +C2879267|T037|AB|T45.624S|ICD10CM|Poisoning by hemostatic drug, undetermined, sequela|Poisoning by hemostatic drug, undetermined, sequela +C2879267|T037|PT|T45.624S|ICD10CM|Poisoning by hemostatic drug, undetermined, sequela|Poisoning by hemostatic drug, undetermined, sequela +C2879268|T037|AB|T45.625|ICD10CM|Adverse effect of hemostatic drug|Adverse effect of hemostatic drug +C2879268|T037|HT|T45.625|ICD10CM|Adverse effect of hemostatic drug|Adverse effect of hemostatic drug +C2879269|T037|AB|T45.625A|ICD10CM|Adverse effect of hemostatic drug, initial encounter|Adverse effect of hemostatic drug, initial encounter +C2879269|T037|PT|T45.625A|ICD10CM|Adverse effect of hemostatic drug, initial encounter|Adverse effect of hemostatic drug, initial encounter +C2879270|T037|AB|T45.625D|ICD10CM|Adverse effect of hemostatic drug, subsequent encounter|Adverse effect of hemostatic drug, subsequent encounter +C2879270|T037|PT|T45.625D|ICD10CM|Adverse effect of hemostatic drug, subsequent encounter|Adverse effect of hemostatic drug, subsequent encounter +C2879271|T037|AB|T45.625S|ICD10CM|Adverse effect of hemostatic drug, sequela|Adverse effect of hemostatic drug, sequela +C2879271|T037|PT|T45.625S|ICD10CM|Adverse effect of hemostatic drug, sequela|Adverse effect of hemostatic drug, sequela +C2879272|T037|AB|T45.626|ICD10CM|Underdosing of hemostatic drugs|Underdosing of hemostatic drugs +C2879272|T037|HT|T45.626|ICD10CM|Underdosing of hemostatic drugs|Underdosing of hemostatic drugs +C2879273|T037|AB|T45.626A|ICD10CM|Underdosing of hemostatic drugs, initial encounter|Underdosing of hemostatic drugs, initial encounter +C2879273|T037|PT|T45.626A|ICD10CM|Underdosing of hemostatic drugs, initial encounter|Underdosing of hemostatic drugs, initial encounter +C2879274|T037|AB|T45.626D|ICD10CM|Underdosing of hemostatic drugs, subsequent encounter|Underdosing of hemostatic drugs, subsequent encounter +C2879274|T037|PT|T45.626D|ICD10CM|Underdosing of hemostatic drugs, subsequent encounter|Underdosing of hemostatic drugs, subsequent encounter +C2879275|T037|AB|T45.626S|ICD10CM|Underdosing of hemostatic drugs, sequela|Underdosing of hemostatic drugs, sequela +C2879275|T037|PT|T45.626S|ICD10CM|Underdosing of hemostatic drugs, sequela|Underdosing of hemostatic drugs, sequela +C2879276|T037|AB|T45.69|ICD10CM|Fibrinolysis-affecting drugs|Fibrinolysis-affecting drugs +C2879276|T037|HT|T45.69|ICD10CM|Poisoning by, adverse effect of and underdosing of other fibrinolysis-affecting drugs|Poisoning by, adverse effect of and underdosing of other fibrinolysis-affecting drugs +C2879278|T037|AB|T45.691|ICD10CM|Poisoning by oth fibrin-affct drugs, accidental|Poisoning by oth fibrin-affct drugs, accidental +C2879277|T037|ET|T45.691|ICD10CM|Poisoning by other fibrinolysis-affecting drug NOS|Poisoning by other fibrinolysis-affecting drug NOS +C2879278|T037|HT|T45.691|ICD10CM|Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional)|Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional) +C2879279|T037|AB|T45.691A|ICD10CM|Poisoning by oth fibrin-affct drugs, accidental, init|Poisoning by oth fibrin-affct drugs, accidental, init +C2879279|T037|PT|T45.691A|ICD10CM|Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional), initial encounter|Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional), initial encounter +C2879280|T037|AB|T45.691D|ICD10CM|Poisoning by oth fibrin-affct drugs, accidental, subs|Poisoning by oth fibrin-affct drugs, accidental, subs +C2879280|T037|PT|T45.691D|ICD10CM|Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional), subsequent encounter|Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional), subsequent encounter +C2879281|T037|AB|T45.691S|ICD10CM|Poisoning by oth fibrin-affct drugs, accidental, sequela|Poisoning by oth fibrin-affct drugs, accidental, sequela +C2879281|T037|PT|T45.691S|ICD10CM|Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional), sequela|Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional), sequela +C2879282|T037|AB|T45.692|ICD10CM|Poisoning by oth fibrin-affct drugs, intentional self-harm|Poisoning by oth fibrin-affct drugs, intentional self-harm +C2879282|T037|HT|T45.692|ICD10CM|Poisoning by other fibrinolysis-affecting drugs, intentional self-harm|Poisoning by other fibrinolysis-affecting drugs, intentional self-harm +C2879283|T037|AB|T45.692A|ICD10CM|Poisoning by oth fibrin-affct drugs, self-harm, init|Poisoning by oth fibrin-affct drugs, self-harm, init +C2879283|T037|PT|T45.692A|ICD10CM|Poisoning by other fibrinolysis-affecting drugs, intentional self-harm, initial encounter|Poisoning by other fibrinolysis-affecting drugs, intentional self-harm, initial encounter +C2879284|T037|AB|T45.692D|ICD10CM|Poisoning by oth fibrin-affct drugs, self-harm, subs|Poisoning by oth fibrin-affct drugs, self-harm, subs +C2879284|T037|PT|T45.692D|ICD10CM|Poisoning by other fibrinolysis-affecting drugs, intentional self-harm, subsequent encounter|Poisoning by other fibrinolysis-affecting drugs, intentional self-harm, subsequent encounter +C2879285|T037|AB|T45.692S|ICD10CM|Poisoning by oth fibrin-affct drugs, self-harm, sequela|Poisoning by oth fibrin-affct drugs, self-harm, sequela +C2879285|T037|PT|T45.692S|ICD10CM|Poisoning by other fibrinolysis-affecting drugs, intentional self-harm, sequela|Poisoning by other fibrinolysis-affecting drugs, intentional self-harm, sequela +C2879286|T037|AB|T45.693|ICD10CM|Poisoning by other fibrinolysis-affecting drugs, assault|Poisoning by other fibrinolysis-affecting drugs, assault +C2879286|T037|HT|T45.693|ICD10CM|Poisoning by other fibrinolysis-affecting drugs, assault|Poisoning by other fibrinolysis-affecting drugs, assault +C2879287|T037|AB|T45.693A|ICD10CM|Poisoning by oth fibrinolysis-affecting drugs, assault, init|Poisoning by oth fibrinolysis-affecting drugs, assault, init +C2879287|T037|PT|T45.693A|ICD10CM|Poisoning by other fibrinolysis-affecting drugs, assault, initial encounter|Poisoning by other fibrinolysis-affecting drugs, assault, initial encounter +C2879288|T037|AB|T45.693D|ICD10CM|Poisoning by oth fibrinolysis-affecting drugs, assault, subs|Poisoning by oth fibrinolysis-affecting drugs, assault, subs +C2879288|T037|PT|T45.693D|ICD10CM|Poisoning by other fibrinolysis-affecting drugs, assault, subsequent encounter|Poisoning by other fibrinolysis-affecting drugs, assault, subsequent encounter +C2879289|T037|AB|T45.693S|ICD10CM|Poisoning by oth fibrin-affct drugs, assault, sequela|Poisoning by oth fibrin-affct drugs, assault, sequela +C2879289|T037|PT|T45.693S|ICD10CM|Poisoning by other fibrinolysis-affecting drugs, assault, sequela|Poisoning by other fibrinolysis-affecting drugs, assault, sequela +C2879290|T037|AB|T45.694|ICD10CM|Poisoning by oth fibrinolysis-affecting drugs, undetermined|Poisoning by oth fibrinolysis-affecting drugs, undetermined +C2879290|T037|HT|T45.694|ICD10CM|Poisoning by other fibrinolysis-affecting drugs, undetermined|Poisoning by other fibrinolysis-affecting drugs, undetermined +C2879291|T037|AB|T45.694A|ICD10CM|Poisoning by oth fibrin-affct drugs, undetermined, init|Poisoning by oth fibrin-affct drugs, undetermined, init +C2879291|T037|PT|T45.694A|ICD10CM|Poisoning by other fibrinolysis-affecting drugs, undetermined, initial encounter|Poisoning by other fibrinolysis-affecting drugs, undetermined, initial encounter +C2879292|T037|AB|T45.694D|ICD10CM|Poisoning by oth fibrin-affct drugs, undetermined, subs|Poisoning by oth fibrin-affct drugs, undetermined, subs +C2879292|T037|PT|T45.694D|ICD10CM|Poisoning by other fibrinolysis-affecting drugs, undetermined, subsequent encounter|Poisoning by other fibrinolysis-affecting drugs, undetermined, subsequent encounter +C2879293|T037|AB|T45.694S|ICD10CM|Poisoning by oth fibrin-affct drugs, undetermined, sequela|Poisoning by oth fibrin-affct drugs, undetermined, sequela +C2879293|T037|PT|T45.694S|ICD10CM|Poisoning by other fibrinolysis-affecting drugs, undetermined, sequela|Poisoning by other fibrinolysis-affecting drugs, undetermined, sequela +C2879294|T037|AB|T45.695|ICD10CM|Adverse effect of other fibrinolysis-affecting drugs|Adverse effect of other fibrinolysis-affecting drugs +C2879294|T037|HT|T45.695|ICD10CM|Adverse effect of other fibrinolysis-affecting drugs|Adverse effect of other fibrinolysis-affecting drugs +C2879295|T037|AB|T45.695A|ICD10CM|Adverse effect of oth fibrinolysis-affecting drugs, init|Adverse effect of oth fibrinolysis-affecting drugs, init +C2879295|T037|PT|T45.695A|ICD10CM|Adverse effect of other fibrinolysis-affecting drugs, initial encounter|Adverse effect of other fibrinolysis-affecting drugs, initial encounter +C2879296|T037|AB|T45.695D|ICD10CM|Adverse effect of oth fibrinolysis-affecting drugs, subs|Adverse effect of oth fibrinolysis-affecting drugs, subs +C2879296|T037|PT|T45.695D|ICD10CM|Adverse effect of other fibrinolysis-affecting drugs, subsequent encounter|Adverse effect of other fibrinolysis-affecting drugs, subsequent encounter +C2879297|T037|AB|T45.695S|ICD10CM|Adverse effect of oth fibrinolysis-affecting drugs, sequela|Adverse effect of oth fibrinolysis-affecting drugs, sequela +C2879297|T037|PT|T45.695S|ICD10CM|Adverse effect of other fibrinolysis-affecting drugs, sequela|Adverse effect of other fibrinolysis-affecting drugs, sequela +C2879298|T037|AB|T45.696|ICD10CM|Underdosing of other fibrinolysis-affecting drugs|Underdosing of other fibrinolysis-affecting drugs +C2879298|T037|HT|T45.696|ICD10CM|Underdosing of other fibrinolysis-affecting drugs|Underdosing of other fibrinolysis-affecting drugs +C2879299|T037|AB|T45.696A|ICD10CM|Underdosing of oth fibrinolysis-affecting drugs, init encntr|Underdosing of oth fibrinolysis-affecting drugs, init encntr +C2879299|T037|PT|T45.696A|ICD10CM|Underdosing of other fibrinolysis-affecting drugs, initial encounter|Underdosing of other fibrinolysis-affecting drugs, initial encounter +C2879300|T037|AB|T45.696D|ICD10CM|Underdosing of oth fibrinolysis-affecting drugs, subs encntr|Underdosing of oth fibrinolysis-affecting drugs, subs encntr +C2879300|T037|PT|T45.696D|ICD10CM|Underdosing of other fibrinolysis-affecting drugs, subsequent encounter|Underdosing of other fibrinolysis-affecting drugs, subsequent encounter +C2879301|T037|AB|T45.696S|ICD10CM|Underdosing of other fibrinolysis-affecting drugs, sequela|Underdosing of other fibrinolysis-affecting drugs, sequela +C2879301|T037|PT|T45.696S|ICD10CM|Underdosing of other fibrinolysis-affecting drugs, sequela|Underdosing of other fibrinolysis-affecting drugs, sequela +C2879302|T037|AB|T45.7|ICD10CM|Anticoagulant antagonists, vitamin K and oth coagulants|Anticoagulant antagonists, vitamin K and oth coagulants +C0496989|T037|PS|T45.7|ICD10|Anticoagulant antagonists, vitamin K and other coagulants|Anticoagulant antagonists, vitamin K and other coagulants +C0496989|T037|PX|T45.7|ICD10|Poisoning by anticoagulant antagonists, vitamin K and other coagulants|Poisoning by anticoagulant antagonists, vitamin K and other coagulants +C2879302|T037|AB|T45.7X|ICD10CM|Anticoagulant antagonists, vitamin K and oth coagulants|Anticoagulant antagonists, vitamin K and oth coagulants +C2879303|T037|AB|T45.7X1|ICD10CM|Poisoning by anticoag antag, vitamin K and oth coag, acc|Poisoning by anticoag antag, vitamin K and oth coag, acc +C0496989|T037|ET|T45.7X1|ICD10CM|Poisoning by anticoagulant antagonists, vitamin K and other coagulants NOS|Poisoning by anticoagulant antagonists, vitamin K and other coagulants NOS +C2879303|T037|HT|T45.7X1|ICD10CM|Poisoning by anticoagulant antagonists, vitamin K and other coagulants, accidental (unintentional)|Poisoning by anticoagulant antagonists, vitamin K and other coagulants, accidental (unintentional) +C2879304|T037|AB|T45.7X1A|ICD10CM|Poisn by anticoag antag, vitamin K and oth coag, acc, init|Poisn by anticoag antag, vitamin K and oth coag, acc, init +C2879305|T037|AB|T45.7X1D|ICD10CM|Poisn by anticoag antag, vitamin K and oth coag, acc, subs|Poisn by anticoag antag, vitamin K and oth coag, acc, subs +C2879306|T037|AB|T45.7X1S|ICD10CM|Poisn by anticoag antag, vit K and oth coag, acc, sequela|Poisn by anticoag antag, vit K and oth coag, acc, sequela +C2879307|T037|AB|T45.7X2|ICD10CM|Poisn by anticoag antag, vitamin K and oth coag, self-harm|Poisn by anticoag antag, vitamin K and oth coag, self-harm +C2879307|T037|HT|T45.7X2|ICD10CM|Poisoning by anticoagulant antagonists, vitamin K and other coagulants, intentional self-harm|Poisoning by anticoagulant antagonists, vitamin K and other coagulants, intentional self-harm +C2879308|T037|AB|T45.7X2A|ICD10CM|Poisn by anticoag antag, vit K and oth coag, slf-hrm, init|Poisn by anticoag antag, vit K and oth coag, slf-hrm, init +C2879309|T037|AB|T45.7X2D|ICD10CM|Poisn by anticoag antag, vit K and oth coag, slf-hrm, subs|Poisn by anticoag antag, vit K and oth coag, slf-hrm, subs +C2879310|T037|AB|T45.7X2S|ICD10CM|Poisn by anticoag antag, vit K and oth coag, slf-hrm, sqla|Poisn by anticoag antag, vit K and oth coag, slf-hrm, sqla +C2879311|T037|AB|T45.7X3|ICD10CM|Poisoning by anticoag antag, vitamin K and oth coag, assault|Poisoning by anticoag antag, vitamin K and oth coag, assault +C2879311|T037|HT|T45.7X3|ICD10CM|Poisoning by anticoagulant antagonists, vitamin K and other coagulants, assault|Poisoning by anticoagulant antagonists, vitamin K and other coagulants, assault +C2879312|T037|AB|T45.7X3A|ICD10CM|Poisn by anticoag antag, vit K and oth coag, assault, init|Poisn by anticoag antag, vit K and oth coag, assault, init +C2879312|T037|PT|T45.7X3A|ICD10CM|Poisoning by anticoagulant antagonists, vitamin K and other coagulants, assault, initial encounter|Poisoning by anticoagulant antagonists, vitamin K and other coagulants, assault, initial encounter +C2879313|T037|AB|T45.7X3D|ICD10CM|Poisn by anticoag antag, vit K and oth coag, assault, subs|Poisn by anticoag antag, vit K and oth coag, assault, subs +C2879314|T037|AB|T45.7X3S|ICD10CM|Poisn by anticoag antag, vit K and oth coag, asslt, sequela|Poisn by anticoag antag, vit K and oth coag, asslt, sequela +C2879314|T037|PT|T45.7X3S|ICD10CM|Poisoning by anticoagulant antagonists, vitamin K and other coagulants, assault, sequela|Poisoning by anticoagulant antagonists, vitamin K and other coagulants, assault, sequela +C2879315|T037|AB|T45.7X4|ICD10CM|Poisoning by anticoag antag, vitamin K and oth coag, undet|Poisoning by anticoag antag, vitamin K and oth coag, undet +C2879315|T037|HT|T45.7X4|ICD10CM|Poisoning by anticoagulant antagonists, vitamin K and other coagulants, undetermined|Poisoning by anticoagulant antagonists, vitamin K and other coagulants, undetermined +C2879316|T037|AB|T45.7X4A|ICD10CM|Poisn by anticoag antag, vitamin K and oth coag, undet, init|Poisn by anticoag antag, vitamin K and oth coag, undet, init +C2879317|T037|AB|T45.7X4D|ICD10CM|Poisn by anticoag antag, vitamin K and oth coag, undet, subs|Poisn by anticoag antag, vitamin K and oth coag, undet, subs +C2879318|T037|AB|T45.7X4S|ICD10CM|Poisn by anticoag antag, vit K and oth coag, undet, sequela|Poisn by anticoag antag, vit K and oth coag, undet, sequela +C2879318|T037|PT|T45.7X4S|ICD10CM|Poisoning by anticoagulant antagonists, vitamin K and other coagulants, undetermined, sequela|Poisoning by anticoagulant antagonists, vitamin K and other coagulants, undetermined, sequela +C2879319|T037|AB|T45.7X5|ICD10CM|Adverse effect of anticoag antag, vitamin K and oth coag|Adverse effect of anticoag antag, vitamin K and oth coag +C2879319|T037|HT|T45.7X5|ICD10CM|Adverse effect of anticoagulant antagonists, vitamin K and other coagulants|Adverse effect of anticoagulant antagonists, vitamin K and other coagulants +C2879320|T037|AB|T45.7X5A|ICD10CM|Adverse effect of anticoag antag, vit K and oth coag, init|Adverse effect of anticoag antag, vit K and oth coag, init +C2879320|T037|PT|T45.7X5A|ICD10CM|Adverse effect of anticoagulant antagonists, vitamin K and other coagulants, initial encounter|Adverse effect of anticoagulant antagonists, vitamin K and other coagulants, initial encounter +C2879321|T037|AB|T45.7X5D|ICD10CM|Adverse effect of anticoag antag, vit K and oth coag, subs|Adverse effect of anticoag antag, vit K and oth coag, subs +C2879321|T037|PT|T45.7X5D|ICD10CM|Adverse effect of anticoagulant antagonists, vitamin K and other coagulants, subsequent encounter|Adverse effect of anticoagulant antagonists, vitamin K and other coagulants, subsequent encounter +C2879322|T037|PT|T45.7X5S|ICD10CM|Adverse effect of anticoagulant antagonists, vitamin K and other coagulants, sequela|Adverse effect of anticoagulant antagonists, vitamin K and other coagulants, sequela +C2879322|T037|AB|T45.7X5S|ICD10CM|Advrs effect of anticoag antag, vit K and oth coag, sequela|Advrs effect of anticoag antag, vit K and oth coag, sequela +C2879323|T037|HT|T45.7X6|ICD10CM|Underdosing of anticoagulant antagonist, vitamin K and other coagulants|Underdosing of anticoagulant antagonist, vitamin K and other coagulants +C2879323|T037|AB|T45.7X6|ICD10CM|Undrdose of anticoag antagonist, vitamin K and oth coag|Undrdose of anticoag antagonist, vitamin K and oth coag +C2879324|T037|PT|T45.7X6A|ICD10CM|Underdosing of anticoagulant antagonist, vitamin K and other coagulants, initial encounter|Underdosing of anticoagulant antagonist, vitamin K and other coagulants, initial encounter +C2879324|T037|AB|T45.7X6A|ICD10CM|Undrdose of anticoag antagonist, vit K and oth coag, init|Undrdose of anticoag antagonist, vit K and oth coag, init +C2879325|T037|PT|T45.7X6D|ICD10CM|Underdosing of anticoagulant antagonist, vitamin K and other coagulants, subsequent encounter|Underdosing of anticoagulant antagonist, vitamin K and other coagulants, subsequent encounter +C2879325|T037|AB|T45.7X6D|ICD10CM|Undrdose of anticoag antagonist, vit K and oth coag, subs|Undrdose of anticoag antagonist, vit K and oth coag, subs +C2879326|T037|PT|T45.7X6S|ICD10CM|Underdosing of anticoagulant antagonist, vitamin K and other coagulants, sequela|Underdosing of anticoagulant antagonist, vitamin K and other coagulants, sequela +C2879326|T037|AB|T45.7X6S|ICD10CM|Undrdose of anticoag antagonist, vit K and oth coag, sequela|Undrdose of anticoag antagonist, vit K and oth coag, sequela +C0478447|T037|PS|T45.8|ICD10|Other primarily systemic and haematological agents|Other primarily systemic and haematological agents +C0478447|T037|PS|T45.8|ICD10AE|Other primarily systemic and hematological agents|Other primarily systemic and hematological agents +C0478447|T037|PX|T45.8|ICD10|Poisoning by other primarily systemic and haematological agents|Poisoning by other primarily systemic and haematological agents +C0478447|T037|PX|T45.8|ICD10AE|Poisoning by other primarily systemic and hematological agents|Poisoning by other primarily systemic and hematological agents +C2879327|T037|ET|T45.8|ICD10CM|Poisoning by, adverse effect of and underdosing of liver preparations and other antianemic agents|Poisoning by, adverse effect of and underdosing of liver preparations and other antianemic agents +C2879328|T037|ET|T45.8|ICD10CM|Poisoning by, adverse effect of and underdosing of natural blood and blood products|Poisoning by, adverse effect of and underdosing of natural blood and blood products +C2879330|T037|HT|T45.8|ICD10CM|Poisoning by, adverse effect of and underdosing of other primarily systemic and hematological agents|Poisoning by, adverse effect of and underdosing of other primarily systemic and hematological agents +C2879329|T037|ET|T45.8|ICD10CM|Poisoning by, adverse effect of and underdosing of plasma substitute|Poisoning by, adverse effect of and underdosing of plasma substitute +C2879330|T037|AB|T45.8|ICD10CM|Primarily systemic and hematological agents|Primarily systemic and hematological agents +C2879330|T037|HT|T45.8X|ICD10CM|Poisoning by, adverse effect of and underdosing of other primarily systemic and hematological agents|Poisoning by, adverse effect of and underdosing of other primarily systemic and hematological agents +C2879330|T037|AB|T45.8X|ICD10CM|Primarily systemic and hematological agents|Primarily systemic and hematological agents +C2879331|T037|AB|T45.8X1|ICD10CM|Poisn by oth primarily systemic and hematolog agents, acc|Poisn by oth primarily systemic and hematolog agents, acc +C0478447|T037|ET|T45.8X1|ICD10CM|Poisoning by other primarily systemic and hematological agents NOS|Poisoning by other primarily systemic and hematological agents NOS +C2879331|T037|HT|T45.8X1|ICD10CM|Poisoning by other primarily systemic and hematological agents, accidental (unintentional)|Poisoning by other primarily systemic and hematological agents, accidental (unintentional) +C2879332|T037|AB|T45.8X1A|ICD10CM|Poisn by oth prim systemic and hematolog agents, acc, init|Poisn by oth prim systemic and hematolog agents, acc, init +C2879333|T037|AB|T45.8X1D|ICD10CM|Poisn by oth prim systemic and hematolog agents, acc, subs|Poisn by oth prim systemic and hematolog agents, acc, subs +C2879334|T037|AB|T45.8X1S|ICD10CM|Poisn by oth prim sys and hematolog agents, acc, sequela|Poisn by oth prim sys and hematolog agents, acc, sequela +C2879334|T037|PT|T45.8X1S|ICD10CM|Poisoning by other primarily systemic and hematological agents, accidental (unintentional), sequela|Poisoning by other primarily systemic and hematological agents, accidental (unintentional), sequela +C2879335|T037|AB|T45.8X2|ICD10CM|Poisn by oth prim systemic and hematolog agents, self-harm|Poisn by oth prim systemic and hematolog agents, self-harm +C2879335|T037|HT|T45.8X2|ICD10CM|Poisoning by other primarily systemic and hematological agents, intentional self-harm|Poisoning by other primarily systemic and hematological agents, intentional self-harm +C2879336|T037|AB|T45.8X2A|ICD10CM|Poisn by oth prim sys and hematolog agents, slf-hrm, init|Poisn by oth prim sys and hematolog agents, slf-hrm, init +C2879337|T037|AB|T45.8X2D|ICD10CM|Poisn by oth prim sys and hematolog agents, slf-hrm, subs|Poisn by oth prim sys and hematolog agents, slf-hrm, subs +C2879338|T037|AB|T45.8X2S|ICD10CM|Poisn by oth prim sys and hematolog agents, slf-hrm, sequela|Poisn by oth prim sys and hematolog agents, slf-hrm, sequela +C2879338|T037|PT|T45.8X2S|ICD10CM|Poisoning by other primarily systemic and hematological agents, intentional self-harm, sequela|Poisoning by other primarily systemic and hematological agents, intentional self-harm, sequela +C2879339|T037|AB|T45.8X3|ICD10CM|Poisn by oth prim systemic and hematolog agents, assault|Poisn by oth prim systemic and hematolog agents, assault +C2879339|T037|HT|T45.8X3|ICD10CM|Poisoning by other primarily systemic and hematological agents, assault|Poisoning by other primarily systemic and hematological agents, assault +C2879340|T037|AB|T45.8X3A|ICD10CM|Poisn by oth prim sys and hematolog agents, assault, init|Poisn by oth prim sys and hematolog agents, assault, init +C2879340|T037|PT|T45.8X3A|ICD10CM|Poisoning by other primarily systemic and hematological agents, assault, initial encounter|Poisoning by other primarily systemic and hematological agents, assault, initial encounter +C2879341|T037|AB|T45.8X3D|ICD10CM|Poisn by oth prim sys and hematolog agents, assault, subs|Poisn by oth prim sys and hematolog agents, assault, subs +C2879341|T037|PT|T45.8X3D|ICD10CM|Poisoning by other primarily systemic and hematological agents, assault, subsequent encounter|Poisoning by other primarily systemic and hematological agents, assault, subsequent encounter +C2879342|T037|AB|T45.8X3S|ICD10CM|Poisn by oth prim sys and hematolog agents, assault, sequela|Poisn by oth prim sys and hematolog agents, assault, sequela +C2879342|T037|PT|T45.8X3S|ICD10CM|Poisoning by other primarily systemic and hematological agents, assault, sequela|Poisoning by other primarily systemic and hematological agents, assault, sequela +C2879343|T037|AB|T45.8X4|ICD10CM|Poisn by oth primarily systemic and hematolog agents, undet|Poisn by oth primarily systemic and hematolog agents, undet +C2879343|T037|HT|T45.8X4|ICD10CM|Poisoning by other primarily systemic and hematological agents, undetermined|Poisoning by other primarily systemic and hematological agents, undetermined +C2879344|T037|AB|T45.8X4A|ICD10CM|Poisn by oth prim systemic and hematolog agents, undet, init|Poisn by oth prim systemic and hematolog agents, undet, init +C2879344|T037|PT|T45.8X4A|ICD10CM|Poisoning by other primarily systemic and hematological agents, undetermined, initial encounter|Poisoning by other primarily systemic and hematological agents, undetermined, initial encounter +C2879345|T037|AB|T45.8X4D|ICD10CM|Poisn by oth prim systemic and hematolog agents, undet, subs|Poisn by oth prim systemic and hematolog agents, undet, subs +C2879345|T037|PT|T45.8X4D|ICD10CM|Poisoning by other primarily systemic and hematological agents, undetermined, subsequent encounter|Poisoning by other primarily systemic and hematological agents, undetermined, subsequent encounter +C2879346|T037|AB|T45.8X4S|ICD10CM|Poisn by oth prim sys and hematolog agents, undet, sequela|Poisn by oth prim sys and hematolog agents, undet, sequela +C2879346|T037|PT|T45.8X4S|ICD10CM|Poisoning by other primarily systemic and hematological agents, undetermined, sequela|Poisoning by other primarily systemic and hematological agents, undetermined, sequela +C2879347|T037|HT|T45.8X5|ICD10CM|Adverse effect of other primarily systemic and hematological agents|Adverse effect of other primarily systemic and hematological agents +C2879347|T037|AB|T45.8X5|ICD10CM|Adverse effect of primarily systemic and hematolog agents|Adverse effect of primarily systemic and hematolog agents +C2879348|T037|PT|T45.8X5A|ICD10CM|Adverse effect of other primarily systemic and hematological agents, initial encounter|Adverse effect of other primarily systemic and hematological agents, initial encounter +C2879348|T037|AB|T45.8X5A|ICD10CM|Adverse effect of prim systemic and hematolog agents, init|Adverse effect of prim systemic and hematolog agents, init +C2879349|T037|PT|T45.8X5D|ICD10CM|Adverse effect of other primarily systemic and hematological agents, subsequent encounter|Adverse effect of other primarily systemic and hematological agents, subsequent encounter +C2879349|T037|AB|T45.8X5D|ICD10CM|Adverse effect of prim systemic and hematolog agents, subs|Adverse effect of prim systemic and hematolog agents, subs +C2879350|T037|PT|T45.8X5S|ICD10CM|Adverse effect of other primarily systemic and hematological agents, sequela|Adverse effect of other primarily systemic and hematological agents, sequela +C2879350|T037|AB|T45.8X5S|ICD10CM|Adverse effect of prim sys and hematolog agents, sequela|Adverse effect of prim sys and hematolog agents, sequela +C2879351|T037|HT|T45.8X6|ICD10CM|Underdosing of other primarily systemic and hematological agents|Underdosing of other primarily systemic and hematological agents +C2879351|T037|AB|T45.8X6|ICD10CM|Underdosing of primarily systemic and hematological agents|Underdosing of primarily systemic and hematological agents +C2879352|T037|PT|T45.8X6A|ICD10CM|Underdosing of other primarily systemic and hematological agents, initial encounter|Underdosing of other primarily systemic and hematological agents, initial encounter +C2879352|T037|AB|T45.8X6A|ICD10CM|Underdosing of primarily systemic and hematolog agents, init|Underdosing of primarily systemic and hematolog agents, init +C2879353|T037|PT|T45.8X6D|ICD10CM|Underdosing of other primarily systemic and hematological agents, subsequent encounter|Underdosing of other primarily systemic and hematological agents, subsequent encounter +C2879353|T037|AB|T45.8X6D|ICD10CM|Underdosing of primarily systemic and hematolog agents, subs|Underdosing of primarily systemic and hematolog agents, subs +C2879354|T037|PT|T45.8X6S|ICD10CM|Underdosing of other primarily systemic and hematological agents, sequela|Underdosing of other primarily systemic and hematological agents, sequela +C2879354|T037|AB|T45.8X6S|ICD10CM|Undrdose of primarily systemic and hematolog agents, sequela|Undrdose of primarily systemic and hematolog agents, sequela +C0496990|T037|PX|T45.9|ICD10|Poisoning by primarily systemic and haematological agent, unspecified|Poisoning by primarily systemic and haematological agent, unspecified +C0496990|T037|PX|T45.9|ICD10AE|Poisoning by primarily systemic and hematological agent, unspecified|Poisoning by primarily systemic and hematological agent, unspecified +C0496990|T037|PS|T45.9|ICD10|Primarily systemic and haematological agent, unspecified|Primarily systemic and haematological agent, unspecified +C0496990|T037|PS|T45.9|ICD10AE|Primarily systemic and hematological agent, unspecified|Primarily systemic and hematological agent, unspecified +C2879355|T037|AB|T45.9|ICD10CM|Unsp primarily systemic and hematological agent|Unsp primarily systemic and hematological agent +C2879357|T037|AB|T45.91|ICD10CM|Poisn by unsp primarily systemic and hematolog agent, acc|Poisn by unsp primarily systemic and hematolog agent, acc +C2879356|T037|ET|T45.91|ICD10CM|Poisoning by primarily systemic and hematological agent NOS|Poisoning by primarily systemic and hematological agent NOS +C2879357|T037|HT|T45.91|ICD10CM|Poisoning by unspecified primarily systemic and hematological agent, accidental (unintentional)|Poisoning by unspecified primarily systemic and hematological agent, accidental (unintentional) +C2879358|T037|AB|T45.91XA|ICD10CM|Poisn by unsp prim systemic and hematolog agent, acc, init|Poisn by unsp prim systemic and hematolog agent, acc, init +C2879359|T037|AB|T45.91XD|ICD10CM|Poisn by unsp prim systemic and hematolog agent, acc, subs|Poisn by unsp prim systemic and hematolog agent, acc, subs +C2879360|T037|AB|T45.91XS|ICD10CM|Poisn by unsp prim sys and hematolog agent, acc, sequela|Poisn by unsp prim sys and hematolog agent, acc, sequela +C2879361|T037|AB|T45.92|ICD10CM|Poisn by unsp prim systemic and hematolog agent, self-harm|Poisn by unsp prim systemic and hematolog agent, self-harm +C2879361|T037|HT|T45.92|ICD10CM|Poisoning by unspecified primarily systemic and hematological agent, intentional self-harm|Poisoning by unspecified primarily systemic and hematological agent, intentional self-harm +C2879362|T037|AB|T45.92XA|ICD10CM|Poisn by unsp prim sys and hematolog agent, slf-hrm, init|Poisn by unsp prim sys and hematolog agent, slf-hrm, init +C2879363|T037|AB|T45.92XD|ICD10CM|Poisn by unsp prim sys and hematolog agent, slf-hrm, subs|Poisn by unsp prim sys and hematolog agent, slf-hrm, subs +C2879364|T037|AB|T45.92XS|ICD10CM|Poisn by unsp prim sys and hematolog agent, slf-hrm, sequela|Poisn by unsp prim sys and hematolog agent, slf-hrm, sequela +C2879364|T037|PT|T45.92XS|ICD10CM|Poisoning by unspecified primarily systemic and hematological agent, intentional self-harm, sequela|Poisoning by unspecified primarily systemic and hematological agent, intentional self-harm, sequela +C2879365|T037|AB|T45.93|ICD10CM|Poisn by unsp prim systemic and hematolog agent, assault|Poisn by unsp prim systemic and hematolog agent, assault +C2879365|T037|HT|T45.93|ICD10CM|Poisoning by unspecified primarily systemic and hematological agent, assault|Poisoning by unspecified primarily systemic and hematological agent, assault +C2879366|T037|AB|T45.93XA|ICD10CM|Poisn by unsp prim sys and hematolog agent, assault, init|Poisn by unsp prim sys and hematolog agent, assault, init +C2879366|T037|PT|T45.93XA|ICD10CM|Poisoning by unspecified primarily systemic and hematological agent, assault, initial encounter|Poisoning by unspecified primarily systemic and hematological agent, assault, initial encounter +C2879367|T037|AB|T45.93XD|ICD10CM|Poisn by unsp prim sys and hematolog agent, assault, subs|Poisn by unsp prim sys and hematolog agent, assault, subs +C2879367|T037|PT|T45.93XD|ICD10CM|Poisoning by unspecified primarily systemic and hematological agent, assault, subsequent encounter|Poisoning by unspecified primarily systemic and hematological agent, assault, subsequent encounter +C2879368|T037|AB|T45.93XS|ICD10CM|Poisn by unsp prim sys and hematolog agent, assault, sequela|Poisn by unsp prim sys and hematolog agent, assault, sequela +C2879368|T037|PT|T45.93XS|ICD10CM|Poisoning by unspecified primarily systemic and hematological agent, assault, sequela|Poisoning by unspecified primarily systemic and hematological agent, assault, sequela +C2879369|T037|AB|T45.94|ICD10CM|Poisn by unsp primarily systemic and hematolog agent, undet|Poisn by unsp primarily systemic and hematolog agent, undet +C2879369|T037|HT|T45.94|ICD10CM|Poisoning by unspecified primarily systemic and hematological agent, undetermined|Poisoning by unspecified primarily systemic and hematological agent, undetermined +C2879370|T037|AB|T45.94XA|ICD10CM|Poisn by unsp prim systemic and hematolog agent, undet, init|Poisn by unsp prim systemic and hematolog agent, undet, init +C2879370|T037|PT|T45.94XA|ICD10CM|Poisoning by unspecified primarily systemic and hematological agent, undetermined, initial encounter|Poisoning by unspecified primarily systemic and hematological agent, undetermined, initial encounter +C2879371|T037|AB|T45.94XD|ICD10CM|Poisn by unsp prim systemic and hematolog agent, undet, subs|Poisn by unsp prim systemic and hematolog agent, undet, subs +C2879372|T037|AB|T45.94XS|ICD10CM|Poisn by unsp prim sys and hematolog agent, undet, sequela|Poisn by unsp prim sys and hematolog agent, undet, sequela +C2879372|T037|PT|T45.94XS|ICD10CM|Poisoning by unspecified primarily systemic and hematological agent, undetermined, sequela|Poisoning by unspecified primarily systemic and hematological agent, undetermined, sequela +C2879373|T037|AB|T45.95|ICD10CM|Adverse effect of unsp prim systemic and hematolog agent|Adverse effect of unsp prim systemic and hematolog agent +C2879373|T037|HT|T45.95|ICD10CM|Adverse effect of unspecified primarily systemic and hematological agent|Adverse effect of unspecified primarily systemic and hematological agent +C2879374|T037|AB|T45.95XA|ICD10CM|Adverse effect of unsp prim sys and hematolog agent, init|Adverse effect of unsp prim sys and hematolog agent, init +C2879374|T037|PT|T45.95XA|ICD10CM|Adverse effect of unspecified primarily systemic and hematological agent, initial encounter|Adverse effect of unspecified primarily systemic and hematological agent, initial encounter +C2879375|T037|AB|T45.95XD|ICD10CM|Adverse effect of unsp prim sys and hematolog agent, subs|Adverse effect of unsp prim sys and hematolog agent, subs +C2879375|T037|PT|T45.95XD|ICD10CM|Adverse effect of unspecified primarily systemic and hematological agent, subsequent encounter|Adverse effect of unspecified primarily systemic and hematological agent, subsequent encounter +C2879376|T037|AB|T45.95XS|ICD10CM|Adverse effect of unsp prim sys and hematolog agent, sequela|Adverse effect of unsp prim sys and hematolog agent, sequela +C2879376|T037|PT|T45.95XS|ICD10CM|Adverse effect of unspecified primarily systemic and hematological agent, sequela|Adverse effect of unspecified primarily systemic and hematological agent, sequela +C2879377|T037|AB|T45.96|ICD10CM|Underdosing of unsp primarily systemic and hematolog agent|Underdosing of unsp primarily systemic and hematolog agent +C2879377|T037|HT|T45.96|ICD10CM|Underdosing of unspecified primarily systemic and hematological agent|Underdosing of unspecified primarily systemic and hematological agent +C2879378|T037|PT|T45.96XA|ICD10CM|Underdosing of unspecified primarily systemic and hematological agent, initial encounter|Underdosing of unspecified primarily systemic and hematological agent, initial encounter +C2879378|T037|AB|T45.96XA|ICD10CM|Undrdose of unsp prim systemic and hematolog agent, init|Undrdose of unsp prim systemic and hematolog agent, init +C2879379|T037|PT|T45.96XD|ICD10CM|Underdosing of unspecified primarily systemic and hematological agent, subsequent encounter|Underdosing of unspecified primarily systemic and hematological agent, subsequent encounter +C2879379|T037|AB|T45.96XD|ICD10CM|Undrdose of unsp prim systemic and hematolog agent, subs|Undrdose of unsp prim systemic and hematolog agent, subs +C2879380|T037|PT|T45.96XS|ICD10CM|Underdosing of unspecified primarily systemic and hematological agent, sequela|Underdosing of unspecified primarily systemic and hematological agent, sequela +C2879380|T037|AB|T45.96XS|ICD10CM|Undrdose of unsp prim systemic and hematolog agent, sequela|Undrdose of unsp prim systemic and hematolog agent, sequela +C2879381|T037|AB|T46|ICD10CM|Agents primarily affecting the cardiovascular system|Agents primarily affecting the cardiovascular system +C0161599|T037|HT|T46|ICD10|Poisoning by agents primarily affecting the cardiovascular system|Poisoning by agents primarily affecting the cardiovascular system +C2879382|T037|AB|T46.0|ICD10CM|Cardi-stim glycos/drug simlar act|Cardi-stim glycos/drug simlar act +C0496991|T037|PS|T46.0|ICD10|Cardiac-stimulant glycosides and drugs of similar action|Cardiac-stimulant glycosides and drugs of similar action +C0496991|T037|PX|T46.0|ICD10|Poisoning by cardiac-stimulant glycosides and drugs of similar action|Poisoning by cardiac-stimulant glycosides and drugs of similar action +C2879382|T037|AB|T46.0X|ICD10CM|Cardi-stim glycos/drug simlar act|Cardi-stim glycos/drug simlar act +C2879383|T037|AB|T46.0X1|ICD10CM|Poisoning by cardi-stim glycos/drug simlar act, accidental|Poisoning by cardi-stim glycos/drug simlar act, accidental +C0496991|T037|ET|T46.0X1|ICD10CM|Poisoning by cardiac-stimulant glycosides and drugs of similar action NOS|Poisoning by cardiac-stimulant glycosides and drugs of similar action NOS +C2879383|T037|HT|T46.0X1|ICD10CM|Poisoning by cardiac-stimulant glycosides and drugs of similar action, accidental (unintentional)|Poisoning by cardiac-stimulant glycosides and drugs of similar action, accidental (unintentional) +C2879384|T037|AB|T46.0X1A|ICD10CM|Poisoning by cardi-stim glycos/drug simlar act, acc, init|Poisoning by cardi-stim glycos/drug simlar act, acc, init +C2879385|T037|AB|T46.0X1D|ICD10CM|Poisoning by cardi-stim glycos/drug simlar act, acc, subs|Poisoning by cardi-stim glycos/drug simlar act, acc, subs +C2879386|T037|AB|T46.0X1S|ICD10CM|Poisn by cardi-stim glycos/drug simlar act, acc, sequela|Poisn by cardi-stim glycos/drug simlar act, acc, sequela +C2879387|T037|AB|T46.0X2|ICD10CM|Poisoning by cardi-stim glycos/drug simlar act, self-harm|Poisoning by cardi-stim glycos/drug simlar act, self-harm +C2879387|T037|HT|T46.0X2|ICD10CM|Poisoning by cardiac-stimulant glycosides and drugs of similar action, intentional self-harm|Poisoning by cardiac-stimulant glycosides and drugs of similar action, intentional self-harm +C2879388|T037|AB|T46.0X2A|ICD10CM|Poisn by cardi-stim glycos/drug simlar act, self-harm, init|Poisn by cardi-stim glycos/drug simlar act, self-harm, init +C2879389|T037|AB|T46.0X2D|ICD10CM|Poisn by cardi-stim glycos/drug simlar act, self-harm, subs|Poisn by cardi-stim glycos/drug simlar act, self-harm, subs +C2879390|T037|AB|T46.0X2S|ICD10CM|Poisn by cardi-stim glycos/drug simlar act, slf-hrm, sequela|Poisn by cardi-stim glycos/drug simlar act, slf-hrm, sequela +C2879391|T037|AB|T46.0X3|ICD10CM|Poisoning by cardi-stim glycos/drug simlar act, assault|Poisoning by cardi-stim glycos/drug simlar act, assault +C2879391|T037|HT|T46.0X3|ICD10CM|Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault|Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault +C2879392|T037|AB|T46.0X3A|ICD10CM|Poisn by cardi-stim glycos/drug simlar act, assault, init|Poisn by cardi-stim glycos/drug simlar act, assault, init +C2879392|T037|PT|T46.0X3A|ICD10CM|Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault, initial encounter|Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault, initial encounter +C2879393|T037|AB|T46.0X3D|ICD10CM|Poisn by cardi-stim glycos/drug simlar act, assault, subs|Poisn by cardi-stim glycos/drug simlar act, assault, subs +C2879393|T037|PT|T46.0X3D|ICD10CM|Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault, subsequent encounter|Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault, subsequent encounter +C2879394|T037|AB|T46.0X3S|ICD10CM|Poisn by cardi-stim glycos/drug simlar act, assault, sequela|Poisn by cardi-stim glycos/drug simlar act, assault, sequela +C2879394|T037|PT|T46.0X3S|ICD10CM|Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault, sequela|Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault, sequela +C2879395|T037|AB|T46.0X4|ICD10CM|Poisoning by cardi-stim glycos/drug simlar act, undetermined|Poisoning by cardi-stim glycos/drug simlar act, undetermined +C2879395|T037|HT|T46.0X4|ICD10CM|Poisoning by cardiac-stimulant glycosides and drugs of similar action, undetermined|Poisoning by cardiac-stimulant glycosides and drugs of similar action, undetermined +C2879396|T037|AB|T46.0X4A|ICD10CM|Poisoning by cardi-stim glycos/drug simlar act, undet, init|Poisoning by cardi-stim glycos/drug simlar act, undet, init +C2879397|T037|AB|T46.0X4D|ICD10CM|Poisoning by cardi-stim glycos/drug simlar act, undet, subs|Poisoning by cardi-stim glycos/drug simlar act, undet, subs +C2879398|T037|AB|T46.0X4S|ICD10CM|Poisn by cardi-stim glycos/drug simlar act, undet, sequela|Poisn by cardi-stim glycos/drug simlar act, undet, sequela +C2879398|T037|PT|T46.0X4S|ICD10CM|Poisoning by cardiac-stimulant glycosides and drugs of similar action, undetermined, sequela|Poisoning by cardiac-stimulant glycosides and drugs of similar action, undetermined, sequela +C2879399|T037|AB|T46.0X5|ICD10CM|Adverse effect of cardi-stim glycos/drug simlar act|Adverse effect of cardi-stim glycos/drug simlar act +C2879399|T037|HT|T46.0X5|ICD10CM|Adverse effect of cardiac-stimulant glycosides and drugs of similar action|Adverse effect of cardiac-stimulant glycosides and drugs of similar action +C2879400|T037|AB|T46.0X5A|ICD10CM|Adverse effect of cardi-stim glycos/drug simlar act, init|Adverse effect of cardi-stim glycos/drug simlar act, init +C2879400|T037|PT|T46.0X5A|ICD10CM|Adverse effect of cardiac-stimulant glycosides and drugs of similar action, initial encounter|Adverse effect of cardiac-stimulant glycosides and drugs of similar action, initial encounter +C2879401|T037|AB|T46.0X5D|ICD10CM|Adverse effect of cardi-stim glycos/drug simlar act, subs|Adverse effect of cardi-stim glycos/drug simlar act, subs +C2879401|T037|PT|T46.0X5D|ICD10CM|Adverse effect of cardiac-stimulant glycosides and drugs of similar action, subsequent encounter|Adverse effect of cardiac-stimulant glycosides and drugs of similar action, subsequent encounter +C2879402|T037|AB|T46.0X5S|ICD10CM|Adverse effect of cardi-stim glycos/drug simlar act, sequela|Adverse effect of cardi-stim glycos/drug simlar act, sequela +C2879402|T037|PT|T46.0X5S|ICD10CM|Adverse effect of cardiac-stimulant glycosides and drugs of similar action, sequela|Adverse effect of cardiac-stimulant glycosides and drugs of similar action, sequela +C2879403|T037|AB|T46.0X6|ICD10CM|Underdosing of cardi-stim glycos/drug simlar act|Underdosing of cardi-stim glycos/drug simlar act +C2879403|T037|HT|T46.0X6|ICD10CM|Underdosing of cardiac-stimulant glycosides and drugs of similar action|Underdosing of cardiac-stimulant glycosides and drugs of similar action +C2879404|T037|AB|T46.0X6A|ICD10CM|Underdosing of cardi-stim glycos/drug simlar act, init|Underdosing of cardi-stim glycos/drug simlar act, init +C2879404|T037|PT|T46.0X6A|ICD10CM|Underdosing of cardiac-stimulant glycosides and drugs of similar action, initial encounter|Underdosing of cardiac-stimulant glycosides and drugs of similar action, initial encounter +C2879405|T037|AB|T46.0X6D|ICD10CM|Underdosing of cardi-stim glycos/drug simlar act, subs|Underdosing of cardi-stim glycos/drug simlar act, subs +C2879405|T037|PT|T46.0X6D|ICD10CM|Underdosing of cardiac-stimulant glycosides and drugs of similar action, subsequent encounter|Underdosing of cardiac-stimulant glycosides and drugs of similar action, subsequent encounter +C2879406|T037|AB|T46.0X6S|ICD10CM|Underdosing of cardi-stim glycos/drug simlar act, sequela|Underdosing of cardi-stim glycos/drug simlar act, sequela +C2879406|T037|PT|T46.0X6S|ICD10CM|Underdosing of cardiac-stimulant glycosides and drugs of similar action, sequela|Underdosing of cardiac-stimulant glycosides and drugs of similar action, sequela +C2879407|T037|AB|T46.1|ICD10CM|Calcium-channel blockers|Calcium-channel blockers +C0452117|T037|PS|T46.1|ICD10|Calcium-channel blockers|Calcium-channel blockers +C0452117|T037|PX|T46.1|ICD10|Poisoning by calcium-channel blockers|Poisoning by calcium-channel blockers +C2879407|T037|HT|T46.1|ICD10CM|Poisoning by, adverse effect of and underdosing of calcium-channel blockers|Poisoning by, adverse effect of and underdosing of calcium-channel blockers +C2879407|T037|AB|T46.1X|ICD10CM|Calcium-channel blockers|Calcium-channel blockers +C2879407|T037|HT|T46.1X|ICD10CM|Poisoning by, adverse effect of and underdosing of calcium-channel blockers|Poisoning by, adverse effect of and underdosing of calcium-channel blockers +C0452117|T037|ET|T46.1X1|ICD10CM|Poisoning by calcium-channel blockers NOS|Poisoning by calcium-channel blockers NOS +C0568640|T037|AB|T46.1X1|ICD10CM|Poisoning by calcium-channel blockers, accidental|Poisoning by calcium-channel blockers, accidental +C0568640|T037|HT|T46.1X1|ICD10CM|Poisoning by calcium-channel blockers, accidental (unintentional)|Poisoning by calcium-channel blockers, accidental (unintentional) +C2879409|T037|PT|T46.1X1A|ICD10CM|Poisoning by calcium-channel blockers, accidental (unintentional), initial encounter|Poisoning by calcium-channel blockers, accidental (unintentional), initial encounter +C2879409|T037|AB|T46.1X1A|ICD10CM|Poisoning by calcium-channel blockers, accidental, init|Poisoning by calcium-channel blockers, accidental, init +C2879410|T037|PT|T46.1X1D|ICD10CM|Poisoning by calcium-channel blockers, accidental (unintentional), subsequent encounter|Poisoning by calcium-channel blockers, accidental (unintentional), subsequent encounter +C2879410|T037|AB|T46.1X1D|ICD10CM|Poisoning by calcium-channel blockers, accidental, subs|Poisoning by calcium-channel blockers, accidental, subs +C2879411|T037|PT|T46.1X1S|ICD10CM|Poisoning by calcium-channel blockers, accidental (unintentional), sequela|Poisoning by calcium-channel blockers, accidental (unintentional), sequela +C2879411|T037|AB|T46.1X1S|ICD10CM|Poisoning by calcium-channel blockers, accidental, sequela|Poisoning by calcium-channel blockers, accidental, sequela +C2879412|T037|AB|T46.1X2|ICD10CM|Poisoning by calcium-channel blockers, intentional self-harm|Poisoning by calcium-channel blockers, intentional self-harm +C2879412|T037|HT|T46.1X2|ICD10CM|Poisoning by calcium-channel blockers, intentional self-harm|Poisoning by calcium-channel blockers, intentional self-harm +C2879413|T037|PT|T46.1X2A|ICD10CM|Poisoning by calcium-channel blockers, intentional self-harm, initial encounter|Poisoning by calcium-channel blockers, intentional self-harm, initial encounter +C2879413|T037|AB|T46.1X2A|ICD10CM|Poisoning by calcium-channel blockers, self-harm, init|Poisoning by calcium-channel blockers, self-harm, init +C2879414|T037|PT|T46.1X2D|ICD10CM|Poisoning by calcium-channel blockers, intentional self-harm, subsequent encounter|Poisoning by calcium-channel blockers, intentional self-harm, subsequent encounter +C2879414|T037|AB|T46.1X2D|ICD10CM|Poisoning by calcium-channel blockers, self-harm, subs|Poisoning by calcium-channel blockers, self-harm, subs +C2879415|T037|PT|T46.1X2S|ICD10CM|Poisoning by calcium-channel blockers, intentional self-harm, sequela|Poisoning by calcium-channel blockers, intentional self-harm, sequela +C2879415|T037|AB|T46.1X2S|ICD10CM|Poisoning by calcium-channel blockers, self-harm, sequela|Poisoning by calcium-channel blockers, self-harm, sequela +C2879416|T037|AB|T46.1X3|ICD10CM|Poisoning by calcium-channel blockers, assault|Poisoning by calcium-channel blockers, assault +C2879416|T037|HT|T46.1X3|ICD10CM|Poisoning by calcium-channel blockers, assault|Poisoning by calcium-channel blockers, assault +C2879417|T037|AB|T46.1X3A|ICD10CM|Poisoning by calcium-channel blockers, assault, init encntr|Poisoning by calcium-channel blockers, assault, init encntr +C2879417|T037|PT|T46.1X3A|ICD10CM|Poisoning by calcium-channel blockers, assault, initial encounter|Poisoning by calcium-channel blockers, assault, initial encounter +C2879418|T037|AB|T46.1X3D|ICD10CM|Poisoning by calcium-channel blockers, assault, subs encntr|Poisoning by calcium-channel blockers, assault, subs encntr +C2879418|T037|PT|T46.1X3D|ICD10CM|Poisoning by calcium-channel blockers, assault, subsequent encounter|Poisoning by calcium-channel blockers, assault, subsequent encounter +C2879419|T037|AB|T46.1X3S|ICD10CM|Poisoning by calcium-channel blockers, assault, sequela|Poisoning by calcium-channel blockers, assault, sequela +C2879419|T037|PT|T46.1X3S|ICD10CM|Poisoning by calcium-channel blockers, assault, sequela|Poisoning by calcium-channel blockers, assault, sequela +C2879420|T037|AB|T46.1X4|ICD10CM|Poisoning by calcium-channel blockers, undetermined|Poisoning by calcium-channel blockers, undetermined +C2879420|T037|HT|T46.1X4|ICD10CM|Poisoning by calcium-channel blockers, undetermined|Poisoning by calcium-channel blockers, undetermined +C2879421|T037|AB|T46.1X4A|ICD10CM|Poisoning by calcium-channel blockers, undetermined, init|Poisoning by calcium-channel blockers, undetermined, init +C2879421|T037|PT|T46.1X4A|ICD10CM|Poisoning by calcium-channel blockers, undetermined, initial encounter|Poisoning by calcium-channel blockers, undetermined, initial encounter +C2879422|T037|AB|T46.1X4D|ICD10CM|Poisoning by calcium-channel blockers, undetermined, subs|Poisoning by calcium-channel blockers, undetermined, subs +C2879422|T037|PT|T46.1X4D|ICD10CM|Poisoning by calcium-channel blockers, undetermined, subsequent encounter|Poisoning by calcium-channel blockers, undetermined, subsequent encounter +C2879423|T037|AB|T46.1X4S|ICD10CM|Poisoning by calcium-channel blockers, undetermined, sequela|Poisoning by calcium-channel blockers, undetermined, sequela +C2879423|T037|PT|T46.1X4S|ICD10CM|Poisoning by calcium-channel blockers, undetermined, sequela|Poisoning by calcium-channel blockers, undetermined, sequela +C2879424|T037|AB|T46.1X5|ICD10CM|Adverse effect of calcium-channel blockers|Adverse effect of calcium-channel blockers +C2879424|T037|HT|T46.1X5|ICD10CM|Adverse effect of calcium-channel blockers|Adverse effect of calcium-channel blockers +C2879425|T037|AB|T46.1X5A|ICD10CM|Adverse effect of calcium-channel blockers, init encntr|Adverse effect of calcium-channel blockers, init encntr +C2879425|T037|PT|T46.1X5A|ICD10CM|Adverse effect of calcium-channel blockers, initial encounter|Adverse effect of calcium-channel blockers, initial encounter +C2879426|T037|AB|T46.1X5D|ICD10CM|Adverse effect of calcium-channel blockers, subs encntr|Adverse effect of calcium-channel blockers, subs encntr +C2879426|T037|PT|T46.1X5D|ICD10CM|Adverse effect of calcium-channel blockers, subsequent encounter|Adverse effect of calcium-channel blockers, subsequent encounter +C2879427|T037|AB|T46.1X5S|ICD10CM|Adverse effect of calcium-channel blockers, sequela|Adverse effect of calcium-channel blockers, sequela +C2879427|T037|PT|T46.1X5S|ICD10CM|Adverse effect of calcium-channel blockers, sequela|Adverse effect of calcium-channel blockers, sequela +C2879428|T033|AB|T46.1X6|ICD10CM|Underdosing of calcium-channel blockers|Underdosing of calcium-channel blockers +C2879428|T033|HT|T46.1X6|ICD10CM|Underdosing of calcium-channel blockers|Underdosing of calcium-channel blockers +C2879429|T037|AB|T46.1X6A|ICD10CM|Underdosing of calcium-channel blockers, initial encounter|Underdosing of calcium-channel blockers, initial encounter +C2879429|T037|PT|T46.1X6A|ICD10CM|Underdosing of calcium-channel blockers, initial encounter|Underdosing of calcium-channel blockers, initial encounter +C2879430|T037|AB|T46.1X6D|ICD10CM|Underdosing of calcium-channel blockers, subs encntr|Underdosing of calcium-channel blockers, subs encntr +C2879430|T037|PT|T46.1X6D|ICD10CM|Underdosing of calcium-channel blockers, subsequent encounter|Underdosing of calcium-channel blockers, subsequent encounter +C2879431|T037|AB|T46.1X6S|ICD10CM|Underdosing of calcium-channel blockers, sequela|Underdosing of calcium-channel blockers, sequela +C2879431|T037|PT|T46.1X6S|ICD10CM|Underdosing of calcium-channel blockers, sequela|Underdosing of calcium-channel blockers, sequela +C2879432|T037|AB|T46.2|ICD10CM|Antidysrhythmic drugs, not elsewhere classified|Antidysrhythmic drugs, not elsewhere classified +C0869093|T037|PS|T46.2|ICD10|Other antidysrhythmic drugs, not elsewhere classified|Other antidysrhythmic drugs, not elsewhere classified +C0869093|T037|PX|T46.2|ICD10|Poisoning by other antidysrhythmic drugs, not elsewhere classified|Poisoning by other antidysrhythmic drugs, not elsewhere classified +C2879433|T037|AB|T46.2X|ICD10CM|Antidysrhythmic drugs|Antidysrhythmic drugs +C2879433|T037|HT|T46.2X|ICD10CM|Poisoning by, adverse effect of and underdosing of other antidysrhythmic drugs|Poisoning by, adverse effect of and underdosing of other antidysrhythmic drugs +C2879435|T037|AB|T46.2X1|ICD10CM|Poisoning by oth antidysrhythmic drugs, accidental|Poisoning by oth antidysrhythmic drugs, accidental +C2879434|T037|ET|T46.2X1|ICD10CM|Poisoning by other antidysrhythmic drugs NOS|Poisoning by other antidysrhythmic drugs NOS +C2879435|T037|HT|T46.2X1|ICD10CM|Poisoning by other antidysrhythmic drugs, accidental (unintentional)|Poisoning by other antidysrhythmic drugs, accidental (unintentional) +C2879436|T037|AB|T46.2X1A|ICD10CM|Poisoning by oth antidysrhythmic drugs, accidental, init|Poisoning by oth antidysrhythmic drugs, accidental, init +C2879436|T037|PT|T46.2X1A|ICD10CM|Poisoning by other antidysrhythmic drugs, accidental (unintentional), initial encounter|Poisoning by other antidysrhythmic drugs, accidental (unintentional), initial encounter +C2879437|T037|AB|T46.2X1D|ICD10CM|Poisoning by oth antidysrhythmic drugs, accidental, subs|Poisoning by oth antidysrhythmic drugs, accidental, subs +C2879437|T037|PT|T46.2X1D|ICD10CM|Poisoning by other antidysrhythmic drugs, accidental (unintentional), subsequent encounter|Poisoning by other antidysrhythmic drugs, accidental (unintentional), subsequent encounter +C2879438|T037|AB|T46.2X1S|ICD10CM|Poisoning by oth antidysrhythmic drugs, accidental, sequela|Poisoning by oth antidysrhythmic drugs, accidental, sequela +C2879438|T037|PT|T46.2X1S|ICD10CM|Poisoning by other antidysrhythmic drugs, accidental (unintentional), sequela|Poisoning by other antidysrhythmic drugs, accidental (unintentional), sequela +C2879439|T037|AB|T46.2X2|ICD10CM|Poisoning by oth antidysrhythmic drugs, self-harm|Poisoning by oth antidysrhythmic drugs, self-harm +C2879439|T037|HT|T46.2X2|ICD10CM|Poisoning by other antidysrhythmic drugs, intentional self-harm|Poisoning by other antidysrhythmic drugs, intentional self-harm +C2879440|T037|AB|T46.2X2A|ICD10CM|Poisoning by oth antidysrhythmic drugs, self-harm, init|Poisoning by oth antidysrhythmic drugs, self-harm, init +C2879440|T037|PT|T46.2X2A|ICD10CM|Poisoning by other antidysrhythmic drugs, intentional self-harm, initial encounter|Poisoning by other antidysrhythmic drugs, intentional self-harm, initial encounter +C2879441|T037|AB|T46.2X2D|ICD10CM|Poisoning by oth antidysrhythmic drugs, self-harm, subs|Poisoning by oth antidysrhythmic drugs, self-harm, subs +C2879441|T037|PT|T46.2X2D|ICD10CM|Poisoning by other antidysrhythmic drugs, intentional self-harm, subsequent encounter|Poisoning by other antidysrhythmic drugs, intentional self-harm, subsequent encounter +C2879442|T037|AB|T46.2X2S|ICD10CM|Poisoning by oth antidysrhythmic drugs, self-harm, sequela|Poisoning by oth antidysrhythmic drugs, self-harm, sequela +C2879442|T037|PT|T46.2X2S|ICD10CM|Poisoning by other antidysrhythmic drugs, intentional self-harm, sequela|Poisoning by other antidysrhythmic drugs, intentional self-harm, sequela +C2879443|T037|AB|T46.2X3|ICD10CM|Poisoning by other antidysrhythmic drugs, assault|Poisoning by other antidysrhythmic drugs, assault +C2879443|T037|HT|T46.2X3|ICD10CM|Poisoning by other antidysrhythmic drugs, assault|Poisoning by other antidysrhythmic drugs, assault +C2879444|T037|AB|T46.2X3A|ICD10CM|Poisoning by oth antidysrhythmic drugs, assault, init encntr|Poisoning by oth antidysrhythmic drugs, assault, init encntr +C2879444|T037|PT|T46.2X3A|ICD10CM|Poisoning by other antidysrhythmic drugs, assault, initial encounter|Poisoning by other antidysrhythmic drugs, assault, initial encounter +C2879445|T037|AB|T46.2X3D|ICD10CM|Poisoning by oth antidysrhythmic drugs, assault, subs encntr|Poisoning by oth antidysrhythmic drugs, assault, subs encntr +C2879445|T037|PT|T46.2X3D|ICD10CM|Poisoning by other antidysrhythmic drugs, assault, subsequent encounter|Poisoning by other antidysrhythmic drugs, assault, subsequent encounter +C2879446|T037|AB|T46.2X3S|ICD10CM|Poisoning by other antidysrhythmic drugs, assault, sequela|Poisoning by other antidysrhythmic drugs, assault, sequela +C2879446|T037|PT|T46.2X3S|ICD10CM|Poisoning by other antidysrhythmic drugs, assault, sequela|Poisoning by other antidysrhythmic drugs, assault, sequela +C2879447|T037|AB|T46.2X4|ICD10CM|Poisoning by other antidysrhythmic drugs, undetermined|Poisoning by other antidysrhythmic drugs, undetermined +C2879447|T037|HT|T46.2X4|ICD10CM|Poisoning by other antidysrhythmic drugs, undetermined|Poisoning by other antidysrhythmic drugs, undetermined +C2879448|T037|AB|T46.2X4A|ICD10CM|Poisoning by oth antidysrhythmic drugs, undetermined, init|Poisoning by oth antidysrhythmic drugs, undetermined, init +C2879448|T037|PT|T46.2X4A|ICD10CM|Poisoning by other antidysrhythmic drugs, undetermined, initial encounter|Poisoning by other antidysrhythmic drugs, undetermined, initial encounter +C2879449|T037|AB|T46.2X4D|ICD10CM|Poisoning by oth antidysrhythmic drugs, undetermined, subs|Poisoning by oth antidysrhythmic drugs, undetermined, subs +C2879449|T037|PT|T46.2X4D|ICD10CM|Poisoning by other antidysrhythmic drugs, undetermined, subsequent encounter|Poisoning by other antidysrhythmic drugs, undetermined, subsequent encounter +C2879450|T037|AB|T46.2X4S|ICD10CM|Poisoning by oth antidysrhy drugs, undetermined, sequela|Poisoning by oth antidysrhy drugs, undetermined, sequela +C2879450|T037|PT|T46.2X4S|ICD10CM|Poisoning by other antidysrhythmic drugs, undetermined, sequela|Poisoning by other antidysrhythmic drugs, undetermined, sequela +C2879451|T037|AB|T46.2X5|ICD10CM|Adverse effect of other antidysrhythmic drugs|Adverse effect of other antidysrhythmic drugs +C2879451|T037|HT|T46.2X5|ICD10CM|Adverse effect of other antidysrhythmic drugs|Adverse effect of other antidysrhythmic drugs +C2879452|T037|AB|T46.2X5A|ICD10CM|Adverse effect of other antidysrhythmic drugs, init encntr|Adverse effect of other antidysrhythmic drugs, init encntr +C2879452|T037|PT|T46.2X5A|ICD10CM|Adverse effect of other antidysrhythmic drugs, initial encounter|Adverse effect of other antidysrhythmic drugs, initial encounter +C2879453|T037|AB|T46.2X5D|ICD10CM|Adverse effect of other antidysrhythmic drugs, subs encntr|Adverse effect of other antidysrhythmic drugs, subs encntr +C2879453|T037|PT|T46.2X5D|ICD10CM|Adverse effect of other antidysrhythmic drugs, subsequent encounter|Adverse effect of other antidysrhythmic drugs, subsequent encounter +C2879454|T037|AB|T46.2X5S|ICD10CM|Adverse effect of other antidysrhythmic drugs, sequela|Adverse effect of other antidysrhythmic drugs, sequela +C2879454|T037|PT|T46.2X5S|ICD10CM|Adverse effect of other antidysrhythmic drugs, sequela|Adverse effect of other antidysrhythmic drugs, sequela +C2879455|T037|AB|T46.2X6|ICD10CM|Underdosing of other antidysrhythmic drugs|Underdosing of other antidysrhythmic drugs +C2879455|T037|HT|T46.2X6|ICD10CM|Underdosing of other antidysrhythmic drugs|Underdosing of other antidysrhythmic drugs +C2879456|T037|AB|T46.2X6A|ICD10CM|Underdosing of other antidysrhythmic drugs, init encntr|Underdosing of other antidysrhythmic drugs, init encntr +C2879456|T037|PT|T46.2X6A|ICD10CM|Underdosing of other antidysrhythmic drugs, initial encounter|Underdosing of other antidysrhythmic drugs, initial encounter +C2879457|T037|AB|T46.2X6D|ICD10CM|Underdosing of other antidysrhythmic drugs, subs encntr|Underdosing of other antidysrhythmic drugs, subs encntr +C2879457|T037|PT|T46.2X6D|ICD10CM|Underdosing of other antidysrhythmic drugs, subsequent encounter|Underdosing of other antidysrhythmic drugs, subsequent encounter +C2879458|T037|AB|T46.2X6S|ICD10CM|Underdosing of other antidysrhythmic drugs, sequela|Underdosing of other antidysrhythmic drugs, sequela +C2879458|T037|PT|T46.2X6S|ICD10CM|Underdosing of other antidysrhythmic drugs, sequela|Underdosing of other antidysrhythmic drugs, sequela +C2879460|T037|AB|T46.3|ICD10CM|Coronary vasodilators|Coronary vasodilators +C0496992|T037|PS|T46.3|ICD10|Coronary vasodilators, not elsewhere classified|Coronary vasodilators, not elsewhere classified +C0496992|T037|PX|T46.3|ICD10|Poisoning by coronary vasodilators, not elsewhere classified|Poisoning by coronary vasodilators, not elsewhere classified +C2879460|T037|HT|T46.3|ICD10CM|Poisoning by, adverse effect of and underdosing of coronary vasodilators|Poisoning by, adverse effect of and underdosing of coronary vasodilators +C2879459|T037|ET|T46.3|ICD10CM|Poisoning by, adverse effect of and underdosing of dipyridamole|Poisoning by, adverse effect of and underdosing of dipyridamole +C2879460|T037|AB|T46.3X|ICD10CM|Coronary vasodilators|Coronary vasodilators +C2879460|T037|HT|T46.3X|ICD10CM|Poisoning by, adverse effect of and underdosing of coronary vasodilators|Poisoning by, adverse effect of and underdosing of coronary vasodilators +C0161604|T037|ET|T46.3X1|ICD10CM|Poisoning by coronary vasodilators NOS|Poisoning by coronary vasodilators NOS +C3507239|T037|AB|T46.3X1|ICD10CM|Poisoning by coronary vasodilators, accidental|Poisoning by coronary vasodilators, accidental +C3507239|T037|HT|T46.3X1|ICD10CM|Poisoning by coronary vasodilators, accidental (unintentional)|Poisoning by coronary vasodilators, accidental (unintentional) +C2879462|T037|PT|T46.3X1A|ICD10CM|Poisoning by coronary vasodilators, accidental (unintentional), initial encounter|Poisoning by coronary vasodilators, accidental (unintentional), initial encounter +C2879462|T037|AB|T46.3X1A|ICD10CM|Poisoning by coronary vasodilators, accidental, init|Poisoning by coronary vasodilators, accidental, init +C2879463|T037|PT|T46.3X1D|ICD10CM|Poisoning by coronary vasodilators, accidental (unintentional), subsequent encounter|Poisoning by coronary vasodilators, accidental (unintentional), subsequent encounter +C2879463|T037|AB|T46.3X1D|ICD10CM|Poisoning by coronary vasodilators, accidental, subs|Poisoning by coronary vasodilators, accidental, subs +C2879464|T037|PT|T46.3X1S|ICD10CM|Poisoning by coronary vasodilators, accidental (unintentional), sequela|Poisoning by coronary vasodilators, accidental (unintentional), sequela +C2879464|T037|AB|T46.3X1S|ICD10CM|Poisoning by coronary vasodilators, accidental, sequela|Poisoning by coronary vasodilators, accidental, sequela +C2879465|T037|AB|T46.3X2|ICD10CM|Poisoning by coronary vasodilators, intentional self-harm|Poisoning by coronary vasodilators, intentional self-harm +C2879465|T037|HT|T46.3X2|ICD10CM|Poisoning by coronary vasodilators, intentional self-harm|Poisoning by coronary vasodilators, intentional self-harm +C2879466|T037|PT|T46.3X2A|ICD10CM|Poisoning by coronary vasodilators, intentional self-harm, initial encounter|Poisoning by coronary vasodilators, intentional self-harm, initial encounter +C2879466|T037|AB|T46.3X2A|ICD10CM|Poisoning by coronary vasodilators, self-harm, init|Poisoning by coronary vasodilators, self-harm, init +C2879467|T037|PT|T46.3X2D|ICD10CM|Poisoning by coronary vasodilators, intentional self-harm, subsequent encounter|Poisoning by coronary vasodilators, intentional self-harm, subsequent encounter +C2879467|T037|AB|T46.3X2D|ICD10CM|Poisoning by coronary vasodilators, self-harm, subs|Poisoning by coronary vasodilators, self-harm, subs +C2879468|T037|PT|T46.3X2S|ICD10CM|Poisoning by coronary vasodilators, intentional self-harm, sequela|Poisoning by coronary vasodilators, intentional self-harm, sequela +C2879468|T037|AB|T46.3X2S|ICD10CM|Poisoning by coronary vasodilators, self-harm, sequela|Poisoning by coronary vasodilators, self-harm, sequela +C2879469|T037|AB|T46.3X3|ICD10CM|Poisoning by coronary vasodilators, assault|Poisoning by coronary vasodilators, assault +C2879469|T037|HT|T46.3X3|ICD10CM|Poisoning by coronary vasodilators, assault|Poisoning by coronary vasodilators, assault +C2879470|T037|AB|T46.3X3A|ICD10CM|Poisoning by coronary vasodilators, assault, init encntr|Poisoning by coronary vasodilators, assault, init encntr +C2879470|T037|PT|T46.3X3A|ICD10CM|Poisoning by coronary vasodilators, assault, initial encounter|Poisoning by coronary vasodilators, assault, initial encounter +C2879471|T037|AB|T46.3X3D|ICD10CM|Poisoning by coronary vasodilators, assault, subs encntr|Poisoning by coronary vasodilators, assault, subs encntr +C2879471|T037|PT|T46.3X3D|ICD10CM|Poisoning by coronary vasodilators, assault, subsequent encounter|Poisoning by coronary vasodilators, assault, subsequent encounter +C2879472|T037|AB|T46.3X3S|ICD10CM|Poisoning by coronary vasodilators, assault, sequela|Poisoning by coronary vasodilators, assault, sequela +C2879472|T037|PT|T46.3X3S|ICD10CM|Poisoning by coronary vasodilators, assault, sequela|Poisoning by coronary vasodilators, assault, sequela +C2879473|T037|AB|T46.3X4|ICD10CM|Poisoning by coronary vasodilators, undetermined|Poisoning by coronary vasodilators, undetermined +C2879473|T037|HT|T46.3X4|ICD10CM|Poisoning by coronary vasodilators, undetermined|Poisoning by coronary vasodilators, undetermined +C2879474|T037|AB|T46.3X4A|ICD10CM|Poisoning by coronary vasodilators, undetermined, init|Poisoning by coronary vasodilators, undetermined, init +C2879474|T037|PT|T46.3X4A|ICD10CM|Poisoning by coronary vasodilators, undetermined, initial encounter|Poisoning by coronary vasodilators, undetermined, initial encounter +C2879475|T037|AB|T46.3X4D|ICD10CM|Poisoning by coronary vasodilators, undetermined, subs|Poisoning by coronary vasodilators, undetermined, subs +C2879475|T037|PT|T46.3X4D|ICD10CM|Poisoning by coronary vasodilators, undetermined, subsequent encounter|Poisoning by coronary vasodilators, undetermined, subsequent encounter +C2879476|T037|AB|T46.3X4S|ICD10CM|Poisoning by coronary vasodilators, undetermined, sequela|Poisoning by coronary vasodilators, undetermined, sequela +C2879476|T037|PT|T46.3X4S|ICD10CM|Poisoning by coronary vasodilators, undetermined, sequela|Poisoning by coronary vasodilators, undetermined, sequela +C2879477|T037|AB|T46.3X5|ICD10CM|Adverse effect of coronary vasodilators|Adverse effect of coronary vasodilators +C2879477|T037|HT|T46.3X5|ICD10CM|Adverse effect of coronary vasodilators|Adverse effect of coronary vasodilators +C2879478|T037|AB|T46.3X5A|ICD10CM|Adverse effect of coronary vasodilators, initial encounter|Adverse effect of coronary vasodilators, initial encounter +C2879478|T037|PT|T46.3X5A|ICD10CM|Adverse effect of coronary vasodilators, initial encounter|Adverse effect of coronary vasodilators, initial encounter +C2879479|T037|AB|T46.3X5D|ICD10CM|Adverse effect of coronary vasodilators, subs encntr|Adverse effect of coronary vasodilators, subs encntr +C2879479|T037|PT|T46.3X5D|ICD10CM|Adverse effect of coronary vasodilators, subsequent encounter|Adverse effect of coronary vasodilators, subsequent encounter +C2879480|T037|AB|T46.3X5S|ICD10CM|Adverse effect of coronary vasodilators, sequela|Adverse effect of coronary vasodilators, sequela +C2879480|T037|PT|T46.3X5S|ICD10CM|Adverse effect of coronary vasodilators, sequela|Adverse effect of coronary vasodilators, sequela +C2879481|T033|HT|T46.3X6|ICD10CM|Underdosing of coronary vasodilators|Underdosing of coronary vasodilators +C2879481|T033|AB|T46.3X6|ICD10CM|Underdosing of coronary vasodilators|Underdosing of coronary vasodilators +C2879482|T037|AB|T46.3X6A|ICD10CM|Underdosing of coronary vasodilators, initial encounter|Underdosing of coronary vasodilators, initial encounter +C2879482|T037|PT|T46.3X6A|ICD10CM|Underdosing of coronary vasodilators, initial encounter|Underdosing of coronary vasodilators, initial encounter +C2879483|T037|AB|T46.3X6D|ICD10CM|Underdosing of coronary vasodilators, subsequent encounter|Underdosing of coronary vasodilators, subsequent encounter +C2879483|T037|PT|T46.3X6D|ICD10CM|Underdosing of coronary vasodilators, subsequent encounter|Underdosing of coronary vasodilators, subsequent encounter +C2879484|T037|AB|T46.3X6S|ICD10CM|Underdosing of coronary vasodilators, sequela|Underdosing of coronary vasodilators, sequela +C2879484|T037|PT|T46.3X6S|ICD10CM|Underdosing of coronary vasodilators, sequela|Underdosing of coronary vasodilators, sequela +C2879485|T037|AB|T46.4|ICD10CM|Angiotensin-converting-enzyme inhibitors|Angiotensin-converting-enzyme inhibitors +C0452116|T037|PS|T46.4|ICD10|Angiotensin-converting-enzyme inhibitors|Angiotensin-converting-enzyme inhibitors +C0452116|T037|PX|T46.4|ICD10|Poisoning by angiotensin-converting-enzyme inhibitors|Poisoning by angiotensin-converting-enzyme inhibitors +C2879485|T037|HT|T46.4|ICD10CM|Poisoning by, adverse effect of and underdosing of angiotensin-converting-enzyme inhibitors|Poisoning by, adverse effect of and underdosing of angiotensin-converting-enzyme inhibitors +C2879485|T037|AB|T46.4X|ICD10CM|Angiotensin-converting-enzyme inhibitors|Angiotensin-converting-enzyme inhibitors +C2879485|T037|HT|T46.4X|ICD10CM|Poisoning by, adverse effect of and underdosing of angiotensin-converting-enzyme inhibitors|Poisoning by, adverse effect of and underdosing of angiotensin-converting-enzyme inhibitors +C2879486|T037|AB|T46.4X1|ICD10CM|Poisoning by angiotens-convert-enzyme inhibitors, acc|Poisoning by angiotens-convert-enzyme inhibitors, acc +C0452116|T037|ET|T46.4X1|ICD10CM|Poisoning by angiotensin-converting-enzyme inhibitors NOS|Poisoning by angiotensin-converting-enzyme inhibitors NOS +C2879486|T037|HT|T46.4X1|ICD10CM|Poisoning by angiotensin-converting-enzyme inhibitors, accidental (unintentional)|Poisoning by angiotensin-converting-enzyme inhibitors, accidental (unintentional) +C2879487|T037|AB|T46.4X1A|ICD10CM|Poisoning by angiotens-convert-enzyme inhibitors, acc, init|Poisoning by angiotens-convert-enzyme inhibitors, acc, init +C2879487|T037|PT|T46.4X1A|ICD10CM|Poisoning by angiotensin-converting-enzyme inhibitors, accidental (unintentional), initial encounter|Poisoning by angiotensin-converting-enzyme inhibitors, accidental (unintentional), initial encounter +C2879488|T037|AB|T46.4X1D|ICD10CM|Poisoning by angiotens-convert-enzyme inhibitors, acc, subs|Poisoning by angiotens-convert-enzyme inhibitors, acc, subs +C2879489|T037|AB|T46.4X1S|ICD10CM|Poisoning by angiotens-convert-enzyme inhibtr, acc, sequela|Poisoning by angiotens-convert-enzyme inhibtr, acc, sequela +C2879489|T037|PT|T46.4X1S|ICD10CM|Poisoning by angiotensin-converting-enzyme inhibitors, accidental (unintentional), sequela|Poisoning by angiotensin-converting-enzyme inhibitors, accidental (unintentional), sequela +C2879490|T037|AB|T46.4X2|ICD10CM|Poisoning by angiotens-convert-enzyme inhibitors, self-harm|Poisoning by angiotens-convert-enzyme inhibitors, self-harm +C2879490|T037|HT|T46.4X2|ICD10CM|Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm|Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm +C2879491|T037|AB|T46.4X2A|ICD10CM|Poisn by angiotens-convert-enzyme inhibtr, self-harm, init|Poisn by angiotens-convert-enzyme inhibtr, self-harm, init +C2879491|T037|PT|T46.4X2A|ICD10CM|Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm, initial encounter|Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm, initial encounter +C2879492|T037|AB|T46.4X2D|ICD10CM|Poisn by angiotens-convert-enzyme inhibtr, self-harm, subs|Poisn by angiotens-convert-enzyme inhibtr, self-harm, subs +C2879492|T037|PT|T46.4X2D|ICD10CM|Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm, subsequent encounter|Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm, subsequent encounter +C2879493|T037|AB|T46.4X2S|ICD10CM|Poisn by angiotens-convert-enzyme inhibtr, slf-hrm, sequela|Poisn by angiotens-convert-enzyme inhibtr, slf-hrm, sequela +C2879493|T037|PT|T46.4X2S|ICD10CM|Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm, sequela|Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm, sequela +C2879494|T037|AB|T46.4X3|ICD10CM|Poisoning by angiotens-convert-enzyme inhibitors, assault|Poisoning by angiotens-convert-enzyme inhibitors, assault +C2879494|T037|HT|T46.4X3|ICD10CM|Poisoning by angiotensin-converting-enzyme inhibitors, assault|Poisoning by angiotensin-converting-enzyme inhibitors, assault +C2879495|T037|AB|T46.4X3A|ICD10CM|Poisoning by angiotens-convert-enzyme inhibtr, assault, init|Poisoning by angiotens-convert-enzyme inhibtr, assault, init +C2879495|T037|PT|T46.4X3A|ICD10CM|Poisoning by angiotensin-converting-enzyme inhibitors, assault, initial encounter|Poisoning by angiotensin-converting-enzyme inhibitors, assault, initial encounter +C2879496|T037|AB|T46.4X3D|ICD10CM|Poisoning by angiotens-convert-enzyme inhibtr, assault, subs|Poisoning by angiotens-convert-enzyme inhibtr, assault, subs +C2879496|T037|PT|T46.4X3D|ICD10CM|Poisoning by angiotensin-converting-enzyme inhibitors, assault, subsequent encounter|Poisoning by angiotensin-converting-enzyme inhibitors, assault, subsequent encounter +C2879497|T037|AB|T46.4X3S|ICD10CM|Poisn by angiotens-convert-enzyme inhibtr, assault, sequela|Poisn by angiotens-convert-enzyme inhibtr, assault, sequela +C2879497|T037|PT|T46.4X3S|ICD10CM|Poisoning by angiotensin-converting-enzyme inhibitors, assault, sequela|Poisoning by angiotensin-converting-enzyme inhibitors, assault, sequela +C2879498|T037|AB|T46.4X4|ICD10CM|Poisoning by angiotens-convert-enzyme inhibitors, undet|Poisoning by angiotens-convert-enzyme inhibitors, undet +C2879498|T037|HT|T46.4X4|ICD10CM|Poisoning by angiotensin-converting-enzyme inhibitors, undetermined|Poisoning by angiotensin-converting-enzyme inhibitors, undetermined +C2879499|T037|AB|T46.4X4A|ICD10CM|Poisoning by angiotens-convert-enzyme inhibtr, undet, init|Poisoning by angiotens-convert-enzyme inhibtr, undet, init +C2879499|T037|PT|T46.4X4A|ICD10CM|Poisoning by angiotensin-converting-enzyme inhibitors, undetermined, initial encounter|Poisoning by angiotensin-converting-enzyme inhibitors, undetermined, initial encounter +C2879500|T037|AB|T46.4X4D|ICD10CM|Poisoning by angiotens-convert-enzyme inhibtr, undet, subs|Poisoning by angiotens-convert-enzyme inhibtr, undet, subs +C2879500|T037|PT|T46.4X4D|ICD10CM|Poisoning by angiotensin-converting-enzyme inhibitors, undetermined, subsequent encounter|Poisoning by angiotensin-converting-enzyme inhibitors, undetermined, subsequent encounter +C2879501|T037|AB|T46.4X4S|ICD10CM|Poisn by angiotens-convert-enzyme inhibtr, undet, sequela|Poisn by angiotens-convert-enzyme inhibtr, undet, sequela +C2879501|T037|PT|T46.4X4S|ICD10CM|Poisoning by angiotensin-converting-enzyme inhibitors, undetermined, sequela|Poisoning by angiotensin-converting-enzyme inhibitors, undetermined, sequela +C2879502|T037|AB|T46.4X5|ICD10CM|Adverse effect of angiotensin-converting-enzyme inhibitors|Adverse effect of angiotensin-converting-enzyme inhibitors +C2879502|T037|HT|T46.4X5|ICD10CM|Adverse effect of angiotensin-converting-enzyme inhibitors|Adverse effect of angiotensin-converting-enzyme inhibitors +C2879503|T037|AB|T46.4X5A|ICD10CM|Adverse effect of angiotens-convert-enzyme inhibitors, init|Adverse effect of angiotens-convert-enzyme inhibitors, init +C2879503|T037|PT|T46.4X5A|ICD10CM|Adverse effect of angiotensin-converting-enzyme inhibitors, initial encounter|Adverse effect of angiotensin-converting-enzyme inhibitors, initial encounter +C2879504|T037|AB|T46.4X5D|ICD10CM|Adverse effect of angiotens-convert-enzyme inhibitors, subs|Adverse effect of angiotens-convert-enzyme inhibitors, subs +C2879504|T037|PT|T46.4X5D|ICD10CM|Adverse effect of angiotensin-converting-enzyme inhibitors, subsequent encounter|Adverse effect of angiotensin-converting-enzyme inhibitors, subsequent encounter +C2879505|T037|AB|T46.4X5S|ICD10CM|Adverse effect of angiotens-convert-enzyme inhibtr, sequela|Adverse effect of angiotens-convert-enzyme inhibtr, sequela +C2879505|T037|PT|T46.4X5S|ICD10CM|Adverse effect of angiotensin-converting-enzyme inhibitors, sequela|Adverse effect of angiotensin-converting-enzyme inhibitors, sequela +C2879506|T037|AB|T46.4X6|ICD10CM|Underdosing of angiotensin-converting-enzyme inhibitors|Underdosing of angiotensin-converting-enzyme inhibitors +C2879506|T037|HT|T46.4X6|ICD10CM|Underdosing of angiotensin-converting-enzyme inhibitors|Underdosing of angiotensin-converting-enzyme inhibitors +C2879507|T037|AB|T46.4X6A|ICD10CM|Underdosing of angiotens-convert-enzyme inhibitors, init|Underdosing of angiotens-convert-enzyme inhibitors, init +C2879507|T037|PT|T46.4X6A|ICD10CM|Underdosing of angiotensin-converting-enzyme inhibitors, initial encounter|Underdosing of angiotensin-converting-enzyme inhibitors, initial encounter +C2879508|T037|AB|T46.4X6D|ICD10CM|Underdosing of angiotens-convert-enzyme inhibitors, subs|Underdosing of angiotens-convert-enzyme inhibitors, subs +C2879508|T037|PT|T46.4X6D|ICD10CM|Underdosing of angiotensin-converting-enzyme inhibitors, subsequent encounter|Underdosing of angiotensin-converting-enzyme inhibitors, subsequent encounter +C2879509|T037|AB|T46.4X6S|ICD10CM|Underdosing of angiotens-convert-enzyme inhibitors, sequela|Underdosing of angiotens-convert-enzyme inhibitors, sequela +C2879509|T037|PT|T46.4X6S|ICD10CM|Underdosing of angiotensin-converting-enzyme inhibitors, sequela|Underdosing of angiotensin-converting-enzyme inhibitors, sequela +C2879510|T037|AB|T46.5|ICD10CM|Antihypertensive drugs|Antihypertensive drugs +C0869094|T037|PS|T46.5|ICD10|Other antihypertensive drugs, not elsewhere classified|Other antihypertensive drugs, not elsewhere classified +C0869094|T037|PX|T46.5|ICD10|Poisoning by other antihypertensive drugs, not elsewhere classified|Poisoning by other antihypertensive drugs, not elsewhere classified +C2879510|T037|HT|T46.5|ICD10CM|Poisoning by, adverse effect of and underdosing of other antihypertensive drugs|Poisoning by, adverse effect of and underdosing of other antihypertensive drugs +C2879510|T037|AB|T46.5X|ICD10CM|Antihypertensive drugs|Antihypertensive drugs +C2879510|T037|HT|T46.5X|ICD10CM|Poisoning by, adverse effect of and underdosing of other antihypertensive drugs|Poisoning by, adverse effect of and underdosing of other antihypertensive drugs +C2879512|T037|AB|T46.5X1|ICD10CM|Poisoning by oth antihypertn drugs, accidental|Poisoning by oth antihypertn drugs, accidental +C2879511|T037|ET|T46.5X1|ICD10CM|Poisoning by other antihypertensive drugs NOS|Poisoning by other antihypertensive drugs NOS +C2879512|T037|HT|T46.5X1|ICD10CM|Poisoning by other antihypertensive drugs, accidental (unintentional)|Poisoning by other antihypertensive drugs, accidental (unintentional) +C2879513|T037|AB|T46.5X1A|ICD10CM|Poisoning by oth antihypertn drugs, accidental, init|Poisoning by oth antihypertn drugs, accidental, init +C2879513|T037|PT|T46.5X1A|ICD10CM|Poisoning by other antihypertensive drugs, accidental (unintentional), initial encounter|Poisoning by other antihypertensive drugs, accidental (unintentional), initial encounter +C2879514|T037|AB|T46.5X1D|ICD10CM|Poisoning by oth antihypertn drugs, accidental, subs|Poisoning by oth antihypertn drugs, accidental, subs +C2879514|T037|PT|T46.5X1D|ICD10CM|Poisoning by other antihypertensive drugs, accidental (unintentional), subsequent encounter|Poisoning by other antihypertensive drugs, accidental (unintentional), subsequent encounter +C2879515|T037|AB|T46.5X1S|ICD10CM|Poisoning by oth antihypertn drugs, accidental, sequela|Poisoning by oth antihypertn drugs, accidental, sequela +C2879515|T037|PT|T46.5X1S|ICD10CM|Poisoning by other antihypertensive drugs, accidental (unintentional), sequela|Poisoning by other antihypertensive drugs, accidental (unintentional), sequela +C2879516|T037|AB|T46.5X2|ICD10CM|Poisoning by oth antihypertensive drugs, self-harm|Poisoning by oth antihypertensive drugs, self-harm +C2879516|T037|HT|T46.5X2|ICD10CM|Poisoning by other antihypertensive drugs, intentional self-harm|Poisoning by other antihypertensive drugs, intentional self-harm +C2879517|T037|AB|T46.5X2A|ICD10CM|Poisoning by oth antihypertensive drugs, self-harm, init|Poisoning by oth antihypertensive drugs, self-harm, init +C2879517|T037|PT|T46.5X2A|ICD10CM|Poisoning by other antihypertensive drugs, intentional self-harm, initial encounter|Poisoning by other antihypertensive drugs, intentional self-harm, initial encounter +C2879518|T037|AB|T46.5X2D|ICD10CM|Poisoning by oth antihypertensive drugs, self-harm, subs|Poisoning by oth antihypertensive drugs, self-harm, subs +C2879518|T037|PT|T46.5X2D|ICD10CM|Poisoning by other antihypertensive drugs, intentional self-harm, subsequent encounter|Poisoning by other antihypertensive drugs, intentional self-harm, subsequent encounter +C2879519|T037|AB|T46.5X2S|ICD10CM|Poisoning by oth antihypertensive drugs, self-harm, sequela|Poisoning by oth antihypertensive drugs, self-harm, sequela +C2879519|T037|PT|T46.5X2S|ICD10CM|Poisoning by other antihypertensive drugs, intentional self-harm, sequela|Poisoning by other antihypertensive drugs, intentional self-harm, sequela +C2879520|T037|AB|T46.5X3|ICD10CM|Poisoning by other antihypertensive drugs, assault|Poisoning by other antihypertensive drugs, assault +C2879520|T037|HT|T46.5X3|ICD10CM|Poisoning by other antihypertensive drugs, assault|Poisoning by other antihypertensive drugs, assault +C2879521|T037|AB|T46.5X3A|ICD10CM|Poisoning by oth antihypertensive drugs, assault, init|Poisoning by oth antihypertensive drugs, assault, init +C2879521|T037|PT|T46.5X3A|ICD10CM|Poisoning by other antihypertensive drugs, assault, initial encounter|Poisoning by other antihypertensive drugs, assault, initial encounter +C2879522|T037|AB|T46.5X3D|ICD10CM|Poisoning by oth antihypertensive drugs, assault, subs|Poisoning by oth antihypertensive drugs, assault, subs +C2879522|T037|PT|T46.5X3D|ICD10CM|Poisoning by other antihypertensive drugs, assault, subsequent encounter|Poisoning by other antihypertensive drugs, assault, subsequent encounter +C2879523|T037|AB|T46.5X3S|ICD10CM|Poisoning by other antihypertensive drugs, assault, sequela|Poisoning by other antihypertensive drugs, assault, sequela +C2879523|T037|PT|T46.5X3S|ICD10CM|Poisoning by other antihypertensive drugs, assault, sequela|Poisoning by other antihypertensive drugs, assault, sequela +C2879524|T037|AB|T46.5X4|ICD10CM|Poisoning by other antihypertensive drugs, undetermined|Poisoning by other antihypertensive drugs, undetermined +C2879524|T037|HT|T46.5X4|ICD10CM|Poisoning by other antihypertensive drugs, undetermined|Poisoning by other antihypertensive drugs, undetermined +C2879525|T037|AB|T46.5X4A|ICD10CM|Poisoning by oth antihypertensive drugs, undetermined, init|Poisoning by oth antihypertensive drugs, undetermined, init +C2879525|T037|PT|T46.5X4A|ICD10CM|Poisoning by other antihypertensive drugs, undetermined, initial encounter|Poisoning by other antihypertensive drugs, undetermined, initial encounter +C2879526|T037|AB|T46.5X4D|ICD10CM|Poisoning by oth antihypertensive drugs, undetermined, subs|Poisoning by oth antihypertensive drugs, undetermined, subs +C2879526|T037|PT|T46.5X4D|ICD10CM|Poisoning by other antihypertensive drugs, undetermined, subsequent encounter|Poisoning by other antihypertensive drugs, undetermined, subsequent encounter +C2879527|T037|AB|T46.5X4S|ICD10CM|Poisoning by oth antihypertn drugs, undetermined, sequela|Poisoning by oth antihypertn drugs, undetermined, sequela +C2879527|T037|PT|T46.5X4S|ICD10CM|Poisoning by other antihypertensive drugs, undetermined, sequela|Poisoning by other antihypertensive drugs, undetermined, sequela +C2879528|T037|AB|T46.5X5|ICD10CM|Adverse effect of other antihypertensive drugs|Adverse effect of other antihypertensive drugs +C2879528|T037|HT|T46.5X5|ICD10CM|Adverse effect of other antihypertensive drugs|Adverse effect of other antihypertensive drugs +C2879529|T037|AB|T46.5X5A|ICD10CM|Adverse effect of other antihypertensive drugs, init encntr|Adverse effect of other antihypertensive drugs, init encntr +C2879529|T037|PT|T46.5X5A|ICD10CM|Adverse effect of other antihypertensive drugs, initial encounter|Adverse effect of other antihypertensive drugs, initial encounter +C2879530|T037|AB|T46.5X5D|ICD10CM|Adverse effect of other antihypertensive drugs, subs encntr|Adverse effect of other antihypertensive drugs, subs encntr +C2879530|T037|PT|T46.5X5D|ICD10CM|Adverse effect of other antihypertensive drugs, subsequent encounter|Adverse effect of other antihypertensive drugs, subsequent encounter +C2879531|T037|AB|T46.5X5S|ICD10CM|Adverse effect of other antihypertensive drugs, sequela|Adverse effect of other antihypertensive drugs, sequela +C2879531|T037|PT|T46.5X5S|ICD10CM|Adverse effect of other antihypertensive drugs, sequela|Adverse effect of other antihypertensive drugs, sequela +C2879532|T037|AB|T46.5X6|ICD10CM|Underdosing of other antihypertensive drugs|Underdosing of other antihypertensive drugs +C2879532|T037|HT|T46.5X6|ICD10CM|Underdosing of other antihypertensive drugs|Underdosing of other antihypertensive drugs +C2879533|T037|AB|T46.5X6A|ICD10CM|Underdosing of other antihypertensive drugs, init encntr|Underdosing of other antihypertensive drugs, init encntr +C2879533|T037|PT|T46.5X6A|ICD10CM|Underdosing of other antihypertensive drugs, initial encounter|Underdosing of other antihypertensive drugs, initial encounter +C2879534|T037|AB|T46.5X6D|ICD10CM|Underdosing of other antihypertensive drugs, subs encntr|Underdosing of other antihypertensive drugs, subs encntr +C2879534|T037|PT|T46.5X6D|ICD10CM|Underdosing of other antihypertensive drugs, subsequent encounter|Underdosing of other antihypertensive drugs, subsequent encounter +C2879535|T037|AB|T46.5X6S|ICD10CM|Underdosing of other antihypertensive drugs, sequela|Underdosing of other antihypertensive drugs, sequela +C2879535|T037|PT|T46.5X6S|ICD10CM|Underdosing of other antihypertensive drugs, sequela|Underdosing of other antihypertensive drugs, sequela +C0161602|T037|PS|T46.6|ICD10|Antihyperlipidaemic and antiarteriosclerotic drugs|Antihyperlipidaemic and antiarteriosclerotic drugs +C2879536|T037|AB|T46.6|ICD10CM|Antihyperlipidemic and antiarteriosclerotic drugs|Antihyperlipidemic and antiarteriosclerotic drugs +C0161602|T037|PX|T46.6|ICD10|Poisoning by antihyperlipidaemic and antiarteriosclerotic drugs|Poisoning by antihyperlipidaemic and antiarteriosclerotic drugs +C2879536|T037|HT|T46.6|ICD10CM|Poisoning by, adverse effect of and underdosing of antihyperlipidemic and antiarteriosclerotic drugs|Poisoning by, adverse effect of and underdosing of antihyperlipidemic and antiarteriosclerotic drugs +C2879536|T037|AB|T46.6X|ICD10CM|Antihyperlipidemic and antiarteriosclerotic drugs|Antihyperlipidemic and antiarteriosclerotic drugs +C2879536|T037|HT|T46.6X|ICD10CM|Poisoning by, adverse effect of and underdosing of antihyperlipidemic and antiarteriosclerotic drugs|Poisoning by, adverse effect of and underdosing of antihyperlipidemic and antiarteriosclerotic drugs +C2879537|T037|AB|T46.6X1|ICD10CM|Poisoning by antihyperlip and antiarterio drugs, accidental|Poisoning by antihyperlip and antiarterio drugs, accidental +C0161602|T037|ET|T46.6X1|ICD10CM|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs NOS|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs NOS +C2879537|T037|HT|T46.6X1|ICD10CM|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, accidental (unintentional)|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, accidental (unintentional) +C2879538|T037|AB|T46.6X1A|ICD10CM|Poisoning by antihyperlip and antiarterio drugs, acc, init|Poisoning by antihyperlip and antiarterio drugs, acc, init +C2879539|T037|AB|T46.6X1D|ICD10CM|Poisoning by antihyperlip and antiarterio drugs, acc, subs|Poisoning by antihyperlip and antiarterio drugs, acc, subs +C2879540|T037|AB|T46.6X1S|ICD10CM|Poisn by antihyperlip and antiarterio drugs, acc, sequela|Poisn by antihyperlip and antiarterio drugs, acc, sequela +C2879540|T037|PT|T46.6X1S|ICD10CM|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, accidental (unintentional), sequela|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, accidental (unintentional), sequela +C2879541|T037|AB|T46.6X2|ICD10CM|Poisoning by antihyperlip and antiarterio drugs, self-harm|Poisoning by antihyperlip and antiarterio drugs, self-harm +C2879541|T037|HT|T46.6X2|ICD10CM|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, intentional self-harm|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, intentional self-harm +C2879542|T037|AB|T46.6X2A|ICD10CM|Poisn by antihyperlip and antiarterio drugs, self-harm, init|Poisn by antihyperlip and antiarterio drugs, self-harm, init +C2879543|T037|AB|T46.6X2D|ICD10CM|Poisn by antihyperlip and antiarterio drugs, self-harm, subs|Poisn by antihyperlip and antiarterio drugs, self-harm, subs +C2879544|T037|AB|T46.6X2S|ICD10CM|Poisn by antihyperlip and antiarterio drugs, slf-hrm, sqla|Poisn by antihyperlip and antiarterio drugs, slf-hrm, sqla +C2879544|T037|PT|T46.6X2S|ICD10CM|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, intentional self-harm, sequela|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, intentional self-harm, sequela +C2879545|T037|AB|T46.6X3|ICD10CM|Poisoning by antihyperlip and antiarterio drugs, assault|Poisoning by antihyperlip and antiarterio drugs, assault +C2879545|T037|HT|T46.6X3|ICD10CM|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault +C2879546|T037|AB|T46.6X3A|ICD10CM|Poisn by antihyperlip and antiarterio drugs, assault, init|Poisn by antihyperlip and antiarterio drugs, assault, init +C2879546|T037|PT|T46.6X3A|ICD10CM|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault, initial encounter|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault, initial encounter +C2879547|T037|AB|T46.6X3D|ICD10CM|Poisn by antihyperlip and antiarterio drugs, assault, subs|Poisn by antihyperlip and antiarterio drugs, assault, subs +C2879547|T037|PT|T46.6X3D|ICD10CM|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault, subsequent encounter|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault, subsequent encounter +C2879548|T037|AB|T46.6X3S|ICD10CM|Poisn by antihyperlip and antiarterio drugs, asslt, sequela|Poisn by antihyperlip and antiarterio drugs, asslt, sequela +C2879548|T037|PT|T46.6X3S|ICD10CM|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault, sequela|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault, sequela +C2879549|T037|AB|T46.6X4|ICD10CM|Poisoning by antihyperlip and antiarterio drugs, undet|Poisoning by antihyperlip and antiarterio drugs, undet +C2879549|T037|HT|T46.6X4|ICD10CM|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined +C2879550|T037|AB|T46.6X4A|ICD10CM|Poisoning by antihyperlip and antiarterio drugs, undet, init|Poisoning by antihyperlip and antiarterio drugs, undet, init +C2879550|T037|PT|T46.6X4A|ICD10CM|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined, initial encounter|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined, initial encounter +C2879551|T037|AB|T46.6X4D|ICD10CM|Poisoning by antihyperlip and antiarterio drugs, undet, subs|Poisoning by antihyperlip and antiarterio drugs, undet, subs +C2879551|T037|PT|T46.6X4D|ICD10CM|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined, subsequent encounter|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined, subsequent encounter +C2879552|T037|AB|T46.6X4S|ICD10CM|Poisn by antihyperlip and antiarterio drugs, undet, sequela|Poisn by antihyperlip and antiarterio drugs, undet, sequela +C2879552|T037|PT|T46.6X4S|ICD10CM|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined, sequela|Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined, sequela +C2879553|T037|AB|T46.6X5|ICD10CM|Adverse effect of antihyperlipidemic and antiarterio drugs|Adverse effect of antihyperlipidemic and antiarterio drugs +C2879553|T037|HT|T46.6X5|ICD10CM|Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs|Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs +C2879554|T037|AB|T46.6X5A|ICD10CM|Adverse effect of antihyperlip and antiarterio drugs, init|Adverse effect of antihyperlip and antiarterio drugs, init +C2879554|T037|PT|T46.6X5A|ICD10CM|Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs, initial encounter|Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs, initial encounter +C2879555|T037|AB|T46.6X5D|ICD10CM|Adverse effect of antihyperlip and antiarterio drugs, subs|Adverse effect of antihyperlip and antiarterio drugs, subs +C2879555|T037|PT|T46.6X5D|ICD10CM|Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs, subsequent encounter|Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs, subsequent encounter +C2879556|T037|PT|T46.6X5S|ICD10CM|Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs, sequela|Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs, sequela +C2879556|T037|AB|T46.6X5S|ICD10CM|Advrs effect of antihyperlip and antiarterio drugs, sequela|Advrs effect of antihyperlip and antiarterio drugs, sequela +C2879557|T037|AB|T46.6X6|ICD10CM|Underdosing of antihyperlipidemic and antiarterio drugs|Underdosing of antihyperlipidemic and antiarterio drugs +C2879557|T037|HT|T46.6X6|ICD10CM|Underdosing of antihyperlipidemic and antiarteriosclerotic drugs|Underdosing of antihyperlipidemic and antiarteriosclerotic drugs +C2879558|T037|AB|T46.6X6A|ICD10CM|Underdosing of antihyperlip and antiarterio drugs, init|Underdosing of antihyperlip and antiarterio drugs, init +C2879558|T037|PT|T46.6X6A|ICD10CM|Underdosing of antihyperlipidemic and antiarteriosclerotic drugs, initial encounter|Underdosing of antihyperlipidemic and antiarteriosclerotic drugs, initial encounter +C2879559|T037|AB|T46.6X6D|ICD10CM|Underdosing of antihyperlip and antiarterio drugs, subs|Underdosing of antihyperlip and antiarterio drugs, subs +C2879559|T037|PT|T46.6X6D|ICD10CM|Underdosing of antihyperlipidemic and antiarteriosclerotic drugs, subsequent encounter|Underdosing of antihyperlipidemic and antiarteriosclerotic drugs, subsequent encounter +C2879560|T037|AB|T46.6X6S|ICD10CM|Underdosing of antihyperlip and antiarterio drugs, sequela|Underdosing of antihyperlip and antiarterio drugs, sequela +C2879560|T037|PT|T46.6X6S|ICD10CM|Underdosing of antihyperlipidemic and antiarteriosclerotic drugs, sequela|Underdosing of antihyperlipidemic and antiarteriosclerotic drugs, sequela +C2879562|T037|AB|T46.7|ICD10CM|Peripheral vasodilators|Peripheral vasodilators +C0496993|T037|PS|T46.7|ICD10|Peripheral vasodilators|Peripheral vasodilators +C0496993|T037|PX|T46.7|ICD10|Poisoning by peripheral vasodilators|Poisoning by peripheral vasodilators +C2879561|T037|ET|T46.7|ICD10CM|Poisoning by, adverse effect of and underdosing of nicotinic acid (derivatives)|Poisoning by, adverse effect of and underdosing of nicotinic acid (derivatives) +C2879562|T037|HT|T46.7|ICD10CM|Poisoning by, adverse effect of and underdosing of peripheral vasodilators|Poisoning by, adverse effect of and underdosing of peripheral vasodilators +C2879562|T037|AB|T46.7X|ICD10CM|Peripheral vasodilators|Peripheral vasodilators +C2879562|T037|HT|T46.7X|ICD10CM|Poisoning by, adverse effect of and underdosing of peripheral vasodilators|Poisoning by, adverse effect of and underdosing of peripheral vasodilators +C0496993|T037|ET|T46.7X1|ICD10CM|Poisoning by peripheral vasodilators NOS|Poisoning by peripheral vasodilators NOS +C3507244|T037|AB|T46.7X1|ICD10CM|Poisoning by peripheral vasodilators, accidental|Poisoning by peripheral vasodilators, accidental +C3507244|T037|HT|T46.7X1|ICD10CM|Poisoning by peripheral vasodilators, accidental (unintentional)|Poisoning by peripheral vasodilators, accidental (unintentional) +C2879564|T037|PT|T46.7X1A|ICD10CM|Poisoning by peripheral vasodilators, accidental (unintentional), initial encounter|Poisoning by peripheral vasodilators, accidental (unintentional), initial encounter +C2879564|T037|AB|T46.7X1A|ICD10CM|Poisoning by peripheral vasodilators, accidental, init|Poisoning by peripheral vasodilators, accidental, init +C2879565|T037|PT|T46.7X1D|ICD10CM|Poisoning by peripheral vasodilators, accidental (unintentional), subsequent encounter|Poisoning by peripheral vasodilators, accidental (unintentional), subsequent encounter +C2879565|T037|AB|T46.7X1D|ICD10CM|Poisoning by peripheral vasodilators, accidental, subs|Poisoning by peripheral vasodilators, accidental, subs +C2879566|T037|PT|T46.7X1S|ICD10CM|Poisoning by peripheral vasodilators, accidental (unintentional), sequela|Poisoning by peripheral vasodilators, accidental (unintentional), sequela +C2879566|T037|AB|T46.7X1S|ICD10CM|Poisoning by peripheral vasodilators, accidental, sequela|Poisoning by peripheral vasodilators, accidental, sequela +C2879567|T037|AB|T46.7X2|ICD10CM|Poisoning by peripheral vasodilators, intentional self-harm|Poisoning by peripheral vasodilators, intentional self-harm +C2879567|T037|HT|T46.7X2|ICD10CM|Poisoning by peripheral vasodilators, intentional self-harm|Poisoning by peripheral vasodilators, intentional self-harm +C2879568|T037|PT|T46.7X2A|ICD10CM|Poisoning by peripheral vasodilators, intentional self-harm, initial encounter|Poisoning by peripheral vasodilators, intentional self-harm, initial encounter +C2879568|T037|AB|T46.7X2A|ICD10CM|Poisoning by peripheral vasodilators, self-harm, init|Poisoning by peripheral vasodilators, self-harm, init +C2879569|T037|PT|T46.7X2D|ICD10CM|Poisoning by peripheral vasodilators, intentional self-harm, subsequent encounter|Poisoning by peripheral vasodilators, intentional self-harm, subsequent encounter +C2879569|T037|AB|T46.7X2D|ICD10CM|Poisoning by peripheral vasodilators, self-harm, subs|Poisoning by peripheral vasodilators, self-harm, subs +C2879570|T037|PT|T46.7X2S|ICD10CM|Poisoning by peripheral vasodilators, intentional self-harm, sequela|Poisoning by peripheral vasodilators, intentional self-harm, sequela +C2879570|T037|AB|T46.7X2S|ICD10CM|Poisoning by peripheral vasodilators, self-harm, sequela|Poisoning by peripheral vasodilators, self-harm, sequela +C2879571|T037|AB|T46.7X3|ICD10CM|Poisoning by peripheral vasodilators, assault|Poisoning by peripheral vasodilators, assault +C2879571|T037|HT|T46.7X3|ICD10CM|Poisoning by peripheral vasodilators, assault|Poisoning by peripheral vasodilators, assault +C2879572|T037|AB|T46.7X3A|ICD10CM|Poisoning by peripheral vasodilators, assault, init encntr|Poisoning by peripheral vasodilators, assault, init encntr +C2879572|T037|PT|T46.7X3A|ICD10CM|Poisoning by peripheral vasodilators, assault, initial encounter|Poisoning by peripheral vasodilators, assault, initial encounter +C2879573|T037|AB|T46.7X3D|ICD10CM|Poisoning by peripheral vasodilators, assault, subs encntr|Poisoning by peripheral vasodilators, assault, subs encntr +C2879573|T037|PT|T46.7X3D|ICD10CM|Poisoning by peripheral vasodilators, assault, subsequent encounter|Poisoning by peripheral vasodilators, assault, subsequent encounter +C2879574|T037|AB|T46.7X3S|ICD10CM|Poisoning by peripheral vasodilators, assault, sequela|Poisoning by peripheral vasodilators, assault, sequela +C2879574|T037|PT|T46.7X3S|ICD10CM|Poisoning by peripheral vasodilators, assault, sequela|Poisoning by peripheral vasodilators, assault, sequela +C2879575|T037|AB|T46.7X4|ICD10CM|Poisoning by peripheral vasodilators, undetermined|Poisoning by peripheral vasodilators, undetermined +C2879575|T037|HT|T46.7X4|ICD10CM|Poisoning by peripheral vasodilators, undetermined|Poisoning by peripheral vasodilators, undetermined +C2879576|T037|AB|T46.7X4A|ICD10CM|Poisoning by peripheral vasodilators, undetermined, init|Poisoning by peripheral vasodilators, undetermined, init +C2879576|T037|PT|T46.7X4A|ICD10CM|Poisoning by peripheral vasodilators, undetermined, initial encounter|Poisoning by peripheral vasodilators, undetermined, initial encounter +C2879577|T037|AB|T46.7X4D|ICD10CM|Poisoning by peripheral vasodilators, undetermined, subs|Poisoning by peripheral vasodilators, undetermined, subs +C2879577|T037|PT|T46.7X4D|ICD10CM|Poisoning by peripheral vasodilators, undetermined, subsequent encounter|Poisoning by peripheral vasodilators, undetermined, subsequent encounter +C2879578|T037|AB|T46.7X4S|ICD10CM|Poisoning by peripheral vasodilators, undetermined, sequela|Poisoning by peripheral vasodilators, undetermined, sequela +C2879578|T037|PT|T46.7X4S|ICD10CM|Poisoning by peripheral vasodilators, undetermined, sequela|Poisoning by peripheral vasodilators, undetermined, sequela +C3508748|T037|HT|T46.7X5|ICD10CM|Adverse effect of peripheral vasodilators|Adverse effect of peripheral vasodilators +C3508748|T037|AB|T46.7X5|ICD10CM|Adverse effect of peripheral vasodilators|Adverse effect of peripheral vasodilators +C2879580|T037|AB|T46.7X5A|ICD10CM|Adverse effect of peripheral vasodilators, initial encounter|Adverse effect of peripheral vasodilators, initial encounter +C2879580|T037|PT|T46.7X5A|ICD10CM|Adverse effect of peripheral vasodilators, initial encounter|Adverse effect of peripheral vasodilators, initial encounter +C2879581|T037|AB|T46.7X5D|ICD10CM|Adverse effect of peripheral vasodilators, subs encntr|Adverse effect of peripheral vasodilators, subs encntr +C2879581|T037|PT|T46.7X5D|ICD10CM|Adverse effect of peripheral vasodilators, subsequent encounter|Adverse effect of peripheral vasodilators, subsequent encounter +C2879582|T037|AB|T46.7X5S|ICD10CM|Adverse effect of peripheral vasodilators, sequela|Adverse effect of peripheral vasodilators, sequela +C2879582|T037|PT|T46.7X5S|ICD10CM|Adverse effect of peripheral vasodilators, sequela|Adverse effect of peripheral vasodilators, sequela +C2879583|T033|HT|T46.7X6|ICD10CM|Underdosing of peripheral vasodilators|Underdosing of peripheral vasodilators +C2879583|T033|AB|T46.7X6|ICD10CM|Underdosing of peripheral vasodilators|Underdosing of peripheral vasodilators +C2879584|T037|AB|T46.7X6A|ICD10CM|Underdosing of peripheral vasodilators, initial encounter|Underdosing of peripheral vasodilators, initial encounter +C2879584|T037|PT|T46.7X6A|ICD10CM|Underdosing of peripheral vasodilators, initial encounter|Underdosing of peripheral vasodilators, initial encounter +C2879585|T037|AB|T46.7X6D|ICD10CM|Underdosing of peripheral vasodilators, subsequent encounter|Underdosing of peripheral vasodilators, subsequent encounter +C2879585|T037|PT|T46.7X6D|ICD10CM|Underdosing of peripheral vasodilators, subsequent encounter|Underdosing of peripheral vasodilators, subsequent encounter +C2879586|T037|AB|T46.7X6S|ICD10CM|Underdosing of peripheral vasodilators, sequela|Underdosing of peripheral vasodilators, sequela +C2879586|T037|PT|T46.7X6S|ICD10CM|Underdosing of peripheral vasodilators, sequela|Underdosing of peripheral vasodilators, sequela +C2879587|T037|AB|T46.8|ICD10CM|Antivaricose drugs, including sclerosing agents|Antivaricose drugs, including sclerosing agents +C0161607|T037|PS|T46.8|ICD10|Antivaricose drugs, including sclerosing agents|Antivaricose drugs, including sclerosing agents +C0161607|T037|PX|T46.8|ICD10|Poisoning by antivaricose drugs, including sclerosing agents|Poisoning by antivaricose drugs, including sclerosing agents +C2879587|T037|HT|T46.8|ICD10CM|Poisoning by, adverse effect of and underdosing of antivaricose drugs, including sclerosing agents|Poisoning by, adverse effect of and underdosing of antivaricose drugs, including sclerosing agents +C2879587|T037|AB|T46.8X|ICD10CM|Antivaricose drugs, including sclerosing agents|Antivaricose drugs, including sclerosing agents +C2879587|T037|HT|T46.8X|ICD10CM|Poisoning by, adverse effect of and underdosing of antivaricose drugs, including sclerosing agents|Poisoning by, adverse effect of and underdosing of antivaricose drugs, including sclerosing agents +C2879588|T037|AB|T46.8X1|ICD10CM|Poisoning by antivaric drugs, including scler agents, acc|Poisoning by antivaric drugs, including scler agents, acc +C0161607|T037|ET|T46.8X1|ICD10CM|Poisoning by antivaricose drugs, including sclerosing agents NOS|Poisoning by antivaricose drugs, including sclerosing agents NOS +C2879588|T037|HT|T46.8X1|ICD10CM|Poisoning by antivaricose drugs, including sclerosing agents, accidental (unintentional)|Poisoning by antivaricose drugs, including sclerosing agents, accidental (unintentional) +C2879589|T037|AB|T46.8X1A|ICD10CM|Poisoning by antivaric drugs, inc scler agents, acc, init|Poisoning by antivaric drugs, inc scler agents, acc, init +C2879590|T037|AB|T46.8X1D|ICD10CM|Poisoning by antivaric drugs, inc scler agents, acc, subs|Poisoning by antivaric drugs, inc scler agents, acc, subs +C2879591|T037|AB|T46.8X1S|ICD10CM|Poisn by antivaric drugs, inc scler agents, acc, sequela|Poisn by antivaric drugs, inc scler agents, acc, sequela +C2879591|T037|PT|T46.8X1S|ICD10CM|Poisoning by antivaricose drugs, including sclerosing agents, accidental (unintentional), sequela|Poisoning by antivaricose drugs, including sclerosing agents, accidental (unintentional), sequela +C2879592|T037|AB|T46.8X2|ICD10CM|Poisoning by antivaric drugs, inc scler agents, self-harm|Poisoning by antivaric drugs, inc scler agents, self-harm +C2879592|T037|HT|T46.8X2|ICD10CM|Poisoning by antivaricose drugs, including sclerosing agents, intentional self-harm|Poisoning by antivaricose drugs, including sclerosing agents, intentional self-harm +C2879593|T037|AB|T46.8X2A|ICD10CM|Poisn by antivaric drugs, inc scler agents, self-harm, init|Poisn by antivaric drugs, inc scler agents, self-harm, init +C2879594|T037|AB|T46.8X2D|ICD10CM|Poisn by antivaric drugs, inc scler agents, self-harm, subs|Poisn by antivaric drugs, inc scler agents, self-harm, subs +C2879595|T037|AB|T46.8X2S|ICD10CM|Poisn by antivaric drugs, inc scler agents, slf-hrm, sequela|Poisn by antivaric drugs, inc scler agents, slf-hrm, sequela +C2879595|T037|PT|T46.8X2S|ICD10CM|Poisoning by antivaricose drugs, including sclerosing agents, intentional self-harm, sequela|Poisoning by antivaricose drugs, including sclerosing agents, intentional self-harm, sequela +C2879596|T037|AB|T46.8X3|ICD10CM|Poisoning by antivaric drugs, inc scler agents, assault|Poisoning by antivaric drugs, inc scler agents, assault +C2879596|T037|HT|T46.8X3|ICD10CM|Poisoning by antivaricose drugs, including sclerosing agents, assault|Poisoning by antivaricose drugs, including sclerosing agents, assault +C2879597|T037|AB|T46.8X3A|ICD10CM|Poisn by antivaric drugs, inc scler agents, assault, init|Poisn by antivaric drugs, inc scler agents, assault, init +C2879597|T037|PT|T46.8X3A|ICD10CM|Poisoning by antivaricose drugs, including sclerosing agents, assault, initial encounter|Poisoning by antivaricose drugs, including sclerosing agents, assault, initial encounter +C2879598|T037|AB|T46.8X3D|ICD10CM|Poisn by antivaric drugs, inc scler agents, assault, subs|Poisn by antivaric drugs, inc scler agents, assault, subs +C2879598|T037|PT|T46.8X3D|ICD10CM|Poisoning by antivaricose drugs, including sclerosing agents, assault, subsequent encounter|Poisoning by antivaricose drugs, including sclerosing agents, assault, subsequent encounter +C2879599|T037|AB|T46.8X3S|ICD10CM|Poisn by antivaric drugs, inc scler agents, assault, sequela|Poisn by antivaric drugs, inc scler agents, assault, sequela +C2879599|T037|PT|T46.8X3S|ICD10CM|Poisoning by antivaricose drugs, including sclerosing agents, assault, sequela|Poisoning by antivaricose drugs, including sclerosing agents, assault, sequela +C2879600|T037|AB|T46.8X4|ICD10CM|Poisoning by antivaric drugs, including scler agents, undet|Poisoning by antivaric drugs, including scler agents, undet +C2879600|T037|HT|T46.8X4|ICD10CM|Poisoning by antivaricose drugs, including sclerosing agents, undetermined|Poisoning by antivaricose drugs, including sclerosing agents, undetermined +C2879601|T037|AB|T46.8X4A|ICD10CM|Poisoning by antivaric drugs, inc scler agents, undet, init|Poisoning by antivaric drugs, inc scler agents, undet, init +C2879601|T037|PT|T46.8X4A|ICD10CM|Poisoning by antivaricose drugs, including sclerosing agents, undetermined, initial encounter|Poisoning by antivaricose drugs, including sclerosing agents, undetermined, initial encounter +C2879602|T037|AB|T46.8X4D|ICD10CM|Poisoning by antivaric drugs, inc scler agents, undet, subs|Poisoning by antivaric drugs, inc scler agents, undet, subs +C2879602|T037|PT|T46.8X4D|ICD10CM|Poisoning by antivaricose drugs, including sclerosing agents, undetermined, subsequent encounter|Poisoning by antivaricose drugs, including sclerosing agents, undetermined, subsequent encounter +C2879603|T037|AB|T46.8X4S|ICD10CM|Poisn by antivaric drugs, inc scler agents, undet, sequela|Poisn by antivaric drugs, inc scler agents, undet, sequela +C2879603|T037|PT|T46.8X4S|ICD10CM|Poisoning by antivaricose drugs, including sclerosing agents, undetermined, sequela|Poisoning by antivaricose drugs, including sclerosing agents, undetermined, sequela +C2879604|T037|AB|T46.8X5|ICD10CM|Adverse effect of antivaric drugs, including scler agents|Adverse effect of antivaric drugs, including scler agents +C2879604|T037|HT|T46.8X5|ICD10CM|Adverse effect of antivaricose drugs, including sclerosing agents|Adverse effect of antivaricose drugs, including sclerosing agents +C2879605|T037|AB|T46.8X5A|ICD10CM|Adverse effect of antivaric drugs, inc scler agents, init|Adverse effect of antivaric drugs, inc scler agents, init +C2879605|T037|PT|T46.8X5A|ICD10CM|Adverse effect of antivaricose drugs, including sclerosing agents, initial encounter|Adverse effect of antivaricose drugs, including sclerosing agents, initial encounter +C2879606|T037|AB|T46.8X5D|ICD10CM|Adverse effect of antivaric drugs, inc scler agents, subs|Adverse effect of antivaric drugs, inc scler agents, subs +C2879606|T037|PT|T46.8X5D|ICD10CM|Adverse effect of antivaricose drugs, including sclerosing agents, subsequent encounter|Adverse effect of antivaricose drugs, including sclerosing agents, subsequent encounter +C2879607|T037|AB|T46.8X5S|ICD10CM|Adverse effect of antivaric drugs, inc scler agents, sequela|Adverse effect of antivaric drugs, inc scler agents, sequela +C2879607|T037|PT|T46.8X5S|ICD10CM|Adverse effect of antivaricose drugs, including sclerosing agents, sequela|Adverse effect of antivaricose drugs, including sclerosing agents, sequela +C2879608|T037|AB|T46.8X6|ICD10CM|Underdosing of antivaric drugs, including sclerosing agents|Underdosing of antivaric drugs, including sclerosing agents +C2879608|T037|HT|T46.8X6|ICD10CM|Underdosing of antivaricose drugs, including sclerosing agents|Underdosing of antivaricose drugs, including sclerosing agents +C2879609|T037|PT|T46.8X6A|ICD10CM|Underdosing of antivaricose drugs, including sclerosing agents, initial encounter|Underdosing of antivaricose drugs, including sclerosing agents, initial encounter +C2879609|T037|AB|T46.8X6A|ICD10CM|Undrdose of antivaric drugs, including scler agents, init|Undrdose of antivaric drugs, including scler agents, init +C2879610|T037|PT|T46.8X6D|ICD10CM|Underdosing of antivaricose drugs, including sclerosing agents, subsequent encounter|Underdosing of antivaricose drugs, including sclerosing agents, subsequent encounter +C2879610|T037|AB|T46.8X6D|ICD10CM|Undrdose of antivaric drugs, including scler agents, subs|Undrdose of antivaric drugs, including scler agents, subs +C2879611|T037|PT|T46.8X6S|ICD10CM|Underdosing of antivaricose drugs, including sclerosing agents, sequela|Underdosing of antivaricose drugs, including sclerosing agents, sequela +C2879611|T037|AB|T46.8X6S|ICD10CM|Undrdose of antivaric drugs, including scler agents, sequela|Undrdose of antivaric drugs, including scler agents, sequela +C2879612|T037|AB|T46.9|ICD10CM|And unsp agents primarily affecting the cardiovascular sys|And unsp agents primarily affecting the cardiovascular sys +C0161609|T037|PS|T46.9|ICD10|Other and unspecified agents primarily affecting the cardiovascular system|Other and unspecified agents primarily affecting the cardiovascular system +C0161609|T037|PX|T46.9|ICD10|Poisoning by other and unspecified agents primarily affecting the cardiovascular system|Poisoning by other and unspecified agents primarily affecting the cardiovascular system +C2879613|T037|AB|T46.90|ICD10CM|Unsp agents primarily affecting the cardiovascular system|Unsp agents primarily affecting the cardiovascular system +C2879614|T037|AB|T46.901|ICD10CM|Poisoning by unsp agents aff the cardiovasc sys, accidental|Poisoning by unsp agents aff the cardiovasc sys, accidental +C2879615|T037|AB|T46.901A|ICD10CM|Poisoning by unsp agents aff the cardiovasc sys, acc, init|Poisoning by unsp agents aff the cardiovasc sys, acc, init +C2879616|T037|AB|T46.901D|ICD10CM|Poisoning by unsp agents aff the cardiovasc sys, acc, subs|Poisoning by unsp agents aff the cardiovasc sys, acc, subs +C2879617|T037|AB|T46.901S|ICD10CM|Poisn by unsp agents aff the cardiovasc sys, acc, sequela|Poisn by unsp agents aff the cardiovasc sys, acc, sequela +C2879618|T037|AB|T46.902|ICD10CM|Poisoning by unsp agents aff the cardiovasc sys, self-harm|Poisoning by unsp agents aff the cardiovasc sys, self-harm +C2879618|T037|HT|T46.902|ICD10CM|Poisoning by unspecified agents primarily affecting the cardiovascular system, intentional self-harm|Poisoning by unspecified agents primarily affecting the cardiovascular system, intentional self-harm +C2879619|T037|AB|T46.902A|ICD10CM|Poisn by unsp agents aff the cardiovasc sys, self-harm, init|Poisn by unsp agents aff the cardiovasc sys, self-harm, init +C2879620|T037|AB|T46.902D|ICD10CM|Poisn by unsp agents aff the cardiovasc sys, self-harm, subs|Poisn by unsp agents aff the cardiovasc sys, self-harm, subs +C2879621|T037|AB|T46.902S|ICD10CM|Poisn by unsp agents aff the cardiovasc sys, slf-hrm, sqla|Poisn by unsp agents aff the cardiovasc sys, slf-hrm, sqla +C2879622|T037|AB|T46.903|ICD10CM|Poisoning by unsp agents aff the cardiovascular sys, assault|Poisoning by unsp agents aff the cardiovascular sys, assault +C2879622|T037|HT|T46.903|ICD10CM|Poisoning by unspecified agents primarily affecting the cardiovascular system, assault|Poisoning by unspecified agents primarily affecting the cardiovascular system, assault +C2879623|T037|AB|T46.903A|ICD10CM|Poisn by unsp agents aff the cardiovasc sys, assault, init|Poisn by unsp agents aff the cardiovasc sys, assault, init +C2879624|T037|AB|T46.903D|ICD10CM|Poisn by unsp agents aff the cardiovasc sys, assault, subs|Poisn by unsp agents aff the cardiovasc sys, assault, subs +C2879625|T037|AB|T46.903S|ICD10CM|Poisn by unsp agents aff the cardiovasc sys, asslt, sequela|Poisn by unsp agents aff the cardiovasc sys, asslt, sequela +C2879625|T037|PT|T46.903S|ICD10CM|Poisoning by unspecified agents primarily affecting the cardiovascular system, assault, sequela|Poisoning by unspecified agents primarily affecting the cardiovascular system, assault, sequela +C2879626|T037|AB|T46.904|ICD10CM|Poisoning by unsp agents aff the cardiovasc sys, undet|Poisoning by unsp agents aff the cardiovasc sys, undet +C2879626|T037|HT|T46.904|ICD10CM|Poisoning by unspecified agents primarily affecting the cardiovascular system, undetermined|Poisoning by unspecified agents primarily affecting the cardiovascular system, undetermined +C2879627|T037|AB|T46.904A|ICD10CM|Poisoning by unsp agents aff the cardiovasc sys, undet, init|Poisoning by unsp agents aff the cardiovasc sys, undet, init +C2879628|T037|AB|T46.904D|ICD10CM|Poisoning by unsp agents aff the cardiovasc sys, undet, subs|Poisoning by unsp agents aff the cardiovasc sys, undet, subs +C2879629|T037|AB|T46.904S|ICD10CM|Poisn by unsp agents aff the cardiovasc sys, undet, sequela|Poisn by unsp agents aff the cardiovasc sys, undet, sequela +C2879629|T037|PT|T46.904S|ICD10CM|Poisoning by unspecified agents primarily affecting the cardiovascular system, undetermined, sequela|Poisoning by unspecified agents primarily affecting the cardiovascular system, undetermined, sequela +C2879630|T037|AB|T46.905|ICD10CM|Adverse effect of unsp agents aff the cardiovascular sys|Adverse effect of unsp agents aff the cardiovascular sys +C2879630|T037|HT|T46.905|ICD10CM|Adverse effect of unspecified agents primarily affecting the cardiovascular system|Adverse effect of unspecified agents primarily affecting the cardiovascular system +C2879631|T037|AB|T46.905A|ICD10CM|Adverse effect of unsp agents aff the cardiovasc sys, init|Adverse effect of unsp agents aff the cardiovasc sys, init +C2879632|T037|AB|T46.905D|ICD10CM|Adverse effect of unsp agents aff the cardiovasc sys, subs|Adverse effect of unsp agents aff the cardiovasc sys, subs +C2879633|T037|PT|T46.905S|ICD10CM|Adverse effect of unspecified agents primarily affecting the cardiovascular system, sequela|Adverse effect of unspecified agents primarily affecting the cardiovascular system, sequela +C2879633|T037|AB|T46.905S|ICD10CM|Advrs effect of unsp agents aff the cardiovasc sys, sequela|Advrs effect of unsp agents aff the cardiovasc sys, sequela +C2879634|T037|AB|T46.906|ICD10CM|Underdosing of unsp agents aff the cardiovascular sys|Underdosing of unsp agents aff the cardiovascular sys +C2879634|T037|HT|T46.906|ICD10CM|Underdosing of unspecified agents primarily affecting the cardiovascular system|Underdosing of unspecified agents primarily affecting the cardiovascular system +C2879635|T037|AB|T46.906A|ICD10CM|Underdosing of unsp agents aff the cardiovascular sys, init|Underdosing of unsp agents aff the cardiovascular sys, init +C2879635|T037|PT|T46.906A|ICD10CM|Underdosing of unspecified agents primarily affecting the cardiovascular system, initial encounter|Underdosing of unspecified agents primarily affecting the cardiovascular system, initial encounter +C2879636|T037|AB|T46.906D|ICD10CM|Underdosing of unsp agents aff the cardiovascular sys, subs|Underdosing of unsp agents aff the cardiovascular sys, subs +C2879637|T037|AB|T46.906S|ICD10CM|Underdosing of unsp agents aff the cardiovasc sys, sequela|Underdosing of unsp agents aff the cardiovasc sys, sequela +C2879637|T037|PT|T46.906S|ICD10CM|Underdosing of unspecified agents primarily affecting the cardiovascular system, sequela|Underdosing of unspecified agents primarily affecting the cardiovascular system, sequela +C2879638|T037|AB|T46.99|ICD10CM|Agents primarily affecting the cardiovascular system|Agents primarily affecting the cardiovascular system +C2879639|T037|AB|T46.991|ICD10CM|Poisoning by oth agents aff the cardiovasc sys, accidental|Poisoning by oth agents aff the cardiovasc sys, accidental +C2879639|T037|HT|T46.991|ICD10CM|Poisoning by other agents primarily affecting the cardiovascular system, accidental (unintentional)|Poisoning by other agents primarily affecting the cardiovascular system, accidental (unintentional) +C2879640|T037|AB|T46.991A|ICD10CM|Poisoning by oth agents aff the cardiovasc sys, acc, init|Poisoning by oth agents aff the cardiovasc sys, acc, init +C2879641|T037|AB|T46.991D|ICD10CM|Poisoning by oth agents aff the cardiovasc sys, acc, subs|Poisoning by oth agents aff the cardiovasc sys, acc, subs +C2879642|T037|AB|T46.991S|ICD10CM|Poisn by oth agents aff the cardiovasc sys, acc, sequela|Poisn by oth agents aff the cardiovasc sys, acc, sequela +C2879643|T037|AB|T46.992|ICD10CM|Poisoning by oth agents aff the cardiovasc sys, self-harm|Poisoning by oth agents aff the cardiovasc sys, self-harm +C2879643|T037|HT|T46.992|ICD10CM|Poisoning by other agents primarily affecting the cardiovascular system, intentional self-harm|Poisoning by other agents primarily affecting the cardiovascular system, intentional self-harm +C2879644|T037|AB|T46.992A|ICD10CM|Poisn by oth agents aff the cardiovasc sys, self-harm, init|Poisn by oth agents aff the cardiovasc sys, self-harm, init +C2879645|T037|AB|T46.992D|ICD10CM|Poisn by oth agents aff the cardiovasc sys, self-harm, subs|Poisn by oth agents aff the cardiovasc sys, self-harm, subs +C2879646|T037|AB|T46.992S|ICD10CM|Poisn by oth agents aff the cardiovasc sys, slf-hrm, sequela|Poisn by oth agents aff the cardiovasc sys, slf-hrm, sequela +C2879647|T037|AB|T46.993|ICD10CM|Poisoning by oth agents aff the cardiovascular sys, assault|Poisoning by oth agents aff the cardiovascular sys, assault +C2879647|T037|HT|T46.993|ICD10CM|Poisoning by other agents primarily affecting the cardiovascular system, assault|Poisoning by other agents primarily affecting the cardiovascular system, assault +C2879648|T037|AB|T46.993A|ICD10CM|Poisn by oth agents aff the cardiovasc sys, assault, init|Poisn by oth agents aff the cardiovasc sys, assault, init +C2879648|T037|PT|T46.993A|ICD10CM|Poisoning by other agents primarily affecting the cardiovascular system, assault, initial encounter|Poisoning by other agents primarily affecting the cardiovascular system, assault, initial encounter +C2879649|T037|AB|T46.993D|ICD10CM|Poisn by oth agents aff the cardiovasc sys, assault, subs|Poisn by oth agents aff the cardiovasc sys, assault, subs +C2879650|T037|AB|T46.993S|ICD10CM|Poisn by oth agents aff the cardiovasc sys, assault, sequela|Poisn by oth agents aff the cardiovasc sys, assault, sequela +C2879650|T037|PT|T46.993S|ICD10CM|Poisoning by other agents primarily affecting the cardiovascular system, assault, sequela|Poisoning by other agents primarily affecting the cardiovascular system, assault, sequela +C2879651|T037|AB|T46.994|ICD10CM|Poisoning by oth agents aff the cardiovasc sys, undetermined|Poisoning by oth agents aff the cardiovasc sys, undetermined +C2879651|T037|HT|T46.994|ICD10CM|Poisoning by other agents primarily affecting the cardiovascular system, undetermined|Poisoning by other agents primarily affecting the cardiovascular system, undetermined +C2879652|T037|AB|T46.994A|ICD10CM|Poisoning by oth agents aff the cardiovasc sys, undet, init|Poisoning by oth agents aff the cardiovasc sys, undet, init +C2879653|T037|AB|T46.994D|ICD10CM|Poisoning by oth agents aff the cardiovasc sys, undet, subs|Poisoning by oth agents aff the cardiovasc sys, undet, subs +C2879654|T037|AB|T46.994S|ICD10CM|Poisn by oth agents aff the cardiovasc sys, undet, sequela|Poisn by oth agents aff the cardiovasc sys, undet, sequela +C2879654|T037|PT|T46.994S|ICD10CM|Poisoning by other agents primarily affecting the cardiovascular system, undetermined, sequela|Poisoning by other agents primarily affecting the cardiovascular system, undetermined, sequela +C2879655|T037|AB|T46.995|ICD10CM|Adverse effect of agents aff the cardiovascular sys|Adverse effect of agents aff the cardiovascular sys +C2879655|T037|HT|T46.995|ICD10CM|Adverse effect of other agents primarily affecting the cardiovascular system|Adverse effect of other agents primarily affecting the cardiovascular system +C2879656|T037|AB|T46.995A|ICD10CM|Adverse effect of agents aff the cardiovascular sys, init|Adverse effect of agents aff the cardiovascular sys, init +C2879656|T037|PT|T46.995A|ICD10CM|Adverse effect of other agents primarily affecting the cardiovascular system, initial encounter|Adverse effect of other agents primarily affecting the cardiovascular system, initial encounter +C2879657|T037|AB|T46.995D|ICD10CM|Adverse effect of agents aff the cardiovascular sys, subs|Adverse effect of agents aff the cardiovascular sys, subs +C2879657|T037|PT|T46.995D|ICD10CM|Adverse effect of other agents primarily affecting the cardiovascular system, subsequent encounter|Adverse effect of other agents primarily affecting the cardiovascular system, subsequent encounter +C2879658|T037|AB|T46.995S|ICD10CM|Adverse effect of agents aff the cardiovascular sys, sequela|Adverse effect of agents aff the cardiovascular sys, sequela +C2879658|T037|PT|T46.995S|ICD10CM|Adverse effect of other agents primarily affecting the cardiovascular system, sequela|Adverse effect of other agents primarily affecting the cardiovascular system, sequela +C2879659|T037|AB|T46.996|ICD10CM|Underdosing of agents aff the cardiovascular sys|Underdosing of agents aff the cardiovascular sys +C2879659|T037|HT|T46.996|ICD10CM|Underdosing of other agents primarily affecting the cardiovascular system|Underdosing of other agents primarily affecting the cardiovascular system +C2879660|T037|AB|T46.996A|ICD10CM|Underdosing of agents aff the cardiovascular sys, init|Underdosing of agents aff the cardiovascular sys, init +C2879660|T037|PT|T46.996A|ICD10CM|Underdosing of other agents primarily affecting the cardiovascular system, initial encounter|Underdosing of other agents primarily affecting the cardiovascular system, initial encounter +C2879661|T037|AB|T46.996D|ICD10CM|Underdosing of agents aff the cardiovascular sys, subs|Underdosing of agents aff the cardiovascular sys, subs +C2879661|T037|PT|T46.996D|ICD10CM|Underdosing of other agents primarily affecting the cardiovascular system, subsequent encounter|Underdosing of other agents primarily affecting the cardiovascular system, subsequent encounter +C2879662|T037|AB|T46.996S|ICD10CM|Underdosing of agents aff the cardiovascular sys, sequela|Underdosing of agents aff the cardiovascular sys, sequela +C2879662|T037|PT|T46.996S|ICD10CM|Underdosing of other agents primarily affecting the cardiovascular system, sequela|Underdosing of other agents primarily affecting the cardiovascular system, sequela +C2879663|T037|AB|T47|ICD10CM|Agents primarily affecting the gastrointestinal system|Agents primarily affecting the gastrointestinal system +C0161610|T037|HT|T47|ICD10|Poisoning by agents primarily affecting the gastrointestinal system|Poisoning by agents primarily affecting the gastrointestinal system +C0452118|T037|PS|T47.0|ICD10|Histamine H2-receptor antagonists|Histamine H2-receptor antagonists +C2879664|T037|AB|T47.0|ICD10CM|Histamine H2-receptor blockers|Histamine H2-receptor blockers +C0452118|T037|PX|T47.0|ICD10|Poisoning by histamine H2-receptor antagonists|Poisoning by histamine H2-receptor antagonists +C2879664|T037|HT|T47.0|ICD10CM|Poisoning by, adverse effect of and underdosing of histamine H2-receptor blockers|Poisoning by, adverse effect of and underdosing of histamine H2-receptor blockers +C2879664|T037|AB|T47.0X|ICD10CM|Histamine H2-receptor blockers|Histamine H2-receptor blockers +C2879664|T037|HT|T47.0X|ICD10CM|Poisoning by, adverse effect of and underdosing of histamine H2-receptor blockers|Poisoning by, adverse effect of and underdosing of histamine H2-receptor blockers +C2879665|T037|ET|T47.0X1|ICD10CM|Poisoning by histamine H2-receptor blockers NOS|Poisoning by histamine H2-receptor blockers NOS +C3507266|T037|AB|T47.0X1|ICD10CM|Poisoning by histamine H2-receptor blockers, accidental|Poisoning by histamine H2-receptor blockers, accidental +C3507266|T037|HT|T47.0X1|ICD10CM|Poisoning by histamine H2-receptor blockers, accidental (unintentional)|Poisoning by histamine H2-receptor blockers, accidental (unintentional) +C2879667|T037|AB|T47.0X1A|ICD10CM|Poisoning by histamine H2-receptor blockers, acc, init|Poisoning by histamine H2-receptor blockers, acc, init +C2879667|T037|PT|T47.0X1A|ICD10CM|Poisoning by histamine H2-receptor blockers, accidental (unintentional), initial encounter|Poisoning by histamine H2-receptor blockers, accidental (unintentional), initial encounter +C2879668|T037|AB|T47.0X1D|ICD10CM|Poisoning by histamine H2-receptor blockers, acc, subs|Poisoning by histamine H2-receptor blockers, acc, subs +C2879668|T037|PT|T47.0X1D|ICD10CM|Poisoning by histamine H2-receptor blockers, accidental (unintentional), subsequent encounter|Poisoning by histamine H2-receptor blockers, accidental (unintentional), subsequent encounter +C2879669|T037|AB|T47.0X1S|ICD10CM|Poisoning by histamine H2-receptor blockers, acc, sequela|Poisoning by histamine H2-receptor blockers, acc, sequela +C2879669|T037|PT|T47.0X1S|ICD10CM|Poisoning by histamine H2-receptor blockers, accidental (unintentional), sequela|Poisoning by histamine H2-receptor blockers, accidental (unintentional), sequela +C2879670|T037|HT|T47.0X2|ICD10CM|Poisoning by histamine H2-receptor blockers, intentional self-harm|Poisoning by histamine H2-receptor blockers, intentional self-harm +C2879670|T037|AB|T47.0X2|ICD10CM|Poisoning by histamine H2-receptor blockers, self-harm|Poisoning by histamine H2-receptor blockers, self-harm +C2879671|T037|PT|T47.0X2A|ICD10CM|Poisoning by histamine H2-receptor blockers, intentional self-harm, initial encounter|Poisoning by histamine H2-receptor blockers, intentional self-harm, initial encounter +C2879671|T037|AB|T47.0X2A|ICD10CM|Poisoning by histamine H2-receptor blockers, self-harm, init|Poisoning by histamine H2-receptor blockers, self-harm, init +C2879672|T037|PT|T47.0X2D|ICD10CM|Poisoning by histamine H2-receptor blockers, intentional self-harm, subsequent encounter|Poisoning by histamine H2-receptor blockers, intentional self-harm, subsequent encounter +C2879672|T037|AB|T47.0X2D|ICD10CM|Poisoning by histamine H2-receptor blockers, self-harm, subs|Poisoning by histamine H2-receptor blockers, self-harm, subs +C2879673|T037|AB|T47.0X2S|ICD10CM|Poisn by histamine H2-receptor blockers, self-harm, sequela|Poisn by histamine H2-receptor blockers, self-harm, sequela +C2879673|T037|PT|T47.0X2S|ICD10CM|Poisoning by histamine H2-receptor blockers, intentional self-harm, sequela|Poisoning by histamine H2-receptor blockers, intentional self-harm, sequela +C2879674|T037|AB|T47.0X3|ICD10CM|Poisoning by histamine H2-receptor blockers, assault|Poisoning by histamine H2-receptor blockers, assault +C2879674|T037|HT|T47.0X3|ICD10CM|Poisoning by histamine H2-receptor blockers, assault|Poisoning by histamine H2-receptor blockers, assault +C2879675|T037|AB|T47.0X3A|ICD10CM|Poisoning by histamine H2-receptor blockers, assault, init|Poisoning by histamine H2-receptor blockers, assault, init +C2879675|T037|PT|T47.0X3A|ICD10CM|Poisoning by histamine H2-receptor blockers, assault, initial encounter|Poisoning by histamine H2-receptor blockers, assault, initial encounter +C2879676|T037|AB|T47.0X3D|ICD10CM|Poisoning by histamine H2-receptor blockers, assault, subs|Poisoning by histamine H2-receptor blockers, assault, subs +C2879676|T037|PT|T47.0X3D|ICD10CM|Poisoning by histamine H2-receptor blockers, assault, subsequent encounter|Poisoning by histamine H2-receptor blockers, assault, subsequent encounter +C2879677|T037|AB|T47.0X3S|ICD10CM|Poisn by histamine H2-receptor blockers, assault, sequela|Poisn by histamine H2-receptor blockers, assault, sequela +C2879677|T037|PT|T47.0X3S|ICD10CM|Poisoning by histamine H2-receptor blockers, assault, sequela|Poisoning by histamine H2-receptor blockers, assault, sequela +C2879678|T037|AB|T47.0X4|ICD10CM|Poisoning by histamine H2-receptor blockers, undetermined|Poisoning by histamine H2-receptor blockers, undetermined +C2879678|T037|HT|T47.0X4|ICD10CM|Poisoning by histamine H2-receptor blockers, undetermined|Poisoning by histamine H2-receptor blockers, undetermined +C2879679|T037|AB|T47.0X4A|ICD10CM|Poisoning by histamine H2-receptor blockers, undet, init|Poisoning by histamine H2-receptor blockers, undet, init +C2879679|T037|PT|T47.0X4A|ICD10CM|Poisoning by histamine H2-receptor blockers, undetermined, initial encounter|Poisoning by histamine H2-receptor blockers, undetermined, initial encounter +C2879680|T037|AB|T47.0X4D|ICD10CM|Poisoning by histamine H2-receptor blockers, undet, subs|Poisoning by histamine H2-receptor blockers, undet, subs +C2879680|T037|PT|T47.0X4D|ICD10CM|Poisoning by histamine H2-receptor blockers, undetermined, subsequent encounter|Poisoning by histamine H2-receptor blockers, undetermined, subsequent encounter +C2879681|T037|AB|T47.0X4S|ICD10CM|Poisoning by histamine H2-receptor blockers, undet, sequela|Poisoning by histamine H2-receptor blockers, undet, sequela +C2879681|T037|PT|T47.0X4S|ICD10CM|Poisoning by histamine H2-receptor blockers, undetermined, sequela|Poisoning by histamine H2-receptor blockers, undetermined, sequela +C2879682|T037|AB|T47.0X5|ICD10CM|Adverse effect of histamine H2-receptor blockers|Adverse effect of histamine H2-receptor blockers +C2879682|T037|HT|T47.0X5|ICD10CM|Adverse effect of histamine H2-receptor blockers|Adverse effect of histamine H2-receptor blockers +C2879683|T037|AB|T47.0X5A|ICD10CM|Adverse effect of histamine H2-receptor blockers, init|Adverse effect of histamine H2-receptor blockers, init +C2879683|T037|PT|T47.0X5A|ICD10CM|Adverse effect of histamine H2-receptor blockers, initial encounter|Adverse effect of histamine H2-receptor blockers, initial encounter +C2879684|T037|AB|T47.0X5D|ICD10CM|Adverse effect of histamine H2-receptor blockers, subs|Adverse effect of histamine H2-receptor blockers, subs +C2879684|T037|PT|T47.0X5D|ICD10CM|Adverse effect of histamine H2-receptor blockers, subsequent encounter|Adverse effect of histamine H2-receptor blockers, subsequent encounter +C2879685|T037|AB|T47.0X5S|ICD10CM|Adverse effect of histamine H2-receptor blockers, sequela|Adverse effect of histamine H2-receptor blockers, sequela +C2879685|T037|PT|T47.0X5S|ICD10CM|Adverse effect of histamine H2-receptor blockers, sequela|Adverse effect of histamine H2-receptor blockers, sequela +C2879686|T037|AB|T47.0X6|ICD10CM|Underdosing of histamine H2-receptor blockers|Underdosing of histamine H2-receptor blockers +C2879686|T037|HT|T47.0X6|ICD10CM|Underdosing of histamine H2-receptor blockers|Underdosing of histamine H2-receptor blockers +C2879687|T037|AB|T47.0X6A|ICD10CM|Underdosing of histamine H2-receptor blockers, init encntr|Underdosing of histamine H2-receptor blockers, init encntr +C2879687|T037|PT|T47.0X6A|ICD10CM|Underdosing of histamine H2-receptor blockers, initial encounter|Underdosing of histamine H2-receptor blockers, initial encounter +C2879688|T037|AB|T47.0X6D|ICD10CM|Underdosing of histamine H2-receptor blockers, subs encntr|Underdosing of histamine H2-receptor blockers, subs encntr +C2879688|T037|PT|T47.0X6D|ICD10CM|Underdosing of histamine H2-receptor blockers, subsequent encounter|Underdosing of histamine H2-receptor blockers, subsequent encounter +C2879689|T037|AB|T47.0X6S|ICD10CM|Underdosing of histamine H2-receptor blockers, sequela|Underdosing of histamine H2-receptor blockers, sequela +C2879689|T037|PT|T47.0X6S|ICD10CM|Underdosing of histamine H2-receptor blockers, sequela|Underdosing of histamine H2-receptor blockers, sequela +C2879690|T037|AB|T47.1|ICD10CM|Antacids and anti-gastric-secretion drugs|Antacids and anti-gastric-secretion drugs +C0478450|T037|PS|T47.1|ICD10|Other antacids and anti-gastric-secretion drugs|Other antacids and anti-gastric-secretion drugs +C0478450|T037|PX|T47.1|ICD10|Poisoning by other antacids and anti-gastric-secretion drugs|Poisoning by other antacids and anti-gastric-secretion drugs +C2879690|T037|HT|T47.1|ICD10CM|Poisoning by, adverse effect of and underdosing of other antacids and anti-gastric-secretion drugs|Poisoning by, adverse effect of and underdosing of other antacids and anti-gastric-secretion drugs +C2879690|T037|AB|T47.1X|ICD10CM|Antacids and anti-gastric-secretion drugs|Antacids and anti-gastric-secretion drugs +C2879690|T037|HT|T47.1X|ICD10CM|Poisoning by, adverse effect of and underdosing of other antacids and anti-gastric-secretion drugs|Poisoning by, adverse effect of and underdosing of other antacids and anti-gastric-secretion drugs +C2879691|T037|AB|T47.1X1|ICD10CM|Poisoning by oth antacids and anti-gstrc-sec drugs, acc|Poisoning by oth antacids and anti-gstrc-sec drugs, acc +C0478450|T037|ET|T47.1X1|ICD10CM|Poisoning by other antacids and anti-gastric-secretion drugs NOS|Poisoning by other antacids and anti-gastric-secretion drugs NOS +C2879691|T037|HT|T47.1X1|ICD10CM|Poisoning by other antacids and anti-gastric-secretion drugs, accidental (unintentional)|Poisoning by other antacids and anti-gastric-secretion drugs, accidental (unintentional) +C2879692|T037|AB|T47.1X1A|ICD10CM|Poisn by oth antacids and anti-gstrc-sec drugs, acc, init|Poisn by oth antacids and anti-gstrc-sec drugs, acc, init +C2879693|T037|AB|T47.1X1D|ICD10CM|Poisn by oth antacids and anti-gstrc-sec drugs, acc, subs|Poisn by oth antacids and anti-gstrc-sec drugs, acc, subs +C2879694|T037|AB|T47.1X1S|ICD10CM|Poisn by oth antacids and anti-gstrc-sec drugs, acc, sqla|Poisn by oth antacids and anti-gstrc-sec drugs, acc, sqla +C2879694|T037|PT|T47.1X1S|ICD10CM|Poisoning by other antacids and anti-gastric-secretion drugs, accidental (unintentional), sequela|Poisoning by other antacids and anti-gastric-secretion drugs, accidental (unintentional), sequela +C2879695|T037|AB|T47.1X2|ICD10CM|Poisn by oth antacids and anti-gstrc-sec drugs, self-harm|Poisn by oth antacids and anti-gstrc-sec drugs, self-harm +C2879695|T037|HT|T47.1X2|ICD10CM|Poisoning by other antacids and anti-gastric-secretion drugs, intentional self-harm|Poisoning by other antacids and anti-gastric-secretion drugs, intentional self-harm +C2879696|T037|AB|T47.1X2A|ICD10CM|Poisn by oth antacids & anti-gstrc-sec drugs, slf-hrm, init|Poisn by oth antacids & anti-gstrc-sec drugs, slf-hrm, init +C2879697|T037|AB|T47.1X2D|ICD10CM|Poisn by oth antacids & anti-gstrc-sec drugs, slf-hrm, subs|Poisn by oth antacids & anti-gstrc-sec drugs, slf-hrm, subs +C2879698|T037|AB|T47.1X2S|ICD10CM|Poisn by oth antacids & anti-gstrc-sec drugs, slf-hrm, sqla|Poisn by oth antacids & anti-gstrc-sec drugs, slf-hrm, sqla +C2879698|T037|PT|T47.1X2S|ICD10CM|Poisoning by other antacids and anti-gastric-secretion drugs, intentional self-harm, sequela|Poisoning by other antacids and anti-gastric-secretion drugs, intentional self-harm, sequela +C2879699|T037|AB|T47.1X3|ICD10CM|Poisoning by oth antacids and anti-gstrc-sec drugs, assault|Poisoning by oth antacids and anti-gstrc-sec drugs, assault +C2879699|T037|HT|T47.1X3|ICD10CM|Poisoning by other antacids and anti-gastric-secretion drugs, assault|Poisoning by other antacids and anti-gastric-secretion drugs, assault +C2879700|T037|AB|T47.1X3A|ICD10CM|Poisn by oth antacids and anti-gstrc-sec drugs, asslt, init|Poisn by oth antacids and anti-gstrc-sec drugs, asslt, init +C2879700|T037|PT|T47.1X3A|ICD10CM|Poisoning by other antacids and anti-gastric-secretion drugs, assault, initial encounter|Poisoning by other antacids and anti-gastric-secretion drugs, assault, initial encounter +C2879701|T037|AB|T47.1X3D|ICD10CM|Poisn by oth antacids and anti-gstrc-sec drugs, asslt, subs|Poisn by oth antacids and anti-gstrc-sec drugs, asslt, subs +C2879701|T037|PT|T47.1X3D|ICD10CM|Poisoning by other antacids and anti-gastric-secretion drugs, assault, subsequent encounter|Poisoning by other antacids and anti-gastric-secretion drugs, assault, subsequent encounter +C2879702|T037|AB|T47.1X3S|ICD10CM|Poisn by oth antacids and anti-gstrc-sec drugs, asslt, sqla|Poisn by oth antacids and anti-gstrc-sec drugs, asslt, sqla +C2879702|T037|PT|T47.1X3S|ICD10CM|Poisoning by other antacids and anti-gastric-secretion drugs, assault, sequela|Poisoning by other antacids and anti-gastric-secretion drugs, assault, sequela +C2879703|T037|AB|T47.1X4|ICD10CM|Poisoning by oth antacids and anti-gstrc-sec drugs, undet|Poisoning by oth antacids and anti-gstrc-sec drugs, undet +C2879703|T037|HT|T47.1X4|ICD10CM|Poisoning by other antacids and anti-gastric-secretion drugs, undetermined|Poisoning by other antacids and anti-gastric-secretion drugs, undetermined +C2879704|T037|AB|T47.1X4A|ICD10CM|Poisn by oth antacids and anti-gstrc-sec drugs, undet, init|Poisn by oth antacids and anti-gstrc-sec drugs, undet, init +C2879704|T037|PT|T47.1X4A|ICD10CM|Poisoning by other antacids and anti-gastric-secretion drugs, undetermined, initial encounter|Poisoning by other antacids and anti-gastric-secretion drugs, undetermined, initial encounter +C2879705|T037|AB|T47.1X4D|ICD10CM|Poisn by oth antacids and anti-gstrc-sec drugs, undet, subs|Poisn by oth antacids and anti-gstrc-sec drugs, undet, subs +C2879705|T037|PT|T47.1X4D|ICD10CM|Poisoning by other antacids and anti-gastric-secretion drugs, undetermined, subsequent encounter|Poisoning by other antacids and anti-gastric-secretion drugs, undetermined, subsequent encounter +C2879706|T037|AB|T47.1X4S|ICD10CM|Poisn by oth antacids and anti-gstrc-sec drugs, undet, sqla|Poisn by oth antacids and anti-gstrc-sec drugs, undet, sqla +C2879706|T037|PT|T47.1X4S|ICD10CM|Poisoning by other antacids and anti-gastric-secretion drugs, undetermined, sequela|Poisoning by other antacids and anti-gastric-secretion drugs, undetermined, sequela +C2879707|T037|AB|T47.1X5|ICD10CM|Adverse effect of antacids and anti-gastric-secretion drugs|Adverse effect of antacids and anti-gastric-secretion drugs +C2879707|T037|HT|T47.1X5|ICD10CM|Adverse effect of other antacids and anti-gastric-secretion drugs|Adverse effect of other antacids and anti-gastric-secretion drugs +C2879708|T037|AB|T47.1X5A|ICD10CM|Adverse effect of antacids and anti-gstrc-sec drugs, init|Adverse effect of antacids and anti-gstrc-sec drugs, init +C2879708|T037|PT|T47.1X5A|ICD10CM|Adverse effect of other antacids and anti-gastric-secretion drugs, initial encounter|Adverse effect of other antacids and anti-gastric-secretion drugs, initial encounter +C2879709|T037|AB|T47.1X5D|ICD10CM|Adverse effect of antacids and anti-gstrc-sec drugs, subs|Adverse effect of antacids and anti-gstrc-sec drugs, subs +C2879709|T037|PT|T47.1X5D|ICD10CM|Adverse effect of other antacids and anti-gastric-secretion drugs, subsequent encounter|Adverse effect of other antacids and anti-gastric-secretion drugs, subsequent encounter +C2879710|T037|AB|T47.1X5S|ICD10CM|Adverse effect of antacids and anti-gstrc-sec drugs, sequela|Adverse effect of antacids and anti-gstrc-sec drugs, sequela +C2879710|T037|PT|T47.1X5S|ICD10CM|Adverse effect of other antacids and anti-gastric-secretion drugs, sequela|Adverse effect of other antacids and anti-gastric-secretion drugs, sequela +C2879711|T037|AB|T47.1X6|ICD10CM|Underdosing of oth antacids and anti-gastric-secretion drugs|Underdosing of oth antacids and anti-gastric-secretion drugs +C2879711|T037|HT|T47.1X6|ICD10CM|Underdosing of other antacids and anti-gastric-secretion drugs|Underdosing of other antacids and anti-gastric-secretion drugs +C2879712|T037|AB|T47.1X6A|ICD10CM|Underdosing of antacids and anti-gstrc-sec drugs, init|Underdosing of antacids and anti-gstrc-sec drugs, init +C2879712|T037|PT|T47.1X6A|ICD10CM|Underdosing of other antacids and anti-gastric-secretion drugs, initial encounter|Underdosing of other antacids and anti-gastric-secretion drugs, initial encounter +C2879713|T037|AB|T47.1X6D|ICD10CM|Underdosing of antacids and anti-gstrc-sec drugs, subs|Underdosing of antacids and anti-gstrc-sec drugs, subs +C2879713|T037|PT|T47.1X6D|ICD10CM|Underdosing of other antacids and anti-gastric-secretion drugs, subsequent encounter|Underdosing of other antacids and anti-gastric-secretion drugs, subsequent encounter +C2879714|T037|AB|T47.1X6S|ICD10CM|Underdosing of antacids and anti-gstrc-sec drugs, sequela|Underdosing of antacids and anti-gstrc-sec drugs, sequela +C2879714|T037|PT|T47.1X6S|ICD10CM|Underdosing of other antacids and anti-gastric-secretion drugs, sequela|Underdosing of other antacids and anti-gastric-secretion drugs, sequela +C0496994|T037|PX|T47.2|ICD10|Poisoning by stimulant laxatives|Poisoning by stimulant laxatives +C2879715|T037|HT|T47.2|ICD10CM|Poisoning by, adverse effect of and underdosing of stimulant laxatives|Poisoning by, adverse effect of and underdosing of stimulant laxatives +C2879715|T037|AB|T47.2|ICD10CM|Stimulant laxatives|Stimulant laxatives +C0496994|T037|PS|T47.2|ICD10|Stimulant laxatives|Stimulant laxatives +C2879715|T037|HT|T47.2X|ICD10CM|Poisoning by, adverse effect of and underdosing of stimulant laxatives|Poisoning by, adverse effect of and underdosing of stimulant laxatives +C2879715|T037|AB|T47.2X|ICD10CM|Stimulant laxatives|Stimulant laxatives +C0496994|T037|ET|T47.2X1|ICD10CM|Poisoning by stimulant laxatives NOS|Poisoning by stimulant laxatives NOS +C2879716|T037|AB|T47.2X1|ICD10CM|Poisoning by stimulant laxatives, accidental (unintentional)|Poisoning by stimulant laxatives, accidental (unintentional) +C2879716|T037|HT|T47.2X1|ICD10CM|Poisoning by stimulant laxatives, accidental (unintentional)|Poisoning by stimulant laxatives, accidental (unintentional) +C2879717|T037|PT|T47.2X1A|ICD10CM|Poisoning by stimulant laxatives, accidental (unintentional), initial encounter|Poisoning by stimulant laxatives, accidental (unintentional), initial encounter +C2879717|T037|AB|T47.2X1A|ICD10CM|Poisoning by stimulant laxatives, accidental, init|Poisoning by stimulant laxatives, accidental, init +C2879718|T037|PT|T47.2X1D|ICD10CM|Poisoning by stimulant laxatives, accidental (unintentional), subsequent encounter|Poisoning by stimulant laxatives, accidental (unintentional), subsequent encounter +C2879718|T037|AB|T47.2X1D|ICD10CM|Poisoning by stimulant laxatives, accidental, subs|Poisoning by stimulant laxatives, accidental, subs +C2879719|T037|PT|T47.2X1S|ICD10CM|Poisoning by stimulant laxatives, accidental (unintentional), sequela|Poisoning by stimulant laxatives, accidental (unintentional), sequela +C2879719|T037|AB|T47.2X1S|ICD10CM|Poisoning by stimulant laxatives, accidental, sequela|Poisoning by stimulant laxatives, accidental, sequela +C2879720|T037|AB|T47.2X2|ICD10CM|Poisoning by stimulant laxatives, intentional self-harm|Poisoning by stimulant laxatives, intentional self-harm +C2879720|T037|HT|T47.2X2|ICD10CM|Poisoning by stimulant laxatives, intentional self-harm|Poisoning by stimulant laxatives, intentional self-harm +C2879721|T037|PT|T47.2X2A|ICD10CM|Poisoning by stimulant laxatives, intentional self-harm, initial encounter|Poisoning by stimulant laxatives, intentional self-harm, initial encounter +C2879721|T037|AB|T47.2X2A|ICD10CM|Poisoning by stimulant laxatives, self-harm, init|Poisoning by stimulant laxatives, self-harm, init +C2879722|T037|PT|T47.2X2D|ICD10CM|Poisoning by stimulant laxatives, intentional self-harm, subsequent encounter|Poisoning by stimulant laxatives, intentional self-harm, subsequent encounter +C2879722|T037|AB|T47.2X2D|ICD10CM|Poisoning by stimulant laxatives, self-harm, subs|Poisoning by stimulant laxatives, self-harm, subs +C2879723|T037|PT|T47.2X2S|ICD10CM|Poisoning by stimulant laxatives, intentional self-harm, sequela|Poisoning by stimulant laxatives, intentional self-harm, sequela +C2879723|T037|AB|T47.2X2S|ICD10CM|Poisoning by stimulant laxatives, self-harm, sequela|Poisoning by stimulant laxatives, self-harm, sequela +C2879724|T037|AB|T47.2X3|ICD10CM|Poisoning by stimulant laxatives, assault|Poisoning by stimulant laxatives, assault +C2879724|T037|HT|T47.2X3|ICD10CM|Poisoning by stimulant laxatives, assault|Poisoning by stimulant laxatives, assault +C2879725|T037|AB|T47.2X3A|ICD10CM|Poisoning by stimulant laxatives, assault, initial encounter|Poisoning by stimulant laxatives, assault, initial encounter +C2879725|T037|PT|T47.2X3A|ICD10CM|Poisoning by stimulant laxatives, assault, initial encounter|Poisoning by stimulant laxatives, assault, initial encounter +C2879726|T037|AB|T47.2X3D|ICD10CM|Poisoning by stimulant laxatives, assault, subs encntr|Poisoning by stimulant laxatives, assault, subs encntr +C2879726|T037|PT|T47.2X3D|ICD10CM|Poisoning by stimulant laxatives, assault, subsequent encounter|Poisoning by stimulant laxatives, assault, subsequent encounter +C2879727|T037|AB|T47.2X3S|ICD10CM|Poisoning by stimulant laxatives, assault, sequela|Poisoning by stimulant laxatives, assault, sequela +C2879727|T037|PT|T47.2X3S|ICD10CM|Poisoning by stimulant laxatives, assault, sequela|Poisoning by stimulant laxatives, assault, sequela +C2879728|T037|AB|T47.2X4|ICD10CM|Poisoning by stimulant laxatives, undetermined|Poisoning by stimulant laxatives, undetermined +C2879728|T037|HT|T47.2X4|ICD10CM|Poisoning by stimulant laxatives, undetermined|Poisoning by stimulant laxatives, undetermined +C2879729|T037|AB|T47.2X4A|ICD10CM|Poisoning by stimulant laxatives, undetermined, init encntr|Poisoning by stimulant laxatives, undetermined, init encntr +C2879729|T037|PT|T47.2X4A|ICD10CM|Poisoning by stimulant laxatives, undetermined, initial encounter|Poisoning by stimulant laxatives, undetermined, initial encounter +C2879730|T037|AB|T47.2X4D|ICD10CM|Poisoning by stimulant laxatives, undetermined, subs encntr|Poisoning by stimulant laxatives, undetermined, subs encntr +C2879730|T037|PT|T47.2X4D|ICD10CM|Poisoning by stimulant laxatives, undetermined, subsequent encounter|Poisoning by stimulant laxatives, undetermined, subsequent encounter +C2879731|T037|AB|T47.2X4S|ICD10CM|Poisoning by stimulant laxatives, undetermined, sequela|Poisoning by stimulant laxatives, undetermined, sequela +C2879731|T037|PT|T47.2X4S|ICD10CM|Poisoning by stimulant laxatives, undetermined, sequela|Poisoning by stimulant laxatives, undetermined, sequela +C2879732|T046|HT|T47.2X5|ICD10CM|Adverse effect of stimulant laxatives|Adverse effect of stimulant laxatives +C2879732|T046|AB|T47.2X5|ICD10CM|Adverse effect of stimulant laxatives|Adverse effect of stimulant laxatives +C2879733|T037|AB|T47.2X5A|ICD10CM|Adverse effect of stimulant laxatives, initial encounter|Adverse effect of stimulant laxatives, initial encounter +C2879733|T037|PT|T47.2X5A|ICD10CM|Adverse effect of stimulant laxatives, initial encounter|Adverse effect of stimulant laxatives, initial encounter +C2879734|T037|AB|T47.2X5D|ICD10CM|Adverse effect of stimulant laxatives, subsequent encounter|Adverse effect of stimulant laxatives, subsequent encounter +C2879734|T037|PT|T47.2X5D|ICD10CM|Adverse effect of stimulant laxatives, subsequent encounter|Adverse effect of stimulant laxatives, subsequent encounter +C2879735|T037|AB|T47.2X5S|ICD10CM|Adverse effect of stimulant laxatives, sequela|Adverse effect of stimulant laxatives, sequela +C2879735|T037|PT|T47.2X5S|ICD10CM|Adverse effect of stimulant laxatives, sequela|Adverse effect of stimulant laxatives, sequela +C2879736|T037|AB|T47.2X6|ICD10CM|Underdosing of stimulant laxatives|Underdosing of stimulant laxatives +C2879736|T037|HT|T47.2X6|ICD10CM|Underdosing of stimulant laxatives|Underdosing of stimulant laxatives +C2879737|T037|AB|T47.2X6A|ICD10CM|Underdosing of stimulant laxatives, initial encounter|Underdosing of stimulant laxatives, initial encounter +C2879737|T037|PT|T47.2X6A|ICD10CM|Underdosing of stimulant laxatives, initial encounter|Underdosing of stimulant laxatives, initial encounter +C2879738|T037|AB|T47.2X6D|ICD10CM|Underdosing of stimulant laxatives, subsequent encounter|Underdosing of stimulant laxatives, subsequent encounter +C2879738|T037|PT|T47.2X6D|ICD10CM|Underdosing of stimulant laxatives, subsequent encounter|Underdosing of stimulant laxatives, subsequent encounter +C2879739|T037|AB|T47.2X6S|ICD10CM|Underdosing of stimulant laxatives, sequela|Underdosing of stimulant laxatives, sequela +C2879739|T037|PT|T47.2X6S|ICD10CM|Underdosing of stimulant laxatives, sequela|Underdosing of stimulant laxatives, sequela +C0452119|T037|PX|T47.3|ICD10|Poisoning by saline and osmotic laxatives|Poisoning by saline and osmotic laxatives +C2879740|T037|HT|T47.3|ICD10CM|Poisoning by, adverse effect of and underdosing of saline and osmotic laxatives|Poisoning by, adverse effect of and underdosing of saline and osmotic laxatives +C2879740|T037|AB|T47.3|ICD10CM|Saline and osmotic laxatives|Saline and osmotic laxatives +C0452119|T037|PS|T47.3|ICD10|Saline and osmotic laxatives|Saline and osmotic laxatives +C2879741|T037|HT|T47.3X|ICD10CM|Poisoning by and adverse effect of saline and osmotic laxatives|Poisoning by and adverse effect of saline and osmotic laxatives +C2879741|T037|AB|T47.3X|ICD10CM|Poisoning by and adverse effect of saline and osmotic laxtv|Poisoning by and adverse effect of saline and osmotic laxtv +C0452119|T037|ET|T47.3X1|ICD10CM|Poisoning by saline and osmotic laxatives NOS|Poisoning by saline and osmotic laxatives NOS +C3507261|T037|AB|T47.3X1|ICD10CM|Poisoning by saline and osmotic laxatives, accidental|Poisoning by saline and osmotic laxatives, accidental +C3507261|T037|HT|T47.3X1|ICD10CM|Poisoning by saline and osmotic laxatives, accidental (unintentional)|Poisoning by saline and osmotic laxatives, accidental (unintentional) +C2879743|T037|PT|T47.3X1A|ICD10CM|Poisoning by saline and osmotic laxatives, accidental (unintentional), initial encounter|Poisoning by saline and osmotic laxatives, accidental (unintentional), initial encounter +C2879743|T037|AB|T47.3X1A|ICD10CM|Poisoning by saline and osmotic laxatives, accidental, init|Poisoning by saline and osmotic laxatives, accidental, init +C2879744|T037|PT|T47.3X1D|ICD10CM|Poisoning by saline and osmotic laxatives, accidental (unintentional), subsequent encounter|Poisoning by saline and osmotic laxatives, accidental (unintentional), subsequent encounter +C2879744|T037|AB|T47.3X1D|ICD10CM|Poisoning by saline and osmotic laxatives, accidental, subs|Poisoning by saline and osmotic laxatives, accidental, subs +C2879745|T037|AB|T47.3X1S|ICD10CM|Poisoning by saline and osmotic laxatives, acc, sequela|Poisoning by saline and osmotic laxatives, acc, sequela +C2879745|T037|PT|T47.3X1S|ICD10CM|Poisoning by saline and osmotic laxatives, accidental (unintentional), sequela|Poisoning by saline and osmotic laxatives, accidental (unintentional), sequela +C2879746|T037|HT|T47.3X2|ICD10CM|Poisoning by saline and osmotic laxatives, intentional self-harm|Poisoning by saline and osmotic laxatives, intentional self-harm +C2879746|T037|AB|T47.3X2|ICD10CM|Poisoning by saline and osmotic laxatives, self-harm|Poisoning by saline and osmotic laxatives, self-harm +C2879747|T037|PT|T47.3X2A|ICD10CM|Poisoning by saline and osmotic laxatives, intentional self-harm, initial encounter|Poisoning by saline and osmotic laxatives, intentional self-harm, initial encounter +C2879747|T037|AB|T47.3X2A|ICD10CM|Poisoning by saline and osmotic laxatives, self-harm, init|Poisoning by saline and osmotic laxatives, self-harm, init +C2879748|T037|PT|T47.3X2D|ICD10CM|Poisoning by saline and osmotic laxatives, intentional self-harm, subsequent encounter|Poisoning by saline and osmotic laxatives, intentional self-harm, subsequent encounter +C2879748|T037|AB|T47.3X2D|ICD10CM|Poisoning by saline and osmotic laxatives, self-harm, subs|Poisoning by saline and osmotic laxatives, self-harm, subs +C2879749|T037|PT|T47.3X2S|ICD10CM|Poisoning by saline and osmotic laxatives, intentional self-harm, sequela|Poisoning by saline and osmotic laxatives, intentional self-harm, sequela +C2879749|T037|AB|T47.3X2S|ICD10CM|Poisoning by saline and osmotic laxtv, self-harm, sequela|Poisoning by saline and osmotic laxtv, self-harm, sequela +C2879750|T037|AB|T47.3X3|ICD10CM|Poisoning by saline and osmotic laxatives, assault|Poisoning by saline and osmotic laxatives, assault +C2879750|T037|HT|T47.3X3|ICD10CM|Poisoning by saline and osmotic laxatives, assault|Poisoning by saline and osmotic laxatives, assault +C2879751|T037|AB|T47.3X3A|ICD10CM|Poisoning by saline and osmotic laxatives, assault, init|Poisoning by saline and osmotic laxatives, assault, init +C2879751|T037|PT|T47.3X3A|ICD10CM|Poisoning by saline and osmotic laxatives, assault, initial encounter|Poisoning by saline and osmotic laxatives, assault, initial encounter +C2879752|T037|AB|T47.3X3D|ICD10CM|Poisoning by saline and osmotic laxatives, assault, subs|Poisoning by saline and osmotic laxatives, assault, subs +C2879752|T037|PT|T47.3X3D|ICD10CM|Poisoning by saline and osmotic laxatives, assault, subsequent encounter|Poisoning by saline and osmotic laxatives, assault, subsequent encounter +C2879753|T037|AB|T47.3X3S|ICD10CM|Poisoning by saline and osmotic laxatives, assault, sequela|Poisoning by saline and osmotic laxatives, assault, sequela +C2879753|T037|PT|T47.3X3S|ICD10CM|Poisoning by saline and osmotic laxatives, assault, sequela|Poisoning by saline and osmotic laxatives, assault, sequela +C2879754|T037|AB|T47.3X4|ICD10CM|Poisoning by saline and osmotic laxatives, undetermined|Poisoning by saline and osmotic laxatives, undetermined +C2879754|T037|HT|T47.3X4|ICD10CM|Poisoning by saline and osmotic laxatives, undetermined|Poisoning by saline and osmotic laxatives, undetermined +C2879755|T037|AB|T47.3X4A|ICD10CM|Poisoning by saline and osmotic laxatives, undet, init|Poisoning by saline and osmotic laxatives, undet, init +C2879755|T037|PT|T47.3X4A|ICD10CM|Poisoning by saline and osmotic laxatives, undetermined, initial encounter|Poisoning by saline and osmotic laxatives, undetermined, initial encounter +C2879756|T037|AB|T47.3X4D|ICD10CM|Poisoning by saline and osmotic laxatives, undet, subs|Poisoning by saline and osmotic laxatives, undet, subs +C2879756|T037|PT|T47.3X4D|ICD10CM|Poisoning by saline and osmotic laxatives, undetermined, subsequent encounter|Poisoning by saline and osmotic laxatives, undetermined, subsequent encounter +C2879757|T037|AB|T47.3X4S|ICD10CM|Poisoning by saline and osmotic laxatives, undet, sequela|Poisoning by saline and osmotic laxatives, undet, sequela +C2879757|T037|PT|T47.3X4S|ICD10CM|Poisoning by saline and osmotic laxatives, undetermined, sequela|Poisoning by saline and osmotic laxatives, undetermined, sequela +C2879758|T037|AB|T47.3X5|ICD10CM|Adverse effect of saline and osmotic laxatives|Adverse effect of saline and osmotic laxatives +C2879758|T037|HT|T47.3X5|ICD10CM|Adverse effect of saline and osmotic laxatives|Adverse effect of saline and osmotic laxatives +C2879759|T037|AB|T47.3X5A|ICD10CM|Adverse effect of saline and osmotic laxatives, init encntr|Adverse effect of saline and osmotic laxatives, init encntr +C2879759|T037|PT|T47.3X5A|ICD10CM|Adverse effect of saline and osmotic laxatives, initial encounter|Adverse effect of saline and osmotic laxatives, initial encounter +C2879760|T037|AB|T47.3X5D|ICD10CM|Adverse effect of saline and osmotic laxatives, subs encntr|Adverse effect of saline and osmotic laxatives, subs encntr +C2879760|T037|PT|T47.3X5D|ICD10CM|Adverse effect of saline and osmotic laxatives, subsequent encounter|Adverse effect of saline and osmotic laxatives, subsequent encounter +C2879761|T037|AB|T47.3X5S|ICD10CM|Adverse effect of saline and osmotic laxatives, sequela|Adverse effect of saline and osmotic laxatives, sequela +C2879761|T037|PT|T47.3X5S|ICD10CM|Adverse effect of saline and osmotic laxatives, sequela|Adverse effect of saline and osmotic laxatives, sequela +C2879762|T037|AB|T47.3X6|ICD10CM|Underdosing of saline and osmotic laxatives|Underdosing of saline and osmotic laxatives +C2879762|T037|HT|T47.3X6|ICD10CM|Underdosing of saline and osmotic laxatives|Underdosing of saline and osmotic laxatives +C2879763|T037|AB|T47.3X6A|ICD10CM|Underdosing of saline and osmotic laxatives, init encntr|Underdosing of saline and osmotic laxatives, init encntr +C2879763|T037|PT|T47.3X6A|ICD10CM|Underdosing of saline and osmotic laxatives, initial encounter|Underdosing of saline and osmotic laxatives, initial encounter +C2879764|T037|AB|T47.3X6D|ICD10CM|Underdosing of saline and osmotic laxatives, subs encntr|Underdosing of saline and osmotic laxatives, subs encntr +C2879764|T037|PT|T47.3X6D|ICD10CM|Underdosing of saline and osmotic laxatives, subsequent encounter|Underdosing of saline and osmotic laxatives, subsequent encounter +C2879765|T037|AB|T47.3X6S|ICD10CM|Underdosing of saline and osmotic laxatives, sequela|Underdosing of saline and osmotic laxatives, sequela +C2879765|T037|PT|T47.3X6S|ICD10CM|Underdosing of saline and osmotic laxatives, sequela|Underdosing of saline and osmotic laxatives, sequela +C0496995|T037|PS|T47.4|ICD10|Other laxatives|Other laxatives +C0496995|T037|PX|T47.4|ICD10|Poisoning by other laxatives|Poisoning by other laxatives +C2879766|T037|AB|T47.4|ICD10CM|Poisoning by, adverse effect of and underdosing of laxatives|Poisoning by, adverse effect of and underdosing of laxatives +C2879766|T037|HT|T47.4|ICD10CM|Poisoning by, adverse effect of and underdosing of other laxatives|Poisoning by, adverse effect of and underdosing of other laxatives +C2879766|T037|AB|T47.4X|ICD10CM|Poisoning by, adverse effect of and underdosing of laxatives|Poisoning by, adverse effect of and underdosing of laxatives +C2879766|T037|HT|T47.4X|ICD10CM|Poisoning by, adverse effect of and underdosing of other laxatives|Poisoning by, adverse effect of and underdosing of other laxatives +C0496995|T037|ET|T47.4X1|ICD10CM|Poisoning by other laxatives NOS|Poisoning by other laxatives NOS +C2879767|T037|AB|T47.4X1|ICD10CM|Poisoning by other laxatives, accidental (unintentional)|Poisoning by other laxatives, accidental (unintentional) +C2879767|T037|HT|T47.4X1|ICD10CM|Poisoning by other laxatives, accidental (unintentional)|Poisoning by other laxatives, accidental (unintentional) +C2879768|T037|AB|T47.4X1A|ICD10CM|Poisoning by oth laxatives, accidental (unintentional), init|Poisoning by oth laxatives, accidental (unintentional), init +C2879768|T037|PT|T47.4X1A|ICD10CM|Poisoning by other laxatives, accidental (unintentional), initial encounter|Poisoning by other laxatives, accidental (unintentional), initial encounter +C2879769|T037|AB|T47.4X1D|ICD10CM|Poisoning by oth laxatives, accidental (unintentional), subs|Poisoning by oth laxatives, accidental (unintentional), subs +C2879769|T037|PT|T47.4X1D|ICD10CM|Poisoning by other laxatives, accidental (unintentional), subsequent encounter|Poisoning by other laxatives, accidental (unintentional), subsequent encounter +C2879770|T037|AB|T47.4X1S|ICD10CM|Poisoning by oth laxatives, accidental, sequela|Poisoning by oth laxatives, accidental, sequela +C2879770|T037|PT|T47.4X1S|ICD10CM|Poisoning by other laxatives, accidental (unintentional), sequela|Poisoning by other laxatives, accidental (unintentional), sequela +C2879771|T037|AB|T47.4X2|ICD10CM|Poisoning by other laxatives, intentional self-harm|Poisoning by other laxatives, intentional self-harm +C2879771|T037|HT|T47.4X2|ICD10CM|Poisoning by other laxatives, intentional self-harm|Poisoning by other laxatives, intentional self-harm +C2879772|T037|AB|T47.4X2A|ICD10CM|Poisoning by oth laxatives, intentional self-harm, init|Poisoning by oth laxatives, intentional self-harm, init +C2879772|T037|PT|T47.4X2A|ICD10CM|Poisoning by other laxatives, intentional self-harm, initial encounter|Poisoning by other laxatives, intentional self-harm, initial encounter +C2879773|T037|AB|T47.4X2D|ICD10CM|Poisoning by oth laxatives, intentional self-harm, subs|Poisoning by oth laxatives, intentional self-harm, subs +C2879773|T037|PT|T47.4X2D|ICD10CM|Poisoning by other laxatives, intentional self-harm, subsequent encounter|Poisoning by other laxatives, intentional self-harm, subsequent encounter +C2879774|T037|AB|T47.4X2S|ICD10CM|Poisoning by other laxatives, intentional self-harm, sequela|Poisoning by other laxatives, intentional self-harm, sequela +C2879774|T037|PT|T47.4X2S|ICD10CM|Poisoning by other laxatives, intentional self-harm, sequela|Poisoning by other laxatives, intentional self-harm, sequela +C2879775|T037|AB|T47.4X3|ICD10CM|Poisoning by other laxatives, assault|Poisoning by other laxatives, assault +C2879775|T037|HT|T47.4X3|ICD10CM|Poisoning by other laxatives, assault|Poisoning by other laxatives, assault +C2879776|T037|AB|T47.4X3A|ICD10CM|Poisoning by other laxatives, assault, initial encounter|Poisoning by other laxatives, assault, initial encounter +C2879776|T037|PT|T47.4X3A|ICD10CM|Poisoning by other laxatives, assault, initial encounter|Poisoning by other laxatives, assault, initial encounter +C2879777|T037|AB|T47.4X3D|ICD10CM|Poisoning by other laxatives, assault, subsequent encounter|Poisoning by other laxatives, assault, subsequent encounter +C2879777|T037|PT|T47.4X3D|ICD10CM|Poisoning by other laxatives, assault, subsequent encounter|Poisoning by other laxatives, assault, subsequent encounter +C2879778|T037|AB|T47.4X3S|ICD10CM|Poisoning by other laxatives, assault, sequela|Poisoning by other laxatives, assault, sequela +C2879778|T037|PT|T47.4X3S|ICD10CM|Poisoning by other laxatives, assault, sequela|Poisoning by other laxatives, assault, sequela +C2879779|T037|AB|T47.4X4|ICD10CM|Poisoning by other laxatives, undetermined|Poisoning by other laxatives, undetermined +C2879779|T037|HT|T47.4X4|ICD10CM|Poisoning by other laxatives, undetermined|Poisoning by other laxatives, undetermined +C2879780|T037|AB|T47.4X4A|ICD10CM|Poisoning by other laxatives, undetermined, init encntr|Poisoning by other laxatives, undetermined, init encntr +C2879780|T037|PT|T47.4X4A|ICD10CM|Poisoning by other laxatives, undetermined, initial encounter|Poisoning by other laxatives, undetermined, initial encounter +C2879781|T037|AB|T47.4X4D|ICD10CM|Poisoning by other laxatives, undetermined, subs encntr|Poisoning by other laxatives, undetermined, subs encntr +C2879781|T037|PT|T47.4X4D|ICD10CM|Poisoning by other laxatives, undetermined, subsequent encounter|Poisoning by other laxatives, undetermined, subsequent encounter +C2879782|T037|AB|T47.4X4S|ICD10CM|Poisoning by other laxatives, undetermined, sequela|Poisoning by other laxatives, undetermined, sequela +C2879782|T037|PT|T47.4X4S|ICD10CM|Poisoning by other laxatives, undetermined, sequela|Poisoning by other laxatives, undetermined, sequela +C2879783|T037|AB|T47.4X5|ICD10CM|Adverse effect of other laxatives|Adverse effect of other laxatives +C2879783|T037|HT|T47.4X5|ICD10CM|Adverse effect of other laxatives|Adverse effect of other laxatives +C2879784|T037|AB|T47.4X5A|ICD10CM|Adverse effect of other laxatives, initial encounter|Adverse effect of other laxatives, initial encounter +C2879784|T037|PT|T47.4X5A|ICD10CM|Adverse effect of other laxatives, initial encounter|Adverse effect of other laxatives, initial encounter +C2879785|T037|AB|T47.4X5D|ICD10CM|Adverse effect of other laxatives, subsequent encounter|Adverse effect of other laxatives, subsequent encounter +C2879785|T037|PT|T47.4X5D|ICD10CM|Adverse effect of other laxatives, subsequent encounter|Adverse effect of other laxatives, subsequent encounter +C2879786|T037|AB|T47.4X5S|ICD10CM|Adverse effect of other laxatives, sequela|Adverse effect of other laxatives, sequela +C2879786|T037|PT|T47.4X5S|ICD10CM|Adverse effect of other laxatives, sequela|Adverse effect of other laxatives, sequela +C2879787|T037|AB|T47.4X6|ICD10CM|Underdosing of other laxatives|Underdosing of other laxatives +C2879787|T037|HT|T47.4X6|ICD10CM|Underdosing of other laxatives|Underdosing of other laxatives +C2879788|T037|AB|T47.4X6A|ICD10CM|Underdosing of other laxatives, initial encounter|Underdosing of other laxatives, initial encounter +C2879788|T037|PT|T47.4X6A|ICD10CM|Underdosing of other laxatives, initial encounter|Underdosing of other laxatives, initial encounter +C2879789|T037|AB|T47.4X6D|ICD10CM|Underdosing of other laxatives, subsequent encounter|Underdosing of other laxatives, subsequent encounter +C2879789|T037|PT|T47.4X6D|ICD10CM|Underdosing of other laxatives, subsequent encounter|Underdosing of other laxatives, subsequent encounter +C2879790|T037|AB|T47.4X6S|ICD10CM|Underdosing of other laxatives, sequela|Underdosing of other laxatives, sequela +C2879790|T037|PT|T47.4X6S|ICD10CM|Underdosing of other laxatives, sequela|Underdosing of other laxatives, sequela +C2879791|T037|AB|T47.5|ICD10CM|Digestants|Digestants +C0161615|T037|PS|T47.5|ICD10|Digestants|Digestants +C0161615|T037|PX|T47.5|ICD10|Poisoning by digestants|Poisoning by digestants +C2879791|T037|HT|T47.5|ICD10CM|Poisoning by, adverse effect of and underdosing of digestants|Poisoning by, adverse effect of and underdosing of digestants +C2879791|T037|AB|T47.5X|ICD10CM|Digestants|Digestants +C2879791|T037|HT|T47.5X|ICD10CM|Poisoning by, adverse effect of and underdosing of digestants|Poisoning by, adverse effect of and underdosing of digestants +C0161615|T037|ET|T47.5X1|ICD10CM|Poisoning by digestants NOS|Poisoning by digestants NOS +C2879792|T037|AB|T47.5X1|ICD10CM|Poisoning by digestants, accidental (unintentional)|Poisoning by digestants, accidental (unintentional) +C2879792|T037|HT|T47.5X1|ICD10CM|Poisoning by digestants, accidental (unintentional)|Poisoning by digestants, accidental (unintentional) +C2879793|T037|AB|T47.5X1A|ICD10CM|Poisoning by digestants, accidental (unintentional), init|Poisoning by digestants, accidental (unintentional), init +C2879793|T037|PT|T47.5X1A|ICD10CM|Poisoning by digestants, accidental (unintentional), initial encounter|Poisoning by digestants, accidental (unintentional), initial encounter +C2879794|T037|AB|T47.5X1D|ICD10CM|Poisoning by digestants, accidental (unintentional), subs|Poisoning by digestants, accidental (unintentional), subs +C2879794|T037|PT|T47.5X1D|ICD10CM|Poisoning by digestants, accidental (unintentional), subsequent encounter|Poisoning by digestants, accidental (unintentional), subsequent encounter +C2879795|T037|AB|T47.5X1S|ICD10CM|Poisoning by digestants, accidental (unintentional), sequela|Poisoning by digestants, accidental (unintentional), sequela +C2879795|T037|PT|T47.5X1S|ICD10CM|Poisoning by digestants, accidental (unintentional), sequela|Poisoning by digestants, accidental (unintentional), sequela +C2879796|T037|AB|T47.5X2|ICD10CM|Poisoning by digestants, intentional self-harm|Poisoning by digestants, intentional self-harm +C2879796|T037|HT|T47.5X2|ICD10CM|Poisoning by digestants, intentional self-harm|Poisoning by digestants, intentional self-harm +C2879797|T037|AB|T47.5X2A|ICD10CM|Poisoning by digestants, intentional self-harm, init encntr|Poisoning by digestants, intentional self-harm, init encntr +C2879797|T037|PT|T47.5X2A|ICD10CM|Poisoning by digestants, intentional self-harm, initial encounter|Poisoning by digestants, intentional self-harm, initial encounter +C2879798|T037|AB|T47.5X2D|ICD10CM|Poisoning by digestants, intentional self-harm, subs encntr|Poisoning by digestants, intentional self-harm, subs encntr +C2879798|T037|PT|T47.5X2D|ICD10CM|Poisoning by digestants, intentional self-harm, subsequent encounter|Poisoning by digestants, intentional self-harm, subsequent encounter +C2879799|T037|AB|T47.5X2S|ICD10CM|Poisoning by digestants, intentional self-harm, sequela|Poisoning by digestants, intentional self-harm, sequela +C2879799|T037|PT|T47.5X2S|ICD10CM|Poisoning by digestants, intentional self-harm, sequela|Poisoning by digestants, intentional self-harm, sequela +C2879800|T037|AB|T47.5X3|ICD10CM|Poisoning by digestants, assault|Poisoning by digestants, assault +C2879800|T037|HT|T47.5X3|ICD10CM|Poisoning by digestants, assault|Poisoning by digestants, assault +C2879801|T037|AB|T47.5X3A|ICD10CM|Poisoning by digestants, assault, initial encounter|Poisoning by digestants, assault, initial encounter +C2879801|T037|PT|T47.5X3A|ICD10CM|Poisoning by digestants, assault, initial encounter|Poisoning by digestants, assault, initial encounter +C2879802|T037|AB|T47.5X3D|ICD10CM|Poisoning by digestants, assault, subsequent encounter|Poisoning by digestants, assault, subsequent encounter +C2879802|T037|PT|T47.5X3D|ICD10CM|Poisoning by digestants, assault, subsequent encounter|Poisoning by digestants, assault, subsequent encounter +C2879803|T037|AB|T47.5X3S|ICD10CM|Poisoning by digestants, assault, sequela|Poisoning by digestants, assault, sequela +C2879803|T037|PT|T47.5X3S|ICD10CM|Poisoning by digestants, assault, sequela|Poisoning by digestants, assault, sequela +C2879804|T037|AB|T47.5X4|ICD10CM|Poisoning by digestants, undetermined|Poisoning by digestants, undetermined +C2879804|T037|HT|T47.5X4|ICD10CM|Poisoning by digestants, undetermined|Poisoning by digestants, undetermined +C2879805|T037|AB|T47.5X4A|ICD10CM|Poisoning by digestants, undetermined, initial encounter|Poisoning by digestants, undetermined, initial encounter +C2879805|T037|PT|T47.5X4A|ICD10CM|Poisoning by digestants, undetermined, initial encounter|Poisoning by digestants, undetermined, initial encounter +C2879806|T037|AB|T47.5X4D|ICD10CM|Poisoning by digestants, undetermined, subsequent encounter|Poisoning by digestants, undetermined, subsequent encounter +C2879806|T037|PT|T47.5X4D|ICD10CM|Poisoning by digestants, undetermined, subsequent encounter|Poisoning by digestants, undetermined, subsequent encounter +C2879807|T037|AB|T47.5X4S|ICD10CM|Poisoning by digestants, undetermined, sequela|Poisoning by digestants, undetermined, sequela +C2879807|T037|PT|T47.5X4S|ICD10CM|Poisoning by digestants, undetermined, sequela|Poisoning by digestants, undetermined, sequela +C0261889|T046|AB|T47.5X5|ICD10CM|Adverse effect of digestants|Adverse effect of digestants +C0261889|T046|HT|T47.5X5|ICD10CM|Adverse effect of digestants|Adverse effect of digestants +C2879808|T037|AB|T47.5X5A|ICD10CM|Adverse effect of digestants, initial encounter|Adverse effect of digestants, initial encounter +C2879808|T037|PT|T47.5X5A|ICD10CM|Adverse effect of digestants, initial encounter|Adverse effect of digestants, initial encounter +C2879809|T037|AB|T47.5X5D|ICD10CM|Adverse effect of digestants, subsequent encounter|Adverse effect of digestants, subsequent encounter +C2879809|T037|PT|T47.5X5D|ICD10CM|Adverse effect of digestants, subsequent encounter|Adverse effect of digestants, subsequent encounter +C2879810|T037|AB|T47.5X5S|ICD10CM|Adverse effect of digestants, sequela|Adverse effect of digestants, sequela +C2879810|T037|PT|T47.5X5S|ICD10CM|Adverse effect of digestants, sequela|Adverse effect of digestants, sequela +C2879811|T033|AB|T47.5X6|ICD10CM|Underdosing of digestants|Underdosing of digestants +C2879811|T033|HT|T47.5X6|ICD10CM|Underdosing of digestants|Underdosing of digestants +C2879812|T037|AB|T47.5X6A|ICD10CM|Underdosing of digestants, initial encounter|Underdosing of digestants, initial encounter +C2879812|T037|PT|T47.5X6A|ICD10CM|Underdosing of digestants, initial encounter|Underdosing of digestants, initial encounter +C2879813|T037|AB|T47.5X6D|ICD10CM|Underdosing of digestants, subsequent encounter|Underdosing of digestants, subsequent encounter +C2879813|T037|PT|T47.5X6D|ICD10CM|Underdosing of digestants, subsequent encounter|Underdosing of digestants, subsequent encounter +C2879814|T037|AB|T47.5X6S|ICD10CM|Underdosing of digestants, sequela|Underdosing of digestants, sequela +C2879814|T037|PT|T47.5X6S|ICD10CM|Underdosing of digestants, sequela|Underdosing of digestants, sequela +C2879815|T037|AB|T47.6|ICD10CM|Antidiarrheal drugs|Antidiarrheal drugs +C0161616|T037|PS|T47.6|ICD10AE|Antidiarrheal drugs|Antidiarrheal drugs +C0161616|T037|PS|T47.6|ICD10|Antidiarrhoeal drugs|Antidiarrhoeal drugs +C0161616|T037|PX|T47.6|ICD10AE|Poisoning by antidiarrheal drugs|Poisoning by antidiarrheal drugs +C0161616|T037|PX|T47.6|ICD10|Poisoning by antidiarrhoeal drugs|Poisoning by antidiarrhoeal drugs +C2879815|T037|HT|T47.6|ICD10CM|Poisoning by, adverse effect of and underdosing of antidiarrheal drugs|Poisoning by, adverse effect of and underdosing of antidiarrheal drugs +C2879815|T037|AB|T47.6X|ICD10CM|Antidiarrheal drugs|Antidiarrheal drugs +C2879815|T037|HT|T47.6X|ICD10CM|Poisoning by, adverse effect of and underdosing of antidiarrheal drugs|Poisoning by, adverse effect of and underdosing of antidiarrheal drugs +C0161616|T037|ET|T47.6X1|ICD10CM|Poisoning by antidiarrheal drugs NOS|Poisoning by antidiarrheal drugs NOS +C2879816|T037|AB|T47.6X1|ICD10CM|Poisoning by antidiarrheal drugs, accidental (unintentional)|Poisoning by antidiarrheal drugs, accidental (unintentional) +C2879816|T037|HT|T47.6X1|ICD10CM|Poisoning by antidiarrheal drugs, accidental (unintentional)|Poisoning by antidiarrheal drugs, accidental (unintentional) +C2879817|T037|PT|T47.6X1A|ICD10CM|Poisoning by antidiarrheal drugs, accidental (unintentional), initial encounter|Poisoning by antidiarrheal drugs, accidental (unintentional), initial encounter +C2879817|T037|AB|T47.6X1A|ICD10CM|Poisoning by antidiarrheal drugs, accidental, init|Poisoning by antidiarrheal drugs, accidental, init +C2879818|T037|PT|T47.6X1D|ICD10CM|Poisoning by antidiarrheal drugs, accidental (unintentional), subsequent encounter|Poisoning by antidiarrheal drugs, accidental (unintentional), subsequent encounter +C2879818|T037|AB|T47.6X1D|ICD10CM|Poisoning by antidiarrheal drugs, accidental, subs|Poisoning by antidiarrheal drugs, accidental, subs +C2879819|T037|PT|T47.6X1S|ICD10CM|Poisoning by antidiarrheal drugs, accidental (unintentional), sequela|Poisoning by antidiarrheal drugs, accidental (unintentional), sequela +C2879819|T037|AB|T47.6X1S|ICD10CM|Poisoning by antidiarrheal drugs, accidental, sequela|Poisoning by antidiarrheal drugs, accidental, sequela +C2879820|T037|AB|T47.6X2|ICD10CM|Poisoning by antidiarrheal drugs, intentional self-harm|Poisoning by antidiarrheal drugs, intentional self-harm +C2879820|T037|HT|T47.6X2|ICD10CM|Poisoning by antidiarrheal drugs, intentional self-harm|Poisoning by antidiarrheal drugs, intentional self-harm +C2879821|T037|PT|T47.6X2A|ICD10CM|Poisoning by antidiarrheal drugs, intentional self-harm, initial encounter|Poisoning by antidiarrheal drugs, intentional self-harm, initial encounter +C2879821|T037|AB|T47.6X2A|ICD10CM|Poisoning by antidiarrheal drugs, self-harm, init|Poisoning by antidiarrheal drugs, self-harm, init +C2879822|T037|PT|T47.6X2D|ICD10CM|Poisoning by antidiarrheal drugs, intentional self-harm, subsequent encounter|Poisoning by antidiarrheal drugs, intentional self-harm, subsequent encounter +C2879822|T037|AB|T47.6X2D|ICD10CM|Poisoning by antidiarrheal drugs, self-harm, subs|Poisoning by antidiarrheal drugs, self-harm, subs +C2879823|T037|PT|T47.6X2S|ICD10CM|Poisoning by antidiarrheal drugs, intentional self-harm, sequela|Poisoning by antidiarrheal drugs, intentional self-harm, sequela +C2879823|T037|AB|T47.6X2S|ICD10CM|Poisoning by antidiarrheal drugs, self-harm, sequela|Poisoning by antidiarrheal drugs, self-harm, sequela +C2879824|T037|AB|T47.6X3|ICD10CM|Poisoning by antidiarrheal drugs, assault|Poisoning by antidiarrheal drugs, assault +C2879824|T037|HT|T47.6X3|ICD10CM|Poisoning by antidiarrheal drugs, assault|Poisoning by antidiarrheal drugs, assault +C2879825|T037|AB|T47.6X3A|ICD10CM|Poisoning by antidiarrheal drugs, assault, initial encounter|Poisoning by antidiarrheal drugs, assault, initial encounter +C2879825|T037|PT|T47.6X3A|ICD10CM|Poisoning by antidiarrheal drugs, assault, initial encounter|Poisoning by antidiarrheal drugs, assault, initial encounter +C2879826|T037|AB|T47.6X3D|ICD10CM|Poisoning by antidiarrheal drugs, assault, subs encntr|Poisoning by antidiarrheal drugs, assault, subs encntr +C2879826|T037|PT|T47.6X3D|ICD10CM|Poisoning by antidiarrheal drugs, assault, subsequent encounter|Poisoning by antidiarrheal drugs, assault, subsequent encounter +C2879827|T037|AB|T47.6X3S|ICD10CM|Poisoning by antidiarrheal drugs, assault, sequela|Poisoning by antidiarrheal drugs, assault, sequela +C2879827|T037|PT|T47.6X3S|ICD10CM|Poisoning by antidiarrheal drugs, assault, sequela|Poisoning by antidiarrheal drugs, assault, sequela +C2879828|T037|AB|T47.6X4|ICD10CM|Poisoning by antidiarrheal drugs, undetermined|Poisoning by antidiarrheal drugs, undetermined +C2879828|T037|HT|T47.6X4|ICD10CM|Poisoning by antidiarrheal drugs, undetermined|Poisoning by antidiarrheal drugs, undetermined +C2879829|T037|AB|T47.6X4A|ICD10CM|Poisoning by antidiarrheal drugs, undetermined, init encntr|Poisoning by antidiarrheal drugs, undetermined, init encntr +C2879829|T037|PT|T47.6X4A|ICD10CM|Poisoning by antidiarrheal drugs, undetermined, initial encounter|Poisoning by antidiarrheal drugs, undetermined, initial encounter +C2879830|T037|AB|T47.6X4D|ICD10CM|Poisoning by antidiarrheal drugs, undetermined, subs encntr|Poisoning by antidiarrheal drugs, undetermined, subs encntr +C2879830|T037|PT|T47.6X4D|ICD10CM|Poisoning by antidiarrheal drugs, undetermined, subsequent encounter|Poisoning by antidiarrheal drugs, undetermined, subsequent encounter +C2879831|T037|AB|T47.6X4S|ICD10CM|Poisoning by antidiarrheal drugs, undetermined, sequela|Poisoning by antidiarrheal drugs, undetermined, sequela +C2879831|T037|PT|T47.6X4S|ICD10CM|Poisoning by antidiarrheal drugs, undetermined, sequela|Poisoning by antidiarrheal drugs, undetermined, sequela +C2879832|T037|AB|T47.6X5|ICD10CM|Adverse effect of antidiarrheal drugs|Adverse effect of antidiarrheal drugs +C2879832|T037|HT|T47.6X5|ICD10CM|Adverse effect of antidiarrheal drugs|Adverse effect of antidiarrheal drugs +C2879833|T037|AB|T47.6X5A|ICD10CM|Adverse effect of antidiarrheal drugs, initial encounter|Adverse effect of antidiarrheal drugs, initial encounter +C2879833|T037|PT|T47.6X5A|ICD10CM|Adverse effect of antidiarrheal drugs, initial encounter|Adverse effect of antidiarrheal drugs, initial encounter +C2879834|T037|AB|T47.6X5D|ICD10CM|Adverse effect of antidiarrheal drugs, subsequent encounter|Adverse effect of antidiarrheal drugs, subsequent encounter +C2879834|T037|PT|T47.6X5D|ICD10CM|Adverse effect of antidiarrheal drugs, subsequent encounter|Adverse effect of antidiarrheal drugs, subsequent encounter +C2879835|T037|AB|T47.6X5S|ICD10CM|Adverse effect of antidiarrheal drugs, sequela|Adverse effect of antidiarrheal drugs, sequela +C2879835|T037|PT|T47.6X5S|ICD10CM|Adverse effect of antidiarrheal drugs, sequela|Adverse effect of antidiarrheal drugs, sequela +C2879836|T037|AB|T47.6X6|ICD10CM|Underdosing of antidiarrheal drugs|Underdosing of antidiarrheal drugs +C2879836|T037|HT|T47.6X6|ICD10CM|Underdosing of antidiarrheal drugs|Underdosing of antidiarrheal drugs +C2879837|T037|AB|T47.6X6A|ICD10CM|Underdosing of antidiarrheal drugs, initial encounter|Underdosing of antidiarrheal drugs, initial encounter +C2879837|T037|PT|T47.6X6A|ICD10CM|Underdosing of antidiarrheal drugs, initial encounter|Underdosing of antidiarrheal drugs, initial encounter +C2879838|T037|AB|T47.6X6D|ICD10CM|Underdosing of antidiarrheal drugs, subsequent encounter|Underdosing of antidiarrheal drugs, subsequent encounter +C2879838|T037|PT|T47.6X6D|ICD10CM|Underdosing of antidiarrheal drugs, subsequent encounter|Underdosing of antidiarrheal drugs, subsequent encounter +C2879839|T037|AB|T47.6X6S|ICD10CM|Underdosing of antidiarrheal drugs, sequela|Underdosing of antidiarrheal drugs, sequela +C2879839|T037|PT|T47.6X6S|ICD10CM|Underdosing of antidiarrheal drugs, sequela|Underdosing of antidiarrheal drugs, sequela +C0161617|T037|PS|T47.7|ICD10|Emetics|Emetics +C0161617|T037|PX|T47.7|ICD10|Poisoning by emetics|Poisoning by emetics +C2879840|T037|AB|T47.7|ICD10CM|Poisoning by, adverse effect of and underdosing of emetics|Poisoning by, adverse effect of and underdosing of emetics +C2879840|T037|HT|T47.7|ICD10CM|Poisoning by, adverse effect of and underdosing of emetics|Poisoning by, adverse effect of and underdosing of emetics +C2879840|T037|HT|T47.7X|ICD10CM|Poisoning by, adverse effect of and underdosing of emetics|Poisoning by, adverse effect of and underdosing of emetics +C2879840|T037|AB|T47.7X|ICD10CM|Poisoning by, adverse effect of and underdosing of emetics|Poisoning by, adverse effect of and underdosing of emetics +C0161617|T037|ET|T47.7X1|ICD10CM|Poisoning by emetics NOS|Poisoning by emetics NOS +C2879841|T037|AB|T47.7X1|ICD10CM|Poisoning by emetics, accidental (unintentional)|Poisoning by emetics, accidental (unintentional) +C2879841|T037|HT|T47.7X1|ICD10CM|Poisoning by emetics, accidental (unintentional)|Poisoning by emetics, accidental (unintentional) +C2879842|T037|AB|T47.7X1A|ICD10CM|Poisoning by emetics, accidental (unintentional), init|Poisoning by emetics, accidental (unintentional), init +C2879842|T037|PT|T47.7X1A|ICD10CM|Poisoning by emetics, accidental (unintentional), initial encounter|Poisoning by emetics, accidental (unintentional), initial encounter +C2879843|T037|AB|T47.7X1D|ICD10CM|Poisoning by emetics, accidental (unintentional), subs|Poisoning by emetics, accidental (unintentional), subs +C2879843|T037|PT|T47.7X1D|ICD10CM|Poisoning by emetics, accidental (unintentional), subsequent encounter|Poisoning by emetics, accidental (unintentional), subsequent encounter +C2879844|T037|AB|T47.7X1S|ICD10CM|Poisoning by emetics, accidental (unintentional), sequela|Poisoning by emetics, accidental (unintentional), sequela +C2879844|T037|PT|T47.7X1S|ICD10CM|Poisoning by emetics, accidental (unintentional), sequela|Poisoning by emetics, accidental (unintentional), sequela +C2879845|T037|AB|T47.7X2|ICD10CM|Poisoning by emetics, intentional self-harm|Poisoning by emetics, intentional self-harm +C2879845|T037|HT|T47.7X2|ICD10CM|Poisoning by emetics, intentional self-harm|Poisoning by emetics, intentional self-harm +C2879846|T037|AB|T47.7X2A|ICD10CM|Poisoning by emetics, intentional self-harm, init encntr|Poisoning by emetics, intentional self-harm, init encntr +C2879846|T037|PT|T47.7X2A|ICD10CM|Poisoning by emetics, intentional self-harm, initial encounter|Poisoning by emetics, intentional self-harm, initial encounter +C2879847|T037|AB|T47.7X2D|ICD10CM|Poisoning by emetics, intentional self-harm, subs encntr|Poisoning by emetics, intentional self-harm, subs encntr +C2879847|T037|PT|T47.7X2D|ICD10CM|Poisoning by emetics, intentional self-harm, subsequent encounter|Poisoning by emetics, intentional self-harm, subsequent encounter +C2879848|T037|AB|T47.7X2S|ICD10CM|Poisoning by emetics, intentional self-harm, sequela|Poisoning by emetics, intentional self-harm, sequela +C2879848|T037|PT|T47.7X2S|ICD10CM|Poisoning by emetics, intentional self-harm, sequela|Poisoning by emetics, intentional self-harm, sequela +C2879849|T037|AB|T47.7X3|ICD10CM|Poisoning by emetics, assault|Poisoning by emetics, assault +C2879849|T037|HT|T47.7X3|ICD10CM|Poisoning by emetics, assault|Poisoning by emetics, assault +C2879850|T037|AB|T47.7X3A|ICD10CM|Poisoning by emetics, assault, initial encounter|Poisoning by emetics, assault, initial encounter +C2879850|T037|PT|T47.7X3A|ICD10CM|Poisoning by emetics, assault, initial encounter|Poisoning by emetics, assault, initial encounter +C2879851|T037|AB|T47.7X3D|ICD10CM|Poisoning by emetics, assault, subsequent encounter|Poisoning by emetics, assault, subsequent encounter +C2879851|T037|PT|T47.7X3D|ICD10CM|Poisoning by emetics, assault, subsequent encounter|Poisoning by emetics, assault, subsequent encounter +C2879852|T037|AB|T47.7X3S|ICD10CM|Poisoning by emetics, assault, sequela|Poisoning by emetics, assault, sequela +C2879852|T037|PT|T47.7X3S|ICD10CM|Poisoning by emetics, assault, sequela|Poisoning by emetics, assault, sequela +C2879853|T037|AB|T47.7X4|ICD10CM|Poisoning by emetics, undetermined|Poisoning by emetics, undetermined +C2879853|T037|HT|T47.7X4|ICD10CM|Poisoning by emetics, undetermined|Poisoning by emetics, undetermined +C2879854|T037|AB|T47.7X4A|ICD10CM|Poisoning by emetics, undetermined, initial encounter|Poisoning by emetics, undetermined, initial encounter +C2879854|T037|PT|T47.7X4A|ICD10CM|Poisoning by emetics, undetermined, initial encounter|Poisoning by emetics, undetermined, initial encounter +C2879855|T037|AB|T47.7X4D|ICD10CM|Poisoning by emetics, undetermined, subsequent encounter|Poisoning by emetics, undetermined, subsequent encounter +C2879855|T037|PT|T47.7X4D|ICD10CM|Poisoning by emetics, undetermined, subsequent encounter|Poisoning by emetics, undetermined, subsequent encounter +C2879856|T037|AB|T47.7X4S|ICD10CM|Poisoning by emetics, undetermined, sequela|Poisoning by emetics, undetermined, sequela +C2879856|T037|PT|T47.7X4S|ICD10CM|Poisoning by emetics, undetermined, sequela|Poisoning by emetics, undetermined, sequela +C0261891|T046|AB|T47.7X5|ICD10CM|Adverse effect of emetics|Adverse effect of emetics +C0261891|T046|HT|T47.7X5|ICD10CM|Adverse effect of emetics|Adverse effect of emetics +C2879857|T037|AB|T47.7X5A|ICD10CM|Adverse effect of emetics, initial encounter|Adverse effect of emetics, initial encounter +C2879857|T037|PT|T47.7X5A|ICD10CM|Adverse effect of emetics, initial encounter|Adverse effect of emetics, initial encounter +C2879858|T037|AB|T47.7X5D|ICD10CM|Adverse effect of emetics, subsequent encounter|Adverse effect of emetics, subsequent encounter +C2879858|T037|PT|T47.7X5D|ICD10CM|Adverse effect of emetics, subsequent encounter|Adverse effect of emetics, subsequent encounter +C2879859|T037|AB|T47.7X5S|ICD10CM|Adverse effect of emetics, sequela|Adverse effect of emetics, sequela +C2879859|T037|PT|T47.7X5S|ICD10CM|Adverse effect of emetics, sequela|Adverse effect of emetics, sequela +C2879860|T033|AB|T47.7X6|ICD10CM|Underdosing of emetics|Underdosing of emetics +C2879860|T033|HT|T47.7X6|ICD10CM|Underdosing of emetics|Underdosing of emetics +C2879861|T037|AB|T47.7X6A|ICD10CM|Underdosing of emetics, initial encounter|Underdosing of emetics, initial encounter +C2879861|T037|PT|T47.7X6A|ICD10CM|Underdosing of emetics, initial encounter|Underdosing of emetics, initial encounter +C2879862|T037|AB|T47.7X6D|ICD10CM|Underdosing of emetics, subsequent encounter|Underdosing of emetics, subsequent encounter +C2879862|T037|PT|T47.7X6D|ICD10CM|Underdosing of emetics, subsequent encounter|Underdosing of emetics, subsequent encounter +C2879863|T037|AB|T47.7X6S|ICD10CM|Underdosing of emetics, sequela|Underdosing of emetics, sequela +C2879863|T037|PT|T47.7X6S|ICD10CM|Underdosing of emetics, sequela|Underdosing of emetics, sequela +C2879864|T037|AB|T47.8|ICD10CM|Agents primarily affecting gastrointestinal system|Agents primarily affecting gastrointestinal system +C0478452|T037|PS|T47.8|ICD10|Other agents primarily affecting the gastrointestinal system|Other agents primarily affecting the gastrointestinal system +C0478452|T037|PX|T47.8|ICD10|Poisoning by other agents primarily affecting the gastrointestinal system|Poisoning by other agents primarily affecting the gastrointestinal system +C2879864|T037|AB|T47.8X|ICD10CM|Agents primarily affecting gastrointestinal system|Agents primarily affecting gastrointestinal system +C2879865|T037|AB|T47.8X1|ICD10CM|Poisoning by oth agents aff GI sys, accidental|Poisoning by oth agents aff GI sys, accidental +C0478452|T037|ET|T47.8X1|ICD10CM|Poisoning by other agents primarily affecting gastrointestinal system NOS|Poisoning by other agents primarily affecting gastrointestinal system NOS +C2879865|T037|HT|T47.8X1|ICD10CM|Poisoning by other agents primarily affecting gastrointestinal system, accidental (unintentional)|Poisoning by other agents primarily affecting gastrointestinal system, accidental (unintentional) +C2879866|T037|AB|T47.8X1A|ICD10CM|Poisoning by oth agents aff GI sys, accidental, init|Poisoning by oth agents aff GI sys, accidental, init +C2879867|T037|AB|T47.8X1D|ICD10CM|Poisoning by oth agents aff GI sys, accidental, subs|Poisoning by oth agents aff GI sys, accidental, subs +C2879868|T037|AB|T47.8X1S|ICD10CM|Poisoning by oth agents aff GI sys, accidental, sequela|Poisoning by oth agents aff GI sys, accidental, sequela +C2879869|T037|AB|T47.8X2|ICD10CM|Poisoning by oth agents aff GI sys, self-harm|Poisoning by oth agents aff GI sys, self-harm +C2879869|T037|HT|T47.8X2|ICD10CM|Poisoning by other agents primarily affecting gastrointestinal system, intentional self-harm|Poisoning by other agents primarily affecting gastrointestinal system, intentional self-harm +C2879870|T037|AB|T47.8X2A|ICD10CM|Poisoning by oth agents aff GI sys, self-harm, init|Poisoning by oth agents aff GI sys, self-harm, init +C2879871|T037|AB|T47.8X2D|ICD10CM|Poisoning by oth agents aff GI sys, self-harm, subs|Poisoning by oth agents aff GI sys, self-harm, subs +C2879872|T037|AB|T47.8X2S|ICD10CM|Poisoning by oth agents aff GI sys, self-harm, sequela|Poisoning by oth agents aff GI sys, self-harm, sequela +C2879873|T037|AB|T47.8X3|ICD10CM|Poisoning by oth agents primarily affecting GI sys, assault|Poisoning by oth agents primarily affecting GI sys, assault +C2879873|T037|HT|T47.8X3|ICD10CM|Poisoning by other agents primarily affecting gastrointestinal system, assault|Poisoning by other agents primarily affecting gastrointestinal system, assault +C2879874|T037|AB|T47.8X3A|ICD10CM|Poisoning by oth agents aff GI sys, assault, init|Poisoning by oth agents aff GI sys, assault, init +C2879874|T037|PT|T47.8X3A|ICD10CM|Poisoning by other agents primarily affecting gastrointestinal system, assault, initial encounter|Poisoning by other agents primarily affecting gastrointestinal system, assault, initial encounter +C2879875|T037|AB|T47.8X3D|ICD10CM|Poisoning by oth agents aff GI sys, assault, subs|Poisoning by oth agents aff GI sys, assault, subs +C2879875|T037|PT|T47.8X3D|ICD10CM|Poisoning by other agents primarily affecting gastrointestinal system, assault, subsequent encounter|Poisoning by other agents primarily affecting gastrointestinal system, assault, subsequent encounter +C2879876|T037|AB|T47.8X3S|ICD10CM|Poisoning by oth agents aff GI sys, assault, sequela|Poisoning by oth agents aff GI sys, assault, sequela +C2879876|T037|PT|T47.8X3S|ICD10CM|Poisoning by other agents primarily affecting gastrointestinal system, assault, sequela|Poisoning by other agents primarily affecting gastrointestinal system, assault, sequela +C2879877|T037|AB|T47.8X4|ICD10CM|Poisoning by oth agents aff GI sys, undetermined|Poisoning by oth agents aff GI sys, undetermined +C2879877|T037|HT|T47.8X4|ICD10CM|Poisoning by other agents primarily affecting gastrointestinal system, undetermined|Poisoning by other agents primarily affecting gastrointestinal system, undetermined +C2879878|T037|AB|T47.8X4A|ICD10CM|Poisoning by oth agents aff GI sys, undetermined, init|Poisoning by oth agents aff GI sys, undetermined, init +C2879879|T037|AB|T47.8X4D|ICD10CM|Poisoning by oth agents aff GI sys, undetermined, subs|Poisoning by oth agents aff GI sys, undetermined, subs +C2879880|T037|AB|T47.8X4S|ICD10CM|Poisoning by oth agents aff GI sys, undetermined, sequela|Poisoning by oth agents aff GI sys, undetermined, sequela +C2879880|T037|PT|T47.8X4S|ICD10CM|Poisoning by other agents primarily affecting gastrointestinal system, undetermined, sequela|Poisoning by other agents primarily affecting gastrointestinal system, undetermined, sequela +C2879881|T037|AB|T47.8X5|ICD10CM|Adverse effect of agents primarily affecting GI sys|Adverse effect of agents primarily affecting GI sys +C2879881|T037|HT|T47.8X5|ICD10CM|Adverse effect of other agents primarily affecting gastrointestinal system|Adverse effect of other agents primarily affecting gastrointestinal system +C2879882|T037|AB|T47.8X5A|ICD10CM|Adverse effect of agents primarily affecting GI sys, init|Adverse effect of agents primarily affecting GI sys, init +C2879882|T037|PT|T47.8X5A|ICD10CM|Adverse effect of other agents primarily affecting gastrointestinal system, initial encounter|Adverse effect of other agents primarily affecting gastrointestinal system, initial encounter +C2879883|T037|AB|T47.8X5D|ICD10CM|Adverse effect of agents primarily affecting GI sys, subs|Adverse effect of agents primarily affecting GI sys, subs +C2879883|T037|PT|T47.8X5D|ICD10CM|Adverse effect of other agents primarily affecting gastrointestinal system, subsequent encounter|Adverse effect of other agents primarily affecting gastrointestinal system, subsequent encounter +C2879884|T037|AB|T47.8X5S|ICD10CM|Adverse effect of agents primarily affecting GI sys, sequela|Adverse effect of agents primarily affecting GI sys, sequela +C2879884|T037|PT|T47.8X5S|ICD10CM|Adverse effect of other agents primarily affecting gastrointestinal system, sequela|Adverse effect of other agents primarily affecting gastrointestinal system, sequela +C2879885|T037|AB|T47.8X6|ICD10CM|Underdosing of agents primarily affecting GI sys|Underdosing of agents primarily affecting GI sys +C2879885|T037|HT|T47.8X6|ICD10CM|Underdosing of other agents primarily affecting gastrointestinal system|Underdosing of other agents primarily affecting gastrointestinal system +C2879886|T037|AB|T47.8X6A|ICD10CM|Underdosing of agents primarily affecting GI sys, init|Underdosing of agents primarily affecting GI sys, init +C2879886|T037|PT|T47.8X6A|ICD10CM|Underdosing of other agents primarily affecting gastrointestinal system, initial encounter|Underdosing of other agents primarily affecting gastrointestinal system, initial encounter +C2879887|T037|AB|T47.8X6D|ICD10CM|Underdosing of agents primarily affecting GI sys, subs|Underdosing of agents primarily affecting GI sys, subs +C2879887|T037|PT|T47.8X6D|ICD10CM|Underdosing of other agents primarily affecting gastrointestinal system, subsequent encounter|Underdosing of other agents primarily affecting gastrointestinal system, subsequent encounter +C2879888|T037|AB|T47.8X6S|ICD10CM|Underdosing of agents primarily affecting GI sys, sequela|Underdosing of agents primarily affecting GI sys, sequela +C2879888|T037|PT|T47.8X6S|ICD10CM|Underdosing of other agents primarily affecting gastrointestinal system, sequela|Underdosing of other agents primarily affecting gastrointestinal system, sequela +C0161619|T037|PS|T47.9|ICD10|Agent primarily affecting the gastrointestinal system, unspecified|Agent primarily affecting the gastrointestinal system, unspecified +C0161619|T037|PX|T47.9|ICD10|Poisoning by agent primarily affecting the gastrointestinal system, unspecified|Poisoning by agent primarily affecting the gastrointestinal system, unspecified +C2879889|T037|AB|T47.9|ICD10CM|Unsp agents primarily affecting the gastrointestinal system|Unsp agents primarily affecting the gastrointestinal system +C0161610|T037|ET|T47.91|ICD10CM|Poisoning by agents primarily affecting the gastrointestinal system NOS|Poisoning by agents primarily affecting the gastrointestinal system NOS +C2879890|T037|AB|T47.91|ICD10CM|Poisoning by unsp agents aff the GI sys, accidental|Poisoning by unsp agents aff the GI sys, accidental +C2879891|T037|AB|T47.91XA|ICD10CM|Poisoning by unsp agents aff the GI sys, accidental, init|Poisoning by unsp agents aff the GI sys, accidental, init +C2879892|T037|AB|T47.91XD|ICD10CM|Poisoning by unsp agents aff the GI sys, accidental, subs|Poisoning by unsp agents aff the GI sys, accidental, subs +C2879893|T037|AB|T47.91XS|ICD10CM|Poisoning by unsp agents aff the GI sys, acc, sequela|Poisoning by unsp agents aff the GI sys, acc, sequela +C2879894|T037|AB|T47.92|ICD10CM|Poisoning by unsp agents aff the GI sys, self-harm|Poisoning by unsp agents aff the GI sys, self-harm +C2879895|T037|AB|T47.92XA|ICD10CM|Poisoning by unsp agents aff the GI sys, self-harm, init|Poisoning by unsp agents aff the GI sys, self-harm, init +C2879896|T037|AB|T47.92XD|ICD10CM|Poisoning by unsp agents aff the GI sys, self-harm, subs|Poisoning by unsp agents aff the GI sys, self-harm, subs +C2879897|T037|AB|T47.92XS|ICD10CM|Poisoning by unsp agents aff the GI sys, self-harm, sequela|Poisoning by unsp agents aff the GI sys, self-harm, sequela +C2879898|T037|AB|T47.93|ICD10CM|Poisoning by unsp agents aff the GI sys, assault|Poisoning by unsp agents aff the GI sys, assault +C2879898|T037|HT|T47.93|ICD10CM|Poisoning by unspecified agents primarily affecting the gastrointestinal system, assault|Poisoning by unspecified agents primarily affecting the gastrointestinal system, assault +C2879899|T037|AB|T47.93XA|ICD10CM|Poisoning by unsp agents aff the GI sys, assault, init|Poisoning by unsp agents aff the GI sys, assault, init +C2879900|T037|AB|T47.93XD|ICD10CM|Poisoning by unsp agents aff the GI sys, assault, subs|Poisoning by unsp agents aff the GI sys, assault, subs +C2879901|T037|AB|T47.93XS|ICD10CM|Poisoning by unsp agents aff the GI sys, assault, sequela|Poisoning by unsp agents aff the GI sys, assault, sequela +C2879901|T037|PT|T47.93XS|ICD10CM|Poisoning by unspecified agents primarily affecting the gastrointestinal system, assault, sequela|Poisoning by unspecified agents primarily affecting the gastrointestinal system, assault, sequela +C2879902|T037|AB|T47.94|ICD10CM|Poisoning by unsp agents aff the GI sys, undetermined|Poisoning by unsp agents aff the GI sys, undetermined +C2879902|T037|HT|T47.94|ICD10CM|Poisoning by unspecified agents primarily affecting the gastrointestinal system, undetermined|Poisoning by unspecified agents primarily affecting the gastrointestinal system, undetermined +C2879903|T037|AB|T47.94XA|ICD10CM|Poisoning by unsp agents aff the GI sys, undetermined, init|Poisoning by unsp agents aff the GI sys, undetermined, init +C2879904|T037|AB|T47.94XD|ICD10CM|Poisoning by unsp agents aff the GI sys, undetermined, subs|Poisoning by unsp agents aff the GI sys, undetermined, subs +C2879905|T037|AB|T47.94XS|ICD10CM|Poisoning by unsp agents aff the GI sys, undet, sequela|Poisoning by unsp agents aff the GI sys, undet, sequela +C2879906|T037|AB|T47.95|ICD10CM|Adverse effect of unsp agents primarily affecting the GI sys|Adverse effect of unsp agents primarily affecting the GI sys +C2879906|T037|HT|T47.95|ICD10CM|Adverse effect of unspecified agents primarily affecting the gastrointestinal system|Adverse effect of unspecified agents primarily affecting the gastrointestinal system +C2879907|T037|AB|T47.95XA|ICD10CM|Adverse effect of unsp agents aff the GI sys, init|Adverse effect of unsp agents aff the GI sys, init +C2879908|T037|AB|T47.95XD|ICD10CM|Adverse effect of unsp agents aff the GI sys, subs|Adverse effect of unsp agents aff the GI sys, subs +C2879909|T037|AB|T47.95XS|ICD10CM|Adverse effect of unsp agents aff the GI sys, sequela|Adverse effect of unsp agents aff the GI sys, sequela +C2879909|T037|PT|T47.95XS|ICD10CM|Adverse effect of unspecified agents primarily affecting the gastrointestinal system, sequela|Adverse effect of unspecified agents primarily affecting the gastrointestinal system, sequela +C2879910|T037|AB|T47.96|ICD10CM|Underdosing of unsp agents primarily affecting the GI sys|Underdosing of unsp agents primarily affecting the GI sys +C2879910|T037|HT|T47.96|ICD10CM|Underdosing of unspecified agents primarily affecting the gastrointestinal system|Underdosing of unspecified agents primarily affecting the gastrointestinal system +C2879911|T037|AB|T47.96XA|ICD10CM|Underdosing of unsp agents aff the GI sys, init|Underdosing of unsp agents aff the GI sys, init +C2879911|T037|PT|T47.96XA|ICD10CM|Underdosing of unspecified agents primarily affecting the gastrointestinal system, initial encounter|Underdosing of unspecified agents primarily affecting the gastrointestinal system, initial encounter +C2879912|T037|AB|T47.96XD|ICD10CM|Underdosing of unsp agents aff the GI sys, subs|Underdosing of unsp agents aff the GI sys, subs +C2879913|T037|AB|T47.96XS|ICD10CM|Underdosing of unsp agents aff the GI sys, sequela|Underdosing of unsp agents aff the GI sys, sequela +C2879913|T037|PT|T47.96XS|ICD10CM|Underdosing of unspecified agents primarily affecting the gastrointestinal system, sequela|Underdosing of unspecified agents primarily affecting the gastrointestinal system, sequela +C2879914|T037|AB|T48|ICD10CM|Agents prim act on smooth and skeletal musc and the resp sys|Agents prim act on smooth and skeletal musc and the resp sys +C0161629|T037|HT|T48|ICD10|Poisoning by agents primarily acting on smooth and skeletal muscles and the respiratory system|Poisoning by agents primarily acting on smooth and skeletal muscles and the respiratory system +C2879915|T037|AB|T48.0|ICD10CM|Oxytocic drugs|Oxytocic drugs +C0161630|T037|PS|T48.0|ICD10|Oxytocic drugs|Oxytocic drugs +C0161630|T037|PX|T48.0|ICD10|Poisoning by oxytocic drugs|Poisoning by oxytocic drugs +C2879915|T037|HT|T48.0|ICD10CM|Poisoning by, adverse effect of and underdosing of oxytocic drugs|Poisoning by, adverse effect of and underdosing of oxytocic drugs +C2879915|T037|AB|T48.0X|ICD10CM|Oxytocic drugs|Oxytocic drugs +C2879915|T037|HT|T48.0X|ICD10CM|Poisoning by, adverse effect of and underdosing of oxytocic drugs|Poisoning by, adverse effect of and underdosing of oxytocic drugs +C0161630|T037|ET|T48.0X1|ICD10CM|Poisoning by oxytocic drugs NOS|Poisoning by oxytocic drugs NOS +C2879916|T037|AB|T48.0X1|ICD10CM|Poisoning by oxytocic drugs, accidental (unintentional)|Poisoning by oxytocic drugs, accidental (unintentional) +C2879916|T037|HT|T48.0X1|ICD10CM|Poisoning by oxytocic drugs, accidental (unintentional)|Poisoning by oxytocic drugs, accidental (unintentional) +C2879917|T037|PT|T48.0X1A|ICD10CM|Poisoning by oxytocic drugs, accidental (unintentional), initial encounter|Poisoning by oxytocic drugs, accidental (unintentional), initial encounter +C2879917|T037|AB|T48.0X1A|ICD10CM|Poisoning by oxytocic drugs, accidental, init|Poisoning by oxytocic drugs, accidental, init +C2879918|T037|PT|T48.0X1D|ICD10CM|Poisoning by oxytocic drugs, accidental (unintentional), subsequent encounter|Poisoning by oxytocic drugs, accidental (unintentional), subsequent encounter +C2879918|T037|AB|T48.0X1D|ICD10CM|Poisoning by oxytocic drugs, accidental, subs|Poisoning by oxytocic drugs, accidental, subs +C2879919|T037|PT|T48.0X1S|ICD10CM|Poisoning by oxytocic drugs, accidental (unintentional), sequela|Poisoning by oxytocic drugs, accidental (unintentional), sequela +C2879919|T037|AB|T48.0X1S|ICD10CM|Poisoning by oxytocic drugs, accidental, sequela|Poisoning by oxytocic drugs, accidental, sequela +C2879920|T037|AB|T48.0X2|ICD10CM|Poisoning by oxytocic drugs, intentional self-harm|Poisoning by oxytocic drugs, intentional self-harm +C2879920|T037|HT|T48.0X2|ICD10CM|Poisoning by oxytocic drugs, intentional self-harm|Poisoning by oxytocic drugs, intentional self-harm +C2879921|T037|AB|T48.0X2A|ICD10CM|Poisoning by oxytocic drugs, intentional self-harm, init|Poisoning by oxytocic drugs, intentional self-harm, init +C2879921|T037|PT|T48.0X2A|ICD10CM|Poisoning by oxytocic drugs, intentional self-harm, initial encounter|Poisoning by oxytocic drugs, intentional self-harm, initial encounter +C2879922|T037|AB|T48.0X2D|ICD10CM|Poisoning by oxytocic drugs, intentional self-harm, subs|Poisoning by oxytocic drugs, intentional self-harm, subs +C2879922|T037|PT|T48.0X2D|ICD10CM|Poisoning by oxytocic drugs, intentional self-harm, subsequent encounter|Poisoning by oxytocic drugs, intentional self-harm, subsequent encounter +C2879923|T037|AB|T48.0X2S|ICD10CM|Poisoning by oxytocic drugs, intentional self-harm, sequela|Poisoning by oxytocic drugs, intentional self-harm, sequela +C2879923|T037|PT|T48.0X2S|ICD10CM|Poisoning by oxytocic drugs, intentional self-harm, sequela|Poisoning by oxytocic drugs, intentional self-harm, sequela +C2879924|T037|AB|T48.0X3|ICD10CM|Poisoning by oxytocic drugs, assault|Poisoning by oxytocic drugs, assault +C2879924|T037|HT|T48.0X3|ICD10CM|Poisoning by oxytocic drugs, assault|Poisoning by oxytocic drugs, assault +C2879925|T037|AB|T48.0X3A|ICD10CM|Poisoning by oxytocic drugs, assault, initial encounter|Poisoning by oxytocic drugs, assault, initial encounter +C2879925|T037|PT|T48.0X3A|ICD10CM|Poisoning by oxytocic drugs, assault, initial encounter|Poisoning by oxytocic drugs, assault, initial encounter +C2879926|T037|AB|T48.0X3D|ICD10CM|Poisoning by oxytocic drugs, assault, subsequent encounter|Poisoning by oxytocic drugs, assault, subsequent encounter +C2879926|T037|PT|T48.0X3D|ICD10CM|Poisoning by oxytocic drugs, assault, subsequent encounter|Poisoning by oxytocic drugs, assault, subsequent encounter +C2879927|T037|AB|T48.0X3S|ICD10CM|Poisoning by oxytocic drugs, assault, sequela|Poisoning by oxytocic drugs, assault, sequela +C2879927|T037|PT|T48.0X3S|ICD10CM|Poisoning by oxytocic drugs, assault, sequela|Poisoning by oxytocic drugs, assault, sequela +C2879928|T037|AB|T48.0X4|ICD10CM|Poisoning by oxytocic drugs, undetermined|Poisoning by oxytocic drugs, undetermined +C2879928|T037|HT|T48.0X4|ICD10CM|Poisoning by oxytocic drugs, undetermined|Poisoning by oxytocic drugs, undetermined +C2879929|T037|AB|T48.0X4A|ICD10CM|Poisoning by oxytocic drugs, undetermined, initial encounter|Poisoning by oxytocic drugs, undetermined, initial encounter +C2879929|T037|PT|T48.0X4A|ICD10CM|Poisoning by oxytocic drugs, undetermined, initial encounter|Poisoning by oxytocic drugs, undetermined, initial encounter +C2879930|T037|AB|T48.0X4D|ICD10CM|Poisoning by oxytocic drugs, undetermined, subs encntr|Poisoning by oxytocic drugs, undetermined, subs encntr +C2879930|T037|PT|T48.0X4D|ICD10CM|Poisoning by oxytocic drugs, undetermined, subsequent encounter|Poisoning by oxytocic drugs, undetermined, subsequent encounter +C2879931|T037|AB|T48.0X4S|ICD10CM|Poisoning by oxytocic drugs, undetermined, sequela|Poisoning by oxytocic drugs, undetermined, sequela +C2879931|T037|PT|T48.0X4S|ICD10CM|Poisoning by oxytocic drugs, undetermined, sequela|Poisoning by oxytocic drugs, undetermined, sequela +C2879932|T037|AB|T48.0X5|ICD10CM|Adverse effect of oxytocic drugs|Adverse effect of oxytocic drugs +C2879932|T037|HT|T48.0X5|ICD10CM|Adverse effect of oxytocic drugs|Adverse effect of oxytocic drugs +C2879933|T037|AB|T48.0X5A|ICD10CM|Adverse effect of oxytocic drugs, initial encounter|Adverse effect of oxytocic drugs, initial encounter +C2879933|T037|PT|T48.0X5A|ICD10CM|Adverse effect of oxytocic drugs, initial encounter|Adverse effect of oxytocic drugs, initial encounter +C2879934|T037|AB|T48.0X5D|ICD10CM|Adverse effect of oxytocic drugs, subsequent encounter|Adverse effect of oxytocic drugs, subsequent encounter +C2879934|T037|PT|T48.0X5D|ICD10CM|Adverse effect of oxytocic drugs, subsequent encounter|Adverse effect of oxytocic drugs, subsequent encounter +C2879935|T037|AB|T48.0X5S|ICD10CM|Adverse effect of oxytocic drugs, sequela|Adverse effect of oxytocic drugs, sequela +C2879935|T037|PT|T48.0X5S|ICD10CM|Adverse effect of oxytocic drugs, sequela|Adverse effect of oxytocic drugs, sequela +C2879936|T037|AB|T48.0X6|ICD10CM|Underdosing of oxytocic drugs|Underdosing of oxytocic drugs +C2879936|T037|HT|T48.0X6|ICD10CM|Underdosing of oxytocic drugs|Underdosing of oxytocic drugs +C2879937|T037|AB|T48.0X6A|ICD10CM|Underdosing of oxytocic drugs, initial encounter|Underdosing of oxytocic drugs, initial encounter +C2879937|T037|PT|T48.0X6A|ICD10CM|Underdosing of oxytocic drugs, initial encounter|Underdosing of oxytocic drugs, initial encounter +C2879938|T037|AB|T48.0X6D|ICD10CM|Underdosing of oxytocic drugs, subsequent encounter|Underdosing of oxytocic drugs, subsequent encounter +C2879938|T037|PT|T48.0X6D|ICD10CM|Underdosing of oxytocic drugs, subsequent encounter|Underdosing of oxytocic drugs, subsequent encounter +C2879939|T037|AB|T48.0X6S|ICD10CM|Underdosing of oxytocic drugs, sequela|Underdosing of oxytocic drugs, sequela +C2879939|T037|PT|T48.0X6S|ICD10CM|Underdosing of oxytocic drugs, sequela|Underdosing of oxytocic drugs, sequela +C0496996|T037|PX|T48.1|ICD10|Poisoning by skeletal muscle relaxants [neuromuscular blocking agents]|Poisoning by skeletal muscle relaxants [neuromuscular blocking agents] +C2879940|T037|AB|T48.1|ICD10CM|Skeletal muscle relaxants|Skeletal muscle relaxants +C0496996|T037|PS|T48.1|ICD10|Skeletal muscle relaxants [neuromuscular blocking agents]|Skeletal muscle relaxants [neuromuscular blocking agents] +C2879940|T037|AB|T48.1X|ICD10CM|Skeletal muscle relaxants|Skeletal muscle relaxants +C0496996|T037|ET|T48.1X1|ICD10CM|Poisoning by skeletal muscle relaxants [neuromuscular blocking agents] NOS|Poisoning by skeletal muscle relaxants [neuromuscular blocking agents] NOS +C2117666|T037|HT|T48.1X1|ICD10CM|Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], accidental (unintentional)|Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], accidental (unintentional) +C2117666|T037|AB|T48.1X1|ICD10CM|Poisoning by skeletal muscle relaxants, accidental|Poisoning by skeletal muscle relaxants, accidental +C2879942|T037|AB|T48.1X1A|ICD10CM|Poisoning by skeletal muscle relaxants, accidental, init|Poisoning by skeletal muscle relaxants, accidental, init +C2879943|T037|AB|T48.1X1D|ICD10CM|Poisoning by skeletal muscle relaxants, accidental, subs|Poisoning by skeletal muscle relaxants, accidental, subs +C2879944|T037|AB|T48.1X1S|ICD10CM|Poisoning by skeletal muscle relaxants, accidental, sequela|Poisoning by skeletal muscle relaxants, accidental, sequela +C2879945|T037|HT|T48.1X2|ICD10CM|Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], intentional self-harm|Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], intentional self-harm +C2879945|T037|AB|T48.1X2|ICD10CM|Poisoning by skeletal muscle relaxants, self-harm|Poisoning by skeletal muscle relaxants, self-harm +C2879946|T037|AB|T48.1X2A|ICD10CM|Poisoning by skeletal muscle relaxants, self-harm, init|Poisoning by skeletal muscle relaxants, self-harm, init +C2879947|T037|AB|T48.1X2D|ICD10CM|Poisoning by skeletal muscle relaxants, self-harm, subs|Poisoning by skeletal muscle relaxants, self-harm, subs +C2879948|T037|AB|T48.1X2S|ICD10CM|Poisoning by skeletal muscle relaxants, self-harm, sequela|Poisoning by skeletal muscle relaxants, self-harm, sequela +C2879949|T037|HT|T48.1X3|ICD10CM|Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault|Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault +C2879949|T037|AB|T48.1X3|ICD10CM|Poisoning by skeletal muscle relaxants, assault|Poisoning by skeletal muscle relaxants, assault +C2879950|T037|PT|T48.1X3A|ICD10CM|Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault, initial encounter|Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault, initial encounter +C2879950|T037|AB|T48.1X3A|ICD10CM|Poisoning by skeletal muscle relaxants, assault, init encntr|Poisoning by skeletal muscle relaxants, assault, init encntr +C2879951|T037|AB|T48.1X3D|ICD10CM|Poisoning by skeletal muscle relaxants, assault, subs encntr|Poisoning by skeletal muscle relaxants, assault, subs encntr +C2879952|T037|PT|T48.1X3S|ICD10CM|Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault, sequela|Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault, sequela +C2879952|T037|AB|T48.1X3S|ICD10CM|Poisoning by skeletal muscle relaxants, assault, sequela|Poisoning by skeletal muscle relaxants, assault, sequela +C2879953|T037|HT|T48.1X4|ICD10CM|Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], undetermined|Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], undetermined +C2879953|T037|AB|T48.1X4|ICD10CM|Poisoning by skeletal muscle relaxants, undetermined|Poisoning by skeletal muscle relaxants, undetermined +C2879954|T037|AB|T48.1X4A|ICD10CM|Poisoning by skeletal muscle relaxants, undetermined, init|Poisoning by skeletal muscle relaxants, undetermined, init +C2879955|T037|AB|T48.1X4D|ICD10CM|Poisoning by skeletal muscle relaxants, undetermined, subs|Poisoning by skeletal muscle relaxants, undetermined, subs +C2879956|T037|PT|T48.1X4S|ICD10CM|Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], undetermined, sequela|Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], undetermined, sequela +C2879956|T037|AB|T48.1X4S|ICD10CM|Poisoning by skeletal muscle relaxants, undet, sequela|Poisoning by skeletal muscle relaxants, undet, sequela +C0414028|T046|AB|T48.1X5|ICD10CM|Adverse effect of skeletal muscle relaxants|Adverse effect of skeletal muscle relaxants +C0414028|T046|HT|T48.1X5|ICD10CM|Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents]|Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents] +C2879958|T037|PT|T48.1X5A|ICD10CM|Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents], initial encounter|Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents], initial encounter +C2879958|T037|AB|T48.1X5A|ICD10CM|Adverse effect of skeletal muscle relaxants, init encntr|Adverse effect of skeletal muscle relaxants, init encntr +C2879959|T037|PT|T48.1X5D|ICD10CM|Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents], subsequent encounter|Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents], subsequent encounter +C2879959|T037|AB|T48.1X5D|ICD10CM|Adverse effect of skeletal muscle relaxants, subs encntr|Adverse effect of skeletal muscle relaxants, subs encntr +C2879960|T037|PT|T48.1X5S|ICD10CM|Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents], sequela|Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents], sequela +C2879960|T037|AB|T48.1X5S|ICD10CM|Adverse effect of skeletal muscle relaxants, sequela|Adverse effect of skeletal muscle relaxants, sequela +C3508332|T037|AB|T48.1X6|ICD10CM|Underdosing of skeletal muscle relaxants|Underdosing of skeletal muscle relaxants +C3508332|T037|HT|T48.1X6|ICD10CM|Underdosing of skeletal muscle relaxants [neuromuscular blocking agents]|Underdosing of skeletal muscle relaxants [neuromuscular blocking agents] +C2879962|T037|PT|T48.1X6A|ICD10CM|Underdosing of skeletal muscle relaxants [neuromuscular blocking agents], initial encounter|Underdosing of skeletal muscle relaxants [neuromuscular blocking agents], initial encounter +C2879962|T037|AB|T48.1X6A|ICD10CM|Underdosing of skeletal muscle relaxants, initial encounter|Underdosing of skeletal muscle relaxants, initial encounter +C2879963|T037|PT|T48.1X6D|ICD10CM|Underdosing of skeletal muscle relaxants [neuromuscular blocking agents], subsequent encounter|Underdosing of skeletal muscle relaxants [neuromuscular blocking agents], subsequent encounter +C2879963|T037|AB|T48.1X6D|ICD10CM|Underdosing of skeletal muscle relaxants, subs encntr|Underdosing of skeletal muscle relaxants, subs encntr +C2879964|T037|PT|T48.1X6S|ICD10CM|Underdosing of skeletal muscle relaxants [neuromuscular blocking agents], sequela|Underdosing of skeletal muscle relaxants [neuromuscular blocking agents], sequela +C2879964|T037|AB|T48.1X6S|ICD10CM|Underdosing of skeletal muscle relaxants, sequela|Underdosing of skeletal muscle relaxants, sequela +C2879965|T037|AB|T48.2|ICD10CM|And unsp drugs acting on muscles|And unsp drugs acting on muscles +C0496997|T037|PS|T48.2|ICD10|Other and unspecified agents primarily acting on muscles|Other and unspecified agents primarily acting on muscles +C0496997|T037|PX|T48.2|ICD10|Poisoning by other and unspecified agents primarily acting on muscles|Poisoning by other and unspecified agents primarily acting on muscles +C2879965|T037|HT|T48.2|ICD10CM|Poisoning by, adverse effect of and underdosing of other and unspecified drugs acting on muscles|Poisoning by, adverse effect of and underdosing of other and unspecified drugs acting on muscles +C2879966|T037|HT|T48.20|ICD10CM|Poisoning by, adverse effect of and underdosing of unspecified drugs acting on muscles|Poisoning by, adverse effect of and underdosing of unspecified drugs acting on muscles +C2879966|T037|AB|T48.20|ICD10CM|Unsp drugs acting on muscles|Unsp drugs acting on muscles +C2879968|T037|AB|T48.201|ICD10CM|Poisoning by unsp drugs acting on muscles, accidental|Poisoning by unsp drugs acting on muscles, accidental +C2879967|T037|ET|T48.201|ICD10CM|Poisoning by unspecified drugs acting on muscles NOS|Poisoning by unspecified drugs acting on muscles NOS +C2879968|T037|HT|T48.201|ICD10CM|Poisoning by unspecified drugs acting on muscles, accidental (unintentional)|Poisoning by unspecified drugs acting on muscles, accidental (unintentional) +C2879969|T037|AB|T48.201A|ICD10CM|Poisoning by unsp drugs acting on muscles, accidental, init|Poisoning by unsp drugs acting on muscles, accidental, init +C2879969|T037|PT|T48.201A|ICD10CM|Poisoning by unspecified drugs acting on muscles, accidental (unintentional), initial encounter|Poisoning by unspecified drugs acting on muscles, accidental (unintentional), initial encounter +C2879970|T037|AB|T48.201D|ICD10CM|Poisoning by unsp drugs acting on muscles, accidental, subs|Poisoning by unsp drugs acting on muscles, accidental, subs +C2879970|T037|PT|T48.201D|ICD10CM|Poisoning by unspecified drugs acting on muscles, accidental (unintentional), subsequent encounter|Poisoning by unspecified drugs acting on muscles, accidental (unintentional), subsequent encounter +C2879971|T037|AB|T48.201S|ICD10CM|Poisoning by unsp drugs acting on muscles, acc, sequela|Poisoning by unsp drugs acting on muscles, acc, sequela +C2879971|T037|PT|T48.201S|ICD10CM|Poisoning by unspecified drugs acting on muscles, accidental (unintentional), sequela|Poisoning by unspecified drugs acting on muscles, accidental (unintentional), sequela +C2879972|T037|AB|T48.202|ICD10CM|Poisoning by unsp drugs acting on muscles, self-harm|Poisoning by unsp drugs acting on muscles, self-harm +C2879972|T037|HT|T48.202|ICD10CM|Poisoning by unspecified drugs acting on muscles, intentional self-harm|Poisoning by unspecified drugs acting on muscles, intentional self-harm +C2879973|T037|AB|T48.202A|ICD10CM|Poisoning by unsp drugs acting on muscles, self-harm, init|Poisoning by unsp drugs acting on muscles, self-harm, init +C2879973|T037|PT|T48.202A|ICD10CM|Poisoning by unspecified drugs acting on muscles, intentional self-harm, initial encounter|Poisoning by unspecified drugs acting on muscles, intentional self-harm, initial encounter +C2879974|T037|AB|T48.202D|ICD10CM|Poisoning by unsp drugs acting on muscles, self-harm, subs|Poisoning by unsp drugs acting on muscles, self-harm, subs +C2879974|T037|PT|T48.202D|ICD10CM|Poisoning by unspecified drugs acting on muscles, intentional self-harm, subsequent encounter|Poisoning by unspecified drugs acting on muscles, intentional self-harm, subsequent encounter +C2879975|T037|AB|T48.202S|ICD10CM|Poisn by unsp drugs acting on muscles, self-harm, sequela|Poisn by unsp drugs acting on muscles, self-harm, sequela +C2879975|T037|PT|T48.202S|ICD10CM|Poisoning by unspecified drugs acting on muscles, intentional self-harm, sequela|Poisoning by unspecified drugs acting on muscles, intentional self-harm, sequela +C2879976|T037|AB|T48.203|ICD10CM|Poisoning by unspecified drugs acting on muscles, assault|Poisoning by unspecified drugs acting on muscles, assault +C2879976|T037|HT|T48.203|ICD10CM|Poisoning by unspecified drugs acting on muscles, assault|Poisoning by unspecified drugs acting on muscles, assault +C2879977|T037|AB|T48.203A|ICD10CM|Poisoning by unsp drugs acting on muscles, assault, init|Poisoning by unsp drugs acting on muscles, assault, init +C2879977|T037|PT|T48.203A|ICD10CM|Poisoning by unspecified drugs acting on muscles, assault, initial encounter|Poisoning by unspecified drugs acting on muscles, assault, initial encounter +C2879978|T037|AB|T48.203D|ICD10CM|Poisoning by unsp drugs acting on muscles, assault, subs|Poisoning by unsp drugs acting on muscles, assault, subs +C2879978|T037|PT|T48.203D|ICD10CM|Poisoning by unspecified drugs acting on muscles, assault, subsequent encounter|Poisoning by unspecified drugs acting on muscles, assault, subsequent encounter +C2879979|T037|AB|T48.203S|ICD10CM|Poisoning by unsp drugs acting on muscles, assault, sequela|Poisoning by unsp drugs acting on muscles, assault, sequela +C2879979|T037|PT|T48.203S|ICD10CM|Poisoning by unspecified drugs acting on muscles, assault, sequela|Poisoning by unspecified drugs acting on muscles, assault, sequela +C2879980|T037|AB|T48.204|ICD10CM|Poisoning by unsp drugs acting on muscles, undetermined|Poisoning by unsp drugs acting on muscles, undetermined +C2879980|T037|HT|T48.204|ICD10CM|Poisoning by unspecified drugs acting on muscles, undetermined|Poisoning by unspecified drugs acting on muscles, undetermined +C2879981|T037|AB|T48.204A|ICD10CM|Poisoning by unsp drugs acting on muscles, undet, init|Poisoning by unsp drugs acting on muscles, undet, init +C2879981|T037|PT|T48.204A|ICD10CM|Poisoning by unspecified drugs acting on muscles, undetermined, initial encounter|Poisoning by unspecified drugs acting on muscles, undetermined, initial encounter +C2879982|T037|AB|T48.204D|ICD10CM|Poisoning by unsp drugs acting on muscles, undet, subs|Poisoning by unsp drugs acting on muscles, undet, subs +C2879982|T037|PT|T48.204D|ICD10CM|Poisoning by unspecified drugs acting on muscles, undetermined, subsequent encounter|Poisoning by unspecified drugs acting on muscles, undetermined, subsequent encounter +C2879983|T037|AB|T48.204S|ICD10CM|Poisoning by unsp drugs acting on muscles, undet, sequela|Poisoning by unsp drugs acting on muscles, undet, sequela +C2879983|T037|PT|T48.204S|ICD10CM|Poisoning by unspecified drugs acting on muscles, undetermined, sequela|Poisoning by unspecified drugs acting on muscles, undetermined, sequela +C2879984|T037|AB|T48.205|ICD10CM|Adverse effect of unspecified drugs acting on muscles|Adverse effect of unspecified drugs acting on muscles +C2879984|T037|HT|T48.205|ICD10CM|Adverse effect of unspecified drugs acting on muscles|Adverse effect of unspecified drugs acting on muscles +C2879985|T037|AB|T48.205A|ICD10CM|Adverse effect of unsp drugs acting on muscles, init encntr|Adverse effect of unsp drugs acting on muscles, init encntr +C2879985|T037|PT|T48.205A|ICD10CM|Adverse effect of unspecified drugs acting on muscles, initial encounter|Adverse effect of unspecified drugs acting on muscles, initial encounter +C2879986|T037|AB|T48.205D|ICD10CM|Adverse effect of unsp drugs acting on muscles, subs encntr|Adverse effect of unsp drugs acting on muscles, subs encntr +C2879986|T037|PT|T48.205D|ICD10CM|Adverse effect of unspecified drugs acting on muscles, subsequent encounter|Adverse effect of unspecified drugs acting on muscles, subsequent encounter +C2879987|T037|AB|T48.205S|ICD10CM|Adverse effect of unsp drugs acting on muscles, sequela|Adverse effect of unsp drugs acting on muscles, sequela +C2879987|T037|PT|T48.205S|ICD10CM|Adverse effect of unspecified drugs acting on muscles, sequela|Adverse effect of unspecified drugs acting on muscles, sequela +C2879988|T037|AB|T48.206|ICD10CM|Underdosing of unspecified drugs acting on muscles|Underdosing of unspecified drugs acting on muscles +C2879988|T037|HT|T48.206|ICD10CM|Underdosing of unspecified drugs acting on muscles|Underdosing of unspecified drugs acting on muscles +C2879989|T037|AB|T48.206A|ICD10CM|Underdosing of unsp drugs acting on muscles, init encntr|Underdosing of unsp drugs acting on muscles, init encntr +C2879989|T037|PT|T48.206A|ICD10CM|Underdosing of unspecified drugs acting on muscles, initial encounter|Underdosing of unspecified drugs acting on muscles, initial encounter +C2879990|T037|AB|T48.206D|ICD10CM|Underdosing of unsp drugs acting on muscles, subs encntr|Underdosing of unsp drugs acting on muscles, subs encntr +C2879990|T037|PT|T48.206D|ICD10CM|Underdosing of unspecified drugs acting on muscles, subsequent encounter|Underdosing of unspecified drugs acting on muscles, subsequent encounter +C2879991|T037|AB|T48.206S|ICD10CM|Underdosing of unspecified drugs acting on muscles, sequela|Underdosing of unspecified drugs acting on muscles, sequela +C2879991|T037|PT|T48.206S|ICD10CM|Underdosing of unspecified drugs acting on muscles, sequela|Underdosing of unspecified drugs acting on muscles, sequela +C2879992|T037|AB|T48.29|ICD10CM|Drugs acting on muscles|Drugs acting on muscles +C2879992|T037|HT|T48.29|ICD10CM|Poisoning by, adverse effect of and underdosing of other drugs acting on muscles|Poisoning by, adverse effect of and underdosing of other drugs acting on muscles +C2879994|T037|AB|T48.291|ICD10CM|Poisoning by oth drugs acting on muscles, accidental|Poisoning by oth drugs acting on muscles, accidental +C2879993|T037|ET|T48.291|ICD10CM|Poisoning by other drugs acting on muscles NOS|Poisoning by other drugs acting on muscles NOS +C2879994|T037|HT|T48.291|ICD10CM|Poisoning by other drugs acting on muscles, accidental (unintentional)|Poisoning by other drugs acting on muscles, accidental (unintentional) +C2879995|T037|AB|T48.291A|ICD10CM|Poisoning by oth drugs acting on muscles, accidental, init|Poisoning by oth drugs acting on muscles, accidental, init +C2879995|T037|PT|T48.291A|ICD10CM|Poisoning by other drugs acting on muscles, accidental (unintentional), initial encounter|Poisoning by other drugs acting on muscles, accidental (unintentional), initial encounter +C2879996|T037|AB|T48.291D|ICD10CM|Poisoning by oth drugs acting on muscles, accidental, subs|Poisoning by oth drugs acting on muscles, accidental, subs +C2879996|T037|PT|T48.291D|ICD10CM|Poisoning by other drugs acting on muscles, accidental (unintentional), subsequent encounter|Poisoning by other drugs acting on muscles, accidental (unintentional), subsequent encounter +C2879997|T037|AB|T48.291S|ICD10CM|Poisoning by oth drugs acting on muscles, acc, sequela|Poisoning by oth drugs acting on muscles, acc, sequela +C2879997|T037|PT|T48.291S|ICD10CM|Poisoning by other drugs acting on muscles, accidental (unintentional), sequela|Poisoning by other drugs acting on muscles, accidental (unintentional), sequela +C2879998|T037|AB|T48.292|ICD10CM|Poisoning by oth drugs acting on muscles, self-harm|Poisoning by oth drugs acting on muscles, self-harm +C2879998|T037|HT|T48.292|ICD10CM|Poisoning by other drugs acting on muscles, intentional self-harm|Poisoning by other drugs acting on muscles, intentional self-harm +C2879999|T037|AB|T48.292A|ICD10CM|Poisoning by oth drugs acting on muscles, self-harm, init|Poisoning by oth drugs acting on muscles, self-harm, init +C2879999|T037|PT|T48.292A|ICD10CM|Poisoning by other drugs acting on muscles, intentional self-harm, initial encounter|Poisoning by other drugs acting on muscles, intentional self-harm, initial encounter +C2880000|T037|AB|T48.292D|ICD10CM|Poisoning by oth drugs acting on muscles, self-harm, subs|Poisoning by oth drugs acting on muscles, self-harm, subs +C2880000|T037|PT|T48.292D|ICD10CM|Poisoning by other drugs acting on muscles, intentional self-harm, subsequent encounter|Poisoning by other drugs acting on muscles, intentional self-harm, subsequent encounter +C2880001|T037|AB|T48.292S|ICD10CM|Poisoning by oth drugs acting on muscles, self-harm, sequela|Poisoning by oth drugs acting on muscles, self-harm, sequela +C2880001|T037|PT|T48.292S|ICD10CM|Poisoning by other drugs acting on muscles, intentional self-harm, sequela|Poisoning by other drugs acting on muscles, intentional self-harm, sequela +C2880002|T037|AB|T48.293|ICD10CM|Poisoning by other drugs acting on muscles, assault|Poisoning by other drugs acting on muscles, assault +C2880002|T037|HT|T48.293|ICD10CM|Poisoning by other drugs acting on muscles, assault|Poisoning by other drugs acting on muscles, assault +C2880003|T037|AB|T48.293A|ICD10CM|Poisoning by oth drugs acting on muscles, assault, init|Poisoning by oth drugs acting on muscles, assault, init +C2880003|T037|PT|T48.293A|ICD10CM|Poisoning by other drugs acting on muscles, assault, initial encounter|Poisoning by other drugs acting on muscles, assault, initial encounter +C2880004|T037|AB|T48.293D|ICD10CM|Poisoning by oth drugs acting on muscles, assault, subs|Poisoning by oth drugs acting on muscles, assault, subs +C2880004|T037|PT|T48.293D|ICD10CM|Poisoning by other drugs acting on muscles, assault, subsequent encounter|Poisoning by other drugs acting on muscles, assault, subsequent encounter +C2880005|T037|AB|T48.293S|ICD10CM|Poisoning by other drugs acting on muscles, assault, sequela|Poisoning by other drugs acting on muscles, assault, sequela +C2880005|T037|PT|T48.293S|ICD10CM|Poisoning by other drugs acting on muscles, assault, sequela|Poisoning by other drugs acting on muscles, assault, sequela +C2880006|T037|AB|T48.294|ICD10CM|Poisoning by other drugs acting on muscles, undetermined|Poisoning by other drugs acting on muscles, undetermined +C2880006|T037|HT|T48.294|ICD10CM|Poisoning by other drugs acting on muscles, undetermined|Poisoning by other drugs acting on muscles, undetermined +C2880007|T037|AB|T48.294A|ICD10CM|Poisoning by oth drugs acting on muscles, undetermined, init|Poisoning by oth drugs acting on muscles, undetermined, init +C2880007|T037|PT|T48.294A|ICD10CM|Poisoning by other drugs acting on muscles, undetermined, initial encounter|Poisoning by other drugs acting on muscles, undetermined, initial encounter +C2880008|T037|AB|T48.294D|ICD10CM|Poisoning by oth drugs acting on muscles, undetermined, subs|Poisoning by oth drugs acting on muscles, undetermined, subs +C2880008|T037|PT|T48.294D|ICD10CM|Poisoning by other drugs acting on muscles, undetermined, subsequent encounter|Poisoning by other drugs acting on muscles, undetermined, subsequent encounter +C2880009|T037|AB|T48.294S|ICD10CM|Poisoning by oth drugs acting on muscles, undet, sequela|Poisoning by oth drugs acting on muscles, undet, sequela +C2880009|T037|PT|T48.294S|ICD10CM|Poisoning by other drugs acting on muscles, undetermined, sequela|Poisoning by other drugs acting on muscles, undetermined, sequela +C2880010|T037|AB|T48.295|ICD10CM|Adverse effect of other drugs acting on muscles|Adverse effect of other drugs acting on muscles +C2880010|T037|HT|T48.295|ICD10CM|Adverse effect of other drugs acting on muscles|Adverse effect of other drugs acting on muscles +C2880011|T037|AB|T48.295A|ICD10CM|Adverse effect of other drugs acting on muscles, init encntr|Adverse effect of other drugs acting on muscles, init encntr +C2880011|T037|PT|T48.295A|ICD10CM|Adverse effect of other drugs acting on muscles, initial encounter|Adverse effect of other drugs acting on muscles, initial encounter +C2880012|T037|AB|T48.295D|ICD10CM|Adverse effect of other drugs acting on muscles, subs encntr|Adverse effect of other drugs acting on muscles, subs encntr +C2880012|T037|PT|T48.295D|ICD10CM|Adverse effect of other drugs acting on muscles, subsequent encounter|Adverse effect of other drugs acting on muscles, subsequent encounter +C2880013|T037|AB|T48.295S|ICD10CM|Adverse effect of other drugs acting on muscles, sequela|Adverse effect of other drugs acting on muscles, sequela +C2880013|T037|PT|T48.295S|ICD10CM|Adverse effect of other drugs acting on muscles, sequela|Adverse effect of other drugs acting on muscles, sequela +C2880014|T037|AB|T48.296|ICD10CM|Underdosing of other drugs acting on muscles|Underdosing of other drugs acting on muscles +C2880014|T037|HT|T48.296|ICD10CM|Underdosing of other drugs acting on muscles|Underdosing of other drugs acting on muscles +C2880015|T037|AB|T48.296A|ICD10CM|Underdosing of other drugs acting on muscles, init encntr|Underdosing of other drugs acting on muscles, init encntr +C2880015|T037|PT|T48.296A|ICD10CM|Underdosing of other drugs acting on muscles, initial encounter|Underdosing of other drugs acting on muscles, initial encounter +C2880016|T037|AB|T48.296D|ICD10CM|Underdosing of other drugs acting on muscles, subs encntr|Underdosing of other drugs acting on muscles, subs encntr +C2880016|T037|PT|T48.296D|ICD10CM|Underdosing of other drugs acting on muscles, subsequent encounter|Underdosing of other drugs acting on muscles, subsequent encounter +C2880017|T037|AB|T48.296S|ICD10CM|Underdosing of other drugs acting on muscles, sequela|Underdosing of other drugs acting on muscles, sequela +C2880017|T037|PT|T48.296S|ICD10CM|Underdosing of other drugs acting on muscles, sequela|Underdosing of other drugs acting on muscles, sequela +C2880018|T037|AB|T48.3|ICD10CM|Antitussives|Antitussives +C0161634|T037|PS|T48.3|ICD10|Antitussives|Antitussives +C0161634|T037|PX|T48.3|ICD10|Poisoning by antitussives|Poisoning by antitussives +C2880018|T037|HT|T48.3|ICD10CM|Poisoning by, adverse effect of and underdosing of antitussives|Poisoning by, adverse effect of and underdosing of antitussives +C2880018|T037|AB|T48.3X|ICD10CM|Antitussives|Antitussives +C2880018|T037|HT|T48.3X|ICD10CM|Poisoning by, adverse effect of and underdosing of antitussives|Poisoning by, adverse effect of and underdosing of antitussives +C0161634|T037|ET|T48.3X1|ICD10CM|Poisoning by antitussives NOS|Poisoning by antitussives NOS +C2880019|T037|AB|T48.3X1|ICD10CM|Poisoning by antitussives, accidental (unintentional)|Poisoning by antitussives, accidental (unintentional) +C2880019|T037|HT|T48.3X1|ICD10CM|Poisoning by antitussives, accidental (unintentional)|Poisoning by antitussives, accidental (unintentional) +C2880020|T037|AB|T48.3X1A|ICD10CM|Poisoning by antitussives, accidental (unintentional), init|Poisoning by antitussives, accidental (unintentional), init +C2880020|T037|PT|T48.3X1A|ICD10CM|Poisoning by antitussives, accidental (unintentional), initial encounter|Poisoning by antitussives, accidental (unintentional), initial encounter +C2880021|T037|AB|T48.3X1D|ICD10CM|Poisoning by antitussives, accidental (unintentional), subs|Poisoning by antitussives, accidental (unintentional), subs +C2880021|T037|PT|T48.3X1D|ICD10CM|Poisoning by antitussives, accidental (unintentional), subsequent encounter|Poisoning by antitussives, accidental (unintentional), subsequent encounter +C2880022|T037|PT|T48.3X1S|ICD10CM|Poisoning by antitussives, accidental (unintentional), sequela|Poisoning by antitussives, accidental (unintentional), sequela +C2880022|T037|AB|T48.3X1S|ICD10CM|Poisoning by antitussives, accidental, sequela|Poisoning by antitussives, accidental, sequela +C2880023|T037|AB|T48.3X2|ICD10CM|Poisoning by antitussives, intentional self-harm|Poisoning by antitussives, intentional self-harm +C2880023|T037|HT|T48.3X2|ICD10CM|Poisoning by antitussives, intentional self-harm|Poisoning by antitussives, intentional self-harm +C2880024|T037|AB|T48.3X2A|ICD10CM|Poisoning by antitussives, intentional self-harm, init|Poisoning by antitussives, intentional self-harm, init +C2880024|T037|PT|T48.3X2A|ICD10CM|Poisoning by antitussives, intentional self-harm, initial encounter|Poisoning by antitussives, intentional self-harm, initial encounter +C2880025|T037|AB|T48.3X2D|ICD10CM|Poisoning by antitussives, intentional self-harm, subs|Poisoning by antitussives, intentional self-harm, subs +C2880025|T037|PT|T48.3X2D|ICD10CM|Poisoning by antitussives, intentional self-harm, subsequent encounter|Poisoning by antitussives, intentional self-harm, subsequent encounter +C2880026|T037|AB|T48.3X2S|ICD10CM|Poisoning by antitussives, intentional self-harm, sequela|Poisoning by antitussives, intentional self-harm, sequela +C2880026|T037|PT|T48.3X2S|ICD10CM|Poisoning by antitussives, intentional self-harm, sequela|Poisoning by antitussives, intentional self-harm, sequela +C2880027|T037|AB|T48.3X3|ICD10CM|Poisoning by antitussives, assault|Poisoning by antitussives, assault +C2880027|T037|HT|T48.3X3|ICD10CM|Poisoning by antitussives, assault|Poisoning by antitussives, assault +C2880028|T037|AB|T48.3X3A|ICD10CM|Poisoning by antitussives, assault, initial encounter|Poisoning by antitussives, assault, initial encounter +C2880028|T037|PT|T48.3X3A|ICD10CM|Poisoning by antitussives, assault, initial encounter|Poisoning by antitussives, assault, initial encounter +C2880029|T037|AB|T48.3X3D|ICD10CM|Poisoning by antitussives, assault, subsequent encounter|Poisoning by antitussives, assault, subsequent encounter +C2880029|T037|PT|T48.3X3D|ICD10CM|Poisoning by antitussives, assault, subsequent encounter|Poisoning by antitussives, assault, subsequent encounter +C2880030|T037|AB|T48.3X3S|ICD10CM|Poisoning by antitussives, assault, sequela|Poisoning by antitussives, assault, sequela +C2880030|T037|PT|T48.3X3S|ICD10CM|Poisoning by antitussives, assault, sequela|Poisoning by antitussives, assault, sequela +C2880031|T037|AB|T48.3X4|ICD10CM|Poisoning by antitussives, undetermined|Poisoning by antitussives, undetermined +C2880031|T037|HT|T48.3X4|ICD10CM|Poisoning by antitussives, undetermined|Poisoning by antitussives, undetermined +C2880032|T037|AB|T48.3X4A|ICD10CM|Poisoning by antitussives, undetermined, initial encounter|Poisoning by antitussives, undetermined, initial encounter +C2880032|T037|PT|T48.3X4A|ICD10CM|Poisoning by antitussives, undetermined, initial encounter|Poisoning by antitussives, undetermined, initial encounter +C2880033|T037|AB|T48.3X4D|ICD10CM|Poisoning by antitussives, undetermined, subs encntr|Poisoning by antitussives, undetermined, subs encntr +C2880033|T037|PT|T48.3X4D|ICD10CM|Poisoning by antitussives, undetermined, subsequent encounter|Poisoning by antitussives, undetermined, subsequent encounter +C2880034|T037|AB|T48.3X4S|ICD10CM|Poisoning by antitussives, undetermined, sequela|Poisoning by antitussives, undetermined, sequela +C2880034|T037|PT|T48.3X4S|ICD10CM|Poisoning by antitussives, undetermined, sequela|Poisoning by antitussives, undetermined, sequela +C2880035|T037|AB|T48.3X5|ICD10CM|Adverse effect of antitussives|Adverse effect of antitussives +C2880035|T037|HT|T48.3X5|ICD10CM|Adverse effect of antitussives|Adverse effect of antitussives +C2880036|T037|AB|T48.3X5A|ICD10CM|Adverse effect of antitussives, initial encounter|Adverse effect of antitussives, initial encounter +C2880036|T037|PT|T48.3X5A|ICD10CM|Adverse effect of antitussives, initial encounter|Adverse effect of antitussives, initial encounter +C2880037|T037|AB|T48.3X5D|ICD10CM|Adverse effect of antitussives, subsequent encounter|Adverse effect of antitussives, subsequent encounter +C2880037|T037|PT|T48.3X5D|ICD10CM|Adverse effect of antitussives, subsequent encounter|Adverse effect of antitussives, subsequent encounter +C2880038|T037|AB|T48.3X5S|ICD10CM|Adverse effect of antitussives, sequela|Adverse effect of antitussives, sequela +C2880038|T037|PT|T48.3X5S|ICD10CM|Adverse effect of antitussives, sequela|Adverse effect of antitussives, sequela +C2880039|T033|AB|T48.3X6|ICD10CM|Underdosing of antitussives|Underdosing of antitussives +C2880039|T033|HT|T48.3X6|ICD10CM|Underdosing of antitussives|Underdosing of antitussives +C2880040|T037|AB|T48.3X6A|ICD10CM|Underdosing of antitussives, initial encounter|Underdosing of antitussives, initial encounter +C2880040|T037|PT|T48.3X6A|ICD10CM|Underdosing of antitussives, initial encounter|Underdosing of antitussives, initial encounter +C2880041|T037|AB|T48.3X6D|ICD10CM|Underdosing of antitussives, subsequent encounter|Underdosing of antitussives, subsequent encounter +C2880041|T037|PT|T48.3X6D|ICD10CM|Underdosing of antitussives, subsequent encounter|Underdosing of antitussives, subsequent encounter +C2880042|T037|AB|T48.3X6S|ICD10CM|Underdosing of antitussives, sequela|Underdosing of antitussives, sequela +C2880042|T037|PT|T48.3X6S|ICD10CM|Underdosing of antitussives, sequela|Underdosing of antitussives, sequela +C2880043|T037|AB|T48.4|ICD10CM|Expectorants|Expectorants +C0161635|T037|PS|T48.4|ICD10|Expectorants|Expectorants +C0161635|T037|PX|T48.4|ICD10|Poisoning by expectorants|Poisoning by expectorants +C2880043|T037|HT|T48.4|ICD10CM|Poisoning by, adverse effect of and underdosing of expectorants|Poisoning by, adverse effect of and underdosing of expectorants +C2880043|T037|AB|T48.4X|ICD10CM|Expectorants|Expectorants +C2880043|T037|HT|T48.4X|ICD10CM|Poisoning by, adverse effect of and underdosing of expectorants|Poisoning by, adverse effect of and underdosing of expectorants +C0161635|T037|ET|T48.4X1|ICD10CM|Poisoning by expectorants NOS|Poisoning by expectorants NOS +C2880044|T037|AB|T48.4X1|ICD10CM|Poisoning by expectorants, accidental (unintentional)|Poisoning by expectorants, accidental (unintentional) +C2880044|T037|HT|T48.4X1|ICD10CM|Poisoning by expectorants, accidental (unintentional)|Poisoning by expectorants, accidental (unintentional) +C2880045|T037|AB|T48.4X1A|ICD10CM|Poisoning by expectorants, accidental (unintentional), init|Poisoning by expectorants, accidental (unintentional), init +C2880045|T037|PT|T48.4X1A|ICD10CM|Poisoning by expectorants, accidental (unintentional), initial encounter|Poisoning by expectorants, accidental (unintentional), initial encounter +C2880046|T037|AB|T48.4X1D|ICD10CM|Poisoning by expectorants, accidental (unintentional), subs|Poisoning by expectorants, accidental (unintentional), subs +C2880046|T037|PT|T48.4X1D|ICD10CM|Poisoning by expectorants, accidental (unintentional), subsequent encounter|Poisoning by expectorants, accidental (unintentional), subsequent encounter +C2880047|T037|PT|T48.4X1S|ICD10CM|Poisoning by expectorants, accidental (unintentional), sequela|Poisoning by expectorants, accidental (unintentional), sequela +C2880047|T037|AB|T48.4X1S|ICD10CM|Poisoning by expectorants, accidental, sequela|Poisoning by expectorants, accidental, sequela +C2880048|T037|AB|T48.4X2|ICD10CM|Poisoning by expectorants, intentional self-harm|Poisoning by expectorants, intentional self-harm +C2880048|T037|HT|T48.4X2|ICD10CM|Poisoning by expectorants, intentional self-harm|Poisoning by expectorants, intentional self-harm +C2880049|T037|AB|T48.4X2A|ICD10CM|Poisoning by expectorants, intentional self-harm, init|Poisoning by expectorants, intentional self-harm, init +C2880049|T037|PT|T48.4X2A|ICD10CM|Poisoning by expectorants, intentional self-harm, initial encounter|Poisoning by expectorants, intentional self-harm, initial encounter +C2880050|T037|AB|T48.4X2D|ICD10CM|Poisoning by expectorants, intentional self-harm, subs|Poisoning by expectorants, intentional self-harm, subs +C2880050|T037|PT|T48.4X2D|ICD10CM|Poisoning by expectorants, intentional self-harm, subsequent encounter|Poisoning by expectorants, intentional self-harm, subsequent encounter +C2880051|T037|AB|T48.4X2S|ICD10CM|Poisoning by expectorants, intentional self-harm, sequela|Poisoning by expectorants, intentional self-harm, sequela +C2880051|T037|PT|T48.4X2S|ICD10CM|Poisoning by expectorants, intentional self-harm, sequela|Poisoning by expectorants, intentional self-harm, sequela +C2880052|T037|AB|T48.4X3|ICD10CM|Poisoning by expectorants, assault|Poisoning by expectorants, assault +C2880052|T037|HT|T48.4X3|ICD10CM|Poisoning by expectorants, assault|Poisoning by expectorants, assault +C2880053|T037|AB|T48.4X3A|ICD10CM|Poisoning by expectorants, assault, initial encounter|Poisoning by expectorants, assault, initial encounter +C2880053|T037|PT|T48.4X3A|ICD10CM|Poisoning by expectorants, assault, initial encounter|Poisoning by expectorants, assault, initial encounter +C2880054|T037|AB|T48.4X3D|ICD10CM|Poisoning by expectorants, assault, subsequent encounter|Poisoning by expectorants, assault, subsequent encounter +C2880054|T037|PT|T48.4X3D|ICD10CM|Poisoning by expectorants, assault, subsequent encounter|Poisoning by expectorants, assault, subsequent encounter +C2880055|T037|AB|T48.4X3S|ICD10CM|Poisoning by expectorants, assault, sequela|Poisoning by expectorants, assault, sequela +C2880055|T037|PT|T48.4X3S|ICD10CM|Poisoning by expectorants, assault, sequela|Poisoning by expectorants, assault, sequela +C2880056|T037|AB|T48.4X4|ICD10CM|Poisoning by expectorants, undetermined|Poisoning by expectorants, undetermined +C2880056|T037|HT|T48.4X4|ICD10CM|Poisoning by expectorants, undetermined|Poisoning by expectorants, undetermined +C2880057|T037|AB|T48.4X4A|ICD10CM|Poisoning by expectorants, undetermined, initial encounter|Poisoning by expectorants, undetermined, initial encounter +C2880057|T037|PT|T48.4X4A|ICD10CM|Poisoning by expectorants, undetermined, initial encounter|Poisoning by expectorants, undetermined, initial encounter +C2880058|T037|AB|T48.4X4D|ICD10CM|Poisoning by expectorants, undetermined, subs encntr|Poisoning by expectorants, undetermined, subs encntr +C2880058|T037|PT|T48.4X4D|ICD10CM|Poisoning by expectorants, undetermined, subsequent encounter|Poisoning by expectorants, undetermined, subsequent encounter +C2880059|T037|AB|T48.4X4S|ICD10CM|Poisoning by expectorants, undetermined, sequela|Poisoning by expectorants, undetermined, sequela +C2880059|T037|PT|T48.4X4S|ICD10CM|Poisoning by expectorants, undetermined, sequela|Poisoning by expectorants, undetermined, sequela +C0414037|T046|AB|T48.4X5|ICD10CM|Adverse effect of expectorants|Adverse effect of expectorants +C0414037|T046|HT|T48.4X5|ICD10CM|Adverse effect of expectorants|Adverse effect of expectorants +C2880060|T037|AB|T48.4X5A|ICD10CM|Adverse effect of expectorants, initial encounter|Adverse effect of expectorants, initial encounter +C2880060|T037|PT|T48.4X5A|ICD10CM|Adverse effect of expectorants, initial encounter|Adverse effect of expectorants, initial encounter +C2880061|T037|AB|T48.4X5D|ICD10CM|Adverse effect of expectorants, subsequent encounter|Adverse effect of expectorants, subsequent encounter +C2880061|T037|PT|T48.4X5D|ICD10CM|Adverse effect of expectorants, subsequent encounter|Adverse effect of expectorants, subsequent encounter +C2880062|T037|AB|T48.4X5S|ICD10CM|Adverse effect of expectorants, sequela|Adverse effect of expectorants, sequela +C2880062|T037|PT|T48.4X5S|ICD10CM|Adverse effect of expectorants, sequela|Adverse effect of expectorants, sequela +C2880063|T033|AB|T48.4X6|ICD10CM|Underdosing of expectorants|Underdosing of expectorants +C2880063|T033|HT|T48.4X6|ICD10CM|Underdosing of expectorants|Underdosing of expectorants +C2880064|T037|AB|T48.4X6A|ICD10CM|Underdosing of expectorants, initial encounter|Underdosing of expectorants, initial encounter +C2880064|T037|PT|T48.4X6A|ICD10CM|Underdosing of expectorants, initial encounter|Underdosing of expectorants, initial encounter +C2880065|T037|AB|T48.4X6D|ICD10CM|Underdosing of expectorants, subsequent encounter|Underdosing of expectorants, subsequent encounter +C2880065|T037|PT|T48.4X6D|ICD10CM|Underdosing of expectorants, subsequent encounter|Underdosing of expectorants, subsequent encounter +C2880066|T037|AB|T48.4X6S|ICD10CM|Underdosing of expectorants, sequela|Underdosing of expectorants, sequela +C2880066|T037|PT|T48.4X6S|ICD10CM|Underdosing of expectorants, sequela|Underdosing of expectorants, sequela +C2880068|T037|AB|T48.5|ICD10CM|Anti-common-cold drugs|Anti-common-cold drugs +C0161636|T037|PS|T48.5|ICD10|Anti-common-cold drugs|Anti-common-cold drugs +C0161636|T037|PX|T48.5|ICD10|Poisoning by anti-common-cold drugs|Poisoning by anti-common-cold drugs +C2880067|T037|ET|T48.5|ICD10CM|Poisoning by, adverse effect of and underdosing of decongestants|Poisoning by, adverse effect of and underdosing of decongestants +C2880068|T037|HT|T48.5|ICD10CM|Poisoning by, adverse effect of and underdosing of other anti-common-cold drugs|Poisoning by, adverse effect of and underdosing of other anti-common-cold drugs +C2880068|T037|AB|T48.5X|ICD10CM|Anti-common-cold drugs|Anti-common-cold drugs +C2880068|T037|HT|T48.5X|ICD10CM|Poisoning by, adverse effect of and underdosing of other anti-common-cold drugs|Poisoning by, adverse effect of and underdosing of other anti-common-cold drugs +C2880070|T037|AB|T48.5X1|ICD10CM|Poisoning by oth anti-cmn-cold drugs, accidental|Poisoning by oth anti-cmn-cold drugs, accidental +C2880069|T037|ET|T48.5X1|ICD10CM|Poisoning by other anti-common-cold drugs NOS|Poisoning by other anti-common-cold drugs NOS +C2880070|T037|HT|T48.5X1|ICD10CM|Poisoning by other anti-common-cold drugs, accidental (unintentional)|Poisoning by other anti-common-cold drugs, accidental (unintentional) +C2880071|T037|AB|T48.5X1A|ICD10CM|Poisoning by oth anti-cmn-cold drugs, accidental, init|Poisoning by oth anti-cmn-cold drugs, accidental, init +C2880071|T037|PT|T48.5X1A|ICD10CM|Poisoning by other anti-common-cold drugs, accidental (unintentional), initial encounter|Poisoning by other anti-common-cold drugs, accidental (unintentional), initial encounter +C2880072|T037|AB|T48.5X1D|ICD10CM|Poisoning by oth anti-cmn-cold drugs, accidental, subs|Poisoning by oth anti-cmn-cold drugs, accidental, subs +C2880072|T037|PT|T48.5X1D|ICD10CM|Poisoning by other anti-common-cold drugs, accidental (unintentional), subsequent encounter|Poisoning by other anti-common-cold drugs, accidental (unintentional), subsequent encounter +C2880073|T037|AB|T48.5X1S|ICD10CM|Poisoning by oth anti-cmn-cold drugs, accidental, sequela|Poisoning by oth anti-cmn-cold drugs, accidental, sequela +C2880073|T037|PT|T48.5X1S|ICD10CM|Poisoning by other anti-common-cold drugs, accidental (unintentional), sequela|Poisoning by other anti-common-cold drugs, accidental (unintentional), sequela +C2880074|T037|AB|T48.5X2|ICD10CM|Poisoning by oth anti-common-cold drugs, self-harm|Poisoning by oth anti-common-cold drugs, self-harm +C2880074|T037|HT|T48.5X2|ICD10CM|Poisoning by other anti-common-cold drugs, intentional self-harm|Poisoning by other anti-common-cold drugs, intentional self-harm +C2880075|T037|AB|T48.5X2A|ICD10CM|Poisoning by oth anti-common-cold drugs, self-harm, init|Poisoning by oth anti-common-cold drugs, self-harm, init +C2880075|T037|PT|T48.5X2A|ICD10CM|Poisoning by other anti-common-cold drugs, intentional self-harm, initial encounter|Poisoning by other anti-common-cold drugs, intentional self-harm, initial encounter +C2880076|T037|AB|T48.5X2D|ICD10CM|Poisoning by oth anti-common-cold drugs, self-harm, subs|Poisoning by oth anti-common-cold drugs, self-harm, subs +C2880076|T037|PT|T48.5X2D|ICD10CM|Poisoning by other anti-common-cold drugs, intentional self-harm, subsequent encounter|Poisoning by other anti-common-cold drugs, intentional self-harm, subsequent encounter +C2880077|T037|AB|T48.5X2S|ICD10CM|Poisoning by oth anti-common-cold drugs, self-harm, sequela|Poisoning by oth anti-common-cold drugs, self-harm, sequela +C2880077|T037|PT|T48.5X2S|ICD10CM|Poisoning by other anti-common-cold drugs, intentional self-harm, sequela|Poisoning by other anti-common-cold drugs, intentional self-harm, sequela +C2880078|T037|AB|T48.5X3|ICD10CM|Poisoning by other anti-common-cold drugs, assault|Poisoning by other anti-common-cold drugs, assault +C2880078|T037|HT|T48.5X3|ICD10CM|Poisoning by other anti-common-cold drugs, assault|Poisoning by other anti-common-cold drugs, assault +C2880079|T037|AB|T48.5X3A|ICD10CM|Poisoning by oth anti-common-cold drugs, assault, init|Poisoning by oth anti-common-cold drugs, assault, init +C2880079|T037|PT|T48.5X3A|ICD10CM|Poisoning by other anti-common-cold drugs, assault, initial encounter|Poisoning by other anti-common-cold drugs, assault, initial encounter +C2880080|T037|AB|T48.5X3D|ICD10CM|Poisoning by oth anti-common-cold drugs, assault, subs|Poisoning by oth anti-common-cold drugs, assault, subs +C2880080|T037|PT|T48.5X3D|ICD10CM|Poisoning by other anti-common-cold drugs, assault, subsequent encounter|Poisoning by other anti-common-cold drugs, assault, subsequent encounter +C2883183|T037|AB|T48.5X3S|ICD10CM|Poisoning by other anti-common-cold drugs, assault, sequela|Poisoning by other anti-common-cold drugs, assault, sequela +C2883183|T037|PT|T48.5X3S|ICD10CM|Poisoning by other anti-common-cold drugs, assault, sequela|Poisoning by other anti-common-cold drugs, assault, sequela +C2883184|T037|AB|T48.5X4|ICD10CM|Poisoning by other anti-common-cold drugs, undetermined|Poisoning by other anti-common-cold drugs, undetermined +C2883184|T037|HT|T48.5X4|ICD10CM|Poisoning by other anti-common-cold drugs, undetermined|Poisoning by other anti-common-cold drugs, undetermined +C2883185|T037|AB|T48.5X4A|ICD10CM|Poisoning by oth anti-common-cold drugs, undetermined, init|Poisoning by oth anti-common-cold drugs, undetermined, init +C2883185|T037|PT|T48.5X4A|ICD10CM|Poisoning by other anti-common-cold drugs, undetermined, initial encounter|Poisoning by other anti-common-cold drugs, undetermined, initial encounter +C2883186|T037|AB|T48.5X4D|ICD10CM|Poisoning by oth anti-common-cold drugs, undetermined, subs|Poisoning by oth anti-common-cold drugs, undetermined, subs +C2883186|T037|PT|T48.5X4D|ICD10CM|Poisoning by other anti-common-cold drugs, undetermined, subsequent encounter|Poisoning by other anti-common-cold drugs, undetermined, subsequent encounter +C2883187|T037|AB|T48.5X4S|ICD10CM|Poisoning by oth anti-cmn-cold drugs, undetermined, sequela|Poisoning by oth anti-cmn-cold drugs, undetermined, sequela +C2883187|T037|PT|T48.5X4S|ICD10CM|Poisoning by other anti-common-cold drugs, undetermined, sequela|Poisoning by other anti-common-cold drugs, undetermined, sequela +C2883188|T037|AB|T48.5X5|ICD10CM|Adverse effect of other anti-common-cold drugs|Adverse effect of other anti-common-cold drugs +C2883188|T037|HT|T48.5X5|ICD10CM|Adverse effect of other anti-common-cold drugs|Adverse effect of other anti-common-cold drugs +C2883189|T037|AB|T48.5X5A|ICD10CM|Adverse effect of other anti-common-cold drugs, init encntr|Adverse effect of other anti-common-cold drugs, init encntr +C2883189|T037|PT|T48.5X5A|ICD10CM|Adverse effect of other anti-common-cold drugs, initial encounter|Adverse effect of other anti-common-cold drugs, initial encounter +C2883190|T037|AB|T48.5X5D|ICD10CM|Adverse effect of other anti-common-cold drugs, subs encntr|Adverse effect of other anti-common-cold drugs, subs encntr +C2883190|T037|PT|T48.5X5D|ICD10CM|Adverse effect of other anti-common-cold drugs, subsequent encounter|Adverse effect of other anti-common-cold drugs, subsequent encounter +C2883191|T037|AB|T48.5X5S|ICD10CM|Adverse effect of other anti-common-cold drugs, sequela|Adverse effect of other anti-common-cold drugs, sequela +C2883191|T037|PT|T48.5X5S|ICD10CM|Adverse effect of other anti-common-cold drugs, sequela|Adverse effect of other anti-common-cold drugs, sequela +C2883192|T037|AB|T48.5X6|ICD10CM|Underdosing of other anti-common-cold drugs|Underdosing of other anti-common-cold drugs +C2883192|T037|HT|T48.5X6|ICD10CM|Underdosing of other anti-common-cold drugs|Underdosing of other anti-common-cold drugs +C2883193|T037|AB|T48.5X6A|ICD10CM|Underdosing of other anti-common-cold drugs, init encntr|Underdosing of other anti-common-cold drugs, init encntr +C2883193|T037|PT|T48.5X6A|ICD10CM|Underdosing of other anti-common-cold drugs, initial encounter|Underdosing of other anti-common-cold drugs, initial encounter +C2883194|T037|AB|T48.5X6D|ICD10CM|Underdosing of other anti-common-cold drugs, subs encntr|Underdosing of other anti-common-cold drugs, subs encntr +C2883194|T037|PT|T48.5X6D|ICD10CM|Underdosing of other anti-common-cold drugs, subsequent encounter|Underdosing of other anti-common-cold drugs, subsequent encounter +C2883195|T037|AB|T48.5X6S|ICD10CM|Underdosing of other anti-common-cold drugs, sequela|Underdosing of other anti-common-cold drugs, sequela +C2883195|T037|PT|T48.5X6S|ICD10CM|Underdosing of other anti-common-cold drugs, sequela|Underdosing of other anti-common-cold drugs, sequela +C2883197|T037|AB|T48.6|ICD10CM|Antiasthmatics, not elsewhere classified|Antiasthmatics, not elsewhere classified +C0496998|T037|PS|T48.6|ICD10|Antiasthmatics, not elsewhere classified|Antiasthmatics, not elsewhere classified +C0496998|T037|PX|T48.6|ICD10|Poisoning by antiasthmatics, not elsewhere classified|Poisoning by antiasthmatics, not elsewhere classified +C2883197|T037|HT|T48.6|ICD10CM|Poisoning by, adverse effect of and underdosing of antiasthmatics, not elsewhere classified|Poisoning by, adverse effect of and underdosing of antiasthmatics, not elsewhere classified +C2883198|T037|AB|T48.6X|ICD10CM|Antiasthmatics|Antiasthmatics +C2883198|T037|HT|T48.6X|ICD10CM|Poisoning by, adverse effect of and underdosing of antiasthmatics|Poisoning by, adverse effect of and underdosing of antiasthmatics +C0161637|T037|ET|T48.6X1|ICD10CM|Poisoning by antiasthmatics NOS|Poisoning by antiasthmatics NOS +C2883199|T037|AB|T48.6X1|ICD10CM|Poisoning by antiasthmatics, accidental (unintentional)|Poisoning by antiasthmatics, accidental (unintentional) +C2883199|T037|HT|T48.6X1|ICD10CM|Poisoning by antiasthmatics, accidental (unintentional)|Poisoning by antiasthmatics, accidental (unintentional) +C2883200|T037|PT|T48.6X1A|ICD10CM|Poisoning by antiasthmatics, accidental (unintentional), initial encounter|Poisoning by antiasthmatics, accidental (unintentional), initial encounter +C2883200|T037|AB|T48.6X1A|ICD10CM|Poisoning by antiasthmatics, accidental, init|Poisoning by antiasthmatics, accidental, init +C2883201|T037|PT|T48.6X1D|ICD10CM|Poisoning by antiasthmatics, accidental (unintentional), subsequent encounter|Poisoning by antiasthmatics, accidental (unintentional), subsequent encounter +C2883201|T037|AB|T48.6X1D|ICD10CM|Poisoning by antiasthmatics, accidental, subs|Poisoning by antiasthmatics, accidental, subs +C2883202|T037|PT|T48.6X1S|ICD10CM|Poisoning by antiasthmatics, accidental (unintentional), sequela|Poisoning by antiasthmatics, accidental (unintentional), sequela +C2883202|T037|AB|T48.6X1S|ICD10CM|Poisoning by antiasthmatics, accidental, sequela|Poisoning by antiasthmatics, accidental, sequela +C2883203|T037|AB|T48.6X2|ICD10CM|Poisoning by antiasthmatics, intentional self-harm|Poisoning by antiasthmatics, intentional self-harm +C2883203|T037|HT|T48.6X2|ICD10CM|Poisoning by antiasthmatics, intentional self-harm|Poisoning by antiasthmatics, intentional self-harm +C2883204|T037|AB|T48.6X2A|ICD10CM|Poisoning by antiasthmatics, intentional self-harm, init|Poisoning by antiasthmatics, intentional self-harm, init +C2883204|T037|PT|T48.6X2A|ICD10CM|Poisoning by antiasthmatics, intentional self-harm, initial encounter|Poisoning by antiasthmatics, intentional self-harm, initial encounter +C2883205|T037|AB|T48.6X2D|ICD10CM|Poisoning by antiasthmatics, intentional self-harm, subs|Poisoning by antiasthmatics, intentional self-harm, subs +C2883205|T037|PT|T48.6X2D|ICD10CM|Poisoning by antiasthmatics, intentional self-harm, subsequent encounter|Poisoning by antiasthmatics, intentional self-harm, subsequent encounter +C2883206|T037|AB|T48.6X2S|ICD10CM|Poisoning by antiasthmatics, intentional self-harm, sequela|Poisoning by antiasthmatics, intentional self-harm, sequela +C2883206|T037|PT|T48.6X2S|ICD10CM|Poisoning by antiasthmatics, intentional self-harm, sequela|Poisoning by antiasthmatics, intentional self-harm, sequela +C2883207|T037|AB|T48.6X3|ICD10CM|Poisoning by antiasthmatics, assault|Poisoning by antiasthmatics, assault +C2883207|T037|HT|T48.6X3|ICD10CM|Poisoning by antiasthmatics, assault|Poisoning by antiasthmatics, assault +C2883208|T037|AB|T48.6X3A|ICD10CM|Poisoning by antiasthmatics, assault, initial encounter|Poisoning by antiasthmatics, assault, initial encounter +C2883208|T037|PT|T48.6X3A|ICD10CM|Poisoning by antiasthmatics, assault, initial encounter|Poisoning by antiasthmatics, assault, initial encounter +C2883209|T037|AB|T48.6X3D|ICD10CM|Poisoning by antiasthmatics, assault, subsequent encounter|Poisoning by antiasthmatics, assault, subsequent encounter +C2883209|T037|PT|T48.6X3D|ICD10CM|Poisoning by antiasthmatics, assault, subsequent encounter|Poisoning by antiasthmatics, assault, subsequent encounter +C2883210|T037|AB|T48.6X3S|ICD10CM|Poisoning by antiasthmatics, assault, sequela|Poisoning by antiasthmatics, assault, sequela +C2883210|T037|PT|T48.6X3S|ICD10CM|Poisoning by antiasthmatics, assault, sequela|Poisoning by antiasthmatics, assault, sequela +C2883211|T037|AB|T48.6X4|ICD10CM|Poisoning by antiasthmatics, undetermined|Poisoning by antiasthmatics, undetermined +C2883211|T037|HT|T48.6X4|ICD10CM|Poisoning by antiasthmatics, undetermined|Poisoning by antiasthmatics, undetermined +C2883212|T037|AB|T48.6X4A|ICD10CM|Poisoning by antiasthmatics, undetermined, initial encounter|Poisoning by antiasthmatics, undetermined, initial encounter +C2883212|T037|PT|T48.6X4A|ICD10CM|Poisoning by antiasthmatics, undetermined, initial encounter|Poisoning by antiasthmatics, undetermined, initial encounter +C2883213|T037|AB|T48.6X4D|ICD10CM|Poisoning by antiasthmatics, undetermined, subs encntr|Poisoning by antiasthmatics, undetermined, subs encntr +C2883213|T037|PT|T48.6X4D|ICD10CM|Poisoning by antiasthmatics, undetermined, subsequent encounter|Poisoning by antiasthmatics, undetermined, subsequent encounter +C2883214|T037|AB|T48.6X4S|ICD10CM|Poisoning by antiasthmatics, undetermined, sequela|Poisoning by antiasthmatics, undetermined, sequela +C2883214|T037|PT|T48.6X4S|ICD10CM|Poisoning by antiasthmatics, undetermined, sequela|Poisoning by antiasthmatics, undetermined, sequela +C2883215|T037|AB|T48.6X5|ICD10CM|Adverse effect of antiasthmatics|Adverse effect of antiasthmatics +C2883215|T037|HT|T48.6X5|ICD10CM|Adverse effect of antiasthmatics|Adverse effect of antiasthmatics +C2883216|T037|AB|T48.6X5A|ICD10CM|Adverse effect of antiasthmatics, initial encounter|Adverse effect of antiasthmatics, initial encounter +C2883216|T037|PT|T48.6X5A|ICD10CM|Adverse effect of antiasthmatics, initial encounter|Adverse effect of antiasthmatics, initial encounter +C2883217|T037|AB|T48.6X5D|ICD10CM|Adverse effect of antiasthmatics, subsequent encounter|Adverse effect of antiasthmatics, subsequent encounter +C2883217|T037|PT|T48.6X5D|ICD10CM|Adverse effect of antiasthmatics, subsequent encounter|Adverse effect of antiasthmatics, subsequent encounter +C2883218|T037|AB|T48.6X5S|ICD10CM|Adverse effect of antiasthmatics, sequela|Adverse effect of antiasthmatics, sequela +C2883218|T037|PT|T48.6X5S|ICD10CM|Adverse effect of antiasthmatics, sequela|Adverse effect of antiasthmatics, sequela +C2883219|T033|AB|T48.6X6|ICD10CM|Underdosing of antiasthmatics|Underdosing of antiasthmatics +C2883219|T033|HT|T48.6X6|ICD10CM|Underdosing of antiasthmatics|Underdosing of antiasthmatics +C2883220|T037|AB|T48.6X6A|ICD10CM|Underdosing of antiasthmatics, initial encounter|Underdosing of antiasthmatics, initial encounter +C2883220|T037|PT|T48.6X6A|ICD10CM|Underdosing of antiasthmatics, initial encounter|Underdosing of antiasthmatics, initial encounter +C2883221|T037|AB|T48.6X6D|ICD10CM|Underdosing of antiasthmatics, subsequent encounter|Underdosing of antiasthmatics, subsequent encounter +C2883221|T037|PT|T48.6X6D|ICD10CM|Underdosing of antiasthmatics, subsequent encounter|Underdosing of antiasthmatics, subsequent encounter +C2883222|T037|AB|T48.6X6S|ICD10CM|Underdosing of antiasthmatics, sequela|Underdosing of antiasthmatics, sequela +C2883222|T037|PT|T48.6X6S|ICD10CM|Underdosing of antiasthmatics, sequela|Underdosing of antiasthmatics, sequela +C0496999|T037|PS|T48.7|ICD10|Other and unspecified agents primarily acting on the respiratory system|Other and unspecified agents primarily acting on the respiratory system +C0496999|T037|PX|T48.7|ICD10|Poisoning by other and unspecified agents primarily acting on the respiratory system|Poisoning by other and unspecified agents primarily acting on the respiratory system +C2883223|T037|AB|T48.9|ICD10CM|And unsp agents primarily acting on the respiratory system|And unsp agents primarily acting on the respiratory system +C2883224|T037|AB|T48.90|ICD10CM|Unsp agents primarily acting on the respiratory system|Unsp agents primarily acting on the respiratory system +C2883225|T037|AB|T48.901|ICD10CM|Poisn by unsp agents primarily acting on the resp sys, acc|Poisn by unsp agents primarily acting on the resp sys, acc +C2883226|T037|AB|T48.901A|ICD10CM|Poisn by unsp agents prim acting on the resp sys, acc, init|Poisn by unsp agents prim acting on the resp sys, acc, init +C2883227|T037|AB|T48.901D|ICD10CM|Poisn by unsp agents prim acting on the resp sys, acc, subs|Poisn by unsp agents prim acting on the resp sys, acc, subs +C2883228|T037|AB|T48.901S|ICD10CM|Poisn by unsp agents prim acting on the resp sys, acc, sqla|Poisn by unsp agents prim acting on the resp sys, acc, sqla +C2883229|T037|AB|T48.902|ICD10CM|Poisn by unsp agents prim acting on the resp sys, self-harm|Poisn by unsp agents prim acting on the resp sys, self-harm +C2883229|T037|HT|T48.902|ICD10CM|Poisoning by unspecified agents primarily acting on the respiratory system, intentional self-harm|Poisoning by unspecified agents primarily acting on the respiratory system, intentional self-harm +C2883230|T037|AB|T48.902A|ICD10CM|Poisn by unsp agents prim act on the resp sys, slf-hrm, init|Poisn by unsp agents prim act on the resp sys, slf-hrm, init +C2883231|T037|AB|T48.902D|ICD10CM|Poisn by unsp agents prim act on the resp sys, slf-hrm, subs|Poisn by unsp agents prim act on the resp sys, slf-hrm, subs +C2883232|T037|AB|T48.902S|ICD10CM|Poisn by unsp agents prim act on the resp sys, slf-hrm, sqla|Poisn by unsp agents prim act on the resp sys, slf-hrm, sqla +C2883233|T037|AB|T48.903|ICD10CM|Poisn by unsp agents prim acting on the resp sys, assault|Poisn by unsp agents prim acting on the resp sys, assault +C2883233|T037|HT|T48.903|ICD10CM|Poisoning by unspecified agents primarily acting on the respiratory system, assault|Poisoning by unspecified agents primarily acting on the respiratory system, assault +C2883234|T037|AB|T48.903A|ICD10CM|Poisn by unsp agents prim act on the resp sys, asslt, init|Poisn by unsp agents prim act on the resp sys, asslt, init +C2883235|T037|AB|T48.903D|ICD10CM|Poisn by unsp agents prim act on the resp sys, asslt, subs|Poisn by unsp agents prim act on the resp sys, asslt, subs +C2883236|T037|AB|T48.903S|ICD10CM|Poisn by unsp agents prim act on the resp sys, asslt, sqla|Poisn by unsp agents prim act on the resp sys, asslt, sqla +C2883236|T037|PT|T48.903S|ICD10CM|Poisoning by unspecified agents primarily acting on the respiratory system, assault, sequela|Poisoning by unspecified agents primarily acting on the respiratory system, assault, sequela +C2883237|T037|AB|T48.904|ICD10CM|Poisn by unsp agents primarily acting on the resp sys, undet|Poisn by unsp agents primarily acting on the resp sys, undet +C2883237|T037|HT|T48.904|ICD10CM|Poisoning by unspecified agents primarily acting on the respiratory system, undetermined|Poisoning by unspecified agents primarily acting on the respiratory system, undetermined +C2883238|T037|AB|T48.904A|ICD10CM|Poisn by unsp agents prim act on the resp sys, undet, init|Poisn by unsp agents prim act on the resp sys, undet, init +C2883239|T037|AB|T48.904D|ICD10CM|Poisn by unsp agents prim act on the resp sys, undet, subs|Poisn by unsp agents prim act on the resp sys, undet, subs +C2883240|T037|AB|T48.904S|ICD10CM|Poisn by unsp agents prim act on the resp sys, undet, sqla|Poisn by unsp agents prim act on the resp sys, undet, sqla +C2883240|T037|PT|T48.904S|ICD10CM|Poisoning by unspecified agents primarily acting on the respiratory system, undetermined, sequela|Poisoning by unspecified agents primarily acting on the respiratory system, undetermined, sequela +C2883241|T037|AB|T48.905|ICD10CM|Adverse effect of unsp agents prim acting on the resp sys|Adverse effect of unsp agents prim acting on the resp sys +C2883241|T037|HT|T48.905|ICD10CM|Adverse effect of unspecified agents primarily acting on the respiratory system|Adverse effect of unspecified agents primarily acting on the respiratory system +C2883242|T037|PT|T48.905A|ICD10CM|Adverse effect of unspecified agents primarily acting on the respiratory system, initial encounter|Adverse effect of unspecified agents primarily acting on the respiratory system, initial encounter +C2883242|T037|AB|T48.905A|ICD10CM|Advrs effect of unsp agents prim act on the resp sys, init|Advrs effect of unsp agents prim act on the resp sys, init +C2883243|T037|AB|T48.905D|ICD10CM|Advrs effect of unsp agents prim act on the resp sys, subs|Advrs effect of unsp agents prim act on the resp sys, subs +C2883244|T037|PT|T48.905S|ICD10CM|Adverse effect of unspecified agents primarily acting on the respiratory system, sequela|Adverse effect of unspecified agents primarily acting on the respiratory system, sequela +C2883244|T037|AB|T48.905S|ICD10CM|Advrs effect of unsp agents prim act on the resp sys, sqla|Advrs effect of unsp agents prim act on the resp sys, sqla +C2883245|T037|AB|T48.906|ICD10CM|Underdosing of unsp agents primarily acting on the resp sys|Underdosing of unsp agents primarily acting on the resp sys +C2883245|T037|HT|T48.906|ICD10CM|Underdosing of unspecified agents primarily acting on the respiratory system|Underdosing of unspecified agents primarily acting on the respiratory system +C2883246|T037|PT|T48.906A|ICD10CM|Underdosing of unspecified agents primarily acting on the respiratory system, initial encounter|Underdosing of unspecified agents primarily acting on the respiratory system, initial encounter +C2883246|T037|AB|T48.906A|ICD10CM|Undrdose of unsp agents prim acting on the resp sys, init|Undrdose of unsp agents prim acting on the resp sys, init +C2883247|T037|PT|T48.906D|ICD10CM|Underdosing of unspecified agents primarily acting on the respiratory system, subsequent encounter|Underdosing of unspecified agents primarily acting on the respiratory system, subsequent encounter +C2883247|T037|AB|T48.906D|ICD10CM|Undrdose of unsp agents prim acting on the resp sys, subs|Undrdose of unsp agents prim acting on the resp sys, subs +C2883248|T037|PT|T48.906S|ICD10CM|Underdosing of unspecified agents primarily acting on the respiratory system, sequela|Underdosing of unspecified agents primarily acting on the respiratory system, sequela +C2883248|T037|AB|T48.906S|ICD10CM|Undrdose of unsp agents prim acting on the resp sys, sequela|Undrdose of unsp agents prim acting on the resp sys, sequela +C2883249|T037|AB|T48.99|ICD10CM|Agents primarily acting on the respiratory system|Agents primarily acting on the respiratory system +C2883250|T037|AB|T48.991|ICD10CM|Poisn by oth agents primarily acting on the resp sys, acc|Poisn by oth agents primarily acting on the resp sys, acc +C2883250|T037|HT|T48.991|ICD10CM|Poisoning by other agents primarily acting on the respiratory system, accidental (unintentional)|Poisoning by other agents primarily acting on the respiratory system, accidental (unintentional) +C2883251|T037|AB|T48.991A|ICD10CM|Poisn by oth agents prim acting on the resp sys, acc, init|Poisn by oth agents prim acting on the resp sys, acc, init +C2883252|T037|AB|T48.991D|ICD10CM|Poisn by oth agents prim acting on the resp sys, acc, subs|Poisn by oth agents prim acting on the resp sys, acc, subs +C2883253|T037|AB|T48.991S|ICD10CM|Poisn by oth agents prim acting on the resp sys, acc, sqla|Poisn by oth agents prim acting on the resp sys, acc, sqla +C2883254|T037|AB|T48.992|ICD10CM|Poisn by oth agents prim acting on the resp sys, self-harm|Poisn by oth agents prim acting on the resp sys, self-harm +C2883254|T037|HT|T48.992|ICD10CM|Poisoning by other agents primarily acting on the respiratory system, intentional self-harm|Poisoning by other agents primarily acting on the respiratory system, intentional self-harm +C2883255|T037|AB|T48.992A|ICD10CM|Poisn by oth agents prim act on the resp sys, slf-hrm, init|Poisn by oth agents prim act on the resp sys, slf-hrm, init +C2883256|T037|AB|T48.992D|ICD10CM|Poisn by oth agents prim act on the resp sys, slf-hrm, subs|Poisn by oth agents prim act on the resp sys, slf-hrm, subs +C2883257|T037|AB|T48.992S|ICD10CM|Poisn by oth agents prim act on the resp sys, slf-hrm, sqla|Poisn by oth agents prim act on the resp sys, slf-hrm, sqla +C2883257|T037|PT|T48.992S|ICD10CM|Poisoning by other agents primarily acting on the respiratory system, intentional self-harm, sequela|Poisoning by other agents primarily acting on the respiratory system, intentional self-harm, sequela +C2883258|T037|AB|T48.993|ICD10CM|Poisn by oth agents prim acting on the resp sys, assault|Poisn by oth agents prim acting on the resp sys, assault +C2883258|T037|HT|T48.993|ICD10CM|Poisoning by other agents primarily acting on the respiratory system, assault|Poisoning by other agents primarily acting on the respiratory system, assault +C2883259|T037|AB|T48.993A|ICD10CM|Poisn by oth agents prim acting on the resp sys, asslt, init|Poisn by oth agents prim acting on the resp sys, asslt, init +C2883259|T037|PT|T48.993A|ICD10CM|Poisoning by other agents primarily acting on the respiratory system, assault, initial encounter|Poisoning by other agents primarily acting on the respiratory system, assault, initial encounter +C2883260|T037|AB|T48.993D|ICD10CM|Poisn by oth agents prim acting on the resp sys, asslt, subs|Poisn by oth agents prim acting on the resp sys, asslt, subs +C2883260|T037|PT|T48.993D|ICD10CM|Poisoning by other agents primarily acting on the respiratory system, assault, subsequent encounter|Poisoning by other agents primarily acting on the respiratory system, assault, subsequent encounter +C2883261|T037|AB|T48.993S|ICD10CM|Poisn by oth agents prim acting on the resp sys, asslt, sqla|Poisn by oth agents prim acting on the resp sys, asslt, sqla +C2883261|T037|PT|T48.993S|ICD10CM|Poisoning by other agents primarily acting on the respiratory system, assault, sequela|Poisoning by other agents primarily acting on the respiratory system, assault, sequela +C2883262|T037|AB|T48.994|ICD10CM|Poisn by oth agents primarily acting on the resp sys, undet|Poisn by oth agents primarily acting on the resp sys, undet +C2883262|T037|HT|T48.994|ICD10CM|Poisoning by other agents primarily acting on the respiratory system, undetermined|Poisoning by other agents primarily acting on the respiratory system, undetermined +C2883263|T037|AB|T48.994A|ICD10CM|Poisn by oth agents prim acting on the resp sys, undet, init|Poisn by oth agents prim acting on the resp sys, undet, init +C2883264|T037|AB|T48.994D|ICD10CM|Poisn by oth agents prim acting on the resp sys, undet, subs|Poisn by oth agents prim acting on the resp sys, undet, subs +C2883265|T037|AB|T48.994S|ICD10CM|Poisn by oth agents prim acting on the resp sys, undet, sqla|Poisn by oth agents prim acting on the resp sys, undet, sqla +C2883265|T037|PT|T48.994S|ICD10CM|Poisoning by other agents primarily acting on the respiratory system, undetermined, sequela|Poisoning by other agents primarily acting on the respiratory system, undetermined, sequela +C2883266|T037|AB|T48.995|ICD10CM|Adverse effect of agents primarily acting on the resp sys|Adverse effect of agents primarily acting on the resp sys +C2883266|T037|HT|T48.995|ICD10CM|Adverse effect of other agents primarily acting on the respiratory system|Adverse effect of other agents primarily acting on the respiratory system +C2883267|T037|AB|T48.995A|ICD10CM|Adverse effect of agents prim acting on the resp sys, init|Adverse effect of agents prim acting on the resp sys, init +C2883267|T037|PT|T48.995A|ICD10CM|Adverse effect of other agents primarily acting on the respiratory system, initial encounter|Adverse effect of other agents primarily acting on the respiratory system, initial encounter +C2883268|T037|AB|T48.995D|ICD10CM|Adverse effect of agents prim acting on the resp sys, subs|Adverse effect of agents prim acting on the resp sys, subs +C2883268|T037|PT|T48.995D|ICD10CM|Adverse effect of other agents primarily acting on the respiratory system, subsequent encounter|Adverse effect of other agents primarily acting on the respiratory system, subsequent encounter +C2883269|T037|PT|T48.995S|ICD10CM|Adverse effect of other agents primarily acting on the respiratory system, sequela|Adverse effect of other agents primarily acting on the respiratory system, sequela +C2883269|T037|AB|T48.995S|ICD10CM|Advrs effect of agents prim acting on the resp sys, sequela|Advrs effect of agents prim acting on the resp sys, sequela +C2883270|T037|AB|T48.996|ICD10CM|Underdosing of agents primarily acting on the resp sys|Underdosing of agents primarily acting on the resp sys +C2883270|T037|HT|T48.996|ICD10CM|Underdosing of other agents primarily acting on the respiratory system|Underdosing of other agents primarily acting on the respiratory system +C2883271|T037|AB|T48.996A|ICD10CM|Underdosing of agents primarily acting on the resp sys, init|Underdosing of agents primarily acting on the resp sys, init +C2883271|T037|PT|T48.996A|ICD10CM|Underdosing of other agents primarily acting on the respiratory system, initial encounter|Underdosing of other agents primarily acting on the respiratory system, initial encounter +C2883272|T037|AB|T48.996D|ICD10CM|Underdosing of agents primarily acting on the resp sys, subs|Underdosing of agents primarily acting on the resp sys, subs +C2883272|T037|PT|T48.996D|ICD10CM|Underdosing of other agents primarily acting on the respiratory system, subsequent encounter|Underdosing of other agents primarily acting on the respiratory system, subsequent encounter +C2883273|T037|PT|T48.996S|ICD10CM|Underdosing of other agents primarily acting on the respiratory system, sequela|Underdosing of other agents primarily acting on the respiratory system, sequela +C2883273|T037|AB|T48.996S|ICD10CM|Undrdose of agents primarily acting on the resp sys, sequela|Undrdose of agents primarily acting on the resp sys, sequela +C4290403|T037|ET|T49|ICD10CM|poisoning by, adverse effect of and underdosing of glucocorticoids, topically used|poisoning by, adverse effect of and underdosing of glucocorticoids, topically used +C2883275|T037|AB|T49|ICD10CM|Topical skin/eye/ENT/dental drugs|Topical skin/eye/ENT/dental drugs +C2883276|T037|AB|T49.0|ICD10CM|Local antifungal, anti-infective and anti-inflammatory drugs|Local antifungal, anti-infective and anti-inflammatory drugs +C0869096|T037|PS|T49.0|ICD10|Local antifungal, anti-infective and anti-inflammatory drugs, not elsewhere classified|Local antifungal, anti-infective and anti-inflammatory drugs, not elsewhere classified +C0869096|T037|PX|T49.0|ICD10|Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, not elsewhere classified|Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, not elsewhere classified +C2883276|T037|AB|T49.0X|ICD10CM|Local antifungal, anti-infective and anti-inflammatory drugs|Local antifungal, anti-infective and anti-inflammatory drugs +C2883278|T037|AB|T49.0X1|ICD10CM|Poisoning by local antifung/infect/inflamm drugs, acc|Poisoning by local antifung/infect/inflamm drugs, acc +C2883277|T037|ET|T49.0X1|ICD10CM|Poisoning by local antifungal, anti-infective and anti-inflammatory drugs NOS|Poisoning by local antifungal, anti-infective and anti-inflammatory drugs NOS +C2883279|T037|AB|T49.0X1A|ICD10CM|Poisoning by local antifung/infect/inflamm drugs, acc, init|Poisoning by local antifung/infect/inflamm drugs, acc, init +C2883280|T037|AB|T49.0X1D|ICD10CM|Poisoning by local antifung/infect/inflamm drugs, acc, subs|Poisoning by local antifung/infect/inflamm drugs, acc, subs +C2883281|T037|AB|T49.0X1S|ICD10CM|Poisn by local antifung/infect/inflamm drugs, acc, sequela|Poisn by local antifung/infect/inflamm drugs, acc, sequela +C2883282|T037|AB|T49.0X2|ICD10CM|Poisoning by local antifung/infect/inflamm drugs, self-harm|Poisoning by local antifung/infect/inflamm drugs, self-harm +C2883282|T037|HT|T49.0X2|ICD10CM|Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, intentional self-harm|Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, intentional self-harm +C2883283|T037|AB|T49.0X2A|ICD10CM|Poisn by local antifung/infect/inflamm drugs, slf-hrm, init|Poisn by local antifung/infect/inflamm drugs, slf-hrm, init +C2883284|T037|AB|T49.0X2D|ICD10CM|Poisn by local antifung/infect/inflamm drugs, slf-hrm, subs|Poisn by local antifung/infect/inflamm drugs, slf-hrm, subs +C2883285|T037|AB|T49.0X2S|ICD10CM|Poisn by local antifung/infect/inflamm drugs, slf-hrm, sqla|Poisn by local antifung/infect/inflamm drugs, slf-hrm, sqla +C2883286|T037|AB|T49.0X3|ICD10CM|Poisoning by local antifung/infect/inflamm drugs, assault|Poisoning by local antifung/infect/inflamm drugs, assault +C2883286|T037|HT|T49.0X3|ICD10CM|Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, assault|Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, assault +C2883287|T037|AB|T49.0X3A|ICD10CM|Poisn by local antifung/infect/inflamm drugs, assault, init|Poisn by local antifung/infect/inflamm drugs, assault, init +C2883288|T037|AB|T49.0X3D|ICD10CM|Poisn by local antifung/infect/inflamm drugs, assault, subs|Poisn by local antifung/infect/inflamm drugs, assault, subs +C2883289|T037|AB|T49.0X3S|ICD10CM|Poisn by local antifung/infect/inflamm drugs, asslt, sequela|Poisn by local antifung/infect/inflamm drugs, asslt, sequela +C2883289|T037|PT|T49.0X3S|ICD10CM|Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, assault, sequela|Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, assault, sequela +C2883290|T037|AB|T49.0X4|ICD10CM|Poisoning by local antifung/infect/inflamm drugs, undet|Poisoning by local antifung/infect/inflamm drugs, undet +C2883290|T037|HT|T49.0X4|ICD10CM|Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, undetermined|Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, undetermined +C2883291|T037|AB|T49.0X4A|ICD10CM|Poisn by local antifung/infect/inflamm drugs, undet, init|Poisn by local antifung/infect/inflamm drugs, undet, init +C2883292|T037|AB|T49.0X4D|ICD10CM|Poisn by local antifung/infect/inflamm drugs, undet, subs|Poisn by local antifung/infect/inflamm drugs, undet, subs +C2883293|T037|AB|T49.0X4S|ICD10CM|Poisn by local antifung/infect/inflamm drugs, undet, sequela|Poisn by local antifung/infect/inflamm drugs, undet, sequela +C2883293|T037|PT|T49.0X4S|ICD10CM|Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, undetermined, sequela|Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, undetermined, sequela +C2883294|T037|AB|T49.0X5|ICD10CM|Adverse effect of local antifung/infect/inflamm drugs|Adverse effect of local antifung/infect/inflamm drugs +C2883294|T037|HT|T49.0X5|ICD10CM|Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs|Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs +C2883295|T037|AB|T49.0X5A|ICD10CM|Adverse effect of local antifung/infect/inflamm drugs, init|Adverse effect of local antifung/infect/inflamm drugs, init +C2883295|T037|PT|T49.0X5A|ICD10CM|Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs, initial encounter|Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs, initial encounter +C2883296|T037|AB|T49.0X5D|ICD10CM|Adverse effect of local antifung/infect/inflamm drugs, subs|Adverse effect of local antifung/infect/inflamm drugs, subs +C2883296|T037|PT|T49.0X5D|ICD10CM|Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs, subsequent encounter|Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs, subsequent encounter +C2883297|T037|PT|T49.0X5S|ICD10CM|Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs, sequela|Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs, sequela +C2883297|T037|AB|T49.0X5S|ICD10CM|Advrs effect of local antifung/infect/inflamm drugs, sequela|Advrs effect of local antifung/infect/inflamm drugs, sequela +C2883298|T037|AB|T49.0X6|ICD10CM|Underdosing of local antifung/infect/inflamm drugs|Underdosing of local antifung/infect/inflamm drugs +C2883298|T037|HT|T49.0X6|ICD10CM|Underdosing of local antifungal, anti-infective and anti-inflammatory drugs|Underdosing of local antifungal, anti-infective and anti-inflammatory drugs +C2883299|T037|AB|T49.0X6A|ICD10CM|Underdosing of local antifung/infect/inflamm drugs, init|Underdosing of local antifung/infect/inflamm drugs, init +C2883299|T037|PT|T49.0X6A|ICD10CM|Underdosing of local antifungal, anti-infective and anti-inflammatory drugs, initial encounter|Underdosing of local antifungal, anti-infective and anti-inflammatory drugs, initial encounter +C2883300|T037|AB|T49.0X6D|ICD10CM|Underdosing of local antifung/infect/inflamm drugs, subs|Underdosing of local antifung/infect/inflamm drugs, subs +C2883300|T037|PT|T49.0X6D|ICD10CM|Underdosing of local antifungal, anti-infective and anti-inflammatory drugs, subsequent encounter|Underdosing of local antifungal, anti-infective and anti-inflammatory drugs, subsequent encounter +C2883301|T037|AB|T49.0X6S|ICD10CM|Underdosing of local antifung/infect/inflamm drugs, sequela|Underdosing of local antifung/infect/inflamm drugs, sequela +C2883301|T037|PT|T49.0X6S|ICD10CM|Underdosing of local antifungal, anti-infective and anti-inflammatory drugs, sequela|Underdosing of local antifungal, anti-infective and anti-inflammatory drugs, sequela +C2883302|T037|AB|T49.1|ICD10CM|Antipruritics|Antipruritics +C0161641|T037|PS|T49.1|ICD10|Antipruritics|Antipruritics +C0161641|T037|PX|T49.1|ICD10|Poisoning by antipruritics|Poisoning by antipruritics +C2883302|T037|HT|T49.1|ICD10CM|Poisoning by, adverse effect of and underdosing of antipruritics|Poisoning by, adverse effect of and underdosing of antipruritics +C2883302|T037|AB|T49.1X|ICD10CM|Antipruritics|Antipruritics +C2883302|T037|HT|T49.1X|ICD10CM|Poisoning by, adverse effect of and underdosing of antipruritics|Poisoning by, adverse effect of and underdosing of antipruritics +C0161641|T037|ET|T49.1X1|ICD10CM|Poisoning by antipruritics NOS|Poisoning by antipruritics NOS +C2883303|T037|AB|T49.1X1|ICD10CM|Poisoning by antipruritics, accidental (unintentional)|Poisoning by antipruritics, accidental (unintentional) +C2883303|T037|HT|T49.1X1|ICD10CM|Poisoning by antipruritics, accidental (unintentional)|Poisoning by antipruritics, accidental (unintentional) +C2883304|T037|AB|T49.1X1A|ICD10CM|Poisoning by antipruritics, accidental (unintentional), init|Poisoning by antipruritics, accidental (unintentional), init +C2883304|T037|PT|T49.1X1A|ICD10CM|Poisoning by antipruritics, accidental (unintentional), initial encounter|Poisoning by antipruritics, accidental (unintentional), initial encounter +C2883305|T037|AB|T49.1X1D|ICD10CM|Poisoning by antipruritics, accidental (unintentional), subs|Poisoning by antipruritics, accidental (unintentional), subs +C2883305|T037|PT|T49.1X1D|ICD10CM|Poisoning by antipruritics, accidental (unintentional), subsequent encounter|Poisoning by antipruritics, accidental (unintentional), subsequent encounter +C2883306|T037|PT|T49.1X1S|ICD10CM|Poisoning by antipruritics, accidental (unintentional), sequela|Poisoning by antipruritics, accidental (unintentional), sequela +C2883306|T037|AB|T49.1X1S|ICD10CM|Poisoning by antipruritics, accidental, sequela|Poisoning by antipruritics, accidental, sequela +C2883307|T037|AB|T49.1X2|ICD10CM|Poisoning by antipruritics, intentional self-harm|Poisoning by antipruritics, intentional self-harm +C2883307|T037|HT|T49.1X2|ICD10CM|Poisoning by antipruritics, intentional self-harm|Poisoning by antipruritics, intentional self-harm +C2883308|T037|AB|T49.1X2A|ICD10CM|Poisoning by antipruritics, intentional self-harm, init|Poisoning by antipruritics, intentional self-harm, init +C2883308|T037|PT|T49.1X2A|ICD10CM|Poisoning by antipruritics, intentional self-harm, initial encounter|Poisoning by antipruritics, intentional self-harm, initial encounter +C2883309|T037|AB|T49.1X2D|ICD10CM|Poisoning by antipruritics, intentional self-harm, subs|Poisoning by antipruritics, intentional self-harm, subs +C2883309|T037|PT|T49.1X2D|ICD10CM|Poisoning by antipruritics, intentional self-harm, subsequent encounter|Poisoning by antipruritics, intentional self-harm, subsequent encounter +C2883310|T037|AB|T49.1X2S|ICD10CM|Poisoning by antipruritics, intentional self-harm, sequela|Poisoning by antipruritics, intentional self-harm, sequela +C2883310|T037|PT|T49.1X2S|ICD10CM|Poisoning by antipruritics, intentional self-harm, sequela|Poisoning by antipruritics, intentional self-harm, sequela +C2883311|T037|AB|T49.1X3|ICD10CM|Poisoning by antipruritics, assault|Poisoning by antipruritics, assault +C2883311|T037|HT|T49.1X3|ICD10CM|Poisoning by antipruritics, assault|Poisoning by antipruritics, assault +C2883312|T037|AB|T49.1X3A|ICD10CM|Poisoning by antipruritics, assault, initial encounter|Poisoning by antipruritics, assault, initial encounter +C2883312|T037|PT|T49.1X3A|ICD10CM|Poisoning by antipruritics, assault, initial encounter|Poisoning by antipruritics, assault, initial encounter +C2883313|T037|AB|T49.1X3D|ICD10CM|Poisoning by antipruritics, assault, subsequent encounter|Poisoning by antipruritics, assault, subsequent encounter +C2883313|T037|PT|T49.1X3D|ICD10CM|Poisoning by antipruritics, assault, subsequent encounter|Poisoning by antipruritics, assault, subsequent encounter +C2883314|T037|AB|T49.1X3S|ICD10CM|Poisoning by antipruritics, assault, sequela|Poisoning by antipruritics, assault, sequela +C2883314|T037|PT|T49.1X3S|ICD10CM|Poisoning by antipruritics, assault, sequela|Poisoning by antipruritics, assault, sequela +C2883315|T037|AB|T49.1X4|ICD10CM|Poisoning by antipruritics, undetermined|Poisoning by antipruritics, undetermined +C2883315|T037|HT|T49.1X4|ICD10CM|Poisoning by antipruritics, undetermined|Poisoning by antipruritics, undetermined +C2883316|T037|AB|T49.1X4A|ICD10CM|Poisoning by antipruritics, undetermined, initial encounter|Poisoning by antipruritics, undetermined, initial encounter +C2883316|T037|PT|T49.1X4A|ICD10CM|Poisoning by antipruritics, undetermined, initial encounter|Poisoning by antipruritics, undetermined, initial encounter +C2883317|T037|AB|T49.1X4D|ICD10CM|Poisoning by antipruritics, undetermined, subs encntr|Poisoning by antipruritics, undetermined, subs encntr +C2883317|T037|PT|T49.1X4D|ICD10CM|Poisoning by antipruritics, undetermined, subsequent encounter|Poisoning by antipruritics, undetermined, subsequent encounter +C2883318|T037|AB|T49.1X4S|ICD10CM|Poisoning by antipruritics, undetermined, sequela|Poisoning by antipruritics, undetermined, sequela +C2883318|T037|PT|T49.1X4S|ICD10CM|Poisoning by antipruritics, undetermined, sequela|Poisoning by antipruritics, undetermined, sequela +C0261915|T046|AB|T49.1X5|ICD10CM|Adverse effect of antipruritics|Adverse effect of antipruritics +C0261915|T046|HT|T49.1X5|ICD10CM|Adverse effect of antipruritics|Adverse effect of antipruritics +C2883319|T037|AB|T49.1X5A|ICD10CM|Adverse effect of antipruritics, initial encounter|Adverse effect of antipruritics, initial encounter +C2883319|T037|PT|T49.1X5A|ICD10CM|Adverse effect of antipruritics, initial encounter|Adverse effect of antipruritics, initial encounter +C2883320|T037|AB|T49.1X5D|ICD10CM|Adverse effect of antipruritics, subsequent encounter|Adverse effect of antipruritics, subsequent encounter +C2883320|T037|PT|T49.1X5D|ICD10CM|Adverse effect of antipruritics, subsequent encounter|Adverse effect of antipruritics, subsequent encounter +C2883321|T037|AB|T49.1X5S|ICD10CM|Adverse effect of antipruritics, sequela|Adverse effect of antipruritics, sequela +C2883321|T037|PT|T49.1X5S|ICD10CM|Adverse effect of antipruritics, sequela|Adverse effect of antipruritics, sequela +C2883322|T033|AB|T49.1X6|ICD10CM|Underdosing of antipruritics|Underdosing of antipruritics +C2883322|T033|HT|T49.1X6|ICD10CM|Underdosing of antipruritics|Underdosing of antipruritics +C2883323|T037|AB|T49.1X6A|ICD10CM|Underdosing of antipruritics, initial encounter|Underdosing of antipruritics, initial encounter +C2883323|T037|PT|T49.1X6A|ICD10CM|Underdosing of antipruritics, initial encounter|Underdosing of antipruritics, initial encounter +C2883324|T037|AB|T49.1X6D|ICD10CM|Underdosing of antipruritics, subsequent encounter|Underdosing of antipruritics, subsequent encounter +C2883324|T037|PT|T49.1X6D|ICD10CM|Underdosing of antipruritics, subsequent encounter|Underdosing of antipruritics, subsequent encounter +C2883325|T037|AB|T49.1X6S|ICD10CM|Underdosing of antipruritics, sequela|Underdosing of antipruritics, sequela +C2883325|T037|PT|T49.1X6S|ICD10CM|Underdosing of antipruritics, sequela|Underdosing of antipruritics, sequela +C2883326|T037|AB|T49.2|ICD10CM|Local astringents and local detergents|Local astringents and local detergents +C0161642|T037|PS|T49.2|ICD10|Local astringents and local detergents|Local astringents and local detergents +C0161642|T037|PX|T49.2|ICD10|Poisoning by local astringents and local detergents|Poisoning by local astringents and local detergents +C2883326|T037|HT|T49.2|ICD10CM|Poisoning by, adverse effect of and underdosing of local astringents and local detergents|Poisoning by, adverse effect of and underdosing of local astringents and local detergents +C2883326|T037|AB|T49.2X|ICD10CM|Local astringents and local detergents|Local astringents and local detergents +C2883326|T037|HT|T49.2X|ICD10CM|Poisoning by, adverse effect of and underdosing of local astringents and local detergents|Poisoning by, adverse effect of and underdosing of local astringents and local detergents +C0161642|T037|ET|T49.2X1|ICD10CM|Poisoning by local astringents and local detergents NOS|Poisoning by local astringents and local detergents NOS +C0568728|T037|HT|T49.2X1|ICD10CM|Poisoning by local astringents and local detergents, accidental (unintentional)|Poisoning by local astringents and local detergents, accidental (unintentional) +C0568728|T037|AB|T49.2X1|ICD10CM|Poisoning by local astringents/detergents, accidental|Poisoning by local astringents/detergents, accidental +C2883328|T037|PT|T49.2X1A|ICD10CM|Poisoning by local astringents and local detergents, accidental (unintentional), initial encounter|Poisoning by local astringents and local detergents, accidental (unintentional), initial encounter +C2883328|T037|AB|T49.2X1A|ICD10CM|Poisoning by local astringents/detergents, accidental, init|Poisoning by local astringents/detergents, accidental, init +C2883329|T037|AB|T49.2X1D|ICD10CM|Poisoning by local astringents/detergents, accidental, subs|Poisoning by local astringents/detergents, accidental, subs +C2883330|T037|PT|T49.2X1S|ICD10CM|Poisoning by local astringents and local detergents, accidental (unintentional), sequela|Poisoning by local astringents and local detergents, accidental (unintentional), sequela +C2883330|T037|AB|T49.2X1S|ICD10CM|Poisoning by local astringents/detergents, acc, sequela|Poisoning by local astringents/detergents, acc, sequela +C2883331|T037|HT|T49.2X2|ICD10CM|Poisoning by local astringents and local detergents, intentional self-harm|Poisoning by local astringents and local detergents, intentional self-harm +C2883331|T037|AB|T49.2X2|ICD10CM|Poisoning by local astringents/detergents, self-harm|Poisoning by local astringents/detergents, self-harm +C2883332|T037|PT|T49.2X2A|ICD10CM|Poisoning by local astringents and local detergents, intentional self-harm, initial encounter|Poisoning by local astringents and local detergents, intentional self-harm, initial encounter +C2883332|T037|AB|T49.2X2A|ICD10CM|Poisoning by local astringents/detergents, self-harm, init|Poisoning by local astringents/detergents, self-harm, init +C2883333|T037|PT|T49.2X2D|ICD10CM|Poisoning by local astringents and local detergents, intentional self-harm, subsequent encounter|Poisoning by local astringents and local detergents, intentional self-harm, subsequent encounter +C2883333|T037|AB|T49.2X2D|ICD10CM|Poisoning by local astringents/detergents, self-harm, subs|Poisoning by local astringents/detergents, self-harm, subs +C2883334|T037|AB|T49.2X2S|ICD10CM|Poisn by local astringents/detergents, self-harm, sequela|Poisn by local astringents/detergents, self-harm, sequela +C2883334|T037|PT|T49.2X2S|ICD10CM|Poisoning by local astringents and local detergents, intentional self-harm, sequela|Poisoning by local astringents and local detergents, intentional self-harm, sequela +C2883335|T037|AB|T49.2X3|ICD10CM|Poisoning by local astringents and local detergents, assault|Poisoning by local astringents and local detergents, assault +C2883335|T037|HT|T49.2X3|ICD10CM|Poisoning by local astringents and local detergents, assault|Poisoning by local astringents and local detergents, assault +C2883336|T037|PT|T49.2X3A|ICD10CM|Poisoning by local astringents and local detergents, assault, initial encounter|Poisoning by local astringents and local detergents, assault, initial encounter +C2883336|T037|AB|T49.2X3A|ICD10CM|Poisoning by local astringents/detergents, assault, init|Poisoning by local astringents/detergents, assault, init +C2883337|T037|PT|T49.2X3D|ICD10CM|Poisoning by local astringents and local detergents, assault, subsequent encounter|Poisoning by local astringents and local detergents, assault, subsequent encounter +C2883337|T037|AB|T49.2X3D|ICD10CM|Poisoning by local astringents/detergents, assault, subs|Poisoning by local astringents/detergents, assault, subs +C2883338|T037|PT|T49.2X3S|ICD10CM|Poisoning by local astringents and local detergents, assault, sequela|Poisoning by local astringents and local detergents, assault, sequela +C2883338|T037|AB|T49.2X3S|ICD10CM|Poisoning by local astringents/detergents, assault, sequela|Poisoning by local astringents/detergents, assault, sequela +C2883339|T037|HT|T49.2X4|ICD10CM|Poisoning by local astringents and local detergents, undetermined|Poisoning by local astringents and local detergents, undetermined +C2883339|T037|AB|T49.2X4|ICD10CM|Poisoning by local astringents/detergents, undetermined|Poisoning by local astringents/detergents, undetermined +C2883340|T037|PT|T49.2X4A|ICD10CM|Poisoning by local astringents and local detergents, undetermined, initial encounter|Poisoning by local astringents and local detergents, undetermined, initial encounter +C2883340|T037|AB|T49.2X4A|ICD10CM|Poisoning by local astringents/detergents, undet, init|Poisoning by local astringents/detergents, undet, init +C2883341|T037|PT|T49.2X4D|ICD10CM|Poisoning by local astringents and local detergents, undetermined, subsequent encounter|Poisoning by local astringents and local detergents, undetermined, subsequent encounter +C2883341|T037|AB|T49.2X4D|ICD10CM|Poisoning by local astringents/detergents, undet, subs|Poisoning by local astringents/detergents, undet, subs +C2883342|T037|PT|T49.2X4S|ICD10CM|Poisoning by local astringents and local detergents, undetermined, sequela|Poisoning by local astringents and local detergents, undetermined, sequela +C2883342|T037|AB|T49.2X4S|ICD10CM|Poisoning by local astringents/detergents, undet, sequela|Poisoning by local astringents/detergents, undet, sequela +C2883343|T037|AB|T49.2X5|ICD10CM|Adverse effect of local astringents and local detergents|Adverse effect of local astringents and local detergents +C2883343|T037|HT|T49.2X5|ICD10CM|Adverse effect of local astringents and local detergents|Adverse effect of local astringents and local detergents +C2883344|T037|PT|T49.2X5A|ICD10CM|Adverse effect of local astringents and local detergents, initial encounter|Adverse effect of local astringents and local detergents, initial encounter +C2883344|T037|AB|T49.2X5A|ICD10CM|Adverse effect of local astringents/detergents, init|Adverse effect of local astringents/detergents, init +C2883345|T037|PT|T49.2X5D|ICD10CM|Adverse effect of local astringents and local detergents, subsequent encounter|Adverse effect of local astringents and local detergents, subsequent encounter +C2883345|T037|AB|T49.2X5D|ICD10CM|Adverse effect of local astringents/detergents, subs|Adverse effect of local astringents/detergents, subs +C2883346|T037|PT|T49.2X5S|ICD10CM|Adverse effect of local astringents and local detergents, sequela|Adverse effect of local astringents and local detergents, sequela +C2883346|T037|AB|T49.2X5S|ICD10CM|Adverse effect of local astringents/detergents, sequela|Adverse effect of local astringents/detergents, sequela +C2883347|T037|AB|T49.2X6|ICD10CM|Underdosing of local astringents and local detergents|Underdosing of local astringents and local detergents +C2883347|T037|HT|T49.2X6|ICD10CM|Underdosing of local astringents and local detergents|Underdosing of local astringents and local detergents +C2883348|T037|AB|T49.2X6A|ICD10CM|Underdosing of local astringents and local detergents, init|Underdosing of local astringents and local detergents, init +C2883348|T037|PT|T49.2X6A|ICD10CM|Underdosing of local astringents and local detergents, initial encounter|Underdosing of local astringents and local detergents, initial encounter +C2883349|T037|AB|T49.2X6D|ICD10CM|Underdosing of local astringents and local detergents, subs|Underdosing of local astringents and local detergents, subs +C2883349|T037|PT|T49.2X6D|ICD10CM|Underdosing of local astringents and local detergents, subsequent encounter|Underdosing of local astringents and local detergents, subsequent encounter +C2883350|T037|PT|T49.2X6S|ICD10CM|Underdosing of local astringents and local detergents, sequela|Underdosing of local astringents and local detergents, sequela +C2883350|T037|AB|T49.2X6S|ICD10CM|Underdosing of local astringents/detergents, sequela|Underdosing of local astringents/detergents, sequela +C2883351|T037|AB|T49.3|ICD10CM|Emollients, demulcents and protectants|Emollients, demulcents and protectants +C0161643|T037|PS|T49.3|ICD10|Emollients, demulcents and protectants|Emollients, demulcents and protectants +C0161643|T037|PX|T49.3|ICD10|Poisoning by emollients, demulcents and protectants|Poisoning by emollients, demulcents and protectants +C2883351|T037|HT|T49.3|ICD10CM|Poisoning by, adverse effect of and underdosing of emollients, demulcents and protectants|Poisoning by, adverse effect of and underdosing of emollients, demulcents and protectants +C2883351|T037|AB|T49.3X|ICD10CM|Emollients, demulcents and protectants|Emollients, demulcents and protectants +C2883351|T037|HT|T49.3X|ICD10CM|Poisoning by, adverse effect of and underdosing of emollients, demulcents and protectants|Poisoning by, adverse effect of and underdosing of emollients, demulcents and protectants +C2883352|T037|AB|T49.3X1|ICD10CM|Poisoning by emollients, demulcents and protect, accidental|Poisoning by emollients, demulcents and protect, accidental +C0161643|T037|ET|T49.3X1|ICD10CM|Poisoning by emollients, demulcents and protectants NOS|Poisoning by emollients, demulcents and protectants NOS +C2883352|T037|HT|T49.3X1|ICD10CM|Poisoning by emollients, demulcents and protectants, accidental (unintentional)|Poisoning by emollients, demulcents and protectants, accidental (unintentional) +C2883353|T037|AB|T49.3X1A|ICD10CM|Poisoning by emollients, demulcents and protect, acc, init|Poisoning by emollients, demulcents and protect, acc, init +C2883353|T037|PT|T49.3X1A|ICD10CM|Poisoning by emollients, demulcents and protectants, accidental (unintentional), initial encounter|Poisoning by emollients, demulcents and protectants, accidental (unintentional), initial encounter +C2883354|T037|AB|T49.3X1D|ICD10CM|Poisoning by emollients, demulcents and protect, acc, subs|Poisoning by emollients, demulcents and protect, acc, subs +C2883355|T037|AB|T49.3X1S|ICD10CM|Poisn by emollients, demulcents and protect, acc, sequela|Poisn by emollients, demulcents and protect, acc, sequela +C2883355|T037|PT|T49.3X1S|ICD10CM|Poisoning by emollients, demulcents and protectants, accidental (unintentional), sequela|Poisoning by emollients, demulcents and protectants, accidental (unintentional), sequela +C2883356|T037|AB|T49.3X2|ICD10CM|Poisoning by emollients, demulcents and protect, self-harm|Poisoning by emollients, demulcents and protect, self-harm +C2883356|T037|HT|T49.3X2|ICD10CM|Poisoning by emollients, demulcents and protectants, intentional self-harm|Poisoning by emollients, demulcents and protectants, intentional self-harm +C2883357|T037|AB|T49.3X2A|ICD10CM|Poisn by emollients, demulcents and protect, self-harm, init|Poisn by emollients, demulcents and protect, self-harm, init +C2883357|T037|PT|T49.3X2A|ICD10CM|Poisoning by emollients, demulcents and protectants, intentional self-harm, initial encounter|Poisoning by emollients, demulcents and protectants, intentional self-harm, initial encounter +C2883358|T037|AB|T49.3X2D|ICD10CM|Poisn by emollients, demulcents and protect, self-harm, subs|Poisn by emollients, demulcents and protect, self-harm, subs +C2883358|T037|PT|T49.3X2D|ICD10CM|Poisoning by emollients, demulcents and protectants, intentional self-harm, subsequent encounter|Poisoning by emollients, demulcents and protectants, intentional self-harm, subsequent encounter +C2883359|T037|AB|T49.3X2S|ICD10CM|Poisn by emollients, demulcents and protect, slf-hrm, sqla|Poisn by emollients, demulcents and protect, slf-hrm, sqla +C2883359|T037|PT|T49.3X2S|ICD10CM|Poisoning by emollients, demulcents and protectants, intentional self-harm, sequela|Poisoning by emollients, demulcents and protectants, intentional self-harm, sequela +C2883360|T037|AB|T49.3X3|ICD10CM|Poisoning by emollients, demulcents and protectants, assault|Poisoning by emollients, demulcents and protectants, assault +C2883360|T037|HT|T49.3X3|ICD10CM|Poisoning by emollients, demulcents and protectants, assault|Poisoning by emollients, demulcents and protectants, assault +C2883361|T037|AB|T49.3X3A|ICD10CM|Poisn by emollients, demulcents and protect, assault, init|Poisn by emollients, demulcents and protect, assault, init +C2883361|T037|PT|T49.3X3A|ICD10CM|Poisoning by emollients, demulcents and protectants, assault, initial encounter|Poisoning by emollients, demulcents and protectants, assault, initial encounter +C2883362|T037|AB|T49.3X3D|ICD10CM|Poisn by emollients, demulcents and protect, assault, subs|Poisn by emollients, demulcents and protect, assault, subs +C2883362|T037|PT|T49.3X3D|ICD10CM|Poisoning by emollients, demulcents and protectants, assault, subsequent encounter|Poisoning by emollients, demulcents and protectants, assault, subsequent encounter +C2883363|T037|AB|T49.3X3S|ICD10CM|Poisn by emollients, demulcents and protect, asslt, sequela|Poisn by emollients, demulcents and protect, asslt, sequela +C2883363|T037|PT|T49.3X3S|ICD10CM|Poisoning by emollients, demulcents and protectants, assault, sequela|Poisoning by emollients, demulcents and protectants, assault, sequela +C2883364|T037|AB|T49.3X4|ICD10CM|Poisoning by emollients, demulcents and protectants, undet|Poisoning by emollients, demulcents and protectants, undet +C2883364|T037|HT|T49.3X4|ICD10CM|Poisoning by emollients, demulcents and protectants, undetermined|Poisoning by emollients, demulcents and protectants, undetermined +C2883365|T037|AB|T49.3X4A|ICD10CM|Poisoning by emollients, demulcents and protect, undet, init|Poisoning by emollients, demulcents and protect, undet, init +C2883365|T037|PT|T49.3X4A|ICD10CM|Poisoning by emollients, demulcents and protectants, undetermined, initial encounter|Poisoning by emollients, demulcents and protectants, undetermined, initial encounter +C2883366|T037|AB|T49.3X4D|ICD10CM|Poisoning by emollients, demulcents and protect, undet, subs|Poisoning by emollients, demulcents and protect, undet, subs +C2883366|T037|PT|T49.3X4D|ICD10CM|Poisoning by emollients, demulcents and protectants, undetermined, subsequent encounter|Poisoning by emollients, demulcents and protectants, undetermined, subsequent encounter +C2883367|T037|AB|T49.3X4S|ICD10CM|Poisn by emollients, demulcents and protect, undet, sequela|Poisn by emollients, demulcents and protect, undet, sequela +C2883367|T037|PT|T49.3X4S|ICD10CM|Poisoning by emollients, demulcents and protectants, undetermined, sequela|Poisoning by emollients, demulcents and protectants, undetermined, sequela +C0414054|T046|AB|T49.3X5|ICD10CM|Adverse effect of emollients, demulcents and protectants|Adverse effect of emollients, demulcents and protectants +C0414054|T046|HT|T49.3X5|ICD10CM|Adverse effect of emollients, demulcents and protectants|Adverse effect of emollients, demulcents and protectants +C2883368|T037|AB|T49.3X5A|ICD10CM|Adverse effect of emollients, demulcents and protect, init|Adverse effect of emollients, demulcents and protect, init +C2883368|T037|PT|T49.3X5A|ICD10CM|Adverse effect of emollients, demulcents and protectants, initial encounter|Adverse effect of emollients, demulcents and protectants, initial encounter +C2883369|T037|AB|T49.3X5D|ICD10CM|Adverse effect of emollients, demulcents and protect, subs|Adverse effect of emollients, demulcents and protect, subs +C2883369|T037|PT|T49.3X5D|ICD10CM|Adverse effect of emollients, demulcents and protectants, subsequent encounter|Adverse effect of emollients, demulcents and protectants, subsequent encounter +C2883370|T037|PT|T49.3X5S|ICD10CM|Adverse effect of emollients, demulcents and protectants, sequela|Adverse effect of emollients, demulcents and protectants, sequela +C2883370|T037|AB|T49.3X5S|ICD10CM|Advrs effect of emollients, demulcents and protect, sequela|Advrs effect of emollients, demulcents and protect, sequela +C2883371|T033|AB|T49.3X6|ICD10CM|Underdosing of emollients, demulcents and protectants|Underdosing of emollients, demulcents and protectants +C2883371|T033|HT|T49.3X6|ICD10CM|Underdosing of emollients, demulcents and protectants|Underdosing of emollients, demulcents and protectants +C2883372|T037|AB|T49.3X6A|ICD10CM|Underdosing of emollients, demulcents and protectants, init|Underdosing of emollients, demulcents and protectants, init +C2883372|T037|PT|T49.3X6A|ICD10CM|Underdosing of emollients, demulcents and protectants, initial encounter|Underdosing of emollients, demulcents and protectants, initial encounter +C2883373|T037|AB|T49.3X6D|ICD10CM|Underdosing of emollients, demulcents and protectants, subs|Underdosing of emollients, demulcents and protectants, subs +C2883373|T037|PT|T49.3X6D|ICD10CM|Underdosing of emollients, demulcents and protectants, subsequent encounter|Underdosing of emollients, demulcents and protectants, subsequent encounter +C2883374|T037|AB|T49.3X6S|ICD10CM|Underdosing of emollients, demulcents and protect, sequela|Underdosing of emollients, demulcents and protect, sequela +C2883374|T037|PT|T49.3X6S|ICD10CM|Underdosing of emollients, demulcents and protectants, sequela|Underdosing of emollients, demulcents and protectants, sequela +C2883375|T037|AB|T49.4|ICD10CM|Keratolyt/keratplst/hair trmt drug|Keratolyt/keratplst/hair trmt drug +C0161644|T037|PS|T49.4|ICD10|Keratolytics, keratoplastics and other hair treatment drugs and preparations|Keratolytics, keratoplastics and other hair treatment drugs and preparations +C0161644|T037|PX|T49.4|ICD10|Poisoning by keratolytics, keratoplastics and other hair treatment drugs and preparations|Poisoning by keratolytics, keratoplastics and other hair treatment drugs and preparations +C2883375|T037|AB|T49.4X|ICD10CM|Keratolyt/keratplst/hair trmt drug|Keratolyt/keratplst/hair trmt drug +C2883376|T037|AB|T49.4X1|ICD10CM|Poisoning by keratolyt/keratplst/hair trmt drug, accidental|Poisoning by keratolyt/keratplst/hair trmt drug, accidental +C0161644|T037|ET|T49.4X1|ICD10CM|Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations NOS|Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations NOS +C2883377|T037|AB|T49.4X1A|ICD10CM|Poisoning by keratolyt/keratplst/hair trmt drug, acc, init|Poisoning by keratolyt/keratplst/hair trmt drug, acc, init +C2883378|T037|AB|T49.4X1D|ICD10CM|Poisoning by keratolyt/keratplst/hair trmt drug, acc, subs|Poisoning by keratolyt/keratplst/hair trmt drug, acc, subs +C2883379|T037|AB|T49.4X1S|ICD10CM|Poisn by keratolyt/keratplst/hair trmt drug, acc, sequela|Poisn by keratolyt/keratplst/hair trmt drug, acc, sequela +C2883380|T037|AB|T49.4X2|ICD10CM|Poisoning by keratolyt/keratplst/hair trmt drug, self-harm|Poisoning by keratolyt/keratplst/hair trmt drug, self-harm +C2883381|T037|AB|T49.4X2A|ICD10CM|Poisn by keratolyt/keratplst/hair trmt drug, self-harm, init|Poisn by keratolyt/keratplst/hair trmt drug, self-harm, init +C2883382|T037|AB|T49.4X2D|ICD10CM|Poisn by keratolyt/keratplst/hair trmt drug, self-harm, subs|Poisn by keratolyt/keratplst/hair trmt drug, self-harm, subs +C2883383|T037|AB|T49.4X2S|ICD10CM|Poisn by keratolyt/keratplst/hair trmt drug, slf-hrm, sqla|Poisn by keratolyt/keratplst/hair trmt drug, slf-hrm, sqla +C2883384|T037|AB|T49.4X3|ICD10CM|Poisoning by keratolyt/keratplst/hair trmt drug, assault|Poisoning by keratolyt/keratplst/hair trmt drug, assault +C2883384|T037|HT|T49.4X3|ICD10CM|Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, assault|Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, assault +C2883385|T037|AB|T49.4X3A|ICD10CM|Poisn by keratolyt/keratplst/hair trmt drug, assault, init|Poisn by keratolyt/keratplst/hair trmt drug, assault, init +C2883386|T037|AB|T49.4X3D|ICD10CM|Poisn by keratolyt/keratplst/hair trmt drug, assault, subs|Poisn by keratolyt/keratplst/hair trmt drug, assault, subs +C2883387|T037|AB|T49.4X3S|ICD10CM|Poisn by keratolyt/keratplst/hair trmt drug, asslt, sequela|Poisn by keratolyt/keratplst/hair trmt drug, asslt, sequela +C2883388|T037|AB|T49.4X4|ICD10CM|Poisoning by keratolyt/keratplst/hair trmt drug, undet|Poisoning by keratolyt/keratplst/hair trmt drug, undet +C2883389|T037|AB|T49.4X4A|ICD10CM|Poisoning by keratolyt/keratplst/hair trmt drug, undet, init|Poisoning by keratolyt/keratplst/hair trmt drug, undet, init +C2883390|T037|AB|T49.4X4D|ICD10CM|Poisoning by keratolyt/keratplst/hair trmt drug, undet, subs|Poisoning by keratolyt/keratplst/hair trmt drug, undet, subs +C2883391|T037|AB|T49.4X4S|ICD10CM|Poisn by keratolyt/keratplst/hair trmt drug, undet, sequela|Poisn by keratolyt/keratplst/hair trmt drug, undet, sequela +C2883392|T037|AB|T49.4X5|ICD10CM|Adverse effect of keratolyt/keratplst/hair trmt drug|Adverse effect of keratolyt/keratplst/hair trmt drug +C2883392|T037|HT|T49.4X5|ICD10CM|Adverse effect of keratolytics, keratoplastics, and other hair treatment drugs and preparations|Adverse effect of keratolytics, keratoplastics, and other hair treatment drugs and preparations +C2883393|T037|AB|T49.4X5A|ICD10CM|Adverse effect of keratolyt/keratplst/hair trmt drug, init|Adverse effect of keratolyt/keratplst/hair trmt drug, init +C2883394|T037|AB|T49.4X5D|ICD10CM|Adverse effect of keratolyt/keratplst/hair trmt drug, subs|Adverse effect of keratolyt/keratplst/hair trmt drug, subs +C2883395|T037|AB|T49.4X5S|ICD10CM|Advrs effect of keratolyt/keratplst/hair trmt drug, sequela|Advrs effect of keratolyt/keratplst/hair trmt drug, sequela +C2883396|T037|AB|T49.4X6|ICD10CM|Underdosing of keratolyt/keratplst/hair trmt drug|Underdosing of keratolyt/keratplst/hair trmt drug +C2883396|T037|HT|T49.4X6|ICD10CM|Underdosing of keratolytics, keratoplastics, and other hair treatment drugs and preparations|Underdosing of keratolytics, keratoplastics, and other hair treatment drugs and preparations +C2883397|T037|AB|T49.4X6A|ICD10CM|Underdosing of keratolyt/keratplst/hair trmt drug, init|Underdosing of keratolyt/keratplst/hair trmt drug, init +C2883398|T037|AB|T49.4X6D|ICD10CM|Underdosing of keratolyt/keratplst/hair trmt drug, subs|Underdosing of keratolyt/keratplst/hair trmt drug, subs +C2883399|T037|AB|T49.4X6S|ICD10CM|Underdosing of keratolyt/keratplst/hair trmt drug, sequela|Underdosing of keratolyt/keratplst/hair trmt drug, sequela +C2883400|T037|AB|T49.5|ICD10CM|Ophthalmological drugs and preparations|Ophthalmological drugs and preparations +C0497000|T037|PS|T49.5|ICD10|Ophthalmological drugs and preparations|Ophthalmological drugs and preparations +C0497000|T037|PX|T49.5|ICD10|Poisoning by ophthalmological drugs and preparations|Poisoning by ophthalmological drugs and preparations +C2883400|T037|HT|T49.5|ICD10CM|Poisoning by, adverse effect of and underdosing of ophthalmological drugs and preparations|Poisoning by, adverse effect of and underdosing of ophthalmological drugs and preparations +C2883400|T037|AB|T49.5X|ICD10CM|Ophthalmological drugs and preparations|Ophthalmological drugs and preparations +C2883400|T037|HT|T49.5X|ICD10CM|Poisoning by, adverse effect of and underdosing of ophthalmological drugs and preparations|Poisoning by, adverse effect of and underdosing of ophthalmological drugs and preparations +C0497000|T037|ET|T49.5X1|ICD10CM|Poisoning by ophthalmological drugs and preparations NOS|Poisoning by ophthalmological drugs and preparations NOS +C2883401|T037|HT|T49.5X1|ICD10CM|Poisoning by ophthalmological drugs and preparations, accidental (unintentional)|Poisoning by ophthalmological drugs and preparations, accidental (unintentional) +C2883401|T037|AB|T49.5X1|ICD10CM|Poisoning by opth drugs and preparations, accidental|Poisoning by opth drugs and preparations, accidental +C2883402|T037|PT|T49.5X1A|ICD10CM|Poisoning by ophthalmological drugs and preparations, accidental (unintentional), initial encounter|Poisoning by ophthalmological drugs and preparations, accidental (unintentional), initial encounter +C2883402|T037|AB|T49.5X1A|ICD10CM|Poisoning by opth drugs and preparations, accidental, init|Poisoning by opth drugs and preparations, accidental, init +C2883403|T037|AB|T49.5X1D|ICD10CM|Poisoning by opth drugs and preparations, accidental, subs|Poisoning by opth drugs and preparations, accidental, subs +C2883404|T037|PT|T49.5X1S|ICD10CM|Poisoning by ophthalmological drugs and preparations, accidental (unintentional), sequela|Poisoning by ophthalmological drugs and preparations, accidental (unintentional), sequela +C2883404|T037|AB|T49.5X1S|ICD10CM|Poisoning by opth drugs and prep, accidental, sequela|Poisoning by opth drugs and prep, accidental, sequela +C2883405|T037|HT|T49.5X2|ICD10CM|Poisoning by ophthalmological drugs and preparations, intentional self-harm|Poisoning by ophthalmological drugs and preparations, intentional self-harm +C2883405|T037|AB|T49.5X2|ICD10CM|Poisoning by opth drugs and preparations, self-harm|Poisoning by opth drugs and preparations, self-harm +C2883406|T037|PT|T49.5X2A|ICD10CM|Poisoning by ophthalmological drugs and preparations, intentional self-harm, initial encounter|Poisoning by ophthalmological drugs and preparations, intentional self-harm, initial encounter +C2883406|T037|AB|T49.5X2A|ICD10CM|Poisoning by opth drugs and preparations, self-harm, init|Poisoning by opth drugs and preparations, self-harm, init +C2883407|T037|PT|T49.5X2D|ICD10CM|Poisoning by ophthalmological drugs and preparations, intentional self-harm, subsequent encounter|Poisoning by ophthalmological drugs and preparations, intentional self-harm, subsequent encounter +C2883407|T037|AB|T49.5X2D|ICD10CM|Poisoning by opth drugs and preparations, self-harm, subs|Poisoning by opth drugs and preparations, self-harm, subs +C2883408|T037|PT|T49.5X2S|ICD10CM|Poisoning by ophthalmological drugs and preparations, intentional self-harm, sequela|Poisoning by ophthalmological drugs and preparations, intentional self-harm, sequela +C2883408|T037|AB|T49.5X2S|ICD10CM|Poisoning by opth drugs and preparations, self-harm, sequela|Poisoning by opth drugs and preparations, self-harm, sequela +C2883409|T037|HT|T49.5X3|ICD10CM|Poisoning by ophthalmological drugs and preparations, assault|Poisoning by ophthalmological drugs and preparations, assault +C2883409|T037|AB|T49.5X3|ICD10CM|Poisoning by opth drugs and preparations, assault|Poisoning by opth drugs and preparations, assault +C2883410|T037|PT|T49.5X3A|ICD10CM|Poisoning by ophthalmological drugs and preparations, assault, initial encounter|Poisoning by ophthalmological drugs and preparations, assault, initial encounter +C2883410|T037|AB|T49.5X3A|ICD10CM|Poisoning by opth drugs and preparations, assault, init|Poisoning by opth drugs and preparations, assault, init +C2883411|T037|PT|T49.5X3D|ICD10CM|Poisoning by ophthalmological drugs and preparations, assault, subsequent encounter|Poisoning by ophthalmological drugs and preparations, assault, subsequent encounter +C2883411|T037|AB|T49.5X3D|ICD10CM|Poisoning by opth drugs and preparations, assault, subs|Poisoning by opth drugs and preparations, assault, subs +C2883412|T037|PT|T49.5X3S|ICD10CM|Poisoning by ophthalmological drugs and preparations, assault, sequela|Poisoning by ophthalmological drugs and preparations, assault, sequela +C2883412|T037|AB|T49.5X3S|ICD10CM|Poisoning by opth drugs and preparations, assault, sequela|Poisoning by opth drugs and preparations, assault, sequela +C2883413|T037|HT|T49.5X4|ICD10CM|Poisoning by ophthalmological drugs and preparations, undetermined|Poisoning by ophthalmological drugs and preparations, undetermined +C2883413|T037|AB|T49.5X4|ICD10CM|Poisoning by opth drugs and preparations, undetermined|Poisoning by opth drugs and preparations, undetermined +C2883414|T037|PT|T49.5X4A|ICD10CM|Poisoning by ophthalmological drugs and preparations, undetermined, initial encounter|Poisoning by ophthalmological drugs and preparations, undetermined, initial encounter +C2883414|T037|AB|T49.5X4A|ICD10CM|Poisoning by opth drugs and preparations, undetermined, init|Poisoning by opth drugs and preparations, undetermined, init +C2883415|T037|PT|T49.5X4D|ICD10CM|Poisoning by ophthalmological drugs and preparations, undetermined, subsequent encounter|Poisoning by ophthalmological drugs and preparations, undetermined, subsequent encounter +C2883415|T037|AB|T49.5X4D|ICD10CM|Poisoning by opth drugs and preparations, undetermined, subs|Poisoning by opth drugs and preparations, undetermined, subs +C2883416|T037|PT|T49.5X4S|ICD10CM|Poisoning by ophthalmological drugs and preparations, undetermined, sequela|Poisoning by ophthalmological drugs and preparations, undetermined, sequela +C2883416|T037|AB|T49.5X4S|ICD10CM|Poisoning by opth drugs and prep, undetermined, sequela|Poisoning by opth drugs and prep, undetermined, sequela +C2883417|T037|AB|T49.5X5|ICD10CM|Adverse effect of ophthalmological drugs and preparations|Adverse effect of ophthalmological drugs and preparations +C2883417|T037|HT|T49.5X5|ICD10CM|Adverse effect of ophthalmological drugs and preparations|Adverse effect of ophthalmological drugs and preparations +C2883418|T037|PT|T49.5X5A|ICD10CM|Adverse effect of ophthalmological drugs and preparations, initial encounter|Adverse effect of ophthalmological drugs and preparations, initial encounter +C2883418|T037|AB|T49.5X5A|ICD10CM|Adverse effect of opth drugs and preparations, init|Adverse effect of opth drugs and preparations, init +C2883419|T037|PT|T49.5X5D|ICD10CM|Adverse effect of ophthalmological drugs and preparations, subsequent encounter|Adverse effect of ophthalmological drugs and preparations, subsequent encounter +C2883419|T037|AB|T49.5X5D|ICD10CM|Adverse effect of opth drugs and preparations, subs|Adverse effect of opth drugs and preparations, subs +C2883420|T037|PT|T49.5X5S|ICD10CM|Adverse effect of ophthalmological drugs and preparations, sequela|Adverse effect of ophthalmological drugs and preparations, sequela +C2883420|T037|AB|T49.5X5S|ICD10CM|Adverse effect of opth drugs and preparations, sequela|Adverse effect of opth drugs and preparations, sequela +C2883421|T037|AB|T49.5X6|ICD10CM|Underdosing of ophthalmological drugs and preparations|Underdosing of ophthalmological drugs and preparations +C2883421|T037|HT|T49.5X6|ICD10CM|Underdosing of ophthalmological drugs and preparations|Underdosing of ophthalmological drugs and preparations +C2883422|T037|AB|T49.5X6A|ICD10CM|Underdosing of ophthalmological drugs and preparations, init|Underdosing of ophthalmological drugs and preparations, init +C2883422|T037|PT|T49.5X6A|ICD10CM|Underdosing of ophthalmological drugs and preparations, initial encounter|Underdosing of ophthalmological drugs and preparations, initial encounter +C2883423|T037|AB|T49.5X6D|ICD10CM|Underdosing of ophthalmological drugs and preparations, subs|Underdosing of ophthalmological drugs and preparations, subs +C2883423|T037|PT|T49.5X6D|ICD10CM|Underdosing of ophthalmological drugs and preparations, subsequent encounter|Underdosing of ophthalmological drugs and preparations, subsequent encounter +C2883424|T037|PT|T49.5X6S|ICD10CM|Underdosing of ophthalmological drugs and preparations, sequela|Underdosing of ophthalmological drugs and preparations, sequela +C2883424|T037|AB|T49.5X6S|ICD10CM|Underdosing of opth drugs and preparations, sequela|Underdosing of opth drugs and preparations, sequela +C2883425|T037|AB|T49.6|ICD10CM|Otorhinolaryngological drugs and preparations|Otorhinolaryngological drugs and preparations +C0497001|T037|PS|T49.6|ICD10|Otorhinolaryngological drugs and preparations|Otorhinolaryngological drugs and preparations +C0497001|T037|PX|T49.6|ICD10|Poisoning by otorhinolaryngological drugs and preparations|Poisoning by otorhinolaryngological drugs and preparations +C2883425|T037|HT|T49.6|ICD10CM|Poisoning by, adverse effect of and underdosing of otorhinolaryngological drugs and preparations|Poisoning by, adverse effect of and underdosing of otorhinolaryngological drugs and preparations +C2883425|T037|AB|T49.6X|ICD10CM|Otorhinolaryngological drugs and preparations|Otorhinolaryngological drugs and preparations +C2883425|T037|HT|T49.6X|ICD10CM|Poisoning by, adverse effect of and underdosing of otorhinolaryngological drugs and preparations|Poisoning by, adverse effect of and underdosing of otorhinolaryngological drugs and preparations +C2883426|T037|AB|T49.6X1|ICD10CM|Poisoning by otorhino drugs and preparations, accidental|Poisoning by otorhino drugs and preparations, accidental +C0497001|T037|ET|T49.6X1|ICD10CM|Poisoning by otorhinolaryngological drugs and preparations NOS|Poisoning by otorhinolaryngological drugs and preparations NOS +C2883426|T037|HT|T49.6X1|ICD10CM|Poisoning by otorhinolaryngological drugs and preparations, accidental (unintentional)|Poisoning by otorhinolaryngological drugs and preparations, accidental (unintentional) +C2883427|T037|AB|T49.6X1A|ICD10CM|Poisoning by otorhino drugs and prep, accidental, init|Poisoning by otorhino drugs and prep, accidental, init +C2883428|T037|AB|T49.6X1D|ICD10CM|Poisoning by otorhino drugs and prep, accidental, subs|Poisoning by otorhino drugs and prep, accidental, subs +C2883429|T037|AB|T49.6X1S|ICD10CM|Poisoning by otorhino drugs and prep, accidental, sequela|Poisoning by otorhino drugs and prep, accidental, sequela +C2883429|T037|PT|T49.6X1S|ICD10CM|Poisoning by otorhinolaryngological drugs and preparations, accidental (unintentional), sequela|Poisoning by otorhinolaryngological drugs and preparations, accidental (unintentional), sequela +C2883430|T037|AB|T49.6X2|ICD10CM|Poisoning by otorhino drugs and preparations, self-harm|Poisoning by otorhino drugs and preparations, self-harm +C2883430|T037|HT|T49.6X2|ICD10CM|Poisoning by otorhinolaryngological drugs and preparations, intentional self-harm|Poisoning by otorhinolaryngological drugs and preparations, intentional self-harm +C2883431|T037|AB|T49.6X2A|ICD10CM|Poisoning by otorhino drugs and prep, self-harm, init|Poisoning by otorhino drugs and prep, self-harm, init +C2883431|T037|PT|T49.6X2A|ICD10CM|Poisoning by otorhinolaryngological drugs and preparations, intentional self-harm, initial encounter|Poisoning by otorhinolaryngological drugs and preparations, intentional self-harm, initial encounter +C2883432|T037|AB|T49.6X2D|ICD10CM|Poisoning by otorhino drugs and prep, self-harm, subs|Poisoning by otorhino drugs and prep, self-harm, subs +C2883433|T037|AB|T49.6X2S|ICD10CM|Poisoning by otorhino drugs and prep, self-harm, sequela|Poisoning by otorhino drugs and prep, self-harm, sequela +C2883433|T037|PT|T49.6X2S|ICD10CM|Poisoning by otorhinolaryngological drugs and preparations, intentional self-harm, sequela|Poisoning by otorhinolaryngological drugs and preparations, intentional self-harm, sequela +C2883434|T037|AB|T49.6X3|ICD10CM|Poisoning by otorhino drugs and preparations, assault|Poisoning by otorhino drugs and preparations, assault +C2883434|T037|HT|T49.6X3|ICD10CM|Poisoning by otorhinolaryngological drugs and preparations, assault|Poisoning by otorhinolaryngological drugs and preparations, assault +C2883435|T037|AB|T49.6X3A|ICD10CM|Poisoning by otorhino drugs and preparations, assault, init|Poisoning by otorhino drugs and preparations, assault, init +C2883435|T037|PT|T49.6X3A|ICD10CM|Poisoning by otorhinolaryngological drugs and preparations, assault, initial encounter|Poisoning by otorhinolaryngological drugs and preparations, assault, initial encounter +C2883436|T037|AB|T49.6X3D|ICD10CM|Poisoning by otorhino drugs and preparations, assault, subs|Poisoning by otorhino drugs and preparations, assault, subs +C2883436|T037|PT|T49.6X3D|ICD10CM|Poisoning by otorhinolaryngological drugs and preparations, assault, subsequent encounter|Poisoning by otorhinolaryngological drugs and preparations, assault, subsequent encounter +C2883437|T037|AB|T49.6X3S|ICD10CM|Poisoning by otorhino drugs and prep, assault, sequela|Poisoning by otorhino drugs and prep, assault, sequela +C2883437|T037|PT|T49.6X3S|ICD10CM|Poisoning by otorhinolaryngological drugs and preparations, assault, sequela|Poisoning by otorhinolaryngological drugs and preparations, assault, sequela +C2883438|T037|AB|T49.6X4|ICD10CM|Poisoning by otorhino drugs and preparations, undetermined|Poisoning by otorhino drugs and preparations, undetermined +C2883438|T037|HT|T49.6X4|ICD10CM|Poisoning by otorhinolaryngological drugs and preparations, undetermined|Poisoning by otorhinolaryngological drugs and preparations, undetermined +C2883439|T037|AB|T49.6X4A|ICD10CM|Poisoning by otorhino drugs and prep, undetermined, init|Poisoning by otorhino drugs and prep, undetermined, init +C2883439|T037|PT|T49.6X4A|ICD10CM|Poisoning by otorhinolaryngological drugs and preparations, undetermined, initial encounter|Poisoning by otorhinolaryngological drugs and preparations, undetermined, initial encounter +C2883440|T037|AB|T49.6X4D|ICD10CM|Poisoning by otorhino drugs and prep, undetermined, subs|Poisoning by otorhino drugs and prep, undetermined, subs +C2883440|T037|PT|T49.6X4D|ICD10CM|Poisoning by otorhinolaryngological drugs and preparations, undetermined, subsequent encounter|Poisoning by otorhinolaryngological drugs and preparations, undetermined, subsequent encounter +C2883441|T037|AB|T49.6X4S|ICD10CM|Poisoning by otorhino drugs and prep, undetermined, sequela|Poisoning by otorhino drugs and prep, undetermined, sequela +C2883441|T037|PT|T49.6X4S|ICD10CM|Poisoning by otorhinolaryngological drugs and preparations, undetermined, sequela|Poisoning by otorhinolaryngological drugs and preparations, undetermined, sequela +C2883442|T046|AB|T49.6X5|ICD10CM|Adverse effect of otorhino drugs and preparations|Adverse effect of otorhino drugs and preparations +C2883442|T046|HT|T49.6X5|ICD10CM|Adverse effect of otorhinolaryngological drugs and preparations|Adverse effect of otorhinolaryngological drugs and preparations +C2883443|T037|AB|T49.6X5A|ICD10CM|Adverse effect of otorhino drugs and preparations, init|Adverse effect of otorhino drugs and preparations, init +C2883443|T037|PT|T49.6X5A|ICD10CM|Adverse effect of otorhinolaryngological drugs and preparations, initial encounter|Adverse effect of otorhinolaryngological drugs and preparations, initial encounter +C2883444|T037|AB|T49.6X5D|ICD10CM|Adverse effect of otorhino drugs and preparations, subs|Adverse effect of otorhino drugs and preparations, subs +C2883444|T037|PT|T49.6X5D|ICD10CM|Adverse effect of otorhinolaryngological drugs and preparations, subsequent encounter|Adverse effect of otorhinolaryngological drugs and preparations, subsequent encounter +C2883445|T037|AB|T49.6X5S|ICD10CM|Adverse effect of otorhino drugs and preparations, sequela|Adverse effect of otorhino drugs and preparations, sequela +C2883445|T037|PT|T49.6X5S|ICD10CM|Adverse effect of otorhinolaryngological drugs and preparations, sequela|Adverse effect of otorhinolaryngological drugs and preparations, sequela +C2883446|T037|AB|T49.6X6|ICD10CM|Underdosing of otorhinolaryngological drugs and preparations|Underdosing of otorhinolaryngological drugs and preparations +C2883446|T037|HT|T49.6X6|ICD10CM|Underdosing of otorhinolaryngological drugs and preparations|Underdosing of otorhinolaryngological drugs and preparations +C2883447|T037|AB|T49.6X6A|ICD10CM|Underdosing of otorhino drugs and preparations, init|Underdosing of otorhino drugs and preparations, init +C2883447|T037|PT|T49.6X6A|ICD10CM|Underdosing of otorhinolaryngological drugs and preparations, initial encounter|Underdosing of otorhinolaryngological drugs and preparations, initial encounter +C2883448|T037|AB|T49.6X6D|ICD10CM|Underdosing of otorhino drugs and preparations, subs|Underdosing of otorhino drugs and preparations, subs +C2883448|T037|PT|T49.6X6D|ICD10CM|Underdosing of otorhinolaryngological drugs and preparations, subsequent encounter|Underdosing of otorhinolaryngological drugs and preparations, subsequent encounter +C2883449|T037|AB|T49.6X6S|ICD10CM|Underdosing of otorhino drugs and preparations, sequela|Underdosing of otorhino drugs and preparations, sequela +C2883449|T037|PT|T49.6X6S|ICD10CM|Underdosing of otorhinolaryngological drugs and preparations, sequela|Underdosing of otorhinolaryngological drugs and preparations, sequela +C2883450|T037|AB|T49.7|ICD10CM|Dental drugs, topically applied|Dental drugs, topically applied +C0161647|T037|PS|T49.7|ICD10|Dental drugs, topically applied|Dental drugs, topically applied +C0161647|T037|PX|T49.7|ICD10|Poisoning by dental drugs, topically applied|Poisoning by dental drugs, topically applied +C2883450|T037|HT|T49.7|ICD10CM|Poisoning by, adverse effect of and underdosing of dental drugs, topically applied|Poisoning by, adverse effect of and underdosing of dental drugs, topically applied +C2883450|T037|AB|T49.7X|ICD10CM|Dental drugs, topically applied|Dental drugs, topically applied +C2883450|T037|HT|T49.7X|ICD10CM|Poisoning by, adverse effect of and underdosing of dental drugs, topically applied|Poisoning by, adverse effect of and underdosing of dental drugs, topically applied +C0161647|T037|ET|T49.7X1|ICD10CM|Poisoning by dental drugs, topically applied NOS|Poisoning by dental drugs, topically applied NOS +C2883451|T037|AB|T49.7X1|ICD10CM|Poisoning by dental drugs, topically applied, accidental|Poisoning by dental drugs, topically applied, accidental +C2883451|T037|HT|T49.7X1|ICD10CM|Poisoning by dental drugs, topically applied, accidental (unintentional)|Poisoning by dental drugs, topically applied, accidental (unintentional) +C2883452|T037|AB|T49.7X1A|ICD10CM|Poisoning by dental drugs, topically applied, acc, init|Poisoning by dental drugs, topically applied, acc, init +C2883452|T037|PT|T49.7X1A|ICD10CM|Poisoning by dental drugs, topically applied, accidental (unintentional), initial encounter|Poisoning by dental drugs, topically applied, accidental (unintentional), initial encounter +C2883453|T037|AB|T49.7X1D|ICD10CM|Poisoning by dental drugs, topically applied, acc, subs|Poisoning by dental drugs, topically applied, acc, subs +C2883453|T037|PT|T49.7X1D|ICD10CM|Poisoning by dental drugs, topically applied, accidental (unintentional), subsequent encounter|Poisoning by dental drugs, topically applied, accidental (unintentional), subsequent encounter +C2883454|T037|AB|T49.7X1S|ICD10CM|Poisoning by dental drugs, topically applied, acc, sequela|Poisoning by dental drugs, topically applied, acc, sequela +C2883454|T037|PT|T49.7X1S|ICD10CM|Poisoning by dental drugs, topically applied, accidental (unintentional), sequela|Poisoning by dental drugs, topically applied, accidental (unintentional), sequela +C2883455|T037|HT|T49.7X2|ICD10CM|Poisoning by dental drugs, topically applied, intentional self-harm|Poisoning by dental drugs, topically applied, intentional self-harm +C2883455|T037|AB|T49.7X2|ICD10CM|Poisoning by dental drugs, topically applied, self-harm|Poisoning by dental drugs, topically applied, self-harm +C2883456|T037|AB|T49.7X2A|ICD10CM|Poisn by dental drugs, topically applied, self-harm, init|Poisn by dental drugs, topically applied, self-harm, init +C2883456|T037|PT|T49.7X2A|ICD10CM|Poisoning by dental drugs, topically applied, intentional self-harm, initial encounter|Poisoning by dental drugs, topically applied, intentional self-harm, initial encounter +C2883457|T037|AB|T49.7X2D|ICD10CM|Poisn by dental drugs, topically applied, self-harm, subs|Poisn by dental drugs, topically applied, self-harm, subs +C2883457|T037|PT|T49.7X2D|ICD10CM|Poisoning by dental drugs, topically applied, intentional self-harm, subsequent encounter|Poisoning by dental drugs, topically applied, intentional self-harm, subsequent encounter +C2883458|T037|AB|T49.7X2S|ICD10CM|Poisn by dental drugs, topically applied, self-harm, sequela|Poisn by dental drugs, topically applied, self-harm, sequela +C2883458|T037|PT|T49.7X2S|ICD10CM|Poisoning by dental drugs, topically applied, intentional self-harm, sequela|Poisoning by dental drugs, topically applied, intentional self-harm, sequela +C2883459|T037|AB|T49.7X3|ICD10CM|Poisoning by dental drugs, topically applied, assault|Poisoning by dental drugs, topically applied, assault +C2883459|T037|HT|T49.7X3|ICD10CM|Poisoning by dental drugs, topically applied, assault|Poisoning by dental drugs, topically applied, assault +C2883460|T037|AB|T49.7X3A|ICD10CM|Poisoning by dental drugs, topically applied, assault, init|Poisoning by dental drugs, topically applied, assault, init +C2883460|T037|PT|T49.7X3A|ICD10CM|Poisoning by dental drugs, topically applied, assault, initial encounter|Poisoning by dental drugs, topically applied, assault, initial encounter +C2883461|T037|AB|T49.7X3D|ICD10CM|Poisoning by dental drugs, topically applied, assault, subs|Poisoning by dental drugs, topically applied, assault, subs +C2883461|T037|PT|T49.7X3D|ICD10CM|Poisoning by dental drugs, topically applied, assault, subsequent encounter|Poisoning by dental drugs, topically applied, assault, subsequent encounter +C2883462|T037|AB|T49.7X3S|ICD10CM|Poisn by dental drugs, topically applied, assault, sequela|Poisn by dental drugs, topically applied, assault, sequela +C2883462|T037|PT|T49.7X3S|ICD10CM|Poisoning by dental drugs, topically applied, assault, sequela|Poisoning by dental drugs, topically applied, assault, sequela +C2883463|T037|AB|T49.7X4|ICD10CM|Poisoning by dental drugs, topically applied, undetermined|Poisoning by dental drugs, topically applied, undetermined +C2883463|T037|HT|T49.7X4|ICD10CM|Poisoning by dental drugs, topically applied, undetermined|Poisoning by dental drugs, topically applied, undetermined +C2883464|T037|AB|T49.7X4A|ICD10CM|Poisoning by dental drugs, topically applied, undet, init|Poisoning by dental drugs, topically applied, undet, init +C2883464|T037|PT|T49.7X4A|ICD10CM|Poisoning by dental drugs, topically applied, undetermined, initial encounter|Poisoning by dental drugs, topically applied, undetermined, initial encounter +C2883465|T037|AB|T49.7X4D|ICD10CM|Poisoning by dental drugs, topically applied, undet, subs|Poisoning by dental drugs, topically applied, undet, subs +C2883465|T037|PT|T49.7X4D|ICD10CM|Poisoning by dental drugs, topically applied, undetermined, subsequent encounter|Poisoning by dental drugs, topically applied, undetermined, subsequent encounter +C2883466|T037|AB|T49.7X4S|ICD10CM|Poisoning by dental drugs, topically applied, undet, sequela|Poisoning by dental drugs, topically applied, undet, sequela +C2883466|T037|PT|T49.7X4S|ICD10CM|Poisoning by dental drugs, topically applied, undetermined, sequela|Poisoning by dental drugs, topically applied, undetermined, sequela +C2883467|T037|AB|T49.7X5|ICD10CM|Adverse effect of dental drugs, topically applied|Adverse effect of dental drugs, topically applied +C2883467|T037|HT|T49.7X5|ICD10CM|Adverse effect of dental drugs, topically applied|Adverse effect of dental drugs, topically applied +C2883468|T037|AB|T49.7X5A|ICD10CM|Adverse effect of dental drugs, topically applied, init|Adverse effect of dental drugs, topically applied, init +C2883468|T037|PT|T49.7X5A|ICD10CM|Adverse effect of dental drugs, topically applied, initial encounter|Adverse effect of dental drugs, topically applied, initial encounter +C2883469|T037|AB|T49.7X5D|ICD10CM|Adverse effect of dental drugs, topically applied, subs|Adverse effect of dental drugs, topically applied, subs +C2883469|T037|PT|T49.7X5D|ICD10CM|Adverse effect of dental drugs, topically applied, subsequent encounter|Adverse effect of dental drugs, topically applied, subsequent encounter +C2883470|T037|AB|T49.7X5S|ICD10CM|Adverse effect of dental drugs, topically applied, sequela|Adverse effect of dental drugs, topically applied, sequela +C2883470|T037|PT|T49.7X5S|ICD10CM|Adverse effect of dental drugs, topically applied, sequela|Adverse effect of dental drugs, topically applied, sequela +C2883471|T037|AB|T49.7X6|ICD10CM|Underdosing of dental drugs, topically applied|Underdosing of dental drugs, topically applied +C2883471|T037|HT|T49.7X6|ICD10CM|Underdosing of dental drugs, topically applied|Underdosing of dental drugs, topically applied +C2883472|T037|AB|T49.7X6A|ICD10CM|Underdosing of dental drugs, topically applied, init encntr|Underdosing of dental drugs, topically applied, init encntr +C2883472|T037|PT|T49.7X6A|ICD10CM|Underdosing of dental drugs, topically applied, initial encounter|Underdosing of dental drugs, topically applied, initial encounter +C2883473|T037|AB|T49.7X6D|ICD10CM|Underdosing of dental drugs, topically applied, subs encntr|Underdosing of dental drugs, topically applied, subs encntr +C2883473|T037|PT|T49.7X6D|ICD10CM|Underdosing of dental drugs, topically applied, subsequent encounter|Underdosing of dental drugs, topically applied, subsequent encounter +C2883474|T037|AB|T49.7X6S|ICD10CM|Underdosing of dental drugs, topically applied, sequela|Underdosing of dental drugs, topically applied, sequela +C2883474|T037|PT|T49.7X6S|ICD10CM|Underdosing of dental drugs, topically applied, sequela|Underdosing of dental drugs, topically applied, sequela +C0478455|T037|PS|T49.8|ICD10|Other topical agents|Other topical agents +C0478455|T037|PX|T49.8|ICD10|Poisoning by other topical agents|Poisoning by other topical agents +C2883476|T037|HT|T49.8|ICD10CM|Poisoning by, adverse effect of and underdosing of other topical agents|Poisoning by, adverse effect of and underdosing of other topical agents +C2883475|T037|ET|T49.8|ICD10CM|Poisoning by, adverse effect of and underdosing of spermicides|Poisoning by, adverse effect of and underdosing of spermicides +C2883476|T037|AB|T49.8|ICD10CM|Topical agents|Topical agents +C2883476|T037|HT|T49.8X|ICD10CM|Poisoning by, adverse effect of and underdosing of other topical agents|Poisoning by, adverse effect of and underdosing of other topical agents +C2883476|T037|AB|T49.8X|ICD10CM|Topical agents|Topical agents +C2883477|T037|AB|T49.8X1|ICD10CM|Poisoning by oth topical agents, accidental (unintentional)|Poisoning by oth topical agents, accidental (unintentional) +C0478455|T037|ET|T49.8X1|ICD10CM|Poisoning by other topical agents NOS|Poisoning by other topical agents NOS +C2883477|T037|HT|T49.8X1|ICD10CM|Poisoning by other topical agents, accidental (unintentional)|Poisoning by other topical agents, accidental (unintentional) +C2883478|T037|AB|T49.8X1A|ICD10CM|Poisoning by oth topical agents, accidental, init|Poisoning by oth topical agents, accidental, init +C2883478|T037|PT|T49.8X1A|ICD10CM|Poisoning by other topical agents, accidental (unintentional), initial encounter|Poisoning by other topical agents, accidental (unintentional), initial encounter +C2883479|T037|AB|T49.8X1D|ICD10CM|Poisoning by oth topical agents, accidental, subs|Poisoning by oth topical agents, accidental, subs +C2883479|T037|PT|T49.8X1D|ICD10CM|Poisoning by other topical agents, accidental (unintentional), subsequent encounter|Poisoning by other topical agents, accidental (unintentional), subsequent encounter +C2883480|T037|AB|T49.8X1S|ICD10CM|Poisoning by oth topical agents, accidental, sequela|Poisoning by oth topical agents, accidental, sequela +C2883480|T037|PT|T49.8X1S|ICD10CM|Poisoning by other topical agents, accidental (unintentional), sequela|Poisoning by other topical agents, accidental (unintentional), sequela +C2883481|T037|AB|T49.8X2|ICD10CM|Poisoning by other topical agents, intentional self-harm|Poisoning by other topical agents, intentional self-harm +C2883481|T037|HT|T49.8X2|ICD10CM|Poisoning by other topical agents, intentional self-harm|Poisoning by other topical agents, intentional self-harm +C2883482|T037|AB|T49.8X2A|ICD10CM|Poisoning by oth topical agents, intentional self-harm, init|Poisoning by oth topical agents, intentional self-harm, init +C2883482|T037|PT|T49.8X2A|ICD10CM|Poisoning by other topical agents, intentional self-harm, initial encounter|Poisoning by other topical agents, intentional self-harm, initial encounter +C2883483|T037|AB|T49.8X2D|ICD10CM|Poisoning by oth topical agents, intentional self-harm, subs|Poisoning by oth topical agents, intentional self-harm, subs +C2883483|T037|PT|T49.8X2D|ICD10CM|Poisoning by other topical agents, intentional self-harm, subsequent encounter|Poisoning by other topical agents, intentional self-harm, subsequent encounter +C2883484|T037|AB|T49.8X2S|ICD10CM|Poisoning by oth topical agents, self-harm, sequela|Poisoning by oth topical agents, self-harm, sequela +C2883484|T037|PT|T49.8X2S|ICD10CM|Poisoning by other topical agents, intentional self-harm, sequela|Poisoning by other topical agents, intentional self-harm, sequela +C2883485|T037|AB|T49.8X3|ICD10CM|Poisoning by other topical agents, assault|Poisoning by other topical agents, assault +C2883485|T037|HT|T49.8X3|ICD10CM|Poisoning by other topical agents, assault|Poisoning by other topical agents, assault +C2883486|T037|AB|T49.8X3A|ICD10CM|Poisoning by other topical agents, assault, init encntr|Poisoning by other topical agents, assault, init encntr +C2883486|T037|PT|T49.8X3A|ICD10CM|Poisoning by other topical agents, assault, initial encounter|Poisoning by other topical agents, assault, initial encounter +C2883487|T037|AB|T49.8X3D|ICD10CM|Poisoning by other topical agents, assault, subs encntr|Poisoning by other topical agents, assault, subs encntr +C2883487|T037|PT|T49.8X3D|ICD10CM|Poisoning by other topical agents, assault, subsequent encounter|Poisoning by other topical agents, assault, subsequent encounter +C2883488|T037|AB|T49.8X3S|ICD10CM|Poisoning by other topical agents, assault, sequela|Poisoning by other topical agents, assault, sequela +C2883488|T037|PT|T49.8X3S|ICD10CM|Poisoning by other topical agents, assault, sequela|Poisoning by other topical agents, assault, sequela +C2883489|T037|AB|T49.8X4|ICD10CM|Poisoning by other topical agents, undetermined|Poisoning by other topical agents, undetermined +C2883489|T037|HT|T49.8X4|ICD10CM|Poisoning by other topical agents, undetermined|Poisoning by other topical agents, undetermined +C2883490|T037|AB|T49.8X4A|ICD10CM|Poisoning by other topical agents, undetermined, init encntr|Poisoning by other topical agents, undetermined, init encntr +C2883490|T037|PT|T49.8X4A|ICD10CM|Poisoning by other topical agents, undetermined, initial encounter|Poisoning by other topical agents, undetermined, initial encounter +C2883491|T037|AB|T49.8X4D|ICD10CM|Poisoning by other topical agents, undetermined, subs encntr|Poisoning by other topical agents, undetermined, subs encntr +C2883491|T037|PT|T49.8X4D|ICD10CM|Poisoning by other topical agents, undetermined, subsequent encounter|Poisoning by other topical agents, undetermined, subsequent encounter +C2883492|T037|AB|T49.8X4S|ICD10CM|Poisoning by other topical agents, undetermined, sequela|Poisoning by other topical agents, undetermined, sequela +C2883492|T037|PT|T49.8X4S|ICD10CM|Poisoning by other topical agents, undetermined, sequela|Poisoning by other topical agents, undetermined, sequela +C2883493|T037|AB|T49.8X5|ICD10CM|Adverse effect of other topical agents|Adverse effect of other topical agents +C2883493|T037|HT|T49.8X5|ICD10CM|Adverse effect of other topical agents|Adverse effect of other topical agents +C2883494|T037|AB|T49.8X5A|ICD10CM|Adverse effect of other topical agents, initial encounter|Adverse effect of other topical agents, initial encounter +C2883494|T037|PT|T49.8X5A|ICD10CM|Adverse effect of other topical agents, initial encounter|Adverse effect of other topical agents, initial encounter +C2883495|T037|AB|T49.8X5D|ICD10CM|Adverse effect of other topical agents, subsequent encounter|Adverse effect of other topical agents, subsequent encounter +C2883495|T037|PT|T49.8X5D|ICD10CM|Adverse effect of other topical agents, subsequent encounter|Adverse effect of other topical agents, subsequent encounter +C2883496|T037|AB|T49.8X5S|ICD10CM|Adverse effect of other topical agents, sequela|Adverse effect of other topical agents, sequela +C2883496|T037|PT|T49.8X5S|ICD10CM|Adverse effect of other topical agents, sequela|Adverse effect of other topical agents, sequela +C2883497|T037|AB|T49.8X6|ICD10CM|Underdosing of other topical agents|Underdosing of other topical agents +C2883497|T037|HT|T49.8X6|ICD10CM|Underdosing of other topical agents|Underdosing of other topical agents +C2883498|T037|AB|T49.8X6A|ICD10CM|Underdosing of other topical agents, initial encounter|Underdosing of other topical agents, initial encounter +C2883498|T037|PT|T49.8X6A|ICD10CM|Underdosing of other topical agents, initial encounter|Underdosing of other topical agents, initial encounter +C2883499|T037|AB|T49.8X6D|ICD10CM|Underdosing of other topical agents, subsequent encounter|Underdosing of other topical agents, subsequent encounter +C2883499|T037|PT|T49.8X6D|ICD10CM|Underdosing of other topical agents, subsequent encounter|Underdosing of other topical agents, subsequent encounter +C2883500|T037|AB|T49.8X6S|ICD10CM|Underdosing of other topical agents, sequela|Underdosing of other topical agents, sequela +C2883500|T037|PT|T49.8X6S|ICD10CM|Underdosing of other topical agents, sequela|Underdosing of other topical agents, sequela +C0497002|T037|PX|T49.9|ICD10|Poisoning by topical agent, unspecified|Poisoning by topical agent, unspecified +C2883501|T037|HT|T49.9|ICD10CM|Poisoning by, adverse effect of and underdosing of unspecified topical agent|Poisoning by, adverse effect of and underdosing of unspecified topical agent +C0497002|T037|PS|T49.9|ICD10|Topical agent, unspecified|Topical agent, unspecified +C2883501|T037|AB|T49.9|ICD10CM|Unsp topical agent|Unsp topical agent +C2883502|T037|AB|T49.91|ICD10CM|Poisoning by unsp topical agent, accidental (unintentional)|Poisoning by unsp topical agent, accidental (unintentional) +C2883502|T037|HT|T49.91|ICD10CM|Poisoning by unspecified topical agent, accidental (unintentional)|Poisoning by unspecified topical agent, accidental (unintentional) +C2883503|T037|AB|T49.91XA|ICD10CM|Poisoning by unsp topical agent, accidental, init|Poisoning by unsp topical agent, accidental, init +C2883503|T037|PT|T49.91XA|ICD10CM|Poisoning by unspecified topical agent, accidental (unintentional), initial encounter|Poisoning by unspecified topical agent, accidental (unintentional), initial encounter +C2883504|T037|AB|T49.91XD|ICD10CM|Poisoning by unsp topical agent, accidental, subs|Poisoning by unsp topical agent, accidental, subs +C2883504|T037|PT|T49.91XD|ICD10CM|Poisoning by unspecified topical agent, accidental (unintentional), subsequent encounter|Poisoning by unspecified topical agent, accidental (unintentional), subsequent encounter +C2883505|T037|AB|T49.91XS|ICD10CM|Poisoning by unsp topical agent, accidental, sequela|Poisoning by unsp topical agent, accidental, sequela +C2883505|T037|PT|T49.91XS|ICD10CM|Poisoning by unspecified topical agent, accidental (unintentional), sequela|Poisoning by unspecified topical agent, accidental (unintentional), sequela +C2883506|T037|AB|T49.92|ICD10CM|Poisoning by unsp topical agent, intentional self-harm|Poisoning by unsp topical agent, intentional self-harm +C2883506|T037|HT|T49.92|ICD10CM|Poisoning by unspecified topical agent, intentional self-harm|Poisoning by unspecified topical agent, intentional self-harm +C2883507|T037|AB|T49.92XA|ICD10CM|Poisoning by unsp topical agent, intentional self-harm, init|Poisoning by unsp topical agent, intentional self-harm, init +C2883507|T037|PT|T49.92XA|ICD10CM|Poisoning by unspecified topical agent, intentional self-harm, initial encounter|Poisoning by unspecified topical agent, intentional self-harm, initial encounter +C2883508|T037|AB|T49.92XD|ICD10CM|Poisoning by unsp topical agent, intentional self-harm, subs|Poisoning by unsp topical agent, intentional self-harm, subs +C2883508|T037|PT|T49.92XD|ICD10CM|Poisoning by unspecified topical agent, intentional self-harm, subsequent encounter|Poisoning by unspecified topical agent, intentional self-harm, subsequent encounter +C2883509|T037|AB|T49.92XS|ICD10CM|Poisoning by unsp topical agent, self-harm, sequela|Poisoning by unsp topical agent, self-harm, sequela +C2883509|T037|PT|T49.92XS|ICD10CM|Poisoning by unspecified topical agent, intentional self-harm, sequela|Poisoning by unspecified topical agent, intentional self-harm, sequela +C2883510|T037|AB|T49.93|ICD10CM|Poisoning by unspecified topical agent, assault|Poisoning by unspecified topical agent, assault +C2883510|T037|HT|T49.93|ICD10CM|Poisoning by unspecified topical agent, assault|Poisoning by unspecified topical agent, assault +C2883511|T037|AB|T49.93XA|ICD10CM|Poisoning by unspecified topical agent, assault, init encntr|Poisoning by unspecified topical agent, assault, init encntr +C2883511|T037|PT|T49.93XA|ICD10CM|Poisoning by unspecified topical agent, assault, initial encounter|Poisoning by unspecified topical agent, assault, initial encounter +C2883512|T037|AB|T49.93XD|ICD10CM|Poisoning by unspecified topical agent, assault, subs encntr|Poisoning by unspecified topical agent, assault, subs encntr +C2883512|T037|PT|T49.93XD|ICD10CM|Poisoning by unspecified topical agent, assault, subsequent encounter|Poisoning by unspecified topical agent, assault, subsequent encounter +C2883513|T037|AB|T49.93XS|ICD10CM|Poisoning by unspecified topical agent, assault, sequela|Poisoning by unspecified topical agent, assault, sequela +C2883513|T037|PT|T49.93XS|ICD10CM|Poisoning by unspecified topical agent, assault, sequela|Poisoning by unspecified topical agent, assault, sequela +C2883514|T037|AB|T49.94|ICD10CM|Poisoning by unspecified topical agent, undetermined|Poisoning by unspecified topical agent, undetermined +C2883514|T037|HT|T49.94|ICD10CM|Poisoning by unspecified topical agent, undetermined|Poisoning by unspecified topical agent, undetermined +C2883515|T037|AB|T49.94XA|ICD10CM|Poisoning by unsp topical agent, undetermined, init encntr|Poisoning by unsp topical agent, undetermined, init encntr +C2883515|T037|PT|T49.94XA|ICD10CM|Poisoning by unspecified topical agent, undetermined, initial encounter|Poisoning by unspecified topical agent, undetermined, initial encounter +C2883516|T037|AB|T49.94XD|ICD10CM|Poisoning by unsp topical agent, undetermined, subs encntr|Poisoning by unsp topical agent, undetermined, subs encntr +C2883516|T037|PT|T49.94XD|ICD10CM|Poisoning by unspecified topical agent, undetermined, subsequent encounter|Poisoning by unspecified topical agent, undetermined, subsequent encounter +C2883517|T037|AB|T49.94XS|ICD10CM|Poisoning by unsp topical agent, undetermined, sequela|Poisoning by unsp topical agent, undetermined, sequela +C2883517|T037|PT|T49.94XS|ICD10CM|Poisoning by unspecified topical agent, undetermined, sequela|Poisoning by unspecified topical agent, undetermined, sequela +C2883518|T037|AB|T49.95|ICD10CM|Adverse effect of unspecified topical agent|Adverse effect of unspecified topical agent +C2883518|T037|HT|T49.95|ICD10CM|Adverse effect of unspecified topical agent|Adverse effect of unspecified topical agent +C2883519|T037|AB|T49.95XA|ICD10CM|Adverse effect of unspecified topical agent, init encntr|Adverse effect of unspecified topical agent, init encntr +C2883519|T037|PT|T49.95XA|ICD10CM|Adverse effect of unspecified topical agent, initial encounter|Adverse effect of unspecified topical agent, initial encounter +C2883520|T037|AB|T49.95XD|ICD10CM|Adverse effect of unspecified topical agent, subs encntr|Adverse effect of unspecified topical agent, subs encntr +C2883520|T037|PT|T49.95XD|ICD10CM|Adverse effect of unspecified topical agent, subsequent encounter|Adverse effect of unspecified topical agent, subsequent encounter +C2883521|T037|AB|T49.95XS|ICD10CM|Adverse effect of unspecified topical agent, sequela|Adverse effect of unspecified topical agent, sequela +C2883521|T037|PT|T49.95XS|ICD10CM|Adverse effect of unspecified topical agent, sequela|Adverse effect of unspecified topical agent, sequela +C2883522|T037|AB|T49.96|ICD10CM|Underdosing of unspecified topical agent|Underdosing of unspecified topical agent +C2883522|T037|HT|T49.96|ICD10CM|Underdosing of unspecified topical agent|Underdosing of unspecified topical agent +C2883523|T037|AB|T49.96XA|ICD10CM|Underdosing of unspecified topical agent, initial encounter|Underdosing of unspecified topical agent, initial encounter +C2883523|T037|PT|T49.96XA|ICD10CM|Underdosing of unspecified topical agent, initial encounter|Underdosing of unspecified topical agent, initial encounter +C2883524|T037|AB|T49.96XD|ICD10CM|Underdosing of unspecified topical agent, subs encntr|Underdosing of unspecified topical agent, subs encntr +C2883524|T037|PT|T49.96XD|ICD10CM|Underdosing of unspecified topical agent, subsequent encounter|Underdosing of unspecified topical agent, subsequent encounter +C2883525|T037|AB|T49.96XS|ICD10CM|Underdosing of unspecified topical agent, sequela|Underdosing of unspecified topical agent, sequela +C2883525|T037|PT|T49.96XS|ICD10CM|Underdosing of unspecified topical agent, sequela|Underdosing of unspecified topical agent, sequela +C2883526|T037|AB|T50|ICD10CM|Diuretics and oth and unsp drug/meds/biol subst|Diuretics and oth and unsp drug/meds/biol subst +C0496099|T037|HT|T50|ICD10|Poisoning by diuretics and other and unspecified drugs, medicaments and biological substances|Poisoning by diuretics and other and unspecified drugs, medicaments and biological substances +C2883527|T037|AB|T50.0|ICD10CM|Mineralocorticoids and their antagonists|Mineralocorticoids and their antagonists +C0452171|T037|PS|T50.0|ICD10|Mineralocorticoids and their antagonists|Mineralocorticoids and their antagonists +C0452171|T037|PX|T50.0|ICD10|Poisoning by mineralocorticoids and their antagonists|Poisoning by mineralocorticoids and their antagonists +C2883527|T037|HT|T50.0|ICD10CM|Poisoning by, adverse effect of and underdosing of mineralocorticoids and their antagonists|Poisoning by, adverse effect of and underdosing of mineralocorticoids and their antagonists +C2883527|T037|AB|T50.0X|ICD10CM|Mineralocorticoids and their antagonists|Mineralocorticoids and their antagonists +C2883527|T037|HT|T50.0X|ICD10CM|Poisoning by, adverse effect of and underdosing of mineralocorticoids and their antagonists|Poisoning by, adverse effect of and underdosing of mineralocorticoids and their antagonists +C2883528|T037|AB|T50.0X1|ICD10CM|Poisoning by mineralocorticoids and their antag, accidental|Poisoning by mineralocorticoids and their antag, accidental +C0452171|T037|ET|T50.0X1|ICD10CM|Poisoning by mineralocorticoids and their antagonists NOS|Poisoning by mineralocorticoids and their antagonists NOS +C2883528|T037|HT|T50.0X1|ICD10CM|Poisoning by mineralocorticoids and their antagonists, accidental (unintentional)|Poisoning by mineralocorticoids and their antagonists, accidental (unintentional) +C2883529|T037|AB|T50.0X1A|ICD10CM|Poisoning by mineralocorticoids and their antag, acc, init|Poisoning by mineralocorticoids and their antag, acc, init +C2883529|T037|PT|T50.0X1A|ICD10CM|Poisoning by mineralocorticoids and their antagonists, accidental (unintentional), initial encounter|Poisoning by mineralocorticoids and their antagonists, accidental (unintentional), initial encounter +C2883530|T037|AB|T50.0X1D|ICD10CM|Poisoning by mineralocorticoids and their antag, acc, subs|Poisoning by mineralocorticoids and their antag, acc, subs +C2883531|T037|AB|T50.0X1S|ICD10CM|Poisoning by mineralocorticoids and antag, acc, sequela|Poisoning by mineralocorticoids and antag, acc, sequela +C2883531|T037|PT|T50.0X1S|ICD10CM|Poisoning by mineralocorticoids and their antagonists, accidental (unintentional), sequela|Poisoning by mineralocorticoids and their antagonists, accidental (unintentional), sequela +C2883532|T037|AB|T50.0X2|ICD10CM|Poisoning by mineralocorticoids and their antag, self-harm|Poisoning by mineralocorticoids and their antag, self-harm +C2883532|T037|HT|T50.0X2|ICD10CM|Poisoning by mineralocorticoids and their antagonists, intentional self-harm|Poisoning by mineralocorticoids and their antagonists, intentional self-harm +C2883533|T037|AB|T50.0X2A|ICD10CM|Poisoning by mineralocorticoids and antag, self-harm, init|Poisoning by mineralocorticoids and antag, self-harm, init +C2883533|T037|PT|T50.0X2A|ICD10CM|Poisoning by mineralocorticoids and their antagonists, intentional self-harm, initial encounter|Poisoning by mineralocorticoids and their antagonists, intentional self-harm, initial encounter +C2883534|T037|AB|T50.0X2D|ICD10CM|Poisoning by mineralocorticoids and antag, self-harm, subs|Poisoning by mineralocorticoids and antag, self-harm, subs +C2883534|T037|PT|T50.0X2D|ICD10CM|Poisoning by mineralocorticoids and their antagonists, intentional self-harm, subsequent encounter|Poisoning by mineralocorticoids and their antagonists, intentional self-harm, subsequent encounter +C2883535|T037|AB|T50.0X2S|ICD10CM|Poisn by mineralocorticoids and antag, self-harm, sequela|Poisn by mineralocorticoids and antag, self-harm, sequela +C2883535|T037|PT|T50.0X2S|ICD10CM|Poisoning by mineralocorticoids and their antagonists, intentional self-harm, sequela|Poisoning by mineralocorticoids and their antagonists, intentional self-harm, sequela +C2883536|T037|AB|T50.0X3|ICD10CM|Poisoning by mineralocorticoids and their antag, assault|Poisoning by mineralocorticoids and their antag, assault +C2883536|T037|HT|T50.0X3|ICD10CM|Poisoning by mineralocorticoids and their antagonists, assault|Poisoning by mineralocorticoids and their antagonists, assault +C2883537|T037|AB|T50.0X3A|ICD10CM|Poisoning by mineralocorticoids and antag, assault, init|Poisoning by mineralocorticoids and antag, assault, init +C2883537|T037|PT|T50.0X3A|ICD10CM|Poisoning by mineralocorticoids and their antagonists, assault, initial encounter|Poisoning by mineralocorticoids and their antagonists, assault, initial encounter +C2883538|T037|AB|T50.0X3D|ICD10CM|Poisoning by mineralocorticoids and antag, assault, subs|Poisoning by mineralocorticoids and antag, assault, subs +C2883538|T037|PT|T50.0X3D|ICD10CM|Poisoning by mineralocorticoids and their antagonists, assault, subsequent encounter|Poisoning by mineralocorticoids and their antagonists, assault, subsequent encounter +C2883539|T037|AB|T50.0X3S|ICD10CM|Poisoning by mineralocorticoids and antag, assault, sequela|Poisoning by mineralocorticoids and antag, assault, sequela +C2883539|T037|PT|T50.0X3S|ICD10CM|Poisoning by mineralocorticoids and their antagonists, assault, sequela|Poisoning by mineralocorticoids and their antagonists, assault, sequela +C2883540|T037|AB|T50.0X4|ICD10CM|Poisoning by mineralocorticoids and their antagonists, undet|Poisoning by mineralocorticoids and their antagonists, undet +C2883540|T037|HT|T50.0X4|ICD10CM|Poisoning by mineralocorticoids and their antagonists, undetermined|Poisoning by mineralocorticoids and their antagonists, undetermined +C2883541|T037|AB|T50.0X4A|ICD10CM|Poisoning by mineralocorticoids and their antag, undet, init|Poisoning by mineralocorticoids and their antag, undet, init +C2883541|T037|PT|T50.0X4A|ICD10CM|Poisoning by mineralocorticoids and their antagonists, undetermined, initial encounter|Poisoning by mineralocorticoids and their antagonists, undetermined, initial encounter +C2883542|T037|AB|T50.0X4D|ICD10CM|Poisoning by mineralocorticoids and their antag, undet, subs|Poisoning by mineralocorticoids and their antag, undet, subs +C2883542|T037|PT|T50.0X4D|ICD10CM|Poisoning by mineralocorticoids and their antagonists, undetermined, subsequent encounter|Poisoning by mineralocorticoids and their antagonists, undetermined, subsequent encounter +C2883543|T037|AB|T50.0X4S|ICD10CM|Poisoning by mineralocorticoids and antag, undet, sequela|Poisoning by mineralocorticoids and antag, undet, sequela +C2883543|T037|PT|T50.0X4S|ICD10CM|Poisoning by mineralocorticoids and their antagonists, undetermined, sequela|Poisoning by mineralocorticoids and their antagonists, undetermined, sequela +C2883544|T037|AB|T50.0X5|ICD10CM|Adverse effect of mineralocorticoids and their antagonists|Adverse effect of mineralocorticoids and their antagonists +C2883544|T037|HT|T50.0X5|ICD10CM|Adverse effect of mineralocorticoids and their antagonists|Adverse effect of mineralocorticoids and their antagonists +C2883545|T037|AB|T50.0X5A|ICD10CM|Adverse effect of mineralocorticoids and their antag, init|Adverse effect of mineralocorticoids and their antag, init +C2883545|T037|PT|T50.0X5A|ICD10CM|Adverse effect of mineralocorticoids and their antagonists, initial encounter|Adverse effect of mineralocorticoids and their antagonists, initial encounter +C2883546|T037|AB|T50.0X5D|ICD10CM|Adverse effect of mineralocorticoids and their antag, subs|Adverse effect of mineralocorticoids and their antag, subs +C2883546|T037|PT|T50.0X5D|ICD10CM|Adverse effect of mineralocorticoids and their antagonists, subsequent encounter|Adverse effect of mineralocorticoids and their antagonists, subsequent encounter +C2883547|T037|AB|T50.0X5S|ICD10CM|Adverse effect of mineralocorticoids and antag, sequela|Adverse effect of mineralocorticoids and antag, sequela +C2883547|T037|PT|T50.0X5S|ICD10CM|Adverse effect of mineralocorticoids and their antagonists, sequela|Adverse effect of mineralocorticoids and their antagonists, sequela +C2883548|T037|AB|T50.0X6|ICD10CM|Underdosing of mineralocorticoids and their antagonists|Underdosing of mineralocorticoids and their antagonists +C2883548|T037|HT|T50.0X6|ICD10CM|Underdosing of mineralocorticoids and their antagonists|Underdosing of mineralocorticoids and their antagonists +C2883549|T037|AB|T50.0X6A|ICD10CM|Underdosing of mineralocorticoids and their antag, init|Underdosing of mineralocorticoids and their antag, init +C2883549|T037|PT|T50.0X6A|ICD10CM|Underdosing of mineralocorticoids and their antagonists, initial encounter|Underdosing of mineralocorticoids and their antagonists, initial encounter +C2883550|T037|AB|T50.0X6D|ICD10CM|Underdosing of mineralocorticoids and their antag, subs|Underdosing of mineralocorticoids and their antag, subs +C2883550|T037|PT|T50.0X6D|ICD10CM|Underdosing of mineralocorticoids and their antagonists, subsequent encounter|Underdosing of mineralocorticoids and their antagonists, subsequent encounter +C2883551|T037|AB|T50.0X6S|ICD10CM|Underdosing of mineralocorticoids and their antag, sequela|Underdosing of mineralocorticoids and their antag, sequela +C2883551|T037|PT|T50.0X6S|ICD10CM|Underdosing of mineralocorticoids and their antagonists, sequela|Underdosing of mineralocorticoids and their antagonists, sequela +C0497003|T037|PS|T50.1|ICD10|Loop [high-ceiling] diuretics|Loop [high-ceiling] diuretics +C2883552|T037|AB|T50.1|ICD10CM|Loop diuretics|Loop diuretics +C0497003|T037|PX|T50.1|ICD10|Poisoning by loop [high-ceiling] diuretics|Poisoning by loop [high-ceiling] diuretics +C2883552|T037|HT|T50.1|ICD10CM|Poisoning by, adverse effect of and underdosing of loop [high-ceiling] diuretics|Poisoning by, adverse effect of and underdosing of loop [high-ceiling] diuretics +C2883552|T037|AB|T50.1X|ICD10CM|Loop diuretics|Loop diuretics +C2883552|T037|HT|T50.1X|ICD10CM|Poisoning by, adverse effect of and underdosing of loop [high-ceiling] diuretics|Poisoning by, adverse effect of and underdosing of loop [high-ceiling] diuretics +C0497003|T037|ET|T50.1X1|ICD10CM|Poisoning by loop [high-ceiling] diuretics NOS|Poisoning by loop [high-ceiling] diuretics NOS +C2883553|T037|HT|T50.1X1|ICD10CM|Poisoning by loop [high-ceiling] diuretics, accidental (unintentional)|Poisoning by loop [high-ceiling] diuretics, accidental (unintentional) +C2883553|T037|AB|T50.1X1|ICD10CM|Poisoning by loop diuretics, accidental (unintentional)|Poisoning by loop diuretics, accidental (unintentional) +C2883554|T037|PT|T50.1X1A|ICD10CM|Poisoning by loop [high-ceiling] diuretics, accidental (unintentional), initial encounter|Poisoning by loop [high-ceiling] diuretics, accidental (unintentional), initial encounter +C2883554|T037|AB|T50.1X1A|ICD10CM|Poisoning by loop diuretics, accidental, init|Poisoning by loop diuretics, accidental, init +C2883555|T037|PT|T50.1X1D|ICD10CM|Poisoning by loop [high-ceiling] diuretics, accidental (unintentional), subsequent encounter|Poisoning by loop [high-ceiling] diuretics, accidental (unintentional), subsequent encounter +C2883555|T037|AB|T50.1X1D|ICD10CM|Poisoning by loop diuretics, accidental, subs|Poisoning by loop diuretics, accidental, subs +C2883556|T037|PT|T50.1X1S|ICD10CM|Poisoning by loop [high-ceiling] diuretics, accidental (unintentional), sequela|Poisoning by loop [high-ceiling] diuretics, accidental (unintentional), sequela +C2883556|T037|AB|T50.1X1S|ICD10CM|Poisoning by loop diuretics, accidental, sequela|Poisoning by loop diuretics, accidental, sequela +C2883557|T037|HT|T50.1X2|ICD10CM|Poisoning by loop [high-ceiling] diuretics, intentional self-harm|Poisoning by loop [high-ceiling] diuretics, intentional self-harm +C2883557|T037|AB|T50.1X2|ICD10CM|Poisoning by loop diuretics, intentional self-harm|Poisoning by loop diuretics, intentional self-harm +C2883558|T037|PT|T50.1X2A|ICD10CM|Poisoning by loop [high-ceiling] diuretics, intentional self-harm, initial encounter|Poisoning by loop [high-ceiling] diuretics, intentional self-harm, initial encounter +C2883558|T037|AB|T50.1X2A|ICD10CM|Poisoning by loop diuretics, intentional self-harm, init|Poisoning by loop diuretics, intentional self-harm, init +C2883559|T037|PT|T50.1X2D|ICD10CM|Poisoning by loop [high-ceiling] diuretics, intentional self-harm, subsequent encounter|Poisoning by loop [high-ceiling] diuretics, intentional self-harm, subsequent encounter +C2883559|T037|AB|T50.1X2D|ICD10CM|Poisoning by loop diuretics, intentional self-harm, subs|Poisoning by loop diuretics, intentional self-harm, subs +C2883560|T037|PT|T50.1X2S|ICD10CM|Poisoning by loop [high-ceiling] diuretics, intentional self-harm, sequela|Poisoning by loop [high-ceiling] diuretics, intentional self-harm, sequela +C2883560|T037|AB|T50.1X2S|ICD10CM|Poisoning by loop diuretics, intentional self-harm, sequela|Poisoning by loop diuretics, intentional self-harm, sequela +C2883561|T037|AB|T50.1X3|ICD10CM|Poisoning by loop [high-ceiling] diuretics, assault|Poisoning by loop [high-ceiling] diuretics, assault +C2883561|T037|HT|T50.1X3|ICD10CM|Poisoning by loop [high-ceiling] diuretics, assault|Poisoning by loop [high-ceiling] diuretics, assault +C2883562|T037|PT|T50.1X3A|ICD10CM|Poisoning by loop [high-ceiling] diuretics, assault, initial encounter|Poisoning by loop [high-ceiling] diuretics, assault, initial encounter +C2883562|T037|AB|T50.1X3A|ICD10CM|Poisoning by loop diuretics, assault, initial encounter|Poisoning by loop diuretics, assault, initial encounter +C2883563|T037|PT|T50.1X3D|ICD10CM|Poisoning by loop [high-ceiling] diuretics, assault, subsequent encounter|Poisoning by loop [high-ceiling] diuretics, assault, subsequent encounter +C2883563|T037|AB|T50.1X3D|ICD10CM|Poisoning by loop diuretics, assault, subsequent encounter|Poisoning by loop diuretics, assault, subsequent encounter +C2883564|T037|AB|T50.1X3S|ICD10CM|Poisoning by loop [high-ceiling] diuretics, assault, sequela|Poisoning by loop [high-ceiling] diuretics, assault, sequela +C2883564|T037|PT|T50.1X3S|ICD10CM|Poisoning by loop [high-ceiling] diuretics, assault, sequela|Poisoning by loop [high-ceiling] diuretics, assault, sequela +C2883565|T037|AB|T50.1X4|ICD10CM|Poisoning by loop [high-ceiling] diuretics, undetermined|Poisoning by loop [high-ceiling] diuretics, undetermined +C2883565|T037|HT|T50.1X4|ICD10CM|Poisoning by loop [high-ceiling] diuretics, undetermined|Poisoning by loop [high-ceiling] diuretics, undetermined +C2883566|T037|PT|T50.1X4A|ICD10CM|Poisoning by loop [high-ceiling] diuretics, undetermined, initial encounter|Poisoning by loop [high-ceiling] diuretics, undetermined, initial encounter +C2883566|T037|AB|T50.1X4A|ICD10CM|Poisoning by loop diuretics, undetermined, initial encounter|Poisoning by loop diuretics, undetermined, initial encounter +C2883567|T037|PT|T50.1X4D|ICD10CM|Poisoning by loop [high-ceiling] diuretics, undetermined, subsequent encounter|Poisoning by loop [high-ceiling] diuretics, undetermined, subsequent encounter +C2883567|T037|AB|T50.1X4D|ICD10CM|Poisoning by loop diuretics, undetermined, subs encntr|Poisoning by loop diuretics, undetermined, subs encntr +C2883568|T037|PT|T50.1X4S|ICD10CM|Poisoning by loop [high-ceiling] diuretics, undetermined, sequela|Poisoning by loop [high-ceiling] diuretics, undetermined, sequela +C2883568|T037|AB|T50.1X4S|ICD10CM|Poisoning by loop diuretics, undetermined, sequela|Poisoning by loop diuretics, undetermined, sequela +C2883569|T037|AB|T50.1X5|ICD10CM|Adverse effect of loop [high-ceiling] diuretics|Adverse effect of loop [high-ceiling] diuretics +C2883569|T037|HT|T50.1X5|ICD10CM|Adverse effect of loop [high-ceiling] diuretics|Adverse effect of loop [high-ceiling] diuretics +C2883570|T037|PT|T50.1X5A|ICD10CM|Adverse effect of loop [high-ceiling] diuretics, initial encounter|Adverse effect of loop [high-ceiling] diuretics, initial encounter +C2883570|T037|AB|T50.1X5A|ICD10CM|Adverse effect of loop diuretics, initial encounter|Adverse effect of loop diuretics, initial encounter +C2883571|T037|PT|T50.1X5D|ICD10CM|Adverse effect of loop [high-ceiling] diuretics, subsequent encounter|Adverse effect of loop [high-ceiling] diuretics, subsequent encounter +C2883571|T037|AB|T50.1X5D|ICD10CM|Adverse effect of loop diuretics, subsequent encounter|Adverse effect of loop diuretics, subsequent encounter +C2883572|T037|AB|T50.1X5S|ICD10CM|Adverse effect of loop [high-ceiling] diuretics, sequela|Adverse effect of loop [high-ceiling] diuretics, sequela +C2883572|T037|PT|T50.1X5S|ICD10CM|Adverse effect of loop [high-ceiling] diuretics, sequela|Adverse effect of loop [high-ceiling] diuretics, sequela +C2883573|T037|AB|T50.1X6|ICD10CM|Underdosing of loop [high-ceiling] diuretics|Underdosing of loop [high-ceiling] diuretics +C2883573|T037|HT|T50.1X6|ICD10CM|Underdosing of loop [high-ceiling] diuretics|Underdosing of loop [high-ceiling] diuretics +C2883574|T037|PT|T50.1X6A|ICD10CM|Underdosing of loop [high-ceiling] diuretics, initial encounter|Underdosing of loop [high-ceiling] diuretics, initial encounter +C2883574|T037|AB|T50.1X6A|ICD10CM|Underdosing of loop diuretics, initial encounter|Underdosing of loop diuretics, initial encounter +C2883575|T037|PT|T50.1X6D|ICD10CM|Underdosing of loop [high-ceiling] diuretics, subsequent encounter|Underdosing of loop [high-ceiling] diuretics, subsequent encounter +C2883575|T037|AB|T50.1X6D|ICD10CM|Underdosing of loop diuretics, subsequent encounter|Underdosing of loop diuretics, subsequent encounter +C2883576|T037|AB|T50.1X6S|ICD10CM|Underdosing of loop [high-ceiling] diuretics, sequela|Underdosing of loop [high-ceiling] diuretics, sequela +C2883576|T037|PT|T50.1X6S|ICD10CM|Underdosing of loop [high-ceiling] diuretics, sequela|Underdosing of loop [high-ceiling] diuretics, sequela +C2883578|T037|AB|T50.2|ICD10CM|Carbonic-anhydrase inhibitors, benzo/oth diuretc|Carbonic-anhydrase inhibitors, benzo/oth diuretc +C0549458|T037|PS|T50.2|ICD10|Carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics|Carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics +C0549458|T037|PX|T50.2|ICD10|Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics|Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics +C2883577|T037|ET|T50.2|ICD10CM|Poisoning by, adverse effect of and underdosing of acetazolamide|Poisoning by, adverse effect of and underdosing of acetazolamide +C2883578|T037|AB|T50.2X|ICD10CM|Carbonic-anhydrase inhibitors, benzo/oth diuretc|Carbonic-anhydrase inhibitors, benzo/oth diuretc +C0549458|T037|ET|T50.2X1|ICD10CM|Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics NOS|Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics NOS +C2883579|T037|AB|T50.2X1|ICD10CM|Poisoning by crbnc-anhydr inhibtr, benzo/oth diuretc, acc|Poisoning by crbnc-anhydr inhibtr, benzo/oth diuretc, acc +C2883580|T037|AB|T50.2X1A|ICD10CM|Poisn by crbnc-anhydr inhibtr, benzo/oth diuretc, acc, init|Poisn by crbnc-anhydr inhibtr, benzo/oth diuretc, acc, init +C2883581|T037|AB|T50.2X1D|ICD10CM|Poisn by crbnc-anhydr inhibtr, benzo/oth diuretc, acc, subs|Poisn by crbnc-anhydr inhibtr, benzo/oth diuretc, acc, subs +C2883582|T037|AB|T50.2X1S|ICD10CM|Poisn by crbnc-anhydr inhibtr, benzo/oth diuretc, acc, sqla|Poisn by crbnc-anhydr inhibtr, benzo/oth diuretc, acc, sqla +C2883583|T037|AB|T50.2X2|ICD10CM|Poisn by crbnc-anhydr inhibtr, benzo/oth diuretc, self-harm|Poisn by crbnc-anhydr inhibtr, benzo/oth diuretc, self-harm +C2883584|T037|AB|T50.2X2A|ICD10CM|Poisn by crbnc-anhydr inhibtr,benzo/oth diuretc,slf-hrm,init|Poisn by crbnc-anhydr inhibtr,benzo/oth diuretc,slf-hrm,init +C2883585|T037|AB|T50.2X2D|ICD10CM|Poisn by crbnc-anhydr inhibtr,benzo/oth diuretc,slf-hrm,subs|Poisn by crbnc-anhydr inhibtr,benzo/oth diuretc,slf-hrm,subs +C2883586|T037|AB|T50.2X2S|ICD10CM|Poisn by crbnc-anhydr inhibtr,benzo/oth diuretc,slf-hrm,sqla|Poisn by crbnc-anhydr inhibtr,benzo/oth diuretc,slf-hrm,sqla +C2883587|T037|AB|T50.2X3|ICD10CM|Poisn by crbnc-anhydr inhibtr, benzo/oth diuretc, assault|Poisn by crbnc-anhydr inhibtr, benzo/oth diuretc, assault +C2883587|T037|HT|T50.2X3|ICD10CM|Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, assault|Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, assault +C2883588|T037|AB|T50.2X3A|ICD10CM|Poisn by crbnc-anhydr inhibtr,benzo/oth diuretc, asslt, init|Poisn by crbnc-anhydr inhibtr,benzo/oth diuretc, asslt, init +C2883589|T037|AB|T50.2X3D|ICD10CM|Poisn by crbnc-anhydr inhibtr,benzo/oth diuretc, asslt, subs|Poisn by crbnc-anhydr inhibtr,benzo/oth diuretc, asslt, subs +C2883590|T037|AB|T50.2X3S|ICD10CM|Poisn by crbnc-anhydr inhibtr,benzo/oth diuretc, asslt, sqla|Poisn by crbnc-anhydr inhibtr,benzo/oth diuretc, asslt, sqla +C2883590|T037|PT|T50.2X3S|ICD10CM|Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, assault, sequela|Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, assault, sequela +C2883591|T037|HT|T50.2X4|ICD10CM|Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, undetermined|Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, undetermined +C2883591|T037|AB|T50.2X4|ICD10CM|Poisoning by crbnc-anhydr inhibtr, benzo/oth diuretc, undet|Poisoning by crbnc-anhydr inhibtr, benzo/oth diuretc, undet +C2883592|T037|AB|T50.2X4A|ICD10CM|Poisn by crbnc-anhydr inhibtr,benzo/oth diuretc, undet, init|Poisn by crbnc-anhydr inhibtr,benzo/oth diuretc, undet, init +C2883593|T037|AB|T50.2X4D|ICD10CM|Poisn by crbnc-anhydr inhibtr,benzo/oth diuretc, undet, subs|Poisn by crbnc-anhydr inhibtr,benzo/oth diuretc, undet, subs +C2883594|T037|AB|T50.2X4S|ICD10CM|Poisn by crbnc-anhydr inhibtr,benzo/oth diuretc, undet, sqla|Poisn by crbnc-anhydr inhibtr,benzo/oth diuretc, undet, sqla +C2883595|T037|HT|T50.2X5|ICD10CM|Adverse effect of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics|Adverse effect of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics +C2883595|T037|AB|T50.2X5|ICD10CM|Adverse effect of crbnc-anhydr inhibtr, benzo/oth diuretc|Adverse effect of crbnc-anhydr inhibtr, benzo/oth diuretc +C2883596|T037|AB|T50.2X5A|ICD10CM|Advrs eff of crbnc-anhydr inhibtr, benzo/oth diuretc, init|Advrs eff of crbnc-anhydr inhibtr, benzo/oth diuretc, init +C2883597|T037|AB|T50.2X5D|ICD10CM|Advrs eff of crbnc-anhydr inhibtr, benzo/oth diuretc, subs|Advrs eff of crbnc-anhydr inhibtr, benzo/oth diuretc, subs +C2883598|T037|PT|T50.2X5S|ICD10CM|Adverse effect of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, sequela|Adverse effect of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, sequela +C2883598|T037|AB|T50.2X5S|ICD10CM|Advrs eff of crbnc-anhydr inhibtr, benzo/oth diuretc, sqla|Advrs eff of crbnc-anhydr inhibtr, benzo/oth diuretc, sqla +C2883599|T037|HT|T50.2X6|ICD10CM|Underdosing of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics|Underdosing of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics +C2883599|T037|AB|T50.2X6|ICD10CM|Underdosing of crbnc-anhydr inhibtr, benzo/oth diuretc|Underdosing of crbnc-anhydr inhibtr, benzo/oth diuretc +C2883600|T037|AB|T50.2X6A|ICD10CM|Underdosing of crbnc-anhydr inhibtr, benzo/oth diuretc, init|Underdosing of crbnc-anhydr inhibtr, benzo/oth diuretc, init +C2883601|T037|AB|T50.2X6D|ICD10CM|Underdosing of crbnc-anhydr inhibtr, benzo/oth diuretc, subs|Underdosing of crbnc-anhydr inhibtr, benzo/oth diuretc, subs +C2883602|T037|PT|T50.2X6S|ICD10CM|Underdosing of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, sequela|Underdosing of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, sequela +C2883602|T037|AB|T50.2X6S|ICD10CM|Undrdose of crbnc-anhydr inhibtr, benzo/oth diuretc, sequela|Undrdose of crbnc-anhydr inhibtr, benzo/oth diuretc, sequela +C2883604|T037|AB|T50.3|ICD10CM|Electrolytic, caloric and water-balance agents|Electrolytic, caloric and water-balance agents +C0161626|T037|PS|T50.3|ICD10|Electrolytic, caloric and water-balance agents|Electrolytic, caloric and water-balance agents +C0161626|T037|PX|T50.3|ICD10|Poisoning by electrolytic, caloric and water-balance agents|Poisoning by electrolytic, caloric and water-balance agents +C2883604|T037|HT|T50.3|ICD10CM|Poisoning by, adverse effect of and underdosing of electrolytic, caloric and water-balance agents|Poisoning by, adverse effect of and underdosing of electrolytic, caloric and water-balance agents +C2883603|T037|ET|T50.3|ICD10CM|Poisoning by, adverse effect of and underdosing of oral rehydration salts|Poisoning by, adverse effect of and underdosing of oral rehydration salts +C2883604|T037|AB|T50.3X|ICD10CM|Electrolytic, caloric and water-balance agents|Electrolytic, caloric and water-balance agents +C2883604|T037|HT|T50.3X|ICD10CM|Poisoning by, adverse effect of and underdosing of electrolytic, caloric and water-balance agents|Poisoning by, adverse effect of and underdosing of electrolytic, caloric and water-balance agents +C0161626|T037|ET|T50.3X1|ICD10CM|Poisoning by electrolytic, caloric and water-balance agents NOS|Poisoning by electrolytic, caloric and water-balance agents NOS +C2883605|T037|HT|T50.3X1|ICD10CM|Poisoning by electrolytic, caloric and water-balance agents, accidental (unintentional)|Poisoning by electrolytic, caloric and water-balance agents, accidental (unintentional) +C2883605|T037|AB|T50.3X1|ICD10CM|Poisoning by electrolytic/caloric/wtr-bal agnt, accidental|Poisoning by electrolytic/caloric/wtr-bal agnt, accidental +C2883606|T037|AB|T50.3X1A|ICD10CM|Poisoning by electrolytic/caloric/wtr-bal agnt, acc, init|Poisoning by electrolytic/caloric/wtr-bal agnt, acc, init +C2883607|T037|AB|T50.3X1D|ICD10CM|Poisoning by electrolytic/caloric/wtr-bal agnt, acc, subs|Poisoning by electrolytic/caloric/wtr-bal agnt, acc, subs +C2883608|T037|AB|T50.3X1S|ICD10CM|Poisn by electrolytic/caloric/wtr-bal agnt, acc, sequela|Poisn by electrolytic/caloric/wtr-bal agnt, acc, sequela +C2883608|T037|PT|T50.3X1S|ICD10CM|Poisoning by electrolytic, caloric and water-balance agents, accidental (unintentional), sequela|Poisoning by electrolytic, caloric and water-balance agents, accidental (unintentional), sequela +C2883609|T037|HT|T50.3X2|ICD10CM|Poisoning by electrolytic, caloric and water-balance agents, intentional self-harm|Poisoning by electrolytic, caloric and water-balance agents, intentional self-harm +C2883609|T037|AB|T50.3X2|ICD10CM|Poisoning by electrolytic/caloric/wtr-bal agnt, self-harm|Poisoning by electrolytic/caloric/wtr-bal agnt, self-harm +C2883610|T037|AB|T50.3X2A|ICD10CM|Poisn by electrolytic/caloric/wtr-bal agnt, self-harm, init|Poisn by electrolytic/caloric/wtr-bal agnt, self-harm, init +C2883611|T037|AB|T50.3X2D|ICD10CM|Poisn by electrolytic/caloric/wtr-bal agnt, self-harm, subs|Poisn by electrolytic/caloric/wtr-bal agnt, self-harm, subs +C2883612|T037|AB|T50.3X2S|ICD10CM|Poisn by electrolytic/caloric/wtr-bal agnt, slf-hrm, sequela|Poisn by electrolytic/caloric/wtr-bal agnt, slf-hrm, sequela +C2883612|T037|PT|T50.3X2S|ICD10CM|Poisoning by electrolytic, caloric and water-balance agents, intentional self-harm, sequela|Poisoning by electrolytic, caloric and water-balance agents, intentional self-harm, sequela +C2883613|T037|HT|T50.3X3|ICD10CM|Poisoning by electrolytic, caloric and water-balance agents, assault|Poisoning by electrolytic, caloric and water-balance agents, assault +C2883613|T037|AB|T50.3X3|ICD10CM|Poisoning by electrolytic/caloric/wtr-bal agnt, assault|Poisoning by electrolytic/caloric/wtr-bal agnt, assault +C2883614|T037|AB|T50.3X3A|ICD10CM|Poisn by electrolytic/caloric/wtr-bal agnt, assault, init|Poisn by electrolytic/caloric/wtr-bal agnt, assault, init +C2883614|T037|PT|T50.3X3A|ICD10CM|Poisoning by electrolytic, caloric and water-balance agents, assault, initial encounter|Poisoning by electrolytic, caloric and water-balance agents, assault, initial encounter +C2883615|T037|AB|T50.3X3D|ICD10CM|Poisn by electrolytic/caloric/wtr-bal agnt, assault, subs|Poisn by electrolytic/caloric/wtr-bal agnt, assault, subs +C2883615|T037|PT|T50.3X3D|ICD10CM|Poisoning by electrolytic, caloric and water-balance agents, assault, subsequent encounter|Poisoning by electrolytic, caloric and water-balance agents, assault, subsequent encounter +C2883616|T037|AB|T50.3X3S|ICD10CM|Poisn by electrolytic/caloric/wtr-bal agnt, assault, sequela|Poisn by electrolytic/caloric/wtr-bal agnt, assault, sequela +C2883616|T037|PT|T50.3X3S|ICD10CM|Poisoning by electrolytic, caloric and water-balance agents, assault, sequela|Poisoning by electrolytic, caloric and water-balance agents, assault, sequela +C2883617|T037|HT|T50.3X4|ICD10CM|Poisoning by electrolytic, caloric and water-balance agents, undetermined|Poisoning by electrolytic, caloric and water-balance agents, undetermined +C2883617|T037|AB|T50.3X4|ICD10CM|Poisoning by electrolytic/caloric/wtr-bal agnt, undetermined|Poisoning by electrolytic/caloric/wtr-bal agnt, undetermined +C2883618|T037|PT|T50.3X4A|ICD10CM|Poisoning by electrolytic, caloric and water-balance agents, undetermined, initial encounter|Poisoning by electrolytic, caloric and water-balance agents, undetermined, initial encounter +C2883618|T037|AB|T50.3X4A|ICD10CM|Poisoning by electrolytic/caloric/wtr-bal agnt, undet, init|Poisoning by electrolytic/caloric/wtr-bal agnt, undet, init +C2883619|T037|PT|T50.3X4D|ICD10CM|Poisoning by electrolytic, caloric and water-balance agents, undetermined, subsequent encounter|Poisoning by electrolytic, caloric and water-balance agents, undetermined, subsequent encounter +C2883619|T037|AB|T50.3X4D|ICD10CM|Poisoning by electrolytic/caloric/wtr-bal agnt, undet, subs|Poisoning by electrolytic/caloric/wtr-bal agnt, undet, subs +C2883620|T037|AB|T50.3X4S|ICD10CM|Poisn by electrolytic/caloric/wtr-bal agnt, undet, sequela|Poisn by electrolytic/caloric/wtr-bal agnt, undet, sequela +C2883620|T037|PT|T50.3X4S|ICD10CM|Poisoning by electrolytic, caloric and water-balance agents, undetermined, sequela|Poisoning by electrolytic, caloric and water-balance agents, undetermined, sequela +C2198260|T046|HT|T50.3X5|ICD10CM|Adverse effect of electrolytic, caloric and water-balance agents|Adverse effect of electrolytic, caloric and water-balance agents +C2198260|T046|AB|T50.3X5|ICD10CM|Adverse effect of electrolytic/caloric/wtr-bal agnt|Adverse effect of electrolytic/caloric/wtr-bal agnt +C2883621|T037|PT|T50.3X5A|ICD10CM|Adverse effect of electrolytic, caloric and water-balance agents, initial encounter|Adverse effect of electrolytic, caloric and water-balance agents, initial encounter +C2883621|T037|AB|T50.3X5A|ICD10CM|Adverse effect of electrolytic/caloric/wtr-bal agnt, init|Adverse effect of electrolytic/caloric/wtr-bal agnt, init +C2883622|T037|PT|T50.3X5D|ICD10CM|Adverse effect of electrolytic, caloric and water-balance agents, subsequent encounter|Adverse effect of electrolytic, caloric and water-balance agents, subsequent encounter +C2883622|T037|AB|T50.3X5D|ICD10CM|Adverse effect of electrolytic/caloric/wtr-bal agnt, subs|Adverse effect of electrolytic/caloric/wtr-bal agnt, subs +C2883623|T037|PT|T50.3X5S|ICD10CM|Adverse effect of electrolytic, caloric and water-balance agents, sequela|Adverse effect of electrolytic, caloric and water-balance agents, sequela +C2883623|T037|AB|T50.3X5S|ICD10CM|Adverse effect of electrolytic/caloric/wtr-bal agnt, sequela|Adverse effect of electrolytic/caloric/wtr-bal agnt, sequela +C2883624|T033|HT|T50.3X6|ICD10CM|Underdosing of electrolytic, caloric and water-balance agents|Underdosing of electrolytic, caloric and water-balance agents +C2883624|T033|AB|T50.3X6|ICD10CM|Underdosing of electrolytic/caloric/wtr-bal agnt|Underdosing of electrolytic/caloric/wtr-bal agnt +C2883625|T037|PT|T50.3X6A|ICD10CM|Underdosing of electrolytic, caloric and water-balance agents, initial encounter|Underdosing of electrolytic, caloric and water-balance agents, initial encounter +C2883625|T037|AB|T50.3X6A|ICD10CM|Underdosing of electrolytic/caloric/wtr-bal agnt, init|Underdosing of electrolytic/caloric/wtr-bal agnt, init +C2883626|T037|PT|T50.3X6D|ICD10CM|Underdosing of electrolytic, caloric and water-balance agents, subsequent encounter|Underdosing of electrolytic, caloric and water-balance agents, subsequent encounter +C2883626|T037|AB|T50.3X6D|ICD10CM|Underdosing of electrolytic/caloric/wtr-bal agnt, subs|Underdosing of electrolytic/caloric/wtr-bal agnt, subs +C2883627|T037|PT|T50.3X6S|ICD10CM|Underdosing of electrolytic, caloric and water-balance agents, sequela|Underdosing of electrolytic, caloric and water-balance agents, sequela +C2883627|T037|AB|T50.3X6S|ICD10CM|Underdosing of electrolytic/caloric/wtr-bal agnt, sequela|Underdosing of electrolytic/caloric/wtr-bal agnt, sequela +C2883628|T037|AB|T50.4|ICD10CM|Drugs affecting uric acid metabolism|Drugs affecting uric acid metabolism +C0161628|T037|PS|T50.4|ICD10|Drugs affecting uric acid metabolism|Drugs affecting uric acid metabolism +C0161628|T037|PX|T50.4|ICD10|Poisoning by drugs affecting uric acid metabolism|Poisoning by drugs affecting uric acid metabolism +C2883628|T037|HT|T50.4|ICD10CM|Poisoning by, adverse effect of and underdosing of drugs affecting uric acid metabolism|Poisoning by, adverse effect of and underdosing of drugs affecting uric acid metabolism +C2883628|T037|AB|T50.4X|ICD10CM|Drugs affecting uric acid metabolism|Drugs affecting uric acid metabolism +C2883628|T037|HT|T50.4X|ICD10CM|Poisoning by, adverse effect of and underdosing of drugs affecting uric acid metabolism|Poisoning by, adverse effect of and underdosing of drugs affecting uric acid metabolism +C0161628|T037|ET|T50.4X1|ICD10CM|Poisoning by drugs affecting uric acid metabolism NOS|Poisoning by drugs affecting uric acid metabolism NOS +C2883629|T037|AB|T50.4X1|ICD10CM|Poisoning by drugs affecting uric acid metabolism, acc|Poisoning by drugs affecting uric acid metabolism, acc +C2883629|T037|HT|T50.4X1|ICD10CM|Poisoning by drugs affecting uric acid metabolism, accidental (unintentional)|Poisoning by drugs affecting uric acid metabolism, accidental (unintentional) +C2883630|T037|AB|T50.4X1A|ICD10CM|Poisoning by drugs affecting uric acid metab, acc, init|Poisoning by drugs affecting uric acid metab, acc, init +C2883630|T037|PT|T50.4X1A|ICD10CM|Poisoning by drugs affecting uric acid metabolism, accidental (unintentional), initial encounter|Poisoning by drugs affecting uric acid metabolism, accidental (unintentional), initial encounter +C2883631|T037|AB|T50.4X1D|ICD10CM|Poisoning by drugs affecting uric acid metab, acc, subs|Poisoning by drugs affecting uric acid metab, acc, subs +C2883631|T037|PT|T50.4X1D|ICD10CM|Poisoning by drugs affecting uric acid metabolism, accidental (unintentional), subsequent encounter|Poisoning by drugs affecting uric acid metabolism, accidental (unintentional), subsequent encounter +C2883632|T037|AB|T50.4X1S|ICD10CM|Poisoning by drugs affecting uric acid metab, acc, sequela|Poisoning by drugs affecting uric acid metab, acc, sequela +C2883632|T037|PT|T50.4X1S|ICD10CM|Poisoning by drugs affecting uric acid metabolism, accidental (unintentional), sequela|Poisoning by drugs affecting uric acid metabolism, accidental (unintentional), sequela +C2883633|T037|HT|T50.4X2|ICD10CM|Poisoning by drugs affecting uric acid metabolism, intentional self-harm|Poisoning by drugs affecting uric acid metabolism, intentional self-harm +C2883633|T037|AB|T50.4X2|ICD10CM|Poisoning by drugs affecting uric acid metabolism, self-harm|Poisoning by drugs affecting uric acid metabolism, self-harm +C2883634|T037|AB|T50.4X2A|ICD10CM|Poisoning by drugs aff uric acid metab, self-harm, init|Poisoning by drugs aff uric acid metab, self-harm, init +C2883634|T037|PT|T50.4X2A|ICD10CM|Poisoning by drugs affecting uric acid metabolism, intentional self-harm, initial encounter|Poisoning by drugs affecting uric acid metabolism, intentional self-harm, initial encounter +C2883635|T037|AB|T50.4X2D|ICD10CM|Poisoning by drugs aff uric acid metab, self-harm, subs|Poisoning by drugs aff uric acid metab, self-harm, subs +C2883635|T037|PT|T50.4X2D|ICD10CM|Poisoning by drugs affecting uric acid metabolism, intentional self-harm, subsequent encounter|Poisoning by drugs affecting uric acid metabolism, intentional self-harm, subsequent encounter +C2883636|T037|AB|T50.4X2S|ICD10CM|Poisoning by drugs aff uric acid metab, self-harm, sequela|Poisoning by drugs aff uric acid metab, self-harm, sequela +C2883636|T037|PT|T50.4X2S|ICD10CM|Poisoning by drugs affecting uric acid metabolism, intentional self-harm, sequela|Poisoning by drugs affecting uric acid metabolism, intentional self-harm, sequela +C2883637|T037|AB|T50.4X3|ICD10CM|Poisoning by drugs affecting uric acid metabolism, assault|Poisoning by drugs affecting uric acid metabolism, assault +C2883637|T037|HT|T50.4X3|ICD10CM|Poisoning by drugs affecting uric acid metabolism, assault|Poisoning by drugs affecting uric acid metabolism, assault +C2883638|T037|AB|T50.4X3A|ICD10CM|Poisoning by drugs affecting uric acid metab, assault, init|Poisoning by drugs affecting uric acid metab, assault, init +C2883638|T037|PT|T50.4X3A|ICD10CM|Poisoning by drugs affecting uric acid metabolism, assault, initial encounter|Poisoning by drugs affecting uric acid metabolism, assault, initial encounter +C2883639|T037|AB|T50.4X3D|ICD10CM|Poisoning by drugs affecting uric acid metab, assault, subs|Poisoning by drugs affecting uric acid metab, assault, subs +C2883639|T037|PT|T50.4X3D|ICD10CM|Poisoning by drugs affecting uric acid metabolism, assault, subsequent encounter|Poisoning by drugs affecting uric acid metabolism, assault, subsequent encounter +C2883640|T037|AB|T50.4X3S|ICD10CM|Poisoning by drugs aff uric acid metab, assault, sequela|Poisoning by drugs aff uric acid metab, assault, sequela +C2883640|T037|PT|T50.4X3S|ICD10CM|Poisoning by drugs affecting uric acid metabolism, assault, sequela|Poisoning by drugs affecting uric acid metabolism, assault, sequela +C2883641|T037|AB|T50.4X4|ICD10CM|Poisoning by drugs affecting uric acid metabolism, undet|Poisoning by drugs affecting uric acid metabolism, undet +C2883641|T037|HT|T50.4X4|ICD10CM|Poisoning by drugs affecting uric acid metabolism, undetermined|Poisoning by drugs affecting uric acid metabolism, undetermined +C2883642|T037|AB|T50.4X4A|ICD10CM|Poisoning by drugs affecting uric acid metab, undet, init|Poisoning by drugs affecting uric acid metab, undet, init +C2883642|T037|PT|T50.4X4A|ICD10CM|Poisoning by drugs affecting uric acid metabolism, undetermined, initial encounter|Poisoning by drugs affecting uric acid metabolism, undetermined, initial encounter +C2883643|T037|AB|T50.4X4D|ICD10CM|Poisoning by drugs affecting uric acid metab, undet, subs|Poisoning by drugs affecting uric acid metab, undet, subs +C2883643|T037|PT|T50.4X4D|ICD10CM|Poisoning by drugs affecting uric acid metabolism, undetermined, subsequent encounter|Poisoning by drugs affecting uric acid metabolism, undetermined, subsequent encounter +C2883644|T037|AB|T50.4X4S|ICD10CM|Poisoning by drugs affecting uric acid metab, undet, sequela|Poisoning by drugs affecting uric acid metab, undet, sequela +C2883644|T037|PT|T50.4X4S|ICD10CM|Poisoning by drugs affecting uric acid metabolism, undetermined, sequela|Poisoning by drugs affecting uric acid metabolism, undetermined, sequela +C2883645|T037|AB|T50.4X5|ICD10CM|Adverse effect of drugs affecting uric acid metabolism|Adverse effect of drugs affecting uric acid metabolism +C2883645|T037|HT|T50.4X5|ICD10CM|Adverse effect of drugs affecting uric acid metabolism|Adverse effect of drugs affecting uric acid metabolism +C2883646|T037|AB|T50.4X5A|ICD10CM|Adverse effect of drugs affecting uric acid metabolism, init|Adverse effect of drugs affecting uric acid metabolism, init +C2883646|T037|PT|T50.4X5A|ICD10CM|Adverse effect of drugs affecting uric acid metabolism, initial encounter|Adverse effect of drugs affecting uric acid metabolism, initial encounter +C2883647|T037|AB|T50.4X5D|ICD10CM|Adverse effect of drugs affecting uric acid metabolism, subs|Adverse effect of drugs affecting uric acid metabolism, subs +C2883647|T037|PT|T50.4X5D|ICD10CM|Adverse effect of drugs affecting uric acid metabolism, subsequent encounter|Adverse effect of drugs affecting uric acid metabolism, subsequent encounter +C2883648|T037|AB|T50.4X5S|ICD10CM|Adverse effect of drugs affecting uric acid metab, sequela|Adverse effect of drugs affecting uric acid metab, sequela +C2883648|T037|PT|T50.4X5S|ICD10CM|Adverse effect of drugs affecting uric acid metabolism, sequela|Adverse effect of drugs affecting uric acid metabolism, sequela +C2883649|T037|AB|T50.4X6|ICD10CM|Underdosing of drugs affecting uric acid metabolism|Underdosing of drugs affecting uric acid metabolism +C2883649|T037|HT|T50.4X6|ICD10CM|Underdosing of drugs affecting uric acid metabolism|Underdosing of drugs affecting uric acid metabolism +C2883650|T037|AB|T50.4X6A|ICD10CM|Underdosing of drugs affecting uric acid metabolism, init|Underdosing of drugs affecting uric acid metabolism, init +C2883650|T037|PT|T50.4X6A|ICD10CM|Underdosing of drugs affecting uric acid metabolism, initial encounter|Underdosing of drugs affecting uric acid metabolism, initial encounter +C2883651|T037|AB|T50.4X6D|ICD10CM|Underdosing of drugs affecting uric acid metabolism, subs|Underdosing of drugs affecting uric acid metabolism, subs +C2883651|T037|PT|T50.4X6D|ICD10CM|Underdosing of drugs affecting uric acid metabolism, subsequent encounter|Underdosing of drugs affecting uric acid metabolism, subsequent encounter +C2883652|T037|AB|T50.4X6S|ICD10CM|Underdosing of drugs affecting uric acid metabolism, sequela|Underdosing of drugs affecting uric acid metabolism, sequela +C2883652|T037|PT|T50.4X6S|ICD10CM|Underdosing of drugs affecting uric acid metabolism, sequela|Underdosing of drugs affecting uric acid metabolism, sequela +C2883653|T037|AB|T50.5|ICD10CM|Appetite depressants|Appetite depressants +C0497005|T037|PS|T50.5|ICD10|Appetite depressants|Appetite depressants +C0497005|T037|PX|T50.5|ICD10|Poisoning by appetite depressants|Poisoning by appetite depressants +C2883653|T037|HT|T50.5|ICD10CM|Poisoning by, adverse effect of and underdosing of appetite depressants|Poisoning by, adverse effect of and underdosing of appetite depressants +C2883653|T037|AB|T50.5X|ICD10CM|Appetite depressants|Appetite depressants +C2883653|T037|HT|T50.5X|ICD10CM|Poisoning by, adverse effect of and underdosing of appetite depressants|Poisoning by, adverse effect of and underdosing of appetite depressants +C0497005|T037|ET|T50.5X1|ICD10CM|Poisoning by appetite depressants NOS|Poisoning by appetite depressants NOS +C2083234|T037|AB|T50.5X1|ICD10CM|Poisoning by appetite depressants, accidental|Poisoning by appetite depressants, accidental +C2083234|T037|HT|T50.5X1|ICD10CM|Poisoning by appetite depressants, accidental (unintentional)|Poisoning by appetite depressants, accidental (unintentional) +C2883655|T037|PT|T50.5X1A|ICD10CM|Poisoning by appetite depressants, accidental (unintentional), initial encounter|Poisoning by appetite depressants, accidental (unintentional), initial encounter +C2883655|T037|AB|T50.5X1A|ICD10CM|Poisoning by appetite depressants, accidental, init|Poisoning by appetite depressants, accidental, init +C2883656|T037|PT|T50.5X1D|ICD10CM|Poisoning by appetite depressants, accidental (unintentional), subsequent encounter|Poisoning by appetite depressants, accidental (unintentional), subsequent encounter +C2883656|T037|AB|T50.5X1D|ICD10CM|Poisoning by appetite depressants, accidental, subs|Poisoning by appetite depressants, accidental, subs +C2883657|T037|PT|T50.5X1S|ICD10CM|Poisoning by appetite depressants, accidental (unintentional), sequela|Poisoning by appetite depressants, accidental (unintentional), sequela +C2883657|T037|AB|T50.5X1S|ICD10CM|Poisoning by appetite depressants, accidental, sequela|Poisoning by appetite depressants, accidental, sequela +C2883658|T037|AB|T50.5X2|ICD10CM|Poisoning by appetite depressants, intentional self-harm|Poisoning by appetite depressants, intentional self-harm +C2883658|T037|HT|T50.5X2|ICD10CM|Poisoning by appetite depressants, intentional self-harm|Poisoning by appetite depressants, intentional self-harm +C2883659|T037|PT|T50.5X2A|ICD10CM|Poisoning by appetite depressants, intentional self-harm, initial encounter|Poisoning by appetite depressants, intentional self-harm, initial encounter +C2883659|T037|AB|T50.5X2A|ICD10CM|Poisoning by appetite depressants, self-harm, init|Poisoning by appetite depressants, self-harm, init +C2883660|T037|PT|T50.5X2D|ICD10CM|Poisoning by appetite depressants, intentional self-harm, subsequent encounter|Poisoning by appetite depressants, intentional self-harm, subsequent encounter +C2883660|T037|AB|T50.5X2D|ICD10CM|Poisoning by appetite depressants, self-harm, subs|Poisoning by appetite depressants, self-harm, subs +C2883661|T037|PT|T50.5X2S|ICD10CM|Poisoning by appetite depressants, intentional self-harm, sequela|Poisoning by appetite depressants, intentional self-harm, sequela +C2883661|T037|AB|T50.5X2S|ICD10CM|Poisoning by appetite depressants, self-harm, sequela|Poisoning by appetite depressants, self-harm, sequela +C2883662|T037|AB|T50.5X3|ICD10CM|Poisoning by appetite depressants, assault|Poisoning by appetite depressants, assault +C2883662|T037|HT|T50.5X3|ICD10CM|Poisoning by appetite depressants, assault|Poisoning by appetite depressants, assault +C2883663|T037|AB|T50.5X3A|ICD10CM|Poisoning by appetite depressants, assault, init encntr|Poisoning by appetite depressants, assault, init encntr +C2883663|T037|PT|T50.5X3A|ICD10CM|Poisoning by appetite depressants, assault, initial encounter|Poisoning by appetite depressants, assault, initial encounter +C2883664|T037|AB|T50.5X3D|ICD10CM|Poisoning by appetite depressants, assault, subs encntr|Poisoning by appetite depressants, assault, subs encntr +C2883664|T037|PT|T50.5X3D|ICD10CM|Poisoning by appetite depressants, assault, subsequent encounter|Poisoning by appetite depressants, assault, subsequent encounter +C2883665|T037|AB|T50.5X3S|ICD10CM|Poisoning by appetite depressants, assault, sequela|Poisoning by appetite depressants, assault, sequela +C2883665|T037|PT|T50.5X3S|ICD10CM|Poisoning by appetite depressants, assault, sequela|Poisoning by appetite depressants, assault, sequela +C2883666|T037|AB|T50.5X4|ICD10CM|Poisoning by appetite depressants, undetermined|Poisoning by appetite depressants, undetermined +C2883666|T037|HT|T50.5X4|ICD10CM|Poisoning by appetite depressants, undetermined|Poisoning by appetite depressants, undetermined +C2883667|T037|AB|T50.5X4A|ICD10CM|Poisoning by appetite depressants, undetermined, init encntr|Poisoning by appetite depressants, undetermined, init encntr +C2883667|T037|PT|T50.5X4A|ICD10CM|Poisoning by appetite depressants, undetermined, initial encounter|Poisoning by appetite depressants, undetermined, initial encounter +C2883668|T037|AB|T50.5X4D|ICD10CM|Poisoning by appetite depressants, undetermined, subs encntr|Poisoning by appetite depressants, undetermined, subs encntr +C2883668|T037|PT|T50.5X4D|ICD10CM|Poisoning by appetite depressants, undetermined, subsequent encounter|Poisoning by appetite depressants, undetermined, subsequent encounter +C2883669|T037|AB|T50.5X4S|ICD10CM|Poisoning by appetite depressants, undetermined, sequela|Poisoning by appetite depressants, undetermined, sequela +C2883669|T037|PT|T50.5X4S|ICD10CM|Poisoning by appetite depressants, undetermined, sequela|Poisoning by appetite depressants, undetermined, sequela +C2198268|T046|AB|T50.5X5|ICD10CM|Adverse effect of appetite depressants|Adverse effect of appetite depressants +C2198268|T046|HT|T50.5X5|ICD10CM|Adverse effect of appetite depressants|Adverse effect of appetite depressants +C2883670|T037|AB|T50.5X5A|ICD10CM|Adverse effect of appetite depressants, initial encounter|Adverse effect of appetite depressants, initial encounter +C2883670|T037|PT|T50.5X5A|ICD10CM|Adverse effect of appetite depressants, initial encounter|Adverse effect of appetite depressants, initial encounter +C2883671|T037|AB|T50.5X5D|ICD10CM|Adverse effect of appetite depressants, subsequent encounter|Adverse effect of appetite depressants, subsequent encounter +C2883671|T037|PT|T50.5X5D|ICD10CM|Adverse effect of appetite depressants, subsequent encounter|Adverse effect of appetite depressants, subsequent encounter +C2883672|T037|AB|T50.5X5S|ICD10CM|Adverse effect of appetite depressants, sequela|Adverse effect of appetite depressants, sequela +C2883672|T037|PT|T50.5X5S|ICD10CM|Adverse effect of appetite depressants, sequela|Adverse effect of appetite depressants, sequela +C2883673|T033|HT|T50.5X6|ICD10CM|Underdosing of appetite depressants|Underdosing of appetite depressants +C2883673|T033|AB|T50.5X6|ICD10CM|Underdosing of appetite depressants|Underdosing of appetite depressants +C2883674|T037|AB|T50.5X6A|ICD10CM|Underdosing of appetite depressants, initial encounter|Underdosing of appetite depressants, initial encounter +C2883674|T037|PT|T50.5X6A|ICD10CM|Underdosing of appetite depressants, initial encounter|Underdosing of appetite depressants, initial encounter +C2883675|T037|AB|T50.5X6D|ICD10CM|Underdosing of appetite depressants, subsequent encounter|Underdosing of appetite depressants, subsequent encounter +C2883675|T037|PT|T50.5X6D|ICD10CM|Underdosing of appetite depressants, subsequent encounter|Underdosing of appetite depressants, subsequent encounter +C2883676|T037|AB|T50.5X6S|ICD10CM|Underdosing of appetite depressants, sequela|Underdosing of appetite depressants, sequela +C2883676|T037|PT|T50.5X6S|ICD10CM|Underdosing of appetite depressants, sequela|Underdosing of appetite depressants, sequela +C2883678|T037|AB|T50.6|ICD10CM|Antidotes and chelating agents|Antidotes and chelating agents +C0302407|T037|PS|T50.6|ICD10|Antidotes and chelating agents, not elsewhere classified|Antidotes and chelating agents, not elsewhere classified +C0302407|T037|PX|T50.6|ICD10|Poisoning by antidotes and chelating agents, not elsewhere classified|Poisoning by antidotes and chelating agents, not elsewhere classified +C2883677|T037|ET|T50.6|ICD10CM|Poisoning by, adverse effect of and underdosing of alcohol deterrents|Poisoning by, adverse effect of and underdosing of alcohol deterrents +C2883678|T037|HT|T50.6|ICD10CM|Poisoning by, adverse effect of and underdosing of antidotes and chelating agents|Poisoning by, adverse effect of and underdosing of antidotes and chelating agents +C2883678|T037|AB|T50.6X|ICD10CM|Antidotes and chelating agents|Antidotes and chelating agents +C2883678|T037|HT|T50.6X|ICD10CM|Poisoning by, adverse effect of and underdosing of antidotes and chelating agents|Poisoning by, adverse effect of and underdosing of antidotes and chelating agents +C0568753|T037|ET|T50.6X1|ICD10CM|Poisoning by antidotes and chelating agents NOS|Poisoning by antidotes and chelating agents NOS +C2883679|T037|AB|T50.6X1|ICD10CM|Poisoning by antidotes and chelating agents, accidental|Poisoning by antidotes and chelating agents, accidental +C2883679|T037|HT|T50.6X1|ICD10CM|Poisoning by antidotes and chelating agents, accidental (unintentional)|Poisoning by antidotes and chelating agents, accidental (unintentional) +C2883680|T037|AB|T50.6X1A|ICD10CM|Poisoning by antidotes and chelating agents, acc, init|Poisoning by antidotes and chelating agents, acc, init +C2883680|T037|PT|T50.6X1A|ICD10CM|Poisoning by antidotes and chelating agents, accidental (unintentional), initial encounter|Poisoning by antidotes and chelating agents, accidental (unintentional), initial encounter +C2883681|T037|AB|T50.6X1D|ICD10CM|Poisoning by antidotes and chelating agents, acc, subs|Poisoning by antidotes and chelating agents, acc, subs +C2883681|T037|PT|T50.6X1D|ICD10CM|Poisoning by antidotes and chelating agents, accidental (unintentional), subsequent encounter|Poisoning by antidotes and chelating agents, accidental (unintentional), subsequent encounter +C2883682|T037|AB|T50.6X1S|ICD10CM|Poisoning by antidotes and chelating agents, acc, sequela|Poisoning by antidotes and chelating agents, acc, sequela +C2883682|T037|PT|T50.6X1S|ICD10CM|Poisoning by antidotes and chelating agents, accidental (unintentional), sequela|Poisoning by antidotes and chelating agents, accidental (unintentional), sequela +C2883683|T037|HT|T50.6X2|ICD10CM|Poisoning by antidotes and chelating agents, intentional self-harm|Poisoning by antidotes and chelating agents, intentional self-harm +C2883683|T037|AB|T50.6X2|ICD10CM|Poisoning by antidotes and chelating agents, self-harm|Poisoning by antidotes and chelating agents, self-harm +C2883684|T037|PT|T50.6X2A|ICD10CM|Poisoning by antidotes and chelating agents, intentional self-harm, initial encounter|Poisoning by antidotes and chelating agents, intentional self-harm, initial encounter +C2883684|T037|AB|T50.6X2A|ICD10CM|Poisoning by antidotes and chelating agents, self-harm, init|Poisoning by antidotes and chelating agents, self-harm, init +C2883685|T037|PT|T50.6X2D|ICD10CM|Poisoning by antidotes and chelating agents, intentional self-harm, subsequent encounter|Poisoning by antidotes and chelating agents, intentional self-harm, subsequent encounter +C2883685|T037|AB|T50.6X2D|ICD10CM|Poisoning by antidotes and chelating agents, self-harm, subs|Poisoning by antidotes and chelating agents, self-harm, subs +C2883686|T037|AB|T50.6X2S|ICD10CM|Poisn by antidotes and chelating agents, self-harm, sequela|Poisn by antidotes and chelating agents, self-harm, sequela +C2883686|T037|PT|T50.6X2S|ICD10CM|Poisoning by antidotes and chelating agents, intentional self-harm, sequela|Poisoning by antidotes and chelating agents, intentional self-harm, sequela +C2883687|T037|AB|T50.6X3|ICD10CM|Poisoning by antidotes and chelating agents, assault|Poisoning by antidotes and chelating agents, assault +C2883687|T037|HT|T50.6X3|ICD10CM|Poisoning by antidotes and chelating agents, assault|Poisoning by antidotes and chelating agents, assault +C2883688|T037|AB|T50.6X3A|ICD10CM|Poisoning by antidotes and chelating agents, assault, init|Poisoning by antidotes and chelating agents, assault, init +C2883688|T037|PT|T50.6X3A|ICD10CM|Poisoning by antidotes and chelating agents, assault, initial encounter|Poisoning by antidotes and chelating agents, assault, initial encounter +C2883689|T037|AB|T50.6X3D|ICD10CM|Poisoning by antidotes and chelating agents, assault, subs|Poisoning by antidotes and chelating agents, assault, subs +C2883689|T037|PT|T50.6X3D|ICD10CM|Poisoning by antidotes and chelating agents, assault, subsequent encounter|Poisoning by antidotes and chelating agents, assault, subsequent encounter +C2883690|T037|AB|T50.6X3S|ICD10CM|Poisn by antidotes and chelating agents, assault, sequela|Poisn by antidotes and chelating agents, assault, sequela +C2883690|T037|PT|T50.6X3S|ICD10CM|Poisoning by antidotes and chelating agents, assault, sequela|Poisoning by antidotes and chelating agents, assault, sequela +C2883691|T037|AB|T50.6X4|ICD10CM|Poisoning by antidotes and chelating agents, undetermined|Poisoning by antidotes and chelating agents, undetermined +C2883691|T037|HT|T50.6X4|ICD10CM|Poisoning by antidotes and chelating agents, undetermined|Poisoning by antidotes and chelating agents, undetermined +C2883692|T037|AB|T50.6X4A|ICD10CM|Poisoning by antidotes and chelating agents, undet, init|Poisoning by antidotes and chelating agents, undet, init +C2883692|T037|PT|T50.6X4A|ICD10CM|Poisoning by antidotes and chelating agents, undetermined, initial encounter|Poisoning by antidotes and chelating agents, undetermined, initial encounter +C2883693|T037|AB|T50.6X4D|ICD10CM|Poisoning by antidotes and chelating agents, undet, subs|Poisoning by antidotes and chelating agents, undet, subs +C2883693|T037|PT|T50.6X4D|ICD10CM|Poisoning by antidotes and chelating agents, undetermined, subsequent encounter|Poisoning by antidotes and chelating agents, undetermined, subsequent encounter +C2883694|T037|AB|T50.6X4S|ICD10CM|Poisoning by antidotes and chelating agents, undet, sequela|Poisoning by antidotes and chelating agents, undet, sequela +C2883694|T037|PT|T50.6X4S|ICD10CM|Poisoning by antidotes and chelating agents, undetermined, sequela|Poisoning by antidotes and chelating agents, undetermined, sequela +C2883695|T037|AB|T50.6X5|ICD10CM|Adverse effect of antidotes and chelating agents|Adverse effect of antidotes and chelating agents +C2883695|T037|HT|T50.6X5|ICD10CM|Adverse effect of antidotes and chelating agents|Adverse effect of antidotes and chelating agents +C2883696|T037|AB|T50.6X5A|ICD10CM|Adverse effect of antidotes and chelating agents, init|Adverse effect of antidotes and chelating agents, init +C2883696|T037|PT|T50.6X5A|ICD10CM|Adverse effect of antidotes and chelating agents, initial encounter|Adverse effect of antidotes and chelating agents, initial encounter +C2883697|T037|AB|T50.6X5D|ICD10CM|Adverse effect of antidotes and chelating agents, subs|Adverse effect of antidotes and chelating agents, subs +C2883697|T037|PT|T50.6X5D|ICD10CM|Adverse effect of antidotes and chelating agents, subsequent encounter|Adverse effect of antidotes and chelating agents, subsequent encounter +C2883698|T037|AB|T50.6X5S|ICD10CM|Adverse effect of antidotes and chelating agents, sequela|Adverse effect of antidotes and chelating agents, sequela +C2883698|T037|PT|T50.6X5S|ICD10CM|Adverse effect of antidotes and chelating agents, sequela|Adverse effect of antidotes and chelating agents, sequela +C2883699|T037|AB|T50.6X6|ICD10CM|Underdosing of antidotes and chelating agents|Underdosing of antidotes and chelating agents +C2883699|T037|HT|T50.6X6|ICD10CM|Underdosing of antidotes and chelating agents|Underdosing of antidotes and chelating agents +C2883700|T037|AB|T50.6X6A|ICD10CM|Underdosing of antidotes and chelating agents, init encntr|Underdosing of antidotes and chelating agents, init encntr +C2883700|T037|PT|T50.6X6A|ICD10CM|Underdosing of antidotes and chelating agents, initial encounter|Underdosing of antidotes and chelating agents, initial encounter +C2883701|T037|AB|T50.6X6D|ICD10CM|Underdosing of antidotes and chelating agents, subs encntr|Underdosing of antidotes and chelating agents, subs encntr +C2883701|T037|PT|T50.6X6D|ICD10CM|Underdosing of antidotes and chelating agents, subsequent encounter|Underdosing of antidotes and chelating agents, subsequent encounter +C2883702|T037|AB|T50.6X6S|ICD10CM|Underdosing of antidotes and chelating agents, sequela|Underdosing of antidotes and chelating agents, sequela +C2883702|T037|PT|T50.6X6S|ICD10CM|Underdosing of antidotes and chelating agents, sequela|Underdosing of antidotes and chelating agents, sequela +C2883703|T037|AB|T50.7|ICD10CM|Analeptics and opioid receptor antagonists|Analeptics and opioid receptor antagonists +C0497006|T037|PS|T50.7|ICD10|Analeptics and opioid receptor antagonists|Analeptics and opioid receptor antagonists +C0497006|T037|PX|T50.7|ICD10|Poisoning by analeptics and opioid receptor antagonists|Poisoning by analeptics and opioid receptor antagonists +C2883703|T037|HT|T50.7|ICD10CM|Poisoning by, adverse effect of and underdosing of analeptics and opioid receptor antagonists|Poisoning by, adverse effect of and underdosing of analeptics and opioid receptor antagonists +C2883703|T037|AB|T50.7X|ICD10CM|Analeptics and opioid receptor antagonists|Analeptics and opioid receptor antagonists +C2883703|T037|HT|T50.7X|ICD10CM|Poisoning by, adverse effect of and underdosing of analeptics and opioid receptor antagonists|Poisoning by, adverse effect of and underdosing of analeptics and opioid receptor antagonists +C2883704|T037|AB|T50.7X1|ICD10CM|Poisoning by analeptics and opioid receptor antag, acc|Poisoning by analeptics and opioid receptor antag, acc +C0497006|T037|ET|T50.7X1|ICD10CM|Poisoning by analeptics and opioid receptor antagonists NOS|Poisoning by analeptics and opioid receptor antagonists NOS +C2883704|T037|HT|T50.7X1|ICD10CM|Poisoning by analeptics and opioid receptor antagonists, accidental (unintentional)|Poisoning by analeptics and opioid receptor antagonists, accidental (unintentional) +C2883705|T037|AB|T50.7X1A|ICD10CM|Poisn by analeptics and opioid receptor antag, acc, init|Poisn by analeptics and opioid receptor antag, acc, init +C2883706|T037|AB|T50.7X1D|ICD10CM|Poisn by analeptics and opioid receptor antag, acc, subs|Poisn by analeptics and opioid receptor antag, acc, subs +C2883707|T037|AB|T50.7X1S|ICD10CM|Poisn by analeptics and opioid receptor antag, acc, sequela|Poisn by analeptics and opioid receptor antag, acc, sequela +C2883707|T037|PT|T50.7X1S|ICD10CM|Poisoning by analeptics and opioid receptor antagonists, accidental (unintentional), sequela|Poisoning by analeptics and opioid receptor antagonists, accidental (unintentional), sequela +C2883708|T037|AB|T50.7X2|ICD10CM|Poisoning by analeptics and opioid receptor antag, self-harm|Poisoning by analeptics and opioid receptor antag, self-harm +C2883708|T037|HT|T50.7X2|ICD10CM|Poisoning by analeptics and opioid receptor antagonists, intentional self-harm|Poisoning by analeptics and opioid receptor antagonists, intentional self-harm +C2883709|T037|AB|T50.7X2A|ICD10CM|Poisn by analeptics and opioid receptor antag, slf-hrm, init|Poisn by analeptics and opioid receptor antag, slf-hrm, init +C2883709|T037|PT|T50.7X2A|ICD10CM|Poisoning by analeptics and opioid receptor antagonists, intentional self-harm, initial encounter|Poisoning by analeptics and opioid receptor antagonists, intentional self-harm, initial encounter +C2883710|T037|AB|T50.7X2D|ICD10CM|Poisn by analeptics and opioid receptor antag, slf-hrm, subs|Poisn by analeptics and opioid receptor antag, slf-hrm, subs +C2883710|T037|PT|T50.7X2D|ICD10CM|Poisoning by analeptics and opioid receptor antagonists, intentional self-harm, subsequent encounter|Poisoning by analeptics and opioid receptor antagonists, intentional self-harm, subsequent encounter +C2883711|T037|AB|T50.7X2S|ICD10CM|Poisn by analeptics and opioid receptor antag, slf-hrm, sqla|Poisn by analeptics and opioid receptor antag, slf-hrm, sqla +C2883711|T037|PT|T50.7X2S|ICD10CM|Poisoning by analeptics and opioid receptor antagonists, intentional self-harm, sequela|Poisoning by analeptics and opioid receptor antagonists, intentional self-harm, sequela +C2883712|T037|AB|T50.7X3|ICD10CM|Poisoning by analeptics and opioid receptor antag, assault|Poisoning by analeptics and opioid receptor antag, assault +C2883712|T037|HT|T50.7X3|ICD10CM|Poisoning by analeptics and opioid receptor antagonists, assault|Poisoning by analeptics and opioid receptor antagonists, assault +C2883713|T037|AB|T50.7X3A|ICD10CM|Poisn by analeptics and opioid receptor antag, assault, init|Poisn by analeptics and opioid receptor antag, assault, init +C2883713|T037|PT|T50.7X3A|ICD10CM|Poisoning by analeptics and opioid receptor antagonists, assault, initial encounter|Poisoning by analeptics and opioid receptor antagonists, assault, initial encounter +C2883714|T037|AB|T50.7X3D|ICD10CM|Poisn by analeptics and opioid receptor antag, assault, subs|Poisn by analeptics and opioid receptor antag, assault, subs +C2883714|T037|PT|T50.7X3D|ICD10CM|Poisoning by analeptics and opioid receptor antagonists, assault, subsequent encounter|Poisoning by analeptics and opioid receptor antagonists, assault, subsequent encounter +C2883715|T037|AB|T50.7X3S|ICD10CM|Poisn by analeptics and opioid receptor antag, asslt, sqla|Poisn by analeptics and opioid receptor antag, asslt, sqla +C2883715|T037|PT|T50.7X3S|ICD10CM|Poisoning by analeptics and opioid receptor antagonists, assault, sequela|Poisoning by analeptics and opioid receptor antagonists, assault, sequela +C2883716|T037|AB|T50.7X4|ICD10CM|Poisoning by analeptics and opioid receptor antag, undet|Poisoning by analeptics and opioid receptor antag, undet +C2883716|T037|HT|T50.7X4|ICD10CM|Poisoning by analeptics and opioid receptor antagonists, undetermined|Poisoning by analeptics and opioid receptor antagonists, undetermined +C2883717|T037|AB|T50.7X4A|ICD10CM|Poisn by analeptics and opioid receptor antag, undet, init|Poisn by analeptics and opioid receptor antag, undet, init +C2883717|T037|PT|T50.7X4A|ICD10CM|Poisoning by analeptics and opioid receptor antagonists, undetermined, initial encounter|Poisoning by analeptics and opioid receptor antagonists, undetermined, initial encounter +C2883718|T037|AB|T50.7X4D|ICD10CM|Poisn by analeptics and opioid receptor antag, undet, subs|Poisn by analeptics and opioid receptor antag, undet, subs +C2883718|T037|PT|T50.7X4D|ICD10CM|Poisoning by analeptics and opioid receptor antagonists, undetermined, subsequent encounter|Poisoning by analeptics and opioid receptor antagonists, undetermined, subsequent encounter +C2883719|T037|AB|T50.7X4S|ICD10CM|Poisn by analeptics and opioid receptor antag, undet, sqla|Poisn by analeptics and opioid receptor antag, undet, sqla +C2883719|T037|PT|T50.7X4S|ICD10CM|Poisoning by analeptics and opioid receptor antagonists, undetermined, sequela|Poisoning by analeptics and opioid receptor antagonists, undetermined, sequela +C2883720|T037|AB|T50.7X5|ICD10CM|Adverse effect of analeptics and opioid receptor antagonists|Adverse effect of analeptics and opioid receptor antagonists +C2883720|T037|HT|T50.7X5|ICD10CM|Adverse effect of analeptics and opioid receptor antagonists|Adverse effect of analeptics and opioid receptor antagonists +C2883721|T037|AB|T50.7X5A|ICD10CM|Adverse effect of analeptics and opioid receptor antag, init|Adverse effect of analeptics and opioid receptor antag, init +C2883721|T037|PT|T50.7X5A|ICD10CM|Adverse effect of analeptics and opioid receptor antagonists, initial encounter|Adverse effect of analeptics and opioid receptor antagonists, initial encounter +C2883722|T037|AB|T50.7X5D|ICD10CM|Adverse effect of analeptics and opioid receptor antag, subs|Adverse effect of analeptics and opioid receptor antag, subs +C2883722|T037|PT|T50.7X5D|ICD10CM|Adverse effect of analeptics and opioid receptor antagonists, subsequent encounter|Adverse effect of analeptics and opioid receptor antagonists, subsequent encounter +C2883723|T037|PT|T50.7X5S|ICD10CM|Adverse effect of analeptics and opioid receptor antagonists, sequela|Adverse effect of analeptics and opioid receptor antagonists, sequela +C2883723|T037|AB|T50.7X5S|ICD10CM|Advrs effect of analeptics and opioid receptor antag, sqla|Advrs effect of analeptics and opioid receptor antag, sqla +C2883724|T037|AB|T50.7X6|ICD10CM|Underdosing of analeptics and opioid receptor antagonists|Underdosing of analeptics and opioid receptor antagonists +C2883724|T037|HT|T50.7X6|ICD10CM|Underdosing of analeptics and opioid receptor antagonists|Underdosing of analeptics and opioid receptor antagonists +C2883725|T037|AB|T50.7X6A|ICD10CM|Underdosing of analeptics and opioid receptor antag, init|Underdosing of analeptics and opioid receptor antag, init +C2883725|T037|PT|T50.7X6A|ICD10CM|Underdosing of analeptics and opioid receptor antagonists, initial encounter|Underdosing of analeptics and opioid receptor antagonists, initial encounter +C2883726|T037|AB|T50.7X6D|ICD10CM|Underdosing of analeptics and opioid receptor antag, subs|Underdosing of analeptics and opioid receptor antag, subs +C2883726|T037|PT|T50.7X6D|ICD10CM|Underdosing of analeptics and opioid receptor antagonists, subsequent encounter|Underdosing of analeptics and opioid receptor antagonists, subsequent encounter +C2883727|T037|AB|T50.7X6S|ICD10CM|Underdosing of analeptics and opioid receptor antag, sequela|Underdosing of analeptics and opioid receptor antag, sequela +C2883727|T037|PT|T50.7X6S|ICD10CM|Underdosing of analeptics and opioid receptor antagonists, sequela|Underdosing of analeptics and opioid receptor antagonists, sequela +C2883728|T037|AB|T50.8|ICD10CM|Diagnostic agents|Diagnostic agents +C0392133|T037|PS|T50.8|ICD10|Diagnostic agents|Diagnostic agents +C0392133|T037|PX|T50.8|ICD10|Poisoning by diagnostic agents|Poisoning by diagnostic agents +C2883728|T037|HT|T50.8|ICD10CM|Poisoning by, adverse effect of and underdosing of diagnostic agents|Poisoning by, adverse effect of and underdosing of diagnostic agents +C2883728|T037|AB|T50.8X|ICD10CM|Diagnostic agents|Diagnostic agents +C2883728|T037|HT|T50.8X|ICD10CM|Poisoning by, adverse effect of and underdosing of diagnostic agents|Poisoning by, adverse effect of and underdosing of diagnostic agents +C0392133|T037|ET|T50.8X1|ICD10CM|Poisoning by diagnostic agents NOS|Poisoning by diagnostic agents NOS +C2883729|T037|AB|T50.8X1|ICD10CM|Poisoning by diagnostic agents, accidental (unintentional)|Poisoning by diagnostic agents, accidental (unintentional) +C2883729|T037|HT|T50.8X1|ICD10CM|Poisoning by diagnostic agents, accidental (unintentional)|Poisoning by diagnostic agents, accidental (unintentional) +C2883730|T037|PT|T50.8X1A|ICD10CM|Poisoning by diagnostic agents, accidental (unintentional), initial encounter|Poisoning by diagnostic agents, accidental (unintentional), initial encounter +C2883730|T037|AB|T50.8X1A|ICD10CM|Poisoning by diagnostic agents, accidental, init|Poisoning by diagnostic agents, accidental, init +C2883731|T037|PT|T50.8X1D|ICD10CM|Poisoning by diagnostic agents, accidental (unintentional), subsequent encounter|Poisoning by diagnostic agents, accidental (unintentional), subsequent encounter +C2883731|T037|AB|T50.8X1D|ICD10CM|Poisoning by diagnostic agents, accidental, subs|Poisoning by diagnostic agents, accidental, subs +C2883732|T037|PT|T50.8X1S|ICD10CM|Poisoning by diagnostic agents, accidental (unintentional), sequela|Poisoning by diagnostic agents, accidental (unintentional), sequela +C2883732|T037|AB|T50.8X1S|ICD10CM|Poisoning by diagnostic agents, accidental, sequela|Poisoning by diagnostic agents, accidental, sequela +C2883733|T037|AB|T50.8X2|ICD10CM|Poisoning by diagnostic agents, intentional self-harm|Poisoning by diagnostic agents, intentional self-harm +C2883733|T037|HT|T50.8X2|ICD10CM|Poisoning by diagnostic agents, intentional self-harm|Poisoning by diagnostic agents, intentional self-harm +C2883734|T037|AB|T50.8X2A|ICD10CM|Poisoning by diagnostic agents, intentional self-harm, init|Poisoning by diagnostic agents, intentional self-harm, init +C2883734|T037|PT|T50.8X2A|ICD10CM|Poisoning by diagnostic agents, intentional self-harm, initial encounter|Poisoning by diagnostic agents, intentional self-harm, initial encounter +C2883735|T037|AB|T50.8X2D|ICD10CM|Poisoning by diagnostic agents, intentional self-harm, subs|Poisoning by diagnostic agents, intentional self-harm, subs +C2883735|T037|PT|T50.8X2D|ICD10CM|Poisoning by diagnostic agents, intentional self-harm, subsequent encounter|Poisoning by diagnostic agents, intentional self-harm, subsequent encounter +C2883736|T037|PT|T50.8X2S|ICD10CM|Poisoning by diagnostic agents, intentional self-harm, sequela|Poisoning by diagnostic agents, intentional self-harm, sequela +C2883736|T037|AB|T50.8X2S|ICD10CM|Poisoning by diagnostic agents, self-harm, sequela|Poisoning by diagnostic agents, self-harm, sequela +C2883737|T037|AB|T50.8X3|ICD10CM|Poisoning by diagnostic agents, assault|Poisoning by diagnostic agents, assault +C2883737|T037|HT|T50.8X3|ICD10CM|Poisoning by diagnostic agents, assault|Poisoning by diagnostic agents, assault +C2883738|T037|AB|T50.8X3A|ICD10CM|Poisoning by diagnostic agents, assault, initial encounter|Poisoning by diagnostic agents, assault, initial encounter +C2883738|T037|PT|T50.8X3A|ICD10CM|Poisoning by diagnostic agents, assault, initial encounter|Poisoning by diagnostic agents, assault, initial encounter +C2883739|T037|AB|T50.8X3D|ICD10CM|Poisoning by diagnostic agents, assault, subs encntr|Poisoning by diagnostic agents, assault, subs encntr +C2883739|T037|PT|T50.8X3D|ICD10CM|Poisoning by diagnostic agents, assault, subsequent encounter|Poisoning by diagnostic agents, assault, subsequent encounter +C2883740|T037|AB|T50.8X3S|ICD10CM|Poisoning by diagnostic agents, assault, sequela|Poisoning by diagnostic agents, assault, sequela +C2883740|T037|PT|T50.8X3S|ICD10CM|Poisoning by diagnostic agents, assault, sequela|Poisoning by diagnostic agents, assault, sequela +C2883741|T037|AB|T50.8X4|ICD10CM|Poisoning by diagnostic agents, undetermined|Poisoning by diagnostic agents, undetermined +C2883741|T037|HT|T50.8X4|ICD10CM|Poisoning by diagnostic agents, undetermined|Poisoning by diagnostic agents, undetermined +C2883742|T037|AB|T50.8X4A|ICD10CM|Poisoning by diagnostic agents, undetermined, init encntr|Poisoning by diagnostic agents, undetermined, init encntr +C2883742|T037|PT|T50.8X4A|ICD10CM|Poisoning by diagnostic agents, undetermined, initial encounter|Poisoning by diagnostic agents, undetermined, initial encounter +C2883743|T037|AB|T50.8X4D|ICD10CM|Poisoning by diagnostic agents, undetermined, subs encntr|Poisoning by diagnostic agents, undetermined, subs encntr +C2883743|T037|PT|T50.8X4D|ICD10CM|Poisoning by diagnostic agents, undetermined, subsequent encounter|Poisoning by diagnostic agents, undetermined, subsequent encounter +C2883744|T037|AB|T50.8X4S|ICD10CM|Poisoning by diagnostic agents, undetermined, sequela|Poisoning by diagnostic agents, undetermined, sequela +C2883744|T037|PT|T50.8X4S|ICD10CM|Poisoning by diagnostic agents, undetermined, sequela|Poisoning by diagnostic agents, undetermined, sequela +C2883745|T037|AB|T50.8X5|ICD10CM|Adverse effect of diagnostic agents|Adverse effect of diagnostic agents +C2883745|T037|HT|T50.8X5|ICD10CM|Adverse effect of diagnostic agents|Adverse effect of diagnostic agents +C2883746|T037|AB|T50.8X5A|ICD10CM|Adverse effect of diagnostic agents, initial encounter|Adverse effect of diagnostic agents, initial encounter +C2883746|T037|PT|T50.8X5A|ICD10CM|Adverse effect of diagnostic agents, initial encounter|Adverse effect of diagnostic agents, initial encounter +C2883747|T037|AB|T50.8X5D|ICD10CM|Adverse effect of diagnostic agents, subsequent encounter|Adverse effect of diagnostic agents, subsequent encounter +C2883747|T037|PT|T50.8X5D|ICD10CM|Adverse effect of diagnostic agents, subsequent encounter|Adverse effect of diagnostic agents, subsequent encounter +C2883748|T037|AB|T50.8X5S|ICD10CM|Adverse effect of diagnostic agents, sequela|Adverse effect of diagnostic agents, sequela +C2883748|T037|PT|T50.8X5S|ICD10CM|Adverse effect of diagnostic agents, sequela|Adverse effect of diagnostic agents, sequela +C2883749|T037|AB|T50.8X6|ICD10CM|Underdosing of diagnostic agents|Underdosing of diagnostic agents +C2883749|T037|HT|T50.8X6|ICD10CM|Underdosing of diagnostic agents|Underdosing of diagnostic agents +C2883750|T037|AB|T50.8X6A|ICD10CM|Underdosing of diagnostic agents, initial encounter|Underdosing of diagnostic agents, initial encounter +C2883750|T037|PT|T50.8X6A|ICD10CM|Underdosing of diagnostic agents, initial encounter|Underdosing of diagnostic agents, initial encounter +C2883751|T037|AB|T50.8X6D|ICD10CM|Underdosing of diagnostic agents, subsequent encounter|Underdosing of diagnostic agents, subsequent encounter +C2883751|T037|PT|T50.8X6D|ICD10CM|Underdosing of diagnostic agents, subsequent encounter|Underdosing of diagnostic agents, subsequent encounter +C2883752|T037|AB|T50.8X6S|ICD10CM|Underdosing of diagnostic agents, sequela|Underdosing of diagnostic agents, sequela +C2883752|T037|PT|T50.8X6S|ICD10CM|Underdosing of diagnostic agents, sequela|Underdosing of diagnostic agents, sequela +C2883753|T037|AB|T50.9|ICD10CM|And unsp drugs, medicaments and biological substances|And unsp drugs, medicaments and biological substances +C0497007|T037|PS|T50.9|ICD10|Other and unspecified drugs, medicaments and biological substances|Other and unspecified drugs, medicaments and biological substances +C0497007|T037|PX|T50.9|ICD10|Poisoning by other and unspecified drugs, medicaments and biological substances|Poisoning by other and unspecified drugs, medicaments and biological substances +C2883754|T037|AB|T50.90|ICD10CM|Unsp drugs, medicaments and biological substances|Unsp drugs, medicaments and biological substances +C2883755|T037|AB|T50.901|ICD10CM|Poisoning by unsp drug/meds/biol subst, accidental|Poisoning by unsp drug/meds/biol subst, accidental +C2883755|T037|HT|T50.901|ICD10CM|Poisoning by unspecified drugs, medicaments and biological substances, accidental (unintentional)|Poisoning by unspecified drugs, medicaments and biological substances, accidental (unintentional) +C2883756|T037|AB|T50.901A|ICD10CM|Poisoning by unsp drug/meds/biol subst, accidental, init|Poisoning by unsp drug/meds/biol subst, accidental, init +C2883757|T037|AB|T50.901D|ICD10CM|Poisoning by unsp drug/meds/biol subst, accidental, subs|Poisoning by unsp drug/meds/biol subst, accidental, subs +C2883758|T037|AB|T50.901S|ICD10CM|Poisoning by unsp drug/meds/biol subst, accidental, sequela|Poisoning by unsp drug/meds/biol subst, accidental, sequela +C2883759|T037|AB|T50.902|ICD10CM|Poisoning by unsp drug/meds/biol subst, self-harm|Poisoning by unsp drug/meds/biol subst, self-harm +C2883759|T037|HT|T50.902|ICD10CM|Poisoning by unspecified drugs, medicaments and biological substances, intentional self-harm|Poisoning by unspecified drugs, medicaments and biological substances, intentional self-harm +C2883760|T037|AB|T50.902A|ICD10CM|Poisoning by unsp drug/meds/biol subst, self-harm, init|Poisoning by unsp drug/meds/biol subst, self-harm, init +C2883761|T037|AB|T50.902D|ICD10CM|Poisoning by unsp drug/meds/biol subst, self-harm, subs|Poisoning by unsp drug/meds/biol subst, self-harm, subs +C2883762|T037|AB|T50.902S|ICD10CM|Poisoning by unsp drug/meds/biol subst, self-harm, sequela|Poisoning by unsp drug/meds/biol subst, self-harm, sequela +C2883763|T037|AB|T50.903|ICD10CM|Poisoning by unsp drug/meds/biol subst, assault|Poisoning by unsp drug/meds/biol subst, assault +C2883763|T037|HT|T50.903|ICD10CM|Poisoning by unspecified drugs, medicaments and biological substances, assault|Poisoning by unspecified drugs, medicaments and biological substances, assault +C2883764|T037|AB|T50.903A|ICD10CM|Poisoning by unsp drug/meds/biol subst, assault, init|Poisoning by unsp drug/meds/biol subst, assault, init +C2883764|T037|PT|T50.903A|ICD10CM|Poisoning by unspecified drugs, medicaments and biological substances, assault, initial encounter|Poisoning by unspecified drugs, medicaments and biological substances, assault, initial encounter +C2883765|T037|AB|T50.903D|ICD10CM|Poisoning by unsp drug/meds/biol subst, assault, subs|Poisoning by unsp drug/meds/biol subst, assault, subs +C2883765|T037|PT|T50.903D|ICD10CM|Poisoning by unspecified drugs, medicaments and biological substances, assault, subsequent encounter|Poisoning by unspecified drugs, medicaments and biological substances, assault, subsequent encounter +C2883766|T037|AB|T50.903S|ICD10CM|Poisoning by unsp drug/meds/biol subst, assault, sequela|Poisoning by unsp drug/meds/biol subst, assault, sequela +C2883766|T037|PT|T50.903S|ICD10CM|Poisoning by unspecified drugs, medicaments and biological substances, assault, sequela|Poisoning by unspecified drugs, medicaments and biological substances, assault, sequela +C2883767|T037|AB|T50.904|ICD10CM|Poisoning by unsp drug/meds/biol subst, undetermined|Poisoning by unsp drug/meds/biol subst, undetermined +C2883767|T037|HT|T50.904|ICD10CM|Poisoning by unspecified drugs, medicaments and biological substances, undetermined|Poisoning by unspecified drugs, medicaments and biological substances, undetermined +C2883768|T037|AB|T50.904A|ICD10CM|Poisoning by unsp drug/meds/biol subst, undetermined, init|Poisoning by unsp drug/meds/biol subst, undetermined, init +C2883769|T037|AB|T50.904D|ICD10CM|Poisoning by unsp drug/meds/biol subst, undetermined, subs|Poisoning by unsp drug/meds/biol subst, undetermined, subs +C2883770|T037|AB|T50.904S|ICD10CM|Poisoning by unsp drug/meds/biol subst, undet, sequela|Poisoning by unsp drug/meds/biol subst, undet, sequela +C2883770|T037|PT|T50.904S|ICD10CM|Poisoning by unspecified drugs, medicaments and biological substances, undetermined, sequela|Poisoning by unspecified drugs, medicaments and biological substances, undetermined, sequela +C2883771|T037|AB|T50.905|ICD10CM|Adverse effect of unsp drug/meds/biol subst|Adverse effect of unsp drug/meds/biol subst +C2883771|T037|HT|T50.905|ICD10CM|Adverse effect of unspecified drugs, medicaments and biological substances|Adverse effect of unspecified drugs, medicaments and biological substances +C2883772|T037|AB|T50.905A|ICD10CM|Adverse effect of unsp drug/meds/biol subst, init|Adverse effect of unsp drug/meds/biol subst, init +C2883772|T037|PT|T50.905A|ICD10CM|Adverse effect of unspecified drugs, medicaments and biological substances, initial encounter|Adverse effect of unspecified drugs, medicaments and biological substances, initial encounter +C2883773|T037|AB|T50.905D|ICD10CM|Adverse effect of unsp drug/meds/biol subst, subs|Adverse effect of unsp drug/meds/biol subst, subs +C2883773|T037|PT|T50.905D|ICD10CM|Adverse effect of unspecified drugs, medicaments and biological substances, subsequent encounter|Adverse effect of unspecified drugs, medicaments and biological substances, subsequent encounter +C2883774|T037|AB|T50.905S|ICD10CM|Adverse effect of unsp drug/meds/biol subst, sequela|Adverse effect of unsp drug/meds/biol subst, sequela +C2883774|T037|PT|T50.905S|ICD10CM|Adverse effect of unspecified drugs, medicaments and biological substances, sequela|Adverse effect of unspecified drugs, medicaments and biological substances, sequela +C2883775|T037|AB|T50.906|ICD10CM|Underdosing of unsp drug/meds/biol subst|Underdosing of unsp drug/meds/biol subst +C2883775|T037|HT|T50.906|ICD10CM|Underdosing of unspecified drugs, medicaments and biological substances|Underdosing of unspecified drugs, medicaments and biological substances +C2883776|T037|AB|T50.906A|ICD10CM|Underdosing of unsp drug/meds/biol subst, init|Underdosing of unsp drug/meds/biol subst, init +C2883776|T037|PT|T50.906A|ICD10CM|Underdosing of unspecified drugs, medicaments and biological substances, initial encounter|Underdosing of unspecified drugs, medicaments and biological substances, initial encounter +C2883777|T037|AB|T50.906D|ICD10CM|Underdosing of unsp drug/meds/biol subst, subs|Underdosing of unsp drug/meds/biol subst, subs +C2883777|T037|PT|T50.906D|ICD10CM|Underdosing of unspecified drugs, medicaments and biological substances, subsequent encounter|Underdosing of unspecified drugs, medicaments and biological substances, subsequent encounter +C2883778|T037|AB|T50.906S|ICD10CM|Underdosing of unsp drug/meds/biol subst, sequela|Underdosing of unsp drug/meds/biol subst, sequela +C2883778|T037|PT|T50.906S|ICD10CM|Underdosing of unspecified drugs, medicaments and biological substances, sequela|Underdosing of unspecified drugs, medicaments and biological substances, sequela +C5141166|T037|ET|T50.91|ICD10CM|Multiple drug ingestion NOS|Multiple drug ingestion NOS +C5140966|T037|AB|T50.91|ICD10CM|Multiple unspecified drug/meds/biol subst|Multiple unspecified drug/meds/biol subst +C5140967|T037|AB|T50.911|ICD10CM|Poisoning by multiple unsp drug/meds/biol subst, accidental|Poisoning by multiple unsp drug/meds/biol subst, accidental +C5140968|T037|AB|T50.911A|ICD10CM|Poisoning by multiple unsp drug/meds/biol subst, acc, init|Poisoning by multiple unsp drug/meds/biol subst, acc, init +C5140969|T037|AB|T50.911D|ICD10CM|Poisoning by multiple unsp drug/meds/biol subst, acc, subs|Poisoning by multiple unsp drug/meds/biol subst, acc, subs +C5140970|T037|AB|T50.911S|ICD10CM|Poisn by multiple unsp drug/meds/biol subst, acc, sequela|Poisn by multiple unsp drug/meds/biol subst, acc, sequela +C5140971|T037|AB|T50.912|ICD10CM|Poisoning by multiple unsp drug/meds/biol subst, self-harm|Poisoning by multiple unsp drug/meds/biol subst, self-harm +C5140972|T037|AB|T50.912A|ICD10CM|Poisn by multiple unsp drug/meds/biol subst, self-harm, init|Poisn by multiple unsp drug/meds/biol subst, self-harm, init +C5140973|T037|AB|T50.912D|ICD10CM|Poisn by multiple unsp drug/meds/biol subst, self-harm, subs|Poisn by multiple unsp drug/meds/biol subst, self-harm, subs +C5140974|T037|AB|T50.912S|ICD10CM|Poisn by mult unsp drug/meds/biol subst, slf-hrm, sequela|Poisn by mult unsp drug/meds/biol subst, slf-hrm, sequela +C5140975|T037|AB|T50.913|ICD10CM|Poisoning by multiple unsp drug/meds/biol subst, assault|Poisoning by multiple unsp drug/meds/biol subst, assault +C5140975|T037|HT|T50.913|ICD10CM|Poisoning by multiple unspecified drugs, medicaments and biological substances, assault|Poisoning by multiple unspecified drugs, medicaments and biological substances, assault +C5140976|T037|AB|T50.913A|ICD10CM|Poisn by multiple unsp drug/meds/biol subst, assault, init|Poisn by multiple unsp drug/meds/biol subst, assault, init +C5140977|T037|AB|T50.913D|ICD10CM|Poisn by multiple unsp drug/meds/biol subst, assault, subs|Poisn by multiple unsp drug/meds/biol subst, assault, subs +C5140978|T037|AB|T50.913S|ICD10CM|Poisn by mult unsp drug/meds/biol subst, assault, sequela|Poisn by mult unsp drug/meds/biol subst, assault, sequela +C5140978|T037|PT|T50.913S|ICD10CM|Poisoning by multiple unspecified drugs, medicaments and biological substances, assault, sequela|Poisoning by multiple unspecified drugs, medicaments and biological substances, assault, sequela +C5140979|T037|AB|T50.914|ICD10CM|Poisoning by multiple unsp drug/meds/biol subst, undet|Poisoning by multiple unsp drug/meds/biol subst, undet +C5140979|T037|HT|T50.914|ICD10CM|Poisoning by multiple unspecified drugs, medicaments and biological substances, undetermined|Poisoning by multiple unspecified drugs, medicaments and biological substances, undetermined +C5140980|T037|AB|T50.914A|ICD10CM|Poisoning by multiple unsp drug/meds/biol subst, undet, init|Poisoning by multiple unsp drug/meds/biol subst, undet, init +C5140981|T037|AB|T50.914D|ICD10CM|Poisoning by multiple unsp drug/meds/biol subst, undet, subs|Poisoning by multiple unsp drug/meds/biol subst, undet, subs +C5140982|T037|AB|T50.914S|ICD10CM|Poisn by multiple unsp drug/meds/biol subst, undet, sequela|Poisn by multiple unsp drug/meds/biol subst, undet, sequela +C5140983|T037|AB|T50.915|ICD10CM|Adverse effect of multiple unspecified drug/meds/biol subst|Adverse effect of multiple unspecified drug/meds/biol subst +C5140983|T037|HT|T50.915|ICD10CM|Adverse effect of multiple unspecified drugs, medicaments and biological substances|Adverse effect of multiple unspecified drugs, medicaments and biological substances +C5140984|T037|AB|T50.915A|ICD10CM|Adverse effect of multiple unsp drug/meds/biol subst, init|Adverse effect of multiple unsp drug/meds/biol subst, init +C5140985|T037|AB|T50.915D|ICD10CM|Adverse effect of multiple unsp drug/meds/biol subst, subs|Adverse effect of multiple unsp drug/meds/biol subst, subs +C5140986|T037|AB|T50.915S|ICD10CM|Adverse effect of mult unsp drug/meds/biol subst, sequela|Adverse effect of mult unsp drug/meds/biol subst, sequela +C5140986|T037|PT|T50.915S|ICD10CM|Adverse effect of multiple unspecified drugs, medicaments and biological substances, sequela|Adverse effect of multiple unspecified drugs, medicaments and biological substances, sequela +C5140987|T037|AB|T50.916|ICD10CM|Underdosing of multiple unspecified drug/meds/biol subst|Underdosing of multiple unspecified drug/meds/biol subst +C5140987|T037|HT|T50.916|ICD10CM|Underdosing of multiple unspecified drugs, medicaments and biological substances|Underdosing of multiple unspecified drugs, medicaments and biological substances +C5140988|T037|PT|T50.916A|ICD10CM|Underdosing of multiple unspecified drugs, medicaments and biological substances, initial encounter|Underdosing of multiple unspecified drugs, medicaments and biological substances, initial encounter +C5140988|T037|AB|T50.916A|ICD10CM|Undrdose of multiple unspecified drug/meds/biol subst, init|Undrdose of multiple unspecified drug/meds/biol subst, init +C5140989|T037|AB|T50.916D|ICD10CM|Undrdose of multiple unspecified drug/meds/biol subst, subs|Undrdose of multiple unspecified drug/meds/biol subst, subs +C5140990|T037|PT|T50.916S|ICD10CM|Underdosing of multiple unspecified drugs, medicaments and biological substances, sequela|Underdosing of multiple unspecified drugs, medicaments and biological substances, sequela +C5140990|T037|AB|T50.916S|ICD10CM|Undrdose of multiple unsp drug/meds/biol subst, sequela|Undrdose of multiple unsp drug/meds/biol subst, sequela +C2883779|T037|AB|T50.99|ICD10CM|Drugs, medicaments and biological substances|Drugs, medicaments and biological substances +C2883780|T037|AB|T50.991|ICD10CM|Poisoning by oth drug/meds/biol subst, accidental|Poisoning by oth drug/meds/biol subst, accidental +C2883780|T037|HT|T50.991|ICD10CM|Poisoning by other drugs, medicaments and biological substances, accidental (unintentional)|Poisoning by other drugs, medicaments and biological substances, accidental (unintentional) +C2883781|T037|AB|T50.991A|ICD10CM|Poisoning by oth drug/meds/biol subst, accidental, init|Poisoning by oth drug/meds/biol subst, accidental, init +C2883782|T037|AB|T50.991D|ICD10CM|Poisoning by oth drug/meds/biol subst, accidental, subs|Poisoning by oth drug/meds/biol subst, accidental, subs +C2883783|T037|AB|T50.991S|ICD10CM|Poisoning by oth drug/meds/biol subst, accidental, sequela|Poisoning by oth drug/meds/biol subst, accidental, sequela +C2883783|T037|PT|T50.991S|ICD10CM|Poisoning by other drugs, medicaments and biological substances, accidental (unintentional), sequela|Poisoning by other drugs, medicaments and biological substances, accidental (unintentional), sequela +C2883784|T037|AB|T50.992|ICD10CM|Poisoning by oth drug/meds/biol subst, intentional self-harm|Poisoning by oth drug/meds/biol subst, intentional self-harm +C2883784|T037|HT|T50.992|ICD10CM|Poisoning by other drugs, medicaments and biological substances, intentional self-harm|Poisoning by other drugs, medicaments and biological substances, intentional self-harm +C2883785|T037|AB|T50.992A|ICD10CM|Poisoning by oth drug/meds/biol subst, self-harm, init|Poisoning by oth drug/meds/biol subst, self-harm, init +C2883786|T037|AB|T50.992D|ICD10CM|Poisoning by oth drug/meds/biol subst, self-harm, subs|Poisoning by oth drug/meds/biol subst, self-harm, subs +C2883787|T037|AB|T50.992S|ICD10CM|Poisoning by oth drug/meds/biol subst, self-harm, sequela|Poisoning by oth drug/meds/biol subst, self-harm, sequela +C2883787|T037|PT|T50.992S|ICD10CM|Poisoning by other drugs, medicaments and biological substances, intentional self-harm, sequela|Poisoning by other drugs, medicaments and biological substances, intentional self-harm, sequela +C2883788|T037|AB|T50.993|ICD10CM|Poisoning by oth drug/meds/biol subst, assault|Poisoning by oth drug/meds/biol subst, assault +C2883788|T037|HT|T50.993|ICD10CM|Poisoning by other drugs, medicaments and biological substances, assault|Poisoning by other drugs, medicaments and biological substances, assault +C2883789|T037|AB|T50.993A|ICD10CM|Poisoning by oth drug/meds/biol subst, assault, init|Poisoning by oth drug/meds/biol subst, assault, init +C2883789|T037|PT|T50.993A|ICD10CM|Poisoning by other drugs, medicaments and biological substances, assault, initial encounter|Poisoning by other drugs, medicaments and biological substances, assault, initial encounter +C2883790|T037|AB|T50.993D|ICD10CM|Poisoning by oth drug/meds/biol subst, assault, subs|Poisoning by oth drug/meds/biol subst, assault, subs +C2883790|T037|PT|T50.993D|ICD10CM|Poisoning by other drugs, medicaments and biological substances, assault, subsequent encounter|Poisoning by other drugs, medicaments and biological substances, assault, subsequent encounter +C2883791|T037|AB|T50.993S|ICD10CM|Poisoning by oth drug/meds/biol subst, assault, sequela|Poisoning by oth drug/meds/biol subst, assault, sequela +C2883791|T037|PT|T50.993S|ICD10CM|Poisoning by other drugs, medicaments and biological substances, assault, sequela|Poisoning by other drugs, medicaments and biological substances, assault, sequela +C2883792|T037|AB|T50.994|ICD10CM|Poisoning by oth drug/meds/biol subst, undetermined|Poisoning by oth drug/meds/biol subst, undetermined +C2883792|T037|HT|T50.994|ICD10CM|Poisoning by other drugs, medicaments and biological substances, undetermined|Poisoning by other drugs, medicaments and biological substances, undetermined +C2883793|T037|AB|T50.994A|ICD10CM|Poisoning by oth drug/meds/biol subst, undetermined, init|Poisoning by oth drug/meds/biol subst, undetermined, init +C2883793|T037|PT|T50.994A|ICD10CM|Poisoning by other drugs, medicaments and biological substances, undetermined, initial encounter|Poisoning by other drugs, medicaments and biological substances, undetermined, initial encounter +C2883794|T037|AB|T50.994D|ICD10CM|Poisoning by oth drug/meds/biol subst, undetermined, subs|Poisoning by oth drug/meds/biol subst, undetermined, subs +C2883794|T037|PT|T50.994D|ICD10CM|Poisoning by other drugs, medicaments and biological substances, undetermined, subsequent encounter|Poisoning by other drugs, medicaments and biological substances, undetermined, subsequent encounter +C2883795|T037|AB|T50.994S|ICD10CM|Poisoning by oth drug/meds/biol subst, undetermined, sequela|Poisoning by oth drug/meds/biol subst, undetermined, sequela +C2883795|T037|PT|T50.994S|ICD10CM|Poisoning by other drugs, medicaments and biological substances, undetermined, sequela|Poisoning by other drugs, medicaments and biological substances, undetermined, sequela +C2883796|T037|AB|T50.995|ICD10CM|Adverse effect of drug/meds/biol subst|Adverse effect of drug/meds/biol subst +C2883796|T037|HT|T50.995|ICD10CM|Adverse effect of other drugs, medicaments and biological substances|Adverse effect of other drugs, medicaments and biological substances +C2883797|T037|AB|T50.995A|ICD10CM|Adverse effect of drug/meds/biol subst, init|Adverse effect of drug/meds/biol subst, init +C2883797|T037|PT|T50.995A|ICD10CM|Adverse effect of other drugs, medicaments and biological substances, initial encounter|Adverse effect of other drugs, medicaments and biological substances, initial encounter +C2883798|T037|AB|T50.995D|ICD10CM|Adverse effect of drug/meds/biol subst, subs|Adverse effect of drug/meds/biol subst, subs +C2883798|T037|PT|T50.995D|ICD10CM|Adverse effect of other drugs, medicaments and biological substances, subsequent encounter|Adverse effect of other drugs, medicaments and biological substances, subsequent encounter +C2883799|T037|AB|T50.995S|ICD10CM|Adverse effect of drug/meds/biol subst, sequela|Adverse effect of drug/meds/biol subst, sequela +C2883799|T037|PT|T50.995S|ICD10CM|Adverse effect of other drugs, medicaments and biological substances, sequela|Adverse effect of other drugs, medicaments and biological substances, sequela +C3645895|T037|AB|T50.996|ICD10CM|Underdosing of drugs, medicaments and biological substances|Underdosing of drugs, medicaments and biological substances +C3645895|T037|HT|T50.996|ICD10CM|Underdosing of other drugs, medicaments and biological substances|Underdosing of other drugs, medicaments and biological substances +C2883801|T037|AB|T50.996A|ICD10CM|Underdosing of drug/meds/biol subst, init|Underdosing of drug/meds/biol subst, init +C2883801|T037|PT|T50.996A|ICD10CM|Underdosing of other drugs, medicaments and biological substances, initial encounter|Underdosing of other drugs, medicaments and biological substances, initial encounter +C2883802|T037|AB|T50.996D|ICD10CM|Underdosing of drug/meds/biol subst, subs|Underdosing of drug/meds/biol subst, subs +C2883802|T037|PT|T50.996D|ICD10CM|Underdosing of other drugs, medicaments and biological substances, subsequent encounter|Underdosing of other drugs, medicaments and biological substances, subsequent encounter +C2883803|T037|AB|T50.996S|ICD10CM|Underdosing of drug/meds/biol subst, sequela|Underdosing of drug/meds/biol subst, sequela +C2883803|T037|PT|T50.996S|ICD10CM|Underdosing of other drugs, medicaments and biological substances, sequela|Underdosing of other drugs, medicaments and biological substances, sequela +C2883804|T037|AB|T50.A|ICD10CM|Bacterial vaccines|Bacterial vaccines +C2883804|T037|HT|T50.A|ICD10CM|Poisoning by, adverse effect of and underdosing of bacterial vaccines|Poisoning by, adverse effect of and underdosing of bacterial vaccines +C2883805|T037|AB|T50.A1|ICD10CM|Pertussis vaccine, including combinations w pertuss|Pertussis vaccine, including combinations w pertuss +C2883806|T037|AB|T50.A11|ICD10CM|Poisoning by pertussis vaccine, inc combin w pertuss, acc|Poisoning by pertussis vaccine, inc combin w pertuss, acc +C2883807|T037|AB|T50.A11A|ICD10CM|Poisn by pertuss vaccine, inc combin w pertuss, acc, init|Poisn by pertuss vaccine, inc combin w pertuss, acc, init +C2883808|T037|AB|T50.A11D|ICD10CM|Poisn by pertuss vaccine, inc combin w pertuss, acc, subs|Poisn by pertuss vaccine, inc combin w pertuss, acc, subs +C2883809|T037|AB|T50.A11S|ICD10CM|Poisn by pertuss vaccine, inc combin w pertuss, acc, sqla|Poisn by pertuss vaccine, inc combin w pertuss, acc, sqla +C2883810|T037|AB|T50.A12|ICD10CM|Poisn by pertuss vaccine, inc combin w pertuss, self-harm|Poisn by pertuss vaccine, inc combin w pertuss, self-harm +C2883811|T037|AB|T50.A12A|ICD10CM|Poisn by pertuss vaccn, inc combin w pertuss, slf-hrm, init|Poisn by pertuss vaccn, inc combin w pertuss, slf-hrm, init +C2883812|T037|AB|T50.A12D|ICD10CM|Poisn by pertuss vaccn, inc combin w pertuss, slf-hrm, subs|Poisn by pertuss vaccn, inc combin w pertuss, slf-hrm, subs +C2883813|T037|AB|T50.A12S|ICD10CM|Poisn by pertuss vaccn, inc combin w pertuss, slf-hrm, sqla|Poisn by pertuss vaccn, inc combin w pertuss, slf-hrm, sqla +C2883814|T037|AB|T50.A13|ICD10CM|Poisoning by pertuss vaccine, inc combin w pertuss, assault|Poisoning by pertuss vaccine, inc combin w pertuss, assault +C2883814|T037|HT|T50.A13|ICD10CM|Poisoning by pertussis vaccine, including combinations with a pertussis component, assault|Poisoning by pertussis vaccine, including combinations with a pertussis component, assault +C2883815|T037|AB|T50.A13A|ICD10CM|Poisn by pertuss vaccine, inc combin w pertuss, asslt, init|Poisn by pertuss vaccine, inc combin w pertuss, asslt, init +C2883816|T037|AB|T50.A13D|ICD10CM|Poisn by pertuss vaccine, inc combin w pertuss, asslt, subs|Poisn by pertuss vaccine, inc combin w pertuss, asslt, subs +C2883817|T037|AB|T50.A13S|ICD10CM|Poisn by pertuss vaccine, inc combin w pertuss, asslt, sqla|Poisn by pertuss vaccine, inc combin w pertuss, asslt, sqla +C2883817|T037|PT|T50.A13S|ICD10CM|Poisoning by pertussis vaccine, including combinations with a pertussis component, assault, sequela|Poisoning by pertussis vaccine, including combinations with a pertussis component, assault, sequela +C2883818|T037|AB|T50.A14|ICD10CM|Poisoning by pertussis vaccine, inc combin w pertuss, undet|Poisoning by pertussis vaccine, inc combin w pertuss, undet +C2883818|T037|HT|T50.A14|ICD10CM|Poisoning by pertussis vaccine, including combinations with a pertussis component, undetermined|Poisoning by pertussis vaccine, including combinations with a pertussis component, undetermined +C2883819|T037|AB|T50.A14A|ICD10CM|Poisn by pertuss vaccine, inc combin w pertuss, undet, init|Poisn by pertuss vaccine, inc combin w pertuss, undet, init +C2883820|T037|AB|T50.A14D|ICD10CM|Poisn by pertuss vaccine, inc combin w pertuss, undet, subs|Poisn by pertuss vaccine, inc combin w pertuss, undet, subs +C2883821|T037|AB|T50.A14S|ICD10CM|Poisn by pertuss vaccine, inc combin w pertuss, undet, sqla|Poisn by pertuss vaccine, inc combin w pertuss, undet, sqla +C2883822|T037|AB|T50.A15|ICD10CM|Adverse effect of pertussis vaccine, inc combin w pertuss|Adverse effect of pertussis vaccine, inc combin w pertuss +C2883822|T037|HT|T50.A15|ICD10CM|Adverse effect of pertussis vaccine, including combinations with a pertussis component|Adverse effect of pertussis vaccine, including combinations with a pertussis component +C2883823|T037|AB|T50.A15A|ICD10CM|Advrs effect of pertuss vaccine, inc combin w pertuss, init|Advrs effect of pertuss vaccine, inc combin w pertuss, init +C2883824|T037|AB|T50.A15D|ICD10CM|Advrs effect of pertuss vaccine, inc combin w pertuss, subs|Advrs effect of pertuss vaccine, inc combin w pertuss, subs +C2883825|T037|PT|T50.A15S|ICD10CM|Adverse effect of pertussis vaccine, including combinations with a pertussis component, sequela|Adverse effect of pertussis vaccine, including combinations with a pertussis component, sequela +C2883825|T037|AB|T50.A15S|ICD10CM|Advrs effect of pertuss vaccine, inc combin w pertuss, sqla|Advrs effect of pertuss vaccine, inc combin w pertuss, sqla +C2883826|T037|AB|T50.A16|ICD10CM|Underdosing of pertussis vaccine, including combin w pertuss|Underdosing of pertussis vaccine, including combin w pertuss +C2883826|T037|HT|T50.A16|ICD10CM|Underdosing of pertussis vaccine, including combinations with a pertussis component|Underdosing of pertussis vaccine, including combinations with a pertussis component +C2883827|T037|AB|T50.A16A|ICD10CM|Undrdose of pertussis vaccine, inc combin w pertuss, init|Undrdose of pertussis vaccine, inc combin w pertuss, init +C2883828|T037|AB|T50.A16D|ICD10CM|Undrdose of pertussis vaccine, inc combin w pertuss, subs|Undrdose of pertussis vaccine, inc combin w pertuss, subs +C2883829|T037|PT|T50.A16S|ICD10CM|Underdosing of pertussis vaccine, including combinations with a pertussis component, sequela|Underdosing of pertussis vaccine, including combinations with a pertussis component, sequela +C2883829|T037|AB|T50.A16S|ICD10CM|Undrdose of pertussis vaccine, inc combin w pertuss, sequela|Undrdose of pertussis vaccine, inc combin w pertuss, sequela +C2883830|T037|AB|T50.A2|ICD10CM|Mixed bacterial vaccines without a pertussis component|Mixed bacterial vaccines without a pertussis component +C2883831|T037|AB|T50.A21|ICD10CM|Poisoning by mixed bacterial vaccines w/o a pertuss, acc|Poisoning by mixed bacterial vaccines w/o a pertuss, acc +C2883831|T037|HT|T50.A21|ICD10CM|Poisoning by mixed bacterial vaccines without a pertussis component, accidental (unintentional)|Poisoning by mixed bacterial vaccines without a pertussis component, accidental (unintentional) +C2883832|T037|AB|T50.A21A|ICD10CM|Poisoning by mixed bact vaccines w/o a pertuss, acc, init|Poisoning by mixed bact vaccines w/o a pertuss, acc, init +C2883833|T037|AB|T50.A21D|ICD10CM|Poisoning by mixed bact vaccines w/o a pertuss, acc, subs|Poisoning by mixed bact vaccines w/o a pertuss, acc, subs +C2883834|T037|AB|T50.A21S|ICD10CM|Poisn by mixed bact vaccines w/o a pertuss, acc, sequela|Poisn by mixed bact vaccines w/o a pertuss, acc, sequela +C2883835|T037|AB|T50.A22|ICD10CM|Poisoning by mixed bact vaccines w/o a pertuss, self-harm|Poisoning by mixed bact vaccines w/o a pertuss, self-harm +C2883835|T037|HT|T50.A22|ICD10CM|Poisoning by mixed bacterial vaccines without a pertussis component, intentional self-harm|Poisoning by mixed bacterial vaccines without a pertussis component, intentional self-harm +C2883836|T037|AB|T50.A22A|ICD10CM|Poisn by mixed bact vaccines w/o a pertuss, self-harm, init|Poisn by mixed bact vaccines w/o a pertuss, self-harm, init +C2883837|T037|AB|T50.A22D|ICD10CM|Poisn by mixed bact vaccines w/o a pertuss, self-harm, subs|Poisn by mixed bact vaccines w/o a pertuss, self-harm, subs +C2883838|T037|AB|T50.A22S|ICD10CM|Poisn by mixed bact vaccines w/o a pertuss, slf-hrm, sequela|Poisn by mixed bact vaccines w/o a pertuss, slf-hrm, sequela +C2883838|T037|PT|T50.A22S|ICD10CM|Poisoning by mixed bacterial vaccines without a pertussis component, intentional self-harm, sequela|Poisoning by mixed bacterial vaccines without a pertussis component, intentional self-harm, sequela +C2883839|T037|AB|T50.A23|ICD10CM|Poisoning by mixed bacterial vaccines w/o a pertuss, assault|Poisoning by mixed bacterial vaccines w/o a pertuss, assault +C2883839|T037|HT|T50.A23|ICD10CM|Poisoning by mixed bacterial vaccines without a pertussis component, assault|Poisoning by mixed bacterial vaccines without a pertussis component, assault +C2883840|T037|AB|T50.A23A|ICD10CM|Poisn by mixed bact vaccines w/o a pertuss, assault, init|Poisn by mixed bact vaccines w/o a pertuss, assault, init +C2883840|T037|PT|T50.A23A|ICD10CM|Poisoning by mixed bacterial vaccines without a pertussis component, assault, initial encounter|Poisoning by mixed bacterial vaccines without a pertussis component, assault, initial encounter +C2883841|T037|AB|T50.A23D|ICD10CM|Poisn by mixed bact vaccines w/o a pertuss, assault, subs|Poisn by mixed bact vaccines w/o a pertuss, assault, subs +C2883841|T037|PT|T50.A23D|ICD10CM|Poisoning by mixed bacterial vaccines without a pertussis component, assault, subsequent encounter|Poisoning by mixed bacterial vaccines without a pertussis component, assault, subsequent encounter +C2883842|T037|AB|T50.A23S|ICD10CM|Poisn by mixed bact vaccines w/o a pertuss, assault, sequela|Poisn by mixed bact vaccines w/o a pertuss, assault, sequela +C2883842|T037|PT|T50.A23S|ICD10CM|Poisoning by mixed bacterial vaccines without a pertussis component, assault, sequela|Poisoning by mixed bacterial vaccines without a pertussis component, assault, sequela +C2883843|T037|AB|T50.A24|ICD10CM|Poisoning by mixed bacterial vaccines w/o a pertuss, undet|Poisoning by mixed bacterial vaccines w/o a pertuss, undet +C2883843|T037|HT|T50.A24|ICD10CM|Poisoning by mixed bacterial vaccines without a pertussis component, undetermined|Poisoning by mixed bacterial vaccines without a pertussis component, undetermined +C2883844|T037|AB|T50.A24A|ICD10CM|Poisoning by mixed bact vaccines w/o a pertuss, undet, init|Poisoning by mixed bact vaccines w/o a pertuss, undet, init +C2883844|T037|PT|T50.A24A|ICD10CM|Poisoning by mixed bacterial vaccines without a pertussis component, undetermined, initial encounter|Poisoning by mixed bacterial vaccines without a pertussis component, undetermined, initial encounter +C2883845|T037|AB|T50.A24D|ICD10CM|Poisoning by mixed bact vaccines w/o a pertuss, undet, subs|Poisoning by mixed bact vaccines w/o a pertuss, undet, subs +C2883846|T037|AB|T50.A24S|ICD10CM|Poisn by mixed bact vaccines w/o a pertuss, undet, sequela|Poisn by mixed bact vaccines w/o a pertuss, undet, sequela +C2883846|T037|PT|T50.A24S|ICD10CM|Poisoning by mixed bacterial vaccines without a pertussis component, undetermined, sequela|Poisoning by mixed bacterial vaccines without a pertussis component, undetermined, sequela +C2883847|T037|AB|T50.A25|ICD10CM|Adverse effect of mixed bacterial vaccines w/o a pertuss|Adverse effect of mixed bacterial vaccines w/o a pertuss +C2883847|T037|HT|T50.A25|ICD10CM|Adverse effect of mixed bacterial vaccines without a pertussis component|Adverse effect of mixed bacterial vaccines without a pertussis component +C2883848|T037|AB|T50.A25A|ICD10CM|Adverse effect of mixed bact vaccines w/o a pertuss, init|Adverse effect of mixed bact vaccines w/o a pertuss, init +C2883848|T037|PT|T50.A25A|ICD10CM|Adverse effect of mixed bacterial vaccines without a pertussis component, initial encounter|Adverse effect of mixed bacterial vaccines without a pertussis component, initial encounter +C2883849|T037|AB|T50.A25D|ICD10CM|Adverse effect of mixed bact vaccines w/o a pertuss, subs|Adverse effect of mixed bact vaccines w/o a pertuss, subs +C2883849|T037|PT|T50.A25D|ICD10CM|Adverse effect of mixed bacterial vaccines without a pertussis component, subsequent encounter|Adverse effect of mixed bacterial vaccines without a pertussis component, subsequent encounter +C2883850|T037|AB|T50.A25S|ICD10CM|Adverse effect of mixed bact vaccines w/o a pertuss, sequela|Adverse effect of mixed bact vaccines w/o a pertuss, sequela +C2883850|T037|PT|T50.A25S|ICD10CM|Adverse effect of mixed bacterial vaccines without a pertussis component, sequela|Adverse effect of mixed bacterial vaccines without a pertussis component, sequela +C2883851|T037|AB|T50.A26|ICD10CM|Underdosing of mixed bacterial vaccines w/o a pertuss|Underdosing of mixed bacterial vaccines w/o a pertuss +C2883851|T037|HT|T50.A26|ICD10CM|Underdosing of mixed bacterial vaccines without a pertussis component|Underdosing of mixed bacterial vaccines without a pertussis component +C2883852|T037|AB|T50.A26A|ICD10CM|Underdosing of mixed bacterial vaccines w/o a pertuss, init|Underdosing of mixed bacterial vaccines w/o a pertuss, init +C2883852|T037|PT|T50.A26A|ICD10CM|Underdosing of mixed bacterial vaccines without a pertussis component, initial encounter|Underdosing of mixed bacterial vaccines without a pertussis component, initial encounter +C2883853|T037|AB|T50.A26D|ICD10CM|Underdosing of mixed bacterial vaccines w/o a pertuss, subs|Underdosing of mixed bacterial vaccines w/o a pertuss, subs +C2883853|T037|PT|T50.A26D|ICD10CM|Underdosing of mixed bacterial vaccines without a pertussis component, subsequent encounter|Underdosing of mixed bacterial vaccines without a pertussis component, subsequent encounter +C2883854|T037|PT|T50.A26S|ICD10CM|Underdosing of mixed bacterial vaccines without a pertussis component, sequela|Underdosing of mixed bacterial vaccines without a pertussis component, sequela +C2883854|T037|AB|T50.A26S|ICD10CM|Undrdose of mixed bacterial vaccines w/o a pertuss, sequela|Undrdose of mixed bacterial vaccines w/o a pertuss, sequela +C2883804|T037|AB|T50.A9|ICD10CM|Bacterial vaccines|Bacterial vaccines +C2883804|T037|HT|T50.A9|ICD10CM|Poisoning by, adverse effect of and underdosing of other bacterial vaccines|Poisoning by, adverse effect of and underdosing of other bacterial vaccines +C2883856|T037|AB|T50.A91|ICD10CM|Poisoning by oth bacterial vaccines, accidental|Poisoning by oth bacterial vaccines, accidental +C2883856|T037|HT|T50.A91|ICD10CM|Poisoning by other bacterial vaccines, accidental (unintentional)|Poisoning by other bacterial vaccines, accidental (unintentional) +C2883857|T037|AB|T50.A91A|ICD10CM|Poisoning by oth bacterial vaccines, accidental, init|Poisoning by oth bacterial vaccines, accidental, init +C2883857|T037|PT|T50.A91A|ICD10CM|Poisoning by other bacterial vaccines, accidental (unintentional), initial encounter|Poisoning by other bacterial vaccines, accidental (unintentional), initial encounter +C2883858|T037|AB|T50.A91D|ICD10CM|Poisoning by oth bacterial vaccines, accidental, subs|Poisoning by oth bacterial vaccines, accidental, subs +C2883858|T037|PT|T50.A91D|ICD10CM|Poisoning by other bacterial vaccines, accidental (unintentional), subsequent encounter|Poisoning by other bacterial vaccines, accidental (unintentional), subsequent encounter +C2883859|T037|AB|T50.A91S|ICD10CM|Poisoning by oth bacterial vaccines, accidental, sequela|Poisoning by oth bacterial vaccines, accidental, sequela +C2883859|T037|PT|T50.A91S|ICD10CM|Poisoning by other bacterial vaccines, accidental (unintentional), sequela|Poisoning by other bacterial vaccines, accidental (unintentional), sequela +C2883860|T037|AB|T50.A92|ICD10CM|Poisoning by other bacterial vaccines, intentional self-harm|Poisoning by other bacterial vaccines, intentional self-harm +C2883860|T037|HT|T50.A92|ICD10CM|Poisoning by other bacterial vaccines, intentional self-harm|Poisoning by other bacterial vaccines, intentional self-harm +C2883861|T037|AB|T50.A92A|ICD10CM|Poisoning by oth bacterial vaccines, self-harm, init|Poisoning by oth bacterial vaccines, self-harm, init +C2883861|T037|PT|T50.A92A|ICD10CM|Poisoning by other bacterial vaccines, intentional self-harm, initial encounter|Poisoning by other bacterial vaccines, intentional self-harm, initial encounter +C2883862|T037|AB|T50.A92D|ICD10CM|Poisoning by oth bacterial vaccines, self-harm, subs|Poisoning by oth bacterial vaccines, self-harm, subs +C2883862|T037|PT|T50.A92D|ICD10CM|Poisoning by other bacterial vaccines, intentional self-harm, subsequent encounter|Poisoning by other bacterial vaccines, intentional self-harm, subsequent encounter +C2883863|T037|AB|T50.A92S|ICD10CM|Poisoning by oth bacterial vaccines, self-harm, sequela|Poisoning by oth bacterial vaccines, self-harm, sequela +C2883863|T037|PT|T50.A92S|ICD10CM|Poisoning by other bacterial vaccines, intentional self-harm, sequela|Poisoning by other bacterial vaccines, intentional self-harm, sequela +C2883864|T037|AB|T50.A93|ICD10CM|Poisoning by other bacterial vaccines, assault|Poisoning by other bacterial vaccines, assault +C2883864|T037|HT|T50.A93|ICD10CM|Poisoning by other bacterial vaccines, assault|Poisoning by other bacterial vaccines, assault +C2883865|T037|AB|T50.A93A|ICD10CM|Poisoning by other bacterial vaccines, assault, init encntr|Poisoning by other bacterial vaccines, assault, init encntr +C2883865|T037|PT|T50.A93A|ICD10CM|Poisoning by other bacterial vaccines, assault, initial encounter|Poisoning by other bacterial vaccines, assault, initial encounter +C2883866|T037|AB|T50.A93D|ICD10CM|Poisoning by other bacterial vaccines, assault, subs encntr|Poisoning by other bacterial vaccines, assault, subs encntr +C2883866|T037|PT|T50.A93D|ICD10CM|Poisoning by other bacterial vaccines, assault, subsequent encounter|Poisoning by other bacterial vaccines, assault, subsequent encounter +C2883867|T037|AB|T50.A93S|ICD10CM|Poisoning by other bacterial vaccines, assault, sequela|Poisoning by other bacterial vaccines, assault, sequela +C2883867|T037|PT|T50.A93S|ICD10CM|Poisoning by other bacterial vaccines, assault, sequela|Poisoning by other bacterial vaccines, assault, sequela +C2883868|T037|AB|T50.A94|ICD10CM|Poisoning by other bacterial vaccines, undetermined|Poisoning by other bacterial vaccines, undetermined +C2883868|T037|HT|T50.A94|ICD10CM|Poisoning by other bacterial vaccines, undetermined|Poisoning by other bacterial vaccines, undetermined +C2883869|T037|AB|T50.A94A|ICD10CM|Poisoning by oth bacterial vaccines, undetermined, init|Poisoning by oth bacterial vaccines, undetermined, init +C2883869|T037|PT|T50.A94A|ICD10CM|Poisoning by other bacterial vaccines, undetermined, initial encounter|Poisoning by other bacterial vaccines, undetermined, initial encounter +C2883870|T037|AB|T50.A94D|ICD10CM|Poisoning by oth bacterial vaccines, undetermined, subs|Poisoning by oth bacterial vaccines, undetermined, subs +C2883870|T037|PT|T50.A94D|ICD10CM|Poisoning by other bacterial vaccines, undetermined, subsequent encounter|Poisoning by other bacterial vaccines, undetermined, subsequent encounter +C2883871|T037|AB|T50.A94S|ICD10CM|Poisoning by other bacterial vaccines, undetermined, sequela|Poisoning by other bacterial vaccines, undetermined, sequela +C2883871|T037|PT|T50.A94S|ICD10CM|Poisoning by other bacterial vaccines, undetermined, sequela|Poisoning by other bacterial vaccines, undetermined, sequela +C2883872|T037|AB|T50.A95|ICD10CM|Adverse effect of other bacterial vaccines|Adverse effect of other bacterial vaccines +C2883872|T037|HT|T50.A95|ICD10CM|Adverse effect of other bacterial vaccines|Adverse effect of other bacterial vaccines +C2883873|T037|AB|T50.A95A|ICD10CM|Adverse effect of other bacterial vaccines, init encntr|Adverse effect of other bacterial vaccines, init encntr +C2883873|T037|PT|T50.A95A|ICD10CM|Adverse effect of other bacterial vaccines, initial encounter|Adverse effect of other bacterial vaccines, initial encounter +C2883874|T037|AB|T50.A95D|ICD10CM|Adverse effect of other bacterial vaccines, subs encntr|Adverse effect of other bacterial vaccines, subs encntr +C2883874|T037|PT|T50.A95D|ICD10CM|Adverse effect of other bacterial vaccines, subsequent encounter|Adverse effect of other bacterial vaccines, subsequent encounter +C2883875|T037|AB|T50.A95S|ICD10CM|Adverse effect of other bacterial vaccines, sequela|Adverse effect of other bacterial vaccines, sequela +C2883875|T037|PT|T50.A95S|ICD10CM|Adverse effect of other bacterial vaccines, sequela|Adverse effect of other bacterial vaccines, sequela +C2883876|T037|AB|T50.A96|ICD10CM|Underdosing of other bacterial vaccines|Underdosing of other bacterial vaccines +C2883876|T037|HT|T50.A96|ICD10CM|Underdosing of other bacterial vaccines|Underdosing of other bacterial vaccines +C2883877|T037|AB|T50.A96A|ICD10CM|Underdosing of other bacterial vaccines, initial encounter|Underdosing of other bacterial vaccines, initial encounter +C2883877|T037|PT|T50.A96A|ICD10CM|Underdosing of other bacterial vaccines, initial encounter|Underdosing of other bacterial vaccines, initial encounter +C2883878|T037|AB|T50.A96D|ICD10CM|Underdosing of other bacterial vaccines, subs encntr|Underdosing of other bacterial vaccines, subs encntr +C2883878|T037|PT|T50.A96D|ICD10CM|Underdosing of other bacterial vaccines, subsequent encounter|Underdosing of other bacterial vaccines, subsequent encounter +C2883879|T037|AB|T50.A96S|ICD10CM|Underdosing of other bacterial vaccines, sequela|Underdosing of other bacterial vaccines, sequela +C2883879|T037|PT|T50.A96S|ICD10CM|Underdosing of other bacterial vaccines, sequela|Underdosing of other bacterial vaccines, sequela +C2883906|T037|HT|T50.B|ICD10CM|Poisoning by, adverse effect of and underdosing of viral vaccines|Poisoning by, adverse effect of and underdosing of viral vaccines +C2883906|T037|AB|T50.B|ICD10CM|Viral vaccines|Viral vaccines +C2883881|T037|HT|T50.B1|ICD10CM|Poisoning by, adverse effect of and underdosing of smallpox vaccines|Poisoning by, adverse effect of and underdosing of smallpox vaccines +C2883881|T037|AB|T50.B1|ICD10CM|Smallpox vaccines|Smallpox vaccines +C2883882|T037|AB|T50.B11|ICD10CM|Poisoning by smallpox vaccines, accidental (unintentional)|Poisoning by smallpox vaccines, accidental (unintentional) +C2883882|T037|HT|T50.B11|ICD10CM|Poisoning by smallpox vaccines, accidental (unintentional)|Poisoning by smallpox vaccines, accidental (unintentional) +C2883883|T037|PT|T50.B11A|ICD10CM|Poisoning by smallpox vaccines, accidental (unintentional), initial encounter|Poisoning by smallpox vaccines, accidental (unintentional), initial encounter +C2883883|T037|AB|T50.B11A|ICD10CM|Poisoning by smallpox vaccines, accidental, init|Poisoning by smallpox vaccines, accidental, init +C2883884|T037|PT|T50.B11D|ICD10CM|Poisoning by smallpox vaccines, accidental (unintentional), subsequent encounter|Poisoning by smallpox vaccines, accidental (unintentional), subsequent encounter +C2883884|T037|AB|T50.B11D|ICD10CM|Poisoning by smallpox vaccines, accidental, subs|Poisoning by smallpox vaccines, accidental, subs +C2883885|T037|PT|T50.B11S|ICD10CM|Poisoning by smallpox vaccines, accidental (unintentional), sequela|Poisoning by smallpox vaccines, accidental (unintentional), sequela +C2883885|T037|AB|T50.B11S|ICD10CM|Poisoning by smallpox vaccines, accidental, sequela|Poisoning by smallpox vaccines, accidental, sequela +C2883886|T037|AB|T50.B12|ICD10CM|Poisoning by smallpox vaccines, intentional self-harm|Poisoning by smallpox vaccines, intentional self-harm +C2883886|T037|HT|T50.B12|ICD10CM|Poisoning by smallpox vaccines, intentional self-harm|Poisoning by smallpox vaccines, intentional self-harm +C2883887|T037|AB|T50.B12A|ICD10CM|Poisoning by smallpox vaccines, intentional self-harm, init|Poisoning by smallpox vaccines, intentional self-harm, init +C2883887|T037|PT|T50.B12A|ICD10CM|Poisoning by smallpox vaccines, intentional self-harm, initial encounter|Poisoning by smallpox vaccines, intentional self-harm, initial encounter +C2883888|T037|AB|T50.B12D|ICD10CM|Poisoning by smallpox vaccines, intentional self-harm, subs|Poisoning by smallpox vaccines, intentional self-harm, subs +C2883888|T037|PT|T50.B12D|ICD10CM|Poisoning by smallpox vaccines, intentional self-harm, subsequent encounter|Poisoning by smallpox vaccines, intentional self-harm, subsequent encounter +C2883889|T037|PT|T50.B12S|ICD10CM|Poisoning by smallpox vaccines, intentional self-harm, sequela|Poisoning by smallpox vaccines, intentional self-harm, sequela +C2883889|T037|AB|T50.B12S|ICD10CM|Poisoning by smallpox vaccines, self-harm, sequela|Poisoning by smallpox vaccines, self-harm, sequela +C2883890|T037|AB|T50.B13|ICD10CM|Poisoning by smallpox vaccines, assault|Poisoning by smallpox vaccines, assault +C2883890|T037|HT|T50.B13|ICD10CM|Poisoning by smallpox vaccines, assault|Poisoning by smallpox vaccines, assault +C2883891|T037|AB|T50.B13A|ICD10CM|Poisoning by smallpox vaccines, assault, initial encounter|Poisoning by smallpox vaccines, assault, initial encounter +C2883891|T037|PT|T50.B13A|ICD10CM|Poisoning by smallpox vaccines, assault, initial encounter|Poisoning by smallpox vaccines, assault, initial encounter +C2883892|T037|AB|T50.B13D|ICD10CM|Poisoning by smallpox vaccines, assault, subs encntr|Poisoning by smallpox vaccines, assault, subs encntr +C2883892|T037|PT|T50.B13D|ICD10CM|Poisoning by smallpox vaccines, assault, subsequent encounter|Poisoning by smallpox vaccines, assault, subsequent encounter +C2883893|T037|AB|T50.B13S|ICD10CM|Poisoning by smallpox vaccines, assault, sequela|Poisoning by smallpox vaccines, assault, sequela +C2883893|T037|PT|T50.B13S|ICD10CM|Poisoning by smallpox vaccines, assault, sequela|Poisoning by smallpox vaccines, assault, sequela +C2883894|T037|AB|T50.B14|ICD10CM|Poisoning by smallpox vaccines, undetermined|Poisoning by smallpox vaccines, undetermined +C2883894|T037|HT|T50.B14|ICD10CM|Poisoning by smallpox vaccines, undetermined|Poisoning by smallpox vaccines, undetermined +C2883895|T037|AB|T50.B14A|ICD10CM|Poisoning by smallpox vaccines, undetermined, init encntr|Poisoning by smallpox vaccines, undetermined, init encntr +C2883895|T037|PT|T50.B14A|ICD10CM|Poisoning by smallpox vaccines, undetermined, initial encounter|Poisoning by smallpox vaccines, undetermined, initial encounter +C2883896|T037|AB|T50.B14D|ICD10CM|Poisoning by smallpox vaccines, undetermined, subs encntr|Poisoning by smallpox vaccines, undetermined, subs encntr +C2883896|T037|PT|T50.B14D|ICD10CM|Poisoning by smallpox vaccines, undetermined, subsequent encounter|Poisoning by smallpox vaccines, undetermined, subsequent encounter +C2883897|T037|AB|T50.B14S|ICD10CM|Poisoning by smallpox vaccines, undetermined, sequela|Poisoning by smallpox vaccines, undetermined, sequela +C2883897|T037|PT|T50.B14S|ICD10CM|Poisoning by smallpox vaccines, undetermined, sequela|Poisoning by smallpox vaccines, undetermined, sequela +C2883898|T037|AB|T50.B15|ICD10CM|Adverse effect of smallpox vaccines|Adverse effect of smallpox vaccines +C2883898|T037|HT|T50.B15|ICD10CM|Adverse effect of smallpox vaccines|Adverse effect of smallpox vaccines +C2883899|T037|AB|T50.B15A|ICD10CM|Adverse effect of smallpox vaccines, initial encounter|Adverse effect of smallpox vaccines, initial encounter +C2883899|T037|PT|T50.B15A|ICD10CM|Adverse effect of smallpox vaccines, initial encounter|Adverse effect of smallpox vaccines, initial encounter +C2883900|T037|AB|T50.B15D|ICD10CM|Adverse effect of smallpox vaccines, subsequent encounter|Adverse effect of smallpox vaccines, subsequent encounter +C2883900|T037|PT|T50.B15D|ICD10CM|Adverse effect of smallpox vaccines, subsequent encounter|Adverse effect of smallpox vaccines, subsequent encounter +C2883901|T037|AB|T50.B15S|ICD10CM|Adverse effect of smallpox vaccines, sequela|Adverse effect of smallpox vaccines, sequela +C2883901|T037|PT|T50.B15S|ICD10CM|Adverse effect of smallpox vaccines, sequela|Adverse effect of smallpox vaccines, sequela +C2883902|T033|AB|T50.B16|ICD10CM|Underdosing of smallpox vaccines|Underdosing of smallpox vaccines +C2883902|T033|HT|T50.B16|ICD10CM|Underdosing of smallpox vaccines|Underdosing of smallpox vaccines +C2883903|T037|AB|T50.B16A|ICD10CM|Underdosing of smallpox vaccines, initial encounter|Underdosing of smallpox vaccines, initial encounter +C2883903|T037|PT|T50.B16A|ICD10CM|Underdosing of smallpox vaccines, initial encounter|Underdosing of smallpox vaccines, initial encounter +C2883904|T037|AB|T50.B16D|ICD10CM|Underdosing of smallpox vaccines, subsequent encounter|Underdosing of smallpox vaccines, subsequent encounter +C2883904|T037|PT|T50.B16D|ICD10CM|Underdosing of smallpox vaccines, subsequent encounter|Underdosing of smallpox vaccines, subsequent encounter +C2883905|T037|AB|T50.B16S|ICD10CM|Underdosing of smallpox vaccines, sequela|Underdosing of smallpox vaccines, sequela +C2883905|T037|PT|T50.B16S|ICD10CM|Underdosing of smallpox vaccines, sequela|Underdosing of smallpox vaccines, sequela +C2883906|T037|HT|T50.B9|ICD10CM|Poisoning by, adverse effect of and underdosing of other viral vaccines|Poisoning by, adverse effect of and underdosing of other viral vaccines +C2883906|T037|AB|T50.B9|ICD10CM|Viral vaccines|Viral vaccines +C2883907|T037|AB|T50.B91|ICD10CM|Poisoning by oth viral vaccines, accidental (unintentional)|Poisoning by oth viral vaccines, accidental (unintentional) +C2883907|T037|HT|T50.B91|ICD10CM|Poisoning by other viral vaccines, accidental (unintentional)|Poisoning by other viral vaccines, accidental (unintentional) +C2883908|T037|AB|T50.B91A|ICD10CM|Poisoning by oth viral vaccines, accidental, init|Poisoning by oth viral vaccines, accidental, init +C2883908|T037|PT|T50.B91A|ICD10CM|Poisoning by other viral vaccines, accidental (unintentional), initial encounter|Poisoning by other viral vaccines, accidental (unintentional), initial encounter +C2883909|T037|AB|T50.B91D|ICD10CM|Poisoning by oth viral vaccines, accidental, subs|Poisoning by oth viral vaccines, accidental, subs +C2883909|T037|PT|T50.B91D|ICD10CM|Poisoning by other viral vaccines, accidental (unintentional), subsequent encounter|Poisoning by other viral vaccines, accidental (unintentional), subsequent encounter +C2883910|T037|AB|T50.B91S|ICD10CM|Poisoning by oth viral vaccines, accidental, sequela|Poisoning by oth viral vaccines, accidental, sequela +C2883910|T037|PT|T50.B91S|ICD10CM|Poisoning by other viral vaccines, accidental (unintentional), sequela|Poisoning by other viral vaccines, accidental (unintentional), sequela +C2883911|T037|AB|T50.B92|ICD10CM|Poisoning by other viral vaccines, intentional self-harm|Poisoning by other viral vaccines, intentional self-harm +C2883911|T037|HT|T50.B92|ICD10CM|Poisoning by other viral vaccines, intentional self-harm|Poisoning by other viral vaccines, intentional self-harm +C2883912|T037|AB|T50.B92A|ICD10CM|Poisoning by oth viral vaccines, intentional self-harm, init|Poisoning by oth viral vaccines, intentional self-harm, init +C2883912|T037|PT|T50.B92A|ICD10CM|Poisoning by other viral vaccines, intentional self-harm, initial encounter|Poisoning by other viral vaccines, intentional self-harm, initial encounter +C2883913|T037|AB|T50.B92D|ICD10CM|Poisoning by oth viral vaccines, intentional self-harm, subs|Poisoning by oth viral vaccines, intentional self-harm, subs +C2883913|T037|PT|T50.B92D|ICD10CM|Poisoning by other viral vaccines, intentional self-harm, subsequent encounter|Poisoning by other viral vaccines, intentional self-harm, subsequent encounter +C2883914|T037|AB|T50.B92S|ICD10CM|Poisoning by oth viral vaccines, self-harm, sequela|Poisoning by oth viral vaccines, self-harm, sequela +C2883914|T037|PT|T50.B92S|ICD10CM|Poisoning by other viral vaccines, intentional self-harm, sequela|Poisoning by other viral vaccines, intentional self-harm, sequela +C2883915|T037|AB|T50.B93|ICD10CM|Poisoning by other viral vaccines, assault|Poisoning by other viral vaccines, assault +C2883915|T037|HT|T50.B93|ICD10CM|Poisoning by other viral vaccines, assault|Poisoning by other viral vaccines, assault +C2883916|T037|AB|T50.B93A|ICD10CM|Poisoning by other viral vaccines, assault, init encntr|Poisoning by other viral vaccines, assault, init encntr +C2883916|T037|PT|T50.B93A|ICD10CM|Poisoning by other viral vaccines, assault, initial encounter|Poisoning by other viral vaccines, assault, initial encounter +C2883917|T037|AB|T50.B93D|ICD10CM|Poisoning by other viral vaccines, assault, subs encntr|Poisoning by other viral vaccines, assault, subs encntr +C2883917|T037|PT|T50.B93D|ICD10CM|Poisoning by other viral vaccines, assault, subsequent encounter|Poisoning by other viral vaccines, assault, subsequent encounter +C2883918|T037|AB|T50.B93S|ICD10CM|Poisoning by other viral vaccines, assault, sequela|Poisoning by other viral vaccines, assault, sequela +C2883918|T037|PT|T50.B93S|ICD10CM|Poisoning by other viral vaccines, assault, sequela|Poisoning by other viral vaccines, assault, sequela +C2883919|T037|AB|T50.B94|ICD10CM|Poisoning by other viral vaccines, undetermined|Poisoning by other viral vaccines, undetermined +C2883919|T037|HT|T50.B94|ICD10CM|Poisoning by other viral vaccines, undetermined|Poisoning by other viral vaccines, undetermined +C2883920|T037|AB|T50.B94A|ICD10CM|Poisoning by other viral vaccines, undetermined, init encntr|Poisoning by other viral vaccines, undetermined, init encntr +C2883920|T037|PT|T50.B94A|ICD10CM|Poisoning by other viral vaccines, undetermined, initial encounter|Poisoning by other viral vaccines, undetermined, initial encounter +C2883921|T037|AB|T50.B94D|ICD10CM|Poisoning by other viral vaccines, undetermined, subs encntr|Poisoning by other viral vaccines, undetermined, subs encntr +C2883921|T037|PT|T50.B94D|ICD10CM|Poisoning by other viral vaccines, undetermined, subsequent encounter|Poisoning by other viral vaccines, undetermined, subsequent encounter +C2883922|T037|AB|T50.B94S|ICD10CM|Poisoning by other viral vaccines, undetermined, sequela|Poisoning by other viral vaccines, undetermined, sequela +C2883922|T037|PT|T50.B94S|ICD10CM|Poisoning by other viral vaccines, undetermined, sequela|Poisoning by other viral vaccines, undetermined, sequela +C2883923|T037|AB|T50.B95|ICD10CM|Adverse effect of other viral vaccines|Adverse effect of other viral vaccines +C2883923|T037|HT|T50.B95|ICD10CM|Adverse effect of other viral vaccines|Adverse effect of other viral vaccines +C2883924|T037|AB|T50.B95A|ICD10CM|Adverse effect of other viral vaccines, initial encounter|Adverse effect of other viral vaccines, initial encounter +C2883924|T037|PT|T50.B95A|ICD10CM|Adverse effect of other viral vaccines, initial encounter|Adverse effect of other viral vaccines, initial encounter +C2883925|T037|AB|T50.B95D|ICD10CM|Adverse effect of other viral vaccines, subsequent encounter|Adverse effect of other viral vaccines, subsequent encounter +C2883925|T037|PT|T50.B95D|ICD10CM|Adverse effect of other viral vaccines, subsequent encounter|Adverse effect of other viral vaccines, subsequent encounter +C2883926|T037|AB|T50.B95S|ICD10CM|Adverse effect of other viral vaccines, sequela|Adverse effect of other viral vaccines, sequela +C2883926|T037|PT|T50.B95S|ICD10CM|Adverse effect of other viral vaccines, sequela|Adverse effect of other viral vaccines, sequela +C2883927|T037|AB|T50.B96|ICD10CM|Underdosing of other viral vaccines|Underdosing of other viral vaccines +C2883927|T037|HT|T50.B96|ICD10CM|Underdosing of other viral vaccines|Underdosing of other viral vaccines +C2883928|T037|AB|T50.B96A|ICD10CM|Underdosing of other viral vaccines, initial encounter|Underdosing of other viral vaccines, initial encounter +C2883928|T037|PT|T50.B96A|ICD10CM|Underdosing of other viral vaccines, initial encounter|Underdosing of other viral vaccines, initial encounter +C2883929|T037|AB|T50.B96D|ICD10CM|Underdosing of other viral vaccines, subsequent encounter|Underdosing of other viral vaccines, subsequent encounter +C2883929|T037|PT|T50.B96D|ICD10CM|Underdosing of other viral vaccines, subsequent encounter|Underdosing of other viral vaccines, subsequent encounter +C2883930|T037|AB|T50.B96S|ICD10CM|Underdosing of other viral vaccines, sequela|Underdosing of other viral vaccines, sequela +C2883930|T037|PT|T50.B96S|ICD10CM|Underdosing of other viral vaccines, sequela|Underdosing of other viral vaccines, sequela +C2883931|T037|HT|T50.Z|ICD10CM|Poisoning by, adverse effect of and underdosing of other vaccines and biological substances|Poisoning by, adverse effect of and underdosing of other vaccines and biological substances +C2883931|T037|AB|T50.Z|ICD10CM|Vaccines and biological substances|Vaccines and biological substances +C2883932|T037|AB|T50.Z1|ICD10CM|Immunoglobulin|Immunoglobulin +C2883932|T037|HT|T50.Z1|ICD10CM|Poisoning by, adverse effect of and underdosing of immunoglobulin|Poisoning by, adverse effect of and underdosing of immunoglobulin +C2883933|T037|AB|T50.Z11|ICD10CM|Poisoning by immunoglobulin, accidental (unintentional)|Poisoning by immunoglobulin, accidental (unintentional) +C2883933|T037|HT|T50.Z11|ICD10CM|Poisoning by immunoglobulin, accidental (unintentional)|Poisoning by immunoglobulin, accidental (unintentional) +C2883934|T037|PT|T50.Z11A|ICD10CM|Poisoning by immunoglobulin, accidental (unintentional), initial encounter|Poisoning by immunoglobulin, accidental (unintentional), initial encounter +C2883934|T037|AB|T50.Z11A|ICD10CM|Poisoning by immunoglobulin, accidental, init|Poisoning by immunoglobulin, accidental, init +C2883935|T037|PT|T50.Z11D|ICD10CM|Poisoning by immunoglobulin, accidental (unintentional), subsequent encounter|Poisoning by immunoglobulin, accidental (unintentional), subsequent encounter +C2883935|T037|AB|T50.Z11D|ICD10CM|Poisoning by immunoglobulin, accidental, subs|Poisoning by immunoglobulin, accidental, subs +C2883936|T037|PT|T50.Z11S|ICD10CM|Poisoning by immunoglobulin, accidental (unintentional), sequela|Poisoning by immunoglobulin, accidental (unintentional), sequela +C2883936|T037|AB|T50.Z11S|ICD10CM|Poisoning by immunoglobulin, accidental, sequela|Poisoning by immunoglobulin, accidental, sequela +C2883937|T037|AB|T50.Z12|ICD10CM|Poisoning by immunoglobulin, intentional self-harm|Poisoning by immunoglobulin, intentional self-harm +C2883937|T037|HT|T50.Z12|ICD10CM|Poisoning by immunoglobulin, intentional self-harm|Poisoning by immunoglobulin, intentional self-harm +C2883938|T037|AB|T50.Z12A|ICD10CM|Poisoning by immunoglobulin, intentional self-harm, init|Poisoning by immunoglobulin, intentional self-harm, init +C2883938|T037|PT|T50.Z12A|ICD10CM|Poisoning by immunoglobulin, intentional self-harm, initial encounter|Poisoning by immunoglobulin, intentional self-harm, initial encounter +C2883939|T037|AB|T50.Z12D|ICD10CM|Poisoning by immunoglobulin, intentional self-harm, subs|Poisoning by immunoglobulin, intentional self-harm, subs +C2883939|T037|PT|T50.Z12D|ICD10CM|Poisoning by immunoglobulin, intentional self-harm, subsequent encounter|Poisoning by immunoglobulin, intentional self-harm, subsequent encounter +C2883940|T037|AB|T50.Z12S|ICD10CM|Poisoning by immunoglobulin, intentional self-harm, sequela|Poisoning by immunoglobulin, intentional self-harm, sequela +C2883940|T037|PT|T50.Z12S|ICD10CM|Poisoning by immunoglobulin, intentional self-harm, sequela|Poisoning by immunoglobulin, intentional self-harm, sequela +C2883941|T037|AB|T50.Z13|ICD10CM|Poisoning by immunoglobulin, assault|Poisoning by immunoglobulin, assault +C2883941|T037|HT|T50.Z13|ICD10CM|Poisoning by immunoglobulin, assault|Poisoning by immunoglobulin, assault +C2883942|T037|AB|T50.Z13A|ICD10CM|Poisoning by immunoglobulin, assault, initial encounter|Poisoning by immunoglobulin, assault, initial encounter +C2883942|T037|PT|T50.Z13A|ICD10CM|Poisoning by immunoglobulin, assault, initial encounter|Poisoning by immunoglobulin, assault, initial encounter +C2883943|T037|AB|T50.Z13D|ICD10CM|Poisoning by immunoglobulin, assault, subsequent encounter|Poisoning by immunoglobulin, assault, subsequent encounter +C2883943|T037|PT|T50.Z13D|ICD10CM|Poisoning by immunoglobulin, assault, subsequent encounter|Poisoning by immunoglobulin, assault, subsequent encounter +C2883944|T037|AB|T50.Z13S|ICD10CM|Poisoning by immunoglobulin, assault, sequela|Poisoning by immunoglobulin, assault, sequela +C2883944|T037|PT|T50.Z13S|ICD10CM|Poisoning by immunoglobulin, assault, sequela|Poisoning by immunoglobulin, assault, sequela +C2883945|T037|AB|T50.Z14|ICD10CM|Poisoning by immunoglobulin, undetermined|Poisoning by immunoglobulin, undetermined +C2883945|T037|HT|T50.Z14|ICD10CM|Poisoning by immunoglobulin, undetermined|Poisoning by immunoglobulin, undetermined +C2883946|T037|AB|T50.Z14A|ICD10CM|Poisoning by immunoglobulin, undetermined, initial encounter|Poisoning by immunoglobulin, undetermined, initial encounter +C2883946|T037|PT|T50.Z14A|ICD10CM|Poisoning by immunoglobulin, undetermined, initial encounter|Poisoning by immunoglobulin, undetermined, initial encounter +C2883947|T037|AB|T50.Z14D|ICD10CM|Poisoning by immunoglobulin, undetermined, subs encntr|Poisoning by immunoglobulin, undetermined, subs encntr +C2883947|T037|PT|T50.Z14D|ICD10CM|Poisoning by immunoglobulin, undetermined, subsequent encounter|Poisoning by immunoglobulin, undetermined, subsequent encounter +C2883948|T037|AB|T50.Z14S|ICD10CM|Poisoning by immunoglobulin, undetermined, sequela|Poisoning by immunoglobulin, undetermined, sequela +C2883948|T037|PT|T50.Z14S|ICD10CM|Poisoning by immunoglobulin, undetermined, sequela|Poisoning by immunoglobulin, undetermined, sequela +C2883949|T037|AB|T50.Z15|ICD10CM|Adverse effect of immunoglobulin|Adverse effect of immunoglobulin +C2883949|T037|HT|T50.Z15|ICD10CM|Adverse effect of immunoglobulin|Adverse effect of immunoglobulin +C2883950|T037|AB|T50.Z15A|ICD10CM|Adverse effect of immunoglobulin, initial encounter|Adverse effect of immunoglobulin, initial encounter +C2883950|T037|PT|T50.Z15A|ICD10CM|Adverse effect of immunoglobulin, initial encounter|Adverse effect of immunoglobulin, initial encounter +C2883951|T037|AB|T50.Z15D|ICD10CM|Adverse effect of immunoglobulin, subsequent encounter|Adverse effect of immunoglobulin, subsequent encounter +C2883951|T037|PT|T50.Z15D|ICD10CM|Adverse effect of immunoglobulin, subsequent encounter|Adverse effect of immunoglobulin, subsequent encounter +C2883952|T037|AB|T50.Z15S|ICD10CM|Adverse effect of immunoglobulin, sequela|Adverse effect of immunoglobulin, sequela +C2883952|T037|PT|T50.Z15S|ICD10CM|Adverse effect of immunoglobulin, sequela|Adverse effect of immunoglobulin, sequela +C2883953|T037|AB|T50.Z16|ICD10CM|Underdosing of immunoglobulin|Underdosing of immunoglobulin +C2883953|T037|HT|T50.Z16|ICD10CM|Underdosing of immunoglobulin|Underdosing of immunoglobulin +C2883954|T037|AB|T50.Z16A|ICD10CM|Underdosing of immunoglobulin, initial encounter|Underdosing of immunoglobulin, initial encounter +C2883954|T037|PT|T50.Z16A|ICD10CM|Underdosing of immunoglobulin, initial encounter|Underdosing of immunoglobulin, initial encounter +C2883955|T037|AB|T50.Z16D|ICD10CM|Underdosing of immunoglobulin, subsequent encounter|Underdosing of immunoglobulin, subsequent encounter +C2883955|T037|PT|T50.Z16D|ICD10CM|Underdosing of immunoglobulin, subsequent encounter|Underdosing of immunoglobulin, subsequent encounter +C2883956|T037|AB|T50.Z16S|ICD10CM|Underdosing of immunoglobulin, sequela|Underdosing of immunoglobulin, sequela +C2883956|T037|PT|T50.Z16S|ICD10CM|Underdosing of immunoglobulin, sequela|Underdosing of immunoglobulin, sequela +C2883931|T037|HT|T50.Z9|ICD10CM|Poisoning by, adverse effect of and underdosing of other vaccines and biological substances|Poisoning by, adverse effect of and underdosing of other vaccines and biological substances +C2883931|T037|AB|T50.Z9|ICD10CM|Vaccines and biological substances|Vaccines and biological substances +C2883957|T037|AB|T50.Z91|ICD10CM|Poisoning by oth vaccines and biological substances, acc|Poisoning by oth vaccines and biological substances, acc +C2883957|T037|HT|T50.Z91|ICD10CM|Poisoning by other vaccines and biological substances, accidental (unintentional)|Poisoning by other vaccines and biological substances, accidental (unintentional) +C2883958|T037|AB|T50.Z91A|ICD10CM|Poisoning by oth vaccines and biolg substances, acc, init|Poisoning by oth vaccines and biolg substances, acc, init +C2883958|T037|PT|T50.Z91A|ICD10CM|Poisoning by other vaccines and biological substances, accidental (unintentional), initial encounter|Poisoning by other vaccines and biological substances, accidental (unintentional), initial encounter +C2883959|T037|AB|T50.Z91D|ICD10CM|Poisoning by oth vaccines and biolg substances, acc, subs|Poisoning by oth vaccines and biolg substances, acc, subs +C2883960|T037|AB|T50.Z91S|ICD10CM|Poisoning by oth vaccines and biolg substnc, acc, sequela|Poisoning by oth vaccines and biolg substnc, acc, sequela +C2883960|T037|PT|T50.Z91S|ICD10CM|Poisoning by other vaccines and biological substances, accidental (unintentional), sequela|Poisoning by other vaccines and biological substances, accidental (unintentional), sequela +C2883961|T037|AB|T50.Z92|ICD10CM|Poisoning by oth vaccines and biolg substances, self-harm|Poisoning by oth vaccines and biolg substances, self-harm +C2883961|T037|HT|T50.Z92|ICD10CM|Poisoning by other vaccines and biological substances, intentional self-harm|Poisoning by other vaccines and biological substances, intentional self-harm +C2883962|T037|AB|T50.Z92A|ICD10CM|Poisoning by oth vaccines and biolg substnc, self-harm, init|Poisoning by oth vaccines and biolg substnc, self-harm, init +C2883962|T037|PT|T50.Z92A|ICD10CM|Poisoning by other vaccines and biological substances, intentional self-harm, initial encounter|Poisoning by other vaccines and biological substances, intentional self-harm, initial encounter +C2883963|T037|AB|T50.Z92D|ICD10CM|Poisoning by oth vaccines and biolg substnc, self-harm, subs|Poisoning by oth vaccines and biolg substnc, self-harm, subs +C2883963|T037|PT|T50.Z92D|ICD10CM|Poisoning by other vaccines and biological substances, intentional self-harm, subsequent encounter|Poisoning by other vaccines and biological substances, intentional self-harm, subsequent encounter +C2883964|T037|AB|T50.Z92S|ICD10CM|Poisn by oth vaccines and biolg substnc, self-harm, sequela|Poisn by oth vaccines and biolg substnc, self-harm, sequela +C2883964|T037|PT|T50.Z92S|ICD10CM|Poisoning by other vaccines and biological substances, intentional self-harm, sequela|Poisoning by other vaccines and biological substances, intentional self-harm, sequela +C2883965|T037|AB|T50.Z93|ICD10CM|Poisoning by oth vaccines and biological substances, assault|Poisoning by oth vaccines and biological substances, assault +C2883965|T037|HT|T50.Z93|ICD10CM|Poisoning by other vaccines and biological substances, assault|Poisoning by other vaccines and biological substances, assault +C2883966|T037|AB|T50.Z93A|ICD10CM|Poisoning by oth vaccines and biolg substnc, assault, init|Poisoning by oth vaccines and biolg substnc, assault, init +C2883966|T037|PT|T50.Z93A|ICD10CM|Poisoning by other vaccines and biological substances, assault, initial encounter|Poisoning by other vaccines and biological substances, assault, initial encounter +C2883967|T037|AB|T50.Z93D|ICD10CM|Poisoning by oth vaccines and biolg substnc, assault, subs|Poisoning by oth vaccines and biolg substnc, assault, subs +C2883967|T037|PT|T50.Z93D|ICD10CM|Poisoning by other vaccines and biological substances, assault, subsequent encounter|Poisoning by other vaccines and biological substances, assault, subsequent encounter +C2883968|T037|AB|T50.Z93S|ICD10CM|Poisn by oth vaccines and biolg substnc, assault, sequela|Poisn by oth vaccines and biolg substnc, assault, sequela +C2883968|T037|PT|T50.Z93S|ICD10CM|Poisoning by other vaccines and biological substances, assault, sequela|Poisoning by other vaccines and biological substances, assault, sequela +C2883969|T037|AB|T50.Z94|ICD10CM|Poisoning by oth vaccines and biological substances, undet|Poisoning by oth vaccines and biological substances, undet +C2883969|T037|HT|T50.Z94|ICD10CM|Poisoning by other vaccines and biological substances, undetermined|Poisoning by other vaccines and biological substances, undetermined +C2883970|T037|AB|T50.Z94A|ICD10CM|Poisoning by oth vaccines and biolg substances, undet, init|Poisoning by oth vaccines and biolg substances, undet, init +C2883970|T037|PT|T50.Z94A|ICD10CM|Poisoning by other vaccines and biological substances, undetermined, initial encounter|Poisoning by other vaccines and biological substances, undetermined, initial encounter +C2883971|T037|AB|T50.Z94D|ICD10CM|Poisoning by oth vaccines and biolg substances, undet, subs|Poisoning by oth vaccines and biolg substances, undet, subs +C2883971|T037|PT|T50.Z94D|ICD10CM|Poisoning by other vaccines and biological substances, undetermined, subsequent encounter|Poisoning by other vaccines and biological substances, undetermined, subsequent encounter +C2883972|T037|AB|T50.Z94S|ICD10CM|Poisoning by oth vaccines and biolg substnc, undet, sequela|Poisoning by oth vaccines and biolg substnc, undet, sequela +C2883972|T037|PT|T50.Z94S|ICD10CM|Poisoning by other vaccines and biological substances, undetermined, sequela|Poisoning by other vaccines and biological substances, undetermined, sequela +C2883973|T037|AB|T50.Z95|ICD10CM|Adverse effect of other vaccines and biological substances|Adverse effect of other vaccines and biological substances +C2883973|T037|HT|T50.Z95|ICD10CM|Adverse effect of other vaccines and biological substances|Adverse effect of other vaccines and biological substances +C2883974|T037|PT|T50.Z95A|ICD10CM|Adverse effect of other vaccines and biological substances, initial encounter|Adverse effect of other vaccines and biological substances, initial encounter +C2883974|T037|AB|T50.Z95A|ICD10CM|Adverse effect of vaccines and biological substances, init|Adverse effect of vaccines and biological substances, init +C2883975|T037|PT|T50.Z95D|ICD10CM|Adverse effect of other vaccines and biological substances, subsequent encounter|Adverse effect of other vaccines and biological substances, subsequent encounter +C2883975|T037|AB|T50.Z95D|ICD10CM|Adverse effect of vaccines and biological substances, subs|Adverse effect of vaccines and biological substances, subs +C2883976|T037|PT|T50.Z95S|ICD10CM|Adverse effect of other vaccines and biological substances, sequela|Adverse effect of other vaccines and biological substances, sequela +C2883976|T037|AB|T50.Z95S|ICD10CM|Adverse effect of vaccines and biolg substances, sequela|Adverse effect of vaccines and biolg substances, sequela +C2883977|T037|AB|T50.Z96|ICD10CM|Underdosing of other vaccines and biological substances|Underdosing of other vaccines and biological substances +C2883977|T037|HT|T50.Z96|ICD10CM|Underdosing of other vaccines and biological substances|Underdosing of other vaccines and biological substances +C2883978|T037|AB|T50.Z96A|ICD10CM|Underdosing of oth vaccines and biological substances, init|Underdosing of oth vaccines and biological substances, init +C2883978|T037|PT|T50.Z96A|ICD10CM|Underdosing of other vaccines and biological substances, initial encounter|Underdosing of other vaccines and biological substances, initial encounter +C2883979|T037|AB|T50.Z96D|ICD10CM|Underdosing of oth vaccines and biological substances, subs|Underdosing of oth vaccines and biological substances, subs +C2883979|T037|PT|T50.Z96D|ICD10CM|Underdosing of other vaccines and biological substances, subsequent encounter|Underdosing of other vaccines and biological substances, subsequent encounter +C2883980|T037|PT|T50.Z96S|ICD10CM|Underdosing of other vaccines and biological substances, sequela|Underdosing of other vaccines and biological substances, sequela +C2883980|T037|AB|T50.Z96S|ICD10CM|Underdosing of vaccines and biological substances, sequela|Underdosing of vaccines and biological substances, sequela +C0161678|T037|HT|T51|ICD10|Toxic effect of alcohol|Toxic effect of alcohol +C0161678|T037|HT|T51|ICD10CM|Toxic effect of alcohol|Toxic effect of alcohol +C0161678|T037|AB|T51|ICD10CM|Toxic effect of alcohol|Toxic effect of alcohol +C0274829|T037|HT|T51-T65|ICD10CM|Toxic effects of substances chiefly nonmedicinal as to source (T51-T65)|Toxic effects of substances chiefly nonmedicinal as to source (T51-T65) +C0274829|T037|HT|T51-T65.9|ICD10|Toxic effects of substances chiefly nonmedicinal as to source|Toxic effects of substances chiefly nonmedicinal as to source +C0161679|T037|PS|T51.0|ICD10|Ethanol|Ethanol +C0161679|T037|PX|T51.0|ICD10|Toxic effect of ethanol|Toxic effect of ethanol +C0161679|T037|HT|T51.0|ICD10CM|Toxic effect of ethanol|Toxic effect of ethanol +C0161679|T037|AB|T51.0|ICD10CM|Toxic effect of ethanol|Toxic effect of ethanol +C0161679|T037|ET|T51.0|ICD10CM|Toxic effect of ethyl alcohol|Toxic effect of ethyl alcohol +C0161679|T037|HT|T51.0X|ICD10CM|Toxic effect of ethanol|Toxic effect of ethanol +C0161679|T037|AB|T51.0X|ICD10CM|Toxic effect of ethanol|Toxic effect of ethanol +C0161679|T037|ET|T51.0X1|ICD10CM|Toxic effect of ethanol NOS|Toxic effect of ethanol NOS +C2883981|T037|AB|T51.0X1|ICD10CM|Toxic effect of ethanol, accidental (unintentional)|Toxic effect of ethanol, accidental (unintentional) +C2883981|T037|HT|T51.0X1|ICD10CM|Toxic effect of ethanol, accidental (unintentional)|Toxic effect of ethanol, accidental (unintentional) +C2883982|T037|AB|T51.0X1A|ICD10CM|Toxic effect of ethanol, accidental (unintentional), init|Toxic effect of ethanol, accidental (unintentional), init +C2883982|T037|PT|T51.0X1A|ICD10CM|Toxic effect of ethanol, accidental (unintentional), initial encounter|Toxic effect of ethanol, accidental (unintentional), initial encounter +C2883983|T037|AB|T51.0X1D|ICD10CM|Toxic effect of ethanol, accidental (unintentional), subs|Toxic effect of ethanol, accidental (unintentional), subs +C2883983|T037|PT|T51.0X1D|ICD10CM|Toxic effect of ethanol, accidental (unintentional), subsequent encounter|Toxic effect of ethanol, accidental (unintentional), subsequent encounter +C2883984|T037|AB|T51.0X1S|ICD10CM|Toxic effect of ethanol, accidental (unintentional), sequela|Toxic effect of ethanol, accidental (unintentional), sequela +C2883984|T037|PT|T51.0X1S|ICD10CM|Toxic effect of ethanol, accidental (unintentional), sequela|Toxic effect of ethanol, accidental (unintentional), sequela +C2883985|T037|AB|T51.0X2|ICD10CM|Toxic effect of ethanol, intentional self-harm|Toxic effect of ethanol, intentional self-harm +C2883985|T037|HT|T51.0X2|ICD10CM|Toxic effect of ethanol, intentional self-harm|Toxic effect of ethanol, intentional self-harm +C2883986|T037|AB|T51.0X2A|ICD10CM|Toxic effect of ethanol, intentional self-harm, init encntr|Toxic effect of ethanol, intentional self-harm, init encntr +C2883986|T037|PT|T51.0X2A|ICD10CM|Toxic effect of ethanol, intentional self-harm, initial encounter|Toxic effect of ethanol, intentional self-harm, initial encounter +C2883987|T037|AB|T51.0X2D|ICD10CM|Toxic effect of ethanol, intentional self-harm, subs encntr|Toxic effect of ethanol, intentional self-harm, subs encntr +C2883987|T037|PT|T51.0X2D|ICD10CM|Toxic effect of ethanol, intentional self-harm, subsequent encounter|Toxic effect of ethanol, intentional self-harm, subsequent encounter +C2883988|T037|AB|T51.0X2S|ICD10CM|Toxic effect of ethanol, intentional self-harm, sequela|Toxic effect of ethanol, intentional self-harm, sequela +C2883988|T037|PT|T51.0X2S|ICD10CM|Toxic effect of ethanol, intentional self-harm, sequela|Toxic effect of ethanol, intentional self-harm, sequela +C2883989|T037|AB|T51.0X3|ICD10CM|Toxic effect of ethanol, assault|Toxic effect of ethanol, assault +C2883989|T037|HT|T51.0X3|ICD10CM|Toxic effect of ethanol, assault|Toxic effect of ethanol, assault +C2883990|T037|AB|T51.0X3A|ICD10CM|Toxic effect of ethanol, assault, initial encounter|Toxic effect of ethanol, assault, initial encounter +C2883990|T037|PT|T51.0X3A|ICD10CM|Toxic effect of ethanol, assault, initial encounter|Toxic effect of ethanol, assault, initial encounter +C2883991|T037|AB|T51.0X3D|ICD10CM|Toxic effect of ethanol, assault, subsequent encounter|Toxic effect of ethanol, assault, subsequent encounter +C2883991|T037|PT|T51.0X3D|ICD10CM|Toxic effect of ethanol, assault, subsequent encounter|Toxic effect of ethanol, assault, subsequent encounter +C2883992|T037|AB|T51.0X3S|ICD10CM|Toxic effect of ethanol, assault, sequela|Toxic effect of ethanol, assault, sequela +C2883992|T037|PT|T51.0X3S|ICD10CM|Toxic effect of ethanol, assault, sequela|Toxic effect of ethanol, assault, sequela +C2883993|T037|AB|T51.0X4|ICD10CM|Toxic effect of ethanol, undetermined|Toxic effect of ethanol, undetermined +C2883993|T037|HT|T51.0X4|ICD10CM|Toxic effect of ethanol, undetermined|Toxic effect of ethanol, undetermined +C2883994|T037|AB|T51.0X4A|ICD10CM|Toxic effect of ethanol, undetermined, initial encounter|Toxic effect of ethanol, undetermined, initial encounter +C2883994|T037|PT|T51.0X4A|ICD10CM|Toxic effect of ethanol, undetermined, initial encounter|Toxic effect of ethanol, undetermined, initial encounter +C2883995|T037|AB|T51.0X4D|ICD10CM|Toxic effect of ethanol, undetermined, subsequent encounter|Toxic effect of ethanol, undetermined, subsequent encounter +C2883995|T037|PT|T51.0X4D|ICD10CM|Toxic effect of ethanol, undetermined, subsequent encounter|Toxic effect of ethanol, undetermined, subsequent encounter +C2883996|T037|AB|T51.0X4S|ICD10CM|Toxic effect of ethanol, undetermined, sequela|Toxic effect of ethanol, undetermined, sequela +C2883996|T037|PT|T51.0X4S|ICD10CM|Toxic effect of ethanol, undetermined, sequela|Toxic effect of ethanol, undetermined, sequela +C0161680|T037|PS|T51.1|ICD10|Methanol|Methanol +C0161680|T037|PX|T51.1|ICD10|Toxic effect of methanol|Toxic effect of methanol +C0161680|T037|HT|T51.1|ICD10CM|Toxic effect of methanol|Toxic effect of methanol +C0161680|T037|AB|T51.1|ICD10CM|Toxic effect of methanol|Toxic effect of methanol +C0161680|T037|ET|T51.1|ICD10CM|Toxic effect of methyl alcohol|Toxic effect of methyl alcohol +C0161680|T037|HT|T51.1X|ICD10CM|Toxic effect of methanol|Toxic effect of methanol +C0161680|T037|AB|T51.1X|ICD10CM|Toxic effect of methanol|Toxic effect of methanol +C0161680|T037|ET|T51.1X1|ICD10CM|Toxic effect of methanol NOS|Toxic effect of methanol NOS +C2883997|T037|AB|T51.1X1|ICD10CM|Toxic effect of methanol, accidental (unintentional)|Toxic effect of methanol, accidental (unintentional) +C2883997|T037|HT|T51.1X1|ICD10CM|Toxic effect of methanol, accidental (unintentional)|Toxic effect of methanol, accidental (unintentional) +C2883998|T037|AB|T51.1X1A|ICD10CM|Toxic effect of methanol, accidental (unintentional), init|Toxic effect of methanol, accidental (unintentional), init +C2883998|T037|PT|T51.1X1A|ICD10CM|Toxic effect of methanol, accidental (unintentional), initial encounter|Toxic effect of methanol, accidental (unintentional), initial encounter +C2883999|T037|AB|T51.1X1D|ICD10CM|Toxic effect of methanol, accidental (unintentional), subs|Toxic effect of methanol, accidental (unintentional), subs +C2883999|T037|PT|T51.1X1D|ICD10CM|Toxic effect of methanol, accidental (unintentional), subsequent encounter|Toxic effect of methanol, accidental (unintentional), subsequent encounter +C2884000|T037|PT|T51.1X1S|ICD10CM|Toxic effect of methanol, accidental (unintentional), sequela|Toxic effect of methanol, accidental (unintentional), sequela +C2884000|T037|AB|T51.1X1S|ICD10CM|Toxic effect of methanol, accidental, sequela|Toxic effect of methanol, accidental, sequela +C2884001|T037|AB|T51.1X2|ICD10CM|Toxic effect of methanol, intentional self-harm|Toxic effect of methanol, intentional self-harm +C2884001|T037|HT|T51.1X2|ICD10CM|Toxic effect of methanol, intentional self-harm|Toxic effect of methanol, intentional self-harm +C2884002|T037|AB|T51.1X2A|ICD10CM|Toxic effect of methanol, intentional self-harm, init encntr|Toxic effect of methanol, intentional self-harm, init encntr +C2884002|T037|PT|T51.1X2A|ICD10CM|Toxic effect of methanol, intentional self-harm, initial encounter|Toxic effect of methanol, intentional self-harm, initial encounter +C2884003|T037|AB|T51.1X2D|ICD10CM|Toxic effect of methanol, intentional self-harm, subs encntr|Toxic effect of methanol, intentional self-harm, subs encntr +C2884003|T037|PT|T51.1X2D|ICD10CM|Toxic effect of methanol, intentional self-harm, subsequent encounter|Toxic effect of methanol, intentional self-harm, subsequent encounter +C2884004|T037|AB|T51.1X2S|ICD10CM|Toxic effect of methanol, intentional self-harm, sequela|Toxic effect of methanol, intentional self-harm, sequela +C2884004|T037|PT|T51.1X2S|ICD10CM|Toxic effect of methanol, intentional self-harm, sequela|Toxic effect of methanol, intentional self-harm, sequela +C2884005|T037|AB|T51.1X3|ICD10CM|Toxic effect of methanol, assault|Toxic effect of methanol, assault +C2884005|T037|HT|T51.1X3|ICD10CM|Toxic effect of methanol, assault|Toxic effect of methanol, assault +C2884006|T037|AB|T51.1X3A|ICD10CM|Toxic effect of methanol, assault, initial encounter|Toxic effect of methanol, assault, initial encounter +C2884006|T037|PT|T51.1X3A|ICD10CM|Toxic effect of methanol, assault, initial encounter|Toxic effect of methanol, assault, initial encounter +C2884007|T037|AB|T51.1X3D|ICD10CM|Toxic effect of methanol, assault, subsequent encounter|Toxic effect of methanol, assault, subsequent encounter +C2884007|T037|PT|T51.1X3D|ICD10CM|Toxic effect of methanol, assault, subsequent encounter|Toxic effect of methanol, assault, subsequent encounter +C2884008|T037|AB|T51.1X3S|ICD10CM|Toxic effect of methanol, assault, sequela|Toxic effect of methanol, assault, sequela +C2884008|T037|PT|T51.1X3S|ICD10CM|Toxic effect of methanol, assault, sequela|Toxic effect of methanol, assault, sequela +C2884009|T037|AB|T51.1X4|ICD10CM|Toxic effect of methanol, undetermined|Toxic effect of methanol, undetermined +C2884009|T037|HT|T51.1X4|ICD10CM|Toxic effect of methanol, undetermined|Toxic effect of methanol, undetermined +C2884010|T037|AB|T51.1X4A|ICD10CM|Toxic effect of methanol, undetermined, initial encounter|Toxic effect of methanol, undetermined, initial encounter +C2884010|T037|PT|T51.1X4A|ICD10CM|Toxic effect of methanol, undetermined, initial encounter|Toxic effect of methanol, undetermined, initial encounter +C2884011|T037|AB|T51.1X4D|ICD10CM|Toxic effect of methanol, undetermined, subsequent encounter|Toxic effect of methanol, undetermined, subsequent encounter +C2884011|T037|PT|T51.1X4D|ICD10CM|Toxic effect of methanol, undetermined, subsequent encounter|Toxic effect of methanol, undetermined, subsequent encounter +C2884012|T037|AB|T51.1X4S|ICD10CM|Toxic effect of methanol, undetermined, sequela|Toxic effect of methanol, undetermined, sequela +C2884012|T037|PT|T51.1X4S|ICD10CM|Toxic effect of methanol, undetermined, sequela|Toxic effect of methanol, undetermined, sequela +C0161681|T037|PS|T51.2|ICD10|2-Propanol|2-Propanol +C0161681|T037|PX|T51.2|ICD10|Toxic effect of 2-propanol|Toxic effect of 2-propanol +C0161681|T037|AB|T51.2|ICD10CM|Toxic effect of 2-Propanol|Toxic effect of 2-Propanol +C0161681|T037|HT|T51.2|ICD10CM|Toxic effect of 2-Propanol|Toxic effect of 2-Propanol +C0161681|T037|ET|T51.2|ICD10CM|Toxic effect of isopropyl alcohol|Toxic effect of isopropyl alcohol +C0161681|T037|HT|T51.2X|ICD10CM|Toxic effect of 2-Propanol|Toxic effect of 2-Propanol +C0161681|T037|AB|T51.2X|ICD10CM|Toxic effect of 2-Propanol|Toxic effect of 2-Propanol +C0161681|T037|ET|T51.2X1|ICD10CM|Toxic effect of 2-Propanol NOS|Toxic effect of 2-Propanol NOS +C2884013|T037|AB|T51.2X1|ICD10CM|Toxic effect of 2-Propanol, accidental (unintentional)|Toxic effect of 2-Propanol, accidental (unintentional) +C2884013|T037|HT|T51.2X1|ICD10CM|Toxic effect of 2-Propanol, accidental (unintentional)|Toxic effect of 2-Propanol, accidental (unintentional) +C2884014|T037|AB|T51.2X1A|ICD10CM|Toxic effect of 2-Propanol, accidental (unintentional), init|Toxic effect of 2-Propanol, accidental (unintentional), init +C2884014|T037|PT|T51.2X1A|ICD10CM|Toxic effect of 2-Propanol, accidental (unintentional), initial encounter|Toxic effect of 2-Propanol, accidental (unintentional), initial encounter +C2884015|T037|AB|T51.2X1D|ICD10CM|Toxic effect of 2-Propanol, accidental (unintentional), subs|Toxic effect of 2-Propanol, accidental (unintentional), subs +C2884015|T037|PT|T51.2X1D|ICD10CM|Toxic effect of 2-Propanol, accidental (unintentional), subsequent encounter|Toxic effect of 2-Propanol, accidental (unintentional), subsequent encounter +C2884016|T037|PT|T51.2X1S|ICD10CM|Toxic effect of 2-Propanol, accidental (unintentional), sequela|Toxic effect of 2-Propanol, accidental (unintentional), sequela +C2884016|T037|AB|T51.2X1S|ICD10CM|Toxic effect of 2-Propanol, accidental, sequela|Toxic effect of 2-Propanol, accidental, sequela +C2884017|T037|AB|T51.2X2|ICD10CM|Toxic effect of 2-Propanol, intentional self-harm|Toxic effect of 2-Propanol, intentional self-harm +C2884017|T037|HT|T51.2X2|ICD10CM|Toxic effect of 2-Propanol, intentional self-harm|Toxic effect of 2-Propanol, intentional self-harm +C2884018|T037|AB|T51.2X2A|ICD10CM|Toxic effect of 2-Propanol, intentional self-harm, init|Toxic effect of 2-Propanol, intentional self-harm, init +C2884018|T037|PT|T51.2X2A|ICD10CM|Toxic effect of 2-Propanol, intentional self-harm, initial encounter|Toxic effect of 2-Propanol, intentional self-harm, initial encounter +C2884019|T037|AB|T51.2X2D|ICD10CM|Toxic effect of 2-Propanol, intentional self-harm, subs|Toxic effect of 2-Propanol, intentional self-harm, subs +C2884019|T037|PT|T51.2X2D|ICD10CM|Toxic effect of 2-Propanol, intentional self-harm, subsequent encounter|Toxic effect of 2-Propanol, intentional self-harm, subsequent encounter +C2884020|T037|AB|T51.2X2S|ICD10CM|Toxic effect of 2-Propanol, intentional self-harm, sequela|Toxic effect of 2-Propanol, intentional self-harm, sequela +C2884020|T037|PT|T51.2X2S|ICD10CM|Toxic effect of 2-Propanol, intentional self-harm, sequela|Toxic effect of 2-Propanol, intentional self-harm, sequela +C2884021|T037|AB|T51.2X3|ICD10CM|Toxic effect of 2-Propanol, assault|Toxic effect of 2-Propanol, assault +C2884021|T037|HT|T51.2X3|ICD10CM|Toxic effect of 2-Propanol, assault|Toxic effect of 2-Propanol, assault +C2884022|T037|AB|T51.2X3A|ICD10CM|Toxic effect of 2-Propanol, assault, initial encounter|Toxic effect of 2-Propanol, assault, initial encounter +C2884022|T037|PT|T51.2X3A|ICD10CM|Toxic effect of 2-Propanol, assault, initial encounter|Toxic effect of 2-Propanol, assault, initial encounter +C2884023|T037|AB|T51.2X3D|ICD10CM|Toxic effect of 2-Propanol, assault, subsequent encounter|Toxic effect of 2-Propanol, assault, subsequent encounter +C2884023|T037|PT|T51.2X3D|ICD10CM|Toxic effect of 2-Propanol, assault, subsequent encounter|Toxic effect of 2-Propanol, assault, subsequent encounter +C2884024|T037|AB|T51.2X3S|ICD10CM|Toxic effect of 2-Propanol, assault, sequela|Toxic effect of 2-Propanol, assault, sequela +C2884024|T037|PT|T51.2X3S|ICD10CM|Toxic effect of 2-Propanol, assault, sequela|Toxic effect of 2-Propanol, assault, sequela +C2884025|T037|AB|T51.2X4|ICD10CM|Toxic effect of 2-Propanol, undetermined|Toxic effect of 2-Propanol, undetermined +C2884025|T037|HT|T51.2X4|ICD10CM|Toxic effect of 2-Propanol, undetermined|Toxic effect of 2-Propanol, undetermined +C2884026|T037|AB|T51.2X4A|ICD10CM|Toxic effect of 2-Propanol, undetermined, initial encounter|Toxic effect of 2-Propanol, undetermined, initial encounter +C2884026|T037|PT|T51.2X4A|ICD10CM|Toxic effect of 2-Propanol, undetermined, initial encounter|Toxic effect of 2-Propanol, undetermined, initial encounter +C2884027|T037|AB|T51.2X4D|ICD10CM|Toxic effect of 2-Propanol, undetermined, subs encntr|Toxic effect of 2-Propanol, undetermined, subs encntr +C2884027|T037|PT|T51.2X4D|ICD10CM|Toxic effect of 2-Propanol, undetermined, subsequent encounter|Toxic effect of 2-Propanol, undetermined, subsequent encounter +C2884028|T037|AB|T51.2X4S|ICD10CM|Toxic effect of 2-Propanol, undetermined, sequela|Toxic effect of 2-Propanol, undetermined, sequela +C2884028|T037|PT|T51.2X4S|ICD10CM|Toxic effect of 2-Propanol, undetermined, sequela|Toxic effect of 2-Propanol, undetermined, sequela +C0161682|T037|PS|T51.3|ICD10|Fusel oil|Fusel oil +C0274832|T037|ET|T51.3|ICD10CM|Toxic effect of amyl alcohol|Toxic effect of amyl alcohol +C2884029|T037|ET|T51.3|ICD10CM|Toxic effect of butyl [1-butanol] alcohol|Toxic effect of butyl [1-butanol] alcohol +C0161682|T037|HT|T51.3|ICD10CM|Toxic effect of fusel oil|Toxic effect of fusel oil +C0161682|T037|AB|T51.3|ICD10CM|Toxic effect of fusel oil|Toxic effect of fusel oil +C0161682|T037|PX|T51.3|ICD10|Toxic effect of fusel oil|Toxic effect of fusel oil +C2884030|T037|ET|T51.3|ICD10CM|Toxic effect of propyl [1-propanol] alcohol|Toxic effect of propyl [1-propanol] alcohol +C0161682|T037|HT|T51.3X|ICD10CM|Toxic effect of fusel oil|Toxic effect of fusel oil +C0161682|T037|AB|T51.3X|ICD10CM|Toxic effect of fusel oil|Toxic effect of fusel oil +C0161682|T037|ET|T51.3X1|ICD10CM|Toxic effect of fusel oil NOS|Toxic effect of fusel oil NOS +C2884031|T037|AB|T51.3X1|ICD10CM|Toxic effect of fusel oil, accidental (unintentional)|Toxic effect of fusel oil, accidental (unintentional) +C2884031|T037|HT|T51.3X1|ICD10CM|Toxic effect of fusel oil, accidental (unintentional)|Toxic effect of fusel oil, accidental (unintentional) +C2884032|T037|AB|T51.3X1A|ICD10CM|Toxic effect of fusel oil, accidental (unintentional), init|Toxic effect of fusel oil, accidental (unintentional), init +C2884032|T037|PT|T51.3X1A|ICD10CM|Toxic effect of fusel oil, accidental (unintentional), initial encounter|Toxic effect of fusel oil, accidental (unintentional), initial encounter +C2884033|T037|AB|T51.3X1D|ICD10CM|Toxic effect of fusel oil, accidental (unintentional), subs|Toxic effect of fusel oil, accidental (unintentional), subs +C2884033|T037|PT|T51.3X1D|ICD10CM|Toxic effect of fusel oil, accidental (unintentional), subsequent encounter|Toxic effect of fusel oil, accidental (unintentional), subsequent encounter +C2884034|T037|PT|T51.3X1S|ICD10CM|Toxic effect of fusel oil, accidental (unintentional), sequela|Toxic effect of fusel oil, accidental (unintentional), sequela +C2884034|T037|AB|T51.3X1S|ICD10CM|Toxic effect of fusel oil, accidental, sequela|Toxic effect of fusel oil, accidental, sequela +C2884035|T037|AB|T51.3X2|ICD10CM|Toxic effect of fusel oil, intentional self-harm|Toxic effect of fusel oil, intentional self-harm +C2884035|T037|HT|T51.3X2|ICD10CM|Toxic effect of fusel oil, intentional self-harm|Toxic effect of fusel oil, intentional self-harm +C2884036|T037|AB|T51.3X2A|ICD10CM|Toxic effect of fusel oil, intentional self-harm, init|Toxic effect of fusel oil, intentional self-harm, init +C2884036|T037|PT|T51.3X2A|ICD10CM|Toxic effect of fusel oil, intentional self-harm, initial encounter|Toxic effect of fusel oil, intentional self-harm, initial encounter +C2884037|T037|AB|T51.3X2D|ICD10CM|Toxic effect of fusel oil, intentional self-harm, subs|Toxic effect of fusel oil, intentional self-harm, subs +C2884037|T037|PT|T51.3X2D|ICD10CM|Toxic effect of fusel oil, intentional self-harm, subsequent encounter|Toxic effect of fusel oil, intentional self-harm, subsequent encounter +C2884038|T037|AB|T51.3X2S|ICD10CM|Toxic effect of fusel oil, intentional self-harm, sequela|Toxic effect of fusel oil, intentional self-harm, sequela +C2884038|T037|PT|T51.3X2S|ICD10CM|Toxic effect of fusel oil, intentional self-harm, sequela|Toxic effect of fusel oil, intentional self-harm, sequela +C2884039|T037|AB|T51.3X3|ICD10CM|Toxic effect of fusel oil, assault|Toxic effect of fusel oil, assault +C2884039|T037|HT|T51.3X3|ICD10CM|Toxic effect of fusel oil, assault|Toxic effect of fusel oil, assault +C2884040|T037|AB|T51.3X3A|ICD10CM|Toxic effect of fusel oil, assault, initial encounter|Toxic effect of fusel oil, assault, initial encounter +C2884040|T037|PT|T51.3X3A|ICD10CM|Toxic effect of fusel oil, assault, initial encounter|Toxic effect of fusel oil, assault, initial encounter +C2884041|T037|AB|T51.3X3D|ICD10CM|Toxic effect of fusel oil, assault, subsequent encounter|Toxic effect of fusel oil, assault, subsequent encounter +C2884041|T037|PT|T51.3X3D|ICD10CM|Toxic effect of fusel oil, assault, subsequent encounter|Toxic effect of fusel oil, assault, subsequent encounter +C2884042|T037|AB|T51.3X3S|ICD10CM|Toxic effect of fusel oil, assault, sequela|Toxic effect of fusel oil, assault, sequela +C2884042|T037|PT|T51.3X3S|ICD10CM|Toxic effect of fusel oil, assault, sequela|Toxic effect of fusel oil, assault, sequela +C2884043|T037|AB|T51.3X4|ICD10CM|Toxic effect of fusel oil, undetermined|Toxic effect of fusel oil, undetermined +C2884043|T037|HT|T51.3X4|ICD10CM|Toxic effect of fusel oil, undetermined|Toxic effect of fusel oil, undetermined +C2884044|T037|AB|T51.3X4A|ICD10CM|Toxic effect of fusel oil, undetermined, initial encounter|Toxic effect of fusel oil, undetermined, initial encounter +C2884044|T037|PT|T51.3X4A|ICD10CM|Toxic effect of fusel oil, undetermined, initial encounter|Toxic effect of fusel oil, undetermined, initial encounter +C2884045|T037|AB|T51.3X4D|ICD10CM|Toxic effect of fusel oil, undetermined, subs encntr|Toxic effect of fusel oil, undetermined, subs encntr +C2884045|T037|PT|T51.3X4D|ICD10CM|Toxic effect of fusel oil, undetermined, subsequent encounter|Toxic effect of fusel oil, undetermined, subsequent encounter +C2884046|T037|AB|T51.3X4S|ICD10CM|Toxic effect of fusel oil, undetermined, sequela|Toxic effect of fusel oil, undetermined, sequela +C2884046|T037|PT|T51.3X4S|ICD10CM|Toxic effect of fusel oil, undetermined, sequela|Toxic effect of fusel oil, undetermined, sequela +C0412933|T037|PS|T51.8|ICD10|Other alcohols|Other alcohols +C0412933|T037|PX|T51.8|ICD10|Toxic effect of other alcohols|Toxic effect of other alcohols +C0412933|T037|HT|T51.8|ICD10CM|Toxic effect of other alcohols|Toxic effect of other alcohols +C0412933|T037|AB|T51.8|ICD10CM|Toxic effect of other alcohols|Toxic effect of other alcohols +C0412933|T037|HT|T51.8X|ICD10CM|Toxic effect of other alcohols|Toxic effect of other alcohols +C0412933|T037|AB|T51.8X|ICD10CM|Toxic effect of other alcohols|Toxic effect of other alcohols +C0412933|T037|ET|T51.8X1|ICD10CM|Toxic effect of other alcohols NOS|Toxic effect of other alcohols NOS +C2884047|T037|AB|T51.8X1|ICD10CM|Toxic effect of other alcohols, accidental (unintentional)|Toxic effect of other alcohols, accidental (unintentional) +C2884047|T037|HT|T51.8X1|ICD10CM|Toxic effect of other alcohols, accidental (unintentional)|Toxic effect of other alcohols, accidental (unintentional) +C2884048|T037|AB|T51.8X1A|ICD10CM|Toxic effect of alcohols, accidental (unintentional), init|Toxic effect of alcohols, accidental (unintentional), init +C2884048|T037|PT|T51.8X1A|ICD10CM|Toxic effect of other alcohols, accidental (unintentional), initial encounter|Toxic effect of other alcohols, accidental (unintentional), initial encounter +C2884049|T037|AB|T51.8X1D|ICD10CM|Toxic effect of alcohols, accidental (unintentional), subs|Toxic effect of alcohols, accidental (unintentional), subs +C2884049|T037|PT|T51.8X1D|ICD10CM|Toxic effect of other alcohols, accidental (unintentional), subsequent encounter|Toxic effect of other alcohols, accidental (unintentional), subsequent encounter +C2884050|T037|AB|T51.8X1S|ICD10CM|Toxic effect of alcohols, accidental, sequela|Toxic effect of alcohols, accidental, sequela +C2884050|T037|PT|T51.8X1S|ICD10CM|Toxic effect of other alcohols, accidental (unintentional), sequela|Toxic effect of other alcohols, accidental (unintentional), sequela +C2884051|T037|AB|T51.8X2|ICD10CM|Toxic effect of other alcohols, intentional self-harm|Toxic effect of other alcohols, intentional self-harm +C2884051|T037|HT|T51.8X2|ICD10CM|Toxic effect of other alcohols, intentional self-harm|Toxic effect of other alcohols, intentional self-harm +C2884052|T037|AB|T51.8X2A|ICD10CM|Toxic effect of oth alcohols, intentional self-harm, init|Toxic effect of oth alcohols, intentional self-harm, init +C2884052|T037|PT|T51.8X2A|ICD10CM|Toxic effect of other alcohols, intentional self-harm, initial encounter|Toxic effect of other alcohols, intentional self-harm, initial encounter +C2884053|T037|AB|T51.8X2D|ICD10CM|Toxic effect of oth alcohols, intentional self-harm, subs|Toxic effect of oth alcohols, intentional self-harm, subs +C2884053|T037|PT|T51.8X2D|ICD10CM|Toxic effect of other alcohols, intentional self-harm, subsequent encounter|Toxic effect of other alcohols, intentional self-harm, subsequent encounter +C2884054|T037|AB|T51.8X2S|ICD10CM|Toxic effect of oth alcohols, intentional self-harm, sequela|Toxic effect of oth alcohols, intentional self-harm, sequela +C2884054|T037|PT|T51.8X2S|ICD10CM|Toxic effect of other alcohols, intentional self-harm, sequela|Toxic effect of other alcohols, intentional self-harm, sequela +C2884055|T037|AB|T51.8X3|ICD10CM|Toxic effect of other alcohols, assault|Toxic effect of other alcohols, assault +C2884055|T037|HT|T51.8X3|ICD10CM|Toxic effect of other alcohols, assault|Toxic effect of other alcohols, assault +C2884056|T037|AB|T51.8X3A|ICD10CM|Toxic effect of other alcohols, assault, initial encounter|Toxic effect of other alcohols, assault, initial encounter +C2884056|T037|PT|T51.8X3A|ICD10CM|Toxic effect of other alcohols, assault, initial encounter|Toxic effect of other alcohols, assault, initial encounter +C2884057|T037|AB|T51.8X3D|ICD10CM|Toxic effect of other alcohols, assault, subs encntr|Toxic effect of other alcohols, assault, subs encntr +C2884057|T037|PT|T51.8X3D|ICD10CM|Toxic effect of other alcohols, assault, subsequent encounter|Toxic effect of other alcohols, assault, subsequent encounter +C2884058|T037|AB|T51.8X3S|ICD10CM|Toxic effect of other alcohols, assault, sequela|Toxic effect of other alcohols, assault, sequela +C2884058|T037|PT|T51.8X3S|ICD10CM|Toxic effect of other alcohols, assault, sequela|Toxic effect of other alcohols, assault, sequela +C2884059|T037|AB|T51.8X4|ICD10CM|Toxic effect of other alcohols, undetermined|Toxic effect of other alcohols, undetermined +C2884059|T037|HT|T51.8X4|ICD10CM|Toxic effect of other alcohols, undetermined|Toxic effect of other alcohols, undetermined +C2884060|T037|AB|T51.8X4A|ICD10CM|Toxic effect of other alcohols, undetermined, init encntr|Toxic effect of other alcohols, undetermined, init encntr +C2884060|T037|PT|T51.8X4A|ICD10CM|Toxic effect of other alcohols, undetermined, initial encounter|Toxic effect of other alcohols, undetermined, initial encounter +C2884061|T037|AB|T51.8X4D|ICD10CM|Toxic effect of other alcohols, undetermined, subs encntr|Toxic effect of other alcohols, undetermined, subs encntr +C2884061|T037|PT|T51.8X4D|ICD10CM|Toxic effect of other alcohols, undetermined, subsequent encounter|Toxic effect of other alcohols, undetermined, subsequent encounter +C2884062|T037|AB|T51.8X4S|ICD10CM|Toxic effect of other alcohols, undetermined, sequela|Toxic effect of other alcohols, undetermined, sequela +C2884062|T037|PT|T51.8X4S|ICD10CM|Toxic effect of other alcohols, undetermined, sequela|Toxic effect of other alcohols, undetermined, sequela +C0161678|T037|PS|T51.9|ICD10|Alcohol, unspecified|Alcohol, unspecified +C0161678|T037|PX|T51.9|ICD10|Toxic effect of alcohol, unspecified|Toxic effect of alcohol, unspecified +C0161678|T037|HT|T51.9|ICD10CM|Toxic effect of unspecified alcohol|Toxic effect of unspecified alcohol +C0161678|T037|AB|T51.9|ICD10CM|Toxic effect of unspecified alcohol|Toxic effect of unspecified alcohol +C2884063|T037|AB|T51.91|ICD10CM|Toxic effect of unsp alcohol, accidental (unintentional)|Toxic effect of unsp alcohol, accidental (unintentional) +C2884063|T037|HT|T51.91|ICD10CM|Toxic effect of unspecified alcohol, accidental (unintentional)|Toxic effect of unspecified alcohol, accidental (unintentional) +C2884064|T037|AB|T51.91XA|ICD10CM|Toxic effect of unsp alcohol, accidental, init|Toxic effect of unsp alcohol, accidental, init +C2884064|T037|PT|T51.91XA|ICD10CM|Toxic effect of unspecified alcohol, accidental (unintentional), initial encounter|Toxic effect of unspecified alcohol, accidental (unintentional), initial encounter +C2884065|T037|AB|T51.91XD|ICD10CM|Toxic effect of unsp alcohol, accidental, subs|Toxic effect of unsp alcohol, accidental, subs +C2884065|T037|PT|T51.91XD|ICD10CM|Toxic effect of unspecified alcohol, accidental (unintentional), subsequent encounter|Toxic effect of unspecified alcohol, accidental (unintentional), subsequent encounter +C2884066|T037|AB|T51.91XS|ICD10CM|Toxic effect of unsp alcohol, accidental, sequela|Toxic effect of unsp alcohol, accidental, sequela +C2884066|T037|PT|T51.91XS|ICD10CM|Toxic effect of unspecified alcohol, accidental (unintentional), sequela|Toxic effect of unspecified alcohol, accidental (unintentional), sequela +C2884067|T037|AB|T51.92|ICD10CM|Toxic effect of unspecified alcohol, intentional self-harm|Toxic effect of unspecified alcohol, intentional self-harm +C2884067|T037|HT|T51.92|ICD10CM|Toxic effect of unspecified alcohol, intentional self-harm|Toxic effect of unspecified alcohol, intentional self-harm +C2884068|T037|AB|T51.92XA|ICD10CM|Toxic effect of unsp alcohol, intentional self-harm, init|Toxic effect of unsp alcohol, intentional self-harm, init +C2884068|T037|PT|T51.92XA|ICD10CM|Toxic effect of unspecified alcohol, intentional self-harm, initial encounter|Toxic effect of unspecified alcohol, intentional self-harm, initial encounter +C2884069|T037|AB|T51.92XD|ICD10CM|Toxic effect of unsp alcohol, intentional self-harm, subs|Toxic effect of unsp alcohol, intentional self-harm, subs +C2884069|T037|PT|T51.92XD|ICD10CM|Toxic effect of unspecified alcohol, intentional self-harm, subsequent encounter|Toxic effect of unspecified alcohol, intentional self-harm, subsequent encounter +C2884070|T037|AB|T51.92XS|ICD10CM|Toxic effect of unsp alcohol, intentional self-harm, sequela|Toxic effect of unsp alcohol, intentional self-harm, sequela +C2884070|T037|PT|T51.92XS|ICD10CM|Toxic effect of unspecified alcohol, intentional self-harm, sequela|Toxic effect of unspecified alcohol, intentional self-harm, sequela +C2884071|T037|AB|T51.93|ICD10CM|Toxic effect of unspecified alcohol, assault|Toxic effect of unspecified alcohol, assault +C2884071|T037|HT|T51.93|ICD10CM|Toxic effect of unspecified alcohol, assault|Toxic effect of unspecified alcohol, assault +C2884072|T037|AB|T51.93XA|ICD10CM|Toxic effect of unspecified alcohol, assault, init encntr|Toxic effect of unspecified alcohol, assault, init encntr +C2884072|T037|PT|T51.93XA|ICD10CM|Toxic effect of unspecified alcohol, assault, initial encounter|Toxic effect of unspecified alcohol, assault, initial encounter +C2884073|T037|AB|T51.93XD|ICD10CM|Toxic effect of unspecified alcohol, assault, subs encntr|Toxic effect of unspecified alcohol, assault, subs encntr +C2884073|T037|PT|T51.93XD|ICD10CM|Toxic effect of unspecified alcohol, assault, subsequent encounter|Toxic effect of unspecified alcohol, assault, subsequent encounter +C2884074|T037|AB|T51.93XS|ICD10CM|Toxic effect of unspecified alcohol, assault, sequela|Toxic effect of unspecified alcohol, assault, sequela +C2884074|T037|PT|T51.93XS|ICD10CM|Toxic effect of unspecified alcohol, assault, sequela|Toxic effect of unspecified alcohol, assault, sequela +C2884075|T037|AB|T51.94|ICD10CM|Toxic effect of unspecified alcohol, undetermined|Toxic effect of unspecified alcohol, undetermined +C2884075|T037|HT|T51.94|ICD10CM|Toxic effect of unspecified alcohol, undetermined|Toxic effect of unspecified alcohol, undetermined +C2884076|T037|AB|T51.94XA|ICD10CM|Toxic effect of unsp alcohol, undetermined, init encntr|Toxic effect of unsp alcohol, undetermined, init encntr +C2884076|T037|PT|T51.94XA|ICD10CM|Toxic effect of unspecified alcohol, undetermined, initial encounter|Toxic effect of unspecified alcohol, undetermined, initial encounter +C2884077|T037|AB|T51.94XD|ICD10CM|Toxic effect of unsp alcohol, undetermined, subs encntr|Toxic effect of unsp alcohol, undetermined, subs encntr +C2884077|T037|PT|T51.94XD|ICD10CM|Toxic effect of unspecified alcohol, undetermined, subsequent encounter|Toxic effect of unspecified alcohol, undetermined, subsequent encounter +C2884078|T037|AB|T51.94XS|ICD10CM|Toxic effect of unspecified alcohol, undetermined, sequela|Toxic effect of unspecified alcohol, undetermined, sequela +C2884078|T037|PT|T51.94XS|ICD10CM|Toxic effect of unspecified alcohol, undetermined, sequela|Toxic effect of unspecified alcohol, undetermined, sequela +C0412953|T037|HT|T52|ICD10|Toxic effect of organic solvents|Toxic effect of organic solvents +C0412953|T037|AB|T52|ICD10CM|Toxic effect of organic solvents|Toxic effect of organic solvents +C0412953|T037|HT|T52|ICD10CM|Toxic effect of organic solvents|Toxic effect of organic solvents +C0161685|T037|PS|T52.0|ICD10|Petroleum products|Petroleum products +C0161685|T037|PX|T52.0|ICD10|Toxic effect of petroleum products|Toxic effect of petroleum products +C0274841|T037|ET|T52.0|ICD10CM|Toxic effects of ether petroleum|Toxic effects of ether petroleum +C2884079|T037|ET|T52.0|ICD10CM|Toxic effects of gasoline [petrol]|Toxic effects of gasoline [petrol] +C2884080|T037|ET|T52.0|ICD10CM|Toxic effects of kerosene [paraffin oil]|Toxic effects of kerosene [paraffin oil] +C0274841|T037|ET|T52.0|ICD10CM|Toxic effects of naphtha petroleum|Toxic effects of naphtha petroleum +C0274840|T037|ET|T52.0|ICD10CM|Toxic effects of paraffin wax|Toxic effects of paraffin wax +C0161685|T037|AB|T52.0|ICD10CM|Toxic effects of petroleum products|Toxic effects of petroleum products +C0161685|T037|HT|T52.0|ICD10CM|Toxic effects of petroleum products|Toxic effects of petroleum products +C0274841|T037|ET|T52.0|ICD10CM|Toxic effects of spirit petroleum|Toxic effects of spirit petroleum +C0161685|T037|HT|T52.0X|ICD10CM|Toxic effects of petroleum products|Toxic effects of petroleum products +C0161685|T037|AB|T52.0X|ICD10CM|Toxic effects of petroleum products|Toxic effects of petroleum products +C2884081|T037|AB|T52.0X1|ICD10CM|Toxic effect of petroleum products, accidental|Toxic effect of petroleum products, accidental +C2884081|T037|HT|T52.0X1|ICD10CM|Toxic effect of petroleum products, accidental (unintentional)|Toxic effect of petroleum products, accidental (unintentional) +C0161685|T037|ET|T52.0X1|ICD10CM|Toxic effects of petroleum products NOS|Toxic effects of petroleum products NOS +C2884082|T037|PT|T52.0X1A|ICD10CM|Toxic effect of petroleum products, accidental (unintentional), initial encounter|Toxic effect of petroleum products, accidental (unintentional), initial encounter +C2884082|T037|AB|T52.0X1A|ICD10CM|Toxic effect of petroleum products, accidental, init|Toxic effect of petroleum products, accidental, init +C2884083|T037|PT|T52.0X1D|ICD10CM|Toxic effect of petroleum products, accidental (unintentional), subsequent encounter|Toxic effect of petroleum products, accidental (unintentional), subsequent encounter +C2884083|T037|AB|T52.0X1D|ICD10CM|Toxic effect of petroleum products, accidental, subs|Toxic effect of petroleum products, accidental, subs +C2884084|T037|PT|T52.0X1S|ICD10CM|Toxic effect of petroleum products, accidental (unintentional), sequela|Toxic effect of petroleum products, accidental (unintentional), sequela +C2884084|T037|AB|T52.0X1S|ICD10CM|Toxic effect of petroleum products, accidental, sequela|Toxic effect of petroleum products, accidental, sequela +C2884085|T037|AB|T52.0X2|ICD10CM|Toxic effect of petroleum products, intentional self-harm|Toxic effect of petroleum products, intentional self-harm +C2884085|T037|HT|T52.0X2|ICD10CM|Toxic effect of petroleum products, intentional self-harm|Toxic effect of petroleum products, intentional self-harm +C2884086|T037|PT|T52.0X2A|ICD10CM|Toxic effect of petroleum products, intentional self-harm, initial encounter|Toxic effect of petroleum products, intentional self-harm, initial encounter +C2884086|T037|AB|T52.0X2A|ICD10CM|Toxic effect of petroleum products, self-harm, init|Toxic effect of petroleum products, self-harm, init +C2884087|T037|PT|T52.0X2D|ICD10CM|Toxic effect of petroleum products, intentional self-harm, subsequent encounter|Toxic effect of petroleum products, intentional self-harm, subsequent encounter +C2884087|T037|AB|T52.0X2D|ICD10CM|Toxic effect of petroleum products, self-harm, subs|Toxic effect of petroleum products, self-harm, subs +C2884088|T037|PT|T52.0X2S|ICD10CM|Toxic effect of petroleum products, intentional self-harm, sequela|Toxic effect of petroleum products, intentional self-harm, sequela +C2884088|T037|AB|T52.0X2S|ICD10CM|Toxic effect of petroleum products, self-harm, sequela|Toxic effect of petroleum products, self-harm, sequela +C2884089|T037|AB|T52.0X3|ICD10CM|Toxic effect of petroleum products, assault|Toxic effect of petroleum products, assault +C2884089|T037|HT|T52.0X3|ICD10CM|Toxic effect of petroleum products, assault|Toxic effect of petroleum products, assault +C2884090|T037|AB|T52.0X3A|ICD10CM|Toxic effect of petroleum products, assault, init encntr|Toxic effect of petroleum products, assault, init encntr +C2884090|T037|PT|T52.0X3A|ICD10CM|Toxic effect of petroleum products, assault, initial encounter|Toxic effect of petroleum products, assault, initial encounter +C2884091|T037|AB|T52.0X3D|ICD10CM|Toxic effect of petroleum products, assault, subs encntr|Toxic effect of petroleum products, assault, subs encntr +C2884091|T037|PT|T52.0X3D|ICD10CM|Toxic effect of petroleum products, assault, subsequent encounter|Toxic effect of petroleum products, assault, subsequent encounter +C2884092|T037|AB|T52.0X3S|ICD10CM|Toxic effect of petroleum products, assault, sequela|Toxic effect of petroleum products, assault, sequela +C2884092|T037|PT|T52.0X3S|ICD10CM|Toxic effect of petroleum products, assault, sequela|Toxic effect of petroleum products, assault, sequela +C2884093|T037|AB|T52.0X4|ICD10CM|Toxic effect of petroleum products, undetermined|Toxic effect of petroleum products, undetermined +C2884093|T037|HT|T52.0X4|ICD10CM|Toxic effect of petroleum products, undetermined|Toxic effect of petroleum products, undetermined +C2884094|T037|AB|T52.0X4A|ICD10CM|Toxic effect of petroleum products, undetermined, init|Toxic effect of petroleum products, undetermined, init +C2884094|T037|PT|T52.0X4A|ICD10CM|Toxic effect of petroleum products, undetermined, initial encounter|Toxic effect of petroleum products, undetermined, initial encounter +C2884095|T037|AB|T52.0X4D|ICD10CM|Toxic effect of petroleum products, undetermined, subs|Toxic effect of petroleum products, undetermined, subs +C2884095|T037|PT|T52.0X4D|ICD10CM|Toxic effect of petroleum products, undetermined, subsequent encounter|Toxic effect of petroleum products, undetermined, subsequent encounter +C2884096|T037|AB|T52.0X4S|ICD10CM|Toxic effect of petroleum products, undetermined, sequela|Toxic effect of petroleum products, undetermined, sequela +C2884096|T037|PT|T52.0X4S|ICD10CM|Toxic effect of petroleum products, undetermined, sequela|Toxic effect of petroleum products, undetermined, sequela +C0497008|T037|PS|T52.1|ICD10|Benzene|Benzene +C0497008|T037|PX|T52.1|ICD10|Toxic effect of benzene|Toxic effect of benzene +C0497008|T037|AB|T52.1|ICD10CM|Toxic effects of benzene|Toxic effects of benzene +C0497008|T037|HT|T52.1|ICD10CM|Toxic effects of benzene|Toxic effects of benzene +C0497008|T037|HT|T52.1X|ICD10CM|Toxic effects of benzene|Toxic effects of benzene +C0497008|T037|AB|T52.1X|ICD10CM|Toxic effects of benzene|Toxic effects of benzene +C2884097|T037|AB|T52.1X1|ICD10CM|Toxic effect of benzene, accidental (unintentional)|Toxic effect of benzene, accidental (unintentional) +C2884097|T037|HT|T52.1X1|ICD10CM|Toxic effect of benzene, accidental (unintentional)|Toxic effect of benzene, accidental (unintentional) +C0497008|T037|ET|T52.1X1|ICD10CM|Toxic effects of benzene NOS|Toxic effects of benzene NOS +C2884098|T037|AB|T52.1X1A|ICD10CM|Toxic effect of benzene, accidental (unintentional), init|Toxic effect of benzene, accidental (unintentional), init +C2884098|T037|PT|T52.1X1A|ICD10CM|Toxic effect of benzene, accidental (unintentional), initial encounter|Toxic effect of benzene, accidental (unintentional), initial encounter +C2884099|T037|AB|T52.1X1D|ICD10CM|Toxic effect of benzene, accidental (unintentional), subs|Toxic effect of benzene, accidental (unintentional), subs +C2884099|T037|PT|T52.1X1D|ICD10CM|Toxic effect of benzene, accidental (unintentional), subsequent encounter|Toxic effect of benzene, accidental (unintentional), subsequent encounter +C2884100|T037|AB|T52.1X1S|ICD10CM|Toxic effect of benzene, accidental (unintentional), sequela|Toxic effect of benzene, accidental (unintentional), sequela +C2884100|T037|PT|T52.1X1S|ICD10CM|Toxic effect of benzene, accidental (unintentional), sequela|Toxic effect of benzene, accidental (unintentional), sequela +C2884101|T037|AB|T52.1X2|ICD10CM|Toxic effect of benzene, intentional self-harm|Toxic effect of benzene, intentional self-harm +C2884101|T037|HT|T52.1X2|ICD10CM|Toxic effect of benzene, intentional self-harm|Toxic effect of benzene, intentional self-harm +C2884102|T037|AB|T52.1X2A|ICD10CM|Toxic effect of benzene, intentional self-harm, init encntr|Toxic effect of benzene, intentional self-harm, init encntr +C2884102|T037|PT|T52.1X2A|ICD10CM|Toxic effect of benzene, intentional self-harm, initial encounter|Toxic effect of benzene, intentional self-harm, initial encounter +C2884103|T037|AB|T52.1X2D|ICD10CM|Toxic effect of benzene, intentional self-harm, subs encntr|Toxic effect of benzene, intentional self-harm, subs encntr +C2884103|T037|PT|T52.1X2D|ICD10CM|Toxic effect of benzene, intentional self-harm, subsequent encounter|Toxic effect of benzene, intentional self-harm, subsequent encounter +C2884104|T037|AB|T52.1X2S|ICD10CM|Toxic effect of benzene, intentional self-harm, sequela|Toxic effect of benzene, intentional self-harm, sequela +C2884104|T037|PT|T52.1X2S|ICD10CM|Toxic effect of benzene, intentional self-harm, sequela|Toxic effect of benzene, intentional self-harm, sequela +C2884105|T037|AB|T52.1X3|ICD10CM|Toxic effect of benzene, assault|Toxic effect of benzene, assault +C2884105|T037|HT|T52.1X3|ICD10CM|Toxic effect of benzene, assault|Toxic effect of benzene, assault +C2884106|T037|AB|T52.1X3A|ICD10CM|Toxic effect of benzene, assault, initial encounter|Toxic effect of benzene, assault, initial encounter +C2884106|T037|PT|T52.1X3A|ICD10CM|Toxic effect of benzene, assault, initial encounter|Toxic effect of benzene, assault, initial encounter +C2884107|T037|AB|T52.1X3D|ICD10CM|Toxic effect of benzene, assault, subsequent encounter|Toxic effect of benzene, assault, subsequent encounter +C2884107|T037|PT|T52.1X3D|ICD10CM|Toxic effect of benzene, assault, subsequent encounter|Toxic effect of benzene, assault, subsequent encounter +C2884108|T037|AB|T52.1X3S|ICD10CM|Toxic effect of benzene, assault, sequela|Toxic effect of benzene, assault, sequela +C2884108|T037|PT|T52.1X3S|ICD10CM|Toxic effect of benzene, assault, sequela|Toxic effect of benzene, assault, sequela +C2884109|T037|AB|T52.1X4|ICD10CM|Toxic effect of benzene, undetermined|Toxic effect of benzene, undetermined +C2884109|T037|HT|T52.1X4|ICD10CM|Toxic effect of benzene, undetermined|Toxic effect of benzene, undetermined +C2884110|T037|AB|T52.1X4A|ICD10CM|Toxic effect of benzene, undetermined, initial encounter|Toxic effect of benzene, undetermined, initial encounter +C2884110|T037|PT|T52.1X4A|ICD10CM|Toxic effect of benzene, undetermined, initial encounter|Toxic effect of benzene, undetermined, initial encounter +C2884111|T037|AB|T52.1X4D|ICD10CM|Toxic effect of benzene, undetermined, subsequent encounter|Toxic effect of benzene, undetermined, subsequent encounter +C2884111|T037|PT|T52.1X4D|ICD10CM|Toxic effect of benzene, undetermined, subsequent encounter|Toxic effect of benzene, undetermined, subsequent encounter +C2884112|T037|AB|T52.1X4S|ICD10CM|Toxic effect of benzene, undetermined, sequela|Toxic effect of benzene, undetermined, sequela +C2884112|T037|PT|T52.1X4S|ICD10CM|Toxic effect of benzene, undetermined, sequela|Toxic effect of benzene, undetermined, sequela +C0161687|T037|PS|T52.2|ICD10|Homologues of benzene|Homologues of benzene +C0161687|T037|PX|T52.2|ICD10|Toxic effect of homologues of benzene|Toxic effect of homologues of benzene +C0161687|T037|AB|T52.2|ICD10CM|Toxic effects of homologues of benzene|Toxic effects of homologues of benzene +C0161687|T037|HT|T52.2|ICD10CM|Toxic effects of homologues of benzene|Toxic effects of homologues of benzene +C2884113|T037|ET|T52.2|ICD10CM|Toxic effects of toluene [methylbenzene]|Toxic effects of toluene [methylbenzene] +C2884114|T037|ET|T52.2|ICD10CM|Toxic effects of xylene [dimethylbenzene]|Toxic effects of xylene [dimethylbenzene] +C0161687|T037|HT|T52.2X|ICD10CM|Toxic effects of homologues of benzene|Toxic effects of homologues of benzene +C0161687|T037|AB|T52.2X|ICD10CM|Toxic effects of homologues of benzene|Toxic effects of homologues of benzene +C2884115|T037|AB|T52.2X1|ICD10CM|Toxic effect of homologues of benzene, accidental|Toxic effect of homologues of benzene, accidental +C2884115|T037|HT|T52.2X1|ICD10CM|Toxic effect of homologues of benzene, accidental (unintentional)|Toxic effect of homologues of benzene, accidental (unintentional) +C0161687|T037|ET|T52.2X1|ICD10CM|Toxic effects of homologues of benzene NOS|Toxic effects of homologues of benzene NOS +C2884116|T037|PT|T52.2X1A|ICD10CM|Toxic effect of homologues of benzene, accidental (unintentional), initial encounter|Toxic effect of homologues of benzene, accidental (unintentional), initial encounter +C2884116|T037|AB|T52.2X1A|ICD10CM|Toxic effect of homologues of benzene, accidental, init|Toxic effect of homologues of benzene, accidental, init +C2884117|T037|PT|T52.2X1D|ICD10CM|Toxic effect of homologues of benzene, accidental (unintentional), subsequent encounter|Toxic effect of homologues of benzene, accidental (unintentional), subsequent encounter +C2884117|T037|AB|T52.2X1D|ICD10CM|Toxic effect of homologues of benzene, accidental, subs|Toxic effect of homologues of benzene, accidental, subs +C2884118|T037|PT|T52.2X1S|ICD10CM|Toxic effect of homologues of benzene, accidental (unintentional), sequela|Toxic effect of homologues of benzene, accidental (unintentional), sequela +C2884118|T037|AB|T52.2X1S|ICD10CM|Toxic effect of homologues of benzene, accidental, sequela|Toxic effect of homologues of benzene, accidental, sequela +C2884119|T037|AB|T52.2X2|ICD10CM|Toxic effect of homologues of benzene, intentional self-harm|Toxic effect of homologues of benzene, intentional self-harm +C2884119|T037|HT|T52.2X2|ICD10CM|Toxic effect of homologues of benzene, intentional self-harm|Toxic effect of homologues of benzene, intentional self-harm +C2884120|T037|PT|T52.2X2A|ICD10CM|Toxic effect of homologues of benzene, intentional self-harm, initial encounter|Toxic effect of homologues of benzene, intentional self-harm, initial encounter +C2884120|T037|AB|T52.2X2A|ICD10CM|Toxic effect of homologues of benzene, self-harm, init|Toxic effect of homologues of benzene, self-harm, init +C2884121|T037|PT|T52.2X2D|ICD10CM|Toxic effect of homologues of benzene, intentional self-harm, subsequent encounter|Toxic effect of homologues of benzene, intentional self-harm, subsequent encounter +C2884121|T037|AB|T52.2X2D|ICD10CM|Toxic effect of homologues of benzene, self-harm, subs|Toxic effect of homologues of benzene, self-harm, subs +C2884122|T037|PT|T52.2X2S|ICD10CM|Toxic effect of homologues of benzene, intentional self-harm, sequela|Toxic effect of homologues of benzene, intentional self-harm, sequela +C2884122|T037|AB|T52.2X2S|ICD10CM|Toxic effect of homologues of benzene, self-harm, sequela|Toxic effect of homologues of benzene, self-harm, sequela +C2884123|T037|AB|T52.2X3|ICD10CM|Toxic effect of homologues of benzene, assault|Toxic effect of homologues of benzene, assault +C2884123|T037|HT|T52.2X3|ICD10CM|Toxic effect of homologues of benzene, assault|Toxic effect of homologues of benzene, assault +C2884124|T037|AB|T52.2X3A|ICD10CM|Toxic effect of homologues of benzene, assault, init encntr|Toxic effect of homologues of benzene, assault, init encntr +C2884124|T037|PT|T52.2X3A|ICD10CM|Toxic effect of homologues of benzene, assault, initial encounter|Toxic effect of homologues of benzene, assault, initial encounter +C2884125|T037|AB|T52.2X3D|ICD10CM|Toxic effect of homologues of benzene, assault, subs encntr|Toxic effect of homologues of benzene, assault, subs encntr +C2884125|T037|PT|T52.2X3D|ICD10CM|Toxic effect of homologues of benzene, assault, subsequent encounter|Toxic effect of homologues of benzene, assault, subsequent encounter +C2884126|T037|AB|T52.2X3S|ICD10CM|Toxic effect of homologues of benzene, assault, sequela|Toxic effect of homologues of benzene, assault, sequela +C2884126|T037|PT|T52.2X3S|ICD10CM|Toxic effect of homologues of benzene, assault, sequela|Toxic effect of homologues of benzene, assault, sequela +C2884127|T037|AB|T52.2X4|ICD10CM|Toxic effect of homologues of benzene, undetermined|Toxic effect of homologues of benzene, undetermined +C2884127|T037|HT|T52.2X4|ICD10CM|Toxic effect of homologues of benzene, undetermined|Toxic effect of homologues of benzene, undetermined +C2884128|T037|AB|T52.2X4A|ICD10CM|Toxic effect of homologues of benzene, undetermined, init|Toxic effect of homologues of benzene, undetermined, init +C2884128|T037|PT|T52.2X4A|ICD10CM|Toxic effect of homologues of benzene, undetermined, initial encounter|Toxic effect of homologues of benzene, undetermined, initial encounter +C2884129|T037|AB|T52.2X4D|ICD10CM|Toxic effect of homologues of benzene, undetermined, subs|Toxic effect of homologues of benzene, undetermined, subs +C2884129|T037|PT|T52.2X4D|ICD10CM|Toxic effect of homologues of benzene, undetermined, subsequent encounter|Toxic effect of homologues of benzene, undetermined, subsequent encounter +C2884130|T037|AB|T52.2X4S|ICD10CM|Toxic effect of homologues of benzene, undetermined, sequela|Toxic effect of homologues of benzene, undetermined, sequela +C2884130|T037|PT|T52.2X4S|ICD10CM|Toxic effect of homologues of benzene, undetermined, sequela|Toxic effect of homologues of benzene, undetermined, sequela +C0497009|T037|PS|T52.3|ICD10|Glycols|Glycols +C0497009|T037|PX|T52.3|ICD10|Toxic effect of glycols|Toxic effect of glycols +C0497009|T037|AB|T52.3|ICD10CM|Toxic effects of glycols|Toxic effects of glycols +C0497009|T037|HT|T52.3|ICD10CM|Toxic effects of glycols|Toxic effects of glycols +C0497009|T037|HT|T52.3X|ICD10CM|Toxic effects of glycols|Toxic effects of glycols +C0497009|T037|AB|T52.3X|ICD10CM|Toxic effects of glycols|Toxic effects of glycols +C2884131|T037|AB|T52.3X1|ICD10CM|Toxic effect of glycols, accidental (unintentional)|Toxic effect of glycols, accidental (unintentional) +C2884131|T037|HT|T52.3X1|ICD10CM|Toxic effect of glycols, accidental (unintentional)|Toxic effect of glycols, accidental (unintentional) +C0497009|T037|ET|T52.3X1|ICD10CM|Toxic effects of glycols NOS|Toxic effects of glycols NOS +C2884132|T037|AB|T52.3X1A|ICD10CM|Toxic effect of glycols, accidental (unintentional), init|Toxic effect of glycols, accidental (unintentional), init +C2884132|T037|PT|T52.3X1A|ICD10CM|Toxic effect of glycols, accidental (unintentional), initial encounter|Toxic effect of glycols, accidental (unintentional), initial encounter +C2884133|T037|AB|T52.3X1D|ICD10CM|Toxic effect of glycols, accidental (unintentional), subs|Toxic effect of glycols, accidental (unintentional), subs +C2884133|T037|PT|T52.3X1D|ICD10CM|Toxic effect of glycols, accidental (unintentional), subsequent encounter|Toxic effect of glycols, accidental (unintentional), subsequent encounter +C2884134|T037|AB|T52.3X1S|ICD10CM|Toxic effect of glycols, accidental (unintentional), sequela|Toxic effect of glycols, accidental (unintentional), sequela +C2884134|T037|PT|T52.3X1S|ICD10CM|Toxic effect of glycols, accidental (unintentional), sequela|Toxic effect of glycols, accidental (unintentional), sequela +C2884135|T037|AB|T52.3X2|ICD10CM|Toxic effect of glycols, intentional self-harm|Toxic effect of glycols, intentional self-harm +C2884135|T037|HT|T52.3X2|ICD10CM|Toxic effect of glycols, intentional self-harm|Toxic effect of glycols, intentional self-harm +C2884136|T037|AB|T52.3X2A|ICD10CM|Toxic effect of glycols, intentional self-harm, init encntr|Toxic effect of glycols, intentional self-harm, init encntr +C2884136|T037|PT|T52.3X2A|ICD10CM|Toxic effect of glycols, intentional self-harm, initial encounter|Toxic effect of glycols, intentional self-harm, initial encounter +C2884137|T037|AB|T52.3X2D|ICD10CM|Toxic effect of glycols, intentional self-harm, subs encntr|Toxic effect of glycols, intentional self-harm, subs encntr +C2884137|T037|PT|T52.3X2D|ICD10CM|Toxic effect of glycols, intentional self-harm, subsequent encounter|Toxic effect of glycols, intentional self-harm, subsequent encounter +C2884138|T037|AB|T52.3X2S|ICD10CM|Toxic effect of glycols, intentional self-harm, sequela|Toxic effect of glycols, intentional self-harm, sequela +C2884138|T037|PT|T52.3X2S|ICD10CM|Toxic effect of glycols, intentional self-harm, sequela|Toxic effect of glycols, intentional self-harm, sequela +C2884139|T037|AB|T52.3X3|ICD10CM|Toxic effect of glycols, assault|Toxic effect of glycols, assault +C2884139|T037|HT|T52.3X3|ICD10CM|Toxic effect of glycols, assault|Toxic effect of glycols, assault +C2884140|T037|AB|T52.3X3A|ICD10CM|Toxic effect of glycols, assault, initial encounter|Toxic effect of glycols, assault, initial encounter +C2884140|T037|PT|T52.3X3A|ICD10CM|Toxic effect of glycols, assault, initial encounter|Toxic effect of glycols, assault, initial encounter +C2884141|T037|AB|T52.3X3D|ICD10CM|Toxic effect of glycols, assault, subsequent encounter|Toxic effect of glycols, assault, subsequent encounter +C2884141|T037|PT|T52.3X3D|ICD10CM|Toxic effect of glycols, assault, subsequent encounter|Toxic effect of glycols, assault, subsequent encounter +C2884142|T037|AB|T52.3X3S|ICD10CM|Toxic effect of glycols, assault, sequela|Toxic effect of glycols, assault, sequela +C2884142|T037|PT|T52.3X3S|ICD10CM|Toxic effect of glycols, assault, sequela|Toxic effect of glycols, assault, sequela +C2884143|T037|AB|T52.3X4|ICD10CM|Toxic effect of glycols, undetermined|Toxic effect of glycols, undetermined +C2884143|T037|HT|T52.3X4|ICD10CM|Toxic effect of glycols, undetermined|Toxic effect of glycols, undetermined +C2884144|T037|AB|T52.3X4A|ICD10CM|Toxic effect of glycols, undetermined, initial encounter|Toxic effect of glycols, undetermined, initial encounter +C2884144|T037|PT|T52.3X4A|ICD10CM|Toxic effect of glycols, undetermined, initial encounter|Toxic effect of glycols, undetermined, initial encounter +C2884145|T037|AB|T52.3X4D|ICD10CM|Toxic effect of glycols, undetermined, subsequent encounter|Toxic effect of glycols, undetermined, subsequent encounter +C2884145|T037|PT|T52.3X4D|ICD10CM|Toxic effect of glycols, undetermined, subsequent encounter|Toxic effect of glycols, undetermined, subsequent encounter +C2884146|T037|AB|T52.3X4S|ICD10CM|Toxic effect of glycols, undetermined, sequela|Toxic effect of glycols, undetermined, sequela +C2884146|T037|PT|T52.3X4S|ICD10CM|Toxic effect of glycols, undetermined, sequela|Toxic effect of glycols, undetermined, sequela +C0497010|T037|PS|T52.4|ICD10|Ketones|Ketones +C0497010|T037|PX|T52.4|ICD10|Toxic effect of ketones|Toxic effect of ketones +C0497010|T037|AB|T52.4|ICD10CM|Toxic effects of ketones|Toxic effects of ketones +C0497010|T037|HT|T52.4|ICD10CM|Toxic effects of ketones|Toxic effects of ketones +C0497010|T037|HT|T52.4X|ICD10CM|Toxic effects of ketones|Toxic effects of ketones +C0497010|T037|AB|T52.4X|ICD10CM|Toxic effects of ketones|Toxic effects of ketones +C2884147|T037|AB|T52.4X1|ICD10CM|Toxic effect of ketones, accidental (unintentional)|Toxic effect of ketones, accidental (unintentional) +C2884147|T037|HT|T52.4X1|ICD10CM|Toxic effect of ketones, accidental (unintentional)|Toxic effect of ketones, accidental (unintentional) +C0497010|T037|ET|T52.4X1|ICD10CM|Toxic effects of ketones NOS|Toxic effects of ketones NOS +C2884148|T037|AB|T52.4X1A|ICD10CM|Toxic effect of ketones, accidental (unintentional), init|Toxic effect of ketones, accidental (unintentional), init +C2884148|T037|PT|T52.4X1A|ICD10CM|Toxic effect of ketones, accidental (unintentional), initial encounter|Toxic effect of ketones, accidental (unintentional), initial encounter +C2884149|T037|AB|T52.4X1D|ICD10CM|Toxic effect of ketones, accidental (unintentional), subs|Toxic effect of ketones, accidental (unintentional), subs +C2884149|T037|PT|T52.4X1D|ICD10CM|Toxic effect of ketones, accidental (unintentional), subsequent encounter|Toxic effect of ketones, accidental (unintentional), subsequent encounter +C2884150|T037|AB|T52.4X1S|ICD10CM|Toxic effect of ketones, accidental (unintentional), sequela|Toxic effect of ketones, accidental (unintentional), sequela +C2884150|T037|PT|T52.4X1S|ICD10CM|Toxic effect of ketones, accidental (unintentional), sequela|Toxic effect of ketones, accidental (unintentional), sequela +C2884151|T037|AB|T52.4X2|ICD10CM|Toxic effect of ketones, intentional self-harm|Toxic effect of ketones, intentional self-harm +C2884151|T037|HT|T52.4X2|ICD10CM|Toxic effect of ketones, intentional self-harm|Toxic effect of ketones, intentional self-harm +C2884152|T037|AB|T52.4X2A|ICD10CM|Toxic effect of ketones, intentional self-harm, init encntr|Toxic effect of ketones, intentional self-harm, init encntr +C2884152|T037|PT|T52.4X2A|ICD10CM|Toxic effect of ketones, intentional self-harm, initial encounter|Toxic effect of ketones, intentional self-harm, initial encounter +C2884153|T037|AB|T52.4X2D|ICD10CM|Toxic effect of ketones, intentional self-harm, subs encntr|Toxic effect of ketones, intentional self-harm, subs encntr +C2884153|T037|PT|T52.4X2D|ICD10CM|Toxic effect of ketones, intentional self-harm, subsequent encounter|Toxic effect of ketones, intentional self-harm, subsequent encounter +C2884154|T037|AB|T52.4X2S|ICD10CM|Toxic effect of ketones, intentional self-harm, sequela|Toxic effect of ketones, intentional self-harm, sequela +C2884154|T037|PT|T52.4X2S|ICD10CM|Toxic effect of ketones, intentional self-harm, sequela|Toxic effect of ketones, intentional self-harm, sequela +C2884155|T037|AB|T52.4X3|ICD10CM|Toxic effect of ketones, assault|Toxic effect of ketones, assault +C2884155|T037|HT|T52.4X3|ICD10CM|Toxic effect of ketones, assault|Toxic effect of ketones, assault +C2884156|T037|AB|T52.4X3A|ICD10CM|Toxic effect of ketones, assault, initial encounter|Toxic effect of ketones, assault, initial encounter +C2884156|T037|PT|T52.4X3A|ICD10CM|Toxic effect of ketones, assault, initial encounter|Toxic effect of ketones, assault, initial encounter +C2884157|T037|AB|T52.4X3D|ICD10CM|Toxic effect of ketones, assault, subsequent encounter|Toxic effect of ketones, assault, subsequent encounter +C2884157|T037|PT|T52.4X3D|ICD10CM|Toxic effect of ketones, assault, subsequent encounter|Toxic effect of ketones, assault, subsequent encounter +C2884158|T037|AB|T52.4X3S|ICD10CM|Toxic effect of ketones, assault, sequela|Toxic effect of ketones, assault, sequela +C2884158|T037|PT|T52.4X3S|ICD10CM|Toxic effect of ketones, assault, sequela|Toxic effect of ketones, assault, sequela +C2884159|T037|AB|T52.4X4|ICD10CM|Toxic effect of ketones, undetermined|Toxic effect of ketones, undetermined +C2884159|T037|HT|T52.4X4|ICD10CM|Toxic effect of ketones, undetermined|Toxic effect of ketones, undetermined +C2884160|T037|AB|T52.4X4A|ICD10CM|Toxic effect of ketones, undetermined, initial encounter|Toxic effect of ketones, undetermined, initial encounter +C2884160|T037|PT|T52.4X4A|ICD10CM|Toxic effect of ketones, undetermined, initial encounter|Toxic effect of ketones, undetermined, initial encounter +C2884161|T037|AB|T52.4X4D|ICD10CM|Toxic effect of ketones, undetermined, subsequent encounter|Toxic effect of ketones, undetermined, subsequent encounter +C2884161|T037|PT|T52.4X4D|ICD10CM|Toxic effect of ketones, undetermined, subsequent encounter|Toxic effect of ketones, undetermined, subsequent encounter +C2884162|T037|AB|T52.4X4S|ICD10CM|Toxic effect of ketones, undetermined, sequela|Toxic effect of ketones, undetermined, sequela +C2884162|T037|PT|T52.4X4S|ICD10CM|Toxic effect of ketones, undetermined, sequela|Toxic effect of ketones, undetermined, sequela +C0478459|T037|PS|T52.8|ICD10|Other organic solvents|Other organic solvents +C0478459|T037|PX|T52.8|ICD10|Toxic effect of other organic solvents|Toxic effect of other organic solvents +C0478459|T037|AB|T52.8|ICD10CM|Toxic effects of other organic solvents|Toxic effects of other organic solvents +C0478459|T037|HT|T52.8|ICD10CM|Toxic effects of other organic solvents|Toxic effects of other organic solvents +C0478459|T037|HT|T52.8X|ICD10CM|Toxic effects of other organic solvents|Toxic effects of other organic solvents +C0478459|T037|AB|T52.8X|ICD10CM|Toxic effects of other organic solvents|Toxic effects of other organic solvents +C2884163|T037|AB|T52.8X1|ICD10CM|Toxic effect of organic solvents, accidental (unintentional)|Toxic effect of organic solvents, accidental (unintentional) +C2884163|T037|HT|T52.8X1|ICD10CM|Toxic effect of other organic solvents, accidental (unintentional)|Toxic effect of other organic solvents, accidental (unintentional) +C0478459|T037|ET|T52.8X1|ICD10CM|Toxic effects of other organic solvents NOS|Toxic effects of other organic solvents NOS +C2884164|T037|AB|T52.8X1A|ICD10CM|Toxic effect of organic solvents, accidental, init|Toxic effect of organic solvents, accidental, init +C2884164|T037|PT|T52.8X1A|ICD10CM|Toxic effect of other organic solvents, accidental (unintentional), initial encounter|Toxic effect of other organic solvents, accidental (unintentional), initial encounter +C2884165|T037|AB|T52.8X1D|ICD10CM|Toxic effect of organic solvents, accidental, subs|Toxic effect of organic solvents, accidental, subs +C2884165|T037|PT|T52.8X1D|ICD10CM|Toxic effect of other organic solvents, accidental (unintentional), subsequent encounter|Toxic effect of other organic solvents, accidental (unintentional), subsequent encounter +C2884166|T037|AB|T52.8X1S|ICD10CM|Toxic effect of organic solvents, accidental, sequela|Toxic effect of organic solvents, accidental, sequela +C2884166|T037|PT|T52.8X1S|ICD10CM|Toxic effect of other organic solvents, accidental (unintentional), sequela|Toxic effect of other organic solvents, accidental (unintentional), sequela +C2884167|T037|AB|T52.8X2|ICD10CM|Toxic effect of oth organic solvents, intentional self-harm|Toxic effect of oth organic solvents, intentional self-harm +C2884167|T037|HT|T52.8X2|ICD10CM|Toxic effect of other organic solvents, intentional self-harm|Toxic effect of other organic solvents, intentional self-harm +C2884168|T037|AB|T52.8X2A|ICD10CM|Toxic effect of organic solvents, self-harm, init|Toxic effect of organic solvents, self-harm, init +C2884168|T037|PT|T52.8X2A|ICD10CM|Toxic effect of other organic solvents, intentional self-harm, initial encounter|Toxic effect of other organic solvents, intentional self-harm, initial encounter +C2884169|T037|AB|T52.8X2D|ICD10CM|Toxic effect of organic solvents, self-harm, subs|Toxic effect of organic solvents, self-harm, subs +C2884169|T037|PT|T52.8X2D|ICD10CM|Toxic effect of other organic solvents, intentional self-harm, subsequent encounter|Toxic effect of other organic solvents, intentional self-harm, subsequent encounter +C2884170|T037|AB|T52.8X2S|ICD10CM|Toxic effect of organic solvents, self-harm, sequela|Toxic effect of organic solvents, self-harm, sequela +C2884170|T037|PT|T52.8X2S|ICD10CM|Toxic effect of other organic solvents, intentional self-harm, sequela|Toxic effect of other organic solvents, intentional self-harm, sequela +C2884171|T037|AB|T52.8X3|ICD10CM|Toxic effect of other organic solvents, assault|Toxic effect of other organic solvents, assault +C2884171|T037|HT|T52.8X3|ICD10CM|Toxic effect of other organic solvents, assault|Toxic effect of other organic solvents, assault +C2884172|T037|AB|T52.8X3A|ICD10CM|Toxic effect of other organic solvents, assault, init encntr|Toxic effect of other organic solvents, assault, init encntr +C2884172|T037|PT|T52.8X3A|ICD10CM|Toxic effect of other organic solvents, assault, initial encounter|Toxic effect of other organic solvents, assault, initial encounter +C2884173|T037|AB|T52.8X3D|ICD10CM|Toxic effect of other organic solvents, assault, subs encntr|Toxic effect of other organic solvents, assault, subs encntr +C2884173|T037|PT|T52.8X3D|ICD10CM|Toxic effect of other organic solvents, assault, subsequent encounter|Toxic effect of other organic solvents, assault, subsequent encounter +C2884174|T037|AB|T52.8X3S|ICD10CM|Toxic effect of other organic solvents, assault, sequela|Toxic effect of other organic solvents, assault, sequela +C2884174|T037|PT|T52.8X3S|ICD10CM|Toxic effect of other organic solvents, assault, sequela|Toxic effect of other organic solvents, assault, sequela +C2884175|T037|AB|T52.8X4|ICD10CM|Toxic effect of other organic solvents, undetermined|Toxic effect of other organic solvents, undetermined +C2884175|T037|HT|T52.8X4|ICD10CM|Toxic effect of other organic solvents, undetermined|Toxic effect of other organic solvents, undetermined +C2884176|T037|AB|T52.8X4A|ICD10CM|Toxic effect of oth organic solvents, undetermined, init|Toxic effect of oth organic solvents, undetermined, init +C2884176|T037|PT|T52.8X4A|ICD10CM|Toxic effect of other organic solvents, undetermined, initial encounter|Toxic effect of other organic solvents, undetermined, initial encounter +C2884177|T037|AB|T52.8X4D|ICD10CM|Toxic effect of oth organic solvents, undetermined, subs|Toxic effect of oth organic solvents, undetermined, subs +C2884177|T037|PT|T52.8X4D|ICD10CM|Toxic effect of other organic solvents, undetermined, subsequent encounter|Toxic effect of other organic solvents, undetermined, subsequent encounter +C2884178|T037|AB|T52.8X4S|ICD10CM|Toxic effect of oth organic solvents, undetermined, sequela|Toxic effect of oth organic solvents, undetermined, sequela +C2884178|T037|PT|T52.8X4S|ICD10CM|Toxic effect of other organic solvents, undetermined, sequela|Toxic effect of other organic solvents, undetermined, sequela +C0412953|T037|PS|T52.9|ICD10|Organic solvent, unspecified|Organic solvent, unspecified +C0412953|T037|PX|T52.9|ICD10|Toxic effect of organic solvent, unspecified|Toxic effect of organic solvent, unspecified +C0412953|T037|AB|T52.9|ICD10CM|Toxic effects of unspecified organic solvent|Toxic effects of unspecified organic solvent +C0412953|T037|HT|T52.9|ICD10CM|Toxic effects of unspecified organic solvent|Toxic effects of unspecified organic solvent +C2884179|T037|AB|T52.91|ICD10CM|Toxic effect of unsp organic solvent, accidental|Toxic effect of unsp organic solvent, accidental +C2884179|T037|HT|T52.91|ICD10CM|Toxic effect of unspecified organic solvent, accidental (unintentional)|Toxic effect of unspecified organic solvent, accidental (unintentional) +C2884180|T037|AB|T52.91XA|ICD10CM|Toxic effect of unsp organic solvent, accidental, init|Toxic effect of unsp organic solvent, accidental, init +C2884180|T037|PT|T52.91XA|ICD10CM|Toxic effect of unspecified organic solvent, accidental (unintentional), initial encounter|Toxic effect of unspecified organic solvent, accidental (unintentional), initial encounter +C2884181|T037|AB|T52.91XD|ICD10CM|Toxic effect of unsp organic solvent, accidental, subs|Toxic effect of unsp organic solvent, accidental, subs +C2884181|T037|PT|T52.91XD|ICD10CM|Toxic effect of unspecified organic solvent, accidental (unintentional), subsequent encounter|Toxic effect of unspecified organic solvent, accidental (unintentional), subsequent encounter +C2884182|T037|AB|T52.91XS|ICD10CM|Toxic effect of unsp organic solvent, accidental, sequela|Toxic effect of unsp organic solvent, accidental, sequela +C2884182|T037|PT|T52.91XS|ICD10CM|Toxic effect of unspecified organic solvent, accidental (unintentional), sequela|Toxic effect of unspecified organic solvent, accidental (unintentional), sequela +C2884183|T037|AB|T52.92|ICD10CM|Toxic effect of unsp organic solvent, intentional self-harm|Toxic effect of unsp organic solvent, intentional self-harm +C2884183|T037|HT|T52.92|ICD10CM|Toxic effect of unspecified organic solvent, intentional self-harm|Toxic effect of unspecified organic solvent, intentional self-harm +C2884184|T037|AB|T52.92XA|ICD10CM|Toxic effect of unsp organic solvent, self-harm, init|Toxic effect of unsp organic solvent, self-harm, init +C2884184|T037|PT|T52.92XA|ICD10CM|Toxic effect of unspecified organic solvent, intentional self-harm, initial encounter|Toxic effect of unspecified organic solvent, intentional self-harm, initial encounter +C2884185|T037|AB|T52.92XD|ICD10CM|Toxic effect of unsp organic solvent, self-harm, subs|Toxic effect of unsp organic solvent, self-harm, subs +C2884185|T037|PT|T52.92XD|ICD10CM|Toxic effect of unspecified organic solvent, intentional self-harm, subsequent encounter|Toxic effect of unspecified organic solvent, intentional self-harm, subsequent encounter +C2884186|T037|AB|T52.92XS|ICD10CM|Toxic effect of unsp organic solvent, self-harm, sequela|Toxic effect of unsp organic solvent, self-harm, sequela +C2884186|T037|PT|T52.92XS|ICD10CM|Toxic effect of unspecified organic solvent, intentional self-harm, sequela|Toxic effect of unspecified organic solvent, intentional self-harm, sequela +C2884187|T037|AB|T52.93|ICD10CM|Toxic effect of unspecified organic solvent, assault|Toxic effect of unspecified organic solvent, assault +C2884187|T037|HT|T52.93|ICD10CM|Toxic effect of unspecified organic solvent, assault|Toxic effect of unspecified organic solvent, assault +C2884188|T037|AB|T52.93XA|ICD10CM|Toxic effect of unsp organic solvent, assault, init encntr|Toxic effect of unsp organic solvent, assault, init encntr +C2884188|T037|PT|T52.93XA|ICD10CM|Toxic effect of unspecified organic solvent, assault, initial encounter|Toxic effect of unspecified organic solvent, assault, initial encounter +C2884189|T037|AB|T52.93XD|ICD10CM|Toxic effect of unsp organic solvent, assault, subs encntr|Toxic effect of unsp organic solvent, assault, subs encntr +C2884189|T037|PT|T52.93XD|ICD10CM|Toxic effect of unspecified organic solvent, assault, subsequent encounter|Toxic effect of unspecified organic solvent, assault, subsequent encounter +C2884190|T037|AB|T52.93XS|ICD10CM|Toxic effect of unsp organic solvent, assault, sequela|Toxic effect of unsp organic solvent, assault, sequela +C2884190|T037|PT|T52.93XS|ICD10CM|Toxic effect of unspecified organic solvent, assault, sequela|Toxic effect of unspecified organic solvent, assault, sequela +C2884191|T037|AB|T52.94|ICD10CM|Toxic effect of unspecified organic solvent, undetermined|Toxic effect of unspecified organic solvent, undetermined +C2884191|T037|HT|T52.94|ICD10CM|Toxic effect of unspecified organic solvent, undetermined|Toxic effect of unspecified organic solvent, undetermined +C2884192|T037|AB|T52.94XA|ICD10CM|Toxic effect of unsp organic solvent, undetermined, init|Toxic effect of unsp organic solvent, undetermined, init +C2884192|T037|PT|T52.94XA|ICD10CM|Toxic effect of unspecified organic solvent, undetermined, initial encounter|Toxic effect of unspecified organic solvent, undetermined, initial encounter +C2884193|T037|AB|T52.94XD|ICD10CM|Toxic effect of unsp organic solvent, undetermined, subs|Toxic effect of unsp organic solvent, undetermined, subs +C2884193|T037|PT|T52.94XD|ICD10CM|Toxic effect of unspecified organic solvent, undetermined, subsequent encounter|Toxic effect of unspecified organic solvent, undetermined, subsequent encounter +C2884194|T037|AB|T52.94XS|ICD10CM|Toxic effect of unsp organic solvent, undetermined, sequela|Toxic effect of unsp organic solvent, undetermined, sequela +C2884194|T037|PT|T52.94XS|ICD10CM|Toxic effect of unspecified organic solvent, undetermined, sequela|Toxic effect of unspecified organic solvent, undetermined, sequela +C0497013|T037|HT|T53|ICD10|Toxic effect of halogen derivatives of aliphatic and aromatic hydrocarbons|Toxic effect of halogen derivatives of aliphatic and aromatic hydrocarbons +C0497013|T037|HT|T53|ICD10CM|Toxic effect of halogen derivatives of aliphatic and aromatic hydrocarbons|Toxic effect of halogen derivatives of aliphatic and aromatic hydrocarbons +C0497013|T037|AB|T53|ICD10CM|Toxic effect of halogen derivatives of aromat hydrocrb|Toxic effect of halogen derivatives of aromat hydrocrb +C0392622|T037|PS|T53.0|ICD10|Carbon tetrachloride|Carbon tetrachloride +C0392622|T037|PX|T53.0|ICD10|Toxic effect of carbon tetrachloride|Toxic effect of carbon tetrachloride +C0392622|T037|AB|T53.0|ICD10CM|Toxic effects of carbon tetrachloride|Toxic effects of carbon tetrachloride +C0392622|T037|HT|T53.0|ICD10CM|Toxic effects of carbon tetrachloride|Toxic effects of carbon tetrachloride +C2884195|T037|ET|T53.0|ICD10CM|Toxic effects of tetrachloromethane|Toxic effects of tetrachloromethane +C0392622|T037|HT|T53.0X|ICD10CM|Toxic effects of carbon tetrachloride|Toxic effects of carbon tetrachloride +C0392622|T037|AB|T53.0X|ICD10CM|Toxic effects of carbon tetrachloride|Toxic effects of carbon tetrachloride +C2884196|T037|AB|T53.0X1|ICD10CM|Toxic effect of carbon tetrachloride, accidental|Toxic effect of carbon tetrachloride, accidental +C2884196|T037|HT|T53.0X1|ICD10CM|Toxic effect of carbon tetrachloride, accidental (unintentional)|Toxic effect of carbon tetrachloride, accidental (unintentional) +C0392622|T037|ET|T53.0X1|ICD10CM|Toxic effects of carbon tetrachloride NOS|Toxic effects of carbon tetrachloride NOS +C2884197|T037|PT|T53.0X1A|ICD10CM|Toxic effect of carbon tetrachloride, accidental (unintentional), initial encounter|Toxic effect of carbon tetrachloride, accidental (unintentional), initial encounter +C2884197|T037|AB|T53.0X1A|ICD10CM|Toxic effect of carbon tetrachloride, accidental, init|Toxic effect of carbon tetrachloride, accidental, init +C2884198|T037|PT|T53.0X1D|ICD10CM|Toxic effect of carbon tetrachloride, accidental (unintentional), subsequent encounter|Toxic effect of carbon tetrachloride, accidental (unintentional), subsequent encounter +C2884198|T037|AB|T53.0X1D|ICD10CM|Toxic effect of carbon tetrachloride, accidental, subs|Toxic effect of carbon tetrachloride, accidental, subs +C2884199|T037|PT|T53.0X1S|ICD10CM|Toxic effect of carbon tetrachloride, accidental (unintentional), sequela|Toxic effect of carbon tetrachloride, accidental (unintentional), sequela +C2884199|T037|AB|T53.0X1S|ICD10CM|Toxic effect of carbon tetrachloride, accidental, sequela|Toxic effect of carbon tetrachloride, accidental, sequela +C2884200|T037|AB|T53.0X2|ICD10CM|Toxic effect of carbon tetrachloride, intentional self-harm|Toxic effect of carbon tetrachloride, intentional self-harm +C2884200|T037|HT|T53.0X2|ICD10CM|Toxic effect of carbon tetrachloride, intentional self-harm|Toxic effect of carbon tetrachloride, intentional self-harm +C2884201|T037|PT|T53.0X2A|ICD10CM|Toxic effect of carbon tetrachloride, intentional self-harm, initial encounter|Toxic effect of carbon tetrachloride, intentional self-harm, initial encounter +C2884201|T037|AB|T53.0X2A|ICD10CM|Toxic effect of carbon tetrachloride, self-harm, init|Toxic effect of carbon tetrachloride, self-harm, init +C2884202|T037|PT|T53.0X2D|ICD10CM|Toxic effect of carbon tetrachloride, intentional self-harm, subsequent encounter|Toxic effect of carbon tetrachloride, intentional self-harm, subsequent encounter +C2884202|T037|AB|T53.0X2D|ICD10CM|Toxic effect of carbon tetrachloride, self-harm, subs|Toxic effect of carbon tetrachloride, self-harm, subs +C2884203|T037|PT|T53.0X2S|ICD10CM|Toxic effect of carbon tetrachloride, intentional self-harm, sequela|Toxic effect of carbon tetrachloride, intentional self-harm, sequela +C2884203|T037|AB|T53.0X2S|ICD10CM|Toxic effect of carbon tetrachloride, self-harm, sequela|Toxic effect of carbon tetrachloride, self-harm, sequela +C2884204|T037|AB|T53.0X3|ICD10CM|Toxic effect of carbon tetrachloride, assault|Toxic effect of carbon tetrachloride, assault +C2884204|T037|HT|T53.0X3|ICD10CM|Toxic effect of carbon tetrachloride, assault|Toxic effect of carbon tetrachloride, assault +C2884205|T037|AB|T53.0X3A|ICD10CM|Toxic effect of carbon tetrachloride, assault, init encntr|Toxic effect of carbon tetrachloride, assault, init encntr +C2884205|T037|PT|T53.0X3A|ICD10CM|Toxic effect of carbon tetrachloride, assault, initial encounter|Toxic effect of carbon tetrachloride, assault, initial encounter +C2884206|T037|AB|T53.0X3D|ICD10CM|Toxic effect of carbon tetrachloride, assault, subs encntr|Toxic effect of carbon tetrachloride, assault, subs encntr +C2884206|T037|PT|T53.0X3D|ICD10CM|Toxic effect of carbon tetrachloride, assault, subsequent encounter|Toxic effect of carbon tetrachloride, assault, subsequent encounter +C2884207|T037|AB|T53.0X3S|ICD10CM|Toxic effect of carbon tetrachloride, assault, sequela|Toxic effect of carbon tetrachloride, assault, sequela +C2884207|T037|PT|T53.0X3S|ICD10CM|Toxic effect of carbon tetrachloride, assault, sequela|Toxic effect of carbon tetrachloride, assault, sequela +C2884208|T037|AB|T53.0X4|ICD10CM|Toxic effect of carbon tetrachloride, undetermined|Toxic effect of carbon tetrachloride, undetermined +C2884208|T037|HT|T53.0X4|ICD10CM|Toxic effect of carbon tetrachloride, undetermined|Toxic effect of carbon tetrachloride, undetermined +C2884209|T037|AB|T53.0X4A|ICD10CM|Toxic effect of carbon tetrachloride, undetermined, init|Toxic effect of carbon tetrachloride, undetermined, init +C2884209|T037|PT|T53.0X4A|ICD10CM|Toxic effect of carbon tetrachloride, undetermined, initial encounter|Toxic effect of carbon tetrachloride, undetermined, initial encounter +C2884210|T037|AB|T53.0X4D|ICD10CM|Toxic effect of carbon tetrachloride, undetermined, subs|Toxic effect of carbon tetrachloride, undetermined, subs +C2884210|T037|PT|T53.0X4D|ICD10CM|Toxic effect of carbon tetrachloride, undetermined, subsequent encounter|Toxic effect of carbon tetrachloride, undetermined, subsequent encounter +C2884211|T037|AB|T53.0X4S|ICD10CM|Toxic effect of carbon tetrachloride, undetermined, sequela|Toxic effect of carbon tetrachloride, undetermined, sequela +C2884211|T037|PT|T53.0X4S|ICD10CM|Toxic effect of carbon tetrachloride, undetermined, sequela|Toxic effect of carbon tetrachloride, undetermined, sequela +C0452172|T037|PS|T53.1|ICD10|Chloroform|Chloroform +C0452172|T037|PX|T53.1|ICD10|Toxic effect of chloroform|Toxic effect of chloroform +C0452172|T037|AB|T53.1|ICD10CM|Toxic effects of chloroform|Toxic effects of chloroform +C0452172|T037|HT|T53.1|ICD10CM|Toxic effects of chloroform|Toxic effects of chloroform +C2884212|T037|ET|T53.1|ICD10CM|Toxic effects of trichloromethane|Toxic effects of trichloromethane +C0452172|T037|HT|T53.1X|ICD10CM|Toxic effects of chloroform|Toxic effects of chloroform +C0452172|T037|AB|T53.1X|ICD10CM|Toxic effects of chloroform|Toxic effects of chloroform +C2884213|T037|AB|T53.1X1|ICD10CM|Toxic effect of chloroform, accidental (unintentional)|Toxic effect of chloroform, accidental (unintentional) +C2884213|T037|HT|T53.1X1|ICD10CM|Toxic effect of chloroform, accidental (unintentional)|Toxic effect of chloroform, accidental (unintentional) +C0452172|T037|ET|T53.1X1|ICD10CM|Toxic effects of chloroform NOS|Toxic effects of chloroform NOS +C2884214|T037|AB|T53.1X1A|ICD10CM|Toxic effect of chloroform, accidental (unintentional), init|Toxic effect of chloroform, accidental (unintentional), init +C2884214|T037|PT|T53.1X1A|ICD10CM|Toxic effect of chloroform, accidental (unintentional), initial encounter|Toxic effect of chloroform, accidental (unintentional), initial encounter +C2884215|T037|AB|T53.1X1D|ICD10CM|Toxic effect of chloroform, accidental (unintentional), subs|Toxic effect of chloroform, accidental (unintentional), subs +C2884215|T037|PT|T53.1X1D|ICD10CM|Toxic effect of chloroform, accidental (unintentional), subsequent encounter|Toxic effect of chloroform, accidental (unintentional), subsequent encounter +C2884216|T037|PT|T53.1X1S|ICD10CM|Toxic effect of chloroform, accidental (unintentional), sequela|Toxic effect of chloroform, accidental (unintentional), sequela +C2884216|T037|AB|T53.1X1S|ICD10CM|Toxic effect of chloroform, accidental, sequela|Toxic effect of chloroform, accidental, sequela +C2884217|T037|AB|T53.1X2|ICD10CM|Toxic effect of chloroform, intentional self-harm|Toxic effect of chloroform, intentional self-harm +C2884217|T037|HT|T53.1X2|ICD10CM|Toxic effect of chloroform, intentional self-harm|Toxic effect of chloroform, intentional self-harm +C2884218|T037|AB|T53.1X2A|ICD10CM|Toxic effect of chloroform, intentional self-harm, init|Toxic effect of chloroform, intentional self-harm, init +C2884218|T037|PT|T53.1X2A|ICD10CM|Toxic effect of chloroform, intentional self-harm, initial encounter|Toxic effect of chloroform, intentional self-harm, initial encounter +C2884219|T037|AB|T53.1X2D|ICD10CM|Toxic effect of chloroform, intentional self-harm, subs|Toxic effect of chloroform, intentional self-harm, subs +C2884219|T037|PT|T53.1X2D|ICD10CM|Toxic effect of chloroform, intentional self-harm, subsequent encounter|Toxic effect of chloroform, intentional self-harm, subsequent encounter +C2884220|T037|AB|T53.1X2S|ICD10CM|Toxic effect of chloroform, intentional self-harm, sequela|Toxic effect of chloroform, intentional self-harm, sequela +C2884220|T037|PT|T53.1X2S|ICD10CM|Toxic effect of chloroform, intentional self-harm, sequela|Toxic effect of chloroform, intentional self-harm, sequela +C2884221|T037|AB|T53.1X3|ICD10CM|Toxic effect of chloroform, assault|Toxic effect of chloroform, assault +C2884221|T037|HT|T53.1X3|ICD10CM|Toxic effect of chloroform, assault|Toxic effect of chloroform, assault +C2884222|T037|AB|T53.1X3A|ICD10CM|Toxic effect of chloroform, assault, initial encounter|Toxic effect of chloroform, assault, initial encounter +C2884222|T037|PT|T53.1X3A|ICD10CM|Toxic effect of chloroform, assault, initial encounter|Toxic effect of chloroform, assault, initial encounter +C2884223|T037|AB|T53.1X3D|ICD10CM|Toxic effect of chloroform, assault, subsequent encounter|Toxic effect of chloroform, assault, subsequent encounter +C2884223|T037|PT|T53.1X3D|ICD10CM|Toxic effect of chloroform, assault, subsequent encounter|Toxic effect of chloroform, assault, subsequent encounter +C2884224|T037|AB|T53.1X3S|ICD10CM|Toxic effect of chloroform, assault, sequela|Toxic effect of chloroform, assault, sequela +C2884224|T037|PT|T53.1X3S|ICD10CM|Toxic effect of chloroform, assault, sequela|Toxic effect of chloroform, assault, sequela +C2884225|T037|AB|T53.1X4|ICD10CM|Toxic effect of chloroform, undetermined|Toxic effect of chloroform, undetermined +C2884225|T037|HT|T53.1X4|ICD10CM|Toxic effect of chloroform, undetermined|Toxic effect of chloroform, undetermined +C2884226|T037|AB|T53.1X4A|ICD10CM|Toxic effect of chloroform, undetermined, initial encounter|Toxic effect of chloroform, undetermined, initial encounter +C2884226|T037|PT|T53.1X4A|ICD10CM|Toxic effect of chloroform, undetermined, initial encounter|Toxic effect of chloroform, undetermined, initial encounter +C2884227|T037|AB|T53.1X4D|ICD10CM|Toxic effect of chloroform, undetermined, subs encntr|Toxic effect of chloroform, undetermined, subs encntr +C2884227|T037|PT|T53.1X4D|ICD10CM|Toxic effect of chloroform, undetermined, subsequent encounter|Toxic effect of chloroform, undetermined, subsequent encounter +C2884228|T037|AB|T53.1X4S|ICD10CM|Toxic effect of chloroform, undetermined, sequela|Toxic effect of chloroform, undetermined, sequela +C2884228|T037|PT|T53.1X4S|ICD10CM|Toxic effect of chloroform, undetermined, sequela|Toxic effect of chloroform, undetermined, sequela +C0274845|T037|PX|T53.2|ICD10|Toxic effect of trichloroethylene|Toxic effect of trichloroethylene +C2884229|T037|ET|T53.2|ICD10CM|Toxic effects of trichloroethene|Toxic effects of trichloroethene +C0274845|T037|AB|T53.2|ICD10CM|Toxic effects of trichloroethylene|Toxic effects of trichloroethylene +C0274845|T037|HT|T53.2|ICD10CM|Toxic effects of trichloroethylene|Toxic effects of trichloroethylene +C0274845|T037|PS|T53.2|ICD10|Trichloroethylene|Trichloroethylene +C0274845|T037|HT|T53.2X|ICD10CM|Toxic effects of trichloroethylene|Toxic effects of trichloroethylene +C0274845|T037|AB|T53.2X|ICD10CM|Toxic effects of trichloroethylene|Toxic effects of trichloroethylene +C2884230|T037|AB|T53.2X1|ICD10CM|Toxic effect of trichloroethylene, accidental|Toxic effect of trichloroethylene, accidental +C2884230|T037|HT|T53.2X1|ICD10CM|Toxic effect of trichloroethylene, accidental (unintentional)|Toxic effect of trichloroethylene, accidental (unintentional) +C0274845|T037|ET|T53.2X1|ICD10CM|Toxic effects of trichloroethylene NOS|Toxic effects of trichloroethylene NOS +C2884231|T037|PT|T53.2X1A|ICD10CM|Toxic effect of trichloroethylene, accidental (unintentional), initial encounter|Toxic effect of trichloroethylene, accidental (unintentional), initial encounter +C2884231|T037|AB|T53.2X1A|ICD10CM|Toxic effect of trichloroethylene, accidental, init|Toxic effect of trichloroethylene, accidental, init +C2884232|T037|PT|T53.2X1D|ICD10CM|Toxic effect of trichloroethylene, accidental (unintentional), subsequent encounter|Toxic effect of trichloroethylene, accidental (unintentional), subsequent encounter +C2884232|T037|AB|T53.2X1D|ICD10CM|Toxic effect of trichloroethylene, accidental, subs|Toxic effect of trichloroethylene, accidental, subs +C2884233|T037|PT|T53.2X1S|ICD10CM|Toxic effect of trichloroethylene, accidental (unintentional), sequela|Toxic effect of trichloroethylene, accidental (unintentional), sequela +C2884233|T037|AB|T53.2X1S|ICD10CM|Toxic effect of trichloroethylene, accidental, sequela|Toxic effect of trichloroethylene, accidental, sequela +C2884234|T037|AB|T53.2X2|ICD10CM|Toxic effect of trichloroethylene, intentional self-harm|Toxic effect of trichloroethylene, intentional self-harm +C2884234|T037|HT|T53.2X2|ICD10CM|Toxic effect of trichloroethylene, intentional self-harm|Toxic effect of trichloroethylene, intentional self-harm +C2884235|T037|PT|T53.2X2A|ICD10CM|Toxic effect of trichloroethylene, intentional self-harm, initial encounter|Toxic effect of trichloroethylene, intentional self-harm, initial encounter +C2884235|T037|AB|T53.2X2A|ICD10CM|Toxic effect of trichloroethylene, self-harm, init|Toxic effect of trichloroethylene, self-harm, init +C2884236|T037|PT|T53.2X2D|ICD10CM|Toxic effect of trichloroethylene, intentional self-harm, subsequent encounter|Toxic effect of trichloroethylene, intentional self-harm, subsequent encounter +C2884236|T037|AB|T53.2X2D|ICD10CM|Toxic effect of trichloroethylene, self-harm, subs|Toxic effect of trichloroethylene, self-harm, subs +C2884237|T037|PT|T53.2X2S|ICD10CM|Toxic effect of trichloroethylene, intentional self-harm, sequela|Toxic effect of trichloroethylene, intentional self-harm, sequela +C2884237|T037|AB|T53.2X2S|ICD10CM|Toxic effect of trichloroethylene, self-harm, sequela|Toxic effect of trichloroethylene, self-harm, sequela +C2884238|T037|AB|T53.2X3|ICD10CM|Toxic effect of trichloroethylene, assault|Toxic effect of trichloroethylene, assault +C2884238|T037|HT|T53.2X3|ICD10CM|Toxic effect of trichloroethylene, assault|Toxic effect of trichloroethylene, assault +C2884239|T037|AB|T53.2X3A|ICD10CM|Toxic effect of trichloroethylene, assault, init encntr|Toxic effect of trichloroethylene, assault, init encntr +C2884239|T037|PT|T53.2X3A|ICD10CM|Toxic effect of trichloroethylene, assault, initial encounter|Toxic effect of trichloroethylene, assault, initial encounter +C2884240|T037|AB|T53.2X3D|ICD10CM|Toxic effect of trichloroethylene, assault, subs encntr|Toxic effect of trichloroethylene, assault, subs encntr +C2884240|T037|PT|T53.2X3D|ICD10CM|Toxic effect of trichloroethylene, assault, subsequent encounter|Toxic effect of trichloroethylene, assault, subsequent encounter +C2884241|T037|AB|T53.2X3S|ICD10CM|Toxic effect of trichloroethylene, assault, sequela|Toxic effect of trichloroethylene, assault, sequela +C2884241|T037|PT|T53.2X3S|ICD10CM|Toxic effect of trichloroethylene, assault, sequela|Toxic effect of trichloroethylene, assault, sequela +C2884242|T037|AB|T53.2X4|ICD10CM|Toxic effect of trichloroethylene, undetermined|Toxic effect of trichloroethylene, undetermined +C2884242|T037|HT|T53.2X4|ICD10CM|Toxic effect of trichloroethylene, undetermined|Toxic effect of trichloroethylene, undetermined +C2884243|T037|AB|T53.2X4A|ICD10CM|Toxic effect of trichloroethylene, undetermined, init encntr|Toxic effect of trichloroethylene, undetermined, init encntr +C2884243|T037|PT|T53.2X4A|ICD10CM|Toxic effect of trichloroethylene, undetermined, initial encounter|Toxic effect of trichloroethylene, undetermined, initial encounter +C2884244|T037|AB|T53.2X4D|ICD10CM|Toxic effect of trichloroethylene, undetermined, subs encntr|Toxic effect of trichloroethylene, undetermined, subs encntr +C2884244|T037|PT|T53.2X4D|ICD10CM|Toxic effect of trichloroethylene, undetermined, subsequent encounter|Toxic effect of trichloroethylene, undetermined, subsequent encounter +C2884245|T037|AB|T53.2X4S|ICD10CM|Toxic effect of trichloroethylene, undetermined, sequela|Toxic effect of trichloroethylene, undetermined, sequela +C2884245|T037|PT|T53.2X4S|ICD10CM|Toxic effect of trichloroethylene, undetermined, sequela|Toxic effect of trichloroethylene, undetermined, sequela +C0274844|T037|PS|T53.3|ICD10|Tetrachloroethylene|Tetrachloroethylene +C2884246|T037|ET|T53.3|ICD10CM|Toxic effect of tetrachloroethene|Toxic effect of tetrachloroethene +C0274844|T037|PX|T53.3|ICD10|Toxic effect of tetrachloroethylene|Toxic effect of tetrachloroethylene +C2884247|T037|ET|T53.3|ICD10CM|Toxic effects of perchloroethylene|Toxic effects of perchloroethylene +C0274844|T037|AB|T53.3|ICD10CM|Toxic effects of tetrachloroethylene|Toxic effects of tetrachloroethylene +C0274844|T037|HT|T53.3|ICD10CM|Toxic effects of tetrachloroethylene|Toxic effects of tetrachloroethylene +C0274844|T037|HT|T53.3X|ICD10CM|Toxic effects of tetrachloroethylene|Toxic effects of tetrachloroethylene +C0274844|T037|AB|T53.3X|ICD10CM|Toxic effects of tetrachloroethylene|Toxic effects of tetrachloroethylene +C2884248|T037|AB|T53.3X1|ICD10CM|Toxic effect of tetrachloroethylene, accidental|Toxic effect of tetrachloroethylene, accidental +C2884248|T037|HT|T53.3X1|ICD10CM|Toxic effect of tetrachloroethylene, accidental (unintentional)|Toxic effect of tetrachloroethylene, accidental (unintentional) +C0274844|T037|ET|T53.3X1|ICD10CM|Toxic effects of tetrachloroethylene NOS|Toxic effects of tetrachloroethylene NOS +C2884249|T037|PT|T53.3X1A|ICD10CM|Toxic effect of tetrachloroethylene, accidental (unintentional), initial encounter|Toxic effect of tetrachloroethylene, accidental (unintentional), initial encounter +C2884249|T037|AB|T53.3X1A|ICD10CM|Toxic effect of tetrachloroethylene, accidental, init|Toxic effect of tetrachloroethylene, accidental, init +C2884250|T037|PT|T53.3X1D|ICD10CM|Toxic effect of tetrachloroethylene, accidental (unintentional), subsequent encounter|Toxic effect of tetrachloroethylene, accidental (unintentional), subsequent encounter +C2884250|T037|AB|T53.3X1D|ICD10CM|Toxic effect of tetrachloroethylene, accidental, subs|Toxic effect of tetrachloroethylene, accidental, subs +C2884251|T037|PT|T53.3X1S|ICD10CM|Toxic effect of tetrachloroethylene, accidental (unintentional), sequela|Toxic effect of tetrachloroethylene, accidental (unintentional), sequela +C2884251|T037|AB|T53.3X1S|ICD10CM|Toxic effect of tetrachloroethylene, accidental, sequela|Toxic effect of tetrachloroethylene, accidental, sequela +C2884252|T037|AB|T53.3X2|ICD10CM|Toxic effect of tetrachloroethylene, intentional self-harm|Toxic effect of tetrachloroethylene, intentional self-harm +C2884252|T037|HT|T53.3X2|ICD10CM|Toxic effect of tetrachloroethylene, intentional self-harm|Toxic effect of tetrachloroethylene, intentional self-harm +C2884253|T037|PT|T53.3X2A|ICD10CM|Toxic effect of tetrachloroethylene, intentional self-harm, initial encounter|Toxic effect of tetrachloroethylene, intentional self-harm, initial encounter +C2884253|T037|AB|T53.3X2A|ICD10CM|Toxic effect of tetrachloroethylene, self-harm, init|Toxic effect of tetrachloroethylene, self-harm, init +C2884254|T037|PT|T53.3X2D|ICD10CM|Toxic effect of tetrachloroethylene, intentional self-harm, subsequent encounter|Toxic effect of tetrachloroethylene, intentional self-harm, subsequent encounter +C2884254|T037|AB|T53.3X2D|ICD10CM|Toxic effect of tetrachloroethylene, self-harm, subs|Toxic effect of tetrachloroethylene, self-harm, subs +C2884255|T037|PT|T53.3X2S|ICD10CM|Toxic effect of tetrachloroethylene, intentional self-harm, sequela|Toxic effect of tetrachloroethylene, intentional self-harm, sequela +C2884255|T037|AB|T53.3X2S|ICD10CM|Toxic effect of tetrachloroethylene, self-harm, sequela|Toxic effect of tetrachloroethylene, self-harm, sequela +C2884256|T037|AB|T53.3X3|ICD10CM|Toxic effect of tetrachloroethylene, assault|Toxic effect of tetrachloroethylene, assault +C2884256|T037|HT|T53.3X3|ICD10CM|Toxic effect of tetrachloroethylene, assault|Toxic effect of tetrachloroethylene, assault +C2884257|T037|AB|T53.3X3A|ICD10CM|Toxic effect of tetrachloroethylene, assault, init encntr|Toxic effect of tetrachloroethylene, assault, init encntr +C2884257|T037|PT|T53.3X3A|ICD10CM|Toxic effect of tetrachloroethylene, assault, initial encounter|Toxic effect of tetrachloroethylene, assault, initial encounter +C2884258|T037|AB|T53.3X3D|ICD10CM|Toxic effect of tetrachloroethylene, assault, subs encntr|Toxic effect of tetrachloroethylene, assault, subs encntr +C2884258|T037|PT|T53.3X3D|ICD10CM|Toxic effect of tetrachloroethylene, assault, subsequent encounter|Toxic effect of tetrachloroethylene, assault, subsequent encounter +C2884259|T037|AB|T53.3X3S|ICD10CM|Toxic effect of tetrachloroethylene, assault, sequela|Toxic effect of tetrachloroethylene, assault, sequela +C2884259|T037|PT|T53.3X3S|ICD10CM|Toxic effect of tetrachloroethylene, assault, sequela|Toxic effect of tetrachloroethylene, assault, sequela +C2884260|T037|AB|T53.3X4|ICD10CM|Toxic effect of tetrachloroethylene, undetermined|Toxic effect of tetrachloroethylene, undetermined +C2884260|T037|HT|T53.3X4|ICD10CM|Toxic effect of tetrachloroethylene, undetermined|Toxic effect of tetrachloroethylene, undetermined +C2884261|T037|AB|T53.3X4A|ICD10CM|Toxic effect of tetrachloroethylene, undetermined, init|Toxic effect of tetrachloroethylene, undetermined, init +C2884261|T037|PT|T53.3X4A|ICD10CM|Toxic effect of tetrachloroethylene, undetermined, initial encounter|Toxic effect of tetrachloroethylene, undetermined, initial encounter +C2884262|T037|AB|T53.3X4D|ICD10CM|Toxic effect of tetrachloroethylene, undetermined, subs|Toxic effect of tetrachloroethylene, undetermined, subs +C2884262|T037|PT|T53.3X4D|ICD10CM|Toxic effect of tetrachloroethylene, undetermined, subsequent encounter|Toxic effect of tetrachloroethylene, undetermined, subsequent encounter +C2884263|T037|AB|T53.3X4S|ICD10CM|Toxic effect of tetrachloroethylene, undetermined, sequela|Toxic effect of tetrachloroethylene, undetermined, sequela +C2884263|T037|PT|T53.3X4S|ICD10CM|Toxic effect of tetrachloroethylene, undetermined, sequela|Toxic effect of tetrachloroethylene, undetermined, sequela +C0452150|T037|PS|T53.4|ICD10|Dichloromethane|Dichloromethane +C0452150|T037|PX|T53.4|ICD10|Toxic effect of dichloromethane|Toxic effect of dichloromethane +C0452150|T037|AB|T53.4|ICD10CM|Toxic effects of dichloromethane|Toxic effects of dichloromethane +C0452150|T037|HT|T53.4|ICD10CM|Toxic effects of dichloromethane|Toxic effects of dichloromethane +C2884264|T037|ET|T53.4|ICD10CM|Toxic effects of methylene chloride|Toxic effects of methylene chloride +C0452150|T037|HT|T53.4X|ICD10CM|Toxic effects of dichloromethane|Toxic effects of dichloromethane +C0452150|T037|AB|T53.4X|ICD10CM|Toxic effects of dichloromethane|Toxic effects of dichloromethane +C2884265|T037|AB|T53.4X1|ICD10CM|Toxic effect of dichloromethane, accidental (unintentional)|Toxic effect of dichloromethane, accidental (unintentional) +C2884265|T037|HT|T53.4X1|ICD10CM|Toxic effect of dichloromethane, accidental (unintentional)|Toxic effect of dichloromethane, accidental (unintentional) +C0452150|T037|ET|T53.4X1|ICD10CM|Toxic effects of dichloromethane NOS|Toxic effects of dichloromethane NOS +C2884266|T037|PT|T53.4X1A|ICD10CM|Toxic effect of dichloromethane, accidental (unintentional), initial encounter|Toxic effect of dichloromethane, accidental (unintentional), initial encounter +C2884266|T037|AB|T53.4X1A|ICD10CM|Toxic effect of dichloromethane, accidental, init|Toxic effect of dichloromethane, accidental, init +C2884267|T037|PT|T53.4X1D|ICD10CM|Toxic effect of dichloromethane, accidental (unintentional), subsequent encounter|Toxic effect of dichloromethane, accidental (unintentional), subsequent encounter +C2884267|T037|AB|T53.4X1D|ICD10CM|Toxic effect of dichloromethane, accidental, subs|Toxic effect of dichloromethane, accidental, subs +C2884268|T037|PT|T53.4X1S|ICD10CM|Toxic effect of dichloromethane, accidental (unintentional), sequela|Toxic effect of dichloromethane, accidental (unintentional), sequela +C2884268|T037|AB|T53.4X1S|ICD10CM|Toxic effect of dichloromethane, accidental, sequela|Toxic effect of dichloromethane, accidental, sequela +C2884269|T037|AB|T53.4X2|ICD10CM|Toxic effect of dichloromethane, intentional self-harm|Toxic effect of dichloromethane, intentional self-harm +C2884269|T037|HT|T53.4X2|ICD10CM|Toxic effect of dichloromethane, intentional self-harm|Toxic effect of dichloromethane, intentional self-harm +C2884270|T037|AB|T53.4X2A|ICD10CM|Toxic effect of dichloromethane, intentional self-harm, init|Toxic effect of dichloromethane, intentional self-harm, init +C2884270|T037|PT|T53.4X2A|ICD10CM|Toxic effect of dichloromethane, intentional self-harm, initial encounter|Toxic effect of dichloromethane, intentional self-harm, initial encounter +C2884271|T037|AB|T53.4X2D|ICD10CM|Toxic effect of dichloromethane, intentional self-harm, subs|Toxic effect of dichloromethane, intentional self-harm, subs +C2884271|T037|PT|T53.4X2D|ICD10CM|Toxic effect of dichloromethane, intentional self-harm, subsequent encounter|Toxic effect of dichloromethane, intentional self-harm, subsequent encounter +C2884272|T037|PT|T53.4X2S|ICD10CM|Toxic effect of dichloromethane, intentional self-harm, sequela|Toxic effect of dichloromethane, intentional self-harm, sequela +C2884272|T037|AB|T53.4X2S|ICD10CM|Toxic effect of dichloromethane, self-harm, sequela|Toxic effect of dichloromethane, self-harm, sequela +C2884273|T037|AB|T53.4X3|ICD10CM|Toxic effect of dichloromethane, assault|Toxic effect of dichloromethane, assault +C2884273|T037|HT|T53.4X3|ICD10CM|Toxic effect of dichloromethane, assault|Toxic effect of dichloromethane, assault +C2884274|T037|AB|T53.4X3A|ICD10CM|Toxic effect of dichloromethane, assault, initial encounter|Toxic effect of dichloromethane, assault, initial encounter +C2884274|T037|PT|T53.4X3A|ICD10CM|Toxic effect of dichloromethane, assault, initial encounter|Toxic effect of dichloromethane, assault, initial encounter +C2884275|T037|AB|T53.4X3D|ICD10CM|Toxic effect of dichloromethane, assault, subs encntr|Toxic effect of dichloromethane, assault, subs encntr +C2884275|T037|PT|T53.4X3D|ICD10CM|Toxic effect of dichloromethane, assault, subsequent encounter|Toxic effect of dichloromethane, assault, subsequent encounter +C2884276|T037|AB|T53.4X3S|ICD10CM|Toxic effect of dichloromethane, assault, sequela|Toxic effect of dichloromethane, assault, sequela +C2884276|T037|PT|T53.4X3S|ICD10CM|Toxic effect of dichloromethane, assault, sequela|Toxic effect of dichloromethane, assault, sequela +C2884277|T037|AB|T53.4X4|ICD10CM|Toxic effect of dichloromethane, undetermined|Toxic effect of dichloromethane, undetermined +C2884277|T037|HT|T53.4X4|ICD10CM|Toxic effect of dichloromethane, undetermined|Toxic effect of dichloromethane, undetermined +C2884278|T037|AB|T53.4X4A|ICD10CM|Toxic effect of dichloromethane, undetermined, init encntr|Toxic effect of dichloromethane, undetermined, init encntr +C2884278|T037|PT|T53.4X4A|ICD10CM|Toxic effect of dichloromethane, undetermined, initial encounter|Toxic effect of dichloromethane, undetermined, initial encounter +C2884279|T037|AB|T53.4X4D|ICD10CM|Toxic effect of dichloromethane, undetermined, subs encntr|Toxic effect of dichloromethane, undetermined, subs encntr +C2884279|T037|PT|T53.4X4D|ICD10CM|Toxic effect of dichloromethane, undetermined, subsequent encounter|Toxic effect of dichloromethane, undetermined, subsequent encounter +C2884280|T037|AB|T53.4X4S|ICD10CM|Toxic effect of dichloromethane, undetermined, sequela|Toxic effect of dichloromethane, undetermined, sequela +C2884280|T037|PT|T53.4X4S|ICD10CM|Toxic effect of dichloromethane, undetermined, sequela|Toxic effect of dichloromethane, undetermined, sequela +C0497012|T037|PS|T53.5|ICD10|Chlorofluorocarbons|Chlorofluorocarbons +C0497012|T037|PX|T53.5|ICD10|Toxic effect of chlorofluorocarbons|Toxic effect of chlorofluorocarbons +C0497012|T037|AB|T53.5|ICD10CM|Toxic effects of chlorofluorocarbons|Toxic effects of chlorofluorocarbons +C0497012|T037|HT|T53.5|ICD10CM|Toxic effects of chlorofluorocarbons|Toxic effects of chlorofluorocarbons +C0497012|T037|HT|T53.5X|ICD10CM|Toxic effects of chlorofluorocarbons|Toxic effects of chlorofluorocarbons +C0497012|T037|AB|T53.5X|ICD10CM|Toxic effects of chlorofluorocarbons|Toxic effects of chlorofluorocarbons +C2884281|T037|AB|T53.5X1|ICD10CM|Toxic effect of chlorofluorocarbons, accidental|Toxic effect of chlorofluorocarbons, accidental +C2884281|T037|HT|T53.5X1|ICD10CM|Toxic effect of chlorofluorocarbons, accidental (unintentional)|Toxic effect of chlorofluorocarbons, accidental (unintentional) +C0497012|T037|ET|T53.5X1|ICD10CM|Toxic effects of chlorofluorocarbons NOS|Toxic effects of chlorofluorocarbons NOS +C2884282|T037|PT|T53.5X1A|ICD10CM|Toxic effect of chlorofluorocarbons, accidental (unintentional), initial encounter|Toxic effect of chlorofluorocarbons, accidental (unintentional), initial encounter +C2884282|T037|AB|T53.5X1A|ICD10CM|Toxic effect of chlorofluorocarbons, accidental, init|Toxic effect of chlorofluorocarbons, accidental, init +C2884283|T037|PT|T53.5X1D|ICD10CM|Toxic effect of chlorofluorocarbons, accidental (unintentional), subsequent encounter|Toxic effect of chlorofluorocarbons, accidental (unintentional), subsequent encounter +C2884283|T037|AB|T53.5X1D|ICD10CM|Toxic effect of chlorofluorocarbons, accidental, subs|Toxic effect of chlorofluorocarbons, accidental, subs +C2884284|T037|PT|T53.5X1S|ICD10CM|Toxic effect of chlorofluorocarbons, accidental (unintentional), sequela|Toxic effect of chlorofluorocarbons, accidental (unintentional), sequela +C2884284|T037|AB|T53.5X1S|ICD10CM|Toxic effect of chlorofluorocarbons, accidental, sequela|Toxic effect of chlorofluorocarbons, accidental, sequela +C2884285|T037|AB|T53.5X2|ICD10CM|Toxic effect of chlorofluorocarbons, intentional self-harm|Toxic effect of chlorofluorocarbons, intentional self-harm +C2884285|T037|HT|T53.5X2|ICD10CM|Toxic effect of chlorofluorocarbons, intentional self-harm|Toxic effect of chlorofluorocarbons, intentional self-harm +C2884286|T037|PT|T53.5X2A|ICD10CM|Toxic effect of chlorofluorocarbons, intentional self-harm, initial encounter|Toxic effect of chlorofluorocarbons, intentional self-harm, initial encounter +C2884286|T037|AB|T53.5X2A|ICD10CM|Toxic effect of chlorofluorocarbons, self-harm, init|Toxic effect of chlorofluorocarbons, self-harm, init +C2884287|T037|PT|T53.5X2D|ICD10CM|Toxic effect of chlorofluorocarbons, intentional self-harm, subsequent encounter|Toxic effect of chlorofluorocarbons, intentional self-harm, subsequent encounter +C2884287|T037|AB|T53.5X2D|ICD10CM|Toxic effect of chlorofluorocarbons, self-harm, subs|Toxic effect of chlorofluorocarbons, self-harm, subs +C2884288|T037|PT|T53.5X2S|ICD10CM|Toxic effect of chlorofluorocarbons, intentional self-harm, sequela|Toxic effect of chlorofluorocarbons, intentional self-harm, sequela +C2884288|T037|AB|T53.5X2S|ICD10CM|Toxic effect of chlorofluorocarbons, self-harm, sequela|Toxic effect of chlorofluorocarbons, self-harm, sequela +C2884289|T037|AB|T53.5X3|ICD10CM|Toxic effect of chlorofluorocarbons, assault|Toxic effect of chlorofluorocarbons, assault +C2884289|T037|HT|T53.5X3|ICD10CM|Toxic effect of chlorofluorocarbons, assault|Toxic effect of chlorofluorocarbons, assault +C2884290|T037|AB|T53.5X3A|ICD10CM|Toxic effect of chlorofluorocarbons, assault, init encntr|Toxic effect of chlorofluorocarbons, assault, init encntr +C2884290|T037|PT|T53.5X3A|ICD10CM|Toxic effect of chlorofluorocarbons, assault, initial encounter|Toxic effect of chlorofluorocarbons, assault, initial encounter +C2884291|T037|AB|T53.5X3D|ICD10CM|Toxic effect of chlorofluorocarbons, assault, subs encntr|Toxic effect of chlorofluorocarbons, assault, subs encntr +C2884291|T037|PT|T53.5X3D|ICD10CM|Toxic effect of chlorofluorocarbons, assault, subsequent encounter|Toxic effect of chlorofluorocarbons, assault, subsequent encounter +C2884292|T037|AB|T53.5X3S|ICD10CM|Toxic effect of chlorofluorocarbons, assault, sequela|Toxic effect of chlorofluorocarbons, assault, sequela +C2884292|T037|PT|T53.5X3S|ICD10CM|Toxic effect of chlorofluorocarbons, assault, sequela|Toxic effect of chlorofluorocarbons, assault, sequela +C2884293|T037|AB|T53.5X4|ICD10CM|Toxic effect of chlorofluorocarbons, undetermined|Toxic effect of chlorofluorocarbons, undetermined +C2884293|T037|HT|T53.5X4|ICD10CM|Toxic effect of chlorofluorocarbons, undetermined|Toxic effect of chlorofluorocarbons, undetermined +C2884294|T037|AB|T53.5X4A|ICD10CM|Toxic effect of chlorofluorocarbons, undetermined, init|Toxic effect of chlorofluorocarbons, undetermined, init +C2884294|T037|PT|T53.5X4A|ICD10CM|Toxic effect of chlorofluorocarbons, undetermined, initial encounter|Toxic effect of chlorofluorocarbons, undetermined, initial encounter +C2884295|T037|AB|T53.5X4D|ICD10CM|Toxic effect of chlorofluorocarbons, undetermined, subs|Toxic effect of chlorofluorocarbons, undetermined, subs +C2884295|T037|PT|T53.5X4D|ICD10CM|Toxic effect of chlorofluorocarbons, undetermined, subsequent encounter|Toxic effect of chlorofluorocarbons, undetermined, subsequent encounter +C2884296|T037|AB|T53.5X4S|ICD10CM|Toxic effect of chlorofluorocarbons, undetermined, sequela|Toxic effect of chlorofluorocarbons, undetermined, sequela +C2884296|T037|PT|T53.5X4S|ICD10CM|Toxic effect of chlorofluorocarbons, undetermined, sequela|Toxic effect of chlorofluorocarbons, undetermined, sequela +C0478460|T037|PS|T53.6|ICD10|Other halogen derivatives of aliphatic hydrocarbons|Other halogen derivatives of aliphatic hydrocarbons +C0478460|T037|PX|T53.6|ICD10|Toxic effect of other halogen derivatives of aliphatic hydrocarbons|Toxic effect of other halogen derivatives of aliphatic hydrocarbons +C0478460|T037|AB|T53.6|ICD10CM|Toxic effects of halogen derivatives of aliphatic hydrocrb|Toxic effects of halogen derivatives of aliphatic hydrocrb +C0478460|T037|HT|T53.6|ICD10CM|Toxic effects of other halogen derivatives of aliphatic hydrocarbons|Toxic effects of other halogen derivatives of aliphatic hydrocarbons +C0478460|T037|AB|T53.6X|ICD10CM|Toxic effects of halogen derivatives of aliphatic hydrocrb|Toxic effects of halogen derivatives of aliphatic hydrocrb +C0478460|T037|HT|T53.6X|ICD10CM|Toxic effects of other halogen derivatives of aliphatic hydrocarbons|Toxic effects of other halogen derivatives of aliphatic hydrocarbons +C2884297|T037|AB|T53.6X1|ICD10CM|Toxic effect of halogen deriv of aliphatic hydrocrb, acc|Toxic effect of halogen deriv of aliphatic hydrocrb, acc +C2884297|T037|HT|T53.6X1|ICD10CM|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, accidental (unintentional)|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, accidental (unintentional) +C0478460|T037|ET|T53.6X1|ICD10CM|Toxic effects of other halogen derivatives of aliphatic hydrocarbons NOS|Toxic effects of other halogen derivatives of aliphatic hydrocarbons NOS +C2884298|T037|AB|T53.6X1A|ICD10CM|Toxic eff of halgn deriv of aliphatic hydrocrb, acc, init|Toxic eff of halgn deriv of aliphatic hydrocrb, acc, init +C2884299|T037|AB|T53.6X1D|ICD10CM|Toxic eff of halgn deriv of aliphatic hydrocrb, acc, subs|Toxic eff of halgn deriv of aliphatic hydrocrb, acc, subs +C2884300|T037|AB|T53.6X1S|ICD10CM|Toxic eff of halgn deriv of aliphatic hydrocrb, acc, sqla|Toxic eff of halgn deriv of aliphatic hydrocrb, acc, sqla +C2884301|T037|AB|T53.6X2|ICD10CM|Toxic effect of halogen deriv of aliphatic hydrocrb, slf-hrm|Toxic effect of halogen deriv of aliphatic hydrocrb, slf-hrm +C2884301|T037|HT|T53.6X2|ICD10CM|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, intentional self-harm|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, intentional self-harm +C2884302|T037|AB|T53.6X2A|ICD10CM|Tox eff of halgn deriv of aliphatic hydrocrb, slf-hrm, init|Tox eff of halgn deriv of aliphatic hydrocrb, slf-hrm, init +C2884303|T037|AB|T53.6X2D|ICD10CM|Tox eff of halgn deriv of aliphatic hydrocrb, slf-hrm, subs|Tox eff of halgn deriv of aliphatic hydrocrb, slf-hrm, subs +C2884304|T037|AB|T53.6X2S|ICD10CM|Tox eff of halgn deriv of aliphatic hydrocrb, slf-hrm, sqla|Tox eff of halgn deriv of aliphatic hydrocrb, slf-hrm, sqla +C2884304|T037|PT|T53.6X2S|ICD10CM|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, intentional self-harm, sequela|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, intentional self-harm, sequela +C2884305|T037|AB|T53.6X3|ICD10CM|Toxic effect of halogen deriv of aliphatic hydrocrb, assault|Toxic effect of halogen deriv of aliphatic hydrocrb, assault +C2884305|T037|HT|T53.6X3|ICD10CM|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault +C2884306|T037|AB|T53.6X3A|ICD10CM|Toxic eff of halgn deriv of aliphatic hydrocrb, asslt, init|Toxic eff of halgn deriv of aliphatic hydrocrb, asslt, init +C2884306|T037|PT|T53.6X3A|ICD10CM|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault, initial encounter|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault, initial encounter +C2884307|T037|AB|T53.6X3D|ICD10CM|Toxic eff of halgn deriv of aliphatic hydrocrb, asslt, subs|Toxic eff of halgn deriv of aliphatic hydrocrb, asslt, subs +C2884307|T037|PT|T53.6X3D|ICD10CM|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault, subsequent encounter|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault, subsequent encounter +C2884308|T037|AB|T53.6X3S|ICD10CM|Toxic eff of halgn deriv of aliphatic hydrocrb, asslt, sqla|Toxic eff of halgn deriv of aliphatic hydrocrb, asslt, sqla +C2884308|T037|PT|T53.6X3S|ICD10CM|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault, sequela|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault, sequela +C2884309|T037|AB|T53.6X4|ICD10CM|Toxic effect of halogen deriv of aliphatic hydrocrb, undet|Toxic effect of halogen deriv of aliphatic hydrocrb, undet +C2884309|T037|HT|T53.6X4|ICD10CM|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, undetermined|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, undetermined +C2884310|T037|AB|T53.6X4A|ICD10CM|Toxic eff of halgn deriv of aliphatic hydrocrb, undet, init|Toxic eff of halgn deriv of aliphatic hydrocrb, undet, init +C2884310|T037|PT|T53.6X4A|ICD10CM|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, undetermined, initial encounter|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, undetermined, initial encounter +C2884311|T037|AB|T53.6X4D|ICD10CM|Toxic eff of halgn deriv of aliphatic hydrocrb, undet, subs|Toxic eff of halgn deriv of aliphatic hydrocrb, undet, subs +C2884312|T037|AB|T53.6X4S|ICD10CM|Toxic eff of halgn deriv of aliphatic hydrocrb, undet, sqla|Toxic eff of halgn deriv of aliphatic hydrocrb, undet, sqla +C2884312|T037|PT|T53.6X4S|ICD10CM|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, undetermined, sequela|Toxic effect of other halogen derivatives of aliphatic hydrocarbons, undetermined, sequela +C0478461|T037|PS|T53.7|ICD10|Other halogen derivatives of aromatic hydrocarbons|Other halogen derivatives of aromatic hydrocarbons +C0478461|T037|PX|T53.7|ICD10|Toxic effect of other halogen derivatives of aromatic hydrocarbons|Toxic effect of other halogen derivatives of aromatic hydrocarbons +C0478461|T037|AB|T53.7|ICD10CM|Toxic effects of halogen derivatives of aromatic hydrocrb|Toxic effects of halogen derivatives of aromatic hydrocrb +C0478461|T037|HT|T53.7|ICD10CM|Toxic effects of other halogen derivatives of aromatic hydrocarbons|Toxic effects of other halogen derivatives of aromatic hydrocarbons +C0478461|T037|AB|T53.7X|ICD10CM|Toxic effects of halogen derivatives of aromatic hydrocrb|Toxic effects of halogen derivatives of aromatic hydrocrb +C0478461|T037|HT|T53.7X|ICD10CM|Toxic effects of other halogen derivatives of aromatic hydrocarbons|Toxic effects of other halogen derivatives of aromatic hydrocarbons +C2884313|T037|AB|T53.7X1|ICD10CM|Toxic effect of halogen deriv of aromatic hydrocrb, acc|Toxic effect of halogen deriv of aromatic hydrocrb, acc +C2884313|T037|HT|T53.7X1|ICD10CM|Toxic effect of other halogen derivatives of aromatic hydrocarbons, accidental (unintentional)|Toxic effect of other halogen derivatives of aromatic hydrocarbons, accidental (unintentional) +C0478461|T037|ET|T53.7X1|ICD10CM|Toxic effects of other halogen derivatives of aromatic hydrocarbons NOS|Toxic effects of other halogen derivatives of aromatic hydrocarbons NOS +C2884314|T037|AB|T53.7X1A|ICD10CM|Toxic effect of halgn deriv of aromatic hydrocrb, acc, init|Toxic effect of halgn deriv of aromatic hydrocrb, acc, init +C2884315|T037|AB|T53.7X1D|ICD10CM|Toxic effect of halgn deriv of aromatic hydrocrb, acc, subs|Toxic effect of halgn deriv of aromatic hydrocrb, acc, subs +C2884316|T037|AB|T53.7X1S|ICD10CM|Toxic effect of halgn deriv of aromatic hydrocrb, acc, sqla|Toxic effect of halgn deriv of aromatic hydrocrb, acc, sqla +C2884317|T037|AB|T53.7X2|ICD10CM|Toxic effect of halogen deriv of aromatic hydrocrb, slf-hrm|Toxic effect of halogen deriv of aromatic hydrocrb, slf-hrm +C2884317|T037|HT|T53.7X2|ICD10CM|Toxic effect of other halogen derivatives of aromatic hydrocarbons, intentional self-harm|Toxic effect of other halogen derivatives of aromatic hydrocarbons, intentional self-harm +C2884318|T037|AB|T53.7X2A|ICD10CM|Toxic eff of halgn deriv of aromatic hydrocrb, slf-hrm, init|Toxic eff of halgn deriv of aromatic hydrocrb, slf-hrm, init +C2884319|T037|AB|T53.7X2D|ICD10CM|Toxic eff of halgn deriv of aromatic hydrocrb, slf-hrm, subs|Toxic eff of halgn deriv of aromatic hydrocrb, slf-hrm, subs +C2884320|T037|AB|T53.7X2S|ICD10CM|Toxic eff of halgn deriv of aromatic hydrocrb, slf-hrm, sqla|Toxic eff of halgn deriv of aromatic hydrocrb, slf-hrm, sqla +C2884320|T037|PT|T53.7X2S|ICD10CM|Toxic effect of other halogen derivatives of aromatic hydrocarbons, intentional self-harm, sequela|Toxic effect of other halogen derivatives of aromatic hydrocarbons, intentional self-harm, sequela +C2884321|T037|AB|T53.7X3|ICD10CM|Toxic effect of halogen deriv of aromatic hydrocrb, assault|Toxic effect of halogen deriv of aromatic hydrocrb, assault +C2884321|T037|HT|T53.7X3|ICD10CM|Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault|Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault +C2884322|T037|AB|T53.7X3A|ICD10CM|Toxic eff of halgn deriv of aromatic hydrocrb, asslt, init|Toxic eff of halgn deriv of aromatic hydrocrb, asslt, init +C2884322|T037|PT|T53.7X3A|ICD10CM|Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault, initial encounter|Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault, initial encounter +C2884323|T037|AB|T53.7X3D|ICD10CM|Toxic eff of halgn deriv of aromatic hydrocrb, asslt, subs|Toxic eff of halgn deriv of aromatic hydrocrb, asslt, subs +C2884323|T037|PT|T53.7X3D|ICD10CM|Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault, subsequent encounter|Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault, subsequent encounter +C2884324|T037|AB|T53.7X3S|ICD10CM|Toxic eff of halgn deriv of aromatic hydrocrb, asslt, sqla|Toxic eff of halgn deriv of aromatic hydrocrb, asslt, sqla +C2884324|T037|PT|T53.7X3S|ICD10CM|Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault, sequela|Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault, sequela +C2884325|T037|AB|T53.7X4|ICD10CM|Toxic effect of halogen deriv of aromatic hydrocrb, undet|Toxic effect of halogen deriv of aromatic hydrocrb, undet +C2884325|T037|HT|T53.7X4|ICD10CM|Toxic effect of other halogen derivatives of aromatic hydrocarbons, undetermined|Toxic effect of other halogen derivatives of aromatic hydrocarbons, undetermined +C2884326|T037|AB|T53.7X4A|ICD10CM|Toxic eff of halgn deriv of aromatic hydrocrb, undet, init|Toxic eff of halgn deriv of aromatic hydrocrb, undet, init +C2884326|T037|PT|T53.7X4A|ICD10CM|Toxic effect of other halogen derivatives of aromatic hydrocarbons, undetermined, initial encounter|Toxic effect of other halogen derivatives of aromatic hydrocarbons, undetermined, initial encounter +C2884327|T037|AB|T53.7X4D|ICD10CM|Toxic eff of halgn deriv of aromatic hydrocrb, undet, subs|Toxic eff of halgn deriv of aromatic hydrocrb, undet, subs +C2884328|T037|AB|T53.7X4S|ICD10CM|Toxic eff of halgn deriv of aromatic hydrocrb, undet, sqla|Toxic eff of halgn deriv of aromatic hydrocrb, undet, sqla +C2884328|T037|PT|T53.7X4S|ICD10CM|Toxic effect of other halogen derivatives of aromatic hydrocarbons, undetermined, sequela|Toxic effect of other halogen derivatives of aromatic hydrocarbons, undetermined, sequela +C0497013|T037|PS|T53.9|ICD10|Halogen derivative of aliphatic and aromatic hydrocarbons, unspecified|Halogen derivative of aliphatic and aromatic hydrocarbons, unspecified +C0497013|T037|PX|T53.9|ICD10|Toxic effect of halogen derivative of aliphatic and aromatic hydrocarbons, unspecified|Toxic effect of halogen derivative of aliphatic and aromatic hydrocarbons, unspecified +C0497013|T037|AB|T53.9|ICD10CM|Toxic effects of unsp halogen derivatives of aromat hydrocrb|Toxic effects of unsp halogen derivatives of aromat hydrocrb +C0497013|T037|HT|T53.9|ICD10CM|Toxic effects of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons|Toxic effects of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons +C2884329|T037|AB|T53.91|ICD10CM|Toxic effect of unsp halogen deriv of aromat hydrocrb, acc|Toxic effect of unsp halogen deriv of aromat hydrocrb, acc +C2884330|T037|AB|T53.91XA|ICD10CM|Toxic eff of unsp halgn deriv of aromat hydrocrb, acc, init|Toxic eff of unsp halgn deriv of aromat hydrocrb, acc, init +C2884331|T037|AB|T53.91XD|ICD10CM|Toxic eff of unsp halgn deriv of aromat hydrocrb, acc, subs|Toxic eff of unsp halgn deriv of aromat hydrocrb, acc, subs +C2884332|T037|AB|T53.91XS|ICD10CM|Toxic eff of unsp halgn deriv of aromat hydrocrb, acc, sqla|Toxic eff of unsp halgn deriv of aromat hydrocrb, acc, sqla +C2884333|T037|AB|T53.92|ICD10CM|Toxic effect of unsp halgn deriv of aromat hydrocrb, slf-hrm|Toxic effect of unsp halgn deriv of aromat hydrocrb, slf-hrm +C2884334|T037|AB|T53.92XA|ICD10CM|Tox eff of unsp halgn deriv of aromat hydrocrb,slf-hrm, init|Tox eff of unsp halgn deriv of aromat hydrocrb,slf-hrm, init +C2884335|T037|AB|T53.92XD|ICD10CM|Tox eff of unsp halgn deriv of aromat hydrocrb,slf-hrm, subs|Tox eff of unsp halgn deriv of aromat hydrocrb,slf-hrm, subs +C2884336|T037|AB|T53.92XS|ICD10CM|Tox eff of unsp halgn deriv of aromat hydrocrb,slf-hrm, sqla|Tox eff of unsp halgn deriv of aromat hydrocrb,slf-hrm, sqla +C2884337|T037|AB|T53.93|ICD10CM|Toxic effect of unsp halogen deriv of aromat hydrocrb, asslt|Toxic effect of unsp halogen deriv of aromat hydrocrb, asslt +C2884337|T037|HT|T53.93|ICD10CM|Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, assault|Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, assault +C2884338|T037|AB|T53.93XA|ICD10CM|Tox eff of unsp halgn deriv of aromat hydrocrb, asslt, init|Tox eff of unsp halgn deriv of aromat hydrocrb, asslt, init +C2884339|T037|AB|T53.93XD|ICD10CM|Tox eff of unsp halgn deriv of aromat hydrocrb, asslt, subs|Tox eff of unsp halgn deriv of aromat hydrocrb, asslt, subs +C2884340|T037|AB|T53.93XS|ICD10CM|Tox eff of unsp halgn deriv of aromat hydrocrb, asslt, sqla|Tox eff of unsp halgn deriv of aromat hydrocrb, asslt, sqla +C2884341|T037|AB|T53.94|ICD10CM|Toxic effect of unsp halogen deriv of aromat hydrocrb, undet|Toxic effect of unsp halogen deriv of aromat hydrocrb, undet +C2884341|T037|HT|T53.94|ICD10CM|Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, undetermined|Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, undetermined +C2884342|T037|AB|T53.94XA|ICD10CM|Tox eff of unsp halgn deriv of aromat hydrocrb, undet, init|Tox eff of unsp halgn deriv of aromat hydrocrb, undet, init +C2884343|T037|AB|T53.94XD|ICD10CM|Tox eff of unsp halgn deriv of aromat hydrocrb, undet, subs|Tox eff of unsp halgn deriv of aromat hydrocrb, undet, subs +C2884344|T037|AB|T53.94XS|ICD10CM|Tox eff of unsp halgn deriv of aromat hydrocrb, undet, sqla|Tox eff of unsp halgn deriv of aromat hydrocrb, undet, sqla +C0496102|T037|AB|T54|ICD10CM|Toxic effect of corrosive substances|Toxic effect of corrosive substances +C0496102|T037|HT|T54|ICD10CM|Toxic effect of corrosive substances|Toxic effect of corrosive substances +C0496102|T037|HT|T54|ICD10|Toxic effect of corrosive substances|Toxic effect of corrosive substances +C0497014|T037|PS|T54.0|ICD10|Phenol and phenol homologues|Phenol and phenol homologues +C0497014|T037|PX|T54.0|ICD10|Toxic effect of phenol and phenol homologues|Toxic effect of phenol and phenol homologues +C0497014|T037|AB|T54.0|ICD10CM|Toxic effects of phenol and phenol homologues|Toxic effects of phenol and phenol homologues +C0497014|T037|HT|T54.0|ICD10CM|Toxic effects of phenol and phenol homologues|Toxic effects of phenol and phenol homologues +C0497014|T037|HT|T54.0X|ICD10CM|Toxic effects of phenol and phenol homologues|Toxic effects of phenol and phenol homologues +C0497014|T037|AB|T54.0X|ICD10CM|Toxic effects of phenol and phenol homologues|Toxic effects of phenol and phenol homologues +C2884345|T037|AB|T54.0X1|ICD10CM|Toxic effect of phenol and phenol homologues, accidental|Toxic effect of phenol and phenol homologues, accidental +C2884345|T037|HT|T54.0X1|ICD10CM|Toxic effect of phenol and phenol homologues, accidental (unintentional)|Toxic effect of phenol and phenol homologues, accidental (unintentional) +C0497014|T037|ET|T54.0X1|ICD10CM|Toxic effects of phenol and phenol homologues NOS|Toxic effects of phenol and phenol homologues NOS +C2884346|T037|AB|T54.0X1A|ICD10CM|Toxic effect of phenol and phenol homologues, acc, init|Toxic effect of phenol and phenol homologues, acc, init +C2884346|T037|PT|T54.0X1A|ICD10CM|Toxic effect of phenol and phenol homologues, accidental (unintentional), initial encounter|Toxic effect of phenol and phenol homologues, accidental (unintentional), initial encounter +C2884347|T037|AB|T54.0X1D|ICD10CM|Toxic effect of phenol and phenol homologues, acc, subs|Toxic effect of phenol and phenol homologues, acc, subs +C2884347|T037|PT|T54.0X1D|ICD10CM|Toxic effect of phenol and phenol homologues, accidental (unintentional), subsequent encounter|Toxic effect of phenol and phenol homologues, accidental (unintentional), subsequent encounter +C2884348|T037|AB|T54.0X1S|ICD10CM|Toxic effect of phenol and phenol homologues, acc, sequela|Toxic effect of phenol and phenol homologues, acc, sequela +C2884348|T037|PT|T54.0X1S|ICD10CM|Toxic effect of phenol and phenol homologues, accidental (unintentional), sequela|Toxic effect of phenol and phenol homologues, accidental (unintentional), sequela +C2884349|T037|HT|T54.0X2|ICD10CM|Toxic effect of phenol and phenol homologues, intentional self-harm|Toxic effect of phenol and phenol homologues, intentional self-harm +C2884349|T037|AB|T54.0X2|ICD10CM|Toxic effect of phenol and phenol homologues, self-harm|Toxic effect of phenol and phenol homologues, self-harm +C2884350|T037|AB|T54.0X2A|ICD10CM|Toxic effect of phenol and phenol homolog, self-harm, init|Toxic effect of phenol and phenol homolog, self-harm, init +C2884350|T037|PT|T54.0X2A|ICD10CM|Toxic effect of phenol and phenol homologues, intentional self-harm, initial encounter|Toxic effect of phenol and phenol homologues, intentional self-harm, initial encounter +C2884351|T037|AB|T54.0X2D|ICD10CM|Toxic effect of phenol and phenol homolog, self-harm, subs|Toxic effect of phenol and phenol homolog, self-harm, subs +C2884351|T037|PT|T54.0X2D|ICD10CM|Toxic effect of phenol and phenol homologues, intentional self-harm, subsequent encounter|Toxic effect of phenol and phenol homologues, intentional self-harm, subsequent encounter +C2884352|T037|AB|T54.0X2S|ICD10CM|Toxic effect of phenol and phenol homolog, slf-hrm, sequela|Toxic effect of phenol and phenol homolog, slf-hrm, sequela +C2884352|T037|PT|T54.0X2S|ICD10CM|Toxic effect of phenol and phenol homologues, intentional self-harm, sequela|Toxic effect of phenol and phenol homologues, intentional self-harm, sequela +C2884353|T037|AB|T54.0X3|ICD10CM|Toxic effect of phenol and phenol homologues, assault|Toxic effect of phenol and phenol homologues, assault +C2884353|T037|HT|T54.0X3|ICD10CM|Toxic effect of phenol and phenol homologues, assault|Toxic effect of phenol and phenol homologues, assault +C2884354|T037|AB|T54.0X3A|ICD10CM|Toxic effect of phenol and phenol homologues, assault, init|Toxic effect of phenol and phenol homologues, assault, init +C2884354|T037|PT|T54.0X3A|ICD10CM|Toxic effect of phenol and phenol homologues, assault, initial encounter|Toxic effect of phenol and phenol homologues, assault, initial encounter +C2884355|T037|AB|T54.0X3D|ICD10CM|Toxic effect of phenol and phenol homologues, assault, subs|Toxic effect of phenol and phenol homologues, assault, subs +C2884355|T037|PT|T54.0X3D|ICD10CM|Toxic effect of phenol and phenol homologues, assault, subsequent encounter|Toxic effect of phenol and phenol homologues, assault, subsequent encounter +C2884356|T037|AB|T54.0X3S|ICD10CM|Toxic effect of phenol and phenol homolog, assault, sequela|Toxic effect of phenol and phenol homolog, assault, sequela +C2884356|T037|PT|T54.0X3S|ICD10CM|Toxic effect of phenol and phenol homologues, assault, sequela|Toxic effect of phenol and phenol homologues, assault, sequela +C2884357|T037|AB|T54.0X4|ICD10CM|Toxic effect of phenol and phenol homologues, undetermined|Toxic effect of phenol and phenol homologues, undetermined +C2884357|T037|HT|T54.0X4|ICD10CM|Toxic effect of phenol and phenol homologues, undetermined|Toxic effect of phenol and phenol homologues, undetermined +C2884358|T037|AB|T54.0X4A|ICD10CM|Toxic effect of phenol and phenol homologues, undet, init|Toxic effect of phenol and phenol homologues, undet, init +C2884358|T037|PT|T54.0X4A|ICD10CM|Toxic effect of phenol and phenol homologues, undetermined, initial encounter|Toxic effect of phenol and phenol homologues, undetermined, initial encounter +C2884359|T037|AB|T54.0X4D|ICD10CM|Toxic effect of phenol and phenol homologues, undet, subs|Toxic effect of phenol and phenol homologues, undet, subs +C2884359|T037|PT|T54.0X4D|ICD10CM|Toxic effect of phenol and phenol homologues, undetermined, subsequent encounter|Toxic effect of phenol and phenol homologues, undetermined, subsequent encounter +C2884360|T037|AB|T54.0X4S|ICD10CM|Toxic effect of phenol and phenol homologues, undet, sequela|Toxic effect of phenol and phenol homologues, undet, sequela +C2884360|T037|PT|T54.0X4S|ICD10CM|Toxic effect of phenol and phenol homologues, undetermined, sequela|Toxic effect of phenol and phenol homologues, undetermined, sequela +C0478462|T037|PS|T54.1|ICD10|Other corrosive organic compounds|Other corrosive organic compounds +C0478462|T037|PX|T54.1|ICD10|Toxic effect of other corrosive organic compounds|Toxic effect of other corrosive organic compounds +C0478462|T037|AB|T54.1|ICD10CM|Toxic effects of other corrosive organic compounds|Toxic effects of other corrosive organic compounds +C0478462|T037|HT|T54.1|ICD10CM|Toxic effects of other corrosive organic compounds|Toxic effects of other corrosive organic compounds +C0478462|T037|HT|T54.1X|ICD10CM|Toxic effects of other corrosive organic compounds|Toxic effects of other corrosive organic compounds +C0478462|T037|AB|T54.1X|ICD10CM|Toxic effects of other corrosive organic compounds|Toxic effects of other corrosive organic compounds +C2884361|T037|AB|T54.1X1|ICD10CM|Toxic effect of corrosive organic compounds, accidental|Toxic effect of corrosive organic compounds, accidental +C2884361|T037|HT|T54.1X1|ICD10CM|Toxic effect of other corrosive organic compounds, accidental (unintentional)|Toxic effect of other corrosive organic compounds, accidental (unintentional) +C0478462|T037|ET|T54.1X1|ICD10CM|Toxic effects of other corrosive organic compounds NOS|Toxic effects of other corrosive organic compounds NOS +C2884362|T037|AB|T54.1X1A|ICD10CM|Toxic effect of corrosive organic compounds, acc, init|Toxic effect of corrosive organic compounds, acc, init +C2884362|T037|PT|T54.1X1A|ICD10CM|Toxic effect of other corrosive organic compounds, accidental (unintentional), initial encounter|Toxic effect of other corrosive organic compounds, accidental (unintentional), initial encounter +C2884363|T037|AB|T54.1X1D|ICD10CM|Toxic effect of corrosive organic compounds, acc, subs|Toxic effect of corrosive organic compounds, acc, subs +C2884363|T037|PT|T54.1X1D|ICD10CM|Toxic effect of other corrosive organic compounds, accidental (unintentional), subsequent encounter|Toxic effect of other corrosive organic compounds, accidental (unintentional), subsequent encounter +C2884364|T037|AB|T54.1X1S|ICD10CM|Toxic effect of corrosive organic compounds, acc, sequela|Toxic effect of corrosive organic compounds, acc, sequela +C2884364|T037|PT|T54.1X1S|ICD10CM|Toxic effect of other corrosive organic compounds, accidental (unintentional), sequela|Toxic effect of other corrosive organic compounds, accidental (unintentional), sequela +C2884365|T037|AB|T54.1X2|ICD10CM|Toxic effect of corrosive organic compounds, self-harm|Toxic effect of corrosive organic compounds, self-harm +C2884365|T037|HT|T54.1X2|ICD10CM|Toxic effect of other corrosive organic compounds, intentional self-harm|Toxic effect of other corrosive organic compounds, intentional self-harm +C2884366|T037|AB|T54.1X2A|ICD10CM|Toxic effect of corrosive organic compounds, self-harm, init|Toxic effect of corrosive organic compounds, self-harm, init +C2884366|T037|PT|T54.1X2A|ICD10CM|Toxic effect of other corrosive organic compounds, intentional self-harm, initial encounter|Toxic effect of other corrosive organic compounds, intentional self-harm, initial encounter +C2884367|T037|AB|T54.1X2D|ICD10CM|Toxic effect of corrosive organic compounds, self-harm, subs|Toxic effect of corrosive organic compounds, self-harm, subs +C2884367|T037|PT|T54.1X2D|ICD10CM|Toxic effect of other corrosive organic compounds, intentional self-harm, subsequent encounter|Toxic effect of other corrosive organic compounds, intentional self-harm, subsequent encounter +C2884368|T037|AB|T54.1X2S|ICD10CM|Toxic effect of corrosive organic compnd, self-harm, sequela|Toxic effect of corrosive organic compnd, self-harm, sequela +C2884368|T037|PT|T54.1X2S|ICD10CM|Toxic effect of other corrosive organic compounds, intentional self-harm, sequela|Toxic effect of other corrosive organic compounds, intentional self-harm, sequela +C2884369|T037|AB|T54.1X3|ICD10CM|Toxic effect of other corrosive organic compounds, assault|Toxic effect of other corrosive organic compounds, assault +C2884369|T037|HT|T54.1X3|ICD10CM|Toxic effect of other corrosive organic compounds, assault|Toxic effect of other corrosive organic compounds, assault +C2884370|T037|AB|T54.1X3A|ICD10CM|Toxic effect of corrosive organic compounds, assault, init|Toxic effect of corrosive organic compounds, assault, init +C2884370|T037|PT|T54.1X3A|ICD10CM|Toxic effect of other corrosive organic compounds, assault, initial encounter|Toxic effect of other corrosive organic compounds, assault, initial encounter +C2884371|T037|AB|T54.1X3D|ICD10CM|Toxic effect of corrosive organic compounds, assault, subs|Toxic effect of corrosive organic compounds, assault, subs +C2884371|T037|PT|T54.1X3D|ICD10CM|Toxic effect of other corrosive organic compounds, assault, subsequent encounter|Toxic effect of other corrosive organic compounds, assault, subsequent encounter +C2884372|T037|AB|T54.1X3S|ICD10CM|Toxic effect of corrosive organic compnd, assault, sequela|Toxic effect of corrosive organic compnd, assault, sequela +C2884372|T037|PT|T54.1X3S|ICD10CM|Toxic effect of other corrosive organic compounds, assault, sequela|Toxic effect of other corrosive organic compounds, assault, sequela +C2884373|T037|AB|T54.1X4|ICD10CM|Toxic effect of corrosive organic compounds, undetermined|Toxic effect of corrosive organic compounds, undetermined +C2884373|T037|HT|T54.1X4|ICD10CM|Toxic effect of other corrosive organic compounds, undetermined|Toxic effect of other corrosive organic compounds, undetermined +C2884374|T037|AB|T54.1X4A|ICD10CM|Toxic effect of corrosive organic compounds, undet, init|Toxic effect of corrosive organic compounds, undet, init +C2884374|T037|PT|T54.1X4A|ICD10CM|Toxic effect of other corrosive organic compounds, undetermined, initial encounter|Toxic effect of other corrosive organic compounds, undetermined, initial encounter +C2884375|T037|AB|T54.1X4D|ICD10CM|Toxic effect of corrosive organic compounds, undet, subs|Toxic effect of corrosive organic compounds, undet, subs +C2884375|T037|PT|T54.1X4D|ICD10CM|Toxic effect of other corrosive organic compounds, undetermined, subsequent encounter|Toxic effect of other corrosive organic compounds, undetermined, subsequent encounter +C2884376|T037|AB|T54.1X4S|ICD10CM|Toxic effect of corrosive organic compounds, undet, sequela|Toxic effect of corrosive organic compounds, undet, sequela +C2884376|T037|PT|T54.1X4S|ICD10CM|Toxic effect of other corrosive organic compounds, undetermined, sequela|Toxic effect of other corrosive organic compounds, undetermined, sequela +C0497015|T037|PS|T54.2|ICD10|Corrosive acids and acid-like substances|Corrosive acids and acid-like substances +C0497015|T037|PX|T54.2|ICD10|Toxic effect of corrosive acids and acid-like substances|Toxic effect of corrosive acids and acid-like substances +C0497015|T037|AB|T54.2|ICD10CM|Toxic effects of corrosive acids and acid-like substances|Toxic effects of corrosive acids and acid-like substances +C0497015|T037|HT|T54.2|ICD10CM|Toxic effects of corrosive acids and acid-like substances|Toxic effects of corrosive acids and acid-like substances +C0274850|T037|ET|T54.2|ICD10CM|Toxic effects of hydrochloric acid|Toxic effects of hydrochloric acid +C0274852|T037|ET|T54.2|ICD10CM|Toxic effects of sulfuric acid|Toxic effects of sulfuric acid +C0497015|T037|HT|T54.2X|ICD10CM|Toxic effects of corrosive acids and acid-like substances|Toxic effects of corrosive acids and acid-like substances +C0497015|T037|AB|T54.2X|ICD10CM|Toxic effects of corrosive acids and acid-like substances|Toxic effects of corrosive acids and acid-like substances +C2884377|T037|HT|T54.2X1|ICD10CM|Toxic effect of corrosive acids and acid-like substances, accidental (unintentional)|Toxic effect of corrosive acids and acid-like substances, accidental (unintentional) +C2884377|T037|AB|T54.2X1|ICD10CM|Toxic effect of corrosive acids and acid-like substnc, acc|Toxic effect of corrosive acids and acid-like substnc, acc +C0497015|T037|ET|T54.2X1|ICD10CM|Toxic effects of corrosive acids and acid-like substances NOS|Toxic effects of corrosive acids and acid-like substances NOS +C2884378|T037|AB|T54.2X1A|ICD10CM|Toxic eff of corrosv acids and acid-like substnc, acc, init|Toxic eff of corrosv acids and acid-like substnc, acc, init +C2884379|T037|AB|T54.2X1D|ICD10CM|Toxic eff of corrosv acids and acid-like substnc, acc, subs|Toxic eff of corrosv acids and acid-like substnc, acc, subs +C2884380|T037|AB|T54.2X1S|ICD10CM|Toxic eff of corrosv acids and acid-like substnc, acc, sqla|Toxic eff of corrosv acids and acid-like substnc, acc, sqla +C2884380|T037|PT|T54.2X1S|ICD10CM|Toxic effect of corrosive acids and acid-like substances, accidental (unintentional), sequela|Toxic effect of corrosive acids and acid-like substances, accidental (unintentional), sequela +C2884381|T037|HT|T54.2X2|ICD10CM|Toxic effect of corrosive acids and acid-like substances, intentional self-harm|Toxic effect of corrosive acids and acid-like substances, intentional self-harm +C2884381|T037|AB|T54.2X2|ICD10CM|Toxic effect of corrosv acids and acid-like substnc, slf-hrm|Toxic effect of corrosv acids and acid-like substnc, slf-hrm +C2884382|T037|AB|T54.2X2A|ICD10CM|Tox eff of corrosv acids & acid-like substnc, slf-hrm, init|Tox eff of corrosv acids & acid-like substnc, slf-hrm, init +C2884382|T037|PT|T54.2X2A|ICD10CM|Toxic effect of corrosive acids and acid-like substances, intentional self-harm, initial encounter|Toxic effect of corrosive acids and acid-like substances, intentional self-harm, initial encounter +C2884383|T037|AB|T54.2X2D|ICD10CM|Tox eff of corrosv acids & acid-like substnc, slf-hrm, subs|Tox eff of corrosv acids & acid-like substnc, slf-hrm, subs +C2884384|T037|AB|T54.2X2S|ICD10CM|Tox eff of corrosv acids & acid-like substnc, slf-hrm, sqla|Tox eff of corrosv acids & acid-like substnc, slf-hrm, sqla +C2884384|T037|PT|T54.2X2S|ICD10CM|Toxic effect of corrosive acids and acid-like substances, intentional self-harm, sequela|Toxic effect of corrosive acids and acid-like substances, intentional self-harm, sequela +C2884385|T037|HT|T54.2X3|ICD10CM|Toxic effect of corrosive acids and acid-like substances, assault|Toxic effect of corrosive acids and acid-like substances, assault +C2884385|T037|AB|T54.2X3|ICD10CM|Toxic effect of corrosv acids and acid-like substnc, assault|Toxic effect of corrosv acids and acid-like substnc, assault +C2884386|T037|AB|T54.2X3A|ICD10CM|Tox eff of corrosv acids and acid-like substnc, asslt, init|Tox eff of corrosv acids and acid-like substnc, asslt, init +C2884386|T037|PT|T54.2X3A|ICD10CM|Toxic effect of corrosive acids and acid-like substances, assault, initial encounter|Toxic effect of corrosive acids and acid-like substances, assault, initial encounter +C2884387|T037|AB|T54.2X3D|ICD10CM|Tox eff of corrosv acids and acid-like substnc, asslt, subs|Tox eff of corrosv acids and acid-like substnc, asslt, subs +C2884387|T037|PT|T54.2X3D|ICD10CM|Toxic effect of corrosive acids and acid-like substances, assault, subsequent encounter|Toxic effect of corrosive acids and acid-like substances, assault, subsequent encounter +C2884388|T037|AB|T54.2X3S|ICD10CM|Tox eff of corrosv acids and acid-like substnc, asslt, sqla|Tox eff of corrosv acids and acid-like substnc, asslt, sqla +C2884388|T037|PT|T54.2X3S|ICD10CM|Toxic effect of corrosive acids and acid-like substances, assault, sequela|Toxic effect of corrosive acids and acid-like substances, assault, sequela +C2884389|T037|HT|T54.2X4|ICD10CM|Toxic effect of corrosive acids and acid-like substances, undetermined|Toxic effect of corrosive acids and acid-like substances, undetermined +C2884389|T037|AB|T54.2X4|ICD10CM|Toxic effect of corrosive acids and acid-like substnc, undet|Toxic effect of corrosive acids and acid-like substnc, undet +C2884390|T037|AB|T54.2X4A|ICD10CM|Tox eff of corrosv acids and acid-like substnc, undet, init|Tox eff of corrosv acids and acid-like substnc, undet, init +C2884390|T037|PT|T54.2X4A|ICD10CM|Toxic effect of corrosive acids and acid-like substances, undetermined, initial encounter|Toxic effect of corrosive acids and acid-like substances, undetermined, initial encounter +C2884391|T037|AB|T54.2X4D|ICD10CM|Tox eff of corrosv acids and acid-like substnc, undet, subs|Tox eff of corrosv acids and acid-like substnc, undet, subs +C2884391|T037|PT|T54.2X4D|ICD10CM|Toxic effect of corrosive acids and acid-like substances, undetermined, subsequent encounter|Toxic effect of corrosive acids and acid-like substances, undetermined, subsequent encounter +C2884392|T037|AB|T54.2X4S|ICD10CM|Tox eff of corrosv acids and acid-like substnc, undet, sqla|Tox eff of corrosv acids and acid-like substnc, undet, sqla +C2884392|T037|PT|T54.2X4S|ICD10CM|Toxic effect of corrosive acids and acid-like substances, undetermined, sequela|Toxic effect of corrosive acids and acid-like substances, undetermined, sequela +C0497016|T037|PS|T54.3|ICD10|Corrosive alkalis and alkali-like substances|Corrosive alkalis and alkali-like substances +C0497016|T037|PX|T54.3|ICD10|Toxic effect of corrosive alkalis and alkali-like substances|Toxic effect of corrosive alkalis and alkali-like substances +C0497016|T037|AB|T54.3|ICD10CM|Toxic effects of corrosive alkalis and alk-like substances|Toxic effects of corrosive alkalis and alk-like substances +C0497016|T037|HT|T54.3|ICD10CM|Toxic effects of corrosive alkalis and alkali-like substances|Toxic effects of corrosive alkalis and alkali-like substances +C0274854|T037|ET|T54.3|ICD10CM|Toxic effects of potassium hydroxide|Toxic effects of potassium hydroxide +C0274853|T037|ET|T54.3|ICD10CM|Toxic effects of sodium hydroxide|Toxic effects of sodium hydroxide +C0497016|T037|AB|T54.3X|ICD10CM|Toxic effects of corrosive alkalis and alk-like substances|Toxic effects of corrosive alkalis and alk-like substances +C0497016|T037|HT|T54.3X|ICD10CM|Toxic effects of corrosive alkalis and alkali-like substances|Toxic effects of corrosive alkalis and alkali-like substances +C2884393|T037|AB|T54.3X1|ICD10CM|Toxic effect of corrosive alkalis and alk-like substnc, acc|Toxic effect of corrosive alkalis and alk-like substnc, acc +C2884393|T037|HT|T54.3X1|ICD10CM|Toxic effect of corrosive alkalis and alkali-like substances, accidental (unintentional)|Toxic effect of corrosive alkalis and alkali-like substances, accidental (unintentional) +C0497016|T037|ET|T54.3X1|ICD10CM|Toxic effects of corrosive alkalis and alkali-like substances NOS|Toxic effects of corrosive alkalis and alkali-like substances NOS +C2884394|T037|AB|T54.3X1A|ICD10CM|Tox eff of corrosv alkalis and alk-like substnc, acc, init|Tox eff of corrosv alkalis and alk-like substnc, acc, init +C2884395|T037|AB|T54.3X1D|ICD10CM|Tox eff of corrosv alkalis and alk-like substnc, acc, subs|Tox eff of corrosv alkalis and alk-like substnc, acc, subs +C2884396|T037|AB|T54.3X1S|ICD10CM|Tox eff of corrosv alkalis and alk-like substnc, acc, sqla|Tox eff of corrosv alkalis and alk-like substnc, acc, sqla +C2884396|T037|PT|T54.3X1S|ICD10CM|Toxic effect of corrosive alkalis and alkali-like substances, accidental (unintentional), sequela|Toxic effect of corrosive alkalis and alkali-like substances, accidental (unintentional), sequela +C2884397|T037|AB|T54.3X2|ICD10CM|Toxic eff of corrosv alkalis and alk-like substnc, slf-hrm|Toxic eff of corrosv alkalis and alk-like substnc, slf-hrm +C2884397|T037|HT|T54.3X2|ICD10CM|Toxic effect of corrosive alkalis and alkali-like substances, intentional self-harm|Toxic effect of corrosive alkalis and alkali-like substances, intentional self-harm +C2884398|T037|AB|T54.3X2A|ICD10CM|Tox eff of corrosv alkalis & alk-like substnc, slf-hrm, init|Tox eff of corrosv alkalis & alk-like substnc, slf-hrm, init +C2884399|T037|AB|T54.3X2D|ICD10CM|Tox eff of corrosv alkalis & alk-like substnc, slf-hrm, subs|Tox eff of corrosv alkalis & alk-like substnc, slf-hrm, subs +C2884400|T037|AB|T54.3X2S|ICD10CM|Tox eff of corrosv alkalis & alk-like substnc, slf-hrm, sqla|Tox eff of corrosv alkalis & alk-like substnc, slf-hrm, sqla +C2884400|T037|PT|T54.3X2S|ICD10CM|Toxic effect of corrosive alkalis and alkali-like substances, intentional self-harm, sequela|Toxic effect of corrosive alkalis and alkali-like substances, intentional self-harm, sequela +C2884401|T037|HT|T54.3X3|ICD10CM|Toxic effect of corrosive alkalis and alkali-like substances, assault|Toxic effect of corrosive alkalis and alkali-like substances, assault +C2884401|T037|AB|T54.3X3|ICD10CM|Toxic effect of corrosv alkalis and alk-like substnc, asslt|Toxic effect of corrosv alkalis and alk-like substnc, asslt +C2884402|T037|AB|T54.3X3A|ICD10CM|Tox eff of corrosv alkalis and alk-like substnc, asslt, init|Tox eff of corrosv alkalis and alk-like substnc, asslt, init +C2884402|T037|PT|T54.3X3A|ICD10CM|Toxic effect of corrosive alkalis and alkali-like substances, assault, initial encounter|Toxic effect of corrosive alkalis and alkali-like substances, assault, initial encounter +C2884403|T037|AB|T54.3X3D|ICD10CM|Tox eff of corrosv alkalis and alk-like substnc, asslt, subs|Tox eff of corrosv alkalis and alk-like substnc, asslt, subs +C2884403|T037|PT|T54.3X3D|ICD10CM|Toxic effect of corrosive alkalis and alkali-like substances, assault, subsequent encounter|Toxic effect of corrosive alkalis and alkali-like substances, assault, subsequent encounter +C2884404|T037|AB|T54.3X3S|ICD10CM|Tox eff of corrosv alkalis and alk-like substnc, asslt, sqla|Tox eff of corrosv alkalis and alk-like substnc, asslt, sqla +C2884404|T037|PT|T54.3X3S|ICD10CM|Toxic effect of corrosive alkalis and alkali-like substances, assault, sequela|Toxic effect of corrosive alkalis and alkali-like substances, assault, sequela +C2884405|T037|HT|T54.3X4|ICD10CM|Toxic effect of corrosive alkalis and alkali-like substances, undetermined|Toxic effect of corrosive alkalis and alkali-like substances, undetermined +C2884405|T037|AB|T54.3X4|ICD10CM|Toxic effect of corrosv alkalis and alk-like substnc, undet|Toxic effect of corrosv alkalis and alk-like substnc, undet +C2884406|T037|AB|T54.3X4A|ICD10CM|Tox eff of corrosv alkalis and alk-like substnc, undet, init|Tox eff of corrosv alkalis and alk-like substnc, undet, init +C2884406|T037|PT|T54.3X4A|ICD10CM|Toxic effect of corrosive alkalis and alkali-like substances, undetermined, initial encounter|Toxic effect of corrosive alkalis and alkali-like substances, undetermined, initial encounter +C2884407|T037|AB|T54.3X4D|ICD10CM|Tox eff of corrosv alkalis and alk-like substnc, undet, subs|Tox eff of corrosv alkalis and alk-like substnc, undet, subs +C2884407|T037|PT|T54.3X4D|ICD10CM|Toxic effect of corrosive alkalis and alkali-like substances, undetermined, subsequent encounter|Toxic effect of corrosive alkalis and alkali-like substances, undetermined, subsequent encounter +C2884408|T037|AB|T54.3X4S|ICD10CM|Tox eff of corrosv alkalis and alk-like substnc, undet, sqla|Tox eff of corrosv alkalis and alk-like substnc, undet, sqla +C2884408|T037|PT|T54.3X4S|ICD10CM|Toxic effect of corrosive alkalis and alkali-like substances, undetermined, sequela|Toxic effect of corrosive alkalis and alkali-like substances, undetermined, sequela +C0496102|T037|PS|T54.9|ICD10|Corrosive substance, unspecified|Corrosive substance, unspecified +C0496102|T037|PX|T54.9|ICD10|Toxic effect of corrosive substance, unspecified|Toxic effect of corrosive substance, unspecified +C0496102|T037|AB|T54.9|ICD10CM|Toxic effects of unspecified corrosive substance|Toxic effects of unspecified corrosive substance +C0496102|T037|HT|T54.9|ICD10CM|Toxic effects of unspecified corrosive substance|Toxic effects of unspecified corrosive substance +C2884409|T037|AB|T54.91|ICD10CM|Toxic effect of unsp corrosive substance, accidental|Toxic effect of unsp corrosive substance, accidental +C2884409|T037|HT|T54.91|ICD10CM|Toxic effect of unspecified corrosive substance, accidental (unintentional)|Toxic effect of unspecified corrosive substance, accidental (unintentional) +C2884410|T037|AB|T54.91XA|ICD10CM|Toxic effect of unsp corrosive substance, accidental, init|Toxic effect of unsp corrosive substance, accidental, init +C2884410|T037|PT|T54.91XA|ICD10CM|Toxic effect of unspecified corrosive substance, accidental (unintentional), initial encounter|Toxic effect of unspecified corrosive substance, accidental (unintentional), initial encounter +C2884411|T037|AB|T54.91XD|ICD10CM|Toxic effect of unsp corrosive substance, accidental, subs|Toxic effect of unsp corrosive substance, accidental, subs +C2884411|T037|PT|T54.91XD|ICD10CM|Toxic effect of unspecified corrosive substance, accidental (unintentional), subsequent encounter|Toxic effect of unspecified corrosive substance, accidental (unintentional), subsequent encounter +C2884412|T037|AB|T54.91XS|ICD10CM|Toxic effect of unsp corrosive substance, acc, sequela|Toxic effect of unsp corrosive substance, acc, sequela +C2884412|T037|PT|T54.91XS|ICD10CM|Toxic effect of unspecified corrosive substance, accidental (unintentional), sequela|Toxic effect of unspecified corrosive substance, accidental (unintentional), sequela +C2884413|T037|AB|T54.92|ICD10CM|Toxic effect of unsp corrosive substance, self-harm|Toxic effect of unsp corrosive substance, self-harm +C2884413|T037|HT|T54.92|ICD10CM|Toxic effect of unspecified corrosive substance, intentional self-harm|Toxic effect of unspecified corrosive substance, intentional self-harm +C2884414|T037|AB|T54.92XA|ICD10CM|Toxic effect of unsp corrosive substance, self-harm, init|Toxic effect of unsp corrosive substance, self-harm, init +C2884414|T037|PT|T54.92XA|ICD10CM|Toxic effect of unspecified corrosive substance, intentional self-harm, initial encounter|Toxic effect of unspecified corrosive substance, intentional self-harm, initial encounter +C2884415|T037|AB|T54.92XD|ICD10CM|Toxic effect of unsp corrosive substance, self-harm, subs|Toxic effect of unsp corrosive substance, self-harm, subs +C2884415|T037|PT|T54.92XD|ICD10CM|Toxic effect of unspecified corrosive substance, intentional self-harm, subsequent encounter|Toxic effect of unspecified corrosive substance, intentional self-harm, subsequent encounter +C2884416|T037|AB|T54.92XS|ICD10CM|Toxic effect of unsp corrosive substance, self-harm, sequela|Toxic effect of unsp corrosive substance, self-harm, sequela +C2884416|T037|PT|T54.92XS|ICD10CM|Toxic effect of unspecified corrosive substance, intentional self-harm, sequela|Toxic effect of unspecified corrosive substance, intentional self-harm, sequela +C2884417|T037|AB|T54.93|ICD10CM|Toxic effect of unspecified corrosive substance, assault|Toxic effect of unspecified corrosive substance, assault +C2884417|T037|HT|T54.93|ICD10CM|Toxic effect of unspecified corrosive substance, assault|Toxic effect of unspecified corrosive substance, assault +C2884418|T037|AB|T54.93XA|ICD10CM|Toxic effect of unsp corrosive substance, assault, init|Toxic effect of unsp corrosive substance, assault, init +C2884418|T037|PT|T54.93XA|ICD10CM|Toxic effect of unspecified corrosive substance, assault, initial encounter|Toxic effect of unspecified corrosive substance, assault, initial encounter +C2884419|T037|AB|T54.93XD|ICD10CM|Toxic effect of unsp corrosive substance, assault, subs|Toxic effect of unsp corrosive substance, assault, subs +C2884419|T037|PT|T54.93XD|ICD10CM|Toxic effect of unspecified corrosive substance, assault, subsequent encounter|Toxic effect of unspecified corrosive substance, assault, subsequent encounter +C2884420|T037|AB|T54.93XS|ICD10CM|Toxic effect of unsp corrosive substance, assault, sequela|Toxic effect of unsp corrosive substance, assault, sequela +C2884420|T037|PT|T54.93XS|ICD10CM|Toxic effect of unspecified corrosive substance, assault, sequela|Toxic effect of unspecified corrosive substance, assault, sequela +C2884421|T037|AB|T54.94|ICD10CM|Toxic effect of unsp corrosive substance, undetermined|Toxic effect of unsp corrosive substance, undetermined +C2884421|T037|HT|T54.94|ICD10CM|Toxic effect of unspecified corrosive substance, undetermined|Toxic effect of unspecified corrosive substance, undetermined +C2884422|T037|AB|T54.94XA|ICD10CM|Toxic effect of unsp corrosive substance, undetermined, init|Toxic effect of unsp corrosive substance, undetermined, init +C2884422|T037|PT|T54.94XA|ICD10CM|Toxic effect of unspecified corrosive substance, undetermined, initial encounter|Toxic effect of unspecified corrosive substance, undetermined, initial encounter +C2884423|T037|AB|T54.94XD|ICD10CM|Toxic effect of unsp corrosive substance, undetermined, subs|Toxic effect of unsp corrosive substance, undetermined, subs +C2884423|T037|PT|T54.94XD|ICD10CM|Toxic effect of unspecified corrosive substance, undetermined, subsequent encounter|Toxic effect of unspecified corrosive substance, undetermined, subsequent encounter +C2884424|T037|AB|T54.94XS|ICD10CM|Toxic effect of unsp corrosive substance, undet, sequela|Toxic effect of unsp corrosive substance, undet, sequela +C2884424|T037|PT|T54.94XS|ICD10CM|Toxic effect of unspecified corrosive substance, undetermined, sequela|Toxic effect of unspecified corrosive substance, undetermined, sequela +C0274908|T037|HT|T55|ICD10CM|Toxic effect of soaps and detergents|Toxic effect of soaps and detergents +C0274908|T037|AB|T55|ICD10CM|Toxic effect of soaps and detergents|Toxic effect of soaps and detergents +C0274908|T037|PT|T55|ICD10|Toxic effect of soaps and detergents|Toxic effect of soaps and detergents +C0274908|T037|AB|T55.0|ICD10CM|Toxic effect of soaps|Toxic effect of soaps +C0274908|T037|HT|T55.0|ICD10CM|Toxic effect of soaps|Toxic effect of soaps +C0274908|T037|HT|T55.0X|ICD10CM|Toxic effect of soaps|Toxic effect of soaps +C0274908|T037|AB|T55.0X|ICD10CM|Toxic effect of soaps|Toxic effect of soaps +C0274908|T037|ET|T55.0X1|ICD10CM|Toxic effect of soaps NOS|Toxic effect of soaps NOS +C2884425|T037|AB|T55.0X1|ICD10CM|Toxic effect of soaps, accidental (unintentional)|Toxic effect of soaps, accidental (unintentional) +C2884425|T037|HT|T55.0X1|ICD10CM|Toxic effect of soaps, accidental (unintentional)|Toxic effect of soaps, accidental (unintentional) +C2884426|T037|AB|T55.0X1A|ICD10CM|Toxic effect of soaps, accidental (unintentional), init|Toxic effect of soaps, accidental (unintentional), init +C2884426|T037|PT|T55.0X1A|ICD10CM|Toxic effect of soaps, accidental (unintentional), initial encounter|Toxic effect of soaps, accidental (unintentional), initial encounter +C2884427|T037|AB|T55.0X1D|ICD10CM|Toxic effect of soaps, accidental (unintentional), subs|Toxic effect of soaps, accidental (unintentional), subs +C2884427|T037|PT|T55.0X1D|ICD10CM|Toxic effect of soaps, accidental (unintentional), subsequent encounter|Toxic effect of soaps, accidental (unintentional), subsequent encounter +C2884428|T037|AB|T55.0X1S|ICD10CM|Toxic effect of soaps, accidental (unintentional), sequela|Toxic effect of soaps, accidental (unintentional), sequela +C2884428|T037|PT|T55.0X1S|ICD10CM|Toxic effect of soaps, accidental (unintentional), sequela|Toxic effect of soaps, accidental (unintentional), sequela +C2884429|T037|AB|T55.0X2|ICD10CM|Toxic effect of soaps, intentional self-harm|Toxic effect of soaps, intentional self-harm +C2884429|T037|HT|T55.0X2|ICD10CM|Toxic effect of soaps, intentional self-harm|Toxic effect of soaps, intentional self-harm +C2884430|T037|AB|T55.0X2A|ICD10CM|Toxic effect of soaps, intentional self-harm, init encntr|Toxic effect of soaps, intentional self-harm, init encntr +C2884430|T037|PT|T55.0X2A|ICD10CM|Toxic effect of soaps, intentional self-harm, initial encounter|Toxic effect of soaps, intentional self-harm, initial encounter +C2884431|T037|AB|T55.0X2D|ICD10CM|Toxic effect of soaps, intentional self-harm, subs encntr|Toxic effect of soaps, intentional self-harm, subs encntr +C2884431|T037|PT|T55.0X2D|ICD10CM|Toxic effect of soaps, intentional self-harm, subsequent encounter|Toxic effect of soaps, intentional self-harm, subsequent encounter +C2884432|T037|AB|T55.0X2S|ICD10CM|Toxic effect of soaps, intentional self-harm, sequela|Toxic effect of soaps, intentional self-harm, sequela +C2884432|T037|PT|T55.0X2S|ICD10CM|Toxic effect of soaps, intentional self-harm, sequela|Toxic effect of soaps, intentional self-harm, sequela +C2884433|T037|AB|T55.0X3|ICD10CM|Toxic effect of soaps, assault|Toxic effect of soaps, assault +C2884433|T037|HT|T55.0X3|ICD10CM|Toxic effect of soaps, assault|Toxic effect of soaps, assault +C2884434|T037|AB|T55.0X3A|ICD10CM|Toxic effect of soaps, assault, initial encounter|Toxic effect of soaps, assault, initial encounter +C2884434|T037|PT|T55.0X3A|ICD10CM|Toxic effect of soaps, assault, initial encounter|Toxic effect of soaps, assault, initial encounter +C2884435|T037|AB|T55.0X3D|ICD10CM|Toxic effect of soaps, assault, subsequent encounter|Toxic effect of soaps, assault, subsequent encounter +C2884435|T037|PT|T55.0X3D|ICD10CM|Toxic effect of soaps, assault, subsequent encounter|Toxic effect of soaps, assault, subsequent encounter +C2884436|T037|AB|T55.0X3S|ICD10CM|Toxic effect of soaps, assault, sequela|Toxic effect of soaps, assault, sequela +C2884436|T037|PT|T55.0X3S|ICD10CM|Toxic effect of soaps, assault, sequela|Toxic effect of soaps, assault, sequela +C2884437|T037|AB|T55.0X4|ICD10CM|Toxic effect of soaps, undetermined|Toxic effect of soaps, undetermined +C2884437|T037|HT|T55.0X4|ICD10CM|Toxic effect of soaps, undetermined|Toxic effect of soaps, undetermined +C2884438|T037|AB|T55.0X4A|ICD10CM|Toxic effect of soaps, undetermined, initial encounter|Toxic effect of soaps, undetermined, initial encounter +C2884438|T037|PT|T55.0X4A|ICD10CM|Toxic effect of soaps, undetermined, initial encounter|Toxic effect of soaps, undetermined, initial encounter +C2884439|T037|AB|T55.0X4D|ICD10CM|Toxic effect of soaps, undetermined, subsequent encounter|Toxic effect of soaps, undetermined, subsequent encounter +C2884439|T037|PT|T55.0X4D|ICD10CM|Toxic effect of soaps, undetermined, subsequent encounter|Toxic effect of soaps, undetermined, subsequent encounter +C2884440|T037|AB|T55.0X4S|ICD10CM|Toxic effect of soaps, undetermined, sequela|Toxic effect of soaps, undetermined, sequela +C2884440|T037|PT|T55.0X4S|ICD10CM|Toxic effect of soaps, undetermined, sequela|Toxic effect of soaps, undetermined, sequela +C0274908|T037|AB|T55.1|ICD10CM|Toxic effect of detergents|Toxic effect of detergents +C0274908|T037|HT|T55.1|ICD10CM|Toxic effect of detergents|Toxic effect of detergents +C0274908|T037|HT|T55.1X|ICD10CM|Toxic effect of detergents|Toxic effect of detergents +C0274908|T037|AB|T55.1X|ICD10CM|Toxic effect of detergents|Toxic effect of detergents +C0274908|T037|ET|T55.1X1|ICD10CM|Toxic effect of detergents NOS|Toxic effect of detergents NOS +C2884441|T037|AB|T55.1X1|ICD10CM|Toxic effect of detergents, accidental (unintentional)|Toxic effect of detergents, accidental (unintentional) +C2884441|T037|HT|T55.1X1|ICD10CM|Toxic effect of detergents, accidental (unintentional)|Toxic effect of detergents, accidental (unintentional) +C2884442|T037|AB|T55.1X1A|ICD10CM|Toxic effect of detergents, accidental (unintentional), init|Toxic effect of detergents, accidental (unintentional), init +C2884442|T037|PT|T55.1X1A|ICD10CM|Toxic effect of detergents, accidental (unintentional), initial encounter|Toxic effect of detergents, accidental (unintentional), initial encounter +C2884443|T037|AB|T55.1X1D|ICD10CM|Toxic effect of detergents, accidental (unintentional), subs|Toxic effect of detergents, accidental (unintentional), subs +C2884443|T037|PT|T55.1X1D|ICD10CM|Toxic effect of detergents, accidental (unintentional), subsequent encounter|Toxic effect of detergents, accidental (unintentional), subsequent encounter +C2884444|T037|PT|T55.1X1S|ICD10CM|Toxic effect of detergents, accidental (unintentional), sequela|Toxic effect of detergents, accidental (unintentional), sequela +C2884444|T037|AB|T55.1X1S|ICD10CM|Toxic effect of detergents, accidental, sequela|Toxic effect of detergents, accidental, sequela +C2884445|T037|AB|T55.1X2|ICD10CM|Toxic effect of detergents, intentional self-harm|Toxic effect of detergents, intentional self-harm +C2884445|T037|HT|T55.1X2|ICD10CM|Toxic effect of detergents, intentional self-harm|Toxic effect of detergents, intentional self-harm +C2884446|T037|AB|T55.1X2A|ICD10CM|Toxic effect of detergents, intentional self-harm, init|Toxic effect of detergents, intentional self-harm, init +C2884446|T037|PT|T55.1X2A|ICD10CM|Toxic effect of detergents, intentional self-harm, initial encounter|Toxic effect of detergents, intentional self-harm, initial encounter +C2884447|T037|AB|T55.1X2D|ICD10CM|Toxic effect of detergents, intentional self-harm, subs|Toxic effect of detergents, intentional self-harm, subs +C2884447|T037|PT|T55.1X2D|ICD10CM|Toxic effect of detergents, intentional self-harm, subsequent encounter|Toxic effect of detergents, intentional self-harm, subsequent encounter +C2884448|T037|AB|T55.1X2S|ICD10CM|Toxic effect of detergents, intentional self-harm, sequela|Toxic effect of detergents, intentional self-harm, sequela +C2884448|T037|PT|T55.1X2S|ICD10CM|Toxic effect of detergents, intentional self-harm, sequela|Toxic effect of detergents, intentional self-harm, sequela +C2884449|T037|AB|T55.1X3|ICD10CM|Toxic effect of detergents, assault|Toxic effect of detergents, assault +C2884449|T037|HT|T55.1X3|ICD10CM|Toxic effect of detergents, assault|Toxic effect of detergents, assault +C2884450|T037|AB|T55.1X3A|ICD10CM|Toxic effect of detergents, assault, initial encounter|Toxic effect of detergents, assault, initial encounter +C2884450|T037|PT|T55.1X3A|ICD10CM|Toxic effect of detergents, assault, initial encounter|Toxic effect of detergents, assault, initial encounter +C2884451|T037|AB|T55.1X3D|ICD10CM|Toxic effect of detergents, assault, subsequent encounter|Toxic effect of detergents, assault, subsequent encounter +C2884451|T037|PT|T55.1X3D|ICD10CM|Toxic effect of detergents, assault, subsequent encounter|Toxic effect of detergents, assault, subsequent encounter +C2884452|T037|AB|T55.1X3S|ICD10CM|Toxic effect of detergents, assault, sequela|Toxic effect of detergents, assault, sequela +C2884452|T037|PT|T55.1X3S|ICD10CM|Toxic effect of detergents, assault, sequela|Toxic effect of detergents, assault, sequela +C2884453|T037|AB|T55.1X4|ICD10CM|Toxic effect of detergents, undetermined|Toxic effect of detergents, undetermined +C2884453|T037|HT|T55.1X4|ICD10CM|Toxic effect of detergents, undetermined|Toxic effect of detergents, undetermined +C2884454|T037|AB|T55.1X4A|ICD10CM|Toxic effect of detergents, undetermined, initial encounter|Toxic effect of detergents, undetermined, initial encounter +C2884454|T037|PT|T55.1X4A|ICD10CM|Toxic effect of detergents, undetermined, initial encounter|Toxic effect of detergents, undetermined, initial encounter +C2884455|T037|AB|T55.1X4D|ICD10CM|Toxic effect of detergents, undetermined, subs encntr|Toxic effect of detergents, undetermined, subs encntr +C2884455|T037|PT|T55.1X4D|ICD10CM|Toxic effect of detergents, undetermined, subsequent encounter|Toxic effect of detergents, undetermined, subsequent encounter +C2884456|T037|AB|T55.1X4S|ICD10CM|Toxic effect of detergents, undetermined, sequela|Toxic effect of detergents, undetermined, sequela +C2884456|T037|PT|T55.1X4S|ICD10CM|Toxic effect of detergents, undetermined, sequela|Toxic effect of detergents, undetermined, sequela +C0274869|T037|AB|T56|ICD10CM|Toxic effect of metals|Toxic effect of metals +C0274869|T037|HT|T56|ICD10CM|Toxic effect of metals|Toxic effect of metals +C0274869|T037|HT|T56|ICD10|Toxic effect of metals|Toxic effect of metals +C4290404|T037|ET|T56|ICD10CM|toxic effects of fumes and vapors of metals|toxic effects of fumes and vapors of metals +C4290405|T037|ET|T56|ICD10CM|toxic effects of metals from all sources, except medicinal substances|toxic effects of metals from all sources, except medicinal substances +C0023176|T037|PS|T56.0|ICD10|Lead and its compounds|Lead and its compounds +C0023176|T037|PX|T56.0|ICD10|Toxic effect of lead and its compounds|Toxic effect of lead and its compounds +C0023176|T037|AB|T56.0|ICD10CM|Toxic effects of lead and its compounds|Toxic effects of lead and its compounds +C0023176|T037|HT|T56.0|ICD10CM|Toxic effects of lead and its compounds|Toxic effects of lead and its compounds +C0023176|T037|HT|T56.0X|ICD10CM|Toxic effects of lead and its compounds|Toxic effects of lead and its compounds +C0023176|T037|AB|T56.0X|ICD10CM|Toxic effects of lead and its compounds|Toxic effects of lead and its compounds +C2884459|T037|AB|T56.0X1|ICD10CM|Toxic effect of lead and its compounds, accidental|Toxic effect of lead and its compounds, accidental +C2884459|T037|HT|T56.0X1|ICD10CM|Toxic effect of lead and its compounds, accidental (unintentional)|Toxic effect of lead and its compounds, accidental (unintentional) +C0023176|T037|ET|T56.0X1|ICD10CM|Toxic effects of lead and its compounds NOS|Toxic effects of lead and its compounds NOS +C2884460|T037|PT|T56.0X1A|ICD10CM|Toxic effect of lead and its compounds, accidental (unintentional), initial encounter|Toxic effect of lead and its compounds, accidental (unintentional), initial encounter +C2884460|T037|AB|T56.0X1A|ICD10CM|Toxic effect of lead and its compounds, accidental, init|Toxic effect of lead and its compounds, accidental, init +C2884461|T037|PT|T56.0X1D|ICD10CM|Toxic effect of lead and its compounds, accidental (unintentional), subsequent encounter|Toxic effect of lead and its compounds, accidental (unintentional), subsequent encounter +C2884461|T037|AB|T56.0X1D|ICD10CM|Toxic effect of lead and its compounds, accidental, subs|Toxic effect of lead and its compounds, accidental, subs +C2884462|T037|PT|T56.0X1S|ICD10CM|Toxic effect of lead and its compounds, accidental (unintentional), sequela|Toxic effect of lead and its compounds, accidental (unintentional), sequela +C2884462|T037|AB|T56.0X1S|ICD10CM|Toxic effect of lead and its compounds, accidental, sequela|Toxic effect of lead and its compounds, accidental, sequela +C2884463|T037|HT|T56.0X2|ICD10CM|Toxic effect of lead and its compounds, intentional self-harm|Toxic effect of lead and its compounds, intentional self-harm +C2884463|T037|AB|T56.0X2|ICD10CM|Toxic effect of lead and its compounds, self-harm|Toxic effect of lead and its compounds, self-harm +C2884464|T037|PT|T56.0X2A|ICD10CM|Toxic effect of lead and its compounds, intentional self-harm, initial encounter|Toxic effect of lead and its compounds, intentional self-harm, initial encounter +C2884464|T037|AB|T56.0X2A|ICD10CM|Toxic effect of lead and its compounds, self-harm, init|Toxic effect of lead and its compounds, self-harm, init +C2884465|T037|PT|T56.0X2D|ICD10CM|Toxic effect of lead and its compounds, intentional self-harm, subsequent encounter|Toxic effect of lead and its compounds, intentional self-harm, subsequent encounter +C2884465|T037|AB|T56.0X2D|ICD10CM|Toxic effect of lead and its compounds, self-harm, subs|Toxic effect of lead and its compounds, self-harm, subs +C2884466|T037|PT|T56.0X2S|ICD10CM|Toxic effect of lead and its compounds, intentional self-harm, sequela|Toxic effect of lead and its compounds, intentional self-harm, sequela +C2884466|T037|AB|T56.0X2S|ICD10CM|Toxic effect of lead and its compounds, self-harm, sequela|Toxic effect of lead and its compounds, self-harm, sequela +C2884467|T037|AB|T56.0X3|ICD10CM|Toxic effect of lead and its compounds, assault|Toxic effect of lead and its compounds, assault +C2884467|T037|HT|T56.0X3|ICD10CM|Toxic effect of lead and its compounds, assault|Toxic effect of lead and its compounds, assault +C2884468|T037|AB|T56.0X3A|ICD10CM|Toxic effect of lead and its compounds, assault, init encntr|Toxic effect of lead and its compounds, assault, init encntr +C2884468|T037|PT|T56.0X3A|ICD10CM|Toxic effect of lead and its compounds, assault, initial encounter|Toxic effect of lead and its compounds, assault, initial encounter +C2884469|T037|AB|T56.0X3D|ICD10CM|Toxic effect of lead and its compounds, assault, subs encntr|Toxic effect of lead and its compounds, assault, subs encntr +C2884469|T037|PT|T56.0X3D|ICD10CM|Toxic effect of lead and its compounds, assault, subsequent encounter|Toxic effect of lead and its compounds, assault, subsequent encounter +C2884470|T037|AB|T56.0X3S|ICD10CM|Toxic effect of lead and its compounds, assault, sequela|Toxic effect of lead and its compounds, assault, sequela +C2884470|T037|PT|T56.0X3S|ICD10CM|Toxic effect of lead and its compounds, assault, sequela|Toxic effect of lead and its compounds, assault, sequela +C2884471|T037|AB|T56.0X4|ICD10CM|Toxic effect of lead and its compounds, undetermined|Toxic effect of lead and its compounds, undetermined +C2884471|T037|HT|T56.0X4|ICD10CM|Toxic effect of lead and its compounds, undetermined|Toxic effect of lead and its compounds, undetermined +C2884472|T037|AB|T56.0X4A|ICD10CM|Toxic effect of lead and its compounds, undetermined, init|Toxic effect of lead and its compounds, undetermined, init +C2884472|T037|PT|T56.0X4A|ICD10CM|Toxic effect of lead and its compounds, undetermined, initial encounter|Toxic effect of lead and its compounds, undetermined, initial encounter +C2884473|T037|AB|T56.0X4D|ICD10CM|Toxic effect of lead and its compounds, undetermined, subs|Toxic effect of lead and its compounds, undetermined, subs +C2884473|T037|PT|T56.0X4D|ICD10CM|Toxic effect of lead and its compounds, undetermined, subsequent encounter|Toxic effect of lead and its compounds, undetermined, subsequent encounter +C2884474|T037|AB|T56.0X4S|ICD10CM|Toxic effect of lead and its compounds, undet, sequela|Toxic effect of lead and its compounds, undet, sequela +C2884474|T037|PT|T56.0X4S|ICD10CM|Toxic effect of lead and its compounds, undetermined, sequela|Toxic effect of lead and its compounds, undetermined, sequela +C0025427|T037|PS|T56.1|ICD10|Mercury and its compounds|Mercury and its compounds +C0025427|T037|PX|T56.1|ICD10|Toxic effect of mercury and its compounds|Toxic effect of mercury and its compounds +C0025427|T037|AB|T56.1|ICD10CM|Toxic effects of mercury and its compounds|Toxic effects of mercury and its compounds +C0025427|T037|HT|T56.1|ICD10CM|Toxic effects of mercury and its compounds|Toxic effects of mercury and its compounds +C0025427|T037|HT|T56.1X|ICD10CM|Toxic effects of mercury and its compounds|Toxic effects of mercury and its compounds +C0025427|T037|AB|T56.1X|ICD10CM|Toxic effects of mercury and its compounds|Toxic effects of mercury and its compounds +C2884475|T037|AB|T56.1X1|ICD10CM|Toxic effect of mercury and its compounds, accidental|Toxic effect of mercury and its compounds, accidental +C2884475|T037|HT|T56.1X1|ICD10CM|Toxic effect of mercury and its compounds, accidental (unintentional)|Toxic effect of mercury and its compounds, accidental (unintentional) +C0025427|T037|ET|T56.1X1|ICD10CM|Toxic effects of mercury and its compounds NOS|Toxic effects of mercury and its compounds NOS +C2884476|T037|PT|T56.1X1A|ICD10CM|Toxic effect of mercury and its compounds, accidental (unintentional), initial encounter|Toxic effect of mercury and its compounds, accidental (unintentional), initial encounter +C2884476|T037|AB|T56.1X1A|ICD10CM|Toxic effect of mercury and its compounds, accidental, init|Toxic effect of mercury and its compounds, accidental, init +C2884477|T037|PT|T56.1X1D|ICD10CM|Toxic effect of mercury and its compounds, accidental (unintentional), subsequent encounter|Toxic effect of mercury and its compounds, accidental (unintentional), subsequent encounter +C2884477|T037|AB|T56.1X1D|ICD10CM|Toxic effect of mercury and its compounds, accidental, subs|Toxic effect of mercury and its compounds, accidental, subs +C2884478|T037|AB|T56.1X1S|ICD10CM|Toxic effect of mercury and its compounds, acc, sequela|Toxic effect of mercury and its compounds, acc, sequela +C2884478|T037|PT|T56.1X1S|ICD10CM|Toxic effect of mercury and its compounds, accidental (unintentional), sequela|Toxic effect of mercury and its compounds, accidental (unintentional), sequela +C2884479|T037|HT|T56.1X2|ICD10CM|Toxic effect of mercury and its compounds, intentional self-harm|Toxic effect of mercury and its compounds, intentional self-harm +C2884479|T037|AB|T56.1X2|ICD10CM|Toxic effect of mercury and its compounds, self-harm|Toxic effect of mercury and its compounds, self-harm +C2884480|T037|PT|T56.1X2A|ICD10CM|Toxic effect of mercury and its compounds, intentional self-harm, initial encounter|Toxic effect of mercury and its compounds, intentional self-harm, initial encounter +C2884480|T037|AB|T56.1X2A|ICD10CM|Toxic effect of mercury and its compounds, self-harm, init|Toxic effect of mercury and its compounds, self-harm, init +C2884481|T037|PT|T56.1X2D|ICD10CM|Toxic effect of mercury and its compounds, intentional self-harm, subsequent encounter|Toxic effect of mercury and its compounds, intentional self-harm, subsequent encounter +C2884481|T037|AB|T56.1X2D|ICD10CM|Toxic effect of mercury and its compounds, self-harm, subs|Toxic effect of mercury and its compounds, self-harm, subs +C2884482|T037|AB|T56.1X2S|ICD10CM|Toxic effect of mercury and its compnd, self-harm, sequela|Toxic effect of mercury and its compnd, self-harm, sequela +C2884482|T037|PT|T56.1X2S|ICD10CM|Toxic effect of mercury and its compounds, intentional self-harm, sequela|Toxic effect of mercury and its compounds, intentional self-harm, sequela +C2884483|T037|AB|T56.1X3|ICD10CM|Toxic effect of mercury and its compounds, assault|Toxic effect of mercury and its compounds, assault +C2884483|T037|HT|T56.1X3|ICD10CM|Toxic effect of mercury and its compounds, assault|Toxic effect of mercury and its compounds, assault +C2884484|T037|AB|T56.1X3A|ICD10CM|Toxic effect of mercury and its compounds, assault, init|Toxic effect of mercury and its compounds, assault, init +C2884484|T037|PT|T56.1X3A|ICD10CM|Toxic effect of mercury and its compounds, assault, initial encounter|Toxic effect of mercury and its compounds, assault, initial encounter +C2884485|T037|AB|T56.1X3D|ICD10CM|Toxic effect of mercury and its compounds, assault, subs|Toxic effect of mercury and its compounds, assault, subs +C2884485|T037|PT|T56.1X3D|ICD10CM|Toxic effect of mercury and its compounds, assault, subsequent encounter|Toxic effect of mercury and its compounds, assault, subsequent encounter +C2884486|T037|AB|T56.1X3S|ICD10CM|Toxic effect of mercury and its compounds, assault, sequela|Toxic effect of mercury and its compounds, assault, sequela +C2884486|T037|PT|T56.1X3S|ICD10CM|Toxic effect of mercury and its compounds, assault, sequela|Toxic effect of mercury and its compounds, assault, sequela +C2884487|T037|AB|T56.1X4|ICD10CM|Toxic effect of mercury and its compounds, undetermined|Toxic effect of mercury and its compounds, undetermined +C2884487|T037|HT|T56.1X4|ICD10CM|Toxic effect of mercury and its compounds, undetermined|Toxic effect of mercury and its compounds, undetermined +C2884488|T037|AB|T56.1X4A|ICD10CM|Toxic effect of mercury and its compounds, undet, init|Toxic effect of mercury and its compounds, undet, init +C2884488|T037|PT|T56.1X4A|ICD10CM|Toxic effect of mercury and its compounds, undetermined, initial encounter|Toxic effect of mercury and its compounds, undetermined, initial encounter +C2884489|T037|AB|T56.1X4D|ICD10CM|Toxic effect of mercury and its compounds, undet, subs|Toxic effect of mercury and its compounds, undet, subs +C2884489|T037|PT|T56.1X4D|ICD10CM|Toxic effect of mercury and its compounds, undetermined, subsequent encounter|Toxic effect of mercury and its compounds, undetermined, subsequent encounter +C2884490|T037|AB|T56.1X4S|ICD10CM|Toxic effect of mercury and its compounds, undet, sequela|Toxic effect of mercury and its compounds, undet, sequela +C2884490|T037|PT|T56.1X4S|ICD10CM|Toxic effect of mercury and its compounds, undetermined, sequela|Toxic effect of mercury and its compounds, undetermined, sequela +C0161708|T037|PS|T56.2|ICD10|Chromium and its compounds|Chromium and its compounds +C0161708|T037|PX|T56.2|ICD10|Toxic effect of chromium and its compounds|Toxic effect of chromium and its compounds +C0161708|T037|AB|T56.2|ICD10CM|Toxic effects of chromium and its compounds|Toxic effects of chromium and its compounds +C0161708|T037|HT|T56.2|ICD10CM|Toxic effects of chromium and its compounds|Toxic effects of chromium and its compounds +C0161708|T037|HT|T56.2X|ICD10CM|Toxic effects of chromium and its compounds|Toxic effects of chromium and its compounds +C0161708|T037|AB|T56.2X|ICD10CM|Toxic effects of chromium and its compounds|Toxic effects of chromium and its compounds +C2884491|T037|AB|T56.2X1|ICD10CM|Toxic effect of chromium and its compounds, accidental|Toxic effect of chromium and its compounds, accidental +C2884491|T037|HT|T56.2X1|ICD10CM|Toxic effect of chromium and its compounds, accidental (unintentional)|Toxic effect of chromium and its compounds, accidental (unintentional) +C0161708|T037|ET|T56.2X1|ICD10CM|Toxic effects of chromium and its compounds NOS|Toxic effects of chromium and its compounds NOS +C2884492|T037|AB|T56.2X1A|ICD10CM|Toxic effect of chromium and its compounds, acc, init|Toxic effect of chromium and its compounds, acc, init +C2884492|T037|PT|T56.2X1A|ICD10CM|Toxic effect of chromium and its compounds, accidental (unintentional), initial encounter|Toxic effect of chromium and its compounds, accidental (unintentional), initial encounter +C2884493|T037|AB|T56.2X1D|ICD10CM|Toxic effect of chromium and its compounds, acc, subs|Toxic effect of chromium and its compounds, acc, subs +C2884493|T037|PT|T56.2X1D|ICD10CM|Toxic effect of chromium and its compounds, accidental (unintentional), subsequent encounter|Toxic effect of chromium and its compounds, accidental (unintentional), subsequent encounter +C2884494|T037|AB|T56.2X1S|ICD10CM|Toxic effect of chromium and its compounds, acc, sequela|Toxic effect of chromium and its compounds, acc, sequela +C2884494|T037|PT|T56.2X1S|ICD10CM|Toxic effect of chromium and its compounds, accidental (unintentional), sequela|Toxic effect of chromium and its compounds, accidental (unintentional), sequela +C2884495|T037|HT|T56.2X2|ICD10CM|Toxic effect of chromium and its compounds, intentional self-harm|Toxic effect of chromium and its compounds, intentional self-harm +C2884495|T037|AB|T56.2X2|ICD10CM|Toxic effect of chromium and its compounds, self-harm|Toxic effect of chromium and its compounds, self-harm +C2884496|T037|PT|T56.2X2A|ICD10CM|Toxic effect of chromium and its compounds, intentional self-harm, initial encounter|Toxic effect of chromium and its compounds, intentional self-harm, initial encounter +C2884496|T037|AB|T56.2X2A|ICD10CM|Toxic effect of chromium and its compounds, self-harm, init|Toxic effect of chromium and its compounds, self-harm, init +C2884497|T037|PT|T56.2X2D|ICD10CM|Toxic effect of chromium and its compounds, intentional self-harm, subsequent encounter|Toxic effect of chromium and its compounds, intentional self-harm, subsequent encounter +C2884497|T037|AB|T56.2X2D|ICD10CM|Toxic effect of chromium and its compounds, self-harm, subs|Toxic effect of chromium and its compounds, self-harm, subs +C2884498|T037|AB|T56.2X2S|ICD10CM|Toxic effect of chromium and its compnd, self-harm, sequela|Toxic effect of chromium and its compnd, self-harm, sequela +C2884498|T037|PT|T56.2X2S|ICD10CM|Toxic effect of chromium and its compounds, intentional self-harm, sequela|Toxic effect of chromium and its compounds, intentional self-harm, sequela +C2884499|T037|AB|T56.2X3|ICD10CM|Toxic effect of chromium and its compounds, assault|Toxic effect of chromium and its compounds, assault +C2884499|T037|HT|T56.2X3|ICD10CM|Toxic effect of chromium and its compounds, assault|Toxic effect of chromium and its compounds, assault +C2884500|T037|AB|T56.2X3A|ICD10CM|Toxic effect of chromium and its compounds, assault, init|Toxic effect of chromium and its compounds, assault, init +C2884500|T037|PT|T56.2X3A|ICD10CM|Toxic effect of chromium and its compounds, assault, initial encounter|Toxic effect of chromium and its compounds, assault, initial encounter +C2884501|T037|AB|T56.2X3D|ICD10CM|Toxic effect of chromium and its compounds, assault, subs|Toxic effect of chromium and its compounds, assault, subs +C2884501|T037|PT|T56.2X3D|ICD10CM|Toxic effect of chromium and its compounds, assault, subsequent encounter|Toxic effect of chromium and its compounds, assault, subsequent encounter +C2884502|T037|AB|T56.2X3S|ICD10CM|Toxic effect of chromium and its compounds, assault, sequela|Toxic effect of chromium and its compounds, assault, sequela +C2884502|T037|PT|T56.2X3S|ICD10CM|Toxic effect of chromium and its compounds, assault, sequela|Toxic effect of chromium and its compounds, assault, sequela +C2884503|T037|AB|T56.2X4|ICD10CM|Toxic effect of chromium and its compounds, undetermined|Toxic effect of chromium and its compounds, undetermined +C2884503|T037|HT|T56.2X4|ICD10CM|Toxic effect of chromium and its compounds, undetermined|Toxic effect of chromium and its compounds, undetermined +C2884504|T037|AB|T56.2X4A|ICD10CM|Toxic effect of chromium and its compounds, undet, init|Toxic effect of chromium and its compounds, undet, init +C2884504|T037|PT|T56.2X4A|ICD10CM|Toxic effect of chromium and its compounds, undetermined, initial encounter|Toxic effect of chromium and its compounds, undetermined, initial encounter +C2884505|T037|AB|T56.2X4D|ICD10CM|Toxic effect of chromium and its compounds, undet, subs|Toxic effect of chromium and its compounds, undet, subs +C2884505|T037|PT|T56.2X4D|ICD10CM|Toxic effect of chromium and its compounds, undetermined, subsequent encounter|Toxic effect of chromium and its compounds, undetermined, subsequent encounter +C2884506|T037|AB|T56.2X4S|ICD10CM|Toxic effect of chromium and its compounds, undet, sequela|Toxic effect of chromium and its compounds, undet, sequela +C2884506|T037|PT|T56.2X4S|ICD10CM|Toxic effect of chromium and its compounds, undetermined, sequela|Toxic effect of chromium and its compounds, undetermined, sequela +C0412994|T037|PS|T56.3|ICD10|Cadmium and its compounds|Cadmium and its compounds +C0412994|T037|PX|T56.3|ICD10|Toxic effect of cadmium and its compounds|Toxic effect of cadmium and its compounds +C0412994|T037|AB|T56.3|ICD10CM|Toxic effects of cadmium and its compounds|Toxic effects of cadmium and its compounds +C0412994|T037|HT|T56.3|ICD10CM|Toxic effects of cadmium and its compounds|Toxic effects of cadmium and its compounds +C0412994|T037|HT|T56.3X|ICD10CM|Toxic effects of cadmium and its compounds|Toxic effects of cadmium and its compounds +C0412994|T037|AB|T56.3X|ICD10CM|Toxic effects of cadmium and its compounds|Toxic effects of cadmium and its compounds +C2884507|T037|AB|T56.3X1|ICD10CM|Toxic effect of cadmium and its compounds, accidental|Toxic effect of cadmium and its compounds, accidental +C2884507|T037|HT|T56.3X1|ICD10CM|Toxic effect of cadmium and its compounds, accidental (unintentional)|Toxic effect of cadmium and its compounds, accidental (unintentional) +C0412994|T037|ET|T56.3X1|ICD10CM|Toxic effects of cadmium and its compounds NOS|Toxic effects of cadmium and its compounds NOS +C2884508|T037|PT|T56.3X1A|ICD10CM|Toxic effect of cadmium and its compounds, accidental (unintentional), initial encounter|Toxic effect of cadmium and its compounds, accidental (unintentional), initial encounter +C2884508|T037|AB|T56.3X1A|ICD10CM|Toxic effect of cadmium and its compounds, accidental, init|Toxic effect of cadmium and its compounds, accidental, init +C2884509|T037|PT|T56.3X1D|ICD10CM|Toxic effect of cadmium and its compounds, accidental (unintentional), subsequent encounter|Toxic effect of cadmium and its compounds, accidental (unintentional), subsequent encounter +C2884509|T037|AB|T56.3X1D|ICD10CM|Toxic effect of cadmium and its compounds, accidental, subs|Toxic effect of cadmium and its compounds, accidental, subs +C2884510|T037|AB|T56.3X1S|ICD10CM|Toxic effect of cadmium and its compounds, acc, sequela|Toxic effect of cadmium and its compounds, acc, sequela +C2884510|T037|PT|T56.3X1S|ICD10CM|Toxic effect of cadmium and its compounds, accidental (unintentional), sequela|Toxic effect of cadmium and its compounds, accidental (unintentional), sequela +C2884511|T037|HT|T56.3X2|ICD10CM|Toxic effect of cadmium and its compounds, intentional self-harm|Toxic effect of cadmium and its compounds, intentional self-harm +C2884511|T037|AB|T56.3X2|ICD10CM|Toxic effect of cadmium and its compounds, self-harm|Toxic effect of cadmium and its compounds, self-harm +C2884512|T037|PT|T56.3X2A|ICD10CM|Toxic effect of cadmium and its compounds, intentional self-harm, initial encounter|Toxic effect of cadmium and its compounds, intentional self-harm, initial encounter +C2884512|T037|AB|T56.3X2A|ICD10CM|Toxic effect of cadmium and its compounds, self-harm, init|Toxic effect of cadmium and its compounds, self-harm, init +C2884513|T037|PT|T56.3X2D|ICD10CM|Toxic effect of cadmium and its compounds, intentional self-harm, subsequent encounter|Toxic effect of cadmium and its compounds, intentional self-harm, subsequent encounter +C2884513|T037|AB|T56.3X2D|ICD10CM|Toxic effect of cadmium and its compounds, self-harm, subs|Toxic effect of cadmium and its compounds, self-harm, subs +C2884514|T037|AB|T56.3X2S|ICD10CM|Toxic effect of cadmium and its compnd, self-harm, sequela|Toxic effect of cadmium and its compnd, self-harm, sequela +C2884514|T037|PT|T56.3X2S|ICD10CM|Toxic effect of cadmium and its compounds, intentional self-harm, sequela|Toxic effect of cadmium and its compounds, intentional self-harm, sequela +C2884515|T037|AB|T56.3X3|ICD10CM|Toxic effect of cadmium and its compounds, assault|Toxic effect of cadmium and its compounds, assault +C2884515|T037|HT|T56.3X3|ICD10CM|Toxic effect of cadmium and its compounds, assault|Toxic effect of cadmium and its compounds, assault +C2884516|T037|AB|T56.3X3A|ICD10CM|Toxic effect of cadmium and its compounds, assault, init|Toxic effect of cadmium and its compounds, assault, init +C2884516|T037|PT|T56.3X3A|ICD10CM|Toxic effect of cadmium and its compounds, assault, initial encounter|Toxic effect of cadmium and its compounds, assault, initial encounter +C2884517|T037|AB|T56.3X3D|ICD10CM|Toxic effect of cadmium and its compounds, assault, subs|Toxic effect of cadmium and its compounds, assault, subs +C2884517|T037|PT|T56.3X3D|ICD10CM|Toxic effect of cadmium and its compounds, assault, subsequent encounter|Toxic effect of cadmium and its compounds, assault, subsequent encounter +C2884518|T037|AB|T56.3X3S|ICD10CM|Toxic effect of cadmium and its compounds, assault, sequela|Toxic effect of cadmium and its compounds, assault, sequela +C2884518|T037|PT|T56.3X3S|ICD10CM|Toxic effect of cadmium and its compounds, assault, sequela|Toxic effect of cadmium and its compounds, assault, sequela +C2884519|T037|AB|T56.3X4|ICD10CM|Toxic effect of cadmium and its compounds, undetermined|Toxic effect of cadmium and its compounds, undetermined +C2884519|T037|HT|T56.3X4|ICD10CM|Toxic effect of cadmium and its compounds, undetermined|Toxic effect of cadmium and its compounds, undetermined +C2884520|T037|AB|T56.3X4A|ICD10CM|Toxic effect of cadmium and its compounds, undet, init|Toxic effect of cadmium and its compounds, undet, init +C2884520|T037|PT|T56.3X4A|ICD10CM|Toxic effect of cadmium and its compounds, undetermined, initial encounter|Toxic effect of cadmium and its compounds, undetermined, initial encounter +C2884521|T037|AB|T56.3X4D|ICD10CM|Toxic effect of cadmium and its compounds, undet, subs|Toxic effect of cadmium and its compounds, undet, subs +C2884521|T037|PT|T56.3X4D|ICD10CM|Toxic effect of cadmium and its compounds, undetermined, subsequent encounter|Toxic effect of cadmium and its compounds, undetermined, subsequent encounter +C2884522|T037|AB|T56.3X4S|ICD10CM|Toxic effect of cadmium and its compounds, undet, sequela|Toxic effect of cadmium and its compounds, undet, sequela +C2884522|T037|PT|T56.3X4S|ICD10CM|Toxic effect of cadmium and its compounds, undetermined, sequela|Toxic effect of cadmium and its compounds, undetermined, sequela +C0497020|T037|PS|T56.4|ICD10|Copper and its compounds|Copper and its compounds +C0497020|T037|PX|T56.4|ICD10|Toxic effect of copper and its compounds|Toxic effect of copper and its compounds +C0497020|T037|AB|T56.4|ICD10CM|Toxic effects of copper and its compounds|Toxic effects of copper and its compounds +C0497020|T037|HT|T56.4|ICD10CM|Toxic effects of copper and its compounds|Toxic effects of copper and its compounds +C0497020|T037|HT|T56.4X|ICD10CM|Toxic effects of copper and its compounds|Toxic effects of copper and its compounds +C0497020|T037|AB|T56.4X|ICD10CM|Toxic effects of copper and its compounds|Toxic effects of copper and its compounds +C2884523|T037|AB|T56.4X1|ICD10CM|Toxic effect of copper and its compounds, accidental|Toxic effect of copper and its compounds, accidental +C2884523|T037|HT|T56.4X1|ICD10CM|Toxic effect of copper and its compounds, accidental (unintentional)|Toxic effect of copper and its compounds, accidental (unintentional) +C0497020|T037|ET|T56.4X1|ICD10CM|Toxic effects of copper and its compounds NOS|Toxic effects of copper and its compounds NOS +C2884524|T037|PT|T56.4X1A|ICD10CM|Toxic effect of copper and its compounds, accidental (unintentional), initial encounter|Toxic effect of copper and its compounds, accidental (unintentional), initial encounter +C2884524|T037|AB|T56.4X1A|ICD10CM|Toxic effect of copper and its compounds, accidental, init|Toxic effect of copper and its compounds, accidental, init +C2884525|T037|PT|T56.4X1D|ICD10CM|Toxic effect of copper and its compounds, accidental (unintentional), subsequent encounter|Toxic effect of copper and its compounds, accidental (unintentional), subsequent encounter +C2884525|T037|AB|T56.4X1D|ICD10CM|Toxic effect of copper and its compounds, accidental, subs|Toxic effect of copper and its compounds, accidental, subs +C2884526|T037|AB|T56.4X1S|ICD10CM|Toxic effect of copper and its compounds, acc, sequela|Toxic effect of copper and its compounds, acc, sequela +C2884526|T037|PT|T56.4X1S|ICD10CM|Toxic effect of copper and its compounds, accidental (unintentional), sequela|Toxic effect of copper and its compounds, accidental (unintentional), sequela +C2884527|T037|HT|T56.4X2|ICD10CM|Toxic effect of copper and its compounds, intentional self-harm|Toxic effect of copper and its compounds, intentional self-harm +C2884527|T037|AB|T56.4X2|ICD10CM|Toxic effect of copper and its compounds, self-harm|Toxic effect of copper and its compounds, self-harm +C2884528|T037|PT|T56.4X2A|ICD10CM|Toxic effect of copper and its compounds, intentional self-harm, initial encounter|Toxic effect of copper and its compounds, intentional self-harm, initial encounter +C2884528|T037|AB|T56.4X2A|ICD10CM|Toxic effect of copper and its compounds, self-harm, init|Toxic effect of copper and its compounds, self-harm, init +C2884529|T037|PT|T56.4X2D|ICD10CM|Toxic effect of copper and its compounds, intentional self-harm, subsequent encounter|Toxic effect of copper and its compounds, intentional self-harm, subsequent encounter +C2884529|T037|AB|T56.4X2D|ICD10CM|Toxic effect of copper and its compounds, self-harm, subs|Toxic effect of copper and its compounds, self-harm, subs +C2884530|T037|PT|T56.4X2S|ICD10CM|Toxic effect of copper and its compounds, intentional self-harm, sequela|Toxic effect of copper and its compounds, intentional self-harm, sequela +C2884530|T037|AB|T56.4X2S|ICD10CM|Toxic effect of copper and its compounds, self-harm, sequela|Toxic effect of copper and its compounds, self-harm, sequela +C2884531|T037|AB|T56.4X3|ICD10CM|Toxic effect of copper and its compounds, assault|Toxic effect of copper and its compounds, assault +C2884531|T037|HT|T56.4X3|ICD10CM|Toxic effect of copper and its compounds, assault|Toxic effect of copper and its compounds, assault +C2884532|T037|AB|T56.4X3A|ICD10CM|Toxic effect of copper and its compounds, assault, init|Toxic effect of copper and its compounds, assault, init +C2884532|T037|PT|T56.4X3A|ICD10CM|Toxic effect of copper and its compounds, assault, initial encounter|Toxic effect of copper and its compounds, assault, initial encounter +C2884533|T037|AB|T56.4X3D|ICD10CM|Toxic effect of copper and its compounds, assault, subs|Toxic effect of copper and its compounds, assault, subs +C2884533|T037|PT|T56.4X3D|ICD10CM|Toxic effect of copper and its compounds, assault, subsequent encounter|Toxic effect of copper and its compounds, assault, subsequent encounter +C2884534|T037|AB|T56.4X3S|ICD10CM|Toxic effect of copper and its compounds, assault, sequela|Toxic effect of copper and its compounds, assault, sequela +C2884534|T037|PT|T56.4X3S|ICD10CM|Toxic effect of copper and its compounds, assault, sequela|Toxic effect of copper and its compounds, assault, sequela +C2884535|T037|AB|T56.4X4|ICD10CM|Toxic effect of copper and its compounds, undetermined|Toxic effect of copper and its compounds, undetermined +C2884535|T037|HT|T56.4X4|ICD10CM|Toxic effect of copper and its compounds, undetermined|Toxic effect of copper and its compounds, undetermined +C2884536|T037|AB|T56.4X4A|ICD10CM|Toxic effect of copper and its compounds, undetermined, init|Toxic effect of copper and its compounds, undetermined, init +C2884536|T037|PT|T56.4X4A|ICD10CM|Toxic effect of copper and its compounds, undetermined, initial encounter|Toxic effect of copper and its compounds, undetermined, initial encounter +C2884537|T037|AB|T56.4X4D|ICD10CM|Toxic effect of copper and its compounds, undetermined, subs|Toxic effect of copper and its compounds, undetermined, subs +C2884537|T037|PT|T56.4X4D|ICD10CM|Toxic effect of copper and its compounds, undetermined, subsequent encounter|Toxic effect of copper and its compounds, undetermined, subsequent encounter +C2884538|T037|AB|T56.4X4S|ICD10CM|Toxic effect of copper and its compounds, undet, sequela|Toxic effect of copper and its compounds, undet, sequela +C2884538|T037|PT|T56.4X4S|ICD10CM|Toxic effect of copper and its compounds, undetermined, sequela|Toxic effect of copper and its compounds, undetermined, sequela +C0497021|T037|PX|T56.5|ICD10|Toxic effect of zinc and its compounds|Toxic effect of zinc and its compounds +C0497021|T037|AB|T56.5|ICD10CM|Toxic effects of zinc and its compounds|Toxic effects of zinc and its compounds +C0497021|T037|HT|T56.5|ICD10CM|Toxic effects of zinc and its compounds|Toxic effects of zinc and its compounds +C0497021|T037|PS|T56.5|ICD10|Zinc and its compounds|Zinc and its compounds +C0497021|T037|HT|T56.5X|ICD10CM|Toxic effects of zinc and its compounds|Toxic effects of zinc and its compounds +C0497021|T037|AB|T56.5X|ICD10CM|Toxic effects of zinc and its compounds|Toxic effects of zinc and its compounds +C2884539|T037|AB|T56.5X1|ICD10CM|Toxic effect of zinc and its compounds, accidental|Toxic effect of zinc and its compounds, accidental +C2884539|T037|HT|T56.5X1|ICD10CM|Toxic effect of zinc and its compounds, accidental (unintentional)|Toxic effect of zinc and its compounds, accidental (unintentional) +C0497021|T037|ET|T56.5X1|ICD10CM|Toxic effects of zinc and its compounds NOS|Toxic effects of zinc and its compounds NOS +C2884540|T037|PT|T56.5X1A|ICD10CM|Toxic effect of zinc and its compounds, accidental (unintentional), initial encounter|Toxic effect of zinc and its compounds, accidental (unintentional), initial encounter +C2884540|T037|AB|T56.5X1A|ICD10CM|Toxic effect of zinc and its compounds, accidental, init|Toxic effect of zinc and its compounds, accidental, init +C2884541|T037|PT|T56.5X1D|ICD10CM|Toxic effect of zinc and its compounds, accidental (unintentional), subsequent encounter|Toxic effect of zinc and its compounds, accidental (unintentional), subsequent encounter +C2884541|T037|AB|T56.5X1D|ICD10CM|Toxic effect of zinc and its compounds, accidental, subs|Toxic effect of zinc and its compounds, accidental, subs +C2884542|T037|PT|T56.5X1S|ICD10CM|Toxic effect of zinc and its compounds, accidental (unintentional), sequela|Toxic effect of zinc and its compounds, accidental (unintentional), sequela +C2884542|T037|AB|T56.5X1S|ICD10CM|Toxic effect of zinc and its compounds, accidental, sequela|Toxic effect of zinc and its compounds, accidental, sequela +C2884543|T037|HT|T56.5X2|ICD10CM|Toxic effect of zinc and its compounds, intentional self-harm|Toxic effect of zinc and its compounds, intentional self-harm +C2884543|T037|AB|T56.5X2|ICD10CM|Toxic effect of zinc and its compounds, self-harm|Toxic effect of zinc and its compounds, self-harm +C2884544|T037|PT|T56.5X2A|ICD10CM|Toxic effect of zinc and its compounds, intentional self-harm, initial encounter|Toxic effect of zinc and its compounds, intentional self-harm, initial encounter +C2884544|T037|AB|T56.5X2A|ICD10CM|Toxic effect of zinc and its compounds, self-harm, init|Toxic effect of zinc and its compounds, self-harm, init +C2884545|T037|PT|T56.5X2D|ICD10CM|Toxic effect of zinc and its compounds, intentional self-harm, subsequent encounter|Toxic effect of zinc and its compounds, intentional self-harm, subsequent encounter +C2884545|T037|AB|T56.5X2D|ICD10CM|Toxic effect of zinc and its compounds, self-harm, subs|Toxic effect of zinc and its compounds, self-harm, subs +C2884546|T037|PT|T56.5X2S|ICD10CM|Toxic effect of zinc and its compounds, intentional self-harm, sequela|Toxic effect of zinc and its compounds, intentional self-harm, sequela +C2884546|T037|AB|T56.5X2S|ICD10CM|Toxic effect of zinc and its compounds, self-harm, sequela|Toxic effect of zinc and its compounds, self-harm, sequela +C2884547|T037|AB|T56.5X3|ICD10CM|Toxic effect of zinc and its compounds, assault|Toxic effect of zinc and its compounds, assault +C2884547|T037|HT|T56.5X3|ICD10CM|Toxic effect of zinc and its compounds, assault|Toxic effect of zinc and its compounds, assault +C2884548|T037|AB|T56.5X3A|ICD10CM|Toxic effect of zinc and its compounds, assault, init encntr|Toxic effect of zinc and its compounds, assault, init encntr +C2884548|T037|PT|T56.5X3A|ICD10CM|Toxic effect of zinc and its compounds, assault, initial encounter|Toxic effect of zinc and its compounds, assault, initial encounter +C2884549|T037|AB|T56.5X3D|ICD10CM|Toxic effect of zinc and its compounds, assault, subs encntr|Toxic effect of zinc and its compounds, assault, subs encntr +C2884549|T037|PT|T56.5X3D|ICD10CM|Toxic effect of zinc and its compounds, assault, subsequent encounter|Toxic effect of zinc and its compounds, assault, subsequent encounter +C2884550|T037|AB|T56.5X3S|ICD10CM|Toxic effect of zinc and its compounds, assault, sequela|Toxic effect of zinc and its compounds, assault, sequela +C2884550|T037|PT|T56.5X3S|ICD10CM|Toxic effect of zinc and its compounds, assault, sequela|Toxic effect of zinc and its compounds, assault, sequela +C2884551|T037|AB|T56.5X4|ICD10CM|Toxic effect of zinc and its compounds, undetermined|Toxic effect of zinc and its compounds, undetermined +C2884551|T037|HT|T56.5X4|ICD10CM|Toxic effect of zinc and its compounds, undetermined|Toxic effect of zinc and its compounds, undetermined +C2884552|T037|AB|T56.5X4A|ICD10CM|Toxic effect of zinc and its compounds, undetermined, init|Toxic effect of zinc and its compounds, undetermined, init +C2884552|T037|PT|T56.5X4A|ICD10CM|Toxic effect of zinc and its compounds, undetermined, initial encounter|Toxic effect of zinc and its compounds, undetermined, initial encounter +C2884553|T037|AB|T56.5X4D|ICD10CM|Toxic effect of zinc and its compounds, undetermined, subs|Toxic effect of zinc and its compounds, undetermined, subs +C2884553|T037|PT|T56.5X4D|ICD10CM|Toxic effect of zinc and its compounds, undetermined, subsequent encounter|Toxic effect of zinc and its compounds, undetermined, subsequent encounter +C2884554|T037|AB|T56.5X4S|ICD10CM|Toxic effect of zinc and its compounds, undet, sequela|Toxic effect of zinc and its compounds, undet, sequela +C2884554|T037|PT|T56.5X4S|ICD10CM|Toxic effect of zinc and its compounds, undetermined, sequela|Toxic effect of zinc and its compounds, undetermined, sequela +C0452173|T037|PS|T56.6|ICD10|Tin and its compounds|Tin and its compounds +C0452173|T037|PX|T56.6|ICD10|Toxic effect of tin and its compounds|Toxic effect of tin and its compounds +C0452173|T037|AB|T56.6|ICD10CM|Toxic effects of tin and its compounds|Toxic effects of tin and its compounds +C0452173|T037|HT|T56.6|ICD10CM|Toxic effects of tin and its compounds|Toxic effects of tin and its compounds +C0452173|T037|HT|T56.6X|ICD10CM|Toxic effects of tin and its compounds|Toxic effects of tin and its compounds +C0452173|T037|AB|T56.6X|ICD10CM|Toxic effects of tin and its compounds|Toxic effects of tin and its compounds +C2884555|T037|AB|T56.6X1|ICD10CM|Toxic effect of tin and its compounds, accidental|Toxic effect of tin and its compounds, accidental +C2884555|T037|HT|T56.6X1|ICD10CM|Toxic effect of tin and its compounds, accidental (unintentional)|Toxic effect of tin and its compounds, accidental (unintentional) +C0452173|T037|ET|T56.6X1|ICD10CM|Toxic effects of tin and its compounds NOS|Toxic effects of tin and its compounds NOS +C2884556|T037|PT|T56.6X1A|ICD10CM|Toxic effect of tin and its compounds, accidental (unintentional), initial encounter|Toxic effect of tin and its compounds, accidental (unintentional), initial encounter +C2884556|T037|AB|T56.6X1A|ICD10CM|Toxic effect of tin and its compounds, accidental, init|Toxic effect of tin and its compounds, accidental, init +C2884557|T037|PT|T56.6X1D|ICD10CM|Toxic effect of tin and its compounds, accidental (unintentional), subsequent encounter|Toxic effect of tin and its compounds, accidental (unintentional), subsequent encounter +C2884557|T037|AB|T56.6X1D|ICD10CM|Toxic effect of tin and its compounds, accidental, subs|Toxic effect of tin and its compounds, accidental, subs +C2884558|T037|PT|T56.6X1S|ICD10CM|Toxic effect of tin and its compounds, accidental (unintentional), sequela|Toxic effect of tin and its compounds, accidental (unintentional), sequela +C2884558|T037|AB|T56.6X1S|ICD10CM|Toxic effect of tin and its compounds, accidental, sequela|Toxic effect of tin and its compounds, accidental, sequela +C2884559|T037|AB|T56.6X2|ICD10CM|Toxic effect of tin and its compounds, intentional self-harm|Toxic effect of tin and its compounds, intentional self-harm +C2884559|T037|HT|T56.6X2|ICD10CM|Toxic effect of tin and its compounds, intentional self-harm|Toxic effect of tin and its compounds, intentional self-harm +C2884560|T037|PT|T56.6X2A|ICD10CM|Toxic effect of tin and its compounds, intentional self-harm, initial encounter|Toxic effect of tin and its compounds, intentional self-harm, initial encounter +C2884560|T037|AB|T56.6X2A|ICD10CM|Toxic effect of tin and its compounds, self-harm, init|Toxic effect of tin and its compounds, self-harm, init +C2884561|T037|PT|T56.6X2D|ICD10CM|Toxic effect of tin and its compounds, intentional self-harm, subsequent encounter|Toxic effect of tin and its compounds, intentional self-harm, subsequent encounter +C2884561|T037|AB|T56.6X2D|ICD10CM|Toxic effect of tin and its compounds, self-harm, subs|Toxic effect of tin and its compounds, self-harm, subs +C2884562|T037|PT|T56.6X2S|ICD10CM|Toxic effect of tin and its compounds, intentional self-harm, sequela|Toxic effect of tin and its compounds, intentional self-harm, sequela +C2884562|T037|AB|T56.6X2S|ICD10CM|Toxic effect of tin and its compounds, self-harm, sequela|Toxic effect of tin and its compounds, self-harm, sequela +C2884563|T037|AB|T56.6X3|ICD10CM|Toxic effect of tin and its compounds, assault|Toxic effect of tin and its compounds, assault +C2884563|T037|HT|T56.6X3|ICD10CM|Toxic effect of tin and its compounds, assault|Toxic effect of tin and its compounds, assault +C2884564|T037|AB|T56.6X3A|ICD10CM|Toxic effect of tin and its compounds, assault, init encntr|Toxic effect of tin and its compounds, assault, init encntr +C2884564|T037|PT|T56.6X3A|ICD10CM|Toxic effect of tin and its compounds, assault, initial encounter|Toxic effect of tin and its compounds, assault, initial encounter +C2884565|T037|AB|T56.6X3D|ICD10CM|Toxic effect of tin and its compounds, assault, subs encntr|Toxic effect of tin and its compounds, assault, subs encntr +C2884565|T037|PT|T56.6X3D|ICD10CM|Toxic effect of tin and its compounds, assault, subsequent encounter|Toxic effect of tin and its compounds, assault, subsequent encounter +C2884566|T037|AB|T56.6X3S|ICD10CM|Toxic effect of tin and its compounds, assault, sequela|Toxic effect of tin and its compounds, assault, sequela +C2884566|T037|PT|T56.6X3S|ICD10CM|Toxic effect of tin and its compounds, assault, sequela|Toxic effect of tin and its compounds, assault, sequela +C2884567|T037|AB|T56.6X4|ICD10CM|Toxic effect of tin and its compounds, undetermined|Toxic effect of tin and its compounds, undetermined +C2884567|T037|HT|T56.6X4|ICD10CM|Toxic effect of tin and its compounds, undetermined|Toxic effect of tin and its compounds, undetermined +C2884568|T037|AB|T56.6X4A|ICD10CM|Toxic effect of tin and its compounds, undetermined, init|Toxic effect of tin and its compounds, undetermined, init +C2884568|T037|PT|T56.6X4A|ICD10CM|Toxic effect of tin and its compounds, undetermined, initial encounter|Toxic effect of tin and its compounds, undetermined, initial encounter +C2884569|T037|AB|T56.6X4D|ICD10CM|Toxic effect of tin and its compounds, undetermined, subs|Toxic effect of tin and its compounds, undetermined, subs +C2884569|T037|PT|T56.6X4D|ICD10CM|Toxic effect of tin and its compounds, undetermined, subsequent encounter|Toxic effect of tin and its compounds, undetermined, subsequent encounter +C2884570|T037|AB|T56.6X4S|ICD10CM|Toxic effect of tin and its compounds, undetermined, sequela|Toxic effect of tin and its compounds, undetermined, sequela +C2884570|T037|PT|T56.6X4S|ICD10CM|Toxic effect of tin and its compounds, undetermined, sequela|Toxic effect of tin and its compounds, undetermined, sequela +C0412992|T037|PS|T56.7|ICD10|Beryllium and its compounds|Beryllium and its compounds +C0412992|T037|PX|T56.7|ICD10|Toxic effect of beryllium and its compounds|Toxic effect of beryllium and its compounds +C0412992|T037|AB|T56.7|ICD10CM|Toxic effects of beryllium and its compounds|Toxic effects of beryllium and its compounds +C0412992|T037|HT|T56.7|ICD10CM|Toxic effects of beryllium and its compounds|Toxic effects of beryllium and its compounds +C0412992|T037|HT|T56.7X|ICD10CM|Toxic effects of beryllium and its compounds|Toxic effects of beryllium and its compounds +C0412992|T037|AB|T56.7X|ICD10CM|Toxic effects of beryllium and its compounds|Toxic effects of beryllium and its compounds +C2884571|T037|AB|T56.7X1|ICD10CM|Toxic effect of beryllium and its compounds, accidental|Toxic effect of beryllium and its compounds, accidental +C2884571|T037|HT|T56.7X1|ICD10CM|Toxic effect of beryllium and its compounds, accidental (unintentional)|Toxic effect of beryllium and its compounds, accidental (unintentional) +C0412992|T037|ET|T56.7X1|ICD10CM|Toxic effects of beryllium and its compounds NOS|Toxic effects of beryllium and its compounds NOS +C2884572|T037|AB|T56.7X1A|ICD10CM|Toxic effect of beryllium and its compounds, acc, init|Toxic effect of beryllium and its compounds, acc, init +C2884572|T037|PT|T56.7X1A|ICD10CM|Toxic effect of beryllium and its compounds, accidental (unintentional), initial encounter|Toxic effect of beryllium and its compounds, accidental (unintentional), initial encounter +C2884573|T037|AB|T56.7X1D|ICD10CM|Toxic effect of beryllium and its compounds, acc, subs|Toxic effect of beryllium and its compounds, acc, subs +C2884573|T037|PT|T56.7X1D|ICD10CM|Toxic effect of beryllium and its compounds, accidental (unintentional), subsequent encounter|Toxic effect of beryllium and its compounds, accidental (unintentional), subsequent encounter +C2884574|T037|AB|T56.7X1S|ICD10CM|Toxic effect of beryllium and its compounds, acc, sequela|Toxic effect of beryllium and its compounds, acc, sequela +C2884574|T037|PT|T56.7X1S|ICD10CM|Toxic effect of beryllium and its compounds, accidental (unintentional), sequela|Toxic effect of beryllium and its compounds, accidental (unintentional), sequela +C2884575|T037|HT|T56.7X2|ICD10CM|Toxic effect of beryllium and its compounds, intentional self-harm|Toxic effect of beryllium and its compounds, intentional self-harm +C2884575|T037|AB|T56.7X2|ICD10CM|Toxic effect of beryllium and its compounds, self-harm|Toxic effect of beryllium and its compounds, self-harm +C2884576|T037|PT|T56.7X2A|ICD10CM|Toxic effect of beryllium and its compounds, intentional self-harm, initial encounter|Toxic effect of beryllium and its compounds, intentional self-harm, initial encounter +C2884576|T037|AB|T56.7X2A|ICD10CM|Toxic effect of beryllium and its compounds, self-harm, init|Toxic effect of beryllium and its compounds, self-harm, init +C2884577|T037|PT|T56.7X2D|ICD10CM|Toxic effect of beryllium and its compounds, intentional self-harm, subsequent encounter|Toxic effect of beryllium and its compounds, intentional self-harm, subsequent encounter +C2884577|T037|AB|T56.7X2D|ICD10CM|Toxic effect of beryllium and its compounds, self-harm, subs|Toxic effect of beryllium and its compounds, self-harm, subs +C2884578|T037|AB|T56.7X2S|ICD10CM|Toxic effect of beryllium and its compnd, self-harm, sequela|Toxic effect of beryllium and its compnd, self-harm, sequela +C2884578|T037|PT|T56.7X2S|ICD10CM|Toxic effect of beryllium and its compounds, intentional self-harm, sequela|Toxic effect of beryllium and its compounds, intentional self-harm, sequela +C2884579|T037|AB|T56.7X3|ICD10CM|Toxic effect of beryllium and its compounds, assault|Toxic effect of beryllium and its compounds, assault +C2884579|T037|HT|T56.7X3|ICD10CM|Toxic effect of beryllium and its compounds, assault|Toxic effect of beryllium and its compounds, assault +C2884580|T037|AB|T56.7X3A|ICD10CM|Toxic effect of beryllium and its compounds, assault, init|Toxic effect of beryllium and its compounds, assault, init +C2884580|T037|PT|T56.7X3A|ICD10CM|Toxic effect of beryllium and its compounds, assault, initial encounter|Toxic effect of beryllium and its compounds, assault, initial encounter +C2884581|T037|AB|T56.7X3D|ICD10CM|Toxic effect of beryllium and its compounds, assault, subs|Toxic effect of beryllium and its compounds, assault, subs +C2884581|T037|PT|T56.7X3D|ICD10CM|Toxic effect of beryllium and its compounds, assault, subsequent encounter|Toxic effect of beryllium and its compounds, assault, subsequent encounter +C2884582|T037|AB|T56.7X3S|ICD10CM|Toxic effect of beryllium and its compnd, assault, sequela|Toxic effect of beryllium and its compnd, assault, sequela +C2884582|T037|PT|T56.7X3S|ICD10CM|Toxic effect of beryllium and its compounds, assault, sequela|Toxic effect of beryllium and its compounds, assault, sequela +C2884583|T037|AB|T56.7X4|ICD10CM|Toxic effect of beryllium and its compounds, undetermined|Toxic effect of beryllium and its compounds, undetermined +C2884583|T037|HT|T56.7X4|ICD10CM|Toxic effect of beryllium and its compounds, undetermined|Toxic effect of beryllium and its compounds, undetermined +C2884584|T037|AB|T56.7X4A|ICD10CM|Toxic effect of beryllium and its compounds, undet, init|Toxic effect of beryllium and its compounds, undet, init +C2884584|T037|PT|T56.7X4A|ICD10CM|Toxic effect of beryllium and its compounds, undetermined, initial encounter|Toxic effect of beryllium and its compounds, undetermined, initial encounter +C2884585|T037|AB|T56.7X4D|ICD10CM|Toxic effect of beryllium and its compounds, undet, subs|Toxic effect of beryllium and its compounds, undet, subs +C2884585|T037|PT|T56.7X4D|ICD10CM|Toxic effect of beryllium and its compounds, undetermined, subsequent encounter|Toxic effect of beryllium and its compounds, undetermined, subsequent encounter +C2884586|T037|AB|T56.7X4S|ICD10CM|Toxic effect of beryllium and its compounds, undet, sequela|Toxic effect of beryllium and its compounds, undet, sequela +C2884586|T037|PT|T56.7X4S|ICD10CM|Toxic effect of beryllium and its compounds, undetermined, sequela|Toxic effect of beryllium and its compounds, undetermined, sequela +C0274869|T037|PS|T56.8|ICD10|Other metals|Other metals +C0274869|T037|PX|T56.8|ICD10|Toxic effect of other metals|Toxic effect of other metals +C0274869|T037|HT|T56.8|ICD10CM|Toxic effects of other metals|Toxic effects of other metals +C0274869|T037|AB|T56.8|ICD10CM|Toxic effects of other metals|Toxic effects of other metals +C2884587|T037|AB|T56.81|ICD10CM|Toxic effect of thallium|Toxic effect of thallium +C2884587|T037|HT|T56.81|ICD10CM|Toxic effect of thallium|Toxic effect of thallium +C2884587|T037|ET|T56.811|ICD10CM|Toxic effect of thallium NOS|Toxic effect of thallium NOS +C2884588|T037|AB|T56.811|ICD10CM|Toxic effect of thallium, accidental (unintentional)|Toxic effect of thallium, accidental (unintentional) +C2884588|T037|HT|T56.811|ICD10CM|Toxic effect of thallium, accidental (unintentional)|Toxic effect of thallium, accidental (unintentional) +C2884589|T037|AB|T56.811A|ICD10CM|Toxic effect of thallium, accidental (unintentional), init|Toxic effect of thallium, accidental (unintentional), init +C2884589|T037|PT|T56.811A|ICD10CM|Toxic effect of thallium, accidental (unintentional), initial encounter|Toxic effect of thallium, accidental (unintentional), initial encounter +C2884590|T037|AB|T56.811D|ICD10CM|Toxic effect of thallium, accidental (unintentional), subs|Toxic effect of thallium, accidental (unintentional), subs +C2884590|T037|PT|T56.811D|ICD10CM|Toxic effect of thallium, accidental (unintentional), subsequent encounter|Toxic effect of thallium, accidental (unintentional), subsequent encounter +C2884591|T037|PT|T56.811S|ICD10CM|Toxic effect of thallium, accidental (unintentional), sequela|Toxic effect of thallium, accidental (unintentional), sequela +C2884591|T037|AB|T56.811S|ICD10CM|Toxic effect of thallium, accidental, sequela|Toxic effect of thallium, accidental, sequela +C2884592|T037|AB|T56.812|ICD10CM|Toxic effect of thallium, intentional self-harm|Toxic effect of thallium, intentional self-harm +C2884592|T037|HT|T56.812|ICD10CM|Toxic effect of thallium, intentional self-harm|Toxic effect of thallium, intentional self-harm +C2884593|T037|AB|T56.812A|ICD10CM|Toxic effect of thallium, intentional self-harm, init encntr|Toxic effect of thallium, intentional self-harm, init encntr +C2884593|T037|PT|T56.812A|ICD10CM|Toxic effect of thallium, intentional self-harm, initial encounter|Toxic effect of thallium, intentional self-harm, initial encounter +C2884594|T037|AB|T56.812D|ICD10CM|Toxic effect of thallium, intentional self-harm, subs encntr|Toxic effect of thallium, intentional self-harm, subs encntr +C2884594|T037|PT|T56.812D|ICD10CM|Toxic effect of thallium, intentional self-harm, subsequent encounter|Toxic effect of thallium, intentional self-harm, subsequent encounter +C2884595|T037|AB|T56.812S|ICD10CM|Toxic effect of thallium, intentional self-harm, sequela|Toxic effect of thallium, intentional self-harm, sequela +C2884595|T037|PT|T56.812S|ICD10CM|Toxic effect of thallium, intentional self-harm, sequela|Toxic effect of thallium, intentional self-harm, sequela +C2884596|T037|AB|T56.813|ICD10CM|Toxic effect of thallium, assault|Toxic effect of thallium, assault +C2884596|T037|HT|T56.813|ICD10CM|Toxic effect of thallium, assault|Toxic effect of thallium, assault +C2884597|T037|AB|T56.813A|ICD10CM|Toxic effect of thallium, assault, initial encounter|Toxic effect of thallium, assault, initial encounter +C2884597|T037|PT|T56.813A|ICD10CM|Toxic effect of thallium, assault, initial encounter|Toxic effect of thallium, assault, initial encounter +C2884598|T037|AB|T56.813D|ICD10CM|Toxic effect of thallium, assault, subsequent encounter|Toxic effect of thallium, assault, subsequent encounter +C2884598|T037|PT|T56.813D|ICD10CM|Toxic effect of thallium, assault, subsequent encounter|Toxic effect of thallium, assault, subsequent encounter +C2884599|T037|AB|T56.813S|ICD10CM|Toxic effect of thallium, assault, sequela|Toxic effect of thallium, assault, sequela +C2884599|T037|PT|T56.813S|ICD10CM|Toxic effect of thallium, assault, sequela|Toxic effect of thallium, assault, sequela +C2884600|T037|AB|T56.814|ICD10CM|Toxic effect of thallium, undetermined|Toxic effect of thallium, undetermined +C2884600|T037|HT|T56.814|ICD10CM|Toxic effect of thallium, undetermined|Toxic effect of thallium, undetermined +C2884601|T037|AB|T56.814A|ICD10CM|Toxic effect of thallium, undetermined, initial encounter|Toxic effect of thallium, undetermined, initial encounter +C2884601|T037|PT|T56.814A|ICD10CM|Toxic effect of thallium, undetermined, initial encounter|Toxic effect of thallium, undetermined, initial encounter +C2884602|T037|AB|T56.814D|ICD10CM|Toxic effect of thallium, undetermined, subsequent encounter|Toxic effect of thallium, undetermined, subsequent encounter +C2884602|T037|PT|T56.814D|ICD10CM|Toxic effect of thallium, undetermined, subsequent encounter|Toxic effect of thallium, undetermined, subsequent encounter +C2884603|T037|AB|T56.814S|ICD10CM|Toxic effect of thallium, undetermined, sequela|Toxic effect of thallium, undetermined, sequela +C2884603|T037|PT|T56.814S|ICD10CM|Toxic effect of thallium, undetermined, sequela|Toxic effect of thallium, undetermined, sequela +C0274869|T037|AB|T56.89|ICD10CM|Toxic effects of other metals|Toxic effects of other metals +C0274869|T037|HT|T56.89|ICD10CM|Toxic effects of other metals|Toxic effects of other metals +C2884604|T037|AB|T56.891|ICD10CM|Toxic effect of other metals, accidental (unintentional)|Toxic effect of other metals, accidental (unintentional) +C2884604|T037|HT|T56.891|ICD10CM|Toxic effect of other metals, accidental (unintentional)|Toxic effect of other metals, accidental (unintentional) +C0274869|T037|ET|T56.891|ICD10CM|Toxic effects of other metals NOS|Toxic effects of other metals NOS +C2884605|T037|AB|T56.891A|ICD10CM|Toxic effect of oth metals, accidental (unintentional), init|Toxic effect of oth metals, accidental (unintentional), init +C2884605|T037|PT|T56.891A|ICD10CM|Toxic effect of other metals, accidental (unintentional), initial encounter|Toxic effect of other metals, accidental (unintentional), initial encounter +C2884606|T037|AB|T56.891D|ICD10CM|Toxic effect of oth metals, accidental (unintentional), subs|Toxic effect of oth metals, accidental (unintentional), subs +C2884606|T037|PT|T56.891D|ICD10CM|Toxic effect of other metals, accidental (unintentional), subsequent encounter|Toxic effect of other metals, accidental (unintentional), subsequent encounter +C2884607|T037|AB|T56.891S|ICD10CM|Toxic effect of metals, accidental (unintentional), sequela|Toxic effect of metals, accidental (unintentional), sequela +C2884607|T037|PT|T56.891S|ICD10CM|Toxic effect of other metals, accidental (unintentional), sequela|Toxic effect of other metals, accidental (unintentional), sequela +C2884608|T037|AB|T56.892|ICD10CM|Toxic effect of other metals, intentional self-harm|Toxic effect of other metals, intentional self-harm +C2884608|T037|HT|T56.892|ICD10CM|Toxic effect of other metals, intentional self-harm|Toxic effect of other metals, intentional self-harm +C2884609|T037|AB|T56.892A|ICD10CM|Toxic effect of oth metals, intentional self-harm, init|Toxic effect of oth metals, intentional self-harm, init +C2884609|T037|PT|T56.892A|ICD10CM|Toxic effect of other metals, intentional self-harm, initial encounter|Toxic effect of other metals, intentional self-harm, initial encounter +C2884610|T037|AB|T56.892D|ICD10CM|Toxic effect of oth metals, intentional self-harm, subs|Toxic effect of oth metals, intentional self-harm, subs +C2884610|T037|PT|T56.892D|ICD10CM|Toxic effect of other metals, intentional self-harm, subsequent encounter|Toxic effect of other metals, intentional self-harm, subsequent encounter +C2884611|T037|AB|T56.892S|ICD10CM|Toxic effect of other metals, intentional self-harm, sequela|Toxic effect of other metals, intentional self-harm, sequela +C2884611|T037|PT|T56.892S|ICD10CM|Toxic effect of other metals, intentional self-harm, sequela|Toxic effect of other metals, intentional self-harm, sequela +C2884612|T037|AB|T56.893|ICD10CM|Toxic effect of other metals, assault|Toxic effect of other metals, assault +C2884612|T037|HT|T56.893|ICD10CM|Toxic effect of other metals, assault|Toxic effect of other metals, assault +C2884613|T037|AB|T56.893A|ICD10CM|Toxic effect of other metals, assault, initial encounter|Toxic effect of other metals, assault, initial encounter +C2884613|T037|PT|T56.893A|ICD10CM|Toxic effect of other metals, assault, initial encounter|Toxic effect of other metals, assault, initial encounter +C2884614|T037|AB|T56.893D|ICD10CM|Toxic effect of other metals, assault, subsequent encounter|Toxic effect of other metals, assault, subsequent encounter +C2884614|T037|PT|T56.893D|ICD10CM|Toxic effect of other metals, assault, subsequent encounter|Toxic effect of other metals, assault, subsequent encounter +C2884615|T037|AB|T56.893S|ICD10CM|Toxic effect of other metals, assault, sequela|Toxic effect of other metals, assault, sequela +C2884615|T037|PT|T56.893S|ICD10CM|Toxic effect of other metals, assault, sequela|Toxic effect of other metals, assault, sequela +C2884616|T037|AB|T56.894|ICD10CM|Toxic effect of other metals, undetermined|Toxic effect of other metals, undetermined +C2884616|T037|HT|T56.894|ICD10CM|Toxic effect of other metals, undetermined|Toxic effect of other metals, undetermined +C2884617|T037|AB|T56.894A|ICD10CM|Toxic effect of other metals, undetermined, init encntr|Toxic effect of other metals, undetermined, init encntr +C2884617|T037|PT|T56.894A|ICD10CM|Toxic effect of other metals, undetermined, initial encounter|Toxic effect of other metals, undetermined, initial encounter +C2884618|T037|AB|T56.894D|ICD10CM|Toxic effect of other metals, undetermined, subs encntr|Toxic effect of other metals, undetermined, subs encntr +C2884618|T037|PT|T56.894D|ICD10CM|Toxic effect of other metals, undetermined, subsequent encounter|Toxic effect of other metals, undetermined, subsequent encounter +C2884619|T037|AB|T56.894S|ICD10CM|Toxic effect of other metals, undetermined, sequela|Toxic effect of other metals, undetermined, sequela +C2884619|T037|PT|T56.894S|ICD10CM|Toxic effect of other metals, undetermined, sequela|Toxic effect of other metals, undetermined, sequela +C0161709|T037|PS|T56.9|ICD10|Metal, unspecified|Metal, unspecified +C0161709|T037|PX|T56.9|ICD10|Toxic effect of metal, unspecified|Toxic effect of metal, unspecified +C0161709|T037|AB|T56.9|ICD10CM|Toxic effects of unspecified metal|Toxic effects of unspecified metal +C0161709|T037|HT|T56.9|ICD10CM|Toxic effects of unspecified metal|Toxic effects of unspecified metal +C2884620|T037|AB|T56.91|ICD10CM|Toxic effect of unsp metal, accidental (unintentional)|Toxic effect of unsp metal, accidental (unintentional) +C2884620|T037|HT|T56.91|ICD10CM|Toxic effect of unspecified metal, accidental (unintentional)|Toxic effect of unspecified metal, accidental (unintentional) +C2884621|T037|AB|T56.91XA|ICD10CM|Toxic effect of unsp metal, accidental (unintentional), init|Toxic effect of unsp metal, accidental (unintentional), init +C2884621|T037|PT|T56.91XA|ICD10CM|Toxic effect of unspecified metal, accidental (unintentional), initial encounter|Toxic effect of unspecified metal, accidental (unintentional), initial encounter +C2884622|T037|AB|T56.91XD|ICD10CM|Toxic effect of unsp metal, accidental (unintentional), subs|Toxic effect of unsp metal, accidental (unintentional), subs +C2884622|T037|PT|T56.91XD|ICD10CM|Toxic effect of unspecified metal, accidental (unintentional), subsequent encounter|Toxic effect of unspecified metal, accidental (unintentional), subsequent encounter +C2884623|T037|AB|T56.91XS|ICD10CM|Toxic effect of unsp metal, accidental, sequela|Toxic effect of unsp metal, accidental, sequela +C2884623|T037|PT|T56.91XS|ICD10CM|Toxic effect of unspecified metal, accidental (unintentional), sequela|Toxic effect of unspecified metal, accidental (unintentional), sequela +C2884624|T037|AB|T56.92|ICD10CM|Toxic effect of unspecified metal, intentional self-harm|Toxic effect of unspecified metal, intentional self-harm +C2884624|T037|HT|T56.92|ICD10CM|Toxic effect of unspecified metal, intentional self-harm|Toxic effect of unspecified metal, intentional self-harm +C2884625|T037|AB|T56.92XA|ICD10CM|Toxic effect of unsp metal, intentional self-harm, init|Toxic effect of unsp metal, intentional self-harm, init +C2884625|T037|PT|T56.92XA|ICD10CM|Toxic effect of unspecified metal, intentional self-harm, initial encounter|Toxic effect of unspecified metal, intentional self-harm, initial encounter +C2884626|T037|AB|T56.92XD|ICD10CM|Toxic effect of unsp metal, intentional self-harm, subs|Toxic effect of unsp metal, intentional self-harm, subs +C2884626|T037|PT|T56.92XD|ICD10CM|Toxic effect of unspecified metal, intentional self-harm, subsequent encounter|Toxic effect of unspecified metal, intentional self-harm, subsequent encounter +C2884627|T037|AB|T56.92XS|ICD10CM|Toxic effect of unsp metal, intentional self-harm, sequela|Toxic effect of unsp metal, intentional self-harm, sequela +C2884627|T037|PT|T56.92XS|ICD10CM|Toxic effect of unspecified metal, intentional self-harm, sequela|Toxic effect of unspecified metal, intentional self-harm, sequela +C2884628|T037|AB|T56.93|ICD10CM|Toxic effect of unspecified metal, assault|Toxic effect of unspecified metal, assault +C2884628|T037|HT|T56.93|ICD10CM|Toxic effect of unspecified metal, assault|Toxic effect of unspecified metal, assault +C2884629|T037|AB|T56.93XA|ICD10CM|Toxic effect of unspecified metal, assault, init encntr|Toxic effect of unspecified metal, assault, init encntr +C2884629|T037|PT|T56.93XA|ICD10CM|Toxic effect of unspecified metal, assault, initial encounter|Toxic effect of unspecified metal, assault, initial encounter +C2884630|T037|AB|T56.93XD|ICD10CM|Toxic effect of unspecified metal, assault, subs encntr|Toxic effect of unspecified metal, assault, subs encntr +C2884630|T037|PT|T56.93XD|ICD10CM|Toxic effect of unspecified metal, assault, subsequent encounter|Toxic effect of unspecified metal, assault, subsequent encounter +C2884631|T037|AB|T56.93XS|ICD10CM|Toxic effect of unspecified metal, assault, sequela|Toxic effect of unspecified metal, assault, sequela +C2884631|T037|PT|T56.93XS|ICD10CM|Toxic effect of unspecified metal, assault, sequela|Toxic effect of unspecified metal, assault, sequela +C2884632|T037|AB|T56.94|ICD10CM|Toxic effect of unspecified metal, undetermined|Toxic effect of unspecified metal, undetermined +C2884632|T037|HT|T56.94|ICD10CM|Toxic effect of unspecified metal, undetermined|Toxic effect of unspecified metal, undetermined +C2884633|T037|AB|T56.94XA|ICD10CM|Toxic effect of unspecified metal, undetermined, init encntr|Toxic effect of unspecified metal, undetermined, init encntr +C2884633|T037|PT|T56.94XA|ICD10CM|Toxic effect of unspecified metal, undetermined, initial encounter|Toxic effect of unspecified metal, undetermined, initial encounter +C2884634|T037|AB|T56.94XD|ICD10CM|Toxic effect of unspecified metal, undetermined, subs encntr|Toxic effect of unspecified metal, undetermined, subs encntr +C2884634|T037|PT|T56.94XD|ICD10CM|Toxic effect of unspecified metal, undetermined, subsequent encounter|Toxic effect of unspecified metal, undetermined, subsequent encounter +C2884635|T037|AB|T56.94XS|ICD10CM|Toxic effect of unspecified metal, undetermined, sequela|Toxic effect of unspecified metal, undetermined, sequela +C2884635|T037|PT|T56.94XS|ICD10CM|Toxic effect of unspecified metal, undetermined, sequela|Toxic effect of unspecified metal, undetermined, sequela +C0496103|T037|AB|T57|ICD10CM|Toxic effect of other inorganic substances|Toxic effect of other inorganic substances +C0496103|T037|HT|T57|ICD10CM|Toxic effect of other inorganic substances|Toxic effect of other inorganic substances +C0496103|T037|HT|T57|ICD10|Toxic effect of other inorganic substances|Toxic effect of other inorganic substances +C0311375|T037|PS|T57.0|ICD10|Arsenic and its compounds|Arsenic and its compounds +C0311375|T037|PX|T57.0|ICD10|Toxic effect of arsenic and its compounds|Toxic effect of arsenic and its compounds +C0311375|T037|HT|T57.0|ICD10CM|Toxic effect of arsenic and its compounds|Toxic effect of arsenic and its compounds +C0311375|T037|AB|T57.0|ICD10CM|Toxic effect of arsenic and its compounds|Toxic effect of arsenic and its compounds +C0311375|T037|HT|T57.0X|ICD10CM|Toxic effect of arsenic and its compounds|Toxic effect of arsenic and its compounds +C0311375|T037|AB|T57.0X|ICD10CM|Toxic effect of arsenic and its compounds|Toxic effect of arsenic and its compounds +C0311375|T037|ET|T57.0X1|ICD10CM|Toxic effect of arsenic and its compounds NOS|Toxic effect of arsenic and its compounds NOS +C2884636|T037|AB|T57.0X1|ICD10CM|Toxic effect of arsenic and its compounds, accidental|Toxic effect of arsenic and its compounds, accidental +C2884636|T037|HT|T57.0X1|ICD10CM|Toxic effect of arsenic and its compounds, accidental (unintentional)|Toxic effect of arsenic and its compounds, accidental (unintentional) +C2884637|T037|PT|T57.0X1A|ICD10CM|Toxic effect of arsenic and its compounds, accidental (unintentional), initial encounter|Toxic effect of arsenic and its compounds, accidental (unintentional), initial encounter +C2884637|T037|AB|T57.0X1A|ICD10CM|Toxic effect of arsenic and its compounds, accidental, init|Toxic effect of arsenic and its compounds, accidental, init +C2884638|T037|PT|T57.0X1D|ICD10CM|Toxic effect of arsenic and its compounds, accidental (unintentional), subsequent encounter|Toxic effect of arsenic and its compounds, accidental (unintentional), subsequent encounter +C2884638|T037|AB|T57.0X1D|ICD10CM|Toxic effect of arsenic and its compounds, accidental, subs|Toxic effect of arsenic and its compounds, accidental, subs +C2884639|T037|AB|T57.0X1S|ICD10CM|Toxic effect of arsenic and its compounds, acc, sequela|Toxic effect of arsenic and its compounds, acc, sequela +C2884639|T037|PT|T57.0X1S|ICD10CM|Toxic effect of arsenic and its compounds, accidental (unintentional), sequela|Toxic effect of arsenic and its compounds, accidental (unintentional), sequela +C2884640|T037|HT|T57.0X2|ICD10CM|Toxic effect of arsenic and its compounds, intentional self-harm|Toxic effect of arsenic and its compounds, intentional self-harm +C2884640|T037|AB|T57.0X2|ICD10CM|Toxic effect of arsenic and its compounds, self-harm|Toxic effect of arsenic and its compounds, self-harm +C2884641|T037|PT|T57.0X2A|ICD10CM|Toxic effect of arsenic and its compounds, intentional self-harm, initial encounter|Toxic effect of arsenic and its compounds, intentional self-harm, initial encounter +C2884641|T037|AB|T57.0X2A|ICD10CM|Toxic effect of arsenic and its compounds, self-harm, init|Toxic effect of arsenic and its compounds, self-harm, init +C2884642|T037|PT|T57.0X2D|ICD10CM|Toxic effect of arsenic and its compounds, intentional self-harm, subsequent encounter|Toxic effect of arsenic and its compounds, intentional self-harm, subsequent encounter +C2884642|T037|AB|T57.0X2D|ICD10CM|Toxic effect of arsenic and its compounds, self-harm, subs|Toxic effect of arsenic and its compounds, self-harm, subs +C2884643|T037|AB|T57.0X2S|ICD10CM|Toxic effect of arsenic and its compnd, self-harm, sequela|Toxic effect of arsenic and its compnd, self-harm, sequela +C2884643|T037|PT|T57.0X2S|ICD10CM|Toxic effect of arsenic and its compounds, intentional self-harm, sequela|Toxic effect of arsenic and its compounds, intentional self-harm, sequela +C2884644|T037|AB|T57.0X3|ICD10CM|Toxic effect of arsenic and its compounds, assault|Toxic effect of arsenic and its compounds, assault +C2884644|T037|HT|T57.0X3|ICD10CM|Toxic effect of arsenic and its compounds, assault|Toxic effect of arsenic and its compounds, assault +C2884645|T037|AB|T57.0X3A|ICD10CM|Toxic effect of arsenic and its compounds, assault, init|Toxic effect of arsenic and its compounds, assault, init +C2884645|T037|PT|T57.0X3A|ICD10CM|Toxic effect of arsenic and its compounds, assault, initial encounter|Toxic effect of arsenic and its compounds, assault, initial encounter +C2884646|T037|AB|T57.0X3D|ICD10CM|Toxic effect of arsenic and its compounds, assault, subs|Toxic effect of arsenic and its compounds, assault, subs +C2884646|T037|PT|T57.0X3D|ICD10CM|Toxic effect of arsenic and its compounds, assault, subsequent encounter|Toxic effect of arsenic and its compounds, assault, subsequent encounter +C2884647|T037|AB|T57.0X3S|ICD10CM|Toxic effect of arsenic and its compounds, assault, sequela|Toxic effect of arsenic and its compounds, assault, sequela +C2884647|T037|PT|T57.0X3S|ICD10CM|Toxic effect of arsenic and its compounds, assault, sequela|Toxic effect of arsenic and its compounds, assault, sequela +C2884648|T037|AB|T57.0X4|ICD10CM|Toxic effect of arsenic and its compounds, undetermined|Toxic effect of arsenic and its compounds, undetermined +C2884648|T037|HT|T57.0X4|ICD10CM|Toxic effect of arsenic and its compounds, undetermined|Toxic effect of arsenic and its compounds, undetermined +C2884649|T037|AB|T57.0X4A|ICD10CM|Toxic effect of arsenic and its compounds, undet, init|Toxic effect of arsenic and its compounds, undet, init +C2884649|T037|PT|T57.0X4A|ICD10CM|Toxic effect of arsenic and its compounds, undetermined, initial encounter|Toxic effect of arsenic and its compounds, undetermined, initial encounter +C2884650|T037|AB|T57.0X4D|ICD10CM|Toxic effect of arsenic and its compounds, undet, subs|Toxic effect of arsenic and its compounds, undet, subs +C2884650|T037|PT|T57.0X4D|ICD10CM|Toxic effect of arsenic and its compounds, undetermined, subsequent encounter|Toxic effect of arsenic and its compounds, undetermined, subsequent encounter +C2884651|T037|AB|T57.0X4S|ICD10CM|Toxic effect of arsenic and its compounds, undet, sequela|Toxic effect of arsenic and its compounds, undet, sequela +C2884651|T037|PT|T57.0X4S|ICD10CM|Toxic effect of arsenic and its compounds, undetermined, sequela|Toxic effect of arsenic and its compounds, undetermined, sequela +C0452174|T037|PS|T57.1|ICD10|Phosphorus and its compounds|Phosphorus and its compounds +C0452174|T037|PX|T57.1|ICD10|Toxic effect of phosphorus and its compounds|Toxic effect of phosphorus and its compounds +C0452174|T037|HT|T57.1|ICD10CM|Toxic effect of phosphorus and its compounds|Toxic effect of phosphorus and its compounds +C0452174|T037|AB|T57.1|ICD10CM|Toxic effect of phosphorus and its compounds|Toxic effect of phosphorus and its compounds +C0452174|T037|HT|T57.1X|ICD10CM|Toxic effect of phosphorus and its compounds|Toxic effect of phosphorus and its compounds +C0452174|T037|AB|T57.1X|ICD10CM|Toxic effect of phosphorus and its compounds|Toxic effect of phosphorus and its compounds +C0452174|T037|ET|T57.1X1|ICD10CM|Toxic effect of phosphorus and its compounds NOS|Toxic effect of phosphorus and its compounds NOS +C2884652|T037|AB|T57.1X1|ICD10CM|Toxic effect of phosphorus and its compounds, accidental|Toxic effect of phosphorus and its compounds, accidental +C2884652|T037|HT|T57.1X1|ICD10CM|Toxic effect of phosphorus and its compounds, accidental (unintentional)|Toxic effect of phosphorus and its compounds, accidental (unintentional) +C2884653|T037|AB|T57.1X1A|ICD10CM|Toxic effect of phosphorus and its compounds, acc, init|Toxic effect of phosphorus and its compounds, acc, init +C2884653|T037|PT|T57.1X1A|ICD10CM|Toxic effect of phosphorus and its compounds, accidental (unintentional), initial encounter|Toxic effect of phosphorus and its compounds, accidental (unintentional), initial encounter +C2884654|T037|AB|T57.1X1D|ICD10CM|Toxic effect of phosphorus and its compounds, acc, subs|Toxic effect of phosphorus and its compounds, acc, subs +C2884654|T037|PT|T57.1X1D|ICD10CM|Toxic effect of phosphorus and its compounds, accidental (unintentional), subsequent encounter|Toxic effect of phosphorus and its compounds, accidental (unintentional), subsequent encounter +C2884655|T037|AB|T57.1X1S|ICD10CM|Toxic effect of phosphorus and its compounds, acc, sequela|Toxic effect of phosphorus and its compounds, acc, sequela +C2884655|T037|PT|T57.1X1S|ICD10CM|Toxic effect of phosphorus and its compounds, accidental (unintentional), sequela|Toxic effect of phosphorus and its compounds, accidental (unintentional), sequela +C2884656|T037|HT|T57.1X2|ICD10CM|Toxic effect of phosphorus and its compounds, intentional self-harm|Toxic effect of phosphorus and its compounds, intentional self-harm +C2884656|T037|AB|T57.1X2|ICD10CM|Toxic effect of phosphorus and its compounds, self-harm|Toxic effect of phosphorus and its compounds, self-harm +C2884657|T037|AB|T57.1X2A|ICD10CM|Toxic effect of phosphorus and its compnd, self-harm, init|Toxic effect of phosphorus and its compnd, self-harm, init +C2884657|T037|PT|T57.1X2A|ICD10CM|Toxic effect of phosphorus and its compounds, intentional self-harm, initial encounter|Toxic effect of phosphorus and its compounds, intentional self-harm, initial encounter +C2884658|T037|AB|T57.1X2D|ICD10CM|Toxic effect of phosphorus and its compnd, self-harm, subs|Toxic effect of phosphorus and its compnd, self-harm, subs +C2884658|T037|PT|T57.1X2D|ICD10CM|Toxic effect of phosphorus and its compounds, intentional self-harm, subsequent encounter|Toxic effect of phosphorus and its compounds, intentional self-harm, subsequent encounter +C2884659|T037|AB|T57.1X2S|ICD10CM|Toxic effect of phosphorus and its compnd, slf-hrm, sequela|Toxic effect of phosphorus and its compnd, slf-hrm, sequela +C2884659|T037|PT|T57.1X2S|ICD10CM|Toxic effect of phosphorus and its compounds, intentional self-harm, sequela|Toxic effect of phosphorus and its compounds, intentional self-harm, sequela +C2884660|T037|AB|T57.1X3|ICD10CM|Toxic effect of phosphorus and its compounds, assault|Toxic effect of phosphorus and its compounds, assault +C2884660|T037|HT|T57.1X3|ICD10CM|Toxic effect of phosphorus and its compounds, assault|Toxic effect of phosphorus and its compounds, assault +C2884661|T037|AB|T57.1X3A|ICD10CM|Toxic effect of phosphorus and its compounds, assault, init|Toxic effect of phosphorus and its compounds, assault, init +C2884661|T037|PT|T57.1X3A|ICD10CM|Toxic effect of phosphorus and its compounds, assault, initial encounter|Toxic effect of phosphorus and its compounds, assault, initial encounter +C2884662|T037|AB|T57.1X3D|ICD10CM|Toxic effect of phosphorus and its compounds, assault, subs|Toxic effect of phosphorus and its compounds, assault, subs +C2884662|T037|PT|T57.1X3D|ICD10CM|Toxic effect of phosphorus and its compounds, assault, subsequent encounter|Toxic effect of phosphorus and its compounds, assault, subsequent encounter +C2884663|T037|AB|T57.1X3S|ICD10CM|Toxic effect of phosphorus and its compnd, assault, sequela|Toxic effect of phosphorus and its compnd, assault, sequela +C2884663|T037|PT|T57.1X3S|ICD10CM|Toxic effect of phosphorus and its compounds, assault, sequela|Toxic effect of phosphorus and its compounds, assault, sequela +C2884664|T037|AB|T57.1X4|ICD10CM|Toxic effect of phosphorus and its compounds, undetermined|Toxic effect of phosphorus and its compounds, undetermined +C2884664|T037|HT|T57.1X4|ICD10CM|Toxic effect of phosphorus and its compounds, undetermined|Toxic effect of phosphorus and its compounds, undetermined +C2884665|T037|AB|T57.1X4A|ICD10CM|Toxic effect of phosphorus and its compounds, undet, init|Toxic effect of phosphorus and its compounds, undet, init +C2884665|T037|PT|T57.1X4A|ICD10CM|Toxic effect of phosphorus and its compounds, undetermined, initial encounter|Toxic effect of phosphorus and its compounds, undetermined, initial encounter +C2884666|T037|AB|T57.1X4D|ICD10CM|Toxic effect of phosphorus and its compounds, undet, subs|Toxic effect of phosphorus and its compounds, undet, subs +C2884666|T037|PT|T57.1X4D|ICD10CM|Toxic effect of phosphorus and its compounds, undetermined, subsequent encounter|Toxic effect of phosphorus and its compounds, undetermined, subsequent encounter +C2884667|T037|AB|T57.1X4S|ICD10CM|Toxic effect of phosphorus and its compounds, undet, sequela|Toxic effect of phosphorus and its compounds, undet, sequela +C2884667|T037|PT|T57.1X4S|ICD10CM|Toxic effect of phosphorus and its compounds, undetermined, sequela|Toxic effect of phosphorus and its compounds, undetermined, sequela +C0412991|T037|PS|T57.2|ICD10|Manganese and its compounds|Manganese and its compounds +C0412991|T037|PX|T57.2|ICD10|Toxic effect of manganese and its compounds|Toxic effect of manganese and its compounds +C0412991|T037|HT|T57.2|ICD10CM|Toxic effect of manganese and its compounds|Toxic effect of manganese and its compounds +C0412991|T037|AB|T57.2|ICD10CM|Toxic effect of manganese and its compounds|Toxic effect of manganese and its compounds +C0412991|T037|HT|T57.2X|ICD10CM|Toxic effect of manganese and its compounds|Toxic effect of manganese and its compounds +C0412991|T037|AB|T57.2X|ICD10CM|Toxic effect of manganese and its compounds|Toxic effect of manganese and its compounds +C0412991|T037|ET|T57.2X1|ICD10CM|Toxic effect of manganese and its compounds NOS|Toxic effect of manganese and its compounds NOS +C2884668|T037|AB|T57.2X1|ICD10CM|Toxic effect of manganese and its compounds, accidental|Toxic effect of manganese and its compounds, accidental +C2884668|T037|HT|T57.2X1|ICD10CM|Toxic effect of manganese and its compounds, accidental (unintentional)|Toxic effect of manganese and its compounds, accidental (unintentional) +C2884669|T037|AB|T57.2X1A|ICD10CM|Toxic effect of manganese and its compounds, acc, init|Toxic effect of manganese and its compounds, acc, init +C2884669|T037|PT|T57.2X1A|ICD10CM|Toxic effect of manganese and its compounds, accidental (unintentional), initial encounter|Toxic effect of manganese and its compounds, accidental (unintentional), initial encounter +C2884670|T037|AB|T57.2X1D|ICD10CM|Toxic effect of manganese and its compounds, acc, subs|Toxic effect of manganese and its compounds, acc, subs +C2884670|T037|PT|T57.2X1D|ICD10CM|Toxic effect of manganese and its compounds, accidental (unintentional), subsequent encounter|Toxic effect of manganese and its compounds, accidental (unintentional), subsequent encounter +C2884671|T037|AB|T57.2X1S|ICD10CM|Toxic effect of manganese and its compounds, acc, sequela|Toxic effect of manganese and its compounds, acc, sequela +C2884671|T037|PT|T57.2X1S|ICD10CM|Toxic effect of manganese and its compounds, accidental (unintentional), sequela|Toxic effect of manganese and its compounds, accidental (unintentional), sequela +C2884672|T037|HT|T57.2X2|ICD10CM|Toxic effect of manganese and its compounds, intentional self-harm|Toxic effect of manganese and its compounds, intentional self-harm +C2884672|T037|AB|T57.2X2|ICD10CM|Toxic effect of manganese and its compounds, self-harm|Toxic effect of manganese and its compounds, self-harm +C2884673|T037|PT|T57.2X2A|ICD10CM|Toxic effect of manganese and its compounds, intentional self-harm, initial encounter|Toxic effect of manganese and its compounds, intentional self-harm, initial encounter +C2884673|T037|AB|T57.2X2A|ICD10CM|Toxic effect of manganese and its compounds, self-harm, init|Toxic effect of manganese and its compounds, self-harm, init +C2884674|T037|PT|T57.2X2D|ICD10CM|Toxic effect of manganese and its compounds, intentional self-harm, subsequent encounter|Toxic effect of manganese and its compounds, intentional self-harm, subsequent encounter +C2884674|T037|AB|T57.2X2D|ICD10CM|Toxic effect of manganese and its compounds, self-harm, subs|Toxic effect of manganese and its compounds, self-harm, subs +C2884675|T037|AB|T57.2X2S|ICD10CM|Toxic effect of manganese and its compnd, self-harm, sequela|Toxic effect of manganese and its compnd, self-harm, sequela +C2884675|T037|PT|T57.2X2S|ICD10CM|Toxic effect of manganese and its compounds, intentional self-harm, sequela|Toxic effect of manganese and its compounds, intentional self-harm, sequela +C2884676|T037|AB|T57.2X3|ICD10CM|Toxic effect of manganese and its compounds, assault|Toxic effect of manganese and its compounds, assault +C2884676|T037|HT|T57.2X3|ICD10CM|Toxic effect of manganese and its compounds, assault|Toxic effect of manganese and its compounds, assault +C2884677|T037|AB|T57.2X3A|ICD10CM|Toxic effect of manganese and its compounds, assault, init|Toxic effect of manganese and its compounds, assault, init +C2884677|T037|PT|T57.2X3A|ICD10CM|Toxic effect of manganese and its compounds, assault, initial encounter|Toxic effect of manganese and its compounds, assault, initial encounter +C2884678|T037|AB|T57.2X3D|ICD10CM|Toxic effect of manganese and its compounds, assault, subs|Toxic effect of manganese and its compounds, assault, subs +C2884678|T037|PT|T57.2X3D|ICD10CM|Toxic effect of manganese and its compounds, assault, subsequent encounter|Toxic effect of manganese and its compounds, assault, subsequent encounter +C2884679|T037|AB|T57.2X3S|ICD10CM|Toxic effect of manganese and its compnd, assault, sequela|Toxic effect of manganese and its compnd, assault, sequela +C2884679|T037|PT|T57.2X3S|ICD10CM|Toxic effect of manganese and its compounds, assault, sequela|Toxic effect of manganese and its compounds, assault, sequela +C2884680|T037|AB|T57.2X4|ICD10CM|Toxic effect of manganese and its compounds, undetermined|Toxic effect of manganese and its compounds, undetermined +C2884680|T037|HT|T57.2X4|ICD10CM|Toxic effect of manganese and its compounds, undetermined|Toxic effect of manganese and its compounds, undetermined +C2884681|T037|AB|T57.2X4A|ICD10CM|Toxic effect of manganese and its compounds, undet, init|Toxic effect of manganese and its compounds, undet, init +C2884681|T037|PT|T57.2X4A|ICD10CM|Toxic effect of manganese and its compounds, undetermined, initial encounter|Toxic effect of manganese and its compounds, undetermined, initial encounter +C2884682|T037|AB|T57.2X4D|ICD10CM|Toxic effect of manganese and its compounds, undet, subs|Toxic effect of manganese and its compounds, undet, subs +C2884682|T037|PT|T57.2X4D|ICD10CM|Toxic effect of manganese and its compounds, undetermined, subsequent encounter|Toxic effect of manganese and its compounds, undetermined, subsequent encounter +C2884683|T037|AB|T57.2X4S|ICD10CM|Toxic effect of manganese and its compounds, undet, sequela|Toxic effect of manganese and its compounds, undet, sequela +C2884683|T037|PT|T57.2X4S|ICD10CM|Toxic effect of manganese and its compounds, undetermined, sequela|Toxic effect of manganese and its compounds, undetermined, sequela +C0497022|T037|PS|T57.3|ICD10|Hydrogen cyanide|Hydrogen cyanide +C0497022|T037|PX|T57.3|ICD10|Toxic effect of hydrogen cyanide|Toxic effect of hydrogen cyanide +C0497022|T037|HT|T57.3|ICD10CM|Toxic effect of hydrogen cyanide|Toxic effect of hydrogen cyanide +C0497022|T037|AB|T57.3|ICD10CM|Toxic effect of hydrogen cyanide|Toxic effect of hydrogen cyanide +C0497022|T037|HT|T57.3X|ICD10CM|Toxic effect of hydrogen cyanide|Toxic effect of hydrogen cyanide +C0497022|T037|AB|T57.3X|ICD10CM|Toxic effect of hydrogen cyanide|Toxic effect of hydrogen cyanide +C0497022|T037|ET|T57.3X1|ICD10CM|Toxic effect of hydrogen cyanide NOS|Toxic effect of hydrogen cyanide NOS +C2884684|T037|AB|T57.3X1|ICD10CM|Toxic effect of hydrogen cyanide, accidental (unintentional)|Toxic effect of hydrogen cyanide, accidental (unintentional) +C2884684|T037|HT|T57.3X1|ICD10CM|Toxic effect of hydrogen cyanide, accidental (unintentional)|Toxic effect of hydrogen cyanide, accidental (unintentional) +C2884685|T037|PT|T57.3X1A|ICD10CM|Toxic effect of hydrogen cyanide, accidental (unintentional), initial encounter|Toxic effect of hydrogen cyanide, accidental (unintentional), initial encounter +C2884685|T037|AB|T57.3X1A|ICD10CM|Toxic effect of hydrogen cyanide, accidental, init|Toxic effect of hydrogen cyanide, accidental, init +C2884686|T037|PT|T57.3X1D|ICD10CM|Toxic effect of hydrogen cyanide, accidental (unintentional), subsequent encounter|Toxic effect of hydrogen cyanide, accidental (unintentional), subsequent encounter +C2884686|T037|AB|T57.3X1D|ICD10CM|Toxic effect of hydrogen cyanide, accidental, subs|Toxic effect of hydrogen cyanide, accidental, subs +C2884687|T037|PT|T57.3X1S|ICD10CM|Toxic effect of hydrogen cyanide, accidental (unintentional), sequela|Toxic effect of hydrogen cyanide, accidental (unintentional), sequela +C2884687|T037|AB|T57.3X1S|ICD10CM|Toxic effect of hydrogen cyanide, accidental, sequela|Toxic effect of hydrogen cyanide, accidental, sequela +C2884688|T037|AB|T57.3X2|ICD10CM|Toxic effect of hydrogen cyanide, intentional self-harm|Toxic effect of hydrogen cyanide, intentional self-harm +C2884688|T037|HT|T57.3X2|ICD10CM|Toxic effect of hydrogen cyanide, intentional self-harm|Toxic effect of hydrogen cyanide, intentional self-harm +C2884689|T037|PT|T57.3X2A|ICD10CM|Toxic effect of hydrogen cyanide, intentional self-harm, initial encounter|Toxic effect of hydrogen cyanide, intentional self-harm, initial encounter +C2884689|T037|AB|T57.3X2A|ICD10CM|Toxic effect of hydrogen cyanide, self-harm, init|Toxic effect of hydrogen cyanide, self-harm, init +C2884690|T037|PT|T57.3X2D|ICD10CM|Toxic effect of hydrogen cyanide, intentional self-harm, subsequent encounter|Toxic effect of hydrogen cyanide, intentional self-harm, subsequent encounter +C2884690|T037|AB|T57.3X2D|ICD10CM|Toxic effect of hydrogen cyanide, self-harm, subs|Toxic effect of hydrogen cyanide, self-harm, subs +C2884691|T037|PT|T57.3X2S|ICD10CM|Toxic effect of hydrogen cyanide, intentional self-harm, sequela|Toxic effect of hydrogen cyanide, intentional self-harm, sequela +C2884691|T037|AB|T57.3X2S|ICD10CM|Toxic effect of hydrogen cyanide, self-harm, sequela|Toxic effect of hydrogen cyanide, self-harm, sequela +C2884692|T037|AB|T57.3X3|ICD10CM|Toxic effect of hydrogen cyanide, assault|Toxic effect of hydrogen cyanide, assault +C2884692|T037|HT|T57.3X3|ICD10CM|Toxic effect of hydrogen cyanide, assault|Toxic effect of hydrogen cyanide, assault +C2884693|T037|AB|T57.3X3A|ICD10CM|Toxic effect of hydrogen cyanide, assault, initial encounter|Toxic effect of hydrogen cyanide, assault, initial encounter +C2884693|T037|PT|T57.3X3A|ICD10CM|Toxic effect of hydrogen cyanide, assault, initial encounter|Toxic effect of hydrogen cyanide, assault, initial encounter +C2884694|T037|AB|T57.3X3D|ICD10CM|Toxic effect of hydrogen cyanide, assault, subs encntr|Toxic effect of hydrogen cyanide, assault, subs encntr +C2884694|T037|PT|T57.3X3D|ICD10CM|Toxic effect of hydrogen cyanide, assault, subsequent encounter|Toxic effect of hydrogen cyanide, assault, subsequent encounter +C2884695|T037|AB|T57.3X3S|ICD10CM|Toxic effect of hydrogen cyanide, assault, sequela|Toxic effect of hydrogen cyanide, assault, sequela +C2884695|T037|PT|T57.3X3S|ICD10CM|Toxic effect of hydrogen cyanide, assault, sequela|Toxic effect of hydrogen cyanide, assault, sequela +C2884696|T037|AB|T57.3X4|ICD10CM|Toxic effect of hydrogen cyanide, undetermined|Toxic effect of hydrogen cyanide, undetermined +C2884696|T037|HT|T57.3X4|ICD10CM|Toxic effect of hydrogen cyanide, undetermined|Toxic effect of hydrogen cyanide, undetermined +C2884697|T037|AB|T57.3X4A|ICD10CM|Toxic effect of hydrogen cyanide, undetermined, init encntr|Toxic effect of hydrogen cyanide, undetermined, init encntr +C2884697|T037|PT|T57.3X4A|ICD10CM|Toxic effect of hydrogen cyanide, undetermined, initial encounter|Toxic effect of hydrogen cyanide, undetermined, initial encounter +C2884698|T037|AB|T57.3X4D|ICD10CM|Toxic effect of hydrogen cyanide, undetermined, subs encntr|Toxic effect of hydrogen cyanide, undetermined, subs encntr +C2884698|T037|PT|T57.3X4D|ICD10CM|Toxic effect of hydrogen cyanide, undetermined, subsequent encounter|Toxic effect of hydrogen cyanide, undetermined, subsequent encounter +C2884699|T037|AB|T57.3X4S|ICD10CM|Toxic effect of hydrogen cyanide, undetermined, sequela|Toxic effect of hydrogen cyanide, undetermined, sequela +C2884699|T037|PT|T57.3X4S|ICD10CM|Toxic effect of hydrogen cyanide, undetermined, sequela|Toxic effect of hydrogen cyanide, undetermined, sequela +C0478463|T037|PS|T57.8|ICD10|Other specified inorganic substances|Other specified inorganic substances +C0478463|T037|PX|T57.8|ICD10|Toxic effect of other specified inorganic substances|Toxic effect of other specified inorganic substances +C0478463|T037|HT|T57.8|ICD10CM|Toxic effect of other specified inorganic substances|Toxic effect of other specified inorganic substances +C0478463|T037|AB|T57.8|ICD10CM|Toxic effect of other specified inorganic substances|Toxic effect of other specified inorganic substances +C0478463|T037|HT|T57.8X|ICD10CM|Toxic effect of other specified inorganic substances|Toxic effect of other specified inorganic substances +C0478463|T037|AB|T57.8X|ICD10CM|Toxic effect of other specified inorganic substances|Toxic effect of other specified inorganic substances +C2884700|T037|AB|T57.8X1|ICD10CM|Toxic effect of inorganic substances, accidental|Toxic effect of inorganic substances, accidental +C0478463|T037|ET|T57.8X1|ICD10CM|Toxic effect of other specified inorganic substances NOS|Toxic effect of other specified inorganic substances NOS +C2884700|T037|HT|T57.8X1|ICD10CM|Toxic effect of other specified inorganic substances, accidental (unintentional)|Toxic effect of other specified inorganic substances, accidental (unintentional) +C2884701|T037|AB|T57.8X1A|ICD10CM|Toxic effect of inorganic substances, accidental, init|Toxic effect of inorganic substances, accidental, init +C2884701|T037|PT|T57.8X1A|ICD10CM|Toxic effect of other specified inorganic substances, accidental (unintentional), initial encounter|Toxic effect of other specified inorganic substances, accidental (unintentional), initial encounter +C2884702|T037|AB|T57.8X1D|ICD10CM|Toxic effect of inorganic substances, accidental, subs|Toxic effect of inorganic substances, accidental, subs +C2884703|T037|AB|T57.8X1S|ICD10CM|Toxic effect of inorganic substances, accidental, sequela|Toxic effect of inorganic substances, accidental, sequela +C2884703|T037|PT|T57.8X1S|ICD10CM|Toxic effect of other specified inorganic substances, accidental (unintentional), sequela|Toxic effect of other specified inorganic substances, accidental (unintentional), sequela +C2884704|T037|AB|T57.8X2|ICD10CM|Toxic effect of inorganic substances, intentional self-harm|Toxic effect of inorganic substances, intentional self-harm +C2884704|T037|HT|T57.8X2|ICD10CM|Toxic effect of other specified inorganic substances, intentional self-harm|Toxic effect of other specified inorganic substances, intentional self-harm +C2884705|T037|AB|T57.8X2A|ICD10CM|Toxic effect of inorganic substances, self-harm, init|Toxic effect of inorganic substances, self-harm, init +C2884705|T037|PT|T57.8X2A|ICD10CM|Toxic effect of other specified inorganic substances, intentional self-harm, initial encounter|Toxic effect of other specified inorganic substances, intentional self-harm, initial encounter +C2884706|T037|AB|T57.8X2D|ICD10CM|Toxic effect of inorganic substances, self-harm, subs|Toxic effect of inorganic substances, self-harm, subs +C2884706|T037|PT|T57.8X2D|ICD10CM|Toxic effect of other specified inorganic substances, intentional self-harm, subsequent encounter|Toxic effect of other specified inorganic substances, intentional self-harm, subsequent encounter +C2884707|T037|AB|T57.8X2S|ICD10CM|Toxic effect of inorganic substances, self-harm, sequela|Toxic effect of inorganic substances, self-harm, sequela +C2884707|T037|PT|T57.8X2S|ICD10CM|Toxic effect of other specified inorganic substances, intentional self-harm, sequela|Toxic effect of other specified inorganic substances, intentional self-harm, sequela +C2884708|T037|AB|T57.8X3|ICD10CM|Toxic effect of oth inorganic substances, assault|Toxic effect of oth inorganic substances, assault +C2884708|T037|HT|T57.8X3|ICD10CM|Toxic effect of other specified inorganic substances, assault|Toxic effect of other specified inorganic substances, assault +C2884709|T037|AB|T57.8X3A|ICD10CM|Toxic effect of oth inorganic substances, assault, init|Toxic effect of oth inorganic substances, assault, init +C2884709|T037|PT|T57.8X3A|ICD10CM|Toxic effect of other specified inorganic substances, assault, initial encounter|Toxic effect of other specified inorganic substances, assault, initial encounter +C2884710|T037|AB|T57.8X3D|ICD10CM|Toxic effect of oth inorganic substances, assault, subs|Toxic effect of oth inorganic substances, assault, subs +C2884710|T037|PT|T57.8X3D|ICD10CM|Toxic effect of other specified inorganic substances, assault, subsequent encounter|Toxic effect of other specified inorganic substances, assault, subsequent encounter +C2884711|T037|AB|T57.8X3S|ICD10CM|Toxic effect of oth inorganic substances, assault, sequela|Toxic effect of oth inorganic substances, assault, sequela +C2884711|T037|PT|T57.8X3S|ICD10CM|Toxic effect of other specified inorganic substances, assault, sequela|Toxic effect of other specified inorganic substances, assault, sequela +C2884712|T037|AB|T57.8X4|ICD10CM|Toxic effect of oth inorganic substances, undetermined|Toxic effect of oth inorganic substances, undetermined +C2884712|T037|HT|T57.8X4|ICD10CM|Toxic effect of other specified inorganic substances, undetermined|Toxic effect of other specified inorganic substances, undetermined +C2884713|T037|AB|T57.8X4A|ICD10CM|Toxic effect of oth inorganic substances, undetermined, init|Toxic effect of oth inorganic substances, undetermined, init +C2884713|T037|PT|T57.8X4A|ICD10CM|Toxic effect of other specified inorganic substances, undetermined, initial encounter|Toxic effect of other specified inorganic substances, undetermined, initial encounter +C2884714|T037|AB|T57.8X4D|ICD10CM|Toxic effect of oth inorganic substances, undetermined, subs|Toxic effect of oth inorganic substances, undetermined, subs +C2884714|T037|PT|T57.8X4D|ICD10CM|Toxic effect of other specified inorganic substances, undetermined, subsequent encounter|Toxic effect of other specified inorganic substances, undetermined, subsequent encounter +C2884715|T037|AB|T57.8X4S|ICD10CM|Toxic effect of inorganic substances, undetermined, sequela|Toxic effect of inorganic substances, undetermined, sequela +C2884715|T037|PT|T57.8X4S|ICD10CM|Toxic effect of other specified inorganic substances, undetermined, sequela|Toxic effect of other specified inorganic substances, undetermined, sequela +C0478473|T037|PS|T57.9|ICD10|Inorganic substance, unspecified|Inorganic substance, unspecified +C0478473|T037|PX|T57.9|ICD10|Toxic effect of inorganic substance, unspecified|Toxic effect of inorganic substance, unspecified +C0478473|T037|AB|T57.9|ICD10CM|Toxic effect of unspecified inorganic substance|Toxic effect of unspecified inorganic substance +C0478473|T037|HT|T57.9|ICD10CM|Toxic effect of unspecified inorganic substance|Toxic effect of unspecified inorganic substance +C2884716|T037|AB|T57.91|ICD10CM|Toxic effect of unsp inorganic substance, accidental|Toxic effect of unsp inorganic substance, accidental +C2884716|T037|HT|T57.91|ICD10CM|Toxic effect of unspecified inorganic substance, accidental (unintentional)|Toxic effect of unspecified inorganic substance, accidental (unintentional) +C2884717|T037|AB|T57.91XA|ICD10CM|Toxic effect of unsp inorganic substance, accidental, init|Toxic effect of unsp inorganic substance, accidental, init +C2884717|T037|PT|T57.91XA|ICD10CM|Toxic effect of unspecified inorganic substance, accidental (unintentional), initial encounter|Toxic effect of unspecified inorganic substance, accidental (unintentional), initial encounter +C2884718|T037|AB|T57.91XD|ICD10CM|Toxic effect of unsp inorganic substance, accidental, subs|Toxic effect of unsp inorganic substance, accidental, subs +C2884718|T037|PT|T57.91XD|ICD10CM|Toxic effect of unspecified inorganic substance, accidental (unintentional), subsequent encounter|Toxic effect of unspecified inorganic substance, accidental (unintentional), subsequent encounter +C2884719|T037|AB|T57.91XS|ICD10CM|Toxic effect of unsp inorganic substance, acc, sequela|Toxic effect of unsp inorganic substance, acc, sequela +C2884719|T037|PT|T57.91XS|ICD10CM|Toxic effect of unspecified inorganic substance, accidental (unintentional), sequela|Toxic effect of unspecified inorganic substance, accidental (unintentional), sequela +C2884720|T037|AB|T57.92|ICD10CM|Toxic effect of unsp inorganic substance, self-harm|Toxic effect of unsp inorganic substance, self-harm +C2884720|T037|HT|T57.92|ICD10CM|Toxic effect of unspecified inorganic substance, intentional self-harm|Toxic effect of unspecified inorganic substance, intentional self-harm +C2884721|T037|AB|T57.92XA|ICD10CM|Toxic effect of unsp inorganic substance, self-harm, init|Toxic effect of unsp inorganic substance, self-harm, init +C2884721|T037|PT|T57.92XA|ICD10CM|Toxic effect of unspecified inorganic substance, intentional self-harm, initial encounter|Toxic effect of unspecified inorganic substance, intentional self-harm, initial encounter +C2884722|T037|AB|T57.92XD|ICD10CM|Toxic effect of unsp inorganic substance, self-harm, subs|Toxic effect of unsp inorganic substance, self-harm, subs +C2884722|T037|PT|T57.92XD|ICD10CM|Toxic effect of unspecified inorganic substance, intentional self-harm, subsequent encounter|Toxic effect of unspecified inorganic substance, intentional self-harm, subsequent encounter +C2884723|T037|AB|T57.92XS|ICD10CM|Toxic effect of unsp inorganic substance, self-harm, sequela|Toxic effect of unsp inorganic substance, self-harm, sequela +C2884723|T037|PT|T57.92XS|ICD10CM|Toxic effect of unspecified inorganic substance, intentional self-harm, sequela|Toxic effect of unspecified inorganic substance, intentional self-harm, sequela +C2884724|T037|AB|T57.93|ICD10CM|Toxic effect of unspecified inorganic substance, assault|Toxic effect of unspecified inorganic substance, assault +C2884724|T037|HT|T57.93|ICD10CM|Toxic effect of unspecified inorganic substance, assault|Toxic effect of unspecified inorganic substance, assault +C2884725|T037|AB|T57.93XA|ICD10CM|Toxic effect of unsp inorganic substance, assault, init|Toxic effect of unsp inorganic substance, assault, init +C2884725|T037|PT|T57.93XA|ICD10CM|Toxic effect of unspecified inorganic substance, assault, initial encounter|Toxic effect of unspecified inorganic substance, assault, initial encounter +C2884726|T037|AB|T57.93XD|ICD10CM|Toxic effect of unsp inorganic substance, assault, subs|Toxic effect of unsp inorganic substance, assault, subs +C2884726|T037|PT|T57.93XD|ICD10CM|Toxic effect of unspecified inorganic substance, assault, subsequent encounter|Toxic effect of unspecified inorganic substance, assault, subsequent encounter +C2884727|T037|AB|T57.93XS|ICD10CM|Toxic effect of unsp inorganic substance, assault, sequela|Toxic effect of unsp inorganic substance, assault, sequela +C2884727|T037|PT|T57.93XS|ICD10CM|Toxic effect of unspecified inorganic substance, assault, sequela|Toxic effect of unspecified inorganic substance, assault, sequela +C2884728|T037|AB|T57.94|ICD10CM|Toxic effect of unsp inorganic substance, undetermined|Toxic effect of unsp inorganic substance, undetermined +C2884728|T037|HT|T57.94|ICD10CM|Toxic effect of unspecified inorganic substance, undetermined|Toxic effect of unspecified inorganic substance, undetermined +C2884729|T037|AB|T57.94XA|ICD10CM|Toxic effect of unsp inorganic substance, undetermined, init|Toxic effect of unsp inorganic substance, undetermined, init +C2884729|T037|PT|T57.94XA|ICD10CM|Toxic effect of unspecified inorganic substance, undetermined, initial encounter|Toxic effect of unspecified inorganic substance, undetermined, initial encounter +C2884730|T037|AB|T57.94XD|ICD10CM|Toxic effect of unsp inorganic substance, undetermined, subs|Toxic effect of unsp inorganic substance, undetermined, subs +C2884730|T037|PT|T57.94XD|ICD10CM|Toxic effect of unspecified inorganic substance, undetermined, subsequent encounter|Toxic effect of unspecified inorganic substance, undetermined, subsequent encounter +C2884731|T037|AB|T57.94XS|ICD10CM|Toxic effect of unsp inorganic substance, undet, sequela|Toxic effect of unsp inorganic substance, undet, sequela +C2884731|T037|PT|T57.94XS|ICD10CM|Toxic effect of unspecified inorganic substance, undetermined, sequela|Toxic effect of unspecified inorganic substance, undetermined, sequela +C4290406|T037|ET|T58|ICD10CM|asphyxiation from carbon monoxide|asphyxiation from carbon monoxide +C1370867|T037|PT|T58|ICD10|Toxic effect of carbon monoxide|Toxic effect of carbon monoxide +C1370867|T037|HT|T58|ICD10CM|Toxic effect of carbon monoxide|Toxic effect of carbon monoxide +C1370867|T037|AB|T58|ICD10CM|Toxic effect of carbon monoxide|Toxic effect of carbon monoxide +C4290407|T037|ET|T58|ICD10CM|toxic effect of carbon monoxide from all sources|toxic effect of carbon monoxide from all sources +C2884736|T037|AB|T58.0|ICD10CM|Toxic effect of carbon monoxide from motor vehicle exhaust|Toxic effect of carbon monoxide from motor vehicle exhaust +C2884736|T037|HT|T58.0|ICD10CM|Toxic effect of carbon monoxide from motor vehicle exhaust|Toxic effect of carbon monoxide from motor vehicle exhaust +C2884734|T037|ET|T58.0|ICD10CM|Toxic effect of exhaust gas from gas engine|Toxic effect of exhaust gas from gas engine +C2884735|T037|ET|T58.0|ICD10CM|Toxic effect of exhaust gas from motor pump|Toxic effect of exhaust gas from motor pump +C2884737|T037|AB|T58.01|ICD10CM|Toxic effect of carb monx from mtr veh exhaust, accidental|Toxic effect of carb monx from mtr veh exhaust, accidental +C2884737|T037|HT|T58.01|ICD10CM|Toxic effect of carbon monoxide from motor vehicle exhaust, accidental (unintentional)|Toxic effect of carbon monoxide from motor vehicle exhaust, accidental (unintentional) +C2884738|T037|AB|T58.01XA|ICD10CM|Toxic effect of carb monx from mtr veh exhaust, acc, init|Toxic effect of carb monx from mtr veh exhaust, acc, init +C2884739|T037|AB|T58.01XD|ICD10CM|Toxic effect of carb monx from mtr veh exhaust, acc, subs|Toxic effect of carb monx from mtr veh exhaust, acc, subs +C2884740|T037|AB|T58.01XS|ICD10CM|Toxic effect of carb monx from mtr veh exhaust, acc, sqla|Toxic effect of carb monx from mtr veh exhaust, acc, sqla +C2884740|T037|PT|T58.01XS|ICD10CM|Toxic effect of carbon monoxide from motor vehicle exhaust, accidental (unintentional), sequela|Toxic effect of carbon monoxide from motor vehicle exhaust, accidental (unintentional), sequela +C2884741|T037|AB|T58.02|ICD10CM|Toxic effect of carb monx from mtr veh exhaust, self-harm|Toxic effect of carb monx from mtr veh exhaust, self-harm +C2884741|T037|HT|T58.02|ICD10CM|Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm|Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm +C2884742|T037|AB|T58.02XA|ICD10CM|Toxic eff of carb monx from mtr veh exhaust, slf-hrm, init|Toxic eff of carb monx from mtr veh exhaust, slf-hrm, init +C2884742|T037|PT|T58.02XA|ICD10CM|Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm, initial encounter|Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm, initial encounter +C2884743|T037|AB|T58.02XD|ICD10CM|Toxic eff of carb monx from mtr veh exhaust, slf-hrm, subs|Toxic eff of carb monx from mtr veh exhaust, slf-hrm, subs +C2884744|T037|AB|T58.02XS|ICD10CM|Toxic eff of carb monx from mtr veh exhaust, slf-hrm, sqla|Toxic eff of carb monx from mtr veh exhaust, slf-hrm, sqla +C2884744|T037|PT|T58.02XS|ICD10CM|Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm, sequela|Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm, sequela +C2884745|T037|AB|T58.03|ICD10CM|Toxic effect of carb monx from mtr veh exhaust, assault|Toxic effect of carb monx from mtr veh exhaust, assault +C2884745|T037|HT|T58.03|ICD10CM|Toxic effect of carbon monoxide from motor vehicle exhaust, assault|Toxic effect of carbon monoxide from motor vehicle exhaust, assault +C2884746|T037|AB|T58.03XA|ICD10CM|Toxic effect of carb monx from mtr veh exhaust, asslt, init|Toxic effect of carb monx from mtr veh exhaust, asslt, init +C2884746|T037|PT|T58.03XA|ICD10CM|Toxic effect of carbon monoxide from motor vehicle exhaust, assault, initial encounter|Toxic effect of carbon monoxide from motor vehicle exhaust, assault, initial encounter +C2884747|T037|AB|T58.03XD|ICD10CM|Toxic effect of carb monx from mtr veh exhaust, asslt, subs|Toxic effect of carb monx from mtr veh exhaust, asslt, subs +C2884747|T037|PT|T58.03XD|ICD10CM|Toxic effect of carbon monoxide from motor vehicle exhaust, assault, subsequent encounter|Toxic effect of carbon monoxide from motor vehicle exhaust, assault, subsequent encounter +C2884748|T037|AB|T58.03XS|ICD10CM|Toxic effect of carb monx from mtr veh exhaust, asslt, sqla|Toxic effect of carb monx from mtr veh exhaust, asslt, sqla +C2884748|T037|PT|T58.03XS|ICD10CM|Toxic effect of carbon monoxide from motor vehicle exhaust, assault, sequela|Toxic effect of carbon monoxide from motor vehicle exhaust, assault, sequela +C2884749|T037|AB|T58.04|ICD10CM|Toxic effect of carb monx from mtr veh exhaust, undetermined|Toxic effect of carb monx from mtr veh exhaust, undetermined +C2884749|T037|HT|T58.04|ICD10CM|Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined|Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined +C2884750|T037|AB|T58.04XA|ICD10CM|Toxic effect of carb monx from mtr veh exhaust, undet, init|Toxic effect of carb monx from mtr veh exhaust, undet, init +C2884750|T037|PT|T58.04XA|ICD10CM|Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined, initial encounter|Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined, initial encounter +C2884751|T037|AB|T58.04XD|ICD10CM|Toxic effect of carb monx from mtr veh exhaust, undet, subs|Toxic effect of carb monx from mtr veh exhaust, undet, subs +C2884751|T037|PT|T58.04XD|ICD10CM|Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined, subsequent encounter|Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined, subsequent encounter +C2884752|T037|AB|T58.04XS|ICD10CM|Toxic effect of carb monx from mtr veh exhaust, undet, sqla|Toxic effect of carb monx from mtr veh exhaust, undet, sqla +C2884752|T037|PT|T58.04XS|ICD10CM|Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined, sequela|Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined, sequela +C2884753|T037|ET|T58.1|ICD10CM|Toxic effect of acetylene|Toxic effect of acetylene +C2884756|T037|AB|T58.1|ICD10CM|Toxic effect of carbon monoxide from utility gas|Toxic effect of carbon monoxide from utility gas +C2884756|T037|HT|T58.1|ICD10CM|Toxic effect of carbon monoxide from utility gas|Toxic effect of carbon monoxide from utility gas +C2884754|T037|ET|T58.1|ICD10CM|Toxic effect of gas NOS used for lighting, heating, cooking|Toxic effect of gas NOS used for lighting, heating, cooking +C2884755|T037|ET|T58.1|ICD10CM|Toxic effect of water gas|Toxic effect of water gas +C2884757|T037|AB|T58.11|ICD10CM|Toxic effect of carb monx from utility gas, accidental|Toxic effect of carb monx from utility gas, accidental +C2884757|T037|HT|T58.11|ICD10CM|Toxic effect of carbon monoxide from utility gas, accidental (unintentional)|Toxic effect of carbon monoxide from utility gas, accidental (unintentional) +C2884758|T037|AB|T58.11XA|ICD10CM|Toxic effect of carb monx from utility gas, acc, init|Toxic effect of carb monx from utility gas, acc, init +C2884758|T037|PT|T58.11XA|ICD10CM|Toxic effect of carbon monoxide from utility gas, accidental (unintentional), initial encounter|Toxic effect of carbon monoxide from utility gas, accidental (unintentional), initial encounter +C2884759|T037|AB|T58.11XD|ICD10CM|Toxic effect of carb monx from utility gas, acc, subs|Toxic effect of carb monx from utility gas, acc, subs +C2884759|T037|PT|T58.11XD|ICD10CM|Toxic effect of carbon monoxide from utility gas, accidental (unintentional), subsequent encounter|Toxic effect of carbon monoxide from utility gas, accidental (unintentional), subsequent encounter +C2884760|T037|AB|T58.11XS|ICD10CM|Toxic effect of carb monx from utility gas, acc, sequela|Toxic effect of carb monx from utility gas, acc, sequela +C2884760|T037|PT|T58.11XS|ICD10CM|Toxic effect of carbon monoxide from utility gas, accidental (unintentional), sequela|Toxic effect of carbon monoxide from utility gas, accidental (unintentional), sequela +C2884761|T037|HT|T58.12|ICD10CM|Toxic effect of carbon monoxide from utility gas, intentional self-harm|Toxic effect of carbon monoxide from utility gas, intentional self-harm +C2884761|T037|AB|T58.12|ICD10CM|Toxic effect of carbon monoxide from utility gas, self-harm|Toxic effect of carbon monoxide from utility gas, self-harm +C2884762|T037|AB|T58.12XA|ICD10CM|Toxic effect of carb monx from utility gas, self-harm, init|Toxic effect of carb monx from utility gas, self-harm, init +C2884762|T037|PT|T58.12XA|ICD10CM|Toxic effect of carbon monoxide from utility gas, intentional self-harm, initial encounter|Toxic effect of carbon monoxide from utility gas, intentional self-harm, initial encounter +C2884763|T037|AB|T58.12XD|ICD10CM|Toxic effect of carb monx from utility gas, self-harm, subs|Toxic effect of carb monx from utility gas, self-harm, subs +C2884763|T037|PT|T58.12XD|ICD10CM|Toxic effect of carbon monoxide from utility gas, intentional self-harm, subsequent encounter|Toxic effect of carbon monoxide from utility gas, intentional self-harm, subsequent encounter +C2884764|T037|AB|T58.12XS|ICD10CM|Toxic effect of carb monx from utility gas, slf-hrm, sequela|Toxic effect of carb monx from utility gas, slf-hrm, sequela +C2884764|T037|PT|T58.12XS|ICD10CM|Toxic effect of carbon monoxide from utility gas, intentional self-harm, sequela|Toxic effect of carbon monoxide from utility gas, intentional self-harm, sequela +C2884765|T037|AB|T58.13|ICD10CM|Toxic effect of carbon monoxide from utility gas, assault|Toxic effect of carbon monoxide from utility gas, assault +C2884765|T037|HT|T58.13|ICD10CM|Toxic effect of carbon monoxide from utility gas, assault|Toxic effect of carbon monoxide from utility gas, assault +C2884766|T037|AB|T58.13XA|ICD10CM|Toxic effect of carb monx from utility gas, assault, init|Toxic effect of carb monx from utility gas, assault, init +C2884766|T037|PT|T58.13XA|ICD10CM|Toxic effect of carbon monoxide from utility gas, assault, initial encounter|Toxic effect of carbon monoxide from utility gas, assault, initial encounter +C2884767|T037|AB|T58.13XD|ICD10CM|Toxic effect of carb monx from utility gas, assault, subs|Toxic effect of carb monx from utility gas, assault, subs +C2884767|T037|PT|T58.13XD|ICD10CM|Toxic effect of carbon monoxide from utility gas, assault, subsequent encounter|Toxic effect of carbon monoxide from utility gas, assault, subsequent encounter +C2884768|T037|AB|T58.13XS|ICD10CM|Toxic effect of carb monx from utility gas, assault, sequela|Toxic effect of carb monx from utility gas, assault, sequela +C2884768|T037|PT|T58.13XS|ICD10CM|Toxic effect of carbon monoxide from utility gas, assault, sequela|Toxic effect of carbon monoxide from utility gas, assault, sequela +C2884769|T037|AB|T58.14|ICD10CM|Toxic effect of carb monx from utility gas, undetermined|Toxic effect of carb monx from utility gas, undetermined +C2884769|T037|HT|T58.14|ICD10CM|Toxic effect of carbon monoxide from utility gas, undetermined|Toxic effect of carbon monoxide from utility gas, undetermined +C2884770|T037|AB|T58.14XA|ICD10CM|Toxic effect of carb monx from utility gas, undet, init|Toxic effect of carb monx from utility gas, undet, init +C2884770|T037|PT|T58.14XA|ICD10CM|Toxic effect of carbon monoxide from utility gas, undetermined, initial encounter|Toxic effect of carbon monoxide from utility gas, undetermined, initial encounter +C2884771|T037|AB|T58.14XD|ICD10CM|Toxic effect of carb monx from utility gas, undet, subs|Toxic effect of carb monx from utility gas, undet, subs +C2884771|T037|PT|T58.14XD|ICD10CM|Toxic effect of carbon monoxide from utility gas, undetermined, subsequent encounter|Toxic effect of carbon monoxide from utility gas, undetermined, subsequent encounter +C2884772|T037|AB|T58.14XS|ICD10CM|Toxic effect of carb monx from utility gas, undet, sequela|Toxic effect of carb monx from utility gas, undet, sequela +C2884772|T037|PT|T58.14XS|ICD10CM|Toxic effect of carbon monoxide from utility gas, undetermined, sequela|Toxic effect of carbon monoxide from utility gas, undetermined, sequela +C2884774|T037|AB|T58.2|ICD10CM|Toxic effect of carbon monoxide from incmpl combst dmst fuel|Toxic effect of carbon monoxide from incmpl combst dmst fuel +C2884773|T037|ET|T58.2|ICD10CM|Toxic effect of carbon monoxide from incomplete combustion of coal, coke, kerosene, wood|Toxic effect of carbon monoxide from incomplete combustion of coal, coke, kerosene, wood +C2884774|T037|HT|T58.2|ICD10CM|Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels|Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels +C2884774|T037|AB|T58.2X|ICD10CM|Toxic effect of carbon monoxide from incmpl combst dmst fuel|Toxic effect of carbon monoxide from incmpl combst dmst fuel +C2884774|T037|HT|T58.2X|ICD10CM|Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels|Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels +C2884775|T037|AB|T58.2X1|ICD10CM|Toxic effect of carb monx from incmpl combst dmst fuel, acc|Toxic effect of carb monx from incmpl combst dmst fuel, acc +C2884776|T037|AB|T58.2X1A|ICD10CM|Tox eff of carb monx fr incmpl combst dmst fuel, acc, init|Tox eff of carb monx fr incmpl combst dmst fuel, acc, init +C2884777|T037|AB|T58.2X1D|ICD10CM|Tox eff of carb monx fr incmpl combst dmst fuel, acc, subs|Tox eff of carb monx fr incmpl combst dmst fuel, acc, subs +C2884778|T037|AB|T58.2X1S|ICD10CM|Tox eff of carb monx fr incmpl combst dmst fuel, acc, sqla|Tox eff of carb monx fr incmpl combst dmst fuel, acc, sqla +C2884779|T037|AB|T58.2X2|ICD10CM|Toxic eff of carb monx from incmpl combst dmst fuel, slf-hrm|Toxic eff of carb monx from incmpl combst dmst fuel, slf-hrm +C2884780|T037|AB|T58.2X2A|ICD10CM|Tox eff of carb monx fr incmpl combst dmst fuel,slf-hrm,init|Tox eff of carb monx fr incmpl combst dmst fuel,slf-hrm,init +C2884781|T037|AB|T58.2X2D|ICD10CM|Tox eff of carb monx fr incmpl combst dmst fuel,slf-hrm,subs|Tox eff of carb monx fr incmpl combst dmst fuel,slf-hrm,subs +C2884782|T037|AB|T58.2X2S|ICD10CM|Tox eff of carb monx fr incmpl combst dmst fuel,slf-hrm,sqla|Tox eff of carb monx fr incmpl combst dmst fuel,slf-hrm,sqla +C2884783|T037|AB|T58.2X3|ICD10CM|Toxic eff of carb monx from incmpl combst dmst fuel, asslt|Toxic eff of carb monx from incmpl combst dmst fuel, asslt +C2884783|T037|HT|T58.2X3|ICD10CM|Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, assault|Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, assault +C2884784|T037|AB|T58.2X3A|ICD10CM|Tox eff of carb monx fr incmpl combst dmst fuel, asslt, init|Tox eff of carb monx fr incmpl combst dmst fuel, asslt, init +C2884785|T037|AB|T58.2X3D|ICD10CM|Tox eff of carb monx fr incmpl combst dmst fuel, asslt, subs|Tox eff of carb monx fr incmpl combst dmst fuel, asslt, subs +C2884786|T037|AB|T58.2X3S|ICD10CM|Tox eff of carb monx fr incmpl combst dmst fuel, asslt, sqla|Tox eff of carb monx fr incmpl combst dmst fuel, asslt, sqla +C2884786|T037|PT|T58.2X3S|ICD10CM|Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, assault, sequela|Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, assault, sequela +C2884787|T037|AB|T58.2X4|ICD10CM|Toxic eff of carb monx from incmpl combst dmst fuel, undet|Toxic eff of carb monx from incmpl combst dmst fuel, undet +C2884787|T037|HT|T58.2X4|ICD10CM|Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, undetermined|Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, undetermined +C2884788|T037|AB|T58.2X4A|ICD10CM|Tox eff of carb monx fr incmpl combst dmst fuel, undet, init|Tox eff of carb monx fr incmpl combst dmst fuel, undet, init +C2884789|T037|AB|T58.2X4D|ICD10CM|Tox eff of carb monx fr incmpl combst dmst fuel, undet, subs|Tox eff of carb monx fr incmpl combst dmst fuel, undet, subs +C2884790|T037|AB|T58.2X4S|ICD10CM|Tox eff of carb monx fr incmpl combst dmst fuel, undet, sqla|Tox eff of carb monx fr incmpl combst dmst fuel, undet, sqla +C2884791|T037|ET|T58.8|ICD10CM|Toxic effect of carbon monoxide from blast furnace gas|Toxic effect of carbon monoxide from blast furnace gas +C2884792|T037|ET|T58.8|ICD10CM|Toxic effect of carbon monoxide from fuels in industrial use|Toxic effect of carbon monoxide from fuels in industrial use +C2884793|T037|ET|T58.8|ICD10CM|Toxic effect of carbon monoxide from kiln vapor|Toxic effect of carbon monoxide from kiln vapor +C2884794|T037|AB|T58.8|ICD10CM|Toxic effect of carbon monoxide from other source|Toxic effect of carbon monoxide from other source +C2884794|T037|HT|T58.8|ICD10CM|Toxic effect of carbon monoxide from other source|Toxic effect of carbon monoxide from other source +C2884794|T037|HT|T58.8X|ICD10CM|Toxic effect of carbon monoxide from other source|Toxic effect of carbon monoxide from other source +C2884794|T037|AB|T58.8X|ICD10CM|Toxic effect of carbon monoxide from other source|Toxic effect of carbon monoxide from other source +C2884795|T037|AB|T58.8X1|ICD10CM|Toxic effect of carbon monoxide from oth source, accidental|Toxic effect of carbon monoxide from oth source, accidental +C2884795|T037|HT|T58.8X1|ICD10CM|Toxic effect of carbon monoxide from other source, accidental (unintentional)|Toxic effect of carbon monoxide from other source, accidental (unintentional) +C2884796|T037|AB|T58.8X1A|ICD10CM|Toxic effect of carb monx from oth source, accidental, init|Toxic effect of carb monx from oth source, accidental, init +C2884796|T037|PT|T58.8X1A|ICD10CM|Toxic effect of carbon monoxide from other source, accidental (unintentional), initial encounter|Toxic effect of carbon monoxide from other source, accidental (unintentional), initial encounter +C2884797|T037|AB|T58.8X1D|ICD10CM|Toxic effect of carb monx from oth source, accidental, subs|Toxic effect of carb monx from oth source, accidental, subs +C2884797|T037|PT|T58.8X1D|ICD10CM|Toxic effect of carbon monoxide from other source, accidental (unintentional), subsequent encounter|Toxic effect of carbon monoxide from other source, accidental (unintentional), subsequent encounter +C2884798|T037|AB|T58.8X1S|ICD10CM|Toxic effect of carb monx from oth source, acc, sequela|Toxic effect of carb monx from oth source, acc, sequela +C2884798|T037|PT|T58.8X1S|ICD10CM|Toxic effect of carbon monoxide from other source, accidental (unintentional), sequela|Toxic effect of carbon monoxide from other source, accidental (unintentional), sequela +C2884799|T037|AB|T58.8X2|ICD10CM|Toxic effect of carbon monoxide from oth source, self-harm|Toxic effect of carbon monoxide from oth source, self-harm +C2884799|T037|HT|T58.8X2|ICD10CM|Toxic effect of carbon monoxide from other source, intentional self-harm|Toxic effect of carbon monoxide from other source, intentional self-harm +C2884800|T037|AB|T58.8X2A|ICD10CM|Toxic effect of carb monx from oth source, self-harm, init|Toxic effect of carb monx from oth source, self-harm, init +C2884800|T037|PT|T58.8X2A|ICD10CM|Toxic effect of carbon monoxide from other source, intentional self-harm, initial encounter|Toxic effect of carbon monoxide from other source, intentional self-harm, initial encounter +C2884801|T037|AB|T58.8X2D|ICD10CM|Toxic effect of carb monx from oth source, self-harm, subs|Toxic effect of carb monx from oth source, self-harm, subs +C2884801|T037|PT|T58.8X2D|ICD10CM|Toxic effect of carbon monoxide from other source, intentional self-harm, subsequent encounter|Toxic effect of carbon monoxide from other source, intentional self-harm, subsequent encounter +C2884802|T037|AB|T58.8X2S|ICD10CM|Toxic effect of carb monx from oth source, slf-hrm, sequela|Toxic effect of carb monx from oth source, slf-hrm, sequela +C2884802|T037|PT|T58.8X2S|ICD10CM|Toxic effect of carbon monoxide from other source, intentional self-harm, sequela|Toxic effect of carbon monoxide from other source, intentional self-harm, sequela +C2884803|T037|AB|T58.8X3|ICD10CM|Toxic effect of carbon monoxide from other source, assault|Toxic effect of carbon monoxide from other source, assault +C2884803|T037|HT|T58.8X3|ICD10CM|Toxic effect of carbon monoxide from other source, assault|Toxic effect of carbon monoxide from other source, assault +C2884804|T037|AB|T58.8X3A|ICD10CM|Toxic effect of carb monx from oth source, assault, init|Toxic effect of carb monx from oth source, assault, init +C2884804|T037|PT|T58.8X3A|ICD10CM|Toxic effect of carbon monoxide from other source, assault, initial encounter|Toxic effect of carbon monoxide from other source, assault, initial encounter +C2884805|T037|AB|T58.8X3D|ICD10CM|Toxic effect of carb monx from oth source, assault, subs|Toxic effect of carb monx from oth source, assault, subs +C2884805|T037|PT|T58.8X3D|ICD10CM|Toxic effect of carbon monoxide from other source, assault, subsequent encounter|Toxic effect of carbon monoxide from other source, assault, subsequent encounter +C2884806|T037|AB|T58.8X3S|ICD10CM|Toxic effect of carb monx from oth source, assault, sequela|Toxic effect of carb monx from oth source, assault, sequela +C2884806|T037|PT|T58.8X3S|ICD10CM|Toxic effect of carbon monoxide from other source, assault, sequela|Toxic effect of carbon monoxide from other source, assault, sequela +C2884807|T037|AB|T58.8X4|ICD10CM|Toxic effect of carb monx from oth source, undetermined|Toxic effect of carb monx from oth source, undetermined +C2884807|T037|HT|T58.8X4|ICD10CM|Toxic effect of carbon monoxide from other source, undetermined|Toxic effect of carbon monoxide from other source, undetermined +C2884808|T037|AB|T58.8X4A|ICD10CM|Toxic effect of carb monx from oth source, undet, init|Toxic effect of carb monx from oth source, undet, init +C2884808|T037|PT|T58.8X4A|ICD10CM|Toxic effect of carbon monoxide from other source, undetermined, initial encounter|Toxic effect of carbon monoxide from other source, undetermined, initial encounter +C2884809|T037|AB|T58.8X4D|ICD10CM|Toxic effect of carb monx from oth source, undet, subs|Toxic effect of carb monx from oth source, undet, subs +C2884809|T037|PT|T58.8X4D|ICD10CM|Toxic effect of carbon monoxide from other source, undetermined, subsequent encounter|Toxic effect of carbon monoxide from other source, undetermined, subsequent encounter +C2884810|T037|AB|T58.8X4S|ICD10CM|Toxic effect of carb monx from oth source, undet, sequela|Toxic effect of carb monx from oth source, undet, sequela +C2884810|T037|PT|T58.8X4S|ICD10CM|Toxic effect of carbon monoxide from other source, undetermined, sequela|Toxic effect of carbon monoxide from other source, undetermined, sequela +C2884811|T037|AB|T58.9|ICD10CM|Toxic effect of carbon monoxide from unspecified source|Toxic effect of carbon monoxide from unspecified source +C2884811|T037|HT|T58.9|ICD10CM|Toxic effect of carbon monoxide from unspecified source|Toxic effect of carbon monoxide from unspecified source +C2884812|T037|AB|T58.91|ICD10CM|Toxic effect of carb monx from unsp source, accidental|Toxic effect of carb monx from unsp source, accidental +C2884812|T037|HT|T58.91|ICD10CM|Toxic effect of carbon monoxide from unspecified source, accidental (unintentional)|Toxic effect of carbon monoxide from unspecified source, accidental (unintentional) +C2884813|T037|AB|T58.91XA|ICD10CM|Toxic effect of carb monx from unsp source, acc, init|Toxic effect of carb monx from unsp source, acc, init +C2884814|T037|AB|T58.91XD|ICD10CM|Toxic effect of carb monx from unsp source, acc, subs|Toxic effect of carb monx from unsp source, acc, subs +C2884815|T037|AB|T58.91XS|ICD10CM|Toxic effect of carb monx from unsp source, acc, sequela|Toxic effect of carb monx from unsp source, acc, sequela +C2884815|T037|PT|T58.91XS|ICD10CM|Toxic effect of carbon monoxide from unspecified source, accidental (unintentional), sequela|Toxic effect of carbon monoxide from unspecified source, accidental (unintentional), sequela +C2884816|T037|AB|T58.92|ICD10CM|Toxic effect of carbon monoxide from unsp source, self-harm|Toxic effect of carbon monoxide from unsp source, self-harm +C2884816|T037|HT|T58.92|ICD10CM|Toxic effect of carbon monoxide from unspecified source, intentional self-harm|Toxic effect of carbon monoxide from unspecified source, intentional self-harm +C2884817|T037|AB|T58.92XA|ICD10CM|Toxic effect of carb monx from unsp source, self-harm, init|Toxic effect of carb monx from unsp source, self-harm, init +C2884817|T037|PT|T58.92XA|ICD10CM|Toxic effect of carbon monoxide from unspecified source, intentional self-harm, initial encounter|Toxic effect of carbon monoxide from unspecified source, intentional self-harm, initial encounter +C2884818|T037|AB|T58.92XD|ICD10CM|Toxic effect of carb monx from unsp source, self-harm, subs|Toxic effect of carb monx from unsp source, self-harm, subs +C2884818|T037|PT|T58.92XD|ICD10CM|Toxic effect of carbon monoxide from unspecified source, intentional self-harm, subsequent encounter|Toxic effect of carbon monoxide from unspecified source, intentional self-harm, subsequent encounter +C2884819|T037|AB|T58.92XS|ICD10CM|Toxic effect of carb monx from unsp source, slf-hrm, sequela|Toxic effect of carb monx from unsp source, slf-hrm, sequela +C2884819|T037|PT|T58.92XS|ICD10CM|Toxic effect of carbon monoxide from unspecified source, intentional self-harm, sequela|Toxic effect of carbon monoxide from unspecified source, intentional self-harm, sequela +C2884820|T037|AB|T58.93|ICD10CM|Toxic effect of carbon monoxide from unsp source, assault|Toxic effect of carbon monoxide from unsp source, assault +C2884820|T037|HT|T58.93|ICD10CM|Toxic effect of carbon monoxide from unspecified source, assault|Toxic effect of carbon monoxide from unspecified source, assault +C2884821|T037|AB|T58.93XA|ICD10CM|Toxic effect of carb monx from unsp source, assault, init|Toxic effect of carb monx from unsp source, assault, init +C2884821|T037|PT|T58.93XA|ICD10CM|Toxic effect of carbon monoxide from unspecified source, assault, initial encounter|Toxic effect of carbon monoxide from unspecified source, assault, initial encounter +C2884822|T037|AB|T58.93XD|ICD10CM|Toxic effect of carb monx from unsp source, assault, subs|Toxic effect of carb monx from unsp source, assault, subs +C2884822|T037|PT|T58.93XD|ICD10CM|Toxic effect of carbon monoxide from unspecified source, assault, subsequent encounter|Toxic effect of carbon monoxide from unspecified source, assault, subsequent encounter +C2884823|T037|AB|T58.93XS|ICD10CM|Toxic effect of carb monx from unsp source, assault, sequela|Toxic effect of carb monx from unsp source, assault, sequela +C2884823|T037|PT|T58.93XS|ICD10CM|Toxic effect of carbon monoxide from unspecified source, assault, sequela|Toxic effect of carbon monoxide from unspecified source, assault, sequela +C2884824|T037|AB|T58.94|ICD10CM|Toxic effect of carb monx from unsp source, undetermined|Toxic effect of carb monx from unsp source, undetermined +C2884824|T037|HT|T58.94|ICD10CM|Toxic effect of carbon monoxide from unspecified source, undetermined|Toxic effect of carbon monoxide from unspecified source, undetermined +C2884825|T037|AB|T58.94XA|ICD10CM|Toxic effect of carb monx from unsp source, undet, init|Toxic effect of carb monx from unsp source, undet, init +C2884825|T037|PT|T58.94XA|ICD10CM|Toxic effect of carbon monoxide from unspecified source, undetermined, initial encounter|Toxic effect of carbon monoxide from unspecified source, undetermined, initial encounter +C2884826|T037|AB|T58.94XD|ICD10CM|Toxic effect of carb monx from unsp source, undet, subs|Toxic effect of carb monx from unsp source, undet, subs +C2884826|T037|PT|T58.94XD|ICD10CM|Toxic effect of carbon monoxide from unspecified source, undetermined, subsequent encounter|Toxic effect of carbon monoxide from unspecified source, undetermined, subsequent encounter +C2884827|T037|AB|T58.94XS|ICD10CM|Toxic effect of carb monx from unsp source, undet, sequela|Toxic effect of carb monx from unsp source, undet, sequela +C2884827|T037|PT|T58.94XS|ICD10CM|Toxic effect of carbon monoxide from unspecified source, undetermined, sequela|Toxic effect of carbon monoxide from unspecified source, undetermined, sequela +C4759715|T037|ET|T59|ICD10CM|aerosol propellants|aerosol propellants +C0413000|T037|HT|T59|ICD10AE|Toxic effect of other gases, fumes and vapors|Toxic effect of other gases, fumes and vapors +C0413000|T037|AB|T59|ICD10CM|Toxic effect of other gases, fumes and vapors|Toxic effect of other gases, fumes and vapors +C0413000|T037|HT|T59|ICD10CM|Toxic effect of other gases, fumes and vapors|Toxic effect of other gases, fumes and vapors +C0413000|T037|HT|T59|ICD10|Toxic effect of other gases, fumes and vapours|Toxic effect of other gases, fumes and vapours +C0161713|T037|PS|T59.0|ICD10|Nitrogen oxides|Nitrogen oxides +C0161713|T037|PX|T59.0|ICD10|Toxic effect of nitrogen oxides|Toxic effect of nitrogen oxides +C0161713|T037|HT|T59.0|ICD10CM|Toxic effect of nitrogen oxides|Toxic effect of nitrogen oxides +C0161713|T037|AB|T59.0|ICD10CM|Toxic effect of nitrogen oxides|Toxic effect of nitrogen oxides +C0161713|T037|HT|T59.0X|ICD10CM|Toxic effect of nitrogen oxides|Toxic effect of nitrogen oxides +C0161713|T037|AB|T59.0X|ICD10CM|Toxic effect of nitrogen oxides|Toxic effect of nitrogen oxides +C0161713|T037|ET|T59.0X1|ICD10CM|Toxic effect of nitrogen oxides NOS|Toxic effect of nitrogen oxides NOS +C2884828|T037|AB|T59.0X1|ICD10CM|Toxic effect of nitrogen oxides, accidental (unintentional)|Toxic effect of nitrogen oxides, accidental (unintentional) +C2884828|T037|HT|T59.0X1|ICD10CM|Toxic effect of nitrogen oxides, accidental (unintentional)|Toxic effect of nitrogen oxides, accidental (unintentional) +C2884829|T037|PT|T59.0X1A|ICD10CM|Toxic effect of nitrogen oxides, accidental (unintentional), initial encounter|Toxic effect of nitrogen oxides, accidental (unintentional), initial encounter +C2884829|T037|AB|T59.0X1A|ICD10CM|Toxic effect of nitrogen oxides, accidental, init|Toxic effect of nitrogen oxides, accidental, init +C2884830|T037|PT|T59.0X1D|ICD10CM|Toxic effect of nitrogen oxides, accidental (unintentional), subsequent encounter|Toxic effect of nitrogen oxides, accidental (unintentional), subsequent encounter +C2884830|T037|AB|T59.0X1D|ICD10CM|Toxic effect of nitrogen oxides, accidental, subs|Toxic effect of nitrogen oxides, accidental, subs +C2884831|T037|PT|T59.0X1S|ICD10CM|Toxic effect of nitrogen oxides, accidental (unintentional), sequela|Toxic effect of nitrogen oxides, accidental (unintentional), sequela +C2884831|T037|AB|T59.0X1S|ICD10CM|Toxic effect of nitrogen oxides, accidental, sequela|Toxic effect of nitrogen oxides, accidental, sequela +C2884832|T037|AB|T59.0X2|ICD10CM|Toxic effect of nitrogen oxides, intentional self-harm|Toxic effect of nitrogen oxides, intentional self-harm +C2884832|T037|HT|T59.0X2|ICD10CM|Toxic effect of nitrogen oxides, intentional self-harm|Toxic effect of nitrogen oxides, intentional self-harm +C2884833|T037|AB|T59.0X2A|ICD10CM|Toxic effect of nitrogen oxides, intentional self-harm, init|Toxic effect of nitrogen oxides, intentional self-harm, init +C2884833|T037|PT|T59.0X2A|ICD10CM|Toxic effect of nitrogen oxides, intentional self-harm, initial encounter|Toxic effect of nitrogen oxides, intentional self-harm, initial encounter +C2884834|T037|AB|T59.0X2D|ICD10CM|Toxic effect of nitrogen oxides, intentional self-harm, subs|Toxic effect of nitrogen oxides, intentional self-harm, subs +C2884834|T037|PT|T59.0X2D|ICD10CM|Toxic effect of nitrogen oxides, intentional self-harm, subsequent encounter|Toxic effect of nitrogen oxides, intentional self-harm, subsequent encounter +C2884835|T037|PT|T59.0X2S|ICD10CM|Toxic effect of nitrogen oxides, intentional self-harm, sequela|Toxic effect of nitrogen oxides, intentional self-harm, sequela +C2884835|T037|AB|T59.0X2S|ICD10CM|Toxic effect of nitrogen oxides, self-harm, sequela|Toxic effect of nitrogen oxides, self-harm, sequela +C2884836|T037|AB|T59.0X3|ICD10CM|Toxic effect of nitrogen oxides, assault|Toxic effect of nitrogen oxides, assault +C2884836|T037|HT|T59.0X3|ICD10CM|Toxic effect of nitrogen oxides, assault|Toxic effect of nitrogen oxides, assault +C2884837|T037|AB|T59.0X3A|ICD10CM|Toxic effect of nitrogen oxides, assault, initial encounter|Toxic effect of nitrogen oxides, assault, initial encounter +C2884837|T037|PT|T59.0X3A|ICD10CM|Toxic effect of nitrogen oxides, assault, initial encounter|Toxic effect of nitrogen oxides, assault, initial encounter +C2884838|T037|AB|T59.0X3D|ICD10CM|Toxic effect of nitrogen oxides, assault, subs encntr|Toxic effect of nitrogen oxides, assault, subs encntr +C2884838|T037|PT|T59.0X3D|ICD10CM|Toxic effect of nitrogen oxides, assault, subsequent encounter|Toxic effect of nitrogen oxides, assault, subsequent encounter +C2884839|T037|AB|T59.0X3S|ICD10CM|Toxic effect of nitrogen oxides, assault, sequela|Toxic effect of nitrogen oxides, assault, sequela +C2884839|T037|PT|T59.0X3S|ICD10CM|Toxic effect of nitrogen oxides, assault, sequela|Toxic effect of nitrogen oxides, assault, sequela +C2884840|T037|AB|T59.0X4|ICD10CM|Toxic effect of nitrogen oxides, undetermined|Toxic effect of nitrogen oxides, undetermined +C2884840|T037|HT|T59.0X4|ICD10CM|Toxic effect of nitrogen oxides, undetermined|Toxic effect of nitrogen oxides, undetermined +C2884841|T037|AB|T59.0X4A|ICD10CM|Toxic effect of nitrogen oxides, undetermined, init encntr|Toxic effect of nitrogen oxides, undetermined, init encntr +C2884841|T037|PT|T59.0X4A|ICD10CM|Toxic effect of nitrogen oxides, undetermined, initial encounter|Toxic effect of nitrogen oxides, undetermined, initial encounter +C2884842|T037|AB|T59.0X4D|ICD10CM|Toxic effect of nitrogen oxides, undetermined, subs encntr|Toxic effect of nitrogen oxides, undetermined, subs encntr +C2884842|T037|PT|T59.0X4D|ICD10CM|Toxic effect of nitrogen oxides, undetermined, subsequent encounter|Toxic effect of nitrogen oxides, undetermined, subsequent encounter +C2884843|T037|AB|T59.0X4S|ICD10CM|Toxic effect of nitrogen oxides, undetermined, sequela|Toxic effect of nitrogen oxides, undetermined, sequela +C2884843|T037|PT|T59.0X4S|ICD10CM|Toxic effect of nitrogen oxides, undetermined, sequela|Toxic effect of nitrogen oxides, undetermined, sequela +C0161714|T037|PS|T59.1|ICD10|Sulfur dioxide|Sulfur dioxide +C0161714|T037|PX|T59.1|ICD10|Toxic effect of sulfur dioxide|Toxic effect of sulfur dioxide +C0161714|T037|HT|T59.1|ICD10CM|Toxic effect of sulfur dioxide|Toxic effect of sulfur dioxide +C0161714|T037|AB|T59.1|ICD10CM|Toxic effect of sulfur dioxide|Toxic effect of sulfur dioxide +C0161714|T037|HT|T59.1X|ICD10CM|Toxic effect of sulfur dioxide|Toxic effect of sulfur dioxide +C0161714|T037|AB|T59.1X|ICD10CM|Toxic effect of sulfur dioxide|Toxic effect of sulfur dioxide +C0161714|T037|ET|T59.1X1|ICD10CM|Toxic effect of sulfur dioxide NOS|Toxic effect of sulfur dioxide NOS +C2884844|T037|AB|T59.1X1|ICD10CM|Toxic effect of sulfur dioxide, accidental (unintentional)|Toxic effect of sulfur dioxide, accidental (unintentional) +C2884844|T037|HT|T59.1X1|ICD10CM|Toxic effect of sulfur dioxide, accidental (unintentional)|Toxic effect of sulfur dioxide, accidental (unintentional) +C2884845|T037|PT|T59.1X1A|ICD10CM|Toxic effect of sulfur dioxide, accidental (unintentional), initial encounter|Toxic effect of sulfur dioxide, accidental (unintentional), initial encounter +C2884845|T037|AB|T59.1X1A|ICD10CM|Toxic effect of sulfur dioxide, accidental, init|Toxic effect of sulfur dioxide, accidental, init +C2884846|T037|PT|T59.1X1D|ICD10CM|Toxic effect of sulfur dioxide, accidental (unintentional), subsequent encounter|Toxic effect of sulfur dioxide, accidental (unintentional), subsequent encounter +C2884846|T037|AB|T59.1X1D|ICD10CM|Toxic effect of sulfur dioxide, accidental, subs|Toxic effect of sulfur dioxide, accidental, subs +C2884847|T037|PT|T59.1X1S|ICD10CM|Toxic effect of sulfur dioxide, accidental (unintentional), sequela|Toxic effect of sulfur dioxide, accidental (unintentional), sequela +C2884847|T037|AB|T59.1X1S|ICD10CM|Toxic effect of sulfur dioxide, accidental, sequela|Toxic effect of sulfur dioxide, accidental, sequela +C2884848|T037|AB|T59.1X2|ICD10CM|Toxic effect of sulfur dioxide, intentional self-harm|Toxic effect of sulfur dioxide, intentional self-harm +C2884848|T037|HT|T59.1X2|ICD10CM|Toxic effect of sulfur dioxide, intentional self-harm|Toxic effect of sulfur dioxide, intentional self-harm +C2884849|T037|AB|T59.1X2A|ICD10CM|Toxic effect of sulfur dioxide, intentional self-harm, init|Toxic effect of sulfur dioxide, intentional self-harm, init +C2884849|T037|PT|T59.1X2A|ICD10CM|Toxic effect of sulfur dioxide, intentional self-harm, initial encounter|Toxic effect of sulfur dioxide, intentional self-harm, initial encounter +C2884850|T037|AB|T59.1X2D|ICD10CM|Toxic effect of sulfur dioxide, intentional self-harm, subs|Toxic effect of sulfur dioxide, intentional self-harm, subs +C2884850|T037|PT|T59.1X2D|ICD10CM|Toxic effect of sulfur dioxide, intentional self-harm, subsequent encounter|Toxic effect of sulfur dioxide, intentional self-harm, subsequent encounter +C2884851|T037|PT|T59.1X2S|ICD10CM|Toxic effect of sulfur dioxide, intentional self-harm, sequela|Toxic effect of sulfur dioxide, intentional self-harm, sequela +C2884851|T037|AB|T59.1X2S|ICD10CM|Toxic effect of sulfur dioxide, self-harm, sequela|Toxic effect of sulfur dioxide, self-harm, sequela +C2884852|T037|AB|T59.1X3|ICD10CM|Toxic effect of sulfur dioxide, assault|Toxic effect of sulfur dioxide, assault +C2884852|T037|HT|T59.1X3|ICD10CM|Toxic effect of sulfur dioxide, assault|Toxic effect of sulfur dioxide, assault +C2884853|T037|AB|T59.1X3A|ICD10CM|Toxic effect of sulfur dioxide, assault, initial encounter|Toxic effect of sulfur dioxide, assault, initial encounter +C2884853|T037|PT|T59.1X3A|ICD10CM|Toxic effect of sulfur dioxide, assault, initial encounter|Toxic effect of sulfur dioxide, assault, initial encounter +C2884854|T037|AB|T59.1X3D|ICD10CM|Toxic effect of sulfur dioxide, assault, subs encntr|Toxic effect of sulfur dioxide, assault, subs encntr +C2884854|T037|PT|T59.1X3D|ICD10CM|Toxic effect of sulfur dioxide, assault, subsequent encounter|Toxic effect of sulfur dioxide, assault, subsequent encounter +C2884855|T037|AB|T59.1X3S|ICD10CM|Toxic effect of sulfur dioxide, assault, sequela|Toxic effect of sulfur dioxide, assault, sequela +C2884855|T037|PT|T59.1X3S|ICD10CM|Toxic effect of sulfur dioxide, assault, sequela|Toxic effect of sulfur dioxide, assault, sequela +C2884856|T037|AB|T59.1X4|ICD10CM|Toxic effect of sulfur dioxide, undetermined|Toxic effect of sulfur dioxide, undetermined +C2884856|T037|HT|T59.1X4|ICD10CM|Toxic effect of sulfur dioxide, undetermined|Toxic effect of sulfur dioxide, undetermined +C2884857|T037|AB|T59.1X4A|ICD10CM|Toxic effect of sulfur dioxide, undetermined, init encntr|Toxic effect of sulfur dioxide, undetermined, init encntr +C2884857|T037|PT|T59.1X4A|ICD10CM|Toxic effect of sulfur dioxide, undetermined, initial encounter|Toxic effect of sulfur dioxide, undetermined, initial encounter +C2884858|T037|AB|T59.1X4D|ICD10CM|Toxic effect of sulfur dioxide, undetermined, subs encntr|Toxic effect of sulfur dioxide, undetermined, subs encntr +C2884858|T037|PT|T59.1X4D|ICD10CM|Toxic effect of sulfur dioxide, undetermined, subsequent encounter|Toxic effect of sulfur dioxide, undetermined, subsequent encounter +C2884859|T037|AB|T59.1X4S|ICD10CM|Toxic effect of sulfur dioxide, undetermined, sequela|Toxic effect of sulfur dioxide, undetermined, sequela +C2884859|T037|PT|T59.1X4S|ICD10CM|Toxic effect of sulfur dioxide, undetermined, sequela|Toxic effect of sulfur dioxide, undetermined, sequela +C0452122|T037|PS|T59.2|ICD10|Formaldehyde|Formaldehyde +C0452122|T037|PX|T59.2|ICD10|Toxic effect of formaldehyde|Toxic effect of formaldehyde +C0452122|T037|HT|T59.2|ICD10CM|Toxic effect of formaldehyde|Toxic effect of formaldehyde +C0452122|T037|AB|T59.2|ICD10CM|Toxic effect of formaldehyde|Toxic effect of formaldehyde +C0452122|T037|HT|T59.2X|ICD10CM|Toxic effect of formaldehyde|Toxic effect of formaldehyde +C0452122|T037|AB|T59.2X|ICD10CM|Toxic effect of formaldehyde|Toxic effect of formaldehyde +C0452122|T037|ET|T59.2X1|ICD10CM|Toxic effect of formaldehyde NOS|Toxic effect of formaldehyde NOS +C2884860|T037|AB|T59.2X1|ICD10CM|Toxic effect of formaldehyde, accidental (unintentional)|Toxic effect of formaldehyde, accidental (unintentional) +C2884860|T037|HT|T59.2X1|ICD10CM|Toxic effect of formaldehyde, accidental (unintentional)|Toxic effect of formaldehyde, accidental (unintentional) +C2884861|T037|PT|T59.2X1A|ICD10CM|Toxic effect of formaldehyde, accidental (unintentional), initial encounter|Toxic effect of formaldehyde, accidental (unintentional), initial encounter +C2884861|T037|AB|T59.2X1A|ICD10CM|Toxic effect of formaldehyde, accidental, init|Toxic effect of formaldehyde, accidental, init +C2884862|T037|PT|T59.2X1D|ICD10CM|Toxic effect of formaldehyde, accidental (unintentional), subsequent encounter|Toxic effect of formaldehyde, accidental (unintentional), subsequent encounter +C2884862|T037|AB|T59.2X1D|ICD10CM|Toxic effect of formaldehyde, accidental, subs|Toxic effect of formaldehyde, accidental, subs +C2884863|T037|PT|T59.2X1S|ICD10CM|Toxic effect of formaldehyde, accidental (unintentional), sequela|Toxic effect of formaldehyde, accidental (unintentional), sequela +C2884863|T037|AB|T59.2X1S|ICD10CM|Toxic effect of formaldehyde, accidental, sequela|Toxic effect of formaldehyde, accidental, sequela +C2884864|T037|AB|T59.2X2|ICD10CM|Toxic effect of formaldehyde, intentional self-harm|Toxic effect of formaldehyde, intentional self-harm +C2884864|T037|HT|T59.2X2|ICD10CM|Toxic effect of formaldehyde, intentional self-harm|Toxic effect of formaldehyde, intentional self-harm +C2884865|T037|AB|T59.2X2A|ICD10CM|Toxic effect of formaldehyde, intentional self-harm, init|Toxic effect of formaldehyde, intentional self-harm, init +C2884865|T037|PT|T59.2X2A|ICD10CM|Toxic effect of formaldehyde, intentional self-harm, initial encounter|Toxic effect of formaldehyde, intentional self-harm, initial encounter +C2884866|T037|AB|T59.2X2D|ICD10CM|Toxic effect of formaldehyde, intentional self-harm, subs|Toxic effect of formaldehyde, intentional self-harm, subs +C2884866|T037|PT|T59.2X2D|ICD10CM|Toxic effect of formaldehyde, intentional self-harm, subsequent encounter|Toxic effect of formaldehyde, intentional self-harm, subsequent encounter +C2884867|T037|AB|T59.2X2S|ICD10CM|Toxic effect of formaldehyde, intentional self-harm, sequela|Toxic effect of formaldehyde, intentional self-harm, sequela +C2884867|T037|PT|T59.2X2S|ICD10CM|Toxic effect of formaldehyde, intentional self-harm, sequela|Toxic effect of formaldehyde, intentional self-harm, sequela +C2884868|T037|AB|T59.2X3|ICD10CM|Toxic effect of formaldehyde, assault|Toxic effect of formaldehyde, assault +C2884868|T037|HT|T59.2X3|ICD10CM|Toxic effect of formaldehyde, assault|Toxic effect of formaldehyde, assault +C2884869|T037|AB|T59.2X3A|ICD10CM|Toxic effect of formaldehyde, assault, initial encounter|Toxic effect of formaldehyde, assault, initial encounter +C2884869|T037|PT|T59.2X3A|ICD10CM|Toxic effect of formaldehyde, assault, initial encounter|Toxic effect of formaldehyde, assault, initial encounter +C2884870|T037|AB|T59.2X3D|ICD10CM|Toxic effect of formaldehyde, assault, subsequent encounter|Toxic effect of formaldehyde, assault, subsequent encounter +C2884870|T037|PT|T59.2X3D|ICD10CM|Toxic effect of formaldehyde, assault, subsequent encounter|Toxic effect of formaldehyde, assault, subsequent encounter +C2884871|T037|AB|T59.2X3S|ICD10CM|Toxic effect of formaldehyde, assault, sequela|Toxic effect of formaldehyde, assault, sequela +C2884871|T037|PT|T59.2X3S|ICD10CM|Toxic effect of formaldehyde, assault, sequela|Toxic effect of formaldehyde, assault, sequela +C2884872|T037|AB|T59.2X4|ICD10CM|Toxic effect of formaldehyde, undetermined|Toxic effect of formaldehyde, undetermined +C2884872|T037|HT|T59.2X4|ICD10CM|Toxic effect of formaldehyde, undetermined|Toxic effect of formaldehyde, undetermined +C2884873|T037|AB|T59.2X4A|ICD10CM|Toxic effect of formaldehyde, undetermined, init encntr|Toxic effect of formaldehyde, undetermined, init encntr +C2884873|T037|PT|T59.2X4A|ICD10CM|Toxic effect of formaldehyde, undetermined, initial encounter|Toxic effect of formaldehyde, undetermined, initial encounter +C2884874|T037|AB|T59.2X4D|ICD10CM|Toxic effect of formaldehyde, undetermined, subs encntr|Toxic effect of formaldehyde, undetermined, subs encntr +C2884874|T037|PT|T59.2X4D|ICD10CM|Toxic effect of formaldehyde, undetermined, subsequent encounter|Toxic effect of formaldehyde, undetermined, subsequent encounter +C2884875|T037|AB|T59.2X4S|ICD10CM|Toxic effect of formaldehyde, undetermined, sequela|Toxic effect of formaldehyde, undetermined, sequela +C2884875|T037|PT|T59.2X4S|ICD10CM|Toxic effect of formaldehyde, undetermined, sequela|Toxic effect of formaldehyde, undetermined, sequela +C0161716|T037|PS|T59.3|ICD10|Lacrimogenic gas|Lacrimogenic gas +C0161716|T037|PX|T59.3|ICD10|Toxic effect of lacrimogenic gas|Toxic effect of lacrimogenic gas +C0161716|T037|HT|T59.3|ICD10CM|Toxic effect of lacrimogenic gas|Toxic effect of lacrimogenic gas +C0161716|T037|AB|T59.3|ICD10CM|Toxic effect of lacrimogenic gas|Toxic effect of lacrimogenic gas +C0161716|T037|ET|T59.3|ICD10CM|Toxic effect of tear gas|Toxic effect of tear gas +C0161716|T037|HT|T59.3X|ICD10CM|Toxic effect of lacrimogenic gas|Toxic effect of lacrimogenic gas +C0161716|T037|AB|T59.3X|ICD10CM|Toxic effect of lacrimogenic gas|Toxic effect of lacrimogenic gas +C0161716|T037|ET|T59.3X1|ICD10CM|Toxic effect of lacrimogenic gas NOS|Toxic effect of lacrimogenic gas NOS +C2884876|T037|AB|T59.3X1|ICD10CM|Toxic effect of lacrimogenic gas, accidental (unintentional)|Toxic effect of lacrimogenic gas, accidental (unintentional) +C2884876|T037|HT|T59.3X1|ICD10CM|Toxic effect of lacrimogenic gas, accidental (unintentional)|Toxic effect of lacrimogenic gas, accidental (unintentional) +C2884877|T037|PT|T59.3X1A|ICD10CM|Toxic effect of lacrimogenic gas, accidental (unintentional), initial encounter|Toxic effect of lacrimogenic gas, accidental (unintentional), initial encounter +C2884877|T037|AB|T59.3X1A|ICD10CM|Toxic effect of lacrimogenic gas, accidental, init|Toxic effect of lacrimogenic gas, accidental, init +C2884878|T037|PT|T59.3X1D|ICD10CM|Toxic effect of lacrimogenic gas, accidental (unintentional), subsequent encounter|Toxic effect of lacrimogenic gas, accidental (unintentional), subsequent encounter +C2884878|T037|AB|T59.3X1D|ICD10CM|Toxic effect of lacrimogenic gas, accidental, subs|Toxic effect of lacrimogenic gas, accidental, subs +C2884879|T037|PT|T59.3X1S|ICD10CM|Toxic effect of lacrimogenic gas, accidental (unintentional), sequela|Toxic effect of lacrimogenic gas, accidental (unintentional), sequela +C2884879|T037|AB|T59.3X1S|ICD10CM|Toxic effect of lacrimogenic gas, accidental, sequela|Toxic effect of lacrimogenic gas, accidental, sequela +C2884880|T037|AB|T59.3X2|ICD10CM|Toxic effect of lacrimogenic gas, intentional self-harm|Toxic effect of lacrimogenic gas, intentional self-harm +C2884880|T037|HT|T59.3X2|ICD10CM|Toxic effect of lacrimogenic gas, intentional self-harm|Toxic effect of lacrimogenic gas, intentional self-harm +C2884881|T037|PT|T59.3X2A|ICD10CM|Toxic effect of lacrimogenic gas, intentional self-harm, initial encounter|Toxic effect of lacrimogenic gas, intentional self-harm, initial encounter +C2884881|T037|AB|T59.3X2A|ICD10CM|Toxic effect of lacrimogenic gas, self-harm, init|Toxic effect of lacrimogenic gas, self-harm, init +C2884882|T037|PT|T59.3X2D|ICD10CM|Toxic effect of lacrimogenic gas, intentional self-harm, subsequent encounter|Toxic effect of lacrimogenic gas, intentional self-harm, subsequent encounter +C2884882|T037|AB|T59.3X2D|ICD10CM|Toxic effect of lacrimogenic gas, self-harm, subs|Toxic effect of lacrimogenic gas, self-harm, subs +C2884883|T037|PT|T59.3X2S|ICD10CM|Toxic effect of lacrimogenic gas, intentional self-harm, sequela|Toxic effect of lacrimogenic gas, intentional self-harm, sequela +C2884883|T037|AB|T59.3X2S|ICD10CM|Toxic effect of lacrimogenic gas, self-harm, sequela|Toxic effect of lacrimogenic gas, self-harm, sequela +C2884884|T037|AB|T59.3X3|ICD10CM|Toxic effect of lacrimogenic gas, assault|Toxic effect of lacrimogenic gas, assault +C2884884|T037|HT|T59.3X3|ICD10CM|Toxic effect of lacrimogenic gas, assault|Toxic effect of lacrimogenic gas, assault +C2884885|T037|AB|T59.3X3A|ICD10CM|Toxic effect of lacrimogenic gas, assault, initial encounter|Toxic effect of lacrimogenic gas, assault, initial encounter +C2884885|T037|PT|T59.3X3A|ICD10CM|Toxic effect of lacrimogenic gas, assault, initial encounter|Toxic effect of lacrimogenic gas, assault, initial encounter +C2884886|T037|AB|T59.3X3D|ICD10CM|Toxic effect of lacrimogenic gas, assault, subs encntr|Toxic effect of lacrimogenic gas, assault, subs encntr +C2884886|T037|PT|T59.3X3D|ICD10CM|Toxic effect of lacrimogenic gas, assault, subsequent encounter|Toxic effect of lacrimogenic gas, assault, subsequent encounter +C2884887|T037|AB|T59.3X3S|ICD10CM|Toxic effect of lacrimogenic gas, assault, sequela|Toxic effect of lacrimogenic gas, assault, sequela +C2884887|T037|PT|T59.3X3S|ICD10CM|Toxic effect of lacrimogenic gas, assault, sequela|Toxic effect of lacrimogenic gas, assault, sequela +C2884888|T037|AB|T59.3X4|ICD10CM|Toxic effect of lacrimogenic gas, undetermined|Toxic effect of lacrimogenic gas, undetermined +C2884888|T037|HT|T59.3X4|ICD10CM|Toxic effect of lacrimogenic gas, undetermined|Toxic effect of lacrimogenic gas, undetermined +C2884889|T037|AB|T59.3X4A|ICD10CM|Toxic effect of lacrimogenic gas, undetermined, init encntr|Toxic effect of lacrimogenic gas, undetermined, init encntr +C2884889|T037|PT|T59.3X4A|ICD10CM|Toxic effect of lacrimogenic gas, undetermined, initial encounter|Toxic effect of lacrimogenic gas, undetermined, initial encounter +C2884890|T037|AB|T59.3X4D|ICD10CM|Toxic effect of lacrimogenic gas, undetermined, subs encntr|Toxic effect of lacrimogenic gas, undetermined, subs encntr +C2884890|T037|PT|T59.3X4D|ICD10CM|Toxic effect of lacrimogenic gas, undetermined, subsequent encounter|Toxic effect of lacrimogenic gas, undetermined, subsequent encounter +C2884891|T037|AB|T59.3X4S|ICD10CM|Toxic effect of lacrimogenic gas, undetermined, sequela|Toxic effect of lacrimogenic gas, undetermined, sequela +C2884891|T037|PT|T59.3X4S|ICD10CM|Toxic effect of lacrimogenic gas, undetermined, sequela|Toxic effect of lacrimogenic gas, undetermined, sequela +C0161717|T037|PS|T59.4|ICD10|Chlorine gas|Chlorine gas +C0161717|T037|PX|T59.4|ICD10|Toxic effect of chlorine gas|Toxic effect of chlorine gas +C0161717|T037|HT|T59.4|ICD10CM|Toxic effect of chlorine gas|Toxic effect of chlorine gas +C0161717|T037|AB|T59.4|ICD10CM|Toxic effect of chlorine gas|Toxic effect of chlorine gas +C0161717|T037|HT|T59.4X|ICD10CM|Toxic effect of chlorine gas|Toxic effect of chlorine gas +C0161717|T037|AB|T59.4X|ICD10CM|Toxic effect of chlorine gas|Toxic effect of chlorine gas +C0161717|T037|ET|T59.4X1|ICD10CM|Toxic effect of chlorine gas NOS|Toxic effect of chlorine gas NOS +C2884892|T037|AB|T59.4X1|ICD10CM|Toxic effect of chlorine gas, accidental (unintentional)|Toxic effect of chlorine gas, accidental (unintentional) +C2884892|T037|HT|T59.4X1|ICD10CM|Toxic effect of chlorine gas, accidental (unintentional)|Toxic effect of chlorine gas, accidental (unintentional) +C2884893|T037|PT|T59.4X1A|ICD10CM|Toxic effect of chlorine gas, accidental (unintentional), initial encounter|Toxic effect of chlorine gas, accidental (unintentional), initial encounter +C2884893|T037|AB|T59.4X1A|ICD10CM|Toxic effect of chlorine gas, accidental, init|Toxic effect of chlorine gas, accidental, init +C2884894|T037|PT|T59.4X1D|ICD10CM|Toxic effect of chlorine gas, accidental (unintentional), subsequent encounter|Toxic effect of chlorine gas, accidental (unintentional), subsequent encounter +C2884894|T037|AB|T59.4X1D|ICD10CM|Toxic effect of chlorine gas, accidental, subs|Toxic effect of chlorine gas, accidental, subs +C2884895|T037|PT|T59.4X1S|ICD10CM|Toxic effect of chlorine gas, accidental (unintentional), sequela|Toxic effect of chlorine gas, accidental (unintentional), sequela +C2884895|T037|AB|T59.4X1S|ICD10CM|Toxic effect of chlorine gas, accidental, sequela|Toxic effect of chlorine gas, accidental, sequela +C2884896|T037|AB|T59.4X2|ICD10CM|Toxic effect of chlorine gas, intentional self-harm|Toxic effect of chlorine gas, intentional self-harm +C2884896|T037|HT|T59.4X2|ICD10CM|Toxic effect of chlorine gas, intentional self-harm|Toxic effect of chlorine gas, intentional self-harm +C2884897|T037|AB|T59.4X2A|ICD10CM|Toxic effect of chlorine gas, intentional self-harm, init|Toxic effect of chlorine gas, intentional self-harm, init +C2884897|T037|PT|T59.4X2A|ICD10CM|Toxic effect of chlorine gas, intentional self-harm, initial encounter|Toxic effect of chlorine gas, intentional self-harm, initial encounter +C2884898|T037|AB|T59.4X2D|ICD10CM|Toxic effect of chlorine gas, intentional self-harm, subs|Toxic effect of chlorine gas, intentional self-harm, subs +C2884898|T037|PT|T59.4X2D|ICD10CM|Toxic effect of chlorine gas, intentional self-harm, subsequent encounter|Toxic effect of chlorine gas, intentional self-harm, subsequent encounter +C2884899|T037|AB|T59.4X2S|ICD10CM|Toxic effect of chlorine gas, intentional self-harm, sequela|Toxic effect of chlorine gas, intentional self-harm, sequela +C2884899|T037|PT|T59.4X2S|ICD10CM|Toxic effect of chlorine gas, intentional self-harm, sequela|Toxic effect of chlorine gas, intentional self-harm, sequela +C2884900|T037|AB|T59.4X3|ICD10CM|Toxic effect of chlorine gas, assault|Toxic effect of chlorine gas, assault +C2884900|T037|HT|T59.4X3|ICD10CM|Toxic effect of chlorine gas, assault|Toxic effect of chlorine gas, assault +C2884901|T037|AB|T59.4X3A|ICD10CM|Toxic effect of chlorine gas, assault, initial encounter|Toxic effect of chlorine gas, assault, initial encounter +C2884901|T037|PT|T59.4X3A|ICD10CM|Toxic effect of chlorine gas, assault, initial encounter|Toxic effect of chlorine gas, assault, initial encounter +C2884902|T037|AB|T59.4X3D|ICD10CM|Toxic effect of chlorine gas, assault, subsequent encounter|Toxic effect of chlorine gas, assault, subsequent encounter +C2884902|T037|PT|T59.4X3D|ICD10CM|Toxic effect of chlorine gas, assault, subsequent encounter|Toxic effect of chlorine gas, assault, subsequent encounter +C2884903|T037|AB|T59.4X3S|ICD10CM|Toxic effect of chlorine gas, assault, sequela|Toxic effect of chlorine gas, assault, sequela +C2884903|T037|PT|T59.4X3S|ICD10CM|Toxic effect of chlorine gas, assault, sequela|Toxic effect of chlorine gas, assault, sequela +C2884904|T037|AB|T59.4X4|ICD10CM|Toxic effect of chlorine gas, undetermined|Toxic effect of chlorine gas, undetermined +C2884904|T037|HT|T59.4X4|ICD10CM|Toxic effect of chlorine gas, undetermined|Toxic effect of chlorine gas, undetermined +C2884905|T037|AB|T59.4X4A|ICD10CM|Toxic effect of chlorine gas, undetermined, init encntr|Toxic effect of chlorine gas, undetermined, init encntr +C2884905|T037|PT|T59.4X4A|ICD10CM|Toxic effect of chlorine gas, undetermined, initial encounter|Toxic effect of chlorine gas, undetermined, initial encounter +C2884906|T037|AB|T59.4X4D|ICD10CM|Toxic effect of chlorine gas, undetermined, subs encntr|Toxic effect of chlorine gas, undetermined, subs encntr +C2884906|T037|PT|T59.4X4D|ICD10CM|Toxic effect of chlorine gas, undetermined, subsequent encounter|Toxic effect of chlorine gas, undetermined, subsequent encounter +C2884907|T037|AB|T59.4X4S|ICD10CM|Toxic effect of chlorine gas, undetermined, sequela|Toxic effect of chlorine gas, undetermined, sequela +C2884907|T037|PT|T59.4X4S|ICD10CM|Toxic effect of chlorine gas, undetermined, sequela|Toxic effect of chlorine gas, undetermined, sequela +C0452151|T037|PS|T59.5|ICD10|Fluorine gas and hydrogen fluoride|Fluorine gas and hydrogen fluoride +C0452151|T037|PX|T59.5|ICD10|Toxic effect of fluorine gas and hydrogen fluoride|Toxic effect of fluorine gas and hydrogen fluoride +C0452151|T037|HT|T59.5|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride|Toxic effect of fluorine gas and hydrogen fluoride +C0452151|T037|AB|T59.5|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride|Toxic effect of fluorine gas and hydrogen fluoride +C0452151|T037|HT|T59.5X|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride|Toxic effect of fluorine gas and hydrogen fluoride +C0452151|T037|AB|T59.5X|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride|Toxic effect of fluorine gas and hydrogen fluoride +C0452151|T037|ET|T59.5X1|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride NOS|Toxic effect of fluorine gas and hydrogen fluoride NOS +C2884908|T037|AB|T59.5X1|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, acc|Toxic effect of fluorine gas and hydrogen fluoride, acc +C2884908|T037|HT|T59.5X1|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional)|Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional) +C2884909|T037|AB|T59.5X1A|ICD10CM|Toxic eff of fluorine gas and hydrogen fluoride, acc, init|Toxic eff of fluorine gas and hydrogen fluoride, acc, init +C2884909|T037|PT|T59.5X1A|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional), initial encounter|Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional), initial encounter +C2884910|T037|AB|T59.5X1D|ICD10CM|Toxic eff of fluorine gas and hydrogen fluoride, acc, subs|Toxic eff of fluorine gas and hydrogen fluoride, acc, subs +C2884910|T037|PT|T59.5X1D|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional), subsequent encounter|Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional), subsequent encounter +C2884911|T037|AB|T59.5X1S|ICD10CM|Toxic eff of fluorine gas and hydrogen fluoride, acc, sqla|Toxic eff of fluorine gas and hydrogen fluoride, acc, sqla +C2884911|T037|PT|T59.5X1S|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional), sequela|Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional), sequela +C2884912|T037|HT|T59.5X2|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm|Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm +C2884912|T037|AB|T59.5X2|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, slf-hrm|Toxic effect of fluorine gas and hydrogen fluoride, slf-hrm +C2884913|T037|AB|T59.5X2A|ICD10CM|Tox eff of fluorine gas and hydrogen fluoride, slf-hrm, init|Tox eff of fluorine gas and hydrogen fluoride, slf-hrm, init +C2884913|T037|PT|T59.5X2A|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm, initial encounter|Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm, initial encounter +C2884914|T037|AB|T59.5X2D|ICD10CM|Tox eff of fluorine gas and hydrogen fluoride, slf-hrm, subs|Tox eff of fluorine gas and hydrogen fluoride, slf-hrm, subs +C2884914|T037|PT|T59.5X2D|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm, subsequent encounter|Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm, subsequent encounter +C2884915|T037|AB|T59.5X2S|ICD10CM|Tox eff of fluorine gas and hydrogen fluoride, slf-hrm, sqla|Tox eff of fluorine gas and hydrogen fluoride, slf-hrm, sqla +C2884915|T037|PT|T59.5X2S|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm, sequela|Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm, sequela +C2884916|T037|AB|T59.5X3|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, assault|Toxic effect of fluorine gas and hydrogen fluoride, assault +C2884916|T037|HT|T59.5X3|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, assault|Toxic effect of fluorine gas and hydrogen fluoride, assault +C2884917|T037|AB|T59.5X3A|ICD10CM|Toxic eff of fluorine gas and hydrogen fluoride, asslt, init|Toxic eff of fluorine gas and hydrogen fluoride, asslt, init +C2884917|T037|PT|T59.5X3A|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, assault, initial encounter|Toxic effect of fluorine gas and hydrogen fluoride, assault, initial encounter +C2884918|T037|AB|T59.5X3D|ICD10CM|Toxic eff of fluorine gas and hydrogen fluoride, asslt, subs|Toxic eff of fluorine gas and hydrogen fluoride, asslt, subs +C2884918|T037|PT|T59.5X3D|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, assault, subsequent encounter|Toxic effect of fluorine gas and hydrogen fluoride, assault, subsequent encounter +C2884919|T037|AB|T59.5X3S|ICD10CM|Toxic eff of fluorine gas and hydrogen fluoride, asslt, sqla|Toxic eff of fluorine gas and hydrogen fluoride, asslt, sqla +C2884919|T037|PT|T59.5X3S|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, assault, sequela|Toxic effect of fluorine gas and hydrogen fluoride, assault, sequela +C2884920|T037|AB|T59.5X4|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, undet|Toxic effect of fluorine gas and hydrogen fluoride, undet +C2884920|T037|HT|T59.5X4|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, undetermined|Toxic effect of fluorine gas and hydrogen fluoride, undetermined +C2884921|T037|AB|T59.5X4A|ICD10CM|Toxic eff of fluorine gas and hydrogen fluoride, undet, init|Toxic eff of fluorine gas and hydrogen fluoride, undet, init +C2884921|T037|PT|T59.5X4A|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, undetermined, initial encounter|Toxic effect of fluorine gas and hydrogen fluoride, undetermined, initial encounter +C2884922|T037|AB|T59.5X4D|ICD10CM|Toxic eff of fluorine gas and hydrogen fluoride, undet, subs|Toxic eff of fluorine gas and hydrogen fluoride, undet, subs +C2884922|T037|PT|T59.5X4D|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, undetermined, subsequent encounter|Toxic effect of fluorine gas and hydrogen fluoride, undetermined, subsequent encounter +C2884923|T037|AB|T59.5X4S|ICD10CM|Toxic eff of fluorine gas and hydrogen fluoride, undet, sqla|Toxic eff of fluorine gas and hydrogen fluoride, undet, sqla +C2884923|T037|PT|T59.5X4S|ICD10CM|Toxic effect of fluorine gas and hydrogen fluoride, undetermined, sequela|Toxic effect of fluorine gas and hydrogen fluoride, undetermined, sequela +C0452152|T037|PS|T59.6|ICD10|Hydrogen sulfide|Hydrogen sulfide +C0452152|T037|PX|T59.6|ICD10|Toxic effect of hydrogen sulfide|Toxic effect of hydrogen sulfide +C0452152|T037|HT|T59.6|ICD10CM|Toxic effect of hydrogen sulfide|Toxic effect of hydrogen sulfide +C0452152|T037|AB|T59.6|ICD10CM|Toxic effect of hydrogen sulfide|Toxic effect of hydrogen sulfide +C0452152|T037|HT|T59.6X|ICD10CM|Toxic effect of hydrogen sulfide|Toxic effect of hydrogen sulfide +C0452152|T037|AB|T59.6X|ICD10CM|Toxic effect of hydrogen sulfide|Toxic effect of hydrogen sulfide +C0452152|T037|ET|T59.6X1|ICD10CM|Toxic effect of hydrogen sulfide NOS|Toxic effect of hydrogen sulfide NOS +C2884924|T037|AB|T59.6X1|ICD10CM|Toxic effect of hydrogen sulfide, accidental (unintentional)|Toxic effect of hydrogen sulfide, accidental (unintentional) +C2884924|T037|HT|T59.6X1|ICD10CM|Toxic effect of hydrogen sulfide, accidental (unintentional)|Toxic effect of hydrogen sulfide, accidental (unintentional) +C2884925|T037|PT|T59.6X1A|ICD10CM|Toxic effect of hydrogen sulfide, accidental (unintentional), initial encounter|Toxic effect of hydrogen sulfide, accidental (unintentional), initial encounter +C2884925|T037|AB|T59.6X1A|ICD10CM|Toxic effect of hydrogen sulfide, accidental, init|Toxic effect of hydrogen sulfide, accidental, init +C2884926|T037|PT|T59.6X1D|ICD10CM|Toxic effect of hydrogen sulfide, accidental (unintentional), subsequent encounter|Toxic effect of hydrogen sulfide, accidental (unintentional), subsequent encounter +C2884926|T037|AB|T59.6X1D|ICD10CM|Toxic effect of hydrogen sulfide, accidental, subs|Toxic effect of hydrogen sulfide, accidental, subs +C2884927|T037|PT|T59.6X1S|ICD10CM|Toxic effect of hydrogen sulfide, accidental (unintentional), sequela|Toxic effect of hydrogen sulfide, accidental (unintentional), sequela +C2884927|T037|AB|T59.6X1S|ICD10CM|Toxic effect of hydrogen sulfide, accidental, sequela|Toxic effect of hydrogen sulfide, accidental, sequela +C2884928|T037|AB|T59.6X2|ICD10CM|Toxic effect of hydrogen sulfide, intentional self-harm|Toxic effect of hydrogen sulfide, intentional self-harm +C2884928|T037|HT|T59.6X2|ICD10CM|Toxic effect of hydrogen sulfide, intentional self-harm|Toxic effect of hydrogen sulfide, intentional self-harm +C2884929|T037|PT|T59.6X2A|ICD10CM|Toxic effect of hydrogen sulfide, intentional self-harm, initial encounter|Toxic effect of hydrogen sulfide, intentional self-harm, initial encounter +C2884929|T037|AB|T59.6X2A|ICD10CM|Toxic effect of hydrogen sulfide, self-harm, init|Toxic effect of hydrogen sulfide, self-harm, init +C2884930|T037|PT|T59.6X2D|ICD10CM|Toxic effect of hydrogen sulfide, intentional self-harm, subsequent encounter|Toxic effect of hydrogen sulfide, intentional self-harm, subsequent encounter +C2884930|T037|AB|T59.6X2D|ICD10CM|Toxic effect of hydrogen sulfide, self-harm, subs|Toxic effect of hydrogen sulfide, self-harm, subs +C2884931|T037|PT|T59.6X2S|ICD10CM|Toxic effect of hydrogen sulfide, intentional self-harm, sequela|Toxic effect of hydrogen sulfide, intentional self-harm, sequela +C2884931|T037|AB|T59.6X2S|ICD10CM|Toxic effect of hydrogen sulfide, self-harm, sequela|Toxic effect of hydrogen sulfide, self-harm, sequela +C2884932|T037|AB|T59.6X3|ICD10CM|Toxic effect of hydrogen sulfide, assault|Toxic effect of hydrogen sulfide, assault +C2884932|T037|HT|T59.6X3|ICD10CM|Toxic effect of hydrogen sulfide, assault|Toxic effect of hydrogen sulfide, assault +C2884933|T037|AB|T59.6X3A|ICD10CM|Toxic effect of hydrogen sulfide, assault, initial encounter|Toxic effect of hydrogen sulfide, assault, initial encounter +C2884933|T037|PT|T59.6X3A|ICD10CM|Toxic effect of hydrogen sulfide, assault, initial encounter|Toxic effect of hydrogen sulfide, assault, initial encounter +C2884934|T037|AB|T59.6X3D|ICD10CM|Toxic effect of hydrogen sulfide, assault, subs encntr|Toxic effect of hydrogen sulfide, assault, subs encntr +C2884934|T037|PT|T59.6X3D|ICD10CM|Toxic effect of hydrogen sulfide, assault, subsequent encounter|Toxic effect of hydrogen sulfide, assault, subsequent encounter +C2884935|T037|AB|T59.6X3S|ICD10CM|Toxic effect of hydrogen sulfide, assault, sequela|Toxic effect of hydrogen sulfide, assault, sequela +C2884935|T037|PT|T59.6X3S|ICD10CM|Toxic effect of hydrogen sulfide, assault, sequela|Toxic effect of hydrogen sulfide, assault, sequela +C2884936|T037|AB|T59.6X4|ICD10CM|Toxic effect of hydrogen sulfide, undetermined|Toxic effect of hydrogen sulfide, undetermined +C2884936|T037|HT|T59.6X4|ICD10CM|Toxic effect of hydrogen sulfide, undetermined|Toxic effect of hydrogen sulfide, undetermined +C2884937|T037|AB|T59.6X4A|ICD10CM|Toxic effect of hydrogen sulfide, undetermined, init encntr|Toxic effect of hydrogen sulfide, undetermined, init encntr +C2884937|T037|PT|T59.6X4A|ICD10CM|Toxic effect of hydrogen sulfide, undetermined, initial encounter|Toxic effect of hydrogen sulfide, undetermined, initial encounter +C2884938|T037|AB|T59.6X4D|ICD10CM|Toxic effect of hydrogen sulfide, undetermined, subs encntr|Toxic effect of hydrogen sulfide, undetermined, subs encntr +C2884938|T037|PT|T59.6X4D|ICD10CM|Toxic effect of hydrogen sulfide, undetermined, subsequent encounter|Toxic effect of hydrogen sulfide, undetermined, subsequent encounter +C2884939|T037|AB|T59.6X4S|ICD10CM|Toxic effect of hydrogen sulfide, undetermined, sequela|Toxic effect of hydrogen sulfide, undetermined, sequela +C2884939|T037|PT|T59.6X4S|ICD10CM|Toxic effect of hydrogen sulfide, undetermined, sequela|Toxic effect of hydrogen sulfide, undetermined, sequela +C0452123|T037|PS|T59.7|ICD10|Carbon dioxide|Carbon dioxide +C0452123|T037|PX|T59.7|ICD10|Toxic effect of carbon dioxide|Toxic effect of carbon dioxide +C0452123|T037|HT|T59.7|ICD10CM|Toxic effect of carbon dioxide|Toxic effect of carbon dioxide +C0452123|T037|AB|T59.7|ICD10CM|Toxic effect of carbon dioxide|Toxic effect of carbon dioxide +C0452123|T037|HT|T59.7X|ICD10CM|Toxic effect of carbon dioxide|Toxic effect of carbon dioxide +C0452123|T037|AB|T59.7X|ICD10CM|Toxic effect of carbon dioxide|Toxic effect of carbon dioxide +C0452123|T037|ET|T59.7X1|ICD10CM|Toxic effect of carbon dioxide NOS|Toxic effect of carbon dioxide NOS +C2884940|T037|AB|T59.7X1|ICD10CM|Toxic effect of carbon dioxide, accidental (unintentional)|Toxic effect of carbon dioxide, accidental (unintentional) +C2884940|T037|HT|T59.7X1|ICD10CM|Toxic effect of carbon dioxide, accidental (unintentional)|Toxic effect of carbon dioxide, accidental (unintentional) +C2884941|T037|PT|T59.7X1A|ICD10CM|Toxic effect of carbon dioxide, accidental (unintentional), initial encounter|Toxic effect of carbon dioxide, accidental (unintentional), initial encounter +C2884941|T037|AB|T59.7X1A|ICD10CM|Toxic effect of carbon dioxide, accidental, init|Toxic effect of carbon dioxide, accidental, init +C2884942|T037|PT|T59.7X1D|ICD10CM|Toxic effect of carbon dioxide, accidental (unintentional), subsequent encounter|Toxic effect of carbon dioxide, accidental (unintentional), subsequent encounter +C2884942|T037|AB|T59.7X1D|ICD10CM|Toxic effect of carbon dioxide, accidental, subs|Toxic effect of carbon dioxide, accidental, subs +C2884943|T037|PT|T59.7X1S|ICD10CM|Toxic effect of carbon dioxide, accidental (unintentional), sequela|Toxic effect of carbon dioxide, accidental (unintentional), sequela +C2884943|T037|AB|T59.7X1S|ICD10CM|Toxic effect of carbon dioxide, accidental, sequela|Toxic effect of carbon dioxide, accidental, sequela +C2884944|T037|AB|T59.7X2|ICD10CM|Toxic effect of carbon dioxide, intentional self-harm|Toxic effect of carbon dioxide, intentional self-harm +C2884944|T037|HT|T59.7X2|ICD10CM|Toxic effect of carbon dioxide, intentional self-harm|Toxic effect of carbon dioxide, intentional self-harm +C2884945|T037|AB|T59.7X2A|ICD10CM|Toxic effect of carbon dioxide, intentional self-harm, init|Toxic effect of carbon dioxide, intentional self-harm, init +C2884945|T037|PT|T59.7X2A|ICD10CM|Toxic effect of carbon dioxide, intentional self-harm, initial encounter|Toxic effect of carbon dioxide, intentional self-harm, initial encounter +C2884946|T037|AB|T59.7X2D|ICD10CM|Toxic effect of carbon dioxide, intentional self-harm, subs|Toxic effect of carbon dioxide, intentional self-harm, subs +C2884946|T037|PT|T59.7X2D|ICD10CM|Toxic effect of carbon dioxide, intentional self-harm, subsequent encounter|Toxic effect of carbon dioxide, intentional self-harm, subsequent encounter +C2884947|T037|PT|T59.7X2S|ICD10CM|Toxic effect of carbon dioxide, intentional self-harm, sequela|Toxic effect of carbon dioxide, intentional self-harm, sequela +C2884947|T037|AB|T59.7X2S|ICD10CM|Toxic effect of carbon dioxide, self-harm, sequela|Toxic effect of carbon dioxide, self-harm, sequela +C2884948|T037|AB|T59.7X3|ICD10CM|Toxic effect of carbon dioxide, assault|Toxic effect of carbon dioxide, assault +C2884948|T037|HT|T59.7X3|ICD10CM|Toxic effect of carbon dioxide, assault|Toxic effect of carbon dioxide, assault +C2884949|T037|AB|T59.7X3A|ICD10CM|Toxic effect of carbon dioxide, assault, initial encounter|Toxic effect of carbon dioxide, assault, initial encounter +C2884949|T037|PT|T59.7X3A|ICD10CM|Toxic effect of carbon dioxide, assault, initial encounter|Toxic effect of carbon dioxide, assault, initial encounter +C2884950|T037|AB|T59.7X3D|ICD10CM|Toxic effect of carbon dioxide, assault, subs encntr|Toxic effect of carbon dioxide, assault, subs encntr +C2884950|T037|PT|T59.7X3D|ICD10CM|Toxic effect of carbon dioxide, assault, subsequent encounter|Toxic effect of carbon dioxide, assault, subsequent encounter +C2884951|T037|AB|T59.7X3S|ICD10CM|Toxic effect of carbon dioxide, assault, sequela|Toxic effect of carbon dioxide, assault, sequela +C2884951|T037|PT|T59.7X3S|ICD10CM|Toxic effect of carbon dioxide, assault, sequela|Toxic effect of carbon dioxide, assault, sequela +C2884952|T037|AB|T59.7X4|ICD10CM|Toxic effect of carbon dioxide, undetermined|Toxic effect of carbon dioxide, undetermined +C2884952|T037|HT|T59.7X4|ICD10CM|Toxic effect of carbon dioxide, undetermined|Toxic effect of carbon dioxide, undetermined +C2884953|T037|AB|T59.7X4A|ICD10CM|Toxic effect of carbon dioxide, undetermined, init encntr|Toxic effect of carbon dioxide, undetermined, init encntr +C2884953|T037|PT|T59.7X4A|ICD10CM|Toxic effect of carbon dioxide, undetermined, initial encounter|Toxic effect of carbon dioxide, undetermined, initial encounter +C2884954|T037|AB|T59.7X4D|ICD10CM|Toxic effect of carbon dioxide, undetermined, subs encntr|Toxic effect of carbon dioxide, undetermined, subs encntr +C2884954|T037|PT|T59.7X4D|ICD10CM|Toxic effect of carbon dioxide, undetermined, subsequent encounter|Toxic effect of carbon dioxide, undetermined, subsequent encounter +C2884955|T037|AB|T59.7X4S|ICD10CM|Toxic effect of carbon dioxide, undetermined, sequela|Toxic effect of carbon dioxide, undetermined, sequela +C2884955|T037|PT|T59.7X4S|ICD10CM|Toxic effect of carbon dioxide, undetermined, sequela|Toxic effect of carbon dioxide, undetermined, sequela +C0478464|T037|PS|T59.8|ICD10AE|Other specified gases, fumes and vapors|Other specified gases, fumes and vapors +C0478464|T037|PS|T59.8|ICD10|Other specified gases, fumes and vapours|Other specified gases, fumes and vapours +C0478464|T037|PX|T59.8|ICD10AE|Toxic effect of other specified gases, fumes and vapors|Toxic effect of other specified gases, fumes and vapors +C0478464|T037|HT|T59.8|ICD10CM|Toxic effect of other specified gases, fumes and vapors|Toxic effect of other specified gases, fumes and vapors +C0478464|T037|AB|T59.8|ICD10CM|Toxic effect of other specified gases, fumes and vapors|Toxic effect of other specified gases, fumes and vapors +C0478464|T037|PX|T59.8|ICD10|Toxic effect of other specified gases, fumes and vapours|Toxic effect of other specified gases, fumes and vapours +C0037367|T037|ET|T59.81|ICD10CM|Smoke inhalation|Smoke inhalation +C2884956|T037|AB|T59.81|ICD10CM|Toxic effect of smoke|Toxic effect of smoke +C2884956|T037|HT|T59.81|ICD10CM|Toxic effect of smoke|Toxic effect of smoke +C2884956|T037|ET|T59.811|ICD10CM|Toxic effect of smoke NOS|Toxic effect of smoke NOS +C2884957|T037|AB|T59.811|ICD10CM|Toxic effect of smoke, accidental (unintentional)|Toxic effect of smoke, accidental (unintentional) +C2884957|T037|HT|T59.811|ICD10CM|Toxic effect of smoke, accidental (unintentional)|Toxic effect of smoke, accidental (unintentional) +C2884958|T037|AB|T59.811A|ICD10CM|Toxic effect of smoke, accidental (unintentional), init|Toxic effect of smoke, accidental (unintentional), init +C2884958|T037|PT|T59.811A|ICD10CM|Toxic effect of smoke, accidental (unintentional), initial encounter|Toxic effect of smoke, accidental (unintentional), initial encounter +C2884959|T037|AB|T59.811D|ICD10CM|Toxic effect of smoke, accidental (unintentional), subs|Toxic effect of smoke, accidental (unintentional), subs +C2884959|T037|PT|T59.811D|ICD10CM|Toxic effect of smoke, accidental (unintentional), subsequent encounter|Toxic effect of smoke, accidental (unintentional), subsequent encounter +C2884960|T037|AB|T59.811S|ICD10CM|Toxic effect of smoke, accidental (unintentional), sequela|Toxic effect of smoke, accidental (unintentional), sequela +C2884960|T037|PT|T59.811S|ICD10CM|Toxic effect of smoke, accidental (unintentional), sequela|Toxic effect of smoke, accidental (unintentional), sequela +C2884961|T037|AB|T59.812|ICD10CM|Toxic effect of smoke, intentional self-harm|Toxic effect of smoke, intentional self-harm +C2884961|T037|HT|T59.812|ICD10CM|Toxic effect of smoke, intentional self-harm|Toxic effect of smoke, intentional self-harm +C2884962|T037|AB|T59.812A|ICD10CM|Toxic effect of smoke, intentional self-harm, init encntr|Toxic effect of smoke, intentional self-harm, init encntr +C2884962|T037|PT|T59.812A|ICD10CM|Toxic effect of smoke, intentional self-harm, initial encounter|Toxic effect of smoke, intentional self-harm, initial encounter +C2884963|T037|AB|T59.812D|ICD10CM|Toxic effect of smoke, intentional self-harm, subs encntr|Toxic effect of smoke, intentional self-harm, subs encntr +C2884963|T037|PT|T59.812D|ICD10CM|Toxic effect of smoke, intentional self-harm, subsequent encounter|Toxic effect of smoke, intentional self-harm, subsequent encounter +C2884964|T037|AB|T59.812S|ICD10CM|Toxic effect of smoke, intentional self-harm, sequela|Toxic effect of smoke, intentional self-harm, sequela +C2884964|T037|PT|T59.812S|ICD10CM|Toxic effect of smoke, intentional self-harm, sequela|Toxic effect of smoke, intentional self-harm, sequela +C2884965|T037|AB|T59.813|ICD10CM|Toxic effect of smoke, assault|Toxic effect of smoke, assault +C2884965|T037|HT|T59.813|ICD10CM|Toxic effect of smoke, assault|Toxic effect of smoke, assault +C2884966|T037|AB|T59.813A|ICD10CM|Toxic effect of smoke, assault, initial encounter|Toxic effect of smoke, assault, initial encounter +C2884966|T037|PT|T59.813A|ICD10CM|Toxic effect of smoke, assault, initial encounter|Toxic effect of smoke, assault, initial encounter +C2884967|T037|AB|T59.813D|ICD10CM|Toxic effect of smoke, assault, subsequent encounter|Toxic effect of smoke, assault, subsequent encounter +C2884967|T037|PT|T59.813D|ICD10CM|Toxic effect of smoke, assault, subsequent encounter|Toxic effect of smoke, assault, subsequent encounter +C2884968|T037|AB|T59.813S|ICD10CM|Toxic effect of smoke, assault, sequela|Toxic effect of smoke, assault, sequela +C2884968|T037|PT|T59.813S|ICD10CM|Toxic effect of smoke, assault, sequela|Toxic effect of smoke, assault, sequela +C2884969|T037|AB|T59.814|ICD10CM|Toxic effect of smoke, undetermined|Toxic effect of smoke, undetermined +C2884969|T037|HT|T59.814|ICD10CM|Toxic effect of smoke, undetermined|Toxic effect of smoke, undetermined +C2884970|T037|AB|T59.814A|ICD10CM|Toxic effect of smoke, undetermined, initial encounter|Toxic effect of smoke, undetermined, initial encounter +C2884970|T037|PT|T59.814A|ICD10CM|Toxic effect of smoke, undetermined, initial encounter|Toxic effect of smoke, undetermined, initial encounter +C2884971|T037|AB|T59.814D|ICD10CM|Toxic effect of smoke, undetermined, subsequent encounter|Toxic effect of smoke, undetermined, subsequent encounter +C2884971|T037|PT|T59.814D|ICD10CM|Toxic effect of smoke, undetermined, subsequent encounter|Toxic effect of smoke, undetermined, subsequent encounter +C2884972|T037|AB|T59.814S|ICD10CM|Toxic effect of smoke, undetermined, sequela|Toxic effect of smoke, undetermined, sequela +C2884972|T037|PT|T59.814S|ICD10CM|Toxic effect of smoke, undetermined, sequela|Toxic effect of smoke, undetermined, sequela +C0478464|T037|HT|T59.89|ICD10CM|Toxic effect of other specified gases, fumes and vapors|Toxic effect of other specified gases, fumes and vapors +C0478464|T037|AB|T59.89|ICD10CM|Toxic effect of other specified gases, fumes and vapors|Toxic effect of other specified gases, fumes and vapors +C2884973|T037|AB|T59.891|ICD10CM|Toxic effect of gases, fumes and vapors, accidental|Toxic effect of gases, fumes and vapors, accidental +C2884973|T037|HT|T59.891|ICD10CM|Toxic effect of other specified gases, fumes and vapors, accidental (unintentional)|Toxic effect of other specified gases, fumes and vapors, accidental (unintentional) +C2884974|T037|AB|T59.891A|ICD10CM|Toxic effect of gases, fumes and vapors, accidental, init|Toxic effect of gases, fumes and vapors, accidental, init +C2884975|T037|AB|T59.891D|ICD10CM|Toxic effect of gases, fumes and vapors, accidental, subs|Toxic effect of gases, fumes and vapors, accidental, subs +C2884976|T037|AB|T59.891S|ICD10CM|Toxic effect of gases, fumes and vapors, acc, sequela|Toxic effect of gases, fumes and vapors, acc, sequela +C2884976|T037|PT|T59.891S|ICD10CM|Toxic effect of other specified gases, fumes and vapors, accidental (unintentional), sequela|Toxic effect of other specified gases, fumes and vapors, accidental (unintentional), sequela +C2884977|T037|AB|T59.892|ICD10CM|Toxic effect of gases, fumes and vapors, self-harm|Toxic effect of gases, fumes and vapors, self-harm +C2884977|T037|HT|T59.892|ICD10CM|Toxic effect of other specified gases, fumes and vapors, intentional self-harm|Toxic effect of other specified gases, fumes and vapors, intentional self-harm +C2884978|T037|AB|T59.892A|ICD10CM|Toxic effect of gases, fumes and vapors, self-harm, init|Toxic effect of gases, fumes and vapors, self-harm, init +C2884978|T037|PT|T59.892A|ICD10CM|Toxic effect of other specified gases, fumes and vapors, intentional self-harm, initial encounter|Toxic effect of other specified gases, fumes and vapors, intentional self-harm, initial encounter +C2884979|T037|AB|T59.892D|ICD10CM|Toxic effect of gases, fumes and vapors, self-harm, subs|Toxic effect of gases, fumes and vapors, self-harm, subs +C2884979|T037|PT|T59.892D|ICD10CM|Toxic effect of other specified gases, fumes and vapors, intentional self-harm, subsequent encounter|Toxic effect of other specified gases, fumes and vapors, intentional self-harm, subsequent encounter +C2884980|T037|AB|T59.892S|ICD10CM|Toxic effect of gases, fumes and vapors, self-harm, sequela|Toxic effect of gases, fumes and vapors, self-harm, sequela +C2884980|T037|PT|T59.892S|ICD10CM|Toxic effect of other specified gases, fumes and vapors, intentional self-harm, sequela|Toxic effect of other specified gases, fumes and vapors, intentional self-harm, sequela +C2884981|T037|AB|T59.893|ICD10CM|Toxic effect of oth gases, fumes and vapors, assault|Toxic effect of oth gases, fumes and vapors, assault +C2884981|T037|HT|T59.893|ICD10CM|Toxic effect of other specified gases, fumes and vapors, assault|Toxic effect of other specified gases, fumes and vapors, assault +C2884982|T037|AB|T59.893A|ICD10CM|Toxic effect of oth gases, fumes and vapors, assault, init|Toxic effect of oth gases, fumes and vapors, assault, init +C2884982|T037|PT|T59.893A|ICD10CM|Toxic effect of other specified gases, fumes and vapors, assault, initial encounter|Toxic effect of other specified gases, fumes and vapors, assault, initial encounter +C2884983|T037|AB|T59.893D|ICD10CM|Toxic effect of oth gases, fumes and vapors, assault, subs|Toxic effect of oth gases, fumes and vapors, assault, subs +C2884983|T037|PT|T59.893D|ICD10CM|Toxic effect of other specified gases, fumes and vapors, assault, subsequent encounter|Toxic effect of other specified gases, fumes and vapors, assault, subsequent encounter +C2884984|T037|AB|T59.893S|ICD10CM|Toxic effect of gases, fumes and vapors, assault, sequela|Toxic effect of gases, fumes and vapors, assault, sequela +C2884984|T037|PT|T59.893S|ICD10CM|Toxic effect of other specified gases, fumes and vapors, assault, sequela|Toxic effect of other specified gases, fumes and vapors, assault, sequela +C2884985|T037|AB|T59.894|ICD10CM|Toxic effect of oth gases, fumes and vapors, undetermined|Toxic effect of oth gases, fumes and vapors, undetermined +C2884985|T037|HT|T59.894|ICD10CM|Toxic effect of other specified gases, fumes and vapors, undetermined|Toxic effect of other specified gases, fumes and vapors, undetermined +C2884986|T037|AB|T59.894A|ICD10CM|Toxic effect of gases, fumes and vapors, undetermined, init|Toxic effect of gases, fumes and vapors, undetermined, init +C2884986|T037|PT|T59.894A|ICD10CM|Toxic effect of other specified gases, fumes and vapors, undetermined, initial encounter|Toxic effect of other specified gases, fumes and vapors, undetermined, initial encounter +C2884987|T037|AB|T59.894D|ICD10CM|Toxic effect of gases, fumes and vapors, undetermined, subs|Toxic effect of gases, fumes and vapors, undetermined, subs +C2884987|T037|PT|T59.894D|ICD10CM|Toxic effect of other specified gases, fumes and vapors, undetermined, subsequent encounter|Toxic effect of other specified gases, fumes and vapors, undetermined, subsequent encounter +C2884988|T037|AB|T59.894S|ICD10CM|Toxic effect of gases, fumes and vapors, undet, sequela|Toxic effect of gases, fumes and vapors, undet, sequela +C2884988|T037|PT|T59.894S|ICD10CM|Toxic effect of other specified gases, fumes and vapors, undetermined, sequela|Toxic effect of other specified gases, fumes and vapors, undetermined, sequela +C0274870|T037|PS|T59.9|ICD10AE|Gases, fumes and vapors, unspecified|Gases, fumes and vapors, unspecified +C0274870|T037|PS|T59.9|ICD10|Gases, fumes and vapours, unspecified|Gases, fumes and vapours, unspecified +C0274870|T037|PX|T59.9|ICD10AE|Toxic effect of gases, fumes and vapors, unspecified|Toxic effect of gases, fumes and vapors, unspecified +C0274870|T037|PX|T59.9|ICD10|Toxic effect of gases, fumes and vapours, unspecified|Toxic effect of gases, fumes and vapours, unspecified +C0274870|T037|AB|T59.9|ICD10CM|Toxic effect of unspecified gases, fumes and vapors|Toxic effect of unspecified gases, fumes and vapors +C0274870|T037|HT|T59.9|ICD10CM|Toxic effect of unspecified gases, fumes and vapors|Toxic effect of unspecified gases, fumes and vapors +C2884989|T037|AB|T59.91|ICD10CM|Toxic effect of unsp gases, fumes and vapors, accidental|Toxic effect of unsp gases, fumes and vapors, accidental +C2884989|T037|HT|T59.91|ICD10CM|Toxic effect of unspecified gases, fumes and vapors, accidental (unintentional)|Toxic effect of unspecified gases, fumes and vapors, accidental (unintentional) +C2884990|T037|AB|T59.91XA|ICD10CM|Toxic effect of unsp gases, fumes and vapors, acc, init|Toxic effect of unsp gases, fumes and vapors, acc, init +C2884990|T037|PT|T59.91XA|ICD10CM|Toxic effect of unspecified gases, fumes and vapors, accidental (unintentional), initial encounter|Toxic effect of unspecified gases, fumes and vapors, accidental (unintentional), initial encounter +C2884991|T037|AB|T59.91XD|ICD10CM|Toxic effect of unsp gases, fumes and vapors, acc, subs|Toxic effect of unsp gases, fumes and vapors, acc, subs +C2884992|T037|AB|T59.91XS|ICD10CM|Toxic effect of unsp gases, fumes and vapors, acc, sequela|Toxic effect of unsp gases, fumes and vapors, acc, sequela +C2884992|T037|PT|T59.91XS|ICD10CM|Toxic effect of unspecified gases, fumes and vapors, accidental (unintentional), sequela|Toxic effect of unspecified gases, fumes and vapors, accidental (unintentional), sequela +C2884993|T037|AB|T59.92|ICD10CM|Toxic effect of unsp gases, fumes and vapors, self-harm|Toxic effect of unsp gases, fumes and vapors, self-harm +C2884993|T037|HT|T59.92|ICD10CM|Toxic effect of unspecified gases, fumes and vapors, intentional self-harm|Toxic effect of unspecified gases, fumes and vapors, intentional self-harm +C2884994|T037|AB|T59.92XA|ICD10CM|Toxic effect of unsp gases, fumes and vapors, slf-hrm, init|Toxic effect of unsp gases, fumes and vapors, slf-hrm, init +C2884994|T037|PT|T59.92XA|ICD10CM|Toxic effect of unspecified gases, fumes and vapors, intentional self-harm, initial encounter|Toxic effect of unspecified gases, fumes and vapors, intentional self-harm, initial encounter +C2884995|T037|AB|T59.92XD|ICD10CM|Toxic effect of unsp gases, fumes and vapors, slf-hrm, subs|Toxic effect of unsp gases, fumes and vapors, slf-hrm, subs +C2884995|T037|PT|T59.92XD|ICD10CM|Toxic effect of unspecified gases, fumes and vapors, intentional self-harm, subsequent encounter|Toxic effect of unspecified gases, fumes and vapors, intentional self-harm, subsequent encounter +C2884996|T037|AB|T59.92XS|ICD10CM|Toxic effect of unsp gases, fumes and vapors, slf-hrm, sqla|Toxic effect of unsp gases, fumes and vapors, slf-hrm, sqla +C2884996|T037|PT|T59.92XS|ICD10CM|Toxic effect of unspecified gases, fumes and vapors, intentional self-harm, sequela|Toxic effect of unspecified gases, fumes and vapors, intentional self-harm, sequela +C2884997|T037|AB|T59.93|ICD10CM|Toxic effect of unspecified gases, fumes and vapors, assault|Toxic effect of unspecified gases, fumes and vapors, assault +C2884997|T037|HT|T59.93|ICD10CM|Toxic effect of unspecified gases, fumes and vapors, assault|Toxic effect of unspecified gases, fumes and vapors, assault +C2884998|T037|AB|T59.93XA|ICD10CM|Toxic effect of unsp gases, fumes and vapors, assault, init|Toxic effect of unsp gases, fumes and vapors, assault, init +C2884998|T037|PT|T59.93XA|ICD10CM|Toxic effect of unspecified gases, fumes and vapors, assault, initial encounter|Toxic effect of unspecified gases, fumes and vapors, assault, initial encounter +C2884999|T037|AB|T59.93XD|ICD10CM|Toxic effect of unsp gases, fumes and vapors, assault, subs|Toxic effect of unsp gases, fumes and vapors, assault, subs +C2884999|T037|PT|T59.93XD|ICD10CM|Toxic effect of unspecified gases, fumes and vapors, assault, subsequent encounter|Toxic effect of unspecified gases, fumes and vapors, assault, subsequent encounter +C2885000|T037|AB|T59.93XS|ICD10CM|Toxic effect of unsp gases, fumes and vapors, asslt, sequela|Toxic effect of unsp gases, fumes and vapors, asslt, sequela +C2885000|T037|PT|T59.93XS|ICD10CM|Toxic effect of unspecified gases, fumes and vapors, assault, sequela|Toxic effect of unspecified gases, fumes and vapors, assault, sequela +C2885001|T037|AB|T59.94|ICD10CM|Toxic effect of unsp gases, fumes and vapors, undetermined|Toxic effect of unsp gases, fumes and vapors, undetermined +C2885001|T037|HT|T59.94|ICD10CM|Toxic effect of unspecified gases, fumes and vapors, undetermined|Toxic effect of unspecified gases, fumes and vapors, undetermined +C2885002|T037|AB|T59.94XA|ICD10CM|Toxic effect of unsp gases, fumes and vapors, undet, init|Toxic effect of unsp gases, fumes and vapors, undet, init +C2885002|T037|PT|T59.94XA|ICD10CM|Toxic effect of unspecified gases, fumes and vapors, undetermined, initial encounter|Toxic effect of unspecified gases, fumes and vapors, undetermined, initial encounter +C2885003|T037|AB|T59.94XD|ICD10CM|Toxic effect of unsp gases, fumes and vapors, undet, subs|Toxic effect of unsp gases, fumes and vapors, undet, subs +C2885003|T037|PT|T59.94XD|ICD10CM|Toxic effect of unspecified gases, fumes and vapors, undetermined, subsequent encounter|Toxic effect of unspecified gases, fumes and vapors, undetermined, subsequent encounter +C2885004|T037|AB|T59.94XS|ICD10CM|Toxic effect of unsp gases, fumes and vapors, undet, sequela|Toxic effect of unsp gases, fumes and vapors, undet, sequela +C2885004|T037|PT|T59.94XS|ICD10CM|Toxic effect of unspecified gases, fumes and vapors, undetermined, sequela|Toxic effect of unspecified gases, fumes and vapors, undetermined, sequela +C0275009|T037|AB|T60|ICD10CM|Toxic effect of pesticides|Toxic effect of pesticides +C0275009|T037|HT|T60|ICD10CM|Toxic effect of pesticides|Toxic effect of pesticides +C0275009|T037|HT|T60|ICD10|Toxic effect of pesticides|Toxic effect of pesticides +C4290408|T037|ET|T60|ICD10CM|toxic effect of wood preservatives|toxic effect of wood preservatives +C0497024|T037|PS|T60.0|ICD10|Organophosphate and carbamate insecticides|Organophosphate and carbamate insecticides +C0497024|T037|PX|T60.0|ICD10|Toxic effect of organophosphate and carbamate insecticides|Toxic effect of organophosphate and carbamate insecticides +C0497024|T037|HT|T60.0|ICD10CM|Toxic effect of organophosphate and carbamate insecticides|Toxic effect of organophosphate and carbamate insecticides +C0497024|T037|AB|T60.0|ICD10CM|Toxic effect of organophosphate and carbamate insecticides|Toxic effect of organophosphate and carbamate insecticides +C0497024|T037|HT|T60.0X|ICD10CM|Toxic effect of organophosphate and carbamate insecticides|Toxic effect of organophosphate and carbamate insecticides +C0497024|T037|AB|T60.0X|ICD10CM|Toxic effect of organophosphate and carbamate insecticides|Toxic effect of organophosphate and carbamate insecticides +C2885006|T037|AB|T60.0X1|ICD10CM|Toxic effect of organophos and carbamate insect, accidental|Toxic effect of organophos and carbamate insect, accidental +C0497024|T037|ET|T60.0X1|ICD10CM|Toxic effect of organophosphate and carbamate insecticides NOS|Toxic effect of organophosphate and carbamate insecticides NOS +C2885006|T037|HT|T60.0X1|ICD10CM|Toxic effect of organophosphate and carbamate insecticides, accidental (unintentional)|Toxic effect of organophosphate and carbamate insecticides, accidental (unintentional) +C2885007|T037|AB|T60.0X1A|ICD10CM|Toxic effect of organophos and carbamate insect, acc, init|Toxic effect of organophos and carbamate insect, acc, init +C2885008|T037|AB|T60.0X1D|ICD10CM|Toxic effect of organophos and carbamate insect, acc, subs|Toxic effect of organophos and carbamate insect, acc, subs +C2885009|T037|AB|T60.0X1S|ICD10CM|Toxic effect of organophos and carbamate insect, acc, sqla|Toxic effect of organophos and carbamate insect, acc, sqla +C2885009|T037|PT|T60.0X1S|ICD10CM|Toxic effect of organophosphate and carbamate insecticides, accidental (unintentional), sequela|Toxic effect of organophosphate and carbamate insecticides, accidental (unintentional), sequela +C2885010|T037|AB|T60.0X2|ICD10CM|Toxic effect of organophos and carbamate insect, self-harm|Toxic effect of organophos and carbamate insect, self-harm +C2885010|T037|HT|T60.0X2|ICD10CM|Toxic effect of organophosphate and carbamate insecticides, intentional self-harm|Toxic effect of organophosphate and carbamate insecticides, intentional self-harm +C2885011|T037|AB|T60.0X2A|ICD10CM|Toxic eff of organophos and carbamate insect, slf-hrm, init|Toxic eff of organophos and carbamate insect, slf-hrm, init +C2885011|T037|PT|T60.0X2A|ICD10CM|Toxic effect of organophosphate and carbamate insecticides, intentional self-harm, initial encounter|Toxic effect of organophosphate and carbamate insecticides, intentional self-harm, initial encounter +C2885012|T037|AB|T60.0X2D|ICD10CM|Toxic eff of organophos and carbamate insect, slf-hrm, subs|Toxic eff of organophos and carbamate insect, slf-hrm, subs +C2885013|T037|AB|T60.0X2S|ICD10CM|Toxic eff of organophos and carbamate insect, slf-hrm, sqla|Toxic eff of organophos and carbamate insect, slf-hrm, sqla +C2885013|T037|PT|T60.0X2S|ICD10CM|Toxic effect of organophosphate and carbamate insecticides, intentional self-harm, sequela|Toxic effect of organophosphate and carbamate insecticides, intentional self-harm, sequela +C2885014|T037|AB|T60.0X3|ICD10CM|Toxic effect of organophos and carbamate insect, assault|Toxic effect of organophos and carbamate insect, assault +C2885014|T037|HT|T60.0X3|ICD10CM|Toxic effect of organophosphate and carbamate insecticides, assault|Toxic effect of organophosphate and carbamate insecticides, assault +C2885015|T037|AB|T60.0X3A|ICD10CM|Toxic effect of organophos and carbamate insect, asslt, init|Toxic effect of organophos and carbamate insect, asslt, init +C2885015|T037|PT|T60.0X3A|ICD10CM|Toxic effect of organophosphate and carbamate insecticides, assault, initial encounter|Toxic effect of organophosphate and carbamate insecticides, assault, initial encounter +C2885016|T037|AB|T60.0X3D|ICD10CM|Toxic effect of organophos and carbamate insect, asslt, subs|Toxic effect of organophos and carbamate insect, asslt, subs +C2885016|T037|PT|T60.0X3D|ICD10CM|Toxic effect of organophosphate and carbamate insecticides, assault, subsequent encounter|Toxic effect of organophosphate and carbamate insecticides, assault, subsequent encounter +C2885017|T037|AB|T60.0X3S|ICD10CM|Toxic effect of organophos and carbamate insect, asslt, sqla|Toxic effect of organophos and carbamate insect, asslt, sqla +C2885017|T037|PT|T60.0X3S|ICD10CM|Toxic effect of organophosphate and carbamate insecticides, assault, sequela|Toxic effect of organophosphate and carbamate insecticides, assault, sequela +C2885018|T037|AB|T60.0X4|ICD10CM|Toxic effect of organophos and carbamate insect, undet|Toxic effect of organophos and carbamate insect, undet +C2885018|T037|HT|T60.0X4|ICD10CM|Toxic effect of organophosphate and carbamate insecticides, undetermined|Toxic effect of organophosphate and carbamate insecticides, undetermined +C2885019|T037|AB|T60.0X4A|ICD10CM|Toxic effect of organophos and carbamate insect, undet, init|Toxic effect of organophos and carbamate insect, undet, init +C2885019|T037|PT|T60.0X4A|ICD10CM|Toxic effect of organophosphate and carbamate insecticides, undetermined, initial encounter|Toxic effect of organophosphate and carbamate insecticides, undetermined, initial encounter +C2885020|T037|AB|T60.0X4D|ICD10CM|Toxic effect of organophos and carbamate insect, undet, subs|Toxic effect of organophos and carbamate insect, undet, subs +C2885020|T037|PT|T60.0X4D|ICD10CM|Toxic effect of organophosphate and carbamate insecticides, undetermined, subsequent encounter|Toxic effect of organophosphate and carbamate insecticides, undetermined, subsequent encounter +C2885021|T037|AB|T60.0X4S|ICD10CM|Toxic effect of organophos and carbamate insect, undet, sqla|Toxic effect of organophos and carbamate insect, undet, sqla +C2885021|T037|PT|T60.0X4S|ICD10CM|Toxic effect of organophosphate and carbamate insecticides, undetermined, sequela|Toxic effect of organophosphate and carbamate insecticides, undetermined, sequela +C0497025|T037|PS|T60.1|ICD10|Halogenated insecticides|Halogenated insecticides +C0497025|T037|PX|T60.1|ICD10|Toxic effect of halogenated insecticides|Toxic effect of halogenated insecticides +C0497025|T037|HT|T60.1|ICD10CM|Toxic effect of halogenated insecticides|Toxic effect of halogenated insecticides +C0497025|T037|AB|T60.1|ICD10CM|Toxic effect of halogenated insecticides|Toxic effect of halogenated insecticides +C0497025|T037|HT|T60.1X|ICD10CM|Toxic effect of halogenated insecticides|Toxic effect of halogenated insecticides +C0497025|T037|AB|T60.1X|ICD10CM|Toxic effect of halogenated insecticides|Toxic effect of halogenated insecticides +C0497025|T037|ET|T60.1X1|ICD10CM|Toxic effect of halogenated insecticides NOS|Toxic effect of halogenated insecticides NOS +C2885022|T037|AB|T60.1X1|ICD10CM|Toxic effect of halogenated insecticides, accidental|Toxic effect of halogenated insecticides, accidental +C2885022|T037|HT|T60.1X1|ICD10CM|Toxic effect of halogenated insecticides, accidental (unintentional)|Toxic effect of halogenated insecticides, accidental (unintentional) +C2885023|T037|PT|T60.1X1A|ICD10CM|Toxic effect of halogenated insecticides, accidental (unintentional), initial encounter|Toxic effect of halogenated insecticides, accidental (unintentional), initial encounter +C2885023|T037|AB|T60.1X1A|ICD10CM|Toxic effect of halogenated insecticides, accidental, init|Toxic effect of halogenated insecticides, accidental, init +C2885024|T037|PT|T60.1X1D|ICD10CM|Toxic effect of halogenated insecticides, accidental (unintentional), subsequent encounter|Toxic effect of halogenated insecticides, accidental (unintentional), subsequent encounter +C2885024|T037|AB|T60.1X1D|ICD10CM|Toxic effect of halogenated insecticides, accidental, subs|Toxic effect of halogenated insecticides, accidental, subs +C2885025|T037|AB|T60.1X1S|ICD10CM|Toxic effect of halogenated insect, accidental, sequela|Toxic effect of halogenated insect, accidental, sequela +C2885025|T037|PT|T60.1X1S|ICD10CM|Toxic effect of halogenated insecticides, accidental (unintentional), sequela|Toxic effect of halogenated insecticides, accidental (unintentional), sequela +C2885026|T037|HT|T60.1X2|ICD10CM|Toxic effect of halogenated insecticides, intentional self-harm|Toxic effect of halogenated insecticides, intentional self-harm +C2885026|T037|AB|T60.1X2|ICD10CM|Toxic effect of halogenated insecticides, self-harm|Toxic effect of halogenated insecticides, self-harm +C2885027|T037|PT|T60.1X2A|ICD10CM|Toxic effect of halogenated insecticides, intentional self-harm, initial encounter|Toxic effect of halogenated insecticides, intentional self-harm, initial encounter +C2885027|T037|AB|T60.1X2A|ICD10CM|Toxic effect of halogenated insecticides, self-harm, init|Toxic effect of halogenated insecticides, self-harm, init +C2885028|T037|PT|T60.1X2D|ICD10CM|Toxic effect of halogenated insecticides, intentional self-harm, subsequent encounter|Toxic effect of halogenated insecticides, intentional self-harm, subsequent encounter +C2885028|T037|AB|T60.1X2D|ICD10CM|Toxic effect of halogenated insecticides, self-harm, subs|Toxic effect of halogenated insecticides, self-harm, subs +C2885029|T037|PT|T60.1X2S|ICD10CM|Toxic effect of halogenated insecticides, intentional self-harm, sequela|Toxic effect of halogenated insecticides, intentional self-harm, sequela +C2885029|T037|AB|T60.1X2S|ICD10CM|Toxic effect of halogenated insecticides, self-harm, sequela|Toxic effect of halogenated insecticides, self-harm, sequela +C2885030|T037|AB|T60.1X3|ICD10CM|Toxic effect of halogenated insecticides, assault|Toxic effect of halogenated insecticides, assault +C2885030|T037|HT|T60.1X3|ICD10CM|Toxic effect of halogenated insecticides, assault|Toxic effect of halogenated insecticides, assault +C2885031|T037|AB|T60.1X3A|ICD10CM|Toxic effect of halogenated insecticides, assault, init|Toxic effect of halogenated insecticides, assault, init +C2885031|T037|PT|T60.1X3A|ICD10CM|Toxic effect of halogenated insecticides, assault, initial encounter|Toxic effect of halogenated insecticides, assault, initial encounter +C2885032|T037|AB|T60.1X3D|ICD10CM|Toxic effect of halogenated insecticides, assault, subs|Toxic effect of halogenated insecticides, assault, subs +C2885032|T037|PT|T60.1X3D|ICD10CM|Toxic effect of halogenated insecticides, assault, subsequent encounter|Toxic effect of halogenated insecticides, assault, subsequent encounter +C2885033|T037|AB|T60.1X3S|ICD10CM|Toxic effect of halogenated insecticides, assault, sequela|Toxic effect of halogenated insecticides, assault, sequela +C2885033|T037|PT|T60.1X3S|ICD10CM|Toxic effect of halogenated insecticides, assault, sequela|Toxic effect of halogenated insecticides, assault, sequela +C2885034|T037|AB|T60.1X4|ICD10CM|Toxic effect of halogenated insecticides, undetermined|Toxic effect of halogenated insecticides, undetermined +C2885034|T037|HT|T60.1X4|ICD10CM|Toxic effect of halogenated insecticides, undetermined|Toxic effect of halogenated insecticides, undetermined +C2885035|T037|AB|T60.1X4A|ICD10CM|Toxic effect of halogenated insecticides, undetermined, init|Toxic effect of halogenated insecticides, undetermined, init +C2885035|T037|PT|T60.1X4A|ICD10CM|Toxic effect of halogenated insecticides, undetermined, initial encounter|Toxic effect of halogenated insecticides, undetermined, initial encounter +C2885036|T037|AB|T60.1X4D|ICD10CM|Toxic effect of halogenated insecticides, undetermined, subs|Toxic effect of halogenated insecticides, undetermined, subs +C2885036|T037|PT|T60.1X4D|ICD10CM|Toxic effect of halogenated insecticides, undetermined, subsequent encounter|Toxic effect of halogenated insecticides, undetermined, subsequent encounter +C2885037|T037|AB|T60.1X4S|ICD10CM|Toxic effect of halogenated insect, undetermined, sequela|Toxic effect of halogenated insect, undetermined, sequela +C2885037|T037|PT|T60.1X4S|ICD10CM|Toxic effect of halogenated insecticides, undetermined, sequela|Toxic effect of halogenated insecticides, undetermined, sequela +C0478465|T037|PS|T60.2|ICD10|Other insecticides|Other insecticides +C0478465|T037|PX|T60.2|ICD10|Toxic effect of other insecticides|Toxic effect of other insecticides +C0478465|T037|HT|T60.2|ICD10CM|Toxic effect of other insecticides|Toxic effect of other insecticides +C0478465|T037|AB|T60.2|ICD10CM|Toxic effect of other insecticides|Toxic effect of other insecticides +C0478465|T037|HT|T60.2X|ICD10CM|Toxic effect of other insecticides|Toxic effect of other insecticides +C0478465|T037|AB|T60.2X|ICD10CM|Toxic effect of other insecticides|Toxic effect of other insecticides +C2885038|T037|AB|T60.2X1|ICD10CM|Toxic effect of oth insecticides, accidental (unintentional)|Toxic effect of oth insecticides, accidental (unintentional) +C0478465|T037|ET|T60.2X1|ICD10CM|Toxic effect of other insecticides NOS|Toxic effect of other insecticides NOS +C2885038|T037|HT|T60.2X1|ICD10CM|Toxic effect of other insecticides, accidental (unintentional)|Toxic effect of other insecticides, accidental (unintentional) +C2885039|T037|AB|T60.2X1A|ICD10CM|Toxic effect of insecticides, accidental, init|Toxic effect of insecticides, accidental, init +C2885039|T037|PT|T60.2X1A|ICD10CM|Toxic effect of other insecticides, accidental (unintentional), initial encounter|Toxic effect of other insecticides, accidental (unintentional), initial encounter +C2885040|T037|AB|T60.2X1D|ICD10CM|Toxic effect of insecticides, accidental, subs|Toxic effect of insecticides, accidental, subs +C2885040|T037|PT|T60.2X1D|ICD10CM|Toxic effect of other insecticides, accidental (unintentional), subsequent encounter|Toxic effect of other insecticides, accidental (unintentional), subsequent encounter +C2885041|T037|AB|T60.2X1S|ICD10CM|Toxic effect of insecticides, accidental, sequela|Toxic effect of insecticides, accidental, sequela +C2885041|T037|PT|T60.2X1S|ICD10CM|Toxic effect of other insecticides, accidental (unintentional), sequela|Toxic effect of other insecticides, accidental (unintentional), sequela +C2885042|T037|AB|T60.2X2|ICD10CM|Toxic effect of other insecticides, intentional self-harm|Toxic effect of other insecticides, intentional self-harm +C2885042|T037|HT|T60.2X2|ICD10CM|Toxic effect of other insecticides, intentional self-harm|Toxic effect of other insecticides, intentional self-harm +C2885043|T037|AB|T60.2X2A|ICD10CM|Toxic effect of insecticides, intentional self-harm, init|Toxic effect of insecticides, intentional self-harm, init +C2885043|T037|PT|T60.2X2A|ICD10CM|Toxic effect of other insecticides, intentional self-harm, initial encounter|Toxic effect of other insecticides, intentional self-harm, initial encounter +C2885044|T037|AB|T60.2X2D|ICD10CM|Toxic effect of insecticides, intentional self-harm, subs|Toxic effect of insecticides, intentional self-harm, subs +C2885044|T037|PT|T60.2X2D|ICD10CM|Toxic effect of other insecticides, intentional self-harm, subsequent encounter|Toxic effect of other insecticides, intentional self-harm, subsequent encounter +C2885045|T037|AB|T60.2X2S|ICD10CM|Toxic effect of insecticides, intentional self-harm, sequela|Toxic effect of insecticides, intentional self-harm, sequela +C2885045|T037|PT|T60.2X2S|ICD10CM|Toxic effect of other insecticides, intentional self-harm, sequela|Toxic effect of other insecticides, intentional self-harm, sequela +C2885046|T037|AB|T60.2X3|ICD10CM|Toxic effect of other insecticides, assault|Toxic effect of other insecticides, assault +C2885046|T037|HT|T60.2X3|ICD10CM|Toxic effect of other insecticides, assault|Toxic effect of other insecticides, assault +C2885047|T037|AB|T60.2X3A|ICD10CM|Toxic effect of other insecticides, assault, init encntr|Toxic effect of other insecticides, assault, init encntr +C2885047|T037|PT|T60.2X3A|ICD10CM|Toxic effect of other insecticides, assault, initial encounter|Toxic effect of other insecticides, assault, initial encounter +C2885048|T037|AB|T60.2X3D|ICD10CM|Toxic effect of other insecticides, assault, subs encntr|Toxic effect of other insecticides, assault, subs encntr +C2885048|T037|PT|T60.2X3D|ICD10CM|Toxic effect of other insecticides, assault, subsequent encounter|Toxic effect of other insecticides, assault, subsequent encounter +C2885049|T037|AB|T60.2X3S|ICD10CM|Toxic effect of other insecticides, assault, sequela|Toxic effect of other insecticides, assault, sequela +C2885049|T037|PT|T60.2X3S|ICD10CM|Toxic effect of other insecticides, assault, sequela|Toxic effect of other insecticides, assault, sequela +C2885050|T037|AB|T60.2X4|ICD10CM|Toxic effect of other insecticides, undetermined|Toxic effect of other insecticides, undetermined +C2885050|T037|HT|T60.2X4|ICD10CM|Toxic effect of other insecticides, undetermined|Toxic effect of other insecticides, undetermined +C2885051|T037|AB|T60.2X4A|ICD10CM|Toxic effect of oth insecticides, undetermined, init encntr|Toxic effect of oth insecticides, undetermined, init encntr +C2885051|T037|PT|T60.2X4A|ICD10CM|Toxic effect of other insecticides, undetermined, initial encounter|Toxic effect of other insecticides, undetermined, initial encounter +C2885052|T037|AB|T60.2X4D|ICD10CM|Toxic effect of oth insecticides, undetermined, subs encntr|Toxic effect of oth insecticides, undetermined, subs encntr +C2885052|T037|PT|T60.2X4D|ICD10CM|Toxic effect of other insecticides, undetermined, subsequent encounter|Toxic effect of other insecticides, undetermined, subsequent encounter +C2885053|T037|AB|T60.2X4S|ICD10CM|Toxic effect of other insecticides, undetermined, sequela|Toxic effect of other insecticides, undetermined, sequela +C2885053|T037|PT|T60.2X4S|ICD10CM|Toxic effect of other insecticides, undetermined, sequela|Toxic effect of other insecticides, undetermined, sequela +C0452125|T037|PS|T60.3|ICD10|Herbicides and fungicides|Herbicides and fungicides +C0452125|T037|PX|T60.3|ICD10|Toxic effect of herbicides and fungicides|Toxic effect of herbicides and fungicides +C0452125|T037|HT|T60.3|ICD10CM|Toxic effect of herbicides and fungicides|Toxic effect of herbicides and fungicides +C0452125|T037|AB|T60.3|ICD10CM|Toxic effect of herbicides and fungicides|Toxic effect of herbicides and fungicides +C0452125|T037|HT|T60.3X|ICD10CM|Toxic effect of herbicides and fungicides|Toxic effect of herbicides and fungicides +C0452125|T037|AB|T60.3X|ICD10CM|Toxic effect of herbicides and fungicides|Toxic effect of herbicides and fungicides +C0452125|T037|ET|T60.3X1|ICD10CM|Toxic effect of herbicides and fungicides NOS|Toxic effect of herbicides and fungicides NOS +C2885054|T037|AB|T60.3X1|ICD10CM|Toxic effect of herbicides and fungicides, accidental|Toxic effect of herbicides and fungicides, accidental +C2885054|T037|HT|T60.3X1|ICD10CM|Toxic effect of herbicides and fungicides, accidental (unintentional)|Toxic effect of herbicides and fungicides, accidental (unintentional) +C2885055|T037|PT|T60.3X1A|ICD10CM|Toxic effect of herbicides and fungicides, accidental (unintentional), initial encounter|Toxic effect of herbicides and fungicides, accidental (unintentional), initial encounter +C2885055|T037|AB|T60.3X1A|ICD10CM|Toxic effect of herbicides and fungicides, accidental, init|Toxic effect of herbicides and fungicides, accidental, init +C2885056|T037|PT|T60.3X1D|ICD10CM|Toxic effect of herbicides and fungicides, accidental (unintentional), subsequent encounter|Toxic effect of herbicides and fungicides, accidental (unintentional), subsequent encounter +C2885056|T037|AB|T60.3X1D|ICD10CM|Toxic effect of herbicides and fungicides, accidental, subs|Toxic effect of herbicides and fungicides, accidental, subs +C2885057|T037|AB|T60.3X1S|ICD10CM|Toxic effect of herbicides and fungicides, acc, sequela|Toxic effect of herbicides and fungicides, acc, sequela +C2885057|T037|PT|T60.3X1S|ICD10CM|Toxic effect of herbicides and fungicides, accidental (unintentional), sequela|Toxic effect of herbicides and fungicides, accidental (unintentional), sequela +C2885058|T037|HT|T60.3X2|ICD10CM|Toxic effect of herbicides and fungicides, intentional self-harm|Toxic effect of herbicides and fungicides, intentional self-harm +C2885058|T037|AB|T60.3X2|ICD10CM|Toxic effect of herbicides and fungicides, self-harm|Toxic effect of herbicides and fungicides, self-harm +C2885059|T037|PT|T60.3X2A|ICD10CM|Toxic effect of herbicides and fungicides, intentional self-harm, initial encounter|Toxic effect of herbicides and fungicides, intentional self-harm, initial encounter +C2885059|T037|AB|T60.3X2A|ICD10CM|Toxic effect of herbicides and fungicides, self-harm, init|Toxic effect of herbicides and fungicides, self-harm, init +C2885060|T037|PT|T60.3X2D|ICD10CM|Toxic effect of herbicides and fungicides, intentional self-harm, subsequent encounter|Toxic effect of herbicides and fungicides, intentional self-harm, subsequent encounter +C2885060|T037|AB|T60.3X2D|ICD10CM|Toxic effect of herbicides and fungicides, self-harm, subs|Toxic effect of herbicides and fungicides, self-harm, subs +C2885061|T037|PT|T60.3X2S|ICD10CM|Toxic effect of herbicides and fungicides, intentional self-harm, sequela|Toxic effect of herbicides and fungicides, intentional self-harm, sequela +C2885061|T037|AB|T60.3X2S|ICD10CM|Toxic effect of herbicides and fungicides, slf-hrm, sequela|Toxic effect of herbicides and fungicides, slf-hrm, sequela +C2885062|T037|AB|T60.3X3|ICD10CM|Toxic effect of herbicides and fungicides, assault|Toxic effect of herbicides and fungicides, assault +C2885062|T037|HT|T60.3X3|ICD10CM|Toxic effect of herbicides and fungicides, assault|Toxic effect of herbicides and fungicides, assault +C2885063|T037|AB|T60.3X3A|ICD10CM|Toxic effect of herbicides and fungicides, assault, init|Toxic effect of herbicides and fungicides, assault, init +C2885063|T037|PT|T60.3X3A|ICD10CM|Toxic effect of herbicides and fungicides, assault, initial encounter|Toxic effect of herbicides and fungicides, assault, initial encounter +C2885064|T037|AB|T60.3X3D|ICD10CM|Toxic effect of herbicides and fungicides, assault, subs|Toxic effect of herbicides and fungicides, assault, subs +C2885064|T037|PT|T60.3X3D|ICD10CM|Toxic effect of herbicides and fungicides, assault, subsequent encounter|Toxic effect of herbicides and fungicides, assault, subsequent encounter +C2885065|T037|AB|T60.3X3S|ICD10CM|Toxic effect of herbicides and fungicides, assault, sequela|Toxic effect of herbicides and fungicides, assault, sequela +C2885065|T037|PT|T60.3X3S|ICD10CM|Toxic effect of herbicides and fungicides, assault, sequela|Toxic effect of herbicides and fungicides, assault, sequela +C2885066|T037|AB|T60.3X4|ICD10CM|Toxic effect of herbicides and fungicides, undetermined|Toxic effect of herbicides and fungicides, undetermined +C2885066|T037|HT|T60.3X4|ICD10CM|Toxic effect of herbicides and fungicides, undetermined|Toxic effect of herbicides and fungicides, undetermined +C2885067|T037|AB|T60.3X4A|ICD10CM|Toxic effect of herbicides and fungicides, undet, init|Toxic effect of herbicides and fungicides, undet, init +C2885067|T037|PT|T60.3X4A|ICD10CM|Toxic effect of herbicides and fungicides, undetermined, initial encounter|Toxic effect of herbicides and fungicides, undetermined, initial encounter +C2885068|T037|AB|T60.3X4D|ICD10CM|Toxic effect of herbicides and fungicides, undet, subs|Toxic effect of herbicides and fungicides, undet, subs +C2885068|T037|PT|T60.3X4D|ICD10CM|Toxic effect of herbicides and fungicides, undetermined, subsequent encounter|Toxic effect of herbicides and fungicides, undetermined, subsequent encounter +C2885069|T037|AB|T60.3X4S|ICD10CM|Toxic effect of herbicides and fungicides, undet, sequela|Toxic effect of herbicides and fungicides, undet, sequela +C2885069|T037|PT|T60.3X4S|ICD10CM|Toxic effect of herbicides and fungicides, undetermined, sequela|Toxic effect of herbicides and fungicides, undetermined, sequela +C0413079|T037|PS|T60.4|ICD10|Rodenticides|Rodenticides +C0413079|T037|PX|T60.4|ICD10|Toxic effect of rodenticides|Toxic effect of rodenticides +C0413079|T037|HT|T60.4|ICD10CM|Toxic effect of rodenticides|Toxic effect of rodenticides +C0413079|T037|AB|T60.4|ICD10CM|Toxic effect of rodenticides|Toxic effect of rodenticides +C0413079|T037|HT|T60.4X|ICD10CM|Toxic effect of rodenticides|Toxic effect of rodenticides +C0413079|T037|AB|T60.4X|ICD10CM|Toxic effect of rodenticides|Toxic effect of rodenticides +C0413079|T037|ET|T60.4X1|ICD10CM|Toxic effect of rodenticides NOS|Toxic effect of rodenticides NOS +C2885070|T037|AB|T60.4X1|ICD10CM|Toxic effect of rodenticides, accidental (unintentional)|Toxic effect of rodenticides, accidental (unintentional) +C2885070|T037|HT|T60.4X1|ICD10CM|Toxic effect of rodenticides, accidental (unintentional)|Toxic effect of rodenticides, accidental (unintentional) +C2885071|T037|PT|T60.4X1A|ICD10CM|Toxic effect of rodenticides, accidental (unintentional), initial encounter|Toxic effect of rodenticides, accidental (unintentional), initial encounter +C2885071|T037|AB|T60.4X1A|ICD10CM|Toxic effect of rodenticides, accidental, init|Toxic effect of rodenticides, accidental, init +C2885072|T037|PT|T60.4X1D|ICD10CM|Toxic effect of rodenticides, accidental (unintentional), subsequent encounter|Toxic effect of rodenticides, accidental (unintentional), subsequent encounter +C2885072|T037|AB|T60.4X1D|ICD10CM|Toxic effect of rodenticides, accidental, subs|Toxic effect of rodenticides, accidental, subs +C2885073|T037|PT|T60.4X1S|ICD10CM|Toxic effect of rodenticides, accidental (unintentional), sequela|Toxic effect of rodenticides, accidental (unintentional), sequela +C2885073|T037|AB|T60.4X1S|ICD10CM|Toxic effect of rodenticides, accidental, sequela|Toxic effect of rodenticides, accidental, sequela +C2885074|T037|AB|T60.4X2|ICD10CM|Toxic effect of rodenticides, intentional self-harm|Toxic effect of rodenticides, intentional self-harm +C2885074|T037|HT|T60.4X2|ICD10CM|Toxic effect of rodenticides, intentional self-harm|Toxic effect of rodenticides, intentional self-harm +C2885075|T037|AB|T60.4X2A|ICD10CM|Toxic effect of rodenticides, intentional self-harm, init|Toxic effect of rodenticides, intentional self-harm, init +C2885075|T037|PT|T60.4X2A|ICD10CM|Toxic effect of rodenticides, intentional self-harm, initial encounter|Toxic effect of rodenticides, intentional self-harm, initial encounter +C2885076|T037|AB|T60.4X2D|ICD10CM|Toxic effect of rodenticides, intentional self-harm, subs|Toxic effect of rodenticides, intentional self-harm, subs +C2885076|T037|PT|T60.4X2D|ICD10CM|Toxic effect of rodenticides, intentional self-harm, subsequent encounter|Toxic effect of rodenticides, intentional self-harm, subsequent encounter +C2885077|T037|AB|T60.4X2S|ICD10CM|Toxic effect of rodenticides, intentional self-harm, sequela|Toxic effect of rodenticides, intentional self-harm, sequela +C2885077|T037|PT|T60.4X2S|ICD10CM|Toxic effect of rodenticides, intentional self-harm, sequela|Toxic effect of rodenticides, intentional self-harm, sequela +C2885078|T037|AB|T60.4X3|ICD10CM|Toxic effect of rodenticides, assault|Toxic effect of rodenticides, assault +C2885078|T037|HT|T60.4X3|ICD10CM|Toxic effect of rodenticides, assault|Toxic effect of rodenticides, assault +C2885079|T037|AB|T60.4X3A|ICD10CM|Toxic effect of rodenticides, assault, initial encounter|Toxic effect of rodenticides, assault, initial encounter +C2885079|T037|PT|T60.4X3A|ICD10CM|Toxic effect of rodenticides, assault, initial encounter|Toxic effect of rodenticides, assault, initial encounter +C2885080|T037|AB|T60.4X3D|ICD10CM|Toxic effect of rodenticides, assault, subsequent encounter|Toxic effect of rodenticides, assault, subsequent encounter +C2885080|T037|PT|T60.4X3D|ICD10CM|Toxic effect of rodenticides, assault, subsequent encounter|Toxic effect of rodenticides, assault, subsequent encounter +C2885081|T037|AB|T60.4X3S|ICD10CM|Toxic effect of rodenticides, assault, sequela|Toxic effect of rodenticides, assault, sequela +C2885081|T037|PT|T60.4X3S|ICD10CM|Toxic effect of rodenticides, assault, sequela|Toxic effect of rodenticides, assault, sequela +C2885082|T037|AB|T60.4X4|ICD10CM|Toxic effect of rodenticides, undetermined|Toxic effect of rodenticides, undetermined +C2885082|T037|HT|T60.4X4|ICD10CM|Toxic effect of rodenticides, undetermined|Toxic effect of rodenticides, undetermined +C2885083|T037|AB|T60.4X4A|ICD10CM|Toxic effect of rodenticides, undetermined, init encntr|Toxic effect of rodenticides, undetermined, init encntr +C2885083|T037|PT|T60.4X4A|ICD10CM|Toxic effect of rodenticides, undetermined, initial encounter|Toxic effect of rodenticides, undetermined, initial encounter +C2885084|T037|AB|T60.4X4D|ICD10CM|Toxic effect of rodenticides, undetermined, subs encntr|Toxic effect of rodenticides, undetermined, subs encntr +C2885084|T037|PT|T60.4X4D|ICD10CM|Toxic effect of rodenticides, undetermined, subsequent encounter|Toxic effect of rodenticides, undetermined, subsequent encounter +C2885085|T037|AB|T60.4X4S|ICD10CM|Toxic effect of rodenticides, undetermined, sequela|Toxic effect of rodenticides, undetermined, sequela +C2885085|T037|PT|T60.4X4S|ICD10CM|Toxic effect of rodenticides, undetermined, sequela|Toxic effect of rodenticides, undetermined, sequela +C0161730|T037|PS|T60.8|ICD10|Other pesticides|Other pesticides +C0161730|T037|PX|T60.8|ICD10|Toxic effect of other pesticides|Toxic effect of other pesticides +C0161730|T037|HT|T60.8|ICD10CM|Toxic effect of other pesticides|Toxic effect of other pesticides +C0161730|T037|AB|T60.8|ICD10CM|Toxic effect of other pesticides|Toxic effect of other pesticides +C0161730|T037|HT|T60.8X|ICD10CM|Toxic effect of other pesticides|Toxic effect of other pesticides +C0161730|T037|AB|T60.8X|ICD10CM|Toxic effect of other pesticides|Toxic effect of other pesticides +C0161730|T037|ET|T60.8X1|ICD10CM|Toxic effect of other pesticides NOS|Toxic effect of other pesticides NOS +C2885086|T037|AB|T60.8X1|ICD10CM|Toxic effect of other pesticides, accidental (unintentional)|Toxic effect of other pesticides, accidental (unintentional) +C2885086|T037|HT|T60.8X1|ICD10CM|Toxic effect of other pesticides, accidental (unintentional)|Toxic effect of other pesticides, accidental (unintentional) +C2885087|T037|PT|T60.8X1A|ICD10CM|Toxic effect of other pesticides, accidental (unintentional), initial encounter|Toxic effect of other pesticides, accidental (unintentional), initial encounter +C2885087|T037|AB|T60.8X1A|ICD10CM|Toxic effect of pesticides, accidental (unintentional), init|Toxic effect of pesticides, accidental (unintentional), init +C2885088|T037|PT|T60.8X1D|ICD10CM|Toxic effect of other pesticides, accidental (unintentional), subsequent encounter|Toxic effect of other pesticides, accidental (unintentional), subsequent encounter +C2885088|T037|AB|T60.8X1D|ICD10CM|Toxic effect of pesticides, accidental (unintentional), subs|Toxic effect of pesticides, accidental (unintentional), subs +C2885089|T037|PT|T60.8X1S|ICD10CM|Toxic effect of other pesticides, accidental (unintentional), sequela|Toxic effect of other pesticides, accidental (unintentional), sequela +C2885089|T037|AB|T60.8X1S|ICD10CM|Toxic effect of pesticides, accidental, sequela|Toxic effect of pesticides, accidental, sequela +C2885090|T037|AB|T60.8X2|ICD10CM|Toxic effect of other pesticides, intentional self-harm|Toxic effect of other pesticides, intentional self-harm +C2885090|T037|HT|T60.8X2|ICD10CM|Toxic effect of other pesticides, intentional self-harm|Toxic effect of other pesticides, intentional self-harm +C2885091|T037|AB|T60.8X2A|ICD10CM|Toxic effect of oth pesticides, intentional self-harm, init|Toxic effect of oth pesticides, intentional self-harm, init +C2885091|T037|PT|T60.8X2A|ICD10CM|Toxic effect of other pesticides, intentional self-harm, initial encounter|Toxic effect of other pesticides, intentional self-harm, initial encounter +C2885092|T037|AB|T60.8X2D|ICD10CM|Toxic effect of oth pesticides, intentional self-harm, subs|Toxic effect of oth pesticides, intentional self-harm, subs +C2885092|T037|PT|T60.8X2D|ICD10CM|Toxic effect of other pesticides, intentional self-harm, subsequent encounter|Toxic effect of other pesticides, intentional self-harm, subsequent encounter +C2885093|T037|PT|T60.8X2S|ICD10CM|Toxic effect of other pesticides, intentional self-harm, sequela|Toxic effect of other pesticides, intentional self-harm, sequela +C2885093|T037|AB|T60.8X2S|ICD10CM|Toxic effect of pesticides, intentional self-harm, sequela|Toxic effect of pesticides, intentional self-harm, sequela +C2885094|T037|AB|T60.8X3|ICD10CM|Toxic effect of other pesticides, assault|Toxic effect of other pesticides, assault +C2885094|T037|HT|T60.8X3|ICD10CM|Toxic effect of other pesticides, assault|Toxic effect of other pesticides, assault +C2885095|T037|AB|T60.8X3A|ICD10CM|Toxic effect of other pesticides, assault, initial encounter|Toxic effect of other pesticides, assault, initial encounter +C2885095|T037|PT|T60.8X3A|ICD10CM|Toxic effect of other pesticides, assault, initial encounter|Toxic effect of other pesticides, assault, initial encounter +C2885096|T037|AB|T60.8X3D|ICD10CM|Toxic effect of other pesticides, assault, subs encntr|Toxic effect of other pesticides, assault, subs encntr +C2885096|T037|PT|T60.8X3D|ICD10CM|Toxic effect of other pesticides, assault, subsequent encounter|Toxic effect of other pesticides, assault, subsequent encounter +C2885097|T037|AB|T60.8X3S|ICD10CM|Toxic effect of other pesticides, assault, sequela|Toxic effect of other pesticides, assault, sequela +C2885097|T037|PT|T60.8X3S|ICD10CM|Toxic effect of other pesticides, assault, sequela|Toxic effect of other pesticides, assault, sequela +C2885098|T037|AB|T60.8X4|ICD10CM|Toxic effect of other pesticides, undetermined|Toxic effect of other pesticides, undetermined +C2885098|T037|HT|T60.8X4|ICD10CM|Toxic effect of other pesticides, undetermined|Toxic effect of other pesticides, undetermined +C2885099|T037|AB|T60.8X4A|ICD10CM|Toxic effect of other pesticides, undetermined, init encntr|Toxic effect of other pesticides, undetermined, init encntr +C2885099|T037|PT|T60.8X4A|ICD10CM|Toxic effect of other pesticides, undetermined, initial encounter|Toxic effect of other pesticides, undetermined, initial encounter +C2885100|T037|AB|T60.8X4D|ICD10CM|Toxic effect of other pesticides, undetermined, subs encntr|Toxic effect of other pesticides, undetermined, subs encntr +C2885100|T037|PT|T60.8X4D|ICD10CM|Toxic effect of other pesticides, undetermined, subsequent encounter|Toxic effect of other pesticides, undetermined, subsequent encounter +C2885101|T037|AB|T60.8X4S|ICD10CM|Toxic effect of other pesticides, undetermined, sequela|Toxic effect of other pesticides, undetermined, sequela +C2885101|T037|PT|T60.8X4S|ICD10CM|Toxic effect of other pesticides, undetermined, sequela|Toxic effect of other pesticides, undetermined, sequela +C0275009|T037|PS|T60.9|ICD10|Pesticide, unspecified|Pesticide, unspecified +C0275009|T037|PX|T60.9|ICD10|Toxic effect of pesticide, unspecified|Toxic effect of pesticide, unspecified +C0275009|T037|AB|T60.9|ICD10CM|Toxic effect of unspecified pesticide|Toxic effect of unspecified pesticide +C0275009|T037|HT|T60.9|ICD10CM|Toxic effect of unspecified pesticide|Toxic effect of unspecified pesticide +C2885102|T037|AB|T60.91|ICD10CM|Toxic effect of unsp pesticide, accidental (unintentional)|Toxic effect of unsp pesticide, accidental (unintentional) +C2885102|T037|HT|T60.91|ICD10CM|Toxic effect of unspecified pesticide, accidental (unintentional)|Toxic effect of unspecified pesticide, accidental (unintentional) +C2885103|T037|AB|T60.91XA|ICD10CM|Toxic effect of unsp pesticide, accidental, init|Toxic effect of unsp pesticide, accidental, init +C2885103|T037|PT|T60.91XA|ICD10CM|Toxic effect of unspecified pesticide, accidental (unintentional), initial encounter|Toxic effect of unspecified pesticide, accidental (unintentional), initial encounter +C2885104|T037|AB|T60.91XD|ICD10CM|Toxic effect of unsp pesticide, accidental, subs|Toxic effect of unsp pesticide, accidental, subs +C2885104|T037|PT|T60.91XD|ICD10CM|Toxic effect of unspecified pesticide, accidental (unintentional), subsequent encounter|Toxic effect of unspecified pesticide, accidental (unintentional), subsequent encounter +C2885105|T037|AB|T60.91XS|ICD10CM|Toxic effect of unsp pesticide, accidental, sequela|Toxic effect of unsp pesticide, accidental, sequela +C2885105|T037|PT|T60.91XS|ICD10CM|Toxic effect of unspecified pesticide, accidental (unintentional), sequela|Toxic effect of unspecified pesticide, accidental (unintentional), sequela +C2885106|T037|AB|T60.92|ICD10CM|Toxic effect of unspecified pesticide, intentional self-harm|Toxic effect of unspecified pesticide, intentional self-harm +C2885106|T037|HT|T60.92|ICD10CM|Toxic effect of unspecified pesticide, intentional self-harm|Toxic effect of unspecified pesticide, intentional self-harm +C2885107|T037|AB|T60.92XA|ICD10CM|Toxic effect of unsp pesticide, intentional self-harm, init|Toxic effect of unsp pesticide, intentional self-harm, init +C2885107|T037|PT|T60.92XA|ICD10CM|Toxic effect of unspecified pesticide, intentional self-harm, initial encounter|Toxic effect of unspecified pesticide, intentional self-harm, initial encounter +C2885108|T037|AB|T60.92XD|ICD10CM|Toxic effect of unsp pesticide, intentional self-harm, subs|Toxic effect of unsp pesticide, intentional self-harm, subs +C2885108|T037|PT|T60.92XD|ICD10CM|Toxic effect of unspecified pesticide, intentional self-harm, subsequent encounter|Toxic effect of unspecified pesticide, intentional self-harm, subsequent encounter +C2885109|T037|AB|T60.92XS|ICD10CM|Toxic effect of unsp pesticide, self-harm, sequela|Toxic effect of unsp pesticide, self-harm, sequela +C2885109|T037|PT|T60.92XS|ICD10CM|Toxic effect of unspecified pesticide, intentional self-harm, sequela|Toxic effect of unspecified pesticide, intentional self-harm, sequela +C2885110|T037|AB|T60.93|ICD10CM|Toxic effect of unspecified pesticide, assault|Toxic effect of unspecified pesticide, assault +C2885110|T037|HT|T60.93|ICD10CM|Toxic effect of unspecified pesticide, assault|Toxic effect of unspecified pesticide, assault +C2885111|T037|AB|T60.93XA|ICD10CM|Toxic effect of unspecified pesticide, assault, init encntr|Toxic effect of unspecified pesticide, assault, init encntr +C2885111|T037|PT|T60.93XA|ICD10CM|Toxic effect of unspecified pesticide, assault, initial encounter|Toxic effect of unspecified pesticide, assault, initial encounter +C2885112|T037|AB|T60.93XD|ICD10CM|Toxic effect of unspecified pesticide, assault, subs encntr|Toxic effect of unspecified pesticide, assault, subs encntr +C2885112|T037|PT|T60.93XD|ICD10CM|Toxic effect of unspecified pesticide, assault, subsequent encounter|Toxic effect of unspecified pesticide, assault, subsequent encounter +C2885113|T037|AB|T60.93XS|ICD10CM|Toxic effect of unspecified pesticide, assault, sequela|Toxic effect of unspecified pesticide, assault, sequela +C2885113|T037|PT|T60.93XS|ICD10CM|Toxic effect of unspecified pesticide, assault, sequela|Toxic effect of unspecified pesticide, assault, sequela +C2885114|T037|AB|T60.94|ICD10CM|Toxic effect of unspecified pesticide, undetermined|Toxic effect of unspecified pesticide, undetermined +C2885114|T037|HT|T60.94|ICD10CM|Toxic effect of unspecified pesticide, undetermined|Toxic effect of unspecified pesticide, undetermined +C2885115|T037|AB|T60.94XA|ICD10CM|Toxic effect of unsp pesticide, undetermined, init encntr|Toxic effect of unsp pesticide, undetermined, init encntr +C2885115|T037|PT|T60.94XA|ICD10CM|Toxic effect of unspecified pesticide, undetermined, initial encounter|Toxic effect of unspecified pesticide, undetermined, initial encounter +C2885116|T037|AB|T60.94XD|ICD10CM|Toxic effect of unsp pesticide, undetermined, subs encntr|Toxic effect of unsp pesticide, undetermined, subs encntr +C2885116|T037|PT|T60.94XD|ICD10CM|Toxic effect of unspecified pesticide, undetermined, subsequent encounter|Toxic effect of unspecified pesticide, undetermined, subsequent encounter +C2885117|T037|AB|T60.94XS|ICD10CM|Toxic effect of unspecified pesticide, undetermined, sequela|Toxic effect of unspecified pesticide, undetermined, sequela +C2885117|T037|PT|T60.94XS|ICD10CM|Toxic effect of unspecified pesticide, undetermined, sequela|Toxic effect of unspecified pesticide, undetermined, sequela +C0496106|T037|AB|T61|ICD10CM|Toxic effect of noxious substances eaten as seafood|Toxic effect of noxious substances eaten as seafood +C0496106|T037|HT|T61|ICD10CM|Toxic effect of noxious substances eaten as seafood|Toxic effect of noxious substances eaten as seafood +C0496106|T037|HT|T61|ICD10|Toxic effect of noxious substances eaten as seafood|Toxic effect of noxious substances eaten as seafood +C0008775|T037|HT|T61.0|ICD10CM|Ciguatera fish poisoning|Ciguatera fish poisoning +C0008775|T037|AB|T61.0|ICD10CM|Ciguatera fish poisoning|Ciguatera fish poisoning +C0008775|T037|PT|T61.0|ICD10|Ciguatera fish poisoning|Ciguatera fish poisoning +C2885118|T037|AB|T61.01|ICD10CM|Ciguatera fish poisoning, accidental (unintentional)|Ciguatera fish poisoning, accidental (unintentional) +C2885118|T037|HT|T61.01|ICD10CM|Ciguatera fish poisoning, accidental (unintentional)|Ciguatera fish poisoning, accidental (unintentional) +C2885119|T037|AB|T61.01XA|ICD10CM|Ciguatera fish poisoning, accidental (unintentional), init|Ciguatera fish poisoning, accidental (unintentional), init +C2885119|T037|PT|T61.01XA|ICD10CM|Ciguatera fish poisoning, accidental (unintentional), initial encounter|Ciguatera fish poisoning, accidental (unintentional), initial encounter +C2885120|T037|AB|T61.01XD|ICD10CM|Ciguatera fish poisoning, accidental (unintentional), subs|Ciguatera fish poisoning, accidental (unintentional), subs +C2885120|T037|PT|T61.01XD|ICD10CM|Ciguatera fish poisoning, accidental (unintentional), subsequent encounter|Ciguatera fish poisoning, accidental (unintentional), subsequent encounter +C2885121|T037|PT|T61.01XS|ICD10CM|Ciguatera fish poisoning, accidental (unintentional), sequela|Ciguatera fish poisoning, accidental (unintentional), sequela +C2885121|T037|AB|T61.01XS|ICD10CM|Ciguatera fish poisoning, accidental, sequela|Ciguatera fish poisoning, accidental, sequela +C2885122|T037|AB|T61.02|ICD10CM|Ciguatera fish poisoning, intentional self-harm|Ciguatera fish poisoning, intentional self-harm +C2885122|T037|HT|T61.02|ICD10CM|Ciguatera fish poisoning, intentional self-harm|Ciguatera fish poisoning, intentional self-harm +C2885123|T037|AB|T61.02XA|ICD10CM|Ciguatera fish poisoning, intentional self-harm, init encntr|Ciguatera fish poisoning, intentional self-harm, init encntr +C2885123|T037|PT|T61.02XA|ICD10CM|Ciguatera fish poisoning, intentional self-harm, initial encounter|Ciguatera fish poisoning, intentional self-harm, initial encounter +C2885124|T037|AB|T61.02XD|ICD10CM|Ciguatera fish poisoning, intentional self-harm, subs encntr|Ciguatera fish poisoning, intentional self-harm, subs encntr +C2885124|T037|PT|T61.02XD|ICD10CM|Ciguatera fish poisoning, intentional self-harm, subsequent encounter|Ciguatera fish poisoning, intentional self-harm, subsequent encounter +C2885125|T037|PT|T61.02XS|ICD10CM|Ciguatera fish poisoning, intentional self-harm, sequela|Ciguatera fish poisoning, intentional self-harm, sequela +C2885125|T037|AB|T61.02XS|ICD10CM|Ciguatera fish poisoning, intentional self-harm, sequela|Ciguatera fish poisoning, intentional self-harm, sequela +C2885126|T037|AB|T61.03|ICD10CM|Ciguatera fish poisoning, assault|Ciguatera fish poisoning, assault +C2885126|T037|HT|T61.03|ICD10CM|Ciguatera fish poisoning, assault|Ciguatera fish poisoning, assault +C2885127|T037|PT|T61.03XA|ICD10CM|Ciguatera fish poisoning, assault, initial encounter|Ciguatera fish poisoning, assault, initial encounter +C2885127|T037|AB|T61.03XA|ICD10CM|Ciguatera fish poisoning, assault, initial encounter|Ciguatera fish poisoning, assault, initial encounter +C2885128|T037|PT|T61.03XD|ICD10CM|Ciguatera fish poisoning, assault, subsequent encounter|Ciguatera fish poisoning, assault, subsequent encounter +C2885128|T037|AB|T61.03XD|ICD10CM|Ciguatera fish poisoning, assault, subsequent encounter|Ciguatera fish poisoning, assault, subsequent encounter +C2885129|T037|PT|T61.03XS|ICD10CM|Ciguatera fish poisoning, assault, sequela|Ciguatera fish poisoning, assault, sequela +C2885129|T037|AB|T61.03XS|ICD10CM|Ciguatera fish poisoning, assault, sequela|Ciguatera fish poisoning, assault, sequela +C2885130|T037|AB|T61.04|ICD10CM|Ciguatera fish poisoning, undetermined|Ciguatera fish poisoning, undetermined +C2885130|T037|HT|T61.04|ICD10CM|Ciguatera fish poisoning, undetermined|Ciguatera fish poisoning, undetermined +C2885131|T037|PT|T61.04XA|ICD10CM|Ciguatera fish poisoning, undetermined, initial encounter|Ciguatera fish poisoning, undetermined, initial encounter +C2885131|T037|AB|T61.04XA|ICD10CM|Ciguatera fish poisoning, undetermined, initial encounter|Ciguatera fish poisoning, undetermined, initial encounter +C2885132|T037|AB|T61.04XD|ICD10CM|Ciguatera fish poisoning, undetermined, subsequent encounter|Ciguatera fish poisoning, undetermined, subsequent encounter +C2885132|T037|PT|T61.04XD|ICD10CM|Ciguatera fish poisoning, undetermined, subsequent encounter|Ciguatera fish poisoning, undetermined, subsequent encounter +C2885133|T037|PT|T61.04XS|ICD10CM|Ciguatera fish poisoning, undetermined, sequela|Ciguatera fish poisoning, undetermined, sequela +C2885133|T037|AB|T61.04XS|ICD10CM|Ciguatera fish poisoning, undetermined, sequela|Ciguatera fish poisoning, undetermined, sequela +C1399672|T037|ET|T61.1|ICD10CM|Histamine-like syndrome|Histamine-like syndrome +C0275143|T037|PT|T61.1|ICD10|Scombroid fish poisoning|Scombroid fish poisoning +C0275143|T037|HT|T61.1|ICD10CM|Scombroid fish poisoning|Scombroid fish poisoning +C0275143|T037|AB|T61.1|ICD10CM|Scombroid fish poisoning|Scombroid fish poisoning +C2885134|T037|AB|T61.11|ICD10CM|Scombroid fish poisoning, accidental (unintentional)|Scombroid fish poisoning, accidental (unintentional) +C2885134|T037|HT|T61.11|ICD10CM|Scombroid fish poisoning, accidental (unintentional)|Scombroid fish poisoning, accidental (unintentional) +C2885135|T037|AB|T61.11XA|ICD10CM|Scombroid fish poisoning, accidental (unintentional), init|Scombroid fish poisoning, accidental (unintentional), init +C2885135|T037|PT|T61.11XA|ICD10CM|Scombroid fish poisoning, accidental (unintentional), initial encounter|Scombroid fish poisoning, accidental (unintentional), initial encounter +C2885136|T037|AB|T61.11XD|ICD10CM|Scombroid fish poisoning, accidental (unintentional), subs|Scombroid fish poisoning, accidental (unintentional), subs +C2885136|T037|PT|T61.11XD|ICD10CM|Scombroid fish poisoning, accidental (unintentional), subsequent encounter|Scombroid fish poisoning, accidental (unintentional), subsequent encounter +C2885137|T037|PT|T61.11XS|ICD10CM|Scombroid fish poisoning, accidental (unintentional), sequela|Scombroid fish poisoning, accidental (unintentional), sequela +C2885137|T037|AB|T61.11XS|ICD10CM|Scombroid fish poisoning, accidental, sequela|Scombroid fish poisoning, accidental, sequela +C2885138|T037|AB|T61.12|ICD10CM|Scombroid fish poisoning, intentional self-harm|Scombroid fish poisoning, intentional self-harm +C2885138|T037|HT|T61.12|ICD10CM|Scombroid fish poisoning, intentional self-harm|Scombroid fish poisoning, intentional self-harm +C2885139|T037|AB|T61.12XA|ICD10CM|Scombroid fish poisoning, intentional self-harm, init encntr|Scombroid fish poisoning, intentional self-harm, init encntr +C2885139|T037|PT|T61.12XA|ICD10CM|Scombroid fish poisoning, intentional self-harm, initial encounter|Scombroid fish poisoning, intentional self-harm, initial encounter +C2885140|T037|AB|T61.12XD|ICD10CM|Scombroid fish poisoning, intentional self-harm, subs encntr|Scombroid fish poisoning, intentional self-harm, subs encntr +C2885140|T037|PT|T61.12XD|ICD10CM|Scombroid fish poisoning, intentional self-harm, subsequent encounter|Scombroid fish poisoning, intentional self-harm, subsequent encounter +C2885141|T037|PT|T61.12XS|ICD10CM|Scombroid fish poisoning, intentional self-harm, sequela|Scombroid fish poisoning, intentional self-harm, sequela +C2885141|T037|AB|T61.12XS|ICD10CM|Scombroid fish poisoning, intentional self-harm, sequela|Scombroid fish poisoning, intentional self-harm, sequela +C2885142|T037|AB|T61.13|ICD10CM|Scombroid fish poisoning, assault|Scombroid fish poisoning, assault +C2885142|T037|HT|T61.13|ICD10CM|Scombroid fish poisoning, assault|Scombroid fish poisoning, assault +C2885143|T037|PT|T61.13XA|ICD10CM|Scombroid fish poisoning, assault, initial encounter|Scombroid fish poisoning, assault, initial encounter +C2885143|T037|AB|T61.13XA|ICD10CM|Scombroid fish poisoning, assault, initial encounter|Scombroid fish poisoning, assault, initial encounter +C2885144|T037|PT|T61.13XD|ICD10CM|Scombroid fish poisoning, assault, subsequent encounter|Scombroid fish poisoning, assault, subsequent encounter +C2885144|T037|AB|T61.13XD|ICD10CM|Scombroid fish poisoning, assault, subsequent encounter|Scombroid fish poisoning, assault, subsequent encounter +C2885145|T037|PT|T61.13XS|ICD10CM|Scombroid fish poisoning, assault, sequela|Scombroid fish poisoning, assault, sequela +C2885145|T037|AB|T61.13XS|ICD10CM|Scombroid fish poisoning, assault, sequela|Scombroid fish poisoning, assault, sequela +C2885146|T037|AB|T61.14|ICD10CM|Scombroid fish poisoning, undetermined|Scombroid fish poisoning, undetermined +C2885146|T037|HT|T61.14|ICD10CM|Scombroid fish poisoning, undetermined|Scombroid fish poisoning, undetermined +C2885147|T037|PT|T61.14XA|ICD10CM|Scombroid fish poisoning, undetermined, initial encounter|Scombroid fish poisoning, undetermined, initial encounter +C2885147|T037|AB|T61.14XA|ICD10CM|Scombroid fish poisoning, undetermined, initial encounter|Scombroid fish poisoning, undetermined, initial encounter +C2885148|T037|AB|T61.14XD|ICD10CM|Scombroid fish poisoning, undetermined, subsequent encounter|Scombroid fish poisoning, undetermined, subsequent encounter +C2885148|T037|PT|T61.14XD|ICD10CM|Scombroid fish poisoning, undetermined, subsequent encounter|Scombroid fish poisoning, undetermined, subsequent encounter +C2885149|T037|PT|T61.14XS|ICD10CM|Scombroid fish poisoning, undetermined, sequela|Scombroid fish poisoning, undetermined, sequela +C2885149|T037|AB|T61.14XS|ICD10CM|Scombroid fish poisoning, undetermined, sequela|Scombroid fish poisoning, undetermined, sequela +C0496108|T037|PT|T61.2|ICD10|Other fish and shellfish poisoning|Other fish and shellfish poisoning +C0496108|T037|HT|T61.7|ICD10CM|Other fish and shellfish poisoning|Other fish and shellfish poisoning +C0496108|T037|AB|T61.7|ICD10CM|Other fish and shellfish poisoning|Other fish and shellfish poisoning +C2885150|T037|AB|T61.77|ICD10CM|Other fish poisoning|Other fish poisoning +C2885150|T037|HT|T61.77|ICD10CM|Other fish poisoning|Other fish poisoning +C2885151|T037|AB|T61.771|ICD10CM|Other fish poisoning, accidental (unintentional)|Other fish poisoning, accidental (unintentional) +C2885151|T037|HT|T61.771|ICD10CM|Other fish poisoning, accidental (unintentional)|Other fish poisoning, accidental (unintentional) +C2885152|T037|AB|T61.771A|ICD10CM|Oth fish poisoning, accidental (unintentional), init encntr|Oth fish poisoning, accidental (unintentional), init encntr +C2885152|T037|PT|T61.771A|ICD10CM|Other fish poisoning, accidental (unintentional), initial encounter|Other fish poisoning, accidental (unintentional), initial encounter +C2885153|T037|AB|T61.771D|ICD10CM|Oth fish poisoning, accidental (unintentional), subs encntr|Oth fish poisoning, accidental (unintentional), subs encntr +C2885153|T037|PT|T61.771D|ICD10CM|Other fish poisoning, accidental (unintentional), subsequent encounter|Other fish poisoning, accidental (unintentional), subsequent encounter +C2885154|T037|PT|T61.771S|ICD10CM|Other fish poisoning, accidental (unintentional), sequela|Other fish poisoning, accidental (unintentional), sequela +C2885154|T037|AB|T61.771S|ICD10CM|Other fish poisoning, accidental (unintentional), sequela|Other fish poisoning, accidental (unintentional), sequela +C2885155|T037|AB|T61.772|ICD10CM|Other fish poisoning, intentional self-harm|Other fish poisoning, intentional self-harm +C2885155|T037|HT|T61.772|ICD10CM|Other fish poisoning, intentional self-harm|Other fish poisoning, intentional self-harm +C2885156|T037|AB|T61.772A|ICD10CM|Other fish poisoning, intentional self-harm, init encntr|Other fish poisoning, intentional self-harm, init encntr +C2885156|T037|PT|T61.772A|ICD10CM|Other fish poisoning, intentional self-harm, initial encounter|Other fish poisoning, intentional self-harm, initial encounter +C2885157|T037|AB|T61.772D|ICD10CM|Other fish poisoning, intentional self-harm, subs encntr|Other fish poisoning, intentional self-harm, subs encntr +C2885157|T037|PT|T61.772D|ICD10CM|Other fish poisoning, intentional self-harm, subsequent encounter|Other fish poisoning, intentional self-harm, subsequent encounter +C2885158|T037|PT|T61.772S|ICD10CM|Other fish poisoning, intentional self-harm, sequela|Other fish poisoning, intentional self-harm, sequela +C2885158|T037|AB|T61.772S|ICD10CM|Other fish poisoning, intentional self-harm, sequela|Other fish poisoning, intentional self-harm, sequela +C2885159|T037|AB|T61.773|ICD10CM|Other fish poisoning, assault|Other fish poisoning, assault +C2885159|T037|HT|T61.773|ICD10CM|Other fish poisoning, assault|Other fish poisoning, assault +C2885160|T037|PT|T61.773A|ICD10CM|Other fish poisoning, assault, initial encounter|Other fish poisoning, assault, initial encounter +C2885160|T037|AB|T61.773A|ICD10CM|Other fish poisoning, assault, initial encounter|Other fish poisoning, assault, initial encounter +C2885161|T037|PT|T61.773D|ICD10CM|Other fish poisoning, assault, subsequent encounter|Other fish poisoning, assault, subsequent encounter +C2885161|T037|AB|T61.773D|ICD10CM|Other fish poisoning, assault, subsequent encounter|Other fish poisoning, assault, subsequent encounter +C2885162|T037|PT|T61.773S|ICD10CM|Other fish poisoning, assault, sequela|Other fish poisoning, assault, sequela +C2885162|T037|AB|T61.773S|ICD10CM|Other fish poisoning, assault, sequela|Other fish poisoning, assault, sequela +C2885163|T037|AB|T61.774|ICD10CM|Other fish poisoning, undetermined|Other fish poisoning, undetermined +C2885163|T037|HT|T61.774|ICD10CM|Other fish poisoning, undetermined|Other fish poisoning, undetermined +C2885164|T037|PT|T61.774A|ICD10CM|Other fish poisoning, undetermined, initial encounter|Other fish poisoning, undetermined, initial encounter +C2885164|T037|AB|T61.774A|ICD10CM|Other fish poisoning, undetermined, initial encounter|Other fish poisoning, undetermined, initial encounter +C2885165|T037|AB|T61.774D|ICD10CM|Other fish poisoning, undetermined, subsequent encounter|Other fish poisoning, undetermined, subsequent encounter +C2885165|T037|PT|T61.774D|ICD10CM|Other fish poisoning, undetermined, subsequent encounter|Other fish poisoning, undetermined, subsequent encounter +C2885166|T037|PT|T61.774S|ICD10CM|Other fish poisoning, undetermined, sequela|Other fish poisoning, undetermined, sequela +C2885166|T037|AB|T61.774S|ICD10CM|Other fish poisoning, undetermined, sequela|Other fish poisoning, undetermined, sequela +C2885167|T037|AB|T61.78|ICD10CM|Other shellfish poisoning|Other shellfish poisoning +C2885167|T037|HT|T61.78|ICD10CM|Other shellfish poisoning|Other shellfish poisoning +C2885168|T037|AB|T61.781|ICD10CM|Other shellfish poisoning, accidental (unintentional)|Other shellfish poisoning, accidental (unintentional) +C2885168|T037|HT|T61.781|ICD10CM|Other shellfish poisoning, accidental (unintentional)|Other shellfish poisoning, accidental (unintentional) +C2885169|T037|AB|T61.781A|ICD10CM|Oth shellfish poisoning, accidental (unintentional), init|Oth shellfish poisoning, accidental (unintentional), init +C2885169|T037|PT|T61.781A|ICD10CM|Other shellfish poisoning, accidental (unintentional), initial encounter|Other shellfish poisoning, accidental (unintentional), initial encounter +C2885170|T037|AB|T61.781D|ICD10CM|Oth shellfish poisoning, accidental (unintentional), subs|Oth shellfish poisoning, accidental (unintentional), subs +C2885170|T037|PT|T61.781D|ICD10CM|Other shellfish poisoning, accidental (unintentional), subsequent encounter|Other shellfish poisoning, accidental (unintentional), subsequent encounter +C2885171|T037|AB|T61.781S|ICD10CM|Oth shellfish poisoning, accidental (unintentional), sequela|Oth shellfish poisoning, accidental (unintentional), sequela +C2885171|T037|PT|T61.781S|ICD10CM|Other shellfish poisoning, accidental (unintentional), sequela|Other shellfish poisoning, accidental (unintentional), sequela +C2885172|T037|AB|T61.782|ICD10CM|Other shellfish poisoning, intentional self-harm|Other shellfish poisoning, intentional self-harm +C2885172|T037|HT|T61.782|ICD10CM|Other shellfish poisoning, intentional self-harm|Other shellfish poisoning, intentional self-harm +C2885173|T037|AB|T61.782A|ICD10CM|Oth shellfish poisoning, intentional self-harm, init encntr|Oth shellfish poisoning, intentional self-harm, init encntr +C2885173|T037|PT|T61.782A|ICD10CM|Other shellfish poisoning, intentional self-harm, initial encounter|Other shellfish poisoning, intentional self-harm, initial encounter +C2885174|T037|AB|T61.782D|ICD10CM|Oth shellfish poisoning, intentional self-harm, subs encntr|Oth shellfish poisoning, intentional self-harm, subs encntr +C2885174|T037|PT|T61.782D|ICD10CM|Other shellfish poisoning, intentional self-harm, subsequent encounter|Other shellfish poisoning, intentional self-harm, subsequent encounter +C2885175|T037|AB|T61.782S|ICD10CM|Other shellfish poisoning, intentional self-harm, sequela|Other shellfish poisoning, intentional self-harm, sequela +C2885175|T037|PT|T61.782S|ICD10CM|Other shellfish poisoning, intentional self-harm, sequela|Other shellfish poisoning, intentional self-harm, sequela +C2885176|T037|AB|T61.783|ICD10CM|Other shellfish poisoning, assault|Other shellfish poisoning, assault +C2885176|T037|HT|T61.783|ICD10CM|Other shellfish poisoning, assault|Other shellfish poisoning, assault +C2885177|T037|AB|T61.783A|ICD10CM|Other shellfish poisoning, assault, initial encounter|Other shellfish poisoning, assault, initial encounter +C2885177|T037|PT|T61.783A|ICD10CM|Other shellfish poisoning, assault, initial encounter|Other shellfish poisoning, assault, initial encounter +C2885178|T037|AB|T61.783D|ICD10CM|Other shellfish poisoning, assault, subsequent encounter|Other shellfish poisoning, assault, subsequent encounter +C2885178|T037|PT|T61.783D|ICD10CM|Other shellfish poisoning, assault, subsequent encounter|Other shellfish poisoning, assault, subsequent encounter +C2885179|T037|AB|T61.783S|ICD10CM|Other shellfish poisoning, assault, sequela|Other shellfish poisoning, assault, sequela +C2885179|T037|PT|T61.783S|ICD10CM|Other shellfish poisoning, assault, sequela|Other shellfish poisoning, assault, sequela +C2885180|T037|AB|T61.784|ICD10CM|Other shellfish poisoning, undetermined|Other shellfish poisoning, undetermined +C2885180|T037|HT|T61.784|ICD10CM|Other shellfish poisoning, undetermined|Other shellfish poisoning, undetermined +C2885181|T037|AB|T61.784A|ICD10CM|Other shellfish poisoning, undetermined, initial encounter|Other shellfish poisoning, undetermined, initial encounter +C2885181|T037|PT|T61.784A|ICD10CM|Other shellfish poisoning, undetermined, initial encounter|Other shellfish poisoning, undetermined, initial encounter +C2885182|T037|AB|T61.784D|ICD10CM|Other shellfish poisoning, undetermined, subs encntr|Other shellfish poisoning, undetermined, subs encntr +C2885182|T037|PT|T61.784D|ICD10CM|Other shellfish poisoning, undetermined, subsequent encounter|Other shellfish poisoning, undetermined, subsequent encounter +C2885183|T037|AB|T61.784S|ICD10CM|Other shellfish poisoning, undetermined, sequela|Other shellfish poisoning, undetermined, sequela +C2885183|T037|PT|T61.784S|ICD10CM|Other shellfish poisoning, undetermined, sequela|Other shellfish poisoning, undetermined, sequela +C0478467|T037|AB|T61.8|ICD10CM|Toxic effect of other seafood|Toxic effect of other seafood +C0478467|T037|HT|T61.8|ICD10CM|Toxic effect of other seafood|Toxic effect of other seafood +C0478467|T037|PT|T61.8|ICD10|Toxic effect of other seafoods|Toxic effect of other seafoods +C0478467|T037|HT|T61.8X|ICD10CM|Toxic effect of other seafood|Toxic effect of other seafood +C0478467|T037|AB|T61.8X|ICD10CM|Toxic effect of other seafood|Toxic effect of other seafood +C2885184|T037|AB|T61.8X1|ICD10CM|Toxic effect of other seafood, accidental (unintentional)|Toxic effect of other seafood, accidental (unintentional) +C2885184|T037|HT|T61.8X1|ICD10CM|Toxic effect of other seafood, accidental (unintentional)|Toxic effect of other seafood, accidental (unintentional) +C2885185|T037|PT|T61.8X1A|ICD10CM|Toxic effect of other seafood, accidental (unintentional), initial encounter|Toxic effect of other seafood, accidental (unintentional), initial encounter +C2885185|T037|AB|T61.8X1A|ICD10CM|Toxic effect of seafood, accidental (unintentional), init|Toxic effect of seafood, accidental (unintentional), init +C2885186|T037|PT|T61.8X1D|ICD10CM|Toxic effect of other seafood, accidental (unintentional), subsequent encounter|Toxic effect of other seafood, accidental (unintentional), subsequent encounter +C2885186|T037|AB|T61.8X1D|ICD10CM|Toxic effect of seafood, accidental (unintentional), subs|Toxic effect of seafood, accidental (unintentional), subs +C2885187|T037|PT|T61.8X1S|ICD10CM|Toxic effect of other seafood, accidental (unintentional), sequela|Toxic effect of other seafood, accidental (unintentional), sequela +C2885187|T037|AB|T61.8X1S|ICD10CM|Toxic effect of seafood, accidental (unintentional), sequela|Toxic effect of seafood, accidental (unintentional), sequela +C2885188|T037|AB|T61.8X2|ICD10CM|Toxic effect of other seafood, intentional self-harm|Toxic effect of other seafood, intentional self-harm +C2885188|T037|HT|T61.8X2|ICD10CM|Toxic effect of other seafood, intentional self-harm|Toxic effect of other seafood, intentional self-harm +C2885189|T037|AB|T61.8X2A|ICD10CM|Toxic effect of oth seafood, intentional self-harm, init|Toxic effect of oth seafood, intentional self-harm, init +C2885189|T037|PT|T61.8X2A|ICD10CM|Toxic effect of other seafood, intentional self-harm, initial encounter|Toxic effect of other seafood, intentional self-harm, initial encounter +C2885190|T037|AB|T61.8X2D|ICD10CM|Toxic effect of oth seafood, intentional self-harm, subs|Toxic effect of oth seafood, intentional self-harm, subs +C2885190|T037|PT|T61.8X2D|ICD10CM|Toxic effect of other seafood, intentional self-harm, subsequent encounter|Toxic effect of other seafood, intentional self-harm, subsequent encounter +C2885191|T037|AB|T61.8X2S|ICD10CM|Toxic effect of oth seafood, intentional self-harm, sequela|Toxic effect of oth seafood, intentional self-harm, sequela +C2885191|T037|PT|T61.8X2S|ICD10CM|Toxic effect of other seafood, intentional self-harm, sequela|Toxic effect of other seafood, intentional self-harm, sequela +C2885192|T037|AB|T61.8X3|ICD10CM|Toxic effect of other seafood, assault|Toxic effect of other seafood, assault +C2885192|T037|HT|T61.8X3|ICD10CM|Toxic effect of other seafood, assault|Toxic effect of other seafood, assault +C2885193|T037|AB|T61.8X3A|ICD10CM|Toxic effect of other seafood, assault, initial encounter|Toxic effect of other seafood, assault, initial encounter +C2885193|T037|PT|T61.8X3A|ICD10CM|Toxic effect of other seafood, assault, initial encounter|Toxic effect of other seafood, assault, initial encounter +C2885194|T037|AB|T61.8X3D|ICD10CM|Toxic effect of other seafood, assault, subsequent encounter|Toxic effect of other seafood, assault, subsequent encounter +C2885194|T037|PT|T61.8X3D|ICD10CM|Toxic effect of other seafood, assault, subsequent encounter|Toxic effect of other seafood, assault, subsequent encounter +C2885195|T037|AB|T61.8X3S|ICD10CM|Toxic effect of other seafood, assault, sequela|Toxic effect of other seafood, assault, sequela +C2885195|T037|PT|T61.8X3S|ICD10CM|Toxic effect of other seafood, assault, sequela|Toxic effect of other seafood, assault, sequela +C2885196|T037|AB|T61.8X4|ICD10CM|Toxic effect of other seafood, undetermined|Toxic effect of other seafood, undetermined +C2885196|T037|HT|T61.8X4|ICD10CM|Toxic effect of other seafood, undetermined|Toxic effect of other seafood, undetermined +C2885197|T037|AB|T61.8X4A|ICD10CM|Toxic effect of other seafood, undetermined, init encntr|Toxic effect of other seafood, undetermined, init encntr +C2885197|T037|PT|T61.8X4A|ICD10CM|Toxic effect of other seafood, undetermined, initial encounter|Toxic effect of other seafood, undetermined, initial encounter +C2885198|T037|AB|T61.8X4D|ICD10CM|Toxic effect of other seafood, undetermined, subs encntr|Toxic effect of other seafood, undetermined, subs encntr +C2885198|T037|PT|T61.8X4D|ICD10CM|Toxic effect of other seafood, undetermined, subsequent encounter|Toxic effect of other seafood, undetermined, subsequent encounter +C2885199|T037|AB|T61.8X4S|ICD10CM|Toxic effect of other seafood, undetermined, sequela|Toxic effect of other seafood, undetermined, sequela +C2885199|T037|PT|T61.8X4S|ICD10CM|Toxic effect of other seafood, undetermined, sequela|Toxic effect of other seafood, undetermined, sequela +C0478474|T037|HT|T61.9|ICD10CM|Toxic effect of unspecified seafood|Toxic effect of unspecified seafood +C0478474|T037|AB|T61.9|ICD10CM|Toxic effect of unspecified seafood|Toxic effect of unspecified seafood +C0478474|T037|PT|T61.9|ICD10|Toxic effect of unspecified seafood|Toxic effect of unspecified seafood +C2885200|T037|AB|T61.91|ICD10CM|Toxic effect of unsp seafood, accidental (unintentional)|Toxic effect of unsp seafood, accidental (unintentional) +C2885200|T037|HT|T61.91|ICD10CM|Toxic effect of unspecified seafood, accidental (unintentional)|Toxic effect of unspecified seafood, accidental (unintentional) +C2885201|T037|AB|T61.91XA|ICD10CM|Toxic effect of unsp seafood, accidental, init|Toxic effect of unsp seafood, accidental, init +C2885201|T037|PT|T61.91XA|ICD10CM|Toxic effect of unspecified seafood, accidental (unintentional), initial encounter|Toxic effect of unspecified seafood, accidental (unintentional), initial encounter +C2885202|T037|AB|T61.91XD|ICD10CM|Toxic effect of unsp seafood, accidental, subs|Toxic effect of unsp seafood, accidental, subs +C2885202|T037|PT|T61.91XD|ICD10CM|Toxic effect of unspecified seafood, accidental (unintentional), subsequent encounter|Toxic effect of unspecified seafood, accidental (unintentional), subsequent encounter +C2885203|T037|AB|T61.91XS|ICD10CM|Toxic effect of unsp seafood, accidental, sequela|Toxic effect of unsp seafood, accidental, sequela +C2885203|T037|PT|T61.91XS|ICD10CM|Toxic effect of unspecified seafood, accidental (unintentional), sequela|Toxic effect of unspecified seafood, accidental (unintentional), sequela +C2885204|T037|AB|T61.92|ICD10CM|Toxic effect of unspecified seafood, intentional self-harm|Toxic effect of unspecified seafood, intentional self-harm +C2885204|T037|HT|T61.92|ICD10CM|Toxic effect of unspecified seafood, intentional self-harm|Toxic effect of unspecified seafood, intentional self-harm +C2885205|T037|AB|T61.92XA|ICD10CM|Toxic effect of unsp seafood, intentional self-harm, init|Toxic effect of unsp seafood, intentional self-harm, init +C2885205|T037|PT|T61.92XA|ICD10CM|Toxic effect of unspecified seafood, intentional self-harm, initial encounter|Toxic effect of unspecified seafood, intentional self-harm, initial encounter +C2885206|T037|AB|T61.92XD|ICD10CM|Toxic effect of unsp seafood, intentional self-harm, subs|Toxic effect of unsp seafood, intentional self-harm, subs +C2885206|T037|PT|T61.92XD|ICD10CM|Toxic effect of unspecified seafood, intentional self-harm, subsequent encounter|Toxic effect of unspecified seafood, intentional self-harm, subsequent encounter +C2885207|T037|AB|T61.92XS|ICD10CM|Toxic effect of unsp seafood, intentional self-harm, sequela|Toxic effect of unsp seafood, intentional self-harm, sequela +C2885207|T037|PT|T61.92XS|ICD10CM|Toxic effect of unspecified seafood, intentional self-harm, sequela|Toxic effect of unspecified seafood, intentional self-harm, sequela +C2885208|T037|AB|T61.93|ICD10CM|Toxic effect of unspecified seafood, assault|Toxic effect of unspecified seafood, assault +C2885208|T037|HT|T61.93|ICD10CM|Toxic effect of unspecified seafood, assault|Toxic effect of unspecified seafood, assault +C2885209|T037|AB|T61.93XA|ICD10CM|Toxic effect of unspecified seafood, assault, init encntr|Toxic effect of unspecified seafood, assault, init encntr +C2885209|T037|PT|T61.93XA|ICD10CM|Toxic effect of unspecified seafood, assault, initial encounter|Toxic effect of unspecified seafood, assault, initial encounter +C2885210|T037|AB|T61.93XD|ICD10CM|Toxic effect of unspecified seafood, assault, subs encntr|Toxic effect of unspecified seafood, assault, subs encntr +C2885210|T037|PT|T61.93XD|ICD10CM|Toxic effect of unspecified seafood, assault, subsequent encounter|Toxic effect of unspecified seafood, assault, subsequent encounter +C2885211|T037|AB|T61.93XS|ICD10CM|Toxic effect of unspecified seafood, assault, sequela|Toxic effect of unspecified seafood, assault, sequela +C2885211|T037|PT|T61.93XS|ICD10CM|Toxic effect of unspecified seafood, assault, sequela|Toxic effect of unspecified seafood, assault, sequela +C2885212|T037|AB|T61.94|ICD10CM|Toxic effect of unspecified seafood, undetermined|Toxic effect of unspecified seafood, undetermined +C2885212|T037|HT|T61.94|ICD10CM|Toxic effect of unspecified seafood, undetermined|Toxic effect of unspecified seafood, undetermined +C2885213|T037|AB|T61.94XA|ICD10CM|Toxic effect of unsp seafood, undetermined, init encntr|Toxic effect of unsp seafood, undetermined, init encntr +C2885213|T037|PT|T61.94XA|ICD10CM|Toxic effect of unspecified seafood, undetermined, initial encounter|Toxic effect of unspecified seafood, undetermined, initial encounter +C2885214|T037|AB|T61.94XD|ICD10CM|Toxic effect of unsp seafood, undetermined, subs encntr|Toxic effect of unsp seafood, undetermined, subs encntr +C2885214|T037|PT|T61.94XD|ICD10CM|Toxic effect of unspecified seafood, undetermined, subsequent encounter|Toxic effect of unspecified seafood, undetermined, subsequent encounter +C2885215|T037|AB|T61.94XS|ICD10CM|Toxic effect of unspecified seafood, undetermined, sequela|Toxic effect of unspecified seafood, undetermined, sequela +C2885215|T037|PT|T61.94XS|ICD10CM|Toxic effect of unspecified seafood, undetermined, sequela|Toxic effect of unspecified seafood, undetermined, sequela +C0413022|T037|HT|T62|ICD10|Toxic effect of other noxious substances eaten as food|Toxic effect of other noxious substances eaten as food +C0413022|T037|AB|T62|ICD10CM|Toxic effect of other noxious substances eaten as food|Toxic effect of other noxious substances eaten as food +C0413022|T037|HT|T62|ICD10CM|Toxic effect of other noxious substances eaten as food|Toxic effect of other noxious substances eaten as food +C0497026|T037|PS|T62.0|ICD10|Ingested mushrooms|Ingested mushrooms +C0497026|T037|PX|T62.0|ICD10|Toxic effect of ingested mushrooms|Toxic effect of ingested mushrooms +C0497026|T037|HT|T62.0|ICD10CM|Toxic effect of ingested mushrooms|Toxic effect of ingested mushrooms +C0497026|T037|AB|T62.0|ICD10CM|Toxic effect of ingested mushrooms|Toxic effect of ingested mushrooms +C0497026|T037|HT|T62.0X|ICD10CM|Toxic effect of ingested mushrooms|Toxic effect of ingested mushrooms +C0497026|T037|AB|T62.0X|ICD10CM|Toxic effect of ingested mushrooms|Toxic effect of ingested mushrooms +C0497026|T037|ET|T62.0X1|ICD10CM|Toxic effect of ingested mushrooms NOS|Toxic effect of ingested mushrooms NOS +C2885216|T037|AB|T62.0X1|ICD10CM|Toxic effect of ingested mushrooms, accidental|Toxic effect of ingested mushrooms, accidental +C2885216|T037|HT|T62.0X1|ICD10CM|Toxic effect of ingested mushrooms, accidental (unintentional)|Toxic effect of ingested mushrooms, accidental (unintentional) +C2885217|T037|PT|T62.0X1A|ICD10CM|Toxic effect of ingested mushrooms, accidental (unintentional), initial encounter|Toxic effect of ingested mushrooms, accidental (unintentional), initial encounter +C2885217|T037|AB|T62.0X1A|ICD10CM|Toxic effect of ingested mushrooms, accidental, init|Toxic effect of ingested mushrooms, accidental, init +C2885218|T037|PT|T62.0X1D|ICD10CM|Toxic effect of ingested mushrooms, accidental (unintentional), subsequent encounter|Toxic effect of ingested mushrooms, accidental (unintentional), subsequent encounter +C2885218|T037|AB|T62.0X1D|ICD10CM|Toxic effect of ingested mushrooms, accidental, subs|Toxic effect of ingested mushrooms, accidental, subs +C2885219|T037|PT|T62.0X1S|ICD10CM|Toxic effect of ingested mushrooms, accidental (unintentional), sequela|Toxic effect of ingested mushrooms, accidental (unintentional), sequela +C2885219|T037|AB|T62.0X1S|ICD10CM|Toxic effect of ingested mushrooms, accidental, sequela|Toxic effect of ingested mushrooms, accidental, sequela +C2885220|T037|AB|T62.0X2|ICD10CM|Toxic effect of ingested mushrooms, intentional self-harm|Toxic effect of ingested mushrooms, intentional self-harm +C2885220|T037|HT|T62.0X2|ICD10CM|Toxic effect of ingested mushrooms, intentional self-harm|Toxic effect of ingested mushrooms, intentional self-harm +C2885221|T037|PT|T62.0X2A|ICD10CM|Toxic effect of ingested mushrooms, intentional self-harm, initial encounter|Toxic effect of ingested mushrooms, intentional self-harm, initial encounter +C2885221|T037|AB|T62.0X2A|ICD10CM|Toxic effect of ingested mushrooms, self-harm, init|Toxic effect of ingested mushrooms, self-harm, init +C2885222|T037|PT|T62.0X2D|ICD10CM|Toxic effect of ingested mushrooms, intentional self-harm, subsequent encounter|Toxic effect of ingested mushrooms, intentional self-harm, subsequent encounter +C2885222|T037|AB|T62.0X2D|ICD10CM|Toxic effect of ingested mushrooms, self-harm, subs|Toxic effect of ingested mushrooms, self-harm, subs +C2885223|T037|PT|T62.0X2S|ICD10CM|Toxic effect of ingested mushrooms, intentional self-harm, sequela|Toxic effect of ingested mushrooms, intentional self-harm, sequela +C2885223|T037|AB|T62.0X2S|ICD10CM|Toxic effect of ingested mushrooms, self-harm, sequela|Toxic effect of ingested mushrooms, self-harm, sequela +C2885224|T037|AB|T62.0X3|ICD10CM|Toxic effect of ingested mushrooms, assault|Toxic effect of ingested mushrooms, assault +C2885224|T037|HT|T62.0X3|ICD10CM|Toxic effect of ingested mushrooms, assault|Toxic effect of ingested mushrooms, assault +C2885225|T037|AB|T62.0X3A|ICD10CM|Toxic effect of ingested mushrooms, assault, init encntr|Toxic effect of ingested mushrooms, assault, init encntr +C2885225|T037|PT|T62.0X3A|ICD10CM|Toxic effect of ingested mushrooms, assault, initial encounter|Toxic effect of ingested mushrooms, assault, initial encounter +C2885226|T037|AB|T62.0X3D|ICD10CM|Toxic effect of ingested mushrooms, assault, subs encntr|Toxic effect of ingested mushrooms, assault, subs encntr +C2885226|T037|PT|T62.0X3D|ICD10CM|Toxic effect of ingested mushrooms, assault, subsequent encounter|Toxic effect of ingested mushrooms, assault, subsequent encounter +C2885227|T037|AB|T62.0X3S|ICD10CM|Toxic effect of ingested mushrooms, assault, sequela|Toxic effect of ingested mushrooms, assault, sequela +C2885227|T037|PT|T62.0X3S|ICD10CM|Toxic effect of ingested mushrooms, assault, sequela|Toxic effect of ingested mushrooms, assault, sequela +C2885228|T037|AB|T62.0X4|ICD10CM|Toxic effect of ingested mushrooms, undetermined|Toxic effect of ingested mushrooms, undetermined +C2885228|T037|HT|T62.0X4|ICD10CM|Toxic effect of ingested mushrooms, undetermined|Toxic effect of ingested mushrooms, undetermined +C2885229|T037|AB|T62.0X4A|ICD10CM|Toxic effect of ingested mushrooms, undetermined, init|Toxic effect of ingested mushrooms, undetermined, init +C2885229|T037|PT|T62.0X4A|ICD10CM|Toxic effect of ingested mushrooms, undetermined, initial encounter|Toxic effect of ingested mushrooms, undetermined, initial encounter +C2885230|T037|AB|T62.0X4D|ICD10CM|Toxic effect of ingested mushrooms, undetermined, subs|Toxic effect of ingested mushrooms, undetermined, subs +C2885230|T037|PT|T62.0X4D|ICD10CM|Toxic effect of ingested mushrooms, undetermined, subsequent encounter|Toxic effect of ingested mushrooms, undetermined, subsequent encounter +C2885231|T037|AB|T62.0X4S|ICD10CM|Toxic effect of ingested mushrooms, undetermined, sequela|Toxic effect of ingested mushrooms, undetermined, sequela +C2885231|T037|PT|T62.0X4S|ICD10CM|Toxic effect of ingested mushrooms, undetermined, sequela|Toxic effect of ingested mushrooms, undetermined, sequela +C0497027|T037|PS|T62.1|ICD10|Ingested berries|Ingested berries +C0497027|T037|PX|T62.1|ICD10|Toxic effect of ingested berries|Toxic effect of ingested berries +C0497027|T037|HT|T62.1|ICD10CM|Toxic effect of ingested berries|Toxic effect of ingested berries +C0497027|T037|AB|T62.1|ICD10CM|Toxic effect of ingested berries|Toxic effect of ingested berries +C0497027|T037|HT|T62.1X|ICD10CM|Toxic effect of ingested berries|Toxic effect of ingested berries +C0497027|T037|AB|T62.1X|ICD10CM|Toxic effect of ingested berries|Toxic effect of ingested berries +C0497027|T037|ET|T62.1X1|ICD10CM|Toxic effect of ingested berries NOS|Toxic effect of ingested berries NOS +C2885232|T037|AB|T62.1X1|ICD10CM|Toxic effect of ingested berries, accidental (unintentional)|Toxic effect of ingested berries, accidental (unintentional) +C2885232|T037|HT|T62.1X1|ICD10CM|Toxic effect of ingested berries, accidental (unintentional)|Toxic effect of ingested berries, accidental (unintentional) +C2885233|T037|PT|T62.1X1A|ICD10CM|Toxic effect of ingested berries, accidental (unintentional), initial encounter|Toxic effect of ingested berries, accidental (unintentional), initial encounter +C2885233|T037|AB|T62.1X1A|ICD10CM|Toxic effect of ingested berries, accidental, init|Toxic effect of ingested berries, accidental, init +C2885234|T037|PT|T62.1X1D|ICD10CM|Toxic effect of ingested berries, accidental (unintentional), subsequent encounter|Toxic effect of ingested berries, accidental (unintentional), subsequent encounter +C2885234|T037|AB|T62.1X1D|ICD10CM|Toxic effect of ingested berries, accidental, subs|Toxic effect of ingested berries, accidental, subs +C2885235|T037|PT|T62.1X1S|ICD10CM|Toxic effect of ingested berries, accidental (unintentional), sequela|Toxic effect of ingested berries, accidental (unintentional), sequela +C2885235|T037|AB|T62.1X1S|ICD10CM|Toxic effect of ingested berries, accidental, sequela|Toxic effect of ingested berries, accidental, sequela +C2885236|T037|AB|T62.1X2|ICD10CM|Toxic effect of ingested berries, intentional self-harm|Toxic effect of ingested berries, intentional self-harm +C2885236|T037|HT|T62.1X2|ICD10CM|Toxic effect of ingested berries, intentional self-harm|Toxic effect of ingested berries, intentional self-harm +C2885237|T037|PT|T62.1X2A|ICD10CM|Toxic effect of ingested berries, intentional self-harm, initial encounter|Toxic effect of ingested berries, intentional self-harm, initial encounter +C2885237|T037|AB|T62.1X2A|ICD10CM|Toxic effect of ingested berries, self-harm, init|Toxic effect of ingested berries, self-harm, init +C2885238|T037|PT|T62.1X2D|ICD10CM|Toxic effect of ingested berries, intentional self-harm, subsequent encounter|Toxic effect of ingested berries, intentional self-harm, subsequent encounter +C2885238|T037|AB|T62.1X2D|ICD10CM|Toxic effect of ingested berries, self-harm, subs|Toxic effect of ingested berries, self-harm, subs +C2885239|T037|PT|T62.1X2S|ICD10CM|Toxic effect of ingested berries, intentional self-harm, sequela|Toxic effect of ingested berries, intentional self-harm, sequela +C2885239|T037|AB|T62.1X2S|ICD10CM|Toxic effect of ingested berries, self-harm, sequela|Toxic effect of ingested berries, self-harm, sequela +C2885240|T037|AB|T62.1X3|ICD10CM|Toxic effect of ingested berries, assault|Toxic effect of ingested berries, assault +C2885240|T037|HT|T62.1X3|ICD10CM|Toxic effect of ingested berries, assault|Toxic effect of ingested berries, assault +C2885241|T037|AB|T62.1X3A|ICD10CM|Toxic effect of ingested berries, assault, initial encounter|Toxic effect of ingested berries, assault, initial encounter +C2885241|T037|PT|T62.1X3A|ICD10CM|Toxic effect of ingested berries, assault, initial encounter|Toxic effect of ingested berries, assault, initial encounter +C2885242|T037|AB|T62.1X3D|ICD10CM|Toxic effect of ingested berries, assault, subs encntr|Toxic effect of ingested berries, assault, subs encntr +C2885242|T037|PT|T62.1X3D|ICD10CM|Toxic effect of ingested berries, assault, subsequent encounter|Toxic effect of ingested berries, assault, subsequent encounter +C2885243|T037|AB|T62.1X3S|ICD10CM|Toxic effect of ingested berries, assault, sequela|Toxic effect of ingested berries, assault, sequela +C2885243|T037|PT|T62.1X3S|ICD10CM|Toxic effect of ingested berries, assault, sequela|Toxic effect of ingested berries, assault, sequela +C2885244|T037|AB|T62.1X4|ICD10CM|Toxic effect of ingested berries, undetermined|Toxic effect of ingested berries, undetermined +C2885244|T037|HT|T62.1X4|ICD10CM|Toxic effect of ingested berries, undetermined|Toxic effect of ingested berries, undetermined +C2885245|T037|AB|T62.1X4A|ICD10CM|Toxic effect of ingested berries, undetermined, init encntr|Toxic effect of ingested berries, undetermined, init encntr +C2885245|T037|PT|T62.1X4A|ICD10CM|Toxic effect of ingested berries, undetermined, initial encounter|Toxic effect of ingested berries, undetermined, initial encounter +C2885246|T037|AB|T62.1X4D|ICD10CM|Toxic effect of ingested berries, undetermined, subs encntr|Toxic effect of ingested berries, undetermined, subs encntr +C2885246|T037|PT|T62.1X4D|ICD10CM|Toxic effect of ingested berries, undetermined, subsequent encounter|Toxic effect of ingested berries, undetermined, subsequent encounter +C2885247|T037|AB|T62.1X4S|ICD10CM|Toxic effect of ingested berries, undetermined, sequela|Toxic effect of ingested berries, undetermined, sequela +C2885247|T037|PT|T62.1X4S|ICD10CM|Toxic effect of ingested berries, undetermined, sequela|Toxic effect of ingested berries, undetermined, sequela +C0478468|T037|PS|T62.2|ICD10|Other ingested (parts of) plant(s)|Other ingested (parts of) plant(s) +C0478468|T037|PX|T62.2|ICD10|Toxic effect of other ingested (parts of) plant(s)|Toxic effect of other ingested (parts of) plant(s) +C0478468|T037|HT|T62.2|ICD10CM|Toxic effect of other ingested (parts of) plant(s)|Toxic effect of other ingested (parts of) plant(s) +C0478468|T037|AB|T62.2|ICD10CM|Toxic effect of other ingested (parts of) plant(s)|Toxic effect of other ingested (parts of) plant(s) +C0478468|T037|HT|T62.2X|ICD10CM|Toxic effect of other ingested (parts of) plant(s)|Toxic effect of other ingested (parts of) plant(s) +C0478468|T037|AB|T62.2X|ICD10CM|Toxic effect of other ingested (parts of) plant(s)|Toxic effect of other ingested (parts of) plant(s) +C2885248|T037|AB|T62.2X1|ICD10CM|Toxic effect of ingested (parts of) plant(s), accidental|Toxic effect of ingested (parts of) plant(s), accidental +C0478468|T037|ET|T62.2X1|ICD10CM|Toxic effect of other ingested (parts of) plant(s) NOS|Toxic effect of other ingested (parts of) plant(s) NOS +C2885248|T037|HT|T62.2X1|ICD10CM|Toxic effect of other ingested (parts of) plant(s), accidental (unintentional)|Toxic effect of other ingested (parts of) plant(s), accidental (unintentional) +C2885249|T037|AB|T62.2X1A|ICD10CM|Toxic effect of ingested (parts of) plant(s), acc, init|Toxic effect of ingested (parts of) plant(s), acc, init +C2885249|T037|PT|T62.2X1A|ICD10CM|Toxic effect of other ingested (parts of) plant(s), accidental (unintentional), initial encounter|Toxic effect of other ingested (parts of) plant(s), accidental (unintentional), initial encounter +C2885250|T037|AB|T62.2X1D|ICD10CM|Toxic effect of ingested (parts of) plant(s), acc, subs|Toxic effect of ingested (parts of) plant(s), acc, subs +C2885250|T037|PT|T62.2X1D|ICD10CM|Toxic effect of other ingested (parts of) plant(s), accidental (unintentional), subsequent encounter|Toxic effect of other ingested (parts of) plant(s), accidental (unintentional), subsequent encounter +C2885251|T037|AB|T62.2X1S|ICD10CM|Toxic effect of ingested (parts of) plant(s), acc, sequela|Toxic effect of ingested (parts of) plant(s), acc, sequela +C2885251|T037|PT|T62.2X1S|ICD10CM|Toxic effect of other ingested (parts of) plant(s), accidental (unintentional), sequela|Toxic effect of other ingested (parts of) plant(s), accidental (unintentional), sequela +C2885252|T037|AB|T62.2X2|ICD10CM|Toxic effect of ingested (parts of) plant(s), self-harm|Toxic effect of ingested (parts of) plant(s), self-harm +C2885252|T037|HT|T62.2X2|ICD10CM|Toxic effect of other ingested (parts of) plant(s), intentional self-harm|Toxic effect of other ingested (parts of) plant(s), intentional self-harm +C2885253|T037|AB|T62.2X2A|ICD10CM|Toxic effect of ingested (parts of) plant(s), slf-hrm, init|Toxic effect of ingested (parts of) plant(s), slf-hrm, init +C2885253|T037|PT|T62.2X2A|ICD10CM|Toxic effect of other ingested (parts of) plant(s), intentional self-harm, initial encounter|Toxic effect of other ingested (parts of) plant(s), intentional self-harm, initial encounter +C2885254|T037|AB|T62.2X2D|ICD10CM|Toxic effect of ingested (parts of) plant(s), slf-hrm, subs|Toxic effect of ingested (parts of) plant(s), slf-hrm, subs +C2885254|T037|PT|T62.2X2D|ICD10CM|Toxic effect of other ingested (parts of) plant(s), intentional self-harm, subsequent encounter|Toxic effect of other ingested (parts of) plant(s), intentional self-harm, subsequent encounter +C2885255|T037|AB|T62.2X2S|ICD10CM|Toxic effect of ingest (parts of) plant(s), slf-hrm, sequela|Toxic effect of ingest (parts of) plant(s), slf-hrm, sequela +C2885255|T037|PT|T62.2X2S|ICD10CM|Toxic effect of other ingested (parts of) plant(s), intentional self-harm, sequela|Toxic effect of other ingested (parts of) plant(s), intentional self-harm, sequela +C2885256|T037|AB|T62.2X3|ICD10CM|Toxic effect of other ingested (parts of) plant(s), assault|Toxic effect of other ingested (parts of) plant(s), assault +C2885256|T037|HT|T62.2X3|ICD10CM|Toxic effect of other ingested (parts of) plant(s), assault|Toxic effect of other ingested (parts of) plant(s), assault +C2885257|T037|AB|T62.2X3A|ICD10CM|Toxic effect of ingested (parts of) plant(s), assault, init|Toxic effect of ingested (parts of) plant(s), assault, init +C2885257|T037|PT|T62.2X3A|ICD10CM|Toxic effect of other ingested (parts of) plant(s), assault, initial encounter|Toxic effect of other ingested (parts of) plant(s), assault, initial encounter +C2885258|T037|AB|T62.2X3D|ICD10CM|Toxic effect of ingested (parts of) plant(s), assault, subs|Toxic effect of ingested (parts of) plant(s), assault, subs +C2885258|T037|PT|T62.2X3D|ICD10CM|Toxic effect of other ingested (parts of) plant(s), assault, subsequent encounter|Toxic effect of other ingested (parts of) plant(s), assault, subsequent encounter +C2885259|T037|AB|T62.2X3S|ICD10CM|Toxic effect of ingest (parts of) plant(s), assault, sequela|Toxic effect of ingest (parts of) plant(s), assault, sequela +C2885259|T037|PT|T62.2X3S|ICD10CM|Toxic effect of other ingested (parts of) plant(s), assault, sequela|Toxic effect of other ingested (parts of) plant(s), assault, sequela +C2885260|T037|AB|T62.2X4|ICD10CM|Toxic effect of ingested (parts of) plant(s), undetermined|Toxic effect of ingested (parts of) plant(s), undetermined +C2885260|T037|HT|T62.2X4|ICD10CM|Toxic effect of other ingested (parts of) plant(s), undetermined|Toxic effect of other ingested (parts of) plant(s), undetermined +C2885261|T037|AB|T62.2X4A|ICD10CM|Toxic effect of ingested (parts of) plant(s), undet, init|Toxic effect of ingested (parts of) plant(s), undet, init +C2885261|T037|PT|T62.2X4A|ICD10CM|Toxic effect of other ingested (parts of) plant(s), undetermined, initial encounter|Toxic effect of other ingested (parts of) plant(s), undetermined, initial encounter +C2885262|T037|AB|T62.2X4D|ICD10CM|Toxic effect of ingested (parts of) plant(s), undet, subs|Toxic effect of ingested (parts of) plant(s), undet, subs +C2885262|T037|PT|T62.2X4D|ICD10CM|Toxic effect of other ingested (parts of) plant(s), undetermined, subsequent encounter|Toxic effect of other ingested (parts of) plant(s), undetermined, subsequent encounter +C2885263|T037|AB|T62.2X4S|ICD10CM|Toxic effect of ingested (parts of) plant(s), undet, sequela|Toxic effect of ingested (parts of) plant(s), undet, sequela +C2885263|T037|PT|T62.2X4S|ICD10CM|Toxic effect of other ingested (parts of) plant(s), undetermined, sequela|Toxic effect of other ingested (parts of) plant(s), undetermined, sequela +C0161723|T037|PS|T62.8|ICD10|Other specified noxious substances eaten as food|Other specified noxious substances eaten as food +C0161723|T037|AB|T62.8|ICD10CM|Toxic effect of oth noxious substances eaten as food|Toxic effect of oth noxious substances eaten as food +C0161723|T037|HT|T62.8|ICD10CM|Toxic effect of other specified noxious substances eaten as food|Toxic effect of other specified noxious substances eaten as food +C0161723|T037|PX|T62.8|ICD10|Toxic effect of other specified noxious substances eaten as food|Toxic effect of other specified noxious substances eaten as food +C0161723|T037|AB|T62.8X|ICD10CM|Toxic effect of oth noxious substances eaten as food|Toxic effect of oth noxious substances eaten as food +C0161723|T037|HT|T62.8X|ICD10CM|Toxic effect of other specified noxious substances eaten as food|Toxic effect of other specified noxious substances eaten as food +C2885264|T037|AB|T62.8X1|ICD10CM|Toxic effect of noxious substances eaten as food, acc|Toxic effect of noxious substances eaten as food, acc +C0161723|T037|ET|T62.8X1|ICD10CM|Toxic effect of other specified noxious substances eaten as food NOS|Toxic effect of other specified noxious substances eaten as food NOS +C2885264|T037|HT|T62.8X1|ICD10CM|Toxic effect of other specified noxious substances eaten as food, accidental (unintentional)|Toxic effect of other specified noxious substances eaten as food, accidental (unintentional) +C2885265|T037|AB|T62.8X1A|ICD10CM|Toxic effect of noxious substances eaten as food, acc, init|Toxic effect of noxious substances eaten as food, acc, init +C2885266|T037|AB|T62.8X1D|ICD10CM|Toxic effect of noxious substances eaten as food, acc, subs|Toxic effect of noxious substances eaten as food, acc, subs +C2885267|T037|AB|T62.8X1S|ICD10CM|Toxic effect of noxious substnc eaten as food, acc, sequela|Toxic effect of noxious substnc eaten as food, acc, sequela +C2885268|T037|AB|T62.8X2|ICD10CM|Toxic effect of noxious substances eaten as food, self-harm|Toxic effect of noxious substances eaten as food, self-harm +C2885268|T037|HT|T62.8X2|ICD10CM|Toxic effect of other specified noxious substances eaten as food, intentional self-harm|Toxic effect of other specified noxious substances eaten as food, intentional self-harm +C2885269|T037|AB|T62.8X2A|ICD10CM|Toxic effect of noxious substnc eaten as food, slf-hrm, init|Toxic effect of noxious substnc eaten as food, slf-hrm, init +C2885270|T037|AB|T62.8X2D|ICD10CM|Toxic effect of noxious substnc eaten as food, slf-hrm, subs|Toxic effect of noxious substnc eaten as food, slf-hrm, subs +C2885271|T037|AB|T62.8X2S|ICD10CM|Toxic effect of noxious substnc eaten as food, slf-hrm, sqla|Toxic effect of noxious substnc eaten as food, slf-hrm, sqla +C2885271|T037|PT|T62.8X2S|ICD10CM|Toxic effect of other specified noxious substances eaten as food, intentional self-harm, sequela|Toxic effect of other specified noxious substances eaten as food, intentional self-harm, sequela +C2885272|T037|AB|T62.8X3|ICD10CM|Toxic effect of noxious substances eaten as food, assault|Toxic effect of noxious substances eaten as food, assault +C2885272|T037|HT|T62.8X3|ICD10CM|Toxic effect of other specified noxious substances eaten as food, assault|Toxic effect of other specified noxious substances eaten as food, assault +C2885273|T037|AB|T62.8X3A|ICD10CM|Toxic effect of noxious substnc eaten as food, assault, init|Toxic effect of noxious substnc eaten as food, assault, init +C2885273|T037|PT|T62.8X3A|ICD10CM|Toxic effect of other specified noxious substances eaten as food, assault, initial encounter|Toxic effect of other specified noxious substances eaten as food, assault, initial encounter +C2885274|T037|AB|T62.8X3D|ICD10CM|Toxic effect of noxious substnc eaten as food, assault, subs|Toxic effect of noxious substnc eaten as food, assault, subs +C2885274|T037|PT|T62.8X3D|ICD10CM|Toxic effect of other specified noxious substances eaten as food, assault, subsequent encounter|Toxic effect of other specified noxious substances eaten as food, assault, subsequent encounter +C2885275|T037|AB|T62.8X3S|ICD10CM|Toxic effect of noxious substnc eaten as food, asslt, sqla|Toxic effect of noxious substnc eaten as food, asslt, sqla +C2885275|T037|PT|T62.8X3S|ICD10CM|Toxic effect of other specified noxious substances eaten as food, assault, sequela|Toxic effect of other specified noxious substances eaten as food, assault, sequela +C2885276|T037|AB|T62.8X4|ICD10CM|Toxic effect of noxious substances eaten as food, undet|Toxic effect of noxious substances eaten as food, undet +C2885276|T037|HT|T62.8X4|ICD10CM|Toxic effect of other specified noxious substances eaten as food, undetermined|Toxic effect of other specified noxious substances eaten as food, undetermined +C2885277|T037|AB|T62.8X4A|ICD10CM|Toxic effect of noxious substnc eaten as food, undet, init|Toxic effect of noxious substnc eaten as food, undet, init +C2885277|T037|PT|T62.8X4A|ICD10CM|Toxic effect of other specified noxious substances eaten as food, undetermined, initial encounter|Toxic effect of other specified noxious substances eaten as food, undetermined, initial encounter +C2885278|T037|AB|T62.8X4D|ICD10CM|Toxic effect of noxious substnc eaten as food, undet, subs|Toxic effect of noxious substnc eaten as food, undet, subs +C2885278|T037|PT|T62.8X4D|ICD10CM|Toxic effect of other specified noxious substances eaten as food, undetermined, subsequent encounter|Toxic effect of other specified noxious substances eaten as food, undetermined, subsequent encounter +C2885279|T037|AB|T62.8X4S|ICD10CM|Toxic effect of noxious substnc eaten as food, undet, sqla|Toxic effect of noxious substnc eaten as food, undet, sqla +C2885279|T037|PT|T62.8X4S|ICD10CM|Toxic effect of other specified noxious substances eaten as food, undetermined, sequela|Toxic effect of other specified noxious substances eaten as food, undetermined, sequela +C0161721|T037|PS|T62.9|ICD10|Noxious substance eaten as food, unspecified|Noxious substance eaten as food, unspecified +C0161721|T037|PX|T62.9|ICD10|Toxic effect of noxious substance eaten as food, unspecified|Toxic effect of noxious substance eaten as food, unspecified +C0161721|T037|HT|T62.9|ICD10CM|Toxic effect of unspecified noxious substance eaten as food|Toxic effect of unspecified noxious substance eaten as food +C0161721|T037|AB|T62.9|ICD10CM|Toxic effect of unspecified noxious substance eaten as food|Toxic effect of unspecified noxious substance eaten as food +C2885280|T037|AB|T62.91|ICD10CM|Toxic effect of unsp noxious substance eaten as food, acc|Toxic effect of unsp noxious substance eaten as food, acc +C0161721|T037|ET|T62.91|ICD10CM|Toxic effect of unspecified noxious substance eaten as food NOS|Toxic effect of unspecified noxious substance eaten as food NOS +C2885280|T037|HT|T62.91|ICD10CM|Toxic effect of unspecified noxious substance eaten as food, accidental (unintentional)|Toxic effect of unspecified noxious substance eaten as food, accidental (unintentional) +C2885281|T037|AB|T62.91XA|ICD10CM|Toxic effect of unsp noxious sub eaten as food, acc, init|Toxic effect of unsp noxious sub eaten as food, acc, init +C2885282|T037|AB|T62.91XD|ICD10CM|Toxic effect of unsp noxious sub eaten as food, acc, subs|Toxic effect of unsp noxious sub eaten as food, acc, subs +C2885283|T037|AB|T62.91XS|ICD10CM|Toxic effect of unsp noxious sub eaten as food, acc, sqla|Toxic effect of unsp noxious sub eaten as food, acc, sqla +C2885283|T037|PT|T62.91XS|ICD10CM|Toxic effect of unspecified noxious substance eaten as food, accidental (unintentional), sequela|Toxic effect of unspecified noxious substance eaten as food, accidental (unintentional), sequela +C2885284|T037|AB|T62.92|ICD10CM|Toxic effect of unsp noxious sub eaten as food, slf-hrm|Toxic effect of unsp noxious sub eaten as food, slf-hrm +C2885284|T037|HT|T62.92|ICD10CM|Toxic effect of unspecified noxious substance eaten as food, intentional self-harm|Toxic effect of unspecified noxious substance eaten as food, intentional self-harm +C2885285|T037|AB|T62.92XA|ICD10CM|Toxic eff of unsp noxious sub eaten as food, slf-hrm, init|Toxic eff of unsp noxious sub eaten as food, slf-hrm, init +C2885286|T037|AB|T62.92XD|ICD10CM|Toxic eff of unsp noxious sub eaten as food, slf-hrm, subs|Toxic eff of unsp noxious sub eaten as food, slf-hrm, subs +C2885287|T037|AB|T62.92XS|ICD10CM|Toxic eff of unsp noxious sub eaten as food, slf-hrm, sqla|Toxic eff of unsp noxious sub eaten as food, slf-hrm, sqla +C2885287|T037|PT|T62.92XS|ICD10CM|Toxic effect of unspecified noxious substance eaten as food, intentional self-harm, sequela|Toxic effect of unspecified noxious substance eaten as food, intentional self-harm, sequela +C2885288|T037|AB|T62.93|ICD10CM|Toxic effect of unsp noxious sub eaten as food, assault|Toxic effect of unsp noxious sub eaten as food, assault +C2885288|T037|HT|T62.93|ICD10CM|Toxic effect of unspecified noxious substance eaten as food, assault|Toxic effect of unspecified noxious substance eaten as food, assault +C2885289|T037|AB|T62.93XA|ICD10CM|Toxic effect of unsp noxious sub eaten as food, asslt, init|Toxic effect of unsp noxious sub eaten as food, asslt, init +C2885289|T037|PT|T62.93XA|ICD10CM|Toxic effect of unspecified noxious substance eaten as food, assault, initial encounter|Toxic effect of unspecified noxious substance eaten as food, assault, initial encounter +C2885290|T037|AB|T62.93XD|ICD10CM|Toxic effect of unsp noxious sub eaten as food, asslt, subs|Toxic effect of unsp noxious sub eaten as food, asslt, subs +C2885290|T037|PT|T62.93XD|ICD10CM|Toxic effect of unspecified noxious substance eaten as food, assault, subsequent encounter|Toxic effect of unspecified noxious substance eaten as food, assault, subsequent encounter +C2885291|T037|AB|T62.93XS|ICD10CM|Toxic effect of unsp noxious sub eaten as food, asslt, sqla|Toxic effect of unsp noxious sub eaten as food, asslt, sqla +C2885291|T037|PT|T62.93XS|ICD10CM|Toxic effect of unspecified noxious substance eaten as food, assault, sequela|Toxic effect of unspecified noxious substance eaten as food, assault, sequela +C2885292|T037|AB|T62.94|ICD10CM|Toxic effect of unsp noxious substance eaten as food, undet|Toxic effect of unsp noxious substance eaten as food, undet +C2885292|T037|HT|T62.94|ICD10CM|Toxic effect of unspecified noxious substance eaten as food, undetermined|Toxic effect of unspecified noxious substance eaten as food, undetermined +C2885293|T037|AB|T62.94XA|ICD10CM|Toxic effect of unsp noxious sub eaten as food, undet, init|Toxic effect of unsp noxious sub eaten as food, undet, init +C2885293|T037|PT|T62.94XA|ICD10CM|Toxic effect of unspecified noxious substance eaten as food, undetermined, initial encounter|Toxic effect of unspecified noxious substance eaten as food, undetermined, initial encounter +C2885294|T037|AB|T62.94XD|ICD10CM|Toxic effect of unsp noxious sub eaten as food, undet, subs|Toxic effect of unsp noxious sub eaten as food, undet, subs +C2885294|T037|PT|T62.94XD|ICD10CM|Toxic effect of unspecified noxious substance eaten as food, undetermined, subsequent encounter|Toxic effect of unspecified noxious substance eaten as food, undetermined, subsequent encounter +C2885295|T037|AB|T62.94XS|ICD10CM|Toxic effect of unsp noxious sub eaten as food, undet, sqla|Toxic effect of unsp noxious sub eaten as food, undet, sqla +C2885295|T037|PT|T62.94XS|ICD10CM|Toxic effect of unspecified noxious substance eaten as food, undetermined, sequela|Toxic effect of unspecified noxious substance eaten as food, undetermined, sequela +C4290409|T037|ET|T63|ICD10CM|bite or touch of venomous animal|bite or touch of venomous animal +C4290410|T037|ET|T63|ICD10CM|pricked or stuck by thorn or leaf|pricked or stuck by thorn or leaf +C0496110|T037|HT|T63|ICD10|Toxic effect of contact with venomous animals|Toxic effect of contact with venomous animals +C2885298|T037|AB|T63|ICD10CM|Toxic effect of contact with venomous animals and plants|Toxic effect of contact with venomous animals and plants +C2885298|T037|HT|T63|ICD10CM|Toxic effect of contact with venomous animals and plants|Toxic effect of contact with venomous animals and plants +C0037379|T037|PS|T63.0|ICD10|Snake venom|Snake venom +C0037379|T037|PX|T63.0|ICD10|Toxic effect of snake venom|Toxic effect of snake venom +C0037379|T037|HT|T63.0|ICD10CM|Toxic effect of snake venom|Toxic effect of snake venom +C0037379|T037|AB|T63.0|ICD10CM|Toxic effect of snake venom|Toxic effect of snake venom +C2885299|T037|AB|T63.00|ICD10CM|Toxic effect of unspecified snake venom|Toxic effect of unspecified snake venom +C2885299|T037|HT|T63.00|ICD10CM|Toxic effect of unspecified snake venom|Toxic effect of unspecified snake venom +C2885300|T037|AB|T63.001|ICD10CM|Toxic effect of unsp snake venom, accidental (unintentional)|Toxic effect of unsp snake venom, accidental (unintentional) +C2885299|T037|ET|T63.001|ICD10CM|Toxic effect of unspecified snake venom NOS|Toxic effect of unspecified snake venom NOS +C2885300|T037|HT|T63.001|ICD10CM|Toxic effect of unspecified snake venom, accidental (unintentional)|Toxic effect of unspecified snake venom, accidental (unintentional) +C2885301|T037|AB|T63.001A|ICD10CM|Toxic effect of unsp snake venom, accidental, init|Toxic effect of unsp snake venom, accidental, init +C2885301|T037|PT|T63.001A|ICD10CM|Toxic effect of unspecified snake venom, accidental (unintentional), initial encounter|Toxic effect of unspecified snake venom, accidental (unintentional), initial encounter +C2885302|T037|AB|T63.001D|ICD10CM|Toxic effect of unsp snake venom, accidental, subs|Toxic effect of unsp snake venom, accidental, subs +C2885302|T037|PT|T63.001D|ICD10CM|Toxic effect of unspecified snake venom, accidental (unintentional), subsequent encounter|Toxic effect of unspecified snake venom, accidental (unintentional), subsequent encounter +C2885303|T037|AB|T63.001S|ICD10CM|Toxic effect of unsp snake venom, accidental, sequela|Toxic effect of unsp snake venom, accidental, sequela +C2885303|T037|PT|T63.001S|ICD10CM|Toxic effect of unspecified snake venom, accidental (unintentional), sequela|Toxic effect of unspecified snake venom, accidental (unintentional), sequela +C2885304|T037|AB|T63.002|ICD10CM|Toxic effect of unsp snake venom, intentional self-harm|Toxic effect of unsp snake venom, intentional self-harm +C2885304|T037|HT|T63.002|ICD10CM|Toxic effect of unspecified snake venom, intentional self-harm|Toxic effect of unspecified snake venom, intentional self-harm +C2885305|T037|AB|T63.002A|ICD10CM|Toxic effect of unsp snake venom, self-harm, init|Toxic effect of unsp snake venom, self-harm, init +C2885305|T037|PT|T63.002A|ICD10CM|Toxic effect of unspecified snake venom, intentional self-harm, initial encounter|Toxic effect of unspecified snake venom, intentional self-harm, initial encounter +C2885306|T037|AB|T63.002D|ICD10CM|Toxic effect of unsp snake venom, self-harm, subs|Toxic effect of unsp snake venom, self-harm, subs +C2885306|T037|PT|T63.002D|ICD10CM|Toxic effect of unspecified snake venom, intentional self-harm, subsequent encounter|Toxic effect of unspecified snake venom, intentional self-harm, subsequent encounter +C2885307|T037|AB|T63.002S|ICD10CM|Toxic effect of unsp snake venom, self-harm, sequela|Toxic effect of unsp snake venom, self-harm, sequela +C2885307|T037|PT|T63.002S|ICD10CM|Toxic effect of unspecified snake venom, intentional self-harm, sequela|Toxic effect of unspecified snake venom, intentional self-harm, sequela +C2885308|T037|AB|T63.003|ICD10CM|Toxic effect of unspecified snake venom, assault|Toxic effect of unspecified snake venom, assault +C2885308|T037|HT|T63.003|ICD10CM|Toxic effect of unspecified snake venom, assault|Toxic effect of unspecified snake venom, assault +C2885309|T037|AB|T63.003A|ICD10CM|Toxic effect of unsp snake venom, assault, init encntr|Toxic effect of unsp snake venom, assault, init encntr +C2885309|T037|PT|T63.003A|ICD10CM|Toxic effect of unspecified snake venom, assault, initial encounter|Toxic effect of unspecified snake venom, assault, initial encounter +C2885310|T037|AB|T63.003D|ICD10CM|Toxic effect of unsp snake venom, assault, subs encntr|Toxic effect of unsp snake venom, assault, subs encntr +C2885310|T037|PT|T63.003D|ICD10CM|Toxic effect of unspecified snake venom, assault, subsequent encounter|Toxic effect of unspecified snake venom, assault, subsequent encounter +C2885311|T037|AB|T63.003S|ICD10CM|Toxic effect of unspecified snake venom, assault, sequela|Toxic effect of unspecified snake venom, assault, sequela +C2885311|T037|PT|T63.003S|ICD10CM|Toxic effect of unspecified snake venom, assault, sequela|Toxic effect of unspecified snake venom, assault, sequela +C2885312|T037|AB|T63.004|ICD10CM|Toxic effect of unspecified snake venom, undetermined|Toxic effect of unspecified snake venom, undetermined +C2885312|T037|HT|T63.004|ICD10CM|Toxic effect of unspecified snake venom, undetermined|Toxic effect of unspecified snake venom, undetermined +C2885313|T037|AB|T63.004A|ICD10CM|Toxic effect of unsp snake venom, undetermined, init encntr|Toxic effect of unsp snake venom, undetermined, init encntr +C2885313|T037|PT|T63.004A|ICD10CM|Toxic effect of unspecified snake venom, undetermined, initial encounter|Toxic effect of unspecified snake venom, undetermined, initial encounter +C2885314|T037|AB|T63.004D|ICD10CM|Toxic effect of unsp snake venom, undetermined, subs encntr|Toxic effect of unsp snake venom, undetermined, subs encntr +C2885314|T037|PT|T63.004D|ICD10CM|Toxic effect of unspecified snake venom, undetermined, subsequent encounter|Toxic effect of unspecified snake venom, undetermined, subsequent encounter +C2885315|T037|AB|T63.004S|ICD10CM|Toxic effect of unsp snake venom, undetermined, sequela|Toxic effect of unsp snake venom, undetermined, sequela +C2885315|T037|PT|T63.004S|ICD10CM|Toxic effect of unspecified snake venom, undetermined, sequela|Toxic effect of unspecified snake venom, undetermined, sequela +C2885316|T037|AB|T63.01|ICD10CM|Toxic effect of rattlesnake venom|Toxic effect of rattlesnake venom +C2885316|T037|HT|T63.01|ICD10CM|Toxic effect of rattlesnake venom|Toxic effect of rattlesnake venom +C2885316|T037|ET|T63.011|ICD10CM|Toxic effect of rattlesnake venom NOS|Toxic effect of rattlesnake venom NOS +C2885317|T037|AB|T63.011|ICD10CM|Toxic effect of rattlesnake venom, accidental|Toxic effect of rattlesnake venom, accidental +C2885317|T037|HT|T63.011|ICD10CM|Toxic effect of rattlesnake venom, accidental (unintentional)|Toxic effect of rattlesnake venom, accidental (unintentional) +C2885318|T037|PT|T63.011A|ICD10CM|Toxic effect of rattlesnake venom, accidental (unintentional), initial encounter|Toxic effect of rattlesnake venom, accidental (unintentional), initial encounter +C2885318|T037|AB|T63.011A|ICD10CM|Toxic effect of rattlesnake venom, accidental, init|Toxic effect of rattlesnake venom, accidental, init +C2885319|T037|PT|T63.011D|ICD10CM|Toxic effect of rattlesnake venom, accidental (unintentional), subsequent encounter|Toxic effect of rattlesnake venom, accidental (unintentional), subsequent encounter +C2885319|T037|AB|T63.011D|ICD10CM|Toxic effect of rattlesnake venom, accidental, subs|Toxic effect of rattlesnake venom, accidental, subs +C2885320|T037|PT|T63.011S|ICD10CM|Toxic effect of rattlesnake venom, accidental (unintentional), sequela|Toxic effect of rattlesnake venom, accidental (unintentional), sequela +C2885320|T037|AB|T63.011S|ICD10CM|Toxic effect of rattlesnake venom, accidental, sequela|Toxic effect of rattlesnake venom, accidental, sequela +C2885321|T037|AB|T63.012|ICD10CM|Toxic effect of rattlesnake venom, intentional self-harm|Toxic effect of rattlesnake venom, intentional self-harm +C2885321|T037|HT|T63.012|ICD10CM|Toxic effect of rattlesnake venom, intentional self-harm|Toxic effect of rattlesnake venom, intentional self-harm +C2885322|T037|PT|T63.012A|ICD10CM|Toxic effect of rattlesnake venom, intentional self-harm, initial encounter|Toxic effect of rattlesnake venom, intentional self-harm, initial encounter +C2885322|T037|AB|T63.012A|ICD10CM|Toxic effect of rattlesnake venom, self-harm, init|Toxic effect of rattlesnake venom, self-harm, init +C2885323|T037|PT|T63.012D|ICD10CM|Toxic effect of rattlesnake venom, intentional self-harm, subsequent encounter|Toxic effect of rattlesnake venom, intentional self-harm, subsequent encounter +C2885323|T037|AB|T63.012D|ICD10CM|Toxic effect of rattlesnake venom, self-harm, subs|Toxic effect of rattlesnake venom, self-harm, subs +C2885324|T037|PT|T63.012S|ICD10CM|Toxic effect of rattlesnake venom, intentional self-harm, sequela|Toxic effect of rattlesnake venom, intentional self-harm, sequela +C2885324|T037|AB|T63.012S|ICD10CM|Toxic effect of rattlesnake venom, self-harm, sequela|Toxic effect of rattlesnake venom, self-harm, sequela +C2885325|T037|AB|T63.013|ICD10CM|Toxic effect of rattlesnake venom, assault|Toxic effect of rattlesnake venom, assault +C2885325|T037|HT|T63.013|ICD10CM|Toxic effect of rattlesnake venom, assault|Toxic effect of rattlesnake venom, assault +C2885326|T037|AB|T63.013A|ICD10CM|Toxic effect of rattlesnake venom, assault, init encntr|Toxic effect of rattlesnake venom, assault, init encntr +C2885326|T037|PT|T63.013A|ICD10CM|Toxic effect of rattlesnake venom, assault, initial encounter|Toxic effect of rattlesnake venom, assault, initial encounter +C2885327|T037|AB|T63.013D|ICD10CM|Toxic effect of rattlesnake venom, assault, subs encntr|Toxic effect of rattlesnake venom, assault, subs encntr +C2885327|T037|PT|T63.013D|ICD10CM|Toxic effect of rattlesnake venom, assault, subsequent encounter|Toxic effect of rattlesnake venom, assault, subsequent encounter +C2885328|T037|AB|T63.013S|ICD10CM|Toxic effect of rattlesnake venom, assault, sequela|Toxic effect of rattlesnake venom, assault, sequela +C2885328|T037|PT|T63.013S|ICD10CM|Toxic effect of rattlesnake venom, assault, sequela|Toxic effect of rattlesnake venom, assault, sequela +C2885329|T037|AB|T63.014|ICD10CM|Toxic effect of rattlesnake venom, undetermined|Toxic effect of rattlesnake venom, undetermined +C2885329|T037|HT|T63.014|ICD10CM|Toxic effect of rattlesnake venom, undetermined|Toxic effect of rattlesnake venom, undetermined +C2885330|T037|AB|T63.014A|ICD10CM|Toxic effect of rattlesnake venom, undetermined, init encntr|Toxic effect of rattlesnake venom, undetermined, init encntr +C2885330|T037|PT|T63.014A|ICD10CM|Toxic effect of rattlesnake venom, undetermined, initial encounter|Toxic effect of rattlesnake venom, undetermined, initial encounter +C2885331|T037|AB|T63.014D|ICD10CM|Toxic effect of rattlesnake venom, undetermined, subs encntr|Toxic effect of rattlesnake venom, undetermined, subs encntr +C2885331|T037|PT|T63.014D|ICD10CM|Toxic effect of rattlesnake venom, undetermined, subsequent encounter|Toxic effect of rattlesnake venom, undetermined, subsequent encounter +C2885332|T037|AB|T63.014S|ICD10CM|Toxic effect of rattlesnake venom, undetermined, sequela|Toxic effect of rattlesnake venom, undetermined, sequela +C2885332|T037|PT|T63.014S|ICD10CM|Toxic effect of rattlesnake venom, undetermined, sequela|Toxic effect of rattlesnake venom, undetermined, sequela +C2885333|T037|AB|T63.02|ICD10CM|Toxic effect of coral snake venom|Toxic effect of coral snake venom +C2885333|T037|HT|T63.02|ICD10CM|Toxic effect of coral snake venom|Toxic effect of coral snake venom +C2885333|T037|ET|T63.021|ICD10CM|Toxic effect of coral snake venom NOS|Toxic effect of coral snake venom NOS +C2885334|T037|AB|T63.021|ICD10CM|Toxic effect of coral snake venom, accidental|Toxic effect of coral snake venom, accidental +C2885334|T037|HT|T63.021|ICD10CM|Toxic effect of coral snake venom, accidental (unintentional)|Toxic effect of coral snake venom, accidental (unintentional) +C2885335|T037|PT|T63.021A|ICD10CM|Toxic effect of coral snake venom, accidental (unintentional), initial encounter|Toxic effect of coral snake venom, accidental (unintentional), initial encounter +C2885335|T037|AB|T63.021A|ICD10CM|Toxic effect of coral snake venom, accidental, init|Toxic effect of coral snake venom, accidental, init +C2885336|T037|PT|T63.021D|ICD10CM|Toxic effect of coral snake venom, accidental (unintentional), subsequent encounter|Toxic effect of coral snake venom, accidental (unintentional), subsequent encounter +C2885336|T037|AB|T63.021D|ICD10CM|Toxic effect of coral snake venom, accidental, subs|Toxic effect of coral snake venom, accidental, subs +C2885337|T037|PT|T63.021S|ICD10CM|Toxic effect of coral snake venom, accidental (unintentional), sequela|Toxic effect of coral snake venom, accidental (unintentional), sequela +C2885337|T037|AB|T63.021S|ICD10CM|Toxic effect of coral snake venom, accidental, sequela|Toxic effect of coral snake venom, accidental, sequela +C2885338|T037|AB|T63.022|ICD10CM|Toxic effect of coral snake venom, intentional self-harm|Toxic effect of coral snake venom, intentional self-harm +C2885338|T037|HT|T63.022|ICD10CM|Toxic effect of coral snake venom, intentional self-harm|Toxic effect of coral snake venom, intentional self-harm +C2885339|T037|PT|T63.022A|ICD10CM|Toxic effect of coral snake venom, intentional self-harm, initial encounter|Toxic effect of coral snake venom, intentional self-harm, initial encounter +C2885339|T037|AB|T63.022A|ICD10CM|Toxic effect of coral snake venom, self-harm, init|Toxic effect of coral snake venom, self-harm, init +C2885340|T037|PT|T63.022D|ICD10CM|Toxic effect of coral snake venom, intentional self-harm, subsequent encounter|Toxic effect of coral snake venom, intentional self-harm, subsequent encounter +C2885340|T037|AB|T63.022D|ICD10CM|Toxic effect of coral snake venom, self-harm, subs|Toxic effect of coral snake venom, self-harm, subs +C2885341|T037|PT|T63.022S|ICD10CM|Toxic effect of coral snake venom, intentional self-harm, sequela|Toxic effect of coral snake venom, intentional self-harm, sequela +C2885341|T037|AB|T63.022S|ICD10CM|Toxic effect of coral snake venom, self-harm, sequela|Toxic effect of coral snake venom, self-harm, sequela +C2885342|T037|AB|T63.023|ICD10CM|Toxic effect of coral snake venom, assault|Toxic effect of coral snake venom, assault +C2885342|T037|HT|T63.023|ICD10CM|Toxic effect of coral snake venom, assault|Toxic effect of coral snake venom, assault +C2885343|T037|AB|T63.023A|ICD10CM|Toxic effect of coral snake venom, assault, init encntr|Toxic effect of coral snake venom, assault, init encntr +C2885343|T037|PT|T63.023A|ICD10CM|Toxic effect of coral snake venom, assault, initial encounter|Toxic effect of coral snake venom, assault, initial encounter +C2885344|T037|AB|T63.023D|ICD10CM|Toxic effect of coral snake venom, assault, subs encntr|Toxic effect of coral snake venom, assault, subs encntr +C2885344|T037|PT|T63.023D|ICD10CM|Toxic effect of coral snake venom, assault, subsequent encounter|Toxic effect of coral snake venom, assault, subsequent encounter +C2885345|T037|AB|T63.023S|ICD10CM|Toxic effect of coral snake venom, assault, sequela|Toxic effect of coral snake venom, assault, sequela +C2885345|T037|PT|T63.023S|ICD10CM|Toxic effect of coral snake venom, assault, sequela|Toxic effect of coral snake venom, assault, sequela +C2885346|T037|AB|T63.024|ICD10CM|Toxic effect of coral snake venom, undetermined|Toxic effect of coral snake venom, undetermined +C2885346|T037|HT|T63.024|ICD10CM|Toxic effect of coral snake venom, undetermined|Toxic effect of coral snake venom, undetermined +C2885347|T037|AB|T63.024A|ICD10CM|Toxic effect of coral snake venom, undetermined, init encntr|Toxic effect of coral snake venom, undetermined, init encntr +C2885347|T037|PT|T63.024A|ICD10CM|Toxic effect of coral snake venom, undetermined, initial encounter|Toxic effect of coral snake venom, undetermined, initial encounter +C2885348|T037|AB|T63.024D|ICD10CM|Toxic effect of coral snake venom, undetermined, subs encntr|Toxic effect of coral snake venom, undetermined, subs encntr +C2885348|T037|PT|T63.024D|ICD10CM|Toxic effect of coral snake venom, undetermined, subsequent encounter|Toxic effect of coral snake venom, undetermined, subsequent encounter +C2885349|T037|AB|T63.024S|ICD10CM|Toxic effect of coral snake venom, undetermined, sequela|Toxic effect of coral snake venom, undetermined, sequela +C2885349|T037|PT|T63.024S|ICD10CM|Toxic effect of coral snake venom, undetermined, sequela|Toxic effect of coral snake venom, undetermined, sequela +C2885350|T037|AB|T63.03|ICD10CM|Toxic effect of taipan venom|Toxic effect of taipan venom +C2885350|T037|HT|T63.03|ICD10CM|Toxic effect of taipan venom|Toxic effect of taipan venom +C2885350|T037|ET|T63.031|ICD10CM|Toxic effect of taipan venom NOS|Toxic effect of taipan venom NOS +C2885351|T037|AB|T63.031|ICD10CM|Toxic effect of taipan venom, accidental (unintentional)|Toxic effect of taipan venom, accidental (unintentional) +C2885351|T037|HT|T63.031|ICD10CM|Toxic effect of taipan venom, accidental (unintentional)|Toxic effect of taipan venom, accidental (unintentional) +C2885352|T037|PT|T63.031A|ICD10CM|Toxic effect of taipan venom, accidental (unintentional), initial encounter|Toxic effect of taipan venom, accidental (unintentional), initial encounter +C2885352|T037|AB|T63.031A|ICD10CM|Toxic effect of taipan venom, accidental, init|Toxic effect of taipan venom, accidental, init +C2885353|T037|PT|T63.031D|ICD10CM|Toxic effect of taipan venom, accidental (unintentional), subsequent encounter|Toxic effect of taipan venom, accidental (unintentional), subsequent encounter +C2885353|T037|AB|T63.031D|ICD10CM|Toxic effect of taipan venom, accidental, subs|Toxic effect of taipan venom, accidental, subs +C2885354|T037|PT|T63.031S|ICD10CM|Toxic effect of taipan venom, accidental (unintentional), sequela|Toxic effect of taipan venom, accidental (unintentional), sequela +C2885354|T037|AB|T63.031S|ICD10CM|Toxic effect of taipan venom, accidental, sequela|Toxic effect of taipan venom, accidental, sequela +C2885355|T037|AB|T63.032|ICD10CM|Toxic effect of taipan venom, intentional self-harm|Toxic effect of taipan venom, intentional self-harm +C2885355|T037|HT|T63.032|ICD10CM|Toxic effect of taipan venom, intentional self-harm|Toxic effect of taipan venom, intentional self-harm +C2885356|T037|AB|T63.032A|ICD10CM|Toxic effect of taipan venom, intentional self-harm, init|Toxic effect of taipan venom, intentional self-harm, init +C2885356|T037|PT|T63.032A|ICD10CM|Toxic effect of taipan venom, intentional self-harm, initial encounter|Toxic effect of taipan venom, intentional self-harm, initial encounter +C2885357|T037|AB|T63.032D|ICD10CM|Toxic effect of taipan venom, intentional self-harm, subs|Toxic effect of taipan venom, intentional self-harm, subs +C2885357|T037|PT|T63.032D|ICD10CM|Toxic effect of taipan venom, intentional self-harm, subsequent encounter|Toxic effect of taipan venom, intentional self-harm, subsequent encounter +C2885358|T037|AB|T63.032S|ICD10CM|Toxic effect of taipan venom, intentional self-harm, sequela|Toxic effect of taipan venom, intentional self-harm, sequela +C2885358|T037|PT|T63.032S|ICD10CM|Toxic effect of taipan venom, intentional self-harm, sequela|Toxic effect of taipan venom, intentional self-harm, sequela +C2885359|T037|AB|T63.033|ICD10CM|Toxic effect of taipan venom, assault|Toxic effect of taipan venom, assault +C2885359|T037|HT|T63.033|ICD10CM|Toxic effect of taipan venom, assault|Toxic effect of taipan venom, assault +C2885360|T037|AB|T63.033A|ICD10CM|Toxic effect of taipan venom, assault, initial encounter|Toxic effect of taipan venom, assault, initial encounter +C2885360|T037|PT|T63.033A|ICD10CM|Toxic effect of taipan venom, assault, initial encounter|Toxic effect of taipan venom, assault, initial encounter +C2885361|T037|AB|T63.033D|ICD10CM|Toxic effect of taipan venom, assault, subsequent encounter|Toxic effect of taipan venom, assault, subsequent encounter +C2885361|T037|PT|T63.033D|ICD10CM|Toxic effect of taipan venom, assault, subsequent encounter|Toxic effect of taipan venom, assault, subsequent encounter +C2885362|T037|AB|T63.033S|ICD10CM|Toxic effect of taipan venom, assault, sequela|Toxic effect of taipan venom, assault, sequela +C2885362|T037|PT|T63.033S|ICD10CM|Toxic effect of taipan venom, assault, sequela|Toxic effect of taipan venom, assault, sequela +C2885363|T037|AB|T63.034|ICD10CM|Toxic effect of taipan venom, undetermined|Toxic effect of taipan venom, undetermined +C2885363|T037|HT|T63.034|ICD10CM|Toxic effect of taipan venom, undetermined|Toxic effect of taipan venom, undetermined +C2885364|T037|AB|T63.034A|ICD10CM|Toxic effect of taipan venom, undetermined, init encntr|Toxic effect of taipan venom, undetermined, init encntr +C2885364|T037|PT|T63.034A|ICD10CM|Toxic effect of taipan venom, undetermined, initial encounter|Toxic effect of taipan venom, undetermined, initial encounter +C2885365|T037|AB|T63.034D|ICD10CM|Toxic effect of taipan venom, undetermined, subs encntr|Toxic effect of taipan venom, undetermined, subs encntr +C2885365|T037|PT|T63.034D|ICD10CM|Toxic effect of taipan venom, undetermined, subsequent encounter|Toxic effect of taipan venom, undetermined, subsequent encounter +C2885366|T037|AB|T63.034S|ICD10CM|Toxic effect of taipan venom, undetermined, sequela|Toxic effect of taipan venom, undetermined, sequela +C2885366|T037|PT|T63.034S|ICD10CM|Toxic effect of taipan venom, undetermined, sequela|Toxic effect of taipan venom, undetermined, sequela +C2885367|T037|AB|T63.04|ICD10CM|Toxic effect of cobra venom|Toxic effect of cobra venom +C2885367|T037|HT|T63.04|ICD10CM|Toxic effect of cobra venom|Toxic effect of cobra venom +C2885367|T037|ET|T63.041|ICD10CM|Toxic effect of cobra venom NOS|Toxic effect of cobra venom NOS +C2885368|T037|AB|T63.041|ICD10CM|Toxic effect of cobra venom, accidental (unintentional)|Toxic effect of cobra venom, accidental (unintentional) +C2885368|T037|HT|T63.041|ICD10CM|Toxic effect of cobra venom, accidental (unintentional)|Toxic effect of cobra venom, accidental (unintentional) +C2885369|T037|PT|T63.041A|ICD10CM|Toxic effect of cobra venom, accidental (unintentional), initial encounter|Toxic effect of cobra venom, accidental (unintentional), initial encounter +C2885369|T037|AB|T63.041A|ICD10CM|Toxic effect of cobra venom, accidental, init|Toxic effect of cobra venom, accidental, init +C2885370|T037|PT|T63.041D|ICD10CM|Toxic effect of cobra venom, accidental (unintentional), subsequent encounter|Toxic effect of cobra venom, accidental (unintentional), subsequent encounter +C2885370|T037|AB|T63.041D|ICD10CM|Toxic effect of cobra venom, accidental, subs|Toxic effect of cobra venom, accidental, subs +C2885371|T037|PT|T63.041S|ICD10CM|Toxic effect of cobra venom, accidental (unintentional), sequela|Toxic effect of cobra venom, accidental (unintentional), sequela +C2885371|T037|AB|T63.041S|ICD10CM|Toxic effect of cobra venom, accidental, sequela|Toxic effect of cobra venom, accidental, sequela +C2885372|T037|AB|T63.042|ICD10CM|Toxic effect of cobra venom, intentional self-harm|Toxic effect of cobra venom, intentional self-harm +C2885372|T037|HT|T63.042|ICD10CM|Toxic effect of cobra venom, intentional self-harm|Toxic effect of cobra venom, intentional self-harm +C2885373|T037|AB|T63.042A|ICD10CM|Toxic effect of cobra venom, intentional self-harm, init|Toxic effect of cobra venom, intentional self-harm, init +C2885373|T037|PT|T63.042A|ICD10CM|Toxic effect of cobra venom, intentional self-harm, initial encounter|Toxic effect of cobra venom, intentional self-harm, initial encounter +C2885374|T037|AB|T63.042D|ICD10CM|Toxic effect of cobra venom, intentional self-harm, subs|Toxic effect of cobra venom, intentional self-harm, subs +C2885374|T037|PT|T63.042D|ICD10CM|Toxic effect of cobra venom, intentional self-harm, subsequent encounter|Toxic effect of cobra venom, intentional self-harm, subsequent encounter +C2885375|T037|AB|T63.042S|ICD10CM|Toxic effect of cobra venom, intentional self-harm, sequela|Toxic effect of cobra venom, intentional self-harm, sequela +C2885375|T037|PT|T63.042S|ICD10CM|Toxic effect of cobra venom, intentional self-harm, sequela|Toxic effect of cobra venom, intentional self-harm, sequela +C2885376|T037|AB|T63.043|ICD10CM|Toxic effect of cobra venom, assault|Toxic effect of cobra venom, assault +C2885376|T037|HT|T63.043|ICD10CM|Toxic effect of cobra venom, assault|Toxic effect of cobra venom, assault +C2885377|T037|AB|T63.043A|ICD10CM|Toxic effect of cobra venom, assault, initial encounter|Toxic effect of cobra venom, assault, initial encounter +C2885377|T037|PT|T63.043A|ICD10CM|Toxic effect of cobra venom, assault, initial encounter|Toxic effect of cobra venom, assault, initial encounter +C2885378|T037|AB|T63.043D|ICD10CM|Toxic effect of cobra venom, assault, subsequent encounter|Toxic effect of cobra venom, assault, subsequent encounter +C2885378|T037|PT|T63.043D|ICD10CM|Toxic effect of cobra venom, assault, subsequent encounter|Toxic effect of cobra venom, assault, subsequent encounter +C2885379|T037|AB|T63.043S|ICD10CM|Toxic effect of cobra venom, assault, sequela|Toxic effect of cobra venom, assault, sequela +C2885379|T037|PT|T63.043S|ICD10CM|Toxic effect of cobra venom, assault, sequela|Toxic effect of cobra venom, assault, sequela +C2885380|T037|AB|T63.044|ICD10CM|Toxic effect of cobra venom, undetermined|Toxic effect of cobra venom, undetermined +C2885380|T037|HT|T63.044|ICD10CM|Toxic effect of cobra venom, undetermined|Toxic effect of cobra venom, undetermined +C2885381|T037|AB|T63.044A|ICD10CM|Toxic effect of cobra venom, undetermined, initial encounter|Toxic effect of cobra venom, undetermined, initial encounter +C2885381|T037|PT|T63.044A|ICD10CM|Toxic effect of cobra venom, undetermined, initial encounter|Toxic effect of cobra venom, undetermined, initial encounter +C2885382|T037|AB|T63.044D|ICD10CM|Toxic effect of cobra venom, undetermined, subs encntr|Toxic effect of cobra venom, undetermined, subs encntr +C2885382|T037|PT|T63.044D|ICD10CM|Toxic effect of cobra venom, undetermined, subsequent encounter|Toxic effect of cobra venom, undetermined, subsequent encounter +C2885383|T037|AB|T63.044S|ICD10CM|Toxic effect of cobra venom, undetermined, sequela|Toxic effect of cobra venom, undetermined, sequela +C2885383|T037|PT|T63.044S|ICD10CM|Toxic effect of cobra venom, undetermined, sequela|Toxic effect of cobra venom, undetermined, sequela +C2885384|T037|AB|T63.06|ICD10CM|Toxic effect of venom of oth North and South American snake|Toxic effect of venom of oth North and South American snake +C2885384|T037|HT|T63.06|ICD10CM|Toxic effect of venom of other North and South American snake|Toxic effect of venom of other North and South American snake +C2885385|T037|AB|T63.061|ICD10CM|Toxic effect of venom of N & S American snake, accidental|Toxic effect of venom of N & S American snake, accidental +C2885384|T037|ET|T63.061|ICD10CM|Toxic effect of venom of other North and South American snake NOS|Toxic effect of venom of other North and South American snake NOS +C2885385|T037|HT|T63.061|ICD10CM|Toxic effect of venom of other North and South American snake, accidental (unintentional)|Toxic effect of venom of other North and South American snake, accidental (unintentional) +C2885386|T037|AB|T63.061A|ICD10CM|Toxic effect of venom of N & S American snake, acc, init|Toxic effect of venom of N & S American snake, acc, init +C2885387|T037|AB|T63.061D|ICD10CM|Toxic effect of venom of N & S American snake, acc, subs|Toxic effect of venom of N & S American snake, acc, subs +C2885388|T037|AB|T63.061S|ICD10CM|Toxic effect of venom of N & S American snake, acc, sequela|Toxic effect of venom of N & S American snake, acc, sequela +C2885388|T037|PT|T63.061S|ICD10CM|Toxic effect of venom of other North and South American snake, accidental (unintentional), sequela|Toxic effect of venom of other North and South American snake, accidental (unintentional), sequela +C2885389|T037|AB|T63.062|ICD10CM|Toxic effect of venom of N & S American snake, self-harm|Toxic effect of venom of N & S American snake, self-harm +C2885389|T037|HT|T63.062|ICD10CM|Toxic effect of venom of other North and South American snake, intentional self-harm|Toxic effect of venom of other North and South American snake, intentional self-harm +C2885390|T037|AB|T63.062A|ICD10CM|Toxic effect of venom of N & S American snake, slf-hrm, init|Toxic effect of venom of N & S American snake, slf-hrm, init +C2885391|T037|AB|T63.062D|ICD10CM|Toxic effect of venom of N & S American snake, slf-hrm, subs|Toxic effect of venom of N & S American snake, slf-hrm, subs +C2885392|T037|AB|T63.062S|ICD10CM|Toxic effect of venom of N & S American snake, slf-hrm, sqla|Toxic effect of venom of N & S American snake, slf-hrm, sqla +C2885392|T037|PT|T63.062S|ICD10CM|Toxic effect of venom of other North and South American snake, intentional self-harm, sequela|Toxic effect of venom of other North and South American snake, intentional self-harm, sequela +C2885393|T037|AB|T63.063|ICD10CM|Toxic effect of venom of N & S American snake, assault|Toxic effect of venom of N & S American snake, assault +C2885393|T037|HT|T63.063|ICD10CM|Toxic effect of venom of other North and South American snake, assault|Toxic effect of venom of other North and South American snake, assault +C2885394|T037|AB|T63.063A|ICD10CM|Toxic effect of venom of N & S American snake, assault, init|Toxic effect of venom of N & S American snake, assault, init +C2885394|T037|PT|T63.063A|ICD10CM|Toxic effect of venom of other North and South American snake, assault, initial encounter|Toxic effect of venom of other North and South American snake, assault, initial encounter +C2885395|T037|AB|T63.063D|ICD10CM|Toxic effect of venom of N & S American snake, assault, subs|Toxic effect of venom of N & S American snake, assault, subs +C2885395|T037|PT|T63.063D|ICD10CM|Toxic effect of venom of other North and South American snake, assault, subsequent encounter|Toxic effect of venom of other North and South American snake, assault, subsequent encounter +C2885396|T037|AB|T63.063S|ICD10CM|Toxic effect of venom of N & S American snake, asslt, sqla|Toxic effect of venom of N & S American snake, asslt, sqla +C2885396|T037|PT|T63.063S|ICD10CM|Toxic effect of venom of other North and South American snake, assault, sequela|Toxic effect of venom of other North and South American snake, assault, sequela +C2885397|T037|AB|T63.064|ICD10CM|Toxic effect of venom of N & S American snake, undetermined|Toxic effect of venom of N & S American snake, undetermined +C2885397|T037|HT|T63.064|ICD10CM|Toxic effect of venom of other North and South American snake, undetermined|Toxic effect of venom of other North and South American snake, undetermined +C2885398|T037|AB|T63.064A|ICD10CM|Toxic effect of venom of N & S American snake, undet, init|Toxic effect of venom of N & S American snake, undet, init +C2885398|T037|PT|T63.064A|ICD10CM|Toxic effect of venom of other North and South American snake, undetermined, initial encounter|Toxic effect of venom of other North and South American snake, undetermined, initial encounter +C2885399|T037|AB|T63.064D|ICD10CM|Toxic effect of venom of N & S American snake, undet, subs|Toxic effect of venom of N & S American snake, undet, subs +C2885399|T037|PT|T63.064D|ICD10CM|Toxic effect of venom of other North and South American snake, undetermined, subsequent encounter|Toxic effect of venom of other North and South American snake, undetermined, subsequent encounter +C2885400|T037|AB|T63.064S|ICD10CM|Toxic effect of venom of N & S American snake, undet, sqla|Toxic effect of venom of N & S American snake, undet, sqla +C2885400|T037|PT|T63.064S|ICD10CM|Toxic effect of venom of other North and South American snake, undetermined, sequela|Toxic effect of venom of other North and South American snake, undetermined, sequela +C2885401|T037|AB|T63.07|ICD10CM|Toxic effect of venom of other Australian snake|Toxic effect of venom of other Australian snake +C2885401|T037|HT|T63.07|ICD10CM|Toxic effect of venom of other Australian snake|Toxic effect of venom of other Australian snake +C2885402|T037|AB|T63.071|ICD10CM|Toxic effect of venom of Australian snake, accidental|Toxic effect of venom of Australian snake, accidental +C2885401|T037|ET|T63.071|ICD10CM|Toxic effect of venom of other Australian snake NOS|Toxic effect of venom of other Australian snake NOS +C2885402|T037|HT|T63.071|ICD10CM|Toxic effect of venom of other Australian snake, accidental (unintentional)|Toxic effect of venom of other Australian snake, accidental (unintentional) +C2885403|T037|AB|T63.071A|ICD10CM|Toxic effect of venom of Australian snake, accidental, init|Toxic effect of venom of Australian snake, accidental, init +C2885403|T037|PT|T63.071A|ICD10CM|Toxic effect of venom of other Australian snake, accidental (unintentional), initial encounter|Toxic effect of venom of other Australian snake, accidental (unintentional), initial encounter +C2885404|T037|AB|T63.071D|ICD10CM|Toxic effect of venom of Australian snake, accidental, subs|Toxic effect of venom of Australian snake, accidental, subs +C2885404|T037|PT|T63.071D|ICD10CM|Toxic effect of venom of other Australian snake, accidental (unintentional), subsequent encounter|Toxic effect of venom of other Australian snake, accidental (unintentional), subsequent encounter +C2885405|T037|AB|T63.071S|ICD10CM|Toxic effect of venom of Australian snake, acc, sequela|Toxic effect of venom of Australian snake, acc, sequela +C2885405|T037|PT|T63.071S|ICD10CM|Toxic effect of venom of other Australian snake, accidental (unintentional), sequela|Toxic effect of venom of other Australian snake, accidental (unintentional), sequela +C2885406|T037|AB|T63.072|ICD10CM|Toxic effect of venom of Australian snake, self-harm|Toxic effect of venom of Australian snake, self-harm +C2885406|T037|HT|T63.072|ICD10CM|Toxic effect of venom of other Australian snake, intentional self-harm|Toxic effect of venom of other Australian snake, intentional self-harm +C2885407|T037|AB|T63.072A|ICD10CM|Toxic effect of venom of Australian snake, self-harm, init|Toxic effect of venom of Australian snake, self-harm, init +C2885407|T037|PT|T63.072A|ICD10CM|Toxic effect of venom of other Australian snake, intentional self-harm, initial encounter|Toxic effect of venom of other Australian snake, intentional self-harm, initial encounter +C2885408|T037|AB|T63.072D|ICD10CM|Toxic effect of venom of Australian snake, self-harm, subs|Toxic effect of venom of Australian snake, self-harm, subs +C2885408|T037|PT|T63.072D|ICD10CM|Toxic effect of venom of other Australian snake, intentional self-harm, subsequent encounter|Toxic effect of venom of other Australian snake, intentional self-harm, subsequent encounter +C2885409|T037|AB|T63.072S|ICD10CM|Toxic effect of venom of Australian snake, slf-hrm, sequela|Toxic effect of venom of Australian snake, slf-hrm, sequela +C2885409|T037|PT|T63.072S|ICD10CM|Toxic effect of venom of other Australian snake, intentional self-harm, sequela|Toxic effect of venom of other Australian snake, intentional self-harm, sequela +C2885410|T037|AB|T63.073|ICD10CM|Toxic effect of venom of other Australian snake, assault|Toxic effect of venom of other Australian snake, assault +C2885410|T037|HT|T63.073|ICD10CM|Toxic effect of venom of other Australian snake, assault|Toxic effect of venom of other Australian snake, assault +C2885411|T037|AB|T63.073A|ICD10CM|Toxic effect of venom of oth Australian snake, assault, init|Toxic effect of venom of oth Australian snake, assault, init +C2885411|T037|PT|T63.073A|ICD10CM|Toxic effect of venom of other Australian snake, assault, initial encounter|Toxic effect of venom of other Australian snake, assault, initial encounter +C2885412|T037|AB|T63.073D|ICD10CM|Toxic effect of venom of oth Australian snake, assault, subs|Toxic effect of venom of oth Australian snake, assault, subs +C2885412|T037|PT|T63.073D|ICD10CM|Toxic effect of venom of other Australian snake, assault, subsequent encounter|Toxic effect of venom of other Australian snake, assault, subsequent encounter +C2885413|T037|AB|T63.073S|ICD10CM|Toxic effect of venom of Australian snake, assault, sequela|Toxic effect of venom of Australian snake, assault, sequela +C2885413|T037|PT|T63.073S|ICD10CM|Toxic effect of venom of other Australian snake, assault, sequela|Toxic effect of venom of other Australian snake, assault, sequela +C2885414|T037|AB|T63.074|ICD10CM|Toxic effect of venom of oth Australian snake, undetermined|Toxic effect of venom of oth Australian snake, undetermined +C2885414|T037|HT|T63.074|ICD10CM|Toxic effect of venom of other Australian snake, undetermined|Toxic effect of venom of other Australian snake, undetermined +C2885415|T037|AB|T63.074A|ICD10CM|Toxic effect of venom of Australian snake, undet, init|Toxic effect of venom of Australian snake, undet, init +C2885415|T037|PT|T63.074A|ICD10CM|Toxic effect of venom of other Australian snake, undetermined, initial encounter|Toxic effect of venom of other Australian snake, undetermined, initial encounter +C2885416|T037|AB|T63.074D|ICD10CM|Toxic effect of venom of Australian snake, undet, subs|Toxic effect of venom of Australian snake, undet, subs +C2885416|T037|PT|T63.074D|ICD10CM|Toxic effect of venom of other Australian snake, undetermined, subsequent encounter|Toxic effect of venom of other Australian snake, undetermined, subsequent encounter +C2885417|T037|AB|T63.074S|ICD10CM|Toxic effect of venom of Australian snake, undet, sequela|Toxic effect of venom of Australian snake, undet, sequela +C2885417|T037|PT|T63.074S|ICD10CM|Toxic effect of venom of other Australian snake, undetermined, sequela|Toxic effect of venom of other Australian snake, undetermined, sequela +C2885418|T037|AB|T63.08|ICD10CM|Toxic effect of venom of other African and Asian snake|Toxic effect of venom of other African and Asian snake +C2885418|T037|HT|T63.08|ICD10CM|Toxic effect of venom of other African and Asian snake|Toxic effect of venom of other African and Asian snake +C2885419|T037|AB|T63.081|ICD10CM|Toxic effect of venom of African and Asian snake, acc|Toxic effect of venom of African and Asian snake, acc +C2885418|T037|ET|T63.081|ICD10CM|Toxic effect of venom of other African and Asian snake NOS|Toxic effect of venom of other African and Asian snake NOS +C2885419|T037|HT|T63.081|ICD10CM|Toxic effect of venom of other African and Asian snake, accidental (unintentional)|Toxic effect of venom of other African and Asian snake, accidental (unintentional) +C2885420|T037|AB|T63.081A|ICD10CM|Toxic effect of venom of African and Asian snake, acc, init|Toxic effect of venom of African and Asian snake, acc, init +C2885421|T037|AB|T63.081D|ICD10CM|Toxic effect of venom of African and Asian snake, acc, subs|Toxic effect of venom of African and Asian snake, acc, subs +C2885422|T037|AB|T63.081S|ICD10CM|Toxic effect of venom of African and Asian snake, acc, sqla|Toxic effect of venom of African and Asian snake, acc, sqla +C2885422|T037|PT|T63.081S|ICD10CM|Toxic effect of venom of other African and Asian snake, accidental (unintentional), sequela|Toxic effect of venom of other African and Asian snake, accidental (unintentional), sequela +C2885423|T037|AB|T63.082|ICD10CM|Toxic effect of venom of African and Asian snake, self-harm|Toxic effect of venom of African and Asian snake, self-harm +C2885423|T037|HT|T63.082|ICD10CM|Toxic effect of venom of other African and Asian snake, intentional self-harm|Toxic effect of venom of other African and Asian snake, intentional self-harm +C2885424|T037|AB|T63.082A|ICD10CM|Toxic eff of venom of African and Asian snake, slf-hrm, init|Toxic eff of venom of African and Asian snake, slf-hrm, init +C2885424|T037|PT|T63.082A|ICD10CM|Toxic effect of venom of other African and Asian snake, intentional self-harm, initial encounter|Toxic effect of venom of other African and Asian snake, intentional self-harm, initial encounter +C2885425|T037|AB|T63.082D|ICD10CM|Toxic eff of venom of African and Asian snake, slf-hrm, subs|Toxic eff of venom of African and Asian snake, slf-hrm, subs +C2885425|T037|PT|T63.082D|ICD10CM|Toxic effect of venom of other African and Asian snake, intentional self-harm, subsequent encounter|Toxic effect of venom of other African and Asian snake, intentional self-harm, subsequent encounter +C2885426|T037|AB|T63.082S|ICD10CM|Toxic eff of venom of African and Asian snake, slf-hrm, sqla|Toxic eff of venom of African and Asian snake, slf-hrm, sqla +C2885426|T037|PT|T63.082S|ICD10CM|Toxic effect of venom of other African and Asian snake, intentional self-harm, sequela|Toxic effect of venom of other African and Asian snake, intentional self-harm, sequela +C2885427|T037|AB|T63.083|ICD10CM|Toxic effect of venom of African and Asian snake, assault|Toxic effect of venom of African and Asian snake, assault +C2885427|T037|HT|T63.083|ICD10CM|Toxic effect of venom of other African and Asian snake, assault|Toxic effect of venom of other African and Asian snake, assault +C2885428|T037|AB|T63.083A|ICD10CM|Toxic eff of venom of African and Asian snake, asslt, init|Toxic eff of venom of African and Asian snake, asslt, init +C2885428|T037|PT|T63.083A|ICD10CM|Toxic effect of venom of other African and Asian snake, assault, initial encounter|Toxic effect of venom of other African and Asian snake, assault, initial encounter +C2885429|T037|AB|T63.083D|ICD10CM|Toxic eff of venom of African and Asian snake, asslt, subs|Toxic eff of venom of African and Asian snake, asslt, subs +C2885429|T037|PT|T63.083D|ICD10CM|Toxic effect of venom of other African and Asian snake, assault, subsequent encounter|Toxic effect of venom of other African and Asian snake, assault, subsequent encounter +C2885430|T037|AB|T63.083S|ICD10CM|Toxic eff of venom of African and Asian snake, asslt, sqla|Toxic eff of venom of African and Asian snake, asslt, sqla +C2885430|T037|PT|T63.083S|ICD10CM|Toxic effect of venom of other African and Asian snake, assault, sequela|Toxic effect of venom of other African and Asian snake, assault, sequela +C2885431|T037|AB|T63.084|ICD10CM|Toxic effect of venom of African and Asian snake, undet|Toxic effect of venom of African and Asian snake, undet +C2885431|T037|HT|T63.084|ICD10CM|Toxic effect of venom of other African and Asian snake, undetermined|Toxic effect of venom of other African and Asian snake, undetermined +C2885432|T037|AB|T63.084A|ICD10CM|Toxic eff of venom of African and Asian snake, undet, init|Toxic eff of venom of African and Asian snake, undet, init +C2885432|T037|PT|T63.084A|ICD10CM|Toxic effect of venom of other African and Asian snake, undetermined, initial encounter|Toxic effect of venom of other African and Asian snake, undetermined, initial encounter +C2885433|T037|AB|T63.084D|ICD10CM|Toxic eff of venom of African and Asian snake, undet, subs|Toxic eff of venom of African and Asian snake, undet, subs +C2885433|T037|PT|T63.084D|ICD10CM|Toxic effect of venom of other African and Asian snake, undetermined, subsequent encounter|Toxic effect of venom of other African and Asian snake, undetermined, subsequent encounter +C2885434|T037|AB|T63.084S|ICD10CM|Toxic eff of venom of African and Asian snake, undet, sqla|Toxic eff of venom of African and Asian snake, undet, sqla +C2885434|T037|PT|T63.084S|ICD10CM|Toxic effect of venom of other African and Asian snake, undetermined, sequela|Toxic effect of venom of other African and Asian snake, undetermined, sequela +C2885435|T037|AB|T63.09|ICD10CM|Toxic effect of venom of other snake|Toxic effect of venom of other snake +C2885435|T037|HT|T63.09|ICD10CM|Toxic effect of venom of other snake|Toxic effect of venom of other snake +C2885435|T037|ET|T63.091|ICD10CM|Toxic effect of venom of other snake NOS|Toxic effect of venom of other snake NOS +C2885436|T037|HT|T63.091|ICD10CM|Toxic effect of venom of other snake, accidental (unintentional)|Toxic effect of venom of other snake, accidental (unintentional) +C2885436|T037|AB|T63.091|ICD10CM|Toxic effect of venom of snake, accidental (unintentional)|Toxic effect of venom of snake, accidental (unintentional) +C2885437|T037|PT|T63.091A|ICD10CM|Toxic effect of venom of other snake, accidental (unintentional), initial encounter|Toxic effect of venom of other snake, accidental (unintentional), initial encounter +C2885437|T037|AB|T63.091A|ICD10CM|Toxic effect of venom of snake, accidental, init|Toxic effect of venom of snake, accidental, init +C2885438|T037|PT|T63.091D|ICD10CM|Toxic effect of venom of other snake, accidental (unintentional), subsequent encounter|Toxic effect of venom of other snake, accidental (unintentional), subsequent encounter +C2885438|T037|AB|T63.091D|ICD10CM|Toxic effect of venom of snake, accidental, subs|Toxic effect of venom of snake, accidental, subs +C2885439|T037|PT|T63.091S|ICD10CM|Toxic effect of venom of other snake, accidental (unintentional), sequela|Toxic effect of venom of other snake, accidental (unintentional), sequela +C2885439|T037|AB|T63.091S|ICD10CM|Toxic effect of venom of snake, accidental, sequela|Toxic effect of venom of snake, accidental, sequela +C2885440|T037|AB|T63.092|ICD10CM|Toxic effect of venom of other snake, intentional self-harm|Toxic effect of venom of other snake, intentional self-harm +C2885440|T037|HT|T63.092|ICD10CM|Toxic effect of venom of other snake, intentional self-harm|Toxic effect of venom of other snake, intentional self-harm +C2885441|T037|PT|T63.092A|ICD10CM|Toxic effect of venom of other snake, intentional self-harm, initial encounter|Toxic effect of venom of other snake, intentional self-harm, initial encounter +C2885441|T037|AB|T63.092A|ICD10CM|Toxic effect of venom of snake, intentional self-harm, init|Toxic effect of venom of snake, intentional self-harm, init +C2885442|T037|PT|T63.092D|ICD10CM|Toxic effect of venom of other snake, intentional self-harm, subsequent encounter|Toxic effect of venom of other snake, intentional self-harm, subsequent encounter +C2885442|T037|AB|T63.092D|ICD10CM|Toxic effect of venom of snake, intentional self-harm, subs|Toxic effect of venom of snake, intentional self-harm, subs +C2885443|T037|PT|T63.092S|ICD10CM|Toxic effect of venom of other snake, intentional self-harm, sequela|Toxic effect of venom of other snake, intentional self-harm, sequela +C2885443|T037|AB|T63.092S|ICD10CM|Toxic effect of venom of snake, self-harm, sequela|Toxic effect of venom of snake, self-harm, sequela +C2885444|T037|AB|T63.093|ICD10CM|Toxic effect of venom of other snake, assault|Toxic effect of venom of other snake, assault +C2885444|T037|HT|T63.093|ICD10CM|Toxic effect of venom of other snake, assault|Toxic effect of venom of other snake, assault +C2885445|T037|AB|T63.093A|ICD10CM|Toxic effect of venom of other snake, assault, init encntr|Toxic effect of venom of other snake, assault, init encntr +C2885445|T037|PT|T63.093A|ICD10CM|Toxic effect of venom of other snake, assault, initial encounter|Toxic effect of venom of other snake, assault, initial encounter +C2885446|T037|AB|T63.093D|ICD10CM|Toxic effect of venom of other snake, assault, subs encntr|Toxic effect of venom of other snake, assault, subs encntr +C2885446|T037|PT|T63.093D|ICD10CM|Toxic effect of venom of other snake, assault, subsequent encounter|Toxic effect of venom of other snake, assault, subsequent encounter +C2885447|T037|AB|T63.093S|ICD10CM|Toxic effect of venom of other snake, assault, sequela|Toxic effect of venom of other snake, assault, sequela +C2885447|T037|PT|T63.093S|ICD10CM|Toxic effect of venom of other snake, assault, sequela|Toxic effect of venom of other snake, assault, sequela +C2885448|T037|AB|T63.094|ICD10CM|Toxic effect of venom of other snake, undetermined|Toxic effect of venom of other snake, undetermined +C2885448|T037|HT|T63.094|ICD10CM|Toxic effect of venom of other snake, undetermined|Toxic effect of venom of other snake, undetermined +C2885449|T037|AB|T63.094A|ICD10CM|Toxic effect of venom of oth snake, undetermined, init|Toxic effect of venom of oth snake, undetermined, init +C2885449|T037|PT|T63.094A|ICD10CM|Toxic effect of venom of other snake, undetermined, initial encounter|Toxic effect of venom of other snake, undetermined, initial encounter +C2885450|T037|AB|T63.094D|ICD10CM|Toxic effect of venom of oth snake, undetermined, subs|Toxic effect of venom of oth snake, undetermined, subs +C2885450|T037|PT|T63.094D|ICD10CM|Toxic effect of venom of other snake, undetermined, subsequent encounter|Toxic effect of venom of other snake, undetermined, subsequent encounter +C2885451|T037|AB|T63.094S|ICD10CM|Toxic effect of venom of other snake, undetermined, sequela|Toxic effect of venom of other snake, undetermined, sequela +C2885451|T037|PT|T63.094S|ICD10CM|Toxic effect of venom of other snake, undetermined, sequela|Toxic effect of venom of other snake, undetermined, sequela +C0497028|T037|HT|T63.1|ICD10CM|Toxic effect of venom of other reptiles|Toxic effect of venom of other reptiles +C0497028|T037|AB|T63.1|ICD10CM|Toxic effect of venom of other reptiles|Toxic effect of venom of other reptiles +C0497028|T037|PX|T63.1|ICD10|Toxic effect of venom of other reptiles|Toxic effect of venom of other reptiles +C0497028|T037|PS|T63.1|ICD10|Venom of other reptiles|Venom of other reptiles +C2885452|T037|AB|T63.11|ICD10CM|Toxic effect of venom of gila monster|Toxic effect of venom of gila monster +C2885452|T037|HT|T63.11|ICD10CM|Toxic effect of venom of gila monster|Toxic effect of venom of gila monster +C2885452|T037|ET|T63.111|ICD10CM|Toxic effect of venom of gila monster NOS|Toxic effect of venom of gila monster NOS +C2885453|T037|AB|T63.111|ICD10CM|Toxic effect of venom of gila monster, accidental|Toxic effect of venom of gila monster, accidental +C2885453|T037|HT|T63.111|ICD10CM|Toxic effect of venom of gila monster, accidental (unintentional)|Toxic effect of venom of gila monster, accidental (unintentional) +C2885454|T037|PT|T63.111A|ICD10CM|Toxic effect of venom of gila monster, accidental (unintentional), initial encounter|Toxic effect of venom of gila monster, accidental (unintentional), initial encounter +C2885454|T037|AB|T63.111A|ICD10CM|Toxic effect of venom of gila monster, accidental, init|Toxic effect of venom of gila monster, accidental, init +C2885455|T037|PT|T63.111D|ICD10CM|Toxic effect of venom of gila monster, accidental (unintentional), subsequent encounter|Toxic effect of venom of gila monster, accidental (unintentional), subsequent encounter +C2885455|T037|AB|T63.111D|ICD10CM|Toxic effect of venom of gila monster, accidental, subs|Toxic effect of venom of gila monster, accidental, subs +C2885456|T037|PT|T63.111S|ICD10CM|Toxic effect of venom of gila monster, accidental (unintentional), sequela|Toxic effect of venom of gila monster, accidental (unintentional), sequela +C2885456|T037|AB|T63.111S|ICD10CM|Toxic effect of venom of gila monster, accidental, sequela|Toxic effect of venom of gila monster, accidental, sequela +C2885457|T037|AB|T63.112|ICD10CM|Toxic effect of venom of gila monster, intentional self-harm|Toxic effect of venom of gila monster, intentional self-harm +C2885457|T037|HT|T63.112|ICD10CM|Toxic effect of venom of gila monster, intentional self-harm|Toxic effect of venom of gila monster, intentional self-harm +C2885458|T037|PT|T63.112A|ICD10CM|Toxic effect of venom of gila monster, intentional self-harm, initial encounter|Toxic effect of venom of gila monster, intentional self-harm, initial encounter +C2885458|T037|AB|T63.112A|ICD10CM|Toxic effect of venom of gila monster, self-harm, init|Toxic effect of venom of gila monster, self-harm, init +C2885459|T037|PT|T63.112D|ICD10CM|Toxic effect of venom of gila monster, intentional self-harm, subsequent encounter|Toxic effect of venom of gila monster, intentional self-harm, subsequent encounter +C2885459|T037|AB|T63.112D|ICD10CM|Toxic effect of venom of gila monster, self-harm, subs|Toxic effect of venom of gila monster, self-harm, subs +C2885460|T037|PT|T63.112S|ICD10CM|Toxic effect of venom of gila monster, intentional self-harm, sequela|Toxic effect of venom of gila monster, intentional self-harm, sequela +C2885460|T037|AB|T63.112S|ICD10CM|Toxic effect of venom of gila monster, self-harm, sequela|Toxic effect of venom of gila monster, self-harm, sequela +C2885461|T037|AB|T63.113|ICD10CM|Toxic effect of venom of gila monster, assault|Toxic effect of venom of gila monster, assault +C2885461|T037|HT|T63.113|ICD10CM|Toxic effect of venom of gila monster, assault|Toxic effect of venom of gila monster, assault +C2885462|T037|AB|T63.113A|ICD10CM|Toxic effect of venom of gila monster, assault, init encntr|Toxic effect of venom of gila monster, assault, init encntr +C2885462|T037|PT|T63.113A|ICD10CM|Toxic effect of venom of gila monster, assault, initial encounter|Toxic effect of venom of gila monster, assault, initial encounter +C2885463|T037|AB|T63.113D|ICD10CM|Toxic effect of venom of gila monster, assault, subs encntr|Toxic effect of venom of gila monster, assault, subs encntr +C2885463|T037|PT|T63.113D|ICD10CM|Toxic effect of venom of gila monster, assault, subsequent encounter|Toxic effect of venom of gila monster, assault, subsequent encounter +C2885464|T037|AB|T63.113S|ICD10CM|Toxic effect of venom of gila monster, assault, sequela|Toxic effect of venom of gila monster, assault, sequela +C2885464|T037|PT|T63.113S|ICD10CM|Toxic effect of venom of gila monster, assault, sequela|Toxic effect of venom of gila monster, assault, sequela +C2885465|T037|AB|T63.114|ICD10CM|Toxic effect of venom of gila monster, undetermined|Toxic effect of venom of gila monster, undetermined +C2885465|T037|HT|T63.114|ICD10CM|Toxic effect of venom of gila monster, undetermined|Toxic effect of venom of gila monster, undetermined +C2885466|T037|AB|T63.114A|ICD10CM|Toxic effect of venom of gila monster, undetermined, init|Toxic effect of venom of gila monster, undetermined, init +C2885466|T037|PT|T63.114A|ICD10CM|Toxic effect of venom of gila monster, undetermined, initial encounter|Toxic effect of venom of gila monster, undetermined, initial encounter +C2885467|T037|AB|T63.114D|ICD10CM|Toxic effect of venom of gila monster, undetermined, subs|Toxic effect of venom of gila monster, undetermined, subs +C2885467|T037|PT|T63.114D|ICD10CM|Toxic effect of venom of gila monster, undetermined, subsequent encounter|Toxic effect of venom of gila monster, undetermined, subsequent encounter +C2885468|T037|AB|T63.114S|ICD10CM|Toxic effect of venom of gila monster, undetermined, sequela|Toxic effect of venom of gila monster, undetermined, sequela +C2885468|T037|PT|T63.114S|ICD10CM|Toxic effect of venom of gila monster, undetermined, sequela|Toxic effect of venom of gila monster, undetermined, sequela +C2885469|T037|AB|T63.12|ICD10CM|Toxic effect of venom of other venomous lizard|Toxic effect of venom of other venomous lizard +C2885469|T037|HT|T63.12|ICD10CM|Toxic effect of venom of other venomous lizard|Toxic effect of venom of other venomous lizard +C2885469|T037|ET|T63.121|ICD10CM|Toxic effect of venom of other venomous lizard NOS|Toxic effect of venom of other venomous lizard NOS +C2885470|T037|HT|T63.121|ICD10CM|Toxic effect of venom of other venomous lizard, accidental (unintentional)|Toxic effect of venom of other venomous lizard, accidental (unintentional) +C2885470|T037|AB|T63.121|ICD10CM|Toxic effect of venom of venomous lizard, accidental|Toxic effect of venom of venomous lizard, accidental +C2885471|T037|PT|T63.121A|ICD10CM|Toxic effect of venom of other venomous lizard, accidental (unintentional), initial encounter|Toxic effect of venom of other venomous lizard, accidental (unintentional), initial encounter +C2885471|T037|AB|T63.121A|ICD10CM|Toxic effect of venom of venomous lizard, accidental, init|Toxic effect of venom of venomous lizard, accidental, init +C2885472|T037|PT|T63.121D|ICD10CM|Toxic effect of venom of other venomous lizard, accidental (unintentional), subsequent encounter|Toxic effect of venom of other venomous lizard, accidental (unintentional), subsequent encounter +C2885472|T037|AB|T63.121D|ICD10CM|Toxic effect of venom of venomous lizard, accidental, subs|Toxic effect of venom of venomous lizard, accidental, subs +C2885473|T037|PT|T63.121S|ICD10CM|Toxic effect of venom of other venomous lizard, accidental (unintentional), sequela|Toxic effect of venom of other venomous lizard, accidental (unintentional), sequela +C2885473|T037|AB|T63.121S|ICD10CM|Toxic effect of venom of venomous lizard, acc, sequela|Toxic effect of venom of venomous lizard, acc, sequela +C2885474|T037|HT|T63.122|ICD10CM|Toxic effect of venom of other venomous lizard, intentional self-harm|Toxic effect of venom of other venomous lizard, intentional self-harm +C2885474|T037|AB|T63.122|ICD10CM|Toxic effect of venom of venomous lizard, self-harm|Toxic effect of venom of venomous lizard, self-harm +C2885475|T037|PT|T63.122A|ICD10CM|Toxic effect of venom of other venomous lizard, intentional self-harm, initial encounter|Toxic effect of venom of other venomous lizard, intentional self-harm, initial encounter +C2885475|T037|AB|T63.122A|ICD10CM|Toxic effect of venom of venomous lizard, self-harm, init|Toxic effect of venom of venomous lizard, self-harm, init +C2885476|T037|PT|T63.122D|ICD10CM|Toxic effect of venom of other venomous lizard, intentional self-harm, subsequent encounter|Toxic effect of venom of other venomous lizard, intentional self-harm, subsequent encounter +C2885476|T037|AB|T63.122D|ICD10CM|Toxic effect of venom of venomous lizard, self-harm, subs|Toxic effect of venom of venomous lizard, self-harm, subs +C2885477|T037|PT|T63.122S|ICD10CM|Toxic effect of venom of other venomous lizard, intentional self-harm, sequela|Toxic effect of venom of other venomous lizard, intentional self-harm, sequela +C2885477|T037|AB|T63.122S|ICD10CM|Toxic effect of venom of venomous lizard, self-harm, sequela|Toxic effect of venom of venomous lizard, self-harm, sequela +C2885478|T037|AB|T63.123|ICD10CM|Toxic effect of venom of other venomous lizard, assault|Toxic effect of venom of other venomous lizard, assault +C2885478|T037|HT|T63.123|ICD10CM|Toxic effect of venom of other venomous lizard, assault|Toxic effect of venom of other venomous lizard, assault +C2885479|T037|AB|T63.123A|ICD10CM|Toxic effect of venom of oth venomous lizard, assault, init|Toxic effect of venom of oth venomous lizard, assault, init +C2885479|T037|PT|T63.123A|ICD10CM|Toxic effect of venom of other venomous lizard, assault, initial encounter|Toxic effect of venom of other venomous lizard, assault, initial encounter +C2885480|T037|AB|T63.123D|ICD10CM|Toxic effect of venom of oth venomous lizard, assault, subs|Toxic effect of venom of oth venomous lizard, assault, subs +C2885480|T037|PT|T63.123D|ICD10CM|Toxic effect of venom of other venomous lizard, assault, subsequent encounter|Toxic effect of venom of other venomous lizard, assault, subsequent encounter +C2885481|T037|PT|T63.123S|ICD10CM|Toxic effect of venom of other venomous lizard, assault, sequela|Toxic effect of venom of other venomous lizard, assault, sequela +C2885481|T037|AB|T63.123S|ICD10CM|Toxic effect of venom of venomous lizard, assault, sequela|Toxic effect of venom of venomous lizard, assault, sequela +C2885482|T037|AB|T63.124|ICD10CM|Toxic effect of venom of other venomous lizard, undetermined|Toxic effect of venom of other venomous lizard, undetermined +C2885482|T037|HT|T63.124|ICD10CM|Toxic effect of venom of other venomous lizard, undetermined|Toxic effect of venom of other venomous lizard, undetermined +C2885483|T037|PT|T63.124A|ICD10CM|Toxic effect of venom of other venomous lizard, undetermined, initial encounter|Toxic effect of venom of other venomous lizard, undetermined, initial encounter +C2885483|T037|AB|T63.124A|ICD10CM|Toxic effect of venom of venomous lizard, undetermined, init|Toxic effect of venom of venomous lizard, undetermined, init +C2885484|T037|PT|T63.124D|ICD10CM|Toxic effect of venom of other venomous lizard, undetermined, subsequent encounter|Toxic effect of venom of other venomous lizard, undetermined, subsequent encounter +C2885484|T037|AB|T63.124D|ICD10CM|Toxic effect of venom of venomous lizard, undetermined, subs|Toxic effect of venom of venomous lizard, undetermined, subs +C2885485|T037|PT|T63.124S|ICD10CM|Toxic effect of venom of other venomous lizard, undetermined, sequela|Toxic effect of venom of other venomous lizard, undetermined, sequela +C2885485|T037|AB|T63.124S|ICD10CM|Toxic effect of venom of venomous lizard, undet, sequela|Toxic effect of venom of venomous lizard, undet, sequela +C0497028|T037|HT|T63.19|ICD10CM|Toxic effect of venom of other reptiles|Toxic effect of venom of other reptiles +C0497028|T037|AB|T63.19|ICD10CM|Toxic effect of venom of other reptiles|Toxic effect of venom of other reptiles +C0497028|T037|ET|T63.191|ICD10CM|Toxic effect of venom of other reptiles NOS|Toxic effect of venom of other reptiles NOS +C2885486|T037|HT|T63.191|ICD10CM|Toxic effect of venom of other reptiles, accidental (unintentional)|Toxic effect of venom of other reptiles, accidental (unintentional) +C2885486|T037|AB|T63.191|ICD10CM|Toxic effect of venom of reptiles, accidental|Toxic effect of venom of reptiles, accidental +C2885487|T037|PT|T63.191A|ICD10CM|Toxic effect of venom of other reptiles, accidental (unintentional), initial encounter|Toxic effect of venom of other reptiles, accidental (unintentional), initial encounter +C2885487|T037|AB|T63.191A|ICD10CM|Toxic effect of venom of reptiles, accidental, init|Toxic effect of venom of reptiles, accidental, init +C2885488|T037|PT|T63.191D|ICD10CM|Toxic effect of venom of other reptiles, accidental (unintentional), subsequent encounter|Toxic effect of venom of other reptiles, accidental (unintentional), subsequent encounter +C2885488|T037|AB|T63.191D|ICD10CM|Toxic effect of venom of reptiles, accidental, subs|Toxic effect of venom of reptiles, accidental, subs +C2885489|T037|PT|T63.191S|ICD10CM|Toxic effect of venom of other reptiles, accidental (unintentional), sequela|Toxic effect of venom of other reptiles, accidental (unintentional), sequela +C2885489|T037|AB|T63.191S|ICD10CM|Toxic effect of venom of reptiles, accidental, sequela|Toxic effect of venom of reptiles, accidental, sequela +C2885490|T037|AB|T63.192|ICD10CM|Toxic effect of venom of oth reptiles, intentional self-harm|Toxic effect of venom of oth reptiles, intentional self-harm +C2885490|T037|HT|T63.192|ICD10CM|Toxic effect of venom of other reptiles, intentional self-harm|Toxic effect of venom of other reptiles, intentional self-harm +C2885491|T037|PT|T63.192A|ICD10CM|Toxic effect of venom of other reptiles, intentional self-harm, initial encounter|Toxic effect of venom of other reptiles, intentional self-harm, initial encounter +C2885491|T037|AB|T63.192A|ICD10CM|Toxic effect of venom of reptiles, self-harm, init|Toxic effect of venom of reptiles, self-harm, init +C2885492|T037|PT|T63.192D|ICD10CM|Toxic effect of venom of other reptiles, intentional self-harm, subsequent encounter|Toxic effect of venom of other reptiles, intentional self-harm, subsequent encounter +C2885492|T037|AB|T63.192D|ICD10CM|Toxic effect of venom of reptiles, self-harm, subs|Toxic effect of venom of reptiles, self-harm, subs +C2885493|T037|PT|T63.192S|ICD10CM|Toxic effect of venom of other reptiles, intentional self-harm, sequela|Toxic effect of venom of other reptiles, intentional self-harm, sequela +C2885493|T037|AB|T63.192S|ICD10CM|Toxic effect of venom of reptiles, self-harm, sequela|Toxic effect of venom of reptiles, self-harm, sequela +C2885494|T037|AB|T63.193|ICD10CM|Toxic effect of venom of other reptiles, assault|Toxic effect of venom of other reptiles, assault +C2885494|T037|HT|T63.193|ICD10CM|Toxic effect of venom of other reptiles, assault|Toxic effect of venom of other reptiles, assault +C2885495|T037|AB|T63.193A|ICD10CM|Toxic effect of venom of oth reptiles, assault, init encntr|Toxic effect of venom of oth reptiles, assault, init encntr +C2885495|T037|PT|T63.193A|ICD10CM|Toxic effect of venom of other reptiles, assault, initial encounter|Toxic effect of venom of other reptiles, assault, initial encounter +C2885496|T037|AB|T63.193D|ICD10CM|Toxic effect of venom of oth reptiles, assault, subs encntr|Toxic effect of venom of oth reptiles, assault, subs encntr +C2885496|T037|PT|T63.193D|ICD10CM|Toxic effect of venom of other reptiles, assault, subsequent encounter|Toxic effect of venom of other reptiles, assault, subsequent encounter +C2885497|T037|AB|T63.193S|ICD10CM|Toxic effect of venom of other reptiles, assault, sequela|Toxic effect of venom of other reptiles, assault, sequela +C2885497|T037|PT|T63.193S|ICD10CM|Toxic effect of venom of other reptiles, assault, sequela|Toxic effect of venom of other reptiles, assault, sequela +C2885498|T037|AB|T63.194|ICD10CM|Toxic effect of venom of other reptiles, undetermined|Toxic effect of venom of other reptiles, undetermined +C2885498|T037|HT|T63.194|ICD10CM|Toxic effect of venom of other reptiles, undetermined|Toxic effect of venom of other reptiles, undetermined +C2885499|T037|AB|T63.194A|ICD10CM|Toxic effect of venom of oth reptiles, undetermined, init|Toxic effect of venom of oth reptiles, undetermined, init +C2885499|T037|PT|T63.194A|ICD10CM|Toxic effect of venom of other reptiles, undetermined, initial encounter|Toxic effect of venom of other reptiles, undetermined, initial encounter +C2885500|T037|AB|T63.194D|ICD10CM|Toxic effect of venom of oth reptiles, undetermined, subs|Toxic effect of venom of oth reptiles, undetermined, subs +C2885500|T037|PT|T63.194D|ICD10CM|Toxic effect of venom of other reptiles, undetermined, subsequent encounter|Toxic effect of venom of other reptiles, undetermined, subsequent encounter +C2885501|T037|AB|T63.194S|ICD10CM|Toxic effect of venom of oth reptiles, undetermined, sequela|Toxic effect of venom of oth reptiles, undetermined, sequela +C2885501|T037|PT|T63.194S|ICD10CM|Toxic effect of venom of other reptiles, undetermined, sequela|Toxic effect of venom of other reptiles, undetermined, sequela +C0413114|T037|PX|T63.2|ICD10|Toxic effect of venom of scorpion|Toxic effect of venom of scorpion +C0413114|T037|HT|T63.2|ICD10CM|Toxic effect of venom of scorpion|Toxic effect of venom of scorpion +C0413114|T037|AB|T63.2|ICD10CM|Toxic effect of venom of scorpion|Toxic effect of venom of scorpion +C0413114|T037|PS|T63.2|ICD10|Venom of scorpion|Venom of scorpion +C0413114|T037|HT|T63.2X|ICD10CM|Toxic effect of venom of scorpion|Toxic effect of venom of scorpion +C0413114|T037|AB|T63.2X|ICD10CM|Toxic effect of venom of scorpion|Toxic effect of venom of scorpion +C0413114|T037|ET|T63.2X1|ICD10CM|Toxic effect of venom of scorpion NOS|Toxic effect of venom of scorpion NOS +C2885502|T037|AB|T63.2X1|ICD10CM|Toxic effect of venom of scorpion, accidental|Toxic effect of venom of scorpion, accidental +C2885502|T037|HT|T63.2X1|ICD10CM|Toxic effect of venom of scorpion, accidental (unintentional)|Toxic effect of venom of scorpion, accidental (unintentional) +C2885503|T037|PT|T63.2X1A|ICD10CM|Toxic effect of venom of scorpion, accidental (unintentional), initial encounter|Toxic effect of venom of scorpion, accidental (unintentional), initial encounter +C2885503|T037|AB|T63.2X1A|ICD10CM|Toxic effect of venom of scorpion, accidental, init|Toxic effect of venom of scorpion, accidental, init +C2885504|T037|PT|T63.2X1D|ICD10CM|Toxic effect of venom of scorpion, accidental (unintentional), subsequent encounter|Toxic effect of venom of scorpion, accidental (unintentional), subsequent encounter +C2885504|T037|AB|T63.2X1D|ICD10CM|Toxic effect of venom of scorpion, accidental, subs|Toxic effect of venom of scorpion, accidental, subs +C2885505|T037|PT|T63.2X1S|ICD10CM|Toxic effect of venom of scorpion, accidental (unintentional), sequela|Toxic effect of venom of scorpion, accidental (unintentional), sequela +C2885505|T037|AB|T63.2X1S|ICD10CM|Toxic effect of venom of scorpion, accidental, sequela|Toxic effect of venom of scorpion, accidental, sequela +C2885506|T037|AB|T63.2X2|ICD10CM|Toxic effect of venom of scorpion, intentional self-harm|Toxic effect of venom of scorpion, intentional self-harm +C2885506|T037|HT|T63.2X2|ICD10CM|Toxic effect of venom of scorpion, intentional self-harm|Toxic effect of venom of scorpion, intentional self-harm +C2885507|T037|PT|T63.2X2A|ICD10CM|Toxic effect of venom of scorpion, intentional self-harm, initial encounter|Toxic effect of venom of scorpion, intentional self-harm, initial encounter +C2885507|T037|AB|T63.2X2A|ICD10CM|Toxic effect of venom of scorpion, self-harm, init|Toxic effect of venom of scorpion, self-harm, init +C2885508|T037|PT|T63.2X2D|ICD10CM|Toxic effect of venom of scorpion, intentional self-harm, subsequent encounter|Toxic effect of venom of scorpion, intentional self-harm, subsequent encounter +C2885508|T037|AB|T63.2X2D|ICD10CM|Toxic effect of venom of scorpion, self-harm, subs|Toxic effect of venom of scorpion, self-harm, subs +C2885509|T037|PT|T63.2X2S|ICD10CM|Toxic effect of venom of scorpion, intentional self-harm, sequela|Toxic effect of venom of scorpion, intentional self-harm, sequela +C2885509|T037|AB|T63.2X2S|ICD10CM|Toxic effect of venom of scorpion, self-harm, sequela|Toxic effect of venom of scorpion, self-harm, sequela +C2885510|T037|AB|T63.2X3|ICD10CM|Toxic effect of venom of scorpion, assault|Toxic effect of venom of scorpion, assault +C2885510|T037|HT|T63.2X3|ICD10CM|Toxic effect of venom of scorpion, assault|Toxic effect of venom of scorpion, assault +C2885511|T037|AB|T63.2X3A|ICD10CM|Toxic effect of venom of scorpion, assault, init encntr|Toxic effect of venom of scorpion, assault, init encntr +C2885511|T037|PT|T63.2X3A|ICD10CM|Toxic effect of venom of scorpion, assault, initial encounter|Toxic effect of venom of scorpion, assault, initial encounter +C2885512|T037|AB|T63.2X3D|ICD10CM|Toxic effect of venom of scorpion, assault, subs encntr|Toxic effect of venom of scorpion, assault, subs encntr +C2885512|T037|PT|T63.2X3D|ICD10CM|Toxic effect of venom of scorpion, assault, subsequent encounter|Toxic effect of venom of scorpion, assault, subsequent encounter +C2885513|T037|AB|T63.2X3S|ICD10CM|Toxic effect of venom of scorpion, assault, sequela|Toxic effect of venom of scorpion, assault, sequela +C2885513|T037|PT|T63.2X3S|ICD10CM|Toxic effect of venom of scorpion, assault, sequela|Toxic effect of venom of scorpion, assault, sequela +C2885514|T037|AB|T63.2X4|ICD10CM|Toxic effect of venom of scorpion, undetermined|Toxic effect of venom of scorpion, undetermined +C2885514|T037|HT|T63.2X4|ICD10CM|Toxic effect of venom of scorpion, undetermined|Toxic effect of venom of scorpion, undetermined +C2885515|T037|AB|T63.2X4A|ICD10CM|Toxic effect of venom of scorpion, undetermined, init encntr|Toxic effect of venom of scorpion, undetermined, init encntr +C2885515|T037|PT|T63.2X4A|ICD10CM|Toxic effect of venom of scorpion, undetermined, initial encounter|Toxic effect of venom of scorpion, undetermined, initial encounter +C2885516|T037|AB|T63.2X4D|ICD10CM|Toxic effect of venom of scorpion, undetermined, subs encntr|Toxic effect of venom of scorpion, undetermined, subs encntr +C2885516|T037|PT|T63.2X4D|ICD10CM|Toxic effect of venom of scorpion, undetermined, subsequent encounter|Toxic effect of venom of scorpion, undetermined, subsequent encounter +C2885517|T037|AB|T63.2X4S|ICD10CM|Toxic effect of venom of scorpion, undetermined, sequela|Toxic effect of venom of scorpion, undetermined, sequela +C2885517|T037|PT|T63.2X4S|ICD10CM|Toxic effect of venom of scorpion, undetermined, sequela|Toxic effect of venom of scorpion, undetermined, sequela +C0003705|T037|PX|T63.3|ICD10|Toxic effect of venom of spider|Toxic effect of venom of spider +C0003705|T037|HT|T63.3|ICD10CM|Toxic effect of venom of spider|Toxic effect of venom of spider +C0003705|T037|AB|T63.3|ICD10CM|Toxic effect of venom of spider|Toxic effect of venom of spider +C0003705|T037|PS|T63.3|ICD10|Venom of spider|Venom of spider +C2885518|T037|AB|T63.30|ICD10CM|Toxic effect of unspecified spider venom|Toxic effect of unspecified spider venom +C2885518|T037|HT|T63.30|ICD10CM|Toxic effect of unspecified spider venom|Toxic effect of unspecified spider venom +C2885519|T037|AB|T63.301|ICD10CM|Toxic effect of unsp spider venom, accidental|Toxic effect of unsp spider venom, accidental +C2885519|T037|HT|T63.301|ICD10CM|Toxic effect of unspecified spider venom, accidental (unintentional)|Toxic effect of unspecified spider venom, accidental (unintentional) +C2885520|T037|AB|T63.301A|ICD10CM|Toxic effect of unsp spider venom, accidental, init|Toxic effect of unsp spider venom, accidental, init +C2885520|T037|PT|T63.301A|ICD10CM|Toxic effect of unspecified spider venom, accidental (unintentional), initial encounter|Toxic effect of unspecified spider venom, accidental (unintentional), initial encounter +C2885521|T037|AB|T63.301D|ICD10CM|Toxic effect of unsp spider venom, accidental, subs|Toxic effect of unsp spider venom, accidental, subs +C2885521|T037|PT|T63.301D|ICD10CM|Toxic effect of unspecified spider venom, accidental (unintentional), subsequent encounter|Toxic effect of unspecified spider venom, accidental (unintentional), subsequent encounter +C2885522|T037|AB|T63.301S|ICD10CM|Toxic effect of unsp spider venom, accidental, sequela|Toxic effect of unsp spider venom, accidental, sequela +C2885522|T037|PT|T63.301S|ICD10CM|Toxic effect of unspecified spider venom, accidental (unintentional), sequela|Toxic effect of unspecified spider venom, accidental (unintentional), sequela +C2885523|T037|AB|T63.302|ICD10CM|Toxic effect of unsp spider venom, intentional self-harm|Toxic effect of unsp spider venom, intentional self-harm +C2885523|T037|HT|T63.302|ICD10CM|Toxic effect of unspecified spider venom, intentional self-harm|Toxic effect of unspecified spider venom, intentional self-harm +C2885524|T037|AB|T63.302A|ICD10CM|Toxic effect of unsp spider venom, self-harm, init|Toxic effect of unsp spider venom, self-harm, init +C2885524|T037|PT|T63.302A|ICD10CM|Toxic effect of unspecified spider venom, intentional self-harm, initial encounter|Toxic effect of unspecified spider venom, intentional self-harm, initial encounter +C2885525|T037|AB|T63.302D|ICD10CM|Toxic effect of unsp spider venom, self-harm, subs|Toxic effect of unsp spider venom, self-harm, subs +C2885525|T037|PT|T63.302D|ICD10CM|Toxic effect of unspecified spider venom, intentional self-harm, subsequent encounter|Toxic effect of unspecified spider venom, intentional self-harm, subsequent encounter +C2885526|T037|AB|T63.302S|ICD10CM|Toxic effect of unsp spider venom, self-harm, sequela|Toxic effect of unsp spider venom, self-harm, sequela +C2885526|T037|PT|T63.302S|ICD10CM|Toxic effect of unspecified spider venom, intentional self-harm, sequela|Toxic effect of unspecified spider venom, intentional self-harm, sequela +C2885527|T037|AB|T63.303|ICD10CM|Toxic effect of unspecified spider venom, assault|Toxic effect of unspecified spider venom, assault +C2885527|T037|HT|T63.303|ICD10CM|Toxic effect of unspecified spider venom, assault|Toxic effect of unspecified spider venom, assault +C2885528|T037|AB|T63.303A|ICD10CM|Toxic effect of unsp spider venom, assault, init encntr|Toxic effect of unsp spider venom, assault, init encntr +C2885528|T037|PT|T63.303A|ICD10CM|Toxic effect of unspecified spider venom, assault, initial encounter|Toxic effect of unspecified spider venom, assault, initial encounter +C2885529|T037|AB|T63.303D|ICD10CM|Toxic effect of unsp spider venom, assault, subs encntr|Toxic effect of unsp spider venom, assault, subs encntr +C2885529|T037|PT|T63.303D|ICD10CM|Toxic effect of unspecified spider venom, assault, subsequent encounter|Toxic effect of unspecified spider venom, assault, subsequent encounter +C2885530|T037|AB|T63.303S|ICD10CM|Toxic effect of unspecified spider venom, assault, sequela|Toxic effect of unspecified spider venom, assault, sequela +C2885530|T037|PT|T63.303S|ICD10CM|Toxic effect of unspecified spider venom, assault, sequela|Toxic effect of unspecified spider venom, assault, sequela +C2885531|T037|AB|T63.304|ICD10CM|Toxic effect of unspecified spider venom, undetermined|Toxic effect of unspecified spider venom, undetermined +C2885531|T037|HT|T63.304|ICD10CM|Toxic effect of unspecified spider venom, undetermined|Toxic effect of unspecified spider venom, undetermined +C2885532|T037|AB|T63.304A|ICD10CM|Toxic effect of unsp spider venom, undetermined, init encntr|Toxic effect of unsp spider venom, undetermined, init encntr +C2885532|T037|PT|T63.304A|ICD10CM|Toxic effect of unspecified spider venom, undetermined, initial encounter|Toxic effect of unspecified spider venom, undetermined, initial encounter +C2885533|T037|AB|T63.304D|ICD10CM|Toxic effect of unsp spider venom, undetermined, subs encntr|Toxic effect of unsp spider venom, undetermined, subs encntr +C2885533|T037|PT|T63.304D|ICD10CM|Toxic effect of unspecified spider venom, undetermined, subsequent encounter|Toxic effect of unspecified spider venom, undetermined, subsequent encounter +C2885534|T037|AB|T63.304S|ICD10CM|Toxic effect of unsp spider venom, undetermined, sequela|Toxic effect of unsp spider venom, undetermined, sequela +C2885534|T037|PT|T63.304S|ICD10CM|Toxic effect of unspecified spider venom, undetermined, sequela|Toxic effect of unspecified spider venom, undetermined, sequela +C2885535|T037|AB|T63.31|ICD10CM|Toxic effect of venom of black widow spider|Toxic effect of venom of black widow spider +C2885535|T037|HT|T63.31|ICD10CM|Toxic effect of venom of black widow spider|Toxic effect of venom of black widow spider +C2885536|T037|AB|T63.311|ICD10CM|Toxic effect of venom of black widow spider, accidental|Toxic effect of venom of black widow spider, accidental +C2885536|T037|HT|T63.311|ICD10CM|Toxic effect of venom of black widow spider, accidental (unintentional)|Toxic effect of venom of black widow spider, accidental (unintentional) +C2885537|T037|AB|T63.311A|ICD10CM|Toxic effect of venom of black widow spider, acc, init|Toxic effect of venom of black widow spider, acc, init +C2885537|T037|PT|T63.311A|ICD10CM|Toxic effect of venom of black widow spider, accidental (unintentional), initial encounter|Toxic effect of venom of black widow spider, accidental (unintentional), initial encounter +C2885538|T037|AB|T63.311D|ICD10CM|Toxic effect of venom of black widow spider, acc, subs|Toxic effect of venom of black widow spider, acc, subs +C2885538|T037|PT|T63.311D|ICD10CM|Toxic effect of venom of black widow spider, accidental (unintentional), subsequent encounter|Toxic effect of venom of black widow spider, accidental (unintentional), subsequent encounter +C2885539|T037|AB|T63.311S|ICD10CM|Toxic effect of venom of black widow spider, acc, sequela|Toxic effect of venom of black widow spider, acc, sequela +C2885539|T037|PT|T63.311S|ICD10CM|Toxic effect of venom of black widow spider, accidental (unintentional), sequela|Toxic effect of venom of black widow spider, accidental (unintentional), sequela +C2885540|T037|HT|T63.312|ICD10CM|Toxic effect of venom of black widow spider, intentional self-harm|Toxic effect of venom of black widow spider, intentional self-harm +C2885540|T037|AB|T63.312|ICD10CM|Toxic effect of venom of black widow spider, self-harm|Toxic effect of venom of black widow spider, self-harm +C2885541|T037|PT|T63.312A|ICD10CM|Toxic effect of venom of black widow spider, intentional self-harm, initial encounter|Toxic effect of venom of black widow spider, intentional self-harm, initial encounter +C2885541|T037|AB|T63.312A|ICD10CM|Toxic effect of venom of black widow spider, self-harm, init|Toxic effect of venom of black widow spider, self-harm, init +C2885542|T037|PT|T63.312D|ICD10CM|Toxic effect of venom of black widow spider, intentional self-harm, subsequent encounter|Toxic effect of venom of black widow spider, intentional self-harm, subsequent encounter +C2885542|T037|AB|T63.312D|ICD10CM|Toxic effect of venom of black widow spider, self-harm, subs|Toxic effect of venom of black widow spider, self-harm, subs +C2885543|T037|PT|T63.312S|ICD10CM|Toxic effect of venom of black widow spider, intentional self-harm, sequela|Toxic effect of venom of black widow spider, intentional self-harm, sequela +C2885543|T037|AB|T63.312S|ICD10CM|Toxic effect of venom of black widow spider, slf-hrm, sqla|Toxic effect of venom of black widow spider, slf-hrm, sqla +C2885544|T037|AB|T63.313|ICD10CM|Toxic effect of venom of black widow spider, assault|Toxic effect of venom of black widow spider, assault +C2885544|T037|HT|T63.313|ICD10CM|Toxic effect of venom of black widow spider, assault|Toxic effect of venom of black widow spider, assault +C2885545|T037|AB|T63.313A|ICD10CM|Toxic effect of venom of black widow spider, assault, init|Toxic effect of venom of black widow spider, assault, init +C2885545|T037|PT|T63.313A|ICD10CM|Toxic effect of venom of black widow spider, assault, initial encounter|Toxic effect of venom of black widow spider, assault, initial encounter +C2885546|T037|AB|T63.313D|ICD10CM|Toxic effect of venom of black widow spider, assault, subs|Toxic effect of venom of black widow spider, assault, subs +C2885546|T037|PT|T63.313D|ICD10CM|Toxic effect of venom of black widow spider, assault, subsequent encounter|Toxic effect of venom of black widow spider, assault, subsequent encounter +C2885547|T037|PT|T63.313S|ICD10CM|Toxic effect of venom of black widow spider, assault, sequela|Toxic effect of venom of black widow spider, assault, sequela +C2885547|T037|AB|T63.313S|ICD10CM|Toxic effect of venom of black widow spider, asslt, sequela|Toxic effect of venom of black widow spider, asslt, sequela +C2885548|T037|AB|T63.314|ICD10CM|Toxic effect of venom of black widow spider, undetermined|Toxic effect of venom of black widow spider, undetermined +C2885548|T037|HT|T63.314|ICD10CM|Toxic effect of venom of black widow spider, undetermined|Toxic effect of venom of black widow spider, undetermined +C2885549|T037|AB|T63.314A|ICD10CM|Toxic effect of venom of black widow spider, undet, init|Toxic effect of venom of black widow spider, undet, init +C2885549|T037|PT|T63.314A|ICD10CM|Toxic effect of venom of black widow spider, undetermined, initial encounter|Toxic effect of venom of black widow spider, undetermined, initial encounter +C2885550|T037|AB|T63.314D|ICD10CM|Toxic effect of venom of black widow spider, undet, subs|Toxic effect of venom of black widow spider, undet, subs +C2885550|T037|PT|T63.314D|ICD10CM|Toxic effect of venom of black widow spider, undetermined, subsequent encounter|Toxic effect of venom of black widow spider, undetermined, subsequent encounter +C2885551|T037|AB|T63.314S|ICD10CM|Toxic effect of venom of black widow spider, undet, sequela|Toxic effect of venom of black widow spider, undet, sequela +C2885551|T037|PT|T63.314S|ICD10CM|Toxic effect of venom of black widow spider, undetermined, sequela|Toxic effect of venom of black widow spider, undetermined, sequela +C2885552|T037|AB|T63.32|ICD10CM|Toxic effect of venom of tarantula|Toxic effect of venom of tarantula +C2885552|T037|HT|T63.32|ICD10CM|Toxic effect of venom of tarantula|Toxic effect of venom of tarantula +C2885553|T037|AB|T63.321|ICD10CM|Toxic effect of venom of tarantula, accidental|Toxic effect of venom of tarantula, accidental +C2885553|T037|HT|T63.321|ICD10CM|Toxic effect of venom of tarantula, accidental (unintentional)|Toxic effect of venom of tarantula, accidental (unintentional) +C2885554|T037|PT|T63.321A|ICD10CM|Toxic effect of venom of tarantula, accidental (unintentional), initial encounter|Toxic effect of venom of tarantula, accidental (unintentional), initial encounter +C2885554|T037|AB|T63.321A|ICD10CM|Toxic effect of venom of tarantula, accidental, init|Toxic effect of venom of tarantula, accidental, init +C2885555|T037|PT|T63.321D|ICD10CM|Toxic effect of venom of tarantula, accidental (unintentional), subsequent encounter|Toxic effect of venom of tarantula, accidental (unintentional), subsequent encounter +C2885555|T037|AB|T63.321D|ICD10CM|Toxic effect of venom of tarantula, accidental, subs|Toxic effect of venom of tarantula, accidental, subs +C2885556|T037|PT|T63.321S|ICD10CM|Toxic effect of venom of tarantula, accidental (unintentional), sequela|Toxic effect of venom of tarantula, accidental (unintentional), sequela +C2885556|T037|AB|T63.321S|ICD10CM|Toxic effect of venom of tarantula, accidental, sequela|Toxic effect of venom of tarantula, accidental, sequela +C2885557|T037|AB|T63.322|ICD10CM|Toxic effect of venom of tarantula, intentional self-harm|Toxic effect of venom of tarantula, intentional self-harm +C2885557|T037|HT|T63.322|ICD10CM|Toxic effect of venom of tarantula, intentional self-harm|Toxic effect of venom of tarantula, intentional self-harm +C2885558|T037|PT|T63.322A|ICD10CM|Toxic effect of venom of tarantula, intentional self-harm, initial encounter|Toxic effect of venom of tarantula, intentional self-harm, initial encounter +C2885558|T037|AB|T63.322A|ICD10CM|Toxic effect of venom of tarantula, self-harm, init|Toxic effect of venom of tarantula, self-harm, init +C2885559|T037|PT|T63.322D|ICD10CM|Toxic effect of venom of tarantula, intentional self-harm, subsequent encounter|Toxic effect of venom of tarantula, intentional self-harm, subsequent encounter +C2885559|T037|AB|T63.322D|ICD10CM|Toxic effect of venom of tarantula, self-harm, subs|Toxic effect of venom of tarantula, self-harm, subs +C2885560|T037|PT|T63.322S|ICD10CM|Toxic effect of venom of tarantula, intentional self-harm, sequela|Toxic effect of venom of tarantula, intentional self-harm, sequela +C2885560|T037|AB|T63.322S|ICD10CM|Toxic effect of venom of tarantula, self-harm, sequela|Toxic effect of venom of tarantula, self-harm, sequela +C2885561|T037|AB|T63.323|ICD10CM|Toxic effect of venom of tarantula, assault|Toxic effect of venom of tarantula, assault +C2885561|T037|HT|T63.323|ICD10CM|Toxic effect of venom of tarantula, assault|Toxic effect of venom of tarantula, assault +C2885562|T037|AB|T63.323A|ICD10CM|Toxic effect of venom of tarantula, assault, init encntr|Toxic effect of venom of tarantula, assault, init encntr +C2885562|T037|PT|T63.323A|ICD10CM|Toxic effect of venom of tarantula, assault, initial encounter|Toxic effect of venom of tarantula, assault, initial encounter +C2885563|T037|AB|T63.323D|ICD10CM|Toxic effect of venom of tarantula, assault, subs encntr|Toxic effect of venom of tarantula, assault, subs encntr +C2885563|T037|PT|T63.323D|ICD10CM|Toxic effect of venom of tarantula, assault, subsequent encounter|Toxic effect of venom of tarantula, assault, subsequent encounter +C2885564|T037|AB|T63.323S|ICD10CM|Toxic effect of venom of tarantula, assault, sequela|Toxic effect of venom of tarantula, assault, sequela +C2885564|T037|PT|T63.323S|ICD10CM|Toxic effect of venom of tarantula, assault, sequela|Toxic effect of venom of tarantula, assault, sequela +C2885565|T037|AB|T63.324|ICD10CM|Toxic effect of venom of tarantula, undetermined|Toxic effect of venom of tarantula, undetermined +C2885565|T037|HT|T63.324|ICD10CM|Toxic effect of venom of tarantula, undetermined|Toxic effect of venom of tarantula, undetermined +C2885566|T037|AB|T63.324A|ICD10CM|Toxic effect of venom of tarantula, undetermined, init|Toxic effect of venom of tarantula, undetermined, init +C2885566|T037|PT|T63.324A|ICD10CM|Toxic effect of venom of tarantula, undetermined, initial encounter|Toxic effect of venom of tarantula, undetermined, initial encounter +C2885567|T037|AB|T63.324D|ICD10CM|Toxic effect of venom of tarantula, undetermined, subs|Toxic effect of venom of tarantula, undetermined, subs +C2885567|T037|PT|T63.324D|ICD10CM|Toxic effect of venom of tarantula, undetermined, subsequent encounter|Toxic effect of venom of tarantula, undetermined, subsequent encounter +C2885568|T037|AB|T63.324S|ICD10CM|Toxic effect of venom of tarantula, undetermined, sequela|Toxic effect of venom of tarantula, undetermined, sequela +C2885568|T037|PT|T63.324S|ICD10CM|Toxic effect of venom of tarantula, undetermined, sequela|Toxic effect of venom of tarantula, undetermined, sequela +C2885569|T037|AB|T63.33|ICD10CM|Toxic effect of venom of brown recluse spider|Toxic effect of venom of brown recluse spider +C2885569|T037|HT|T63.33|ICD10CM|Toxic effect of venom of brown recluse spider|Toxic effect of venom of brown recluse spider +C2885570|T037|AB|T63.331|ICD10CM|Toxic effect of venom of brown recluse spider, accidental|Toxic effect of venom of brown recluse spider, accidental +C2885570|T037|HT|T63.331|ICD10CM|Toxic effect of venom of brown recluse spider, accidental (unintentional)|Toxic effect of venom of brown recluse spider, accidental (unintentional) +C2885571|T037|AB|T63.331A|ICD10CM|Toxic effect of venom of brown recluse spider, acc, init|Toxic effect of venom of brown recluse spider, acc, init +C2885571|T037|PT|T63.331A|ICD10CM|Toxic effect of venom of brown recluse spider, accidental (unintentional), initial encounter|Toxic effect of venom of brown recluse spider, accidental (unintentional), initial encounter +C2885572|T037|AB|T63.331D|ICD10CM|Toxic effect of venom of brown recluse spider, acc, subs|Toxic effect of venom of brown recluse spider, acc, subs +C2885572|T037|PT|T63.331D|ICD10CM|Toxic effect of venom of brown recluse spider, accidental (unintentional), subsequent encounter|Toxic effect of venom of brown recluse spider, accidental (unintentional), subsequent encounter +C2885573|T037|AB|T63.331S|ICD10CM|Toxic effect of venom of brown recluse spider, acc, sequela|Toxic effect of venom of brown recluse spider, acc, sequela +C2885573|T037|PT|T63.331S|ICD10CM|Toxic effect of venom of brown recluse spider, accidental (unintentional), sequela|Toxic effect of venom of brown recluse spider, accidental (unintentional), sequela +C2885574|T037|HT|T63.332|ICD10CM|Toxic effect of venom of brown recluse spider, intentional self-harm|Toxic effect of venom of brown recluse spider, intentional self-harm +C2885574|T037|AB|T63.332|ICD10CM|Toxic effect of venom of brown recluse spider, self-harm|Toxic effect of venom of brown recluse spider, self-harm +C2885575|T037|PT|T63.332A|ICD10CM|Toxic effect of venom of brown recluse spider, intentional self-harm, initial encounter|Toxic effect of venom of brown recluse spider, intentional self-harm, initial encounter +C2885575|T037|AB|T63.332A|ICD10CM|Toxic effect of venom of brown recluse spider, slf-hrm, init|Toxic effect of venom of brown recluse spider, slf-hrm, init +C2885576|T037|PT|T63.332D|ICD10CM|Toxic effect of venom of brown recluse spider, intentional self-harm, subsequent encounter|Toxic effect of venom of brown recluse spider, intentional self-harm, subsequent encounter +C2885576|T037|AB|T63.332D|ICD10CM|Toxic effect of venom of brown recluse spider, slf-hrm, subs|Toxic effect of venom of brown recluse spider, slf-hrm, subs +C2885577|T037|PT|T63.332S|ICD10CM|Toxic effect of venom of brown recluse spider, intentional self-harm, sequela|Toxic effect of venom of brown recluse spider, intentional self-harm, sequela +C2885577|T037|AB|T63.332S|ICD10CM|Toxic effect of venom of brown recluse spider, slf-hrm, sqla|Toxic effect of venom of brown recluse spider, slf-hrm, sqla +C2885578|T037|AB|T63.333|ICD10CM|Toxic effect of venom of brown recluse spider, assault|Toxic effect of venom of brown recluse spider, assault +C2885578|T037|HT|T63.333|ICD10CM|Toxic effect of venom of brown recluse spider, assault|Toxic effect of venom of brown recluse spider, assault +C2885579|T037|AB|T63.333A|ICD10CM|Toxic effect of venom of brown recluse spider, assault, init|Toxic effect of venom of brown recluse spider, assault, init +C2885579|T037|PT|T63.333A|ICD10CM|Toxic effect of venom of brown recluse spider, assault, initial encounter|Toxic effect of venom of brown recluse spider, assault, initial encounter +C2885580|T037|AB|T63.333D|ICD10CM|Toxic effect of venom of brown recluse spider, assault, subs|Toxic effect of venom of brown recluse spider, assault, subs +C2885580|T037|PT|T63.333D|ICD10CM|Toxic effect of venom of brown recluse spider, assault, subsequent encounter|Toxic effect of venom of brown recluse spider, assault, subsequent encounter +C2885581|T037|PT|T63.333S|ICD10CM|Toxic effect of venom of brown recluse spider, assault, sequela|Toxic effect of venom of brown recluse spider, assault, sequela +C2885581|T037|AB|T63.333S|ICD10CM|Toxic effect of venom of brown recluse spider, asslt, sqla|Toxic effect of venom of brown recluse spider, asslt, sqla +C2885582|T037|AB|T63.334|ICD10CM|Toxic effect of venom of brown recluse spider, undetermined|Toxic effect of venom of brown recluse spider, undetermined +C2885582|T037|HT|T63.334|ICD10CM|Toxic effect of venom of brown recluse spider, undetermined|Toxic effect of venom of brown recluse spider, undetermined +C2885583|T037|AB|T63.334A|ICD10CM|Toxic effect of venom of brown recluse spider, undet, init|Toxic effect of venom of brown recluse spider, undet, init +C2885583|T037|PT|T63.334A|ICD10CM|Toxic effect of venom of brown recluse spider, undetermined, initial encounter|Toxic effect of venom of brown recluse spider, undetermined, initial encounter +C2885584|T037|AB|T63.334D|ICD10CM|Toxic effect of venom of brown recluse spider, undet, subs|Toxic effect of venom of brown recluse spider, undet, subs +C2885584|T037|PT|T63.334D|ICD10CM|Toxic effect of venom of brown recluse spider, undetermined, subsequent encounter|Toxic effect of venom of brown recluse spider, undetermined, subsequent encounter +C2885585|T037|AB|T63.334S|ICD10CM|Toxic effect of venom of brown recluse spider, undet, sqla|Toxic effect of venom of brown recluse spider, undet, sqla +C2885585|T037|PT|T63.334S|ICD10CM|Toxic effect of venom of brown recluse spider, undetermined, sequela|Toxic effect of venom of brown recluse spider, undetermined, sequela +C2885586|T037|AB|T63.39|ICD10CM|Toxic effect of venom of other spider|Toxic effect of venom of other spider +C2885586|T037|HT|T63.39|ICD10CM|Toxic effect of venom of other spider|Toxic effect of venom of other spider +C2885587|T037|HT|T63.391|ICD10CM|Toxic effect of venom of other spider, accidental (unintentional)|Toxic effect of venom of other spider, accidental (unintentional) +C2885587|T037|AB|T63.391|ICD10CM|Toxic effect of venom of spider, accidental (unintentional)|Toxic effect of venom of spider, accidental (unintentional) +C2885588|T037|PT|T63.391A|ICD10CM|Toxic effect of venom of other spider, accidental (unintentional), initial encounter|Toxic effect of venom of other spider, accidental (unintentional), initial encounter +C2885588|T037|AB|T63.391A|ICD10CM|Toxic effect of venom of spider, accidental, init|Toxic effect of venom of spider, accidental, init +C2885589|T037|PT|T63.391D|ICD10CM|Toxic effect of venom of other spider, accidental (unintentional), subsequent encounter|Toxic effect of venom of other spider, accidental (unintentional), subsequent encounter +C2885589|T037|AB|T63.391D|ICD10CM|Toxic effect of venom of spider, accidental, subs|Toxic effect of venom of spider, accidental, subs +C2885590|T037|PT|T63.391S|ICD10CM|Toxic effect of venom of other spider, accidental (unintentional), sequela|Toxic effect of venom of other spider, accidental (unintentional), sequela +C2885590|T037|AB|T63.391S|ICD10CM|Toxic effect of venom of spider, accidental, sequela|Toxic effect of venom of spider, accidental, sequela +C2885591|T037|AB|T63.392|ICD10CM|Toxic effect of venom of other spider, intentional self-harm|Toxic effect of venom of other spider, intentional self-harm +C2885591|T037|HT|T63.392|ICD10CM|Toxic effect of venom of other spider, intentional self-harm|Toxic effect of venom of other spider, intentional self-harm +C2885592|T037|PT|T63.392A|ICD10CM|Toxic effect of venom of other spider, intentional self-harm, initial encounter|Toxic effect of venom of other spider, intentional self-harm, initial encounter +C2885592|T037|AB|T63.392A|ICD10CM|Toxic effect of venom of spider, intentional self-harm, init|Toxic effect of venom of spider, intentional self-harm, init +C2885593|T037|PT|T63.392D|ICD10CM|Toxic effect of venom of other spider, intentional self-harm, subsequent encounter|Toxic effect of venom of other spider, intentional self-harm, subsequent encounter +C2885593|T037|AB|T63.392D|ICD10CM|Toxic effect of venom of spider, intentional self-harm, subs|Toxic effect of venom of spider, intentional self-harm, subs +C2885594|T037|PT|T63.392S|ICD10CM|Toxic effect of venom of other spider, intentional self-harm, sequela|Toxic effect of venom of other spider, intentional self-harm, sequela +C2885594|T037|AB|T63.392S|ICD10CM|Toxic effect of venom of spider, self-harm, sequela|Toxic effect of venom of spider, self-harm, sequela +C2885595|T037|AB|T63.393|ICD10CM|Toxic effect of venom of other spider, assault|Toxic effect of venom of other spider, assault +C2885595|T037|HT|T63.393|ICD10CM|Toxic effect of venom of other spider, assault|Toxic effect of venom of other spider, assault +C2885596|T037|AB|T63.393A|ICD10CM|Toxic effect of venom of other spider, assault, init encntr|Toxic effect of venom of other spider, assault, init encntr +C2885596|T037|PT|T63.393A|ICD10CM|Toxic effect of venom of other spider, assault, initial encounter|Toxic effect of venom of other spider, assault, initial encounter +C2885597|T037|AB|T63.393D|ICD10CM|Toxic effect of venom of other spider, assault, subs encntr|Toxic effect of venom of other spider, assault, subs encntr +C2885597|T037|PT|T63.393D|ICD10CM|Toxic effect of venom of other spider, assault, subsequent encounter|Toxic effect of venom of other spider, assault, subsequent encounter +C2885598|T037|AB|T63.393S|ICD10CM|Toxic effect of venom of other spider, assault, sequela|Toxic effect of venom of other spider, assault, sequela +C2885598|T037|PT|T63.393S|ICD10CM|Toxic effect of venom of other spider, assault, sequela|Toxic effect of venom of other spider, assault, sequela +C2885599|T037|AB|T63.394|ICD10CM|Toxic effect of venom of other spider, undetermined|Toxic effect of venom of other spider, undetermined +C2885599|T037|HT|T63.394|ICD10CM|Toxic effect of venom of other spider, undetermined|Toxic effect of venom of other spider, undetermined +C2885600|T037|AB|T63.394A|ICD10CM|Toxic effect of venom of oth spider, undetermined, init|Toxic effect of venom of oth spider, undetermined, init +C2885600|T037|PT|T63.394A|ICD10CM|Toxic effect of venom of other spider, undetermined, initial encounter|Toxic effect of venom of other spider, undetermined, initial encounter +C2885601|T037|AB|T63.394D|ICD10CM|Toxic effect of venom of oth spider, undetermined, subs|Toxic effect of venom of oth spider, undetermined, subs +C2885601|T037|PT|T63.394D|ICD10CM|Toxic effect of venom of other spider, undetermined, subsequent encounter|Toxic effect of venom of other spider, undetermined, subsequent encounter +C2885602|T037|AB|T63.394S|ICD10CM|Toxic effect of venom of other spider, undetermined, sequela|Toxic effect of venom of other spider, undetermined, sequela +C2885602|T037|PT|T63.394S|ICD10CM|Toxic effect of venom of other spider, undetermined, sequela|Toxic effect of venom of other spider, undetermined, sequela +C0497029|T037|HT|T63.4|ICD10CM|Toxic effect of venom of other arthropods|Toxic effect of venom of other arthropods +C0497029|T037|AB|T63.4|ICD10CM|Toxic effect of venom of other arthropods|Toxic effect of venom of other arthropods +C0497029|T037|PX|T63.4|ICD10|Toxic effect of venom of other arthropods|Toxic effect of venom of other arthropods +C0497029|T037|PS|T63.4|ICD10|Venom of other arthropods|Venom of other arthropods +C2885603|T037|AB|T63.41|ICD10CM|Toxic effect of venom of centipedes and venomous millipedes|Toxic effect of venom of centipedes and venomous millipedes +C2885603|T037|HT|T63.41|ICD10CM|Toxic effect of venom of centipedes and venomous millipedes|Toxic effect of venom of centipedes and venomous millipedes +C2885604|T037|AB|T63.411|ICD10CM|Toxic effect of venom of centipede/millipede, accidental|Toxic effect of venom of centipede/millipede, accidental +C2885604|T037|HT|T63.411|ICD10CM|Toxic effect of venom of centipedes and venomous millipedes, accidental (unintentional)|Toxic effect of venom of centipedes and venomous millipedes, accidental (unintentional) +C2885605|T037|AB|T63.411A|ICD10CM|Toxic effect of venom of centipede/millipede, acc, init|Toxic effect of venom of centipede/millipede, acc, init +C2885606|T037|AB|T63.411D|ICD10CM|Toxic effect of venom of centipede/millipede, acc, subs|Toxic effect of venom of centipede/millipede, acc, subs +C2885607|T037|AB|T63.411S|ICD10CM|Toxic effect of venom of centipede/millipede, acc, sequela|Toxic effect of venom of centipede/millipede, acc, sequela +C2885607|T037|PT|T63.411S|ICD10CM|Toxic effect of venom of centipedes and venomous millipedes, accidental (unintentional), sequela|Toxic effect of venom of centipedes and venomous millipedes, accidental (unintentional), sequela +C2885608|T037|AB|T63.412|ICD10CM|Toxic effect of venom of centipede/millipede, self-harm|Toxic effect of venom of centipede/millipede, self-harm +C2885608|T037|HT|T63.412|ICD10CM|Toxic effect of venom of centipedes and venomous millipedes, intentional self-harm|Toxic effect of venom of centipedes and venomous millipedes, intentional self-harm +C2885609|T037|AB|T63.412A|ICD10CM|Toxic effect of venom of centipede/millipede, slf-hrm, init|Toxic effect of venom of centipede/millipede, slf-hrm, init +C2885610|T037|AB|T63.412D|ICD10CM|Toxic effect of venom of centipede/millipede, slf-hrm, subs|Toxic effect of venom of centipede/millipede, slf-hrm, subs +C2885611|T037|AB|T63.412S|ICD10CM|Toxic effect of venom of centipede/millipede, slf-hrm, sqla|Toxic effect of venom of centipede/millipede, slf-hrm, sqla +C2885611|T037|PT|T63.412S|ICD10CM|Toxic effect of venom of centipedes and venomous millipedes, intentional self-harm, sequela|Toxic effect of venom of centipedes and venomous millipedes, intentional self-harm, sequela +C2885612|T037|AB|T63.413|ICD10CM|Toxic effect of venom of centipede/millipede, assault|Toxic effect of venom of centipede/millipede, assault +C2885612|T037|HT|T63.413|ICD10CM|Toxic effect of venom of centipedes and venomous millipedes, assault|Toxic effect of venom of centipedes and venomous millipedes, assault +C2885613|T037|AB|T63.413A|ICD10CM|Toxic effect of venom of centipede/millipede, assault, init|Toxic effect of venom of centipede/millipede, assault, init +C2885613|T037|PT|T63.413A|ICD10CM|Toxic effect of venom of centipedes and venomous millipedes, assault, initial encounter|Toxic effect of venom of centipedes and venomous millipedes, assault, initial encounter +C2885614|T037|AB|T63.413D|ICD10CM|Toxic effect of venom of centipede/millipede, assault, subs|Toxic effect of venom of centipede/millipede, assault, subs +C2885614|T037|PT|T63.413D|ICD10CM|Toxic effect of venom of centipedes and venomous millipedes, assault, subsequent encounter|Toxic effect of venom of centipedes and venomous millipedes, assault, subsequent encounter +C2885615|T037|AB|T63.413S|ICD10CM|Toxic effect of venom of centipede/millipede, asslt, sequela|Toxic effect of venom of centipede/millipede, asslt, sequela +C2885615|T037|PT|T63.413S|ICD10CM|Toxic effect of venom of centipedes and venomous millipedes, assault, sequela|Toxic effect of venom of centipedes and venomous millipedes, assault, sequela +C2885616|T037|AB|T63.414|ICD10CM|Toxic effect of venom of centipede/millipede, undetermined|Toxic effect of venom of centipede/millipede, undetermined +C2885616|T037|HT|T63.414|ICD10CM|Toxic effect of venom of centipedes and venomous millipedes, undetermined|Toxic effect of venom of centipedes and venomous millipedes, undetermined +C2885617|T037|AB|T63.414A|ICD10CM|Toxic effect of venom of centipede/millipede, undet, init|Toxic effect of venom of centipede/millipede, undet, init +C2885617|T037|PT|T63.414A|ICD10CM|Toxic effect of venom of centipedes and venomous millipedes, undetermined, initial encounter|Toxic effect of venom of centipedes and venomous millipedes, undetermined, initial encounter +C2885618|T037|AB|T63.414D|ICD10CM|Toxic effect of venom of centipede/millipede, undet, subs|Toxic effect of venom of centipede/millipede, undet, subs +C2885618|T037|PT|T63.414D|ICD10CM|Toxic effect of venom of centipedes and venomous millipedes, undetermined, subsequent encounter|Toxic effect of venom of centipedes and venomous millipedes, undetermined, subsequent encounter +C2885619|T037|AB|T63.414S|ICD10CM|Toxic effect of venom of centipede/millipede, undet, sequela|Toxic effect of venom of centipede/millipede, undet, sequela +C2885619|T037|PT|T63.414S|ICD10CM|Toxic effect of venom of centipedes and venomous millipedes, undetermined, sequela|Toxic effect of venom of centipedes and venomous millipedes, undetermined, sequela +C2885620|T037|AB|T63.42|ICD10CM|Toxic effect of venom of ants|Toxic effect of venom of ants +C2885620|T037|HT|T63.42|ICD10CM|Toxic effect of venom of ants|Toxic effect of venom of ants +C2885621|T037|AB|T63.421|ICD10CM|Toxic effect of venom of ants, accidental (unintentional)|Toxic effect of venom of ants, accidental (unintentional) +C2885621|T037|HT|T63.421|ICD10CM|Toxic effect of venom of ants, accidental (unintentional)|Toxic effect of venom of ants, accidental (unintentional) +C2885622|T037|PT|T63.421A|ICD10CM|Toxic effect of venom of ants, accidental (unintentional), initial encounter|Toxic effect of venom of ants, accidental (unintentional), initial encounter +C2885622|T037|AB|T63.421A|ICD10CM|Toxic effect of venom of ants, accidental, init|Toxic effect of venom of ants, accidental, init +C2885623|T037|PT|T63.421D|ICD10CM|Toxic effect of venom of ants, accidental (unintentional), subsequent encounter|Toxic effect of venom of ants, accidental (unintentional), subsequent encounter +C2885623|T037|AB|T63.421D|ICD10CM|Toxic effect of venom of ants, accidental, subs|Toxic effect of venom of ants, accidental, subs +C2885624|T037|PT|T63.421S|ICD10CM|Toxic effect of venom of ants, accidental (unintentional), sequela|Toxic effect of venom of ants, accidental (unintentional), sequela +C2885624|T037|AB|T63.421S|ICD10CM|Toxic effect of venom of ants, accidental, sequela|Toxic effect of venom of ants, accidental, sequela +C2885625|T037|AB|T63.422|ICD10CM|Toxic effect of venom of ants, intentional self-harm|Toxic effect of venom of ants, intentional self-harm +C2885625|T037|HT|T63.422|ICD10CM|Toxic effect of venom of ants, intentional self-harm|Toxic effect of venom of ants, intentional self-harm +C2885626|T037|AB|T63.422A|ICD10CM|Toxic effect of venom of ants, intentional self-harm, init|Toxic effect of venom of ants, intentional self-harm, init +C2885626|T037|PT|T63.422A|ICD10CM|Toxic effect of venom of ants, intentional self-harm, initial encounter|Toxic effect of venom of ants, intentional self-harm, initial encounter +C2885627|T037|AB|T63.422D|ICD10CM|Toxic effect of venom of ants, intentional self-harm, subs|Toxic effect of venom of ants, intentional self-harm, subs +C2885627|T037|PT|T63.422D|ICD10CM|Toxic effect of venom of ants, intentional self-harm, subsequent encounter|Toxic effect of venom of ants, intentional self-harm, subsequent encounter +C2885628|T037|PT|T63.422S|ICD10CM|Toxic effect of venom of ants, intentional self-harm, sequela|Toxic effect of venom of ants, intentional self-harm, sequela +C2885628|T037|AB|T63.422S|ICD10CM|Toxic effect of venom of ants, self-harm, sequela|Toxic effect of venom of ants, self-harm, sequela +C2885629|T037|AB|T63.423|ICD10CM|Toxic effect of venom of ants, assault|Toxic effect of venom of ants, assault +C2885629|T037|HT|T63.423|ICD10CM|Toxic effect of venom of ants, assault|Toxic effect of venom of ants, assault +C2885630|T037|AB|T63.423A|ICD10CM|Toxic effect of venom of ants, assault, initial encounter|Toxic effect of venom of ants, assault, initial encounter +C2885630|T037|PT|T63.423A|ICD10CM|Toxic effect of venom of ants, assault, initial encounter|Toxic effect of venom of ants, assault, initial encounter +C2885631|T037|AB|T63.423D|ICD10CM|Toxic effect of venom of ants, assault, subsequent encounter|Toxic effect of venom of ants, assault, subsequent encounter +C2885631|T037|PT|T63.423D|ICD10CM|Toxic effect of venom of ants, assault, subsequent encounter|Toxic effect of venom of ants, assault, subsequent encounter +C2885632|T037|AB|T63.423S|ICD10CM|Toxic effect of venom of ants, assault, sequela|Toxic effect of venom of ants, assault, sequela +C2885632|T037|PT|T63.423S|ICD10CM|Toxic effect of venom of ants, assault, sequela|Toxic effect of venom of ants, assault, sequela +C2885633|T037|AB|T63.424|ICD10CM|Toxic effect of venom of ants, undetermined|Toxic effect of venom of ants, undetermined +C2885633|T037|HT|T63.424|ICD10CM|Toxic effect of venom of ants, undetermined|Toxic effect of venom of ants, undetermined +C2885634|T037|AB|T63.424A|ICD10CM|Toxic effect of venom of ants, undetermined, init encntr|Toxic effect of venom of ants, undetermined, init encntr +C2885634|T037|PT|T63.424A|ICD10CM|Toxic effect of venom of ants, undetermined, initial encounter|Toxic effect of venom of ants, undetermined, initial encounter +C2885635|T037|AB|T63.424D|ICD10CM|Toxic effect of venom of ants, undetermined, subs encntr|Toxic effect of venom of ants, undetermined, subs encntr +C2885635|T037|PT|T63.424D|ICD10CM|Toxic effect of venom of ants, undetermined, subsequent encounter|Toxic effect of venom of ants, undetermined, subsequent encounter +C2885636|T037|AB|T63.424S|ICD10CM|Toxic effect of venom of ants, undetermined, sequela|Toxic effect of venom of ants, undetermined, sequela +C2885636|T037|PT|T63.424S|ICD10CM|Toxic effect of venom of ants, undetermined, sequela|Toxic effect of venom of ants, undetermined, sequela +C2885637|T037|AB|T63.43|ICD10CM|Toxic effect of venom of caterpillars|Toxic effect of venom of caterpillars +C2885637|T037|HT|T63.43|ICD10CM|Toxic effect of venom of caterpillars|Toxic effect of venom of caterpillars +C2885638|T037|AB|T63.431|ICD10CM|Toxic effect of venom of caterpillars, accidental|Toxic effect of venom of caterpillars, accidental +C2885638|T037|HT|T63.431|ICD10CM|Toxic effect of venom of caterpillars, accidental (unintentional)|Toxic effect of venom of caterpillars, accidental (unintentional) +C2885639|T037|PT|T63.431A|ICD10CM|Toxic effect of venom of caterpillars, accidental (unintentional), initial encounter|Toxic effect of venom of caterpillars, accidental (unintentional), initial encounter +C2885639|T037|AB|T63.431A|ICD10CM|Toxic effect of venom of caterpillars, accidental, init|Toxic effect of venom of caterpillars, accidental, init +C2885640|T037|PT|T63.431D|ICD10CM|Toxic effect of venom of caterpillars, accidental (unintentional), subsequent encounter|Toxic effect of venom of caterpillars, accidental (unintentional), subsequent encounter +C2885640|T037|AB|T63.431D|ICD10CM|Toxic effect of venom of caterpillars, accidental, subs|Toxic effect of venom of caterpillars, accidental, subs +C2885641|T037|PT|T63.431S|ICD10CM|Toxic effect of venom of caterpillars, accidental (unintentional), sequela|Toxic effect of venom of caterpillars, accidental (unintentional), sequela +C2885641|T037|AB|T63.431S|ICD10CM|Toxic effect of venom of caterpillars, accidental, sequela|Toxic effect of venom of caterpillars, accidental, sequela +C2885642|T037|AB|T63.432|ICD10CM|Toxic effect of venom of caterpillars, intentional self-harm|Toxic effect of venom of caterpillars, intentional self-harm +C2885642|T037|HT|T63.432|ICD10CM|Toxic effect of venom of caterpillars, intentional self-harm|Toxic effect of venom of caterpillars, intentional self-harm +C2885643|T037|PT|T63.432A|ICD10CM|Toxic effect of venom of caterpillars, intentional self-harm, initial encounter|Toxic effect of venom of caterpillars, intentional self-harm, initial encounter +C2885643|T037|AB|T63.432A|ICD10CM|Toxic effect of venom of caterpillars, self-harm, init|Toxic effect of venom of caterpillars, self-harm, init +C2885644|T037|PT|T63.432D|ICD10CM|Toxic effect of venom of caterpillars, intentional self-harm, subsequent encounter|Toxic effect of venom of caterpillars, intentional self-harm, subsequent encounter +C2885644|T037|AB|T63.432D|ICD10CM|Toxic effect of venom of caterpillars, self-harm, subs|Toxic effect of venom of caterpillars, self-harm, subs +C2885645|T037|PT|T63.432S|ICD10CM|Toxic effect of venom of caterpillars, intentional self-harm, sequela|Toxic effect of venom of caterpillars, intentional self-harm, sequela +C2885645|T037|AB|T63.432S|ICD10CM|Toxic effect of venom of caterpillars, self-harm, sequela|Toxic effect of venom of caterpillars, self-harm, sequela +C2885646|T037|AB|T63.433|ICD10CM|Toxic effect of venom of caterpillars, assault|Toxic effect of venom of caterpillars, assault +C2885646|T037|HT|T63.433|ICD10CM|Toxic effect of venom of caterpillars, assault|Toxic effect of venom of caterpillars, assault +C2885647|T037|AB|T63.433A|ICD10CM|Toxic effect of venom of caterpillars, assault, init encntr|Toxic effect of venom of caterpillars, assault, init encntr +C2885647|T037|PT|T63.433A|ICD10CM|Toxic effect of venom of caterpillars, assault, initial encounter|Toxic effect of venom of caterpillars, assault, initial encounter +C2885648|T037|AB|T63.433D|ICD10CM|Toxic effect of venom of caterpillars, assault, subs encntr|Toxic effect of venom of caterpillars, assault, subs encntr +C2885648|T037|PT|T63.433D|ICD10CM|Toxic effect of venom of caterpillars, assault, subsequent encounter|Toxic effect of venom of caterpillars, assault, subsequent encounter +C2885649|T037|AB|T63.433S|ICD10CM|Toxic effect of venom of caterpillars, assault, sequela|Toxic effect of venom of caterpillars, assault, sequela +C2885649|T037|PT|T63.433S|ICD10CM|Toxic effect of venom of caterpillars, assault, sequela|Toxic effect of venom of caterpillars, assault, sequela +C2885650|T037|AB|T63.434|ICD10CM|Toxic effect of venom of caterpillars, undetermined|Toxic effect of venom of caterpillars, undetermined +C2885650|T037|HT|T63.434|ICD10CM|Toxic effect of venom of caterpillars, undetermined|Toxic effect of venom of caterpillars, undetermined +C2885651|T037|AB|T63.434A|ICD10CM|Toxic effect of venom of caterpillars, undetermined, init|Toxic effect of venom of caterpillars, undetermined, init +C2885651|T037|PT|T63.434A|ICD10CM|Toxic effect of venom of caterpillars, undetermined, initial encounter|Toxic effect of venom of caterpillars, undetermined, initial encounter +C2885652|T037|AB|T63.434D|ICD10CM|Toxic effect of venom of caterpillars, undetermined, subs|Toxic effect of venom of caterpillars, undetermined, subs +C2885652|T037|PT|T63.434D|ICD10CM|Toxic effect of venom of caterpillars, undetermined, subsequent encounter|Toxic effect of venom of caterpillars, undetermined, subsequent encounter +C2885653|T037|AB|T63.434S|ICD10CM|Toxic effect of venom of caterpillars, undetermined, sequela|Toxic effect of venom of caterpillars, undetermined, sequela +C2885653|T037|PT|T63.434S|ICD10CM|Toxic effect of venom of caterpillars, undetermined, sequela|Toxic effect of venom of caterpillars, undetermined, sequela +C2885654|T037|AB|T63.44|ICD10CM|Toxic effect of venom of bees|Toxic effect of venom of bees +C2885654|T037|HT|T63.44|ICD10CM|Toxic effect of venom of bees|Toxic effect of venom of bees +C2885655|T037|AB|T63.441|ICD10CM|Toxic effect of venom of bees, accidental (unintentional)|Toxic effect of venom of bees, accidental (unintentional) +C2885655|T037|HT|T63.441|ICD10CM|Toxic effect of venom of bees, accidental (unintentional)|Toxic effect of venom of bees, accidental (unintentional) +C2885656|T037|PT|T63.441A|ICD10CM|Toxic effect of venom of bees, accidental (unintentional), initial encounter|Toxic effect of venom of bees, accidental (unintentional), initial encounter +C2885656|T037|AB|T63.441A|ICD10CM|Toxic effect of venom of bees, accidental, init|Toxic effect of venom of bees, accidental, init +C2885657|T037|PT|T63.441D|ICD10CM|Toxic effect of venom of bees, accidental (unintentional), subsequent encounter|Toxic effect of venom of bees, accidental (unintentional), subsequent encounter +C2885657|T037|AB|T63.441D|ICD10CM|Toxic effect of venom of bees, accidental, subs|Toxic effect of venom of bees, accidental, subs +C2885658|T037|PT|T63.441S|ICD10CM|Toxic effect of venom of bees, accidental (unintentional), sequela|Toxic effect of venom of bees, accidental (unintentional), sequela +C2885658|T037|AB|T63.441S|ICD10CM|Toxic effect of venom of bees, accidental, sequela|Toxic effect of venom of bees, accidental, sequela +C2885659|T037|AB|T63.442|ICD10CM|Toxic effect of venom of bees, intentional self-harm|Toxic effect of venom of bees, intentional self-harm +C2885659|T037|HT|T63.442|ICD10CM|Toxic effect of venom of bees, intentional self-harm|Toxic effect of venom of bees, intentional self-harm +C2885660|T037|AB|T63.442A|ICD10CM|Toxic effect of venom of bees, intentional self-harm, init|Toxic effect of venom of bees, intentional self-harm, init +C2885660|T037|PT|T63.442A|ICD10CM|Toxic effect of venom of bees, intentional self-harm, initial encounter|Toxic effect of venom of bees, intentional self-harm, initial encounter +C2885661|T037|AB|T63.442D|ICD10CM|Toxic effect of venom of bees, intentional self-harm, subs|Toxic effect of venom of bees, intentional self-harm, subs +C2885661|T037|PT|T63.442D|ICD10CM|Toxic effect of venom of bees, intentional self-harm, subsequent encounter|Toxic effect of venom of bees, intentional self-harm, subsequent encounter +C2885662|T037|PT|T63.442S|ICD10CM|Toxic effect of venom of bees, intentional self-harm, sequela|Toxic effect of venom of bees, intentional self-harm, sequela +C2885662|T037|AB|T63.442S|ICD10CM|Toxic effect of venom of bees, self-harm, sequela|Toxic effect of venom of bees, self-harm, sequela +C2885663|T037|AB|T63.443|ICD10CM|Toxic effect of venom of bees, assault|Toxic effect of venom of bees, assault +C2885663|T037|HT|T63.443|ICD10CM|Toxic effect of venom of bees, assault|Toxic effect of venom of bees, assault +C2885664|T037|AB|T63.443A|ICD10CM|Toxic effect of venom of bees, assault, initial encounter|Toxic effect of venom of bees, assault, initial encounter +C2885664|T037|PT|T63.443A|ICD10CM|Toxic effect of venom of bees, assault, initial encounter|Toxic effect of venom of bees, assault, initial encounter +C2885665|T037|AB|T63.443D|ICD10CM|Toxic effect of venom of bees, assault, subsequent encounter|Toxic effect of venom of bees, assault, subsequent encounter +C2885665|T037|PT|T63.443D|ICD10CM|Toxic effect of venom of bees, assault, subsequent encounter|Toxic effect of venom of bees, assault, subsequent encounter +C2885666|T037|AB|T63.443S|ICD10CM|Toxic effect of venom of bees, assault, sequela|Toxic effect of venom of bees, assault, sequela +C2885666|T037|PT|T63.443S|ICD10CM|Toxic effect of venom of bees, assault, sequela|Toxic effect of venom of bees, assault, sequela +C2885667|T037|AB|T63.444|ICD10CM|Toxic effect of venom of bees, undetermined|Toxic effect of venom of bees, undetermined +C2885667|T037|HT|T63.444|ICD10CM|Toxic effect of venom of bees, undetermined|Toxic effect of venom of bees, undetermined +C2885668|T037|AB|T63.444A|ICD10CM|Toxic effect of venom of bees, undetermined, init encntr|Toxic effect of venom of bees, undetermined, init encntr +C2885668|T037|PT|T63.444A|ICD10CM|Toxic effect of venom of bees, undetermined, initial encounter|Toxic effect of venom of bees, undetermined, initial encounter +C2885669|T037|AB|T63.444D|ICD10CM|Toxic effect of venom of bees, undetermined, subs encntr|Toxic effect of venom of bees, undetermined, subs encntr +C2885669|T037|PT|T63.444D|ICD10CM|Toxic effect of venom of bees, undetermined, subsequent encounter|Toxic effect of venom of bees, undetermined, subsequent encounter +C2885670|T037|AB|T63.444S|ICD10CM|Toxic effect of venom of bees, undetermined, sequela|Toxic effect of venom of bees, undetermined, sequela +C2885670|T037|PT|T63.444S|ICD10CM|Toxic effect of venom of bees, undetermined, sequela|Toxic effect of venom of bees, undetermined, sequela +C2885671|T037|AB|T63.45|ICD10CM|Toxic effect of venom of hornets|Toxic effect of venom of hornets +C2885671|T037|HT|T63.45|ICD10CM|Toxic effect of venom of hornets|Toxic effect of venom of hornets +C2885672|T037|AB|T63.451|ICD10CM|Toxic effect of venom of hornets, accidental (unintentional)|Toxic effect of venom of hornets, accidental (unintentional) +C2885672|T037|HT|T63.451|ICD10CM|Toxic effect of venom of hornets, accidental (unintentional)|Toxic effect of venom of hornets, accidental (unintentional) +C2885673|T037|PT|T63.451A|ICD10CM|Toxic effect of venom of hornets, accidental (unintentional), initial encounter|Toxic effect of venom of hornets, accidental (unintentional), initial encounter +C2885673|T037|AB|T63.451A|ICD10CM|Toxic effect of venom of hornets, accidental, init|Toxic effect of venom of hornets, accidental, init +C2885674|T037|PT|T63.451D|ICD10CM|Toxic effect of venom of hornets, accidental (unintentional), subsequent encounter|Toxic effect of venom of hornets, accidental (unintentional), subsequent encounter +C2885674|T037|AB|T63.451D|ICD10CM|Toxic effect of venom of hornets, accidental, subs|Toxic effect of venom of hornets, accidental, subs +C2885675|T037|PT|T63.451S|ICD10CM|Toxic effect of venom of hornets, accidental (unintentional), sequela|Toxic effect of venom of hornets, accidental (unintentional), sequela +C2885675|T037|AB|T63.451S|ICD10CM|Toxic effect of venom of hornets, accidental, sequela|Toxic effect of venom of hornets, accidental, sequela +C2885676|T037|AB|T63.452|ICD10CM|Toxic effect of venom of hornets, intentional self-harm|Toxic effect of venom of hornets, intentional self-harm +C2885676|T037|HT|T63.452|ICD10CM|Toxic effect of venom of hornets, intentional self-harm|Toxic effect of venom of hornets, intentional self-harm +C2885677|T037|PT|T63.452A|ICD10CM|Toxic effect of venom of hornets, intentional self-harm, initial encounter|Toxic effect of venom of hornets, intentional self-harm, initial encounter +C2885677|T037|AB|T63.452A|ICD10CM|Toxic effect of venom of hornets, self-harm, init|Toxic effect of venom of hornets, self-harm, init +C2885678|T037|PT|T63.452D|ICD10CM|Toxic effect of venom of hornets, intentional self-harm, subsequent encounter|Toxic effect of venom of hornets, intentional self-harm, subsequent encounter +C2885678|T037|AB|T63.452D|ICD10CM|Toxic effect of venom of hornets, self-harm, subs|Toxic effect of venom of hornets, self-harm, subs +C2885679|T037|PT|T63.452S|ICD10CM|Toxic effect of venom of hornets, intentional self-harm, sequela|Toxic effect of venom of hornets, intentional self-harm, sequela +C2885679|T037|AB|T63.452S|ICD10CM|Toxic effect of venom of hornets, self-harm, sequela|Toxic effect of venom of hornets, self-harm, sequela +C2885680|T037|AB|T63.453|ICD10CM|Toxic effect of venom of hornets, assault|Toxic effect of venom of hornets, assault +C2885680|T037|HT|T63.453|ICD10CM|Toxic effect of venom of hornets, assault|Toxic effect of venom of hornets, assault +C2885681|T037|AB|T63.453A|ICD10CM|Toxic effect of venom of hornets, assault, initial encounter|Toxic effect of venom of hornets, assault, initial encounter +C2885681|T037|PT|T63.453A|ICD10CM|Toxic effect of venom of hornets, assault, initial encounter|Toxic effect of venom of hornets, assault, initial encounter +C2885682|T037|AB|T63.453D|ICD10CM|Toxic effect of venom of hornets, assault, subs encntr|Toxic effect of venom of hornets, assault, subs encntr +C2885682|T037|PT|T63.453D|ICD10CM|Toxic effect of venom of hornets, assault, subsequent encounter|Toxic effect of venom of hornets, assault, subsequent encounter +C2885683|T037|AB|T63.453S|ICD10CM|Toxic effect of venom of hornets, assault, sequela|Toxic effect of venom of hornets, assault, sequela +C2885683|T037|PT|T63.453S|ICD10CM|Toxic effect of venom of hornets, assault, sequela|Toxic effect of venom of hornets, assault, sequela +C2885684|T037|AB|T63.454|ICD10CM|Toxic effect of venom of hornets, undetermined|Toxic effect of venom of hornets, undetermined +C2885684|T037|HT|T63.454|ICD10CM|Toxic effect of venom of hornets, undetermined|Toxic effect of venom of hornets, undetermined +C2885685|T037|AB|T63.454A|ICD10CM|Toxic effect of venom of hornets, undetermined, init encntr|Toxic effect of venom of hornets, undetermined, init encntr +C2885685|T037|PT|T63.454A|ICD10CM|Toxic effect of venom of hornets, undetermined, initial encounter|Toxic effect of venom of hornets, undetermined, initial encounter +C2885686|T037|AB|T63.454D|ICD10CM|Toxic effect of venom of hornets, undetermined, subs encntr|Toxic effect of venom of hornets, undetermined, subs encntr +C2885686|T037|PT|T63.454D|ICD10CM|Toxic effect of venom of hornets, undetermined, subsequent encounter|Toxic effect of venom of hornets, undetermined, subsequent encounter +C2885687|T037|AB|T63.454S|ICD10CM|Toxic effect of venom of hornets, undetermined, sequela|Toxic effect of venom of hornets, undetermined, sequela +C2885687|T037|PT|T63.454S|ICD10CM|Toxic effect of venom of hornets, undetermined, sequela|Toxic effect of venom of hornets, undetermined, sequela +C2885689|T037|AB|T63.46|ICD10CM|Toxic effect of venom of wasps|Toxic effect of venom of wasps +C2885689|T037|HT|T63.46|ICD10CM|Toxic effect of venom of wasps|Toxic effect of venom of wasps +C2885688|T037|ET|T63.46|ICD10CM|Toxic effect of yellow jacket|Toxic effect of yellow jacket +C2885690|T037|AB|T63.461|ICD10CM|Toxic effect of venom of wasps, accidental (unintentional)|Toxic effect of venom of wasps, accidental (unintentional) +C2885690|T037|HT|T63.461|ICD10CM|Toxic effect of venom of wasps, accidental (unintentional)|Toxic effect of venom of wasps, accidental (unintentional) +C2885691|T037|PT|T63.461A|ICD10CM|Toxic effect of venom of wasps, accidental (unintentional), initial encounter|Toxic effect of venom of wasps, accidental (unintentional), initial encounter +C2885691|T037|AB|T63.461A|ICD10CM|Toxic effect of venom of wasps, accidental, init|Toxic effect of venom of wasps, accidental, init +C2885692|T037|PT|T63.461D|ICD10CM|Toxic effect of venom of wasps, accidental (unintentional), subsequent encounter|Toxic effect of venom of wasps, accidental (unintentional), subsequent encounter +C2885692|T037|AB|T63.461D|ICD10CM|Toxic effect of venom of wasps, accidental, subs|Toxic effect of venom of wasps, accidental, subs +C2885693|T037|PT|T63.461S|ICD10CM|Toxic effect of venom of wasps, accidental (unintentional), sequela|Toxic effect of venom of wasps, accidental (unintentional), sequela +C2885693|T037|AB|T63.461S|ICD10CM|Toxic effect of venom of wasps, accidental, sequela|Toxic effect of venom of wasps, accidental, sequela +C2885694|T037|AB|T63.462|ICD10CM|Toxic effect of venom of wasps, intentional self-harm|Toxic effect of venom of wasps, intentional self-harm +C2885694|T037|HT|T63.462|ICD10CM|Toxic effect of venom of wasps, intentional self-harm|Toxic effect of venom of wasps, intentional self-harm +C2885695|T037|AB|T63.462A|ICD10CM|Toxic effect of venom of wasps, intentional self-harm, init|Toxic effect of venom of wasps, intentional self-harm, init +C2885695|T037|PT|T63.462A|ICD10CM|Toxic effect of venom of wasps, intentional self-harm, initial encounter|Toxic effect of venom of wasps, intentional self-harm, initial encounter +C2885696|T037|AB|T63.462D|ICD10CM|Toxic effect of venom of wasps, intentional self-harm, subs|Toxic effect of venom of wasps, intentional self-harm, subs +C2885696|T037|PT|T63.462D|ICD10CM|Toxic effect of venom of wasps, intentional self-harm, subsequent encounter|Toxic effect of venom of wasps, intentional self-harm, subsequent encounter +C2885697|T037|PT|T63.462S|ICD10CM|Toxic effect of venom of wasps, intentional self-harm, sequela|Toxic effect of venom of wasps, intentional self-harm, sequela +C2885697|T037|AB|T63.462S|ICD10CM|Toxic effect of venom of wasps, self-harm, sequela|Toxic effect of venom of wasps, self-harm, sequela +C2885698|T037|AB|T63.463|ICD10CM|Toxic effect of venom of wasps, assault|Toxic effect of venom of wasps, assault +C2885698|T037|HT|T63.463|ICD10CM|Toxic effect of venom of wasps, assault|Toxic effect of venom of wasps, assault +C2885699|T037|AB|T63.463A|ICD10CM|Toxic effect of venom of wasps, assault, initial encounter|Toxic effect of venom of wasps, assault, initial encounter +C2885699|T037|PT|T63.463A|ICD10CM|Toxic effect of venom of wasps, assault, initial encounter|Toxic effect of venom of wasps, assault, initial encounter +C2885700|T037|AB|T63.463D|ICD10CM|Toxic effect of venom of wasps, assault, subs encntr|Toxic effect of venom of wasps, assault, subs encntr +C2885700|T037|PT|T63.463D|ICD10CM|Toxic effect of venom of wasps, assault, subsequent encounter|Toxic effect of venom of wasps, assault, subsequent encounter +C2885701|T037|AB|T63.463S|ICD10CM|Toxic effect of venom of wasps, assault, sequela|Toxic effect of venom of wasps, assault, sequela +C2885701|T037|PT|T63.463S|ICD10CM|Toxic effect of venom of wasps, assault, sequela|Toxic effect of venom of wasps, assault, sequela +C2885702|T037|AB|T63.464|ICD10CM|Toxic effect of venom of wasps, undetermined|Toxic effect of venom of wasps, undetermined +C2885702|T037|HT|T63.464|ICD10CM|Toxic effect of venom of wasps, undetermined|Toxic effect of venom of wasps, undetermined +C2885703|T037|AB|T63.464A|ICD10CM|Toxic effect of venom of wasps, undetermined, init encntr|Toxic effect of venom of wasps, undetermined, init encntr +C2885703|T037|PT|T63.464A|ICD10CM|Toxic effect of venom of wasps, undetermined, initial encounter|Toxic effect of venom of wasps, undetermined, initial encounter +C2885704|T037|AB|T63.464D|ICD10CM|Toxic effect of venom of wasps, undetermined, subs encntr|Toxic effect of venom of wasps, undetermined, subs encntr +C2885704|T037|PT|T63.464D|ICD10CM|Toxic effect of venom of wasps, undetermined, subsequent encounter|Toxic effect of venom of wasps, undetermined, subsequent encounter +C2885705|T037|AB|T63.464S|ICD10CM|Toxic effect of venom of wasps, undetermined, sequela|Toxic effect of venom of wasps, undetermined, sequela +C2885705|T037|PT|T63.464S|ICD10CM|Toxic effect of venom of wasps, undetermined, sequela|Toxic effect of venom of wasps, undetermined, sequela +C0497029|T037|AB|T63.48|ICD10CM|Toxic effect of venom of other arthropod|Toxic effect of venom of other arthropod +C0497029|T037|HT|T63.48|ICD10CM|Toxic effect of venom of other arthropod|Toxic effect of venom of other arthropod +C2885706|T037|AB|T63.481|ICD10CM|Toxic effect of venom of arthropod, accidental|Toxic effect of venom of arthropod, accidental +C2885706|T037|HT|T63.481|ICD10CM|Toxic effect of venom of other arthropod, accidental (unintentional)|Toxic effect of venom of other arthropod, accidental (unintentional) +C2885707|T037|AB|T63.481A|ICD10CM|Toxic effect of venom of arthropod, accidental, init|Toxic effect of venom of arthropod, accidental, init +C2885707|T037|PT|T63.481A|ICD10CM|Toxic effect of venom of other arthropod, accidental (unintentional), initial encounter|Toxic effect of venom of other arthropod, accidental (unintentional), initial encounter +C2885708|T037|AB|T63.481D|ICD10CM|Toxic effect of venom of arthropod, accidental, subs|Toxic effect of venom of arthropod, accidental, subs +C2885708|T037|PT|T63.481D|ICD10CM|Toxic effect of venom of other arthropod, accidental (unintentional), subsequent encounter|Toxic effect of venom of other arthropod, accidental (unintentional), subsequent encounter +C2885709|T037|AB|T63.481S|ICD10CM|Toxic effect of venom of arthropod, accidental, sequela|Toxic effect of venom of arthropod, accidental, sequela +C2885709|T037|PT|T63.481S|ICD10CM|Toxic effect of venom of other arthropod, accidental (unintentional), sequela|Toxic effect of venom of other arthropod, accidental (unintentional), sequela +C2885710|T037|AB|T63.482|ICD10CM|Toxic effect of venom of arthropod, intentional self-harm|Toxic effect of venom of arthropod, intentional self-harm +C2885710|T037|HT|T63.482|ICD10CM|Toxic effect of venom of other arthropod, intentional self-harm|Toxic effect of venom of other arthropod, intentional self-harm +C2885711|T037|AB|T63.482A|ICD10CM|Toxic effect of venom of arthropod, self-harm, init|Toxic effect of venom of arthropod, self-harm, init +C2885711|T037|PT|T63.482A|ICD10CM|Toxic effect of venom of other arthropod, intentional self-harm, initial encounter|Toxic effect of venom of other arthropod, intentional self-harm, initial encounter +C2885712|T037|AB|T63.482D|ICD10CM|Toxic effect of venom of arthropod, self-harm, subs|Toxic effect of venom of arthropod, self-harm, subs +C2885712|T037|PT|T63.482D|ICD10CM|Toxic effect of venom of other arthropod, intentional self-harm, subsequent encounter|Toxic effect of venom of other arthropod, intentional self-harm, subsequent encounter +C2885713|T037|AB|T63.482S|ICD10CM|Toxic effect of venom of arthropod, self-harm, sequela|Toxic effect of venom of arthropod, self-harm, sequela +C2885713|T037|PT|T63.482S|ICD10CM|Toxic effect of venom of other arthropod, intentional self-harm, sequela|Toxic effect of venom of other arthropod, intentional self-harm, sequela +C2885714|T037|AB|T63.483|ICD10CM|Toxic effect of venom of other arthropod, assault|Toxic effect of venom of other arthropod, assault +C2885714|T037|HT|T63.483|ICD10CM|Toxic effect of venom of other arthropod, assault|Toxic effect of venom of other arthropod, assault +C2885715|T037|AB|T63.483A|ICD10CM|Toxic effect of venom of oth arthropod, assault, init encntr|Toxic effect of venom of oth arthropod, assault, init encntr +C2885715|T037|PT|T63.483A|ICD10CM|Toxic effect of venom of other arthropod, assault, initial encounter|Toxic effect of venom of other arthropod, assault, initial encounter +C2885716|T037|AB|T63.483D|ICD10CM|Toxic effect of venom of oth arthropod, assault, subs encntr|Toxic effect of venom of oth arthropod, assault, subs encntr +C2885716|T037|PT|T63.483D|ICD10CM|Toxic effect of venom of other arthropod, assault, subsequent encounter|Toxic effect of venom of other arthropod, assault, subsequent encounter +C2885717|T037|AB|T63.483S|ICD10CM|Toxic effect of venom of other arthropod, assault, sequela|Toxic effect of venom of other arthropod, assault, sequela +C2885717|T037|PT|T63.483S|ICD10CM|Toxic effect of venom of other arthropod, assault, sequela|Toxic effect of venom of other arthropod, assault, sequela +C2885718|T037|AB|T63.484|ICD10CM|Toxic effect of venom of other arthropod, undetermined|Toxic effect of venom of other arthropod, undetermined +C2885718|T037|HT|T63.484|ICD10CM|Toxic effect of venom of other arthropod, undetermined|Toxic effect of venom of other arthropod, undetermined +C2885719|T037|AB|T63.484A|ICD10CM|Toxic effect of venom of oth arthropod, undetermined, init|Toxic effect of venom of oth arthropod, undetermined, init +C2885719|T037|PT|T63.484A|ICD10CM|Toxic effect of venom of other arthropod, undetermined, initial encounter|Toxic effect of venom of other arthropod, undetermined, initial encounter +C2885720|T037|AB|T63.484D|ICD10CM|Toxic effect of venom of oth arthropod, undetermined, subs|Toxic effect of venom of oth arthropod, undetermined, subs +C2885720|T037|PT|T63.484D|ICD10CM|Toxic effect of venom of other arthropod, undetermined, subsequent encounter|Toxic effect of venom of other arthropod, undetermined, subsequent encounter +C2885721|T037|AB|T63.484S|ICD10CM|Toxic effect of venom of arthropod, undetermined, sequela|Toxic effect of venom of arthropod, undetermined, sequela +C2885721|T037|PT|T63.484S|ICD10CM|Toxic effect of venom of other arthropod, undetermined, sequela|Toxic effect of venom of other arthropod, undetermined, sequela +C0452124|T037|PT|T63.5|ICD10|Toxic effect of contact with fish|Toxic effect of contact with fish +C2885722|T037|AB|T63.5|ICD10CM|Toxic effect of contact with venomous fish|Toxic effect of contact with venomous fish +C2885722|T037|HT|T63.5|ICD10CM|Toxic effect of contact with venomous fish|Toxic effect of contact with venomous fish +C2885723|T037|AB|T63.51|ICD10CM|Toxic effect of contact with stingray|Toxic effect of contact with stingray +C2885723|T037|HT|T63.51|ICD10CM|Toxic effect of contact with stingray|Toxic effect of contact with stingray +C2885724|T037|AB|T63.511|ICD10CM|Toxic effect of contact w stingray, accidental|Toxic effect of contact w stingray, accidental +C2885724|T037|HT|T63.511|ICD10CM|Toxic effect of contact with stingray, accidental (unintentional)|Toxic effect of contact with stingray, accidental (unintentional) +C2885725|T037|AB|T63.511A|ICD10CM|Toxic effect of contact w stingray, accidental, init|Toxic effect of contact w stingray, accidental, init +C2885725|T037|PT|T63.511A|ICD10CM|Toxic effect of contact with stingray, accidental (unintentional), initial encounter|Toxic effect of contact with stingray, accidental (unintentional), initial encounter +C2885726|T037|AB|T63.511D|ICD10CM|Toxic effect of contact w stingray, accidental, subs|Toxic effect of contact w stingray, accidental, subs +C2885726|T037|PT|T63.511D|ICD10CM|Toxic effect of contact with stingray, accidental (unintentional), subsequent encounter|Toxic effect of contact with stingray, accidental (unintentional), subsequent encounter +C2885727|T037|AB|T63.511S|ICD10CM|Toxic effect of contact w stingray, accidental, sequela|Toxic effect of contact w stingray, accidental, sequela +C2885727|T037|PT|T63.511S|ICD10CM|Toxic effect of contact with stingray, accidental (unintentional), sequela|Toxic effect of contact with stingray, accidental (unintentional), sequela +C2885728|T037|AB|T63.512|ICD10CM|Toxic effect of contact with stingray, intentional self-harm|Toxic effect of contact with stingray, intentional self-harm +C2885728|T037|HT|T63.512|ICD10CM|Toxic effect of contact with stingray, intentional self-harm|Toxic effect of contact with stingray, intentional self-harm +C2885729|T037|AB|T63.512A|ICD10CM|Toxic effect of contact w stingray, self-harm, init|Toxic effect of contact w stingray, self-harm, init +C2885729|T037|PT|T63.512A|ICD10CM|Toxic effect of contact with stingray, intentional self-harm, initial encounter|Toxic effect of contact with stingray, intentional self-harm, initial encounter +C2885730|T037|AB|T63.512D|ICD10CM|Toxic effect of contact w stingray, self-harm, subs|Toxic effect of contact w stingray, self-harm, subs +C2885730|T037|PT|T63.512D|ICD10CM|Toxic effect of contact with stingray, intentional self-harm, subsequent encounter|Toxic effect of contact with stingray, intentional self-harm, subsequent encounter +C2885731|T037|AB|T63.512S|ICD10CM|Toxic effect of contact w stingray, self-harm, sequela|Toxic effect of contact w stingray, self-harm, sequela +C2885731|T037|PT|T63.512S|ICD10CM|Toxic effect of contact with stingray, intentional self-harm, sequela|Toxic effect of contact with stingray, intentional self-harm, sequela +C2885732|T037|AB|T63.513|ICD10CM|Toxic effect of contact with stingray, assault|Toxic effect of contact with stingray, assault +C2885732|T037|HT|T63.513|ICD10CM|Toxic effect of contact with stingray, assault|Toxic effect of contact with stingray, assault +C2885733|T037|AB|T63.513A|ICD10CM|Toxic effect of contact with stingray, assault, init encntr|Toxic effect of contact with stingray, assault, init encntr +C2885733|T037|PT|T63.513A|ICD10CM|Toxic effect of contact with stingray, assault, initial encounter|Toxic effect of contact with stingray, assault, initial encounter +C2885734|T037|AB|T63.513D|ICD10CM|Toxic effect of contact with stingray, assault, subs encntr|Toxic effect of contact with stingray, assault, subs encntr +C2885734|T037|PT|T63.513D|ICD10CM|Toxic effect of contact with stingray, assault, subsequent encounter|Toxic effect of contact with stingray, assault, subsequent encounter +C2885735|T037|AB|T63.513S|ICD10CM|Toxic effect of contact with stingray, assault, sequela|Toxic effect of contact with stingray, assault, sequela +C2885735|T037|PT|T63.513S|ICD10CM|Toxic effect of contact with stingray, assault, sequela|Toxic effect of contact with stingray, assault, sequela +C2885736|T037|AB|T63.514|ICD10CM|Toxic effect of contact with stingray, undetermined|Toxic effect of contact with stingray, undetermined +C2885736|T037|HT|T63.514|ICD10CM|Toxic effect of contact with stingray, undetermined|Toxic effect of contact with stingray, undetermined +C2885737|T037|AB|T63.514A|ICD10CM|Toxic effect of contact w stingray, undetermined, init|Toxic effect of contact w stingray, undetermined, init +C2885737|T037|PT|T63.514A|ICD10CM|Toxic effect of contact with stingray, undetermined, initial encounter|Toxic effect of contact with stingray, undetermined, initial encounter +C2885738|T037|AB|T63.514D|ICD10CM|Toxic effect of contact w stingray, undetermined, subs|Toxic effect of contact w stingray, undetermined, subs +C2885738|T037|PT|T63.514D|ICD10CM|Toxic effect of contact with stingray, undetermined, subsequent encounter|Toxic effect of contact with stingray, undetermined, subsequent encounter +C2885739|T037|AB|T63.514S|ICD10CM|Toxic effect of contact with stingray, undetermined, sequela|Toxic effect of contact with stingray, undetermined, sequela +C2885739|T037|PT|T63.514S|ICD10CM|Toxic effect of contact with stingray, undetermined, sequela|Toxic effect of contact with stingray, undetermined, sequela +C2885740|T037|AB|T63.59|ICD10CM|Toxic effect of contact with other venomous fish|Toxic effect of contact with other venomous fish +C2885740|T037|HT|T63.59|ICD10CM|Toxic effect of contact with other venomous fish|Toxic effect of contact with other venomous fish +C2885741|T037|AB|T63.591|ICD10CM|Toxic effect of contact w oth venomous fish, accidental|Toxic effect of contact w oth venomous fish, accidental +C2885741|T037|HT|T63.591|ICD10CM|Toxic effect of contact with other venomous fish, accidental (unintentional)|Toxic effect of contact with other venomous fish, accidental (unintentional) +C2885742|T037|AB|T63.591A|ICD10CM|Toxic effect of contact w oth venomous fish, acc, init|Toxic effect of contact w oth venomous fish, acc, init +C2885742|T037|PT|T63.591A|ICD10CM|Toxic effect of contact with other venomous fish, accidental (unintentional), initial encounter|Toxic effect of contact with other venomous fish, accidental (unintentional), initial encounter +C2885743|T037|AB|T63.591D|ICD10CM|Toxic effect of contact w oth venomous fish, acc, subs|Toxic effect of contact w oth venomous fish, acc, subs +C2885743|T037|PT|T63.591D|ICD10CM|Toxic effect of contact with other venomous fish, accidental (unintentional), subsequent encounter|Toxic effect of contact with other venomous fish, accidental (unintentional), subsequent encounter +C2885744|T037|AB|T63.591S|ICD10CM|Toxic effect of contact w oth venomous fish, acc, sequela|Toxic effect of contact w oth venomous fish, acc, sequela +C2885744|T037|PT|T63.591S|ICD10CM|Toxic effect of contact with other venomous fish, accidental (unintentional), sequela|Toxic effect of contact with other venomous fish, accidental (unintentional), sequela +C2885745|T037|AB|T63.592|ICD10CM|Toxic effect of contact w oth venomous fish, self-harm|Toxic effect of contact w oth venomous fish, self-harm +C2885745|T037|HT|T63.592|ICD10CM|Toxic effect of contact with other venomous fish, intentional self-harm|Toxic effect of contact with other venomous fish, intentional self-harm +C2885746|T037|AB|T63.592A|ICD10CM|Toxic effect of contact w oth venomous fish, self-harm, init|Toxic effect of contact w oth venomous fish, self-harm, init +C2885746|T037|PT|T63.592A|ICD10CM|Toxic effect of contact with other venomous fish, intentional self-harm, initial encounter|Toxic effect of contact with other venomous fish, intentional self-harm, initial encounter +C2885747|T037|AB|T63.592D|ICD10CM|Toxic effect of contact w oth venomous fish, self-harm, subs|Toxic effect of contact w oth venomous fish, self-harm, subs +C2885747|T037|PT|T63.592D|ICD10CM|Toxic effect of contact with other venomous fish, intentional self-harm, subsequent encounter|Toxic effect of contact with other venomous fish, intentional self-harm, subsequent encounter +C2885748|T037|AB|T63.592S|ICD10CM|Toxic effect of contact w oth venom fish, slf-hrm, sequela|Toxic effect of contact w oth venom fish, slf-hrm, sequela +C2885748|T037|PT|T63.592S|ICD10CM|Toxic effect of contact with other venomous fish, intentional self-harm, sequela|Toxic effect of contact with other venomous fish, intentional self-harm, sequela +C2885749|T037|AB|T63.593|ICD10CM|Toxic effect of contact with other venomous fish, assault|Toxic effect of contact with other venomous fish, assault +C2885749|T037|HT|T63.593|ICD10CM|Toxic effect of contact with other venomous fish, assault|Toxic effect of contact with other venomous fish, assault +C2885750|T037|AB|T63.593A|ICD10CM|Toxic effect of contact w oth venomous fish, assault, init|Toxic effect of contact w oth venomous fish, assault, init +C2885750|T037|PT|T63.593A|ICD10CM|Toxic effect of contact with other venomous fish, assault, initial encounter|Toxic effect of contact with other venomous fish, assault, initial encounter +C2885751|T037|AB|T63.593D|ICD10CM|Toxic effect of contact w oth venomous fish, assault, subs|Toxic effect of contact w oth venomous fish, assault, subs +C2885751|T037|PT|T63.593D|ICD10CM|Toxic effect of contact with other venomous fish, assault, subsequent encounter|Toxic effect of contact with other venomous fish, assault, subsequent encounter +C2885752|T037|AB|T63.593S|ICD10CM|Toxic effect of contact w oth venom fish, assault, sequela|Toxic effect of contact w oth venom fish, assault, sequela +C2885752|T037|PT|T63.593S|ICD10CM|Toxic effect of contact with other venomous fish, assault, sequela|Toxic effect of contact with other venomous fish, assault, sequela +C2885753|T037|AB|T63.594|ICD10CM|Toxic effect of contact with oth venomous fish, undetermined|Toxic effect of contact with oth venomous fish, undetermined +C2885753|T037|HT|T63.594|ICD10CM|Toxic effect of contact with other venomous fish, undetermined|Toxic effect of contact with other venomous fish, undetermined +C2885754|T037|AB|T63.594A|ICD10CM|Toxic effect of contact w oth venomous fish, undet, init|Toxic effect of contact w oth venomous fish, undet, init +C2885754|T037|PT|T63.594A|ICD10CM|Toxic effect of contact with other venomous fish, undetermined, initial encounter|Toxic effect of contact with other venomous fish, undetermined, initial encounter +C2885755|T037|AB|T63.594D|ICD10CM|Toxic effect of contact w oth venomous fish, undet, subs|Toxic effect of contact w oth venomous fish, undet, subs +C2885755|T037|PT|T63.594D|ICD10CM|Toxic effect of contact with other venomous fish, undetermined, subsequent encounter|Toxic effect of contact with other venomous fish, undetermined, subsequent encounter +C2885756|T037|AB|T63.594S|ICD10CM|Toxic effect of contact w oth venomous fish, undet, sequela|Toxic effect of contact w oth venomous fish, undet, sequela +C2885756|T037|PT|T63.594S|ICD10CM|Toxic effect of contact with other venomous fish, undetermined, sequela|Toxic effect of contact with other venomous fish, undetermined, sequela +C0478469|T037|PT|T63.6|ICD10|Toxic effect of contact with other marine animals|Toxic effect of contact with other marine animals +C2885757|T037|HT|T63.6|ICD10CM|Toxic effect of contact with other venomous marine animals|Toxic effect of contact with other venomous marine animals +C2885757|T037|AB|T63.6|ICD10CM|Toxic effect of contact with other venomous marine animals|Toxic effect of contact with other venomous marine animals +C2885758|T037|ET|T63.61|ICD10CM|Toxic effect of contact with bluebottle|Toxic effect of contact with bluebottle +C2885759|T037|AB|T63.61|ICD10CM|Toxic effect of contact with Portugese Man-o-war|Toxic effect of contact with Portugese Man-o-war +C2885759|T037|HT|T63.61|ICD10CM|Toxic effect of contact with Portugese Man-o-war|Toxic effect of contact with Portugese Man-o-war +C2885760|T037|AB|T63.611|ICD10CM|Toxic effect of contact w Portugese Man-o-war, accidental|Toxic effect of contact w Portugese Man-o-war, accidental +C2885760|T037|HT|T63.611|ICD10CM|Toxic effect of contact with Portugese Man-o-war, accidental (unintentional)|Toxic effect of contact with Portugese Man-o-war, accidental (unintentional) +C2885761|T037|AB|T63.611A|ICD10CM|Toxic effect of contact w Portugese Man-o-war, acc, init|Toxic effect of contact w Portugese Man-o-war, acc, init +C2885761|T037|PT|T63.611A|ICD10CM|Toxic effect of contact with Portugese Man-o-war, accidental (unintentional), initial encounter|Toxic effect of contact with Portugese Man-o-war, accidental (unintentional), initial encounter +C2885762|T037|AB|T63.611D|ICD10CM|Toxic effect of contact w Portugese Man-o-war, acc, subs|Toxic effect of contact w Portugese Man-o-war, acc, subs +C2885762|T037|PT|T63.611D|ICD10CM|Toxic effect of contact with Portugese Man-o-war, accidental (unintentional), subsequent encounter|Toxic effect of contact with Portugese Man-o-war, accidental (unintentional), subsequent encounter +C2885763|T037|AB|T63.611S|ICD10CM|Toxic effect of contact w Portugese Man-o-war, acc, sequela|Toxic effect of contact w Portugese Man-o-war, acc, sequela +C2885763|T037|PT|T63.611S|ICD10CM|Toxic effect of contact with Portugese Man-o-war, accidental (unintentional), sequela|Toxic effect of contact with Portugese Man-o-war, accidental (unintentional), sequela +C2885764|T037|AB|T63.612|ICD10CM|Toxic effect of contact w Portugese Man-o-war, self-harm|Toxic effect of contact w Portugese Man-o-war, self-harm +C2885764|T037|HT|T63.612|ICD10CM|Toxic effect of contact with Portugese Man-o-war, intentional self-harm|Toxic effect of contact with Portugese Man-o-war, intentional self-harm +C2885765|T037|AB|T63.612A|ICD10CM|Toxic effect of contact w Portugese Man-o-war, slf-hrm, init|Toxic effect of contact w Portugese Man-o-war, slf-hrm, init +C2885765|T037|PT|T63.612A|ICD10CM|Toxic effect of contact with Portugese Man-o-war, intentional self-harm, initial encounter|Toxic effect of contact with Portugese Man-o-war, intentional self-harm, initial encounter +C2885766|T037|AB|T63.612D|ICD10CM|Toxic effect of contact w Portugese Man-o-war, slf-hrm, subs|Toxic effect of contact w Portugese Man-o-war, slf-hrm, subs +C2885766|T037|PT|T63.612D|ICD10CM|Toxic effect of contact with Portugese Man-o-war, intentional self-harm, subsequent encounter|Toxic effect of contact with Portugese Man-o-war, intentional self-harm, subsequent encounter +C2885767|T037|AB|T63.612S|ICD10CM|Toxic effect of cntct w Portugese Man-o-war, slf-hrm, sqla|Toxic effect of cntct w Portugese Man-o-war, slf-hrm, sqla +C2885767|T037|PT|T63.612S|ICD10CM|Toxic effect of contact with Portugese Man-o-war, intentional self-harm, sequela|Toxic effect of contact with Portugese Man-o-war, intentional self-harm, sequela +C2885768|T037|AB|T63.613|ICD10CM|Toxic effect of contact with Portugese Man-o-war, assault|Toxic effect of contact with Portugese Man-o-war, assault +C2885768|T037|HT|T63.613|ICD10CM|Toxic effect of contact with Portugese Man-o-war, assault|Toxic effect of contact with Portugese Man-o-war, assault +C2885769|T037|AB|T63.613A|ICD10CM|Toxic effect of contact w Portugese Man-o-war, assault, init|Toxic effect of contact w Portugese Man-o-war, assault, init +C2885769|T037|PT|T63.613A|ICD10CM|Toxic effect of contact with Portugese Man-o-war, assault, initial encounter|Toxic effect of contact with Portugese Man-o-war, assault, initial encounter +C2885770|T037|AB|T63.613D|ICD10CM|Toxic effect of contact w Portugese Man-o-war, assault, subs|Toxic effect of contact w Portugese Man-o-war, assault, subs +C2885770|T037|PT|T63.613D|ICD10CM|Toxic effect of contact with Portugese Man-o-war, assault, subsequent encounter|Toxic effect of contact with Portugese Man-o-war, assault, subsequent encounter +C2885771|T037|AB|T63.613S|ICD10CM|Toxic effect of cntct w Portugese Man-o-war, asslt, sequela|Toxic effect of cntct w Portugese Man-o-war, asslt, sequela +C2885771|T037|PT|T63.613S|ICD10CM|Toxic effect of contact with Portugese Man-o-war, assault, sequela|Toxic effect of contact with Portugese Man-o-war, assault, sequela +C2885772|T037|AB|T63.614|ICD10CM|Toxic effect of contact w Portugese Man-o-war, undetermined|Toxic effect of contact w Portugese Man-o-war, undetermined +C2885772|T037|HT|T63.614|ICD10CM|Toxic effect of contact with Portugese Man-o-war, undetermined|Toxic effect of contact with Portugese Man-o-war, undetermined +C2885773|T037|AB|T63.614A|ICD10CM|Toxic effect of contact w Portugese Man-o-war, undet, init|Toxic effect of contact w Portugese Man-o-war, undet, init +C2885773|T037|PT|T63.614A|ICD10CM|Toxic effect of contact with Portugese Man-o-war, undetermined, initial encounter|Toxic effect of contact with Portugese Man-o-war, undetermined, initial encounter +C2885774|T037|AB|T63.614D|ICD10CM|Toxic effect of contact w Portugese Man-o-war, undet, subs|Toxic effect of contact w Portugese Man-o-war, undet, subs +C2885774|T037|PT|T63.614D|ICD10CM|Toxic effect of contact with Portugese Man-o-war, undetermined, subsequent encounter|Toxic effect of contact with Portugese Man-o-war, undetermined, subsequent encounter +C2885775|T037|AB|T63.614S|ICD10CM|Toxic effect of cntct w Portugese Man-o-war, undet, sequela|Toxic effect of cntct w Portugese Man-o-war, undet, sequela +C2885775|T037|PT|T63.614S|ICD10CM|Toxic effect of contact with Portugese Man-o-war, undetermined, sequela|Toxic effect of contact with Portugese Man-o-war, undetermined, sequela +C2885776|T037|AB|T63.62|ICD10CM|Toxic effect of contact with other jellyfish|Toxic effect of contact with other jellyfish +C2885776|T037|HT|T63.62|ICD10CM|Toxic effect of contact with other jellyfish|Toxic effect of contact with other jellyfish +C2885777|T037|AB|T63.621|ICD10CM|Toxic effect of contact w oth jellyfish, accidental|Toxic effect of contact w oth jellyfish, accidental +C2885777|T037|HT|T63.621|ICD10CM|Toxic effect of contact with other jellyfish, accidental (unintentional)|Toxic effect of contact with other jellyfish, accidental (unintentional) +C2885778|T037|AB|T63.621A|ICD10CM|Toxic effect of contact w oth jellyfish, accidental, init|Toxic effect of contact w oth jellyfish, accidental, init +C2885778|T037|PT|T63.621A|ICD10CM|Toxic effect of contact with other jellyfish, accidental (unintentional), initial encounter|Toxic effect of contact with other jellyfish, accidental (unintentional), initial encounter +C2885779|T037|AB|T63.621D|ICD10CM|Toxic effect of contact w oth jellyfish, accidental, subs|Toxic effect of contact w oth jellyfish, accidental, subs +C2885779|T037|PT|T63.621D|ICD10CM|Toxic effect of contact with other jellyfish, accidental (unintentional), subsequent encounter|Toxic effect of contact with other jellyfish, accidental (unintentional), subsequent encounter +C2885780|T037|AB|T63.621S|ICD10CM|Toxic effect of contact w oth jellyfish, acc, sequela|Toxic effect of contact w oth jellyfish, acc, sequela +C2885780|T037|PT|T63.621S|ICD10CM|Toxic effect of contact with other jellyfish, accidental (unintentional), sequela|Toxic effect of contact with other jellyfish, accidental (unintentional), sequela +C2885781|T037|AB|T63.622|ICD10CM|Toxic effect of contact w oth jellyfish, self-harm|Toxic effect of contact w oth jellyfish, self-harm +C2885781|T037|HT|T63.622|ICD10CM|Toxic effect of contact with other jellyfish, intentional self-harm|Toxic effect of contact with other jellyfish, intentional self-harm +C2885782|T037|AB|T63.622A|ICD10CM|Toxic effect of contact w oth jellyfish, self-harm, init|Toxic effect of contact w oth jellyfish, self-harm, init +C2885782|T037|PT|T63.622A|ICD10CM|Toxic effect of contact with other jellyfish, intentional self-harm, initial encounter|Toxic effect of contact with other jellyfish, intentional self-harm, initial encounter +C2885783|T037|AB|T63.622D|ICD10CM|Toxic effect of contact w oth jellyfish, self-harm, subs|Toxic effect of contact w oth jellyfish, self-harm, subs +C2885783|T037|PT|T63.622D|ICD10CM|Toxic effect of contact with other jellyfish, intentional self-harm, subsequent encounter|Toxic effect of contact with other jellyfish, intentional self-harm, subsequent encounter +C2885784|T037|AB|T63.622S|ICD10CM|Toxic effect of contact w oth jellyfish, self-harm, sequela|Toxic effect of contact w oth jellyfish, self-harm, sequela +C2885784|T037|PT|T63.622S|ICD10CM|Toxic effect of contact with other jellyfish, intentional self-harm, sequela|Toxic effect of contact with other jellyfish, intentional self-harm, sequela +C2885785|T037|AB|T63.623|ICD10CM|Toxic effect of contact with other jellyfish, assault|Toxic effect of contact with other jellyfish, assault +C2885785|T037|HT|T63.623|ICD10CM|Toxic effect of contact with other jellyfish, assault|Toxic effect of contact with other jellyfish, assault +C2885786|T037|AB|T63.623A|ICD10CM|Toxic effect of contact w oth jellyfish, assault, init|Toxic effect of contact w oth jellyfish, assault, init +C2885786|T037|PT|T63.623A|ICD10CM|Toxic effect of contact with other jellyfish, assault, initial encounter|Toxic effect of contact with other jellyfish, assault, initial encounter +C2885787|T037|AB|T63.623D|ICD10CM|Toxic effect of contact w oth jellyfish, assault, subs|Toxic effect of contact w oth jellyfish, assault, subs +C2885787|T037|PT|T63.623D|ICD10CM|Toxic effect of contact with other jellyfish, assault, subsequent encounter|Toxic effect of contact with other jellyfish, assault, subsequent encounter +C2885788|T037|AB|T63.623S|ICD10CM|Toxic effect of contact with oth jellyfish, assault, sequela|Toxic effect of contact with oth jellyfish, assault, sequela +C2885788|T037|PT|T63.623S|ICD10CM|Toxic effect of contact with other jellyfish, assault, sequela|Toxic effect of contact with other jellyfish, assault, sequela +C2885789|T037|AB|T63.624|ICD10CM|Toxic effect of contact with other jellyfish, undetermined|Toxic effect of contact with other jellyfish, undetermined +C2885789|T037|HT|T63.624|ICD10CM|Toxic effect of contact with other jellyfish, undetermined|Toxic effect of contact with other jellyfish, undetermined +C2885790|T037|AB|T63.624A|ICD10CM|Toxic effect of contact w oth jellyfish, undetermined, init|Toxic effect of contact w oth jellyfish, undetermined, init +C2885790|T037|PT|T63.624A|ICD10CM|Toxic effect of contact with other jellyfish, undetermined, initial encounter|Toxic effect of contact with other jellyfish, undetermined, initial encounter +C2885791|T037|AB|T63.624D|ICD10CM|Toxic effect of contact w oth jellyfish, undetermined, subs|Toxic effect of contact w oth jellyfish, undetermined, subs +C2885791|T037|PT|T63.624D|ICD10CM|Toxic effect of contact with other jellyfish, undetermined, subsequent encounter|Toxic effect of contact with other jellyfish, undetermined, subsequent encounter +C2885792|T037|AB|T63.624S|ICD10CM|Toxic effect of contact w oth jellyfish, undet, sequela|Toxic effect of contact w oth jellyfish, undet, sequela +C2885792|T037|PT|T63.624S|ICD10CM|Toxic effect of contact with other jellyfish, undetermined, sequela|Toxic effect of contact with other jellyfish, undetermined, sequela +C2885793|T037|AB|T63.63|ICD10CM|Toxic effect of contact with sea anemone|Toxic effect of contact with sea anemone +C2885793|T037|HT|T63.63|ICD10CM|Toxic effect of contact with sea anemone|Toxic effect of contact with sea anemone +C2885794|T037|AB|T63.631|ICD10CM|Toxic effect of contact w sea anemone, accidental|Toxic effect of contact w sea anemone, accidental +C2885794|T037|HT|T63.631|ICD10CM|Toxic effect of contact with sea anemone, accidental (unintentional)|Toxic effect of contact with sea anemone, accidental (unintentional) +C2885795|T037|AB|T63.631A|ICD10CM|Toxic effect of contact w sea anemone, accidental, init|Toxic effect of contact w sea anemone, accidental, init +C2885795|T037|PT|T63.631A|ICD10CM|Toxic effect of contact with sea anemone, accidental (unintentional), initial encounter|Toxic effect of contact with sea anemone, accidental (unintentional), initial encounter +C2885796|T037|AB|T63.631D|ICD10CM|Toxic effect of contact w sea anemone, accidental, subs|Toxic effect of contact w sea anemone, accidental, subs +C2885796|T037|PT|T63.631D|ICD10CM|Toxic effect of contact with sea anemone, accidental (unintentional), subsequent encounter|Toxic effect of contact with sea anemone, accidental (unintentional), subsequent encounter +C2885797|T037|AB|T63.631S|ICD10CM|Toxic effect of contact w sea anemone, accidental, sequela|Toxic effect of contact w sea anemone, accidental, sequela +C2885797|T037|PT|T63.631S|ICD10CM|Toxic effect of contact with sea anemone, accidental (unintentional), sequela|Toxic effect of contact with sea anemone, accidental (unintentional), sequela +C2885798|T037|AB|T63.632|ICD10CM|Toxic effect of contact w sea anemone, intentional self-harm|Toxic effect of contact w sea anemone, intentional self-harm +C2885798|T037|HT|T63.632|ICD10CM|Toxic effect of contact with sea anemone, intentional self-harm|Toxic effect of contact with sea anemone, intentional self-harm +C2885799|T037|AB|T63.632A|ICD10CM|Toxic effect of contact w sea anemone, self-harm, init|Toxic effect of contact w sea anemone, self-harm, init +C2885799|T037|PT|T63.632A|ICD10CM|Toxic effect of contact with sea anemone, intentional self-harm, initial encounter|Toxic effect of contact with sea anemone, intentional self-harm, initial encounter +C2885800|T037|AB|T63.632D|ICD10CM|Toxic effect of contact w sea anemone, self-harm, subs|Toxic effect of contact w sea anemone, self-harm, subs +C2885800|T037|PT|T63.632D|ICD10CM|Toxic effect of contact with sea anemone, intentional self-harm, subsequent encounter|Toxic effect of contact with sea anemone, intentional self-harm, subsequent encounter +C2885801|T037|AB|T63.632S|ICD10CM|Toxic effect of contact w sea anemone, self-harm, sequela|Toxic effect of contact w sea anemone, self-harm, sequela +C2885801|T037|PT|T63.632S|ICD10CM|Toxic effect of contact with sea anemone, intentional self-harm, sequela|Toxic effect of contact with sea anemone, intentional self-harm, sequela +C2885802|T037|AB|T63.633|ICD10CM|Toxic effect of contact with sea anemone, assault|Toxic effect of contact with sea anemone, assault +C2885802|T037|HT|T63.633|ICD10CM|Toxic effect of contact with sea anemone, assault|Toxic effect of contact with sea anemone, assault +C2885803|T037|AB|T63.633A|ICD10CM|Toxic effect of contact w sea anemone, assault, init encntr|Toxic effect of contact w sea anemone, assault, init encntr +C2885803|T037|PT|T63.633A|ICD10CM|Toxic effect of contact with sea anemone, assault, initial encounter|Toxic effect of contact with sea anemone, assault, initial encounter +C2885804|T037|AB|T63.633D|ICD10CM|Toxic effect of contact w sea anemone, assault, subs encntr|Toxic effect of contact w sea anemone, assault, subs encntr +C2885804|T037|PT|T63.633D|ICD10CM|Toxic effect of contact with sea anemone, assault, subsequent encounter|Toxic effect of contact with sea anemone, assault, subsequent encounter +C2885805|T037|AB|T63.633S|ICD10CM|Toxic effect of contact with sea anemone, assault, sequela|Toxic effect of contact with sea anemone, assault, sequela +C2885805|T037|PT|T63.633S|ICD10CM|Toxic effect of contact with sea anemone, assault, sequela|Toxic effect of contact with sea anemone, assault, sequela +C2885806|T037|AB|T63.634|ICD10CM|Toxic effect of contact with sea anemone, undetermined|Toxic effect of contact with sea anemone, undetermined +C2885806|T037|HT|T63.634|ICD10CM|Toxic effect of contact with sea anemone, undetermined|Toxic effect of contact with sea anemone, undetermined +C2885807|T037|AB|T63.634A|ICD10CM|Toxic effect of contact w sea anemone, undetermined, init|Toxic effect of contact w sea anemone, undetermined, init +C2885807|T037|PT|T63.634A|ICD10CM|Toxic effect of contact with sea anemone, undetermined, initial encounter|Toxic effect of contact with sea anemone, undetermined, initial encounter +C2885808|T037|AB|T63.634D|ICD10CM|Toxic effect of contact w sea anemone, undetermined, subs|Toxic effect of contact w sea anemone, undetermined, subs +C2885808|T037|PT|T63.634D|ICD10CM|Toxic effect of contact with sea anemone, undetermined, subsequent encounter|Toxic effect of contact with sea anemone, undetermined, subsequent encounter +C2885809|T037|AB|T63.634S|ICD10CM|Toxic effect of contact w sea anemone, undetermined, sequela|Toxic effect of contact w sea anemone, undetermined, sequela +C2885809|T037|PT|T63.634S|ICD10CM|Toxic effect of contact with sea anemone, undetermined, sequela|Toxic effect of contact with sea anemone, undetermined, sequela +C2885757|T037|AB|T63.69|ICD10CM|Toxic effect of contact with other venomous marine animals|Toxic effect of contact with other venomous marine animals +C2885757|T037|HT|T63.69|ICD10CM|Toxic effect of contact with other venomous marine animals|Toxic effect of contact with other venomous marine animals +C2885810|T037|AB|T63.691|ICD10CM|Toxic effect of contact w oth venomous marine animals, acc|Toxic effect of contact w oth venomous marine animals, acc +C2885810|T037|HT|T63.691|ICD10CM|Toxic effect of contact with other venomous marine animals, accidental (unintentional)|Toxic effect of contact with other venomous marine animals, accidental (unintentional) +C2885811|T037|AB|T63.691A|ICD10CM|Toxic effect of cntct w oth venom marine animals, acc, init|Toxic effect of cntct w oth venom marine animals, acc, init +C2885812|T037|AB|T63.691D|ICD10CM|Toxic effect of cntct w oth venom marine animals, acc, subs|Toxic effect of cntct w oth venom marine animals, acc, subs +C2885813|T037|AB|T63.691S|ICD10CM|Toxic effect of cntct w oth venom marine animals, acc, sqla|Toxic effect of cntct w oth venom marine animals, acc, sqla +C2885813|T037|PT|T63.691S|ICD10CM|Toxic effect of contact with other venomous marine animals, accidental (unintentional), sequela|Toxic effect of contact with other venomous marine animals, accidental (unintentional), sequela +C2885814|T037|AB|T63.692|ICD10CM|Toxic effect of contact w oth venom marine animals, slf-hrm|Toxic effect of contact w oth venom marine animals, slf-hrm +C2885814|T037|HT|T63.692|ICD10CM|Toxic effect of contact with other venomous marine animals, intentional self-harm|Toxic effect of contact with other venomous marine animals, intentional self-harm +C2885815|T037|AB|T63.692A|ICD10CM|Toxic eff of cntct w oth venom marine animals, slf-hrm, init|Toxic eff of cntct w oth venom marine animals, slf-hrm, init +C2885815|T037|PT|T63.692A|ICD10CM|Toxic effect of contact with other venomous marine animals, intentional self-harm, initial encounter|Toxic effect of contact with other venomous marine animals, intentional self-harm, initial encounter +C2885816|T037|AB|T63.692D|ICD10CM|Toxic eff of cntct w oth venom marine animals, slf-hrm, subs|Toxic eff of cntct w oth venom marine animals, slf-hrm, subs +C2885817|T037|AB|T63.692S|ICD10CM|Toxic eff of cntct w oth venom marine animals, slf-hrm, sqla|Toxic eff of cntct w oth venom marine animals, slf-hrm, sqla +C2885817|T037|PT|T63.692S|ICD10CM|Toxic effect of contact with other venomous marine animals, intentional self-harm, sequela|Toxic effect of contact with other venomous marine animals, intentional self-harm, sequela +C2885818|T037|AB|T63.693|ICD10CM|Toxic effect of contact w oth venom marine animals, assault|Toxic effect of contact w oth venom marine animals, assault +C2885818|T037|HT|T63.693|ICD10CM|Toxic effect of contact with other venomous marine animals, assault|Toxic effect of contact with other venomous marine animals, assault +C2885819|T037|AB|T63.693A|ICD10CM|Toxic eff of cntct w oth venom marine animals, asslt, init|Toxic eff of cntct w oth venom marine animals, asslt, init +C2885819|T037|PT|T63.693A|ICD10CM|Toxic effect of contact with other venomous marine animals, assault, initial encounter|Toxic effect of contact with other venomous marine animals, assault, initial encounter +C2885820|T037|AB|T63.693D|ICD10CM|Toxic eff of cntct w oth venom marine animals, asslt, subs|Toxic eff of cntct w oth venom marine animals, asslt, subs +C2885820|T037|PT|T63.693D|ICD10CM|Toxic effect of contact with other venomous marine animals, assault, subsequent encounter|Toxic effect of contact with other venomous marine animals, assault, subsequent encounter +C2885821|T037|AB|T63.693S|ICD10CM|Toxic eff of cntct w oth venom marine animals, asslt, sqla|Toxic eff of cntct w oth venom marine animals, asslt, sqla +C2885821|T037|PT|T63.693S|ICD10CM|Toxic effect of contact with other venomous marine animals, assault, sequela|Toxic effect of contact with other venomous marine animals, assault, sequela +C2885822|T037|AB|T63.694|ICD10CM|Toxic effect of contact w oth venomous marine animals, undet|Toxic effect of contact w oth venomous marine animals, undet +C2885822|T037|HT|T63.694|ICD10CM|Toxic effect of contact with other venomous marine animals, undetermined|Toxic effect of contact with other venomous marine animals, undetermined +C2885823|T037|AB|T63.694A|ICD10CM|Toxic eff of cntct w oth venom marine animals, undet, init|Toxic eff of cntct w oth venom marine animals, undet, init +C2885823|T037|PT|T63.694A|ICD10CM|Toxic effect of contact with other venomous marine animals, undetermined, initial encounter|Toxic effect of contact with other venomous marine animals, undetermined, initial encounter +C2885824|T037|AB|T63.694D|ICD10CM|Toxic eff of cntct w oth venom marine animals, undet, subs|Toxic eff of cntct w oth venom marine animals, undet, subs +C2885824|T037|PT|T63.694D|ICD10CM|Toxic effect of contact with other venomous marine animals, undetermined, subsequent encounter|Toxic effect of contact with other venomous marine animals, undetermined, subsequent encounter +C2885825|T037|AB|T63.694S|ICD10CM|Toxic eff of cntct w oth venom marine animals, undet, sqla|Toxic eff of cntct w oth venom marine animals, undet, sqla +C2885825|T037|PT|T63.694S|ICD10CM|Toxic effect of contact with other venomous marine animals, undetermined, sequela|Toxic effect of contact with other venomous marine animals, undetermined, sequela +C2885826|T037|AB|T63.7|ICD10CM|Toxic effect of contact with venomous plant|Toxic effect of contact with venomous plant +C2885826|T037|HT|T63.7|ICD10CM|Toxic effect of contact with venomous plant|Toxic effect of contact with venomous plant +C2885827|T037|AB|T63.71|ICD10CM|Toxic effect of contact with venomous marine plant|Toxic effect of contact with venomous marine plant +C2885827|T037|HT|T63.71|ICD10CM|Toxic effect of contact with venomous marine plant|Toxic effect of contact with venomous marine plant +C2885828|T037|AB|T63.711|ICD10CM|Toxic effect of contact w venomous marine plant, accidental|Toxic effect of contact w venomous marine plant, accidental +C2885828|T037|HT|T63.711|ICD10CM|Toxic effect of contact with venomous marine plant, accidental (unintentional)|Toxic effect of contact with venomous marine plant, accidental (unintentional) +C2885829|T037|AB|T63.711A|ICD10CM|Toxic effect of contact w venomous marine plant, acc, init|Toxic effect of contact w venomous marine plant, acc, init +C2885829|T037|PT|T63.711A|ICD10CM|Toxic effect of contact with venomous marine plant, accidental (unintentional), initial encounter|Toxic effect of contact with venomous marine plant, accidental (unintentional), initial encounter +C2885830|T037|AB|T63.711D|ICD10CM|Toxic effect of contact w venomous marine plant, acc, subs|Toxic effect of contact w venomous marine plant, acc, subs +C2885830|T037|PT|T63.711D|ICD10CM|Toxic effect of contact with venomous marine plant, accidental (unintentional), subsequent encounter|Toxic effect of contact with venomous marine plant, accidental (unintentional), subsequent encounter +C2885831|T037|AB|T63.711S|ICD10CM|Toxic effect of contact w venom marine plant, acc, sequela|Toxic effect of contact w venom marine plant, acc, sequela +C2885831|T037|PT|T63.711S|ICD10CM|Toxic effect of contact with venomous marine plant, accidental (unintentional), sequela|Toxic effect of contact with venomous marine plant, accidental (unintentional), sequela +C2885832|T037|AB|T63.712|ICD10CM|Toxic effect of contact w venomous marine plant, self-harm|Toxic effect of contact w venomous marine plant, self-harm +C2885832|T037|HT|T63.712|ICD10CM|Toxic effect of contact with venomous marine plant, intentional self-harm|Toxic effect of contact with venomous marine plant, intentional self-harm +C2885833|T037|AB|T63.712A|ICD10CM|Toxic effect of contact w venom marine plant, slf-hrm, init|Toxic effect of contact w venom marine plant, slf-hrm, init +C2885833|T037|PT|T63.712A|ICD10CM|Toxic effect of contact with venomous marine plant, intentional self-harm, initial encounter|Toxic effect of contact with venomous marine plant, intentional self-harm, initial encounter +C2885834|T037|AB|T63.712D|ICD10CM|Toxic effect of contact w venom marine plant, slf-hrm, subs|Toxic effect of contact w venom marine plant, slf-hrm, subs +C2885834|T037|PT|T63.712D|ICD10CM|Toxic effect of contact with venomous marine plant, intentional self-harm, subsequent encounter|Toxic effect of contact with venomous marine plant, intentional self-harm, subsequent encounter +C2885835|T037|AB|T63.712S|ICD10CM|Toxic effect of cntct w venom marine plant, slf-hrm, sequela|Toxic effect of cntct w venom marine plant, slf-hrm, sequela +C2885835|T037|PT|T63.712S|ICD10CM|Toxic effect of contact with venomous marine plant, intentional self-harm, sequela|Toxic effect of contact with venomous marine plant, intentional self-harm, sequela +C2885836|T037|AB|T63.713|ICD10CM|Toxic effect of contact with venomous marine plant, assault|Toxic effect of contact with venomous marine plant, assault +C2885836|T037|HT|T63.713|ICD10CM|Toxic effect of contact with venomous marine plant, assault|Toxic effect of contact with venomous marine plant, assault +C2885837|T037|AB|T63.713A|ICD10CM|Toxic effect of contact w venom marine plant, assault, init|Toxic effect of contact w venom marine plant, assault, init +C2885837|T037|PT|T63.713A|ICD10CM|Toxic effect of contact with venomous marine plant, assault, initial encounter|Toxic effect of contact with venomous marine plant, assault, initial encounter +C2885838|T037|AB|T63.713D|ICD10CM|Toxic effect of contact w venom marine plant, assault, subs|Toxic effect of contact w venom marine plant, assault, subs +C2885838|T037|PT|T63.713D|ICD10CM|Toxic effect of contact with venomous marine plant, assault, subsequent encounter|Toxic effect of contact with venomous marine plant, assault, subsequent encounter +C2885839|T037|AB|T63.713S|ICD10CM|Toxic effect of contact w venom marine plant, asslt, sequela|Toxic effect of contact w venom marine plant, asslt, sequela +C2885839|T037|PT|T63.713S|ICD10CM|Toxic effect of contact with venomous marine plant, assault, sequela|Toxic effect of contact with venomous marine plant, assault, sequela +C2885840|T037|AB|T63.714|ICD10CM|Toxic effect of contact w venomous marine plant, undet|Toxic effect of contact w venomous marine plant, undet +C2885840|T037|HT|T63.714|ICD10CM|Toxic effect of contact with venomous marine plant, undetermined|Toxic effect of contact with venomous marine plant, undetermined +C2885841|T037|AB|T63.714A|ICD10CM|Toxic effect of contact w venomous marine plant, undet, init|Toxic effect of contact w venomous marine plant, undet, init +C2885841|T037|PT|T63.714A|ICD10CM|Toxic effect of contact with venomous marine plant, undetermined, initial encounter|Toxic effect of contact with venomous marine plant, undetermined, initial encounter +C2885842|T037|AB|T63.714D|ICD10CM|Toxic effect of contact w venomous marine plant, undet, subs|Toxic effect of contact w venomous marine plant, undet, subs +C2885842|T037|PT|T63.714D|ICD10CM|Toxic effect of contact with venomous marine plant, undetermined, subsequent encounter|Toxic effect of contact with venomous marine plant, undetermined, subsequent encounter +C2885843|T037|AB|T63.714S|ICD10CM|Toxic effect of contact w venom marine plant, undet, sequela|Toxic effect of contact w venom marine plant, undet, sequela +C2885843|T037|PT|T63.714S|ICD10CM|Toxic effect of contact with venomous marine plant, undetermined, sequela|Toxic effect of contact with venomous marine plant, undetermined, sequela +C2885844|T037|AB|T63.79|ICD10CM|Toxic effect of contact with other venomous plant|Toxic effect of contact with other venomous plant +C2885844|T037|HT|T63.79|ICD10CM|Toxic effect of contact with other venomous plant|Toxic effect of contact with other venomous plant +C2885845|T037|AB|T63.791|ICD10CM|Toxic effect of contact w oth venomous plant, accidental|Toxic effect of contact w oth venomous plant, accidental +C2885845|T037|HT|T63.791|ICD10CM|Toxic effect of contact with other venomous plant, accidental (unintentional)|Toxic effect of contact with other venomous plant, accidental (unintentional) +C2885846|T037|AB|T63.791A|ICD10CM|Toxic effect of contact w oth venomous plant, acc, init|Toxic effect of contact w oth venomous plant, acc, init +C2885846|T037|PT|T63.791A|ICD10CM|Toxic effect of contact with other venomous plant, accidental (unintentional), initial encounter|Toxic effect of contact with other venomous plant, accidental (unintentional), initial encounter +C2885847|T037|AB|T63.791D|ICD10CM|Toxic effect of contact w oth venomous plant, acc, subs|Toxic effect of contact w oth venomous plant, acc, subs +C2885847|T037|PT|T63.791D|ICD10CM|Toxic effect of contact with other venomous plant, accidental (unintentional), subsequent encounter|Toxic effect of contact with other venomous plant, accidental (unintentional), subsequent encounter +C2885848|T037|AB|T63.791S|ICD10CM|Toxic effect of contact w oth venomous plant, acc, sequela|Toxic effect of contact w oth venomous plant, acc, sequela +C2885848|T037|PT|T63.791S|ICD10CM|Toxic effect of contact with other venomous plant, accidental (unintentional), sequela|Toxic effect of contact with other venomous plant, accidental (unintentional), sequela +C2885849|T037|AB|T63.792|ICD10CM|Toxic effect of contact w oth venomous plant, self-harm|Toxic effect of contact w oth venomous plant, self-harm +C2885849|T037|HT|T63.792|ICD10CM|Toxic effect of contact with other venomous plant, intentional self-harm|Toxic effect of contact with other venomous plant, intentional self-harm +C2885850|T037|AB|T63.792A|ICD10CM|Toxic effect of contact w oth venomous plant, slf-hrm, init|Toxic effect of contact w oth venomous plant, slf-hrm, init +C2885850|T037|PT|T63.792A|ICD10CM|Toxic effect of contact with other venomous plant, intentional self-harm, initial encounter|Toxic effect of contact with other venomous plant, intentional self-harm, initial encounter +C2885851|T037|AB|T63.792D|ICD10CM|Toxic effect of contact w oth venomous plant, slf-hrm, subs|Toxic effect of contact w oth venomous plant, slf-hrm, subs +C2885851|T037|PT|T63.792D|ICD10CM|Toxic effect of contact with other venomous plant, intentional self-harm, subsequent encounter|Toxic effect of contact with other venomous plant, intentional self-harm, subsequent encounter +C2885852|T037|AB|T63.792S|ICD10CM|Toxic effect of contact w oth venom plant, slf-hrm, sequela|Toxic effect of contact w oth venom plant, slf-hrm, sequela +C2885852|T037|PT|T63.792S|ICD10CM|Toxic effect of contact with other venomous plant, intentional self-harm, sequela|Toxic effect of contact with other venomous plant, intentional self-harm, sequela +C2885853|T037|AB|T63.793|ICD10CM|Toxic effect of contact with other venomous plant, assault|Toxic effect of contact with other venomous plant, assault +C2885853|T037|HT|T63.793|ICD10CM|Toxic effect of contact with other venomous plant, assault|Toxic effect of contact with other venomous plant, assault +C2885854|T037|AB|T63.793A|ICD10CM|Toxic effect of contact w oth venomous plant, assault, init|Toxic effect of contact w oth venomous plant, assault, init +C2885854|T037|PT|T63.793A|ICD10CM|Toxic effect of contact with other venomous plant, assault, initial encounter|Toxic effect of contact with other venomous plant, assault, initial encounter +C2885855|T037|AB|T63.793D|ICD10CM|Toxic effect of contact w oth venomous plant, assault, subs|Toxic effect of contact w oth venomous plant, assault, subs +C2885855|T037|PT|T63.793D|ICD10CM|Toxic effect of contact with other venomous plant, assault, subsequent encounter|Toxic effect of contact with other venomous plant, assault, subsequent encounter +C2885856|T037|AB|T63.793S|ICD10CM|Toxic effect of contact w oth venom plant, assault, sequela|Toxic effect of contact w oth venom plant, assault, sequela +C2885856|T037|PT|T63.793S|ICD10CM|Toxic effect of contact with other venomous plant, assault, sequela|Toxic effect of contact with other venomous plant, assault, sequela +C2885857|T037|AB|T63.794|ICD10CM|Toxic effect of contact w oth venomous plant, undetermined|Toxic effect of contact w oth venomous plant, undetermined +C2885857|T037|HT|T63.794|ICD10CM|Toxic effect of contact with other venomous plant, undetermined|Toxic effect of contact with other venomous plant, undetermined +C2885858|T037|AB|T63.794A|ICD10CM|Toxic effect of contact w oth venomous plant, undet, init|Toxic effect of contact w oth venomous plant, undet, init +C2885858|T037|PT|T63.794A|ICD10CM|Toxic effect of contact with other venomous plant, undetermined, initial encounter|Toxic effect of contact with other venomous plant, undetermined, initial encounter +C2885859|T037|AB|T63.794D|ICD10CM|Toxic effect of contact w oth venomous plant, undet, subs|Toxic effect of contact w oth venomous plant, undet, subs +C2885859|T037|PT|T63.794D|ICD10CM|Toxic effect of contact with other venomous plant, undetermined, subsequent encounter|Toxic effect of contact with other venomous plant, undetermined, subsequent encounter +C2885860|T037|AB|T63.794S|ICD10CM|Toxic effect of contact w oth venomous plant, undet, sequela|Toxic effect of contact w oth venomous plant, undet, sequela +C2885860|T037|PT|T63.794S|ICD10CM|Toxic effect of contact with other venomous plant, undetermined, sequela|Toxic effect of contact with other venomous plant, undetermined, sequela +C0478470|T037|PT|T63.8|ICD10|Toxic effect of contact with other venomous animals|Toxic effect of contact with other venomous animals +C0478470|T037|HT|T63.8|ICD10CM|Toxic effect of contact with other venomous animals|Toxic effect of contact with other venomous animals +C0478470|T037|AB|T63.8|ICD10CM|Toxic effect of contact with other venomous animals|Toxic effect of contact with other venomous animals +C2885861|T037|AB|T63.81|ICD10CM|Toxic effect of contact with venomous frog|Toxic effect of contact with venomous frog +C2885861|T037|HT|T63.81|ICD10CM|Toxic effect of contact with venomous frog|Toxic effect of contact with venomous frog +C2885862|T037|AB|T63.811|ICD10CM|Toxic effect of contact w venomous frog, accidental|Toxic effect of contact w venomous frog, accidental +C2885862|T037|HT|T63.811|ICD10CM|Toxic effect of contact with venomous frog, accidental (unintentional)|Toxic effect of contact with venomous frog, accidental (unintentional) +C2885863|T037|AB|T63.811A|ICD10CM|Toxic effect of contact w venomous frog, accidental, init|Toxic effect of contact w venomous frog, accidental, init +C2885863|T037|PT|T63.811A|ICD10CM|Toxic effect of contact with venomous frog, accidental (unintentional), initial encounter|Toxic effect of contact with venomous frog, accidental (unintentional), initial encounter +C2885864|T037|AB|T63.811D|ICD10CM|Toxic effect of contact w venomous frog, accidental, subs|Toxic effect of contact w venomous frog, accidental, subs +C2885864|T037|PT|T63.811D|ICD10CM|Toxic effect of contact with venomous frog, accidental (unintentional), subsequent encounter|Toxic effect of contact with venomous frog, accidental (unintentional), subsequent encounter +C2885865|T037|AB|T63.811S|ICD10CM|Toxic effect of contact w venomous frog, acc, sequela|Toxic effect of contact w venomous frog, acc, sequela +C2885865|T037|PT|T63.811S|ICD10CM|Toxic effect of contact with venomous frog, accidental (unintentional), sequela|Toxic effect of contact with venomous frog, accidental (unintentional), sequela +C2885866|T037|AB|T63.812|ICD10CM|Toxic effect of contact w venomous frog, self-harm|Toxic effect of contact w venomous frog, self-harm +C2885866|T037|HT|T63.812|ICD10CM|Toxic effect of contact with venomous frog, intentional self-harm|Toxic effect of contact with venomous frog, intentional self-harm +C2885867|T037|AB|T63.812A|ICD10CM|Toxic effect of contact w venomous frog, self-harm, init|Toxic effect of contact w venomous frog, self-harm, init +C2885867|T037|PT|T63.812A|ICD10CM|Toxic effect of contact with venomous frog, intentional self-harm, initial encounter|Toxic effect of contact with venomous frog, intentional self-harm, initial encounter +C2885868|T037|AB|T63.812D|ICD10CM|Toxic effect of contact w venomous frog, self-harm, subs|Toxic effect of contact w venomous frog, self-harm, subs +C2885868|T037|PT|T63.812D|ICD10CM|Toxic effect of contact with venomous frog, intentional self-harm, subsequent encounter|Toxic effect of contact with venomous frog, intentional self-harm, subsequent encounter +C2885869|T037|AB|T63.812S|ICD10CM|Toxic effect of contact w venomous frog, self-harm, sequela|Toxic effect of contact w venomous frog, self-harm, sequela +C2885869|T037|PT|T63.812S|ICD10CM|Toxic effect of contact with venomous frog, intentional self-harm, sequela|Toxic effect of contact with venomous frog, intentional self-harm, sequela +C2885870|T037|AB|T63.813|ICD10CM|Toxic effect of contact with venomous frog, assault|Toxic effect of contact with venomous frog, assault +C2885870|T037|HT|T63.813|ICD10CM|Toxic effect of contact with venomous frog, assault|Toxic effect of contact with venomous frog, assault +C2885871|T037|AB|T63.813A|ICD10CM|Toxic effect of contact w venomous frog, assault, init|Toxic effect of contact w venomous frog, assault, init +C2885871|T037|PT|T63.813A|ICD10CM|Toxic effect of contact with venomous frog, assault, initial encounter|Toxic effect of contact with venomous frog, assault, initial encounter +C2885872|T037|AB|T63.813D|ICD10CM|Toxic effect of contact w venomous frog, assault, subs|Toxic effect of contact w venomous frog, assault, subs +C2885872|T037|PT|T63.813D|ICD10CM|Toxic effect of contact with venomous frog, assault, subsequent encounter|Toxic effect of contact with venomous frog, assault, subsequent encounter +C2885873|T037|AB|T63.813S|ICD10CM|Toxic effect of contact with venomous frog, assault, sequela|Toxic effect of contact with venomous frog, assault, sequela +C2885873|T037|PT|T63.813S|ICD10CM|Toxic effect of contact with venomous frog, assault, sequela|Toxic effect of contact with venomous frog, assault, sequela +C2885874|T037|AB|T63.814|ICD10CM|Toxic effect of contact with venomous frog, undetermined|Toxic effect of contact with venomous frog, undetermined +C2885874|T037|HT|T63.814|ICD10CM|Toxic effect of contact with venomous frog, undetermined|Toxic effect of contact with venomous frog, undetermined +C2885875|T037|AB|T63.814A|ICD10CM|Toxic effect of contact w venomous frog, undetermined, init|Toxic effect of contact w venomous frog, undetermined, init +C2885875|T037|PT|T63.814A|ICD10CM|Toxic effect of contact with venomous frog, undetermined, initial encounter|Toxic effect of contact with venomous frog, undetermined, initial encounter +C2885876|T037|AB|T63.814D|ICD10CM|Toxic effect of contact w venomous frog, undetermined, subs|Toxic effect of contact w venomous frog, undetermined, subs +C2885876|T037|PT|T63.814D|ICD10CM|Toxic effect of contact with venomous frog, undetermined, subsequent encounter|Toxic effect of contact with venomous frog, undetermined, subsequent encounter +C2885877|T037|AB|T63.814S|ICD10CM|Toxic effect of contact w venomous frog, undet, sequela|Toxic effect of contact w venomous frog, undet, sequela +C2885877|T037|PT|T63.814S|ICD10CM|Toxic effect of contact with venomous frog, undetermined, sequela|Toxic effect of contact with venomous frog, undetermined, sequela +C2885878|T037|AB|T63.82|ICD10CM|Toxic effect of contact with venomous toad|Toxic effect of contact with venomous toad +C2885878|T037|HT|T63.82|ICD10CM|Toxic effect of contact with venomous toad|Toxic effect of contact with venomous toad +C2885879|T037|AB|T63.821|ICD10CM|Toxic effect of contact w venomous toad, accidental|Toxic effect of contact w venomous toad, accidental +C2885879|T037|HT|T63.821|ICD10CM|Toxic effect of contact with venomous toad, accidental (unintentional)|Toxic effect of contact with venomous toad, accidental (unintentional) +C2885880|T037|AB|T63.821A|ICD10CM|Toxic effect of contact w venomous toad, accidental, init|Toxic effect of contact w venomous toad, accidental, init +C2885880|T037|PT|T63.821A|ICD10CM|Toxic effect of contact with venomous toad, accidental (unintentional), initial encounter|Toxic effect of contact with venomous toad, accidental (unintentional), initial encounter +C2885881|T037|AB|T63.821D|ICD10CM|Toxic effect of contact w venomous toad, accidental, subs|Toxic effect of contact w venomous toad, accidental, subs +C2885881|T037|PT|T63.821D|ICD10CM|Toxic effect of contact with venomous toad, accidental (unintentional), subsequent encounter|Toxic effect of contact with venomous toad, accidental (unintentional), subsequent encounter +C2885882|T037|AB|T63.821S|ICD10CM|Toxic effect of contact w venomous toad, acc, sequela|Toxic effect of contact w venomous toad, acc, sequela +C2885882|T037|PT|T63.821S|ICD10CM|Toxic effect of contact with venomous toad, accidental (unintentional), sequela|Toxic effect of contact with venomous toad, accidental (unintentional), sequela +C2885883|T037|AB|T63.822|ICD10CM|Toxic effect of contact w venomous toad, self-harm|Toxic effect of contact w venomous toad, self-harm +C2885883|T037|HT|T63.822|ICD10CM|Toxic effect of contact with venomous toad, intentional self-harm|Toxic effect of contact with venomous toad, intentional self-harm +C2885884|T037|AB|T63.822A|ICD10CM|Toxic effect of contact w venomous toad, self-harm, init|Toxic effect of contact w venomous toad, self-harm, init +C2885884|T037|PT|T63.822A|ICD10CM|Toxic effect of contact with venomous toad, intentional self-harm, initial encounter|Toxic effect of contact with venomous toad, intentional self-harm, initial encounter +C2885885|T037|AB|T63.822D|ICD10CM|Toxic effect of contact w venomous toad, self-harm, subs|Toxic effect of contact w venomous toad, self-harm, subs +C2885885|T037|PT|T63.822D|ICD10CM|Toxic effect of contact with venomous toad, intentional self-harm, subsequent encounter|Toxic effect of contact with venomous toad, intentional self-harm, subsequent encounter +C2885886|T037|AB|T63.822S|ICD10CM|Toxic effect of contact w venomous toad, self-harm, sequela|Toxic effect of contact w venomous toad, self-harm, sequela +C2885886|T037|PT|T63.822S|ICD10CM|Toxic effect of contact with venomous toad, intentional self-harm, sequela|Toxic effect of contact with venomous toad, intentional self-harm, sequela +C2885887|T037|AB|T63.823|ICD10CM|Toxic effect of contact with venomous toad, assault|Toxic effect of contact with venomous toad, assault +C2885887|T037|HT|T63.823|ICD10CM|Toxic effect of contact with venomous toad, assault|Toxic effect of contact with venomous toad, assault +C2885888|T037|AB|T63.823A|ICD10CM|Toxic effect of contact w venomous toad, assault, init|Toxic effect of contact w venomous toad, assault, init +C2885888|T037|PT|T63.823A|ICD10CM|Toxic effect of contact with venomous toad, assault, initial encounter|Toxic effect of contact with venomous toad, assault, initial encounter +C2885889|T037|AB|T63.823D|ICD10CM|Toxic effect of contact w venomous toad, assault, subs|Toxic effect of contact w venomous toad, assault, subs +C2885889|T037|PT|T63.823D|ICD10CM|Toxic effect of contact with venomous toad, assault, subsequent encounter|Toxic effect of contact with venomous toad, assault, subsequent encounter +C2885890|T037|AB|T63.823S|ICD10CM|Toxic effect of contact with venomous toad, assault, sequela|Toxic effect of contact with venomous toad, assault, sequela +C2885890|T037|PT|T63.823S|ICD10CM|Toxic effect of contact with venomous toad, assault, sequela|Toxic effect of contact with venomous toad, assault, sequela +C2885891|T037|AB|T63.824|ICD10CM|Toxic effect of contact with venomous toad, undetermined|Toxic effect of contact with venomous toad, undetermined +C2885891|T037|HT|T63.824|ICD10CM|Toxic effect of contact with venomous toad, undetermined|Toxic effect of contact with venomous toad, undetermined +C2885892|T037|AB|T63.824A|ICD10CM|Toxic effect of contact w venomous toad, undetermined, init|Toxic effect of contact w venomous toad, undetermined, init +C2885892|T037|PT|T63.824A|ICD10CM|Toxic effect of contact with venomous toad, undetermined, initial encounter|Toxic effect of contact with venomous toad, undetermined, initial encounter +C2885893|T037|AB|T63.824D|ICD10CM|Toxic effect of contact w venomous toad, undetermined, subs|Toxic effect of contact w venomous toad, undetermined, subs +C2885893|T037|PT|T63.824D|ICD10CM|Toxic effect of contact with venomous toad, undetermined, subsequent encounter|Toxic effect of contact with venomous toad, undetermined, subsequent encounter +C2885894|T037|AB|T63.824S|ICD10CM|Toxic effect of contact w venomous toad, undet, sequela|Toxic effect of contact w venomous toad, undet, sequela +C2885894|T037|PT|T63.824S|ICD10CM|Toxic effect of contact with venomous toad, undetermined, sequela|Toxic effect of contact with venomous toad, undetermined, sequela +C2885895|T037|AB|T63.83|ICD10CM|Toxic effect of contact with other venomous amphibian|Toxic effect of contact with other venomous amphibian +C2885895|T037|HT|T63.83|ICD10CM|Toxic effect of contact with other venomous amphibian|Toxic effect of contact with other venomous amphibian +C2885896|T037|AB|T63.831|ICD10CM|Toxic effect of contact w oth venomous amphibian, acc|Toxic effect of contact w oth venomous amphibian, acc +C2885896|T037|HT|T63.831|ICD10CM|Toxic effect of contact with other venomous amphibian, accidental (unintentional)|Toxic effect of contact with other venomous amphibian, accidental (unintentional) +C2885897|T037|AB|T63.831A|ICD10CM|Toxic effect of contact w oth venomous amphibian, acc, init|Toxic effect of contact w oth venomous amphibian, acc, init +C2885897|T037|PT|T63.831A|ICD10CM|Toxic effect of contact with other venomous amphibian, accidental (unintentional), initial encounter|Toxic effect of contact with other venomous amphibian, accidental (unintentional), initial encounter +C2885898|T037|AB|T63.831D|ICD10CM|Toxic effect of contact w oth venomous amphibian, acc, subs|Toxic effect of contact w oth venomous amphibian, acc, subs +C2885899|T037|AB|T63.831S|ICD10CM|Toxic effect of contact w oth venomous amphib, acc, sequela|Toxic effect of contact w oth venomous amphib, acc, sequela +C2885899|T037|PT|T63.831S|ICD10CM|Toxic effect of contact with other venomous amphibian, accidental (unintentional), sequela|Toxic effect of contact with other venomous amphibian, accidental (unintentional), sequela +C2885900|T037|AB|T63.832|ICD10CM|Toxic effect of contact w oth venomous amphibian, self-harm|Toxic effect of contact w oth venomous amphibian, self-harm +C2885900|T037|HT|T63.832|ICD10CM|Toxic effect of contact with other venomous amphibian, intentional self-harm|Toxic effect of contact with other venomous amphibian, intentional self-harm +C2885901|T037|AB|T63.832A|ICD10CM|Toxic effect of contact w oth venomous amphib, slf-hrm, init|Toxic effect of contact w oth venomous amphib, slf-hrm, init +C2885901|T037|PT|T63.832A|ICD10CM|Toxic effect of contact with other venomous amphibian, intentional self-harm, initial encounter|Toxic effect of contact with other venomous amphibian, intentional self-harm, initial encounter +C2885902|T037|AB|T63.832D|ICD10CM|Toxic effect of contact w oth venomous amphib, slf-hrm, subs|Toxic effect of contact w oth venomous amphib, slf-hrm, subs +C2885902|T037|PT|T63.832D|ICD10CM|Toxic effect of contact with other venomous amphibian, intentional self-harm, subsequent encounter|Toxic effect of contact with other venomous amphibian, intentional self-harm, subsequent encounter +C2885903|T037|AB|T63.832S|ICD10CM|Toxic effect of contact w oth venom amphib, slf-hrm, sequela|Toxic effect of contact w oth venom amphib, slf-hrm, sequela +C2885903|T037|PT|T63.832S|ICD10CM|Toxic effect of contact with other venomous amphibian, intentional self-harm, sequela|Toxic effect of contact with other venomous amphibian, intentional self-harm, sequela +C2885904|T037|AB|T63.833|ICD10CM|Toxic effect of contact with oth venomous amphibian, assault|Toxic effect of contact with oth venomous amphibian, assault +C2885904|T037|HT|T63.833|ICD10CM|Toxic effect of contact with other venomous amphibian, assault|Toxic effect of contact with other venomous amphibian, assault +C2885905|T037|AB|T63.833A|ICD10CM|Toxic effect of contact w oth venomous amphib, assault, init|Toxic effect of contact w oth venomous amphib, assault, init +C2885905|T037|PT|T63.833A|ICD10CM|Toxic effect of contact with other venomous amphibian, assault, initial encounter|Toxic effect of contact with other venomous amphibian, assault, initial encounter +C2885906|T037|AB|T63.833D|ICD10CM|Toxic effect of contact w oth venomous amphib, assault, subs|Toxic effect of contact w oth venomous amphib, assault, subs +C2885906|T037|PT|T63.833D|ICD10CM|Toxic effect of contact with other venomous amphibian, assault, subsequent encounter|Toxic effect of contact with other venomous amphibian, assault, subsequent encounter +C2885907|T037|AB|T63.833S|ICD10CM|Toxic effect of contact w oth venom amphib, assault, sequela|Toxic effect of contact w oth venom amphib, assault, sequela +C2885907|T037|PT|T63.833S|ICD10CM|Toxic effect of contact with other venomous amphibian, assault, sequela|Toxic effect of contact with other venomous amphibian, assault, sequela +C2885908|T037|AB|T63.834|ICD10CM|Toxic effect of contact w oth venomous amphibian, undet|Toxic effect of contact w oth venomous amphibian, undet +C2885908|T037|HT|T63.834|ICD10CM|Toxic effect of contact with other venomous amphibian, undetermined|Toxic effect of contact with other venomous amphibian, undetermined +C2885909|T037|AB|T63.834A|ICD10CM|Toxic effect of contact w oth venomous amphib, undet, init|Toxic effect of contact w oth venomous amphib, undet, init +C2885909|T037|PT|T63.834A|ICD10CM|Toxic effect of contact with other venomous amphibian, undetermined, initial encounter|Toxic effect of contact with other venomous amphibian, undetermined, initial encounter +C2885910|T037|AB|T63.834D|ICD10CM|Toxic effect of contact w oth venomous amphib, undet, subs|Toxic effect of contact w oth venomous amphib, undet, subs +C2885910|T037|PT|T63.834D|ICD10CM|Toxic effect of contact with other venomous amphibian, undetermined, subsequent encounter|Toxic effect of contact with other venomous amphibian, undetermined, subsequent encounter +C2885911|T037|AB|T63.834S|ICD10CM|Toxic effect of contact w oth venom amphib, undet, sequela|Toxic effect of contact w oth venom amphib, undet, sequela +C2885911|T037|PT|T63.834S|ICD10CM|Toxic effect of contact with other venomous amphibian, undetermined, sequela|Toxic effect of contact with other venomous amphibian, undetermined, sequela +C0478470|T037|HT|T63.89|ICD10CM|Toxic effect of contact with other venomous animals|Toxic effect of contact with other venomous animals +C0478470|T037|AB|T63.89|ICD10CM|Toxic effect of contact with other venomous animals|Toxic effect of contact with other venomous animals +C2885912|T037|AB|T63.891|ICD10CM|Toxic effect of contact w oth venomous animals, accidental|Toxic effect of contact w oth venomous animals, accidental +C2885912|T037|HT|T63.891|ICD10CM|Toxic effect of contact with other venomous animals, accidental (unintentional)|Toxic effect of contact with other venomous animals, accidental (unintentional) +C2885913|T037|AB|T63.891A|ICD10CM|Toxic effect of contact w oth venomous animals, acc, init|Toxic effect of contact w oth venomous animals, acc, init +C2885913|T037|PT|T63.891A|ICD10CM|Toxic effect of contact with other venomous animals, accidental (unintentional), initial encounter|Toxic effect of contact with other venomous animals, accidental (unintentional), initial encounter +C2885914|T037|AB|T63.891D|ICD10CM|Toxic effect of contact w oth venomous animals, acc, subs|Toxic effect of contact w oth venomous animals, acc, subs +C2885915|T037|AB|T63.891S|ICD10CM|Toxic effect of contact w oth venom animals, acc, sequela|Toxic effect of contact w oth venom animals, acc, sequela +C2885915|T037|PT|T63.891S|ICD10CM|Toxic effect of contact with other venomous animals, accidental (unintentional), sequela|Toxic effect of contact with other venomous animals, accidental (unintentional), sequela +C2885916|T037|AB|T63.892|ICD10CM|Toxic effect of contact w oth venomous animals, self-harm|Toxic effect of contact w oth venomous animals, self-harm +C2885916|T037|HT|T63.892|ICD10CM|Toxic effect of contact with other venomous animals, intentional self-harm|Toxic effect of contact with other venomous animals, intentional self-harm +C2885917|T037|AB|T63.892A|ICD10CM|Toxic effect of contact w oth venom animals, slf-hrm, init|Toxic effect of contact w oth venom animals, slf-hrm, init +C2885917|T037|PT|T63.892A|ICD10CM|Toxic effect of contact with other venomous animals, intentional self-harm, initial encounter|Toxic effect of contact with other venomous animals, intentional self-harm, initial encounter +C2885918|T037|AB|T63.892D|ICD10CM|Toxic effect of contact w oth venom animals, slf-hrm, subs|Toxic effect of contact w oth venom animals, slf-hrm, subs +C2885918|T037|PT|T63.892D|ICD10CM|Toxic effect of contact with other venomous animals, intentional self-harm, subsequent encounter|Toxic effect of contact with other venomous animals, intentional self-harm, subsequent encounter +C2885919|T037|AB|T63.892S|ICD10CM|Toxic effect of cntct w oth venom animals, slf-hrm, sequela|Toxic effect of cntct w oth venom animals, slf-hrm, sequela +C2885919|T037|PT|T63.892S|ICD10CM|Toxic effect of contact with other venomous animals, intentional self-harm, sequela|Toxic effect of contact with other venomous animals, intentional self-harm, sequela +C2885920|T037|AB|T63.893|ICD10CM|Toxic effect of contact with other venomous animals, assault|Toxic effect of contact with other venomous animals, assault +C2885920|T037|HT|T63.893|ICD10CM|Toxic effect of contact with other venomous animals, assault|Toxic effect of contact with other venomous animals, assault +C2885921|T037|AB|T63.893A|ICD10CM|Toxic effect of contact w oth venom animals, assault, init|Toxic effect of contact w oth venom animals, assault, init +C2885921|T037|PT|T63.893A|ICD10CM|Toxic effect of contact with other venomous animals, assault, initial encounter|Toxic effect of contact with other venomous animals, assault, initial encounter +C2885922|T037|AB|T63.893D|ICD10CM|Toxic effect of contact w oth venom animals, assault, subs|Toxic effect of contact w oth venom animals, assault, subs +C2885922|T037|PT|T63.893D|ICD10CM|Toxic effect of contact with other venomous animals, assault, subsequent encounter|Toxic effect of contact with other venomous animals, assault, subsequent encounter +C2885923|T037|AB|T63.893S|ICD10CM|Toxic effect of contact w oth venom animals, asslt, sequela|Toxic effect of contact w oth venom animals, asslt, sequela +C2885923|T037|PT|T63.893S|ICD10CM|Toxic effect of contact with other venomous animals, assault, sequela|Toxic effect of contact with other venomous animals, assault, sequela +C2885924|T037|AB|T63.894|ICD10CM|Toxic effect of contact w oth venomous animals, undetermined|Toxic effect of contact w oth venomous animals, undetermined +C2885924|T037|HT|T63.894|ICD10CM|Toxic effect of contact with other venomous animals, undetermined|Toxic effect of contact with other venomous animals, undetermined +C2885925|T037|AB|T63.894A|ICD10CM|Toxic effect of contact w oth venomous animals, undet, init|Toxic effect of contact w oth venomous animals, undet, init +C2885925|T037|PT|T63.894A|ICD10CM|Toxic effect of contact with other venomous animals, undetermined, initial encounter|Toxic effect of contact with other venomous animals, undetermined, initial encounter +C2885926|T037|AB|T63.894D|ICD10CM|Toxic effect of contact w oth venomous animals, undet, subs|Toxic effect of contact w oth venomous animals, undet, subs +C2885926|T037|PT|T63.894D|ICD10CM|Toxic effect of contact with other venomous animals, undetermined, subsequent encounter|Toxic effect of contact with other venomous animals, undetermined, subsequent encounter +C2885927|T037|AB|T63.894S|ICD10CM|Toxic effect of contact w oth venom animals, undet, sequela|Toxic effect of contact w oth venom animals, undet, sequela +C2885927|T037|PT|T63.894S|ICD10CM|Toxic effect of contact with other venomous animals, undetermined, sequela|Toxic effect of contact with other venomous animals, undetermined, sequela +C0496111|T037|HT|T63.9|ICD10CM|Toxic effect of contact with unspecified venomous animal|Toxic effect of contact with unspecified venomous animal +C0496111|T037|AB|T63.9|ICD10CM|Toxic effect of contact with unspecified venomous animal|Toxic effect of contact with unspecified venomous animal +C0496111|T037|PT|T63.9|ICD10|Toxic effect of contact with unspecified venomous animal|Toxic effect of contact with unspecified venomous animal +C2885928|T037|AB|T63.91|ICD10CM|Toxic effect of contact w unsp venomous animal, accidental|Toxic effect of contact w unsp venomous animal, accidental +C2885928|T037|HT|T63.91|ICD10CM|Toxic effect of contact with unspecified venomous animal, accidental (unintentional)|Toxic effect of contact with unspecified venomous animal, accidental (unintentional) +C2885929|T037|AB|T63.91XA|ICD10CM|Toxic effect of contact w unsp venomous animal, acc, init|Toxic effect of contact w unsp venomous animal, acc, init +C2885930|T037|AB|T63.91XD|ICD10CM|Toxic effect of contact w unsp venomous animal, acc, subs|Toxic effect of contact w unsp venomous animal, acc, subs +C2885931|T037|AB|T63.91XS|ICD10CM|Toxic effect of contact w unsp venom animal, acc, sequela|Toxic effect of contact w unsp venom animal, acc, sequela +C2885931|T037|PT|T63.91XS|ICD10CM|Toxic effect of contact with unspecified venomous animal, accidental (unintentional), sequela|Toxic effect of contact with unspecified venomous animal, accidental (unintentional), sequela +C2885932|T037|AB|T63.92|ICD10CM|Toxic effect of contact w unsp venomous animal, self-harm|Toxic effect of contact w unsp venomous animal, self-harm +C2885932|T037|HT|T63.92|ICD10CM|Toxic effect of contact with unspecified venomous animal, intentional self-harm|Toxic effect of contact with unspecified venomous animal, intentional self-harm +C2885933|T037|AB|T63.92XA|ICD10CM|Toxic effect of contact w unsp venom animal, slf-hrm, init|Toxic effect of contact w unsp venom animal, slf-hrm, init +C2885933|T037|PT|T63.92XA|ICD10CM|Toxic effect of contact with unspecified venomous animal, intentional self-harm, initial encounter|Toxic effect of contact with unspecified venomous animal, intentional self-harm, initial encounter +C2885934|T037|AB|T63.92XD|ICD10CM|Toxic effect of contact w unsp venom animal, slf-hrm, subs|Toxic effect of contact w unsp venom animal, slf-hrm, subs +C2885935|T037|AB|T63.92XS|ICD10CM|Toxic effect of cntct w unsp venom animal, slf-hrm, sequela|Toxic effect of cntct w unsp venom animal, slf-hrm, sequela +C2885935|T037|PT|T63.92XS|ICD10CM|Toxic effect of contact with unspecified venomous animal, intentional self-harm, sequela|Toxic effect of contact with unspecified venomous animal, intentional self-harm, sequela +C2885936|T037|AB|T63.93|ICD10CM|Toxic effect of contact with unsp venomous animal, assault|Toxic effect of contact with unsp venomous animal, assault +C2885936|T037|HT|T63.93|ICD10CM|Toxic effect of contact with unspecified venomous animal, assault|Toxic effect of contact with unspecified venomous animal, assault +C2885937|T037|AB|T63.93XA|ICD10CM|Toxic effect of contact w unsp venom animal, assault, init|Toxic effect of contact w unsp venom animal, assault, init +C2885937|T037|PT|T63.93XA|ICD10CM|Toxic effect of contact with unspecified venomous animal, assault, initial encounter|Toxic effect of contact with unspecified venomous animal, assault, initial encounter +C2885938|T037|AB|T63.93XD|ICD10CM|Toxic effect of contact w unsp venom animal, assault, subs|Toxic effect of contact w unsp venom animal, assault, subs +C2885938|T037|PT|T63.93XD|ICD10CM|Toxic effect of contact with unspecified venomous animal, assault, subsequent encounter|Toxic effect of contact with unspecified venomous animal, assault, subsequent encounter +C2885939|T037|AB|T63.93XS|ICD10CM|Toxic effect of contact w unsp venom animal, asslt, sequela|Toxic effect of contact w unsp venom animal, asslt, sequela +C2885939|T037|PT|T63.93XS|ICD10CM|Toxic effect of contact with unspecified venomous animal, assault, sequela|Toxic effect of contact with unspecified venomous animal, assault, sequela +C2885940|T037|AB|T63.94|ICD10CM|Toxic effect of contact w unsp venomous animal, undetermined|Toxic effect of contact w unsp venomous animal, undetermined +C2885940|T037|HT|T63.94|ICD10CM|Toxic effect of contact with unspecified venomous animal, undetermined|Toxic effect of contact with unspecified venomous animal, undetermined +C2885941|T037|AB|T63.94XA|ICD10CM|Toxic effect of contact w unsp venomous animal, undet, init|Toxic effect of contact w unsp venomous animal, undet, init +C2885941|T037|PT|T63.94XA|ICD10CM|Toxic effect of contact with unspecified venomous animal, undetermined, initial encounter|Toxic effect of contact with unspecified venomous animal, undetermined, initial encounter +C2885942|T037|AB|T63.94XD|ICD10CM|Toxic effect of contact w unsp venomous animal, undet, subs|Toxic effect of contact w unsp venomous animal, undet, subs +C2885942|T037|PT|T63.94XD|ICD10CM|Toxic effect of contact with unspecified venomous animal, undetermined, subsequent encounter|Toxic effect of contact with unspecified venomous animal, undetermined, subsequent encounter +C2885943|T037|AB|T63.94XS|ICD10CM|Toxic effect of contact w unsp venom animal, undet, sequela|Toxic effect of contact w unsp venom animal, undet, sequela +C2885943|T037|PT|T63.94XS|ICD10CM|Toxic effect of contact with unspecified venomous animal, undetermined, sequela|Toxic effect of contact with unspecified venomous animal, undetermined, sequela +C0161732|T037|AB|T64|ICD10CM|Toxic effect of aflatoxin and oth mycotoxin food contamnt|Toxic effect of aflatoxin and oth mycotoxin food contamnt +C0161732|T037|HT|T64|ICD10CM|Toxic effect of aflatoxin and other mycotoxin food contaminants|Toxic effect of aflatoxin and other mycotoxin food contaminants +C0161732|T037|PT|T64|ICD10|Toxic effect of aflatoxin and other mycotoxin food contaminants|Toxic effect of aflatoxin and other mycotoxin food contaminants +C0274911|T037|HT|T64.0|ICD10CM|Toxic effect of aflatoxin|Toxic effect of aflatoxin +C0274911|T037|AB|T64.0|ICD10CM|Toxic effect of aflatoxin|Toxic effect of aflatoxin +C2885944|T037|AB|T64.01|ICD10CM|Toxic effect of aflatoxin, accidental (unintentional)|Toxic effect of aflatoxin, accidental (unintentional) +C2885944|T037|HT|T64.01|ICD10CM|Toxic effect of aflatoxin, accidental (unintentional)|Toxic effect of aflatoxin, accidental (unintentional) +C2885945|T037|AB|T64.01XA|ICD10CM|Toxic effect of aflatoxin, accidental (unintentional), init|Toxic effect of aflatoxin, accidental (unintentional), init +C2885945|T037|PT|T64.01XA|ICD10CM|Toxic effect of aflatoxin, accidental (unintentional), initial encounter|Toxic effect of aflatoxin, accidental (unintentional), initial encounter +C2885946|T037|AB|T64.01XD|ICD10CM|Toxic effect of aflatoxin, accidental (unintentional), subs|Toxic effect of aflatoxin, accidental (unintentional), subs +C2885946|T037|PT|T64.01XD|ICD10CM|Toxic effect of aflatoxin, accidental (unintentional), subsequent encounter|Toxic effect of aflatoxin, accidental (unintentional), subsequent encounter +C2885947|T037|PT|T64.01XS|ICD10CM|Toxic effect of aflatoxin, accidental (unintentional), sequela|Toxic effect of aflatoxin, accidental (unintentional), sequela +C2885947|T037|AB|T64.01XS|ICD10CM|Toxic effect of aflatoxin, accidental, sequela|Toxic effect of aflatoxin, accidental, sequela +C2885948|T037|AB|T64.02|ICD10CM|Toxic effect of aflatoxin, intentional self-harm|Toxic effect of aflatoxin, intentional self-harm +C2885948|T037|HT|T64.02|ICD10CM|Toxic effect of aflatoxin, intentional self-harm|Toxic effect of aflatoxin, intentional self-harm +C2885949|T037|AB|T64.02XA|ICD10CM|Toxic effect of aflatoxin, intentional self-harm, init|Toxic effect of aflatoxin, intentional self-harm, init +C2885949|T037|PT|T64.02XA|ICD10CM|Toxic effect of aflatoxin, intentional self-harm, initial encounter|Toxic effect of aflatoxin, intentional self-harm, initial encounter +C2885950|T037|AB|T64.02XD|ICD10CM|Toxic effect of aflatoxin, intentional self-harm, subs|Toxic effect of aflatoxin, intentional self-harm, subs +C2885950|T037|PT|T64.02XD|ICD10CM|Toxic effect of aflatoxin, intentional self-harm, subsequent encounter|Toxic effect of aflatoxin, intentional self-harm, subsequent encounter +C2885951|T037|AB|T64.02XS|ICD10CM|Toxic effect of aflatoxin, intentional self-harm, sequela|Toxic effect of aflatoxin, intentional self-harm, sequela +C2885951|T037|PT|T64.02XS|ICD10CM|Toxic effect of aflatoxin, intentional self-harm, sequela|Toxic effect of aflatoxin, intentional self-harm, sequela +C2885952|T037|AB|T64.03|ICD10CM|Toxic effect of aflatoxin, assault|Toxic effect of aflatoxin, assault +C2885952|T037|HT|T64.03|ICD10CM|Toxic effect of aflatoxin, assault|Toxic effect of aflatoxin, assault +C2885953|T037|AB|T64.03XA|ICD10CM|Toxic effect of aflatoxin, assault, initial encounter|Toxic effect of aflatoxin, assault, initial encounter +C2885953|T037|PT|T64.03XA|ICD10CM|Toxic effect of aflatoxin, assault, initial encounter|Toxic effect of aflatoxin, assault, initial encounter +C2885954|T037|AB|T64.03XD|ICD10CM|Toxic effect of aflatoxin, assault, subsequent encounter|Toxic effect of aflatoxin, assault, subsequent encounter +C2885954|T037|PT|T64.03XD|ICD10CM|Toxic effect of aflatoxin, assault, subsequent encounter|Toxic effect of aflatoxin, assault, subsequent encounter +C2885955|T037|AB|T64.03XS|ICD10CM|Toxic effect of aflatoxin, assault, sequela|Toxic effect of aflatoxin, assault, sequela +C2885955|T037|PT|T64.03XS|ICD10CM|Toxic effect of aflatoxin, assault, sequela|Toxic effect of aflatoxin, assault, sequela +C2885956|T037|AB|T64.04|ICD10CM|Toxic effect of aflatoxin, undetermined|Toxic effect of aflatoxin, undetermined +C2885956|T037|HT|T64.04|ICD10CM|Toxic effect of aflatoxin, undetermined|Toxic effect of aflatoxin, undetermined +C2885957|T037|AB|T64.04XA|ICD10CM|Toxic effect of aflatoxin, undetermined, initial encounter|Toxic effect of aflatoxin, undetermined, initial encounter +C2885957|T037|PT|T64.04XA|ICD10CM|Toxic effect of aflatoxin, undetermined, initial encounter|Toxic effect of aflatoxin, undetermined, initial encounter +C2885958|T037|AB|T64.04XD|ICD10CM|Toxic effect of aflatoxin, undetermined, subs encntr|Toxic effect of aflatoxin, undetermined, subs encntr +C2885958|T037|PT|T64.04XD|ICD10CM|Toxic effect of aflatoxin, undetermined, subsequent encounter|Toxic effect of aflatoxin, undetermined, subsequent encounter +C2885959|T037|AB|T64.04XS|ICD10CM|Toxic effect of aflatoxin, undetermined, sequela|Toxic effect of aflatoxin, undetermined, sequela +C2885959|T037|PT|T64.04XS|ICD10CM|Toxic effect of aflatoxin, undetermined, sequela|Toxic effect of aflatoxin, undetermined, sequela +C2885960|T037|AB|T64.8|ICD10CM|Toxic effect of other mycotoxin food contaminants|Toxic effect of other mycotoxin food contaminants +C2885960|T037|HT|T64.8|ICD10CM|Toxic effect of other mycotoxin food contaminants|Toxic effect of other mycotoxin food contaminants +C2885961|T037|AB|T64.81|ICD10CM|Toxic effect of mycotoxin food contaminants, accidental|Toxic effect of mycotoxin food contaminants, accidental +C2885961|T037|HT|T64.81|ICD10CM|Toxic effect of other mycotoxin food contaminants, accidental (unintentional)|Toxic effect of other mycotoxin food contaminants, accidental (unintentional) +C2885962|T037|AB|T64.81XA|ICD10CM|Toxic effect of mycotoxin food contamnt, accidental, init|Toxic effect of mycotoxin food contamnt, accidental, init +C2885962|T037|PT|T64.81XA|ICD10CM|Toxic effect of other mycotoxin food contaminants, accidental (unintentional), initial encounter|Toxic effect of other mycotoxin food contaminants, accidental (unintentional), initial encounter +C2885963|T037|AB|T64.81XD|ICD10CM|Toxic effect of mycotoxin food contamnt, accidental, subs|Toxic effect of mycotoxin food contamnt, accidental, subs +C2885963|T037|PT|T64.81XD|ICD10CM|Toxic effect of other mycotoxin food contaminants, accidental (unintentional), subsequent encounter|Toxic effect of other mycotoxin food contaminants, accidental (unintentional), subsequent encounter +C2885964|T037|AB|T64.81XS|ICD10CM|Toxic effect of mycotoxin food contamnt, acc, sequela|Toxic effect of mycotoxin food contamnt, acc, sequela +C2885964|T037|PT|T64.81XS|ICD10CM|Toxic effect of other mycotoxin food contaminants, accidental (unintentional), sequela|Toxic effect of other mycotoxin food contaminants, accidental (unintentional), sequela +C2885965|T037|AB|T64.82|ICD10CM|Toxic effect of mycotoxin food contaminants, self-harm|Toxic effect of mycotoxin food contaminants, self-harm +C2885965|T037|HT|T64.82|ICD10CM|Toxic effect of other mycotoxin food contaminants, intentional self-harm|Toxic effect of other mycotoxin food contaminants, intentional self-harm +C2885966|T037|AB|T64.82XA|ICD10CM|Toxic effect of mycotoxin food contaminants, self-harm, init|Toxic effect of mycotoxin food contaminants, self-harm, init +C2885966|T037|PT|T64.82XA|ICD10CM|Toxic effect of other mycotoxin food contaminants, intentional self-harm, initial encounter|Toxic effect of other mycotoxin food contaminants, intentional self-harm, initial encounter +C2885967|T037|AB|T64.82XD|ICD10CM|Toxic effect of mycotoxin food contaminants, self-harm, subs|Toxic effect of mycotoxin food contaminants, self-harm, subs +C2885967|T037|PT|T64.82XD|ICD10CM|Toxic effect of other mycotoxin food contaminants, intentional self-harm, subsequent encounter|Toxic effect of other mycotoxin food contaminants, intentional self-harm, subsequent encounter +C2885968|T037|AB|T64.82XS|ICD10CM|Toxic effect of mycotoxin food contamnt, self-harm, sequela|Toxic effect of mycotoxin food contamnt, self-harm, sequela +C2885968|T037|PT|T64.82XS|ICD10CM|Toxic effect of other mycotoxin food contaminants, intentional self-harm, sequela|Toxic effect of other mycotoxin food contaminants, intentional self-harm, sequela +C2885969|T037|AB|T64.83|ICD10CM|Toxic effect of other mycotoxin food contaminants, assault|Toxic effect of other mycotoxin food contaminants, assault +C2885969|T037|HT|T64.83|ICD10CM|Toxic effect of other mycotoxin food contaminants, assault|Toxic effect of other mycotoxin food contaminants, assault +C2885970|T037|AB|T64.83XA|ICD10CM|Toxic effect of mycotoxin food contaminants, assault, init|Toxic effect of mycotoxin food contaminants, assault, init +C2885970|T037|PT|T64.83XA|ICD10CM|Toxic effect of other mycotoxin food contaminants, assault, initial encounter|Toxic effect of other mycotoxin food contaminants, assault, initial encounter +C2885971|T037|AB|T64.83XD|ICD10CM|Toxic effect of mycotoxin food contaminants, assault, subs|Toxic effect of mycotoxin food contaminants, assault, subs +C2885971|T037|PT|T64.83XD|ICD10CM|Toxic effect of other mycotoxin food contaminants, assault, subsequent encounter|Toxic effect of other mycotoxin food contaminants, assault, subsequent encounter +C2885972|T037|AB|T64.83XS|ICD10CM|Toxic effect of mycotoxin food contamnt, assault, sequela|Toxic effect of mycotoxin food contamnt, assault, sequela +C2885972|T037|PT|T64.83XS|ICD10CM|Toxic effect of other mycotoxin food contaminants, assault, sequela|Toxic effect of other mycotoxin food contaminants, assault, sequela +C2885973|T037|AB|T64.84|ICD10CM|Toxic effect of mycotoxin food contaminants, undetermined|Toxic effect of mycotoxin food contaminants, undetermined +C2885973|T037|HT|T64.84|ICD10CM|Toxic effect of other mycotoxin food contaminants, undetermined|Toxic effect of other mycotoxin food contaminants, undetermined +C2885974|T037|AB|T64.84XA|ICD10CM|Toxic effect of mycotoxin food contamnt, undetermined, init|Toxic effect of mycotoxin food contamnt, undetermined, init +C2885974|T037|PT|T64.84XA|ICD10CM|Toxic effect of other mycotoxin food contaminants, undetermined, initial encounter|Toxic effect of other mycotoxin food contaminants, undetermined, initial encounter +C2885975|T037|AB|T64.84XD|ICD10CM|Toxic effect of mycotoxin food contamnt, undetermined, subs|Toxic effect of mycotoxin food contamnt, undetermined, subs +C2885975|T037|PT|T64.84XD|ICD10CM|Toxic effect of other mycotoxin food contaminants, undetermined, subsequent encounter|Toxic effect of other mycotoxin food contaminants, undetermined, subsequent encounter +C2885976|T037|AB|T64.84XS|ICD10CM|Toxic effect of mycotoxin food contamnt, undet, sequela|Toxic effect of mycotoxin food contamnt, undet, sequela +C2885976|T037|PT|T64.84XS|ICD10CM|Toxic effect of other mycotoxin food contaminants, undetermined, sequela|Toxic effect of other mycotoxin food contaminants, undetermined, sequela +C0413039|T037|AB|T65|ICD10CM|Toxic effect of other and unspecified substances|Toxic effect of other and unspecified substances +C0413039|T037|HT|T65|ICD10CM|Toxic effect of other and unspecified substances|Toxic effect of other and unspecified substances +C0413039|T037|HT|T65|ICD10|Toxic effect of other and unspecified substances|Toxic effect of other and unspecified substances +C0238080|T037|PS|T65.0|ICD10|Cyanides|Cyanides +C0238080|T037|PX|T65.0|ICD10|Toxic effect of cyanides|Toxic effect of cyanides +C0238080|T037|HT|T65.0|ICD10CM|Toxic effect of cyanides|Toxic effect of cyanides +C0238080|T037|AB|T65.0|ICD10CM|Toxic effect of cyanides|Toxic effect of cyanides +C0238080|T037|HT|T65.0X|ICD10CM|Toxic effect of cyanides|Toxic effect of cyanides +C0238080|T037|AB|T65.0X|ICD10CM|Toxic effect of cyanides|Toxic effect of cyanides +C0238080|T037|ET|T65.0X1|ICD10CM|Toxic effect of cyanides NOS|Toxic effect of cyanides NOS +C2885977|T037|AB|T65.0X1|ICD10CM|Toxic effect of cyanides, accidental (unintentional)|Toxic effect of cyanides, accidental (unintentional) +C2885977|T037|HT|T65.0X1|ICD10CM|Toxic effect of cyanides, accidental (unintentional)|Toxic effect of cyanides, accidental (unintentional) +C2885978|T037|AB|T65.0X1A|ICD10CM|Toxic effect of cyanides, accidental (unintentional), init|Toxic effect of cyanides, accidental (unintentional), init +C2885978|T037|PT|T65.0X1A|ICD10CM|Toxic effect of cyanides, accidental (unintentional), initial encounter|Toxic effect of cyanides, accidental (unintentional), initial encounter +C2885979|T037|AB|T65.0X1D|ICD10CM|Toxic effect of cyanides, accidental (unintentional), subs|Toxic effect of cyanides, accidental (unintentional), subs +C2885979|T037|PT|T65.0X1D|ICD10CM|Toxic effect of cyanides, accidental (unintentional), subsequent encounter|Toxic effect of cyanides, accidental (unintentional), subsequent encounter +C2885980|T037|PT|T65.0X1S|ICD10CM|Toxic effect of cyanides, accidental (unintentional), sequela|Toxic effect of cyanides, accidental (unintentional), sequela +C2885980|T037|AB|T65.0X1S|ICD10CM|Toxic effect of cyanides, accidental, sequela|Toxic effect of cyanides, accidental, sequela +C2885981|T037|AB|T65.0X2|ICD10CM|Toxic effect of cyanides, intentional self-harm|Toxic effect of cyanides, intentional self-harm +C2885981|T037|HT|T65.0X2|ICD10CM|Toxic effect of cyanides, intentional self-harm|Toxic effect of cyanides, intentional self-harm +C2885982|T037|AB|T65.0X2A|ICD10CM|Toxic effect of cyanides, intentional self-harm, init encntr|Toxic effect of cyanides, intentional self-harm, init encntr +C2885982|T037|PT|T65.0X2A|ICD10CM|Toxic effect of cyanides, intentional self-harm, initial encounter|Toxic effect of cyanides, intentional self-harm, initial encounter +C2885983|T037|AB|T65.0X2D|ICD10CM|Toxic effect of cyanides, intentional self-harm, subs encntr|Toxic effect of cyanides, intentional self-harm, subs encntr +C2885983|T037|PT|T65.0X2D|ICD10CM|Toxic effect of cyanides, intentional self-harm, subsequent encounter|Toxic effect of cyanides, intentional self-harm, subsequent encounter +C2885984|T037|AB|T65.0X2S|ICD10CM|Toxic effect of cyanides, intentional self-harm, sequela|Toxic effect of cyanides, intentional self-harm, sequela +C2885984|T037|PT|T65.0X2S|ICD10CM|Toxic effect of cyanides, intentional self-harm, sequela|Toxic effect of cyanides, intentional self-harm, sequela +C2885985|T037|AB|T65.0X3|ICD10CM|Toxic effect of cyanides, assault|Toxic effect of cyanides, assault +C2885985|T037|HT|T65.0X3|ICD10CM|Toxic effect of cyanides, assault|Toxic effect of cyanides, assault +C2885986|T037|AB|T65.0X3A|ICD10CM|Toxic effect of cyanides, assault, initial encounter|Toxic effect of cyanides, assault, initial encounter +C2885986|T037|PT|T65.0X3A|ICD10CM|Toxic effect of cyanides, assault, initial encounter|Toxic effect of cyanides, assault, initial encounter +C2885987|T037|AB|T65.0X3D|ICD10CM|Toxic effect of cyanides, assault, subsequent encounter|Toxic effect of cyanides, assault, subsequent encounter +C2885987|T037|PT|T65.0X3D|ICD10CM|Toxic effect of cyanides, assault, subsequent encounter|Toxic effect of cyanides, assault, subsequent encounter +C2885988|T037|AB|T65.0X3S|ICD10CM|Toxic effect of cyanides, assault, sequela|Toxic effect of cyanides, assault, sequela +C2885988|T037|PT|T65.0X3S|ICD10CM|Toxic effect of cyanides, assault, sequela|Toxic effect of cyanides, assault, sequela +C2885989|T037|AB|T65.0X4|ICD10CM|Toxic effect of cyanides, undetermined|Toxic effect of cyanides, undetermined +C2885989|T037|HT|T65.0X4|ICD10CM|Toxic effect of cyanides, undetermined|Toxic effect of cyanides, undetermined +C2885990|T037|AB|T65.0X4A|ICD10CM|Toxic effect of cyanides, undetermined, initial encounter|Toxic effect of cyanides, undetermined, initial encounter +C2885990|T037|PT|T65.0X4A|ICD10CM|Toxic effect of cyanides, undetermined, initial encounter|Toxic effect of cyanides, undetermined, initial encounter +C2885991|T037|AB|T65.0X4D|ICD10CM|Toxic effect of cyanides, undetermined, subsequent encounter|Toxic effect of cyanides, undetermined, subsequent encounter +C2885991|T037|PT|T65.0X4D|ICD10CM|Toxic effect of cyanides, undetermined, subsequent encounter|Toxic effect of cyanides, undetermined, subsequent encounter +C2885992|T037|AB|T65.0X4S|ICD10CM|Toxic effect of cyanides, undetermined, sequela|Toxic effect of cyanides, undetermined, sequela +C2885992|T037|PT|T65.0X4S|ICD10CM|Toxic effect of cyanides, undetermined, sequela|Toxic effect of cyanides, undetermined, sequela +C0161727|T037|PS|T65.1|ICD10|Strychnine and its salts|Strychnine and its salts +C0161727|T037|PX|T65.1|ICD10|Toxic effect of strychnine and its salts|Toxic effect of strychnine and its salts +C0161727|T037|HT|T65.1|ICD10CM|Toxic effect of strychnine and its salts|Toxic effect of strychnine and its salts +C0161727|T037|AB|T65.1|ICD10CM|Toxic effect of strychnine and its salts|Toxic effect of strychnine and its salts +C0161727|T037|HT|T65.1X|ICD10CM|Toxic effect of strychnine and its salts|Toxic effect of strychnine and its salts +C0161727|T037|AB|T65.1X|ICD10CM|Toxic effect of strychnine and its salts|Toxic effect of strychnine and its salts +C0161727|T037|ET|T65.1X1|ICD10CM|Toxic effect of strychnine and its salts NOS|Toxic effect of strychnine and its salts NOS +C2885993|T037|AB|T65.1X1|ICD10CM|Toxic effect of strychnine and its salts, accidental|Toxic effect of strychnine and its salts, accidental +C2885993|T037|HT|T65.1X1|ICD10CM|Toxic effect of strychnine and its salts, accidental (unintentional)|Toxic effect of strychnine and its salts, accidental (unintentional) +C2885994|T037|PT|T65.1X1A|ICD10CM|Toxic effect of strychnine and its salts, accidental (unintentional), initial encounter|Toxic effect of strychnine and its salts, accidental (unintentional), initial encounter +C2885994|T037|AB|T65.1X1A|ICD10CM|Toxic effect of strychnine and its salts, accidental, init|Toxic effect of strychnine and its salts, accidental, init +C2885995|T037|PT|T65.1X1D|ICD10CM|Toxic effect of strychnine and its salts, accidental (unintentional), subsequent encounter|Toxic effect of strychnine and its salts, accidental (unintentional), subsequent encounter +C2885995|T037|AB|T65.1X1D|ICD10CM|Toxic effect of strychnine and its salts, accidental, subs|Toxic effect of strychnine and its salts, accidental, subs +C2885996|T037|AB|T65.1X1S|ICD10CM|Toxic effect of strychnine and its salts, acc, sequela|Toxic effect of strychnine and its salts, acc, sequela +C2885996|T037|PT|T65.1X1S|ICD10CM|Toxic effect of strychnine and its salts, accidental (unintentional), sequela|Toxic effect of strychnine and its salts, accidental (unintentional), sequela +C2885997|T037|HT|T65.1X2|ICD10CM|Toxic effect of strychnine and its salts, intentional self-harm|Toxic effect of strychnine and its salts, intentional self-harm +C2885997|T037|AB|T65.1X2|ICD10CM|Toxic effect of strychnine and its salts, self-harm|Toxic effect of strychnine and its salts, self-harm +C2885998|T037|PT|T65.1X2A|ICD10CM|Toxic effect of strychnine and its salts, intentional self-harm, initial encounter|Toxic effect of strychnine and its salts, intentional self-harm, initial encounter +C2885998|T037|AB|T65.1X2A|ICD10CM|Toxic effect of strychnine and its salts, self-harm, init|Toxic effect of strychnine and its salts, self-harm, init +C2885999|T037|PT|T65.1X2D|ICD10CM|Toxic effect of strychnine and its salts, intentional self-harm, subsequent encounter|Toxic effect of strychnine and its salts, intentional self-harm, subsequent encounter +C2885999|T037|AB|T65.1X2D|ICD10CM|Toxic effect of strychnine and its salts, self-harm, subs|Toxic effect of strychnine and its salts, self-harm, subs +C2886000|T037|PT|T65.1X2S|ICD10CM|Toxic effect of strychnine and its salts, intentional self-harm, sequela|Toxic effect of strychnine and its salts, intentional self-harm, sequela +C2886000|T037|AB|T65.1X2S|ICD10CM|Toxic effect of strychnine and its salts, self-harm, sequela|Toxic effect of strychnine and its salts, self-harm, sequela +C2886001|T037|AB|T65.1X3|ICD10CM|Toxic effect of strychnine and its salts, assault|Toxic effect of strychnine and its salts, assault +C2886001|T037|HT|T65.1X3|ICD10CM|Toxic effect of strychnine and its salts, assault|Toxic effect of strychnine and its salts, assault +C2886002|T037|AB|T65.1X3A|ICD10CM|Toxic effect of strychnine and its salts, assault, init|Toxic effect of strychnine and its salts, assault, init +C2886002|T037|PT|T65.1X3A|ICD10CM|Toxic effect of strychnine and its salts, assault, initial encounter|Toxic effect of strychnine and its salts, assault, initial encounter +C2886003|T037|AB|T65.1X3D|ICD10CM|Toxic effect of strychnine and its salts, assault, subs|Toxic effect of strychnine and its salts, assault, subs +C2886003|T037|PT|T65.1X3D|ICD10CM|Toxic effect of strychnine and its salts, assault, subsequent encounter|Toxic effect of strychnine and its salts, assault, subsequent encounter +C2886004|T037|AB|T65.1X3S|ICD10CM|Toxic effect of strychnine and its salts, assault, sequela|Toxic effect of strychnine and its salts, assault, sequela +C2886004|T037|PT|T65.1X3S|ICD10CM|Toxic effect of strychnine and its salts, assault, sequela|Toxic effect of strychnine and its salts, assault, sequela +C2886005|T037|AB|T65.1X4|ICD10CM|Toxic effect of strychnine and its salts, undetermined|Toxic effect of strychnine and its salts, undetermined +C2886005|T037|HT|T65.1X4|ICD10CM|Toxic effect of strychnine and its salts, undetermined|Toxic effect of strychnine and its salts, undetermined +C2886006|T037|AB|T65.1X4A|ICD10CM|Toxic effect of strychnine and its salts, undetermined, init|Toxic effect of strychnine and its salts, undetermined, init +C2886006|T037|PT|T65.1X4A|ICD10CM|Toxic effect of strychnine and its salts, undetermined, initial encounter|Toxic effect of strychnine and its salts, undetermined, initial encounter +C2886007|T037|AB|T65.1X4D|ICD10CM|Toxic effect of strychnine and its salts, undetermined, subs|Toxic effect of strychnine and its salts, undetermined, subs +C2886007|T037|PT|T65.1X4D|ICD10CM|Toxic effect of strychnine and its salts, undetermined, subsequent encounter|Toxic effect of strychnine and its salts, undetermined, subsequent encounter +C2886008|T037|AB|T65.1X4S|ICD10CM|Toxic effect of strychnine and its salts, undet, sequela|Toxic effect of strychnine and its salts, undet, sequela +C2886008|T037|PT|T65.1X4S|ICD10CM|Toxic effect of strychnine and its salts, undetermined, sequela|Toxic effect of strychnine and its salts, undetermined, sequela +C0452127|T047|PS|T65.2|ICD10|Tobacco and nicotine|Tobacco and nicotine +C0452127|T047|PX|T65.2|ICD10|Toxic effect of tobacco and nicotine|Toxic effect of tobacco and nicotine +C0452127|T047|HT|T65.2|ICD10CM|Toxic effect of tobacco and nicotine|Toxic effect of tobacco and nicotine +C0452127|T047|AB|T65.2|ICD10CM|Toxic effect of tobacco and nicotine|Toxic effect of tobacco and nicotine +C2886009|T037|AB|T65.21|ICD10CM|Toxic effect of chewing tobacco|Toxic effect of chewing tobacco +C2886009|T037|HT|T65.21|ICD10CM|Toxic effect of chewing tobacco|Toxic effect of chewing tobacco +C2886009|T037|ET|T65.211|ICD10CM|Toxic effect of chewing tobacco NOS|Toxic effect of chewing tobacco NOS +C2886010|T037|AB|T65.211|ICD10CM|Toxic effect of chewing tobacco, accidental (unintentional)|Toxic effect of chewing tobacco, accidental (unintentional) +C2886010|T037|HT|T65.211|ICD10CM|Toxic effect of chewing tobacco, accidental (unintentional)|Toxic effect of chewing tobacco, accidental (unintentional) +C2886011|T037|PT|T65.211A|ICD10CM|Toxic effect of chewing tobacco, accidental (unintentional), initial encounter|Toxic effect of chewing tobacco, accidental (unintentional), initial encounter +C2886011|T037|AB|T65.211A|ICD10CM|Toxic effect of chewing tobacco, accidental, init|Toxic effect of chewing tobacco, accidental, init +C2886012|T037|PT|T65.211D|ICD10CM|Toxic effect of chewing tobacco, accidental (unintentional), subsequent encounter|Toxic effect of chewing tobacco, accidental (unintentional), subsequent encounter +C2886012|T037|AB|T65.211D|ICD10CM|Toxic effect of chewing tobacco, accidental, subs|Toxic effect of chewing tobacco, accidental, subs +C2886013|T037|PT|T65.211S|ICD10CM|Toxic effect of chewing tobacco, accidental (unintentional), sequela|Toxic effect of chewing tobacco, accidental (unintentional), sequela +C2886013|T037|AB|T65.211S|ICD10CM|Toxic effect of chewing tobacco, accidental, sequela|Toxic effect of chewing tobacco, accidental, sequela +C2886014|T037|AB|T65.212|ICD10CM|Toxic effect of chewing tobacco, intentional self-harm|Toxic effect of chewing tobacco, intentional self-harm +C2886014|T037|HT|T65.212|ICD10CM|Toxic effect of chewing tobacco, intentional self-harm|Toxic effect of chewing tobacco, intentional self-harm +C2886015|T037|AB|T65.212A|ICD10CM|Toxic effect of chewing tobacco, intentional self-harm, init|Toxic effect of chewing tobacco, intentional self-harm, init +C2886015|T037|PT|T65.212A|ICD10CM|Toxic effect of chewing tobacco, intentional self-harm, initial encounter|Toxic effect of chewing tobacco, intentional self-harm, initial encounter +C2886016|T037|AB|T65.212D|ICD10CM|Toxic effect of chewing tobacco, intentional self-harm, subs|Toxic effect of chewing tobacco, intentional self-harm, subs +C2886016|T037|PT|T65.212D|ICD10CM|Toxic effect of chewing tobacco, intentional self-harm, subsequent encounter|Toxic effect of chewing tobacco, intentional self-harm, subsequent encounter +C2886017|T037|PT|T65.212S|ICD10CM|Toxic effect of chewing tobacco, intentional self-harm, sequela|Toxic effect of chewing tobacco, intentional self-harm, sequela +C2886017|T037|AB|T65.212S|ICD10CM|Toxic effect of chewing tobacco, self-harm, sequela|Toxic effect of chewing tobacco, self-harm, sequela +C2886018|T037|AB|T65.213|ICD10CM|Toxic effect of chewing tobacco, assault|Toxic effect of chewing tobacco, assault +C2886018|T037|HT|T65.213|ICD10CM|Toxic effect of chewing tobacco, assault|Toxic effect of chewing tobacco, assault +C2886019|T037|AB|T65.213A|ICD10CM|Toxic effect of chewing tobacco, assault, initial encounter|Toxic effect of chewing tobacco, assault, initial encounter +C2886019|T037|PT|T65.213A|ICD10CM|Toxic effect of chewing tobacco, assault, initial encounter|Toxic effect of chewing tobacco, assault, initial encounter +C2886020|T037|AB|T65.213D|ICD10CM|Toxic effect of chewing tobacco, assault, subs encntr|Toxic effect of chewing tobacco, assault, subs encntr +C2886020|T037|PT|T65.213D|ICD10CM|Toxic effect of chewing tobacco, assault, subsequent encounter|Toxic effect of chewing tobacco, assault, subsequent encounter +C2886021|T037|AB|T65.213S|ICD10CM|Toxic effect of chewing tobacco, assault, sequela|Toxic effect of chewing tobacco, assault, sequela +C2886021|T037|PT|T65.213S|ICD10CM|Toxic effect of chewing tobacco, assault, sequela|Toxic effect of chewing tobacco, assault, sequela +C2886022|T037|AB|T65.214|ICD10CM|Toxic effect of chewing tobacco, undetermined|Toxic effect of chewing tobacco, undetermined +C2886022|T037|HT|T65.214|ICD10CM|Toxic effect of chewing tobacco, undetermined|Toxic effect of chewing tobacco, undetermined +C2886023|T037|AB|T65.214A|ICD10CM|Toxic effect of chewing tobacco, undetermined, init encntr|Toxic effect of chewing tobacco, undetermined, init encntr +C2886023|T037|PT|T65.214A|ICD10CM|Toxic effect of chewing tobacco, undetermined, initial encounter|Toxic effect of chewing tobacco, undetermined, initial encounter +C2886024|T037|AB|T65.214D|ICD10CM|Toxic effect of chewing tobacco, undetermined, subs encntr|Toxic effect of chewing tobacco, undetermined, subs encntr +C2886024|T037|PT|T65.214D|ICD10CM|Toxic effect of chewing tobacco, undetermined, subsequent encounter|Toxic effect of chewing tobacco, undetermined, subsequent encounter +C2886025|T037|AB|T65.214S|ICD10CM|Toxic effect of chewing tobacco, undetermined, sequela|Toxic effect of chewing tobacco, undetermined, sequela +C2886025|T037|PT|T65.214S|ICD10CM|Toxic effect of chewing tobacco, undetermined, sequela|Toxic effect of chewing tobacco, undetermined, sequela +C2886027|T037|AB|T65.22|ICD10CM|Toxic effect of tobacco cigarettes|Toxic effect of tobacco cigarettes +C2886027|T037|HT|T65.22|ICD10CM|Toxic effect of tobacco cigarettes|Toxic effect of tobacco cigarettes +C2886026|T037|ET|T65.22|ICD10CM|Toxic effect of tobacco smoke|Toxic effect of tobacco smoke +C2886027|T037|ET|T65.221|ICD10CM|Toxic effect of tobacco cigarettes NOS|Toxic effect of tobacco cigarettes NOS +C2886028|T037|AB|T65.221|ICD10CM|Toxic effect of tobacco cigarettes, accidental|Toxic effect of tobacco cigarettes, accidental +C2886028|T037|HT|T65.221|ICD10CM|Toxic effect of tobacco cigarettes, accidental (unintentional)|Toxic effect of tobacco cigarettes, accidental (unintentional) +C2886029|T037|PT|T65.221A|ICD10CM|Toxic effect of tobacco cigarettes, accidental (unintentional), initial encounter|Toxic effect of tobacco cigarettes, accidental (unintentional), initial encounter +C2886029|T037|AB|T65.221A|ICD10CM|Toxic effect of tobacco cigarettes, accidental, init|Toxic effect of tobacco cigarettes, accidental, init +C2886030|T037|PT|T65.221D|ICD10CM|Toxic effect of tobacco cigarettes, accidental (unintentional), subsequent encounter|Toxic effect of tobacco cigarettes, accidental (unintentional), subsequent encounter +C2886030|T037|AB|T65.221D|ICD10CM|Toxic effect of tobacco cigarettes, accidental, subs|Toxic effect of tobacco cigarettes, accidental, subs +C2886031|T037|PT|T65.221S|ICD10CM|Toxic effect of tobacco cigarettes, accidental (unintentional), sequela|Toxic effect of tobacco cigarettes, accidental (unintentional), sequela +C2886031|T037|AB|T65.221S|ICD10CM|Toxic effect of tobacco cigarettes, accidental, sequela|Toxic effect of tobacco cigarettes, accidental, sequela +C2886032|T037|AB|T65.222|ICD10CM|Toxic effect of tobacco cigarettes, intentional self-harm|Toxic effect of tobacco cigarettes, intentional self-harm +C2886032|T037|HT|T65.222|ICD10CM|Toxic effect of tobacco cigarettes, intentional self-harm|Toxic effect of tobacco cigarettes, intentional self-harm +C2886033|T037|PT|T65.222A|ICD10CM|Toxic effect of tobacco cigarettes, intentional self-harm, initial encounter|Toxic effect of tobacco cigarettes, intentional self-harm, initial encounter +C2886033|T037|AB|T65.222A|ICD10CM|Toxic effect of tobacco cigarettes, self-harm, init|Toxic effect of tobacco cigarettes, self-harm, init +C2886034|T037|PT|T65.222D|ICD10CM|Toxic effect of tobacco cigarettes, intentional self-harm, subsequent encounter|Toxic effect of tobacco cigarettes, intentional self-harm, subsequent encounter +C2886034|T037|AB|T65.222D|ICD10CM|Toxic effect of tobacco cigarettes, self-harm, subs|Toxic effect of tobacco cigarettes, self-harm, subs +C2886035|T037|PT|T65.222S|ICD10CM|Toxic effect of tobacco cigarettes, intentional self-harm, sequela|Toxic effect of tobacco cigarettes, intentional self-harm, sequela +C2886035|T037|AB|T65.222S|ICD10CM|Toxic effect of tobacco cigarettes, self-harm, sequela|Toxic effect of tobacco cigarettes, self-harm, sequela +C2886036|T037|AB|T65.223|ICD10CM|Toxic effect of tobacco cigarettes, assault|Toxic effect of tobacco cigarettes, assault +C2886036|T037|HT|T65.223|ICD10CM|Toxic effect of tobacco cigarettes, assault|Toxic effect of tobacco cigarettes, assault +C2886037|T037|AB|T65.223A|ICD10CM|Toxic effect of tobacco cigarettes, assault, init encntr|Toxic effect of tobacco cigarettes, assault, init encntr +C2886037|T037|PT|T65.223A|ICD10CM|Toxic effect of tobacco cigarettes, assault, initial encounter|Toxic effect of tobacco cigarettes, assault, initial encounter +C2886038|T037|AB|T65.223D|ICD10CM|Toxic effect of tobacco cigarettes, assault, subs encntr|Toxic effect of tobacco cigarettes, assault, subs encntr +C2886038|T037|PT|T65.223D|ICD10CM|Toxic effect of tobacco cigarettes, assault, subsequent encounter|Toxic effect of tobacco cigarettes, assault, subsequent encounter +C2886039|T037|AB|T65.223S|ICD10CM|Toxic effect of tobacco cigarettes, assault, sequela|Toxic effect of tobacco cigarettes, assault, sequela +C2886039|T037|PT|T65.223S|ICD10CM|Toxic effect of tobacco cigarettes, assault, sequela|Toxic effect of tobacco cigarettes, assault, sequela +C2886040|T037|AB|T65.224|ICD10CM|Toxic effect of tobacco cigarettes, undetermined|Toxic effect of tobacco cigarettes, undetermined +C2886040|T037|HT|T65.224|ICD10CM|Toxic effect of tobacco cigarettes, undetermined|Toxic effect of tobacco cigarettes, undetermined +C2886041|T037|AB|T65.224A|ICD10CM|Toxic effect of tobacco cigarettes, undetermined, init|Toxic effect of tobacco cigarettes, undetermined, init +C2886041|T037|PT|T65.224A|ICD10CM|Toxic effect of tobacco cigarettes, undetermined, initial encounter|Toxic effect of tobacco cigarettes, undetermined, initial encounter +C2886042|T037|AB|T65.224D|ICD10CM|Toxic effect of tobacco cigarettes, undetermined, subs|Toxic effect of tobacco cigarettes, undetermined, subs +C2886042|T037|PT|T65.224D|ICD10CM|Toxic effect of tobacco cigarettes, undetermined, subsequent encounter|Toxic effect of tobacco cigarettes, undetermined, subsequent encounter +C2886043|T037|AB|T65.224S|ICD10CM|Toxic effect of tobacco cigarettes, undetermined, sequela|Toxic effect of tobacco cigarettes, undetermined, sequela +C2886043|T037|PT|T65.224S|ICD10CM|Toxic effect of tobacco cigarettes, undetermined, sequela|Toxic effect of tobacco cigarettes, undetermined, sequela +C2886044|T037|AB|T65.29|ICD10CM|Toxic effect of other tobacco and nicotine|Toxic effect of other tobacco and nicotine +C2886044|T037|HT|T65.29|ICD10CM|Toxic effect of other tobacco and nicotine|Toxic effect of other tobacco and nicotine +C2886044|T037|ET|T65.291|ICD10CM|Toxic effect of other tobacco and nicotine NOS|Toxic effect of other tobacco and nicotine NOS +C2886045|T037|HT|T65.291|ICD10CM|Toxic effect of other tobacco and nicotine, accidental (unintentional)|Toxic effect of other tobacco and nicotine, accidental (unintentional) +C2886045|T037|AB|T65.291|ICD10CM|Toxic effect of tobacco and nicotine, accidental|Toxic effect of tobacco and nicotine, accidental +C2886046|T037|PT|T65.291A|ICD10CM|Toxic effect of other tobacco and nicotine, accidental (unintentional), initial encounter|Toxic effect of other tobacco and nicotine, accidental (unintentional), initial encounter +C2886046|T037|AB|T65.291A|ICD10CM|Toxic effect of tobacco and nicotine, accidental, init|Toxic effect of tobacco and nicotine, accidental, init +C2886047|T037|PT|T65.291D|ICD10CM|Toxic effect of other tobacco and nicotine, accidental (unintentional), subsequent encounter|Toxic effect of other tobacco and nicotine, accidental (unintentional), subsequent encounter +C2886047|T037|AB|T65.291D|ICD10CM|Toxic effect of tobacco and nicotine, accidental, subs|Toxic effect of tobacco and nicotine, accidental, subs +C2886048|T037|PT|T65.291S|ICD10CM|Toxic effect of other tobacco and nicotine, accidental (unintentional), sequela|Toxic effect of other tobacco and nicotine, accidental (unintentional), sequela +C2886048|T037|AB|T65.291S|ICD10CM|Toxic effect of tobacco and nicotine, accidental, sequela|Toxic effect of tobacco and nicotine, accidental, sequela +C2886049|T037|HT|T65.292|ICD10CM|Toxic effect of other tobacco and nicotine, intentional self-harm|Toxic effect of other tobacco and nicotine, intentional self-harm +C2886049|T037|AB|T65.292|ICD10CM|Toxic effect of tobacco and nicotine, intentional self-harm|Toxic effect of tobacco and nicotine, intentional self-harm +C2886050|T037|PT|T65.292A|ICD10CM|Toxic effect of other tobacco and nicotine, intentional self-harm, initial encounter|Toxic effect of other tobacco and nicotine, intentional self-harm, initial encounter +C2886050|T037|AB|T65.292A|ICD10CM|Toxic effect of tobacco and nicotine, self-harm, init|Toxic effect of tobacco and nicotine, self-harm, init +C2886051|T037|PT|T65.292D|ICD10CM|Toxic effect of other tobacco and nicotine, intentional self-harm, subsequent encounter|Toxic effect of other tobacco and nicotine, intentional self-harm, subsequent encounter +C2886051|T037|AB|T65.292D|ICD10CM|Toxic effect of tobacco and nicotine, self-harm, subs|Toxic effect of tobacco and nicotine, self-harm, subs +C2886052|T037|PT|T65.292S|ICD10CM|Toxic effect of other tobacco and nicotine, intentional self-harm, sequela|Toxic effect of other tobacco and nicotine, intentional self-harm, sequela +C2886052|T037|AB|T65.292S|ICD10CM|Toxic effect of tobacco and nicotine, self-harm, sequela|Toxic effect of tobacco and nicotine, self-harm, sequela +C2886053|T037|AB|T65.293|ICD10CM|Toxic effect of other tobacco and nicotine, assault|Toxic effect of other tobacco and nicotine, assault +C2886053|T037|HT|T65.293|ICD10CM|Toxic effect of other tobacco and nicotine, assault|Toxic effect of other tobacco and nicotine, assault +C2886054|T037|AB|T65.293A|ICD10CM|Toxic effect of oth tobacco and nicotine, assault, init|Toxic effect of oth tobacco and nicotine, assault, init +C2886054|T037|PT|T65.293A|ICD10CM|Toxic effect of other tobacco and nicotine, assault, initial encounter|Toxic effect of other tobacco and nicotine, assault, initial encounter +C2886055|T037|AB|T65.293D|ICD10CM|Toxic effect of oth tobacco and nicotine, assault, subs|Toxic effect of oth tobacco and nicotine, assault, subs +C2886055|T037|PT|T65.293D|ICD10CM|Toxic effect of other tobacco and nicotine, assault, subsequent encounter|Toxic effect of other tobacco and nicotine, assault, subsequent encounter +C2886056|T037|AB|T65.293S|ICD10CM|Toxic effect of other tobacco and nicotine, assault, sequela|Toxic effect of other tobacco and nicotine, assault, sequela +C2886056|T037|PT|T65.293S|ICD10CM|Toxic effect of other tobacco and nicotine, assault, sequela|Toxic effect of other tobacco and nicotine, assault, sequela +C2886057|T037|AB|T65.294|ICD10CM|Toxic effect of other tobacco and nicotine, undetermined|Toxic effect of other tobacco and nicotine, undetermined +C2886057|T037|HT|T65.294|ICD10CM|Toxic effect of other tobacco and nicotine, undetermined|Toxic effect of other tobacco and nicotine, undetermined +C2886058|T037|AB|T65.294A|ICD10CM|Toxic effect of oth tobacco and nicotine, undetermined, init|Toxic effect of oth tobacco and nicotine, undetermined, init +C2886058|T037|PT|T65.294A|ICD10CM|Toxic effect of other tobacco and nicotine, undetermined, initial encounter|Toxic effect of other tobacco and nicotine, undetermined, initial encounter +C2886059|T037|AB|T65.294D|ICD10CM|Toxic effect of oth tobacco and nicotine, undetermined, subs|Toxic effect of oth tobacco and nicotine, undetermined, subs +C2886059|T037|PT|T65.294D|ICD10CM|Toxic effect of other tobacco and nicotine, undetermined, subsequent encounter|Toxic effect of other tobacco and nicotine, undetermined, subsequent encounter +C2886060|T037|PT|T65.294S|ICD10CM|Toxic effect of other tobacco and nicotine, undetermined, sequela|Toxic effect of other tobacco and nicotine, undetermined, sequela +C2886060|T037|AB|T65.294S|ICD10CM|Toxic effect of tobacco and nicotine, undetermined, sequela|Toxic effect of tobacco and nicotine, undetermined, sequela +C0452175|T037|PS|T65.3|ICD10|Nitroderivatives and aminoderivatives of benzene and its homologues|Nitroderivatives and aminoderivatives of benzene and its homologues +C2886061|T037|ET|T65.3|ICD10CM|Toxic effect of anilin [benzenamine]|Toxic effect of anilin [benzenamine] +C2886062|T037|ET|T65.3|ICD10CM|Toxic effect of nitrobenzene|Toxic effect of nitrobenzene +C0452175|T037|PX|T65.3|ICD10|Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues|Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues +C0452175|T037|HT|T65.3|ICD10CM|Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues|Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues +C0452175|T037|AB|T65.3|ICD10CM|Toxic effect of nitrodrv/aminodrv of benzn/homolog|Toxic effect of nitrodrv/aminodrv of benzn/homolog +C2886063|T037|ET|T65.3|ICD10CM|Toxic effect of trinitrotoluene|Toxic effect of trinitrotoluene +C0452175|T037|HT|T65.3X|ICD10CM|Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues|Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues +C0452175|T037|AB|T65.3X|ICD10CM|Toxic effect of nitrodrv/aminodrv of benzn/homolog|Toxic effect of nitrodrv/aminodrv of benzn/homolog +C0452175|T037|ET|T65.3X1|ICD10CM|Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues NOS|Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues NOS +C2886064|T037|AB|T65.3X1|ICD10CM|Toxic effect of nitrodrv/aminodrv of benzn/homolog, acc|Toxic effect of nitrodrv/aminodrv of benzn/homolog, acc +C2886065|T037|AB|T65.3X1A|ICD10CM|Toxic eff of nitrodrv/aminodrv of benzn/homolog, acc, init|Toxic eff of nitrodrv/aminodrv of benzn/homolog, acc, init +C2886066|T037|AB|T65.3X1D|ICD10CM|Toxic eff of nitrodrv/aminodrv of benzn/homolog, acc, subs|Toxic eff of nitrodrv/aminodrv of benzn/homolog, acc, subs +C2886067|T037|AB|T65.3X1S|ICD10CM|Toxic eff of nitrodrv/aminodrv of benzn/homolog, acc, sqla|Toxic eff of nitrodrv/aminodrv of benzn/homolog, acc, sqla +C2886068|T037|AB|T65.3X2|ICD10CM|Toxic effect of nitrodrv/aminodrv of benzn/homolog, slf-hrm|Toxic effect of nitrodrv/aminodrv of benzn/homolog, slf-hrm +C2886069|T037|AB|T65.3X2A|ICD10CM|Tox eff of nitrodrv/aminodrv of benzn/homolog, slf-hrm, init|Tox eff of nitrodrv/aminodrv of benzn/homolog, slf-hrm, init +C2886070|T037|AB|T65.3X2D|ICD10CM|Tox eff of nitrodrv/aminodrv of benzn/homolog, slf-hrm, subs|Tox eff of nitrodrv/aminodrv of benzn/homolog, slf-hrm, subs +C2886071|T037|AB|T65.3X2S|ICD10CM|Tox eff of nitrodrv/aminodrv of benzn/homolog, slf-hrm, sqla|Tox eff of nitrodrv/aminodrv of benzn/homolog, slf-hrm, sqla +C2886072|T037|HT|T65.3X3|ICD10CM|Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, assault|Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, assault +C2886072|T037|AB|T65.3X3|ICD10CM|Toxic effect of nitrodrv/aminodrv of benzn/homolog, assault|Toxic effect of nitrodrv/aminodrv of benzn/homolog, assault +C2886073|T037|AB|T65.3X3A|ICD10CM|Toxic eff of nitrodrv/aminodrv of benzn/homolog, asslt, init|Toxic eff of nitrodrv/aminodrv of benzn/homolog, asslt, init +C2886074|T037|AB|T65.3X3D|ICD10CM|Toxic eff of nitrodrv/aminodrv of benzn/homolog, asslt, subs|Toxic eff of nitrodrv/aminodrv of benzn/homolog, asslt, subs +C2886075|T037|AB|T65.3X3S|ICD10CM|Toxic eff of nitrodrv/aminodrv of benzn/homolog, asslt, sqla|Toxic eff of nitrodrv/aminodrv of benzn/homolog, asslt, sqla +C2886076|T037|HT|T65.3X4|ICD10CM|Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, undetermined|Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, undetermined +C2886076|T037|AB|T65.3X4|ICD10CM|Toxic effect of nitrodrv/aminodrv of benzn/homolog, undet|Toxic effect of nitrodrv/aminodrv of benzn/homolog, undet +C2886077|T037|AB|T65.3X4A|ICD10CM|Toxic eff of nitrodrv/aminodrv of benzn/homolog, undet, init|Toxic eff of nitrodrv/aminodrv of benzn/homolog, undet, init +C2886078|T037|AB|T65.3X4D|ICD10CM|Toxic eff of nitrodrv/aminodrv of benzn/homolog, undet, subs|Toxic eff of nitrodrv/aminodrv of benzn/homolog, undet, subs +C2886079|T037|AB|T65.3X4S|ICD10CM|Toxic eff of nitrodrv/aminodrv of benzn/homolog, undet, sqla|Toxic eff of nitrodrv/aminodrv of benzn/homolog, undet, sqla +C0161689|T037|PS|T65.4|ICD10|Carbon disulfide|Carbon disulfide +C0161689|T037|PX|T65.4|ICD10|Toxic effect of carbon disulfide|Toxic effect of carbon disulfide +C0161689|T037|HT|T65.4|ICD10CM|Toxic effect of carbon disulfide|Toxic effect of carbon disulfide +C0161689|T037|AB|T65.4|ICD10CM|Toxic effect of carbon disulfide|Toxic effect of carbon disulfide +C0161689|T037|HT|T65.4X|ICD10CM|Toxic effect of carbon disulfide|Toxic effect of carbon disulfide +C0161689|T037|AB|T65.4X|ICD10CM|Toxic effect of carbon disulfide|Toxic effect of carbon disulfide +C0161689|T037|ET|T65.4X1|ICD10CM|Toxic effect of carbon disulfide NOS|Toxic effect of carbon disulfide NOS +C2886080|T037|AB|T65.4X1|ICD10CM|Toxic effect of carbon disulfide, accidental (unintentional)|Toxic effect of carbon disulfide, accidental (unintentional) +C2886080|T037|HT|T65.4X1|ICD10CM|Toxic effect of carbon disulfide, accidental (unintentional)|Toxic effect of carbon disulfide, accidental (unintentional) +C2886081|T037|PT|T65.4X1A|ICD10CM|Toxic effect of carbon disulfide, accidental (unintentional), initial encounter|Toxic effect of carbon disulfide, accidental (unintentional), initial encounter +C2886081|T037|AB|T65.4X1A|ICD10CM|Toxic effect of carbon disulfide, accidental, init|Toxic effect of carbon disulfide, accidental, init +C2886082|T037|PT|T65.4X1D|ICD10CM|Toxic effect of carbon disulfide, accidental (unintentional), subsequent encounter|Toxic effect of carbon disulfide, accidental (unintentional), subsequent encounter +C2886082|T037|AB|T65.4X1D|ICD10CM|Toxic effect of carbon disulfide, accidental, subs|Toxic effect of carbon disulfide, accidental, subs +C2886083|T037|PT|T65.4X1S|ICD10CM|Toxic effect of carbon disulfide, accidental (unintentional), sequela|Toxic effect of carbon disulfide, accidental (unintentional), sequela +C2886083|T037|AB|T65.4X1S|ICD10CM|Toxic effect of carbon disulfide, accidental, sequela|Toxic effect of carbon disulfide, accidental, sequela +C2886084|T037|AB|T65.4X2|ICD10CM|Toxic effect of carbon disulfide, intentional self-harm|Toxic effect of carbon disulfide, intentional self-harm +C2886084|T037|HT|T65.4X2|ICD10CM|Toxic effect of carbon disulfide, intentional self-harm|Toxic effect of carbon disulfide, intentional self-harm +C2886085|T037|PT|T65.4X2A|ICD10CM|Toxic effect of carbon disulfide, intentional self-harm, initial encounter|Toxic effect of carbon disulfide, intentional self-harm, initial encounter +C2886085|T037|AB|T65.4X2A|ICD10CM|Toxic effect of carbon disulfide, self-harm, init|Toxic effect of carbon disulfide, self-harm, init +C2886086|T037|PT|T65.4X2D|ICD10CM|Toxic effect of carbon disulfide, intentional self-harm, subsequent encounter|Toxic effect of carbon disulfide, intentional self-harm, subsequent encounter +C2886086|T037|AB|T65.4X2D|ICD10CM|Toxic effect of carbon disulfide, self-harm, subs|Toxic effect of carbon disulfide, self-harm, subs +C2886087|T037|PT|T65.4X2S|ICD10CM|Toxic effect of carbon disulfide, intentional self-harm, sequela|Toxic effect of carbon disulfide, intentional self-harm, sequela +C2886087|T037|AB|T65.4X2S|ICD10CM|Toxic effect of carbon disulfide, self-harm, sequela|Toxic effect of carbon disulfide, self-harm, sequela +C2886088|T037|AB|T65.4X3|ICD10CM|Toxic effect of carbon disulfide, assault|Toxic effect of carbon disulfide, assault +C2886088|T037|HT|T65.4X3|ICD10CM|Toxic effect of carbon disulfide, assault|Toxic effect of carbon disulfide, assault +C2886089|T037|AB|T65.4X3A|ICD10CM|Toxic effect of carbon disulfide, assault, initial encounter|Toxic effect of carbon disulfide, assault, initial encounter +C2886089|T037|PT|T65.4X3A|ICD10CM|Toxic effect of carbon disulfide, assault, initial encounter|Toxic effect of carbon disulfide, assault, initial encounter +C2886090|T037|AB|T65.4X3D|ICD10CM|Toxic effect of carbon disulfide, assault, subs encntr|Toxic effect of carbon disulfide, assault, subs encntr +C2886090|T037|PT|T65.4X3D|ICD10CM|Toxic effect of carbon disulfide, assault, subsequent encounter|Toxic effect of carbon disulfide, assault, subsequent encounter +C2886091|T037|AB|T65.4X3S|ICD10CM|Toxic effect of carbon disulfide, assault, sequela|Toxic effect of carbon disulfide, assault, sequela +C2886091|T037|PT|T65.4X3S|ICD10CM|Toxic effect of carbon disulfide, assault, sequela|Toxic effect of carbon disulfide, assault, sequela +C2886092|T037|AB|T65.4X4|ICD10CM|Toxic effect of carbon disulfide, undetermined|Toxic effect of carbon disulfide, undetermined +C2886092|T037|HT|T65.4X4|ICD10CM|Toxic effect of carbon disulfide, undetermined|Toxic effect of carbon disulfide, undetermined +C2886093|T037|AB|T65.4X4A|ICD10CM|Toxic effect of carbon disulfide, undetermined, init encntr|Toxic effect of carbon disulfide, undetermined, init encntr +C2886093|T037|PT|T65.4X4A|ICD10CM|Toxic effect of carbon disulfide, undetermined, initial encounter|Toxic effect of carbon disulfide, undetermined, initial encounter +C2886094|T037|AB|T65.4X4D|ICD10CM|Toxic effect of carbon disulfide, undetermined, subs encntr|Toxic effect of carbon disulfide, undetermined, subs encntr +C2886094|T037|PT|T65.4X4D|ICD10CM|Toxic effect of carbon disulfide, undetermined, subsequent encounter|Toxic effect of carbon disulfide, undetermined, subsequent encounter +C2886095|T037|AB|T65.4X4S|ICD10CM|Toxic effect of carbon disulfide, undetermined, sequela|Toxic effect of carbon disulfide, undetermined, sequela +C2886095|T037|PT|T65.4X4S|ICD10CM|Toxic effect of carbon disulfide, undetermined, sequela|Toxic effect of carbon disulfide, undetermined, sequela +C0478475|T037|PS|T65.5|ICD10|Nitroglycerin and other nitric acids and esters|Nitroglycerin and other nitric acids and esters +C2886096|T037|ET|T65.5|ICD10CM|Toxic effect of 1,2,3-Propanetriol trinitrate|Toxic effect of 1,2,3-Propanetriol trinitrate +C0478475|T037|AB|T65.5|ICD10CM|Toxic effect of nitro and oth nitric acids and esters|Toxic effect of nitro and oth nitric acids and esters +C0478475|T037|HT|T65.5|ICD10CM|Toxic effect of nitroglycerin and other nitric acids and esters|Toxic effect of nitroglycerin and other nitric acids and esters +C0478475|T037|PX|T65.5|ICD10|Toxic effect of nitroglycerin and other nitric acids and esters|Toxic effect of nitroglycerin and other nitric acids and esters +C0478475|T037|AB|T65.5X|ICD10CM|Toxic effect of nitro and oth nitric acids and esters|Toxic effect of nitro and oth nitric acids and esters +C0478475|T037|HT|T65.5X|ICD10CM|Toxic effect of nitroglycerin and other nitric acids and esters|Toxic effect of nitroglycerin and other nitric acids and esters +C2886097|T037|AB|T65.5X1|ICD10CM|Toxic effect of nitro and oth nitric acids and esters, acc|Toxic effect of nitro and oth nitric acids and esters, acc +C0478475|T037|ET|T65.5X1|ICD10CM|Toxic effect of nitroglycerin and other nitric acids and esters NOS|Toxic effect of nitroglycerin and other nitric acids and esters NOS +C2886097|T037|HT|T65.5X1|ICD10CM|Toxic effect of nitroglycerin and other nitric acids and esters, accidental (unintentional)|Toxic effect of nitroglycerin and other nitric acids and esters, accidental (unintentional) +C2886098|T037|AB|T65.5X1A|ICD10CM|Tox eff of nitro and oth nitric acids and esters, acc, init|Tox eff of nitro and oth nitric acids and esters, acc, init +C2886099|T037|AB|T65.5X1D|ICD10CM|Tox eff of nitro and oth nitric acids and esters, acc, subs|Tox eff of nitro and oth nitric acids and esters, acc, subs +C2886100|T037|AB|T65.5X1S|ICD10CM|Tox eff of nitro and oth nitric acids and esters, acc, sqla|Tox eff of nitro and oth nitric acids and esters, acc, sqla +C2886100|T037|PT|T65.5X1S|ICD10CM|Toxic effect of nitroglycerin and other nitric acids and esters, accidental (unintentional), sequela|Toxic effect of nitroglycerin and other nitric acids and esters, accidental (unintentional), sequela +C2886101|T037|AB|T65.5X2|ICD10CM|Toxic eff of nitro and oth nitric acids and esters, slf-hrm|Toxic eff of nitro and oth nitric acids and esters, slf-hrm +C2886101|T037|HT|T65.5X2|ICD10CM|Toxic effect of nitroglycerin and other nitric acids and esters, intentional self-harm|Toxic effect of nitroglycerin and other nitric acids and esters, intentional self-harm +C2886102|T037|AB|T65.5X2A|ICD10CM|Tox eff of nitro & oth nitric acids & esters, slf-hrm, init|Tox eff of nitro & oth nitric acids & esters, slf-hrm, init +C2886103|T037|AB|T65.5X2D|ICD10CM|Tox eff of nitro & oth nitric acids & esters, slf-hrm, subs|Tox eff of nitro & oth nitric acids & esters, slf-hrm, subs +C2886104|T037|AB|T65.5X2S|ICD10CM|Tox eff of nitro & oth nitric acids & esters, slf-hrm, sqla|Tox eff of nitro & oth nitric acids & esters, slf-hrm, sqla +C2886104|T037|PT|T65.5X2S|ICD10CM|Toxic effect of nitroglycerin and other nitric acids and esters, intentional self-harm, sequela|Toxic effect of nitroglycerin and other nitric acids and esters, intentional self-harm, sequela +C2886105|T037|AB|T65.5X3|ICD10CM|Toxic effect of nitro and oth nitric acids and esters, asslt|Toxic effect of nitro and oth nitric acids and esters, asslt +C2886105|T037|HT|T65.5X3|ICD10CM|Toxic effect of nitroglycerin and other nitric acids and esters, assault|Toxic effect of nitroglycerin and other nitric acids and esters, assault +C2886106|T037|AB|T65.5X3A|ICD10CM|Tox eff of nitro & oth nitric acids and esters, asslt, init|Tox eff of nitro & oth nitric acids and esters, asslt, init +C2886106|T037|PT|T65.5X3A|ICD10CM|Toxic effect of nitroglycerin and other nitric acids and esters, assault, initial encounter|Toxic effect of nitroglycerin and other nitric acids and esters, assault, initial encounter +C2886107|T037|AB|T65.5X3D|ICD10CM|Tox eff of nitro & oth nitric acids and esters, asslt, subs|Tox eff of nitro & oth nitric acids and esters, asslt, subs +C2886107|T037|PT|T65.5X3D|ICD10CM|Toxic effect of nitroglycerin and other nitric acids and esters, assault, subsequent encounter|Toxic effect of nitroglycerin and other nitric acids and esters, assault, subsequent encounter +C2886108|T037|AB|T65.5X3S|ICD10CM|Tox eff of nitro & oth nitric acids and esters, asslt, sqla|Tox eff of nitro & oth nitric acids and esters, asslt, sqla +C2886108|T037|PT|T65.5X3S|ICD10CM|Toxic effect of nitroglycerin and other nitric acids and esters, assault, sequela|Toxic effect of nitroglycerin and other nitric acids and esters, assault, sequela +C2886109|T037|AB|T65.5X4|ICD10CM|Toxic effect of nitro and oth nitric acids and esters, undet|Toxic effect of nitro and oth nitric acids and esters, undet +C2886109|T037|HT|T65.5X4|ICD10CM|Toxic effect of nitroglycerin and other nitric acids and esters, undetermined|Toxic effect of nitroglycerin and other nitric acids and esters, undetermined +C2886110|T037|AB|T65.5X4A|ICD10CM|Tox eff of nitro & oth nitric acids and esters, undet, init|Tox eff of nitro & oth nitric acids and esters, undet, init +C2886110|T037|PT|T65.5X4A|ICD10CM|Toxic effect of nitroglycerin and other nitric acids and esters, undetermined, initial encounter|Toxic effect of nitroglycerin and other nitric acids and esters, undetermined, initial encounter +C2886111|T037|AB|T65.5X4D|ICD10CM|Tox eff of nitro & oth nitric acids and esters, undet, subs|Tox eff of nitro & oth nitric acids and esters, undet, subs +C2886111|T037|PT|T65.5X4D|ICD10CM|Toxic effect of nitroglycerin and other nitric acids and esters, undetermined, subsequent encounter|Toxic effect of nitroglycerin and other nitric acids and esters, undetermined, subsequent encounter +C2886112|T037|AB|T65.5X4S|ICD10CM|Tox eff of nitro & oth nitric acids and esters, undet, sqla|Tox eff of nitro & oth nitric acids and esters, undet, sqla +C2886112|T037|PT|T65.5X4S|ICD10CM|Toxic effect of nitroglycerin and other nitric acids and esters, undetermined, sequela|Toxic effect of nitroglycerin and other nitric acids and esters, undetermined, sequela +C0869097|T037|PS|T65.6|ICD10|Paints and dyes, not elsewhere classified|Paints and dyes, not elsewhere classified +C0869097|T037|PX|T65.6|ICD10|Toxic effect of paints and dyes, not elsewhere classified|Toxic effect of paints and dyes, not elsewhere classified +C0869097|T037|HT|T65.6|ICD10CM|Toxic effect of paints and dyes, not elsewhere classified|Toxic effect of paints and dyes, not elsewhere classified +C0869097|T037|AB|T65.6|ICD10CM|Toxic effect of paints and dyes, not elsewhere classified|Toxic effect of paints and dyes, not elsewhere classified +C0869097|T037|HT|T65.6X|ICD10CM|Toxic effect of paints and dyes, not elsewhere classified|Toxic effect of paints and dyes, not elsewhere classified +C0869097|T037|AB|T65.6X|ICD10CM|Toxic effect of paints and dyes, not elsewhere classified|Toxic effect of paints and dyes, not elsewhere classified +C2886113|T037|ET|T65.6X1|ICD10CM|Toxic effect of paints and dyes NOS|Toxic effect of paints and dyes NOS +C2886114|T037|AB|T65.6X1|ICD10CM|Toxic effect of paints and dyes, NEC, accidental|Toxic effect of paints and dyes, NEC, accidental +C2886114|T037|HT|T65.6X1|ICD10CM|Toxic effect of paints and dyes, not elsewhere classified, accidental (unintentional)|Toxic effect of paints and dyes, not elsewhere classified, accidental (unintentional) +C2886115|T037|AB|T65.6X1A|ICD10CM|Toxic effect of paints and dyes, NEC, accidental, init|Toxic effect of paints and dyes, NEC, accidental, init +C2886116|T037|AB|T65.6X1D|ICD10CM|Toxic effect of paints and dyes, NEC, accidental, subs|Toxic effect of paints and dyes, NEC, accidental, subs +C2886117|T037|AB|T65.6X1S|ICD10CM|Toxic effect of paints and dyes, NEC, accidental, sequela|Toxic effect of paints and dyes, NEC, accidental, sequela +C2886117|T037|PT|T65.6X1S|ICD10CM|Toxic effect of paints and dyes, not elsewhere classified, accidental (unintentional), sequela|Toxic effect of paints and dyes, not elsewhere classified, accidental (unintentional), sequela +C2886118|T037|AB|T65.6X2|ICD10CM|Toxic effect of paints and dyes, NEC, intentional self-harm|Toxic effect of paints and dyes, NEC, intentional self-harm +C2886118|T037|HT|T65.6X2|ICD10CM|Toxic effect of paints and dyes, not elsewhere classified, intentional self-harm|Toxic effect of paints and dyes, not elsewhere classified, intentional self-harm +C2886119|T037|AB|T65.6X2A|ICD10CM|Toxic effect of paints and dyes, NEC, self-harm, init|Toxic effect of paints and dyes, NEC, self-harm, init +C2886119|T037|PT|T65.6X2A|ICD10CM|Toxic effect of paints and dyes, not elsewhere classified, intentional self-harm, initial encounter|Toxic effect of paints and dyes, not elsewhere classified, intentional self-harm, initial encounter +C2886120|T037|AB|T65.6X2D|ICD10CM|Toxic effect of paints and dyes, NEC, self-harm, subs|Toxic effect of paints and dyes, NEC, self-harm, subs +C2886121|T037|AB|T65.6X2S|ICD10CM|Toxic effect of paints and dyes, NEC, self-harm, sequela|Toxic effect of paints and dyes, NEC, self-harm, sequela +C2886121|T037|PT|T65.6X2S|ICD10CM|Toxic effect of paints and dyes, not elsewhere classified, intentional self-harm, sequela|Toxic effect of paints and dyes, not elsewhere classified, intentional self-harm, sequela +C2886122|T037|AB|T65.6X3|ICD10CM|Toxic effect of paints and dyes, NEC, assault|Toxic effect of paints and dyes, NEC, assault +C2886122|T037|HT|T65.6X3|ICD10CM|Toxic effect of paints and dyes, not elsewhere classified, assault|Toxic effect of paints and dyes, not elsewhere classified, assault +C2886123|T037|AB|T65.6X3A|ICD10CM|Toxic effect of paints and dyes, NEC, assault, init|Toxic effect of paints and dyes, NEC, assault, init +C2886123|T037|PT|T65.6X3A|ICD10CM|Toxic effect of paints and dyes, not elsewhere classified, assault, initial encounter|Toxic effect of paints and dyes, not elsewhere classified, assault, initial encounter +C2886124|T037|AB|T65.6X3D|ICD10CM|Toxic effect of paints and dyes, NEC, assault, subs|Toxic effect of paints and dyes, NEC, assault, subs +C2886124|T037|PT|T65.6X3D|ICD10CM|Toxic effect of paints and dyes, not elsewhere classified, assault, subsequent encounter|Toxic effect of paints and dyes, not elsewhere classified, assault, subsequent encounter +C2886125|T037|AB|T65.6X3S|ICD10CM|Toxic effect of paints and dyes, NEC, assault, sequela|Toxic effect of paints and dyes, NEC, assault, sequela +C2886125|T037|PT|T65.6X3S|ICD10CM|Toxic effect of paints and dyes, not elsewhere classified, assault, sequela|Toxic effect of paints and dyes, not elsewhere classified, assault, sequela +C2886126|T037|AB|T65.6X4|ICD10CM|Toxic effect of paints and dyes, NEC, undetermined|Toxic effect of paints and dyes, NEC, undetermined +C2886126|T037|HT|T65.6X4|ICD10CM|Toxic effect of paints and dyes, not elsewhere classified, undetermined|Toxic effect of paints and dyes, not elsewhere classified, undetermined +C2886127|T037|AB|T65.6X4A|ICD10CM|Toxic effect of paints and dyes, NEC, undetermined, init|Toxic effect of paints and dyes, NEC, undetermined, init +C2886127|T037|PT|T65.6X4A|ICD10CM|Toxic effect of paints and dyes, not elsewhere classified, undetermined, initial encounter|Toxic effect of paints and dyes, not elsewhere classified, undetermined, initial encounter +C2886128|T037|AB|T65.6X4D|ICD10CM|Toxic effect of paints and dyes, NEC, undetermined, subs|Toxic effect of paints and dyes, NEC, undetermined, subs +C2886128|T037|PT|T65.6X4D|ICD10CM|Toxic effect of paints and dyes, not elsewhere classified, undetermined, subsequent encounter|Toxic effect of paints and dyes, not elsewhere classified, undetermined, subsequent encounter +C2886129|T037|AB|T65.6X4S|ICD10CM|Toxic effect of paints and dyes, NEC, undetermined, sequela|Toxic effect of paints and dyes, NEC, undetermined, sequela +C2886129|T037|PT|T65.6X4S|ICD10CM|Toxic effect of paints and dyes, not elsewhere classified, undetermined, sequela|Toxic effect of paints and dyes, not elsewhere classified, undetermined, sequela +C0478472|T037|HT|T65.8|ICD10CM|Toxic effect of other specified substances|Toxic effect of other specified substances +C0478472|T037|AB|T65.8|ICD10CM|Toxic effect of other specified substances|Toxic effect of other specified substances +C0478472|T037|PT|T65.8|ICD10|Toxic effect of other specified substances|Toxic effect of other specified substances +C0375693|T037|HT|T65.81|ICD10CM|Toxic effect of latex|Toxic effect of latex +C0375693|T037|AB|T65.81|ICD10CM|Toxic effect of latex|Toxic effect of latex +C0375693|T037|ET|T65.811|ICD10CM|Toxic effect of latex NOS|Toxic effect of latex NOS +C2886130|T037|AB|T65.811|ICD10CM|Toxic effect of latex, accidental (unintentional)|Toxic effect of latex, accidental (unintentional) +C2886130|T037|HT|T65.811|ICD10CM|Toxic effect of latex, accidental (unintentional)|Toxic effect of latex, accidental (unintentional) +C2886131|T037|AB|T65.811A|ICD10CM|Toxic effect of latex, accidental (unintentional), init|Toxic effect of latex, accidental (unintentional), init +C2886131|T037|PT|T65.811A|ICD10CM|Toxic effect of latex, accidental (unintentional), initial encounter|Toxic effect of latex, accidental (unintentional), initial encounter +C2886132|T037|AB|T65.811D|ICD10CM|Toxic effect of latex, accidental (unintentional), subs|Toxic effect of latex, accidental (unintentional), subs +C2886132|T037|PT|T65.811D|ICD10CM|Toxic effect of latex, accidental (unintentional), subsequent encounter|Toxic effect of latex, accidental (unintentional), subsequent encounter +C2886133|T037|AB|T65.811S|ICD10CM|Toxic effect of latex, accidental (unintentional), sequela|Toxic effect of latex, accidental (unintentional), sequela +C2886133|T037|PT|T65.811S|ICD10CM|Toxic effect of latex, accidental (unintentional), sequela|Toxic effect of latex, accidental (unintentional), sequela +C2886134|T037|AB|T65.812|ICD10CM|Toxic effect of latex, intentional self-harm|Toxic effect of latex, intentional self-harm +C2886134|T037|HT|T65.812|ICD10CM|Toxic effect of latex, intentional self-harm|Toxic effect of latex, intentional self-harm +C2886135|T037|AB|T65.812A|ICD10CM|Toxic effect of latex, intentional self-harm, init encntr|Toxic effect of latex, intentional self-harm, init encntr +C2886135|T037|PT|T65.812A|ICD10CM|Toxic effect of latex, intentional self-harm, initial encounter|Toxic effect of latex, intentional self-harm, initial encounter +C2886136|T037|AB|T65.812D|ICD10CM|Toxic effect of latex, intentional self-harm, subs encntr|Toxic effect of latex, intentional self-harm, subs encntr +C2886136|T037|PT|T65.812D|ICD10CM|Toxic effect of latex, intentional self-harm, subsequent encounter|Toxic effect of latex, intentional self-harm, subsequent encounter +C2886137|T037|AB|T65.812S|ICD10CM|Toxic effect of latex, intentional self-harm, sequela|Toxic effect of latex, intentional self-harm, sequela +C2886137|T037|PT|T65.812S|ICD10CM|Toxic effect of latex, intentional self-harm, sequela|Toxic effect of latex, intentional self-harm, sequela +C2886138|T037|AB|T65.813|ICD10CM|Toxic effect of latex, assault|Toxic effect of latex, assault +C2886138|T037|HT|T65.813|ICD10CM|Toxic effect of latex, assault|Toxic effect of latex, assault +C2886139|T037|AB|T65.813A|ICD10CM|Toxic effect of latex, assault, initial encounter|Toxic effect of latex, assault, initial encounter +C2886139|T037|PT|T65.813A|ICD10CM|Toxic effect of latex, assault, initial encounter|Toxic effect of latex, assault, initial encounter +C2886140|T037|AB|T65.813D|ICD10CM|Toxic effect of latex, assault, subsequent encounter|Toxic effect of latex, assault, subsequent encounter +C2886140|T037|PT|T65.813D|ICD10CM|Toxic effect of latex, assault, subsequent encounter|Toxic effect of latex, assault, subsequent encounter +C2886141|T037|AB|T65.813S|ICD10CM|Toxic effect of latex, assault, sequela|Toxic effect of latex, assault, sequela +C2886141|T037|PT|T65.813S|ICD10CM|Toxic effect of latex, assault, sequela|Toxic effect of latex, assault, sequela +C2886142|T037|AB|T65.814|ICD10CM|Toxic effect of latex, undetermined|Toxic effect of latex, undetermined +C2886142|T037|HT|T65.814|ICD10CM|Toxic effect of latex, undetermined|Toxic effect of latex, undetermined +C2886143|T037|AB|T65.814A|ICD10CM|Toxic effect of latex, undetermined, initial encounter|Toxic effect of latex, undetermined, initial encounter +C2886143|T037|PT|T65.814A|ICD10CM|Toxic effect of latex, undetermined, initial encounter|Toxic effect of latex, undetermined, initial encounter +C2886144|T037|AB|T65.814D|ICD10CM|Toxic effect of latex, undetermined, subsequent encounter|Toxic effect of latex, undetermined, subsequent encounter +C2886144|T037|PT|T65.814D|ICD10CM|Toxic effect of latex, undetermined, subsequent encounter|Toxic effect of latex, undetermined, subsequent encounter +C2886145|T037|AB|T65.814S|ICD10CM|Toxic effect of latex, undetermined, sequela|Toxic effect of latex, undetermined, sequela +C2886145|T037|PT|T65.814S|ICD10CM|Toxic effect of latex, undetermined, sequela|Toxic effect of latex, undetermined, sequela +C2886146|T037|ET|T65.82|ICD10CM|Toxic effect of (harmful) algae bloom NOS|Toxic effect of (harmful) algae bloom NOS +C2886148|T037|ET|T65.82|ICD10CM|Toxic effect of blue-green algae bloom|Toxic effect of blue-green algae bloom +C2886149|T037|ET|T65.82|ICD10CM|Toxic effect of brown tide|Toxic effect of brown tide +C2886150|T037|ET|T65.82|ICD10CM|Toxic effect of cyanobacteria bloom|Toxic effect of cyanobacteria bloom +C2886147|T037|ET|T65.82|ICD10CM|Toxic effect of Florida red tide|Toxic effect of Florida red tide +C2886153|T037|AB|T65.82|ICD10CM|Toxic effect of harmful algae and algae toxins|Toxic effect of harmful algae and algae toxins +C2886153|T037|HT|T65.82|ICD10CM|Toxic effect of harmful algae and algae toxins|Toxic effect of harmful algae and algae toxins +C2886151|T037|ET|T65.82|ICD10CM|Toxic effect of pfiesteria piscicida|Toxic effect of pfiesteria piscicida +C2886152|T037|ET|T65.82|ICD10CM|Toxic effect of red tide|Toxic effect of red tide +C2886153|T037|ET|T65.821|ICD10CM|Toxic effect of harmful algae and algae toxins NOS|Toxic effect of harmful algae and algae toxins NOS +C2886154|T037|AB|T65.821|ICD10CM|Toxic effect of harmful algae and algae toxins, accidental|Toxic effect of harmful algae and algae toxins, accidental +C2886154|T037|HT|T65.821|ICD10CM|Toxic effect of harmful algae and algae toxins, accidental (unintentional)|Toxic effect of harmful algae and algae toxins, accidental (unintentional) +C2886155|T037|AB|T65.821A|ICD10CM|Toxic effect of harmful algae and algae toxins, acc, init|Toxic effect of harmful algae and algae toxins, acc, init +C2886155|T037|PT|T65.821A|ICD10CM|Toxic effect of harmful algae and algae toxins, accidental (unintentional), initial encounter|Toxic effect of harmful algae and algae toxins, accidental (unintentional), initial encounter +C2886156|T037|AB|T65.821D|ICD10CM|Toxic effect of harmful algae and algae toxins, acc, subs|Toxic effect of harmful algae and algae toxins, acc, subs +C2886156|T037|PT|T65.821D|ICD10CM|Toxic effect of harmful algae and algae toxins, accidental (unintentional), subsequent encounter|Toxic effect of harmful algae and algae toxins, accidental (unintentional), subsequent encounter +C2886157|T037|AB|T65.821S|ICD10CM|Toxic effect of harmful algae and algae toxins, acc, sqla|Toxic effect of harmful algae and algae toxins, acc, sqla +C2886157|T037|PT|T65.821S|ICD10CM|Toxic effect of harmful algae and algae toxins, accidental (unintentional), sequela|Toxic effect of harmful algae and algae toxins, accidental (unintentional), sequela +C2886158|T037|HT|T65.822|ICD10CM|Toxic effect of harmful algae and algae toxins, intentional self-harm|Toxic effect of harmful algae and algae toxins, intentional self-harm +C2886158|T037|AB|T65.822|ICD10CM|Toxic effect of harmful algae and algae toxins, self-harm|Toxic effect of harmful algae and algae toxins, self-harm +C2886159|T037|AB|T65.822A|ICD10CM|Toxic eff of harmful algae and algae toxins, slf-hrm, init|Toxic eff of harmful algae and algae toxins, slf-hrm, init +C2886159|T037|PT|T65.822A|ICD10CM|Toxic effect of harmful algae and algae toxins, intentional self-harm, initial encounter|Toxic effect of harmful algae and algae toxins, intentional self-harm, initial encounter +C2886160|T037|AB|T65.822D|ICD10CM|Toxic eff of harmful algae and algae toxins, slf-hrm, subs|Toxic eff of harmful algae and algae toxins, slf-hrm, subs +C2886160|T037|PT|T65.822D|ICD10CM|Toxic effect of harmful algae and algae toxins, intentional self-harm, subsequent encounter|Toxic effect of harmful algae and algae toxins, intentional self-harm, subsequent encounter +C2886161|T037|AB|T65.822S|ICD10CM|Toxic eff of harmful algae and algae toxins, slf-hrm, sqla|Toxic eff of harmful algae and algae toxins, slf-hrm, sqla +C2886161|T037|PT|T65.822S|ICD10CM|Toxic effect of harmful algae and algae toxins, intentional self-harm, sequela|Toxic effect of harmful algae and algae toxins, intentional self-harm, sequela +C2886162|T037|AB|T65.823|ICD10CM|Toxic effect of harmful algae and algae toxins, assault|Toxic effect of harmful algae and algae toxins, assault +C2886162|T037|HT|T65.823|ICD10CM|Toxic effect of harmful algae and algae toxins, assault|Toxic effect of harmful algae and algae toxins, assault +C2886163|T037|PT|T65.823A|ICD10CM|Toxic effect of harmful algae and algae toxins, assault, initial encounter|Toxic effect of harmful algae and algae toxins, assault, initial encounter +C2886163|T037|AB|T65.823A|ICD10CM|Toxic effect of harmful algae and algae toxins, asslt, init|Toxic effect of harmful algae and algae toxins, asslt, init +C2886164|T037|PT|T65.823D|ICD10CM|Toxic effect of harmful algae and algae toxins, assault, subsequent encounter|Toxic effect of harmful algae and algae toxins, assault, subsequent encounter +C2886164|T037|AB|T65.823D|ICD10CM|Toxic effect of harmful algae and algae toxins, asslt, subs|Toxic effect of harmful algae and algae toxins, asslt, subs +C2886165|T037|PT|T65.823S|ICD10CM|Toxic effect of harmful algae and algae toxins, assault, sequela|Toxic effect of harmful algae and algae toxins, assault, sequela +C2886165|T037|AB|T65.823S|ICD10CM|Toxic effect of harmful algae and algae toxins, asslt, sqla|Toxic effect of harmful algae and algae toxins, asslt, sqla +C2886166|T037|AB|T65.824|ICD10CM|Toxic effect of harmful algae and algae toxins, undetermined|Toxic effect of harmful algae and algae toxins, undetermined +C2886166|T037|HT|T65.824|ICD10CM|Toxic effect of harmful algae and algae toxins, undetermined|Toxic effect of harmful algae and algae toxins, undetermined +C2886167|T037|AB|T65.824A|ICD10CM|Toxic effect of harmful algae and algae toxins, undet, init|Toxic effect of harmful algae and algae toxins, undet, init +C2886167|T037|PT|T65.824A|ICD10CM|Toxic effect of harmful algae and algae toxins, undetermined, initial encounter|Toxic effect of harmful algae and algae toxins, undetermined, initial encounter +C2886168|T037|AB|T65.824D|ICD10CM|Toxic effect of harmful algae and algae toxins, undet, subs|Toxic effect of harmful algae and algae toxins, undet, subs +C2886168|T037|PT|T65.824D|ICD10CM|Toxic effect of harmful algae and algae toxins, undetermined, subsequent encounter|Toxic effect of harmful algae and algae toxins, undetermined, subsequent encounter +C2886169|T037|AB|T65.824S|ICD10CM|Toxic effect of harmful algae and algae toxins, undet, sqla|Toxic effect of harmful algae and algae toxins, undet, sqla +C2886169|T037|PT|T65.824S|ICD10CM|Toxic effect of harmful algae and algae toxins, undetermined, sequela|Toxic effect of harmful algae and algae toxins, undetermined, sequela +C2886170|T037|AB|T65.83|ICD10CM|Toxic effect of fiberglass|Toxic effect of fiberglass +C2886170|T037|HT|T65.83|ICD10CM|Toxic effect of fiberglass|Toxic effect of fiberglass +C2886170|T037|ET|T65.831|ICD10CM|Toxic effect of fiberglass NOS|Toxic effect of fiberglass NOS +C2886171|T037|AB|T65.831|ICD10CM|Toxic effect of fiberglass, accidental (unintentional)|Toxic effect of fiberglass, accidental (unintentional) +C2886171|T037|HT|T65.831|ICD10CM|Toxic effect of fiberglass, accidental (unintentional)|Toxic effect of fiberglass, accidental (unintentional) +C2886172|T037|AB|T65.831A|ICD10CM|Toxic effect of fiberglass, accidental (unintentional), init|Toxic effect of fiberglass, accidental (unintentional), init +C2886172|T037|PT|T65.831A|ICD10CM|Toxic effect of fiberglass, accidental (unintentional), initial encounter|Toxic effect of fiberglass, accidental (unintentional), initial encounter +C2886173|T037|AB|T65.831D|ICD10CM|Toxic effect of fiberglass, accidental (unintentional), subs|Toxic effect of fiberglass, accidental (unintentional), subs +C2886173|T037|PT|T65.831D|ICD10CM|Toxic effect of fiberglass, accidental (unintentional), subsequent encounter|Toxic effect of fiberglass, accidental (unintentional), subsequent encounter +C2886174|T037|PT|T65.831S|ICD10CM|Toxic effect of fiberglass, accidental (unintentional), sequela|Toxic effect of fiberglass, accidental (unintentional), sequela +C2886174|T037|AB|T65.831S|ICD10CM|Toxic effect of fiberglass, accidental, sequela|Toxic effect of fiberglass, accidental, sequela +C2886175|T037|AB|T65.832|ICD10CM|Toxic effect of fiberglass, intentional self-harm|Toxic effect of fiberglass, intentional self-harm +C2886175|T037|HT|T65.832|ICD10CM|Toxic effect of fiberglass, intentional self-harm|Toxic effect of fiberglass, intentional self-harm +C2886176|T037|AB|T65.832A|ICD10CM|Toxic effect of fiberglass, intentional self-harm, init|Toxic effect of fiberglass, intentional self-harm, init +C2886176|T037|PT|T65.832A|ICD10CM|Toxic effect of fiberglass, intentional self-harm, initial encounter|Toxic effect of fiberglass, intentional self-harm, initial encounter +C2886177|T037|AB|T65.832D|ICD10CM|Toxic effect of fiberglass, intentional self-harm, subs|Toxic effect of fiberglass, intentional self-harm, subs +C2886177|T037|PT|T65.832D|ICD10CM|Toxic effect of fiberglass, intentional self-harm, subsequent encounter|Toxic effect of fiberglass, intentional self-harm, subsequent encounter +C2886178|T037|AB|T65.832S|ICD10CM|Toxic effect of fiberglass, intentional self-harm, sequela|Toxic effect of fiberglass, intentional self-harm, sequela +C2886178|T037|PT|T65.832S|ICD10CM|Toxic effect of fiberglass, intentional self-harm, sequela|Toxic effect of fiberglass, intentional self-harm, sequela +C2886179|T037|AB|T65.833|ICD10CM|Toxic effect of fiberglass, assault|Toxic effect of fiberglass, assault +C2886179|T037|HT|T65.833|ICD10CM|Toxic effect of fiberglass, assault|Toxic effect of fiberglass, assault +C2886180|T037|AB|T65.833A|ICD10CM|Toxic effect of fiberglass, assault, initial encounter|Toxic effect of fiberglass, assault, initial encounter +C2886180|T037|PT|T65.833A|ICD10CM|Toxic effect of fiberglass, assault, initial encounter|Toxic effect of fiberglass, assault, initial encounter +C2886181|T037|AB|T65.833D|ICD10CM|Toxic effect of fiberglass, assault, subsequent encounter|Toxic effect of fiberglass, assault, subsequent encounter +C2886181|T037|PT|T65.833D|ICD10CM|Toxic effect of fiberglass, assault, subsequent encounter|Toxic effect of fiberglass, assault, subsequent encounter +C2886182|T037|AB|T65.833S|ICD10CM|Toxic effect of fiberglass, assault, sequela|Toxic effect of fiberglass, assault, sequela +C2886182|T037|PT|T65.833S|ICD10CM|Toxic effect of fiberglass, assault, sequela|Toxic effect of fiberglass, assault, sequela +C2886183|T037|AB|T65.834|ICD10CM|Toxic effect of fiberglass, undetermined|Toxic effect of fiberglass, undetermined +C2886183|T037|HT|T65.834|ICD10CM|Toxic effect of fiberglass, undetermined|Toxic effect of fiberglass, undetermined +C2886184|T037|AB|T65.834A|ICD10CM|Toxic effect of fiberglass, undetermined, initial encounter|Toxic effect of fiberglass, undetermined, initial encounter +C2886184|T037|PT|T65.834A|ICD10CM|Toxic effect of fiberglass, undetermined, initial encounter|Toxic effect of fiberglass, undetermined, initial encounter +C2886185|T037|AB|T65.834D|ICD10CM|Toxic effect of fiberglass, undetermined, subs encntr|Toxic effect of fiberglass, undetermined, subs encntr +C2886185|T037|PT|T65.834D|ICD10CM|Toxic effect of fiberglass, undetermined, subsequent encounter|Toxic effect of fiberglass, undetermined, subsequent encounter +C2886186|T037|AB|T65.834S|ICD10CM|Toxic effect of fiberglass, undetermined, sequela|Toxic effect of fiberglass, undetermined, sequela +C2886186|T037|PT|T65.834S|ICD10CM|Toxic effect of fiberglass, undetermined, sequela|Toxic effect of fiberglass, undetermined, sequela +C0478472|T037|HT|T65.89|ICD10CM|Toxic effect of other specified substances|Toxic effect of other specified substances +C0478472|T037|AB|T65.89|ICD10CM|Toxic effect of other specified substances|Toxic effect of other specified substances +C2886187|T037|AB|T65.891|ICD10CM|Toxic effect of oth substances, accidental (unintentional)|Toxic effect of oth substances, accidental (unintentional) +C0478472|T037|ET|T65.891|ICD10CM|Toxic effect of other specified substances NOS|Toxic effect of other specified substances NOS +C2886187|T037|HT|T65.891|ICD10CM|Toxic effect of other specified substances, accidental (unintentional)|Toxic effect of other specified substances, accidental (unintentional) +C2886188|T037|PT|T65.891A|ICD10CM|Toxic effect of other specified substances, accidental (unintentional), initial encounter|Toxic effect of other specified substances, accidental (unintentional), initial encounter +C2886188|T037|AB|T65.891A|ICD10CM|Toxic effect of substances, accidental (unintentional), init|Toxic effect of substances, accidental (unintentional), init +C2886189|T037|PT|T65.891D|ICD10CM|Toxic effect of other specified substances, accidental (unintentional), subsequent encounter|Toxic effect of other specified substances, accidental (unintentional), subsequent encounter +C2886189|T037|AB|T65.891D|ICD10CM|Toxic effect of substances, accidental (unintentional), subs|Toxic effect of substances, accidental (unintentional), subs +C2886190|T037|PT|T65.891S|ICD10CM|Toxic effect of other specified substances, accidental (unintentional), sequela|Toxic effect of other specified substances, accidental (unintentional), sequela +C2886190|T037|AB|T65.891S|ICD10CM|Toxic effect of substances, accidental, sequela|Toxic effect of substances, accidental, sequela +C2886191|T037|AB|T65.892|ICD10CM|Toxic effect of oth substances, intentional self-harm|Toxic effect of oth substances, intentional self-harm +C2886191|T037|HT|T65.892|ICD10CM|Toxic effect of other specified substances, intentional self-harm|Toxic effect of other specified substances, intentional self-harm +C2886192|T037|AB|T65.892A|ICD10CM|Toxic effect of oth substances, intentional self-harm, init|Toxic effect of oth substances, intentional self-harm, init +C2886192|T037|PT|T65.892A|ICD10CM|Toxic effect of other specified substances, intentional self-harm, initial encounter|Toxic effect of other specified substances, intentional self-harm, initial encounter +C2886193|T037|AB|T65.892D|ICD10CM|Toxic effect of oth substances, intentional self-harm, subs|Toxic effect of oth substances, intentional self-harm, subs +C2886193|T037|PT|T65.892D|ICD10CM|Toxic effect of other specified substances, intentional self-harm, subsequent encounter|Toxic effect of other specified substances, intentional self-harm, subsequent encounter +C2886194|T037|PT|T65.892S|ICD10CM|Toxic effect of other specified substances, intentional self-harm, sequela|Toxic effect of other specified substances, intentional self-harm, sequela +C2886194|T037|AB|T65.892S|ICD10CM|Toxic effect of substances, intentional self-harm, sequela|Toxic effect of substances, intentional self-harm, sequela +C2886195|T037|AB|T65.893|ICD10CM|Toxic effect of other specified substances, assault|Toxic effect of other specified substances, assault +C2886195|T037|HT|T65.893|ICD10CM|Toxic effect of other specified substances, assault|Toxic effect of other specified substances, assault +C2886196|T037|AB|T65.893A|ICD10CM|Toxic effect of oth substances, assault, init encntr|Toxic effect of oth substances, assault, init encntr +C2886196|T037|PT|T65.893A|ICD10CM|Toxic effect of other specified substances, assault, initial encounter|Toxic effect of other specified substances, assault, initial encounter +C2886197|T037|AB|T65.893D|ICD10CM|Toxic effect of oth substances, assault, subs encntr|Toxic effect of oth substances, assault, subs encntr +C2886197|T037|PT|T65.893D|ICD10CM|Toxic effect of other specified substances, assault, subsequent encounter|Toxic effect of other specified substances, assault, subsequent encounter +C2886198|T037|AB|T65.893S|ICD10CM|Toxic effect of other specified substances, assault, sequela|Toxic effect of other specified substances, assault, sequela +C2886198|T037|PT|T65.893S|ICD10CM|Toxic effect of other specified substances, assault, sequela|Toxic effect of other specified substances, assault, sequela +C2886199|T037|AB|T65.894|ICD10CM|Toxic effect of other specified substances, undetermined|Toxic effect of other specified substances, undetermined +C2886199|T037|HT|T65.894|ICD10CM|Toxic effect of other specified substances, undetermined|Toxic effect of other specified substances, undetermined +C2886200|T037|AB|T65.894A|ICD10CM|Toxic effect of oth substances, undetermined, init encntr|Toxic effect of oth substances, undetermined, init encntr +C2886200|T037|PT|T65.894A|ICD10CM|Toxic effect of other specified substances, undetermined, initial encounter|Toxic effect of other specified substances, undetermined, initial encounter +C2886201|T037|AB|T65.894D|ICD10CM|Toxic effect of oth substances, undetermined, subs encntr|Toxic effect of oth substances, undetermined, subs encntr +C2886201|T037|PT|T65.894D|ICD10CM|Toxic effect of other specified substances, undetermined, subsequent encounter|Toxic effect of other specified substances, undetermined, subsequent encounter +C2886202|T037|AB|T65.894S|ICD10CM|Toxic effect of oth substances, undetermined, sequela|Toxic effect of oth substances, undetermined, sequela +C2886202|T037|PT|T65.894S|ICD10CM|Toxic effect of other specified substances, undetermined, sequela|Toxic effect of other specified substances, undetermined, sequela +C0496113|T037|HT|T65.9|ICD10CM|Toxic effect of unspecified substance|Toxic effect of unspecified substance +C0496113|T037|AB|T65.9|ICD10CM|Toxic effect of unspecified substance|Toxic effect of unspecified substance +C0496113|T037|PT|T65.9|ICD10|Toxic effect of unspecified substance|Toxic effect of unspecified substance +C0032343|T037|ET|T65.91|ICD10CM|Poisoning NOS|Poisoning NOS +C2886203|T037|AB|T65.91|ICD10CM|Toxic effect of unsp substance, accidental (unintentional)|Toxic effect of unsp substance, accidental (unintentional) +C2886203|T037|HT|T65.91|ICD10CM|Toxic effect of unspecified substance, accidental (unintentional)|Toxic effect of unspecified substance, accidental (unintentional) +C2886204|T037|AB|T65.91XA|ICD10CM|Toxic effect of unsp substance, accidental, init|Toxic effect of unsp substance, accidental, init +C2886204|T037|PT|T65.91XA|ICD10CM|Toxic effect of unspecified substance, accidental (unintentional), initial encounter|Toxic effect of unspecified substance, accidental (unintentional), initial encounter +C2886205|T037|AB|T65.91XD|ICD10CM|Toxic effect of unsp substance, accidental, subs|Toxic effect of unsp substance, accidental, subs +C2886205|T037|PT|T65.91XD|ICD10CM|Toxic effect of unspecified substance, accidental (unintentional), subsequent encounter|Toxic effect of unspecified substance, accidental (unintentional), subsequent encounter +C2886206|T037|AB|T65.91XS|ICD10CM|Toxic effect of unsp substance, accidental, sequela|Toxic effect of unsp substance, accidental, sequela +C2886206|T037|PT|T65.91XS|ICD10CM|Toxic effect of unspecified substance, accidental (unintentional), sequela|Toxic effect of unspecified substance, accidental (unintentional), sequela +C2886207|T037|AB|T65.92|ICD10CM|Toxic effect of unspecified substance, intentional self-harm|Toxic effect of unspecified substance, intentional self-harm +C2886207|T037|HT|T65.92|ICD10CM|Toxic effect of unspecified substance, intentional self-harm|Toxic effect of unspecified substance, intentional self-harm +C2886208|T037|AB|T65.92XA|ICD10CM|Toxic effect of unsp substance, intentional self-harm, init|Toxic effect of unsp substance, intentional self-harm, init +C2886208|T037|PT|T65.92XA|ICD10CM|Toxic effect of unspecified substance, intentional self-harm, initial encounter|Toxic effect of unspecified substance, intentional self-harm, initial encounter +C2886209|T037|AB|T65.92XD|ICD10CM|Toxic effect of unsp substance, intentional self-harm, subs|Toxic effect of unsp substance, intentional self-harm, subs +C2886209|T037|PT|T65.92XD|ICD10CM|Toxic effect of unspecified substance, intentional self-harm, subsequent encounter|Toxic effect of unspecified substance, intentional self-harm, subsequent encounter +C2886210|T037|AB|T65.92XS|ICD10CM|Toxic effect of unsp substance, self-harm, sequela|Toxic effect of unsp substance, self-harm, sequela +C2886210|T037|PT|T65.92XS|ICD10CM|Toxic effect of unspecified substance, intentional self-harm, sequela|Toxic effect of unspecified substance, intentional self-harm, sequela +C2886211|T037|AB|T65.93|ICD10CM|Toxic effect of unspecified substance, assault|Toxic effect of unspecified substance, assault +C2886211|T037|HT|T65.93|ICD10CM|Toxic effect of unspecified substance, assault|Toxic effect of unspecified substance, assault +C2886212|T037|AB|T65.93XA|ICD10CM|Toxic effect of unspecified substance, assault, init encntr|Toxic effect of unspecified substance, assault, init encntr +C2886212|T037|PT|T65.93XA|ICD10CM|Toxic effect of unspecified substance, assault, initial encounter|Toxic effect of unspecified substance, assault, initial encounter +C2886213|T037|AB|T65.93XD|ICD10CM|Toxic effect of unspecified substance, assault, subs encntr|Toxic effect of unspecified substance, assault, subs encntr +C2886213|T037|PT|T65.93XD|ICD10CM|Toxic effect of unspecified substance, assault, subsequent encounter|Toxic effect of unspecified substance, assault, subsequent encounter +C2886214|T037|AB|T65.93XS|ICD10CM|Toxic effect of unspecified substance, assault, sequela|Toxic effect of unspecified substance, assault, sequela +C2886214|T037|PT|T65.93XS|ICD10CM|Toxic effect of unspecified substance, assault, sequela|Toxic effect of unspecified substance, assault, sequela +C2886215|T037|AB|T65.94|ICD10CM|Toxic effect of unspecified substance, undetermined|Toxic effect of unspecified substance, undetermined +C2886215|T037|HT|T65.94|ICD10CM|Toxic effect of unspecified substance, undetermined|Toxic effect of unspecified substance, undetermined +C2886216|T037|AB|T65.94XA|ICD10CM|Toxic effect of unsp substance, undetermined, init encntr|Toxic effect of unsp substance, undetermined, init encntr +C2886216|T037|PT|T65.94XA|ICD10CM|Toxic effect of unspecified substance, undetermined, initial encounter|Toxic effect of unspecified substance, undetermined, initial encounter +C2886217|T037|AB|T65.94XD|ICD10CM|Toxic effect of unsp substance, undetermined, subs encntr|Toxic effect of unsp substance, undetermined, subs encntr +C2886217|T037|PT|T65.94XD|ICD10CM|Toxic effect of unspecified substance, undetermined, subsequent encounter|Toxic effect of unspecified substance, undetermined, subsequent encounter +C2886218|T037|AB|T65.94XS|ICD10CM|Toxic effect of unspecified substance, undetermined, sequela|Toxic effect of unspecified substance, undetermined, sequela +C2886218|T037|PT|T65.94XS|ICD10CM|Toxic effect of unspecified substance, undetermined, sequela|Toxic effect of unspecified substance, undetermined, sequela +C2886219|T037|AB|T66|ICD10CM|Radiation sickness, unspecified|Radiation sickness, unspecified +C2886219|T037|HT|T66|ICD10CM|Radiation sickness, unspecified|Radiation sickness, unspecified +C0013679|T037|HT|T66-T78|ICD10CM|Other and unspecified effects of external causes (T66-T78)|Other and unspecified effects of external causes (T66-T78) +C0013679|T037|HT|T66-T78.9|ICD10|Other and unspecified effects of external causes|Other and unspecified effects of external causes +C2886220|T037|AB|T66.XXXA|ICD10CM|Radiation sickness, unspecified, initial encounter|Radiation sickness, unspecified, initial encounter +C2886220|T037|PT|T66.XXXA|ICD10CM|Radiation sickness, unspecified, initial encounter|Radiation sickness, unspecified, initial encounter +C2886221|T037|AB|T66.XXXD|ICD10CM|Radiation sickness, unspecified, subsequent encounter|Radiation sickness, unspecified, subsequent encounter +C2886221|T037|PT|T66.XXXD|ICD10CM|Radiation sickness, unspecified, subsequent encounter|Radiation sickness, unspecified, subsequent encounter +C2886222|T037|AB|T66.XXXS|ICD10CM|Radiation sickness, unspecified, sequela|Radiation sickness, unspecified, sequela +C2886222|T037|PT|T66.XXXS|ICD10CM|Radiation sickness, unspecified, sequela|Radiation sickness, unspecified, sequela +C0274287|T037|HT|T67|ICD10|Effects of heat and light|Effects of heat and light +C0274287|T037|HT|T67|ICD10CM|Effects of heat and light|Effects of heat and light +C0274287|T037|AB|T67|ICD10CM|Effects of heat and light|Effects of heat and light +C0018844|T037|PX|T67.0|ICD10|Effects of heatstroke and sunstroke|Effects of heatstroke and sunstroke +C0018844|T037|PS|T67.0|ICD10|Heatstroke and sunstroke|Heatstroke and sunstroke +C0018844|T037|HT|T67.0|ICD10CM|Heatstroke and sunstroke|Heatstroke and sunstroke +C0018844|T037|AB|T67.0|ICD10CM|Heatstroke and sunstroke|Heatstroke and sunstroke +C0018843|T037|ET|T67.01|ICD10CM|Heat apoplexy|Heat apoplexy +C0553719|T037|ET|T67.01|ICD10CM|Heat pyrexia|Heat pyrexia +C0018844|T037|HT|T67.01|ICD10CM|Heatstroke and sunstroke|Heatstroke and sunstroke +C0018844|T037|AB|T67.01|ICD10CM|Heatstroke and sunstroke|Heatstroke and sunstroke +C0038819|T037|ET|T67.01|ICD10CM|Siriasis|Siriasis +C0018843|T037|ET|T67.01|ICD10CM|Thermoplegia|Thermoplegia +C5140991|T037|AB|T67.01XA|ICD10CM|Heatstroke and sunstroke, initial encounter|Heatstroke and sunstroke, initial encounter +C5140991|T037|PT|T67.01XA|ICD10CM|Heatstroke and sunstroke, initial encounter|Heatstroke and sunstroke, initial encounter +C5140992|T037|AB|T67.01XD|ICD10CM|Heatstroke and sunstroke, subsequent encounter|Heatstroke and sunstroke, subsequent encounter +C5140992|T037|PT|T67.01XD|ICD10CM|Heatstroke and sunstroke, subsequent encounter|Heatstroke and sunstroke, subsequent encounter +C5140993|T037|AB|T67.01XS|ICD10CM|Heatstroke and sunstroke, sequela|Heatstroke and sunstroke, sequela +C5140993|T037|PT|T67.01XS|ICD10CM|Heatstroke and sunstroke, sequela|Heatstroke and sunstroke, sequela +C5140994|T037|AB|T67.02|ICD10CM|Exertional heatstroke|Exertional heatstroke +C5140994|T037|HT|T67.02|ICD10CM|Exertional heatstroke|Exertional heatstroke +C5140995|T037|AB|T67.02XA|ICD10CM|Exertional heatstroke, initial encounter|Exertional heatstroke, initial encounter +C5140995|T037|PT|T67.02XA|ICD10CM|Exertional heatstroke, initial encounter|Exertional heatstroke, initial encounter +C5140996|T037|AB|T67.02XD|ICD10CM|Exertional heatstroke, subsequent encounter|Exertional heatstroke, subsequent encounter +C5140996|T037|PT|T67.02XD|ICD10CM|Exertional heatstroke, subsequent encounter|Exertional heatstroke, subsequent encounter +C5140997|T037|AB|T67.02XS|ICD10CM|Exertional heatstroke, sequela|Exertional heatstroke, sequela +C5140997|T037|PT|T67.02XS|ICD10CM|Exertional heatstroke, sequela|Exertional heatstroke, sequela +C5140998|T037|AB|T67.09|ICD10CM|Other heatstroke and sunstroke|Other heatstroke and sunstroke +C5140998|T037|HT|T67.09|ICD10CM|Other heatstroke and sunstroke|Other heatstroke and sunstroke +C5140999|T037|AB|T67.09XA|ICD10CM|Other heatstroke and sunstroke, initial encounter|Other heatstroke and sunstroke, initial encounter +C5140999|T037|PT|T67.09XA|ICD10CM|Other heatstroke and sunstroke, initial encounter|Other heatstroke and sunstroke, initial encounter +C5141000|T037|AB|T67.09XD|ICD10CM|Other heatstroke and sunstroke, subsequent encounter|Other heatstroke and sunstroke, subsequent encounter +C5141000|T037|PT|T67.09XD|ICD10CM|Other heatstroke and sunstroke, subsequent encounter|Other heatstroke and sunstroke, subsequent encounter +C5141001|T037|AB|T67.09XS|ICD10CM|Other heatstroke and sunstroke, sequela|Other heatstroke and sunstroke, sequela +C5141001|T037|PT|T67.09XS|ICD10CM|Other heatstroke and sunstroke, sequela|Other heatstroke and sunstroke, sequela +C0018845|T037|PX|T67.1|ICD10|Effects of heat syncope|Effects of heat syncope +C0018845|T037|ET|T67.1|ICD10CM|Heat collapse|Heat collapse +C0018845|T037|HT|T67.1|ICD10CM|Heat syncope|Heat syncope +C0018845|T037|AB|T67.1|ICD10CM|Heat syncope|Heat syncope +C0018845|T037|PS|T67.1|ICD10|Heat syncope|Heat syncope +C2886226|T037|AB|T67.1XXA|ICD10CM|Heat syncope, initial encounter|Heat syncope, initial encounter +C2886226|T037|PT|T67.1XXA|ICD10CM|Heat syncope, initial encounter|Heat syncope, initial encounter +C2886227|T037|AB|T67.1XXD|ICD10CM|Heat syncope, subsequent encounter|Heat syncope, subsequent encounter +C2886227|T037|PT|T67.1XXD|ICD10CM|Heat syncope, subsequent encounter|Heat syncope, subsequent encounter +C2886228|T037|AB|T67.1XXS|ICD10CM|Heat syncope, sequela|Heat syncope, sequela +C2886228|T037|PT|T67.1XXS|ICD10CM|Heat syncope, sequela|Heat syncope, sequela +C0085592|T037|PX|T67.2|ICD10|Effects of heat cramp|Effects of heat cramp +C0085592|T037|PS|T67.2|ICD10|Heat cramp|Heat cramp +C0085592|T037|HT|T67.2|ICD10CM|Heat cramp|Heat cramp +C0085592|T037|AB|T67.2|ICD10CM|Heat cramp|Heat cramp +C2886229|T037|AB|T67.2XXA|ICD10CM|Heat cramp, initial encounter|Heat cramp, initial encounter +C2886229|T037|PT|T67.2XXA|ICD10CM|Heat cramp, initial encounter|Heat cramp, initial encounter +C2886230|T037|AB|T67.2XXD|ICD10CM|Heat cramp, subsequent encounter|Heat cramp, subsequent encounter +C2886230|T037|PT|T67.2XXD|ICD10CM|Heat cramp, subsequent encounter|Heat cramp, subsequent encounter +C2886231|T037|AB|T67.2XXS|ICD10CM|Heat cramp, sequela|Heat cramp, sequela +C2886231|T037|PT|T67.2XXS|ICD10CM|Heat cramp, sequela|Heat cramp, sequela +C0274288|T037|PX|T67.3|ICD10|Effects of heat exhaustion, anhydrotic|Effects of heat exhaustion, anhydrotic +C0274288|T037|PS|T67.3|ICD10|Heat exhaustion, anhydrotic|Heat exhaustion, anhydrotic +C0274288|T037|HT|T67.3|ICD10CM|Heat exhaustion, anhydrotic|Heat exhaustion, anhydrotic +C0274288|T037|AB|T67.3|ICD10CM|Heat exhaustion, anhydrotic|Heat exhaustion, anhydrotic +C0274288|T037|ET|T67.3|ICD10CM|Heat prostration due to water depletion|Heat prostration due to water depletion +C2886232|T037|AB|T67.3XXA|ICD10CM|Heat exhaustion, anhydrotic, initial encounter|Heat exhaustion, anhydrotic, initial encounter +C2886232|T037|PT|T67.3XXA|ICD10CM|Heat exhaustion, anhydrotic, initial encounter|Heat exhaustion, anhydrotic, initial encounter +C2886233|T037|AB|T67.3XXD|ICD10CM|Heat exhaustion, anhydrotic, subsequent encounter|Heat exhaustion, anhydrotic, subsequent encounter +C2886233|T037|PT|T67.3XXD|ICD10CM|Heat exhaustion, anhydrotic, subsequent encounter|Heat exhaustion, anhydrotic, subsequent encounter +C2886234|T037|AB|T67.3XXS|ICD10CM|Heat exhaustion, anhydrotic, sequela|Heat exhaustion, anhydrotic, sequela +C2886234|T037|PT|T67.3XXS|ICD10CM|Heat exhaustion, anhydrotic, sequela|Heat exhaustion, anhydrotic, sequela +C0152144|T037|PX|T67.4|ICD10|Effects of heat exhaustion due to salt depletion|Effects of heat exhaustion due to salt depletion +C0152144|T037|PS|T67.4|ICD10|Heat exhaustion due to salt depletion|Heat exhaustion due to salt depletion +C0152144|T037|HT|T67.4|ICD10CM|Heat exhaustion due to salt depletion|Heat exhaustion due to salt depletion +C0152144|T037|AB|T67.4|ICD10CM|Heat exhaustion due to salt depletion|Heat exhaustion due to salt depletion +C0867295|T037|ET|T67.4|ICD10CM|Heat prostration due to salt (and water) depletion|Heat prostration due to salt (and water) depletion +C2886235|T037|AB|T67.4XXA|ICD10CM|Heat exhaustion due to salt depletion, initial encounter|Heat exhaustion due to salt depletion, initial encounter +C2886235|T037|PT|T67.4XXA|ICD10CM|Heat exhaustion due to salt depletion, initial encounter|Heat exhaustion due to salt depletion, initial encounter +C2886236|T037|AB|T67.4XXD|ICD10CM|Heat exhaustion due to salt depletion, subsequent encounter|Heat exhaustion due to salt depletion, subsequent encounter +C2886236|T037|PT|T67.4XXD|ICD10CM|Heat exhaustion due to salt depletion, subsequent encounter|Heat exhaustion due to salt depletion, subsequent encounter +C2886237|T037|AB|T67.4XXS|ICD10CM|Heat exhaustion due to salt depletion, sequela|Heat exhaustion due to salt depletion, sequela +C2886237|T037|PT|T67.4XXS|ICD10CM|Heat exhaustion due to salt depletion, sequela|Heat exhaustion due to salt depletion, sequela +C0018839|T037|PX|T67.5|ICD10|Effects of heat exhaustion, unspecified|Effects of heat exhaustion, unspecified +C0018839|T037|PS|T67.5|ICD10|Heat exhaustion, unspecified|Heat exhaustion, unspecified +C0018839|T037|HT|T67.5|ICD10CM|Heat exhaustion, unspecified|Heat exhaustion, unspecified +C0018839|T037|AB|T67.5|ICD10CM|Heat exhaustion, unspecified|Heat exhaustion, unspecified +C0018839|T037|ET|T67.5|ICD10CM|Heat prostration NOS|Heat prostration NOS +C2886238|T037|AB|T67.5XXA|ICD10CM|Heat exhaustion, unspecified, initial encounter|Heat exhaustion, unspecified, initial encounter +C2886238|T037|PT|T67.5XXA|ICD10CM|Heat exhaustion, unspecified, initial encounter|Heat exhaustion, unspecified, initial encounter +C2886239|T037|AB|T67.5XXD|ICD10CM|Heat exhaustion, unspecified, subsequent encounter|Heat exhaustion, unspecified, subsequent encounter +C2886239|T037|PT|T67.5XXD|ICD10CM|Heat exhaustion, unspecified, subsequent encounter|Heat exhaustion, unspecified, subsequent encounter +C2886240|T037|AB|T67.5XXS|ICD10CM|Heat exhaustion, unspecified, sequela|Heat exhaustion, unspecified, sequela +C2886240|T037|PT|T67.5XXS|ICD10CM|Heat exhaustion, unspecified, sequela|Heat exhaustion, unspecified, sequela +C0152145|T037|PX|T67.6|ICD10|Effects of heat fatigue, transient|Effects of heat fatigue, transient +C0152145|T037|PS|T67.6|ICD10|Heat fatigue, transient|Heat fatigue, transient +C0152145|T037|HT|T67.6|ICD10CM|Heat fatigue, transient|Heat fatigue, transient +C0152145|T037|AB|T67.6|ICD10CM|Heat fatigue, transient|Heat fatigue, transient +C2886241|T037|AB|T67.6XXA|ICD10CM|Heat fatigue, transient, initial encounter|Heat fatigue, transient, initial encounter +C2886241|T037|PT|T67.6XXA|ICD10CM|Heat fatigue, transient, initial encounter|Heat fatigue, transient, initial encounter +C2886242|T037|AB|T67.6XXD|ICD10CM|Heat fatigue, transient, subsequent encounter|Heat fatigue, transient, subsequent encounter +C2886242|T037|PT|T67.6XXD|ICD10CM|Heat fatigue, transient, subsequent encounter|Heat fatigue, transient, subsequent encounter +C2886243|T037|AB|T67.6XXS|ICD10CM|Heat fatigue, transient, sequela|Heat fatigue, transient, sequela +C2886243|T037|PT|T67.6XXS|ICD10CM|Heat fatigue, transient, sequela|Heat fatigue, transient, sequela +C0161741|T046|PX|T67.7|ICD10AE|Effects of heat edema|Effects of heat edema +C0161741|T046|PX|T67.7|ICD10|Effects of heat oedema|Effects of heat oedema +C0161741|T046|PS|T67.7|ICD10AE|Heat edema|Heat edema +C0161741|T046|HT|T67.7|ICD10CM|Heat edema|Heat edema +C0161741|T046|AB|T67.7|ICD10CM|Heat edema|Heat edema +C0161741|T046|PS|T67.7|ICD10|Heat oedema|Heat oedema +C2886244|T037|PT|T67.7XXA|ICD10CM|Heat edema, initial encounter|Heat edema, initial encounter +C2886244|T037|AB|T67.7XXA|ICD10CM|Heat edema, initial encounter|Heat edema, initial encounter +C2886245|T037|PT|T67.7XXD|ICD10CM|Heat edema, subsequent encounter|Heat edema, subsequent encounter +C2886245|T037|AB|T67.7XXD|ICD10CM|Heat edema, subsequent encounter|Heat edema, subsequent encounter +C2886246|T037|PT|T67.7XXS|ICD10CM|Heat edema, sequela|Heat edema, sequela +C2886246|T037|AB|T67.7XXS|ICD10CM|Heat edema, sequela|Heat edema, sequela +C0496114|T037|PT|T67.8|ICD10|Other effects of heat and light|Other effects of heat and light +C0496114|T037|HT|T67.8|ICD10CM|Other effects of heat and light|Other effects of heat and light +C0496114|T037|AB|T67.8|ICD10CM|Other effects of heat and light|Other effects of heat and light +C2886247|T037|AB|T67.8XXA|ICD10CM|Other effects of heat and light, initial encounter|Other effects of heat and light, initial encounter +C2886247|T037|PT|T67.8XXA|ICD10CM|Other effects of heat and light, initial encounter|Other effects of heat and light, initial encounter +C2886248|T037|AB|T67.8XXD|ICD10CM|Other effects of heat and light, subsequent encounter|Other effects of heat and light, subsequent encounter +C2886248|T037|PT|T67.8XXD|ICD10CM|Other effects of heat and light, subsequent encounter|Other effects of heat and light, subsequent encounter +C2886249|T037|AB|T67.8XXS|ICD10CM|Other effects of heat and light, sequela|Other effects of heat and light, sequela +C2886249|T037|PT|T67.8XXS|ICD10CM|Other effects of heat and light, sequela|Other effects of heat and light, sequela +C0274287|T037|PT|T67.9|ICD10|Effect of heat and light, unspecified|Effect of heat and light, unspecified +C0274287|T037|HT|T67.9|ICD10CM|Effect of heat and light, unspecified|Effect of heat and light, unspecified +C0274287|T037|AB|T67.9|ICD10CM|Effect of heat and light, unspecified|Effect of heat and light, unspecified +C2886250|T037|AB|T67.9XXA|ICD10CM|Effect of heat and light, unspecified, initial encounter|Effect of heat and light, unspecified, initial encounter +C2886250|T037|PT|T67.9XXA|ICD10CM|Effect of heat and light, unspecified, initial encounter|Effect of heat and light, unspecified, initial encounter +C2886251|T037|AB|T67.9XXD|ICD10CM|Effect of heat and light, unspecified, subsequent encounter|Effect of heat and light, unspecified, subsequent encounter +C2886251|T037|PT|T67.9XXD|ICD10CM|Effect of heat and light, unspecified, subsequent encounter|Effect of heat and light, unspecified, subsequent encounter +C2886252|T037|AB|T67.9XXS|ICD10CM|Effect of heat and light, unspecified, sequela|Effect of heat and light, unspecified, sequela +C2886252|T037|PT|T67.9XXS|ICD10CM|Effect of heat and light, unspecified, sequela|Effect of heat and light, unspecified, sequela +C0274285|T037|ET|T68|ICD10CM|Accidental hypothermia|Accidental hypothermia +C0413252|T037|PT|T68|ICD10|Hypothermia|Hypothermia +C0413252|T037|HT|T68|ICD10CM|Hypothermia|Hypothermia +C0413252|T037|AB|T68|ICD10CM|Hypothermia|Hypothermia +C0020672|T033|ET|T68|ICD10CM|Hypothermia NOS|Hypothermia NOS +C2886253|T037|PT|T68.XXXA|ICD10CM|Hypothermia, initial encounter|Hypothermia, initial encounter +C2886253|T037|AB|T68.XXXA|ICD10CM|Hypothermia, initial encounter|Hypothermia, initial encounter +C2886254|T037|PT|T68.XXXD|ICD10CM|Hypothermia, subsequent encounter|Hypothermia, subsequent encounter +C2886254|T037|AB|T68.XXXD|ICD10CM|Hypothermia, subsequent encounter|Hypothermia, subsequent encounter +C2886255|T037|PT|T68.XXXS|ICD10CM|Hypothermia, sequela|Hypothermia, sequela +C2886255|T037|AB|T68.XXXS|ICD10CM|Hypothermia, sequela|Hypothermia, sequela +C0413248|T037|AB|T69|ICD10CM|Other effects of reduced temperature|Other effects of reduced temperature +C0413248|T037|HT|T69|ICD10CM|Other effects of reduced temperature|Other effects of reduced temperature +C0413248|T037|HT|T69|ICD10|Other effects of reduced temperature|Other effects of reduced temperature +C0497030|T037|PX|T69.0|ICD10|Effects of immersion hand and foot|Effects of immersion hand and foot +C0497030|T037|PS|T69.0|ICD10|Immersion hand and foot|Immersion hand and foot +C0497030|T037|HT|T69.0|ICD10CM|Immersion hand and foot|Immersion hand and foot +C0497030|T037|AB|T69.0|ICD10CM|Immersion hand and foot|Immersion hand and foot +C2886256|T037|HT|T69.01|ICD10CM|Immersion hand|Immersion hand +C2886256|T037|AB|T69.01|ICD10CM|Immersion hand|Immersion hand +C2886257|T037|AB|T69.011|ICD10CM|Immersion hand, right hand|Immersion hand, right hand +C2886257|T037|HT|T69.011|ICD10CM|Immersion hand, right hand|Immersion hand, right hand +C2886258|T037|AB|T69.011A|ICD10CM|Immersion hand, right hand, initial encounter|Immersion hand, right hand, initial encounter +C2886258|T037|PT|T69.011A|ICD10CM|Immersion hand, right hand, initial encounter|Immersion hand, right hand, initial encounter +C2886259|T037|AB|T69.011D|ICD10CM|Immersion hand, right hand, subsequent encounter|Immersion hand, right hand, subsequent encounter +C2886259|T037|PT|T69.011D|ICD10CM|Immersion hand, right hand, subsequent encounter|Immersion hand, right hand, subsequent encounter +C2886260|T037|AB|T69.011S|ICD10CM|Immersion hand, right hand, sequela|Immersion hand, right hand, sequela +C2886260|T037|PT|T69.011S|ICD10CM|Immersion hand, right hand, sequela|Immersion hand, right hand, sequela +C2886261|T037|AB|T69.012|ICD10CM|Immersion hand, left hand|Immersion hand, left hand +C2886261|T037|HT|T69.012|ICD10CM|Immersion hand, left hand|Immersion hand, left hand +C2886262|T037|AB|T69.012A|ICD10CM|Immersion hand, left hand, initial encounter|Immersion hand, left hand, initial encounter +C2886262|T037|PT|T69.012A|ICD10CM|Immersion hand, left hand, initial encounter|Immersion hand, left hand, initial encounter +C2886263|T037|AB|T69.012D|ICD10CM|Immersion hand, left hand, subsequent encounter|Immersion hand, left hand, subsequent encounter +C2886263|T037|PT|T69.012D|ICD10CM|Immersion hand, left hand, subsequent encounter|Immersion hand, left hand, subsequent encounter +C2886264|T037|AB|T69.012S|ICD10CM|Immersion hand, left hand, sequela|Immersion hand, left hand, sequela +C2886264|T037|PT|T69.012S|ICD10CM|Immersion hand, left hand, sequela|Immersion hand, left hand, sequela +C2886265|T037|AB|T69.019|ICD10CM|Immersion hand, unspecified hand|Immersion hand, unspecified hand +C2886265|T037|HT|T69.019|ICD10CM|Immersion hand, unspecified hand|Immersion hand, unspecified hand +C2886266|T037|AB|T69.019A|ICD10CM|Immersion hand, unspecified hand, initial encounter|Immersion hand, unspecified hand, initial encounter +C2886266|T037|PT|T69.019A|ICD10CM|Immersion hand, unspecified hand, initial encounter|Immersion hand, unspecified hand, initial encounter +C2886267|T037|AB|T69.019D|ICD10CM|Immersion hand, unspecified hand, subsequent encounter|Immersion hand, unspecified hand, subsequent encounter +C2886267|T037|PT|T69.019D|ICD10CM|Immersion hand, unspecified hand, subsequent encounter|Immersion hand, unspecified hand, subsequent encounter +C2886268|T037|AB|T69.019S|ICD10CM|Immersion hand, unspecified hand, sequela|Immersion hand, unspecified hand, sequela +C2886268|T037|PT|T69.019S|ICD10CM|Immersion hand, unspecified hand, sequela|Immersion hand, unspecified hand, sequela +C0020941|T037|HT|T69.02|ICD10CM|Immersion foot|Immersion foot +C0020941|T037|AB|T69.02|ICD10CM|Immersion foot|Immersion foot +C0040831|T037|ET|T69.02|ICD10CM|Trench foot|Trench foot +C2886269|T037|AB|T69.021|ICD10CM|Immersion foot, right foot|Immersion foot, right foot +C2886269|T037|HT|T69.021|ICD10CM|Immersion foot, right foot|Immersion foot, right foot +C2886270|T037|AB|T69.021A|ICD10CM|Immersion foot, right foot, initial encounter|Immersion foot, right foot, initial encounter +C2886270|T037|PT|T69.021A|ICD10CM|Immersion foot, right foot, initial encounter|Immersion foot, right foot, initial encounter +C2886271|T037|AB|T69.021D|ICD10CM|Immersion foot, right foot, subsequent encounter|Immersion foot, right foot, subsequent encounter +C2886271|T037|PT|T69.021D|ICD10CM|Immersion foot, right foot, subsequent encounter|Immersion foot, right foot, subsequent encounter +C2886272|T037|AB|T69.021S|ICD10CM|Immersion foot, right foot, sequela|Immersion foot, right foot, sequela +C2886272|T037|PT|T69.021S|ICD10CM|Immersion foot, right foot, sequela|Immersion foot, right foot, sequela +C2886273|T037|AB|T69.022|ICD10CM|Immersion foot, left foot|Immersion foot, left foot +C2886273|T037|HT|T69.022|ICD10CM|Immersion foot, left foot|Immersion foot, left foot +C2886274|T037|AB|T69.022A|ICD10CM|Immersion foot, left foot, initial encounter|Immersion foot, left foot, initial encounter +C2886274|T037|PT|T69.022A|ICD10CM|Immersion foot, left foot, initial encounter|Immersion foot, left foot, initial encounter +C2886275|T037|AB|T69.022D|ICD10CM|Immersion foot, left foot, subsequent encounter|Immersion foot, left foot, subsequent encounter +C2886275|T037|PT|T69.022D|ICD10CM|Immersion foot, left foot, subsequent encounter|Immersion foot, left foot, subsequent encounter +C2886276|T037|AB|T69.022S|ICD10CM|Immersion foot, left foot, sequela|Immersion foot, left foot, sequela +C2886276|T037|PT|T69.022S|ICD10CM|Immersion foot, left foot, sequela|Immersion foot, left foot, sequela +C2886277|T037|AB|T69.029|ICD10CM|Immersion foot, unspecified foot|Immersion foot, unspecified foot +C2886277|T037|HT|T69.029|ICD10CM|Immersion foot, unspecified foot|Immersion foot, unspecified foot +C2886278|T037|AB|T69.029A|ICD10CM|Immersion foot, unspecified foot, initial encounter|Immersion foot, unspecified foot, initial encounter +C2886278|T037|PT|T69.029A|ICD10CM|Immersion foot, unspecified foot, initial encounter|Immersion foot, unspecified foot, initial encounter +C2886279|T037|AB|T69.029D|ICD10CM|Immersion foot, unspecified foot, subsequent encounter|Immersion foot, unspecified foot, subsequent encounter +C2886279|T037|PT|T69.029D|ICD10CM|Immersion foot, unspecified foot, subsequent encounter|Immersion foot, unspecified foot, subsequent encounter +C2886280|T037|AB|T69.029S|ICD10CM|Immersion foot, unspecified foot, sequela|Immersion foot, unspecified foot, sequela +C2886280|T037|PT|T69.029S|ICD10CM|Immersion foot, unspecified foot, sequela|Immersion foot, unspecified foot, sequela +C0008058|T047|HT|T69.1|ICD10CM|Chilblains|Chilblains +C0008058|T047|AB|T69.1|ICD10CM|Chilblains|Chilblains +C0008058|T047|PS|T69.1|ICD10|Chilblains|Chilblains +C0008058|T047|PX|T69.1|ICD10|Effects of chilblains|Effects of chilblains +C2886281|T037|PT|T69.1XXA|ICD10CM|Chilblains, initial encounter|Chilblains, initial encounter +C2886281|T037|AB|T69.1XXA|ICD10CM|Chilblains, initial encounter|Chilblains, initial encounter +C2886282|T037|PT|T69.1XXD|ICD10CM|Chilblains, subsequent encounter|Chilblains, subsequent encounter +C2886282|T037|AB|T69.1XXD|ICD10CM|Chilblains, subsequent encounter|Chilblains, subsequent encounter +C2886283|T037|PT|T69.1XXS|ICD10CM|Chilblains, sequela|Chilblains, sequela +C2886283|T037|AB|T69.1XXS|ICD10CM|Chilblains, sequela|Chilblains, sequela +C0161738|T037|PT|T69.8|ICD10|Other specified effects of reduced temperature|Other specified effects of reduced temperature +C0161738|T037|HT|T69.8|ICD10CM|Other specified effects of reduced temperature|Other specified effects of reduced temperature +C0161738|T037|AB|T69.8|ICD10CM|Other specified effects of reduced temperature|Other specified effects of reduced temperature +C2886284|T037|AB|T69.8XXA|ICD10CM|Other specified effects of reduced temperature, init encntr|Other specified effects of reduced temperature, init encntr +C2886284|T037|PT|T69.8XXA|ICD10CM|Other specified effects of reduced temperature, initial encounter|Other specified effects of reduced temperature, initial encounter +C2886285|T037|AB|T69.8XXD|ICD10CM|Other specified effects of reduced temperature, subs encntr|Other specified effects of reduced temperature, subs encntr +C2886285|T037|PT|T69.8XXD|ICD10CM|Other specified effects of reduced temperature, subsequent encounter|Other specified effects of reduced temperature, subsequent encounter +C2886286|T037|AB|T69.8XXS|ICD10CM|Other specified effects of reduced temperature, sequela|Other specified effects of reduced temperature, sequela +C2886286|T037|PT|T69.8XXS|ICD10CM|Other specified effects of reduced temperature, sequela|Other specified effects of reduced temperature, sequela +C0161734|T037|HT|T69.9|ICD10CM|Effect of reduced temperature, unspecified|Effect of reduced temperature, unspecified +C0161734|T037|AB|T69.9|ICD10CM|Effect of reduced temperature, unspecified|Effect of reduced temperature, unspecified +C0161734|T037|PT|T69.9|ICD10|Effect of reduced temperature, unspecified|Effect of reduced temperature, unspecified +C2886287|T037|AB|T69.9XXA|ICD10CM|Effect of reduced temperature, unspecified, init encntr|Effect of reduced temperature, unspecified, init encntr +C2886287|T037|PT|T69.9XXA|ICD10CM|Effect of reduced temperature, unspecified, initial encounter|Effect of reduced temperature, unspecified, initial encounter +C2886288|T037|AB|T69.9XXD|ICD10CM|Effect of reduced temperature, unspecified, subs encntr|Effect of reduced temperature, unspecified, subs encntr +C2886288|T037|PT|T69.9XXD|ICD10CM|Effect of reduced temperature, unspecified, subsequent encounter|Effect of reduced temperature, unspecified, subsequent encounter +C2886289|T037|AB|T69.9XXS|ICD10CM|Effect of reduced temperature, unspecified, sequela|Effect of reduced temperature, unspecified, sequela +C2886289|T037|PT|T69.9XXS|ICD10CM|Effect of reduced temperature, unspecified, sequela|Effect of reduced temperature, unspecified, sequela +C0496116|T037|HT|T70|ICD10|Effects of air pressure and water pressure|Effects of air pressure and water pressure +C0496116|T037|AB|T70|ICD10CM|Effects of air pressure and water pressure|Effects of air pressure and water pressure +C0496116|T037|HT|T70|ICD10CM|Effects of air pressure and water pressure|Effects of air pressure and water pressure +C0161744|T037|ET|T70.0|ICD10CM|Aero-otitis media|Aero-otitis media +C2886290|T037|ET|T70.0|ICD10CM|Effects of change in ambient atmospheric pressure or water pressure on ears|Effects of change in ambient atmospheric pressure or water pressure on ears +C0161744|T037|PX|T70.0|ICD10|Effects of otitic barotrauma|Effects of otitic barotrauma +C0161744|T037|PS|T70.0|ICD10|Otitic barotrauma|Otitic barotrauma +C0161744|T037|HT|T70.0|ICD10CM|Otitic barotrauma|Otitic barotrauma +C0161744|T037|AB|T70.0|ICD10CM|Otitic barotrauma|Otitic barotrauma +C2886291|T037|PT|T70.0XXA|ICD10CM|Otitic barotrauma, initial encounter|Otitic barotrauma, initial encounter +C2886291|T037|AB|T70.0XXA|ICD10CM|Otitic barotrauma, initial encounter|Otitic barotrauma, initial encounter +C2886292|T037|PT|T70.0XXD|ICD10CM|Otitic barotrauma, subsequent encounter|Otitic barotrauma, subsequent encounter +C2886292|T037|AB|T70.0XXD|ICD10CM|Otitic barotrauma, subsequent encounter|Otitic barotrauma, subsequent encounter +C2886293|T037|PT|T70.0XXS|ICD10CM|Otitic barotrauma, sequela|Otitic barotrauma, sequela +C2886293|T037|AB|T70.0XXS|ICD10CM|Otitic barotrauma, sequela|Otitic barotrauma, sequela +C0161745|T037|ET|T70.1|ICD10CM|Aerosinusitis|Aerosinusitis +C2886294|T037|ET|T70.1|ICD10CM|Effects of change in ambient atmospheric pressure on sinuses|Effects of change in ambient atmospheric pressure on sinuses +C0161745|T037|PX|T70.1|ICD10|Effects of sinus barotrauma|Effects of sinus barotrauma +C0161745|T037|PS|T70.1|ICD10|Sinus barotrauma|Sinus barotrauma +C0161745|T037|HT|T70.1|ICD10CM|Sinus barotrauma|Sinus barotrauma +C0161745|T037|AB|T70.1|ICD10CM|Sinus barotrauma|Sinus barotrauma +C2886295|T037|PT|T70.1XXA|ICD10CM|Sinus barotrauma, initial encounter|Sinus barotrauma, initial encounter +C2886295|T037|AB|T70.1XXA|ICD10CM|Sinus barotrauma, initial encounter|Sinus barotrauma, initial encounter +C2886296|T037|PT|T70.1XXD|ICD10CM|Sinus barotrauma, subsequent encounter|Sinus barotrauma, subsequent encounter +C2886296|T037|AB|T70.1XXD|ICD10CM|Sinus barotrauma, subsequent encounter|Sinus barotrauma, subsequent encounter +C2886297|T037|PT|T70.1XXS|ICD10CM|Sinus barotrauma, sequela|Sinus barotrauma, sequela +C2886297|T037|AB|T70.1XXS|ICD10CM|Sinus barotrauma, sequela|Sinus barotrauma, sequela +C0029499|T037|PX|T70.2|ICD10|Effects of other and unspecified effects of high altitude|Effects of other and unspecified effects of high altitude +C0029499|T037|PS|T70.2|ICD10|Other and unspecified effects of high altitude|Other and unspecified effects of high altitude +C0029499|T037|HT|T70.2|ICD10CM|Other and unspecified effects of high altitude|Other and unspecified effects of high altitude +C0029499|T037|AB|T70.2|ICD10CM|Other and unspecified effects of high altitude|Other and unspecified effects of high altitude +C2886298|T037|AB|T70.20|ICD10CM|Unspecified effects of high altitude|Unspecified effects of high altitude +C2886298|T037|HT|T70.20|ICD10CM|Unspecified effects of high altitude|Unspecified effects of high altitude +C2886299|T037|PT|T70.20XA|ICD10CM|Unspecified effects of high altitude, initial encounter|Unspecified effects of high altitude, initial encounter +C2886299|T037|AB|T70.20XA|ICD10CM|Unspecified effects of high altitude, initial encounter|Unspecified effects of high altitude, initial encounter +C2886300|T037|PT|T70.20XD|ICD10CM|Unspecified effects of high altitude, subsequent encounter|Unspecified effects of high altitude, subsequent encounter +C2886300|T037|AB|T70.20XD|ICD10CM|Unspecified effects of high altitude, subsequent encounter|Unspecified effects of high altitude, subsequent encounter +C2886301|T037|PT|T70.20XS|ICD10CM|Unspecified effects of high altitude, sequela|Unspecified effects of high altitude, sequela +C2886301|T037|AB|T70.20XS|ICD10CM|Unspecified effects of high altitude, sequela|Unspecified effects of high altitude, sequela +C0002351|T047|ET|T70.29|ICD10CM|Alpine sickness|Alpine sickness +C0002351|T047|ET|T70.29|ICD10CM|Anoxia due to high altitude|Anoxia due to high altitude +C0004760|T037|ET|T70.29|ICD10CM|Barotrauma NOS|Barotrauma NOS +C0002351|T047|ET|T70.29|ICD10CM|Hypobaropathy|Hypobaropathy +C0002351|T047|ET|T70.29|ICD10CM|Mountain sickness|Mountain sickness +C2886302|T037|AB|T70.29|ICD10CM|Other effects of high altitude|Other effects of high altitude +C2886302|T037|HT|T70.29|ICD10CM|Other effects of high altitude|Other effects of high altitude +C2886303|T037|PT|T70.29XA|ICD10CM|Other effects of high altitude, initial encounter|Other effects of high altitude, initial encounter +C2886303|T037|AB|T70.29XA|ICD10CM|Other effects of high altitude, initial encounter|Other effects of high altitude, initial encounter +C2886304|T037|PT|T70.29XD|ICD10CM|Other effects of high altitude, subsequent encounter|Other effects of high altitude, subsequent encounter +C2886304|T037|AB|T70.29XD|ICD10CM|Other effects of high altitude, subsequent encounter|Other effects of high altitude, subsequent encounter +C2886305|T037|PT|T70.29XS|ICD10CM|Other effects of high altitude, sequela|Other effects of high altitude, sequela +C2886305|T037|AB|T70.29XS|ICD10CM|Other effects of high altitude, sequela|Other effects of high altitude, sequela +C0011119|T047|HT|T70.3|ICD10CM|Caisson disease [decompression sickness]|Caisson disease [decompression sickness] +C0011119|T047|AB|T70.3|ICD10CM|Caisson disease [decompression sickness]|Caisson disease [decompression sickness] +C0011119|T047|PS|T70.3|ICD10|Caisson disease [decompression sickness]|Caisson disease [decompression sickness] +C0011119|T047|ET|T70.3|ICD10CM|Compressed-air disease|Compressed-air disease +C0011119|T047|ET|T70.3|ICD10CM|Diver's palsy or paralysis|Diver's palsy or paralysis +C0011119|T047|PX|T70.3|ICD10|Effects of caisson disease [decompression sickness]|Effects of caisson disease [decompression sickness] +C2886306|T037|AB|T70.3XXA|ICD10CM|Caisson disease [decompression sickness], initial encounter|Caisson disease [decompression sickness], initial encounter +C2886306|T037|PT|T70.3XXA|ICD10CM|Caisson disease [decompression sickness], initial encounter|Caisson disease [decompression sickness], initial encounter +C2886307|T037|PT|T70.3XXD|ICD10CM|Caisson disease [decompression sickness], subsequent encounter|Caisson disease [decompression sickness], subsequent encounter +C2886307|T037|AB|T70.3XXD|ICD10CM|Caisson disease, subsequent encounter|Caisson disease, subsequent encounter +C2886308|T037|AB|T70.3XXS|ICD10CM|Caisson disease [decompression sickness], sequela|Caisson disease [decompression sickness], sequela +C2886308|T037|PT|T70.3XXS|ICD10CM|Caisson disease [decompression sickness], sequela|Caisson disease [decompression sickness], sequela +C0452130|T037|PT|T70.4|ICD10|Effects of high-pressure fluids|Effects of high-pressure fluids +C0452130|T037|HT|T70.4|ICD10CM|Effects of high-pressure fluids|Effects of high-pressure fluids +C0452130|T037|AB|T70.4|ICD10CM|Effects of high-pressure fluids|Effects of high-pressure fluids +C2886309|T037|ET|T70.4|ICD10CM|Hydraulic jet injection (industrial)|Hydraulic jet injection (industrial) +C2886310|T037|ET|T70.4|ICD10CM|Pneumatic jet injection (industrial)|Pneumatic jet injection (industrial) +C2886311|T037|ET|T70.4|ICD10CM|Traumatic jet injection (industrial)|Traumatic jet injection (industrial) +C2886312|T037|AB|T70.4XXA|ICD10CM|Effects of high-pressure fluids, initial encounter|Effects of high-pressure fluids, initial encounter +C2886312|T037|PT|T70.4XXA|ICD10CM|Effects of high-pressure fluids, initial encounter|Effects of high-pressure fluids, initial encounter +C2886313|T037|AB|T70.4XXD|ICD10CM|Effects of high-pressure fluids, subsequent encounter|Effects of high-pressure fluids, subsequent encounter +C2886313|T037|PT|T70.4XXD|ICD10CM|Effects of high-pressure fluids, subsequent encounter|Effects of high-pressure fluids, subsequent encounter +C2886314|T037|AB|T70.4XXS|ICD10CM|Effects of high-pressure fluids, sequela|Effects of high-pressure fluids, sequela +C2886314|T037|PT|T70.4XXS|ICD10CM|Effects of high-pressure fluids, sequela|Effects of high-pressure fluids, sequela +C0478477|T037|HT|T70.8|ICD10CM|Other effects of air pressure and water pressure|Other effects of air pressure and water pressure +C0478477|T037|AB|T70.8|ICD10CM|Other effects of air pressure and water pressure|Other effects of air pressure and water pressure +C0478477|T037|PT|T70.8|ICD10|Other effects of air pressure and water pressure|Other effects of air pressure and water pressure +C2886315|T037|AB|T70.8XXA|ICD10CM|Oth effects of air pressure and water pressure, init encntr|Oth effects of air pressure and water pressure, init encntr +C2886315|T037|PT|T70.8XXA|ICD10CM|Other effects of air pressure and water pressure, initial encounter|Other effects of air pressure and water pressure, initial encounter +C2886316|T037|AB|T70.8XXD|ICD10CM|Oth effects of air pressure and water pressure, subs encntr|Oth effects of air pressure and water pressure, subs encntr +C2886316|T037|PT|T70.8XXD|ICD10CM|Other effects of air pressure and water pressure, subsequent encounter|Other effects of air pressure and water pressure, subsequent encounter +C2886317|T037|AB|T70.8XXS|ICD10CM|Other effects of air pressure and water pressure, sequela|Other effects of air pressure and water pressure, sequela +C2886317|T037|PT|T70.8XXS|ICD10CM|Other effects of air pressure and water pressure, sequela|Other effects of air pressure and water pressure, sequela +C0496116|T037|PT|T70.9|ICD10|Effect of air pressure and water pressure, unspecified|Effect of air pressure and water pressure, unspecified +C0496116|T037|HT|T70.9|ICD10CM|Effect of air pressure and water pressure, unspecified|Effect of air pressure and water pressure, unspecified +C0496116|T037|AB|T70.9|ICD10CM|Effect of air pressure and water pressure, unspecified|Effect of air pressure and water pressure, unspecified +C2886318|T037|AB|T70.9XXA|ICD10CM|Effect of air pressure and water pressure, unsp, init encntr|Effect of air pressure and water pressure, unsp, init encntr +C2886318|T037|PT|T70.9XXA|ICD10CM|Effect of air pressure and water pressure, unspecified, initial encounter|Effect of air pressure and water pressure, unspecified, initial encounter +C2886319|T037|AB|T70.9XXD|ICD10CM|Effect of air pressure and water pressure, unsp, subs encntr|Effect of air pressure and water pressure, unsp, subs encntr +C2886319|T037|PT|T70.9XXD|ICD10CM|Effect of air pressure and water pressure, unspecified, subsequent encounter|Effect of air pressure and water pressure, unspecified, subsequent encounter +C2886320|T037|AB|T70.9XXS|ICD10CM|Effect of air pressure and water pressure, unsp, sequela|Effect of air pressure and water pressure, unsp, sequela +C2886320|T037|PT|T70.9XXS|ICD10CM|Effect of air pressure and water pressure, unspecified, sequela|Effect of air pressure and water pressure, unspecified, sequela +C0004044|T046|HT|T71|ICD10CM|Asphyxiation|Asphyxiation +C0004044|T046|AB|T71|ICD10CM|Asphyxiation|Asphyxiation +C0004044|T046|PT|T71|ICD10|Asphyxiation|Asphyxiation +C0344194|T037|ET|T71|ICD10CM|Mechanical suffocation|Mechanical suffocation +C2886321|T037|ET|T71|ICD10CM|Traumatic suffocation|Traumatic suffocation +C2886323|T037|AB|T71.1|ICD10CM|Asphyxiation due to mechanical threat to breathing|Asphyxiation due to mechanical threat to breathing +C2886323|T037|HT|T71.1|ICD10CM|Asphyxiation due to mechanical threat to breathing|Asphyxiation due to mechanical threat to breathing +C2886323|T037|ET|T71.1|ICD10CM|Suffocation due to mechanical threat to breathing|Suffocation due to mechanical threat to breathing +C2886324|T037|AB|T71.11|ICD10CM|Asphyxiation due to smothering under pillow|Asphyxiation due to smothering under pillow +C2886324|T037|HT|T71.11|ICD10CM|Asphyxiation due to smothering under pillow|Asphyxiation due to smothering under pillow +C2886324|T037|ET|T71.111|ICD10CM|Asphyxiation due to smothering under pillow NOS|Asphyxiation due to smothering under pillow NOS +C2886325|T037|AB|T71.111|ICD10CM|Asphyxiation due to smothering under pillow, accidental|Asphyxiation due to smothering under pillow, accidental +C2886325|T037|HT|T71.111|ICD10CM|Asphyxiation due to smothering under pillow, accidental|Asphyxiation due to smothering under pillow, accidental +C2886326|T037|AB|T71.111A|ICD10CM|Asphyx due to smothering under pillow, accidental, init|Asphyx due to smothering under pillow, accidental, init +C2886326|T037|PT|T71.111A|ICD10CM|Asphyxiation due to smothering under pillow, accidental, initial encounter|Asphyxiation due to smothering under pillow, accidental, initial encounter +C2886327|T037|AB|T71.111D|ICD10CM|Asphyx due to smothering under pillow, accidental, subs|Asphyx due to smothering under pillow, accidental, subs +C2886327|T037|PT|T71.111D|ICD10CM|Asphyxiation due to smothering under pillow, accidental, subsequent encounter|Asphyxiation due to smothering under pillow, accidental, subsequent encounter +C2886328|T037|AB|T71.111S|ICD10CM|Asphyx due to smothering under pillow, accidental, sequela|Asphyx due to smothering under pillow, accidental, sequela +C2886328|T037|PT|T71.111S|ICD10CM|Asphyxiation due to smothering under pillow, accidental, sequela|Asphyxiation due to smothering under pillow, accidental, sequela +C2886329|T037|HT|T71.112|ICD10CM|Asphyxiation due to smothering under pillow, intentional self-harm|Asphyxiation due to smothering under pillow, intentional self-harm +C2886329|T037|AB|T71.112|ICD10CM|Asphyxiation due to smothering under pillow, self-harm|Asphyxiation due to smothering under pillow, self-harm +C2886330|T037|PT|T71.112A|ICD10CM|Asphyxiation due to smothering under pillow, intentional self-harm, initial encounter|Asphyxiation due to smothering under pillow, intentional self-harm, initial encounter +C2886330|T037|AB|T71.112A|ICD10CM|Asphyxiation due to smothering under pillow, self-harm, init|Asphyxiation due to smothering under pillow, self-harm, init +C2886331|T037|PT|T71.112D|ICD10CM|Asphyxiation due to smothering under pillow, intentional self-harm, subsequent encounter|Asphyxiation due to smothering under pillow, intentional self-harm, subsequent encounter +C2886331|T037|AB|T71.112D|ICD10CM|Asphyxiation due to smothering under pillow, self-harm, subs|Asphyxiation due to smothering under pillow, self-harm, subs +C2886332|T037|AB|T71.112S|ICD10CM|Asphyx due to smothering under pillow, self-harm, sequela|Asphyx due to smothering under pillow, self-harm, sequela +C2886332|T037|PT|T71.112S|ICD10CM|Asphyxiation due to smothering under pillow, intentional self-harm, sequela|Asphyxiation due to smothering under pillow, intentional self-harm, sequela +C2886333|T037|AB|T71.113|ICD10CM|Asphyxiation due to smothering under pillow, assault|Asphyxiation due to smothering under pillow, assault +C2886333|T037|HT|T71.113|ICD10CM|Asphyxiation due to smothering under pillow, assault|Asphyxiation due to smothering under pillow, assault +C2886334|T037|AB|T71.113A|ICD10CM|Asphyxiation due to smothering under pillow, assault, init|Asphyxiation due to smothering under pillow, assault, init +C2886334|T037|PT|T71.113A|ICD10CM|Asphyxiation due to smothering under pillow, assault, initial encounter|Asphyxiation due to smothering under pillow, assault, initial encounter +C2886335|T037|AB|T71.113D|ICD10CM|Asphyxiation due to smothering under pillow, assault, subs|Asphyxiation due to smothering under pillow, assault, subs +C2886335|T037|PT|T71.113D|ICD10CM|Asphyxiation due to smothering under pillow, assault, subsequent encounter|Asphyxiation due to smothering under pillow, assault, subsequent encounter +C2886336|T037|AB|T71.113S|ICD10CM|Asphyx due to smothering under pillow, assault, sequela|Asphyx due to smothering under pillow, assault, sequela +C2886336|T037|PT|T71.113S|ICD10CM|Asphyxiation due to smothering under pillow, assault, sequela|Asphyxiation due to smothering under pillow, assault, sequela +C2886337|T037|AB|T71.114|ICD10CM|Asphyxiation due to smothering under pillow, undetermined|Asphyxiation due to smothering under pillow, undetermined +C2886337|T037|HT|T71.114|ICD10CM|Asphyxiation due to smothering under pillow, undetermined|Asphyxiation due to smothering under pillow, undetermined +C2886338|T037|AB|T71.114A|ICD10CM|Asphyx due to smothering under pillow, undetermined, init|Asphyx due to smothering under pillow, undetermined, init +C2886338|T037|PT|T71.114A|ICD10CM|Asphyxiation due to smothering under pillow, undetermined, initial encounter|Asphyxiation due to smothering under pillow, undetermined, initial encounter +C2886339|T037|AB|T71.114D|ICD10CM|Asphyx due to smothering under pillow, undetermined, subs|Asphyx due to smothering under pillow, undetermined, subs +C2886339|T037|PT|T71.114D|ICD10CM|Asphyxiation due to smothering under pillow, undetermined, subsequent encounter|Asphyxiation due to smothering under pillow, undetermined, subsequent encounter +C2886340|T037|AB|T71.114S|ICD10CM|Asphyx due to smothering under pillow, undetermined, sequela|Asphyx due to smothering under pillow, undetermined, sequela +C2886340|T037|PT|T71.114S|ICD10CM|Asphyxiation due to smothering under pillow, undetermined, sequela|Asphyxiation due to smothering under pillow, undetermined, sequela +C2886341|T037|AB|T71.12|ICD10CM|Asphyxiation due to plastic bag|Asphyxiation due to plastic bag +C2886341|T037|HT|T71.12|ICD10CM|Asphyxiation due to plastic bag|Asphyxiation due to plastic bag +C2886341|T037|ET|T71.121|ICD10CM|Asphyxiation due to plastic bag NOS|Asphyxiation due to plastic bag NOS +C2886342|T037|AB|T71.121|ICD10CM|Asphyxiation due to plastic bag, accidental|Asphyxiation due to plastic bag, accidental +C2886342|T037|HT|T71.121|ICD10CM|Asphyxiation due to plastic bag, accidental|Asphyxiation due to plastic bag, accidental +C2886343|T037|AB|T71.121A|ICD10CM|Asphyxiation due to plastic bag, accidental, init encntr|Asphyxiation due to plastic bag, accidental, init encntr +C2886343|T037|PT|T71.121A|ICD10CM|Asphyxiation due to plastic bag, accidental, initial encounter|Asphyxiation due to plastic bag, accidental, initial encounter +C2886344|T037|AB|T71.121D|ICD10CM|Asphyxiation due to plastic bag, accidental, subs encntr|Asphyxiation due to plastic bag, accidental, subs encntr +C2886344|T037|PT|T71.121D|ICD10CM|Asphyxiation due to plastic bag, accidental, subsequent encounter|Asphyxiation due to plastic bag, accidental, subsequent encounter +C2886345|T037|AB|T71.121S|ICD10CM|Asphyxiation due to plastic bag, accidental, sequela|Asphyxiation due to plastic bag, accidental, sequela +C2886345|T037|PT|T71.121S|ICD10CM|Asphyxiation due to plastic bag, accidental, sequela|Asphyxiation due to plastic bag, accidental, sequela +C2886346|T037|AB|T71.122|ICD10CM|Asphyxiation due to plastic bag, intentional self-harm|Asphyxiation due to plastic bag, intentional self-harm +C2886346|T037|HT|T71.122|ICD10CM|Asphyxiation due to plastic bag, intentional self-harm|Asphyxiation due to plastic bag, intentional self-harm +C2886347|T037|AB|T71.122A|ICD10CM|Asphyxiation due to plastic bag, intentional self-harm, init|Asphyxiation due to plastic bag, intentional self-harm, init +C2886347|T037|PT|T71.122A|ICD10CM|Asphyxiation due to plastic bag, intentional self-harm, initial encounter|Asphyxiation due to plastic bag, intentional self-harm, initial encounter +C2886348|T037|AB|T71.122D|ICD10CM|Asphyxiation due to plastic bag, intentional self-harm, subs|Asphyxiation due to plastic bag, intentional self-harm, subs +C2886348|T037|PT|T71.122D|ICD10CM|Asphyxiation due to plastic bag, intentional self-harm, subsequent encounter|Asphyxiation due to plastic bag, intentional self-harm, subsequent encounter +C2886349|T037|PT|T71.122S|ICD10CM|Asphyxiation due to plastic bag, intentional self-harm, sequela|Asphyxiation due to plastic bag, intentional self-harm, sequela +C2886349|T037|AB|T71.122S|ICD10CM|Asphyxiation due to plastic bag, self-harm, sequela|Asphyxiation due to plastic bag, self-harm, sequela +C2886350|T037|AB|T71.123|ICD10CM|Asphyxiation due to plastic bag, assault|Asphyxiation due to plastic bag, assault +C2886350|T037|HT|T71.123|ICD10CM|Asphyxiation due to plastic bag, assault|Asphyxiation due to plastic bag, assault +C2886351|T037|AB|T71.123A|ICD10CM|Asphyxiation due to plastic bag, assault, initial encounter|Asphyxiation due to plastic bag, assault, initial encounter +C2886351|T037|PT|T71.123A|ICD10CM|Asphyxiation due to plastic bag, assault, initial encounter|Asphyxiation due to plastic bag, assault, initial encounter +C2886352|T037|AB|T71.123D|ICD10CM|Asphyxiation due to plastic bag, assault, subs encntr|Asphyxiation due to plastic bag, assault, subs encntr +C2886352|T037|PT|T71.123D|ICD10CM|Asphyxiation due to plastic bag, assault, subsequent encounter|Asphyxiation due to plastic bag, assault, subsequent encounter +C2886353|T037|AB|T71.123S|ICD10CM|Asphyxiation due to plastic bag, assault, sequela|Asphyxiation due to plastic bag, assault, sequela +C2886353|T037|PT|T71.123S|ICD10CM|Asphyxiation due to plastic bag, assault, sequela|Asphyxiation due to plastic bag, assault, sequela +C2886354|T037|AB|T71.124|ICD10CM|Asphyxiation due to plastic bag, undetermined|Asphyxiation due to plastic bag, undetermined +C2886354|T037|HT|T71.124|ICD10CM|Asphyxiation due to plastic bag, undetermined|Asphyxiation due to plastic bag, undetermined +C2886355|T037|AB|T71.124A|ICD10CM|Asphyxiation due to plastic bag, undetermined, init encntr|Asphyxiation due to plastic bag, undetermined, init encntr +C2886355|T037|PT|T71.124A|ICD10CM|Asphyxiation due to plastic bag, undetermined, initial encounter|Asphyxiation due to plastic bag, undetermined, initial encounter +C2886356|T037|AB|T71.124D|ICD10CM|Asphyxiation due to plastic bag, undetermined, subs encntr|Asphyxiation due to plastic bag, undetermined, subs encntr +C2886356|T037|PT|T71.124D|ICD10CM|Asphyxiation due to plastic bag, undetermined, subsequent encounter|Asphyxiation due to plastic bag, undetermined, subsequent encounter +C2886357|T037|AB|T71.124S|ICD10CM|Asphyxiation due to plastic bag, undetermined, sequela|Asphyxiation due to plastic bag, undetermined, sequela +C2886357|T037|PT|T71.124S|ICD10CM|Asphyxiation due to plastic bag, undetermined, sequela|Asphyxiation due to plastic bag, undetermined, sequela +C2886358|T037|AB|T71.13|ICD10CM|Asphyxiation due to being trapped in bed linens|Asphyxiation due to being trapped in bed linens +C2886358|T037|HT|T71.13|ICD10CM|Asphyxiation due to being trapped in bed linens|Asphyxiation due to being trapped in bed linens +C2886358|T037|ET|T71.131|ICD10CM|Asphyxiation due to being trapped in bed linens NOS|Asphyxiation due to being trapped in bed linens NOS +C2886359|T037|AB|T71.131|ICD10CM|Asphyxiation due to being trapped in bed linens, accidental|Asphyxiation due to being trapped in bed linens, accidental +C2886359|T037|HT|T71.131|ICD10CM|Asphyxiation due to being trapped in bed linens, accidental|Asphyxiation due to being trapped in bed linens, accidental +C2886360|T037|AB|T71.131A|ICD10CM|Asphyx due to being trapped in bed linens, accidental, init|Asphyx due to being trapped in bed linens, accidental, init +C2886360|T037|PT|T71.131A|ICD10CM|Asphyxiation due to being trapped in bed linens, accidental, initial encounter|Asphyxiation due to being trapped in bed linens, accidental, initial encounter +C2886361|T037|AB|T71.131D|ICD10CM|Asphyx due to being trapped in bed linens, accidental, subs|Asphyx due to being trapped in bed linens, accidental, subs +C2886361|T037|PT|T71.131D|ICD10CM|Asphyxiation due to being trapped in bed linens, accidental, subsequent encounter|Asphyxiation due to being trapped in bed linens, accidental, subsequent encounter +C2886362|T037|AB|T71.131S|ICD10CM|Asphyx due to being trapped in bed linens, acc, sequela|Asphyx due to being trapped in bed linens, acc, sequela +C2886362|T037|PT|T71.131S|ICD10CM|Asphyxiation due to being trapped in bed linens, accidental, sequela|Asphyxiation due to being trapped in bed linens, accidental, sequela +C2886363|T037|HT|T71.132|ICD10CM|Asphyxiation due to being trapped in bed linens, intentional self-harm|Asphyxiation due to being trapped in bed linens, intentional self-harm +C2886363|T037|AB|T71.132|ICD10CM|Asphyxiation due to being trapped in bed linens, self-harm|Asphyxiation due to being trapped in bed linens, self-harm +C2886364|T037|AB|T71.132A|ICD10CM|Asphyx due to being trapped in bed linens, self-harm, init|Asphyx due to being trapped in bed linens, self-harm, init +C2886364|T037|PT|T71.132A|ICD10CM|Asphyxiation due to being trapped in bed linens, intentional self-harm, initial encounter|Asphyxiation due to being trapped in bed linens, intentional self-harm, initial encounter +C2886365|T037|AB|T71.132D|ICD10CM|Asphyx due to being trapped in bed linens, self-harm, subs|Asphyx due to being trapped in bed linens, self-harm, subs +C2886365|T037|PT|T71.132D|ICD10CM|Asphyxiation due to being trapped in bed linens, intentional self-harm, subsequent encounter|Asphyxiation due to being trapped in bed linens, intentional self-harm, subsequent encounter +C2886366|T037|AB|T71.132S|ICD10CM|Asphyx due to being trapped in bed linens, slf-hrm, sequela|Asphyx due to being trapped in bed linens, slf-hrm, sequela +C2886366|T037|PT|T71.132S|ICD10CM|Asphyxiation due to being trapped in bed linens, intentional self-harm, sequela|Asphyxiation due to being trapped in bed linens, intentional self-harm, sequela +C2886367|T037|AB|T71.133|ICD10CM|Asphyxiation due to being trapped in bed linens, assault|Asphyxiation due to being trapped in bed linens, assault +C2886367|T037|HT|T71.133|ICD10CM|Asphyxiation due to being trapped in bed linens, assault|Asphyxiation due to being trapped in bed linens, assault +C2886368|T037|AB|T71.133A|ICD10CM|Asphyx due to being trapped in bed linens, assault, init|Asphyx due to being trapped in bed linens, assault, init +C2886368|T037|PT|T71.133A|ICD10CM|Asphyxiation due to being trapped in bed linens, assault, initial encounter|Asphyxiation due to being trapped in bed linens, assault, initial encounter +C2886369|T037|AB|T71.133D|ICD10CM|Asphyx due to being trapped in bed linens, assault, subs|Asphyx due to being trapped in bed linens, assault, subs +C2886369|T037|PT|T71.133D|ICD10CM|Asphyxiation due to being trapped in bed linens, assault, subsequent encounter|Asphyxiation due to being trapped in bed linens, assault, subsequent encounter +C2886370|T037|AB|T71.133S|ICD10CM|Asphyx due to being trapped in bed linens, assault, sequela|Asphyx due to being trapped in bed linens, assault, sequela +C2886370|T037|PT|T71.133S|ICD10CM|Asphyxiation due to being trapped in bed linens, assault, sequela|Asphyxiation due to being trapped in bed linens, assault, sequela +C2886371|T037|AB|T71.134|ICD10CM|Asphyx due to being trapped in bed linens, undetermined|Asphyx due to being trapped in bed linens, undetermined +C2886371|T037|HT|T71.134|ICD10CM|Asphyxiation due to being trapped in bed linens, undetermined|Asphyxiation due to being trapped in bed linens, undetermined +C2886372|T037|AB|T71.134A|ICD10CM|Asphyx due to being trapped in bed linens, undet, init|Asphyx due to being trapped in bed linens, undet, init +C2886372|T037|PT|T71.134A|ICD10CM|Asphyxiation due to being trapped in bed linens, undetermined, initial encounter|Asphyxiation due to being trapped in bed linens, undetermined, initial encounter +C2886373|T037|AB|T71.134D|ICD10CM|Asphyx due to being trapped in bed linens, undet, subs|Asphyx due to being trapped in bed linens, undet, subs +C2886373|T037|PT|T71.134D|ICD10CM|Asphyxiation due to being trapped in bed linens, undetermined, subsequent encounter|Asphyxiation due to being trapped in bed linens, undetermined, subsequent encounter +C2886374|T037|AB|T71.134S|ICD10CM|Asphyx due to being trapped in bed linens, undet, sequela|Asphyx due to being trapped in bed linens, undet, sequela +C2886374|T037|PT|T71.134S|ICD10CM|Asphyxiation due to being trapped in bed linens, undetermined, sequela|Asphyxiation due to being trapped in bed linens, undetermined, sequela +C2886375|T037|AB|T71.14|ICD10CM|Asphyx due to smothr under another person's body (in bed)|Asphyx due to smothr under another person's body (in bed) +C2886375|T037|HT|T71.14|ICD10CM|Asphyxiation due to smothering under another person's body (in bed)|Asphyxiation due to smothering under another person's body (in bed) +C2886376|T037|AB|T71.141|ICD10CM|Asphyx due to smothr under another person's body, acc|Asphyx due to smothr under another person's body, acc +C2886375|T037|ET|T71.141|ICD10CM|Asphyxiation due to smothering under another person's body (in bed) NOS|Asphyxiation due to smothering under another person's body (in bed) NOS +C2886376|T037|HT|T71.141|ICD10CM|Asphyxiation due to smothering under another person's body (in bed), accidental|Asphyxiation due to smothering under another person's body (in bed), accidental +C2886377|T037|AB|T71.141A|ICD10CM|Asphyx due to smothr under another person's body, acc, init|Asphyx due to smothr under another person's body, acc, init +C2886377|T037|PT|T71.141A|ICD10CM|Asphyxiation due to smothering under another person's body (in bed), accidental, initial encounter|Asphyxiation due to smothering under another person's body (in bed), accidental, initial encounter +C2886378|T037|AB|T71.141D|ICD10CM|Asphyx due to smothr under another person's body, acc, subs|Asphyx due to smothr under another person's body, acc, subs +C2886379|T037|AB|T71.141S|ICD10CM|Asphyx due to smothr under another person's body, acc, sqla|Asphyx due to smothr under another person's body, acc, sqla +C2886379|T037|PT|T71.141S|ICD10CM|Asphyxiation due to smothering under another person's body (in bed), accidental, sequela|Asphyxiation due to smothering under another person's body (in bed), accidental, sequela +C2886380|T037|AB|T71.143|ICD10CM|Asphyx due to smothr under another person's body, assault|Asphyx due to smothr under another person's body, assault +C2886380|T037|HT|T71.143|ICD10CM|Asphyxiation due to smothering under another person's body (in bed), assault|Asphyxiation due to smothering under another person's body (in bed), assault +C2886381|T037|AB|T71.143A|ICD10CM|Asphyx d/t smothr under another person's body, asslt, init|Asphyx d/t smothr under another person's body, asslt, init +C2886381|T037|PT|T71.143A|ICD10CM|Asphyxiation due to smothering under another person's body (in bed), assault, initial encounter|Asphyxiation due to smothering under another person's body (in bed), assault, initial encounter +C2886382|T037|AB|T71.143D|ICD10CM|Asphyx d/t smothr under another person's body, asslt, subs|Asphyx d/t smothr under another person's body, asslt, subs +C2886382|T037|PT|T71.143D|ICD10CM|Asphyxiation due to smothering under another person's body (in bed), assault, subsequent encounter|Asphyxiation due to smothering under another person's body (in bed), assault, subsequent encounter +C2886383|T037|AB|T71.143S|ICD10CM|Asphyx d/t smothr under another person's body, asslt, sqla|Asphyx d/t smothr under another person's body, asslt, sqla +C2886383|T037|PT|T71.143S|ICD10CM|Asphyxiation due to smothering under another person's body (in bed), assault, sequela|Asphyxiation due to smothering under another person's body (in bed), assault, sequela +C2886384|T037|AB|T71.144|ICD10CM|Asphyx due to smothr under another person's body, undet|Asphyx due to smothr under another person's body, undet +C2886384|T037|HT|T71.144|ICD10CM|Asphyxiation due to smothering under another person's body (in bed), undetermined|Asphyxiation due to smothering under another person's body (in bed), undetermined +C2886385|T037|AB|T71.144A|ICD10CM|Asphyx d/t smothr under another person's body, undet, init|Asphyx d/t smothr under another person's body, undet, init +C2886385|T037|PT|T71.144A|ICD10CM|Asphyxiation due to smothering under another person's body (in bed), undetermined, initial encounter|Asphyxiation due to smothering under another person's body (in bed), undetermined, initial encounter +C2886386|T037|AB|T71.144D|ICD10CM|Asphyx d/t smothr under another person's body, undet, subs|Asphyx d/t smothr under another person's body, undet, subs +C2886387|T037|AB|T71.144S|ICD10CM|Asphyx d/t smothr under another person's body, undet, sqla|Asphyx d/t smothr under another person's body, undet, sqla +C2886387|T037|PT|T71.144S|ICD10CM|Asphyxiation due to smothering under another person's body (in bed), undetermined, sequela|Asphyxiation due to smothering under another person's body (in bed), undetermined, sequela +C2886388|T037|AB|T71.15|ICD10CM|Asphyxiation due to smothering in furniture|Asphyxiation due to smothering in furniture +C2886388|T037|HT|T71.15|ICD10CM|Asphyxiation due to smothering in furniture|Asphyxiation due to smothering in furniture +C2886388|T037|ET|T71.151|ICD10CM|Asphyxiation due to smothering in furniture NOS|Asphyxiation due to smothering in furniture NOS +C2886389|T037|AB|T71.151|ICD10CM|Asphyxiation due to smothering in furniture, accidental|Asphyxiation due to smothering in furniture, accidental +C2886389|T037|HT|T71.151|ICD10CM|Asphyxiation due to smothering in furniture, accidental|Asphyxiation due to smothering in furniture, accidental +C2886390|T037|AB|T71.151A|ICD10CM|Asphyx due to smothering in furniture, accidental, init|Asphyx due to smothering in furniture, accidental, init +C2886390|T037|PT|T71.151A|ICD10CM|Asphyxiation due to smothering in furniture, accidental, initial encounter|Asphyxiation due to smothering in furniture, accidental, initial encounter +C2886391|T037|AB|T71.151D|ICD10CM|Asphyx due to smothering in furniture, accidental, subs|Asphyx due to smothering in furniture, accidental, subs +C2886391|T037|PT|T71.151D|ICD10CM|Asphyxiation due to smothering in furniture, accidental, subsequent encounter|Asphyxiation due to smothering in furniture, accidental, subsequent encounter +C2886392|T037|AB|T71.151S|ICD10CM|Asphyx due to smothering in furniture, accidental, sequela|Asphyx due to smothering in furniture, accidental, sequela +C2886392|T037|PT|T71.151S|ICD10CM|Asphyxiation due to smothering in furniture, accidental, sequela|Asphyxiation due to smothering in furniture, accidental, sequela +C2886393|T037|HT|T71.152|ICD10CM|Asphyxiation due to smothering in furniture, intentional self-harm|Asphyxiation due to smothering in furniture, intentional self-harm +C2886393|T037|AB|T71.152|ICD10CM|Asphyxiation due to smothering in furniture, self-harm|Asphyxiation due to smothering in furniture, self-harm +C2886394|T037|PT|T71.152A|ICD10CM|Asphyxiation due to smothering in furniture, intentional self-harm, initial encounter|Asphyxiation due to smothering in furniture, intentional self-harm, initial encounter +C2886394|T037|AB|T71.152A|ICD10CM|Asphyxiation due to smothering in furniture, self-harm, init|Asphyxiation due to smothering in furniture, self-harm, init +C2886395|T037|PT|T71.152D|ICD10CM|Asphyxiation due to smothering in furniture, intentional self-harm, subsequent encounter|Asphyxiation due to smothering in furniture, intentional self-harm, subsequent encounter +C2886395|T037|AB|T71.152D|ICD10CM|Asphyxiation due to smothering in furniture, self-harm, subs|Asphyxiation due to smothering in furniture, self-harm, subs +C2886396|T037|AB|T71.152S|ICD10CM|Asphyx due to smothering in furniture, self-harm, sequela|Asphyx due to smothering in furniture, self-harm, sequela +C2886396|T037|PT|T71.152S|ICD10CM|Asphyxiation due to smothering in furniture, intentional self-harm, sequela|Asphyxiation due to smothering in furniture, intentional self-harm, sequela +C2886397|T037|AB|T71.153|ICD10CM|Asphyxiation due to smothering in furniture, assault|Asphyxiation due to smothering in furniture, assault +C2886397|T037|HT|T71.153|ICD10CM|Asphyxiation due to smothering in furniture, assault|Asphyxiation due to smothering in furniture, assault +C2886398|T037|AB|T71.153A|ICD10CM|Asphyxiation due to smothering in furniture, assault, init|Asphyxiation due to smothering in furniture, assault, init +C2886398|T037|PT|T71.153A|ICD10CM|Asphyxiation due to smothering in furniture, assault, initial encounter|Asphyxiation due to smothering in furniture, assault, initial encounter +C2886399|T037|AB|T71.153D|ICD10CM|Asphyxiation due to smothering in furniture, assault, subs|Asphyxiation due to smothering in furniture, assault, subs +C2886399|T037|PT|T71.153D|ICD10CM|Asphyxiation due to smothering in furniture, assault, subsequent encounter|Asphyxiation due to smothering in furniture, assault, subsequent encounter +C2886400|T037|AB|T71.153S|ICD10CM|Asphyx due to smothering in furniture, assault, sequela|Asphyx due to smothering in furniture, assault, sequela +C2886400|T037|PT|T71.153S|ICD10CM|Asphyxiation due to smothering in furniture, assault, sequela|Asphyxiation due to smothering in furniture, assault, sequela +C2886401|T037|AB|T71.154|ICD10CM|Asphyxiation due to smothering in furniture, undetermined|Asphyxiation due to smothering in furniture, undetermined +C2886401|T037|HT|T71.154|ICD10CM|Asphyxiation due to smothering in furniture, undetermined|Asphyxiation due to smothering in furniture, undetermined +C2886402|T037|AB|T71.154A|ICD10CM|Asphyx due to smothering in furniture, undetermined, init|Asphyx due to smothering in furniture, undetermined, init +C2886402|T037|PT|T71.154A|ICD10CM|Asphyxiation due to smothering in furniture, undetermined, initial encounter|Asphyxiation due to smothering in furniture, undetermined, initial encounter +C2886403|T037|AB|T71.154D|ICD10CM|Asphyx due to smothering in furniture, undetermined, subs|Asphyx due to smothering in furniture, undetermined, subs +C2886403|T037|PT|T71.154D|ICD10CM|Asphyxiation due to smothering in furniture, undetermined, subsequent encounter|Asphyxiation due to smothering in furniture, undetermined, subsequent encounter +C2886404|T037|AB|T71.154S|ICD10CM|Asphyx due to smothering in furniture, undetermined, sequela|Asphyx due to smothering in furniture, undetermined, sequela +C2886404|T037|PT|T71.154S|ICD10CM|Asphyxiation due to smothering in furniture, undetermined, sequela|Asphyxiation due to smothering in furniture, undetermined, sequela +C2886406|T037|AB|T71.16|ICD10CM|Asphyxiation due to hanging|Asphyxiation due to hanging +C2886406|T037|HT|T71.16|ICD10CM|Asphyxiation due to hanging|Asphyxiation due to hanging +C2886405|T037|ET|T71.16|ICD10CM|Hanging by window shade cord|Hanging by window shade cord +C2886406|T037|ET|T71.161|ICD10CM|Asphyxiation due to hanging NOS|Asphyxiation due to hanging NOS +C2886407|T037|AB|T71.161|ICD10CM|Asphyxiation due to hanging, accidental|Asphyxiation due to hanging, accidental +C2886407|T037|HT|T71.161|ICD10CM|Asphyxiation due to hanging, accidental|Asphyxiation due to hanging, accidental +C0544691|T037|ET|T71.161|ICD10CM|Hanging NOS|Hanging NOS +C2886408|T037|AB|T71.161A|ICD10CM|Asphyxiation due to hanging, accidental, initial encounter|Asphyxiation due to hanging, accidental, initial encounter +C2886408|T037|PT|T71.161A|ICD10CM|Asphyxiation due to hanging, accidental, initial encounter|Asphyxiation due to hanging, accidental, initial encounter +C2886409|T037|AB|T71.161D|ICD10CM|Asphyxiation due to hanging, accidental, subs encntr|Asphyxiation due to hanging, accidental, subs encntr +C2886409|T037|PT|T71.161D|ICD10CM|Asphyxiation due to hanging, accidental, subsequent encounter|Asphyxiation due to hanging, accidental, subsequent encounter +C2886410|T037|AB|T71.161S|ICD10CM|Asphyxiation due to hanging, accidental, sequela|Asphyxiation due to hanging, accidental, sequela +C2886410|T037|PT|T71.161S|ICD10CM|Asphyxiation due to hanging, accidental, sequela|Asphyxiation due to hanging, accidental, sequela +C2886411|T037|AB|T71.162|ICD10CM|Asphyxiation due to hanging, intentional self-harm|Asphyxiation due to hanging, intentional self-harm +C2886411|T037|HT|T71.162|ICD10CM|Asphyxiation due to hanging, intentional self-harm|Asphyxiation due to hanging, intentional self-harm +C2886412|T037|AB|T71.162A|ICD10CM|Asphyxiation due to hanging, intentional self-harm, init|Asphyxiation due to hanging, intentional self-harm, init +C2886412|T037|PT|T71.162A|ICD10CM|Asphyxiation due to hanging, intentional self-harm, initial encounter|Asphyxiation due to hanging, intentional self-harm, initial encounter +C2886413|T037|AB|T71.162D|ICD10CM|Asphyxiation due to hanging, intentional self-harm, subs|Asphyxiation due to hanging, intentional self-harm, subs +C2886413|T037|PT|T71.162D|ICD10CM|Asphyxiation due to hanging, intentional self-harm, subsequent encounter|Asphyxiation due to hanging, intentional self-harm, subsequent encounter +C2886414|T037|AB|T71.162S|ICD10CM|Asphyxiation due to hanging, intentional self-harm, sequela|Asphyxiation due to hanging, intentional self-harm, sequela +C2886414|T037|PT|T71.162S|ICD10CM|Asphyxiation due to hanging, intentional self-harm, sequela|Asphyxiation due to hanging, intentional self-harm, sequela +C2886415|T037|AB|T71.163|ICD10CM|Asphyxiation due to hanging, assault|Asphyxiation due to hanging, assault +C2886415|T037|HT|T71.163|ICD10CM|Asphyxiation due to hanging, assault|Asphyxiation due to hanging, assault +C2886416|T037|AB|T71.163A|ICD10CM|Asphyxiation due to hanging, assault, initial encounter|Asphyxiation due to hanging, assault, initial encounter +C2886416|T037|PT|T71.163A|ICD10CM|Asphyxiation due to hanging, assault, initial encounter|Asphyxiation due to hanging, assault, initial encounter +C2886417|T037|AB|T71.163D|ICD10CM|Asphyxiation due to hanging, assault, subsequent encounter|Asphyxiation due to hanging, assault, subsequent encounter +C2886417|T037|PT|T71.163D|ICD10CM|Asphyxiation due to hanging, assault, subsequent encounter|Asphyxiation due to hanging, assault, subsequent encounter +C2886418|T037|AB|T71.163S|ICD10CM|Asphyxiation due to hanging, assault, sequela|Asphyxiation due to hanging, assault, sequela +C2886418|T037|PT|T71.163S|ICD10CM|Asphyxiation due to hanging, assault, sequela|Asphyxiation due to hanging, assault, sequela +C2886419|T037|AB|T71.164|ICD10CM|Asphyxiation due to hanging, undetermined|Asphyxiation due to hanging, undetermined +C2886419|T037|HT|T71.164|ICD10CM|Asphyxiation due to hanging, undetermined|Asphyxiation due to hanging, undetermined +C2886420|T037|AB|T71.164A|ICD10CM|Asphyxiation due to hanging, undetermined, initial encounter|Asphyxiation due to hanging, undetermined, initial encounter +C2886420|T037|PT|T71.164A|ICD10CM|Asphyxiation due to hanging, undetermined, initial encounter|Asphyxiation due to hanging, undetermined, initial encounter +C2886421|T037|AB|T71.164D|ICD10CM|Asphyxiation due to hanging, undetermined, subs encntr|Asphyxiation due to hanging, undetermined, subs encntr +C2886421|T037|PT|T71.164D|ICD10CM|Asphyxiation due to hanging, undetermined, subsequent encounter|Asphyxiation due to hanging, undetermined, subsequent encounter +C2886422|T037|AB|T71.164S|ICD10CM|Asphyxiation due to hanging, undetermined, sequela|Asphyxiation due to hanging, undetermined, sequela +C2886422|T037|PT|T71.164S|ICD10CM|Asphyxiation due to hanging, undetermined, sequela|Asphyxiation due to hanging, undetermined, sequela +C2886423|T037|AB|T71.19|ICD10CM|Asphyx due to mech threat to breathing due to oth causes|Asphyx due to mech threat to breathing due to oth causes +C2886423|T037|HT|T71.19|ICD10CM|Asphyxiation due to mechanical threat to breathing due to other causes|Asphyxiation due to mechanical threat to breathing due to other causes +C2886425|T037|AB|T71.191|ICD10CM|Asphyx due to mech threat to breathe due to oth causes, acc|Asphyx due to mech threat to breathe due to oth causes, acc +C2886425|T037|HT|T71.191|ICD10CM|Asphyxiation due to mechanical threat to breathing due to other causes, accidental|Asphyxiation due to mechanical threat to breathing due to other causes, accidental +C2886424|T037|ET|T71.191|ICD10CM|Asphyxiation due to other causes NOS|Asphyxiation due to other causes NOS +C2886426|T037|AB|T71.191A|ICD10CM|Asphyx d/t mech threat to breathe d/t oth cause, acc, init|Asphyx d/t mech threat to breathe d/t oth cause, acc, init +C2886427|T037|AB|T71.191D|ICD10CM|Asphyx d/t mech threat to breathe d/t oth cause, acc, subs|Asphyx d/t mech threat to breathe d/t oth cause, acc, subs +C2886428|T037|AB|T71.191S|ICD10CM|Asphyx d/t mech threat to breathe d/t oth cause, acc, sqla|Asphyx d/t mech threat to breathe d/t oth cause, acc, sqla +C2886428|T037|PT|T71.191S|ICD10CM|Asphyxiation due to mechanical threat to breathing due to other causes, accidental, sequela|Asphyxiation due to mechanical threat to breathing due to other causes, accidental, sequela +C2886429|T037|AB|T71.192|ICD10CM|Asphyx d/t mech threat to breathe due to oth cause, slf-hrm|Asphyx d/t mech threat to breathe due to oth cause, slf-hrm +C2886429|T037|HT|T71.192|ICD10CM|Asphyxiation due to mechanical threat to breathing due to other causes, intentional self-harm|Asphyxiation due to mechanical threat to breathing due to other causes, intentional self-harm +C2886430|T037|AB|T71.192A|ICD10CM|Asphyx d/t mech thrt to breathe d/t oth cause, slf-hrm, init|Asphyx d/t mech thrt to breathe d/t oth cause, slf-hrm, init +C2886431|T037|AB|T71.192D|ICD10CM|Asphyx d/t mech thrt to breathe d/t oth cause, slf-hrm, subs|Asphyx d/t mech thrt to breathe d/t oth cause, slf-hrm, subs +C2886432|T037|AB|T71.192S|ICD10CM|Asphyx d/t mech thrt to breathe d/t oth cause, slf-hrm, sqla|Asphyx d/t mech thrt to breathe d/t oth cause, slf-hrm, sqla +C2886433|T037|AB|T71.193|ICD10CM|Asphyx due to mech threat to breathe due to oth cause, asslt|Asphyx due to mech threat to breathe due to oth cause, asslt +C2886433|T037|HT|T71.193|ICD10CM|Asphyxiation due to mechanical threat to breathing due to other causes, assault|Asphyxiation due to mechanical threat to breathing due to other causes, assault +C2886434|T037|AB|T71.193A|ICD10CM|Asphyx d/t mech threat to breathe d/t oth cause, asslt, init|Asphyx d/t mech threat to breathe d/t oth cause, asslt, init +C2886434|T037|PT|T71.193A|ICD10CM|Asphyxiation due to mechanical threat to breathing due to other causes, assault, initial encounter|Asphyxiation due to mechanical threat to breathing due to other causes, assault, initial encounter +C2886435|T037|AB|T71.193D|ICD10CM|Asphyx d/t mech threat to breathe d/t oth cause, asslt, subs|Asphyx d/t mech threat to breathe d/t oth cause, asslt, subs +C2886436|T037|AB|T71.193S|ICD10CM|Asphyx d/t mech threat to breathe d/t oth cause, asslt, sqla|Asphyx d/t mech threat to breathe d/t oth cause, asslt, sqla +C2886436|T037|PT|T71.193S|ICD10CM|Asphyxiation due to mechanical threat to breathing due to other causes, assault, sequela|Asphyxiation due to mechanical threat to breathing due to other causes, assault, sequela +C2886437|T037|AB|T71.194|ICD10CM|Asphyx due to mech threat to breathe due to oth cause, undet|Asphyx due to mech threat to breathe due to oth cause, undet +C2886437|T037|HT|T71.194|ICD10CM|Asphyxiation due to mechanical threat to breathing due to other causes, undetermined|Asphyxiation due to mechanical threat to breathing due to other causes, undetermined +C2886438|T037|AB|T71.194A|ICD10CM|Asphyx d/t mech threat to breathe d/t oth cause, undet, init|Asphyx d/t mech threat to breathe d/t oth cause, undet, init +C2886439|T037|AB|T71.194D|ICD10CM|Asphyx d/t mech threat to breathe d/t oth cause, undet, subs|Asphyx d/t mech threat to breathe d/t oth cause, undet, subs +C2886440|T037|AB|T71.194S|ICD10CM|Asphyx d/t mech threat to breathe d/t oth cause, undet, sqla|Asphyx d/t mech threat to breathe d/t oth cause, undet, sqla +C2886440|T037|PT|T71.194S|ICD10CM|Asphyxiation due to mechanical threat to breathing due to other causes, undetermined, sequela|Asphyxiation due to mechanical threat to breathing due to other causes, undetermined, sequela +C2886442|T037|AB|T71.2|ICD10CM|Asphyxiation due to systemic oxy defic due to low oxy in air|Asphyxiation due to systemic oxy defic due to low oxy in air +C2886442|T037|HT|T71.2|ICD10CM|Asphyxiation due to systemic oxygen deficiency due to low oxygen content in ambient air|Asphyxiation due to systemic oxygen deficiency due to low oxygen content in ambient air +C2886441|T037|ET|T71.2|ICD10CM|Suffocation due to systemic oxygen deficiency due to low oxygen content in ambient air|Suffocation due to systemic oxygen deficiency due to low oxygen content in ambient air +C2886443|T037|AB|T71.20|ICD10CM|Asphyx due to sys oxy defic due to low oxy in air unsp cause|Asphyx due to sys oxy defic due to low oxy in air unsp cause +C2886444|T037|AB|T71.20XA|ICD10CM|Asphyx d/t sys oxy defic d/t low oxy in air unsp cause, init|Asphyx d/t sys oxy defic d/t low oxy in air unsp cause, init +C2886445|T037|AB|T71.20XD|ICD10CM|Asphyx d/t sys oxy defic d/t low oxy in air unsp cause, subs|Asphyx d/t sys oxy defic d/t low oxy in air unsp cause, subs +C2886446|T037|AB|T71.20XS|ICD10CM|Asphyx d/t sys oxy defic d/t low oxy in air unsp cause, sqla|Asphyx d/t sys oxy defic d/t low oxy in air unsp cause, sqla +C2886447|T037|AB|T71.21|ICD10CM|Asphyxiation due to cave-in or falling earth|Asphyxiation due to cave-in or falling earth +C2886447|T037|HT|T71.21|ICD10CM|Asphyxiation due to cave-in or falling earth|Asphyxiation due to cave-in or falling earth +C2886448|T037|AB|T71.21XA|ICD10CM|Asphyxiation due to cave-in or falling earth, init encntr|Asphyxiation due to cave-in or falling earth, init encntr +C2886448|T037|PT|T71.21XA|ICD10CM|Asphyxiation due to cave-in or falling earth, initial encounter|Asphyxiation due to cave-in or falling earth, initial encounter +C2886449|T037|AB|T71.21XD|ICD10CM|Asphyxiation due to cave-in or falling earth, subs encntr|Asphyxiation due to cave-in or falling earth, subs encntr +C2886449|T037|PT|T71.21XD|ICD10CM|Asphyxiation due to cave-in or falling earth, subsequent encounter|Asphyxiation due to cave-in or falling earth, subsequent encounter +C2886450|T037|AB|T71.21XS|ICD10CM|Asphyxiation due to cave-in or falling earth, sequela|Asphyxiation due to cave-in or falling earth, sequela +C2886450|T037|PT|T71.21XS|ICD10CM|Asphyxiation due to cave-in or falling earth, sequela|Asphyxiation due to cave-in or falling earth, sequela +C2886451|T037|AB|T71.22|ICD10CM|Asphyxiation due to being trapped in a car trunk|Asphyxiation due to being trapped in a car trunk +C2886451|T037|HT|T71.22|ICD10CM|Asphyxiation due to being trapped in a car trunk|Asphyxiation due to being trapped in a car trunk +C2886452|T037|AB|T71.221|ICD10CM|Asphyxiation due to being trapped in a car trunk, accidental|Asphyxiation due to being trapped in a car trunk, accidental +C2886452|T037|HT|T71.221|ICD10CM|Asphyxiation due to being trapped in a car trunk, accidental|Asphyxiation due to being trapped in a car trunk, accidental +C2886453|T037|AB|T71.221A|ICD10CM|Asphyx due to being trapped in a car trunk, accidental, init|Asphyx due to being trapped in a car trunk, accidental, init +C2886453|T037|PT|T71.221A|ICD10CM|Asphyxiation due to being trapped in a car trunk, accidental, initial encounter|Asphyxiation due to being trapped in a car trunk, accidental, initial encounter +C2886454|T037|AB|T71.221D|ICD10CM|Asphyx due to being trapped in a car trunk, accidental, subs|Asphyx due to being trapped in a car trunk, accidental, subs +C2886454|T037|PT|T71.221D|ICD10CM|Asphyxiation due to being trapped in a car trunk, accidental, subsequent encounter|Asphyxiation due to being trapped in a car trunk, accidental, subsequent encounter +C2886455|T037|AB|T71.221S|ICD10CM|Asphyx due to being trapped in a car trunk, acc, sequela|Asphyx due to being trapped in a car trunk, acc, sequela +C2886455|T037|PT|T71.221S|ICD10CM|Asphyxiation due to being trapped in a car trunk, accidental, sequela|Asphyxiation due to being trapped in a car trunk, accidental, sequela +C2886456|T037|HT|T71.222|ICD10CM|Asphyxiation due to being trapped in a car trunk, intentional self-harm|Asphyxiation due to being trapped in a car trunk, intentional self-harm +C2886456|T037|AB|T71.222|ICD10CM|Asphyxiation due to being trapped in a car trunk, self-harm|Asphyxiation due to being trapped in a car trunk, self-harm +C2886457|T037|AB|T71.222A|ICD10CM|Asphyx due to being trapped in a car trunk, self-harm, init|Asphyx due to being trapped in a car trunk, self-harm, init +C2886457|T037|PT|T71.222A|ICD10CM|Asphyxiation due to being trapped in a car trunk, intentional self-harm, initial encounter|Asphyxiation due to being trapped in a car trunk, intentional self-harm, initial encounter +C2886458|T037|AB|T71.222D|ICD10CM|Asphyx due to being trapped in a car trunk, self-harm, subs|Asphyx due to being trapped in a car trunk, self-harm, subs +C2886458|T037|PT|T71.222D|ICD10CM|Asphyxiation due to being trapped in a car trunk, intentional self-harm, subsequent encounter|Asphyxiation due to being trapped in a car trunk, intentional self-harm, subsequent encounter +C2886459|T037|AB|T71.222S|ICD10CM|Asphyx due to being trapped in a car trunk, slf-hrm, sequela|Asphyx due to being trapped in a car trunk, slf-hrm, sequela +C2886459|T037|PT|T71.222S|ICD10CM|Asphyxiation due to being trapped in a car trunk, intentional self-harm, sequela|Asphyxiation due to being trapped in a car trunk, intentional self-harm, sequela +C2886460|T037|AB|T71.223|ICD10CM|Asphyxiation due to being trapped in a car trunk, assault|Asphyxiation due to being trapped in a car trunk, assault +C2886460|T037|HT|T71.223|ICD10CM|Asphyxiation due to being trapped in a car trunk, assault|Asphyxiation due to being trapped in a car trunk, assault +C2886461|T037|AB|T71.223A|ICD10CM|Asphyx due to being trapped in a car trunk, assault, init|Asphyx due to being trapped in a car trunk, assault, init +C2886461|T037|PT|T71.223A|ICD10CM|Asphyxiation due to being trapped in a car trunk, assault, initial encounter|Asphyxiation due to being trapped in a car trunk, assault, initial encounter +C2886462|T037|AB|T71.223D|ICD10CM|Asphyx due to being trapped in a car trunk, assault, subs|Asphyx due to being trapped in a car trunk, assault, subs +C2886462|T037|PT|T71.223D|ICD10CM|Asphyxiation due to being trapped in a car trunk, assault, subsequent encounter|Asphyxiation due to being trapped in a car trunk, assault, subsequent encounter +C2886463|T037|AB|T71.223S|ICD10CM|Asphyx due to being trapped in a car trunk, assault, sequela|Asphyx due to being trapped in a car trunk, assault, sequela +C2886463|T037|PT|T71.223S|ICD10CM|Asphyxiation due to being trapped in a car trunk, assault, sequela|Asphyxiation due to being trapped in a car trunk, assault, sequela +C2886464|T037|AB|T71.224|ICD10CM|Asphyx due to being trapped in a car trunk, undetermined|Asphyx due to being trapped in a car trunk, undetermined +C2886464|T037|HT|T71.224|ICD10CM|Asphyxiation due to being trapped in a car trunk, undetermined|Asphyxiation due to being trapped in a car trunk, undetermined +C2886465|T037|AB|T71.224A|ICD10CM|Asphyx due to being trapped in a car trunk, undet, init|Asphyx due to being trapped in a car trunk, undet, init +C2886465|T037|PT|T71.224A|ICD10CM|Asphyxiation due to being trapped in a car trunk, undetermined, initial encounter|Asphyxiation due to being trapped in a car trunk, undetermined, initial encounter +C2886466|T037|AB|T71.224D|ICD10CM|Asphyx due to being trapped in a car trunk, undet, subs|Asphyx due to being trapped in a car trunk, undet, subs +C2886466|T037|PT|T71.224D|ICD10CM|Asphyxiation due to being trapped in a car trunk, undetermined, subsequent encounter|Asphyxiation due to being trapped in a car trunk, undetermined, subsequent encounter +C2886467|T037|AB|T71.224S|ICD10CM|Asphyx due to being trapped in a car trunk, undet, sequela|Asphyx due to being trapped in a car trunk, undet, sequela +C2886467|T037|PT|T71.224S|ICD10CM|Asphyxiation due to being trapped in a car trunk, undetermined, sequela|Asphyxiation due to being trapped in a car trunk, undetermined, sequela +C2886468|T037|AB|T71.23|ICD10CM|Asphyx due to being trapped in a (discarded) refrigerator|Asphyx due to being trapped in a (discarded) refrigerator +C2886468|T037|HT|T71.23|ICD10CM|Asphyxiation due to being trapped in a (discarded) refrigerator|Asphyxiation due to being trapped in a (discarded) refrigerator +C2886469|T037|AB|T71.231|ICD10CM|Asphyx due to being trapped in a (discarded) refrig, acc|Asphyx due to being trapped in a (discarded) refrig, acc +C2886469|T037|HT|T71.231|ICD10CM|Asphyxiation due to being trapped in a (discarded) refrigerator, accidental|Asphyxiation due to being trapped in a (discarded) refrigerator, accidental +C2886470|T037|AB|T71.231A|ICD10CM|Asphyx due to being trap in a (discarded) refrig, acc, init|Asphyx due to being trap in a (discarded) refrig, acc, init +C2886470|T037|PT|T71.231A|ICD10CM|Asphyxiation due to being trapped in a (discarded) refrigerator, accidental, initial encounter|Asphyxiation due to being trapped in a (discarded) refrigerator, accidental, initial encounter +C2886471|T037|AB|T71.231D|ICD10CM|Asphyx due to being trap in a (discarded) refrig, acc, subs|Asphyx due to being trap in a (discarded) refrig, acc, subs +C2886471|T037|PT|T71.231D|ICD10CM|Asphyxiation due to being trapped in a (discarded) refrigerator, accidental, subsequent encounter|Asphyxiation due to being trapped in a (discarded) refrigerator, accidental, subsequent encounter +C2886472|T037|AB|T71.231S|ICD10CM|Asphyx due to being trap in a (discarded) refrig, acc, sqla|Asphyx due to being trap in a (discarded) refrig, acc, sqla +C2886472|T037|PT|T71.231S|ICD10CM|Asphyxiation due to being trapped in a (discarded) refrigerator, accidental, sequela|Asphyxiation due to being trapped in a (discarded) refrigerator, accidental, sequela +C2886473|T037|AB|T71.232|ICD10CM|Asphyx due to being trapped in a (discarded) refrig, slf-hrm|Asphyx due to being trapped in a (discarded) refrig, slf-hrm +C2886473|T037|HT|T71.232|ICD10CM|Asphyxiation due to being trapped in a (discarded) refrigerator, intentional self-harm|Asphyxiation due to being trapped in a (discarded) refrigerator, intentional self-harm +C2886474|T037|AB|T71.232A|ICD10CM|Asphyx d/t being trap in a (discarded) refrig, slf-hrm, init|Asphyx d/t being trap in a (discarded) refrig, slf-hrm, init +C2886475|T037|AB|T71.232D|ICD10CM|Asphyx d/t being trap in a (discarded) refrig, slf-hrm, subs|Asphyx d/t being trap in a (discarded) refrig, slf-hrm, subs +C2886476|T037|AB|T71.232S|ICD10CM|Asphyx d/t being trap in a (discarded) refrig, slf-hrm, sqla|Asphyx d/t being trap in a (discarded) refrig, slf-hrm, sqla +C2886476|T037|PT|T71.232S|ICD10CM|Asphyxiation due to being trapped in a (discarded) refrigerator, intentional self-harm, sequela|Asphyxiation due to being trapped in a (discarded) refrigerator, intentional self-harm, sequela +C2886477|T037|AB|T71.233|ICD10CM|Asphyx due to being trapped in a (discarded) refrig, assault|Asphyx due to being trapped in a (discarded) refrig, assault +C2886477|T037|HT|T71.233|ICD10CM|Asphyxiation due to being trapped in a (discarded) refrigerator, assault|Asphyxiation due to being trapped in a (discarded) refrigerator, assault +C2886478|T037|AB|T71.233A|ICD10CM|Asphyx d/t being trap in a (discarded) refrig, asslt, init|Asphyx d/t being trap in a (discarded) refrig, asslt, init +C2886478|T037|PT|T71.233A|ICD10CM|Asphyxiation due to being trapped in a (discarded) refrigerator, assault, initial encounter|Asphyxiation due to being trapped in a (discarded) refrigerator, assault, initial encounter +C2886479|T037|AB|T71.233D|ICD10CM|Asphyx d/t being trap in a (discarded) refrig, asslt, subs|Asphyx d/t being trap in a (discarded) refrig, asslt, subs +C2886479|T037|PT|T71.233D|ICD10CM|Asphyxiation due to being trapped in a (discarded) refrigerator, assault, subsequent encounter|Asphyxiation due to being trapped in a (discarded) refrigerator, assault, subsequent encounter +C2886480|T037|AB|T71.233S|ICD10CM|Asphyx d/t being trap in a (discarded) refrig, asslt, sqla|Asphyx d/t being trap in a (discarded) refrig, asslt, sqla +C2886480|T037|PT|T71.233S|ICD10CM|Asphyxiation due to being trapped in a (discarded) refrigerator, assault, sequela|Asphyxiation due to being trapped in a (discarded) refrigerator, assault, sequela +C2886481|T037|AB|T71.234|ICD10CM|Asphyx due to being trapped in a (discarded) refrig, undet|Asphyx due to being trapped in a (discarded) refrig, undet +C2886481|T037|HT|T71.234|ICD10CM|Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined|Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined +C2886482|T037|AB|T71.234A|ICD10CM|Asphyx d/t being trap in a (discarded) refrig, undet, init|Asphyx d/t being trap in a (discarded) refrig, undet, init +C2886482|T037|PT|T71.234A|ICD10CM|Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined, initial encounter|Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined, initial encounter +C2886483|T037|AB|T71.234D|ICD10CM|Asphyx d/t being trap in a (discarded) refrig, undet, subs|Asphyx d/t being trap in a (discarded) refrig, undet, subs +C2886483|T037|PT|T71.234D|ICD10CM|Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined, subsequent encounter|Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined, subsequent encounter +C2886484|T037|AB|T71.234S|ICD10CM|Asphyx d/t being trap in a (discarded) refrig, undet, sqla|Asphyx d/t being trap in a (discarded) refrig, undet, sqla +C2886484|T037|PT|T71.234S|ICD10CM|Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined, sequela|Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined, sequela +C2886485|T037|AB|T71.29|ICD10CM|Asphyx due to being trapped in oth low oxygen environment|Asphyx due to being trapped in oth low oxygen environment +C2886485|T037|HT|T71.29|ICD10CM|Asphyxiation due to being trapped in other low oxygen environment|Asphyxiation due to being trapped in other low oxygen environment +C2886486|T037|AB|T71.29XA|ICD10CM|Asphyx due to being trap in oth low oxygen environment, init|Asphyx due to being trap in oth low oxygen environment, init +C2886486|T037|PT|T71.29XA|ICD10CM|Asphyxiation due to being trapped in other low oxygen environment, initial encounter|Asphyxiation due to being trapped in other low oxygen environment, initial encounter +C2886487|T037|AB|T71.29XD|ICD10CM|Asphyx due to being trap in oth low oxygen environment, subs|Asphyx due to being trap in oth low oxygen environment, subs +C2886487|T037|PT|T71.29XD|ICD10CM|Asphyxiation due to being trapped in other low oxygen environment, subsequent encounter|Asphyxiation due to being trapped in other low oxygen environment, subsequent encounter +C2886488|T037|AB|T71.29XS|ICD10CM|Asphyx due to being trap in oth low oxygen environment, sqla|Asphyx due to being trap in oth low oxygen environment, sqla +C2886488|T037|PT|T71.29XS|ICD10CM|Asphyxiation due to being trapped in other low oxygen environment, sequela|Asphyxiation due to being trapped in other low oxygen environment, sequela +C2886492|T037|AB|T71.9|ICD10CM|Asphyxiation due to unspecified cause|Asphyxiation due to unspecified cause +C2886492|T037|HT|T71.9|ICD10CM|Asphyxiation due to unspecified cause|Asphyxiation due to unspecified cause +C2886489|T037|ET|T71.9|ICD10CM|Suffocation (by strangulation) due to unspecified cause|Suffocation (by strangulation) due to unspecified cause +C0004044|T046|ET|T71.9|ICD10CM|Suffocation NOS|Suffocation NOS +C2886490|T037|ET|T71.9|ICD10CM|Systemic oxygen deficiency due to low oxygen content in ambient air due to unspecified cause|Systemic oxygen deficiency due to low oxygen content in ambient air due to unspecified cause +C2886491|T037|ET|T71.9|ICD10CM|Systemic oxygen deficiency due to mechanical threat to breathing due to unspecified cause|Systemic oxygen deficiency due to mechanical threat to breathing due to unspecified cause +C0277619|T037|ET|T71.9|ICD10CM|Traumatic asphyxia NOS|Traumatic asphyxia NOS +C2886493|T037|AB|T71.9XXA|ICD10CM|Asphyxiation due to unspecified cause, initial encounter|Asphyxiation due to unspecified cause, initial encounter +C2886493|T037|PT|T71.9XXA|ICD10CM|Asphyxiation due to unspecified cause, initial encounter|Asphyxiation due to unspecified cause, initial encounter +C2886494|T037|AB|T71.9XXD|ICD10CM|Asphyxiation due to unspecified cause, subsequent encounter|Asphyxiation due to unspecified cause, subsequent encounter +C2886494|T037|PT|T71.9XXD|ICD10CM|Asphyxiation due to unspecified cause, subsequent encounter|Asphyxiation due to unspecified cause, subsequent encounter +C2886495|T037|AB|T71.9XXS|ICD10CM|Asphyxiation due to unspecified cause, sequela|Asphyxiation due to unspecified cause, sequela +C2886495|T037|PT|T71.9XXS|ICD10CM|Asphyxiation due to unspecified cause, sequela|Asphyxiation due to unspecified cause, sequela +C0496117|T037|HT|T73|ICD10|Effects of other deprivation|Effects of other deprivation +C0496117|T037|AB|T73|ICD10CM|Effects of other deprivation|Effects of other deprivation +C0496117|T037|HT|T73|ICD10CM|Effects of other deprivation|Effects of other deprivation +C1384607|T033|ET|T73.0|ICD10CM|Deprivation of food|Deprivation of food +C0311274|T037|PT|T73.0|ICD10|Effects of hunger|Effects of hunger +C0038187|T033|HT|T73.0|ICD10CM|Starvation|Starvation +C0038187|T033|AB|T73.0|ICD10CM|Starvation|Starvation +C2886496|T037|PT|T73.0XXA|ICD10CM|Starvation, initial encounter|Starvation, initial encounter +C2886496|T037|AB|T73.0XXA|ICD10CM|Starvation, initial encounter|Starvation, initial encounter +C2886497|T037|PT|T73.0XXD|ICD10CM|Starvation, subsequent encounter|Starvation, subsequent encounter +C2886497|T037|AB|T73.0XXD|ICD10CM|Starvation, subsequent encounter|Starvation, subsequent encounter +C2886498|T037|PT|T73.0XXS|ICD10CM|Starvation, sequela|Starvation, sequela +C2886498|T037|AB|T73.0XXS|ICD10CM|Starvation, sequela|Starvation, sequela +C0869332|T037|HT|T73.1|ICD10CM|Deprivation of water|Deprivation of water +C0869332|T037|AB|T73.1|ICD10CM|Deprivation of water|Deprivation of water +C0013680|T047|PT|T73.1|ICD10|Effects of thirst|Effects of thirst +C2886499|T037|AB|T73.1XXA|ICD10CM|Deprivation of water, initial encounter|Deprivation of water, initial encounter +C2886499|T037|PT|T73.1XXA|ICD10CM|Deprivation of water, initial encounter|Deprivation of water, initial encounter +C2886500|T037|AB|T73.1XXD|ICD10CM|Deprivation of water, subsequent encounter|Deprivation of water, subsequent encounter +C2886500|T037|PT|T73.1XXD|ICD10CM|Deprivation of water, subsequent encounter|Deprivation of water, subsequent encounter +C2886501|T037|AB|T73.1XXS|ICD10CM|Deprivation of water, sequela|Deprivation of water, sequela +C2886501|T037|PT|T73.1XXS|ICD10CM|Deprivation of water, sequela|Deprivation of water, sequela +C0161749|T037|PT|T73.2|ICD10|Exhaustion due to exposure|Exhaustion due to exposure +C0161749|T037|HT|T73.2|ICD10CM|Exhaustion due to exposure|Exhaustion due to exposure +C0161749|T037|AB|T73.2|ICD10CM|Exhaustion due to exposure|Exhaustion due to exposure +C2886502|T037|AB|T73.2XXA|ICD10CM|Exhaustion due to exposure, initial encounter|Exhaustion due to exposure, initial encounter +C2886502|T037|PT|T73.2XXA|ICD10CM|Exhaustion due to exposure, initial encounter|Exhaustion due to exposure, initial encounter +C2886503|T037|AB|T73.2XXD|ICD10CM|Exhaustion due to exposure, subsequent encounter|Exhaustion due to exposure, subsequent encounter +C2886503|T037|PT|T73.2XXD|ICD10CM|Exhaustion due to exposure, subsequent encounter|Exhaustion due to exposure, subsequent encounter +C2886504|T037|AB|T73.2XXS|ICD10CM|Exhaustion due to exposure, sequela|Exhaustion due to exposure, sequela +C2886504|T037|PT|T73.2XXS|ICD10CM|Exhaustion due to exposure, sequela|Exhaustion due to exposure, sequela +C0161750|T037|HT|T73.3|ICD10CM|Exhaustion due to excessive exertion|Exhaustion due to excessive exertion +C0161750|T037|AB|T73.3|ICD10CM|Exhaustion due to excessive exertion|Exhaustion due to excessive exertion +C0161750|T037|PT|T73.3|ICD10|Exhaustion due to excessive exertion|Exhaustion due to excessive exertion +C2349753|T037|ET|T73.3|ICD10CM|Exhaustion due to overexertion|Exhaustion due to overexertion +C2886505|T037|AB|T73.3XXA|ICD10CM|Exhaustion due to excessive exertion, initial encounter|Exhaustion due to excessive exertion, initial encounter +C2886505|T037|PT|T73.3XXA|ICD10CM|Exhaustion due to excessive exertion, initial encounter|Exhaustion due to excessive exertion, initial encounter +C2886506|T037|AB|T73.3XXD|ICD10CM|Exhaustion due to excessive exertion, subsequent encounter|Exhaustion due to excessive exertion, subsequent encounter +C2886506|T037|PT|T73.3XXD|ICD10CM|Exhaustion due to excessive exertion, subsequent encounter|Exhaustion due to excessive exertion, subsequent encounter +C2886507|T037|AB|T73.3XXS|ICD10CM|Exhaustion due to excessive exertion, sequela|Exhaustion due to excessive exertion, sequela +C2886507|T037|PT|T73.3XXS|ICD10CM|Exhaustion due to excessive exertion, sequela|Exhaustion due to excessive exertion, sequela +C0478478|T037|HT|T73.8|ICD10CM|Other effects of deprivation|Other effects of deprivation +C0478478|T037|AB|T73.8|ICD10CM|Other effects of deprivation|Other effects of deprivation +C0478478|T037|PT|T73.8|ICD10|Other effects of deprivation|Other effects of deprivation +C2886508|T037|AB|T73.8XXA|ICD10CM|Other effects of deprivation, initial encounter|Other effects of deprivation, initial encounter +C2886508|T037|PT|T73.8XXA|ICD10CM|Other effects of deprivation, initial encounter|Other effects of deprivation, initial encounter +C2886509|T037|AB|T73.8XXD|ICD10CM|Other effects of deprivation, subsequent encounter|Other effects of deprivation, subsequent encounter +C2886509|T037|PT|T73.8XXD|ICD10CM|Other effects of deprivation, subsequent encounter|Other effects of deprivation, subsequent encounter +C2886510|T037|AB|T73.8XXS|ICD10CM|Other effects of deprivation, sequela|Other effects of deprivation, sequela +C2886510|T037|PT|T73.8XXS|ICD10CM|Other effects of deprivation, sequela|Other effects of deprivation, sequela +C0478482|T037|PT|T73.9|ICD10|Effect of deprivation, unspecified|Effect of deprivation, unspecified +C0478482|T037|HT|T73.9|ICD10CM|Effect of deprivation, unspecified|Effect of deprivation, unspecified +C0478482|T037|AB|T73.9|ICD10CM|Effect of deprivation, unspecified|Effect of deprivation, unspecified +C2886511|T037|AB|T73.9XXA|ICD10CM|Effect of deprivation, unspecified, initial encounter|Effect of deprivation, unspecified, initial encounter +C2886511|T037|PT|T73.9XXA|ICD10CM|Effect of deprivation, unspecified, initial encounter|Effect of deprivation, unspecified, initial encounter +C2886512|T037|AB|T73.9XXD|ICD10CM|Effect of deprivation, unspecified, subsequent encounter|Effect of deprivation, unspecified, subsequent encounter +C2886512|T037|PT|T73.9XXD|ICD10CM|Effect of deprivation, unspecified, subsequent encounter|Effect of deprivation, unspecified, subsequent encounter +C2886513|T037|AB|T73.9XXS|ICD10CM|Effect of deprivation, unspecified, sequela|Effect of deprivation, unspecified, sequela +C2886513|T037|PT|T73.9XXS|ICD10CM|Effect of deprivation, unspecified, sequela|Effect of deprivation, unspecified, sequela +C2886514|T037|AB|T74|ICD10CM|Adult and child abuse, neglect and oth maltreat, confirmed|Adult and child abuse, neglect and oth maltreat, confirmed +C2886514|T037|HT|T74|ICD10CM|Adult and child abuse, neglect and other maltreatment, confirmed|Adult and child abuse, neglect and other maltreatment, confirmed +C0452128|T037|HT|T74|ICD10|Maltreatment syndromes|Maltreatment syndromes +C0452129|T033|PT|T74.0|ICD10|Neglect or abandonment|Neglect or abandonment +C3647786|T033|AB|T74.0|ICD10CM|Neglect or abandonment, confirmed|Neglect or abandonment, confirmed +C3647786|T033|HT|T74.0|ICD10CM|Neglect or abandonment, confirmed|Neglect or abandonment, confirmed +C3647785|T037|AB|T74.01|ICD10CM|Adult neglect or abandonment, confirmed|Adult neglect or abandonment, confirmed +C3647785|T037|HT|T74.01|ICD10CM|Adult neglect or abandonment, confirmed|Adult neglect or abandonment, confirmed +C2886517|T037|PT|T74.01XA|ICD10CM|Adult neglect or abandonment, confirmed, initial encounter|Adult neglect or abandonment, confirmed, initial encounter +C2886517|T037|AB|T74.01XA|ICD10CM|Adult neglect or abandonment, confirmed, initial encounter|Adult neglect or abandonment, confirmed, initial encounter +C2886518|T037|AB|T74.01XD|ICD10CM|Adult neglect or abandonment, confirmed, subs encntr|Adult neglect or abandonment, confirmed, subs encntr +C2886518|T037|PT|T74.01XD|ICD10CM|Adult neglect or abandonment, confirmed, subsequent encounter|Adult neglect or abandonment, confirmed, subsequent encounter +C2886519|T037|PT|T74.01XS|ICD10CM|Adult neglect or abandonment, confirmed, sequela|Adult neglect or abandonment, confirmed, sequela +C2886519|T037|AB|T74.01XS|ICD10CM|Adult neglect or abandonment, confirmed, sequela|Adult neglect or abandonment, confirmed, sequela +C3647784|T033|AB|T74.02|ICD10CM|Child neglect or abandonment, confirmed|Child neglect or abandonment, confirmed +C3647784|T033|HT|T74.02|ICD10CM|Child neglect or abandonment, confirmed|Child neglect or abandonment, confirmed +C2886521|T037|PT|T74.02XA|ICD10CM|Child neglect or abandonment, confirmed, initial encounter|Child neglect or abandonment, confirmed, initial encounter +C2886521|T037|AB|T74.02XA|ICD10CM|Child neglect or abandonment, confirmed, initial encounter|Child neglect or abandonment, confirmed, initial encounter +C2886522|T037|AB|T74.02XD|ICD10CM|Child neglect or abandonment, confirmed, subs encntr|Child neglect or abandonment, confirmed, subs encntr +C2886522|T037|PT|T74.02XD|ICD10CM|Child neglect or abandonment, confirmed, subsequent encounter|Child neglect or abandonment, confirmed, subsequent encounter +C2886523|T037|PT|T74.02XS|ICD10CM|Child neglect or abandonment, confirmed, sequela|Child neglect or abandonment, confirmed, sequela +C2886523|T037|AB|T74.02XS|ICD10CM|Child neglect or abandonment, confirmed, sequela|Child neglect or abandonment, confirmed, sequela +C1621955|T037|PT|T74.1|ICD10|Physical abuse|Physical abuse +C3647781|T037|AB|T74.1|ICD10CM|Physical abuse, confirmed|Physical abuse, confirmed +C3647781|T037|HT|T74.1|ICD10CM|Physical abuse, confirmed|Physical abuse, confirmed +C2886525|T033|AB|T74.11|ICD10CM|Adult physical abuse, confirmed|Adult physical abuse, confirmed +C2886525|T033|HT|T74.11|ICD10CM|Adult physical abuse, confirmed|Adult physical abuse, confirmed +C2886526|T037|PT|T74.11XA|ICD10CM|Adult physical abuse, confirmed, initial encounter|Adult physical abuse, confirmed, initial encounter +C2886526|T037|AB|T74.11XA|ICD10CM|Adult physical abuse, confirmed, initial encounter|Adult physical abuse, confirmed, initial encounter +C2886527|T037|PT|T74.11XD|ICD10CM|Adult physical abuse, confirmed, subsequent encounter|Adult physical abuse, confirmed, subsequent encounter +C2886527|T037|AB|T74.11XD|ICD10CM|Adult physical abuse, confirmed, subsequent encounter|Adult physical abuse, confirmed, subsequent encounter +C2886528|T037|PT|T74.11XS|ICD10CM|Adult physical abuse, confirmed, sequela|Adult physical abuse, confirmed, sequela +C2886528|T037|AB|T74.11XS|ICD10CM|Adult physical abuse, confirmed, sequela|Adult physical abuse, confirmed, sequela +C2886529|T033|AB|T74.12|ICD10CM|Child physical abuse, confirmed|Child physical abuse, confirmed +C2886529|T033|HT|T74.12|ICD10CM|Child physical abuse, confirmed|Child physical abuse, confirmed +C2886530|T037|AB|T74.12XA|ICD10CM|Child physical abuse, confirmed, initial encounter|Child physical abuse, confirmed, initial encounter +C2886530|T037|PT|T74.12XA|ICD10CM|Child physical abuse, confirmed, initial encounter|Child physical abuse, confirmed, initial encounter +C2886531|T037|AB|T74.12XD|ICD10CM|Child physical abuse, confirmed, subsequent encounter|Child physical abuse, confirmed, subsequent encounter +C2886531|T037|PT|T74.12XD|ICD10CM|Child physical abuse, confirmed, subsequent encounter|Child physical abuse, confirmed, subsequent encounter +C2886532|T037|PT|T74.12XS|ICD10CM|Child physical abuse, confirmed, sequela|Child physical abuse, confirmed, sequela +C2886532|T037|AB|T74.12XS|ICD10CM|Child physical abuse, confirmed, sequela|Child physical abuse, confirmed, sequela +C2886533|T037|ET|T74.2|ICD10CM|Rape, confirmed|Rape, confirmed +C0282350|T037|PT|T74.2|ICD10|Sexual abuse|Sexual abuse +C3647775|T033|AB|T74.2|ICD10CM|Sexual abuse, confirmed|Sexual abuse, confirmed +C3647775|T033|HT|T74.2|ICD10CM|Sexual abuse, confirmed|Sexual abuse, confirmed +C2886534|T037|ET|T74.2|ICD10CM|Sexual assault, confirmed|Sexual assault, confirmed +C2886536|T033|AB|T74.21|ICD10CM|Adult sexual abuse, confirmed|Adult sexual abuse, confirmed +C2886536|T033|HT|T74.21|ICD10CM|Adult sexual abuse, confirmed|Adult sexual abuse, confirmed +C2886537|T037|PT|T74.21XA|ICD10CM|Adult sexual abuse, confirmed, initial encounter|Adult sexual abuse, confirmed, initial encounter +C2886537|T037|AB|T74.21XA|ICD10CM|Adult sexual abuse, confirmed, initial encounter|Adult sexual abuse, confirmed, initial encounter +C2886538|T037|PT|T74.21XD|ICD10CM|Adult sexual abuse, confirmed, subsequent encounter|Adult sexual abuse, confirmed, subsequent encounter +C2886538|T037|AB|T74.21XD|ICD10CM|Adult sexual abuse, confirmed, subsequent encounter|Adult sexual abuse, confirmed, subsequent encounter +C2886539|T037|PT|T74.21XS|ICD10CM|Adult sexual abuse, confirmed, sequela|Adult sexual abuse, confirmed, sequela +C2886539|T037|AB|T74.21XS|ICD10CM|Adult sexual abuse, confirmed, sequela|Adult sexual abuse, confirmed, sequela +C3508786|T033|AB|T74.22|ICD10CM|Child sexual abuse, confirmed|Child sexual abuse, confirmed +C3508786|T033|HT|T74.22|ICD10CM|Child sexual abuse, confirmed|Child sexual abuse, confirmed +C2886541|T037|AB|T74.22XA|ICD10CM|Child sexual abuse, confirmed, initial encounter|Child sexual abuse, confirmed, initial encounter +C2886541|T037|PT|T74.22XA|ICD10CM|Child sexual abuse, confirmed, initial encounter|Child sexual abuse, confirmed, initial encounter +C2886542|T037|AB|T74.22XD|ICD10CM|Child sexual abuse, confirmed, subsequent encounter|Child sexual abuse, confirmed, subsequent encounter +C2886542|T037|PT|T74.22XD|ICD10CM|Child sexual abuse, confirmed, subsequent encounter|Child sexual abuse, confirmed, subsequent encounter +C2886543|T037|PT|T74.22XS|ICD10CM|Child sexual abuse, confirmed, sequela|Child sexual abuse, confirmed, sequela +C2886543|T037|AB|T74.22XS|ICD10CM|Child sexual abuse, confirmed, sequela|Child sexual abuse, confirmed, sequela +C4702967|T033|ET|T74.3|ICD10CM|Bullying and intimidation, confirmed|Bullying and intimidation, confirmed +C4702970|T033|ET|T74.3|ICD10CM|Intimidation through social media, confirmed|Intimidation through social media, confirmed +C3647779|T048|PT|T74.3|ICD10|Psychological abuse|Psychological abuse +C3647778|T033|AB|T74.3|ICD10CM|Psychological abuse, confirmed|Psychological abuse, confirmed +C3647778|T033|HT|T74.3|ICD10CM|Psychological abuse, confirmed|Psychological abuse, confirmed +C2886545|T033|AB|T74.31|ICD10CM|Adult psychological abuse, confirmed|Adult psychological abuse, confirmed +C2886545|T033|HT|T74.31|ICD10CM|Adult psychological abuse, confirmed|Adult psychological abuse, confirmed +C2886546|T037|PT|T74.31XA|ICD10CM|Adult psychological abuse, confirmed, initial encounter|Adult psychological abuse, confirmed, initial encounter +C2886546|T037|AB|T74.31XA|ICD10CM|Adult psychological abuse, confirmed, initial encounter|Adult psychological abuse, confirmed, initial encounter +C2886547|T037|PT|T74.31XD|ICD10CM|Adult psychological abuse, confirmed, subsequent encounter|Adult psychological abuse, confirmed, subsequent encounter +C2886547|T037|AB|T74.31XD|ICD10CM|Adult psychological abuse, confirmed, subsequent encounter|Adult psychological abuse, confirmed, subsequent encounter +C2886548|T037|PT|T74.31XS|ICD10CM|Adult psychological abuse, confirmed, sequela|Adult psychological abuse, confirmed, sequela +C2886548|T037|AB|T74.31XS|ICD10CM|Adult psychological abuse, confirmed, sequela|Adult psychological abuse, confirmed, sequela +C2886549|T033|AB|T74.32|ICD10CM|Child psychological abuse, confirmed|Child psychological abuse, confirmed +C2886549|T033|HT|T74.32|ICD10CM|Child psychological abuse, confirmed|Child psychological abuse, confirmed +C2886550|T037|AB|T74.32XA|ICD10CM|Child psychological abuse, confirmed, initial encounter|Child psychological abuse, confirmed, initial encounter +C2886550|T037|PT|T74.32XA|ICD10CM|Child psychological abuse, confirmed, initial encounter|Child psychological abuse, confirmed, initial encounter +C2886551|T037|AB|T74.32XD|ICD10CM|Child psychological abuse, confirmed, subsequent encounter|Child psychological abuse, confirmed, subsequent encounter +C2886551|T037|PT|T74.32XD|ICD10CM|Child psychological abuse, confirmed, subsequent encounter|Child psychological abuse, confirmed, subsequent encounter +C2886552|T037|PT|T74.32XS|ICD10CM|Child psychological abuse, confirmed, sequela|Child psychological abuse, confirmed, sequela +C2886552|T037|AB|T74.32XS|ICD10CM|Child psychological abuse, confirmed, sequela|Child psychological abuse, confirmed, sequela +C0686721|T037|AB|T74.4|ICD10CM|Shaken infant syndrome|Shaken infant syndrome +C0686721|T037|HT|T74.4|ICD10CM|Shaken infant syndrome|Shaken infant syndrome +C2886553|T037|AB|T74.4XXA|ICD10CM|Shaken infant syndrome, initial encounter|Shaken infant syndrome, initial encounter +C2886553|T037|PT|T74.4XXA|ICD10CM|Shaken infant syndrome, initial encounter|Shaken infant syndrome, initial encounter +C2886554|T037|AB|T74.4XXD|ICD10CM|Shaken infant syndrome, subsequent encounter|Shaken infant syndrome, subsequent encounter +C2886554|T037|PT|T74.4XXD|ICD10CM|Shaken infant syndrome, subsequent encounter|Shaken infant syndrome, subsequent encounter +C2886555|T037|AB|T74.4XXS|ICD10CM|Shaken infant syndrome, sequela|Shaken infant syndrome, sequela +C2886555|T037|PT|T74.4XXS|ICD10CM|Shaken infant syndrome, sequela|Shaken infant syndrome, sequela +C4702964|T033|HT|T74.5|ICD10CM|Forced sexual exploitation, confirmed|Forced sexual exploitation, confirmed +C4702964|T033|AB|T74.5|ICD10CM|Forced sexual exploitation, confirmed|Forced sexual exploitation, confirmed +C4702961|T033|HT|T74.51|ICD10CM|Adult forced sexual exploitation, confirmed|Adult forced sexual exploitation, confirmed +C4702961|T033|AB|T74.51|ICD10CM|Adult forced sexual exploitation, confirmed|Adult forced sexual exploitation, confirmed +C4553432|T033|AB|T74.51XA|ICD10CM|Adult forced sexual exploitation, confirmed, init|Adult forced sexual exploitation, confirmed, init +C4553432|T033|PT|T74.51XA|ICD10CM|Adult forced sexual exploitation, confirmed, initial encounter|Adult forced sexual exploitation, confirmed, initial encounter +C4553433|T033|AB|T74.51XD|ICD10CM|Adult forced sexual exploitation, confirmed, subs|Adult forced sexual exploitation, confirmed, subs +C4553433|T033|PT|T74.51XD|ICD10CM|Adult forced sexual exploitation, confirmed, subsequent encounter|Adult forced sexual exploitation, confirmed, subsequent encounter +C4553434|T033|AB|T74.51XS|ICD10CM|Adult forced sexual exploitation, confirmed, sequela|Adult forced sexual exploitation, confirmed, sequela +C4553434|T033|PT|T74.51XS|ICD10CM|Adult forced sexual exploitation, confirmed, sequela|Adult forced sexual exploitation, confirmed, sequela +C4702958|T033|HT|T74.52|ICD10CM|Child sexual exploitation, confirmed|Child sexual exploitation, confirmed +C4702958|T033|AB|T74.52|ICD10CM|Child sexual exploitation, confirmed|Child sexual exploitation, confirmed +C4553435|T033|AB|T74.52XA|ICD10CM|Child sexual exploitation, confirmed, initial encounter|Child sexual exploitation, confirmed, initial encounter +C4553435|T033|PT|T74.52XA|ICD10CM|Child sexual exploitation, confirmed, initial encounter|Child sexual exploitation, confirmed, initial encounter +C4553436|T033|AB|T74.52XD|ICD10CM|Child sexual exploitation, confirmed, subsequent encounter|Child sexual exploitation, confirmed, subsequent encounter +C4553436|T033|PT|T74.52XD|ICD10CM|Child sexual exploitation, confirmed, subsequent encounter|Child sexual exploitation, confirmed, subsequent encounter +C4553437|T033|AB|T74.52XS|ICD10CM|Child sexual exploitation, confirmed, sequela|Child sexual exploitation, confirmed, sequela +C4553437|T033|PT|T74.52XS|ICD10CM|Child sexual exploitation, confirmed, sequela|Child sexual exploitation, confirmed, sequela +C4702975|T033|HT|T74.6|ICD10CM|Forced labor exploitation, confirmed|Forced labor exploitation, confirmed +C4702975|T033|AB|T74.6|ICD10CM|Forced labor exploitation, confirmed|Forced labor exploitation, confirmed +C4702977|T033|HT|T74.61|ICD10CM|Adult forced labor exploitation, confirmed|Adult forced labor exploitation, confirmed +C4702977|T033|AB|T74.61|ICD10CM|Adult forced labor exploitation, confirmed|Adult forced labor exploitation, confirmed +C4553438|T033|AB|T74.61XA|ICD10CM|Adult forced labor exploitation, confirmed, init|Adult forced labor exploitation, confirmed, init +C4553438|T033|PT|T74.61XA|ICD10CM|Adult forced labor exploitation, confirmed, initial encounter|Adult forced labor exploitation, confirmed, initial encounter +C4553439|T033|AB|T74.61XD|ICD10CM|Adult forced labor exploitation, confirmed, subs|Adult forced labor exploitation, confirmed, subs +C4553439|T033|PT|T74.61XD|ICD10CM|Adult forced labor exploitation, confirmed, subsequent encounter|Adult forced labor exploitation, confirmed, subsequent encounter +C4553440|T033|PT|T74.61XS|ICD10CM|Adult forced labor exploitation, confirmed, sequela|Adult forced labor exploitation, confirmed, sequela +C4553440|T033|AB|T74.61XS|ICD10CM|Adult forced labor exploitation, confirmed, sequela|Adult forced labor exploitation, confirmed, sequela +C4702976|T033|HT|T74.62|ICD10CM|Child forced labor exploitation, confirmed|Child forced labor exploitation, confirmed +C4702976|T033|AB|T74.62|ICD10CM|Child forced labor exploitation, confirmed|Child forced labor exploitation, confirmed +C4553441|T033|AB|T74.62XA|ICD10CM|Child forced labor exploitation, confirmed, init|Child forced labor exploitation, confirmed, init +C4553441|T033|PT|T74.62XA|ICD10CM|Child forced labor exploitation, confirmed, initial encounter|Child forced labor exploitation, confirmed, initial encounter +C4553442|T033|AB|T74.62XD|ICD10CM|Child forced labor exploitation, confirmed, subs|Child forced labor exploitation, confirmed, subs +C4553442|T033|PT|T74.62XD|ICD10CM|Child forced labor exploitation, confirmed, subsequent encounter|Child forced labor exploitation, confirmed, subsequent encounter +C4553443|T033|PT|T74.62XS|ICD10CM|Child forced labor exploitation, confirmed, sequela|Child forced labor exploitation, confirmed, sequela +C4553443|T033|AB|T74.62XS|ICD10CM|Child forced labor exploitation, confirmed, sequela|Child forced labor exploitation, confirmed, sequela +C0480746|T037|PT|T74.8|ICD10|Other maltreatment syndromes|Other maltreatment syndromes +C0452128|T037|PT|T74.9|ICD10|Maltreatment syndrome, unspecified|Maltreatment syndrome, unspecified +C2886556|T037|AB|T74.9|ICD10CM|Unspecified maltreatment, confirmed|Unspecified maltreatment, confirmed +C2886556|T037|HT|T74.9|ICD10CM|Unspecified maltreatment, confirmed|Unspecified maltreatment, confirmed +C2886557|T037|AB|T74.91|ICD10CM|Unspecified adult maltreatment, confirmed|Unspecified adult maltreatment, confirmed +C2886557|T037|HT|T74.91|ICD10CM|Unspecified adult maltreatment, confirmed|Unspecified adult maltreatment, confirmed +C2886558|T037|AB|T74.91XA|ICD10CM|Unspecified adult maltreatment, confirmed, initial encounter|Unspecified adult maltreatment, confirmed, initial encounter +C2886558|T037|PT|T74.91XA|ICD10CM|Unspecified adult maltreatment, confirmed, initial encounter|Unspecified adult maltreatment, confirmed, initial encounter +C2886559|T037|AB|T74.91XD|ICD10CM|Unspecified adult maltreatment, confirmed, subs encntr|Unspecified adult maltreatment, confirmed, subs encntr +C2886559|T037|PT|T74.91XD|ICD10CM|Unspecified adult maltreatment, confirmed, subsequent encounter|Unspecified adult maltreatment, confirmed, subsequent encounter +C2886560|T037|AB|T74.91XS|ICD10CM|Unspecified adult maltreatment, confirmed, sequela|Unspecified adult maltreatment, confirmed, sequela +C2886560|T037|PT|T74.91XS|ICD10CM|Unspecified adult maltreatment, confirmed, sequela|Unspecified adult maltreatment, confirmed, sequela +C2886561|T037|AB|T74.92|ICD10CM|Unspecified child maltreatment, confirmed|Unspecified child maltreatment, confirmed +C2886561|T037|HT|T74.92|ICD10CM|Unspecified child maltreatment, confirmed|Unspecified child maltreatment, confirmed +C2886562|T037|AB|T74.92XA|ICD10CM|Unspecified child maltreatment, confirmed, initial encounter|Unspecified child maltreatment, confirmed, initial encounter +C2886562|T037|PT|T74.92XA|ICD10CM|Unspecified child maltreatment, confirmed, initial encounter|Unspecified child maltreatment, confirmed, initial encounter +C2886563|T037|AB|T74.92XD|ICD10CM|Unspecified child maltreatment, confirmed, subs encntr|Unspecified child maltreatment, confirmed, subs encntr +C2886563|T037|PT|T74.92XD|ICD10CM|Unspecified child maltreatment, confirmed, subsequent encounter|Unspecified child maltreatment, confirmed, subsequent encounter +C2886564|T037|AB|T74.92XS|ICD10CM|Unspecified child maltreatment, confirmed, sequela|Unspecified child maltreatment, confirmed, sequela +C2886564|T037|PT|T74.92XS|ICD10CM|Unspecified child maltreatment, confirmed, sequela|Unspecified child maltreatment, confirmed, sequela +C0013679|T037|HT|T75|ICD10|Effects of other external causes|Effects of other external causes +C2886565|T037|AB|T75|ICD10CM|Other and unspecified effects of other external causes|Other and unspecified effects of other external causes +C2886565|T037|HT|T75|ICD10CM|Other and unspecified effects of other external causes|Other and unspecified effects of other external causes +C0023702|T037|PT|T75.0|ICD10|Effects of lightning|Effects of lightning +C0023702|T037|HT|T75.0|ICD10CM|Effects of lightning|Effects of lightning +C0023702|T037|AB|T75.0|ICD10CM|Effects of lightning|Effects of lightning +C0869330|T037|ET|T75.0|ICD10CM|Struck by lightning|Struck by lightning +C0869330|T037|ET|T75.00|ICD10CM|Struck by lightning NOS|Struck by lightning NOS +C2886566|T037|AB|T75.00|ICD10CM|Unspecified effects of lightning|Unspecified effects of lightning +C2886566|T037|HT|T75.00|ICD10CM|Unspecified effects of lightning|Unspecified effects of lightning +C2886567|T037|PT|T75.00XA|ICD10CM|Unspecified effects of lightning, initial encounter|Unspecified effects of lightning, initial encounter +C2886567|T037|AB|T75.00XA|ICD10CM|Unspecified effects of lightning, initial encounter|Unspecified effects of lightning, initial encounter +C2886568|T037|PT|T75.00XD|ICD10CM|Unspecified effects of lightning, subsequent encounter|Unspecified effects of lightning, subsequent encounter +C2886568|T037|AB|T75.00XD|ICD10CM|Unspecified effects of lightning, subsequent encounter|Unspecified effects of lightning, subsequent encounter +C2886569|T037|PT|T75.00XS|ICD10CM|Unspecified effects of lightning, sequela|Unspecified effects of lightning, sequela +C2886569|T037|AB|T75.00XS|ICD10CM|Unspecified effects of lightning, sequela|Unspecified effects of lightning, sequela +C2886570|T037|AB|T75.01|ICD10CM|Shock due to being struck by lightning|Shock due to being struck by lightning +C2886570|T037|HT|T75.01|ICD10CM|Shock due to being struck by lightning|Shock due to being struck by lightning +C2886571|T037|AB|T75.01XA|ICD10CM|Shock due to being struck by lightning, initial encounter|Shock due to being struck by lightning, initial encounter +C2886571|T037|PT|T75.01XA|ICD10CM|Shock due to being struck by lightning, initial encounter|Shock due to being struck by lightning, initial encounter +C2886572|T037|AB|T75.01XD|ICD10CM|Shock due to being struck by lightning, subsequent encounter|Shock due to being struck by lightning, subsequent encounter +C2886572|T037|PT|T75.01XD|ICD10CM|Shock due to being struck by lightning, subsequent encounter|Shock due to being struck by lightning, subsequent encounter +C2886573|T037|AB|T75.01XS|ICD10CM|Shock due to being struck by lightning, sequela|Shock due to being struck by lightning, sequela +C2886573|T037|PT|T75.01XS|ICD10CM|Shock due to being struck by lightning, sequela|Shock due to being struck by lightning, sequela +C2886574|T037|AB|T75.09|ICD10CM|Other effects of lightning|Other effects of lightning +C2886574|T037|HT|T75.09|ICD10CM|Other effects of lightning|Other effects of lightning +C2886575|T037|PT|T75.09XA|ICD10CM|Other effects of lightning, initial encounter|Other effects of lightning, initial encounter +C2886575|T037|AB|T75.09XA|ICD10CM|Other effects of lightning, initial encounter|Other effects of lightning, initial encounter +C2886576|T037|PT|T75.09XD|ICD10CM|Other effects of lightning, subsequent encounter|Other effects of lightning, subsequent encounter +C2886576|T037|AB|T75.09XD|ICD10CM|Other effects of lightning, subsequent encounter|Other effects of lightning, subsequent encounter +C2886577|T037|PT|T75.09XS|ICD10CM|Other effects of lightning, sequela|Other effects of lightning, sequela +C2886577|T037|AB|T75.09XS|ICD10CM|Other effects of lightning, sequela|Other effects of lightning, sequela +C0013143|T037|PT|T75.1|ICD10|Drowning and nonfatal submersion|Drowning and nonfatal submersion +C0038561|T037|ET|T75.1|ICD10CM|Immersion|Immersion +C2886578|T037|AB|T75.1|ICD10CM|Unspecified effects of drowning and nonfatal submersion|Unspecified effects of drowning and nonfatal submersion +C2886578|T037|HT|T75.1|ICD10CM|Unspecified effects of drowning and nonfatal submersion|Unspecified effects of drowning and nonfatal submersion +C2886579|T037|AB|T75.1XXA|ICD10CM|Unsp effects of drowning and nonfatal submersion, init|Unsp effects of drowning and nonfatal submersion, init +C2886579|T037|PT|T75.1XXA|ICD10CM|Unspecified effects of drowning and nonfatal submersion, initial encounter|Unspecified effects of drowning and nonfatal submersion, initial encounter +C2886580|T037|AB|T75.1XXD|ICD10CM|Unsp effects of drowning and nonfatal submersion, subs|Unsp effects of drowning and nonfatal submersion, subs +C2886580|T037|PT|T75.1XXD|ICD10CM|Unspecified effects of drowning and nonfatal submersion, subsequent encounter|Unspecified effects of drowning and nonfatal submersion, subsequent encounter +C2886581|T037|AB|T75.1XXS|ICD10CM|Unsp effects of drowning and nonfatal submersion, sequela|Unsp effects of drowning and nonfatal submersion, sequela +C2886581|T037|PT|T75.1XXS|ICD10CM|Unspecified effects of drowning and nonfatal submersion, sequela|Unspecified effects of drowning and nonfatal submersion, sequela +C0452131|T037|HT|T75.2|ICD10CM|Effects of vibration|Effects of vibration +C0452131|T037|AB|T75.2|ICD10CM|Effects of vibration|Effects of vibration +C0452131|T037|PT|T75.2|ICD10|Effects of vibration|Effects of vibration +C2886582|T037|AB|T75.20|ICD10CM|Unspecified effects of vibration|Unspecified effects of vibration +C2886582|T037|HT|T75.20|ICD10CM|Unspecified effects of vibration|Unspecified effects of vibration +C2886583|T037|PT|T75.20XA|ICD10CM|Unspecified effects of vibration, initial encounter|Unspecified effects of vibration, initial encounter +C2886583|T037|AB|T75.20XA|ICD10CM|Unspecified effects of vibration, initial encounter|Unspecified effects of vibration, initial encounter +C2886584|T037|PT|T75.20XD|ICD10CM|Unspecified effects of vibration, subsequent encounter|Unspecified effects of vibration, subsequent encounter +C2886584|T037|AB|T75.20XD|ICD10CM|Unspecified effects of vibration, subsequent encounter|Unspecified effects of vibration, subsequent encounter +C2886585|T037|PT|T75.20XS|ICD10CM|Unspecified effects of vibration, sequela|Unspecified effects of vibration, sequela +C2886585|T037|AB|T75.20XS|ICD10CM|Unspecified effects of vibration, sequela|Unspecified effects of vibration, sequela +C1405184|T037|HT|T75.21|ICD10CM|Pneumatic hammer syndrome|Pneumatic hammer syndrome +C1405184|T037|AB|T75.21|ICD10CM|Pneumatic hammer syndrome|Pneumatic hammer syndrome +C2886586|T037|AB|T75.21XA|ICD10CM|Pneumatic hammer syndrome, initial encounter|Pneumatic hammer syndrome, initial encounter +C2886586|T037|PT|T75.21XA|ICD10CM|Pneumatic hammer syndrome, initial encounter|Pneumatic hammer syndrome, initial encounter +C2886587|T037|AB|T75.21XD|ICD10CM|Pneumatic hammer syndrome, subsequent encounter|Pneumatic hammer syndrome, subsequent encounter +C2886587|T037|PT|T75.21XD|ICD10CM|Pneumatic hammer syndrome, subsequent encounter|Pneumatic hammer syndrome, subsequent encounter +C2886588|T037|AB|T75.21XS|ICD10CM|Pneumatic hammer syndrome, sequela|Pneumatic hammer syndrome, sequela +C2886588|T037|PT|T75.21XS|ICD10CM|Pneumatic hammer syndrome, sequela|Pneumatic hammer syndrome, sequela +C1406724|T037|HT|T75.22|ICD10CM|Traumatic vasospastic syndrome|Traumatic vasospastic syndrome +C1406724|T037|AB|T75.22|ICD10CM|Traumatic vasospastic syndrome|Traumatic vasospastic syndrome +C2886589|T037|AB|T75.22XA|ICD10CM|Traumatic vasospastic syndrome, initial encounter|Traumatic vasospastic syndrome, initial encounter +C2886589|T037|PT|T75.22XA|ICD10CM|Traumatic vasospastic syndrome, initial encounter|Traumatic vasospastic syndrome, initial encounter +C2886590|T037|AB|T75.22XD|ICD10CM|Traumatic vasospastic syndrome, subsequent encounter|Traumatic vasospastic syndrome, subsequent encounter +C2886590|T037|PT|T75.22XD|ICD10CM|Traumatic vasospastic syndrome, subsequent encounter|Traumatic vasospastic syndrome, subsequent encounter +C2886591|T037|AB|T75.22XS|ICD10CM|Traumatic vasospastic syndrome, sequela|Traumatic vasospastic syndrome, sequela +C2886591|T037|PT|T75.22XS|ICD10CM|Traumatic vasospastic syndrome, sequela|Traumatic vasospastic syndrome, sequela +C2886592|T037|AB|T75.23|ICD10CM|Vertigo from infrasound|Vertigo from infrasound +C2886592|T037|HT|T75.23|ICD10CM|Vertigo from infrasound|Vertigo from infrasound +C2886593|T037|AB|T75.23XA|ICD10CM|Vertigo from infrasound, initial encounter|Vertigo from infrasound, initial encounter +C2886593|T037|PT|T75.23XA|ICD10CM|Vertigo from infrasound, initial encounter|Vertigo from infrasound, initial encounter +C2886594|T037|AB|T75.23XD|ICD10CM|Vertigo from infrasound, subsequent encounter|Vertigo from infrasound, subsequent encounter +C2886594|T037|PT|T75.23XD|ICD10CM|Vertigo from infrasound, subsequent encounter|Vertigo from infrasound, subsequent encounter +C2886595|T037|AB|T75.23XS|ICD10CM|Vertigo from infrasound, sequela|Vertigo from infrasound, sequela +C2886595|T037|PT|T75.23XS|ICD10CM|Vertigo from infrasound, sequela|Vertigo from infrasound, sequela +C2886596|T037|AB|T75.29|ICD10CM|Other effects of vibration|Other effects of vibration +C2886596|T037|HT|T75.29|ICD10CM|Other effects of vibration|Other effects of vibration +C2886597|T037|PT|T75.29XA|ICD10CM|Other effects of vibration, initial encounter|Other effects of vibration, initial encounter +C2886597|T037|AB|T75.29XA|ICD10CM|Other effects of vibration, initial encounter|Other effects of vibration, initial encounter +C2886598|T037|PT|T75.29XD|ICD10CM|Other effects of vibration, subsequent encounter|Other effects of vibration, subsequent encounter +C2886598|T037|AB|T75.29XD|ICD10CM|Other effects of vibration, subsequent encounter|Other effects of vibration, subsequent encounter +C2886599|T037|PT|T75.29XS|ICD10CM|Other effects of vibration, sequela|Other effects of vibration, sequela +C2886599|T037|AB|T75.29XS|ICD10CM|Other effects of vibration, sequela|Other effects of vibration, sequela +C0001882|T047|ET|T75.3|ICD10CM|Airsickness|Airsickness +C0026603|T047|HT|T75.3|ICD10CM|Motion sickness|Motion sickness +C0026603|T047|AB|T75.3|ICD10CM|Motion sickness|Motion sickness +C0026603|T047|PT|T75.3|ICD10|Motion sickness|Motion sickness +C0036494|T047|ET|T75.3|ICD10CM|Seasickness|Seasickness +C0026603|T047|ET|T75.3|ICD10CM|Travel sickness|Travel sickness +C2886600|T037|AB|T75.3XXA|ICD10CM|Motion sickness, initial encounter|Motion sickness, initial encounter +C2886600|T037|PT|T75.3XXA|ICD10CM|Motion sickness, initial encounter|Motion sickness, initial encounter +C2886601|T037|AB|T75.3XXD|ICD10CM|Motion sickness, subsequent encounter|Motion sickness, subsequent encounter +C2886601|T037|PT|T75.3XXD|ICD10CM|Motion sickness, subsequent encounter|Motion sickness, subsequent encounter +C2886602|T037|AB|T75.3XXS|ICD10CM|Motion sickness, sequela|Motion sickness, sequela +C2886602|T037|PT|T75.3XXS|ICD10CM|Motion sickness, sequela|Motion sickness, sequela +C0496118|T037|PT|T75.4|ICD10|Effects of electric current|Effects of electric current +C0277644|T037|HT|T75.4|ICD10CM|Electrocution|Electrocution +C0277644|T037|AB|T75.4|ICD10CM|Electrocution|Electrocution +C0013781|T037|ET|T75.4|ICD10CM|Shock from electric current|Shock from electric current +C2886603|T037|ET|T75.4|ICD10CM|Shock from electroshock gun (taser)|Shock from electroshock gun (taser) +C2886604|T037|PT|T75.4XXA|ICD10CM|Electrocution, initial encounter|Electrocution, initial encounter +C2886604|T037|AB|T75.4XXA|ICD10CM|Electrocution, initial encounter|Electrocution, initial encounter +C2886605|T037|PT|T75.4XXD|ICD10CM|Electrocution, subsequent encounter|Electrocution, subsequent encounter +C2886605|T037|AB|T75.4XXD|ICD10CM|Electrocution, subsequent encounter|Electrocution, subsequent encounter +C2886606|T037|PT|T75.4XXS|ICD10CM|Electrocution, sequela|Electrocution, sequela +C2886606|T037|AB|T75.4XXS|ICD10CM|Electrocution, sequela|Electrocution, sequela +C0478480|T037|HT|T75.8|ICD10CM|Other specified effects of external causes|Other specified effects of external causes +C0478480|T037|AB|T75.8|ICD10CM|Other specified effects of external causes|Other specified effects of external causes +C0478480|T037|PT|T75.8|ICD10|Other specified effects of external causes|Other specified effects of external causes +C2886607|T037|AB|T75.81|ICD10CM|Effects of abnormal gravitation [G] forces|Effects of abnormal gravitation [G] forces +C2886607|T037|HT|T75.81|ICD10CM|Effects of abnormal gravitation [G] forces|Effects of abnormal gravitation [G] forces +C2886608|T037|PT|T75.81XA|ICD10CM|Effects of abnormal gravitation [G] forces, initial encounter|Effects of abnormal gravitation [G] forces, initial encounter +C2886608|T037|AB|T75.81XA|ICD10CM|Effects of abnormal gravitation forces, initial encounter|Effects of abnormal gravitation forces, initial encounter +C2886609|T037|PT|T75.81XD|ICD10CM|Effects of abnormal gravitation [G] forces, subsequent encounter|Effects of abnormal gravitation [G] forces, subsequent encounter +C2886609|T037|AB|T75.81XD|ICD10CM|Effects of abnormal gravitation forces, subsequent encounter|Effects of abnormal gravitation forces, subsequent encounter +C2886610|T037|AB|T75.81XS|ICD10CM|Effects of abnormal gravitation [G] forces, sequela|Effects of abnormal gravitation [G] forces, sequela +C2886610|T037|PT|T75.81XS|ICD10CM|Effects of abnormal gravitation [G] forces, sequela|Effects of abnormal gravitation [G] forces, sequela +C0867297|T037|AB|T75.82|ICD10CM|Effects of weightlessness|Effects of weightlessness +C0867297|T037|HT|T75.82|ICD10CM|Effects of weightlessness|Effects of weightlessness +C2886611|T037|AB|T75.82XA|ICD10CM|Effects of weightlessness, initial encounter|Effects of weightlessness, initial encounter +C2886611|T037|PT|T75.82XA|ICD10CM|Effects of weightlessness, initial encounter|Effects of weightlessness, initial encounter +C2886612|T037|AB|T75.82XD|ICD10CM|Effects of weightlessness, subsequent encounter|Effects of weightlessness, subsequent encounter +C2886612|T037|PT|T75.82XD|ICD10CM|Effects of weightlessness, subsequent encounter|Effects of weightlessness, subsequent encounter +C2886613|T037|AB|T75.82XS|ICD10CM|Effects of weightlessness, sequela|Effects of weightlessness, sequela +C2886613|T037|PT|T75.82XS|ICD10CM|Effects of weightlessness, sequela|Effects of weightlessness, sequela +C0478480|T037|HT|T75.89|ICD10CM|Other specified effects of external causes|Other specified effects of external causes +C0478480|T037|AB|T75.89|ICD10CM|Other specified effects of external causes|Other specified effects of external causes +C2886614|T037|AB|T75.89XA|ICD10CM|Other specified effects of external causes, init encntr|Other specified effects of external causes, init encntr +C2886614|T037|PT|T75.89XA|ICD10CM|Other specified effects of external causes, initial encounter|Other specified effects of external causes, initial encounter +C2886615|T037|AB|T75.89XD|ICD10CM|Other specified effects of external causes, subs encntr|Other specified effects of external causes, subs encntr +C2886615|T037|PT|T75.89XD|ICD10CM|Other specified effects of external causes, subsequent encounter|Other specified effects of external causes, subsequent encounter +C2886616|T037|AB|T75.89XS|ICD10CM|Other specified effects of external causes, sequela|Other specified effects of external causes, sequela +C2886616|T037|PT|T75.89XS|ICD10CM|Other specified effects of external causes, sequela|Other specified effects of external causes, sequela +C2886617|T037|AB|T76|ICD10CM|Adult and child abuse, neglect and oth maltreat, suspected|Adult and child abuse, neglect and oth maltreat, suspected +C2886617|T037|HT|T76|ICD10CM|Adult and child abuse, neglect and other maltreatment, suspected|Adult and child abuse, neglect and other maltreatment, suspected +C3647783|T033|AB|T76.0|ICD10CM|Neglect or abandonment, suspected|Neglect or abandonment, suspected +C3647783|T033|HT|T76.0|ICD10CM|Neglect or abandonment, suspected|Neglect or abandonment, suspected +C2886619|T033|AB|T76.01|ICD10CM|Adult neglect or abandonment, suspected|Adult neglect or abandonment, suspected +C2886619|T033|HT|T76.01|ICD10CM|Adult neglect or abandonment, suspected|Adult neglect or abandonment, suspected +C2886620|T037|PT|T76.01XA|ICD10CM|Adult neglect or abandonment, suspected, initial encounter|Adult neglect or abandonment, suspected, initial encounter +C2886620|T037|AB|T76.01XA|ICD10CM|Adult neglect or abandonment, suspected, initial encounter|Adult neglect or abandonment, suspected, initial encounter +C2886621|T037|AB|T76.01XD|ICD10CM|Adult neglect or abandonment, suspected, subs encntr|Adult neglect or abandonment, suspected, subs encntr +C2886621|T037|PT|T76.01XD|ICD10CM|Adult neglect or abandonment, suspected, subsequent encounter|Adult neglect or abandonment, suspected, subsequent encounter +C2886622|T037|PT|T76.01XS|ICD10CM|Adult neglect or abandonment, suspected, sequela|Adult neglect or abandonment, suspected, sequela +C2886622|T037|AB|T76.01XS|ICD10CM|Adult neglect or abandonment, suspected, sequela|Adult neglect or abandonment, suspected, sequela +C2886623|T033|AB|T76.02|ICD10CM|Child neglect or abandonment, suspected|Child neglect or abandonment, suspected +C2886623|T033|HT|T76.02|ICD10CM|Child neglect or abandonment, suspected|Child neglect or abandonment, suspected +C2886624|T037|PT|T76.02XA|ICD10CM|Child neglect or abandonment, suspected, initial encounter|Child neglect or abandonment, suspected, initial encounter +C2886624|T037|AB|T76.02XA|ICD10CM|Child neglect or abandonment, suspected, initial encounter|Child neglect or abandonment, suspected, initial encounter +C2886625|T037|AB|T76.02XD|ICD10CM|Child neglect or abandonment, suspected, subs encntr|Child neglect or abandonment, suspected, subs encntr +C2886625|T037|PT|T76.02XD|ICD10CM|Child neglect or abandonment, suspected, subsequent encounter|Child neglect or abandonment, suspected, subsequent encounter +C2886626|T037|PT|T76.02XS|ICD10CM|Child neglect or abandonment, suspected, sequela|Child neglect or abandonment, suspected, sequela +C2886626|T037|AB|T76.02XS|ICD10CM|Child neglect or abandonment, suspected, sequela|Child neglect or abandonment, suspected, sequela +C2886627|T033|AB|T76.1|ICD10CM|Physical abuse, suspected|Physical abuse, suspected +C2886627|T033|HT|T76.1|ICD10CM|Physical abuse, suspected|Physical abuse, suspected +C2886628|T033|AB|T76.11|ICD10CM|Adult physical abuse, suspected|Adult physical abuse, suspected +C2886628|T033|HT|T76.11|ICD10CM|Adult physical abuse, suspected|Adult physical abuse, suspected +C2886629|T037|PT|T76.11XA|ICD10CM|Adult physical abuse, suspected, initial encounter|Adult physical abuse, suspected, initial encounter +C2886629|T037|AB|T76.11XA|ICD10CM|Adult physical abuse, suspected, initial encounter|Adult physical abuse, suspected, initial encounter +C2886630|T037|PT|T76.11XD|ICD10CM|Adult physical abuse, suspected, subsequent encounter|Adult physical abuse, suspected, subsequent encounter +C2886630|T037|AB|T76.11XD|ICD10CM|Adult physical abuse, suspected, subsequent encounter|Adult physical abuse, suspected, subsequent encounter +C2886631|T037|PT|T76.11XS|ICD10CM|Adult physical abuse, suspected, sequela|Adult physical abuse, suspected, sequela +C2886631|T037|AB|T76.11XS|ICD10CM|Adult physical abuse, suspected, sequela|Adult physical abuse, suspected, sequela +C2886632|T033|AB|T76.12|ICD10CM|Child physical abuse, suspected|Child physical abuse, suspected +C2886632|T033|HT|T76.12|ICD10CM|Child physical abuse, suspected|Child physical abuse, suspected +C2886633|T037|AB|T76.12XA|ICD10CM|Child physical abuse, suspected, initial encounter|Child physical abuse, suspected, initial encounter +C2886633|T037|PT|T76.12XA|ICD10CM|Child physical abuse, suspected, initial encounter|Child physical abuse, suspected, initial encounter +C2886634|T037|AB|T76.12XD|ICD10CM|Child physical abuse, suspected, subsequent encounter|Child physical abuse, suspected, subsequent encounter +C2886634|T037|PT|T76.12XD|ICD10CM|Child physical abuse, suspected, subsequent encounter|Child physical abuse, suspected, subsequent encounter +C2886635|T037|PT|T76.12XS|ICD10CM|Child physical abuse, suspected, sequela|Child physical abuse, suspected, sequela +C2886635|T037|AB|T76.12XS|ICD10CM|Child physical abuse, suspected, sequela|Child physical abuse, suspected, sequela +C2886636|T037|ET|T76.2|ICD10CM|Rape, suspected|Rape, suspected +C3647774|T033|AB|T76.2|ICD10CM|Sexual abuse, suspected|Sexual abuse, suspected +C3647774|T033|HT|T76.2|ICD10CM|Sexual abuse, suspected|Sexual abuse, suspected +C2886638|T033|AB|T76.21|ICD10CM|Adult sexual abuse, suspected|Adult sexual abuse, suspected +C2886638|T033|HT|T76.21|ICD10CM|Adult sexual abuse, suspected|Adult sexual abuse, suspected +C2886639|T037|PT|T76.21XA|ICD10CM|Adult sexual abuse, suspected, initial encounter|Adult sexual abuse, suspected, initial encounter +C2886639|T037|AB|T76.21XA|ICD10CM|Adult sexual abuse, suspected, initial encounter|Adult sexual abuse, suspected, initial encounter +C2886640|T037|PT|T76.21XD|ICD10CM|Adult sexual abuse, suspected, subsequent encounter|Adult sexual abuse, suspected, subsequent encounter +C2886640|T037|AB|T76.21XD|ICD10CM|Adult sexual abuse, suspected, subsequent encounter|Adult sexual abuse, suspected, subsequent encounter +C2886641|T037|PT|T76.21XS|ICD10CM|Adult sexual abuse, suspected, sequela|Adult sexual abuse, suspected, sequela +C2886641|T037|AB|T76.21XS|ICD10CM|Adult sexual abuse, suspected, sequela|Adult sexual abuse, suspected, sequela +C2886642|T033|AB|T76.22|ICD10CM|Child sexual abuse, suspected|Child sexual abuse, suspected +C2886642|T033|HT|T76.22|ICD10CM|Child sexual abuse, suspected|Child sexual abuse, suspected +C2886643|T037|PT|T76.22XA|ICD10CM|Child sexual abuse, suspected, initial encounter|Child sexual abuse, suspected, initial encounter +C2886643|T037|AB|T76.22XA|ICD10CM|Child sexual abuse, suspected, initial encounter|Child sexual abuse, suspected, initial encounter +C2886644|T037|AB|T76.22XD|ICD10CM|Child sexual abuse, suspected, subsequent encounter|Child sexual abuse, suspected, subsequent encounter +C2886644|T037|PT|T76.22XD|ICD10CM|Child sexual abuse, suspected, subsequent encounter|Child sexual abuse, suspected, subsequent encounter +C2886645|T037|PT|T76.22XS|ICD10CM|Child sexual abuse, suspected, sequela|Child sexual abuse, suspected, sequela +C2886645|T037|AB|T76.22XS|ICD10CM|Child sexual abuse, suspected, sequela|Child sexual abuse, suspected, sequela +C4702966|T033|ET|T76.3|ICD10CM|Bullying and intimidation, suspected|Bullying and intimidation, suspected +C4702969|T033|ET|T76.3|ICD10CM|Intimidation through social media, suspected|Intimidation through social media, suspected +C3647777|T033|AB|T76.3|ICD10CM|Psychological abuse, suspected|Psychological abuse, suspected +C3647777|T033|HT|T76.3|ICD10CM|Psychological abuse, suspected|Psychological abuse, suspected +C2886647|T033|AB|T76.31|ICD10CM|Adult psychological abuse, suspected|Adult psychological abuse, suspected +C2886647|T033|HT|T76.31|ICD10CM|Adult psychological abuse, suspected|Adult psychological abuse, suspected +C2886648|T037|PT|T76.31XA|ICD10CM|Adult psychological abuse, suspected, initial encounter|Adult psychological abuse, suspected, initial encounter +C2886648|T037|AB|T76.31XA|ICD10CM|Adult psychological abuse, suspected, initial encounter|Adult psychological abuse, suspected, initial encounter +C2886649|T037|PT|T76.31XD|ICD10CM|Adult psychological abuse, suspected, subsequent encounter|Adult psychological abuse, suspected, subsequent encounter +C2886649|T037|AB|T76.31XD|ICD10CM|Adult psychological abuse, suspected, subsequent encounter|Adult psychological abuse, suspected, subsequent encounter +C2886650|T037|PT|T76.31XS|ICD10CM|Adult psychological abuse, suspected, sequela|Adult psychological abuse, suspected, sequela +C2886650|T037|AB|T76.31XS|ICD10CM|Adult psychological abuse, suspected, sequela|Adult psychological abuse, suspected, sequela +C2886651|T033|AB|T76.32|ICD10CM|Child psychological abuse, suspected|Child psychological abuse, suspected +C2886651|T033|HT|T76.32|ICD10CM|Child psychological abuse, suspected|Child psychological abuse, suspected +C2886652|T037|AB|T76.32XA|ICD10CM|Child psychological abuse, suspected, initial encounter|Child psychological abuse, suspected, initial encounter +C2886652|T037|PT|T76.32XA|ICD10CM|Child psychological abuse, suspected, initial encounter|Child psychological abuse, suspected, initial encounter +C2886653|T037|AB|T76.32XD|ICD10CM|Child psychological abuse, suspected, subsequent encounter|Child psychological abuse, suspected, subsequent encounter +C2886653|T037|PT|T76.32XD|ICD10CM|Child psychological abuse, suspected, subsequent encounter|Child psychological abuse, suspected, subsequent encounter +C2886654|T037|PT|T76.32XS|ICD10CM|Child psychological abuse, suspected, sequela|Child psychological abuse, suspected, sequela +C2886654|T037|AB|T76.32XS|ICD10CM|Child psychological abuse, suspected, sequela|Child psychological abuse, suspected, sequela +C4702963|T033|HT|T76.5|ICD10CM|Forced sexual exploitation, suspected|Forced sexual exploitation, suspected +C4702963|T033|AB|T76.5|ICD10CM|Forced sexual exploitation, suspected|Forced sexual exploitation, suspected +C4702960|T033|HT|T76.51|ICD10CM|Adult forced sexual exploitation, suspected|Adult forced sexual exploitation, suspected +C4702960|T033|AB|T76.51|ICD10CM|Adult forced sexual exploitation, suspected|Adult forced sexual exploitation, suspected +C4553444|T033|AB|T76.51XA|ICD10CM|Adult forced sexual exploitation, suspected, init|Adult forced sexual exploitation, suspected, init +C4553444|T033|PT|T76.51XA|ICD10CM|Adult forced sexual exploitation, suspected, initial encounter|Adult forced sexual exploitation, suspected, initial encounter +C4553445|T033|AB|T76.51XD|ICD10CM|Adult forced sexual exploitation, suspected, subs|Adult forced sexual exploitation, suspected, subs +C4553445|T033|PT|T76.51XD|ICD10CM|Adult forced sexual exploitation, suspected, subsequent encounter|Adult forced sexual exploitation, suspected, subsequent encounter +C4553446|T033|AB|T76.51XS|ICD10CM|Adult forced sexual exploitation, suspected, sequela|Adult forced sexual exploitation, suspected, sequela +C4553446|T033|PT|T76.51XS|ICD10CM|Adult forced sexual exploitation, suspected, sequela|Adult forced sexual exploitation, suspected, sequela +C4702957|T033|HT|T76.52|ICD10CM|Child sexual exploitation, suspected|Child sexual exploitation, suspected +C4702957|T033|AB|T76.52|ICD10CM|Child sexual exploitation, suspected|Child sexual exploitation, suspected +C4553447|T033|AB|T76.52XA|ICD10CM|Child sexual exploitation, suspected, initial encounter|Child sexual exploitation, suspected, initial encounter +C4553447|T033|PT|T76.52XA|ICD10CM|Child sexual exploitation, suspected, initial encounter|Child sexual exploitation, suspected, initial encounter +C4553448|T033|AB|T76.52XD|ICD10CM|Child sexual exploitation, suspected, subsequent encounter|Child sexual exploitation, suspected, subsequent encounter +C4553448|T033|PT|T76.52XD|ICD10CM|Child sexual exploitation, suspected, subsequent encounter|Child sexual exploitation, suspected, subsequent encounter +C4553449|T033|AB|T76.52XS|ICD10CM|Child sexual exploitation, suspected, sequela|Child sexual exploitation, suspected, sequela +C4553449|T033|PT|T76.52XS|ICD10CM|Child sexual exploitation, suspected, sequela|Child sexual exploitation, suspected, sequela +C4702972|T033|HT|T76.6|ICD10CM|Forced labor exploitation, suspected|Forced labor exploitation, suspected +C4702972|T033|AB|T76.6|ICD10CM|Forced labor exploitation, suspected|Forced labor exploitation, suspected +C4702974|T033|HT|T76.61|ICD10CM|Adult forced labor exploitation, suspected|Adult forced labor exploitation, suspected +C4702974|T033|AB|T76.61|ICD10CM|Adult forced labor exploitation, suspected|Adult forced labor exploitation, suspected +C4553450|T033|AB|T76.61XA|ICD10CM|Adult forced labor exploitation, suspected, init|Adult forced labor exploitation, suspected, init +C4553450|T033|PT|T76.61XA|ICD10CM|Adult forced labor exploitation, suspected, initial encounter|Adult forced labor exploitation, suspected, initial encounter +C4553451|T033|AB|T76.61XD|ICD10CM|Adult forced labor exploitation, suspected, subs|Adult forced labor exploitation, suspected, subs +C4553451|T033|PT|T76.61XD|ICD10CM|Adult forced labor exploitation, suspected, subsequent encounter|Adult forced labor exploitation, suspected, subsequent encounter +C4553452|T033|PT|T76.61XS|ICD10CM|Adult forced labor exploitation, suspected, sequela|Adult forced labor exploitation, suspected, sequela +C4553452|T033|AB|T76.61XS|ICD10CM|Adult forced labor exploitation, suspected, sequela|Adult forced labor exploitation, suspected, sequela +C4702973|T033|HT|T76.62|ICD10CM|Child forced labor exploitation, suspected|Child forced labor exploitation, suspected +C4702973|T033|AB|T76.62|ICD10CM|Child forced labor exploitation, suspected|Child forced labor exploitation, suspected +C4553453|T033|AB|T76.62XA|ICD10CM|Child forced labor exploitation, suspected, init|Child forced labor exploitation, suspected, init +C4553453|T033|PT|T76.62XA|ICD10CM|Child forced labor exploitation, suspected, initial encounter|Child forced labor exploitation, suspected, initial encounter +C4553454|T033|AB|T76.62XD|ICD10CM|Child forced labor exploitation, suspected, subs|Child forced labor exploitation, suspected, subs +C4553454|T033|PT|T76.62XD|ICD10CM|Child forced labor exploitation, suspected, subsequent encounter|Child forced labor exploitation, suspected, subsequent encounter +C4553455|T033|PT|T76.62XS|ICD10CM|Child forced labor exploitation, suspected, sequela|Child forced labor exploitation, suspected, sequela +C4553455|T033|AB|T76.62XS|ICD10CM|Child forced labor exploitation, suspected, sequela|Child forced labor exploitation, suspected, sequela +C2886655|T037|AB|T76.9|ICD10CM|Unspecified maltreatment, suspected|Unspecified maltreatment, suspected +C2886655|T037|HT|T76.9|ICD10CM|Unspecified maltreatment, suspected|Unspecified maltreatment, suspected +C2886656|T037|AB|T76.91|ICD10CM|Unspecified adult maltreatment, suspected|Unspecified adult maltreatment, suspected +C2886656|T037|HT|T76.91|ICD10CM|Unspecified adult maltreatment, suspected|Unspecified adult maltreatment, suspected +C2886657|T037|AB|T76.91XA|ICD10CM|Unspecified adult maltreatment, suspected, initial encounter|Unspecified adult maltreatment, suspected, initial encounter +C2886657|T037|PT|T76.91XA|ICD10CM|Unspecified adult maltreatment, suspected, initial encounter|Unspecified adult maltreatment, suspected, initial encounter +C2886658|T037|AB|T76.91XD|ICD10CM|Unspecified adult maltreatment, suspected, subs encntr|Unspecified adult maltreatment, suspected, subs encntr +C2886658|T037|PT|T76.91XD|ICD10CM|Unspecified adult maltreatment, suspected, subsequent encounter|Unspecified adult maltreatment, suspected, subsequent encounter +C2886659|T037|AB|T76.91XS|ICD10CM|Unspecified adult maltreatment, suspected, sequela|Unspecified adult maltreatment, suspected, sequela +C2886659|T037|PT|T76.91XS|ICD10CM|Unspecified adult maltreatment, suspected, sequela|Unspecified adult maltreatment, suspected, sequela +C2886660|T037|AB|T76.92|ICD10CM|Unspecified child maltreatment, suspected|Unspecified child maltreatment, suspected +C2886660|T037|HT|T76.92|ICD10CM|Unspecified child maltreatment, suspected|Unspecified child maltreatment, suspected +C2886661|T037|AB|T76.92XA|ICD10CM|Unspecified child maltreatment, suspected, initial encounter|Unspecified child maltreatment, suspected, initial encounter +C2886661|T037|PT|T76.92XA|ICD10CM|Unspecified child maltreatment, suspected, initial encounter|Unspecified child maltreatment, suspected, initial encounter +C2886662|T037|AB|T76.92XD|ICD10CM|Unspecified child maltreatment, suspected, subs encntr|Unspecified child maltreatment, suspected, subs encntr +C2886662|T037|PT|T76.92XD|ICD10CM|Unspecified child maltreatment, suspected, subsequent encounter|Unspecified child maltreatment, suspected, subsequent encounter +C2886663|T037|AB|T76.92XS|ICD10CM|Unspecified child maltreatment, suspected, sequela|Unspecified child maltreatment, suspected, sequela +C2886663|T037|PT|T76.92XS|ICD10CM|Unspecified child maltreatment, suspected, sequela|Unspecified child maltreatment, suspected, sequela +C0869220|T037|HT|T78|ICD10|Adverse effects, not elsewhere classified|Adverse effects, not elsewhere classified +C0869220|T037|AB|T78|ICD10CM|Adverse effects, not elsewhere classified|Adverse effects, not elsewhere classified +C0869220|T037|HT|T78|ICD10CM|Adverse effects, not elsewhere classified|Adverse effects, not elsewhere classified +C0685898|T047|ET|T78.0|ICD10CM|Anaphylactic reaction due to adverse food reaction|Anaphylactic reaction due to adverse food reaction +C0685898|T047|AB|T78.0|ICD10CM|Anaphylactic reaction due to food|Anaphylactic reaction due to food +C0685898|T047|HT|T78.0|ICD10CM|Anaphylactic reaction due to food|Anaphylactic reaction due to food +C0685898|T047|PT|T78.0|ICD10|Anaphylactic shock due to adverse food reaction|Anaphylactic shock due to adverse food reaction +C3161455|T046|ET|T78.0|ICD10CM|Anaphylactic shock or reaction due to nonpoisonous foods|Anaphylactic shock or reaction due to nonpoisonous foods +C0685898|T047|ET|T78.0|ICD10CM|Anaphylactoid reaction due to food|Anaphylactoid reaction due to food +C0375703|T037|HT|T78.00|ICD10CM|Anaphylactic reaction due to unspecified food|Anaphylactic reaction due to unspecified food +C0375703|T037|AB|T78.00|ICD10CM|Anaphylactic reaction due to unspecified food|Anaphylactic reaction due to unspecified food +C2886664|T037|AB|T78.00XA|ICD10CM|Anaphylactic reaction due to unspecified food, init encntr|Anaphylactic reaction due to unspecified food, init encntr +C2886664|T037|PT|T78.00XA|ICD10CM|Anaphylactic reaction due to unspecified food, initial encounter|Anaphylactic reaction due to unspecified food, initial encounter +C2886665|T037|AB|T78.00XD|ICD10CM|Anaphylactic reaction due to unspecified food, subs encntr|Anaphylactic reaction due to unspecified food, subs encntr +C2886665|T037|PT|T78.00XD|ICD10CM|Anaphylactic reaction due to unspecified food, subsequent encounter|Anaphylactic reaction due to unspecified food, subsequent encounter +C2886666|T037|AB|T78.00XS|ICD10CM|Anaphylactic reaction due to unspecified food, sequela|Anaphylactic reaction due to unspecified food, sequela +C2886666|T037|PT|T78.00XS|ICD10CM|Anaphylactic reaction due to unspecified food, sequela|Anaphylactic reaction due to unspecified food, sequela +C0859855|T046|HT|T78.01|ICD10CM|Anaphylactic reaction due to peanuts|Anaphylactic reaction due to peanuts +C0859855|T046|AB|T78.01|ICD10CM|Anaphylactic reaction due to peanuts|Anaphylactic reaction due to peanuts +C2886667|T037|AB|T78.01XA|ICD10CM|Anaphylactic reaction due to peanuts, initial encounter|Anaphylactic reaction due to peanuts, initial encounter +C2886667|T037|PT|T78.01XA|ICD10CM|Anaphylactic reaction due to peanuts, initial encounter|Anaphylactic reaction due to peanuts, initial encounter +C2886668|T037|AB|T78.01XD|ICD10CM|Anaphylactic reaction due to peanuts, subsequent encounter|Anaphylactic reaction due to peanuts, subsequent encounter +C2886668|T037|PT|T78.01XD|ICD10CM|Anaphylactic reaction due to peanuts, subsequent encounter|Anaphylactic reaction due to peanuts, subsequent encounter +C2886669|T037|AB|T78.01XS|ICD10CM|Anaphylactic reaction due to peanuts, sequela|Anaphylactic reaction due to peanuts, sequela +C2886669|T037|PT|T78.01XS|ICD10CM|Anaphylactic reaction due to peanuts, sequela|Anaphylactic reaction due to peanuts, sequela +C2886670|T037|AB|T78.02|ICD10CM|Anaphylactic reaction due to shellfish (crustaceans)|Anaphylactic reaction due to shellfish (crustaceans) +C2886670|T037|HT|T78.02|ICD10CM|Anaphylactic reaction due to shellfish (crustaceans)|Anaphylactic reaction due to shellfish (crustaceans) +C2886671|T037|AB|T78.02XA|ICD10CM|Anaphylactic reaction due to shellfish (crustaceans), init|Anaphylactic reaction due to shellfish (crustaceans), init +C2886671|T037|PT|T78.02XA|ICD10CM|Anaphylactic reaction due to shellfish (crustaceans), initial encounter|Anaphylactic reaction due to shellfish (crustaceans), initial encounter +C2886672|T037|AB|T78.02XD|ICD10CM|Anaphylactic reaction due to shellfish (crustaceans), subs|Anaphylactic reaction due to shellfish (crustaceans), subs +C2886672|T037|PT|T78.02XD|ICD10CM|Anaphylactic reaction due to shellfish (crustaceans), subsequent encounter|Anaphylactic reaction due to shellfish (crustaceans), subsequent encounter +C2886673|T037|AB|T78.02XS|ICD10CM|Anaphyl reaction due to shellfish (crustaceans), sequela|Anaphyl reaction due to shellfish (crustaceans), sequela +C2886673|T037|PT|T78.02XS|ICD10CM|Anaphylactic reaction due to shellfish (crustaceans), sequela|Anaphylactic reaction due to shellfish (crustaceans), sequela +C2886674|T037|AB|T78.03|ICD10CM|Anaphylactic reaction due to other fish|Anaphylactic reaction due to other fish +C2886674|T037|HT|T78.03|ICD10CM|Anaphylactic reaction due to other fish|Anaphylactic reaction due to other fish +C2886675|T037|AB|T78.03XA|ICD10CM|Anaphylactic reaction due to other fish, initial encounter|Anaphylactic reaction due to other fish, initial encounter +C2886675|T037|PT|T78.03XA|ICD10CM|Anaphylactic reaction due to other fish, initial encounter|Anaphylactic reaction due to other fish, initial encounter +C2886676|T037|AB|T78.03XD|ICD10CM|Anaphylactic reaction due to other fish, subs encntr|Anaphylactic reaction due to other fish, subs encntr +C2886676|T037|PT|T78.03XD|ICD10CM|Anaphylactic reaction due to other fish, subsequent encounter|Anaphylactic reaction due to other fish, subsequent encounter +C2886677|T037|AB|T78.03XS|ICD10CM|Anaphylactic reaction due to other fish, sequela|Anaphylactic reaction due to other fish, sequela +C2886677|T037|PT|T78.03XS|ICD10CM|Anaphylactic reaction due to other fish, sequela|Anaphylactic reaction due to other fish, sequela +C0859857|T046|HT|T78.04|ICD10CM|Anaphylactic reaction due to fruits and vegetables|Anaphylactic reaction due to fruits and vegetables +C0859857|T046|AB|T78.04|ICD10CM|Anaphylactic reaction due to fruits and vegetables|Anaphylactic reaction due to fruits and vegetables +C2886678|T037|AB|T78.04XA|ICD10CM|Anaphylactic reaction due to fruits and vegetables, init|Anaphylactic reaction due to fruits and vegetables, init +C2886678|T037|PT|T78.04XA|ICD10CM|Anaphylactic reaction due to fruits and vegetables, initial encounter|Anaphylactic reaction due to fruits and vegetables, initial encounter +C2886679|T037|AB|T78.04XD|ICD10CM|Anaphylactic reaction due to fruits and vegetables, subs|Anaphylactic reaction due to fruits and vegetables, subs +C2886679|T037|PT|T78.04XD|ICD10CM|Anaphylactic reaction due to fruits and vegetables, subsequent encounter|Anaphylactic reaction due to fruits and vegetables, subsequent encounter +C2886680|T037|AB|T78.04XS|ICD10CM|Anaphylactic reaction due to fruits and vegetables, sequela|Anaphylactic reaction due to fruits and vegetables, sequela +C2886680|T037|PT|T78.04XS|ICD10CM|Anaphylactic reaction due to fruits and vegetables, sequela|Anaphylactic reaction due to fruits and vegetables, sequela +C0375707|T046|HT|T78.05|ICD10CM|Anaphylactic reaction due to tree nuts and seeds|Anaphylactic reaction due to tree nuts and seeds +C0375707|T046|AB|T78.05|ICD10CM|Anaphylactic reaction due to tree nuts and seeds|Anaphylactic reaction due to tree nuts and seeds +C2886681|T037|AB|T78.05XA|ICD10CM|Anaphylactic reaction due to tree nuts and seeds, init|Anaphylactic reaction due to tree nuts and seeds, init +C2886681|T037|PT|T78.05XA|ICD10CM|Anaphylactic reaction due to tree nuts and seeds, initial encounter|Anaphylactic reaction due to tree nuts and seeds, initial encounter +C2886682|T037|AB|T78.05XD|ICD10CM|Anaphylactic reaction due to tree nuts and seeds, subs|Anaphylactic reaction due to tree nuts and seeds, subs +C2886682|T037|PT|T78.05XD|ICD10CM|Anaphylactic reaction due to tree nuts and seeds, subsequent encounter|Anaphylactic reaction due to tree nuts and seeds, subsequent encounter +C2886683|T037|AB|T78.05XS|ICD10CM|Anaphylactic reaction due to tree nuts and seeds, sequela|Anaphylactic reaction due to tree nuts and seeds, sequela +C2886683|T037|PT|T78.05XS|ICD10CM|Anaphylactic reaction due to tree nuts and seeds, sequela|Anaphylactic reaction due to tree nuts and seeds, sequela +C0859859|T046|HT|T78.06|ICD10CM|Anaphylactic reaction due to food additives|Anaphylactic reaction due to food additives +C0859859|T046|AB|T78.06|ICD10CM|Anaphylactic reaction due to food additives|Anaphylactic reaction due to food additives +C2886684|T037|AB|T78.06XA|ICD10CM|Anaphylactic reaction due to food additives, init encntr|Anaphylactic reaction due to food additives, init encntr +C2886684|T037|PT|T78.06XA|ICD10CM|Anaphylactic reaction due to food additives, initial encounter|Anaphylactic reaction due to food additives, initial encounter +C2886685|T037|AB|T78.06XD|ICD10CM|Anaphylactic reaction due to food additives, subs encntr|Anaphylactic reaction due to food additives, subs encntr +C2886685|T037|PT|T78.06XD|ICD10CM|Anaphylactic reaction due to food additives, subsequent encounter|Anaphylactic reaction due to food additives, subsequent encounter +C2886686|T037|AB|T78.06XS|ICD10CM|Anaphylactic reaction due to food additives, sequela|Anaphylactic reaction due to food additives, sequela +C2886686|T037|PT|T78.06XS|ICD10CM|Anaphylactic reaction due to food additives, sequela|Anaphylactic reaction due to food additives, sequela +C2886687|T037|AB|T78.07|ICD10CM|Anaphylactic reaction due to milk and dairy products|Anaphylactic reaction due to milk and dairy products +C2886687|T037|HT|T78.07|ICD10CM|Anaphylactic reaction due to milk and dairy products|Anaphylactic reaction due to milk and dairy products +C2886688|T037|AB|T78.07XA|ICD10CM|Anaphylactic reaction due to milk and dairy products, init|Anaphylactic reaction due to milk and dairy products, init +C2886688|T037|PT|T78.07XA|ICD10CM|Anaphylactic reaction due to milk and dairy products, initial encounter|Anaphylactic reaction due to milk and dairy products, initial encounter +C2886689|T037|AB|T78.07XD|ICD10CM|Anaphylactic reaction due to milk and dairy products, subs|Anaphylactic reaction due to milk and dairy products, subs +C2886689|T037|PT|T78.07XD|ICD10CM|Anaphylactic reaction due to milk and dairy products, subsequent encounter|Anaphylactic reaction due to milk and dairy products, subsequent encounter +C2886690|T037|AB|T78.07XS|ICD10CM|Anaphyl reaction due to milk and dairy products, sequela|Anaphyl reaction due to milk and dairy products, sequela +C2886690|T037|PT|T78.07XS|ICD10CM|Anaphylactic reaction due to milk and dairy products, sequela|Anaphylactic reaction due to milk and dairy products, sequela +C0859861|T046|HT|T78.08|ICD10CM|Anaphylactic reaction due to eggs|Anaphylactic reaction due to eggs +C0859861|T046|AB|T78.08|ICD10CM|Anaphylactic reaction due to eggs|Anaphylactic reaction due to eggs +C2886691|T037|AB|T78.08XA|ICD10CM|Anaphylactic reaction due to eggs, initial encounter|Anaphylactic reaction due to eggs, initial encounter +C2886691|T037|PT|T78.08XA|ICD10CM|Anaphylactic reaction due to eggs, initial encounter|Anaphylactic reaction due to eggs, initial encounter +C2886692|T037|AB|T78.08XD|ICD10CM|Anaphylactic reaction due to eggs, subsequent encounter|Anaphylactic reaction due to eggs, subsequent encounter +C2886692|T037|PT|T78.08XD|ICD10CM|Anaphylactic reaction due to eggs, subsequent encounter|Anaphylactic reaction due to eggs, subsequent encounter +C2886693|T037|AB|T78.08XS|ICD10CM|Anaphylactic reaction due to eggs, sequela|Anaphylactic reaction due to eggs, sequela +C2886693|T037|PT|T78.08XS|ICD10CM|Anaphylactic reaction due to eggs, sequela|Anaphylactic reaction due to eggs, sequela +C2886694|T037|AB|T78.09|ICD10CM|Anaphylactic reaction due to other food products|Anaphylactic reaction due to other food products +C2886694|T037|HT|T78.09|ICD10CM|Anaphylactic reaction due to other food products|Anaphylactic reaction due to other food products +C2886695|T037|AB|T78.09XA|ICD10CM|Anaphylactic reaction due to oth food products, init encntr|Anaphylactic reaction due to oth food products, init encntr +C2886695|T037|PT|T78.09XA|ICD10CM|Anaphylactic reaction due to other food products, initial encounter|Anaphylactic reaction due to other food products, initial encounter +C2886696|T037|AB|T78.09XD|ICD10CM|Anaphylactic reaction due to oth food products, subs encntr|Anaphylactic reaction due to oth food products, subs encntr +C2886696|T037|PT|T78.09XD|ICD10CM|Anaphylactic reaction due to other food products, subsequent encounter|Anaphylactic reaction due to other food products, subsequent encounter +C2886697|T037|AB|T78.09XS|ICD10CM|Anaphylactic reaction due to other food products, sequela|Anaphylactic reaction due to other food products, sequela +C2886697|T037|PT|T78.09XS|ICD10CM|Anaphylactic reaction due to other food products, sequela|Anaphylactic reaction due to other food products, sequela +C0869098|T037|PT|T78.1|ICD10|Other adverse food reactions, not elsewhere classified|Other adverse food reactions, not elsewhere classified +C0869098|T037|HT|T78.1|ICD10CM|Other adverse food reactions, not elsewhere classified|Other adverse food reactions, not elsewhere classified +C0869098|T037|AB|T78.1|ICD10CM|Other adverse food reactions, not elsewhere classified|Other adverse food reactions, not elsewhere classified +C2886698|T037|AB|T78.1XXA|ICD10CM|Oth adverse food reactions, not elsewhere classified, init|Oth adverse food reactions, not elsewhere classified, init +C2886698|T037|PT|T78.1XXA|ICD10CM|Other adverse food reactions, not elsewhere classified, initial encounter|Other adverse food reactions, not elsewhere classified, initial encounter +C2886699|T037|AB|T78.1XXD|ICD10CM|Oth adverse food reactions, not elsewhere classified, subs|Oth adverse food reactions, not elsewhere classified, subs +C2886699|T037|PT|T78.1XXD|ICD10CM|Other adverse food reactions, not elsewhere classified, subsequent encounter|Other adverse food reactions, not elsewhere classified, subsequent encounter +C2886700|T037|AB|T78.1XXS|ICD10CM|Oth adverse food reactions, NEC, sequela|Oth adverse food reactions, NEC, sequela +C2886700|T037|PT|T78.1XXS|ICD10CM|Other adverse food reactions, not elsewhere classified, sequela|Other adverse food reactions, not elsewhere classified, sequela +C4316895|T046|ET|T78.2|ICD10CM|Allergic shock|Allergic shock +C4316895|T046|ET|T78.2|ICD10CM|Anaphylactic reaction|Anaphylactic reaction +C4316895|T046|HT|T78.2|ICD10CM|Anaphylactic shock, unspecified|Anaphylactic shock, unspecified +C4316895|T046|AB|T78.2|ICD10CM|Anaphylactic shock, unspecified|Anaphylactic shock, unspecified +C4316895|T046|PT|T78.2|ICD10|Anaphylactic shock, unspecified|Anaphylactic shock, unspecified +C4316895|T046|ET|T78.2|ICD10CM|Anaphylaxis|Anaphylaxis +C2886701|T037|AB|T78.2XXA|ICD10CM|Anaphylactic shock, unspecified, initial encounter|Anaphylactic shock, unspecified, initial encounter +C2886701|T037|PT|T78.2XXA|ICD10CM|Anaphylactic shock, unspecified, initial encounter|Anaphylactic shock, unspecified, initial encounter +C2886702|T037|AB|T78.2XXD|ICD10CM|Anaphylactic shock, unspecified, subsequent encounter|Anaphylactic shock, unspecified, subsequent encounter +C2886702|T037|PT|T78.2XXD|ICD10CM|Anaphylactic shock, unspecified, subsequent encounter|Anaphylactic shock, unspecified, subsequent encounter +C2886703|T037|AB|T78.2XXS|ICD10CM|Anaphylactic shock, unspecified, sequela|Anaphylactic shock, unspecified, sequela +C2886703|T037|PT|T78.2XXS|ICD10CM|Anaphylactic shock, unspecified, sequela|Anaphylactic shock, unspecified, sequela +C0920175|T046|ET|T78.3|ICD10CM|Allergic angioedema|Allergic angioedema +C0002994|T046|PT|T78.3|ICD10AE|Angioneurotic edema|Angioneurotic edema +C0002994|T046|HT|T78.3|ICD10CM|Angioneurotic edema|Angioneurotic edema +C0002994|T046|AB|T78.3|ICD10CM|Angioneurotic edema|Angioneurotic edema +C0002994|T046|PT|T78.3|ICD10|Angioneurotic oedema|Angioneurotic oedema +C0002994|T046|ET|T78.3|ICD10CM|Giant urticaria|Giant urticaria +C0002994|T046|ET|T78.3|ICD10CM|Quincke's edema|Quincke's edema +C2886704|T037|PT|T78.3XXA|ICD10CM|Angioneurotic edema, initial encounter|Angioneurotic edema, initial encounter +C2886704|T037|AB|T78.3XXA|ICD10CM|Angioneurotic edema, initial encounter|Angioneurotic edema, initial encounter +C2886705|T037|PT|T78.3XXD|ICD10CM|Angioneurotic edema, subsequent encounter|Angioneurotic edema, subsequent encounter +C2886705|T037|AB|T78.3XXD|ICD10CM|Angioneurotic edema, subsequent encounter|Angioneurotic edema, subsequent encounter +C2886706|T037|PT|T78.3XXS|ICD10CM|Angioneurotic edema, sequela|Angioneurotic edema, sequela +C2886706|T037|AB|T78.3XXS|ICD10CM|Angioneurotic edema, sequela|Angioneurotic edema, sequela +C0020517|T046|PT|T78.4|ICD10|Allergy, unspecified|Allergy, unspecified +C2886707|T037|AB|T78.4|ICD10CM|Other and unspecified allergy|Other and unspecified allergy +C2886707|T037|HT|T78.4|ICD10CM|Other and unspecified allergy|Other and unspecified allergy +C1527304|T046|ET|T78.40|ICD10CM|Allergic reaction NOS|Allergic reaction NOS +C0020517|T046|HT|T78.40|ICD10CM|Allergy, unspecified|Allergy, unspecified +C0020517|T046|AB|T78.40|ICD10CM|Allergy, unspecified|Allergy, unspecified +C0020517|T046|ET|T78.40|ICD10CM|Hypersensitivity NOS|Hypersensitivity NOS +C2976983|T046|PT|T78.40XA|ICD10CM|Allergy, unspecified, initial encounter|Allergy, unspecified, initial encounter +C2976983|T046|AB|T78.40XA|ICD10CM|Allergy, unspecified, initial encounter|Allergy, unspecified, initial encounter +C2976984|T046|PT|T78.40XD|ICD10CM|Allergy, unspecified, subsequent encounter|Allergy, unspecified, subsequent encounter +C2976984|T046|AB|T78.40XD|ICD10CM|Allergy, unspecified, subsequent encounter|Allergy, unspecified, subsequent encounter +C2976985|T046|PT|T78.40XS|ICD10CM|Allergy, unspecified, sequela|Allergy, unspecified, sequela +C2976985|T046|AB|T78.40XS|ICD10CM|Allergy, unspecified, sequela|Allergy, unspecified, sequela +C0003907|T047|HT|T78.41|ICD10CM|Arthus phenomenon|Arthus phenomenon +C0003907|T047|AB|T78.41|ICD10CM|Arthus phenomenon|Arthus phenomenon +C0003907|T047|ET|T78.41|ICD10CM|Arthus reaction|Arthus reaction +C2886711|T037|AB|T78.41XA|ICD10CM|Arthus phenomenon, initial encounter|Arthus phenomenon, initial encounter +C2886711|T037|PT|T78.41XA|ICD10CM|Arthus phenomenon, initial encounter|Arthus phenomenon, initial encounter +C2886712|T037|AB|T78.41XD|ICD10CM|Arthus phenomenon, subsequent encounter|Arthus phenomenon, subsequent encounter +C2886712|T037|PT|T78.41XD|ICD10CM|Arthus phenomenon, subsequent encounter|Arthus phenomenon, subsequent encounter +C2886713|T037|AB|T78.41XS|ICD10CM|Arthus phenomenon, sequela|Arthus phenomenon, sequela +C2886713|T037|PT|T78.41XS|ICD10CM|Arthus phenomenon, sequela|Arthus phenomenon, sequela +C2886714|T037|HT|T78.49|ICD10CM|Other allergy|Other allergy +C2886714|T037|AB|T78.49|ICD10CM|Other allergy|Other allergy +C2886715|T037|AB|T78.49XA|ICD10CM|Other allergy, initial encounter|Other allergy, initial encounter +C2886715|T037|PT|T78.49XA|ICD10CM|Other allergy, initial encounter|Other allergy, initial encounter +C2886716|T037|AB|T78.49XD|ICD10CM|Other allergy, subsequent encounter|Other allergy, subsequent encounter +C2886716|T037|PT|T78.49XD|ICD10CM|Other allergy, subsequent encounter|Other allergy, subsequent encounter +C2886717|T037|AB|T78.49XS|ICD10CM|Other allergy, sequela|Other allergy, sequela +C2886717|T037|PT|T78.49XS|ICD10CM|Other allergy, sequela|Other allergy, sequela +C0868840|T037|HT|T78.8|ICD10CM|Other adverse effects, not elsewhere classified|Other adverse effects, not elsewhere classified +C0868840|T037|AB|T78.8|ICD10CM|Other adverse effects, not elsewhere classified|Other adverse effects, not elsewhere classified +C0868840|T037|PT|T78.8|ICD10|Other adverse effects, not elsewhere classified|Other adverse effects, not elsewhere classified +C2886718|T037|AB|T78.8XXA|ICD10CM|Other adverse effects, not elsewhere classified, init encntr|Other adverse effects, not elsewhere classified, init encntr +C2886718|T037|PT|T78.8XXA|ICD10CM|Other adverse effects, not elsewhere classified, initial encounter|Other adverse effects, not elsewhere classified, initial encounter +C2886719|T037|AB|T78.8XXD|ICD10CM|Other adverse effects, not elsewhere classified, subs encntr|Other adverse effects, not elsewhere classified, subs encntr +C2886719|T037|PT|T78.8XXD|ICD10CM|Other adverse effects, not elsewhere classified, subsequent encounter|Other adverse effects, not elsewhere classified, subsequent encounter +C2886720|T037|AB|T78.8XXS|ICD10CM|Other adverse effects, not elsewhere classified, sequela|Other adverse effects, not elsewhere classified, sequela +C2886720|T037|PT|T78.8XXS|ICD10CM|Other adverse effects, not elsewhere classified, sequela|Other adverse effects, not elsewhere classified, sequela +C0879626|T046|PT|T78.9|ICD10|Adverse effect, unspecified|Adverse effect, unspecified +C0496121|T046|AB|T79|ICD10CM|Certain early complications of trauma, NEC|Certain early complications of trauma, NEC +C0496121|T046|HT|T79|ICD10CM|Certain early complications of trauma, not elsewhere classified|Certain early complications of trauma, not elsewhere classified +C0496121|T046|HT|T79|ICD10|Certain early complications of trauma, not elsewhere classified|Certain early complications of trauma, not elsewhere classified +C0161480|T046|HT|T79-T79|ICD10CM|Certain early complications of trauma (T79)|Certain early complications of trauma (T79) +C0161480|T046|HT|T79-T79.9|ICD10|Certain early complications of trauma|Certain early complications of trauma +C0391989|T037|PT|T79.0|ICD10|Air embolism (traumatic)|Air embolism (traumatic) +C0391989|T037|HT|T79.0|ICD10CM|Air embolism (traumatic)|Air embolism (traumatic) +C0391989|T037|AB|T79.0|ICD10CM|Air embolism (traumatic)|Air embolism (traumatic) +C2886721|T037|PT|T79.0XXA|ICD10CM|Air embolism (traumatic), initial encounter|Air embolism (traumatic), initial encounter +C2886721|T037|AB|T79.0XXA|ICD10CM|Air embolism (traumatic), initial encounter|Air embolism (traumatic), initial encounter +C2886722|T037|PT|T79.0XXD|ICD10CM|Air embolism (traumatic), subsequent encounter|Air embolism (traumatic), subsequent encounter +C2886722|T037|AB|T79.0XXD|ICD10CM|Air embolism (traumatic), subsequent encounter|Air embolism (traumatic), subsequent encounter +C2886723|T037|PT|T79.0XXS|ICD10CM|Air embolism (traumatic), sequela|Air embolism (traumatic), sequela +C2886723|T037|AB|T79.0XXS|ICD10CM|Air embolism (traumatic), sequela|Air embolism (traumatic), sequela +C1533618|T046|PT|T79.1|ICD10|Fat embolism (traumatic)|Fat embolism (traumatic) +C1533618|T046|HT|T79.1|ICD10CM|Fat embolism (traumatic)|Fat embolism (traumatic) +C1533618|T046|AB|T79.1|ICD10CM|Fat embolism (traumatic)|Fat embolism (traumatic) +C2886724|T037|PT|T79.1XXA|ICD10CM|Fat embolism (traumatic), initial encounter|Fat embolism (traumatic), initial encounter +C2886724|T037|AB|T79.1XXA|ICD10CM|Fat embolism (traumatic), initial encounter|Fat embolism (traumatic), initial encounter +C2886725|T037|PT|T79.1XXD|ICD10CM|Fat embolism (traumatic), subsequent encounter|Fat embolism (traumatic), subsequent encounter +C2886725|T037|AB|T79.1XXD|ICD10CM|Fat embolism (traumatic), subsequent encounter|Fat embolism (traumatic), subsequent encounter +C2886726|T037|PT|T79.1XXS|ICD10CM|Fat embolism (traumatic), sequela|Fat embolism (traumatic), sequela +C2886726|T037|AB|T79.1XXS|ICD10CM|Fat embolism (traumatic), sequela|Fat embolism (traumatic), sequela +C0496122|T037|PT|T79.2|ICD10|Traumatic secondary and recurrent haemorrhage|Traumatic secondary and recurrent haemorrhage +C0496122|T037|PT|T79.2|ICD10AE|Traumatic secondary and recurrent hemorrhage|Traumatic secondary and recurrent hemorrhage +C2886727|T037|AB|T79.2|ICD10CM|Traumatic secondary and recurrent hemorrhage and seroma|Traumatic secondary and recurrent hemorrhage and seroma +C2886727|T037|HT|T79.2|ICD10CM|Traumatic secondary and recurrent hemorrhage and seroma|Traumatic secondary and recurrent hemorrhage and seroma +C2886728|T037|AB|T79.2XXA|ICD10CM|Traumatic secondary and recurrent hemor and seroma, init|Traumatic secondary and recurrent hemor and seroma, init +C2886728|T037|PT|T79.2XXA|ICD10CM|Traumatic secondary and recurrent hemorrhage and seroma, initial encounter|Traumatic secondary and recurrent hemorrhage and seroma, initial encounter +C2886729|T037|AB|T79.2XXD|ICD10CM|Traumatic secondary and recurrent hemor and seroma, subs|Traumatic secondary and recurrent hemor and seroma, subs +C2886729|T037|PT|T79.2XXD|ICD10CM|Traumatic secondary and recurrent hemorrhage and seroma, subsequent encounter|Traumatic secondary and recurrent hemorrhage and seroma, subsequent encounter +C2886730|T037|AB|T79.2XXS|ICD10CM|Traumatic secondary and recurrent hemor and seroma, sequela|Traumatic secondary and recurrent hemor and seroma, sequela +C2886730|T037|PT|T79.2XXS|ICD10CM|Traumatic secondary and recurrent hemorrhage and seroma, sequela|Traumatic secondary and recurrent hemorrhage and seroma, sequela +C0868766|T047|PT|T79.3|ICD10|Post-traumatic wound infection, not elsewhere classified|Post-traumatic wound infection, not elsewhere classified +C2886731|T046|ET|T79.4|ICD10CM|Shock (immediate) (delayed) following injury|Shock (immediate) (delayed) following injury +C0036986|T046|HT|T79.4|ICD10CM|Traumatic shock|Traumatic shock +C0036986|T046|AB|T79.4|ICD10CM|Traumatic shock|Traumatic shock +C0036986|T046|PT|T79.4|ICD10|Traumatic shock|Traumatic shock +C2886732|T037|AB|T79.4XXA|ICD10CM|Traumatic shock, initial encounter|Traumatic shock, initial encounter +C2886732|T037|PT|T79.4XXA|ICD10CM|Traumatic shock, initial encounter|Traumatic shock, initial encounter +C2886733|T037|AB|T79.4XXD|ICD10CM|Traumatic shock, subsequent encounter|Traumatic shock, subsequent encounter +C2886733|T037|PT|T79.4XXD|ICD10CM|Traumatic shock, subsequent encounter|Traumatic shock, subsequent encounter +C2886734|T037|AB|T79.4XXS|ICD10CM|Traumatic shock, sequela|Traumatic shock, sequela +C2886734|T037|PT|T79.4XXS|ICD10CM|Traumatic shock, sequela|Traumatic shock, sequela +C0010392|T046|ET|T79.5|ICD10CM|Crush syndrome|Crush syndrome +C0010392|T046|ET|T79.5|ICD10CM|Renal failure following crushing|Renal failure following crushing +C0040793|T037|PT|T79.5|ICD10|Traumatic anuria|Traumatic anuria +C0040793|T037|HT|T79.5|ICD10CM|Traumatic anuria|Traumatic anuria +C0040793|T037|AB|T79.5|ICD10CM|Traumatic anuria|Traumatic anuria +C2886735|T037|AB|T79.5XXA|ICD10CM|Traumatic anuria, initial encounter|Traumatic anuria, initial encounter +C2886735|T037|PT|T79.5XXA|ICD10CM|Traumatic anuria, initial encounter|Traumatic anuria, initial encounter +C2886736|T037|AB|T79.5XXD|ICD10CM|Traumatic anuria, subsequent encounter|Traumatic anuria, subsequent encounter +C2886736|T037|PT|T79.5XXD|ICD10CM|Traumatic anuria, subsequent encounter|Traumatic anuria, subsequent encounter +C2886737|T037|AB|T79.5XXS|ICD10CM|Traumatic anuria, sequela|Traumatic anuria, sequela +C2886737|T037|PT|T79.5XXS|ICD10CM|Traumatic anuria, sequela|Traumatic anuria, sequela +C0496123|T037|PT|T79.6|ICD10|Traumatic ischaemia of muscle|Traumatic ischaemia of muscle +C0496123|T037|PT|T79.6|ICD10AE|Traumatic ischemia of muscle|Traumatic ischemia of muscle +C0496123|T037|HT|T79.6|ICD10CM|Traumatic ischemia of muscle|Traumatic ischemia of muscle +C0496123|T037|AB|T79.6|ICD10CM|Traumatic ischemia of muscle|Traumatic ischemia of muscle +C0410257|T047|ET|T79.6|ICD10CM|Traumatic rhabdomyolysis|Traumatic rhabdomyolysis +C0042951|T047|ET|T79.6|ICD10CM|Volkmann's ischemic contracture|Volkmann's ischemic contracture +C2886738|T037|AB|T79.6XXA|ICD10CM|Traumatic ischemia of muscle, initial encounter|Traumatic ischemia of muscle, initial encounter +C2886738|T037|PT|T79.6XXA|ICD10CM|Traumatic ischemia of muscle, initial encounter|Traumatic ischemia of muscle, initial encounter +C2886739|T037|AB|T79.6XXD|ICD10CM|Traumatic ischemia of muscle, subsequent encounter|Traumatic ischemia of muscle, subsequent encounter +C2886739|T037|PT|T79.6XXD|ICD10CM|Traumatic ischemia of muscle, subsequent encounter|Traumatic ischemia of muscle, subsequent encounter +C2886740|T037|AB|T79.6XXS|ICD10CM|Traumatic ischemia of muscle, sequela|Traumatic ischemia of muscle, sequela +C2886740|T037|PT|T79.6XXS|ICD10CM|Traumatic ischemia of muscle, sequela|Traumatic ischemia of muscle, sequela +C0040799|T037|HT|T79.7|ICD10CM|Traumatic subcutaneous emphysema|Traumatic subcutaneous emphysema +C0040799|T037|AB|T79.7|ICD10CM|Traumatic subcutaneous emphysema|Traumatic subcutaneous emphysema +C0040799|T037|PT|T79.7|ICD10|Traumatic subcutaneous emphysema|Traumatic subcutaneous emphysema +C2886741|T037|AB|T79.7XXA|ICD10CM|Traumatic subcutaneous emphysema, initial encounter|Traumatic subcutaneous emphysema, initial encounter +C2886741|T037|PT|T79.7XXA|ICD10CM|Traumatic subcutaneous emphysema, initial encounter|Traumatic subcutaneous emphysema, initial encounter +C2886742|T037|AB|T79.7XXD|ICD10CM|Traumatic subcutaneous emphysema, subsequent encounter|Traumatic subcutaneous emphysema, subsequent encounter +C2886742|T037|PT|T79.7XXD|ICD10CM|Traumatic subcutaneous emphysema, subsequent encounter|Traumatic subcutaneous emphysema, subsequent encounter +C2886743|T037|AB|T79.7XXS|ICD10CM|Traumatic subcutaneous emphysema, sequela|Traumatic subcutaneous emphysema, sequela +C2886743|T037|PT|T79.7XXS|ICD10CM|Traumatic subcutaneous emphysema, sequela|Traumatic subcutaneous emphysema, sequela +C0029603|T037|PT|T79.8|ICD10|Other early complications of trauma|Other early complications of trauma +C0029603|T037|HT|T79.8|ICD10CM|Other early complications of trauma|Other early complications of trauma +C0029603|T037|AB|T79.8|ICD10CM|Other early complications of trauma|Other early complications of trauma +C2886744|T037|AB|T79.8XXA|ICD10CM|Other early complications of trauma, initial encounter|Other early complications of trauma, initial encounter +C2886744|T037|PT|T79.8XXA|ICD10CM|Other early complications of trauma, initial encounter|Other early complications of trauma, initial encounter +C2886745|T037|AB|T79.8XXD|ICD10CM|Other early complications of trauma, subsequent encounter|Other early complications of trauma, subsequent encounter +C2886745|T037|PT|T79.8XXD|ICD10CM|Other early complications of trauma, subsequent encounter|Other early complications of trauma, subsequent encounter +C2886746|T037|AB|T79.8XXS|ICD10CM|Other early complications of trauma, sequela|Other early complications of trauma, sequela +C2886746|T037|PT|T79.8XXS|ICD10CM|Other early complications of trauma, sequela|Other early complications of trauma, sequela +C0393388|T046|PT|T79.9|ICD10|Unspecified early complication of trauma|Unspecified early complication of trauma +C0393388|T046|HT|T79.9|ICD10CM|Unspecified early complication of trauma|Unspecified early complication of trauma +C0393388|T046|AB|T79.9|ICD10CM|Unspecified early complication of trauma|Unspecified early complication of trauma +C2886747|T037|AB|T79.9XXA|ICD10CM|Unspecified early complication of trauma, initial encounter|Unspecified early complication of trauma, initial encounter +C2886747|T037|PT|T79.9XXA|ICD10CM|Unspecified early complication of trauma, initial encounter|Unspecified early complication of trauma, initial encounter +C2886748|T037|AB|T79.9XXD|ICD10CM|Unspecified early complication of trauma, subs encntr|Unspecified early complication of trauma, subs encntr +C2886748|T037|PT|T79.9XXD|ICD10CM|Unspecified early complication of trauma, subsequent encounter|Unspecified early complication of trauma, subsequent encounter +C2886749|T037|AB|T79.9XXS|ICD10CM|Unspecified early complication of trauma, sequela|Unspecified early complication of trauma, sequela +C2886749|T037|PT|T79.9XXS|ICD10CM|Unspecified early complication of trauma, sequela|Unspecified early complication of trauma, sequela +C1719662|T037|HT|T79.A|ICD10CM|Traumatic compartment syndrome|Traumatic compartment syndrome +C1719662|T037|AB|T79.A|ICD10CM|Traumatic compartment syndrome|Traumatic compartment syndrome +C0009492|T047|ET|T79.A0|ICD10CM|Compartment syndrome NOS|Compartment syndrome NOS +C0009492|T047|HT|T79.A0|ICD10CM|Compartment syndrome, unspecified|Compartment syndrome, unspecified +C0009492|T047|AB|T79.A0|ICD10CM|Compartment syndrome, unspecified|Compartment syndrome, unspecified +C2886750|T037|AB|T79.A0XA|ICD10CM|Compartment syndrome, unspecified, initial encounter|Compartment syndrome, unspecified, initial encounter +C2886750|T037|PT|T79.A0XA|ICD10CM|Compartment syndrome, unspecified, initial encounter|Compartment syndrome, unspecified, initial encounter +C2886751|T037|AB|T79.A0XD|ICD10CM|Compartment syndrome, unspecified, subsequent encounter|Compartment syndrome, unspecified, subsequent encounter +C2886751|T037|PT|T79.A0XD|ICD10CM|Compartment syndrome, unspecified, subsequent encounter|Compartment syndrome, unspecified, subsequent encounter +C2886752|T037|AB|T79.A0XS|ICD10CM|Compartment syndrome, unspecified, sequela|Compartment syndrome, unspecified, sequela +C2886752|T037|PT|T79.A0XS|ICD10CM|Compartment syndrome, unspecified, sequela|Compartment syndrome, unspecified, sequela +C1719658|T037|ET|T79.A1|ICD10CM|Traumatic compartment syndrome of shoulder, arm, forearm, wrist, hand, and fingers|Traumatic compartment syndrome of shoulder, arm, forearm, wrist, hand, and fingers +C1719657|T037|HT|T79.A1|ICD10CM|Traumatic compartment syndrome of upper extremity|Traumatic compartment syndrome of upper extremity +C1719657|T037|AB|T79.A1|ICD10CM|Traumatic compartment syndrome of upper extremity|Traumatic compartment syndrome of upper extremity +C2886777|T037|AB|T79.A11|ICD10CM|Traumatic compartment syndrome of right upper extremity|Traumatic compartment syndrome of right upper extremity +C2886777|T037|HT|T79.A11|ICD10CM|Traumatic compartment syndrome of right upper extremity|Traumatic compartment syndrome of right upper extremity +C2886753|T037|AB|T79.A11A|ICD10CM|Traumatic compartment syndrome of r up extrem, init|Traumatic compartment syndrome of r up extrem, init +C2886753|T037|PT|T79.A11A|ICD10CM|Traumatic compartment syndrome of right upper extremity, initial encounter|Traumatic compartment syndrome of right upper extremity, initial encounter +C2886754|T037|AB|T79.A11D|ICD10CM|Traumatic compartment syndrome of r up extrem, subs|Traumatic compartment syndrome of r up extrem, subs +C2886754|T037|PT|T79.A11D|ICD10CM|Traumatic compartment syndrome of right upper extremity, subsequent encounter|Traumatic compartment syndrome of right upper extremity, subsequent encounter +C2886755|T037|AB|T79.A11S|ICD10CM|Traumatic compartment syndrome of r up extrem, sequela|Traumatic compartment syndrome of r up extrem, sequela +C2886755|T037|PT|T79.A11S|ICD10CM|Traumatic compartment syndrome of right upper extremity, sequela|Traumatic compartment syndrome of right upper extremity, sequela +C2886778|T037|AB|T79.A12|ICD10CM|Traumatic compartment syndrome of left upper extremity|Traumatic compartment syndrome of left upper extremity +C2886778|T037|HT|T79.A12|ICD10CM|Traumatic compartment syndrome of left upper extremity|Traumatic compartment syndrome of left upper extremity +C2886756|T037|AB|T79.A12A|ICD10CM|Traumatic compartment syndrome of left upper extremity, init|Traumatic compartment syndrome of left upper extremity, init +C2886756|T037|PT|T79.A12A|ICD10CM|Traumatic compartment syndrome of left upper extremity, initial encounter|Traumatic compartment syndrome of left upper extremity, initial encounter +C2886757|T037|AB|T79.A12D|ICD10CM|Traumatic compartment syndrome of left upper extremity, subs|Traumatic compartment syndrome of left upper extremity, subs +C2886757|T037|PT|T79.A12D|ICD10CM|Traumatic compartment syndrome of left upper extremity, subsequent encounter|Traumatic compartment syndrome of left upper extremity, subsequent encounter +C2886758|T037|AB|T79.A12S|ICD10CM|Traumatic compartment syndrome of l up extrem, sequela|Traumatic compartment syndrome of l up extrem, sequela +C2886758|T037|PT|T79.A12S|ICD10CM|Traumatic compartment syndrome of left upper extremity, sequela|Traumatic compartment syndrome of left upper extremity, sequela +C2886779|T037|AB|T79.A19|ICD10CM|Traumatic compartment syndrome of unsp upper extremity|Traumatic compartment syndrome of unsp upper extremity +C2886779|T037|HT|T79.A19|ICD10CM|Traumatic compartment syndrome of unspecified upper extremity|Traumatic compartment syndrome of unspecified upper extremity +C2886759|T037|AB|T79.A19A|ICD10CM|Traumatic compartment syndrome of unsp upper extremity, init|Traumatic compartment syndrome of unsp upper extremity, init +C2886759|T037|PT|T79.A19A|ICD10CM|Traumatic compartment syndrome of unspecified upper extremity, initial encounter|Traumatic compartment syndrome of unspecified upper extremity, initial encounter +C2886760|T037|AB|T79.A19D|ICD10CM|Traumatic compartment syndrome of unsp upper extremity, subs|Traumatic compartment syndrome of unsp upper extremity, subs +C2886760|T037|PT|T79.A19D|ICD10CM|Traumatic compartment syndrome of unspecified upper extremity, subsequent encounter|Traumatic compartment syndrome of unspecified upper extremity, subsequent encounter +C2886761|T037|AB|T79.A19S|ICD10CM|Traumatic compartment syndrome of unsp up extrem, sequela|Traumatic compartment syndrome of unsp up extrem, sequela +C2886761|T037|PT|T79.A19S|ICD10CM|Traumatic compartment syndrome of unspecified upper extremity, sequela|Traumatic compartment syndrome of unspecified upper extremity, sequela +C1719728|T037|ET|T79.A2|ICD10CM|Traumatic compartment syndrome of hip, buttock, thigh, leg, foot, and toes|Traumatic compartment syndrome of hip, buttock, thigh, leg, foot, and toes +C1719659|T037|HT|T79.A2|ICD10CM|Traumatic compartment syndrome of lower extremity|Traumatic compartment syndrome of lower extremity +C1719659|T037|AB|T79.A2|ICD10CM|Traumatic compartment syndrome of lower extremity|Traumatic compartment syndrome of lower extremity +C2886780|T037|AB|T79.A21|ICD10CM|Traumatic compartment syndrome of right lower extremity|Traumatic compartment syndrome of right lower extremity +C2886780|T037|HT|T79.A21|ICD10CM|Traumatic compartment syndrome of right lower extremity|Traumatic compartment syndrome of right lower extremity +C2886762|T037|AB|T79.A21A|ICD10CM|Traumatic compartment syndrome of r low extrem, init|Traumatic compartment syndrome of r low extrem, init +C2886762|T037|PT|T79.A21A|ICD10CM|Traumatic compartment syndrome of right lower extremity, initial encounter|Traumatic compartment syndrome of right lower extremity, initial encounter +C2886763|T037|AB|T79.A21D|ICD10CM|Traumatic compartment syndrome of r low extrem, subs|Traumatic compartment syndrome of r low extrem, subs +C2886763|T037|PT|T79.A21D|ICD10CM|Traumatic compartment syndrome of right lower extremity, subsequent encounter|Traumatic compartment syndrome of right lower extremity, subsequent encounter +C2886764|T037|AB|T79.A21S|ICD10CM|Traumatic compartment syndrome of r low extrem, sequela|Traumatic compartment syndrome of r low extrem, sequela +C2886764|T037|PT|T79.A21S|ICD10CM|Traumatic compartment syndrome of right lower extremity, sequela|Traumatic compartment syndrome of right lower extremity, sequela +C2886781|T037|AB|T79.A22|ICD10CM|Traumatic compartment syndrome of left lower extremity|Traumatic compartment syndrome of left lower extremity +C2886781|T037|HT|T79.A22|ICD10CM|Traumatic compartment syndrome of left lower extremity|Traumatic compartment syndrome of left lower extremity +C2886765|T037|AB|T79.A22A|ICD10CM|Traumatic compartment syndrome of left lower extremity, init|Traumatic compartment syndrome of left lower extremity, init +C2886765|T037|PT|T79.A22A|ICD10CM|Traumatic compartment syndrome of left lower extremity, initial encounter|Traumatic compartment syndrome of left lower extremity, initial encounter +C2886766|T037|AB|T79.A22D|ICD10CM|Traumatic compartment syndrome of left lower extremity, subs|Traumatic compartment syndrome of left lower extremity, subs +C2886766|T037|PT|T79.A22D|ICD10CM|Traumatic compartment syndrome of left lower extremity, subsequent encounter|Traumatic compartment syndrome of left lower extremity, subsequent encounter +C2886767|T037|AB|T79.A22S|ICD10CM|Traumatic compartment syndrome of l low extrem, sequela|Traumatic compartment syndrome of l low extrem, sequela +C2886767|T037|PT|T79.A22S|ICD10CM|Traumatic compartment syndrome of left lower extremity, sequela|Traumatic compartment syndrome of left lower extremity, sequela +C2886782|T037|AB|T79.A29|ICD10CM|Traumatic compartment syndrome of unsp lower extremity|Traumatic compartment syndrome of unsp lower extremity +C2886782|T037|HT|T79.A29|ICD10CM|Traumatic compartment syndrome of unspecified lower extremity|Traumatic compartment syndrome of unspecified lower extremity +C2886768|T037|AB|T79.A29A|ICD10CM|Traumatic compartment syndrome of unsp lower extremity, init|Traumatic compartment syndrome of unsp lower extremity, init +C2886768|T037|PT|T79.A29A|ICD10CM|Traumatic compartment syndrome of unspecified lower extremity, initial encounter|Traumatic compartment syndrome of unspecified lower extremity, initial encounter +C2886769|T037|AB|T79.A29D|ICD10CM|Traumatic compartment syndrome of unsp lower extremity, subs|Traumatic compartment syndrome of unsp lower extremity, subs +C2886769|T037|PT|T79.A29D|ICD10CM|Traumatic compartment syndrome of unspecified lower extremity, subsequent encounter|Traumatic compartment syndrome of unspecified lower extremity, subsequent encounter +C2886770|T037|AB|T79.A29S|ICD10CM|Traumatic compartment syndrome of unsp low extrm, sequela|Traumatic compartment syndrome of unsp low extrm, sequela +C2886770|T037|PT|T79.A29S|ICD10CM|Traumatic compartment syndrome of unspecified lower extremity, sequela|Traumatic compartment syndrome of unspecified lower extremity, sequela +C1719660|T037|HT|T79.A3|ICD10CM|Traumatic compartment syndrome of abdomen|Traumatic compartment syndrome of abdomen +C1719660|T037|AB|T79.A3|ICD10CM|Traumatic compartment syndrome of abdomen|Traumatic compartment syndrome of abdomen +C2886771|T037|AB|T79.A3XA|ICD10CM|Traumatic compartment syndrome of abdomen, initial encounter|Traumatic compartment syndrome of abdomen, initial encounter +C2886771|T037|PT|T79.A3XA|ICD10CM|Traumatic compartment syndrome of abdomen, initial encounter|Traumatic compartment syndrome of abdomen, initial encounter +C2886772|T037|AB|T79.A3XD|ICD10CM|Traumatic compartment syndrome of abdomen, subs encntr|Traumatic compartment syndrome of abdomen, subs encntr +C2886772|T037|PT|T79.A3XD|ICD10CM|Traumatic compartment syndrome of abdomen, subsequent encounter|Traumatic compartment syndrome of abdomen, subsequent encounter +C2886773|T037|AB|T79.A3XS|ICD10CM|Traumatic compartment syndrome of abdomen, sequela|Traumatic compartment syndrome of abdomen, sequela +C2886773|T037|PT|T79.A3XS|ICD10CM|Traumatic compartment syndrome of abdomen, sequela|Traumatic compartment syndrome of abdomen, sequela +C1719661|T037|HT|T79.A9|ICD10CM|Traumatic compartment syndrome of other sites|Traumatic compartment syndrome of other sites +C1719661|T037|AB|T79.A9|ICD10CM|Traumatic compartment syndrome of other sites|Traumatic compartment syndrome of other sites +C2886774|T037|AB|T79.A9XA|ICD10CM|Traumatic compartment syndrome of other sites, init encntr|Traumatic compartment syndrome of other sites, init encntr +C2886774|T037|PT|T79.A9XA|ICD10CM|Traumatic compartment syndrome of other sites, initial encounter|Traumatic compartment syndrome of other sites, initial encounter +C2886775|T037|AB|T79.A9XD|ICD10CM|Traumatic compartment syndrome of other sites, subs encntr|Traumatic compartment syndrome of other sites, subs encntr +C2886775|T037|PT|T79.A9XD|ICD10CM|Traumatic compartment syndrome of other sites, subsequent encounter|Traumatic compartment syndrome of other sites, subsequent encounter +C2886776|T037|AB|T79.A9XS|ICD10CM|Traumatic compartment syndrome of other sites, sequela|Traumatic compartment syndrome of other sites, sequela +C2886776|T037|PT|T79.A9XS|ICD10CM|Traumatic compartment syndrome of other sites, sequela|Traumatic compartment syndrome of other sites, sequela +C0496129|T046|AB|T80|ICD10CM|Comp following infusion, transfusion and theraputc injection|Comp following infusion, transfusion and theraputc injection +C0496129|T046|HT|T80|ICD10CM|Complications following infusion, transfusion and therapeutic injection|Complications following infusion, transfusion and therapeutic injection +C0496129|T046|HT|T80|ICD10|Complications following infusion, transfusion and therapeutic injection|Complications following infusion, transfusion and therapeutic injection +C4290411|T046|ET|T80|ICD10CM|complications following perfusion|complications following perfusion +C0869272|T046|HT|T80-T88|ICD10CM|Complications of surgical and medical care, not elsewhere classified (T80-T88)|Complications of surgical and medical care, not elsewhere classified (T80-T88) +C0869272|T046|HT|T80-T88.9|ICD10|Complications of surgical and medical care, not elsewhere classified|Complications of surgical and medical care, not elsewhere classified +C0496126|T037|AB|T80.0|ICD10CM|Air embolism fol infusion, transfuse and theraputc injection|Air embolism fol infusion, transfuse and theraputc injection +C0496126|T037|HT|T80.0|ICD10CM|Air embolism following infusion, transfusion and therapeutic injection|Air embolism following infusion, transfusion and therapeutic injection +C0496126|T037|PT|T80.0|ICD10|Air embolism following infusion, transfusion and therapeutic injection|Air embolism following infusion, transfusion and therapeutic injection +C2886784|T037|AB|T80.0XXA|ICD10CM|Air embolism fol infusion, tranfs and theraputc inject, init|Air embolism fol infusion, tranfs and theraputc inject, init +C2886784|T037|PT|T80.0XXA|ICD10CM|Air embolism following infusion, transfusion and therapeutic injection, initial encounter|Air embolism following infusion, transfusion and therapeutic injection, initial encounter +C2886785|T037|AB|T80.0XXD|ICD10CM|Air embolism fol infusion, tranfs and theraputc inject, subs|Air embolism fol infusion, tranfs and theraputc inject, subs +C2886785|T037|PT|T80.0XXD|ICD10CM|Air embolism following infusion, transfusion and therapeutic injection, subsequent encounter|Air embolism following infusion, transfusion and therapeutic injection, subsequent encounter +C2886786|T037|AB|T80.0XXS|ICD10CM|Air emblsm fol infusn, tranfs and theraputc inject, sequela|Air emblsm fol infusn, tranfs and theraputc inject, sequela +C2886786|T037|PT|T80.0XXS|ICD10CM|Air embolism following infusion, transfusion and therapeutic injection, sequela|Air embolism following infusion, transfusion and therapeutic injection, sequela +C0496127|T037|AB|T80.1|ICD10CM|Vascular comp fol infusion, transfuse and theraputc inject|Vascular comp fol infusion, transfuse and theraputc inject +C0496127|T037|HT|T80.1|ICD10CM|Vascular complications following infusion, transfusion and therapeutic injection|Vascular complications following infusion, transfusion and therapeutic injection +C0496127|T037|PT|T80.1|ICD10|Vascular complications following infusion, transfusion and therapeutic injection|Vascular complications following infusion, transfusion and therapeutic injection +C2886790|T037|AB|T80.1XXA|ICD10CM|Vascular comp fol infusn, tranfs and theraputc inject, init|Vascular comp fol infusn, tranfs and theraputc inject, init +C2886790|T037|PT|T80.1XXA|ICD10CM|Vascular complications following infusion, transfusion and therapeutic injection, initial encounter|Vascular complications following infusion, transfusion and therapeutic injection, initial encounter +C2886791|T037|AB|T80.1XXD|ICD10CM|Vascular comp fol infusn, tranfs and theraputc inject, subs|Vascular comp fol infusn, tranfs and theraputc inject, subs +C2886792|T037|AB|T80.1XXS|ICD10CM|Vasc comp fol infusn, tranfs and theraputc inject, sequela|Vasc comp fol infusn, tranfs and theraputc inject, sequela +C2886792|T037|PT|T80.1XXS|ICD10CM|Vascular complications following infusion, transfusion and therapeutic injection, sequela|Vascular complications following infusion, transfusion and therapeutic injection, sequela +C0496128|T037|AB|T80.2|ICD10CM|Infect following infusion, transfuse and theraputc injection|Infect following infusion, transfuse and theraputc injection +C0496128|T037|HT|T80.2|ICD10CM|Infections following infusion, transfusion and therapeutic injection|Infections following infusion, transfusion and therapeutic injection +C0496128|T037|PT|T80.2|ICD10|Infections following infusion, transfusion and therapeutic injection|Infections following infusion, transfusion and therapeutic injection +C1955545|T046|AB|T80.21|ICD10CM|Infection due to central venous catheter|Infection due to central venous catheter +C1955545|T046|HT|T80.21|ICD10CM|Infection due to central venous catheter|Infection due to central venous catheter +C4270113|T047|ET|T80.21|ICD10CM|Infection due to pulmonary artery catheter (Swan-Ganz catheter)|Infection due to pulmonary artery catheter (Swan-Ganz catheter) +C3161137|T046|HT|T80.211|ICD10CM|Bloodstream infection due to central venous catheter|Bloodstream infection due to central venous catheter +C3161137|T046|AB|T80.211|ICD10CM|Bloodstream infection due to central venous catheter|Bloodstream infection due to central venous catheter +C3161230|T046|ET|T80.211|ICD10CM|Bloodstream infection due to Hickman catheter|Bloodstream infection due to Hickman catheter +C3161231|T046|ET|T80.211|ICD10CM|Bloodstream infection due to peripherally inserted central catheter (PICC)|Bloodstream infection due to peripherally inserted central catheter (PICC) +C3161232|T046|ET|T80.211|ICD10CM|Bloodstream infection due to portacath (port-a-cath)|Bloodstream infection due to portacath (port-a-cath) +C4270114|T046|ET|T80.211|ICD10CM|Bloodstream infection due to pulmonary artery catheter|Bloodstream infection due to pulmonary artery catheter +C3161233|T046|ET|T80.211|ICD10CM|Bloodstream infection due to triple lumen catheter|Bloodstream infection due to triple lumen catheter +C3161234|T046|ET|T80.211|ICD10CM|Bloodstream infection due to umbilical venous catheter|Bloodstream infection due to umbilical venous catheter +C2886794|T046|ET|T80.211|ICD10CM|Catheter-related bloodstream infection (CRBSI) NOS|Catheter-related bloodstream infection (CRBSI) NOS +C3161235|T046|ET|T80.211|ICD10CM|Central line-associated bloodstream infection (CLABSI)|Central line-associated bloodstream infection (CLABSI) +C3263839|T046|AB|T80.211A|ICD10CM|Bloodstream infection due to central venous catheter, init|Bloodstream infection due to central venous catheter, init +C3263839|T046|PT|T80.211A|ICD10CM|Bloodstream infection due to central venous catheter, initial encounter|Bloodstream infection due to central venous catheter, initial encounter +C3263840|T046|AB|T80.211D|ICD10CM|Bloodstream infection due to central venous catheter, subs|Bloodstream infection due to central venous catheter, subs +C3263840|T046|PT|T80.211D|ICD10CM|Bloodstream infection due to central venous catheter, subsequent encounter|Bloodstream infection due to central venous catheter, subsequent encounter +C3263841|T046|AB|T80.211S|ICD10CM|Bloodstream infct due to central venous catheter, sequela|Bloodstream infct due to central venous catheter, sequela +C3263841|T046|PT|T80.211S|ICD10CM|Bloodstream infection due to central venous catheter, sequela|Bloodstream infection due to central venous catheter, sequela +C3161236|T047|ET|T80.212|ICD10CM|Exit or insertion site infection|Exit or insertion site infection +C3161138|T046|HT|T80.212|ICD10CM|Local infection due to central venous catheter|Local infection due to central venous catheter +C3161138|T046|AB|T80.212|ICD10CM|Local infection due to central venous catheter|Local infection due to central venous catheter +C3161237|T046|ET|T80.212|ICD10CM|Local infection due to Hickman catheter|Local infection due to Hickman catheter +C3161238|T046|ET|T80.212|ICD10CM|Local infection due to peripherally inserted central catheter (PICC)|Local infection due to peripherally inserted central catheter (PICC) +C3161239|T046|ET|T80.212|ICD10CM|Local infection due to portacath (port-a-cath)|Local infection due to portacath (port-a-cath) +C4270115|T046|ET|T80.212|ICD10CM|Local infection due to pulmonary artery catheter|Local infection due to pulmonary artery catheter +C3161240|T046|ET|T80.212|ICD10CM|Local infection due to triple lumen catheter|Local infection due to triple lumen catheter +C3161241|T046|ET|T80.212|ICD10CM|Local infection due to umbilical venous catheter|Local infection due to umbilical venous catheter +C3263842|T046|ET|T80.212|ICD10CM|Port or reservoir infection|Port or reservoir infection +C3161243|T046|ET|T80.212|ICD10CM|Tunnel infection|Tunnel infection +C3263843|T046|AB|T80.212A|ICD10CM|Local infection due to central venous catheter, init encntr|Local infection due to central venous catheter, init encntr +C3263843|T046|PT|T80.212A|ICD10CM|Local infection due to central venous catheter, initial encounter|Local infection due to central venous catheter, initial encounter +C3263844|T046|AB|T80.212D|ICD10CM|Local infection due to central venous catheter, subs encntr|Local infection due to central venous catheter, subs encntr +C3263844|T046|PT|T80.212D|ICD10CM|Local infection due to central venous catheter, subsequent encounter|Local infection due to central venous catheter, subsequent encounter +C3263845|T046|PT|T80.212S|ICD10CM|Local infection due to central venous catheter, sequela|Local infection due to central venous catheter, sequela +C3263845|T046|AB|T80.212S|ICD10CM|Local infection due to central venous catheter, sequela|Local infection due to central venous catheter, sequela +C3263846|T046|ET|T80.218|ICD10CM|Other central line-associated infection|Other central line-associated infection +C3263852|T037|AB|T80.218|ICD10CM|Other infection due to central venous catheter|Other infection due to central venous catheter +C3263852|T037|HT|T80.218|ICD10CM|Other infection due to central venous catheter|Other infection due to central venous catheter +C3263847|T037|ET|T80.218|ICD10CM|Other infection due to Hickman catheter|Other infection due to Hickman catheter +C3263848|T037|ET|T80.218|ICD10CM|Other infection due to peripherally inserted central catheter (PICC)|Other infection due to peripherally inserted central catheter (PICC) +C3263849|T037|ET|T80.218|ICD10CM|Other infection due to portacath (port-a-cath)|Other infection due to portacath (port-a-cath) +C4270116|T046|ET|T80.218|ICD10CM|Other infection due to pulmonary artery catheter|Other infection due to pulmonary artery catheter +C3263850|T037|ET|T80.218|ICD10CM|Other infection due to triple lumen catheter|Other infection due to triple lumen catheter +C3263851|T037|ET|T80.218|ICD10CM|Other infection due to umbilical venous catheter|Other infection due to umbilical venous catheter +C3263853|T037|AB|T80.218A|ICD10CM|Other infection due to central venous catheter, init encntr|Other infection due to central venous catheter, init encntr +C3263853|T037|PT|T80.218A|ICD10CM|Other infection due to central venous catheter, initial encounter|Other infection due to central venous catheter, initial encounter +C3263854|T037|AB|T80.218D|ICD10CM|Other infection due to central venous catheter, subs encntr|Other infection due to central venous catheter, subs encntr +C3263854|T037|PT|T80.218D|ICD10CM|Other infection due to central venous catheter, subsequent encounter|Other infection due to central venous catheter, subsequent encounter +C3263855|T037|AB|T80.218S|ICD10CM|Other infection due to central venous catheter, sequela|Other infection due to central venous catheter, sequela +C3263855|T037|PT|T80.218S|ICD10CM|Other infection due to central venous catheter, sequela|Other infection due to central venous catheter, sequela +C3161456|T046|ET|T80.219|ICD10CM|Central line-associated infection NOS|Central line-associated infection NOS +C3263861|T037|AB|T80.219|ICD10CM|Unspecified infection due to central venous catheter|Unspecified infection due to central venous catheter +C3263861|T037|HT|T80.219|ICD10CM|Unspecified infection due to central venous catheter|Unspecified infection due to central venous catheter +C3263856|T037|ET|T80.219|ICD10CM|Unspecified infection due to Hickman catheter|Unspecified infection due to Hickman catheter +C3263857|T037|ET|T80.219|ICD10CM|Unspecified infection due to peripherally inserted central catheter (PICC)|Unspecified infection due to peripherally inserted central catheter (PICC) +C3263858|T037|ET|T80.219|ICD10CM|Unspecified infection due to portacath (port-a-cath)|Unspecified infection due to portacath (port-a-cath) +C4270117|T046|ET|T80.219|ICD10CM|Unspecified infection due to pulmonary artery catheter|Unspecified infection due to pulmonary artery catheter +C3263859|T037|ET|T80.219|ICD10CM|Unspecified infection due to triple lumen catheter|Unspecified infection due to triple lumen catheter +C3263860|T037|ET|T80.219|ICD10CM|Unspecified infection due to umbilical venous catheter|Unspecified infection due to umbilical venous catheter +C3263862|T037|AB|T80.219A|ICD10CM|Unsp infection due to central venous catheter, init encntr|Unsp infection due to central venous catheter, init encntr +C3263862|T037|PT|T80.219A|ICD10CM|Unspecified infection due to central venous catheter, initial encounter|Unspecified infection due to central venous catheter, initial encounter +C3263863|T037|AB|T80.219D|ICD10CM|Unsp infection due to central venous catheter, subs encntr|Unsp infection due to central venous catheter, subs encntr +C3263863|T037|PT|T80.219D|ICD10CM|Unspecified infection due to central venous catheter, subsequent encounter|Unspecified infection due to central venous catheter, subsequent encounter +C3263864|T037|AB|T80.219S|ICD10CM|Unsp infection due to central venous catheter, sequela|Unsp infection due to central venous catheter, sequela +C3263864|T037|PT|T80.219S|ICD10CM|Unspecified infection due to central venous catheter, sequela|Unspecified infection due to central venous catheter, sequela +C3161139|T046|AB|T80.22|ICD10CM|Acute infection fol tranfs,infusn,inject blood/products|Acute infection fol tranfs,infusn,inject blood/products +C3161139|T046|HT|T80.22|ICD10CM|Acute infection following transfusion, infusion, or injection of blood and blood products|Acute infection following transfusion, infusion, or injection of blood and blood products +C3263865|T037|AB|T80.22XA|ICD10CM|Acute infct fol tranfs,infusn,inject blood/products, init|Acute infct fol tranfs,infusn,inject blood/products, init +C3263866|T046|AB|T80.22XD|ICD10CM|Acute infct fol tranfs,infusn,inject blood/products, subs|Acute infct fol tranfs,infusn,inject blood/products, subs +C3263867|T046|AB|T80.22XS|ICD10CM|Acute infct fol tranfs,infusn,inject blood/products, sequela|Acute infct fol tranfs,infusn,inject blood/products, sequela +C3263867|T046|PT|T80.22XS|ICD10CM|Acute infection following transfusion, infusion, or injection of blood and blood products, sequela|Acute infection following transfusion, infusion, or injection of blood and blood products, sequela +C2886799|T037|AB|T80.29|ICD10CM|Infct fol oth infusion, transfuse and theraputc injection|Infct fol oth infusion, transfuse and theraputc injection +C2886799|T037|HT|T80.29|ICD10CM|Infection following other infusion, transfusion and therapeutic injection|Infection following other infusion, transfusion and therapeutic injection +C2886800|T037|AB|T80.29XA|ICD10CM|Infct fol oth infusion, transfuse and theraputc inject, init|Infct fol oth infusion, transfuse and theraputc inject, init +C2886800|T037|PT|T80.29XA|ICD10CM|Infection following other infusion, transfusion and therapeutic injection, initial encounter|Infection following other infusion, transfusion and therapeutic injection, initial encounter +C2886801|T037|AB|T80.29XD|ICD10CM|Infct fol oth infusion, transfuse and theraputc inject, subs|Infct fol oth infusion, transfuse and theraputc inject, subs +C2886801|T037|PT|T80.29XD|ICD10CM|Infection following other infusion, transfusion and therapeutic injection, subsequent encounter|Infection following other infusion, transfusion and therapeutic injection, subsequent encounter +C2886802|T037|AB|T80.29XS|ICD10CM|Infct fol oth infusion, tranfs and theraputc inject, sequela|Infct fol oth infusion, tranfs and theraputc inject, sequela +C2886802|T037|PT|T80.29XS|ICD10CM|Infection following other infusion, transfusion and therapeutic injection, sequela|Infection following other infusion, transfusion and therapeutic injection, sequela +C2886803|T046|AB|T80.3|ICD10CM|ABO incompat reaction due to transfusion of bld/bld prod|ABO incompat reaction due to transfusion of bld/bld prod +C2886803|T046|PT|T80.3|ICD10|ABO incompatibility reaction|ABO incompatibility reaction +C2886803|T046|HT|T80.3|ICD10CM|ABO incompatibility reaction due to transfusion of blood or blood products|ABO incompatibility reaction due to transfusion of blood or blood products +C2886803|T046|AB|T80.30|ICD10CM|ABO incompat reaction due to transfuse of bld/bld prod, unsp|ABO incompat reaction due to transfuse of bld/bld prod, unsp +C2977077|T046|ET|T80.30|ICD10CM|ABO incompatibility blood transfusion NOS|ABO incompatibility blood transfusion NOS +C2886803|T046|HT|T80.30|ICD10CM|ABO incompatibility reaction due to transfusion of blood or blood products, unspecified|ABO incompatibility reaction due to transfusion of blood or blood products, unspecified +C2921200|T046|ET|T80.30|ICD10CM|Reaction to ABO incompatibility from transfusion NOS|Reaction to ABO incompatibility from transfusion NOS +C2977078|T046|AB|T80.30XA|ICD10CM|ABO incompat react due to tranfs of bld/bld prod, unsp, init|ABO incompat react due to tranfs of bld/bld prod, unsp, init +C2977079|T046|AB|T80.30XD|ICD10CM|ABO incompat react due to tranfs of bld/bld prod, unsp, subs|ABO incompat react due to tranfs of bld/bld prod, unsp, subs +C2977080|T046|AB|T80.30XS|ICD10CM|ABO incompat react due to tranfs of bld/bld prod, unsp, sqla|ABO incompat react due to tranfs of bld/bld prod, unsp, sqla +C2977080|T046|PT|T80.30XS|ICD10CM|ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, sequela|ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, sequela +C2958657|T046|AB|T80.31|ICD10CM|ABO incompatibility with hemolytic transfusion reaction|ABO incompatibility with hemolytic transfusion reaction +C2958657|T046|HT|T80.31|ICD10CM|ABO incompatibility with hemolytic transfusion reaction|ABO incompatibility with hemolytic transfusion reaction +C2921204|T046|AB|T80.310|ICD10CM|ABO incompatibility w acute hemolytic transfusion reaction|ABO incompatibility w acute hemolytic transfusion reaction +C2921204|T046|HT|T80.310|ICD10CM|ABO incompatibility with acute hemolytic transfusion reaction|ABO incompatibility with acute hemolytic transfusion reaction +C2921205|T046|ET|T80.310|ICD10CM|ABO incompatibility with hemolytic transfusion reaction less than 24 hours after transfusion|ABO incompatibility with hemolytic transfusion reaction less than 24 hours after transfusion +C2977081|T046|ET|T80.310|ICD10CM|Acute hemolytic transfusion reaction (AHTR) due to ABO incompatibility|Acute hemolytic transfusion reaction (AHTR) due to ABO incompatibility +C2977082|T046|AB|T80.310A|ICD10CM|ABO incompatibility w acute hemolytic transfs react, init|ABO incompatibility w acute hemolytic transfs react, init +C2977082|T046|PT|T80.310A|ICD10CM|ABO incompatibility with acute hemolytic transfusion reaction, initial encounter|ABO incompatibility with acute hemolytic transfusion reaction, initial encounter +C2977083|T046|AB|T80.310D|ICD10CM|ABO incompatibility w acute hemolytic transfs react, subs|ABO incompatibility w acute hemolytic transfs react, subs +C2977083|T046|PT|T80.310D|ICD10CM|ABO incompatibility with acute hemolytic transfusion reaction, subsequent encounter|ABO incompatibility with acute hemolytic transfusion reaction, subsequent encounter +C2977084|T046|AB|T80.310S|ICD10CM|ABO incompatibility w acute hemolytic transfs react, sequela|ABO incompatibility w acute hemolytic transfs react, sequela +C2977084|T046|PT|T80.310S|ICD10CM|ABO incompatibility with acute hemolytic transfusion reaction, sequela|ABO incompatibility with acute hemolytic transfusion reaction, sequela +C2921207|T046|AB|T80.311|ICD10CM|ABO incompatibility w delayed hemolytic transfusion reaction|ABO incompatibility w delayed hemolytic transfusion reaction +C2921207|T046|HT|T80.311|ICD10CM|ABO incompatibility with delayed hemolytic transfusion reaction|ABO incompatibility with delayed hemolytic transfusion reaction +C2921208|T046|ET|T80.311|ICD10CM|ABO incompatibility with hemolytic transfusion reaction 24 hours or more after transfusion|ABO incompatibility with hemolytic transfusion reaction 24 hours or more after transfusion +C2977085|T046|ET|T80.311|ICD10CM|Delayed hemolytic transfusion reaction (DHTR) due to ABO incompatibility|Delayed hemolytic transfusion reaction (DHTR) due to ABO incompatibility +C2977086|T046|AB|T80.311A|ICD10CM|ABO incompatibility w delayed hemolytic transfs react, init|ABO incompatibility w delayed hemolytic transfs react, init +C2977086|T046|PT|T80.311A|ICD10CM|ABO incompatibility with delayed hemolytic transfusion reaction, initial encounter|ABO incompatibility with delayed hemolytic transfusion reaction, initial encounter +C2977087|T046|AB|T80.311D|ICD10CM|ABO incompatibility w delayed hemolytic transfs react, subs|ABO incompatibility w delayed hemolytic transfs react, subs +C2977087|T046|PT|T80.311D|ICD10CM|ABO incompatibility with delayed hemolytic transfusion reaction, subsequent encounter|ABO incompatibility with delayed hemolytic transfusion reaction, subsequent encounter +C2977088|T046|AB|T80.311S|ICD10CM|ABO incompat w delayed hemolytic transfs react, sequela|ABO incompat w delayed hemolytic transfs react, sequela +C2977088|T046|PT|T80.311S|ICD10CM|ABO incompatibility with delayed hemolytic transfusion reaction, sequela|ABO incompatibility with delayed hemolytic transfusion reaction, sequela +C2958657|T046|AB|T80.319|ICD10CM|ABO incompatibility w hemolytic transfusion reaction, unsp|ABO incompatibility w hemolytic transfusion reaction, unsp +C2921201|T046|ET|T80.319|ICD10CM|ABO incompatibility with hemolytic transfusion reaction at unspecified time after transfusion|ABO incompatibility with hemolytic transfusion reaction at unspecified time after transfusion +C2958657|T046|HT|T80.319|ICD10CM|ABO incompatibility with hemolytic transfusion reaction, unspecified|ABO incompatibility with hemolytic transfusion reaction, unspecified +C2977089|T046|ET|T80.319|ICD10CM|Hemolytic transfusion reaction (HTR) due to ABO incompatibility NOS|Hemolytic transfusion reaction (HTR) due to ABO incompatibility NOS +C2977090|T046|AB|T80.319A|ICD10CM|ABO incompatibility w hemolytic transfs react, unsp, init|ABO incompatibility w hemolytic transfs react, unsp, init +C2977090|T046|PT|T80.319A|ICD10CM|ABO incompatibility with hemolytic transfusion reaction, unspecified, initial encounter|ABO incompatibility with hemolytic transfusion reaction, unspecified, initial encounter +C2977091|T046|AB|T80.319D|ICD10CM|ABO incompatibility w hemolytic transfs react, unsp, subs|ABO incompatibility w hemolytic transfs react, unsp, subs +C2977091|T046|PT|T80.319D|ICD10CM|ABO incompatibility with hemolytic transfusion reaction, unspecified, subsequent encounter|ABO incompatibility with hemolytic transfusion reaction, unspecified, subsequent encounter +C2977092|T046|AB|T80.319S|ICD10CM|ABO incompatibility w hemolytic transfs react, unsp, sequela|ABO incompatibility w hemolytic transfs react, unsp, sequela +C2977092|T046|PT|T80.319S|ICD10CM|ABO incompatibility with hemolytic transfusion reaction, unspecified, sequela|ABO incompatibility with hemolytic transfusion reaction, unspecified, sequela +C2977093|T046|ET|T80.39|ICD10CM|Delayed serologic transfusion reaction (DSTR) from ABO incompatibility|Delayed serologic transfusion reaction (DSTR) from ABO incompatibility +C2977095|T046|AB|T80.39|ICD10CM|Oth ABO incompat reaction due to transfusion of bld/bld prod|Oth ABO incompat reaction due to transfusion of bld/bld prod +C2977095|T046|HT|T80.39|ICD10CM|Other ABO incompatibility reaction due to transfusion of blood or blood products|Other ABO incompatibility reaction due to transfusion of blood or blood products +C2921212|T046|ET|T80.39|ICD10CM|Other ABO incompatible blood transfusion|Other ABO incompatible blood transfusion +C2977094|T046|ET|T80.39|ICD10CM|Other reaction to ABO incompatible blood transfusion|Other reaction to ABO incompatible blood transfusion +C2977096|T046|AB|T80.39XA|ICD10CM|Oth ABO incompat react due to tranfs of bld/bld prod, init|Oth ABO incompat react due to tranfs of bld/bld prod, init +C2977096|T046|PT|T80.39XA|ICD10CM|Other ABO incompatibility reaction due to transfusion of blood or blood products, initial encounter|Other ABO incompatibility reaction due to transfusion of blood or blood products, initial encounter +C2977097|T046|AB|T80.39XD|ICD10CM|Oth ABO incompat react due to tranfs of bld/bld prod, subs|Oth ABO incompat react due to tranfs of bld/bld prod, subs +C2977098|T046|AB|T80.39XS|ICD10CM|Oth ABO incompat react due to tranfs of bld/bld prod, sqla|Oth ABO incompat react due to tranfs of bld/bld prod, sqla +C2977098|T046|PT|T80.39XS|ICD10CM|Other ABO incompatibility reaction due to transfusion of blood or blood products, sequela|Other ABO incompatibility reaction due to transfusion of blood or blood products, sequela +C0161842|T046|ET|T80.4|ICD10CM|Reaction due to incompatibility of Rh antigens (C) (c) (D) (E) (e)|Reaction due to incompatibility of Rh antigens (C) (c) (D) (E) (e) +C0161842|T046|AB|T80.4|ICD10CM|Rh incompat reaction due to transfusion of bld/bld prod|Rh incompat reaction due to transfusion of bld/bld prod +C0161842|T046|PT|T80.4|ICD10|Rh incompatibility reaction|Rh incompatibility reaction +C0161842|T046|HT|T80.4|ICD10CM|Rh incompatibility reaction due to transfusion of blood or blood products|Rh incompatibility reaction due to transfusion of blood or blood products +C2921215|T046|ET|T80.40|ICD10CM|Reaction due to Rh factor in transfusion NOS|Reaction due to Rh factor in transfusion NOS +C0161842|T046|AB|T80.40|ICD10CM|Rh incompat reaction due to transfuse of bld/bld prod, unsp|Rh incompat reaction due to transfuse of bld/bld prod, unsp +C0161842|T046|HT|T80.40|ICD10CM|Rh incompatibility reaction due to transfusion of blood or blood products, unspecified|Rh incompatibility reaction due to transfusion of blood or blood products, unspecified +C2921217|T046|ET|T80.40|ICD10CM|Rh incompatible blood transfusion NOS|Rh incompatible blood transfusion NOS +C2977099|T046|AB|T80.40XA|ICD10CM|Rh incompat react due to tranfs of bld/bld prod, unsp, init|Rh incompat react due to tranfs of bld/bld prod, unsp, init +C2977100|T046|AB|T80.40XD|ICD10CM|Rh incompat react due to tranfs of bld/bld prod, unsp, subs|Rh incompat react due to tranfs of bld/bld prod, unsp, subs +C2977101|T046|AB|T80.40XS|ICD10CM|Rh incompat react due to tranfs of bld/bld prod, unsp, sqla|Rh incompat react due to tranfs of bld/bld prod, unsp, sqla +C2977101|T046|PT|T80.40XS|ICD10CM|Rh incompatibility reaction due to transfusion of blood or blood products, unspecified, sequela|Rh incompatibility reaction due to transfusion of blood or blood products, unspecified, sequela +C2958363|T046|AB|T80.41|ICD10CM|Rh incompatibility with hemolytic transfusion reaction|Rh incompatibility with hemolytic transfusion reaction +C2958363|T046|HT|T80.41|ICD10CM|Rh incompatibility with hemolytic transfusion reaction|Rh incompatibility with hemolytic transfusion reaction +C2977102|T046|ET|T80.410|ICD10CM|Acute hemolytic transfusion reaction (AHTR) due to Rh incompatibility|Acute hemolytic transfusion reaction (AHTR) due to Rh incompatibility +C2921225|T046|HT|T80.410|ICD10CM|Rh incompatibility with acute hemolytic transfusion reaction|Rh incompatibility with acute hemolytic transfusion reaction +C2921225|T046|AB|T80.410|ICD10CM|Rh incompatibility with acute hemolytic transfusion reaction|Rh incompatibility with acute hemolytic transfusion reaction +C2921226|T046|ET|T80.410|ICD10CM|Rh incompatibility with hemolytic transfusion reaction less than 24 hours after transfusion|Rh incompatibility with hemolytic transfusion reaction less than 24 hours after transfusion +C2977103|T046|AB|T80.410A|ICD10CM|Rh incompatibility w acute hemolytic transfs react, init|Rh incompatibility w acute hemolytic transfs react, init +C2977103|T046|PT|T80.410A|ICD10CM|Rh incompatibility with acute hemolytic transfusion reaction, initial encounter|Rh incompatibility with acute hemolytic transfusion reaction, initial encounter +C2977104|T046|AB|T80.410D|ICD10CM|Rh incompatibility w acute hemolytic transfs react, subs|Rh incompatibility w acute hemolytic transfs react, subs +C2977104|T046|PT|T80.410D|ICD10CM|Rh incompatibility with acute hemolytic transfusion reaction, subsequent encounter|Rh incompatibility with acute hemolytic transfusion reaction, subsequent encounter +C2977105|T046|AB|T80.410S|ICD10CM|Rh incompatibility w acute hemolytic transfs react, sequela|Rh incompatibility w acute hemolytic transfs react, sequela +C2977105|T046|PT|T80.410S|ICD10CM|Rh incompatibility with acute hemolytic transfusion reaction, sequela|Rh incompatibility with acute hemolytic transfusion reaction, sequela +C2977106|T046|ET|T80.411|ICD10CM|Delayed hemolytic transfusion reaction (DHTR) due to Rh incompatibility|Delayed hemolytic transfusion reaction (DHTR) due to Rh incompatibility +C2921229|T046|AB|T80.411|ICD10CM|Rh incompatibility w delayed hemolytic transfusion reaction|Rh incompatibility w delayed hemolytic transfusion reaction +C2921229|T046|HT|T80.411|ICD10CM|Rh incompatibility with delayed hemolytic transfusion reaction|Rh incompatibility with delayed hemolytic transfusion reaction +C2921230|T046|ET|T80.411|ICD10CM|Rh incompatibility with hemolytic transfusion reaction 24 hours or more after transfusion|Rh incompatibility with hemolytic transfusion reaction 24 hours or more after transfusion +C2977107|T046|AB|T80.411A|ICD10CM|Rh incompatibility w delayed hemolytic transfs react, init|Rh incompatibility w delayed hemolytic transfs react, init +C2977107|T046|PT|T80.411A|ICD10CM|Rh incompatibility with delayed hemolytic transfusion reaction, initial encounter|Rh incompatibility with delayed hemolytic transfusion reaction, initial encounter +C2977108|T046|AB|T80.411D|ICD10CM|Rh incompatibility w delayed hemolytic transfs react, subs|Rh incompatibility w delayed hemolytic transfs react, subs +C2977108|T046|PT|T80.411D|ICD10CM|Rh incompatibility with delayed hemolytic transfusion reaction, subsequent encounter|Rh incompatibility with delayed hemolytic transfusion reaction, subsequent encounter +C2977109|T046|AB|T80.411S|ICD10CM|Rh incompat w delayed hemolytic transfs react, sequela|Rh incompat w delayed hemolytic transfs react, sequela +C2977109|T046|PT|T80.411S|ICD10CM|Rh incompatibility with delayed hemolytic transfusion reaction, sequela|Rh incompatibility with delayed hemolytic transfusion reaction, sequela +C2977110|T046|ET|T80.419|ICD10CM|Hemolytic transfusion reaction (HTR) due to Rh incompatibility NOS|Hemolytic transfusion reaction (HTR) due to Rh incompatibility NOS +C2921221|T046|ET|T80.419|ICD10CM|Rh incompatibility with hemolytic transfusion reaction at unspecified time after transfusion|Rh incompatibility with hemolytic transfusion reaction at unspecified time after transfusion +C2958363|T046|AB|T80.419|ICD10CM|Rh incompatibility with hemolytic transfusion reaction, unsp|Rh incompatibility with hemolytic transfusion reaction, unsp +C2958363|T046|HT|T80.419|ICD10CM|Rh incompatibility with hemolytic transfusion reaction, unspecified|Rh incompatibility with hemolytic transfusion reaction, unspecified +C2977111|T046|AB|T80.419A|ICD10CM|Rh incompatibility w hemolytic transfs react, unsp, init|Rh incompatibility w hemolytic transfs react, unsp, init +C2977111|T046|PT|T80.419A|ICD10CM|Rh incompatibility with hemolytic transfusion reaction, unspecified, initial encounter|Rh incompatibility with hemolytic transfusion reaction, unspecified, initial encounter +C2977112|T046|AB|T80.419D|ICD10CM|Rh incompatibility w hemolytic transfs react, unsp, subs|Rh incompatibility w hemolytic transfs react, unsp, subs +C2977112|T046|PT|T80.419D|ICD10CM|Rh incompatibility with hemolytic transfusion reaction, unspecified, subsequent encounter|Rh incompatibility with hemolytic transfusion reaction, unspecified, subsequent encounter +C2977113|T046|AB|T80.419S|ICD10CM|Rh incompatibility w hemolytic transfs react, unsp, sequela|Rh incompatibility w hemolytic transfs react, unsp, sequela +C2977113|T046|PT|T80.419S|ICD10CM|Rh incompatibility with hemolytic transfusion reaction, unspecified, sequela|Rh incompatibility with hemolytic transfusion reaction, unspecified, sequela +C2977114|T046|ET|T80.49|ICD10CM|Delayed serologic transfusion reaction (DSTR) from Rh incompatibility|Delayed serologic transfusion reaction (DSTR) from Rh incompatibility +C2977115|T046|AB|T80.49|ICD10CM|Oth Rh incompat reaction due to transfusion of bld/bld prod|Oth Rh incompat reaction due to transfusion of bld/bld prod +C2921234|T046|ET|T80.49|ICD10CM|Other reaction to Rh incompatible blood transfusion|Other reaction to Rh incompatible blood transfusion +C2977115|T046|HT|T80.49|ICD10CM|Other Rh incompatibility reaction due to transfusion of blood or blood products|Other Rh incompatibility reaction due to transfusion of blood or blood products +C2977116|T046|AB|T80.49XA|ICD10CM|Oth Rh incompat reaction due to tranfs of bld/bld prod, init|Oth Rh incompat reaction due to tranfs of bld/bld prod, init +C2977116|T046|PT|T80.49XA|ICD10CM|Other Rh incompatibility reaction due to transfusion of blood or blood products, initial encounter|Other Rh incompatibility reaction due to transfusion of blood or blood products, initial encounter +C2977117|T046|AB|T80.49XD|ICD10CM|Oth Rh incompat reaction due to tranfs of bld/bld prod, subs|Oth Rh incompat reaction due to tranfs of bld/bld prod, subs +C2977118|T046|AB|T80.49XS|ICD10CM|Oth Rh incompat react due to tranfs of bld/bld prod, sequela|Oth Rh incompat react due to tranfs of bld/bld prod, sequela +C2977118|T046|PT|T80.49XS|ICD10CM|Other Rh incompatibility reaction due to transfusion of blood or blood products, sequela|Other Rh incompatibility reaction due to transfusion of blood or blood products, sequela +C3263868|T037|ET|T80.5|ICD10CM|Allergic shock due to serum|Allergic shock due to serum +C2349793|T046|AB|T80.5|ICD10CM|Anaphylactic reaction due to serum|Anaphylactic reaction due to serum +C2349793|T046|HT|T80.5|ICD10CM|Anaphylactic reaction due to serum|Anaphylactic reaction due to serum +C0161840|T046|ET|T80.5|ICD10CM|Anaphylactic shock due to serum|Anaphylactic shock due to serum +C0161840|T046|PT|T80.5|ICD10|Anaphylactic shock due to serum|Anaphylactic shock due to serum +C3161457|T046|ET|T80.5|ICD10CM|Anaphylactoid reaction due to serum|Anaphylactoid reaction due to serum +C3263869|T046|ET|T80.5|ICD10CM|Anaphylaxis due to serum|Anaphylaxis due to serum +C3161140|T046|AB|T80.51|ICD10CM|Anaphylactic reaction due to admin blood/products|Anaphylactic reaction due to admin blood/products +C3161140|T046|HT|T80.51|ICD10CM|Anaphylactic reaction due to administration of blood and blood products|Anaphylactic reaction due to administration of blood and blood products +C3263870|T046|AB|T80.51XA|ICD10CM|Anaphylactic reaction due to admin blood/products, init|Anaphylactic reaction due to admin blood/products, init +C3263870|T046|PT|T80.51XA|ICD10CM|Anaphylactic reaction due to administration of blood and blood products, initial encounter|Anaphylactic reaction due to administration of blood and blood products, initial encounter +C3263871|T046|AB|T80.51XD|ICD10CM|Anaphylactic reaction due to admin blood/products, subs|Anaphylactic reaction due to admin blood/products, subs +C3263871|T046|PT|T80.51XD|ICD10CM|Anaphylactic reaction due to administration of blood and blood products, subsequent encounter|Anaphylactic reaction due to administration of blood and blood products, subsequent encounter +C3263872|T046|AB|T80.51XS|ICD10CM|Anaphylactic reaction due to admin blood/products, sequela|Anaphylactic reaction due to admin blood/products, sequela +C3263872|T046|PT|T80.51XS|ICD10CM|Anaphylactic reaction due to administration of blood and blood products, sequela|Anaphylactic reaction due to administration of blood and blood products, sequela +C3161141|T046|HT|T80.52|ICD10CM|Anaphylactic reaction due to vaccination|Anaphylactic reaction due to vaccination +C3161141|T046|AB|T80.52|ICD10CM|Anaphylactic reaction due to vaccination|Anaphylactic reaction due to vaccination +C3263873|T046|AB|T80.52XA|ICD10CM|Anaphylactic reaction due to vaccination, initial encounter|Anaphylactic reaction due to vaccination, initial encounter +C3263873|T046|PT|T80.52XA|ICD10CM|Anaphylactic reaction due to vaccination, initial encounter|Anaphylactic reaction due to vaccination, initial encounter +C3263874|T046|AB|T80.52XD|ICD10CM|Anaphylactic reaction due to vaccination, subs encntr|Anaphylactic reaction due to vaccination, subs encntr +C3263874|T046|PT|T80.52XD|ICD10CM|Anaphylactic reaction due to vaccination, subsequent encounter|Anaphylactic reaction due to vaccination, subsequent encounter +C3263875|T046|AB|T80.52XS|ICD10CM|Anaphylactic reaction due to vaccination, sequela|Anaphylactic reaction due to vaccination, sequela +C3263875|T046|PT|T80.52XS|ICD10CM|Anaphylactic reaction due to vaccination, sequela|Anaphylactic reaction due to vaccination, sequela +C3161142|T046|HT|T80.59|ICD10CM|Anaphylactic reaction due to other serum|Anaphylactic reaction due to other serum +C3161142|T046|AB|T80.59|ICD10CM|Anaphylactic reaction due to other serum|Anaphylactic reaction due to other serum +C3263876|T046|AB|T80.59XA|ICD10CM|Anaphylactic reaction due to other serum, initial encounter|Anaphylactic reaction due to other serum, initial encounter +C3263876|T046|PT|T80.59XA|ICD10CM|Anaphylactic reaction due to other serum, initial encounter|Anaphylactic reaction due to other serum, initial encounter +C3263877|T046|AB|T80.59XD|ICD10CM|Anaphylactic reaction due to other serum, subs encntr|Anaphylactic reaction due to other serum, subs encntr +C3263877|T046|PT|T80.59XD|ICD10CM|Anaphylactic reaction due to other serum, subsequent encounter|Anaphylactic reaction due to other serum, subsequent encounter +C3263878|T046|AB|T80.59XS|ICD10CM|Anaphylactic reaction due to other serum, sequela|Anaphylactic reaction due to other serum, sequela +C3263878|T046|PT|T80.59XS|ICD10CM|Anaphylactic reaction due to other serum, sequela|Anaphylactic reaction due to other serum, sequela +C0036830|T047|ET|T80.6|ICD10CM|Intoxication by serum|Intoxication by serum +C0478483|T046|HT|T80.6|ICD10CM|Other serum reactions|Other serum reactions +C0478483|T046|AB|T80.6|ICD10CM|Other serum reactions|Other serum reactions +C0478483|T046|PT|T80.6|ICD10|Other serum reactions|Other serum reactions +C0036830|T047|ET|T80.6|ICD10CM|Protein sickness|Protein sickness +C0036830|T047|ET|T80.6|ICD10CM|Serum rash|Serum rash +C0036830|T047|ET|T80.6|ICD10CM|Serum sickness|Serum sickness +C0036830|T047|ET|T80.6|ICD10CM|Serum urticaria|Serum urticaria +C3161143|T046|AB|T80.61|ICD10CM|Oth serum reaction due to admin blood/products|Oth serum reaction due to admin blood/products +C3161143|T046|HT|T80.61|ICD10CM|Other serum reaction due to administration of blood and blood products|Other serum reaction due to administration of blood and blood products +C3263879|T037|AB|T80.61XA|ICD10CM|Oth serum reaction due to admin blood/products, init|Oth serum reaction due to admin blood/products, init +C3263879|T037|PT|T80.61XA|ICD10CM|Other serum reaction due to administration of blood and blood products, initial encounter|Other serum reaction due to administration of blood and blood products, initial encounter +C3263880|T037|AB|T80.61XD|ICD10CM|Oth serum reaction due to admin blood/products, subs|Oth serum reaction due to admin blood/products, subs +C3263880|T037|PT|T80.61XD|ICD10CM|Other serum reaction due to administration of blood and blood products, subsequent encounter|Other serum reaction due to administration of blood and blood products, subsequent encounter +C3263881|T037|AB|T80.61XS|ICD10CM|Oth serum reaction due to admin blood/products, sequela|Oth serum reaction due to admin blood/products, sequela +C3263881|T037|PT|T80.61XS|ICD10CM|Other serum reaction due to administration of blood and blood products, sequela|Other serum reaction due to administration of blood and blood products, sequela +C3161144|T046|HT|T80.62|ICD10CM|Other serum reaction due to vaccination|Other serum reaction due to vaccination +C3161144|T046|AB|T80.62|ICD10CM|Other serum reaction due to vaccination|Other serum reaction due to vaccination +C3263882|T046|AB|T80.62XA|ICD10CM|Other serum reaction due to vaccination, initial encounter|Other serum reaction due to vaccination, initial encounter +C3263882|T046|PT|T80.62XA|ICD10CM|Other serum reaction due to vaccination, initial encounter|Other serum reaction due to vaccination, initial encounter +C3263883|T046|AB|T80.62XD|ICD10CM|Other serum reaction due to vaccination, subs encntr|Other serum reaction due to vaccination, subs encntr +C3263883|T046|PT|T80.62XD|ICD10CM|Other serum reaction due to vaccination, subsequent encounter|Other serum reaction due to vaccination, subsequent encounter +C3263884|T046|AB|T80.62XS|ICD10CM|Other serum reaction due to vaccination, sequela|Other serum reaction due to vaccination, sequela +C3263884|T046|PT|T80.62XS|ICD10CM|Other serum reaction due to vaccination, sequela|Other serum reaction due to vaccination, sequela +C3263885|T046|AB|T80.69|ICD10CM|Other serum reaction due to other serum|Other serum reaction due to other serum +C3263885|T046|HT|T80.69|ICD10CM|Other serum reaction due to other serum|Other serum reaction due to other serum +C3263886|T046|AB|T80.69XA|ICD10CM|Other serum reaction due to other serum, initial encounter|Other serum reaction due to other serum, initial encounter +C3263886|T046|PT|T80.69XA|ICD10CM|Other serum reaction due to other serum, initial encounter|Other serum reaction due to other serum, initial encounter +C3263887|T046|AB|T80.69XD|ICD10CM|Other serum reaction due to other serum, subs encntr|Other serum reaction due to other serum, subs encntr +C3263887|T046|PT|T80.69XD|ICD10CM|Other serum reaction due to other serum, subsequent encounter|Other serum reaction due to other serum, subsequent encounter +C3263888|T046|AB|T80.69XS|ICD10CM|Other serum reaction due to other serum, sequela|Other serum reaction due to other serum, sequela +C3263888|T046|PT|T80.69XS|ICD10CM|Other serum reaction due to other serum, sequela|Other serum reaction due to other serum, sequela +C0478484|T046|AB|T80.8|ICD10CM|Oth comp fol infusion, transfuse and theraputc injection|Oth comp fol infusion, transfuse and theraputc injection +C0478484|T046|HT|T80.8|ICD10CM|Other complications following infusion, transfusion and therapeutic injection|Other complications following infusion, transfusion and therapeutic injection +C0478484|T046|PT|T80.8|ICD10|Other complications following infusion, transfusion and therapeutic injection|Other complications following infusion, transfusion and therapeutic injection +C2886818|T037|AB|T80.81|ICD10CM|Extravasation of vesicant agent|Extravasation of vesicant agent +C2886818|T037|HT|T80.81|ICD10CM|Extravasation of vesicant agent|Extravasation of vesicant agent +C2886817|T037|ET|T80.81|ICD10CM|Infiltration of vesicant agent|Infiltration of vesicant agent +C2886820|T037|AB|T80.810|ICD10CM|Extravasation of vesicant antineoplastic chemotherapy|Extravasation of vesicant antineoplastic chemotherapy +C2886820|T037|HT|T80.810|ICD10CM|Extravasation of vesicant antineoplastic chemotherapy|Extravasation of vesicant antineoplastic chemotherapy +C2886819|T037|ET|T80.810|ICD10CM|Infiltration of vesicant antineoplastic chemotherapy|Infiltration of vesicant antineoplastic chemotherapy +C2886821|T037|AB|T80.810A|ICD10CM|Extravasation of vesicant antineoplastic chemotherapy, init|Extravasation of vesicant antineoplastic chemotherapy, init +C2886821|T037|PT|T80.810A|ICD10CM|Extravasation of vesicant antineoplastic chemotherapy, initial encounter|Extravasation of vesicant antineoplastic chemotherapy, initial encounter +C2886822|T037|AB|T80.810D|ICD10CM|Extravasation of vesicant antineoplastic chemotherapy, subs|Extravasation of vesicant antineoplastic chemotherapy, subs +C2886822|T037|PT|T80.810D|ICD10CM|Extravasation of vesicant antineoplastic chemotherapy, subsequent encounter|Extravasation of vesicant antineoplastic chemotherapy, subsequent encounter +C2886823|T037|AB|T80.810S|ICD10CM|Extravasation of vesicant antineopl chemotherapy, sequela|Extravasation of vesicant antineopl chemotherapy, sequela +C2886823|T037|PT|T80.810S|ICD10CM|Extravasation of vesicant antineoplastic chemotherapy, sequela|Extravasation of vesicant antineoplastic chemotherapy, sequela +C2349796|T037|HT|T80.818|ICD10CM|Extravasation of other vesicant agent|Extravasation of other vesicant agent +C2349796|T037|AB|T80.818|ICD10CM|Extravasation of other vesicant agent|Extravasation of other vesicant agent +C2349797|T037|ET|T80.818|ICD10CM|Infiltration of other vesicant agent|Infiltration of other vesicant agent +C2886824|T037|AB|T80.818A|ICD10CM|Extravasation of other vesicant agent, initial encounter|Extravasation of other vesicant agent, initial encounter +C2886824|T037|PT|T80.818A|ICD10CM|Extravasation of other vesicant agent, initial encounter|Extravasation of other vesicant agent, initial encounter +C2886825|T037|AB|T80.818D|ICD10CM|Extravasation of other vesicant agent, subsequent encounter|Extravasation of other vesicant agent, subsequent encounter +C2886825|T037|PT|T80.818D|ICD10CM|Extravasation of other vesicant agent, subsequent encounter|Extravasation of other vesicant agent, subsequent encounter +C2886826|T037|AB|T80.818S|ICD10CM|Extravasation of other vesicant agent, sequela|Extravasation of other vesicant agent, sequela +C2886826|T037|PT|T80.818S|ICD10CM|Extravasation of other vesicant agent, sequela|Extravasation of other vesicant agent, sequela +C2977119|T046|ET|T80.89|ICD10CM|Delayed serologic transfusion reaction (DSTR), unspecified incompatibility|Delayed serologic transfusion reaction (DSTR), unspecified incompatibility +C0478484|T046|AB|T80.89|ICD10CM|Oth comp fol infusion, transfuse and theraputc injection|Oth comp fol infusion, transfuse and theraputc injection +C0478484|T046|HT|T80.89|ICD10CM|Other complications following infusion, transfusion and therapeutic injection|Other complications following infusion, transfusion and therapeutic injection +C2886827|T037|AB|T80.89XA|ICD10CM|Oth comp fol infusion, transfuse and theraputc inject, init|Oth comp fol infusion, transfuse and theraputc inject, init +C2886827|T037|PT|T80.89XA|ICD10CM|Other complications following infusion, transfusion and therapeutic injection, initial encounter|Other complications following infusion, transfusion and therapeutic injection, initial encounter +C2886828|T037|AB|T80.89XD|ICD10CM|Oth comp fol infusion, transfuse and theraputc inject, subs|Oth comp fol infusion, transfuse and theraputc inject, subs +C2886828|T037|PT|T80.89XD|ICD10CM|Other complications following infusion, transfusion and therapeutic injection, subsequent encounter|Other complications following infusion, transfusion and therapeutic injection, subsequent encounter +C2886829|T037|AB|T80.89XS|ICD10CM|Oth comp fol infusion, tranfs and theraputc inject, sequela|Oth comp fol infusion, tranfs and theraputc inject, sequela +C2886829|T037|PT|T80.89XS|ICD10CM|Other complications following infusion, transfusion and therapeutic injection, sequela|Other complications following infusion, transfusion and therapeutic injection, sequela +C0496129|T046|AB|T80.9|ICD10CM|Unsp comp fol infusion, transfuse and theraputc injection|Unsp comp fol infusion, transfuse and theraputc injection +C0496129|T046|HT|T80.9|ICD10CM|Unspecified complication following infusion, transfusion and therapeutic injection|Unspecified complication following infusion, transfusion and therapeutic injection +C0496129|T046|PT|T80.9|ICD10|Unspecified complication following infusion, transfusion and therapeutic injection|Unspecified complication following infusion, transfusion and therapeutic injection +C2977120|T046|AB|T80.90|ICD10CM|Unsp comp following infusion and therapeutic injection|Unsp comp following infusion and therapeutic injection +C2977120|T046|HT|T80.90|ICD10CM|Unspecified complication following infusion and therapeutic injection|Unspecified complication following infusion and therapeutic injection +C2977121|T046|AB|T80.90XA|ICD10CM|Unsp comp following infusion and therapeutic injection, init|Unsp comp following infusion and therapeutic injection, init +C2977121|T046|PT|T80.90XA|ICD10CM|Unspecified complication following infusion and therapeutic injection, initial encounter|Unspecified complication following infusion and therapeutic injection, initial encounter +C2977122|T046|AB|T80.90XD|ICD10CM|Unsp comp following infusion and therapeutic injection, subs|Unsp comp following infusion and therapeutic injection, subs +C2977122|T046|PT|T80.90XD|ICD10CM|Unspecified complication following infusion and therapeutic injection, subsequent encounter|Unspecified complication following infusion and therapeutic injection, subsequent encounter +C2977123|T046|AB|T80.90XS|ICD10CM|Unsp comp fol infusion and theraputc injection, sequela|Unsp comp fol infusion and theraputc injection, sequela +C2977123|T046|PT|T80.90XS|ICD10CM|Unspecified complication following infusion and therapeutic injection, sequela|Unspecified complication following infusion and therapeutic injection, sequela +C2921258|T046|AB|T80.91|ICD10CM|Hemolytic transfusion reaction, unspecified incompatibility|Hemolytic transfusion reaction, unspecified incompatibility +C2921258|T046|HT|T80.91|ICD10CM|Hemolytic transfusion reaction, unspecified incompatibility|Hemolytic transfusion reaction, unspecified incompatibility +C2921260|T046|AB|T80.910|ICD10CM|Acute hemolytic transfusion reaction, unsp incompatibility|Acute hemolytic transfusion reaction, unsp incompatibility +C2921260|T046|HT|T80.910|ICD10CM|Acute hemolytic transfusion reaction, unspecified incompatibility|Acute hemolytic transfusion reaction, unspecified incompatibility +C2977124|T046|AB|T80.910A|ICD10CM|Acute hemolytic transfs react, unsp incompatibility, init|Acute hemolytic transfs react, unsp incompatibility, init +C2977124|T046|PT|T80.910A|ICD10CM|Acute hemolytic transfusion reaction, unspecified incompatibility, initial encounter|Acute hemolytic transfusion reaction, unspecified incompatibility, initial encounter +C2977125|T046|AB|T80.910D|ICD10CM|Acute hemolytic transfs react, unsp incompatibility, subs|Acute hemolytic transfs react, unsp incompatibility, subs +C2977125|T046|PT|T80.910D|ICD10CM|Acute hemolytic transfusion reaction, unspecified incompatibility, subsequent encounter|Acute hemolytic transfusion reaction, unspecified incompatibility, subsequent encounter +C2977126|T046|AB|T80.910S|ICD10CM|Acute hemolytic transfs react, unsp incompatibility, sequela|Acute hemolytic transfs react, unsp incompatibility, sequela +C2977126|T046|PT|T80.910S|ICD10CM|Acute hemolytic transfusion reaction, unspecified incompatibility, sequela|Acute hemolytic transfusion reaction, unspecified incompatibility, sequela +C2921262|T046|AB|T80.911|ICD10CM|Delayed hemolytic transfusion reaction, unsp incompatibility|Delayed hemolytic transfusion reaction, unsp incompatibility +C2921262|T046|HT|T80.911|ICD10CM|Delayed hemolytic transfusion reaction, unspecified incompatibility|Delayed hemolytic transfusion reaction, unspecified incompatibility +C2977127|T046|AB|T80.911A|ICD10CM|Delayed hemolytic transfs react, unsp incompatibility, init|Delayed hemolytic transfs react, unsp incompatibility, init +C2977127|T046|PT|T80.911A|ICD10CM|Delayed hemolytic transfusion reaction, unspecified incompatibility, initial encounter|Delayed hemolytic transfusion reaction, unspecified incompatibility, initial encounter +C2977128|T046|AB|T80.911D|ICD10CM|Delayed hemolytic transfs react, unsp incompatibility, subs|Delayed hemolytic transfs react, unsp incompatibility, subs +C2977128|T046|PT|T80.911D|ICD10CM|Delayed hemolytic transfusion reaction, unspecified incompatibility, subsequent encounter|Delayed hemolytic transfusion reaction, unspecified incompatibility, subsequent encounter +C2977129|T046|AB|T80.911S|ICD10CM|Delayed hemolytic transfs react, unsp incompat, sequela|Delayed hemolytic transfs react, unsp incompat, sequela +C2977129|T046|PT|T80.911S|ICD10CM|Delayed hemolytic transfusion reaction, unspecified incompatibility, sequela|Delayed hemolytic transfusion reaction, unspecified incompatibility, sequela +C2977130|T046|AB|T80.919|ICD10CM|Hemolytic transfs react, unsp incompatibility, unsp ac/delay|Hemolytic transfs react, unsp incompatibility, unsp ac/delay +C0221123|T046|ET|T80.919|ICD10CM|Hemolytic transfusion reaction NOS|Hemolytic transfusion reaction NOS +C2977130|T046|HT|T80.919|ICD10CM|Hemolytic transfusion reaction, unspecified incompatibility, unspecified as acute or delayed|Hemolytic transfusion reaction, unspecified incompatibility, unspecified as acute or delayed +C2977131|T046|AB|T80.919A|ICD10CM|Hemolytic transfs react, unsp incompat, unsp ac/delay, init|Hemolytic transfs react, unsp incompat, unsp ac/delay, init +C2977132|T046|AB|T80.919D|ICD10CM|Hemolytic transfs react, unsp incompat, unsp ac/delay, subs|Hemolytic transfs react, unsp incompat, unsp ac/delay, subs +C2977133|T046|AB|T80.919S|ICD10CM|Hemolytic transfs react, unsp incompat, unsp ac/delay, sqla|Hemolytic transfs react, unsp incompat, unsp ac/delay, sqla +C0274435|T046|ET|T80.92|ICD10CM|Transfusion reaction NOS|Transfusion reaction NOS +C0274435|T046|AB|T80.92|ICD10CM|Unspecified transfusion reaction|Unspecified transfusion reaction +C0274435|T046|HT|T80.92|ICD10CM|Unspecified transfusion reaction|Unspecified transfusion reaction +C2977134|T046|AB|T80.92XA|ICD10CM|Unspecified transfusion reaction, initial encounter|Unspecified transfusion reaction, initial encounter +C2977134|T046|PT|T80.92XA|ICD10CM|Unspecified transfusion reaction, initial encounter|Unspecified transfusion reaction, initial encounter +C2977135|T046|AB|T80.92XD|ICD10CM|Unspecified transfusion reaction, subsequent encounter|Unspecified transfusion reaction, subsequent encounter +C2977135|T046|PT|T80.92XD|ICD10CM|Unspecified transfusion reaction, subsequent encounter|Unspecified transfusion reaction, subsequent encounter +C2977136|T046|AB|T80.92XS|ICD10CM|Unspecified transfusion reaction, sequela|Unspecified transfusion reaction, sequela +C2977136|T046|PT|T80.92XS|ICD10CM|Unspecified transfusion reaction, sequela|Unspecified transfusion reaction, sequela +C2977138|T046|AB|T80.A|ICD10CM|Non-ABO incompat reaction due to transfusion of bld/bld prod|Non-ABO incompat reaction due to transfusion of bld/bld prod +C2977138|T046|HT|T80.A|ICD10CM|Non-ABO incompatibility reaction due to transfusion of blood or blood products|Non-ABO incompatibility reaction due to transfusion of blood or blood products +C2977137|T046|ET|T80.A|ICD10CM|Reaction due to incompatibility of minor antigens (Duffy) (Kell) (Kidd) (Lewis) (M) (N) (P) (S)|Reaction due to incompatibility of minor antigens (Duffy) (Kell) (Kidd) (Lewis) (M) (N) (P) (S) +C2921237|T046|ET|T80.A0|ICD10CM|Non-ABO antigen incompatibility reaction from transfusion NOS|Non-ABO antigen incompatibility reaction from transfusion NOS +C2977138|T046|AB|T80.A0|ICD10CM|Non-ABO incompat react due to tranfs of bld/bld prod, unsp|Non-ABO incompat react due to tranfs of bld/bld prod, unsp +C2977138|T046|HT|T80.A0|ICD10CM|Non-ABO incompatibility reaction due to transfusion of blood or blood products, unspecified|Non-ABO incompatibility reaction due to transfusion of blood or blood products, unspecified +C2977139|T046|AB|T80.A0XA|ICD10CM|Non-ABO incompat react d/t tranfs of bld/bld prod,unsp, init|Non-ABO incompat react d/t tranfs of bld/bld prod,unsp, init +C2977140|T046|AB|T80.A0XD|ICD10CM|Non-ABO incompat react d/t tranfs of bld/bld prod,unsp, subs|Non-ABO incompat react d/t tranfs of bld/bld prod,unsp, subs +C2977141|T046|AB|T80.A0XS|ICD10CM|Non-ABO incompat react d/t tranfs of bld/bld prod,unsp, sqla|Non-ABO incompat react d/t tranfs of bld/bld prod,unsp, sqla +C2977141|T046|PT|T80.A0XS|ICD10CM|Non-ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, sequela|Non-ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, sequela +C2957507|T046|AB|T80.A1|ICD10CM|Non-ABO incompatibility with hemolytic transfusion reaction|Non-ABO incompatibility with hemolytic transfusion reaction +C2957507|T046|HT|T80.A1|ICD10CM|Non-ABO incompatibility with hemolytic transfusion reaction|Non-ABO incompatibility with hemolytic transfusion reaction +C2977142|T046|ET|T80.A10|ICD10CM|Acute hemolytic transfusion reaction (AHTR) due to non-ABO incompatibility|Acute hemolytic transfusion reaction (AHTR) due to non-ABO incompatibility +C2921245|T046|AB|T80.A10|ICD10CM|Non-ABO incompatibility w acute hemolytic transfs react|Non-ABO incompatibility w acute hemolytic transfs react +C2921245|T046|HT|T80.A10|ICD10CM|Non-ABO incompatibility with acute hemolytic transfusion reaction|Non-ABO incompatibility with acute hemolytic transfusion reaction +C2921246|T046|ET|T80.A10|ICD10CM|Non-ABO incompatibility with hemolytic transfusion reaction less than 24 hours after transfusion|Non-ABO incompatibility with hemolytic transfusion reaction less than 24 hours after transfusion +C2977143|T046|AB|T80.A10A|ICD10CM|Non-ABO incompat w acute hemolytic transfs react, init|Non-ABO incompat w acute hemolytic transfs react, init +C2977143|T046|PT|T80.A10A|ICD10CM|Non-ABO incompatibility with acute hemolytic transfusion reaction, initial encounter|Non-ABO incompatibility with acute hemolytic transfusion reaction, initial encounter +C2977144|T046|AB|T80.A10D|ICD10CM|Non-ABO incompat w acute hemolytic transfs react, subs|Non-ABO incompat w acute hemolytic transfs react, subs +C2977144|T046|PT|T80.A10D|ICD10CM|Non-ABO incompatibility with acute hemolytic transfusion reaction, subsequent encounter|Non-ABO incompatibility with acute hemolytic transfusion reaction, subsequent encounter +C2977145|T046|AB|T80.A10S|ICD10CM|Non-ABO incompat w acute hemolytic transfs react, sequela|Non-ABO incompat w acute hemolytic transfs react, sequela +C2977145|T046|PT|T80.A10S|ICD10CM|Non-ABO incompatibility with acute hemolytic transfusion reaction, sequela|Non-ABO incompatibility with acute hemolytic transfusion reaction, sequela +C2977146|T046|ET|T80.A11|ICD10CM|Delayed hemolytic transfusion reaction (DHTR) due to non-ABO incompatibility|Delayed hemolytic transfusion reaction (DHTR) due to non-ABO incompatibility +C2921249|T046|AB|T80.A11|ICD10CM|Non-ABO incompatibility w delayed hemolytic transfs react|Non-ABO incompatibility w delayed hemolytic transfs react +C2921249|T046|HT|T80.A11|ICD10CM|Non-ABO incompatibility with delayed hemolytic transfusion reaction|Non-ABO incompatibility with delayed hemolytic transfusion reaction +C2921250|T046|ET|T80.A11|ICD10CM|Non-ABO incompatibility with hemolytic transfusion reaction 24 or more hours after transfusion|Non-ABO incompatibility with hemolytic transfusion reaction 24 or more hours after transfusion +C2977147|T046|AB|T80.A11A|ICD10CM|Non-ABO incompat w delayed hemolytic transfs react, init|Non-ABO incompat w delayed hemolytic transfs react, init +C2977147|T046|PT|T80.A11A|ICD10CM|Non-ABO incompatibility with delayed hemolytic transfusion reaction, initial encounter|Non-ABO incompatibility with delayed hemolytic transfusion reaction, initial encounter +C2977148|T046|AB|T80.A11D|ICD10CM|Non-ABO incompat w delayed hemolytic transfs react, subs|Non-ABO incompat w delayed hemolytic transfs react, subs +C2977148|T046|PT|T80.A11D|ICD10CM|Non-ABO incompatibility with delayed hemolytic transfusion reaction, subsequent encounter|Non-ABO incompatibility with delayed hemolytic transfusion reaction, subsequent encounter +C2977149|T046|AB|T80.A11S|ICD10CM|Non-ABO incompat w delayed hemolytic transfs react, sequela|Non-ABO incompat w delayed hemolytic transfs react, sequela +C2977149|T046|PT|T80.A11S|ICD10CM|Non-ABO incompatibility with delayed hemolytic transfusion reaction, sequela|Non-ABO incompatibility with delayed hemolytic transfusion reaction, sequela +C2977150|T046|ET|T80.A19|ICD10CM|Hemolytic transfusion reaction (HTR) due to non-ABO incompatibility NOS|Hemolytic transfusion reaction (HTR) due to non-ABO incompatibility NOS +C2957507|T046|AB|T80.A19|ICD10CM|Non-ABO incompatibility w hemolytic transfs react, unsp|Non-ABO incompatibility w hemolytic transfs react, unsp +C2921241|T046|ET|T80.A19|ICD10CM|Non-ABO incompatibility with hemolytic transfusion reaction at unspecified time after transfusion|Non-ABO incompatibility with hemolytic transfusion reaction at unspecified time after transfusion +C2957507|T046|HT|T80.A19|ICD10CM|Non-ABO incompatibility with hemolytic transfusion reaction, unspecified|Non-ABO incompatibility with hemolytic transfusion reaction, unspecified +C2977151|T046|AB|T80.A19A|ICD10CM|Non-ABO incompat w hemolytic transfs react, unsp, init|Non-ABO incompat w hemolytic transfs react, unsp, init +C2977151|T046|PT|T80.A19A|ICD10CM|Non-ABO incompatibility with hemolytic transfusion reaction, unspecified, initial encounter|Non-ABO incompatibility with hemolytic transfusion reaction, unspecified, initial encounter +C2977152|T046|AB|T80.A19D|ICD10CM|Non-ABO incompat w hemolytic transfs react, unsp, subs|Non-ABO incompat w hemolytic transfs react, unsp, subs +C2977152|T046|PT|T80.A19D|ICD10CM|Non-ABO incompatibility with hemolytic transfusion reaction, unspecified, subsequent encounter|Non-ABO incompatibility with hemolytic transfusion reaction, unspecified, subsequent encounter +C2977153|T046|AB|T80.A19S|ICD10CM|Non-ABO incompat w hemolytic transfs react, unsp, sequela|Non-ABO incompat w hemolytic transfs react, unsp, sequela +C2977153|T046|PT|T80.A19S|ICD10CM|Non-ABO incompatibility with hemolytic transfusion reaction, unspecified, sequela|Non-ABO incompatibility with hemolytic transfusion reaction, unspecified, sequela +C2977154|T046|ET|T80.A9|ICD10CM|Delayed serologic transfusion reaction (DSTR) from non-ABO incompatibility|Delayed serologic transfusion reaction (DSTR) from non-ABO incompatibility +C2977156|T046|AB|T80.A9|ICD10CM|Oth non-ABO incompat reaction due to tranfs of bld/bld prod|Oth non-ABO incompat reaction due to tranfs of bld/bld prod +C2977156|T046|HT|T80.A9|ICD10CM|Other non-ABO incompatibility reaction due to transfusion of blood or blood products|Other non-ABO incompatibility reaction due to transfusion of blood or blood products +C2977155|T046|ET|T80.A9|ICD10CM|Other reaction to non-ABO incompatible blood transfusion|Other reaction to non-ABO incompatible blood transfusion +C2977157|T046|AB|T80.A9XA|ICD10CM|Oth non-ABO incompat react d/t tranfs of bld/bld prod, init|Oth non-ABO incompat react d/t tranfs of bld/bld prod, init +C2977158|T046|AB|T80.A9XD|ICD10CM|Oth non-ABO incompat react d/t tranfs of bld/bld prod, subs|Oth non-ABO incompat react d/t tranfs of bld/bld prod, subs +C2977159|T046|AB|T80.A9XS|ICD10CM|Oth non-ABO incompat react d/t tranfs of bld/bld prod, sqla|Oth non-ABO incompat react d/t tranfs of bld/bld prod, sqla +C2977159|T046|PT|T80.A9XS|ICD10CM|Other non-ABO incompatibility reaction due to transfusion of blood or blood products, sequela|Other non-ABO incompatibility reaction due to transfusion of blood or blood products, sequela +C0869443|T037|HT|T81|ICD10|Complications of procedures, not elsewhere classified|Complications of procedures, not elsewhere classified +C0869443|T037|AB|T81|ICD10CM|Complications of procedures, not elsewhere classified|Complications of procedures, not elsewhere classified +C0869443|T037|HT|T81|ICD10CM|Complications of procedures, not elsewhere classified|Complications of procedures, not elsewhere classified +C0496131|T046|PT|T81.0|ICD10|Haemorrhage and haematoma complicating a procedure, not elsewhere classified|Haemorrhage and haematoma complicating a procedure, not elsewhere classified +C0496131|T046|PT|T81.0|ICD10AE|Hemorrhage and hematoma complicating a procedure, not elsewhere classified|Hemorrhage and hematoma complicating a procedure, not elsewhere classified +C3263891|T037|HT|T81.1|ICD10CM|Postprocedural shock|Postprocedural shock +C3263891|T037|AB|T81.1|ICD10CM|Postprocedural shock|Postprocedural shock +C0496132|T046|ET|T81.1|ICD10CM|Shock during or resulting from a procedure, not elsewhere classified|Shock during or resulting from a procedure, not elsewhere classified +C0496132|T046|PT|T81.1|ICD10|Shock during or resulting from a procedure, not elsewhere classified|Shock during or resulting from a procedure, not elsewhere classified +C3263889|T046|ET|T81.10|ICD10CM|Collapse NOS during or resulting from a procedure, not elsewhere classified|Collapse NOS during or resulting from a procedure, not elsewhere classified +C3263890|T037|ET|T81.10|ICD10CM|Postprocedural failure of peripheral circulation|Postprocedural failure of peripheral circulation +C3263891|T037|ET|T81.10|ICD10CM|Postprocedural shock NOS|Postprocedural shock NOS +C3263892|T037|AB|T81.10|ICD10CM|Postprocedural shock unspecified|Postprocedural shock unspecified +C3263892|T037|HT|T81.10|ICD10CM|Postprocedural shock unspecified|Postprocedural shock unspecified +C3263893|T037|AB|T81.10XA|ICD10CM|Postprocedural shock unspecified, initial encounter|Postprocedural shock unspecified, initial encounter +C3263893|T037|PT|T81.10XA|ICD10CM|Postprocedural shock unspecified, initial encounter|Postprocedural shock unspecified, initial encounter +C3263894|T037|AB|T81.10XD|ICD10CM|Postprocedural shock unspecified, subsequent encounter|Postprocedural shock unspecified, subsequent encounter +C3263894|T037|PT|T81.10XD|ICD10CM|Postprocedural shock unspecified, subsequent encounter|Postprocedural shock unspecified, subsequent encounter +C3263895|T037|AB|T81.10XS|ICD10CM|Postprocedural shock unspecified, sequela|Postprocedural shock unspecified, sequela +C3263895|T037|PT|T81.10XS|ICD10CM|Postprocedural shock unspecified, sequela|Postprocedural shock unspecified, sequela +C3263896|T046|AB|T81.11|ICD10CM|Postprocedural cardiogenic shock|Postprocedural cardiogenic shock +C3263896|T046|HT|T81.11|ICD10CM|Postprocedural cardiogenic shock|Postprocedural cardiogenic shock +C3263897|T037|AB|T81.11XA|ICD10CM|Postprocedural cardiogenic shock, initial encounter|Postprocedural cardiogenic shock, initial encounter +C3263897|T037|PT|T81.11XA|ICD10CM|Postprocedural cardiogenic shock, initial encounter|Postprocedural cardiogenic shock, initial encounter +C3263898|T037|AB|T81.11XD|ICD10CM|Postprocedural cardiogenic shock, subsequent encounter|Postprocedural cardiogenic shock, subsequent encounter +C3263898|T037|PT|T81.11XD|ICD10CM|Postprocedural cardiogenic shock, subsequent encounter|Postprocedural cardiogenic shock, subsequent encounter +C3263899|T037|AB|T81.11XS|ICD10CM|Postprocedural cardiogenic shock, sequela|Postprocedural cardiogenic shock, sequela +C3263899|T037|PT|T81.11XS|ICD10CM|Postprocedural cardiogenic shock, sequela|Postprocedural cardiogenic shock, sequela +C4270118|T046|ET|T81.12|ICD10CM|Postprocedural endotoxic shock resulting from a procedure, not elsewhere classified|Postprocedural endotoxic shock resulting from a procedure, not elsewhere classified +C4270119|T046|ET|T81.12|ICD10CM|Postprocedural gram-negative shock resulting from a procedure, not elsewhere classified|Postprocedural gram-negative shock resulting from a procedure, not elsewhere classified +C3263902|T046|HT|T81.12|ICD10CM|Postprocedural septic shock|Postprocedural septic shock +C3263902|T046|AB|T81.12|ICD10CM|Postprocedural septic shock|Postprocedural septic shock +C3263903|T037|AB|T81.12XA|ICD10CM|Postprocedural septic shock, initial encounter|Postprocedural septic shock, initial encounter +C3263903|T037|PT|T81.12XA|ICD10CM|Postprocedural septic shock, initial encounter|Postprocedural septic shock, initial encounter +C3263904|T037|AB|T81.12XD|ICD10CM|Postprocedural septic shock, subsequent encounter|Postprocedural septic shock, subsequent encounter +C3263904|T037|PT|T81.12XD|ICD10CM|Postprocedural septic shock, subsequent encounter|Postprocedural septic shock, subsequent encounter +C3263905|T037|AB|T81.12XS|ICD10CM|Postprocedural septic shock, sequela|Postprocedural septic shock, sequela +C3263905|T037|PT|T81.12XS|ICD10CM|Postprocedural septic shock, sequela|Postprocedural septic shock, sequela +C3263907|T037|AB|T81.19|ICD10CM|Other postprocedural shock|Other postprocedural shock +C3263907|T037|HT|T81.19|ICD10CM|Other postprocedural shock|Other postprocedural shock +C3263906|T037|ET|T81.19|ICD10CM|Postprocedural hypovolemic shock|Postprocedural hypovolemic shock +C3263908|T037|AB|T81.19XA|ICD10CM|Other postprocedural shock, initial encounter|Other postprocedural shock, initial encounter +C3263908|T037|PT|T81.19XA|ICD10CM|Other postprocedural shock, initial encounter|Other postprocedural shock, initial encounter +C3263909|T037|AB|T81.19XD|ICD10CM|Other postprocedural shock, subsequent encounter|Other postprocedural shock, subsequent encounter +C3263909|T037|PT|T81.19XD|ICD10CM|Other postprocedural shock, subsequent encounter|Other postprocedural shock, subsequent encounter +C3263910|T037|AB|T81.19XS|ICD10CM|Other postprocedural shock, sequela|Other postprocedural shock, sequela +C3263910|T037|PT|T81.19XS|ICD10CM|Other postprocedural shock, sequela|Other postprocedural shock, sequela +C0496133|T037|PT|T81.2|ICD10|Accidental puncture and laceration during a procedure, not elsewhere classified|Accidental puncture and laceration during a procedure, not elsewhere classified +C2349790|T033|ET|T81.3|ICD10CM|Disruption of any suture materials or other closure methods|Disruption of any suture materials or other closure methods +C0302418|T047|PT|T81.3|ICD10|Disruption of operation wound, not elsewhere classified|Disruption of operation wound, not elsewhere classified +C2886839|T037|AB|T81.3|ICD10CM|Disruption of wound, not elsewhere classified|Disruption of wound, not elsewhere classified +C2886839|T037|HT|T81.3|ICD10CM|Disruption of wound, not elsewhere classified|Disruption of wound, not elsewhere classified +C0259768|T046|ET|T81.30|ICD10CM|Disruption of wound NOS|Disruption of wound NOS +C0259768|T046|HT|T81.30|ICD10CM|Disruption of wound, unspecified|Disruption of wound, unspecified +C0259768|T046|AB|T81.30|ICD10CM|Disruption of wound, unspecified|Disruption of wound, unspecified +C2886840|T037|AB|T81.30XA|ICD10CM|Disruption of wound, unspecified, initial encounter|Disruption of wound, unspecified, initial encounter +C2886840|T037|PT|T81.30XA|ICD10CM|Disruption of wound, unspecified, initial encounter|Disruption of wound, unspecified, initial encounter +C2886841|T037|AB|T81.30XD|ICD10CM|Disruption of wound, unspecified, subsequent encounter|Disruption of wound, unspecified, subsequent encounter +C2886841|T037|PT|T81.30XD|ICD10CM|Disruption of wound, unspecified, subsequent encounter|Disruption of wound, unspecified, subsequent encounter +C2886842|T037|AB|T81.30XS|ICD10CM|Disruption of wound, unspecified, sequela|Disruption of wound, unspecified, sequela +C2886842|T037|PT|T81.30XS|ICD10CM|Disruption of wound, unspecified, sequela|Disruption of wound, unspecified, sequela +C0038940|T046|ET|T81.31|ICD10CM|Dehiscence of operation wound NOS|Dehiscence of operation wound NOS +C2886844|T037|AB|T81.31|ICD10CM|Disruption of external operation (surgical) wound, NEC|Disruption of external operation (surgical) wound, NEC +C2886844|T037|HT|T81.31|ICD10CM|Disruption of external operation (surgical) wound, not elsewhere classified|Disruption of external operation (surgical) wound, not elsewhere classified +C0038940|T046|ET|T81.31|ICD10CM|Disruption of operation wound NOS|Disruption of operation wound NOS +C2349781|T037|ET|T81.31|ICD10CM|Disruption or dehiscence of closure of cornea|Disruption or dehiscence of closure of cornea +C2349782|T037|ET|T81.31|ICD10CM|Disruption or dehiscence of closure of mucosa|Disruption or dehiscence of closure of mucosa +C2886843|T046|ET|T81.31|ICD10CM|Disruption or dehiscence of closure of skin and subcutaneous tissue|Disruption or dehiscence of closure of skin and subcutaneous tissue +C2349785|T037|ET|T81.31|ICD10CM|Full-thickness skin disruption or dehiscence|Full-thickness skin disruption or dehiscence +C2349786|T046|ET|T81.31|ICD10CM|Superficial disruption or dehiscence of operation wound|Superficial disruption or dehiscence of operation wound +C2886845|T037|AB|T81.31XA|ICD10CM|Disruption of external operation (surgical) wound, NEC, init|Disruption of external operation (surgical) wound, NEC, init +C2886845|T037|PT|T81.31XA|ICD10CM|Disruption of external operation (surgical) wound, not elsewhere classified, initial encounter|Disruption of external operation (surgical) wound, not elsewhere classified, initial encounter +C2886846|T037|AB|T81.31XD|ICD10CM|Disruption of external operation (surgical) wound, NEC, subs|Disruption of external operation (surgical) wound, NEC, subs +C2886846|T037|PT|T81.31XD|ICD10CM|Disruption of external operation (surgical) wound, not elsewhere classified, subsequent encounter|Disruption of external operation (surgical) wound, not elsewhere classified, subsequent encounter +C2886847|T037|AB|T81.31XS|ICD10CM|Disrupt of external operation (surgical) wound, NEC, sequela|Disrupt of external operation (surgical) wound, NEC, sequela +C2886847|T037|PT|T81.31XS|ICD10CM|Disruption of external operation (surgical) wound, not elsewhere classified, sequela|Disruption of external operation (surgical) wound, not elsewhere classified, sequela +C2349771|T046|ET|T81.32|ICD10CM|Deep disruption or dehiscence of operation wound NOS|Deep disruption or dehiscence of operation wound NOS +C2886849|T037|AB|T81.32|ICD10CM|Disruption of internal operation (surgical) wound, NEC|Disruption of internal operation (surgical) wound, NEC +C2886849|T037|HT|T81.32|ICD10CM|Disruption of internal operation (surgical) wound, not elsewhere classified|Disruption of internal operation (surgical) wound, not elsewhere classified +C2886848|T046|ET|T81.32|ICD10CM|Disruption or dehiscence of closure of internal organ or other internal tissue|Disruption or dehiscence of closure of internal organ or other internal tissue +C2349775|T037|ET|T81.32|ICD10CM|Disruption or dehiscence of closure of muscle or muscle flap|Disruption or dehiscence of closure of muscle or muscle flap +C2349776|T037|ET|T81.32|ICD10CM|Disruption or dehiscence of closure of ribs or rib cage|Disruption or dehiscence of closure of ribs or rib cage +C2349777|T037|ET|T81.32|ICD10CM|Disruption or dehiscence of closure of skull or craniotomy|Disruption or dehiscence of closure of skull or craniotomy +C2349778|T037|ET|T81.32|ICD10CM|Disruption or dehiscence of closure of sternum or sternotomy|Disruption or dehiscence of closure of sternum or sternotomy +C2349773|T033|ET|T81.32|ICD10CM|Disruption or dehiscence of closure of superficial or muscular fascia|Disruption or dehiscence of closure of superficial or muscular fascia +C2349779|T037|ET|T81.32|ICD10CM|Disruption or dehiscence of closure of tendon or ligament|Disruption or dehiscence of closure of tendon or ligament +C2886850|T037|AB|T81.32XA|ICD10CM|Disruption of internal operation (surgical) wound, NEC, init|Disruption of internal operation (surgical) wound, NEC, init +C2886850|T037|PT|T81.32XA|ICD10CM|Disruption of internal operation (surgical) wound, not elsewhere classified, initial encounter|Disruption of internal operation (surgical) wound, not elsewhere classified, initial encounter +C2886851|T037|AB|T81.32XD|ICD10CM|Disruption of internal operation (surgical) wound, NEC, subs|Disruption of internal operation (surgical) wound, NEC, subs +C2886851|T037|PT|T81.32XD|ICD10CM|Disruption of internal operation (surgical) wound, not elsewhere classified, subsequent encounter|Disruption of internal operation (surgical) wound, not elsewhere classified, subsequent encounter +C2886852|T037|AB|T81.32XS|ICD10CM|Disrupt of internal operation (surgical) wound, NEC, sequela|Disrupt of internal operation (surgical) wound, NEC, sequela +C2886852|T037|PT|T81.32XS|ICD10CM|Disruption of internal operation (surgical) wound, not elsewhere classified, sequela|Disruption of internal operation (surgical) wound, not elsewhere classified, sequela +C2349787|T046|HT|T81.33|ICD10CM|Disruption of traumatic injury wound repair|Disruption of traumatic injury wound repair +C2349787|T046|AB|T81.33|ICD10CM|Disruption of traumatic injury wound repair|Disruption of traumatic injury wound repair +C2886853|T037|ET|T81.33|ICD10CM|Disruption or dehiscence of closure of traumatic laceration (external) (internal)|Disruption or dehiscence of closure of traumatic laceration (external) (internal) +C2886854|T037|AB|T81.33XA|ICD10CM|Disruption of traumatic injury wound repair, init encntr|Disruption of traumatic injury wound repair, init encntr +C2886854|T037|PT|T81.33XA|ICD10CM|Disruption of traumatic injury wound repair, initial encounter|Disruption of traumatic injury wound repair, initial encounter +C2886855|T037|AB|T81.33XD|ICD10CM|Disruption of traumatic injury wound repair, subs encntr|Disruption of traumatic injury wound repair, subs encntr +C2886855|T037|PT|T81.33XD|ICD10CM|Disruption of traumatic injury wound repair, subsequent encounter|Disruption of traumatic injury wound repair, subsequent encounter +C2886856|T037|AB|T81.33XS|ICD10CM|Disruption of traumatic injury wound repair, sequela|Disruption of traumatic injury wound repair, sequela +C2886856|T037|PT|T81.33XS|ICD10CM|Disruption of traumatic injury wound repair, sequela|Disruption of traumatic injury wound repair, sequela +C2886863|T037|AB|T81.4|ICD10CM|Infection following a procedure|Infection following a procedure +C2886863|T037|HT|T81.4|ICD10CM|Infection following a procedure|Infection following a procedure +C0496134|T046|PT|T81.4|ICD10|Infection following a procedure, not elsewhere classified|Infection following a procedure, not elsewhere classified +C2886862|T046|ET|T81.4|ICD10CM|Wound abscess following a procedure|Wound abscess following a procedure +C4718824|T046|AB|T81.40|ICD10CM|Infection following a procedure, unspecified|Infection following a procedure, unspecified +C4718824|T046|HT|T81.40|ICD10CM|Infection following a procedure, unspecified|Infection following a procedure, unspecified +C2886864|T046|AB|T81.40XA|ICD10CM|Infection following a procedure, unspecified, init|Infection following a procedure, unspecified, init +C2886864|T046|PT|T81.40XA|ICD10CM|Infection following a procedure, unspecified, initial encounter|Infection following a procedure, unspecified, initial encounter +C2886865|T046|AB|T81.40XD|ICD10CM|Infection following a procedure, unspecified, subs|Infection following a procedure, unspecified, subs +C2886865|T046|PT|T81.40XD|ICD10CM|Infection following a procedure, unspecified, subsequent encounter|Infection following a procedure, unspecified, subsequent encounter +C2886866|T046|AB|T81.40XS|ICD10CM|Infection following a procedure, unspecified, sequela|Infection following a procedure, unspecified, sequela +C2886866|T046|PT|T81.40XS|ICD10CM|Infection following a procedure, unspecified, sequela|Infection following a procedure, unspecified, sequela +C4718825|T046|AB|T81.41|ICD10CM|Infection fol a procedure, superfic incisional surgical site|Infection fol a procedure, superfic incisional surgical site +C4718825|T046|HT|T81.41|ICD10CM|Infection following a procedure, superficial incisional surgical site|Infection following a procedure, superficial incisional surgical site +C2886860|T046|ET|T81.41|ICD10CM|Stitch abscess following a procedure|Stitch abscess following a procedure +C4718826|T047|ET|T81.41|ICD10CM|Subcutaneous abscess following a procedure|Subcutaneous abscess following a procedure +C4553456|T046|AB|T81.41XA|ICD10CM|Infct fol a proc, superfic incisional surgical site, init|Infct fol a proc, superfic incisional surgical site, init +C4553456|T046|PT|T81.41XA|ICD10CM|Infection following a procedure, superficial incisional surgical site, initial encounter|Infection following a procedure, superficial incisional surgical site, initial encounter +C4553457|T046|AB|T81.41XD|ICD10CM|Infct fol a proc, superfic incisional surgical site, subs|Infct fol a proc, superfic incisional surgical site, subs +C4553457|T046|PT|T81.41XD|ICD10CM|Infection following a procedure, superficial incisional surgical site, subsequent encounter|Infection following a procedure, superficial incisional surgical site, subsequent encounter +C4553458|T046|AB|T81.41XS|ICD10CM|Infct fol a proc, superfic incisional surgical site, sequela|Infct fol a proc, superfic incisional surgical site, sequela +C4553458|T046|PT|T81.41XS|ICD10CM|Infection following a procedure, superficial incisional surgical site, sequela|Infection following a procedure, superficial incisional surgical site, sequela +C4718827|T046|AB|T81.42|ICD10CM|Infection fol a procedure, deep incisional surgical site|Infection fol a procedure, deep incisional surgical site +C4718827|T046|HT|T81.42|ICD10CM|Infection following a procedure, deep incisional surgical site|Infection following a procedure, deep incisional surgical site +C4718828|T046|ET|T81.42|ICD10CM|Intra-muscular abscess following a procedure|Intra-muscular abscess following a procedure +C4553459|T046|AB|T81.42XA|ICD10CM|Infct fol a procedure, deep incisional surgical site, init|Infct fol a procedure, deep incisional surgical site, init +C4553459|T046|PT|T81.42XA|ICD10CM|Infection following a procedure, deep incisional surgical site, initial encounter|Infection following a procedure, deep incisional surgical site, initial encounter +C4553460|T046|AB|T81.42XD|ICD10CM|Infct fol a procedure, deep incisional surgical site, subs|Infct fol a procedure, deep incisional surgical site, subs +C4553460|T046|PT|T81.42XD|ICD10CM|Infection following a procedure, deep incisional surgical site, subsequent encounter|Infection following a procedure, deep incisional surgical site, subsequent encounter +C4553461|T046|AB|T81.42XS|ICD10CM|Infct fol a proc, deep incisional surgical site, sequela|Infct fol a proc, deep incisional surgical site, sequela +C4553461|T046|PT|T81.42XS|ICD10CM|Infection following a procedure, deep incisional surgical site, sequela|Infection following a procedure, deep incisional surgical site, sequela +C4718829|T046|AB|T81.43|ICD10CM|Infection fol a procedure, organ and space surgical site|Infection fol a procedure, organ and space surgical site +C4718829|T046|HT|T81.43|ICD10CM|Infection following a procedure, organ and space surgical site|Infection following a procedure, organ and space surgical site +C2886857|T046|ET|T81.43|ICD10CM|Intra-abdominal abscess following a procedure|Intra-abdominal abscess following a procedure +C2886861|T046|ET|T81.43|ICD10CM|Subphrenic abscess following a procedure|Subphrenic abscess following a procedure +C4553462|T046|AB|T81.43XA|ICD10CM|Infct fol a procedure, organ and space surgical site, init|Infct fol a procedure, organ and space surgical site, init +C4553462|T046|PT|T81.43XA|ICD10CM|Infection following a procedure, organ and space surgical site, initial encounter|Infection following a procedure, organ and space surgical site, initial encounter +C4553463|T046|AB|T81.43XD|ICD10CM|Infct fol a procedure, organ and space surgical site, subs|Infct fol a procedure, organ and space surgical site, subs +C4553463|T046|PT|T81.43XD|ICD10CM|Infection following a procedure, organ and space surgical site, subsequent encounter|Infection following a procedure, organ and space surgical site, subsequent encounter +C4553464|T046|AB|T81.43XS|ICD10CM|Infct fol a proc, organ and space surgical site, sequela|Infct fol a proc, organ and space surgical site, sequela +C4553464|T046|PT|T81.43XS|ICD10CM|Infection following a procedure, organ and space surgical site, sequela|Infection following a procedure, organ and space surgical site, sequela +C2886859|T047|HT|T81.44|ICD10CM|Sepsis following a procedure|Sepsis following a procedure +C2886859|T047|AB|T81.44|ICD10CM|Sepsis following a procedure|Sepsis following a procedure +C4553465|T047|AB|T81.44XA|ICD10CM|Sepsis following a procedure, initial encounter|Sepsis following a procedure, initial encounter +C4553465|T047|PT|T81.44XA|ICD10CM|Sepsis following a procedure, initial encounter|Sepsis following a procedure, initial encounter +C4553466|T047|AB|T81.44XD|ICD10CM|Sepsis following a procedure, subsequent encounter|Sepsis following a procedure, subsequent encounter +C4553466|T047|PT|T81.44XD|ICD10CM|Sepsis following a procedure, subsequent encounter|Sepsis following a procedure, subsequent encounter +C4553467|T047|AB|T81.44XS|ICD10CM|Sepsis following a procedure, sequela|Sepsis following a procedure, sequela +C4553467|T047|PT|T81.44XS|ICD10CM|Sepsis following a procedure, sequela|Sepsis following a procedure, sequela +C4702979|T046|HT|T81.49|ICD10CM|Infection following a procedure, other surgical site|Infection following a procedure, other surgical site +C4702979|T046|AB|T81.49|ICD10CM|Infection following a procedure, other surgical site|Infection following a procedure, other surgical site +C4553468|T046|AB|T81.49XA|ICD10CM|Infection following a procedure, other surgical site, init|Infection following a procedure, other surgical site, init +C4553468|T046|PT|T81.49XA|ICD10CM|Infection following a procedure, other surgical site, initial encounter|Infection following a procedure, other surgical site, initial encounter +C4553469|T046|AB|T81.49XD|ICD10CM|Infection following a procedure, other surgical site, subs|Infection following a procedure, other surgical site, subs +C4553469|T046|PT|T81.49XD|ICD10CM|Infection following a procedure, other surgical site, subsequent encounter|Infection following a procedure, other surgical site, subsequent encounter +C4553590|T046|AB|T81.49XS|ICD10CM|Infection fol a procedure, other surgical site, sequela|Infection fol a procedure, other surgical site, sequela +C4553590|T046|PT|T81.49XS|ICD10CM|Infection following a procedure, other surgical site, sequela|Infection following a procedure, other surgical site, sequela +C2886867|T037|AB|T81.5|ICD10CM|Comp of foreign body acc left in body following procedure|Comp of foreign body acc left in body following procedure +C2886867|T037|HT|T81.5|ICD10CM|Complications of foreign body accidentally left in body following procedure|Complications of foreign body accidentally left in body following procedure +C0496135|T037|PT|T81.5|ICD10|Foreign body accidentally left in body cavity or operation wound following a procedure|Foreign body accidentally left in body cavity or operation wound following a procedure +C2886868|T037|AB|T81.50|ICD10CM|Unsp comp of fb acc left in body following procedure|Unsp comp of fb acc left in body following procedure +C2886868|T037|HT|T81.50|ICD10CM|Unspecified complication of foreign body accidentally left in body following procedure|Unspecified complication of foreign body accidentally left in body following procedure +C2886869|T037|AB|T81.500|ICD10CM|Unsp comp of fb acc left in body fol surgical operation|Unsp comp of fb acc left in body fol surgical operation +C2886869|T037|HT|T81.500|ICD10CM|Unspecified complication of foreign body accidentally left in body following surgical operation|Unspecified complication of foreign body accidentally left in body following surgical operation +C2886870|T037|AB|T81.500A|ICD10CM|Unsp comp of fb acc left in body fol surgical op, init|Unsp comp of fb acc left in body fol surgical op, init +C2886871|T037|AB|T81.500D|ICD10CM|Unsp comp of fb acc left in body fol surgical op, subs|Unsp comp of fb acc left in body fol surgical op, subs +C2886872|T037|AB|T81.500S|ICD10CM|Unsp comp of fb acc left in body fol surgical op, sequela|Unsp comp of fb acc left in body fol surgical op, sequela +C2886873|T037|AB|T81.501|ICD10CM|Unsp comp of fb acc left in body following infusn/transfusn|Unsp comp of fb acc left in body following infusn/transfusn +C2886873|T037|HT|T81.501|ICD10CM|Unspecified complication of foreign body accidentally left in body following infusion or transfusion|Unspecified complication of foreign body accidentally left in body following infusion or transfusion +C2886874|T037|AB|T81.501A|ICD10CM|Unsp comp of fb acc left in body fol infusn/transfusn, init|Unsp comp of fb acc left in body fol infusn/transfusn, init +C2886875|T037|AB|T81.501D|ICD10CM|Unsp comp of fb acc left in body fol infusn/transfusn, subs|Unsp comp of fb acc left in body fol infusn/transfusn, subs +C2886876|T037|AB|T81.501S|ICD10CM|Unsp comp of fb acc left in body fol infusn/transfusn, sqla|Unsp comp of fb acc left in body fol infusn/transfusn, sqla +C2886877|T037|AB|T81.502|ICD10CM|Unsp comp of fb acc left in body following kidney dialysis|Unsp comp of fb acc left in body following kidney dialysis +C2886877|T037|HT|T81.502|ICD10CM|Unspecified complication of foreign body accidentally left in body following kidney dialysis|Unspecified complication of foreign body accidentally left in body following kidney dialysis +C2886878|T037|AB|T81.502A|ICD10CM|Unsp comp of fb acc left in body fol kidney dialysis, init|Unsp comp of fb acc left in body fol kidney dialysis, init +C2886879|T037|AB|T81.502D|ICD10CM|Unsp comp of fb acc left in body fol kidney dialysis, subs|Unsp comp of fb acc left in body fol kidney dialysis, subs +C2886880|T037|AB|T81.502S|ICD10CM|Unsp comp of fb acc left in body fol kidney dialysis, sqla|Unsp comp of fb acc left in body fol kidney dialysis, sqla +C2886881|T037|AB|T81.503|ICD10CM|Unsp comp of fb acc left in body fol injection or immuniz|Unsp comp of fb acc left in body fol injection or immuniz +C2886882|T037|AB|T81.503A|ICD10CM|Unsp comp of fb acc left in body fol inject or immuniz, init|Unsp comp of fb acc left in body fol inject or immuniz, init +C2886883|T037|AB|T81.503D|ICD10CM|Unsp comp of fb acc left in body fol inject or immuniz, subs|Unsp comp of fb acc left in body fol inject or immuniz, subs +C2886884|T037|AB|T81.503S|ICD10CM|Unsp comp of fb acc left in body fol inject or immuniz, sqla|Unsp comp of fb acc left in body fol inject or immuniz, sqla +C2886885|T037|AB|T81.504|ICD10CM|Unsp comp of fb acc left in body following endoscopic exam|Unsp comp of fb acc left in body following endoscopic exam +C2886885|T037|HT|T81.504|ICD10CM|Unspecified complication of foreign body accidentally left in body following endoscopic examination|Unspecified complication of foreign body accidentally left in body following endoscopic examination +C2886886|T037|AB|T81.504A|ICD10CM|Unsp comp of fb acc left in body following endo exam, init|Unsp comp of fb acc left in body following endo exam, init +C2886887|T037|AB|T81.504D|ICD10CM|Unsp comp of fb acc left in body following endo exam, subs|Unsp comp of fb acc left in body following endo exam, subs +C2886888|T037|AB|T81.504S|ICD10CM|Unsp comp of fb acc left in body fol endo exam, sequela|Unsp comp of fb acc left in body fol endo exam, sequela +C2886889|T037|AB|T81.505|ICD10CM|Unsp comp of fb acc left in body following heart cath|Unsp comp of fb acc left in body following heart cath +C2886889|T037|HT|T81.505|ICD10CM|Unspecified complication of foreign body accidentally left in body following heart catheterization|Unspecified complication of foreign body accidentally left in body following heart catheterization +C2886890|T037|AB|T81.505A|ICD10CM|Unsp comp of fb acc left in body following heart cath, init|Unsp comp of fb acc left in body following heart cath, init +C2886891|T037|AB|T81.505D|ICD10CM|Unsp comp of fb acc left in body following heart cath, subs|Unsp comp of fb acc left in body following heart cath, subs +C2886892|T037|AB|T81.505S|ICD10CM|Unsp comp of fb acc left in body fol heart cath, sequela|Unsp comp of fb acc left in body fol heart cath, sequela +C2886893|T037|AB|T81.506|ICD10CM|Unsp comp of fb acc left in body following punctr/cath|Unsp comp of fb acc left in body following punctr/cath +C2886894|T037|AB|T81.506A|ICD10CM|Unsp comp of fb acc left in body following punctr/cath, init|Unsp comp of fb acc left in body following punctr/cath, init +C2886895|T037|AB|T81.506D|ICD10CM|Unsp comp of fb acc left in body following punctr/cath, subs|Unsp comp of fb acc left in body following punctr/cath, subs +C2886896|T037|AB|T81.506S|ICD10CM|Unsp comp of fb acc left in body fol punctr/cath, sequela|Unsp comp of fb acc left in body fol punctr/cath, sequela +C2886897|T037|AB|T81.507|ICD10CM|Unsp comp of fb acc left in body following remov cath/pack|Unsp comp of fb acc left in body following remov cath/pack +C2886898|T037|AB|T81.507A|ICD10CM|Unsp comp of fb acc left in body fol remov cath/pack, init|Unsp comp of fb acc left in body fol remov cath/pack, init +C2886899|T037|AB|T81.507D|ICD10CM|Unsp comp of fb acc left in body fol remov cath/pack, subs|Unsp comp of fb acc left in body fol remov cath/pack, subs +C2886900|T037|AB|T81.507S|ICD10CM|Unsp comp of fb acc left in body fol remov cath/pack, sqla|Unsp comp of fb acc left in body fol remov cath/pack, sqla +C2886901|T037|AB|T81.508|ICD10CM|Unsp comp of fb acc left in body following oth procedure|Unsp comp of fb acc left in body following oth procedure +C2886901|T037|HT|T81.508|ICD10CM|Unspecified complication of foreign body accidentally left in body following other procedure|Unspecified complication of foreign body accidentally left in body following other procedure +C2886902|T037|AB|T81.508A|ICD10CM|Unsp comp of fb acc left in body fol oth procedure, init|Unsp comp of fb acc left in body fol oth procedure, init +C2886903|T037|AB|T81.508D|ICD10CM|Unsp comp of fb acc left in body fol oth procedure, subs|Unsp comp of fb acc left in body fol oth procedure, subs +C2886904|T037|AB|T81.508S|ICD10CM|Unsp comp of fb acc left in body fol oth procedure, sequela|Unsp comp of fb acc left in body fol oth procedure, sequela +C2886905|T037|AB|T81.509|ICD10CM|Unsp comp of fb acc left in body following unsp procedure|Unsp comp of fb acc left in body following unsp procedure +C2886905|T037|HT|T81.509|ICD10CM|Unspecified complication of foreign body accidentally left in body following unspecified procedure|Unspecified complication of foreign body accidentally left in body following unspecified procedure +C2886906|T037|AB|T81.509A|ICD10CM|Unsp comp of fb acc left in body fol unsp procedure, init|Unsp comp of fb acc left in body fol unsp procedure, init +C2886907|T037|AB|T81.509D|ICD10CM|Unsp comp of fb acc left in body fol unsp procedure, subs|Unsp comp of fb acc left in body fol unsp procedure, subs +C2886908|T037|AB|T81.509S|ICD10CM|Unsp comp of fb acc left in body fol unsp procedure, sequela|Unsp comp of fb acc left in body fol unsp procedure, sequela +C2886909|T037|AB|T81.51|ICD10CM|Adhesions due to fb acc left in body following procedure|Adhesions due to fb acc left in body following procedure +C2886909|T037|HT|T81.51|ICD10CM|Adhesions due to foreign body accidentally left in body following procedure|Adhesions due to foreign body accidentally left in body following procedure +C2886910|T037|AB|T81.510|ICD10CM|Adhes due to fb acc left in body fol surgical operation|Adhes due to fb acc left in body fol surgical operation +C2886910|T037|HT|T81.510|ICD10CM|Adhesions due to foreign body accidentally left in body following surgical operation|Adhesions due to foreign body accidentally left in body following surgical operation +C2886911|T037|AB|T81.510A|ICD10CM|Adhes due to fb acc left in body fol surgical op, init|Adhes due to fb acc left in body fol surgical op, init +C2886912|T037|AB|T81.510D|ICD10CM|Adhes due to fb acc left in body fol surgical op, subs|Adhes due to fb acc left in body fol surgical op, subs +C2886913|T037|AB|T81.510S|ICD10CM|Adhes due to fb acc left in body fol surgical op, sequela|Adhes due to fb acc left in body fol surgical op, sequela +C2886913|T037|PT|T81.510S|ICD10CM|Adhesions due to foreign body accidentally left in body following surgical operation, sequela|Adhesions due to foreign body accidentally left in body following surgical operation, sequela +C2886914|T037|AB|T81.511|ICD10CM|Adhes due to fb acc left in body following infusn/transfusn|Adhes due to fb acc left in body following infusn/transfusn +C2886914|T037|HT|T81.511|ICD10CM|Adhesions due to foreign body accidentally left in body following infusion or transfusion|Adhesions due to foreign body accidentally left in body following infusion or transfusion +C2886915|T037|AB|T81.511A|ICD10CM|Adhes due to fb acc left in body fol infusn/transfusn, init|Adhes due to fb acc left in body fol infusn/transfusn, init +C2886916|T037|AB|T81.511D|ICD10CM|Adhes due to fb acc left in body fol infusn/transfusn, subs|Adhes due to fb acc left in body fol infusn/transfusn, subs +C2886917|T037|AB|T81.511S|ICD10CM|Adhes due to fb acc left in body fol infusn/transfusn, sqla|Adhes due to fb acc left in body fol infusn/transfusn, sqla +C2886917|T037|PT|T81.511S|ICD10CM|Adhesions due to foreign body accidentally left in body following infusion or transfusion, sequela|Adhesions due to foreign body accidentally left in body following infusion or transfusion, sequela +C2886918|T037|AB|T81.512|ICD10CM|Adhes due to fb acc left in body following kidney dialysis|Adhes due to fb acc left in body following kidney dialysis +C2886918|T037|HT|T81.512|ICD10CM|Adhesions due to foreign body accidentally left in body following kidney dialysis|Adhesions due to foreign body accidentally left in body following kidney dialysis +C2886919|T037|AB|T81.512A|ICD10CM|Adhes due to fb acc left in body fol kidney dialysis, init|Adhes due to fb acc left in body fol kidney dialysis, init +C2886919|T037|PT|T81.512A|ICD10CM|Adhesions due to foreign body accidentally left in body following kidney dialysis, initial encounter|Adhesions due to foreign body accidentally left in body following kidney dialysis, initial encounter +C2886920|T037|AB|T81.512D|ICD10CM|Adhes due to fb acc left in body fol kidney dialysis, subs|Adhes due to fb acc left in body fol kidney dialysis, subs +C2886921|T037|AB|T81.512S|ICD10CM|Adhes due to fb acc left in body fol kidney dialysis, sqla|Adhes due to fb acc left in body fol kidney dialysis, sqla +C2886921|T037|PT|T81.512S|ICD10CM|Adhesions due to foreign body accidentally left in body following kidney dialysis, sequela|Adhesions due to foreign body accidentally left in body following kidney dialysis, sequela +C2886922|T037|AB|T81.513|ICD10CM|Adhes due to fb acc left in body fol injection or immuniz|Adhes due to fb acc left in body fol injection or immuniz +C2886922|T037|HT|T81.513|ICD10CM|Adhesions due to foreign body accidentally left in body following injection or immunization|Adhesions due to foreign body accidentally left in body following injection or immunization +C2886923|T037|AB|T81.513A|ICD10CM|Adhes due to fb acc left in body fol inject or immuniz, init|Adhes due to fb acc left in body fol inject or immuniz, init +C2886924|T037|AB|T81.513D|ICD10CM|Adhes due to fb acc left in body fol inject or immuniz, subs|Adhes due to fb acc left in body fol inject or immuniz, subs +C2886925|T037|AB|T81.513S|ICD10CM|Adhes due to fb acc left in body fol inject or immuniz, sqla|Adhes due to fb acc left in body fol inject or immuniz, sqla +C2886925|T037|PT|T81.513S|ICD10CM|Adhesions due to foreign body accidentally left in body following injection or immunization, sequela|Adhesions due to foreign body accidentally left in body following injection or immunization, sequela +C2886926|T037|AB|T81.514|ICD10CM|Adhesions due to fb acc left in body following endo exam|Adhesions due to fb acc left in body following endo exam +C2886926|T037|HT|T81.514|ICD10CM|Adhesions due to foreign body accidentally left in body following endoscopic examination|Adhesions due to foreign body accidentally left in body following endoscopic examination +C2886927|T037|AB|T81.514A|ICD10CM|Adhes due to fb acc left in body following endo exam, init|Adhes due to fb acc left in body following endo exam, init +C2886928|T037|AB|T81.514D|ICD10CM|Adhes due to fb acc left in body following endo exam, subs|Adhes due to fb acc left in body following endo exam, subs +C2886929|T037|AB|T81.514S|ICD10CM|Adhes due to fb acc left in body fol endo exam, sequela|Adhes due to fb acc left in body fol endo exam, sequela +C2886929|T037|PT|T81.514S|ICD10CM|Adhesions due to foreign body accidentally left in body following endoscopic examination, sequela|Adhesions due to foreign body accidentally left in body following endoscopic examination, sequela +C2886930|T037|AB|T81.515|ICD10CM|Adhesions due to fb acc left in body following heart cath|Adhesions due to fb acc left in body following heart cath +C2886930|T037|HT|T81.515|ICD10CM|Adhesions due to foreign body accidentally left in body following heart catheterization|Adhesions due to foreign body accidentally left in body following heart catheterization +C2886931|T037|AB|T81.515A|ICD10CM|Adhes due to fb acc left in body following heart cath, init|Adhes due to fb acc left in body following heart cath, init +C2886932|T037|AB|T81.515D|ICD10CM|Adhes due to fb acc left in body following heart cath, subs|Adhes due to fb acc left in body following heart cath, subs +C2886933|T037|AB|T81.515S|ICD10CM|Adhes due to fb acc left in body fol heart cath, sequela|Adhes due to fb acc left in body fol heart cath, sequela +C2886933|T037|PT|T81.515S|ICD10CM|Adhesions due to foreign body accidentally left in body following heart catheterization, sequela|Adhesions due to foreign body accidentally left in body following heart catheterization, sequela +C2886934|T037|AB|T81.516|ICD10CM|Adhesions due to fb acc left in body following punctr/cath|Adhesions due to fb acc left in body following punctr/cath +C2886935|T037|AB|T81.516A|ICD10CM|Adhes due to fb acc left in body following punctr/cath, init|Adhes due to fb acc left in body following punctr/cath, init +C2886936|T037|AB|T81.516D|ICD10CM|Adhes due to fb acc left in body following punctr/cath, subs|Adhes due to fb acc left in body following punctr/cath, subs +C2886937|T037|AB|T81.516S|ICD10CM|Adhes due to fb acc left in body fol punctr/cath, sequela|Adhes due to fb acc left in body fol punctr/cath, sequela +C2886938|T037|AB|T81.517|ICD10CM|Adhes due to fb acc left in body following remov cath/pack|Adhes due to fb acc left in body following remov cath/pack +C2886938|T037|HT|T81.517|ICD10CM|Adhesions due to foreign body accidentally left in body following removal of catheter or packing|Adhesions due to foreign body accidentally left in body following removal of catheter or packing +C2886939|T037|AB|T81.517A|ICD10CM|Adhes due to fb acc left in body fol remov cath/pack, init|Adhes due to fb acc left in body fol remov cath/pack, init +C2886940|T037|AB|T81.517D|ICD10CM|Adhes due to fb acc left in body fol remov cath/pack, subs|Adhes due to fb acc left in body fol remov cath/pack, subs +C2886941|T037|AB|T81.517S|ICD10CM|Adhes due to fb acc left in body fol remov cath/pack, sqla|Adhes due to fb acc left in body fol remov cath/pack, sqla +C2886942|T037|AB|T81.518|ICD10CM|Adhesions due to fb acc left in body following oth procedure|Adhesions due to fb acc left in body following oth procedure +C2886942|T037|HT|T81.518|ICD10CM|Adhesions due to foreign body accidentally left in body following other procedure|Adhesions due to foreign body accidentally left in body following other procedure +C2886943|T037|AB|T81.518A|ICD10CM|Adhes due to fb acc left in body fol oth procedure, init|Adhes due to fb acc left in body fol oth procedure, init +C2886943|T037|PT|T81.518A|ICD10CM|Adhesions due to foreign body accidentally left in body following other procedure, initial encounter|Adhesions due to foreign body accidentally left in body following other procedure, initial encounter +C2886944|T037|AB|T81.518D|ICD10CM|Adhes due to fb acc left in body fol oth procedure, subs|Adhes due to fb acc left in body fol oth procedure, subs +C2886945|T037|AB|T81.518S|ICD10CM|Adhes due to fb acc left in body fol oth procedure, sequela|Adhes due to fb acc left in body fol oth procedure, sequela +C2886945|T037|PT|T81.518S|ICD10CM|Adhesions due to foreign body accidentally left in body following other procedure, sequela|Adhesions due to foreign body accidentally left in body following other procedure, sequela +C2886946|T037|AB|T81.519|ICD10CM|Adhes due to fb acc left in body following unsp procedure|Adhes due to fb acc left in body following unsp procedure +C2886946|T037|HT|T81.519|ICD10CM|Adhesions due to foreign body accidentally left in body following unspecified procedure|Adhesions due to foreign body accidentally left in body following unspecified procedure +C2886947|T037|AB|T81.519A|ICD10CM|Adhes due to fb acc left in body fol unsp procedure, init|Adhes due to fb acc left in body fol unsp procedure, init +C2886948|T037|AB|T81.519D|ICD10CM|Adhes due to fb acc left in body fol unsp procedure, subs|Adhes due to fb acc left in body fol unsp procedure, subs +C2886949|T037|AB|T81.519S|ICD10CM|Adhes due to fb acc left in body fol unsp procedure, sequela|Adhes due to fb acc left in body fol unsp procedure, sequela +C2886949|T037|PT|T81.519S|ICD10CM|Adhesions due to foreign body accidentally left in body following unspecified procedure, sequela|Adhesions due to foreign body accidentally left in body following unspecified procedure, sequela +C2886950|T037|AB|T81.52|ICD10CM|Obstruction due to fb acc left in body following procedure|Obstruction due to fb acc left in body following procedure +C2886950|T037|HT|T81.52|ICD10CM|Obstruction due to foreign body accidentally left in body following procedure|Obstruction due to foreign body accidentally left in body following procedure +C2886951|T037|AB|T81.520|ICD10CM|Obst due to fb acc left in body following surgical operation|Obst due to fb acc left in body following surgical operation +C2886951|T037|HT|T81.520|ICD10CM|Obstruction due to foreign body accidentally left in body following surgical operation|Obstruction due to foreign body accidentally left in body following surgical operation +C2886952|T037|AB|T81.520A|ICD10CM|Obst due to fb acc left in body fol surgical operation, init|Obst due to fb acc left in body fol surgical operation, init +C2886953|T037|AB|T81.520D|ICD10CM|Obst due to fb acc left in body fol surgical operation, subs|Obst due to fb acc left in body fol surgical operation, subs +C2886954|T037|AB|T81.520S|ICD10CM|Obst due to fb acc left in body fol surgical op, sequela|Obst due to fb acc left in body fol surgical op, sequela +C2886954|T037|PT|T81.520S|ICD10CM|Obstruction due to foreign body accidentally left in body following surgical operation, sequela|Obstruction due to foreign body accidentally left in body following surgical operation, sequela +C2886955|T037|AB|T81.521|ICD10CM|Obst due to fb acc left in body following infusn/transfusn|Obst due to fb acc left in body following infusn/transfusn +C2886955|T037|HT|T81.521|ICD10CM|Obstruction due to foreign body accidentally left in body following infusion or transfusion|Obstruction due to foreign body accidentally left in body following infusion or transfusion +C2886956|T037|AB|T81.521A|ICD10CM|Obst due to fb acc left in body fol infusn/transfusn, init|Obst due to fb acc left in body fol infusn/transfusn, init +C2886957|T037|AB|T81.521D|ICD10CM|Obst due to fb acc left in body fol infusn/transfusn, subs|Obst due to fb acc left in body fol infusn/transfusn, subs +C2886958|T037|AB|T81.521S|ICD10CM|Obst due to fb acc left in body fol infusn/transfusn, sqla|Obst due to fb acc left in body fol infusn/transfusn, sqla +C2886958|T037|PT|T81.521S|ICD10CM|Obstruction due to foreign body accidentally left in body following infusion or transfusion, sequela|Obstruction due to foreign body accidentally left in body following infusion or transfusion, sequela +C2886959|T037|AB|T81.522|ICD10CM|Obst due to fb acc left in body following kidney dialysis|Obst due to fb acc left in body following kidney dialysis +C2886959|T037|HT|T81.522|ICD10CM|Obstruction due to foreign body accidentally left in body following kidney dialysis|Obstruction due to foreign body accidentally left in body following kidney dialysis +C2886960|T037|AB|T81.522A|ICD10CM|Obst due to fb acc left in body fol kidney dialysis, init|Obst due to fb acc left in body fol kidney dialysis, init +C2886961|T037|AB|T81.522D|ICD10CM|Obst due to fb acc left in body fol kidney dialysis, subs|Obst due to fb acc left in body fol kidney dialysis, subs +C2886962|T037|AB|T81.522S|ICD10CM|Obst due to fb acc left in body fol kidney dialysis, sequela|Obst due to fb acc left in body fol kidney dialysis, sequela +C2886962|T037|PT|T81.522S|ICD10CM|Obstruction due to foreign body accidentally left in body following kidney dialysis, sequela|Obstruction due to foreign body accidentally left in body following kidney dialysis, sequela +C2886963|T037|AB|T81.523|ICD10CM|Obst due to fb acc left in body fol injection or immuniz|Obst due to fb acc left in body fol injection or immuniz +C2886963|T037|HT|T81.523|ICD10CM|Obstruction due to foreign body accidentally left in body following injection or immunization|Obstruction due to foreign body accidentally left in body following injection or immunization +C2886964|T037|AB|T81.523A|ICD10CM|Obst due to fb acc left in body fol inject or immuniz, init|Obst due to fb acc left in body fol inject or immuniz, init +C2886965|T037|AB|T81.523D|ICD10CM|Obst due to fb acc left in body fol inject or immuniz, subs|Obst due to fb acc left in body fol inject or immuniz, subs +C2886966|T037|AB|T81.523S|ICD10CM|Obst due to fb acc left in body fol inject or immuniz, sqla|Obst due to fb acc left in body fol inject or immuniz, sqla +C2886967|T037|AB|T81.524|ICD10CM|Obst due to fb acc left in body following endoscopic exam|Obst due to fb acc left in body following endoscopic exam +C2886967|T037|HT|T81.524|ICD10CM|Obstruction due to foreign body accidentally left in body following endoscopic examination|Obstruction due to foreign body accidentally left in body following endoscopic examination +C2886968|T037|AB|T81.524A|ICD10CM|Obst due to fb acc left in body following endo exam, init|Obst due to fb acc left in body following endo exam, init +C2886969|T037|AB|T81.524D|ICD10CM|Obst due to fb acc left in body following endo exam, subs|Obst due to fb acc left in body following endo exam, subs +C2886970|T037|AB|T81.524S|ICD10CM|Obst due to fb acc left in body following endo exam, sequela|Obst due to fb acc left in body following endo exam, sequela +C2886970|T037|PT|T81.524S|ICD10CM|Obstruction due to foreign body accidentally left in body following endoscopic examination, sequela|Obstruction due to foreign body accidentally left in body following endoscopic examination, sequela +C2886971|T037|AB|T81.525|ICD10CM|Obstruction due to fb acc left in body following heart cath|Obstruction due to fb acc left in body following heart cath +C2886971|T037|HT|T81.525|ICD10CM|Obstruction due to foreign body accidentally left in body following heart catheterization|Obstruction due to foreign body accidentally left in body following heart catheterization +C2886972|T037|AB|T81.525A|ICD10CM|Obst due to fb acc left in body following heart cath, init|Obst due to fb acc left in body following heart cath, init +C2886973|T037|AB|T81.525D|ICD10CM|Obst due to fb acc left in body following heart cath, subs|Obst due to fb acc left in body following heart cath, subs +C2886974|T037|AB|T81.525S|ICD10CM|Obst due to fb acc left in body fol heart cath, sequela|Obst due to fb acc left in body fol heart cath, sequela +C2886974|T037|PT|T81.525S|ICD10CM|Obstruction due to foreign body accidentally left in body following heart catheterization, sequela|Obstruction due to foreign body accidentally left in body following heart catheterization, sequela +C2886975|T037|AB|T81.526|ICD10CM|Obstruction due to fb acc left in body following punctr/cath|Obstruction due to fb acc left in body following punctr/cath +C2886976|T037|AB|T81.526A|ICD10CM|Obst due to fb acc left in body following punctr/cath, init|Obst due to fb acc left in body following punctr/cath, init +C2886977|T037|AB|T81.526D|ICD10CM|Obst due to fb acc left in body following punctr/cath, subs|Obst due to fb acc left in body following punctr/cath, subs +C2886978|T037|AB|T81.526S|ICD10CM|Obst due to fb acc left in body fol punctr/cath, sequela|Obst due to fb acc left in body fol punctr/cath, sequela +C2886979|T037|AB|T81.527|ICD10CM|Obst due to fb acc left in body following remov cath/pack|Obst due to fb acc left in body following remov cath/pack +C2886979|T037|HT|T81.527|ICD10CM|Obstruction due to foreign body accidentally left in body following removal of catheter or packing|Obstruction due to foreign body accidentally left in body following removal of catheter or packing +C2886980|T037|AB|T81.527A|ICD10CM|Obst due to fb acc left in body fol remov cath/pack, init|Obst due to fb acc left in body fol remov cath/pack, init +C2886981|T037|AB|T81.527D|ICD10CM|Obst due to fb acc left in body fol remov cath/pack, subs|Obst due to fb acc left in body fol remov cath/pack, subs +C2886982|T037|AB|T81.527S|ICD10CM|Obst due to fb acc left in body fol remov cath/pack, sequela|Obst due to fb acc left in body fol remov cath/pack, sequela +C2886983|T037|AB|T81.528|ICD10CM|Obst due to fb acc left in body following oth procedure|Obst due to fb acc left in body following oth procedure +C2886983|T037|HT|T81.528|ICD10CM|Obstruction due to foreign body accidentally left in body following other procedure|Obstruction due to foreign body accidentally left in body following other procedure +C2886984|T037|AB|T81.528A|ICD10CM|Obst due to fb acc left in body fol oth procedure, init|Obst due to fb acc left in body fol oth procedure, init +C2886985|T037|AB|T81.528D|ICD10CM|Obst due to fb acc left in body fol oth procedure, subs|Obst due to fb acc left in body fol oth procedure, subs +C2886986|T037|AB|T81.528S|ICD10CM|Obst due to fb acc left in body fol oth procedure, sequela|Obst due to fb acc left in body fol oth procedure, sequela +C2886986|T037|PT|T81.528S|ICD10CM|Obstruction due to foreign body accidentally left in body following other procedure, sequela|Obstruction due to foreign body accidentally left in body following other procedure, sequela +C2886987|T037|AB|T81.529|ICD10CM|Obst due to fb acc left in body following unsp procedure|Obst due to fb acc left in body following unsp procedure +C2886987|T037|HT|T81.529|ICD10CM|Obstruction due to foreign body accidentally left in body following unspecified procedure|Obstruction due to foreign body accidentally left in body following unspecified procedure +C2886988|T037|AB|T81.529A|ICD10CM|Obst due to fb acc left in body fol unsp procedure, init|Obst due to fb acc left in body fol unsp procedure, init +C2886989|T037|AB|T81.529D|ICD10CM|Obst due to fb acc left in body fol unsp procedure, subs|Obst due to fb acc left in body fol unsp procedure, subs +C2886990|T037|AB|T81.529S|ICD10CM|Obst due to fb acc left in body fol unsp procedure, sequela|Obst due to fb acc left in body fol unsp procedure, sequela +C2886990|T037|PT|T81.529S|ICD10CM|Obstruction due to foreign body accidentally left in body following unspecified procedure, sequela|Obstruction due to foreign body accidentally left in body following unspecified procedure, sequela +C2886991|T037|AB|T81.53|ICD10CM|Perforation due to fb acc left in body following procedure|Perforation due to fb acc left in body following procedure +C2886991|T037|HT|T81.53|ICD10CM|Perforation due to foreign body accidentally left in body following procedure|Perforation due to foreign body accidentally left in body following procedure +C2886992|T037|AB|T81.530|ICD10CM|Perf due to fb acc left in body following surgical operation|Perf due to fb acc left in body following surgical operation +C2886992|T037|HT|T81.530|ICD10CM|Perforation due to foreign body accidentally left in body following surgical operation|Perforation due to foreign body accidentally left in body following surgical operation +C2886993|T037|AB|T81.530A|ICD10CM|Perf due to fb acc left in body fol surgical operation, init|Perf due to fb acc left in body fol surgical operation, init +C2886994|T037|AB|T81.530D|ICD10CM|Perf due to fb acc left in body fol surgical operation, subs|Perf due to fb acc left in body fol surgical operation, subs +C2886995|T037|AB|T81.530S|ICD10CM|Perf due to fb acc left in body fol surgical op, sequela|Perf due to fb acc left in body fol surgical op, sequela +C2886995|T037|PT|T81.530S|ICD10CM|Perforation due to foreign body accidentally left in body following surgical operation, sequela|Perforation due to foreign body accidentally left in body following surgical operation, sequela +C2886996|T037|AB|T81.531|ICD10CM|Perf due to fb acc left in body following infusn/transfusn|Perf due to fb acc left in body following infusn/transfusn +C2886996|T037|HT|T81.531|ICD10CM|Perforation due to foreign body accidentally left in body following infusion or transfusion|Perforation due to foreign body accidentally left in body following infusion or transfusion +C2886997|T037|AB|T81.531A|ICD10CM|Perf due to fb acc left in body fol infusn/transfusn, init|Perf due to fb acc left in body fol infusn/transfusn, init +C2886998|T037|AB|T81.531D|ICD10CM|Perf due to fb acc left in body fol infusn/transfusn, subs|Perf due to fb acc left in body fol infusn/transfusn, subs +C2886999|T037|AB|T81.531S|ICD10CM|Perf due to fb acc left in body fol infusn/transfusn, sqla|Perf due to fb acc left in body fol infusn/transfusn, sqla +C2886999|T037|PT|T81.531S|ICD10CM|Perforation due to foreign body accidentally left in body following infusion or transfusion, sequela|Perforation due to foreign body accidentally left in body following infusion or transfusion, sequela +C2887000|T037|AB|T81.532|ICD10CM|Perf due to fb acc left in body following kidney dialysis|Perf due to fb acc left in body following kidney dialysis +C2887000|T037|HT|T81.532|ICD10CM|Perforation due to foreign body accidentally left in body following kidney dialysis|Perforation due to foreign body accidentally left in body following kidney dialysis +C2887001|T037|AB|T81.532A|ICD10CM|Perf due to fb acc left in body fol kidney dialysis, init|Perf due to fb acc left in body fol kidney dialysis, init +C2887002|T037|AB|T81.532D|ICD10CM|Perf due to fb acc left in body fol kidney dialysis, subs|Perf due to fb acc left in body fol kidney dialysis, subs +C2887003|T037|AB|T81.532S|ICD10CM|Perf due to fb acc left in body fol kidney dialysis, sequela|Perf due to fb acc left in body fol kidney dialysis, sequela +C2887003|T037|PT|T81.532S|ICD10CM|Perforation due to foreign body accidentally left in body following kidney dialysis, sequela|Perforation due to foreign body accidentally left in body following kidney dialysis, sequela +C2887004|T037|AB|T81.533|ICD10CM|Perf due to fb acc left in body fol injection or immuniz|Perf due to fb acc left in body fol injection or immuniz +C2887004|T037|HT|T81.533|ICD10CM|Perforation due to foreign body accidentally left in body following injection or immunization|Perforation due to foreign body accidentally left in body following injection or immunization +C2887005|T037|AB|T81.533A|ICD10CM|Perf due to fb acc left in body fol inject or immuniz, init|Perf due to fb acc left in body fol inject or immuniz, init +C2887006|T037|AB|T81.533D|ICD10CM|Perf due to fb acc left in body fol inject or immuniz, subs|Perf due to fb acc left in body fol inject or immuniz, subs +C2887007|T037|AB|T81.533S|ICD10CM|Perf due to fb acc left in body fol inject or immuniz, sqla|Perf due to fb acc left in body fol inject or immuniz, sqla +C2887008|T037|AB|T81.534|ICD10CM|Perf due to fb acc left in body following endoscopic exam|Perf due to fb acc left in body following endoscopic exam +C2887008|T037|HT|T81.534|ICD10CM|Perforation due to foreign body accidentally left in body following endoscopic examination|Perforation due to foreign body accidentally left in body following endoscopic examination +C2887009|T037|AB|T81.534A|ICD10CM|Perf due to fb acc left in body following endo exam, init|Perf due to fb acc left in body following endo exam, init +C2887010|T037|AB|T81.534D|ICD10CM|Perf due to fb acc left in body following endo exam, subs|Perf due to fb acc left in body following endo exam, subs +C2887011|T037|AB|T81.534S|ICD10CM|Perf due to fb acc left in body following endo exam, sequela|Perf due to fb acc left in body following endo exam, sequela +C2887011|T037|PT|T81.534S|ICD10CM|Perforation due to foreign body accidentally left in body following endoscopic examination, sequela|Perforation due to foreign body accidentally left in body following endoscopic examination, sequela +C2887012|T037|AB|T81.535|ICD10CM|Perforation due to fb acc left in body following heart cath|Perforation due to fb acc left in body following heart cath +C2887012|T037|HT|T81.535|ICD10CM|Perforation due to foreign body accidentally left in body following heart catheterization|Perforation due to foreign body accidentally left in body following heart catheterization +C2887013|T037|AB|T81.535A|ICD10CM|Perf due to fb acc left in body following heart cath, init|Perf due to fb acc left in body following heart cath, init +C2887014|T037|AB|T81.535D|ICD10CM|Perf due to fb acc left in body following heart cath, subs|Perf due to fb acc left in body following heart cath, subs +C2887015|T037|AB|T81.535S|ICD10CM|Perf due to fb acc left in body fol heart cath, sequela|Perf due to fb acc left in body fol heart cath, sequela +C2887015|T037|PT|T81.535S|ICD10CM|Perforation due to foreign body accidentally left in body following heart catheterization, sequela|Perforation due to foreign body accidentally left in body following heart catheterization, sequela +C2887016|T037|AB|T81.536|ICD10CM|Perforation due to fb acc left in body following punctr/cath|Perforation due to fb acc left in body following punctr/cath +C2887017|T037|AB|T81.536A|ICD10CM|Perf due to fb acc left in body following punctr/cath, init|Perf due to fb acc left in body following punctr/cath, init +C2887018|T037|AB|T81.536D|ICD10CM|Perf due to fb acc left in body following punctr/cath, subs|Perf due to fb acc left in body following punctr/cath, subs +C2887019|T037|AB|T81.536S|ICD10CM|Perf due to fb acc left in body fol punctr/cath, sequela|Perf due to fb acc left in body fol punctr/cath, sequela +C2887020|T037|AB|T81.537|ICD10CM|Perf due to fb acc left in body following remov cath/pack|Perf due to fb acc left in body following remov cath/pack +C2887020|T037|HT|T81.537|ICD10CM|Perforation due to foreign body accidentally left in body following removal of catheter or packing|Perforation due to foreign body accidentally left in body following removal of catheter or packing +C2887021|T037|AB|T81.537A|ICD10CM|Perf due to fb acc left in body fol remov cath/pack, init|Perf due to fb acc left in body fol remov cath/pack, init +C2887022|T037|AB|T81.537D|ICD10CM|Perf due to fb acc left in body fol remov cath/pack, subs|Perf due to fb acc left in body fol remov cath/pack, subs +C2887023|T037|AB|T81.537S|ICD10CM|Perf due to fb acc left in body fol remov cath/pack, sequela|Perf due to fb acc left in body fol remov cath/pack, sequela +C2887024|T037|AB|T81.538|ICD10CM|Perf due to fb acc left in body following oth procedure|Perf due to fb acc left in body following oth procedure +C2887024|T037|HT|T81.538|ICD10CM|Perforation due to foreign body accidentally left in body following other procedure|Perforation due to foreign body accidentally left in body following other procedure +C2887025|T037|AB|T81.538A|ICD10CM|Perf due to fb acc left in body fol oth procedure, init|Perf due to fb acc left in body fol oth procedure, init +C2887026|T037|AB|T81.538D|ICD10CM|Perf due to fb acc left in body fol oth procedure, subs|Perf due to fb acc left in body fol oth procedure, subs +C2887027|T037|AB|T81.538S|ICD10CM|Perf due to fb acc left in body fol oth procedure, sequela|Perf due to fb acc left in body fol oth procedure, sequela +C2887027|T037|PT|T81.538S|ICD10CM|Perforation due to foreign body accidentally left in body following other procedure, sequela|Perforation due to foreign body accidentally left in body following other procedure, sequela +C2887028|T037|AB|T81.539|ICD10CM|Perf due to fb acc left in body following unsp procedure|Perf due to fb acc left in body following unsp procedure +C2887028|T037|HT|T81.539|ICD10CM|Perforation due to foreign body accidentally left in body following unspecified procedure|Perforation due to foreign body accidentally left in body following unspecified procedure +C2887029|T037|AB|T81.539A|ICD10CM|Perf due to fb acc left in body fol unsp procedure, init|Perf due to fb acc left in body fol unsp procedure, init +C2887030|T037|AB|T81.539D|ICD10CM|Perf due to fb acc left in body fol unsp procedure, subs|Perf due to fb acc left in body fol unsp procedure, subs +C2887031|T037|AB|T81.539S|ICD10CM|Perf due to fb acc left in body fol unsp procedure, sequela|Perf due to fb acc left in body fol unsp procedure, sequela +C2887031|T037|PT|T81.539S|ICD10CM|Perforation due to foreign body accidentally left in body following unspecified procedure, sequela|Perforation due to foreign body accidentally left in body following unspecified procedure, sequela +C2887032|T037|AB|T81.59|ICD10CM|Oth comp of fb acc left in body following procedure|Oth comp of fb acc left in body following procedure +C2887032|T037|HT|T81.59|ICD10CM|Other complications of foreign body accidentally left in body following procedure|Other complications of foreign body accidentally left in body following procedure +C2887033|T037|AB|T81.590|ICD10CM|Oth comp of fb acc left in body following surgical operation|Oth comp of fb acc left in body following surgical operation +C2887033|T037|HT|T81.590|ICD10CM|Other complications of foreign body accidentally left in body following surgical operation|Other complications of foreign body accidentally left in body following surgical operation +C2889683|T037|AB|T81.590A|ICD10CM|Oth comp of fb acc left in body fol surgical operation, init|Oth comp of fb acc left in body fol surgical operation, init +C2889684|T037|AB|T81.590D|ICD10CM|Oth comp of fb acc left in body fol surgical operation, subs|Oth comp of fb acc left in body fol surgical operation, subs +C2889685|T037|AB|T81.590S|ICD10CM|Oth comp of fb acc left in body fol surgical op, sequela|Oth comp of fb acc left in body fol surgical op, sequela +C2889685|T037|PT|T81.590S|ICD10CM|Other complications of foreign body accidentally left in body following surgical operation, sequela|Other complications of foreign body accidentally left in body following surgical operation, sequela +C2889686|T037|AB|T81.591|ICD10CM|Oth comp of fb acc left in body following infusn/transfusn|Oth comp of fb acc left in body following infusn/transfusn +C2889686|T037|HT|T81.591|ICD10CM|Other complications of foreign body accidentally left in body following infusion or transfusion|Other complications of foreign body accidentally left in body following infusion or transfusion +C2889687|T037|AB|T81.591A|ICD10CM|Oth comp of fb acc left in body fol infusn/transfusn, init|Oth comp of fb acc left in body fol infusn/transfusn, init +C2889688|T037|AB|T81.591D|ICD10CM|Oth comp of fb acc left in body fol infusn/transfusn, subs|Oth comp of fb acc left in body fol infusn/transfusn, subs +C2889689|T037|AB|T81.591S|ICD10CM|Oth comp of fb acc left in body fol infusn/transfusn, sqla|Oth comp of fb acc left in body fol infusn/transfusn, sqla +C2889690|T037|AB|T81.592|ICD10CM|Oth comp of fb acc left in body following kidney dialysis|Oth comp of fb acc left in body following kidney dialysis +C2889690|T037|HT|T81.592|ICD10CM|Other complications of foreign body accidentally left in body following kidney dialysis|Other complications of foreign body accidentally left in body following kidney dialysis +C2889691|T037|AB|T81.592A|ICD10CM|Oth comp of fb acc left in body fol kidney dialysis, init|Oth comp of fb acc left in body fol kidney dialysis, init +C2889692|T037|AB|T81.592D|ICD10CM|Oth comp of fb acc left in body fol kidney dialysis, subs|Oth comp of fb acc left in body fol kidney dialysis, subs +C2889693|T037|AB|T81.592S|ICD10CM|Oth comp of fb acc left in body fol kidney dialysis, sequela|Oth comp of fb acc left in body fol kidney dialysis, sequela +C2889693|T037|PT|T81.592S|ICD10CM|Other complications of foreign body accidentally left in body following kidney dialysis, sequela|Other complications of foreign body accidentally left in body following kidney dialysis, sequela +C2889694|T037|AB|T81.593|ICD10CM|Oth comp of fb acc left in body fol injection or immuniz|Oth comp of fb acc left in body fol injection or immuniz +C2889694|T037|HT|T81.593|ICD10CM|Other complications of foreign body accidentally left in body following injection or immunization|Other complications of foreign body accidentally left in body following injection or immunization +C2889695|T037|AB|T81.593A|ICD10CM|Oth comp of fb acc left in body fol inject or immuniz, init|Oth comp of fb acc left in body fol inject or immuniz, init +C2889696|T037|AB|T81.593D|ICD10CM|Oth comp of fb acc left in body fol inject or immuniz, subs|Oth comp of fb acc left in body fol inject or immuniz, subs +C2889697|T037|AB|T81.593S|ICD10CM|Oth comp of fb acc left in body fol inject or immuniz, sqla|Oth comp of fb acc left in body fol inject or immuniz, sqla +C2889698|T037|AB|T81.594|ICD10CM|Oth comp of fb acc left in body following endoscopic exam|Oth comp of fb acc left in body following endoscopic exam +C2889698|T037|HT|T81.594|ICD10CM|Other complications of foreign body accidentally left in body following endoscopic examination|Other complications of foreign body accidentally left in body following endoscopic examination +C2889699|T037|AB|T81.594A|ICD10CM|Oth comp of fb acc left in body following endo exam, init|Oth comp of fb acc left in body following endo exam, init +C2889700|T037|AB|T81.594D|ICD10CM|Oth comp of fb acc left in body following endo exam, subs|Oth comp of fb acc left in body following endo exam, subs +C2889701|T037|AB|T81.594S|ICD10CM|Oth comp of fb acc left in body following endo exam, sequela|Oth comp of fb acc left in body following endo exam, sequela +C2889702|T037|AB|T81.595|ICD10CM|Oth comp of fb acc left in body following heart cath|Oth comp of fb acc left in body following heart cath +C2889702|T037|HT|T81.595|ICD10CM|Other complications of foreign body accidentally left in body following heart catheterization|Other complications of foreign body accidentally left in body following heart catheterization +C2889703|T037|AB|T81.595A|ICD10CM|Oth comp of fb acc left in body following heart cath, init|Oth comp of fb acc left in body following heart cath, init +C2889704|T037|AB|T81.595D|ICD10CM|Oth comp of fb acc left in body following heart cath, subs|Oth comp of fb acc left in body following heart cath, subs +C2889705|T037|AB|T81.595S|ICD10CM|Oth comp of fb acc left in body fol heart cath, sequela|Oth comp of fb acc left in body fol heart cath, sequela +C2889706|T037|AB|T81.596|ICD10CM|Oth comp of fb acc left in body following punctr/cath|Oth comp of fb acc left in body following punctr/cath +C2889707|T037|AB|T81.596A|ICD10CM|Oth comp of fb acc left in body following punctr/cath, init|Oth comp of fb acc left in body following punctr/cath, init +C2889708|T037|AB|T81.596D|ICD10CM|Oth comp of fb acc left in body following punctr/cath, subs|Oth comp of fb acc left in body following punctr/cath, subs +C2889709|T037|AB|T81.596S|ICD10CM|Oth comp of fb acc left in body fol punctr/cath, sequela|Oth comp of fb acc left in body fol punctr/cath, sequela +C2889710|T037|AB|T81.597|ICD10CM|Oth comp of fb acc left in body following remov cath/pack|Oth comp of fb acc left in body following remov cath/pack +C2889711|T037|AB|T81.597A|ICD10CM|Oth comp of fb acc left in body fol remov cath/pack, init|Oth comp of fb acc left in body fol remov cath/pack, init +C2889712|T037|AB|T81.597D|ICD10CM|Oth comp of fb acc left in body fol remov cath/pack, subs|Oth comp of fb acc left in body fol remov cath/pack, subs +C2889713|T037|AB|T81.597S|ICD10CM|Oth comp of fb acc left in body fol remov cath/pack, sequela|Oth comp of fb acc left in body fol remov cath/pack, sequela +C2889714|T037|AB|T81.598|ICD10CM|Oth comp of fb acc left in body following oth procedure|Oth comp of fb acc left in body following oth procedure +C2889714|T037|HT|T81.598|ICD10CM|Other complications of foreign body accidentally left in body following other procedure|Other complications of foreign body accidentally left in body following other procedure +C2889715|T037|AB|T81.598A|ICD10CM|Oth comp of fb acc left in body fol oth procedure, init|Oth comp of fb acc left in body fol oth procedure, init +C2889716|T037|AB|T81.598D|ICD10CM|Oth comp of fb acc left in body fol oth procedure, subs|Oth comp of fb acc left in body fol oth procedure, subs +C2889717|T037|AB|T81.598S|ICD10CM|Oth comp of fb acc left in body fol oth procedure, sequela|Oth comp of fb acc left in body fol oth procedure, sequela +C2889717|T037|PT|T81.598S|ICD10CM|Other complications of foreign body accidentally left in body following other procedure, sequela|Other complications of foreign body accidentally left in body following other procedure, sequela +C2889718|T037|AB|T81.599|ICD10CM|Oth comp of fb acc left in body following unsp procedure|Oth comp of fb acc left in body following unsp procedure +C2889718|T037|HT|T81.599|ICD10CM|Other complications of foreign body accidentally left in body following unspecified procedure|Other complications of foreign body accidentally left in body following unspecified procedure +C2889719|T037|AB|T81.599A|ICD10CM|Oth comp of fb acc left in body fol unsp procedure, init|Oth comp of fb acc left in body fol unsp procedure, init +C2889720|T037|AB|T81.599D|ICD10CM|Oth comp of fb acc left in body fol unsp procedure, subs|Oth comp of fb acc left in body fol unsp procedure, subs +C2889721|T037|AB|T81.599S|ICD10CM|Oth comp of fb acc left in body fol unsp procedure, sequela|Oth comp of fb acc left in body fol unsp procedure, sequela +C0161833|T047|AB|T81.6|ICD10CM|Acute reaction to foreign substance acc left dur proc|Acute reaction to foreign substance acc left dur proc +C0161833|T047|HT|T81.6|ICD10CM|Acute reaction to foreign substance accidentally left during a procedure|Acute reaction to foreign substance accidentally left during a procedure +C0161833|T047|PT|T81.6|ICD10|Acute reaction to foreign substance accidentally left during a procedure|Acute reaction to foreign substance accidentally left during a procedure +C2889722|T037|AB|T81.60|ICD10CM|Unsp acute reaction to foreign substance acc left dur proc|Unsp acute reaction to foreign substance acc left dur proc +C2889722|T037|HT|T81.60|ICD10CM|Unspecified acute reaction to foreign substance accidentally left during a procedure|Unspecified acute reaction to foreign substance accidentally left during a procedure +C2889723|T037|AB|T81.60XA|ICD10CM|Unsp acute reaction to foreign sub acc left dur proc, init|Unsp acute reaction to foreign sub acc left dur proc, init +C2889724|T037|AB|T81.60XD|ICD10CM|Unsp acute reaction to foreign sub acc left dur proc, subs|Unsp acute reaction to foreign sub acc left dur proc, subs +C2889725|T037|AB|T81.60XS|ICD10CM|Unsp acute react to foreign sub acc left dur proc, sequela|Unsp acute react to foreign sub acc left dur proc, sequela +C2889725|T037|PT|T81.60XS|ICD10CM|Unspecified acute reaction to foreign substance accidentally left during a procedure, sequela|Unspecified acute reaction to foreign substance accidentally left during a procedure, sequela +C0867402|T037|AB|T81.61|ICD10CM|Aseptic peritonitis due to foreign sub acc left dur proc|Aseptic peritonitis due to foreign sub acc left dur proc +C0867402|T037|HT|T81.61|ICD10CM|Aseptic peritonitis due to foreign substance accidentally left during a procedure|Aseptic peritonitis due to foreign substance accidentally left during a procedure +C0341505|T037|ET|T81.61|ICD10CM|Chemical peritonitis|Chemical peritonitis +C2889726|T037|PT|T81.61XA|ICD10CM|Aseptic peritonitis due to foreign substance accidentally left during a procedure, initial encounter|Aseptic peritonitis due to foreign substance accidentally left during a procedure, initial encounter +C2889726|T037|AB|T81.61XA|ICD10CM|Aseptic peritonitis due to forn sub acc left dur proc, init|Aseptic peritonitis due to forn sub acc left dur proc, init +C2889727|T037|AB|T81.61XD|ICD10CM|Aseptic peritonitis due to forn sub acc left dur proc, subs|Aseptic peritonitis due to forn sub acc left dur proc, subs +C2889728|T037|PT|T81.61XS|ICD10CM|Aseptic peritonitis due to foreign substance accidentally left during a procedure, sequela|Aseptic peritonitis due to foreign substance accidentally left during a procedure, sequela +C2889728|T037|AB|T81.61XS|ICD10CM|Aseptic peritonitis due to forn sub acc left dur proc, sqla|Aseptic peritonitis due to forn sub acc left dur proc, sqla +C2889729|T037|AB|T81.69|ICD10CM|Oth acute reaction to foreign substance acc left dur proc|Oth acute reaction to foreign substance acc left dur proc +C2889729|T037|HT|T81.69|ICD10CM|Other acute reaction to foreign substance accidentally left during a procedure|Other acute reaction to foreign substance accidentally left during a procedure +C2889730|T037|AB|T81.69XA|ICD10CM|Oth acute reaction to foreign sub acc left dur proc, init|Oth acute reaction to foreign sub acc left dur proc, init +C2889730|T037|PT|T81.69XA|ICD10CM|Other acute reaction to foreign substance accidentally left during a procedure, initial encounter|Other acute reaction to foreign substance accidentally left during a procedure, initial encounter +C2889731|T037|AB|T81.69XD|ICD10CM|Oth acute reaction to foreign sub acc left dur proc, subs|Oth acute reaction to foreign sub acc left dur proc, subs +C2889731|T037|PT|T81.69XD|ICD10CM|Other acute reaction to foreign substance accidentally left during a procedure, subsequent encounter|Other acute reaction to foreign substance accidentally left during a procedure, subsequent encounter +C2889732|T037|AB|T81.69XS|ICD10CM|Oth acute reaction to foreign sub acc left dur proc, sequela|Oth acute reaction to foreign sub acc left dur proc, sequela +C2889732|T037|PT|T81.69XS|ICD10CM|Other acute reaction to foreign substance accidentally left during a procedure, sequela|Other acute reaction to foreign substance accidentally left during a procedure, sequela +C2889733|T046|ET|T81.7|ICD10CM|Air embolism following procedure NEC|Air embolism following procedure NEC +C2889734|T046|ET|T81.7|ICD10CM|Phlebitis or thrombophlebitis resulting from a procedure|Phlebitis or thrombophlebitis resulting from a procedure +C0496136|T037|AB|T81.7|ICD10CM|Vascular complications following a procedure, NEC|Vascular complications following a procedure, NEC +C0496136|T037|HT|T81.7|ICD10CM|Vascular complications following a procedure, not elsewhere classified|Vascular complications following a procedure, not elsewhere classified +C0496136|T037|PT|T81.7|ICD10|Vascular complications following a procedure, not elsewhere classified|Vascular complications following a procedure, not elsewhere classified +C2889735|T037|AB|T81.71|ICD10CM|Complication of artery following a procedure, NEC|Complication of artery following a procedure, NEC +C2889735|T037|HT|T81.71|ICD10CM|Complication of artery following a procedure, not elsewhere classified|Complication of artery following a procedure, not elsewhere classified +C2889736|T037|AB|T81.710|ICD10CM|Complication of mesenteric artery following a procedure, NEC|Complication of mesenteric artery following a procedure, NEC +C2889736|T037|HT|T81.710|ICD10CM|Complication of mesenteric artery following a procedure, not elsewhere classified|Complication of mesenteric artery following a procedure, not elsewhere classified +C2889737|T037|AB|T81.710A|ICD10CM|Complication of mesent art following a procedure, NEC, init|Complication of mesent art following a procedure, NEC, init +C2889737|T037|PT|T81.710A|ICD10CM|Complication of mesenteric artery following a procedure, not elsewhere classified, initial encounter|Complication of mesenteric artery following a procedure, not elsewhere classified, initial encounter +C2889738|T037|AB|T81.710D|ICD10CM|Complication of mesent art following a procedure, NEC, subs|Complication of mesent art following a procedure, NEC, subs +C2889739|T037|AB|T81.710S|ICD10CM|Comp of mesent art following a procedure, NEC, sequela|Comp of mesent art following a procedure, NEC, sequela +C2889739|T037|PT|T81.710S|ICD10CM|Complication of mesenteric artery following a procedure, not elsewhere classified, sequela|Complication of mesenteric artery following a procedure, not elsewhere classified, sequela +C2889740|T037|AB|T81.711|ICD10CM|Complication of renal artery following a procedure, NEC|Complication of renal artery following a procedure, NEC +C2889740|T037|HT|T81.711|ICD10CM|Complication of renal artery following a procedure, not elsewhere classified|Complication of renal artery following a procedure, not elsewhere classified +C2889741|T037|AB|T81.711A|ICD10CM|Comp of renal artery following a procedure, NEC, init|Comp of renal artery following a procedure, NEC, init +C2889741|T037|PT|T81.711A|ICD10CM|Complication of renal artery following a procedure, not elsewhere classified, initial encounter|Complication of renal artery following a procedure, not elsewhere classified, initial encounter +C2889742|T037|AB|T81.711D|ICD10CM|Comp of renal artery following a procedure, NEC, subs|Comp of renal artery following a procedure, NEC, subs +C2889742|T037|PT|T81.711D|ICD10CM|Complication of renal artery following a procedure, not elsewhere classified, subsequent encounter|Complication of renal artery following a procedure, not elsewhere classified, subsequent encounter +C2889743|T037|AB|T81.711S|ICD10CM|Comp of renal artery following a procedure, NEC, sequela|Comp of renal artery following a procedure, NEC, sequela +C2889743|T037|PT|T81.711S|ICD10CM|Complication of renal artery following a procedure, not elsewhere classified, sequela|Complication of renal artery following a procedure, not elsewhere classified, sequela +C2889744|T037|AB|T81.718|ICD10CM|Complication of artery following a procedure, NEC|Complication of artery following a procedure, NEC +C2889744|T037|HT|T81.718|ICD10CM|Complication of other artery following a procedure, not elsewhere classified|Complication of other artery following a procedure, not elsewhere classified +C2889745|T037|AB|T81.718A|ICD10CM|Complication of artery following a procedure, NEC, init|Complication of artery following a procedure, NEC, init +C2889745|T037|PT|T81.718A|ICD10CM|Complication of other artery following a procedure, not elsewhere classified, initial encounter|Complication of other artery following a procedure, not elsewhere classified, initial encounter +C2889746|T037|AB|T81.718D|ICD10CM|Complication of artery following a procedure, NEC, subs|Complication of artery following a procedure, NEC, subs +C2889746|T037|PT|T81.718D|ICD10CM|Complication of other artery following a procedure, not elsewhere classified, subsequent encounter|Complication of other artery following a procedure, not elsewhere classified, subsequent encounter +C2889747|T037|AB|T81.718S|ICD10CM|Complication of artery following a procedure, NEC, sequela|Complication of artery following a procedure, NEC, sequela +C2889747|T037|PT|T81.718S|ICD10CM|Complication of other artery following a procedure, not elsewhere classified, sequela|Complication of other artery following a procedure, not elsewhere classified, sequela +C2889748|T037|AB|T81.719|ICD10CM|Complication of unsp artery following a procedure, NEC|Complication of unsp artery following a procedure, NEC +C2889748|T037|HT|T81.719|ICD10CM|Complication of unspecified artery following a procedure, not elsewhere classified|Complication of unspecified artery following a procedure, not elsewhere classified +C2889749|T037|AB|T81.719A|ICD10CM|Complication of unsp artery following a procedure, NEC, init|Complication of unsp artery following a procedure, NEC, init +C2889750|T037|AB|T81.719D|ICD10CM|Complication of unsp artery following a procedure, NEC, subs|Complication of unsp artery following a procedure, NEC, subs +C2889751|T037|AB|T81.719S|ICD10CM|Comp of unsp artery following a procedure, NEC, sequela|Comp of unsp artery following a procedure, NEC, sequela +C2889751|T037|PT|T81.719S|ICD10CM|Complication of unspecified artery following a procedure, not elsewhere classified, sequela|Complication of unspecified artery following a procedure, not elsewhere classified, sequela +C2889752|T037|AB|T81.72|ICD10CM|Complication of vein following a procedure, NEC|Complication of vein following a procedure, NEC +C2889752|T037|HT|T81.72|ICD10CM|Complication of vein following a procedure, not elsewhere classified|Complication of vein following a procedure, not elsewhere classified +C2889753|T037|AB|T81.72XA|ICD10CM|Complication of vein following a procedure, NEC, init|Complication of vein following a procedure, NEC, init +C2889753|T037|PT|T81.72XA|ICD10CM|Complication of vein following a procedure, not elsewhere classified, initial encounter|Complication of vein following a procedure, not elsewhere classified, initial encounter +C2889754|T037|AB|T81.72XD|ICD10CM|Complication of vein following a procedure, NEC, subs|Complication of vein following a procedure, NEC, subs +C2889754|T037|PT|T81.72XD|ICD10CM|Complication of vein following a procedure, not elsewhere classified, subsequent encounter|Complication of vein following a procedure, not elsewhere classified, subsequent encounter +C2889755|T037|AB|T81.72XS|ICD10CM|Complication of vein following a procedure, NEC, sequela|Complication of vein following a procedure, NEC, sequela +C2889755|T037|PT|T81.72XS|ICD10CM|Complication of vein following a procedure, not elsewhere classified, sequela|Complication of vein following a procedure, not elsewhere classified, sequela +C0869285|T046|HT|T81.8|ICD10CM|Other complications of procedures, not elsewhere classified|Other complications of procedures, not elsewhere classified +C0869285|T046|AB|T81.8|ICD10CM|Other complications of procedures, not elsewhere classified|Other complications of procedures, not elsewhere classified +C0869285|T046|PT|T81.8|ICD10|Other complications of procedures, not elsewhere classified|Other complications of procedures, not elsewhere classified +C0274413|T046|HT|T81.81|ICD10CM|Complication of inhalation therapy|Complication of inhalation therapy +C0274413|T046|AB|T81.81|ICD10CM|Complication of inhalation therapy|Complication of inhalation therapy +C2889756|T037|AB|T81.81XA|ICD10CM|Complication of inhalation therapy, initial encounter|Complication of inhalation therapy, initial encounter +C2889756|T037|PT|T81.81XA|ICD10CM|Complication of inhalation therapy, initial encounter|Complication of inhalation therapy, initial encounter +C2889757|T037|AB|T81.81XD|ICD10CM|Complication of inhalation therapy, subsequent encounter|Complication of inhalation therapy, subsequent encounter +C2889757|T037|PT|T81.81XD|ICD10CM|Complication of inhalation therapy, subsequent encounter|Complication of inhalation therapy, subsequent encounter +C2889758|T037|AB|T81.81XS|ICD10CM|Complication of inhalation therapy, sequela|Complication of inhalation therapy, sequela +C2889758|T037|PT|T81.81XS|ICD10CM|Complication of inhalation therapy, sequela|Complication of inhalation therapy, sequela +C0274411|T046|AB|T81.82|ICD10CM|Emphysema (subcutaneous) resulting from a procedure|Emphysema (subcutaneous) resulting from a procedure +C0274411|T046|HT|T81.82|ICD10CM|Emphysema (subcutaneous) resulting from a procedure|Emphysema (subcutaneous) resulting from a procedure +C2889759|T037|AB|T81.82XA|ICD10CM|Emphysema (subcutaneous) resulting from a procedure, init|Emphysema (subcutaneous) resulting from a procedure, init +C2889759|T037|PT|T81.82XA|ICD10CM|Emphysema (subcutaneous) resulting from a procedure, initial encounter|Emphysema (subcutaneous) resulting from a procedure, initial encounter +C2889760|T037|AB|T81.82XD|ICD10CM|Emphysema (subcutaneous) resulting from a procedure, subs|Emphysema (subcutaneous) resulting from a procedure, subs +C2889760|T037|PT|T81.82XD|ICD10CM|Emphysema (subcutaneous) resulting from a procedure, subsequent encounter|Emphysema (subcutaneous) resulting from a procedure, subsequent encounter +C2889761|T037|AB|T81.82XS|ICD10CM|Emphysema (subcutaneous) resulting from a procedure, sequela|Emphysema (subcutaneous) resulting from a procedure, sequela +C2889761|T037|PT|T81.82XS|ICD10CM|Emphysema (subcutaneous) resulting from a procedure, sequela|Emphysema (subcutaneous) resulting from a procedure, sequela +C2889762|T037|HT|T81.83|ICD10CM|Persistent postprocedural fistula|Persistent postprocedural fistula +C2889762|T037|AB|T81.83|ICD10CM|Persistent postprocedural fistula|Persistent postprocedural fistula +C2889763|T037|AB|T81.83XA|ICD10CM|Persistent postprocedural fistula, initial encounter|Persistent postprocedural fistula, initial encounter +C2889763|T037|PT|T81.83XA|ICD10CM|Persistent postprocedural fistula, initial encounter|Persistent postprocedural fistula, initial encounter +C2889764|T037|AB|T81.83XD|ICD10CM|Persistent postprocedural fistula, subsequent encounter|Persistent postprocedural fistula, subsequent encounter +C2889764|T037|PT|T81.83XD|ICD10CM|Persistent postprocedural fistula, subsequent encounter|Persistent postprocedural fistula, subsequent encounter +C2889765|T037|AB|T81.83XS|ICD10CM|Persistent postprocedural fistula, sequela|Persistent postprocedural fistula, sequela +C2889765|T037|PT|T81.83XS|ICD10CM|Persistent postprocedural fistula, sequela|Persistent postprocedural fistula, sequela +C0869285|T046|HT|T81.89|ICD10CM|Other complications of procedures, not elsewhere classified|Other complications of procedures, not elsewhere classified +C0869285|T046|AB|T81.89|ICD10CM|Other complications of procedures, not elsewhere classified|Other complications of procedures, not elsewhere classified +C2889766|T037|AB|T81.89XA|ICD10CM|Oth complications of procedures, NEC, init|Oth complications of procedures, NEC, init +C2889766|T037|PT|T81.89XA|ICD10CM|Other complications of procedures, not elsewhere classified, initial encounter|Other complications of procedures, not elsewhere classified, initial encounter +C2889767|T037|AB|T81.89XD|ICD10CM|Oth complications of procedures, NEC, subs|Oth complications of procedures, NEC, subs +C2889767|T037|PT|T81.89XD|ICD10CM|Other complications of procedures, not elsewhere classified, subsequent encounter|Other complications of procedures, not elsewhere classified, subsequent encounter +C2889768|T037|AB|T81.89XS|ICD10CM|Oth complications of procedures, NEC, sequela|Oth complications of procedures, NEC, sequela +C2889768|T037|PT|T81.89XS|ICD10CM|Other complications of procedures, not elsewhere classified, sequela|Other complications of procedures, not elsewhere classified, sequela +C0496137|T046|PT|T81.9|ICD10|Unspecified complication of procedure|Unspecified complication of procedure +C0496137|T046|HT|T81.9|ICD10CM|Unspecified complication of procedure|Unspecified complication of procedure +C0496137|T046|AB|T81.9|ICD10CM|Unspecified complication of procedure|Unspecified complication of procedure +C2889769|T037|AB|T81.9XXA|ICD10CM|Unspecified complication of procedure, initial encounter|Unspecified complication of procedure, initial encounter +C2889769|T037|PT|T81.9XXA|ICD10CM|Unspecified complication of procedure, initial encounter|Unspecified complication of procedure, initial encounter +C2889770|T037|AB|T81.9XXD|ICD10CM|Unspecified complication of procedure, subsequent encounter|Unspecified complication of procedure, subsequent encounter +C2889770|T037|PT|T81.9XXD|ICD10CM|Unspecified complication of procedure, subsequent encounter|Unspecified complication of procedure, subsequent encounter +C2889771|T037|AB|T81.9XXS|ICD10CM|Unspecified complication of procedure, sequela|Unspecified complication of procedure, sequela +C2889771|T037|PT|T81.9XXS|ICD10CM|Unspecified complication of procedure, sequela|Unspecified complication of procedure, sequela +C0478489|T046|AB|T82|ICD10CM|Complications of cardiac and vascular prosth dev/grft|Complications of cardiac and vascular prosth dev/grft +C0478489|T046|HT|T82|ICD10CM|Complications of cardiac and vascular prosthetic devices, implants and grafts|Complications of cardiac and vascular prosthetic devices, implants and grafts +C0478489|T046|HT|T82|ICD10|Complications of cardiac and vascular prosthetic devices, implants and grafts|Complications of cardiac and vascular prosthetic devices, implants and grafts +C2889772|T037|ET|T82.0|ICD10CM|Mechanical complication of artificial heart valve|Mechanical complication of artificial heart valve +C0347934|T046|HT|T82.0|ICD10CM|Mechanical complication of heart valve prosthesis|Mechanical complication of heart valve prosthesis +C0347934|T046|AB|T82.0|ICD10CM|Mechanical complication of heart valve prosthesis|Mechanical complication of heart valve prosthesis +C0347934|T046|PT|T82.0|ICD10|Mechanical complication of heart valve prosthesis|Mechanical complication of heart valve prosthesis +C2889773|T046|AB|T82.01|ICD10CM|Breakdown (mechanical) of heart valve prosthesis|Breakdown (mechanical) of heart valve prosthesis +C2889773|T046|HT|T82.01|ICD10CM|Breakdown (mechanical) of heart valve prosthesis|Breakdown (mechanical) of heart valve prosthesis +C2889774|T037|AB|T82.01XA|ICD10CM|Breakdown (mechanical) of heart valve prosthesis, init|Breakdown (mechanical) of heart valve prosthesis, init +C2889774|T037|PT|T82.01XA|ICD10CM|Breakdown (mechanical) of heart valve prosthesis, initial encounter|Breakdown (mechanical) of heart valve prosthesis, initial encounter +C2889775|T037|AB|T82.01XD|ICD10CM|Breakdown (mechanical) of heart valve prosthesis, subs|Breakdown (mechanical) of heart valve prosthesis, subs +C2889775|T037|PT|T82.01XD|ICD10CM|Breakdown (mechanical) of heart valve prosthesis, subsequent encounter|Breakdown (mechanical) of heart valve prosthesis, subsequent encounter +C2889776|T037|AB|T82.01XS|ICD10CM|Breakdown (mechanical) of heart valve prosthesis, sequela|Breakdown (mechanical) of heart valve prosthesis, sequela +C2889776|T037|PT|T82.01XS|ICD10CM|Breakdown (mechanical) of heart valve prosthesis, sequela|Breakdown (mechanical) of heart valve prosthesis, sequela +C2889778|T037|AB|T82.02|ICD10CM|Displacement of heart valve prosthesis|Displacement of heart valve prosthesis +C2889778|T037|HT|T82.02|ICD10CM|Displacement of heart valve prosthesis|Displacement of heart valve prosthesis +C2889777|T037|ET|T82.02|ICD10CM|Malposition of heart valve prosthesis|Malposition of heart valve prosthesis +C2889779|T037|PT|T82.02XA|ICD10CM|Displacement of heart valve prosthesis, initial encounter|Displacement of heart valve prosthesis, initial encounter +C2889779|T037|AB|T82.02XA|ICD10CM|Displacement of heart valve prosthesis, initial encounter|Displacement of heart valve prosthesis, initial encounter +C2889780|T037|AB|T82.02XD|ICD10CM|Displacement of heart valve prosthesis, subsequent encounter|Displacement of heart valve prosthesis, subsequent encounter +C2889780|T037|PT|T82.02XD|ICD10CM|Displacement of heart valve prosthesis, subsequent encounter|Displacement of heart valve prosthesis, subsequent encounter +C2889781|T037|PT|T82.02XS|ICD10CM|Displacement of heart valve prosthesis, sequela|Displacement of heart valve prosthesis, sequela +C2889781|T037|AB|T82.02XS|ICD10CM|Displacement of heart valve prosthesis, sequela|Displacement of heart valve prosthesis, sequela +C2889782|T037|AB|T82.03|ICD10CM|Leakage of heart valve prosthesis|Leakage of heart valve prosthesis +C2889782|T037|HT|T82.03|ICD10CM|Leakage of heart valve prosthesis|Leakage of heart valve prosthesis +C2889783|T037|PT|T82.03XA|ICD10CM|Leakage of heart valve prosthesis, initial encounter|Leakage of heart valve prosthesis, initial encounter +C2889783|T037|AB|T82.03XA|ICD10CM|Leakage of heart valve prosthesis, initial encounter|Leakage of heart valve prosthesis, initial encounter +C2889784|T037|AB|T82.03XD|ICD10CM|Leakage of heart valve prosthesis, subsequent encounter|Leakage of heart valve prosthesis, subsequent encounter +C2889784|T037|PT|T82.03XD|ICD10CM|Leakage of heart valve prosthesis, subsequent encounter|Leakage of heart valve prosthesis, subsequent encounter +C2889785|T037|PT|T82.03XS|ICD10CM|Leakage of heart valve prosthesis, sequela|Leakage of heart valve prosthesis, sequela +C2889785|T037|AB|T82.03XS|ICD10CM|Leakage of heart valve prosthesis, sequela|Leakage of heart valve prosthesis, sequela +C2889786|T037|ET|T82.09|ICD10CM|Obstruction (mechanical) of heart valve prosthesis|Obstruction (mechanical) of heart valve prosthesis +C2889789|T037|AB|T82.09|ICD10CM|Other mechanical complication of heart valve prosthesis|Other mechanical complication of heart valve prosthesis +C2889789|T037|HT|T82.09|ICD10CM|Other mechanical complication of heart valve prosthesis|Other mechanical complication of heart valve prosthesis +C2889787|T037|ET|T82.09|ICD10CM|Perforation of heart valve prosthesis|Perforation of heart valve prosthesis +C2889788|T037|ET|T82.09|ICD10CM|Protrusion of heart valve prosthesis|Protrusion of heart valve prosthesis +C2889790|T037|AB|T82.09XA|ICD10CM|Mech compl of heart valve prosthesis, initial encounter|Mech compl of heart valve prosthesis, initial encounter +C2889790|T037|PT|T82.09XA|ICD10CM|Other mechanical complication of heart valve prosthesis, initial encounter|Other mechanical complication of heart valve prosthesis, initial encounter +C2889791|T037|AB|T82.09XD|ICD10CM|Mech compl of heart valve prosthesis, subsequent encounter|Mech compl of heart valve prosthesis, subsequent encounter +C2889791|T037|PT|T82.09XD|ICD10CM|Other mechanical complication of heart valve prosthesis, subsequent encounter|Other mechanical complication of heart valve prosthesis, subsequent encounter +C2889792|T037|AB|T82.09XS|ICD10CM|Mech compl of heart valve prosthesis, sequela|Mech compl of heart valve prosthesis, sequela +C2889792|T037|PT|T82.09XS|ICD10CM|Other mechanical complication of heart valve prosthesis, sequela|Other mechanical complication of heart valve prosthesis, sequela +C0496139|T046|PT|T82.1|ICD10|Mechanical complication of cardiac electronic device|Mechanical complication of cardiac electronic device +C0496139|T046|HT|T82.1|ICD10CM|Mechanical complication of cardiac electronic device|Mechanical complication of cardiac electronic device +C0496139|T046|AB|T82.1|ICD10CM|Mechanical complication of cardiac electronic device|Mechanical complication of cardiac electronic device +C3647666|T046|AB|T82.11|ICD10CM|Breakdown (mechanical) of cardiac electronic device|Breakdown (mechanical) of cardiac electronic device +C3647666|T046|HT|T82.11|ICD10CM|Breakdown (mechanical) of cardiac electronic device|Breakdown (mechanical) of cardiac electronic device +C2889794|T037|AB|T82.110|ICD10CM|Breakdown (mechanical) of cardiac electrode|Breakdown (mechanical) of cardiac electrode +C2889794|T037|HT|T82.110|ICD10CM|Breakdown (mechanical) of cardiac electrode|Breakdown (mechanical) of cardiac electrode +C2889795|T037|AB|T82.110A|ICD10CM|Breakdown (mechanical) of cardiac electrode, init encntr|Breakdown (mechanical) of cardiac electrode, init encntr +C2889795|T037|PT|T82.110A|ICD10CM|Breakdown (mechanical) of cardiac electrode, initial encounter|Breakdown (mechanical) of cardiac electrode, initial encounter +C2889796|T037|AB|T82.110D|ICD10CM|Breakdown (mechanical) of cardiac electrode, subs encntr|Breakdown (mechanical) of cardiac electrode, subs encntr +C2889796|T037|PT|T82.110D|ICD10CM|Breakdown (mechanical) of cardiac electrode, subsequent encounter|Breakdown (mechanical) of cardiac electrode, subsequent encounter +C2889797|T037|AB|T82.110S|ICD10CM|Breakdown (mechanical) of cardiac electrode, sequela|Breakdown (mechanical) of cardiac electrode, sequela +C2889797|T037|PT|T82.110S|ICD10CM|Breakdown (mechanical) of cardiac electrode, sequela|Breakdown (mechanical) of cardiac electrode, sequela +C2889798|T037|AB|T82.111|ICD10CM|Breakdown (mechanical) of cardiac pulse generator (battery)|Breakdown (mechanical) of cardiac pulse generator (battery) +C2889798|T037|HT|T82.111|ICD10CM|Breakdown (mechanical) of cardiac pulse generator (battery)|Breakdown (mechanical) of cardiac pulse generator (battery) +C2889799|T037|PT|T82.111A|ICD10CM|Breakdown (mechanical) of cardiac pulse generator (battery), initial encounter|Breakdown (mechanical) of cardiac pulse generator (battery), initial encounter +C2889799|T037|AB|T82.111A|ICD10CM|Breakdown of cardiac pulse generator (battery), init|Breakdown of cardiac pulse generator (battery), init +C2889800|T037|PT|T82.111D|ICD10CM|Breakdown (mechanical) of cardiac pulse generator (battery), subsequent encounter|Breakdown (mechanical) of cardiac pulse generator (battery), subsequent encounter +C2889800|T037|AB|T82.111D|ICD10CM|Breakdown of cardiac pulse generator (battery), subs|Breakdown of cardiac pulse generator (battery), subs +C2889801|T037|PT|T82.111S|ICD10CM|Breakdown (mechanical) of cardiac pulse generator (battery), sequela|Breakdown (mechanical) of cardiac pulse generator (battery), sequela +C2889801|T037|AB|T82.111S|ICD10CM|Breakdown of cardiac pulse generator (battery), sequela|Breakdown of cardiac pulse generator (battery), sequela +C2889802|T037|AB|T82.118|ICD10CM|Breakdown (mechanical) of other cardiac electronic device|Breakdown (mechanical) of other cardiac electronic device +C2889802|T037|HT|T82.118|ICD10CM|Breakdown (mechanical) of other cardiac electronic device|Breakdown (mechanical) of other cardiac electronic device +C2889803|T037|AB|T82.118A|ICD10CM|Breakdown (mechanical) of cardiac electronic device, init|Breakdown (mechanical) of cardiac electronic device, init +C2889803|T037|PT|T82.118A|ICD10CM|Breakdown (mechanical) of other cardiac electronic device, initial encounter|Breakdown (mechanical) of other cardiac electronic device, initial encounter +C2889804|T037|AB|T82.118D|ICD10CM|Breakdown (mechanical) of cardiac electronic device, subs|Breakdown (mechanical) of cardiac electronic device, subs +C2889804|T037|PT|T82.118D|ICD10CM|Breakdown (mechanical) of other cardiac electronic device, subsequent encounter|Breakdown (mechanical) of other cardiac electronic device, subsequent encounter +C2889805|T037|AB|T82.118S|ICD10CM|Breakdown (mechanical) of cardiac electronic device, sequela|Breakdown (mechanical) of cardiac electronic device, sequela +C2889805|T037|PT|T82.118S|ICD10CM|Breakdown (mechanical) of other cardiac electronic device, sequela|Breakdown (mechanical) of other cardiac electronic device, sequela +C2889806|T037|AB|T82.119|ICD10CM|Breakdown (mechanical) of unsp cardiac electronic device|Breakdown (mechanical) of unsp cardiac electronic device +C2889806|T037|HT|T82.119|ICD10CM|Breakdown (mechanical) of unspecified cardiac electronic device|Breakdown (mechanical) of unspecified cardiac electronic device +C2889807|T037|PT|T82.119A|ICD10CM|Breakdown (mechanical) of unspecified cardiac electronic device, initial encounter|Breakdown (mechanical) of unspecified cardiac electronic device, initial encounter +C2889807|T037|AB|T82.119A|ICD10CM|Breakdown of unsp cardiac electronic device, init|Breakdown of unsp cardiac electronic device, init +C2889808|T037|PT|T82.119D|ICD10CM|Breakdown (mechanical) of unspecified cardiac electronic device, subsequent encounter|Breakdown (mechanical) of unspecified cardiac electronic device, subsequent encounter +C2889808|T037|AB|T82.119D|ICD10CM|Breakdown of unsp cardiac electronic device, subs|Breakdown of unsp cardiac electronic device, subs +C2889809|T037|PT|T82.119S|ICD10CM|Breakdown (mechanical) of unspecified cardiac electronic device, sequela|Breakdown (mechanical) of unspecified cardiac electronic device, sequela +C2889809|T037|AB|T82.119S|ICD10CM|Breakdown of unsp cardiac electronic device, sequela|Breakdown of unsp cardiac electronic device, sequela +C3647665|T046|HT|T82.12|ICD10CM|Displacement of cardiac electronic device|Displacement of cardiac electronic device +C3647665|T046|AB|T82.12|ICD10CM|Displacement of cardiac electronic device|Displacement of cardiac electronic device +C2889810|T037|ET|T82.12|ICD10CM|Malposition of cardiac electronic device|Malposition of cardiac electronic device +C2889812|T037|AB|T82.120|ICD10CM|Displacement of cardiac electrode|Displacement of cardiac electrode +C2889812|T037|HT|T82.120|ICD10CM|Displacement of cardiac electrode|Displacement of cardiac electrode +C2889813|T037|AB|T82.120A|ICD10CM|Displacement of cardiac electrode, initial encounter|Displacement of cardiac electrode, initial encounter +C2889813|T037|PT|T82.120A|ICD10CM|Displacement of cardiac electrode, initial encounter|Displacement of cardiac electrode, initial encounter +C2889814|T037|AB|T82.120D|ICD10CM|Displacement of cardiac electrode, subsequent encounter|Displacement of cardiac electrode, subsequent encounter +C2889814|T037|PT|T82.120D|ICD10CM|Displacement of cardiac electrode, subsequent encounter|Displacement of cardiac electrode, subsequent encounter +C2889815|T037|AB|T82.120S|ICD10CM|Displacement of cardiac electrode, sequela|Displacement of cardiac electrode, sequela +C2889815|T037|PT|T82.120S|ICD10CM|Displacement of cardiac electrode, sequela|Displacement of cardiac electrode, sequela +C2889816|T037|AB|T82.121|ICD10CM|Displacement of cardiac pulse generator (battery)|Displacement of cardiac pulse generator (battery) +C2889816|T037|HT|T82.121|ICD10CM|Displacement of cardiac pulse generator (battery)|Displacement of cardiac pulse generator (battery) +C2889817|T037|AB|T82.121A|ICD10CM|Displacement of cardiac pulse generator (battery), init|Displacement of cardiac pulse generator (battery), init +C2889817|T037|PT|T82.121A|ICD10CM|Displacement of cardiac pulse generator (battery), initial encounter|Displacement of cardiac pulse generator (battery), initial encounter +C2889818|T037|AB|T82.121D|ICD10CM|Displacement of cardiac pulse generator (battery), subs|Displacement of cardiac pulse generator (battery), subs +C2889818|T037|PT|T82.121D|ICD10CM|Displacement of cardiac pulse generator (battery), subsequent encounter|Displacement of cardiac pulse generator (battery), subsequent encounter +C2889819|T037|AB|T82.121S|ICD10CM|Displacement of cardiac pulse generator (battery), sequela|Displacement of cardiac pulse generator (battery), sequela +C2889819|T037|PT|T82.121S|ICD10CM|Displacement of cardiac pulse generator (battery), sequela|Displacement of cardiac pulse generator (battery), sequela +C2889820|T037|AB|T82.128|ICD10CM|Displacement of other cardiac electronic device|Displacement of other cardiac electronic device +C2889820|T037|HT|T82.128|ICD10CM|Displacement of other cardiac electronic device|Displacement of other cardiac electronic device +C2889821|T037|AB|T82.128A|ICD10CM|Displacement of other cardiac electronic device, init encntr|Displacement of other cardiac electronic device, init encntr +C2889821|T037|PT|T82.128A|ICD10CM|Displacement of other cardiac electronic device, initial encounter|Displacement of other cardiac electronic device, initial encounter +C2889822|T037|AB|T82.128D|ICD10CM|Displacement of other cardiac electronic device, subs encntr|Displacement of other cardiac electronic device, subs encntr +C2889822|T037|PT|T82.128D|ICD10CM|Displacement of other cardiac electronic device, subsequent encounter|Displacement of other cardiac electronic device, subsequent encounter +C2889823|T037|AB|T82.128S|ICD10CM|Displacement of other cardiac electronic device, sequela|Displacement of other cardiac electronic device, sequela +C2889823|T037|PT|T82.128S|ICD10CM|Displacement of other cardiac electronic device, sequela|Displacement of other cardiac electronic device, sequela +C2889824|T037|AB|T82.129|ICD10CM|Displacement of unspecified cardiac electronic device|Displacement of unspecified cardiac electronic device +C2889824|T037|HT|T82.129|ICD10CM|Displacement of unspecified cardiac electronic device|Displacement of unspecified cardiac electronic device +C2889825|T037|AB|T82.129A|ICD10CM|Displacement of unsp cardiac electronic device, init encntr|Displacement of unsp cardiac electronic device, init encntr +C2889825|T037|PT|T82.129A|ICD10CM|Displacement of unspecified cardiac electronic device, initial encounter|Displacement of unspecified cardiac electronic device, initial encounter +C2889826|T037|AB|T82.129D|ICD10CM|Displacement of unsp cardiac electronic device, subs encntr|Displacement of unsp cardiac electronic device, subs encntr +C2889826|T037|PT|T82.129D|ICD10CM|Displacement of unspecified cardiac electronic device, subsequent encounter|Displacement of unspecified cardiac electronic device, subsequent encounter +C2889827|T037|AB|T82.129S|ICD10CM|Displacement of unsp cardiac electronic device, sequela|Displacement of unsp cardiac electronic device, sequela +C2889827|T037|PT|T82.129S|ICD10CM|Displacement of unspecified cardiac electronic device, sequela|Displacement of unspecified cardiac electronic device, sequela +C2889828|T037|ET|T82.19|ICD10CM|Leakage of cardiac electronic device|Leakage of cardiac electronic device +C2889829|T037|ET|T82.19|ICD10CM|Obstruction of cardiac electronic device|Obstruction of cardiac electronic device +C2889832|T037|AB|T82.19|ICD10CM|Other mechanical complication of cardiac electronic device|Other mechanical complication of cardiac electronic device +C2889832|T037|HT|T82.19|ICD10CM|Other mechanical complication of cardiac electronic device|Other mechanical complication of cardiac electronic device +C2889830|T037|ET|T82.19|ICD10CM|Perforation of cardiac electronic device|Perforation of cardiac electronic device +C2889831|T037|ET|T82.19|ICD10CM|Protrusion of cardiac electronic device|Protrusion of cardiac electronic device +C2889833|T037|AB|T82.190|ICD10CM|Other mechanical complication of cardiac electrode|Other mechanical complication of cardiac electrode +C2889833|T037|HT|T82.190|ICD10CM|Other mechanical complication of cardiac electrode|Other mechanical complication of cardiac electrode +C2889834|T037|AB|T82.190A|ICD10CM|Mech compl of cardiac electrode, initial encounter|Mech compl of cardiac electrode, initial encounter +C2889834|T037|PT|T82.190A|ICD10CM|Other mechanical complication of cardiac electrode, initial encounter|Other mechanical complication of cardiac electrode, initial encounter +C2889835|T037|AB|T82.190D|ICD10CM|Mech compl of cardiac electrode, subsequent encounter|Mech compl of cardiac electrode, subsequent encounter +C2889835|T037|PT|T82.190D|ICD10CM|Other mechanical complication of cardiac electrode, subsequent encounter|Other mechanical complication of cardiac electrode, subsequent encounter +C2889836|T037|AB|T82.190S|ICD10CM|Other mechanical complication of cardiac electrode, sequela|Other mechanical complication of cardiac electrode, sequela +C2889836|T037|PT|T82.190S|ICD10CM|Other mechanical complication of cardiac electrode, sequela|Other mechanical complication of cardiac electrode, sequela +C2889837|T037|AB|T82.191|ICD10CM|Mech compl of cardiac pulse generator (battery)|Mech compl of cardiac pulse generator (battery) +C2889837|T037|HT|T82.191|ICD10CM|Other mechanical complication of cardiac pulse generator (battery)|Other mechanical complication of cardiac pulse generator (battery) +C2889838|T037|AB|T82.191A|ICD10CM|Mech compl of cardiac pulse generator (battery), init encntr|Mech compl of cardiac pulse generator (battery), init encntr +C2889838|T037|PT|T82.191A|ICD10CM|Other mechanical complication of cardiac pulse generator (battery), initial encounter|Other mechanical complication of cardiac pulse generator (battery), initial encounter +C2889839|T037|AB|T82.191D|ICD10CM|Mech compl of cardiac pulse generator (battery), subs encntr|Mech compl of cardiac pulse generator (battery), subs encntr +C2889839|T037|PT|T82.191D|ICD10CM|Other mechanical complication of cardiac pulse generator (battery), subsequent encounter|Other mechanical complication of cardiac pulse generator (battery), subsequent encounter +C2889840|T037|AB|T82.191S|ICD10CM|Mech compl of cardiac pulse generator (battery), sequela|Mech compl of cardiac pulse generator (battery), sequela +C2889840|T037|PT|T82.191S|ICD10CM|Other mechanical complication of cardiac pulse generator (battery), sequela|Other mechanical complication of cardiac pulse generator (battery), sequela +C2889841|T037|AB|T82.198|ICD10CM|Mech compl of other cardiac electronic device|Mech compl of other cardiac electronic device +C2889841|T037|HT|T82.198|ICD10CM|Other mechanical complication of other cardiac electronic device|Other mechanical complication of other cardiac electronic device +C2889842|T037|AB|T82.198A|ICD10CM|Mech compl of other cardiac electronic device, init encntr|Mech compl of other cardiac electronic device, init encntr +C2889842|T037|PT|T82.198A|ICD10CM|Other mechanical complication of other cardiac electronic device, initial encounter|Other mechanical complication of other cardiac electronic device, initial encounter +C2889843|T037|AB|T82.198D|ICD10CM|Mech compl of other cardiac electronic device, subs encntr|Mech compl of other cardiac electronic device, subs encntr +C2889843|T037|PT|T82.198D|ICD10CM|Other mechanical complication of other cardiac electronic device, subsequent encounter|Other mechanical complication of other cardiac electronic device, subsequent encounter +C2889844|T037|AB|T82.198S|ICD10CM|Mech compl of other cardiac electronic device, sequela|Mech compl of other cardiac electronic device, sequela +C2889844|T037|PT|T82.198S|ICD10CM|Other mechanical complication of other cardiac electronic device, sequela|Other mechanical complication of other cardiac electronic device, sequela +C2889845|T037|AB|T82.199|ICD10CM|Other mechanical complication of unspecified cardiac device|Other mechanical complication of unspecified cardiac device +C2889845|T037|HT|T82.199|ICD10CM|Other mechanical complication of unspecified cardiac device|Other mechanical complication of unspecified cardiac device +C2889846|T037|AB|T82.199A|ICD10CM|Mech compl of unspecified cardiac device, initial encounter|Mech compl of unspecified cardiac device, initial encounter +C2889846|T037|PT|T82.199A|ICD10CM|Other mechanical complication of unspecified cardiac device, initial encounter|Other mechanical complication of unspecified cardiac device, initial encounter +C2889847|T037|AB|T82.199D|ICD10CM|Mech compl of unspecified cardiac device, subs encntr|Mech compl of unspecified cardiac device, subs encntr +C2889847|T037|PT|T82.199D|ICD10CM|Other mechanical complication of unspecified cardiac device, subsequent encounter|Other mechanical complication of unspecified cardiac device, subsequent encounter +C2889848|T037|AB|T82.199S|ICD10CM|Mech compl of unspecified cardiac device, sequela|Mech compl of unspecified cardiac device, sequela +C2889848|T037|PT|T82.199S|ICD10CM|Other mechanical complication of unspecified cardiac device, sequela|Other mechanical complication of unspecified cardiac device, sequela +C2889849|T037|AB|T82.2|ICD10CM|Mech comp of cor art bypass and biolg heart valve graft|Mech comp of cor art bypass and biolg heart valve graft +C0496140|T037|PT|T82.2|ICD10|Mechanical complication of coronary artery bypass and valve grafts|Mechanical complication of coronary artery bypass and valve grafts +C2889849|T037|HT|T82.2|ICD10CM|Mechanical complication of coronary artery bypass graft and biological heart valve graft|Mechanical complication of coronary artery bypass graft and biological heart valve graft +C2889850|T037|AB|T82.21|ICD10CM|Mechanical complication of coronary artery bypass graft|Mechanical complication of coronary artery bypass graft +C2889850|T037|HT|T82.21|ICD10CM|Mechanical complication of coronary artery bypass graft|Mechanical complication of coronary artery bypass graft +C2889851|T037|AB|T82.211|ICD10CM|Breakdown (mechanical) of coronary artery bypass graft|Breakdown (mechanical) of coronary artery bypass graft +C2889851|T037|HT|T82.211|ICD10CM|Breakdown (mechanical) of coronary artery bypass graft|Breakdown (mechanical) of coronary artery bypass graft +C2889852|T037|AB|T82.211A|ICD10CM|Breakdown (mechanical) of coronary artery bypass graft, init|Breakdown (mechanical) of coronary artery bypass graft, init +C2889852|T037|PT|T82.211A|ICD10CM|Breakdown (mechanical) of coronary artery bypass graft, initial encounter|Breakdown (mechanical) of coronary artery bypass graft, initial encounter +C2889853|T037|AB|T82.211D|ICD10CM|Breakdown (mechanical) of coronary artery bypass graft, subs|Breakdown (mechanical) of coronary artery bypass graft, subs +C2889853|T037|PT|T82.211D|ICD10CM|Breakdown (mechanical) of coronary artery bypass graft, subsequent encounter|Breakdown (mechanical) of coronary artery bypass graft, subsequent encounter +C2889854|T037|AB|T82.211S|ICD10CM|Breakdown (mechanical) of cor art bypass graft, sequela|Breakdown (mechanical) of cor art bypass graft, sequela +C2889854|T037|PT|T82.211S|ICD10CM|Breakdown (mechanical) of coronary artery bypass graft, sequela|Breakdown (mechanical) of coronary artery bypass graft, sequela +C2889856|T037|AB|T82.212|ICD10CM|Displacement of coronary artery bypass graft|Displacement of coronary artery bypass graft +C2889856|T037|HT|T82.212|ICD10CM|Displacement of coronary artery bypass graft|Displacement of coronary artery bypass graft +C2889855|T037|ET|T82.212|ICD10CM|Malposition of coronary artery bypass graft|Malposition of coronary artery bypass graft +C2889857|T037|AB|T82.212A|ICD10CM|Displacement of coronary artery bypass graft, init encntr|Displacement of coronary artery bypass graft, init encntr +C2889857|T037|PT|T82.212A|ICD10CM|Displacement of coronary artery bypass graft, initial encounter|Displacement of coronary artery bypass graft, initial encounter +C2889858|T037|AB|T82.212D|ICD10CM|Displacement of coronary artery bypass graft, subs encntr|Displacement of coronary artery bypass graft, subs encntr +C2889858|T037|PT|T82.212D|ICD10CM|Displacement of coronary artery bypass graft, subsequent encounter|Displacement of coronary artery bypass graft, subsequent encounter +C2889859|T037|PT|T82.212S|ICD10CM|Displacement of coronary artery bypass graft, sequela|Displacement of coronary artery bypass graft, sequela +C2889859|T037|AB|T82.212S|ICD10CM|Displacement of coronary artery bypass graft, sequela|Displacement of coronary artery bypass graft, sequela +C2889860|T037|AB|T82.213|ICD10CM|Leakage of coronary artery bypass graft|Leakage of coronary artery bypass graft +C2889860|T037|HT|T82.213|ICD10CM|Leakage of coronary artery bypass graft|Leakage of coronary artery bypass graft +C2889861|T037|PT|T82.213A|ICD10CM|Leakage of coronary artery bypass graft, initial encounter|Leakage of coronary artery bypass graft, initial encounter +C2889861|T037|AB|T82.213A|ICD10CM|Leakage of coronary artery bypass graft, initial encounter|Leakage of coronary artery bypass graft, initial encounter +C2889862|T037|AB|T82.213D|ICD10CM|Leakage of coronary artery bypass graft, subs encntr|Leakage of coronary artery bypass graft, subs encntr +C2889862|T037|PT|T82.213D|ICD10CM|Leakage of coronary artery bypass graft, subsequent encounter|Leakage of coronary artery bypass graft, subsequent encounter +C2889863|T037|PT|T82.213S|ICD10CM|Leakage of coronary artery bypass graft, sequela|Leakage of coronary artery bypass graft, sequela +C2889863|T037|AB|T82.213S|ICD10CM|Leakage of coronary artery bypass graft, sequela|Leakage of coronary artery bypass graft, sequela +C2889867|T037|AB|T82.218|ICD10CM|Mech compl of coronary artery bypass graft|Mech compl of coronary artery bypass graft +C2889864|T037|ET|T82.218|ICD10CM|Obstruction, mechanical of coronary artery bypass graft|Obstruction, mechanical of coronary artery bypass graft +C2889867|T037|HT|T82.218|ICD10CM|Other mechanical complication of coronary artery bypass graft|Other mechanical complication of coronary artery bypass graft +C2889865|T037|ET|T82.218|ICD10CM|Perforation of coronary artery bypass graft|Perforation of coronary artery bypass graft +C2889866|T037|ET|T82.218|ICD10CM|Protrusion of coronary artery bypass graft|Protrusion of coronary artery bypass graft +C2889868|T037|AB|T82.218A|ICD10CM|Mech compl of coronary artery bypass graft, init encntr|Mech compl of coronary artery bypass graft, init encntr +C2889868|T037|PT|T82.218A|ICD10CM|Other mechanical complication of coronary artery bypass graft, initial encounter|Other mechanical complication of coronary artery bypass graft, initial encounter +C2889869|T037|AB|T82.218D|ICD10CM|Mech compl of coronary artery bypass graft, subs encntr|Mech compl of coronary artery bypass graft, subs encntr +C2889869|T037|PT|T82.218D|ICD10CM|Other mechanical complication of coronary artery bypass graft, subsequent encounter|Other mechanical complication of coronary artery bypass graft, subsequent encounter +C2889870|T037|AB|T82.218S|ICD10CM|Mech compl of coronary artery bypass graft, sequela|Mech compl of coronary artery bypass graft, sequela +C2889870|T037|PT|T82.218S|ICD10CM|Other mechanical complication of coronary artery bypass graft, sequela|Other mechanical complication of coronary artery bypass graft, sequela +C2889871|T046|HT|T82.22|ICD10CM|Mechanical complication of biological heart valve graft|Mechanical complication of biological heart valve graft +C2889871|T046|AB|T82.22|ICD10CM|Mechanical complication of biological heart valve graft|Mechanical complication of biological heart valve graft +C2889872|T037|AB|T82.221|ICD10CM|Breakdown (mechanical) of biological heart valve graft|Breakdown (mechanical) of biological heart valve graft +C2889872|T037|HT|T82.221|ICD10CM|Breakdown (mechanical) of biological heart valve graft|Breakdown (mechanical) of biological heart valve graft +C2889873|T037|AB|T82.221A|ICD10CM|Breakdown (mechanical) of biological heart valve graft, init|Breakdown (mechanical) of biological heart valve graft, init +C2889873|T037|PT|T82.221A|ICD10CM|Breakdown (mechanical) of biological heart valve graft, initial encounter|Breakdown (mechanical) of biological heart valve graft, initial encounter +C2889874|T037|AB|T82.221D|ICD10CM|Breakdown (mechanical) of biological heart valve graft, subs|Breakdown (mechanical) of biological heart valve graft, subs +C2889874|T037|PT|T82.221D|ICD10CM|Breakdown (mechanical) of biological heart valve graft, subsequent encounter|Breakdown (mechanical) of biological heart valve graft, subsequent encounter +C2889875|T037|PT|T82.221S|ICD10CM|Breakdown (mechanical) of biological heart valve graft, sequela|Breakdown (mechanical) of biological heart valve graft, sequela +C2889875|T037|AB|T82.221S|ICD10CM|Breakdown of biological heart valve graft, sequela|Breakdown of biological heart valve graft, sequela +C2889877|T037|AB|T82.222|ICD10CM|Displacement of biological heart valve graft|Displacement of biological heart valve graft +C2889877|T037|HT|T82.222|ICD10CM|Displacement of biological heart valve graft|Displacement of biological heart valve graft +C2889876|T037|ET|T82.222|ICD10CM|Malposition of biological heart valve graft|Malposition of biological heart valve graft +C2889878|T037|AB|T82.222A|ICD10CM|Displacement of biological heart valve graft, init encntr|Displacement of biological heart valve graft, init encntr +C2889878|T037|PT|T82.222A|ICD10CM|Displacement of biological heart valve graft, initial encounter|Displacement of biological heart valve graft, initial encounter +C2889879|T037|AB|T82.222D|ICD10CM|Displacement of biological heart valve graft, subs encntr|Displacement of biological heart valve graft, subs encntr +C2889879|T037|PT|T82.222D|ICD10CM|Displacement of biological heart valve graft, subsequent encounter|Displacement of biological heart valve graft, subsequent encounter +C2889880|T037|PT|T82.222S|ICD10CM|Displacement of biological heart valve graft, sequela|Displacement of biological heart valve graft, sequela +C2889880|T037|AB|T82.222S|ICD10CM|Displacement of biological heart valve graft, sequela|Displacement of biological heart valve graft, sequela +C2889881|T037|AB|T82.223|ICD10CM|Leakage of biological heart valve graft|Leakage of biological heart valve graft +C2889881|T037|HT|T82.223|ICD10CM|Leakage of biological heart valve graft|Leakage of biological heart valve graft +C2889882|T037|PT|T82.223A|ICD10CM|Leakage of biological heart valve graft, initial encounter|Leakage of biological heart valve graft, initial encounter +C2889882|T037|AB|T82.223A|ICD10CM|Leakage of biological heart valve graft, initial encounter|Leakage of biological heart valve graft, initial encounter +C2889883|T037|AB|T82.223D|ICD10CM|Leakage of biological heart valve graft, subs encntr|Leakage of biological heart valve graft, subs encntr +C2889883|T037|PT|T82.223D|ICD10CM|Leakage of biological heart valve graft, subsequent encounter|Leakage of biological heart valve graft, subsequent encounter +C2889884|T037|PT|T82.223S|ICD10CM|Leakage of biological heart valve graft, sequela|Leakage of biological heart valve graft, sequela +C2889884|T037|AB|T82.223S|ICD10CM|Leakage of biological heart valve graft, sequela|Leakage of biological heart valve graft, sequela +C2889888|T037|AB|T82.228|ICD10CM|Mech compl of biological heart valve graft|Mech compl of biological heart valve graft +C2889885|T037|ET|T82.228|ICD10CM|Obstruction of biological heart valve graft|Obstruction of biological heart valve graft +C2889888|T037|HT|T82.228|ICD10CM|Other mechanical complication of biological heart valve graft|Other mechanical complication of biological heart valve graft +C2889886|T037|ET|T82.228|ICD10CM|Perforation of biological heart valve graft|Perforation of biological heart valve graft +C2889887|T037|ET|T82.228|ICD10CM|Protrusion of biological heart valve graft|Protrusion of biological heart valve graft +C2889889|T037|AB|T82.228A|ICD10CM|Mech compl of biological heart valve graft, init encntr|Mech compl of biological heart valve graft, init encntr +C2889889|T037|PT|T82.228A|ICD10CM|Other mechanical complication of biological heart valve graft, initial encounter|Other mechanical complication of biological heart valve graft, initial encounter +C2889890|T037|AB|T82.228D|ICD10CM|Mech compl of biological heart valve graft, subs encntr|Mech compl of biological heart valve graft, subs encntr +C2889890|T037|PT|T82.228D|ICD10CM|Other mechanical complication of biological heart valve graft, subsequent encounter|Other mechanical complication of biological heart valve graft, subsequent encounter +C2889891|T037|AB|T82.228S|ICD10CM|Mech compl of biological heart valve graft, sequela|Mech compl of biological heart valve graft, sequela +C2889891|T037|PT|T82.228S|ICD10CM|Other mechanical complication of biological heart valve graft, sequela|Other mechanical complication of biological heart valve graft, sequela +C0478485|T046|PT|T82.3|ICD10|Mechanical complication of other vascular grafts|Mechanical complication of other vascular grafts +C0478485|T046|HT|T82.3|ICD10CM|Mechanical complication of other vascular grafts|Mechanical complication of other vascular grafts +C0478485|T046|AB|T82.3|ICD10CM|Mechanical complication of other vascular grafts|Mechanical complication of other vascular grafts +C2889892|T037|AB|T82.31|ICD10CM|Breakdown (mechanical) of other vascular grafts|Breakdown (mechanical) of other vascular grafts +C2889892|T037|HT|T82.31|ICD10CM|Breakdown (mechanical) of other vascular grafts|Breakdown (mechanical) of other vascular grafts +C2889893|T037|AB|T82.310|ICD10CM|Breakdown (mechanical) of aortic (bifurcation) graft|Breakdown (mechanical) of aortic (bifurcation) graft +C2889893|T037|HT|T82.310|ICD10CM|Breakdown (mechanical) of aortic (bifurcation) graft (replacement)|Breakdown (mechanical) of aortic (bifurcation) graft (replacement) +C2889894|T037|PT|T82.310A|ICD10CM|Breakdown (mechanical) of aortic (bifurcation) graft (replacement), initial encounter|Breakdown (mechanical) of aortic (bifurcation) graft (replacement), initial encounter +C2889894|T037|AB|T82.310A|ICD10CM|Breakdown (mechanical) of aortic (bifurcation) graft, init|Breakdown (mechanical) of aortic (bifurcation) graft, init +C2889895|T037|PT|T82.310D|ICD10CM|Breakdown (mechanical) of aortic (bifurcation) graft (replacement), subsequent encounter|Breakdown (mechanical) of aortic (bifurcation) graft (replacement), subsequent encounter +C2889895|T037|AB|T82.310D|ICD10CM|Breakdown (mechanical) of aortic (bifurcation) graft, subs|Breakdown (mechanical) of aortic (bifurcation) graft, subs +C2889896|T037|PT|T82.310S|ICD10CM|Breakdown (mechanical) of aortic (bifurcation) graft (replacement), sequela|Breakdown (mechanical) of aortic (bifurcation) graft (replacement), sequela +C2889896|T037|AB|T82.310S|ICD10CM|Breakdown of aortic (bifurcation) graft, sequela|Breakdown of aortic (bifurcation) graft, sequela +C2889897|T037|AB|T82.311|ICD10CM|Breakdown (mechanical) of carotid arterial graft (bypass)|Breakdown (mechanical) of carotid arterial graft (bypass) +C2889897|T037|HT|T82.311|ICD10CM|Breakdown (mechanical) of carotid arterial graft (bypass)|Breakdown (mechanical) of carotid arterial graft (bypass) +C2889898|T037|PT|T82.311A|ICD10CM|Breakdown (mechanical) of carotid arterial graft (bypass), initial encounter|Breakdown (mechanical) of carotid arterial graft (bypass), initial encounter +C2889898|T037|AB|T82.311A|ICD10CM|Breakdown of carotid arterial graft (bypass), init|Breakdown of carotid arterial graft (bypass), init +C2889899|T037|PT|T82.311D|ICD10CM|Breakdown (mechanical) of carotid arterial graft (bypass), subsequent encounter|Breakdown (mechanical) of carotid arterial graft (bypass), subsequent encounter +C2889899|T037|AB|T82.311D|ICD10CM|Breakdown of carotid arterial graft (bypass), subs|Breakdown of carotid arterial graft (bypass), subs +C2889900|T037|PT|T82.311S|ICD10CM|Breakdown (mechanical) of carotid arterial graft (bypass), sequela|Breakdown (mechanical) of carotid arterial graft (bypass), sequela +C2889900|T037|AB|T82.311S|ICD10CM|Breakdown of carotid arterial graft (bypass), sequela|Breakdown of carotid arterial graft (bypass), sequela +C2889901|T037|AB|T82.312|ICD10CM|Breakdown (mechanical) of femoral arterial graft (bypass)|Breakdown (mechanical) of femoral arterial graft (bypass) +C2889901|T037|HT|T82.312|ICD10CM|Breakdown (mechanical) of femoral arterial graft (bypass)|Breakdown (mechanical) of femoral arterial graft (bypass) +C2889902|T037|PT|T82.312A|ICD10CM|Breakdown (mechanical) of femoral arterial graft (bypass), initial encounter|Breakdown (mechanical) of femoral arterial graft (bypass), initial encounter +C2889902|T037|AB|T82.312A|ICD10CM|Breakdown of femoral arterial graft (bypass), init|Breakdown of femoral arterial graft (bypass), init +C2889903|T037|PT|T82.312D|ICD10CM|Breakdown (mechanical) of femoral arterial graft (bypass), subsequent encounter|Breakdown (mechanical) of femoral arterial graft (bypass), subsequent encounter +C2889903|T037|AB|T82.312D|ICD10CM|Breakdown of femoral arterial graft (bypass), subs|Breakdown of femoral arterial graft (bypass), subs +C2889904|T037|PT|T82.312S|ICD10CM|Breakdown (mechanical) of femoral arterial graft (bypass), sequela|Breakdown (mechanical) of femoral arterial graft (bypass), sequela +C2889904|T037|AB|T82.312S|ICD10CM|Breakdown of femoral arterial graft (bypass), sequela|Breakdown of femoral arterial graft (bypass), sequela +C2889892|T037|HT|T82.318|ICD10CM|Breakdown (mechanical) of other vascular grafts|Breakdown (mechanical) of other vascular grafts +C2889892|T037|AB|T82.318|ICD10CM|Breakdown (mechanical) of other vascular grafts|Breakdown (mechanical) of other vascular grafts +C2889905|T037|AB|T82.318A|ICD10CM|Breakdown (mechanical) of other vascular grafts, init encntr|Breakdown (mechanical) of other vascular grafts, init encntr +C2889905|T037|PT|T82.318A|ICD10CM|Breakdown (mechanical) of other vascular grafts, initial encounter|Breakdown (mechanical) of other vascular grafts, initial encounter +C2889906|T037|AB|T82.318D|ICD10CM|Breakdown (mechanical) of other vascular grafts, subs encntr|Breakdown (mechanical) of other vascular grafts, subs encntr +C2889906|T037|PT|T82.318D|ICD10CM|Breakdown (mechanical) of other vascular grafts, subsequent encounter|Breakdown (mechanical) of other vascular grafts, subsequent encounter +C2889907|T037|AB|T82.318S|ICD10CM|Breakdown (mechanical) of other vascular grafts, sequela|Breakdown (mechanical) of other vascular grafts, sequela +C2889907|T037|PT|T82.318S|ICD10CM|Breakdown (mechanical) of other vascular grafts, sequela|Breakdown (mechanical) of other vascular grafts, sequela +C2889908|T037|AB|T82.319|ICD10CM|Breakdown (mechanical) of unspecified vascular grafts|Breakdown (mechanical) of unspecified vascular grafts +C2889908|T037|HT|T82.319|ICD10CM|Breakdown (mechanical) of unspecified vascular grafts|Breakdown (mechanical) of unspecified vascular grafts +C2889909|T037|AB|T82.319A|ICD10CM|Breakdown (mechanical) of unsp vascular grafts, init encntr|Breakdown (mechanical) of unsp vascular grafts, init encntr +C2889909|T037|PT|T82.319A|ICD10CM|Breakdown (mechanical) of unspecified vascular grafts, initial encounter|Breakdown (mechanical) of unspecified vascular grafts, initial encounter +C2889910|T037|AB|T82.319D|ICD10CM|Breakdown (mechanical) of unsp vascular grafts, subs encntr|Breakdown (mechanical) of unsp vascular grafts, subs encntr +C2889910|T037|PT|T82.319D|ICD10CM|Breakdown (mechanical) of unspecified vascular grafts, subsequent encounter|Breakdown (mechanical) of unspecified vascular grafts, subsequent encounter +C2889911|T037|AB|T82.319S|ICD10CM|Breakdown (mechanical) of unsp vascular grafts, sequela|Breakdown (mechanical) of unsp vascular grafts, sequela +C2889911|T037|PT|T82.319S|ICD10CM|Breakdown (mechanical) of unspecified vascular grafts, sequela|Breakdown (mechanical) of unspecified vascular grafts, sequela +C2889913|T037|AB|T82.32|ICD10CM|Displacement of other vascular grafts|Displacement of other vascular grafts +C2889913|T037|HT|T82.32|ICD10CM|Displacement of other vascular grafts|Displacement of other vascular grafts +C2889912|T037|ET|T82.32|ICD10CM|Malposition of other vascular grafts|Malposition of other vascular grafts +C2889914|T037|AB|T82.320|ICD10CM|Displacement of aortic (bifurcation) graft (replacement)|Displacement of aortic (bifurcation) graft (replacement) +C2889914|T037|HT|T82.320|ICD10CM|Displacement of aortic (bifurcation) graft (replacement)|Displacement of aortic (bifurcation) graft (replacement) +C2889915|T037|PT|T82.320A|ICD10CM|Displacement of aortic (bifurcation) graft (replacement), initial encounter|Displacement of aortic (bifurcation) graft (replacement), initial encounter +C2889915|T037|AB|T82.320A|ICD10CM|Displacement of aortic (bifurcation) graft, init|Displacement of aortic (bifurcation) graft, init +C2889916|T037|PT|T82.320D|ICD10CM|Displacement of aortic (bifurcation) graft (replacement), subsequent encounter|Displacement of aortic (bifurcation) graft (replacement), subsequent encounter +C2889916|T037|AB|T82.320D|ICD10CM|Displacement of aortic (bifurcation) graft, subs|Displacement of aortic (bifurcation) graft, subs +C2889917|T037|PT|T82.320S|ICD10CM|Displacement of aortic (bifurcation) graft (replacement), sequela|Displacement of aortic (bifurcation) graft (replacement), sequela +C2889917|T037|AB|T82.320S|ICD10CM|Displacement of aortic (bifurcation) graft, sequela|Displacement of aortic (bifurcation) graft, sequela +C2889918|T037|AB|T82.321|ICD10CM|Displacement of carotid arterial graft (bypass)|Displacement of carotid arterial graft (bypass) +C2889918|T037|HT|T82.321|ICD10CM|Displacement of carotid arterial graft (bypass)|Displacement of carotid arterial graft (bypass) +C2889919|T037|AB|T82.321A|ICD10CM|Displacement of carotid arterial graft (bypass), init encntr|Displacement of carotid arterial graft (bypass), init encntr +C2889919|T037|PT|T82.321A|ICD10CM|Displacement of carotid arterial graft (bypass), initial encounter|Displacement of carotid arterial graft (bypass), initial encounter +C2889920|T037|AB|T82.321D|ICD10CM|Displacement of carotid arterial graft (bypass), subs encntr|Displacement of carotid arterial graft (bypass), subs encntr +C2889920|T037|PT|T82.321D|ICD10CM|Displacement of carotid arterial graft (bypass), subsequent encounter|Displacement of carotid arterial graft (bypass), subsequent encounter +C2889921|T037|PT|T82.321S|ICD10CM|Displacement of carotid arterial graft (bypass), sequela|Displacement of carotid arterial graft (bypass), sequela +C2889921|T037|AB|T82.321S|ICD10CM|Displacement of carotid arterial graft (bypass), sequela|Displacement of carotid arterial graft (bypass), sequela +C2889922|T037|AB|T82.322|ICD10CM|Displacement of femoral arterial graft (bypass)|Displacement of femoral arterial graft (bypass) +C2889922|T037|HT|T82.322|ICD10CM|Displacement of femoral arterial graft (bypass)|Displacement of femoral arterial graft (bypass) +C2889923|T037|AB|T82.322A|ICD10CM|Displacement of femoral arterial graft (bypass), init encntr|Displacement of femoral arterial graft (bypass), init encntr +C2889923|T037|PT|T82.322A|ICD10CM|Displacement of femoral arterial graft (bypass), initial encounter|Displacement of femoral arterial graft (bypass), initial encounter +C2889924|T037|AB|T82.322D|ICD10CM|Displacement of femoral arterial graft (bypass), subs encntr|Displacement of femoral arterial graft (bypass), subs encntr +C2889924|T037|PT|T82.322D|ICD10CM|Displacement of femoral arterial graft (bypass), subsequent encounter|Displacement of femoral arterial graft (bypass), subsequent encounter +C2889925|T037|PT|T82.322S|ICD10CM|Displacement of femoral arterial graft (bypass), sequela|Displacement of femoral arterial graft (bypass), sequela +C2889925|T037|AB|T82.322S|ICD10CM|Displacement of femoral arterial graft (bypass), sequela|Displacement of femoral arterial graft (bypass), sequela +C2889913|T037|HT|T82.328|ICD10CM|Displacement of other vascular grafts|Displacement of other vascular grafts +C2889913|T037|AB|T82.328|ICD10CM|Displacement of other vascular grafts|Displacement of other vascular grafts +C2889926|T037|PT|T82.328A|ICD10CM|Displacement of other vascular grafts, initial encounter|Displacement of other vascular grafts, initial encounter +C2889926|T037|AB|T82.328A|ICD10CM|Displacement of other vascular grafts, initial encounter|Displacement of other vascular grafts, initial encounter +C2889927|T037|PT|T82.328D|ICD10CM|Displacement of other vascular grafts, subsequent encounter|Displacement of other vascular grafts, subsequent encounter +C2889927|T037|AB|T82.328D|ICD10CM|Displacement of other vascular grafts, subsequent encounter|Displacement of other vascular grafts, subsequent encounter +C2889928|T037|PT|T82.328S|ICD10CM|Displacement of other vascular grafts, sequela|Displacement of other vascular grafts, sequela +C2889928|T037|AB|T82.328S|ICD10CM|Displacement of other vascular grafts, sequela|Displacement of other vascular grafts, sequela +C2889929|T037|AB|T82.329|ICD10CM|Displacement of unspecified vascular grafts|Displacement of unspecified vascular grafts +C2889929|T037|HT|T82.329|ICD10CM|Displacement of unspecified vascular grafts|Displacement of unspecified vascular grafts +C2889930|T037|AB|T82.329A|ICD10CM|Displacement of unspecified vascular grafts, init encntr|Displacement of unspecified vascular grafts, init encntr +C2889930|T037|PT|T82.329A|ICD10CM|Displacement of unspecified vascular grafts, initial encounter|Displacement of unspecified vascular grafts, initial encounter +C2889931|T037|AB|T82.329D|ICD10CM|Displacement of unspecified vascular grafts, subs encntr|Displacement of unspecified vascular grafts, subs encntr +C2889931|T037|PT|T82.329D|ICD10CM|Displacement of unspecified vascular grafts, subsequent encounter|Displacement of unspecified vascular grafts, subsequent encounter +C2889932|T037|AB|T82.329S|ICD10CM|Displacement of unspecified vascular grafts, sequela|Displacement of unspecified vascular grafts, sequela +C2889932|T037|PT|T82.329S|ICD10CM|Displacement of unspecified vascular grafts, sequela|Displacement of unspecified vascular grafts, sequela +C2889933|T037|HT|T82.33|ICD10CM|Leakage of other vascular grafts|Leakage of other vascular grafts +C2889933|T037|AB|T82.33|ICD10CM|Leakage of other vascular grafts|Leakage of other vascular grafts +C2889934|T037|AB|T82.330|ICD10CM|Leakage of aortic (bifurcation) graft (replacement)|Leakage of aortic (bifurcation) graft (replacement) +C2889934|T037|HT|T82.330|ICD10CM|Leakage of aortic (bifurcation) graft (replacement)|Leakage of aortic (bifurcation) graft (replacement) +C2889935|T037|AB|T82.330A|ICD10CM|Leakage of aortic (bifurcation) graft (replacement), init|Leakage of aortic (bifurcation) graft (replacement), init +C2889935|T037|PT|T82.330A|ICD10CM|Leakage of aortic (bifurcation) graft (replacement), initial encounter|Leakage of aortic (bifurcation) graft (replacement), initial encounter +C2889936|T037|AB|T82.330D|ICD10CM|Leakage of aortic (bifurcation) graft (replacement), subs|Leakage of aortic (bifurcation) graft (replacement), subs +C2889936|T037|PT|T82.330D|ICD10CM|Leakage of aortic (bifurcation) graft (replacement), subsequent encounter|Leakage of aortic (bifurcation) graft (replacement), subsequent encounter +C2889937|T037|AB|T82.330S|ICD10CM|Leakage of aortic (bifurcation) graft (replacement), sequela|Leakage of aortic (bifurcation) graft (replacement), sequela +C2889937|T037|PT|T82.330S|ICD10CM|Leakage of aortic (bifurcation) graft (replacement), sequela|Leakage of aortic (bifurcation) graft (replacement), sequela +C2889938|T037|AB|T82.331|ICD10CM|Leakage of carotid arterial graft (bypass)|Leakage of carotid arterial graft (bypass) +C2889938|T037|HT|T82.331|ICD10CM|Leakage of carotid arterial graft (bypass)|Leakage of carotid arterial graft (bypass) +C2889939|T037|AB|T82.331A|ICD10CM|Leakage of carotid arterial graft (bypass), init encntr|Leakage of carotid arterial graft (bypass), init encntr +C2889939|T037|PT|T82.331A|ICD10CM|Leakage of carotid arterial graft (bypass), initial encounter|Leakage of carotid arterial graft (bypass), initial encounter +C2889940|T037|AB|T82.331D|ICD10CM|Leakage of carotid arterial graft (bypass), subs encntr|Leakage of carotid arterial graft (bypass), subs encntr +C2889940|T037|PT|T82.331D|ICD10CM|Leakage of carotid arterial graft (bypass), subsequent encounter|Leakage of carotid arterial graft (bypass), subsequent encounter +C2889941|T037|PT|T82.331S|ICD10CM|Leakage of carotid arterial graft (bypass), sequela|Leakage of carotid arterial graft (bypass), sequela +C2889941|T037|AB|T82.331S|ICD10CM|Leakage of carotid arterial graft (bypass), sequela|Leakage of carotid arterial graft (bypass), sequela +C2889942|T037|AB|T82.332|ICD10CM|Leakage of femoral arterial graft (bypass)|Leakage of femoral arterial graft (bypass) +C2889942|T037|HT|T82.332|ICD10CM|Leakage of femoral arterial graft (bypass)|Leakage of femoral arterial graft (bypass) +C2889943|T037|AB|T82.332A|ICD10CM|Leakage of femoral arterial graft (bypass), init encntr|Leakage of femoral arterial graft (bypass), init encntr +C2889943|T037|PT|T82.332A|ICD10CM|Leakage of femoral arterial graft (bypass), initial encounter|Leakage of femoral arterial graft (bypass), initial encounter +C2889944|T037|AB|T82.332D|ICD10CM|Leakage of femoral arterial graft (bypass), subs encntr|Leakage of femoral arterial graft (bypass), subs encntr +C2889944|T037|PT|T82.332D|ICD10CM|Leakage of femoral arterial graft (bypass), subsequent encounter|Leakage of femoral arterial graft (bypass), subsequent encounter +C2889945|T037|PT|T82.332S|ICD10CM|Leakage of femoral arterial graft (bypass), sequela|Leakage of femoral arterial graft (bypass), sequela +C2889945|T037|AB|T82.332S|ICD10CM|Leakage of femoral arterial graft (bypass), sequela|Leakage of femoral arterial graft (bypass), sequela +C2889933|T037|AB|T82.338|ICD10CM|Leakage of other vascular grafts|Leakage of other vascular grafts +C2889933|T037|HT|T82.338|ICD10CM|Leakage of other vascular grafts|Leakage of other vascular grafts +C2889946|T037|PT|T82.338A|ICD10CM|Leakage of other vascular grafts, initial encounter|Leakage of other vascular grafts, initial encounter +C2889946|T037|AB|T82.338A|ICD10CM|Leakage of other vascular grafts, initial encounter|Leakage of other vascular grafts, initial encounter +C2889947|T037|PT|T82.338D|ICD10CM|Leakage of other vascular grafts, subsequent encounter|Leakage of other vascular grafts, subsequent encounter +C2889947|T037|AB|T82.338D|ICD10CM|Leakage of other vascular grafts, subsequent encounter|Leakage of other vascular grafts, subsequent encounter +C2889948|T037|PT|T82.338S|ICD10CM|Leakage of other vascular grafts, sequela|Leakage of other vascular grafts, sequela +C2889948|T037|AB|T82.338S|ICD10CM|Leakage of other vascular grafts, sequela|Leakage of other vascular grafts, sequela +C2889949|T037|AB|T82.339|ICD10CM|Leakage of unspecified vascular graft|Leakage of unspecified vascular graft +C2889949|T037|HT|T82.339|ICD10CM|Leakage of unspecified vascular graft|Leakage of unspecified vascular graft +C2889950|T037|AB|T82.339A|ICD10CM|Leakage of unspecified vascular graft, initial encounter|Leakage of unspecified vascular graft, initial encounter +C2889950|T037|PT|T82.339A|ICD10CM|Leakage of unspecified vascular graft, initial encounter|Leakage of unspecified vascular graft, initial encounter +C2889951|T037|AB|T82.339D|ICD10CM|Leakage of unspecified vascular graft, subsequent encounter|Leakage of unspecified vascular graft, subsequent encounter +C2889951|T037|PT|T82.339D|ICD10CM|Leakage of unspecified vascular graft, subsequent encounter|Leakage of unspecified vascular graft, subsequent encounter +C2889952|T037|AB|T82.339S|ICD10CM|Leakage of unspecified vascular graft, sequela|Leakage of unspecified vascular graft, sequela +C2889952|T037|PT|T82.339S|ICD10CM|Leakage of unspecified vascular graft, sequela|Leakage of unspecified vascular graft, sequela +C2889953|T037|ET|T82.39|ICD10CM|Obstruction (mechanical) of other vascular grafts|Obstruction (mechanical) of other vascular grafts +C2889956|T037|HT|T82.39|ICD10CM|Other mechanical complication of other vascular grafts|Other mechanical complication of other vascular grafts +C2889956|T037|AB|T82.39|ICD10CM|Other mechanical complication of other vascular grafts|Other mechanical complication of other vascular grafts +C2889954|T037|ET|T82.39|ICD10CM|Perforation of other vascular grafts|Perforation of other vascular grafts +C2889955|T037|ET|T82.39|ICD10CM|Protrusion of other vascular grafts|Protrusion of other vascular grafts +C2889957|T037|AB|T82.390|ICD10CM|Mech compl of aortic (bifurcation) graft (replacement)|Mech compl of aortic (bifurcation) graft (replacement) +C2889957|T037|HT|T82.390|ICD10CM|Other mechanical complication of aortic (bifurcation) graft (replacement)|Other mechanical complication of aortic (bifurcation) graft (replacement) +C2889958|T037|AB|T82.390A|ICD10CM|Mech compl of aortic (bifurcation) graft (replacement), init|Mech compl of aortic (bifurcation) graft (replacement), init +C2889958|T037|PT|T82.390A|ICD10CM|Other mechanical complication of aortic (bifurcation) graft (replacement), initial encounter|Other mechanical complication of aortic (bifurcation) graft (replacement), initial encounter +C2889959|T037|AB|T82.390D|ICD10CM|Mech compl of aortic (bifurcation) graft (replacement), subs|Mech compl of aortic (bifurcation) graft (replacement), subs +C2889959|T037|PT|T82.390D|ICD10CM|Other mechanical complication of aortic (bifurcation) graft (replacement), subsequent encounter|Other mechanical complication of aortic (bifurcation) graft (replacement), subsequent encounter +C2889960|T037|AB|T82.390S|ICD10CM|Mech compl of aortic (bifurcation) graft, sequela|Mech compl of aortic (bifurcation) graft, sequela +C2889960|T037|PT|T82.390S|ICD10CM|Other mechanical complication of aortic (bifurcation) graft (replacement), sequela|Other mechanical complication of aortic (bifurcation) graft (replacement), sequela +C2889961|T037|AB|T82.391|ICD10CM|Mech compl of carotid arterial graft (bypass)|Mech compl of carotid arterial graft (bypass) +C2889961|T037|HT|T82.391|ICD10CM|Other mechanical complication of carotid arterial graft (bypass)|Other mechanical complication of carotid arterial graft (bypass) +C2889962|T037|AB|T82.391A|ICD10CM|Mech compl of carotid arterial graft (bypass), init encntr|Mech compl of carotid arterial graft (bypass), init encntr +C2889962|T037|PT|T82.391A|ICD10CM|Other mechanical complication of carotid arterial graft (bypass), initial encounter|Other mechanical complication of carotid arterial graft (bypass), initial encounter +C2889963|T037|AB|T82.391D|ICD10CM|Mech compl of carotid arterial graft (bypass), subs encntr|Mech compl of carotid arterial graft (bypass), subs encntr +C2889963|T037|PT|T82.391D|ICD10CM|Other mechanical complication of carotid arterial graft (bypass), subsequent encounter|Other mechanical complication of carotid arterial graft (bypass), subsequent encounter +C2889964|T037|AB|T82.391S|ICD10CM|Mech compl of carotid arterial graft (bypass), sequela|Mech compl of carotid arterial graft (bypass), sequela +C2889964|T037|PT|T82.391S|ICD10CM|Other mechanical complication of carotid arterial graft (bypass), sequela|Other mechanical complication of carotid arterial graft (bypass), sequela +C2889965|T037|AB|T82.392|ICD10CM|Mech compl of femoral arterial graft (bypass)|Mech compl of femoral arterial graft (bypass) +C2889965|T037|HT|T82.392|ICD10CM|Other mechanical complication of femoral arterial graft (bypass)|Other mechanical complication of femoral arterial graft (bypass) +C2889966|T037|AB|T82.392A|ICD10CM|Mech compl of femoral arterial graft (bypass), init encntr|Mech compl of femoral arterial graft (bypass), init encntr +C2889966|T037|PT|T82.392A|ICD10CM|Other mechanical complication of femoral arterial graft (bypass), initial encounter|Other mechanical complication of femoral arterial graft (bypass), initial encounter +C2889967|T037|AB|T82.392D|ICD10CM|Mech compl of femoral arterial graft (bypass), subs encntr|Mech compl of femoral arterial graft (bypass), subs encntr +C2889967|T037|PT|T82.392D|ICD10CM|Other mechanical complication of femoral arterial graft (bypass), subsequent encounter|Other mechanical complication of femoral arterial graft (bypass), subsequent encounter +C2889968|T037|AB|T82.392S|ICD10CM|Mech compl of femoral arterial graft (bypass), sequela|Mech compl of femoral arterial graft (bypass), sequela +C2889968|T037|PT|T82.392S|ICD10CM|Other mechanical complication of femoral arterial graft (bypass), sequela|Other mechanical complication of femoral arterial graft (bypass), sequela +C2889956|T037|AB|T82.398|ICD10CM|Other mechanical complication of other vascular grafts|Other mechanical complication of other vascular grafts +C2889956|T037|HT|T82.398|ICD10CM|Other mechanical complication of other vascular grafts|Other mechanical complication of other vascular grafts +C2889969|T037|AB|T82.398A|ICD10CM|Mech compl of other vascular grafts, initial encounter|Mech compl of other vascular grafts, initial encounter +C2889969|T037|PT|T82.398A|ICD10CM|Other mechanical complication of other vascular grafts, initial encounter|Other mechanical complication of other vascular grafts, initial encounter +C2889970|T037|AB|T82.398D|ICD10CM|Mech compl of other vascular grafts, subsequent encounter|Mech compl of other vascular grafts, subsequent encounter +C2889970|T037|PT|T82.398D|ICD10CM|Other mechanical complication of other vascular grafts, subsequent encounter|Other mechanical complication of other vascular grafts, subsequent encounter +C2889971|T037|AB|T82.398S|ICD10CM|Mech compl of other vascular grafts, sequela|Mech compl of other vascular grafts, sequela +C2889971|T037|PT|T82.398S|ICD10CM|Other mechanical complication of other vascular grafts, sequela|Other mechanical complication of other vascular grafts, sequela +C2889972|T037|AB|T82.399|ICD10CM|Other mechanical complication of unspecified vascular grafts|Other mechanical complication of unspecified vascular grafts +C2889972|T037|HT|T82.399|ICD10CM|Other mechanical complication of unspecified vascular grafts|Other mechanical complication of unspecified vascular grafts +C2889973|T037|AB|T82.399A|ICD10CM|Mech compl of unspecified vascular grafts, initial encounter|Mech compl of unspecified vascular grafts, initial encounter +C2889973|T037|PT|T82.399A|ICD10CM|Other mechanical complication of unspecified vascular grafts, initial encounter|Other mechanical complication of unspecified vascular grafts, initial encounter +C2889974|T037|AB|T82.399D|ICD10CM|Mech compl of unspecified vascular grafts, subs encntr|Mech compl of unspecified vascular grafts, subs encntr +C2889974|T037|PT|T82.399D|ICD10CM|Other mechanical complication of unspecified vascular grafts, subsequent encounter|Other mechanical complication of unspecified vascular grafts, subsequent encounter +C2889975|T037|AB|T82.399S|ICD10CM|Mech compl of unspecified vascular grafts, sequela|Mech compl of unspecified vascular grafts, sequela +C2889975|T037|PT|T82.399S|ICD10CM|Other mechanical complication of unspecified vascular grafts, sequela|Other mechanical complication of unspecified vascular grafts, sequela +C2889976|T046|ET|T82.4|ICD10CM|Mechanical complication of hemodialysis catheter|Mechanical complication of hemodialysis catheter +C0274335|T046|PT|T82.4|ICD10|Mechanical complication of vascular dialysis catheter|Mechanical complication of vascular dialysis catheter +C0274335|T046|HT|T82.4|ICD10CM|Mechanical complication of vascular dialysis catheter|Mechanical complication of vascular dialysis catheter +C0274335|T046|AB|T82.4|ICD10CM|Mechanical complication of vascular dialysis catheter|Mechanical complication of vascular dialysis catheter +C2889977|T037|AB|T82.41|ICD10CM|Breakdown (mechanical) of vascular dialysis catheter|Breakdown (mechanical) of vascular dialysis catheter +C2889977|T037|HT|T82.41|ICD10CM|Breakdown (mechanical) of vascular dialysis catheter|Breakdown (mechanical) of vascular dialysis catheter +C2889978|T037|AB|T82.41XA|ICD10CM|Breakdown (mechanical) of vascular dialysis catheter, init|Breakdown (mechanical) of vascular dialysis catheter, init +C2889978|T037|PT|T82.41XA|ICD10CM|Breakdown (mechanical) of vascular dialysis catheter, initial encounter|Breakdown (mechanical) of vascular dialysis catheter, initial encounter +C2889979|T037|AB|T82.41XD|ICD10CM|Breakdown (mechanical) of vascular dialysis catheter, subs|Breakdown (mechanical) of vascular dialysis catheter, subs +C2889979|T037|PT|T82.41XD|ICD10CM|Breakdown (mechanical) of vascular dialysis catheter, subsequent encounter|Breakdown (mechanical) of vascular dialysis catheter, subsequent encounter +C2889980|T037|PT|T82.41XS|ICD10CM|Breakdown (mechanical) of vascular dialysis catheter, sequela|Breakdown (mechanical) of vascular dialysis catheter, sequela +C2889980|T037|AB|T82.41XS|ICD10CM|Breakdown of vascular dialysis catheter, sequela|Breakdown of vascular dialysis catheter, sequela +C2889982|T037|AB|T82.42|ICD10CM|Displacement of vascular dialysis catheter|Displacement of vascular dialysis catheter +C2889982|T037|HT|T82.42|ICD10CM|Displacement of vascular dialysis catheter|Displacement of vascular dialysis catheter +C2889981|T037|ET|T82.42|ICD10CM|Malposition of vascular dialysis catheter|Malposition of vascular dialysis catheter +C2889983|T037|AB|T82.42XA|ICD10CM|Displacement of vascular dialysis catheter, init encntr|Displacement of vascular dialysis catheter, init encntr +C2889983|T037|PT|T82.42XA|ICD10CM|Displacement of vascular dialysis catheter, initial encounter|Displacement of vascular dialysis catheter, initial encounter +C2889984|T037|AB|T82.42XD|ICD10CM|Displacement of vascular dialysis catheter, subs encntr|Displacement of vascular dialysis catheter, subs encntr +C2889984|T037|PT|T82.42XD|ICD10CM|Displacement of vascular dialysis catheter, subsequent encounter|Displacement of vascular dialysis catheter, subsequent encounter +C2889985|T037|PT|T82.42XS|ICD10CM|Displacement of vascular dialysis catheter, sequela|Displacement of vascular dialysis catheter, sequela +C2889985|T037|AB|T82.42XS|ICD10CM|Displacement of vascular dialysis catheter, sequela|Displacement of vascular dialysis catheter, sequela +C2889986|T046|AB|T82.43|ICD10CM|Leakage of vascular dialysis catheter|Leakage of vascular dialysis catheter +C2889986|T046|HT|T82.43|ICD10CM|Leakage of vascular dialysis catheter|Leakage of vascular dialysis catheter +C2889987|T037|PT|T82.43XA|ICD10CM|Leakage of vascular dialysis catheter, initial encounter|Leakage of vascular dialysis catheter, initial encounter +C2889987|T037|AB|T82.43XA|ICD10CM|Leakage of vascular dialysis catheter, initial encounter|Leakage of vascular dialysis catheter, initial encounter +C2889988|T037|PT|T82.43XD|ICD10CM|Leakage of vascular dialysis catheter, subsequent encounter|Leakage of vascular dialysis catheter, subsequent encounter +C2889988|T037|AB|T82.43XD|ICD10CM|Leakage of vascular dialysis catheter, subsequent encounter|Leakage of vascular dialysis catheter, subsequent encounter +C2889989|T037|PT|T82.43XS|ICD10CM|Leakage of vascular dialysis catheter, sequela|Leakage of vascular dialysis catheter, sequela +C2889989|T037|AB|T82.43XS|ICD10CM|Leakage of vascular dialysis catheter, sequela|Leakage of vascular dialysis catheter, sequela +C2889990|T037|ET|T82.49|ICD10CM|Obstruction (mechanical) of vascular dialysis catheter|Obstruction (mechanical) of vascular dialysis catheter +C2889993|T037|AB|T82.49|ICD10CM|Other complication of vascular dialysis catheter|Other complication of vascular dialysis catheter +C2889993|T037|HT|T82.49|ICD10CM|Other complication of vascular dialysis catheter|Other complication of vascular dialysis catheter +C2889991|T037|ET|T82.49|ICD10CM|Perforation of vascular dialysis catheter|Perforation of vascular dialysis catheter +C2889992|T037|ET|T82.49|ICD10CM|Protrusion of vascular dialysis catheter|Protrusion of vascular dialysis catheter +C2889994|T037|AB|T82.49XA|ICD10CM|Oth complication of vascular dialysis catheter, init encntr|Oth complication of vascular dialysis catheter, init encntr +C2889994|T037|PT|T82.49XA|ICD10CM|Other complication of vascular dialysis catheter, initial encounter|Other complication of vascular dialysis catheter, initial encounter +C2889995|T037|AB|T82.49XD|ICD10CM|Oth complication of vascular dialysis catheter, subs encntr|Oth complication of vascular dialysis catheter, subs encntr +C2889995|T037|PT|T82.49XD|ICD10CM|Other complication of vascular dialysis catheter, subsequent encounter|Other complication of vascular dialysis catheter, subsequent encounter +C2889996|T037|AB|T82.49XS|ICD10CM|Other complication of vascular dialysis catheter, sequela|Other complication of vascular dialysis catheter, sequela +C2889996|T037|PT|T82.49XS|ICD10CM|Other complication of vascular dialysis catheter, sequela|Other complication of vascular dialysis catheter, sequela +C0478486|T046|AB|T82.5|ICD10CM|Mechanical comp of cardiac and vascular devices and implants|Mechanical comp of cardiac and vascular devices and implants +C0478486|T046|HT|T82.5|ICD10CM|Mechanical complication of other cardiac and vascular devices and implants|Mechanical complication of other cardiac and vascular devices and implants +C0478486|T046|PT|T82.5|ICD10|Mechanical complication of other cardiac and vascular devices and implants|Mechanical complication of other cardiac and vascular devices and implants +C2889997|T037|HT|T82.51|ICD10CM|Breakdown (mechanical) of other cardiac and vascular devices and implants|Breakdown (mechanical) of other cardiac and vascular devices and implants +C2889997|T037|AB|T82.51|ICD10CM|Breakdown of cardiac and vascular devices and implants|Breakdown of cardiac and vascular devices and implants +C2889998|T037|HT|T82.510|ICD10CM|Breakdown (mechanical) of surgically created arteriovenous fistula|Breakdown (mechanical) of surgically created arteriovenous fistula +C2889998|T037|AB|T82.510|ICD10CM|Breakdown (mechanical) of surgically created AV fistula|Breakdown (mechanical) of surgically created AV fistula +C2889999|T037|PT|T82.510A|ICD10CM|Breakdown (mechanical) of surgically created arteriovenous fistula, initial encounter|Breakdown (mechanical) of surgically created arteriovenous fistula, initial encounter +C2889999|T037|AB|T82.510A|ICD10CM|Breakdown of surgically created AV fistula, init|Breakdown of surgically created AV fistula, init +C2890000|T037|PT|T82.510D|ICD10CM|Breakdown (mechanical) of surgically created arteriovenous fistula, subsequent encounter|Breakdown (mechanical) of surgically created arteriovenous fistula, subsequent encounter +C2890000|T037|AB|T82.510D|ICD10CM|Breakdown of surgically created AV fistula, subs|Breakdown of surgically created AV fistula, subs +C2890001|T037|PT|T82.510S|ICD10CM|Breakdown (mechanical) of surgically created arteriovenous fistula, sequela|Breakdown (mechanical) of surgically created arteriovenous fistula, sequela +C2890001|T037|AB|T82.510S|ICD10CM|Breakdown of surgically created AV fistula, sequela|Breakdown of surgically created AV fistula, sequela +C2890002|T037|HT|T82.511|ICD10CM|Breakdown (mechanical) of surgically created arteriovenous shunt|Breakdown (mechanical) of surgically created arteriovenous shunt +C2890002|T037|AB|T82.511|ICD10CM|Breakdown (mechanical) of surgically created AV shunt|Breakdown (mechanical) of surgically created AV shunt +C2890003|T037|PT|T82.511A|ICD10CM|Breakdown (mechanical) of surgically created arteriovenous shunt, initial encounter|Breakdown (mechanical) of surgically created arteriovenous shunt, initial encounter +C2890003|T037|AB|T82.511A|ICD10CM|Breakdown (mechanical) of surgically created AV shunt, init|Breakdown (mechanical) of surgically created AV shunt, init +C2890004|T037|PT|T82.511D|ICD10CM|Breakdown (mechanical) of surgically created arteriovenous shunt, subsequent encounter|Breakdown (mechanical) of surgically created arteriovenous shunt, subsequent encounter +C2890004|T037|AB|T82.511D|ICD10CM|Breakdown (mechanical) of surgically created AV shunt, subs|Breakdown (mechanical) of surgically created AV shunt, subs +C2890005|T037|PT|T82.511S|ICD10CM|Breakdown (mechanical) of surgically created arteriovenous shunt, sequela|Breakdown (mechanical) of surgically created arteriovenous shunt, sequela +C2890005|T037|AB|T82.511S|ICD10CM|Breakdown of surgically created AV shunt, sequela|Breakdown of surgically created AV shunt, sequela +C2890006|T037|AB|T82.512|ICD10CM|Breakdown (mechanical) of artificial heart|Breakdown (mechanical) of artificial heart +C2890006|T037|HT|T82.512|ICD10CM|Breakdown (mechanical) of artificial heart|Breakdown (mechanical) of artificial heart +C2890007|T037|AB|T82.512A|ICD10CM|Breakdown (mechanical) of artificial heart, init encntr|Breakdown (mechanical) of artificial heart, init encntr +C2890007|T037|PT|T82.512A|ICD10CM|Breakdown (mechanical) of artificial heart, initial encounter|Breakdown (mechanical) of artificial heart, initial encounter +C2890008|T037|AB|T82.512D|ICD10CM|Breakdown (mechanical) of artificial heart, subs encntr|Breakdown (mechanical) of artificial heart, subs encntr +C2890008|T037|PT|T82.512D|ICD10CM|Breakdown (mechanical) of artificial heart, subsequent encounter|Breakdown (mechanical) of artificial heart, subsequent encounter +C2890009|T037|AB|T82.512S|ICD10CM|Breakdown (mechanical) of artificial heart, sequela|Breakdown (mechanical) of artificial heart, sequela +C2890009|T037|PT|T82.512S|ICD10CM|Breakdown (mechanical) of artificial heart, sequela|Breakdown (mechanical) of artificial heart, sequela +C2890010|T037|AB|T82.513|ICD10CM|Breakdown (mechanical) of balloon (counterpulsation) device|Breakdown (mechanical) of balloon (counterpulsation) device +C2890010|T037|HT|T82.513|ICD10CM|Breakdown (mechanical) of balloon (counterpulsation) device|Breakdown (mechanical) of balloon (counterpulsation) device +C2890011|T037|PT|T82.513A|ICD10CM|Breakdown (mechanical) of balloon (counterpulsation) device, initial encounter|Breakdown (mechanical) of balloon (counterpulsation) device, initial encounter +C2890011|T037|AB|T82.513A|ICD10CM|Breakdown of balloon (counterpulsation) device, init|Breakdown of balloon (counterpulsation) device, init +C2890012|T037|PT|T82.513D|ICD10CM|Breakdown (mechanical) of balloon (counterpulsation) device, subsequent encounter|Breakdown (mechanical) of balloon (counterpulsation) device, subsequent encounter +C2890012|T037|AB|T82.513D|ICD10CM|Breakdown of balloon (counterpulsation) device, subs|Breakdown of balloon (counterpulsation) device, subs +C2890013|T037|PT|T82.513S|ICD10CM|Breakdown (mechanical) of balloon (counterpulsation) device, sequela|Breakdown (mechanical) of balloon (counterpulsation) device, sequela +C2890013|T037|AB|T82.513S|ICD10CM|Breakdown of balloon (counterpulsation) device, sequela|Breakdown of balloon (counterpulsation) device, sequela +C2890014|T037|AB|T82.514|ICD10CM|Breakdown (mechanical) of infusion catheter|Breakdown (mechanical) of infusion catheter +C2890014|T037|HT|T82.514|ICD10CM|Breakdown (mechanical) of infusion catheter|Breakdown (mechanical) of infusion catheter +C2890015|T037|AB|T82.514A|ICD10CM|Breakdown (mechanical) of infusion catheter, init encntr|Breakdown (mechanical) of infusion catheter, init encntr +C2890015|T037|PT|T82.514A|ICD10CM|Breakdown (mechanical) of infusion catheter, initial encounter|Breakdown (mechanical) of infusion catheter, initial encounter +C2890016|T037|AB|T82.514D|ICD10CM|Breakdown (mechanical) of infusion catheter, subs encntr|Breakdown (mechanical) of infusion catheter, subs encntr +C2890016|T037|PT|T82.514D|ICD10CM|Breakdown (mechanical) of infusion catheter, subsequent encounter|Breakdown (mechanical) of infusion catheter, subsequent encounter +C2890017|T037|AB|T82.514S|ICD10CM|Breakdown (mechanical) of infusion catheter, sequela|Breakdown (mechanical) of infusion catheter, sequela +C2890017|T037|PT|T82.514S|ICD10CM|Breakdown (mechanical) of infusion catheter, sequela|Breakdown (mechanical) of infusion catheter, sequela +C2890018|T037|AB|T82.515|ICD10CM|Breakdown (mechanical) of umbrella device|Breakdown (mechanical) of umbrella device +C2890018|T037|HT|T82.515|ICD10CM|Breakdown (mechanical) of umbrella device|Breakdown (mechanical) of umbrella device +C2890019|T037|AB|T82.515A|ICD10CM|Breakdown (mechanical) of umbrella device, initial encounter|Breakdown (mechanical) of umbrella device, initial encounter +C2890019|T037|PT|T82.515A|ICD10CM|Breakdown (mechanical) of umbrella device, initial encounter|Breakdown (mechanical) of umbrella device, initial encounter +C2890020|T037|AB|T82.515D|ICD10CM|Breakdown (mechanical) of umbrella device, subs encntr|Breakdown (mechanical) of umbrella device, subs encntr +C2890020|T037|PT|T82.515D|ICD10CM|Breakdown (mechanical) of umbrella device, subsequent encounter|Breakdown (mechanical) of umbrella device, subsequent encounter +C2890021|T037|AB|T82.515S|ICD10CM|Breakdown (mechanical) of umbrella device, sequela|Breakdown (mechanical) of umbrella device, sequela +C2890021|T037|PT|T82.515S|ICD10CM|Breakdown (mechanical) of umbrella device, sequela|Breakdown (mechanical) of umbrella device, sequela +C2889997|T037|HT|T82.518|ICD10CM|Breakdown (mechanical) of other cardiac and vascular devices and implants|Breakdown (mechanical) of other cardiac and vascular devices and implants +C2889997|T037|AB|T82.518|ICD10CM|Breakdown of cardiac and vascular devices and implants|Breakdown of cardiac and vascular devices and implants +C2890022|T037|PT|T82.518A|ICD10CM|Breakdown (mechanical) of other cardiac and vascular devices and implants, initial encounter|Breakdown (mechanical) of other cardiac and vascular devices and implants, initial encounter +C2890022|T037|AB|T82.518A|ICD10CM|Breakdown of cardiac and vascular devices and implants, init|Breakdown of cardiac and vascular devices and implants, init +C2890023|T037|PT|T82.518D|ICD10CM|Breakdown (mechanical) of other cardiac and vascular devices and implants, subsequent encounter|Breakdown (mechanical) of other cardiac and vascular devices and implants, subsequent encounter +C2890023|T037|AB|T82.518D|ICD10CM|Breakdown of cardiac and vascular devices and implants, subs|Breakdown of cardiac and vascular devices and implants, subs +C2890024|T037|PT|T82.518S|ICD10CM|Breakdown (mechanical) of other cardiac and vascular devices and implants, sequela|Breakdown (mechanical) of other cardiac and vascular devices and implants, sequela +C2890024|T037|AB|T82.518S|ICD10CM|Brkdwn cardiac and vascular devices and implants, sequela|Brkdwn cardiac and vascular devices and implants, sequela +C2890025|T037|HT|T82.519|ICD10CM|Breakdown (mechanical) of unspecified cardiac and vascular devices and implants|Breakdown (mechanical) of unspecified cardiac and vascular devices and implants +C2890025|T037|AB|T82.519|ICD10CM|Breakdown of unsp cardiac and vascular devices and implants|Breakdown of unsp cardiac and vascular devices and implants +C2890026|T037|PT|T82.519A|ICD10CM|Breakdown (mechanical) of unspecified cardiac and vascular devices and implants, initial encounter|Breakdown (mechanical) of unspecified cardiac and vascular devices and implants, initial encounter +C2890026|T037|AB|T82.519A|ICD10CM|Brkdwn unsp cardiac and vascular devices and implants, init|Brkdwn unsp cardiac and vascular devices and implants, init +C2890027|T037|AB|T82.519D|ICD10CM|Brkdwn unsp cardiac and vascular devices and implants, subs|Brkdwn unsp cardiac and vascular devices and implants, subs +C2890028|T037|PT|T82.519S|ICD10CM|Breakdown (mechanical) of unspecified cardiac and vascular devices and implants, sequela|Breakdown (mechanical) of unspecified cardiac and vascular devices and implants, sequela +C2890028|T037|AB|T82.519S|ICD10CM|Brkdwn unsp cardiac and vascular devices and implnt, sequela|Brkdwn unsp cardiac and vascular devices and implnt, sequela +C2890030|T037|AB|T82.52|ICD10CM|Displacement of cardiac and vascular devices and implants|Displacement of cardiac and vascular devices and implants +C2890030|T037|HT|T82.52|ICD10CM|Displacement of other cardiac and vascular devices and implants|Displacement of other cardiac and vascular devices and implants +C2890029|T037|ET|T82.52|ICD10CM|Malposition of other cardiac and vascular devices and implants|Malposition of other cardiac and vascular devices and implants +C2890031|T037|AB|T82.520|ICD10CM|Displacement of surgically created arteriovenous fistula|Displacement of surgically created arteriovenous fistula +C2890031|T037|HT|T82.520|ICD10CM|Displacement of surgically created arteriovenous fistula|Displacement of surgically created arteriovenous fistula +C2890032|T037|PT|T82.520A|ICD10CM|Displacement of surgically created arteriovenous fistula, initial encounter|Displacement of surgically created arteriovenous fistula, initial encounter +C2890032|T037|AB|T82.520A|ICD10CM|Displacement of surgically created AV fistula, init|Displacement of surgically created AV fistula, init +C2890033|T037|PT|T82.520D|ICD10CM|Displacement of surgically created arteriovenous fistula, subsequent encounter|Displacement of surgically created arteriovenous fistula, subsequent encounter +C2890033|T037|AB|T82.520D|ICD10CM|Displacement of surgically created AV fistula, subs|Displacement of surgically created AV fistula, subs +C2890034|T037|PT|T82.520S|ICD10CM|Displacement of surgically created arteriovenous fistula, sequela|Displacement of surgically created arteriovenous fistula, sequela +C2890034|T037|AB|T82.520S|ICD10CM|Displacement of surgically created AV fistula, sequela|Displacement of surgically created AV fistula, sequela +C2890035|T037|AB|T82.521|ICD10CM|Displacement of surgically created arteriovenous shunt|Displacement of surgically created arteriovenous shunt +C2890035|T037|HT|T82.521|ICD10CM|Displacement of surgically created arteriovenous shunt|Displacement of surgically created arteriovenous shunt +C2890036|T037|AB|T82.521A|ICD10CM|Displacement of surgically created arteriovenous shunt, init|Displacement of surgically created arteriovenous shunt, init +C2890036|T037|PT|T82.521A|ICD10CM|Displacement of surgically created arteriovenous shunt, initial encounter|Displacement of surgically created arteriovenous shunt, initial encounter +C2890037|T037|AB|T82.521D|ICD10CM|Displacement of surgically created arteriovenous shunt, subs|Displacement of surgically created arteriovenous shunt, subs +C2890037|T037|PT|T82.521D|ICD10CM|Displacement of surgically created arteriovenous shunt, subsequent encounter|Displacement of surgically created arteriovenous shunt, subsequent encounter +C2890038|T037|PT|T82.521S|ICD10CM|Displacement of surgically created arteriovenous shunt, sequela|Displacement of surgically created arteriovenous shunt, sequela +C2890038|T037|AB|T82.521S|ICD10CM|Displacement of surgically created AV shunt, sequela|Displacement of surgically created AV shunt, sequela +C2890039|T037|AB|T82.522|ICD10CM|Displacement of artificial heart|Displacement of artificial heart +C2890039|T037|HT|T82.522|ICD10CM|Displacement of artificial heart|Displacement of artificial heart +C2890040|T037|PT|T82.522A|ICD10CM|Displacement of artificial heart, initial encounter|Displacement of artificial heart, initial encounter +C2890040|T037|AB|T82.522A|ICD10CM|Displacement of artificial heart, initial encounter|Displacement of artificial heart, initial encounter +C2890041|T037|PT|T82.522D|ICD10CM|Displacement of artificial heart, subsequent encounter|Displacement of artificial heart, subsequent encounter +C2890041|T037|AB|T82.522D|ICD10CM|Displacement of artificial heart, subsequent encounter|Displacement of artificial heart, subsequent encounter +C2890042|T037|PT|T82.522S|ICD10CM|Displacement of artificial heart, sequela|Displacement of artificial heart, sequela +C2890042|T037|AB|T82.522S|ICD10CM|Displacement of artificial heart, sequela|Displacement of artificial heart, sequela +C2890043|T037|AB|T82.523|ICD10CM|Displacement of balloon (counterpulsation) device|Displacement of balloon (counterpulsation) device +C2890043|T037|HT|T82.523|ICD10CM|Displacement of balloon (counterpulsation) device|Displacement of balloon (counterpulsation) device +C2890044|T037|AB|T82.523A|ICD10CM|Displacement of balloon (counterpulsation) device, init|Displacement of balloon (counterpulsation) device, init +C2890044|T037|PT|T82.523A|ICD10CM|Displacement of balloon (counterpulsation) device, initial encounter|Displacement of balloon (counterpulsation) device, initial encounter +C2890045|T037|AB|T82.523D|ICD10CM|Displacement of balloon (counterpulsation) device, subs|Displacement of balloon (counterpulsation) device, subs +C2890045|T037|PT|T82.523D|ICD10CM|Displacement of balloon (counterpulsation) device, subsequent encounter|Displacement of balloon (counterpulsation) device, subsequent encounter +C2890046|T037|PT|T82.523S|ICD10CM|Displacement of balloon (counterpulsation) device, sequela|Displacement of balloon (counterpulsation) device, sequela +C2890046|T037|AB|T82.523S|ICD10CM|Displacement of balloon (counterpulsation) device, sequela|Displacement of balloon (counterpulsation) device, sequela +C2890047|T037|AB|T82.524|ICD10CM|Displacement of infusion catheter|Displacement of infusion catheter +C2890047|T037|HT|T82.524|ICD10CM|Displacement of infusion catheter|Displacement of infusion catheter +C2890048|T037|PT|T82.524A|ICD10CM|Displacement of infusion catheter, initial encounter|Displacement of infusion catheter, initial encounter +C2890048|T037|AB|T82.524A|ICD10CM|Displacement of infusion catheter, initial encounter|Displacement of infusion catheter, initial encounter +C2890049|T037|PT|T82.524D|ICD10CM|Displacement of infusion catheter, subsequent encounter|Displacement of infusion catheter, subsequent encounter +C2890049|T037|AB|T82.524D|ICD10CM|Displacement of infusion catheter, subsequent encounter|Displacement of infusion catheter, subsequent encounter +C2890050|T037|PT|T82.524S|ICD10CM|Displacement of infusion catheter, sequela|Displacement of infusion catheter, sequela +C2890050|T037|AB|T82.524S|ICD10CM|Displacement of infusion catheter, sequela|Displacement of infusion catheter, sequela +C2890051|T037|AB|T82.525|ICD10CM|Displacement of umbrella device|Displacement of umbrella device +C2890051|T037|HT|T82.525|ICD10CM|Displacement of umbrella device|Displacement of umbrella device +C2890052|T037|PT|T82.525A|ICD10CM|Displacement of umbrella device, initial encounter|Displacement of umbrella device, initial encounter +C2890052|T037|AB|T82.525A|ICD10CM|Displacement of umbrella device, initial encounter|Displacement of umbrella device, initial encounter +C2890053|T037|PT|T82.525D|ICD10CM|Displacement of umbrella device, subsequent encounter|Displacement of umbrella device, subsequent encounter +C2890053|T037|AB|T82.525D|ICD10CM|Displacement of umbrella device, subsequent encounter|Displacement of umbrella device, subsequent encounter +C2890054|T037|PT|T82.525S|ICD10CM|Displacement of umbrella device, sequela|Displacement of umbrella device, sequela +C2890054|T037|AB|T82.525S|ICD10CM|Displacement of umbrella device, sequela|Displacement of umbrella device, sequela +C2890030|T037|AB|T82.528|ICD10CM|Displacement of cardiac and vascular devices and implants|Displacement of cardiac and vascular devices and implants +C2890030|T037|HT|T82.528|ICD10CM|Displacement of other cardiac and vascular devices and implants|Displacement of other cardiac and vascular devices and implants +C2890055|T037|PT|T82.528A|ICD10CM|Displacement of other cardiac and vascular devices and implants, initial encounter|Displacement of other cardiac and vascular devices and implants, initial encounter +C2890055|T037|AB|T82.528A|ICD10CM|Displacmnt of cardiac and vascular devices and implnt, init|Displacmnt of cardiac and vascular devices and implnt, init +C2890056|T037|PT|T82.528D|ICD10CM|Displacement of other cardiac and vascular devices and implants, subsequent encounter|Displacement of other cardiac and vascular devices and implants, subsequent encounter +C2890056|T037|AB|T82.528D|ICD10CM|Displacmnt of cardiac and vascular devices and implnt, subs|Displacmnt of cardiac and vascular devices and implnt, subs +C2890057|T037|PT|T82.528S|ICD10CM|Displacement of other cardiac and vascular devices and implants, sequela|Displacement of other cardiac and vascular devices and implants, sequela +C2890057|T037|AB|T82.528S|ICD10CM|Displacmnt of cardiac and vasc devices and implnt, sequela|Displacmnt of cardiac and vasc devices and implnt, sequela +C2890058|T037|HT|T82.529|ICD10CM|Displacement of unspecified cardiac and vascular devices and implants|Displacement of unspecified cardiac and vascular devices and implants +C2890058|T037|AB|T82.529|ICD10CM|Displacmnt of unsp cardiac and vascular devices and implants|Displacmnt of unsp cardiac and vascular devices and implants +C2890059|T037|PT|T82.529A|ICD10CM|Displacement of unspecified cardiac and vascular devices and implants, initial encounter|Displacement of unspecified cardiac and vascular devices and implants, initial encounter +C2890059|T037|AB|T82.529A|ICD10CM|Displacmnt of unsp cardiac and vasc devices and implnt, init|Displacmnt of unsp cardiac and vasc devices and implnt, init +C2890060|T037|PT|T82.529D|ICD10CM|Displacement of unspecified cardiac and vascular devices and implants, subsequent encounter|Displacement of unspecified cardiac and vascular devices and implants, subsequent encounter +C2890060|T037|AB|T82.529D|ICD10CM|Displacmnt of unsp cardiac and vasc devices and implnt, subs|Displacmnt of unsp cardiac and vasc devices and implnt, subs +C2890061|T037|PT|T82.529S|ICD10CM|Displacement of unspecified cardiac and vascular devices and implants, sequela|Displacement of unspecified cardiac and vascular devices and implants, sequela +C2890061|T037|AB|T82.529S|ICD10CM|Displacmnt of unsp card and vasc devices and implnt, sequela|Displacmnt of unsp card and vasc devices and implnt, sequela +C2890062|T037|HT|T82.53|ICD10CM|Leakage of other cardiac and vascular devices and implants|Leakage of other cardiac and vascular devices and implants +C2890062|T037|AB|T82.53|ICD10CM|Leakage of other cardiac and vascular devices and implants|Leakage of other cardiac and vascular devices and implants +C2890063|T037|AB|T82.530|ICD10CM|Leakage of surgically created arteriovenous fistula|Leakage of surgically created arteriovenous fistula +C2890063|T037|HT|T82.530|ICD10CM|Leakage of surgically created arteriovenous fistula|Leakage of surgically created arteriovenous fistula +C2890064|T037|AB|T82.530A|ICD10CM|Leakage of surgically created arteriovenous fistula, init|Leakage of surgically created arteriovenous fistula, init +C2890064|T037|PT|T82.530A|ICD10CM|Leakage of surgically created arteriovenous fistula, initial encounter|Leakage of surgically created arteriovenous fistula, initial encounter +C2890065|T037|AB|T82.530D|ICD10CM|Leakage of surgically created arteriovenous fistula, subs|Leakage of surgically created arteriovenous fistula, subs +C2890065|T037|PT|T82.530D|ICD10CM|Leakage of surgically created arteriovenous fistula, subsequent encounter|Leakage of surgically created arteriovenous fistula, subsequent encounter +C2890066|T037|AB|T82.530S|ICD10CM|Leakage of surgically created arteriovenous fistula, sequela|Leakage of surgically created arteriovenous fistula, sequela +C2890066|T037|PT|T82.530S|ICD10CM|Leakage of surgically created arteriovenous fistula, sequela|Leakage of surgically created arteriovenous fistula, sequela +C2890067|T037|AB|T82.531|ICD10CM|Leakage of surgically created arteriovenous shunt|Leakage of surgically created arteriovenous shunt +C2890067|T037|HT|T82.531|ICD10CM|Leakage of surgically created arteriovenous shunt|Leakage of surgically created arteriovenous shunt +C2890068|T037|AB|T82.531A|ICD10CM|Leakage of surgically created arteriovenous shunt, init|Leakage of surgically created arteriovenous shunt, init +C2890068|T037|PT|T82.531A|ICD10CM|Leakage of surgically created arteriovenous shunt, initial encounter|Leakage of surgically created arteriovenous shunt, initial encounter +C2890069|T037|AB|T82.531D|ICD10CM|Leakage of surgically created arteriovenous shunt, subs|Leakage of surgically created arteriovenous shunt, subs +C2890069|T037|PT|T82.531D|ICD10CM|Leakage of surgically created arteriovenous shunt, subsequent encounter|Leakage of surgically created arteriovenous shunt, subsequent encounter +C2890070|T037|PT|T82.531S|ICD10CM|Leakage of surgically created arteriovenous shunt, sequela|Leakage of surgically created arteriovenous shunt, sequela +C2890070|T037|AB|T82.531S|ICD10CM|Leakage of surgically created arteriovenous shunt, sequela|Leakage of surgically created arteriovenous shunt, sequela +C2890071|T037|AB|T82.532|ICD10CM|Leakage of artificial heart|Leakage of artificial heart +C2890071|T037|HT|T82.532|ICD10CM|Leakage of artificial heart|Leakage of artificial heart +C2890072|T037|PT|T82.532A|ICD10CM|Leakage of artificial heart, initial encounter|Leakage of artificial heart, initial encounter +C2890072|T037|AB|T82.532A|ICD10CM|Leakage of artificial heart, initial encounter|Leakage of artificial heart, initial encounter +C2890073|T037|PT|T82.532D|ICD10CM|Leakage of artificial heart, subsequent encounter|Leakage of artificial heart, subsequent encounter +C2890073|T037|AB|T82.532D|ICD10CM|Leakage of artificial heart, subsequent encounter|Leakage of artificial heart, subsequent encounter +C2890074|T037|PT|T82.532S|ICD10CM|Leakage of artificial heart, sequela|Leakage of artificial heart, sequela +C2890074|T037|AB|T82.532S|ICD10CM|Leakage of artificial heart, sequela|Leakage of artificial heart, sequela +C2890075|T037|AB|T82.533|ICD10CM|Leakage of balloon (counterpulsation) device|Leakage of balloon (counterpulsation) device +C2890075|T037|HT|T82.533|ICD10CM|Leakage of balloon (counterpulsation) device|Leakage of balloon (counterpulsation) device +C2890076|T037|AB|T82.533A|ICD10CM|Leakage of balloon (counterpulsation) device, init encntr|Leakage of balloon (counterpulsation) device, init encntr +C2890076|T037|PT|T82.533A|ICD10CM|Leakage of balloon (counterpulsation) device, initial encounter|Leakage of balloon (counterpulsation) device, initial encounter +C2890077|T037|AB|T82.533D|ICD10CM|Leakage of balloon (counterpulsation) device, subs encntr|Leakage of balloon (counterpulsation) device, subs encntr +C2890077|T037|PT|T82.533D|ICD10CM|Leakage of balloon (counterpulsation) device, subsequent encounter|Leakage of balloon (counterpulsation) device, subsequent encounter +C2890078|T037|PT|T82.533S|ICD10CM|Leakage of balloon (counterpulsation) device, sequela|Leakage of balloon (counterpulsation) device, sequela +C2890078|T037|AB|T82.533S|ICD10CM|Leakage of balloon (counterpulsation) device, sequela|Leakage of balloon (counterpulsation) device, sequela +C3647633|T046|HT|T82.534|ICD10CM|Leakage of infusion catheter|Leakage of infusion catheter +C3647633|T046|AB|T82.534|ICD10CM|Leakage of infusion catheter|Leakage of infusion catheter +C2890080|T037|PT|T82.534A|ICD10CM|Leakage of infusion catheter, initial encounter|Leakage of infusion catheter, initial encounter +C2890080|T037|AB|T82.534A|ICD10CM|Leakage of infusion catheter, initial encounter|Leakage of infusion catheter, initial encounter +C2890081|T037|PT|T82.534D|ICD10CM|Leakage of infusion catheter, subsequent encounter|Leakage of infusion catheter, subsequent encounter +C2890081|T037|AB|T82.534D|ICD10CM|Leakage of infusion catheter, subsequent encounter|Leakage of infusion catheter, subsequent encounter +C2890082|T037|PT|T82.534S|ICD10CM|Leakage of infusion catheter, sequela|Leakage of infusion catheter, sequela +C2890082|T037|AB|T82.534S|ICD10CM|Leakage of infusion catheter, sequela|Leakage of infusion catheter, sequela +C2890083|T037|AB|T82.535|ICD10CM|Leakage of umbrella device|Leakage of umbrella device +C2890083|T037|HT|T82.535|ICD10CM|Leakage of umbrella device|Leakage of umbrella device +C2890084|T037|PT|T82.535A|ICD10CM|Leakage of umbrella device, initial encounter|Leakage of umbrella device, initial encounter +C2890084|T037|AB|T82.535A|ICD10CM|Leakage of umbrella device, initial encounter|Leakage of umbrella device, initial encounter +C2890085|T037|PT|T82.535D|ICD10CM|Leakage of umbrella device, subsequent encounter|Leakage of umbrella device, subsequent encounter +C2890085|T037|AB|T82.535D|ICD10CM|Leakage of umbrella device, subsequent encounter|Leakage of umbrella device, subsequent encounter +C2890086|T037|PT|T82.535S|ICD10CM|Leakage of umbrella device, sequela|Leakage of umbrella device, sequela +C2890086|T037|AB|T82.535S|ICD10CM|Leakage of umbrella device, sequela|Leakage of umbrella device, sequela +C2890062|T037|AB|T82.538|ICD10CM|Leakage of other cardiac and vascular devices and implants|Leakage of other cardiac and vascular devices and implants +C2890062|T037|HT|T82.538|ICD10CM|Leakage of other cardiac and vascular devices and implants|Leakage of other cardiac and vascular devices and implants +C2890087|T037|AB|T82.538A|ICD10CM|Leakage of cardiac and vascular devices and implants, init|Leakage of cardiac and vascular devices and implants, init +C2890087|T037|PT|T82.538A|ICD10CM|Leakage of other cardiac and vascular devices and implants, initial encounter|Leakage of other cardiac and vascular devices and implants, initial encounter +C2890088|T037|AB|T82.538D|ICD10CM|Leakage of cardiac and vascular devices and implants, subs|Leakage of cardiac and vascular devices and implants, subs +C2890088|T037|PT|T82.538D|ICD10CM|Leakage of other cardiac and vascular devices and implants, subsequent encounter|Leakage of other cardiac and vascular devices and implants, subsequent encounter +C2890089|T037|AB|T82.538S|ICD10CM|Leakage of cardiac and vascular devices and implnt, sequela|Leakage of cardiac and vascular devices and implnt, sequela +C2890089|T037|PT|T82.538S|ICD10CM|Leakage of other cardiac and vascular devices and implants, sequela|Leakage of other cardiac and vascular devices and implants, sequela +C2890090|T037|AB|T82.539|ICD10CM|Leakage of unsp cardiac and vascular devices and implants|Leakage of unsp cardiac and vascular devices and implants +C2890090|T037|HT|T82.539|ICD10CM|Leakage of unspecified cardiac and vascular devices and implants|Leakage of unspecified cardiac and vascular devices and implants +C2890091|T037|AB|T82.539A|ICD10CM|Leakage of unsp cardiac and vasc devices and implnt, init|Leakage of unsp cardiac and vasc devices and implnt, init +C2890091|T037|PT|T82.539A|ICD10CM|Leakage of unspecified cardiac and vascular devices and implants, initial encounter|Leakage of unspecified cardiac and vascular devices and implants, initial encounter +C2890092|T037|AB|T82.539D|ICD10CM|Leakage of unsp cardiac and vasc devices and implnt, subs|Leakage of unsp cardiac and vasc devices and implnt, subs +C2890092|T037|PT|T82.539D|ICD10CM|Leakage of unspecified cardiac and vascular devices and implants, subsequent encounter|Leakage of unspecified cardiac and vascular devices and implants, subsequent encounter +C2890093|T037|AB|T82.539S|ICD10CM|Leakage of unsp cardiac and vasc devices and implnt, sequela|Leakage of unsp cardiac and vasc devices and implnt, sequela +C2890093|T037|PT|T82.539S|ICD10CM|Leakage of unspecified cardiac and vascular devices and implants, sequela|Leakage of unspecified cardiac and vascular devices and implants, sequela +C2890097|T037|AB|T82.59|ICD10CM|Mech compl of oth cardiac and vascular devices and implants|Mech compl of oth cardiac and vascular devices and implants +C2890094|T037|ET|T82.59|ICD10CM|Obstruction (mechanical) of other cardiac and vascular devices and implants|Obstruction (mechanical) of other cardiac and vascular devices and implants +C2890097|T037|HT|T82.59|ICD10CM|Other mechanical complication of other cardiac and vascular devices and implants|Other mechanical complication of other cardiac and vascular devices and implants +C2890095|T037|ET|T82.59|ICD10CM|Perforation of other cardiac and vascular devices and implants|Perforation of other cardiac and vascular devices and implants +C2890096|T037|ET|T82.59|ICD10CM|Protrusion of other cardiac and vascular devices and implants|Protrusion of other cardiac and vascular devices and implants +C2890098|T037|AB|T82.590|ICD10CM|Mech compl of surgically created arteriovenous fistula|Mech compl of surgically created arteriovenous fistula +C2890098|T037|HT|T82.590|ICD10CM|Other mechanical complication of surgically created arteriovenous fistula|Other mechanical complication of surgically created arteriovenous fistula +C2890099|T037|AB|T82.590A|ICD10CM|Mech compl of surgically created arteriovenous fistula, init|Mech compl of surgically created arteriovenous fistula, init +C2890099|T037|PT|T82.590A|ICD10CM|Other mechanical complication of surgically created arteriovenous fistula, initial encounter|Other mechanical complication of surgically created arteriovenous fistula, initial encounter +C2890100|T037|AB|T82.590D|ICD10CM|Mech compl of surgically created arteriovenous fistula, subs|Mech compl of surgically created arteriovenous fistula, subs +C2890100|T037|PT|T82.590D|ICD10CM|Other mechanical complication of surgically created arteriovenous fistula, subsequent encounter|Other mechanical complication of surgically created arteriovenous fistula, subsequent encounter +C2890101|T037|AB|T82.590S|ICD10CM|Mech compl of surgically created AV fistula, sequela|Mech compl of surgically created AV fistula, sequela +C2890101|T037|PT|T82.590S|ICD10CM|Other mechanical complication of surgically created arteriovenous fistula, sequela|Other mechanical complication of surgically created arteriovenous fistula, sequela +C2890102|T037|AB|T82.591|ICD10CM|Mech compl of surgically created arteriovenous shunt|Mech compl of surgically created arteriovenous shunt +C2890102|T037|HT|T82.591|ICD10CM|Other mechanical complication of surgically created arteriovenous shunt|Other mechanical complication of surgically created arteriovenous shunt +C2890103|T037|AB|T82.591A|ICD10CM|Mech compl of surgically created arteriovenous shunt, init|Mech compl of surgically created arteriovenous shunt, init +C2890103|T037|PT|T82.591A|ICD10CM|Other mechanical complication of surgically created arteriovenous shunt, initial encounter|Other mechanical complication of surgically created arteriovenous shunt, initial encounter +C2890104|T037|AB|T82.591D|ICD10CM|Mech compl of surgically created arteriovenous shunt, subs|Mech compl of surgically created arteriovenous shunt, subs +C2890104|T037|PT|T82.591D|ICD10CM|Other mechanical complication of surgically created arteriovenous shunt, subsequent encounter|Other mechanical complication of surgically created arteriovenous shunt, subsequent encounter +C2890105|T037|AB|T82.591S|ICD10CM|Mech compl of surgically created AV shunt, sequela|Mech compl of surgically created AV shunt, sequela +C2890105|T037|PT|T82.591S|ICD10CM|Other mechanical complication of surgically created arteriovenous shunt, sequela|Other mechanical complication of surgically created arteriovenous shunt, sequela +C2890106|T037|AB|T82.592|ICD10CM|Other mechanical complication of artificial heart|Other mechanical complication of artificial heart +C2890106|T037|HT|T82.592|ICD10CM|Other mechanical complication of artificial heart|Other mechanical complication of artificial heart +C2890107|T037|AB|T82.592A|ICD10CM|Mech compl of artificial heart, initial encounter|Mech compl of artificial heart, initial encounter +C2890107|T037|PT|T82.592A|ICD10CM|Other mechanical complication of artificial heart, initial encounter|Other mechanical complication of artificial heart, initial encounter +C2890108|T037|AB|T82.592D|ICD10CM|Mech compl of artificial heart, subsequent encounter|Mech compl of artificial heart, subsequent encounter +C2890108|T037|PT|T82.592D|ICD10CM|Other mechanical complication of artificial heart, subsequent encounter|Other mechanical complication of artificial heart, subsequent encounter +C2890109|T037|AB|T82.592S|ICD10CM|Other mechanical complication of artificial heart, sequela|Other mechanical complication of artificial heart, sequela +C2890109|T037|PT|T82.592S|ICD10CM|Other mechanical complication of artificial heart, sequela|Other mechanical complication of artificial heart, sequela +C2890110|T037|AB|T82.593|ICD10CM|Mech compl of balloon (counterpulsation) device|Mech compl of balloon (counterpulsation) device +C2890110|T037|HT|T82.593|ICD10CM|Other mechanical complication of balloon (counterpulsation) device|Other mechanical complication of balloon (counterpulsation) device +C2890111|T037|AB|T82.593A|ICD10CM|Mech compl of balloon (counterpulsation) device, init encntr|Mech compl of balloon (counterpulsation) device, init encntr +C2890111|T037|PT|T82.593A|ICD10CM|Other mechanical complication of balloon (counterpulsation) device, initial encounter|Other mechanical complication of balloon (counterpulsation) device, initial encounter +C2890112|T037|AB|T82.593D|ICD10CM|Mech compl of balloon (counterpulsation) device, subs encntr|Mech compl of balloon (counterpulsation) device, subs encntr +C2890112|T037|PT|T82.593D|ICD10CM|Other mechanical complication of balloon (counterpulsation) device, subsequent encounter|Other mechanical complication of balloon (counterpulsation) device, subsequent encounter +C2890113|T037|AB|T82.593S|ICD10CM|Mech compl of balloon (counterpulsation) device, sequela|Mech compl of balloon (counterpulsation) device, sequela +C2890113|T037|PT|T82.593S|ICD10CM|Other mechanical complication of balloon (counterpulsation) device, sequela|Other mechanical complication of balloon (counterpulsation) device, sequela +C2890114|T037|AB|T82.594|ICD10CM|Other mechanical complication of infusion catheter|Other mechanical complication of infusion catheter +C2890114|T037|HT|T82.594|ICD10CM|Other mechanical complication of infusion catheter|Other mechanical complication of infusion catheter +C2890115|T037|AB|T82.594A|ICD10CM|Mech compl of infusion catheter, initial encounter|Mech compl of infusion catheter, initial encounter +C2890115|T037|PT|T82.594A|ICD10CM|Other mechanical complication of infusion catheter, initial encounter|Other mechanical complication of infusion catheter, initial encounter +C2890116|T037|AB|T82.594D|ICD10CM|Mech compl of infusion catheter, subsequent encounter|Mech compl of infusion catheter, subsequent encounter +C2890116|T037|PT|T82.594D|ICD10CM|Other mechanical complication of infusion catheter, subsequent encounter|Other mechanical complication of infusion catheter, subsequent encounter +C2890117|T037|AB|T82.594S|ICD10CM|Other mechanical complication of infusion catheter, sequela|Other mechanical complication of infusion catheter, sequela +C2890117|T037|PT|T82.594S|ICD10CM|Other mechanical complication of infusion catheter, sequela|Other mechanical complication of infusion catheter, sequela +C2890118|T037|AB|T82.595|ICD10CM|Other mechanical complication of umbrella device|Other mechanical complication of umbrella device +C2890118|T037|HT|T82.595|ICD10CM|Other mechanical complication of umbrella device|Other mechanical complication of umbrella device +C2890119|T037|AB|T82.595A|ICD10CM|Mech compl of umbrella device, initial encounter|Mech compl of umbrella device, initial encounter +C2890119|T037|PT|T82.595A|ICD10CM|Other mechanical complication of umbrella device, initial encounter|Other mechanical complication of umbrella device, initial encounter +C2890120|T037|AB|T82.595D|ICD10CM|Mech compl of umbrella device, subsequent encounter|Mech compl of umbrella device, subsequent encounter +C2890120|T037|PT|T82.595D|ICD10CM|Other mechanical complication of umbrella device, subsequent encounter|Other mechanical complication of umbrella device, subsequent encounter +C2890121|T037|AB|T82.595S|ICD10CM|Other mechanical complication of umbrella device, sequela|Other mechanical complication of umbrella device, sequela +C2890121|T037|PT|T82.595S|ICD10CM|Other mechanical complication of umbrella device, sequela|Other mechanical complication of umbrella device, sequela +C2890097|T037|AB|T82.598|ICD10CM|Mech compl of oth cardiac and vascular devices and implants|Mech compl of oth cardiac and vascular devices and implants +C2890097|T037|HT|T82.598|ICD10CM|Other mechanical complication of other cardiac and vascular devices and implants|Other mechanical complication of other cardiac and vascular devices and implants +C2890122|T037|AB|T82.598A|ICD10CM|Mech compl of cardiac and vascular devices and implnt, init|Mech compl of cardiac and vascular devices and implnt, init +C2890122|T037|PT|T82.598A|ICD10CM|Other mechanical complication of other cardiac and vascular devices and implants, initial encounter|Other mechanical complication of other cardiac and vascular devices and implants, initial encounter +C2890123|T037|AB|T82.598D|ICD10CM|Mech compl of cardiac and vascular devices and implnt, subs|Mech compl of cardiac and vascular devices and implnt, subs +C2890124|T037|AB|T82.598S|ICD10CM|Mech compl of cardiac and vasc devices and implnt, sequela|Mech compl of cardiac and vasc devices and implnt, sequela +C2890124|T037|PT|T82.598S|ICD10CM|Other mechanical complication of other cardiac and vascular devices and implants, sequela|Other mechanical complication of other cardiac and vascular devices and implants, sequela +C2890125|T037|AB|T82.599|ICD10CM|Mech compl of unsp cardiac and vascular devices and implants|Mech compl of unsp cardiac and vascular devices and implants +C2890125|T037|HT|T82.599|ICD10CM|Other mechanical complication of unspecified cardiac and vascular devices and implants|Other mechanical complication of unspecified cardiac and vascular devices and implants +C2890126|T037|AB|T82.599A|ICD10CM|Mech compl of unsp cardiac and vasc devices and implnt, init|Mech compl of unsp cardiac and vasc devices and implnt, init +C2890127|T037|AB|T82.599D|ICD10CM|Mech compl of unsp cardiac and vasc devices and implnt, subs|Mech compl of unsp cardiac and vasc devices and implnt, subs +C2890128|T037|AB|T82.599S|ICD10CM|Mech compl of unsp card and vasc devices and implnt, sequela|Mech compl of unsp card and vasc devices and implnt, sequela +C2890128|T037|PT|T82.599S|ICD10CM|Other mechanical complication of unspecified cardiac and vascular devices and implants, sequela|Other mechanical complication of unspecified cardiac and vascular devices and implants, sequela +C0349358|T047|AB|T82.6|ICD10CM|Infect/inflm reaction due to cardiac valve prosthesis|Infect/inflm reaction due to cardiac valve prosthesis +C0349358|T047|HT|T82.6|ICD10CM|Infection and inflammatory reaction due to cardiac valve prosthesis|Infection and inflammatory reaction due to cardiac valve prosthesis +C0349358|T047|PT|T82.6|ICD10|Infection and inflammatory reaction due to cardiac valve prosthesis|Infection and inflammatory reaction due to cardiac valve prosthesis +C2890129|T037|AB|T82.6XXA|ICD10CM|Infect/inflm reaction due to cardiac valve prosthesis, init|Infect/inflm reaction due to cardiac valve prosthesis, init +C2890129|T037|PT|T82.6XXA|ICD10CM|Infection and inflammatory reaction due to cardiac valve prosthesis, initial encounter|Infection and inflammatory reaction due to cardiac valve prosthesis, initial encounter +C2890130|T037|AB|T82.6XXD|ICD10CM|Infect/inflm reaction due to cardiac valve prosthesis, subs|Infect/inflm reaction due to cardiac valve prosthesis, subs +C2890130|T037|PT|T82.6XXD|ICD10CM|Infection and inflammatory reaction due to cardiac valve prosthesis, subsequent encounter|Infection and inflammatory reaction due to cardiac valve prosthesis, subsequent encounter +C2890131|T037|AB|T82.6XXS|ICD10CM|Infect/inflm reaction due to cardiac valve prosth, sequela|Infect/inflm reaction due to cardiac valve prosth, sequela +C2890131|T037|PT|T82.6XXS|ICD10CM|Infection and inflammatory reaction due to cardiac valve prosthesis, sequela|Infection and inflammatory reaction due to cardiac valve prosthesis, sequela +C0478487|T046|AB|T82.7|ICD10CM|Infect/inflm reaction due to oth cardi/vasc dev/implnt/grft|Infect/inflm reaction due to oth cardi/vasc dev/implnt/grft +C0478487|T046|HT|T82.7|ICD10CM|Infection and inflammatory reaction due to other cardiac and vascular devices, implants and grafts|Infection and inflammatory reaction due to other cardiac and vascular devices, implants and grafts +C0478487|T046|PT|T82.7|ICD10|Infection and inflammatory reaction due to other cardiac and vascular devices, implants and grafts|Infection and inflammatory reaction due to other cardiac and vascular devices, implants and grafts +C2890132|T037|AB|T82.7XXA|ICD10CM|Infect/inflm react d/t oth cardi/vasc dev/implnt/grft, init|Infect/inflm react d/t oth cardi/vasc dev/implnt/grft, init +C2890133|T037|AB|T82.7XXD|ICD10CM|Infect/inflm react d/t oth cardi/vasc dev/implnt/grft, subs|Infect/inflm react d/t oth cardi/vasc dev/implnt/grft, subs +C2890134|T037|AB|T82.7XXS|ICD10CM|Infect/inflm react d/t oth cardi/vasc dev/implnt/grft, sqla|Infect/inflm react d/t oth cardi/vasc dev/implnt/grft, sqla +C2890189|T037|AB|T82.8|ICD10CM|Oth complications of cardiac and vascular prosth dev/grft|Oth complications of cardiac and vascular prosth dev/grft +C0478488|T046|PT|T82.8|ICD10|Other complications of cardiac and vascular prosthetic devices, implants and grafts|Other complications of cardiac and vascular prosthetic devices, implants and grafts +C2890189|T037|HT|T82.8|ICD10CM|Other specified complications of cardiac and vascular prosthetic devices, implants and grafts|Other specified complications of cardiac and vascular prosthetic devices, implants and grafts +C4270120|T046|AB|T82.81|ICD10CM|Embolism due to cardiac and vascular prosth dev/grft|Embolism due to cardiac and vascular prosth dev/grft +C4270120|T046|HT|T82.81|ICD10CM|Embolism due to cardiac and vascular prosthetic devices, implants and grafts|Embolism due to cardiac and vascular prosthetic devices, implants and grafts +C4270121|T046|AB|T82.817|ICD10CM|Embolism due to cardiac prosth dev/grft|Embolism due to cardiac prosth dev/grft +C4270121|T046|HT|T82.817|ICD10CM|Embolism due to cardiac prosthetic devices, implants and grafts|Embolism due to cardiac prosthetic devices, implants and grafts +C4270122|T046|AB|T82.817A|ICD10CM|Embolism due to cardiac prosth dev/grft, initial encounter|Embolism due to cardiac prosth dev/grft, initial encounter +C4270122|T046|PT|T82.817A|ICD10CM|Embolism due to cardiac prosthetic devices, implants and grafts, initial encounter|Embolism due to cardiac prosthetic devices, implants and grafts, initial encounter +C4270123|T046|AB|T82.817D|ICD10CM|Embolism due to cardiac prosth dev/grft, subs|Embolism due to cardiac prosth dev/grft, subs +C4270123|T046|PT|T82.817D|ICD10CM|Embolism due to cardiac prosthetic devices, implants and grafts, subsequent encounter|Embolism due to cardiac prosthetic devices, implants and grafts, subsequent encounter +C4270124|T046|AB|T82.817S|ICD10CM|Embolism due to cardiac prosth dev/grft, sequela|Embolism due to cardiac prosth dev/grft, sequela +C4270124|T046|PT|T82.817S|ICD10CM|Embolism due to cardiac prosthetic devices, implants and grafts, sequela|Embolism due to cardiac prosthetic devices, implants and grafts, sequela +C4270125|T046|AB|T82.818|ICD10CM|Embolism due to vascular prosth dev/grft|Embolism due to vascular prosth dev/grft +C4270125|T046|HT|T82.818|ICD10CM|Embolism due to vascular prosthetic devices, implants and grafts|Embolism due to vascular prosthetic devices, implants and grafts +C4270126|T046|AB|T82.818A|ICD10CM|Embolism due to vascular prosth dev/grft, initial encounter|Embolism due to vascular prosth dev/grft, initial encounter +C4270126|T046|PT|T82.818A|ICD10CM|Embolism due to vascular prosthetic devices, implants and grafts, initial encounter|Embolism due to vascular prosthetic devices, implants and grafts, initial encounter +C4270127|T046|AB|T82.818D|ICD10CM|Embolism due to vascular prosth dev/grft, subs|Embolism due to vascular prosth dev/grft, subs +C4270127|T046|PT|T82.818D|ICD10CM|Embolism due to vascular prosthetic devices, implants and grafts, subsequent encounter|Embolism due to vascular prosthetic devices, implants and grafts, subsequent encounter +C4270128|T046|AB|T82.818S|ICD10CM|Embolism due to vascular prosth dev/grft, sequela|Embolism due to vascular prosth dev/grft, sequela +C4270128|T046|PT|T82.818S|ICD10CM|Embolism due to vascular prosthetic devices, implants and grafts, sequela|Embolism due to vascular prosthetic devices, implants and grafts, sequela +C4270129|T046|AB|T82.82|ICD10CM|Fibrosis due to cardiac and vascular prosth dev/grft|Fibrosis due to cardiac and vascular prosth dev/grft +C4270129|T046|HT|T82.82|ICD10CM|Fibrosis due to cardiac and vascular prosthetic devices, implants and grafts|Fibrosis due to cardiac and vascular prosthetic devices, implants and grafts +C4270130|T046|AB|T82.827|ICD10CM|Fibrosis due to cardiac prosth dev/grft|Fibrosis due to cardiac prosth dev/grft +C4270130|T046|HT|T82.827|ICD10CM|Fibrosis due to cardiac prosthetic devices, implants and grafts|Fibrosis due to cardiac prosthetic devices, implants and grafts +C4270131|T046|AB|T82.827A|ICD10CM|Fibrosis due to cardiac prosth dev/grft, initial encounter|Fibrosis due to cardiac prosth dev/grft, initial encounter +C4270131|T046|PT|T82.827A|ICD10CM|Fibrosis due to cardiac prosthetic devices, implants and grafts, initial encounter|Fibrosis due to cardiac prosthetic devices, implants and grafts, initial encounter +C4270132|T046|AB|T82.827D|ICD10CM|Fibrosis due to cardiac prosth dev/grft, subs|Fibrosis due to cardiac prosth dev/grft, subs +C4270132|T046|PT|T82.827D|ICD10CM|Fibrosis due to cardiac prosthetic devices, implants and grafts, subsequent encounter|Fibrosis due to cardiac prosthetic devices, implants and grafts, subsequent encounter +C4270133|T046|AB|T82.827S|ICD10CM|Fibrosis due to cardiac prosth dev/grft, sequela|Fibrosis due to cardiac prosth dev/grft, sequela +C4270133|T046|PT|T82.827S|ICD10CM|Fibrosis due to cardiac prosthetic devices, implants and grafts, sequela|Fibrosis due to cardiac prosthetic devices, implants and grafts, sequela +C4270134|T046|AB|T82.828|ICD10CM|Fibrosis due to vascular prosth dev/grft|Fibrosis due to vascular prosth dev/grft +C4270134|T046|HT|T82.828|ICD10CM|Fibrosis due to vascular prosthetic devices, implants and grafts|Fibrosis due to vascular prosthetic devices, implants and grafts +C4270135|T046|AB|T82.828A|ICD10CM|Fibrosis due to vascular prosth dev/grft, initial encounter|Fibrosis due to vascular prosth dev/grft, initial encounter +C4270135|T046|PT|T82.828A|ICD10CM|Fibrosis due to vascular prosthetic devices, implants and grafts, initial encounter|Fibrosis due to vascular prosthetic devices, implants and grafts, initial encounter +C4270136|T046|AB|T82.828D|ICD10CM|Fibrosis due to vascular prosth dev/grft, subs|Fibrosis due to vascular prosth dev/grft, subs +C4270136|T046|PT|T82.828D|ICD10CM|Fibrosis due to vascular prosthetic devices, implants and grafts, subsequent encounter|Fibrosis due to vascular prosthetic devices, implants and grafts, subsequent encounter +C4270137|T046|AB|T82.828S|ICD10CM|Fibrosis due to vascular prosth dev/grft, sequela|Fibrosis due to vascular prosth dev/grft, sequela +C4270137|T046|PT|T82.828S|ICD10CM|Fibrosis due to vascular prosthetic devices, implants and grafts, sequela|Fibrosis due to vascular prosthetic devices, implants and grafts, sequela +C4270138|T046|AB|T82.83|ICD10CM|Hemorrhage due to cardiac and vascular prosth dev/grft|Hemorrhage due to cardiac and vascular prosth dev/grft +C4270138|T046|HT|T82.83|ICD10CM|Hemorrhage due to cardiac and vascular prosthetic devices, implants and grafts|Hemorrhage due to cardiac and vascular prosthetic devices, implants and grafts +C4270139|T046|AB|T82.837|ICD10CM|Hemorrhage due to cardiac prosth dev/grft|Hemorrhage due to cardiac prosth dev/grft +C4270139|T046|HT|T82.837|ICD10CM|Hemorrhage due to cardiac prosthetic devices, implants and grafts|Hemorrhage due to cardiac prosthetic devices, implants and grafts +C4270140|T046|AB|T82.837A|ICD10CM|Hemorrhage due to cardiac prosth dev/grft, initial encounter|Hemorrhage due to cardiac prosth dev/grft, initial encounter +C4270140|T046|PT|T82.837A|ICD10CM|Hemorrhage due to cardiac prosthetic devices, implants and grafts, initial encounter|Hemorrhage due to cardiac prosthetic devices, implants and grafts, initial encounter +C4270141|T046|AB|T82.837D|ICD10CM|Hemorrhage due to cardiac prosth dev/grft, subs|Hemorrhage due to cardiac prosth dev/grft, subs +C4270141|T046|PT|T82.837D|ICD10CM|Hemorrhage due to cardiac prosthetic devices, implants and grafts, subsequent encounter|Hemorrhage due to cardiac prosthetic devices, implants and grafts, subsequent encounter +C4270142|T046|AB|T82.837S|ICD10CM|Hemorrhage due to cardiac prosth dev/grft, sequela|Hemorrhage due to cardiac prosth dev/grft, sequela +C4270142|T046|PT|T82.837S|ICD10CM|Hemorrhage due to cardiac prosthetic devices, implants and grafts, sequela|Hemorrhage due to cardiac prosthetic devices, implants and grafts, sequela +C4270143|T046|AB|T82.838|ICD10CM|Hemorrhage due to vascular prosth dev/grft|Hemorrhage due to vascular prosth dev/grft +C4270143|T046|HT|T82.838|ICD10CM|Hemorrhage due to vascular prosthetic devices, implants and grafts|Hemorrhage due to vascular prosthetic devices, implants and grafts +C4270144|T046|AB|T82.838A|ICD10CM|Hemorrhage due to vascular prosth dev/grft, init|Hemorrhage due to vascular prosth dev/grft, init +C4270144|T046|PT|T82.838A|ICD10CM|Hemorrhage due to vascular prosthetic devices, implants and grafts, initial encounter|Hemorrhage due to vascular prosthetic devices, implants and grafts, initial encounter +C4270145|T046|AB|T82.838D|ICD10CM|Hemorrhage due to vascular prosth dev/grft, subs|Hemorrhage due to vascular prosth dev/grft, subs +C4270145|T046|PT|T82.838D|ICD10CM|Hemorrhage due to vascular prosthetic devices, implants and grafts, subsequent encounter|Hemorrhage due to vascular prosthetic devices, implants and grafts, subsequent encounter +C4270146|T046|AB|T82.838S|ICD10CM|Hemorrhage due to vascular prosth dev/grft, sequela|Hemorrhage due to vascular prosth dev/grft, sequela +C4270146|T046|PT|T82.838S|ICD10CM|Hemorrhage due to vascular prosthetic devices, implants and grafts, sequela|Hemorrhage due to vascular prosthetic devices, implants and grafts, sequela +C4270147|T046|AB|T82.84|ICD10CM|Pain due to cardiac and vascular prosth dev/grft|Pain due to cardiac and vascular prosth dev/grft +C4270147|T046|HT|T82.84|ICD10CM|Pain due to cardiac and vascular prosthetic devices, implants and grafts|Pain due to cardiac and vascular prosthetic devices, implants and grafts +C4270148|T046|AB|T82.847|ICD10CM|Pain due to cardiac prosthetic devices, implants and grafts|Pain due to cardiac prosthetic devices, implants and grafts +C4270148|T046|HT|T82.847|ICD10CM|Pain due to cardiac prosthetic devices, implants and grafts|Pain due to cardiac prosthetic devices, implants and grafts +C4270149|T046|AB|T82.847A|ICD10CM|Pain due to cardiac prosth dev/grft, initial encounter|Pain due to cardiac prosth dev/grft, initial encounter +C4270149|T046|PT|T82.847A|ICD10CM|Pain due to cardiac prosthetic devices, implants and grafts, initial encounter|Pain due to cardiac prosthetic devices, implants and grafts, initial encounter +C4270150|T046|AB|T82.847D|ICD10CM|Pain due to cardiac prosth dev/grft, subsequent encounter|Pain due to cardiac prosth dev/grft, subsequent encounter +C4270150|T046|PT|T82.847D|ICD10CM|Pain due to cardiac prosthetic devices, implants and grafts, subsequent encounter|Pain due to cardiac prosthetic devices, implants and grafts, subsequent encounter +C4270151|T046|AB|T82.847S|ICD10CM|Pain due to cardiac prosth dev/grft, sequela|Pain due to cardiac prosth dev/grft, sequela +C4270151|T046|PT|T82.847S|ICD10CM|Pain due to cardiac prosthetic devices, implants and grafts, sequela|Pain due to cardiac prosthetic devices, implants and grafts, sequela +C4270152|T046|AB|T82.848|ICD10CM|Pain due to vascular prosthetic devices, implants and grafts|Pain due to vascular prosthetic devices, implants and grafts +C4270152|T046|HT|T82.848|ICD10CM|Pain due to vascular prosthetic devices, implants and grafts|Pain due to vascular prosthetic devices, implants and grafts +C4270153|T046|AB|T82.848A|ICD10CM|Pain due to vascular prosth dev/grft, initial encounter|Pain due to vascular prosth dev/grft, initial encounter +C4270153|T046|PT|T82.848A|ICD10CM|Pain due to vascular prosthetic devices, implants and grafts, initial encounter|Pain due to vascular prosthetic devices, implants and grafts, initial encounter +C4270154|T046|AB|T82.848D|ICD10CM|Pain due to vascular prosth dev/grft, subsequent encounter|Pain due to vascular prosth dev/grft, subsequent encounter +C4270154|T046|PT|T82.848D|ICD10CM|Pain due to vascular prosthetic devices, implants and grafts, subsequent encounter|Pain due to vascular prosthetic devices, implants and grafts, subsequent encounter +C4270155|T046|AB|T82.848S|ICD10CM|Pain due to vascular prosth dev/grft, sequela|Pain due to vascular prosth dev/grft, sequela +C4270155|T046|PT|T82.848S|ICD10CM|Pain due to vascular prosthetic devices, implants and grafts, sequela|Pain due to vascular prosthetic devices, implants and grafts, sequela +C4270156|T046|AB|T82.85|ICD10CM|Stenosis due to cardiac and vascular prosth dev/grft|Stenosis due to cardiac and vascular prosth dev/grft +C4270156|T046|HT|T82.85|ICD10CM|Stenosis due to cardiac and vascular prosthetic devices, implants and grafts|Stenosis due to cardiac and vascular prosthetic devices, implants and grafts +C4270158|T046|ET|T82.855|ICD10CM|In-stent stenosis (restenosis) of coronary artery stent|In-stent stenosis (restenosis) of coronary artery stent +C1868718|T046|ET|T82.855|ICD10CM|Restenosis of coronary artery stent|Restenosis of coronary artery stent +C4270157|T046|AB|T82.855|ICD10CM|Stenosis of coronary artery stent|Stenosis of coronary artery stent +C4270157|T046|HT|T82.855|ICD10CM|Stenosis of coronary artery stent|Stenosis of coronary artery stent +C4270159|T046|AB|T82.855A|ICD10CM|Stenosis of coronary artery stent, initial encounter|Stenosis of coronary artery stent, initial encounter +C4270159|T046|PT|T82.855A|ICD10CM|Stenosis of coronary artery stent, initial encounter|Stenosis of coronary artery stent, initial encounter +C4270160|T046|AB|T82.855D|ICD10CM|Stenosis of coronary artery stent, subsequent encounter|Stenosis of coronary artery stent, subsequent encounter +C4270160|T046|PT|T82.855D|ICD10CM|Stenosis of coronary artery stent, subsequent encounter|Stenosis of coronary artery stent, subsequent encounter +C4270161|T046|AB|T82.855S|ICD10CM|Stenosis of coronary artery stent, sequela|Stenosis of coronary artery stent, sequela +C4270161|T046|PT|T82.855S|ICD10CM|Stenosis of coronary artery stent, sequela|Stenosis of coronary artery stent, sequela +C4270163|T046|ET|T82.856|ICD10CM|In-stent stenosis (restenosis) of peripheral vascular stent|In-stent stenosis (restenosis) of peripheral vascular stent +C4270164|T046|ET|T82.856|ICD10CM|Restenosis of peripheral vascular stent|Restenosis of peripheral vascular stent +C4270162|T046|HT|T82.856|ICD10CM|Stenosis of peripheral vascular stent|Stenosis of peripheral vascular stent +C4270162|T046|AB|T82.856|ICD10CM|Stenosis of peripheral vascular stent|Stenosis of peripheral vascular stent +C4270165|T046|AB|T82.856A|ICD10CM|Stenosis of peripheral vascular stent, initial encounter|Stenosis of peripheral vascular stent, initial encounter +C4270165|T046|PT|T82.856A|ICD10CM|Stenosis of peripheral vascular stent, initial encounter|Stenosis of peripheral vascular stent, initial encounter +C4270166|T046|AB|T82.856D|ICD10CM|Stenosis of peripheral vascular stent, subsequent encounter|Stenosis of peripheral vascular stent, subsequent encounter +C4270166|T046|PT|T82.856D|ICD10CM|Stenosis of peripheral vascular stent, subsequent encounter|Stenosis of peripheral vascular stent, subsequent encounter +C4270167|T046|AB|T82.856S|ICD10CM|Stenosis of peripheral vascular stent, sequela|Stenosis of peripheral vascular stent, sequela +C4270167|T046|PT|T82.856S|ICD10CM|Stenosis of peripheral vascular stent, sequela|Stenosis of peripheral vascular stent, sequela +C4270168|T046|AB|T82.857|ICD10CM|Stenosis of other cardiac prosth dev/grft|Stenosis of other cardiac prosth dev/grft +C4270168|T046|HT|T82.857|ICD10CM|Stenosis of other cardiac prosthetic devices, implants and grafts|Stenosis of other cardiac prosthetic devices, implants and grafts +C4270169|T046|AB|T82.857A|ICD10CM|Stenosis of other cardiac prosth dev/grft, initial encounter|Stenosis of other cardiac prosth dev/grft, initial encounter +C4270169|T046|PT|T82.857A|ICD10CM|Stenosis of other cardiac prosthetic devices, implants and grafts, initial encounter|Stenosis of other cardiac prosthetic devices, implants and grafts, initial encounter +C4270170|T046|AB|T82.857D|ICD10CM|Stenosis of other cardiac prosth dev/grft, subs|Stenosis of other cardiac prosth dev/grft, subs +C4270170|T046|PT|T82.857D|ICD10CM|Stenosis of other cardiac prosthetic devices, implants and grafts, subsequent encounter|Stenosis of other cardiac prosthetic devices, implants and grafts, subsequent encounter +C4270171|T046|AB|T82.857S|ICD10CM|Stenosis of other cardiac prosth dev/grft, sequela|Stenosis of other cardiac prosth dev/grft, sequela +C4270171|T046|PT|T82.857S|ICD10CM|Stenosis of other cardiac prosthetic devices, implants and grafts, sequela|Stenosis of other cardiac prosthetic devices, implants and grafts, sequela +C4270172|T046|AB|T82.858|ICD10CM|Stenosis of other vascular prosth dev/grft|Stenosis of other vascular prosth dev/grft +C4270172|T046|HT|T82.858|ICD10CM|Stenosis of other vascular prosthetic devices, implants and grafts|Stenosis of other vascular prosthetic devices, implants and grafts +C4270173|T046|AB|T82.858A|ICD10CM|Stenosis of other vascular prosth dev/grft, init|Stenosis of other vascular prosth dev/grft, init +C4270173|T046|PT|T82.858A|ICD10CM|Stenosis of other vascular prosthetic devices, implants and grafts, initial encounter|Stenosis of other vascular prosthetic devices, implants and grafts, initial encounter +C4270174|T046|AB|T82.858D|ICD10CM|Stenosis of other vascular prosth dev/grft, subs|Stenosis of other vascular prosth dev/grft, subs +C4270174|T046|PT|T82.858D|ICD10CM|Stenosis of other vascular prosthetic devices, implants and grafts, subsequent encounter|Stenosis of other vascular prosthetic devices, implants and grafts, subsequent encounter +C4270175|T046|AB|T82.858S|ICD10CM|Stenosis of other vascular prosth dev/grft, sequela|Stenosis of other vascular prosth dev/grft, sequela +C4270175|T046|PT|T82.858S|ICD10CM|Stenosis of other vascular prosthetic devices, implants and grafts, sequela|Stenosis of other vascular prosthetic devices, implants and grafts, sequela +C2890180|T037|AB|T82.86|ICD10CM|Thrombosis of cardiac and vascular prosth dev/grft|Thrombosis of cardiac and vascular prosth dev/grft +C2890180|T037|HT|T82.86|ICD10CM|Thrombosis of cardiac and vascular prosthetic devices, implants and grafts|Thrombosis of cardiac and vascular prosthetic devices, implants and grafts +C4270176|T046|AB|T82.867|ICD10CM|Thrombosis due to cardiac prosth dev/grft|Thrombosis due to cardiac prosth dev/grft +C4270176|T046|HT|T82.867|ICD10CM|Thrombosis due to cardiac prosthetic devices, implants and grafts|Thrombosis due to cardiac prosthetic devices, implants and grafts +C4270177|T046|AB|T82.867A|ICD10CM|Thrombosis due to cardiac prosth dev/grft, initial encounter|Thrombosis due to cardiac prosth dev/grft, initial encounter +C4270177|T046|PT|T82.867A|ICD10CM|Thrombosis due to cardiac prosthetic devices, implants and grafts, initial encounter|Thrombosis due to cardiac prosthetic devices, implants and grafts, initial encounter +C4270178|T046|AB|T82.867D|ICD10CM|Thrombosis due to cardiac prosth dev/grft, subs|Thrombosis due to cardiac prosth dev/grft, subs +C4270178|T046|PT|T82.867D|ICD10CM|Thrombosis due to cardiac prosthetic devices, implants and grafts, subsequent encounter|Thrombosis due to cardiac prosthetic devices, implants and grafts, subsequent encounter +C4270179|T046|AB|T82.867S|ICD10CM|Thrombosis due to cardiac prosth dev/grft, sequela|Thrombosis due to cardiac prosth dev/grft, sequela +C4270179|T046|PT|T82.867S|ICD10CM|Thrombosis due to cardiac prosthetic devices, implants and grafts, sequela|Thrombosis due to cardiac prosthetic devices, implants and grafts, sequela +C4270180|T046|AB|T82.868|ICD10CM|Thrombosis due to vascular prosth dev/grft|Thrombosis due to vascular prosth dev/grft +C4270180|T046|HT|T82.868|ICD10CM|Thrombosis due to vascular prosthetic devices, implants and grafts|Thrombosis due to vascular prosthetic devices, implants and grafts +C4270181|T046|AB|T82.868A|ICD10CM|Thrombosis due to vascular prosth dev/grft, init|Thrombosis due to vascular prosth dev/grft, init +C4270181|T046|PT|T82.868A|ICD10CM|Thrombosis due to vascular prosthetic devices, implants and grafts, initial encounter|Thrombosis due to vascular prosthetic devices, implants and grafts, initial encounter +C4270182|T046|AB|T82.868D|ICD10CM|Thrombosis due to vascular prosth dev/grft, subs|Thrombosis due to vascular prosth dev/grft, subs +C4270182|T046|PT|T82.868D|ICD10CM|Thrombosis due to vascular prosthetic devices, implants and grafts, subsequent encounter|Thrombosis due to vascular prosthetic devices, implants and grafts, subsequent encounter +C4270183|T046|AB|T82.868S|ICD10CM|Thrombosis due to vascular prosth dev/grft, sequela|Thrombosis due to vascular prosth dev/grft, sequela +C4270183|T046|PT|T82.868S|ICD10CM|Thrombosis due to vascular prosthetic devices, implants and grafts, sequela|Thrombosis due to vascular prosthetic devices, implants and grafts, sequela +C2890189|T037|AB|T82.89|ICD10CM|Oth complication of cardiac and vascular prosth dev/grft|Oth complication of cardiac and vascular prosth dev/grft +C2890189|T037|HT|T82.89|ICD10CM|Other specified complication of cardiac and vascular prosthetic devices, implants and grafts|Other specified complication of cardiac and vascular prosthetic devices, implants and grafts +C2890190|T037|AB|T82.897|ICD10CM|Oth complication of cardiac prosth dev/grft|Oth complication of cardiac prosth dev/grft +C2890190|T037|HT|T82.897|ICD10CM|Other specified complication of cardiac prosthetic devices, implants and grafts|Other specified complication of cardiac prosthetic devices, implants and grafts +C2890191|T037|AB|T82.897A|ICD10CM|Oth complication of cardiac prosth dev/grft, init|Oth complication of cardiac prosth dev/grft, init +C2890191|T037|PT|T82.897A|ICD10CM|Other specified complication of cardiac prosthetic devices, implants and grafts, initial encounter|Other specified complication of cardiac prosthetic devices, implants and grafts, initial encounter +C2890192|T037|AB|T82.897D|ICD10CM|Oth complication of cardiac prosth dev/grft, subs|Oth complication of cardiac prosth dev/grft, subs +C2890193|T037|AB|T82.897S|ICD10CM|Oth complication of cardiac prosth dev/grft, sequela|Oth complication of cardiac prosth dev/grft, sequela +C2890193|T037|PT|T82.897S|ICD10CM|Other specified complication of cardiac prosthetic devices, implants and grafts, sequela|Other specified complication of cardiac prosthetic devices, implants and grafts, sequela +C2890194|T037|AB|T82.898|ICD10CM|Oth complication of vascular prosth dev/grft|Oth complication of vascular prosth dev/grft +C2890194|T037|HT|T82.898|ICD10CM|Other specified complication of vascular prosthetic devices, implants and grafts|Other specified complication of vascular prosthetic devices, implants and grafts +C2890195|T037|AB|T82.898A|ICD10CM|Oth complication of vascular prosth dev/grft, init|Oth complication of vascular prosth dev/grft, init +C2890195|T037|PT|T82.898A|ICD10CM|Other specified complication of vascular prosthetic devices, implants and grafts, initial encounter|Other specified complication of vascular prosthetic devices, implants and grafts, initial encounter +C2890196|T037|AB|T82.898D|ICD10CM|Oth complication of vascular prosth dev/grft, subs|Oth complication of vascular prosth dev/grft, subs +C2890197|T037|AB|T82.898S|ICD10CM|Oth complication of vascular prosth dev/grft, sequela|Oth complication of vascular prosth dev/grft, sequela +C2890197|T037|PT|T82.898S|ICD10CM|Other specified complication of vascular prosthetic devices, implants and grafts, sequela|Other specified complication of vascular prosthetic devices, implants and grafts, sequela +C0478489|T046|AB|T82.9|ICD10CM|Unsp complication of cardiac and vascular prosth dev/grft|Unsp complication of cardiac and vascular prosth dev/grft +C0478489|T046|HT|T82.9|ICD10CM|Unspecified complication of cardiac and vascular prosthetic device, implant and graft|Unspecified complication of cardiac and vascular prosthetic device, implant and graft +C0478489|T046|PT|T82.9|ICD10|Unspecified complication of cardiac and vascular prosthetic device, implant and graft|Unspecified complication of cardiac and vascular prosthetic device, implant and graft +C2890198|T037|AB|T82.9XXA|ICD10CM|Unsp comp of cardiac and vascular prosth dev/grft, init|Unsp comp of cardiac and vascular prosth dev/grft, init +C2890199|T037|AB|T82.9XXD|ICD10CM|Unsp comp of cardiac and vascular prosth dev/grft, subs|Unsp comp of cardiac and vascular prosth dev/grft, subs +C2890200|T037|AB|T82.9XXS|ICD10CM|Unsp comp of cardiac and vascular prosth dev/grft, sequela|Unsp comp of cardiac and vascular prosth dev/grft, sequela +C2890200|T037|PT|T82.9XXS|ICD10CM|Unspecified complication of cardiac and vascular prosthetic device, implant and graft, sequela|Unspecified complication of cardiac and vascular prosthetic device, implant and graft, sequela +C0496146|T046|AB|T83|ICD10CM|Complications of genitourinary prosth dev/grft|Complications of genitourinary prosth dev/grft +C0496146|T046|HT|T83|ICD10CM|Complications of genitourinary prosthetic devices, implants and grafts|Complications of genitourinary prosthetic devices, implants and grafts +C0496146|T046|HT|T83|ICD10|Complications of genitourinary prosthetic devices, implants and grafts|Complications of genitourinary prosthetic devices, implants and grafts +C0496143|T046|PT|T83.0|ICD10|Mechanical complication of urinary (indwelling) catheter|Mechanical complication of urinary (indwelling) catheter +C0347928|T046|AB|T83.0|ICD10CM|Mechanical complication of urinary catheter|Mechanical complication of urinary catheter +C0347928|T046|HT|T83.0|ICD10CM|Mechanical complication of urinary catheter|Mechanical complication of urinary catheter +C3647608|T046|AB|T83.01|ICD10CM|Breakdown (mechanical) of urinary catheter|Breakdown (mechanical) of urinary catheter +C3647608|T046|HT|T83.01|ICD10CM|Breakdown (mechanical) of urinary catheter|Breakdown (mechanical) of urinary catheter +C2890202|T037|AB|T83.010|ICD10CM|Breakdown (mechanical) of cystostomy catheter|Breakdown (mechanical) of cystostomy catheter +C2890202|T037|HT|T83.010|ICD10CM|Breakdown (mechanical) of cystostomy catheter|Breakdown (mechanical) of cystostomy catheter +C2890203|T037|AB|T83.010A|ICD10CM|Breakdown (mechanical) of cystostomy catheter, init encntr|Breakdown (mechanical) of cystostomy catheter, init encntr +C2890203|T037|PT|T83.010A|ICD10CM|Breakdown (mechanical) of cystostomy catheter, initial encounter|Breakdown (mechanical) of cystostomy catheter, initial encounter +C2890204|T037|AB|T83.010D|ICD10CM|Breakdown (mechanical) of cystostomy catheter, subs encntr|Breakdown (mechanical) of cystostomy catheter, subs encntr +C2890204|T037|PT|T83.010D|ICD10CM|Breakdown (mechanical) of cystostomy catheter, subsequent encounter|Breakdown (mechanical) of cystostomy catheter, subsequent encounter +C2890205|T037|AB|T83.010S|ICD10CM|Breakdown (mechanical) of cystostomy catheter, sequela|Breakdown (mechanical) of cystostomy catheter, sequela +C2890205|T037|PT|T83.010S|ICD10CM|Breakdown (mechanical) of cystostomy catheter, sequela|Breakdown (mechanical) of cystostomy catheter, sequela +C4270184|T046|AB|T83.011|ICD10CM|Breakdown (mechanical) of indwelling urethral catheter|Breakdown (mechanical) of indwelling urethral catheter +C4270184|T046|HT|T83.011|ICD10CM|Breakdown (mechanical) of indwelling urethral catheter|Breakdown (mechanical) of indwelling urethral catheter +C4270185|T046|AB|T83.011A|ICD10CM|Breakdown (mechanical) of indwelling urethral catheter, init|Breakdown (mechanical) of indwelling urethral catheter, init +C4270185|T046|PT|T83.011A|ICD10CM|Breakdown (mechanical) of indwelling urethral catheter, initial encounter|Breakdown (mechanical) of indwelling urethral catheter, initial encounter +C4270186|T046|AB|T83.011D|ICD10CM|Breakdown (mechanical) of indwelling urethral catheter, subs|Breakdown (mechanical) of indwelling urethral catheter, subs +C4270186|T046|PT|T83.011D|ICD10CM|Breakdown (mechanical) of indwelling urethral catheter, subsequent encounter|Breakdown (mechanical) of indwelling urethral catheter, subsequent encounter +C4270187|T046|PT|T83.011S|ICD10CM|Breakdown (mechanical) of indwelling urethral catheter, sequela|Breakdown (mechanical) of indwelling urethral catheter, sequela +C4270187|T046|AB|T83.011S|ICD10CM|Breakdown of indwelling urethral catheter, sequela|Breakdown of indwelling urethral catheter, sequela +C4270188|T046|AB|T83.012|ICD10CM|Breakdown (mechanical) of nephrostomy catheter|Breakdown (mechanical) of nephrostomy catheter +C4270188|T046|HT|T83.012|ICD10CM|Breakdown (mechanical) of nephrostomy catheter|Breakdown (mechanical) of nephrostomy catheter +C4270189|T046|AB|T83.012A|ICD10CM|Breakdown (mechanical) of nephrostomy catheter, init|Breakdown (mechanical) of nephrostomy catheter, init +C4270189|T046|PT|T83.012A|ICD10CM|Breakdown (mechanical) of nephrostomy catheter, initial encounter|Breakdown (mechanical) of nephrostomy catheter, initial encounter +C4270190|T046|AB|T83.012D|ICD10CM|Breakdown (mechanical) of nephrostomy catheter, subs|Breakdown (mechanical) of nephrostomy catheter, subs +C4270190|T046|PT|T83.012D|ICD10CM|Breakdown (mechanical) of nephrostomy catheter, subsequent encounter|Breakdown (mechanical) of nephrostomy catheter, subsequent encounter +C4270191|T046|AB|T83.012S|ICD10CM|Breakdown (mechanical) of nephrostomy catheter, sequela|Breakdown (mechanical) of nephrostomy catheter, sequela +C4270191|T046|PT|T83.012S|ICD10CM|Breakdown (mechanical) of nephrostomy catheter, sequela|Breakdown (mechanical) of nephrostomy catheter, sequela +C4270193|T046|ET|T83.018|ICD10CM|Breakdown (mechanical) of Hopkins catheter|Breakdown (mechanical) of Hopkins catheter +C4270194|T046|ET|T83.018|ICD10CM|Breakdown (mechanical) of ileostomy catheter|Breakdown (mechanical) of ileostomy catheter +C4270192|T046|AB|T83.018|ICD10CM|Breakdown (mechanical) of other urinary catheter|Breakdown (mechanical) of other urinary catheter +C4270192|T046|HT|T83.018|ICD10CM|Breakdown (mechanical) of other urinary catheter|Breakdown (mechanical) of other urinary catheter +C4270195|T046|ET|T83.018|ICD10CM|Breakdown (mechanical) urostomy catheter|Breakdown (mechanical) urostomy catheter +C4270196|T046|AB|T83.018A|ICD10CM|Breakdown (mechanical) of other urinary catheter, init|Breakdown (mechanical) of other urinary catheter, init +C4270196|T046|PT|T83.018A|ICD10CM|Breakdown (mechanical) of other urinary catheter, initial encounter|Breakdown (mechanical) of other urinary catheter, initial encounter +C4270197|T046|AB|T83.018D|ICD10CM|Breakdown (mechanical) of other urinary catheter, subs|Breakdown (mechanical) of other urinary catheter, subs +C4270197|T046|PT|T83.018D|ICD10CM|Breakdown (mechanical) of other urinary catheter, subsequent encounter|Breakdown (mechanical) of other urinary catheter, subsequent encounter +C4270198|T046|AB|T83.018S|ICD10CM|Breakdown (mechanical) of other urinary catheter, sequela|Breakdown (mechanical) of other urinary catheter, sequela +C4270198|T046|PT|T83.018S|ICD10CM|Breakdown (mechanical) of other urinary catheter, sequela|Breakdown (mechanical) of other urinary catheter, sequela +C3647607|T046|AB|T83.02|ICD10CM|Displacement of urinary catheter|Displacement of urinary catheter +C3647607|T046|HT|T83.02|ICD10CM|Displacement of urinary catheter|Displacement of urinary catheter +C4270199|T046|ET|T83.02|ICD10CM|Malposition of urinary catheter|Malposition of urinary catheter +C3647654|T046|HT|T83.020|ICD10CM|Displacement of cystostomy catheter|Displacement of cystostomy catheter +C3647654|T046|AB|T83.020|ICD10CM|Displacement of cystostomy catheter|Displacement of cystostomy catheter +C2890213|T037|PT|T83.020A|ICD10CM|Displacement of cystostomy catheter, initial encounter|Displacement of cystostomy catheter, initial encounter +C2890213|T037|AB|T83.020A|ICD10CM|Displacement of cystostomy catheter, initial encounter|Displacement of cystostomy catheter, initial encounter +C2890214|T037|PT|T83.020D|ICD10CM|Displacement of cystostomy catheter, subsequent encounter|Displacement of cystostomy catheter, subsequent encounter +C2890214|T037|AB|T83.020D|ICD10CM|Displacement of cystostomy catheter, subsequent encounter|Displacement of cystostomy catheter, subsequent encounter +C2890215|T037|PT|T83.020S|ICD10CM|Displacement of cystostomy catheter, sequela|Displacement of cystostomy catheter, sequela +C2890215|T037|AB|T83.020S|ICD10CM|Displacement of cystostomy catheter, sequela|Displacement of cystostomy catheter, sequela +C4270200|T046|AB|T83.021|ICD10CM|Displacement of indwelling urethral catheter|Displacement of indwelling urethral catheter +C4270200|T046|HT|T83.021|ICD10CM|Displacement of indwelling urethral catheter|Displacement of indwelling urethral catheter +C4270201|T046|AB|T83.021A|ICD10CM|Displacement of indwelling urethral catheter, init|Displacement of indwelling urethral catheter, init +C4270201|T046|PT|T83.021A|ICD10CM|Displacement of indwelling urethral catheter, initial encounter|Displacement of indwelling urethral catheter, initial encounter +C4270202|T046|AB|T83.021D|ICD10CM|Displacement of indwelling urethral catheter, subs|Displacement of indwelling urethral catheter, subs +C4270202|T046|PT|T83.021D|ICD10CM|Displacement of indwelling urethral catheter, subsequent encounter|Displacement of indwelling urethral catheter, subsequent encounter +C4270203|T046|AB|T83.021S|ICD10CM|Displacement of indwelling urethral catheter, sequela|Displacement of indwelling urethral catheter, sequela +C4270203|T046|PT|T83.021S|ICD10CM|Displacement of indwelling urethral catheter, sequela|Displacement of indwelling urethral catheter, sequela +C4270204|T046|AB|T83.022|ICD10CM|Displacement of nephrostomy catheter|Displacement of nephrostomy catheter +C4270204|T046|HT|T83.022|ICD10CM|Displacement of nephrostomy catheter|Displacement of nephrostomy catheter +C4270205|T046|PT|T83.022A|ICD10CM|Displacement of nephrostomy catheter, initial encounter|Displacement of nephrostomy catheter, initial encounter +C4270205|T046|AB|T83.022A|ICD10CM|Displacement of nephrostomy catheter, initial encounter|Displacement of nephrostomy catheter, initial encounter +C4270206|T046|AB|T83.022D|ICD10CM|Displacement of nephrostomy catheter, subsequent encounter|Displacement of nephrostomy catheter, subsequent encounter +C4270206|T046|PT|T83.022D|ICD10CM|Displacement of nephrostomy catheter, subsequent encounter|Displacement of nephrostomy catheter, subsequent encounter +C4270207|T046|PT|T83.022S|ICD10CM|Displacement of nephrostomy catheter, sequela|Displacement of nephrostomy catheter, sequela +C4270207|T046|AB|T83.022S|ICD10CM|Displacement of nephrostomy catheter, sequela|Displacement of nephrostomy catheter, sequela +C4270209|T046|ET|T83.028|ICD10CM|Displacement of Hopkins catheter|Displacement of Hopkins catheter +C4270210|T046|ET|T83.028|ICD10CM|Displacement of ileostomy catheter|Displacement of ileostomy catheter +C4270208|T046|AB|T83.028|ICD10CM|Displacement of other urinary catheter|Displacement of other urinary catheter +C4270208|T046|HT|T83.028|ICD10CM|Displacement of other urinary catheter|Displacement of other urinary catheter +C4270211|T046|ET|T83.028|ICD10CM|Displacement of urostomy catheter|Displacement of urostomy catheter +C4270212|T046|AB|T83.028A|ICD10CM|Displacement of other urinary catheter, initial encounter|Displacement of other urinary catheter, initial encounter +C4270212|T046|PT|T83.028A|ICD10CM|Displacement of other urinary catheter, initial encounter|Displacement of other urinary catheter, initial encounter +C4270213|T046|AB|T83.028D|ICD10CM|Displacement of other urinary catheter, subsequent encounter|Displacement of other urinary catheter, subsequent encounter +C4270213|T046|PT|T83.028D|ICD10CM|Displacement of other urinary catheter, subsequent encounter|Displacement of other urinary catheter, subsequent encounter +C4270214|T046|PT|T83.028S|ICD10CM|Displacement of other urinary catheter, sequela|Displacement of other urinary catheter, sequela +C4270214|T046|AB|T83.028S|ICD10CM|Displacement of other urinary catheter, sequela|Displacement of other urinary catheter, sequela +C3647606|T046|AB|T83.03|ICD10CM|Leakage of urinary catheter|Leakage of urinary catheter +C3647606|T046|HT|T83.03|ICD10CM|Leakage of urinary catheter|Leakage of urinary catheter +C3647653|T046|HT|T83.030|ICD10CM|Leakage of cystostomy catheter|Leakage of cystostomy catheter +C3647653|T046|AB|T83.030|ICD10CM|Leakage of cystostomy catheter|Leakage of cystostomy catheter +C2890222|T037|PT|T83.030A|ICD10CM|Leakage of cystostomy catheter, initial encounter|Leakage of cystostomy catheter, initial encounter +C2890222|T037|AB|T83.030A|ICD10CM|Leakage of cystostomy catheter, initial encounter|Leakage of cystostomy catheter, initial encounter +C2890223|T037|PT|T83.030D|ICD10CM|Leakage of cystostomy catheter, subsequent encounter|Leakage of cystostomy catheter, subsequent encounter +C2890223|T037|AB|T83.030D|ICD10CM|Leakage of cystostomy catheter, subsequent encounter|Leakage of cystostomy catheter, subsequent encounter +C2890224|T037|PT|T83.030S|ICD10CM|Leakage of cystostomy catheter, sequela|Leakage of cystostomy catheter, sequela +C2890224|T037|AB|T83.030S|ICD10CM|Leakage of cystostomy catheter, sequela|Leakage of cystostomy catheter, sequela +C4270215|T046|AB|T83.031|ICD10CM|Leakage of indwelling urethral catheter|Leakage of indwelling urethral catheter +C4270215|T046|HT|T83.031|ICD10CM|Leakage of indwelling urethral catheter|Leakage of indwelling urethral catheter +C4270216|T046|PT|T83.031A|ICD10CM|Leakage of indwelling urethral catheter, initial encounter|Leakage of indwelling urethral catheter, initial encounter +C4270216|T046|AB|T83.031A|ICD10CM|Leakage of indwelling urethral catheter, initial encounter|Leakage of indwelling urethral catheter, initial encounter +C4270217|T046|AB|T83.031D|ICD10CM|Leakage of indwelling urethral catheter, subs|Leakage of indwelling urethral catheter, subs +C4270217|T046|PT|T83.031D|ICD10CM|Leakage of indwelling urethral catheter, subsequent encounter|Leakage of indwelling urethral catheter, subsequent encounter +C4270218|T046|PT|T83.031S|ICD10CM|Leakage of indwelling urethral catheter, sequela|Leakage of indwelling urethral catheter, sequela +C4270218|T046|AB|T83.031S|ICD10CM|Leakage of indwelling urethral catheter, sequela|Leakage of indwelling urethral catheter, sequela +C4270219|T046|AB|T83.032|ICD10CM|Leakage of nephrostomy catheter|Leakage of nephrostomy catheter +C4270219|T046|HT|T83.032|ICD10CM|Leakage of nephrostomy catheter|Leakage of nephrostomy catheter +C4270220|T046|PT|T83.032A|ICD10CM|Leakage of nephrostomy catheter, initial encounter|Leakage of nephrostomy catheter, initial encounter +C4270220|T046|AB|T83.032A|ICD10CM|Leakage of nephrostomy catheter, initial encounter|Leakage of nephrostomy catheter, initial encounter +C4270221|T046|PT|T83.032D|ICD10CM|Leakage of nephrostomy catheter, subsequent encounter|Leakage of nephrostomy catheter, subsequent encounter +C4270221|T046|AB|T83.032D|ICD10CM|Leakage of nephrostomy catheter, subsequent encounter|Leakage of nephrostomy catheter, subsequent encounter +C4270222|T046|AB|T83.032S|ICD10CM|Leakage of nephrostomy catheter, sequela|Leakage of nephrostomy catheter, sequela +C4270222|T046|PT|T83.032S|ICD10CM|Leakage of nephrostomy catheter, sequela|Leakage of nephrostomy catheter, sequela +C4270224|T046|ET|T83.038|ICD10CM|Leakage of Hopkins catheter|Leakage of Hopkins catheter +C4270225|T046|ET|T83.038|ICD10CM|Leakage of ileostomy catheter|Leakage of ileostomy catheter +C4270223|T046|AB|T83.038|ICD10CM|Leakage of other urinary catheter|Leakage of other urinary catheter +C4270223|T046|HT|T83.038|ICD10CM|Leakage of other urinary catheter|Leakage of other urinary catheter +C4270226|T046|ET|T83.038|ICD10CM|Leakage of urostomy catheter|Leakage of urostomy catheter +C4270227|T046|PT|T83.038A|ICD10CM|Leakage of other urinary catheter, initial encounter|Leakage of other urinary catheter, initial encounter +C4270227|T046|AB|T83.038A|ICD10CM|Leakage of other urinary catheter, initial encounter|Leakage of other urinary catheter, initial encounter +C4270228|T046|AB|T83.038D|ICD10CM|Leakage of other urinary catheter, subsequent encounter|Leakage of other urinary catheter, subsequent encounter +C4270228|T046|PT|T83.038D|ICD10CM|Leakage of other urinary catheter, subsequent encounter|Leakage of other urinary catheter, subsequent encounter +C4270229|T046|PT|T83.038S|ICD10CM|Leakage of other urinary catheter, sequela|Leakage of other urinary catheter, sequela +C4270229|T046|AB|T83.038S|ICD10CM|Leakage of other urinary catheter, sequela|Leakage of other urinary catheter, sequela +C4270231|T046|ET|T83.09|ICD10CM|Obstruction (mechanical) of urinary catheter|Obstruction (mechanical) of urinary catheter +C4270230|T046|AB|T83.09|ICD10CM|Other mechanical complication of urinary catheter|Other mechanical complication of urinary catheter +C4270230|T046|HT|T83.09|ICD10CM|Other mechanical complication of urinary catheter|Other mechanical complication of urinary catheter +C4270232|T046|ET|T83.09|ICD10CM|Perforation of urinary catheter|Perforation of urinary catheter +C4270233|T046|ET|T83.09|ICD10CM|Protrusion of urinary catheter|Protrusion of urinary catheter +C2890233|T037|AB|T83.090|ICD10CM|Other mechanical complication of cystostomy catheter|Other mechanical complication of cystostomy catheter +C2890233|T037|HT|T83.090|ICD10CM|Other mechanical complication of cystostomy catheter|Other mechanical complication of cystostomy catheter +C2890234|T037|AB|T83.090A|ICD10CM|Mech compl of cystostomy catheter, initial encounter|Mech compl of cystostomy catheter, initial encounter +C2890234|T037|PT|T83.090A|ICD10CM|Other mechanical complication of cystostomy catheter, initial encounter|Other mechanical complication of cystostomy catheter, initial encounter +C2890235|T037|AB|T83.090D|ICD10CM|Mech compl of cystostomy catheter, subsequent encounter|Mech compl of cystostomy catheter, subsequent encounter +C2890235|T037|PT|T83.090D|ICD10CM|Other mechanical complication of cystostomy catheter, subsequent encounter|Other mechanical complication of cystostomy catheter, subsequent encounter +C2890236|T037|AB|T83.090S|ICD10CM|Mech compl of cystostomy catheter, sequela|Mech compl of cystostomy catheter, sequela +C2890236|T037|PT|T83.090S|ICD10CM|Other mechanical complication of cystostomy catheter, sequela|Other mechanical complication of cystostomy catheter, sequela +C4270234|T046|AB|T83.091|ICD10CM|Mech compl of indwelling urethral catheter|Mech compl of indwelling urethral catheter +C4270234|T046|HT|T83.091|ICD10CM|Other mechanical complication of indwelling urethral catheter|Other mechanical complication of indwelling urethral catheter +C4270235|T046|AB|T83.091A|ICD10CM|Mech compl of indwelling urethral catheter, init|Mech compl of indwelling urethral catheter, init +C4270235|T046|PT|T83.091A|ICD10CM|Other mechanical complication of indwelling urethral catheter, initial encounter|Other mechanical complication of indwelling urethral catheter, initial encounter +C4270236|T046|AB|T83.091D|ICD10CM|Mech compl of indwelling urethral catheter, subs|Mech compl of indwelling urethral catheter, subs +C4270236|T046|PT|T83.091D|ICD10CM|Other mechanical complication of indwelling urethral catheter, subsequent encounter|Other mechanical complication of indwelling urethral catheter, subsequent encounter +C4270237|T046|AB|T83.091S|ICD10CM|Mech compl of indwelling urethral catheter, sequela|Mech compl of indwelling urethral catheter, sequela +C4270237|T046|PT|T83.091S|ICD10CM|Other mechanical complication of indwelling urethral catheter, sequela|Other mechanical complication of indwelling urethral catheter, sequela +C4270238|T046|AB|T83.092|ICD10CM|Other mechanical complication of nephrostomy catheter|Other mechanical complication of nephrostomy catheter +C4270238|T046|HT|T83.092|ICD10CM|Other mechanical complication of nephrostomy catheter|Other mechanical complication of nephrostomy catheter +C4270239|T046|AB|T83.092A|ICD10CM|Mech compl of nephrostomy catheter, initial encounter|Mech compl of nephrostomy catheter, initial encounter +C4270239|T046|PT|T83.092A|ICD10CM|Other mechanical complication of nephrostomy catheter, initial encounter|Other mechanical complication of nephrostomy catheter, initial encounter +C4270240|T046|AB|T83.092D|ICD10CM|Mech compl of nephrostomy catheter, subsequent encounter|Mech compl of nephrostomy catheter, subsequent encounter +C4270240|T046|PT|T83.092D|ICD10CM|Other mechanical complication of nephrostomy catheter, subsequent encounter|Other mechanical complication of nephrostomy catheter, subsequent encounter +C4270241|T046|AB|T83.092S|ICD10CM|Mech compl of nephrostomy catheter, sequela|Mech compl of nephrostomy catheter, sequela +C4270241|T046|PT|T83.092S|ICD10CM|Other mechanical complication of nephrostomy catheter, sequela|Other mechanical complication of nephrostomy catheter, sequela +C4270243|T046|ET|T83.098|ICD10CM|Other mechanical complication of Hopkins catheter|Other mechanical complication of Hopkins catheter +C4270244|T046|ET|T83.098|ICD10CM|Other mechanical complication of ileostomy catheter|Other mechanical complication of ileostomy catheter +C4270242|T046|AB|T83.098|ICD10CM|Other mechanical complication of other urinary catheter|Other mechanical complication of other urinary catheter +C4270242|T046|HT|T83.098|ICD10CM|Other mechanical complication of other urinary catheter|Other mechanical complication of other urinary catheter +C4270245|T046|ET|T83.098|ICD10CM|Other mechanical complication of urostomy catheter|Other mechanical complication of urostomy catheter +C4270246|T046|AB|T83.098A|ICD10CM|Mech compl of other urinary catheter, initial encounter|Mech compl of other urinary catheter, initial encounter +C4270246|T046|PT|T83.098A|ICD10CM|Other mechanical complication of other urinary catheter, initial encounter|Other mechanical complication of other urinary catheter, initial encounter +C4270247|T046|AB|T83.098D|ICD10CM|Mech compl of other urinary catheter, subsequent encounter|Mech compl of other urinary catheter, subsequent encounter +C4270247|T046|PT|T83.098D|ICD10CM|Other mechanical complication of other urinary catheter, subsequent encounter|Other mechanical complication of other urinary catheter, subsequent encounter +C4270248|T046|AB|T83.098S|ICD10CM|Mech compl of other urinary catheter, sequela|Mech compl of other urinary catheter, sequela +C4270248|T046|PT|T83.098S|ICD10CM|Other mechanical complication of other urinary catheter, sequela|Other mechanical complication of other urinary catheter, sequela +C0478490|T046|AB|T83.1|ICD10CM|Mechanical complication of oth urinary devices and implants|Mechanical complication of oth urinary devices and implants +C0478490|T046|HT|T83.1|ICD10CM|Mechanical complication of other urinary devices and implants|Mechanical complication of other urinary devices and implants +C0478490|T046|PT|T83.1|ICD10|Mechanical complication of other urinary devices and implants|Mechanical complication of other urinary devices and implants +C2890241|T037|HT|T83.11|ICD10CM|Breakdown (mechanical) of other urinary devices and implants|Breakdown (mechanical) of other urinary devices and implants +C2890241|T037|AB|T83.11|ICD10CM|Breakdown (mechanical) of other urinary devices and implants|Breakdown (mechanical) of other urinary devices and implants +C2890242|T037|HT|T83.110|ICD10CM|Breakdown (mechanical) of urinary electronic stimulator device|Breakdown (mechanical) of urinary electronic stimulator device +C2890242|T037|AB|T83.110|ICD10CM|Breakdown of urinary electronic stimulator device|Breakdown of urinary electronic stimulator device +C2890243|T037|PT|T83.110A|ICD10CM|Breakdown (mechanical) of urinary electronic stimulator device, initial encounter|Breakdown (mechanical) of urinary electronic stimulator device, initial encounter +C2890243|T037|AB|T83.110A|ICD10CM|Breakdown of urinary electronic stimulator device, init|Breakdown of urinary electronic stimulator device, init +C2890244|T037|PT|T83.110D|ICD10CM|Breakdown (mechanical) of urinary electronic stimulator device, subsequent encounter|Breakdown (mechanical) of urinary electronic stimulator device, subsequent encounter +C2890244|T037|AB|T83.110D|ICD10CM|Breakdown of urinary electronic stimulator device, subs|Breakdown of urinary electronic stimulator device, subs +C2890245|T037|PT|T83.110S|ICD10CM|Breakdown (mechanical) of urinary electronic stimulator device, sequela|Breakdown (mechanical) of urinary electronic stimulator device, sequela +C2890245|T037|AB|T83.110S|ICD10CM|Breakdown of urinary electronic stimulator device, sequela|Breakdown of urinary electronic stimulator device, sequela +C3647598|T046|AB|T83.111|ICD10CM|Breakdown (mechanical) of implanted urinary sphincter|Breakdown (mechanical) of implanted urinary sphincter +C3647598|T046|HT|T83.111|ICD10CM|Breakdown (mechanical) of implanted urinary sphincter|Breakdown (mechanical) of implanted urinary sphincter +C2890247|T037|AB|T83.111A|ICD10CM|Breakdown (mechanical) of implanted urinary sphincter, init|Breakdown (mechanical) of implanted urinary sphincter, init +C2890247|T037|PT|T83.111A|ICD10CM|Breakdown (mechanical) of implanted urinary sphincter, initial encounter|Breakdown (mechanical) of implanted urinary sphincter, initial encounter +C2890248|T037|AB|T83.111D|ICD10CM|Breakdown (mechanical) of implanted urinary sphincter, subs|Breakdown (mechanical) of implanted urinary sphincter, subs +C2890248|T037|PT|T83.111D|ICD10CM|Breakdown (mechanical) of implanted urinary sphincter, subsequent encounter|Breakdown (mechanical) of implanted urinary sphincter, subsequent encounter +C2890249|T037|PT|T83.111S|ICD10CM|Breakdown (mechanical) of implanted urinary sphincter, sequela|Breakdown (mechanical) of implanted urinary sphincter, sequela +C2890249|T037|AB|T83.111S|ICD10CM|Breakdown of implanted urinary sphincter, sequela|Breakdown of implanted urinary sphincter, sequela +C4270249|T046|AB|T83.112|ICD10CM|Breakdown (mechanical) of indwelling ureteral stent|Breakdown (mechanical) of indwelling ureteral stent +C4270249|T046|HT|T83.112|ICD10CM|Breakdown (mechanical) of indwelling ureteral stent|Breakdown (mechanical) of indwelling ureteral stent +C4270250|T046|AB|T83.112A|ICD10CM|Breakdown (mechanical) of indwelling ureteral stent, init|Breakdown (mechanical) of indwelling ureteral stent, init +C4270250|T046|PT|T83.112A|ICD10CM|Breakdown (mechanical) of indwelling ureteral stent, initial encounter|Breakdown (mechanical) of indwelling ureteral stent, initial encounter +C4270251|T046|AB|T83.112D|ICD10CM|Breakdown (mechanical) of indwelling ureteral stent, subs|Breakdown (mechanical) of indwelling ureteral stent, subs +C4270251|T046|PT|T83.112D|ICD10CM|Breakdown (mechanical) of indwelling ureteral stent, subsequent encounter|Breakdown (mechanical) of indwelling ureteral stent, subsequent encounter +C4270252|T046|AB|T83.112S|ICD10CM|Breakdown (mechanical) of indwelling ureteral stent, sequela|Breakdown (mechanical) of indwelling ureteral stent, sequela +C4270252|T046|PT|T83.112S|ICD10CM|Breakdown (mechanical) of indwelling ureteral stent, sequela|Breakdown (mechanical) of indwelling ureteral stent, sequela +C4270254|T046|ET|T83.113|ICD10CM|Breakdown (mechanical) of ileal conduit stent|Breakdown (mechanical) of ileal conduit stent +C4270255|T046|ET|T83.113|ICD10CM|Breakdown (mechanical) of nephroureteral stent|Breakdown (mechanical) of nephroureteral stent +C4270253|T046|AB|T83.113|ICD10CM|Breakdown (mechanical) of other urinary stents|Breakdown (mechanical) of other urinary stents +C4270253|T046|HT|T83.113|ICD10CM|Breakdown (mechanical) of other urinary stents|Breakdown (mechanical) of other urinary stents +C4270256|T046|AB|T83.113A|ICD10CM|Breakdown (mechanical) of other urinary stents, init|Breakdown (mechanical) of other urinary stents, init +C4270256|T046|PT|T83.113A|ICD10CM|Breakdown (mechanical) of other urinary stents, initial encounter|Breakdown (mechanical) of other urinary stents, initial encounter +C4270257|T046|AB|T83.113D|ICD10CM|Breakdown (mechanical) of other urinary stents, subs|Breakdown (mechanical) of other urinary stents, subs +C4270257|T046|PT|T83.113D|ICD10CM|Breakdown (mechanical) of other urinary stents, subsequent encounter|Breakdown (mechanical) of other urinary stents, subsequent encounter +C4270258|T046|AB|T83.113S|ICD10CM|Breakdown (mechanical) of other urinary stents, sequela|Breakdown (mechanical) of other urinary stents, sequela +C4270258|T046|PT|T83.113S|ICD10CM|Breakdown (mechanical) of other urinary stents, sequela|Breakdown (mechanical) of other urinary stents, sequela +C2890241|T037|AB|T83.118|ICD10CM|Breakdown (mechanical) of other urinary devices and implants|Breakdown (mechanical) of other urinary devices and implants +C2890241|T037|HT|T83.118|ICD10CM|Breakdown (mechanical) of other urinary devices and implants|Breakdown (mechanical) of other urinary devices and implants +C2890254|T037|PT|T83.118A|ICD10CM|Breakdown (mechanical) of other urinary devices and implants, initial encounter|Breakdown (mechanical) of other urinary devices and implants, initial encounter +C2890254|T037|AB|T83.118A|ICD10CM|Breakdown (mechanical) of urinary devices and implants, init|Breakdown (mechanical) of urinary devices and implants, init +C2890255|T037|PT|T83.118D|ICD10CM|Breakdown (mechanical) of other urinary devices and implants, subsequent encounter|Breakdown (mechanical) of other urinary devices and implants, subsequent encounter +C2890255|T037|AB|T83.118D|ICD10CM|Breakdown (mechanical) of urinary devices and implants, subs|Breakdown (mechanical) of urinary devices and implants, subs +C2890256|T037|PT|T83.118S|ICD10CM|Breakdown (mechanical) of other urinary devices and implants, sequela|Breakdown (mechanical) of other urinary devices and implants, sequela +C2890256|T037|AB|T83.118S|ICD10CM|Breakdown of urinary devices and implants, sequela|Breakdown of urinary devices and implants, sequela +C2890258|T037|AB|T83.12|ICD10CM|Displacement of other urinary devices and implants|Displacement of other urinary devices and implants +C2890258|T037|HT|T83.12|ICD10CM|Displacement of other urinary devices and implants|Displacement of other urinary devices and implants +C2890257|T037|ET|T83.12|ICD10CM|Malposition of other urinary devices and implants|Malposition of other urinary devices and implants +C2890259|T037|AB|T83.120|ICD10CM|Displacement of urinary electronic stimulator device|Displacement of urinary electronic stimulator device +C2890259|T037|HT|T83.120|ICD10CM|Displacement of urinary electronic stimulator device|Displacement of urinary electronic stimulator device +C2890260|T037|AB|T83.120A|ICD10CM|Displacement of urinary electronic stimulator device, init|Displacement of urinary electronic stimulator device, init +C2890260|T037|PT|T83.120A|ICD10CM|Displacement of urinary electronic stimulator device, initial encounter|Displacement of urinary electronic stimulator device, initial encounter +C2890261|T037|AB|T83.120D|ICD10CM|Displacement of urinary electronic stimulator device, subs|Displacement of urinary electronic stimulator device, subs +C2890261|T037|PT|T83.120D|ICD10CM|Displacement of urinary electronic stimulator device, subsequent encounter|Displacement of urinary electronic stimulator device, subsequent encounter +C2890262|T037|PT|T83.120S|ICD10CM|Displacement of urinary electronic stimulator device, sequela|Displacement of urinary electronic stimulator device, sequela +C2890262|T037|AB|T83.120S|ICD10CM|Displacmnt of urinary electronic stimulator device, sequela|Displacmnt of urinary electronic stimulator device, sequela +C3647597|T046|AB|T83.121|ICD10CM|Displacement of implanted urinary sphincter|Displacement of implanted urinary sphincter +C3647597|T046|HT|T83.121|ICD10CM|Displacement of implanted urinary sphincter|Displacement of implanted urinary sphincter +C2890264|T037|AB|T83.121A|ICD10CM|Displacement of implanted urinary sphincter, init|Displacement of implanted urinary sphincter, init +C2890264|T037|PT|T83.121A|ICD10CM|Displacement of implanted urinary sphincter, initial encounter|Displacement of implanted urinary sphincter, initial encounter +C2890265|T037|AB|T83.121D|ICD10CM|Displacement of implanted urinary sphincter, subs|Displacement of implanted urinary sphincter, subs +C2890265|T037|PT|T83.121D|ICD10CM|Displacement of implanted urinary sphincter, subsequent encounter|Displacement of implanted urinary sphincter, subsequent encounter +C2890266|T037|AB|T83.121S|ICD10CM|Displacement of implanted urinary sphincter, sequela|Displacement of implanted urinary sphincter, sequela +C2890266|T037|PT|T83.121S|ICD10CM|Displacement of implanted urinary sphincter, sequela|Displacement of implanted urinary sphincter, sequela +C4270259|T046|AB|T83.122|ICD10CM|Displacement of indwelling ureteral stent|Displacement of indwelling ureteral stent +C4270259|T046|HT|T83.122|ICD10CM|Displacement of indwelling ureteral stent|Displacement of indwelling ureteral stent +C4270260|T046|AB|T83.122A|ICD10CM|Displacement of indwelling ureteral stent, initial encounter|Displacement of indwelling ureteral stent, initial encounter +C4270260|T046|PT|T83.122A|ICD10CM|Displacement of indwelling ureteral stent, initial encounter|Displacement of indwelling ureteral stent, initial encounter +C4270261|T046|AB|T83.122D|ICD10CM|Displacement of indwelling ureteral stent, subs|Displacement of indwelling ureteral stent, subs +C4270261|T046|PT|T83.122D|ICD10CM|Displacement of indwelling ureteral stent, subsequent encounter|Displacement of indwelling ureteral stent, subsequent encounter +C4270262|T046|AB|T83.122S|ICD10CM|Displacement of indwelling ureteral stent, sequela|Displacement of indwelling ureteral stent, sequela +C4270262|T046|PT|T83.122S|ICD10CM|Displacement of indwelling ureteral stent, sequela|Displacement of indwelling ureteral stent, sequela +C4270264|T046|ET|T83.123|ICD10CM|Displacement of ileal conduit stent|Displacement of ileal conduit stent +C4270265|T046|ET|T83.123|ICD10CM|Displacement of nephroureteral stent|Displacement of nephroureteral stent +C4270263|T046|AB|T83.123|ICD10CM|Displacement of other urinary stents|Displacement of other urinary stents +C4270263|T046|HT|T83.123|ICD10CM|Displacement of other urinary stents|Displacement of other urinary stents +C4270266|T046|AB|T83.123A|ICD10CM|Displacement of other urinary stents, initial encounter|Displacement of other urinary stents, initial encounter +C4270266|T046|PT|T83.123A|ICD10CM|Displacement of other urinary stents, initial encounter|Displacement of other urinary stents, initial encounter +C4270267|T046|AB|T83.123D|ICD10CM|Displacement of other urinary stents, subsequent encounter|Displacement of other urinary stents, subsequent encounter +C4270267|T046|PT|T83.123D|ICD10CM|Displacement of other urinary stents, subsequent encounter|Displacement of other urinary stents, subsequent encounter +C4270268|T046|AB|T83.123S|ICD10CM|Displacement of other urinary stents, sequela|Displacement of other urinary stents, sequela +C4270268|T046|PT|T83.123S|ICD10CM|Displacement of other urinary stents, sequela|Displacement of other urinary stents, sequela +C2890258|T037|HT|T83.128|ICD10CM|Displacement of other urinary devices and implants|Displacement of other urinary devices and implants +C2890258|T037|AB|T83.128|ICD10CM|Displacement of other urinary devices and implants|Displacement of other urinary devices and implants +C2890271|T037|AB|T83.128A|ICD10CM|Displacement of oth urinary devices and implants, init|Displacement of oth urinary devices and implants, init +C2890271|T037|PT|T83.128A|ICD10CM|Displacement of other urinary devices and implants, initial encounter|Displacement of other urinary devices and implants, initial encounter +C2890272|T037|AB|T83.128D|ICD10CM|Displacement of oth urinary devices and implants, subs|Displacement of oth urinary devices and implants, subs +C2890272|T037|PT|T83.128D|ICD10CM|Displacement of other urinary devices and implants, subsequent encounter|Displacement of other urinary devices and implants, subsequent encounter +C2890273|T037|AB|T83.128S|ICD10CM|Displacement of other urinary devices and implants, sequela|Displacement of other urinary devices and implants, sequela +C2890273|T037|PT|T83.128S|ICD10CM|Displacement of other urinary devices and implants, sequela|Displacement of other urinary devices and implants, sequela +C2890274|T037|ET|T83.19|ICD10CM|Leakage of other urinary devices and implants|Leakage of other urinary devices and implants +C2890278|T037|AB|T83.19|ICD10CM|Mech compl of other urinary devices and implants|Mech compl of other urinary devices and implants +C2890275|T037|ET|T83.19|ICD10CM|Obstruction (mechanical) of other urinary devices and implants|Obstruction (mechanical) of other urinary devices and implants +C2890278|T037|HT|T83.19|ICD10CM|Other mechanical complication of other urinary devices and implants|Other mechanical complication of other urinary devices and implants +C2890276|T037|ET|T83.19|ICD10CM|Perforation of other urinary devices and implants|Perforation of other urinary devices and implants +C2890277|T037|ET|T83.19|ICD10CM|Protrusion of other urinary devices and implants|Protrusion of other urinary devices and implants +C2890279|T037|AB|T83.190|ICD10CM|Mech compl of urinary electronic stimulator device|Mech compl of urinary electronic stimulator device +C2890279|T037|HT|T83.190|ICD10CM|Other mechanical complication of urinary electronic stimulator device|Other mechanical complication of urinary electronic stimulator device +C2890280|T037|AB|T83.190A|ICD10CM|Mech compl of urinary electronic stimulator device, init|Mech compl of urinary electronic stimulator device, init +C2890280|T037|PT|T83.190A|ICD10CM|Other mechanical complication of urinary electronic stimulator device, initial encounter|Other mechanical complication of urinary electronic stimulator device, initial encounter +C2890281|T037|AB|T83.190D|ICD10CM|Mech compl of urinary electronic stimulator device, subs|Mech compl of urinary electronic stimulator device, subs +C2890281|T037|PT|T83.190D|ICD10CM|Other mechanical complication of urinary electronic stimulator device, subsequent encounter|Other mechanical complication of urinary electronic stimulator device, subsequent encounter +C2890282|T037|AB|T83.190S|ICD10CM|Mech compl of urinary electronic stimulator device, sequela|Mech compl of urinary electronic stimulator device, sequela +C2890282|T037|PT|T83.190S|ICD10CM|Other mechanical complication of urinary electronic stimulator device, sequela|Other mechanical complication of urinary electronic stimulator device, sequela +C2890283|T037|AB|T83.191|ICD10CM|Other mechanical complication of implanted urinary sphincter|Other mechanical complication of implanted urinary sphincter +C2890283|T037|HT|T83.191|ICD10CM|Other mechanical complication of implanted urinary sphincter|Other mechanical complication of implanted urinary sphincter +C2890284|T037|AB|T83.191A|ICD10CM|Mech compl of implanted urinary sphincter, initial encounter|Mech compl of implanted urinary sphincter, initial encounter +C2890284|T037|PT|T83.191A|ICD10CM|Other mechanical complication of implanted urinary sphincter, initial encounter|Other mechanical complication of implanted urinary sphincter, initial encounter +C2890285|T037|AB|T83.191D|ICD10CM|Mech compl of implanted urinary sphincter, subs|Mech compl of implanted urinary sphincter, subs +C2890285|T037|PT|T83.191D|ICD10CM|Other mechanical complication of implanted urinary sphincter, subsequent encounter|Other mechanical complication of implanted urinary sphincter, subsequent encounter +C2890286|T037|AB|T83.191S|ICD10CM|Mech compl of implanted urinary sphincter, sequela|Mech compl of implanted urinary sphincter, sequela +C2890286|T037|PT|T83.191S|ICD10CM|Other mechanical complication of implanted urinary sphincter, sequela|Other mechanical complication of implanted urinary sphincter, sequela +C4270269|T046|AB|T83.192|ICD10CM|Other mechanical complication of indwelling ureteral stent|Other mechanical complication of indwelling ureteral stent +C4270269|T046|HT|T83.192|ICD10CM|Other mechanical complication of indwelling ureteral stent|Other mechanical complication of indwelling ureteral stent +C4270270|T046|AB|T83.192A|ICD10CM|Mech compl of indwelling ureteral stent, initial encounter|Mech compl of indwelling ureteral stent, initial encounter +C4270270|T046|PT|T83.192A|ICD10CM|Other mechanical complication of indwelling ureteral stent, initial encounter|Other mechanical complication of indwelling ureteral stent, initial encounter +C4270271|T046|AB|T83.192D|ICD10CM|Mech compl of indwelling ureteral stent, subs|Mech compl of indwelling ureteral stent, subs +C4270271|T046|PT|T83.192D|ICD10CM|Other mechanical complication of indwelling ureteral stent, subsequent encounter|Other mechanical complication of indwelling ureteral stent, subsequent encounter +C4270272|T046|AB|T83.192S|ICD10CM|Mech compl of indwelling ureteral stent, sequela|Mech compl of indwelling ureteral stent, sequela +C4270272|T046|PT|T83.192S|ICD10CM|Other mechanical complication of indwelling ureteral stent, sequela|Other mechanical complication of indwelling ureteral stent, sequela +C4270274|T046|ET|T83.193|ICD10CM|Other mechanical complication of ileal conduit stent|Other mechanical complication of ileal conduit stent +C4270275|T046|ET|T83.193|ICD10CM|Other mechanical complication of nephroureteral stent|Other mechanical complication of nephroureteral stent +C4270273|T046|AB|T83.193|ICD10CM|Other mechanical complication of other urinary stent|Other mechanical complication of other urinary stent +C4270273|T046|HT|T83.193|ICD10CM|Other mechanical complication of other urinary stent|Other mechanical complication of other urinary stent +C4270276|T046|AB|T83.193A|ICD10CM|Mech compl of other urinary stent, initial encounter|Mech compl of other urinary stent, initial encounter +C4270276|T046|PT|T83.193A|ICD10CM|Other mechanical complication of other urinary stent, initial encounter|Other mechanical complication of other urinary stent, initial encounter +C4270277|T046|AB|T83.193D|ICD10CM|Mech compl of other urinary stent, subsequent encounter|Mech compl of other urinary stent, subsequent encounter +C4270277|T046|PT|T83.193D|ICD10CM|Other mechanical complication of other urinary stent, subsequent encounter|Other mechanical complication of other urinary stent, subsequent encounter +C4270278|T046|AB|T83.193S|ICD10CM|Mech compl of other urinary stent, sequela|Mech compl of other urinary stent, sequela +C4270278|T046|PT|T83.193S|ICD10CM|Other mechanical complication of other urinary stent, sequela|Other mechanical complication of other urinary stent, sequela +C2890278|T037|AB|T83.198|ICD10CM|Mech compl of other urinary devices and implants|Mech compl of other urinary devices and implants +C2890278|T037|HT|T83.198|ICD10CM|Other mechanical complication of other urinary devices and implants|Other mechanical complication of other urinary devices and implants +C2890291|T037|AB|T83.198A|ICD10CM|Mech compl of oth urinary devices and implants, init encntr|Mech compl of oth urinary devices and implants, init encntr +C2890291|T037|PT|T83.198A|ICD10CM|Other mechanical complication of other urinary devices and implants, initial encounter|Other mechanical complication of other urinary devices and implants, initial encounter +C2890292|T037|AB|T83.198D|ICD10CM|Mech compl of oth urinary devices and implants, subs encntr|Mech compl of oth urinary devices and implants, subs encntr +C2890292|T037|PT|T83.198D|ICD10CM|Other mechanical complication of other urinary devices and implants, subsequent encounter|Other mechanical complication of other urinary devices and implants, subsequent encounter +C2890293|T037|AB|T83.198S|ICD10CM|Mech compl of other urinary devices and implants, sequela|Mech compl of other urinary devices and implants, sequela +C2890293|T037|PT|T83.198S|ICD10CM|Other mechanical complication of other urinary devices and implants, sequela|Other mechanical complication of other urinary devices and implants, sequela +C0496144|T046|PT|T83.2|ICD10|Mechanical complication of graft of urinary organ|Mechanical complication of graft of urinary organ +C0496144|T046|HT|T83.2|ICD10CM|Mechanical complication of graft of urinary organ|Mechanical complication of graft of urinary organ +C0496144|T046|AB|T83.2|ICD10CM|Mechanical complication of graft of urinary organ|Mechanical complication of graft of urinary organ +C2890294|T037|AB|T83.21|ICD10CM|Breakdown (mechanical) of graft of urinary organ|Breakdown (mechanical) of graft of urinary organ +C2890294|T037|HT|T83.21|ICD10CM|Breakdown (mechanical) of graft of urinary organ|Breakdown (mechanical) of graft of urinary organ +C2890295|T037|AB|T83.21XA|ICD10CM|Breakdown (mechanical) of graft of urinary organ, init|Breakdown (mechanical) of graft of urinary organ, init +C2890295|T037|PT|T83.21XA|ICD10CM|Breakdown (mechanical) of graft of urinary organ, initial encounter|Breakdown (mechanical) of graft of urinary organ, initial encounter +C2890296|T037|AB|T83.21XD|ICD10CM|Breakdown (mechanical) of graft of urinary organ, subs|Breakdown (mechanical) of graft of urinary organ, subs +C2890296|T037|PT|T83.21XD|ICD10CM|Breakdown (mechanical) of graft of urinary organ, subsequent encounter|Breakdown (mechanical) of graft of urinary organ, subsequent encounter +C2890297|T037|AB|T83.21XS|ICD10CM|Breakdown (mechanical) of graft of urinary organ, sequela|Breakdown (mechanical) of graft of urinary organ, sequela +C2890297|T037|PT|T83.21XS|ICD10CM|Breakdown (mechanical) of graft of urinary organ, sequela|Breakdown (mechanical) of graft of urinary organ, sequela +C2890299|T037|AB|T83.22|ICD10CM|Displacement of graft of urinary organ|Displacement of graft of urinary organ +C2890299|T037|HT|T83.22|ICD10CM|Displacement of graft of urinary organ|Displacement of graft of urinary organ +C2890298|T037|ET|T83.22|ICD10CM|Malposition of graft of urinary organ|Malposition of graft of urinary organ +C2890300|T037|PT|T83.22XA|ICD10CM|Displacement of graft of urinary organ, initial encounter|Displacement of graft of urinary organ, initial encounter +C2890300|T037|AB|T83.22XA|ICD10CM|Displacement of graft of urinary organ, initial encounter|Displacement of graft of urinary organ, initial encounter +C2890301|T037|AB|T83.22XD|ICD10CM|Displacement of graft of urinary organ, subsequent encounter|Displacement of graft of urinary organ, subsequent encounter +C2890301|T037|PT|T83.22XD|ICD10CM|Displacement of graft of urinary organ, subsequent encounter|Displacement of graft of urinary organ, subsequent encounter +C2890302|T037|PT|T83.22XS|ICD10CM|Displacement of graft of urinary organ, sequela|Displacement of graft of urinary organ, sequela +C2890302|T037|AB|T83.22XS|ICD10CM|Displacement of graft of urinary organ, sequela|Displacement of graft of urinary organ, sequela +C2890303|T037|AB|T83.23|ICD10CM|Leakage of graft of urinary organ|Leakage of graft of urinary organ +C2890303|T037|HT|T83.23|ICD10CM|Leakage of graft of urinary organ|Leakage of graft of urinary organ +C2890304|T037|PT|T83.23XA|ICD10CM|Leakage of graft of urinary organ, initial encounter|Leakage of graft of urinary organ, initial encounter +C2890304|T037|AB|T83.23XA|ICD10CM|Leakage of graft of urinary organ, initial encounter|Leakage of graft of urinary organ, initial encounter +C2890305|T037|PT|T83.23XD|ICD10CM|Leakage of graft of urinary organ, subsequent encounter|Leakage of graft of urinary organ, subsequent encounter +C2890305|T037|AB|T83.23XD|ICD10CM|Leakage of graft of urinary organ, subsequent encounter|Leakage of graft of urinary organ, subsequent encounter +C2890306|T037|PT|T83.23XS|ICD10CM|Leakage of graft of urinary organ, sequela|Leakage of graft of urinary organ, sequela +C2890306|T037|AB|T83.23XS|ICD10CM|Leakage of graft of urinary organ, sequela|Leakage of graft of urinary organ, sequela +C4270279|T046|AB|T83.24|ICD10CM|Erosion of graft of urinary organ|Erosion of graft of urinary organ +C4270279|T046|HT|T83.24|ICD10CM|Erosion of graft of urinary organ|Erosion of graft of urinary organ +C4270280|T046|AB|T83.24XA|ICD10CM|Erosion of graft of urinary organ, initial encounter|Erosion of graft of urinary organ, initial encounter +C4270280|T046|PT|T83.24XA|ICD10CM|Erosion of graft of urinary organ, initial encounter|Erosion of graft of urinary organ, initial encounter +C4270281|T046|AB|T83.24XD|ICD10CM|Erosion of graft of urinary organ, subsequent encounter|Erosion of graft of urinary organ, subsequent encounter +C4270281|T046|PT|T83.24XD|ICD10CM|Erosion of graft of urinary organ, subsequent encounter|Erosion of graft of urinary organ, subsequent encounter +C4270282|T046|PT|T83.24XS|ICD10CM|Erosion of graft of urinary organ, sequela|Erosion of graft of urinary organ, sequela +C4270282|T046|AB|T83.24XS|ICD10CM|Erosion of graft of urinary organ, sequela|Erosion of graft of urinary organ, sequela +C4270283|T046|AB|T83.25|ICD10CM|Exposure of graft of urinary organ|Exposure of graft of urinary organ +C4270283|T046|HT|T83.25|ICD10CM|Exposure of graft of urinary organ|Exposure of graft of urinary organ +C4270284|T046|PT|T83.25XA|ICD10CM|Exposure of graft of urinary organ, initial encounter|Exposure of graft of urinary organ, initial encounter +C4270284|T046|AB|T83.25XA|ICD10CM|Exposure of graft of urinary organ, initial encounter|Exposure of graft of urinary organ, initial encounter +C4270285|T046|PT|T83.25XD|ICD10CM|Exposure of graft of urinary organ, subsequent encounter|Exposure of graft of urinary organ, subsequent encounter +C4270285|T046|AB|T83.25XD|ICD10CM|Exposure of graft of urinary organ, subsequent encounter|Exposure of graft of urinary organ, subsequent encounter +C4270286|T046|AB|T83.25XS|ICD10CM|Exposure of graft of urinary organ, sequela|Exposure of graft of urinary organ, sequela +C4270286|T046|PT|T83.25XS|ICD10CM|Exposure of graft of urinary organ, sequela|Exposure of graft of urinary organ, sequela +C2890307|T037|ET|T83.29|ICD10CM|Obstruction (mechanical) of graft of urinary organ|Obstruction (mechanical) of graft of urinary organ +C2890310|T037|AB|T83.29|ICD10CM|Other mechanical complication of graft of urinary organ|Other mechanical complication of graft of urinary organ +C2890310|T037|HT|T83.29|ICD10CM|Other mechanical complication of graft of urinary organ|Other mechanical complication of graft of urinary organ +C2890308|T037|ET|T83.29|ICD10CM|Perforation of graft of urinary organ|Perforation of graft of urinary organ +C2890309|T037|ET|T83.29|ICD10CM|Protrusion of graft of urinary organ|Protrusion of graft of urinary organ +C2890311|T037|AB|T83.29XA|ICD10CM|Mech compl of graft of urinary organ, initial encounter|Mech compl of graft of urinary organ, initial encounter +C2890311|T037|PT|T83.29XA|ICD10CM|Other mechanical complication of graft of urinary organ, initial encounter|Other mechanical complication of graft of urinary organ, initial encounter +C2890312|T037|AB|T83.29XD|ICD10CM|Mech compl of graft of urinary organ, subsequent encounter|Mech compl of graft of urinary organ, subsequent encounter +C2890312|T037|PT|T83.29XD|ICD10CM|Other mechanical complication of graft of urinary organ, subsequent encounter|Other mechanical complication of graft of urinary organ, subsequent encounter +C2890313|T037|AB|T83.29XS|ICD10CM|Mech compl of graft of urinary organ, sequela|Mech compl of graft of urinary organ, sequela +C2890313|T037|PT|T83.29XS|ICD10CM|Other mechanical complication of graft of urinary organ, sequela|Other mechanical complication of graft of urinary organ, sequela +C0161768|T046|PT|T83.3|ICD10|Mechanical complication of intrauterine contraceptive device|Mechanical complication of intrauterine contraceptive device +C0161768|T046|HT|T83.3|ICD10CM|Mechanical complication of intrauterine contraceptive device|Mechanical complication of intrauterine contraceptive device +C0161768|T046|AB|T83.3|ICD10CM|Mechanical complication of intrauterine contraceptive device|Mechanical complication of intrauterine contraceptive device +C2890314|T037|AB|T83.31|ICD10CM|Breakdown (mechanical) of intrauterine contraceptive device|Breakdown (mechanical) of intrauterine contraceptive device +C2890314|T037|HT|T83.31|ICD10CM|Breakdown (mechanical) of intrauterine contraceptive device|Breakdown (mechanical) of intrauterine contraceptive device +C2890315|T037|AB|T83.31XA|ICD10CM|Breakdown (mechanical) of intrauterine contracep dev, init|Breakdown (mechanical) of intrauterine contracep dev, init +C2890315|T037|PT|T83.31XA|ICD10CM|Breakdown (mechanical) of intrauterine contraceptive device, initial encounter|Breakdown (mechanical) of intrauterine contraceptive device, initial encounter +C2890316|T037|AB|T83.31XD|ICD10CM|Breakdown (mechanical) of intrauterine contracep dev, subs|Breakdown (mechanical) of intrauterine contracep dev, subs +C2890316|T037|PT|T83.31XD|ICD10CM|Breakdown (mechanical) of intrauterine contraceptive device, subsequent encounter|Breakdown (mechanical) of intrauterine contraceptive device, subsequent encounter +C2890317|T037|PT|T83.31XS|ICD10CM|Breakdown (mechanical) of intrauterine contraceptive device, sequela|Breakdown (mechanical) of intrauterine contraceptive device, sequela +C2890317|T037|AB|T83.31XS|ICD10CM|Breakdown of intrauterine contracep dev, sequela|Breakdown of intrauterine contracep dev, sequela +C2890319|T037|AB|T83.32|ICD10CM|Displacement of intrauterine contraceptive device|Displacement of intrauterine contraceptive device +C2890319|T037|HT|T83.32|ICD10CM|Displacement of intrauterine contraceptive device|Displacement of intrauterine contraceptive device +C2890318|T046|ET|T83.32|ICD10CM|Malposition of intrauterine contraceptive device|Malposition of intrauterine contraceptive device +C4270287|T046|ET|T83.32|ICD10CM|Missing string of intrauterine contraceptive device|Missing string of intrauterine contraceptive device +C2890320|T037|AB|T83.32XA|ICD10CM|Displacement of intrauterine contraceptive device, init|Displacement of intrauterine contraceptive device, init +C2890320|T037|PT|T83.32XA|ICD10CM|Displacement of intrauterine contraceptive device, initial encounter|Displacement of intrauterine contraceptive device, initial encounter +C2890321|T037|AB|T83.32XD|ICD10CM|Displacement of intrauterine contraceptive device, subs|Displacement of intrauterine contraceptive device, subs +C2890321|T037|PT|T83.32XD|ICD10CM|Displacement of intrauterine contraceptive device, subsequent encounter|Displacement of intrauterine contraceptive device, subsequent encounter +C2890322|T037|AB|T83.32XS|ICD10CM|Displacement of intrauterine contraceptive device, sequela|Displacement of intrauterine contraceptive device, sequela +C2890322|T037|PT|T83.32XS|ICD10CM|Displacement of intrauterine contraceptive device, sequela|Displacement of intrauterine contraceptive device, sequela +C2890323|T037|ET|T83.39|ICD10CM|Leakage of intrauterine contraceptive device|Leakage of intrauterine contraceptive device +C2890327|T037|AB|T83.39|ICD10CM|Mech compl of intrauterine contraceptive device|Mech compl of intrauterine contraceptive device +C2890324|T037|ET|T83.39|ICD10CM|Obstruction (mechanical) of intrauterine contraceptive device|Obstruction (mechanical) of intrauterine contraceptive device +C2890327|T037|HT|T83.39|ICD10CM|Other mechanical complication of intrauterine contraceptive device|Other mechanical complication of intrauterine contraceptive device +C2890325|T037|ET|T83.39|ICD10CM|Perforation of intrauterine contraceptive device|Perforation of intrauterine contraceptive device +C2890326|T037|ET|T83.39|ICD10CM|Protrusion of intrauterine contraceptive device|Protrusion of intrauterine contraceptive device +C2890328|T037|AB|T83.39XA|ICD10CM|Mech compl of intrauterine contraceptive device, init encntr|Mech compl of intrauterine contraceptive device, init encntr +C2890328|T037|PT|T83.39XA|ICD10CM|Other mechanical complication of intrauterine contraceptive device, initial encounter|Other mechanical complication of intrauterine contraceptive device, initial encounter +C2890329|T037|AB|T83.39XD|ICD10CM|Mech compl of intrauterine contraceptive device, subs encntr|Mech compl of intrauterine contraceptive device, subs encntr +C2890329|T037|PT|T83.39XD|ICD10CM|Other mechanical complication of intrauterine contraceptive device, subsequent encounter|Other mechanical complication of intrauterine contraceptive device, subsequent encounter +C2890330|T037|AB|T83.39XS|ICD10CM|Mech compl of intrauterine contraceptive device, sequela|Mech compl of intrauterine contraceptive device, sequela +C2890330|T037|PT|T83.39XS|ICD10CM|Other mechanical complication of intrauterine contraceptive device, sequela|Other mechanical complication of intrauterine contraceptive device, sequela +C0496145|T046|AB|T83.4|ICD10CM|Mechanical comp of prosth dev/implnt/grft of genitl trct|Mechanical comp of prosth dev/implnt/grft of genitl trct +C0496145|T046|PT|T83.4|ICD10|Mechanical complication of other prosthetic devices, implants and grafts in genital tract|Mechanical complication of other prosthetic devices, implants and grafts in genital tract +C0496145|T046|HT|T83.4|ICD10CM|Mechanical complication of other prosthetic devices, implants and grafts of genital tract|Mechanical complication of other prosthetic devices, implants and grafts of genital tract +C2890331|T037|HT|T83.41|ICD10CM|Breakdown (mechanical) of other prosthetic devices, implants and grafts of genital tract|Breakdown (mechanical) of other prosthetic devices, implants and grafts of genital tract +C2890331|T037|AB|T83.41|ICD10CM|Breakdown of prosth dev/implnt/grft of genitl trct|Breakdown of prosth dev/implnt/grft of genitl trct +C2890332|T037|AB|T83.410|ICD10CM|Breakdown (mechanical) of implanted penile prosthesis|Breakdown (mechanical) of implanted penile prosthesis +C2890332|T037|HT|T83.410|ICD10CM|Breakdown (mechanical) of implanted penile prosthesis|Breakdown (mechanical) of implanted penile prosthesis +C4270288|T046|ET|T83.410|ICD10CM|Breakdown (mechanical) of penile prosthesis cylinder|Breakdown (mechanical) of penile prosthesis cylinder +C4270289|T046|ET|T83.410|ICD10CM|Breakdown (mechanical) of penile prosthesis pump|Breakdown (mechanical) of penile prosthesis pump +C4270290|T046|ET|T83.410|ICD10CM|Breakdown (mechanical) of penile prosthesis reservoir|Breakdown (mechanical) of penile prosthesis reservoir +C2890333|T037|AB|T83.410A|ICD10CM|Breakdown (mechanical) of implanted penile prosthesis, init|Breakdown (mechanical) of implanted penile prosthesis, init +C2890333|T037|PT|T83.410A|ICD10CM|Breakdown (mechanical) of implanted penile prosthesis, initial encounter|Breakdown (mechanical) of implanted penile prosthesis, initial encounter +C2890334|T037|AB|T83.410D|ICD10CM|Breakdown (mechanical) of implanted penile prosthesis, subs|Breakdown (mechanical) of implanted penile prosthesis, subs +C2890334|T037|PT|T83.410D|ICD10CM|Breakdown (mechanical) of implanted penile prosthesis, subsequent encounter|Breakdown (mechanical) of implanted penile prosthesis, subsequent encounter +C2890335|T037|PT|T83.410S|ICD10CM|Breakdown (mechanical) of implanted penile prosthesis, sequela|Breakdown (mechanical) of implanted penile prosthesis, sequela +C2890335|T037|AB|T83.410S|ICD10CM|Breakdown of implanted penile prosthesis, sequela|Breakdown of implanted penile prosthesis, sequela +C4270291|T046|AB|T83.411|ICD10CM|Breakdown (mechanical) of implanted testicular prosthesis|Breakdown (mechanical) of implanted testicular prosthesis +C4270291|T046|HT|T83.411|ICD10CM|Breakdown (mechanical) of implanted testicular prosthesis|Breakdown (mechanical) of implanted testicular prosthesis +C4270292|T046|PT|T83.411A|ICD10CM|Breakdown (mechanical) of implanted testicular prosthesis, initial encounter|Breakdown (mechanical) of implanted testicular prosthesis, initial encounter +C4270292|T046|AB|T83.411A|ICD10CM|Breakdown of implanted testicular prosthesis, init|Breakdown of implanted testicular prosthesis, init +C4270293|T046|PT|T83.411D|ICD10CM|Breakdown (mechanical) of implanted testicular prosthesis, subsequent encounter|Breakdown (mechanical) of implanted testicular prosthesis, subsequent encounter +C4270293|T046|AB|T83.411D|ICD10CM|Breakdown of implanted testicular prosthesis, subs|Breakdown of implanted testicular prosthesis, subs +C4270294|T046|PT|T83.411S|ICD10CM|Breakdown (mechanical) of implanted testicular prosthesis, sequela|Breakdown (mechanical) of implanted testicular prosthesis, sequela +C4270294|T046|AB|T83.411S|ICD10CM|Breakdown of implanted testicular prosthesis, sequela|Breakdown of implanted testicular prosthesis, sequela +C2890331|T037|HT|T83.418|ICD10CM|Breakdown (mechanical) of other prosthetic devices, implants and grafts of genital tract|Breakdown (mechanical) of other prosthetic devices, implants and grafts of genital tract +C2890331|T037|AB|T83.418|ICD10CM|Breakdown of prosth dev/implnt/grft of genitl trct|Breakdown of prosth dev/implnt/grft of genitl trct +C2890336|T037|AB|T83.418A|ICD10CM|Breakdown of prosth dev/implnt/grft of genitl trct, init|Breakdown of prosth dev/implnt/grft of genitl trct, init +C2890337|T037|AB|T83.418D|ICD10CM|Breakdown of prosth dev/implnt/grft of genitl trct, subs|Breakdown of prosth dev/implnt/grft of genitl trct, subs +C2890338|T037|PT|T83.418S|ICD10CM|Breakdown (mechanical) of other prosthetic devices, implants and grafts of genital tract, sequela|Breakdown (mechanical) of other prosthetic devices, implants and grafts of genital tract, sequela +C2890338|T037|AB|T83.418S|ICD10CM|Breakdown of prosth dev/implnt/grft of genitl trct, sequela|Breakdown of prosth dev/implnt/grft of genitl trct, sequela +C2890340|T037|HT|T83.42|ICD10CM|Displacement of other prosthetic devices, implants and grafts of genital tract|Displacement of other prosthetic devices, implants and grafts of genital tract +C2890340|T037|AB|T83.42|ICD10CM|Displacement of prosth dev/implnt/grft of genital tract|Displacement of prosth dev/implnt/grft of genital tract +C2890339|T037|ET|T83.42|ICD10CM|Malposition of other prosthetic devices, implants and grafts of genital tract|Malposition of other prosthetic devices, implants and grafts of genital tract +C2890341|T037|AB|T83.420|ICD10CM|Displacement of implanted penile prosthesis|Displacement of implanted penile prosthesis +C2890341|T037|HT|T83.420|ICD10CM|Displacement of implanted penile prosthesis|Displacement of implanted penile prosthesis +C4270295|T046|ET|T83.420|ICD10CM|Displacement of penile prosthesis cylinder|Displacement of penile prosthesis cylinder +C4270296|T046|ET|T83.420|ICD10CM|Displacement of penile prosthesis pump|Displacement of penile prosthesis pump +C4270297|T046|ET|T83.420|ICD10CM|Displacement of penile prosthesis reservoir|Displacement of penile prosthesis reservoir +C2890342|T037|AB|T83.420A|ICD10CM|Displacement of implanted penile prosthesis, init|Displacement of implanted penile prosthesis, init +C2890342|T037|PT|T83.420A|ICD10CM|Displacement of implanted penile prosthesis, initial encounter|Displacement of implanted penile prosthesis, initial encounter +C2890343|T037|AB|T83.420D|ICD10CM|Displacement of implanted penile prosthesis, subs|Displacement of implanted penile prosthesis, subs +C2890343|T037|PT|T83.420D|ICD10CM|Displacement of implanted penile prosthesis, subsequent encounter|Displacement of implanted penile prosthesis, subsequent encounter +C2890344|T037|AB|T83.420S|ICD10CM|Displacement of implanted penile prosthesis, sequela|Displacement of implanted penile prosthesis, sequela +C2890344|T037|PT|T83.420S|ICD10CM|Displacement of implanted penile prosthesis, sequela|Displacement of implanted penile prosthesis, sequela +C4270298|T046|AB|T83.421|ICD10CM|Displacement of implanted testicular prosthesis|Displacement of implanted testicular prosthesis +C4270298|T046|HT|T83.421|ICD10CM|Displacement of implanted testicular prosthesis|Displacement of implanted testicular prosthesis +C4270299|T046|AB|T83.421A|ICD10CM|Displacement of implanted testicular prosthesis, init|Displacement of implanted testicular prosthesis, init +C4270299|T046|PT|T83.421A|ICD10CM|Displacement of implanted testicular prosthesis, initial encounter|Displacement of implanted testicular prosthesis, initial encounter +C4270300|T046|AB|T83.421D|ICD10CM|Displacement of implanted testicular prosthesis, subs|Displacement of implanted testicular prosthesis, subs +C4270300|T046|PT|T83.421D|ICD10CM|Displacement of implanted testicular prosthesis, subsequent encounter|Displacement of implanted testicular prosthesis, subsequent encounter +C4270301|T046|AB|T83.421S|ICD10CM|Displacement of implanted testicular prosthesis, sequela|Displacement of implanted testicular prosthesis, sequela +C4270301|T046|PT|T83.421S|ICD10CM|Displacement of implanted testicular prosthesis, sequela|Displacement of implanted testicular prosthesis, sequela +C2890340|T037|HT|T83.428|ICD10CM|Displacement of other prosthetic devices, implants and grafts of genital tract|Displacement of other prosthetic devices, implants and grafts of genital tract +C2890340|T037|AB|T83.428|ICD10CM|Displacement of prosth dev/implnt/grft of genital tract|Displacement of prosth dev/implnt/grft of genital tract +C2890345|T037|PT|T83.428A|ICD10CM|Displacement of other prosthetic devices, implants and grafts of genital tract, initial encounter|Displacement of other prosthetic devices, implants and grafts of genital tract, initial encounter +C2890345|T037|AB|T83.428A|ICD10CM|Displacement of prosth dev/implnt/grft of genitl trct, init|Displacement of prosth dev/implnt/grft of genitl trct, init +C2890346|T037|PT|T83.428D|ICD10CM|Displacement of other prosthetic devices, implants and grafts of genital tract, subsequent encounter|Displacement of other prosthetic devices, implants and grafts of genital tract, subsequent encounter +C2890346|T037|AB|T83.428D|ICD10CM|Displacement of prosth dev/implnt/grft of genitl trct, subs|Displacement of prosth dev/implnt/grft of genitl trct, subs +C2890347|T037|PT|T83.428S|ICD10CM|Displacement of other prosthetic devices, implants and grafts of genital tract, sequela|Displacement of other prosthetic devices, implants and grafts of genital tract, sequela +C2890347|T037|AB|T83.428S|ICD10CM|Displacmnt of prosth dev/implnt/grft of genitl trct, sequela|Displacmnt of prosth dev/implnt/grft of genitl trct, sequela +C2890348|T037|ET|T83.49|ICD10CM|Leakage of other prosthetic devices, implants and grafts of genital tract|Leakage of other prosthetic devices, implants and grafts of genital tract +C2890352|T037|AB|T83.49|ICD10CM|Mech compl of prosth dev/implnt/grft of genital tract|Mech compl of prosth dev/implnt/grft of genital tract +C2890349|T037|ET|T83.49|ICD10CM|Obstruction, mechanical of other prosthetic devices, implants and grafts of genital tract|Obstruction, mechanical of other prosthetic devices, implants and grafts of genital tract +C2890352|T037|HT|T83.49|ICD10CM|Other mechanical complication of other prosthetic devices, implants and grafts of genital tract|Other mechanical complication of other prosthetic devices, implants and grafts of genital tract +C2890350|T037|ET|T83.49|ICD10CM|Perforation of other prosthetic devices, implants and grafts of genital tract|Perforation of other prosthetic devices, implants and grafts of genital tract +C2890351|T037|ET|T83.49|ICD10CM|Protrusion of other prosthetic devices, implants and grafts of genital tract|Protrusion of other prosthetic devices, implants and grafts of genital tract +C2890353|T037|AB|T83.490|ICD10CM|Other mechanical complication of implanted penile prosthesis|Other mechanical complication of implanted penile prosthesis +C2890353|T037|HT|T83.490|ICD10CM|Other mechanical complication of implanted penile prosthesis|Other mechanical complication of implanted penile prosthesis +C4270302|T046|ET|T83.490|ICD10CM|Other mechanical complication of penile prosthesis cylinder|Other mechanical complication of penile prosthesis cylinder +C4270303|T046|ET|T83.490|ICD10CM|Other mechanical complication of penile prosthesis pump|Other mechanical complication of penile prosthesis pump +C4270304|T046|ET|T83.490|ICD10CM|Other mechanical complication of penile prosthesis reservoir|Other mechanical complication of penile prosthesis reservoir +C2890354|T037|AB|T83.490A|ICD10CM|Mech compl of implanted penile prosthesis, initial encounter|Mech compl of implanted penile prosthesis, initial encounter +C2890354|T037|PT|T83.490A|ICD10CM|Other mechanical complication of implanted penile prosthesis, initial encounter|Other mechanical complication of implanted penile prosthesis, initial encounter +C2890355|T037|AB|T83.490D|ICD10CM|Mech compl of implanted penile prosthesis, subs|Mech compl of implanted penile prosthesis, subs +C2890355|T037|PT|T83.490D|ICD10CM|Other mechanical complication of implanted penile prosthesis, subsequent encounter|Other mechanical complication of implanted penile prosthesis, subsequent encounter +C2890356|T037|AB|T83.490S|ICD10CM|Mech compl of implanted penile prosthesis, sequela|Mech compl of implanted penile prosthesis, sequela +C2890356|T037|PT|T83.490S|ICD10CM|Other mechanical complication of implanted penile prosthesis, sequela|Other mechanical complication of implanted penile prosthesis, sequela +C4270305|T046|AB|T83.491|ICD10CM|Mech compl of implanted testicular prosthesis|Mech compl of implanted testicular prosthesis +C4270305|T046|HT|T83.491|ICD10CM|Other mechanical complication of implanted testicular prosthesis|Other mechanical complication of implanted testicular prosthesis +C4270306|T046|AB|T83.491A|ICD10CM|Mech compl of implanted testicular prosthesis, init|Mech compl of implanted testicular prosthesis, init +C4270306|T046|PT|T83.491A|ICD10CM|Other mechanical complication of implanted testicular prosthesis, initial encounter|Other mechanical complication of implanted testicular prosthesis, initial encounter +C4270307|T046|AB|T83.491D|ICD10CM|Mech compl of implanted testicular prosthesis, subs|Mech compl of implanted testicular prosthesis, subs +C4270307|T046|PT|T83.491D|ICD10CM|Other mechanical complication of implanted testicular prosthesis, subsequent encounter|Other mechanical complication of implanted testicular prosthesis, subsequent encounter +C4270308|T046|AB|T83.491S|ICD10CM|Mech compl of implanted testicular prosthesis, sequela|Mech compl of implanted testicular prosthesis, sequela +C4270308|T046|PT|T83.491S|ICD10CM|Other mechanical complication of implanted testicular prosthesis, sequela|Other mechanical complication of implanted testicular prosthesis, sequela +C2890352|T037|AB|T83.498|ICD10CM|Mech compl of prosth dev/implnt/grft of genital tract|Mech compl of prosth dev/implnt/grft of genital tract +C2890352|T037|HT|T83.498|ICD10CM|Other mechanical complication of other prosthetic devices, implants and grafts of genital tract|Other mechanical complication of other prosthetic devices, implants and grafts of genital tract +C2890357|T037|AB|T83.498A|ICD10CM|Mech compl of prosth dev/implnt/grft of genital tract, init|Mech compl of prosth dev/implnt/grft of genital tract, init +C2890358|T037|AB|T83.498D|ICD10CM|Mech compl of prosth dev/implnt/grft of genital tract, subs|Mech compl of prosth dev/implnt/grft of genital tract, subs +C2890359|T037|AB|T83.498S|ICD10CM|Mech compl of prosth dev/implnt/grft of genitl trct, sequela|Mech compl of prosth dev/implnt/grft of genitl trct, sequela +C0452106|T047|AB|T83.5|ICD10CM|Infect/inflm reaction due to prosth dev/grft in urinry sys|Infect/inflm reaction due to prosth dev/grft in urinry sys +C0452106|T047|HT|T83.5|ICD10CM|Infection and inflammatory reaction due to prosthetic device, implant and graft in urinary system|Infection and inflammatory reaction due to prosthetic device, implant and graft in urinary system +C0452106|T047|PT|T83.5|ICD10|Infection and inflammatory reaction due to prosthetic device, implant and graft in urinary system|Infection and inflammatory reaction due to prosthetic device, implant and graft in urinary system +C4270309|T046|AB|T83.51|ICD10CM|Infection and inflammatory reaction due to urinary catheter|Infection and inflammatory reaction due to urinary catheter +C4270309|T046|HT|T83.51|ICD10CM|Infection and inflammatory reaction due to urinary catheter|Infection and inflammatory reaction due to urinary catheter +C4270310|T046|AB|T83.510|ICD10CM|I/I react d/t cystostomy catheter|I/I react d/t cystostomy catheter +C4270310|T046|HT|T83.510|ICD10CM|Infection and inflammatory reaction due to cystostomy catheter|Infection and inflammatory reaction due to cystostomy catheter +C4270311|T046|AB|T83.510A|ICD10CM|I/I react d/t cystostomy catheter, initial encounter|I/I react d/t cystostomy catheter, initial encounter +C4270311|T046|PT|T83.510A|ICD10CM|Infection and inflammatory reaction due to cystostomy catheter, initial encounter|Infection and inflammatory reaction due to cystostomy catheter, initial encounter +C4270312|T046|AB|T83.510D|ICD10CM|I/I react d/t cystostomy catheter, subsequent encounter|I/I react d/t cystostomy catheter, subsequent encounter +C4270312|T046|PT|T83.510D|ICD10CM|Infection and inflammatory reaction due to cystostomy catheter, subsequent encounter|Infection and inflammatory reaction due to cystostomy catheter, subsequent encounter +C4270313|T046|AB|T83.510S|ICD10CM|I/I react d/t cystostomy catheter, sequela|I/I react d/t cystostomy catheter, sequela +C4270313|T046|PT|T83.510S|ICD10CM|Infection and inflammatory reaction due to cystostomy catheter, sequela|Infection and inflammatory reaction due to cystostomy catheter, sequela +C4270314|T046|AB|T83.511|ICD10CM|I/I react d/t indwelling urethral catheter|I/I react d/t indwelling urethral catheter +C4270314|T046|HT|T83.511|ICD10CM|Infection and inflammatory reaction due to indwelling urethral catheter|Infection and inflammatory reaction due to indwelling urethral catheter +C4270315|T046|AB|T83.511A|ICD10CM|I/I react d/t indwelling urethral catheter, init|I/I react d/t indwelling urethral catheter, init +C4270315|T046|PT|T83.511A|ICD10CM|Infection and inflammatory reaction due to indwelling urethral catheter, initial encounter|Infection and inflammatory reaction due to indwelling urethral catheter, initial encounter +C4270316|T046|AB|T83.511D|ICD10CM|I/I react d/t indwelling urethral catheter, subs|I/I react d/t indwelling urethral catheter, subs +C4270316|T046|PT|T83.511D|ICD10CM|Infection and inflammatory reaction due to indwelling urethral catheter, subsequent encounter|Infection and inflammatory reaction due to indwelling urethral catheter, subsequent encounter +C4270317|T046|AB|T83.511S|ICD10CM|I/I react d/t indwelling urethral catheter, sequela|I/I react d/t indwelling urethral catheter, sequela +C4270317|T046|PT|T83.511S|ICD10CM|Infection and inflammatory reaction due to indwelling urethral catheter, sequela|Infection and inflammatory reaction due to indwelling urethral catheter, sequela +C4270318|T046|AB|T83.512|ICD10CM|I/I react d/t nephrostomy catheter|I/I react d/t nephrostomy catheter +C4270318|T046|HT|T83.512|ICD10CM|Infection and inflammatory reaction due to nephrostomy catheter|Infection and inflammatory reaction due to nephrostomy catheter +C4270319|T046|AB|T83.512A|ICD10CM|I/I react d/t nephrostomy catheter, initial encounter|I/I react d/t nephrostomy catheter, initial encounter +C4270319|T046|PT|T83.512A|ICD10CM|Infection and inflammatory reaction due to nephrostomy catheter, initial encounter|Infection and inflammatory reaction due to nephrostomy catheter, initial encounter +C4270320|T046|AB|T83.512D|ICD10CM|I/I react d/t nephrostomy catheter, subsequent encounter|I/I react d/t nephrostomy catheter, subsequent encounter +C4270320|T046|PT|T83.512D|ICD10CM|Infection and inflammatory reaction due to nephrostomy catheter, subsequent encounter|Infection and inflammatory reaction due to nephrostomy catheter, subsequent encounter +C4270321|T046|AB|T83.512S|ICD10CM|I/I react d/t nephrostomy catheter, sequela|I/I react d/t nephrostomy catheter, sequela +C4270321|T046|PT|T83.512S|ICD10CM|Infection and inflammatory reaction due to nephrostomy catheter, sequela|Infection and inflammatory reaction due to nephrostomy catheter, sequela +C4270322|T046|AB|T83.518|ICD10CM|I/I react d/t other urinary catheter|I/I react d/t other urinary catheter +C4270323|T046|ET|T83.518|ICD10CM|Infection and inflammatory reaction due to Hopkins catheter|Infection and inflammatory reaction due to Hopkins catheter +C4270324|T046|ET|T83.518|ICD10CM|Infection and inflammatory reaction due to ileostomy catheter|Infection and inflammatory reaction due to ileostomy catheter +C4270322|T046|HT|T83.518|ICD10CM|Infection and inflammatory reaction due to other urinary catheter|Infection and inflammatory reaction due to other urinary catheter +C4270325|T046|ET|T83.518|ICD10CM|Infection and inflammatory reaction due to urostomy catheter|Infection and inflammatory reaction due to urostomy catheter +C4270326|T046|AB|T83.518A|ICD10CM|I/I react d/t other urinary catheter, initial encounter|I/I react d/t other urinary catheter, initial encounter +C4270326|T046|PT|T83.518A|ICD10CM|Infection and inflammatory reaction due to other urinary catheter, initial encounter|Infection and inflammatory reaction due to other urinary catheter, initial encounter +C4270327|T046|AB|T83.518D|ICD10CM|I/I react d/t other urinary catheter, subsequent encounter|I/I react d/t other urinary catheter, subsequent encounter +C4270327|T046|PT|T83.518D|ICD10CM|Infection and inflammatory reaction due to other urinary catheter, subsequent encounter|Infection and inflammatory reaction due to other urinary catheter, subsequent encounter +C4270328|T046|AB|T83.518S|ICD10CM|I/I react d/t other urinary catheter, sequela|I/I react d/t other urinary catheter, sequela +C4270328|T046|PT|T83.518S|ICD10CM|Infection and inflammatory reaction due to other urinary catheter, sequela|Infection and inflammatory reaction due to other urinary catheter, sequela +C0452106|T047|AB|T83.59|ICD10CM|Infect/inflm reaction due to prosth dev/grft in urinry sys|Infect/inflm reaction due to prosth dev/grft in urinry sys +C0452106|T047|HT|T83.59|ICD10CM|Infection and inflammatory reaction due to prosthetic device, implant and graft in urinary system|Infection and inflammatory reaction due to prosthetic device, implant and graft in urinary system +C4270329|T046|AB|T83.590|ICD10CM|I/I react d/t implanted urinary neurostimulation device|I/I react d/t implanted urinary neurostimulation device +C4270329|T046|HT|T83.590|ICD10CM|Infection and inflammatory reaction due to implanted urinary neurostimulation device|Infection and inflammatory reaction due to implanted urinary neurostimulation device +C4270330|T046|AB|T83.590A|ICD10CM|I/I react d/t implanted urn nstim dev, initial encounter|I/I react d/t implanted urn nstim dev, initial encounter +C4270331|T046|AB|T83.590D|ICD10CM|I/I react d/t implanted urn nstim dev, subsequent encounter|I/I react d/t implanted urn nstim dev, subsequent encounter +C4270332|T046|AB|T83.590S|ICD10CM|I/I react d/t implanted urn nstim dev, sequela|I/I react d/t implanted urn nstim dev, sequela +C4270332|T046|PT|T83.590S|ICD10CM|Infection and inflammatory reaction due to implanted urinary neurostimulation device, sequela|Infection and inflammatory reaction due to implanted urinary neurostimulation device, sequela +C4270333|T046|AB|T83.591|ICD10CM|I/I react d/t implanted urinary sphincter|I/I react d/t implanted urinary sphincter +C4270333|T046|HT|T83.591|ICD10CM|Infection and inflammatory reaction due to implanted urinary sphincter|Infection and inflammatory reaction due to implanted urinary sphincter +C4270334|T046|AB|T83.591A|ICD10CM|I/I react d/t implanted urinary sphincter, initial encounter|I/I react d/t implanted urinary sphincter, initial encounter +C4270334|T046|PT|T83.591A|ICD10CM|Infection and inflammatory reaction due to implanted urinary sphincter, initial encounter|Infection and inflammatory reaction due to implanted urinary sphincter, initial encounter +C4270335|T046|AB|T83.591D|ICD10CM|I/I react d/t implanted urinary sphincter, subs|I/I react d/t implanted urinary sphincter, subs +C4270335|T046|PT|T83.591D|ICD10CM|Infection and inflammatory reaction due to implanted urinary sphincter, subsequent encounter|Infection and inflammatory reaction due to implanted urinary sphincter, subsequent encounter +C4270336|T046|AB|T83.591S|ICD10CM|I/I react d/t implanted urinary sphincter, sequela|I/I react d/t implanted urinary sphincter, sequela +C4270336|T046|PT|T83.591S|ICD10CM|Infection and inflammatory reaction due to implanted urinary sphincter, sequela|Infection and inflammatory reaction due to implanted urinary sphincter, sequela +C4270337|T046|AB|T83.592|ICD10CM|I/I react d/t indwelling ureteral stent|I/I react d/t indwelling ureteral stent +C4270337|T046|HT|T83.592|ICD10CM|Infection and inflammatory reaction due to indwelling ureteral stent|Infection and inflammatory reaction due to indwelling ureteral stent +C4270338|T046|AB|T83.592A|ICD10CM|I/I react d/t indwelling ureteral stent, initial encounter|I/I react d/t indwelling ureteral stent, initial encounter +C4270338|T046|PT|T83.592A|ICD10CM|Infection and inflammatory reaction due to indwelling ureteral stent, initial encounter|Infection and inflammatory reaction due to indwelling ureteral stent, initial encounter +C4270339|T046|AB|T83.592D|ICD10CM|I/I react d/t indwelling ureteral stent, subs|I/I react d/t indwelling ureteral stent, subs +C4270339|T046|PT|T83.592D|ICD10CM|Infection and inflammatory reaction due to indwelling ureteral stent, subsequent encounter|Infection and inflammatory reaction due to indwelling ureteral stent, subsequent encounter +C4270340|T046|AB|T83.592S|ICD10CM|I/I react d/t indwelling ureteral stent, sequela|I/I react d/t indwelling ureteral stent, sequela +C4270340|T046|PT|T83.592S|ICD10CM|Infection and inflammatory reaction due to indwelling ureteral stent, sequela|Infection and inflammatory reaction due to indwelling ureteral stent, sequela +C4270341|T046|AB|T83.593|ICD10CM|I/I react d/t other urinary stents|I/I react d/t other urinary stents +C4270342|T046|ET|T83.593|ICD10CM|Infection and inflammatory reaction due to ileal conduit stents|Infection and inflammatory reaction due to ileal conduit stents +C4270343|T046|ET|T83.593|ICD10CM|Infection and inflammatory reaction due to nephroureteral stent|Infection and inflammatory reaction due to nephroureteral stent +C4270341|T046|HT|T83.593|ICD10CM|Infection and inflammatory reaction due to other urinary stents|Infection and inflammatory reaction due to other urinary stents +C4270344|T046|AB|T83.593A|ICD10CM|I/I react d/t other urinary stents, initial encounter|I/I react d/t other urinary stents, initial encounter +C4270344|T046|PT|T83.593A|ICD10CM|Infection and inflammatory reaction due to other urinary stents, initial encounter|Infection and inflammatory reaction due to other urinary stents, initial encounter +C4270345|T046|AB|T83.593D|ICD10CM|I/I react d/t other urinary stents, subsequent encounter|I/I react d/t other urinary stents, subsequent encounter +C4270345|T046|PT|T83.593D|ICD10CM|Infection and inflammatory reaction due to other urinary stents, subsequent encounter|Infection and inflammatory reaction due to other urinary stents, subsequent encounter +C4270346|T046|AB|T83.593S|ICD10CM|I/I react d/t other urinary stents, sequela|I/I react d/t other urinary stents, sequela +C4270346|T046|PT|T83.593S|ICD10CM|Infection and inflammatory reaction due to other urinary stents, sequela|Infection and inflammatory reaction due to other urinary stents, sequela +C4270347|T046|AB|T83.598|ICD10CM|I/I react d/t other prosth dev/grft in urinary system|I/I react d/t other prosth dev/grft in urinary system +C4270348|T046|AB|T83.598A|ICD10CM|I/I react d/t other prosth dev/grft urn sys, init|I/I react d/t other prosth dev/grft urn sys, init +C4270349|T046|AB|T83.598D|ICD10CM|I/I react d/t other prosth dev/grft in urinary system, subs|I/I react d/t other prosth dev/grft in urinary system, subs +C4270350|T046|AB|T83.598S|ICD10CM|I/I react d/t other prosth dev/grft urn sys, sequela|I/I react d/t other prosth dev/grft urn sys, sequela +C0452107|T047|AB|T83.6|ICD10CM|Infect/inflm reaction due to prosth dev/grft in genitl trct|Infect/inflm reaction due to prosth dev/grft in genitl trct +C0452107|T047|HT|T83.6|ICD10CM|Infection and inflammatory reaction due to prosthetic device, implant and graft in genital tract|Infection and inflammatory reaction due to prosthetic device, implant and graft in genital tract +C0452107|T047|PT|T83.6|ICD10|Infection and inflammatory reaction due to prosthetic device, implant and graft in genital tract|Infection and inflammatory reaction due to prosthetic device, implant and graft in genital tract +C4270351|T046|AB|T83.61|ICD10CM|I/I react d/t implanted penile prosthesis|I/I react d/t implanted penile prosthesis +C4270351|T046|HT|T83.61|ICD10CM|Infection and inflammatory reaction due to implanted penile prosthesis|Infection and inflammatory reaction due to implanted penile prosthesis +C4270352|T046|ET|T83.61|ICD10CM|Infection and inflammatory reaction due to penile prosthesis cylinder|Infection and inflammatory reaction due to penile prosthesis cylinder +C4270353|T046|ET|T83.61|ICD10CM|Infection and inflammatory reaction due to penile prosthesis pump|Infection and inflammatory reaction due to penile prosthesis pump +C4270354|T046|ET|T83.61|ICD10CM|Infection and inflammatory reaction due to penile prosthesis reservoir|Infection and inflammatory reaction due to penile prosthesis reservoir +C4270355|T046|AB|T83.61XA|ICD10CM|I/I react d/t implanted penile prosthesis, initial encounter|I/I react d/t implanted penile prosthesis, initial encounter +C4270355|T046|PT|T83.61XA|ICD10CM|Infection and inflammatory reaction due to implanted penile prosthesis, initial encounter|Infection and inflammatory reaction due to implanted penile prosthesis, initial encounter +C4270356|T046|AB|T83.61XD|ICD10CM|I/I react d/t implanted penile prosthesis, subs|I/I react d/t implanted penile prosthesis, subs +C4270356|T046|PT|T83.61XD|ICD10CM|Infection and inflammatory reaction due to implanted penile prosthesis, subsequent encounter|Infection and inflammatory reaction due to implanted penile prosthesis, subsequent encounter +C4270357|T046|AB|T83.61XS|ICD10CM|I/I react d/t implanted penile prosthesis, sequela|I/I react d/t implanted penile prosthesis, sequela +C4270357|T046|PT|T83.61XS|ICD10CM|Infection and inflammatory reaction due to implanted penile prosthesis, sequela|Infection and inflammatory reaction due to implanted penile prosthesis, sequela +C4270358|T046|AB|T83.62|ICD10CM|I/I react d/t implanted testicular prosthesis|I/I react d/t implanted testicular prosthesis +C4270358|T046|HT|T83.62|ICD10CM|Infection and inflammatory reaction due to implanted testicular prosthesis|Infection and inflammatory reaction due to implanted testicular prosthesis +C4270359|T046|AB|T83.62XA|ICD10CM|I/I react d/t implanted testicular prosthesis, init|I/I react d/t implanted testicular prosthesis, init +C4270359|T046|PT|T83.62XA|ICD10CM|Infection and inflammatory reaction due to implanted testicular prosthesis, initial encounter|Infection and inflammatory reaction due to implanted testicular prosthesis, initial encounter +C4270360|T046|AB|T83.62XD|ICD10CM|I/I react d/t implanted testicular prosthesis, subs|I/I react d/t implanted testicular prosthesis, subs +C4270360|T046|PT|T83.62XD|ICD10CM|Infection and inflammatory reaction due to implanted testicular prosthesis, subsequent encounter|Infection and inflammatory reaction due to implanted testicular prosthesis, subsequent encounter +C4270361|T046|AB|T83.62XS|ICD10CM|I/I react d/t implanted testicular prosthesis, sequela|I/I react d/t implanted testicular prosthesis, sequela +C4270361|T046|PT|T83.62XS|ICD10CM|Infection and inflammatory reaction due to implanted testicular prosthesis, sequela|Infection and inflammatory reaction due to implanted testicular prosthesis, sequela +C4270362|T046|AB|T83.69|ICD10CM|I/I react d/t other prosth dev/grft in genital tract|I/I react d/t other prosth dev/grft in genital tract +C4270363|T046|AB|T83.69XA|ICD10CM|I/I react d/t other prosth dev/grft in genital tract, init|I/I react d/t other prosth dev/grft in genital tract, init +C4270364|T046|AB|T83.69XD|ICD10CM|I/I react d/t other prosth dev/grft in genital tract, subs|I/I react d/t other prosth dev/grft in genital tract, subs +C4270365|T046|AB|T83.69XS|ICD10CM|I/I react d/t other prosth dev/grft in genitl trct, sequela|I/I react d/t other prosth dev/grft in genitl trct, sequela +C3263911|T046|HT|T83.7|ICD10CM|Complications due to implanted mesh and other prosthetic materials|Complications due to implanted mesh and other prosthetic materials +C3263911|T046|AB|T83.7|ICD10CM|Complications due to implanted prstht mtrl|Complications due to implanted prstht mtrl +C3263912|T037|HT|T83.71|ICD10CM|Erosion of implanted mesh and other prosthetic materials to surrounding organ or tissue|Erosion of implanted mesh and other prosthetic materials to surrounding organ or tissue +C3263912|T037|AB|T83.71|ICD10CM|Erosion of implanted prstht mtrl to surrnd org/tiss|Erosion of implanted prstht mtrl to surrnd org/tiss +C4270367|T046|ET|T83.711|ICD10CM|Erosion of implanted vaginal mesh into pelvic floor muscles|Erosion of implanted vaginal mesh into pelvic floor muscles +C4270366|T046|AB|T83.711|ICD10CM|Erosion of implanted vaginal mesh to surrnd org/tiss|Erosion of implanted vaginal mesh to surrnd org/tiss +C4270366|T046|HT|T83.711|ICD10CM|Erosion of implanted vaginal mesh to surrounding organ or tissue|Erosion of implanted vaginal mesh to surrounding organ or tissue +C4270368|T046|PT|T83.711A|ICD10CM|Erosion of implanted vaginal mesh to surrounding organ or tissue, initial encounter|Erosion of implanted vaginal mesh to surrounding organ or tissue, initial encounter +C4270368|T046|AB|T83.711A|ICD10CM|Erosn implnt vaginal mesh to surrnd org/tiss, init|Erosn implnt vaginal mesh to surrnd org/tiss, init +C4270369|T046|PT|T83.711D|ICD10CM|Erosion of implanted vaginal mesh to surrounding organ or tissue, subsequent encounter|Erosion of implanted vaginal mesh to surrounding organ or tissue, subsequent encounter +C4270369|T046|AB|T83.711D|ICD10CM|Erosn implnt vaginal mesh to surrnd org/tiss, subs|Erosn implnt vaginal mesh to surrnd org/tiss, subs +C4270370|T046|PT|T83.711S|ICD10CM|Erosion of implanted vaginal mesh to surrounding organ or tissue, sequela|Erosion of implanted vaginal mesh to surrounding organ or tissue, sequela +C4270370|T046|AB|T83.711S|ICD10CM|Erosn implnt vaginal mesh to surrnd org/tiss, sequela|Erosn implnt vaginal mesh to surrnd org/tiss, sequela +C4270372|T046|ET|T83.712|ICD10CM|Erosion of implanted female urethral sling|Erosion of implanted female urethral sling +C4270373|T046|ET|T83.712|ICD10CM|Erosion of implanted male urethral sling|Erosion of implanted male urethral sling +C4270374|T046|ET|T83.712|ICD10CM|Erosion of implanted urethral mesh into pelvic floor muscles|Erosion of implanted urethral mesh into pelvic floor muscles +C4270371|T046|AB|T83.712|ICD10CM|Erosion of implanted urethral mesh to surrnd org/tiss|Erosion of implanted urethral mesh to surrnd org/tiss +C4270371|T046|HT|T83.712|ICD10CM|Erosion of implanted urethral mesh to surrounding organ or tissue|Erosion of implanted urethral mesh to surrounding organ or tissue +C4270375|T046|PT|T83.712A|ICD10CM|Erosion of implanted urethral mesh to surrounding organ or tissue, initial encounter|Erosion of implanted urethral mesh to surrounding organ or tissue, initial encounter +C4270375|T046|AB|T83.712A|ICD10CM|Erosn implnt urethral mesh to surrnd org/tiss, init|Erosn implnt urethral mesh to surrnd org/tiss, init +C4270376|T046|PT|T83.712D|ICD10CM|Erosion of implanted urethral mesh to surrounding organ or tissue, subsequent encounter|Erosion of implanted urethral mesh to surrounding organ or tissue, subsequent encounter +C4270376|T046|AB|T83.712D|ICD10CM|Erosn implnt urethral mesh to surrnd org/tiss, subs|Erosn implnt urethral mesh to surrnd org/tiss, subs +C4270377|T046|PT|T83.712S|ICD10CM|Erosion of implanted urethral mesh to surrounding organ or tissue, sequela|Erosion of implanted urethral mesh to surrounding organ or tissue, sequela +C4270377|T046|AB|T83.712S|ICD10CM|Erosn implnt urethral mesh to surrnd org/tiss, sequela|Erosn implnt urethral mesh to surrnd org/tiss, sequela +C4270378|T046|HT|T83.713|ICD10CM|Erosion of implanted urethral bulking agent to surrounding organ or tissue|Erosion of implanted urethral bulking agent to surrounding organ or tissue +C4270378|T046|AB|T83.713|ICD10CM|Erosn implnt urethral bulking agent to surrnd org/tiss|Erosn implnt urethral bulking agent to surrnd org/tiss +C4270379|T046|PT|T83.713A|ICD10CM|Erosion of implanted urethral bulking agent to surrounding organ or tissue, initial encounter|Erosion of implanted urethral bulking agent to surrounding organ or tissue, initial encounter +C4270379|T046|AB|T83.713A|ICD10CM|Erosn implnt urethral bulking agent to surrnd org/tiss, init|Erosn implnt urethral bulking agent to surrnd org/tiss, init +C4270380|T046|PT|T83.713D|ICD10CM|Erosion of implanted urethral bulking agent to surrounding organ or tissue, subsequent encounter|Erosion of implanted urethral bulking agent to surrounding organ or tissue, subsequent encounter +C4270380|T046|AB|T83.713D|ICD10CM|Erosn implnt urethral bulking agent to surrnd org/tiss, subs|Erosn implnt urethral bulking agent to surrnd org/tiss, subs +C4270381|T046|PT|T83.713S|ICD10CM|Erosion of implanted urethral bulking agent to surrounding organ or tissue, sequela|Erosion of implanted urethral bulking agent to surrounding organ or tissue, sequela +C4270381|T046|AB|T83.713S|ICD10CM|Erosn implnt urethral bulking agent to surrnd org/tiss, sqla|Erosn implnt urethral bulking agent to surrnd org/tiss, sqla +C4270382|T046|HT|T83.714|ICD10CM|Erosion of implanted ureteral bulking agent to surrounding organ or tissue|Erosion of implanted ureteral bulking agent to surrounding organ or tissue +C4270382|T046|AB|T83.714|ICD10CM|Erosion of implanted urtl bulk agnt organ or tissue|Erosion of implanted urtl bulk agnt organ or tissue +C4270383|T046|PT|T83.714A|ICD10CM|Erosion of implanted ureteral bulking agent to surrounding organ or tissue, initial encounter|Erosion of implanted ureteral bulking agent to surrounding organ or tissue, initial encounter +C4270383|T046|AB|T83.714A|ICD10CM|Erosn implnt urtl bulk agnt organ or tissue, init|Erosn implnt urtl bulk agnt organ or tissue, init +C4270384|T046|PT|T83.714D|ICD10CM|Erosion of implanted ureteral bulking agent to surrounding organ or tissue, subsequent encounter|Erosion of implanted ureteral bulking agent to surrounding organ or tissue, subsequent encounter +C4270384|T046|AB|T83.714D|ICD10CM|Erosn implnt urtl bulk agnt organ or tissue, subs|Erosn implnt urtl bulk agnt organ or tissue, subs +C4270385|T046|PT|T83.714S|ICD10CM|Erosion of implanted ureteral bulking agent to surrounding organ or tissue, sequela|Erosion of implanted ureteral bulking agent to surrounding organ or tissue, sequela +C4270385|T046|AB|T83.714S|ICD10CM|Erosion of implanted urtl bulk agnt organ or tissue, sequela|Erosion of implanted urtl bulk agnt organ or tissue, sequela +C4270386|T046|AB|T83.718|ICD10CM|Erosion of other implanted mesh to organ or tissue|Erosion of other implanted mesh to organ or tissue +C4270386|T046|HT|T83.718|ICD10CM|Erosion of other implanted mesh to organ or tissue|Erosion of other implanted mesh to organ or tissue +C4270387|T046|AB|T83.718A|ICD10CM|Erosion of other implanted mesh to organ or tissue, init|Erosion of other implanted mesh to organ or tissue, init +C4270387|T046|PT|T83.718A|ICD10CM|Erosion of other implanted mesh to organ or tissue, initial encounter|Erosion of other implanted mesh to organ or tissue, initial encounter +C4270388|T046|AB|T83.718D|ICD10CM|Erosion of other implanted mesh to organ or tissue, subs|Erosion of other implanted mesh to organ or tissue, subs +C4270388|T046|PT|T83.718D|ICD10CM|Erosion of other implanted mesh to organ or tissue, subsequent encounter|Erosion of other implanted mesh to organ or tissue, subsequent encounter +C4270389|T046|AB|T83.718S|ICD10CM|Erosion of other implanted mesh to organ or tissue, sequela|Erosion of other implanted mesh to organ or tissue, sequela +C4270389|T046|PT|T83.718S|ICD10CM|Erosion of other implanted mesh to organ or tissue, sequela|Erosion of other implanted mesh to organ or tissue, sequela +C4270390|T046|AB|T83.719|ICD10CM|Erosion of other prosthetic materials to surrnd org/tiss|Erosion of other prosthetic materials to surrnd org/tiss +C4270390|T046|HT|T83.719|ICD10CM|Erosion of other prosthetic materials to surrounding organ or tissue|Erosion of other prosthetic materials to surrounding organ or tissue +C4270391|T046|AB|T83.719A|ICD10CM|Erosion of other prosth materials to surrnd org/tiss, init|Erosion of other prosth materials to surrnd org/tiss, init +C4270391|T046|PT|T83.719A|ICD10CM|Erosion of other prosthetic materials to surrounding organ or tissue, initial encounter|Erosion of other prosthetic materials to surrounding organ or tissue, initial encounter +C4270392|T046|AB|T83.719D|ICD10CM|Erosion of other prosth materials to surrnd org/tiss, subs|Erosion of other prosth materials to surrnd org/tiss, subs +C4270392|T046|PT|T83.719D|ICD10CM|Erosion of other prosthetic materials to surrounding organ or tissue, subsequent encounter|Erosion of other prosthetic materials to surrounding organ or tissue, subsequent encounter +C4270393|T046|AB|T83.719S|ICD10CM|Erosion of other prosth matrl to surrnd org/tiss, sequela|Erosion of other prosth matrl to surrnd org/tiss, sequela +C4270393|T046|PT|T83.719S|ICD10CM|Erosion of other prosthetic materials to surrounding organ or tissue, sequela|Erosion of other prosthetic materials to surrounding organ or tissue, sequela +C3263920|T037|HT|T83.72|ICD10CM|Exposure of implanted mesh and other prosthetic materials into surrounding organ or tissue|Exposure of implanted mesh and other prosthetic materials into surrounding organ or tissue +C3263920|T037|AB|T83.72|ICD10CM|Expsr of implnt prstht mtrl into surrounding organ or tissue|Expsr of implnt prstht mtrl into surrounding organ or tissue +C4270394|T046|ET|T83.72|ICD10CM|Extrusion of implanted mesh|Extrusion of implanted mesh +C3251611|T046|AB|T83.721|ICD10CM|Exposure of implanted vaginal mesh into vagina|Exposure of implanted vaginal mesh into vagina +C3251611|T046|HT|T83.721|ICD10CM|Exposure of implanted vaginal mesh into vagina|Exposure of implanted vaginal mesh into vagina +C4270395|T046|ET|T83.721|ICD10CM|Exposure of implanted vaginal mesh through vaginal wall|Exposure of implanted vaginal mesh through vaginal wall +C4270396|T046|AB|T83.721A|ICD10CM|Exposure of implanted vaginal mesh into vagina, init|Exposure of implanted vaginal mesh into vagina, init +C4270396|T046|PT|T83.721A|ICD10CM|Exposure of implanted vaginal mesh into vagina, initial encounter|Exposure of implanted vaginal mesh into vagina, initial encounter +C4270397|T046|AB|T83.721D|ICD10CM|Exposure of implanted vaginal mesh into vagina, subs|Exposure of implanted vaginal mesh into vagina, subs +C4270397|T046|PT|T83.721D|ICD10CM|Exposure of implanted vaginal mesh into vagina, subsequent encounter|Exposure of implanted vaginal mesh into vagina, subsequent encounter +C4270398|T046|AB|T83.721S|ICD10CM|Exposure of implanted vaginal mesh into vagina, sequela|Exposure of implanted vaginal mesh into vagina, sequela +C4270398|T046|PT|T83.721S|ICD10CM|Exposure of implanted vaginal mesh into vagina, sequela|Exposure of implanted vaginal mesh into vagina, sequela +C4270400|T046|ET|T83.722|ICD10CM|Exposure of implanted female urethral sling|Exposure of implanted female urethral sling +C4270401|T046|ET|T83.722|ICD10CM|Exposure of implanted male urethral sling|Exposure of implanted male urethral sling +C4270399|T046|AB|T83.722|ICD10CM|Exposure of implanted urethral mesh into urethra|Exposure of implanted urethral mesh into urethra +C4270399|T046|HT|T83.722|ICD10CM|Exposure of implanted urethral mesh into urethra|Exposure of implanted urethral mesh into urethra +C4270402|T046|ET|T83.722|ICD10CM|Exposure of implanted urethral mesh through urethral wall|Exposure of implanted urethral mesh through urethral wall +C4270403|T046|AB|T83.722A|ICD10CM|Exposure of implanted urethral mesh into urethra, init|Exposure of implanted urethral mesh into urethra, init +C4270403|T046|PT|T83.722A|ICD10CM|Exposure of implanted urethral mesh into urethra, initial encounter|Exposure of implanted urethral mesh into urethra, initial encounter +C4270404|T046|AB|T83.722D|ICD10CM|Exposure of implanted urethral mesh into urethra, subs|Exposure of implanted urethral mesh into urethra, subs +C4270404|T046|PT|T83.722D|ICD10CM|Exposure of implanted urethral mesh into urethra, subsequent encounter|Exposure of implanted urethral mesh into urethra, subsequent encounter +C4270405|T046|AB|T83.722S|ICD10CM|Exposure of implanted urethral mesh into urethra, sequela|Exposure of implanted urethral mesh into urethra, sequela +C4270405|T046|PT|T83.722S|ICD10CM|Exposure of implanted urethral mesh into urethra, sequela|Exposure of implanted urethral mesh into urethra, sequela +C4270406|T046|AB|T83.723|ICD10CM|Exposure of implanted urethral bulking agent into urethra|Exposure of implanted urethral bulking agent into urethra +C4270406|T046|HT|T83.723|ICD10CM|Exposure of implanted urethral bulking agent into urethra|Exposure of implanted urethral bulking agent into urethra +C4270407|T046|PT|T83.723A|ICD10CM|Exposure of implanted urethral bulking agent into urethra, initial encounter|Exposure of implanted urethral bulking agent into urethra, initial encounter +C4270407|T046|AB|T83.723A|ICD10CM|Exposure of implnt urethral bulking agent into urethra, init|Exposure of implnt urethral bulking agent into urethra, init +C4270408|T046|PT|T83.723D|ICD10CM|Exposure of implanted urethral bulking agent into urethra, subsequent encounter|Exposure of implanted urethral bulking agent into urethra, subsequent encounter +C4270408|T046|AB|T83.723D|ICD10CM|Exposure of implnt urethral bulking agent into urethra, subs|Exposure of implnt urethral bulking agent into urethra, subs +C4270409|T046|PT|T83.723S|ICD10CM|Exposure of implanted urethral bulking agent into urethra, sequela|Exposure of implanted urethral bulking agent into urethra, sequela +C4270409|T046|AB|T83.723S|ICD10CM|Expsr of implnt urethral bulking agent into urethra, sequela|Expsr of implnt urethral bulking agent into urethra, sequela +C4270410|T046|AB|T83.724|ICD10CM|Exposure of implanted ureteral bulking agent into ureter|Exposure of implanted ureteral bulking agent into ureter +C4270410|T046|HT|T83.724|ICD10CM|Exposure of implanted ureteral bulking agent into ureter|Exposure of implanted ureteral bulking agent into ureter +C4270411|T046|PT|T83.724A|ICD10CM|Exposure of implanted ureteral bulking agent into ureter, initial encounter|Exposure of implanted ureteral bulking agent into ureter, initial encounter +C4270411|T046|AB|T83.724A|ICD10CM|Exposure of implnt ureteral bulking agent into ureter, init|Exposure of implnt ureteral bulking agent into ureter, init +C4270412|T046|PT|T83.724D|ICD10CM|Exposure of implanted ureteral bulking agent into ureter, subsequent encounter|Exposure of implanted ureteral bulking agent into ureter, subsequent encounter +C4270412|T046|AB|T83.724D|ICD10CM|Exposure of implnt ureteral bulking agent into ureter, subs|Exposure of implnt ureteral bulking agent into ureter, subs +C4270413|T046|PT|T83.724S|ICD10CM|Exposure of implanted ureteral bulking agent into ureter, sequela|Exposure of implanted ureteral bulking agent into ureter, sequela +C4270413|T046|AB|T83.724S|ICD10CM|Expsr of implnt ureteral bulking agent into ureter, sequela|Expsr of implnt ureteral bulking agent into ureter, sequela +C4270414|T046|AB|T83.728|ICD10CM|Exposure of other implanted mesh into organ or tissue|Exposure of other implanted mesh into organ or tissue +C4270414|T046|HT|T83.728|ICD10CM|Exposure of other implanted mesh into organ or tissue|Exposure of other implanted mesh into organ or tissue +C4270415|T046|AB|T83.728A|ICD10CM|Exposure of other implanted mesh into organ or tissue, init|Exposure of other implanted mesh into organ or tissue, init +C4270415|T046|PT|T83.728A|ICD10CM|Exposure of other implanted mesh into organ or tissue, initial encounter|Exposure of other implanted mesh into organ or tissue, initial encounter +C4270416|T046|AB|T83.728D|ICD10CM|Exposure of other implanted mesh into organ or tissue, subs|Exposure of other implanted mesh into organ or tissue, subs +C4270416|T046|PT|T83.728D|ICD10CM|Exposure of other implanted mesh into organ or tissue, subsequent encounter|Exposure of other implanted mesh into organ or tissue, subsequent encounter +C4270417|T046|PT|T83.728S|ICD10CM|Exposure of other implanted mesh into organ or tissue, sequela|Exposure of other implanted mesh into organ or tissue, sequela +C4270417|T046|AB|T83.728S|ICD10CM|Exposure of other implnt mesh into organ or tissue, sequela|Exposure of other implnt mesh into organ or tissue, sequela +C4270418|T046|AB|T83.729|ICD10CM|Exposure of other prosthetic materials into organ or tissue|Exposure of other prosthetic materials into organ or tissue +C4270418|T046|HT|T83.729|ICD10CM|Exposure of other prosthetic materials into organ or tissue|Exposure of other prosthetic materials into organ or tissue +C4270419|T046|AB|T83.729A|ICD10CM|Exposure of other prosth matrl into organ or tissue, init|Exposure of other prosth matrl into organ or tissue, init +C4270419|T046|PT|T83.729A|ICD10CM|Exposure of other prosthetic materials into organ or tissue, initial encounter|Exposure of other prosthetic materials into organ or tissue, initial encounter +C4270420|T046|AB|T83.729D|ICD10CM|Exposure of other prosth matrl into organ or tissue, subs|Exposure of other prosth matrl into organ or tissue, subs +C4270420|T046|PT|T83.729D|ICD10CM|Exposure of other prosthetic materials into organ or tissue, subsequent encounter|Exposure of other prosthetic materials into organ or tissue, subsequent encounter +C4270421|T046|AB|T83.729S|ICD10CM|Exposure of other prosth matrl into organ or tissue, sequela|Exposure of other prosth matrl into organ or tissue, sequela +C4270421|T046|PT|T83.729S|ICD10CM|Exposure of other prosthetic materials into organ or tissue, sequela|Exposure of other prosthetic materials into organ or tissue, sequela +C4270422|T046|AB|T83.79|ICD10CM|Oth comp due to other genitourinary prosthetic materials|Oth comp due to other genitourinary prosthetic materials +C4270422|T046|HT|T83.79|ICD10CM|Other specified complications due to other genitourinary prosthetic materials|Other specified complications due to other genitourinary prosthetic materials +C4270423|T046|AB|T83.79XA|ICD10CM|Oth comp due to other GU prosthetic materials, init|Oth comp due to other GU prosthetic materials, init +C4270423|T046|PT|T83.79XA|ICD10CM|Other specified complications due to other genitourinary prosthetic materials, initial encounter|Other specified complications due to other genitourinary prosthetic materials, initial encounter +C4270424|T046|AB|T83.79XD|ICD10CM|Oth comp due to other GU prosthetic materials, subs|Oth comp due to other GU prosthetic materials, subs +C4270424|T046|PT|T83.79XD|ICD10CM|Other specified complications due to other genitourinary prosthetic materials, subsequent encounter|Other specified complications due to other genitourinary prosthetic materials, subsequent encounter +C4270425|T046|AB|T83.79XS|ICD10CM|Oth comp due to other GU prosthetic materials, sequela|Oth comp due to other GU prosthetic materials, sequela +C4270425|T046|PT|T83.79XS|ICD10CM|Other specified complications due to other genitourinary prosthetic materials, sequela|Other specified complications due to other genitourinary prosthetic materials, sequela +C2890393|T037|AB|T83.8|ICD10CM|Oth complications of genitourinary prosth dev/grft|Oth complications of genitourinary prosth dev/grft +C0478492|T046|PT|T83.8|ICD10|Other complications of genitourinary prosthetic devices, implants and grafts|Other complications of genitourinary prosthetic devices, implants and grafts +C2890393|T037|HT|T83.8|ICD10CM|Other specified complications of genitourinary prosthetic devices, implants and grafts|Other specified complications of genitourinary prosthetic devices, implants and grafts +C4270426|T046|AB|T83.81|ICD10CM|Embolism due to genitourinary prosth dev/grft|Embolism due to genitourinary prosth dev/grft +C4270426|T046|HT|T83.81|ICD10CM|Embolism due to genitourinary prosthetic devices, implants and grafts|Embolism due to genitourinary prosthetic devices, implants and grafts +C4270427|T046|AB|T83.81XA|ICD10CM|Embolism due to genitourinary prosth dev/grft, init|Embolism due to genitourinary prosth dev/grft, init +C4270427|T046|PT|T83.81XA|ICD10CM|Embolism due to genitourinary prosthetic devices, implants and grafts, initial encounter|Embolism due to genitourinary prosthetic devices, implants and grafts, initial encounter +C4270428|T046|AB|T83.81XD|ICD10CM|Embolism due to genitourinary prosth dev/grft, subs|Embolism due to genitourinary prosth dev/grft, subs +C4270428|T046|PT|T83.81XD|ICD10CM|Embolism due to genitourinary prosthetic devices, implants and grafts, subsequent encounter|Embolism due to genitourinary prosthetic devices, implants and grafts, subsequent encounter +C4270429|T046|AB|T83.81XS|ICD10CM|Embolism due to genitourinary prosth dev/grft, sequela|Embolism due to genitourinary prosth dev/grft, sequela +C4270429|T046|PT|T83.81XS|ICD10CM|Embolism due to genitourinary prosthetic devices, implants and grafts, sequela|Embolism due to genitourinary prosthetic devices, implants and grafts, sequela +C4270430|T046|AB|T83.82|ICD10CM|Fibrosis due to genitourinary prosth dev/grft|Fibrosis due to genitourinary prosth dev/grft +C4270430|T046|HT|T83.82|ICD10CM|Fibrosis due to genitourinary prosthetic devices, implants and grafts|Fibrosis due to genitourinary prosthetic devices, implants and grafts +C4270431|T046|AB|T83.82XA|ICD10CM|Fibrosis due to genitourinary prosth dev/grft, init|Fibrosis due to genitourinary prosth dev/grft, init +C4270431|T046|PT|T83.82XA|ICD10CM|Fibrosis due to genitourinary prosthetic devices, implants and grafts, initial encounter|Fibrosis due to genitourinary prosthetic devices, implants and grafts, initial encounter +C4270432|T046|AB|T83.82XD|ICD10CM|Fibrosis due to genitourinary prosth dev/grft, subs|Fibrosis due to genitourinary prosth dev/grft, subs +C4270432|T046|PT|T83.82XD|ICD10CM|Fibrosis due to genitourinary prosthetic devices, implants and grafts, subsequent encounter|Fibrosis due to genitourinary prosthetic devices, implants and grafts, subsequent encounter +C4270433|T046|AB|T83.82XS|ICD10CM|Fibrosis due to genitourinary prosth dev/grft, sequela|Fibrosis due to genitourinary prosth dev/grft, sequela +C4270433|T046|PT|T83.82XS|ICD10CM|Fibrosis due to genitourinary prosthetic devices, implants and grafts, sequela|Fibrosis due to genitourinary prosthetic devices, implants and grafts, sequela +C4270434|T046|AB|T83.83|ICD10CM|Hemorrhage due to genitourinary prosth dev/grft|Hemorrhage due to genitourinary prosth dev/grft +C4270434|T046|HT|T83.83|ICD10CM|Hemorrhage due to genitourinary prosthetic devices, implants and grafts|Hemorrhage due to genitourinary prosthetic devices, implants and grafts +C4270435|T046|AB|T83.83XA|ICD10CM|Hemorrhage due to genitourinary prosth dev/grft, init|Hemorrhage due to genitourinary prosth dev/grft, init +C4270435|T046|PT|T83.83XA|ICD10CM|Hemorrhage due to genitourinary prosthetic devices, implants and grafts, initial encounter|Hemorrhage due to genitourinary prosthetic devices, implants and grafts, initial encounter +C4270436|T046|AB|T83.83XD|ICD10CM|Hemorrhage due to genitourinary prosth dev/grft, subs|Hemorrhage due to genitourinary prosth dev/grft, subs +C4270436|T046|PT|T83.83XD|ICD10CM|Hemorrhage due to genitourinary prosthetic devices, implants and grafts, subsequent encounter|Hemorrhage due to genitourinary prosthetic devices, implants and grafts, subsequent encounter +C4270437|T046|AB|T83.83XS|ICD10CM|Hemorrhage due to genitourinary prosth dev/grft, sequela|Hemorrhage due to genitourinary prosth dev/grft, sequela +C4270437|T046|PT|T83.83XS|ICD10CM|Hemorrhage due to genitourinary prosthetic devices, implants and grafts, sequela|Hemorrhage due to genitourinary prosthetic devices, implants and grafts, sequela +C4270438|T046|AB|T83.84|ICD10CM|Pain due to genitourinary prosth dev/grft|Pain due to genitourinary prosth dev/grft +C4270438|T046|HT|T83.84|ICD10CM|Pain due to genitourinary prosthetic devices, implants and grafts|Pain due to genitourinary prosthetic devices, implants and grafts +C4270439|T046|AB|T83.84XA|ICD10CM|Pain due to genitourinary prosth dev/grft, initial encounter|Pain due to genitourinary prosth dev/grft, initial encounter +C4270439|T046|PT|T83.84XA|ICD10CM|Pain due to genitourinary prosthetic devices, implants and grafts, initial encounter|Pain due to genitourinary prosthetic devices, implants and grafts, initial encounter +C4270440|T046|AB|T83.84XD|ICD10CM|Pain due to genitourinary prosth dev/grft, subs|Pain due to genitourinary prosth dev/grft, subs +C4270440|T046|PT|T83.84XD|ICD10CM|Pain due to genitourinary prosthetic devices, implants and grafts, subsequent encounter|Pain due to genitourinary prosthetic devices, implants and grafts, subsequent encounter +C4270441|T046|AB|T83.84XS|ICD10CM|Pain due to genitourinary prosth dev/grft, sequela|Pain due to genitourinary prosth dev/grft, sequela +C4270441|T046|PT|T83.84XS|ICD10CM|Pain due to genitourinary prosthetic devices, implants and grafts, sequela|Pain due to genitourinary prosthetic devices, implants and grafts, sequela +C4270442|T046|AB|T83.85|ICD10CM|Stenosis due to genitourinary prosth dev/grft|Stenosis due to genitourinary prosth dev/grft +C4270442|T046|HT|T83.85|ICD10CM|Stenosis due to genitourinary prosthetic devices, implants and grafts|Stenosis due to genitourinary prosthetic devices, implants and grafts +C4270443|T046|AB|T83.85XA|ICD10CM|Stenosis due to genitourinary prosth dev/grft, init|Stenosis due to genitourinary prosth dev/grft, init +C4270443|T046|PT|T83.85XA|ICD10CM|Stenosis due to genitourinary prosthetic devices, implants and grafts, initial encounter|Stenosis due to genitourinary prosthetic devices, implants and grafts, initial encounter +C4270444|T046|AB|T83.85XD|ICD10CM|Stenosis due to genitourinary prosth dev/grft, subs|Stenosis due to genitourinary prosth dev/grft, subs +C4270444|T046|PT|T83.85XD|ICD10CM|Stenosis due to genitourinary prosthetic devices, implants and grafts, subsequent encounter|Stenosis due to genitourinary prosthetic devices, implants and grafts, subsequent encounter +C4270445|T046|AB|T83.85XS|ICD10CM|Stenosis due to genitourinary prosth dev/grft, sequela|Stenosis due to genitourinary prosth dev/grft, sequela +C4270445|T046|PT|T83.85XS|ICD10CM|Stenosis due to genitourinary prosthetic devices, implants and grafts, sequela|Stenosis due to genitourinary prosthetic devices, implants and grafts, sequela +C4270446|T046|AB|T83.86|ICD10CM|Thrombosis due to genitourinary prosth dev/grft|Thrombosis due to genitourinary prosth dev/grft +C4270446|T046|HT|T83.86|ICD10CM|Thrombosis due to genitourinary prosthetic devices, implants and grafts|Thrombosis due to genitourinary prosthetic devices, implants and grafts +C4270447|T046|AB|T83.86XA|ICD10CM|Thrombosis due to genitourinary prosth dev/grft, init|Thrombosis due to genitourinary prosth dev/grft, init +C4270447|T046|PT|T83.86XA|ICD10CM|Thrombosis due to genitourinary prosthetic devices, implants and grafts, initial encounter|Thrombosis due to genitourinary prosthetic devices, implants and grafts, initial encounter +C4270448|T046|AB|T83.86XD|ICD10CM|Thrombosis due to genitourinary prosth dev/grft, subs|Thrombosis due to genitourinary prosth dev/grft, subs +C4270448|T046|PT|T83.86XD|ICD10CM|Thrombosis due to genitourinary prosthetic devices, implants and grafts, subsequent encounter|Thrombosis due to genitourinary prosthetic devices, implants and grafts, subsequent encounter +C4270449|T046|AB|T83.86XS|ICD10CM|Thrombosis due to genitourinary prosth dev/grft, sequela|Thrombosis due to genitourinary prosth dev/grft, sequela +C4270449|T046|PT|T83.86XS|ICD10CM|Thrombosis due to genitourinary prosthetic devices, implants and grafts, sequela|Thrombosis due to genitourinary prosthetic devices, implants and grafts, sequela +C2890393|T037|AB|T83.89|ICD10CM|Oth complication of genitourinary prosth dev/grft|Oth complication of genitourinary prosth dev/grft +C2890393|T037|HT|T83.89|ICD10CM|Other specified complication of genitourinary prosthetic devices, implants and grafts|Other specified complication of genitourinary prosthetic devices, implants and grafts +C2890394|T037|AB|T83.89XA|ICD10CM|Oth complication of genitourinary prosth dev/grft, init|Oth complication of genitourinary prosth dev/grft, init +C2890395|T037|AB|T83.89XD|ICD10CM|Oth complication of genitourinary prosth dev/grft, subs|Oth complication of genitourinary prosth dev/grft, subs +C2890396|T037|AB|T83.89XS|ICD10CM|Oth complication of genitourinary prosth dev/grft, sequela|Oth complication of genitourinary prosth dev/grft, sequela +C2890396|T037|PT|T83.89XS|ICD10CM|Other specified complication of genitourinary prosthetic devices, implants and grafts, sequela|Other specified complication of genitourinary prosthetic devices, implants and grafts, sequela +C0496146|T046|AB|T83.9|ICD10CM|Unsp complication of genitourinary prosth dev/grft|Unsp complication of genitourinary prosth dev/grft +C0496146|T046|HT|T83.9|ICD10CM|Unspecified complication of genitourinary prosthetic device, implant and graft|Unspecified complication of genitourinary prosthetic device, implant and graft +C0496146|T046|PT|T83.9|ICD10|Unspecified complication of genitourinary prosthetic device, implant and graft|Unspecified complication of genitourinary prosthetic device, implant and graft +C2890397|T037|AB|T83.9XXA|ICD10CM|Unsp complication of genitourinary prosth dev/grft, init|Unsp complication of genitourinary prosth dev/grft, init +C2890397|T037|PT|T83.9XXA|ICD10CM|Unspecified complication of genitourinary prosthetic device, implant and graft, initial encounter|Unspecified complication of genitourinary prosthetic device, implant and graft, initial encounter +C2890398|T037|AB|T83.9XXD|ICD10CM|Unsp complication of genitourinary prosth dev/grft, subs|Unsp complication of genitourinary prosth dev/grft, subs +C2890398|T037|PT|T83.9XXD|ICD10CM|Unspecified complication of genitourinary prosthetic device, implant and graft, subsequent encounter|Unspecified complication of genitourinary prosthetic device, implant and graft, subsequent encounter +C2890399|T037|AB|T83.9XXS|ICD10CM|Unsp complication of genitourinary prosth dev/grft, sequela|Unsp complication of genitourinary prosth dev/grft, sequela +C2890399|T037|PT|T83.9XXS|ICD10CM|Unspecified complication of genitourinary prosthetic device, implant and graft, sequela|Unspecified complication of genitourinary prosthetic device, implant and graft, sequela +C0496151|T046|HT|T84|ICD10|Complications of internal orthopaedic prosthetic devices, implants and grafts|Complications of internal orthopaedic prosthetic devices, implants and grafts +C0496151|T046|AB|T84|ICD10CM|Complications of internal orthopedic prosth dev/grft|Complications of internal orthopedic prosth dev/grft +C0496151|T046|HT|T84|ICD10CM|Complications of internal orthopedic prosthetic devices, implants and grafts|Complications of internal orthopedic prosthetic devices, implants and grafts +C0496151|T046|HT|T84|ICD10AE|Complications of internal orthopedic prosthetic devices, implants and grafts|Complications of internal orthopedic prosthetic devices, implants and grafts +C0451898|T046|PT|T84.0|ICD10|Mechanical complication of internal joint prosthesis|Mechanical complication of internal joint prosthesis +C0451898|T046|HT|T84.0|ICD10CM|Mechanical complication of internal joint prosthesis|Mechanical complication of internal joint prosthesis +C0451898|T046|AB|T84.0|ICD10CM|Mechanical complication of internal joint prosthesis|Mechanical complication of internal joint prosthesis +C1561660|T046|ET|T84.01|ICD10CM|Breakage (fracture) of prosthetic joint|Breakage (fracture) of prosthetic joint +C2890400|T037|AB|T84.01|ICD10CM|Broken internal joint prosthesis|Broken internal joint prosthesis +C2890400|T037|HT|T84.01|ICD10CM|Broken internal joint prosthesis|Broken internal joint prosthesis +C2712383|T037|ET|T84.01|ICD10CM|Broken prosthetic joint implant|Broken prosthetic joint implant +C2890401|T037|AB|T84.010|ICD10CM|Broken internal right hip prosthesis|Broken internal right hip prosthesis +C2890401|T037|HT|T84.010|ICD10CM|Broken internal right hip prosthesis|Broken internal right hip prosthesis +C2890402|T037|AB|T84.010A|ICD10CM|Broken internal right hip prosthesis, initial encounter|Broken internal right hip prosthesis, initial encounter +C2890402|T037|PT|T84.010A|ICD10CM|Broken internal right hip prosthesis, initial encounter|Broken internal right hip prosthesis, initial encounter +C2890403|T037|AB|T84.010D|ICD10CM|Broken internal right hip prosthesis, subsequent encounter|Broken internal right hip prosthesis, subsequent encounter +C2890403|T037|PT|T84.010D|ICD10CM|Broken internal right hip prosthesis, subsequent encounter|Broken internal right hip prosthesis, subsequent encounter +C2890404|T037|AB|T84.010S|ICD10CM|Broken internal right hip prosthesis, sequela|Broken internal right hip prosthesis, sequela +C2890404|T037|PT|T84.010S|ICD10CM|Broken internal right hip prosthesis, sequela|Broken internal right hip prosthesis, sequela +C2890405|T037|AB|T84.011|ICD10CM|Broken internal left hip prosthesis|Broken internal left hip prosthesis +C2890405|T037|HT|T84.011|ICD10CM|Broken internal left hip prosthesis|Broken internal left hip prosthesis +C2890406|T037|AB|T84.011A|ICD10CM|Broken internal left hip prosthesis, initial encounter|Broken internal left hip prosthesis, initial encounter +C2890406|T037|PT|T84.011A|ICD10CM|Broken internal left hip prosthesis, initial encounter|Broken internal left hip prosthesis, initial encounter +C2890407|T037|AB|T84.011D|ICD10CM|Broken internal left hip prosthesis, subsequent encounter|Broken internal left hip prosthesis, subsequent encounter +C2890407|T037|PT|T84.011D|ICD10CM|Broken internal left hip prosthesis, subsequent encounter|Broken internal left hip prosthesis, subsequent encounter +C2890408|T037|AB|T84.011S|ICD10CM|Broken internal left hip prosthesis, sequela|Broken internal left hip prosthesis, sequela +C2890408|T037|PT|T84.011S|ICD10CM|Broken internal left hip prosthesis, sequela|Broken internal left hip prosthesis, sequela +C2890409|T037|AB|T84.012|ICD10CM|Broken internal right knee prosthesis|Broken internal right knee prosthesis +C2890409|T037|HT|T84.012|ICD10CM|Broken internal right knee prosthesis|Broken internal right knee prosthesis +C2890410|T037|AB|T84.012A|ICD10CM|Broken internal right knee prosthesis, initial encounter|Broken internal right knee prosthesis, initial encounter +C2890410|T037|PT|T84.012A|ICD10CM|Broken internal right knee prosthesis, initial encounter|Broken internal right knee prosthesis, initial encounter +C2890411|T037|AB|T84.012D|ICD10CM|Broken internal right knee prosthesis, subsequent encounter|Broken internal right knee prosthesis, subsequent encounter +C2890411|T037|PT|T84.012D|ICD10CM|Broken internal right knee prosthesis, subsequent encounter|Broken internal right knee prosthesis, subsequent encounter +C2890412|T037|AB|T84.012S|ICD10CM|Broken internal right knee prosthesis, sequela|Broken internal right knee prosthesis, sequela +C2890412|T037|PT|T84.012S|ICD10CM|Broken internal right knee prosthesis, sequela|Broken internal right knee prosthesis, sequela +C2890413|T037|AB|T84.013|ICD10CM|Broken internal left knee prosthesis|Broken internal left knee prosthesis +C2890413|T037|HT|T84.013|ICD10CM|Broken internal left knee prosthesis|Broken internal left knee prosthesis +C2890414|T037|AB|T84.013A|ICD10CM|Broken internal left knee prosthesis, initial encounter|Broken internal left knee prosthesis, initial encounter +C2890414|T037|PT|T84.013A|ICD10CM|Broken internal left knee prosthesis, initial encounter|Broken internal left knee prosthesis, initial encounter +C2890415|T037|AB|T84.013D|ICD10CM|Broken internal left knee prosthesis, subsequent encounter|Broken internal left knee prosthesis, subsequent encounter +C2890415|T037|PT|T84.013D|ICD10CM|Broken internal left knee prosthesis, subsequent encounter|Broken internal left knee prosthesis, subsequent encounter +C2890416|T037|AB|T84.013S|ICD10CM|Broken internal left knee prosthesis, sequela|Broken internal left knee prosthesis, sequela +C2890416|T037|PT|T84.013S|ICD10CM|Broken internal left knee prosthesis, sequela|Broken internal left knee prosthesis, sequela +C2890417|T037|AB|T84.018|ICD10CM|Broken internal joint prosthesis, other site|Broken internal joint prosthesis, other site +C2890417|T037|HT|T84.018|ICD10CM|Broken internal joint prosthesis, other site|Broken internal joint prosthesis, other site +C2890418|T037|AB|T84.018A|ICD10CM|Broken internal joint prosthesis, other site, init encntr|Broken internal joint prosthesis, other site, init encntr +C2890418|T037|PT|T84.018A|ICD10CM|Broken internal joint prosthesis, other site, initial encounter|Broken internal joint prosthesis, other site, initial encounter +C2890419|T037|AB|T84.018D|ICD10CM|Broken internal joint prosthesis, other site, subs encntr|Broken internal joint prosthesis, other site, subs encntr +C2890419|T037|PT|T84.018D|ICD10CM|Broken internal joint prosthesis, other site, subsequent encounter|Broken internal joint prosthesis, other site, subsequent encounter +C2890420|T037|AB|T84.018S|ICD10CM|Broken internal joint prosthesis, other site, sequela|Broken internal joint prosthesis, other site, sequela +C2890420|T037|PT|T84.018S|ICD10CM|Broken internal joint prosthesis, other site, sequela|Broken internal joint prosthesis, other site, sequela +C2890421|T037|AB|T84.019|ICD10CM|Broken internal joint prosthesis, unspecified site|Broken internal joint prosthesis, unspecified site +C2890421|T037|HT|T84.019|ICD10CM|Broken internal joint prosthesis, unspecified site|Broken internal joint prosthesis, unspecified site +C2890422|T037|AB|T84.019A|ICD10CM|Broken internal joint prosthesis, unsp site, init encntr|Broken internal joint prosthesis, unsp site, init encntr +C2890422|T037|PT|T84.019A|ICD10CM|Broken internal joint prosthesis, unspecified site, initial encounter|Broken internal joint prosthesis, unspecified site, initial encounter +C2890423|T037|AB|T84.019D|ICD10CM|Broken internal joint prosthesis, unsp site, subs encntr|Broken internal joint prosthesis, unsp site, subs encntr +C2890423|T037|PT|T84.019D|ICD10CM|Broken internal joint prosthesis, unspecified site, subsequent encounter|Broken internal joint prosthesis, unspecified site, subsequent encounter +C2890424|T037|AB|T84.019S|ICD10CM|Broken internal joint prosthesis, unspecified site, sequela|Broken internal joint prosthesis, unspecified site, sequela +C2890424|T037|PT|T84.019S|ICD10CM|Broken internal joint prosthesis, unspecified site, sequela|Broken internal joint prosthesis, unspecified site, sequela +C2890427|T037|AB|T84.02|ICD10CM|Dislocation of internal joint prosthesis|Dislocation of internal joint prosthesis +C2890427|T037|HT|T84.02|ICD10CM|Dislocation of internal joint prosthesis|Dislocation of internal joint prosthesis +C2890425|T033|ET|T84.02|ICD10CM|Instability of internal joint prosthesis|Instability of internal joint prosthesis +C2890426|T037|ET|T84.02|ICD10CM|Subluxation of internal joint prosthesis|Subluxation of internal joint prosthesis +C2890428|T037|AB|T84.020|ICD10CM|Dislocation of internal right hip prosthesis|Dislocation of internal right hip prosthesis +C2890428|T037|HT|T84.020|ICD10CM|Dislocation of internal right hip prosthesis|Dislocation of internal right hip prosthesis +C2890429|T037|AB|T84.020A|ICD10CM|Dislocation of internal right hip prosthesis, init encntr|Dislocation of internal right hip prosthesis, init encntr +C2890429|T037|PT|T84.020A|ICD10CM|Dislocation of internal right hip prosthesis, initial encounter|Dislocation of internal right hip prosthesis, initial encounter +C2890430|T037|AB|T84.020D|ICD10CM|Dislocation of internal right hip prosthesis, subs encntr|Dislocation of internal right hip prosthesis, subs encntr +C2890430|T037|PT|T84.020D|ICD10CM|Dislocation of internal right hip prosthesis, subsequent encounter|Dislocation of internal right hip prosthesis, subsequent encounter +C2890431|T037|AB|T84.020S|ICD10CM|Dislocation of internal right hip prosthesis, sequela|Dislocation of internal right hip prosthesis, sequela +C2890431|T037|PT|T84.020S|ICD10CM|Dislocation of internal right hip prosthesis, sequela|Dislocation of internal right hip prosthesis, sequela +C2890432|T037|AB|T84.021|ICD10CM|Dislocation of internal left hip prosthesis|Dislocation of internal left hip prosthesis +C2890432|T037|HT|T84.021|ICD10CM|Dislocation of internal left hip prosthesis|Dislocation of internal left hip prosthesis +C2890433|T037|AB|T84.021A|ICD10CM|Dislocation of internal left hip prosthesis, init encntr|Dislocation of internal left hip prosthesis, init encntr +C2890433|T037|PT|T84.021A|ICD10CM|Dislocation of internal left hip prosthesis, initial encounter|Dislocation of internal left hip prosthesis, initial encounter +C2890434|T037|AB|T84.021D|ICD10CM|Dislocation of internal left hip prosthesis, subs encntr|Dislocation of internal left hip prosthesis, subs encntr +C2890434|T037|PT|T84.021D|ICD10CM|Dislocation of internal left hip prosthesis, subsequent encounter|Dislocation of internal left hip prosthesis, subsequent encounter +C2890435|T037|AB|T84.021S|ICD10CM|Dislocation of internal left hip prosthesis, sequela|Dislocation of internal left hip prosthesis, sequela +C2890435|T037|PT|T84.021S|ICD10CM|Dislocation of internal left hip prosthesis, sequela|Dislocation of internal left hip prosthesis, sequela +C3263929|T046|AB|T84.022|ICD10CM|Instability of internal right knee prosthesis|Instability of internal right knee prosthesis +C3263929|T046|HT|T84.022|ICD10CM|Instability of internal right knee prosthesis|Instability of internal right knee prosthesis +C3263930|T046|AB|T84.022A|ICD10CM|Instability of internal right knee prosthesis, init encntr|Instability of internal right knee prosthesis, init encntr +C3263930|T046|PT|T84.022A|ICD10CM|Instability of internal right knee prosthesis, initial encounter|Instability of internal right knee prosthesis, initial encounter +C2890438|T037|AB|T84.022D|ICD10CM|Instability of internal right knee prosthesis, subs encntr|Instability of internal right knee prosthesis, subs encntr +C2890438|T037|PT|T84.022D|ICD10CM|Instability of internal right knee prosthesis, subsequent encounter|Instability of internal right knee prosthesis, subsequent encounter +C2890439|T046|AB|T84.022S|ICD10CM|Instability of internal right knee prosthesis, sequela|Instability of internal right knee prosthesis, sequela +C2890439|T046|PT|T84.022S|ICD10CM|Instability of internal right knee prosthesis, sequela|Instability of internal right knee prosthesis, sequela +C2890440|T037|AB|T84.023|ICD10CM|Instability of internal left knee prosthesis|Instability of internal left knee prosthesis +C2890440|T037|HT|T84.023|ICD10CM|Instability of internal left knee prosthesis|Instability of internal left knee prosthesis +C2890441|T037|AB|T84.023A|ICD10CM|Instability of internal left knee prosthesis, init encntr|Instability of internal left knee prosthesis, init encntr +C2890441|T037|PT|T84.023A|ICD10CM|Instability of internal left knee prosthesis, initial encounter|Instability of internal left knee prosthesis, initial encounter +C2890442|T037|AB|T84.023D|ICD10CM|Instability of internal left knee prosthesis, subs encntr|Instability of internal left knee prosthesis, subs encntr +C2890442|T037|PT|T84.023D|ICD10CM|Instability of internal left knee prosthesis, subsequent encounter|Instability of internal left knee prosthesis, subsequent encounter +C2890443|T046|AB|T84.023S|ICD10CM|Instability of internal left knee prosthesis, sequela|Instability of internal left knee prosthesis, sequela +C2890443|T046|PT|T84.023S|ICD10CM|Instability of internal left knee prosthesis, sequela|Instability of internal left knee prosthesis, sequela +C2890444|T037|AB|T84.028|ICD10CM|Dislocation of other internal joint prosthesis|Dislocation of other internal joint prosthesis +C2890444|T037|HT|T84.028|ICD10CM|Dislocation of other internal joint prosthesis|Dislocation of other internal joint prosthesis +C2890445|T037|AB|T84.028A|ICD10CM|Dislocation of other internal joint prosthesis, init encntr|Dislocation of other internal joint prosthesis, init encntr +C2890445|T037|PT|T84.028A|ICD10CM|Dislocation of other internal joint prosthesis, initial encounter|Dislocation of other internal joint prosthesis, initial encounter +C2890446|T037|AB|T84.028D|ICD10CM|Dislocation of other internal joint prosthesis, subs encntr|Dislocation of other internal joint prosthesis, subs encntr +C2890446|T037|PT|T84.028D|ICD10CM|Dislocation of other internal joint prosthesis, subsequent encounter|Dislocation of other internal joint prosthesis, subsequent encounter +C2890447|T037|AB|T84.028S|ICD10CM|Dislocation of other internal joint prosthesis, sequela|Dislocation of other internal joint prosthesis, sequela +C2890447|T037|PT|T84.028S|ICD10CM|Dislocation of other internal joint prosthesis, sequela|Dislocation of other internal joint prosthesis, sequela +C2890448|T037|AB|T84.029|ICD10CM|Dislocation of unspecified internal joint prosthesis|Dislocation of unspecified internal joint prosthesis +C2890448|T037|HT|T84.029|ICD10CM|Dislocation of unspecified internal joint prosthesis|Dislocation of unspecified internal joint prosthesis +C2890449|T037|AB|T84.029A|ICD10CM|Dislocation of unsp internal joint prosthesis, init encntr|Dislocation of unsp internal joint prosthesis, init encntr +C2890449|T037|PT|T84.029A|ICD10CM|Dislocation of unspecified internal joint prosthesis, initial encounter|Dislocation of unspecified internal joint prosthesis, initial encounter +C2890450|T037|AB|T84.029D|ICD10CM|Dislocation of unsp internal joint prosthesis, subs encntr|Dislocation of unsp internal joint prosthesis, subs encntr +C2890450|T037|PT|T84.029D|ICD10CM|Dislocation of unspecified internal joint prosthesis, subsequent encounter|Dislocation of unspecified internal joint prosthesis, subsequent encounter +C2890451|T037|AB|T84.029S|ICD10CM|Dislocation of unsp internal joint prosthesis, sequela|Dislocation of unsp internal joint prosthesis, sequela +C2890451|T037|PT|T84.029S|ICD10CM|Dislocation of unspecified internal joint prosthesis, sequela|Dislocation of unspecified internal joint prosthesis, sequela +C2890452|T046|ET|T84.03|ICD10CM|Aseptic loosening of prosthetic joint|Aseptic loosening of prosthetic joint +C2890453|T037|AB|T84.03|ICD10CM|Mechanical loosening of internal prosthetic joint|Mechanical loosening of internal prosthetic joint +C2890453|T037|HT|T84.03|ICD10CM|Mechanical loosening of internal prosthetic joint|Mechanical loosening of internal prosthetic joint +C2890454|T037|AB|T84.030|ICD10CM|Mechanical loosening of internal right hip prosthetic joint|Mechanical loosening of internal right hip prosthetic joint +C2890454|T037|HT|T84.030|ICD10CM|Mechanical loosening of internal right hip prosthetic joint|Mechanical loosening of internal right hip prosthetic joint +C2890455|T037|AB|T84.030A|ICD10CM|Mech loosening of internal right hip prosthetic joint, init|Mech loosening of internal right hip prosthetic joint, init +C2890455|T037|PT|T84.030A|ICD10CM|Mechanical loosening of internal right hip prosthetic joint, initial encounter|Mechanical loosening of internal right hip prosthetic joint, initial encounter +C2890456|T037|AB|T84.030D|ICD10CM|Mech loosening of internal right hip prosthetic joint, subs|Mech loosening of internal right hip prosthetic joint, subs +C2890456|T037|PT|T84.030D|ICD10CM|Mechanical loosening of internal right hip prosthetic joint, subsequent encounter|Mechanical loosening of internal right hip prosthetic joint, subsequent encounter +C2890457|T037|AB|T84.030S|ICD10CM|Mech loosening of internal right hip prosth joint, sequela|Mech loosening of internal right hip prosth joint, sequela +C2890457|T037|PT|T84.030S|ICD10CM|Mechanical loosening of internal right hip prosthetic joint, sequela|Mechanical loosening of internal right hip prosthetic joint, sequela +C2890458|T037|AB|T84.031|ICD10CM|Mechanical loosening of internal left hip prosthetic joint|Mechanical loosening of internal left hip prosthetic joint +C2890458|T037|HT|T84.031|ICD10CM|Mechanical loosening of internal left hip prosthetic joint|Mechanical loosening of internal left hip prosthetic joint +C2890459|T037|AB|T84.031A|ICD10CM|Mech loosening of internal left hip prosthetic joint, init|Mech loosening of internal left hip prosthetic joint, init +C2890459|T037|PT|T84.031A|ICD10CM|Mechanical loosening of internal left hip prosthetic joint, initial encounter|Mechanical loosening of internal left hip prosthetic joint, initial encounter +C2890460|T037|AB|T84.031D|ICD10CM|Mech loosening of internal left hip prosthetic joint, subs|Mech loosening of internal left hip prosthetic joint, subs +C2890460|T037|PT|T84.031D|ICD10CM|Mechanical loosening of internal left hip prosthetic joint, subsequent encounter|Mechanical loosening of internal left hip prosthetic joint, subsequent encounter +C2890461|T037|AB|T84.031S|ICD10CM|Mech loosening of internal left hip prosth joint, sequela|Mech loosening of internal left hip prosth joint, sequela +C2890461|T037|PT|T84.031S|ICD10CM|Mechanical loosening of internal left hip prosthetic joint, sequela|Mechanical loosening of internal left hip prosthetic joint, sequela +C2890462|T037|AB|T84.032|ICD10CM|Mechanical loosening of internal right knee prosthetic joint|Mechanical loosening of internal right knee prosthetic joint +C2890462|T037|HT|T84.032|ICD10CM|Mechanical loosening of internal right knee prosthetic joint|Mechanical loosening of internal right knee prosthetic joint +C2890463|T037|AB|T84.032A|ICD10CM|Mech loosening of internal right knee prosthetic joint, init|Mech loosening of internal right knee prosthetic joint, init +C2890463|T037|PT|T84.032A|ICD10CM|Mechanical loosening of internal right knee prosthetic joint, initial encounter|Mechanical loosening of internal right knee prosthetic joint, initial encounter +C2890464|T037|AB|T84.032D|ICD10CM|Mech loosening of internal right knee prosthetic joint, subs|Mech loosening of internal right knee prosthetic joint, subs +C2890464|T037|PT|T84.032D|ICD10CM|Mechanical loosening of internal right knee prosthetic joint, subsequent encounter|Mechanical loosening of internal right knee prosthetic joint, subsequent encounter +C2890465|T037|AB|T84.032S|ICD10CM|Mech loosening of internal right knee prosth joint, sequela|Mech loosening of internal right knee prosth joint, sequela +C2890465|T037|PT|T84.032S|ICD10CM|Mechanical loosening of internal right knee prosthetic joint, sequela|Mechanical loosening of internal right knee prosthetic joint, sequela +C2890466|T037|AB|T84.033|ICD10CM|Mechanical loosening of internal left knee prosthetic joint|Mechanical loosening of internal left knee prosthetic joint +C2890466|T037|HT|T84.033|ICD10CM|Mechanical loosening of internal left knee prosthetic joint|Mechanical loosening of internal left knee prosthetic joint +C2890467|T037|AB|T84.033A|ICD10CM|Mech loosening of internal left knee prosthetic joint, init|Mech loosening of internal left knee prosthetic joint, init +C2890467|T037|PT|T84.033A|ICD10CM|Mechanical loosening of internal left knee prosthetic joint, initial encounter|Mechanical loosening of internal left knee prosthetic joint, initial encounter +C2890468|T037|AB|T84.033D|ICD10CM|Mech loosening of internal left knee prosthetic joint, subs|Mech loosening of internal left knee prosthetic joint, subs +C2890468|T037|PT|T84.033D|ICD10CM|Mechanical loosening of internal left knee prosthetic joint, subsequent encounter|Mechanical loosening of internal left knee prosthetic joint, subsequent encounter +C2890469|T037|AB|T84.033S|ICD10CM|Mech loosening of internal left knee prosth joint, sequela|Mech loosening of internal left knee prosth joint, sequela +C2890469|T037|PT|T84.033S|ICD10CM|Mechanical loosening of internal left knee prosthetic joint, sequela|Mechanical loosening of internal left knee prosthetic joint, sequela +C2890470|T037|AB|T84.038|ICD10CM|Mechanical loosening of other internal prosthetic joint|Mechanical loosening of other internal prosthetic joint +C2890470|T037|HT|T84.038|ICD10CM|Mechanical loosening of other internal prosthetic joint|Mechanical loosening of other internal prosthetic joint +C2890471|T037|AB|T84.038A|ICD10CM|Mechanical loosening of oth internal prosthetic joint, init|Mechanical loosening of oth internal prosthetic joint, init +C2890471|T037|PT|T84.038A|ICD10CM|Mechanical loosening of other internal prosthetic joint, initial encounter|Mechanical loosening of other internal prosthetic joint, initial encounter +C2890472|T037|AB|T84.038D|ICD10CM|Mechanical loosening of oth internal prosthetic joint, subs|Mechanical loosening of oth internal prosthetic joint, subs +C2890472|T037|PT|T84.038D|ICD10CM|Mechanical loosening of other internal prosthetic joint, subsequent encounter|Mechanical loosening of other internal prosthetic joint, subsequent encounter +C2890473|T037|AB|T84.038S|ICD10CM|Mechanical loosening of internal prosthetic joint, sequela|Mechanical loosening of internal prosthetic joint, sequela +C2890473|T037|PT|T84.038S|ICD10CM|Mechanical loosening of other internal prosthetic joint, sequela|Mechanical loosening of other internal prosthetic joint, sequela +C2890474|T037|AB|T84.039|ICD10CM|Mechanical loosening of unsp internal prosthetic joint|Mechanical loosening of unsp internal prosthetic joint +C2890474|T037|HT|T84.039|ICD10CM|Mechanical loosening of unspecified internal prosthetic joint|Mechanical loosening of unspecified internal prosthetic joint +C2890475|T037|AB|T84.039A|ICD10CM|Mechanical loosening of unsp internal prosthetic joint, init|Mechanical loosening of unsp internal prosthetic joint, init +C2890475|T037|PT|T84.039A|ICD10CM|Mechanical loosening of unspecified internal prosthetic joint, initial encounter|Mechanical loosening of unspecified internal prosthetic joint, initial encounter +C2890476|T037|AB|T84.039D|ICD10CM|Mechanical loosening of unsp internal prosthetic joint, subs|Mechanical loosening of unsp internal prosthetic joint, subs +C2890476|T037|PT|T84.039D|ICD10CM|Mechanical loosening of unspecified internal prosthetic joint, subsequent encounter|Mechanical loosening of unspecified internal prosthetic joint, subsequent encounter +C2890477|T037|AB|T84.039S|ICD10CM|Mech loosening of unsp internal prosthetic joint, sequela|Mech loosening of unsp internal prosthetic joint, sequela +C2890477|T037|PT|T84.039S|ICD10CM|Mechanical loosening of unspecified internal prosthetic joint, sequela|Mechanical loosening of unspecified internal prosthetic joint, sequela +C2890503|T037|AB|T84.05|ICD10CM|Periprosthetic osteolysis of internal prosthetic joint|Periprosthetic osteolysis of internal prosthetic joint +C2890503|T037|HT|T84.05|ICD10CM|Periprosthetic osteolysis of internal prosthetic joint|Periprosthetic osteolysis of internal prosthetic joint +C2890504|T037|AB|T84.050|ICD10CM|Periprosthetic osteolysis of internal prosthetic r hip jt|Periprosthetic osteolysis of internal prosthetic r hip jt +C2890504|T037|HT|T84.050|ICD10CM|Periprosthetic osteolysis of internal prosthetic right hip joint|Periprosthetic osteolysis of internal prosthetic right hip joint +C2890505|T037|AB|T84.050A|ICD10CM|Periprosth osteolysis of internal prosthetic r hip jt, init|Periprosth osteolysis of internal prosthetic r hip jt, init +C2890505|T037|PT|T84.050A|ICD10CM|Periprosthetic osteolysis of internal prosthetic right hip joint, initial encounter|Periprosthetic osteolysis of internal prosthetic right hip joint, initial encounter +C2890506|T037|AB|T84.050D|ICD10CM|Periprosth osteolysis of internal prosthetic r hip jt, subs|Periprosth osteolysis of internal prosthetic r hip jt, subs +C2890506|T037|PT|T84.050D|ICD10CM|Periprosthetic osteolysis of internal prosthetic right hip joint, subsequent encounter|Periprosthetic osteolysis of internal prosthetic right hip joint, subsequent encounter +C2890507|T037|AB|T84.050S|ICD10CM|Periprosth osteolys of internal prosthetic r hip jt, sequela|Periprosth osteolys of internal prosthetic r hip jt, sequela +C2890507|T037|PT|T84.050S|ICD10CM|Periprosthetic osteolysis of internal prosthetic right hip joint, sequela|Periprosthetic osteolysis of internal prosthetic right hip joint, sequela +C2890508|T037|AB|T84.051|ICD10CM|Periprosthetic osteolysis of internal prosthetic l hip jt|Periprosthetic osteolysis of internal prosthetic l hip jt +C2890508|T037|HT|T84.051|ICD10CM|Periprosthetic osteolysis of internal prosthetic left hip joint|Periprosthetic osteolysis of internal prosthetic left hip joint +C2890509|T037|AB|T84.051A|ICD10CM|Periprosth osteolysis of internal prosthetic l hip jt, init|Periprosth osteolysis of internal prosthetic l hip jt, init +C2890509|T037|PT|T84.051A|ICD10CM|Periprosthetic osteolysis of internal prosthetic left hip joint, initial encounter|Periprosthetic osteolysis of internal prosthetic left hip joint, initial encounter +C2890510|T037|AB|T84.051D|ICD10CM|Periprosth osteolysis of internal prosthetic l hip jt, subs|Periprosth osteolysis of internal prosthetic l hip jt, subs +C2890510|T037|PT|T84.051D|ICD10CM|Periprosthetic osteolysis of internal prosthetic left hip joint, subsequent encounter|Periprosthetic osteolysis of internal prosthetic left hip joint, subsequent encounter +C2890511|T037|AB|T84.051S|ICD10CM|Periprosth osteolys of internal prosthetic l hip jt, sequela|Periprosth osteolys of internal prosthetic l hip jt, sequela +C2890511|T037|PT|T84.051S|ICD10CM|Periprosthetic osteolysis of internal prosthetic left hip joint, sequela|Periprosthetic osteolysis of internal prosthetic left hip joint, sequela +C2890512|T037|AB|T84.052|ICD10CM|Periprosthetic osteolysis of internal prosthetic r knee jt|Periprosthetic osteolysis of internal prosthetic r knee jt +C2890512|T037|HT|T84.052|ICD10CM|Periprosthetic osteolysis of internal prosthetic right knee joint|Periprosthetic osteolysis of internal prosthetic right knee joint +C2890513|T037|AB|T84.052A|ICD10CM|Periprosth osteolysis of internal prosthetic r knee jt, init|Periprosth osteolysis of internal prosthetic r knee jt, init +C2890513|T037|PT|T84.052A|ICD10CM|Periprosthetic osteolysis of internal prosthetic right knee joint, initial encounter|Periprosthetic osteolysis of internal prosthetic right knee joint, initial encounter +C2890514|T037|AB|T84.052D|ICD10CM|Periprosth osteolysis of internal prosthetic r knee jt, subs|Periprosth osteolysis of internal prosthetic r knee jt, subs +C2890514|T037|PT|T84.052D|ICD10CM|Periprosthetic osteolysis of internal prosthetic right knee joint, subsequent encounter|Periprosthetic osteolysis of internal prosthetic right knee joint, subsequent encounter +C2890515|T037|AB|T84.052S|ICD10CM|Periprosth osteolys of internal prosth r knee jt, sequela|Periprosth osteolys of internal prosth r knee jt, sequela +C2890515|T037|PT|T84.052S|ICD10CM|Periprosthetic osteolysis of internal prosthetic right knee joint, sequela|Periprosthetic osteolysis of internal prosthetic right knee joint, sequela +C2890516|T037|AB|T84.053|ICD10CM|Periprosthetic osteolysis of internal prosthetic l knee jt|Periprosthetic osteolysis of internal prosthetic l knee jt +C2890516|T037|HT|T84.053|ICD10CM|Periprosthetic osteolysis of internal prosthetic left knee joint|Periprosthetic osteolysis of internal prosthetic left knee joint +C2890517|T037|AB|T84.053A|ICD10CM|Periprosth osteolysis of internal prosthetic l knee jt, init|Periprosth osteolysis of internal prosthetic l knee jt, init +C2890517|T037|PT|T84.053A|ICD10CM|Periprosthetic osteolysis of internal prosthetic left knee joint, initial encounter|Periprosthetic osteolysis of internal prosthetic left knee joint, initial encounter +C2890518|T037|AB|T84.053D|ICD10CM|Periprosth osteolysis of internal prosthetic l knee jt, subs|Periprosth osteolysis of internal prosthetic l knee jt, subs +C2890518|T037|PT|T84.053D|ICD10CM|Periprosthetic osteolysis of internal prosthetic left knee joint, subsequent encounter|Periprosthetic osteolysis of internal prosthetic left knee joint, subsequent encounter +C2890519|T037|AB|T84.053S|ICD10CM|Periprosth osteolys of internal prosth l knee jt, sequela|Periprosth osteolys of internal prosth l knee jt, sequela +C2890519|T037|PT|T84.053S|ICD10CM|Periprosthetic osteolysis of internal prosthetic left knee joint, sequela|Periprosthetic osteolysis of internal prosthetic left knee joint, sequela +C2890520|T037|AB|T84.058|ICD10CM|Periprosthetic osteolysis of other internal prosthetic joint|Periprosthetic osteolysis of other internal prosthetic joint +C2890520|T037|HT|T84.058|ICD10CM|Periprosthetic osteolysis of other internal prosthetic joint|Periprosthetic osteolysis of other internal prosthetic joint +C2890521|T037|AB|T84.058A|ICD10CM|Periprosthetic osteolysis of internal prosthetic joint, init|Periprosthetic osteolysis of internal prosthetic joint, init +C2890521|T037|PT|T84.058A|ICD10CM|Periprosthetic osteolysis of other internal prosthetic joint, initial encounter|Periprosthetic osteolysis of other internal prosthetic joint, initial encounter +C2890522|T037|AB|T84.058D|ICD10CM|Periprosthetic osteolysis of internal prosthetic joint, subs|Periprosthetic osteolysis of internal prosthetic joint, subs +C2890522|T037|PT|T84.058D|ICD10CM|Periprosthetic osteolysis of other internal prosthetic joint, subsequent encounter|Periprosthetic osteolysis of other internal prosthetic joint, subsequent encounter +C2890523|T037|AB|T84.058S|ICD10CM|Periprosth osteolysis of internal prosthetic joint, sequela|Periprosth osteolysis of internal prosthetic joint, sequela +C2890523|T037|PT|T84.058S|ICD10CM|Periprosthetic osteolysis of other internal prosthetic joint, sequela|Periprosthetic osteolysis of other internal prosthetic joint, sequela +C2890524|T037|AB|T84.059|ICD10CM|Periprosthetic osteolysis of unsp internal prosthetic joint|Periprosthetic osteolysis of unsp internal prosthetic joint +C2890524|T037|HT|T84.059|ICD10CM|Periprosthetic osteolysis of unspecified internal prosthetic joint|Periprosthetic osteolysis of unspecified internal prosthetic joint +C2890525|T037|AB|T84.059A|ICD10CM|Periprosth osteolys of unsp internal prosthetic joint, init|Periprosth osteolys of unsp internal prosthetic joint, init +C2890525|T037|PT|T84.059A|ICD10CM|Periprosthetic osteolysis of unspecified internal prosthetic joint, initial encounter|Periprosthetic osteolysis of unspecified internal prosthetic joint, initial encounter +C2890526|T037|AB|T84.059D|ICD10CM|Periprosth osteolys of unsp internal prosthetic joint, subs|Periprosth osteolys of unsp internal prosthetic joint, subs +C2890526|T037|PT|T84.059D|ICD10CM|Periprosthetic osteolysis of unspecified internal prosthetic joint, subsequent encounter|Periprosthetic osteolysis of unspecified internal prosthetic joint, subsequent encounter +C2890527|T037|AB|T84.059S|ICD10CM|Periprosth osteolys of unsp internal prosth joint, sequela|Periprosth osteolys of unsp internal prosth joint, sequela +C2890527|T037|PT|T84.059S|ICD10CM|Periprosthetic osteolysis of unspecified internal prosthetic joint, sequela|Periprosthetic osteolysis of unspecified internal prosthetic joint, sequela +C2890528|T037|AB|T84.06|ICD10CM|Wear of articular bearing surface of internal prosth joint|Wear of articular bearing surface of internal prosth joint +C2890528|T037|HT|T84.06|ICD10CM|Wear of articular bearing surface of internal prosthetic joint|Wear of articular bearing surface of internal prosthetic joint +C2890529|T037|AB|T84.060|ICD10CM|Wear of artic bearing surface of internal prosth r hip jt|Wear of artic bearing surface of internal prosth r hip jt +C2890529|T037|HT|T84.060|ICD10CM|Wear of articular bearing surface of internal prosthetic right hip joint|Wear of articular bearing surface of internal prosthetic right hip joint +C2890530|T037|AB|T84.060A|ICD10CM|Wear of artic bearing surface of int prosth r hip jt, init|Wear of artic bearing surface of int prosth r hip jt, init +C2890530|T037|PT|T84.060A|ICD10CM|Wear of articular bearing surface of internal prosthetic right hip joint, initial encounter|Wear of articular bearing surface of internal prosthetic right hip joint, initial encounter +C2890531|T037|AB|T84.060D|ICD10CM|Wear of artic bearing surface of int prosth r hip jt, subs|Wear of artic bearing surface of int prosth r hip jt, subs +C2890531|T037|PT|T84.060D|ICD10CM|Wear of articular bearing surface of internal prosthetic right hip joint, subsequent encounter|Wear of articular bearing surface of internal prosthetic right hip joint, subsequent encounter +C2890532|T037|AB|T84.060S|ICD10CM|Wear of artic bearing surface of int prosth r hip jt, sqla|Wear of artic bearing surface of int prosth r hip jt, sqla +C2890532|T037|PT|T84.060S|ICD10CM|Wear of articular bearing surface of internal prosthetic right hip joint, sequela|Wear of articular bearing surface of internal prosthetic right hip joint, sequela +C2890533|T037|AB|T84.061|ICD10CM|Wear of artic bearing surface of internal prosth l hip jt|Wear of artic bearing surface of internal prosth l hip jt +C2890533|T037|HT|T84.061|ICD10CM|Wear of articular bearing surface of internal prosthetic left hip joint|Wear of articular bearing surface of internal prosthetic left hip joint +C2890534|T037|AB|T84.061A|ICD10CM|Wear of artic bearing surface of int prosth l hip jt, init|Wear of artic bearing surface of int prosth l hip jt, init +C2890534|T037|PT|T84.061A|ICD10CM|Wear of articular bearing surface of internal prosthetic left hip joint, initial encounter|Wear of articular bearing surface of internal prosthetic left hip joint, initial encounter +C2890535|T037|AB|T84.061D|ICD10CM|Wear of artic bearing surface of int prosth l hip jt, subs|Wear of artic bearing surface of int prosth l hip jt, subs +C2890535|T037|PT|T84.061D|ICD10CM|Wear of articular bearing surface of internal prosthetic left hip joint, subsequent encounter|Wear of articular bearing surface of internal prosthetic left hip joint, subsequent encounter +C2890536|T037|AB|T84.061S|ICD10CM|Wear of artic bearing surface of int prosth l hip jt, sqla|Wear of artic bearing surface of int prosth l hip jt, sqla +C2890536|T037|PT|T84.061S|ICD10CM|Wear of articular bearing surface of internal prosthetic left hip joint, sequela|Wear of articular bearing surface of internal prosthetic left hip joint, sequela +C2890537|T037|AB|T84.062|ICD10CM|Wear of artic bearing surface of internal prosth r knee jt|Wear of artic bearing surface of internal prosth r knee jt +C2890537|T037|HT|T84.062|ICD10CM|Wear of articular bearing surface of internal prosthetic right knee joint|Wear of articular bearing surface of internal prosthetic right knee joint +C2890538|T037|AB|T84.062A|ICD10CM|Wear of artic bearing surface of int prosth r knee jt, init|Wear of artic bearing surface of int prosth r knee jt, init +C2890538|T037|PT|T84.062A|ICD10CM|Wear of articular bearing surface of internal prosthetic right knee joint, initial encounter|Wear of articular bearing surface of internal prosthetic right knee joint, initial encounter +C2890539|T037|AB|T84.062D|ICD10CM|Wear of artic bearing surface of int prosth r knee jt, subs|Wear of artic bearing surface of int prosth r knee jt, subs +C2890539|T037|PT|T84.062D|ICD10CM|Wear of articular bearing surface of internal prosthetic right knee joint, subsequent encounter|Wear of articular bearing surface of internal prosthetic right knee joint, subsequent encounter +C2890540|T037|AB|T84.062S|ICD10CM|Wear of artic bearing surface of int prosth r knee jt, sqla|Wear of artic bearing surface of int prosth r knee jt, sqla +C2890540|T037|PT|T84.062S|ICD10CM|Wear of articular bearing surface of internal prosthetic right knee joint, sequela|Wear of articular bearing surface of internal prosthetic right knee joint, sequela +C2890541|T037|AB|T84.063|ICD10CM|Wear of artic bearing surface of internal prosth l knee jt|Wear of artic bearing surface of internal prosth l knee jt +C2890541|T037|HT|T84.063|ICD10CM|Wear of articular bearing surface of internal prosthetic left knee joint|Wear of articular bearing surface of internal prosthetic left knee joint +C2890542|T037|AB|T84.063A|ICD10CM|Wear of artic bearing surface of int prosth l knee jt, init|Wear of artic bearing surface of int prosth l knee jt, init +C2890542|T037|PT|T84.063A|ICD10CM|Wear of articular bearing surface of internal prosthetic left knee joint, initial encounter|Wear of articular bearing surface of internal prosthetic left knee joint, initial encounter +C2890543|T037|AB|T84.063D|ICD10CM|Wear of artic bearing surface of int prosth l knee jt, subs|Wear of artic bearing surface of int prosth l knee jt, subs +C2890543|T037|PT|T84.063D|ICD10CM|Wear of articular bearing surface of internal prosthetic left knee joint, subsequent encounter|Wear of articular bearing surface of internal prosthetic left knee joint, subsequent encounter +C2890544|T037|AB|T84.063S|ICD10CM|Wear of artic bearing surface of int prosth l knee jt, sqla|Wear of artic bearing surface of int prosth l knee jt, sqla +C2890544|T037|PT|T84.063S|ICD10CM|Wear of articular bearing surface of internal prosthetic left knee joint, sequela|Wear of articular bearing surface of internal prosthetic left knee joint, sequela +C2890528|T037|AB|T84.068|ICD10CM|Wear of articular bearing surface of internal prosth joint|Wear of articular bearing surface of internal prosth joint +C2890528|T037|HT|T84.068|ICD10CM|Wear of articular bearing surface of other internal prosthetic joint|Wear of articular bearing surface of other internal prosthetic joint +C2890546|T037|AB|T84.068A|ICD10CM|Wear of artic bearing surface of internal prosth joint, init|Wear of artic bearing surface of internal prosth joint, init +C2890546|T037|PT|T84.068A|ICD10CM|Wear of articular bearing surface of other internal prosthetic joint, initial encounter|Wear of articular bearing surface of other internal prosthetic joint, initial encounter +C2890547|T037|AB|T84.068D|ICD10CM|Wear of artic bearing surface of internal prosth joint, subs|Wear of artic bearing surface of internal prosth joint, subs +C2890547|T037|PT|T84.068D|ICD10CM|Wear of articular bearing surface of other internal prosthetic joint, subsequent encounter|Wear of articular bearing surface of other internal prosthetic joint, subsequent encounter +C2890548|T037|AB|T84.068S|ICD10CM|Wear of artic bearing surface of int prosth joint, sequela|Wear of artic bearing surface of int prosth joint, sequela +C2890548|T037|PT|T84.068S|ICD10CM|Wear of articular bearing surface of other internal prosthetic joint, sequela|Wear of articular bearing surface of other internal prosthetic joint, sequela +C2890549|T037|AB|T84.069|ICD10CM|Wear of artic bearing surface of unsp internal prosth joint|Wear of artic bearing surface of unsp internal prosth joint +C2890549|T037|HT|T84.069|ICD10CM|Wear of articular bearing surface of unspecified internal prosthetic joint|Wear of articular bearing surface of unspecified internal prosthetic joint +C2890550|T037|AB|T84.069A|ICD10CM|Wear of artic bearing surface of unsp int prosth joint, init|Wear of artic bearing surface of unsp int prosth joint, init +C2890550|T037|PT|T84.069A|ICD10CM|Wear of articular bearing surface of unspecified internal prosthetic joint, initial encounter|Wear of articular bearing surface of unspecified internal prosthetic joint, initial encounter +C2890551|T037|AB|T84.069D|ICD10CM|Wear of artic bearing surface of unsp int prosth joint, subs|Wear of artic bearing surface of unsp int prosth joint, subs +C2890551|T037|PT|T84.069D|ICD10CM|Wear of articular bearing surface of unspecified internal prosthetic joint, subsequent encounter|Wear of articular bearing surface of unspecified internal prosthetic joint, subsequent encounter +C2890552|T037|AB|T84.069S|ICD10CM|Wear of artic bearing surface of unsp int prosth joint, sqla|Wear of artic bearing surface of unsp int prosth joint, sqla +C2890552|T037|PT|T84.069S|ICD10CM|Wear of articular bearing surface of unspecified internal prosthetic joint, sequela|Wear of articular bearing surface of unspecified internal prosthetic joint, sequela +C2890553|T037|AB|T84.09|ICD10CM|Other mechanical complication of internal joint prosthesis|Other mechanical complication of internal joint prosthesis +C2890553|T037|HT|T84.09|ICD10CM|Other mechanical complication of internal joint prosthesis|Other mechanical complication of internal joint prosthesis +C1561659|T037|ET|T84.09|ICD10CM|Prosthetic joint implant failure NOS|Prosthetic joint implant failure NOS +C2890554|T037|AB|T84.090|ICD10CM|Mech compl of internal right hip prosthesis|Mech compl of internal right hip prosthesis +C2890554|T037|HT|T84.090|ICD10CM|Other mechanical complication of internal right hip prosthesis|Other mechanical complication of internal right hip prosthesis +C2890555|T037|AB|T84.090A|ICD10CM|Mech compl of internal right hip prosthesis, init encntr|Mech compl of internal right hip prosthesis, init encntr +C2890555|T037|PT|T84.090A|ICD10CM|Other mechanical complication of internal right hip prosthesis, initial encounter|Other mechanical complication of internal right hip prosthesis, initial encounter +C2890556|T037|AB|T84.090D|ICD10CM|Mech compl of internal right hip prosthesis, subs encntr|Mech compl of internal right hip prosthesis, subs encntr +C2890556|T037|PT|T84.090D|ICD10CM|Other mechanical complication of internal right hip prosthesis, subsequent encounter|Other mechanical complication of internal right hip prosthesis, subsequent encounter +C2890557|T037|AB|T84.090S|ICD10CM|Mech compl of internal right hip prosthesis, sequela|Mech compl of internal right hip prosthesis, sequela +C2890557|T037|PT|T84.090S|ICD10CM|Other mechanical complication of internal right hip prosthesis, sequela|Other mechanical complication of internal right hip prosthesis, sequela +C2890558|T037|AB|T84.091|ICD10CM|Mech compl of internal left hip prosthesis|Mech compl of internal left hip prosthesis +C2890558|T037|HT|T84.091|ICD10CM|Other mechanical complication of internal left hip prosthesis|Other mechanical complication of internal left hip prosthesis +C2890559|T037|AB|T84.091A|ICD10CM|Mech compl of internal left hip prosthesis, init encntr|Mech compl of internal left hip prosthesis, init encntr +C2890559|T037|PT|T84.091A|ICD10CM|Other mechanical complication of internal left hip prosthesis, initial encounter|Other mechanical complication of internal left hip prosthesis, initial encounter +C2890560|T037|AB|T84.091D|ICD10CM|Mech compl of internal left hip prosthesis, subs encntr|Mech compl of internal left hip prosthesis, subs encntr +C2890560|T037|PT|T84.091D|ICD10CM|Other mechanical complication of internal left hip prosthesis, subsequent encounter|Other mechanical complication of internal left hip prosthesis, subsequent encounter +C2890561|T037|AB|T84.091S|ICD10CM|Mech compl of internal left hip prosthesis, sequela|Mech compl of internal left hip prosthesis, sequela +C2890561|T037|PT|T84.091S|ICD10CM|Other mechanical complication of internal left hip prosthesis, sequela|Other mechanical complication of internal left hip prosthesis, sequela +C2890562|T037|AB|T84.092|ICD10CM|Mech compl of internal right knee prosthesis|Mech compl of internal right knee prosthesis +C2890562|T037|HT|T84.092|ICD10CM|Other mechanical complication of internal right knee prosthesis|Other mechanical complication of internal right knee prosthesis +C2890563|T037|AB|T84.092A|ICD10CM|Mech compl of internal right knee prosthesis, init encntr|Mech compl of internal right knee prosthesis, init encntr +C2890563|T037|PT|T84.092A|ICD10CM|Other mechanical complication of internal right knee prosthesis, initial encounter|Other mechanical complication of internal right knee prosthesis, initial encounter +C2890564|T037|AB|T84.092D|ICD10CM|Mech compl of internal right knee prosthesis, subs encntr|Mech compl of internal right knee prosthesis, subs encntr +C2890564|T037|PT|T84.092D|ICD10CM|Other mechanical complication of internal right knee prosthesis, subsequent encounter|Other mechanical complication of internal right knee prosthesis, subsequent encounter +C2890565|T037|AB|T84.092S|ICD10CM|Mech compl of internal right knee prosthesis, sequela|Mech compl of internal right knee prosthesis, sequela +C2890565|T037|PT|T84.092S|ICD10CM|Other mechanical complication of internal right knee prosthesis, sequela|Other mechanical complication of internal right knee prosthesis, sequela +C2890566|T037|AB|T84.093|ICD10CM|Mech compl of internal left knee prosthesis|Mech compl of internal left knee prosthesis +C2890566|T037|HT|T84.093|ICD10CM|Other mechanical complication of internal left knee prosthesis|Other mechanical complication of internal left knee prosthesis +C2890567|T037|AB|T84.093A|ICD10CM|Mech compl of internal left knee prosthesis, init encntr|Mech compl of internal left knee prosthesis, init encntr +C2890567|T037|PT|T84.093A|ICD10CM|Other mechanical complication of internal left knee prosthesis, initial encounter|Other mechanical complication of internal left knee prosthesis, initial encounter +C2890568|T037|AB|T84.093D|ICD10CM|Mech compl of internal left knee prosthesis, subs encntr|Mech compl of internal left knee prosthesis, subs encntr +C2890568|T037|PT|T84.093D|ICD10CM|Other mechanical complication of internal left knee prosthesis, subsequent encounter|Other mechanical complication of internal left knee prosthesis, subsequent encounter +C2890569|T037|AB|T84.093S|ICD10CM|Mech compl of internal left knee prosthesis, sequela|Mech compl of internal left knee prosthesis, sequela +C2890569|T037|PT|T84.093S|ICD10CM|Other mechanical complication of internal left knee prosthesis, sequela|Other mechanical complication of internal left knee prosthesis, sequela +C2890570|T037|AB|T84.098|ICD10CM|Mech compl of other internal joint prosthesis|Mech compl of other internal joint prosthesis +C2890570|T037|HT|T84.098|ICD10CM|Other mechanical complication of other internal joint prosthesis|Other mechanical complication of other internal joint prosthesis +C2890571|T037|AB|T84.098A|ICD10CM|Mech compl of other internal joint prosthesis, init encntr|Mech compl of other internal joint prosthesis, init encntr +C2890571|T037|PT|T84.098A|ICD10CM|Other mechanical complication of other internal joint prosthesis, initial encounter|Other mechanical complication of other internal joint prosthesis, initial encounter +C2890572|T037|AB|T84.098D|ICD10CM|Mech compl of other internal joint prosthesis, subs encntr|Mech compl of other internal joint prosthesis, subs encntr +C2890572|T037|PT|T84.098D|ICD10CM|Other mechanical complication of other internal joint prosthesis, subsequent encounter|Other mechanical complication of other internal joint prosthesis, subsequent encounter +C2890573|T037|AB|T84.098S|ICD10CM|Mech compl of other internal joint prosthesis, sequela|Mech compl of other internal joint prosthesis, sequela +C2890573|T037|PT|T84.098S|ICD10CM|Other mechanical complication of other internal joint prosthesis, sequela|Other mechanical complication of other internal joint prosthesis, sequela +C2890574|T037|AB|T84.099|ICD10CM|Mech compl of unspecified internal joint prosthesis|Mech compl of unspecified internal joint prosthesis +C2890574|T037|HT|T84.099|ICD10CM|Other mechanical complication of unspecified internal joint prosthesis|Other mechanical complication of unspecified internal joint prosthesis +C2890575|T037|AB|T84.099A|ICD10CM|Mech compl of unsp internal joint prosthesis, init encntr|Mech compl of unsp internal joint prosthesis, init encntr +C2890575|T037|PT|T84.099A|ICD10CM|Other mechanical complication of unspecified internal joint prosthesis, initial encounter|Other mechanical complication of unspecified internal joint prosthesis, initial encounter +C2890576|T037|AB|T84.099D|ICD10CM|Mech compl of unsp internal joint prosthesis, subs encntr|Mech compl of unsp internal joint prosthesis, subs encntr +C2890576|T037|PT|T84.099D|ICD10CM|Other mechanical complication of unspecified internal joint prosthesis, subsequent encounter|Other mechanical complication of unspecified internal joint prosthesis, subsequent encounter +C2890577|T037|AB|T84.099S|ICD10CM|Mech compl of unspecified internal joint prosthesis, sequela|Mech compl of unspecified internal joint prosthesis, sequela +C2890577|T037|PT|T84.099S|ICD10CM|Other mechanical complication of unspecified internal joint prosthesis, sequela|Other mechanical complication of unspecified internal joint prosthesis, sequela +C0496148|T046|AB|T84.1|ICD10CM|Mechanical complication of int fix of bones of limb|Mechanical complication of int fix of bones of limb +C0496148|T046|HT|T84.1|ICD10CM|Mechanical complication of internal fixation device of bones of limb|Mechanical complication of internal fixation device of bones of limb +C0496148|T046|PT|T84.1|ICD10|Mechanical complication of internal fixation device of bones of limb|Mechanical complication of internal fixation device of bones of limb +C2890578|T037|AB|T84.11|ICD10CM|Breakdown (mechanical) of int fix of bones of limb|Breakdown (mechanical) of int fix of bones of limb +C2890578|T037|HT|T84.11|ICD10CM|Breakdown (mechanical) of internal fixation device of bones of limb|Breakdown (mechanical) of internal fixation device of bones of limb +C2890579|T037|AB|T84.110|ICD10CM|Breakdown (mechanical) of int fix of right humerus|Breakdown (mechanical) of int fix of right humerus +C2890579|T037|HT|T84.110|ICD10CM|Breakdown (mechanical) of internal fixation device of right humerus|Breakdown (mechanical) of internal fixation device of right humerus +C2890580|T037|AB|T84.110A|ICD10CM|Breakdown (mechanical) of int fix of right humerus, init|Breakdown (mechanical) of int fix of right humerus, init +C2890580|T037|PT|T84.110A|ICD10CM|Breakdown (mechanical) of internal fixation device of right humerus, initial encounter|Breakdown (mechanical) of internal fixation device of right humerus, initial encounter +C2890581|T037|AB|T84.110D|ICD10CM|Breakdown (mechanical) of int fix of right humerus, subs|Breakdown (mechanical) of int fix of right humerus, subs +C2890581|T037|PT|T84.110D|ICD10CM|Breakdown (mechanical) of internal fixation device of right humerus, subsequent encounter|Breakdown (mechanical) of internal fixation device of right humerus, subsequent encounter +C2890582|T037|AB|T84.110S|ICD10CM|Breakdown (mechanical) of int fix of right humerus, sequela|Breakdown (mechanical) of int fix of right humerus, sequela +C2890582|T037|PT|T84.110S|ICD10CM|Breakdown (mechanical) of internal fixation device of right humerus, sequela|Breakdown (mechanical) of internal fixation device of right humerus, sequela +C2890583|T037|AB|T84.111|ICD10CM|Breakdown (mechanical) of int fix of left humerus|Breakdown (mechanical) of int fix of left humerus +C2890583|T037|HT|T84.111|ICD10CM|Breakdown (mechanical) of internal fixation device of left humerus|Breakdown (mechanical) of internal fixation device of left humerus +C2890584|T037|AB|T84.111A|ICD10CM|Breakdown (mechanical) of int fix of left humerus, init|Breakdown (mechanical) of int fix of left humerus, init +C2890584|T037|PT|T84.111A|ICD10CM|Breakdown (mechanical) of internal fixation device of left humerus, initial encounter|Breakdown (mechanical) of internal fixation device of left humerus, initial encounter +C2890585|T037|AB|T84.111D|ICD10CM|Breakdown (mechanical) of int fix of left humerus, subs|Breakdown (mechanical) of int fix of left humerus, subs +C2890585|T037|PT|T84.111D|ICD10CM|Breakdown (mechanical) of internal fixation device of left humerus, subsequent encounter|Breakdown (mechanical) of internal fixation device of left humerus, subsequent encounter +C2890586|T037|AB|T84.111S|ICD10CM|Breakdown (mechanical) of int fix of left humerus, sequela|Breakdown (mechanical) of int fix of left humerus, sequela +C2890586|T037|PT|T84.111S|ICD10CM|Breakdown (mechanical) of internal fixation device of left humerus, sequela|Breakdown (mechanical) of internal fixation device of left humerus, sequela +C2890587|T037|AB|T84.112|ICD10CM|Breakdown (mechanical) of int fix of bone of right forearm|Breakdown (mechanical) of int fix of bone of right forearm +C2890587|T037|HT|T84.112|ICD10CM|Breakdown (mechanical) of internal fixation device of bone of right forearm|Breakdown (mechanical) of internal fixation device of bone of right forearm +C2890588|T037|AB|T84.112A|ICD10CM|Breakdown (mechanical) of int fix of bone of r forearm, init|Breakdown (mechanical) of int fix of bone of r forearm, init +C2890588|T037|PT|T84.112A|ICD10CM|Breakdown (mechanical) of internal fixation device of bone of right forearm, initial encounter|Breakdown (mechanical) of internal fixation device of bone of right forearm, initial encounter +C2890589|T037|AB|T84.112D|ICD10CM|Breakdown (mechanical) of int fix of bone of r forearm, subs|Breakdown (mechanical) of int fix of bone of r forearm, subs +C2890589|T037|PT|T84.112D|ICD10CM|Breakdown (mechanical) of internal fixation device of bone of right forearm, subsequent encounter|Breakdown (mechanical) of internal fixation device of bone of right forearm, subsequent encounter +C2890590|T037|PT|T84.112S|ICD10CM|Breakdown (mechanical) of internal fixation device of bone of right forearm, sequela|Breakdown (mechanical) of internal fixation device of bone of right forearm, sequela +C2890590|T037|AB|T84.112S|ICD10CM|Breakdown of int fix of bone of r forearm, sequela|Breakdown of int fix of bone of r forearm, sequela +C2890591|T037|AB|T84.113|ICD10CM|Breakdown (mechanical) of int fix of bone of left forearm|Breakdown (mechanical) of int fix of bone of left forearm +C2890591|T037|HT|T84.113|ICD10CM|Breakdown (mechanical) of internal fixation device of bone of left forearm|Breakdown (mechanical) of internal fixation device of bone of left forearm +C2890592|T037|PT|T84.113A|ICD10CM|Breakdown (mechanical) of internal fixation device of bone of left forearm, initial encounter|Breakdown (mechanical) of internal fixation device of bone of left forearm, initial encounter +C2890592|T037|AB|T84.113A|ICD10CM|Breakdown of int fix of bone of left forearm, init|Breakdown of int fix of bone of left forearm, init +C2890593|T037|PT|T84.113D|ICD10CM|Breakdown (mechanical) of internal fixation device of bone of left forearm, subsequent encounter|Breakdown (mechanical) of internal fixation device of bone of left forearm, subsequent encounter +C2890593|T037|AB|T84.113D|ICD10CM|Breakdown of int fix of bone of left forearm, subs|Breakdown of int fix of bone of left forearm, subs +C2890594|T037|PT|T84.113S|ICD10CM|Breakdown (mechanical) of internal fixation device of bone of left forearm, sequela|Breakdown (mechanical) of internal fixation device of bone of left forearm, sequela +C2890594|T037|AB|T84.113S|ICD10CM|Breakdown of int fix of bone of left forearm, sequela|Breakdown of int fix of bone of left forearm, sequela +C2890595|T037|AB|T84.114|ICD10CM|Breakdown (mechanical) of int fix of right femur|Breakdown (mechanical) of int fix of right femur +C2890595|T037|HT|T84.114|ICD10CM|Breakdown (mechanical) of internal fixation device of right femur|Breakdown (mechanical) of internal fixation device of right femur +C2890596|T037|AB|T84.114A|ICD10CM|Breakdown (mechanical) of int fix of right femur, init|Breakdown (mechanical) of int fix of right femur, init +C2890596|T037|PT|T84.114A|ICD10CM|Breakdown (mechanical) of internal fixation device of right femur, initial encounter|Breakdown (mechanical) of internal fixation device of right femur, initial encounter +C2890597|T037|AB|T84.114D|ICD10CM|Breakdown (mechanical) of int fix of right femur, subs|Breakdown (mechanical) of int fix of right femur, subs +C2890597|T037|PT|T84.114D|ICD10CM|Breakdown (mechanical) of internal fixation device of right femur, subsequent encounter|Breakdown (mechanical) of internal fixation device of right femur, subsequent encounter +C2890598|T037|AB|T84.114S|ICD10CM|Breakdown (mechanical) of int fix of right femur, sequela|Breakdown (mechanical) of int fix of right femur, sequela +C2890598|T037|PT|T84.114S|ICD10CM|Breakdown (mechanical) of internal fixation device of right femur, sequela|Breakdown (mechanical) of internal fixation device of right femur, sequela +C2890599|T037|AB|T84.115|ICD10CM|Breakdown (mechanical) of int fix of left femur|Breakdown (mechanical) of int fix of left femur +C2890599|T037|HT|T84.115|ICD10CM|Breakdown (mechanical) of internal fixation device of left femur|Breakdown (mechanical) of internal fixation device of left femur +C2890600|T037|AB|T84.115A|ICD10CM|Breakdown (mechanical) of int fix of left femur, init|Breakdown (mechanical) of int fix of left femur, init +C2890600|T037|PT|T84.115A|ICD10CM|Breakdown (mechanical) of internal fixation device of left femur, initial encounter|Breakdown (mechanical) of internal fixation device of left femur, initial encounter +C2890601|T037|AB|T84.115D|ICD10CM|Breakdown (mechanical) of int fix of left femur, subs|Breakdown (mechanical) of int fix of left femur, subs +C2890601|T037|PT|T84.115D|ICD10CM|Breakdown (mechanical) of internal fixation device of left femur, subsequent encounter|Breakdown (mechanical) of internal fixation device of left femur, subsequent encounter +C2890602|T037|AB|T84.115S|ICD10CM|Breakdown (mechanical) of int fix of left femur, sequela|Breakdown (mechanical) of int fix of left femur, sequela +C2890602|T037|PT|T84.115S|ICD10CM|Breakdown (mechanical) of internal fixation device of left femur, sequela|Breakdown (mechanical) of internal fixation device of left femur, sequela +C2890603|T037|AB|T84.116|ICD10CM|Breakdown (mechanical) of int fix of bone of right lower leg|Breakdown (mechanical) of int fix of bone of right lower leg +C2890603|T037|HT|T84.116|ICD10CM|Breakdown (mechanical) of internal fixation device of bone of right lower leg|Breakdown (mechanical) of internal fixation device of bone of right lower leg +C2890604|T037|AB|T84.116A|ICD10CM|Breakdown (mechanical) of int fix of bone of r low leg, init|Breakdown (mechanical) of int fix of bone of r low leg, init +C2890604|T037|PT|T84.116A|ICD10CM|Breakdown (mechanical) of internal fixation device of bone of right lower leg, initial encounter|Breakdown (mechanical) of internal fixation device of bone of right lower leg, initial encounter +C2890605|T037|AB|T84.116D|ICD10CM|Breakdown (mechanical) of int fix of bone of r low leg, subs|Breakdown (mechanical) of int fix of bone of r low leg, subs +C2890605|T037|PT|T84.116D|ICD10CM|Breakdown (mechanical) of internal fixation device of bone of right lower leg, subsequent encounter|Breakdown (mechanical) of internal fixation device of bone of right lower leg, subsequent encounter +C2890606|T037|PT|T84.116S|ICD10CM|Breakdown (mechanical) of internal fixation device of bone of right lower leg, sequela|Breakdown (mechanical) of internal fixation device of bone of right lower leg, sequela +C2890606|T037|AB|T84.116S|ICD10CM|Breakdown of int fix of bone of r low leg, sequela|Breakdown of int fix of bone of r low leg, sequela +C2890607|T037|AB|T84.117|ICD10CM|Breakdown (mechanical) of int fix of bone of left lower leg|Breakdown (mechanical) of int fix of bone of left lower leg +C2890607|T037|HT|T84.117|ICD10CM|Breakdown (mechanical) of internal fixation device of bone of left lower leg|Breakdown (mechanical) of internal fixation device of bone of left lower leg +C2890608|T037|AB|T84.117A|ICD10CM|Breakdown (mechanical) of int fix of bone of l low leg, init|Breakdown (mechanical) of int fix of bone of l low leg, init +C2890608|T037|PT|T84.117A|ICD10CM|Breakdown (mechanical) of internal fixation device of bone of left lower leg, initial encounter|Breakdown (mechanical) of internal fixation device of bone of left lower leg, initial encounter +C2890609|T037|AB|T84.117D|ICD10CM|Breakdown (mechanical) of int fix of bone of l low leg, subs|Breakdown (mechanical) of int fix of bone of l low leg, subs +C2890609|T037|PT|T84.117D|ICD10CM|Breakdown (mechanical) of internal fixation device of bone of left lower leg, subsequent encounter|Breakdown (mechanical) of internal fixation device of bone of left lower leg, subsequent encounter +C2890610|T037|PT|T84.117S|ICD10CM|Breakdown (mechanical) of internal fixation device of bone of left lower leg, sequela|Breakdown (mechanical) of internal fixation device of bone of left lower leg, sequela +C2890610|T037|AB|T84.117S|ICD10CM|Breakdown of int fix of bone of l low leg, sequela|Breakdown of int fix of bone of l low leg, sequela +C2890611|T037|AB|T84.119|ICD10CM|Breakdown (mechanical) of int fix of unsp bone of limb|Breakdown (mechanical) of int fix of unsp bone of limb +C2890611|T037|HT|T84.119|ICD10CM|Breakdown (mechanical) of internal fixation device of unspecified bone of limb|Breakdown (mechanical) of internal fixation device of unspecified bone of limb +C2890612|T037|AB|T84.119A|ICD10CM|Breakdown (mechanical) of int fix of unsp bone of limb, init|Breakdown (mechanical) of int fix of unsp bone of limb, init +C2890612|T037|PT|T84.119A|ICD10CM|Breakdown (mechanical) of internal fixation device of unspecified bone of limb, initial encounter|Breakdown (mechanical) of internal fixation device of unspecified bone of limb, initial encounter +C2890613|T037|AB|T84.119D|ICD10CM|Breakdown (mechanical) of int fix of unsp bone of limb, subs|Breakdown (mechanical) of int fix of unsp bone of limb, subs +C2890613|T037|PT|T84.119D|ICD10CM|Breakdown (mechanical) of internal fixation device of unspecified bone of limb, subsequent encounter|Breakdown (mechanical) of internal fixation device of unspecified bone of limb, subsequent encounter +C2890614|T037|PT|T84.119S|ICD10CM|Breakdown (mechanical) of internal fixation device of unspecified bone of limb, sequela|Breakdown (mechanical) of internal fixation device of unspecified bone of limb, sequela +C2890614|T037|AB|T84.119S|ICD10CM|Breakdown of int fix of unsp bone of limb, sequela|Breakdown of int fix of unsp bone of limb, sequela +C2890616|T037|AB|T84.12|ICD10CM|Displacement of internal fixation device of bones of limb|Displacement of internal fixation device of bones of limb +C2890616|T037|HT|T84.12|ICD10CM|Displacement of internal fixation device of bones of limb|Displacement of internal fixation device of bones of limb +C2890615|T037|ET|T84.12|ICD10CM|Malposition of internal fixation device of bones of limb|Malposition of internal fixation device of bones of limb +C2890617|T037|AB|T84.120|ICD10CM|Displacement of internal fixation device of right humerus|Displacement of internal fixation device of right humerus +C2890617|T037|HT|T84.120|ICD10CM|Displacement of internal fixation device of right humerus|Displacement of internal fixation device of right humerus +C2890618|T037|AB|T84.120A|ICD10CM|Displacement of int fix of right humerus, init|Displacement of int fix of right humerus, init +C2890618|T037|PT|T84.120A|ICD10CM|Displacement of internal fixation device of right humerus, initial encounter|Displacement of internal fixation device of right humerus, initial encounter +C2890619|T037|AB|T84.120D|ICD10CM|Displacement of int fix of right humerus, subs|Displacement of int fix of right humerus, subs +C2890619|T037|PT|T84.120D|ICD10CM|Displacement of internal fixation device of right humerus, subsequent encounter|Displacement of internal fixation device of right humerus, subsequent encounter +C2890620|T037|AB|T84.120S|ICD10CM|Displacement of int fix of right humerus, sequela|Displacement of int fix of right humerus, sequela +C2890620|T037|PT|T84.120S|ICD10CM|Displacement of internal fixation device of right humerus, sequela|Displacement of internal fixation device of right humerus, sequela +C2890621|T037|AB|T84.121|ICD10CM|Displacement of internal fixation device of left humerus|Displacement of internal fixation device of left humerus +C2890621|T037|HT|T84.121|ICD10CM|Displacement of internal fixation device of left humerus|Displacement of internal fixation device of left humerus +C2890622|T037|AB|T84.121A|ICD10CM|Displacement of int fix of left humerus, init|Displacement of int fix of left humerus, init +C2890622|T037|PT|T84.121A|ICD10CM|Displacement of internal fixation device of left humerus, initial encounter|Displacement of internal fixation device of left humerus, initial encounter +C2890623|T037|AB|T84.121D|ICD10CM|Displacement of int fix of left humerus, subs|Displacement of int fix of left humerus, subs +C2890623|T037|PT|T84.121D|ICD10CM|Displacement of internal fixation device of left humerus, subsequent encounter|Displacement of internal fixation device of left humerus, subsequent encounter +C2890624|T037|AB|T84.121S|ICD10CM|Displacement of int fix of left humerus, sequela|Displacement of int fix of left humerus, sequela +C2890624|T037|PT|T84.121S|ICD10CM|Displacement of internal fixation device of left humerus, sequela|Displacement of internal fixation device of left humerus, sequela +C2890625|T037|AB|T84.122|ICD10CM|Displacement of int fix of bone of right forearm|Displacement of int fix of bone of right forearm +C2890625|T037|HT|T84.122|ICD10CM|Displacement of internal fixation device of bone of right forearm|Displacement of internal fixation device of bone of right forearm +C2890626|T037|AB|T84.122A|ICD10CM|Displacement of int fix of bone of right forearm, init|Displacement of int fix of bone of right forearm, init +C2890626|T037|PT|T84.122A|ICD10CM|Displacement of internal fixation device of bone of right forearm, initial encounter|Displacement of internal fixation device of bone of right forearm, initial encounter +C2890627|T037|AB|T84.122D|ICD10CM|Displacement of int fix of bone of right forearm, subs|Displacement of int fix of bone of right forearm, subs +C2890627|T037|PT|T84.122D|ICD10CM|Displacement of internal fixation device of bone of right forearm, subsequent encounter|Displacement of internal fixation device of bone of right forearm, subsequent encounter +C2890628|T037|AB|T84.122S|ICD10CM|Displacement of int fix of bone of right forearm, sequela|Displacement of int fix of bone of right forearm, sequela +C2890628|T037|PT|T84.122S|ICD10CM|Displacement of internal fixation device of bone of right forearm, sequela|Displacement of internal fixation device of bone of right forearm, sequela +C2890629|T037|AB|T84.123|ICD10CM|Displacement of int fix of bone of left forearm|Displacement of int fix of bone of left forearm +C2890629|T037|HT|T84.123|ICD10CM|Displacement of internal fixation device of bone of left forearm|Displacement of internal fixation device of bone of left forearm +C2890630|T037|AB|T84.123A|ICD10CM|Displacement of int fix of bone of left forearm, init|Displacement of int fix of bone of left forearm, init +C2890630|T037|PT|T84.123A|ICD10CM|Displacement of internal fixation device of bone of left forearm, initial encounter|Displacement of internal fixation device of bone of left forearm, initial encounter +C2890631|T037|AB|T84.123D|ICD10CM|Displacement of int fix of bone of left forearm, subs|Displacement of int fix of bone of left forearm, subs +C2890631|T037|PT|T84.123D|ICD10CM|Displacement of internal fixation device of bone of left forearm, subsequent encounter|Displacement of internal fixation device of bone of left forearm, subsequent encounter +C2890632|T037|AB|T84.123S|ICD10CM|Displacement of int fix of bone of left forearm, sequela|Displacement of int fix of bone of left forearm, sequela +C2890632|T037|PT|T84.123S|ICD10CM|Displacement of internal fixation device of bone of left forearm, sequela|Displacement of internal fixation device of bone of left forearm, sequela +C2890633|T037|AB|T84.124|ICD10CM|Displacement of internal fixation device of right femur|Displacement of internal fixation device of right femur +C2890633|T037|HT|T84.124|ICD10CM|Displacement of internal fixation device of right femur|Displacement of internal fixation device of right femur +C2890634|T037|AB|T84.124A|ICD10CM|Displacement of int fix of right femur, init|Displacement of int fix of right femur, init +C2890634|T037|PT|T84.124A|ICD10CM|Displacement of internal fixation device of right femur, initial encounter|Displacement of internal fixation device of right femur, initial encounter +C2890635|T037|AB|T84.124D|ICD10CM|Displacement of int fix of right femur, subs|Displacement of int fix of right femur, subs +C2890635|T037|PT|T84.124D|ICD10CM|Displacement of internal fixation device of right femur, subsequent encounter|Displacement of internal fixation device of right femur, subsequent encounter +C2890636|T037|AB|T84.124S|ICD10CM|Displacement of int fix of right femur, sequela|Displacement of int fix of right femur, sequela +C2890636|T037|PT|T84.124S|ICD10CM|Displacement of internal fixation device of right femur, sequela|Displacement of internal fixation device of right femur, sequela +C2890637|T037|AB|T84.125|ICD10CM|Displacement of internal fixation device of left femur|Displacement of internal fixation device of left femur +C2890637|T037|HT|T84.125|ICD10CM|Displacement of internal fixation device of left femur|Displacement of internal fixation device of left femur +C2890638|T037|AB|T84.125A|ICD10CM|Displacement of internal fixation device of left femur, init|Displacement of internal fixation device of left femur, init +C2890638|T037|PT|T84.125A|ICD10CM|Displacement of internal fixation device of left femur, initial encounter|Displacement of internal fixation device of left femur, initial encounter +C2890639|T037|AB|T84.125D|ICD10CM|Displacement of internal fixation device of left femur, subs|Displacement of internal fixation device of left femur, subs +C2890639|T037|PT|T84.125D|ICD10CM|Displacement of internal fixation device of left femur, subsequent encounter|Displacement of internal fixation device of left femur, subsequent encounter +C2890640|T037|AB|T84.125S|ICD10CM|Displacement of int fix of left femur, sequela|Displacement of int fix of left femur, sequela +C2890640|T037|PT|T84.125S|ICD10CM|Displacement of internal fixation device of left femur, sequela|Displacement of internal fixation device of left femur, sequela +C2890641|T037|AB|T84.126|ICD10CM|Displacement of int fix of bone of right lower leg|Displacement of int fix of bone of right lower leg +C2890641|T037|HT|T84.126|ICD10CM|Displacement of internal fixation device of bone of right lower leg|Displacement of internal fixation device of bone of right lower leg +C2890642|T037|AB|T84.126A|ICD10CM|Displacement of int fix of bone of right lower leg, init|Displacement of int fix of bone of right lower leg, init +C2890642|T037|PT|T84.126A|ICD10CM|Displacement of internal fixation device of bone of right lower leg, initial encounter|Displacement of internal fixation device of bone of right lower leg, initial encounter +C2890643|T037|AB|T84.126D|ICD10CM|Displacement of int fix of bone of right lower leg, subs|Displacement of int fix of bone of right lower leg, subs +C2890643|T037|PT|T84.126D|ICD10CM|Displacement of internal fixation device of bone of right lower leg, subsequent encounter|Displacement of internal fixation device of bone of right lower leg, subsequent encounter +C2890644|T037|AB|T84.126S|ICD10CM|Displacement of int fix of bone of right lower leg, sequela|Displacement of int fix of bone of right lower leg, sequela +C2890644|T037|PT|T84.126S|ICD10CM|Displacement of internal fixation device of bone of right lower leg, sequela|Displacement of internal fixation device of bone of right lower leg, sequela +C2890645|T037|AB|T84.127|ICD10CM|Displacement of int fix of bone of left lower leg|Displacement of int fix of bone of left lower leg +C2890645|T037|HT|T84.127|ICD10CM|Displacement of internal fixation device of bone of left lower leg|Displacement of internal fixation device of bone of left lower leg +C2890646|T037|AB|T84.127A|ICD10CM|Displacement of int fix of bone of left lower leg, init|Displacement of int fix of bone of left lower leg, init +C2890646|T037|PT|T84.127A|ICD10CM|Displacement of internal fixation device of bone of left lower leg, initial encounter|Displacement of internal fixation device of bone of left lower leg, initial encounter +C2890647|T037|AB|T84.127D|ICD10CM|Displacement of int fix of bone of left lower leg, subs|Displacement of int fix of bone of left lower leg, subs +C2890647|T037|PT|T84.127D|ICD10CM|Displacement of internal fixation device of bone of left lower leg, subsequent encounter|Displacement of internal fixation device of bone of left lower leg, subsequent encounter +C2890648|T037|AB|T84.127S|ICD10CM|Displacement of int fix of bone of left lower leg, sequela|Displacement of int fix of bone of left lower leg, sequela +C2890648|T037|PT|T84.127S|ICD10CM|Displacement of internal fixation device of bone of left lower leg, sequela|Displacement of internal fixation device of bone of left lower leg, sequela +C2890649|T037|AB|T84.129|ICD10CM|Displacement of int fix of unsp bone of limb|Displacement of int fix of unsp bone of limb +C2890649|T037|HT|T84.129|ICD10CM|Displacement of internal fixation device of unspecified bone of limb|Displacement of internal fixation device of unspecified bone of limb +C2890650|T037|AB|T84.129A|ICD10CM|Displacement of int fix of unsp bone of limb, init|Displacement of int fix of unsp bone of limb, init +C2890650|T037|PT|T84.129A|ICD10CM|Displacement of internal fixation device of unspecified bone of limb, initial encounter|Displacement of internal fixation device of unspecified bone of limb, initial encounter +C2890651|T037|AB|T84.129D|ICD10CM|Displacement of int fix of unsp bone of limb, subs|Displacement of int fix of unsp bone of limb, subs +C2890651|T037|PT|T84.129D|ICD10CM|Displacement of internal fixation device of unspecified bone of limb, subsequent encounter|Displacement of internal fixation device of unspecified bone of limb, subsequent encounter +C2890652|T037|AB|T84.129S|ICD10CM|Displacement of int fix of unsp bone of limb, sequela|Displacement of int fix of unsp bone of limb, sequela +C2890652|T037|PT|T84.129S|ICD10CM|Displacement of internal fixation device of unspecified bone of limb, sequela|Displacement of internal fixation device of unspecified bone of limb, sequela +C2890656|T037|AB|T84.19|ICD10CM|Mech compl of internal fixation device of bones of limb|Mech compl of internal fixation device of bones of limb +C2890653|T037|ET|T84.19|ICD10CM|Obstruction (mechanical) of internal fixation device of bones of limb|Obstruction (mechanical) of internal fixation device of bones of limb +C2890656|T037|HT|T84.19|ICD10CM|Other mechanical complication of internal fixation device of bones of limb|Other mechanical complication of internal fixation device of bones of limb +C2890654|T037|ET|T84.19|ICD10CM|Perforation of internal fixation device of bones of limb|Perforation of internal fixation device of bones of limb +C2890655|T037|ET|T84.19|ICD10CM|Protrusion of internal fixation device of bones of limb|Protrusion of internal fixation device of bones of limb +C2890657|T037|AB|T84.190|ICD10CM|Mech compl of internal fixation device of right humerus|Mech compl of internal fixation device of right humerus +C2890657|T037|HT|T84.190|ICD10CM|Other mechanical complication of internal fixation device of right humerus|Other mechanical complication of internal fixation device of right humerus +C2890658|T037|AB|T84.190A|ICD10CM|Mech compl of int fix of right humerus, init|Mech compl of int fix of right humerus, init +C2890658|T037|PT|T84.190A|ICD10CM|Other mechanical complication of internal fixation device of right humerus, initial encounter|Other mechanical complication of internal fixation device of right humerus, initial encounter +C2890659|T037|AB|T84.190D|ICD10CM|Mech compl of int fix of right humerus, subs|Mech compl of int fix of right humerus, subs +C2890659|T037|PT|T84.190D|ICD10CM|Other mechanical complication of internal fixation device of right humerus, subsequent encounter|Other mechanical complication of internal fixation device of right humerus, subsequent encounter +C2890660|T037|AB|T84.190S|ICD10CM|Mech compl of int fix of right humerus, sequela|Mech compl of int fix of right humerus, sequela +C2890660|T037|PT|T84.190S|ICD10CM|Other mechanical complication of internal fixation device of right humerus, sequela|Other mechanical complication of internal fixation device of right humerus, sequela +C2890661|T037|AB|T84.191|ICD10CM|Mech compl of internal fixation device of left humerus|Mech compl of internal fixation device of left humerus +C2890661|T037|HT|T84.191|ICD10CM|Other mechanical complication of internal fixation device of left humerus|Other mechanical complication of internal fixation device of left humerus +C2890662|T037|AB|T84.191A|ICD10CM|Mech compl of internal fixation device of left humerus, init|Mech compl of internal fixation device of left humerus, init +C2890662|T037|PT|T84.191A|ICD10CM|Other mechanical complication of internal fixation device of left humerus, initial encounter|Other mechanical complication of internal fixation device of left humerus, initial encounter +C2890663|T037|AB|T84.191D|ICD10CM|Mech compl of internal fixation device of left humerus, subs|Mech compl of internal fixation device of left humerus, subs +C2890663|T037|PT|T84.191D|ICD10CM|Other mechanical complication of internal fixation device of left humerus, subsequent encounter|Other mechanical complication of internal fixation device of left humerus, subsequent encounter +C2890664|T037|AB|T84.191S|ICD10CM|Mech compl of int fix of left humerus, sequela|Mech compl of int fix of left humerus, sequela +C2890664|T037|PT|T84.191S|ICD10CM|Other mechanical complication of internal fixation device of left humerus, sequela|Other mechanical complication of internal fixation device of left humerus, sequela +C2890665|T037|AB|T84.192|ICD10CM|Mech compl of int fix of bone of right forearm|Mech compl of int fix of bone of right forearm +C2890665|T037|HT|T84.192|ICD10CM|Other mechanical complication of internal fixation device of bone of right forearm|Other mechanical complication of internal fixation device of bone of right forearm +C2890666|T037|AB|T84.192A|ICD10CM|Mech compl of int fix of bone of right forearm, init|Mech compl of int fix of bone of right forearm, init +C2890667|T037|AB|T84.192D|ICD10CM|Mech compl of int fix of bone of right forearm, subs|Mech compl of int fix of bone of right forearm, subs +C2890668|T037|AB|T84.192S|ICD10CM|Mech compl of int fix of bone of right forearm, sequela|Mech compl of int fix of bone of right forearm, sequela +C2890668|T037|PT|T84.192S|ICD10CM|Other mechanical complication of internal fixation device of bone of right forearm, sequela|Other mechanical complication of internal fixation device of bone of right forearm, sequela +C2890669|T037|AB|T84.193|ICD10CM|Mech compl of int fix of bone of left forearm|Mech compl of int fix of bone of left forearm +C2890669|T037|HT|T84.193|ICD10CM|Other mechanical complication of internal fixation device of bone of left forearm|Other mechanical complication of internal fixation device of bone of left forearm +C2890670|T037|AB|T84.193A|ICD10CM|Mech compl of int fix of bone of left forearm, init|Mech compl of int fix of bone of left forearm, init +C2890670|T037|PT|T84.193A|ICD10CM|Other mechanical complication of internal fixation device of bone of left forearm, initial encounter|Other mechanical complication of internal fixation device of bone of left forearm, initial encounter +C2890671|T037|AB|T84.193D|ICD10CM|Mech compl of int fix of bone of left forearm, subs|Mech compl of int fix of bone of left forearm, subs +C2890672|T037|AB|T84.193S|ICD10CM|Mech compl of int fix of bone of left forearm, sequela|Mech compl of int fix of bone of left forearm, sequela +C2890672|T037|PT|T84.193S|ICD10CM|Other mechanical complication of internal fixation device of bone of left forearm, sequela|Other mechanical complication of internal fixation device of bone of left forearm, sequela +C2890673|T037|AB|T84.194|ICD10CM|Mech compl of internal fixation device of right femur|Mech compl of internal fixation device of right femur +C2890673|T037|HT|T84.194|ICD10CM|Other mechanical complication of internal fixation device of right femur|Other mechanical complication of internal fixation device of right femur +C2890674|T037|AB|T84.194A|ICD10CM|Mech compl of internal fixation device of right femur, init|Mech compl of internal fixation device of right femur, init +C2890674|T037|PT|T84.194A|ICD10CM|Other mechanical complication of internal fixation device of right femur, initial encounter|Other mechanical complication of internal fixation device of right femur, initial encounter +C2890675|T037|AB|T84.194D|ICD10CM|Mech compl of internal fixation device of right femur, subs|Mech compl of internal fixation device of right femur, subs +C2890675|T037|PT|T84.194D|ICD10CM|Other mechanical complication of internal fixation device of right femur, subsequent encounter|Other mechanical complication of internal fixation device of right femur, subsequent encounter +C2890676|T037|AB|T84.194S|ICD10CM|Mech compl of int fix of right femur, sequela|Mech compl of int fix of right femur, sequela +C2890676|T037|PT|T84.194S|ICD10CM|Other mechanical complication of internal fixation device of right femur, sequela|Other mechanical complication of internal fixation device of right femur, sequela +C2890677|T037|AB|T84.195|ICD10CM|Mech compl of internal fixation device of left femur|Mech compl of internal fixation device of left femur +C2890677|T037|HT|T84.195|ICD10CM|Other mechanical complication of internal fixation device of left femur|Other mechanical complication of internal fixation device of left femur +C2890678|T037|AB|T84.195A|ICD10CM|Mech compl of internal fixation device of left femur, init|Mech compl of internal fixation device of left femur, init +C2890678|T037|PT|T84.195A|ICD10CM|Other mechanical complication of internal fixation device of left femur, initial encounter|Other mechanical complication of internal fixation device of left femur, initial encounter +C2890679|T037|AB|T84.195D|ICD10CM|Mech compl of internal fixation device of left femur, subs|Mech compl of internal fixation device of left femur, subs +C2890679|T037|PT|T84.195D|ICD10CM|Other mechanical complication of internal fixation device of left femur, subsequent encounter|Other mechanical complication of internal fixation device of left femur, subsequent encounter +C2890680|T037|AB|T84.195S|ICD10CM|Mech compl of int fix of left femur, sequela|Mech compl of int fix of left femur, sequela +C2890680|T037|PT|T84.195S|ICD10CM|Other mechanical complication of internal fixation device of left femur, sequela|Other mechanical complication of internal fixation device of left femur, sequela +C2890681|T037|AB|T84.196|ICD10CM|Mech compl of int fix of bone of right lower leg|Mech compl of int fix of bone of right lower leg +C2890681|T037|HT|T84.196|ICD10CM|Other mechanical complication of internal fixation device of bone of right lower leg|Other mechanical complication of internal fixation device of bone of right lower leg +C2890682|T037|AB|T84.196A|ICD10CM|Mech compl of int fix of bone of right lower leg, init|Mech compl of int fix of bone of right lower leg, init +C2890683|T037|AB|T84.196D|ICD10CM|Mech compl of int fix of bone of right lower leg, subs|Mech compl of int fix of bone of right lower leg, subs +C2890684|T037|AB|T84.196S|ICD10CM|Mech compl of int fix of bone of right lower leg, sequela|Mech compl of int fix of bone of right lower leg, sequela +C2890684|T037|PT|T84.196S|ICD10CM|Other mechanical complication of internal fixation device of bone of right lower leg, sequela|Other mechanical complication of internal fixation device of bone of right lower leg, sequela +C2890685|T037|AB|T84.197|ICD10CM|Mech compl of int fix of bone of left lower leg|Mech compl of int fix of bone of left lower leg +C2890685|T037|HT|T84.197|ICD10CM|Other mechanical complication of internal fixation device of bone of left lower leg|Other mechanical complication of internal fixation device of bone of left lower leg +C2890686|T037|AB|T84.197A|ICD10CM|Mech compl of int fix of bone of left lower leg, init|Mech compl of int fix of bone of left lower leg, init +C2890687|T037|AB|T84.197D|ICD10CM|Mech compl of int fix of bone of left lower leg, subs|Mech compl of int fix of bone of left lower leg, subs +C2890688|T037|AB|T84.197S|ICD10CM|Mech compl of int fix of bone of left lower leg, sequela|Mech compl of int fix of bone of left lower leg, sequela +C2890688|T037|PT|T84.197S|ICD10CM|Other mechanical complication of internal fixation device of bone of left lower leg, sequela|Other mechanical complication of internal fixation device of bone of left lower leg, sequela +C2890689|T037|AB|T84.199|ICD10CM|Mech compl of internal fixation device of unsp bone of limb|Mech compl of internal fixation device of unsp bone of limb +C2890689|T037|HT|T84.199|ICD10CM|Other mechanical complication of internal fixation device of unspecified bone of limb|Other mechanical complication of internal fixation device of unspecified bone of limb +C2890690|T037|AB|T84.199A|ICD10CM|Mech compl of int fix of unsp bone of limb, init|Mech compl of int fix of unsp bone of limb, init +C2890691|T037|AB|T84.199D|ICD10CM|Mech compl of int fix of unsp bone of limb, subs|Mech compl of int fix of unsp bone of limb, subs +C2890692|T037|AB|T84.199S|ICD10CM|Mech compl of int fix of unsp bone of limb, sequela|Mech compl of int fix of unsp bone of limb, sequela +C2890692|T037|PT|T84.199S|ICD10CM|Other mechanical complication of internal fixation device of unspecified bone of limb, sequela|Other mechanical complication of internal fixation device of unspecified bone of limb, sequela +C0496149|T033|AB|T84.2|ICD10CM|Mechanical complication of internal fixation device of bones|Mechanical complication of internal fixation device of bones +C0496149|T033|HT|T84.2|ICD10CM|Mechanical complication of internal fixation device of other bones|Mechanical complication of internal fixation device of other bones +C0496149|T033|PT|T84.2|ICD10|Mechanical complication of internal fixation device of other bones|Mechanical complication of internal fixation device of other bones +C2890693|T037|AB|T84.21|ICD10CM|Breakdown (mechanical) of internal fixation device of bones|Breakdown (mechanical) of internal fixation device of bones +C2890693|T037|HT|T84.21|ICD10CM|Breakdown (mechanical) of internal fixation device of other bones|Breakdown (mechanical) of internal fixation device of other bones +C2890694|T037|HT|T84.210|ICD10CM|Breakdown (mechanical) of internal fixation device of bones of hand and fingers|Breakdown (mechanical) of internal fixation device of bones of hand and fingers +C2890694|T037|AB|T84.210|ICD10CM|Breakdown of int fix of bones of hand and fingers|Breakdown of int fix of bones of hand and fingers +C2890695|T037|PT|T84.210A|ICD10CM|Breakdown (mechanical) of internal fixation device of bones of hand and fingers, initial encounter|Breakdown (mechanical) of internal fixation device of bones of hand and fingers, initial encounter +C2890695|T037|AB|T84.210A|ICD10CM|Breakdown of int fix of bones of hand and fingers, init|Breakdown of int fix of bones of hand and fingers, init +C2890696|T037|AB|T84.210D|ICD10CM|Breakdown of int fix of bones of hand and fingers, subs|Breakdown of int fix of bones of hand and fingers, subs +C2890697|T037|PT|T84.210S|ICD10CM|Breakdown (mechanical) of internal fixation device of bones of hand and fingers, sequela|Breakdown (mechanical) of internal fixation device of bones of hand and fingers, sequela +C2890697|T037|AB|T84.210S|ICD10CM|Breakdown of int fix of bones of hand and fingers, sequela|Breakdown of int fix of bones of hand and fingers, sequela +C2890698|T037|AB|T84.213|ICD10CM|Breakdown (mechanical) of int fix of bones of foot and toes|Breakdown (mechanical) of int fix of bones of foot and toes +C2890698|T037|HT|T84.213|ICD10CM|Breakdown (mechanical) of internal fixation device of bones of foot and toes|Breakdown (mechanical) of internal fixation device of bones of foot and toes +C2890699|T037|PT|T84.213A|ICD10CM|Breakdown (mechanical) of internal fixation device of bones of foot and toes, initial encounter|Breakdown (mechanical) of internal fixation device of bones of foot and toes, initial encounter +C2890699|T037|AB|T84.213A|ICD10CM|Breakdown of int fix of bones of foot and toes, init|Breakdown of int fix of bones of foot and toes, init +C2890700|T037|PT|T84.213D|ICD10CM|Breakdown (mechanical) of internal fixation device of bones of foot and toes, subsequent encounter|Breakdown (mechanical) of internal fixation device of bones of foot and toes, subsequent encounter +C2890700|T037|AB|T84.213D|ICD10CM|Breakdown of int fix of bones of foot and toes, subs|Breakdown of int fix of bones of foot and toes, subs +C2890701|T037|PT|T84.213S|ICD10CM|Breakdown (mechanical) of internal fixation device of bones of foot and toes, sequela|Breakdown (mechanical) of internal fixation device of bones of foot and toes, sequela +C2890701|T037|AB|T84.213S|ICD10CM|Breakdown of int fix of bones of foot and toes, sequela|Breakdown of int fix of bones of foot and toes, sequela +C2890702|T033|AB|T84.216|ICD10CM|Breakdown (mechanical) of int fix of vertebrae|Breakdown (mechanical) of int fix of vertebrae +C2890702|T033|HT|T84.216|ICD10CM|Breakdown (mechanical) of internal fixation device of vertebrae|Breakdown (mechanical) of internal fixation device of vertebrae +C2890703|T037|AB|T84.216A|ICD10CM|Breakdown (mechanical) of int fix of vertebrae, init|Breakdown (mechanical) of int fix of vertebrae, init +C2890703|T037|PT|T84.216A|ICD10CM|Breakdown (mechanical) of internal fixation device of vertebrae, initial encounter|Breakdown (mechanical) of internal fixation device of vertebrae, initial encounter +C2890704|T037|AB|T84.216D|ICD10CM|Breakdown (mechanical) of int fix of vertebrae, subs|Breakdown (mechanical) of int fix of vertebrae, subs +C2890704|T037|PT|T84.216D|ICD10CM|Breakdown (mechanical) of internal fixation device of vertebrae, subsequent encounter|Breakdown (mechanical) of internal fixation device of vertebrae, subsequent encounter +C2890705|T037|AB|T84.216S|ICD10CM|Breakdown (mechanical) of int fix of vertebrae, sequela|Breakdown (mechanical) of int fix of vertebrae, sequela +C2890705|T037|PT|T84.216S|ICD10CM|Breakdown (mechanical) of internal fixation device of vertebrae, sequela|Breakdown (mechanical) of internal fixation device of vertebrae, sequela +C2890693|T037|AB|T84.218|ICD10CM|Breakdown (mechanical) of internal fixation device of bones|Breakdown (mechanical) of internal fixation device of bones +C2890693|T037|HT|T84.218|ICD10CM|Breakdown (mechanical) of internal fixation device of other bones|Breakdown (mechanical) of internal fixation device of other bones +C2890706|T037|AB|T84.218A|ICD10CM|Breakdown (mechanical) of int fix of bones, init|Breakdown (mechanical) of int fix of bones, init +C2890706|T037|PT|T84.218A|ICD10CM|Breakdown (mechanical) of internal fixation device of other bones, initial encounter|Breakdown (mechanical) of internal fixation device of other bones, initial encounter +C2890707|T037|AB|T84.218D|ICD10CM|Breakdown (mechanical) of int fix of bones, subs|Breakdown (mechanical) of int fix of bones, subs +C2890707|T037|PT|T84.218D|ICD10CM|Breakdown (mechanical) of internal fixation device of other bones, subsequent encounter|Breakdown (mechanical) of internal fixation device of other bones, subsequent encounter +C2890708|T037|AB|T84.218S|ICD10CM|Breakdown (mechanical) of int fix of bones, sequela|Breakdown (mechanical) of int fix of bones, sequela +C2890708|T037|PT|T84.218S|ICD10CM|Breakdown (mechanical) of internal fixation device of other bones, sequela|Breakdown (mechanical) of internal fixation device of other bones, sequela +C2890710|T037|AB|T84.22|ICD10CM|Displacement of internal fixation device of other bones|Displacement of internal fixation device of other bones +C2890710|T037|HT|T84.22|ICD10CM|Displacement of internal fixation device of other bones|Displacement of internal fixation device of other bones +C2890709|T037|ET|T84.22|ICD10CM|Malposition of internal fixation device of other bones|Malposition of internal fixation device of other bones +C2890711|T037|AB|T84.220|ICD10CM|Displacement of int fix of bones of hand and fingers|Displacement of int fix of bones of hand and fingers +C2890711|T037|HT|T84.220|ICD10CM|Displacement of internal fixation device of bones of hand and fingers|Displacement of internal fixation device of bones of hand and fingers +C2890712|T037|AB|T84.220A|ICD10CM|Displacement of int fix of bones of hand and fingers, init|Displacement of int fix of bones of hand and fingers, init +C2890712|T037|PT|T84.220A|ICD10CM|Displacement of internal fixation device of bones of hand and fingers, initial encounter|Displacement of internal fixation device of bones of hand and fingers, initial encounter +C2890713|T037|AB|T84.220D|ICD10CM|Displacement of int fix of bones of hand and fingers, subs|Displacement of int fix of bones of hand and fingers, subs +C2890713|T037|PT|T84.220D|ICD10CM|Displacement of internal fixation device of bones of hand and fingers, subsequent encounter|Displacement of internal fixation device of bones of hand and fingers, subsequent encounter +C2890714|T037|PT|T84.220S|ICD10CM|Displacement of internal fixation device of bones of hand and fingers, sequela|Displacement of internal fixation device of bones of hand and fingers, sequela +C2890714|T037|AB|T84.220S|ICD10CM|Displacmnt of int fix of bones of hand and fingers, sequela|Displacmnt of int fix of bones of hand and fingers, sequela +C2890715|T037|AB|T84.223|ICD10CM|Displacement of int fix of bones of foot and toes|Displacement of int fix of bones of foot and toes +C2890715|T037|HT|T84.223|ICD10CM|Displacement of internal fixation device of bones of foot and toes|Displacement of internal fixation device of bones of foot and toes +C2890716|T037|AB|T84.223A|ICD10CM|Displacement of int fix of bones of foot and toes, init|Displacement of int fix of bones of foot and toes, init +C2890716|T037|PT|T84.223A|ICD10CM|Displacement of internal fixation device of bones of foot and toes, initial encounter|Displacement of internal fixation device of bones of foot and toes, initial encounter +C2890717|T037|AB|T84.223D|ICD10CM|Displacement of int fix of bones of foot and toes, subs|Displacement of int fix of bones of foot and toes, subs +C2890717|T037|PT|T84.223D|ICD10CM|Displacement of internal fixation device of bones of foot and toes, subsequent encounter|Displacement of internal fixation device of bones of foot and toes, subsequent encounter +C2890718|T037|AB|T84.223S|ICD10CM|Displacement of int fix of bones of foot and toes, sequela|Displacement of int fix of bones of foot and toes, sequela +C2890718|T037|PT|T84.223S|ICD10CM|Displacement of internal fixation device of bones of foot and toes, sequela|Displacement of internal fixation device of bones of foot and toes, sequela +C2890719|T037|AB|T84.226|ICD10CM|Displacement of internal fixation device of vertebrae|Displacement of internal fixation device of vertebrae +C2890719|T037|HT|T84.226|ICD10CM|Displacement of internal fixation device of vertebrae|Displacement of internal fixation device of vertebrae +C2890720|T037|AB|T84.226A|ICD10CM|Displacement of internal fixation device of vertebrae, init|Displacement of internal fixation device of vertebrae, init +C2890720|T037|PT|T84.226A|ICD10CM|Displacement of internal fixation device of vertebrae, initial encounter|Displacement of internal fixation device of vertebrae, initial encounter +C2890721|T037|AB|T84.226D|ICD10CM|Displacement of internal fixation device of vertebrae, subs|Displacement of internal fixation device of vertebrae, subs +C2890721|T037|PT|T84.226D|ICD10CM|Displacement of internal fixation device of vertebrae, subsequent encounter|Displacement of internal fixation device of vertebrae, subsequent encounter +C2890722|T037|AB|T84.226S|ICD10CM|Displacement of int fix of vertebrae, sequela|Displacement of int fix of vertebrae, sequela +C2890722|T037|PT|T84.226S|ICD10CM|Displacement of internal fixation device of vertebrae, sequela|Displacement of internal fixation device of vertebrae, sequela +C2890710|T037|HT|T84.228|ICD10CM|Displacement of internal fixation device of other bones|Displacement of internal fixation device of other bones +C2890710|T037|AB|T84.228|ICD10CM|Displacement of internal fixation device of other bones|Displacement of internal fixation device of other bones +C2890723|T037|AB|T84.228A|ICD10CM|Displacement of internal fixation device of oth bones, init|Displacement of internal fixation device of oth bones, init +C2890723|T037|PT|T84.228A|ICD10CM|Displacement of internal fixation device of other bones, initial encounter|Displacement of internal fixation device of other bones, initial encounter +C2890724|T037|AB|T84.228D|ICD10CM|Displacement of internal fixation device of oth bones, subs|Displacement of internal fixation device of oth bones, subs +C2890724|T037|PT|T84.228D|ICD10CM|Displacement of internal fixation device of other bones, subsequent encounter|Displacement of internal fixation device of other bones, subsequent encounter +C2890725|T037|AB|T84.228S|ICD10CM|Displacement of internal fixation device of bones, sequela|Displacement of internal fixation device of bones, sequela +C2890725|T037|PT|T84.228S|ICD10CM|Displacement of internal fixation device of other bones, sequela|Displacement of internal fixation device of other bones, sequela +C2890729|T037|AB|T84.29|ICD10CM|Mech compl of internal fixation device of other bones|Mech compl of internal fixation device of other bones +C2890726|T037|ET|T84.29|ICD10CM|Obstruction (mechanical) of internal fixation device of other bones|Obstruction (mechanical) of internal fixation device of other bones +C2890729|T037|HT|T84.29|ICD10CM|Other mechanical complication of internal fixation device of other bones|Other mechanical complication of internal fixation device of other bones +C2890727|T037|ET|T84.29|ICD10CM|Perforation of internal fixation device of other bones|Perforation of internal fixation device of other bones +C2890728|T037|ET|T84.29|ICD10CM|Protrusion of internal fixation device of other bones|Protrusion of internal fixation device of other bones +C2890730|T037|AB|T84.290|ICD10CM|Mech compl of int fix of bones of hand and fingers|Mech compl of int fix of bones of hand and fingers +C2890730|T037|HT|T84.290|ICD10CM|Other mechanical complication of internal fixation device of bones of hand and fingers|Other mechanical complication of internal fixation device of bones of hand and fingers +C2890731|T037|AB|T84.290A|ICD10CM|Mech compl of int fix of bones of hand and fingers, init|Mech compl of int fix of bones of hand and fingers, init +C2890732|T037|AB|T84.290D|ICD10CM|Mech compl of int fix of bones of hand and fingers, subs|Mech compl of int fix of bones of hand and fingers, subs +C2890733|T037|AB|T84.290S|ICD10CM|Mech compl of int fix of bones of hand and fingers, sequela|Mech compl of int fix of bones of hand and fingers, sequela +C2890733|T037|PT|T84.290S|ICD10CM|Other mechanical complication of internal fixation device of bones of hand and fingers, sequela|Other mechanical complication of internal fixation device of bones of hand and fingers, sequela +C2890734|T037|AB|T84.293|ICD10CM|Mech compl of int fix of bones of foot and toes|Mech compl of int fix of bones of foot and toes +C2890734|T037|HT|T84.293|ICD10CM|Other mechanical complication of internal fixation device of bones of foot and toes|Other mechanical complication of internal fixation device of bones of foot and toes +C2890735|T037|AB|T84.293A|ICD10CM|Mech compl of int fix of bones of foot and toes, init|Mech compl of int fix of bones of foot and toes, init +C2890736|T037|AB|T84.293D|ICD10CM|Mech compl of int fix of bones of foot and toes, subs|Mech compl of int fix of bones of foot and toes, subs +C2890737|T037|AB|T84.293S|ICD10CM|Mech compl of int fix of bones of foot and toes, sequela|Mech compl of int fix of bones of foot and toes, sequela +C2890737|T037|PT|T84.293S|ICD10CM|Other mechanical complication of internal fixation device of bones of foot and toes, sequela|Other mechanical complication of internal fixation device of bones of foot and toes, sequela +C2890738|T037|AB|T84.296|ICD10CM|Mech compl of internal fixation device of vertebrae|Mech compl of internal fixation device of vertebrae +C2890738|T037|HT|T84.296|ICD10CM|Other mechanical complication of internal fixation device of vertebrae|Other mechanical complication of internal fixation device of vertebrae +C2890739|T037|AB|T84.296A|ICD10CM|Mech compl of internal fixation device of vertebrae, init|Mech compl of internal fixation device of vertebrae, init +C2890739|T037|PT|T84.296A|ICD10CM|Other mechanical complication of internal fixation device of vertebrae, initial encounter|Other mechanical complication of internal fixation device of vertebrae, initial encounter +C2890740|T037|AB|T84.296D|ICD10CM|Mech compl of internal fixation device of vertebrae, subs|Mech compl of internal fixation device of vertebrae, subs +C2890740|T037|PT|T84.296D|ICD10CM|Other mechanical complication of internal fixation device of vertebrae, subsequent encounter|Other mechanical complication of internal fixation device of vertebrae, subsequent encounter +C2890741|T037|AB|T84.296S|ICD10CM|Mech compl of internal fixation device of vertebrae, sequela|Mech compl of internal fixation device of vertebrae, sequela +C2890741|T037|PT|T84.296S|ICD10CM|Other mechanical complication of internal fixation device of vertebrae, sequela|Other mechanical complication of internal fixation device of vertebrae, sequela +C2890729|T037|AB|T84.298|ICD10CM|Mech compl of internal fixation device of other bones|Mech compl of internal fixation device of other bones +C2890729|T037|HT|T84.298|ICD10CM|Other mechanical complication of internal fixation device of other bones|Other mechanical complication of internal fixation device of other bones +C2890742|T037|AB|T84.298A|ICD10CM|Mech compl of internal fixation device of oth bones, init|Mech compl of internal fixation device of oth bones, init +C2890742|T037|PT|T84.298A|ICD10CM|Other mechanical complication of internal fixation device of other bones, initial encounter|Other mechanical complication of internal fixation device of other bones, initial encounter +C2890743|T037|AB|T84.298D|ICD10CM|Mech compl of internal fixation device of oth bones, subs|Mech compl of internal fixation device of oth bones, subs +C2890743|T037|PT|T84.298D|ICD10CM|Other mechanical complication of internal fixation device of other bones, subsequent encounter|Other mechanical complication of internal fixation device of other bones, subsequent encounter +C2890744|T037|AB|T84.298S|ICD10CM|Mech compl of internal fixation device of oth bones, sequela|Mech compl of internal fixation device of oth bones, sequela +C2890744|T037|PT|T84.298S|ICD10CM|Other mechanical complication of internal fixation device of other bones, sequela|Other mechanical complication of internal fixation device of other bones, sequela +C0478493|T046|AB|T84.3|ICD10CM|Mechanical complication of bone devices, implants and grafts|Mechanical complication of bone devices, implants and grafts +C0478493|T046|HT|T84.3|ICD10CM|Mechanical complication of other bone devices, implants and grafts|Mechanical complication of other bone devices, implants and grafts +C0478493|T046|PT|T84.3|ICD10|Mechanical complication of other bone devices, implants and grafts|Mechanical complication of other bone devices, implants and grafts +C2890745|T037|AB|T84.31|ICD10CM|Breakdown (mechanical) of bone devices, implants and grafts|Breakdown (mechanical) of bone devices, implants and grafts +C2890745|T037|HT|T84.31|ICD10CM|Breakdown (mechanical) of other bone devices, implants and grafts|Breakdown (mechanical) of other bone devices, implants and grafts +C2890746|T037|AB|T84.310|ICD10CM|Breakdown (mechanical) of electronic bone stimulator|Breakdown (mechanical) of electronic bone stimulator +C2890746|T037|HT|T84.310|ICD10CM|Breakdown (mechanical) of electronic bone stimulator|Breakdown (mechanical) of electronic bone stimulator +C2890747|T037|AB|T84.310A|ICD10CM|Breakdown (mechanical) of electronic bone stimulator, init|Breakdown (mechanical) of electronic bone stimulator, init +C2890747|T037|PT|T84.310A|ICD10CM|Breakdown (mechanical) of electronic bone stimulator, initial encounter|Breakdown (mechanical) of electronic bone stimulator, initial encounter +C2890748|T037|AB|T84.310D|ICD10CM|Breakdown (mechanical) of electronic bone stimulator, subs|Breakdown (mechanical) of electronic bone stimulator, subs +C2890748|T037|PT|T84.310D|ICD10CM|Breakdown (mechanical) of electronic bone stimulator, subsequent encounter|Breakdown (mechanical) of electronic bone stimulator, subsequent encounter +C2890749|T037|PT|T84.310S|ICD10CM|Breakdown (mechanical) of electronic bone stimulator, sequela|Breakdown (mechanical) of electronic bone stimulator, sequela +C2890749|T037|AB|T84.310S|ICD10CM|Breakdown of electronic bone stimulator, sequela|Breakdown of electronic bone stimulator, sequela +C2890745|T037|AB|T84.318|ICD10CM|Breakdown (mechanical) of bone devices, implants and grafts|Breakdown (mechanical) of bone devices, implants and grafts +C2890745|T037|HT|T84.318|ICD10CM|Breakdown (mechanical) of other bone devices, implants and grafts|Breakdown (mechanical) of other bone devices, implants and grafts +C2890750|T037|PT|T84.318A|ICD10CM|Breakdown (mechanical) of other bone devices, implants and grafts, initial encounter|Breakdown (mechanical) of other bone devices, implants and grafts, initial encounter +C2890750|T037|AB|T84.318A|ICD10CM|Breakdown of bone devices, implants and grafts, init|Breakdown of bone devices, implants and grafts, init +C2890751|T037|PT|T84.318D|ICD10CM|Breakdown (mechanical) of other bone devices, implants and grafts, subsequent encounter|Breakdown (mechanical) of other bone devices, implants and grafts, subsequent encounter +C2890751|T037|AB|T84.318D|ICD10CM|Breakdown of bone devices, implants and grafts, subs|Breakdown of bone devices, implants and grafts, subs +C2890752|T037|PT|T84.318S|ICD10CM|Breakdown (mechanical) of other bone devices, implants and grafts, sequela|Breakdown (mechanical) of other bone devices, implants and grafts, sequela +C2890752|T037|AB|T84.318S|ICD10CM|Breakdown of bone devices, implants and grafts, sequela|Breakdown of bone devices, implants and grafts, sequela +C2890754|T037|AB|T84.32|ICD10CM|Displacement of other bone devices, implants and grafts|Displacement of other bone devices, implants and grafts +C2890754|T037|HT|T84.32|ICD10CM|Displacement of other bone devices, implants and grafts|Displacement of other bone devices, implants and grafts +C2890753|T037|ET|T84.32|ICD10CM|Malposition of other bone devices, implants and grafts|Malposition of other bone devices, implants and grafts +C2890755|T037|AB|T84.320|ICD10CM|Displacement of electronic bone stimulator|Displacement of electronic bone stimulator +C2890755|T037|HT|T84.320|ICD10CM|Displacement of electronic bone stimulator|Displacement of electronic bone stimulator +C2890756|T037|AB|T84.320A|ICD10CM|Displacement of electronic bone stimulator, init encntr|Displacement of electronic bone stimulator, init encntr +C2890756|T037|PT|T84.320A|ICD10CM|Displacement of electronic bone stimulator, initial encounter|Displacement of electronic bone stimulator, initial encounter +C2890757|T037|AB|T84.320D|ICD10CM|Displacement of electronic bone stimulator, subs encntr|Displacement of electronic bone stimulator, subs encntr +C2890757|T037|PT|T84.320D|ICD10CM|Displacement of electronic bone stimulator, subsequent encounter|Displacement of electronic bone stimulator, subsequent encounter +C2890758|T037|AB|T84.320S|ICD10CM|Displacement of electronic bone stimulator, sequela|Displacement of electronic bone stimulator, sequela +C2890758|T037|PT|T84.320S|ICD10CM|Displacement of electronic bone stimulator, sequela|Displacement of electronic bone stimulator, sequela +C2890754|T037|HT|T84.328|ICD10CM|Displacement of other bone devices, implants and grafts|Displacement of other bone devices, implants and grafts +C2890754|T037|AB|T84.328|ICD10CM|Displacement of other bone devices, implants and grafts|Displacement of other bone devices, implants and grafts +C2890759|T037|AB|T84.328A|ICD10CM|Displacement of oth bone devices, implants and grafts, init|Displacement of oth bone devices, implants and grafts, init +C2890759|T037|PT|T84.328A|ICD10CM|Displacement of other bone devices, implants and grafts, initial encounter|Displacement of other bone devices, implants and grafts, initial encounter +C2890760|T037|AB|T84.328D|ICD10CM|Displacement of oth bone devices, implants and grafts, subs|Displacement of oth bone devices, implants and grafts, subs +C2890760|T037|PT|T84.328D|ICD10CM|Displacement of other bone devices, implants and grafts, subsequent encounter|Displacement of other bone devices, implants and grafts, subsequent encounter +C2890761|T037|AB|T84.328S|ICD10CM|Displacement of bone devices, implants and grafts, sequela|Displacement of bone devices, implants and grafts, sequela +C2890761|T037|PT|T84.328S|ICD10CM|Displacement of other bone devices, implants and grafts, sequela|Displacement of other bone devices, implants and grafts, sequela +C2890765|T037|AB|T84.39|ICD10CM|Mech compl of other bone devices, implants and grafts|Mech compl of other bone devices, implants and grafts +C2890762|T037|ET|T84.39|ICD10CM|Obstruction (mechanical) of other bone devices, implants and grafts|Obstruction (mechanical) of other bone devices, implants and grafts +C2890765|T037|HT|T84.39|ICD10CM|Other mechanical complication of other bone devices, implants and grafts|Other mechanical complication of other bone devices, implants and grafts +C2890763|T037|ET|T84.39|ICD10CM|Perforation of other bone devices, implants and grafts|Perforation of other bone devices, implants and grafts +C2890764|T037|ET|T84.39|ICD10CM|Protrusion of other bone devices, implants and grafts|Protrusion of other bone devices, implants and grafts +C2890766|T037|AB|T84.390|ICD10CM|Other mechanical complication of electronic bone stimulator|Other mechanical complication of electronic bone stimulator +C2890766|T037|HT|T84.390|ICD10CM|Other mechanical complication of electronic bone stimulator|Other mechanical complication of electronic bone stimulator +C2890767|T037|AB|T84.390A|ICD10CM|Mech compl of electronic bone stimulator, initial encounter|Mech compl of electronic bone stimulator, initial encounter +C2890767|T037|PT|T84.390A|ICD10CM|Other mechanical complication of electronic bone stimulator, initial encounter|Other mechanical complication of electronic bone stimulator, initial encounter +C2890768|T037|AB|T84.390D|ICD10CM|Mech compl of electronic bone stimulator, subs encntr|Mech compl of electronic bone stimulator, subs encntr +C2890768|T037|PT|T84.390D|ICD10CM|Other mechanical complication of electronic bone stimulator, subsequent encounter|Other mechanical complication of electronic bone stimulator, subsequent encounter +C2890769|T037|AB|T84.390S|ICD10CM|Mech compl of electronic bone stimulator, sequela|Mech compl of electronic bone stimulator, sequela +C2890769|T037|PT|T84.390S|ICD10CM|Other mechanical complication of electronic bone stimulator, sequela|Other mechanical complication of electronic bone stimulator, sequela +C2890765|T037|AB|T84.398|ICD10CM|Mech compl of other bone devices, implants and grafts|Mech compl of other bone devices, implants and grafts +C2890765|T037|HT|T84.398|ICD10CM|Other mechanical complication of other bone devices, implants and grafts|Other mechanical complication of other bone devices, implants and grafts +C2890770|T037|AB|T84.398A|ICD10CM|Mech compl of oth bone devices, implants and grafts, init|Mech compl of oth bone devices, implants and grafts, init +C2890770|T037|PT|T84.398A|ICD10CM|Other mechanical complication of other bone devices, implants and grafts, initial encounter|Other mechanical complication of other bone devices, implants and grafts, initial encounter +C2890771|T037|AB|T84.398D|ICD10CM|Mech compl of oth bone devices, implants and grafts, subs|Mech compl of oth bone devices, implants and grafts, subs +C2890771|T037|PT|T84.398D|ICD10CM|Other mechanical complication of other bone devices, implants and grafts, subsequent encounter|Other mechanical complication of other bone devices, implants and grafts, subsequent encounter +C2890772|T037|AB|T84.398S|ICD10CM|Mech compl of oth bone devices, implants and grafts, sequela|Mech compl of oth bone devices, implants and grafts, sequela +C2890772|T037|PT|T84.398S|ICD10CM|Other mechanical complication of other bone devices, implants and grafts, sequela|Other mechanical complication of other bone devices, implants and grafts, sequela +C0478494|T046|AB|T84.4|ICD10CM|Mech comp of internal orth devices, implants and grafts|Mech comp of internal orth devices, implants and grafts +C0478494|T046|PT|T84.4|ICD10|Mechanical complication of other internal orthopaedic devices, implants and grafts|Mechanical complication of other internal orthopaedic devices, implants and grafts +C0478494|T046|HT|T84.4|ICD10CM|Mechanical complication of other internal orthopedic devices, implants and grafts|Mechanical complication of other internal orthopedic devices, implants and grafts +C0478494|T046|PT|T84.4|ICD10AE|Mechanical complication of other internal orthopedic devices, implants and grafts|Mechanical complication of other internal orthopedic devices, implants and grafts +C2890773|T037|HT|T84.41|ICD10CM|Breakdown (mechanical) of other internal orthopedic devices, implants and grafts|Breakdown (mechanical) of other internal orthopedic devices, implants and grafts +C2890773|T037|AB|T84.41|ICD10CM|Brkdwn internal orthopedic devices, implants and grafts|Brkdwn internal orthopedic devices, implants and grafts +C2890774|T037|AB|T84.410|ICD10CM|Breakdown (mechanical) of muscle and tendon graft|Breakdown (mechanical) of muscle and tendon graft +C2890774|T037|HT|T84.410|ICD10CM|Breakdown (mechanical) of muscle and tendon graft|Breakdown (mechanical) of muscle and tendon graft +C2890775|T037|AB|T84.410A|ICD10CM|Breakdown (mechanical) of muscle and tendon graft, init|Breakdown (mechanical) of muscle and tendon graft, init +C2890775|T037|PT|T84.410A|ICD10CM|Breakdown (mechanical) of muscle and tendon graft, initial encounter|Breakdown (mechanical) of muscle and tendon graft, initial encounter +C2890776|T037|AB|T84.410D|ICD10CM|Breakdown (mechanical) of muscle and tendon graft, subs|Breakdown (mechanical) of muscle and tendon graft, subs +C2890776|T037|PT|T84.410D|ICD10CM|Breakdown (mechanical) of muscle and tendon graft, subsequent encounter|Breakdown (mechanical) of muscle and tendon graft, subsequent encounter +C2890777|T037|AB|T84.410S|ICD10CM|Breakdown (mechanical) of muscle and tendon graft, sequela|Breakdown (mechanical) of muscle and tendon graft, sequela +C2890777|T037|PT|T84.410S|ICD10CM|Breakdown (mechanical) of muscle and tendon graft, sequela|Breakdown (mechanical) of muscle and tendon graft, sequela +C2890773|T037|HT|T84.418|ICD10CM|Breakdown (mechanical) of other internal orthopedic devices, implants and grafts|Breakdown (mechanical) of other internal orthopedic devices, implants and grafts +C2890773|T037|AB|T84.418|ICD10CM|Brkdwn internal orthopedic devices, implants and grafts|Brkdwn internal orthopedic devices, implants and grafts +C2890778|T037|PT|T84.418A|ICD10CM|Breakdown (mechanical) of other internal orthopedic devices, implants and grafts, initial encounter|Breakdown (mechanical) of other internal orthopedic devices, implants and grafts, initial encounter +C2890778|T037|AB|T84.418A|ICD10CM|Brkdwn internal orth devices, implants and grafts, init|Brkdwn internal orth devices, implants and grafts, init +C2890779|T037|AB|T84.418D|ICD10CM|Brkdwn internal orth devices, implants and grafts, subs|Brkdwn internal orth devices, implants and grafts, subs +C2890780|T037|PT|T84.418S|ICD10CM|Breakdown (mechanical) of other internal orthopedic devices, implants and grafts, sequela|Breakdown (mechanical) of other internal orthopedic devices, implants and grafts, sequela +C2890780|T037|AB|T84.418S|ICD10CM|Brkdwn internal orth devices, implants and grafts, sequela|Brkdwn internal orth devices, implants and grafts, sequela +C3647701|T046|HT|T84.42|ICD10CM|Displacement of other internal orthopedic devices, implants and grafts|Displacement of other internal orthopedic devices, implants and grafts +C3647701|T046|AB|T84.42|ICD10CM|Displacmnt of internal orth devices, implants and grafts|Displacmnt of internal orth devices, implants and grafts +C2890781|T037|ET|T84.42|ICD10CM|Malposition of other internal orthopedic devices, implants and grafts|Malposition of other internal orthopedic devices, implants and grafts +C2890783|T037|AB|T84.420|ICD10CM|Displacement of muscle and tendon graft|Displacement of muscle and tendon graft +C2890783|T037|HT|T84.420|ICD10CM|Displacement of muscle and tendon graft|Displacement of muscle and tendon graft +C2890784|T037|AB|T84.420A|ICD10CM|Displacement of muscle and tendon graft, initial encounter|Displacement of muscle and tendon graft, initial encounter +C2890784|T037|PT|T84.420A|ICD10CM|Displacement of muscle and tendon graft, initial encounter|Displacement of muscle and tendon graft, initial encounter +C2890785|T037|AB|T84.420D|ICD10CM|Displacement of muscle and tendon graft, subs encntr|Displacement of muscle and tendon graft, subs encntr +C2890785|T037|PT|T84.420D|ICD10CM|Displacement of muscle and tendon graft, subsequent encounter|Displacement of muscle and tendon graft, subsequent encounter +C2890786|T037|AB|T84.420S|ICD10CM|Displacement of muscle and tendon graft, sequela|Displacement of muscle and tendon graft, sequela +C2890786|T037|PT|T84.420S|ICD10CM|Displacement of muscle and tendon graft, sequela|Displacement of muscle and tendon graft, sequela +C3647701|T046|HT|T84.428|ICD10CM|Displacement of other internal orthopedic devices, implants and grafts|Displacement of other internal orthopedic devices, implants and grafts +C3647701|T046|AB|T84.428|ICD10CM|Displacmnt of internal orth devices, implants and grafts|Displacmnt of internal orth devices, implants and grafts +C2890787|T037|PT|T84.428A|ICD10CM|Displacement of other internal orthopedic devices, implants and grafts, initial encounter|Displacement of other internal orthopedic devices, implants and grafts, initial encounter +C2890787|T037|AB|T84.428A|ICD10CM|Displacmnt of internal orth devices, implnt and grafts, init|Displacmnt of internal orth devices, implnt and grafts, init +C2890788|T037|PT|T84.428D|ICD10CM|Displacement of other internal orthopedic devices, implants and grafts, subsequent encounter|Displacement of other internal orthopedic devices, implants and grafts, subsequent encounter +C2890788|T037|AB|T84.428D|ICD10CM|Displacmnt of internal orth devices, implnt and grafts, subs|Displacmnt of internal orth devices, implnt and grafts, subs +C2890789|T037|PT|T84.428S|ICD10CM|Displacement of other internal orthopedic devices, implants and grafts, sequela|Displacement of other internal orthopedic devices, implants and grafts, sequela +C2890789|T037|AB|T84.428S|ICD10CM|Displacmnt of int orth devices, implnt and grafts, sequela|Displacmnt of int orth devices, implnt and grafts, sequela +C1561666|T046|AB|T84.49|ICD10CM|Mech compl of internal orth devices, implants and grafts|Mech compl of internal orth devices, implants and grafts +C0478494|T046|ET|T84.49|ICD10CM|Mechanical complication of other internal orthopedic devices, implants and grafts NOS|Mechanical complication of other internal orthopedic devices, implants and grafts NOS +C2890790|T037|ET|T84.49|ICD10CM|Obstruction (mechanical) of other internal orthopedic devices, implants and grafts|Obstruction (mechanical) of other internal orthopedic devices, implants and grafts +C1561666|T046|HT|T84.49|ICD10CM|Other mechanical complication of other internal orthopedic devices, implants and grafts|Other mechanical complication of other internal orthopedic devices, implants and grafts +C2890791|T037|ET|T84.49|ICD10CM|Perforation of other internal orthopedic devices, implants and grafts|Perforation of other internal orthopedic devices, implants and grafts +C2890792|T037|ET|T84.49|ICD10CM|Protrusion of other internal orthopedic devices, implants and grafts|Protrusion of other internal orthopedic devices, implants and grafts +C2890793|T037|AB|T84.490|ICD10CM|Other mechanical complication of muscle and tendon graft|Other mechanical complication of muscle and tendon graft +C2890793|T037|HT|T84.490|ICD10CM|Other mechanical complication of muscle and tendon graft|Other mechanical complication of muscle and tendon graft +C2890794|T037|AB|T84.490A|ICD10CM|Mech compl of muscle and tendon graft, initial encounter|Mech compl of muscle and tendon graft, initial encounter +C2890794|T037|PT|T84.490A|ICD10CM|Other mechanical complication of muscle and tendon graft, initial encounter|Other mechanical complication of muscle and tendon graft, initial encounter +C2890795|T037|AB|T84.490D|ICD10CM|Mech compl of muscle and tendon graft, subsequent encounter|Mech compl of muscle and tendon graft, subsequent encounter +C2890795|T037|PT|T84.490D|ICD10CM|Other mechanical complication of muscle and tendon graft, subsequent encounter|Other mechanical complication of muscle and tendon graft, subsequent encounter +C2890796|T037|AB|T84.490S|ICD10CM|Mech compl of muscle and tendon graft, sequela|Mech compl of muscle and tendon graft, sequela +C2890796|T037|PT|T84.490S|ICD10CM|Other mechanical complication of muscle and tendon graft, sequela|Other mechanical complication of muscle and tendon graft, sequela +C1561666|T046|AB|T84.498|ICD10CM|Mech compl of internal orth devices, implants and grafts|Mech compl of internal orth devices, implants and grafts +C1561666|T046|HT|T84.498|ICD10CM|Other mechanical complication of other internal orthopedic devices, implants and grafts|Other mechanical complication of other internal orthopedic devices, implants and grafts +C2890797|T037|AB|T84.498A|ICD10CM|Mech compl of internal orth devices, implnt and grafts, init|Mech compl of internal orth devices, implnt and grafts, init +C2890798|T037|AB|T84.498D|ICD10CM|Mech compl of internal orth devices, implnt and grafts, subs|Mech compl of internal orth devices, implnt and grafts, subs +C2890799|T037|AB|T84.498S|ICD10CM|Mech compl of int orth devices, implnt and grafts, sequela|Mech compl of int orth devices, implnt and grafts, sequela +C2890799|T037|PT|T84.498S|ICD10CM|Other mechanical complication of other internal orthopedic devices, implants and grafts, sequela|Other mechanical complication of other internal orthopedic devices, implants and grafts, sequela +C0161784|T047|AB|T84.5|ICD10CM|Infect/inflm reaction due to internal joint prosthesis|Infect/inflm reaction due to internal joint prosthesis +C0161784|T047|HT|T84.5|ICD10CM|Infection and inflammatory reaction due to internal joint prosthesis|Infection and inflammatory reaction due to internal joint prosthesis +C0161784|T047|PT|T84.5|ICD10|Infection and inflammatory reaction due to internal joint prosthesis|Infection and inflammatory reaction due to internal joint prosthesis +C2890800|T037|AB|T84.50|ICD10CM|Infect/inflm reaction due to unsp internal joint prosthesis|Infect/inflm reaction due to unsp internal joint prosthesis +C2890800|T037|HT|T84.50|ICD10CM|Infection and inflammatory reaction due to unspecified internal joint prosthesis|Infection and inflammatory reaction due to unspecified internal joint prosthesis +C2890801|T037|AB|T84.50XA|ICD10CM|Infect/inflm reaction due to unsp int joint prosth, init|Infect/inflm reaction due to unsp int joint prosth, init +C2890801|T037|PT|T84.50XA|ICD10CM|Infection and inflammatory reaction due to unspecified internal joint prosthesis, initial encounter|Infection and inflammatory reaction due to unspecified internal joint prosthesis, initial encounter +C2890802|T037|AB|T84.50XD|ICD10CM|Infect/inflm reaction due to unsp int joint prosth, subs|Infect/inflm reaction due to unsp int joint prosth, subs +C2890803|T037|AB|T84.50XS|ICD10CM|Infect/inflm reaction due to unsp int joint prosth, sequela|Infect/inflm reaction due to unsp int joint prosth, sequela +C2890803|T037|PT|T84.50XS|ICD10CM|Infection and inflammatory reaction due to unspecified internal joint prosthesis, sequela|Infection and inflammatory reaction due to unspecified internal joint prosthesis, sequela +C2890804|T037|AB|T84.51|ICD10CM|Infect/inflm reaction due to internal right hip prosthesis|Infect/inflm reaction due to internal right hip prosthesis +C2890804|T037|HT|T84.51|ICD10CM|Infection and inflammatory reaction due to internal right hip prosthesis|Infection and inflammatory reaction due to internal right hip prosthesis +C2890805|T037|AB|T84.51XA|ICD10CM|Infect/inflm reaction due to internal right hip prosth, init|Infect/inflm reaction due to internal right hip prosth, init +C2890805|T037|PT|T84.51XA|ICD10CM|Infection and inflammatory reaction due to internal right hip prosthesis, initial encounter|Infection and inflammatory reaction due to internal right hip prosthesis, initial encounter +C2890806|T037|AB|T84.51XD|ICD10CM|Infect/inflm reaction due to internal right hip prosth, subs|Infect/inflm reaction due to internal right hip prosth, subs +C2890806|T037|PT|T84.51XD|ICD10CM|Infection and inflammatory reaction due to internal right hip prosthesis, subsequent encounter|Infection and inflammatory reaction due to internal right hip prosthesis, subsequent encounter +C2890807|T037|AB|T84.51XS|ICD10CM|Infect/inflm reaction due to internal r hip prosth, sequela|Infect/inflm reaction due to internal r hip prosth, sequela +C2890807|T037|PT|T84.51XS|ICD10CM|Infection and inflammatory reaction due to internal right hip prosthesis, sequela|Infection and inflammatory reaction due to internal right hip prosthesis, sequela +C2890808|T037|AB|T84.52|ICD10CM|Infect/inflm reaction due to internal left hip prosthesis|Infect/inflm reaction due to internal left hip prosthesis +C2890808|T037|HT|T84.52|ICD10CM|Infection and inflammatory reaction due to internal left hip prosthesis|Infection and inflammatory reaction due to internal left hip prosthesis +C2890809|T037|AB|T84.52XA|ICD10CM|Infect/inflm reaction due to internal left hip prosth, init|Infect/inflm reaction due to internal left hip prosth, init +C2890809|T037|PT|T84.52XA|ICD10CM|Infection and inflammatory reaction due to internal left hip prosthesis, initial encounter|Infection and inflammatory reaction due to internal left hip prosthesis, initial encounter +C2890810|T037|AB|T84.52XD|ICD10CM|Infect/inflm reaction due to internal left hip prosth, subs|Infect/inflm reaction due to internal left hip prosth, subs +C2890810|T037|PT|T84.52XD|ICD10CM|Infection and inflammatory reaction due to internal left hip prosthesis, subsequent encounter|Infection and inflammatory reaction due to internal left hip prosthesis, subsequent encounter +C2890811|T037|AB|T84.52XS|ICD10CM|Infect/inflm reaction due to int left hip prosth, sequela|Infect/inflm reaction due to int left hip prosth, sequela +C2890811|T037|PT|T84.52XS|ICD10CM|Infection and inflammatory reaction due to internal left hip prosthesis, sequela|Infection and inflammatory reaction due to internal left hip prosthesis, sequela +C2890812|T037|AB|T84.53|ICD10CM|Infect/inflm reaction due to internal right knee prosthesis|Infect/inflm reaction due to internal right knee prosthesis +C2890812|T037|HT|T84.53|ICD10CM|Infection and inflammatory reaction due to internal right knee prosthesis|Infection and inflammatory reaction due to internal right knee prosthesis +C2890813|T037|AB|T84.53XA|ICD10CM|Infect/inflm reaction due to internal r knee prosth, init|Infect/inflm reaction due to internal r knee prosth, init +C2890813|T037|PT|T84.53XA|ICD10CM|Infection and inflammatory reaction due to internal right knee prosthesis, initial encounter|Infection and inflammatory reaction due to internal right knee prosthesis, initial encounter +C2890814|T037|AB|T84.53XD|ICD10CM|Infect/inflm reaction due to internal r knee prosth, subs|Infect/inflm reaction due to internal r knee prosth, subs +C2890814|T037|PT|T84.53XD|ICD10CM|Infection and inflammatory reaction due to internal right knee prosthesis, subsequent encounter|Infection and inflammatory reaction due to internal right knee prosthesis, subsequent encounter +C2890815|T037|AB|T84.53XS|ICD10CM|Infect/inflm reaction due to internal r knee prosth, sequela|Infect/inflm reaction due to internal r knee prosth, sequela +C2890815|T037|PT|T84.53XS|ICD10CM|Infection and inflammatory reaction due to internal right knee prosthesis, sequela|Infection and inflammatory reaction due to internal right knee prosthesis, sequela +C2890816|T037|AB|T84.54|ICD10CM|Infect/inflm reaction due to internal left knee prosthesis|Infect/inflm reaction due to internal left knee prosthesis +C2890816|T037|HT|T84.54|ICD10CM|Infection and inflammatory reaction due to internal left knee prosthesis|Infection and inflammatory reaction due to internal left knee prosthesis +C2890817|T037|AB|T84.54XA|ICD10CM|Infect/inflm reaction due to internal left knee prosth, init|Infect/inflm reaction due to internal left knee prosth, init +C2890817|T037|PT|T84.54XA|ICD10CM|Infection and inflammatory reaction due to internal left knee prosthesis, initial encounter|Infection and inflammatory reaction due to internal left knee prosthesis, initial encounter +C2890818|T037|AB|T84.54XD|ICD10CM|Infect/inflm reaction due to internal left knee prosth, subs|Infect/inflm reaction due to internal left knee prosth, subs +C2890818|T037|PT|T84.54XD|ICD10CM|Infection and inflammatory reaction due to internal left knee prosthesis, subsequent encounter|Infection and inflammatory reaction due to internal left knee prosthesis, subsequent encounter +C2890819|T037|AB|T84.54XS|ICD10CM|Infect/inflm reaction due to internal l knee prosth, sequela|Infect/inflm reaction due to internal l knee prosth, sequela +C2890819|T037|PT|T84.54XS|ICD10CM|Infection and inflammatory reaction due to internal left knee prosthesis, sequela|Infection and inflammatory reaction due to internal left knee prosthesis, sequela +C2890820|T037|AB|T84.59|ICD10CM|Infect/inflm reaction due to oth internal joint prosthesis|Infect/inflm reaction due to oth internal joint prosthesis +C2890820|T037|HT|T84.59|ICD10CM|Infection and inflammatory reaction due to other internal joint prosthesis|Infection and inflammatory reaction due to other internal joint prosthesis +C2890821|T037|AB|T84.59XA|ICD10CM|Infect/inflm reaction due to oth internal joint prosth, init|Infect/inflm reaction due to oth internal joint prosth, init +C2890821|T037|PT|T84.59XA|ICD10CM|Infection and inflammatory reaction due to other internal joint prosthesis, initial encounter|Infection and inflammatory reaction due to other internal joint prosthesis, initial encounter +C2890822|T037|AB|T84.59XD|ICD10CM|Infect/inflm reaction due to oth internal joint prosth, subs|Infect/inflm reaction due to oth internal joint prosth, subs +C2890822|T037|PT|T84.59XD|ICD10CM|Infection and inflammatory reaction due to other internal joint prosthesis, subsequent encounter|Infection and inflammatory reaction due to other internal joint prosthesis, subsequent encounter +C2890823|T037|AB|T84.59XS|ICD10CM|Infect/inflm reaction due to oth int joint prosth, sequela|Infect/inflm reaction due to oth int joint prosth, sequela +C2890823|T037|PT|T84.59XS|ICD10CM|Infection and inflammatory reaction due to other internal joint prosthesis, sequela|Infection and inflammatory reaction due to other internal joint prosthesis, sequela +C0867374|T047|AB|T84.6|ICD10CM|Infect/inflm reaction due to internal fixation device|Infect/inflm reaction due to internal fixation device +C0867374|T047|HT|T84.6|ICD10CM|Infection and inflammatory reaction due to internal fixation device|Infection and inflammatory reaction due to internal fixation device +C0496150|T046|PT|T84.6|ICD10|Infection and inflammatory reaction due to internal fixation device [any site]|Infection and inflammatory reaction due to internal fixation device [any site] +C2890824|T037|AB|T84.60|ICD10CM|Infect/inflm reaction due to int fix of unsp site|Infect/inflm reaction due to int fix of unsp site +C2890824|T037|HT|T84.60|ICD10CM|Infection and inflammatory reaction due to internal fixation device of unspecified site|Infection and inflammatory reaction due to internal fixation device of unspecified site +C2890825|T037|AB|T84.60XA|ICD10CM|Infect/inflm reaction due to int fix of unsp site, init|Infect/inflm reaction due to int fix of unsp site, init +C2890826|T037|AB|T84.60XD|ICD10CM|Infect/inflm reaction due to int fix of unsp site, subs|Infect/inflm reaction due to int fix of unsp site, subs +C2890827|T037|AB|T84.60XS|ICD10CM|Infect/inflm reaction due to int fix of unsp site, sequela|Infect/inflm reaction due to int fix of unsp site, sequela +C2890827|T037|PT|T84.60XS|ICD10CM|Infection and inflammatory reaction due to internal fixation device of unspecified site, sequela|Infection and inflammatory reaction due to internal fixation device of unspecified site, sequela +C2890828|T037|AB|T84.61|ICD10CM|Infect/inflm reaction due to internal fixation device of arm|Infect/inflm reaction due to internal fixation device of arm +C2890828|T037|HT|T84.61|ICD10CM|Infection and inflammatory reaction due to internal fixation device of arm|Infection and inflammatory reaction due to internal fixation device of arm +C2890829|T037|AB|T84.610|ICD10CM|Infect/inflm reaction due to int fix of right humerus|Infect/inflm reaction due to int fix of right humerus +C2890829|T037|HT|T84.610|ICD10CM|Infection and inflammatory reaction due to internal fixation device of right humerus|Infection and inflammatory reaction due to internal fixation device of right humerus +C2890830|T037|AB|T84.610A|ICD10CM|Infect/inflm reaction due to int fix of right humerus, init|Infect/inflm reaction due to int fix of right humerus, init +C2890831|T037|AB|T84.610D|ICD10CM|Infect/inflm reaction due to int fix of right humerus, subs|Infect/inflm reaction due to int fix of right humerus, subs +C2890832|T037|AB|T84.610S|ICD10CM|Infect/inflm reaction due to int fix of r humerus, sequela|Infect/inflm reaction due to int fix of r humerus, sequela +C2890832|T037|PT|T84.610S|ICD10CM|Infection and inflammatory reaction due to internal fixation device of right humerus, sequela|Infection and inflammatory reaction due to internal fixation device of right humerus, sequela +C2890833|T037|AB|T84.611|ICD10CM|Infect/inflm reaction due to int fix of left humerus|Infect/inflm reaction due to int fix of left humerus +C2890833|T037|HT|T84.611|ICD10CM|Infection and inflammatory reaction due to internal fixation device of left humerus|Infection and inflammatory reaction due to internal fixation device of left humerus +C2890834|T037|AB|T84.611A|ICD10CM|Infect/inflm reaction due to int fix of left humerus, init|Infect/inflm reaction due to int fix of left humerus, init +C2890835|T037|AB|T84.611D|ICD10CM|Infect/inflm reaction due to int fix of left humerus, subs|Infect/inflm reaction due to int fix of left humerus, subs +C2890836|T037|AB|T84.611S|ICD10CM|Infect/inflm reaction due to int fix of l humerus, sequela|Infect/inflm reaction due to int fix of l humerus, sequela +C2890836|T037|PT|T84.611S|ICD10CM|Infection and inflammatory reaction due to internal fixation device of left humerus, sequela|Infection and inflammatory reaction due to internal fixation device of left humerus, sequela +C2890837|T037|AB|T84.612|ICD10CM|Infect/inflm reaction due to int fix of right radius|Infect/inflm reaction due to int fix of right radius +C2890837|T037|HT|T84.612|ICD10CM|Infection and inflammatory reaction due to internal fixation device of right radius|Infection and inflammatory reaction due to internal fixation device of right radius +C2890838|T037|AB|T84.612A|ICD10CM|Infect/inflm reaction due to int fix of right radius, init|Infect/inflm reaction due to int fix of right radius, init +C2890839|T037|AB|T84.612D|ICD10CM|Infect/inflm reaction due to int fix of right radius, subs|Infect/inflm reaction due to int fix of right radius, subs +C2890840|T037|AB|T84.612S|ICD10CM|Infect/inflm reaction due to int fix of r radius, sequela|Infect/inflm reaction due to int fix of r radius, sequela +C2890840|T037|PT|T84.612S|ICD10CM|Infection and inflammatory reaction due to internal fixation device of right radius, sequela|Infection and inflammatory reaction due to internal fixation device of right radius, sequela +C2890841|T037|AB|T84.613|ICD10CM|Infect/inflm reaction due to int fix of left radius|Infect/inflm reaction due to int fix of left radius +C2890841|T037|HT|T84.613|ICD10CM|Infection and inflammatory reaction due to internal fixation device of left radius|Infection and inflammatory reaction due to internal fixation device of left radius +C2890842|T037|AB|T84.613A|ICD10CM|Infect/inflm reaction due to int fix of left radius, init|Infect/inflm reaction due to int fix of left radius, init +C2890843|T037|AB|T84.613D|ICD10CM|Infect/inflm reaction due to int fix of left radius, subs|Infect/inflm reaction due to int fix of left radius, subs +C2890844|T037|AB|T84.613S|ICD10CM|Infect/inflm reaction due to int fix of left radius, sequela|Infect/inflm reaction due to int fix of left radius, sequela +C2890844|T037|PT|T84.613S|ICD10CM|Infection and inflammatory reaction due to internal fixation device of left radius, sequela|Infection and inflammatory reaction due to internal fixation device of left radius, sequela +C2890845|T037|AB|T84.614|ICD10CM|Infect/inflm reaction due to int fix of right ulna|Infect/inflm reaction due to int fix of right ulna +C2890845|T037|HT|T84.614|ICD10CM|Infection and inflammatory reaction due to internal fixation device of right ulna|Infection and inflammatory reaction due to internal fixation device of right ulna +C2890846|T037|AB|T84.614A|ICD10CM|Infect/inflm reaction due to int fix of right ulna, init|Infect/inflm reaction due to int fix of right ulna, init +C2890846|T037|PT|T84.614A|ICD10CM|Infection and inflammatory reaction due to internal fixation device of right ulna, initial encounter|Infection and inflammatory reaction due to internal fixation device of right ulna, initial encounter +C2890847|T037|AB|T84.614D|ICD10CM|Infect/inflm reaction due to int fix of right ulna, subs|Infect/inflm reaction due to int fix of right ulna, subs +C2890848|T037|AB|T84.614S|ICD10CM|Infect/inflm reaction due to int fix of right ulna, sequela|Infect/inflm reaction due to int fix of right ulna, sequela +C2890848|T037|PT|T84.614S|ICD10CM|Infection and inflammatory reaction due to internal fixation device of right ulna, sequela|Infection and inflammatory reaction due to internal fixation device of right ulna, sequela +C2890849|T037|AB|T84.615|ICD10CM|Infect/inflm reaction due to int fix of left ulna|Infect/inflm reaction due to int fix of left ulna +C2890849|T037|HT|T84.615|ICD10CM|Infection and inflammatory reaction due to internal fixation device of left ulna|Infection and inflammatory reaction due to internal fixation device of left ulna +C2890850|T037|AB|T84.615A|ICD10CM|Infect/inflm reaction due to int fix of left ulna, init|Infect/inflm reaction due to int fix of left ulna, init +C2890850|T037|PT|T84.615A|ICD10CM|Infection and inflammatory reaction due to internal fixation device of left ulna, initial encounter|Infection and inflammatory reaction due to internal fixation device of left ulna, initial encounter +C2890851|T037|AB|T84.615D|ICD10CM|Infect/inflm reaction due to int fix of left ulna, subs|Infect/inflm reaction due to int fix of left ulna, subs +C2890852|T037|AB|T84.615S|ICD10CM|Infect/inflm reaction due to int fix of left ulna, sequela|Infect/inflm reaction due to int fix of left ulna, sequela +C2890852|T037|PT|T84.615S|ICD10CM|Infection and inflammatory reaction due to internal fixation device of left ulna, sequela|Infection and inflammatory reaction due to internal fixation device of left ulna, sequela +C2890853|T037|AB|T84.619|ICD10CM|Infect/inflm reaction due to int fix of unsp bone of arm|Infect/inflm reaction due to int fix of unsp bone of arm +C2890853|T037|HT|T84.619|ICD10CM|Infection and inflammatory reaction due to internal fixation device of unspecified bone of arm|Infection and inflammatory reaction due to internal fixation device of unspecified bone of arm +C2890854|T037|AB|T84.619A|ICD10CM|Infect/inflm react due to int fix of unsp bone of arm, init|Infect/inflm react due to int fix of unsp bone of arm, init +C2890855|T037|AB|T84.619D|ICD10CM|Infect/inflm react due to int fix of unsp bone of arm, subs|Infect/inflm react due to int fix of unsp bone of arm, subs +C2890856|T037|AB|T84.619S|ICD10CM|Infect/inflm react due to int fix of unsp bone of arm, sqla|Infect/inflm react due to int fix of unsp bone of arm, sqla +C2890857|T037|AB|T84.62|ICD10CM|Infect/inflm reaction due to internal fixation device of leg|Infect/inflm reaction due to internal fixation device of leg +C2890857|T037|HT|T84.62|ICD10CM|Infection and inflammatory reaction due to internal fixation device of leg|Infection and inflammatory reaction due to internal fixation device of leg +C2890858|T037|AB|T84.620|ICD10CM|Infect/inflm reaction due to int fix of right femur|Infect/inflm reaction due to int fix of right femur +C2890858|T037|HT|T84.620|ICD10CM|Infection and inflammatory reaction due to internal fixation device of right femur|Infection and inflammatory reaction due to internal fixation device of right femur +C2890859|T037|AB|T84.620A|ICD10CM|Infect/inflm reaction due to int fix of right femur, init|Infect/inflm reaction due to int fix of right femur, init +C2890860|T037|AB|T84.620D|ICD10CM|Infect/inflm reaction due to int fix of right femur, subs|Infect/inflm reaction due to int fix of right femur, subs +C2890861|T037|AB|T84.620S|ICD10CM|Infect/inflm reaction due to int fix of right femur, sequela|Infect/inflm reaction due to int fix of right femur, sequela +C2890861|T037|PT|T84.620S|ICD10CM|Infection and inflammatory reaction due to internal fixation device of right femur, sequela|Infection and inflammatory reaction due to internal fixation device of right femur, sequela +C2890862|T037|AB|T84.621|ICD10CM|Infect/inflm reaction due to int fix of left femur|Infect/inflm reaction due to int fix of left femur +C2890862|T037|HT|T84.621|ICD10CM|Infection and inflammatory reaction due to internal fixation device of left femur|Infection and inflammatory reaction due to internal fixation device of left femur +C2890863|T037|AB|T84.621A|ICD10CM|Infect/inflm reaction due to int fix of left femur, init|Infect/inflm reaction due to int fix of left femur, init +C2890863|T037|PT|T84.621A|ICD10CM|Infection and inflammatory reaction due to internal fixation device of left femur, initial encounter|Infection and inflammatory reaction due to internal fixation device of left femur, initial encounter +C2890864|T037|AB|T84.621D|ICD10CM|Infect/inflm reaction due to int fix of left femur, subs|Infect/inflm reaction due to int fix of left femur, subs +C2890865|T037|AB|T84.621S|ICD10CM|Infect/inflm reaction due to int fix of left femur, sequela|Infect/inflm reaction due to int fix of left femur, sequela +C2890865|T037|PT|T84.621S|ICD10CM|Infection and inflammatory reaction due to internal fixation device of left femur, sequela|Infection and inflammatory reaction due to internal fixation device of left femur, sequela +C2890866|T037|AB|T84.622|ICD10CM|Infect/inflm reaction due to int fix of right tibia|Infect/inflm reaction due to int fix of right tibia +C2890866|T037|HT|T84.622|ICD10CM|Infection and inflammatory reaction due to internal fixation device of right tibia|Infection and inflammatory reaction due to internal fixation device of right tibia +C2890867|T037|AB|T84.622A|ICD10CM|Infect/inflm reaction due to int fix of right tibia, init|Infect/inflm reaction due to int fix of right tibia, init +C2890868|T037|AB|T84.622D|ICD10CM|Infect/inflm reaction due to int fix of right tibia, subs|Infect/inflm reaction due to int fix of right tibia, subs +C2890869|T037|AB|T84.622S|ICD10CM|Infect/inflm reaction due to int fix of right tibia, sequela|Infect/inflm reaction due to int fix of right tibia, sequela +C2890869|T037|PT|T84.622S|ICD10CM|Infection and inflammatory reaction due to internal fixation device of right tibia, sequela|Infection and inflammatory reaction due to internal fixation device of right tibia, sequela +C2890870|T037|AB|T84.623|ICD10CM|Infect/inflm reaction due to int fix of left tibia|Infect/inflm reaction due to int fix of left tibia +C2890870|T037|HT|T84.623|ICD10CM|Infection and inflammatory reaction due to internal fixation device of left tibia|Infection and inflammatory reaction due to internal fixation device of left tibia +C2890871|T037|AB|T84.623A|ICD10CM|Infect/inflm reaction due to int fix of left tibia, init|Infect/inflm reaction due to int fix of left tibia, init +C2890871|T037|PT|T84.623A|ICD10CM|Infection and inflammatory reaction due to internal fixation device of left tibia, initial encounter|Infection and inflammatory reaction due to internal fixation device of left tibia, initial encounter +C2890872|T037|AB|T84.623D|ICD10CM|Infect/inflm reaction due to int fix of left tibia, subs|Infect/inflm reaction due to int fix of left tibia, subs +C2890873|T037|AB|T84.623S|ICD10CM|Infect/inflm reaction due to int fix of left tibia, sequela|Infect/inflm reaction due to int fix of left tibia, sequela +C2890873|T037|PT|T84.623S|ICD10CM|Infection and inflammatory reaction due to internal fixation device of left tibia, sequela|Infection and inflammatory reaction due to internal fixation device of left tibia, sequela +C2890874|T037|AB|T84.624|ICD10CM|Infect/inflm reaction due to int fix of right fibula|Infect/inflm reaction due to int fix of right fibula +C2890874|T037|HT|T84.624|ICD10CM|Infection and inflammatory reaction due to internal fixation device of right fibula|Infection and inflammatory reaction due to internal fixation device of right fibula +C2890875|T037|AB|T84.624A|ICD10CM|Infect/inflm reaction due to int fix of right fibula, init|Infect/inflm reaction due to int fix of right fibula, init +C2890876|T037|AB|T84.624D|ICD10CM|Infect/inflm reaction due to int fix of right fibula, subs|Infect/inflm reaction due to int fix of right fibula, subs +C2890877|T037|AB|T84.624S|ICD10CM|Infect/inflm reaction due to int fix of r fibula, sequela|Infect/inflm reaction due to int fix of r fibula, sequela +C2890877|T037|PT|T84.624S|ICD10CM|Infection and inflammatory reaction due to internal fixation device of right fibula, sequela|Infection and inflammatory reaction due to internal fixation device of right fibula, sequela +C2890878|T037|AB|T84.625|ICD10CM|Infect/inflm reaction due to int fix of left fibula|Infect/inflm reaction due to int fix of left fibula +C2890878|T037|HT|T84.625|ICD10CM|Infection and inflammatory reaction due to internal fixation device of left fibula|Infection and inflammatory reaction due to internal fixation device of left fibula +C2890879|T037|AB|T84.625A|ICD10CM|Infect/inflm reaction due to int fix of left fibula, init|Infect/inflm reaction due to int fix of left fibula, init +C2890880|T037|AB|T84.625D|ICD10CM|Infect/inflm reaction due to int fix of left fibula, subs|Infect/inflm reaction due to int fix of left fibula, subs +C2890881|T037|AB|T84.625S|ICD10CM|Infect/inflm reaction due to int fix of left fibula, sequela|Infect/inflm reaction due to int fix of left fibula, sequela +C2890881|T037|PT|T84.625S|ICD10CM|Infection and inflammatory reaction due to internal fixation device of left fibula, sequela|Infection and inflammatory reaction due to internal fixation device of left fibula, sequela +C2890882|T037|AB|T84.629|ICD10CM|Infect/inflm reaction due to int fix of unsp bone of leg|Infect/inflm reaction due to int fix of unsp bone of leg +C2890882|T037|HT|T84.629|ICD10CM|Infection and inflammatory reaction due to internal fixation device of unspecified bone of leg|Infection and inflammatory reaction due to internal fixation device of unspecified bone of leg +C2890883|T037|AB|T84.629A|ICD10CM|Infect/inflm react due to int fix of unsp bone of leg, init|Infect/inflm react due to int fix of unsp bone of leg, init +C2890884|T037|AB|T84.629D|ICD10CM|Infect/inflm react due to int fix of unsp bone of leg, subs|Infect/inflm react due to int fix of unsp bone of leg, subs +C2890885|T037|AB|T84.629S|ICD10CM|Infect/inflm react due to int fix of unsp bone of leg, sqla|Infect/inflm react due to int fix of unsp bone of leg, sqla +C2890886|T037|AB|T84.63|ICD10CM|Infect/inflm reaction due to int fix of spine|Infect/inflm reaction due to int fix of spine +C2890886|T037|HT|T84.63|ICD10CM|Infection and inflammatory reaction due to internal fixation device of spine|Infection and inflammatory reaction due to internal fixation device of spine +C2890887|T037|AB|T84.63XA|ICD10CM|Infect/inflm reaction due to int fix of spine, init|Infect/inflm reaction due to int fix of spine, init +C2890887|T037|PT|T84.63XA|ICD10CM|Infection and inflammatory reaction due to internal fixation device of spine, initial encounter|Infection and inflammatory reaction due to internal fixation device of spine, initial encounter +C2890888|T037|AB|T84.63XD|ICD10CM|Infect/inflm reaction due to int fix of spine, subs|Infect/inflm reaction due to int fix of spine, subs +C2890888|T037|PT|T84.63XD|ICD10CM|Infection and inflammatory reaction due to internal fixation device of spine, subsequent encounter|Infection and inflammatory reaction due to internal fixation device of spine, subsequent encounter +C2890889|T037|AB|T84.63XS|ICD10CM|Infect/inflm reaction due to int fix of spine, sequela|Infect/inflm reaction due to int fix of spine, sequela +C2890889|T037|PT|T84.63XS|ICD10CM|Infection and inflammatory reaction due to internal fixation device of spine, sequela|Infection and inflammatory reaction due to internal fixation device of spine, sequela +C2890890|T037|AB|T84.69|ICD10CM|Infect/inflm reaction due to int fix of site|Infect/inflm reaction due to int fix of site +C2890890|T037|HT|T84.69|ICD10CM|Infection and inflammatory reaction due to internal fixation device of other site|Infection and inflammatory reaction due to internal fixation device of other site +C2890891|T037|AB|T84.69XA|ICD10CM|Infect/inflm reaction due to int fix of site, init|Infect/inflm reaction due to int fix of site, init +C2890891|T037|PT|T84.69XA|ICD10CM|Infection and inflammatory reaction due to internal fixation device of other site, initial encounter|Infection and inflammatory reaction due to internal fixation device of other site, initial encounter +C2890892|T037|AB|T84.69XD|ICD10CM|Infect/inflm reaction due to int fix of site, subs|Infect/inflm reaction due to int fix of site, subs +C2890893|T037|AB|T84.69XS|ICD10CM|Infect/inflm reaction due to int fix of site, sequela|Infect/inflm reaction due to int fix of site, sequela +C2890893|T037|PT|T84.69XS|ICD10CM|Infection and inflammatory reaction due to internal fixation device of other site, sequela|Infection and inflammatory reaction due to internal fixation device of other site, sequela +C0478495|T046|AB|T84.7|ICD10CM|Infect/inflm reaction due to oth int orth prosth dev/grft|Infect/inflm reaction due to oth int orth prosth dev/grft +C2890894|T037|AB|T84.7XXA|ICD10CM|Infect/inflm react due to oth int orth prosth dev/grft, init|Infect/inflm react due to oth int orth prosth dev/grft, init +C2890895|T037|AB|T84.7XXD|ICD10CM|Infect/inflm react due to oth int orth prosth dev/grft, subs|Infect/inflm react due to oth int orth prosth dev/grft, subs +C2890896|T037|AB|T84.7XXS|ICD10CM|Infect/inflm react due to oth int orth prosth dev/grft, sqla|Infect/inflm react due to oth int orth prosth dev/grft, sqla +C2890921|T037|AB|T84.8|ICD10CM|Oth complications of internal orthopedic prosth dev/grft|Oth complications of internal orthopedic prosth dev/grft +C0478496|T046|PT|T84.8|ICD10|Other complications of internal orthopaedic prosthetic devices, implants and grafts|Other complications of internal orthopaedic prosthetic devices, implants and grafts +C0478496|T046|PT|T84.8|ICD10AE|Other complications of internal orthopedic prosthetic devices, implants and grafts|Other complications of internal orthopedic prosthetic devices, implants and grafts +C2890921|T037|HT|T84.8|ICD10CM|Other specified complications of internal orthopedic prosthetic devices, implants and grafts|Other specified complications of internal orthopedic prosthetic devices, implants and grafts +C2890897|T037|AB|T84.81|ICD10CM|Embolism due to internal orthopedic prosth dev/grft|Embolism due to internal orthopedic prosth dev/grft +C2890897|T037|HT|T84.81|ICD10CM|Embolism due to internal orthopedic prosthetic devices, implants and grafts|Embolism due to internal orthopedic prosthetic devices, implants and grafts +C2890898|T037|AB|T84.81XA|ICD10CM|Embolism due to internal orthopedic prosth dev/grft, init|Embolism due to internal orthopedic prosth dev/grft, init +C2890898|T037|PT|T84.81XA|ICD10CM|Embolism due to internal orthopedic prosthetic devices, implants and grafts, initial encounter|Embolism due to internal orthopedic prosthetic devices, implants and grafts, initial encounter +C2890899|T037|AB|T84.81XD|ICD10CM|Embolism due to internal orthopedic prosth dev/grft, subs|Embolism due to internal orthopedic prosth dev/grft, subs +C2890899|T037|PT|T84.81XD|ICD10CM|Embolism due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter|Embolism due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter +C2890900|T037|AB|T84.81XS|ICD10CM|Embolism due to internal orthopedic prosth dev/grft, sequela|Embolism due to internal orthopedic prosth dev/grft, sequela +C2890900|T037|PT|T84.81XS|ICD10CM|Embolism due to internal orthopedic prosthetic devices, implants and grafts, sequela|Embolism due to internal orthopedic prosthetic devices, implants and grafts, sequela +C2890901|T037|AB|T84.82|ICD10CM|Fibrosis due to internal orthopedic prosth dev/grft|Fibrosis due to internal orthopedic prosth dev/grft +C2890901|T037|HT|T84.82|ICD10CM|Fibrosis due to internal orthopedic prosthetic devices, implants and grafts|Fibrosis due to internal orthopedic prosthetic devices, implants and grafts +C2890902|T037|AB|T84.82XA|ICD10CM|Fibrosis due to internal orthopedic prosth dev/grft, init|Fibrosis due to internal orthopedic prosth dev/grft, init +C2890902|T037|PT|T84.82XA|ICD10CM|Fibrosis due to internal orthopedic prosthetic devices, implants and grafts, initial encounter|Fibrosis due to internal orthopedic prosthetic devices, implants and grafts, initial encounter +C2890903|T037|AB|T84.82XD|ICD10CM|Fibrosis due to internal orthopedic prosth dev/grft, subs|Fibrosis due to internal orthopedic prosth dev/grft, subs +C2890903|T037|PT|T84.82XD|ICD10CM|Fibrosis due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter|Fibrosis due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter +C2890904|T037|AB|T84.82XS|ICD10CM|Fibrosis due to internal orthopedic prosth dev/grft, sequela|Fibrosis due to internal orthopedic prosth dev/grft, sequela +C2890904|T037|PT|T84.82XS|ICD10CM|Fibrosis due to internal orthopedic prosthetic devices, implants and grafts, sequela|Fibrosis due to internal orthopedic prosthetic devices, implants and grafts, sequela +C2890905|T037|AB|T84.83|ICD10CM|Hemorrhage due to internal orthopedic prosth dev/grft|Hemorrhage due to internal orthopedic prosth dev/grft +C2890905|T037|HT|T84.83|ICD10CM|Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts|Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts +C2890906|T037|AB|T84.83XA|ICD10CM|Hemorrhage due to internal orthopedic prosth dev/grft, init|Hemorrhage due to internal orthopedic prosth dev/grft, init +C2890906|T037|PT|T84.83XA|ICD10CM|Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts, initial encounter|Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts, initial encounter +C2890907|T037|AB|T84.83XD|ICD10CM|Hemorrhage due to internal orthopedic prosth dev/grft, subs|Hemorrhage due to internal orthopedic prosth dev/grft, subs +C2890907|T037|PT|T84.83XD|ICD10CM|Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter|Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter +C2890908|T037|AB|T84.83XS|ICD10CM|Hemor due to internal orthopedic prosth dev/grft, sequela|Hemor due to internal orthopedic prosth dev/grft, sequela +C2890908|T037|PT|T84.83XS|ICD10CM|Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts, sequela|Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts, sequela +C2890909|T037|AB|T84.84|ICD10CM|Pain due to internal orthopedic prosth dev/grft|Pain due to internal orthopedic prosth dev/grft +C2890909|T037|HT|T84.84|ICD10CM|Pain due to internal orthopedic prosthetic devices, implants and grafts|Pain due to internal orthopedic prosthetic devices, implants and grafts +C2890910|T037|AB|T84.84XA|ICD10CM|Pain due to internal orthopedic prosth dev/grft, init|Pain due to internal orthopedic prosth dev/grft, init +C2890910|T037|PT|T84.84XA|ICD10CM|Pain due to internal orthopedic prosthetic devices, implants and grafts, initial encounter|Pain due to internal orthopedic prosthetic devices, implants and grafts, initial encounter +C2890911|T037|AB|T84.84XD|ICD10CM|Pain due to internal orthopedic prosth dev/grft, subs|Pain due to internal orthopedic prosth dev/grft, subs +C2890911|T037|PT|T84.84XD|ICD10CM|Pain due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter|Pain due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter +C2890912|T037|AB|T84.84XS|ICD10CM|Pain due to internal orthopedic prosth dev/grft, sequela|Pain due to internal orthopedic prosth dev/grft, sequela +C2890912|T037|PT|T84.84XS|ICD10CM|Pain due to internal orthopedic prosthetic devices, implants and grafts, sequela|Pain due to internal orthopedic prosthetic devices, implants and grafts, sequela +C2890913|T037|AB|T84.85|ICD10CM|Stenosis due to internal orthopedic prosth dev/grft|Stenosis due to internal orthopedic prosth dev/grft +C2890913|T037|HT|T84.85|ICD10CM|Stenosis due to internal orthopedic prosthetic devices, implants and grafts|Stenosis due to internal orthopedic prosthetic devices, implants and grafts +C2890914|T037|AB|T84.85XA|ICD10CM|Stenosis due to internal orthopedic prosth dev/grft, init|Stenosis due to internal orthopedic prosth dev/grft, init +C2890914|T037|PT|T84.85XA|ICD10CM|Stenosis due to internal orthopedic prosthetic devices, implants and grafts, initial encounter|Stenosis due to internal orthopedic prosthetic devices, implants and grafts, initial encounter +C2890915|T037|AB|T84.85XD|ICD10CM|Stenosis due to internal orthopedic prosth dev/grft, subs|Stenosis due to internal orthopedic prosth dev/grft, subs +C2890915|T037|PT|T84.85XD|ICD10CM|Stenosis due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter|Stenosis due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter +C2890916|T037|AB|T84.85XS|ICD10CM|Stenosis due to internal orthopedic prosth dev/grft, sequela|Stenosis due to internal orthopedic prosth dev/grft, sequela +C2890916|T037|PT|T84.85XS|ICD10CM|Stenosis due to internal orthopedic prosthetic devices, implants and grafts, sequela|Stenosis due to internal orthopedic prosthetic devices, implants and grafts, sequela +C2890917|T037|AB|T84.86|ICD10CM|Thrombosis due to internal orthopedic prosth dev/grft|Thrombosis due to internal orthopedic prosth dev/grft +C2890917|T037|HT|T84.86|ICD10CM|Thrombosis due to internal orthopedic prosthetic devices, implants and grafts|Thrombosis due to internal orthopedic prosthetic devices, implants and grafts +C2890918|T037|AB|T84.86XA|ICD10CM|Thrombosis due to internal orthopedic prosth dev/grft, init|Thrombosis due to internal orthopedic prosth dev/grft, init +C2890918|T037|PT|T84.86XA|ICD10CM|Thrombosis due to internal orthopedic prosthetic devices, implants and grafts, initial encounter|Thrombosis due to internal orthopedic prosthetic devices, implants and grafts, initial encounter +C2890919|T037|AB|T84.86XD|ICD10CM|Thrombosis due to internal orthopedic prosth dev/grft, subs|Thrombosis due to internal orthopedic prosth dev/grft, subs +C2890919|T037|PT|T84.86XD|ICD10CM|Thrombosis due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter|Thrombosis due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter +C2890920|T037|AB|T84.86XS|ICD10CM|Thrombosis due to internal orth prosth dev/grft, sequela|Thrombosis due to internal orth prosth dev/grft, sequela +C2890920|T037|PT|T84.86XS|ICD10CM|Thrombosis due to internal orthopedic prosthetic devices, implants and grafts, sequela|Thrombosis due to internal orthopedic prosthetic devices, implants and grafts, sequela +C2890921|T037|AB|T84.89|ICD10CM|Oth complication of internal orthopedic prosth dev/grft|Oth complication of internal orthopedic prosth dev/grft +C2890921|T037|HT|T84.89|ICD10CM|Other specified complication of internal orthopedic prosthetic devices, implants and grafts|Other specified complication of internal orthopedic prosthetic devices, implants and grafts +C2890922|T037|AB|T84.89XA|ICD10CM|Oth comp of internal orthopedic prosth dev/grft, init|Oth comp of internal orthopedic prosth dev/grft, init +C2890923|T037|AB|T84.89XD|ICD10CM|Oth comp of internal orthopedic prosth dev/grft, subs|Oth comp of internal orthopedic prosth dev/grft, subs +C2890924|T037|AB|T84.89XS|ICD10CM|Oth comp of internal orthopedic prosth dev/grft, sequela|Oth comp of internal orthopedic prosth dev/grft, sequela +C2890924|T037|PT|T84.89XS|ICD10CM|Other specified complication of internal orthopedic prosthetic devices, implants and grafts, sequela|Other specified complication of internal orthopedic prosthetic devices, implants and grafts, sequela +C0496151|T046|AB|T84.9|ICD10CM|Unsp complication of internal orthopedic prosth dev/grft|Unsp complication of internal orthopedic prosth dev/grft +C0496151|T046|PT|T84.9|ICD10|Unspecified complication of internal orthopaedic prosthetic device, implant and graft|Unspecified complication of internal orthopaedic prosthetic device, implant and graft +C0496151|T046|HT|T84.9|ICD10CM|Unspecified complication of internal orthopedic prosthetic device, implant and graft|Unspecified complication of internal orthopedic prosthetic device, implant and graft +C0496151|T046|PT|T84.9|ICD10AE|Unspecified complication of internal orthopedic prosthetic device, implant and graft|Unspecified complication of internal orthopedic prosthetic device, implant and graft +C2890925|T037|AB|T84.9XXA|ICD10CM|Unsp comp of internal orthopedic prosth dev/grft, init|Unsp comp of internal orthopedic prosth dev/grft, init +C2890926|T037|AB|T84.9XXD|ICD10CM|Unsp comp of internal orthopedic prosth dev/grft, subs|Unsp comp of internal orthopedic prosth dev/grft, subs +C2890927|T037|AB|T84.9XXS|ICD10CM|Unsp comp of internal orthopedic prosth dev/grft, sequela|Unsp comp of internal orthopedic prosth dev/grft, sequela +C2890927|T037|PT|T84.9XXS|ICD10CM|Unspecified complication of internal orthopedic prosthetic device, implant and graft, sequela|Unspecified complication of internal orthopedic prosthetic device, implant and graft, sequela +C0161787|T046|AB|T85|ICD10CM|Complications of internal prosth dev/grft|Complications of internal prosth dev/grft +C0161787|T046|HT|T85|ICD10CM|Complications of other internal prosthetic devices, implants and grafts|Complications of other internal prosthetic devices, implants and grafts +C0161787|T046|HT|T85|ICD10|Complications of other internal prosthetic devices, implants and grafts|Complications of other internal prosthetic devices, implants and grafts +C0274342|T046|PT|T85.0|ICD10|Mechanical complication of ventricular intracranial (communicating) shunt|Mechanical complication of ventricular intracranial (communicating) shunt +C0274342|T046|HT|T85.0|ICD10CM|Mechanical complication of ventricular intracranial (communicating) shunt|Mechanical complication of ventricular intracranial (communicating) shunt +C0274342|T046|AB|T85.0|ICD10CM|Mechanical complication of ventricular intracranial shunt|Mechanical complication of ventricular intracranial shunt +C2890928|T037|HT|T85.01|ICD10CM|Breakdown (mechanical) of ventricular intracranial (communicating) shunt|Breakdown (mechanical) of ventricular intracranial (communicating) shunt +C2890928|T037|AB|T85.01|ICD10CM|Breakdown (mechanical) of ventricular intracranial shunt|Breakdown (mechanical) of ventricular intracranial shunt +C2890929|T037|PT|T85.01XA|ICD10CM|Breakdown (mechanical) of ventricular intracranial (communicating) shunt, initial encounter|Breakdown (mechanical) of ventricular intracranial (communicating) shunt, initial encounter +C2890929|T037|AB|T85.01XA|ICD10CM|Breakdown of ventricular intracranial shunt, init|Breakdown of ventricular intracranial shunt, init +C2890930|T037|PT|T85.01XD|ICD10CM|Breakdown (mechanical) of ventricular intracranial (communicating) shunt, subsequent encounter|Breakdown (mechanical) of ventricular intracranial (communicating) shunt, subsequent encounter +C2890930|T037|AB|T85.01XD|ICD10CM|Breakdown of ventricular intracranial shunt, subs|Breakdown of ventricular intracranial shunt, subs +C2890931|T037|PT|T85.01XS|ICD10CM|Breakdown (mechanical) of ventricular intracranial (communicating) shunt, sequela|Breakdown (mechanical) of ventricular intracranial (communicating) shunt, sequela +C2890931|T037|AB|T85.01XS|ICD10CM|Breakdown of ventricular intracranial shunt, sequela|Breakdown of ventricular intracranial shunt, sequela +C2890933|T037|HT|T85.02|ICD10CM|Displacement of ventricular intracranial (communicating) shunt|Displacement of ventricular intracranial (communicating) shunt +C2890933|T037|AB|T85.02|ICD10CM|Displacement of ventricular intracranial shunt|Displacement of ventricular intracranial shunt +C2890932|T037|ET|T85.02|ICD10CM|Malposition of ventricular intracranial (communicating) shunt|Malposition of ventricular intracranial (communicating) shunt +C2890934|T037|PT|T85.02XA|ICD10CM|Displacement of ventricular intracranial (communicating) shunt, initial encounter|Displacement of ventricular intracranial (communicating) shunt, initial encounter +C2890934|T037|AB|T85.02XA|ICD10CM|Displacement of ventricular intracranial shunt, init|Displacement of ventricular intracranial shunt, init +C2890935|T037|PT|T85.02XD|ICD10CM|Displacement of ventricular intracranial (communicating) shunt, subsequent encounter|Displacement of ventricular intracranial (communicating) shunt, subsequent encounter +C2890935|T037|AB|T85.02XD|ICD10CM|Displacement of ventricular intracranial shunt, subs|Displacement of ventricular intracranial shunt, subs +C2890936|T037|PT|T85.02XS|ICD10CM|Displacement of ventricular intracranial (communicating) shunt, sequela|Displacement of ventricular intracranial (communicating) shunt, sequela +C2890936|T037|AB|T85.02XS|ICD10CM|Displacement of ventricular intracranial shunt, sequela|Displacement of ventricular intracranial shunt, sequela +C2890937|T037|AB|T85.03|ICD10CM|Leakage of ventricular intracranial (communicating) shunt|Leakage of ventricular intracranial (communicating) shunt +C2890937|T037|HT|T85.03|ICD10CM|Leakage of ventricular intracranial (communicating) shunt|Leakage of ventricular intracranial (communicating) shunt +C2890938|T037|PT|T85.03XA|ICD10CM|Leakage of ventricular intracranial (communicating) shunt, initial encounter|Leakage of ventricular intracranial (communicating) shunt, initial encounter +C2890938|T037|AB|T85.03XA|ICD10CM|Leakage of ventricular intracranial shunt, init|Leakage of ventricular intracranial shunt, init +C2890939|T037|PT|T85.03XD|ICD10CM|Leakage of ventricular intracranial (communicating) shunt, subsequent encounter|Leakage of ventricular intracranial (communicating) shunt, subsequent encounter +C2890939|T037|AB|T85.03XD|ICD10CM|Leakage of ventricular intracranial shunt, subs|Leakage of ventricular intracranial shunt, subs +C2890940|T037|PT|T85.03XS|ICD10CM|Leakage of ventricular intracranial (communicating) shunt, sequela|Leakage of ventricular intracranial (communicating) shunt, sequela +C2890940|T037|AB|T85.03XS|ICD10CM|Leakage of ventricular intracranial shunt, sequela|Leakage of ventricular intracranial shunt, sequela +C2890944|T037|AB|T85.09|ICD10CM|Mech compl of ventricular intracranial (communicating) shunt|Mech compl of ventricular intracranial (communicating) shunt +C2890941|T037|ET|T85.09|ICD10CM|Obstruction (mechanical) of ventricular intracranial (communicating) shunt|Obstruction (mechanical) of ventricular intracranial (communicating) shunt +C2890944|T037|HT|T85.09|ICD10CM|Other mechanical complication of ventricular intracranial (communicating) shunt|Other mechanical complication of ventricular intracranial (communicating) shunt +C2890942|T037|ET|T85.09|ICD10CM|Perforation of ventricular intracranial (communicating) shunt|Perforation of ventricular intracranial (communicating) shunt +C2890943|T037|ET|T85.09|ICD10CM|Protrusion of ventricular intracranial (communicating) shunt|Protrusion of ventricular intracranial (communicating) shunt +C2890945|T037|AB|T85.09XA|ICD10CM|Mech compl of ventricular intracranial shunt, init|Mech compl of ventricular intracranial shunt, init +C2890945|T037|PT|T85.09XA|ICD10CM|Other mechanical complication of ventricular intracranial (communicating) shunt, initial encounter|Other mechanical complication of ventricular intracranial (communicating) shunt, initial encounter +C2890946|T037|AB|T85.09XD|ICD10CM|Mech compl of ventricular intracranial shunt, subs|Mech compl of ventricular intracranial shunt, subs +C2890947|T037|AB|T85.09XS|ICD10CM|Mech compl of ventricular intracranial shunt, sequela|Mech compl of ventricular intracranial shunt, sequela +C2890947|T037|PT|T85.09XS|ICD10CM|Other mechanical complication of ventricular intracranial (communicating) shunt, sequela|Other mechanical complication of ventricular intracranial (communicating) shunt, sequela +C0496152|T046|AB|T85.1|ICD10CM|Mech comp of implanted electrnc stimulator of nervous sys|Mech comp of implanted electrnc stimulator of nervous sys +C0496152|T046|HT|T85.1|ICD10CM|Mechanical complication of implanted electronic stimulator of nervous system|Mechanical complication of implanted electronic stimulator of nervous system +C0496152|T046|PT|T85.1|ICD10|Mechanical complication of implanted electronic stimulator of nervous system|Mechanical complication of implanted electronic stimulator of nervous system +C2890948|T037|HT|T85.11|ICD10CM|Breakdown (mechanical) of implanted electronic stimulator of nervous system|Breakdown (mechanical) of implanted electronic stimulator of nervous system +C2890948|T037|AB|T85.11|ICD10CM|Breakdown of implanted electronic stimulator of nervous sys|Breakdown of implanted electronic stimulator of nervous sys +C4270450|T046|HT|T85.110|ICD10CM|Breakdown (mechanical) of implanted electronic neurostimulator of brain electrode (lead)|Breakdown (mechanical) of implanted electronic neurostimulator of brain electrode (lead) +C4270450|T046|AB|T85.110|ICD10CM|Breakdown (mechanical) of implnt elec nstim of brain lead|Breakdown (mechanical) of implnt elec nstim of brain lead +C4270451|T046|AB|T85.110A|ICD10CM|Breakdown of implnt elec nstim of brain lead, init|Breakdown of implnt elec nstim of brain lead, init +C4270452|T046|AB|T85.110D|ICD10CM|Breakdown of implnt elec nstim of brain lead, subs|Breakdown of implnt elec nstim of brain lead, subs +C4270453|T046|PT|T85.110S|ICD10CM|Breakdown (mechanical) of implanted electronic neurostimulator of brain electrode (lead), sequela|Breakdown (mechanical) of implanted electronic neurostimulator of brain electrode (lead), sequela +C4270453|T046|AB|T85.110S|ICD10CM|Breakdown of implnt elec nstim of brain lead, sequela|Breakdown of implnt elec nstim of brain lead, sequela +C4270454|T046|HT|T85.111|ICD10CM|Breakdown (mechanical) of implanted electronic neurostimulator of peripheral nerve electrode (lead)|Breakdown (mechanical) of implanted electronic neurostimulator of peripheral nerve electrode (lead) +C4270454|T046|AB|T85.111|ICD10CM|Breakdown (mechanical) of implnt elec nstim of prph nrv lead|Breakdown (mechanical) of implnt elec nstim of prph nrv lead +C4270455|T046|ET|T85.111|ICD10CM|Breakdown of electrode (lead) for cranial nerve neurostimulators|Breakdown of electrode (lead) for cranial nerve neurostimulators +C4270456|T046|ET|T85.111|ICD10CM|Breakdown of electrode (lead) for gastric neurostimulator|Breakdown of electrode (lead) for gastric neurostimulator +C4270457|T046|ET|T85.111|ICD10CM|Breakdown of electrode (lead) for sacral nerve neurostimulator|Breakdown of electrode (lead) for sacral nerve neurostimulator +C4270458|T046|ET|T85.111|ICD10CM|Breakdown of electrode (lead) for vagal nerve neurostimulators|Breakdown of electrode (lead) for vagal nerve neurostimulators +C4270459|T046|AB|T85.111A|ICD10CM|Breakdown of implnt elec nstim of prph nrv lead, init|Breakdown of implnt elec nstim of prph nrv lead, init +C4270460|T046|AB|T85.111D|ICD10CM|Breakdown of implnt elec nstim of prph nrv lead, subs|Breakdown of implnt elec nstim of prph nrv lead, subs +C4270461|T046|AB|T85.111S|ICD10CM|Breakdown of implnt elec nstim of prph nrv lead, sequela|Breakdown of implnt elec nstim of prph nrv lead, sequela +C4270462|T046|HT|T85.112|ICD10CM|Breakdown (mechanical) of implanted electronic neurostimulator of spinal cord electrode (lead)|Breakdown (mechanical) of implanted electronic neurostimulator of spinal cord electrode (lead) +C4270462|T046|AB|T85.112|ICD10CM|Breakdown of implnt elec nstim of spinal cord lead|Breakdown of implnt elec nstim of spinal cord lead +C4270463|T046|AB|T85.112A|ICD10CM|Breakdown of implnt elec nstim of spinal cord lead, init|Breakdown of implnt elec nstim of spinal cord lead, init +C4270464|T046|AB|T85.112D|ICD10CM|Breakdown of implnt elec nstim of spinal cord lead, subs|Breakdown of implnt elec nstim of spinal cord lead, subs +C4270465|T046|AB|T85.112S|ICD10CM|Breakdown of implnt elec nstim of spinal cord lead, sequela|Breakdown of implnt elec nstim of spinal cord lead, sequela +C4270466|T046|HT|T85.113|ICD10CM|Breakdown (mechanical) of implanted electronic neurostimulator, generator|Breakdown (mechanical) of implanted electronic neurostimulator, generator +C4270468|T046|ET|T85.113|ICD10CM|Breakdown (mechanical) of implanted electronic sacral neurostimulator, pulse generator or receiver|Breakdown (mechanical) of implanted electronic sacral neurostimulator, pulse generator or receiver +C4270466|T046|AB|T85.113|ICD10CM|Breakdown (mechanical) of implnt elec nstim, generator|Breakdown (mechanical) of implnt elec nstim, generator +C4270469|T046|PT|T85.113A|ICD10CM|Breakdown (mechanical) of implanted electronic neurostimulator, generator, initial encounter|Breakdown (mechanical) of implanted electronic neurostimulator, generator, initial encounter +C4270469|T046|AB|T85.113A|ICD10CM|Breakdown (mechanical) of implnt elec nstim, generator, init|Breakdown (mechanical) of implnt elec nstim, generator, init +C4270470|T046|PT|T85.113D|ICD10CM|Breakdown (mechanical) of implanted electronic neurostimulator, generator, subsequent encounter|Breakdown (mechanical) of implanted electronic neurostimulator, generator, subsequent encounter +C4270470|T046|AB|T85.113D|ICD10CM|Breakdown (mechanical) of implnt elec nstim, generator, subs|Breakdown (mechanical) of implnt elec nstim, generator, subs +C4270471|T046|PT|T85.113S|ICD10CM|Breakdown (mechanical) of implanted electronic neurostimulator, generator, sequela|Breakdown (mechanical) of implanted electronic neurostimulator, generator, sequela +C4270471|T046|AB|T85.113S|ICD10CM|Breakdown of implnt elec nstim, generator, sequela|Breakdown of implnt elec nstim, generator, sequela +C2890961|T037|HT|T85.118|ICD10CM|Breakdown (mechanical) of other implanted electronic stimulator of nervous system|Breakdown (mechanical) of other implanted electronic stimulator of nervous system +C2890961|T037|AB|T85.118|ICD10CM|Breakdown of implanted electronic stimulator of nervous sys|Breakdown of implanted electronic stimulator of nervous sys +C2890962|T037|PT|T85.118A|ICD10CM|Breakdown (mechanical) of other implanted electronic stimulator of nervous system, initial encounter|Breakdown (mechanical) of other implanted electronic stimulator of nervous system, initial encounter +C2890962|T037|AB|T85.118A|ICD10CM|Brkdwn implanted electronic stimulator of nervous sys, init|Brkdwn implanted electronic stimulator of nervous sys, init +C2890963|T037|AB|T85.118D|ICD10CM|Brkdwn implanted electronic stimulator of nervous sys, subs|Brkdwn implanted electronic stimulator of nervous sys, subs +C2890964|T037|PT|T85.118S|ICD10CM|Breakdown (mechanical) of other implanted electronic stimulator of nervous system, sequela|Breakdown (mechanical) of other implanted electronic stimulator of nervous system, sequela +C2890964|T037|AB|T85.118S|ICD10CM|Brkdwn implanted electrnc stimulator of nervous sys, sequela|Brkdwn implanted electrnc stimulator of nervous sys, sequela +C2890966|T037|HT|T85.12|ICD10CM|Displacement of implanted electronic stimulator of nervous system|Displacement of implanted electronic stimulator of nervous system +C2890966|T037|AB|T85.12|ICD10CM|Displacmnt of implanted electronic stimulator of nervous sys|Displacmnt of implanted electronic stimulator of nervous sys +C2890965|T037|ET|T85.12|ICD10CM|Malposition of implanted electronic stimulator of nervous system|Malposition of implanted electronic stimulator of nervous system +C4270472|T046|HT|T85.120|ICD10CM|Displacement of implanted electronic neurostimulator of brain electrode (lead)|Displacement of implanted electronic neurostimulator of brain electrode (lead) +C4270472|T046|AB|T85.120|ICD10CM|Displacement of implnt elec nstim of brain electrode (lead)|Displacement of implnt elec nstim of brain electrode (lead) +C4270473|T046|PT|T85.120A|ICD10CM|Displacement of implanted electronic neurostimulator of brain electrode (lead), initial encounter|Displacement of implanted electronic neurostimulator of brain electrode (lead), initial encounter +C4270473|T046|AB|T85.120A|ICD10CM|Displacement of implnt elec nstim of brain lead, init|Displacement of implnt elec nstim of brain lead, init +C4270474|T046|PT|T85.120D|ICD10CM|Displacement of implanted electronic neurostimulator of brain electrode (lead), subsequent encounter|Displacement of implanted electronic neurostimulator of brain electrode (lead), subsequent encounter +C4270474|T046|AB|T85.120D|ICD10CM|Displacement of implnt elec nstim of brain lead, subs|Displacement of implnt elec nstim of brain lead, subs +C4270475|T046|PT|T85.120S|ICD10CM|Displacement of implanted electronic neurostimulator of brain electrode (lead), sequela|Displacement of implanted electronic neurostimulator of brain electrode (lead), sequela +C4270475|T046|AB|T85.120S|ICD10CM|Displacement of implnt elec nstim of brain lead, sequela|Displacement of implnt elec nstim of brain lead, sequela +C4270477|T046|ET|T85.121|ICD10CM|Displacement of electrode (lead) for cranial nerve neurostimulators|Displacement of electrode (lead) for cranial nerve neurostimulators +C4270478|T046|ET|T85.121|ICD10CM|Displacement of electrode (lead) for gastric neurostimulator|Displacement of electrode (lead) for gastric neurostimulator +C4270479|T046|ET|T85.121|ICD10CM|Displacement of electrode (lead) for sacral nerve neurostimulator|Displacement of electrode (lead) for sacral nerve neurostimulator +C4270480|T046|ET|T85.121|ICD10CM|Displacement of electrode (lead) for vagal nerve neurostimulators|Displacement of electrode (lead) for vagal nerve neurostimulators +C4270476|T046|HT|T85.121|ICD10CM|Displacement of implanted electronic neurostimulator of peripheral nerve electrode (lead)|Displacement of implanted electronic neurostimulator of peripheral nerve electrode (lead) +C4270476|T046|AB|T85.121|ICD10CM|Displacement of implnt elec nstim of peripheral nerve lead|Displacement of implnt elec nstim of peripheral nerve lead +C4270481|T046|AB|T85.121A|ICD10CM|Displacement of implnt elec nstim of prph nrv lead, init|Displacement of implnt elec nstim of prph nrv lead, init +C4270482|T046|AB|T85.121D|ICD10CM|Displacement of implnt elec nstim of prph nrv lead, subs|Displacement of implnt elec nstim of prph nrv lead, subs +C4270483|T046|PT|T85.121S|ICD10CM|Displacement of implanted electronic neurostimulator of peripheral nerve electrode (lead), sequela|Displacement of implanted electronic neurostimulator of peripheral nerve electrode (lead), sequela +C4270483|T046|AB|T85.121S|ICD10CM|Displacement of implnt elec nstim of prph nrv lead, sequela|Displacement of implnt elec nstim of prph nrv lead, sequela +C4270484|T046|HT|T85.122|ICD10CM|Displacement of implanted electronic neurostimulator of spinal cord electrode (lead)|Displacement of implanted electronic neurostimulator of spinal cord electrode (lead) +C4270484|T046|AB|T85.122|ICD10CM|Displacement of implnt elec nstim of spinal cord lead|Displacement of implnt elec nstim of spinal cord lead +C4270485|T046|AB|T85.122A|ICD10CM|Displacement of implnt elec nstim of spinal cord lead, init|Displacement of implnt elec nstim of spinal cord lead, init +C4270486|T046|AB|T85.122D|ICD10CM|Displacement of implnt elec nstim of spinal cord lead, subs|Displacement of implnt elec nstim of spinal cord lead, subs +C4270487|T046|PT|T85.122S|ICD10CM|Displacement of implanted electronic neurostimulator of spinal cord electrode (lead), sequela|Displacement of implanted electronic neurostimulator of spinal cord electrode (lead), sequela +C4270487|T046|AB|T85.122S|ICD10CM|Displacmnt of implnt elec nstim of spinal cord lead, sequela|Displacmnt of implnt elec nstim of spinal cord lead, sequela +C4270489|T046|ET|T85.123|ICD10CM|Displacement of implanted electronic neurostimulator generator, brain, peripheral, gastric, spinal|Displacement of implanted electronic neurostimulator generator, brain, peripheral, gastric, spinal +C4270488|T046|HT|T85.123|ICD10CM|Displacement of implanted electronic neurostimulator, generator|Displacement of implanted electronic neurostimulator, generator +C4270490|T046|ET|T85.123|ICD10CM|Displacement of implanted electronic sacral neurostimulator, pulse generator or receiver|Displacement of implanted electronic sacral neurostimulator, pulse generator or receiver +C4270488|T046|AB|T85.123|ICD10CM|Displacement of implnt elec nstim, generator|Displacement of implnt elec nstim, generator +C4270491|T046|PT|T85.123A|ICD10CM|Displacement of implanted electronic neurostimulator, generator, initial encounter|Displacement of implanted electronic neurostimulator, generator, initial encounter +C4270491|T046|AB|T85.123A|ICD10CM|Displacement of implnt elec nstim, generator, init|Displacement of implnt elec nstim, generator, init +C4270492|T046|PT|T85.123D|ICD10CM|Displacement of implanted electronic neurostimulator, generator, subsequent encounter|Displacement of implanted electronic neurostimulator, generator, subsequent encounter +C4270492|T046|AB|T85.123D|ICD10CM|Displacement of implnt elec nstim, generator, subs|Displacement of implnt elec nstim, generator, subs +C4270493|T046|PT|T85.123S|ICD10CM|Displacement of implanted electronic neurostimulator, generator, sequela|Displacement of implanted electronic neurostimulator, generator, sequela +C4270493|T046|AB|T85.123S|ICD10CM|Displacement of implnt elec nstim, generator, sequela|Displacement of implnt elec nstim, generator, sequela +C2890966|T037|HT|T85.128|ICD10CM|Displacement of other implanted electronic stimulator of nervous system|Displacement of other implanted electronic stimulator of nervous system +C2890966|T037|AB|T85.128|ICD10CM|Displacmnt of implanted electronic stimulator of nervous sys|Displacmnt of implanted electronic stimulator of nervous sys +C2890980|T037|PT|T85.128A|ICD10CM|Displacement of other implanted electronic stimulator of nervous system, initial encounter|Displacement of other implanted electronic stimulator of nervous system, initial encounter +C2890980|T037|AB|T85.128A|ICD10CM|Displacmnt of implnt electrnc stimultr of nervous sys, init|Displacmnt of implnt electrnc stimultr of nervous sys, init +C2890981|T037|PT|T85.128D|ICD10CM|Displacement of other implanted electronic stimulator of nervous system, subsequent encounter|Displacement of other implanted electronic stimulator of nervous system, subsequent encounter +C2890981|T037|AB|T85.128D|ICD10CM|Displacmnt of implnt electrnc stimultr of nervous sys, subs|Displacmnt of implnt electrnc stimultr of nervous sys, subs +C2890982|T037|PT|T85.128S|ICD10CM|Displacement of other implanted electronic stimulator of nervous system, sequela|Displacement of other implanted electronic stimulator of nervous system, sequela +C2890982|T037|AB|T85.128S|ICD10CM|Displacmnt of implnt electrnc stimultr of nrv sys, sequela|Displacmnt of implnt electrnc stimultr of nrv sys, sequela +C2890983|T037|ET|T85.19|ICD10CM|Leakage of implanted electronic stimulator of nervous system|Leakage of implanted electronic stimulator of nervous system +C2890987|T037|AB|T85.19|ICD10CM|Mech compl of implanted electronic stimulator of nervous sys|Mech compl of implanted electronic stimulator of nervous sys +C2890984|T037|ET|T85.19|ICD10CM|Obstruction (mechanical) of implanted electronic stimulator of nervous system|Obstruction (mechanical) of implanted electronic stimulator of nervous system +C2890987|T037|HT|T85.19|ICD10CM|Other mechanical complication of implanted electronic stimulator of nervous system|Other mechanical complication of implanted electronic stimulator of nervous system +C2890985|T037|ET|T85.19|ICD10CM|Perforation of implanted electronic stimulator of nervous system|Perforation of implanted electronic stimulator of nervous system +C2890986|T037|ET|T85.19|ICD10CM|Protrusion of implanted electronic stimulator of nervous system|Protrusion of implanted electronic stimulator of nervous system +C4270494|T046|AB|T85.190|ICD10CM|Mech compl of implnt elec nstim of brain electrode (lead)|Mech compl of implnt elec nstim of brain electrode (lead) +C4270494|T046|HT|T85.190|ICD10CM|Other mechanical complication of implanted electronic neurostimulator of brain electrode (lead)|Other mechanical complication of implanted electronic neurostimulator of brain electrode (lead) +C4270495|T046|AB|T85.190A|ICD10CM|Mech compl of implnt elec nstim of brain lead, init|Mech compl of implnt elec nstim of brain lead, init +C4270496|T046|AB|T85.190D|ICD10CM|Mech compl of implnt elec nstim of brain lead, subs|Mech compl of implnt elec nstim of brain lead, subs +C4270497|T046|AB|T85.190S|ICD10CM|Mech compl of implnt elec nstim of brain lead, sequela|Mech compl of implnt elec nstim of brain lead, sequela +C4270498|T046|AB|T85.191|ICD10CM|Mech compl of implnt elec nstim of peripheral nerve lead|Mech compl of implnt elec nstim of peripheral nerve lead +C4270499|T046|ET|T85.191|ICD10CM|Other mechanical complication of electrode (lead) for cranial nerve neurostimulators|Other mechanical complication of electrode (lead) for cranial nerve neurostimulators +C4270500|T046|ET|T85.191|ICD10CM|Other mechanical complication of electrode (lead) for gastric neurostimulator|Other mechanical complication of electrode (lead) for gastric neurostimulator +C4270501|T046|ET|T85.191|ICD10CM|Other mechanical complication of electrode (lead) for sacral nerve neurostimulator|Other mechanical complication of electrode (lead) for sacral nerve neurostimulator +C4270502|T046|ET|T85.191|ICD10CM|Other mechanical complication of electrode (lead) for vagal nerve neurostimulators|Other mechanical complication of electrode (lead) for vagal nerve neurostimulators +C4270503|T046|AB|T85.191A|ICD10CM|Mech compl of implnt elec nstim of prph nrv lead, init|Mech compl of implnt elec nstim of prph nrv lead, init +C4270504|T046|AB|T85.191D|ICD10CM|Mech compl of implnt elec nstim of prph nrv lead, subs|Mech compl of implnt elec nstim of prph nrv lead, subs +C4270505|T046|AB|T85.191S|ICD10CM|Mech compl of implnt elec nstim of prph nrv lead, sequela|Mech compl of implnt elec nstim of prph nrv lead, sequela +C4270506|T046|AB|T85.192|ICD10CM|Mech compl of implnt elec nstim of spinal cord lead|Mech compl of implnt elec nstim of spinal cord lead +C4270507|T046|AB|T85.192A|ICD10CM|Mech compl of implnt elec nstim of spinal cord lead, init|Mech compl of implnt elec nstim of spinal cord lead, init +C4270508|T046|AB|T85.192D|ICD10CM|Mech compl of implnt elec nstim of spinal cord lead, subs|Mech compl of implnt elec nstim of spinal cord lead, subs +C4270509|T046|AB|T85.192S|ICD10CM|Mech compl of implnt elec nstim of spinal cord lead, sequela|Mech compl of implnt elec nstim of spinal cord lead, sequela +C4270510|T046|AB|T85.193|ICD10CM|Mech compl of implnt elec nstim, generator|Mech compl of implnt elec nstim, generator +C4270510|T046|HT|T85.193|ICD10CM|Other mechanical complication of implanted electronic neurostimulator, generator|Other mechanical complication of implanted electronic neurostimulator, generator +C4270513|T046|AB|T85.193A|ICD10CM|Mech compl of implnt elec nstim, generator, init|Mech compl of implnt elec nstim, generator, init +C4270513|T046|PT|T85.193A|ICD10CM|Other mechanical complication of implanted electronic neurostimulator, generator, initial encounter|Other mechanical complication of implanted electronic neurostimulator, generator, initial encounter +C4270514|T046|AB|T85.193D|ICD10CM|Mech compl of implnt elec nstim, generator, subs|Mech compl of implnt elec nstim, generator, subs +C4270515|T046|AB|T85.193S|ICD10CM|Mech compl of implnt elec nstim, generator, sequela|Mech compl of implnt elec nstim, generator, sequela +C4270515|T046|PT|T85.193S|ICD10CM|Other mechanical complication of implanted electronic neurostimulator, generator, sequela|Other mechanical complication of implanted electronic neurostimulator, generator, sequela +C2890987|T037|AB|T85.199|ICD10CM|Mech compl of implanted electronic stimulator of nervous sys|Mech compl of implanted electronic stimulator of nervous sys +C2890987|T037|HT|T85.199|ICD10CM|Other mechanical complication of other implanted electronic stimulator of nervous system|Other mechanical complication of other implanted electronic stimulator of nervous system +C2891001|T037|AB|T85.199A|ICD10CM|Mech compl of implnt electrnc stimultr of nervous sys, init|Mech compl of implnt electrnc stimultr of nervous sys, init +C2891002|T037|AB|T85.199D|ICD10CM|Mech compl of implnt electrnc stimultr of nervous sys, subs|Mech compl of implnt electrnc stimultr of nervous sys, subs +C2891003|T037|AB|T85.199S|ICD10CM|Mech compl of implnt electrnc stimultr of nrv sys, sequela|Mech compl of implnt electrnc stimultr of nrv sys, sequela +C2891003|T037|PT|T85.199S|ICD10CM|Other mechanical complication of other implanted electronic stimulator of nervous system, sequela|Other mechanical complication of other implanted electronic stimulator of nervous system, sequela +C0452108|T046|PT|T85.2|ICD10|Mechanical complication of intraocular lens|Mechanical complication of intraocular lens +C0452108|T046|HT|T85.2|ICD10CM|Mechanical complication of intraocular lens|Mechanical complication of intraocular lens +C0452108|T046|AB|T85.2|ICD10CM|Mechanical complication of intraocular lens|Mechanical complication of intraocular lens +C3840046|T046|AB|T85.21|ICD10CM|Breakdown (mechanical) of intraocular lens|Breakdown (mechanical) of intraocular lens +C3840046|T046|HT|T85.21|ICD10CM|Breakdown (mechanical) of intraocular lens|Breakdown (mechanical) of intraocular lens +C2891005|T037|AB|T85.21XA|ICD10CM|Breakdown (mechanical) of intraocular lens, init encntr|Breakdown (mechanical) of intraocular lens, init encntr +C2891005|T037|PT|T85.21XA|ICD10CM|Breakdown (mechanical) of intraocular lens, initial encounter|Breakdown (mechanical) of intraocular lens, initial encounter +C2891006|T037|AB|T85.21XD|ICD10CM|Breakdown (mechanical) of intraocular lens, subs encntr|Breakdown (mechanical) of intraocular lens, subs encntr +C2891006|T037|PT|T85.21XD|ICD10CM|Breakdown (mechanical) of intraocular lens, subsequent encounter|Breakdown (mechanical) of intraocular lens, subsequent encounter +C2891007|T037|AB|T85.21XS|ICD10CM|Breakdown (mechanical) of intraocular lens, sequela|Breakdown (mechanical) of intraocular lens, sequela +C2891007|T037|PT|T85.21XS|ICD10CM|Breakdown (mechanical) of intraocular lens, sequela|Breakdown (mechanical) of intraocular lens, sequela +C2891009|T046|HT|T85.22|ICD10CM|Displacement of intraocular lens|Displacement of intraocular lens +C2891009|T046|AB|T85.22|ICD10CM|Displacement of intraocular lens|Displacement of intraocular lens +C2891008|T037|ET|T85.22|ICD10CM|Malposition of intraocular lens|Malposition of intraocular lens +C2891010|T037|AB|T85.22XA|ICD10CM|Displacement of intraocular lens, initial encounter|Displacement of intraocular lens, initial encounter +C2891010|T037|PT|T85.22XA|ICD10CM|Displacement of intraocular lens, initial encounter|Displacement of intraocular lens, initial encounter +C2891011|T037|AB|T85.22XD|ICD10CM|Displacement of intraocular lens, subsequent encounter|Displacement of intraocular lens, subsequent encounter +C2891011|T037|PT|T85.22XD|ICD10CM|Displacement of intraocular lens, subsequent encounter|Displacement of intraocular lens, subsequent encounter +C2891012|T037|AB|T85.22XS|ICD10CM|Displacement of intraocular lens, sequela|Displacement of intraocular lens, sequela +C2891012|T037|PT|T85.22XS|ICD10CM|Displacement of intraocular lens, sequela|Displacement of intraocular lens, sequela +C2891013|T037|ET|T85.29|ICD10CM|Obstruction (mechanical) of intraocular lens|Obstruction (mechanical) of intraocular lens +C2891016|T037|AB|T85.29|ICD10CM|Other mechanical complication of intraocular lens|Other mechanical complication of intraocular lens +C2891016|T037|HT|T85.29|ICD10CM|Other mechanical complication of intraocular lens|Other mechanical complication of intraocular lens +C2891014|T046|ET|T85.29|ICD10CM|Perforation of intraocular lens|Perforation of intraocular lens +C2891015|T046|ET|T85.29|ICD10CM|Protrusion of intraocular lens|Protrusion of intraocular lens +C2891017|T037|AB|T85.29XA|ICD10CM|Mech compl of intraocular lens, initial encounter|Mech compl of intraocular lens, initial encounter +C2891017|T037|PT|T85.29XA|ICD10CM|Other mechanical complication of intraocular lens, initial encounter|Other mechanical complication of intraocular lens, initial encounter +C2891018|T037|AB|T85.29XD|ICD10CM|Mech compl of intraocular lens, subsequent encounter|Mech compl of intraocular lens, subsequent encounter +C2891018|T037|PT|T85.29XD|ICD10CM|Other mechanical complication of intraocular lens, subsequent encounter|Other mechanical complication of intraocular lens, subsequent encounter +C2891019|T037|AB|T85.29XS|ICD10CM|Other mechanical complication of intraocular lens, sequela|Other mechanical complication of intraocular lens, sequela +C2891019|T037|PT|T85.29XS|ICD10CM|Other mechanical complication of intraocular lens, sequela|Other mechanical complication of intraocular lens, sequela +C0478497|T046|AB|T85.3|ICD10CM|Mechanical complication of ocular prosth dev/grft|Mechanical complication of ocular prosth dev/grft +C0478497|T046|HT|T85.3|ICD10CM|Mechanical complication of other ocular prosthetic devices, implants and grafts|Mechanical complication of other ocular prosthetic devices, implants and grafts +C0478497|T046|PT|T85.3|ICD10|Mechanical complication of other ocular prosthetic devices, implants and grafts|Mechanical complication of other ocular prosthetic devices, implants and grafts +C2891020|T037|AB|T85.31|ICD10CM|Breakdown (mechanical) of ocular prosth dev/grft|Breakdown (mechanical) of ocular prosth dev/grft +C2891020|T037|HT|T85.31|ICD10CM|Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts|Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts +C2891021|T037|AB|T85.310|ICD10CM|Breakdown (mechanical) of prosthetic orbit of right eye|Breakdown (mechanical) of prosthetic orbit of right eye +C2891021|T037|HT|T85.310|ICD10CM|Breakdown (mechanical) of prosthetic orbit of right eye|Breakdown (mechanical) of prosthetic orbit of right eye +C2891022|T037|PT|T85.310A|ICD10CM|Breakdown (mechanical) of prosthetic orbit of right eye, initial encounter|Breakdown (mechanical) of prosthetic orbit of right eye, initial encounter +C2891022|T037|AB|T85.310A|ICD10CM|Breakdown of prosthetic orbit of right eye, init|Breakdown of prosthetic orbit of right eye, init +C2891023|T037|PT|T85.310D|ICD10CM|Breakdown (mechanical) of prosthetic orbit of right eye, subsequent encounter|Breakdown (mechanical) of prosthetic orbit of right eye, subsequent encounter +C2891023|T037|AB|T85.310D|ICD10CM|Breakdown of prosthetic orbit of right eye, subs|Breakdown of prosthetic orbit of right eye, subs +C2891024|T037|PT|T85.310S|ICD10CM|Breakdown (mechanical) of prosthetic orbit of right eye, sequela|Breakdown (mechanical) of prosthetic orbit of right eye, sequela +C2891024|T037|AB|T85.310S|ICD10CM|Breakdown of prosthetic orbit of right eye, sequela|Breakdown of prosthetic orbit of right eye, sequela +C2891025|T037|AB|T85.311|ICD10CM|Breakdown (mechanical) of prosthetic orbit of left eye|Breakdown (mechanical) of prosthetic orbit of left eye +C2891025|T037|HT|T85.311|ICD10CM|Breakdown (mechanical) of prosthetic orbit of left eye|Breakdown (mechanical) of prosthetic orbit of left eye +C2891026|T037|AB|T85.311A|ICD10CM|Breakdown (mechanical) of prosthetic orbit of left eye, init|Breakdown (mechanical) of prosthetic orbit of left eye, init +C2891026|T037|PT|T85.311A|ICD10CM|Breakdown (mechanical) of prosthetic orbit of left eye, initial encounter|Breakdown (mechanical) of prosthetic orbit of left eye, initial encounter +C2891027|T037|AB|T85.311D|ICD10CM|Breakdown (mechanical) of prosthetic orbit of left eye, subs|Breakdown (mechanical) of prosthetic orbit of left eye, subs +C2891027|T037|PT|T85.311D|ICD10CM|Breakdown (mechanical) of prosthetic orbit of left eye, subsequent encounter|Breakdown (mechanical) of prosthetic orbit of left eye, subsequent encounter +C2891028|T037|PT|T85.311S|ICD10CM|Breakdown (mechanical) of prosthetic orbit of left eye, sequela|Breakdown (mechanical) of prosthetic orbit of left eye, sequela +C2891028|T037|AB|T85.311S|ICD10CM|Breakdown of prosthetic orbit of left eye, sequela|Breakdown of prosthetic orbit of left eye, sequela +C2891020|T037|AB|T85.318|ICD10CM|Breakdown (mechanical) of ocular prosth dev/grft|Breakdown (mechanical) of ocular prosth dev/grft +C2891020|T037|HT|T85.318|ICD10CM|Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts|Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts +C2891029|T037|AB|T85.318A|ICD10CM|Breakdown (mechanical) of ocular prosth dev/grft, init|Breakdown (mechanical) of ocular prosth dev/grft, init +C2891029|T037|PT|T85.318A|ICD10CM|Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts, initial encounter|Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts, initial encounter +C2891030|T037|AB|T85.318D|ICD10CM|Breakdown (mechanical) of ocular prosth dev/grft, subs|Breakdown (mechanical) of ocular prosth dev/grft, subs +C2891030|T037|PT|T85.318D|ICD10CM|Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts, subsequent encounter|Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts, subsequent encounter +C2891031|T037|AB|T85.318S|ICD10CM|Breakdown (mechanical) of ocular prosth dev/grft, sequela|Breakdown (mechanical) of ocular prosth dev/grft, sequela +C2891031|T037|PT|T85.318S|ICD10CM|Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts, sequela|Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts, sequela +C2891033|T037|AB|T85.32|ICD10CM|Displacement of ocular prosth dev/grft|Displacement of ocular prosth dev/grft +C2891033|T037|HT|T85.32|ICD10CM|Displacement of other ocular prosthetic devices, implants and grafts|Displacement of other ocular prosthetic devices, implants and grafts +C2891032|T037|ET|T85.32|ICD10CM|Malposition of other ocular prosthetic devices, implants and grafts|Malposition of other ocular prosthetic devices, implants and grafts +C2891034|T037|AB|T85.320|ICD10CM|Displacement of prosthetic orbit of right eye|Displacement of prosthetic orbit of right eye +C2891034|T037|HT|T85.320|ICD10CM|Displacement of prosthetic orbit of right eye|Displacement of prosthetic orbit of right eye +C2891035|T037|AB|T85.320A|ICD10CM|Displacement of prosthetic orbit of right eye, init encntr|Displacement of prosthetic orbit of right eye, init encntr +C2891035|T037|PT|T85.320A|ICD10CM|Displacement of prosthetic orbit of right eye, initial encounter|Displacement of prosthetic orbit of right eye, initial encounter +C2891036|T037|AB|T85.320D|ICD10CM|Displacement of prosthetic orbit of right eye, subs encntr|Displacement of prosthetic orbit of right eye, subs encntr +C2891036|T037|PT|T85.320D|ICD10CM|Displacement of prosthetic orbit of right eye, subsequent encounter|Displacement of prosthetic orbit of right eye, subsequent encounter +C2891037|T037|AB|T85.320S|ICD10CM|Displacement of prosthetic orbit of right eye, sequela|Displacement of prosthetic orbit of right eye, sequela +C2891037|T037|PT|T85.320S|ICD10CM|Displacement of prosthetic orbit of right eye, sequela|Displacement of prosthetic orbit of right eye, sequela +C2891038|T037|AB|T85.321|ICD10CM|Displacement of prosthetic orbit of left eye|Displacement of prosthetic orbit of left eye +C2891038|T037|HT|T85.321|ICD10CM|Displacement of prosthetic orbit of left eye|Displacement of prosthetic orbit of left eye +C2891039|T037|AB|T85.321A|ICD10CM|Displacement of prosthetic orbit of left eye, init encntr|Displacement of prosthetic orbit of left eye, init encntr +C2891039|T037|PT|T85.321A|ICD10CM|Displacement of prosthetic orbit of left eye, initial encounter|Displacement of prosthetic orbit of left eye, initial encounter +C2891040|T037|AB|T85.321D|ICD10CM|Displacement of prosthetic orbit of left eye, subs encntr|Displacement of prosthetic orbit of left eye, subs encntr +C2891040|T037|PT|T85.321D|ICD10CM|Displacement of prosthetic orbit of left eye, subsequent encounter|Displacement of prosthetic orbit of left eye, subsequent encounter +C2891041|T037|AB|T85.321S|ICD10CM|Displacement of prosthetic orbit of left eye, sequela|Displacement of prosthetic orbit of left eye, sequela +C2891041|T037|PT|T85.321S|ICD10CM|Displacement of prosthetic orbit of left eye, sequela|Displacement of prosthetic orbit of left eye, sequela +C2891033|T037|AB|T85.328|ICD10CM|Displacement of ocular prosth dev/grft|Displacement of ocular prosth dev/grft +C2891033|T037|HT|T85.328|ICD10CM|Displacement of other ocular prosthetic devices, implants and grafts|Displacement of other ocular prosthetic devices, implants and grafts +C2891042|T037|AB|T85.328A|ICD10CM|Displacement of ocular prosth dev/grft, init|Displacement of ocular prosth dev/grft, init +C2891042|T037|PT|T85.328A|ICD10CM|Displacement of other ocular prosthetic devices, implants and grafts, initial encounter|Displacement of other ocular prosthetic devices, implants and grafts, initial encounter +C2891043|T037|AB|T85.328D|ICD10CM|Displacement of ocular prosth dev/grft, subs|Displacement of ocular prosth dev/grft, subs +C2891043|T037|PT|T85.328D|ICD10CM|Displacement of other ocular prosthetic devices, implants and grafts, subsequent encounter|Displacement of other ocular prosthetic devices, implants and grafts, subsequent encounter +C2891044|T037|AB|T85.328S|ICD10CM|Displacement of ocular prosth dev/grft, sequela|Displacement of ocular prosth dev/grft, sequela +C2891044|T037|PT|T85.328S|ICD10CM|Displacement of other ocular prosthetic devices, implants and grafts, sequela|Displacement of other ocular prosthetic devices, implants and grafts, sequela +C2891048|T037|AB|T85.39|ICD10CM|Mech compl of ocular prosthetic devices, implants and grafts|Mech compl of ocular prosthetic devices, implants and grafts +C2891045|T046|ET|T85.39|ICD10CM|Obstruction (mechanical) of other ocular prosthetic devices, implants and grafts|Obstruction (mechanical) of other ocular prosthetic devices, implants and grafts +C2891048|T037|HT|T85.39|ICD10CM|Other mechanical complication of other ocular prosthetic devices, implants and grafts|Other mechanical complication of other ocular prosthetic devices, implants and grafts +C2891046|T037|ET|T85.39|ICD10CM|Perforation of other ocular prosthetic devices, implants and grafts|Perforation of other ocular prosthetic devices, implants and grafts +C2891047|T037|ET|T85.39|ICD10CM|Protrusion of other ocular prosthetic devices, implants and grafts|Protrusion of other ocular prosthetic devices, implants and grafts +C2891049|T037|AB|T85.390|ICD10CM|Mech compl of prosthetic orbit of right eye|Mech compl of prosthetic orbit of right eye +C2891049|T037|HT|T85.390|ICD10CM|Other mechanical complication of prosthetic orbit of right eye|Other mechanical complication of prosthetic orbit of right eye +C2891050|T037|AB|T85.390A|ICD10CM|Mech compl of prosthetic orbit of right eye, init encntr|Mech compl of prosthetic orbit of right eye, init encntr +C2891050|T037|PT|T85.390A|ICD10CM|Other mechanical complication of prosthetic orbit of right eye, initial encounter|Other mechanical complication of prosthetic orbit of right eye, initial encounter +C2891051|T037|AB|T85.390D|ICD10CM|Mech compl of prosthetic orbit of right eye, subs encntr|Mech compl of prosthetic orbit of right eye, subs encntr +C2891051|T037|PT|T85.390D|ICD10CM|Other mechanical complication of prosthetic orbit of right eye, subsequent encounter|Other mechanical complication of prosthetic orbit of right eye, subsequent encounter +C2891052|T037|AB|T85.390S|ICD10CM|Mech compl of prosthetic orbit of right eye, sequela|Mech compl of prosthetic orbit of right eye, sequela +C2891052|T037|PT|T85.390S|ICD10CM|Other mechanical complication of prosthetic orbit of right eye, sequela|Other mechanical complication of prosthetic orbit of right eye, sequela +C2891053|T037|AB|T85.391|ICD10CM|Mech compl of prosthetic orbit of left eye|Mech compl of prosthetic orbit of left eye +C2891053|T037|HT|T85.391|ICD10CM|Other mechanical complication of prosthetic orbit of left eye|Other mechanical complication of prosthetic orbit of left eye +C2891054|T037|AB|T85.391A|ICD10CM|Mech compl of prosthetic orbit of left eye, init encntr|Mech compl of prosthetic orbit of left eye, init encntr +C2891054|T037|PT|T85.391A|ICD10CM|Other mechanical complication of prosthetic orbit of left eye, initial encounter|Other mechanical complication of prosthetic orbit of left eye, initial encounter +C2891055|T037|AB|T85.391D|ICD10CM|Mech compl of prosthetic orbit of left eye, subs encntr|Mech compl of prosthetic orbit of left eye, subs encntr +C2891055|T037|PT|T85.391D|ICD10CM|Other mechanical complication of prosthetic orbit of left eye, subsequent encounter|Other mechanical complication of prosthetic orbit of left eye, subsequent encounter +C2891056|T037|AB|T85.391S|ICD10CM|Mech compl of prosthetic orbit of left eye, sequela|Mech compl of prosthetic orbit of left eye, sequela +C2891056|T037|PT|T85.391S|ICD10CM|Other mechanical complication of prosthetic orbit of left eye, sequela|Other mechanical complication of prosthetic orbit of left eye, sequela +C2891048|T037|AB|T85.398|ICD10CM|Mech compl of ocular prosthetic devices, implants and grafts|Mech compl of ocular prosthetic devices, implants and grafts +C2891048|T037|HT|T85.398|ICD10CM|Other mechanical complication of other ocular prosthetic devices, implants and grafts|Other mechanical complication of other ocular prosthetic devices, implants and grafts +C2891057|T037|AB|T85.398A|ICD10CM|Mech compl of ocular prosth dev/grft, init|Mech compl of ocular prosth dev/grft, init +C2891058|T037|AB|T85.398D|ICD10CM|Mech compl of ocular prosth dev/grft, subs|Mech compl of ocular prosth dev/grft, subs +C2891059|T037|AB|T85.398S|ICD10CM|Mech compl of ocular prosth dev/grft, sequela|Mech compl of ocular prosth dev/grft, sequela +C2891059|T037|PT|T85.398S|ICD10CM|Other mechanical complication of other ocular prosthetic devices, implants and grafts, sequela|Other mechanical complication of other ocular prosthetic devices, implants and grafts, sequela +C0496153|T046|PT|T85.4|ICD10|Mechanical complication of breast prosthesis and implant|Mechanical complication of breast prosthesis and implant +C0496153|T046|HT|T85.4|ICD10CM|Mechanical complication of breast prosthesis and implant|Mechanical complication of breast prosthesis and implant +C0496153|T046|AB|T85.4|ICD10CM|Mechanical complication of breast prosthesis and implant|Mechanical complication of breast prosthesis and implant +C2891060|T037|AB|T85.41|ICD10CM|Breakdown (mechanical) of breast prosthesis and implant|Breakdown (mechanical) of breast prosthesis and implant +C2891060|T037|HT|T85.41|ICD10CM|Breakdown (mechanical) of breast prosthesis and implant|Breakdown (mechanical) of breast prosthesis and implant +C2891061|T037|PT|T85.41XA|ICD10CM|Breakdown (mechanical) of breast prosthesis and implant, initial encounter|Breakdown (mechanical) of breast prosthesis and implant, initial encounter +C2891061|T037|AB|T85.41XA|ICD10CM|Breakdown of breast prosthesis and implant, init|Breakdown of breast prosthesis and implant, init +C2891062|T037|PT|T85.41XD|ICD10CM|Breakdown (mechanical) of breast prosthesis and implant, subsequent encounter|Breakdown (mechanical) of breast prosthesis and implant, subsequent encounter +C2891062|T037|AB|T85.41XD|ICD10CM|Breakdown of breast prosthesis and implant, subs|Breakdown of breast prosthesis and implant, subs +C2891063|T037|PT|T85.41XS|ICD10CM|Breakdown (mechanical) of breast prosthesis and implant, sequela|Breakdown (mechanical) of breast prosthesis and implant, sequela +C2891063|T037|AB|T85.41XS|ICD10CM|Breakdown of breast prosthesis and implant, sequela|Breakdown of breast prosthesis and implant, sequela +C2891065|T037|AB|T85.42|ICD10CM|Displacement of breast prosthesis and implant|Displacement of breast prosthesis and implant +C2891065|T037|HT|T85.42|ICD10CM|Displacement of breast prosthesis and implant|Displacement of breast prosthesis and implant +C2891064|T037|ET|T85.42|ICD10CM|Malposition of breast prosthesis and implant|Malposition of breast prosthesis and implant +C2891066|T037|AB|T85.42XA|ICD10CM|Displacement of breast prosthesis and implant, init encntr|Displacement of breast prosthesis and implant, init encntr +C2891066|T037|PT|T85.42XA|ICD10CM|Displacement of breast prosthesis and implant, initial encounter|Displacement of breast prosthesis and implant, initial encounter +C2891067|T037|AB|T85.42XD|ICD10CM|Displacement of breast prosthesis and implant, subs encntr|Displacement of breast prosthesis and implant, subs encntr +C2891067|T037|PT|T85.42XD|ICD10CM|Displacement of breast prosthesis and implant, subsequent encounter|Displacement of breast prosthesis and implant, subsequent encounter +C2891068|T037|PT|T85.42XS|ICD10CM|Displacement of breast prosthesis and implant, sequela|Displacement of breast prosthesis and implant, sequela +C2891068|T037|AB|T85.42XS|ICD10CM|Displacement of breast prosthesis and implant, sequela|Displacement of breast prosthesis and implant, sequela +C2891069|T037|AB|T85.43|ICD10CM|Leakage of breast prosthesis and implant|Leakage of breast prosthesis and implant +C2891069|T037|HT|T85.43|ICD10CM|Leakage of breast prosthesis and implant|Leakage of breast prosthesis and implant +C2891070|T037|PT|T85.43XA|ICD10CM|Leakage of breast prosthesis and implant, initial encounter|Leakage of breast prosthesis and implant, initial encounter +C2891070|T037|AB|T85.43XA|ICD10CM|Leakage of breast prosthesis and implant, initial encounter|Leakage of breast prosthesis and implant, initial encounter +C2891071|T037|AB|T85.43XD|ICD10CM|Leakage of breast prosthesis and implant, subs encntr|Leakage of breast prosthesis and implant, subs encntr +C2891071|T037|PT|T85.43XD|ICD10CM|Leakage of breast prosthesis and implant, subsequent encounter|Leakage of breast prosthesis and implant, subsequent encounter +C2891072|T037|PT|T85.43XS|ICD10CM|Leakage of breast prosthesis and implant, sequela|Leakage of breast prosthesis and implant, sequela +C2891072|T037|AB|T85.43XS|ICD10CM|Leakage of breast prosthesis and implant, sequela|Leakage of breast prosthesis and implant, sequela +C2349571|T047|HT|T85.44|ICD10CM|Capsular contracture of breast implant|Capsular contracture of breast implant +C2349571|T047|AB|T85.44|ICD10CM|Capsular contracture of breast implant|Capsular contracture of breast implant +C2891073|T037|AB|T85.44XA|ICD10CM|Capsular contracture of breast implant, initial encounter|Capsular contracture of breast implant, initial encounter +C2891073|T037|PT|T85.44XA|ICD10CM|Capsular contracture of breast implant, initial encounter|Capsular contracture of breast implant, initial encounter +C2891074|T037|AB|T85.44XD|ICD10CM|Capsular contracture of breast implant, subsequent encounter|Capsular contracture of breast implant, subsequent encounter +C2891074|T037|PT|T85.44XD|ICD10CM|Capsular contracture of breast implant, subsequent encounter|Capsular contracture of breast implant, subsequent encounter +C2891075|T037|AB|T85.44XS|ICD10CM|Capsular contracture of breast implant, sequela|Capsular contracture of breast implant, sequela +C2891075|T037|PT|T85.44XS|ICD10CM|Capsular contracture of breast implant, sequela|Capsular contracture of breast implant, sequela +C2891079|T037|AB|T85.49|ICD10CM|Mech compl of breast prosthesis and implant|Mech compl of breast prosthesis and implant +C2891076|T037|ET|T85.49|ICD10CM|Obstruction (mechanical) of breast prosthesis and implant|Obstruction (mechanical) of breast prosthesis and implant +C2891079|T037|HT|T85.49|ICD10CM|Other mechanical complication of breast prosthesis and implant|Other mechanical complication of breast prosthesis and implant +C2891077|T037|ET|T85.49|ICD10CM|Perforation of breast prosthesis and implant|Perforation of breast prosthesis and implant +C2891078|T037|ET|T85.49|ICD10CM|Protrusion of breast prosthesis and implant|Protrusion of breast prosthesis and implant +C2891080|T037|AB|T85.49XA|ICD10CM|Mech compl of breast prosthesis and implant, init encntr|Mech compl of breast prosthesis and implant, init encntr +C2891080|T037|PT|T85.49XA|ICD10CM|Other mechanical complication of breast prosthesis and implant, initial encounter|Other mechanical complication of breast prosthesis and implant, initial encounter +C2891081|T037|AB|T85.49XD|ICD10CM|Mech compl of breast prosthesis and implant, subs encntr|Mech compl of breast prosthesis and implant, subs encntr +C2891081|T037|PT|T85.49XD|ICD10CM|Other mechanical complication of breast prosthesis and implant, subsequent encounter|Other mechanical complication of breast prosthesis and implant, subsequent encounter +C2891082|T037|AB|T85.49XS|ICD10CM|Mech compl of breast prosthesis and implant, sequela|Mech compl of breast prosthesis and implant, sequela +C2891082|T037|PT|T85.49XS|ICD10CM|Other mechanical complication of breast prosthesis and implant, sequela|Other mechanical complication of breast prosthesis and implant, sequela +C0496154|T046|AB|T85.5|ICD10CM|Mechanical complication of gastrointestinal prosth dev/grft|Mechanical complication of gastrointestinal prosth dev/grft +C0496154|T046|HT|T85.5|ICD10CM|Mechanical complication of gastrointestinal prosthetic devices, implants and grafts|Mechanical complication of gastrointestinal prosthetic devices, implants and grafts +C0496154|T046|PT|T85.5|ICD10|Mechanical complication of gastrointestinal prosthetic devices, implants and grafts|Mechanical complication of gastrointestinal prosthetic devices, implants and grafts +C2891083|T037|AB|T85.51|ICD10CM|Breakdown (mechanical) of gastrointestinal prosth dev/grft|Breakdown (mechanical) of gastrointestinal prosth dev/grft +C2891083|T037|HT|T85.51|ICD10CM|Breakdown (mechanical) of gastrointestinal prosthetic devices, implants and grafts|Breakdown (mechanical) of gastrointestinal prosthetic devices, implants and grafts +C2891084|T037|AB|T85.510|ICD10CM|Breakdown (mechanical) of bile duct prosthesis|Breakdown (mechanical) of bile duct prosthesis +C2891084|T037|HT|T85.510|ICD10CM|Breakdown (mechanical) of bile duct prosthesis|Breakdown (mechanical) of bile duct prosthesis +C2891085|T037|AB|T85.510A|ICD10CM|Breakdown (mechanical) of bile duct prosthesis, init encntr|Breakdown (mechanical) of bile duct prosthesis, init encntr +C2891085|T037|PT|T85.510A|ICD10CM|Breakdown (mechanical) of bile duct prosthesis, initial encounter|Breakdown (mechanical) of bile duct prosthesis, initial encounter +C2891086|T037|AB|T85.510D|ICD10CM|Breakdown (mechanical) of bile duct prosthesis, subs encntr|Breakdown (mechanical) of bile duct prosthesis, subs encntr +C2891086|T037|PT|T85.510D|ICD10CM|Breakdown (mechanical) of bile duct prosthesis, subsequent encounter|Breakdown (mechanical) of bile duct prosthesis, subsequent encounter +C2891087|T037|AB|T85.510S|ICD10CM|Breakdown (mechanical) of bile duct prosthesis, sequela|Breakdown (mechanical) of bile duct prosthesis, sequela +C2891087|T037|PT|T85.510S|ICD10CM|Breakdown (mechanical) of bile duct prosthesis, sequela|Breakdown (mechanical) of bile duct prosthesis, sequela +C2891088|T037|AB|T85.511|ICD10CM|Breakdown (mechanical) of esophageal anti-reflux device|Breakdown (mechanical) of esophageal anti-reflux device +C2891088|T037|HT|T85.511|ICD10CM|Breakdown (mechanical) of esophageal anti-reflux device|Breakdown (mechanical) of esophageal anti-reflux device +C2891089|T037|PT|T85.511A|ICD10CM|Breakdown (mechanical) of esophageal anti-reflux device, initial encounter|Breakdown (mechanical) of esophageal anti-reflux device, initial encounter +C2891089|T037|AB|T85.511A|ICD10CM|Breakdown of esophageal anti-reflux device, init|Breakdown of esophageal anti-reflux device, init +C2891090|T037|PT|T85.511D|ICD10CM|Breakdown (mechanical) of esophageal anti-reflux device, subsequent encounter|Breakdown (mechanical) of esophageal anti-reflux device, subsequent encounter +C2891090|T037|AB|T85.511D|ICD10CM|Breakdown of esophageal anti-reflux device, subs|Breakdown of esophageal anti-reflux device, subs +C2891091|T037|PT|T85.511S|ICD10CM|Breakdown (mechanical) of esophageal anti-reflux device, sequela|Breakdown (mechanical) of esophageal anti-reflux device, sequela +C2891091|T037|AB|T85.511S|ICD10CM|Breakdown of esophageal anti-reflux device, sequela|Breakdown of esophageal anti-reflux device, sequela +C2891083|T037|AB|T85.518|ICD10CM|Breakdown (mechanical) of gastrointestinal prosth dev/grft|Breakdown (mechanical) of gastrointestinal prosth dev/grft +C2891083|T037|HT|T85.518|ICD10CM|Breakdown (mechanical) of other gastrointestinal prosthetic devices, implants and grafts|Breakdown (mechanical) of other gastrointestinal prosthetic devices, implants and grafts +C2891093|T037|AB|T85.518A|ICD10CM|Breakdown (mechanical) of GI prosth dev/grft, init|Breakdown (mechanical) of GI prosth dev/grft, init +C2891094|T037|AB|T85.518D|ICD10CM|Breakdown (mechanical) of GI prosth dev/grft, subs|Breakdown (mechanical) of GI prosth dev/grft, subs +C2891095|T037|AB|T85.518S|ICD10CM|Breakdown (mechanical) of GI prosth dev/grft, sequela|Breakdown (mechanical) of GI prosth dev/grft, sequela +C2891095|T037|PT|T85.518S|ICD10CM|Breakdown (mechanical) of other gastrointestinal prosthetic devices, implants and grafts, sequela|Breakdown (mechanical) of other gastrointestinal prosthetic devices, implants and grafts, sequela +C2891097|T037|AB|T85.52|ICD10CM|Displacement of gastrointestinal prosth dev/grft|Displacement of gastrointestinal prosth dev/grft +C2891097|T037|HT|T85.52|ICD10CM|Displacement of gastrointestinal prosthetic devices, implants and grafts|Displacement of gastrointestinal prosthetic devices, implants and grafts +C2891096|T037|ET|T85.52|ICD10CM|Malposition of gastrointestinal prosthetic devices, implants and grafts|Malposition of gastrointestinal prosthetic devices, implants and grafts +C2891098|T037|AB|T85.520|ICD10CM|Displacement of bile duct prosthesis|Displacement of bile duct prosthesis +C2891098|T037|HT|T85.520|ICD10CM|Displacement of bile duct prosthesis|Displacement of bile duct prosthesis +C2891099|T037|AB|T85.520A|ICD10CM|Displacement of bile duct prosthesis, initial encounter|Displacement of bile duct prosthesis, initial encounter +C2891099|T037|PT|T85.520A|ICD10CM|Displacement of bile duct prosthesis, initial encounter|Displacement of bile duct prosthesis, initial encounter +C2891100|T037|AB|T85.520D|ICD10CM|Displacement of bile duct prosthesis, subsequent encounter|Displacement of bile duct prosthesis, subsequent encounter +C2891100|T037|PT|T85.520D|ICD10CM|Displacement of bile duct prosthesis, subsequent encounter|Displacement of bile duct prosthesis, subsequent encounter +C2891101|T037|AB|T85.520S|ICD10CM|Displacement of bile duct prosthesis, sequela|Displacement of bile duct prosthesis, sequela +C2891101|T037|PT|T85.520S|ICD10CM|Displacement of bile duct prosthesis, sequela|Displacement of bile duct prosthesis, sequela +C2891102|T037|AB|T85.521|ICD10CM|Displacement of esophageal anti-reflux device|Displacement of esophageal anti-reflux device +C2891102|T037|HT|T85.521|ICD10CM|Displacement of esophageal anti-reflux device|Displacement of esophageal anti-reflux device +C2891103|T037|AB|T85.521A|ICD10CM|Displacement of esophageal anti-reflux device, init encntr|Displacement of esophageal anti-reflux device, init encntr +C2891103|T037|PT|T85.521A|ICD10CM|Displacement of esophageal anti-reflux device, initial encounter|Displacement of esophageal anti-reflux device, initial encounter +C2891104|T037|AB|T85.521D|ICD10CM|Displacement of esophageal anti-reflux device, subs encntr|Displacement of esophageal anti-reflux device, subs encntr +C2891104|T037|PT|T85.521D|ICD10CM|Displacement of esophageal anti-reflux device, subsequent encounter|Displacement of esophageal anti-reflux device, subsequent encounter +C2891105|T037|AB|T85.521S|ICD10CM|Displacement of esophageal anti-reflux device, sequela|Displacement of esophageal anti-reflux device, sequela +C2891105|T037|PT|T85.521S|ICD10CM|Displacement of esophageal anti-reflux device, sequela|Displacement of esophageal anti-reflux device, sequela +C2891097|T037|AB|T85.528|ICD10CM|Displacement of gastrointestinal prosth dev/grft|Displacement of gastrointestinal prosth dev/grft +C2891097|T037|HT|T85.528|ICD10CM|Displacement of other gastrointestinal prosthetic devices, implants and grafts|Displacement of other gastrointestinal prosthetic devices, implants and grafts +C2891107|T037|AB|T85.528A|ICD10CM|Displacement of gastrointestinal prosth dev/grft, init|Displacement of gastrointestinal prosth dev/grft, init +C2891107|T037|PT|T85.528A|ICD10CM|Displacement of other gastrointestinal prosthetic devices, implants and grafts, initial encounter|Displacement of other gastrointestinal prosthetic devices, implants and grafts, initial encounter +C2891108|T037|AB|T85.528D|ICD10CM|Displacement of gastrointestinal prosth dev/grft, subs|Displacement of gastrointestinal prosth dev/grft, subs +C2891108|T037|PT|T85.528D|ICD10CM|Displacement of other gastrointestinal prosthetic devices, implants and grafts, subsequent encounter|Displacement of other gastrointestinal prosthetic devices, implants and grafts, subsequent encounter +C2891109|T037|AB|T85.528S|ICD10CM|Displacement of gastrointestinal prosth dev/grft, sequela|Displacement of gastrointestinal prosth dev/grft, sequela +C2891109|T037|PT|T85.528S|ICD10CM|Displacement of other gastrointestinal prosthetic devices, implants and grafts, sequela|Displacement of other gastrointestinal prosthetic devices, implants and grafts, sequela +C2891113|T037|AB|T85.59|ICD10CM|Mech compl of GI prosthetic devices, implants and|Mech compl of GI prosthetic devices, implants and +C2891110|T037|ET|T85.59|ICD10CM|Obstruction, mechanical of gastrointestinal prosthetic devices, implants and grafts|Obstruction, mechanical of gastrointestinal prosthetic devices, implants and grafts +C2891113|T037|HT|T85.59|ICD10CM|Other mechanical complication of gastrointestinal prosthetic devices, implants and|Other mechanical complication of gastrointestinal prosthetic devices, implants and +C2891111|T037|ET|T85.59|ICD10CM|Perforation of gastrointestinal prosthetic devices, implants and grafts|Perforation of gastrointestinal prosthetic devices, implants and grafts +C2891112|T037|ET|T85.59|ICD10CM|Protrusion of gastrointestinal prosthetic devices, implants and grafts|Protrusion of gastrointestinal prosthetic devices, implants and grafts +C2891114|T037|AB|T85.590|ICD10CM|Other mechanical complication of bile duct prosthesis|Other mechanical complication of bile duct prosthesis +C2891114|T037|HT|T85.590|ICD10CM|Other mechanical complication of bile duct prosthesis|Other mechanical complication of bile duct prosthesis +C2891115|T037|AB|T85.590A|ICD10CM|Mech compl of bile duct prosthesis, initial encounter|Mech compl of bile duct prosthesis, initial encounter +C2891115|T037|PT|T85.590A|ICD10CM|Other mechanical complication of bile duct prosthesis, initial encounter|Other mechanical complication of bile duct prosthesis, initial encounter +C2891116|T037|AB|T85.590D|ICD10CM|Mech compl of bile duct prosthesis, subsequent encounter|Mech compl of bile duct prosthesis, subsequent encounter +C2891116|T037|PT|T85.590D|ICD10CM|Other mechanical complication of bile duct prosthesis, subsequent encounter|Other mechanical complication of bile duct prosthesis, subsequent encounter +C2891117|T037|AB|T85.590S|ICD10CM|Mech compl of bile duct prosthesis, sequela|Mech compl of bile duct prosthesis, sequela +C2891117|T037|PT|T85.590S|ICD10CM|Other mechanical complication of bile duct prosthesis, sequela|Other mechanical complication of bile duct prosthesis, sequela +C2891118|T037|AB|T85.591|ICD10CM|Mech compl of esophageal anti-reflux device|Mech compl of esophageal anti-reflux device +C2891118|T037|HT|T85.591|ICD10CM|Other mechanical complication of esophageal anti-reflux device|Other mechanical complication of esophageal anti-reflux device +C2891119|T037|AB|T85.591A|ICD10CM|Mech compl of esophageal anti-reflux device, init encntr|Mech compl of esophageal anti-reflux device, init encntr +C2891119|T037|PT|T85.591A|ICD10CM|Other mechanical complication of esophageal anti-reflux device, initial encounter|Other mechanical complication of esophageal anti-reflux device, initial encounter +C2891120|T037|AB|T85.591D|ICD10CM|Mech compl of esophageal anti-reflux device, subs encntr|Mech compl of esophageal anti-reflux device, subs encntr +C2891120|T037|PT|T85.591D|ICD10CM|Other mechanical complication of esophageal anti-reflux device, subsequent encounter|Other mechanical complication of esophageal anti-reflux device, subsequent encounter +C2891121|T037|AB|T85.591S|ICD10CM|Mech compl of esophageal anti-reflux device, sequela|Mech compl of esophageal anti-reflux device, sequela +C2891121|T037|PT|T85.591S|ICD10CM|Other mechanical complication of esophageal anti-reflux device, sequela|Other mechanical complication of esophageal anti-reflux device, sequela +C2891122|T037|AB|T85.598|ICD10CM|Mech compl of gastrointestinal prosth dev/grft|Mech compl of gastrointestinal prosth dev/grft +C2891122|T037|HT|T85.598|ICD10CM|Other mechanical complication of other gastrointestinal prosthetic devices, implants and grafts|Other mechanical complication of other gastrointestinal prosthetic devices, implants and grafts +C2891123|T037|AB|T85.598A|ICD10CM|Mech compl of gastrointestinal prosth dev/grft, init|Mech compl of gastrointestinal prosth dev/grft, init +C2891124|T037|AB|T85.598D|ICD10CM|Mech compl of gastrointestinal prosth dev/grft, subs|Mech compl of gastrointestinal prosth dev/grft, subs +C2891125|T037|AB|T85.598S|ICD10CM|Mech compl of gastrointestinal prosth dev/grft, sequela|Mech compl of gastrointestinal prosth dev/grft, sequela +C2891126|T037|AB|T85.6|ICD10CM|Mechanical comp of internal and external prosth dev/grft|Mechanical comp of internal and external prosth dev/grft +C0478498|T046|PT|T85.6|ICD10|Mechanical complication of other specified internal prosthetic devices, implants and grafts|Mechanical complication of other specified internal prosthetic devices, implants and grafts +C2891127|T037|AB|T85.61|ICD10CM|Breakdown (mechanical) of internal prosth dev/grft|Breakdown (mechanical) of internal prosth dev/grft +C2891127|T037|HT|T85.61|ICD10CM|Breakdown (mechanical) of other specified internal prosthetic devices, implants and grafts|Breakdown (mechanical) of other specified internal prosthetic devices, implants and grafts +C4270516|T046|HT|T85.610|ICD10CM|Breakdown (mechanical) of cranial or spinal infusion catheter|Breakdown (mechanical) of cranial or spinal infusion catheter +C4270517|T046|ET|T85.610|ICD10CM|Breakdown (mechanical) of epidural infusion catheter|Breakdown (mechanical) of epidural infusion catheter +C4270518|T046|ET|T85.610|ICD10CM|Breakdown (mechanical) of intrathecal infusion catheter|Breakdown (mechanical) of intrathecal infusion catheter +C4270519|T046|ET|T85.610|ICD10CM|Breakdown (mechanical) of subarachnoid infusion catheter|Breakdown (mechanical) of subarachnoid infusion catheter +C4270520|T046|ET|T85.610|ICD10CM|Breakdown (mechanical) of subdural infusion catheter|Breakdown (mechanical) of subdural infusion catheter +C4270516|T046|AB|T85.610|ICD10CM|Breakdown of cranial or spinal infusion catheter|Breakdown of cranial or spinal infusion catheter +C4270521|T046|PT|T85.610A|ICD10CM|Breakdown (mechanical) of cranial or spinal infusion catheter, initial encounter|Breakdown (mechanical) of cranial or spinal infusion catheter, initial encounter +C4270521|T046|AB|T85.610A|ICD10CM|Breakdown of cranial or spinal infusion catheter, init|Breakdown of cranial or spinal infusion catheter, init +C4270522|T046|PT|T85.610D|ICD10CM|Breakdown (mechanical) of cranial or spinal infusion catheter, subsequent encounter|Breakdown (mechanical) of cranial or spinal infusion catheter, subsequent encounter +C4270522|T046|AB|T85.610D|ICD10CM|Breakdown of cranial or spinal infusion catheter, subs|Breakdown of cranial or spinal infusion catheter, subs +C4270523|T046|PT|T85.610S|ICD10CM|Breakdown (mechanical) of cranial or spinal infusion catheter, sequela|Breakdown (mechanical) of cranial or spinal infusion catheter, sequela +C4270523|T046|AB|T85.610S|ICD10CM|Breakdown of cranial or spinal infusion catheter, sequela|Breakdown of cranial or spinal infusion catheter, sequela +C2891132|T037|AB|T85.611|ICD10CM|Breakdown (mechanical) of intraperitoneal dialysis catheter|Breakdown (mechanical) of intraperitoneal dialysis catheter +C2891132|T037|HT|T85.611|ICD10CM|Breakdown (mechanical) of intraperitoneal dialysis catheter|Breakdown (mechanical) of intraperitoneal dialysis catheter +C2891133|T037|PT|T85.611A|ICD10CM|Breakdown (mechanical) of intraperitoneal dialysis catheter, initial encounter|Breakdown (mechanical) of intraperitoneal dialysis catheter, initial encounter +C2891133|T037|AB|T85.611A|ICD10CM|Breakdown of intraperitoneal dialysis catheter, init|Breakdown of intraperitoneal dialysis catheter, init +C2891134|T037|PT|T85.611D|ICD10CM|Breakdown (mechanical) of intraperitoneal dialysis catheter, subsequent encounter|Breakdown (mechanical) of intraperitoneal dialysis catheter, subsequent encounter +C2891134|T037|AB|T85.611D|ICD10CM|Breakdown of intraperitoneal dialysis catheter, subs|Breakdown of intraperitoneal dialysis catheter, subs +C2891135|T037|PT|T85.611S|ICD10CM|Breakdown (mechanical) of intraperitoneal dialysis catheter, sequela|Breakdown (mechanical) of intraperitoneal dialysis catheter, sequela +C2891135|T037|AB|T85.611S|ICD10CM|Breakdown of intraperitoneal dialysis catheter, sequela|Breakdown of intraperitoneal dialysis catheter, sequela +C2891136|T037|AB|T85.612|ICD10CM|Breakdown (mechanical) of permanent sutures|Breakdown (mechanical) of permanent sutures +C2891136|T037|HT|T85.612|ICD10CM|Breakdown (mechanical) of permanent sutures|Breakdown (mechanical) of permanent sutures +C2891137|T037|AB|T85.612A|ICD10CM|Breakdown (mechanical) of permanent sutures, init encntr|Breakdown (mechanical) of permanent sutures, init encntr +C2891137|T037|PT|T85.612A|ICD10CM|Breakdown (mechanical) of permanent sutures, initial encounter|Breakdown (mechanical) of permanent sutures, initial encounter +C2891138|T037|AB|T85.612D|ICD10CM|Breakdown (mechanical) of permanent sutures, subs encntr|Breakdown (mechanical) of permanent sutures, subs encntr +C2891138|T037|PT|T85.612D|ICD10CM|Breakdown (mechanical) of permanent sutures, subsequent encounter|Breakdown (mechanical) of permanent sutures, subsequent encounter +C2891139|T037|AB|T85.612S|ICD10CM|Breakdown (mechanical) of permanent sutures, sequela|Breakdown (mechanical) of permanent sutures, sequela +C2891139|T037|PT|T85.612S|ICD10CM|Breakdown (mechanical) of permanent sutures, sequela|Breakdown (mechanical) of permanent sutures, sequela +C2891144|T037|HT|T85.613|ICD10CM|Breakdown (mechanical) of artificial skin graft and decellularized allodermis|Breakdown (mechanical) of artificial skin graft and decellularized allodermis +C2891144|T037|AB|T85.613|ICD10CM|Breakdown of artificial skin grft /decellular alloderm|Breakdown of artificial skin grft /decellular alloderm +C2891140|T037|ET|T85.613|ICD10CM|Failure of artificial skin graft and decellularized allodermis|Failure of artificial skin graft and decellularized allodermis +C2891141|T037|ET|T85.613|ICD10CM|Non-adherence of artificial skin graft and decellularized allodermis|Non-adherence of artificial skin graft and decellularized allodermis +C2891142|T046|ET|T85.613|ICD10CM|Poor incorporation of artificial skin graft and decellularized allodermis|Poor incorporation of artificial skin graft and decellularized allodermis +C2891143|T037|ET|T85.613|ICD10CM|Shearing of artificial skin graft and decellularized allodermis|Shearing of artificial skin graft and decellularized allodermis +C2891145|T037|PT|T85.613A|ICD10CM|Breakdown (mechanical) of artificial skin graft and decellularized allodermis, initial encounter|Breakdown (mechanical) of artificial skin graft and decellularized allodermis, initial encounter +C2891145|T037|AB|T85.613A|ICD10CM|Breakdown of artificial skin grft /decellular alloderm, init|Breakdown of artificial skin grft /decellular alloderm, init +C2891146|T037|PT|T85.613D|ICD10CM|Breakdown (mechanical) of artificial skin graft and decellularized allodermis, subsequent encounter|Breakdown (mechanical) of artificial skin graft and decellularized allodermis, subsequent encounter +C2891146|T037|AB|T85.613D|ICD10CM|Breakdown of artificial skin grft /decellular alloderm, subs|Breakdown of artificial skin grft /decellular alloderm, subs +C2891147|T037|PT|T85.613S|ICD10CM|Breakdown (mechanical) of artificial skin graft and decellularized allodermis, sequela|Breakdown (mechanical) of artificial skin graft and decellularized allodermis, sequela +C2891147|T037|AB|T85.613S|ICD10CM|Brkdwn artificial skin grft /decellular alloderm, sequela|Brkdwn artificial skin grft /decellular alloderm, sequela +C2891148|T037|AB|T85.614|ICD10CM|Breakdown (mechanical) of insulin pump|Breakdown (mechanical) of insulin pump +C2891148|T037|HT|T85.614|ICD10CM|Breakdown (mechanical) of insulin pump|Breakdown (mechanical) of insulin pump +C2891149|T037|AB|T85.614A|ICD10CM|Breakdown (mechanical) of insulin pump, initial encounter|Breakdown (mechanical) of insulin pump, initial encounter +C2891149|T037|PT|T85.614A|ICD10CM|Breakdown (mechanical) of insulin pump, initial encounter|Breakdown (mechanical) of insulin pump, initial encounter +C2891150|T037|AB|T85.614D|ICD10CM|Breakdown (mechanical) of insulin pump, subsequent encounter|Breakdown (mechanical) of insulin pump, subsequent encounter +C2891150|T037|PT|T85.614D|ICD10CM|Breakdown (mechanical) of insulin pump, subsequent encounter|Breakdown (mechanical) of insulin pump, subsequent encounter +C2891151|T037|AB|T85.614S|ICD10CM|Breakdown (mechanical) of insulin pump, sequela|Breakdown (mechanical) of insulin pump, sequela +C2891151|T037|PT|T85.614S|ICD10CM|Breakdown (mechanical) of insulin pump, sequela|Breakdown (mechanical) of insulin pump, sequela +C4270525|T046|ET|T85.615|ICD10CM|Breakdown (mechanical) of intrathecal infusion pump|Breakdown (mechanical) of intrathecal infusion pump +C4270524|T046|HT|T85.615|ICD10CM|Breakdown (mechanical) of other nervous system device, implant or graft|Breakdown (mechanical) of other nervous system device, implant or graft +C4270524|T046|AB|T85.615|ICD10CM|Breakdown of other nervous sys device, implant or graft|Breakdown of other nervous sys device, implant or graft +C4270526|T046|PT|T85.615A|ICD10CM|Breakdown (mechanical) of other nervous system device, implant or graft, initial encounter|Breakdown (mechanical) of other nervous system device, implant or graft, initial encounter +C4270526|T046|AB|T85.615A|ICD10CM|Brkdwn other nervous sys device, implant or graft, init|Brkdwn other nervous sys device, implant or graft, init +C4270527|T046|PT|T85.615D|ICD10CM|Breakdown (mechanical) of other nervous system device, implant or graft, subsequent encounter|Breakdown (mechanical) of other nervous system device, implant or graft, subsequent encounter +C4270527|T046|AB|T85.615D|ICD10CM|Brkdwn other nervous sys device, implant or graft, subs|Brkdwn other nervous sys device, implant or graft, subs +C4270528|T046|PT|T85.615S|ICD10CM|Breakdown (mechanical) of other nervous system device, implant or graft, sequela|Breakdown (mechanical) of other nervous system device, implant or graft, sequela +C4270528|T046|AB|T85.615S|ICD10CM|Brkdwn other nervous sys device, implant or graft, sequela|Brkdwn other nervous sys device, implant or graft, sequela +C2891127|T037|AB|T85.618|ICD10CM|Breakdown (mechanical) of internal prosth dev/grft|Breakdown (mechanical) of internal prosth dev/grft +C2891127|T037|HT|T85.618|ICD10CM|Breakdown (mechanical) of other specified internal prosthetic devices, implants and grafts|Breakdown (mechanical) of other specified internal prosthetic devices, implants and grafts +C2891152|T037|AB|T85.618A|ICD10CM|Breakdown (mechanical) of internal prosth dev/grft, init|Breakdown (mechanical) of internal prosth dev/grft, init +C2891153|T037|AB|T85.618D|ICD10CM|Breakdown (mechanical) of internal prosth dev/grft, subs|Breakdown (mechanical) of internal prosth dev/grft, subs +C2891154|T037|AB|T85.618S|ICD10CM|Breakdown (mechanical) of internal prosth dev/grft, sequela|Breakdown (mechanical) of internal prosth dev/grft, sequela +C2891154|T037|PT|T85.618S|ICD10CM|Breakdown (mechanical) of other specified internal prosthetic devices, implants and grafts, sequela|Breakdown (mechanical) of other specified internal prosthetic devices, implants and grafts, sequela +C2891156|T037|AB|T85.62|ICD10CM|Displacement of internal prosth dev/grft|Displacement of internal prosth dev/grft +C2891156|T037|HT|T85.62|ICD10CM|Displacement of other specified internal prosthetic devices, implants and grafts|Displacement of other specified internal prosthetic devices, implants and grafts +C2891155|T037|ET|T85.62|ICD10CM|Malposition of other specified internal prosthetic devices, implants and grafts|Malposition of other specified internal prosthetic devices, implants and grafts +C4270529|T046|HT|T85.620|ICD10CM|Displacement of cranial or spinal infusion catheter|Displacement of cranial or spinal infusion catheter +C4270529|T046|AB|T85.620|ICD10CM|Displacement of cranial or spinal infusion catheter|Displacement of cranial or spinal infusion catheter +C4270530|T046|ET|T85.620|ICD10CM|Displacement of epidural infusion catheter|Displacement of epidural infusion catheter +C4270531|T046|ET|T85.620|ICD10CM|Displacement of intrathecal infusion catheter|Displacement of intrathecal infusion catheter +C4270532|T046|ET|T85.620|ICD10CM|Displacement of subarachnoid infusion catheter|Displacement of subarachnoid infusion catheter +C4270533|T046|ET|T85.620|ICD10CM|Displacement of subdural infusion catheter|Displacement of subdural infusion catheter +C4270534|T046|AB|T85.620A|ICD10CM|Displacement of cranial or spinal infusion catheter, init|Displacement of cranial or spinal infusion catheter, init +C4270534|T046|PT|T85.620A|ICD10CM|Displacement of cranial or spinal infusion catheter, initial encounter|Displacement of cranial or spinal infusion catheter, initial encounter +C4270535|T046|AB|T85.620D|ICD10CM|Displacement of cranial or spinal infusion catheter, subs|Displacement of cranial or spinal infusion catheter, subs +C4270535|T046|PT|T85.620D|ICD10CM|Displacement of cranial or spinal infusion catheter, subsequent encounter|Displacement of cranial or spinal infusion catheter, subsequent encounter +C4270536|T046|AB|T85.620S|ICD10CM|Displacement of cranial or spinal infusion catheter, sequela|Displacement of cranial or spinal infusion catheter, sequela +C4270536|T046|PT|T85.620S|ICD10CM|Displacement of cranial or spinal infusion catheter, sequela|Displacement of cranial or spinal infusion catheter, sequela +C1395374|T046|HT|T85.621|ICD10CM|Displacement of intraperitoneal dialysis catheter|Displacement of intraperitoneal dialysis catheter +C1395374|T046|AB|T85.621|ICD10CM|Displacement of intraperitoneal dialysis catheter|Displacement of intraperitoneal dialysis catheter +C2891161|T037|AB|T85.621A|ICD10CM|Displacement of intraperitoneal dialysis catheter, init|Displacement of intraperitoneal dialysis catheter, init +C2891161|T037|PT|T85.621A|ICD10CM|Displacement of intraperitoneal dialysis catheter, initial encounter|Displacement of intraperitoneal dialysis catheter, initial encounter +C2891162|T037|AB|T85.621D|ICD10CM|Displacement of intraperitoneal dialysis catheter, subs|Displacement of intraperitoneal dialysis catheter, subs +C2891162|T037|PT|T85.621D|ICD10CM|Displacement of intraperitoneal dialysis catheter, subsequent encounter|Displacement of intraperitoneal dialysis catheter, subsequent encounter +C2891163|T037|PT|T85.621S|ICD10CM|Displacement of intraperitoneal dialysis catheter, sequela|Displacement of intraperitoneal dialysis catheter, sequela +C2891163|T037|AB|T85.621S|ICD10CM|Displacement of intraperitoneal dialysis catheter, sequela|Displacement of intraperitoneal dialysis catheter, sequela +C2891164|T037|HT|T85.622|ICD10CM|Displacement of permanent sutures|Displacement of permanent sutures +C2891164|T037|AB|T85.622|ICD10CM|Displacement of permanent sutures|Displacement of permanent sutures +C2891165|T037|AB|T85.622A|ICD10CM|Displacement of permanent sutures, initial encounter|Displacement of permanent sutures, initial encounter +C2891165|T037|PT|T85.622A|ICD10CM|Displacement of permanent sutures, initial encounter|Displacement of permanent sutures, initial encounter +C2891166|T037|AB|T85.622D|ICD10CM|Displacement of permanent sutures, subsequent encounter|Displacement of permanent sutures, subsequent encounter +C2891166|T037|PT|T85.622D|ICD10CM|Displacement of permanent sutures, subsequent encounter|Displacement of permanent sutures, subsequent encounter +C2891167|T037|AB|T85.622S|ICD10CM|Displacement of permanent sutures, sequela|Displacement of permanent sutures, sequela +C2891167|T037|PT|T85.622S|ICD10CM|Displacement of permanent sutures, sequela|Displacement of permanent sutures, sequela +C2891168|T046|ET|T85.623|ICD10CM|Dislodgement of artificial skin graft and decellularized allodermis|Dislodgement of artificial skin graft and decellularized allodermis +C2891169|T037|HT|T85.623|ICD10CM|Displacement of artificial skin graft and decellularized allodermis|Displacement of artificial skin graft and decellularized allodermis +C2891169|T037|AB|T85.623|ICD10CM|Displacement of artificial skin grft /decellular alloderm|Displacement of artificial skin grft /decellular alloderm +C2891170|T037|PT|T85.623A|ICD10CM|Displacement of artificial skin graft and decellularized allodermis, initial encounter|Displacement of artificial skin graft and decellularized allodermis, initial encounter +C2891170|T037|AB|T85.623A|ICD10CM|Displacmnt of artif skin grft /decellular alloderm, init|Displacmnt of artif skin grft /decellular alloderm, init +C2891171|T037|PT|T85.623D|ICD10CM|Displacement of artificial skin graft and decellularized allodermis, subsequent encounter|Displacement of artificial skin graft and decellularized allodermis, subsequent encounter +C2891171|T037|AB|T85.623D|ICD10CM|Displacmnt of artif skin grft /decellular alloderm, subs|Displacmnt of artif skin grft /decellular alloderm, subs +C2891172|T037|PT|T85.623S|ICD10CM|Displacement of artificial skin graft and decellularized allodermis, sequela|Displacement of artificial skin graft and decellularized allodermis, sequela +C2891172|T037|AB|T85.623S|ICD10CM|Displacmnt of artif skin grft /decellular alloderm, sequela|Displacmnt of artif skin grft /decellular alloderm, sequela +C2891173|T037|HT|T85.624|ICD10CM|Displacement of insulin pump|Displacement of insulin pump +C2891173|T037|AB|T85.624|ICD10CM|Displacement of insulin pump|Displacement of insulin pump +C2891174|T037|PT|T85.624A|ICD10CM|Displacement of insulin pump, initial encounter|Displacement of insulin pump, initial encounter +C2891174|T037|AB|T85.624A|ICD10CM|Displacement of insulin pump, initial encounter|Displacement of insulin pump, initial encounter +C2891175|T037|PT|T85.624D|ICD10CM|Displacement of insulin pump, subsequent encounter|Displacement of insulin pump, subsequent encounter +C2891175|T037|AB|T85.624D|ICD10CM|Displacement of insulin pump, subsequent encounter|Displacement of insulin pump, subsequent encounter +C2891176|T037|PT|T85.624S|ICD10CM|Displacement of insulin pump, sequela|Displacement of insulin pump, sequela +C2891176|T037|AB|T85.624S|ICD10CM|Displacement of insulin pump, sequela|Displacement of insulin pump, sequela +C4270538|T046|ET|T85.625|ICD10CM|Displacement of intrathecal infusion pump|Displacement of intrathecal infusion pump +C4270537|T046|AB|T85.625|ICD10CM|Displacement of other nervous sys device, implant or graft|Displacement of other nervous sys device, implant or graft +C4270537|T046|HT|T85.625|ICD10CM|Displacement of other nervous system device, implant or graft|Displacement of other nervous system device, implant or graft +C4270539|T046|PT|T85.625A|ICD10CM|Displacement of other nervous system device, implant or graft, initial encounter|Displacement of other nervous system device, implant or graft, initial encounter +C4270539|T046|AB|T85.625A|ICD10CM|Displacmnt of nervous sys device, implant or graft, init|Displacmnt of nervous sys device, implant or graft, init +C4270540|T046|PT|T85.625D|ICD10CM|Displacement of other nervous system device, implant or graft, subsequent encounter|Displacement of other nervous system device, implant or graft, subsequent encounter +C4270540|T046|AB|T85.625D|ICD10CM|Displacmnt of nervous sys device, implant or graft, subs|Displacmnt of nervous sys device, implant or graft, subs +C4270541|T046|PT|T85.625S|ICD10CM|Displacement of other nervous system device, implant or graft, sequela|Displacement of other nervous system device, implant or graft, sequela +C4270541|T046|AB|T85.625S|ICD10CM|Displacmnt of nervous sys device, implant or graft, sequela|Displacmnt of nervous sys device, implant or graft, sequela +C2891156|T037|AB|T85.628|ICD10CM|Displacement of internal prosth dev/grft|Displacement of internal prosth dev/grft +C2891156|T037|HT|T85.628|ICD10CM|Displacement of other specified internal prosthetic devices, implants and grafts|Displacement of other specified internal prosthetic devices, implants and grafts +C2891177|T037|AB|T85.628A|ICD10CM|Displacement of internal prosth dev/grft, init|Displacement of internal prosth dev/grft, init +C2891177|T037|PT|T85.628A|ICD10CM|Displacement of other specified internal prosthetic devices, implants and grafts, initial encounter|Displacement of other specified internal prosthetic devices, implants and grafts, initial encounter +C2891178|T037|AB|T85.628D|ICD10CM|Displacement of internal prosth dev/grft, subs|Displacement of internal prosth dev/grft, subs +C2891179|T037|AB|T85.628S|ICD10CM|Displacement of internal prosth dev/grft, sequela|Displacement of internal prosth dev/grft, sequela +C2891179|T037|PT|T85.628S|ICD10CM|Displacement of other specified internal prosthetic devices, implants and grafts, sequela|Displacement of other specified internal prosthetic devices, implants and grafts, sequela +C2891180|T037|AB|T85.63|ICD10CM|Leakage of internal prosthetic devices, implants and grafts|Leakage of internal prosthetic devices, implants and grafts +C2891180|T037|HT|T85.63|ICD10CM|Leakage of other specified internal prosthetic devices, implants and grafts|Leakage of other specified internal prosthetic devices, implants and grafts +C4270542|T046|HT|T85.630|ICD10CM|Leakage of cranial or spinal infusion catheter|Leakage of cranial or spinal infusion catheter +C4270542|T046|AB|T85.630|ICD10CM|Leakage of cranial or spinal infusion catheter|Leakage of cranial or spinal infusion catheter +C4270543|T046|ET|T85.630|ICD10CM|Leakage of epidural infusion catheter|Leakage of epidural infusion catheter +C4270544|T046|ET|T85.630|ICD10CM|Leakage of intrathecal infusion catheter infusion catheter|Leakage of intrathecal infusion catheter infusion catheter +C4270546|T046|ET|T85.630|ICD10CM|Leakage of subarachnoid infusion catheter|Leakage of subarachnoid infusion catheter +C4270545|T046|ET|T85.630|ICD10CM|Leakage of subdural infusion catheter|Leakage of subdural infusion catheter +C4270547|T046|AB|T85.630A|ICD10CM|Leakage of cranial or spinal infusion catheter, init|Leakage of cranial or spinal infusion catheter, init +C4270547|T046|PT|T85.630A|ICD10CM|Leakage of cranial or spinal infusion catheter, initial encounter|Leakage of cranial or spinal infusion catheter, initial encounter +C4270548|T046|AB|T85.630D|ICD10CM|Leakage of cranial or spinal infusion catheter, subs|Leakage of cranial or spinal infusion catheter, subs +C4270548|T046|PT|T85.630D|ICD10CM|Leakage of cranial or spinal infusion catheter, subsequent encounter|Leakage of cranial or spinal infusion catheter, subsequent encounter +C4270549|T046|AB|T85.630S|ICD10CM|Leakage of cranial or spinal infusion catheter, sequela|Leakage of cranial or spinal infusion catheter, sequela +C4270549|T046|PT|T85.630S|ICD10CM|Leakage of cranial or spinal infusion catheter, sequela|Leakage of cranial or spinal infusion catheter, sequela +C1395377|T046|AB|T85.631|ICD10CM|Leakage of intraperitoneal dialysis catheter|Leakage of intraperitoneal dialysis catheter +C1395377|T046|HT|T85.631|ICD10CM|Leakage of intraperitoneal dialysis catheter|Leakage of intraperitoneal dialysis catheter +C2891185|T037|AB|T85.631A|ICD10CM|Leakage of intraperitoneal dialysis catheter, init encntr|Leakage of intraperitoneal dialysis catheter, init encntr +C2891185|T037|PT|T85.631A|ICD10CM|Leakage of intraperitoneal dialysis catheter, initial encounter|Leakage of intraperitoneal dialysis catheter, initial encounter +C2891186|T037|AB|T85.631D|ICD10CM|Leakage of intraperitoneal dialysis catheter, subs encntr|Leakage of intraperitoneal dialysis catheter, subs encntr +C2891186|T037|PT|T85.631D|ICD10CM|Leakage of intraperitoneal dialysis catheter, subsequent encounter|Leakage of intraperitoneal dialysis catheter, subsequent encounter +C2891187|T037|PT|T85.631S|ICD10CM|Leakage of intraperitoneal dialysis catheter, sequela|Leakage of intraperitoneal dialysis catheter, sequela +C2891187|T037|AB|T85.631S|ICD10CM|Leakage of intraperitoneal dialysis catheter, sequela|Leakage of intraperitoneal dialysis catheter, sequela +C2891188|T037|HT|T85.633|ICD10CM|Leakage of insulin pump|Leakage of insulin pump +C2891188|T037|AB|T85.633|ICD10CM|Leakage of insulin pump|Leakage of insulin pump +C2891189|T037|PT|T85.633A|ICD10CM|Leakage of insulin pump, initial encounter|Leakage of insulin pump, initial encounter +C2891189|T037|AB|T85.633A|ICD10CM|Leakage of insulin pump, initial encounter|Leakage of insulin pump, initial encounter +C2891190|T037|PT|T85.633D|ICD10CM|Leakage of insulin pump, subsequent encounter|Leakage of insulin pump, subsequent encounter +C2891190|T037|AB|T85.633D|ICD10CM|Leakage of insulin pump, subsequent encounter|Leakage of insulin pump, subsequent encounter +C2891191|T037|PT|T85.633S|ICD10CM|Leakage of insulin pump, sequela|Leakage of insulin pump, sequela +C2891191|T037|AB|T85.633S|ICD10CM|Leakage of insulin pump, sequela|Leakage of insulin pump, sequela +C4270551|T046|ET|T85.635|ICD10CM|Leakage of intrathecal infusion pump|Leakage of intrathecal infusion pump +C4270550|T046|AB|T85.635|ICD10CM|Leakage of other nervous system device, implant or graft|Leakage of other nervous system device, implant or graft +C4270550|T046|HT|T85.635|ICD10CM|Leakage of other nervous system device, implant or graft|Leakage of other nervous system device, implant or graft +C4270552|T046|AB|T85.635A|ICD10CM|Leakage of other nervous sys device, implant or graft, init|Leakage of other nervous sys device, implant or graft, init +C4270552|T046|PT|T85.635A|ICD10CM|Leakage of other nervous system device, implant or graft, initial encounter|Leakage of other nervous system device, implant or graft, initial encounter +C4270553|T046|AB|T85.635D|ICD10CM|Leakage of other nervous sys device, implant or graft, subs|Leakage of other nervous sys device, implant or graft, subs +C4270553|T046|PT|T85.635D|ICD10CM|Leakage of other nervous system device, implant or graft, subsequent encounter|Leakage of other nervous system device, implant or graft, subsequent encounter +C4270554|T046|AB|T85.635S|ICD10CM|Leakage of nervous sys device, implant or graft, sequela|Leakage of nervous sys device, implant or graft, sequela +C4270554|T046|PT|T85.635S|ICD10CM|Leakage of other nervous system device, implant or graft, sequela|Leakage of other nervous system device, implant or graft, sequela +C2891180|T037|AB|T85.638|ICD10CM|Leakage of internal prosthetic devices, implants and grafts|Leakage of internal prosthetic devices, implants and grafts +C2891180|T037|HT|T85.638|ICD10CM|Leakage of other specified internal prosthetic devices, implants and grafts|Leakage of other specified internal prosthetic devices, implants and grafts +C2891192|T037|AB|T85.638A|ICD10CM|Leakage of internal prosth dev/grft, init|Leakage of internal prosth dev/grft, init +C2891192|T037|PT|T85.638A|ICD10CM|Leakage of other specified internal prosthetic devices, implants and grafts, initial encounter|Leakage of other specified internal prosthetic devices, implants and grafts, initial encounter +C2891193|T037|AB|T85.638D|ICD10CM|Leakage of internal prosth dev/grft, subs|Leakage of internal prosth dev/grft, subs +C2891193|T037|PT|T85.638D|ICD10CM|Leakage of other specified internal prosthetic devices, implants and grafts, subsequent encounter|Leakage of other specified internal prosthetic devices, implants and grafts, subsequent encounter +C2891194|T037|AB|T85.638S|ICD10CM|Leakage of internal prosth dev/grft, sequela|Leakage of internal prosth dev/grft, sequela +C2891194|T037|PT|T85.638S|ICD10CM|Leakage of other specified internal prosthetic devices, implants and grafts, sequela|Leakage of other specified internal prosthetic devices, implants and grafts, sequela +C2891198|T037|AB|T85.69|ICD10CM|Mech compl of internal prosth dev/grft|Mech compl of internal prosth dev/grft +C2891195|T037|ET|T85.69|ICD10CM|Obstruction, mechanical of other specified internal prosthetic devices, implants and grafts|Obstruction, mechanical of other specified internal prosthetic devices, implants and grafts +C2891198|T037|HT|T85.69|ICD10CM|Other mechanical complication of other specified internal prosthetic devices, implants and grafts|Other mechanical complication of other specified internal prosthetic devices, implants and grafts +C2891196|T037|ET|T85.69|ICD10CM|Perforation of other specified internal prosthetic devices, implants and grafts|Perforation of other specified internal prosthetic devices, implants and grafts +C2891197|T037|ET|T85.69|ICD10CM|Protrusion of other specified internal prosthetic devices, implants and grafts|Protrusion of other specified internal prosthetic devices, implants and grafts +C4270555|T046|AB|T85.690|ICD10CM|Mech compl of cranial or spinal infusion catheter|Mech compl of cranial or spinal infusion catheter +C4270555|T046|HT|T85.690|ICD10CM|Other mechanical complication of cranial or spinal infusion catheter|Other mechanical complication of cranial or spinal infusion catheter +C4270556|T046|ET|T85.690|ICD10CM|Other mechanical complication of epidural infusion catheter|Other mechanical complication of epidural infusion catheter +C4270557|T046|ET|T85.690|ICD10CM|Other mechanical complication of intrathecal infusion catheter|Other mechanical complication of intrathecal infusion catheter +C4270558|T046|ET|T85.690|ICD10CM|Other mechanical complication of subarachnoid infusion catheter|Other mechanical complication of subarachnoid infusion catheter +C4270559|T046|ET|T85.690|ICD10CM|Other mechanical complication of subdural infusion catheter|Other mechanical complication of subdural infusion catheter +C4270560|T046|AB|T85.690A|ICD10CM|Mech compl of cranial or spinal infusion catheter, init|Mech compl of cranial or spinal infusion catheter, init +C4270560|T046|PT|T85.690A|ICD10CM|Other mechanical complication of cranial or spinal infusion catheter, initial encounter|Other mechanical complication of cranial or spinal infusion catheter, initial encounter +C4270561|T046|AB|T85.690D|ICD10CM|Mech compl of cranial or spinal infusion catheter, subs|Mech compl of cranial or spinal infusion catheter, subs +C4270561|T046|PT|T85.690D|ICD10CM|Other mechanical complication of cranial or spinal infusion catheter, subsequent encounter|Other mechanical complication of cranial or spinal infusion catheter, subsequent encounter +C4270562|T046|AB|T85.690S|ICD10CM|Mech compl of cranial or spinal infusion catheter, sequela|Mech compl of cranial or spinal infusion catheter, sequela +C4270562|T046|PT|T85.690S|ICD10CM|Other mechanical complication of cranial or spinal infusion catheter, sequela|Other mechanical complication of cranial or spinal infusion catheter, sequela +C2891203|T037|AB|T85.691|ICD10CM|Mech compl of intraperitoneal dialysis catheter|Mech compl of intraperitoneal dialysis catheter +C2891203|T037|HT|T85.691|ICD10CM|Other mechanical complication of intraperitoneal dialysis catheter|Other mechanical complication of intraperitoneal dialysis catheter +C2891204|T037|AB|T85.691A|ICD10CM|Mech compl of intraperitoneal dialysis catheter, init encntr|Mech compl of intraperitoneal dialysis catheter, init encntr +C2891204|T037|PT|T85.691A|ICD10CM|Other mechanical complication of intraperitoneal dialysis catheter, initial encounter|Other mechanical complication of intraperitoneal dialysis catheter, initial encounter +C2891205|T037|AB|T85.691D|ICD10CM|Mech compl of intraperitoneal dialysis catheter, subs encntr|Mech compl of intraperitoneal dialysis catheter, subs encntr +C2891205|T037|PT|T85.691D|ICD10CM|Other mechanical complication of intraperitoneal dialysis catheter, subsequent encounter|Other mechanical complication of intraperitoneal dialysis catheter, subsequent encounter +C2891206|T037|AB|T85.691S|ICD10CM|Mech compl of intraperitoneal dialysis catheter, sequela|Mech compl of intraperitoneal dialysis catheter, sequela +C2891206|T037|PT|T85.691S|ICD10CM|Other mechanical complication of intraperitoneal dialysis catheter, sequela|Other mechanical complication of intraperitoneal dialysis catheter, sequela +C2891207|T037|AB|T85.692|ICD10CM|Other mechanical complication of permanent sutures|Other mechanical complication of permanent sutures +C2891207|T037|HT|T85.692|ICD10CM|Other mechanical complication of permanent sutures|Other mechanical complication of permanent sutures +C2891208|T037|AB|T85.692A|ICD10CM|Mech compl of permanent sutures, initial encounter|Mech compl of permanent sutures, initial encounter +C2891208|T037|PT|T85.692A|ICD10CM|Other mechanical complication of permanent sutures, initial encounter|Other mechanical complication of permanent sutures, initial encounter +C2891209|T037|AB|T85.692D|ICD10CM|Mech compl of permanent sutures, subsequent encounter|Mech compl of permanent sutures, subsequent encounter +C2891209|T037|PT|T85.692D|ICD10CM|Other mechanical complication of permanent sutures, subsequent encounter|Other mechanical complication of permanent sutures, subsequent encounter +C2891210|T037|AB|T85.692S|ICD10CM|Other mechanical complication of permanent sutures, sequela|Other mechanical complication of permanent sutures, sequela +C2891210|T037|PT|T85.692S|ICD10CM|Other mechanical complication of permanent sutures, sequela|Other mechanical complication of permanent sutures, sequela +C2891211|T037|AB|T85.693|ICD10CM|Mech compl of artificial skin grft /decellular alloderm|Mech compl of artificial skin grft /decellular alloderm +C2891211|T037|HT|T85.693|ICD10CM|Other mechanical complication of artificial skin graft and decellularized allodermis|Other mechanical complication of artificial skin graft and decellularized allodermis +C2891212|T037|AB|T85.693A|ICD10CM|Mech compl of artif skin grft /decellular alloderm, init|Mech compl of artif skin grft /decellular alloderm, init +C2891213|T037|AB|T85.693D|ICD10CM|Mech compl of artif skin grft /decellular alloderm, subs|Mech compl of artif skin grft /decellular alloderm, subs +C2891214|T037|AB|T85.693S|ICD10CM|Mech compl of artif skin grft /decellular alloderm, sequela|Mech compl of artif skin grft /decellular alloderm, sequela +C2891214|T037|PT|T85.693S|ICD10CM|Other mechanical complication of artificial skin graft and decellularized allodermis, sequela|Other mechanical complication of artificial skin graft and decellularized allodermis, sequela +C2891215|T037|AB|T85.694|ICD10CM|Other mechanical complication of insulin pump|Other mechanical complication of insulin pump +C2891215|T037|HT|T85.694|ICD10CM|Other mechanical complication of insulin pump|Other mechanical complication of insulin pump +C2891216|T037|AB|T85.694A|ICD10CM|Mech compl of insulin pump, initial encounter|Mech compl of insulin pump, initial encounter +C2891216|T037|PT|T85.694A|ICD10CM|Other mechanical complication of insulin pump, initial encounter|Other mechanical complication of insulin pump, initial encounter +C2891217|T037|AB|T85.694D|ICD10CM|Mech compl of insulin pump, subsequent encounter|Mech compl of insulin pump, subsequent encounter +C2891217|T037|PT|T85.694D|ICD10CM|Other mechanical complication of insulin pump, subsequent encounter|Other mechanical complication of insulin pump, subsequent encounter +C2891218|T037|AB|T85.694S|ICD10CM|Other mechanical complication of insulin pump, sequela|Other mechanical complication of insulin pump, sequela +C2891218|T037|PT|T85.694S|ICD10CM|Other mechanical complication of insulin pump, sequela|Other mechanical complication of insulin pump, sequela +C4270563|T046|AB|T85.695|ICD10CM|Mech compl of other nervous system device, implant or graft|Mech compl of other nervous system device, implant or graft +C4270564|T046|ET|T85.695|ICD10CM|Other mechanical complication of intrathecal infusion pump|Other mechanical complication of intrathecal infusion pump +C4270563|T046|HT|T85.695|ICD10CM|Other mechanical complication of other nervous system device, implant or graft|Other mechanical complication of other nervous system device, implant or graft +C4270565|T046|AB|T85.695A|ICD10CM|Mech compl of nervous sys device, implant or graft, init|Mech compl of nervous sys device, implant or graft, init +C4270565|T046|PT|T85.695A|ICD10CM|Other mechanical complication of other nervous system device, implant or graft, initial encounter|Other mechanical complication of other nervous system device, implant or graft, initial encounter +C4270566|T046|AB|T85.695D|ICD10CM|Mech compl of nervous sys device, implant or graft, subs|Mech compl of nervous sys device, implant or graft, subs +C4270566|T046|PT|T85.695D|ICD10CM|Other mechanical complication of other nervous system device, implant or graft, subsequent encounter|Other mechanical complication of other nervous system device, implant or graft, subsequent encounter +C4270567|T046|AB|T85.695S|ICD10CM|Mech compl of nervous sys device, implant or graft, sequela|Mech compl of nervous sys device, implant or graft, sequela +C4270567|T046|PT|T85.695S|ICD10CM|Other mechanical complication of other nervous system device, implant or graft, sequela|Other mechanical complication of other nervous system device, implant or graft, sequela +C2891198|T037|AB|T85.698|ICD10CM|Mech compl of internal prosth dev/grft|Mech compl of internal prosth dev/grft +C2891219|T037|ET|T85.698|ICD10CM|Mechanical complication of nonabsorbable surgical material NOS|Mechanical complication of nonabsorbable surgical material NOS +C2891198|T037|HT|T85.698|ICD10CM|Other mechanical complication of other specified internal prosthetic devices, implants and grafts|Other mechanical complication of other specified internal prosthetic devices, implants and grafts +C2891220|T037|AB|T85.698A|ICD10CM|Mech compl of internal prosth dev/grft, init|Mech compl of internal prosth dev/grft, init +C2891221|T037|AB|T85.698D|ICD10CM|Mech compl of internal prosth dev/grft, subs|Mech compl of internal prosth dev/grft, subs +C2891222|T037|AB|T85.698S|ICD10CM|Mech compl of internal prosth dev/grft, sequela|Mech compl of internal prosth dev/grft, sequela +C0161786|T046|AB|T85.7|ICD10CM|Infect/inflm reaction due to oth internal prosth dev/grft|Infect/inflm reaction due to oth internal prosth dev/grft +C0161786|T046|HT|T85.7|ICD10CM|Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts|Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts +C0161786|T046|PT|T85.7|ICD10|Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts|Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts +C0695256|T046|AB|T85.71|ICD10CM|Infect/inflm reaction due to peritoneal dialysis catheter|Infect/inflm reaction due to peritoneal dialysis catheter +C0695256|T046|HT|T85.71|ICD10CM|Infection and inflammatory reaction due to peritoneal dialysis catheter|Infection and inflammatory reaction due to peritoneal dialysis catheter +C2891223|T037|AB|T85.71XA|ICD10CM|Infect/inflm reaction due to periton dialysis catheter, init|Infect/inflm reaction due to periton dialysis catheter, init +C2891223|T037|PT|T85.71XA|ICD10CM|Infection and inflammatory reaction due to peritoneal dialysis catheter, initial encounter|Infection and inflammatory reaction due to peritoneal dialysis catheter, initial encounter +C2891224|T037|AB|T85.71XD|ICD10CM|Infect/inflm reaction due to periton dialysis catheter, subs|Infect/inflm reaction due to periton dialysis catheter, subs +C2891224|T037|PT|T85.71XD|ICD10CM|Infection and inflammatory reaction due to peritoneal dialysis catheter, subsequent encounter|Infection and inflammatory reaction due to peritoneal dialysis catheter, subsequent encounter +C2891225|T037|AB|T85.71XS|ICD10CM|Infect/inflm reaction due to periton dialysis cath, sequela|Infect/inflm reaction due to periton dialysis cath, sequela +C2891225|T037|PT|T85.71XS|ICD10CM|Infection and inflammatory reaction due to peritoneal dialysis catheter, sequela|Infection and inflammatory reaction due to peritoneal dialysis catheter, sequela +C2891226|T046|AB|T85.72|ICD10CM|Infection and inflammatory reaction due to insulin pump|Infection and inflammatory reaction due to insulin pump +C2891226|T046|HT|T85.72|ICD10CM|Infection and inflammatory reaction due to insulin pump|Infection and inflammatory reaction due to insulin pump +C2891227|T037|AB|T85.72XA|ICD10CM|Infect/inflm reaction due to insulin pump, init|Infect/inflm reaction due to insulin pump, init +C2891227|T037|PT|T85.72XA|ICD10CM|Infection and inflammatory reaction due to insulin pump, initial encounter|Infection and inflammatory reaction due to insulin pump, initial encounter +C2891228|T037|AB|T85.72XD|ICD10CM|Infect/inflm reaction due to insulin pump, subs|Infect/inflm reaction due to insulin pump, subs +C2891228|T037|PT|T85.72XD|ICD10CM|Infection and inflammatory reaction due to insulin pump, subsequent encounter|Infection and inflammatory reaction due to insulin pump, subsequent encounter +C2891229|T037|AB|T85.72XS|ICD10CM|Infect/inflm reaction due to insulin pump, sequela|Infect/inflm reaction due to insulin pump, sequela +C2891229|T037|PT|T85.72XS|ICD10CM|Infection and inflammatory reaction due to insulin pump, sequela|Infection and inflammatory reaction due to insulin pump, sequela +C0161781|T046|AB|T85.73|ICD10CM|I/I react d/t nervous system devices, implants and graft|I/I react d/t nervous system devices, implants and graft +C0161781|T046|HT|T85.73|ICD10CM|Infection and inflammatory reaction due to nervous system devices, implants and graft|Infection and inflammatory reaction due to nervous system devices, implants and graft +C4270568|T046|AB|T85.730|ICD10CM|I/I react d/t ventricular intracranial (communicating) shunt|I/I react d/t ventricular intracranial (communicating) shunt +C4270568|T046|HT|T85.730|ICD10CM|Infection and inflammatory reaction due to ventricular intracranial (communicating) shunt|Infection and inflammatory reaction due to ventricular intracranial (communicating) shunt +C4270569|T046|AB|T85.730A|ICD10CM|I/I react d/t ventricular intracranial shunt, init|I/I react d/t ventricular intracranial shunt, init +C4270570|T046|AB|T85.730D|ICD10CM|I/I react d/t ventricular intracranial shunt, subs|I/I react d/t ventricular intracranial shunt, subs +C4270571|T046|AB|T85.730S|ICD10CM|I/I react d/t ventricular intracranial shunt, sequela|I/I react d/t ventricular intracranial shunt, sequela +C4270571|T046|PT|T85.730S|ICD10CM|Infection and inflammatory reaction due to ventricular intracranial (communicating) shunt, sequela|Infection and inflammatory reaction due to ventricular intracranial (communicating) shunt, sequela +C4270572|T046|AB|T85.731|ICD10CM|I/I react d/t implnt elec nstim of brain, electrode (lead)|I/I react d/t implnt elec nstim of brain, electrode (lead) +C4270573|T046|AB|T85.731A|ICD10CM|I/I react d/t implnt elec nstim of brain, lead, init|I/I react d/t implnt elec nstim of brain, lead, init +C4270574|T046|AB|T85.731D|ICD10CM|I/I react d/t implnt elec nstim of brain, lead, subs|I/I react d/t implnt elec nstim of brain, lead, subs +C4270575|T046|AB|T85.731S|ICD10CM|I/I react d/t implnt elec nstim of brain, lead, sequela|I/I react d/t implnt elec nstim of brain, lead, sequela +C4270576|T046|AB|T85.732|ICD10CM|I/I react d/t implnt elec nstim of peripheral nerve, lead|I/I react d/t implnt elec nstim of peripheral nerve, lead +C4270577|T046|ET|T85.732|ICD10CM|Infection and inflammatory reaction due to electrode (lead) for cranial nerve neurostimulators|Infection and inflammatory reaction due to electrode (lead) for cranial nerve neurostimulators +C4270578|T046|ET|T85.732|ICD10CM|Infection and inflammatory reaction due to electrode (lead) for gastric neurostimulator|Infection and inflammatory reaction due to electrode (lead) for gastric neurostimulator +C4270579|T046|ET|T85.732|ICD10CM|Infection and inflammatory reaction due to electrode (lead) for sacral nerve neurostimulator|Infection and inflammatory reaction due to electrode (lead) for sacral nerve neurostimulator +C4270580|T046|ET|T85.732|ICD10CM|Infection and inflammatory reaction due to electrode (lead) for vagal nerve neurostimulators|Infection and inflammatory reaction due to electrode (lead) for vagal nerve neurostimulators +C4270581|T046|AB|T85.732A|ICD10CM|I/I react d/t implnt elec nstim of prph nrv, lead, init|I/I react d/t implnt elec nstim of prph nrv, lead, init +C4270582|T046|AB|T85.732D|ICD10CM|I/I react d/t implnt elec nstim of prph nrv, lead, subs|I/I react d/t implnt elec nstim of prph nrv, lead, subs +C4270583|T046|AB|T85.732S|ICD10CM|I/I react d/t implnt elec nstim of prph nrv, lead, sequela|I/I react d/t implnt elec nstim of prph nrv, lead, sequela +C4270584|T046|AB|T85.733|ICD10CM|I/I react d/t implnt elec nstim of spinal cord, lead|I/I react d/t implnt elec nstim of spinal cord, lead +C4270585|T046|AB|T85.733A|ICD10CM|I/I react d/t implnt elec nstim of spinal cord, lead, init|I/I react d/t implnt elec nstim of spinal cord, lead, init +C4270586|T046|AB|T85.733D|ICD10CM|I/I react d/t implnt elec nstim of spinal cord, lead, subs|I/I react d/t implnt elec nstim of spinal cord, lead, subs +C4270587|T046|AB|T85.733S|ICD10CM|I/I react d/t implnt elec nstim of spinal cord, lead, sqla|I/I react d/t implnt elec nstim of spinal cord, lead, sqla +C4270589|T046|ET|T85.734|ICD10CM|Generator pocket infection|Generator pocket infection +C4270588|T046|AB|T85.734|ICD10CM|I/I react d/t implnt elec nstim, generator|I/I react d/t implnt elec nstim, generator +C4270588|T046|HT|T85.734|ICD10CM|Infection and inflammatory reaction due to implanted electronic neurostimulator, generator|Infection and inflammatory reaction due to implanted electronic neurostimulator, generator +C4270590|T046|AB|T85.734A|ICD10CM|I/I react d/t implnt elec nstim, generator, init|I/I react d/t implnt elec nstim, generator, init +C4270591|T046|AB|T85.734D|ICD10CM|I/I react d/t implnt elec nstim, generator, subs|I/I react d/t implnt elec nstim, generator, subs +C4270592|T046|AB|T85.734S|ICD10CM|I/I react d/t implnt elec nstim, generator, sequela|I/I react d/t implnt elec nstim, generator, sequela +C4270592|T046|PT|T85.734S|ICD10CM|Infection and inflammatory reaction due to implanted electronic neurostimulator, generator, sequela|Infection and inflammatory reaction due to implanted electronic neurostimulator, generator, sequela +C4270593|T046|AB|T85.735|ICD10CM|I/I react d/t cranial or spinal infusion catheter|I/I react d/t cranial or spinal infusion catheter +C4270593|T046|HT|T85.735|ICD10CM|Infection and inflammatory reaction due to cranial or spinal infusion catheter|Infection and inflammatory reaction due to cranial or spinal infusion catheter +C4270594|T046|ET|T85.735|ICD10CM|Infection and inflammatory reaction due to epidural catheter|Infection and inflammatory reaction due to epidural catheter +C4270595|T046|ET|T85.735|ICD10CM|Infection and inflammatory reaction due to intrathecal infusion catheter|Infection and inflammatory reaction due to intrathecal infusion catheter +C4270596|T046|ET|T85.735|ICD10CM|Infection and inflammatory reaction due to subarachnoid catheter|Infection and inflammatory reaction due to subarachnoid catheter +C4270597|T046|ET|T85.735|ICD10CM|Infection and inflammatory reaction due to subdural catheter|Infection and inflammatory reaction due to subdural catheter +C4270598|T046|AB|T85.735A|ICD10CM|I/I react d/t cranial or spinal infusion catheter, init|I/I react d/t cranial or spinal infusion catheter, init +C4270598|T046|PT|T85.735A|ICD10CM|Infection and inflammatory reaction due to cranial or spinal infusion catheter, initial encounter|Infection and inflammatory reaction due to cranial or spinal infusion catheter, initial encounter +C4270599|T046|AB|T85.735D|ICD10CM|I/I react d/t cranial or spinal infusion catheter, subs|I/I react d/t cranial or spinal infusion catheter, subs +C4270599|T046|PT|T85.735D|ICD10CM|Infection and inflammatory reaction due to cranial or spinal infusion catheter, subsequent encounter|Infection and inflammatory reaction due to cranial or spinal infusion catheter, subsequent encounter +C4270600|T046|AB|T85.735S|ICD10CM|I/I react d/t cranial or spinal infusion catheter, sequela|I/I react d/t cranial or spinal infusion catheter, sequela +C4270600|T046|PT|T85.735S|ICD10CM|Infection and inflammatory reaction due to cranial or spinal infusion catheter, sequela|Infection and inflammatory reaction due to cranial or spinal infusion catheter, sequela +C4270601|T046|AB|T85.738|ICD10CM|I/I react d/t other nervous system device, implant or graft|I/I react d/t other nervous system device, implant or graft +C4270602|T046|ET|T85.738|ICD10CM|Infection and inflammatory reaction due to intrathecal infusion pump|Infection and inflammatory reaction due to intrathecal infusion pump +C4270601|T046|HT|T85.738|ICD10CM|Infection and inflammatory reaction due to other nervous system device, implant or graft|Infection and inflammatory reaction due to other nervous system device, implant or graft +C4270603|T046|AB|T85.738A|ICD10CM|I/I react d/t other nrv sys device, implnt or graft, init|I/I react d/t other nrv sys device, implnt or graft, init +C4270604|T046|AB|T85.738D|ICD10CM|I/I react d/t other nrv sys device, implnt or graft, subs|I/I react d/t other nrv sys device, implnt or graft, subs +C4270605|T046|AB|T85.738S|ICD10CM|I/I react d/t other nrv sys device, implnt or graft, sequela|I/I react d/t other nrv sys device, implnt or graft, sequela +C4270605|T046|PT|T85.738S|ICD10CM|Infection and inflammatory reaction due to other nervous system device, implant or graft, sequela|Infection and inflammatory reaction due to other nervous system device, implant or graft, sequela +C0161786|T046|AB|T85.79|ICD10CM|Infect/inflm reaction due to oth internal prosth dev/grft|Infect/inflm reaction due to oth internal prosth dev/grft +C0161786|T046|HT|T85.79|ICD10CM|Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts|Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts +C2891230|T037|AB|T85.79XA|ICD10CM|Infect/inflm reaction due to oth int prosth dev/grft, init|Infect/inflm reaction due to oth int prosth dev/grft, init +C2891231|T037|AB|T85.79XD|ICD10CM|Infect/inflm reaction due to oth int prosth dev/grft, subs|Infect/inflm reaction due to oth int prosth dev/grft, subs +C2891232|T037|AB|T85.79XS|ICD10CM|Infect/inflm react due to oth int prosth dev/grft, sequela|Infect/inflm react due to oth int prosth dev/grft, sequela +C2891257|T037|AB|T85.8|ICD10CM|Oth complications of internal prosth dev/grft, NEC|Oth complications of internal prosth dev/grft, NEC +C0869099|T046|PT|T85.8|ICD10|Other complications of internal prosthetic devices, implants and grafts, not elsewhere classified|Other complications of internal prosthetic devices, implants and grafts, not elsewhere classified +C2891233|T037|AB|T85.81|ICD10CM|Embolism due to internal prosth dev/grft, NEC|Embolism due to internal prosth dev/grft, NEC +C2891233|T037|HT|T85.81|ICD10CM|Embolism due to internal prosthetic devices, implants and grafts, not elsewhere classified|Embolism due to internal prosthetic devices, implants and grafts, not elsewhere classified +C4270606|T046|AB|T85.810|ICD10CM|Embolism due to nervous system prosth dev/grft|Embolism due to nervous system prosth dev/grft +C4270606|T046|HT|T85.810|ICD10CM|Embolism due to nervous system prosthetic devices, implants and grafts|Embolism due to nervous system prosthetic devices, implants and grafts +C4270607|T046|AB|T85.810A|ICD10CM|Embolism due to nervous system prosth dev/grft, init|Embolism due to nervous system prosth dev/grft, init +C4270607|T046|PT|T85.810A|ICD10CM|Embolism due to nervous system prosthetic devices, implants and grafts, initial encounter|Embolism due to nervous system prosthetic devices, implants and grafts, initial encounter +C4270608|T046|AB|T85.810D|ICD10CM|Embolism due to nervous system prosth dev/grft, subs|Embolism due to nervous system prosth dev/grft, subs +C4270608|T046|PT|T85.810D|ICD10CM|Embolism due to nervous system prosthetic devices, implants and grafts, subsequent encounter|Embolism due to nervous system prosthetic devices, implants and grafts, subsequent encounter +C4270609|T046|AB|T85.810S|ICD10CM|Embolism due to nervous system prosth dev/grft, sequela|Embolism due to nervous system prosth dev/grft, sequela +C4270609|T046|PT|T85.810S|ICD10CM|Embolism due to nervous system prosthetic devices, implants and grafts, sequela|Embolism due to nervous system prosthetic devices, implants and grafts, sequela +C4270610|T046|AB|T85.818|ICD10CM|Embolism due to other internal prosth dev/grft|Embolism due to other internal prosth dev/grft +C4270610|T046|HT|T85.818|ICD10CM|Embolism due to other internal prosthetic devices, implants and grafts|Embolism due to other internal prosthetic devices, implants and grafts +C4270611|T046|AB|T85.818A|ICD10CM|Embolism due to other internal prosth dev/grft, init|Embolism due to other internal prosth dev/grft, init +C4270611|T046|PT|T85.818A|ICD10CM|Embolism due to other internal prosthetic devices, implants and grafts, initial encounter|Embolism due to other internal prosthetic devices, implants and grafts, initial encounter +C4270612|T046|AB|T85.818D|ICD10CM|Embolism due to other internal prosth dev/grft, subs|Embolism due to other internal prosth dev/grft, subs +C4270612|T046|PT|T85.818D|ICD10CM|Embolism due to other internal prosthetic devices, implants and grafts, subsequent encounter|Embolism due to other internal prosthetic devices, implants and grafts, subsequent encounter +C4270613|T046|AB|T85.818S|ICD10CM|Embolism due to other internal prosth dev/grft, sequela|Embolism due to other internal prosth dev/grft, sequela +C4270613|T046|PT|T85.818S|ICD10CM|Embolism due to other internal prosthetic devices, implants and grafts, sequela|Embolism due to other internal prosthetic devices, implants and grafts, sequela +C2891237|T037|AB|T85.82|ICD10CM|Fibrosis due to internal prosth dev/grft, NEC|Fibrosis due to internal prosth dev/grft, NEC +C2891237|T037|HT|T85.82|ICD10CM|Fibrosis due to internal prosthetic devices, implants and grafts, not elsewhere classified|Fibrosis due to internal prosthetic devices, implants and grafts, not elsewhere classified +C4270614|T046|AB|T85.820|ICD10CM|Fibrosis due to nervous system prosth dev/grft|Fibrosis due to nervous system prosth dev/grft +C4270614|T046|HT|T85.820|ICD10CM|Fibrosis due to nervous system prosthetic devices, implants and grafts|Fibrosis due to nervous system prosthetic devices, implants and grafts +C4270615|T046|AB|T85.820A|ICD10CM|Fibrosis due to nervous system prosth dev/grft, init|Fibrosis due to nervous system prosth dev/grft, init +C4270615|T046|PT|T85.820A|ICD10CM|Fibrosis due to nervous system prosthetic devices, implants and grafts, initial encounter|Fibrosis due to nervous system prosthetic devices, implants and grafts, initial encounter +C4270616|T046|AB|T85.820D|ICD10CM|Fibrosis due to nervous system prosth dev/grft, subs|Fibrosis due to nervous system prosth dev/grft, subs +C4270616|T046|PT|T85.820D|ICD10CM|Fibrosis due to nervous system prosthetic devices, implants and grafts, subsequent encounter|Fibrosis due to nervous system prosthetic devices, implants and grafts, subsequent encounter +C4270617|T046|AB|T85.820S|ICD10CM|Fibrosis due to nervous system prosth dev/grft, sequela|Fibrosis due to nervous system prosth dev/grft, sequela +C4270617|T046|PT|T85.820S|ICD10CM|Fibrosis due to nervous system prosthetic devices, implants and grafts, sequela|Fibrosis due to nervous system prosthetic devices, implants and grafts, sequela +C4270618|T046|AB|T85.828|ICD10CM|Fibrosis due to other internal prosth dev/grft|Fibrosis due to other internal prosth dev/grft +C4270618|T046|HT|T85.828|ICD10CM|Fibrosis due to other internal prosthetic devices, implants and grafts|Fibrosis due to other internal prosthetic devices, implants and grafts +C4270619|T046|AB|T85.828A|ICD10CM|Fibrosis due to other internal prosth dev/grft, init|Fibrosis due to other internal prosth dev/grft, init +C4270619|T046|PT|T85.828A|ICD10CM|Fibrosis due to other internal prosthetic devices, implants and grafts, initial encounter|Fibrosis due to other internal prosthetic devices, implants and grafts, initial encounter +C4270620|T046|AB|T85.828D|ICD10CM|Fibrosis due to other internal prosth dev/grft, subs|Fibrosis due to other internal prosth dev/grft, subs +C4270620|T046|PT|T85.828D|ICD10CM|Fibrosis due to other internal prosthetic devices, implants and grafts, subsequent encounter|Fibrosis due to other internal prosthetic devices, implants and grafts, subsequent encounter +C4270621|T046|AB|T85.828S|ICD10CM|Fibrosis due to other internal prosth dev/grft, sequela|Fibrosis due to other internal prosth dev/grft, sequela +C4270621|T046|PT|T85.828S|ICD10CM|Fibrosis due to other internal prosthetic devices, implants and grafts, sequela|Fibrosis due to other internal prosthetic devices, implants and grafts, sequela +C2891241|T037|AB|T85.83|ICD10CM|Hemorrhage due to internal prosth dev/grft, NEC|Hemorrhage due to internal prosth dev/grft, NEC +C2891241|T037|HT|T85.83|ICD10CM|Hemorrhage due to internal prosthetic devices, implants and grafts, not elsewhere classified|Hemorrhage due to internal prosthetic devices, implants and grafts, not elsewhere classified +C4270622|T046|AB|T85.830|ICD10CM|Hemorrhage due to nervous system prosth dev/grft|Hemorrhage due to nervous system prosth dev/grft +C4270622|T046|HT|T85.830|ICD10CM|Hemorrhage due to nervous system prosthetic devices, implants and grafts|Hemorrhage due to nervous system prosthetic devices, implants and grafts +C4270623|T046|AB|T85.830A|ICD10CM|Hemorrhage due to nervous system prosth dev/grft, init|Hemorrhage due to nervous system prosth dev/grft, init +C4270623|T046|PT|T85.830A|ICD10CM|Hemorrhage due to nervous system prosthetic devices, implants and grafts, initial encounter|Hemorrhage due to nervous system prosthetic devices, implants and grafts, initial encounter +C4270624|T046|AB|T85.830D|ICD10CM|Hemorrhage due to nervous system prosth dev/grft, subs|Hemorrhage due to nervous system prosth dev/grft, subs +C4270624|T046|PT|T85.830D|ICD10CM|Hemorrhage due to nervous system prosthetic devices, implants and grafts, subsequent encounter|Hemorrhage due to nervous system prosthetic devices, implants and grafts, subsequent encounter +C4270625|T046|AB|T85.830S|ICD10CM|Hemorrhage due to nervous system prosth dev/grft, sequela|Hemorrhage due to nervous system prosth dev/grft, sequela +C4270625|T046|PT|T85.830S|ICD10CM|Hemorrhage due to nervous system prosthetic devices, implants and grafts, sequela|Hemorrhage due to nervous system prosthetic devices, implants and grafts, sequela +C4270626|T046|AB|T85.838|ICD10CM|Hemorrhage due to other internal prosth dev/grft|Hemorrhage due to other internal prosth dev/grft +C4270626|T046|HT|T85.838|ICD10CM|Hemorrhage due to other internal prosthetic devices, implants and grafts|Hemorrhage due to other internal prosthetic devices, implants and grafts +C4270627|T046|AB|T85.838A|ICD10CM|Hemorrhage due to other internal prosth dev/grft, init|Hemorrhage due to other internal prosth dev/grft, init +C4270627|T046|PT|T85.838A|ICD10CM|Hemorrhage due to other internal prosthetic devices, implants and grafts, initial encounter|Hemorrhage due to other internal prosthetic devices, implants and grafts, initial encounter +C4270628|T046|AB|T85.838D|ICD10CM|Hemorrhage due to other internal prosth dev/grft, subs|Hemorrhage due to other internal prosth dev/grft, subs +C4270628|T046|PT|T85.838D|ICD10CM|Hemorrhage due to other internal prosthetic devices, implants and grafts, subsequent encounter|Hemorrhage due to other internal prosthetic devices, implants and grafts, subsequent encounter +C4270629|T046|AB|T85.838S|ICD10CM|Hemorrhage due to other internal prosth dev/grft, sequela|Hemorrhage due to other internal prosth dev/grft, sequela +C4270629|T046|PT|T85.838S|ICD10CM|Hemorrhage due to other internal prosthetic devices, implants and grafts, sequela|Hemorrhage due to other internal prosthetic devices, implants and grafts, sequela +C2891245|T037|AB|T85.84|ICD10CM|Pain due to internal prosth dev/grft, NEC|Pain due to internal prosth dev/grft, NEC +C2891245|T037|HT|T85.84|ICD10CM|Pain due to internal prosthetic devices, implants and grafts, not elsewhere classified|Pain due to internal prosthetic devices, implants and grafts, not elsewhere classified +C4270630|T046|AB|T85.840|ICD10CM|Pain due to nervous system prosth dev/grft|Pain due to nervous system prosth dev/grft +C4270630|T046|HT|T85.840|ICD10CM|Pain due to nervous system prosthetic devices, implants and grafts|Pain due to nervous system prosthetic devices, implants and grafts +C4270631|T046|AB|T85.840A|ICD10CM|Pain due to nervous system prosth dev/grft, init|Pain due to nervous system prosth dev/grft, init +C4270631|T046|PT|T85.840A|ICD10CM|Pain due to nervous system prosthetic devices, implants and grafts, initial encounter|Pain due to nervous system prosthetic devices, implants and grafts, initial encounter +C4270632|T046|AB|T85.840D|ICD10CM|Pain due to nervous system prosth dev/grft, subs|Pain due to nervous system prosth dev/grft, subs +C4270632|T046|PT|T85.840D|ICD10CM|Pain due to nervous system prosthetic devices, implants and grafts, subsequent encounter|Pain due to nervous system prosthetic devices, implants and grafts, subsequent encounter +C4270633|T046|AB|T85.840S|ICD10CM|Pain due to nervous system prosth dev/grft, sequela|Pain due to nervous system prosth dev/grft, sequela +C4270633|T046|PT|T85.840S|ICD10CM|Pain due to nervous system prosthetic devices, implants and grafts, sequela|Pain due to nervous system prosthetic devices, implants and grafts, sequela +C4270634|T046|AB|T85.848|ICD10CM|Pain due to other internal prosth dev/grft|Pain due to other internal prosth dev/grft +C4270634|T046|HT|T85.848|ICD10CM|Pain due to other internal prosthetic devices, implants and grafts|Pain due to other internal prosthetic devices, implants and grafts +C4270635|T046|AB|T85.848A|ICD10CM|Pain due to other internal prosth dev/grft, init|Pain due to other internal prosth dev/grft, init +C4270635|T046|PT|T85.848A|ICD10CM|Pain due to other internal prosthetic devices, implants and grafts, initial encounter|Pain due to other internal prosthetic devices, implants and grafts, initial encounter +C4270636|T046|AB|T85.848D|ICD10CM|Pain due to other internal prosth dev/grft, subs|Pain due to other internal prosth dev/grft, subs +C4270636|T046|PT|T85.848D|ICD10CM|Pain due to other internal prosthetic devices, implants and grafts, subsequent encounter|Pain due to other internal prosthetic devices, implants and grafts, subsequent encounter +C4270637|T046|AB|T85.848S|ICD10CM|Pain due to other internal prosth dev/grft, sequela|Pain due to other internal prosth dev/grft, sequela +C4270637|T046|PT|T85.848S|ICD10CM|Pain due to other internal prosthetic devices, implants and grafts, sequela|Pain due to other internal prosthetic devices, implants and grafts, sequela +C2891249|T037|AB|T85.85|ICD10CM|Stenosis due to internal prosth dev/grft, NEC|Stenosis due to internal prosth dev/grft, NEC +C2891249|T037|HT|T85.85|ICD10CM|Stenosis due to internal prosthetic devices, implants and grafts, not elsewhere classified|Stenosis due to internal prosthetic devices, implants and grafts, not elsewhere classified +C4270638|T046|AB|T85.850|ICD10CM|Stenosis due to nervous system prosth dev/grft|Stenosis due to nervous system prosth dev/grft +C4270638|T046|HT|T85.850|ICD10CM|Stenosis due to nervous system prosthetic devices, implants and grafts|Stenosis due to nervous system prosthetic devices, implants and grafts +C4270639|T046|AB|T85.850A|ICD10CM|Stenosis due to nervous system prosth dev/grft, init|Stenosis due to nervous system prosth dev/grft, init +C4270639|T046|PT|T85.850A|ICD10CM|Stenosis due to nervous system prosthetic devices, implants and grafts, initial encounter|Stenosis due to nervous system prosthetic devices, implants and grafts, initial encounter +C4270640|T046|AB|T85.850D|ICD10CM|Stenosis due to nervous system prosth dev/grft, subs|Stenosis due to nervous system prosth dev/grft, subs +C4270640|T046|PT|T85.850D|ICD10CM|Stenosis due to nervous system prosthetic devices, implants and grafts, subsequent encounter|Stenosis due to nervous system prosthetic devices, implants and grafts, subsequent encounter +C4270641|T046|AB|T85.850S|ICD10CM|Stenosis due to nervous system prosth dev/grft, sequela|Stenosis due to nervous system prosth dev/grft, sequela +C4270641|T046|PT|T85.850S|ICD10CM|Stenosis due to nervous system prosthetic devices, implants and grafts, sequela|Stenosis due to nervous system prosthetic devices, implants and grafts, sequela +C4270642|T046|AB|T85.858|ICD10CM|Stenosis due to other internal prosth dev/grft|Stenosis due to other internal prosth dev/grft +C4270642|T046|HT|T85.858|ICD10CM|Stenosis due to other internal prosthetic devices, implants and grafts|Stenosis due to other internal prosthetic devices, implants and grafts +C4270643|T046|AB|T85.858A|ICD10CM|Stenosis due to other internal prosth dev/grft, init|Stenosis due to other internal prosth dev/grft, init +C4270643|T046|PT|T85.858A|ICD10CM|Stenosis due to other internal prosthetic devices, implants and grafts, initial encounter|Stenosis due to other internal prosthetic devices, implants and grafts, initial encounter +C4270644|T046|AB|T85.858D|ICD10CM|Stenosis due to other internal prosth dev/grft, subs|Stenosis due to other internal prosth dev/grft, subs +C4270644|T046|PT|T85.858D|ICD10CM|Stenosis due to other internal prosthetic devices, implants and grafts, subsequent encounter|Stenosis due to other internal prosthetic devices, implants and grafts, subsequent encounter +C4270645|T046|AB|T85.858S|ICD10CM|Stenosis due to other internal prosth dev/grft, sequela|Stenosis due to other internal prosth dev/grft, sequela +C4270645|T046|PT|T85.858S|ICD10CM|Stenosis due to other internal prosthetic devices, implants and grafts, sequela|Stenosis due to other internal prosthetic devices, implants and grafts, sequela +C2891253|T037|AB|T85.86|ICD10CM|Thrombosis due to internal prosth dev/grft, NEC|Thrombosis due to internal prosth dev/grft, NEC +C2891253|T037|HT|T85.86|ICD10CM|Thrombosis due to internal prosthetic devices, implants and grafts, not elsewhere classified|Thrombosis due to internal prosthetic devices, implants and grafts, not elsewhere classified +C4270646|T046|AB|T85.860|ICD10CM|Thrombosis due to nervous system prosth dev/grft|Thrombosis due to nervous system prosth dev/grft +C4270646|T046|HT|T85.860|ICD10CM|Thrombosis due to nervous system prosthetic devices, implants and grafts|Thrombosis due to nervous system prosthetic devices, implants and grafts +C4270647|T046|AB|T85.860A|ICD10CM|Thrombosis due to nervous system prosth dev/grft, init|Thrombosis due to nervous system prosth dev/grft, init +C4270647|T046|PT|T85.860A|ICD10CM|Thrombosis due to nervous system prosthetic devices, implants and grafts, initial encounter|Thrombosis due to nervous system prosthetic devices, implants and grafts, initial encounter +C4270648|T046|AB|T85.860D|ICD10CM|Thrombosis due to nervous system prosth dev/grft, subs|Thrombosis due to nervous system prosth dev/grft, subs +C4270648|T046|PT|T85.860D|ICD10CM|Thrombosis due to nervous system prosthetic devices, implants and grafts, subsequent encounter|Thrombosis due to nervous system prosthetic devices, implants and grafts, subsequent encounter +C4270649|T046|AB|T85.860S|ICD10CM|Thrombosis due to nervous system prosth dev/grft, sequela|Thrombosis due to nervous system prosth dev/grft, sequela +C4270649|T046|PT|T85.860S|ICD10CM|Thrombosis due to nervous system prosthetic devices, implants and grafts, sequela|Thrombosis due to nervous system prosthetic devices, implants and grafts, sequela +C4270650|T046|AB|T85.868|ICD10CM|Thrombosis due to other internal prosth dev/grft|Thrombosis due to other internal prosth dev/grft +C4270650|T046|HT|T85.868|ICD10CM|Thrombosis due to other internal prosthetic devices, implants and grafts|Thrombosis due to other internal prosthetic devices, implants and grafts +C4270651|T046|AB|T85.868A|ICD10CM|Thrombosis due to other internal prosth dev/grft, init|Thrombosis due to other internal prosth dev/grft, init +C4270651|T046|PT|T85.868A|ICD10CM|Thrombosis due to other internal prosthetic devices, implants and grafts, initial encounter|Thrombosis due to other internal prosthetic devices, implants and grafts, initial encounter +C4270652|T046|AB|T85.868D|ICD10CM|Thrombosis due to other internal prosth dev/grft, subs|Thrombosis due to other internal prosth dev/grft, subs +C4270652|T046|PT|T85.868D|ICD10CM|Thrombosis due to other internal prosthetic devices, implants and grafts, subsequent encounter|Thrombosis due to other internal prosthetic devices, implants and grafts, subsequent encounter +C4270653|T046|AB|T85.868S|ICD10CM|Thrombosis due to other internal prosth dev/grft, sequela|Thrombosis due to other internal prosth dev/grft, sequela +C4270653|T046|PT|T85.868S|ICD10CM|Thrombosis due to other internal prosthetic devices, implants and grafts, sequela|Thrombosis due to other internal prosthetic devices, implants and grafts, sequela +C4270654|T046|ET|T85.89|ICD10CM|Erosion or breakdown of subcutaneous device pocket|Erosion or breakdown of subcutaneous device pocket +C2891257|T037|AB|T85.89|ICD10CM|Oth complication of internal prosth dev/grft, NEC|Oth complication of internal prosth dev/grft, NEC +C4270655|T046|AB|T85.890|ICD10CM|Oth complication of nervous system prosth dev/grft|Oth complication of nervous system prosth dev/grft +C4270655|T046|HT|T85.890|ICD10CM|Other specified complication of nervous system prosthetic devices, implants and grafts|Other specified complication of nervous system prosthetic devices, implants and grafts +C4270656|T046|AB|T85.890A|ICD10CM|Oth complication of nervous system prosth dev/grft, init|Oth complication of nervous system prosth dev/grft, init +C4270657|T046|AB|T85.890D|ICD10CM|Oth complication of nervous system prosth dev/grft, subs|Oth complication of nervous system prosth dev/grft, subs +C4270658|T046|AB|T85.890S|ICD10CM|Oth complication of nervous system prosth dev/grft, sequela|Oth complication of nervous system prosth dev/grft, sequela +C4270658|T046|PT|T85.890S|ICD10CM|Other specified complication of nervous system prosthetic devices, implants and grafts, sequela|Other specified complication of nervous system prosthetic devices, implants and grafts, sequela +C4270659|T046|AB|T85.898|ICD10CM|Oth complication of other internal prosth dev/grft|Oth complication of other internal prosth dev/grft +C4270659|T046|HT|T85.898|ICD10CM|Other specified complication of other internal prosthetic devices, implants and grafts|Other specified complication of other internal prosthetic devices, implants and grafts +C4270660|T046|AB|T85.898A|ICD10CM|Oth complication of other internal prosth dev/grft, init|Oth complication of other internal prosth dev/grft, init +C4270661|T046|AB|T85.898D|ICD10CM|Oth complication of other internal prosth dev/grft, subs|Oth complication of other internal prosth dev/grft, subs +C4270662|T046|AB|T85.898S|ICD10CM|Oth complication of other internal prosth dev/grft, sequela|Oth complication of other internal prosth dev/grft, sequela +C4270662|T046|PT|T85.898S|ICD10CM|Other specified complication of other internal prosthetic devices, implants and grafts, sequela|Other specified complication of other internal prosthetic devices, implants and grafts, sequela +C2891261|T037|ET|T85.9|ICD10CM|Complication of internal prosthetic device, implant and graft NOS|Complication of internal prosthetic device, implant and graft NOS +C0496155|T037|AB|T85.9|ICD10CM|Unsp complication of internal prosth dev/grft|Unsp complication of internal prosth dev/grft +C0496155|T037|HT|T85.9|ICD10CM|Unspecified complication of internal prosthetic device, implant and graft|Unspecified complication of internal prosthetic device, implant and graft +C0496155|T037|PT|T85.9|ICD10|Unspecified complication of internal prosthetic device, implant and graft|Unspecified complication of internal prosthetic device, implant and graft +C2891262|T037|AB|T85.9XXA|ICD10CM|Unsp complication of internal prosth dev/grft, init|Unsp complication of internal prosth dev/grft, init +C2891262|T037|PT|T85.9XXA|ICD10CM|Unspecified complication of internal prosthetic device, implant and graft, initial encounter|Unspecified complication of internal prosthetic device, implant and graft, initial encounter +C2891263|T037|AB|T85.9XXD|ICD10CM|Unsp complication of internal prosth dev/grft, subs|Unsp complication of internal prosth dev/grft, subs +C2891263|T037|PT|T85.9XXD|ICD10CM|Unspecified complication of internal prosthetic device, implant and graft, subsequent encounter|Unspecified complication of internal prosthetic device, implant and graft, subsequent encounter +C2891264|T037|AB|T85.9XXS|ICD10CM|Unsp complication of internal prosth dev/grft, sequela|Unsp complication of internal prosth dev/grft, sequela +C2891264|T037|PT|T85.9XXS|ICD10CM|Unspecified complication of internal prosthetic device, implant and graft, sequela|Unspecified complication of internal prosthetic device, implant and graft, sequela +C2891265|T037|AB|T86|ICD10CM|Complications of transplanted organs and tissue|Complications of transplanted organs and tissue +C2891265|T037|HT|T86|ICD10CM|Complications of transplanted organs and tissue|Complications of transplanted organs and tissue +C0496156|T046|HT|T86|ICD10|Failure and rejection of transplanted organs and tissues|Failure and rejection of transplanted organs and tissues +C0340990|T046|PT|T86.0|ICD10|Bone-marrow transplant rejection|Bone-marrow transplant rejection +C0161802|T046|HT|T86.0|ICD10CM|Complications of bone marrow transplant|Complications of bone marrow transplant +C0161802|T046|AB|T86.0|ICD10CM|Complications of bone marrow transplant|Complications of bone marrow transplant +C2891266|T037|AB|T86.00|ICD10CM|Unspecified complication of bone marrow transplant|Unspecified complication of bone marrow transplant +C2891266|T037|PT|T86.00|ICD10CM|Unspecified complication of bone marrow transplant|Unspecified complication of bone marrow transplant +C0340990|T046|PT|T86.01|ICD10CM|Bone marrow transplant rejection|Bone marrow transplant rejection +C0340990|T046|AB|T86.01|ICD10CM|Bone marrow transplant rejection|Bone marrow transplant rejection +C0340991|T046|PT|T86.02|ICD10CM|Bone marrow transplant failure|Bone marrow transplant failure +C0340991|T046|AB|T86.02|ICD10CM|Bone marrow transplant failure|Bone marrow transplant failure +C2891267|T046|AB|T86.03|ICD10CM|Bone marrow transplant infection|Bone marrow transplant infection +C2891267|T046|PT|T86.03|ICD10CM|Bone marrow transplant infection|Bone marrow transplant infection +C2891268|T037|AB|T86.09|ICD10CM|Other complications of bone marrow transplant|Other complications of bone marrow transplant +C2891268|T037|PT|T86.09|ICD10CM|Other complications of bone marrow transplant|Other complications of bone marrow transplant +C1261281|T046|AB|T86.1|ICD10CM|Complications of kidney transplant|Complications of kidney transplant +C1261281|T046|HT|T86.1|ICD10CM|Complications of kidney transplant|Complications of kidney transplant +C0451764|T046|PT|T86.1|ICD10|Kidney transplant failure and rejection|Kidney transplant failure and rejection +C2891269|T037|AB|T86.10|ICD10CM|Unspecified complication of kidney transplant|Unspecified complication of kidney transplant +C2891269|T037|PT|T86.10|ICD10CM|Unspecified complication of kidney transplant|Unspecified complication of kidney transplant +C0238217|T046|PT|T86.11|ICD10CM|Kidney transplant rejection|Kidney transplant rejection +C0238217|T046|AB|T86.11|ICD10CM|Kidney transplant rejection|Kidney transplant rejection +C1404117|T046|AB|T86.12|ICD10CM|Kidney transplant failure|Kidney transplant failure +C1404117|T046|PT|T86.12|ICD10CM|Kidney transplant failure|Kidney transplant failure +C2891270|T037|AB|T86.13|ICD10CM|Kidney transplant infection|Kidney transplant infection +C2891270|T037|PT|T86.13|ICD10CM|Kidney transplant infection|Kidney transplant infection +C2891271|T037|AB|T86.19|ICD10CM|Other complication of kidney transplant|Other complication of kidney transplant +C2891271|T037|PT|T86.19|ICD10CM|Other complication of kidney transplant|Other complication of kidney transplant +C0340529|T046|AB|T86.2|ICD10CM|Complications of heart transplant|Complications of heart transplant +C0340529|T046|HT|T86.2|ICD10CM|Complications of heart transplant|Complications of heart transplant +C0348882|T046|PT|T86.2|ICD10|Heart transplant failure and rejection|Heart transplant failure and rejection +C2891272|T037|AB|T86.20|ICD10CM|Unspecified complication of heart transplant|Unspecified complication of heart transplant +C2891272|T037|PT|T86.20|ICD10CM|Unspecified complication of heart transplant|Unspecified complication of heart transplant +C0340530|T046|PT|T86.21|ICD10CM|Heart transplant rejection|Heart transplant rejection +C0340530|T046|AB|T86.21|ICD10CM|Heart transplant rejection|Heart transplant rejection +C0340531|T046|AB|T86.22|ICD10CM|Heart transplant failure|Heart transplant failure +C0340531|T046|PT|T86.22|ICD10CM|Heart transplant failure|Heart transplant failure +C2891273|T037|AB|T86.23|ICD10CM|Heart transplant infection|Heart transplant infection +C2891273|T037|PT|T86.23|ICD10CM|Heart transplant infection|Heart transplant infection +C2891274|T037|HT|T86.29|ICD10CM|Other complications of heart transplant|Other complications of heart transplant +C2891274|T037|AB|T86.29|ICD10CM|Other complications of heart transplant|Other complications of heart transplant +C2891275|T037|AB|T86.290|ICD10CM|Cardiac allograft vasculopathy|Cardiac allograft vasculopathy +C2891275|T037|PT|T86.290|ICD10CM|Cardiac allograft vasculopathy|Cardiac allograft vasculopathy +C2891274|T037|AB|T86.298|ICD10CM|Other complications of heart transplant|Other complications of heart transplant +C2891274|T037|PT|T86.298|ICD10CM|Other complications of heart transplant|Other complications of heart transplant +C2891276|T046|AB|T86.3|ICD10CM|Complications of heart-lung transplant|Complications of heart-lung transplant +C2891276|T046|HT|T86.3|ICD10CM|Complications of heart-lung transplant|Complications of heart-lung transplant +C0348883|T046|PT|T86.3|ICD10|Heart-lung transplant failure and rejection|Heart-lung transplant failure and rejection +C2891277|T037|AB|T86.30|ICD10CM|Unspecified complication of heart-lung transplant|Unspecified complication of heart-lung transplant +C2891277|T037|PT|T86.30|ICD10CM|Unspecified complication of heart-lung transplant|Unspecified complication of heart-lung transplant +C0854432|T046|PT|T86.31|ICD10CM|Heart-lung transplant rejection|Heart-lung transplant rejection +C0854432|T046|AB|T86.31|ICD10CM|Heart-lung transplant rejection|Heart-lung transplant rejection +C1404114|T046|PT|T86.32|ICD10CM|Heart-lung transplant failure|Heart-lung transplant failure +C1404114|T046|AB|T86.32|ICD10CM|Heart-lung transplant failure|Heart-lung transplant failure +C2891278|T046|PT|T86.33|ICD10CM|Heart-lung transplant infection|Heart-lung transplant infection +C2891278|T046|AB|T86.33|ICD10CM|Heart-lung transplant infection|Heart-lung transplant infection +C2891279|T037|AB|T86.39|ICD10CM|Other complications of heart-lung transplant|Other complications of heart-lung transplant +C2891279|T037|PT|T86.39|ICD10CM|Other complications of heart-lung transplant|Other complications of heart-lung transplant +C1261282|T046|AB|T86.4|ICD10CM|Complications of liver transplant|Complications of liver transplant +C1261282|T046|HT|T86.4|ICD10CM|Complications of liver transplant|Complications of liver transplant +C0451706|T046|PT|T86.4|ICD10|Liver transplant failure and rejection|Liver transplant failure and rejection +C2891280|T037|AB|T86.40|ICD10CM|Unspecified complication of liver transplant|Unspecified complication of liver transplant +C2891280|T037|PT|T86.40|ICD10CM|Unspecified complication of liver transplant|Unspecified complication of liver transplant +C0400968|T046|PT|T86.41|ICD10CM|Liver transplant rejection|Liver transplant rejection +C0400968|T046|AB|T86.41|ICD10CM|Liver transplant rejection|Liver transplant rejection +C0400969|T046|PT|T86.42|ICD10CM|Liver transplant failure|Liver transplant failure +C0400969|T046|AB|T86.42|ICD10CM|Liver transplant failure|Liver transplant failure +C2891281|T037|AB|T86.43|ICD10CM|Liver transplant infection|Liver transplant infection +C2891281|T037|PT|T86.43|ICD10CM|Liver transplant infection|Liver transplant infection +C2891282|T037|AB|T86.49|ICD10CM|Other complications of liver transplant|Other complications of liver transplant +C2891282|T037|PT|T86.49|ICD10CM|Other complications of liver transplant|Other complications of liver transplant +C3161225|T046|ET|T86.5|ICD10CM|Complications from stem cells from peripheral blood|Complications from stem cells from peripheral blood +C3161226|T046|ET|T86.5|ICD10CM|Complications from stem cells from umbilical cord|Complications from stem cells from umbilical cord +C3251587|T046|AB|T86.5|ICD10CM|Complications of stem cell transplant|Complications of stem cell transplant +C3251587|T046|PT|T86.5|ICD10CM|Complications of stem cell transplant|Complications of stem cell transplant +C2891283|T037|AB|T86.8|ICD10CM|Complications of other transplanted organs and tissues|Complications of other transplanted organs and tissues +C2891283|T037|HT|T86.8|ICD10CM|Complications of other transplanted organs and tissues|Complications of other transplanted organs and tissues +C0478500|T046|PT|T86.8|ICD10|Failure and rejection of other transplanted organs and tissues|Failure and rejection of other transplanted organs and tissues +C0161801|T046|AB|T86.81|ICD10CM|Complications of lung transplant|Complications of lung transplant +C0161801|T046|HT|T86.81|ICD10CM|Complications of lung transplant|Complications of lung transplant +C0729958|T046|PT|T86.810|ICD10CM|Lung transplant rejection|Lung transplant rejection +C0729958|T046|AB|T86.810|ICD10CM|Lung transplant rejection|Lung transplant rejection +C1404116|T046|AB|T86.811|ICD10CM|Lung transplant failure|Lung transplant failure +C1404116|T046|PT|T86.811|ICD10CM|Lung transplant failure|Lung transplant failure +C2891284|T046|AB|T86.812|ICD10CM|Lung transplant infection|Lung transplant infection +C2891284|T046|PT|T86.812|ICD10CM|Lung transplant infection|Lung transplant infection +C2891285|T037|AB|T86.818|ICD10CM|Other complications of lung transplant|Other complications of lung transplant +C2891285|T037|PT|T86.818|ICD10CM|Other complications of lung transplant|Other complications of lung transplant +C2891286|T037|AB|T86.819|ICD10CM|Unspecified complication of lung transplant|Unspecified complication of lung transplant +C2891286|T037|PT|T86.819|ICD10CM|Unspecified complication of lung transplant|Unspecified complication of lung transplant +C2891287|T046|AB|T86.82|ICD10CM|Complications of skin graft (allograft) (autograft)|Complications of skin graft (allograft) (autograft) +C2891287|T046|HT|T86.82|ICD10CM|Complications of skin graft (allograft) (autograft)|Complications of skin graft (allograft) (autograft) +C2891288|T046|AB|T86.820|ICD10CM|Skin graft (allograft) rejection|Skin graft (allograft) rejection +C2891288|T046|PT|T86.820|ICD10CM|Skin graft (allograft) rejection|Skin graft (allograft) rejection +C2891289|T046|AB|T86.821|ICD10CM|Skin graft (allograft) (autograft) failure|Skin graft (allograft) (autograft) failure +C2891289|T046|PT|T86.821|ICD10CM|Skin graft (allograft) (autograft) failure|Skin graft (allograft) (autograft) failure +C2891290|T046|AB|T86.822|ICD10CM|Skin graft (allograft) (autograft) infection|Skin graft (allograft) (autograft) infection +C2891290|T046|PT|T86.822|ICD10CM|Skin graft (allograft) (autograft) infection|Skin graft (allograft) (autograft) infection +C2891291|T037|AB|T86.828|ICD10CM|Other complications of skin graft (allograft) (autograft)|Other complications of skin graft (allograft) (autograft) +C2891291|T037|PT|T86.828|ICD10CM|Other complications of skin graft (allograft) (autograft)|Other complications of skin graft (allograft) (autograft) +C2891292|T037|AB|T86.829|ICD10CM|Unsp complication of skin graft (allograft) (autograft)|Unsp complication of skin graft (allograft) (autograft) +C2891292|T037|PT|T86.829|ICD10CM|Unspecified complication of skin graft (allograft) (autograft)|Unspecified complication of skin graft (allograft) (autograft) +C1446588|T046|AB|T86.83|ICD10CM|Complications of bone graft|Complications of bone graft +C1446588|T046|HT|T86.83|ICD10CM|Complications of bone graft|Complications of bone graft +C0559330|T046|AB|T86.830|ICD10CM|Bone graft rejection|Bone graft rejection +C0559330|T046|PT|T86.830|ICD10CM|Bone graft rejection|Bone graft rejection +C0410795|T046|PT|T86.831|ICD10CM|Bone graft failure|Bone graft failure +C0410795|T046|AB|T86.831|ICD10CM|Bone graft failure|Bone graft failure +C0410798|T046|AB|T86.832|ICD10CM|Bone graft infection|Bone graft infection +C0410798|T046|PT|T86.832|ICD10CM|Bone graft infection|Bone graft infection +C2891293|T037|AB|T86.838|ICD10CM|Other complications of bone graft|Other complications of bone graft +C2891293|T037|PT|T86.838|ICD10CM|Other complications of bone graft|Other complications of bone graft +C2891294|T037|AB|T86.839|ICD10CM|Unspecified complication of bone graft|Unspecified complication of bone graft +C2891294|T037|PT|T86.839|ICD10CM|Unspecified complication of bone graft|Unspecified complication of bone graft +C2891295|T037|AB|T86.84|ICD10CM|Complications of corneal transplant|Complications of corneal transplant +C2891295|T037|HT|T86.84|ICD10CM|Complications of corneal transplant|Complications of corneal transplant +C2891296|T046|AB|T86.840|ICD10CM|Corneal transplant rejection|Corneal transplant rejection +C2891296|T046|PT|T86.840|ICD10CM|Corneal transplant rejection|Corneal transplant rejection +C2891297|T046|AB|T86.841|ICD10CM|Corneal transplant failure|Corneal transplant failure +C2891297|T046|PT|T86.841|ICD10CM|Corneal transplant failure|Corneal transplant failure +C2891298|T046|AB|T86.842|ICD10CM|Corneal transplant infection|Corneal transplant infection +C2891298|T046|PT|T86.842|ICD10CM|Corneal transplant infection|Corneal transplant infection +C2891299|T037|AB|T86.848|ICD10CM|Other complications of corneal transplant|Other complications of corneal transplant +C2891299|T037|PT|T86.848|ICD10CM|Other complications of corneal transplant|Other complications of corneal transplant +C2891300|T037|AB|T86.849|ICD10CM|Unspecified complication of corneal transplant|Unspecified complication of corneal transplant +C2891300|T037|PT|T86.849|ICD10CM|Unspecified complication of corneal transplant|Unspecified complication of corneal transplant +C0274370|T046|AB|T86.85|ICD10CM|Complication of intestine transplant|Complication of intestine transplant +C0274370|T046|HT|T86.85|ICD10CM|Complication of intestine transplant|Complication of intestine transplant +C1141940|T046|PT|T86.850|ICD10CM|Intestine transplant rejection|Intestine transplant rejection +C1141940|T046|AB|T86.850|ICD10CM|Intestine transplant rejection|Intestine transplant rejection +C2891301|T037|AB|T86.851|ICD10CM|Intestine transplant failure|Intestine transplant failure +C2891301|T037|PT|T86.851|ICD10CM|Intestine transplant failure|Intestine transplant failure +C2891302|T046|AB|T86.852|ICD10CM|Intestine transplant infection|Intestine transplant infection +C2891302|T046|PT|T86.852|ICD10CM|Intestine transplant infection|Intestine transplant infection +C2891303|T037|AB|T86.858|ICD10CM|Other complications of intestine transplant|Other complications of intestine transplant +C2891303|T037|PT|T86.858|ICD10CM|Other complications of intestine transplant|Other complications of intestine transplant +C2891304|T037|AB|T86.859|ICD10CM|Unspecified complication of intestine transplant|Unspecified complication of intestine transplant +C2891304|T037|PT|T86.859|ICD10CM|Unspecified complication of intestine transplant|Unspecified complication of intestine transplant +C2891306|T037|AB|T86.89|ICD10CM|Complications of other transplanted tissue|Complications of other transplanted tissue +C2891306|T037|HT|T86.89|ICD10CM|Complications of other transplanted tissue|Complications of other transplanted tissue +C2891305|T046|ET|T86.89|ICD10CM|Transplant failure or rejection of pancreas|Transplant failure or rejection of pancreas +C2891307|T037|AB|T86.890|ICD10CM|Other transplanted tissue rejection|Other transplanted tissue rejection +C2891307|T037|PT|T86.890|ICD10CM|Other transplanted tissue rejection|Other transplanted tissue rejection +C2891308|T037|AB|T86.891|ICD10CM|Other transplanted tissue failure|Other transplanted tissue failure +C2891308|T037|PT|T86.891|ICD10CM|Other transplanted tissue failure|Other transplanted tissue failure +C2891309|T037|AB|T86.892|ICD10CM|Other transplanted tissue infection|Other transplanted tissue infection +C2891309|T037|PT|T86.892|ICD10CM|Other transplanted tissue infection|Other transplanted tissue infection +C2891310|T037|AB|T86.898|ICD10CM|Other complications of other transplanted tissue|Other complications of other transplanted tissue +C2891310|T037|PT|T86.898|ICD10CM|Other complications of other transplanted tissue|Other complications of other transplanted tissue +C2891311|T037|AB|T86.899|ICD10CM|Unspecified complication of other transplanted tissue|Unspecified complication of other transplanted tissue +C2891311|T037|PT|T86.899|ICD10CM|Unspecified complication of other transplanted tissue|Unspecified complication of other transplanted tissue +C2891312|T037|AB|T86.9|ICD10CM|Complication of unspecified transplanted organ and tissue|Complication of unspecified transplanted organ and tissue +C2891312|T037|HT|T86.9|ICD10CM|Complication of unspecified transplanted organ and tissue|Complication of unspecified transplanted organ and tissue +C0496156|T046|PT|T86.9|ICD10|Failure and rejection of unspecified transplanted organ and tissue|Failure and rejection of unspecified transplanted organ and tissue +C2891313|T037|AB|T86.90|ICD10CM|Unsp complication of unsp transplanted organ and tissue|Unsp complication of unsp transplanted organ and tissue +C2891313|T037|PT|T86.90|ICD10CM|Unspecified complication of unspecified transplanted organ and tissue|Unspecified complication of unspecified transplanted organ and tissue +C2891314|T037|AB|T86.91|ICD10CM|Unspecified transplanted organ and tissue rejection|Unspecified transplanted organ and tissue rejection +C2891314|T037|PT|T86.91|ICD10CM|Unspecified transplanted organ and tissue rejection|Unspecified transplanted organ and tissue rejection +C2891315|T037|AB|T86.92|ICD10CM|Unspecified transplanted organ and tissue failure|Unspecified transplanted organ and tissue failure +C2891315|T037|PT|T86.92|ICD10CM|Unspecified transplanted organ and tissue failure|Unspecified transplanted organ and tissue failure +C2891316|T037|AB|T86.93|ICD10CM|Unspecified transplanted organ and tissue infection|Unspecified transplanted organ and tissue infection +C2891316|T037|PT|T86.93|ICD10CM|Unspecified transplanted organ and tissue infection|Unspecified transplanted organ and tissue infection +C2891317|T037|AB|T86.99|ICD10CM|Other complications of unsp transplanted organ and tissue|Other complications of unsp transplanted organ and tissue +C2891317|T037|PT|T86.99|ICD10CM|Other complications of unspecified transplanted organ and tissue|Other complications of unspecified transplanted organ and tissue +C0496157|T037|HT|T87|ICD10|Complications peculiar to reattachment and amputation|Complications peculiar to reattachment and amputation +C0496157|T037|AB|T87|ICD10CM|Complications peculiar to reattachment and amputation|Complications peculiar to reattachment and amputation +C0496157|T037|HT|T87|ICD10CM|Complications peculiar to reattachment and amputation|Complications peculiar to reattachment and amputation +C0161810|T037|HT|T87.0|ICD10CM|Complications of reattached (part of) upper extremity|Complications of reattached (part of) upper extremity +C0161810|T037|AB|T87.0|ICD10CM|Complications of reattached (part of) upper extremity|Complications of reattached (part of) upper extremity +C0161810|T037|PT|T87.0|ICD10|Complications of reattached (part of) upper extremity|Complications of reattached (part of) upper extremity +C0161810|T037|HT|T87.0X|ICD10CM|Complications of reattached (part of) upper extremity|Complications of reattached (part of) upper extremity +C0161810|T037|AB|T87.0X|ICD10CM|Complications of reattached (part of) upper extremity|Complications of reattached (part of) upper extremity +C2891318|T037|AB|T87.0X1|ICD10CM|Complications of reattached (part of) right upper extremity|Complications of reattached (part of) right upper extremity +C2891318|T037|PT|T87.0X1|ICD10CM|Complications of reattached (part of) right upper extremity|Complications of reattached (part of) right upper extremity +C2891319|T037|AB|T87.0X2|ICD10CM|Complications of reattached (part of) left upper extremity|Complications of reattached (part of) left upper extremity +C2891319|T037|PT|T87.0X2|ICD10CM|Complications of reattached (part of) left upper extremity|Complications of reattached (part of) left upper extremity +C2977160|T037|AB|T87.0X9|ICD10CM|Complications of reattached (part of) unsp upper extremity|Complications of reattached (part of) unsp upper extremity +C2977160|T037|PT|T87.0X9|ICD10CM|Complications of reattached (part of) unspecified upper extremity|Complications of reattached (part of) unspecified upper extremity +C0161812|T046|HT|T87.1|ICD10CM|Complications of reattached (part of) lower extremity|Complications of reattached (part of) lower extremity +C0161812|T046|AB|T87.1|ICD10CM|Complications of reattached (part of) lower extremity|Complications of reattached (part of) lower extremity +C0161812|T046|PT|T87.1|ICD10|Complications of reattached (part of) lower extremity|Complications of reattached (part of) lower extremity +C0161812|T046|HT|T87.1X|ICD10CM|Complications of reattached (part of) lower extremity|Complications of reattached (part of) lower extremity +C0161812|T046|AB|T87.1X|ICD10CM|Complications of reattached (part of) lower extremity|Complications of reattached (part of) lower extremity +C2891321|T037|AB|T87.1X1|ICD10CM|Complications of reattached (part of) right lower extremity|Complications of reattached (part of) right lower extremity +C2891321|T037|PT|T87.1X1|ICD10CM|Complications of reattached (part of) right lower extremity|Complications of reattached (part of) right lower extremity +C2891322|T037|AB|T87.1X2|ICD10CM|Complications of reattached (part of) left lower extremity|Complications of reattached (part of) left lower extremity +C2891322|T037|PT|T87.1X2|ICD10CM|Complications of reattached (part of) left lower extremity|Complications of reattached (part of) left lower extremity +C2977161|T046|AB|T87.1X9|ICD10CM|Complications of reattached (part of) unsp lower extremity|Complications of reattached (part of) unsp lower extremity +C2977161|T046|PT|T87.1X9|ICD10CM|Complications of reattached (part of) unspecified lower extremity|Complications of reattached (part of) unspecified lower extremity +C0410870|T046|PT|T87.2|ICD10|Complications of other reattached body part|Complications of other reattached body part +C0410870|T046|PT|T87.2|ICD10CM|Complications of other reattached body part|Complications of other reattached body part +C0410870|T046|AB|T87.2|ICD10CM|Complications of other reattached body part|Complications of other reattached body part +C0392617|T047|HT|T87.3|ICD10CM|Neuroma of amputation stump|Neuroma of amputation stump +C0392617|T047|AB|T87.3|ICD10CM|Neuroma of amputation stump|Neuroma of amputation stump +C0392617|T047|PT|T87.3|ICD10|Neuroma of amputation stump|Neuroma of amputation stump +C2891324|T037|AB|T87.30|ICD10CM|Neuroma of amputation stump, unspecified extremity|Neuroma of amputation stump, unspecified extremity +C2891324|T037|PT|T87.30|ICD10CM|Neuroma of amputation stump, unspecified extremity|Neuroma of amputation stump, unspecified extremity +C2891325|T191|AB|T87.31|ICD10CM|Neuroma of amputation stump, right upper extremity|Neuroma of amputation stump, right upper extremity +C2891325|T191|PT|T87.31|ICD10CM|Neuroma of amputation stump, right upper extremity|Neuroma of amputation stump, right upper extremity +C2891326|T191|AB|T87.32|ICD10CM|Neuroma of amputation stump, left upper extremity|Neuroma of amputation stump, left upper extremity +C2891326|T191|PT|T87.32|ICD10CM|Neuroma of amputation stump, left upper extremity|Neuroma of amputation stump, left upper extremity +C2891327|T191|AB|T87.33|ICD10CM|Neuroma of amputation stump, right lower extremity|Neuroma of amputation stump, right lower extremity +C2891327|T191|PT|T87.33|ICD10CM|Neuroma of amputation stump, right lower extremity|Neuroma of amputation stump, right lower extremity +C2891328|T191|AB|T87.34|ICD10CM|Neuroma of amputation stump, left lower extremity|Neuroma of amputation stump, left lower extremity +C2891328|T191|PT|T87.34|ICD10CM|Neuroma of amputation stump, left lower extremity|Neuroma of amputation stump, left lower extremity +C0392042|T046|PT|T87.4|ICD10|Infection of amputation stump|Infection of amputation stump +C0392042|T046|HT|T87.4|ICD10CM|Infection of amputation stump|Infection of amputation stump +C0392042|T046|AB|T87.4|ICD10CM|Infection of amputation stump|Infection of amputation stump +C2891329|T037|AB|T87.40|ICD10CM|Infection of amputation stump, unspecified extremity|Infection of amputation stump, unspecified extremity +C2891329|T037|PT|T87.40|ICD10CM|Infection of amputation stump, unspecified extremity|Infection of amputation stump, unspecified extremity +C2891330|T046|AB|T87.41|ICD10CM|Infection of amputation stump, right upper extremity|Infection of amputation stump, right upper extremity +C2891330|T046|PT|T87.41|ICD10CM|Infection of amputation stump, right upper extremity|Infection of amputation stump, right upper extremity +C2891331|T046|AB|T87.42|ICD10CM|Infection of amputation stump, left upper extremity|Infection of amputation stump, left upper extremity +C2891331|T046|PT|T87.42|ICD10CM|Infection of amputation stump, left upper extremity|Infection of amputation stump, left upper extremity +C2891332|T046|AB|T87.43|ICD10CM|Infection of amputation stump, right lower extremity|Infection of amputation stump, right lower extremity +C2891332|T046|PT|T87.43|ICD10CM|Infection of amputation stump, right lower extremity|Infection of amputation stump, right lower extremity +C2891333|T046|AB|T87.44|ICD10CM|Infection of amputation stump, left lower extremity|Infection of amputation stump, left lower extremity +C2891333|T046|PT|T87.44|ICD10CM|Infection of amputation stump, left lower extremity|Infection of amputation stump, left lower extremity +C0410846|T047|HT|T87.5|ICD10CM|Necrosis of amputation stump|Necrosis of amputation stump +C0410846|T047|AB|T87.5|ICD10CM|Necrosis of amputation stump|Necrosis of amputation stump +C0410846|T047|PT|T87.5|ICD10|Necrosis of amputation stump|Necrosis of amputation stump +C2891334|T037|AB|T87.50|ICD10CM|Necrosis of amputation stump, unspecified extremity|Necrosis of amputation stump, unspecified extremity +C2891334|T037|PT|T87.50|ICD10CM|Necrosis of amputation stump, unspecified extremity|Necrosis of amputation stump, unspecified extremity +C2891335|T047|AB|T87.51|ICD10CM|Necrosis of amputation stump, right upper extremity|Necrosis of amputation stump, right upper extremity +C2891335|T047|PT|T87.51|ICD10CM|Necrosis of amputation stump, right upper extremity|Necrosis of amputation stump, right upper extremity +C2891336|T047|AB|T87.52|ICD10CM|Necrosis of amputation stump, left upper extremity|Necrosis of amputation stump, left upper extremity +C2891336|T047|PT|T87.52|ICD10CM|Necrosis of amputation stump, left upper extremity|Necrosis of amputation stump, left upper extremity +C2891337|T046|AB|T87.53|ICD10CM|Necrosis of amputation stump, right lower extremity|Necrosis of amputation stump, right lower extremity +C2891337|T046|PT|T87.53|ICD10CM|Necrosis of amputation stump, right lower extremity|Necrosis of amputation stump, right lower extremity +C2891338|T046|AB|T87.54|ICD10CM|Necrosis of amputation stump, left lower extremity|Necrosis of amputation stump, left lower extremity +C2891338|T046|PT|T87.54|ICD10CM|Necrosis of amputation stump, left lower extremity|Necrosis of amputation stump, left lower extremity +C0478501|T046|PT|T87.6|ICD10|Other and unspecified complications of amputation stump|Other and unspecified complications of amputation stump +C2891341|T046|HT|T87.8|ICD10CM|Other complications of amputation stump|Other complications of amputation stump +C2891341|T046|AB|T87.8|ICD10CM|Other complications of amputation stump|Other complications of amputation stump +C3263931|T037|AB|T87.81|ICD10CM|Dehiscence of amputation stump|Dehiscence of amputation stump +C3263931|T037|PT|T87.81|ICD10CM|Dehiscence of amputation stump|Dehiscence of amputation stump +C1387300|T046|ET|T87.89|ICD10CM|Amputation stump contracture|Amputation stump contracture +C2891339|T046|ET|T87.89|ICD10CM|Amputation stump contracture of next proximal joint|Amputation stump contracture of next proximal joint +C1387302|T046|ET|T87.89|ICD10CM|Amputation stump edema|Amputation stump edema +C2891340|T046|ET|T87.89|ICD10CM|Amputation stump flexion|Amputation stump flexion +C1387301|T046|ET|T87.89|ICD10CM|Amputation stump hematoma|Amputation stump hematoma +C2891341|T046|AB|T87.89|ICD10CM|Other complications of amputation stump|Other complications of amputation stump +C2891341|T046|PT|T87.89|ICD10CM|Other complications of amputation stump|Other complications of amputation stump +C2891342|T037|AB|T87.9|ICD10CM|Unspecified complications of amputation stump|Unspecified complications of amputation stump +C2891342|T037|PT|T87.9|ICD10CM|Unspecified complications of amputation stump|Unspecified complications of amputation stump +C0496158|T037|AB|T88|ICD10CM|Oth complications of surgical and medical care, NEC|Oth complications of surgical and medical care, NEC +C0496158|T037|HT|T88|ICD10CM|Other complications of surgical and medical care, not elsewhere classified|Other complications of surgical and medical care, not elsewhere classified +C0496158|T037|HT|T88|ICD10|Other complications of surgical and medical care, not elsewhere classified|Other complications of surgical and medical care, not elsewhere classified +C0452115|T046|PT|T88.0|ICD10|Infection following immunization|Infection following immunization +C0452115|T046|HT|T88.0|ICD10CM|Infection following immunization|Infection following immunization +C0452115|T046|AB|T88.0|ICD10CM|Infection following immunization|Infection following immunization +C2891343|T046|ET|T88.0|ICD10CM|Sepsis following immunization|Sepsis following immunization +C2891344|T037|AB|T88.0XXA|ICD10CM|Infection following immunization, initial encounter|Infection following immunization, initial encounter +C2891344|T037|PT|T88.0XXA|ICD10CM|Infection following immunization, initial encounter|Infection following immunization, initial encounter +C2891345|T037|AB|T88.0XXD|ICD10CM|Infection following immunization, subsequent encounter|Infection following immunization, subsequent encounter +C2891345|T037|PT|T88.0XXD|ICD10CM|Infection following immunization, subsequent encounter|Infection following immunization, subsequent encounter +C2891346|T037|AB|T88.0XXS|ICD10CM|Infection following immunization, sequela|Infection following immunization, sequela +C2891346|T037|PT|T88.0XXS|ICD10CM|Infection following immunization, sequela|Infection following immunization, sequela +C0042217|T047|ET|T88.1|ICD10CM|Generalized vaccinia|Generalized vaccinia +C0869115|T046|AB|T88.1|ICD10CM|Oth complications following immunization, NEC|Oth complications following immunization, NEC +C0869115|T046|HT|T88.1|ICD10CM|Other complications following immunization, not elsewhere classified|Other complications following immunization, not elsewhere classified +C0869115|T046|PT|T88.1|ICD10|Other complications following immunization, not elsewhere classified|Other complications following immunization, not elsewhere classified +C1407867|T046|ET|T88.1|ICD10CM|Rash following immunization|Rash following immunization +C2891347|T037|AB|T88.1XXA|ICD10CM|Oth complications following immunization, NEC, init|Oth complications following immunization, NEC, init +C2891347|T037|PT|T88.1XXA|ICD10CM|Other complications following immunization, not elsewhere classified, initial encounter|Other complications following immunization, not elsewhere classified, initial encounter +C2891348|T037|AB|T88.1XXD|ICD10CM|Oth complications following immunization, NEC, subs|Oth complications following immunization, NEC, subs +C2891348|T037|PT|T88.1XXD|ICD10CM|Other complications following immunization, not elsewhere classified, subsequent encounter|Other complications following immunization, not elsewhere classified, subsequent encounter +C2891349|T037|AB|T88.1XXS|ICD10CM|Oth complications following immunization, NEC, sequela|Oth complications following immunization, NEC, sequela +C2891349|T037|PT|T88.1XXS|ICD10CM|Other complications following immunization, not elsewhere classified, sequela|Other complications following immunization, not elsewhere classified, sequela +C0161754|T046|PT|T88.2|ICD10|Shock due to anaesthesia|Shock due to anaesthesia +C0161754|T046|HT|T88.2|ICD10CM|Shock due to anesthesia|Shock due to anesthesia +C0161754|T046|AB|T88.2|ICD10CM|Shock due to anesthesia|Shock due to anesthesia +C0161754|T046|PT|T88.2|ICD10AE|Shock due to anesthesia|Shock due to anesthesia +C2891350|T037|AB|T88.2XXA|ICD10CM|Shock due to anesthesia, initial encounter|Shock due to anesthesia, initial encounter +C2891350|T037|PT|T88.2XXA|ICD10CM|Shock due to anesthesia, initial encounter|Shock due to anesthesia, initial encounter +C2891351|T037|AB|T88.2XXD|ICD10CM|Shock due to anesthesia, subsequent encounter|Shock due to anesthesia, subsequent encounter +C2891351|T037|PT|T88.2XXD|ICD10CM|Shock due to anesthesia, subsequent encounter|Shock due to anesthesia, subsequent encounter +C2891352|T037|AB|T88.2XXS|ICD10CM|Shock due to anesthesia, sequela|Shock due to anesthesia, sequela +C2891352|T037|PT|T88.2XXS|ICD10CM|Shock due to anesthesia, sequela|Shock due to anesthesia, sequela +C0024591|T047|PT|T88.3|ICD10|Malignant hyperthermia due to anaesthesia|Malignant hyperthermia due to anaesthesia +C0024591|T047|PT|T88.3|ICD10AE|Malignant hyperthermia due to anesthesia|Malignant hyperthermia due to anesthesia +C0024591|T047|HT|T88.3|ICD10CM|Malignant hyperthermia due to anesthesia|Malignant hyperthermia due to anesthesia +C0024591|T047|AB|T88.3|ICD10CM|Malignant hyperthermia due to anesthesia|Malignant hyperthermia due to anesthesia +C2891353|T037|AB|T88.3XXA|ICD10CM|Malignant hyperthermia due to anesthesia, initial encounter|Malignant hyperthermia due to anesthesia, initial encounter +C2891353|T037|PT|T88.3XXA|ICD10CM|Malignant hyperthermia due to anesthesia, initial encounter|Malignant hyperthermia due to anesthesia, initial encounter +C2891354|T037|AB|T88.3XXD|ICD10CM|Malignant hyperthermia due to anesthesia, subs encntr|Malignant hyperthermia due to anesthesia, subs encntr +C2891354|T037|PT|T88.3XXD|ICD10CM|Malignant hyperthermia due to anesthesia, subsequent encounter|Malignant hyperthermia due to anesthesia, subsequent encounter +C2891355|T037|AB|T88.3XXS|ICD10CM|Malignant hyperthermia due to anesthesia, sequela|Malignant hyperthermia due to anesthesia, sequela +C2891355|T037|PT|T88.3XXS|ICD10CM|Malignant hyperthermia due to anesthesia, sequela|Malignant hyperthermia due to anesthesia, sequela +C0452114|T046|PT|T88.4|ICD10|Failed or difficult intubation|Failed or difficult intubation +C0452114|T046|HT|T88.4|ICD10CM|Failed or difficult intubation|Failed or difficult intubation +C0452114|T046|AB|T88.4|ICD10CM|Failed or difficult intubation|Failed or difficult intubation +C2891356|T037|AB|T88.4XXA|ICD10CM|Failed or difficult intubation, initial encounter|Failed or difficult intubation, initial encounter +C2891356|T037|PT|T88.4XXA|ICD10CM|Failed or difficult intubation, initial encounter|Failed or difficult intubation, initial encounter +C2891357|T037|AB|T88.4XXD|ICD10CM|Failed or difficult intubation, subsequent encounter|Failed or difficult intubation, subsequent encounter +C2891357|T037|PT|T88.4XXD|ICD10CM|Failed or difficult intubation, subsequent encounter|Failed or difficult intubation, subsequent encounter +C2891358|T037|AB|T88.4XXS|ICD10CM|Failed or difficult intubation, sequela|Failed or difficult intubation, sequela +C2891358|T037|PT|T88.4XXS|ICD10CM|Failed or difficult intubation, sequela|Failed or difficult intubation, sequela +C0478503|T046|PT|T88.5|ICD10|Other complications of anaesthesia|Other complications of anaesthesia +C0478503|T046|PT|T88.5|ICD10AE|Other complications of anesthesia|Other complications of anesthesia +C0478503|T046|HT|T88.5|ICD10CM|Other complications of anesthesia|Other complications of anesthesia +C0478503|T046|AB|T88.5|ICD10CM|Other complications of anesthesia|Other complications of anesthesia +C2891359|T037|AB|T88.51|ICD10CM|Hypothermia following anesthesia|Hypothermia following anesthesia +C2891359|T037|HT|T88.51|ICD10CM|Hypothermia following anesthesia|Hypothermia following anesthesia +C2891360|T037|AB|T88.51XA|ICD10CM|Hypothermia following anesthesia, initial encounter|Hypothermia following anesthesia, initial encounter +C2891360|T037|PT|T88.51XA|ICD10CM|Hypothermia following anesthesia, initial encounter|Hypothermia following anesthesia, initial encounter +C2891361|T037|AB|T88.51XD|ICD10CM|Hypothermia following anesthesia, subsequent encounter|Hypothermia following anesthesia, subsequent encounter +C2891361|T037|PT|T88.51XD|ICD10CM|Hypothermia following anesthesia, subsequent encounter|Hypothermia following anesthesia, subsequent encounter +C2891362|T037|AB|T88.51XS|ICD10CM|Hypothermia following anesthesia, sequela|Hypothermia following anesthesia, sequela +C2891362|T037|PT|T88.51XS|ICD10CM|Hypothermia following anesthesia, sequela|Hypothermia following anesthesia, sequela +C2712868|T037|ET|T88.52|ICD10CM|Failed conscious sedation during procedure|Failed conscious sedation during procedure +C2712382|T037|HT|T88.52|ICD10CM|Failed moderate sedation during procedure|Failed moderate sedation during procedure +C2712382|T037|AB|T88.52|ICD10CM|Failed moderate sedation during procedure|Failed moderate sedation during procedure +C2891363|T037|AB|T88.52XA|ICD10CM|Failed moderate sedation during procedure, initial encounter|Failed moderate sedation during procedure, initial encounter +C2891363|T037|PT|T88.52XA|ICD10CM|Failed moderate sedation during procedure, initial encounter|Failed moderate sedation during procedure, initial encounter +C2891364|T037|AB|T88.52XD|ICD10CM|Failed moderate sedation during procedure, subs encntr|Failed moderate sedation during procedure, subs encntr +C2891364|T037|PT|T88.52XD|ICD10CM|Failed moderate sedation during procedure, subsequent encounter|Failed moderate sedation during procedure, subsequent encounter +C2891365|T037|AB|T88.52XS|ICD10CM|Failed moderate sedation during procedure, sequela|Failed moderate sedation during procedure, sequela +C2891365|T037|PT|T88.52XS|ICD10CM|Failed moderate sedation during procedure, sequela|Failed moderate sedation during procedure, sequela +C4270663|T046|AB|T88.53|ICD10CM|Unintended awareness under general anesth during procedure|Unintended awareness under general anesth during procedure +C4270663|T046|HT|T88.53|ICD10CM|Unintended awareness under general anesthesia during procedure|Unintended awareness under general anesthesia during procedure +C4270664|T046|AB|T88.53XA|ICD10CM|Unintended awareness under general anesth during proc, init|Unintended awareness under general anesth during proc, init +C4270664|T046|PT|T88.53XA|ICD10CM|Unintended awareness under general anesthesia during procedure, initial encounter|Unintended awareness under general anesthesia during procedure, initial encounter +C4270665|T046|AB|T88.53XD|ICD10CM|Unintended awareness under general anesth during proc, subs|Unintended awareness under general anesth during proc, subs +C4270665|T046|PT|T88.53XD|ICD10CM|Unintended awareness under general anesthesia during procedure, subsequent encounter|Unintended awareness under general anesthesia during procedure, subsequent encounter +C4270666|T046|AB|T88.53XS|ICD10CM|Unintended awareness under general anesth during proc, sqla|Unintended awareness under general anesth during proc, sqla +C4270666|T046|PT|T88.53XS|ICD10CM|Unintended awareness under general anesthesia during procedure, sequela|Unintended awareness under general anesthesia during procedure, sequela +C0478503|T046|HT|T88.59|ICD10CM|Other complications of anesthesia|Other complications of anesthesia +C0478503|T046|AB|T88.59|ICD10CM|Other complications of anesthesia|Other complications of anesthesia +C2891366|T037|AB|T88.59XA|ICD10CM|Other complications of anesthesia, initial encounter|Other complications of anesthesia, initial encounter +C2891366|T037|PT|T88.59XA|ICD10CM|Other complications of anesthesia, initial encounter|Other complications of anesthesia, initial encounter +C2891367|T037|AB|T88.59XD|ICD10CM|Other complications of anesthesia, subsequent encounter|Other complications of anesthesia, subsequent encounter +C2891367|T037|PT|T88.59XD|ICD10CM|Other complications of anesthesia, subsequent encounter|Other complications of anesthesia, subsequent encounter +C2891368|T037|AB|T88.59XS|ICD10CM|Other complications of anesthesia, sequela|Other complications of anesthesia, sequela +C2891368|T037|PT|T88.59XS|ICD10CM|Other complications of anesthesia, sequela|Other complications of anesthesia, sequela +C3263932|T046|HT|T88.6|ICD10CM|Anaphylactic reaction due to adverse effect of correct drug or medicament properly administered|Anaphylactic reaction due to adverse effect of correct drug or medicament properly administered +C3263932|T046|AB|T88.6|ICD10CM|Anaphylactic reaction due to advrs eff drug/med prop admin|Anaphylactic reaction due to advrs eff drug/med prop admin +C0274304|T046|PT|T88.6|ICD10|Anaphylactic shock due to adverse effect of correct drug or medicament properly administered|Anaphylactic shock due to adverse effect of correct drug or medicament properly administered +C0274304|T046|ET|T88.6|ICD10CM|Anaphylactic shock due to adverse effect of correct drug or medicament properly administered|Anaphylactic shock due to adverse effect of correct drug or medicament properly administered +C0340865|T046|ET|T88.6|ICD10CM|Anaphylactoid reaction NOS|Anaphylactoid reaction NOS +C2891369|T046|AB|T88.6XXA|ICD10CM|Anaphyl reaction due to advrs eff drug/med prop admin, init|Anaphyl reaction due to advrs eff drug/med prop admin, init +C2891370|T046|AB|T88.6XXD|ICD10CM|Anaphyl reaction due to advrs eff drug/med prop admin, subs|Anaphyl reaction due to advrs eff drug/med prop admin, subs +C2891371|T046|AB|T88.6XXS|ICD10CM|Anaphyl react due to advrs eff drug/med prop admin, sequela|Anaphyl react due to advrs eff drug/med prop admin, sequela +C0013182|T046|ET|T88.7|ICD10CM|Drug hypersensitivity NOS|Drug hypersensitivity NOS +C0041755|T046|ET|T88.7|ICD10CM|Drug reaction NOS|Drug reaction NOS +C0478506|T037|PT|T88.7|ICD10|Unspecified adverse effect of drug or medicament|Unspecified adverse effect of drug or medicament +C0478506|T037|HT|T88.7|ICD10CM|Unspecified adverse effect of drug or medicament|Unspecified adverse effect of drug or medicament +C0478506|T037|AB|T88.7|ICD10CM|Unspecified adverse effect of drug or medicament|Unspecified adverse effect of drug or medicament +C2891372|T037|AB|T88.7XXA|ICD10CM|Unsp adverse effect of drug or medicament, init encntr|Unsp adverse effect of drug or medicament, init encntr +C2891372|T037|PT|T88.7XXA|ICD10CM|Unspecified adverse effect of drug or medicament, initial encounter|Unspecified adverse effect of drug or medicament, initial encounter +C2891373|T037|AB|T88.7XXD|ICD10CM|Unsp adverse effect of drug or medicament, subs encntr|Unsp adverse effect of drug or medicament, subs encntr +C2891373|T037|PT|T88.7XXD|ICD10CM|Unspecified adverse effect of drug or medicament, subsequent encounter|Unspecified adverse effect of drug or medicament, subsequent encounter +C2891374|T037|AB|T88.7XXS|ICD10CM|Unspecified adverse effect of drug or medicament, sequela|Unspecified adverse effect of drug or medicament, sequela +C2891374|T037|PT|T88.7XXS|ICD10CM|Unspecified adverse effect of drug or medicament, sequela|Unspecified adverse effect of drug or medicament, sequela +C0496160|T037|AB|T88.8|ICD10CM|Oth complications of surgical and medical care, NEC|Oth complications of surgical and medical care, NEC +C0496160|T037|HT|T88.8|ICD10CM|Other specified complications of surgical and medical care, not elsewhere classified|Other specified complications of surgical and medical care, not elsewhere classified +C0496160|T037|PT|T88.8|ICD10|Other specified complications of surgical and medical care, not elsewhere classified|Other specified complications of surgical and medical care, not elsewhere classified +C2891375|T037|AB|T88.8XXA|ICD10CM|Oth complications of surgical and medical care, NEC, init|Oth complications of surgical and medical care, NEC, init +C2891376|T037|AB|T88.8XXD|ICD10CM|Oth complications of surgical and medical care, NEC, subs|Oth complications of surgical and medical care, NEC, subs +C2891377|T037|AB|T88.8XXS|ICD10CM|Oth complications of surgical and medical care, NEC, sequela|Oth complications of surgical and medical care, NEC, sequela +C2891377|T037|PT|T88.8XXS|ICD10CM|Other specified complications of surgical and medical care, not elsewhere classified, sequela|Other specified complications of surgical and medical care, not elsewhere classified, sequela +C0274310|T046|HT|T88.9|ICD10CM|Complication of surgical and medical care, unspecified|Complication of surgical and medical care, unspecified +C0274310|T046|AB|T88.9|ICD10CM|Complication of surgical and medical care, unspecified|Complication of surgical and medical care, unspecified +C0274310|T046|PT|T88.9|ICD10|Complication of surgical and medical care, unspecified|Complication of surgical and medical care, unspecified +C2891378|T037|AB|T88.9XXA|ICD10CM|Complication of surgical and medical care, unsp, init encntr|Complication of surgical and medical care, unsp, init encntr +C2891378|T037|PT|T88.9XXA|ICD10CM|Complication of surgical and medical care, unspecified, initial encounter|Complication of surgical and medical care, unspecified, initial encounter +C2891379|T037|AB|T88.9XXD|ICD10CM|Complication of surgical and medical care, unsp, subs encntr|Complication of surgical and medical care, unsp, subs encntr +C2891379|T037|PT|T88.9XXD|ICD10CM|Complication of surgical and medical care, unspecified, subsequent encounter|Complication of surgical and medical care, unspecified, subsequent encounter +C2891380|T037|AB|T88.9XXS|ICD10CM|Complication of surgical and medical care, unsp, sequela|Complication of surgical and medical care, unsp, sequela +C2891380|T037|PT|T88.9XXS|ICD10CM|Complication of surgical and medical care, unspecified, sequela|Complication of surgical and medical care, unspecified, sequela +C0496161|T046|HT|T90|ICD10|Sequelae of injuries of head|Sequelae of injuries of head +C0478507|T046|HT|T90-T98.9|ICD10|Sequelae of injuries, of poisoning and of other consequences of external causes|Sequelae of injuries, of poisoning and of other consequences of external causes +C0451947|T046|PT|T90.0|ICD10|Sequelae of superficial injury of head|Sequelae of superficial injury of head +C0451913|T046|PT|T90.1|ICD10|Sequelae of open wound of head|Sequelae of open wound of head +C0160774|T046|PT|T90.2|ICD10|Sequelae of fracture of skull and facial bones|Sequelae of fracture of skull and facial bones +C0160796|T046|PT|T90.3|ICD10|Sequelae of injury of cranial nerves|Sequelae of injury of cranial nerves +C0452052|T046|PT|T90.4|ICD10|Sequelae of injury of eye and orbit|Sequelae of injury of eye and orbit +C0274278|T037|PT|T90.5|ICD10|Sequelae of intracranial injury|Sequelae of intracranial injury +C0478508|T046|PT|T90.8|ICD10|Sequelae of other specified injuries of head|Sequelae of other specified injuries of head +C0496161|T046|PT|T90.9|ICD10|Sequelae of unspecified injury of head|Sequelae of unspecified injury of head +C0496165|T046|HT|T91|ICD10|Sequelae of injuries of neck and trunk|Sequelae of injuries of neck and trunk +C0451916|T037|PT|T91.0|ICD10|Sequelae of superficial injury and open wound of neck and trunk|Sequelae of superficial injury and open wound of neck and trunk +C0274273|T046|PT|T91.1|ICD10|Sequelae of fracture of spine|Sequelae of fracture of spine +C0478509|T037|PT|T91.2|ICD10|Sequelae of other fracture of thorax and pelvis|Sequelae of other fracture of thorax and pelvis +C1331979|T046|PT|T91.3|ICD10|Sequelae of injury of spinal cord|Sequelae of injury of spinal cord +C0160803|T046|PT|T91.4|ICD10|Sequelae of injury of intrathoracic organs|Sequelae of injury of intrathoracic organs +C0436108|T046|PT|T91.5|ICD10|Sequelae of injury of intra-abdominal and pelvic organs|Sequelae of injury of intra-abdominal and pelvic organs +C0478510|T037|PT|T91.8|ICD10|Sequelae of other specified injuries of neck and trunk|Sequelae of other specified injuries of neck and trunk +C0496165|T046|PT|T91.9|ICD10|Sequelae of unspecified injury of neck and trunk|Sequelae of unspecified injury of neck and trunk +C0496170|T046|HT|T92|ICD10|Sequelae of injuries of upper limb|Sequelae of injuries of upper limb +C0451917|T046|PT|T92.0|ICD10|Sequelae of open wound of upper limb|Sequelae of open wound of upper limb +C0496171|T037|PT|T92.1|ICD10|Sequelae of fracture of arm|Sequelae of fracture of arm +C0452091|T046|PT|T92.2|ICD10|Sequelae of fracture at wrist and hand level|Sequelae of fracture at wrist and hand level +C0451821|T046|PT|T92.3|ICD10|Sequelae of dislocation, sprain and strain of upper limb|Sequelae of dislocation, sprain and strain of upper limb +C0160799|T046|PT|T92.4|ICD10|Sequelae of injury of nerve of upper limb|Sequelae of injury of nerve of upper limb +C0451846|T046|PT|T92.5|ICD10|Sequelae of injury of muscle and tendon of upper limb|Sequelae of injury of muscle and tendon of upper limb +C0451982|T046|PT|T92.6|ICD10|Sequelae of crushing injury and traumatic amputation of upper limb|Sequelae of crushing injury and traumatic amputation of upper limb +C0478511|T037|PT|T92.8|ICD10|Sequelae of other specified injuries of upper limb|Sequelae of other specified injuries of upper limb +C0496170|T046|PT|T92.9|ICD10|Sequelae of unspecified injury of upper limb|Sequelae of unspecified injury of upper limb +C0478519|T046|HT|T93|ICD10|Sequelae of injuries of lower limb|Sequelae of injuries of lower limb +C0451976|T046|PT|T93.0|ICD10|Sequelae of open wound of lower limb|Sequelae of open wound of lower limb +C0496173|T046|PT|T93.1|ICD10|Sequelae of fracture of femur|Sequelae of fracture of femur +C0478512|T037|PT|T93.2|ICD10|Sequelae of other fractures of lower limb|Sequelae of other fractures of lower limb +C0451977|T046|PT|T93.3|ICD10|Sequelae of dislocation, sprain and strain of lower limb|Sequelae of dislocation, sprain and strain of lower limb +C0160800|T046|PT|T93.4|ICD10|Sequelae of injury of nerve of lower limb|Sequelae of injury of nerve of lower limb +C0451978|T046|PT|T93.5|ICD10|Sequelae of injury of muscle and tendon of lower limb|Sequelae of injury of muscle and tendon of lower limb +C0451983|T046|PT|T93.6|ICD10|Sequelae of crushing injury and traumatic amputation of lower limb|Sequelae of crushing injury and traumatic amputation of lower limb +C0478513|T037|PT|T93.8|ICD10|Sequelae of other specified injuries of lower limb|Sequelae of other specified injuries of lower limb +C0478519|T046|PT|T93.9|ICD10|Sequelae of unspecified injury of lower limb|Sequelae of unspecified injury of lower limb +C0496176|T037|HT|T94|ICD10|Sequelae of injuries involving multiple and unspecified body regions|Sequelae of injuries involving multiple and unspecified body regions +C0496176|T037|PT|T94.0|ICD10|Sequelae of injuries involving multiple body regions|Sequelae of injuries involving multiple body regions +C0478514|T037|PT|T94.1|ICD10|Sequelae of injuries, not specified by body region|Sequelae of injuries, not specified by body region +C0452025|T046|HT|T95|ICD10|Sequelae of burns, corrosions and frostbite|Sequelae of burns, corrosions and frostbite +C0496177|T037|PT|T95.0|ICD10|Sequelae of burn, corrosion and frostbite of head and neck|Sequelae of burn, corrosion and frostbite of head and neck +C0452026|T046|PT|T95.1|ICD10|Sequelae of burn, corrosion and frostbite of trunk|Sequelae of burn, corrosion and frostbite of trunk +C0496178|T046|PT|T95.2|ICD10|Sequelae of burn, corrosion and frostbite of upper limb|Sequelae of burn, corrosion and frostbite of upper limb +C0452027|T046|PT|T95.3|ICD10|Sequelae of burn, corrosion and frostbite of lower limb|Sequelae of burn, corrosion and frostbite of lower limb +C0478515|T046|PT|T95.4|ICD10|Sequelae of burn and corrosion classifiable only according to extent of body surface involved|Sequelae of burn and corrosion classifiable only according to extent of body surface involved +C0478516|T037|PT|T95.8|ICD10|Sequelae of other specified burn, corrosion and frostbite|Sequelae of other specified burn, corrosion and frostbite +C0496179|T037|PT|T95.9|ICD10|Sequelae of unspecified burn, corrosion and frostbite|Sequelae of unspecified burn, corrosion and frostbite +C1331986|T046|PT|T96|ICD10|Sequelae of poisoning by drugs, medicaments and biological substances|Sequelae of poisoning by drugs, medicaments and biological substances +C0496181|T046|PT|T97|ICD10|Sequelae of toxic effects of substances chiefly nonmedicinal as to source|Sequelae of toxic effects of substances chiefly nonmedicinal as to source +C0478517|T037|HT|T98|ICD10|Sequelae of other and unspecified effects of external causes|Sequelae of other and unspecified effects of external causes +C0496182|T037|PT|T98.0|ICD10|Sequelae of effects of foreign body entering through natural orifice|Sequelae of effects of foreign body entering through natural orifice +C0478517|T037|PT|T98.1|ICD10|Sequelae of other and unspecified effects of external causes|Sequelae of other and unspecified effects of external causes +C0496183|T046|PT|T98.2|ICD10|Sequelae of certain early complications of trauma|Sequelae of certain early complications of trauma +C0869116|T037|PT|T98.3|ICD10|Sequelae of complications of surgical and medical care, not elsewhere classified|Sequelae of complications of surgical and medical care, not elsewhere classified +C2891381|T037|HT|V00|ICD10CM|Pedestrian conveyance accident|Pedestrian conveyance accident +C2891381|T037|AB|V00|ICD10CM|Pedestrian conveyance accident|Pedestrian conveyance accident +C0476747|T037|HT|V00-V09|ICD10CM|Pedestrian injured in transport accident (V00-V09)|Pedestrian injured in transport accident (V00-V09) +C4290412|T037|ET|V00-V09|ICD10CM|person changing tire on transport vehicle|person changing tire on transport vehicle +C4290413|T037|ET|V00-V09|ICD10CM|person examining engine of vehicle broken down in (on side of) road|person examining engine of vehicle broken down in (on side of) road +C4270668|T037|HT|V00-V99|ICD10CM|Transport accidents (V00-V99)|Transport accidents (V00-V99) +C4270667|T037|HT|V00-X58|ICD10CM|Accidents (V00-X58)|Accidents (V00-X58) +C2891384|T037|HT|V00-Y99|ICD10CM|External causes of morbidity (V00-Y99)|External causes of morbidity (V00-Y99) +C2891385|T037|AB|V00.0|ICD10CM|Pedestrian on foot injured in collision w pedestrian convey|Pedestrian on foot injured in collision w pedestrian convey +C2891385|T037|HT|V00.0|ICD10CM|Pedestrian on foot injured in collision with pedestrian conveyance|Pedestrian on foot injured in collision with pedestrian conveyance +C2891386|T037|AB|V00.01|ICD10CM|Pedestrian on foot injured in collision with roller-skater|Pedestrian on foot injured in collision with roller-skater +C2891386|T037|HT|V00.01|ICD10CM|Pedestrian on foot injured in collision with roller-skater|Pedestrian on foot injured in collision with roller-skater +C2891387|T037|AB|V00.01XA|ICD10CM|Ped on foot injured in collision w roller-skater, init|Ped on foot injured in collision w roller-skater, init +C2891387|T037|PT|V00.01XA|ICD10CM|Pedestrian on foot injured in collision with roller-skater, initial encounter|Pedestrian on foot injured in collision with roller-skater, initial encounter +C2891388|T037|AB|V00.01XD|ICD10CM|Ped on foot injured in collision w roller-skater, subs|Ped on foot injured in collision w roller-skater, subs +C2891388|T037|PT|V00.01XD|ICD10CM|Pedestrian on foot injured in collision with roller-skater, subsequent encounter|Pedestrian on foot injured in collision with roller-skater, subsequent encounter +C2891389|T037|AB|V00.01XS|ICD10CM|Ped on foot injured in collision w roller-skater, sequela|Ped on foot injured in collision w roller-skater, sequela +C2891389|T037|PT|V00.01XS|ICD10CM|Pedestrian on foot injured in collision with roller-skater, sequela|Pedestrian on foot injured in collision with roller-skater, sequela +C2891390|T037|AB|V00.02|ICD10CM|Pedestrian on foot injured in collision with skateboarder|Pedestrian on foot injured in collision with skateboarder +C2891390|T037|HT|V00.02|ICD10CM|Pedestrian on foot injured in collision with skateboarder|Pedestrian on foot injured in collision with skateboarder +C2891391|T037|AB|V00.02XA|ICD10CM|Pedestrian on foot injured in collision w skateboarder, init|Pedestrian on foot injured in collision w skateboarder, init +C2891391|T037|PT|V00.02XA|ICD10CM|Pedestrian on foot injured in collision with skateboarder, initial encounter|Pedestrian on foot injured in collision with skateboarder, initial encounter +C2891392|T037|AB|V00.02XD|ICD10CM|Pedestrian on foot injured in collision w skateboarder, subs|Pedestrian on foot injured in collision w skateboarder, subs +C2891392|T037|PT|V00.02XD|ICD10CM|Pedestrian on foot injured in collision with skateboarder, subsequent encounter|Pedestrian on foot injured in collision with skateboarder, subsequent encounter +C2891393|T037|AB|V00.02XS|ICD10CM|Ped on foot injured in collision w skateboarder, sequela|Ped on foot injured in collision w skateboarder, sequela +C2891393|T037|PT|V00.02XS|ICD10CM|Pedestrian on foot injured in collision with skateboarder, sequela|Pedestrian on foot injured in collision with skateboarder, sequela +C2891394|T037|AB|V00.09|ICD10CM|Ped on foot injured in collision w oth pedestrian convey|Ped on foot injured in collision w oth pedestrian convey +C2891394|T037|HT|V00.09|ICD10CM|Pedestrian on foot injured in collision with other pedestrian conveyance|Pedestrian on foot injured in collision with other pedestrian conveyance +C2891395|T037|AB|V00.09XA|ICD10CM|Ped on foot injured in collision w oth ped convey, init|Ped on foot injured in collision w oth ped convey, init +C2891395|T037|PT|V00.09XA|ICD10CM|Pedestrian on foot injured in collision with other pedestrian conveyance, initial encounter|Pedestrian on foot injured in collision with other pedestrian conveyance, initial encounter +C2891396|T037|AB|V00.09XD|ICD10CM|Ped on foot injured in collision w oth ped convey, subs|Ped on foot injured in collision w oth ped convey, subs +C2891396|T037|PT|V00.09XD|ICD10CM|Pedestrian on foot injured in collision with other pedestrian conveyance, subsequent encounter|Pedestrian on foot injured in collision with other pedestrian conveyance, subsequent encounter +C2891397|T037|AB|V00.09XS|ICD10CM|Ped on foot injured in collision w oth ped convey, sequela|Ped on foot injured in collision w oth ped convey, sequela +C2891397|T037|PT|V00.09XS|ICD10CM|Pedestrian on foot injured in collision with other pedestrian conveyance, sequela|Pedestrian on foot injured in collision with other pedestrian conveyance, sequela +C2891398|T037|HT|V00.1|ICD10CM|Rolling-type pedestrian conveyance accident|Rolling-type pedestrian conveyance accident +C2891398|T037|AB|V00.1|ICD10CM|Rolling-type pedestrian conveyance accident|Rolling-type pedestrian conveyance accident +C2891399|T037|AB|V00.11|ICD10CM|In-line roller-skate accident|In-line roller-skate accident +C2891399|T037|HT|V00.11|ICD10CM|In-line roller-skate accident|In-line roller-skate accident +C2891400|T037|AB|V00.111|ICD10CM|Fall from in-line roller-skates|Fall from in-line roller-skates +C2891400|T037|HT|V00.111|ICD10CM|Fall from in-line roller-skates|Fall from in-line roller-skates +C2891401|T037|AB|V00.111A|ICD10CM|Fall from in-line roller-skates, initial encounter|Fall from in-line roller-skates, initial encounter +C2891401|T037|PT|V00.111A|ICD10CM|Fall from in-line roller-skates, initial encounter|Fall from in-line roller-skates, initial encounter +C2891402|T037|AB|V00.111D|ICD10CM|Fall from in-line roller-skates, subsequent encounter|Fall from in-line roller-skates, subsequent encounter +C2891402|T037|PT|V00.111D|ICD10CM|Fall from in-line roller-skates, subsequent encounter|Fall from in-line roller-skates, subsequent encounter +C2891403|T037|AB|V00.111S|ICD10CM|Fall from in-line roller-skates, sequela|Fall from in-line roller-skates, sequela +C2891403|T037|PT|V00.111S|ICD10CM|Fall from in-line roller-skates, sequela|Fall from in-line roller-skates, sequela +C2891404|T037|AB|V00.112|ICD10CM|In-line roller-skater colliding with stationary object|In-line roller-skater colliding with stationary object +C2891404|T037|HT|V00.112|ICD10CM|In-line roller-skater colliding with stationary object|In-line roller-skater colliding with stationary object +C2891405|T037|AB|V00.112A|ICD10CM|In-line roller-skater colliding w stationary object, init|In-line roller-skater colliding w stationary object, init +C2891405|T037|PT|V00.112A|ICD10CM|In-line roller-skater colliding with stationary object, initial encounter|In-line roller-skater colliding with stationary object, initial encounter +C2891406|T037|AB|V00.112D|ICD10CM|In-line roller-skater colliding w stationary object, subs|In-line roller-skater colliding w stationary object, subs +C2891406|T037|PT|V00.112D|ICD10CM|In-line roller-skater colliding with stationary object, subsequent encounter|In-line roller-skater colliding with stationary object, subsequent encounter +C2891407|T037|AB|V00.112S|ICD10CM|In-line roller-skater colliding w stationary object, sequela|In-line roller-skater colliding w stationary object, sequela +C2891407|T037|PT|V00.112S|ICD10CM|In-line roller-skater colliding with stationary object, sequela|In-line roller-skater colliding with stationary object, sequela +C2891408|T037|AB|V00.118|ICD10CM|Other in-line roller-skate accident|Other in-line roller-skate accident +C2891408|T037|HT|V00.118|ICD10CM|Other in-line roller-skate accident|Other in-line roller-skate accident +C2891409|T037|AB|V00.118A|ICD10CM|Other in-line roller-skate accident, initial encounter|Other in-line roller-skate accident, initial encounter +C2891409|T037|PT|V00.118A|ICD10CM|Other in-line roller-skate accident, initial encounter|Other in-line roller-skate accident, initial encounter +C2891410|T037|AB|V00.118D|ICD10CM|Other in-line roller-skate accident, subsequent encounter|Other in-line roller-skate accident, subsequent encounter +C2891410|T037|PT|V00.118D|ICD10CM|Other in-line roller-skate accident, subsequent encounter|Other in-line roller-skate accident, subsequent encounter +C2891411|T037|AB|V00.118S|ICD10CM|Other in-line roller-skate accident, sequela|Other in-line roller-skate accident, sequela +C2891411|T037|PT|V00.118S|ICD10CM|Other in-line roller-skate accident, sequela|Other in-line roller-skate accident, sequela +C2891412|T037|AB|V00.12|ICD10CM|Non-in- line roller-skate accident|Non-in- line roller-skate accident +C2891412|T037|HT|V00.12|ICD10CM|Non-in- line roller-skate accident|Non-in- line roller-skate accident +C2891413|T037|AB|V00.121|ICD10CM|Fall from non-in-line roller-skates|Fall from non-in-line roller-skates +C2891413|T037|HT|V00.121|ICD10CM|Fall from non-in-line roller-skates|Fall from non-in-line roller-skates +C2891414|T037|AB|V00.121A|ICD10CM|Fall from non-in-line roller-skates, initial encounter|Fall from non-in-line roller-skates, initial encounter +C2891414|T037|PT|V00.121A|ICD10CM|Fall from non-in-line roller-skates, initial encounter|Fall from non-in-line roller-skates, initial encounter +C2891415|T037|AB|V00.121D|ICD10CM|Fall from non-in-line roller-skates, subsequent encounter|Fall from non-in-line roller-skates, subsequent encounter +C2891415|T037|PT|V00.121D|ICD10CM|Fall from non-in-line roller-skates, subsequent encounter|Fall from non-in-line roller-skates, subsequent encounter +C2891416|T037|AB|V00.121S|ICD10CM|Fall from non-in-line roller-skates, sequela|Fall from non-in-line roller-skates, sequela +C2891416|T037|PT|V00.121S|ICD10CM|Fall from non-in-line roller-skates, sequela|Fall from non-in-line roller-skates, sequela +C2891417|T037|AB|V00.122|ICD10CM|Non-in-line roller-skater colliding with stationary object|Non-in-line roller-skater colliding with stationary object +C2891417|T037|HT|V00.122|ICD10CM|Non-in-line roller-skater colliding with stationary object|Non-in-line roller-skater colliding with stationary object +C2891418|T037|AB|V00.122A|ICD10CM|Non-in-line roller-skater colliding w statnry obj, init|Non-in-line roller-skater colliding w statnry obj, init +C2891418|T037|PT|V00.122A|ICD10CM|Non-in-line roller-skater colliding with stationary object, initial encounter|Non-in-line roller-skater colliding with stationary object, initial encounter +C2891419|T037|AB|V00.122D|ICD10CM|Non-in-line roller-skater colliding w statnry obj, subs|Non-in-line roller-skater colliding w statnry obj, subs +C2891419|T037|PT|V00.122D|ICD10CM|Non-in-line roller-skater colliding with stationary object, subsequent encounter|Non-in-line roller-skater colliding with stationary object, subsequent encounter +C2891420|T037|AB|V00.122S|ICD10CM|Non-in-line roller-skater colliding w statnry obj, sequela|Non-in-line roller-skater colliding w statnry obj, sequela +C2891420|T037|PT|V00.122S|ICD10CM|Non-in-line roller-skater colliding with stationary object, sequela|Non-in-line roller-skater colliding with stationary object, sequela +C2891421|T037|AB|V00.128|ICD10CM|Other non-in-line roller-skating accident|Other non-in-line roller-skating accident +C2891421|T037|HT|V00.128|ICD10CM|Other non-in-line roller-skating accident|Other non-in-line roller-skating accident +C2891422|T037|AB|V00.128A|ICD10CM|Other non-in-line roller-skating accident, initial encounter|Other non-in-line roller-skating accident, initial encounter +C2891422|T037|PT|V00.128A|ICD10CM|Other non-in-line roller-skating accident, initial encounter|Other non-in-line roller-skating accident, initial encounter +C2891423|T037|AB|V00.128D|ICD10CM|Other non-in-line roller-skating accident, subs encntr|Other non-in-line roller-skating accident, subs encntr +C2891423|T037|PT|V00.128D|ICD10CM|Other non-in-line roller-skating accident, subsequent encounter|Other non-in-line roller-skating accident, subsequent encounter +C2891424|T037|AB|V00.128S|ICD10CM|Other non-in-line roller-skating accident, sequela|Other non-in-line roller-skating accident, sequela +C2891424|T037|PT|V00.128S|ICD10CM|Other non-in-line roller-skating accident, sequela|Other non-in-line roller-skating accident, sequela +C2891425|T037|HT|V00.13|ICD10CM|Skateboard accident|Skateboard accident +C2891425|T037|AB|V00.13|ICD10CM|Skateboard accident|Skateboard accident +C0878747|T037|HT|V00.131|ICD10CM|Fall from skateboard|Fall from skateboard +C0878747|T037|AB|V00.131|ICD10CM|Fall from skateboard|Fall from skateboard +C2891426|T037|AB|V00.131A|ICD10CM|Fall from skateboard, initial encounter|Fall from skateboard, initial encounter +C2891426|T037|PT|V00.131A|ICD10CM|Fall from skateboard, initial encounter|Fall from skateboard, initial encounter +C2891427|T037|AB|V00.131D|ICD10CM|Fall from skateboard, subsequent encounter|Fall from skateboard, subsequent encounter +C2891427|T037|PT|V00.131D|ICD10CM|Fall from skateboard, subsequent encounter|Fall from skateboard, subsequent encounter +C2891428|T037|AB|V00.131S|ICD10CM|Fall from skateboard, sequela|Fall from skateboard, sequela +C2891428|T037|PT|V00.131S|ICD10CM|Fall from skateboard, sequela|Fall from skateboard, sequela +C2891429|T037|AB|V00.132|ICD10CM|Skateboarder colliding with stationary object|Skateboarder colliding with stationary object +C2891429|T037|HT|V00.132|ICD10CM|Skateboarder colliding with stationary object|Skateboarder colliding with stationary object +C2891430|T037|AB|V00.132A|ICD10CM|Skateboarder colliding with stationary object, init encntr|Skateboarder colliding with stationary object, init encntr +C2891430|T037|PT|V00.132A|ICD10CM|Skateboarder colliding with stationary object, initial encounter|Skateboarder colliding with stationary object, initial encounter +C2891431|T037|AB|V00.132D|ICD10CM|Skateboarder colliding with stationary object, subs encntr|Skateboarder colliding with stationary object, subs encntr +C2891431|T037|PT|V00.132D|ICD10CM|Skateboarder colliding with stationary object, subsequent encounter|Skateboarder colliding with stationary object, subsequent encounter +C2891432|T037|PT|V00.132S|ICD10CM|Skateboarder colliding with stationary object, sequela|Skateboarder colliding with stationary object, sequela +C2891432|T037|AB|V00.132S|ICD10CM|Skateboarder colliding with stationary object, sequela|Skateboarder colliding with stationary object, sequela +C2891433|T037|AB|V00.138|ICD10CM|Other skateboard accident|Other skateboard accident +C2891433|T037|HT|V00.138|ICD10CM|Other skateboard accident|Other skateboard accident +C2891434|T037|AB|V00.138A|ICD10CM|Other skateboard accident, initial encounter|Other skateboard accident, initial encounter +C2891434|T037|PT|V00.138A|ICD10CM|Other skateboard accident, initial encounter|Other skateboard accident, initial encounter +C2891435|T037|AB|V00.138D|ICD10CM|Other skateboard accident, subsequent encounter|Other skateboard accident, subsequent encounter +C2891435|T037|PT|V00.138D|ICD10CM|Other skateboard accident, subsequent encounter|Other skateboard accident, subsequent encounter +C2891436|T037|AB|V00.138S|ICD10CM|Other skateboard accident, sequela|Other skateboard accident, sequela +C2891436|T037|PT|V00.138S|ICD10CM|Other skateboard accident, sequela|Other skateboard accident, sequela +C2891437|T037|HT|V00.14|ICD10CM|Scooter (nonmotorized) accident|Scooter (nonmotorized) accident +C2891437|T037|AB|V00.14|ICD10CM|Scooter (nonmotorized) accident|Scooter (nonmotorized) accident +C1135313|T037|AB|V00.141|ICD10CM|Fall from scooter (nonmotorized)|Fall from scooter (nonmotorized) +C1135313|T037|HT|V00.141|ICD10CM|Fall from scooter (nonmotorized)|Fall from scooter (nonmotorized) +C2891438|T037|AB|V00.141A|ICD10CM|Fall from scooter (nonmotorized), initial encounter|Fall from scooter (nonmotorized), initial encounter +C2891438|T037|PT|V00.141A|ICD10CM|Fall from scooter (nonmotorized), initial encounter|Fall from scooter (nonmotorized), initial encounter +C2891439|T037|AB|V00.141D|ICD10CM|Fall from scooter (nonmotorized), subsequent encounter|Fall from scooter (nonmotorized), subsequent encounter +C2891439|T037|PT|V00.141D|ICD10CM|Fall from scooter (nonmotorized), subsequent encounter|Fall from scooter (nonmotorized), subsequent encounter +C2891440|T037|AB|V00.141S|ICD10CM|Fall from scooter (nonmotorized), sequela|Fall from scooter (nonmotorized), sequela +C2891440|T037|PT|V00.141S|ICD10CM|Fall from scooter (nonmotorized), sequela|Fall from scooter (nonmotorized), sequela +C2891441|T037|AB|V00.142|ICD10CM|Scooter (nonmotorized) colliding with stationary object|Scooter (nonmotorized) colliding with stationary object +C2891441|T037|HT|V00.142|ICD10CM|Scooter (nonmotorized) colliding with stationary object|Scooter (nonmotorized) colliding with stationary object +C2891442|T037|AB|V00.142A|ICD10CM|Scooter (nonmotorized) colliding w stationary object, init|Scooter (nonmotorized) colliding w stationary object, init +C2891442|T037|PT|V00.142A|ICD10CM|Scooter (nonmotorized) colliding with stationary object, initial encounter|Scooter (nonmotorized) colliding with stationary object, initial encounter +C2891443|T037|AB|V00.142D|ICD10CM|Scooter (nonmotorized) colliding w stationary object, subs|Scooter (nonmotorized) colliding w stationary object, subs +C2891443|T037|PT|V00.142D|ICD10CM|Scooter (nonmotorized) colliding with stationary object, subsequent encounter|Scooter (nonmotorized) colliding with stationary object, subsequent encounter +C2891444|T037|AB|V00.142S|ICD10CM|Scooter (nonmotorized) colliding w statnry obj, sequela|Scooter (nonmotorized) colliding w statnry obj, sequela +C2891444|T037|PT|V00.142S|ICD10CM|Scooter (nonmotorized) colliding with stationary object, sequela|Scooter (nonmotorized) colliding with stationary object, sequela +C2891445|T037|AB|V00.148|ICD10CM|Other scooter (nonmotorized) accident|Other scooter (nonmotorized) accident +C2891445|T037|HT|V00.148|ICD10CM|Other scooter (nonmotorized) accident|Other scooter (nonmotorized) accident +C2891446|T037|AB|V00.148A|ICD10CM|Other scooter (nonmotorized) accident, initial encounter|Other scooter (nonmotorized) accident, initial encounter +C2891446|T037|PT|V00.148A|ICD10CM|Other scooter (nonmotorized) accident, initial encounter|Other scooter (nonmotorized) accident, initial encounter +C2891447|T037|AB|V00.148D|ICD10CM|Other scooter (nonmotorized) accident, subsequent encounter|Other scooter (nonmotorized) accident, subsequent encounter +C2891447|T037|PT|V00.148D|ICD10CM|Other scooter (nonmotorized) accident, subsequent encounter|Other scooter (nonmotorized) accident, subsequent encounter +C2891448|T037|AB|V00.148S|ICD10CM|Other scooter (nonmotorized) accident, sequela|Other scooter (nonmotorized) accident, sequela +C2891448|T037|PT|V00.148S|ICD10CM|Other scooter (nonmotorized) accident, sequela|Other scooter (nonmotorized) accident, sequela +C2891450|T037|HT|V00.15|ICD10CM|Heelies accident|Heelies accident +C2891450|T037|AB|V00.15|ICD10CM|Heelies accident|Heelies accident +C2977172|T037|ET|V00.15|ICD10CM|Rolling shoe|Rolling shoe +C2977173|T037|ET|V00.15|ICD10CM|Wheeled shoe|Wheeled shoe +C2891449|T037|ET|V00.15|ICD10CM|Wheelies accident|Wheelies accident +C2349801|T037|AB|V00.151|ICD10CM|Fall from heelies|Fall from heelies +C2349801|T037|HT|V00.151|ICD10CM|Fall from heelies|Fall from heelies +C2891451|T037|AB|V00.151A|ICD10CM|Fall from heelies, initial encounter|Fall from heelies, initial encounter +C2891451|T037|PT|V00.151A|ICD10CM|Fall from heelies, initial encounter|Fall from heelies, initial encounter +C2891452|T037|AB|V00.151D|ICD10CM|Fall from heelies, subsequent encounter|Fall from heelies, subsequent encounter +C2891452|T037|PT|V00.151D|ICD10CM|Fall from heelies, subsequent encounter|Fall from heelies, subsequent encounter +C2891453|T037|AB|V00.151S|ICD10CM|Fall from heelies, sequela|Fall from heelies, sequela +C2891453|T037|PT|V00.151S|ICD10CM|Fall from heelies, sequela|Fall from heelies, sequela +C2891454|T037|AB|V00.152|ICD10CM|Heelies colliding with stationary object|Heelies colliding with stationary object +C2891454|T037|HT|V00.152|ICD10CM|Heelies colliding with stationary object|Heelies colliding with stationary object +C2891455|T037|PT|V00.152A|ICD10CM|Heelies colliding with stationary object, initial encounter|Heelies colliding with stationary object, initial encounter +C2891455|T037|AB|V00.152A|ICD10CM|Heelies colliding with stationary object, initial encounter|Heelies colliding with stationary object, initial encounter +C2891456|T037|AB|V00.152D|ICD10CM|Heelies colliding with stationary object, subs encntr|Heelies colliding with stationary object, subs encntr +C2891456|T037|PT|V00.152D|ICD10CM|Heelies colliding with stationary object, subsequent encounter|Heelies colliding with stationary object, subsequent encounter +C2891457|T037|PT|V00.152S|ICD10CM|Heelies colliding with stationary object, sequela|Heelies colliding with stationary object, sequela +C2891457|T037|AB|V00.152S|ICD10CM|Heelies colliding with stationary object, sequela|Heelies colliding with stationary object, sequela +C2891458|T037|AB|V00.158|ICD10CM|Other heelies accident|Other heelies accident +C2891458|T037|HT|V00.158|ICD10CM|Other heelies accident|Other heelies accident +C2891459|T037|AB|V00.158A|ICD10CM|Other heelies accident, initial encounter|Other heelies accident, initial encounter +C2891459|T037|PT|V00.158A|ICD10CM|Other heelies accident, initial encounter|Other heelies accident, initial encounter +C2891460|T037|AB|V00.158D|ICD10CM|Other heelies accident, subsequent encounter|Other heelies accident, subsequent encounter +C2891460|T037|PT|V00.158D|ICD10CM|Other heelies accident, subsequent encounter|Other heelies accident, subsequent encounter +C2891461|T037|AB|V00.158S|ICD10CM|Other heelies accident, sequela|Other heelies accident, sequela +C2891461|T037|PT|V00.158S|ICD10CM|Other heelies accident, sequela|Other heelies accident, sequela +C2891462|T037|AB|V00.18|ICD10CM|Accident on other rolling-type pedestrian conveyance|Accident on other rolling-type pedestrian conveyance +C2891462|T037|HT|V00.18|ICD10CM|Accident on other rolling-type pedestrian conveyance|Accident on other rolling-type pedestrian conveyance +C2891463|T037|AB|V00.181|ICD10CM|Fall from other rolling-type pedestrian conveyance|Fall from other rolling-type pedestrian conveyance +C2891463|T037|HT|V00.181|ICD10CM|Fall from other rolling-type pedestrian conveyance|Fall from other rolling-type pedestrian conveyance +C2891464|T037|AB|V00.181A|ICD10CM|Fall from oth rolling-type pedestrian conveyance, init|Fall from oth rolling-type pedestrian conveyance, init +C2891464|T037|PT|V00.181A|ICD10CM|Fall from other rolling-type pedestrian conveyance, initial encounter|Fall from other rolling-type pedestrian conveyance, initial encounter +C2891465|T037|AB|V00.181D|ICD10CM|Fall from oth rolling-type pedestrian conveyance, subs|Fall from oth rolling-type pedestrian conveyance, subs +C2891465|T037|PT|V00.181D|ICD10CM|Fall from other rolling-type pedestrian conveyance, subsequent encounter|Fall from other rolling-type pedestrian conveyance, subsequent encounter +C2891466|T037|AB|V00.181S|ICD10CM|Fall from other rolling-type pedestrian conveyance, sequela|Fall from other rolling-type pedestrian conveyance, sequela +C2891466|T037|PT|V00.181S|ICD10CM|Fall from other rolling-type pedestrian conveyance, sequela|Fall from other rolling-type pedestrian conveyance, sequela +C2891467|T037|AB|V00.182|ICD10CM|Ped on oth roll-type ped convey colliding w statnry obj|Ped on oth roll-type ped convey colliding w statnry obj +C2891467|T037|HT|V00.182|ICD10CM|Pedestrian on other rolling-type pedestrian conveyance colliding with stationary object|Pedestrian on other rolling-type pedestrian conveyance colliding with stationary object +C2891468|T037|AB|V00.182A|ICD10CM|Ped on oth roll-type ped convey collid w statnry obj, init|Ped on oth roll-type ped convey collid w statnry obj, init +C2891469|T037|AB|V00.182D|ICD10CM|Ped on oth roll-type ped convey collid w statnry obj, subs|Ped on oth roll-type ped convey collid w statnry obj, subs +C2891470|T037|AB|V00.182S|ICD10CM|Ped on oth roll-type ped convey collid w statnry obj, sqla|Ped on oth roll-type ped convey collid w statnry obj, sqla +C2891470|T037|PT|V00.182S|ICD10CM|Pedestrian on other rolling-type pedestrian conveyance colliding with stationary object, sequela|Pedestrian on other rolling-type pedestrian conveyance colliding with stationary object, sequela +C2891471|T037|AB|V00.188|ICD10CM|Other accident on other rolling-type pedestrian conveyance|Other accident on other rolling-type pedestrian conveyance +C2891471|T037|HT|V00.188|ICD10CM|Other accident on other rolling-type pedestrian conveyance|Other accident on other rolling-type pedestrian conveyance +C2891472|T037|AB|V00.188A|ICD10CM|Oth accident on oth rolling-type pedestrian conveyance, init|Oth accident on oth rolling-type pedestrian conveyance, init +C2891472|T037|PT|V00.188A|ICD10CM|Other accident on other rolling-type pedestrian conveyance, initial encounter|Other accident on other rolling-type pedestrian conveyance, initial encounter +C2891473|T037|AB|V00.188D|ICD10CM|Oth accident on oth rolling-type pedestrian conveyance, subs|Oth accident on oth rolling-type pedestrian conveyance, subs +C2891473|T037|PT|V00.188D|ICD10CM|Other accident on other rolling-type pedestrian conveyance, subsequent encounter|Other accident on other rolling-type pedestrian conveyance, subsequent encounter +C2891474|T037|AB|V00.188S|ICD10CM|Oth accident on oth roll-type pedestrian conveyance, sequela|Oth accident on oth roll-type pedestrian conveyance, sequela +C2891474|T037|PT|V00.188S|ICD10CM|Other accident on other rolling-type pedestrian conveyance, sequela|Other accident on other rolling-type pedestrian conveyance, sequela +C2891475|T037|HT|V00.2|ICD10CM|Gliding-type pedestrian conveyance accident|Gliding-type pedestrian conveyance accident +C2891475|T037|AB|V00.2|ICD10CM|Gliding-type pedestrian conveyance accident|Gliding-type pedestrian conveyance accident +C2891476|T037|HT|V00.21|ICD10CM|Ice-skates accident|Ice-skates accident +C2891476|T037|AB|V00.21|ICD10CM|Ice-skates accident|Ice-skates accident +C2891477|T037|AB|V00.211|ICD10CM|Fall from ice-skates|Fall from ice-skates +C2891477|T037|HT|V00.211|ICD10CM|Fall from ice-skates|Fall from ice-skates +C2891478|T037|AB|V00.211A|ICD10CM|Fall from ice-skates, initial encounter|Fall from ice-skates, initial encounter +C2891478|T037|PT|V00.211A|ICD10CM|Fall from ice-skates, initial encounter|Fall from ice-skates, initial encounter +C2891479|T037|AB|V00.211D|ICD10CM|Fall from ice-skates, subsequent encounter|Fall from ice-skates, subsequent encounter +C2891479|T037|PT|V00.211D|ICD10CM|Fall from ice-skates, subsequent encounter|Fall from ice-skates, subsequent encounter +C2891480|T037|AB|V00.211S|ICD10CM|Fall from ice-skates, sequela|Fall from ice-skates, sequela +C2891480|T037|PT|V00.211S|ICD10CM|Fall from ice-skates, sequela|Fall from ice-skates, sequela +C2891481|T037|AB|V00.212|ICD10CM|Ice-skater colliding with stationary object|Ice-skater colliding with stationary object +C2891481|T037|HT|V00.212|ICD10CM|Ice-skater colliding with stationary object|Ice-skater colliding with stationary object +C2891482|T037|AB|V00.212A|ICD10CM|Ice-skater colliding with stationary object, init encntr|Ice-skater colliding with stationary object, init encntr +C2891482|T037|PT|V00.212A|ICD10CM|Ice-skater colliding with stationary object, initial encounter|Ice-skater colliding with stationary object, initial encounter +C2891483|T037|AB|V00.212D|ICD10CM|Ice-skater colliding with stationary object, subs encntr|Ice-skater colliding with stationary object, subs encntr +C2891483|T037|PT|V00.212D|ICD10CM|Ice-skater colliding with stationary object, subsequent encounter|Ice-skater colliding with stationary object, subsequent encounter +C2891484|T037|PT|V00.212S|ICD10CM|Ice-skater colliding with stationary object, sequela|Ice-skater colliding with stationary object, sequela +C2891484|T037|AB|V00.212S|ICD10CM|Ice-skater colliding with stationary object, sequela|Ice-skater colliding with stationary object, sequela +C2891485|T037|AB|V00.218|ICD10CM|Other ice-skates accident|Other ice-skates accident +C2891485|T037|HT|V00.218|ICD10CM|Other ice-skates accident|Other ice-skates accident +C2891486|T037|AB|V00.218A|ICD10CM|Other ice-skates accident, initial encounter|Other ice-skates accident, initial encounter +C2891486|T037|PT|V00.218A|ICD10CM|Other ice-skates accident, initial encounter|Other ice-skates accident, initial encounter +C2891487|T037|AB|V00.218D|ICD10CM|Other ice-skates accident, subsequent encounter|Other ice-skates accident, subsequent encounter +C2891487|T037|PT|V00.218D|ICD10CM|Other ice-skates accident, subsequent encounter|Other ice-skates accident, subsequent encounter +C2891488|T037|AB|V00.218S|ICD10CM|Other ice-skates accident, sequela|Other ice-skates accident, sequela +C2891488|T037|PT|V00.218S|ICD10CM|Other ice-skates accident, sequela|Other ice-skates accident, sequela +C2891489|T037|HT|V00.22|ICD10CM|Sled accident|Sled accident +C2891489|T037|AB|V00.22|ICD10CM|Sled accident|Sled accident +C2891490|T037|AB|V00.221|ICD10CM|Fall from sled|Fall from sled +C2891490|T037|HT|V00.221|ICD10CM|Fall from sled|Fall from sled +C2891491|T037|AB|V00.221A|ICD10CM|Fall from sled, initial encounter|Fall from sled, initial encounter +C2891491|T037|PT|V00.221A|ICD10CM|Fall from sled, initial encounter|Fall from sled, initial encounter +C2891492|T037|AB|V00.221D|ICD10CM|Fall from sled, subsequent encounter|Fall from sled, subsequent encounter +C2891492|T037|PT|V00.221D|ICD10CM|Fall from sled, subsequent encounter|Fall from sled, subsequent encounter +C2891493|T037|AB|V00.221S|ICD10CM|Fall from sled, sequela|Fall from sled, sequela +C2891493|T037|PT|V00.221S|ICD10CM|Fall from sled, sequela|Fall from sled, sequela +C2891494|T037|AB|V00.222|ICD10CM|Sledder colliding with stationary object|Sledder colliding with stationary object +C2891494|T037|HT|V00.222|ICD10CM|Sledder colliding with stationary object|Sledder colliding with stationary object +C2891495|T037|PT|V00.222A|ICD10CM|Sledder colliding with stationary object, initial encounter|Sledder colliding with stationary object, initial encounter +C2891495|T037|AB|V00.222A|ICD10CM|Sledder colliding with stationary object, initial encounter|Sledder colliding with stationary object, initial encounter +C2891496|T037|AB|V00.222D|ICD10CM|Sledder colliding with stationary object, subs encntr|Sledder colliding with stationary object, subs encntr +C2891496|T037|PT|V00.222D|ICD10CM|Sledder colliding with stationary object, subsequent encounter|Sledder colliding with stationary object, subsequent encounter +C2891497|T037|PT|V00.222S|ICD10CM|Sledder colliding with stationary object, sequela|Sledder colliding with stationary object, sequela +C2891497|T037|AB|V00.222S|ICD10CM|Sledder colliding with stationary object, sequela|Sledder colliding with stationary object, sequela +C2891498|T037|AB|V00.228|ICD10CM|Other sled accident|Other sled accident +C2891498|T037|HT|V00.228|ICD10CM|Other sled accident|Other sled accident +C2891499|T037|AB|V00.228A|ICD10CM|Other sled accident, initial encounter|Other sled accident, initial encounter +C2891499|T037|PT|V00.228A|ICD10CM|Other sled accident, initial encounter|Other sled accident, initial encounter +C2891500|T037|AB|V00.228D|ICD10CM|Other sled accident, subsequent encounter|Other sled accident, subsequent encounter +C2891500|T037|PT|V00.228D|ICD10CM|Other sled accident, subsequent encounter|Other sled accident, subsequent encounter +C2891501|T037|AB|V00.228S|ICD10CM|Other sled accident, sequela|Other sled accident, sequela +C2891501|T037|PT|V00.228S|ICD10CM|Other sled accident, sequela|Other sled accident, sequela +C2891502|T037|AB|V00.28|ICD10CM|Other gliding-type pedestrian conveyance accident|Other gliding-type pedestrian conveyance accident +C2891502|T037|HT|V00.28|ICD10CM|Other gliding-type pedestrian conveyance accident|Other gliding-type pedestrian conveyance accident +C2891503|T037|AB|V00.281|ICD10CM|Fall from other gliding-type pedestrian conveyance|Fall from other gliding-type pedestrian conveyance +C2891503|T037|HT|V00.281|ICD10CM|Fall from other gliding-type pedestrian conveyance|Fall from other gliding-type pedestrian conveyance +C2891504|T037|AB|V00.281A|ICD10CM|Fall from gliding-type pedestrian conveyance, init encntr|Fall from gliding-type pedestrian conveyance, init encntr +C2891504|T037|PT|V00.281A|ICD10CM|Fall from other gliding-type pedestrian conveyance, initial encounter|Fall from other gliding-type pedestrian conveyance, initial encounter +C2891505|T037|AB|V00.281D|ICD10CM|Fall from gliding-type pedestrian conveyance, subs encntr|Fall from gliding-type pedestrian conveyance, subs encntr +C2891505|T037|PT|V00.281D|ICD10CM|Fall from other gliding-type pedestrian conveyance, subsequent encounter|Fall from other gliding-type pedestrian conveyance, subsequent encounter +C2891506|T037|AB|V00.281S|ICD10CM|Fall from other gliding-type pedestrian conveyance, sequela|Fall from other gliding-type pedestrian conveyance, sequela +C2891506|T037|PT|V00.281S|ICD10CM|Fall from other gliding-type pedestrian conveyance, sequela|Fall from other gliding-type pedestrian conveyance, sequela +C2891507|T037|AB|V00.282|ICD10CM|Ped on gliding-type ped convey colliding w statnry obj|Ped on gliding-type ped convey colliding w statnry obj +C2891507|T037|HT|V00.282|ICD10CM|Pedestrian on other gliding-type pedestrian conveyance colliding with stationary object|Pedestrian on other gliding-type pedestrian conveyance colliding with stationary object +C2891508|T037|AB|V00.282A|ICD10CM|Ped on gliding-type ped convey colliding w statnry obj, init|Ped on gliding-type ped convey colliding w statnry obj, init +C2891509|T037|AB|V00.282D|ICD10CM|Ped on gliding-type ped convey colliding w statnry obj, subs|Ped on gliding-type ped convey colliding w statnry obj, subs +C2891510|T037|AB|V00.282S|ICD10CM|Ped on gliding-type ped convey collid w statnry obj, sequela|Ped on gliding-type ped convey collid w statnry obj, sequela +C2891510|T037|PT|V00.282S|ICD10CM|Pedestrian on other gliding-type pedestrian conveyance colliding with stationary object, sequela|Pedestrian on other gliding-type pedestrian conveyance colliding with stationary object, sequela +C2891511|T037|AB|V00.288|ICD10CM|Other accident on other gliding-type pedestrian conveyance|Other accident on other gliding-type pedestrian conveyance +C2891511|T037|HT|V00.288|ICD10CM|Other accident on other gliding-type pedestrian conveyance|Other accident on other gliding-type pedestrian conveyance +C2891512|T037|AB|V00.288A|ICD10CM|Oth accident on gliding-type pedestrian conveyance, init|Oth accident on gliding-type pedestrian conveyance, init +C2891512|T037|PT|V00.288A|ICD10CM|Other accident on other gliding-type pedestrian conveyance, initial encounter|Other accident on other gliding-type pedestrian conveyance, initial encounter +C2891513|T037|AB|V00.288D|ICD10CM|Oth accident on gliding-type pedestrian conveyance, subs|Oth accident on gliding-type pedestrian conveyance, subs +C2891513|T037|PT|V00.288D|ICD10CM|Other accident on other gliding-type pedestrian conveyance, subsequent encounter|Other accident on other gliding-type pedestrian conveyance, subsequent encounter +C2891514|T037|AB|V00.288S|ICD10CM|Oth accident on gliding-type pedestrian conveyance, sequela|Oth accident on gliding-type pedestrian conveyance, sequela +C2891514|T037|PT|V00.288S|ICD10CM|Other accident on other gliding-type pedestrian conveyance, sequela|Other accident on other gliding-type pedestrian conveyance, sequela +C2891515|T037|HT|V00.3|ICD10CM|Flat-bottomed pedestrian conveyance accident|Flat-bottomed pedestrian conveyance accident +C2891515|T037|AB|V00.3|ICD10CM|Flat-bottomed pedestrian conveyance accident|Flat-bottomed pedestrian conveyance accident +C2891516|T037|HT|V00.31|ICD10CM|Snowboard accident|Snowboard accident +C2891516|T037|AB|V00.31|ICD10CM|Snowboard accident|Snowboard accident +C0878749|T037|HT|V00.311|ICD10CM|Fall from snowboard|Fall from snowboard +C0878749|T037|AB|V00.311|ICD10CM|Fall from snowboard|Fall from snowboard +C2891517|T037|AB|V00.311A|ICD10CM|Fall from snowboard, initial encounter|Fall from snowboard, initial encounter +C2891517|T037|PT|V00.311A|ICD10CM|Fall from snowboard, initial encounter|Fall from snowboard, initial encounter +C2891518|T037|AB|V00.311D|ICD10CM|Fall from snowboard, subsequent encounter|Fall from snowboard, subsequent encounter +C2891518|T037|PT|V00.311D|ICD10CM|Fall from snowboard, subsequent encounter|Fall from snowboard, subsequent encounter +C2891519|T037|AB|V00.311S|ICD10CM|Fall from snowboard, sequela|Fall from snowboard, sequela +C2891519|T037|PT|V00.311S|ICD10CM|Fall from snowboard, sequela|Fall from snowboard, sequela +C2891520|T037|AB|V00.312|ICD10CM|Snowboarder colliding with stationary object|Snowboarder colliding with stationary object +C2891520|T037|HT|V00.312|ICD10CM|Snowboarder colliding with stationary object|Snowboarder colliding with stationary object +C2891521|T037|AB|V00.312A|ICD10CM|Snowboarder colliding with stationary object, init encntr|Snowboarder colliding with stationary object, init encntr +C2891521|T037|PT|V00.312A|ICD10CM|Snowboarder colliding with stationary object, initial encounter|Snowboarder colliding with stationary object, initial encounter +C2891522|T037|AB|V00.312D|ICD10CM|Snowboarder colliding with stationary object, subs encntr|Snowboarder colliding with stationary object, subs encntr +C2891522|T037|PT|V00.312D|ICD10CM|Snowboarder colliding with stationary object, subsequent encounter|Snowboarder colliding with stationary object, subsequent encounter +C2891523|T037|PT|V00.312S|ICD10CM|Snowboarder colliding with stationary object, sequela|Snowboarder colliding with stationary object, sequela +C2891523|T037|AB|V00.312S|ICD10CM|Snowboarder colliding with stationary object, sequela|Snowboarder colliding with stationary object, sequela +C2891524|T037|AB|V00.318|ICD10CM|Other snowboard accident|Other snowboard accident +C2891524|T037|HT|V00.318|ICD10CM|Other snowboard accident|Other snowboard accident +C2891525|T037|AB|V00.318A|ICD10CM|Other snowboard accident, initial encounter|Other snowboard accident, initial encounter +C2891525|T037|PT|V00.318A|ICD10CM|Other snowboard accident, initial encounter|Other snowboard accident, initial encounter +C2891526|T037|AB|V00.318D|ICD10CM|Other snowboard accident, subsequent encounter|Other snowboard accident, subsequent encounter +C2891526|T037|PT|V00.318D|ICD10CM|Other snowboard accident, subsequent encounter|Other snowboard accident, subsequent encounter +C2891527|T037|AB|V00.318S|ICD10CM|Other snowboard accident, sequela|Other snowboard accident, sequela +C2891527|T037|PT|V00.318S|ICD10CM|Other snowboard accident, sequela|Other snowboard accident, sequela +C2891528|T037|HT|V00.32|ICD10CM|Snow-ski accident|Snow-ski accident +C2891528|T037|AB|V00.32|ICD10CM|Snow-ski accident|Snow-ski accident +C2891529|T037|AB|V00.321|ICD10CM|Fall from snow-skis|Fall from snow-skis +C2891529|T037|HT|V00.321|ICD10CM|Fall from snow-skis|Fall from snow-skis +C2891530|T037|AB|V00.321A|ICD10CM|Fall from snow-skis, initial encounter|Fall from snow-skis, initial encounter +C2891530|T037|PT|V00.321A|ICD10CM|Fall from snow-skis, initial encounter|Fall from snow-skis, initial encounter +C2891531|T037|AB|V00.321D|ICD10CM|Fall from snow-skis, subsequent encounter|Fall from snow-skis, subsequent encounter +C2891531|T037|PT|V00.321D|ICD10CM|Fall from snow-skis, subsequent encounter|Fall from snow-skis, subsequent encounter +C2891532|T037|AB|V00.321S|ICD10CM|Fall from snow-skis, sequela|Fall from snow-skis, sequela +C2891532|T037|PT|V00.321S|ICD10CM|Fall from snow-skis, sequela|Fall from snow-skis, sequela +C2891533|T037|AB|V00.322|ICD10CM|Snow-skier colliding with stationary object|Snow-skier colliding with stationary object +C2891533|T037|HT|V00.322|ICD10CM|Snow-skier colliding with stationary object|Snow-skier colliding with stationary object +C2891534|T037|AB|V00.322A|ICD10CM|Snow-skier colliding with stationary object, init encntr|Snow-skier colliding with stationary object, init encntr +C2891534|T037|PT|V00.322A|ICD10CM|Snow-skier colliding with stationary object, initial encounter|Snow-skier colliding with stationary object, initial encounter +C2891535|T037|AB|V00.322D|ICD10CM|Snow-skier colliding with stationary object, subs encntr|Snow-skier colliding with stationary object, subs encntr +C2891535|T037|PT|V00.322D|ICD10CM|Snow-skier colliding with stationary object, subsequent encounter|Snow-skier colliding with stationary object, subsequent encounter +C2891536|T037|PT|V00.322S|ICD10CM|Snow-skier colliding with stationary object, sequela|Snow-skier colliding with stationary object, sequela +C2891536|T037|AB|V00.322S|ICD10CM|Snow-skier colliding with stationary object, sequela|Snow-skier colliding with stationary object, sequela +C2891537|T037|AB|V00.328|ICD10CM|Other snow-ski accident|Other snow-ski accident +C2891537|T037|HT|V00.328|ICD10CM|Other snow-ski accident|Other snow-ski accident +C2891538|T037|AB|V00.328A|ICD10CM|Other snow-ski accident, initial encounter|Other snow-ski accident, initial encounter +C2891538|T037|PT|V00.328A|ICD10CM|Other snow-ski accident, initial encounter|Other snow-ski accident, initial encounter +C2891539|T037|AB|V00.328D|ICD10CM|Other snow-ski accident, subsequent encounter|Other snow-ski accident, subsequent encounter +C2891539|T037|PT|V00.328D|ICD10CM|Other snow-ski accident, subsequent encounter|Other snow-ski accident, subsequent encounter +C2891540|T037|AB|V00.328S|ICD10CM|Other snow-ski accident, sequela|Other snow-ski accident, sequela +C2891540|T037|PT|V00.328S|ICD10CM|Other snow-ski accident, sequela|Other snow-ski accident, sequela +C2891541|T037|AB|V00.38|ICD10CM|Other flat-bottomed pedestrian conveyance accident|Other flat-bottomed pedestrian conveyance accident +C2891541|T037|HT|V00.38|ICD10CM|Other flat-bottomed pedestrian conveyance accident|Other flat-bottomed pedestrian conveyance accident +C2891542|T037|AB|V00.381|ICD10CM|Fall from other flat-bottomed pedestrian conveyance|Fall from other flat-bottomed pedestrian conveyance +C2891542|T037|HT|V00.381|ICD10CM|Fall from other flat-bottomed pedestrian conveyance|Fall from other flat-bottomed pedestrian conveyance +C2891543|T037|AB|V00.381A|ICD10CM|Fall from flat-bottomed pedestrian conveyance, init encntr|Fall from flat-bottomed pedestrian conveyance, init encntr +C2891543|T037|PT|V00.381A|ICD10CM|Fall from other flat-bottomed pedestrian conveyance, initial encounter|Fall from other flat-bottomed pedestrian conveyance, initial encounter +C2891544|T037|AB|V00.381D|ICD10CM|Fall from flat-bottomed pedestrian conveyance, subs encntr|Fall from flat-bottomed pedestrian conveyance, subs encntr +C2891544|T037|PT|V00.381D|ICD10CM|Fall from other flat-bottomed pedestrian conveyance, subsequent encounter|Fall from other flat-bottomed pedestrian conveyance, subsequent encounter +C2891545|T037|AB|V00.381S|ICD10CM|Fall from other flat-bottomed pedestrian conveyance, sequela|Fall from other flat-bottomed pedestrian conveyance, sequela +C2891545|T037|PT|V00.381S|ICD10CM|Fall from other flat-bottomed pedestrian conveyance, sequela|Fall from other flat-bottomed pedestrian conveyance, sequela +C2891546|T037|AB|V00.382|ICD10CM|Ped on flat-bottomed ped convey colliding w statnry obj|Ped on flat-bottomed ped convey colliding w statnry obj +C2891546|T037|HT|V00.382|ICD10CM|Pedestrian on other flat-bottomed pedestrian conveyance colliding with stationary object|Pedestrian on other flat-bottomed pedestrian conveyance colliding with stationary object +C2891547|T037|AB|V00.382A|ICD10CM|Ped on flat-bottomed ped convey collid w statnry obj, init|Ped on flat-bottomed ped convey collid w statnry obj, init +C2891548|T037|AB|V00.382D|ICD10CM|Ped on flat-bottomed ped convey collid w statnry obj, subs|Ped on flat-bottomed ped convey collid w statnry obj, subs +C2891549|T037|AB|V00.382S|ICD10CM|Ped on flat-bottomed ped convey collid w statnry obj, sqla|Ped on flat-bottomed ped convey collid w statnry obj, sqla +C2891549|T037|PT|V00.382S|ICD10CM|Pedestrian on other flat-bottomed pedestrian conveyance colliding with stationary object, sequela|Pedestrian on other flat-bottomed pedestrian conveyance colliding with stationary object, sequela +C2891550|T037|AB|V00.388|ICD10CM|Other accident on other flat-bottomed pedestrian conveyance|Other accident on other flat-bottomed pedestrian conveyance +C2891550|T037|HT|V00.388|ICD10CM|Other accident on other flat-bottomed pedestrian conveyance|Other accident on other flat-bottomed pedestrian conveyance +C2891551|T037|AB|V00.388A|ICD10CM|Oth accident on flat-bottomed pedestrian conveyance, init|Oth accident on flat-bottomed pedestrian conveyance, init +C2891551|T037|PT|V00.388A|ICD10CM|Other accident on other flat-bottomed pedestrian conveyance, initial encounter|Other accident on other flat-bottomed pedestrian conveyance, initial encounter +C2891552|T037|AB|V00.388D|ICD10CM|Oth accident on flat-bottomed pedestrian conveyance, subs|Oth accident on flat-bottomed pedestrian conveyance, subs +C2891552|T037|PT|V00.388D|ICD10CM|Other accident on other flat-bottomed pedestrian conveyance, subsequent encounter|Other accident on other flat-bottomed pedestrian conveyance, subsequent encounter +C2891553|T037|AB|V00.388S|ICD10CM|Oth accident on flat-bottomed pedestrian conveyance, sequela|Oth accident on flat-bottomed pedestrian conveyance, sequela +C2891553|T037|PT|V00.388S|ICD10CM|Other accident on other flat-bottomed pedestrian conveyance, sequela|Other accident on other flat-bottomed pedestrian conveyance, sequela +C2891554|T037|HT|V00.8|ICD10CM|Accident on other pedestrian conveyance|Accident on other pedestrian conveyance +C2891554|T037|AB|V00.8|ICD10CM|Accident on other pedestrian conveyance|Accident on other pedestrian conveyance +C2891555|T037|AB|V00.81|ICD10CM|Accident with wheelchair (powered)|Accident with wheelchair (powered) +C2891555|T037|HT|V00.81|ICD10CM|Accident with wheelchair (powered)|Accident with wheelchair (powered) +C2891556|T037|AB|V00.811|ICD10CM|Fall from moving wheelchair (powered)|Fall from moving wheelchair (powered) +C2891556|T037|HT|V00.811|ICD10CM|Fall from moving wheelchair (powered)|Fall from moving wheelchair (powered) +C2891557|T037|AB|V00.811A|ICD10CM|Fall from moving wheelchair (powered), initial encounter|Fall from moving wheelchair (powered), initial encounter +C2891557|T037|PT|V00.811A|ICD10CM|Fall from moving wheelchair (powered), initial encounter|Fall from moving wheelchair (powered), initial encounter +C2891558|T037|AB|V00.811D|ICD10CM|Fall from moving wheelchair (powered), subsequent encounter|Fall from moving wheelchair (powered), subsequent encounter +C2891558|T037|PT|V00.811D|ICD10CM|Fall from moving wheelchair (powered), subsequent encounter|Fall from moving wheelchair (powered), subsequent encounter +C2891559|T037|AB|V00.811S|ICD10CM|Fall from moving wheelchair (powered), sequela|Fall from moving wheelchair (powered), sequela +C2891559|T037|PT|V00.811S|ICD10CM|Fall from moving wheelchair (powered), sequela|Fall from moving wheelchair (powered), sequela +C2891560|T037|AB|V00.812|ICD10CM|Wheelchair (powered) colliding with stationary object|Wheelchair (powered) colliding with stationary object +C2891560|T037|HT|V00.812|ICD10CM|Wheelchair (powered) colliding with stationary object|Wheelchair (powered) colliding with stationary object +C2891561|T037|AB|V00.812A|ICD10CM|Wheelchair (powered) colliding w stationary object, init|Wheelchair (powered) colliding w stationary object, init +C2891561|T037|PT|V00.812A|ICD10CM|Wheelchair (powered) colliding with stationary object, initial encounter|Wheelchair (powered) colliding with stationary object, initial encounter +C2891562|T037|AB|V00.812D|ICD10CM|Wheelchair (powered) colliding w stationary object, subs|Wheelchair (powered) colliding w stationary object, subs +C2891562|T037|PT|V00.812D|ICD10CM|Wheelchair (powered) colliding with stationary object, subsequent encounter|Wheelchair (powered) colliding with stationary object, subsequent encounter +C2891563|T037|AB|V00.812S|ICD10CM|Wheelchair (powered) colliding w stationary object, sequela|Wheelchair (powered) colliding w stationary object, sequela +C2891563|T037|PT|V00.812S|ICD10CM|Wheelchair (powered) colliding with stationary object, sequela|Wheelchair (powered) colliding with stationary object, sequela +C2891564|T037|AB|V00.818|ICD10CM|Other accident with wheelchair (powered)|Other accident with wheelchair (powered) +C2891564|T037|HT|V00.818|ICD10CM|Other accident with wheelchair (powered)|Other accident with wheelchair (powered) +C2891565|T037|AB|V00.818A|ICD10CM|Other accident with wheelchair (powered), initial encounter|Other accident with wheelchair (powered), initial encounter +C2891565|T037|PT|V00.818A|ICD10CM|Other accident with wheelchair (powered), initial encounter|Other accident with wheelchair (powered), initial encounter +C2891566|T037|AB|V00.818D|ICD10CM|Other accident with wheelchair (powered), subs encntr|Other accident with wheelchair (powered), subs encntr +C2891566|T037|PT|V00.818D|ICD10CM|Other accident with wheelchair (powered), subsequent encounter|Other accident with wheelchair (powered), subsequent encounter +C2891567|T037|AB|V00.818S|ICD10CM|Other accident with wheelchair (powered), sequela|Other accident with wheelchair (powered), sequela +C2891567|T037|PT|V00.818S|ICD10CM|Other accident with wheelchair (powered), sequela|Other accident with wheelchair (powered), sequela +C2891568|T033|HT|V00.82|ICD10CM|Accident with baby stroller|Accident with baby stroller +C2891568|T033|AB|V00.82|ICD10CM|Accident with baby stroller|Accident with baby stroller +C2891569|T037|AB|V00.821|ICD10CM|Fall from baby stroller|Fall from baby stroller +C2891569|T037|HT|V00.821|ICD10CM|Fall from baby stroller|Fall from baby stroller +C2891570|T037|AB|V00.821A|ICD10CM|Fall from baby stroller, initial encounter|Fall from baby stroller, initial encounter +C2891570|T037|PT|V00.821A|ICD10CM|Fall from baby stroller, initial encounter|Fall from baby stroller, initial encounter +C2891571|T037|AB|V00.821D|ICD10CM|Fall from baby stroller, subsequent encounter|Fall from baby stroller, subsequent encounter +C2891571|T037|PT|V00.821D|ICD10CM|Fall from baby stroller, subsequent encounter|Fall from baby stroller, subsequent encounter +C2891572|T037|AB|V00.821S|ICD10CM|Fall from baby stroller, sequela|Fall from baby stroller, sequela +C2891572|T037|PT|V00.821S|ICD10CM|Fall from baby stroller, sequela|Fall from baby stroller, sequela +C2891573|T037|AB|V00.822|ICD10CM|Baby stroller colliding with stationary object|Baby stroller colliding with stationary object +C2891573|T037|HT|V00.822|ICD10CM|Baby stroller colliding with stationary object|Baby stroller colliding with stationary object +C2891574|T037|AB|V00.822A|ICD10CM|Baby stroller colliding with stationary object, init|Baby stroller colliding with stationary object, init +C2891574|T037|PT|V00.822A|ICD10CM|Baby stroller colliding with stationary object, initial encounter|Baby stroller colliding with stationary object, initial encounter +C2891575|T037|AB|V00.822D|ICD10CM|Baby stroller colliding with stationary object, subs|Baby stroller colliding with stationary object, subs +C2891575|T037|PT|V00.822D|ICD10CM|Baby stroller colliding with stationary object, subsequent encounter|Baby stroller colliding with stationary object, subsequent encounter +C2891576|T037|AB|V00.822S|ICD10CM|Baby stroller colliding with stationary object, sequela|Baby stroller colliding with stationary object, sequela +C2891576|T037|PT|V00.822S|ICD10CM|Baby stroller colliding with stationary object, sequela|Baby stroller colliding with stationary object, sequela +C2891577|T037|AB|V00.828|ICD10CM|Other accident with baby stroller|Other accident with baby stroller +C2891577|T037|HT|V00.828|ICD10CM|Other accident with baby stroller|Other accident with baby stroller +C2891578|T037|AB|V00.828A|ICD10CM|Other accident with baby stroller, initial encounter|Other accident with baby stroller, initial encounter +C2891578|T037|PT|V00.828A|ICD10CM|Other accident with baby stroller, initial encounter|Other accident with baby stroller, initial encounter +C2891579|T037|AB|V00.828D|ICD10CM|Other accident with baby stroller, subsequent encounter|Other accident with baby stroller, subsequent encounter +C2891579|T037|PT|V00.828D|ICD10CM|Other accident with baby stroller, subsequent encounter|Other accident with baby stroller, subsequent encounter +C2891580|T037|AB|V00.828S|ICD10CM|Other accident with baby stroller, sequela|Other accident with baby stroller, sequela +C2891580|T037|PT|V00.828S|ICD10CM|Other accident with baby stroller, sequela|Other accident with baby stroller, sequela +C2977174|T037|HT|V00.83|ICD10CM|Accident with motorized mobility scooter|Accident with motorized mobility scooter +C2977174|T037|AB|V00.83|ICD10CM|Accident with motorized mobility scooter|Accident with motorized mobility scooter +C2921266|T037|AB|V00.831|ICD10CM|Fall from motorized mobility scooter|Fall from motorized mobility scooter +C2921266|T037|HT|V00.831|ICD10CM|Fall from motorized mobility scooter|Fall from motorized mobility scooter +C2977175|T037|AB|V00.831A|ICD10CM|Fall from motorized mobility scooter, initial encounter|Fall from motorized mobility scooter, initial encounter +C2977175|T037|PT|V00.831A|ICD10CM|Fall from motorized mobility scooter, initial encounter|Fall from motorized mobility scooter, initial encounter +C2977176|T037|AB|V00.831D|ICD10CM|Fall from motorized mobility scooter, subsequent encounter|Fall from motorized mobility scooter, subsequent encounter +C2977176|T037|PT|V00.831D|ICD10CM|Fall from motorized mobility scooter, subsequent encounter|Fall from motorized mobility scooter, subsequent encounter +C2977177|T037|AB|V00.831S|ICD10CM|Fall from motorized mobility scooter, sequela|Fall from motorized mobility scooter, sequela +C2977177|T037|PT|V00.831S|ICD10CM|Fall from motorized mobility scooter, sequela|Fall from motorized mobility scooter, sequela +C2977178|T037|AB|V00.832|ICD10CM|Motorized mobility scooter colliding with stationary object|Motorized mobility scooter colliding with stationary object +C2977178|T037|HT|V00.832|ICD10CM|Motorized mobility scooter colliding with stationary object|Motorized mobility scooter colliding with stationary object +C2977179|T037|AB|V00.832A|ICD10CM|Motorized mobility scooter colliding w statnry obj, init|Motorized mobility scooter colliding w statnry obj, init +C2977179|T037|PT|V00.832A|ICD10CM|Motorized mobility scooter colliding with stationary object, initial encounter|Motorized mobility scooter colliding with stationary object, initial encounter +C2977180|T037|AB|V00.832D|ICD10CM|Motorized mobility scooter colliding w statnry obj, subs|Motorized mobility scooter colliding w statnry obj, subs +C2977180|T037|PT|V00.832D|ICD10CM|Motorized mobility scooter colliding with stationary object, subsequent encounter|Motorized mobility scooter colliding with stationary object, subsequent encounter +C2977181|T037|AB|V00.832S|ICD10CM|Motorized mobility scooter colliding w statnry obj, sequela|Motorized mobility scooter colliding w statnry obj, sequela +C2977181|T037|PT|V00.832S|ICD10CM|Motorized mobility scooter colliding with stationary object, sequela|Motorized mobility scooter colliding with stationary object, sequela +C2977182|T037|AB|V00.838|ICD10CM|Other accident with motorized mobility scooter|Other accident with motorized mobility scooter +C2977182|T037|HT|V00.838|ICD10CM|Other accident with motorized mobility scooter|Other accident with motorized mobility scooter +C2977183|T037|AB|V00.838A|ICD10CM|Other accident with motorized mobility scooter, init encntr|Other accident with motorized mobility scooter, init encntr +C2977183|T037|PT|V00.838A|ICD10CM|Other accident with motorized mobility scooter, initial encounter|Other accident with motorized mobility scooter, initial encounter +C2977184|T037|AB|V00.838D|ICD10CM|Other accident with motorized mobility scooter, subs encntr|Other accident with motorized mobility scooter, subs encntr +C2977184|T037|PT|V00.838D|ICD10CM|Other accident with motorized mobility scooter, subsequent encounter|Other accident with motorized mobility scooter, subsequent encounter +C2977185|T037|AB|V00.838S|ICD10CM|Other accident with motorized mobility scooter, sequela|Other accident with motorized mobility scooter, sequela +C2977185|T037|PT|V00.838S|ICD10CM|Other accident with motorized mobility scooter, sequela|Other accident with motorized mobility scooter, sequela +C2891554|T037|HT|V00.89|ICD10CM|Accident on other pedestrian conveyance|Accident on other pedestrian conveyance +C2891554|T037|AB|V00.89|ICD10CM|Accident on other pedestrian conveyance|Accident on other pedestrian conveyance +C2891581|T037|AB|V00.891|ICD10CM|Fall from other pedestrian conveyance|Fall from other pedestrian conveyance +C2891581|T037|HT|V00.891|ICD10CM|Fall from other pedestrian conveyance|Fall from other pedestrian conveyance +C2891582|T037|AB|V00.891A|ICD10CM|Fall from other pedestrian conveyance, initial encounter|Fall from other pedestrian conveyance, initial encounter +C2891582|T037|PT|V00.891A|ICD10CM|Fall from other pedestrian conveyance, initial encounter|Fall from other pedestrian conveyance, initial encounter +C2891583|T037|AB|V00.891D|ICD10CM|Fall from other pedestrian conveyance, subsequent encounter|Fall from other pedestrian conveyance, subsequent encounter +C2891583|T037|PT|V00.891D|ICD10CM|Fall from other pedestrian conveyance, subsequent encounter|Fall from other pedestrian conveyance, subsequent encounter +C2891584|T037|AB|V00.891S|ICD10CM|Fall from other pedestrian conveyance, sequela|Fall from other pedestrian conveyance, sequela +C2891584|T037|PT|V00.891S|ICD10CM|Fall from other pedestrian conveyance, sequela|Fall from other pedestrian conveyance, sequela +C2891585|T037|AB|V00.892|ICD10CM|Pedestrian on oth pedestrian convey colliding w statnry obj|Pedestrian on oth pedestrian convey colliding w statnry obj +C2891585|T037|HT|V00.892|ICD10CM|Pedestrian on other pedestrian conveyance colliding with stationary object|Pedestrian on other pedestrian conveyance colliding with stationary object +C2891586|T037|AB|V00.892A|ICD10CM|Ped on oth pedestrian convey colliding w statnry obj, init|Ped on oth pedestrian convey colliding w statnry obj, init +C2891586|T037|PT|V00.892A|ICD10CM|Pedestrian on other pedestrian conveyance colliding with stationary object, initial encounter|Pedestrian on other pedestrian conveyance colliding with stationary object, initial encounter +C2891587|T037|AB|V00.892D|ICD10CM|Ped on oth pedestrian convey colliding w statnry obj, subs|Ped on oth pedestrian convey colliding w statnry obj, subs +C2891587|T037|PT|V00.892D|ICD10CM|Pedestrian on other pedestrian conveyance colliding with stationary object, subsequent encounter|Pedestrian on other pedestrian conveyance colliding with stationary object, subsequent encounter +C2891588|T037|AB|V00.892S|ICD10CM|Ped on oth ped convey colliding w statnry obj, sequela|Ped on oth ped convey colliding w statnry obj, sequela +C2891588|T037|PT|V00.892S|ICD10CM|Pedestrian on other pedestrian conveyance colliding with stationary object, sequela|Pedestrian on other pedestrian conveyance colliding with stationary object, sequela +C2891589|T037|AB|V00.898|ICD10CM|Other accident on other pedestrian conveyance|Other accident on other pedestrian conveyance +C2891589|T037|HT|V00.898|ICD10CM|Other accident on other pedestrian conveyance|Other accident on other pedestrian conveyance +C2891590|T037|AB|V00.898A|ICD10CM|Other accident on other pedestrian conveyance, init encntr|Other accident on other pedestrian conveyance, init encntr +C2891590|T037|PT|V00.898A|ICD10CM|Other accident on other pedestrian conveyance, initial encounter|Other accident on other pedestrian conveyance, initial encounter +C2891591|T037|AB|V00.898D|ICD10CM|Other accident on other pedestrian conveyance, subs encntr|Other accident on other pedestrian conveyance, subs encntr +C2891591|T037|PT|V00.898D|ICD10CM|Other accident on other pedestrian conveyance, subsequent encounter|Other accident on other pedestrian conveyance, subsequent encounter +C2891592|T037|AB|V00.898S|ICD10CM|Other accident on other pedestrian conveyance, sequela|Other accident on other pedestrian conveyance, sequela +C2891592|T037|PT|V00.898S|ICD10CM|Other accident on other pedestrian conveyance, sequela|Other accident on other pedestrian conveyance, sequela +C0476725|T037|HT|V01|ICD10CM|Pedestrian injured in collision with pedal cycle|Pedestrian injured in collision with pedal cycle +C0476725|T037|AB|V01|ICD10CM|Pedestrian injured in collision with pedal cycle|Pedestrian injured in collision with pedal cycle +C0476725|T037|HT|V01|ICD10|Pedestrian injured in collision with pedal cycle|Pedestrian injured in collision with pedal cycle +C0476747|T037|HT|V01-V09.9|ICD10|Pedestrian injured in transport accident|Pedestrian injured in transport accident +C0362049|T037|HT|V01-V99.9|ICD10|Transport accidents|Transport accidents +C0478681|T037|HT|V01-Y98.9|ICD10|External causes of morbidity and mortality|External causes of morbidity and mortality +C0496184|T037|AB|V01.0|ICD10CM|Pedestrian injured in collision w pedal cycle nontraf|Pedestrian injured in collision w pedal cycle nontraf +C0496184|T037|HT|V01.0|ICD10CM|Pedestrian injured in collision with pedal cycle in nontraffic accident|Pedestrian injured in collision with pedal cycle in nontraffic accident +C0496184|T037|PT|V01.0|ICD10|Pedestrian injured in collision with pedal cycle, nontraffic accident|Pedestrian injured in collision with pedal cycle, nontraffic accident +C0496184|T037|ET|V01.00|ICD10CM|Pedestrian NOS injured in collision with pedal cycle in nontraffic accident|Pedestrian NOS injured in collision with pedal cycle in nontraffic accident +C2891593|T037|AB|V01.00|ICD10CM|Pedestrian on foot injured in collision w pedl cyc nontraf|Pedestrian on foot injured in collision w pedl cyc nontraf +C2891593|T037|HT|V01.00|ICD10CM|Pedestrian on foot injured in collision with pedal cycle in nontraffic accident|Pedestrian on foot injured in collision with pedal cycle in nontraffic accident +C2891594|T037|AB|V01.00XA|ICD10CM|Ped on foot injured in collision w pedl cyc nontraf, init|Ped on foot injured in collision w pedl cyc nontraf, init +C2891594|T037|PT|V01.00XA|ICD10CM|Pedestrian on foot injured in collision with pedal cycle in nontraffic accident, initial encounter|Pedestrian on foot injured in collision with pedal cycle in nontraffic accident, initial encounter +C2891595|T037|AB|V01.00XD|ICD10CM|Ped on foot injured in collision w pedl cyc nontraf, subs|Ped on foot injured in collision w pedl cyc nontraf, subs +C2891596|T037|AB|V01.00XS|ICD10CM|Ped on foot injured in collision w pedl cyc nontraf, sequela|Ped on foot injured in collision w pedl cyc nontraf, sequela +C2891596|T037|PT|V01.00XS|ICD10CM|Pedestrian on foot injured in collision with pedal cycle in nontraffic accident, sequela|Pedestrian on foot injured in collision with pedal cycle in nontraffic accident, sequela +C2891597|T037|AB|V01.01|ICD10CM|Ped on rolr-skt injured in collision w pedl cyc nontraf|Ped on rolr-skt injured in collision w pedl cyc nontraf +C2891597|T037|HT|V01.01|ICD10CM|Pedestrian on roller-skates injured in collision with pedal cycle in nontraffic accident|Pedestrian on roller-skates injured in collision with pedal cycle in nontraffic accident +C2891598|T037|AB|V01.01XA|ICD10CM|Ped on rolr-skt injured in clsn w pedl cyc nontraf, init|Ped on rolr-skt injured in clsn w pedl cyc nontraf, init +C2891599|T037|AB|V01.01XD|ICD10CM|Ped on rolr-skt injured in clsn w pedl cyc nontraf, subs|Ped on rolr-skt injured in clsn w pedl cyc nontraf, subs +C2891600|T037|AB|V01.01XS|ICD10CM|Ped on rolr-skt injured in clsn w pedl cyc nontraf, sequela|Ped on rolr-skt injured in clsn w pedl cyc nontraf, sequela +C2891600|T037|PT|V01.01XS|ICD10CM|Pedestrian on roller-skates injured in collision with pedal cycle in nontraffic accident, sequela|Pedestrian on roller-skates injured in collision with pedal cycle in nontraffic accident, sequela +C2891601|T037|AB|V01.02|ICD10CM|Ped on skateboard injured in collision w pedl cyc nontraf|Ped on skateboard injured in collision w pedl cyc nontraf +C2891601|T037|HT|V01.02|ICD10CM|Pedestrian on skateboard injured in collision with pedal cycle in nontraffic accident|Pedestrian on skateboard injured in collision with pedal cycle in nontraffic accident +C2891602|T037|AB|V01.02XA|ICD10CM|Ped on sktbrd injured in collision w pedl cyc nontraf, init|Ped on sktbrd injured in collision w pedl cyc nontraf, init +C2891603|T037|AB|V01.02XD|ICD10CM|Ped on sktbrd injured in collision w pedl cyc nontraf, subs|Ped on sktbrd injured in collision w pedl cyc nontraf, subs +C2891604|T037|AB|V01.02XS|ICD10CM|Ped on sktbrd injured in clsn w pedl cyc nontraf, sequela|Ped on sktbrd injured in clsn w pedl cyc nontraf, sequela +C2891604|T037|PT|V01.02XS|ICD10CM|Pedestrian on skateboard injured in collision with pedal cycle in nontraffic accident, sequela|Pedestrian on skateboard injured in collision with pedal cycle in nontraffic accident, sequela +C2891605|T037|ET|V01.09|ICD10CM|Pedestrian in wheelchair (powered) injured in collision with pedal cycle in nontraffic accident|Pedestrian in wheelchair (powered) injured in collision with pedal cycle in nontraffic accident +C2891606|T037|ET|V01.09|ICD10CM|Pedestrian on ice-skates injured in collision with pedal cycle in nontraffic accident|Pedestrian on ice-skates injured in collision with pedal cycle in nontraffic accident +C2977187|T037|ET|V01.09|ICD10CM|Pedestrian on nonmotorized scooter injured in collision with pedal cycle in nontraffic accident|Pedestrian on nonmotorized scooter injured in collision with pedal cycle in nontraffic accident +C2891607|T037|ET|V01.09|ICD10CM|Pedestrian on sled injured in collision with pedal cycle in nontraffic accident|Pedestrian on sled injured in collision with pedal cycle in nontraffic accident +C2891608|T037|ET|V01.09|ICD10CM|Pedestrian on snow-skis injured in collision with pedal cycle in nontraffic accident|Pedestrian on snow-skis injured in collision with pedal cycle in nontraffic accident +C2891609|T037|ET|V01.09|ICD10CM|Pedestrian on snowboard injured in collision with pedal cycle in nontraffic accident|Pedestrian on snowboard injured in collision with pedal cycle in nontraffic accident +C2891611|T037|AB|V01.09|ICD10CM|Pedestrian w convey injured in collision w pedl cyc nontraf|Pedestrian w convey injured in collision w pedl cyc nontraf +C2891610|T037|ET|V01.09|ICD10CM|Pedestrian with baby stroller injured in collision with pedal cycle in nontraffic accident|Pedestrian with baby stroller injured in collision with pedal cycle in nontraffic accident +C2891611|T037|HT|V01.09|ICD10CM|Pedestrian with other conveyance injured in collision with pedal cycle in nontraffic accident|Pedestrian with other conveyance injured in collision with pedal cycle in nontraffic accident +C2891612|T037|AB|V01.09XA|ICD10CM|Ped w convey injured in collision w pedl cyc nontraf, init|Ped w convey injured in collision w pedl cyc nontraf, init +C2891613|T037|AB|V01.09XD|ICD10CM|Ped w convey injured in collision w pedl cyc nontraf, subs|Ped w convey injured in collision w pedl cyc nontraf, subs +C2891614|T037|AB|V01.09XS|ICD10CM|Ped w convey injured in clsn w pedl cyc nontraf, sequela|Ped w convey injured in clsn w pedl cyc nontraf, sequela +C0476726|T037|AB|V01.1|ICD10CM|Pedestrian injured in collision w pedal cycle in traf|Pedestrian injured in collision w pedal cycle in traf +C0476726|T037|HT|V01.1|ICD10CM|Pedestrian injured in collision with pedal cycle in traffic accident|Pedestrian injured in collision with pedal cycle in traffic accident +C0476726|T037|PT|V01.1|ICD10|Pedestrian injured in collision with pedal cycle, traffic accident|Pedestrian injured in collision with pedal cycle, traffic accident +C0476726|T037|ET|V01.10|ICD10CM|Pedestrian NOS injured in collision with pedal cycle in traffic accident|Pedestrian NOS injured in collision with pedal cycle in traffic accident +C2891615|T037|AB|V01.10|ICD10CM|Pedestrian on foot injured in collision w pedl cyc in traf|Pedestrian on foot injured in collision w pedl cyc in traf +C2891615|T037|HT|V01.10|ICD10CM|Pedestrian on foot injured in collision with pedal cycle in traffic accident|Pedestrian on foot injured in collision with pedal cycle in traffic accident +C2891616|T037|AB|V01.10XA|ICD10CM|Ped on foot injured in collision w pedl cyc in traf, init|Ped on foot injured in collision w pedl cyc in traf, init +C2891616|T037|PT|V01.10XA|ICD10CM|Pedestrian on foot injured in collision with pedal cycle in traffic accident, initial encounter|Pedestrian on foot injured in collision with pedal cycle in traffic accident, initial encounter +C2891617|T037|AB|V01.10XD|ICD10CM|Ped on foot injured in collision w pedl cyc in traf, subs|Ped on foot injured in collision w pedl cyc in traf, subs +C2891617|T037|PT|V01.10XD|ICD10CM|Pedestrian on foot injured in collision with pedal cycle in traffic accident, subsequent encounter|Pedestrian on foot injured in collision with pedal cycle in traffic accident, subsequent encounter +C2891618|T037|AB|V01.10XS|ICD10CM|Ped on foot injured in collision w pedl cyc in traf, sequela|Ped on foot injured in collision w pedl cyc in traf, sequela +C2891618|T037|PT|V01.10XS|ICD10CM|Pedestrian on foot injured in collision with pedal cycle in traffic accident, sequela|Pedestrian on foot injured in collision with pedal cycle in traffic accident, sequela +C2891619|T037|AB|V01.11|ICD10CM|Ped on rolr-skt injured in collision w pedl cyc in traf|Ped on rolr-skt injured in collision w pedl cyc in traf +C2891619|T037|HT|V01.11|ICD10CM|Pedestrian on roller-skates injured in collision with pedal cycle in traffic accident|Pedestrian on roller-skates injured in collision with pedal cycle in traffic accident +C2891620|T037|AB|V01.11XA|ICD10CM|Ped on rolr-skt injured in clsn w pedl cyc in traf, init|Ped on rolr-skt injured in clsn w pedl cyc in traf, init +C2891621|T037|AB|V01.11XD|ICD10CM|Ped on rolr-skt injured in clsn w pedl cyc in traf, subs|Ped on rolr-skt injured in clsn w pedl cyc in traf, subs +C2891622|T037|AB|V01.11XS|ICD10CM|Ped on rolr-skt injured in clsn w pedl cyc in traf, sequela|Ped on rolr-skt injured in clsn w pedl cyc in traf, sequela +C2891622|T037|PT|V01.11XS|ICD10CM|Pedestrian on roller-skates injured in collision with pedal cycle in traffic accident, sequela|Pedestrian on roller-skates injured in collision with pedal cycle in traffic accident, sequela +C2891623|T037|AB|V01.12|ICD10CM|Ped on skateboard injured in collision w pedl cyc in traf|Ped on skateboard injured in collision w pedl cyc in traf +C2891623|T037|HT|V01.12|ICD10CM|Pedestrian on skateboard injured in collision with pedal cycle in traffic accident|Pedestrian on skateboard injured in collision with pedal cycle in traffic accident +C2891624|T037|AB|V01.12XA|ICD10CM|Ped on sktbrd injured in collision w pedl cyc in traf, init|Ped on sktbrd injured in collision w pedl cyc in traf, init +C2891625|T037|AB|V01.12XD|ICD10CM|Ped on sktbrd injured in collision w pedl cyc in traf, subs|Ped on sktbrd injured in collision w pedl cyc in traf, subs +C2891626|T037|AB|V01.12XS|ICD10CM|Ped on sktbrd injured in clsn w pedl cyc in traf, sequela|Ped on sktbrd injured in clsn w pedl cyc in traf, sequela +C2891626|T037|PT|V01.12XS|ICD10CM|Pedestrian on skateboard injured in collision with pedal cycle in traffic accident, sequela|Pedestrian on skateboard injured in collision with pedal cycle in traffic accident, sequela +C2977188|T037|ET|V01.19|ICD10CM|Pedestrian in motorized mobility scooter injured in collision with pedal cycle in traffic accident|Pedestrian in motorized mobility scooter injured in collision with pedal cycle in traffic accident +C2891627|T037|ET|V01.19|ICD10CM|Pedestrian in wheelchair (powered) injured in collision with pedal cycle in traffic accident|Pedestrian in wheelchair (powered) injured in collision with pedal cycle in traffic accident +C2891628|T037|ET|V01.19|ICD10CM|Pedestrian on ice-skates injured in collision with pedal cycle in traffic accident|Pedestrian on ice-skates injured in collision with pedal cycle in traffic accident +C2977189|T037|ET|V01.19|ICD10CM|Pedestrian on nonmotorized scooter injured in collision with pedal cycle in traffic accident|Pedestrian on nonmotorized scooter injured in collision with pedal cycle in traffic accident +C2891629|T037|ET|V01.19|ICD10CM|Pedestrian on sled injured in collision with pedal cycle in traffic accident|Pedestrian on sled injured in collision with pedal cycle in traffic accident +C2891630|T037|ET|V01.19|ICD10CM|Pedestrian on snow-skis injured in collision with pedal cycle in traffic accident|Pedestrian on snow-skis injured in collision with pedal cycle in traffic accident +C2891631|T037|ET|V01.19|ICD10CM|Pedestrian on snowboard injured in collision with pedal cycle in traffic accident|Pedestrian on snowboard injured in collision with pedal cycle in traffic accident +C2891633|T037|AB|V01.19|ICD10CM|Pedestrian w convey injured in collision w pedl cyc in traf|Pedestrian w convey injured in collision w pedl cyc in traf +C2891632|T037|ET|V01.19|ICD10CM|Pedestrian with baby stroller injured in collision with pedal cycle in traffic accident|Pedestrian with baby stroller injured in collision with pedal cycle in traffic accident +C2891633|T037|HT|V01.19|ICD10CM|Pedestrian with other conveyance injured in collision with pedal cycle in traffic accident|Pedestrian with other conveyance injured in collision with pedal cycle in traffic accident +C2891634|T037|AB|V01.19XA|ICD10CM|Ped w convey injured in collision w pedl cyc in traf, init|Ped w convey injured in collision w pedl cyc in traf, init +C2891635|T037|AB|V01.19XD|ICD10CM|Ped w convey injured in collision w pedl cyc in traf, subs|Ped w convey injured in collision w pedl cyc in traf, subs +C2891636|T037|AB|V01.19XS|ICD10CM|Ped w convey injured in clsn w pedl cyc in traf, sequela|Ped w convey injured in clsn w pedl cyc in traf, sequela +C2891636|T037|PT|V01.19XS|ICD10CM|Pedestrian with other conveyance injured in collision with pedal cycle in traffic accident, sequela|Pedestrian with other conveyance injured in collision with pedal cycle in traffic accident, sequela +C3495380|T037|AB|V01.9|ICD10CM|Pedestrian injured in collision w pedal cycle, unsp|Pedestrian injured in collision w pedal cycle, unsp +C3495380|T037|HT|V01.9|ICD10CM|Pedestrian injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident|Pedestrian injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident +C3495380|T037|PT|V01.9|ICD10|Pedestrian injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident|Pedestrian injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident +C2891637|T037|AB|V01.90|ICD10CM|Pedestrian on foot injured in collision w pedal cycle, unsp|Pedestrian on foot injured in collision w pedal cycle, unsp +C2891638|T037|AB|V01.90XA|ICD10CM|Ped on foot injured in collision w pedl cyc, unsp, init|Ped on foot injured in collision w pedl cyc, unsp, init +C2891639|T037|AB|V01.90XD|ICD10CM|Ped on foot injured in collision w pedl cyc, unsp, subs|Ped on foot injured in collision w pedl cyc, unsp, subs +C2891640|T037|AB|V01.90XS|ICD10CM|Ped on foot injured in collision w pedl cyc, unsp, sequela|Ped on foot injured in collision w pedl cyc, unsp, sequela +C2891641|T037|AB|V01.91|ICD10CM|Pedestrian on rolr-skt injured in collision w pedl cyc, unsp|Pedestrian on rolr-skt injured in collision w pedl cyc, unsp +C2891642|T037|AB|V01.91XA|ICD10CM|Ped on rolr-skt injured in collision w pedl cyc, unsp, init|Ped on rolr-skt injured in collision w pedl cyc, unsp, init +C2891643|T037|AB|V01.91XD|ICD10CM|Ped on rolr-skt injured in collision w pedl cyc, unsp, subs|Ped on rolr-skt injured in collision w pedl cyc, unsp, subs +C2891644|T037|AB|V01.91XS|ICD10CM|Ped on rolr-skt injured in clsn w pedl cyc, unsp, sequela|Ped on rolr-skt injured in clsn w pedl cyc, unsp, sequela +C2891645|T037|AB|V01.92|ICD10CM|Ped on skateboard injured in collision w pedl cyc, unsp|Ped on skateboard injured in collision w pedl cyc, unsp +C2891646|T037|AB|V01.92XA|ICD10CM|Ped on sktbrd injured in collision w pedl cyc, unsp, init|Ped on sktbrd injured in collision w pedl cyc, unsp, init +C2891647|T037|AB|V01.92XD|ICD10CM|Ped on sktbrd injured in collision w pedl cyc, unsp, subs|Ped on sktbrd injured in collision w pedl cyc, unsp, subs +C2891648|T037|AB|V01.92XS|ICD10CM|Ped on sktbrd injured in collision w pedl cyc, unsp, sequela|Ped on sktbrd injured in collision w pedl cyc, unsp, sequela +C2891655|T037|AB|V01.99|ICD10CM|Pedestrian w convey injured in collision w pedal cycle, unsp|Pedestrian w convey injured in collision w pedal cycle, unsp +C2891656|T037|AB|V01.99XA|ICD10CM|Ped w convey injured in collision w pedl cyc, unsp, init|Ped w convey injured in collision w pedl cyc, unsp, init +C2891657|T037|AB|V01.99XD|ICD10CM|Ped w convey injured in collision w pedl cyc, unsp, subs|Ped w convey injured in collision w pedl cyc, unsp, subs +C2891658|T037|AB|V01.99XS|ICD10CM|Ped w convey injured in collision w pedl cyc, unsp, sequela|Ped w convey injured in collision w pedl cyc, unsp, sequela +C0476727|T037|AB|V02|ICD10CM|Pedestrian injured in collision w 2/3-whl mv|Pedestrian injured in collision w 2/3-whl mv +C0476727|T037|HT|V02|ICD10CM|Pedestrian injured in collision with two- or three-wheeled motor vehicle|Pedestrian injured in collision with two- or three-wheeled motor vehicle +C0476727|T037|HT|V02|ICD10|Pedestrian injured in collision with two- or three-wheeled motor vehicle|Pedestrian injured in collision with two- or three-wheeled motor vehicle +C0476728|T037|AB|V02.0|ICD10CM|Pedestrian injured in collision w 2/3-whl mv nontraf|Pedestrian injured in collision w 2/3-whl mv nontraf +C0476728|T037|HT|V02.0|ICD10CM|Pedestrian injured in collision with two- or three-wheeled motor vehicle in nontraffic accident|Pedestrian injured in collision with two- or three-wheeled motor vehicle in nontraffic accident +C0476728|T037|PT|V02.0|ICD10|Pedestrian injured in collision with two- or three-wheeled motor vehicle, nontraffic accident|Pedestrian injured in collision with two- or three-wheeled motor vehicle, nontraffic accident +C0476728|T037|ET|V02.00|ICD10CM|Pedestrian NOS injured in collision with two- or three-wheeled motor vehicle in nontraffic accident|Pedestrian NOS injured in collision with two- or three-wheeled motor vehicle in nontraffic accident +C2891659|T037|AB|V02.00|ICD10CM|Pedestrian on foot injured in collision w 2/3-whl mv nontraf|Pedestrian on foot injured in collision w 2/3-whl mv nontraf +C2891660|T037|AB|V02.00XA|ICD10CM|Ped on foot injured in collision w 2/3-whl mv nontraf, init|Ped on foot injured in collision w 2/3-whl mv nontraf, init +C2891661|T037|AB|V02.00XD|ICD10CM|Ped on foot injured in collision w 2/3-whl mv nontraf, subs|Ped on foot injured in collision w 2/3-whl mv nontraf, subs +C2891662|T037|AB|V02.00XS|ICD10CM|Ped on foot injured in clsn w 2/3-whl mv nontraf, sequela|Ped on foot injured in clsn w 2/3-whl mv nontraf, sequela +C2891663|T037|AB|V02.01|ICD10CM|Ped on rolr-skt injured in collision w 2/3-whl mv nontraf|Ped on rolr-skt injured in collision w 2/3-whl mv nontraf +C2891664|T037|AB|V02.01XA|ICD10CM|Ped on rolr-skt injured in clsn w 2/3-whl mv nontraf, init|Ped on rolr-skt injured in clsn w 2/3-whl mv nontraf, init +C2891665|T037|AB|V02.01XD|ICD10CM|Ped on rolr-skt injured in clsn w 2/3-whl mv nontraf, subs|Ped on rolr-skt injured in clsn w 2/3-whl mv nontraf, subs +C2891666|T037|AB|V02.01XS|ICD10CM|Ped on rolr-skt inj in clsn w 2/3-whl mv nontraf, sequela|Ped on rolr-skt inj in clsn w 2/3-whl mv nontraf, sequela +C2891667|T037|AB|V02.02|ICD10CM|Ped on skateboard injured in collision w 2/3-whl mv nontraf|Ped on skateboard injured in collision w 2/3-whl mv nontraf +C2891668|T037|AB|V02.02XA|ICD10CM|Ped on sktbrd injured in clsn w 2/3-whl mv nontraf, init|Ped on sktbrd injured in clsn w 2/3-whl mv nontraf, init +C2891669|T037|AB|V02.02XD|ICD10CM|Ped on sktbrd injured in clsn w 2/3-whl mv nontraf, subs|Ped on sktbrd injured in clsn w 2/3-whl mv nontraf, subs +C2891670|T037|AB|V02.02XS|ICD10CM|Ped on sktbrd injured in clsn w 2/3-whl mv nontraf, sequela|Ped on sktbrd injured in clsn w 2/3-whl mv nontraf, sequela +C2891677|T037|AB|V02.09|ICD10CM|Ped w convey injured in collision w 2/3-whl mv nontraf|Ped w convey injured in collision w 2/3-whl mv nontraf +C2891678|T037|AB|V02.09XA|ICD10CM|Ped w convey injured in collision w 2/3-whl mv nontraf, init|Ped w convey injured in collision w 2/3-whl mv nontraf, init +C2891679|T037|AB|V02.09XD|ICD10CM|Ped w convey injured in collision w 2/3-whl mv nontraf, subs|Ped w convey injured in collision w 2/3-whl mv nontraf, subs +C2891680|T037|AB|V02.09XS|ICD10CM|Ped w convey injured in clsn w 2/3-whl mv nontraf, sequela|Ped w convey injured in clsn w 2/3-whl mv nontraf, sequela +C0476729|T037|AB|V02.1|ICD10CM|Pedestrian injured in collision w 2/3-whl mv in traf|Pedestrian injured in collision w 2/3-whl mv in traf +C0476729|T037|HT|V02.1|ICD10CM|Pedestrian injured in collision with two- or three-wheeled motor vehicle in traffic accident|Pedestrian injured in collision with two- or three-wheeled motor vehicle in traffic accident +C0476729|T037|PT|V02.1|ICD10|Pedestrian injured in collision with two- or three-wheeled motor vehicle, traffic accident|Pedestrian injured in collision with two- or three-wheeled motor vehicle, traffic accident +C0476729|T037|ET|V02.10|ICD10CM|Pedestrian NOS injured in collision with two- or three-wheeled motor vehicle in traffic accident|Pedestrian NOS injured in collision with two- or three-wheeled motor vehicle in traffic accident +C2891681|T037|AB|V02.10|ICD10CM|Pedestrian on foot injured in collision w 2/3-whl mv in traf|Pedestrian on foot injured in collision w 2/3-whl mv in traf +C2891681|T037|HT|V02.10|ICD10CM|Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in traffic accident|Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in traffic accident +C2891682|T037|AB|V02.10XA|ICD10CM|Ped on foot injured in collision w 2/3-whl mv in traf, init|Ped on foot injured in collision w 2/3-whl mv in traf, init +C2891683|T037|AB|V02.10XD|ICD10CM|Ped on foot injured in collision w 2/3-whl mv in traf, subs|Ped on foot injured in collision w 2/3-whl mv in traf, subs +C2891684|T037|AB|V02.10XS|ICD10CM|Ped on foot injured in clsn w 2/3-whl mv in traf, sequela|Ped on foot injured in clsn w 2/3-whl mv in traf, sequela +C2891685|T037|AB|V02.11|ICD10CM|Ped on rolr-skt injured in collision w 2/3-whl mv in traf|Ped on rolr-skt injured in collision w 2/3-whl mv in traf +C2891686|T037|AB|V02.11XA|ICD10CM|Ped on rolr-skt injured in clsn w 2/3-whl mv in traf, init|Ped on rolr-skt injured in clsn w 2/3-whl mv in traf, init +C2891687|T037|AB|V02.11XD|ICD10CM|Ped on rolr-skt injured in clsn w 2/3-whl mv in traf, subs|Ped on rolr-skt injured in clsn w 2/3-whl mv in traf, subs +C2891688|T037|AB|V02.11XS|ICD10CM|Ped on rolr-skt inj in clsn w 2/3-whl mv in traf, sequela|Ped on rolr-skt inj in clsn w 2/3-whl mv in traf, sequela +C2891689|T037|AB|V02.12|ICD10CM|Ped on skateboard injured in collision w 2/3-whl mv in traf|Ped on skateboard injured in collision w 2/3-whl mv in traf +C2891690|T037|AB|V02.12XA|ICD10CM|Ped on sktbrd injured in clsn w 2/3-whl mv in traf, init|Ped on sktbrd injured in clsn w 2/3-whl mv in traf, init +C2891691|T037|AB|V02.12XD|ICD10CM|Ped on sktbrd injured in clsn w 2/3-whl mv in traf, subs|Ped on sktbrd injured in clsn w 2/3-whl mv in traf, subs +C2891692|T037|AB|V02.12XS|ICD10CM|Ped on sktbrd injured in clsn w 2/3-whl mv in traf, sequela|Ped on sktbrd injured in clsn w 2/3-whl mv in traf, sequela +C2891699|T037|AB|V02.19|ICD10CM|Ped w convey injured in collision w 2/3-whl mv in traf|Ped w convey injured in collision w 2/3-whl mv in traf +C2891695|T037|ET|V02.19|ICD10CM|Pedestrian on sled injured in collision with two- or three-wheeled motor vehicle in traffic accident|Pedestrian on sled injured in collision with two- or three-wheeled motor vehicle in traffic accident +C2891700|T037|AB|V02.19XA|ICD10CM|Ped w convey injured in collision w 2/3-whl mv in traf, init|Ped w convey injured in collision w 2/3-whl mv in traf, init +C2891701|T037|AB|V02.19XD|ICD10CM|Ped w convey injured in collision w 2/3-whl mv in traf, subs|Ped w convey injured in collision w 2/3-whl mv in traf, subs +C2891702|T037|AB|V02.19XS|ICD10CM|Ped w convey injured in clsn w 2/3-whl mv in traf, sequela|Ped w convey injured in clsn w 2/3-whl mv in traf, sequela +C0476727|T037|AB|V02.9|ICD10CM|Pedestrian injured in collision w 2/3-whl mv, unsp|Pedestrian injured in collision w 2/3-whl mv, unsp +C2891703|T037|AB|V02.90|ICD10CM|Pedestrian on foot injured in collision w 2/3-whl mv, unsp|Pedestrian on foot injured in collision w 2/3-whl mv, unsp +C2891704|T037|AB|V02.90XA|ICD10CM|Ped on foot injured in collision w 2/3-whl mv, unsp, init|Ped on foot injured in collision w 2/3-whl mv, unsp, init +C2891705|T037|AB|V02.90XD|ICD10CM|Ped on foot injured in collision w 2/3-whl mv, unsp, subs|Ped on foot injured in collision w 2/3-whl mv, unsp, subs +C2891706|T037|AB|V02.90XS|ICD10CM|Ped on foot injured in collision w 2/3-whl mv, unsp, sequela|Ped on foot injured in collision w 2/3-whl mv, unsp, sequela +C2891707|T037|AB|V02.91|ICD10CM|Ped on rolr-skt injured in collision w 2/3-whl mv, unsp|Ped on rolr-skt injured in collision w 2/3-whl mv, unsp +C2891708|T037|AB|V02.91XA|ICD10CM|Ped on rolr-skt injured in clsn w 2/3-whl mv, unsp, init|Ped on rolr-skt injured in clsn w 2/3-whl mv, unsp, init +C2891709|T037|AB|V02.91XD|ICD10CM|Ped on rolr-skt injured in clsn w 2/3-whl mv, unsp, subs|Ped on rolr-skt injured in clsn w 2/3-whl mv, unsp, subs +C2891710|T037|AB|V02.91XS|ICD10CM|Ped on rolr-skt injured in clsn w 2/3-whl mv, unsp, sequela|Ped on rolr-skt injured in clsn w 2/3-whl mv, unsp, sequela +C2891711|T037|AB|V02.92|ICD10CM|Ped on skateboard injured in collision w 2/3-whl mv, unsp|Ped on skateboard injured in collision w 2/3-whl mv, unsp +C2891712|T037|AB|V02.92XA|ICD10CM|Ped on sktbrd injured in collision w 2/3-whl mv, unsp, init|Ped on sktbrd injured in collision w 2/3-whl mv, unsp, init +C2891713|T037|AB|V02.92XD|ICD10CM|Ped on sktbrd injured in collision w 2/3-whl mv, unsp, subs|Ped on sktbrd injured in collision w 2/3-whl mv, unsp, subs +C2891714|T037|AB|V02.92XS|ICD10CM|Ped on sktbrd injured in clsn w 2/3-whl mv, unsp, sequela|Ped on sktbrd injured in clsn w 2/3-whl mv, unsp, sequela +C2891721|T037|AB|V02.99|ICD10CM|Pedestrian w convey injured in collision w 2/3-whl mv, unsp|Pedestrian w convey injured in collision w 2/3-whl mv, unsp +C2891722|T037|AB|V02.99XA|ICD10CM|Ped w convey injured in collision w 2/3-whl mv, unsp, init|Ped w convey injured in collision w 2/3-whl mv, unsp, init +C2891723|T037|AB|V02.99XD|ICD10CM|Ped w convey injured in collision w 2/3-whl mv, unsp, subs|Ped w convey injured in collision w 2/3-whl mv, unsp, subs +C2891724|T037|AB|V02.99XS|ICD10CM|Ped w convey injured in clsn w 2/3-whl mv, unsp, sequela|Ped w convey injured in clsn w 2/3-whl mv, unsp, sequela +C0476730|T037|AB|V03|ICD10CM|Pedestrian injured in collision w car, pick-up truck or van|Pedestrian injured in collision w car, pick-up truck or van +C0476730|T037|HT|V03|ICD10CM|Pedestrian injured in collision with car, pick-up truck or van|Pedestrian injured in collision with car, pick-up truck or van +C0476730|T037|HT|V03|ICD10|Pedestrian injured in collision with car, pick-up truck or van|Pedestrian injured in collision with car, pick-up truck or van +C0476731|T037|HT|V03.0|ICD10CM|Pedestrian injured in collision with car, pick-up truck or van in nontraffic accident|Pedestrian injured in collision with car, pick-up truck or van in nontraffic accident +C0476731|T037|PT|V03.0|ICD10|Pedestrian injured in collision with car, pick-up truck or van, nontraffic accident|Pedestrian injured in collision with car, pick-up truck or van, nontraffic accident +C0476731|T037|AB|V03.0|ICD10CM|Pedestrian injured pick-up truck, pk-up/van nontraf|Pedestrian injured pick-up truck, pk-up/van nontraf +C0476731|T037|ET|V03.00|ICD10CM|Pedestrian NOS injured in collision with car, pick-up truck or van in nontraffic accident|Pedestrian NOS injured in collision with car, pick-up truck or van in nontraffic accident +C2891725|T037|HT|V03.00|ICD10CM|Pedestrian on foot injured in collision with car, pick-up truck or van in nontraffic accident|Pedestrian on foot injured in collision with car, pick-up truck or van in nontraffic accident +C2891725|T037|AB|V03.00|ICD10CM|Pedestrian on foot injured pick-up truck, pk-up/van nontraf|Pedestrian on foot injured pick-up truck, pk-up/van nontraf +C2891726|T037|AB|V03.00XA|ICD10CM|Ped on foot injured pick-up truck, pk-up/van nontraf, init|Ped on foot injured pick-up truck, pk-up/van nontraf, init +C2891727|T037|AB|V03.00XD|ICD10CM|Ped on foot injured pick-up truck, pk-up/van nontraf, subs|Ped on foot injured pick-up truck, pk-up/van nontraf, subs +C2891728|T037|AB|V03.00XS|ICD10CM|Ped on foot inj pick-up truck, pk-up/van nontraf, sequela|Ped on foot inj pick-up truck, pk-up/van nontraf, sequela +C2891729|T037|AB|V03.01|ICD10CM|Ped on rolr-skt injured pick-up truck, pk-up/van nontraf|Ped on rolr-skt injured pick-up truck, pk-up/van nontraf +C2891730|T037|AB|V03.01XA|ICD10CM|Ped on rolr-skt inj pick-up truck, pk-up/van nontraf, init|Ped on rolr-skt inj pick-up truck, pk-up/van nontraf, init +C2891731|T037|AB|V03.01XD|ICD10CM|Ped on rolr-skt inj pick-up truck, pk-up/van nontraf, subs|Ped on rolr-skt inj pick-up truck, pk-up/van nontraf, subs +C2891732|T037|AB|V03.01XS|ICD10CM|Ped on rolr-skt inj pk-up truck, pk-up/van nontraf, sequela|Ped on rolr-skt inj pk-up truck, pk-up/van nontraf, sequela +C2891733|T037|AB|V03.02|ICD10CM|Ped on skateboard injured pick-up truck, pk-up/van nontraf|Ped on skateboard injured pick-up truck, pk-up/van nontraf +C2891733|T037|HT|V03.02|ICD10CM|Pedestrian on skateboard injured in collision with car, pick-up truck or van in nontraffic accident|Pedestrian on skateboard injured in collision with car, pick-up truck or van in nontraffic accident +C2891734|T037|AB|V03.02XA|ICD10CM|Ped on sktbrd injured pick-up truck, pk-up/van nontraf, init|Ped on sktbrd injured pick-up truck, pk-up/van nontraf, init +C2891735|T037|AB|V03.02XD|ICD10CM|Ped on sktbrd injured pick-up truck, pk-up/van nontraf, subs|Ped on sktbrd injured pick-up truck, pk-up/van nontraf, subs +C2891736|T037|AB|V03.02XS|ICD10CM|Ped on sktbrd inj pick-up truck, pk-up/van nontraf, sequela|Ped on sktbrd inj pick-up truck, pk-up/van nontraf, sequela +C2891738|T037|ET|V03.09|ICD10CM|Pedestrian on ice-skates injured in collision with car, pick-up truck or van in nontraffic accident|Pedestrian on ice-skates injured in collision with car, pick-up truck or van in nontraffic accident +C2891782|T037|ET|V03.09|ICD10CM|Pedestrian on sled injured in collision with car, pick-up truck or van in nontraffic accident|Pedestrian on sled injured in collision with car, pick-up truck or van in nontraffic accident +C2891739|T037|ET|V03.09|ICD10CM|Pedestrian on snow-skis injured in collision with car, pick-up truck or van in nontraffic accident|Pedestrian on snow-skis injured in collision with car, pick-up truck or van in nontraffic accident +C2891740|T037|ET|V03.09|ICD10CM|Pedestrian on snowboard injured in collision with car, pick-up truck or van in nontraffic accident|Pedestrian on snowboard injured in collision with car, pick-up truck or van in nontraffic accident +C2891742|T037|AB|V03.09|ICD10CM|Pedestrian w convey injured pick-up truck, pk-up/van nontraf|Pedestrian w convey injured pick-up truck, pk-up/van nontraf +C2891743|T037|AB|V03.09XA|ICD10CM|Ped w convey injured pick-up truck, pk-up/van nontraf, init|Ped w convey injured pick-up truck, pk-up/van nontraf, init +C2891744|T037|AB|V03.09XD|ICD10CM|Ped w convey injured pick-up truck, pk-up/van nontraf, subs|Ped w convey injured pick-up truck, pk-up/van nontraf, subs +C2891745|T037|AB|V03.09XS|ICD10CM|Ped w convey inj pick-up truck, pk-up/van nontraf, sequela|Ped w convey inj pick-up truck, pk-up/van nontraf, sequela +C0476732|T037|HT|V03.1|ICD10CM|Pedestrian injured in collision with car, pick-up truck or van in traffic accident|Pedestrian injured in collision with car, pick-up truck or van in traffic accident +C0476732|T037|PT|V03.1|ICD10|Pedestrian injured in collision with car, pick-up truck or van, traffic accident|Pedestrian injured in collision with car, pick-up truck or van, traffic accident +C0476732|T037|AB|V03.1|ICD10CM|Pedestrian injured pick-up truck, pk-up/van in traf|Pedestrian injured pick-up truck, pk-up/van in traf +C0476732|T037|ET|V03.10|ICD10CM|Pedestrian NOS injured in collision with car, pick-up truck or van in traffic accident|Pedestrian NOS injured in collision with car, pick-up truck or van in traffic accident +C2891746|T037|HT|V03.10|ICD10CM|Pedestrian on foot injured in collision with car, pick-up truck or van in traffic accident|Pedestrian on foot injured in collision with car, pick-up truck or van in traffic accident +C2891746|T037|AB|V03.10|ICD10CM|Pedestrian on foot injured pick-up truck, pk-up/van in traf|Pedestrian on foot injured pick-up truck, pk-up/van in traf +C2891747|T037|AB|V03.10XA|ICD10CM|Ped on foot injured pick-up truck, pk-up/van in traf, init|Ped on foot injured pick-up truck, pk-up/van in traf, init +C2891748|T037|AB|V03.10XD|ICD10CM|Ped on foot injured pick-up truck, pk-up/van in traf, subs|Ped on foot injured pick-up truck, pk-up/van in traf, subs +C2891749|T037|AB|V03.10XS|ICD10CM|Ped on foot inj pick-up truck, pk-up/van in traf, sequela|Ped on foot inj pick-up truck, pk-up/van in traf, sequela +C2891749|T037|PT|V03.10XS|ICD10CM|Pedestrian on foot injured in collision with car, pick-up truck or van in traffic accident, sequela|Pedestrian on foot injured in collision with car, pick-up truck or van in traffic accident, sequela +C2891750|T037|AB|V03.11|ICD10CM|Ped on rolr-skt injured pick-up truck, pk-up/van in traf|Ped on rolr-skt injured pick-up truck, pk-up/van in traf +C2891750|T037|HT|V03.11|ICD10CM|Pedestrian on roller-skates injured in collision with car, pick-up truck or van in traffic accident|Pedestrian on roller-skates injured in collision with car, pick-up truck or van in traffic accident +C2891751|T037|AB|V03.11XA|ICD10CM|Ped on rolr-skt inj pick-up truck, pk-up/van in traf, init|Ped on rolr-skt inj pick-up truck, pk-up/van in traf, init +C2891752|T037|AB|V03.11XD|ICD10CM|Ped on rolr-skt inj pick-up truck, pk-up/van in traf, subs|Ped on rolr-skt inj pick-up truck, pk-up/van in traf, subs +C2891753|T037|AB|V03.11XS|ICD10CM|Ped on rolr-skt inj pk-up truck, pk-up/van in traf, sequela|Ped on rolr-skt inj pk-up truck, pk-up/van in traf, sequela +C2891754|T037|AB|V03.12|ICD10CM|Ped on skateboard injured pick-up truck, pk-up/van in traf|Ped on skateboard injured pick-up truck, pk-up/van in traf +C2891754|T037|HT|V03.12|ICD10CM|Pedestrian on skateboard injured in collision with car, pick-up truck or van in traffic accident|Pedestrian on skateboard injured in collision with car, pick-up truck or van in traffic accident +C2891755|T037|AB|V03.12XA|ICD10CM|Ped on sktbrd injured pick-up truck, pk-up/van in traf, init|Ped on sktbrd injured pick-up truck, pk-up/van in traf, init +C2891756|T037|AB|V03.12XD|ICD10CM|Ped on sktbrd injured pick-up truck, pk-up/van in traf, subs|Ped on sktbrd injured pick-up truck, pk-up/van in traf, subs +C2891757|T037|AB|V03.12XS|ICD10CM|Ped on sktbrd inj pick-up truck, pk-up/van in traf, sequela|Ped on sktbrd inj pick-up truck, pk-up/van in traf, sequela +C2891759|T037|ET|V03.19|ICD10CM|Pedestrian on ice-skates injured in collision with car, pick-up truck or van in traffic accident|Pedestrian on ice-skates injured in collision with car, pick-up truck or van in traffic accident +C2891760|T037|ET|V03.19|ICD10CM|Pedestrian on sled injured in collision with car, pick-up truck or van in traffic accident|Pedestrian on sled injured in collision with car, pick-up truck or van in traffic accident +C2891761|T037|ET|V03.19|ICD10CM|Pedestrian on snow-skis injured in collision with car, pick-up truck or van in traffic accident|Pedestrian on snow-skis injured in collision with car, pick-up truck or van in traffic accident +C2891762|T037|ET|V03.19|ICD10CM|Pedestrian on snowboard injured in collision with car, pick-up truck or van in traffic accident|Pedestrian on snowboard injured in collision with car, pick-up truck or van in traffic accident +C2891764|T037|AB|V03.19|ICD10CM|Pedestrian w convey injured pick-up truck, pk-up/van in traf|Pedestrian w convey injured pick-up truck, pk-up/van in traf +C2891765|T037|AB|V03.19XA|ICD10CM|Ped w convey injured pick-up truck, pk-up/van in traf, init|Ped w convey injured pick-up truck, pk-up/van in traf, init +C2891766|T037|AB|V03.19XD|ICD10CM|Ped w convey injured pick-up truck, pk-up/van in traf, subs|Ped w convey injured pick-up truck, pk-up/van in traf, subs +C2891767|T037|AB|V03.19XS|ICD10CM|Ped w convey inj pick-up truck, pk-up/van in traf, sequela|Ped w convey inj pick-up truck, pk-up/van in traf, sequela +C3495381|T037|AB|V03.9|ICD10CM|Pedestrian injured pick-up truck, pick-up truck or van, unsp|Pedestrian injured pick-up truck, pick-up truck or van, unsp +C2891768|T037|AB|V03.90|ICD10CM|Pedestrian on foot injured pick-up truck, pk-up/van, unsp|Pedestrian on foot injured pick-up truck, pk-up/van, unsp +C2891769|T037|AB|V03.90XA|ICD10CM|Ped on foot injured pick-up truck, pk-up/van, unsp, init|Ped on foot injured pick-up truck, pk-up/van, unsp, init +C2891770|T037|AB|V03.90XD|ICD10CM|Ped on foot injured pick-up truck, pk-up/van, unsp, subs|Ped on foot injured pick-up truck, pk-up/van, unsp, subs +C2891771|T037|AB|V03.90XS|ICD10CM|Ped on foot injured pick-up truck, pk-up/van, unsp, sequela|Ped on foot injured pick-up truck, pk-up/van, unsp, sequela +C2891772|T037|AB|V03.91|ICD10CM|Ped on rolr-skt injured pick-up truck, pk-up/van, unsp|Ped on rolr-skt injured pick-up truck, pk-up/van, unsp +C2891773|T037|AB|V03.91XA|ICD10CM|Ped on rolr-skt injured pick-up truck, pk-up/van, unsp, init|Ped on rolr-skt injured pick-up truck, pk-up/van, unsp, init +C2891774|T037|AB|V03.91XD|ICD10CM|Ped on rolr-skt injured pick-up truck, pk-up/van, unsp, subs|Ped on rolr-skt injured pick-up truck, pk-up/van, unsp, subs +C2891775|T037|AB|V03.91XS|ICD10CM|Ped on rolr-skt inj pick-up truck, pk-up/van, unsp, sequela|Ped on rolr-skt inj pick-up truck, pk-up/van, unsp, sequela +C2891776|T037|AB|V03.92|ICD10CM|Ped on skateboard injured pick-up truck, pk-up/van, unsp|Ped on skateboard injured pick-up truck, pk-up/van, unsp +C2891777|T037|AB|V03.92XA|ICD10CM|Ped on sktbrd injured pick-up truck, pk-up/van, unsp, init|Ped on sktbrd injured pick-up truck, pk-up/van, unsp, init +C2891778|T037|AB|V03.92XD|ICD10CM|Ped on sktbrd injured pick-up truck, pk-up/van, unsp, subs|Ped on sktbrd injured pick-up truck, pk-up/van, unsp, subs +C2891779|T037|AB|V03.92XS|ICD10CM|Ped on sktbrd inj pick-up truck, pk-up/van, unsp, sequela|Ped on sktbrd inj pick-up truck, pk-up/van, unsp, sequela +C2891782|T037|ET|V03.99|ICD10CM|Pedestrian on sled injured in collision with car, pick-up truck or van in nontraffic accident|Pedestrian on sled injured in collision with car, pick-up truck or van in nontraffic accident +C2891786|T037|AB|V03.99|ICD10CM|Pedestrian w convey injured pick-up truck, pk-up/van, unsp|Pedestrian w convey injured pick-up truck, pk-up/van, unsp +C2891787|T037|AB|V03.99XA|ICD10CM|Ped w convey injured pick-up truck, pk-up/van, unsp, init|Ped w convey injured pick-up truck, pk-up/van, unsp, init +C2891788|T037|AB|V03.99XD|ICD10CM|Ped w convey injured pick-up truck, pk-up/van, unsp, subs|Ped w convey injured pick-up truck, pk-up/van, unsp, subs +C2891789|T037|AB|V03.99XS|ICD10CM|Ped w convey injured pick-up truck, pk-up/van, unsp, sequela|Ped w convey injured pick-up truck, pk-up/van, unsp, sequela +C0476733|T037|AB|V04|ICD10CM|Pedestrian injured in collision w hv veh|Pedestrian injured in collision w hv veh +C0476733|T037|HT|V04|ICD10CM|Pedestrian injured in collision with heavy transport vehicle or bus|Pedestrian injured in collision with heavy transport vehicle or bus +C0476733|T037|HT|V04|ICD10|Pedestrian injured in collision with heavy transport vehicle or bus|Pedestrian injured in collision with heavy transport vehicle or bus +C0476734|T037|AB|V04.0|ICD10CM|Pedestrian injured in collision w hv veh nontraf|Pedestrian injured in collision w hv veh nontraf +C0476734|T037|HT|V04.0|ICD10CM|Pedestrian injured in collision with heavy transport vehicle or bus in nontraffic accident|Pedestrian injured in collision with heavy transport vehicle or bus in nontraffic accident +C0476734|T037|PT|V04.0|ICD10|Pedestrian injured in collision with heavy transport vehicle or bus, nontraffic accident|Pedestrian injured in collision with heavy transport vehicle or bus, nontraffic accident +C0476734|T037|ET|V04.00|ICD10CM|Pedestrian NOS injured in collision with heavy transport vehicle or bus in nontraffic accident|Pedestrian NOS injured in collision with heavy transport vehicle or bus in nontraffic accident +C2891790|T037|AB|V04.00|ICD10CM|Pedestrian on foot injured in collision w hv veh nontraf|Pedestrian on foot injured in collision w hv veh nontraf +C2891790|T037|HT|V04.00|ICD10CM|Pedestrian on foot injured in collision with heavy transport vehicle or bus in nontraffic accident|Pedestrian on foot injured in collision with heavy transport vehicle or bus in nontraffic accident +C2891791|T037|AB|V04.00XA|ICD10CM|Ped on foot injured in collision w hv veh nontraf, init|Ped on foot injured in collision w hv veh nontraf, init +C2891792|T037|AB|V04.00XD|ICD10CM|Ped on foot injured in collision w hv veh nontraf, subs|Ped on foot injured in collision w hv veh nontraf, subs +C2891793|T037|AB|V04.00XS|ICD10CM|Ped on foot injured in collision w hv veh nontraf, sequela|Ped on foot injured in collision w hv veh nontraf, sequela +C2891794|T037|AB|V04.01|ICD10CM|Pedestrian on rolr-skt injured in collision w hv veh nontraf|Pedestrian on rolr-skt injured in collision w hv veh nontraf +C2891795|T037|AB|V04.01XA|ICD10CM|Ped on rolr-skt injured in collision w hv veh nontraf, init|Ped on rolr-skt injured in collision w hv veh nontraf, init +C2891796|T037|AB|V04.01XD|ICD10CM|Ped on rolr-skt injured in collision w hv veh nontraf, subs|Ped on rolr-skt injured in collision w hv veh nontraf, subs +C2891797|T037|AB|V04.01XS|ICD10CM|Ped on rolr-skt injured in clsn w hv veh nontraf, sequela|Ped on rolr-skt injured in clsn w hv veh nontraf, sequela +C2891798|T037|AB|V04.02|ICD10CM|Ped on skateboard injured in collision w hv veh nontraf|Ped on skateboard injured in collision w hv veh nontraf +C2891799|T037|AB|V04.02XA|ICD10CM|Ped on sktbrd injured in collision w hv veh nontraf, init|Ped on sktbrd injured in collision w hv veh nontraf, init +C2891800|T037|AB|V04.02XD|ICD10CM|Ped on sktbrd injured in collision w hv veh nontraf, subs|Ped on sktbrd injured in collision w hv veh nontraf, subs +C2891801|T037|AB|V04.02XS|ICD10CM|Ped on sktbrd injured in collision w hv veh nontraf, sequela|Ped on sktbrd injured in collision w hv veh nontraf, sequela +C2891804|T037|ET|V04.09|ICD10CM|Pedestrian on sled injured in collision with heavy transport vehicle or bus in nontraffic accident|Pedestrian on sled injured in collision with heavy transport vehicle or bus in nontraffic accident +C2891808|T037|AB|V04.09|ICD10CM|Pedestrian w convey injured in collision w hv veh nontraf|Pedestrian w convey injured in collision w hv veh nontraf +C2891809|T037|AB|V04.09XA|ICD10CM|Ped w convey injured in collision w hv veh nontraf, init|Ped w convey injured in collision w hv veh nontraf, init +C2891810|T037|AB|V04.09XD|ICD10CM|Ped w convey injured in collision w hv veh nontraf, subs|Ped w convey injured in collision w hv veh nontraf, subs +C2891811|T037|AB|V04.09XS|ICD10CM|Ped w convey injured in collision w hv veh nontraf, sequela|Ped w convey injured in collision w hv veh nontraf, sequela +C0476735|T037|AB|V04.1|ICD10CM|Pedestrian injured in collision w hv veh in traffic accident|Pedestrian injured in collision w hv veh in traffic accident +C0476735|T037|HT|V04.1|ICD10CM|Pedestrian injured in collision with heavy transport vehicle or bus in traffic accident|Pedestrian injured in collision with heavy transport vehicle or bus in traffic accident +C0476735|T037|PT|V04.1|ICD10|Pedestrian injured in collision with heavy transport vehicle or bus, traffic accident|Pedestrian injured in collision with heavy transport vehicle or bus, traffic accident +C0476735|T037|ET|V04.10|ICD10CM|Pedestrian NOS injured in collision with heavy transport vehicle or bus in traffic accident|Pedestrian NOS injured in collision with heavy transport vehicle or bus in traffic accident +C2891812|T037|AB|V04.10|ICD10CM|Pedestrian on foot injured in collision w hv veh in traf|Pedestrian on foot injured in collision w hv veh in traf +C2891812|T037|HT|V04.10|ICD10CM|Pedestrian on foot injured in collision with heavy transport vehicle or bus in traffic accident|Pedestrian on foot injured in collision with heavy transport vehicle or bus in traffic accident +C2891813|T037|AB|V04.10XA|ICD10CM|Ped on foot injured in collision w hv veh in traf, init|Ped on foot injured in collision w hv veh in traf, init +C2891814|T037|AB|V04.10XD|ICD10CM|Ped on foot injured in collision w hv veh in traf, subs|Ped on foot injured in collision w hv veh in traf, subs +C2891815|T037|AB|V04.10XS|ICD10CM|Ped on foot injured in collision w hv veh in traf, sequela|Ped on foot injured in collision w hv veh in traf, sequela +C2891816|T037|AB|V04.11|ICD10CM|Pedestrian on rolr-skt injured in collision w hv veh in traf|Pedestrian on rolr-skt injured in collision w hv veh in traf +C2891817|T037|AB|V04.11XA|ICD10CM|Ped on rolr-skt injured in collision w hv veh in traf, init|Ped on rolr-skt injured in collision w hv veh in traf, init +C2891818|T037|AB|V04.11XD|ICD10CM|Ped on rolr-skt injured in collision w hv veh in traf, subs|Ped on rolr-skt injured in collision w hv veh in traf, subs +C2891819|T037|AB|V04.11XS|ICD10CM|Ped on rolr-skt injured in clsn w hv veh in traf, sequela|Ped on rolr-skt injured in clsn w hv veh in traf, sequela +C2891820|T037|AB|V04.12|ICD10CM|Ped on skateboard injured in collision w hv veh in traf|Ped on skateboard injured in collision w hv veh in traf +C2891821|T037|AB|V04.12XA|ICD10CM|Ped on sktbrd injured in collision w hv veh in traf, init|Ped on sktbrd injured in collision w hv veh in traf, init +C2891822|T037|AB|V04.12XD|ICD10CM|Ped on sktbrd injured in collision w hv veh in traf, subs|Ped on sktbrd injured in collision w hv veh in traf, subs +C2891823|T037|AB|V04.12XS|ICD10CM|Ped on sktbrd injured in collision w hv veh in traf, sequela|Ped on sktbrd injured in collision w hv veh in traf, sequela +C2891826|T037|ET|V04.19|ICD10CM|Pedestrian on sled injured in collision with heavy transport vehicle or bus in traffic accident|Pedestrian on sled injured in collision with heavy transport vehicle or bus in traffic accident +C2891827|T037|ET|V04.19|ICD10CM|Pedestrian on snow-skis injured in collision with heavy transport vehicle or bus in traffic accident|Pedestrian on snow-skis injured in collision with heavy transport vehicle or bus in traffic accident +C2891828|T037|ET|V04.19|ICD10CM|Pedestrian on snowboard injured in collision with heavy transport vehicle or bus in traffic accident|Pedestrian on snowboard injured in collision with heavy transport vehicle or bus in traffic accident +C2891830|T037|AB|V04.19|ICD10CM|Pedestrian w convey injured in collision w hv veh in traf|Pedestrian w convey injured in collision w hv veh in traf +C2891831|T037|AB|V04.19XA|ICD10CM|Ped w convey injured in collision w hv veh in traf, init|Ped w convey injured in collision w hv veh in traf, init +C2891832|T037|AB|V04.19XD|ICD10CM|Ped w convey injured in collision w hv veh in traf, subs|Ped w convey injured in collision w hv veh in traf, subs +C2891833|T037|AB|V04.19XS|ICD10CM|Ped w convey injured in collision w hv veh in traf, sequela|Ped w convey injured in collision w hv veh in traf, sequela +C3495382|T037|AB|V04.9|ICD10CM|Pedestrian injured in collision w hv veh, unsp|Pedestrian injured in collision w hv veh, unsp +C2891834|T037|AB|V04.90|ICD10CM|Pedestrian on foot injured in collision w hv veh, unsp|Pedestrian on foot injured in collision w hv veh, unsp +C2891835|T037|AB|V04.90XA|ICD10CM|Pedestrian on foot injured in collision w hv veh, unsp, init|Pedestrian on foot injured in collision w hv veh, unsp, init +C2891836|T037|AB|V04.90XD|ICD10CM|Pedestrian on foot injured in collision w hv veh, unsp, subs|Pedestrian on foot injured in collision w hv veh, unsp, subs +C2891837|T037|AB|V04.90XS|ICD10CM|Ped on foot injured in collision w hv veh, unsp, sequela|Ped on foot injured in collision w hv veh, unsp, sequela +C2891838|T037|AB|V04.91|ICD10CM|Pedestrian on rolr-skt injured in collision w hv veh, unsp|Pedestrian on rolr-skt injured in collision w hv veh, unsp +C2891839|T037|AB|V04.91XA|ICD10CM|Ped on rolr-skt injured in collision w hv veh, unsp, init|Ped on rolr-skt injured in collision w hv veh, unsp, init +C2891840|T037|AB|V04.91XD|ICD10CM|Ped on rolr-skt injured in collision w hv veh, unsp, subs|Ped on rolr-skt injured in collision w hv veh, unsp, subs +C2891841|T037|AB|V04.91XS|ICD10CM|Ped on rolr-skt injured in collision w hv veh, unsp, sequela|Ped on rolr-skt injured in collision w hv veh, unsp, sequela +C2891842|T037|AB|V04.92|ICD10CM|Pedestrian on skateboard injured in collision w hv veh, unsp|Pedestrian on skateboard injured in collision w hv veh, unsp +C2891843|T037|AB|V04.92XA|ICD10CM|Ped on skateboard injured in collision w hv veh, unsp, init|Ped on skateboard injured in collision w hv veh, unsp, init +C2891844|T037|AB|V04.92XD|ICD10CM|Ped on skateboard injured in collision w hv veh, unsp, subs|Ped on skateboard injured in collision w hv veh, unsp, subs +C2891845|T037|AB|V04.92XS|ICD10CM|Ped on sktbrd injured in collision w hv veh, unsp, sequela|Ped on sktbrd injured in collision w hv veh, unsp, sequela +C2891852|T037|AB|V04.99|ICD10CM|Pedestrian w convey injured in collision w hv veh, unsp|Pedestrian w convey injured in collision w hv veh, unsp +C2891853|T037|AB|V04.99XA|ICD10CM|Ped w convey injured in collision w hv veh, unsp, init|Ped w convey injured in collision w hv veh, unsp, init +C2891854|T037|AB|V04.99XD|ICD10CM|Ped w convey injured in collision w hv veh, unsp, subs|Ped w convey injured in collision w hv veh, unsp, subs +C2891855|T037|AB|V04.99XS|ICD10CM|Ped w convey injured in collision w hv veh, unsp, sequela|Ped w convey injured in collision w hv veh, unsp, sequela +C0476736|T037|AB|V05|ICD10CM|Pedestrian injured in collision w rail trn/veh|Pedestrian injured in collision w rail trn/veh +C0476736|T037|HT|V05|ICD10CM|Pedestrian injured in collision with railway train or railway vehicle|Pedestrian injured in collision with railway train or railway vehicle +C0476736|T037|HT|V05|ICD10|Pedestrian injured in collision with railway train or railway vehicle|Pedestrian injured in collision with railway train or railway vehicle +C0476737|T037|AB|V05.0|ICD10CM|Pedestrian injured in collision w rail trn/veh nontraf|Pedestrian injured in collision w rail trn/veh nontraf +C0476737|T037|HT|V05.0|ICD10CM|Pedestrian injured in collision with railway train or railway vehicle in nontraffic accident|Pedestrian injured in collision with railway train or railway vehicle in nontraffic accident +C0476737|T037|PT|V05.0|ICD10|Pedestrian injured in collision with railway train or railway vehicle, nontraffic accident|Pedestrian injured in collision with railway train or railway vehicle, nontraffic accident +C2891856|T037|AB|V05.00|ICD10CM|Ped on foot injured in collision w rail trn/veh nontraf|Ped on foot injured in collision w rail trn/veh nontraf +C0476737|T037|ET|V05.00|ICD10CM|Pedestrian NOS injured in collision with railway train or railway vehicle in nontraffic accident|Pedestrian NOS injured in collision with railway train or railway vehicle in nontraffic accident +C2891856|T037|HT|V05.00|ICD10CM|Pedestrian on foot injured in collision with railway train or railway vehicle in nontraffic accident|Pedestrian on foot injured in collision with railway train or railway vehicle in nontraffic accident +C2891857|T037|AB|V05.00XA|ICD10CM|Ped on foot injured in clsn w rail trn/veh nontraf, init|Ped on foot injured in clsn w rail trn/veh nontraf, init +C2891858|T037|AB|V05.00XD|ICD10CM|Ped on foot injured in clsn w rail trn/veh nontraf, subs|Ped on foot injured in clsn w rail trn/veh nontraf, subs +C2891859|T037|AB|V05.00XS|ICD10CM|Ped on foot injured in clsn w rail trn/veh nontraf, sequela|Ped on foot injured in clsn w rail trn/veh nontraf, sequela +C2891860|T037|AB|V05.01|ICD10CM|Ped on rolr-skt injured in collision w rail trn/veh nontraf|Ped on rolr-skt injured in collision w rail trn/veh nontraf +C2891861|T037|AB|V05.01XA|ICD10CM|Ped on rolr-skt injured in clsn w rail trn/veh nontraf, init|Ped on rolr-skt injured in clsn w rail trn/veh nontraf, init +C2891862|T037|AB|V05.01XD|ICD10CM|Ped on rolr-skt injured in clsn w rail trn/veh nontraf, subs|Ped on rolr-skt injured in clsn w rail trn/veh nontraf, subs +C2891863|T037|AB|V05.01XS|ICD10CM|Ped on rolr-skt inj in clsn w rail trn/veh nontraf, sequela|Ped on rolr-skt inj in clsn w rail trn/veh nontraf, sequela +C2891864|T037|AB|V05.02|ICD10CM|Ped on sktbrd injured in collision w rail trn/veh nontraf|Ped on sktbrd injured in collision w rail trn/veh nontraf +C2891865|T037|AB|V05.02XA|ICD10CM|Ped on sktbrd injured in clsn w rail trn/veh nontraf, init|Ped on sktbrd injured in clsn w rail trn/veh nontraf, init +C2891866|T037|AB|V05.02XD|ICD10CM|Ped on sktbrd injured in clsn w rail trn/veh nontraf, subs|Ped on sktbrd injured in clsn w rail trn/veh nontraf, subs +C2891867|T037|AB|V05.02XS|ICD10CM|Ped on sktbrd inj in clsn w rail trn/veh nontraf, sequela|Ped on sktbrd inj in clsn w rail trn/veh nontraf, sequela +C2891874|T037|AB|V05.09|ICD10CM|Ped w convey injured in collision w rail trn/veh nontraf|Ped w convey injured in collision w rail trn/veh nontraf +C2891870|T037|ET|V05.09|ICD10CM|Pedestrian on sled injured in collision with railway train or railway vehicle in nontraffic accident|Pedestrian on sled injured in collision with railway train or railway vehicle in nontraffic accident +C2891875|T037|AB|V05.09XA|ICD10CM|Ped w convey injured in clsn w rail trn/veh nontraf, init|Ped w convey injured in clsn w rail trn/veh nontraf, init +C2891876|T037|AB|V05.09XD|ICD10CM|Ped w convey injured in clsn w rail trn/veh nontraf, subs|Ped w convey injured in clsn w rail trn/veh nontraf, subs +C2891877|T037|AB|V05.09XS|ICD10CM|Ped w convey injured in clsn w rail trn/veh nontraf, sequela|Ped w convey injured in clsn w rail trn/veh nontraf, sequela +C0476738|T037|AB|V05.1|ICD10CM|Pedestrian injured in collision w rail trn/veh in traf|Pedestrian injured in collision w rail trn/veh in traf +C0476738|T037|HT|V05.1|ICD10CM|Pedestrian injured in collision with railway train or railway vehicle in traffic accident|Pedestrian injured in collision with railway train or railway vehicle in traffic accident +C0476738|T037|PT|V05.1|ICD10|Pedestrian injured in collision with railway train or railway vehicle, traffic accident|Pedestrian injured in collision with railway train or railway vehicle, traffic accident +C2891878|T037|AB|V05.10|ICD10CM|Ped on foot injured in collision w rail trn/veh in traf|Ped on foot injured in collision w rail trn/veh in traf +C0476738|T037|ET|V05.10|ICD10CM|Pedestrian NOS injured in collision with railway train or railway vehicle in traffic accident|Pedestrian NOS injured in collision with railway train or railway vehicle in traffic accident +C2891878|T037|HT|V05.10|ICD10CM|Pedestrian on foot injured in collision with railway train or railway vehicle in traffic accident|Pedestrian on foot injured in collision with railway train or railway vehicle in traffic accident +C2891879|T037|AB|V05.10XA|ICD10CM|Ped on foot injured in clsn w rail trn/veh in traf, init|Ped on foot injured in clsn w rail trn/veh in traf, init +C2891880|T037|AB|V05.10XD|ICD10CM|Ped on foot injured in clsn w rail trn/veh in traf, subs|Ped on foot injured in clsn w rail trn/veh in traf, subs +C2891881|T037|AB|V05.10XS|ICD10CM|Ped on foot injured in clsn w rail trn/veh in traf, sequela|Ped on foot injured in clsn w rail trn/veh in traf, sequela +C2891882|T037|AB|V05.11|ICD10CM|Ped on rolr-skt injured in collision w rail trn/veh in traf|Ped on rolr-skt injured in collision w rail trn/veh in traf +C2891883|T037|AB|V05.11XA|ICD10CM|Ped on rolr-skt injured in clsn w rail trn/veh in traf, init|Ped on rolr-skt injured in clsn w rail trn/veh in traf, init +C2891884|T037|AB|V05.11XD|ICD10CM|Ped on rolr-skt injured in clsn w rail trn/veh in traf, subs|Ped on rolr-skt injured in clsn w rail trn/veh in traf, subs +C2891885|T037|AB|V05.11XS|ICD10CM|Ped on rolr-skt inj in clsn w rail trn/veh in traf, sequela|Ped on rolr-skt inj in clsn w rail trn/veh in traf, sequela +C2891886|T037|AB|V05.12|ICD10CM|Ped on sktbrd injured in collision w rail trn/veh in traf|Ped on sktbrd injured in collision w rail trn/veh in traf +C2891887|T037|AB|V05.12XA|ICD10CM|Ped on sktbrd injured in clsn w rail trn/veh in traf, init|Ped on sktbrd injured in clsn w rail trn/veh in traf, init +C2891888|T037|AB|V05.12XD|ICD10CM|Ped on sktbrd injured in clsn w rail trn/veh in traf, subs|Ped on sktbrd injured in clsn w rail trn/veh in traf, subs +C2891889|T037|AB|V05.12XS|ICD10CM|Ped on sktbrd inj in clsn w rail trn/veh in traf, sequela|Ped on sktbrd inj in clsn w rail trn/veh in traf, sequela +C2891896|T037|AB|V05.19|ICD10CM|Ped w convey injured in collision w rail trn/veh in traf|Ped w convey injured in collision w rail trn/veh in traf +C2891892|T037|ET|V05.19|ICD10CM|Pedestrian on sled injured in collision with railway train or railway vehicle in traffic accident|Pedestrian on sled injured in collision with railway train or railway vehicle in traffic accident +C2891897|T037|AB|V05.19XA|ICD10CM|Ped w convey injured in clsn w rail trn/veh in traf, init|Ped w convey injured in clsn w rail trn/veh in traf, init +C2891898|T037|AB|V05.19XD|ICD10CM|Ped w convey injured in clsn w rail trn/veh in traf, subs|Ped w convey injured in clsn w rail trn/veh in traf, subs +C2891899|T037|AB|V05.19XS|ICD10CM|Ped w convey injured in clsn w rail trn/veh in traf, sequela|Ped w convey injured in clsn w rail trn/veh in traf, sequela +C0476736|T037|AB|V05.9|ICD10CM|Pedestrian injured in collision w rail trn/veh, unsp|Pedestrian injured in collision w rail trn/veh, unsp +C2891900|T037|AB|V05.90|ICD10CM|Pedestrian on foot injured in collision w rail trn/veh, unsp|Pedestrian on foot injured in collision w rail trn/veh, unsp +C2891901|T037|AB|V05.90XA|ICD10CM|Ped on foot injured in collision w rail trn/veh, unsp, init|Ped on foot injured in collision w rail trn/veh, unsp, init +C2891902|T037|AB|V05.90XD|ICD10CM|Ped on foot injured in collision w rail trn/veh, unsp, subs|Ped on foot injured in collision w rail trn/veh, unsp, subs +C2891903|T037|AB|V05.90XS|ICD10CM|Ped on foot injured in clsn w rail trn/veh, unsp, sequela|Ped on foot injured in clsn w rail trn/veh, unsp, sequela +C2891904|T037|AB|V05.91|ICD10CM|Ped on rolr-skt injured in collision w rail trn/veh, unsp|Ped on rolr-skt injured in collision w rail trn/veh, unsp +C2891905|T037|AB|V05.91XA|ICD10CM|Ped on rolr-skt injured in clsn w rail trn/veh, unsp, init|Ped on rolr-skt injured in clsn w rail trn/veh, unsp, init +C2891906|T037|AB|V05.91XD|ICD10CM|Ped on rolr-skt injured in clsn w rail trn/veh, unsp, subs|Ped on rolr-skt injured in clsn w rail trn/veh, unsp, subs +C2891907|T037|AB|V05.91XS|ICD10CM|Ped on rolr-skt inj in clsn w rail trn/veh, unsp, sequela|Ped on rolr-skt inj in clsn w rail trn/veh, unsp, sequela +C2891908|T037|AB|V05.92|ICD10CM|Ped on skateboard injured in collision w rail trn/veh, unsp|Ped on skateboard injured in collision w rail trn/veh, unsp +C2891909|T037|AB|V05.92XA|ICD10CM|Ped on sktbrd injured in clsn w rail trn/veh, unsp, init|Ped on sktbrd injured in clsn w rail trn/veh, unsp, init +C2891910|T037|AB|V05.92XD|ICD10CM|Ped on sktbrd injured in clsn w rail trn/veh, unsp, subs|Ped on sktbrd injured in clsn w rail trn/veh, unsp, subs +C2891911|T037|AB|V05.92XS|ICD10CM|Ped on sktbrd injured in clsn w rail trn/veh, unsp, sequela|Ped on sktbrd injured in clsn w rail trn/veh, unsp, sequela +C2891918|T037|AB|V05.99|ICD10CM|Ped w convey injured in collision w rail trn/veh, unsp|Ped w convey injured in collision w rail trn/veh, unsp +C2891919|T037|AB|V05.99XA|ICD10CM|Ped w convey injured in collision w rail trn/veh, unsp, init|Ped w convey injured in collision w rail trn/veh, unsp, init +C2891920|T037|AB|V05.99XD|ICD10CM|Ped w convey injured in collision w rail trn/veh, unsp, subs|Ped w convey injured in collision w rail trn/veh, unsp, subs +C2891921|T037|AB|V05.99XS|ICD10CM|Ped w convey injured in clsn w rail trn/veh, unsp, sequela|Ped w convey injured in clsn w rail trn/veh, unsp, sequela +C4290414|T037|ET|V06|ICD10CM|collision with animal-drawn vehicle, animal being ridden, nonpowered streetcar|collision with animal-drawn vehicle, animal being ridden, nonpowered streetcar +C0476739|T037|AB|V06|ICD10CM|Pedestrian injured in collision with other nonmotor vehicle|Pedestrian injured in collision with other nonmotor vehicle +C0476739|T037|HT|V06|ICD10CM|Pedestrian injured in collision with other nonmotor vehicle|Pedestrian injured in collision with other nonmotor vehicle +C0476739|T037|HT|V06|ICD10|Pedestrian injured in collision with other nonmotor vehicle|Pedestrian injured in collision with other nonmotor vehicle +C0476740|T037|AB|V06.0|ICD10CM|Pedestrian injured in collision w nonmtr vehicle nontraf|Pedestrian injured in collision w nonmtr vehicle nontraf +C0476740|T037|HT|V06.0|ICD10CM|Pedestrian injured in collision with other nonmotor vehicle in nontraffic accident|Pedestrian injured in collision with other nonmotor vehicle in nontraffic accident +C0476740|T037|PT|V06.0|ICD10|Pedestrian injured in collision with other nonmotor vehicle, nontraffic accident|Pedestrian injured in collision with other nonmotor vehicle, nontraffic accident +C2891923|T037|AB|V06.00|ICD10CM|Ped on foot injured in collision w nonmtr vehicle nontraf|Ped on foot injured in collision w nonmtr vehicle nontraf +C0476740|T037|ET|V06.00|ICD10CM|Pedestrian NOS injured in collision with other nonmotor vehicle in nontraffic accident|Pedestrian NOS injured in collision with other nonmotor vehicle in nontraffic accident +C2891923|T037|HT|V06.00|ICD10CM|Pedestrian on foot injured in collision with other nonmotor vehicle in nontraffic accident|Pedestrian on foot injured in collision with other nonmotor vehicle in nontraffic accident +C2891924|T037|AB|V06.00XA|ICD10CM|Ped on foot injured in clsn w nonmtr vehicle nontraf, init|Ped on foot injured in clsn w nonmtr vehicle nontraf, init +C2891925|T037|AB|V06.00XD|ICD10CM|Ped on foot injured in clsn w nonmtr vehicle nontraf, subs|Ped on foot injured in clsn w nonmtr vehicle nontraf, subs +C2891926|T037|AB|V06.00XS|ICD10CM|Ped on foot inj in clsn w nonmtr vehicle nontraf, sequela|Ped on foot inj in clsn w nonmtr vehicle nontraf, sequela +C2891926|T037|PT|V06.00XS|ICD10CM|Pedestrian on foot injured in collision with other nonmotor vehicle in nontraffic accident, sequela|Pedestrian on foot injured in collision with other nonmotor vehicle in nontraffic accident, sequela +C2891927|T037|AB|V06.01|ICD10CM|Ped on rolr-skt injured in clsn w nonmtr vehicle nontraf|Ped on rolr-skt injured in clsn w nonmtr vehicle nontraf +C2891927|T037|HT|V06.01|ICD10CM|Pedestrian on roller-skates injured in collision with other nonmotor vehicle in nontraffic accident|Pedestrian on roller-skates injured in collision with other nonmotor vehicle in nontraffic accident +C2891928|T037|AB|V06.01XA|ICD10CM|Ped on rolr-skt inj in clsn w nonmtr vehicle nontraf, init|Ped on rolr-skt inj in clsn w nonmtr vehicle nontraf, init +C2891929|T037|AB|V06.01XD|ICD10CM|Ped on rolr-skt inj in clsn w nonmtr vehicle nontraf, subs|Ped on rolr-skt inj in clsn w nonmtr vehicle nontraf, subs +C2891930|T037|AB|V06.01XS|ICD10CM|Ped on rolr-skt inj in clsn w nonmtr vehicle nontraf, sqla|Ped on rolr-skt inj in clsn w nonmtr vehicle nontraf, sqla +C2891931|T037|AB|V06.02|ICD10CM|Ped on sktbrd injured in collision w nonmtr vehicle nontraf|Ped on sktbrd injured in collision w nonmtr vehicle nontraf +C2891931|T037|HT|V06.02|ICD10CM|Pedestrian on skateboard injured in collision with other nonmotor vehicle in nontraffic accident|Pedestrian on skateboard injured in collision with other nonmotor vehicle in nontraffic accident +C2891932|T037|AB|V06.02XA|ICD10CM|Ped on sktbrd injured in clsn w nonmtr vehicle nontraf, init|Ped on sktbrd injured in clsn w nonmtr vehicle nontraf, init +C2891933|T037|AB|V06.02XD|ICD10CM|Ped on sktbrd injured in clsn w nonmtr vehicle nontraf, subs|Ped on sktbrd injured in clsn w nonmtr vehicle nontraf, subs +C2891934|T037|AB|V06.02XS|ICD10CM|Ped on sktbrd inj in clsn w nonmtr vehicle nontraf, sequela|Ped on sktbrd inj in clsn w nonmtr vehicle nontraf, sequela +C2891940|T037|AB|V06.09|ICD10CM|Ped w convey injured in collision w nonmtr vehicle nontraf|Ped w convey injured in collision w nonmtr vehicle nontraf +C2891936|T037|ET|V06.09|ICD10CM|Pedestrian on ice-skates injured in collision with other nonmotor vehicle in nontraffic accident|Pedestrian on ice-skates injured in collision with other nonmotor vehicle in nontraffic accident +C2891937|T037|ET|V06.09|ICD10CM|Pedestrian on sled injured in collision with other nonmotor vehicle in nontraffic accident|Pedestrian on sled injured in collision with other nonmotor vehicle in nontraffic accident +C2891938|T037|ET|V06.09|ICD10CM|Pedestrian on snow-skis injured in collision with other nonmotor vehicle in nontraffic accident|Pedestrian on snow-skis injured in collision with other nonmotor vehicle in nontraffic accident +C2891939|T037|ET|V06.09|ICD10CM|Pedestrian on snowboard injured in collision with other nonmotor vehicle in nontraffic accident|Pedestrian on snowboard injured in collision with other nonmotor vehicle in nontraffic accident +C2891941|T037|AB|V06.09XA|ICD10CM|Ped w convey injured in clsn w nonmtr vehicle nontraf, init|Ped w convey injured in clsn w nonmtr vehicle nontraf, init +C2891942|T037|AB|V06.09XD|ICD10CM|Ped w convey injured in clsn w nonmtr vehicle nontraf, subs|Ped w convey injured in clsn w nonmtr vehicle nontraf, subs +C2891943|T037|AB|V06.09XS|ICD10CM|Ped w convey inj in clsn w nonmtr vehicle nontraf, sequela|Ped w convey inj in clsn w nonmtr vehicle nontraf, sequela +C0476741|T037|AB|V06.1|ICD10CM|Pedestrian injured in collision w nonmtr vehicle in traf|Pedestrian injured in collision w nonmtr vehicle in traf +C0476741|T037|HT|V06.1|ICD10CM|Pedestrian injured in collision with other nonmotor vehicle in traffic accident|Pedestrian injured in collision with other nonmotor vehicle in traffic accident +C0476741|T037|PT|V06.1|ICD10|Pedestrian injured in collision with other nonmotor vehicle, traffic accident|Pedestrian injured in collision with other nonmotor vehicle, traffic accident +C2891944|T037|AB|V06.10|ICD10CM|Ped on foot injured in collision w nonmtr vehicle in traf|Ped on foot injured in collision w nonmtr vehicle in traf +C0476741|T037|ET|V06.10|ICD10CM|Pedestrian NOS injured in collision with other nonmotor vehicle in traffic accident|Pedestrian NOS injured in collision with other nonmotor vehicle in traffic accident +C2891944|T037|HT|V06.10|ICD10CM|Pedestrian on foot injured in collision with other nonmotor vehicle in traffic accident|Pedestrian on foot injured in collision with other nonmotor vehicle in traffic accident +C2891945|T037|AB|V06.10XA|ICD10CM|Ped on foot injured in clsn w nonmtr vehicle in traf, init|Ped on foot injured in clsn w nonmtr vehicle in traf, init +C2891946|T037|AB|V06.10XD|ICD10CM|Ped on foot injured in clsn w nonmtr vehicle in traf, subs|Ped on foot injured in clsn w nonmtr vehicle in traf, subs +C2891947|T037|AB|V06.10XS|ICD10CM|Ped on foot inj in clsn w nonmtr vehicle in traf, sequela|Ped on foot inj in clsn w nonmtr vehicle in traf, sequela +C2891947|T037|PT|V06.10XS|ICD10CM|Pedestrian on foot injured in collision with other nonmotor vehicle in traffic accident, sequela|Pedestrian on foot injured in collision with other nonmotor vehicle in traffic accident, sequela +C2891948|T037|AB|V06.11|ICD10CM|Ped on rolr-skt injured in clsn w nonmtr vehicle in traf|Ped on rolr-skt injured in clsn w nonmtr vehicle in traf +C2891948|T037|HT|V06.11|ICD10CM|Pedestrian on roller-skates injured in collision with other nonmotor vehicle in traffic accident|Pedestrian on roller-skates injured in collision with other nonmotor vehicle in traffic accident +C2891949|T037|AB|V06.11XA|ICD10CM|Ped on rolr-skt inj in clsn w nonmtr vehicle in traf, init|Ped on rolr-skt inj in clsn w nonmtr vehicle in traf, init +C2891950|T037|AB|V06.11XD|ICD10CM|Ped on rolr-skt inj in clsn w nonmtr vehicle in traf, subs|Ped on rolr-skt inj in clsn w nonmtr vehicle in traf, subs +C2891951|T037|AB|V06.11XS|ICD10CM|Ped on rolr-skt inj in clsn w nonmtr vehicle in traf, sqla|Ped on rolr-skt inj in clsn w nonmtr vehicle in traf, sqla +C2891952|T037|AB|V06.12|ICD10CM|Ped on sktbrd injured in collision w nonmtr vehicle in traf|Ped on sktbrd injured in collision w nonmtr vehicle in traf +C2891952|T037|HT|V06.12|ICD10CM|Pedestrian on skateboard injured in collision with other nonmotor vehicle in traffic accident|Pedestrian on skateboard injured in collision with other nonmotor vehicle in traffic accident +C2891953|T037|AB|V06.12XA|ICD10CM|Ped on sktbrd injured in clsn w nonmtr vehicle in traf, init|Ped on sktbrd injured in clsn w nonmtr vehicle in traf, init +C2891954|T037|AB|V06.12XD|ICD10CM|Ped on sktbrd injured in clsn w nonmtr vehicle in traf, subs|Ped on sktbrd injured in clsn w nonmtr vehicle in traf, subs +C2891955|T037|AB|V06.12XS|ICD10CM|Ped on sktbrd inj in clsn w nonmtr vehicle in traf, sequela|Ped on sktbrd inj in clsn w nonmtr vehicle in traf, sequela +C2891962|T037|AB|V06.19|ICD10CM|Ped w convey injured in collision w nonmtr vehicle in traf|Ped w convey injured in collision w nonmtr vehicle in traf +C2891957|T037|ET|V06.19|ICD10CM|Pedestrian on ice-skates injured in collision with other nonmotor vehicle in traffic accident|Pedestrian on ice-skates injured in collision with other nonmotor vehicle in traffic accident +C2891958|T037|ET|V06.19|ICD10CM|Pedestrian on sled injured in collision with other nonmotor vehicle in traffic accident|Pedestrian on sled injured in collision with other nonmotor vehicle in traffic accident +C2891959|T037|ET|V06.19|ICD10CM|Pedestrian on snow-skis injured in collision with other nonmotor vehicle in traffic accident|Pedestrian on snow-skis injured in collision with other nonmotor vehicle in traffic accident +C2891960|T037|ET|V06.19|ICD10CM|Pedestrian on snowboard injured in collision with other nonmotor vehicle in traffic accident|Pedestrian on snowboard injured in collision with other nonmotor vehicle in traffic accident +C2891963|T037|AB|V06.19XA|ICD10CM|Ped w convey injured in clsn w nonmtr vehicle in traf, init|Ped w convey injured in clsn w nonmtr vehicle in traf, init +C2891964|T037|AB|V06.19XD|ICD10CM|Ped w convey injured in clsn w nonmtr vehicle in traf, subs|Ped w convey injured in clsn w nonmtr vehicle in traf, subs +C2891965|T037|AB|V06.19XS|ICD10CM|Ped w convey inj in clsn w nonmtr vehicle in traf, sequela|Ped w convey inj in clsn w nonmtr vehicle in traf, sequela +C0476739|T037|AB|V06.9|ICD10CM|Pedestrian injured in collision w oth nonmotor vehicle, unsp|Pedestrian injured in collision w oth nonmotor vehicle, unsp +C2891966|T037|AB|V06.90|ICD10CM|Ped on foot injured in collision w nonmtr vehicle, unsp|Ped on foot injured in collision w nonmtr vehicle, unsp +C2891967|T037|AB|V06.90XA|ICD10CM|Ped on foot injured in clsn w nonmtr vehicle, unsp, init|Ped on foot injured in clsn w nonmtr vehicle, unsp, init +C2891968|T037|AB|V06.90XD|ICD10CM|Ped on foot injured in clsn w nonmtr vehicle, unsp, subs|Ped on foot injured in clsn w nonmtr vehicle, unsp, subs +C2891969|T037|AB|V06.90XS|ICD10CM|Ped on foot injured in clsn w nonmtr vehicle, unsp, sequela|Ped on foot injured in clsn w nonmtr vehicle, unsp, sequela +C2891970|T037|AB|V06.91|ICD10CM|Ped on rolr-skt injured in collision w nonmtr vehicle, unsp|Ped on rolr-skt injured in collision w nonmtr vehicle, unsp +C2891971|T037|AB|V06.91XA|ICD10CM|Ped on rolr-skt injured in clsn w nonmtr vehicle, unsp, init|Ped on rolr-skt injured in clsn w nonmtr vehicle, unsp, init +C2891972|T037|AB|V06.91XD|ICD10CM|Ped on rolr-skt injured in clsn w nonmtr vehicle, unsp, subs|Ped on rolr-skt injured in clsn w nonmtr vehicle, unsp, subs +C2891973|T037|AB|V06.91XS|ICD10CM|Ped on rolr-skt inj in clsn w nonmtr vehicle, unsp, sequela|Ped on rolr-skt inj in clsn w nonmtr vehicle, unsp, sequela +C2891974|T037|AB|V06.92|ICD10CM|Ped on sktbrd injured in collision w nonmtr vehicle, unsp|Ped on sktbrd injured in collision w nonmtr vehicle, unsp +C2891975|T037|AB|V06.92XA|ICD10CM|Ped on sktbrd injured in clsn w nonmtr vehicle, unsp, init|Ped on sktbrd injured in clsn w nonmtr vehicle, unsp, init +C2891976|T037|AB|V06.92XD|ICD10CM|Ped on sktbrd injured in clsn w nonmtr vehicle, unsp, subs|Ped on sktbrd injured in clsn w nonmtr vehicle, unsp, subs +C2891977|T037|AB|V06.92XS|ICD10CM|Ped on sktbrd inj in clsn w nonmtr vehicle, unsp, sequela|Ped on sktbrd inj in clsn w nonmtr vehicle, unsp, sequela +C2891984|T037|AB|V06.99|ICD10CM|Ped w convey injured in collision w nonmtr vehicle, unsp|Ped w convey injured in collision w nonmtr vehicle, unsp +C2891985|T037|AB|V06.99XA|ICD10CM|Ped w convey injured in clsn w nonmtr vehicle, unsp, init|Ped w convey injured in clsn w nonmtr vehicle, unsp, init +C2891986|T037|AB|V06.99XD|ICD10CM|Ped w convey injured in clsn w nonmtr vehicle, unsp, subs|Ped w convey injured in clsn w nonmtr vehicle, unsp, subs +C2891987|T037|AB|V06.99XS|ICD10CM|Ped w convey injured in clsn w nonmtr vehicle, unsp, sequela|Ped w convey injured in clsn w nonmtr vehicle, unsp, sequela +C0476742|T037|AB|V09|ICD10CM|Pedestrian injured in other and unsp transport accidents|Pedestrian injured in other and unsp transport accidents +C0476742|T037|HT|V09|ICD10CM|Pedestrian injured in other and unspecified transport accidents|Pedestrian injured in other and unspecified transport accidents +C0476742|T037|HT|V09|ICD10|Pedestrian injured in other and unspecified transport accidents|Pedestrian injured in other and unspecified transport accidents +C0476743|T037|PT|V09.0|ICD10|Pedestrian injured in nontraffic accident involving other and unspecified motor vehicles|Pedestrian injured in nontraffic accident involving other and unspecified motor vehicles +C0476743|T037|HT|V09.0|ICD10CM|Pedestrian injured in nontraffic accident involving other and unspecified motor vehicles|Pedestrian injured in nontraffic accident involving other and unspecified motor vehicles +C0476743|T037|AB|V09.0|ICD10CM|Pedestrian injured nontraf involving oth and unsp mv|Pedestrian injured nontraf involving oth and unsp mv +C2891988|T037|AB|V09.00|ICD10CM|Pedestrian injured in nontraffic accident involving unsp mv|Pedestrian injured in nontraffic accident involving unsp mv +C2891988|T037|HT|V09.00|ICD10CM|Pedestrian injured in nontraffic accident involving unspecified motor vehicles|Pedestrian injured in nontraffic accident involving unspecified motor vehicles +C2891989|T037|PT|V09.00XA|ICD10CM|Pedestrian injured in nontraffic accident involving unspecified motor vehicles, initial encounter|Pedestrian injured in nontraffic accident involving unspecified motor vehicles, initial encounter +C2891989|T037|AB|V09.00XA|ICD10CM|Pedestrian injured nontraf involving unsp mv, init|Pedestrian injured nontraf involving unsp mv, init +C2891990|T037|PT|V09.00XD|ICD10CM|Pedestrian injured in nontraffic accident involving unspecified motor vehicles, subsequent encounter|Pedestrian injured in nontraffic accident involving unspecified motor vehicles, subsequent encounter +C2891990|T037|AB|V09.00XD|ICD10CM|Pedestrian injured nontraf involving unsp mv, subs|Pedestrian injured nontraf involving unsp mv, subs +C2891991|T037|PT|V09.00XS|ICD10CM|Pedestrian injured in nontraffic accident involving unspecified motor vehicles, sequela|Pedestrian injured in nontraffic accident involving unspecified motor vehicles, sequela +C2891991|T037|AB|V09.00XS|ICD10CM|Pedestrian injured nontraf involving unsp mv, sequela|Pedestrian injured nontraf involving unsp mv, sequela +C2891992|T037|HT|V09.01|ICD10CM|Pedestrian injured in nontraffic accident involving military vehicle|Pedestrian injured in nontraffic accident involving military vehicle +C2891992|T037|AB|V09.01|ICD10CM|Pedestrian injured nontraf involving military vehicle|Pedestrian injured nontraf involving military vehicle +C2891993|T037|PT|V09.01XA|ICD10CM|Pedestrian injured in nontraffic accident involving military vehicle, initial encounter|Pedestrian injured in nontraffic accident involving military vehicle, initial encounter +C2891993|T037|AB|V09.01XA|ICD10CM|Pedestrian injured nontraf involving military vehicle, init|Pedestrian injured nontraf involving military vehicle, init +C2891994|T037|PT|V09.01XD|ICD10CM|Pedestrian injured in nontraffic accident involving military vehicle, subsequent encounter|Pedestrian injured in nontraffic accident involving military vehicle, subsequent encounter +C2891994|T037|AB|V09.01XD|ICD10CM|Pedestrian injured nontraf involving military vehicle, subs|Pedestrian injured nontraf involving military vehicle, subs +C2891995|T037|AB|V09.01XS|ICD10CM|Ped injured nontraf involving military vehicle, sequela|Ped injured nontraf involving military vehicle, sequela +C2891995|T037|PT|V09.01XS|ICD10CM|Pedestrian injured in nontraffic accident involving military vehicle, sequela|Pedestrian injured in nontraffic accident involving military vehicle, sequela +C2891996|T037|ET|V09.09|ICD10CM|Pedestrian injured in nontraffic accident by special vehicle|Pedestrian injured in nontraffic accident by special vehicle +C2891997|T037|AB|V09.09|ICD10CM|Pedestrian injured in nontraffic accident involving oth mv|Pedestrian injured in nontraffic accident involving oth mv +C2891997|T037|HT|V09.09|ICD10CM|Pedestrian injured in nontraffic accident involving other motor vehicles|Pedestrian injured in nontraffic accident involving other motor vehicles +C2891998|T037|PT|V09.09XA|ICD10CM|Pedestrian injured in nontraffic accident involving other motor vehicles, initial encounter|Pedestrian injured in nontraffic accident involving other motor vehicles, initial encounter +C2891998|T037|AB|V09.09XA|ICD10CM|Pedestrian injured nontraf involving oth mv, init|Pedestrian injured nontraf involving oth mv, init +C2891999|T037|PT|V09.09XD|ICD10CM|Pedestrian injured in nontraffic accident involving other motor vehicles, subsequent encounter|Pedestrian injured in nontraffic accident involving other motor vehicles, subsequent encounter +C2891999|T037|AB|V09.09XD|ICD10CM|Pedestrian injured nontraf involving oth mv, subs|Pedestrian injured nontraf involving oth mv, subs +C2892000|T037|PT|V09.09XS|ICD10CM|Pedestrian injured in nontraffic accident involving other motor vehicles, sequela|Pedestrian injured in nontraffic accident involving other motor vehicles, sequela +C2892000|T037|AB|V09.09XS|ICD10CM|Pedestrian injured nontraf involving oth mv, sequela|Pedestrian injured nontraf involving oth mv, sequela +C0476744|T037|HT|V09.1|ICD10CM|Pedestrian injured in unspecified nontraffic accident|Pedestrian injured in unspecified nontraffic accident +C0476744|T037|AB|V09.1|ICD10CM|Pedestrian injured in unspecified nontraffic accident|Pedestrian injured in unspecified nontraffic accident +C0476744|T037|PT|V09.1|ICD10|Pedestrian injured in unspecified nontraffic accident|Pedestrian injured in unspecified nontraffic accident +C2892001|T037|AB|V09.1XXA|ICD10CM|Pedestrian injured in unsp nontraffic accident, init encntr|Pedestrian injured in unsp nontraffic accident, init encntr +C2892001|T037|PT|V09.1XXA|ICD10CM|Pedestrian injured in unspecified nontraffic accident, initial encounter|Pedestrian injured in unspecified nontraffic accident, initial encounter +C2892002|T037|AB|V09.1XXD|ICD10CM|Pedestrian injured in unsp nontraffic accident, subs encntr|Pedestrian injured in unsp nontraffic accident, subs encntr +C2892002|T037|PT|V09.1XXD|ICD10CM|Pedestrian injured in unspecified nontraffic accident, subsequent encounter|Pedestrian injured in unspecified nontraffic accident, subsequent encounter +C2892003|T037|AB|V09.1XXS|ICD10CM|Pedestrian injured in unsp nontraffic accident, sequela|Pedestrian injured in unsp nontraffic accident, sequela +C2892003|T037|PT|V09.1XXS|ICD10CM|Pedestrian injured in unspecified nontraffic accident, sequela|Pedestrian injured in unspecified nontraffic accident, sequela +C0476745|T037|AB|V09.2|ICD10CM|Pedestrian injured in traf involving oth and unsp mv|Pedestrian injured in traf involving oth and unsp mv +C0476745|T037|HT|V09.2|ICD10CM|Pedestrian injured in traffic accident involving other and unspecified motor vehicles|Pedestrian injured in traffic accident involving other and unspecified motor vehicles +C0476745|T037|PT|V09.2|ICD10|Pedestrian injured in traffic accident involving other and unspecified motor vehicles|Pedestrian injured in traffic accident involving other and unspecified motor vehicles +C2892004|T037|AB|V09.20|ICD10CM|Pedestrian injured in traffic accident involving unsp mv|Pedestrian injured in traffic accident involving unsp mv +C2892004|T037|HT|V09.20|ICD10CM|Pedestrian injured in traffic accident involving unspecified motor vehicles|Pedestrian injured in traffic accident involving unspecified motor vehicles +C2892005|T037|AB|V09.20XA|ICD10CM|Pedestrian injured in traf involving unsp mv, init|Pedestrian injured in traf involving unsp mv, init +C2892005|T037|PT|V09.20XA|ICD10CM|Pedestrian injured in traffic accident involving unspecified motor vehicles, initial encounter|Pedestrian injured in traffic accident involving unspecified motor vehicles, initial encounter +C2892006|T037|AB|V09.20XD|ICD10CM|Pedestrian injured in traf involving unsp mv, subs|Pedestrian injured in traf involving unsp mv, subs +C2892006|T037|PT|V09.20XD|ICD10CM|Pedestrian injured in traffic accident involving unspecified motor vehicles, subsequent encounter|Pedestrian injured in traffic accident involving unspecified motor vehicles, subsequent encounter +C2892007|T037|AB|V09.20XS|ICD10CM|Pedestrian injured in traf involving unsp mv, sequela|Pedestrian injured in traf involving unsp mv, sequela +C2892007|T037|PT|V09.20XS|ICD10CM|Pedestrian injured in traffic accident involving unspecified motor vehicles, sequela|Pedestrian injured in traffic accident involving unspecified motor vehicles, sequela +C2892008|T037|AB|V09.21|ICD10CM|Pedestrian injured in traf involving military vehicle|Pedestrian injured in traf involving military vehicle +C2892008|T037|HT|V09.21|ICD10CM|Pedestrian injured in traffic accident involving military vehicle|Pedestrian injured in traffic accident involving military vehicle +C2892009|T037|AB|V09.21XA|ICD10CM|Pedestrian injured in traf involving military vehicle, init|Pedestrian injured in traf involving military vehicle, init +C2892009|T037|PT|V09.21XA|ICD10CM|Pedestrian injured in traffic accident involving military vehicle, initial encounter|Pedestrian injured in traffic accident involving military vehicle, initial encounter +C2892010|T037|AB|V09.21XD|ICD10CM|Pedestrian injured in traf involving military vehicle, subs|Pedestrian injured in traf involving military vehicle, subs +C2892010|T037|PT|V09.21XD|ICD10CM|Pedestrian injured in traffic accident involving military vehicle, subsequent encounter|Pedestrian injured in traffic accident involving military vehicle, subsequent encounter +C2892011|T037|AB|V09.21XS|ICD10CM|Ped injured in traf involving military vehicle, sequela|Ped injured in traf involving military vehicle, sequela +C2892011|T037|PT|V09.21XS|ICD10CM|Pedestrian injured in traffic accident involving military vehicle, sequela|Pedestrian injured in traffic accident involving military vehicle, sequela +C2892012|T037|AB|V09.29|ICD10CM|Pedestrian injured in traffic accident involving oth mv|Pedestrian injured in traffic accident involving oth mv +C2892012|T037|HT|V09.29|ICD10CM|Pedestrian injured in traffic accident involving other motor vehicles|Pedestrian injured in traffic accident involving other motor vehicles +C2892013|T037|AB|V09.29XA|ICD10CM|Pedestrian injured in traf involving oth mv, init|Pedestrian injured in traf involving oth mv, init +C2892013|T037|PT|V09.29XA|ICD10CM|Pedestrian injured in traffic accident involving other motor vehicles, initial encounter|Pedestrian injured in traffic accident involving other motor vehicles, initial encounter +C2892014|T037|AB|V09.29XD|ICD10CM|Pedestrian injured in traf involving oth mv, subs|Pedestrian injured in traf involving oth mv, subs +C2892014|T037|PT|V09.29XD|ICD10CM|Pedestrian injured in traffic accident involving other motor vehicles, subsequent encounter|Pedestrian injured in traffic accident involving other motor vehicles, subsequent encounter +C2892015|T037|AB|V09.29XS|ICD10CM|Pedestrian injured in traf involving oth mv, sequela|Pedestrian injured in traf involving oth mv, sequela +C2892015|T037|PT|V09.29XS|ICD10CM|Pedestrian injured in traffic accident involving other motor vehicles, sequela|Pedestrian injured in traffic accident involving other motor vehicles, sequela +C0476746|T037|PT|V09.3|ICD10|Pedestrian injured in unspecified traffic accident|Pedestrian injured in unspecified traffic accident +C0476746|T037|HT|V09.3|ICD10CM|Pedestrian injured in unspecified traffic accident|Pedestrian injured in unspecified traffic accident +C0476746|T037|AB|V09.3|ICD10CM|Pedestrian injured in unspecified traffic accident|Pedestrian injured in unspecified traffic accident +C2892016|T037|AB|V09.3XXA|ICD10CM|Pedestrian injured in unsp traffic accident, init encntr|Pedestrian injured in unsp traffic accident, init encntr +C2892016|T037|PT|V09.3XXA|ICD10CM|Pedestrian injured in unspecified traffic accident, initial encounter|Pedestrian injured in unspecified traffic accident, initial encounter +C2892017|T037|AB|V09.3XXD|ICD10CM|Pedestrian injured in unsp traffic accident, subs encntr|Pedestrian injured in unsp traffic accident, subs encntr +C2892017|T037|PT|V09.3XXD|ICD10CM|Pedestrian injured in unspecified traffic accident, subsequent encounter|Pedestrian injured in unspecified traffic accident, subsequent encounter +C2892018|T037|AB|V09.3XXS|ICD10CM|Pedestrian injured in unspecified traffic accident, sequela|Pedestrian injured in unspecified traffic accident, sequela +C2892018|T037|PT|V09.3XXS|ICD10CM|Pedestrian injured in unspecified traffic accident, sequela|Pedestrian injured in unspecified traffic accident, sequela +C0476747|T037|HT|V09.9|ICD10CM|Pedestrian injured in unspecified transport accident|Pedestrian injured in unspecified transport accident +C0476747|T037|AB|V09.9|ICD10CM|Pedestrian injured in unspecified transport accident|Pedestrian injured in unspecified transport accident +C0476747|T037|PT|V09.9|ICD10|Pedestrian injured in unspecified transport accident|Pedestrian injured in unspecified transport accident +C2892019|T037|AB|V09.9XXA|ICD10CM|Pedestrian injured in unsp transport accident, init encntr|Pedestrian injured in unsp transport accident, init encntr +C2892019|T037|PT|V09.9XXA|ICD10CM|Pedestrian injured in unspecified transport accident, initial encounter|Pedestrian injured in unspecified transport accident, initial encounter +C2892020|T037|AB|V09.9XXD|ICD10CM|Pedestrian injured in unsp transport accident, subs encntr|Pedestrian injured in unsp transport accident, subs encntr +C2892020|T037|PT|V09.9XXD|ICD10CM|Pedestrian injured in unspecified transport accident, subsequent encounter|Pedestrian injured in unspecified transport accident, subsequent encounter +C2892021|T037|AB|V09.9XXS|ICD10CM|Pedestrian injured in unsp transport accident, sequela|Pedestrian injured in unsp transport accident, sequela +C2892021|T037|PT|V09.9XXS|ICD10CM|Pedestrian injured in unspecified transport accident, sequela|Pedestrian injured in unspecified transport accident, sequela +C2892022|T037|AB|V10|ICD10CM|Pedal cycle rider injured in collision w ped/anml|Pedal cycle rider injured in collision w ped/anml +C2892022|T037|HT|V10|ICD10CM|Pedal cycle rider injured in collision with pedestrian or animal|Pedal cycle rider injured in collision with pedestrian or animal +C0476749|T037|HT|V10|ICD10|Pedal cyclist injured in collision with pedestrian or animal|Pedal cyclist injured in collision with pedestrian or animal +C2892024|T037|HT|V10-V19|ICD10CM|Pedal cycle rider injured in transport accident (V10-V19)|Pedal cycle rider injured in transport accident (V10-V19) +C0476748|T037|HT|V10-V19.9|ICD10|Pedal cyclist injured in transport accident|Pedal cyclist injured in transport accident +C2892025|T037|AB|V10.0|ICD10CM|Pedal cycle driver injured in collision w ped/anml nontraf|Pedal cycle driver injured in collision w ped/anml nontraf +C2892025|T037|HT|V10.0|ICD10CM|Pedal cycle driver injured in collision with pedestrian or animal in nontraffic accident|Pedal cycle driver injured in collision with pedestrian or animal in nontraffic accident +C0476750|T037|PT|V10.0|ICD10|Pedal cyclist injured in collision with pedestrian or animal, driver, nontraffic accident|Pedal cyclist injured in collision with pedestrian or animal, driver, nontraffic accident +C2892026|T037|AB|V10.0XXA|ICD10CM|Pedl cyc driver injured in clsn w ped/anml nontraf, init|Pedl cyc driver injured in clsn w ped/anml nontraf, init +C2892027|T037|AB|V10.0XXD|ICD10CM|Pedl cyc driver injured in clsn w ped/anml nontraf, subs|Pedl cyc driver injured in clsn w ped/anml nontraf, subs +C2892028|T037|PT|V10.0XXS|ICD10CM|Pedal cycle driver injured in collision with pedestrian or animal in nontraffic accident, sequela|Pedal cycle driver injured in collision with pedestrian or animal in nontraffic accident, sequela +C2892028|T037|AB|V10.0XXS|ICD10CM|Pedl cyc driver injured in clsn w ped/anml nontraf, sequela|Pedl cyc driver injured in clsn w ped/anml nontraf, sequela +C2892029|T037|HT|V10.1|ICD10CM|Pedal cycle passenger injured in collision with pedestrian or animal in nontraffic accident|Pedal cycle passenger injured in collision with pedestrian or animal in nontraffic accident +C0476751|T037|PT|V10.1|ICD10|Pedal cyclist injured in collision with pedestrian or animal, passenger, nontraffic accident|Pedal cyclist injured in collision with pedestrian or animal, passenger, nontraffic accident +C2892029|T037|AB|V10.1|ICD10CM|Pedl cyc passenger injured in collision w ped/anml nontraf|Pedl cyc passenger injured in collision w ped/anml nontraf +C2892030|T037|AB|V10.1XXA|ICD10CM|Pedl cyc passenger injured in clsn w ped/anml nontraf, init|Pedl cyc passenger injured in clsn w ped/anml nontraf, init +C2892031|T037|AB|V10.1XXD|ICD10CM|Pedl cyc passenger injured in clsn w ped/anml nontraf, subs|Pedl cyc passenger injured in clsn w ped/anml nontraf, subs +C2892032|T037|PT|V10.1XXS|ICD10CM|Pedal cycle passenger injured in collision with pedestrian or animal in nontraffic accident, sequela|Pedal cycle passenger injured in collision with pedestrian or animal in nontraffic accident, sequela +C2892032|T037|AB|V10.1XXS|ICD10CM|Pedl cyc pasngr injured in clsn w ped/anml nontraf, sequela|Pedl cyc pasngr injured in clsn w ped/anml nontraf, sequela +C2892033|T037|AB|V10.2|ICD10CM|Unsp pedal cyclist injured in collision w ped/anml nontraf|Unsp pedal cyclist injured in collision w ped/anml nontraf +C2892033|T037|HT|V10.2|ICD10CM|Unspecified pedal cyclist injured in collision with pedestrian or animal in nontraffic accident|Unspecified pedal cyclist injured in collision with pedestrian or animal in nontraffic accident +C2892034|T037|AB|V10.2XXA|ICD10CM|Unsp pedl cyclst injured in clsn w ped/anml nontraf, init|Unsp pedl cyclst injured in clsn w ped/anml nontraf, init +C2892035|T037|AB|V10.2XXD|ICD10CM|Unsp pedl cyclst injured in clsn w ped/anml nontraf, subs|Unsp pedl cyclst injured in clsn w ped/anml nontraf, subs +C2892036|T037|AB|V10.2XXS|ICD10CM|Unsp pedl cyclst injured in clsn w ped/anml nontraf, sequela|Unsp pedl cyclst injured in clsn w ped/anml nontraf, sequela +C0476753|T037|PT|V10.3|ICD10|Pedal cyclist injured in collision with pedestrian or animal, while boarding or alighting|Pedal cyclist injured in collision with pedestrian or animal, while boarding or alighting +C2892037|T037|HT|V10.3|ICD10CM|Person boarding or alighting a pedal cycle injured in collision with pedestrian or animal|Person boarding or alighting a pedal cycle injured in collision with pedestrian or animal +C2892037|T037|AB|V10.3|ICD10CM|Prsn brd/alit a pedal cycle injured in collision w ped/anml|Prsn brd/alit a pedal cycle injured in collision w ped/anml +C2892038|T037|AB|V10.3XXA|ICD10CM|Prsn brd/alit pedl cyc injured in collision w ped/anml, init|Prsn brd/alit pedl cyc injured in collision w ped/anml, init +C2892039|T037|AB|V10.3XXD|ICD10CM|Prsn brd/alit pedl cyc injured in collision w ped/anml, subs|Prsn brd/alit pedl cyc injured in collision w ped/anml, subs +C2892040|T037|PT|V10.3XXS|ICD10CM|Person boarding or alighting a pedal cycle injured in collision with pedestrian or animal, sequela|Person boarding or alighting a pedal cycle injured in collision with pedestrian or animal, sequela +C2892040|T037|AB|V10.3XXS|ICD10CM|Prsn brd/alit pedl cyc injured in clsn w ped/anml, sequela|Prsn brd/alit pedl cyc injured in clsn w ped/anml, sequela +C2892041|T037|AB|V10.4|ICD10CM|Pedal cycle driver injured in collision w ped/anml in traf|Pedal cycle driver injured in collision w ped/anml in traf +C2892041|T037|HT|V10.4|ICD10CM|Pedal cycle driver injured in collision with pedestrian or animal in traffic accident|Pedal cycle driver injured in collision with pedestrian or animal in traffic accident +C0476754|T037|PT|V10.4|ICD10|Pedal cyclist injured in collision with pedestrian or animal, driver, traffic accident|Pedal cyclist injured in collision with pedestrian or animal, driver, traffic accident +C2892042|T037|AB|V10.4XXA|ICD10CM|Pedl cyc driver injured in clsn w ped/anml in traf, init|Pedl cyc driver injured in clsn w ped/anml in traf, init +C2892043|T037|AB|V10.4XXD|ICD10CM|Pedl cyc driver injured in clsn w ped/anml in traf, subs|Pedl cyc driver injured in clsn w ped/anml in traf, subs +C2892044|T037|PT|V10.4XXS|ICD10CM|Pedal cycle driver injured in collision with pedestrian or animal in traffic accident, sequela|Pedal cycle driver injured in collision with pedestrian or animal in traffic accident, sequela +C2892044|T037|AB|V10.4XXS|ICD10CM|Pedl cyc driver injured in clsn w ped/anml in traf, sequela|Pedl cyc driver injured in clsn w ped/anml in traf, sequela +C2892045|T037|HT|V10.5|ICD10CM|Pedal cycle passenger injured in collision with pedestrian or animal in traffic accident|Pedal cycle passenger injured in collision with pedestrian or animal in traffic accident +C0476755|T037|PT|V10.5|ICD10|Pedal cyclist injured in collision with pedestrian or animal, passenger, traffic accident|Pedal cyclist injured in collision with pedestrian or animal, passenger, traffic accident +C2892045|T037|AB|V10.5|ICD10CM|Pedl cyc passenger injured in collision w ped/anml in traf|Pedl cyc passenger injured in collision w ped/anml in traf +C2892046|T037|AB|V10.5XXA|ICD10CM|Pedl cyc passenger injured in clsn w ped/anml in traf, init|Pedl cyc passenger injured in clsn w ped/anml in traf, init +C2892047|T037|AB|V10.5XXD|ICD10CM|Pedl cyc passenger injured in clsn w ped/anml in traf, subs|Pedl cyc passenger injured in clsn w ped/anml in traf, subs +C2892048|T037|PT|V10.5XXS|ICD10CM|Pedal cycle passenger injured in collision with pedestrian or animal in traffic accident, sequela|Pedal cycle passenger injured in collision with pedestrian or animal in traffic accident, sequela +C2892048|T037|AB|V10.5XXS|ICD10CM|Pedl cyc pasngr injured in clsn w ped/anml in traf, sequela|Pedl cyc pasngr injured in clsn w ped/anml in traf, sequela +C2892049|T037|AB|V10.9|ICD10CM|Unsp pedal cyclist injured in collision w ped/anml in traf|Unsp pedal cyclist injured in collision w ped/anml in traf +C2892049|T037|HT|V10.9|ICD10CM|Unspecified pedal cyclist injured in collision with pedestrian or animal in traffic accident|Unspecified pedal cyclist injured in collision with pedestrian or animal in traffic accident +C2892050|T037|AB|V10.9XXA|ICD10CM|Unsp pedl cyclst injured in clsn w ped/anml in traf, init|Unsp pedl cyclst injured in clsn w ped/anml in traf, init +C2892051|T037|AB|V10.9XXD|ICD10CM|Unsp pedl cyclst injured in clsn w ped/anml in traf, subs|Unsp pedl cyclst injured in clsn w ped/anml in traf, subs +C2892052|T037|AB|V10.9XXS|ICD10CM|Unsp pedl cyclst injured in clsn w ped/anml in traf, sequela|Unsp pedl cyclst injured in clsn w ped/anml in traf, sequela +C2892053|T037|AB|V11|ICD10CM|Pedal cycle rider injured in collision with oth pedal cycle|Pedal cycle rider injured in collision with oth pedal cycle +C2892053|T037|HT|V11|ICD10CM|Pedal cycle rider injured in collision with other pedal cycle|Pedal cycle rider injured in collision with other pedal cycle +C0476757|T037|HT|V11|ICD10|Pedal cyclist injured in collision with other pedal cycle|Pedal cyclist injured in collision with other pedal cycle +C2892054|T037|HT|V11.0|ICD10CM|Pedal cycle driver injured in collision with other pedal cycle in nontraffic accident|Pedal cycle driver injured in collision with other pedal cycle in nontraffic accident +C0476758|T037|PT|V11.0|ICD10|Pedal cyclist injured in collision with other pedal cycle, driver, nontraffic accident|Pedal cyclist injured in collision with other pedal cycle, driver, nontraffic accident +C2892054|T037|AB|V11.0|ICD10CM|Pedl cyc driver injured in collision w oth pedl cyc nontraf|Pedl cyc driver injured in collision w oth pedl cyc nontraf +C2892055|T037|AB|V11.0XXA|ICD10CM|Pedl cyc driver injured in clsn w oth pedl cyc nontraf, init|Pedl cyc driver injured in clsn w oth pedl cyc nontraf, init +C2892056|T037|AB|V11.0XXD|ICD10CM|Pedl cyc driver injured in clsn w oth pedl cyc nontraf, subs|Pedl cyc driver injured in clsn w oth pedl cyc nontraf, subs +C2892057|T037|PT|V11.0XXS|ICD10CM|Pedal cycle driver injured in collision with other pedal cycle in nontraffic accident, sequela|Pedal cycle driver injured in collision with other pedal cycle in nontraffic accident, sequela +C2892057|T037|AB|V11.0XXS|ICD10CM|Pedl cyc driver inj in clsn w oth pedl cyc nontraf, sequela|Pedl cyc driver inj in clsn w oth pedl cyc nontraf, sequela +C2892058|T037|HT|V11.1|ICD10CM|Pedal cycle passenger injured in collision with other pedal cycle in nontraffic accident|Pedal cycle passenger injured in collision with other pedal cycle in nontraffic accident +C0476759|T037|PT|V11.1|ICD10|Pedal cyclist injured in collision with other pedal cycle, passenger, nontraffic accident|Pedal cyclist injured in collision with other pedal cycle, passenger, nontraffic accident +C2892058|T037|AB|V11.1|ICD10CM|Pedl cyc passenger injured in clsn w oth pedl cyc nontraf|Pedl cyc passenger injured in clsn w oth pedl cyc nontraf +C2892059|T037|AB|V11.1XXA|ICD10CM|Pedl cyc pasngr injured in clsn w oth pedl cyc nontraf, init|Pedl cyc pasngr injured in clsn w oth pedl cyc nontraf, init +C2892060|T037|AB|V11.1XXD|ICD10CM|Pedl cyc pasngr injured in clsn w oth pedl cyc nontraf, subs|Pedl cyc pasngr injured in clsn w oth pedl cyc nontraf, subs +C2892061|T037|PT|V11.1XXS|ICD10CM|Pedal cycle passenger injured in collision with other pedal cycle in nontraffic accident, sequela|Pedal cycle passenger injured in collision with other pedal cycle in nontraffic accident, sequela +C2892061|T037|AB|V11.1XXS|ICD10CM|Pedl cyc pasngr inj in clsn w oth pedl cyc nontraf, sequela|Pedl cyc pasngr inj in clsn w oth pedl cyc nontraf, sequela +C2892062|T037|AB|V11.2|ICD10CM|Unsp pedl cyclst injured in collision w oth pedl cyc nontraf|Unsp pedl cyclst injured in collision w oth pedl cyc nontraf +C2892062|T037|HT|V11.2|ICD10CM|Unspecified pedal cyclist injured in collision with other pedal cycle in nontraffic accident|Unspecified pedal cyclist injured in collision with other pedal cycle in nontraffic accident +C2892063|T037|AB|V11.2XXA|ICD10CM|Unsp pedl cyclst inj in clsn w oth pedl cyc nontraf, init|Unsp pedl cyclst inj in clsn w oth pedl cyc nontraf, init +C2892064|T037|AB|V11.2XXD|ICD10CM|Unsp pedl cyclst inj in clsn w oth pedl cyc nontraf, subs|Unsp pedl cyclst inj in clsn w oth pedl cyc nontraf, subs +C2892065|T037|AB|V11.2XXS|ICD10CM|Unsp pedl cyclst inj in clsn w oth pedl cyc nontraf, sequela|Unsp pedl cyclst inj in clsn w oth pedl cyc nontraf, sequela +C0476761|T037|PT|V11.3|ICD10|Pedal cyclist injured in collision with other pedal cycle, while boarding or alighting|Pedal cyclist injured in collision with other pedal cycle, while boarding or alighting +C2892066|T037|HT|V11.3|ICD10CM|Person boarding or alighting a pedal cycle injured in collision with other pedal cycle|Person boarding or alighting a pedal cycle injured in collision with other pedal cycle +C2892066|T037|AB|V11.3|ICD10CM|Prsn brd/alit pedl cyc injured in collision w oth pedl cyc|Prsn brd/alit pedl cyc injured in collision w oth pedl cyc +C2892067|T037|AB|V11.3XXA|ICD10CM|Prsn brd/alit pedl cyc injured in clsn w oth pedl cyc, init|Prsn brd/alit pedl cyc injured in clsn w oth pedl cyc, init +C2892068|T037|AB|V11.3XXD|ICD10CM|Prsn brd/alit pedl cyc injured in clsn w oth pedl cyc, subs|Prsn brd/alit pedl cyc injured in clsn w oth pedl cyc, subs +C2892069|T037|PT|V11.3XXS|ICD10CM|Person boarding or alighting a pedal cycle injured in collision with other pedal cycle, sequela|Person boarding or alighting a pedal cycle injured in collision with other pedal cycle, sequela +C2892069|T037|AB|V11.3XXS|ICD10CM|Prsn brd/alit pedl cyc inj in clsn w oth pedl cyc, sequela|Prsn brd/alit pedl cyc inj in clsn w oth pedl cyc, sequela +C2892070|T037|HT|V11.4|ICD10CM|Pedal cycle driver injured in collision with other pedal cycle in traffic accident|Pedal cycle driver injured in collision with other pedal cycle in traffic accident +C0476762|T037|PT|V11.4|ICD10|Pedal cyclist injured in collision with other pedal cycle, driver, traffic accident|Pedal cyclist injured in collision with other pedal cycle, driver, traffic accident +C2892070|T037|AB|V11.4|ICD10CM|Pedl cyc driver injured in collision w oth pedl cyc in traf|Pedl cyc driver injured in collision w oth pedl cyc in traf +C2892071|T037|AB|V11.4XXA|ICD10CM|Pedl cyc driver injured in clsn w oth pedl cyc in traf, init|Pedl cyc driver injured in clsn w oth pedl cyc in traf, init +C2892072|T037|AB|V11.4XXD|ICD10CM|Pedl cyc driver injured in clsn w oth pedl cyc in traf, subs|Pedl cyc driver injured in clsn w oth pedl cyc in traf, subs +C2892073|T037|PT|V11.4XXS|ICD10CM|Pedal cycle driver injured in collision with other pedal cycle in traffic accident, sequela|Pedal cycle driver injured in collision with other pedal cycle in traffic accident, sequela +C2892073|T037|AB|V11.4XXS|ICD10CM|Pedl cyc driver inj in clsn w oth pedl cyc in traf, sequela|Pedl cyc driver inj in clsn w oth pedl cyc in traf, sequela +C2892074|T037|HT|V11.5|ICD10CM|Pedal cycle passenger injured in collision with other pedal cycle in traffic accident|Pedal cycle passenger injured in collision with other pedal cycle in traffic accident +C0476763|T037|PT|V11.5|ICD10|Pedal cyclist injured in collision with other pedal cycle, passenger, traffic accident|Pedal cyclist injured in collision with other pedal cycle, passenger, traffic accident +C2892074|T037|AB|V11.5|ICD10CM|Pedl cyc passenger injured in clsn w oth pedl cyc in traf|Pedl cyc passenger injured in clsn w oth pedl cyc in traf +C2892075|T037|AB|V11.5XXA|ICD10CM|Pedl cyc pasngr injured in clsn w oth pedl cyc in traf, init|Pedl cyc pasngr injured in clsn w oth pedl cyc in traf, init +C2892076|T037|AB|V11.5XXD|ICD10CM|Pedl cyc pasngr injured in clsn w oth pedl cyc in traf, subs|Pedl cyc pasngr injured in clsn w oth pedl cyc in traf, subs +C2892077|T037|PT|V11.5XXS|ICD10CM|Pedal cycle passenger injured in collision with other pedal cycle in traffic accident, sequela|Pedal cycle passenger injured in collision with other pedal cycle in traffic accident, sequela +C2892077|T037|AB|V11.5XXS|ICD10CM|Pedl cyc pasngr inj in clsn w oth pedl cyc in traf, sequela|Pedl cyc pasngr inj in clsn w oth pedl cyc in traf, sequela +C2892078|T037|AB|V11.9|ICD10CM|Unsp pedl cyclst injured in collision w oth pedl cyc in traf|Unsp pedl cyclst injured in collision w oth pedl cyc in traf +C2892078|T037|HT|V11.9|ICD10CM|Unspecified pedal cyclist injured in collision with other pedal cycle in traffic accident|Unspecified pedal cyclist injured in collision with other pedal cycle in traffic accident +C2892079|T037|AB|V11.9XXA|ICD10CM|Unsp pedl cyclst inj in clsn w oth pedl cyc in traf, init|Unsp pedl cyclst inj in clsn w oth pedl cyc in traf, init +C2892080|T037|AB|V11.9XXD|ICD10CM|Unsp pedl cyclst inj in clsn w oth pedl cyc in traf, subs|Unsp pedl cyclst inj in clsn w oth pedl cyc in traf, subs +C2892081|T037|AB|V11.9XXS|ICD10CM|Unsp pedl cyclst inj in clsn w oth pedl cyc in traf, sequela|Unsp pedl cyclst inj in clsn w oth pedl cyc in traf, sequela +C2892081|T037|PT|V11.9XXS|ICD10CM|Unspecified pedal cyclist injured in collision with other pedal cycle in traffic accident, sequela|Unspecified pedal cyclist injured in collision with other pedal cycle in traffic accident, sequela +C2892082|T037|AB|V12|ICD10CM|Pedal cycle rider injured in collision w 2/3-whl mv|Pedal cycle rider injured in collision w 2/3-whl mv +C2892082|T037|HT|V12|ICD10CM|Pedal cycle rider injured in collision with two- or three-wheeled motor vehicle|Pedal cycle rider injured in collision with two- or three-wheeled motor vehicle +C0476765|T037|HT|V12|ICD10|Pedal cyclist injured in collision with two- or three-wheeled motor vehicle|Pedal cyclist injured in collision with two- or three-wheeled motor vehicle +C2892083|T037|AB|V12.0|ICD10CM|Pedal cycle driver injured in collision w 2/3-whl mv nontraf|Pedal cycle driver injured in collision w 2/3-whl mv nontraf +C2892084|T037|AB|V12.0XXA|ICD10CM|Pedl cyc driver injured in clsn w 2/3-whl mv nontraf, init|Pedl cyc driver injured in clsn w 2/3-whl mv nontraf, init +C2892085|T037|AB|V12.0XXD|ICD10CM|Pedl cyc driver injured in clsn w 2/3-whl mv nontraf, subs|Pedl cyc driver injured in clsn w 2/3-whl mv nontraf, subs +C2892086|T037|AB|V12.0XXS|ICD10CM|Pedl cyc driver inj in clsn w 2/3-whl mv nontraf, sequela|Pedl cyc driver inj in clsn w 2/3-whl mv nontraf, sequela +C2892087|T037|AB|V12.1|ICD10CM|Pedl cyc passenger injured in collision w 2/3-whl mv nontraf|Pedl cyc passenger injured in collision w 2/3-whl mv nontraf +C2892088|T037|AB|V12.1XXA|ICD10CM|Pedl cyc pasngr injured in clsn w 2/3-whl mv nontraf, init|Pedl cyc pasngr injured in clsn w 2/3-whl mv nontraf, init +C2892089|T037|AB|V12.1XXD|ICD10CM|Pedl cyc pasngr injured in clsn w 2/3-whl mv nontraf, subs|Pedl cyc pasngr injured in clsn w 2/3-whl mv nontraf, subs +C2892090|T037|AB|V12.1XXS|ICD10CM|Pedl cyc pasngr inj in clsn w 2/3-whl mv nontraf, sequela|Pedl cyc pasngr inj in clsn w 2/3-whl mv nontraf, sequela +C2892091|T037|AB|V12.2|ICD10CM|Unsp pedal cyclist injured in collision w 2/3-whl mv nontraf|Unsp pedal cyclist injured in collision w 2/3-whl mv nontraf +C2892092|T037|AB|V12.2XXA|ICD10CM|Unsp pedl cyclst injured in clsn w 2/3-whl mv nontraf, init|Unsp pedl cyclst injured in clsn w 2/3-whl mv nontraf, init +C2892093|T037|AB|V12.2XXD|ICD10CM|Unsp pedl cyclst injured in clsn w 2/3-whl mv nontraf, subs|Unsp pedl cyclst injured in clsn w 2/3-whl mv nontraf, subs +C2892094|T037|AB|V12.2XXS|ICD10CM|Unsp pedl cyclst inj in clsn w 2/3-whl mv nontraf, sequela|Unsp pedl cyclst inj in clsn w 2/3-whl mv nontraf, sequela +C2892095|T037|AB|V12.3|ICD10CM|Prsn brd/alit pedl cyc injured in collision w 2/3-whl mv|Prsn brd/alit pedl cyc injured in collision w 2/3-whl mv +C2892096|T037|AB|V12.3XXA|ICD10CM|Prsn brd/alit pedl cyc injured in clsn w 2/3-whl mv, init|Prsn brd/alit pedl cyc injured in clsn w 2/3-whl mv, init +C2892097|T037|AB|V12.3XXD|ICD10CM|Prsn brd/alit pedl cyc injured in clsn w 2/3-whl mv, subs|Prsn brd/alit pedl cyc injured in clsn w 2/3-whl mv, subs +C2892098|T037|AB|V12.3XXS|ICD10CM|Prsn brd/alit pedl cyc injured in clsn w 2/3-whl mv, sequela|Prsn brd/alit pedl cyc injured in clsn w 2/3-whl mv, sequela +C2892099|T037|AB|V12.4|ICD10CM|Pedal cycle driver injured in collision w 2/3-whl mv in traf|Pedal cycle driver injured in collision w 2/3-whl mv in traf +C2892099|T037|HT|V12.4|ICD10CM|Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident|Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident +C2892100|T037|AB|V12.4XXA|ICD10CM|Pedl cyc driver injured in clsn w 2/3-whl mv in traf, init|Pedl cyc driver injured in clsn w 2/3-whl mv in traf, init +C2892101|T037|AB|V12.4XXD|ICD10CM|Pedl cyc driver injured in clsn w 2/3-whl mv in traf, subs|Pedl cyc driver injured in clsn w 2/3-whl mv in traf, subs +C2892102|T037|AB|V12.4XXS|ICD10CM|Pedl cyc driver inj in clsn w 2/3-whl mv in traf, sequela|Pedl cyc driver inj in clsn w 2/3-whl mv in traf, sequela +C2892103|T037|AB|V12.5|ICD10CM|Pedl cyc passenger injured in collision w 2/3-whl mv in traf|Pedl cyc passenger injured in collision w 2/3-whl mv in traf +C2892104|T037|AB|V12.5XXA|ICD10CM|Pedl cyc pasngr injured in clsn w 2/3-whl mv in traf, init|Pedl cyc pasngr injured in clsn w 2/3-whl mv in traf, init +C2892105|T037|AB|V12.5XXD|ICD10CM|Pedl cyc pasngr injured in clsn w 2/3-whl mv in traf, subs|Pedl cyc pasngr injured in clsn w 2/3-whl mv in traf, subs +C2892106|T037|AB|V12.5XXS|ICD10CM|Pedl cyc pasngr inj in clsn w 2/3-whl mv in traf, sequela|Pedl cyc pasngr inj in clsn w 2/3-whl mv in traf, sequela +C2892107|T037|AB|V12.9|ICD10CM|Unsp pedal cyclist injured in collision w 2/3-whl mv in traf|Unsp pedal cyclist injured in collision w 2/3-whl mv in traf +C2892108|T037|AB|V12.9XXA|ICD10CM|Unsp pedl cyclst injured in clsn w 2/3-whl mv in traf, init|Unsp pedl cyclst injured in clsn w 2/3-whl mv in traf, init +C2892109|T037|AB|V12.9XXD|ICD10CM|Unsp pedl cyclst injured in clsn w 2/3-whl mv in traf, subs|Unsp pedl cyclst injured in clsn w 2/3-whl mv in traf, subs +C2892110|T037|AB|V12.9XXS|ICD10CM|Unsp pedl cyclst inj in clsn w 2/3-whl mv in traf, sequela|Unsp pedl cyclst inj in clsn w 2/3-whl mv in traf, sequela +C2892111|T037|HT|V13|ICD10CM|Pedal cycle rider injured in collision with car, pick-up truck or van|Pedal cycle rider injured in collision with car, pick-up truck or van +C2892111|T037|AB|V13|ICD10CM|Pedal cycle rider injured pick-up truck, pk-up/van|Pedal cycle rider injured pick-up truck, pk-up/van +C0476773|T037|HT|V13|ICD10|Pedal cyclist injured in collision with car, pick-up truck or van|Pedal cyclist injured in collision with car, pick-up truck or van +C2892112|T037|HT|V13.0|ICD10CM|Pedal cycle driver injured in collision with car, pick-up truck or van in nontraffic accident|Pedal cycle driver injured in collision with car, pick-up truck or van in nontraffic accident +C2892112|T037|AB|V13.0|ICD10CM|Pedal cycle driver injured pick-up truck, pk-up/van nontraf|Pedal cycle driver injured pick-up truck, pk-up/van nontraf +C0476774|T037|PT|V13.0|ICD10|Pedal cyclist injured in collision with car, pick-up truck or van, driver, nontraffic accident|Pedal cyclist injured in collision with car, pick-up truck or van, driver, nontraffic accident +C2892113|T037|AB|V13.0XXA|ICD10CM|Pedl cyc driver inj pick-up truck, pk-up/van nontraf, init|Pedl cyc driver inj pick-up truck, pk-up/van nontraf, init +C2892114|T037|AB|V13.0XXD|ICD10CM|Pedl cyc driver inj pick-up truck, pk-up/van nontraf, subs|Pedl cyc driver inj pick-up truck, pk-up/van nontraf, subs +C2892115|T037|AB|V13.0XXS|ICD10CM|Pedl cyc driver inj pk-up truck, pk-up/van nontraf, sequela|Pedl cyc driver inj pk-up truck, pk-up/van nontraf, sequela +C2892116|T037|HT|V13.1|ICD10CM|Pedal cycle passenger injured in collision with car, pick-up truck or van in nontraffic accident|Pedal cycle passenger injured in collision with car, pick-up truck or van in nontraffic accident +C0476775|T037|PT|V13.1|ICD10|Pedal cyclist injured in collision with car, pick-up truck or van, passenger, nontraffic accident|Pedal cyclist injured in collision with car, pick-up truck or van, passenger, nontraffic accident +C2892116|T037|AB|V13.1|ICD10CM|Pedl cyc passenger injured pick-up truck, pk-up/van nontraf|Pedl cyc passenger injured pick-up truck, pk-up/van nontraf +C2892117|T037|AB|V13.1XXA|ICD10CM|Pedl cyc pasngr inj pick-up truck, pk-up/van nontraf, init|Pedl cyc pasngr inj pick-up truck, pk-up/van nontraf, init +C2892118|T037|AB|V13.1XXD|ICD10CM|Pedl cyc pasngr inj pick-up truck, pk-up/van nontraf, subs|Pedl cyc pasngr inj pick-up truck, pk-up/van nontraf, subs +C2892119|T037|AB|V13.1XXS|ICD10CM|Pedl cyc pasngr inj pk-up truck, pk-up/van nontraf, sequela|Pedl cyc pasngr inj pk-up truck, pk-up/van nontraf, sequela +C2892120|T037|AB|V13.2|ICD10CM|Unsp pedal cyclist injured pick-up truck, pk-up/van nontraf|Unsp pedal cyclist injured pick-up truck, pk-up/van nontraf +C2892120|T037|HT|V13.2|ICD10CM|Unspecified pedal cyclist injured in collision with car, pick-up truck or van in nontraffic accident|Unspecified pedal cyclist injured in collision with car, pick-up truck or van in nontraffic accident +C2892121|T037|AB|V13.2XXA|ICD10CM|Unsp pedl cyclst inj pick-up truck, pk-up/van nontraf, init|Unsp pedl cyclst inj pick-up truck, pk-up/van nontraf, init +C2892122|T037|AB|V13.2XXD|ICD10CM|Unsp pedl cyclst inj pick-up truck, pk-up/van nontraf, subs|Unsp pedl cyclst inj pick-up truck, pk-up/van nontraf, subs +C2892123|T037|AB|V13.2XXS|ICD10CM|Unsp pedl cyclst inj pk-up truck, pk-up/van nontraf, sequela|Unsp pedl cyclst inj pk-up truck, pk-up/van nontraf, sequela +C0476777|T037|PT|V13.3|ICD10|Pedal cyclist injured in collision with car, pick-up truck or van, while boarding or alighting|Pedal cyclist injured in collision with car, pick-up truck or van, while boarding or alighting +C2892124|T037|HT|V13.3|ICD10CM|Person boarding or alighting a pedal cycle injured in collision with car, pick-up truck or van|Person boarding or alighting a pedal cycle injured in collision with car, pick-up truck or van +C2892124|T037|AB|V13.3|ICD10CM|Prsn brd/alit a pedal cycle injured pick-up truck, pk-up/van|Prsn brd/alit a pedal cycle injured pick-up truck, pk-up/van +C2892125|T037|AB|V13.3XXA|ICD10CM|Prsn brd/alit pedl cyc inj pick-up truck, pk-up/van, init|Prsn brd/alit pedl cyc inj pick-up truck, pk-up/van, init +C2892126|T037|AB|V13.3XXD|ICD10CM|Prsn brd/alit pedl cyc inj pick-up truck, pk-up/van, subs|Prsn brd/alit pedl cyc inj pick-up truck, pk-up/van, subs +C2892127|T037|AB|V13.3XXS|ICD10CM|Prsn brd/alit pedl cyc inj pick-up truck, pk-up/van, sequela|Prsn brd/alit pedl cyc inj pick-up truck, pk-up/van, sequela +C2892128|T037|HT|V13.4|ICD10CM|Pedal cycle driver injured in collision with car, pick-up truck or van in traffic accident|Pedal cycle driver injured in collision with car, pick-up truck or van in traffic accident +C2892128|T037|AB|V13.4|ICD10CM|Pedal cycle driver injured pick-up truck, pk-up/van in traf|Pedal cycle driver injured pick-up truck, pk-up/van in traf +C0476778|T037|PT|V13.4|ICD10|Pedal cyclist injured in collision with car, pick-up truck or van, driver, traffic accident|Pedal cyclist injured in collision with car, pick-up truck or van, driver, traffic accident +C2892129|T037|AB|V13.4XXA|ICD10CM|Pedl cyc driver inj pick-up truck, pk-up/van in traf, init|Pedl cyc driver inj pick-up truck, pk-up/van in traf, init +C2892130|T037|AB|V13.4XXD|ICD10CM|Pedl cyc driver inj pick-up truck, pk-up/van in traf, subs|Pedl cyc driver inj pick-up truck, pk-up/van in traf, subs +C2892131|T037|PT|V13.4XXS|ICD10CM|Pedal cycle driver injured in collision with car, pick-up truck or van in traffic accident, sequela|Pedal cycle driver injured in collision with car, pick-up truck or van in traffic accident, sequela +C2892131|T037|AB|V13.4XXS|ICD10CM|Pedl cyc driver inj pk-up truck, pk-up/van in traf, sequela|Pedl cyc driver inj pk-up truck, pk-up/van in traf, sequela +C2892132|T037|HT|V13.5|ICD10CM|Pedal cycle passenger injured in collision with car, pick-up truck or van in traffic accident|Pedal cycle passenger injured in collision with car, pick-up truck or van in traffic accident +C0476779|T037|PT|V13.5|ICD10|Pedal cyclist injured in collision with car, pick-up truck or van, passenger, traffic accident|Pedal cyclist injured in collision with car, pick-up truck or van, passenger, traffic accident +C2892132|T037|AB|V13.5|ICD10CM|Pedl cyc passenger injured pick-up truck, pk-up/van in traf|Pedl cyc passenger injured pick-up truck, pk-up/van in traf +C2892133|T037|AB|V13.5XXA|ICD10CM|Pedl cyc pasngr inj pick-up truck, pk-up/van in traf, init|Pedl cyc pasngr inj pick-up truck, pk-up/van in traf, init +C2892134|T037|AB|V13.5XXD|ICD10CM|Pedl cyc pasngr inj pick-up truck, pk-up/van in traf, subs|Pedl cyc pasngr inj pick-up truck, pk-up/van in traf, subs +C2892135|T037|AB|V13.5XXS|ICD10CM|Pedl cyc pasngr inj pk-up truck, pk-up/van in traf, sequela|Pedl cyc pasngr inj pk-up truck, pk-up/van in traf, sequela +C2892136|T037|AB|V13.9|ICD10CM|Unsp pedal cyclist injured pick-up truck, pk-up/van in traf|Unsp pedal cyclist injured pick-up truck, pk-up/van in traf +C2892136|T037|HT|V13.9|ICD10CM|Unspecified pedal cyclist injured in collision with car, pick-up truck or van in traffic accident|Unspecified pedal cyclist injured in collision with car, pick-up truck or van in traffic accident +C2892137|T037|AB|V13.9XXA|ICD10CM|Unsp pedl cyclst inj pick-up truck, pk-up/van in traf, init|Unsp pedl cyclst inj pick-up truck, pk-up/van in traf, init +C2892138|T037|AB|V13.9XXD|ICD10CM|Unsp pedl cyclst inj pick-up truck, pk-up/van in traf, subs|Unsp pedl cyclst inj pick-up truck, pk-up/van in traf, subs +C2892139|T037|AB|V13.9XXS|ICD10CM|Unsp pedl cyclst inj pk-up truck, pk-up/van in traf, sequela|Unsp pedl cyclst inj pk-up truck, pk-up/van in traf, sequela +C2892140|T037|AB|V14|ICD10CM|Pedal cycle rider injured in collision w hv veh|Pedal cycle rider injured in collision w hv veh +C2892140|T037|HT|V14|ICD10CM|Pedal cycle rider injured in collision with heavy transport vehicle or bus|Pedal cycle rider injured in collision with heavy transport vehicle or bus +C0476781|T037|HT|V14|ICD10|Pedal cyclist injured in collision with heavy transport vehicle or bus|Pedal cyclist injured in collision with heavy transport vehicle or bus +C2892141|T037|AB|V14.0|ICD10CM|Pedal cycle driver injured in collision w hv veh nontraf|Pedal cycle driver injured in collision w hv veh nontraf +C2892141|T037|HT|V14.0|ICD10CM|Pedal cycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident|Pedal cycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident +C0476782|T037|PT|V14.0|ICD10|Pedal cyclist injured in collision with heavy transport vehicle or bus, driver, nontraffic accident|Pedal cyclist injured in collision with heavy transport vehicle or bus, driver, nontraffic accident +C2892142|T037|AB|V14.0XXA|ICD10CM|Pedl cyc driver injured in collision w hv veh nontraf, init|Pedl cyc driver injured in collision w hv veh nontraf, init +C2892143|T037|AB|V14.0XXD|ICD10CM|Pedl cyc driver injured in collision w hv veh nontraf, subs|Pedl cyc driver injured in collision w hv veh nontraf, subs +C2892144|T037|AB|V14.0XXS|ICD10CM|Pedl cyc driver injured in clsn w hv veh nontraf, sequela|Pedl cyc driver injured in clsn w hv veh nontraf, sequela +C2892145|T037|AB|V14.1|ICD10CM|Pedal cycle passenger injured in collision w hv veh nontraf|Pedal cycle passenger injured in collision w hv veh nontraf +C2892146|T037|AB|V14.1XXA|ICD10CM|Pedl cyc passenger injured in clsn w hv veh nontraf, init|Pedl cyc passenger injured in clsn w hv veh nontraf, init +C2892147|T037|AB|V14.1XXD|ICD10CM|Pedl cyc passenger injured in clsn w hv veh nontraf, subs|Pedl cyc passenger injured in clsn w hv veh nontraf, subs +C2892148|T037|AB|V14.1XXS|ICD10CM|Pedl cyc passenger injured in clsn w hv veh nontraf, sequela|Pedl cyc passenger injured in clsn w hv veh nontraf, sequela +C2892149|T037|AB|V14.2|ICD10CM|Unsp pedal cyclist injured in collision w hv veh nontraf|Unsp pedal cyclist injured in collision w hv veh nontraf +C2892150|T037|AB|V14.2XXA|ICD10CM|Unsp pedl cyclst injured in collision w hv veh nontraf, init|Unsp pedl cyclst injured in collision w hv veh nontraf, init +C2892151|T037|AB|V14.2XXD|ICD10CM|Unsp pedl cyclst injured in collision w hv veh nontraf, subs|Unsp pedl cyclst injured in collision w hv veh nontraf, subs +C2892152|T037|AB|V14.2XXS|ICD10CM|Unsp pedl cyclst injured in clsn w hv veh nontraf, sequela|Unsp pedl cyclst injured in clsn w hv veh nontraf, sequela +C0476785|T037|PT|V14.3|ICD10|Pedal cyclist injured in collision with heavy transport vehicle or bus, while boarding or alighting|Pedal cyclist injured in collision with heavy transport vehicle or bus, while boarding or alighting +C2892153|T037|HT|V14.3|ICD10CM|Person boarding or alighting a pedal cycle injured in collision with heavy transport vehicle or bus|Person boarding or alighting a pedal cycle injured in collision with heavy transport vehicle or bus +C2892153|T037|AB|V14.3|ICD10CM|Prsn brd/alit a pedal cycle injured in collision w hv veh|Prsn brd/alit a pedal cycle injured in collision w hv veh +C2892154|T037|AB|V14.3XXA|ICD10CM|Prsn brd/alit pedl cyc injured in collision w hv veh, init|Prsn brd/alit pedl cyc injured in collision w hv veh, init +C2892155|T037|AB|V14.3XXD|ICD10CM|Prsn brd/alit pedl cyc injured in collision w hv veh, subs|Prsn brd/alit pedl cyc injured in collision w hv veh, subs +C2892156|T037|AB|V14.3XXS|ICD10CM|Prsn brd/alit pedl cyc injured in clsn w hv veh, sequela|Prsn brd/alit pedl cyc injured in clsn w hv veh, sequela +C2892157|T037|AB|V14.4|ICD10CM|Pedal cycle driver injured in collision w hv veh in traf|Pedal cycle driver injured in collision w hv veh in traf +C2892157|T037|HT|V14.4|ICD10CM|Pedal cycle driver injured in collision with heavy transport vehicle or bus in traffic accident|Pedal cycle driver injured in collision with heavy transport vehicle or bus in traffic accident +C0476786|T037|PT|V14.4|ICD10|Pedal cyclist injured in collision with heavy transport vehicle or bus, driver, traffic accident|Pedal cyclist injured in collision with heavy transport vehicle or bus, driver, traffic accident +C2892158|T037|AB|V14.4XXA|ICD10CM|Pedl cyc driver injured in collision w hv veh in traf, init|Pedl cyc driver injured in collision w hv veh in traf, init +C2892159|T037|AB|V14.4XXD|ICD10CM|Pedl cyc driver injured in collision w hv veh in traf, subs|Pedl cyc driver injured in collision w hv veh in traf, subs +C2892160|T037|AB|V14.4XXS|ICD10CM|Pedl cyc driver injured in clsn w hv veh in traf, sequela|Pedl cyc driver injured in clsn w hv veh in traf, sequela +C2892161|T037|AB|V14.5|ICD10CM|Pedal cycle passenger injured in collision w hv veh in traf|Pedal cycle passenger injured in collision w hv veh in traf +C2892161|T037|HT|V14.5|ICD10CM|Pedal cycle passenger injured in collision with heavy transport vehicle or bus in traffic accident|Pedal cycle passenger injured in collision with heavy transport vehicle or bus in traffic accident +C0476787|T037|PT|V14.5|ICD10|Pedal cyclist injured in collision with heavy transport vehicle or bus, passenger, traffic accident|Pedal cyclist injured in collision with heavy transport vehicle or bus, passenger, traffic accident +C2892162|T037|AB|V14.5XXA|ICD10CM|Pedl cyc passenger injured in clsn w hv veh in traf, init|Pedl cyc passenger injured in clsn w hv veh in traf, init +C2892163|T037|AB|V14.5XXD|ICD10CM|Pedl cyc passenger injured in clsn w hv veh in traf, subs|Pedl cyc passenger injured in clsn w hv veh in traf, subs +C2892164|T037|AB|V14.5XXS|ICD10CM|Pedl cyc passenger injured in clsn w hv veh in traf, sequela|Pedl cyc passenger injured in clsn w hv veh in traf, sequela +C2892165|T037|AB|V14.9|ICD10CM|Unsp pedal cyclist injured in collision w hv veh in traf|Unsp pedal cyclist injured in collision w hv veh in traf +C2892166|T037|AB|V14.9XXA|ICD10CM|Unsp pedl cyclst injured in collision w hv veh in traf, init|Unsp pedl cyclst injured in collision w hv veh in traf, init +C2892167|T037|AB|V14.9XXD|ICD10CM|Unsp pedl cyclst injured in collision w hv veh in traf, subs|Unsp pedl cyclst injured in collision w hv veh in traf, subs +C2892168|T037|AB|V14.9XXS|ICD10CM|Unsp pedl cyclst injured in clsn w hv veh in traf, sequela|Unsp pedl cyclst injured in clsn w hv veh in traf, sequela +C2892169|T037|AB|V15|ICD10CM|Pedal cycle rider injured in collision w rail trn/veh|Pedal cycle rider injured in collision w rail trn/veh +C2892169|T037|HT|V15|ICD10CM|Pedal cycle rider injured in collision with railway train or railway vehicle|Pedal cycle rider injured in collision with railway train or railway vehicle +C0476789|T037|HT|V15|ICD10|Pedal cyclist injured in collision with railway train or railway vehicle|Pedal cyclist injured in collision with railway train or railway vehicle +C2892170|T037|HT|V15.0|ICD10CM|Pedal cycle driver injured in collision with railway train or railway vehicle in nontraffic accident|Pedal cycle driver injured in collision with railway train or railway vehicle in nontraffic accident +C2892170|T037|AB|V15.0|ICD10CM|Pedl cyc driver injured in collision w rail trn/veh nontraf|Pedl cyc driver injured in collision w rail trn/veh nontraf +C2892171|T037|AB|V15.0XXA|ICD10CM|Pedl cyc driver injured in clsn w rail trn/veh nontraf, init|Pedl cyc driver injured in clsn w rail trn/veh nontraf, init +C2892172|T037|AB|V15.0XXD|ICD10CM|Pedl cyc driver injured in clsn w rail trn/veh nontraf, subs|Pedl cyc driver injured in clsn w rail trn/veh nontraf, subs +C2892173|T037|AB|V15.0XXS|ICD10CM|Pedl cyc driver inj in clsn w rail trn/veh nontraf, sequela|Pedl cyc driver inj in clsn w rail trn/veh nontraf, sequela +C2892174|T037|AB|V15.1|ICD10CM|Pedl cyc passenger injured in clsn w rail trn/veh nontraf|Pedl cyc passenger injured in clsn w rail trn/veh nontraf +C2892175|T037|AB|V15.1XXA|ICD10CM|Pedl cyc pasngr injured in clsn w rail trn/veh nontraf, init|Pedl cyc pasngr injured in clsn w rail trn/veh nontraf, init +C2892176|T037|AB|V15.1XXD|ICD10CM|Pedl cyc pasngr injured in clsn w rail trn/veh nontraf, subs|Pedl cyc pasngr injured in clsn w rail trn/veh nontraf, subs +C2892177|T037|AB|V15.1XXS|ICD10CM|Pedl cyc pasngr inj in clsn w rail trn/veh nontraf, sequela|Pedl cyc pasngr inj in clsn w rail trn/veh nontraf, sequela +C2892178|T037|AB|V15.2|ICD10CM|Unsp pedl cyclst injured in collision w rail trn/veh nontraf|Unsp pedl cyclst injured in collision w rail trn/veh nontraf +C2892179|T037|AB|V15.2XXA|ICD10CM|Unsp pedl cyclst inj in clsn w rail trn/veh nontraf, init|Unsp pedl cyclst inj in clsn w rail trn/veh nontraf, init +C2892180|T037|AB|V15.2XXD|ICD10CM|Unsp pedl cyclst inj in clsn w rail trn/veh nontraf, subs|Unsp pedl cyclst inj in clsn w rail trn/veh nontraf, subs +C2892181|T037|AB|V15.2XXS|ICD10CM|Unsp pedl cyclst inj in clsn w rail trn/veh nontraf, sequela|Unsp pedl cyclst inj in clsn w rail trn/veh nontraf, sequela +C2892182|T037|AB|V15.3|ICD10CM|Prsn brd/alit pedl cyc injured in collision w rail trn/veh|Prsn brd/alit pedl cyc injured in collision w rail trn/veh +C2892183|T037|AB|V15.3XXA|ICD10CM|Prsn brd/alit pedl cyc injured in clsn w rail trn/veh, init|Prsn brd/alit pedl cyc injured in clsn w rail trn/veh, init +C2892184|T037|AB|V15.3XXD|ICD10CM|Prsn brd/alit pedl cyc injured in clsn w rail trn/veh, subs|Prsn brd/alit pedl cyc injured in clsn w rail trn/veh, subs +C2892185|T037|AB|V15.3XXS|ICD10CM|Prsn brd/alit pedl cyc inj in clsn w rail trn/veh, sequela|Prsn brd/alit pedl cyc inj in clsn w rail trn/veh, sequela +C2892186|T037|HT|V15.4|ICD10CM|Pedal cycle driver injured in collision with railway train or railway vehicle in traffic accident|Pedal cycle driver injured in collision with railway train or railway vehicle in traffic accident +C0476794|T037|PT|V15.4|ICD10|Pedal cyclist injured in collision with railway train or railway vehicle, driver, traffic accident|Pedal cyclist injured in collision with railway train or railway vehicle, driver, traffic accident +C2892186|T037|AB|V15.4|ICD10CM|Pedl cyc driver injured in collision w rail trn/veh in traf|Pedl cyc driver injured in collision w rail trn/veh in traf +C2892187|T037|AB|V15.4XXA|ICD10CM|Pedl cyc driver injured in clsn w rail trn/veh in traf, init|Pedl cyc driver injured in clsn w rail trn/veh in traf, init +C2892188|T037|AB|V15.4XXD|ICD10CM|Pedl cyc driver injured in clsn w rail trn/veh in traf, subs|Pedl cyc driver injured in clsn w rail trn/veh in traf, subs +C2892189|T037|AB|V15.4XXS|ICD10CM|Pedl cyc driver inj in clsn w rail trn/veh in traf, sequela|Pedl cyc driver inj in clsn w rail trn/veh in traf, sequela +C2892190|T037|HT|V15.5|ICD10CM|Pedal cycle passenger injured in collision with railway train or railway vehicle in traffic accident|Pedal cycle passenger injured in collision with railway train or railway vehicle in traffic accident +C2892190|T037|AB|V15.5|ICD10CM|Pedl cyc passenger injured in clsn w rail trn/veh in traf|Pedl cyc passenger injured in clsn w rail trn/veh in traf +C2892191|T037|AB|V15.5XXA|ICD10CM|Pedl cyc pasngr injured in clsn w rail trn/veh in traf, init|Pedl cyc pasngr injured in clsn w rail trn/veh in traf, init +C2892192|T037|AB|V15.5XXD|ICD10CM|Pedl cyc pasngr injured in clsn w rail trn/veh in traf, subs|Pedl cyc pasngr injured in clsn w rail trn/veh in traf, subs +C2892193|T037|AB|V15.5XXS|ICD10CM|Pedl cyc pasngr inj in clsn w rail trn/veh in traf, sequela|Pedl cyc pasngr inj in clsn w rail trn/veh in traf, sequela +C2892194|T037|AB|V15.9|ICD10CM|Unsp pedl cyclst injured in collision w rail trn/veh in traf|Unsp pedl cyclst injured in collision w rail trn/veh in traf +C2892195|T037|AB|V15.9XXA|ICD10CM|Unsp pedl cyclst inj in clsn w rail trn/veh in traf, init|Unsp pedl cyclst inj in clsn w rail trn/veh in traf, init +C2892196|T037|AB|V15.9XXD|ICD10CM|Unsp pedl cyclst inj in clsn w rail trn/veh in traf, subs|Unsp pedl cyclst inj in clsn w rail trn/veh in traf, subs +C2892197|T037|AB|V15.9XXS|ICD10CM|Unsp pedl cyclst inj in clsn w rail trn/veh in traf, sequela|Unsp pedl cyclst inj in clsn w rail trn/veh in traf, sequela +C4283916|T037|ET|V16|ICD10CM|collision with animal-drawn vehicle, animal being ridden, streetcar|collision with animal-drawn vehicle, animal being ridden, streetcar +C2892198|T037|AB|V16|ICD10CM|Pedal cycle rider injured in collision w nonmtr vehicle|Pedal cycle rider injured in collision w nonmtr vehicle +C2892198|T037|HT|V16|ICD10CM|Pedal cycle rider injured in collision with other nonmotor vehicle|Pedal cycle rider injured in collision with other nonmotor vehicle +C0476797|T037|HT|V16|ICD10|Pedal cyclist injured in collision with other nonmotor vehicle|Pedal cyclist injured in collision with other nonmotor vehicle +C2892199|T037|HT|V16.0|ICD10CM|Pedal cycle driver injured in collision with other nonmotor vehicle in nontraffic accident|Pedal cycle driver injured in collision with other nonmotor vehicle in nontraffic accident +C0476798|T037|PT|V16.0|ICD10|Pedal cyclist injured in collision with other nonmotor vehicle, driver, nontraffic accident|Pedal cyclist injured in collision with other nonmotor vehicle, driver, nontraffic accident +C2892199|T037|AB|V16.0|ICD10CM|Pedl cyc driver injured in clsn w nonmtr vehicle nontraf|Pedl cyc driver injured in clsn w nonmtr vehicle nontraf +C2892200|T037|AB|V16.0XXA|ICD10CM|Pedl cyc driver inj in clsn w nonmtr vehicle nontraf, init|Pedl cyc driver inj in clsn w nonmtr vehicle nontraf, init +C2892201|T037|AB|V16.0XXD|ICD10CM|Pedl cyc driver inj in clsn w nonmtr vehicle nontraf, subs|Pedl cyc driver inj in clsn w nonmtr vehicle nontraf, subs +C2892202|T037|PT|V16.0XXS|ICD10CM|Pedal cycle driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela|Pedal cycle driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela +C2892202|T037|AB|V16.0XXS|ICD10CM|Pedl cyc driver inj in clsn w nonmtr vehicle nontraf, sqla|Pedl cyc driver inj in clsn w nonmtr vehicle nontraf, sqla +C2892203|T037|HT|V16.1|ICD10CM|Pedal cycle passenger injured in collision with other nonmotor vehicle in nontraffic accident|Pedal cycle passenger injured in collision with other nonmotor vehicle in nontraffic accident +C0476799|T037|PT|V16.1|ICD10|Pedal cyclist injured in collision with other nonmotor vehicle, passenger, nontraffic accident|Pedal cyclist injured in collision with other nonmotor vehicle, passenger, nontraffic accident +C2892203|T037|AB|V16.1|ICD10CM|Pedl cyc passenger injured in clsn w nonmtr vehicle nontraf|Pedl cyc passenger injured in clsn w nonmtr vehicle nontraf +C2892204|T037|AB|V16.1XXA|ICD10CM|Pedl cyc pasngr inj in clsn w nonmtr vehicle nontraf, init|Pedl cyc pasngr inj in clsn w nonmtr vehicle nontraf, init +C2892205|T037|AB|V16.1XXD|ICD10CM|Pedl cyc pasngr inj in clsn w nonmtr vehicle nontraf, subs|Pedl cyc pasngr inj in clsn w nonmtr vehicle nontraf, subs +C2892206|T037|AB|V16.1XXS|ICD10CM|Pedl cyc pasngr inj in clsn w nonmtr vehicle nontraf, sqla|Pedl cyc pasngr inj in clsn w nonmtr vehicle nontraf, sqla +C2892207|T037|AB|V16.2|ICD10CM|Unsp pedl cyclst injured in clsn w nonmtr vehicle nontraf|Unsp pedl cyclst injured in clsn w nonmtr vehicle nontraf +C2892207|T037|HT|V16.2|ICD10CM|Unspecified pedal cyclist injured in collision with other nonmotor vehicle in nontraffic accident|Unspecified pedal cyclist injured in collision with other nonmotor vehicle in nontraffic accident +C2892208|T037|AB|V16.2XXA|ICD10CM|Unsp pedl cyclst inj in clsn w nonmtr vehicle nontraf, init|Unsp pedl cyclst inj in clsn w nonmtr vehicle nontraf, init +C2892209|T037|AB|V16.2XXD|ICD10CM|Unsp pedl cyclst inj in clsn w nonmtr vehicle nontraf, subs|Unsp pedl cyclst inj in clsn w nonmtr vehicle nontraf, subs +C2892210|T037|AB|V16.2XXS|ICD10CM|Unsp pedl cyclst inj in clsn w nonmtr vehicle nontraf, sqla|Unsp pedl cyclst inj in clsn w nonmtr vehicle nontraf, sqla +C0476801|T037|PT|V16.3|ICD10|Pedal cyclist injured in collision with other nonmotor vehicle, while boarding or alighting|Pedal cyclist injured in collision with other nonmotor vehicle, while boarding or alighting +C2892211|T037|AB|V16.3|ICD10CM|Prsn brd/alit pedl cyc inj in clsn w nonmtr vehicle nontraf|Prsn brd/alit pedl cyc inj in clsn w nonmtr vehicle nontraf +C2892212|T037|AB|V16.3XXA|ICD10CM|Prsn brd/alit pedl cyc inj in clsn w nonmtr veh nontraf,init|Prsn brd/alit pedl cyc inj in clsn w nonmtr veh nontraf,init +C2892213|T037|AB|V16.3XXD|ICD10CM|Prsn brd/alit pedl cyc inj in clsn w nonmtr veh nontraf,subs|Prsn brd/alit pedl cyc inj in clsn w nonmtr veh nontraf,subs +C2892214|T037|AB|V16.3XXS|ICD10CM|Prsn brd/alit pedl cyc inj in clsn w nonmtr veh nontraf,sqla|Prsn brd/alit pedl cyc inj in clsn w nonmtr veh nontraf,sqla +C2892215|T037|HT|V16.4|ICD10CM|Pedal cycle driver injured in collision with other nonmotor vehicle in traffic accident|Pedal cycle driver injured in collision with other nonmotor vehicle in traffic accident +C0476802|T037|PT|V16.4|ICD10|Pedal cyclist injured in collision with other nonmotor vehicle, driver, traffic accident|Pedal cyclist injured in collision with other nonmotor vehicle, driver, traffic accident +C2892215|T037|AB|V16.4|ICD10CM|Pedl cyc driver injured in clsn w nonmtr vehicle in traf|Pedl cyc driver injured in clsn w nonmtr vehicle in traf +C2892216|T037|AB|V16.4XXA|ICD10CM|Pedl cyc driver inj in clsn w nonmtr vehicle in traf, init|Pedl cyc driver inj in clsn w nonmtr vehicle in traf, init +C2892217|T037|AB|V16.4XXD|ICD10CM|Pedl cyc driver inj in clsn w nonmtr vehicle in traf, subs|Pedl cyc driver inj in clsn w nonmtr vehicle in traf, subs +C2892218|T037|PT|V16.4XXS|ICD10CM|Pedal cycle driver injured in collision with other nonmotor vehicle in traffic accident, sequela|Pedal cycle driver injured in collision with other nonmotor vehicle in traffic accident, sequela +C2892218|T037|AB|V16.4XXS|ICD10CM|Pedl cyc driver inj in clsn w nonmtr vehicle in traf, sqla|Pedl cyc driver inj in clsn w nonmtr vehicle in traf, sqla +C2892219|T037|HT|V16.5|ICD10CM|Pedal cycle passenger injured in collision with other nonmotor vehicle in traffic accident|Pedal cycle passenger injured in collision with other nonmotor vehicle in traffic accident +C0476803|T037|PT|V16.5|ICD10|Pedal cyclist injured in collision with other nonmotor vehicle, passenger, traffic accident|Pedal cyclist injured in collision with other nonmotor vehicle, passenger, traffic accident +C2892219|T037|AB|V16.5|ICD10CM|Pedl cyc passenger injured in clsn w nonmtr vehicle in traf|Pedl cyc passenger injured in clsn w nonmtr vehicle in traf +C2892220|T037|AB|V16.5XXA|ICD10CM|Pedl cyc pasngr inj in clsn w nonmtr vehicle in traf, init|Pedl cyc pasngr inj in clsn w nonmtr vehicle in traf, init +C2892221|T037|AB|V16.5XXD|ICD10CM|Pedl cyc pasngr inj in clsn w nonmtr vehicle in traf, subs|Pedl cyc pasngr inj in clsn w nonmtr vehicle in traf, subs +C2892222|T037|PT|V16.5XXS|ICD10CM|Pedal cycle passenger injured in collision with other nonmotor vehicle in traffic accident, sequela|Pedal cycle passenger injured in collision with other nonmotor vehicle in traffic accident, sequela +C2892222|T037|AB|V16.5XXS|ICD10CM|Pedl cyc pasngr inj in clsn w nonmtr vehicle in traf, sqla|Pedl cyc pasngr inj in clsn w nonmtr vehicle in traf, sqla +C2892223|T037|AB|V16.9|ICD10CM|Unsp pedl cyclst injured in clsn w nonmtr vehicle in traf|Unsp pedl cyclst injured in clsn w nonmtr vehicle in traf +C2892223|T037|HT|V16.9|ICD10CM|Unspecified pedal cyclist injured in collision with other nonmotor vehicle in traffic accident|Unspecified pedal cyclist injured in collision with other nonmotor vehicle in traffic accident +C2892224|T037|AB|V16.9XXA|ICD10CM|Unsp pedl cyclst inj in clsn w nonmtr vehicle in traf, init|Unsp pedl cyclst inj in clsn w nonmtr vehicle in traf, init +C2892225|T037|AB|V16.9XXD|ICD10CM|Unsp pedl cyclst inj in clsn w nonmtr vehicle in traf, subs|Unsp pedl cyclst inj in clsn w nonmtr vehicle in traf, subs +C2892226|T037|AB|V16.9XXS|ICD10CM|Unsp pedl cyclst inj in clsn w nonmtr vehicle in traf, sqla|Unsp pedl cyclst inj in clsn w nonmtr vehicle in traf, sqla +C2892227|T037|AB|V17|ICD10CM|Pedal cycle rider injured in collision w statnry object|Pedal cycle rider injured in collision w statnry object +C2892227|T037|HT|V17|ICD10CM|Pedal cycle rider injured in collision with fixed or stationary object|Pedal cycle rider injured in collision with fixed or stationary object +C0476805|T037|HT|V17|ICD10|Pedal cyclist injured in collision with fixed or stationary object|Pedal cyclist injured in collision with fixed or stationary object +C2892228|T037|HT|V17.0|ICD10CM|Pedal cycle driver injured in collision with fixed or stationary object in nontraffic accident|Pedal cycle driver injured in collision with fixed or stationary object in nontraffic accident +C0476806|T037|PT|V17.0|ICD10|Pedal cyclist injured in collision with fixed or stationary object, driver, nontraffic accident|Pedal cyclist injured in collision with fixed or stationary object, driver, nontraffic accident +C2892228|T037|AB|V17.0|ICD10CM|Pedl cyc driver injured in clsn w statnry object nontraf|Pedl cyc driver injured in clsn w statnry object nontraf +C2892229|T037|AB|V17.0XXA|ICD10CM|Pedl cyc driver inj in clsn w statnry object nontraf, init|Pedl cyc driver inj in clsn w statnry object nontraf, init +C2892230|T037|AB|V17.0XXD|ICD10CM|Pedl cyc driver inj in clsn w statnry object nontraf, subs|Pedl cyc driver inj in clsn w statnry object nontraf, subs +C2892231|T037|AB|V17.0XXS|ICD10CM|Pedl cyc driver inj in clsn w statnry object nontraf, sqla|Pedl cyc driver inj in clsn w statnry object nontraf, sqla +C2892232|T037|HT|V17.1|ICD10CM|Pedal cycle passenger injured in collision with fixed or stationary object in nontraffic accident|Pedal cycle passenger injured in collision with fixed or stationary object in nontraffic accident +C0476807|T037|PT|V17.1|ICD10|Pedal cyclist injured in collision with fixed or stationary object, passenger, nontraffic accident|Pedal cyclist injured in collision with fixed or stationary object, passenger, nontraffic accident +C2892232|T037|AB|V17.1|ICD10CM|Pedl cyc passenger injured in clsn w statnry object nontraf|Pedl cyc passenger injured in clsn w statnry object nontraf +C2892233|T037|AB|V17.1XXA|ICD10CM|Pedl cyc pasngr inj in clsn w statnry object nontraf, init|Pedl cyc pasngr inj in clsn w statnry object nontraf, init +C2892234|T037|AB|V17.1XXD|ICD10CM|Pedl cyc pasngr inj in clsn w statnry object nontraf, subs|Pedl cyc pasngr inj in clsn w statnry object nontraf, subs +C2892235|T037|AB|V17.1XXS|ICD10CM|Pedl cyc pasngr inj in clsn w statnry object nontraf, sqla|Pedl cyc pasngr inj in clsn w statnry object nontraf, sqla +C2892236|T037|AB|V17.2|ICD10CM|Unsp pedl cyclst injured in clsn w statnry object nontraf|Unsp pedl cyclst injured in clsn w statnry object nontraf +C2892237|T037|AB|V17.2XXA|ICD10CM|Unsp pedl cyclst inj in clsn w statnry object nontraf, init|Unsp pedl cyclst inj in clsn w statnry object nontraf, init +C2892238|T037|AB|V17.2XXD|ICD10CM|Unsp pedl cyclst inj in clsn w statnry object nontraf, subs|Unsp pedl cyclst inj in clsn w statnry object nontraf, subs +C2892239|T037|AB|V17.2XXS|ICD10CM|Unsp pedl cyclst inj in clsn w statnry object nontraf, sqla|Unsp pedl cyclst inj in clsn w statnry object nontraf, sqla +C0476809|T037|PT|V17.3|ICD10|Pedal cyclist injured in collision with fixed or stationary object, while boarding or alighting|Pedal cyclist injured in collision with fixed or stationary object, while boarding or alighting +C2892240|T037|HT|V17.3|ICD10CM|Person boarding or alighting a pedal cycle injured in collision with fixed or stationary object|Person boarding or alighting a pedal cycle injured in collision with fixed or stationary object +C2892240|T037|AB|V17.3|ICD10CM|Prsn brd/alit pedl cyc injured in collision w statnry object|Prsn brd/alit pedl cyc injured in collision w statnry object +C2892241|T037|AB|V17.3XXA|ICD10CM|Prsn brd/alit pedl cyc inj in clsn w statnry object, init|Prsn brd/alit pedl cyc inj in clsn w statnry object, init +C2892242|T037|AB|V17.3XXD|ICD10CM|Prsn brd/alit pedl cyc inj in clsn w statnry object, subs|Prsn brd/alit pedl cyc inj in clsn w statnry object, subs +C2892243|T037|AB|V17.3XXS|ICD10CM|Prsn brd/alit pedl cyc inj in clsn w statnry object, sequela|Prsn brd/alit pedl cyc inj in clsn w statnry object, sequela +C2892244|T037|HT|V17.4|ICD10CM|Pedal cycle driver injured in collision with fixed or stationary object in traffic accident|Pedal cycle driver injured in collision with fixed or stationary object in traffic accident +C0476810|T037|PT|V17.4|ICD10|Pedal cyclist injured in collision with fixed or stationary object, driver, traffic accident|Pedal cyclist injured in collision with fixed or stationary object, driver, traffic accident +C2892244|T037|AB|V17.4|ICD10CM|Pedl cyc driver injured in clsn w statnry object in traf|Pedl cyc driver injured in clsn w statnry object in traf +C2892245|T037|AB|V17.4XXA|ICD10CM|Pedl cyc driver inj in clsn w statnry object in traf, init|Pedl cyc driver inj in clsn w statnry object in traf, init +C2892246|T037|AB|V17.4XXD|ICD10CM|Pedl cyc driver inj in clsn w statnry object in traf, subs|Pedl cyc driver inj in clsn w statnry object in traf, subs +C2892247|T037|PT|V17.4XXS|ICD10CM|Pedal cycle driver injured in collision with fixed or stationary object in traffic accident, sequela|Pedal cycle driver injured in collision with fixed or stationary object in traffic accident, sequela +C2892247|T037|AB|V17.4XXS|ICD10CM|Pedl cyc driver inj in clsn w statnry object in traf, sqla|Pedl cyc driver inj in clsn w statnry object in traf, sqla +C2892248|T037|HT|V17.5|ICD10CM|Pedal cycle passenger injured in collision with fixed or stationary object in traffic accident|Pedal cycle passenger injured in collision with fixed or stationary object in traffic accident +C0476811|T037|PT|V17.5|ICD10|Pedal cyclist injured in collision with fixed or stationary object, passenger, traffic accident|Pedal cyclist injured in collision with fixed or stationary object, passenger, traffic accident +C2892248|T037|AB|V17.5|ICD10CM|Pedl cyc passenger injured in clsn w statnry object in traf|Pedl cyc passenger injured in clsn w statnry object in traf +C2892249|T037|AB|V17.5XXA|ICD10CM|Pedl cyc pasngr inj in clsn w statnry object in traf, init|Pedl cyc pasngr inj in clsn w statnry object in traf, init +C2892250|T037|AB|V17.5XXD|ICD10CM|Pedl cyc pasngr inj in clsn w statnry object in traf, subs|Pedl cyc pasngr inj in clsn w statnry object in traf, subs +C2892251|T037|AB|V17.5XXS|ICD10CM|Pedl cyc pasngr inj in clsn w statnry object in traf, sqla|Pedl cyc pasngr inj in clsn w statnry object in traf, sqla +C2892252|T037|AB|V17.9|ICD10CM|Unsp pedl cyclst injured in clsn w statnry object in traf|Unsp pedl cyclst injured in clsn w statnry object in traf +C2892252|T037|HT|V17.9|ICD10CM|Unspecified pedal cyclist injured in collision with fixed or stationary object in traffic accident|Unspecified pedal cyclist injured in collision with fixed or stationary object in traffic accident +C2892253|T037|AB|V17.9XXA|ICD10CM|Unsp pedl cyclst inj in clsn w statnry object in traf, init|Unsp pedl cyclst inj in clsn w statnry object in traf, init +C2892254|T037|AB|V17.9XXD|ICD10CM|Unsp pedl cyclst inj in clsn w statnry object in traf, subs|Unsp pedl cyclst inj in clsn w statnry object in traf, subs +C2892255|T037|AB|V17.9XXS|ICD10CM|Unsp pedl cyclst inj in clsn w statnry object in traf, sqla|Unsp pedl cyclst inj in clsn w statnry object in traf, sqla +C4290416|T037|ET|V18|ICD10CM|fall or thrown from pedal cycle (without antecedent collision)|fall or thrown from pedal cycle (without antecedent collision) +C4290417|T037|ET|V18|ICD10CM|overturning pedal cycle NOS|overturning pedal cycle NOS +C4290418|T037|ET|V18|ICD10CM|overturning pedal cycle without collision|overturning pedal cycle without collision +C2892259|T037|HT|V18|ICD10CM|Pedal cycle rider injured in noncollision transport accident|Pedal cycle rider injured in noncollision transport accident +C2892259|T037|AB|V18|ICD10CM|Pedal cycle rider injured in noncollision transport accident|Pedal cycle rider injured in noncollision transport accident +C0476813|T037|HT|V18|ICD10|Pedal cyclist injured in noncollision transport accident|Pedal cyclist injured in noncollision transport accident +C2892260|T037|HT|V18.0|ICD10CM|Pedal cycle driver injured in noncollision transport accident in nontraffic accident|Pedal cycle driver injured in noncollision transport accident in nontraffic accident +C0476814|T037|PT|V18.0|ICD10|Pedal cyclist injured in noncollision transport accident, driver, nontraffic accident|Pedal cyclist injured in noncollision transport accident, driver, nontraffic accident +C2892260|T037|AB|V18.0|ICD10CM|Pedl cyc driver injured in nonclsn trnsp accident nontraf|Pedl cyc driver injured in nonclsn trnsp accident nontraf +C2892261|T037|AB|V18.0XXA|ICD10CM|Pedl cyc driver injured in nonclsn trnsp acc nontraf, init|Pedl cyc driver injured in nonclsn trnsp acc nontraf, init +C2892262|T037|AB|V18.0XXD|ICD10CM|Pedl cyc driver injured in nonclsn trnsp acc nontraf, subs|Pedl cyc driver injured in nonclsn trnsp acc nontraf, subs +C2892263|T037|PT|V18.0XXS|ICD10CM|Pedal cycle driver injured in noncollision transport accident in nontraffic accident, sequela|Pedal cycle driver injured in noncollision transport accident in nontraffic accident, sequela +C2892263|T037|AB|V18.0XXS|ICD10CM|Pedl cyc driver inj in nonclsn trnsp acc nontraf, sequela|Pedl cyc driver inj in nonclsn trnsp acc nontraf, sequela +C2892264|T037|HT|V18.1|ICD10CM|Pedal cycle passenger injured in noncollision transport accident in nontraffic accident|Pedal cycle passenger injured in noncollision transport accident in nontraffic accident +C0476815|T037|PT|V18.1|ICD10|Pedal cyclist injured in noncollision transport accident, passenger, nontraffic accident|Pedal cyclist injured in noncollision transport accident, passenger, nontraffic accident +C2892264|T037|AB|V18.1|ICD10CM|Pedl cyc pasngr injured in nonclsn trnsp accident nontraf|Pedl cyc pasngr injured in nonclsn trnsp accident nontraf +C2892265|T037|AB|V18.1XXA|ICD10CM|Pedl cyc pasngr injured in nonclsn trnsp acc nontraf, init|Pedl cyc pasngr injured in nonclsn trnsp acc nontraf, init +C2892266|T037|AB|V18.1XXD|ICD10CM|Pedl cyc pasngr injured in nonclsn trnsp acc nontraf, subs|Pedl cyc pasngr injured in nonclsn trnsp acc nontraf, subs +C2892267|T037|PT|V18.1XXS|ICD10CM|Pedal cycle passenger injured in noncollision transport accident in nontraffic accident, sequela|Pedal cycle passenger injured in noncollision transport accident in nontraffic accident, sequela +C2892267|T037|AB|V18.1XXS|ICD10CM|Pedl cyc pasngr inj in nonclsn trnsp acc nontraf, sequela|Pedl cyc pasngr inj in nonclsn trnsp acc nontraf, sequela +C2892268|T037|AB|V18.2|ICD10CM|Unsp pedl cyclst injured in nonclsn trnsp accident nontraf|Unsp pedl cyclst injured in nonclsn trnsp accident nontraf +C2892268|T037|HT|V18.2|ICD10CM|Unspecified pedal cyclist injured in noncollision transport accident in nontraffic accident|Unspecified pedal cyclist injured in noncollision transport accident in nontraffic accident +C2892269|T037|AB|V18.2XXA|ICD10CM|Unsp pedl cyclst injured in nonclsn trnsp acc nontraf, init|Unsp pedl cyclst injured in nonclsn trnsp acc nontraf, init +C2892270|T037|AB|V18.2XXD|ICD10CM|Unsp pedl cyclst injured in nonclsn trnsp acc nontraf, subs|Unsp pedl cyclst injured in nonclsn trnsp acc nontraf, subs +C2892271|T037|AB|V18.2XXS|ICD10CM|Unsp pedl cyclst inj in nonclsn trnsp acc nontraf, sequela|Unsp pedl cyclst inj in nonclsn trnsp acc nontraf, sequela +C2892271|T037|PT|V18.2XXS|ICD10CM|Unspecified pedal cyclist injured in noncollision transport accident in nontraffic accident, sequela|Unspecified pedal cyclist injured in noncollision transport accident in nontraffic accident, sequela +C0476817|T037|PT|V18.3|ICD10|Pedal cyclist injured in noncollision transport accident, while boarding or alighting|Pedal cyclist injured in noncollision transport accident, while boarding or alighting +C2892272|T037|HT|V18.3|ICD10CM|Person boarding or alighting a pedal cycle injured in noncollision transport accident|Person boarding or alighting a pedal cycle injured in noncollision transport accident +C2892272|T037|AB|V18.3|ICD10CM|Prsn brd/alit pedl cyc injured in nonclsn transport accident|Prsn brd/alit pedl cyc injured in nonclsn transport accident +C2892273|T037|AB|V18.3XXA|ICD10CM|Prsn brd/alit pedl cyc injured in nonclsn trnsp acc, init|Prsn brd/alit pedl cyc injured in nonclsn trnsp acc, init +C2892274|T037|AB|V18.3XXD|ICD10CM|Prsn brd/alit pedl cyc injured in nonclsn trnsp acc, subs|Prsn brd/alit pedl cyc injured in nonclsn trnsp acc, subs +C2892275|T037|PT|V18.3XXS|ICD10CM|Person boarding or alighting a pedal cycle injured in noncollision transport accident, sequela|Person boarding or alighting a pedal cycle injured in noncollision transport accident, sequela +C2892275|T037|AB|V18.3XXS|ICD10CM|Prsn brd/alit pedl cyc injured in nonclsn trnsp acc, sequela|Prsn brd/alit pedl cyc injured in nonclsn trnsp acc, sequela +C2892276|T037|HT|V18.4|ICD10CM|Pedal cycle driver injured in noncollision transport accident in traffic accident|Pedal cycle driver injured in noncollision transport accident in traffic accident +C0543415|T037|PT|V18.4|ICD10|Pedal cyclist injured in noncollision transport accident, driver, traffic accident|Pedal cyclist injured in noncollision transport accident, driver, traffic accident +C2892276|T037|AB|V18.4|ICD10CM|Pedl cyc driver injured in nonclsn trnsp accident in traf|Pedl cyc driver injured in nonclsn trnsp accident in traf +C2892277|T037|PT|V18.4XXA|ICD10CM|Pedal cycle driver injured in noncollision transport accident in traffic accident, initial encounter|Pedal cycle driver injured in noncollision transport accident in traffic accident, initial encounter +C2892277|T037|AB|V18.4XXA|ICD10CM|Pedl cyc driver injured in nonclsn trnsp acc in traf, init|Pedl cyc driver injured in nonclsn trnsp acc in traf, init +C2892278|T037|AB|V18.4XXD|ICD10CM|Pedl cyc driver injured in nonclsn trnsp acc in traf, subs|Pedl cyc driver injured in nonclsn trnsp acc in traf, subs +C2892279|T037|PT|V18.4XXS|ICD10CM|Pedal cycle driver injured in noncollision transport accident in traffic accident, sequela|Pedal cycle driver injured in noncollision transport accident in traffic accident, sequela +C2892279|T037|AB|V18.4XXS|ICD10CM|Pedl cyc driver inj in nonclsn trnsp acc in traf, sequela|Pedl cyc driver inj in nonclsn trnsp acc in traf, sequela +C2892280|T037|HT|V18.5|ICD10CM|Pedal cycle passenger injured in noncollision transport accident in traffic accident|Pedal cycle passenger injured in noncollision transport accident in traffic accident +C0476819|T037|PT|V18.5|ICD10|Pedal cyclist injured in noncollision transport accident, passenger, traffic accident|Pedal cyclist injured in noncollision transport accident, passenger, traffic accident +C2892280|T037|AB|V18.5|ICD10CM|Pedl cyc pasngr injured in nonclsn trnsp accident in traf|Pedl cyc pasngr injured in nonclsn trnsp accident in traf +C2892281|T037|AB|V18.5XXA|ICD10CM|Pedl cyc pasngr injured in nonclsn trnsp acc in traf, init|Pedl cyc pasngr injured in nonclsn trnsp acc in traf, init +C2892282|T037|AB|V18.5XXD|ICD10CM|Pedl cyc pasngr injured in nonclsn trnsp acc in traf, subs|Pedl cyc pasngr injured in nonclsn trnsp acc in traf, subs +C2892283|T037|PT|V18.5XXS|ICD10CM|Pedal cycle passenger injured in noncollision transport accident in traffic accident, sequela|Pedal cycle passenger injured in noncollision transport accident in traffic accident, sequela +C2892283|T037|AB|V18.5XXS|ICD10CM|Pedl cyc pasngr inj in nonclsn trnsp acc in traf, sequela|Pedl cyc pasngr inj in nonclsn trnsp acc in traf, sequela +C2892284|T037|AB|V18.9|ICD10CM|Unsp pedl cyclst injured in nonclsn trnsp accident in traf|Unsp pedl cyclst injured in nonclsn trnsp accident in traf +C2892284|T037|HT|V18.9|ICD10CM|Unspecified pedal cyclist injured in noncollision transport accident in traffic accident|Unspecified pedal cyclist injured in noncollision transport accident in traffic accident +C2892285|T037|AB|V18.9XXA|ICD10CM|Unsp pedl cyclst injured in nonclsn trnsp acc in traf, init|Unsp pedl cyclst injured in nonclsn trnsp acc in traf, init +C2892286|T037|AB|V18.9XXD|ICD10CM|Unsp pedl cyclst injured in nonclsn trnsp acc in traf, subs|Unsp pedl cyclst injured in nonclsn trnsp acc in traf, subs +C2892287|T037|AB|V18.9XXS|ICD10CM|Unsp pedl cyclst inj in nonclsn trnsp acc in traf, sequela|Unsp pedl cyclst inj in nonclsn trnsp acc in traf, sequela +C2892287|T037|PT|V18.9XXS|ICD10CM|Unspecified pedal cyclist injured in noncollision transport accident in traffic accident, sequela|Unspecified pedal cyclist injured in noncollision transport accident in traffic accident, sequela +C2892288|T037|HT|V19|ICD10CM|Pedal cycle rider injured in other and unspecified transport accidents|Pedal cycle rider injured in other and unspecified transport accidents +C0476821|T037|HT|V19|ICD10|Pedal cyclist injured in other and unspecified transport accidents|Pedal cyclist injured in other and unspecified transport accidents +C2892288|T037|AB|V19|ICD10CM|Pedl cyc rider injured in oth and unsp transport accidents|Pedl cyc rider injured in oth and unsp transport accidents +C0476822|T037|PT|V19.0|ICD10|Driver injured in collision with other and unspecified motor vehicles in nontraffic accident|Driver injured in collision with other and unspecified motor vehicles in nontraffic accident +C0476822|T037|AB|V19.0|ICD10CM|Pedl cyc driver injured in clsn w oth and unsp mv nontraf|Pedl cyc driver injured in clsn w oth and unsp mv nontraf +C2892289|T037|AB|V19.00|ICD10CM|Pedal cycle driver injured in collision w unsp mv nontraf|Pedal cycle driver injured in collision w unsp mv nontraf +C2892289|T037|HT|V19.00|ICD10CM|Pedal cycle driver injured in collision with unspecified motor vehicles in nontraffic accident|Pedal cycle driver injured in collision with unspecified motor vehicles in nontraffic accident +C2892290|T037|AB|V19.00XA|ICD10CM|Pedl cyc driver injured in collision w unsp mv nontraf, init|Pedl cyc driver injured in collision w unsp mv nontraf, init +C2892291|T037|AB|V19.00XD|ICD10CM|Pedl cyc driver injured in collision w unsp mv nontraf, subs|Pedl cyc driver injured in collision w unsp mv nontraf, subs +C2892292|T037|AB|V19.00XS|ICD10CM|Pedl cyc driver injured in clsn w unsp mv nontraf, sequela|Pedl cyc driver injured in clsn w unsp mv nontraf, sequela +C2892293|T037|AB|V19.09|ICD10CM|Pedal cycle driver injured in collision w oth mv nontraf|Pedal cycle driver injured in collision w oth mv nontraf +C2892293|T037|HT|V19.09|ICD10CM|Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident|Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident +C2892294|T037|AB|V19.09XA|ICD10CM|Pedl cyc driver injured in collision w oth mv nontraf, init|Pedl cyc driver injured in collision w oth mv nontraf, init +C2892295|T037|AB|V19.09XD|ICD10CM|Pedl cyc driver injured in collision w oth mv nontraf, subs|Pedl cyc driver injured in collision w oth mv nontraf, subs +C2892296|T037|PT|V19.09XS|ICD10CM|Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident, sequela|Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident, sequela +C2892296|T037|AB|V19.09XS|ICD10CM|Pedl cyc driver injured in clsn w oth mv nontraf, sequela|Pedl cyc driver injured in clsn w oth mv nontraf, sequela +C0476823|T037|PT|V19.1|ICD10|Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident|Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident +C0476823|T037|AB|V19.1|ICD10CM|Pedl cyc passenger injured in clsn w oth and unsp mv nontraf|Pedl cyc passenger injured in clsn w oth and unsp mv nontraf +C2892297|T037|AB|V19.10|ICD10CM|Pedal cycle passenger injured in collision w unsp mv nontraf|Pedal cycle passenger injured in collision w unsp mv nontraf +C2892297|T037|HT|V19.10|ICD10CM|Pedal cycle passenger injured in collision with unspecified motor vehicles in nontraffic accident|Pedal cycle passenger injured in collision with unspecified motor vehicles in nontraffic accident +C2892298|T037|AB|V19.10XA|ICD10CM|Pedl cyc passenger injured in clsn w unsp mv nontraf, init|Pedl cyc passenger injured in clsn w unsp mv nontraf, init +C2892299|T037|AB|V19.10XD|ICD10CM|Pedl cyc passenger injured in clsn w unsp mv nontraf, subs|Pedl cyc passenger injured in clsn w unsp mv nontraf, subs +C2892300|T037|AB|V19.10XS|ICD10CM|Pedl cyc pasngr injured in clsn w unsp mv nontraf, sequela|Pedl cyc pasngr injured in clsn w unsp mv nontraf, sequela +C2892301|T037|AB|V19.19|ICD10CM|Pedal cycle passenger injured in collision w oth mv nontraf|Pedal cycle passenger injured in collision w oth mv nontraf +C2892301|T037|HT|V19.19|ICD10CM|Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident|Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident +C2892302|T037|AB|V19.19XA|ICD10CM|Pedl cyc passenger injured in clsn w oth mv nontraf, init|Pedl cyc passenger injured in clsn w oth mv nontraf, init +C2892303|T037|AB|V19.19XD|ICD10CM|Pedl cyc passenger injured in clsn w oth mv nontraf, subs|Pedl cyc passenger injured in clsn w oth mv nontraf, subs +C2892304|T037|PT|V19.19XS|ICD10CM|Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident, sequela|Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident, sequela +C2892304|T037|AB|V19.19XS|ICD10CM|Pedl cyc passenger injured in clsn w oth mv nontraf, sequela|Pedl cyc passenger injured in clsn w oth mv nontraf, sequela +C0476824|T037|AB|V19.2|ICD10CM|Unsp pedl cyclst injured in clsn w oth and unsp mv nontraf|Unsp pedl cyclst injured in clsn w oth and unsp mv nontraf +C2892305|T037|ET|V19.20|ICD10CM|Pedal cycle collision NOS, nontraffic|Pedal cycle collision NOS, nontraffic +C2892306|T037|AB|V19.20|ICD10CM|Unsp pedal cyclist injured in collision w unsp mv nontraf|Unsp pedal cyclist injured in collision w unsp mv nontraf +C2892307|T037|AB|V19.20XA|ICD10CM|Unsp pedl cyclst injured in clsn w unsp mv nontraf, init|Unsp pedl cyclst injured in clsn w unsp mv nontraf, init +C2892308|T037|AB|V19.20XD|ICD10CM|Unsp pedl cyclst injured in clsn w unsp mv nontraf, subs|Unsp pedl cyclst injured in clsn w unsp mv nontraf, subs +C2892309|T037|AB|V19.20XS|ICD10CM|Unsp pedl cyclst injured in clsn w unsp mv nontraf, sequela|Unsp pedl cyclst injured in clsn w unsp mv nontraf, sequela +C2911659|T037|AB|V19.29|ICD10CM|Unsp pedal cyclist injured in collision w oth mv nontraf|Unsp pedal cyclist injured in collision w oth mv nontraf +C2911659|T037|HT|V19.29|ICD10CM|Unspecified pedal cyclist injured in collision with other motor vehicles in nontraffic accident|Unspecified pedal cyclist injured in collision with other motor vehicles in nontraffic accident +C2892310|T037|AB|V19.29XA|ICD10CM|Unsp pedl cyclst injured in collision w oth mv nontraf, init|Unsp pedl cyclst injured in collision w oth mv nontraf, init +C2892311|T037|AB|V19.29XD|ICD10CM|Unsp pedl cyclst injured in collision w oth mv nontraf, subs|Unsp pedl cyclst injured in collision w oth mv nontraf, subs +C2892312|T037|AB|V19.29XS|ICD10CM|Unsp pedl cyclst injured in clsn w oth mv nontraf, sequela|Unsp pedl cyclst injured in clsn w oth mv nontraf, sequela +C2892313|T037|ET|V19.3|ICD10CM|Pedal cycle accident NOS, nontraffic|Pedal cycle accident NOS, nontraffic +C2892315|T033|AB|V19.3|ICD10CM|Pedal cyclist (driver) (passenger) injured in unsp nontraf|Pedal cyclist (driver) (passenger) injured in unsp nontraf +C2892315|T033|HT|V19.3|ICD10CM|Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident|Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident +C0476825|T037|PT|V19.3|ICD10|Pedal cyclist [any] injured in unspecified nontraffic accident|Pedal cyclist [any] injured in unspecified nontraffic accident +C2892315|T033|ET|V19.3|ICD10CM|Pedal cyclist injured in nontraffic accident NOS|Pedal cyclist injured in nontraffic accident NOS +C2892316|T037|PT|V19.3XXA|ICD10CM|Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident, initial encounter|Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident, initial encounter +C2892316|T037|AB|V19.3XXA|ICD10CM|Pedl cyclst (driver) injured in unsp nontraf, init|Pedl cyclst (driver) injured in unsp nontraf, init +C2892317|T037|PT|V19.3XXD|ICD10CM|Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter|Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter +C2892317|T037|AB|V19.3XXD|ICD10CM|Pedl cyclst (driver) injured in unsp nontraf, subs|Pedl cyclst (driver) injured in unsp nontraf, subs +C2892318|T037|PT|V19.3XXS|ICD10CM|Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident, sequela|Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident, sequela +C2892318|T037|AB|V19.3XXS|ICD10CM|Pedl cyclst (driver) injured in unsp nontraf, sequela|Pedl cyclst (driver) injured in unsp nontraf, sequela +C0476826|T037|PT|V19.4|ICD10|Driver injured in collision with other and unspecified motor vehicles in traffic accident|Driver injured in collision with other and unspecified motor vehicles in traffic accident +C0476826|T037|AB|V19.4|ICD10CM|Pedl cyc driver injured in clsn w oth and unsp mv in traf|Pedl cyc driver injured in clsn w oth and unsp mv in traf +C2892319|T037|AB|V19.40|ICD10CM|Pedal cycle driver injured in collision w unsp mv in traf|Pedal cycle driver injured in collision w unsp mv in traf +C2892319|T037|HT|V19.40|ICD10CM|Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident|Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident +C2892320|T037|AB|V19.40XA|ICD10CM|Pedl cyc driver injured in collision w unsp mv in traf, init|Pedl cyc driver injured in collision w unsp mv in traf, init +C2892321|T037|AB|V19.40XD|ICD10CM|Pedl cyc driver injured in collision w unsp mv in traf, subs|Pedl cyc driver injured in collision w unsp mv in traf, subs +C2892322|T037|PT|V19.40XS|ICD10CM|Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident, sequela|Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident, sequela +C2892322|T037|AB|V19.40XS|ICD10CM|Pedl cyc driver injured in clsn w unsp mv in traf, sequela|Pedl cyc driver injured in clsn w unsp mv in traf, sequela +C2892323|T037|AB|V19.49|ICD10CM|Pedal cycle driver injured in collision w oth mv in traf|Pedal cycle driver injured in collision w oth mv in traf +C2892323|T037|HT|V19.49|ICD10CM|Pedal cycle driver injured in collision with other motor vehicles in traffic accident|Pedal cycle driver injured in collision with other motor vehicles in traffic accident +C2892324|T037|AB|V19.49XA|ICD10CM|Pedl cyc driver injured in collision w oth mv in traf, init|Pedl cyc driver injured in collision w oth mv in traf, init +C2892325|T037|AB|V19.49XD|ICD10CM|Pedl cyc driver injured in collision w oth mv in traf, subs|Pedl cyc driver injured in collision w oth mv in traf, subs +C2892326|T037|PT|V19.49XS|ICD10CM|Pedal cycle driver injured in collision with other motor vehicles in traffic accident, sequela|Pedal cycle driver injured in collision with other motor vehicles in traffic accident, sequela +C2892326|T037|AB|V19.49XS|ICD10CM|Pedl cyc driver injured in clsn w oth mv in traf, sequela|Pedl cyc driver injured in clsn w oth mv in traf, sequela +C0476827|T037|PT|V19.5|ICD10|Passenger injured in collision with other and unspecified motor vehicles in traffic accident|Passenger injured in collision with other and unspecified motor vehicles in traffic accident +C0476827|T037|AB|V19.5|ICD10CM|Pedl cyc passenger injured in clsn w oth and unsp mv in traf|Pedl cyc passenger injured in clsn w oth and unsp mv in traf +C2892327|T037|AB|V19.50|ICD10CM|Pedal cycle passenger injured in collision w unsp mv in traf|Pedal cycle passenger injured in collision w unsp mv in traf +C2892327|T037|HT|V19.50|ICD10CM|Pedal cycle passenger injured in collision with unspecified motor vehicles in traffic accident|Pedal cycle passenger injured in collision with unspecified motor vehicles in traffic accident +C2892328|T037|AB|V19.50XA|ICD10CM|Pedl cyc passenger injured in clsn w unsp mv in traf, init|Pedl cyc passenger injured in clsn w unsp mv in traf, init +C2892329|T037|AB|V19.50XD|ICD10CM|Pedl cyc passenger injured in clsn w unsp mv in traf, subs|Pedl cyc passenger injured in clsn w unsp mv in traf, subs +C2892330|T037|AB|V19.50XS|ICD10CM|Pedl cyc pasngr injured in clsn w unsp mv in traf, sequela|Pedl cyc pasngr injured in clsn w unsp mv in traf, sequela +C2892331|T037|AB|V19.59|ICD10CM|Pedal cycle passenger injured in collision w oth mv in traf|Pedal cycle passenger injured in collision w oth mv in traf +C2892331|T037|HT|V19.59|ICD10CM|Pedal cycle passenger injured in collision with other motor vehicles in traffic accident|Pedal cycle passenger injured in collision with other motor vehicles in traffic accident +C2892332|T037|AB|V19.59XA|ICD10CM|Pedl cyc passenger injured in clsn w oth mv in traf, init|Pedl cyc passenger injured in clsn w oth mv in traf, init +C2892333|T037|AB|V19.59XD|ICD10CM|Pedl cyc passenger injured in clsn w oth mv in traf, subs|Pedl cyc passenger injured in clsn w oth mv in traf, subs +C2892334|T037|PT|V19.59XS|ICD10CM|Pedal cycle passenger injured in collision with other motor vehicles in traffic accident, sequela|Pedal cycle passenger injured in collision with other motor vehicles in traffic accident, sequela +C2892334|T037|AB|V19.59XS|ICD10CM|Pedl cyc passenger injured in clsn w oth mv in traf, sequela|Pedl cyc passenger injured in clsn w oth mv in traf, sequela +C0476828|T037|AB|V19.6|ICD10CM|Unsp pedl cyclst injured in clsn w oth and unsp mv in traf|Unsp pedl cyclst injured in clsn w oth and unsp mv in traf +C2892335|T037|ET|V19.60|ICD10CM|Pedal cycle collision NOS (traffic)|Pedal cycle collision NOS (traffic) +C2892336|T037|AB|V19.60|ICD10CM|Unsp pedal cyclist injured in collision w unsp mv in traf|Unsp pedal cyclist injured in collision w unsp mv in traf +C2892336|T037|HT|V19.60|ICD10CM|Unspecified pedal cyclist injured in collision with unspecified motor vehicles in traffic accident|Unspecified pedal cyclist injured in collision with unspecified motor vehicles in traffic accident +C2892337|T037|AB|V19.60XA|ICD10CM|Unsp pedl cyclst injured in clsn w unsp mv in traf, init|Unsp pedl cyclst injured in clsn w unsp mv in traf, init +C2892338|T037|AB|V19.60XD|ICD10CM|Unsp pedl cyclst injured in clsn w unsp mv in traf, subs|Unsp pedl cyclst injured in clsn w unsp mv in traf, subs +C2892339|T037|AB|V19.60XS|ICD10CM|Unsp pedl cyclst injured in clsn w unsp mv in traf, sequela|Unsp pedl cyclst injured in clsn w unsp mv in traf, sequela +C0476826|T037|AB|V19.69|ICD10CM|Unsp pedal cyclist injured in collision w oth mv in traf|Unsp pedal cyclist injured in collision w oth mv in traf +C0476826|T037|HT|V19.69|ICD10CM|Unspecified pedal cyclist injured in collision with other motor vehicles in traffic accident|Unspecified pedal cyclist injured in collision with other motor vehicles in traffic accident +C2892340|T037|AB|V19.69XA|ICD10CM|Unsp pedl cyclst injured in collision w oth mv in traf, init|Unsp pedl cyclst injured in collision w oth mv in traf, init +C2892341|T037|AB|V19.69XD|ICD10CM|Unsp pedl cyclst injured in collision w oth mv in traf, subs|Unsp pedl cyclst injured in collision w oth mv in traf, subs +C2892342|T037|AB|V19.69XS|ICD10CM|Unsp pedl cyclst injured in clsn w oth mv in traf, sequela|Unsp pedl cyclst injured in clsn w oth mv in traf, sequela +C2892343|T037|HT|V19.8|ICD10CM|Pedal cyclist (driver) (passenger) injured in other specified transport accidents|Pedal cyclist (driver) (passenger) injured in other specified transport accidents +C0476829|T037|PT|V19.8|ICD10|Pedal cyclist [any] injured in other specified transport accidents|Pedal cyclist [any] injured in other specified transport accidents +C2892343|T037|AB|V19.8|ICD10CM|Pedl cyclst (driver) injured in oth transport accidents|Pedl cyclst (driver) injured in oth transport accidents +C2892344|T037|HT|V19.81|ICD10CM|Pedal cyclist (driver) (passenger) injured in transport accident with military vehicle|Pedal cyclist (driver) (passenger) injured in transport accident with military vehicle +C2892344|T037|AB|V19.81|ICD10CM|Pedl cyclst injured in trnsp accident w military vehicle|Pedl cyclst injured in trnsp accident w military vehicle +C2892345|T037|AB|V19.81XA|ICD10CM|Pedl cyclst injured in trnsp acc w military vehicle, init|Pedl cyclst injured in trnsp acc w military vehicle, init +C2892346|T037|AB|V19.81XD|ICD10CM|Pedl cyclst injured in trnsp acc w military vehicle, subs|Pedl cyclst injured in trnsp acc w military vehicle, subs +C2892347|T037|PT|V19.81XS|ICD10CM|Pedal cyclist (driver) (passenger) injured in transport accident with military vehicle, sequela|Pedal cyclist (driver) (passenger) injured in transport accident with military vehicle, sequela +C2892347|T037|AB|V19.81XS|ICD10CM|Pedl cyclst injured in trnsp acc w military vehicle, sequela|Pedl cyclst injured in trnsp acc w military vehicle, sequela +C2892343|T037|HT|V19.88|ICD10CM|Pedal cyclist (driver) (passenger) injured in other specified transport accidents|Pedal cyclist (driver) (passenger) injured in other specified transport accidents +C2892343|T037|AB|V19.88|ICD10CM|Pedl cyclst (driver) injured in oth transport accidents|Pedl cyclst (driver) injured in oth transport accidents +C2892348|T037|PT|V19.88XA|ICD10CM|Pedal cyclist (driver) (passenger) injured in other specified transport accidents, initial encounter|Pedal cyclist (driver) (passenger) injured in other specified transport accidents, initial encounter +C2892348|T037|AB|V19.88XA|ICD10CM|Pedl cyclst (driver) injured in oth transport acc, init|Pedl cyclst (driver) injured in oth transport acc, init +C2892349|T037|AB|V19.88XD|ICD10CM|Pedl cyclst (driver) injured in oth transport acc, subs|Pedl cyclst (driver) injured in oth transport acc, subs +C2892350|T037|PT|V19.88XS|ICD10CM|Pedal cyclist (driver) (passenger) injured in other specified transport accidents, sequela|Pedal cyclist (driver) (passenger) injured in other specified transport accidents, sequela +C2892350|T037|AB|V19.88XS|ICD10CM|Pedl cyclst (driver) injured in oth transport acc, sequela|Pedl cyclst (driver) injured in oth transport acc, sequela +C0261200|T037|ET|V19.9|ICD10CM|Pedal cycle accident NOS|Pedal cycle accident NOS +C2892351|T037|AB|V19.9|ICD10CM|Pedal cyclist (driver) (passenger) injured in unsp traf|Pedal cyclist (driver) (passenger) injured in unsp traf +C2892351|T037|HT|V19.9|ICD10CM|Pedal cyclist (driver) (passenger) injured in unspecified traffic accident|Pedal cyclist (driver) (passenger) injured in unspecified traffic accident +C0476830|T037|PT|V19.9|ICD10|Pedal cyclist [any] injured in unspecified traffic accident|Pedal cyclist [any] injured in unspecified traffic accident +C2892352|T037|PT|V19.9XXA|ICD10CM|Pedal cyclist (driver) (passenger) injured in unspecified traffic accident, initial encounter|Pedal cyclist (driver) (passenger) injured in unspecified traffic accident, initial encounter +C2892352|T037|AB|V19.9XXA|ICD10CM|Pedl cyclst (driver) (passenger) injured in unsp traf, init|Pedl cyclst (driver) (passenger) injured in unsp traf, init +C2892353|T037|PT|V19.9XXD|ICD10CM|Pedal cyclist (driver) (passenger) injured in unspecified traffic accident, subsequent encounter|Pedal cyclist (driver) (passenger) injured in unspecified traffic accident, subsequent encounter +C2892353|T037|AB|V19.9XXD|ICD10CM|Pedl cyclst (driver) (passenger) injured in unsp traf, subs|Pedl cyclst (driver) (passenger) injured in unsp traf, subs +C2892354|T037|PT|V19.9XXS|ICD10CM|Pedal cyclist (driver) (passenger) injured in unspecified traffic accident, sequela|Pedal cyclist (driver) (passenger) injured in unspecified traffic accident, sequela +C2892354|T037|AB|V19.9XXS|ICD10CM|Pedl cyclst (driver) injured in unsp traf, sequela|Pedl cyclst (driver) injured in unsp traf, sequela +C0476832|T037|AB|V20|ICD10CM|Motorcycle rider injured in collision w pedestrian or animal|Motorcycle rider injured in collision w pedestrian or animal +C0476832|T037|HT|V20|ICD10CM|Motorcycle rider injured in collision with pedestrian or animal|Motorcycle rider injured in collision with pedestrian or animal +C0476832|T037|HT|V20|ICD10|Motorcycle rider injured in collision with pedestrian or animal|Motorcycle rider injured in collision with pedestrian or animal +C4283826|T037|ET|V20-V29|ICD10CM|moped|moped +C4284281|T037|ET|V20-V29|ICD10CM|motor scooter|motor scooter +C0476831|T037|HT|V20-V29|ICD10CM|Motorcycle rider injured in transport accident (V20-V29)|Motorcycle rider injured in transport accident (V20-V29) +C4290419|T037|ET|V20-V29|ICD10CM|motorcycle with sidecar|motorcycle with sidecar +C4290420|T037|ET|V20-V29|ICD10CM|motorized bicycle|motorized bicycle +C0476831|T037|HT|V20-V29.9|ICD10|Motorcycle rider injured in transport accident|Motorcycle rider injured in transport accident +C2892357|T037|AB|V20.0|ICD10CM|Motorcycle driver injured in collision w ped/anml nontraf|Motorcycle driver injured in collision w ped/anml nontraf +C2892357|T037|HT|V20.0|ICD10CM|Motorcycle driver injured in collision with pedestrian or animal in nontraffic accident|Motorcycle driver injured in collision with pedestrian or animal in nontraffic accident +C0476833|T037|PT|V20.0|ICD10|Motorcycle rider injured in collision with pedestrian or animal, driver, nontraffic accident|Motorcycle rider injured in collision with pedestrian or animal, driver, nontraffic accident +C2892358|T037|AB|V20.0XXA|ICD10CM|Mtrcy driver injured in collision w ped/anml nontraf, init|Mtrcy driver injured in collision w ped/anml nontraf, init +C2892359|T037|AB|V20.0XXD|ICD10CM|Mtrcy driver injured in collision w ped/anml nontraf, subs|Mtrcy driver injured in collision w ped/anml nontraf, subs +C2892360|T037|PT|V20.0XXS|ICD10CM|Motorcycle driver injured in collision with pedestrian or animal in nontraffic accident, sequela|Motorcycle driver injured in collision with pedestrian or animal in nontraffic accident, sequela +C2892360|T037|AB|V20.0XXS|ICD10CM|Mtrcy driver injured in clsn w ped/anml nontraf, sequela|Mtrcy driver injured in clsn w ped/anml nontraf, sequela +C2892361|T037|AB|V20.1|ICD10CM|Motorcycle passenger injured in collision w ped/anml nontraf|Motorcycle passenger injured in collision w ped/anml nontraf +C2892361|T037|HT|V20.1|ICD10CM|Motorcycle passenger injured in collision with pedestrian or animal in nontraffic accident|Motorcycle passenger injured in collision with pedestrian or animal in nontraffic accident +C0476834|T037|PT|V20.1|ICD10|Motorcycle rider injured in collision with pedestrian or animal, passenger, nontraffic accident|Motorcycle rider injured in collision with pedestrian or animal, passenger, nontraffic accident +C2892362|T037|AB|V20.1XXA|ICD10CM|Mtrcy passenger injured in clsn w ped/anml nontraf, init|Mtrcy passenger injured in clsn w ped/anml nontraf, init +C2892363|T037|AB|V20.1XXD|ICD10CM|Mtrcy passenger injured in clsn w ped/anml nontraf, subs|Mtrcy passenger injured in clsn w ped/anml nontraf, subs +C2892364|T037|PT|V20.1XXS|ICD10CM|Motorcycle passenger injured in collision with pedestrian or animal in nontraffic accident, sequela|Motorcycle passenger injured in collision with pedestrian or animal in nontraffic accident, sequela +C2892364|T037|AB|V20.1XXS|ICD10CM|Mtrcy passenger injured in clsn w ped/anml nontraf, sequela|Mtrcy passenger injured in clsn w ped/anml nontraf, sequela +C2892365|T037|AB|V20.2|ICD10CM|Unsp mtrcy rider injured in collision w ped/anml nontraf|Unsp mtrcy rider injured in collision w ped/anml nontraf +C2892365|T037|HT|V20.2|ICD10CM|Unspecified motorcycle rider injured in collision with pedestrian or animal in nontraffic accident|Unspecified motorcycle rider injured in collision with pedestrian or animal in nontraffic accident +C2892366|T037|AB|V20.2XXA|ICD10CM|Unsp mtrcy rider injured in clsn w ped/anml nontraf, init|Unsp mtrcy rider injured in clsn w ped/anml nontraf, init +C2892367|T037|AB|V20.2XXD|ICD10CM|Unsp mtrcy rider injured in clsn w ped/anml nontraf, subs|Unsp mtrcy rider injured in clsn w ped/anml nontraf, subs +C2892368|T037|AB|V20.2XXS|ICD10CM|Unsp mtrcy rider injured in clsn w ped/anml nontraf, sequela|Unsp mtrcy rider injured in clsn w ped/anml nontraf, sequela +C0476836|T037|PT|V20.3|ICD10|Motorcycle rider injured in collision with pedestrian or animal, while boarding or alighting|Motorcycle rider injured in collision with pedestrian or animal, while boarding or alighting +C2892369|T037|HT|V20.3|ICD10CM|Person boarding or alighting a motorcycle injured in collision with pedestrian or animal|Person boarding or alighting a motorcycle injured in collision with pedestrian or animal +C2892369|T037|AB|V20.3|ICD10CM|Prsn brd/alit a motorcycle injured in collision w ped/anml|Prsn brd/alit a motorcycle injured in collision w ped/anml +C2892370|T037|AB|V20.3XXA|ICD10CM|Prsn brd/alit mtrcy injured in collision w ped/anml, init|Prsn brd/alit mtrcy injured in collision w ped/anml, init +C2892371|T037|AB|V20.3XXD|ICD10CM|Prsn brd/alit mtrcy injured in collision w ped/anml, subs|Prsn brd/alit mtrcy injured in collision w ped/anml, subs +C2892372|T037|PT|V20.3XXS|ICD10CM|Person boarding or alighting a motorcycle injured in collision with pedestrian or animal, sequela|Person boarding or alighting a motorcycle injured in collision with pedestrian or animal, sequela +C2892372|T037|AB|V20.3XXS|ICD10CM|Prsn brd/alit mtrcy injured in collision w ped/anml, sequela|Prsn brd/alit mtrcy injured in collision w ped/anml, sequela +C2892373|T037|AB|V20.4|ICD10CM|Motorcycle driver injured in collision w ped/anml in traf|Motorcycle driver injured in collision w ped/anml in traf +C2892373|T037|HT|V20.4|ICD10CM|Motorcycle driver injured in collision with pedestrian or animal in traffic accident|Motorcycle driver injured in collision with pedestrian or animal in traffic accident +C0476837|T037|PT|V20.4|ICD10|Motorcycle rider injured in collision with pedestrian or animal, driver, traffic accident|Motorcycle rider injured in collision with pedestrian or animal, driver, traffic accident +C2892374|T037|AB|V20.4XXA|ICD10CM|Mtrcy driver injured in collision w ped/anml in traf, init|Mtrcy driver injured in collision w ped/anml in traf, init +C2892375|T037|AB|V20.4XXD|ICD10CM|Mtrcy driver injured in collision w ped/anml in traf, subs|Mtrcy driver injured in collision w ped/anml in traf, subs +C2892376|T037|PT|V20.4XXS|ICD10CM|Motorcycle driver injured in collision with pedestrian or animal in traffic accident, sequela|Motorcycle driver injured in collision with pedestrian or animal in traffic accident, sequela +C2892376|T037|AB|V20.4XXS|ICD10CM|Mtrcy driver injured in clsn w ped/anml in traf, sequela|Mtrcy driver injured in clsn w ped/anml in traf, sequela +C2892377|T037|AB|V20.5|ICD10CM|Motorcycle passenger injured in collision w ped/anml in traf|Motorcycle passenger injured in collision w ped/anml in traf +C2892377|T037|HT|V20.5|ICD10CM|Motorcycle passenger injured in collision with pedestrian or animal in traffic accident|Motorcycle passenger injured in collision with pedestrian or animal in traffic accident +C0476838|T037|PT|V20.5|ICD10|Motorcycle rider injured in collision with pedestrian or animal, passenger, traffic accident|Motorcycle rider injured in collision with pedestrian or animal, passenger, traffic accident +C2892378|T037|AB|V20.5XXA|ICD10CM|Mtrcy passenger injured in clsn w ped/anml in traf, init|Mtrcy passenger injured in clsn w ped/anml in traf, init +C2892379|T037|AB|V20.5XXD|ICD10CM|Mtrcy passenger injured in clsn w ped/anml in traf, subs|Mtrcy passenger injured in clsn w ped/anml in traf, subs +C2892380|T037|PT|V20.5XXS|ICD10CM|Motorcycle passenger injured in collision with pedestrian or animal in traffic accident, sequela|Motorcycle passenger injured in collision with pedestrian or animal in traffic accident, sequela +C2892380|T037|AB|V20.5XXS|ICD10CM|Mtrcy passenger injured in clsn w ped/anml in traf, sequela|Mtrcy passenger injured in clsn w ped/anml in traf, sequela +C2892381|T037|AB|V20.9|ICD10CM|Unsp mtrcy rider injured in collision w ped/anml in traf|Unsp mtrcy rider injured in collision w ped/anml in traf +C2892381|T037|HT|V20.9|ICD10CM|Unspecified motorcycle rider injured in collision with pedestrian or animal in traffic accident|Unspecified motorcycle rider injured in collision with pedestrian or animal in traffic accident +C2892382|T037|AB|V20.9XXA|ICD10CM|Unsp mtrcy rider injured in clsn w ped/anml in traf, init|Unsp mtrcy rider injured in clsn w ped/anml in traf, init +C2892383|T037|AB|V20.9XXD|ICD10CM|Unsp mtrcy rider injured in clsn w ped/anml in traf, subs|Unsp mtrcy rider injured in clsn w ped/anml in traf, subs +C2892384|T037|AB|V20.9XXS|ICD10CM|Unsp mtrcy rider injured in clsn w ped/anml in traf, sequela|Unsp mtrcy rider injured in clsn w ped/anml in traf, sequela +C0476840|T037|HT|V21|ICD10|Motorcycle rider injured in collision with pedal cycle|Motorcycle rider injured in collision with pedal cycle +C0476840|T037|HT|V21|ICD10CM|Motorcycle rider injured in collision with pedal cycle|Motorcycle rider injured in collision with pedal cycle +C0476840|T037|AB|V21|ICD10CM|Motorcycle rider injured in collision with pedal cycle|Motorcycle rider injured in collision with pedal cycle +C2892385|T037|AB|V21.0|ICD10CM|Motorcycle driver injured in collision w pedal cycle nontraf|Motorcycle driver injured in collision w pedal cycle nontraf +C2892385|T037|HT|V21.0|ICD10CM|Motorcycle driver injured in collision with pedal cycle in nontraffic accident|Motorcycle driver injured in collision with pedal cycle in nontraffic accident +C0476841|T037|PT|V21.0|ICD10|Motorcycle rider injured in collision with pedal cycle, driver, nontraffic accident|Motorcycle rider injured in collision with pedal cycle, driver, nontraffic accident +C2892386|T037|PT|V21.0XXA|ICD10CM|Motorcycle driver injured in collision with pedal cycle in nontraffic accident, initial encounter|Motorcycle driver injured in collision with pedal cycle in nontraffic accident, initial encounter +C2892386|T037|AB|V21.0XXA|ICD10CM|Mtrcy driver injured in collision w pedl cyc nontraf, init|Mtrcy driver injured in collision w pedl cyc nontraf, init +C2892387|T037|PT|V21.0XXD|ICD10CM|Motorcycle driver injured in collision with pedal cycle in nontraffic accident, subsequent encounter|Motorcycle driver injured in collision with pedal cycle in nontraffic accident, subsequent encounter +C2892387|T037|AB|V21.0XXD|ICD10CM|Mtrcy driver injured in collision w pedl cyc nontraf, subs|Mtrcy driver injured in collision w pedl cyc nontraf, subs +C2892388|T037|PT|V21.0XXS|ICD10CM|Motorcycle driver injured in collision with pedal cycle in nontraffic accident, sequela|Motorcycle driver injured in collision with pedal cycle in nontraffic accident, sequela +C2892388|T037|AB|V21.0XXS|ICD10CM|Mtrcy driver injured in clsn w pedl cyc nontraf, sequela|Mtrcy driver injured in clsn w pedl cyc nontraf, sequela +C2892389|T037|AB|V21.1|ICD10CM|Motorcycle passenger injured in collision w pedl cyc nontraf|Motorcycle passenger injured in collision w pedl cyc nontraf +C2892389|T037|HT|V21.1|ICD10CM|Motorcycle passenger injured in collision with pedal cycle in nontraffic accident|Motorcycle passenger injured in collision with pedal cycle in nontraffic accident +C0476842|T037|PT|V21.1|ICD10|Motorcycle rider injured in collision with pedal cycle, passenger, nontraffic accident|Motorcycle rider injured in collision with pedal cycle, passenger, nontraffic accident +C2892390|T037|PT|V21.1XXA|ICD10CM|Motorcycle passenger injured in collision with pedal cycle in nontraffic accident, initial encounter|Motorcycle passenger injured in collision with pedal cycle in nontraffic accident, initial encounter +C2892390|T037|AB|V21.1XXA|ICD10CM|Mtrcy passenger injured in clsn w pedl cyc nontraf, init|Mtrcy passenger injured in clsn w pedl cyc nontraf, init +C2892391|T037|AB|V21.1XXD|ICD10CM|Mtrcy passenger injured in clsn w pedl cyc nontraf, subs|Mtrcy passenger injured in clsn w pedl cyc nontraf, subs +C2892392|T037|PT|V21.1XXS|ICD10CM|Motorcycle passenger injured in collision with pedal cycle in nontraffic accident, sequela|Motorcycle passenger injured in collision with pedal cycle in nontraffic accident, sequela +C2892392|T037|AB|V21.1XXS|ICD10CM|Mtrcy passenger injured in clsn w pedl cyc nontraf, sequela|Mtrcy passenger injured in clsn w pedl cyc nontraf, sequela +C2892393|T037|AB|V21.2|ICD10CM|Unsp mtrcy rider injured in collision w pedl cyc nontraf|Unsp mtrcy rider injured in collision w pedl cyc nontraf +C2892393|T037|HT|V21.2|ICD10CM|Unspecified motorcycle rider injured in collision with pedal cycle in nontraffic accident|Unspecified motorcycle rider injured in collision with pedal cycle in nontraffic accident +C2892394|T037|AB|V21.2XXA|ICD10CM|Unsp mtrcy rider injured in clsn w pedl cyc nontraf, init|Unsp mtrcy rider injured in clsn w pedl cyc nontraf, init +C2892395|T037|AB|V21.2XXD|ICD10CM|Unsp mtrcy rider injured in clsn w pedl cyc nontraf, subs|Unsp mtrcy rider injured in clsn w pedl cyc nontraf, subs +C2892396|T037|AB|V21.2XXS|ICD10CM|Unsp mtrcy rider injured in clsn w pedl cyc nontraf, sequela|Unsp mtrcy rider injured in clsn w pedl cyc nontraf, sequela +C2892396|T037|PT|V21.2XXS|ICD10CM|Unspecified motorcycle rider injured in collision with pedal cycle in nontraffic accident, sequela|Unspecified motorcycle rider injured in collision with pedal cycle in nontraffic accident, sequela +C0476844|T037|PT|V21.3|ICD10|Motorcycle rider injured in collision with pedal cycle, while boarding or alighting|Motorcycle rider injured in collision with pedal cycle, while boarding or alighting +C2892397|T037|HT|V21.3|ICD10CM|Person boarding or alighting a motorcycle injured in collision with pedal cycle|Person boarding or alighting a motorcycle injured in collision with pedal cycle +C2892397|T037|AB|V21.3|ICD10CM|Prsn brd/alit mtrcy injured in collision w pedal cycle|Prsn brd/alit mtrcy injured in collision w pedal cycle +C2892398|T037|PT|V21.3XXA|ICD10CM|Person boarding or alighting a motorcycle injured in collision with pedal cycle, initial encounter|Person boarding or alighting a motorcycle injured in collision with pedal cycle, initial encounter +C2892398|T037|AB|V21.3XXA|ICD10CM|Prsn brd/alit mtrcy injured in collision w pedal cycle, init|Prsn brd/alit mtrcy injured in collision w pedal cycle, init +C2892399|T037|AB|V21.3XXD|ICD10CM|Prsn brd/alit mtrcy injured in collision w pedal cycle, subs|Prsn brd/alit mtrcy injured in collision w pedal cycle, subs +C2892400|T037|PT|V21.3XXS|ICD10CM|Person boarding or alighting a motorcycle injured in collision with pedal cycle, sequela|Person boarding or alighting a motorcycle injured in collision with pedal cycle, sequela +C2892400|T037|AB|V21.3XXS|ICD10CM|Prsn brd/alit mtrcy injured in collision w pedl cyc, sequela|Prsn brd/alit mtrcy injured in collision w pedl cyc, sequela +C2892401|T037|AB|V21.4|ICD10CM|Motorcycle driver injured in collision w pedal cycle in traf|Motorcycle driver injured in collision w pedal cycle in traf +C2892401|T037|HT|V21.4|ICD10CM|Motorcycle driver injured in collision with pedal cycle in traffic accident|Motorcycle driver injured in collision with pedal cycle in traffic accident +C0476845|T037|PT|V21.4|ICD10|Motorcycle rider injured in collision with pedal cycle, driver, traffic accident|Motorcycle rider injured in collision with pedal cycle, driver, traffic accident +C2892402|T037|PT|V21.4XXA|ICD10CM|Motorcycle driver injured in collision with pedal cycle in traffic accident, initial encounter|Motorcycle driver injured in collision with pedal cycle in traffic accident, initial encounter +C2892402|T037|AB|V21.4XXA|ICD10CM|Mtrcy driver injured in collision w pedl cyc in traf, init|Mtrcy driver injured in collision w pedl cyc in traf, init +C2892403|T037|PT|V21.4XXD|ICD10CM|Motorcycle driver injured in collision with pedal cycle in traffic accident, subsequent encounter|Motorcycle driver injured in collision with pedal cycle in traffic accident, subsequent encounter +C2892403|T037|AB|V21.4XXD|ICD10CM|Mtrcy driver injured in collision w pedl cyc in traf, subs|Mtrcy driver injured in collision w pedl cyc in traf, subs +C2892404|T037|PT|V21.4XXS|ICD10CM|Motorcycle driver injured in collision with pedal cycle in traffic accident, sequela|Motorcycle driver injured in collision with pedal cycle in traffic accident, sequela +C2892404|T037|AB|V21.4XXS|ICD10CM|Mtrcy driver injured in clsn w pedl cyc in traf, sequela|Mtrcy driver injured in clsn w pedl cyc in traf, sequela +C2892405|T037|AB|V21.5|ICD10CM|Motorcycle passenger injured in collision w pedl cyc in traf|Motorcycle passenger injured in collision w pedl cyc in traf +C2892405|T037|HT|V21.5|ICD10CM|Motorcycle passenger injured in collision with pedal cycle in traffic accident|Motorcycle passenger injured in collision with pedal cycle in traffic accident +C0476846|T037|PT|V21.5|ICD10|Motorcycle rider injured in collision with pedal cycle, passenger, traffic accident|Motorcycle rider injured in collision with pedal cycle, passenger, traffic accident +C2892406|T037|PT|V21.5XXA|ICD10CM|Motorcycle passenger injured in collision with pedal cycle in traffic accident, initial encounter|Motorcycle passenger injured in collision with pedal cycle in traffic accident, initial encounter +C2892406|T037|AB|V21.5XXA|ICD10CM|Mtrcy passenger injured in clsn w pedl cyc in traf, init|Mtrcy passenger injured in clsn w pedl cyc in traf, init +C2892407|T037|PT|V21.5XXD|ICD10CM|Motorcycle passenger injured in collision with pedal cycle in traffic accident, subsequent encounter|Motorcycle passenger injured in collision with pedal cycle in traffic accident, subsequent encounter +C2892407|T037|AB|V21.5XXD|ICD10CM|Mtrcy passenger injured in clsn w pedl cyc in traf, subs|Mtrcy passenger injured in clsn w pedl cyc in traf, subs +C2892408|T037|PT|V21.5XXS|ICD10CM|Motorcycle passenger injured in collision with pedal cycle in traffic accident, sequela|Motorcycle passenger injured in collision with pedal cycle in traffic accident, sequela +C2892408|T037|AB|V21.5XXS|ICD10CM|Mtrcy passenger injured in clsn w pedl cyc in traf, sequela|Mtrcy passenger injured in clsn w pedl cyc in traf, sequela +C2892409|T037|AB|V21.9|ICD10CM|Unsp mtrcy rider injured in collision w pedl cyc in traf|Unsp mtrcy rider injured in collision w pedl cyc in traf +C2892409|T037|HT|V21.9|ICD10CM|Unspecified motorcycle rider injured in collision with pedal cycle in traffic accident|Unspecified motorcycle rider injured in collision with pedal cycle in traffic accident +C2892410|T037|AB|V21.9XXA|ICD10CM|Unsp mtrcy rider injured in clsn w pedl cyc in traf, init|Unsp mtrcy rider injured in clsn w pedl cyc in traf, init +C2892411|T037|AB|V21.9XXD|ICD10CM|Unsp mtrcy rider injured in clsn w pedl cyc in traf, subs|Unsp mtrcy rider injured in clsn w pedl cyc in traf, subs +C2892412|T037|AB|V21.9XXS|ICD10CM|Unsp mtrcy rider injured in clsn w pedl cyc in traf, sequela|Unsp mtrcy rider injured in clsn w pedl cyc in traf, sequela +C2892412|T037|PT|V21.9XXS|ICD10CM|Unspecified motorcycle rider injured in collision with pedal cycle in traffic accident, sequela|Unspecified motorcycle rider injured in collision with pedal cycle in traffic accident, sequela +C0476848|T037|AB|V22|ICD10CM|Motorcycle rider injured in collision w 2/3-whl mv|Motorcycle rider injured in collision w 2/3-whl mv +C0476848|T037|HT|V22|ICD10CM|Motorcycle rider injured in collision with two- or three-wheeled motor vehicle|Motorcycle rider injured in collision with two- or three-wheeled motor vehicle +C0476848|T037|HT|V22|ICD10|Motorcycle rider injured in collision with two- or three-wheeled motor vehicle|Motorcycle rider injured in collision with two- or three-wheeled motor vehicle +C2892413|T037|AB|V22.0|ICD10CM|Motorcycle driver injured in collision w 2/3-whl mv nontraf|Motorcycle driver injured in collision w 2/3-whl mv nontraf +C2892414|T037|AB|V22.0XXA|ICD10CM|Mtrcy driver injured in collision w 2/3-whl mv nontraf, init|Mtrcy driver injured in collision w 2/3-whl mv nontraf, init +C2892415|T037|AB|V22.0XXD|ICD10CM|Mtrcy driver injured in collision w 2/3-whl mv nontraf, subs|Mtrcy driver injured in collision w 2/3-whl mv nontraf, subs +C2892416|T037|AB|V22.0XXS|ICD10CM|Mtrcy driver injured in clsn w 2/3-whl mv nontraf, sequela|Mtrcy driver injured in clsn w 2/3-whl mv nontraf, sequela +C2892417|T037|AB|V22.1|ICD10CM|Mtrcy passenger injured in collision w 2/3-whl mv nontraf|Mtrcy passenger injured in collision w 2/3-whl mv nontraf +C2892418|T037|AB|V22.1XXA|ICD10CM|Mtrcy passenger injured in clsn w 2/3-whl mv nontraf, init|Mtrcy passenger injured in clsn w 2/3-whl mv nontraf, init +C2892419|T037|AB|V22.1XXD|ICD10CM|Mtrcy passenger injured in clsn w 2/3-whl mv nontraf, subs|Mtrcy passenger injured in clsn w 2/3-whl mv nontraf, subs +C2892420|T037|AB|V22.1XXS|ICD10CM|Mtrcy pasngr injured in clsn w 2/3-whl mv nontraf, sequela|Mtrcy pasngr injured in clsn w 2/3-whl mv nontraf, sequela +C2892421|T037|AB|V22.2|ICD10CM|Unsp mtrcy rider injured in collision w 2/3-whl mv nontraf|Unsp mtrcy rider injured in collision w 2/3-whl mv nontraf +C2892422|T037|AB|V22.2XXA|ICD10CM|Unsp mtrcy rider injured in clsn w 2/3-whl mv nontraf, init|Unsp mtrcy rider injured in clsn w 2/3-whl mv nontraf, init +C2892423|T037|AB|V22.2XXD|ICD10CM|Unsp mtrcy rider injured in clsn w 2/3-whl mv nontraf, subs|Unsp mtrcy rider injured in clsn w 2/3-whl mv nontraf, subs +C2892424|T037|AB|V22.2XXS|ICD10CM|Unsp mtrcy rider inj in clsn w 2/3-whl mv nontraf, sequela|Unsp mtrcy rider inj in clsn w 2/3-whl mv nontraf, sequela +C2892425|T037|AB|V22.3|ICD10CM|Prsn brd/alit a motorcycle injured in collision w 2/3-whl mv|Prsn brd/alit a motorcycle injured in collision w 2/3-whl mv +C2892426|T037|AB|V22.3XXA|ICD10CM|Prsn brd/alit mtrcy injured in collision w 2/3-whl mv, init|Prsn brd/alit mtrcy injured in collision w 2/3-whl mv, init +C2892427|T037|AB|V22.3XXD|ICD10CM|Prsn brd/alit mtrcy injured in collision w 2/3-whl mv, subs|Prsn brd/alit mtrcy injured in collision w 2/3-whl mv, subs +C2892428|T037|AB|V22.3XXS|ICD10CM|Prsn brd/alit mtrcy injured in clsn w 2/3-whl mv, sequela|Prsn brd/alit mtrcy injured in clsn w 2/3-whl mv, sequela +C2892429|T037|AB|V22.4|ICD10CM|Motorcycle driver injured in collision w 2/3-whl mv in traf|Motorcycle driver injured in collision w 2/3-whl mv in traf +C2892429|T037|HT|V22.4|ICD10CM|Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident|Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident +C2892430|T037|AB|V22.4XXA|ICD10CM|Mtrcy driver injured in collision w 2/3-whl mv in traf, init|Mtrcy driver injured in collision w 2/3-whl mv in traf, init +C2892431|T037|AB|V22.4XXD|ICD10CM|Mtrcy driver injured in collision w 2/3-whl mv in traf, subs|Mtrcy driver injured in collision w 2/3-whl mv in traf, subs +C2892432|T037|AB|V22.4XXS|ICD10CM|Mtrcy driver injured in clsn w 2/3-whl mv in traf, sequela|Mtrcy driver injured in clsn w 2/3-whl mv in traf, sequela +C2892433|T037|AB|V22.5|ICD10CM|Mtrcy passenger injured in collision w 2/3-whl mv in traf|Mtrcy passenger injured in collision w 2/3-whl mv in traf +C2892434|T037|AB|V22.5XXA|ICD10CM|Mtrcy passenger injured in clsn w 2/3-whl mv in traf, init|Mtrcy passenger injured in clsn w 2/3-whl mv in traf, init +C2892435|T037|AB|V22.5XXD|ICD10CM|Mtrcy passenger injured in clsn w 2/3-whl mv in traf, subs|Mtrcy passenger injured in clsn w 2/3-whl mv in traf, subs +C2892436|T037|AB|V22.5XXS|ICD10CM|Mtrcy pasngr injured in clsn w 2/3-whl mv in traf, sequela|Mtrcy pasngr injured in clsn w 2/3-whl mv in traf, sequela +C2892437|T037|AB|V22.9|ICD10CM|Unsp mtrcy rider injured in collision w 2/3-whl mv in traf|Unsp mtrcy rider injured in collision w 2/3-whl mv in traf +C2892438|T037|AB|V22.9XXA|ICD10CM|Unsp mtrcy rider injured in clsn w 2/3-whl mv in traf, init|Unsp mtrcy rider injured in clsn w 2/3-whl mv in traf, init +C2892439|T037|AB|V22.9XXD|ICD10CM|Unsp mtrcy rider injured in clsn w 2/3-whl mv in traf, subs|Unsp mtrcy rider injured in clsn w 2/3-whl mv in traf, subs +C2892440|T037|AB|V22.9XXS|ICD10CM|Unsp mtrcy rider inj in clsn w 2/3-whl mv in traf, sequela|Unsp mtrcy rider inj in clsn w 2/3-whl mv in traf, sequela +C0476856|T037|HT|V23|ICD10|Motorcycle rider injured in collision with car, pick-up truck or van|Motorcycle rider injured in collision with car, pick-up truck or van +C0476856|T037|HT|V23|ICD10CM|Motorcycle rider injured in collision with car, pick-up truck or van|Motorcycle rider injured in collision with car, pick-up truck or van +C0476856|T037|AB|V23|ICD10CM|Motorcycle rider injured pick-up truck, pick-up truck or van|Motorcycle rider injured pick-up truck, pick-up truck or van +C2892441|T037|HT|V23.0|ICD10CM|Motorcycle driver injured in collision with car, pick-up truck or van in nontraffic accident|Motorcycle driver injured in collision with car, pick-up truck or van in nontraffic accident +C2892441|T037|AB|V23.0|ICD10CM|Motorcycle driver injured pick-up truck, pk-up/van nontraf|Motorcycle driver injured pick-up truck, pk-up/van nontraf +C0476857|T037|PT|V23.0|ICD10|Motorcycle rider injured in collision with car, pick-up truck or van, driver, nontraffic accident|Motorcycle rider injured in collision with car, pick-up truck or van, driver, nontraffic accident +C2892442|T037|AB|V23.0XXA|ICD10CM|Mtrcy driver injured pick-up truck, pk-up/van nontraf, init|Mtrcy driver injured pick-up truck, pk-up/van nontraf, init +C2892443|T037|AB|V23.0XXD|ICD10CM|Mtrcy driver injured pick-up truck, pk-up/van nontraf, subs|Mtrcy driver injured pick-up truck, pk-up/van nontraf, subs +C2892444|T037|AB|V23.0XXS|ICD10CM|Mtrcy driver inj pick-up truck, pk-up/van nontraf, sequela|Mtrcy driver inj pick-up truck, pk-up/van nontraf, sequela +C2892445|T037|HT|V23.1|ICD10CM|Motorcycle passenger injured in collision with car, pick-up truck or van in nontraffic accident|Motorcycle passenger injured in collision with car, pick-up truck or van in nontraffic accident +C0476858|T037|PT|V23.1|ICD10|Motorcycle rider injured in collision with car, pick-up truck or van, passenger, nontraffic accident|Motorcycle rider injured in collision with car, pick-up truck or van, passenger, nontraffic accident +C2892445|T037|AB|V23.1|ICD10CM|Mtrcy passenger injured pick-up truck, pk-up/van nontraf|Mtrcy passenger injured pick-up truck, pk-up/van nontraf +C2892446|T037|AB|V23.1XXA|ICD10CM|Mtrcy pasngr injured pick-up truck, pk-up/van nontraf, init|Mtrcy pasngr injured pick-up truck, pk-up/van nontraf, init +C2892447|T037|AB|V23.1XXD|ICD10CM|Mtrcy pasngr injured pick-up truck, pk-up/van nontraf, subs|Mtrcy pasngr injured pick-up truck, pk-up/van nontraf, subs +C2892448|T037|AB|V23.1XXS|ICD10CM|Mtrcy pasngr inj pick-up truck, pk-up/van nontraf, sequela|Mtrcy pasngr inj pick-up truck, pk-up/van nontraf, sequela +C2892449|T037|AB|V23.2|ICD10CM|Unsp mtrcy rider injured pick-up truck, pk-up/van nontraf|Unsp mtrcy rider injured pick-up truck, pk-up/van nontraf +C2892450|T037|AB|V23.2XXA|ICD10CM|Unsp mtrcy rider inj pick-up truck, pk-up/van nontraf, init|Unsp mtrcy rider inj pick-up truck, pk-up/van nontraf, init +C2892451|T037|AB|V23.2XXD|ICD10CM|Unsp mtrcy rider inj pick-up truck, pk-up/van nontraf, subs|Unsp mtrcy rider inj pick-up truck, pk-up/van nontraf, subs +C2892452|T037|AB|V23.2XXS|ICD10CM|Unsp mtrcy rider inj pk-up truck, pk-up/van nontraf, sequela|Unsp mtrcy rider inj pk-up truck, pk-up/van nontraf, sequela +C0476860|T037|PT|V23.3|ICD10|Motorcycle rider injured in collision with car, pick-up truck or van, while boarding or alighting|Motorcycle rider injured in collision with car, pick-up truck or van, while boarding or alighting +C2892453|T037|HT|V23.3|ICD10CM|Person boarding or alighting a motorcycle injured in collision with car, pick-up truck or van|Person boarding or alighting a motorcycle injured in collision with car, pick-up truck or van +C2892453|T037|AB|V23.3|ICD10CM|Prsn brd/alit a motorcycle injured pick-up truck, pk-up/van|Prsn brd/alit a motorcycle injured pick-up truck, pk-up/van +C2892454|T037|AB|V23.3XXA|ICD10CM|Prsn brd/alit mtrcy injured pick-up truck, pk-up/van, init|Prsn brd/alit mtrcy injured pick-up truck, pk-up/van, init +C2892455|T037|AB|V23.3XXD|ICD10CM|Prsn brd/alit mtrcy injured pick-up truck, pk-up/van, subs|Prsn brd/alit mtrcy injured pick-up truck, pk-up/van, subs +C2892456|T037|AB|V23.3XXS|ICD10CM|Prsn brd/alit mtrcy inj pick-up truck, pk-up/van, sequela|Prsn brd/alit mtrcy inj pick-up truck, pk-up/van, sequela +C2892457|T037|HT|V23.4|ICD10CM|Motorcycle driver injured in collision with car, pick-up truck or van in traffic accident|Motorcycle driver injured in collision with car, pick-up truck or van in traffic accident +C2892457|T037|AB|V23.4|ICD10CM|Motorcycle driver injured pick-up truck, pk-up/van in traf|Motorcycle driver injured pick-up truck, pk-up/van in traf +C0476861|T037|PT|V23.4|ICD10|Motorcycle rider injured in collision with car, pick-up truck or van, driver, traffic accident|Motorcycle rider injured in collision with car, pick-up truck or van, driver, traffic accident +C2892458|T037|AB|V23.4XXA|ICD10CM|Mtrcy driver injured pick-up truck, pk-up/van in traf, init|Mtrcy driver injured pick-up truck, pk-up/van in traf, init +C2892459|T037|AB|V23.4XXD|ICD10CM|Mtrcy driver injured pick-up truck, pk-up/van in traf, subs|Mtrcy driver injured pick-up truck, pk-up/van in traf, subs +C2892460|T037|PT|V23.4XXS|ICD10CM|Motorcycle driver injured in collision with car, pick-up truck or van in traffic accident, sequela|Motorcycle driver injured in collision with car, pick-up truck or van in traffic accident, sequela +C2892460|T037|AB|V23.4XXS|ICD10CM|Mtrcy driver inj pick-up truck, pk-up/van in traf, sequela|Mtrcy driver inj pick-up truck, pk-up/van in traf, sequela +C2892461|T037|HT|V23.5|ICD10CM|Motorcycle passenger injured in collision with car, pick-up truck or van in traffic accident|Motorcycle passenger injured in collision with car, pick-up truck or van in traffic accident +C0476862|T037|PT|V23.5|ICD10|Motorcycle rider injured in collision with car, pick-up truck or van, passenger, traffic accident|Motorcycle rider injured in collision with car, pick-up truck or van, passenger, traffic accident +C2892461|T037|AB|V23.5|ICD10CM|Mtrcy passenger injured pick-up truck, pk-up/van in traf|Mtrcy passenger injured pick-up truck, pk-up/van in traf +C2892462|T037|AB|V23.5XXA|ICD10CM|Mtrcy pasngr injured pick-up truck, pk-up/van in traf, init|Mtrcy pasngr injured pick-up truck, pk-up/van in traf, init +C2892463|T037|AB|V23.5XXD|ICD10CM|Mtrcy pasngr injured pick-up truck, pk-up/van in traf, subs|Mtrcy pasngr injured pick-up truck, pk-up/van in traf, subs +C2892464|T037|AB|V23.5XXS|ICD10CM|Mtrcy pasngr inj pick-up truck, pk-up/van in traf, sequela|Mtrcy pasngr inj pick-up truck, pk-up/van in traf, sequela +C2892465|T037|AB|V23.9|ICD10CM|Unsp mtrcy rider injured pick-up truck, pk-up/van in traf|Unsp mtrcy rider injured pick-up truck, pk-up/van in traf +C2892465|T037|HT|V23.9|ICD10CM|Unspecified motorcycle rider injured in collision with car, pick-up truck or van in traffic accident|Unspecified motorcycle rider injured in collision with car, pick-up truck or van in traffic accident +C2892466|T037|AB|V23.9XXA|ICD10CM|Unsp mtrcy rider inj pick-up truck, pk-up/van in traf, init|Unsp mtrcy rider inj pick-up truck, pk-up/van in traf, init +C2892467|T037|AB|V23.9XXD|ICD10CM|Unsp mtrcy rider inj pick-up truck, pk-up/van in traf, subs|Unsp mtrcy rider inj pick-up truck, pk-up/van in traf, subs +C2892468|T037|AB|V23.9XXS|ICD10CM|Unsp mtrcy rider inj pk-up truck, pk-up/van in traf, sequela|Unsp mtrcy rider inj pk-up truck, pk-up/van in traf, sequela +C0476864|T037|AB|V24|ICD10CM|Motorcycle rider injured in collision w hv veh|Motorcycle rider injured in collision w hv veh +C0476864|T037|HT|V24|ICD10CM|Motorcycle rider injured in collision with heavy transport vehicle or bus|Motorcycle rider injured in collision with heavy transport vehicle or bus +C0476864|T037|HT|V24|ICD10|Motorcycle rider injured in collision with heavy transport vehicle or bus|Motorcycle rider injured in collision with heavy transport vehicle or bus +C2892469|T037|AB|V24.0|ICD10CM|Motorcycle driver injured in collision w hv veh nontraf|Motorcycle driver injured in collision w hv veh nontraf +C2892469|T037|HT|V24.0|ICD10CM|Motorcycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident|Motorcycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident +C2892470|T037|AB|V24.0XXA|ICD10CM|Mtrcy driver injured in collision w hv veh nontraf, init|Mtrcy driver injured in collision w hv veh nontraf, init +C2892471|T037|AB|V24.0XXD|ICD10CM|Mtrcy driver injured in collision w hv veh nontraf, subs|Mtrcy driver injured in collision w hv veh nontraf, subs +C2892472|T037|AB|V24.0XXS|ICD10CM|Mtrcy driver injured in collision w hv veh nontraf, sequela|Mtrcy driver injured in collision w hv veh nontraf, sequela +C2892473|T037|AB|V24.1|ICD10CM|Motorcycle passenger injured in collision w hv veh nontraf|Motorcycle passenger injured in collision w hv veh nontraf +C2892473|T037|HT|V24.1|ICD10CM|Motorcycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident|Motorcycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident +C2892474|T037|AB|V24.1XXA|ICD10CM|Mtrcy passenger injured in collision w hv veh nontraf, init|Mtrcy passenger injured in collision w hv veh nontraf, init +C2892475|T037|AB|V24.1XXD|ICD10CM|Mtrcy passenger injured in collision w hv veh nontraf, subs|Mtrcy passenger injured in collision w hv veh nontraf, subs +C2892476|T037|AB|V24.1XXS|ICD10CM|Mtrcy passenger injured in clsn w hv veh nontraf, sequela|Mtrcy passenger injured in clsn w hv veh nontraf, sequela +C2892477|T037|AB|V24.2|ICD10CM|Unsp motorcycle rider injured in collision w hv veh nontraf|Unsp motorcycle rider injured in collision w hv veh nontraf +C2892478|T037|AB|V24.2XXA|ICD10CM|Unsp mtrcy rider injured in collision w hv veh nontraf, init|Unsp mtrcy rider injured in collision w hv veh nontraf, init +C2892479|T037|AB|V24.2XXD|ICD10CM|Unsp mtrcy rider injured in collision w hv veh nontraf, subs|Unsp mtrcy rider injured in collision w hv veh nontraf, subs +C2892480|T037|AB|V24.2XXS|ICD10CM|Unsp mtrcy rider injured in clsn w hv veh nontraf, sequela|Unsp mtrcy rider injured in clsn w hv veh nontraf, sequela +C2892481|T037|HT|V24.3|ICD10CM|Person boarding or alighting a motorcycle injured in collision with heavy transport vehicle or bus|Person boarding or alighting a motorcycle injured in collision with heavy transport vehicle or bus +C2892481|T037|AB|V24.3|ICD10CM|Prsn brd/alit a motorcycle injured in collision w hv veh|Prsn brd/alit a motorcycle injured in collision w hv veh +C2892482|T037|AB|V24.3XXA|ICD10CM|Prsn brd/alit mtrcy injured in collision w hv veh, init|Prsn brd/alit mtrcy injured in collision w hv veh, init +C2892483|T037|AB|V24.3XXD|ICD10CM|Prsn brd/alit mtrcy injured in collision w hv veh, subs|Prsn brd/alit mtrcy injured in collision w hv veh, subs +C2892484|T037|AB|V24.3XXS|ICD10CM|Prsn brd/alit mtrcy injured in collision w hv veh, sequela|Prsn brd/alit mtrcy injured in collision w hv veh, sequela +C2892485|T037|AB|V24.4|ICD10CM|Motorcycle driver injured in collision w hv veh in traf|Motorcycle driver injured in collision w hv veh in traf +C2892485|T037|HT|V24.4|ICD10CM|Motorcycle driver injured in collision with heavy transport vehicle or bus in traffic accident|Motorcycle driver injured in collision with heavy transport vehicle or bus in traffic accident +C0476869|T037|PT|V24.4|ICD10|Motorcycle rider injured in collision with heavy transport vehicle or bus, driver, traffic accident|Motorcycle rider injured in collision with heavy transport vehicle or bus, driver, traffic accident +C2892486|T037|AB|V24.4XXA|ICD10CM|Mtrcy driver injured in collision w hv veh in traf, init|Mtrcy driver injured in collision w hv veh in traf, init +C2892487|T037|AB|V24.4XXD|ICD10CM|Mtrcy driver injured in collision w hv veh in traf, subs|Mtrcy driver injured in collision w hv veh in traf, subs +C2892488|T037|AB|V24.4XXS|ICD10CM|Mtrcy driver injured in collision w hv veh in traf, sequela|Mtrcy driver injured in collision w hv veh in traf, sequela +C2892489|T037|AB|V24.5|ICD10CM|Motorcycle passenger injured in collision w hv veh in traf|Motorcycle passenger injured in collision w hv veh in traf +C2892489|T037|HT|V24.5|ICD10CM|Motorcycle passenger injured in collision with heavy transport vehicle or bus in traffic accident|Motorcycle passenger injured in collision with heavy transport vehicle or bus in traffic accident +C2892490|T037|AB|V24.5XXA|ICD10CM|Mtrcy passenger injured in collision w hv veh in traf, init|Mtrcy passenger injured in collision w hv veh in traf, init +C2892491|T037|AB|V24.5XXD|ICD10CM|Mtrcy passenger injured in collision w hv veh in traf, subs|Mtrcy passenger injured in collision w hv veh in traf, subs +C2892492|T037|AB|V24.5XXS|ICD10CM|Mtrcy passenger injured in clsn w hv veh in traf, sequela|Mtrcy passenger injured in clsn w hv veh in traf, sequela +C2892493|T037|AB|V24.9|ICD10CM|Unsp motorcycle rider injured in collision w hv veh in traf|Unsp motorcycle rider injured in collision w hv veh in traf +C2892494|T037|AB|V24.9XXA|ICD10CM|Unsp mtrcy rider injured in collision w hv veh in traf, init|Unsp mtrcy rider injured in collision w hv veh in traf, init +C2892495|T037|AB|V24.9XXD|ICD10CM|Unsp mtrcy rider injured in collision w hv veh in traf, subs|Unsp mtrcy rider injured in collision w hv veh in traf, subs +C2892496|T037|AB|V24.9XXS|ICD10CM|Unsp mtrcy rider injured in clsn w hv veh in traf, sequela|Unsp mtrcy rider injured in clsn w hv veh in traf, sequela +C0476872|T037|AB|V25|ICD10CM|Motorcycle rider injured in collision w rail trn/veh|Motorcycle rider injured in collision w rail trn/veh +C0476872|T037|HT|V25|ICD10CM|Motorcycle rider injured in collision with railway train or railway vehicle|Motorcycle rider injured in collision with railway train or railway vehicle +C0476872|T037|HT|V25|ICD10|Motorcycle rider injured in collision with railway train or railway vehicle|Motorcycle rider injured in collision with railway train or railway vehicle +C2892497|T037|HT|V25.0|ICD10CM|Motorcycle driver injured in collision with railway train or railway vehicle in nontraffic accident|Motorcycle driver injured in collision with railway train or railway vehicle in nontraffic accident +C2892497|T037|AB|V25.0|ICD10CM|Mtrcy driver injured in collision w rail trn/veh nontraf|Mtrcy driver injured in collision w rail trn/veh nontraf +C2892498|T037|AB|V25.0XXA|ICD10CM|Mtrcy driver injured in clsn w rail trn/veh nontraf, init|Mtrcy driver injured in clsn w rail trn/veh nontraf, init +C2892499|T037|AB|V25.0XXD|ICD10CM|Mtrcy driver injured in clsn w rail trn/veh nontraf, subs|Mtrcy driver injured in clsn w rail trn/veh nontraf, subs +C2892500|T037|AB|V25.0XXS|ICD10CM|Mtrcy driver injured in clsn w rail trn/veh nontraf, sequela|Mtrcy driver injured in clsn w rail trn/veh nontraf, sequela +C2892501|T037|AB|V25.1|ICD10CM|Mtrcy passenger injured in collision w rail trn/veh nontraf|Mtrcy passenger injured in collision w rail trn/veh nontraf +C2892502|T037|AB|V25.1XXA|ICD10CM|Mtrcy passenger injured in clsn w rail trn/veh nontraf, init|Mtrcy passenger injured in clsn w rail trn/veh nontraf, init +C2892503|T037|AB|V25.1XXD|ICD10CM|Mtrcy passenger injured in clsn w rail trn/veh nontraf, subs|Mtrcy passenger injured in clsn w rail trn/veh nontraf, subs +C2892504|T037|AB|V25.1XXS|ICD10CM|Mtrcy pasngr injured in clsn w rail trn/veh nontraf, sequela|Mtrcy pasngr injured in clsn w rail trn/veh nontraf, sequela +C2892505|T037|AB|V25.2|ICD10CM|Unsp mtrcy rider injured in collision w rail trn/veh nontraf|Unsp mtrcy rider injured in collision w rail trn/veh nontraf +C2892506|T037|AB|V25.2XXA|ICD10CM|Unsp mtrcy rider inj in clsn w rail trn/veh nontraf, init|Unsp mtrcy rider inj in clsn w rail trn/veh nontraf, init +C2892507|T037|AB|V25.2XXD|ICD10CM|Unsp mtrcy rider inj in clsn w rail trn/veh nontraf, subs|Unsp mtrcy rider inj in clsn w rail trn/veh nontraf, subs +C2892508|T037|AB|V25.2XXS|ICD10CM|Unsp mtrcy rider inj in clsn w rail trn/veh nontraf, sequela|Unsp mtrcy rider inj in clsn w rail trn/veh nontraf, sequela +C2892509|T037|HT|V25.3|ICD10CM|Person boarding or alighting a motorcycle injured in collision with railway train or railway vehicle|Person boarding or alighting a motorcycle injured in collision with railway train or railway vehicle +C2892509|T037|AB|V25.3|ICD10CM|Prsn brd/alit mtrcy injured in collision w rail trn/veh|Prsn brd/alit mtrcy injured in collision w rail trn/veh +C2892510|T037|AB|V25.3XXA|ICD10CM|Prsn brd/alit mtrcy injured in clsn w rail trn/veh, init|Prsn brd/alit mtrcy injured in clsn w rail trn/veh, init +C2892511|T037|AB|V25.3XXD|ICD10CM|Prsn brd/alit mtrcy injured in clsn w rail trn/veh, subs|Prsn brd/alit mtrcy injured in clsn w rail trn/veh, subs +C2892512|T037|AB|V25.3XXS|ICD10CM|Prsn brd/alit mtrcy injured in clsn w rail trn/veh, sequela|Prsn brd/alit mtrcy injured in clsn w rail trn/veh, sequela +C2892513|T037|HT|V25.4|ICD10CM|Motorcycle driver injured in collision with railway train or railway vehicle in traffic accident|Motorcycle driver injured in collision with railway train or railway vehicle in traffic accident +C2892513|T037|AB|V25.4|ICD10CM|Mtrcy driver injured in collision w rail trn/veh in traf|Mtrcy driver injured in collision w rail trn/veh in traf +C2892514|T037|AB|V25.4XXA|ICD10CM|Mtrcy driver injured in clsn w rail trn/veh in traf, init|Mtrcy driver injured in clsn w rail trn/veh in traf, init +C2892515|T037|AB|V25.4XXD|ICD10CM|Mtrcy driver injured in clsn w rail trn/veh in traf, subs|Mtrcy driver injured in clsn w rail trn/veh in traf, subs +C2892516|T037|AB|V25.4XXS|ICD10CM|Mtrcy driver injured in clsn w rail trn/veh in traf, sequela|Mtrcy driver injured in clsn w rail trn/veh in traf, sequela +C2892517|T037|HT|V25.5|ICD10CM|Motorcycle passenger injured in collision with railway train or railway vehicle in traffic accident|Motorcycle passenger injured in collision with railway train or railway vehicle in traffic accident +C2892517|T037|AB|V25.5|ICD10CM|Mtrcy passenger injured in collision w rail trn/veh in traf|Mtrcy passenger injured in collision w rail trn/veh in traf +C2892518|T037|AB|V25.5XXA|ICD10CM|Mtrcy passenger injured in clsn w rail trn/veh in traf, init|Mtrcy passenger injured in clsn w rail trn/veh in traf, init +C2892519|T037|AB|V25.5XXD|ICD10CM|Mtrcy passenger injured in clsn w rail trn/veh in traf, subs|Mtrcy passenger injured in clsn w rail trn/veh in traf, subs +C2892520|T037|AB|V25.5XXS|ICD10CM|Mtrcy pasngr injured in clsn w rail trn/veh in traf, sequela|Mtrcy pasngr injured in clsn w rail trn/veh in traf, sequela +C2892521|T037|AB|V25.9|ICD10CM|Unsp mtrcy rider injured in collision w rail trn/veh in traf|Unsp mtrcy rider injured in collision w rail trn/veh in traf +C2892522|T037|AB|V25.9XXA|ICD10CM|Unsp mtrcy rider inj in clsn w rail trn/veh in traf, init|Unsp mtrcy rider inj in clsn w rail trn/veh in traf, init +C2892523|T037|AB|V25.9XXD|ICD10CM|Unsp mtrcy rider inj in clsn w rail trn/veh in traf, subs|Unsp mtrcy rider inj in clsn w rail trn/veh in traf, subs +C2892524|T037|AB|V25.9XXS|ICD10CM|Unsp mtrcy rider inj in clsn w rail trn/veh in traf, sequela|Unsp mtrcy rider inj in clsn w rail trn/veh in traf, sequela +C4283914|T037|ET|V26|ICD10CM|collision with animal-drawn vehicle, animal being ridden, streetcar|collision with animal-drawn vehicle, animal being ridden, streetcar +C0476880|T037|AB|V26|ICD10CM|Motorcycle rider injured in collision w oth nonmotor vehicle|Motorcycle rider injured in collision w oth nonmotor vehicle +C0476880|T037|HT|V26|ICD10CM|Motorcycle rider injured in collision with other nonmotor vehicle|Motorcycle rider injured in collision with other nonmotor vehicle +C0476880|T037|HT|V26|ICD10|Motorcycle rider injured in collision with other nonmotor vehicle|Motorcycle rider injured in collision with other nonmotor vehicle +C2892525|T037|HT|V26.0|ICD10CM|Motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident|Motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident +C0476881|T037|PT|V26.0|ICD10|Motorcycle rider injured in collision with other nonmotor vehicle, driver, nontraffic accident|Motorcycle rider injured in collision with other nonmotor vehicle, driver, nontraffic accident +C2892525|T037|AB|V26.0|ICD10CM|Mtrcy driver injured in collision w nonmtr vehicle nontraf|Mtrcy driver injured in collision w nonmtr vehicle nontraf +C2892526|T037|AB|V26.0XXA|ICD10CM|Mtrcy driver injured in clsn w nonmtr vehicle nontraf, init|Mtrcy driver injured in clsn w nonmtr vehicle nontraf, init +C2892527|T037|AB|V26.0XXD|ICD10CM|Mtrcy driver injured in clsn w nonmtr vehicle nontraf, subs|Mtrcy driver injured in clsn w nonmtr vehicle nontraf, subs +C2892528|T037|PT|V26.0XXS|ICD10CM|Motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela|Motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela +C2892528|T037|AB|V26.0XXS|ICD10CM|Mtrcy driver inj in clsn w nonmtr vehicle nontraf, sequela|Mtrcy driver inj in clsn w nonmtr vehicle nontraf, sequela +C2892529|T037|HT|V26.1|ICD10CM|Motorcycle passenger injured in collision with other nonmotor vehicle in nontraffic accident|Motorcycle passenger injured in collision with other nonmotor vehicle in nontraffic accident +C0476882|T037|PT|V26.1|ICD10|Motorcycle rider injured in collision with other nonmotor vehicle, passenger, nontraffic accident|Motorcycle rider injured in collision with other nonmotor vehicle, passenger, nontraffic accident +C2892529|T037|AB|V26.1|ICD10CM|Mtrcy passenger injured in clsn w nonmtr vehicle nontraf|Mtrcy passenger injured in clsn w nonmtr vehicle nontraf +C2892530|T037|AB|V26.1XXA|ICD10CM|Mtrcy pasngr injured in clsn w nonmtr vehicle nontraf, init|Mtrcy pasngr injured in clsn w nonmtr vehicle nontraf, init +C2892531|T037|AB|V26.1XXD|ICD10CM|Mtrcy pasngr injured in clsn w nonmtr vehicle nontraf, subs|Mtrcy pasngr injured in clsn w nonmtr vehicle nontraf, subs +C2892532|T037|AB|V26.1XXS|ICD10CM|Mtrcy pasngr inj in clsn w nonmtr vehicle nontraf, sequela|Mtrcy pasngr inj in clsn w nonmtr vehicle nontraf, sequela +C2892533|T037|AB|V26.2|ICD10CM|Unsp mtrcy rider injured in clsn w nonmtr vehicle nontraf|Unsp mtrcy rider injured in clsn w nonmtr vehicle nontraf +C2892533|T037|HT|V26.2|ICD10CM|Unspecified motorcycle rider injured in collision with other nonmotor vehicle in nontraffic accident|Unspecified motorcycle rider injured in collision with other nonmotor vehicle in nontraffic accident +C2892534|T037|AB|V26.2XXA|ICD10CM|Unsp mtrcy rider inj in clsn w nonmtr vehicle nontraf, init|Unsp mtrcy rider inj in clsn w nonmtr vehicle nontraf, init +C2892535|T037|AB|V26.2XXD|ICD10CM|Unsp mtrcy rider inj in clsn w nonmtr vehicle nontraf, subs|Unsp mtrcy rider inj in clsn w nonmtr vehicle nontraf, subs +C2892536|T037|AB|V26.2XXS|ICD10CM|Unsp mtrcy rider inj in clsn w nonmtr vehicle nontraf, sqla|Unsp mtrcy rider inj in clsn w nonmtr vehicle nontraf, sqla +C0476884|T037|PT|V26.3|ICD10|Motorcycle rider injured in collision with other nonmotor vehicle, while boarding or alighting|Motorcycle rider injured in collision with other nonmotor vehicle, while boarding or alighting +C2892537|T037|HT|V26.3|ICD10CM|Person boarding or alighting a motorcycle injured in collision with other nonmotor vehicle|Person boarding or alighting a motorcycle injured in collision with other nonmotor vehicle +C2892537|T037|AB|V26.3|ICD10CM|Prsn brd/alit mtrcy injured in collision w nonmtr vehicle|Prsn brd/alit mtrcy injured in collision w nonmtr vehicle +C2892538|T037|AB|V26.3XXA|ICD10CM|Prsn brd/alit mtrcy injured in clsn w nonmtr vehicle, init|Prsn brd/alit mtrcy injured in clsn w nonmtr vehicle, init +C2892539|T037|AB|V26.3XXD|ICD10CM|Prsn brd/alit mtrcy injured in clsn w nonmtr vehicle, subs|Prsn brd/alit mtrcy injured in clsn w nonmtr vehicle, subs +C2892540|T037|PT|V26.3XXS|ICD10CM|Person boarding or alighting a motorcycle injured in collision with other nonmotor vehicle, sequela|Person boarding or alighting a motorcycle injured in collision with other nonmotor vehicle, sequela +C2892540|T037|AB|V26.3XXS|ICD10CM|Prsn brd/alit mtrcy inj in clsn w nonmtr vehicle, sequela|Prsn brd/alit mtrcy inj in clsn w nonmtr vehicle, sequela +C2892541|T037|HT|V26.4|ICD10CM|Motorcycle driver injured in collision with other nonmotor vehicle in traffic accident|Motorcycle driver injured in collision with other nonmotor vehicle in traffic accident +C0476885|T037|PT|V26.4|ICD10|Motorcycle rider injured in collision with other nonmotor vehicle, driver, traffic accident|Motorcycle rider injured in collision with other nonmotor vehicle, driver, traffic accident +C2892541|T037|AB|V26.4|ICD10CM|Mtrcy driver injured in collision w nonmtr vehicle in traf|Mtrcy driver injured in collision w nonmtr vehicle in traf +C2892542|T037|AB|V26.4XXA|ICD10CM|Mtrcy driver injured in clsn w nonmtr vehicle in traf, init|Mtrcy driver injured in clsn w nonmtr vehicle in traf, init +C2892543|T037|AB|V26.4XXD|ICD10CM|Mtrcy driver injured in clsn w nonmtr vehicle in traf, subs|Mtrcy driver injured in clsn w nonmtr vehicle in traf, subs +C2892544|T037|PT|V26.4XXS|ICD10CM|Motorcycle driver injured in collision with other nonmotor vehicle in traffic accident, sequela|Motorcycle driver injured in collision with other nonmotor vehicle in traffic accident, sequela +C2892544|T037|AB|V26.4XXS|ICD10CM|Mtrcy driver inj in clsn w nonmtr vehicle in traf, sequela|Mtrcy driver inj in clsn w nonmtr vehicle in traf, sequela +C2892545|T037|HT|V26.5|ICD10CM|Motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident|Motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident +C0476886|T037|PT|V26.5|ICD10|Motorcycle rider injured in collision with other nonmotor vehicle, passenger, traffic accident|Motorcycle rider injured in collision with other nonmotor vehicle, passenger, traffic accident +C2892545|T037|AB|V26.5|ICD10CM|Mtrcy passenger injured in clsn w nonmtr vehicle in traf|Mtrcy passenger injured in clsn w nonmtr vehicle in traf +C2892546|T037|AB|V26.5XXA|ICD10CM|Mtrcy pasngr injured in clsn w nonmtr vehicle in traf, init|Mtrcy pasngr injured in clsn w nonmtr vehicle in traf, init +C2892547|T037|AB|V26.5XXD|ICD10CM|Mtrcy pasngr injured in clsn w nonmtr vehicle in traf, subs|Mtrcy pasngr injured in clsn w nonmtr vehicle in traf, subs +C2892548|T037|PT|V26.5XXS|ICD10CM|Motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident, sequela|Motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident, sequela +C2892548|T037|AB|V26.5XXS|ICD10CM|Mtrcy pasngr inj in clsn w nonmtr vehicle in traf, sequela|Mtrcy pasngr inj in clsn w nonmtr vehicle in traf, sequela +C2892549|T037|AB|V26.9|ICD10CM|Unsp mtrcy rider injured in clsn w nonmtr vehicle in traf|Unsp mtrcy rider injured in clsn w nonmtr vehicle in traf +C2892549|T037|HT|V26.9|ICD10CM|Unspecified motorcycle rider injured in collision with other nonmotor vehicle in traffic accident|Unspecified motorcycle rider injured in collision with other nonmotor vehicle in traffic accident +C2892550|T037|AB|V26.9XXA|ICD10CM|Unsp mtrcy rider inj in clsn w nonmtr vehicle in traf, init|Unsp mtrcy rider inj in clsn w nonmtr vehicle in traf, init +C2892551|T037|AB|V26.9XXD|ICD10CM|Unsp mtrcy rider inj in clsn w nonmtr vehicle in traf, subs|Unsp mtrcy rider inj in clsn w nonmtr vehicle in traf, subs +C2892552|T037|AB|V26.9XXS|ICD10CM|Unsp mtrcy rider inj in clsn w nonmtr vehicle in traf, sqla|Unsp mtrcy rider inj in clsn w nonmtr vehicle in traf, sqla +C0476888|T037|AB|V27|ICD10CM|Motorcycle rider injured in collision w statnry object|Motorcycle rider injured in collision w statnry object +C0476888|T037|HT|V27|ICD10CM|Motorcycle rider injured in collision with fixed or stationary object|Motorcycle rider injured in collision with fixed or stationary object +C0476888|T037|HT|V27|ICD10|Motorcycle rider injured in collision with fixed or stationary object|Motorcycle rider injured in collision with fixed or stationary object +C2892553|T037|HT|V27.0|ICD10CM|Motorcycle driver injured in collision with fixed or stationary object in nontraffic accident|Motorcycle driver injured in collision with fixed or stationary object in nontraffic accident +C0476889|T037|PT|V27.0|ICD10|Motorcycle rider injured in collision with fixed or stationary object, driver, nontraffic accident|Motorcycle rider injured in collision with fixed or stationary object, driver, nontraffic accident +C2892553|T037|AB|V27.0|ICD10CM|Mtrcy driver injured in collision w statnry object nontraf|Mtrcy driver injured in collision w statnry object nontraf +C2892554|T037|AB|V27.0XXA|ICD10CM|Mtrcy driver injured in clsn w statnry object nontraf, init|Mtrcy driver injured in clsn w statnry object nontraf, init +C2892555|T037|AB|V27.0XXD|ICD10CM|Mtrcy driver injured in clsn w statnry object nontraf, subs|Mtrcy driver injured in clsn w statnry object nontraf, subs +C2892556|T037|AB|V27.0XXS|ICD10CM|Mtrcy driver inj in clsn w statnry object nontraf, sequela|Mtrcy driver inj in clsn w statnry object nontraf, sequela +C2892557|T037|HT|V27.1|ICD10CM|Motorcycle passenger injured in collision with fixed or stationary object in nontraffic accident|Motorcycle passenger injured in collision with fixed or stationary object in nontraffic accident +C2892557|T037|AB|V27.1|ICD10CM|Mtrcy passenger injured in clsn w statnry object nontraf|Mtrcy passenger injured in clsn w statnry object nontraf +C2892558|T037|AB|V27.1XXA|ICD10CM|Mtrcy pasngr injured in clsn w statnry object nontraf, init|Mtrcy pasngr injured in clsn w statnry object nontraf, init +C2892559|T037|AB|V27.1XXD|ICD10CM|Mtrcy pasngr injured in clsn w statnry object nontraf, subs|Mtrcy pasngr injured in clsn w statnry object nontraf, subs +C2892560|T037|AB|V27.1XXS|ICD10CM|Mtrcy pasngr inj in clsn w statnry object nontraf, sequela|Mtrcy pasngr inj in clsn w statnry object nontraf, sequela +C2892561|T037|AB|V27.2|ICD10CM|Unsp mtrcy rider injured in clsn w statnry object nontraf|Unsp mtrcy rider injured in clsn w statnry object nontraf +C2892562|T037|AB|V27.2XXA|ICD10CM|Unsp mtrcy rider inj in clsn w statnry object nontraf, init|Unsp mtrcy rider inj in clsn w statnry object nontraf, init +C2892563|T037|AB|V27.2XXD|ICD10CM|Unsp mtrcy rider inj in clsn w statnry object nontraf, subs|Unsp mtrcy rider inj in clsn w statnry object nontraf, subs +C2892564|T037|AB|V27.2XXS|ICD10CM|Unsp mtrcy rider inj in clsn w statnry object nontraf, sqla|Unsp mtrcy rider inj in clsn w statnry object nontraf, sqla +C0476892|T037|PT|V27.3|ICD10|Motorcycle rider injured in collision with fixed or stationary object, while boarding or alighting|Motorcycle rider injured in collision with fixed or stationary object, while boarding or alighting +C2892565|T037|HT|V27.3|ICD10CM|Person boarding or alighting a motorcycle injured in collision with fixed or stationary object|Person boarding or alighting a motorcycle injured in collision with fixed or stationary object +C2892565|T037|AB|V27.3|ICD10CM|Prsn brd/alit mtrcy injured in collision w statnry object|Prsn brd/alit mtrcy injured in collision w statnry object +C2892566|T037|AB|V27.3XXA|ICD10CM|Prsn brd/alit mtrcy injured in clsn w statnry object, init|Prsn brd/alit mtrcy injured in clsn w statnry object, init +C2892567|T037|AB|V27.3XXD|ICD10CM|Prsn brd/alit mtrcy injured in clsn w statnry object, subs|Prsn brd/alit mtrcy injured in clsn w statnry object, subs +C2892568|T037|AB|V27.3XXS|ICD10CM|Prsn brd/alit mtrcy inj in clsn w statnry object, sequela|Prsn brd/alit mtrcy inj in clsn w statnry object, sequela +C2892569|T037|HT|V27.4|ICD10CM|Motorcycle driver injured in collision with fixed or stationary object in traffic accident|Motorcycle driver injured in collision with fixed or stationary object in traffic accident +C0476893|T037|PT|V27.4|ICD10|Motorcycle rider injured in collision with fixed or stationary object, driver, traffic accident|Motorcycle rider injured in collision with fixed or stationary object, driver, traffic accident +C2892569|T037|AB|V27.4|ICD10CM|Mtrcy driver injured in collision w statnry object in traf|Mtrcy driver injured in collision w statnry object in traf +C2892570|T037|AB|V27.4XXA|ICD10CM|Mtrcy driver injured in clsn w statnry object in traf, init|Mtrcy driver injured in clsn w statnry object in traf, init +C2892571|T037|AB|V27.4XXD|ICD10CM|Mtrcy driver injured in clsn w statnry object in traf, subs|Mtrcy driver injured in clsn w statnry object in traf, subs +C2892572|T037|PT|V27.4XXS|ICD10CM|Motorcycle driver injured in collision with fixed or stationary object in traffic accident, sequela|Motorcycle driver injured in collision with fixed or stationary object in traffic accident, sequela +C2892572|T037|AB|V27.4XXS|ICD10CM|Mtrcy driver inj in clsn w statnry object in traf, sequela|Mtrcy driver inj in clsn w statnry object in traf, sequela +C2892573|T037|HT|V27.5|ICD10CM|Motorcycle passenger injured in collision with fixed or stationary object in traffic accident|Motorcycle passenger injured in collision with fixed or stationary object in traffic accident +C0476894|T037|PT|V27.5|ICD10|Motorcycle rider injured in collision with fixed or stationary object, passenger, traffic accident|Motorcycle rider injured in collision with fixed or stationary object, passenger, traffic accident +C2892573|T037|AB|V27.5|ICD10CM|Mtrcy passenger injured in clsn w statnry object in traf|Mtrcy passenger injured in clsn w statnry object in traf +C2892574|T037|AB|V27.5XXA|ICD10CM|Mtrcy pasngr injured in clsn w statnry object in traf, init|Mtrcy pasngr injured in clsn w statnry object in traf, init +C2892575|T037|AB|V27.5XXD|ICD10CM|Mtrcy pasngr injured in clsn w statnry object in traf, subs|Mtrcy pasngr injured in clsn w statnry object in traf, subs +C2892576|T037|AB|V27.5XXS|ICD10CM|Mtrcy pasngr inj in clsn w statnry object in traf, sequela|Mtrcy pasngr inj in clsn w statnry object in traf, sequela +C2892577|T037|AB|V27.9|ICD10CM|Unsp mtrcy rider injured in clsn w statnry object in traf|Unsp mtrcy rider injured in clsn w statnry object in traf +C2892578|T037|AB|V27.9XXA|ICD10CM|Unsp mtrcy rider inj in clsn w statnry object in traf, init|Unsp mtrcy rider inj in clsn w statnry object in traf, init +C2892579|T037|AB|V27.9XXD|ICD10CM|Unsp mtrcy rider inj in clsn w statnry object in traf, subs|Unsp mtrcy rider inj in clsn w statnry object in traf, subs +C2892580|T037|AB|V27.9XXS|ICD10CM|Unsp mtrcy rider inj in clsn w statnry object in traf, sqla|Unsp mtrcy rider inj in clsn w statnry object in traf, sqla +C4290421|T037|ET|V28|ICD10CM|fall or thrown from motorcycle (without antecedent collision)|fall or thrown from motorcycle (without antecedent collision) +C0476896|T037|HT|V28|ICD10|Motorcycle rider injured in noncollision transport accident|Motorcycle rider injured in noncollision transport accident +C0476896|T037|HT|V28|ICD10CM|Motorcycle rider injured in noncollision transport accident|Motorcycle rider injured in noncollision transport accident +C0476896|T037|AB|V28|ICD10CM|Motorcycle rider injured in noncollision transport accident|Motorcycle rider injured in noncollision transport accident +C4290422|T037|ET|V28|ICD10CM|overturning motorcycle NOS|overturning motorcycle NOS +C4290423|T037|ET|V28|ICD10CM|overturning motorcycle without collision|overturning motorcycle without collision +C2892584|T037|HT|V28.0|ICD10CM|Motorcycle driver injured in noncollision transport accident in nontraffic accident|Motorcycle driver injured in noncollision transport accident in nontraffic accident +C0476897|T037|PT|V28.0|ICD10|Motorcycle rider injured in noncollision transport accident, driver, nontraffic accident|Motorcycle rider injured in noncollision transport accident, driver, nontraffic accident +C2892584|T037|AB|V28.0|ICD10CM|Mtrcy driver injured in nonclsn transport accident nontraf|Mtrcy driver injured in nonclsn transport accident nontraf +C2892585|T037|AB|V28.0XXA|ICD10CM|Mtrcy driver injured in nonclsn trnsp accident nontraf, init|Mtrcy driver injured in nonclsn trnsp accident nontraf, init +C2892586|T037|AB|V28.0XXD|ICD10CM|Mtrcy driver injured in nonclsn trnsp accident nontraf, subs|Mtrcy driver injured in nonclsn trnsp accident nontraf, subs +C2892587|T037|PT|V28.0XXS|ICD10CM|Motorcycle driver injured in noncollision transport accident in nontraffic accident, sequela|Motorcycle driver injured in noncollision transport accident in nontraffic accident, sequela +C2892587|T037|AB|V28.0XXS|ICD10CM|Mtrcy driver injured in nonclsn trnsp acc nontraf, sequela|Mtrcy driver injured in nonclsn trnsp acc nontraf, sequela +C2892588|T037|HT|V28.1|ICD10CM|Motorcycle passenger injured in noncollision transport accident in nontraffic accident|Motorcycle passenger injured in noncollision transport accident in nontraffic accident +C0476898|T037|PT|V28.1|ICD10|Motorcycle rider injured in noncollision transport accident, passenger, nontraffic accident|Motorcycle rider injured in noncollision transport accident, passenger, nontraffic accident +C2892588|T037|AB|V28.1|ICD10CM|Mtrcy pasngr injured in nonclsn transport accident nontraf|Mtrcy pasngr injured in nonclsn transport accident nontraf +C2892589|T037|AB|V28.1XXA|ICD10CM|Mtrcy pasngr injured in nonclsn trnsp accident nontraf, init|Mtrcy pasngr injured in nonclsn trnsp accident nontraf, init +C2892590|T037|AB|V28.1XXD|ICD10CM|Mtrcy pasngr injured in nonclsn trnsp accident nontraf, subs|Mtrcy pasngr injured in nonclsn trnsp accident nontraf, subs +C2892591|T037|PT|V28.1XXS|ICD10CM|Motorcycle passenger injured in noncollision transport accident in nontraffic accident, sequela|Motorcycle passenger injured in noncollision transport accident in nontraffic accident, sequela +C2892591|T037|AB|V28.1XXS|ICD10CM|Mtrcy pasngr injured in nonclsn trnsp acc nontraf, sequela|Mtrcy pasngr injured in nonclsn trnsp acc nontraf, sequela +C2892592|T037|AB|V28.2|ICD10CM|Unsp mtrcy rider injured in nonclsn trnsp accident nontraf|Unsp mtrcy rider injured in nonclsn trnsp accident nontraf +C2892592|T037|HT|V28.2|ICD10CM|Unspecified motorcycle rider injured in noncollision transport accident in nontraffic accident|Unspecified motorcycle rider injured in noncollision transport accident in nontraffic accident +C2892593|T037|AB|V28.2XXA|ICD10CM|Unsp mtrcy rider injured in nonclsn trnsp acc nontraf, init|Unsp mtrcy rider injured in nonclsn trnsp acc nontraf, init +C2892594|T037|AB|V28.2XXD|ICD10CM|Unsp mtrcy rider injured in nonclsn trnsp acc nontraf, subs|Unsp mtrcy rider injured in nonclsn trnsp acc nontraf, subs +C2892595|T037|AB|V28.2XXS|ICD10CM|Unsp mtrcy rider inj in nonclsn trnsp acc nontraf, sequela|Unsp mtrcy rider inj in nonclsn trnsp acc nontraf, sequela +C0476900|T037|PT|V28.3|ICD10|Motorcycle rider injured in noncollision transport accident, while boarding or alighting|Motorcycle rider injured in noncollision transport accident, while boarding or alighting +C2892596|T037|HT|V28.3|ICD10CM|Person boarding or alighting a motorcycle injured in noncollision transport accident|Person boarding or alighting a motorcycle injured in noncollision transport accident +C2892596|T037|AB|V28.3|ICD10CM|Prsn brd/alit mtrcy injured in nonclsn transport accident|Prsn brd/alit mtrcy injured in nonclsn transport accident +C2892597|T037|AB|V28.3XXA|ICD10CM|Prsn brd/alit mtrcy injured in nonclsn trnsp accident, init|Prsn brd/alit mtrcy injured in nonclsn trnsp accident, init +C2892598|T037|AB|V28.3XXD|ICD10CM|Prsn brd/alit mtrcy injured in nonclsn trnsp accident, subs|Prsn brd/alit mtrcy injured in nonclsn trnsp accident, subs +C2892599|T037|PT|V28.3XXS|ICD10CM|Person boarding or alighting a motorcycle injured in noncollision transport accident, sequela|Person boarding or alighting a motorcycle injured in noncollision transport accident, sequela +C2892599|T037|AB|V28.3XXS|ICD10CM|Prsn brd/alit mtrcy injured in nonclsn trnsp acc, sequela|Prsn brd/alit mtrcy injured in nonclsn trnsp acc, sequela +C2892600|T037|HT|V28.4|ICD10CM|Motorcycle driver injured in noncollision transport accident in traffic accident|Motorcycle driver injured in noncollision transport accident in traffic accident +C0476901|T037|PT|V28.4|ICD10|Motorcycle rider injured in noncollision transport accident, driver, traffic accident|Motorcycle rider injured in noncollision transport accident, driver, traffic accident +C2892600|T037|AB|V28.4|ICD10CM|Mtrcy driver injured in nonclsn transport accident in traf|Mtrcy driver injured in nonclsn transport accident in traf +C2892601|T037|PT|V28.4XXA|ICD10CM|Motorcycle driver injured in noncollision transport accident in traffic accident, initial encounter|Motorcycle driver injured in noncollision transport accident in traffic accident, initial encounter +C2892601|T037|AB|V28.4XXA|ICD10CM|Mtrcy driver injured in nonclsn trnsp accident in traf, init|Mtrcy driver injured in nonclsn trnsp accident in traf, init +C2892602|T037|AB|V28.4XXD|ICD10CM|Mtrcy driver injured in nonclsn trnsp accident in traf, subs|Mtrcy driver injured in nonclsn trnsp accident in traf, subs +C2892603|T037|PT|V28.4XXS|ICD10CM|Motorcycle driver injured in noncollision transport accident in traffic accident, sequela|Motorcycle driver injured in noncollision transport accident in traffic accident, sequela +C2892603|T037|AB|V28.4XXS|ICD10CM|Mtrcy driver injured in nonclsn trnsp acc in traf, sequela|Mtrcy driver injured in nonclsn trnsp acc in traf, sequela +C2892604|T037|HT|V28.5|ICD10CM|Motorcycle passenger injured in noncollision transport accident in traffic accident|Motorcycle passenger injured in noncollision transport accident in traffic accident +C0476902|T037|PT|V28.5|ICD10|Motorcycle rider injured in noncollision transport accident, passenger, traffic accident|Motorcycle rider injured in noncollision transport accident, passenger, traffic accident +C2892604|T037|AB|V28.5|ICD10CM|Mtrcy pasngr injured in nonclsn transport accident in traf|Mtrcy pasngr injured in nonclsn transport accident in traf +C2892605|T037|AB|V28.5XXA|ICD10CM|Mtrcy pasngr injured in nonclsn trnsp accident in traf, init|Mtrcy pasngr injured in nonclsn trnsp accident in traf, init +C2892606|T037|AB|V28.5XXD|ICD10CM|Mtrcy pasngr injured in nonclsn trnsp accident in traf, subs|Mtrcy pasngr injured in nonclsn trnsp accident in traf, subs +C2892607|T037|PT|V28.5XXS|ICD10CM|Motorcycle passenger injured in noncollision transport accident in traffic accident, sequela|Motorcycle passenger injured in noncollision transport accident in traffic accident, sequela +C2892607|T037|AB|V28.5XXS|ICD10CM|Mtrcy pasngr injured in nonclsn trnsp acc in traf, sequela|Mtrcy pasngr injured in nonclsn trnsp acc in traf, sequela +C2892608|T037|AB|V28.9|ICD10CM|Unsp mtrcy rider injured in nonclsn trnsp accident in traf|Unsp mtrcy rider injured in nonclsn trnsp accident in traf +C2892608|T037|HT|V28.9|ICD10CM|Unspecified motorcycle rider injured in noncollision transport accident in traffic accident|Unspecified motorcycle rider injured in noncollision transport accident in traffic accident +C2892609|T037|AB|V28.9XXA|ICD10CM|Unsp mtrcy rider injured in nonclsn trnsp acc in traf, init|Unsp mtrcy rider injured in nonclsn trnsp acc in traf, init +C2892610|T037|AB|V28.9XXD|ICD10CM|Unsp mtrcy rider injured in nonclsn trnsp acc in traf, subs|Unsp mtrcy rider injured in nonclsn trnsp acc in traf, subs +C2892611|T037|AB|V28.9XXS|ICD10CM|Unsp mtrcy rider inj in nonclsn trnsp acc in traf, sequela|Unsp mtrcy rider inj in nonclsn trnsp acc in traf, sequela +C2892611|T037|PT|V28.9XXS|ICD10CM|Unspecified motorcycle rider injured in noncollision transport accident in traffic accident, sequela|Unspecified motorcycle rider injured in noncollision transport accident in traffic accident, sequela +C0476904|T037|AB|V29|ICD10CM|Motorcycle rider injured in oth and unsp transport accidents|Motorcycle rider injured in oth and unsp transport accidents +C0476904|T037|HT|V29|ICD10CM|Motorcycle rider injured in other and unspecified transport accidents|Motorcycle rider injured in other and unspecified transport accidents +C0476904|T037|HT|V29|ICD10|Motorcycle rider injured in other and unspecified transport accidents|Motorcycle rider injured in other and unspecified transport accidents +C0476905|T037|PT|V29.0|ICD10|Driver injured in collision with other and unspecified motor vehicles in nontraffic accident|Driver injured in collision with other and unspecified motor vehicles in nontraffic accident +C0476905|T037|AB|V29.0|ICD10CM|Mtrcy driver injured in collision w oth and unsp mv nontraf|Mtrcy driver injured in collision w oth and unsp mv nontraf +C2892612|T037|AB|V29.00|ICD10CM|Motorcycle driver injured in collision w unsp mv nontraf|Motorcycle driver injured in collision w unsp mv nontraf +C2892612|T037|HT|V29.00|ICD10CM|Motorcycle driver injured in collision with unspecified motor vehicles in nontraffic accident|Motorcycle driver injured in collision with unspecified motor vehicles in nontraffic accident +C2892613|T037|AB|V29.00XA|ICD10CM|Mtrcy driver injured in collision w unsp mv nontraf, init|Mtrcy driver injured in collision w unsp mv nontraf, init +C2892614|T037|AB|V29.00XD|ICD10CM|Mtrcy driver injured in collision w unsp mv nontraf, subs|Mtrcy driver injured in collision w unsp mv nontraf, subs +C2892615|T037|AB|V29.00XS|ICD10CM|Mtrcy driver injured in collision w unsp mv nontraf, sequela|Mtrcy driver injured in collision w unsp mv nontraf, sequela +C2892616|T037|AB|V29.09|ICD10CM|Motorcycle driver injured in collision w oth mv nontraf|Motorcycle driver injured in collision w oth mv nontraf +C2892616|T037|HT|V29.09|ICD10CM|Motorcycle driver injured in collision with other motor vehicles in nontraffic accident|Motorcycle driver injured in collision with other motor vehicles in nontraffic accident +C2892617|T037|AB|V29.09XA|ICD10CM|Mtrcy driver injured in collision w oth mv nontraf, init|Mtrcy driver injured in collision w oth mv nontraf, init +C2892618|T037|AB|V29.09XD|ICD10CM|Mtrcy driver injured in collision w oth mv nontraf, subs|Mtrcy driver injured in collision w oth mv nontraf, subs +C2892619|T037|PT|V29.09XS|ICD10CM|Motorcycle driver injured in collision with other motor vehicles in nontraffic accident, sequela|Motorcycle driver injured in collision with other motor vehicles in nontraffic accident, sequela +C2892619|T037|AB|V29.09XS|ICD10CM|Mtrcy driver injured in collision w oth mv nontraf, sequela|Mtrcy driver injured in collision w oth mv nontraf, sequela +C0476906|T037|AB|V29.1|ICD10CM|Mtrcy passenger injured in clsn w oth and unsp mv nontraf|Mtrcy passenger injured in clsn w oth and unsp mv nontraf +C0476906|T037|PT|V29.1|ICD10|Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident|Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident +C2892620|T037|AB|V29.10|ICD10CM|Motorcycle passenger injured in collision w unsp mv nontraf|Motorcycle passenger injured in collision w unsp mv nontraf +C2892620|T037|HT|V29.10|ICD10CM|Motorcycle passenger injured in collision with unspecified motor vehicles in nontraffic accident|Motorcycle passenger injured in collision with unspecified motor vehicles in nontraffic accident +C2892621|T037|AB|V29.10XA|ICD10CM|Mtrcy passenger injured in collision w unsp mv nontraf, init|Mtrcy passenger injured in collision w unsp mv nontraf, init +C2892622|T037|AB|V29.10XD|ICD10CM|Mtrcy passenger injured in collision w unsp mv nontraf, subs|Mtrcy passenger injured in collision w unsp mv nontraf, subs +C2892623|T037|AB|V29.10XS|ICD10CM|Mtrcy passenger injured in clsn w unsp mv nontraf, sequela|Mtrcy passenger injured in clsn w unsp mv nontraf, sequela +C2892624|T037|AB|V29.19|ICD10CM|Motorcycle passenger injured in collision w oth mv nontraf|Motorcycle passenger injured in collision w oth mv nontraf +C2892624|T037|HT|V29.19|ICD10CM|Motorcycle passenger injured in collision with other motor vehicles in nontraffic accident|Motorcycle passenger injured in collision with other motor vehicles in nontraffic accident +C2892625|T037|AB|V29.19XA|ICD10CM|Mtrcy passenger injured in collision w oth mv nontraf, init|Mtrcy passenger injured in collision w oth mv nontraf, init +C2892626|T037|AB|V29.19XD|ICD10CM|Mtrcy passenger injured in collision w oth mv nontraf, subs|Mtrcy passenger injured in collision w oth mv nontraf, subs +C2892627|T037|PT|V29.19XS|ICD10CM|Motorcycle passenger injured in collision with other motor vehicles in nontraffic accident, sequela|Motorcycle passenger injured in collision with other motor vehicles in nontraffic accident, sequela +C2892627|T037|AB|V29.19XS|ICD10CM|Mtrcy passenger injured in clsn w oth mv nontraf, sequela|Mtrcy passenger injured in clsn w oth mv nontraf, sequela +C0476907|T037|AB|V29.2|ICD10CM|Unsp mtrcy rider injured in clsn w oth and unsp mv nontraf|Unsp mtrcy rider injured in clsn w oth and unsp mv nontraf +C2892628|T037|ET|V29.20|ICD10CM|Motorcycle collision NOS, nontraffic|Motorcycle collision NOS, nontraffic +C2892629|T037|AB|V29.20|ICD10CM|Unsp motorcycle rider injured in collision w unsp mv nontraf|Unsp motorcycle rider injured in collision w unsp mv nontraf +C2892630|T037|AB|V29.20XA|ICD10CM|Unsp mtrcy rider injured in clsn w unsp mv nontraf, init|Unsp mtrcy rider injured in clsn w unsp mv nontraf, init +C2892631|T037|AB|V29.20XD|ICD10CM|Unsp mtrcy rider injured in clsn w unsp mv nontraf, subs|Unsp mtrcy rider injured in clsn w unsp mv nontraf, subs +C2892632|T037|AB|V29.20XS|ICD10CM|Unsp mtrcy rider injured in clsn w unsp mv nontraf, sequela|Unsp mtrcy rider injured in clsn w unsp mv nontraf, sequela +C0476905|T037|AB|V29.29|ICD10CM|Unsp motorcycle rider injured in collision w oth mv nontraf|Unsp motorcycle rider injured in collision w oth mv nontraf +C0476905|T037|HT|V29.29|ICD10CM|Unspecified motorcycle rider injured in collision with other motor vehicles in nontraffic accident|Unspecified motorcycle rider injured in collision with other motor vehicles in nontraffic accident +C2892633|T037|AB|V29.29XA|ICD10CM|Unsp mtrcy rider injured in collision w oth mv nontraf, init|Unsp mtrcy rider injured in collision w oth mv nontraf, init +C2892634|T037|AB|V29.29XD|ICD10CM|Unsp mtrcy rider injured in collision w oth mv nontraf, subs|Unsp mtrcy rider injured in collision w oth mv nontraf, subs +C2892635|T037|AB|V29.29XS|ICD10CM|Unsp mtrcy rider injured in clsn w oth mv nontraf, sequela|Unsp mtrcy rider injured in clsn w oth mv nontraf, sequela +C2892636|T037|ET|V29.3|ICD10CM|Motorcycle accident NOS, nontraffic|Motorcycle accident NOS, nontraffic +C2892638|T037|HT|V29.3|ICD10CM|Motorcycle rider (driver) (passenger) injured in unspecified nontraffic accident|Motorcycle rider (driver) (passenger) injured in unspecified nontraffic accident +C2892638|T037|AB|V29.3|ICD10CM|Motorcycle rider (driver) injured in unsp nontraf|Motorcycle rider (driver) injured in unsp nontraf +C0476908|T037|PT|V29.3|ICD10|Motorcycle rider [any] injured in unspecified nontraffic accident|Motorcycle rider [any] injured in unspecified nontraffic accident +C2892637|T037|ET|V29.3|ICD10CM|Motorcycle rider injured in nontraffic accident NOS|Motorcycle rider injured in nontraffic accident NOS +C2892639|T037|PT|V29.3XXA|ICD10CM|Motorcycle rider (driver) (passenger) injured in unspecified nontraffic accident, initial encounter|Motorcycle rider (driver) (passenger) injured in unspecified nontraffic accident, initial encounter +C2892639|T037|AB|V29.3XXA|ICD10CM|Motorcycle rider (driver) injured in unsp nontraf, init|Motorcycle rider (driver) injured in unsp nontraf, init +C2892640|T037|AB|V29.3XXD|ICD10CM|Motorcycle rider (driver) injured in unsp nontraf, subs|Motorcycle rider (driver) injured in unsp nontraf, subs +C2892641|T037|PT|V29.3XXS|ICD10CM|Motorcycle rider (driver) (passenger) injured in unspecified nontraffic accident, sequela|Motorcycle rider (driver) (passenger) injured in unspecified nontraffic accident, sequela +C2892641|T037|AB|V29.3XXS|ICD10CM|Motorcycle rider (driver) injured in unsp nontraf, sequela|Motorcycle rider (driver) injured in unsp nontraf, sequela +C0476909|T037|PT|V29.4|ICD10|Driver injured in collision with other and unspecified motor vehicles in traffic accident|Driver injured in collision with other and unspecified motor vehicles in traffic accident +C2892642|T037|HT|V29.4|ICD10CM|Motorcycle driver injured in collision with other and unspecified motor vehicles in traffic accident|Motorcycle driver injured in collision with other and unspecified motor vehicles in traffic accident +C2892642|T037|AB|V29.4|ICD10CM|Mtrcy driver injured in collision w oth and unsp mv in traf|Mtrcy driver injured in collision w oth and unsp mv in traf +C2892643|T037|AB|V29.40|ICD10CM|Motorcycle driver injured in collision w unsp mv in traf|Motorcycle driver injured in collision w unsp mv in traf +C2892643|T037|HT|V29.40|ICD10CM|Motorcycle driver injured in collision with unspecified motor vehicles in traffic accident|Motorcycle driver injured in collision with unspecified motor vehicles in traffic accident +C2892644|T037|AB|V29.40XA|ICD10CM|Mtrcy driver injured in collision w unsp mv in traf, init|Mtrcy driver injured in collision w unsp mv in traf, init +C2892645|T037|AB|V29.40XD|ICD10CM|Mtrcy driver injured in collision w unsp mv in traf, subs|Mtrcy driver injured in collision w unsp mv in traf, subs +C2892646|T037|PT|V29.40XS|ICD10CM|Motorcycle driver injured in collision with unspecified motor vehicles in traffic accident, sequela|Motorcycle driver injured in collision with unspecified motor vehicles in traffic accident, sequela +C2892646|T037|AB|V29.40XS|ICD10CM|Mtrcy driver injured in collision w unsp mv in traf, sequela|Mtrcy driver injured in collision w unsp mv in traf, sequela +C2892647|T037|AB|V29.49|ICD10CM|Motorcycle driver injured in collision w oth mv in traf|Motorcycle driver injured in collision w oth mv in traf +C2892647|T037|HT|V29.49|ICD10CM|Motorcycle driver injured in collision with other motor vehicles in traffic accident|Motorcycle driver injured in collision with other motor vehicles in traffic accident +C2892648|T037|AB|V29.49XA|ICD10CM|Mtrcy driver injured in collision w oth mv in traf, init|Mtrcy driver injured in collision w oth mv in traf, init +C2892649|T037|AB|V29.49XD|ICD10CM|Mtrcy driver injured in collision w oth mv in traf, subs|Mtrcy driver injured in collision w oth mv in traf, subs +C2892650|T037|PT|V29.49XS|ICD10CM|Motorcycle driver injured in collision with other motor vehicles in traffic accident, sequela|Motorcycle driver injured in collision with other motor vehicles in traffic accident, sequela +C2892650|T037|AB|V29.49XS|ICD10CM|Mtrcy driver injured in collision w oth mv in traf, sequela|Mtrcy driver injured in collision w oth mv in traf, sequela +C0476910|T037|AB|V29.5|ICD10CM|Mtrcy passenger injured in clsn w oth and unsp mv in traf|Mtrcy passenger injured in clsn w oth and unsp mv in traf +C0476910|T037|PT|V29.5|ICD10|Passenger injured in collision with other and unspecified motor vehicles in traffic accident|Passenger injured in collision with other and unspecified motor vehicles in traffic accident +C2892651|T037|AB|V29.50|ICD10CM|Motorcycle passenger injured in collision w unsp mv in traf|Motorcycle passenger injured in collision w unsp mv in traf +C2892651|T037|HT|V29.50|ICD10CM|Motorcycle passenger injured in collision with unspecified motor vehicles in traffic accident|Motorcycle passenger injured in collision with unspecified motor vehicles in traffic accident +C2892652|T037|AB|V29.50XA|ICD10CM|Mtrcy passenger injured in collision w unsp mv in traf, init|Mtrcy passenger injured in collision w unsp mv in traf, init +C2892653|T037|AB|V29.50XD|ICD10CM|Mtrcy passenger injured in collision w unsp mv in traf, subs|Mtrcy passenger injured in collision w unsp mv in traf, subs +C2892654|T037|AB|V29.50XS|ICD10CM|Mtrcy passenger injured in clsn w unsp mv in traf, sequela|Mtrcy passenger injured in clsn w unsp mv in traf, sequela +C2892655|T037|AB|V29.59|ICD10CM|Motorcycle passenger injured in collision w oth mv in traf|Motorcycle passenger injured in collision w oth mv in traf +C2892655|T037|HT|V29.59|ICD10CM|Motorcycle passenger injured in collision with other motor vehicles in traffic accident|Motorcycle passenger injured in collision with other motor vehicles in traffic accident +C2892656|T037|AB|V29.59XA|ICD10CM|Mtrcy passenger injured in collision w oth mv in traf, init|Mtrcy passenger injured in collision w oth mv in traf, init +C2892657|T037|AB|V29.59XD|ICD10CM|Mtrcy passenger injured in collision w oth mv in traf, subs|Mtrcy passenger injured in collision w oth mv in traf, subs +C2892658|T037|PT|V29.59XS|ICD10CM|Motorcycle passenger injured in collision with other motor vehicles in traffic accident, sequela|Motorcycle passenger injured in collision with other motor vehicles in traffic accident, sequela +C2892658|T037|AB|V29.59XS|ICD10CM|Mtrcy passenger injured in clsn w oth mv in traf, sequela|Mtrcy passenger injured in clsn w oth mv in traf, sequela +C0476911|T037|AB|V29.6|ICD10CM|Unsp mtrcy rider injured in clsn w oth and unsp mv in traf|Unsp mtrcy rider injured in clsn w oth and unsp mv in traf +C2892659|T037|ET|V29.60|ICD10CM|Motorcycle collision NOS (traffic)|Motorcycle collision NOS (traffic) +C2892660|T037|AB|V29.60|ICD10CM|Unsp motorcycle rider injured in collision w unsp mv in traf|Unsp motorcycle rider injured in collision w unsp mv in traf +C2892661|T037|AB|V29.60XA|ICD10CM|Unsp mtrcy rider injured in clsn w unsp mv in traf, init|Unsp mtrcy rider injured in clsn w unsp mv in traf, init +C2892662|T037|AB|V29.60XD|ICD10CM|Unsp mtrcy rider injured in clsn w unsp mv in traf, subs|Unsp mtrcy rider injured in clsn w unsp mv in traf, subs +C2892663|T037|AB|V29.60XS|ICD10CM|Unsp mtrcy rider injured in clsn w unsp mv in traf, sequela|Unsp mtrcy rider injured in clsn w unsp mv in traf, sequela +C0476909|T037|AB|V29.69|ICD10CM|Unsp motorcycle rider injured in collision w oth mv in traf|Unsp motorcycle rider injured in collision w oth mv in traf +C0476909|T037|HT|V29.69|ICD10CM|Unspecified motorcycle rider injured in collision with other motor vehicles in traffic accident|Unspecified motorcycle rider injured in collision with other motor vehicles in traffic accident +C2892664|T037|AB|V29.69XA|ICD10CM|Unsp mtrcy rider injured in collision w oth mv in traf, init|Unsp mtrcy rider injured in collision w oth mv in traf, init +C2892665|T037|AB|V29.69XD|ICD10CM|Unsp mtrcy rider injured in collision w oth mv in traf, subs|Unsp mtrcy rider injured in collision w oth mv in traf, subs +C2892666|T037|AB|V29.69XS|ICD10CM|Unsp mtrcy rider injured in clsn w oth mv in traf, sequela|Unsp mtrcy rider injured in clsn w oth mv in traf, sequela +C2892667|T037|HT|V29.8|ICD10CM|Motorcycle rider (driver) (passenger) injured in other specified transport accidents|Motorcycle rider (driver) (passenger) injured in other specified transport accidents +C2892667|T037|AB|V29.8|ICD10CM|Motorcycle rider (driver) injured in oth transport accidents|Motorcycle rider (driver) injured in oth transport accidents +C0476912|T037|PT|V29.8|ICD10|Motorcycle rider [any] injured in other specified transport accidents|Motorcycle rider [any] injured in other specified transport accidents +C2892668|T037|HT|V29.81|ICD10CM|Motorcycle rider (driver) (passenger) injured in transport accident with military vehicle|Motorcycle rider (driver) (passenger) injured in transport accident with military vehicle +C2892668|T037|AB|V29.81|ICD10CM|Mtrcy rider injured in trnsp accident w military vehicle|Mtrcy rider injured in trnsp accident w military vehicle +C2892669|T037|AB|V29.81XA|ICD10CM|Mtrcy rider injured in trnsp acc w military vehicle, init|Mtrcy rider injured in trnsp acc w military vehicle, init +C2892670|T037|AB|V29.81XD|ICD10CM|Mtrcy rider injured in trnsp acc w military vehicle, subs|Mtrcy rider injured in trnsp acc w military vehicle, subs +C2892671|T037|PT|V29.81XS|ICD10CM|Motorcycle rider (driver) (passenger) injured in transport accident with military vehicle, sequela|Motorcycle rider (driver) (passenger) injured in transport accident with military vehicle, sequela +C2892671|T037|AB|V29.81XS|ICD10CM|Mtrcy rider injured in trnsp acc w military vehicle, sequela|Mtrcy rider injured in trnsp acc w military vehicle, sequela +C2892667|T037|HT|V29.88|ICD10CM|Motorcycle rider (driver) (passenger) injured in other specified transport accidents|Motorcycle rider (driver) (passenger) injured in other specified transport accidents +C2892667|T037|AB|V29.88|ICD10CM|Motorcycle rider (driver) injured in oth transport accidents|Motorcycle rider (driver) injured in oth transport accidents +C2892672|T037|AB|V29.88XA|ICD10CM|Mtrcy rider (driver) injured in oth transport acc, init|Mtrcy rider (driver) injured in oth transport acc, init +C2892673|T037|AB|V29.88XD|ICD10CM|Mtrcy rider (driver) injured in oth transport acc, subs|Mtrcy rider (driver) injured in oth transport acc, subs +C2892674|T037|PT|V29.88XS|ICD10CM|Motorcycle rider (driver) (passenger) injured in other specified transport accidents, sequela|Motorcycle rider (driver) (passenger) injured in other specified transport accidents, sequela +C2892674|T037|AB|V29.88XS|ICD10CM|Mtrcy rider (driver) injured in oth transport acc, sequela|Mtrcy rider (driver) injured in oth transport acc, sequela +C0574035|T037|ET|V29.9|ICD10CM|Motorcycle accident NOS|Motorcycle accident NOS +C2892675|T037|AB|V29.9|ICD10CM|Motorcycle rider (driver) (passenger) injured in unsp traf|Motorcycle rider (driver) (passenger) injured in unsp traf +C2892675|T037|HT|V29.9|ICD10CM|Motorcycle rider (driver) (passenger) injured in unspecified traffic accident|Motorcycle rider (driver) (passenger) injured in unspecified traffic accident +C0476913|T037|PT|V29.9|ICD10|Motorcycle rider [any] injured in unspecified traffic accident|Motorcycle rider [any] injured in unspecified traffic accident +C2892676|T037|PT|V29.9XXA|ICD10CM|Motorcycle rider (driver) (passenger) injured in unspecified traffic accident, initial encounter|Motorcycle rider (driver) (passenger) injured in unspecified traffic accident, initial encounter +C2892676|T037|AB|V29.9XXA|ICD10CM|Motorcycle rider (driver) injured in unsp traf, init|Motorcycle rider (driver) injured in unsp traf, init +C2892677|T037|PT|V29.9XXD|ICD10CM|Motorcycle rider (driver) (passenger) injured in unspecified traffic accident, subsequent encounter|Motorcycle rider (driver) (passenger) injured in unspecified traffic accident, subsequent encounter +C2892677|T037|AB|V29.9XXD|ICD10CM|Motorcycle rider (driver) injured in unsp traf, subs|Motorcycle rider (driver) injured in unsp traf, subs +C2892678|T037|PT|V29.9XXS|ICD10CM|Motorcycle rider (driver) (passenger) injured in unspecified traffic accident, sequela|Motorcycle rider (driver) (passenger) injured in unspecified traffic accident, sequela +C2892678|T037|AB|V29.9XXS|ICD10CM|Motorcycle rider (driver) injured in unsp traf, sequela|Motorcycle rider (driver) injured in unsp traf, sequela +C0476915|T037|AB|V30|ICD10CM|Occupant of 3-whl mv injured in collision w ped/anml|Occupant of 3-whl mv injured in collision w ped/anml +C0476915|T037|HT|V30|ICD10CM|Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal|Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal +C0476915|T037|HT|V30|ICD10|Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal|Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal +C4290425|T037|ET|V30-V39|ICD10CM|motorized rickshaw|motorized rickshaw +C4290424|T037|ET|V30-V39|ICD10CM|motorized tricycle|motorized tricycle +C0476914|T037|HT|V30-V39|ICD10CM|Occupant of three-wheeled motor vehicle injured in transport accident (V30-V39)|Occupant of three-wheeled motor vehicle injured in transport accident (V30-V39) +C4290426|T037|ET|V30-V39|ICD10CM|three-wheeled motor car|three-wheeled motor car +C0476914|T037|HT|V30-V39.9|ICD10|Occupant of three-wheeled motor vehicle injured in transport accident|Occupant of three-wheeled motor vehicle injured in transport accident +C2892682|T037|AB|V30.0|ICD10CM|Driver of 3-whl mv injured in collision w ped/anml nontraf|Driver of 3-whl mv injured in collision w ped/anml nontraf +C2892683|T037|AB|V30.0XXA|ICD10CM|Driver of 3-whl mv injured in clsn w ped/anml nontraf, init|Driver of 3-whl mv injured in clsn w ped/anml nontraf, init +C2892684|T037|AB|V30.0XXD|ICD10CM|Driver of 3-whl mv injured in clsn w ped/anml nontraf, subs|Driver of 3-whl mv injured in clsn w ped/anml nontraf, subs +C2892685|T037|AB|V30.0XXS|ICD10CM|Driver of 3-whl mv inj in clsn w ped/anml nontraf, sequela|Driver of 3-whl mv inj in clsn w ped/anml nontraf, sequela +C2892686|T037|AB|V30.1|ICD10CM|Passenger in 3-whl mv injured in clsn w ped/anml nontraf|Passenger in 3-whl mv injured in clsn w ped/anml nontraf +C2892687|T037|AB|V30.1XXA|ICD10CM|Pasngr in 3-whl mv injured in clsn w ped/anml nontraf, init|Pasngr in 3-whl mv injured in clsn w ped/anml nontraf, init +C2892688|T037|AB|V30.1XXD|ICD10CM|Pasngr in 3-whl mv injured in clsn w ped/anml nontraf, subs|Pasngr in 3-whl mv injured in clsn w ped/anml nontraf, subs +C2892689|T037|AB|V30.1XXS|ICD10CM|Pasngr in 3-whl mv inj in clsn w ped/anml nontraf, sequela|Pasngr in 3-whl mv inj in clsn w ped/anml nontraf, sequela +C2892690|T037|AB|V30.2|ICD10CM|Person outside 3-whl mv injured in clsn w ped/anml nontraf|Person outside 3-whl mv injured in clsn w ped/anml nontraf +C2892691|T037|AB|V30.2XXA|ICD10CM|Person outside 3-whl mv inj in clsn w ped/anml nontraf, init|Person outside 3-whl mv inj in clsn w ped/anml nontraf, init +C2892692|T037|AB|V30.2XXD|ICD10CM|Person outside 3-whl mv inj in clsn w ped/anml nontraf, subs|Person outside 3-whl mv inj in clsn w ped/anml nontraf, subs +C2892693|T037|AB|V30.2XXS|ICD10CM|Person outsd 3-whl mv inj in clsn w ped/anml nontraf, sqla|Person outsd 3-whl mv inj in clsn w ped/anml nontraf, sqla +C2892694|T037|AB|V30.3|ICD10CM|Occup of 3-whl mv injured in collision w ped/anml nontraf|Occup of 3-whl mv injured in collision w ped/anml nontraf +C2892695|T037|AB|V30.3XXA|ICD10CM|Occup of 3-whl mv injured in clsn w ped/anml nontraf, init|Occup of 3-whl mv injured in clsn w ped/anml nontraf, init +C2892696|T037|AB|V30.3XXD|ICD10CM|Occup of 3-whl mv injured in clsn w ped/anml nontraf, subs|Occup of 3-whl mv injured in clsn w ped/anml nontraf, subs +C2892697|T037|AB|V30.3XXS|ICD10CM|Occup of 3-whl mv inj in clsn w ped/anml nontraf, sequela|Occup of 3-whl mv inj in clsn w ped/anml nontraf, sequela +C2892698|T037|AB|V30.4|ICD10CM|Prsn brd/alit a 3-whl mv injured in collision w ped/anml|Prsn brd/alit a 3-whl mv injured in collision w ped/anml +C2892699|T037|AB|V30.4XXA|ICD10CM|Prsn brd/alit a 3-whl mv injured in clsn w ped/anml, init|Prsn brd/alit a 3-whl mv injured in clsn w ped/anml, init +C2892700|T037|AB|V30.4XXD|ICD10CM|Prsn brd/alit a 3-whl mv injured in clsn w ped/anml, subs|Prsn brd/alit a 3-whl mv injured in clsn w ped/anml, subs +C2892701|T037|AB|V30.4XXS|ICD10CM|Prsn brd/alit a 3-whl mv injured in clsn w ped/anml, sequela|Prsn brd/alit a 3-whl mv injured in clsn w ped/anml, sequela +C2892702|T037|AB|V30.5|ICD10CM|Driver of 3-whl mv injured in collision w ped/anml in traf|Driver of 3-whl mv injured in collision w ped/anml in traf +C2892703|T037|AB|V30.5XXA|ICD10CM|Driver of 3-whl mv injured in clsn w ped/anml in traf, init|Driver of 3-whl mv injured in clsn w ped/anml in traf, init +C2892704|T037|AB|V30.5XXD|ICD10CM|Driver of 3-whl mv injured in clsn w ped/anml in traf, subs|Driver of 3-whl mv injured in clsn w ped/anml in traf, subs +C2892705|T037|AB|V30.5XXS|ICD10CM|Driver of 3-whl mv inj in clsn w ped/anml in traf, sequela|Driver of 3-whl mv inj in clsn w ped/anml in traf, sequela +C2892706|T037|AB|V30.6|ICD10CM|Passenger in 3-whl mv injured in clsn w ped/anml in traf|Passenger in 3-whl mv injured in clsn w ped/anml in traf +C2892707|T037|AB|V30.6XXA|ICD10CM|Pasngr in 3-whl mv injured in clsn w ped/anml in traf, init|Pasngr in 3-whl mv injured in clsn w ped/anml in traf, init +C2892708|T037|AB|V30.6XXD|ICD10CM|Pasngr in 3-whl mv injured in clsn w ped/anml in traf, subs|Pasngr in 3-whl mv injured in clsn w ped/anml in traf, subs +C2892709|T037|AB|V30.6XXS|ICD10CM|Pasngr in 3-whl mv inj in clsn w ped/anml in traf, sequela|Pasngr in 3-whl mv inj in clsn w ped/anml in traf, sequela +C2892710|T037|AB|V30.7|ICD10CM|Person outside 3-whl mv injured in clsn w ped/anml in traf|Person outside 3-whl mv injured in clsn w ped/anml in traf +C2892711|T037|AB|V30.7XXA|ICD10CM|Person outside 3-whl mv inj in clsn w ped/anml in traf, init|Person outside 3-whl mv inj in clsn w ped/anml in traf, init +C2892712|T037|AB|V30.7XXD|ICD10CM|Person outside 3-whl mv inj in clsn w ped/anml in traf, subs|Person outside 3-whl mv inj in clsn w ped/anml in traf, subs +C2892713|T037|AB|V30.7XXS|ICD10CM|Person outsd 3-whl mv inj in clsn w ped/anml in traf, sqla|Person outsd 3-whl mv inj in clsn w ped/anml in traf, sqla +C2892714|T037|AB|V30.9|ICD10CM|Occup of 3-whl mv injured in collision w ped/anml in traf|Occup of 3-whl mv injured in collision w ped/anml in traf +C2892715|T037|AB|V30.9XXA|ICD10CM|Occup of 3-whl mv injured in clsn w ped/anml in traf, init|Occup of 3-whl mv injured in clsn w ped/anml in traf, init +C2892716|T037|AB|V30.9XXD|ICD10CM|Occup of 3-whl mv injured in clsn w ped/anml in traf, subs|Occup of 3-whl mv injured in clsn w ped/anml in traf, subs +C2892717|T037|AB|V30.9XXS|ICD10CM|Occup of 3-whl mv inj in clsn w ped/anml in traf, sequela|Occup of 3-whl mv inj in clsn w ped/anml in traf, sequela +C0476925|T037|AB|V31|ICD10CM|Occupant of 3-whl mv injured in collision w pedal cycle|Occupant of 3-whl mv injured in collision w pedal cycle +C0476925|T037|HT|V31|ICD10CM|Occupant of three-wheeled motor vehicle injured in collision with pedal cycle|Occupant of three-wheeled motor vehicle injured in collision with pedal cycle +C0476925|T037|HT|V31|ICD10|Occupant of three-wheeled motor vehicle injured in collision with pedal cycle|Occupant of three-wheeled motor vehicle injured in collision with pedal cycle +C2892718|T037|AB|V31.0|ICD10CM|Driver of 3-whl mv injured in collision w pedl cyc nontraf|Driver of 3-whl mv injured in collision w pedl cyc nontraf +C2892718|T037|HT|V31.0|ICD10CM|Driver of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident|Driver of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident +C2892719|T037|AB|V31.0XXA|ICD10CM|Driver of 3-whl mv injured in clsn w pedl cyc nontraf, init|Driver of 3-whl mv injured in clsn w pedl cyc nontraf, init +C2892720|T037|AB|V31.0XXD|ICD10CM|Driver of 3-whl mv injured in clsn w pedl cyc nontraf, subs|Driver of 3-whl mv injured in clsn w pedl cyc nontraf, subs +C2892721|T037|AB|V31.0XXS|ICD10CM|Driver of 3-whl mv inj in clsn w pedl cyc nontraf, sequela|Driver of 3-whl mv inj in clsn w pedl cyc nontraf, sequela +C2892722|T037|AB|V31.1|ICD10CM|Passenger in 3-whl mv injured in clsn w pedl cyc nontraf|Passenger in 3-whl mv injured in clsn w pedl cyc nontraf +C2892723|T037|AB|V31.1XXA|ICD10CM|Pasngr in 3-whl mv injured in clsn w pedl cyc nontraf, init|Pasngr in 3-whl mv injured in clsn w pedl cyc nontraf, init +C2892724|T037|AB|V31.1XXD|ICD10CM|Pasngr in 3-whl mv injured in clsn w pedl cyc nontraf, subs|Pasngr in 3-whl mv injured in clsn w pedl cyc nontraf, subs +C2892725|T037|AB|V31.1XXS|ICD10CM|Pasngr in 3-whl mv inj in clsn w pedl cyc nontraf, sequela|Pasngr in 3-whl mv inj in clsn w pedl cyc nontraf, sequela +C2892726|T037|AB|V31.2|ICD10CM|Person outside 3-whl mv injured in clsn w pedl cyc nontraf|Person outside 3-whl mv injured in clsn w pedl cyc nontraf +C2892727|T037|AB|V31.2XXA|ICD10CM|Person outside 3-whl mv inj in clsn w pedl cyc nontraf, init|Person outside 3-whl mv inj in clsn w pedl cyc nontraf, init +C2892728|T037|AB|V31.2XXD|ICD10CM|Person outside 3-whl mv inj in clsn w pedl cyc nontraf, subs|Person outside 3-whl mv inj in clsn w pedl cyc nontraf, subs +C2892729|T037|AB|V31.2XXS|ICD10CM|Person outsd 3-whl mv inj in clsn w pedl cyc nontraf, sqla|Person outsd 3-whl mv inj in clsn w pedl cyc nontraf, sqla +C2892730|T037|AB|V31.3|ICD10CM|Occup of 3-whl mv injured in collision w pedal cycle nontraf|Occup of 3-whl mv injured in collision w pedal cycle nontraf +C2892731|T037|AB|V31.3XXA|ICD10CM|Occup of 3-whl mv injured in clsn w pedl cyc nontraf, init|Occup of 3-whl mv injured in clsn w pedl cyc nontraf, init +C2892732|T037|AB|V31.3XXD|ICD10CM|Occup of 3-whl mv injured in clsn w pedl cyc nontraf, subs|Occup of 3-whl mv injured in clsn w pedl cyc nontraf, subs +C2892733|T037|AB|V31.3XXS|ICD10CM|Occup of 3-whl mv inj in clsn w pedl cyc nontraf, sequela|Occup of 3-whl mv inj in clsn w pedl cyc nontraf, sequela +C2892734|T037|HT|V31.4|ICD10CM|Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedal cycle|Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedal cycle +C2892734|T037|AB|V31.4|ICD10CM|Prsn brd/alit a 3-whl mv injured in collision w pedal cycle|Prsn brd/alit a 3-whl mv injured in collision w pedal cycle +C2892735|T037|AB|V31.4XXA|ICD10CM|Prsn brd/alit a 3-whl mv injured in clsn w pedl cyc, init|Prsn brd/alit a 3-whl mv injured in clsn w pedl cyc, init +C2892736|T037|AB|V31.4XXD|ICD10CM|Prsn brd/alit a 3-whl mv injured in clsn w pedl cyc, subs|Prsn brd/alit a 3-whl mv injured in clsn w pedl cyc, subs +C2892737|T037|AB|V31.4XXS|ICD10CM|Prsn brd/alit a 3-whl mv injured in clsn w pedl cyc, sequela|Prsn brd/alit a 3-whl mv injured in clsn w pedl cyc, sequela +C2892738|T037|AB|V31.5|ICD10CM|Driver of 3-whl mv injured in collision w pedl cyc in traf|Driver of 3-whl mv injured in collision w pedl cyc in traf +C2892738|T037|HT|V31.5|ICD10CM|Driver of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident|Driver of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident +C2892739|T037|AB|V31.5XXA|ICD10CM|Driver of 3-whl mv injured in clsn w pedl cyc in traf, init|Driver of 3-whl mv injured in clsn w pedl cyc in traf, init +C2892740|T037|AB|V31.5XXD|ICD10CM|Driver of 3-whl mv injured in clsn w pedl cyc in traf, subs|Driver of 3-whl mv injured in clsn w pedl cyc in traf, subs +C2892741|T037|AB|V31.5XXS|ICD10CM|Driver of 3-whl mv inj in clsn w pedl cyc in traf, sequela|Driver of 3-whl mv inj in clsn w pedl cyc in traf, sequela +C2892742|T037|AB|V31.6|ICD10CM|Passenger in 3-whl mv injured in clsn w pedl cyc in traf|Passenger in 3-whl mv injured in clsn w pedl cyc in traf +C2892742|T037|HT|V31.6|ICD10CM|Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident|Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident +C2892743|T037|AB|V31.6XXA|ICD10CM|Pasngr in 3-whl mv injured in clsn w pedl cyc in traf, init|Pasngr in 3-whl mv injured in clsn w pedl cyc in traf, init +C2892744|T037|AB|V31.6XXD|ICD10CM|Pasngr in 3-whl mv injured in clsn w pedl cyc in traf, subs|Pasngr in 3-whl mv injured in clsn w pedl cyc in traf, subs +C2892745|T037|AB|V31.6XXS|ICD10CM|Pasngr in 3-whl mv inj in clsn w pedl cyc in traf, sequela|Pasngr in 3-whl mv inj in clsn w pedl cyc in traf, sequela +C2892746|T037|AB|V31.7|ICD10CM|Person outside 3-whl mv injured in clsn w pedl cyc in traf|Person outside 3-whl mv injured in clsn w pedl cyc in traf +C2892747|T037|AB|V31.7XXA|ICD10CM|Person outside 3-whl mv inj in clsn w pedl cyc in traf, init|Person outside 3-whl mv inj in clsn w pedl cyc in traf, init +C2892748|T037|AB|V31.7XXD|ICD10CM|Person outside 3-whl mv inj in clsn w pedl cyc in traf, subs|Person outside 3-whl mv inj in clsn w pedl cyc in traf, subs +C2892749|T037|AB|V31.7XXS|ICD10CM|Person outsd 3-whl mv inj in clsn w pedl cyc in traf, sqla|Person outsd 3-whl mv inj in clsn w pedl cyc in traf, sqla +C2892750|T037|AB|V31.9|ICD10CM|Occup of 3-whl mv injured in collision w pedal cycle in traf|Occup of 3-whl mv injured in collision w pedal cycle in traf +C2892751|T037|AB|V31.9XXA|ICD10CM|Occup of 3-whl mv injured in clsn w pedl cyc in traf, init|Occup of 3-whl mv injured in clsn w pedl cyc in traf, init +C2892752|T037|AB|V31.9XXD|ICD10CM|Occup of 3-whl mv injured in clsn w pedl cyc in traf, subs|Occup of 3-whl mv injured in clsn w pedl cyc in traf, subs +C2892753|T037|AB|V31.9XXS|ICD10CM|Occup of 3-whl mv inj in clsn w pedl cyc in traf, sequela|Occup of 3-whl mv inj in clsn w pedl cyc in traf, sequela +C0476935|T037|AB|V32|ICD10CM|Occupant of 3-whl mv injured in collision w 2/3-whl mv|Occupant of 3-whl mv injured in collision w 2/3-whl mv +C2892754|T037|AB|V32.0|ICD10CM|Driver of 3-whl mv injured in collision w 2/3-whl mv nontraf|Driver of 3-whl mv injured in collision w 2/3-whl mv nontraf +C2892755|T037|AB|V32.0XXA|ICD10CM|Driver of 3-whl mv inj in clsn w 2/3-whl mv nontraf, init|Driver of 3-whl mv inj in clsn w 2/3-whl mv nontraf, init +C2892756|T037|AB|V32.0XXD|ICD10CM|Driver of 3-whl mv inj in clsn w 2/3-whl mv nontraf, subs|Driver of 3-whl mv inj in clsn w 2/3-whl mv nontraf, subs +C2892757|T037|AB|V32.0XXS|ICD10CM|Driver of 3-whl mv inj in clsn w 2/3-whl mv nontraf, sequela|Driver of 3-whl mv inj in clsn w 2/3-whl mv nontraf, sequela +C2892758|T037|AB|V32.1|ICD10CM|Passenger in 3-whl mv injured in clsn w 2/3-whl mv nontraf|Passenger in 3-whl mv injured in clsn w 2/3-whl mv nontraf +C2892759|T037|AB|V32.1XXA|ICD10CM|Pasngr in 3-whl mv inj in clsn w 2/3-whl mv nontraf, init|Pasngr in 3-whl mv inj in clsn w 2/3-whl mv nontraf, init +C2892760|T037|AB|V32.1XXD|ICD10CM|Pasngr in 3-whl mv inj in clsn w 2/3-whl mv nontraf, subs|Pasngr in 3-whl mv inj in clsn w 2/3-whl mv nontraf, subs +C2892761|T037|AB|V32.1XXS|ICD10CM|Pasngr in 3-whl mv inj in clsn w 2/3-whl mv nontraf, sequela|Pasngr in 3-whl mv inj in clsn w 2/3-whl mv nontraf, sequela +C2892762|T037|AB|V32.2|ICD10CM|Person outside 3-whl mv injured in clsn w 2/3-whl mv nontraf|Person outside 3-whl mv injured in clsn w 2/3-whl mv nontraf +C2892763|T037|AB|V32.2XXA|ICD10CM|Person outsd 3-whl mv inj in clsn w 2/3-whl mv nontraf, init|Person outsd 3-whl mv inj in clsn w 2/3-whl mv nontraf, init +C2892764|T037|AB|V32.2XXD|ICD10CM|Person outsd 3-whl mv inj in clsn w 2/3-whl mv nontraf, subs|Person outsd 3-whl mv inj in clsn w 2/3-whl mv nontraf, subs +C2892765|T037|AB|V32.2XXS|ICD10CM|Person outsd 3-whl mv inj in clsn w 2/3-whl mv nontraf, sqla|Person outsd 3-whl mv inj in clsn w 2/3-whl mv nontraf, sqla +C2892766|T037|AB|V32.3|ICD10CM|Occup of 3-whl mv injured in collision w 2/3-whl mv nontraf|Occup of 3-whl mv injured in collision w 2/3-whl mv nontraf +C2892767|T037|AB|V32.3XXA|ICD10CM|Occup of 3-whl mv injured in clsn w 2/3-whl mv nontraf, init|Occup of 3-whl mv injured in clsn w 2/3-whl mv nontraf, init +C2892768|T037|AB|V32.3XXD|ICD10CM|Occup of 3-whl mv injured in clsn w 2/3-whl mv nontraf, subs|Occup of 3-whl mv injured in clsn w 2/3-whl mv nontraf, subs +C2892769|T037|AB|V32.3XXS|ICD10CM|Occup of 3-whl mv inj in clsn w 2/3-whl mv nontraf, sequela|Occup of 3-whl mv inj in clsn w 2/3-whl mv nontraf, sequela +C2892770|T037|AB|V32.4|ICD10CM|Prsn brd/alit a 3-whl mv injured in collision w 2/3-whl mv|Prsn brd/alit a 3-whl mv injured in collision w 2/3-whl mv +C2892771|T037|AB|V32.4XXA|ICD10CM|Prsn brd/alit a 3-whl mv injured in clsn w 2/3-whl mv, init|Prsn brd/alit a 3-whl mv injured in clsn w 2/3-whl mv, init +C2892772|T037|AB|V32.4XXD|ICD10CM|Prsn brd/alit a 3-whl mv injured in clsn w 2/3-whl mv, subs|Prsn brd/alit a 3-whl mv injured in clsn w 2/3-whl mv, subs +C2892773|T037|AB|V32.4XXS|ICD10CM|Prsn brd/alit a 3-whl mv inj in clsn w 2/3-whl mv, sequela|Prsn brd/alit a 3-whl mv inj in clsn w 2/3-whl mv, sequela +C2892774|T037|AB|V32.5|ICD10CM|Driver of 3-whl mv injured in collision w 2/3-whl mv in traf|Driver of 3-whl mv injured in collision w 2/3-whl mv in traf +C2892775|T037|AB|V32.5XXA|ICD10CM|Driver of 3-whl mv inj in clsn w 2/3-whl mv in traf, init|Driver of 3-whl mv inj in clsn w 2/3-whl mv in traf, init +C2892776|T037|AB|V32.5XXD|ICD10CM|Driver of 3-whl mv inj in clsn w 2/3-whl mv in traf, subs|Driver of 3-whl mv inj in clsn w 2/3-whl mv in traf, subs +C2892777|T037|AB|V32.5XXS|ICD10CM|Driver of 3-whl mv inj in clsn w 2/3-whl mv in traf, sequela|Driver of 3-whl mv inj in clsn w 2/3-whl mv in traf, sequela +C2892778|T037|AB|V32.6|ICD10CM|Passenger in 3-whl mv injured in clsn w 2/3-whl mv in traf|Passenger in 3-whl mv injured in clsn w 2/3-whl mv in traf +C2892779|T037|AB|V32.6XXA|ICD10CM|Pasngr in 3-whl mv inj in clsn w 2/3-whl mv in traf, init|Pasngr in 3-whl mv inj in clsn w 2/3-whl mv in traf, init +C2892780|T037|AB|V32.6XXD|ICD10CM|Pasngr in 3-whl mv inj in clsn w 2/3-whl mv in traf, subs|Pasngr in 3-whl mv inj in clsn w 2/3-whl mv in traf, subs +C2892781|T037|AB|V32.6XXS|ICD10CM|Pasngr in 3-whl mv inj in clsn w 2/3-whl mv in traf, sequela|Pasngr in 3-whl mv inj in clsn w 2/3-whl mv in traf, sequela +C2892782|T037|AB|V32.7|ICD10CM|Person outside 3-whl mv injured in clsn w 2/3-whl mv in traf|Person outside 3-whl mv injured in clsn w 2/3-whl mv in traf +C2892783|T037|AB|V32.7XXA|ICD10CM|Person outsd 3-whl mv inj in clsn w 2/3-whl mv in traf, init|Person outsd 3-whl mv inj in clsn w 2/3-whl mv in traf, init +C2892784|T037|AB|V32.7XXD|ICD10CM|Person outsd 3-whl mv inj in clsn w 2/3-whl mv in traf, subs|Person outsd 3-whl mv inj in clsn w 2/3-whl mv in traf, subs +C2892785|T037|AB|V32.7XXS|ICD10CM|Person outsd 3-whl mv inj in clsn w 2/3-whl mv in traf, sqla|Person outsd 3-whl mv inj in clsn w 2/3-whl mv in traf, sqla +C2892786|T037|AB|V32.9|ICD10CM|Occup of 3-whl mv injured in collision w 2/3-whl mv in traf|Occup of 3-whl mv injured in collision w 2/3-whl mv in traf +C2892787|T037|AB|V32.9XXA|ICD10CM|Occup of 3-whl mv injured in clsn w 2/3-whl mv in traf, init|Occup of 3-whl mv injured in clsn w 2/3-whl mv in traf, init +C2892788|T037|AB|V32.9XXD|ICD10CM|Occup of 3-whl mv injured in clsn w 2/3-whl mv in traf, subs|Occup of 3-whl mv injured in clsn w 2/3-whl mv in traf, subs +C2892789|T037|AB|V32.9XXS|ICD10CM|Occup of 3-whl mv inj in clsn w 2/3-whl mv in traf, sequela|Occup of 3-whl mv inj in clsn w 2/3-whl mv in traf, sequela +C0476945|T037|AB|V33|ICD10CM|Occupant of 3-whl mv injured pick-up truck, pk-up/van|Occupant of 3-whl mv injured pick-up truck, pk-up/van +C0476945|T037|HT|V33|ICD10CM|Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van|Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van +C0476945|T037|HT|V33|ICD10|Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van|Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van +C2892790|T037|AB|V33.0|ICD10CM|Driver of 3-whl mv injured pick-up truck, pk-up/van nontraf|Driver of 3-whl mv injured pick-up truck, pk-up/van nontraf +C2892791|T037|AB|V33.0XXA|ICD10CM|Driver of 3-whl mv inj pk-up truck, pk-up/van nontraf, init|Driver of 3-whl mv inj pk-up truck, pk-up/van nontraf, init +C2892792|T037|AB|V33.0XXD|ICD10CM|Driver of 3-whl mv inj pk-up truck, pk-up/van nontraf, subs|Driver of 3-whl mv inj pk-up truck, pk-up/van nontraf, subs +C2892793|T037|AB|V33.0XXS|ICD10CM|Driver of 3-whl mv inj pk-up truck, pk-up/van nontraf, sqla|Driver of 3-whl mv inj pk-up truck, pk-up/van nontraf, sqla +C2892794|T037|AB|V33.1|ICD10CM|Pasngr in 3-whl mv injured pick-up truck, pk-up/van nontraf|Pasngr in 3-whl mv injured pick-up truck, pk-up/van nontraf +C2892795|T037|AB|V33.1XXA|ICD10CM|Pasngr in 3-whl mv inj pk-up truck, pk-up/van nontraf, init|Pasngr in 3-whl mv inj pk-up truck, pk-up/van nontraf, init +C2892796|T037|AB|V33.1XXD|ICD10CM|Pasngr in 3-whl mv inj pk-up truck, pk-up/van nontraf, subs|Pasngr in 3-whl mv inj pk-up truck, pk-up/van nontraf, subs +C2892797|T037|AB|V33.1XXS|ICD10CM|Pasngr in 3-whl mv inj pk-up truck, pk-up/van nontraf, sqla|Pasngr in 3-whl mv inj pk-up truck, pk-up/van nontraf, sqla +C2892798|T037|AB|V33.2|ICD10CM|Person outside 3-whl mv inj pick-up truck, pk-up/van nontraf|Person outside 3-whl mv inj pick-up truck, pk-up/van nontraf +C2892799|T037|AB|V33.2XXA|ICD10CM|Prsn outsd 3-whl mv inj pk-up truck, pk-up/van nontraf, init|Prsn outsd 3-whl mv inj pk-up truck, pk-up/van nontraf, init +C2892800|T037|AB|V33.2XXD|ICD10CM|Prsn outsd 3-whl mv inj pk-up truck, pk-up/van nontraf, subs|Prsn outsd 3-whl mv inj pk-up truck, pk-up/van nontraf, subs +C2892801|T037|AB|V33.2XXS|ICD10CM|Prsn outsd 3-whl mv inj pk-up truck, pk-up/van nontraf, sqla|Prsn outsd 3-whl mv inj pk-up truck, pk-up/van nontraf, sqla +C2892802|T037|AB|V33.3|ICD10CM|Occup of 3-whl mv injured pick-up truck, pk-up/van nontraf|Occup of 3-whl mv injured pick-up truck, pk-up/van nontraf +C2892803|T037|AB|V33.3XXA|ICD10CM|Occup of 3-whl mv inj pick-up truck, pk-up/van nontraf, init|Occup of 3-whl mv inj pick-up truck, pk-up/van nontraf, init +C2892804|T037|AB|V33.3XXD|ICD10CM|Occup of 3-whl mv inj pick-up truck, pk-up/van nontraf, subs|Occup of 3-whl mv inj pick-up truck, pk-up/van nontraf, subs +C2892805|T037|AB|V33.3XXS|ICD10CM|Occup of 3-whl mv inj pk-up truck, pk-up/van nontraf, sqla|Occup of 3-whl mv inj pk-up truck, pk-up/van nontraf, sqla +C2892806|T037|AB|V33.4|ICD10CM|Prsn brd/alit a 3-whl mv injured pick-up truck, pk-up/van|Prsn brd/alit a 3-whl mv injured pick-up truck, pk-up/van +C2892807|T037|AB|V33.4XXA|ICD10CM|Prsn brd/alit a 3-whl mv inj pick-up truck, pk-up/van, init|Prsn brd/alit a 3-whl mv inj pick-up truck, pk-up/van, init +C2892808|T037|AB|V33.4XXD|ICD10CM|Prsn brd/alit a 3-whl mv inj pick-up truck, pk-up/van, subs|Prsn brd/alit a 3-whl mv inj pick-up truck, pk-up/van, subs +C2892809|T037|AB|V33.4XXS|ICD10CM|Prsn brd/alit a 3-whl mv inj pk-up truck, pk-up/van, sequela|Prsn brd/alit a 3-whl mv inj pk-up truck, pk-up/van, sequela +C2892810|T037|AB|V33.5|ICD10CM|Driver of 3-whl mv injured pick-up truck, pk-up/van in traf|Driver of 3-whl mv injured pick-up truck, pk-up/van in traf +C2892811|T037|AB|V33.5XXA|ICD10CM|Driver of 3-whl mv inj pk-up truck, pk-up/van in traf, init|Driver of 3-whl mv inj pk-up truck, pk-up/van in traf, init +C2892812|T037|AB|V33.5XXD|ICD10CM|Driver of 3-whl mv inj pk-up truck, pk-up/van in traf, subs|Driver of 3-whl mv inj pk-up truck, pk-up/van in traf, subs +C2892813|T037|AB|V33.5XXS|ICD10CM|Driver of 3-whl mv inj pk-up truck, pk-up/van in traf, sqla|Driver of 3-whl mv inj pk-up truck, pk-up/van in traf, sqla +C2892814|T037|AB|V33.6|ICD10CM|Pasngr in 3-whl mv injured pick-up truck, pk-up/van in traf|Pasngr in 3-whl mv injured pick-up truck, pk-up/van in traf +C2892815|T037|AB|V33.6XXA|ICD10CM|Pasngr in 3-whl mv inj pk-up truck, pk-up/van in traf, init|Pasngr in 3-whl mv inj pk-up truck, pk-up/van in traf, init +C2892816|T037|AB|V33.6XXD|ICD10CM|Pasngr in 3-whl mv inj pk-up truck, pk-up/van in traf, subs|Pasngr in 3-whl mv inj pk-up truck, pk-up/van in traf, subs +C2892817|T037|AB|V33.6XXS|ICD10CM|Pasngr in 3-whl mv inj pk-up truck, pk-up/van in traf, sqla|Pasngr in 3-whl mv inj pk-up truck, pk-up/van in traf, sqla +C2892818|T037|AB|V33.7|ICD10CM|Person outside 3-whl mv inj pick-up truck, pk-up/van in traf|Person outside 3-whl mv inj pick-up truck, pk-up/van in traf +C2892819|T037|AB|V33.7XXA|ICD10CM|Prsn outsd 3-whl mv inj pk-up truck, pk-up/van in traf, init|Prsn outsd 3-whl mv inj pk-up truck, pk-up/van in traf, init +C2892820|T037|AB|V33.7XXD|ICD10CM|Prsn outsd 3-whl mv inj pk-up truck, pk-up/van in traf, subs|Prsn outsd 3-whl mv inj pk-up truck, pk-up/van in traf, subs +C2892821|T037|AB|V33.7XXS|ICD10CM|Prsn outsd 3-whl mv inj pk-up truck, pk-up/van in traf, sqla|Prsn outsd 3-whl mv inj pk-up truck, pk-up/van in traf, sqla +C2892822|T037|AB|V33.9|ICD10CM|Occup of 3-whl mv injured pick-up truck, pk-up/van in traf|Occup of 3-whl mv injured pick-up truck, pk-up/van in traf +C2892823|T037|AB|V33.9XXA|ICD10CM|Occup of 3-whl mv inj pick-up truck, pk-up/van in traf, init|Occup of 3-whl mv inj pick-up truck, pk-up/van in traf, init +C2892824|T037|AB|V33.9XXD|ICD10CM|Occup of 3-whl mv inj pick-up truck, pk-up/van in traf, subs|Occup of 3-whl mv inj pick-up truck, pk-up/van in traf, subs +C2892825|T037|AB|V33.9XXS|ICD10CM|Occup of 3-whl mv inj pk-up truck, pk-up/van in traf, sqla|Occup of 3-whl mv inj pk-up truck, pk-up/van in traf, sqla +C0476946|T037|AB|V34|ICD10CM|Occupant of 3-whl mv injured in collision w hv veh|Occupant of 3-whl mv injured in collision w hv veh +C0476946|T037|HT|V34|ICD10CM|Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus|Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus +C0476946|T037|HT|V34|ICD10|Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus|Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus +C2892826|T037|AB|V34.0|ICD10CM|Driver of 3-whl mv injured in collision w hv veh nontraf|Driver of 3-whl mv injured in collision w hv veh nontraf +C2892827|T037|AB|V34.0XXA|ICD10CM|Driver of 3-whl mv injured in clsn w hv veh nontraf, init|Driver of 3-whl mv injured in clsn w hv veh nontraf, init +C2892828|T037|AB|V34.0XXD|ICD10CM|Driver of 3-whl mv injured in clsn w hv veh nontraf, subs|Driver of 3-whl mv injured in clsn w hv veh nontraf, subs +C2892829|T037|AB|V34.0XXS|ICD10CM|Driver of 3-whl mv injured in clsn w hv veh nontraf, sequela|Driver of 3-whl mv injured in clsn w hv veh nontraf, sequela +C2892830|T037|AB|V34.1|ICD10CM|Passenger in 3-whl mv injured in collision w hv veh nontraf|Passenger in 3-whl mv injured in collision w hv veh nontraf +C2892831|T037|AB|V34.1XXA|ICD10CM|Passenger in 3-whl mv injured in clsn w hv veh nontraf, init|Passenger in 3-whl mv injured in clsn w hv veh nontraf, init +C2892832|T037|AB|V34.1XXD|ICD10CM|Passenger in 3-whl mv injured in clsn w hv veh nontraf, subs|Passenger in 3-whl mv injured in clsn w hv veh nontraf, subs +C2892833|T037|AB|V34.1XXS|ICD10CM|Pasngr in 3-whl mv injured in clsn w hv veh nontraf, sequela|Pasngr in 3-whl mv injured in clsn w hv veh nontraf, sequela +C2892834|T037|AB|V34.2|ICD10CM|Person outside 3-whl mv injured in clsn w hv veh nontraf|Person outside 3-whl mv injured in clsn w hv veh nontraf +C2892835|T037|AB|V34.2XXA|ICD10CM|Person outside 3-whl mv inj in clsn w hv veh nontraf, init|Person outside 3-whl mv inj in clsn w hv veh nontraf, init +C2892836|T037|AB|V34.2XXD|ICD10CM|Person outside 3-whl mv inj in clsn w hv veh nontraf, subs|Person outside 3-whl mv inj in clsn w hv veh nontraf, subs +C2892837|T037|AB|V34.2XXS|ICD10CM|Person outsd 3-whl mv inj in clsn w hv veh nontraf, sequela|Person outsd 3-whl mv inj in clsn w hv veh nontraf, sequela +C2892838|T037|AB|V34.3|ICD10CM|Occup of 3-whl mv injured in collision w hv veh nontraf|Occup of 3-whl mv injured in collision w hv veh nontraf +C2892839|T037|AB|V34.3XXA|ICD10CM|Occup of 3-whl mv injured in clsn w hv veh nontraf, init|Occup of 3-whl mv injured in clsn w hv veh nontraf, init +C2892840|T037|AB|V34.3XXD|ICD10CM|Occup of 3-whl mv injured in clsn w hv veh nontraf, subs|Occup of 3-whl mv injured in clsn w hv veh nontraf, subs +C2892841|T037|AB|V34.3XXS|ICD10CM|Occup of 3-whl mv injured in clsn w hv veh nontraf, sequela|Occup of 3-whl mv injured in clsn w hv veh nontraf, sequela +C2892842|T037|AB|V34.4|ICD10CM|Prsn brd/alit a 3-whl mv injured in collision w hv veh|Prsn brd/alit a 3-whl mv injured in collision w hv veh +C2892843|T037|AB|V34.4XXA|ICD10CM|Prsn brd/alit a 3-whl mv injured in collision w hv veh, init|Prsn brd/alit a 3-whl mv injured in collision w hv veh, init +C2892844|T037|AB|V34.4XXD|ICD10CM|Prsn brd/alit a 3-whl mv injured in collision w hv veh, subs|Prsn brd/alit a 3-whl mv injured in collision w hv veh, subs +C2892845|T037|AB|V34.4XXS|ICD10CM|Prsn brd/alit a 3-whl mv injured in clsn w hv veh, sequela|Prsn brd/alit a 3-whl mv injured in clsn w hv veh, sequela +C2892846|T037|AB|V34.5|ICD10CM|Driver of 3-whl mv injured in collision w hv veh in traf|Driver of 3-whl mv injured in collision w hv veh in traf +C2892847|T037|AB|V34.5XXA|ICD10CM|Driver of 3-whl mv injured in clsn w hv veh in traf, init|Driver of 3-whl mv injured in clsn w hv veh in traf, init +C2892848|T037|AB|V34.5XXD|ICD10CM|Driver of 3-whl mv injured in clsn w hv veh in traf, subs|Driver of 3-whl mv injured in clsn w hv veh in traf, subs +C2892849|T037|AB|V34.5XXS|ICD10CM|Driver of 3-whl mv injured in clsn w hv veh in traf, sequela|Driver of 3-whl mv injured in clsn w hv veh in traf, sequela +C2892850|T037|AB|V34.6|ICD10CM|Passenger in 3-whl mv injured in collision w hv veh in traf|Passenger in 3-whl mv injured in collision w hv veh in traf +C2892851|T037|AB|V34.6XXA|ICD10CM|Passenger in 3-whl mv injured in clsn w hv veh in traf, init|Passenger in 3-whl mv injured in clsn w hv veh in traf, init +C2892852|T037|AB|V34.6XXD|ICD10CM|Passenger in 3-whl mv injured in clsn w hv veh in traf, subs|Passenger in 3-whl mv injured in clsn w hv veh in traf, subs +C2892853|T037|AB|V34.6XXS|ICD10CM|Pasngr in 3-whl mv injured in clsn w hv veh in traf, sequela|Pasngr in 3-whl mv injured in clsn w hv veh in traf, sequela +C2892854|T037|AB|V34.7|ICD10CM|Person outside 3-whl mv injured in clsn w hv veh in traf|Person outside 3-whl mv injured in clsn w hv veh in traf +C2892855|T037|AB|V34.7XXA|ICD10CM|Person outside 3-whl mv inj in clsn w hv veh in traf, init|Person outside 3-whl mv inj in clsn w hv veh in traf, init +C2892856|T037|AB|V34.7XXD|ICD10CM|Person outside 3-whl mv inj in clsn w hv veh in traf, subs|Person outside 3-whl mv inj in clsn w hv veh in traf, subs +C2892857|T037|AB|V34.7XXS|ICD10CM|Person outsd 3-whl mv inj in clsn w hv veh in traf, sequela|Person outsd 3-whl mv inj in clsn w hv veh in traf, sequela +C2892858|T037|AB|V34.9|ICD10CM|Occup of 3-whl mv injured in collision w hv veh in traf|Occup of 3-whl mv injured in collision w hv veh in traf +C2892859|T037|AB|V34.9XXA|ICD10CM|Occup of 3-whl mv injured in clsn w hv veh in traf, init|Occup of 3-whl mv injured in clsn w hv veh in traf, init +C2892860|T037|AB|V34.9XXD|ICD10CM|Occup of 3-whl mv injured in clsn w hv veh in traf, subs|Occup of 3-whl mv injured in clsn w hv veh in traf, subs +C2892861|T037|AB|V34.9XXS|ICD10CM|Occup of 3-whl mv injured in clsn w hv veh in traf, sequela|Occup of 3-whl mv injured in clsn w hv veh in traf, sequela +C0476947|T037|AB|V35|ICD10CM|Occupant of 3-whl mv injured in collision w rail trn/veh|Occupant of 3-whl mv injured in collision w rail trn/veh +C0476947|T037|HT|V35|ICD10CM|Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle|Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle +C0476947|T037|HT|V35|ICD10|Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle|Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle +C2892862|T037|AB|V35.0|ICD10CM|Driver of 3-whl mv injured in clsn w rail trn/veh nontraf|Driver of 3-whl mv injured in clsn w rail trn/veh nontraf +C2892863|T037|AB|V35.0XXA|ICD10CM|Driver of 3-whl mv inj in clsn w rail trn/veh nontraf, init|Driver of 3-whl mv inj in clsn w rail trn/veh nontraf, init +C2892864|T037|AB|V35.0XXD|ICD10CM|Driver of 3-whl mv inj in clsn w rail trn/veh nontraf, subs|Driver of 3-whl mv inj in clsn w rail trn/veh nontraf, subs +C2892865|T037|AB|V35.0XXS|ICD10CM|Driver of 3-whl mv inj in clsn w rail trn/veh nontraf, sqla|Driver of 3-whl mv inj in clsn w rail trn/veh nontraf, sqla +C2892866|T037|AB|V35.1|ICD10CM|Passenger in 3-whl mv injured in clsn w rail trn/veh nontraf|Passenger in 3-whl mv injured in clsn w rail trn/veh nontraf +C2892867|T037|AB|V35.1XXA|ICD10CM|Pasngr in 3-whl mv inj in clsn w rail trn/veh nontraf, init|Pasngr in 3-whl mv inj in clsn w rail trn/veh nontraf, init +C2892868|T037|AB|V35.1XXD|ICD10CM|Pasngr in 3-whl mv inj in clsn w rail trn/veh nontraf, subs|Pasngr in 3-whl mv inj in clsn w rail trn/veh nontraf, subs +C2892869|T037|AB|V35.1XXS|ICD10CM|Pasngr in 3-whl mv inj in clsn w rail trn/veh nontraf, sqla|Pasngr in 3-whl mv inj in clsn w rail trn/veh nontraf, sqla +C2892870|T037|AB|V35.2|ICD10CM|Person outside 3-whl mv inj in clsn w rail trn/veh nontraf|Person outside 3-whl mv inj in clsn w rail trn/veh nontraf +C2892871|T037|AB|V35.2XXA|ICD10CM|Prsn outsd 3-whl mv inj in clsn w rail trn/veh nontraf, init|Prsn outsd 3-whl mv inj in clsn w rail trn/veh nontraf, init +C2892872|T037|AB|V35.2XXD|ICD10CM|Prsn outsd 3-whl mv inj in clsn w rail trn/veh nontraf, subs|Prsn outsd 3-whl mv inj in clsn w rail trn/veh nontraf, subs +C2892873|T037|AB|V35.2XXS|ICD10CM|Prsn outsd 3-whl mv inj in clsn w rail trn/veh nontraf, sqla|Prsn outsd 3-whl mv inj in clsn w rail trn/veh nontraf, sqla +C2892874|T037|AB|V35.3|ICD10CM|Occup of 3-whl mv injured in clsn w rail trn/veh nontraf|Occup of 3-whl mv injured in clsn w rail trn/veh nontraf +C2892875|T037|AB|V35.3XXA|ICD10CM|Occup of 3-whl mv inj in clsn w rail trn/veh nontraf, init|Occup of 3-whl mv inj in clsn w rail trn/veh nontraf, init +C2892876|T037|AB|V35.3XXD|ICD10CM|Occup of 3-whl mv inj in clsn w rail trn/veh nontraf, subs|Occup of 3-whl mv inj in clsn w rail trn/veh nontraf, subs +C2892877|T037|AB|V35.3XXS|ICD10CM|Occup of 3-whl mv inj in clsn w rail trn/veh nontraf, sqla|Occup of 3-whl mv inj in clsn w rail trn/veh nontraf, sqla +C2892878|T037|AB|V35.4|ICD10CM|Prsn brd/alit a 3-whl mv injured in collision w rail trn/veh|Prsn brd/alit a 3-whl mv injured in collision w rail trn/veh +C2892879|T037|AB|V35.4XXA|ICD10CM|Prsn brd/alit a 3-whl mv inj in clsn w rail trn/veh, init|Prsn brd/alit a 3-whl mv inj in clsn w rail trn/veh, init +C2892880|T037|AB|V35.4XXD|ICD10CM|Prsn brd/alit a 3-whl mv inj in clsn w rail trn/veh, subs|Prsn brd/alit a 3-whl mv inj in clsn w rail trn/veh, subs +C2892881|T037|AB|V35.4XXS|ICD10CM|Prsn brd/alit a 3-whl mv inj in clsn w rail trn/veh, sequela|Prsn brd/alit a 3-whl mv inj in clsn w rail trn/veh, sequela +C2892882|T037|AB|V35.5|ICD10CM|Driver of 3-whl mv injured in clsn w rail trn/veh in traf|Driver of 3-whl mv injured in clsn w rail trn/veh in traf +C2892883|T037|AB|V35.5XXA|ICD10CM|Driver of 3-whl mv inj in clsn w rail trn/veh in traf, init|Driver of 3-whl mv inj in clsn w rail trn/veh in traf, init +C2892884|T037|AB|V35.5XXD|ICD10CM|Driver of 3-whl mv inj in clsn w rail trn/veh in traf, subs|Driver of 3-whl mv inj in clsn w rail trn/veh in traf, subs +C2892885|T037|AB|V35.5XXS|ICD10CM|Driver of 3-whl mv inj in clsn w rail trn/veh in traf, sqla|Driver of 3-whl mv inj in clsn w rail trn/veh in traf, sqla +C2892886|T037|AB|V35.6|ICD10CM|Passenger in 3-whl mv injured in clsn w rail trn/veh in traf|Passenger in 3-whl mv injured in clsn w rail trn/veh in traf +C2892887|T037|AB|V35.6XXA|ICD10CM|Pasngr in 3-whl mv inj in clsn w rail trn/veh in traf, init|Pasngr in 3-whl mv inj in clsn w rail trn/veh in traf, init +C2892888|T037|AB|V35.6XXD|ICD10CM|Pasngr in 3-whl mv inj in clsn w rail trn/veh in traf, subs|Pasngr in 3-whl mv inj in clsn w rail trn/veh in traf, subs +C2892889|T037|AB|V35.6XXS|ICD10CM|Pasngr in 3-whl mv inj in clsn w rail trn/veh in traf, sqla|Pasngr in 3-whl mv inj in clsn w rail trn/veh in traf, sqla +C2892890|T037|AB|V35.7|ICD10CM|Person outside 3-whl mv inj in clsn w rail trn/veh in traf|Person outside 3-whl mv inj in clsn w rail trn/veh in traf +C2892891|T037|AB|V35.7XXA|ICD10CM|Prsn outsd 3-whl mv inj in clsn w rail trn/veh in traf, init|Prsn outsd 3-whl mv inj in clsn w rail trn/veh in traf, init +C2892892|T037|AB|V35.7XXD|ICD10CM|Prsn outsd 3-whl mv inj in clsn w rail trn/veh in traf, subs|Prsn outsd 3-whl mv inj in clsn w rail trn/veh in traf, subs +C2892893|T037|AB|V35.7XXS|ICD10CM|Prsn outsd 3-whl mv inj in clsn w rail trn/veh in traf, sqla|Prsn outsd 3-whl mv inj in clsn w rail trn/veh in traf, sqla +C2892894|T037|AB|V35.9|ICD10CM|Occup of 3-whl mv injured in clsn w rail trn/veh in traf|Occup of 3-whl mv injured in clsn w rail trn/veh in traf +C2892895|T037|AB|V35.9XXA|ICD10CM|Occup of 3-whl mv inj in clsn w rail trn/veh in traf, init|Occup of 3-whl mv inj in clsn w rail trn/veh in traf, init +C2892896|T037|AB|V35.9XXD|ICD10CM|Occup of 3-whl mv inj in clsn w rail trn/veh in traf, subs|Occup of 3-whl mv inj in clsn w rail trn/veh in traf, subs +C2892897|T037|AB|V35.9XXS|ICD10CM|Occup of 3-whl mv inj in clsn w rail trn/veh in traf, sqla|Occup of 3-whl mv inj in clsn w rail trn/veh in traf, sqla +C4283911|T037|ET|V36|ICD10CM|collision with animal-drawn vehicle, animal being ridden, streetcar|collision with animal-drawn vehicle, animal being ridden, streetcar +C0476948|T037|AB|V36|ICD10CM|Occupant of 3-whl mv injured in collision w nonmtr vehicle|Occupant of 3-whl mv injured in collision w nonmtr vehicle +C0476948|T037|HT|V36|ICD10CM|Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle|Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle +C0476948|T037|HT|V36|ICD10|Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle|Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle +C2892898|T037|AB|V36.0|ICD10CM|Driver of 3-whl mv injured in clsn w nonmtr vehicle nontraf|Driver of 3-whl mv injured in clsn w nonmtr vehicle nontraf +C2892899|T037|AB|V36.0XXA|ICD10CM|Driver of 3-whl mv inj in clsn w nonmtr veh nontraf, init|Driver of 3-whl mv inj in clsn w nonmtr veh nontraf, init +C2892900|T037|AB|V36.0XXD|ICD10CM|Driver of 3-whl mv inj in clsn w nonmtr veh nontraf, subs|Driver of 3-whl mv inj in clsn w nonmtr veh nontraf, subs +C2892901|T037|AB|V36.0XXS|ICD10CM|Driver of 3-whl mv inj in clsn w nonmtr veh nontraf, sqla|Driver of 3-whl mv inj in clsn w nonmtr veh nontraf, sqla +C2892902|T037|AB|V36.1|ICD10CM|Pasngr in 3-whl mv injured in clsn w nonmtr vehicle nontraf|Pasngr in 3-whl mv injured in clsn w nonmtr vehicle nontraf +C2892903|T037|AB|V36.1XXA|ICD10CM|Pasngr in 3-whl mv inj in clsn w nonmtr veh nontraf, init|Pasngr in 3-whl mv inj in clsn w nonmtr veh nontraf, init +C2892904|T037|AB|V36.1XXD|ICD10CM|Pasngr in 3-whl mv inj in clsn w nonmtr veh nontraf, subs|Pasngr in 3-whl mv inj in clsn w nonmtr veh nontraf, subs +C2892905|T037|AB|V36.1XXS|ICD10CM|Pasngr in 3-whl mv inj in clsn w nonmtr veh nontraf, sqla|Pasngr in 3-whl mv inj in clsn w nonmtr veh nontraf, sqla +C2892906|T037|AB|V36.2|ICD10CM|Person outside 3-whl mv inj in clsn w nonmtr vehicle nontraf|Person outside 3-whl mv inj in clsn w nonmtr vehicle nontraf +C2892907|T037|AB|V36.2XXA|ICD10CM|Person outsd 3-whl mv inj in clsn w nonmtr veh nontraf, init|Person outsd 3-whl mv inj in clsn w nonmtr veh nontraf, init +C2892908|T037|AB|V36.2XXD|ICD10CM|Person outsd 3-whl mv inj in clsn w nonmtr veh nontraf, subs|Person outsd 3-whl mv inj in clsn w nonmtr veh nontraf, subs +C2892909|T037|AB|V36.2XXS|ICD10CM|Person outsd 3-whl mv inj in clsn w nonmtr veh nontraf, sqla|Person outsd 3-whl mv inj in clsn w nonmtr veh nontraf, sqla +C2892910|T037|AB|V36.3|ICD10CM|Occup of 3-whl mv injured in clsn w nonmtr vehicle nontraf|Occup of 3-whl mv injured in clsn w nonmtr vehicle nontraf +C2892911|T037|AB|V36.3XXA|ICD10CM|Occup of 3-whl mv inj in clsn w nonmtr vehicle nontraf, init|Occup of 3-whl mv inj in clsn w nonmtr vehicle nontraf, init +C2892912|T037|AB|V36.3XXD|ICD10CM|Occup of 3-whl mv inj in clsn w nonmtr vehicle nontraf, subs|Occup of 3-whl mv inj in clsn w nonmtr vehicle nontraf, subs +C2892913|T037|AB|V36.3XXS|ICD10CM|Occup of 3-whl mv inj in clsn w nonmtr vehicle nontraf, sqla|Occup of 3-whl mv inj in clsn w nonmtr vehicle nontraf, sqla +C2892914|T037|AB|V36.4|ICD10CM|Prsn brd/alit a 3-whl mv injured in clsn w nonmtr vehicle|Prsn brd/alit a 3-whl mv injured in clsn w nonmtr vehicle +C2892915|T037|AB|V36.4XXA|ICD10CM|Prsn brd/alit a 3-whl mv inj in clsn w nonmtr vehicle, init|Prsn brd/alit a 3-whl mv inj in clsn w nonmtr vehicle, init +C2892916|T037|AB|V36.4XXD|ICD10CM|Prsn brd/alit a 3-whl mv inj in clsn w nonmtr vehicle, subs|Prsn brd/alit a 3-whl mv inj in clsn w nonmtr vehicle, subs +C2892917|T037|AB|V36.4XXS|ICD10CM|Prsn brd/alit a 3-whl mv inj in clsn w nonmtr vehicle, sqla|Prsn brd/alit a 3-whl mv inj in clsn w nonmtr vehicle, sqla +C2892918|T037|AB|V36.5|ICD10CM|Driver of 3-whl mv injured in clsn w nonmtr vehicle in traf|Driver of 3-whl mv injured in clsn w nonmtr vehicle in traf +C2892919|T037|AB|V36.5XXA|ICD10CM|Driver of 3-whl mv inj in clsn w nonmtr veh in traf, init|Driver of 3-whl mv inj in clsn w nonmtr veh in traf, init +C2892920|T037|AB|V36.5XXD|ICD10CM|Driver of 3-whl mv inj in clsn w nonmtr veh in traf, subs|Driver of 3-whl mv inj in clsn w nonmtr veh in traf, subs +C2892921|T037|AB|V36.5XXS|ICD10CM|Driver of 3-whl mv inj in clsn w nonmtr veh in traf, sqla|Driver of 3-whl mv inj in clsn w nonmtr veh in traf, sqla +C2892922|T037|AB|V36.6|ICD10CM|Pasngr in 3-whl mv injured in clsn w nonmtr vehicle in traf|Pasngr in 3-whl mv injured in clsn w nonmtr vehicle in traf +C2892923|T037|AB|V36.6XXA|ICD10CM|Pasngr in 3-whl mv inj in clsn w nonmtr veh in traf, init|Pasngr in 3-whl mv inj in clsn w nonmtr veh in traf, init +C2892924|T037|AB|V36.6XXD|ICD10CM|Pasngr in 3-whl mv inj in clsn w nonmtr veh in traf, subs|Pasngr in 3-whl mv inj in clsn w nonmtr veh in traf, subs +C2892925|T037|AB|V36.6XXS|ICD10CM|Pasngr in 3-whl mv inj in clsn w nonmtr veh in traf, sqla|Pasngr in 3-whl mv inj in clsn w nonmtr veh in traf, sqla +C2892926|T037|AB|V36.7|ICD10CM|Person outside 3-whl mv inj in clsn w nonmtr vehicle in traf|Person outside 3-whl mv inj in clsn w nonmtr vehicle in traf +C2892927|T037|AB|V36.7XXA|ICD10CM|Person outsd 3-whl mv inj in clsn w nonmtr veh in traf, init|Person outsd 3-whl mv inj in clsn w nonmtr veh in traf, init +C2892928|T037|AB|V36.7XXD|ICD10CM|Person outsd 3-whl mv inj in clsn w nonmtr veh in traf, subs|Person outsd 3-whl mv inj in clsn w nonmtr veh in traf, subs +C2892929|T037|AB|V36.7XXS|ICD10CM|Person outsd 3-whl mv inj in clsn w nonmtr veh in traf, sqla|Person outsd 3-whl mv inj in clsn w nonmtr veh in traf, sqla +C2892930|T037|AB|V36.9|ICD10CM|Occup of 3-whl mv injured in clsn w nonmtr vehicle in traf|Occup of 3-whl mv injured in clsn w nonmtr vehicle in traf +C2892931|T037|AB|V36.9XXA|ICD10CM|Occup of 3-whl mv inj in clsn w nonmtr vehicle in traf, init|Occup of 3-whl mv inj in clsn w nonmtr vehicle in traf, init +C2892932|T037|AB|V36.9XXD|ICD10CM|Occup of 3-whl mv inj in clsn w nonmtr vehicle in traf, subs|Occup of 3-whl mv inj in clsn w nonmtr vehicle in traf, subs +C2892933|T037|AB|V36.9XXS|ICD10CM|Occup of 3-whl mv inj in clsn w nonmtr vehicle in traf, sqla|Occup of 3-whl mv inj in clsn w nonmtr vehicle in traf, sqla +C0476949|T037|AB|V37|ICD10CM|Occupant of 3-whl mv injured in collision w statnry object|Occupant of 3-whl mv injured in collision w statnry object +C0476949|T037|HT|V37|ICD10CM|Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object|Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object +C0476949|T037|HT|V37|ICD10|Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object|Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object +C2892934|T037|AB|V37.0|ICD10CM|Driver of 3-whl mv injured in clsn w statnry object nontraf|Driver of 3-whl mv injured in clsn w statnry object nontraf +C2892935|T037|AB|V37.0XXA|ICD10CM|Drvr of 3-whl mv inj in clsn w statnry object nontraf, init|Drvr of 3-whl mv inj in clsn w statnry object nontraf, init +C2892936|T037|AB|V37.0XXD|ICD10CM|Drvr of 3-whl mv inj in clsn w statnry object nontraf, subs|Drvr of 3-whl mv inj in clsn w statnry object nontraf, subs +C2892937|T037|AB|V37.0XXS|ICD10CM|Drvr of 3-whl mv inj in clsn w statnry object nontraf, sqla|Drvr of 3-whl mv inj in clsn w statnry object nontraf, sqla +C2892938|T037|AB|V37.1|ICD10CM|Pasngr in 3-whl mv injured in clsn w statnry object nontraf|Pasngr in 3-whl mv injured in clsn w statnry object nontraf +C2892939|T037|AB|V37.1XXA|ICD10CM|Pasngr in 3-whl mv inj in clsn w statnry obj nontraf, init|Pasngr in 3-whl mv inj in clsn w statnry obj nontraf, init +C2892940|T037|AB|V37.1XXD|ICD10CM|Pasngr in 3-whl mv inj in clsn w statnry obj nontraf, subs|Pasngr in 3-whl mv inj in clsn w statnry obj nontraf, subs +C2892941|T037|AB|V37.1XXS|ICD10CM|Pasngr in 3-whl mv inj in clsn w statnry obj nontraf, sqla|Pasngr in 3-whl mv inj in clsn w statnry obj nontraf, sqla +C2892942|T037|AB|V37.2|ICD10CM|Person outside 3-whl mv inj in clsn w statnry object nontraf|Person outside 3-whl mv inj in clsn w statnry object nontraf +C2892943|T037|AB|V37.2XXA|ICD10CM|Prsn outsd 3-whl mv inj in clsn w statnry obj nontraf, init|Prsn outsd 3-whl mv inj in clsn w statnry obj nontraf, init +C2892944|T037|AB|V37.2XXD|ICD10CM|Prsn outsd 3-whl mv inj in clsn w statnry obj nontraf, subs|Prsn outsd 3-whl mv inj in clsn w statnry obj nontraf, subs +C2892945|T037|AB|V37.2XXS|ICD10CM|Prsn outsd 3-whl mv inj in clsn w statnry obj nontraf, sqla|Prsn outsd 3-whl mv inj in clsn w statnry obj nontraf, sqla +C2892946|T037|AB|V37.3|ICD10CM|Occup of 3-whl mv injured in clsn w statnry object nontraf|Occup of 3-whl mv injured in clsn w statnry object nontraf +C2892947|T037|AB|V37.3XXA|ICD10CM|Occup of 3-whl mv inj in clsn w statnry object nontraf, init|Occup of 3-whl mv inj in clsn w statnry object nontraf, init +C2892948|T037|AB|V37.3XXD|ICD10CM|Occup of 3-whl mv inj in clsn w statnry object nontraf, subs|Occup of 3-whl mv inj in clsn w statnry object nontraf, subs +C2892949|T037|AB|V37.3XXS|ICD10CM|Occup of 3-whl mv inj in clsn w statnry object nontraf, sqla|Occup of 3-whl mv inj in clsn w statnry object nontraf, sqla +C2892950|T037|AB|V37.4|ICD10CM|Prsn brd/alit a 3-whl mv injured in clsn w statnry object|Prsn brd/alit a 3-whl mv injured in clsn w statnry object +C2892951|T037|AB|V37.4XXA|ICD10CM|Prsn brd/alit a 3-whl mv inj in clsn w statnry object, init|Prsn brd/alit a 3-whl mv inj in clsn w statnry object, init +C2892952|T037|AB|V37.4XXD|ICD10CM|Prsn brd/alit a 3-whl mv inj in clsn w statnry object, subs|Prsn brd/alit a 3-whl mv inj in clsn w statnry object, subs +C2892953|T037|AB|V37.4XXS|ICD10CM|Prsn brd/alit a 3-whl mv inj in clsn w statnry object, sqla|Prsn brd/alit a 3-whl mv inj in clsn w statnry object, sqla +C2892954|T037|AB|V37.5|ICD10CM|Driver of 3-whl mv injured in clsn w statnry object in traf|Driver of 3-whl mv injured in clsn w statnry object in traf +C2892955|T037|AB|V37.5XXA|ICD10CM|Drvr of 3-whl mv inj in clsn w statnry object in traf, init|Drvr of 3-whl mv inj in clsn w statnry object in traf, init +C2892956|T037|AB|V37.5XXD|ICD10CM|Drvr of 3-whl mv inj in clsn w statnry object in traf, subs|Drvr of 3-whl mv inj in clsn w statnry object in traf, subs +C2892957|T037|AB|V37.5XXS|ICD10CM|Drvr of 3-whl mv inj in clsn w statnry object in traf, sqla|Drvr of 3-whl mv inj in clsn w statnry object in traf, sqla +C2892958|T037|AB|V37.6|ICD10CM|Pasngr in 3-whl mv injured in clsn w statnry object in traf|Pasngr in 3-whl mv injured in clsn w statnry object in traf +C2892959|T037|AB|V37.6XXA|ICD10CM|Pasngr in 3-whl mv inj in clsn w statnry obj in traf, init|Pasngr in 3-whl mv inj in clsn w statnry obj in traf, init +C2892960|T037|AB|V37.6XXD|ICD10CM|Pasngr in 3-whl mv inj in clsn w statnry obj in traf, subs|Pasngr in 3-whl mv inj in clsn w statnry obj in traf, subs +C2892961|T037|AB|V37.6XXS|ICD10CM|Pasngr in 3-whl mv inj in clsn w statnry obj in traf, sqla|Pasngr in 3-whl mv inj in clsn w statnry obj in traf, sqla +C2892962|T037|AB|V37.7|ICD10CM|Person outside 3-whl mv inj in clsn w statnry object in traf|Person outside 3-whl mv inj in clsn w statnry object in traf +C2892963|T037|AB|V37.7XXA|ICD10CM|Prsn outsd 3-whl mv inj in clsn w statnry obj in traf, init|Prsn outsd 3-whl mv inj in clsn w statnry obj in traf, init +C2892964|T037|AB|V37.7XXD|ICD10CM|Prsn outsd 3-whl mv inj in clsn w statnry obj in traf, subs|Prsn outsd 3-whl mv inj in clsn w statnry obj in traf, subs +C2892965|T037|AB|V37.7XXS|ICD10CM|Prsn outsd 3-whl mv inj in clsn w statnry obj in traf, sqla|Prsn outsd 3-whl mv inj in clsn w statnry obj in traf, sqla +C2892966|T037|AB|V37.9|ICD10CM|Occup of 3-whl mv injured in clsn w statnry object in traf|Occup of 3-whl mv injured in clsn w statnry object in traf +C2892967|T037|AB|V37.9XXA|ICD10CM|Occup of 3-whl mv inj in clsn w statnry object in traf, init|Occup of 3-whl mv inj in clsn w statnry object in traf, init +C2892968|T037|AB|V37.9XXD|ICD10CM|Occup of 3-whl mv inj in clsn w statnry object in traf, subs|Occup of 3-whl mv inj in clsn w statnry object in traf, subs +C2892969|T037|AB|V37.9XXS|ICD10CM|Occup of 3-whl mv inj in clsn w statnry object in traf, sqla|Occup of 3-whl mv inj in clsn w statnry object in traf, sqla +C4290427|T037|ET|V38|ICD10CM|fall or thrown from three-wheeled motor vehicle|fall or thrown from three-wheeled motor vehicle +C0476950|T037|AB|V38|ICD10CM|Occupant of 3-whl mv injured in nonclsn transport accident|Occupant of 3-whl mv injured in nonclsn transport accident +C0476950|T037|HT|V38|ICD10CM|Occupant of three-wheeled motor vehicle injured in noncollision transport accident|Occupant of three-wheeled motor vehicle injured in noncollision transport accident +C0476950|T037|HT|V38|ICD10|Occupant of three-wheeled motor vehicle injured in noncollision transport accident|Occupant of three-wheeled motor vehicle injured in noncollision transport accident +C4290428|T037|ET|V38|ICD10CM|overturning of three-wheeled motor vehicle NOS|overturning of three-wheeled motor vehicle NOS +C4290429|T037|ET|V38|ICD10CM|overturning of three-wheeled motor vehicle without collision|overturning of three-wheeled motor vehicle without collision +C2892973|T037|AB|V38.0|ICD10CM|Driver of 3-whl mv injured in nonclsn trnsp accident nontraf|Driver of 3-whl mv injured in nonclsn trnsp accident nontraf +C2892974|T037|AB|V38.0XXA|ICD10CM|Driver of 3-whl mv inj in nonclsn trnsp acc nontraf, init|Driver of 3-whl mv inj in nonclsn trnsp acc nontraf, init +C2892975|T037|AB|V38.0XXD|ICD10CM|Driver of 3-whl mv inj in nonclsn trnsp acc nontraf, subs|Driver of 3-whl mv inj in nonclsn trnsp acc nontraf, subs +C2892976|T037|AB|V38.0XXS|ICD10CM|Driver of 3-whl mv inj in nonclsn trnsp acc nontraf, sequela|Driver of 3-whl mv inj in nonclsn trnsp acc nontraf, sequela +C2892977|T037|AB|V38.1|ICD10CM|Pasngr in 3-whl mv injured in nonclsn trnsp accident nontraf|Pasngr in 3-whl mv injured in nonclsn trnsp accident nontraf +C2892978|T037|AB|V38.1XXA|ICD10CM|Pasngr in 3-whl mv inj in nonclsn trnsp acc nontraf, init|Pasngr in 3-whl mv inj in nonclsn trnsp acc nontraf, init +C2892979|T037|AB|V38.1XXD|ICD10CM|Pasngr in 3-whl mv inj in nonclsn trnsp acc nontraf, subs|Pasngr in 3-whl mv inj in nonclsn trnsp acc nontraf, subs +C2892980|T037|AB|V38.1XXS|ICD10CM|Pasngr in 3-whl mv inj in nonclsn trnsp acc nontraf, sequela|Pasngr in 3-whl mv inj in nonclsn trnsp acc nontraf, sequela +C2892981|T037|AB|V38.2|ICD10CM|Person outside 3-whl mv injured in nonclsn trnsp acc nontraf|Person outside 3-whl mv injured in nonclsn trnsp acc nontraf +C2892982|T037|AB|V38.2XXA|ICD10CM|Person outsd 3-whl mv inj in nonclsn trnsp acc nontraf, init|Person outsd 3-whl mv inj in nonclsn trnsp acc nontraf, init +C2892983|T037|AB|V38.2XXD|ICD10CM|Person outsd 3-whl mv inj in nonclsn trnsp acc nontraf, subs|Person outsd 3-whl mv inj in nonclsn trnsp acc nontraf, subs +C2892984|T037|AB|V38.2XXS|ICD10CM|Person outsd 3-whl mv inj in nonclsn trnsp acc nontraf, sqla|Person outsd 3-whl mv inj in nonclsn trnsp acc nontraf, sqla +C2892985|T037|AB|V38.3|ICD10CM|Occup of 3-whl mv injured in nonclsn trnsp accident nontraf|Occup of 3-whl mv injured in nonclsn trnsp accident nontraf +C2892986|T037|AB|V38.3XXA|ICD10CM|Occup of 3-whl mv injured in nonclsn trnsp acc nontraf, init|Occup of 3-whl mv injured in nonclsn trnsp acc nontraf, init +C2892987|T037|AB|V38.3XXD|ICD10CM|Occup of 3-whl mv injured in nonclsn trnsp acc nontraf, subs|Occup of 3-whl mv injured in nonclsn trnsp acc nontraf, subs +C2892988|T037|AB|V38.3XXS|ICD10CM|Occup of 3-whl mv inj in nonclsn trnsp acc nontraf, sequela|Occup of 3-whl mv inj in nonclsn trnsp acc nontraf, sequela +C2892989|T037|AB|V38.4|ICD10CM|Prsn brd/alit a 3-whl mv injured in nonclsn trnsp accident|Prsn brd/alit a 3-whl mv injured in nonclsn trnsp accident +C2892990|T037|AB|V38.4XXA|ICD10CM|Prsn brd/alit a 3-whl mv injured in nonclsn trnsp acc, init|Prsn brd/alit a 3-whl mv injured in nonclsn trnsp acc, init +C2892991|T037|AB|V38.4XXD|ICD10CM|Prsn brd/alit a 3-whl mv injured in nonclsn trnsp acc, subs|Prsn brd/alit a 3-whl mv injured in nonclsn trnsp acc, subs +C2892992|T037|AB|V38.4XXS|ICD10CM|Prsn brd/alit a 3-whl mv inj in nonclsn trnsp acc, sequela|Prsn brd/alit a 3-whl mv inj in nonclsn trnsp acc, sequela +C2892993|T037|AB|V38.5|ICD10CM|Driver of 3-whl mv injured in nonclsn trnsp accident in traf|Driver of 3-whl mv injured in nonclsn trnsp accident in traf +C2892993|T037|HT|V38.5|ICD10CM|Driver of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident|Driver of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident +C2892994|T037|AB|V38.5XXA|ICD10CM|Driver of 3-whl mv inj in nonclsn trnsp acc in traf, init|Driver of 3-whl mv inj in nonclsn trnsp acc in traf, init +C2892995|T037|AB|V38.5XXD|ICD10CM|Driver of 3-whl mv inj in nonclsn trnsp acc in traf, subs|Driver of 3-whl mv inj in nonclsn trnsp acc in traf, subs +C2892996|T037|AB|V38.5XXS|ICD10CM|Driver of 3-whl mv inj in nonclsn trnsp acc in traf, sequela|Driver of 3-whl mv inj in nonclsn trnsp acc in traf, sequela +C2892997|T037|AB|V38.6|ICD10CM|Pasngr in 3-whl mv injured in nonclsn trnsp accident in traf|Pasngr in 3-whl mv injured in nonclsn trnsp accident in traf +C2892998|T037|AB|V38.6XXA|ICD10CM|Pasngr in 3-whl mv inj in nonclsn trnsp acc in traf, init|Pasngr in 3-whl mv inj in nonclsn trnsp acc in traf, init +C2892999|T037|AB|V38.6XXD|ICD10CM|Pasngr in 3-whl mv inj in nonclsn trnsp acc in traf, subs|Pasngr in 3-whl mv inj in nonclsn trnsp acc in traf, subs +C2893000|T037|AB|V38.6XXS|ICD10CM|Pasngr in 3-whl mv inj in nonclsn trnsp acc in traf, sequela|Pasngr in 3-whl mv inj in nonclsn trnsp acc in traf, sequela +C2893001|T037|AB|V38.7|ICD10CM|Person outside 3-whl mv injured in nonclsn trnsp acc in traf|Person outside 3-whl mv injured in nonclsn trnsp acc in traf +C2893002|T037|AB|V38.7XXA|ICD10CM|Person outsd 3-whl mv inj in nonclsn trnsp acc in traf, init|Person outsd 3-whl mv inj in nonclsn trnsp acc in traf, init +C2893003|T037|AB|V38.7XXD|ICD10CM|Person outsd 3-whl mv inj in nonclsn trnsp acc in traf, subs|Person outsd 3-whl mv inj in nonclsn trnsp acc in traf, subs +C2893004|T037|AB|V38.7XXS|ICD10CM|Person outsd 3-whl mv inj in nonclsn trnsp acc in traf, sqla|Person outsd 3-whl mv inj in nonclsn trnsp acc in traf, sqla +C2893005|T037|AB|V38.9|ICD10CM|Occup of 3-whl mv injured in nonclsn trnsp accident in traf|Occup of 3-whl mv injured in nonclsn trnsp accident in traf +C2893006|T037|AB|V38.9XXA|ICD10CM|Occup of 3-whl mv injured in nonclsn trnsp acc in traf, init|Occup of 3-whl mv injured in nonclsn trnsp acc in traf, init +C2893007|T037|AB|V38.9XXD|ICD10CM|Occup of 3-whl mv injured in nonclsn trnsp acc in traf, subs|Occup of 3-whl mv injured in nonclsn trnsp acc in traf, subs +C2893008|T037|AB|V38.9XXS|ICD10CM|Occup of 3-whl mv inj in nonclsn trnsp acc in traf, sequela|Occup of 3-whl mv inj in nonclsn trnsp acc in traf, sequela +C0476951|T037|AB|V39|ICD10CM|Occupant of 3-whl mv injured in oth and unsp transport acc|Occupant of 3-whl mv injured in oth and unsp transport acc +C0476951|T037|HT|V39|ICD10CM|Occupant of three-wheeled motor vehicle injured in other and unspecified transport accidents|Occupant of three-wheeled motor vehicle injured in other and unspecified transport accidents +C0476951|T037|HT|V39|ICD10|Occupant of three-wheeled motor vehicle injured in other and unspecified transport accidents|Occupant of three-wheeled motor vehicle injured in other and unspecified transport accidents +C0496239|T037|PT|V39.0|ICD10|Driver injured in collision with other and unspecified motor vehicles in nontraffic accident|Driver injured in collision with other and unspecified motor vehicles in nontraffic accident +C0496239|T037|AB|V39.0|ICD10CM|Driver of 3-whl mv injured in clsn w oth and unsp mv nontraf|Driver of 3-whl mv injured in clsn w oth and unsp mv nontraf +C2893009|T037|AB|V39.00|ICD10CM|Driver of 3-whl mv injured in collision w unsp mv nontraf|Driver of 3-whl mv injured in collision w unsp mv nontraf +C2893010|T037|AB|V39.00XA|ICD10CM|Driver of 3-whl mv injured in clsn w unsp mv nontraf, init|Driver of 3-whl mv injured in clsn w unsp mv nontraf, init +C2893011|T037|AB|V39.00XD|ICD10CM|Driver of 3-whl mv injured in clsn w unsp mv nontraf, subs|Driver of 3-whl mv injured in clsn w unsp mv nontraf, subs +C2893012|T037|AB|V39.00XS|ICD10CM|Driver of 3-whl mv inj in clsn w unsp mv nontraf, sequela|Driver of 3-whl mv inj in clsn w unsp mv nontraf, sequela +C2893013|T037|AB|V39.09|ICD10CM|Driver of 3-whl mv injured in collision w oth mv nontraf|Driver of 3-whl mv injured in collision w oth mv nontraf +C2893014|T037|AB|V39.09XA|ICD10CM|Driver of 3-whl mv injured in clsn w oth mv nontraf, init|Driver of 3-whl mv injured in clsn w oth mv nontraf, init +C2893015|T037|AB|V39.09XD|ICD10CM|Driver of 3-whl mv injured in clsn w oth mv nontraf, subs|Driver of 3-whl mv injured in clsn w oth mv nontraf, subs +C2893016|T037|AB|V39.09XS|ICD10CM|Driver of 3-whl mv injured in clsn w oth mv nontraf, sequela|Driver of 3-whl mv injured in clsn w oth mv nontraf, sequela +C0496240|T037|AB|V39.1|ICD10CM|Pasngr in 3-whl mv injured in clsn w oth and unsp mv nontraf|Pasngr in 3-whl mv injured in clsn w oth and unsp mv nontraf +C0496240|T037|PT|V39.1|ICD10|Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident|Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident +C2893017|T037|AB|V39.10|ICD10CM|Passenger in 3-whl mv injured in collision w unsp mv nontraf|Passenger in 3-whl mv injured in collision w unsp mv nontraf +C2893018|T037|AB|V39.10XA|ICD10CM|Pasngr in 3-whl mv injured in clsn w unsp mv nontraf, init|Pasngr in 3-whl mv injured in clsn w unsp mv nontraf, init +C2893019|T037|AB|V39.10XD|ICD10CM|Pasngr in 3-whl mv injured in clsn w unsp mv nontraf, subs|Pasngr in 3-whl mv injured in clsn w unsp mv nontraf, subs +C2893020|T037|AB|V39.10XS|ICD10CM|Pasngr in 3-whl mv inj in clsn w unsp mv nontraf, sequela|Pasngr in 3-whl mv inj in clsn w unsp mv nontraf, sequela +C2893021|T037|AB|V39.19|ICD10CM|Passenger in 3-whl mv injured in collision w oth mv nontraf|Passenger in 3-whl mv injured in collision w oth mv nontraf +C2893022|T037|AB|V39.19XA|ICD10CM|Passenger in 3-whl mv injured in clsn w oth mv nontraf, init|Passenger in 3-whl mv injured in clsn w oth mv nontraf, init +C2893023|T037|AB|V39.19XD|ICD10CM|Passenger in 3-whl mv injured in clsn w oth mv nontraf, subs|Passenger in 3-whl mv injured in clsn w oth mv nontraf, subs +C2893024|T037|AB|V39.19XS|ICD10CM|Pasngr in 3-whl mv injured in clsn w oth mv nontraf, sequela|Pasngr in 3-whl mv injured in clsn w oth mv nontraf, sequela +C0476954|T037|AB|V39.2|ICD10CM|Occup of 3-whl mv injured in clsn w oth and unsp mv nontraf|Occup of 3-whl mv injured in clsn w oth and unsp mv nontraf +C2893025|T037|ET|V39.20|ICD10CM|Collision NOS involving three-wheeled motor vehicle, nontraffic|Collision NOS involving three-wheeled motor vehicle, nontraffic +C2893026|T037|AB|V39.20|ICD10CM|Occup of 3-whl mv injured in collision w unsp mv nontraf|Occup of 3-whl mv injured in collision w unsp mv nontraf +C2893027|T037|AB|V39.20XA|ICD10CM|Occup of 3-whl mv injured in clsn w unsp mv nontraf, init|Occup of 3-whl mv injured in clsn w unsp mv nontraf, init +C2893028|T037|AB|V39.20XD|ICD10CM|Occup of 3-whl mv injured in clsn w unsp mv nontraf, subs|Occup of 3-whl mv injured in clsn w unsp mv nontraf, subs +C2893029|T037|AB|V39.20XS|ICD10CM|Occup of 3-whl mv injured in clsn w unsp mv nontraf, sequela|Occup of 3-whl mv injured in clsn w unsp mv nontraf, sequela +C2893030|T037|AB|V39.29|ICD10CM|Occup of 3-whl mv injured in collision w oth mv nontraf|Occup of 3-whl mv injured in collision w oth mv nontraf +C2893031|T037|AB|V39.29XA|ICD10CM|Occup of 3-whl mv injured in clsn w oth mv nontraf, init|Occup of 3-whl mv injured in clsn w oth mv nontraf, init +C2893032|T037|AB|V39.29XD|ICD10CM|Occup of 3-whl mv injured in clsn w oth mv nontraf, subs|Occup of 3-whl mv injured in clsn w oth mv nontraf, subs +C2893033|T037|AB|V39.29XS|ICD10CM|Occup of 3-whl mv injured in clsn w oth mv nontraf, sequela|Occup of 3-whl mv injured in clsn w oth mv nontraf, sequela +C2893034|T037|ET|V39.3|ICD10CM|Accident NOS involving three-wheeled motor vehicle, nontraffic|Accident NOS involving three-wheeled motor vehicle, nontraffic +C2893036|T037|AB|V39.3|ICD10CM|Occupant (driver) of 3-whl mv injured in unsp nontraf|Occupant (driver) of 3-whl mv injured in unsp nontraf +C0476955|T037|PT|V39.3|ICD10|Occupant [any] of three-wheeled motor vehicle injured in unspecified nontraffic accident|Occupant [any] of three-wheeled motor vehicle injured in unspecified nontraffic accident +C2893035|T037|ET|V39.3|ICD10CM|Occupant of three-wheeled motor vehicle injured in nontraffic accident NOS|Occupant of three-wheeled motor vehicle injured in nontraffic accident NOS +C2893037|T037|AB|V39.3XXA|ICD10CM|Occupant (driver) of 3-whl mv injured in unsp nontraf, init|Occupant (driver) of 3-whl mv injured in unsp nontraf, init +C2893038|T037|AB|V39.3XXD|ICD10CM|Occupant (driver) of 3-whl mv injured in unsp nontraf, subs|Occupant (driver) of 3-whl mv injured in unsp nontraf, subs +C2893039|T037|AB|V39.3XXS|ICD10CM|Occupant of 3-whl mv injured in unsp nontraf, sequela|Occupant of 3-whl mv injured in unsp nontraf, sequela +C0496241|T037|PT|V39.4|ICD10|Driver injured in collision with other and unspecified motor vehicles in traffic accident|Driver injured in collision with other and unspecified motor vehicles in traffic accident +C0496241|T037|AB|V39.4|ICD10CM|Driver of 3-whl mv injured in clsn w oth and unsp mv in traf|Driver of 3-whl mv injured in clsn w oth and unsp mv in traf +C2893040|T037|AB|V39.40|ICD10CM|Driver of 3-whl mv injured in collision w unsp mv in traf|Driver of 3-whl mv injured in collision w unsp mv in traf +C2893041|T037|AB|V39.40XA|ICD10CM|Driver of 3-whl mv injured in clsn w unsp mv in traf, init|Driver of 3-whl mv injured in clsn w unsp mv in traf, init +C2893042|T037|AB|V39.40XD|ICD10CM|Driver of 3-whl mv injured in clsn w unsp mv in traf, subs|Driver of 3-whl mv injured in clsn w unsp mv in traf, subs +C2893043|T037|AB|V39.40XS|ICD10CM|Driver of 3-whl mv inj in clsn w unsp mv in traf, sequela|Driver of 3-whl mv inj in clsn w unsp mv in traf, sequela +C2893044|T037|AB|V39.49|ICD10CM|Driver of 3-whl mv injured in collision w oth mv in traf|Driver of 3-whl mv injured in collision w oth mv in traf +C2893045|T037|AB|V39.49XA|ICD10CM|Driver of 3-whl mv injured in clsn w oth mv in traf, init|Driver of 3-whl mv injured in clsn w oth mv in traf, init +C2893046|T037|AB|V39.49XD|ICD10CM|Driver of 3-whl mv injured in clsn w oth mv in traf, subs|Driver of 3-whl mv injured in clsn w oth mv in traf, subs +C2893047|T037|AB|V39.49XS|ICD10CM|Driver of 3-whl mv injured in clsn w oth mv in traf, sequela|Driver of 3-whl mv injured in clsn w oth mv in traf, sequela +C0476957|T037|AB|V39.5|ICD10CM|Pasngr in 3-whl mv injured in clsn w oth and unsp mv in traf|Pasngr in 3-whl mv injured in clsn w oth and unsp mv in traf +C0496242|T037|PT|V39.5|ICD10|Passenger injured in collision with other and unspecified motor vehicles in traffic accident|Passenger injured in collision with other and unspecified motor vehicles in traffic accident +C2893048|T037|AB|V39.50|ICD10CM|Passenger in 3-whl mv injured in collision w unsp mv in traf|Passenger in 3-whl mv injured in collision w unsp mv in traf +C2893049|T037|AB|V39.50XA|ICD10CM|Pasngr in 3-whl mv injured in clsn w unsp mv in traf, init|Pasngr in 3-whl mv injured in clsn w unsp mv in traf, init +C2893050|T037|AB|V39.50XD|ICD10CM|Pasngr in 3-whl mv injured in clsn w unsp mv in traf, subs|Pasngr in 3-whl mv injured in clsn w unsp mv in traf, subs +C2893051|T037|AB|V39.50XS|ICD10CM|Pasngr in 3-whl mv inj in clsn w unsp mv in traf, sequela|Pasngr in 3-whl mv inj in clsn w unsp mv in traf, sequela +C2893052|T037|AB|V39.59|ICD10CM|Passenger in 3-whl mv injured in collision w oth mv in traf|Passenger in 3-whl mv injured in collision w oth mv in traf +C2893053|T037|AB|V39.59XA|ICD10CM|Passenger in 3-whl mv injured in clsn w oth mv in traf, init|Passenger in 3-whl mv injured in clsn w oth mv in traf, init +C2893054|T037|AB|V39.59XD|ICD10CM|Passenger in 3-whl mv injured in clsn w oth mv in traf, subs|Passenger in 3-whl mv injured in clsn w oth mv in traf, subs +C2893055|T037|AB|V39.59XS|ICD10CM|Pasngr in 3-whl mv injured in clsn w oth mv in traf, sequela|Pasngr in 3-whl mv injured in clsn w oth mv in traf, sequela +C0476958|T037|AB|V39.6|ICD10CM|Occup of 3-whl mv injured in clsn w oth and unsp mv in traf|Occup of 3-whl mv injured in clsn w oth and unsp mv in traf +C2893056|T037|ET|V39.60|ICD10CM|Collision NOS involving three-wheeled motor vehicle (traffic)|Collision NOS involving three-wheeled motor vehicle (traffic) +C2893057|T037|AB|V39.60|ICD10CM|Occup of 3-whl mv injured in collision w unsp mv in traf|Occup of 3-whl mv injured in collision w unsp mv in traf +C2893058|T037|AB|V39.60XA|ICD10CM|Occup of 3-whl mv injured in clsn w unsp mv in traf, init|Occup of 3-whl mv injured in clsn w unsp mv in traf, init +C2893059|T037|AB|V39.60XD|ICD10CM|Occup of 3-whl mv injured in clsn w unsp mv in traf, subs|Occup of 3-whl mv injured in clsn w unsp mv in traf, subs +C2893060|T037|AB|V39.60XS|ICD10CM|Occup of 3-whl mv injured in clsn w unsp mv in traf, sequela|Occup of 3-whl mv injured in clsn w unsp mv in traf, sequela +C2893061|T037|AB|V39.69|ICD10CM|Occup of 3-whl mv injured in collision w oth mv in traf|Occup of 3-whl mv injured in collision w oth mv in traf +C2893062|T037|AB|V39.69XA|ICD10CM|Occup of 3-whl mv injured in clsn w oth mv in traf, init|Occup of 3-whl mv injured in clsn w oth mv in traf, init +C2893063|T037|AB|V39.69XD|ICD10CM|Occup of 3-whl mv injured in clsn w oth mv in traf, subs|Occup of 3-whl mv injured in clsn w oth mv in traf, subs +C2893064|T037|AB|V39.69XS|ICD10CM|Occup of 3-whl mv injured in clsn w oth mv in traf, sequela|Occup of 3-whl mv injured in clsn w oth mv in traf, sequela +C2893065|T037|AB|V39.8|ICD10CM|Occupant (driver) of 3-whl mv injured in oth transport acc|Occupant (driver) of 3-whl mv injured in oth transport acc +C0476959|T037|PT|V39.8|ICD10|Occupant [any] of three-wheeled motor vehicle injured in other specified transport accidents|Occupant [any] of three-wheeled motor vehicle injured in other specified transport accidents +C2893066|T037|AB|V39.81|ICD10CM|Occupant of 3-whl mv injured in trnsp acc w military vehicle|Occupant of 3-whl mv injured in trnsp acc w military vehicle +C2893067|T037|AB|V39.81XA|ICD10CM|Occ of 3-whl mv injured in trnsp acc w miltry vehicle, init|Occ of 3-whl mv injured in trnsp acc w miltry vehicle, init +C2893068|T037|AB|V39.81XD|ICD10CM|Occ of 3-whl mv injured in trnsp acc w miltry vehicle, subs|Occ of 3-whl mv injured in trnsp acc w miltry vehicle, subs +C2893069|T037|AB|V39.81XS|ICD10CM|Occ of 3-whl mv inj in trnsp acc w miltry vehicle, sequela|Occ of 3-whl mv inj in trnsp acc w miltry vehicle, sequela +C2893065|T037|AB|V39.89|ICD10CM|Occupant (driver) of 3-whl mv injured in oth transport acc|Occupant (driver) of 3-whl mv injured in oth transport acc +C2893070|T037|AB|V39.89XA|ICD10CM|Occupant (driver) of 3-whl mv injured in oth trnsp acc, init|Occupant (driver) of 3-whl mv injured in oth trnsp acc, init +C2893071|T037|AB|V39.89XD|ICD10CM|Occupant (driver) of 3-whl mv injured in oth trnsp acc, subs|Occupant (driver) of 3-whl mv injured in oth trnsp acc, subs +C2893072|T037|AB|V39.89XS|ICD10CM|Occupant of 3-whl mv injured in oth trnsp acc, sequela|Occupant of 3-whl mv injured in oth trnsp acc, sequela +C2893073|T037|ET|V39.9|ICD10CM|Accident NOS involving three-wheeled motor vehicle|Accident NOS involving three-wheeled motor vehicle +C2893074|T037|HT|V39.9|ICD10CM|Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified traffic accident|Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified traffic accident +C2893074|T037|AB|V39.9|ICD10CM|Occupant (driver) of 3-whl mv injured in unsp traf|Occupant (driver) of 3-whl mv injured in unsp traf +C0476960|T037|PT|V39.9|ICD10|Occupant [any] of three-wheeled motor vehicle injured in unspecified traffic accident|Occupant [any] of three-wheeled motor vehicle injured in unspecified traffic accident +C2893075|T037|AB|V39.9XXA|ICD10CM|Occupant (driver) of 3-whl mv injured in unsp traf, init|Occupant (driver) of 3-whl mv injured in unsp traf, init +C2893076|T037|AB|V39.9XXD|ICD10CM|Occupant (driver) of 3-whl mv injured in unsp traf, subs|Occupant (driver) of 3-whl mv injured in unsp traf, subs +C2893077|T037|AB|V39.9XXS|ICD10CM|Occupant (driver) of 3-whl mv injured in unsp traf, sequela|Occupant (driver) of 3-whl mv injured in unsp traf, sequela +C0476962|T037|HT|V40|ICD10|Car occupant injured in collision with pedestrian or animal|Car occupant injured in collision with pedestrian or animal +C0476962|T037|HT|V40|ICD10CM|Car occupant injured in collision with pedestrian or animal|Car occupant injured in collision with pedestrian or animal +C0476962|T037|AB|V40|ICD10CM|Car occupant injured in collision with pedestrian or animal|Car occupant injured in collision with pedestrian or animal +C4290430|T037|ET|V40-V49|ICD10CM|a four-wheeled motor vehicle designed primarily for carrying passengers|a four-wheeled motor vehicle designed primarily for carrying passengers +C4290431|T037|ET|V40-V49|ICD10CM|automobile (pulling a trailer or camper)|automobile (pulling a trailer or camper) +C0476961|T037|HT|V40-V49|ICD10CM|Car occupant injured in transport accident (V40-V49)|Car occupant injured in transport accident (V40-V49) +C0476961|T037|HT|V40-V49.9|ICD10|Car occupant injured in transport accident|Car occupant injured in transport accident +C2893080|T037|AB|V40.0|ICD10CM|Car driver injured in collision w ped/anml nontraf|Car driver injured in collision w ped/anml nontraf +C2893080|T037|HT|V40.0|ICD10CM|Car driver injured in collision with pedestrian or animal in nontraffic accident|Car driver injured in collision with pedestrian or animal in nontraffic accident +C0451638|T037|PT|V40.0|ICD10|Car occupant injured in collision with pedestrian or animal, driver, nontraffic accident|Car occupant injured in collision with pedestrian or animal, driver, nontraffic accident +C2893081|T037|AB|V40.0XXA|ICD10CM|Car driver injured in collision w ped/anml nontraf, init|Car driver injured in collision w ped/anml nontraf, init +C2893081|T037|PT|V40.0XXA|ICD10CM|Car driver injured in collision with pedestrian or animal in nontraffic accident, initial encounter|Car driver injured in collision with pedestrian or animal in nontraffic accident, initial encounter +C2893082|T037|AB|V40.0XXD|ICD10CM|Car driver injured in collision w ped/anml nontraf, subs|Car driver injured in collision w ped/anml nontraf, subs +C2893083|T037|AB|V40.0XXS|ICD10CM|Car driver injured in collision w ped/anml nontraf, sequela|Car driver injured in collision w ped/anml nontraf, sequela +C2893083|T037|PT|V40.0XXS|ICD10CM|Car driver injured in collision with pedestrian or animal in nontraffic accident, sequela|Car driver injured in collision with pedestrian or animal in nontraffic accident, sequela +C0496243|T037|PT|V40.1|ICD10|Car occupant injured in collision with pedestrian or animal, passenger, nontraffic accident|Car occupant injured in collision with pedestrian or animal, passenger, nontraffic accident +C2893084|T037|AB|V40.1|ICD10CM|Car passenger injured in collision w ped/anml nontraf|Car passenger injured in collision w ped/anml nontraf +C2893084|T037|HT|V40.1|ICD10CM|Car passenger injured in collision with pedestrian or animal in nontraffic accident|Car passenger injured in collision with pedestrian or animal in nontraffic accident +C2893085|T037|AB|V40.1XXA|ICD10CM|Car passenger injured in collision w ped/anml nontraf, init|Car passenger injured in collision w ped/anml nontraf, init +C2893086|T037|AB|V40.1XXD|ICD10CM|Car passenger injured in collision w ped/anml nontraf, subs|Car passenger injured in collision w ped/anml nontraf, subs +C2893087|T037|AB|V40.1XXS|ICD10CM|Car passenger injured in clsn w ped/anml nontraf, sequela|Car passenger injured in clsn w ped/anml nontraf, sequela +C2893087|T037|PT|V40.1XXS|ICD10CM|Car passenger injured in collision with pedestrian or animal in nontraffic accident, sequela|Car passenger injured in collision with pedestrian or animal in nontraffic accident, sequela +C2893088|T037|HT|V40.2|ICD10CM|Person on outside of car injured in collision with pedestrian or animal in nontraffic accident|Person on outside of car injured in collision with pedestrian or animal in nontraffic accident +C2893088|T037|AB|V40.2|ICD10CM|Person outside car injured in collision w ped/anml nontraf|Person outside car injured in collision w ped/anml nontraf +C2893089|T037|AB|V40.2XXA|ICD10CM|Person outside car injured in clsn w ped/anml nontraf, init|Person outside car injured in clsn w ped/anml nontraf, init +C2893090|T037|AB|V40.2XXD|ICD10CM|Person outside car injured in clsn w ped/anml nontraf, subs|Person outside car injured in clsn w ped/anml nontraf, subs +C2893091|T037|AB|V40.2XXS|ICD10CM|Person outside car inj in clsn w ped/anml nontraf, sequela|Person outside car inj in clsn w ped/anml nontraf, sequela +C2893092|T037|AB|V40.3|ICD10CM|Unsp car occupant injured in collision w ped/anml nontraf|Unsp car occupant injured in collision w ped/anml nontraf +C2893092|T037|HT|V40.3|ICD10CM|Unspecified car occupant injured in collision with pedestrian or animal in nontraffic accident|Unspecified car occupant injured in collision with pedestrian or animal in nontraffic accident +C2893093|T037|AB|V40.3XXA|ICD10CM|Unsp car occupant injured in clsn w ped/anml nontraf, init|Unsp car occupant injured in clsn w ped/anml nontraf, init +C2893094|T037|AB|V40.3XXD|ICD10CM|Unsp car occupant injured in clsn w ped/anml nontraf, subs|Unsp car occupant injured in clsn w ped/anml nontraf, subs +C2893095|T037|AB|V40.3XXS|ICD10CM|Unsp car occ injured in clsn w ped/anml nontraf, sequela|Unsp car occ injured in clsn w ped/anml nontraf, sequela +C0496244|T037|PT|V40.4|ICD10|Car occupant injured in collision with pedestrian or animal, while boarding or alighting|Car occupant injured in collision with pedestrian or animal, while boarding or alighting +C2893096|T037|HT|V40.4|ICD10CM|Person boarding or alighting a car injured in collision with pedestrian or animal|Person boarding or alighting a car injured in collision with pedestrian or animal +C2893096|T037|AB|V40.4|ICD10CM|Prsn brd/alit a car injured in collision w ped/anml|Prsn brd/alit a car injured in collision w ped/anml +C2893097|T037|PT|V40.4XXA|ICD10CM|Person boarding or alighting a car injured in collision with pedestrian or animal, initial encounter|Person boarding or alighting a car injured in collision with pedestrian or animal, initial encounter +C2893097|T037|AB|V40.4XXA|ICD10CM|Prsn brd/alit a car injured in collision w ped/anml, init|Prsn brd/alit a car injured in collision w ped/anml, init +C2893098|T037|AB|V40.4XXD|ICD10CM|Prsn brd/alit a car injured in collision w ped/anml, subs|Prsn brd/alit a car injured in collision w ped/anml, subs +C2893099|T037|PT|V40.4XXS|ICD10CM|Person boarding or alighting a car injured in collision with pedestrian or animal, sequela|Person boarding or alighting a car injured in collision with pedestrian or animal, sequela +C2893099|T037|AB|V40.4XXS|ICD10CM|Prsn brd/alit a car injured in collision w ped/anml, sequela|Prsn brd/alit a car injured in collision w ped/anml, sequela +C2893100|T037|AB|V40.5|ICD10CM|Car driver injured in collision w ped/anml in traf|Car driver injured in collision w ped/anml in traf +C2893100|T037|HT|V40.5|ICD10CM|Car driver injured in collision with pedestrian or animal in traffic accident|Car driver injured in collision with pedestrian or animal in traffic accident +C0496247|T037|PT|V40.5|ICD10|Car occupant injured in collision with pedestrian or animal, driver, traffic accident|Car occupant injured in collision with pedestrian or animal, driver, traffic accident +C2893101|T037|AB|V40.5XXA|ICD10CM|Car driver injured in collision w ped/anml in traf, init|Car driver injured in collision w ped/anml in traf, init +C2893101|T037|PT|V40.5XXA|ICD10CM|Car driver injured in collision with pedestrian or animal in traffic accident, initial encounter|Car driver injured in collision with pedestrian or animal in traffic accident, initial encounter +C2893102|T037|AB|V40.5XXD|ICD10CM|Car driver injured in collision w ped/anml in traf, subs|Car driver injured in collision w ped/anml in traf, subs +C2893102|T037|PT|V40.5XXD|ICD10CM|Car driver injured in collision with pedestrian or animal in traffic accident, subsequent encounter|Car driver injured in collision with pedestrian or animal in traffic accident, subsequent encounter +C2893103|T037|AB|V40.5XXS|ICD10CM|Car driver injured in collision w ped/anml in traf, sequela|Car driver injured in collision w ped/anml in traf, sequela +C2893103|T037|PT|V40.5XXS|ICD10CM|Car driver injured in collision with pedestrian or animal in traffic accident, sequela|Car driver injured in collision with pedestrian or animal in traffic accident, sequela +C0496248|T037|PT|V40.6|ICD10|Car occupant injured in collision with pedestrian or animal, passenger, traffic accident|Car occupant injured in collision with pedestrian or animal, passenger, traffic accident +C2893104|T037|AB|V40.6|ICD10CM|Car passenger injured in collision w ped/anml in traf|Car passenger injured in collision w ped/anml in traf +C2893104|T037|HT|V40.6|ICD10CM|Car passenger injured in collision with pedestrian or animal in traffic accident|Car passenger injured in collision with pedestrian or animal in traffic accident +C2893105|T037|AB|V40.6XXA|ICD10CM|Car passenger injured in collision w ped/anml in traf, init|Car passenger injured in collision w ped/anml in traf, init +C2893105|T037|PT|V40.6XXA|ICD10CM|Car passenger injured in collision with pedestrian or animal in traffic accident, initial encounter|Car passenger injured in collision with pedestrian or animal in traffic accident, initial encounter +C2893106|T037|AB|V40.6XXD|ICD10CM|Car passenger injured in collision w ped/anml in traf, subs|Car passenger injured in collision w ped/anml in traf, subs +C2893107|T037|AB|V40.6XXS|ICD10CM|Car passenger injured in clsn w ped/anml in traf, sequela|Car passenger injured in clsn w ped/anml in traf, sequela +C2893107|T037|PT|V40.6XXS|ICD10CM|Car passenger injured in collision with pedestrian or animal in traffic accident, sequela|Car passenger injured in collision with pedestrian or animal in traffic accident, sequela +C2893108|T037|HT|V40.7|ICD10CM|Person on outside of car injured in collision with pedestrian or animal in traffic accident|Person on outside of car injured in collision with pedestrian or animal in traffic accident +C2893108|T037|AB|V40.7|ICD10CM|Person outside car injured in collision w ped/anml in traf|Person outside car injured in collision w ped/anml in traf +C2893109|T037|AB|V40.7XXA|ICD10CM|Person outside car injured in clsn w ped/anml in traf, init|Person outside car injured in clsn w ped/anml in traf, init +C2893110|T037|AB|V40.7XXD|ICD10CM|Person outside car injured in clsn w ped/anml in traf, subs|Person outside car injured in clsn w ped/anml in traf, subs +C2893111|T037|PT|V40.7XXS|ICD10CM|Person on outside of car injured in collision with pedestrian or animal in traffic accident, sequela|Person on outside of car injured in collision with pedestrian or animal in traffic accident, sequela +C2893111|T037|AB|V40.7XXS|ICD10CM|Person outside car inj in clsn w ped/anml in traf, sequela|Person outside car inj in clsn w ped/anml in traf, sequela +C2893112|T037|AB|V40.9|ICD10CM|Unsp car occupant injured in collision w ped/anml in traf|Unsp car occupant injured in collision w ped/anml in traf +C2893112|T037|HT|V40.9|ICD10CM|Unspecified car occupant injured in collision with pedestrian or animal in traffic accident|Unspecified car occupant injured in collision with pedestrian or animal in traffic accident +C2893113|T037|AB|V40.9XXA|ICD10CM|Unsp car occupant injured in clsn w ped/anml in traf, init|Unsp car occupant injured in clsn w ped/anml in traf, init +C2893114|T037|AB|V40.9XXD|ICD10CM|Unsp car occupant injured in clsn w ped/anml in traf, subs|Unsp car occupant injured in clsn w ped/anml in traf, subs +C2893115|T037|AB|V40.9XXS|ICD10CM|Unsp car occ injured in clsn w ped/anml in traf, sequela|Unsp car occ injured in clsn w ped/anml in traf, sequela +C2893115|T037|PT|V40.9XXS|ICD10CM|Unspecified car occupant injured in collision with pedestrian or animal in traffic accident, sequela|Unspecified car occupant injured in collision with pedestrian or animal in traffic accident, sequela +C0476963|T037|HT|V41|ICD10|Car occupant injured in collision with pedal cycle|Car occupant injured in collision with pedal cycle +C0476963|T037|HT|V41|ICD10CM|Car occupant injured in collision with pedal cycle|Car occupant injured in collision with pedal cycle +C0476963|T037|AB|V41|ICD10CM|Car occupant injured in collision with pedal cycle|Car occupant injured in collision with pedal cycle +C2893116|T037|AB|V41.0|ICD10CM|Car driver injured in collision w pedal cycle nontraf|Car driver injured in collision w pedal cycle nontraf +C2893116|T037|HT|V41.0|ICD10CM|Car driver injured in collision with pedal cycle in nontraffic accident|Car driver injured in collision with pedal cycle in nontraffic accident +C0496251|T037|PT|V41.0|ICD10|Car occupant injured in collision with pedal cycle, driver, nontraffic accident|Car occupant injured in collision with pedal cycle, driver, nontraffic accident +C2893117|T037|AB|V41.0XXA|ICD10CM|Car driver injured in collision w pedal cycle nontraf, init|Car driver injured in collision w pedal cycle nontraf, init +C2893117|T037|PT|V41.0XXA|ICD10CM|Car driver injured in collision with pedal cycle in nontraffic accident, initial encounter|Car driver injured in collision with pedal cycle in nontraffic accident, initial encounter +C2893118|T037|AB|V41.0XXD|ICD10CM|Car driver injured in collision w pedal cycle nontraf, subs|Car driver injured in collision w pedal cycle nontraf, subs +C2893118|T037|PT|V41.0XXD|ICD10CM|Car driver injured in collision with pedal cycle in nontraffic accident, subsequent encounter|Car driver injured in collision with pedal cycle in nontraffic accident, subsequent encounter +C2893119|T037|AB|V41.0XXS|ICD10CM|Car driver injured in collision w pedl cyc nontraf, sequela|Car driver injured in collision w pedl cyc nontraf, sequela +C2893119|T037|PT|V41.0XXS|ICD10CM|Car driver injured in collision with pedal cycle in nontraffic accident, sequela|Car driver injured in collision with pedal cycle in nontraffic accident, sequela +C0496252|T037|PT|V41.1|ICD10|Car occupant injured in collision with pedal cycle, passenger, nontraffic accident|Car occupant injured in collision with pedal cycle, passenger, nontraffic accident +C2893120|T037|AB|V41.1|ICD10CM|Car passenger injured in collision w pedal cycle nontraf|Car passenger injured in collision w pedal cycle nontraf +C2893120|T037|HT|V41.1|ICD10CM|Car passenger injured in collision with pedal cycle in nontraffic accident|Car passenger injured in collision with pedal cycle in nontraffic accident +C2893121|T037|AB|V41.1XXA|ICD10CM|Car passenger injured in collision w pedl cyc nontraf, init|Car passenger injured in collision w pedl cyc nontraf, init +C2893121|T037|PT|V41.1XXA|ICD10CM|Car passenger injured in collision with pedal cycle in nontraffic accident, initial encounter|Car passenger injured in collision with pedal cycle in nontraffic accident, initial encounter +C2893122|T037|AB|V41.1XXD|ICD10CM|Car passenger injured in collision w pedl cyc nontraf, subs|Car passenger injured in collision w pedl cyc nontraf, subs +C2893122|T037|PT|V41.1XXD|ICD10CM|Car passenger injured in collision with pedal cycle in nontraffic accident, subsequent encounter|Car passenger injured in collision with pedal cycle in nontraffic accident, subsequent encounter +C2893123|T037|AB|V41.1XXS|ICD10CM|Car passenger injured in clsn w pedl cyc nontraf, sequela|Car passenger injured in clsn w pedl cyc nontraf, sequela +C2893123|T037|PT|V41.1XXS|ICD10CM|Car passenger injured in collision with pedal cycle in nontraffic accident, sequela|Car passenger injured in collision with pedal cycle in nontraffic accident, sequela +C2893124|T037|HT|V41.2|ICD10CM|Person on outside of car injured in collision with pedal cycle in nontraffic accident|Person on outside of car injured in collision with pedal cycle in nontraffic accident +C2893124|T037|AB|V41.2|ICD10CM|Person outside car injured in collision w pedl cyc nontraf|Person outside car injured in collision w pedl cyc nontraf +C2893125|T037|AB|V41.2XXA|ICD10CM|Person outside car injured in clsn w pedl cyc nontraf, init|Person outside car injured in clsn w pedl cyc nontraf, init +C2893126|T037|AB|V41.2XXD|ICD10CM|Person outside car injured in clsn w pedl cyc nontraf, subs|Person outside car injured in clsn w pedl cyc nontraf, subs +C2893127|T037|PT|V41.2XXS|ICD10CM|Person on outside of car injured in collision with pedal cycle in nontraffic accident, sequela|Person on outside of car injured in collision with pedal cycle in nontraffic accident, sequela +C2893127|T037|AB|V41.2XXS|ICD10CM|Person outside car inj in clsn w pedl cyc nontraf, sequela|Person outside car inj in clsn w pedl cyc nontraf, sequela +C0496254|T037|PT|V41.3|ICD10|Car occupant injured in collision with pedal cycle, unspecified car occupant, nontraffic accident|Car occupant injured in collision with pedal cycle, unspecified car occupant, nontraffic accident +C2893128|T037|AB|V41.3|ICD10CM|Unsp car occupant injured in collision w pedal cycle nontraf|Unsp car occupant injured in collision w pedal cycle nontraf +C2893128|T037|HT|V41.3|ICD10CM|Unspecified car occupant injured in collision with pedal cycle in nontraffic accident|Unspecified car occupant injured in collision with pedal cycle in nontraffic accident +C2893129|T037|AB|V41.3XXA|ICD10CM|Unsp car occupant injured in clsn w pedl cyc nontraf, init|Unsp car occupant injured in clsn w pedl cyc nontraf, init +C2893130|T037|AB|V41.3XXD|ICD10CM|Unsp car occupant injured in clsn w pedl cyc nontraf, subs|Unsp car occupant injured in clsn w pedl cyc nontraf, subs +C2893131|T037|AB|V41.3XXS|ICD10CM|Unsp car occ injured in clsn w pedl cyc nontraf, sequela|Unsp car occ injured in clsn w pedl cyc nontraf, sequela +C2893131|T037|PT|V41.3XXS|ICD10CM|Unspecified car occupant injured in collision with pedal cycle in nontraffic accident, sequela|Unspecified car occupant injured in collision with pedal cycle in nontraffic accident, sequela +C0496255|T037|PT|V41.4|ICD10|Car occupant injured in collision with pedal cycle, while boarding or alighting|Car occupant injured in collision with pedal cycle, while boarding or alighting +C2893132|T037|HT|V41.4|ICD10CM|Person boarding or alighting a car injured in collision with pedal cycle|Person boarding or alighting a car injured in collision with pedal cycle +C2893132|T037|AB|V41.4|ICD10CM|Prsn brd/alit a car injured in collision w pedal cycle|Prsn brd/alit a car injured in collision w pedal cycle +C2893133|T037|PT|V41.4XXA|ICD10CM|Person boarding or alighting a car injured in collision with pedal cycle, initial encounter|Person boarding or alighting a car injured in collision with pedal cycle, initial encounter +C2893133|T037|AB|V41.4XXA|ICD10CM|Prsn brd/alit a car injured in collision w pedal cycle, init|Prsn brd/alit a car injured in collision w pedal cycle, init +C2893134|T037|PT|V41.4XXD|ICD10CM|Person boarding or alighting a car injured in collision with pedal cycle, subsequent encounter|Person boarding or alighting a car injured in collision with pedal cycle, subsequent encounter +C2893134|T037|AB|V41.4XXD|ICD10CM|Prsn brd/alit a car injured in collision w pedal cycle, subs|Prsn brd/alit a car injured in collision w pedal cycle, subs +C2893135|T037|PT|V41.4XXS|ICD10CM|Person boarding or alighting a car injured in collision with pedal cycle, sequela|Person boarding or alighting a car injured in collision with pedal cycle, sequela +C2893135|T037|AB|V41.4XXS|ICD10CM|Prsn brd/alit a car injured in collision w pedl cyc, sequela|Prsn brd/alit a car injured in collision w pedl cyc, sequela +C2893136|T037|AB|V41.5|ICD10CM|Car driver injured in collision w pedal cycle in traf|Car driver injured in collision w pedal cycle in traf +C2893136|T037|HT|V41.5|ICD10CM|Car driver injured in collision with pedal cycle in traffic accident|Car driver injured in collision with pedal cycle in traffic accident +C0496256|T037|PT|V41.5|ICD10|Car occupant injured in collision with pedal cycle, driver, traffic accident|Car occupant injured in collision with pedal cycle, driver, traffic accident +C2893137|T037|AB|V41.5XXA|ICD10CM|Car driver injured in collision w pedal cycle in traf, init|Car driver injured in collision w pedal cycle in traf, init +C2893137|T037|PT|V41.5XXA|ICD10CM|Car driver injured in collision with pedal cycle in traffic accident, initial encounter|Car driver injured in collision with pedal cycle in traffic accident, initial encounter +C2893138|T037|AB|V41.5XXD|ICD10CM|Car driver injured in collision w pedal cycle in traf, subs|Car driver injured in collision w pedal cycle in traf, subs +C2893138|T037|PT|V41.5XXD|ICD10CM|Car driver injured in collision with pedal cycle in traffic accident, subsequent encounter|Car driver injured in collision with pedal cycle in traffic accident, subsequent encounter +C2893139|T037|AB|V41.5XXS|ICD10CM|Car driver injured in collision w pedl cyc in traf, sequela|Car driver injured in collision w pedl cyc in traf, sequela +C2893139|T037|PT|V41.5XXS|ICD10CM|Car driver injured in collision with pedal cycle in traffic accident, sequela|Car driver injured in collision with pedal cycle in traffic accident, sequela +C0496257|T037|PT|V41.6|ICD10|Car occupant injured in collision with pedal cycle, passenger, traffic accident|Car occupant injured in collision with pedal cycle, passenger, traffic accident +C2893140|T037|AB|V41.6|ICD10CM|Car passenger injured in collision w pedal cycle in traf|Car passenger injured in collision w pedal cycle in traf +C2893140|T037|HT|V41.6|ICD10CM|Car passenger injured in collision with pedal cycle in traffic accident|Car passenger injured in collision with pedal cycle in traffic accident +C2893141|T037|AB|V41.6XXA|ICD10CM|Car passenger injured in collision w pedl cyc in traf, init|Car passenger injured in collision w pedl cyc in traf, init +C2893141|T037|PT|V41.6XXA|ICD10CM|Car passenger injured in collision with pedal cycle in traffic accident, initial encounter|Car passenger injured in collision with pedal cycle in traffic accident, initial encounter +C2893142|T037|AB|V41.6XXD|ICD10CM|Car passenger injured in collision w pedl cyc in traf, subs|Car passenger injured in collision w pedl cyc in traf, subs +C2893142|T037|PT|V41.6XXD|ICD10CM|Car passenger injured in collision with pedal cycle in traffic accident, subsequent encounter|Car passenger injured in collision with pedal cycle in traffic accident, subsequent encounter +C2893143|T037|AB|V41.6XXS|ICD10CM|Car passenger injured in clsn w pedl cyc in traf, sequela|Car passenger injured in clsn w pedl cyc in traf, sequela +C2893143|T037|PT|V41.6XXS|ICD10CM|Car passenger injured in collision with pedal cycle in traffic accident, sequela|Car passenger injured in collision with pedal cycle in traffic accident, sequela +C0496258|T037|PT|V41.7|ICD10|Car occupant injured in collision with pedal cycle, person on outside of vehicle, traffic accident|Car occupant injured in collision with pedal cycle, person on outside of vehicle, traffic accident +C2893144|T037|HT|V41.7|ICD10CM|Person on outside of car injured in collision with pedal cycle in traffic accident|Person on outside of car injured in collision with pedal cycle in traffic accident +C2893144|T037|AB|V41.7|ICD10CM|Person outside car injured in collision w pedl cyc in traf|Person outside car injured in collision w pedl cyc in traf +C2893145|T037|AB|V41.7XXA|ICD10CM|Person outside car injured in clsn w pedl cyc in traf, init|Person outside car injured in clsn w pedl cyc in traf, init +C2893146|T037|AB|V41.7XXD|ICD10CM|Person outside car injured in clsn w pedl cyc in traf, subs|Person outside car injured in clsn w pedl cyc in traf, subs +C2893147|T037|PT|V41.7XXS|ICD10CM|Person on outside of car injured in collision with pedal cycle in traffic accident, sequela|Person on outside of car injured in collision with pedal cycle in traffic accident, sequela +C2893147|T037|AB|V41.7XXS|ICD10CM|Person outside car inj in clsn w pedl cyc in traf, sequela|Person outside car inj in clsn w pedl cyc in traf, sequela +C0496259|T037|PT|V41.9|ICD10|Car occupant injured in collision with pedal cycle, unspecified car occupant, traffic accident|Car occupant injured in collision with pedal cycle, unspecified car occupant, traffic accident +C2893148|T037|AB|V41.9|ICD10CM|Unsp car occupant injured in collision w pedal cycle in traf|Unsp car occupant injured in collision w pedal cycle in traf +C2893148|T037|HT|V41.9|ICD10CM|Unspecified car occupant injured in collision with pedal cycle in traffic accident|Unspecified car occupant injured in collision with pedal cycle in traffic accident +C2893149|T037|AB|V41.9XXA|ICD10CM|Unsp car occupant injured in clsn w pedl cyc in traf, init|Unsp car occupant injured in clsn w pedl cyc in traf, init +C2893150|T037|AB|V41.9XXD|ICD10CM|Unsp car occupant injured in clsn w pedl cyc in traf, subs|Unsp car occupant injured in clsn w pedl cyc in traf, subs +C2893151|T037|AB|V41.9XXS|ICD10CM|Unsp car occ injured in clsn w pedl cyc in traf, sequela|Unsp car occ injured in clsn w pedl cyc in traf, sequela +C2893151|T037|PT|V41.9XXS|ICD10CM|Unspecified car occupant injured in collision with pedal cycle in traffic accident, sequela|Unspecified car occupant injured in collision with pedal cycle in traffic accident, sequela +C0476964|T037|AB|V42|ICD10CM|Car occupant injured in collision w 2/3-whl mv|Car occupant injured in collision w 2/3-whl mv +C0476964|T037|HT|V42|ICD10CM|Car occupant injured in collision with two- or three-wheeled motor vehicle|Car occupant injured in collision with two- or three-wheeled motor vehicle +C0476964|T037|HT|V42|ICD10|Car occupant injured in collision with two- or three-wheeled motor vehicle|Car occupant injured in collision with two- or three-wheeled motor vehicle +C2893152|T037|AB|V42.0|ICD10CM|Car driver injured in collision w 2/3-whl mv nontraf|Car driver injured in collision w 2/3-whl mv nontraf +C2893152|T037|HT|V42.0|ICD10CM|Car driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident|Car driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident +C2893153|T037|AB|V42.0XXA|ICD10CM|Car driver injured in collision w 2/3-whl mv nontraf, init|Car driver injured in collision w 2/3-whl mv nontraf, init +C2893154|T037|AB|V42.0XXD|ICD10CM|Car driver injured in collision w 2/3-whl mv nontraf, subs|Car driver injured in collision w 2/3-whl mv nontraf, subs +C2893155|T037|AB|V42.0XXS|ICD10CM|Car driver injured in clsn w 2/3-whl mv nontraf, sequela|Car driver injured in clsn w 2/3-whl mv nontraf, sequela +C2893156|T037|AB|V42.1|ICD10CM|Car passenger injured in collision w 2/3-whl mv nontraf|Car passenger injured in collision w 2/3-whl mv nontraf +C2893156|T037|HT|V42.1|ICD10CM|Car passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident|Car passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident +C2893157|T037|AB|V42.1XXA|ICD10CM|Car passenger injured in clsn w 2/3-whl mv nontraf, init|Car passenger injured in clsn w 2/3-whl mv nontraf, init +C2893158|T037|AB|V42.1XXD|ICD10CM|Car passenger injured in clsn w 2/3-whl mv nontraf, subs|Car passenger injured in clsn w 2/3-whl mv nontraf, subs +C2893159|T037|AB|V42.1XXS|ICD10CM|Car passenger injured in clsn w 2/3-whl mv nontraf, sequela|Car passenger injured in clsn w 2/3-whl mv nontraf, sequela +C2893160|T037|AB|V42.2|ICD10CM|Person outside car injured in collision w 2/3-whl mv nontraf|Person outside car injured in collision w 2/3-whl mv nontraf +C2893161|T037|AB|V42.2XXA|ICD10CM|Person outside car inj in clsn w 2/3-whl mv nontraf, init|Person outside car inj in clsn w 2/3-whl mv nontraf, init +C2893162|T037|AB|V42.2XXD|ICD10CM|Person outside car inj in clsn w 2/3-whl mv nontraf, subs|Person outside car inj in clsn w 2/3-whl mv nontraf, subs +C2893163|T037|AB|V42.2XXS|ICD10CM|Person outside car inj in clsn w 2/3-whl mv nontraf, sequela|Person outside car inj in clsn w 2/3-whl mv nontraf, sequela +C2893164|T037|AB|V42.3|ICD10CM|Unsp car occupant injured in collision w 2/3-whl mv nontraf|Unsp car occupant injured in collision w 2/3-whl mv nontraf +C2893165|T037|AB|V42.3XXA|ICD10CM|Unsp car occupant injured in clsn w 2/3-whl mv nontraf, init|Unsp car occupant injured in clsn w 2/3-whl mv nontraf, init +C2893166|T037|AB|V42.3XXD|ICD10CM|Unsp car occupant injured in clsn w 2/3-whl mv nontraf, subs|Unsp car occupant injured in clsn w 2/3-whl mv nontraf, subs +C2893167|T037|AB|V42.3XXS|ICD10CM|Unsp car occ injured in clsn w 2/3-whl mv nontraf, sequela|Unsp car occ injured in clsn w 2/3-whl mv nontraf, sequela +C2893168|T037|HT|V42.4|ICD10CM|Person boarding or alighting a car injured in collision with two- or three-wheeled motor vehicle|Person boarding or alighting a car injured in collision with two- or three-wheeled motor vehicle +C2893168|T037|AB|V42.4|ICD10CM|Prsn brd/alit a car injured in collision w 2/3-whl mv|Prsn brd/alit a car injured in collision w 2/3-whl mv +C2893169|T037|AB|V42.4XXA|ICD10CM|Prsn brd/alit a car injured in collision w 2/3-whl mv, init|Prsn brd/alit a car injured in collision w 2/3-whl mv, init +C2893170|T037|AB|V42.4XXD|ICD10CM|Prsn brd/alit a car injured in collision w 2/3-whl mv, subs|Prsn brd/alit a car injured in collision w 2/3-whl mv, subs +C2893171|T037|AB|V42.4XXS|ICD10CM|Prsn brd/alit a car injured in clsn w 2/3-whl mv, sequela|Prsn brd/alit a car injured in clsn w 2/3-whl mv, sequela +C2893172|T037|AB|V42.5|ICD10CM|Car driver injured in collision w 2/3-whl mv in traf|Car driver injured in collision w 2/3-whl mv in traf +C2893172|T037|HT|V42.5|ICD10CM|Car driver injured in collision with two- or three-wheeled motor vehicle in traffic accident|Car driver injured in collision with two- or three-wheeled motor vehicle in traffic accident +C0496265|T037|PT|V42.5|ICD10|Car occupant injured in collision with two- or three-wheeled motor vehicle, driver, traffic accident|Car occupant injured in collision with two- or three-wheeled motor vehicle, driver, traffic accident +C2893173|T037|AB|V42.5XXA|ICD10CM|Car driver injured in collision w 2/3-whl mv in traf, init|Car driver injured in collision w 2/3-whl mv in traf, init +C2893174|T037|AB|V42.5XXD|ICD10CM|Car driver injured in collision w 2/3-whl mv in traf, subs|Car driver injured in collision w 2/3-whl mv in traf, subs +C2893175|T037|AB|V42.5XXS|ICD10CM|Car driver injured in clsn w 2/3-whl mv in traf, sequela|Car driver injured in clsn w 2/3-whl mv in traf, sequela +C2893176|T037|AB|V42.6|ICD10CM|Car passenger injured in collision w 2/3-whl mv in traf|Car passenger injured in collision w 2/3-whl mv in traf +C2893176|T037|HT|V42.6|ICD10CM|Car passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident|Car passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident +C2893177|T037|AB|V42.6XXA|ICD10CM|Car passenger injured in clsn w 2/3-whl mv in traf, init|Car passenger injured in clsn w 2/3-whl mv in traf, init +C2893178|T037|AB|V42.6XXD|ICD10CM|Car passenger injured in clsn w 2/3-whl mv in traf, subs|Car passenger injured in clsn w 2/3-whl mv in traf, subs +C2893179|T037|AB|V42.6XXS|ICD10CM|Car passenger injured in clsn w 2/3-whl mv in traf, sequela|Car passenger injured in clsn w 2/3-whl mv in traf, sequela +C2893180|T037|AB|V42.7|ICD10CM|Person outside car injured in collision w 2/3-whl mv in traf|Person outside car injured in collision w 2/3-whl mv in traf +C2893181|T037|AB|V42.7XXA|ICD10CM|Person outside car inj in clsn w 2/3-whl mv in traf, init|Person outside car inj in clsn w 2/3-whl mv in traf, init +C2893182|T037|AB|V42.7XXD|ICD10CM|Person outside car inj in clsn w 2/3-whl mv in traf, subs|Person outside car inj in clsn w 2/3-whl mv in traf, subs +C2893183|T037|AB|V42.7XXS|ICD10CM|Person outside car inj in clsn w 2/3-whl mv in traf, sequela|Person outside car inj in clsn w 2/3-whl mv in traf, sequela +C2893184|T037|AB|V42.9|ICD10CM|Unsp car occupant injured in collision w 2/3-whl mv in traf|Unsp car occupant injured in collision w 2/3-whl mv in traf +C2893185|T037|AB|V42.9XXA|ICD10CM|Unsp car occupant injured in clsn w 2/3-whl mv in traf, init|Unsp car occupant injured in clsn w 2/3-whl mv in traf, init +C2893186|T037|AB|V42.9XXD|ICD10CM|Unsp car occupant injured in clsn w 2/3-whl mv in traf, subs|Unsp car occupant injured in clsn w 2/3-whl mv in traf, subs +C2893187|T037|AB|V42.9XXS|ICD10CM|Unsp car occ injured in clsn w 2/3-whl mv in traf, sequela|Unsp car occ injured in clsn w 2/3-whl mv in traf, sequela +C0476965|T037|HT|V43|ICD10|Car occupant injured in collision with car, pick-up truck or van|Car occupant injured in collision with car, pick-up truck or van +C0476965|T037|HT|V43|ICD10CM|Car occupant injured in collision with car, pick-up truck or van|Car occupant injured in collision with car, pick-up truck or van +C0476965|T037|AB|V43|ICD10CM|Car occupant injured pick-up truck, pick-up truck or van|Car occupant injured pick-up truck, pick-up truck or van +C2893188|T037|HT|V43.0|ICD10CM|Car driver injured in collision with car, pick-up truck or van in nontraffic accident|Car driver injured in collision with car, pick-up truck or van in nontraffic accident +C2893188|T037|AB|V43.0|ICD10CM|Car driver injured pick-up truck, pk-up/van nontraf|Car driver injured pick-up truck, pk-up/van nontraf +C0496269|T037|PT|V43.0|ICD10|Car occupant injured in collision with car, pick-up truck or van, driver, nontraffic accident|Car occupant injured in collision with car, pick-up truck or van, driver, nontraffic accident +C2893189|T037|AB|V43.01|ICD10CM|Car driver injured in collision w SUV nontraf|Car driver injured in collision w SUV nontraf +C2893189|T037|HT|V43.01|ICD10CM|Car driver injured in collision with sport utility vehicle in nontraffic accident|Car driver injured in collision with sport utility vehicle in nontraffic accident +C2893190|T037|AB|V43.01XA|ICD10CM|Car driver injured in collision w SUV nontraf, init|Car driver injured in collision w SUV nontraf, init +C2893190|T037|PT|V43.01XA|ICD10CM|Car driver injured in collision with sport utility vehicle in nontraffic accident, initial encounter|Car driver injured in collision with sport utility vehicle in nontraffic accident, initial encounter +C2893191|T037|AB|V43.01XD|ICD10CM|Car driver injured in collision w SUV nontraf, subs|Car driver injured in collision w SUV nontraf, subs +C2893192|T037|AB|V43.01XS|ICD10CM|Car driver injured in collision w SUV nontraf, sequela|Car driver injured in collision w SUV nontraf, sequela +C2893192|T037|PT|V43.01XS|ICD10CM|Car driver injured in collision with sport utility vehicle in nontraffic accident, sequela|Car driver injured in collision with sport utility vehicle in nontraffic accident, sequela +C2893193|T037|AB|V43.02|ICD10CM|Car driver injured in collision w car in nontraffic accident|Car driver injured in collision w car in nontraffic accident +C2893193|T037|HT|V43.02|ICD10CM|Car driver injured in collision with other type car in nontraffic accident|Car driver injured in collision with other type car in nontraffic accident +C2893194|T037|AB|V43.02XA|ICD10CM|Car driver injured in collision w car nontraf, init|Car driver injured in collision w car nontraf, init +C2893194|T037|PT|V43.02XA|ICD10CM|Car driver injured in collision with other type car in nontraffic accident, initial encounter|Car driver injured in collision with other type car in nontraffic accident, initial encounter +C2893195|T037|AB|V43.02XD|ICD10CM|Car driver injured in collision w car nontraf, subs|Car driver injured in collision w car nontraf, subs +C2893195|T037|PT|V43.02XD|ICD10CM|Car driver injured in collision with other type car in nontraffic accident, subsequent encounter|Car driver injured in collision with other type car in nontraffic accident, subsequent encounter +C2893196|T037|AB|V43.02XS|ICD10CM|Car driver injured in collision w car nontraf, sequela|Car driver injured in collision w car nontraf, sequela +C2893196|T037|PT|V43.02XS|ICD10CM|Car driver injured in collision with other type car in nontraffic accident, sequela|Car driver injured in collision with other type car in nontraffic accident, sequela +C2893197|T037|AB|V43.03|ICD10CM|Car driver injured in collision w pick-up truck nontraf|Car driver injured in collision w pick-up truck nontraf +C2893197|T037|HT|V43.03|ICD10CM|Car driver injured in collision with pick-up truck in nontraffic accident|Car driver injured in collision with pick-up truck in nontraffic accident +C2893198|T037|AB|V43.03XA|ICD10CM|Car driver injured in clsn w pick-up truck nontraf, init|Car driver injured in clsn w pick-up truck nontraf, init +C2893198|T037|PT|V43.03XA|ICD10CM|Car driver injured in collision with pick-up truck in nontraffic accident, initial encounter|Car driver injured in collision with pick-up truck in nontraffic accident, initial encounter +C2893199|T037|AB|V43.03XD|ICD10CM|Car driver injured in clsn w pick-up truck nontraf, subs|Car driver injured in clsn w pick-up truck nontraf, subs +C2893199|T037|PT|V43.03XD|ICD10CM|Car driver injured in collision with pick-up truck in nontraffic accident, subsequent encounter|Car driver injured in collision with pick-up truck in nontraffic accident, subsequent encounter +C2893200|T037|AB|V43.03XS|ICD10CM|Car driver injured in clsn w pick-up truck nontraf, sequela|Car driver injured in clsn w pick-up truck nontraf, sequela +C2893200|T037|PT|V43.03XS|ICD10CM|Car driver injured in collision with pick-up truck in nontraffic accident, sequela|Car driver injured in collision with pick-up truck in nontraffic accident, sequela +C2893201|T037|AB|V43.04|ICD10CM|Car driver injured in collision w van in nontraffic accident|Car driver injured in collision w van in nontraffic accident +C2893201|T037|HT|V43.04|ICD10CM|Car driver injured in collision with van in nontraffic accident|Car driver injured in collision with van in nontraffic accident +C2893202|T037|AB|V43.04XA|ICD10CM|Car driver injured in collision w van nontraf, init|Car driver injured in collision w van nontraf, init +C2893202|T037|PT|V43.04XA|ICD10CM|Car driver injured in collision with van in nontraffic accident, initial encounter|Car driver injured in collision with van in nontraffic accident, initial encounter +C2893203|T037|AB|V43.04XD|ICD10CM|Car driver injured in collision w van nontraf, subs|Car driver injured in collision w van nontraf, subs +C2893203|T037|PT|V43.04XD|ICD10CM|Car driver injured in collision with van in nontraffic accident, subsequent encounter|Car driver injured in collision with van in nontraffic accident, subsequent encounter +C2893204|T037|AB|V43.04XS|ICD10CM|Car driver injured in collision w van nontraf, sequela|Car driver injured in collision w van nontraf, sequela +C2893204|T037|PT|V43.04XS|ICD10CM|Car driver injured in collision with van in nontraffic accident, sequela|Car driver injured in collision with van in nontraffic accident, sequela +C0496270|T037|PT|V43.1|ICD10|Car occupant injured in collision with car, pick-up truck or van, passenger, nontraffic accident|Car occupant injured in collision with car, pick-up truck or van, passenger, nontraffic accident +C2893205|T037|HT|V43.1|ICD10CM|Car passenger injured in collision with car, pick-up truck or van in nontraffic accident|Car passenger injured in collision with car, pick-up truck or van in nontraffic accident +C2893205|T037|AB|V43.1|ICD10CM|Car passenger injured pick-up truck, pk-up/van nontraf|Car passenger injured pick-up truck, pk-up/van nontraf +C2893206|T037|AB|V43.11|ICD10CM|Car passenger injured in collision w SUV nontraf|Car passenger injured in collision w SUV nontraf +C2893206|T037|HT|V43.11|ICD10CM|Car passenger injured in collision with sport utility vehicle in nontraffic accident|Car passenger injured in collision with sport utility vehicle in nontraffic accident +C2893207|T037|AB|V43.11XA|ICD10CM|Car passenger injured in collision w SUV nontraf, init|Car passenger injured in collision w SUV nontraf, init +C2893208|T037|AB|V43.11XD|ICD10CM|Car passenger injured in collision w SUV nontraf, subs|Car passenger injured in collision w SUV nontraf, subs +C2893209|T037|AB|V43.11XS|ICD10CM|Car passenger injured in collision w SUV nontraf, sequela|Car passenger injured in collision w SUV nontraf, sequela +C2893209|T037|PT|V43.11XS|ICD10CM|Car passenger injured in collision with sport utility vehicle in nontraffic accident, sequela|Car passenger injured in collision with sport utility vehicle in nontraffic accident, sequela +C2893210|T037|AB|V43.12|ICD10CM|Car passenger injured in collision w car nontraf|Car passenger injured in collision w car nontraf +C2893210|T037|HT|V43.12|ICD10CM|Car passenger injured in collision with other type car in nontraffic accident|Car passenger injured in collision with other type car in nontraffic accident +C2893211|T037|AB|V43.12XA|ICD10CM|Car passenger injured in collision w car nontraf, init|Car passenger injured in collision w car nontraf, init +C2893211|T037|PT|V43.12XA|ICD10CM|Car passenger injured in collision with other type car in nontraffic accident, initial encounter|Car passenger injured in collision with other type car in nontraffic accident, initial encounter +C2893212|T037|AB|V43.12XD|ICD10CM|Car passenger injured in collision w car nontraf, subs|Car passenger injured in collision w car nontraf, subs +C2893212|T037|PT|V43.12XD|ICD10CM|Car passenger injured in collision with other type car in nontraffic accident, subsequent encounter|Car passenger injured in collision with other type car in nontraffic accident, subsequent encounter +C2893213|T037|AB|V43.12XS|ICD10CM|Car passenger injured in collision w car nontraf, sequela|Car passenger injured in collision w car nontraf, sequela +C2893213|T037|PT|V43.12XS|ICD10CM|Car passenger injured in collision with other type car in nontraffic accident, sequela|Car passenger injured in collision with other type car in nontraffic accident, sequela +C5141002|T037|AB|V43.13|ICD10CM|Car passenger injured in clsn with pick-up truck nontraf|Car passenger injured in clsn with pick-up truck nontraf +C5141002|T037|HT|V43.13|ICD10CM|Car passenger injured in collision with pick-up truck in nontraffic accident|Car passenger injured in collision with pick-up truck in nontraffic accident +C5141003|T037|AB|V43.13XA|ICD10CM|Car pasngr injured in clsn with pick-up truck nontraf, init|Car pasngr injured in clsn with pick-up truck nontraf, init +C5141003|T037|PT|V43.13XA|ICD10CM|Car passenger injured in collision with pick-up truck in nontraffic accident, initial encounter|Car passenger injured in collision with pick-up truck in nontraffic accident, initial encounter +C5141004|T037|AB|V43.13XD|ICD10CM|Car pasngr injured in clsn with pick-up truck nontraf, subs|Car pasngr injured in clsn with pick-up truck nontraf, subs +C5141004|T037|PT|V43.13XD|ICD10CM|Car passenger injured in collision with pick-up truck in nontraffic accident, subsequent encounter|Car passenger injured in collision with pick-up truck in nontraffic accident, subsequent encounter +C5141005|T037|AB|V43.13XS|ICD10CM|Car pasngr inj in clsn with pick-up truck nontraf, sequela|Car pasngr inj in clsn with pick-up truck nontraf, sequela +C5141005|T037|PT|V43.13XS|ICD10CM|Car passenger injured in collision with pick-up truck in nontraffic accident, sequela|Car passenger injured in collision with pick-up truck in nontraffic accident, sequela +C2893218|T037|AB|V43.14|ICD10CM|Car passenger injured in collision w van nontraf|Car passenger injured in collision w van nontraf +C2893218|T037|HT|V43.14|ICD10CM|Car passenger injured in collision with van in nontraffic accident|Car passenger injured in collision with van in nontraffic accident +C2893219|T037|AB|V43.14XA|ICD10CM|Car passenger injured in collision w van nontraf, init|Car passenger injured in collision w van nontraf, init +C2893219|T037|PT|V43.14XA|ICD10CM|Car passenger injured in collision with van in nontraffic accident, initial encounter|Car passenger injured in collision with van in nontraffic accident, initial encounter +C2893220|T037|AB|V43.14XD|ICD10CM|Car passenger injured in collision w van nontraf, subs|Car passenger injured in collision w van nontraf, subs +C2893220|T037|PT|V43.14XD|ICD10CM|Car passenger injured in collision with van in nontraffic accident, subsequent encounter|Car passenger injured in collision with van in nontraffic accident, subsequent encounter +C2893221|T037|AB|V43.14XS|ICD10CM|Car passenger injured in collision w van nontraf, sequela|Car passenger injured in collision w van nontraf, sequela +C2893221|T037|PT|V43.14XS|ICD10CM|Car passenger injured in collision with van in nontraffic accident, sequela|Car passenger injured in collision with van in nontraffic accident, sequela +C2893222|T037|HT|V43.2|ICD10CM|Person on outside of car injured in collision with car, pick-up truck or van in nontraffic accident|Person on outside of car injured in collision with car, pick-up truck or van in nontraffic accident +C2893222|T037|AB|V43.2|ICD10CM|Person outside car injured pick-up truck, pk-up/van nontraf|Person outside car injured pick-up truck, pk-up/van nontraf +C2893223|T037|AB|V43.21|ICD10CM|Person on outside of car injured in collision w SUV nontraf|Person on outside of car injured in collision w SUV nontraf +C2893223|T037|HT|V43.21|ICD10CM|Person on outside of car injured in collision with sport utility vehicle in nontraffic accident|Person on outside of car injured in collision with sport utility vehicle in nontraffic accident +C2893224|T037|AB|V43.21XA|ICD10CM|Person outside car injured in collision w SUV nontraf, init|Person outside car injured in collision w SUV nontraf, init +C2893225|T037|AB|V43.21XD|ICD10CM|Person outside car injured in collision w SUV nontraf, subs|Person outside car injured in collision w SUV nontraf, subs +C2893226|T037|AB|V43.21XS|ICD10CM|Person outside car injured in clsn w SUV nontraf, sequela|Person outside car injured in clsn w SUV nontraf, sequela +C2893227|T037|AB|V43.22|ICD10CM|Person on outside of car injured in collision w car nontraf|Person on outside of car injured in collision w car nontraf +C2893227|T037|HT|V43.22|ICD10CM|Person on outside of car injured in collision with other type car in nontraffic accident|Person on outside of car injured in collision with other type car in nontraffic accident +C2893228|T037|AB|V43.22XA|ICD10CM|Person outside car injured in collision w car nontraf, init|Person outside car injured in collision w car nontraf, init +C2893229|T037|AB|V43.22XD|ICD10CM|Person outside car injured in collision w car nontraf, subs|Person outside car injured in collision w car nontraf, subs +C2893230|T037|PT|V43.22XS|ICD10CM|Person on outside of car injured in collision with other type car in nontraffic accident, sequela|Person on outside of car injured in collision with other type car in nontraffic accident, sequela +C2893230|T037|AB|V43.22XS|ICD10CM|Person outside car injured in clsn w car nontraf, sequela|Person outside car injured in clsn w car nontraf, sequela +C2893231|T037|HT|V43.23|ICD10CM|Person on outside of car injured in collision with pick-up truck in nontraffic accident|Person on outside of car injured in collision with pick-up truck in nontraffic accident +C2893231|T037|AB|V43.23|ICD10CM|Person outside car injured in clsn w pick-up truck nontraf|Person outside car injured in clsn w pick-up truck nontraf +C2893232|T037|AB|V43.23XA|ICD10CM|Person outside car inj in clsn w pick-up truck nontraf, init|Person outside car inj in clsn w pick-up truck nontraf, init +C2893233|T037|AB|V43.23XD|ICD10CM|Person outside car inj in clsn w pick-up truck nontraf, subs|Person outside car inj in clsn w pick-up truck nontraf, subs +C2893234|T037|PT|V43.23XS|ICD10CM|Person on outside of car injured in collision with pick-up truck in nontraffic accident, sequela|Person on outside of car injured in collision with pick-up truck in nontraffic accident, sequela +C2893234|T037|AB|V43.23XS|ICD10CM|Person outsd car inj in clsn w pk-up truck nontraf, sequela|Person outsd car inj in clsn w pk-up truck nontraf, sequela +C2893235|T037|AB|V43.24|ICD10CM|Person on outside of car injured in collision w van nontraf|Person on outside of car injured in collision w van nontraf +C2893235|T037|HT|V43.24|ICD10CM|Person on outside of car injured in collision with van in nontraffic accident|Person on outside of car injured in collision with van in nontraffic accident +C2893236|T037|PT|V43.24XA|ICD10CM|Person on outside of car injured in collision with van in nontraffic accident, initial encounter|Person on outside of car injured in collision with van in nontraffic accident, initial encounter +C2893236|T037|AB|V43.24XA|ICD10CM|Person outside car injured in collision w van nontraf, init|Person outside car injured in collision w van nontraf, init +C2893237|T037|PT|V43.24XD|ICD10CM|Person on outside of car injured in collision with van in nontraffic accident, subsequent encounter|Person on outside of car injured in collision with van in nontraffic accident, subsequent encounter +C2893237|T037|AB|V43.24XD|ICD10CM|Person outside car injured in collision w van nontraf, subs|Person outside car injured in collision w van nontraf, subs +C2893238|T037|PT|V43.24XS|ICD10CM|Person on outside of car injured in collision with van in nontraffic accident, sequela|Person on outside of car injured in collision with van in nontraffic accident, sequela +C2893238|T037|AB|V43.24XS|ICD10CM|Person outside car injured in clsn w van nontraf, sequela|Person outside car injured in clsn w van nontraf, sequela +C2893239|T037|AB|V43.3|ICD10CM|Unsp car occupant injured pick-up truck, pk-up/van nontraf|Unsp car occupant injured pick-up truck, pk-up/van nontraf +C2893239|T037|HT|V43.3|ICD10CM|Unspecified car occupant injured in collision with car, pick-up truck or van in nontraffic accident|Unspecified car occupant injured in collision with car, pick-up truck or van in nontraffic accident +C2893240|T037|AB|V43.31|ICD10CM|Unsp car occupant injured in collision w SUV nontraf|Unsp car occupant injured in collision w SUV nontraf +C2893240|T037|HT|V43.31|ICD10CM|Unspecified car occupant injured in collision with sport utility vehicle in nontraffic accident|Unspecified car occupant injured in collision with sport utility vehicle in nontraffic accident +C2893241|T037|AB|V43.31XA|ICD10CM|Unsp car occupant injured in collision w SUV nontraf, init|Unsp car occupant injured in collision w SUV nontraf, init +C2893242|T037|AB|V43.31XD|ICD10CM|Unsp car occupant injured in collision w SUV nontraf, subs|Unsp car occupant injured in collision w SUV nontraf, subs +C2893243|T037|AB|V43.31XS|ICD10CM|Unsp car occupant injured in clsn w SUV nontraf, sequela|Unsp car occupant injured in clsn w SUV nontraf, sequela +C2893244|T037|AB|V43.32|ICD10CM|Unsp car occupant injured in collision w car nontraf|Unsp car occupant injured in collision w car nontraf +C2893244|T037|HT|V43.32|ICD10CM|Unspecified car occupant injured in collision with other type car in nontraffic accident|Unspecified car occupant injured in collision with other type car in nontraffic accident +C2893245|T037|AB|V43.32XA|ICD10CM|Unsp car occupant injured in collision w car nontraf, init|Unsp car occupant injured in collision w car nontraf, init +C2893246|T037|AB|V43.32XD|ICD10CM|Unsp car occupant injured in collision w car nontraf, subs|Unsp car occupant injured in collision w car nontraf, subs +C2893247|T037|AB|V43.32XS|ICD10CM|Unsp car occupant injured in clsn w car nontraf, sequela|Unsp car occupant injured in clsn w car nontraf, sequela +C2893247|T037|PT|V43.32XS|ICD10CM|Unspecified car occupant injured in collision with other type car in nontraffic accident, sequela|Unspecified car occupant injured in collision with other type car in nontraffic accident, sequela +C2893248|T037|AB|V43.33|ICD10CM|Unsp car occupant injured in clsn w pick-up truck nontraf|Unsp car occupant injured in clsn w pick-up truck nontraf +C2893248|T037|HT|V43.33|ICD10CM|Unspecified car occupant injured in collision with pick-up truck in nontraffic accident|Unspecified car occupant injured in collision with pick-up truck in nontraffic accident +C2893249|T037|AB|V43.33XA|ICD10CM|Unsp car occ injured in clsn w pick-up truck nontraf, init|Unsp car occ injured in clsn w pick-up truck nontraf, init +C2893250|T037|AB|V43.33XD|ICD10CM|Unsp car occ injured in clsn w pick-up truck nontraf, subs|Unsp car occ injured in clsn w pick-up truck nontraf, subs +C2893251|T037|AB|V43.33XS|ICD10CM|Unsp car occ inj in clsn w pick-up truck nontraf, sequela|Unsp car occ inj in clsn w pick-up truck nontraf, sequela +C2893251|T037|PT|V43.33XS|ICD10CM|Unspecified car occupant injured in collision with pick-up truck in nontraffic accident, sequela|Unspecified car occupant injured in collision with pick-up truck in nontraffic accident, sequela +C2893252|T037|AB|V43.34|ICD10CM|Unsp car occupant injured in collision w van nontraf|Unsp car occupant injured in collision w van nontraf +C2893252|T037|HT|V43.34|ICD10CM|Unspecified car occupant injured in collision with van in nontraffic accident|Unspecified car occupant injured in collision with van in nontraffic accident +C2893253|T037|AB|V43.34XA|ICD10CM|Unsp car occupant injured in collision w van nontraf, init|Unsp car occupant injured in collision w van nontraf, init +C2893253|T037|PT|V43.34XA|ICD10CM|Unspecified car occupant injured in collision with van in nontraffic accident, initial encounter|Unspecified car occupant injured in collision with van in nontraffic accident, initial encounter +C2893254|T037|AB|V43.34XD|ICD10CM|Unsp car occupant injured in collision w van nontraf, subs|Unsp car occupant injured in collision w van nontraf, subs +C2893254|T037|PT|V43.34XD|ICD10CM|Unspecified car occupant injured in collision with van in nontraffic accident, subsequent encounter|Unspecified car occupant injured in collision with van in nontraffic accident, subsequent encounter +C2893255|T037|AB|V43.34XS|ICD10CM|Unsp car occupant injured in clsn w van nontraf, sequela|Unsp car occupant injured in clsn w van nontraf, sequela +C2893255|T037|PT|V43.34XS|ICD10CM|Unspecified car occupant injured in collision with van in nontraffic accident, sequela|Unspecified car occupant injured in collision with van in nontraffic accident, sequela +C0496273|T037|PT|V43.4|ICD10|Car occupant injured in collision with car, pick-up truck or van, while boarding or alighting|Car occupant injured in collision with car, pick-up truck or van, while boarding or alighting +C2893256|T037|HT|V43.4|ICD10CM|Person boarding or alighting a car injured in collision with car, pick-up truck or van|Person boarding or alighting a car injured in collision with car, pick-up truck or van +C2893256|T037|AB|V43.4|ICD10CM|Prsn brd/alit a car injured pick-up truck, pk-up/van|Prsn brd/alit a car injured pick-up truck, pk-up/van +C2893257|T037|HT|V43.41|ICD10CM|Person boarding or alighting a car injured in collision with sport utility vehicle|Person boarding or alighting a car injured in collision with sport utility vehicle +C2893257|T037|AB|V43.41|ICD10CM|Prsn brd/alit a car injured in collision w SUV|Prsn brd/alit a car injured in collision w SUV +C2893258|T037|AB|V43.41XA|ICD10CM|Prsn brd/alit a car injured in collision w SUV, init|Prsn brd/alit a car injured in collision w SUV, init +C2893259|T037|AB|V43.41XD|ICD10CM|Prsn brd/alit a car injured in collision w SUV, subs|Prsn brd/alit a car injured in collision w SUV, subs +C2893260|T037|PT|V43.41XS|ICD10CM|Person boarding or alighting a car injured in collision with sport utility vehicle, sequela|Person boarding or alighting a car injured in collision with sport utility vehicle, sequela +C2893260|T037|AB|V43.41XS|ICD10CM|Prsn brd/alit a car injured in collision w SUV, sequela|Prsn brd/alit a car injured in collision w SUV, sequela +C2893261|T037|HT|V43.42|ICD10CM|Person boarding or alighting a car injured in collision with other type car|Person boarding or alighting a car injured in collision with other type car +C2893261|T037|AB|V43.42|ICD10CM|Prsn brd/alit a car injured in collision w car|Prsn brd/alit a car injured in collision w car +C2893262|T037|PT|V43.42XA|ICD10CM|Person boarding or alighting a car injured in collision with other type car, initial encounter|Person boarding or alighting a car injured in collision with other type car, initial encounter +C2893262|T037|AB|V43.42XA|ICD10CM|Prsn brd/alit a car injured in collision w car, init|Prsn brd/alit a car injured in collision w car, init +C2893263|T037|PT|V43.42XD|ICD10CM|Person boarding or alighting a car injured in collision with other type car, subsequent encounter|Person boarding or alighting a car injured in collision with other type car, subsequent encounter +C2893263|T037|AB|V43.42XD|ICD10CM|Prsn brd/alit a car injured in collision w car, subs|Prsn brd/alit a car injured in collision w car, subs +C2893264|T037|PT|V43.42XS|ICD10CM|Person boarding or alighting a car injured in collision with other type car, sequela|Person boarding or alighting a car injured in collision with other type car, sequela +C2893264|T037|AB|V43.42XS|ICD10CM|Prsn brd/alit a car injured in collision w car, sequela|Prsn brd/alit a car injured in collision w car, sequela +C2893265|T037|HT|V43.43|ICD10CM|Person boarding or alighting a car injured in collision with pick-up truck|Person boarding or alighting a car injured in collision with pick-up truck +C2893265|T037|AB|V43.43|ICD10CM|Prsn brd/alit a car injured in collision w pick-up truck|Prsn brd/alit a car injured in collision w pick-up truck +C2893266|T037|PT|V43.43XA|ICD10CM|Person boarding or alighting a car injured in collision with pick-up truck, initial encounter|Person boarding or alighting a car injured in collision with pick-up truck, initial encounter +C2893266|T037|AB|V43.43XA|ICD10CM|Prsn brd/alit a car injured in clsn w pick-up truck, init|Prsn brd/alit a car injured in clsn w pick-up truck, init +C2893267|T037|PT|V43.43XD|ICD10CM|Person boarding or alighting a car injured in collision with pick-up truck, subsequent encounter|Person boarding or alighting a car injured in collision with pick-up truck, subsequent encounter +C2893267|T037|AB|V43.43XD|ICD10CM|Prsn brd/alit a car injured in clsn w pick-up truck, subs|Prsn brd/alit a car injured in clsn w pick-up truck, subs +C2893268|T037|PT|V43.43XS|ICD10CM|Person boarding or alighting a car injured in collision with pick-up truck, sequela|Person boarding or alighting a car injured in collision with pick-up truck, sequela +C2893268|T037|AB|V43.43XS|ICD10CM|Prsn brd/alit a car injured in clsn w pick-up truck, sequela|Prsn brd/alit a car injured in clsn w pick-up truck, sequela +C2893269|T037|HT|V43.44|ICD10CM|Person boarding or alighting a car injured in collision with van|Person boarding or alighting a car injured in collision with van +C2893269|T037|AB|V43.44|ICD10CM|Prsn brd/alit a car injured in collision w van|Prsn brd/alit a car injured in collision w van +C2893270|T037|PT|V43.44XA|ICD10CM|Person boarding or alighting a car injured in collision with van, initial encounter|Person boarding or alighting a car injured in collision with van, initial encounter +C2893270|T037|AB|V43.44XA|ICD10CM|Prsn brd/alit a car injured in collision w van, init|Prsn brd/alit a car injured in collision w van, init +C2893271|T037|PT|V43.44XD|ICD10CM|Person boarding or alighting a car injured in collision with van, subsequent encounter|Person boarding or alighting a car injured in collision with van, subsequent encounter +C2893271|T037|AB|V43.44XD|ICD10CM|Prsn brd/alit a car injured in collision w van, subs|Prsn brd/alit a car injured in collision w van, subs +C2893272|T037|PT|V43.44XS|ICD10CM|Person boarding or alighting a car injured in collision with van, sequela|Person boarding or alighting a car injured in collision with van, sequela +C2893272|T037|AB|V43.44XS|ICD10CM|Prsn brd/alit a car injured in collision w van, sequela|Prsn brd/alit a car injured in collision w van, sequela +C2893273|T037|HT|V43.5|ICD10CM|Car driver injured in collision with car, pick-up truck or van in traffic accident|Car driver injured in collision with car, pick-up truck or van in traffic accident +C2893273|T037|AB|V43.5|ICD10CM|Car driver injured pick-up truck, pk-up/van in traf|Car driver injured pick-up truck, pk-up/van in traf +C0496274|T037|PT|V43.5|ICD10|Car occupant injured in collision with car, pick-up truck or van, driver, traffic accident|Car occupant injured in collision with car, pick-up truck or van, driver, traffic accident +C2893274|T037|AB|V43.51|ICD10CM|Car driver injured in collision w SUV in traffic accident|Car driver injured in collision w SUV in traffic accident +C2893274|T037|HT|V43.51|ICD10CM|Car driver injured in collision with sport utility vehicle in traffic accident|Car driver injured in collision with sport utility vehicle in traffic accident +C2893275|T037|AB|V43.51XA|ICD10CM|Car driver injured in collision w SUV in traf, init|Car driver injured in collision w SUV in traf, init +C2893275|T037|PT|V43.51XA|ICD10CM|Car driver injured in collision with sport utility vehicle in traffic accident, initial encounter|Car driver injured in collision with sport utility vehicle in traffic accident, initial encounter +C2893276|T037|AB|V43.51XD|ICD10CM|Car driver injured in collision w SUV in traf, subs|Car driver injured in collision w SUV in traf, subs +C2893276|T037|PT|V43.51XD|ICD10CM|Car driver injured in collision with sport utility vehicle in traffic accident, subsequent encounter|Car driver injured in collision with sport utility vehicle in traffic accident, subsequent encounter +C2893277|T037|AB|V43.51XS|ICD10CM|Car driver injured in collision w SUV in traf, sequela|Car driver injured in collision w SUV in traf, sequela +C2893277|T037|PT|V43.51XS|ICD10CM|Car driver injured in collision with sport utility vehicle in traffic accident, sequela|Car driver injured in collision with sport utility vehicle in traffic accident, sequela +C2893278|T037|AB|V43.52|ICD10CM|Car driver injured in collision w car in traffic accident|Car driver injured in collision w car in traffic accident +C2893278|T037|HT|V43.52|ICD10CM|Car driver injured in collision with other type car in traffic accident|Car driver injured in collision with other type car in traffic accident +C2893279|T037|AB|V43.52XA|ICD10CM|Car driver injured in collision w car in traf, init|Car driver injured in collision w car in traf, init +C2893279|T037|PT|V43.52XA|ICD10CM|Car driver injured in collision with other type car in traffic accident, initial encounter|Car driver injured in collision with other type car in traffic accident, initial encounter +C2893280|T037|AB|V43.52XD|ICD10CM|Car driver injured in collision w car in traf, subs|Car driver injured in collision w car in traf, subs +C2893280|T037|PT|V43.52XD|ICD10CM|Car driver injured in collision with other type car in traffic accident, subsequent encounter|Car driver injured in collision with other type car in traffic accident, subsequent encounter +C2893281|T037|AB|V43.52XS|ICD10CM|Car driver injured in collision w car in traf, sequela|Car driver injured in collision w car in traf, sequela +C2893281|T037|PT|V43.52XS|ICD10CM|Car driver injured in collision with other type car in traffic accident, sequela|Car driver injured in collision with other type car in traffic accident, sequela +C2893282|T037|AB|V43.53|ICD10CM|Car driver injured in collision w pick-up truck in traf|Car driver injured in collision w pick-up truck in traf +C2893282|T037|HT|V43.53|ICD10CM|Car driver injured in collision with pick-up truck in traffic accident|Car driver injured in collision with pick-up truck in traffic accident +C2893283|T037|AB|V43.53XA|ICD10CM|Car driver injured in clsn w pick-up truck in traf, init|Car driver injured in clsn w pick-up truck in traf, init +C2893283|T037|PT|V43.53XA|ICD10CM|Car driver injured in collision with pick-up truck in traffic accident, initial encounter|Car driver injured in collision with pick-up truck in traffic accident, initial encounter +C2893284|T037|AB|V43.53XD|ICD10CM|Car driver injured in clsn w pick-up truck in traf, subs|Car driver injured in clsn w pick-up truck in traf, subs +C2893284|T037|PT|V43.53XD|ICD10CM|Car driver injured in collision with pick-up truck in traffic accident, subsequent encounter|Car driver injured in collision with pick-up truck in traffic accident, subsequent encounter +C2893285|T037|AB|V43.53XS|ICD10CM|Car driver injured in clsn w pick-up truck in traf, sequela|Car driver injured in clsn w pick-up truck in traf, sequela +C2893285|T037|PT|V43.53XS|ICD10CM|Car driver injured in collision with pick-up truck in traffic accident, sequela|Car driver injured in collision with pick-up truck in traffic accident, sequela +C2893286|T037|AB|V43.54|ICD10CM|Car driver injured in collision with van in traffic accident|Car driver injured in collision with van in traffic accident +C2893286|T037|HT|V43.54|ICD10CM|Car driver injured in collision with van in traffic accident|Car driver injured in collision with van in traffic accident +C2893287|T037|AB|V43.54XA|ICD10CM|Car driver injured in collision w van in traf, init|Car driver injured in collision w van in traf, init +C2893287|T037|PT|V43.54XA|ICD10CM|Car driver injured in collision with van in traffic accident, initial encounter|Car driver injured in collision with van in traffic accident, initial encounter +C2893288|T037|AB|V43.54XD|ICD10CM|Car driver injured in collision w van in traf, subs|Car driver injured in collision w van in traf, subs +C2893288|T037|PT|V43.54XD|ICD10CM|Car driver injured in collision with van in traffic accident, subsequent encounter|Car driver injured in collision with van in traffic accident, subsequent encounter +C2893289|T037|AB|V43.54XS|ICD10CM|Car driver injured in collision w van in traf, sequela|Car driver injured in collision w van in traf, sequela +C2893289|T037|PT|V43.54XS|ICD10CM|Car driver injured in collision with van in traffic accident, sequela|Car driver injured in collision with van in traffic accident, sequela +C0496275|T037|PT|V43.6|ICD10|Car occupant injured in collision with car, pick-up truck or van, passenger, traffic accident|Car occupant injured in collision with car, pick-up truck or van, passenger, traffic accident +C2893290|T037|HT|V43.6|ICD10CM|Car passenger injured in collision with car, pick-up truck or van in traffic accident|Car passenger injured in collision with car, pick-up truck or van in traffic accident +C2893290|T037|AB|V43.6|ICD10CM|Car passenger injured pick-up truck, pk-up/van in traf|Car passenger injured pick-up truck, pk-up/van in traf +C2893291|T037|AB|V43.61|ICD10CM|Car passenger injured in collision w SUV in traffic accident|Car passenger injured in collision w SUV in traffic accident +C2893291|T037|HT|V43.61|ICD10CM|Car passenger injured in collision with sport utility vehicle in traffic accident|Car passenger injured in collision with sport utility vehicle in traffic accident +C2893292|T037|AB|V43.61XA|ICD10CM|Car passenger injured in collision w SUV in traf, init|Car passenger injured in collision w SUV in traf, init +C2893292|T037|PT|V43.61XA|ICD10CM|Car passenger injured in collision with sport utility vehicle in traffic accident, initial encounter|Car passenger injured in collision with sport utility vehicle in traffic accident, initial encounter +C2893293|T037|AB|V43.61XD|ICD10CM|Car passenger injured in collision w SUV in traf, subs|Car passenger injured in collision w SUV in traf, subs +C2893294|T037|AB|V43.61XS|ICD10CM|Car passenger injured in collision w SUV in traf, sequela|Car passenger injured in collision w SUV in traf, sequela +C2893294|T037|PT|V43.61XS|ICD10CM|Car passenger injured in collision with sport utility vehicle in traffic accident, sequela|Car passenger injured in collision with sport utility vehicle in traffic accident, sequela +C2893295|T037|AB|V43.62|ICD10CM|Car passenger injured in collision w car in traffic accident|Car passenger injured in collision w car in traffic accident +C2893295|T037|HT|V43.62|ICD10CM|Car passenger injured in collision with other type car in traffic accident|Car passenger injured in collision with other type car in traffic accident +C2893296|T037|AB|V43.62XA|ICD10CM|Car passenger injured in collision w car in traf, init|Car passenger injured in collision w car in traf, init +C2893296|T037|PT|V43.62XA|ICD10CM|Car passenger injured in collision with other type car in traffic accident, initial encounter|Car passenger injured in collision with other type car in traffic accident, initial encounter +C2893297|T037|AB|V43.62XD|ICD10CM|Car passenger injured in collision w car in traf, subs|Car passenger injured in collision w car in traf, subs +C2893297|T037|PT|V43.62XD|ICD10CM|Car passenger injured in collision with other type car in traffic accident, subsequent encounter|Car passenger injured in collision with other type car in traffic accident, subsequent encounter +C2893298|T037|AB|V43.62XS|ICD10CM|Car passenger injured in collision w car in traf, sequela|Car passenger injured in collision w car in traf, sequela +C2893298|T037|PT|V43.62XS|ICD10CM|Car passenger injured in collision with other type car in traffic accident, sequela|Car passenger injured in collision with other type car in traffic accident, sequela +C2893299|T037|AB|V43.63|ICD10CM|Car passenger injured in collision w pick-up truck in traf|Car passenger injured in collision w pick-up truck in traf +C2893299|T037|HT|V43.63|ICD10CM|Car passenger injured in collision with pick-up truck in traffic accident|Car passenger injured in collision with pick-up truck in traffic accident +C2893300|T037|AB|V43.63XA|ICD10CM|Car passenger injured in clsn w pick-up truck in traf, init|Car passenger injured in clsn w pick-up truck in traf, init +C2893300|T037|PT|V43.63XA|ICD10CM|Car passenger injured in collision with pick-up truck in traffic accident, initial encounter|Car passenger injured in collision with pick-up truck in traffic accident, initial encounter +C2893301|T037|AB|V43.63XD|ICD10CM|Car passenger injured in clsn w pick-up truck in traf, subs|Car passenger injured in clsn w pick-up truck in traf, subs +C2893301|T037|PT|V43.63XD|ICD10CM|Car passenger injured in collision with pick-up truck in traffic accident, subsequent encounter|Car passenger injured in collision with pick-up truck in traffic accident, subsequent encounter +C2893302|T037|AB|V43.63XS|ICD10CM|Car pasngr injured in clsn w pick-up truck in traf, sequela|Car pasngr injured in clsn w pick-up truck in traf, sequela +C2893302|T037|PT|V43.63XS|ICD10CM|Car passenger injured in collision with pick-up truck in traffic accident, sequela|Car passenger injured in collision with pick-up truck in traffic accident, sequela +C2893303|T037|AB|V43.64|ICD10CM|Car passenger injured in collision w van in traffic accident|Car passenger injured in collision w van in traffic accident +C2893303|T037|HT|V43.64|ICD10CM|Car passenger injured in collision with van in traffic accident|Car passenger injured in collision with van in traffic accident +C2893304|T037|AB|V43.64XA|ICD10CM|Car passenger injured in collision w van in traf, init|Car passenger injured in collision w van in traf, init +C2893304|T037|PT|V43.64XA|ICD10CM|Car passenger injured in collision with van in traffic accident, initial encounter|Car passenger injured in collision with van in traffic accident, initial encounter +C2893305|T037|AB|V43.64XD|ICD10CM|Car passenger injured in collision w van in traf, subs|Car passenger injured in collision w van in traf, subs +C2893305|T037|PT|V43.64XD|ICD10CM|Car passenger injured in collision with van in traffic accident, subsequent encounter|Car passenger injured in collision with van in traffic accident, subsequent encounter +C2893306|T037|AB|V43.64XS|ICD10CM|Car passenger injured in collision w van in traf, sequela|Car passenger injured in collision w van in traf, sequela +C2893306|T037|PT|V43.64XS|ICD10CM|Car passenger injured in collision with van in traffic accident, sequela|Car passenger injured in collision with van in traffic accident, sequela +C2893307|T037|HT|V43.7|ICD10CM|Person on outside of car injured in collision with car, pick-up truck or van in traffic accident|Person on outside of car injured in collision with car, pick-up truck or van in traffic accident +C2893307|T037|AB|V43.7|ICD10CM|Person outside car injured pick-up truck, pk-up/van in traf|Person outside car injured pick-up truck, pk-up/van in traf +C2893308|T037|AB|V43.71|ICD10CM|Person on outside of car injured in collision w SUV in traf|Person on outside of car injured in collision w SUV in traf +C2893308|T037|HT|V43.71|ICD10CM|Person on outside of car injured in collision with sport utility vehicle in traffic accident|Person on outside of car injured in collision with sport utility vehicle in traffic accident +C2893309|T037|AB|V43.71XA|ICD10CM|Person outside car injured in collision w SUV in traf, init|Person outside car injured in collision w SUV in traf, init +C2893310|T037|AB|V43.71XD|ICD10CM|Person outside car injured in collision w SUV in traf, subs|Person outside car injured in collision w SUV in traf, subs +C2893311|T037|AB|V43.71XS|ICD10CM|Person outside car injured in clsn w SUV in traf, sequela|Person outside car injured in clsn w SUV in traf, sequela +C2893312|T037|AB|V43.72|ICD10CM|Person on outside of car injured in collision w car in traf|Person on outside of car injured in collision w car in traf +C2893312|T037|HT|V43.72|ICD10CM|Person on outside of car injured in collision with other type car in traffic accident|Person on outside of car injured in collision with other type car in traffic accident +C2893313|T037|AB|V43.72XA|ICD10CM|Person outside car injured in collision w car in traf, init|Person outside car injured in collision w car in traf, init +C2893314|T037|AB|V43.72XD|ICD10CM|Person outside car injured in collision w car in traf, subs|Person outside car injured in collision w car in traf, subs +C2893315|T037|PT|V43.72XS|ICD10CM|Person on outside of car injured in collision with other type car in traffic accident, sequela|Person on outside of car injured in collision with other type car in traffic accident, sequela +C2893315|T037|AB|V43.72XS|ICD10CM|Person outside car injured in clsn w car in traf, sequela|Person outside car injured in clsn w car in traf, sequela +C2893316|T037|HT|V43.73|ICD10CM|Person on outside of car injured in collision with pick-up truck in traffic accident|Person on outside of car injured in collision with pick-up truck in traffic accident +C2893316|T037|AB|V43.73|ICD10CM|Person outside car injured in clsn w pick-up truck in traf|Person outside car injured in clsn w pick-up truck in traf +C2893317|T037|AB|V43.73XA|ICD10CM|Person outside car inj in clsn w pick-up truck in traf, init|Person outside car inj in clsn w pick-up truck in traf, init +C2893318|T037|AB|V43.73XD|ICD10CM|Person outside car inj in clsn w pick-up truck in traf, subs|Person outside car inj in clsn w pick-up truck in traf, subs +C2893319|T037|PT|V43.73XS|ICD10CM|Person on outside of car injured in collision with pick-up truck in traffic accident, sequela|Person on outside of car injured in collision with pick-up truck in traffic accident, sequela +C2893319|T037|AB|V43.73XS|ICD10CM|Person outsd car inj in clsn w pk-up truck in traf, sequela|Person outsd car inj in clsn w pk-up truck in traf, sequela +C2893320|T037|AB|V43.74|ICD10CM|Person on outside of car injured in collision w van in traf|Person on outside of car injured in collision w van in traf +C2893320|T037|HT|V43.74|ICD10CM|Person on outside of car injured in collision with van in traffic accident|Person on outside of car injured in collision with van in traffic accident +C2896753|T037|PT|V43.74XA|ICD10CM|Person on outside of car injured in collision with van in traffic accident, initial encounter|Person on outside of car injured in collision with van in traffic accident, initial encounter +C2896753|T037|AB|V43.74XA|ICD10CM|Person outside car injured in collision w van in traf, init|Person outside car injured in collision w van in traf, init +C2896754|T037|PT|V43.74XD|ICD10CM|Person on outside of car injured in collision with van in traffic accident, subsequent encounter|Person on outside of car injured in collision with van in traffic accident, subsequent encounter +C2896754|T037|AB|V43.74XD|ICD10CM|Person outside car injured in collision w van in traf, subs|Person outside car injured in collision w van in traf, subs +C2896755|T037|PT|V43.74XS|ICD10CM|Person on outside of car injured in collision with van in traffic accident, sequela|Person on outside of car injured in collision with van in traffic accident, sequela +C2896755|T037|AB|V43.74XS|ICD10CM|Person outside car injured in clsn w van in traf, sequela|Person outside car injured in clsn w van in traf, sequela +C2896756|T037|AB|V43.9|ICD10CM|Unsp car occupant injured pick-up truck, pk-up/van in traf|Unsp car occupant injured pick-up truck, pk-up/van in traf +C2896756|T037|HT|V43.9|ICD10CM|Unspecified car occupant injured in collision with car, pick-up truck or van in traffic accident|Unspecified car occupant injured in collision with car, pick-up truck or van in traffic accident +C2896757|T037|AB|V43.91|ICD10CM|Unsp car occupant injured in collision w SUV in traf|Unsp car occupant injured in collision w SUV in traf +C2896757|T037|HT|V43.91|ICD10CM|Unspecified car occupant injured in collision with sport utility vehicle in traffic accident|Unspecified car occupant injured in collision with sport utility vehicle in traffic accident +C2896758|T037|AB|V43.91XA|ICD10CM|Unsp car occupant injured in collision w SUV in traf, init|Unsp car occupant injured in collision w SUV in traf, init +C2896759|T037|AB|V43.91XD|ICD10CM|Unsp car occupant injured in collision w SUV in traf, subs|Unsp car occupant injured in collision w SUV in traf, subs +C2896760|T037|AB|V43.91XS|ICD10CM|Unsp car occupant injured in clsn w SUV in traf, sequela|Unsp car occupant injured in clsn w SUV in traf, sequela +C2896761|T037|AB|V43.92|ICD10CM|Unsp car occupant injured in collision w car in traf|Unsp car occupant injured in collision w car in traf +C2896761|T037|HT|V43.92|ICD10CM|Unspecified car occupant injured in collision with other type car in traffic accident|Unspecified car occupant injured in collision with other type car in traffic accident +C2896762|T037|AB|V43.92XA|ICD10CM|Unsp car occupant injured in collision w car in traf, init|Unsp car occupant injured in collision w car in traf, init +C2896763|T037|AB|V43.92XD|ICD10CM|Unsp car occupant injured in collision w car in traf, subs|Unsp car occupant injured in collision w car in traf, subs +C2896764|T037|AB|V43.92XS|ICD10CM|Unsp car occupant injured in clsn w car in traf, sequela|Unsp car occupant injured in clsn w car in traf, sequela +C2896764|T037|PT|V43.92XS|ICD10CM|Unspecified car occupant injured in collision with other type car in traffic accident, sequela|Unspecified car occupant injured in collision with other type car in traffic accident, sequela +C2896765|T037|AB|V43.93|ICD10CM|Unsp car occupant injured in clsn w pick-up truck in traf|Unsp car occupant injured in clsn w pick-up truck in traf +C2896765|T037|HT|V43.93|ICD10CM|Unspecified car occupant injured in collision with pick-up truck in traffic accident|Unspecified car occupant injured in collision with pick-up truck in traffic accident +C2896766|T037|AB|V43.93XA|ICD10CM|Unsp car occ injured in clsn w pick-up truck in traf, init|Unsp car occ injured in clsn w pick-up truck in traf, init +C2896767|T037|AB|V43.93XD|ICD10CM|Unsp car occ injured in clsn w pick-up truck in traf, subs|Unsp car occ injured in clsn w pick-up truck in traf, subs +C2896768|T037|AB|V43.93XS|ICD10CM|Unsp car occ inj in clsn w pick-up truck in traf, sequela|Unsp car occ inj in clsn w pick-up truck in traf, sequela +C2896768|T037|PT|V43.93XS|ICD10CM|Unspecified car occupant injured in collision with pick-up truck in traffic accident, sequela|Unspecified car occupant injured in collision with pick-up truck in traffic accident, sequela +C2896769|T037|AB|V43.94|ICD10CM|Unsp car occupant injured in collision w van in traf|Unsp car occupant injured in collision w van in traf +C2896769|T037|HT|V43.94|ICD10CM|Unspecified car occupant injured in collision with van in traffic accident|Unspecified car occupant injured in collision with van in traffic accident +C2896770|T037|AB|V43.94XA|ICD10CM|Unsp car occupant injured in collision w van in traf, init|Unsp car occupant injured in collision w van in traf, init +C2896770|T037|PT|V43.94XA|ICD10CM|Unspecified car occupant injured in collision with van in traffic accident, initial encounter|Unspecified car occupant injured in collision with van in traffic accident, initial encounter +C2896771|T037|AB|V43.94XD|ICD10CM|Unsp car occupant injured in collision w van in traf, subs|Unsp car occupant injured in collision w van in traf, subs +C2896771|T037|PT|V43.94XD|ICD10CM|Unspecified car occupant injured in collision with van in traffic accident, subsequent encounter|Unspecified car occupant injured in collision with van in traffic accident, subsequent encounter +C2896772|T037|AB|V43.94XS|ICD10CM|Unsp car occupant injured in clsn w van in traf, sequela|Unsp car occupant injured in clsn w van in traf, sequela +C2896772|T037|PT|V43.94XS|ICD10CM|Unspecified car occupant injured in collision with van in traffic accident, sequela|Unspecified car occupant injured in collision with van in traffic accident, sequela +C0476966|T037|AB|V44|ICD10CM|Car occupant injured in collision w hv veh|Car occupant injured in collision w hv veh +C0476966|T037|HT|V44|ICD10CM|Car occupant injured in collision with heavy transport vehicle or bus|Car occupant injured in collision with heavy transport vehicle or bus +C0476966|T037|HT|V44|ICD10|Car occupant injured in collision with heavy transport vehicle or bus|Car occupant injured in collision with heavy transport vehicle or bus +C2896773|T037|AB|V44.0|ICD10CM|Car driver injured in collision w hv veh nontraf|Car driver injured in collision w hv veh nontraf +C2896773|T037|HT|V44.0|ICD10CM|Car driver injured in collision with heavy transport vehicle or bus in nontraffic accident|Car driver injured in collision with heavy transport vehicle or bus in nontraffic accident +C0496278|T037|PT|V44.0|ICD10|Car occupant injured in collision with heavy transport vehicle or bus, driver, nontraffic accident|Car occupant injured in collision with heavy transport vehicle or bus, driver, nontraffic accident +C2896774|T037|AB|V44.0XXA|ICD10CM|Car driver injured in collision w hv veh nontraf, init|Car driver injured in collision w hv veh nontraf, init +C2896775|T037|AB|V44.0XXD|ICD10CM|Car driver injured in collision w hv veh nontraf, subs|Car driver injured in collision w hv veh nontraf, subs +C2896776|T037|AB|V44.0XXS|ICD10CM|Car driver injured in collision w hv veh nontraf, sequela|Car driver injured in collision w hv veh nontraf, sequela +C2896776|T037|PT|V44.0XXS|ICD10CM|Car driver injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela|Car driver injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela +C2896777|T037|AB|V44.1|ICD10CM|Car passenger injured in collision w hv veh nontraf|Car passenger injured in collision w hv veh nontraf +C2896777|T037|HT|V44.1|ICD10CM|Car passenger injured in collision with heavy transport vehicle or bus in nontraffic accident|Car passenger injured in collision with heavy transport vehicle or bus in nontraffic accident +C2896778|T037|AB|V44.1XXA|ICD10CM|Car passenger injured in collision w hv veh nontraf, init|Car passenger injured in collision w hv veh nontraf, init +C2896779|T037|AB|V44.1XXD|ICD10CM|Car passenger injured in collision w hv veh nontraf, subs|Car passenger injured in collision w hv veh nontraf, subs +C2896780|T037|AB|V44.1XXS|ICD10CM|Car passenger injured in collision w hv veh nontraf, sequela|Car passenger injured in collision w hv veh nontraf, sequela +C2896781|T037|AB|V44.2|ICD10CM|Person outside car injured in collision w hv veh nontraf|Person outside car injured in collision w hv veh nontraf +C2896782|T037|AB|V44.2XXA|ICD10CM|Person outside car injured in clsn w hv veh nontraf, init|Person outside car injured in clsn w hv veh nontraf, init +C2896783|T037|AB|V44.2XXD|ICD10CM|Person outside car injured in clsn w hv veh nontraf, subs|Person outside car injured in clsn w hv veh nontraf, subs +C2896784|T037|AB|V44.2XXS|ICD10CM|Person outside car injured in clsn w hv veh nontraf, sequela|Person outside car injured in clsn w hv veh nontraf, sequela +C2896785|T037|AB|V44.3|ICD10CM|Unsp car occupant injured in collision w hv veh nontraf|Unsp car occupant injured in collision w hv veh nontraf +C2896786|T037|AB|V44.3XXA|ICD10CM|Unsp car occupant injured in clsn w hv veh nontraf, init|Unsp car occupant injured in clsn w hv veh nontraf, init +C2896787|T037|AB|V44.3XXD|ICD10CM|Unsp car occupant injured in clsn w hv veh nontraf, subs|Unsp car occupant injured in clsn w hv veh nontraf, subs +C2896788|T037|AB|V44.3XXS|ICD10CM|Unsp car occupant injured in clsn w hv veh nontraf, sequela|Unsp car occupant injured in clsn w hv veh nontraf, sequela +C0496282|T037|PT|V44.4|ICD10|Car occupant injured in collision with heavy transport vehicle or bus, while boarding or alighting|Car occupant injured in collision with heavy transport vehicle or bus, while boarding or alighting +C2896789|T037|HT|V44.4|ICD10CM|Person boarding or alighting a car injured in collision with heavy transport vehicle or bus|Person boarding or alighting a car injured in collision with heavy transport vehicle or bus +C2896789|T037|AB|V44.4|ICD10CM|Prsn brd/alit a car injured in collision w hv veh|Prsn brd/alit a car injured in collision w hv veh +C2896790|T037|AB|V44.4XXA|ICD10CM|Prsn brd/alit a car injured in collision w hv veh, init|Prsn brd/alit a car injured in collision w hv veh, init +C2896791|T037|AB|V44.4XXD|ICD10CM|Prsn brd/alit a car injured in collision w hv veh, subs|Prsn brd/alit a car injured in collision w hv veh, subs +C2896792|T037|PT|V44.4XXS|ICD10CM|Person boarding or alighting a car injured in collision with heavy transport vehicle or bus, sequela|Person boarding or alighting a car injured in collision with heavy transport vehicle or bus, sequela +C2896792|T037|AB|V44.4XXS|ICD10CM|Prsn brd/alit a car injured in collision w hv veh, sequela|Prsn brd/alit a car injured in collision w hv veh, sequela +C2896793|T037|AB|V44.5|ICD10CM|Car driver injured in collision w hv veh in traffic accident|Car driver injured in collision w hv veh in traffic accident +C2896793|T037|HT|V44.5|ICD10CM|Car driver injured in collision with heavy transport vehicle or bus in traffic accident|Car driver injured in collision with heavy transport vehicle or bus in traffic accident +C0496283|T037|PT|V44.5|ICD10|Car occupant injured in collision with heavy transport vehicle or bus, driver, traffic accident|Car occupant injured in collision with heavy transport vehicle or bus, driver, traffic accident +C2896794|T037|AB|V44.5XXA|ICD10CM|Car driver injured in collision w hv veh in traf, init|Car driver injured in collision w hv veh in traf, init +C2896795|T037|AB|V44.5XXD|ICD10CM|Car driver injured in collision w hv veh in traf, subs|Car driver injured in collision w hv veh in traf, subs +C2896796|T037|AB|V44.5XXS|ICD10CM|Car driver injured in collision w hv veh in traf, sequela|Car driver injured in collision w hv veh in traf, sequela +C2896796|T037|PT|V44.5XXS|ICD10CM|Car driver injured in collision with heavy transport vehicle or bus in traffic accident, sequela|Car driver injured in collision with heavy transport vehicle or bus in traffic accident, sequela +C0496284|T037|PT|V44.6|ICD10|Car occupant injured in collision with heavy transport vehicle or bus, passenger, traffic accident|Car occupant injured in collision with heavy transport vehicle or bus, passenger, traffic accident +C2896797|T037|AB|V44.6|ICD10CM|Car passenger injured in collision w hv veh in traf|Car passenger injured in collision w hv veh in traf +C2896797|T037|HT|V44.6|ICD10CM|Car passenger injured in collision with heavy transport vehicle or bus in traffic accident|Car passenger injured in collision with heavy transport vehicle or bus in traffic accident +C2896798|T037|AB|V44.6XXA|ICD10CM|Car passenger injured in collision w hv veh in traf, init|Car passenger injured in collision w hv veh in traf, init +C2896799|T037|AB|V44.6XXD|ICD10CM|Car passenger injured in collision w hv veh in traf, subs|Car passenger injured in collision w hv veh in traf, subs +C2896800|T037|AB|V44.6XXS|ICD10CM|Car passenger injured in collision w hv veh in traf, sequela|Car passenger injured in collision w hv veh in traf, sequela +C2896800|T037|PT|V44.6XXS|ICD10CM|Car passenger injured in collision with heavy transport vehicle or bus in traffic accident, sequela|Car passenger injured in collision with heavy transport vehicle or bus in traffic accident, sequela +C2896801|T037|AB|V44.7|ICD10CM|Person outside car injured in collision w hv veh in traf|Person outside car injured in collision w hv veh in traf +C2896802|T037|AB|V44.7XXA|ICD10CM|Person outside car injured in clsn w hv veh in traf, init|Person outside car injured in clsn w hv veh in traf, init +C2896803|T037|AB|V44.7XXD|ICD10CM|Person outside car injured in clsn w hv veh in traf, subs|Person outside car injured in clsn w hv veh in traf, subs +C2896804|T037|AB|V44.7XXS|ICD10CM|Person outside car injured in clsn w hv veh in traf, sequela|Person outside car injured in clsn w hv veh in traf, sequela +C2896805|T037|AB|V44.9|ICD10CM|Unsp car occupant injured in collision w hv veh in traf|Unsp car occupant injured in collision w hv veh in traf +C2896806|T037|AB|V44.9XXA|ICD10CM|Unsp car occupant injured in clsn w hv veh in traf, init|Unsp car occupant injured in clsn w hv veh in traf, init +C2896807|T037|AB|V44.9XXD|ICD10CM|Unsp car occupant injured in clsn w hv veh in traf, subs|Unsp car occupant injured in clsn w hv veh in traf, subs +C2896808|T037|AB|V44.9XXS|ICD10CM|Unsp car occupant injured in clsn w hv veh in traf, sequela|Unsp car occupant injured in clsn w hv veh in traf, sequela +C0476967|T037|AB|V45|ICD10CM|Car occupant injured in collision w rail trn/veh|Car occupant injured in collision w rail trn/veh +C0476967|T037|HT|V45|ICD10CM|Car occupant injured in collision with railway train or railway vehicle|Car occupant injured in collision with railway train or railway vehicle +C0476967|T037|HT|V45|ICD10|Car occupant injured in collision with railway train or railway vehicle|Car occupant injured in collision with railway train or railway vehicle +C2896809|T037|AB|V45.0|ICD10CM|Car driver injured in collision w rail trn/veh nontraf|Car driver injured in collision w rail trn/veh nontraf +C2896809|T037|HT|V45.0|ICD10CM|Car driver injured in collision with railway train or railway vehicle in nontraffic accident|Car driver injured in collision with railway train or railway vehicle in nontraffic accident +C0496287|T037|PT|V45.0|ICD10|Car occupant injured in collision with railway train or railway vehicle, driver, nontraffic accident|Car occupant injured in collision with railway train or railway vehicle, driver, nontraffic accident +C2896810|T037|AB|V45.0XXA|ICD10CM|Car driver injured in collision w rail trn/veh nontraf, init|Car driver injured in collision w rail trn/veh nontraf, init +C2896811|T037|AB|V45.0XXD|ICD10CM|Car driver injured in collision w rail trn/veh nontraf, subs|Car driver injured in collision w rail trn/veh nontraf, subs +C2896812|T037|AB|V45.0XXS|ICD10CM|Car driver injured in clsn w rail trn/veh nontraf, sequela|Car driver injured in clsn w rail trn/veh nontraf, sequela +C2896813|T037|AB|V45.1|ICD10CM|Car passenger injured in collision w rail trn/veh nontraf|Car passenger injured in collision w rail trn/veh nontraf +C2896813|T037|HT|V45.1|ICD10CM|Car passenger injured in collision with railway train or railway vehicle in nontraffic accident|Car passenger injured in collision with railway train or railway vehicle in nontraffic accident +C2896814|T037|AB|V45.1XXA|ICD10CM|Car passenger injured in clsn w rail trn/veh nontraf, init|Car passenger injured in clsn w rail trn/veh nontraf, init +C2896815|T037|AB|V45.1XXD|ICD10CM|Car passenger injured in clsn w rail trn/veh nontraf, subs|Car passenger injured in clsn w rail trn/veh nontraf, subs +C2896816|T037|AB|V45.1XXS|ICD10CM|Car pasngr injured in clsn w rail trn/veh nontraf, sequela|Car pasngr injured in clsn w rail trn/veh nontraf, sequela +C2896817|T037|AB|V45.2|ICD10CM|Person outside car injured in clsn w rail trn/veh nontraf|Person outside car injured in clsn w rail trn/veh nontraf +C2896818|T037|AB|V45.2XXA|ICD10CM|Person outside car inj in clsn w rail trn/veh nontraf, init|Person outside car inj in clsn w rail trn/veh nontraf, init +C2896819|T037|AB|V45.2XXD|ICD10CM|Person outside car inj in clsn w rail trn/veh nontraf, subs|Person outside car inj in clsn w rail trn/veh nontraf, subs +C2896820|T037|AB|V45.2XXS|ICD10CM|Person outsd car inj in clsn w rail trn/veh nontraf, sequela|Person outsd car inj in clsn w rail trn/veh nontraf, sequela +C2896821|T037|AB|V45.3|ICD10CM|Unsp car occupant injured in clsn w rail trn/veh nontraf|Unsp car occupant injured in clsn w rail trn/veh nontraf +C2896822|T037|AB|V45.3XXA|ICD10CM|Unsp car occ injured in clsn w rail trn/veh nontraf, init|Unsp car occ injured in clsn w rail trn/veh nontraf, init +C2896823|T037|AB|V45.3XXD|ICD10CM|Unsp car occ injured in clsn w rail trn/veh nontraf, subs|Unsp car occ injured in clsn w rail trn/veh nontraf, subs +C2896824|T037|AB|V45.3XXS|ICD10CM|Unsp car occ injured in clsn w rail trn/veh nontraf, sequela|Unsp car occ injured in clsn w rail trn/veh nontraf, sequela +C0496291|T037|PT|V45.4|ICD10|Car occupant injured in collision with railway train or railway vehicle, while boarding or alighting|Car occupant injured in collision with railway train or railway vehicle, while boarding or alighting +C2896825|T037|HT|V45.4|ICD10CM|Person boarding or alighting a car injured in collision with railway train or railway vehicle|Person boarding or alighting a car injured in collision with railway train or railway vehicle +C2896825|T037|AB|V45.4|ICD10CM|Prsn brd/alit a car injured in collision w rail trn/veh|Prsn brd/alit a car injured in collision w rail trn/veh +C2896826|T037|AB|V45.4XXA|ICD10CM|Prsn brd/alit a car injured in clsn w rail trn/veh, init|Prsn brd/alit a car injured in clsn w rail trn/veh, init +C2896827|T037|AB|V45.4XXD|ICD10CM|Prsn brd/alit a car injured in clsn w rail trn/veh, subs|Prsn brd/alit a car injured in clsn w rail trn/veh, subs +C2896828|T037|AB|V45.4XXS|ICD10CM|Prsn brd/alit a car injured in clsn w rail trn/veh, sequela|Prsn brd/alit a car injured in clsn w rail trn/veh, sequela +C2896829|T037|AB|V45.5|ICD10CM|Car driver injured in collision w rail trn/veh in traf|Car driver injured in collision w rail trn/veh in traf +C2896829|T037|HT|V45.5|ICD10CM|Car driver injured in collision with railway train or railway vehicle in traffic accident|Car driver injured in collision with railway train or railway vehicle in traffic accident +C0496292|T037|PT|V45.5|ICD10|Car occupant injured in collision with railway train or railway vehicle, driver, traffic accident|Car occupant injured in collision with railway train or railway vehicle, driver, traffic accident +C2896830|T037|AB|V45.5XXA|ICD10CM|Car driver injured in collision w rail trn/veh in traf, init|Car driver injured in collision w rail trn/veh in traf, init +C2896831|T037|AB|V45.5XXD|ICD10CM|Car driver injured in collision w rail trn/veh in traf, subs|Car driver injured in collision w rail trn/veh in traf, subs +C2896832|T037|AB|V45.5XXS|ICD10CM|Car driver injured in clsn w rail trn/veh in traf, sequela|Car driver injured in clsn w rail trn/veh in traf, sequela +C2896832|T037|PT|V45.5XXS|ICD10CM|Car driver injured in collision with railway train or railway vehicle in traffic accident, sequela|Car driver injured in collision with railway train or railway vehicle in traffic accident, sequela +C0496293|T037|PT|V45.6|ICD10|Car occupant injured in collision with railway train or railway vehicle, passenger, traffic accident|Car occupant injured in collision with railway train or railway vehicle, passenger, traffic accident +C2896833|T037|AB|V45.6|ICD10CM|Car passenger injured in collision w rail trn/veh in traf|Car passenger injured in collision w rail trn/veh in traf +C2896833|T037|HT|V45.6|ICD10CM|Car passenger injured in collision with railway train or railway vehicle in traffic accident|Car passenger injured in collision with railway train or railway vehicle in traffic accident +C2896834|T037|AB|V45.6XXA|ICD10CM|Car passenger injured in clsn w rail trn/veh in traf, init|Car passenger injured in clsn w rail trn/veh in traf, init +C2896835|T037|AB|V45.6XXD|ICD10CM|Car passenger injured in clsn w rail trn/veh in traf, subs|Car passenger injured in clsn w rail trn/veh in traf, subs +C2896836|T037|AB|V45.6XXS|ICD10CM|Car pasngr injured in clsn w rail trn/veh in traf, sequela|Car pasngr injured in clsn w rail trn/veh in traf, sequela +C2896837|T037|AB|V45.7|ICD10CM|Person outside car injured in clsn w rail trn/veh in traf|Person outside car injured in clsn w rail trn/veh in traf +C2896838|T037|AB|V45.7XXA|ICD10CM|Person outside car inj in clsn w rail trn/veh in traf, init|Person outside car inj in clsn w rail trn/veh in traf, init +C2896839|T037|AB|V45.7XXD|ICD10CM|Person outside car inj in clsn w rail trn/veh in traf, subs|Person outside car inj in clsn w rail trn/veh in traf, subs +C2896840|T037|AB|V45.7XXS|ICD10CM|Person outsd car inj in clsn w rail trn/veh in traf, sequela|Person outsd car inj in clsn w rail trn/veh in traf, sequela +C2896841|T037|AB|V45.9|ICD10CM|Unsp car occupant injured in clsn w rail trn/veh in traf|Unsp car occupant injured in clsn w rail trn/veh in traf +C2896842|T037|AB|V45.9XXA|ICD10CM|Unsp car occ injured in clsn w rail trn/veh in traf, init|Unsp car occ injured in clsn w rail trn/veh in traf, init +C2896843|T037|AB|V45.9XXD|ICD10CM|Unsp car occ injured in clsn w rail trn/veh in traf, subs|Unsp car occ injured in clsn w rail trn/veh in traf, subs +C2896844|T037|AB|V45.9XXS|ICD10CM|Unsp car occ injured in clsn w rail trn/veh in traf, sequela|Unsp car occ injured in clsn w rail trn/veh in traf, sequela +C0476968|T037|AB|V46|ICD10CM|Car occupant injured in collision with oth nonmotor vehicle|Car occupant injured in collision with oth nonmotor vehicle +C0476968|T037|HT|V46|ICD10CM|Car occupant injured in collision with other nonmotor vehicle|Car occupant injured in collision with other nonmotor vehicle +C0476968|T037|HT|V46|ICD10|Car occupant injured in collision with other nonmotor vehicle|Car occupant injured in collision with other nonmotor vehicle +C4283915|T037|ET|V46|ICD10CM|collision with animal-drawn vehicle, animal being ridden, streetcar|collision with animal-drawn vehicle, animal being ridden, streetcar +C2896845|T037|AB|V46.0|ICD10CM|Car driver injured in collision w nonmtr vehicle nontraf|Car driver injured in collision w nonmtr vehicle nontraf +C2896845|T037|HT|V46.0|ICD10CM|Car driver injured in collision with other nonmotor vehicle in nontraffic accident|Car driver injured in collision with other nonmotor vehicle in nontraffic accident +C0496296|T037|PT|V46.0|ICD10|Car occupant injured in collision with other nonmotor vehicle, driver, nontraffic accident|Car occupant injured in collision with other nonmotor vehicle, driver, nontraffic accident +C2896846|T037|AB|V46.0XXA|ICD10CM|Car driver injured in clsn w nonmtr vehicle nontraf, init|Car driver injured in clsn w nonmtr vehicle nontraf, init +C2896847|T037|AB|V46.0XXD|ICD10CM|Car driver injured in clsn w nonmtr vehicle nontraf, subs|Car driver injured in clsn w nonmtr vehicle nontraf, subs +C2896848|T037|AB|V46.0XXS|ICD10CM|Car driver injured in clsn w nonmtr vehicle nontraf, sequela|Car driver injured in clsn w nonmtr vehicle nontraf, sequela +C2896848|T037|PT|V46.0XXS|ICD10CM|Car driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela|Car driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela +C0496297|T037|PT|V46.1|ICD10|Car occupant injured in collision with other nonmotor vehicle, passenger, nontraffic accident|Car occupant injured in collision with other nonmotor vehicle, passenger, nontraffic accident +C2896849|T037|AB|V46.1|ICD10CM|Car passenger injured in collision w nonmtr vehicle nontraf|Car passenger injured in collision w nonmtr vehicle nontraf +C2896849|T037|HT|V46.1|ICD10CM|Car passenger injured in collision with other nonmotor vehicle in nontraffic accident|Car passenger injured in collision with other nonmotor vehicle in nontraffic accident +C2896850|T037|AB|V46.1XXA|ICD10CM|Car passenger injured in clsn w nonmtr vehicle nontraf, init|Car passenger injured in clsn w nonmtr vehicle nontraf, init +C2896851|T037|AB|V46.1XXD|ICD10CM|Car passenger injured in clsn w nonmtr vehicle nontraf, subs|Car passenger injured in clsn w nonmtr vehicle nontraf, subs +C2896852|T037|AB|V46.1XXS|ICD10CM|Car pasngr injured in clsn w nonmtr vehicle nontraf, sequela|Car pasngr injured in clsn w nonmtr vehicle nontraf, sequela +C2896852|T037|PT|V46.1XXS|ICD10CM|Car passenger injured in collision with other nonmotor vehicle in nontraffic accident, sequela|Car passenger injured in collision with other nonmotor vehicle in nontraffic accident, sequela +C2896853|T037|HT|V46.2|ICD10CM|Person on outside of car injured in collision with other nonmotor vehicle in nontraffic accident|Person on outside of car injured in collision with other nonmotor vehicle in nontraffic accident +C2896853|T037|AB|V46.2|ICD10CM|Person outside car injured in clsn w nonmtr vehicle nontraf|Person outside car injured in clsn w nonmtr vehicle nontraf +C2896854|T037|AB|V46.2XXA|ICD10CM|Person outsd car inj in clsn w nonmtr vehicle nontraf, init|Person outsd car inj in clsn w nonmtr vehicle nontraf, init +C2896855|T037|AB|V46.2XXD|ICD10CM|Person outsd car inj in clsn w nonmtr vehicle nontraf, subs|Person outsd car inj in clsn w nonmtr vehicle nontraf, subs +C2896856|T037|AB|V46.2XXS|ICD10CM|Person outsd car inj in clsn w nonmtr vehicle nontraf, sqla|Person outsd car inj in clsn w nonmtr vehicle nontraf, sqla +C2896857|T037|AB|V46.3|ICD10CM|Unsp car occupant injured in clsn w nonmtr vehicle nontraf|Unsp car occupant injured in clsn w nonmtr vehicle nontraf +C2896857|T037|HT|V46.3|ICD10CM|Unspecified car occupant injured in collision with other nonmotor vehicle in nontraffic accident|Unspecified car occupant injured in collision with other nonmotor vehicle in nontraffic accident +C2896858|T037|AB|V46.3XXA|ICD10CM|Unsp car occ injured in clsn w nonmtr vehicle nontraf, init|Unsp car occ injured in clsn w nonmtr vehicle nontraf, init +C2896859|T037|AB|V46.3XXD|ICD10CM|Unsp car occ injured in clsn w nonmtr vehicle nontraf, subs|Unsp car occ injured in clsn w nonmtr vehicle nontraf, subs +C2896860|T037|AB|V46.3XXS|ICD10CM|Unsp car occ inj in clsn w nonmtr vehicle nontraf, sequela|Unsp car occ inj in clsn w nonmtr vehicle nontraf, sequela +C0496300|T037|PT|V46.4|ICD10|Car occupant injured in collision with other nonmotor vehicle, while boarding or alighting|Car occupant injured in collision with other nonmotor vehicle, while boarding or alighting +C2896861|T037|HT|V46.4|ICD10CM|Person boarding or alighting a car injured in collision with other nonmotor vehicle|Person boarding or alighting a car injured in collision with other nonmotor vehicle +C2896861|T037|AB|V46.4|ICD10CM|Prsn brd/alit a car injured in collision w nonmtr vehicle|Prsn brd/alit a car injured in collision w nonmtr vehicle +C2896862|T037|AB|V46.4XXA|ICD10CM|Prsn brd/alit a car injured in clsn w nonmtr vehicle, init|Prsn brd/alit a car injured in clsn w nonmtr vehicle, init +C2896863|T037|AB|V46.4XXD|ICD10CM|Prsn brd/alit a car injured in clsn w nonmtr vehicle, subs|Prsn brd/alit a car injured in clsn w nonmtr vehicle, subs +C2896864|T037|PT|V46.4XXS|ICD10CM|Person boarding or alighting a car injured in collision with other nonmotor vehicle, sequela|Person boarding or alighting a car injured in collision with other nonmotor vehicle, sequela +C2896864|T037|AB|V46.4XXS|ICD10CM|Prsn brd/alit a car inj in clsn w nonmtr vehicle, sequela|Prsn brd/alit a car inj in clsn w nonmtr vehicle, sequela +C2896865|T037|AB|V46.5|ICD10CM|Car driver injured in collision w nonmtr vehicle in traf|Car driver injured in collision w nonmtr vehicle in traf +C2896865|T037|HT|V46.5|ICD10CM|Car driver injured in collision with other nonmotor vehicle in traffic accident|Car driver injured in collision with other nonmotor vehicle in traffic accident +C0496301|T037|PT|V46.5|ICD10|Car occupant injured in collision with other nonmotor vehicle, driver, traffic accident|Car occupant injured in collision with other nonmotor vehicle, driver, traffic accident +C2896866|T037|AB|V46.5XXA|ICD10CM|Car driver injured in clsn w nonmtr vehicle in traf, init|Car driver injured in clsn w nonmtr vehicle in traf, init +C2896866|T037|PT|V46.5XXA|ICD10CM|Car driver injured in collision with other nonmotor vehicle in traffic accident, initial encounter|Car driver injured in collision with other nonmotor vehicle in traffic accident, initial encounter +C2896867|T037|AB|V46.5XXD|ICD10CM|Car driver injured in clsn w nonmtr vehicle in traf, subs|Car driver injured in clsn w nonmtr vehicle in traf, subs +C2896868|T037|AB|V46.5XXS|ICD10CM|Car driver injured in clsn w nonmtr vehicle in traf, sequela|Car driver injured in clsn w nonmtr vehicle in traf, sequela +C2896868|T037|PT|V46.5XXS|ICD10CM|Car driver injured in collision with other nonmotor vehicle in traffic accident, sequela|Car driver injured in collision with other nonmotor vehicle in traffic accident, sequela +C0496302|T037|PT|V46.6|ICD10|Car occupant injured in collision with other nonmotor vehicle, passenger, traffic accident|Car occupant injured in collision with other nonmotor vehicle, passenger, traffic accident +C2896869|T037|AB|V46.6|ICD10CM|Car passenger injured in collision w nonmtr vehicle in traf|Car passenger injured in collision w nonmtr vehicle in traf +C2896869|T037|HT|V46.6|ICD10CM|Car passenger injured in collision with other nonmotor vehicle in traffic accident|Car passenger injured in collision with other nonmotor vehicle in traffic accident +C2896870|T037|AB|V46.6XXA|ICD10CM|Car passenger injured in clsn w nonmtr vehicle in traf, init|Car passenger injured in clsn w nonmtr vehicle in traf, init +C2896871|T037|AB|V46.6XXD|ICD10CM|Car passenger injured in clsn w nonmtr vehicle in traf, subs|Car passenger injured in clsn w nonmtr vehicle in traf, subs +C2896872|T037|AB|V46.6XXS|ICD10CM|Car pasngr injured in clsn w nonmtr vehicle in traf, sequela|Car pasngr injured in clsn w nonmtr vehicle in traf, sequela +C2896872|T037|PT|V46.6XXS|ICD10CM|Car passenger injured in collision with other nonmotor vehicle in traffic accident, sequela|Car passenger injured in collision with other nonmotor vehicle in traffic accident, sequela +C2896873|T037|HT|V46.7|ICD10CM|Person on outside of car injured in collision with other nonmotor vehicle in traffic accident|Person on outside of car injured in collision with other nonmotor vehicle in traffic accident +C2896873|T037|AB|V46.7|ICD10CM|Person outside car injured in clsn w nonmtr vehicle in traf|Person outside car injured in clsn w nonmtr vehicle in traf +C2896874|T037|AB|V46.7XXA|ICD10CM|Person outsd car inj in clsn w nonmtr vehicle in traf, init|Person outsd car inj in clsn w nonmtr vehicle in traf, init +C2896875|T037|AB|V46.7XXD|ICD10CM|Person outsd car inj in clsn w nonmtr vehicle in traf, subs|Person outsd car inj in clsn w nonmtr vehicle in traf, subs +C2896876|T037|AB|V46.7XXS|ICD10CM|Person outsd car inj in clsn w nonmtr vehicle in traf, sqla|Person outsd car inj in clsn w nonmtr vehicle in traf, sqla +C2896877|T037|AB|V46.9|ICD10CM|Unsp car occupant injured in clsn w nonmtr vehicle in traf|Unsp car occupant injured in clsn w nonmtr vehicle in traf +C2896877|T037|HT|V46.9|ICD10CM|Unspecified car occupant injured in collision with other nonmotor vehicle in traffic accident|Unspecified car occupant injured in collision with other nonmotor vehicle in traffic accident +C2896878|T037|AB|V46.9XXA|ICD10CM|Unsp car occ injured in clsn w nonmtr vehicle in traf, init|Unsp car occ injured in clsn w nonmtr vehicle in traf, init +C2896879|T037|AB|V46.9XXD|ICD10CM|Unsp car occ injured in clsn w nonmtr vehicle in traf, subs|Unsp car occ injured in clsn w nonmtr vehicle in traf, subs +C2896880|T037|AB|V46.9XXS|ICD10CM|Unsp car occ inj in clsn w nonmtr vehicle in traf, sequela|Unsp car occ inj in clsn w nonmtr vehicle in traf, sequela +C0476970|T037|AB|V47|ICD10CM|Car occupant injured in collision w statnry object|Car occupant injured in collision w statnry object +C0476970|T037|HT|V47|ICD10CM|Car occupant injured in collision with fixed or stationary object|Car occupant injured in collision with fixed or stationary object +C0476970|T037|HT|V47|ICD10|Car occupant injured in collision with fixed or stationary object|Car occupant injured in collision with fixed or stationary object +C2896881|T037|AB|V47.0|ICD10CM|Car driver injured in collision w statnry object nontraf|Car driver injured in collision w statnry object nontraf +C2896881|T037|HT|V47.0|ICD10CM|Car driver injured in collision with fixed or stationary object in nontraffic accident|Car driver injured in collision with fixed or stationary object in nontraffic accident +C0496305|T037|PT|V47.0|ICD10|Car occupant injured in collision with fixed or stationary object, driver, nontraffic accident|Car occupant injured in collision with fixed or stationary object, driver, nontraffic accident +C4270669|T037|AB|V47.0XXA|ICD10CM|Car driver injured in clsn with statnry object nontraf, init|Car driver injured in clsn with statnry object nontraf, init +C4270670|T037|AB|V47.0XXD|ICD10CM|Car driver injured in clsn with statnry object nontraf, subs|Car driver injured in clsn with statnry object nontraf, subs +C4270671|T037|AB|V47.0XXS|ICD10CM|Car driver inj in clsn with statnry object nontraf, sequela|Car driver inj in clsn with statnry object nontraf, sequela +C4270671|T037|PT|V47.0XXS|ICD10CM|Car driver injured in collision with fixed or stationary object in nontraffic accident, sequela|Car driver injured in collision with fixed or stationary object in nontraffic accident, sequela +C0496306|T037|PT|V47.1|ICD10|Car occupant injured in collision with fixed or stationary object, passenger, nontraffic accident|Car occupant injured in collision with fixed or stationary object, passenger, nontraffic accident +C2896890|T037|AB|V47.1|ICD10CM|Car passenger injured in collision w statnry object nontraf|Car passenger injured in collision w statnry object nontraf +C2896890|T037|HT|V47.1|ICD10CM|Car passenger injured in collision with fixed or stationary object in nontraffic accident|Car passenger injured in collision with fixed or stationary object in nontraffic accident +C4270672|T037|AB|V47.1XXA|ICD10CM|Car pasngr injured in clsn with statnry object nontraf, init|Car pasngr injured in clsn with statnry object nontraf, init +C4270673|T037|AB|V47.1XXD|ICD10CM|Car pasngr injured in clsn with statnry object nontraf, subs|Car pasngr injured in clsn with statnry object nontraf, subs +C4270674|T037|AB|V47.1XXS|ICD10CM|Car pasngr inj in clsn with statnry object nontraf, sequela|Car pasngr inj in clsn with statnry object nontraf, sequela +C4270674|T037|PT|V47.1XXS|ICD10CM|Car passenger injured in collision with fixed or stationary object in nontraffic accident, sequela|Car passenger injured in collision with fixed or stationary object in nontraffic accident, sequela +C2896899|T037|HT|V47.2|ICD10CM|Person on outside of car injured in collision with fixed or stationary object in nontraffic accident|Person on outside of car injured in collision with fixed or stationary object in nontraffic accident +C2896899|T037|AB|V47.2|ICD10CM|Person outside car injured in clsn w statnry object nontraf|Person outside car injured in clsn w statnry object nontraf +C2896900|T037|AB|V47.2XXA|ICD10CM|Person outsd car inj in clsn w statnry object nontraf, init|Person outsd car inj in clsn w statnry object nontraf, init +C2896901|T037|AB|V47.2XXD|ICD10CM|Person outsd car inj in clsn w statnry object nontraf, subs|Person outsd car inj in clsn w statnry object nontraf, subs +C2896902|T037|AB|V47.2XXS|ICD10CM|Person outsd car inj in clsn w statnry object nontraf, sqla|Person outsd car inj in clsn w statnry object nontraf, sqla +C2896903|T037|AB|V47.3|ICD10CM|Unsp car occupant injured in clsn w statnry object nontraf|Unsp car occupant injured in clsn w statnry object nontraf +C2896903|T037|HT|V47.3|ICD10CM|Unspecified car occupant injured in collision with fixed or stationary object in nontraffic accident|Unspecified car occupant injured in collision with fixed or stationary object in nontraffic accident +C4270675|T037|AB|V47.3XXA|ICD10CM|Unsp car occ inj in clsn with statnry object nontraf, init|Unsp car occ inj in clsn with statnry object nontraf, init +C4270676|T037|AB|V47.3XXD|ICD10CM|Unsp car occ inj in clsn with statnry object nontraf, subs|Unsp car occ inj in clsn with statnry object nontraf, subs +C4270677|T037|AB|V47.3XXS|ICD10CM|Unsp car occ inj in clsn with statnry object nontraf, sqla|Unsp car occ inj in clsn with statnry object nontraf, sqla +C0496309|T037|PT|V47.4|ICD10|Car occupant injured in collision with fixed or stationary object, while boarding or alighting|Car occupant injured in collision with fixed or stationary object, while boarding or alighting +C2896912|T037|HT|V47.4|ICD10CM|Person boarding or alighting a car injured in collision with fixed or stationary object|Person boarding or alighting a car injured in collision with fixed or stationary object +C2896912|T037|AB|V47.4|ICD10CM|Prsn brd/alit a car injured in collision w statnry object|Prsn brd/alit a car injured in collision w statnry object +C2896913|T037|AB|V47.4XXA|ICD10CM|Prsn brd/alit a car injured in clsn w statnry object, init|Prsn brd/alit a car injured in clsn w statnry object, init +C2896914|T037|AB|V47.4XXD|ICD10CM|Prsn brd/alit a car injured in clsn w statnry object, subs|Prsn brd/alit a car injured in clsn w statnry object, subs +C2896915|T037|PT|V47.4XXS|ICD10CM|Person boarding or alighting a car injured in collision with fixed or stationary object, sequela|Person boarding or alighting a car injured in collision with fixed or stationary object, sequela +C2896915|T037|AB|V47.4XXS|ICD10CM|Prsn brd/alit a car inj in clsn w statnry object, sequela|Prsn brd/alit a car inj in clsn w statnry object, sequela +C2896916|T037|AB|V47.5|ICD10CM|Car driver injured in collision w statnry object in traf|Car driver injured in collision w statnry object in traf +C2896916|T037|HT|V47.5|ICD10CM|Car driver injured in collision with fixed or stationary object in traffic accident|Car driver injured in collision with fixed or stationary object in traffic accident +C0496310|T037|PT|V47.5|ICD10|Car occupant injured in collision with fixed or stationary object, driver, traffic accident|Car occupant injured in collision with fixed or stationary object, driver, traffic accident +C4270678|T037|AB|V47.5XXA|ICD10CM|Car driver injured in clsn with statnry object in traf, init|Car driver injured in clsn with statnry object in traf, init +C4270679|T037|AB|V47.5XXD|ICD10CM|Car driver injured in clsn with statnry object in traf, subs|Car driver injured in clsn with statnry object in traf, subs +C4270680|T037|AB|V47.5XXS|ICD10CM|Car driver inj in clsn with statnry object in traf, sequela|Car driver inj in clsn with statnry object in traf, sequela +C4270680|T037|PT|V47.5XXS|ICD10CM|Car driver injured in collision with fixed or stationary object in traffic accident, sequela|Car driver injured in collision with fixed or stationary object in traffic accident, sequela +C0496311|T037|PT|V47.6|ICD10|Car occupant injured in collision with fixed or stationary object, passenger, traffic accident|Car occupant injured in collision with fixed or stationary object, passenger, traffic accident +C2896925|T037|AB|V47.6|ICD10CM|Car passenger injured in collision w statnry object in traf|Car passenger injured in collision w statnry object in traf +C2896925|T037|HT|V47.6|ICD10CM|Car passenger injured in collision with fixed or stationary object in traffic accident|Car passenger injured in collision with fixed or stationary object in traffic accident +C4270681|T037|AB|V47.6XXA|ICD10CM|Car pasngr injured in clsn with statnry object in traf, init|Car pasngr injured in clsn with statnry object in traf, init +C4270682|T037|AB|V47.6XXD|ICD10CM|Car pasngr injured in clsn with statnry object in traf, subs|Car pasngr injured in clsn with statnry object in traf, subs +C4270683|T037|AB|V47.6XXS|ICD10CM|Car pasngr inj in clsn with statnry object in traf, sequela|Car pasngr inj in clsn with statnry object in traf, sequela +C4270683|T037|PT|V47.6XXS|ICD10CM|Car passenger injured in collision with fixed or stationary object in traffic accident, sequela|Car passenger injured in collision with fixed or stationary object in traffic accident, sequela +C2896934|T037|HT|V47.7|ICD10CM|Person on outside of car injured in collision with fixed or stationary object in traffic accident|Person on outside of car injured in collision with fixed or stationary object in traffic accident +C2896934|T037|AB|V47.7|ICD10CM|Person outside car injured in clsn w statnry object in traf|Person outside car injured in clsn w statnry object in traf +C2896935|T037|AB|V47.7XXA|ICD10CM|Person outsd car inj in clsn w statnry object in traf, init|Person outsd car inj in clsn w statnry object in traf, init +C2896936|T037|AB|V47.7XXD|ICD10CM|Person outsd car inj in clsn w statnry object in traf, subs|Person outsd car inj in clsn w statnry object in traf, subs +C2896937|T037|AB|V47.7XXS|ICD10CM|Person outsd car inj in clsn w statnry object in traf, sqla|Person outsd car inj in clsn w statnry object in traf, sqla +C2896938|T037|AB|V47.9|ICD10CM|Unsp car occupant injured in clsn w statnry object in traf|Unsp car occupant injured in clsn w statnry object in traf +C2896938|T037|HT|V47.9|ICD10CM|Unspecified car occupant injured in collision with fixed or stationary object in traffic accident|Unspecified car occupant injured in collision with fixed or stationary object in traffic accident +C4270684|T037|AB|V47.9XXA|ICD10CM|Unsp car occ inj in clsn with statnry object in traf, init|Unsp car occ inj in clsn with statnry object in traf, init +C4270685|T037|AB|V47.9XXD|ICD10CM|Unsp car occ inj in clsn with statnry object in traf, subs|Unsp car occ inj in clsn with statnry object in traf, subs +C4270686|T037|AB|V47.9XXS|ICD10CM|Unsp car occ inj in clsn with statnry object in traf, sqla|Unsp car occ inj in clsn with statnry object in traf, sqla +C0476971|T037|HT|V48|ICD10|Car occupant injured in noncollision transport accident|Car occupant injured in noncollision transport accident +C0476971|T037|HT|V48|ICD10CM|Car occupant injured in noncollision transport accident|Car occupant injured in noncollision transport accident +C0476971|T037|AB|V48|ICD10CM|Car occupant injured in noncollision transport accident|Car occupant injured in noncollision transport accident +C4290432|T037|ET|V48|ICD10CM|overturning car NOS|overturning car NOS +C4290433|T037|ET|V48|ICD10CM|overturning car without collision|overturning car without collision +C2896949|T037|AB|V48.0|ICD10CM|Car driver injured in nonclsn transport accident nontraf|Car driver injured in nonclsn transport accident nontraf +C2896949|T037|HT|V48.0|ICD10CM|Car driver injured in noncollision transport accident in nontraffic accident|Car driver injured in noncollision transport accident in nontraffic accident +C0496314|T037|PT|V48.0|ICD10|Car occupant injured in noncollision transport accident, driver, nontraffic accident|Car occupant injured in noncollision transport accident, driver, nontraffic accident +C2896950|T037|AB|V48.0XXA|ICD10CM|Car driver injured in nonclsn trnsp accident nontraf, init|Car driver injured in nonclsn trnsp accident nontraf, init +C2896950|T037|PT|V48.0XXA|ICD10CM|Car driver injured in noncollision transport accident in nontraffic accident, initial encounter|Car driver injured in noncollision transport accident in nontraffic accident, initial encounter +C2896951|T037|AB|V48.0XXD|ICD10CM|Car driver injured in nonclsn trnsp accident nontraf, subs|Car driver injured in nonclsn trnsp accident nontraf, subs +C2896951|T037|PT|V48.0XXD|ICD10CM|Car driver injured in noncollision transport accident in nontraffic accident, subsequent encounter|Car driver injured in noncollision transport accident in nontraffic accident, subsequent encounter +C2896952|T037|AB|V48.0XXS|ICD10CM|Car driver injured in nonclsn trnsp acc nontraf, sequela|Car driver injured in nonclsn trnsp acc nontraf, sequela +C2896952|T037|PT|V48.0XXS|ICD10CM|Car driver injured in noncollision transport accident in nontraffic accident, sequela|Car driver injured in noncollision transport accident in nontraffic accident, sequela +C0496315|T037|PT|V48.1|ICD10|Car occupant injured in noncollision transport accident, passenger, nontraffic accident|Car occupant injured in noncollision transport accident, passenger, nontraffic accident +C2896953|T037|AB|V48.1|ICD10CM|Car passenger injured in nonclsn transport accident nontraf|Car passenger injured in nonclsn transport accident nontraf +C2896953|T037|HT|V48.1|ICD10CM|Car passenger injured in noncollision transport accident in nontraffic accident|Car passenger injured in noncollision transport accident in nontraffic accident +C2896954|T037|AB|V48.1XXA|ICD10CM|Car pasngr injured in nonclsn trnsp accident nontraf, init|Car pasngr injured in nonclsn trnsp accident nontraf, init +C2896954|T037|PT|V48.1XXA|ICD10CM|Car passenger injured in noncollision transport accident in nontraffic accident, initial encounter|Car passenger injured in noncollision transport accident in nontraffic accident, initial encounter +C2896955|T037|AB|V48.1XXD|ICD10CM|Car pasngr injured in nonclsn trnsp accident nontraf, subs|Car pasngr injured in nonclsn trnsp accident nontraf, subs +C2896956|T037|AB|V48.1XXS|ICD10CM|Car pasngr injured in nonclsn trnsp acc nontraf, sequela|Car pasngr injured in nonclsn trnsp acc nontraf, sequela +C2896956|T037|PT|V48.1XXS|ICD10CM|Car passenger injured in noncollision transport accident in nontraffic accident, sequela|Car passenger injured in noncollision transport accident in nontraffic accident, sequela +C2896957|T037|HT|V48.2|ICD10CM|Person on outside of car injured in noncollision transport accident in nontraffic accident|Person on outside of car injured in noncollision transport accident in nontraffic accident +C2896957|T037|AB|V48.2|ICD10CM|Person outside car injured in nonclsn trnsp accident nontraf|Person outside car injured in nonclsn trnsp accident nontraf +C2896958|T037|AB|V48.2XXA|ICD10CM|Person outside car inj in nonclsn trnsp acc nontraf, init|Person outside car inj in nonclsn trnsp acc nontraf, init +C2896959|T037|AB|V48.2XXD|ICD10CM|Person outside car inj in nonclsn trnsp acc nontraf, subs|Person outside car inj in nonclsn trnsp acc nontraf, subs +C2896960|T037|PT|V48.2XXS|ICD10CM|Person on outside of car injured in noncollision transport accident in nontraffic accident, sequela|Person on outside of car injured in noncollision transport accident in nontraffic accident, sequela +C2896960|T037|AB|V48.2XXS|ICD10CM|Person outside car inj in nonclsn trnsp acc nontraf, sequela|Person outside car inj in nonclsn trnsp acc nontraf, sequela +C2896961|T037|AB|V48.3|ICD10CM|Unsp car occupant injured in nonclsn trnsp accident nontraf|Unsp car occupant injured in nonclsn trnsp accident nontraf +C2896961|T037|HT|V48.3|ICD10CM|Unspecified car occupant injured in noncollision transport accident in nontraffic accident|Unspecified car occupant injured in noncollision transport accident in nontraffic accident +C2896962|T037|AB|V48.3XXA|ICD10CM|Unsp car occupant injured in nonclsn trnsp acc nontraf, init|Unsp car occupant injured in nonclsn trnsp acc nontraf, init +C2896963|T037|AB|V48.3XXD|ICD10CM|Unsp car occupant injured in nonclsn trnsp acc nontraf, subs|Unsp car occupant injured in nonclsn trnsp acc nontraf, subs +C2896964|T037|AB|V48.3XXS|ICD10CM|Unsp car occ injured in nonclsn trnsp acc nontraf, sequela|Unsp car occ injured in nonclsn trnsp acc nontraf, sequela +C2896964|T037|PT|V48.3XXS|ICD10CM|Unspecified car occupant injured in noncollision transport accident in nontraffic accident, sequela|Unspecified car occupant injured in noncollision transport accident in nontraffic accident, sequela +C0496318|T037|PT|V48.4|ICD10|Car occupant injured in noncollision transport accident, while boarding or alighting|Car occupant injured in noncollision transport accident, while boarding or alighting +C2896965|T037|HT|V48.4|ICD10CM|Person boarding or alighting a car injured in noncollision transport accident|Person boarding or alighting a car injured in noncollision transport accident +C2896965|T037|AB|V48.4|ICD10CM|Prsn brd/alit a car injured in nonclsn transport accident|Prsn brd/alit a car injured in nonclsn transport accident +C2896966|T037|PT|V48.4XXA|ICD10CM|Person boarding or alighting a car injured in noncollision transport accident, initial encounter|Person boarding or alighting a car injured in noncollision transport accident, initial encounter +C2896966|T037|AB|V48.4XXA|ICD10CM|Prsn brd/alit a car injured in nonclsn trnsp accident, init|Prsn brd/alit a car injured in nonclsn trnsp accident, init +C2896967|T037|PT|V48.4XXD|ICD10CM|Person boarding or alighting a car injured in noncollision transport accident, subsequent encounter|Person boarding or alighting a car injured in noncollision transport accident, subsequent encounter +C2896967|T037|AB|V48.4XXD|ICD10CM|Prsn brd/alit a car injured in nonclsn trnsp accident, subs|Prsn brd/alit a car injured in nonclsn trnsp accident, subs +C2896968|T037|PT|V48.4XXS|ICD10CM|Person boarding or alighting a car injured in noncollision transport accident, sequela|Person boarding or alighting a car injured in noncollision transport accident, sequela +C2896968|T037|AB|V48.4XXS|ICD10CM|Prsn brd/alit a car injured in nonclsn trnsp acc, sequela|Prsn brd/alit a car injured in nonclsn trnsp acc, sequela +C2896969|T037|AB|V48.5|ICD10CM|Car driver injured in nonclsn transport accident in traf|Car driver injured in nonclsn transport accident in traf +C2896969|T037|HT|V48.5|ICD10CM|Car driver injured in noncollision transport accident in traffic accident|Car driver injured in noncollision transport accident in traffic accident +C0496319|T037|PT|V48.5|ICD10|Car occupant injured in noncollision transport accident, driver, traffic accident|Car occupant injured in noncollision transport accident, driver, traffic accident +C2896970|T037|AB|V48.5XXA|ICD10CM|Car driver injured in nonclsn trnsp accident in traf, init|Car driver injured in nonclsn trnsp accident in traf, init +C2896970|T037|PT|V48.5XXA|ICD10CM|Car driver injured in noncollision transport accident in traffic accident, initial encounter|Car driver injured in noncollision transport accident in traffic accident, initial encounter +C2896971|T037|AB|V48.5XXD|ICD10CM|Car driver injured in nonclsn trnsp accident in traf, subs|Car driver injured in nonclsn trnsp accident in traf, subs +C2896971|T037|PT|V48.5XXD|ICD10CM|Car driver injured in noncollision transport accident in traffic accident, subsequent encounter|Car driver injured in noncollision transport accident in traffic accident, subsequent encounter +C2896972|T037|AB|V48.5XXS|ICD10CM|Car driver injured in nonclsn trnsp acc in traf, sequela|Car driver injured in nonclsn trnsp acc in traf, sequela +C2896972|T037|PT|V48.5XXS|ICD10CM|Car driver injured in noncollision transport accident in traffic accident, sequela|Car driver injured in noncollision transport accident in traffic accident, sequela +C0496320|T037|PT|V48.6|ICD10|Car occupant injured in noncollision transport accident, passenger, traffic accident|Car occupant injured in noncollision transport accident, passenger, traffic accident +C2896973|T037|AB|V48.6|ICD10CM|Car passenger injured in nonclsn transport accident in traf|Car passenger injured in nonclsn transport accident in traf +C2896973|T037|HT|V48.6|ICD10CM|Car passenger injured in noncollision transport accident in traffic accident|Car passenger injured in noncollision transport accident in traffic accident +C2896974|T037|AB|V48.6XXA|ICD10CM|Car pasngr injured in nonclsn trnsp accident in traf, init|Car pasngr injured in nonclsn trnsp accident in traf, init +C2896974|T037|PT|V48.6XXA|ICD10CM|Car passenger injured in noncollision transport accident in traffic accident, initial encounter|Car passenger injured in noncollision transport accident in traffic accident, initial encounter +C2896975|T037|AB|V48.6XXD|ICD10CM|Car pasngr injured in nonclsn trnsp accident in traf, subs|Car pasngr injured in nonclsn trnsp accident in traf, subs +C2896975|T037|PT|V48.6XXD|ICD10CM|Car passenger injured in noncollision transport accident in traffic accident, subsequent encounter|Car passenger injured in noncollision transport accident in traffic accident, subsequent encounter +C2896976|T037|AB|V48.6XXS|ICD10CM|Car pasngr injured in nonclsn trnsp acc in traf, sequela|Car pasngr injured in nonclsn trnsp acc in traf, sequela +C2896976|T037|PT|V48.6XXS|ICD10CM|Car passenger injured in noncollision transport accident in traffic accident, sequela|Car passenger injured in noncollision transport accident in traffic accident, sequela +C2896977|T037|HT|V48.7|ICD10CM|Person on outside of car injured in noncollision transport accident in traffic accident|Person on outside of car injured in noncollision transport accident in traffic accident +C2896977|T037|AB|V48.7|ICD10CM|Person outside car injured in nonclsn trnsp accident in traf|Person outside car injured in nonclsn trnsp accident in traf +C2896978|T037|AB|V48.7XXA|ICD10CM|Person outside car inj in nonclsn trnsp acc in traf, init|Person outside car inj in nonclsn trnsp acc in traf, init +C2896979|T037|AB|V48.7XXD|ICD10CM|Person outside car inj in nonclsn trnsp acc in traf, subs|Person outside car inj in nonclsn trnsp acc in traf, subs +C2896980|T037|PT|V48.7XXS|ICD10CM|Person on outside of car injured in noncollision transport accident in traffic accident, sequela|Person on outside of car injured in noncollision transport accident in traffic accident, sequela +C2896980|T037|AB|V48.7XXS|ICD10CM|Person outside car inj in nonclsn trnsp acc in traf, sequela|Person outside car inj in nonclsn trnsp acc in traf, sequela +C0496322|T037|PT|V48.9|ICD10|Car occupant injured in noncollision transport accident, unspecified car occupant, traffic accident|Car occupant injured in noncollision transport accident, unspecified car occupant, traffic accident +C2896981|T037|AB|V48.9|ICD10CM|Unsp car occupant injured in nonclsn trnsp accident in traf|Unsp car occupant injured in nonclsn trnsp accident in traf +C2896981|T037|HT|V48.9|ICD10CM|Unspecified car occupant injured in noncollision transport accident in traffic accident|Unspecified car occupant injured in noncollision transport accident in traffic accident +C2896982|T037|AB|V48.9XXA|ICD10CM|Unsp car occupant injured in nonclsn trnsp acc in traf, init|Unsp car occupant injured in nonclsn trnsp acc in traf, init +C2896983|T037|AB|V48.9XXD|ICD10CM|Unsp car occupant injured in nonclsn trnsp acc in traf, subs|Unsp car occupant injured in nonclsn trnsp acc in traf, subs +C2896984|T037|AB|V48.9XXS|ICD10CM|Unsp car occ injured in nonclsn trnsp acc in traf, sequela|Unsp car occ injured in nonclsn trnsp acc in traf, sequela +C2896984|T037|PT|V48.9XXS|ICD10CM|Unspecified car occupant injured in noncollision transport accident in traffic accident, sequela|Unspecified car occupant injured in noncollision transport accident in traffic accident, sequela +C0476972|T037|AB|V49|ICD10CM|Car occupant injured in other and unsp transport accidents|Car occupant injured in other and unsp transport accidents +C0476972|T037|HT|V49|ICD10CM|Car occupant injured in other and unspecified transport accidents|Car occupant injured in other and unspecified transport accidents +C0476972|T037|HT|V49|ICD10|Car occupant injured in other and unspecified transport accidents|Car occupant injured in other and unspecified transport accidents +C0476973|T037|AB|V49.0|ICD10CM|Driver injured in collision w oth and unsp mv nontraf|Driver injured in collision w oth and unsp mv nontraf +C0476973|T037|HT|V49.0|ICD10CM|Driver injured in collision with other and unspecified motor vehicles in nontraffic accident|Driver injured in collision with other and unspecified motor vehicles in nontraffic accident +C0476973|T037|PT|V49.0|ICD10|Driver injured in collision with other and unspecified motor vehicles in nontraffic accident|Driver injured in collision with other and unspecified motor vehicles in nontraffic accident +C2896985|T037|AB|V49.00|ICD10CM|Driver injured in collision w unsp mv in nontraffic accident|Driver injured in collision w unsp mv in nontraffic accident +C2896985|T037|HT|V49.00|ICD10CM|Driver injured in collision with unspecified motor vehicles in nontraffic accident|Driver injured in collision with unspecified motor vehicles in nontraffic accident +C2896986|T037|AB|V49.00XA|ICD10CM|Driver injured in collision w unsp mv nontraf, init|Driver injured in collision w unsp mv nontraf, init +C2896987|T037|AB|V49.00XD|ICD10CM|Driver injured in collision w unsp mv nontraf, subs|Driver injured in collision w unsp mv nontraf, subs +C2896988|T037|AB|V49.00XS|ICD10CM|Driver injured in collision w unsp mv nontraf, sequela|Driver injured in collision w unsp mv nontraf, sequela +C2896988|T037|PT|V49.00XS|ICD10CM|Driver injured in collision with unspecified motor vehicles in nontraffic accident, sequela|Driver injured in collision with unspecified motor vehicles in nontraffic accident, sequela +C2896989|T037|AB|V49.09|ICD10CM|Driver injured in collision w oth mv in nontraffic accident|Driver injured in collision w oth mv in nontraffic accident +C2896989|T037|HT|V49.09|ICD10CM|Driver injured in collision with other motor vehicles in nontraffic accident|Driver injured in collision with other motor vehicles in nontraffic accident +C2896990|T037|AB|V49.09XA|ICD10CM|Driver injured in collision w oth mv nontraf, init|Driver injured in collision w oth mv nontraf, init +C2896990|T037|PT|V49.09XA|ICD10CM|Driver injured in collision with other motor vehicles in nontraffic accident, initial encounter|Driver injured in collision with other motor vehicles in nontraffic accident, initial encounter +C2896991|T037|AB|V49.09XD|ICD10CM|Driver injured in collision w oth mv nontraf, subs|Driver injured in collision w oth mv nontraf, subs +C2896991|T037|PT|V49.09XD|ICD10CM|Driver injured in collision with other motor vehicles in nontraffic accident, subsequent encounter|Driver injured in collision with other motor vehicles in nontraffic accident, subsequent encounter +C2896992|T037|AB|V49.09XS|ICD10CM|Driver injured in collision w oth mv nontraf, sequela|Driver injured in collision w oth mv nontraf, sequela +C2896992|T037|PT|V49.09XS|ICD10CM|Driver injured in collision with other motor vehicles in nontraffic accident, sequela|Driver injured in collision with other motor vehicles in nontraffic accident, sequela +C0496482|T037|AB|V49.1|ICD10CM|Passenger injured in collision w oth and unsp mv nontraf|Passenger injured in collision w oth and unsp mv nontraf +C0496482|T037|HT|V49.1|ICD10CM|Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident|Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident +C0496324|T037|PT|V49.1|ICD10|Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident|Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident +C2896993|T037|AB|V49.10|ICD10CM|Passenger injured in collision w unsp mv nontraf|Passenger injured in collision w unsp mv nontraf +C2896993|T037|HT|V49.10|ICD10CM|Passenger injured in collision with unspecified motor vehicles in nontraffic accident|Passenger injured in collision with unspecified motor vehicles in nontraffic accident +C2896994|T037|AB|V49.10XA|ICD10CM|Passenger injured in collision w unsp mv nontraf, init|Passenger injured in collision w unsp mv nontraf, init +C2896995|T037|AB|V49.10XD|ICD10CM|Passenger injured in collision w unsp mv nontraf, subs|Passenger injured in collision w unsp mv nontraf, subs +C2896996|T037|AB|V49.10XS|ICD10CM|Passenger injured in collision w unsp mv nontraf, sequela|Passenger injured in collision w unsp mv nontraf, sequela +C2896996|T037|PT|V49.10XS|ICD10CM|Passenger injured in collision with unspecified motor vehicles in nontraffic accident, sequela|Passenger injured in collision with unspecified motor vehicles in nontraffic accident, sequela +C2896997|T037|AB|V49.19|ICD10CM|Passenger injured in collision w oth mv nontraf|Passenger injured in collision w oth mv nontraf +C2896997|T037|HT|V49.19|ICD10CM|Passenger injured in collision with other motor vehicles in nontraffic accident|Passenger injured in collision with other motor vehicles in nontraffic accident +C2896998|T037|AB|V49.19XA|ICD10CM|Passenger injured in collision w oth mv nontraf, init|Passenger injured in collision w oth mv nontraf, init +C2896998|T037|PT|V49.19XA|ICD10CM|Passenger injured in collision with other motor vehicles in nontraffic accident, initial encounter|Passenger injured in collision with other motor vehicles in nontraffic accident, initial encounter +C2896999|T037|AB|V49.19XD|ICD10CM|Passenger injured in collision w oth mv nontraf, subs|Passenger injured in collision w oth mv nontraf, subs +C2897000|T037|AB|V49.19XS|ICD10CM|Passenger injured in collision w oth mv nontraf, sequela|Passenger injured in collision w oth mv nontraf, sequela +C2897000|T037|PT|V49.19XS|ICD10CM|Passenger injured in collision with other motor vehicles in nontraffic accident, sequela|Passenger injured in collision with other motor vehicles in nontraffic accident, sequela +C0476975|T037|AB|V49.2|ICD10CM|Unsp car occupant injured in clsn w oth and unsp mv nontraf|Unsp car occupant injured in clsn w oth and unsp mv nontraf +C2897001|T037|ET|V49.20|ICD10CM|Car collision NOS, nontraffic|Car collision NOS, nontraffic +C2897002|T037|AB|V49.20|ICD10CM|Unsp car occupant injured in collision w unsp mv nontraf|Unsp car occupant injured in collision w unsp mv nontraf +C2897002|T037|HT|V49.20|ICD10CM|Unspecified car occupant injured in collision with unspecified motor vehicles in nontraffic accident|Unspecified car occupant injured in collision with unspecified motor vehicles in nontraffic accident +C2897003|T037|AB|V49.20XA|ICD10CM|Unsp car occupant injured in clsn w unsp mv nontraf, init|Unsp car occupant injured in clsn w unsp mv nontraf, init +C2897004|T037|AB|V49.20XD|ICD10CM|Unsp car occupant injured in clsn w unsp mv nontraf, subs|Unsp car occupant injured in clsn w unsp mv nontraf, subs +C2897005|T037|AB|V49.20XS|ICD10CM|Unsp car occupant injured in clsn w unsp mv nontraf, sequela|Unsp car occupant injured in clsn w unsp mv nontraf, sequela +C2897006|T037|AB|V49.29|ICD10CM|Unsp car occupant injured in collision w oth mv nontraf|Unsp car occupant injured in collision w oth mv nontraf +C2897006|T037|HT|V49.29|ICD10CM|Unspecified car occupant injured in collision with other motor vehicles in nontraffic accident|Unspecified car occupant injured in collision with other motor vehicles in nontraffic accident +C2897007|T037|AB|V49.29XA|ICD10CM|Unsp car occupant injured in clsn w oth mv nontraf, init|Unsp car occupant injured in clsn w oth mv nontraf, init +C2897008|T037|AB|V49.29XD|ICD10CM|Unsp car occupant injured in clsn w oth mv nontraf, subs|Unsp car occupant injured in clsn w oth mv nontraf, subs +C2897009|T037|AB|V49.29XS|ICD10CM|Unsp car occupant injured in clsn w oth mv nontraf, sequela|Unsp car occupant injured in clsn w oth mv nontraf, sequela +C2897010|T037|ET|V49.3|ICD10CM|Car accident NOS, nontraffic|Car accident NOS, nontraffic +C2897012|T037|AB|V49.3|ICD10CM|Car occupant (driver) (passenger) injured in unsp nontraf|Car occupant (driver) (passenger) injured in unsp nontraf +C2897012|T037|HT|V49.3|ICD10CM|Car occupant (driver) (passenger) injured in unspecified nontraffic accident|Car occupant (driver) (passenger) injured in unspecified nontraffic accident +C0476976|T037|PT|V49.3|ICD10|Car occupant [any] injured in unspecified nontraffic accident|Car occupant [any] injured in unspecified nontraffic accident +C2897011|T037|ET|V49.3|ICD10CM|Car occupant injured in nontraffic accident NOS|Car occupant injured in nontraffic accident NOS +C2897013|T037|PT|V49.3XXA|ICD10CM|Car occupant (driver) (passenger) injured in unspecified nontraffic accident, initial encounter|Car occupant (driver) (passenger) injured in unspecified nontraffic accident, initial encounter +C2897013|T037|AB|V49.3XXA|ICD10CM|Car occupant (driver) injured in unsp nontraf, init|Car occupant (driver) injured in unsp nontraf, init +C2897014|T037|PT|V49.3XXD|ICD10CM|Car occupant (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter|Car occupant (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter +C2897014|T037|AB|V49.3XXD|ICD10CM|Car occupant (driver) injured in unsp nontraf, subs|Car occupant (driver) injured in unsp nontraf, subs +C2897015|T037|PT|V49.3XXS|ICD10CM|Car occupant (driver) (passenger) injured in unspecified nontraffic accident, sequela|Car occupant (driver) (passenger) injured in unspecified nontraffic accident, sequela +C2897015|T037|AB|V49.3XXS|ICD10CM|Car occupant (driver) injured in unsp nontraf, sequela|Car occupant (driver) injured in unsp nontraf, sequela +C0596027|T037|AB|V49.4|ICD10CM|Driver injured in collision w oth and unsp mv in traf|Driver injured in collision w oth and unsp mv in traf +C0596027|T037|HT|V49.4|ICD10CM|Driver injured in collision with other and unspecified motor vehicles in traffic accident|Driver injured in collision with other and unspecified motor vehicles in traffic accident +C0476977|T037|PT|V49.4|ICD10|Driver injured in collision with other and unspecified motor vehicles in traffic accident|Driver injured in collision with other and unspecified motor vehicles in traffic accident +C2897016|T037|AB|V49.40|ICD10CM|Driver injured in collision w unsp mv in traffic accident|Driver injured in collision w unsp mv in traffic accident +C2897016|T037|HT|V49.40|ICD10CM|Driver injured in collision with unspecified motor vehicles in traffic accident|Driver injured in collision with unspecified motor vehicles in traffic accident +C2897017|T037|AB|V49.40XA|ICD10CM|Driver injured in collision w unsp mv in traf, init|Driver injured in collision w unsp mv in traf, init +C2897017|T037|PT|V49.40XA|ICD10CM|Driver injured in collision with unspecified motor vehicles in traffic accident, initial encounter|Driver injured in collision with unspecified motor vehicles in traffic accident, initial encounter +C2897018|T037|AB|V49.40XD|ICD10CM|Driver injured in collision w unsp mv in traf, subs|Driver injured in collision w unsp mv in traf, subs +C2897019|T037|AB|V49.40XS|ICD10CM|Driver injured in collision w unsp mv in traf, sequela|Driver injured in collision w unsp mv in traf, sequela +C2897019|T037|PT|V49.40XS|ICD10CM|Driver injured in collision with unspecified motor vehicles in traffic accident, sequela|Driver injured in collision with unspecified motor vehicles in traffic accident, sequela +C2897020|T037|AB|V49.49|ICD10CM|Driver injured in collision with oth mv in traffic accident|Driver injured in collision with oth mv in traffic accident +C2897020|T037|HT|V49.49|ICD10CM|Driver injured in collision with other motor vehicles in traffic accident|Driver injured in collision with other motor vehicles in traffic accident +C2897021|T037|AB|V49.49XA|ICD10CM|Driver injured in collision w oth mv in traf, init|Driver injured in collision w oth mv in traf, init +C2897021|T037|PT|V49.49XA|ICD10CM|Driver injured in collision with other motor vehicles in traffic accident, initial encounter|Driver injured in collision with other motor vehicles in traffic accident, initial encounter +C2897022|T037|AB|V49.49XD|ICD10CM|Driver injured in collision w oth mv in traf, subs|Driver injured in collision w oth mv in traf, subs +C2897022|T037|PT|V49.49XD|ICD10CM|Driver injured in collision with other motor vehicles in traffic accident, subsequent encounter|Driver injured in collision with other motor vehicles in traffic accident, subsequent encounter +C2897023|T037|AB|V49.49XS|ICD10CM|Driver injured in collision w oth mv in traf, sequela|Driver injured in collision w oth mv in traf, sequela +C2897023|T037|PT|V49.49XS|ICD10CM|Driver injured in collision with other motor vehicles in traffic accident, sequela|Driver injured in collision with other motor vehicles in traffic accident, sequela +C0496242|T037|AB|V49.5|ICD10CM|Passenger injured in collision w oth and unsp mv in traf|Passenger injured in collision w oth and unsp mv in traf +C0496242|T037|HT|V49.5|ICD10CM|Passenger injured in collision with other and unspecified motor vehicles in traffic accident|Passenger injured in collision with other and unspecified motor vehicles in traffic accident +C0496326|T037|PT|V49.5|ICD10|Passenger injured in collision with other and unspecified motor vehicles in traffic accident|Passenger injured in collision with other and unspecified motor vehicles in traffic accident +C2897024|T037|AB|V49.50|ICD10CM|Passenger injured in collision w unsp mv in traffic accident|Passenger injured in collision w unsp mv in traffic accident +C2897024|T037|HT|V49.50|ICD10CM|Passenger injured in collision with unspecified motor vehicles in traffic accident|Passenger injured in collision with unspecified motor vehicles in traffic accident +C2897025|T037|AB|V49.50XA|ICD10CM|Passenger injured in collision w unsp mv in traf, init|Passenger injured in collision w unsp mv in traf, init +C2897026|T037|AB|V49.50XD|ICD10CM|Passenger injured in collision w unsp mv in traf, subs|Passenger injured in collision w unsp mv in traf, subs +C2897027|T037|AB|V49.50XS|ICD10CM|Passenger injured in collision w unsp mv in traf, sequela|Passenger injured in collision w unsp mv in traf, sequela +C2897027|T037|PT|V49.50XS|ICD10CM|Passenger injured in collision with unspecified motor vehicles in traffic accident, sequela|Passenger injured in collision with unspecified motor vehicles in traffic accident, sequela +C2897028|T037|AB|V49.59|ICD10CM|Passenger injured in collision w oth mv in traffic accident|Passenger injured in collision w oth mv in traffic accident +C2897028|T037|HT|V49.59|ICD10CM|Passenger injured in collision with other motor vehicles in traffic accident|Passenger injured in collision with other motor vehicles in traffic accident +C2897029|T037|AB|V49.59XA|ICD10CM|Passenger injured in collision w oth mv in traf, init|Passenger injured in collision w oth mv in traf, init +C2897029|T037|PT|V49.59XA|ICD10CM|Passenger injured in collision with other motor vehicles in traffic accident, initial encounter|Passenger injured in collision with other motor vehicles in traffic accident, initial encounter +C2897030|T037|AB|V49.59XD|ICD10CM|Passenger injured in collision w oth mv in traf, subs|Passenger injured in collision w oth mv in traf, subs +C2897030|T037|PT|V49.59XD|ICD10CM|Passenger injured in collision with other motor vehicles in traffic accident, subsequent encounter|Passenger injured in collision with other motor vehicles in traffic accident, subsequent encounter +C2897031|T037|AB|V49.59XS|ICD10CM|Passenger injured in collision w oth mv in traf, sequela|Passenger injured in collision w oth mv in traf, sequela +C2897031|T037|PT|V49.59XS|ICD10CM|Passenger injured in collision with other motor vehicles in traffic accident, sequela|Passenger injured in collision with other motor vehicles in traffic accident, sequela +C0476979|T037|AB|V49.6|ICD10CM|Unsp car occupant injured in clsn w oth and unsp mv in traf|Unsp car occupant injured in clsn w oth and unsp mv in traf +C2897032|T037|ET|V49.60|ICD10CM|Car collision NOS (traffic)|Car collision NOS (traffic) +C2897033|T037|AB|V49.60|ICD10CM|Unsp car occupant injured in collision w unsp mv in traf|Unsp car occupant injured in collision w unsp mv in traf +C2897033|T037|HT|V49.60|ICD10CM|Unspecified car occupant injured in collision with unspecified motor vehicles in traffic accident|Unspecified car occupant injured in collision with unspecified motor vehicles in traffic accident +C2897034|T037|AB|V49.60XA|ICD10CM|Unsp car occupant injured in clsn w unsp mv in traf, init|Unsp car occupant injured in clsn w unsp mv in traf, init +C2897035|T037|AB|V49.60XD|ICD10CM|Unsp car occupant injured in clsn w unsp mv in traf, subs|Unsp car occupant injured in clsn w unsp mv in traf, subs +C2897036|T037|AB|V49.60XS|ICD10CM|Unsp car occupant injured in clsn w unsp mv in traf, sequela|Unsp car occupant injured in clsn w unsp mv in traf, sequela +C2897037|T037|AB|V49.69|ICD10CM|Unsp car occupant injured in collision w oth mv in traf|Unsp car occupant injured in collision w oth mv in traf +C2897037|T037|HT|V49.69|ICD10CM|Unspecified car occupant injured in collision with other motor vehicles in traffic accident|Unspecified car occupant injured in collision with other motor vehicles in traffic accident +C2897038|T037|AB|V49.69XA|ICD10CM|Unsp car occupant injured in clsn w oth mv in traf, init|Unsp car occupant injured in clsn w oth mv in traf, init +C2897039|T037|AB|V49.69XD|ICD10CM|Unsp car occupant injured in clsn w oth mv in traf, subs|Unsp car occupant injured in clsn w oth mv in traf, subs +C2897040|T037|AB|V49.69XS|ICD10CM|Unsp car occupant injured in clsn w oth mv in traf, sequela|Unsp car occupant injured in clsn w oth mv in traf, sequela +C2897040|T037|PT|V49.69XS|ICD10CM|Unspecified car occupant injured in collision with other motor vehicles in traffic accident, sequela|Unspecified car occupant injured in collision with other motor vehicles in traffic accident, sequela +C2897041|T037|HT|V49.8|ICD10CM|Car occupant (driver) (passenger) injured in other specified transport accidents|Car occupant (driver) (passenger) injured in other specified transport accidents +C2897041|T037|AB|V49.8|ICD10CM|Car occupant (driver) injured in oth transport accidents|Car occupant (driver) injured in oth transport accidents +C0476980|T037|PT|V49.8|ICD10|Car occupant [any] injured in other specified transport accidents|Car occupant [any] injured in other specified transport accidents +C2897042|T037|HT|V49.81|ICD10CM|Car occupant (driver) (passenger) injured in transport accident with military vehicle|Car occupant (driver) (passenger) injured in transport accident with military vehicle +C2897042|T037|AB|V49.81|ICD10CM|Car occupant injured in trnsp accident w military vehicle|Car occupant injured in trnsp accident w military vehicle +C2897043|T037|AB|V49.81XA|ICD10CM|Car occupant injured in trnsp acc w military vehicle, init|Car occupant injured in trnsp acc w military vehicle, init +C2897044|T037|AB|V49.81XD|ICD10CM|Car occupant injured in trnsp acc w military vehicle, subs|Car occupant injured in trnsp acc w military vehicle, subs +C2897045|T037|PT|V49.81XS|ICD10CM|Car occupant (driver) (passenger) injured in transport accident with military vehicle, sequela|Car occupant (driver) (passenger) injured in transport accident with military vehicle, sequela +C2897045|T037|AB|V49.81XS|ICD10CM|Car occupant injured in trnsp acc w miltry vehicle, sequela|Car occupant injured in trnsp acc w miltry vehicle, sequela +C2897041|T037|HT|V49.88|ICD10CM|Car occupant (driver) (passenger) injured in other specified transport accidents|Car occupant (driver) (passenger) injured in other specified transport accidents +C2897041|T037|AB|V49.88|ICD10CM|Car occupant (driver) injured in oth transport accidents|Car occupant (driver) injured in oth transport accidents +C2897046|T037|PT|V49.88XA|ICD10CM|Car occupant (driver) (passenger) injured in other specified transport accidents, initial encounter|Car occupant (driver) (passenger) injured in other specified transport accidents, initial encounter +C2897046|T037|AB|V49.88XA|ICD10CM|Car occupant (driver) injured in oth transport acc, init|Car occupant (driver) injured in oth transport acc, init +C2897047|T037|AB|V49.88XD|ICD10CM|Car occupant (driver) injured in oth transport acc, subs|Car occupant (driver) injured in oth transport acc, subs +C2897048|T037|PT|V49.88XS|ICD10CM|Car occupant (driver) (passenger) injured in other specified transport accidents, sequela|Car occupant (driver) (passenger) injured in other specified transport accidents, sequela +C2897048|T037|AB|V49.88XS|ICD10CM|Car occupant (driver) injured in oth transport acc, sequela|Car occupant (driver) injured in oth transport acc, sequela +C4759662|T037|ET|V49.9|ICD10CM|Car accident NOS|Car accident NOS +C2897049|T037|AB|V49.9|ICD10CM|Car occupant (driver) (passenger) injured in unsp traf|Car occupant (driver) (passenger) injured in unsp traf +C2897049|T037|HT|V49.9|ICD10CM|Car occupant (driver) (passenger) injured in unspecified traffic accident|Car occupant (driver) (passenger) injured in unspecified traffic accident +C0476981|T037|PT|V49.9|ICD10|Car occupant [any] injured in unspecified traffic accident|Car occupant [any] injured in unspecified traffic accident +C2897050|T037|AB|V49.9XXA|ICD10CM|Car occupant (driver) (passenger) injured in unsp traf, init|Car occupant (driver) (passenger) injured in unsp traf, init +C2897050|T037|PT|V49.9XXA|ICD10CM|Car occupant (driver) (passenger) injured in unspecified traffic accident, initial encounter|Car occupant (driver) (passenger) injured in unspecified traffic accident, initial encounter +C2897051|T037|AB|V49.9XXD|ICD10CM|Car occupant (driver) (passenger) injured in unsp traf, subs|Car occupant (driver) (passenger) injured in unsp traf, subs +C2897051|T037|PT|V49.9XXD|ICD10CM|Car occupant (driver) (passenger) injured in unspecified traffic accident, subsequent encounter|Car occupant (driver) (passenger) injured in unspecified traffic accident, subsequent encounter +C2897052|T037|PT|V49.9XXS|ICD10CM|Car occupant (driver) (passenger) injured in unspecified traffic accident, sequela|Car occupant (driver) (passenger) injured in unspecified traffic accident, sequela +C2897052|T037|AB|V49.9XXS|ICD10CM|Car occupant (driver) injured in unsp traf, sequela|Car occupant (driver) injured in unsp traf, sequela +C0476983|T037|HT|V50|ICD10|Occupant of pick-up truck or van injured in collision with pedestrian or animal|Occupant of pick-up truck or van injured in collision with pedestrian or animal +C0476983|T037|HT|V50|ICD10CM|Occupant of pick-up truck or van injured in collision with pedestrian or animal|Occupant of pick-up truck or van injured in collision with pedestrian or animal +C0476983|T037|AB|V50|ICD10CM|Occupant of pk-up/van injured in collision w ped/anml|Occupant of pk-up/van injured in collision w ped/anml +C4284279|T037|ET|V50-V59|ICD10CM|minibus|minibus +C4290435|T037|ET|V50-V59|ICD10CM|minivan|minivan +C0476982|T037|HT|V50-V59|ICD10CM|Occupant of pick-up truck or van injured in transport accident (V50-V59)|Occupant of pick-up truck or van injured in transport accident (V50-V59) +C4290436|T037|ET|V50-V59|ICD10CM|sport utility vehicle (SUV)|sport utility vehicle (SUV) +C4284621|T037|ET|V50-V59|ICD10CM|truck|truck +C2919108|T037|ET|V50-V59|ICD10CM|van|van +C0476982|T037|HT|V50-V59.9|ICD10|Occupant of pick-up truck or van injured in transport accident|Occupant of pick-up truck or van injured in transport accident +C2897056|T037|HT|V50.0|ICD10CM|Driver of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident|Driver of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident +C2897056|T037|AB|V50.0|ICD10CM|Driver of pk-up/van injured in collision w ped/anml nontraf|Driver of pk-up/van injured in collision w ped/anml nontraf +C2897057|T037|AB|V50.0XXA|ICD10CM|Driver of pk-up/van injured in clsn w ped/anml nontraf, init|Driver of pk-up/van injured in clsn w ped/anml nontraf, init +C2897058|T037|AB|V50.0XXD|ICD10CM|Driver of pk-up/van injured in clsn w ped/anml nontraf, subs|Driver of pk-up/van injured in clsn w ped/anml nontraf, subs +C2897059|T037|AB|V50.0XXS|ICD10CM|Driver of pk-up/van inj in clsn w ped/anml nontraf, sequela|Driver of pk-up/van inj in clsn w ped/anml nontraf, sequela +C2897060|T037|AB|V50.1|ICD10CM|Passenger in pk-up/van injured in clsn w ped/anml nontraf|Passenger in pk-up/van injured in clsn w ped/anml nontraf +C2897061|T037|AB|V50.1XXA|ICD10CM|Pasngr in pk-up/van injured in clsn w ped/anml nontraf, init|Pasngr in pk-up/van injured in clsn w ped/anml nontraf, init +C2897062|T037|AB|V50.1XXD|ICD10CM|Pasngr in pk-up/van injured in clsn w ped/anml nontraf, subs|Pasngr in pk-up/van injured in clsn w ped/anml nontraf, subs +C2897063|T037|AB|V50.1XXS|ICD10CM|Pasngr in pk-up/van inj in clsn w ped/anml nontraf, sequela|Pasngr in pk-up/van inj in clsn w ped/anml nontraf, sequela +C2897064|T037|AB|V50.2|ICD10CM|Person outside pk-up/van injured in clsn w ped/anml nontraf|Person outside pk-up/van injured in clsn w ped/anml nontraf +C2897065|T037|AB|V50.2XXA|ICD10CM|Person outsd pk-up/van inj in clsn w ped/anml nontraf, init|Person outsd pk-up/van inj in clsn w ped/anml nontraf, init +C2897066|T037|AB|V50.2XXD|ICD10CM|Person outsd pk-up/van inj in clsn w ped/anml nontraf, subs|Person outsd pk-up/van inj in clsn w ped/anml nontraf, subs +C2897067|T037|AB|V50.2XXS|ICD10CM|Person outsd pk-up/van inj in clsn w ped/anml nontraf, sqla|Person outsd pk-up/van inj in clsn w ped/anml nontraf, sqla +C2897068|T037|AB|V50.3|ICD10CM|Occup of pk-up/van injured in collision w ped/anml nontraf|Occup of pk-up/van injured in collision w ped/anml nontraf +C2897069|T037|AB|V50.3XXA|ICD10CM|Occup of pk-up/van injured in clsn w ped/anml nontraf, init|Occup of pk-up/van injured in clsn w ped/anml nontraf, init +C2897070|T037|AB|V50.3XXD|ICD10CM|Occup of pk-up/van injured in clsn w ped/anml nontraf, subs|Occup of pk-up/van injured in clsn w ped/anml nontraf, subs +C2897071|T037|AB|V50.3XXS|ICD10CM|Occup of pk-up/van inj in clsn w ped/anml nontraf, sequela|Occup of pk-up/van inj in clsn w ped/anml nontraf, sequela +C2897072|T037|HT|V50.4|ICD10CM|Person boarding or alighting a pick-up truck or van injured in collision with pedestrian or animal|Person boarding or alighting a pick-up truck or van injured in collision with pedestrian or animal +C2897072|T037|AB|V50.4|ICD10CM|Prsn brd/alit pk-up/van injured in collision w ped/anml|Prsn brd/alit pk-up/van injured in collision w ped/anml +C2897073|T037|AB|V50.4XXA|ICD10CM|Prsn brd/alit pk-up/van injured in clsn w ped/anml, init|Prsn brd/alit pk-up/van injured in clsn w ped/anml, init +C2897074|T037|AB|V50.4XXD|ICD10CM|Prsn brd/alit pk-up/van injured in clsn w ped/anml, subs|Prsn brd/alit pk-up/van injured in clsn w ped/anml, subs +C2897075|T037|AB|V50.4XXS|ICD10CM|Prsn brd/alit pk-up/van injured in clsn w ped/anml, sequela|Prsn brd/alit pk-up/van injured in clsn w ped/anml, sequela +C2897076|T037|HT|V50.5|ICD10CM|Driver of pick-up truck or van injured in collision with pedestrian or animal in traffic accident|Driver of pick-up truck or van injured in collision with pedestrian or animal in traffic accident +C2897076|T037|AB|V50.5|ICD10CM|Driver of pk-up/van injured in collision w ped/anml in traf|Driver of pk-up/van injured in collision w ped/anml in traf +C2897077|T037|AB|V50.5XXA|ICD10CM|Driver of pk-up/van injured in clsn w ped/anml in traf, init|Driver of pk-up/van injured in clsn w ped/anml in traf, init +C2897078|T037|AB|V50.5XXD|ICD10CM|Driver of pk-up/van injured in clsn w ped/anml in traf, subs|Driver of pk-up/van injured in clsn w ped/anml in traf, subs +C2897079|T037|AB|V50.5XXS|ICD10CM|Driver of pk-up/van inj in clsn w ped/anml in traf, sequela|Driver of pk-up/van inj in clsn w ped/anml in traf, sequela +C2897080|T037|HT|V50.6|ICD10CM|Passenger in pick-up truck or van injured in collision with pedestrian or animal in traffic accident|Passenger in pick-up truck or van injured in collision with pedestrian or animal in traffic accident +C2897080|T037|AB|V50.6|ICD10CM|Passenger in pk-up/van injured in clsn w ped/anml in traf|Passenger in pk-up/van injured in clsn w ped/anml in traf +C2897081|T037|AB|V50.6XXA|ICD10CM|Pasngr in pk-up/van injured in clsn w ped/anml in traf, init|Pasngr in pk-up/van injured in clsn w ped/anml in traf, init +C2897082|T037|AB|V50.6XXD|ICD10CM|Pasngr in pk-up/van injured in clsn w ped/anml in traf, subs|Pasngr in pk-up/van injured in clsn w ped/anml in traf, subs +C2897083|T037|AB|V50.6XXS|ICD10CM|Pasngr in pk-up/van inj in clsn w ped/anml in traf, sequela|Pasngr in pk-up/van inj in clsn w ped/anml in traf, sequela +C2897084|T037|AB|V50.7|ICD10CM|Person outside pk-up/van injured in clsn w ped/anml in traf|Person outside pk-up/van injured in clsn w ped/anml in traf +C2897085|T037|AB|V50.7XXA|ICD10CM|Person outsd pk-up/van inj in clsn w ped/anml in traf, init|Person outsd pk-up/van inj in clsn w ped/anml in traf, init +C2897086|T037|AB|V50.7XXD|ICD10CM|Person outsd pk-up/van inj in clsn w ped/anml in traf, subs|Person outsd pk-up/van inj in clsn w ped/anml in traf, subs +C2897087|T037|AB|V50.7XXS|ICD10CM|Person outsd pk-up/van inj in clsn w ped/anml in traf, sqla|Person outsd pk-up/van inj in clsn w ped/anml in traf, sqla +C2897088|T037|AB|V50.9|ICD10CM|Occup of pk-up/van injured in collision w ped/anml in traf|Occup of pk-up/van injured in collision w ped/anml in traf +C2897089|T037|AB|V50.9XXA|ICD10CM|Occup of pk-up/van injured in clsn w ped/anml in traf, init|Occup of pk-up/van injured in clsn w ped/anml in traf, init +C2897090|T037|AB|V50.9XXD|ICD10CM|Occup of pk-up/van injured in clsn w ped/anml in traf, subs|Occup of pk-up/van injured in clsn w ped/anml in traf, subs +C2897091|T037|AB|V50.9XXS|ICD10CM|Occup of pk-up/van inj in clsn w ped/anml in traf, sequela|Occup of pk-up/van inj in clsn w ped/anml in traf, sequela +C0476984|T037|HT|V51|ICD10|Occupant of pick-up truck or van injured in collision with pedal cycle|Occupant of pick-up truck or van injured in collision with pedal cycle +C0476984|T037|HT|V51|ICD10CM|Occupant of pick-up truck or van injured in collision with pedal cycle|Occupant of pick-up truck or van injured in collision with pedal cycle +C0476984|T037|AB|V51|ICD10CM|Occupant of pk-up/van injured in collision w pedal cycle|Occupant of pk-up/van injured in collision w pedal cycle +C2897092|T037|HT|V51.0|ICD10CM|Driver of pick-up truck or van injured in collision with pedal cycle in nontraffic accident|Driver of pick-up truck or van injured in collision with pedal cycle in nontraffic accident +C2897092|T037|AB|V51.0|ICD10CM|Driver of pk-up/van injured in collision w pedl cyc nontraf|Driver of pk-up/van injured in collision w pedl cyc nontraf +C0496336|T037|PT|V51.0|ICD10|Occupant of pick-up truck or van injured in collision with pedal cycle, driver, nontraffic accident|Occupant of pick-up truck or van injured in collision with pedal cycle, driver, nontraffic accident +C2897093|T037|AB|V51.0XXA|ICD10CM|Driver of pk-up/van injured in clsn w pedl cyc nontraf, init|Driver of pk-up/van injured in clsn w pedl cyc nontraf, init +C2897094|T037|AB|V51.0XXD|ICD10CM|Driver of pk-up/van injured in clsn w pedl cyc nontraf, subs|Driver of pk-up/van injured in clsn w pedl cyc nontraf, subs +C2897095|T037|PT|V51.0XXS|ICD10CM|Driver of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, sequela|Driver of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, sequela +C2897095|T037|AB|V51.0XXS|ICD10CM|Driver of pk-up/van inj in clsn w pedl cyc nontraf, sequela|Driver of pk-up/van inj in clsn w pedl cyc nontraf, sequela +C2897096|T037|HT|V51.1|ICD10CM|Passenger in pick-up truck or van injured in collision with pedal cycle in nontraffic accident|Passenger in pick-up truck or van injured in collision with pedal cycle in nontraffic accident +C2897096|T037|AB|V51.1|ICD10CM|Passenger in pk-up/van injured in clsn w pedl cyc nontraf|Passenger in pk-up/van injured in clsn w pedl cyc nontraf +C2897097|T037|AB|V51.1XXA|ICD10CM|Pasngr in pk-up/van injured in clsn w pedl cyc nontraf, init|Pasngr in pk-up/van injured in clsn w pedl cyc nontraf, init +C2897098|T037|AB|V51.1XXD|ICD10CM|Pasngr in pk-up/van injured in clsn w pedl cyc nontraf, subs|Pasngr in pk-up/van injured in clsn w pedl cyc nontraf, subs +C2897099|T037|AB|V51.1XXS|ICD10CM|Pasngr in pk-up/van inj in clsn w pedl cyc nontraf, sequela|Pasngr in pk-up/van inj in clsn w pedl cyc nontraf, sequela +C2897100|T037|AB|V51.2|ICD10CM|Person outside pk-up/van injured in clsn w pedl cyc nontraf|Person outside pk-up/van injured in clsn w pedl cyc nontraf +C2897101|T037|AB|V51.2XXA|ICD10CM|Person outsd pk-up/van inj in clsn w pedl cyc nontraf, init|Person outsd pk-up/van inj in clsn w pedl cyc nontraf, init +C2897102|T037|AB|V51.2XXD|ICD10CM|Person outsd pk-up/van inj in clsn w pedl cyc nontraf, subs|Person outsd pk-up/van inj in clsn w pedl cyc nontraf, subs +C2897103|T037|AB|V51.2XXS|ICD10CM|Person outsd pk-up/van inj in clsn w pedl cyc nontraf, sqla|Person outsd pk-up/van inj in clsn w pedl cyc nontraf, sqla +C2897104|T037|AB|V51.3|ICD10CM|Occup of pk-up/van injured in collision w pedl cyc nontraf|Occup of pk-up/van injured in collision w pedl cyc nontraf +C2897105|T037|AB|V51.3XXA|ICD10CM|Occup of pk-up/van injured in clsn w pedl cyc nontraf, init|Occup of pk-up/van injured in clsn w pedl cyc nontraf, init +C2897106|T037|AB|V51.3XXD|ICD10CM|Occup of pk-up/van injured in clsn w pedl cyc nontraf, subs|Occup of pk-up/van injured in clsn w pedl cyc nontraf, subs +C2897107|T037|AB|V51.3XXS|ICD10CM|Occup of pk-up/van inj in clsn w pedl cyc nontraf, sequela|Occup of pk-up/van inj in clsn w pedl cyc nontraf, sequela +C0496340|T037|PT|V51.4|ICD10|Occupant of pick-up truck or van injured in collision with pedal cycle, while boarding or alighting|Occupant of pick-up truck or van injured in collision with pedal cycle, while boarding or alighting +C2897108|T037|HT|V51.4|ICD10CM|Person boarding or alighting a pick-up truck or van injured in collision with pedal cycle|Person boarding or alighting a pick-up truck or van injured in collision with pedal cycle +C2897108|T037|AB|V51.4|ICD10CM|Prsn brd/alit pk-up/van injured in collision w pedal cycle|Prsn brd/alit pk-up/van injured in collision w pedal cycle +C2897109|T037|AB|V51.4XXA|ICD10CM|Prsn brd/alit pk-up/van injured in clsn w pedl cyc, init|Prsn brd/alit pk-up/van injured in clsn w pedl cyc, init +C2897110|T037|AB|V51.4XXD|ICD10CM|Prsn brd/alit pk-up/van injured in clsn w pedl cyc, subs|Prsn brd/alit pk-up/van injured in clsn w pedl cyc, subs +C2897111|T037|PT|V51.4XXS|ICD10CM|Person boarding or alighting a pick-up truck or van injured in collision with pedal cycle, sequela|Person boarding or alighting a pick-up truck or van injured in collision with pedal cycle, sequela +C2897111|T037|AB|V51.4XXS|ICD10CM|Prsn brd/alit pk-up/van injured in clsn w pedl cyc, sequela|Prsn brd/alit pk-up/van injured in clsn w pedl cyc, sequela +C2897112|T037|HT|V51.5|ICD10CM|Driver of pick-up truck or van injured in collision with pedal cycle in traffic accident|Driver of pick-up truck or van injured in collision with pedal cycle in traffic accident +C2897112|T037|AB|V51.5|ICD10CM|Driver of pk-up/van injured in collision w pedl cyc in traf|Driver of pk-up/van injured in collision w pedl cyc in traf +C0496341|T037|PT|V51.5|ICD10|Occupant of pick-up truck or van injured in collision with pedal cycle, driver, traffic accident|Occupant of pick-up truck or van injured in collision with pedal cycle, driver, traffic accident +C2897113|T037|AB|V51.5XXA|ICD10CM|Driver of pk-up/van injured in clsn w pedl cyc in traf, init|Driver of pk-up/van injured in clsn w pedl cyc in traf, init +C2897114|T037|AB|V51.5XXD|ICD10CM|Driver of pk-up/van injured in clsn w pedl cyc in traf, subs|Driver of pk-up/van injured in clsn w pedl cyc in traf, subs +C2897115|T037|PT|V51.5XXS|ICD10CM|Driver of pick-up truck or van injured in collision with pedal cycle in traffic accident, sequela|Driver of pick-up truck or van injured in collision with pedal cycle in traffic accident, sequela +C2897115|T037|AB|V51.5XXS|ICD10CM|Driver of pk-up/van inj in clsn w pedl cyc in traf, sequela|Driver of pk-up/van inj in clsn w pedl cyc in traf, sequela +C0496342|T037|PT|V51.6|ICD10|Occupant of pick-up truck or van injured in collision with pedal cycle, passenger, traffic accident|Occupant of pick-up truck or van injured in collision with pedal cycle, passenger, traffic accident +C2897116|T037|HT|V51.6|ICD10CM|Passenger in pick-up truck or van injured in collision with pedal cycle in traffic accident|Passenger in pick-up truck or van injured in collision with pedal cycle in traffic accident +C2897116|T037|AB|V51.6|ICD10CM|Passenger in pk-up/van injured in clsn w pedl cyc in traf|Passenger in pk-up/van injured in clsn w pedl cyc in traf +C2897117|T037|AB|V51.6XXA|ICD10CM|Pasngr in pk-up/van injured in clsn w pedl cyc in traf, init|Pasngr in pk-up/van injured in clsn w pedl cyc in traf, init +C2897118|T037|AB|V51.6XXD|ICD10CM|Pasngr in pk-up/van injured in clsn w pedl cyc in traf, subs|Pasngr in pk-up/van injured in clsn w pedl cyc in traf, subs +C2897119|T037|AB|V51.6XXS|ICD10CM|Pasngr in pk-up/van inj in clsn w pedl cyc in traf, sequela|Pasngr in pk-up/van inj in clsn w pedl cyc in traf, sequela +C2897119|T037|PT|V51.6XXS|ICD10CM|Passenger in pick-up truck or van injured in collision with pedal cycle in traffic accident, sequela|Passenger in pick-up truck or van injured in collision with pedal cycle in traffic accident, sequela +C2897120|T037|HT|V51.7|ICD10CM|Person on outside of pick-up truck or van injured in collision with pedal cycle in traffic accident|Person on outside of pick-up truck or van injured in collision with pedal cycle in traffic accident +C2897120|T037|AB|V51.7|ICD10CM|Person outside pk-up/van injured in clsn w pedl cyc in traf|Person outside pk-up/van injured in clsn w pedl cyc in traf +C2897121|T037|AB|V51.7XXA|ICD10CM|Person outsd pk-up/van inj in clsn w pedl cyc in traf, init|Person outsd pk-up/van inj in clsn w pedl cyc in traf, init +C2897122|T037|AB|V51.7XXD|ICD10CM|Person outsd pk-up/van inj in clsn w pedl cyc in traf, subs|Person outsd pk-up/van inj in clsn w pedl cyc in traf, subs +C2897123|T037|AB|V51.7XXS|ICD10CM|Person outsd pk-up/van inj in clsn w pedl cyc in traf, sqla|Person outsd pk-up/van inj in clsn w pedl cyc in traf, sqla +C2897124|T037|AB|V51.9|ICD10CM|Occup of pk-up/van injured in collision w pedl cyc in traf|Occup of pk-up/van injured in collision w pedl cyc in traf +C2897125|T037|AB|V51.9XXA|ICD10CM|Occup of pk-up/van injured in clsn w pedl cyc in traf, init|Occup of pk-up/van injured in clsn w pedl cyc in traf, init +C2897126|T037|AB|V51.9XXD|ICD10CM|Occup of pk-up/van injured in clsn w pedl cyc in traf, subs|Occup of pk-up/van injured in clsn w pedl cyc in traf, subs +C2897127|T037|AB|V51.9XXS|ICD10CM|Occup of pk-up/van inj in clsn w pedl cyc in traf, sequela|Occup of pk-up/van inj in clsn w pedl cyc in traf, sequela +C0476985|T037|HT|V52|ICD10|Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle|Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle +C0476985|T037|HT|V52|ICD10CM|Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle|Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle +C0476985|T037|AB|V52|ICD10CM|Occupant of pk-up/van injured in collision w 2/3-whl mv|Occupant of pk-up/van injured in collision w 2/3-whl mv +C2897128|T037|AB|V52.0|ICD10CM|Driver of pk-up/van injured in clsn w 2/3-whl mv nontraf|Driver of pk-up/van injured in clsn w 2/3-whl mv nontraf +C2897129|T037|AB|V52.0XXA|ICD10CM|Driver of pk-up/van inj in clsn w 2/3-whl mv nontraf, init|Driver of pk-up/van inj in clsn w 2/3-whl mv nontraf, init +C2897130|T037|AB|V52.0XXD|ICD10CM|Driver of pk-up/van inj in clsn w 2/3-whl mv nontraf, subs|Driver of pk-up/van inj in clsn w 2/3-whl mv nontraf, subs +C2897131|T037|AB|V52.0XXS|ICD10CM|Driver of pk-up/van inj in clsn w 2/3-whl mv nontraf, sqla|Driver of pk-up/van inj in clsn w 2/3-whl mv nontraf, sqla +C2897132|T037|AB|V52.1|ICD10CM|Passenger in pk-up/van injured in clsn w 2/3-whl mv nontraf|Passenger in pk-up/van injured in clsn w 2/3-whl mv nontraf +C2897133|T037|AB|V52.1XXA|ICD10CM|Pasngr in pk-up/van inj in clsn w 2/3-whl mv nontraf, init|Pasngr in pk-up/van inj in clsn w 2/3-whl mv nontraf, init +C2897134|T037|AB|V52.1XXD|ICD10CM|Pasngr in pk-up/van inj in clsn w 2/3-whl mv nontraf, subs|Pasngr in pk-up/van inj in clsn w 2/3-whl mv nontraf, subs +C2897135|T037|AB|V52.1XXS|ICD10CM|Pasngr in pk-up/van inj in clsn w 2/3-whl mv nontraf, sqla|Pasngr in pk-up/van inj in clsn w 2/3-whl mv nontraf, sqla +C2897136|T037|AB|V52.2|ICD10CM|Person outside pk-up/van inj in clsn w 2/3-whl mv nontraf|Person outside pk-up/van inj in clsn w 2/3-whl mv nontraf +C2897137|T037|AB|V52.2XXA|ICD10CM|Prsn outsd pk-up/van inj in clsn w 2/3-whl mv nontraf, init|Prsn outsd pk-up/van inj in clsn w 2/3-whl mv nontraf, init +C2897138|T037|AB|V52.2XXD|ICD10CM|Prsn outsd pk-up/van inj in clsn w 2/3-whl mv nontraf, subs|Prsn outsd pk-up/van inj in clsn w 2/3-whl mv nontraf, subs +C2897139|T037|AB|V52.2XXS|ICD10CM|Prsn outsd pk-up/van inj in clsn w 2/3-whl mv nontraf, sqla|Prsn outsd pk-up/van inj in clsn w 2/3-whl mv nontraf, sqla +C2897140|T037|AB|V52.3|ICD10CM|Occup of pk-up/van injured in collision w 2/3-whl mv nontraf|Occup of pk-up/van injured in collision w 2/3-whl mv nontraf +C2897141|T037|AB|V52.3XXA|ICD10CM|Occup of pk-up/van inj in clsn w 2/3-whl mv nontraf, init|Occup of pk-up/van inj in clsn w 2/3-whl mv nontraf, init +C2897142|T037|AB|V52.3XXD|ICD10CM|Occup of pk-up/van inj in clsn w 2/3-whl mv nontraf, subs|Occup of pk-up/van inj in clsn w 2/3-whl mv nontraf, subs +C2897143|T037|AB|V52.3XXS|ICD10CM|Occup of pk-up/van inj in clsn w 2/3-whl mv nontraf, sequela|Occup of pk-up/van inj in clsn w 2/3-whl mv nontraf, sequela +C2897144|T037|AB|V52.4|ICD10CM|Prsn brd/alit pk-up/van injured in collision w 2/3-whl mv|Prsn brd/alit pk-up/van injured in collision w 2/3-whl mv +C2897145|T037|AB|V52.4XXA|ICD10CM|Prsn brd/alit pk-up/van injured in clsn w 2/3-whl mv, init|Prsn brd/alit pk-up/van injured in clsn w 2/3-whl mv, init +C2897146|T037|AB|V52.4XXD|ICD10CM|Prsn brd/alit pk-up/van injured in clsn w 2/3-whl mv, subs|Prsn brd/alit pk-up/van injured in clsn w 2/3-whl mv, subs +C2897147|T037|AB|V52.4XXS|ICD10CM|Prsn brd/alit pk-up/van inj in clsn w 2/3-whl mv, sequela|Prsn brd/alit pk-up/van inj in clsn w 2/3-whl mv, sequela +C2897148|T037|AB|V52.5|ICD10CM|Driver of pk-up/van injured in clsn w 2/3-whl mv in traf|Driver of pk-up/van injured in clsn w 2/3-whl mv in traf +C2897149|T037|AB|V52.5XXA|ICD10CM|Driver of pk-up/van inj in clsn w 2/3-whl mv in traf, init|Driver of pk-up/van inj in clsn w 2/3-whl mv in traf, init +C2897150|T037|AB|V52.5XXD|ICD10CM|Driver of pk-up/van inj in clsn w 2/3-whl mv in traf, subs|Driver of pk-up/van inj in clsn w 2/3-whl mv in traf, subs +C2897151|T037|AB|V52.5XXS|ICD10CM|Driver of pk-up/van inj in clsn w 2/3-whl mv in traf, sqla|Driver of pk-up/van inj in clsn w 2/3-whl mv in traf, sqla +C2897152|T037|AB|V52.6|ICD10CM|Passenger in pk-up/van injured in clsn w 2/3-whl mv in traf|Passenger in pk-up/van injured in clsn w 2/3-whl mv in traf +C2897153|T037|AB|V52.6XXA|ICD10CM|Pasngr in pk-up/van inj in clsn w 2/3-whl mv in traf, init|Pasngr in pk-up/van inj in clsn w 2/3-whl mv in traf, init +C2897154|T037|AB|V52.6XXD|ICD10CM|Pasngr in pk-up/van inj in clsn w 2/3-whl mv in traf, subs|Pasngr in pk-up/van inj in clsn w 2/3-whl mv in traf, subs +C2897155|T037|AB|V52.6XXS|ICD10CM|Pasngr in pk-up/van inj in clsn w 2/3-whl mv in traf, sqla|Pasngr in pk-up/van inj in clsn w 2/3-whl mv in traf, sqla +C2897156|T037|AB|V52.7|ICD10CM|Person outside pk-up/van inj in clsn w 2/3-whl mv in traf|Person outside pk-up/van inj in clsn w 2/3-whl mv in traf +C2897157|T037|AB|V52.7XXA|ICD10CM|Prsn outsd pk-up/van inj in clsn w 2/3-whl mv in traf, init|Prsn outsd pk-up/van inj in clsn w 2/3-whl mv in traf, init +C2897158|T037|AB|V52.7XXD|ICD10CM|Prsn outsd pk-up/van inj in clsn w 2/3-whl mv in traf, subs|Prsn outsd pk-up/van inj in clsn w 2/3-whl mv in traf, subs +C2897159|T037|AB|V52.7XXS|ICD10CM|Prsn outsd pk-up/van inj in clsn w 2/3-whl mv in traf, sqla|Prsn outsd pk-up/van inj in clsn w 2/3-whl mv in traf, sqla +C2897160|T037|AB|V52.9|ICD10CM|Occup of pk-up/van injured in collision w 2/3-whl mv in traf|Occup of pk-up/van injured in collision w 2/3-whl mv in traf +C2897161|T037|AB|V52.9XXA|ICD10CM|Occup of pk-up/van inj in clsn w 2/3-whl mv in traf, init|Occup of pk-up/van inj in clsn w 2/3-whl mv in traf, init +C2897162|T037|AB|V52.9XXD|ICD10CM|Occup of pk-up/van inj in clsn w 2/3-whl mv in traf, subs|Occup of pk-up/van inj in clsn w 2/3-whl mv in traf, subs +C2897163|T037|AB|V52.9XXS|ICD10CM|Occup of pk-up/van inj in clsn w 2/3-whl mv in traf, sequela|Occup of pk-up/van inj in clsn w 2/3-whl mv in traf, sequela +C0476986|T037|HT|V53|ICD10|Occupant of pick-up truck or van injured in collision with car, pick-up truck or van|Occupant of pick-up truck or van injured in collision with car, pick-up truck or van +C0476986|T037|HT|V53|ICD10CM|Occupant of pick-up truck or van injured in collision with car, pick-up truck or van|Occupant of pick-up truck or van injured in collision with car, pick-up truck or van +C0476986|T037|AB|V53|ICD10CM|Occupant of pk-up/van injured pick-up truck, pk-up/van|Occupant of pk-up/van injured pick-up truck, pk-up/van +C2897164|T037|AB|V53.0|ICD10CM|Driver of pk-up/van injured pick-up truck, pk-up/van nontraf|Driver of pk-up/van injured pick-up truck, pk-up/van nontraf +C2897165|T037|AB|V53.0XXA|ICD10CM|Driver of pk-up/van inj pk-up truck, pk-up/van nontraf, init|Driver of pk-up/van inj pk-up truck, pk-up/van nontraf, init +C2897166|T037|AB|V53.0XXD|ICD10CM|Driver of pk-up/van inj pk-up truck, pk-up/van nontraf, subs|Driver of pk-up/van inj pk-up truck, pk-up/van nontraf, subs +C2897167|T037|AB|V53.0XXS|ICD10CM|Driver of pk-up/van inj pk-up truck, pk-up/van nontraf, sqla|Driver of pk-up/van inj pk-up truck, pk-up/van nontraf, sqla +C2897168|T037|AB|V53.1|ICD10CM|Pasngr in pk-up/van injured pick-up truck, pk-up/van nontraf|Pasngr in pk-up/van injured pick-up truck, pk-up/van nontraf +C2897169|T037|AB|V53.1XXA|ICD10CM|Pasngr in pk-up/van inj pk-up truck, pk-up/van nontraf, init|Pasngr in pk-up/van inj pk-up truck, pk-up/van nontraf, init +C2897170|T037|AB|V53.1XXD|ICD10CM|Pasngr in pk-up/van inj pk-up truck, pk-up/van nontraf, subs|Pasngr in pk-up/van inj pk-up truck, pk-up/van nontraf, subs +C2897171|T037|AB|V53.1XXS|ICD10CM|Pasngr in pk-up/van inj pk-up truck, pk-up/van nontraf, sqla|Pasngr in pk-up/van inj pk-up truck, pk-up/van nontraf, sqla +C2897172|T037|AB|V53.2|ICD10CM|Person outsd pk-up/van inj pick-up truck, pk-up/van nontraf|Person outsd pk-up/van inj pick-up truck, pk-up/van nontraf +C2897173|T037|AB|V53.2XXA|ICD10CM|Prsn outsd pk-up/van inj pk-up truck,pk-up/van nontraf, init|Prsn outsd pk-up/van inj pk-up truck,pk-up/van nontraf, init +C2897174|T037|AB|V53.2XXD|ICD10CM|Prsn outsd pk-up/van inj pk-up truck,pk-up/van nontraf, subs|Prsn outsd pk-up/van inj pk-up truck,pk-up/van nontraf, subs +C2897175|T037|AB|V53.2XXS|ICD10CM|Prsn outsd pk-up/van inj pk-up truck,pk-up/van nontraf, sqla|Prsn outsd pk-up/van inj pk-up truck,pk-up/van nontraf, sqla +C2897176|T037|AB|V53.3|ICD10CM|Occup of pk-up/van injured pick-up truck, pk-up/van nontraf|Occup of pk-up/van injured pick-up truck, pk-up/van nontraf +C2897177|T037|AB|V53.3XXA|ICD10CM|Occup of pk-up/van inj pk-up truck, pk-up/van nontraf, init|Occup of pk-up/van inj pk-up truck, pk-up/van nontraf, init +C2897178|T037|AB|V53.3XXD|ICD10CM|Occup of pk-up/van inj pk-up truck, pk-up/van nontraf, subs|Occup of pk-up/van inj pk-up truck, pk-up/van nontraf, subs +C2897179|T037|AB|V53.3XXS|ICD10CM|Occup of pk-up/van inj pk-up truck, pk-up/van nontraf, sqla|Occup of pk-up/van inj pk-up truck, pk-up/van nontraf, sqla +C2897180|T037|AB|V53.4|ICD10CM|Prsn brd/alit pk-up/van injured pick-up truck, pk-up/van|Prsn brd/alit pk-up/van injured pick-up truck, pk-up/van +C2897181|T037|AB|V53.4XXA|ICD10CM|Prsn brd/alit pk-up/van inj pick-up truck, pk-up/van, init|Prsn brd/alit pk-up/van inj pick-up truck, pk-up/van, init +C2897182|T037|AB|V53.4XXD|ICD10CM|Prsn brd/alit pk-up/van inj pick-up truck, pk-up/van, subs|Prsn brd/alit pk-up/van inj pick-up truck, pk-up/van, subs +C2897183|T037|AB|V53.4XXS|ICD10CM|Prsn brd/alit pk-up/van inj pk-up truck, pk-up/van, sequela|Prsn brd/alit pk-up/van inj pk-up truck, pk-up/van, sequela +C2897184|T037|AB|V53.5|ICD10CM|Driver of pk-up/van injured pick-up truck, pk-up/van in traf|Driver of pk-up/van injured pick-up truck, pk-up/van in traf +C2897185|T037|AB|V53.5XXA|ICD10CM|Driver of pk-up/van inj pk-up truck, pk-up/van in traf, init|Driver of pk-up/van inj pk-up truck, pk-up/van in traf, init +C2897186|T037|AB|V53.5XXD|ICD10CM|Driver of pk-up/van inj pk-up truck, pk-up/van in traf, subs|Driver of pk-up/van inj pk-up truck, pk-up/van in traf, subs +C2897187|T037|AB|V53.5XXS|ICD10CM|Driver of pk-up/van inj pk-up truck, pk-up/van in traf, sqla|Driver of pk-up/van inj pk-up truck, pk-up/van in traf, sqla +C2897188|T037|AB|V53.6|ICD10CM|Pasngr in pk-up/van injured pick-up truck, pk-up/van in traf|Pasngr in pk-up/van injured pick-up truck, pk-up/van in traf +C2897189|T037|AB|V53.6XXA|ICD10CM|Pasngr in pk-up/van inj pk-up truck, pk-up/van in traf, init|Pasngr in pk-up/van inj pk-up truck, pk-up/van in traf, init +C2897190|T037|AB|V53.6XXD|ICD10CM|Pasngr in pk-up/van inj pk-up truck, pk-up/van in traf, subs|Pasngr in pk-up/van inj pk-up truck, pk-up/van in traf, subs +C2897191|T037|AB|V53.6XXS|ICD10CM|Pasngr in pk-up/van inj pk-up truck, pk-up/van in traf, sqla|Pasngr in pk-up/van inj pk-up truck, pk-up/van in traf, sqla +C2897192|T037|AB|V53.7|ICD10CM|Person outsd pk-up/van inj pick-up truck, pk-up/van in traf|Person outsd pk-up/van inj pick-up truck, pk-up/van in traf +C2897193|T037|AB|V53.7XXA|ICD10CM|Prsn outsd pk-up/van inj pk-up truck,pk-up/van in traf, init|Prsn outsd pk-up/van inj pk-up truck,pk-up/van in traf, init +C2897194|T037|AB|V53.7XXD|ICD10CM|Prsn outsd pk-up/van inj pk-up truck,pk-up/van in traf, subs|Prsn outsd pk-up/van inj pk-up truck,pk-up/van in traf, subs +C2897195|T037|AB|V53.7XXS|ICD10CM|Prsn outsd pk-up/van inj pk-up truck,pk-up/van in traf, sqla|Prsn outsd pk-up/van inj pk-up truck,pk-up/van in traf, sqla +C2897196|T037|AB|V53.9|ICD10CM|Occup of pk-up/van injured pick-up truck, pk-up/van in traf|Occup of pk-up/van injured pick-up truck, pk-up/van in traf +C2897197|T037|AB|V53.9XXA|ICD10CM|Occup of pk-up/van inj pk-up truck, pk-up/van in traf, init|Occup of pk-up/van inj pk-up truck, pk-up/van in traf, init +C2897198|T037|AB|V53.9XXD|ICD10CM|Occup of pk-up/van inj pk-up truck, pk-up/van in traf, subs|Occup of pk-up/van inj pk-up truck, pk-up/van in traf, subs +C2897199|T037|AB|V53.9XXS|ICD10CM|Occup of pk-up/van inj pk-up truck, pk-up/van in traf, sqla|Occup of pk-up/van inj pk-up truck, pk-up/van in traf, sqla +C0476987|T037|HT|V54|ICD10|Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus|Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus +C0476987|T037|HT|V54|ICD10CM|Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus|Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus +C0476987|T037|AB|V54|ICD10CM|Occupant of pk-up/van injured in collision w hv veh|Occupant of pk-up/van injured in collision w hv veh +C2897200|T037|AB|V54.0|ICD10CM|Driver of pk-up/van injured in collision w hv veh nontraf|Driver of pk-up/van injured in collision w hv veh nontraf +C2897201|T037|AB|V54.0XXA|ICD10CM|Driver of pk-up/van injured in clsn w hv veh nontraf, init|Driver of pk-up/van injured in clsn w hv veh nontraf, init +C2897202|T037|AB|V54.0XXD|ICD10CM|Driver of pk-up/van injured in clsn w hv veh nontraf, subs|Driver of pk-up/van injured in clsn w hv veh nontraf, subs +C2897203|T037|AB|V54.0XXS|ICD10CM|Driver of pk-up/van inj in clsn w hv veh nontraf, sequela|Driver of pk-up/van inj in clsn w hv veh nontraf, sequela +C2897204|T037|AB|V54.1|ICD10CM|Passenger in pk-up/van injured in collision w hv veh nontraf|Passenger in pk-up/van injured in collision w hv veh nontraf +C2897205|T037|AB|V54.1XXA|ICD10CM|Pasngr in pk-up/van injured in clsn w hv veh nontraf, init|Pasngr in pk-up/van injured in clsn w hv veh nontraf, init +C2897206|T037|AB|V54.1XXD|ICD10CM|Pasngr in pk-up/van injured in clsn w hv veh nontraf, subs|Pasngr in pk-up/van injured in clsn w hv veh nontraf, subs +C2897207|T037|AB|V54.1XXS|ICD10CM|Pasngr in pk-up/van inj in clsn w hv veh nontraf, sequela|Pasngr in pk-up/van inj in clsn w hv veh nontraf, sequela +C2897208|T037|AB|V54.2|ICD10CM|Person outside pk-up/van injured in clsn w hv veh nontraf|Person outside pk-up/van injured in clsn w hv veh nontraf +C2897209|T037|AB|V54.2XXA|ICD10CM|Person outside pk-up/van inj in clsn w hv veh nontraf, init|Person outside pk-up/van inj in clsn w hv veh nontraf, init +C2897210|T037|AB|V54.2XXD|ICD10CM|Person outside pk-up/van inj in clsn w hv veh nontraf, subs|Person outside pk-up/van inj in clsn w hv veh nontraf, subs +C2897211|T037|AB|V54.2XXS|ICD10CM|Person outsd pk-up/van inj in clsn w hv veh nontraf, sequela|Person outsd pk-up/van inj in clsn w hv veh nontraf, sequela +C2897212|T037|AB|V54.3|ICD10CM|Occup of pk-up/van injured in collision w hv veh nontraf|Occup of pk-up/van injured in collision w hv veh nontraf +C2897213|T037|AB|V54.3XXA|ICD10CM|Occup of pk-up/van injured in clsn w hv veh nontraf, init|Occup of pk-up/van injured in clsn w hv veh nontraf, init +C2897214|T037|AB|V54.3XXD|ICD10CM|Occup of pk-up/van injured in clsn w hv veh nontraf, subs|Occup of pk-up/van injured in clsn w hv veh nontraf, subs +C2897215|T037|AB|V54.3XXS|ICD10CM|Occup of pk-up/van injured in clsn w hv veh nontraf, sequela|Occup of pk-up/van injured in clsn w hv veh nontraf, sequela +C2897216|T037|AB|V54.4|ICD10CM|Prsn brd/alit pk-up/van injured in collision w hv veh|Prsn brd/alit pk-up/van injured in collision w hv veh +C2897217|T037|AB|V54.4XXA|ICD10CM|Prsn brd/alit pk-up/van injured in collision w hv veh, init|Prsn brd/alit pk-up/van injured in collision w hv veh, init +C2897218|T037|AB|V54.4XXD|ICD10CM|Prsn brd/alit pk-up/van injured in collision w hv veh, subs|Prsn brd/alit pk-up/van injured in collision w hv veh, subs +C2897219|T037|AB|V54.4XXS|ICD10CM|Prsn brd/alit pk-up/van injured in clsn w hv veh, sequela|Prsn brd/alit pk-up/van injured in clsn w hv veh, sequela +C2897220|T037|AB|V54.5|ICD10CM|Driver of pk-up/van injured in collision w hv veh in traf|Driver of pk-up/van injured in collision w hv veh in traf +C2897221|T037|AB|V54.5XXA|ICD10CM|Driver of pk-up/van injured in clsn w hv veh in traf, init|Driver of pk-up/van injured in clsn w hv veh in traf, init +C2897222|T037|AB|V54.5XXD|ICD10CM|Driver of pk-up/van injured in clsn w hv veh in traf, subs|Driver of pk-up/van injured in clsn w hv veh in traf, subs +C2897223|T037|AB|V54.5XXS|ICD10CM|Driver of pk-up/van inj in clsn w hv veh in traf, sequela|Driver of pk-up/van inj in clsn w hv veh in traf, sequela +C2897224|T037|AB|V54.6|ICD10CM|Passenger in pk-up/van injured in collision w hv veh in traf|Passenger in pk-up/van injured in collision w hv veh in traf +C2897225|T037|AB|V54.6XXA|ICD10CM|Pasngr in pk-up/van injured in clsn w hv veh in traf, init|Pasngr in pk-up/van injured in clsn w hv veh in traf, init +C2897226|T037|AB|V54.6XXD|ICD10CM|Pasngr in pk-up/van injured in clsn w hv veh in traf, subs|Pasngr in pk-up/van injured in clsn w hv veh in traf, subs +C2897227|T037|AB|V54.6XXS|ICD10CM|Pasngr in pk-up/van inj in clsn w hv veh in traf, sequela|Pasngr in pk-up/van inj in clsn w hv veh in traf, sequela +C2897228|T037|AB|V54.7|ICD10CM|Person outside pk-up/van injured in clsn w hv veh in traf|Person outside pk-up/van injured in clsn w hv veh in traf +C2897229|T037|AB|V54.7XXA|ICD10CM|Person outside pk-up/van inj in clsn w hv veh in traf, init|Person outside pk-up/van inj in clsn w hv veh in traf, init +C2897230|T037|AB|V54.7XXD|ICD10CM|Person outside pk-up/van inj in clsn w hv veh in traf, subs|Person outside pk-up/van inj in clsn w hv veh in traf, subs +C2897231|T037|AB|V54.7XXS|ICD10CM|Person outsd pk-up/van inj in clsn w hv veh in traf, sequela|Person outsd pk-up/van inj in clsn w hv veh in traf, sequela +C2897232|T037|AB|V54.9|ICD10CM|Occup of pk-up/van injured in collision w hv veh in traf|Occup of pk-up/van injured in collision w hv veh in traf +C2897233|T037|AB|V54.9XXA|ICD10CM|Occup of pk-up/van injured in clsn w hv veh in traf, init|Occup of pk-up/van injured in clsn w hv veh in traf, init +C2897234|T037|AB|V54.9XXD|ICD10CM|Occup of pk-up/van injured in clsn w hv veh in traf, subs|Occup of pk-up/van injured in clsn w hv veh in traf, subs +C2897235|T037|AB|V54.9XXS|ICD10CM|Occup of pk-up/van injured in clsn w hv veh in traf, sequela|Occup of pk-up/van injured in clsn w hv veh in traf, sequela +C0476988|T037|HT|V55|ICD10|Occupant of pick-up truck or van injured in collision with railway train or railway vehicle|Occupant of pick-up truck or van injured in collision with railway train or railway vehicle +C0476988|T037|HT|V55|ICD10CM|Occupant of pick-up truck or van injured in collision with railway train or railway vehicle|Occupant of pick-up truck or van injured in collision with railway train or railway vehicle +C0476988|T037|AB|V55|ICD10CM|Occupant of pk-up/van injured in collision w rail trn/veh|Occupant of pk-up/van injured in collision w rail trn/veh +C2897236|T037|AB|V55.0|ICD10CM|Driver of pk-up/van injured in clsn w rail trn/veh nontraf|Driver of pk-up/van injured in clsn w rail trn/veh nontraf +C2897237|T037|AB|V55.0XXA|ICD10CM|Driver of pk-up/van inj in clsn w rail trn/veh nontraf, init|Driver of pk-up/van inj in clsn w rail trn/veh nontraf, init +C2897238|T037|AB|V55.0XXD|ICD10CM|Driver of pk-up/van inj in clsn w rail trn/veh nontraf, subs|Driver of pk-up/van inj in clsn w rail trn/veh nontraf, subs +C2897239|T037|AB|V55.0XXS|ICD10CM|Driver of pk-up/van inj in clsn w rail trn/veh nontraf, sqla|Driver of pk-up/van inj in clsn w rail trn/veh nontraf, sqla +C2897240|T037|AB|V55.1|ICD10CM|Pasngr in pk-up/van injured in clsn w rail trn/veh nontraf|Pasngr in pk-up/van injured in clsn w rail trn/veh nontraf +C2897241|T037|AB|V55.1XXA|ICD10CM|Pasngr in pk-up/van inj in clsn w rail trn/veh nontraf, init|Pasngr in pk-up/van inj in clsn w rail trn/veh nontraf, init +C2897242|T037|AB|V55.1XXD|ICD10CM|Pasngr in pk-up/van inj in clsn w rail trn/veh nontraf, subs|Pasngr in pk-up/van inj in clsn w rail trn/veh nontraf, subs +C2897243|T037|AB|V55.1XXS|ICD10CM|Pasngr in pk-up/van inj in clsn w rail trn/veh nontraf, sqla|Pasngr in pk-up/van inj in clsn w rail trn/veh nontraf, sqla +C2897244|T037|AB|V55.2|ICD10CM|Person outside pk-up/van inj in clsn w rail trn/veh nontraf|Person outside pk-up/van inj in clsn w rail trn/veh nontraf +C2897245|T037|AB|V55.2XXA|ICD10CM|Prsn outsd pk-up/van inj in clsn w rail trn/veh nontraf,init|Prsn outsd pk-up/van inj in clsn w rail trn/veh nontraf,init +C2897246|T037|AB|V55.2XXD|ICD10CM|Prsn outsd pk-up/van inj in clsn w rail trn/veh nontraf,subs|Prsn outsd pk-up/van inj in clsn w rail trn/veh nontraf,subs +C2897247|T037|AB|V55.2XXS|ICD10CM|Prsn outsd pk-up/van inj in clsn w rail trn/veh nontraf,sqla|Prsn outsd pk-up/van inj in clsn w rail trn/veh nontraf,sqla +C2897248|T037|AB|V55.3|ICD10CM|Occup of pk-up/van injured in clsn w rail trn/veh nontraf|Occup of pk-up/van injured in clsn w rail trn/veh nontraf +C2897249|T037|AB|V55.3XXA|ICD10CM|Occup of pk-up/van inj in clsn w rail trn/veh nontraf, init|Occup of pk-up/van inj in clsn w rail trn/veh nontraf, init +C2897250|T037|AB|V55.3XXD|ICD10CM|Occup of pk-up/van inj in clsn w rail trn/veh nontraf, subs|Occup of pk-up/van inj in clsn w rail trn/veh nontraf, subs +C2897251|T037|AB|V55.3XXS|ICD10CM|Occup of pk-up/van inj in clsn w rail trn/veh nontraf, sqla|Occup of pk-up/van inj in clsn w rail trn/veh nontraf, sqla +C2897252|T037|AB|V55.4|ICD10CM|Prsn brd/alit pk-up/van injured in collision w rail trn/veh|Prsn brd/alit pk-up/van injured in collision w rail trn/veh +C2897253|T037|AB|V55.4XXA|ICD10CM|Prsn brd/alit pk-up/van injured in clsn w rail trn/veh, init|Prsn brd/alit pk-up/van injured in clsn w rail trn/veh, init +C2897254|T037|AB|V55.4XXD|ICD10CM|Prsn brd/alit pk-up/van injured in clsn w rail trn/veh, subs|Prsn brd/alit pk-up/van injured in clsn w rail trn/veh, subs +C2897255|T037|AB|V55.4XXS|ICD10CM|Prsn brd/alit pk-up/van inj in clsn w rail trn/veh, sequela|Prsn brd/alit pk-up/van inj in clsn w rail trn/veh, sequela +C2897256|T037|AB|V55.5|ICD10CM|Driver of pk-up/van injured in clsn w rail trn/veh in traf|Driver of pk-up/van injured in clsn w rail trn/veh in traf +C2897257|T037|AB|V55.5XXA|ICD10CM|Driver of pk-up/van inj in clsn w rail trn/veh in traf, init|Driver of pk-up/van inj in clsn w rail trn/veh in traf, init +C2897258|T037|AB|V55.5XXD|ICD10CM|Driver of pk-up/van inj in clsn w rail trn/veh in traf, subs|Driver of pk-up/van inj in clsn w rail trn/veh in traf, subs +C2897259|T037|AB|V55.5XXS|ICD10CM|Driver of pk-up/van inj in clsn w rail trn/veh in traf, sqla|Driver of pk-up/van inj in clsn w rail trn/veh in traf, sqla +C2897260|T037|AB|V55.6|ICD10CM|Pasngr in pk-up/van injured in clsn w rail trn/veh in traf|Pasngr in pk-up/van injured in clsn w rail trn/veh in traf +C2897261|T037|AB|V55.6XXA|ICD10CM|Pasngr in pk-up/van inj in clsn w rail trn/veh in traf, init|Pasngr in pk-up/van inj in clsn w rail trn/veh in traf, init +C2897262|T037|AB|V55.6XXD|ICD10CM|Pasngr in pk-up/van inj in clsn w rail trn/veh in traf, subs|Pasngr in pk-up/van inj in clsn w rail trn/veh in traf, subs +C2897263|T037|AB|V55.6XXS|ICD10CM|Pasngr in pk-up/van inj in clsn w rail trn/veh in traf, sqla|Pasngr in pk-up/van inj in clsn w rail trn/veh in traf, sqla +C2897264|T037|AB|V55.7|ICD10CM|Person outside pk-up/van inj in clsn w rail trn/veh in traf|Person outside pk-up/van inj in clsn w rail trn/veh in traf +C2897265|T037|AB|V55.7XXA|ICD10CM|Prsn outsd pk-up/van inj in clsn w rail trn/veh in traf,init|Prsn outsd pk-up/van inj in clsn w rail trn/veh in traf,init +C2897266|T037|AB|V55.7XXD|ICD10CM|Prsn outsd pk-up/van inj in clsn w rail trn/veh in traf,subs|Prsn outsd pk-up/van inj in clsn w rail trn/veh in traf,subs +C2897267|T037|AB|V55.7XXS|ICD10CM|Prsn outsd pk-up/van inj in clsn w rail trn/veh in traf,sqla|Prsn outsd pk-up/van inj in clsn w rail trn/veh in traf,sqla +C2897268|T037|AB|V55.9|ICD10CM|Occup of pk-up/van injured in clsn w rail trn/veh in traf|Occup of pk-up/van injured in clsn w rail trn/veh in traf +C2897269|T037|AB|V55.9XXA|ICD10CM|Occup of pk-up/van inj in clsn w rail trn/veh in traf, init|Occup of pk-up/van inj in clsn w rail trn/veh in traf, init +C2897270|T037|AB|V55.9XXD|ICD10CM|Occup of pk-up/van inj in clsn w rail trn/veh in traf, subs|Occup of pk-up/van inj in clsn w rail trn/veh in traf, subs +C2897271|T037|AB|V55.9XXS|ICD10CM|Occup of pk-up/van inj in clsn w rail trn/veh in traf, sqla|Occup of pk-up/van inj in clsn w rail trn/veh in traf, sqla +C4283913|T037|ET|V56|ICD10CM|collision with animal-drawn vehicle, animal being ridden, streetcar|collision with animal-drawn vehicle, animal being ridden, streetcar +C0476989|T037|HT|V56|ICD10|Occupant of pick-up truck or van injured in collision with other nonmotor vehicle|Occupant of pick-up truck or van injured in collision with other nonmotor vehicle +C0476989|T037|HT|V56|ICD10CM|Occupant of pick-up truck or van injured in collision with other nonmotor vehicle|Occupant of pick-up truck or van injured in collision with other nonmotor vehicle +C0476989|T037|AB|V56|ICD10CM|Occupant of pk-up/van injured in collision w nonmtr vehicle|Occupant of pk-up/van injured in collision w nonmtr vehicle +C2897273|T037|AB|V56.0|ICD10CM|Driver of pk-up/van injured in clsn w nonmtr vehicle nontraf|Driver of pk-up/van injured in clsn w nonmtr vehicle nontraf +C2897274|T037|AB|V56.0XXA|ICD10CM|Driver of pk-up/van inj in clsn w nonmtr veh nontraf, init|Driver of pk-up/van inj in clsn w nonmtr veh nontraf, init +C2897275|T037|AB|V56.0XXD|ICD10CM|Driver of pk-up/van inj in clsn w nonmtr veh nontraf, subs|Driver of pk-up/van inj in clsn w nonmtr veh nontraf, subs +C2897276|T037|AB|V56.0XXS|ICD10CM|Driver of pk-up/van inj in clsn w nonmtr veh nontraf, sqla|Driver of pk-up/van inj in clsn w nonmtr veh nontraf, sqla +C2897277|T037|AB|V56.1|ICD10CM|Pasngr in pk-up/van injured in clsn w nonmtr vehicle nontraf|Pasngr in pk-up/van injured in clsn w nonmtr vehicle nontraf +C2897278|T037|AB|V56.1XXA|ICD10CM|Pasngr in pk-up/van inj in clsn w nonmtr veh nontraf, init|Pasngr in pk-up/van inj in clsn w nonmtr veh nontraf, init +C2897279|T037|AB|V56.1XXD|ICD10CM|Pasngr in pk-up/van inj in clsn w nonmtr veh nontraf, subs|Pasngr in pk-up/van inj in clsn w nonmtr veh nontraf, subs +C2897280|T037|AB|V56.1XXS|ICD10CM|Pasngr in pk-up/van inj in clsn w nonmtr veh nontraf, sqla|Pasngr in pk-up/van inj in clsn w nonmtr veh nontraf, sqla +C2897281|T037|AB|V56.2|ICD10CM|Person outsd pk-up/van inj in clsn w nonmtr vehicle nontraf|Person outsd pk-up/van inj in clsn w nonmtr vehicle nontraf +C2897282|T037|AB|V56.2XXA|ICD10CM|Prsn outsd pk-up/van inj in clsn w nonmtr veh nontraf, init|Prsn outsd pk-up/van inj in clsn w nonmtr veh nontraf, init +C2897283|T037|AB|V56.2XXD|ICD10CM|Prsn outsd pk-up/van inj in clsn w nonmtr veh nontraf, subs|Prsn outsd pk-up/van inj in clsn w nonmtr veh nontraf, subs +C2897284|T037|AB|V56.2XXS|ICD10CM|Prsn outsd pk-up/van inj in clsn w nonmtr veh nontraf, sqla|Prsn outsd pk-up/van inj in clsn w nonmtr veh nontraf, sqla +C2897285|T037|AB|V56.3|ICD10CM|Occup of pk-up/van injured in clsn w nonmtr vehicle nontraf|Occup of pk-up/van injured in clsn w nonmtr vehicle nontraf +C2897286|T037|AB|V56.3XXA|ICD10CM|Occup of pk-up/van inj in clsn w nonmtr veh nontraf, init|Occup of pk-up/van inj in clsn w nonmtr veh nontraf, init +C2897287|T037|AB|V56.3XXD|ICD10CM|Occup of pk-up/van inj in clsn w nonmtr veh nontraf, subs|Occup of pk-up/van inj in clsn w nonmtr veh nontraf, subs +C2897288|T037|AB|V56.3XXS|ICD10CM|Occup of pk-up/van inj in clsn w nonmtr veh nontraf, sqla|Occup of pk-up/van inj in clsn w nonmtr veh nontraf, sqla +C2897289|T037|HT|V56.4|ICD10CM|Person boarding or alighting a pick-up truck or van injured in collision with other nonmotor vehicle|Person boarding or alighting a pick-up truck or van injured in collision with other nonmotor vehicle +C2897289|T037|AB|V56.4|ICD10CM|Prsn brd/alit pk-up/van injured in clsn w nonmtr vehicle|Prsn brd/alit pk-up/van injured in clsn w nonmtr vehicle +C2897290|T037|AB|V56.4XXA|ICD10CM|Prsn brd/alit pk-up/van inj in clsn w nonmtr vehicle, init|Prsn brd/alit pk-up/van inj in clsn w nonmtr vehicle, init +C2897291|T037|AB|V56.4XXD|ICD10CM|Prsn brd/alit pk-up/van inj in clsn w nonmtr vehicle, subs|Prsn brd/alit pk-up/van inj in clsn w nonmtr vehicle, subs +C2897292|T037|AB|V56.4XXS|ICD10CM|Prsn brd/alit pk-up/van inj in clsn w nonmtr vehicle, sqla|Prsn brd/alit pk-up/van inj in clsn w nonmtr vehicle, sqla +C2897293|T037|HT|V56.5|ICD10CM|Driver of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident|Driver of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident +C2897293|T037|AB|V56.5|ICD10CM|Driver of pk-up/van injured in clsn w nonmtr vehicle in traf|Driver of pk-up/van injured in clsn w nonmtr vehicle in traf +C2897294|T037|AB|V56.5XXA|ICD10CM|Driver of pk-up/van inj in clsn w nonmtr veh in traf, init|Driver of pk-up/van inj in clsn w nonmtr veh in traf, init +C2897295|T037|AB|V56.5XXD|ICD10CM|Driver of pk-up/van inj in clsn w nonmtr veh in traf, subs|Driver of pk-up/van inj in clsn w nonmtr veh in traf, subs +C2897296|T037|AB|V56.5XXS|ICD10CM|Driver of pk-up/van inj in clsn w nonmtr veh in traf, sqla|Driver of pk-up/van inj in clsn w nonmtr veh in traf, sqla +C2897297|T037|AB|V56.6|ICD10CM|Pasngr in pk-up/van injured in clsn w nonmtr vehicle in traf|Pasngr in pk-up/van injured in clsn w nonmtr vehicle in traf +C2897298|T037|AB|V56.6XXA|ICD10CM|Pasngr in pk-up/van inj in clsn w nonmtr veh in traf, init|Pasngr in pk-up/van inj in clsn w nonmtr veh in traf, init +C2897299|T037|AB|V56.6XXD|ICD10CM|Pasngr in pk-up/van inj in clsn w nonmtr veh in traf, subs|Pasngr in pk-up/van inj in clsn w nonmtr veh in traf, subs +C2897300|T037|AB|V56.6XXS|ICD10CM|Pasngr in pk-up/van inj in clsn w nonmtr veh in traf, sqla|Pasngr in pk-up/van inj in clsn w nonmtr veh in traf, sqla +C2897301|T037|AB|V56.7|ICD10CM|Person outsd pk-up/van inj in clsn w nonmtr vehicle in traf|Person outsd pk-up/van inj in clsn w nonmtr vehicle in traf +C2897302|T037|AB|V56.7XXA|ICD10CM|Prsn outsd pk-up/van inj in clsn w nonmtr veh in traf, init|Prsn outsd pk-up/van inj in clsn w nonmtr veh in traf, init +C2897303|T037|AB|V56.7XXD|ICD10CM|Prsn outsd pk-up/van inj in clsn w nonmtr veh in traf, subs|Prsn outsd pk-up/van inj in clsn w nonmtr veh in traf, subs +C2897304|T037|AB|V56.7XXS|ICD10CM|Prsn outsd pk-up/van inj in clsn w nonmtr veh in traf, sqla|Prsn outsd pk-up/van inj in clsn w nonmtr veh in traf, sqla +C2897305|T037|AB|V56.9|ICD10CM|Occup of pk-up/van injured in clsn w nonmtr vehicle in traf|Occup of pk-up/van injured in clsn w nonmtr vehicle in traf +C2897306|T037|AB|V56.9XXA|ICD10CM|Occup of pk-up/van inj in clsn w nonmtr veh in traf, init|Occup of pk-up/van inj in clsn w nonmtr veh in traf, init +C2897307|T037|AB|V56.9XXD|ICD10CM|Occup of pk-up/van inj in clsn w nonmtr veh in traf, subs|Occup of pk-up/van inj in clsn w nonmtr veh in traf, subs +C2897308|T037|AB|V56.9XXS|ICD10CM|Occup of pk-up/van inj in clsn w nonmtr veh in traf, sqla|Occup of pk-up/van inj in clsn w nonmtr veh in traf, sqla +C0476991|T037|HT|V57|ICD10|Occupant of pick-up truck or van injured in collision with fixed or stationary object|Occupant of pick-up truck or van injured in collision with fixed or stationary object +C0476991|T037|HT|V57|ICD10CM|Occupant of pick-up truck or van injured in collision with fixed or stationary object|Occupant of pick-up truck or van injured in collision with fixed or stationary object +C0476991|T037|AB|V57|ICD10CM|Occupant of pk-up/van injured in collision w statnry object|Occupant of pk-up/van injured in collision w statnry object +C2897309|T037|AB|V57.0|ICD10CM|Driver of pk-up/van injured in clsn w statnry object nontraf|Driver of pk-up/van injured in clsn w statnry object nontraf +C2897310|T037|AB|V57.0XXA|ICD10CM|Drvr of pk-up/van inj in clsn w statnry object nontraf, init|Drvr of pk-up/van inj in clsn w statnry object nontraf, init +C2897311|T037|AB|V57.0XXD|ICD10CM|Drvr of pk-up/van inj in clsn w statnry object nontraf, subs|Drvr of pk-up/van inj in clsn w statnry object nontraf, subs +C2897312|T037|AB|V57.0XXS|ICD10CM|Drvr of pk-up/van inj in clsn w statnry object nontraf, sqla|Drvr of pk-up/van inj in clsn w statnry object nontraf, sqla +C2897313|T037|AB|V57.1|ICD10CM|Pasngr in pk-up/van injured in clsn w statnry object nontraf|Pasngr in pk-up/van injured in clsn w statnry object nontraf +C2897314|T037|AB|V57.1XXA|ICD10CM|Pasngr in pk-up/van inj in clsn w statnry obj nontraf, init|Pasngr in pk-up/van inj in clsn w statnry obj nontraf, init +C2897315|T037|AB|V57.1XXD|ICD10CM|Pasngr in pk-up/van inj in clsn w statnry obj nontraf, subs|Pasngr in pk-up/van inj in clsn w statnry obj nontraf, subs +C2897316|T037|AB|V57.1XXS|ICD10CM|Pasngr in pk-up/van inj in clsn w statnry obj nontraf, sqla|Pasngr in pk-up/van inj in clsn w statnry obj nontraf, sqla +C2897317|T037|AB|V57.2|ICD10CM|Person outsd pk-up/van inj in clsn w statnry object nontraf|Person outsd pk-up/van inj in clsn w statnry object nontraf +C2897318|T037|AB|V57.2XXA|ICD10CM|Prsn outsd pk-up/van inj in clsn w statnry obj nontraf, init|Prsn outsd pk-up/van inj in clsn w statnry obj nontraf, init +C2897319|T037|AB|V57.2XXD|ICD10CM|Prsn outsd pk-up/van inj in clsn w statnry obj nontraf, subs|Prsn outsd pk-up/van inj in clsn w statnry obj nontraf, subs +C2897320|T037|AB|V57.2XXS|ICD10CM|Prsn outsd pk-up/van inj in clsn w statnry obj nontraf, sqla|Prsn outsd pk-up/van inj in clsn w statnry obj nontraf, sqla +C2897321|T037|AB|V57.3|ICD10CM|Occup of pk-up/van injured in clsn w statnry object nontraf|Occup of pk-up/van injured in clsn w statnry object nontraf +C2897322|T037|AB|V57.3XXA|ICD10CM|Occup of pk-up/van inj in clsn w statnry obj nontraf, init|Occup of pk-up/van inj in clsn w statnry obj nontraf, init +C2897323|T037|AB|V57.3XXD|ICD10CM|Occup of pk-up/van inj in clsn w statnry obj nontraf, subs|Occup of pk-up/van inj in clsn w statnry obj nontraf, subs +C2897324|T037|AB|V57.3XXS|ICD10CM|Occup of pk-up/van inj in clsn w statnry obj nontraf, sqla|Occup of pk-up/van inj in clsn w statnry obj nontraf, sqla +C2897325|T037|AB|V57.4|ICD10CM|Prsn brd/alit pk-up/van injured in clsn w statnry object|Prsn brd/alit pk-up/van injured in clsn w statnry object +C2897326|T037|AB|V57.4XXA|ICD10CM|Prsn brd/alit pk-up/van inj in clsn w statnry object, init|Prsn brd/alit pk-up/van inj in clsn w statnry object, init +C2897327|T037|AB|V57.4XXD|ICD10CM|Prsn brd/alit pk-up/van inj in clsn w statnry object, subs|Prsn brd/alit pk-up/van inj in clsn w statnry object, subs +C2897328|T037|AB|V57.4XXS|ICD10CM|Prsn brd/alit pk-up/van inj in clsn w statnry object, sqla|Prsn brd/alit pk-up/van inj in clsn w statnry object, sqla +C2897329|T037|AB|V57.5|ICD10CM|Driver of pk-up/van injured in clsn w statnry object in traf|Driver of pk-up/van injured in clsn w statnry object in traf +C2897330|T037|AB|V57.5XXA|ICD10CM|Drvr of pk-up/van inj in clsn w statnry object in traf, init|Drvr of pk-up/van inj in clsn w statnry object in traf, init +C2897331|T037|AB|V57.5XXD|ICD10CM|Drvr of pk-up/van inj in clsn w statnry object in traf, subs|Drvr of pk-up/van inj in clsn w statnry object in traf, subs +C2897332|T037|AB|V57.5XXS|ICD10CM|Drvr of pk-up/van inj in clsn w statnry object in traf, sqla|Drvr of pk-up/van inj in clsn w statnry object in traf, sqla +C2897333|T037|AB|V57.6|ICD10CM|Pasngr in pk-up/van injured in clsn w statnry object in traf|Pasngr in pk-up/van injured in clsn w statnry object in traf +C2897334|T037|AB|V57.6XXA|ICD10CM|Pasngr in pk-up/van inj in clsn w statnry obj in traf, init|Pasngr in pk-up/van inj in clsn w statnry obj in traf, init +C2897335|T037|AB|V57.6XXD|ICD10CM|Pasngr in pk-up/van inj in clsn w statnry obj in traf, subs|Pasngr in pk-up/van inj in clsn w statnry obj in traf, subs +C2897336|T037|AB|V57.6XXS|ICD10CM|Pasngr in pk-up/van inj in clsn w statnry obj in traf, sqla|Pasngr in pk-up/van inj in clsn w statnry obj in traf, sqla +C2897337|T037|AB|V57.7|ICD10CM|Person outsd pk-up/van inj in clsn w statnry object in traf|Person outsd pk-up/van inj in clsn w statnry object in traf +C2897338|T037|AB|V57.7XXA|ICD10CM|Prsn outsd pk-up/van inj in clsn w statnry obj in traf, init|Prsn outsd pk-up/van inj in clsn w statnry obj in traf, init +C2897339|T037|AB|V57.7XXD|ICD10CM|Prsn outsd pk-up/van inj in clsn w statnry obj in traf, subs|Prsn outsd pk-up/van inj in clsn w statnry obj in traf, subs +C2897340|T037|AB|V57.7XXS|ICD10CM|Prsn outsd pk-up/van inj in clsn w statnry obj in traf, sqla|Prsn outsd pk-up/van inj in clsn w statnry obj in traf, sqla +C2897341|T037|AB|V57.9|ICD10CM|Occup of pk-up/van injured in clsn w statnry object in traf|Occup of pk-up/van injured in clsn w statnry object in traf +C2897342|T037|AB|V57.9XXA|ICD10CM|Occup of pk-up/van inj in clsn w statnry obj in traf, init|Occup of pk-up/van inj in clsn w statnry obj in traf, init +C2897343|T037|AB|V57.9XXD|ICD10CM|Occup of pk-up/van inj in clsn w statnry obj in traf, subs|Occup of pk-up/van inj in clsn w statnry obj in traf, subs +C2897344|T037|AB|V57.9XXS|ICD10CM|Occup of pk-up/van inj in clsn w statnry obj in traf, sqla|Occup of pk-up/van inj in clsn w statnry obj in traf, sqla +C0476993|T037|HT|V58|ICD10|Occupant of pick-up truck or van injured in noncollision transport accident|Occupant of pick-up truck or van injured in noncollision transport accident +C0476993|T037|HT|V58|ICD10CM|Occupant of pick-up truck or van injured in noncollision transport accident|Occupant of pick-up truck or van injured in noncollision transport accident +C0476993|T037|AB|V58|ICD10CM|Occupant of pk-up/van injured in nonclsn transport accident|Occupant of pk-up/van injured in nonclsn transport accident +C4290437|T037|ET|V58|ICD10CM|overturning pick-up truck or van NOS|overturning pick-up truck or van NOS +C4290438|T037|ET|V58|ICD10CM|overturning pick-up truck or van without collision|overturning pick-up truck or van without collision +C2897347|T037|HT|V58.0|ICD10CM|Driver of pick-up truck or van injured in noncollision transport accident in nontraffic accident|Driver of pick-up truck or van injured in noncollision transport accident in nontraffic accident +C2897347|T037|AB|V58.0|ICD10CM|Driver of pk-up/van injured in nonclsn trnsp acc nontraf|Driver of pk-up/van injured in nonclsn trnsp acc nontraf +C2897348|T037|AB|V58.0XXA|ICD10CM|Driver of pk-up/van inj in nonclsn trnsp acc nontraf, init|Driver of pk-up/van inj in nonclsn trnsp acc nontraf, init +C2897349|T037|AB|V58.0XXD|ICD10CM|Driver of pk-up/van inj in nonclsn trnsp acc nontraf, subs|Driver of pk-up/van inj in nonclsn trnsp acc nontraf, subs +C2897350|T037|AB|V58.0XXS|ICD10CM|Driver of pk-up/van inj in nonclsn trnsp acc nontraf, sqla|Driver of pk-up/van inj in nonclsn trnsp acc nontraf, sqla +C2897351|T037|AB|V58.1|ICD10CM|Pasngr in pk-up/van injured in nonclsn trnsp acc nontraf|Pasngr in pk-up/van injured in nonclsn trnsp acc nontraf +C2897351|T037|HT|V58.1|ICD10CM|Passenger in pick-up truck or van injured in noncollision transport accident in nontraffic accident|Passenger in pick-up truck or van injured in noncollision transport accident in nontraffic accident +C2897352|T037|AB|V58.1XXA|ICD10CM|Pasngr in pk-up/van inj in nonclsn trnsp acc nontraf, init|Pasngr in pk-up/van inj in nonclsn trnsp acc nontraf, init +C2897353|T037|AB|V58.1XXD|ICD10CM|Pasngr in pk-up/van inj in nonclsn trnsp acc nontraf, subs|Pasngr in pk-up/van inj in nonclsn trnsp acc nontraf, subs +C2897354|T037|AB|V58.1XXS|ICD10CM|Pasngr in pk-up/van inj in nonclsn trnsp acc nontraf, sqla|Pasngr in pk-up/van inj in nonclsn trnsp acc nontraf, sqla +C2897355|T037|AB|V58.2|ICD10CM|Person outside pk-up/van inj in nonclsn trnsp acc nontraf|Person outside pk-up/van inj in nonclsn trnsp acc nontraf +C2897356|T037|AB|V58.2XXA|ICD10CM|Prsn outsd pk-up/van inj in nonclsn trnsp acc nontraf, init|Prsn outsd pk-up/van inj in nonclsn trnsp acc nontraf, init +C2897357|T037|AB|V58.2XXD|ICD10CM|Prsn outsd pk-up/van inj in nonclsn trnsp acc nontraf, subs|Prsn outsd pk-up/van inj in nonclsn trnsp acc nontraf, subs +C2897358|T037|AB|V58.2XXS|ICD10CM|Prsn outsd pk-up/van inj in nonclsn trnsp acc nontraf, sqla|Prsn outsd pk-up/van inj in nonclsn trnsp acc nontraf, sqla +C2897359|T037|AB|V58.3|ICD10CM|Occup of pk-up/van injured in nonclsn trnsp accident nontraf|Occup of pk-up/van injured in nonclsn trnsp accident nontraf +C2897360|T037|AB|V58.3XXA|ICD10CM|Occup of pk-up/van inj in nonclsn trnsp acc nontraf, init|Occup of pk-up/van inj in nonclsn trnsp acc nontraf, init +C2897361|T037|AB|V58.3XXD|ICD10CM|Occup of pk-up/van inj in nonclsn trnsp acc nontraf, subs|Occup of pk-up/van inj in nonclsn trnsp acc nontraf, subs +C2897362|T037|AB|V58.3XXS|ICD10CM|Occup of pk-up/van inj in nonclsn trnsp acc nontraf, sequela|Occup of pk-up/van inj in nonclsn trnsp acc nontraf, sequela +C2897363|T037|HT|V58.4|ICD10CM|Person boarding or alighting a pick-up truck or van injured in noncollision transport accident|Person boarding or alighting a pick-up truck or van injured in noncollision transport accident +C2897363|T037|AB|V58.4|ICD10CM|Prsn brd/alit pk-up/van injured in nonclsn trnsp accident|Prsn brd/alit pk-up/van injured in nonclsn trnsp accident +C2897364|T037|AB|V58.4XXA|ICD10CM|Prsn brd/alit pk-up/van injured in nonclsn trnsp acc, init|Prsn brd/alit pk-up/van injured in nonclsn trnsp acc, init +C2897365|T037|AB|V58.4XXD|ICD10CM|Prsn brd/alit pk-up/van injured in nonclsn trnsp acc, subs|Prsn brd/alit pk-up/van injured in nonclsn trnsp acc, subs +C2897366|T037|AB|V58.4XXS|ICD10CM|Prsn brd/alit pk-up/van inj in nonclsn trnsp acc, sequela|Prsn brd/alit pk-up/van inj in nonclsn trnsp acc, sequela +C2897367|T037|HT|V58.5|ICD10CM|Driver of pick-up truck or van injured in noncollision transport accident in traffic accident|Driver of pick-up truck or van injured in noncollision transport accident in traffic accident +C2897367|T037|AB|V58.5|ICD10CM|Driver of pk-up/van injured in nonclsn trnsp acc in traf|Driver of pk-up/van injured in nonclsn trnsp acc in traf +C2897368|T037|AB|V58.5XXA|ICD10CM|Driver of pk-up/van inj in nonclsn trnsp acc in traf, init|Driver of pk-up/van inj in nonclsn trnsp acc in traf, init +C2897369|T037|AB|V58.5XXD|ICD10CM|Driver of pk-up/van inj in nonclsn trnsp acc in traf, subs|Driver of pk-up/van inj in nonclsn trnsp acc in traf, subs +C2897370|T037|AB|V58.5XXS|ICD10CM|Driver of pk-up/van inj in nonclsn trnsp acc in traf, sqla|Driver of pk-up/van inj in nonclsn trnsp acc in traf, sqla +C2897371|T037|AB|V58.6|ICD10CM|Pasngr in pk-up/van injured in nonclsn trnsp acc in traf|Pasngr in pk-up/van injured in nonclsn trnsp acc in traf +C2897371|T037|HT|V58.6|ICD10CM|Passenger in pick-up truck or van injured in noncollision transport accident in traffic accident|Passenger in pick-up truck or van injured in noncollision transport accident in traffic accident +C2897372|T037|AB|V58.6XXA|ICD10CM|Pasngr in pk-up/van inj in nonclsn trnsp acc in traf, init|Pasngr in pk-up/van inj in nonclsn trnsp acc in traf, init +C2897373|T037|AB|V58.6XXD|ICD10CM|Pasngr in pk-up/van inj in nonclsn trnsp acc in traf, subs|Pasngr in pk-up/van inj in nonclsn trnsp acc in traf, subs +C2897374|T037|AB|V58.6XXS|ICD10CM|Pasngr in pk-up/van inj in nonclsn trnsp acc in traf, sqla|Pasngr in pk-up/van inj in nonclsn trnsp acc in traf, sqla +C2897375|T037|AB|V58.7|ICD10CM|Person outside pk-up/van inj in nonclsn trnsp acc in traf|Person outside pk-up/van inj in nonclsn trnsp acc in traf +C2897376|T037|AB|V58.7XXA|ICD10CM|Prsn outsd pk-up/van inj in nonclsn trnsp acc in traf, init|Prsn outsd pk-up/van inj in nonclsn trnsp acc in traf, init +C2897377|T037|AB|V58.7XXD|ICD10CM|Prsn outsd pk-up/van inj in nonclsn trnsp acc in traf, subs|Prsn outsd pk-up/van inj in nonclsn trnsp acc in traf, subs +C2897378|T037|AB|V58.7XXS|ICD10CM|Prsn outsd pk-up/van inj in nonclsn trnsp acc in traf, sqla|Prsn outsd pk-up/van inj in nonclsn trnsp acc in traf, sqla +C2897379|T037|AB|V58.9|ICD10CM|Occup of pk-up/van injured in nonclsn trnsp accident in traf|Occup of pk-up/van injured in nonclsn trnsp accident in traf +C2897380|T037|AB|V58.9XXA|ICD10CM|Occup of pk-up/van inj in nonclsn trnsp acc in traf, init|Occup of pk-up/van inj in nonclsn trnsp acc in traf, init +C2897381|T037|AB|V58.9XXD|ICD10CM|Occup of pk-up/van inj in nonclsn trnsp acc in traf, subs|Occup of pk-up/van inj in nonclsn trnsp acc in traf, subs +C2897382|T037|AB|V58.9XXS|ICD10CM|Occup of pk-up/van inj in nonclsn trnsp acc in traf, sequela|Occup of pk-up/van inj in nonclsn trnsp acc in traf, sequela +C0476995|T037|HT|V59|ICD10|Occupant of pick-up truck or van injured in other and unspecified transport accidents|Occupant of pick-up truck or van injured in other and unspecified transport accidents +C0476995|T037|HT|V59|ICD10CM|Occupant of pick-up truck or van injured in other and unspecified transport accidents|Occupant of pick-up truck or van injured in other and unspecified transport accidents +C0476995|T037|AB|V59|ICD10CM|Occupant of pk-up/van injured in oth and unsp transport acc|Occupant of pk-up/van injured in oth and unsp transport acc +C0496408|T037|PT|V59.0|ICD10|Driver injured in collision with other and unspecified motor vehicles in nontraffic accident|Driver injured in collision with other and unspecified motor vehicles in nontraffic accident +C0496408|T037|AB|V59.0|ICD10CM|Driver of pk-up/van inj in clsn w oth and unsp mv nontraf|Driver of pk-up/van inj in clsn w oth and unsp mv nontraf +C2897383|T037|AB|V59.00|ICD10CM|Driver of pk-up/van injured in collision w unsp mv nontraf|Driver of pk-up/van injured in collision w unsp mv nontraf +C2897384|T037|AB|V59.00XA|ICD10CM|Driver of pk-up/van injured in clsn w unsp mv nontraf, init|Driver of pk-up/van injured in clsn w unsp mv nontraf, init +C2897385|T037|AB|V59.00XD|ICD10CM|Driver of pk-up/van injured in clsn w unsp mv nontraf, subs|Driver of pk-up/van injured in clsn w unsp mv nontraf, subs +C2897386|T037|AB|V59.00XS|ICD10CM|Driver of pk-up/van inj in clsn w unsp mv nontraf, sequela|Driver of pk-up/van inj in clsn w unsp mv nontraf, sequela +C2897387|T037|HT|V59.09|ICD10CM|Driver of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident|Driver of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident +C2897387|T037|AB|V59.09|ICD10CM|Driver of pk-up/van injured in collision w oth mv nontraf|Driver of pk-up/van injured in collision w oth mv nontraf +C2897388|T037|AB|V59.09XA|ICD10CM|Driver of pk-up/van injured in clsn w oth mv nontraf, init|Driver of pk-up/van injured in clsn w oth mv nontraf, init +C2897389|T037|AB|V59.09XD|ICD10CM|Driver of pk-up/van injured in clsn w oth mv nontraf, subs|Driver of pk-up/van injured in clsn w oth mv nontraf, subs +C2897390|T037|AB|V59.09XS|ICD10CM|Driver of pk-up/van inj in clsn w oth mv nontraf, sequela|Driver of pk-up/van inj in clsn w oth mv nontraf, sequela +C0496409|T037|AB|V59.1|ICD10CM|Pasngr in pk-up/van inj in clsn w oth and unsp mv nontraf|Pasngr in pk-up/van inj in clsn w oth and unsp mv nontraf +C0496409|T037|PT|V59.1|ICD10|Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident|Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident +C2897391|T037|AB|V59.10|ICD10CM|Passenger in pk-up/van injured in clsn w unsp mv nontraf|Passenger in pk-up/van injured in clsn w unsp mv nontraf +C2897392|T037|AB|V59.10XA|ICD10CM|Pasngr in pk-up/van injured in clsn w unsp mv nontraf, init|Pasngr in pk-up/van injured in clsn w unsp mv nontraf, init +C2897393|T037|AB|V59.10XD|ICD10CM|Pasngr in pk-up/van injured in clsn w unsp mv nontraf, subs|Pasngr in pk-up/van injured in clsn w unsp mv nontraf, subs +C2897394|T037|AB|V59.10XS|ICD10CM|Pasngr in pk-up/van inj in clsn w unsp mv nontraf, sequela|Pasngr in pk-up/van inj in clsn w unsp mv nontraf, sequela +C2897395|T037|AB|V59.19|ICD10CM|Passenger in pk-up/van injured in collision w oth mv nontraf|Passenger in pk-up/van injured in collision w oth mv nontraf +C2977232|T037|AB|V59.19XA|ICD10CM|Pasngr in pk-up/van injured in clsn w oth mv nontraf, init|Pasngr in pk-up/van injured in clsn w oth mv nontraf, init +C2977233|T037|AB|V59.19XD|ICD10CM|Pasngr in pk-up/van injured in clsn w oth mv nontraf, subs|Pasngr in pk-up/van injured in clsn w oth mv nontraf, subs +C2977234|T037|AB|V59.19XS|ICD10CM|Pasngr in pk-up/van inj in clsn w oth mv nontraf, sequela|Pasngr in pk-up/van inj in clsn w oth mv nontraf, sequela +C0476998|T037|AB|V59.2|ICD10CM|Occup of pk-up/van injured in clsn w oth and unsp mv nontraf|Occup of pk-up/van injured in clsn w oth and unsp mv nontraf +C2897399|T037|ET|V59.20|ICD10CM|Collision NOS involving pick-up truck or van, nontraffic|Collision NOS involving pick-up truck or van, nontraffic +C2897400|T037|AB|V59.20|ICD10CM|Occup of pk-up/van injured in collision w unsp mv nontraf|Occup of pk-up/van injured in collision w unsp mv nontraf +C2897401|T037|AB|V59.20XA|ICD10CM|Occup of pk-up/van injured in clsn w unsp mv nontraf, init|Occup of pk-up/van injured in clsn w unsp mv nontraf, init +C2897402|T037|AB|V59.20XD|ICD10CM|Occup of pk-up/van injured in clsn w unsp mv nontraf, subs|Occup of pk-up/van injured in clsn w unsp mv nontraf, subs +C2897403|T037|AB|V59.20XS|ICD10CM|Occup of pk-up/van inj in clsn w unsp mv nontraf, sequela|Occup of pk-up/van inj in clsn w unsp mv nontraf, sequela +C2897404|T037|AB|V59.29|ICD10CM|Occup of pk-up/van injured in collision w oth mv nontraf|Occup of pk-up/van injured in collision w oth mv nontraf +C2977235|T037|AB|V59.29XA|ICD10CM|Occup of pk-up/van injured in clsn w oth mv nontraf, init|Occup of pk-up/van injured in clsn w oth mv nontraf, init +C2977236|T037|AB|V59.29XD|ICD10CM|Occup of pk-up/van injured in clsn w oth mv nontraf, subs|Occup of pk-up/van injured in clsn w oth mv nontraf, subs +C2977237|T037|AB|V59.29XS|ICD10CM|Occup of pk-up/van injured in clsn w oth mv nontraf, sequela|Occup of pk-up/van injured in clsn w oth mv nontraf, sequela +C2897408|T037|ET|V59.3|ICD10CM|Accident NOS involving pick-up truck or van, nontraffic|Accident NOS involving pick-up truck or van, nontraffic +C2897410|T037|HT|V59.3|ICD10CM|Occupant (driver) (passenger) of pick-up truck or van injured in unspecified nontraffic accident|Occupant (driver) (passenger) of pick-up truck or van injured in unspecified nontraffic accident +C2897410|T037|AB|V59.3|ICD10CM|Occupant (driver) of pk-up/van injured in unsp nontraf|Occupant (driver) of pk-up/van injured in unsp nontraf +C0476999|T037|PT|V59.3|ICD10|Occupant [any] of pick-up truck or van injured in unspecified nontraffic accident|Occupant [any] of pick-up truck or van injured in unspecified nontraffic accident +C2897409|T037|ET|V59.3|ICD10CM|Occupant of pick-up truck or van injured in nontraffic accident NOS|Occupant of pick-up truck or van injured in nontraffic accident NOS +C2897411|T037|AB|V59.3XXA|ICD10CM|Occupant (driver) of pk-up/van injured in unsp nontraf, init|Occupant (driver) of pk-up/van injured in unsp nontraf, init +C2897412|T037|AB|V59.3XXD|ICD10CM|Occupant (driver) of pk-up/van injured in unsp nontraf, subs|Occupant (driver) of pk-up/van injured in unsp nontraf, subs +C2897413|T037|AB|V59.3XXS|ICD10CM|Occupant of pk-up/van injured in unsp nontraf, sequela|Occupant of pk-up/van injured in unsp nontraf, sequela +C0496410|T037|PT|V59.4|ICD10|Driver injured in collision with other and unspecified motor vehicles in traffic accident|Driver injured in collision with other and unspecified motor vehicles in traffic accident +C0496410|T037|AB|V59.4|ICD10CM|Driver of pk-up/van inj in clsn w oth and unsp mv in traf|Driver of pk-up/van inj in clsn w oth and unsp mv in traf +C2897414|T037|AB|V59.40|ICD10CM|Driver of pk-up/van injured in collision w unsp mv in traf|Driver of pk-up/van injured in collision w unsp mv in traf +C2897415|T037|AB|V59.40XA|ICD10CM|Driver of pk-up/van injured in clsn w unsp mv in traf, init|Driver of pk-up/van injured in clsn w unsp mv in traf, init +C2897416|T037|AB|V59.40XD|ICD10CM|Driver of pk-up/van injured in clsn w unsp mv in traf, subs|Driver of pk-up/van injured in clsn w unsp mv in traf, subs +C2897417|T037|AB|V59.40XS|ICD10CM|Driver of pk-up/van inj in clsn w unsp mv in traf, sequela|Driver of pk-up/van inj in clsn w unsp mv in traf, sequela +C2897418|T037|HT|V59.49|ICD10CM|Driver of pick-up truck or van injured in collision with other motor vehicles in traffic accident|Driver of pick-up truck or van injured in collision with other motor vehicles in traffic accident +C2897418|T037|AB|V59.49|ICD10CM|Driver of pk-up/van injured in collision w oth mv in traf|Driver of pk-up/van injured in collision w oth mv in traf +C2897419|T037|AB|V59.49XA|ICD10CM|Driver of pk-up/van injured in clsn w oth mv in traf, init|Driver of pk-up/van injured in clsn w oth mv in traf, init +C2897420|T037|AB|V59.49XD|ICD10CM|Driver of pk-up/van injured in clsn w oth mv in traf, subs|Driver of pk-up/van injured in clsn w oth mv in traf, subs +C2897421|T037|AB|V59.49XS|ICD10CM|Driver of pk-up/van inj in clsn w oth mv in traf, sequela|Driver of pk-up/van inj in clsn w oth mv in traf, sequela +C0496411|T037|AB|V59.5|ICD10CM|Pasngr in pk-up/van inj in clsn w oth and unsp mv in traf|Pasngr in pk-up/van inj in clsn w oth and unsp mv in traf +C0496411|T037|PT|V59.5|ICD10|Passenger injured in collision with other and unspecified motor vehicles in traffic accident|Passenger injured in collision with other and unspecified motor vehicles in traffic accident +C2897422|T037|AB|V59.50|ICD10CM|Passenger in pk-up/van injured in clsn w unsp mv in traf|Passenger in pk-up/van injured in clsn w unsp mv in traf +C2897423|T037|AB|V59.50XA|ICD10CM|Pasngr in pk-up/van injured in clsn w unsp mv in traf, init|Pasngr in pk-up/van injured in clsn w unsp mv in traf, init +C2897424|T037|AB|V59.50XD|ICD10CM|Pasngr in pk-up/van injured in clsn w unsp mv in traf, subs|Pasngr in pk-up/van injured in clsn w unsp mv in traf, subs +C2897425|T037|AB|V59.50XS|ICD10CM|Pasngr in pk-up/van inj in clsn w unsp mv in traf, sequela|Pasngr in pk-up/van inj in clsn w unsp mv in traf, sequela +C2897426|T037|HT|V59.59|ICD10CM|Passenger in pick-up truck or van injured in collision with other motor vehicles in traffic accident|Passenger in pick-up truck or van injured in collision with other motor vehicles in traffic accident +C2897426|T037|AB|V59.59|ICD10CM|Passenger in pk-up/van injured in collision w oth mv in traf|Passenger in pk-up/van injured in collision w oth mv in traf +C2897427|T037|AB|V59.59XA|ICD10CM|Pasngr in pk-up/van injured in clsn w oth mv in traf, init|Pasngr in pk-up/van injured in clsn w oth mv in traf, init +C2897428|T037|AB|V59.59XD|ICD10CM|Pasngr in pk-up/van injured in clsn w oth mv in traf, subs|Pasngr in pk-up/van injured in clsn w oth mv in traf, subs +C2897429|T037|AB|V59.59XS|ICD10CM|Pasngr in pk-up/van inj in clsn w oth mv in traf, sequela|Pasngr in pk-up/van inj in clsn w oth mv in traf, sequela +C0477002|T037|AB|V59.6|ICD10CM|Occup of pk-up/van injured in clsn w oth and unsp mv in traf|Occup of pk-up/van injured in clsn w oth and unsp mv in traf +C2897430|T037|ET|V59.60|ICD10CM|Collision NOS involving pick-up truck or van (traffic)|Collision NOS involving pick-up truck or van (traffic) +C2897431|T037|AB|V59.60|ICD10CM|Occup of pk-up/van injured in collision w unsp mv in traf|Occup of pk-up/van injured in collision w unsp mv in traf +C2897432|T037|AB|V59.60XA|ICD10CM|Occup of pk-up/van injured in clsn w unsp mv in traf, init|Occup of pk-up/van injured in clsn w unsp mv in traf, init +C2897433|T037|AB|V59.60XD|ICD10CM|Occup of pk-up/van injured in clsn w unsp mv in traf, subs|Occup of pk-up/van injured in clsn w unsp mv in traf, subs +C2897434|T037|AB|V59.60XS|ICD10CM|Occup of pk-up/van inj in clsn w unsp mv in traf, sequela|Occup of pk-up/van inj in clsn w unsp mv in traf, sequela +C2897435|T037|AB|V59.69|ICD10CM|Occup of pk-up/van injured in collision w oth mv in traf|Occup of pk-up/van injured in collision w oth mv in traf +C2897436|T037|AB|V59.69XA|ICD10CM|Occup of pk-up/van injured in clsn w oth mv in traf, init|Occup of pk-up/van injured in clsn w oth mv in traf, init +C2897437|T037|AB|V59.69XD|ICD10CM|Occup of pk-up/van injured in clsn w oth mv in traf, subs|Occup of pk-up/van injured in clsn w oth mv in traf, subs +C2897438|T037|AB|V59.69XS|ICD10CM|Occup of pk-up/van injured in clsn w oth mv in traf, sequela|Occup of pk-up/van injured in clsn w oth mv in traf, sequela +C2897439|T037|HT|V59.8|ICD10CM|Occupant (driver) (passenger) of pick-up truck or van injured in other specified transport accidents|Occupant (driver) (passenger) of pick-up truck or van injured in other specified transport accidents +C2897439|T037|AB|V59.8|ICD10CM|Occupant (driver) of pk-up/van injured in oth transport acc|Occupant (driver) of pk-up/van injured in oth transport acc +C0477003|T037|PT|V59.8|ICD10|Occupant [any] of pick-up truck or van injured in other specified transport accidents|Occupant [any] of pick-up truck or van injured in other specified transport accidents +C2897440|T037|AB|V59.81|ICD10CM|Occupant of pk-up/van injured in trnsp acc w miltry vehicle|Occupant of pk-up/van injured in trnsp acc w miltry vehicle +C2897441|T037|AB|V59.81XA|ICD10CM|Occ of pk-up/van injured in trnsp acc w miltry vehicle, init|Occ of pk-up/van injured in trnsp acc w miltry vehicle, init +C2897442|T037|AB|V59.81XD|ICD10CM|Occ of pk-up/van injured in trnsp acc w miltry vehicle, subs|Occ of pk-up/van injured in trnsp acc w miltry vehicle, subs +C2897443|T037|AB|V59.81XS|ICD10CM|Occ of pk-up/van inj in trnsp acc w miltry vehicle, sequela|Occ of pk-up/van inj in trnsp acc w miltry vehicle, sequela +C2897439|T037|HT|V59.88|ICD10CM|Occupant (driver) (passenger) of pick-up truck or van injured in other specified transport accidents|Occupant (driver) (passenger) of pick-up truck or van injured in other specified transport accidents +C2897439|T037|AB|V59.88|ICD10CM|Occupant (driver) of pk-up/van injured in oth transport acc|Occupant (driver) of pk-up/van injured in oth transport acc +C2897444|T037|AB|V59.88XA|ICD10CM|Occupant of pk-up/van injured in oth trnsp acc, init|Occupant of pk-up/van injured in oth trnsp acc, init +C2897445|T037|AB|V59.88XD|ICD10CM|Occupant of pk-up/van injured in oth trnsp acc, subs|Occupant of pk-up/van injured in oth trnsp acc, subs +C2897446|T037|AB|V59.88XS|ICD10CM|Occupant of pk-up/van injured in oth trnsp acc, sequela|Occupant of pk-up/van injured in oth trnsp acc, sequela +C2897447|T037|ET|V59.9|ICD10CM|Accident NOS involving pick-up truck or van|Accident NOS involving pick-up truck or van +C2897448|T037|HT|V59.9|ICD10CM|Occupant (driver) (passenger) of pick-up truck or van injured in unspecified traffic accident|Occupant (driver) (passenger) of pick-up truck or van injured in unspecified traffic accident +C2897448|T037|AB|V59.9|ICD10CM|Occupant (driver) of pk-up/van injured in unsp traf|Occupant (driver) of pk-up/van injured in unsp traf +C0477004|T037|PT|V59.9|ICD10|Occupant [any] of pick-up truck or van injured in unspecified traffic accident|Occupant [any] of pick-up truck or van injured in unspecified traffic accident +C2897449|T037|AB|V59.9XXA|ICD10CM|Occupant (driver) of pk-up/van injured in unsp traf, init|Occupant (driver) of pk-up/van injured in unsp traf, init +C2897450|T037|AB|V59.9XXD|ICD10CM|Occupant (driver) of pk-up/van injured in unsp traf, subs|Occupant (driver) of pk-up/van injured in unsp traf, subs +C2897451|T037|AB|V59.9XXS|ICD10CM|Occupant (driver) of pk-up/van injured in unsp traf, sequela|Occupant (driver) of pk-up/van injured in unsp traf, sequela +C0477006|T037|HT|V60|ICD10|Occupant of heavy transport vehicle injured in collision with pedestrian or animal|Occupant of heavy transport vehicle injured in collision with pedestrian or animal +C0477006|T037|HT|V60|ICD10CM|Occupant of heavy transport vehicle injured in collision with pedestrian or animal|Occupant of heavy transport vehicle injured in collision with pedestrian or animal +C0477006|T037|AB|V60|ICD10CM|Occupant of hv veh injured in collision w ped/anml|Occupant of hv veh injured in collision w ped/anml +C4290439|T037|ET|V60-V69|ICD10CM|18 wheeler|18 wheeler +C4290440|T037|ET|V60-V69|ICD10CM|armored car|armored car +C0477005|T037|HT|V60-V69|ICD10CM|Occupant of heavy transport vehicle injured in transport accident (V60-V69)|Occupant of heavy transport vehicle injured in transport accident (V60-V69) +C4290441|T037|ET|V60-V69|ICD10CM|panel truck|panel truck +C0477005|T037|HT|V60-V69.9|ICD10|Occupant of heavy transport vehicle injured in transport accident|Occupant of heavy transport vehicle injured in transport accident +C2897455|T037|AB|V60.0|ICD10CM|Driver of hv veh injured in collision w ped/anml nontraf|Driver of hv veh injured in collision w ped/anml nontraf +C2897456|T037|AB|V60.0XXA|ICD10CM|Driver of hv veh injured in clsn w ped/anml nontraf, init|Driver of hv veh injured in clsn w ped/anml nontraf, init +C2897457|T037|AB|V60.0XXD|ICD10CM|Driver of hv veh injured in clsn w ped/anml nontraf, subs|Driver of hv veh injured in clsn w ped/anml nontraf, subs +C2897458|T037|AB|V60.0XXS|ICD10CM|Driver of hv veh injured in clsn w ped/anml nontraf, sequela|Driver of hv veh injured in clsn w ped/anml nontraf, sequela +C2897459|T037|AB|V60.1|ICD10CM|Passenger in hv veh injured in collision w ped/anml nontraf|Passenger in hv veh injured in collision w ped/anml nontraf +C2897460|T037|AB|V60.1XXA|ICD10CM|Passenger in hv veh injured in clsn w ped/anml nontraf, init|Passenger in hv veh injured in clsn w ped/anml nontraf, init +C2897461|T037|AB|V60.1XXD|ICD10CM|Passenger in hv veh injured in clsn w ped/anml nontraf, subs|Passenger in hv veh injured in clsn w ped/anml nontraf, subs +C2897462|T037|AB|V60.1XXS|ICD10CM|Pasngr in hv veh injured in clsn w ped/anml nontraf, sequela|Pasngr in hv veh injured in clsn w ped/anml nontraf, sequela +C2897463|T037|AB|V60.2|ICD10CM|Person outside hv veh injured in clsn w ped/anml nontraf|Person outside hv veh injured in clsn w ped/anml nontraf +C2897464|T037|AB|V60.2XXA|ICD10CM|Person outside hv veh inj in clsn w ped/anml nontraf, init|Person outside hv veh inj in clsn w ped/anml nontraf, init +C2897465|T037|AB|V60.2XXD|ICD10CM|Person outside hv veh inj in clsn w ped/anml nontraf, subs|Person outside hv veh inj in clsn w ped/anml nontraf, subs +C2897466|T037|AB|V60.2XXS|ICD10CM|Person outsd hv veh inj in clsn w ped/anml nontraf, sequela|Person outsd hv veh inj in clsn w ped/anml nontraf, sequela +C2897467|T037|AB|V60.3|ICD10CM|Occup of hv veh injured in collision w ped/anml nontraf|Occup of hv veh injured in collision w ped/anml nontraf +C2897468|T037|AB|V60.3XXA|ICD10CM|Occup of hv veh injured in clsn w ped/anml nontraf, init|Occup of hv veh injured in clsn w ped/anml nontraf, init +C2897469|T037|AB|V60.3XXD|ICD10CM|Occup of hv veh injured in clsn w ped/anml nontraf, subs|Occup of hv veh injured in clsn w ped/anml nontraf, subs +C2897470|T037|AB|V60.3XXS|ICD10CM|Occup of hv veh injured in clsn w ped/anml nontraf, sequela|Occup of hv veh injured in clsn w ped/anml nontraf, sequela +C2897471|T037|AB|V60.4|ICD10CM|Prsn brd/alit hv veh injured in collision w ped/anml|Prsn brd/alit hv veh injured in collision w ped/anml +C2897472|T037|AB|V60.4XXA|ICD10CM|Prsn brd/alit hv veh injured in collision w ped/anml, init|Prsn brd/alit hv veh injured in collision w ped/anml, init +C2897473|T037|AB|V60.4XXD|ICD10CM|Prsn brd/alit hv veh injured in collision w ped/anml, subs|Prsn brd/alit hv veh injured in collision w ped/anml, subs +C2897474|T037|AB|V60.4XXS|ICD10CM|Prsn brd/alit hv veh injured in clsn w ped/anml, sequela|Prsn brd/alit hv veh injured in clsn w ped/anml, sequela +C2897475|T037|HT|V60.5|ICD10CM|Driver of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident|Driver of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident +C2897475|T037|AB|V60.5|ICD10CM|Driver of hv veh injured in collision w ped/anml in traf|Driver of hv veh injured in collision w ped/anml in traf +C2897476|T037|AB|V60.5XXA|ICD10CM|Driver of hv veh injured in clsn w ped/anml in traf, init|Driver of hv veh injured in clsn w ped/anml in traf, init +C2897477|T037|AB|V60.5XXD|ICD10CM|Driver of hv veh injured in clsn w ped/anml in traf, subs|Driver of hv veh injured in clsn w ped/anml in traf, subs +C2897478|T037|AB|V60.5XXS|ICD10CM|Driver of hv veh injured in clsn w ped/anml in traf, sequela|Driver of hv veh injured in clsn w ped/anml in traf, sequela +C2897479|T037|AB|V60.6|ICD10CM|Passenger in hv veh injured in collision w ped/anml in traf|Passenger in hv veh injured in collision w ped/anml in traf +C2897480|T037|AB|V60.6XXA|ICD10CM|Passenger in hv veh injured in clsn w ped/anml in traf, init|Passenger in hv veh injured in clsn w ped/anml in traf, init +C2897481|T037|AB|V60.6XXD|ICD10CM|Passenger in hv veh injured in clsn w ped/anml in traf, subs|Passenger in hv veh injured in clsn w ped/anml in traf, subs +C2897482|T037|AB|V60.6XXS|ICD10CM|Pasngr in hv veh injured in clsn w ped/anml in traf, sequela|Pasngr in hv veh injured in clsn w ped/anml in traf, sequela +C2897483|T037|AB|V60.7|ICD10CM|Person outside hv veh injured in clsn w ped/anml in traf|Person outside hv veh injured in clsn w ped/anml in traf +C2897484|T037|AB|V60.7XXA|ICD10CM|Person outside hv veh inj in clsn w ped/anml in traf, init|Person outside hv veh inj in clsn w ped/anml in traf, init +C2897485|T037|AB|V60.7XXD|ICD10CM|Person outside hv veh inj in clsn w ped/anml in traf, subs|Person outside hv veh inj in clsn w ped/anml in traf, subs +C2897486|T037|AB|V60.7XXS|ICD10CM|Person outsd hv veh inj in clsn w ped/anml in traf, sequela|Person outsd hv veh inj in clsn w ped/anml in traf, sequela +C2897487|T037|AB|V60.9|ICD10CM|Occup of hv veh injured in collision w ped/anml in traf|Occup of hv veh injured in collision w ped/anml in traf +C2897488|T037|AB|V60.9XXA|ICD10CM|Occup of hv veh injured in clsn w ped/anml in traf, init|Occup of hv veh injured in clsn w ped/anml in traf, init +C2897489|T037|AB|V60.9XXD|ICD10CM|Occup of hv veh injured in clsn w ped/anml in traf, subs|Occup of hv veh injured in clsn w ped/anml in traf, subs +C2897490|T037|AB|V60.9XXS|ICD10CM|Occup of hv veh injured in clsn w ped/anml in traf, sequela|Occup of hv veh injured in clsn w ped/anml in traf, sequela +C0477008|T037|HT|V61|ICD10|Occupant of heavy transport vehicle injured in collision with pedal cycle|Occupant of heavy transport vehicle injured in collision with pedal cycle +C0477008|T037|HT|V61|ICD10CM|Occupant of heavy transport vehicle injured in collision with pedal cycle|Occupant of heavy transport vehicle injured in collision with pedal cycle +C0477008|T037|AB|V61|ICD10CM|Occupant of hv veh injured in collision w pedal cycle|Occupant of hv veh injured in collision w pedal cycle +C2897491|T037|HT|V61.0|ICD10CM|Driver of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident|Driver of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident +C2897491|T037|AB|V61.0|ICD10CM|Driver of hv veh injured in collision w pedal cycle nontraf|Driver of hv veh injured in collision w pedal cycle nontraf +C2897492|T037|AB|V61.0XXA|ICD10CM|Driver of hv veh injured in clsn w pedl cyc nontraf, init|Driver of hv veh injured in clsn w pedl cyc nontraf, init +C2897493|T037|AB|V61.0XXD|ICD10CM|Driver of hv veh injured in clsn w pedl cyc nontraf, subs|Driver of hv veh injured in clsn w pedl cyc nontraf, subs +C2897494|T037|AB|V61.0XXS|ICD10CM|Driver of hv veh injured in clsn w pedl cyc nontraf, sequela|Driver of hv veh injured in clsn w pedl cyc nontraf, sequela +C2897495|T037|HT|V61.1|ICD10CM|Passenger in heavy transport vehicle injured in collision with pedal cycle in nontraffic accident|Passenger in heavy transport vehicle injured in collision with pedal cycle in nontraffic accident +C2897495|T037|AB|V61.1|ICD10CM|Passenger in hv veh injured in collision w pedl cyc nontraf|Passenger in hv veh injured in collision w pedl cyc nontraf +C2897496|T037|AB|V61.1XXA|ICD10CM|Passenger in hv veh injured in clsn w pedl cyc nontraf, init|Passenger in hv veh injured in clsn w pedl cyc nontraf, init +C2897497|T037|AB|V61.1XXD|ICD10CM|Passenger in hv veh injured in clsn w pedl cyc nontraf, subs|Passenger in hv veh injured in clsn w pedl cyc nontraf, subs +C2897498|T037|AB|V61.1XXS|ICD10CM|Pasngr in hv veh injured in clsn w pedl cyc nontraf, sequela|Pasngr in hv veh injured in clsn w pedl cyc nontraf, sequela +C2897499|T037|AB|V61.2|ICD10CM|Person outside hv veh injured in clsn w pedl cyc nontraf|Person outside hv veh injured in clsn w pedl cyc nontraf +C2897500|T037|AB|V61.2XXA|ICD10CM|Person outside hv veh inj in clsn w pedl cyc nontraf, init|Person outside hv veh inj in clsn w pedl cyc nontraf, init +C2897501|T037|AB|V61.2XXD|ICD10CM|Person outside hv veh inj in clsn w pedl cyc nontraf, subs|Person outside hv veh inj in clsn w pedl cyc nontraf, subs +C2897502|T037|AB|V61.2XXS|ICD10CM|Person outsd hv veh inj in clsn w pedl cyc nontraf, sequela|Person outsd hv veh inj in clsn w pedl cyc nontraf, sequela +C2897503|T037|AB|V61.3|ICD10CM|Occup of hv veh injured in collision w pedal cycle nontraf|Occup of hv veh injured in collision w pedal cycle nontraf +C2897504|T037|AB|V61.3XXA|ICD10CM|Occup of hv veh injured in clsn w pedl cyc nontraf, init|Occup of hv veh injured in clsn w pedl cyc nontraf, init +C2897505|T037|AB|V61.3XXD|ICD10CM|Occup of hv veh injured in clsn w pedl cyc nontraf, subs|Occup of hv veh injured in clsn w pedl cyc nontraf, subs +C2897506|T037|AB|V61.3XXS|ICD10CM|Occup of hv veh injured in clsn w pedl cyc nontraf, sequela|Occup of hv veh injured in clsn w pedl cyc nontraf, sequela +C2897507|T037|AB|V61.4|ICD10CM|Prsn brd/alit hv veh injured in clsn w pedl cyc wh brd/alit|Prsn brd/alit hv veh injured in clsn w pedl cyc wh brd/alit +C2897508|T037|AB|V61.4XXA|ICD10CM|Prsn brd/alit hv veh inj in clsn w pedl cyc wh brd/alit,init|Prsn brd/alit hv veh inj in clsn w pedl cyc wh brd/alit,init +C2897509|T037|AB|V61.4XXD|ICD10CM|Prsn brd/alit hv veh inj in clsn w pedl cyc wh brd/alit,subs|Prsn brd/alit hv veh inj in clsn w pedl cyc wh brd/alit,subs +C2897510|T037|AB|V61.4XXS|ICD10CM|Prsn brd/alit hv veh inj in clsn w pedl cyc wh brd/alit,sqla|Prsn brd/alit hv veh inj in clsn w pedl cyc wh brd/alit,sqla +C2897511|T037|HT|V61.5|ICD10CM|Driver of heavy transport vehicle injured in collision with pedal cycle in traffic accident|Driver of heavy transport vehicle injured in collision with pedal cycle in traffic accident +C2897511|T037|AB|V61.5|ICD10CM|Driver of hv veh injured in collision w pedal cycle in traf|Driver of hv veh injured in collision w pedal cycle in traf +C0496426|T037|PT|V61.5|ICD10|Occupant of heavy transport vehicle injured in collision with pedal cycle, driver, traffic accident|Occupant of heavy transport vehicle injured in collision with pedal cycle, driver, traffic accident +C2897512|T037|AB|V61.5XXA|ICD10CM|Driver of hv veh injured in clsn w pedl cyc in traf, init|Driver of hv veh injured in clsn w pedl cyc in traf, init +C2897513|T037|AB|V61.5XXD|ICD10CM|Driver of hv veh injured in clsn w pedl cyc in traf, subs|Driver of hv veh injured in clsn w pedl cyc in traf, subs +C2897514|T037|PT|V61.5XXS|ICD10CM|Driver of heavy transport vehicle injured in collision with pedal cycle in traffic accident, sequela|Driver of heavy transport vehicle injured in collision with pedal cycle in traffic accident, sequela +C2897514|T037|AB|V61.5XXS|ICD10CM|Driver of hv veh injured in clsn w pedl cyc in traf, sequela|Driver of hv veh injured in clsn w pedl cyc in traf, sequela +C2897515|T037|HT|V61.6|ICD10CM|Passenger in heavy transport vehicle injured in collision with pedal cycle in traffic accident|Passenger in heavy transport vehicle injured in collision with pedal cycle in traffic accident +C2897515|T037|AB|V61.6|ICD10CM|Passenger in hv veh injured in collision w pedl cyc in traf|Passenger in hv veh injured in collision w pedl cyc in traf +C2897516|T037|AB|V61.6XXA|ICD10CM|Passenger in hv veh injured in clsn w pedl cyc in traf, init|Passenger in hv veh injured in clsn w pedl cyc in traf, init +C2897517|T037|AB|V61.6XXD|ICD10CM|Passenger in hv veh injured in clsn w pedl cyc in traf, subs|Passenger in hv veh injured in clsn w pedl cyc in traf, subs +C2897518|T037|AB|V61.6XXS|ICD10CM|Pasngr in hv veh injured in clsn w pedl cyc in traf, sequela|Pasngr in hv veh injured in clsn w pedl cyc in traf, sequela +C2897519|T037|AB|V61.7|ICD10CM|Person outside hv veh injured in clsn w pedl cyc in traf|Person outside hv veh injured in clsn w pedl cyc in traf +C2897520|T037|AB|V61.7XXA|ICD10CM|Person outside hv veh inj in clsn w pedl cyc in traf, init|Person outside hv veh inj in clsn w pedl cyc in traf, init +C2897521|T037|AB|V61.7XXD|ICD10CM|Person outside hv veh inj in clsn w pedl cyc in traf, subs|Person outside hv veh inj in clsn w pedl cyc in traf, subs +C2897522|T037|AB|V61.7XXS|ICD10CM|Person outsd hv veh inj in clsn w pedl cyc in traf, sequela|Person outsd hv veh inj in clsn w pedl cyc in traf, sequela +C2897523|T037|AB|V61.9|ICD10CM|Occup of hv veh injured in collision w pedal cycle in traf|Occup of hv veh injured in collision w pedal cycle in traf +C2897524|T037|AB|V61.9XXA|ICD10CM|Occup of hv veh injured in clsn w pedl cyc in traf, init|Occup of hv veh injured in clsn w pedl cyc in traf, init +C2897525|T037|AB|V61.9XXD|ICD10CM|Occup of hv veh injured in clsn w pedl cyc in traf, subs|Occup of hv veh injured in clsn w pedl cyc in traf, subs +C2897526|T037|AB|V61.9XXS|ICD10CM|Occup of hv veh injured in clsn w pedl cyc in traf, sequela|Occup of hv veh injured in clsn w pedl cyc in traf, sequela +C0477010|T037|HT|V62|ICD10|Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle|Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle +C0477010|T037|HT|V62|ICD10CM|Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle|Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle +C0477010|T037|AB|V62|ICD10CM|Occupant of hv veh injured in collision w 2/3-whl mv|Occupant of hv veh injured in collision w 2/3-whl mv +C2897527|T037|AB|V62.0|ICD10CM|Driver of hv veh injured in collision w 2/3-whl mv nontraf|Driver of hv veh injured in collision w 2/3-whl mv nontraf +C2897528|T037|AB|V62.0XXA|ICD10CM|Driver of hv veh injured in clsn w 2/3-whl mv nontraf, init|Driver of hv veh injured in clsn w 2/3-whl mv nontraf, init +C2897529|T037|AB|V62.0XXD|ICD10CM|Driver of hv veh injured in clsn w 2/3-whl mv nontraf, subs|Driver of hv veh injured in clsn w 2/3-whl mv nontraf, subs +C2897530|T037|AB|V62.0XXS|ICD10CM|Driver of hv veh inj in clsn w 2/3-whl mv nontraf, sequela|Driver of hv veh inj in clsn w 2/3-whl mv nontraf, sequela +C2897531|T037|AB|V62.1|ICD10CM|Passenger in hv veh injured in clsn w 2/3-whl mv nontraf|Passenger in hv veh injured in clsn w 2/3-whl mv nontraf +C2897532|T037|AB|V62.1XXA|ICD10CM|Pasngr in hv veh injured in clsn w 2/3-whl mv nontraf, init|Pasngr in hv veh injured in clsn w 2/3-whl mv nontraf, init +C2897533|T037|AB|V62.1XXD|ICD10CM|Pasngr in hv veh injured in clsn w 2/3-whl mv nontraf, subs|Pasngr in hv veh injured in clsn w 2/3-whl mv nontraf, subs +C2897534|T037|AB|V62.1XXS|ICD10CM|Pasngr in hv veh inj in clsn w 2/3-whl mv nontraf, sequela|Pasngr in hv veh inj in clsn w 2/3-whl mv nontraf, sequela +C2897535|T037|AB|V62.2|ICD10CM|Person outside hv veh injured in clsn w 2/3-whl mv nontraf|Person outside hv veh injured in clsn w 2/3-whl mv nontraf +C2897536|T037|AB|V62.2XXA|ICD10CM|Person outside hv veh inj in clsn w 2/3-whl mv nontraf, init|Person outside hv veh inj in clsn w 2/3-whl mv nontraf, init +C2897537|T037|AB|V62.2XXD|ICD10CM|Person outside hv veh inj in clsn w 2/3-whl mv nontraf, subs|Person outside hv veh inj in clsn w 2/3-whl mv nontraf, subs +C2897538|T037|AB|V62.2XXS|ICD10CM|Person outsd hv veh inj in clsn w 2/3-whl mv nontraf, sqla|Person outsd hv veh inj in clsn w 2/3-whl mv nontraf, sqla +C2897539|T037|AB|V62.3|ICD10CM|Occup of hv veh injured in collision w 2/3-whl mv nontraf|Occup of hv veh injured in collision w 2/3-whl mv nontraf +C2897540|T037|AB|V62.3XXA|ICD10CM|Occup of hv veh injured in clsn w 2/3-whl mv nontraf, init|Occup of hv veh injured in clsn w 2/3-whl mv nontraf, init +C2897541|T037|AB|V62.3XXD|ICD10CM|Occup of hv veh injured in clsn w 2/3-whl mv nontraf, subs|Occup of hv veh injured in clsn w 2/3-whl mv nontraf, subs +C2897542|T037|AB|V62.3XXS|ICD10CM|Occup of hv veh inj in clsn w 2/3-whl mv nontraf, sequela|Occup of hv veh inj in clsn w 2/3-whl mv nontraf, sequela +C2897543|T037|AB|V62.4|ICD10CM|Prsn brd/alit hv veh injured in collision w 2/3-whl mv|Prsn brd/alit hv veh injured in collision w 2/3-whl mv +C2897544|T037|AB|V62.4XXA|ICD10CM|Prsn brd/alit hv veh injured in collision w 2/3-whl mv, init|Prsn brd/alit hv veh injured in collision w 2/3-whl mv, init +C2897545|T037|AB|V62.4XXD|ICD10CM|Prsn brd/alit hv veh injured in collision w 2/3-whl mv, subs|Prsn brd/alit hv veh injured in collision w 2/3-whl mv, subs +C2897546|T037|AB|V62.4XXS|ICD10CM|Prsn brd/alit hv veh injured in clsn w 2/3-whl mv, sequela|Prsn brd/alit hv veh injured in clsn w 2/3-whl mv, sequela +C2897547|T037|AB|V62.5|ICD10CM|Driver of hv veh injured in collision w 2/3-whl mv in traf|Driver of hv veh injured in collision w 2/3-whl mv in traf +C2897548|T037|AB|V62.5XXA|ICD10CM|Driver of hv veh injured in clsn w 2/3-whl mv in traf, init|Driver of hv veh injured in clsn w 2/3-whl mv in traf, init +C2897549|T037|AB|V62.5XXD|ICD10CM|Driver of hv veh injured in clsn w 2/3-whl mv in traf, subs|Driver of hv veh injured in clsn w 2/3-whl mv in traf, subs +C2897550|T037|AB|V62.5XXS|ICD10CM|Driver of hv veh inj in clsn w 2/3-whl mv in traf, sequela|Driver of hv veh inj in clsn w 2/3-whl mv in traf, sequela +C2897551|T037|AB|V62.6|ICD10CM|Passenger in hv veh injured in clsn w 2/3-whl mv in traf|Passenger in hv veh injured in clsn w 2/3-whl mv in traf +C2897552|T037|AB|V62.6XXA|ICD10CM|Pasngr in hv veh injured in clsn w 2/3-whl mv in traf, init|Pasngr in hv veh injured in clsn w 2/3-whl mv in traf, init +C2897553|T037|AB|V62.6XXD|ICD10CM|Pasngr in hv veh injured in clsn w 2/3-whl mv in traf, subs|Pasngr in hv veh injured in clsn w 2/3-whl mv in traf, subs +C2897554|T037|AB|V62.6XXS|ICD10CM|Pasngr in hv veh inj in clsn w 2/3-whl mv in traf, sequela|Pasngr in hv veh inj in clsn w 2/3-whl mv in traf, sequela +C2897555|T037|AB|V62.7|ICD10CM|Person outside hv veh injured in clsn w 2/3-whl mv in traf|Person outside hv veh injured in clsn w 2/3-whl mv in traf +C2897556|T037|AB|V62.7XXA|ICD10CM|Person outside hv veh inj in clsn w 2/3-whl mv in traf, init|Person outside hv veh inj in clsn w 2/3-whl mv in traf, init +C2897557|T037|AB|V62.7XXD|ICD10CM|Person outside hv veh inj in clsn w 2/3-whl mv in traf, subs|Person outside hv veh inj in clsn w 2/3-whl mv in traf, subs +C2897558|T037|AB|V62.7XXS|ICD10CM|Person outsd hv veh inj in clsn w 2/3-whl mv in traf, sqla|Person outsd hv veh inj in clsn w 2/3-whl mv in traf, sqla +C2897559|T037|AB|V62.9|ICD10CM|Occup of hv veh injured in collision w 2/3-whl mv in traf|Occup of hv veh injured in collision w 2/3-whl mv in traf +C2897560|T037|AB|V62.9XXA|ICD10CM|Occup of hv veh injured in clsn w 2/3-whl mv in traf, init|Occup of hv veh injured in clsn w 2/3-whl mv in traf, init +C2897561|T037|AB|V62.9XXD|ICD10CM|Occup of hv veh injured in clsn w 2/3-whl mv in traf, subs|Occup of hv veh injured in clsn w 2/3-whl mv in traf, subs +C2897562|T037|AB|V62.9XXS|ICD10CM|Occup of hv veh inj in clsn w 2/3-whl mv in traf, sequela|Occup of hv veh inj in clsn w 2/3-whl mv in traf, sequela +C0477012|T037|HT|V63|ICD10|Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van|Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van +C0477012|T037|HT|V63|ICD10CM|Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van|Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van +C0477012|T037|AB|V63|ICD10CM|Occupant of hv veh injured pick-up truck, pk-up/van|Occupant of hv veh injured pick-up truck, pk-up/van +C2897563|T037|AB|V63.0|ICD10CM|Driver of hv veh injured pick-up truck, pk-up/van nontraf|Driver of hv veh injured pick-up truck, pk-up/van nontraf +C2897564|T037|AB|V63.0XXA|ICD10CM|Driver of hv veh inj pick-up truck, pk-up/van nontraf, init|Driver of hv veh inj pick-up truck, pk-up/van nontraf, init +C2897565|T037|AB|V63.0XXD|ICD10CM|Driver of hv veh inj pick-up truck, pk-up/van nontraf, subs|Driver of hv veh inj pick-up truck, pk-up/van nontraf, subs +C2897566|T037|AB|V63.0XXS|ICD10CM|Driver of hv veh inj pk-up truck, pk-up/van nontraf, sequela|Driver of hv veh inj pk-up truck, pk-up/van nontraf, sequela +C2897567|T037|AB|V63.1|ICD10CM|Passenger in hv veh injured pick-up truck, pk-up/van nontraf|Passenger in hv veh injured pick-up truck, pk-up/van nontraf +C2897568|T037|AB|V63.1XXA|ICD10CM|Pasngr in hv veh inj pick-up truck, pk-up/van nontraf, init|Pasngr in hv veh inj pick-up truck, pk-up/van nontraf, init +C2897569|T037|AB|V63.1XXD|ICD10CM|Pasngr in hv veh inj pick-up truck, pk-up/van nontraf, subs|Pasngr in hv veh inj pick-up truck, pk-up/van nontraf, subs +C2897570|T037|AB|V63.1XXS|ICD10CM|Pasngr in hv veh inj pk-up truck, pk-up/van nontraf, sequela|Pasngr in hv veh inj pk-up truck, pk-up/van nontraf, sequela +C2897571|T037|AB|V63.2|ICD10CM|Person outside hv veh inj pick-up truck, pk-up/van nontraf|Person outside hv veh inj pick-up truck, pk-up/van nontraf +C2897572|T037|AB|V63.2XXA|ICD10CM|Person outsd hv veh inj pk-up truck, pk-up/van nontraf, init|Person outsd hv veh inj pk-up truck, pk-up/van nontraf, init +C2897573|T037|AB|V63.2XXD|ICD10CM|Person outsd hv veh inj pk-up truck, pk-up/van nontraf, subs|Person outsd hv veh inj pk-up truck, pk-up/van nontraf, subs +C2897574|T037|AB|V63.2XXS|ICD10CM|Person outsd hv veh inj pk-up truck, pk-up/van nontraf, sqla|Person outsd hv veh inj pk-up truck, pk-up/van nontraf, sqla +C2897575|T037|AB|V63.3|ICD10CM|Occup of hv veh injured pick-up truck, pk-up/van nontraf|Occup of hv veh injured pick-up truck, pk-up/van nontraf +C2897576|T037|AB|V63.3XXA|ICD10CM|Occup of hv veh inj pick-up truck, pk-up/van nontraf, init|Occup of hv veh inj pick-up truck, pk-up/van nontraf, init +C2897577|T037|AB|V63.3XXD|ICD10CM|Occup of hv veh inj pick-up truck, pk-up/van nontraf, subs|Occup of hv veh inj pick-up truck, pk-up/van nontraf, subs +C2897578|T037|AB|V63.3XXS|ICD10CM|Occup of hv veh inj pk-up truck, pk-up/van nontraf, sequela|Occup of hv veh inj pk-up truck, pk-up/van nontraf, sequela +C2897579|T037|AB|V63.4|ICD10CM|Prsn brd/alit hv veh injured pick-up truck, pk-up/van|Prsn brd/alit hv veh injured pick-up truck, pk-up/van +C2897580|T037|AB|V63.4XXA|ICD10CM|Prsn brd/alit hv veh injured pick-up truck, pk-up/van, init|Prsn brd/alit hv veh injured pick-up truck, pk-up/van, init +C2897581|T037|AB|V63.4XXD|ICD10CM|Prsn brd/alit hv veh injured pick-up truck, pk-up/van, subs|Prsn brd/alit hv veh injured pick-up truck, pk-up/van, subs +C2897582|T037|AB|V63.4XXS|ICD10CM|Prsn brd/alit hv veh inj pick-up truck, pk-up/van, sequela|Prsn brd/alit hv veh inj pick-up truck, pk-up/van, sequela +C2897583|T037|AB|V63.5|ICD10CM|Driver of hv veh injured pick-up truck, pk-up/van in traf|Driver of hv veh injured pick-up truck, pk-up/van in traf +C2897584|T037|AB|V63.5XXA|ICD10CM|Driver of hv veh inj pick-up truck, pk-up/van in traf, init|Driver of hv veh inj pick-up truck, pk-up/van in traf, init +C2897585|T037|AB|V63.5XXD|ICD10CM|Driver of hv veh inj pick-up truck, pk-up/van in traf, subs|Driver of hv veh inj pick-up truck, pk-up/van in traf, subs +C2897586|T037|AB|V63.5XXS|ICD10CM|Driver of hv veh inj pk-up truck, pk-up/van in traf, sequela|Driver of hv veh inj pk-up truck, pk-up/van in traf, sequela +C2897587|T037|AB|V63.6|ICD10CM|Passenger in hv veh injured pick-up truck, pk-up/van in traf|Passenger in hv veh injured pick-up truck, pk-up/van in traf +C2897588|T037|AB|V63.6XXA|ICD10CM|Pasngr in hv veh inj pick-up truck, pk-up/van in traf, init|Pasngr in hv veh inj pick-up truck, pk-up/van in traf, init +C2897589|T037|AB|V63.6XXD|ICD10CM|Pasngr in hv veh inj pick-up truck, pk-up/van in traf, subs|Pasngr in hv veh inj pick-up truck, pk-up/van in traf, subs +C2897590|T037|AB|V63.6XXS|ICD10CM|Pasngr in hv veh inj pk-up truck, pk-up/van in traf, sequela|Pasngr in hv veh inj pk-up truck, pk-up/van in traf, sequela +C2897591|T037|AB|V63.7|ICD10CM|Person outside hv veh inj pick-up truck, pk-up/van in traf|Person outside hv veh inj pick-up truck, pk-up/van in traf +C2897592|T037|AB|V63.7XXA|ICD10CM|Person outsd hv veh inj pk-up truck, pk-up/van in traf, init|Person outsd hv veh inj pk-up truck, pk-up/van in traf, init +C2897593|T037|AB|V63.7XXD|ICD10CM|Person outsd hv veh inj pk-up truck, pk-up/van in traf, subs|Person outsd hv veh inj pk-up truck, pk-up/van in traf, subs +C2897594|T037|AB|V63.7XXS|ICD10CM|Person outsd hv veh inj pk-up truck, pk-up/van in traf, sqla|Person outsd hv veh inj pk-up truck, pk-up/van in traf, sqla +C2897595|T037|AB|V63.9|ICD10CM|Occup of hv veh injured pick-up truck, pk-up/van in traf|Occup of hv veh injured pick-up truck, pk-up/van in traf +C2897596|T037|AB|V63.9XXA|ICD10CM|Occup of hv veh inj pick-up truck, pk-up/van in traf, init|Occup of hv veh inj pick-up truck, pk-up/van in traf, init +C2897597|T037|AB|V63.9XXD|ICD10CM|Occup of hv veh inj pick-up truck, pk-up/van in traf, subs|Occup of hv veh inj pick-up truck, pk-up/van in traf, subs +C2897598|T037|AB|V63.9XXS|ICD10CM|Occup of hv veh inj pk-up truck, pk-up/van in traf, sequela|Occup of hv veh inj pk-up truck, pk-up/van in traf, sequela +C0477014|T037|HT|V64|ICD10|Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus|Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus +C0477014|T037|HT|V64|ICD10CM|Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus|Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus +C0477014|T037|AB|V64|ICD10CM|Occupant of hv veh injured in collision w hv veh|Occupant of hv veh injured in collision w hv veh +C2897599|T037|AB|V64.0|ICD10CM|Driver of hv veh injured in collision w hv veh nontraf|Driver of hv veh injured in collision w hv veh nontraf +C2897600|T037|AB|V64.0XXA|ICD10CM|Driver of hv veh injured in collision w hv veh nontraf, init|Driver of hv veh injured in collision w hv veh nontraf, init +C2897601|T037|AB|V64.0XXD|ICD10CM|Driver of hv veh injured in collision w hv veh nontraf, subs|Driver of hv veh injured in collision w hv veh nontraf, subs +C2897602|T037|AB|V64.0XXS|ICD10CM|Driver of hv veh injured in clsn w hv veh nontraf, sequela|Driver of hv veh injured in clsn w hv veh nontraf, sequela +C2897603|T037|AB|V64.1|ICD10CM|Passenger in hv veh injured in collision w hv veh nontraf|Passenger in hv veh injured in collision w hv veh nontraf +C2897604|T037|AB|V64.1XXA|ICD10CM|Passenger in hv veh injured in clsn w hv veh nontraf, init|Passenger in hv veh injured in clsn w hv veh nontraf, init +C2897605|T037|AB|V64.1XXD|ICD10CM|Passenger in hv veh injured in clsn w hv veh nontraf, subs|Passenger in hv veh injured in clsn w hv veh nontraf, subs +C2897606|T037|AB|V64.1XXS|ICD10CM|Pasngr in hv veh injured in clsn w hv veh nontraf, sequela|Pasngr in hv veh injured in clsn w hv veh nontraf, sequela +C2897607|T037|AB|V64.2|ICD10CM|Person outside hv veh injured in collision w hv veh nontraf|Person outside hv veh injured in collision w hv veh nontraf +C2897608|T037|AB|V64.2XXA|ICD10CM|Person outside hv veh injured in clsn w hv veh nontraf, init|Person outside hv veh injured in clsn w hv veh nontraf, init +C2897609|T037|AB|V64.2XXD|ICD10CM|Person outside hv veh injured in clsn w hv veh nontraf, subs|Person outside hv veh injured in clsn w hv veh nontraf, subs +C2897610|T037|AB|V64.2XXS|ICD10CM|Person outside hv veh inj in clsn w hv veh nontraf, sequela|Person outside hv veh inj in clsn w hv veh nontraf, sequela +C2897611|T037|AB|V64.3|ICD10CM|Occup of hv veh injured in collision w hv veh nontraf|Occup of hv veh injured in collision w hv veh nontraf +C2897612|T037|AB|V64.3XXA|ICD10CM|Occup of hv veh injured in collision w hv veh nontraf, init|Occup of hv veh injured in collision w hv veh nontraf, init +C2897613|T037|AB|V64.3XXD|ICD10CM|Occup of hv veh injured in collision w hv veh nontraf, subs|Occup of hv veh injured in collision w hv veh nontraf, subs +C2897614|T037|AB|V64.3XXS|ICD10CM|Occup of hv veh injured in clsn w hv veh nontraf, sequela|Occup of hv veh injured in clsn w hv veh nontraf, sequela +C2897615|T037|AB|V64.4|ICD10CM|Prsn brd/alit hv veh injured in clsn w hv veh wh brd/alit|Prsn brd/alit hv veh injured in clsn w hv veh wh brd/alit +C2897616|T037|AB|V64.4XXA|ICD10CM|Prsn brd/alit hv veh inj in clsn w hv veh wh brd/alit, init|Prsn brd/alit hv veh inj in clsn w hv veh wh brd/alit, init +C2897617|T037|AB|V64.4XXD|ICD10CM|Prsn brd/alit hv veh inj in clsn w hv veh wh brd/alit, subs|Prsn brd/alit hv veh inj in clsn w hv veh wh brd/alit, subs +C2897618|T037|AB|V64.4XXS|ICD10CM|Prsn brd/alit hv veh inj in clsn w hv veh wh brd/alit, sqla|Prsn brd/alit hv veh inj in clsn w hv veh wh brd/alit, sqla +C2897619|T037|AB|V64.5|ICD10CM|Driver of hv veh injured in collision w hv veh in traf|Driver of hv veh injured in collision w hv veh in traf +C2897620|T037|AB|V64.5XXA|ICD10CM|Driver of hv veh injured in collision w hv veh in traf, init|Driver of hv veh injured in collision w hv veh in traf, init +C2897621|T037|AB|V64.5XXD|ICD10CM|Driver of hv veh injured in collision w hv veh in traf, subs|Driver of hv veh injured in collision w hv veh in traf, subs +C2897622|T037|AB|V64.5XXS|ICD10CM|Driver of hv veh injured in clsn w hv veh in traf, sequela|Driver of hv veh injured in clsn w hv veh in traf, sequela +C2897623|T037|AB|V64.6|ICD10CM|Passenger in hv veh injured in collision w hv veh in traf|Passenger in hv veh injured in collision w hv veh in traf +C2897624|T037|AB|V64.6XXA|ICD10CM|Passenger in hv veh injured in clsn w hv veh in traf, init|Passenger in hv veh injured in clsn w hv veh in traf, init +C2897625|T037|AB|V64.6XXD|ICD10CM|Passenger in hv veh injured in clsn w hv veh in traf, subs|Passenger in hv veh injured in clsn w hv veh in traf, subs +C2897626|T037|AB|V64.6XXS|ICD10CM|Pasngr in hv veh injured in clsn w hv veh in traf, sequela|Pasngr in hv veh injured in clsn w hv veh in traf, sequela +C2897627|T037|AB|V64.7|ICD10CM|Person outside hv veh injured in collision w hv veh in traf|Person outside hv veh injured in collision w hv veh in traf +C2897628|T037|AB|V64.7XXA|ICD10CM|Person outside hv veh injured in clsn w hv veh in traf, init|Person outside hv veh injured in clsn w hv veh in traf, init +C2897629|T037|AB|V64.7XXD|ICD10CM|Person outside hv veh injured in clsn w hv veh in traf, subs|Person outside hv veh injured in clsn w hv veh in traf, subs +C2897630|T037|AB|V64.7XXS|ICD10CM|Person outside hv veh inj in clsn w hv veh in traf, sequela|Person outside hv veh inj in clsn w hv veh in traf, sequela +C2897631|T037|AB|V64.9|ICD10CM|Occup of hv veh injured in collision w hv veh in traf|Occup of hv veh injured in collision w hv veh in traf +C2897632|T037|AB|V64.9XXA|ICD10CM|Occup of hv veh injured in collision w hv veh in traf, init|Occup of hv veh injured in collision w hv veh in traf, init +C2897633|T037|AB|V64.9XXD|ICD10CM|Occup of hv veh injured in collision w hv veh in traf, subs|Occup of hv veh injured in collision w hv veh in traf, subs +C2897634|T037|AB|V64.9XXS|ICD10CM|Occup of hv veh injured in clsn w hv veh in traf, sequela|Occup of hv veh injured in clsn w hv veh in traf, sequela +C0477016|T037|HT|V65|ICD10|Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle|Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle +C0477016|T037|HT|V65|ICD10CM|Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle|Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle +C0477016|T037|AB|V65|ICD10CM|Occupant of hv veh injured in collision w rail trn/veh|Occupant of hv veh injured in collision w rail trn/veh +C2897635|T037|AB|V65.0|ICD10CM|Driver of hv veh injured in collision w rail trn/veh nontraf|Driver of hv veh injured in collision w rail trn/veh nontraf +C2897636|T037|AB|V65.0XXA|ICD10CM|Driver of hv veh inj in clsn w rail trn/veh nontraf, init|Driver of hv veh inj in clsn w rail trn/veh nontraf, init +C2897637|T037|AB|V65.0XXD|ICD10CM|Driver of hv veh inj in clsn w rail trn/veh nontraf, subs|Driver of hv veh inj in clsn w rail trn/veh nontraf, subs +C2897638|T037|AB|V65.0XXS|ICD10CM|Driver of hv veh inj in clsn w rail trn/veh nontraf, sequela|Driver of hv veh inj in clsn w rail trn/veh nontraf, sequela +C2897639|T037|AB|V65.1|ICD10CM|Passenger in hv veh injured in clsn w rail trn/veh nontraf|Passenger in hv veh injured in clsn w rail trn/veh nontraf +C2897640|T037|AB|V65.1XXA|ICD10CM|Pasngr in hv veh inj in clsn w rail trn/veh nontraf, init|Pasngr in hv veh inj in clsn w rail trn/veh nontraf, init +C2897641|T037|AB|V65.1XXD|ICD10CM|Pasngr in hv veh inj in clsn w rail trn/veh nontraf, subs|Pasngr in hv veh inj in clsn w rail trn/veh nontraf, subs +C2897642|T037|AB|V65.1XXS|ICD10CM|Pasngr in hv veh inj in clsn w rail trn/veh nontraf, sequela|Pasngr in hv veh inj in clsn w rail trn/veh nontraf, sequela +C2897643|T037|AB|V65.2|ICD10CM|Person outside hv veh injured in clsn w rail trn/veh nontraf|Person outside hv veh injured in clsn w rail trn/veh nontraf +C2897644|T037|AB|V65.2XXA|ICD10CM|Person outsd hv veh inj in clsn w rail trn/veh nontraf, init|Person outsd hv veh inj in clsn w rail trn/veh nontraf, init +C2897645|T037|AB|V65.2XXD|ICD10CM|Person outsd hv veh inj in clsn w rail trn/veh nontraf, subs|Person outsd hv veh inj in clsn w rail trn/veh nontraf, subs +C2897646|T037|AB|V65.2XXS|ICD10CM|Person outsd hv veh inj in clsn w rail trn/veh nontraf, sqla|Person outsd hv veh inj in clsn w rail trn/veh nontraf, sqla +C2897647|T037|AB|V65.3|ICD10CM|Occup of hv veh injured in collision w rail trn/veh nontraf|Occup of hv veh injured in collision w rail trn/veh nontraf +C2897648|T037|AB|V65.3XXA|ICD10CM|Occup of hv veh injured in clsn w rail trn/veh nontraf, init|Occup of hv veh injured in clsn w rail trn/veh nontraf, init +C2897649|T037|AB|V65.3XXD|ICD10CM|Occup of hv veh injured in clsn w rail trn/veh nontraf, subs|Occup of hv veh injured in clsn w rail trn/veh nontraf, subs +C2897650|T037|AB|V65.3XXS|ICD10CM|Occup of hv veh inj in clsn w rail trn/veh nontraf, sequela|Occup of hv veh inj in clsn w rail trn/veh nontraf, sequela +C2897651|T037|AB|V65.4|ICD10CM|Prsn brd/alit hv veh injured in collision w rail trn/veh|Prsn brd/alit hv veh injured in collision w rail trn/veh +C2897652|T037|AB|V65.4XXA|ICD10CM|Prsn brd/alit hv veh injured in clsn w rail trn/veh, init|Prsn brd/alit hv veh injured in clsn w rail trn/veh, init +C2897653|T037|AB|V65.4XXD|ICD10CM|Prsn brd/alit hv veh injured in clsn w rail trn/veh, subs|Prsn brd/alit hv veh injured in clsn w rail trn/veh, subs +C2897654|T037|AB|V65.4XXS|ICD10CM|Prsn brd/alit hv veh injured in clsn w rail trn/veh, sequela|Prsn brd/alit hv veh injured in clsn w rail trn/veh, sequela +C2897655|T037|AB|V65.5|ICD10CM|Driver of hv veh injured in collision w rail trn/veh in traf|Driver of hv veh injured in collision w rail trn/veh in traf +C2897656|T037|AB|V65.5XXA|ICD10CM|Driver of hv veh inj in clsn w rail trn/veh in traf, init|Driver of hv veh inj in clsn w rail trn/veh in traf, init +C2897657|T037|AB|V65.5XXD|ICD10CM|Driver of hv veh inj in clsn w rail trn/veh in traf, subs|Driver of hv veh inj in clsn w rail trn/veh in traf, subs +C2897658|T037|AB|V65.5XXS|ICD10CM|Driver of hv veh inj in clsn w rail trn/veh in traf, sequela|Driver of hv veh inj in clsn w rail trn/veh in traf, sequela +C2897659|T037|AB|V65.6|ICD10CM|Passenger in hv veh injured in clsn w rail trn/veh in traf|Passenger in hv veh injured in clsn w rail trn/veh in traf +C2897660|T037|AB|V65.6XXA|ICD10CM|Pasngr in hv veh inj in clsn w rail trn/veh in traf, init|Pasngr in hv veh inj in clsn w rail trn/veh in traf, init +C2897661|T037|AB|V65.6XXD|ICD10CM|Pasngr in hv veh inj in clsn w rail trn/veh in traf, subs|Pasngr in hv veh inj in clsn w rail trn/veh in traf, subs +C2897662|T037|AB|V65.6XXS|ICD10CM|Pasngr in hv veh inj in clsn w rail trn/veh in traf, sequela|Pasngr in hv veh inj in clsn w rail trn/veh in traf, sequela +C2897663|T037|AB|V65.7|ICD10CM|Person outside hv veh injured in clsn w rail trn/veh in traf|Person outside hv veh injured in clsn w rail trn/veh in traf +C2897664|T037|AB|V65.7XXA|ICD10CM|Person outsd hv veh inj in clsn w rail trn/veh in traf, init|Person outsd hv veh inj in clsn w rail trn/veh in traf, init +C2897665|T037|AB|V65.7XXD|ICD10CM|Person outsd hv veh inj in clsn w rail trn/veh in traf, subs|Person outsd hv veh inj in clsn w rail trn/veh in traf, subs +C2897666|T037|AB|V65.7XXS|ICD10CM|Person outsd hv veh inj in clsn w rail trn/veh in traf, sqla|Person outsd hv veh inj in clsn w rail trn/veh in traf, sqla +C2897667|T037|AB|V65.9|ICD10CM|Occup of hv veh injured in collision w rail trn/veh in traf|Occup of hv veh injured in collision w rail trn/veh in traf +C2897668|T037|AB|V65.9XXA|ICD10CM|Occup of hv veh injured in clsn w rail trn/veh in traf, init|Occup of hv veh injured in clsn w rail trn/veh in traf, init +C2897669|T037|AB|V65.9XXD|ICD10CM|Occup of hv veh injured in clsn w rail trn/veh in traf, subs|Occup of hv veh injured in clsn w rail trn/veh in traf, subs +C2897670|T037|AB|V65.9XXS|ICD10CM|Occup of hv veh inj in clsn w rail trn/veh in traf, sequela|Occup of hv veh inj in clsn w rail trn/veh in traf, sequela +C4283910|T037|ET|V66|ICD10CM|collision with animal-drawn vehicle, animal being ridden, streetcar|collision with animal-drawn vehicle, animal being ridden, streetcar +C0477018|T037|HT|V66|ICD10|Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle|Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle +C0477018|T037|HT|V66|ICD10CM|Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle|Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle +C0477018|T037|AB|V66|ICD10CM|Occupant of hv veh injured in collision w nonmtr vehicle|Occupant of hv veh injured in collision w nonmtr vehicle +C2897671|T037|AB|V66.0|ICD10CM|Driver of hv veh injured in clsn w nonmtr vehicle nontraf|Driver of hv veh injured in clsn w nonmtr vehicle nontraf +C2897672|T037|AB|V66.0XXA|ICD10CM|Driver of hv veh inj in clsn w nonmtr vehicle nontraf, init|Driver of hv veh inj in clsn w nonmtr vehicle nontraf, init +C2897673|T037|AB|V66.0XXD|ICD10CM|Driver of hv veh inj in clsn w nonmtr vehicle nontraf, subs|Driver of hv veh inj in clsn w nonmtr vehicle nontraf, subs +C2897674|T037|AB|V66.0XXS|ICD10CM|Driver of hv veh inj in clsn w nonmtr vehicle nontraf, sqla|Driver of hv veh inj in clsn w nonmtr vehicle nontraf, sqla +C2897675|T037|AB|V66.1|ICD10CM|Passenger in hv veh injured in clsn w nonmtr vehicle nontraf|Passenger in hv veh injured in clsn w nonmtr vehicle nontraf +C2897676|T037|AB|V66.1XXA|ICD10CM|Pasngr in hv veh inj in clsn w nonmtr vehicle nontraf, init|Pasngr in hv veh inj in clsn w nonmtr vehicle nontraf, init +C2897677|T037|AB|V66.1XXD|ICD10CM|Pasngr in hv veh inj in clsn w nonmtr vehicle nontraf, subs|Pasngr in hv veh inj in clsn w nonmtr vehicle nontraf, subs +C2897678|T037|AB|V66.1XXS|ICD10CM|Pasngr in hv veh inj in clsn w nonmtr vehicle nontraf, sqla|Pasngr in hv veh inj in clsn w nonmtr vehicle nontraf, sqla +C2897679|T037|AB|V66.2|ICD10CM|Person outside hv veh inj in clsn w nonmtr vehicle nontraf|Person outside hv veh inj in clsn w nonmtr vehicle nontraf +C2897680|T037|AB|V66.2XXA|ICD10CM|Person outsd hv veh inj in clsn w nonmtr veh nontraf, init|Person outsd hv veh inj in clsn w nonmtr veh nontraf, init +C2897681|T037|AB|V66.2XXD|ICD10CM|Person outsd hv veh inj in clsn w nonmtr veh nontraf, subs|Person outsd hv veh inj in clsn w nonmtr veh nontraf, subs +C2897682|T037|AB|V66.2XXS|ICD10CM|Person outsd hv veh inj in clsn w nonmtr veh nontraf, sqla|Person outsd hv veh inj in clsn w nonmtr veh nontraf, sqla +C2897683|T037|AB|V66.3|ICD10CM|Occup of hv veh injured in clsn w nonmtr vehicle nontraf|Occup of hv veh injured in clsn w nonmtr vehicle nontraf +C2897684|T037|AB|V66.3XXA|ICD10CM|Occup of hv veh inj in clsn w nonmtr vehicle nontraf, init|Occup of hv veh inj in clsn w nonmtr vehicle nontraf, init +C2897685|T037|AB|V66.3XXD|ICD10CM|Occup of hv veh inj in clsn w nonmtr vehicle nontraf, subs|Occup of hv veh inj in clsn w nonmtr vehicle nontraf, subs +C2897686|T037|AB|V66.3XXS|ICD10CM|Occup of hv veh inj in clsn w nonmtr vehicle nontraf, sqla|Occup of hv veh inj in clsn w nonmtr vehicle nontraf, sqla +C2897687|T037|AB|V66.4|ICD10CM|Prsn brd/alit hv veh injured in collision w nonmtr vehicle|Prsn brd/alit hv veh injured in collision w nonmtr vehicle +C2897688|T037|AB|V66.4XXA|ICD10CM|Prsn brd/alit hv veh injured in clsn w nonmtr vehicle, init|Prsn brd/alit hv veh injured in clsn w nonmtr vehicle, init +C2897689|T037|AB|V66.4XXD|ICD10CM|Prsn brd/alit hv veh injured in clsn w nonmtr vehicle, subs|Prsn brd/alit hv veh injured in clsn w nonmtr vehicle, subs +C2897690|T037|AB|V66.4XXS|ICD10CM|Prsn brd/alit hv veh inj in clsn w nonmtr vehicle, sequela|Prsn brd/alit hv veh inj in clsn w nonmtr vehicle, sequela +C2897691|T037|AB|V66.5|ICD10CM|Driver of hv veh injured in clsn w nonmtr vehicle in traf|Driver of hv veh injured in clsn w nonmtr vehicle in traf +C2897692|T037|AB|V66.5XXA|ICD10CM|Driver of hv veh inj in clsn w nonmtr vehicle in traf, init|Driver of hv veh inj in clsn w nonmtr vehicle in traf, init +C2897693|T037|AB|V66.5XXD|ICD10CM|Driver of hv veh inj in clsn w nonmtr vehicle in traf, subs|Driver of hv veh inj in clsn w nonmtr vehicle in traf, subs +C2897694|T037|AB|V66.5XXS|ICD10CM|Driver of hv veh inj in clsn w nonmtr vehicle in traf, sqla|Driver of hv veh inj in clsn w nonmtr vehicle in traf, sqla +C2897695|T037|AB|V66.6|ICD10CM|Passenger in hv veh injured in clsn w nonmtr vehicle in traf|Passenger in hv veh injured in clsn w nonmtr vehicle in traf +C2897696|T037|AB|V66.6XXA|ICD10CM|Pasngr in hv veh inj in clsn w nonmtr vehicle in traf, init|Pasngr in hv veh inj in clsn w nonmtr vehicle in traf, init +C2897697|T037|AB|V66.6XXD|ICD10CM|Pasngr in hv veh inj in clsn w nonmtr vehicle in traf, subs|Pasngr in hv veh inj in clsn w nonmtr vehicle in traf, subs +C2897698|T037|AB|V66.6XXS|ICD10CM|Pasngr in hv veh inj in clsn w nonmtr vehicle in traf, sqla|Pasngr in hv veh inj in clsn w nonmtr vehicle in traf, sqla +C2897699|T037|AB|V66.7|ICD10CM|Person outside hv veh inj in clsn w nonmtr vehicle in traf|Person outside hv veh inj in clsn w nonmtr vehicle in traf +C2897700|T037|AB|V66.7XXA|ICD10CM|Person outsd hv veh inj in clsn w nonmtr veh in traf, init|Person outsd hv veh inj in clsn w nonmtr veh in traf, init +C2897701|T037|AB|V66.7XXD|ICD10CM|Person outsd hv veh inj in clsn w nonmtr veh in traf, subs|Person outsd hv veh inj in clsn w nonmtr veh in traf, subs +C2897702|T037|AB|V66.7XXS|ICD10CM|Person outsd hv veh inj in clsn w nonmtr veh in traf, sqla|Person outsd hv veh inj in clsn w nonmtr veh in traf, sqla +C2897703|T037|AB|V66.9|ICD10CM|Occup of hv veh injured in clsn w nonmtr vehicle in traf|Occup of hv veh injured in clsn w nonmtr vehicle in traf +C2897704|T037|AB|V66.9XXA|ICD10CM|Occup of hv veh inj in clsn w nonmtr vehicle in traf, init|Occup of hv veh inj in clsn w nonmtr vehicle in traf, init +C2897705|T037|AB|V66.9XXD|ICD10CM|Occup of hv veh inj in clsn w nonmtr vehicle in traf, subs|Occup of hv veh inj in clsn w nonmtr vehicle in traf, subs +C2897706|T037|AB|V66.9XXS|ICD10CM|Occup of hv veh inj in clsn w nonmtr vehicle in traf, sqla|Occup of hv veh inj in clsn w nonmtr vehicle in traf, sqla +C0477020|T037|HT|V67|ICD10|Occupant of heavy transport vehicle injured in collision with fixed or stationary object|Occupant of heavy transport vehicle injured in collision with fixed or stationary object +C0477020|T037|HT|V67|ICD10CM|Occupant of heavy transport vehicle injured in collision with fixed or stationary object|Occupant of heavy transport vehicle injured in collision with fixed or stationary object +C0477020|T037|AB|V67|ICD10CM|Occupant of hv veh injured in collision w statnry object|Occupant of hv veh injured in collision w statnry object +C2897707|T037|AB|V67.0|ICD10CM|Driver of hv veh injured in clsn w statnry object nontraf|Driver of hv veh injured in clsn w statnry object nontraf +C2897708|T037|AB|V67.0XXA|ICD10CM|Driver of hv veh inj in clsn w statnry object nontraf, init|Driver of hv veh inj in clsn w statnry object nontraf, init +C2897709|T037|AB|V67.0XXD|ICD10CM|Driver of hv veh inj in clsn w statnry object nontraf, subs|Driver of hv veh inj in clsn w statnry object nontraf, subs +C2897710|T037|AB|V67.0XXS|ICD10CM|Driver of hv veh inj in clsn w statnry object nontraf, sqla|Driver of hv veh inj in clsn w statnry object nontraf, sqla +C2897711|T037|AB|V67.1|ICD10CM|Passenger in hv veh injured in clsn w statnry object nontraf|Passenger in hv veh injured in clsn w statnry object nontraf +C2897712|T037|AB|V67.1XXA|ICD10CM|Pasngr in hv veh inj in clsn w statnry object nontraf, init|Pasngr in hv veh inj in clsn w statnry object nontraf, init +C2897713|T037|AB|V67.1XXD|ICD10CM|Pasngr in hv veh inj in clsn w statnry object nontraf, subs|Pasngr in hv veh inj in clsn w statnry object nontraf, subs +C2897714|T037|AB|V67.1XXS|ICD10CM|Pasngr in hv veh inj in clsn w statnry object nontraf, sqla|Pasngr in hv veh inj in clsn w statnry object nontraf, sqla +C2897715|T037|AB|V67.2|ICD10CM|Person outside hv veh inj in clsn w statnry object nontraf|Person outside hv veh inj in clsn w statnry object nontraf +C2897716|T037|AB|V67.2XXA|ICD10CM|Person outsd hv veh inj in clsn w statnry obj nontraf, init|Person outsd hv veh inj in clsn w statnry obj nontraf, init +C2897717|T037|AB|V67.2XXD|ICD10CM|Person outsd hv veh inj in clsn w statnry obj nontraf, subs|Person outsd hv veh inj in clsn w statnry obj nontraf, subs +C2897718|T037|AB|V67.2XXS|ICD10CM|Person outsd hv veh inj in clsn w statnry obj nontraf, sqla|Person outsd hv veh inj in clsn w statnry obj nontraf, sqla +C2897719|T037|AB|V67.3|ICD10CM|Occup of hv veh injured in clsn w statnry object nontraf|Occup of hv veh injured in clsn w statnry object nontraf +C2897720|T037|AB|V67.3XXA|ICD10CM|Occup of hv veh inj in clsn w statnry object nontraf, init|Occup of hv veh inj in clsn w statnry object nontraf, init +C2897721|T037|AB|V67.3XXD|ICD10CM|Occup of hv veh inj in clsn w statnry object nontraf, subs|Occup of hv veh inj in clsn w statnry object nontraf, subs +C2897722|T037|AB|V67.3XXS|ICD10CM|Occup of hv veh inj in clsn w statnry object nontraf, sqla|Occup of hv veh inj in clsn w statnry object nontraf, sqla +C2897723|T037|AB|V67.4|ICD10CM|Prsn brd/alit hv veh injured in collision w statnry object|Prsn brd/alit hv veh injured in collision w statnry object +C2897724|T037|AB|V67.4XXA|ICD10CM|Prsn brd/alit hv veh injured in clsn w statnry object, init|Prsn brd/alit hv veh injured in clsn w statnry object, init +C2897725|T037|AB|V67.4XXD|ICD10CM|Prsn brd/alit hv veh injured in clsn w statnry object, subs|Prsn brd/alit hv veh injured in clsn w statnry object, subs +C2897726|T037|AB|V67.4XXS|ICD10CM|Prsn brd/alit hv veh inj in clsn w statnry object, sequela|Prsn brd/alit hv veh inj in clsn w statnry object, sequela +C2897727|T037|AB|V67.5|ICD10CM|Driver of hv veh injured in clsn w statnry object in traf|Driver of hv veh injured in clsn w statnry object in traf +C2897728|T037|AB|V67.5XXA|ICD10CM|Driver of hv veh inj in clsn w statnry object in traf, init|Driver of hv veh inj in clsn w statnry object in traf, init +C2897729|T037|AB|V67.5XXD|ICD10CM|Driver of hv veh inj in clsn w statnry object in traf, subs|Driver of hv veh inj in clsn w statnry object in traf, subs +C2897730|T037|AB|V67.5XXS|ICD10CM|Driver of hv veh inj in clsn w statnry object in traf, sqla|Driver of hv veh inj in clsn w statnry object in traf, sqla +C2897731|T037|AB|V67.6|ICD10CM|Passenger in hv veh injured in clsn w statnry object in traf|Passenger in hv veh injured in clsn w statnry object in traf +C2897732|T037|AB|V67.6XXA|ICD10CM|Pasngr in hv veh inj in clsn w statnry object in traf, init|Pasngr in hv veh inj in clsn w statnry object in traf, init +C2897733|T037|AB|V67.6XXD|ICD10CM|Pasngr in hv veh inj in clsn w statnry object in traf, subs|Pasngr in hv veh inj in clsn w statnry object in traf, subs +C2897734|T037|AB|V67.6XXS|ICD10CM|Pasngr in hv veh inj in clsn w statnry object in traf, sqla|Pasngr in hv veh inj in clsn w statnry object in traf, sqla +C2897735|T037|AB|V67.7|ICD10CM|Person outside hv veh inj in clsn w statnry object in traf|Person outside hv veh inj in clsn w statnry object in traf +C2897736|T037|AB|V67.7XXA|ICD10CM|Person outsd hv veh inj in clsn w statnry obj in traf, init|Person outsd hv veh inj in clsn w statnry obj in traf, init +C2897737|T037|AB|V67.7XXD|ICD10CM|Person outsd hv veh inj in clsn w statnry obj in traf, subs|Person outsd hv veh inj in clsn w statnry obj in traf, subs +C2897738|T037|AB|V67.7XXS|ICD10CM|Person outsd hv veh inj in clsn w statnry obj in traf, sqla|Person outsd hv veh inj in clsn w statnry obj in traf, sqla +C2897739|T037|AB|V67.9|ICD10CM|Occup of hv veh injured in clsn w statnry object in traf|Occup of hv veh injured in clsn w statnry object in traf +C2897740|T037|AB|V67.9XXA|ICD10CM|Occup of hv veh inj in clsn w statnry object in traf, init|Occup of hv veh inj in clsn w statnry object in traf, init +C2897741|T037|AB|V67.9XXD|ICD10CM|Occup of hv veh inj in clsn w statnry object in traf, subs|Occup of hv veh inj in clsn w statnry object in traf, subs +C2897742|T037|AB|V67.9XXS|ICD10CM|Occup of hv veh inj in clsn w statnry object in traf, sqla|Occup of hv veh inj in clsn w statnry object in traf, sqla +C0477024|T037|HT|V68|ICD10|Occupant of heavy transport vehicle injured in noncollision transport accident|Occupant of heavy transport vehicle injured in noncollision transport accident +C0477024|T037|HT|V68|ICD10CM|Occupant of heavy transport vehicle injured in noncollision transport accident|Occupant of heavy transport vehicle injured in noncollision transport accident +C0477024|T037|AB|V68|ICD10CM|Occupant of hv veh injured in nonclsn transport accident|Occupant of hv veh injured in nonclsn transport accident +C4290442|T037|ET|V68|ICD10CM|overturning heavy transport vehicle NOS|overturning heavy transport vehicle NOS +C4290443|T037|ET|V68|ICD10CM|overturning heavy transport vehicle without collision|overturning heavy transport vehicle without collision +C2897745|T037|HT|V68.0|ICD10CM|Driver of heavy transport vehicle injured in noncollision transport accident in nontraffic accident|Driver of heavy transport vehicle injured in noncollision transport accident in nontraffic accident +C2897745|T037|AB|V68.0|ICD10CM|Driver of hv veh injured in nonclsn trnsp accident nontraf|Driver of hv veh injured in nonclsn trnsp accident nontraf +C2897746|T037|AB|V68.0XXA|ICD10CM|Driver of hv veh injured in nonclsn trnsp acc nontraf, init|Driver of hv veh injured in nonclsn trnsp acc nontraf, init +C2897747|T037|AB|V68.0XXD|ICD10CM|Driver of hv veh injured in nonclsn trnsp acc nontraf, subs|Driver of hv veh injured in nonclsn trnsp acc nontraf, subs +C2897748|T037|AB|V68.0XXS|ICD10CM|Driver of hv veh inj in nonclsn trnsp acc nontraf, sequela|Driver of hv veh inj in nonclsn trnsp acc nontraf, sequela +C2897749|T037|AB|V68.1|ICD10CM|Pasngr in hv veh injured in nonclsn trnsp accident nontraf|Pasngr in hv veh injured in nonclsn trnsp accident nontraf +C2897750|T037|AB|V68.1XXA|ICD10CM|Pasngr in hv veh injured in nonclsn trnsp acc nontraf, init|Pasngr in hv veh injured in nonclsn trnsp acc nontraf, init +C2897751|T037|AB|V68.1XXD|ICD10CM|Pasngr in hv veh injured in nonclsn trnsp acc nontraf, subs|Pasngr in hv veh injured in nonclsn trnsp acc nontraf, subs +C2897752|T037|AB|V68.1XXS|ICD10CM|Pasngr in hv veh inj in nonclsn trnsp acc nontraf, sequela|Pasngr in hv veh inj in nonclsn trnsp acc nontraf, sequela +C2897753|T037|AB|V68.2|ICD10CM|Person outside hv veh injured in nonclsn trnsp acc nontraf|Person outside hv veh injured in nonclsn trnsp acc nontraf +C2897754|T037|AB|V68.2XXA|ICD10CM|Person outside hv veh inj in nonclsn trnsp acc nontraf, init|Person outside hv veh inj in nonclsn trnsp acc nontraf, init +C2897755|T037|AB|V68.2XXD|ICD10CM|Person outside hv veh inj in nonclsn trnsp acc nontraf, subs|Person outside hv veh inj in nonclsn trnsp acc nontraf, subs +C2897756|T037|AB|V68.2XXS|ICD10CM|Person outsd hv veh inj in nonclsn trnsp acc nontraf, sqla|Person outsd hv veh inj in nonclsn trnsp acc nontraf, sqla +C2897757|T037|AB|V68.3|ICD10CM|Occup of hv veh injured in nonclsn trnsp accident nontraf|Occup of hv veh injured in nonclsn trnsp accident nontraf +C2897758|T037|AB|V68.3XXA|ICD10CM|Occup of hv veh injured in nonclsn trnsp acc nontraf, init|Occup of hv veh injured in nonclsn trnsp acc nontraf, init +C2897759|T037|AB|V68.3XXD|ICD10CM|Occup of hv veh injured in nonclsn trnsp acc nontraf, subs|Occup of hv veh injured in nonclsn trnsp acc nontraf, subs +C2897760|T037|AB|V68.3XXS|ICD10CM|Occup of hv veh inj in nonclsn trnsp acc nontraf, sequela|Occup of hv veh inj in nonclsn trnsp acc nontraf, sequela +C2897761|T037|HT|V68.4|ICD10CM|Person boarding or alighting a heavy transport vehicle injured in noncollision transport accident|Person boarding or alighting a heavy transport vehicle injured in noncollision transport accident +C2897761|T037|AB|V68.4|ICD10CM|Prsn brd/alit hv veh injured in nonclsn transport accident|Prsn brd/alit hv veh injured in nonclsn transport accident +C2897762|T037|AB|V68.4XXA|ICD10CM|Prsn brd/alit hv veh injured in nonclsn trnsp accident, init|Prsn brd/alit hv veh injured in nonclsn trnsp accident, init +C2897763|T037|AB|V68.4XXD|ICD10CM|Prsn brd/alit hv veh injured in nonclsn trnsp accident, subs|Prsn brd/alit hv veh injured in nonclsn trnsp accident, subs +C2897764|T037|AB|V68.4XXS|ICD10CM|Prsn brd/alit hv veh injured in nonclsn trnsp acc, sequela|Prsn brd/alit hv veh injured in nonclsn trnsp acc, sequela +C2897765|T037|HT|V68.5|ICD10CM|Driver of heavy transport vehicle injured in noncollision transport accident in traffic accident|Driver of heavy transport vehicle injured in noncollision transport accident in traffic accident +C2897765|T037|AB|V68.5|ICD10CM|Driver of hv veh injured in nonclsn trnsp accident in traf|Driver of hv veh injured in nonclsn trnsp accident in traf +C2897766|T037|AB|V68.5XXA|ICD10CM|Driver of hv veh injured in nonclsn trnsp acc in traf, init|Driver of hv veh injured in nonclsn trnsp acc in traf, init +C2897767|T037|AB|V68.5XXD|ICD10CM|Driver of hv veh injured in nonclsn trnsp acc in traf, subs|Driver of hv veh injured in nonclsn trnsp acc in traf, subs +C2897768|T037|AB|V68.5XXS|ICD10CM|Driver of hv veh inj in nonclsn trnsp acc in traf, sequela|Driver of hv veh inj in nonclsn trnsp acc in traf, sequela +C2897769|T037|AB|V68.6|ICD10CM|Pasngr in hv veh injured in nonclsn trnsp accident in traf|Pasngr in hv veh injured in nonclsn trnsp accident in traf +C2897769|T037|HT|V68.6|ICD10CM|Passenger in heavy transport vehicle injured in noncollision transport accident in traffic accident|Passenger in heavy transport vehicle injured in noncollision transport accident in traffic accident +C2897770|T037|AB|V68.6XXA|ICD10CM|Pasngr in hv veh injured in nonclsn trnsp acc in traf, init|Pasngr in hv veh injured in nonclsn trnsp acc in traf, init +C2897771|T037|AB|V68.6XXD|ICD10CM|Pasngr in hv veh injured in nonclsn trnsp acc in traf, subs|Pasngr in hv veh injured in nonclsn trnsp acc in traf, subs +C2897772|T037|AB|V68.6XXS|ICD10CM|Pasngr in hv veh inj in nonclsn trnsp acc in traf, sequela|Pasngr in hv veh inj in nonclsn trnsp acc in traf, sequela +C2897773|T037|AB|V68.7|ICD10CM|Person outside hv veh injured in nonclsn trnsp acc in traf|Person outside hv veh injured in nonclsn trnsp acc in traf +C2897774|T037|AB|V68.7XXA|ICD10CM|Person outside hv veh inj in nonclsn trnsp acc in traf, init|Person outside hv veh inj in nonclsn trnsp acc in traf, init +C2897775|T037|AB|V68.7XXD|ICD10CM|Person outside hv veh inj in nonclsn trnsp acc in traf, subs|Person outside hv veh inj in nonclsn trnsp acc in traf, subs +C2897776|T037|AB|V68.7XXS|ICD10CM|Person outsd hv veh inj in nonclsn trnsp acc in traf, sqla|Person outsd hv veh inj in nonclsn trnsp acc in traf, sqla +C2897777|T037|AB|V68.9|ICD10CM|Occup of hv veh injured in nonclsn trnsp accident in traf|Occup of hv veh injured in nonclsn trnsp accident in traf +C2897778|T037|AB|V68.9XXA|ICD10CM|Occup of hv veh injured in nonclsn trnsp acc in traf, init|Occup of hv veh injured in nonclsn trnsp acc in traf, init +C2897779|T037|AB|V68.9XXD|ICD10CM|Occup of hv veh injured in nonclsn trnsp acc in traf, subs|Occup of hv veh injured in nonclsn trnsp acc in traf, subs +C2897780|T037|AB|V68.9XXS|ICD10CM|Occup of hv veh inj in nonclsn trnsp acc in traf, sequela|Occup of hv veh inj in nonclsn trnsp acc in traf, sequela +C0477034|T037|HT|V69|ICD10|Occupant of heavy transport vehicle injured in other and unspecified transport accidents|Occupant of heavy transport vehicle injured in other and unspecified transport accidents +C0477034|T037|HT|V69|ICD10CM|Occupant of heavy transport vehicle injured in other and unspecified transport accidents|Occupant of heavy transport vehicle injured in other and unspecified transport accidents +C0477034|T037|AB|V69|ICD10CM|Occupant of hv veh injured in oth and unsp transport acc|Occupant of hv veh injured in oth and unsp transport acc +C0496481|T037|PT|V69.0|ICD10|Driver injured in collision with other and unspecified motor vehicles in nontraffic accident|Driver injured in collision with other and unspecified motor vehicles in nontraffic accident +C0496481|T037|AB|V69.0|ICD10CM|Driver of hv veh injured in clsn w oth and unsp mv nontraf|Driver of hv veh injured in clsn w oth and unsp mv nontraf +C2897781|T037|AB|V69.00|ICD10CM|Driver of hv veh injured in collision w unsp mv nontraf|Driver of hv veh injured in collision w unsp mv nontraf +C2897782|T037|AB|V69.00XA|ICD10CM|Driver of hv veh injured in clsn w unsp mv nontraf, init|Driver of hv veh injured in clsn w unsp mv nontraf, init +C2897783|T037|AB|V69.00XD|ICD10CM|Driver of hv veh injured in clsn w unsp mv nontraf, subs|Driver of hv veh injured in clsn w unsp mv nontraf, subs +C2897784|T037|AB|V69.00XS|ICD10CM|Driver of hv veh injured in clsn w unsp mv nontraf, sequela|Driver of hv veh injured in clsn w unsp mv nontraf, sequela +C2897785|T037|AB|V69.09|ICD10CM|Driver of hv veh injured in collision w oth mv nontraf|Driver of hv veh injured in collision w oth mv nontraf +C2897786|T037|AB|V69.09XA|ICD10CM|Driver of hv veh injured in collision w oth mv nontraf, init|Driver of hv veh injured in collision w oth mv nontraf, init +C2897787|T037|AB|V69.09XD|ICD10CM|Driver of hv veh injured in collision w oth mv nontraf, subs|Driver of hv veh injured in collision w oth mv nontraf, subs +C2897788|T037|AB|V69.09XS|ICD10CM|Driver of hv veh injured in clsn w oth mv nontraf, sequela|Driver of hv veh injured in clsn w oth mv nontraf, sequela +C0496482|T037|AB|V69.1|ICD10CM|Pasngr in hv veh injured in clsn w oth and unsp mv nontraf|Pasngr in hv veh injured in clsn w oth and unsp mv nontraf +C0496482|T037|PT|V69.1|ICD10|Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident|Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident +C2897789|T037|AB|V69.10|ICD10CM|Passenger in hv veh injured in collision w unsp mv nontraf|Passenger in hv veh injured in collision w unsp mv nontraf +C2897790|T037|AB|V69.10XA|ICD10CM|Passenger in hv veh injured in clsn w unsp mv nontraf, init|Passenger in hv veh injured in clsn w unsp mv nontraf, init +C2897791|T037|AB|V69.10XD|ICD10CM|Passenger in hv veh injured in clsn w unsp mv nontraf, subs|Passenger in hv veh injured in clsn w unsp mv nontraf, subs +C2897792|T037|AB|V69.10XS|ICD10CM|Pasngr in hv veh injured in clsn w unsp mv nontraf, sequela|Pasngr in hv veh injured in clsn w unsp mv nontraf, sequela +C2897793|T037|AB|V69.19|ICD10CM|Passenger in hv veh injured in collision w oth mv nontraf|Passenger in hv veh injured in collision w oth mv nontraf +C2897794|T037|AB|V69.19XA|ICD10CM|Passenger in hv veh injured in clsn w oth mv nontraf, init|Passenger in hv veh injured in clsn w oth mv nontraf, init +C2897795|T037|AB|V69.19XD|ICD10CM|Passenger in hv veh injured in clsn w oth mv nontraf, subs|Passenger in hv veh injured in clsn w oth mv nontraf, subs +C2897796|T037|AB|V69.19XS|ICD10CM|Pasngr in hv veh injured in clsn w oth mv nontraf, sequela|Pasngr in hv veh injured in clsn w oth mv nontraf, sequela +C0477037|T037|AB|V69.2|ICD10CM|Occup of hv veh injured in clsn w oth and unsp mv nontraf|Occup of hv veh injured in clsn w oth and unsp mv nontraf +C2897797|T037|ET|V69.20|ICD10CM|Collision NOS involving heavy transport vehicle, nontraffic|Collision NOS involving heavy transport vehicle, nontraffic +C2897798|T037|AB|V69.20|ICD10CM|Occup of hv veh injured in collision w unsp mv nontraf|Occup of hv veh injured in collision w unsp mv nontraf +C2897799|T037|AB|V69.20XA|ICD10CM|Occup of hv veh injured in collision w unsp mv nontraf, init|Occup of hv veh injured in collision w unsp mv nontraf, init +C2897800|T037|AB|V69.20XD|ICD10CM|Occup of hv veh injured in collision w unsp mv nontraf, subs|Occup of hv veh injured in collision w unsp mv nontraf, subs +C2897801|T037|AB|V69.20XS|ICD10CM|Occup of hv veh injured in clsn w unsp mv nontraf, sequela|Occup of hv veh injured in clsn w unsp mv nontraf, sequela +C2897802|T037|AB|V69.29|ICD10CM|Occup of hv veh injured in collision w oth mv nontraf|Occup of hv veh injured in collision w oth mv nontraf +C2897803|T037|AB|V69.29XA|ICD10CM|Occup of hv veh injured in collision w oth mv nontraf, init|Occup of hv veh injured in collision w oth mv nontraf, init +C2897804|T037|AB|V69.29XD|ICD10CM|Occup of hv veh injured in collision w oth mv nontraf, subs|Occup of hv veh injured in collision w oth mv nontraf, subs +C2897805|T037|AB|V69.29XS|ICD10CM|Occup of hv veh injured in clsn w oth mv nontraf, sequela|Occup of hv veh injured in clsn w oth mv nontraf, sequela +C2897806|T037|ET|V69.3|ICD10CM|Accident NOS involving heavy transport vehicle, nontraffic|Accident NOS involving heavy transport vehicle, nontraffic +C2897807|T037|HT|V69.3|ICD10CM|Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified nontraffic accident|Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified nontraffic accident +C2897807|T037|AB|V69.3|ICD10CM|Occupant (driver) of hv veh injured in unsp nontraf|Occupant (driver) of hv veh injured in unsp nontraf +C0477038|T037|PT|V69.3|ICD10|Occupant [any] of heavy transport vehicle injured in unspecified nontraffic accident|Occupant [any] of heavy transport vehicle injured in unspecified nontraffic accident +C2897808|T037|ET|V69.3|ICD10CM|Occupant of heavy transport vehicle injured in nontraffic accident NOS|Occupant of heavy transport vehicle injured in nontraffic accident NOS +C2897809|T037|AB|V69.3XXA|ICD10CM|Occupant (driver) of hv veh injured in unsp nontraf, init|Occupant (driver) of hv veh injured in unsp nontraf, init +C2897810|T037|AB|V69.3XXD|ICD10CM|Occupant (driver) of hv veh injured in unsp nontraf, subs|Occupant (driver) of hv veh injured in unsp nontraf, subs +C2897811|T037|AB|V69.3XXS|ICD10CM|Occupant (driver) of hv veh injured in unsp nontraf, sequela|Occupant (driver) of hv veh injured in unsp nontraf, sequela +C0496483|T037|PT|V69.4|ICD10|Driver injured in collision with other and unspecified motor vehicles in traffic accident|Driver injured in collision with other and unspecified motor vehicles in traffic accident +C0496483|T037|AB|V69.4|ICD10CM|Driver of hv veh injured in clsn w oth and unsp mv in traf|Driver of hv veh injured in clsn w oth and unsp mv in traf +C2897812|T037|AB|V69.40|ICD10CM|Driver of hv veh injured in collision w unsp mv in traf|Driver of hv veh injured in collision w unsp mv in traf +C2897813|T037|AB|V69.40XA|ICD10CM|Driver of hv veh injured in clsn w unsp mv in traf, init|Driver of hv veh injured in clsn w unsp mv in traf, init +C2897814|T037|AB|V69.40XD|ICD10CM|Driver of hv veh injured in clsn w unsp mv in traf, subs|Driver of hv veh injured in clsn w unsp mv in traf, subs +C2897815|T037|AB|V69.40XS|ICD10CM|Driver of hv veh injured in clsn w unsp mv in traf, sequela|Driver of hv veh injured in clsn w unsp mv in traf, sequela +C2897816|T037|HT|V69.49|ICD10CM|Driver of heavy transport vehicle injured in collision with other motor vehicles in traffic accident|Driver of heavy transport vehicle injured in collision with other motor vehicles in traffic accident +C2897816|T037|AB|V69.49|ICD10CM|Driver of hv veh injured in collision w oth mv in traf|Driver of hv veh injured in collision w oth mv in traf +C2897817|T037|AB|V69.49XA|ICD10CM|Driver of hv veh injured in collision w oth mv in traf, init|Driver of hv veh injured in collision w oth mv in traf, init +C2897818|T037|AB|V69.49XD|ICD10CM|Driver of hv veh injured in collision w oth mv in traf, subs|Driver of hv veh injured in collision w oth mv in traf, subs +C2897819|T037|AB|V69.49XS|ICD10CM|Driver of hv veh injured in clsn w oth mv in traf, sequela|Driver of hv veh injured in clsn w oth mv in traf, sequela +C0496484|T037|AB|V69.5|ICD10CM|Pasngr in hv veh injured in clsn w oth and unsp mv in traf|Pasngr in hv veh injured in clsn w oth and unsp mv in traf +C0496484|T037|PT|V69.5|ICD10|Passenger injured in collision with other and unspecified motor vehicles in traffic accident|Passenger injured in collision with other and unspecified motor vehicles in traffic accident +C2897820|T037|AB|V69.50|ICD10CM|Passenger in hv veh injured in collision w unsp mv in traf|Passenger in hv veh injured in collision w unsp mv in traf +C2897821|T037|AB|V69.50XA|ICD10CM|Passenger in hv veh injured in clsn w unsp mv in traf, init|Passenger in hv veh injured in clsn w unsp mv in traf, init +C2897822|T037|AB|V69.50XD|ICD10CM|Passenger in hv veh injured in clsn w unsp mv in traf, subs|Passenger in hv veh injured in clsn w unsp mv in traf, subs +C2897823|T037|AB|V69.50XS|ICD10CM|Pasngr in hv veh injured in clsn w unsp mv in traf, sequela|Pasngr in hv veh injured in clsn w unsp mv in traf, sequela +C2897824|T037|AB|V69.59|ICD10CM|Passenger in hv veh injured in collision w oth mv in traf|Passenger in hv veh injured in collision w oth mv in traf +C2897825|T037|AB|V69.59XA|ICD10CM|Passenger in hv veh injured in clsn w oth mv in traf, init|Passenger in hv veh injured in clsn w oth mv in traf, init +C2897826|T037|AB|V69.59XD|ICD10CM|Passenger in hv veh injured in clsn w oth mv in traf, subs|Passenger in hv veh injured in clsn w oth mv in traf, subs +C2897827|T037|AB|V69.59XS|ICD10CM|Pasngr in hv veh injured in clsn w oth mv in traf, sequela|Pasngr in hv veh injured in clsn w oth mv in traf, sequela +C0477041|T037|AB|V69.6|ICD10CM|Occup of hv veh injured in clsn w oth and unsp mv in traf|Occup of hv veh injured in clsn w oth and unsp mv in traf +C2897828|T037|ET|V69.60|ICD10CM|Collision NOS involving heavy transport vehicle (traffic)|Collision NOS involving heavy transport vehicle (traffic) +C2897829|T037|AB|V69.60|ICD10CM|Occup of hv veh injured in collision w unsp mv in traf|Occup of hv veh injured in collision w unsp mv in traf +C2897830|T037|AB|V69.60XA|ICD10CM|Occup of hv veh injured in collision w unsp mv in traf, init|Occup of hv veh injured in collision w unsp mv in traf, init +C2897831|T037|AB|V69.60XD|ICD10CM|Occup of hv veh injured in collision w unsp mv in traf, subs|Occup of hv veh injured in collision w unsp mv in traf, subs +C2897832|T037|AB|V69.60XS|ICD10CM|Occup of hv veh injured in clsn w unsp mv in traf, sequela|Occup of hv veh injured in clsn w unsp mv in traf, sequela +C2897833|T037|AB|V69.69|ICD10CM|Occup of hv veh injured in collision w oth mv in traf|Occup of hv veh injured in collision w oth mv in traf +C2897834|T037|AB|V69.69XA|ICD10CM|Occup of hv veh injured in collision w oth mv in traf, init|Occup of hv veh injured in collision w oth mv in traf, init +C2897835|T037|AB|V69.69XD|ICD10CM|Occup of hv veh injured in collision w oth mv in traf, subs|Occup of hv veh injured in collision w oth mv in traf, subs +C2897836|T037|AB|V69.69XS|ICD10CM|Occup of hv veh injured in clsn w oth mv in traf, sequela|Occup of hv veh injured in clsn w oth mv in traf, sequela +C2897837|T037|AB|V69.8|ICD10CM|Occupant (driver) of hv veh injured in oth transport acc|Occupant (driver) of hv veh injured in oth transport acc +C0477042|T037|PT|V69.8|ICD10|Occupant [any] of heavy transport vehicle injured in other specified transport accidents|Occupant [any] of heavy transport vehicle injured in other specified transport accidents +C2897838|T037|AB|V69.81|ICD10CM|Occupant of hv veh injured in trnsp acc w military vehicle|Occupant of hv veh injured in trnsp acc w military vehicle +C2897839|T037|AB|V69.81XA|ICD10CM|Occ of hv veh injured in trnsp acc w miltry vehicle, init|Occ of hv veh injured in trnsp acc w miltry vehicle, init +C2897840|T037|AB|V69.81XD|ICD10CM|Occ of hv veh injured in trnsp acc w miltry vehicle, subs|Occ of hv veh injured in trnsp acc w miltry vehicle, subs +C2897841|T037|AB|V69.81XS|ICD10CM|Occ of hv veh injured in trnsp acc w miltry vehicle, sequela|Occ of hv veh injured in trnsp acc w miltry vehicle, sequela +C2897837|T037|AB|V69.88|ICD10CM|Occupant (driver) of hv veh injured in oth transport acc|Occupant (driver) of hv veh injured in oth transport acc +C2897842|T037|AB|V69.88XA|ICD10CM|Occupant (driver) of hv veh injured in oth trnsp acc, init|Occupant (driver) of hv veh injured in oth trnsp acc, init +C2897843|T037|AB|V69.88XD|ICD10CM|Occupant (driver) of hv veh injured in oth trnsp acc, subs|Occupant (driver) of hv veh injured in oth trnsp acc, subs +C2897844|T037|AB|V69.88XS|ICD10CM|Occupant of hv veh injured in oth trnsp acc, sequela|Occupant of hv veh injured in oth trnsp acc, sequela +C2897845|T037|ET|V69.9|ICD10CM|Accident NOS involving heavy transport vehicle|Accident NOS involving heavy transport vehicle +C2897846|T037|HT|V69.9|ICD10CM|Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified traffic accident|Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified traffic accident +C2897846|T037|AB|V69.9|ICD10CM|Occupant (driver) (passenger) of hv veh injured in unsp traf|Occupant (driver) (passenger) of hv veh injured in unsp traf +C0477043|T037|PT|V69.9|ICD10|Occupant [any] of heavy transport vehicle injured in unspecified traffic accident|Occupant [any] of heavy transport vehicle injured in unspecified traffic accident +C2897847|T037|AB|V69.9XXA|ICD10CM|Occupant (driver) of hv veh injured in unsp traf, init|Occupant (driver) of hv veh injured in unsp traf, init +C2897848|T037|AB|V69.9XXD|ICD10CM|Occupant (driver) of hv veh injured in unsp traf, subs|Occupant (driver) of hv veh injured in unsp traf, subs +C2897849|T037|AB|V69.9XXS|ICD10CM|Occupant (driver) of hv veh injured in unsp traf, sequela|Occupant (driver) of hv veh injured in unsp traf, sequela +C0477045|T037|HT|V70|ICD10|Bus occupant injured in collision with pedestrian or animal|Bus occupant injured in collision with pedestrian or animal +C0477045|T037|AB|V70|ICD10CM|Bus occupant injured in collision with pedestrian or animal|Bus occupant injured in collision with pedestrian or animal +C0477045|T037|HT|V70|ICD10CM|Bus occupant injured in collision with pedestrian or animal|Bus occupant injured in collision with pedestrian or animal +C0477044|T037|HT|V70-V79|ICD10CM|Bus occupant injured in transport accident (V70-V79)|Bus occupant injured in transport accident (V70-V79) +C4290444|T037|ET|V70-V79|ICD10CM|motorcoach|motorcoach +C0477044|T037|HT|V70-V79.9|ICD10|Bus occupant injured in transport accident|Bus occupant injured in transport accident +C0477046|T037|PT|V70.0|ICD10|Bus occupant injured in collision with pedestrian or animal, driver, nontraffic accident|Bus occupant injured in collision with pedestrian or animal, driver, nontraffic accident +C2897851|T037|AB|V70.0|ICD10CM|Driver of bus injured in collision w ped/anml nontraf|Driver of bus injured in collision w ped/anml nontraf +C2897851|T037|HT|V70.0|ICD10CM|Driver of bus injured in collision with pedestrian or animal in nontraffic accident|Driver of bus injured in collision with pedestrian or animal in nontraffic accident +C2897852|T037|AB|V70.0XXA|ICD10CM|Driver of bus injured in collision w ped/anml nontraf, init|Driver of bus injured in collision w ped/anml nontraf, init +C2897853|T037|AB|V70.0XXD|ICD10CM|Driver of bus injured in collision w ped/anml nontraf, subs|Driver of bus injured in collision w ped/anml nontraf, subs +C2897854|T037|AB|V70.0XXS|ICD10CM|Driver of bus injured in clsn w ped/anml nontraf, sequela|Driver of bus injured in clsn w ped/anml nontraf, sequela +C2897854|T037|PT|V70.0XXS|ICD10CM|Driver of bus injured in collision with pedestrian or animal in nontraffic accident, sequela|Driver of bus injured in collision with pedestrian or animal in nontraffic accident, sequela +C0477047|T037|PT|V70.1|ICD10|Bus occupant injured in collision with pedestrian or animal, passenger, nontraffic accident|Bus occupant injured in collision with pedestrian or animal, passenger, nontraffic accident +C2897855|T037|AB|V70.1|ICD10CM|Passenger on bus injured in collision w ped/anml nontraf|Passenger on bus injured in collision w ped/anml nontraf +C2897855|T037|HT|V70.1|ICD10CM|Passenger on bus injured in collision with pedestrian or animal in nontraffic accident|Passenger on bus injured in collision with pedestrian or animal in nontraffic accident +C2897856|T037|AB|V70.1XXA|ICD10CM|Passenger on bus injured in clsn w ped/anml nontraf, init|Passenger on bus injured in clsn w ped/anml nontraf, init +C2897857|T037|AB|V70.1XXD|ICD10CM|Passenger on bus injured in clsn w ped/anml nontraf, subs|Passenger on bus injured in clsn w ped/anml nontraf, subs +C2897858|T037|AB|V70.1XXS|ICD10CM|Passenger on bus injured in clsn w ped/anml nontraf, sequela|Passenger on bus injured in clsn w ped/anml nontraf, sequela +C2897858|T037|PT|V70.1XXS|ICD10CM|Passenger on bus injured in collision with pedestrian or animal in nontraffic accident, sequela|Passenger on bus injured in collision with pedestrian or animal in nontraffic accident, sequela +C2897859|T037|HT|V70.2|ICD10CM|Person on outside of bus injured in collision with pedestrian or animal in nontraffic accident|Person on outside of bus injured in collision with pedestrian or animal in nontraffic accident +C2897859|T037|AB|V70.2|ICD10CM|Person outside bus injured in collision w ped/anml nontraf|Person outside bus injured in collision w ped/anml nontraf +C2897860|T037|AB|V70.2XXA|ICD10CM|Person outside bus injured in clsn w ped/anml nontraf, init|Person outside bus injured in clsn w ped/anml nontraf, init +C2897861|T037|AB|V70.2XXD|ICD10CM|Person outside bus injured in clsn w ped/anml nontraf, subs|Person outside bus injured in clsn w ped/anml nontraf, subs +C2897862|T037|AB|V70.2XXS|ICD10CM|Person outside bus inj in clsn w ped/anml nontraf, sequela|Person outside bus inj in clsn w ped/anml nontraf, sequela +C2897863|T037|AB|V70.3|ICD10CM|Occup of bus injured in collision w ped/anml nontraf|Occup of bus injured in collision w ped/anml nontraf +C2897863|T037|HT|V70.3|ICD10CM|Unspecified occupant of bus injured in collision with pedestrian or animal in nontraffic accident|Unspecified occupant of bus injured in collision with pedestrian or animal in nontraffic accident +C2897864|T037|AB|V70.3XXA|ICD10CM|Occup of bus injured in collision w ped/anml nontraf, init|Occup of bus injured in collision w ped/anml nontraf, init +C2897865|T037|AB|V70.3XXD|ICD10CM|Occup of bus injured in collision w ped/anml nontraf, subs|Occup of bus injured in collision w ped/anml nontraf, subs +C2897866|T037|AB|V70.3XXS|ICD10CM|Occup of bus injured in clsn w ped/anml nontraf, sequela|Occup of bus injured in clsn w ped/anml nontraf, sequela +C0477050|T037|PT|V70.4|ICD10|Bus occupant injured in collision with pedestrian or animal, while boarding or alighting|Bus occupant injured in collision with pedestrian or animal, while boarding or alighting +C2897867|T037|HT|V70.4|ICD10CM|Person boarding or alighting from bus injured in collision with pedestrian or animal|Person boarding or alighting from bus injured in collision with pedestrian or animal +C2897867|T037|AB|V70.4|ICD10CM|Prsn brd/alit from bus injured in collision w ped/anml|Prsn brd/alit from bus injured in collision w ped/anml +C2897868|T037|AB|V70.4XXA|ICD10CM|Prsn brd/alit from bus injured in collision w ped/anml, init|Prsn brd/alit from bus injured in collision w ped/anml, init +C2897869|T037|AB|V70.4XXD|ICD10CM|Prsn brd/alit from bus injured in collision w ped/anml, subs|Prsn brd/alit from bus injured in collision w ped/anml, subs +C2897870|T037|PT|V70.4XXS|ICD10CM|Person boarding or alighting from bus injured in collision with pedestrian or animal, sequela|Person boarding or alighting from bus injured in collision with pedestrian or animal, sequela +C2897870|T037|AB|V70.4XXS|ICD10CM|Prsn brd/alit from bus injured in clsn w ped/anml, sequela|Prsn brd/alit from bus injured in clsn w ped/anml, sequela +C0477051|T037|PT|V70.5|ICD10|Bus occupant injured in collision with pedestrian or animal, driver, traffic accident|Bus occupant injured in collision with pedestrian or animal, driver, traffic accident +C2897871|T037|AB|V70.5|ICD10CM|Driver of bus injured in collision w ped/anml in traf|Driver of bus injured in collision w ped/anml in traf +C2897871|T037|HT|V70.5|ICD10CM|Driver of bus injured in collision with pedestrian or animal in traffic accident|Driver of bus injured in collision with pedestrian or animal in traffic accident +C2897872|T037|AB|V70.5XXA|ICD10CM|Driver of bus injured in collision w ped/anml in traf, init|Driver of bus injured in collision w ped/anml in traf, init +C2897872|T037|PT|V70.5XXA|ICD10CM|Driver of bus injured in collision with pedestrian or animal in traffic accident, initial encounter|Driver of bus injured in collision with pedestrian or animal in traffic accident, initial encounter +C2897873|T037|AB|V70.5XXD|ICD10CM|Driver of bus injured in collision w ped/anml in traf, subs|Driver of bus injured in collision w ped/anml in traf, subs +C2897874|T037|AB|V70.5XXS|ICD10CM|Driver of bus injured in clsn w ped/anml in traf, sequela|Driver of bus injured in clsn w ped/anml in traf, sequela +C2897874|T037|PT|V70.5XXS|ICD10CM|Driver of bus injured in collision with pedestrian or animal in traffic accident, sequela|Driver of bus injured in collision with pedestrian or animal in traffic accident, sequela +C0477052|T037|PT|V70.6|ICD10|Bus occupant injured in collision with pedestrian or animal, passenger, traffic accident|Bus occupant injured in collision with pedestrian or animal, passenger, traffic accident +C2897875|T037|AB|V70.6|ICD10CM|Passenger on bus injured in collision w ped/anml in traf|Passenger on bus injured in collision w ped/anml in traf +C2897875|T037|HT|V70.6|ICD10CM|Passenger on bus injured in collision with pedestrian or animal in traffic accident|Passenger on bus injured in collision with pedestrian or animal in traffic accident +C2897876|T037|AB|V70.6XXA|ICD10CM|Passenger on bus injured in clsn w ped/anml in traf, init|Passenger on bus injured in clsn w ped/anml in traf, init +C2897877|T037|AB|V70.6XXD|ICD10CM|Passenger on bus injured in clsn w ped/anml in traf, subs|Passenger on bus injured in clsn w ped/anml in traf, subs +C2897878|T037|AB|V70.6XXS|ICD10CM|Passenger on bus injured in clsn w ped/anml in traf, sequela|Passenger on bus injured in clsn w ped/anml in traf, sequela +C2897878|T037|PT|V70.6XXS|ICD10CM|Passenger on bus injured in collision with pedestrian or animal in traffic accident, sequela|Passenger on bus injured in collision with pedestrian or animal in traffic accident, sequela +C2897879|T037|HT|V70.7|ICD10CM|Person on outside of bus injured in collision with pedestrian or animal in traffic accident|Person on outside of bus injured in collision with pedestrian or animal in traffic accident +C2897879|T037|AB|V70.7|ICD10CM|Person outside bus injured in collision w ped/anml in traf|Person outside bus injured in collision w ped/anml in traf +C2897880|T037|AB|V70.7XXA|ICD10CM|Person outside bus injured in clsn w ped/anml in traf, init|Person outside bus injured in clsn w ped/anml in traf, init +C2897881|T037|AB|V70.7XXD|ICD10CM|Person outside bus injured in clsn w ped/anml in traf, subs|Person outside bus injured in clsn w ped/anml in traf, subs +C2897882|T037|PT|V70.7XXS|ICD10CM|Person on outside of bus injured in collision with pedestrian or animal in traffic accident, sequela|Person on outside of bus injured in collision with pedestrian or animal in traffic accident, sequela +C2897882|T037|AB|V70.7XXS|ICD10CM|Person outside bus inj in clsn w ped/anml in traf, sequela|Person outside bus inj in clsn w ped/anml in traf, sequela +C2897883|T037|AB|V70.9|ICD10CM|Occup of bus injured in collision w ped/anml in traf|Occup of bus injured in collision w ped/anml in traf +C2897883|T037|HT|V70.9|ICD10CM|Unspecified occupant of bus injured in collision with pedestrian or animal in traffic accident|Unspecified occupant of bus injured in collision with pedestrian or animal in traffic accident +C2897884|T037|AB|V70.9XXA|ICD10CM|Occup of bus injured in collision w ped/anml in traf, init|Occup of bus injured in collision w ped/anml in traf, init +C2897885|T037|AB|V70.9XXD|ICD10CM|Occup of bus injured in collision w ped/anml in traf, subs|Occup of bus injured in collision w ped/anml in traf, subs +C2897886|T037|AB|V70.9XXS|ICD10CM|Occup of bus injured in clsn w ped/anml in traf, sequela|Occup of bus injured in clsn w ped/anml in traf, sequela +C0477055|T037|HT|V71|ICD10|Bus occupant injured in collision with pedal cycle|Bus occupant injured in collision with pedal cycle +C0477055|T037|AB|V71|ICD10CM|Bus occupant injured in collision with pedal cycle|Bus occupant injured in collision with pedal cycle +C0477055|T037|HT|V71|ICD10CM|Bus occupant injured in collision with pedal cycle|Bus occupant injured in collision with pedal cycle +C0477056|T037|PT|V71.0|ICD10|Bus occupant injured in collision with pedal cycle, driver, nontraffic accident|Bus occupant injured in collision with pedal cycle, driver, nontraffic accident +C2897887|T037|AB|V71.0|ICD10CM|Driver of bus injured in collision w pedal cycle nontraf|Driver of bus injured in collision w pedal cycle nontraf +C2897887|T037|HT|V71.0|ICD10CM|Driver of bus injured in collision with pedal cycle in nontraffic accident|Driver of bus injured in collision with pedal cycle in nontraffic accident +C2897888|T037|AB|V71.0XXA|ICD10CM|Driver of bus injured in collision w pedl cyc nontraf, init|Driver of bus injured in collision w pedl cyc nontraf, init +C2897888|T037|PT|V71.0XXA|ICD10CM|Driver of bus injured in collision with pedal cycle in nontraffic accident, initial encounter|Driver of bus injured in collision with pedal cycle in nontraffic accident, initial encounter +C2897889|T037|AB|V71.0XXD|ICD10CM|Driver of bus injured in collision w pedl cyc nontraf, subs|Driver of bus injured in collision w pedl cyc nontraf, subs +C2897889|T037|PT|V71.0XXD|ICD10CM|Driver of bus injured in collision with pedal cycle in nontraffic accident, subsequent encounter|Driver of bus injured in collision with pedal cycle in nontraffic accident, subsequent encounter +C2897890|T037|AB|V71.0XXS|ICD10CM|Driver of bus injured in clsn w pedl cyc nontraf, sequela|Driver of bus injured in clsn w pedl cyc nontraf, sequela +C2897890|T037|PT|V71.0XXS|ICD10CM|Driver of bus injured in collision with pedal cycle in nontraffic accident, sequela|Driver of bus injured in collision with pedal cycle in nontraffic accident, sequela +C0477057|T037|PT|V71.1|ICD10|Bus occupant injured in collision with pedal cycle, passenger, nontraffic accident|Bus occupant injured in collision with pedal cycle, passenger, nontraffic accident +C2897891|T037|AB|V71.1|ICD10CM|Passenger on bus injured in collision w pedal cycle nontraf|Passenger on bus injured in collision w pedal cycle nontraf +C2897891|T037|HT|V71.1|ICD10CM|Passenger on bus injured in collision with pedal cycle in nontraffic accident|Passenger on bus injured in collision with pedal cycle in nontraffic accident +C2897892|T037|AB|V71.1XXA|ICD10CM|Passenger on bus injured in clsn w pedl cyc nontraf, init|Passenger on bus injured in clsn w pedl cyc nontraf, init +C2897892|T037|PT|V71.1XXA|ICD10CM|Passenger on bus injured in collision with pedal cycle in nontraffic accident, initial encounter|Passenger on bus injured in collision with pedal cycle in nontraffic accident, initial encounter +C2897893|T037|AB|V71.1XXD|ICD10CM|Passenger on bus injured in clsn w pedl cyc nontraf, subs|Passenger on bus injured in clsn w pedl cyc nontraf, subs +C2897893|T037|PT|V71.1XXD|ICD10CM|Passenger on bus injured in collision with pedal cycle in nontraffic accident, subsequent encounter|Passenger on bus injured in collision with pedal cycle in nontraffic accident, subsequent encounter +C2897894|T037|AB|V71.1XXS|ICD10CM|Passenger on bus injured in clsn w pedl cyc nontraf, sequela|Passenger on bus injured in clsn w pedl cyc nontraf, sequela +C2897894|T037|PT|V71.1XXS|ICD10CM|Passenger on bus injured in collision with pedal cycle in nontraffic accident, sequela|Passenger on bus injured in collision with pedal cycle in nontraffic accident, sequela +C2897895|T037|HT|V71.2|ICD10CM|Person on outside of bus injured in collision with pedal cycle in nontraffic accident|Person on outside of bus injured in collision with pedal cycle in nontraffic accident +C2897895|T037|AB|V71.2|ICD10CM|Person outside bus injured in collision w pedl cyc nontraf|Person outside bus injured in collision w pedl cyc nontraf +C2897896|T037|AB|V71.2XXA|ICD10CM|Person outside bus injured in clsn w pedl cyc nontraf, init|Person outside bus injured in clsn w pedl cyc nontraf, init +C2897897|T037|AB|V71.2XXD|ICD10CM|Person outside bus injured in clsn w pedl cyc nontraf, subs|Person outside bus injured in clsn w pedl cyc nontraf, subs +C2897898|T037|PT|V71.2XXS|ICD10CM|Person on outside of bus injured in collision with pedal cycle in nontraffic accident, sequela|Person on outside of bus injured in collision with pedal cycle in nontraffic accident, sequela +C2897898|T037|AB|V71.2XXS|ICD10CM|Person outside bus inj in clsn w pedl cyc nontraf, sequela|Person outside bus inj in clsn w pedl cyc nontraf, sequela +C0477059|T037|PT|V71.3|ICD10|Bus occupant injured in collision with pedal cycle, unspecified bus occupant, nontraffic accident|Bus occupant injured in collision with pedal cycle, unspecified bus occupant, nontraffic accident +C2897899|T037|AB|V71.3|ICD10CM|Occup of bus injured in collision w pedal cycle nontraf|Occup of bus injured in collision w pedal cycle nontraf +C2897899|T037|HT|V71.3|ICD10CM|Unspecified occupant of bus injured in collision with pedal cycle in nontraffic accident|Unspecified occupant of bus injured in collision with pedal cycle in nontraffic accident +C2897900|T037|AB|V71.3XXA|ICD10CM|Occup of bus injured in collision w pedl cyc nontraf, init|Occup of bus injured in collision w pedl cyc nontraf, init +C2897901|T037|AB|V71.3XXD|ICD10CM|Occup of bus injured in collision w pedl cyc nontraf, subs|Occup of bus injured in collision w pedl cyc nontraf, subs +C2897902|T037|AB|V71.3XXS|ICD10CM|Occup of bus injured in clsn w pedl cyc nontraf, sequela|Occup of bus injured in clsn w pedl cyc nontraf, sequela +C2897902|T037|PT|V71.3XXS|ICD10CM|Unspecified occupant of bus injured in collision with pedal cycle in nontraffic accident, sequela|Unspecified occupant of bus injured in collision with pedal cycle in nontraffic accident, sequela +C0477060|T037|PT|V71.4|ICD10|Bus occupant injured in collision with pedal cycle, while boarding or alighting|Bus occupant injured in collision with pedal cycle, while boarding or alighting +C2897903|T037|HT|V71.4|ICD10CM|Person boarding or alighting from bus injured in collision with pedal cycle|Person boarding or alighting from bus injured in collision with pedal cycle +C2897903|T037|AB|V71.4|ICD10CM|Prsn brd/alit from bus injured in collision w pedal cycle|Prsn brd/alit from bus injured in collision w pedal cycle +C2897904|T037|PT|V71.4XXA|ICD10CM|Person boarding or alighting from bus injured in collision with pedal cycle, initial encounter|Person boarding or alighting from bus injured in collision with pedal cycle, initial encounter +C2897904|T037|AB|V71.4XXA|ICD10CM|Prsn brd/alit from bus injured in collision w pedl cyc, init|Prsn brd/alit from bus injured in collision w pedl cyc, init +C2897905|T037|PT|V71.4XXD|ICD10CM|Person boarding or alighting from bus injured in collision with pedal cycle, subsequent encounter|Person boarding or alighting from bus injured in collision with pedal cycle, subsequent encounter +C2897905|T037|AB|V71.4XXD|ICD10CM|Prsn brd/alit from bus injured in collision w pedl cyc, subs|Prsn brd/alit from bus injured in collision w pedl cyc, subs +C2897906|T037|PT|V71.4XXS|ICD10CM|Person boarding or alighting from bus injured in collision with pedal cycle, sequela|Person boarding or alighting from bus injured in collision with pedal cycle, sequela +C2897906|T037|AB|V71.4XXS|ICD10CM|Prsn brd/alit from bus injured in clsn w pedl cyc, sequela|Prsn brd/alit from bus injured in clsn w pedl cyc, sequela +C0477061|T037|PT|V71.5|ICD10|Bus occupant injured in collision with pedal cycle, driver, traffic accident|Bus occupant injured in collision with pedal cycle, driver, traffic accident +C2897907|T037|AB|V71.5|ICD10CM|Driver of bus injured in collision w pedal cycle in traf|Driver of bus injured in collision w pedal cycle in traf +C2897907|T037|HT|V71.5|ICD10CM|Driver of bus injured in collision with pedal cycle in traffic accident|Driver of bus injured in collision with pedal cycle in traffic accident +C2897908|T037|AB|V71.5XXA|ICD10CM|Driver of bus injured in collision w pedl cyc in traf, init|Driver of bus injured in collision w pedl cyc in traf, init +C2897908|T037|PT|V71.5XXA|ICD10CM|Driver of bus injured in collision with pedal cycle in traffic accident, initial encounter|Driver of bus injured in collision with pedal cycle in traffic accident, initial encounter +C2897909|T037|AB|V71.5XXD|ICD10CM|Driver of bus injured in collision w pedl cyc in traf, subs|Driver of bus injured in collision w pedl cyc in traf, subs +C2897909|T037|PT|V71.5XXD|ICD10CM|Driver of bus injured in collision with pedal cycle in traffic accident, subsequent encounter|Driver of bus injured in collision with pedal cycle in traffic accident, subsequent encounter +C2897910|T037|AB|V71.5XXS|ICD10CM|Driver of bus injured in clsn w pedl cyc in traf, sequela|Driver of bus injured in clsn w pedl cyc in traf, sequela +C2897910|T037|PT|V71.5XXS|ICD10CM|Driver of bus injured in collision with pedal cycle in traffic accident, sequela|Driver of bus injured in collision with pedal cycle in traffic accident, sequela +C0477062|T037|PT|V71.6|ICD10|Bus occupant injured in collision with pedal cycle, passenger, traffic accident|Bus occupant injured in collision with pedal cycle, passenger, traffic accident +C2897911|T037|AB|V71.6|ICD10CM|Passenger on bus injured in collision w pedal cycle in traf|Passenger on bus injured in collision w pedal cycle in traf +C2897911|T037|HT|V71.6|ICD10CM|Passenger on bus injured in collision with pedal cycle in traffic accident|Passenger on bus injured in collision with pedal cycle in traffic accident +C2897912|T037|AB|V71.6XXA|ICD10CM|Passenger on bus injured in clsn w pedl cyc in traf, init|Passenger on bus injured in clsn w pedl cyc in traf, init +C2897912|T037|PT|V71.6XXA|ICD10CM|Passenger on bus injured in collision with pedal cycle in traffic accident, initial encounter|Passenger on bus injured in collision with pedal cycle in traffic accident, initial encounter +C2897913|T037|AB|V71.6XXD|ICD10CM|Passenger on bus injured in clsn w pedl cyc in traf, subs|Passenger on bus injured in clsn w pedl cyc in traf, subs +C2897913|T037|PT|V71.6XXD|ICD10CM|Passenger on bus injured in collision with pedal cycle in traffic accident, subsequent encounter|Passenger on bus injured in collision with pedal cycle in traffic accident, subsequent encounter +C2897914|T037|AB|V71.6XXS|ICD10CM|Passenger on bus injured in clsn w pedl cyc in traf, sequela|Passenger on bus injured in clsn w pedl cyc in traf, sequela +C2897914|T037|PT|V71.6XXS|ICD10CM|Passenger on bus injured in collision with pedal cycle in traffic accident, sequela|Passenger on bus injured in collision with pedal cycle in traffic accident, sequela +C0477063|T037|PT|V71.7|ICD10|Bus occupant injured in collision with pedal cycle, person on outside of vehicle, traffic accident|Bus occupant injured in collision with pedal cycle, person on outside of vehicle, traffic accident +C2897915|T037|HT|V71.7|ICD10CM|Person on outside of bus injured in collision with pedal cycle in traffic accident|Person on outside of bus injured in collision with pedal cycle in traffic accident +C2897915|T037|AB|V71.7|ICD10CM|Person outside bus injured in collision w pedl cyc in traf|Person outside bus injured in collision w pedl cyc in traf +C2897916|T037|AB|V71.7XXA|ICD10CM|Person outside bus injured in clsn w pedl cyc in traf, init|Person outside bus injured in clsn w pedl cyc in traf, init +C2897917|T037|AB|V71.7XXD|ICD10CM|Person outside bus injured in clsn w pedl cyc in traf, subs|Person outside bus injured in clsn w pedl cyc in traf, subs +C2897918|T037|PT|V71.7XXS|ICD10CM|Person on outside of bus injured in collision with pedal cycle in traffic accident, sequela|Person on outside of bus injured in collision with pedal cycle in traffic accident, sequela +C2897918|T037|AB|V71.7XXS|ICD10CM|Person outside bus inj in clsn w pedl cyc in traf, sequela|Person outside bus inj in clsn w pedl cyc in traf, sequela +C0477064|T037|PT|V71.9|ICD10|Bus occupant injured in collision with pedal cycle, unspecified bus occupant, traffic accident|Bus occupant injured in collision with pedal cycle, unspecified bus occupant, traffic accident +C2897919|T037|AB|V71.9|ICD10CM|Occup of bus injured in collision w pedal cycle in traf|Occup of bus injured in collision w pedal cycle in traf +C2897919|T037|HT|V71.9|ICD10CM|Unspecified occupant of bus injured in collision with pedal cycle in traffic accident|Unspecified occupant of bus injured in collision with pedal cycle in traffic accident +C2897920|T037|AB|V71.9XXA|ICD10CM|Occup of bus injured in collision w pedl cyc in traf, init|Occup of bus injured in collision w pedl cyc in traf, init +C2897921|T037|AB|V71.9XXD|ICD10CM|Occup of bus injured in collision w pedl cyc in traf, subs|Occup of bus injured in collision w pedl cyc in traf, subs +C2897922|T037|AB|V71.9XXS|ICD10CM|Occup of bus injured in clsn w pedl cyc in traf, sequela|Occup of bus injured in clsn w pedl cyc in traf, sequela +C2897922|T037|PT|V71.9XXS|ICD10CM|Unspecified occupant of bus injured in collision with pedal cycle in traffic accident, sequela|Unspecified occupant of bus injured in collision with pedal cycle in traffic accident, sequela +C0477065|T037|AB|V72|ICD10CM|Bus occupant injured in collision w 2/3-whl mv|Bus occupant injured in collision w 2/3-whl mv +C0477065|T037|HT|V72|ICD10CM|Bus occupant injured in collision with two- or three-wheeled motor vehicle|Bus occupant injured in collision with two- or three-wheeled motor vehicle +C0477065|T037|HT|V72|ICD10|Bus occupant injured in collision with two- or three-wheeled motor vehicle|Bus occupant injured in collision with two- or three-wheeled motor vehicle +C2897923|T037|AB|V72.0|ICD10CM|Driver of bus injured in collision w 2/3-whl mv nontraf|Driver of bus injured in collision w 2/3-whl mv nontraf +C2897923|T037|HT|V72.0|ICD10CM|Driver of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident|Driver of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident +C2897924|T037|AB|V72.0XXA|ICD10CM|Driver of bus injured in clsn w 2/3-whl mv nontraf, init|Driver of bus injured in clsn w 2/3-whl mv nontraf, init +C2897925|T037|AB|V72.0XXD|ICD10CM|Driver of bus injured in clsn w 2/3-whl mv nontraf, subs|Driver of bus injured in clsn w 2/3-whl mv nontraf, subs +C2897926|T037|AB|V72.0XXS|ICD10CM|Driver of bus injured in clsn w 2/3-whl mv nontraf, sequela|Driver of bus injured in clsn w 2/3-whl mv nontraf, sequela +C2897927|T037|AB|V72.1|ICD10CM|Passenger on bus injured in collision w 2/3-whl mv nontraf|Passenger on bus injured in collision w 2/3-whl mv nontraf +C2897928|T037|AB|V72.1XXA|ICD10CM|Passenger on bus injured in clsn w 2/3-whl mv nontraf, init|Passenger on bus injured in clsn w 2/3-whl mv nontraf, init +C2897929|T037|AB|V72.1XXD|ICD10CM|Passenger on bus injured in clsn w 2/3-whl mv nontraf, subs|Passenger on bus injured in clsn w 2/3-whl mv nontraf, subs +C2897930|T037|AB|V72.1XXS|ICD10CM|Pasngr on bus injured in clsn w 2/3-whl mv nontraf, sequela|Pasngr on bus injured in clsn w 2/3-whl mv nontraf, sequela +C2897931|T037|AB|V72.2|ICD10CM|Person outside bus injured in collision w 2/3-whl mv nontraf|Person outside bus injured in collision w 2/3-whl mv nontraf +C2897932|T037|AB|V72.2XXA|ICD10CM|Person outside bus inj in clsn w 2/3-whl mv nontraf, init|Person outside bus inj in clsn w 2/3-whl mv nontraf, init +C2897933|T037|AB|V72.2XXD|ICD10CM|Person outside bus inj in clsn w 2/3-whl mv nontraf, subs|Person outside bus inj in clsn w 2/3-whl mv nontraf, subs +C2897934|T037|AB|V72.2XXS|ICD10CM|Person outside bus inj in clsn w 2/3-whl mv nontraf, sequela|Person outside bus inj in clsn w 2/3-whl mv nontraf, sequela +C2897935|T037|AB|V72.3|ICD10CM|Occup of bus injured in collision w 2/3-whl mv nontraf|Occup of bus injured in collision w 2/3-whl mv nontraf +C2897936|T037|AB|V72.3XXA|ICD10CM|Occup of bus injured in collision w 2/3-whl mv nontraf, init|Occup of bus injured in collision w 2/3-whl mv nontraf, init +C2897937|T037|AB|V72.3XXD|ICD10CM|Occup of bus injured in collision w 2/3-whl mv nontraf, subs|Occup of bus injured in collision w 2/3-whl mv nontraf, subs +C2897938|T037|AB|V72.3XXS|ICD10CM|Occup of bus injured in clsn w 2/3-whl mv nontraf, sequela|Occup of bus injured in clsn w 2/3-whl mv nontraf, sequela +C2897939|T037|HT|V72.4|ICD10CM|Person boarding or alighting from bus injured in collision with two- or three-wheeled motor vehicle|Person boarding or alighting from bus injured in collision with two- or three-wheeled motor vehicle +C2897939|T037|AB|V72.4|ICD10CM|Prsn brd/alit from bus injured in collision w 2/3-whl mv|Prsn brd/alit from bus injured in collision w 2/3-whl mv +C2897940|T037|AB|V72.4XXA|ICD10CM|Prsn brd/alit from bus injured in clsn w 2/3-whl mv, init|Prsn brd/alit from bus injured in clsn w 2/3-whl mv, init +C2897941|T037|AB|V72.4XXD|ICD10CM|Prsn brd/alit from bus injured in clsn w 2/3-whl mv, subs|Prsn brd/alit from bus injured in clsn w 2/3-whl mv, subs +C2897942|T037|AB|V72.4XXS|ICD10CM|Prsn brd/alit from bus injured in clsn w 2/3-whl mv, sequela|Prsn brd/alit from bus injured in clsn w 2/3-whl mv, sequela +C0477071|T037|PT|V72.5|ICD10|Bus occupant injured in collision with two- or three-wheeled motor vehicle, driver, traffic accident|Bus occupant injured in collision with two- or three-wheeled motor vehicle, driver, traffic accident +C2897943|T037|AB|V72.5|ICD10CM|Driver of bus injured in collision w 2/3-whl mv in traf|Driver of bus injured in collision w 2/3-whl mv in traf +C2897943|T037|HT|V72.5|ICD10CM|Driver of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident|Driver of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident +C2897944|T037|AB|V72.5XXA|ICD10CM|Driver of bus injured in clsn w 2/3-whl mv in traf, init|Driver of bus injured in clsn w 2/3-whl mv in traf, init +C2897945|T037|AB|V72.5XXD|ICD10CM|Driver of bus injured in clsn w 2/3-whl mv in traf, subs|Driver of bus injured in clsn w 2/3-whl mv in traf, subs +C2897946|T037|AB|V72.5XXS|ICD10CM|Driver of bus injured in clsn w 2/3-whl mv in traf, sequela|Driver of bus injured in clsn w 2/3-whl mv in traf, sequela +C2897947|T037|AB|V72.6|ICD10CM|Passenger on bus injured in collision w 2/3-whl mv in traf|Passenger on bus injured in collision w 2/3-whl mv in traf +C2897947|T037|HT|V72.6|ICD10CM|Passenger on bus injured in collision with two- or three-wheeled motor vehicle in traffic accident|Passenger on bus injured in collision with two- or three-wheeled motor vehicle in traffic accident +C2897948|T037|AB|V72.6XXA|ICD10CM|Passenger on bus injured in clsn w 2/3-whl mv in traf, init|Passenger on bus injured in clsn w 2/3-whl mv in traf, init +C2897949|T037|AB|V72.6XXD|ICD10CM|Passenger on bus injured in clsn w 2/3-whl mv in traf, subs|Passenger on bus injured in clsn w 2/3-whl mv in traf, subs +C2897950|T037|AB|V72.6XXS|ICD10CM|Pasngr on bus injured in clsn w 2/3-whl mv in traf, sequela|Pasngr on bus injured in clsn w 2/3-whl mv in traf, sequela +C2897951|T037|AB|V72.7|ICD10CM|Person outside bus injured in collision w 2/3-whl mv in traf|Person outside bus injured in collision w 2/3-whl mv in traf +C2897952|T037|AB|V72.7XXA|ICD10CM|Person outside bus inj in clsn w 2/3-whl mv in traf, init|Person outside bus inj in clsn w 2/3-whl mv in traf, init +C2897953|T037|AB|V72.7XXD|ICD10CM|Person outside bus inj in clsn w 2/3-whl mv in traf, subs|Person outside bus inj in clsn w 2/3-whl mv in traf, subs +C2897954|T037|AB|V72.7XXS|ICD10CM|Person outside bus inj in clsn w 2/3-whl mv in traf, sequela|Person outside bus inj in clsn w 2/3-whl mv in traf, sequela +C2897955|T037|AB|V72.9|ICD10CM|Occup of bus injured in collision w 2/3-whl mv in traf|Occup of bus injured in collision w 2/3-whl mv in traf +C2897956|T037|AB|V72.9XXA|ICD10CM|Occup of bus injured in collision w 2/3-whl mv in traf, init|Occup of bus injured in collision w 2/3-whl mv in traf, init +C2897957|T037|AB|V72.9XXD|ICD10CM|Occup of bus injured in collision w 2/3-whl mv in traf, subs|Occup of bus injured in collision w 2/3-whl mv in traf, subs +C2897958|T037|AB|V72.9XXS|ICD10CM|Occup of bus injured in clsn w 2/3-whl mv in traf, sequela|Occup of bus injured in clsn w 2/3-whl mv in traf, sequela +C0477075|T037|HT|V73|ICD10|Bus occupant injured in collision with car, pick-up truck or van|Bus occupant injured in collision with car, pick-up truck or van +C0477075|T037|HT|V73|ICD10CM|Bus occupant injured in collision with car, pick-up truck or van|Bus occupant injured in collision with car, pick-up truck or van +C0477075|T037|AB|V73|ICD10CM|Bus occupant injured pick-up truck, pick-up truck or van|Bus occupant injured pick-up truck, pick-up truck or van +C0477076|T037|PT|V73.0|ICD10|Bus occupant injured in collision with car, pick-up truck or van, driver, nontraffic accident|Bus occupant injured in collision with car, pick-up truck or van, driver, nontraffic accident +C2897959|T037|HT|V73.0|ICD10CM|Driver of bus injured in collision with car, pick-up truck or van in nontraffic accident|Driver of bus injured in collision with car, pick-up truck or van in nontraffic accident +C2897959|T037|AB|V73.0|ICD10CM|Driver of bus injured pick-up truck, pk-up/van nontraf|Driver of bus injured pick-up truck, pk-up/van nontraf +C2897960|T037|AB|V73.0XXA|ICD10CM|Driver of bus injured pick-up truck, pk-up/van nontraf, init|Driver of bus injured pick-up truck, pk-up/van nontraf, init +C2897961|T037|AB|V73.0XXD|ICD10CM|Driver of bus injured pick-up truck, pk-up/van nontraf, subs|Driver of bus injured pick-up truck, pk-up/van nontraf, subs +C2897962|T037|AB|V73.0XXS|ICD10CM|Driver of bus inj pick-up truck, pk-up/van nontraf, sequela|Driver of bus inj pick-up truck, pk-up/van nontraf, sequela +C2897962|T037|PT|V73.0XXS|ICD10CM|Driver of bus injured in collision with car, pick-up truck or van in nontraffic accident, sequela|Driver of bus injured in collision with car, pick-up truck or van in nontraffic accident, sequela +C0477077|T037|PT|V73.1|ICD10|Bus occupant injured in collision with car, pick-up truck or van, passenger, nontraffic accident|Bus occupant injured in collision with car, pick-up truck or van, passenger, nontraffic accident +C2897963|T037|HT|V73.1|ICD10CM|Passenger on bus injured in collision with car, pick-up truck or van in nontraffic accident|Passenger on bus injured in collision with car, pick-up truck or van in nontraffic accident +C2897963|T037|AB|V73.1|ICD10CM|Passenger on bus injured pick-up truck, pk-up/van nontraf|Passenger on bus injured pick-up truck, pk-up/van nontraf +C2897964|T037|AB|V73.1XXA|ICD10CM|Pasngr on bus injured pick-up truck, pk-up/van nontraf, init|Pasngr on bus injured pick-up truck, pk-up/van nontraf, init +C2897965|T037|AB|V73.1XXD|ICD10CM|Pasngr on bus injured pick-up truck, pk-up/van nontraf, subs|Pasngr on bus injured pick-up truck, pk-up/van nontraf, subs +C2897966|T037|AB|V73.1XXS|ICD10CM|Pasngr on bus inj pick-up truck, pk-up/van nontraf, sequela|Pasngr on bus inj pick-up truck, pk-up/van nontraf, sequela +C2897966|T037|PT|V73.1XXS|ICD10CM|Passenger on bus injured in collision with car, pick-up truck or van in nontraffic accident, sequela|Passenger on bus injured in collision with car, pick-up truck or van in nontraffic accident, sequela +C2897967|T037|HT|V73.2|ICD10CM|Person on outside of bus injured in collision with car, pick-up truck or van in nontraffic accident|Person on outside of bus injured in collision with car, pick-up truck or van in nontraffic accident +C2897967|T037|AB|V73.2|ICD10CM|Person outside bus injured pick-up truck, pk-up/van nontraf|Person outside bus injured pick-up truck, pk-up/van nontraf +C2897968|T037|AB|V73.2XXA|ICD10CM|Person outsd bus inj pick-up truck, pk-up/van nontraf, init|Person outsd bus inj pick-up truck, pk-up/van nontraf, init +C2897969|T037|AB|V73.2XXD|ICD10CM|Person outsd bus inj pick-up truck, pk-up/van nontraf, subs|Person outsd bus inj pick-up truck, pk-up/van nontraf, subs +C2897970|T037|AB|V73.2XXS|ICD10CM|Person outsd bus inj pk-up truck, pk-up/van nontraf, sequela|Person outsd bus inj pk-up truck, pk-up/van nontraf, sequela +C2897971|T037|AB|V73.3|ICD10CM|Occup of bus injured pick-up truck, pk-up/van nontraf|Occup of bus injured pick-up truck, pk-up/van nontraf +C2897972|T037|AB|V73.3XXA|ICD10CM|Occup of bus injured pick-up truck, pk-up/van nontraf, init|Occup of bus injured pick-up truck, pk-up/van nontraf, init +C2897973|T037|AB|V73.3XXD|ICD10CM|Occup of bus injured pick-up truck, pk-up/van nontraf, subs|Occup of bus injured pick-up truck, pk-up/van nontraf, subs +C2897974|T037|AB|V73.3XXS|ICD10CM|Occup of bus inj pick-up truck, pk-up/van nontraf, sequela|Occup of bus inj pick-up truck, pk-up/van nontraf, sequela +C0477080|T037|PT|V73.4|ICD10|Bus occupant injured in collision with car, pick-up truck or van, while boarding or alighting|Bus occupant injured in collision with car, pick-up truck or van, while boarding or alighting +C2897975|T037|HT|V73.4|ICD10CM|Person boarding or alighting from bus injured in collision with car, pick-up truck or van|Person boarding or alighting from bus injured in collision with car, pick-up truck or van +C2897975|T037|AB|V73.4|ICD10CM|Prsn brd/alit from bus injured pick-up truck, pk-up/van|Prsn brd/alit from bus injured pick-up truck, pk-up/van +C2897976|T037|AB|V73.4XXA|ICD10CM|Prsn brd/alit from bus inj pick-up truck, pk-up/van, init|Prsn brd/alit from bus inj pick-up truck, pk-up/van, init +C2897977|T037|AB|V73.4XXD|ICD10CM|Prsn brd/alit from bus inj pick-up truck, pk-up/van, subs|Prsn brd/alit from bus inj pick-up truck, pk-up/van, subs +C2897978|T037|PT|V73.4XXS|ICD10CM|Person boarding or alighting from bus injured in collision with car, pick-up truck or van, sequela|Person boarding or alighting from bus injured in collision with car, pick-up truck or van, sequela +C2897978|T037|AB|V73.4XXS|ICD10CM|Prsn brd/alit from bus inj pick-up truck, pk-up/van, sequela|Prsn brd/alit from bus inj pick-up truck, pk-up/van, sequela +C0477081|T037|PT|V73.5|ICD10|Bus occupant injured in collision with car, pick-up truck or van, driver, traffic accident|Bus occupant injured in collision with car, pick-up truck or van, driver, traffic accident +C2897979|T037|HT|V73.5|ICD10CM|Driver of bus injured in collision with car, pick-up truck or van in traffic accident|Driver of bus injured in collision with car, pick-up truck or van in traffic accident +C2897979|T037|AB|V73.5|ICD10CM|Driver of bus injured pick-up truck, pk-up/van in traf|Driver of bus injured pick-up truck, pk-up/van in traf +C2897980|T037|AB|V73.5XXA|ICD10CM|Driver of bus injured pick-up truck, pk-up/van in traf, init|Driver of bus injured pick-up truck, pk-up/van in traf, init +C2897981|T037|AB|V73.5XXD|ICD10CM|Driver of bus injured pick-up truck, pk-up/van in traf, subs|Driver of bus injured pick-up truck, pk-up/van in traf, subs +C2897982|T037|AB|V73.5XXS|ICD10CM|Driver of bus inj pick-up truck, pk-up/van in traf, sequela|Driver of bus inj pick-up truck, pk-up/van in traf, sequela +C2897982|T037|PT|V73.5XXS|ICD10CM|Driver of bus injured in collision with car, pick-up truck or van in traffic accident, sequela|Driver of bus injured in collision with car, pick-up truck or van in traffic accident, sequela +C0477082|T037|PT|V73.6|ICD10|Bus occupant injured in collision with car, pick-up truck or van, passenger, traffic accident|Bus occupant injured in collision with car, pick-up truck or van, passenger, traffic accident +C2897983|T037|HT|V73.6|ICD10CM|Passenger on bus injured in collision with car, pick-up truck or van in traffic accident|Passenger on bus injured in collision with car, pick-up truck or van in traffic accident +C2897983|T037|AB|V73.6|ICD10CM|Passenger on bus injured pick-up truck, pk-up/van in traf|Passenger on bus injured pick-up truck, pk-up/van in traf +C2897984|T037|AB|V73.6XXA|ICD10CM|Pasngr on bus injured pick-up truck, pk-up/van in traf, init|Pasngr on bus injured pick-up truck, pk-up/van in traf, init +C2897985|T037|AB|V73.6XXD|ICD10CM|Pasngr on bus injured pick-up truck, pk-up/van in traf, subs|Pasngr on bus injured pick-up truck, pk-up/van in traf, subs +C2897986|T037|AB|V73.6XXS|ICD10CM|Pasngr on bus inj pick-up truck, pk-up/van in traf, sequela|Pasngr on bus inj pick-up truck, pk-up/van in traf, sequela +C2897986|T037|PT|V73.6XXS|ICD10CM|Passenger on bus injured in collision with car, pick-up truck or van in traffic accident, sequela|Passenger on bus injured in collision with car, pick-up truck or van in traffic accident, sequela +C2897987|T037|HT|V73.7|ICD10CM|Person on outside of bus injured in collision with car, pick-up truck or van in traffic accident|Person on outside of bus injured in collision with car, pick-up truck or van in traffic accident +C2897987|T037|AB|V73.7|ICD10CM|Person outside bus injured pick-up truck, pk-up/van in traf|Person outside bus injured pick-up truck, pk-up/van in traf +C2897988|T037|AB|V73.7XXA|ICD10CM|Person outsd bus inj pick-up truck, pk-up/van in traf, init|Person outsd bus inj pick-up truck, pk-up/van in traf, init +C2897989|T037|AB|V73.7XXD|ICD10CM|Person outsd bus inj pick-up truck, pk-up/van in traf, subs|Person outsd bus inj pick-up truck, pk-up/van in traf, subs +C2897990|T037|AB|V73.7XXS|ICD10CM|Person outsd bus inj pk-up truck, pk-up/van in traf, sequela|Person outsd bus inj pk-up truck, pk-up/van in traf, sequela +C2897991|T037|AB|V73.9|ICD10CM|Occup of bus injured pick-up truck, pk-up/van in traf|Occup of bus injured pick-up truck, pk-up/van in traf +C2897991|T037|HT|V73.9|ICD10CM|Unspecified occupant of bus injured in collision with car, pick-up truck or van in traffic accident|Unspecified occupant of bus injured in collision with car, pick-up truck or van in traffic accident +C2897992|T037|AB|V73.9XXA|ICD10CM|Occup of bus injured pick-up truck, pk-up/van in traf, init|Occup of bus injured pick-up truck, pk-up/van in traf, init +C2897993|T037|AB|V73.9XXD|ICD10CM|Occup of bus injured pick-up truck, pk-up/van in traf, subs|Occup of bus injured pick-up truck, pk-up/van in traf, subs +C2897994|T037|AB|V73.9XXS|ICD10CM|Occup of bus inj pick-up truck, pk-up/van in traf, sequela|Occup of bus inj pick-up truck, pk-up/van in traf, sequela +C0477085|T037|AB|V74|ICD10CM|Bus occupant injured in collision w hv veh|Bus occupant injured in collision w hv veh +C0477085|T037|HT|V74|ICD10CM|Bus occupant injured in collision with heavy transport vehicle or bus|Bus occupant injured in collision with heavy transport vehicle or bus +C0477085|T037|HT|V74|ICD10|Bus occupant injured in collision with heavy transport vehicle or bus|Bus occupant injured in collision with heavy transport vehicle or bus +C0477086|T037|PT|V74.0|ICD10|Bus occupant injured in collision with heavy transport vehicle or bus, driver, nontraffic accident|Bus occupant injured in collision with heavy transport vehicle or bus, driver, nontraffic accident +C2897995|T037|AB|V74.0|ICD10CM|Driver of bus injured in collision w hv veh nontraf|Driver of bus injured in collision w hv veh nontraf +C2897995|T037|HT|V74.0|ICD10CM|Driver of bus injured in collision with heavy transport vehicle or bus in nontraffic accident|Driver of bus injured in collision with heavy transport vehicle or bus in nontraffic accident +C2897996|T037|AB|V74.0XXA|ICD10CM|Driver of bus injured in collision w hv veh nontraf, init|Driver of bus injured in collision w hv veh nontraf, init +C2897997|T037|AB|V74.0XXD|ICD10CM|Driver of bus injured in collision w hv veh nontraf, subs|Driver of bus injured in collision w hv veh nontraf, subs +C2897998|T037|AB|V74.0XXS|ICD10CM|Driver of bus injured in collision w hv veh nontraf, sequela|Driver of bus injured in collision w hv veh nontraf, sequela +C2897999|T037|AB|V74.1|ICD10CM|Passenger on bus injured in collision w hv veh nontraf|Passenger on bus injured in collision w hv veh nontraf +C2897999|T037|HT|V74.1|ICD10CM|Passenger on bus injured in collision with heavy transport vehicle or bus in nontraffic accident|Passenger on bus injured in collision with heavy transport vehicle or bus in nontraffic accident +C2898000|T037|AB|V74.1XXA|ICD10CM|Passenger on bus injured in collision w hv veh nontraf, init|Passenger on bus injured in collision w hv veh nontraf, init +C2898001|T037|AB|V74.1XXD|ICD10CM|Passenger on bus injured in collision w hv veh nontraf, subs|Passenger on bus injured in collision w hv veh nontraf, subs +C2898002|T037|AB|V74.1XXS|ICD10CM|Passenger on bus injured in clsn w hv veh nontraf, sequela|Passenger on bus injured in clsn w hv veh nontraf, sequela +C2898003|T037|AB|V74.2|ICD10CM|Person outside bus injured in collision w hv veh nontraf|Person outside bus injured in collision w hv veh nontraf +C2898004|T037|AB|V74.2XXA|ICD10CM|Person outside bus injured in clsn w hv veh nontraf, init|Person outside bus injured in clsn w hv veh nontraf, init +C2898005|T037|AB|V74.2XXD|ICD10CM|Person outside bus injured in clsn w hv veh nontraf, subs|Person outside bus injured in clsn w hv veh nontraf, subs +C2898006|T037|AB|V74.2XXS|ICD10CM|Person outside bus injured in clsn w hv veh nontraf, sequela|Person outside bus injured in clsn w hv veh nontraf, sequela +C2898007|T037|AB|V74.3|ICD10CM|Occup of bus injured in collision w hv veh nontraf|Occup of bus injured in collision w hv veh nontraf +C2898008|T037|AB|V74.3XXA|ICD10CM|Occup of bus injured in collision w hv veh nontraf, init|Occup of bus injured in collision w hv veh nontraf, init +C2898009|T037|AB|V74.3XXD|ICD10CM|Occup of bus injured in collision w hv veh nontraf, subs|Occup of bus injured in collision w hv veh nontraf, subs +C2898010|T037|AB|V74.3XXS|ICD10CM|Occup of bus injured in collision w hv veh nontraf, sequela|Occup of bus injured in collision w hv veh nontraf, sequela +C0477090|T037|PT|V74.4|ICD10|Bus occupant injured in collision with heavy transport vehicle or bus, while boarding or alighting|Bus occupant injured in collision with heavy transport vehicle or bus, while boarding or alighting +C2898011|T037|HT|V74.4|ICD10CM|Person boarding or alighting from bus injured in collision with heavy transport vehicle or bus|Person boarding or alighting from bus injured in collision with heavy transport vehicle or bus +C2898011|T037|AB|V74.4|ICD10CM|Prsn brd/alit from bus injured in collision w hv veh|Prsn brd/alit from bus injured in collision w hv veh +C2898012|T037|AB|V74.4XXA|ICD10CM|Prsn brd/alit from bus injured in collision w hv veh, init|Prsn brd/alit from bus injured in collision w hv veh, init +C2898013|T037|AB|V74.4XXD|ICD10CM|Prsn brd/alit from bus injured in collision w hv veh, subs|Prsn brd/alit from bus injured in collision w hv veh, subs +C2898014|T037|AB|V74.4XXS|ICD10CM|Prsn brd/alit from bus injured in clsn w hv veh, sequela|Prsn brd/alit from bus injured in clsn w hv veh, sequela +C0477091|T037|PT|V74.5|ICD10|Bus occupant injured in collision with heavy transport vehicle or bus, driver, traffic accident|Bus occupant injured in collision with heavy transport vehicle or bus, driver, traffic accident +C2898015|T037|AB|V74.5|ICD10CM|Driver of bus injured in collision w hv veh in traf|Driver of bus injured in collision w hv veh in traf +C2898015|T037|HT|V74.5|ICD10CM|Driver of bus injured in collision with heavy transport vehicle or bus in traffic accident|Driver of bus injured in collision with heavy transport vehicle or bus in traffic accident +C2898016|T037|AB|V74.5XXA|ICD10CM|Driver of bus injured in collision w hv veh in traf, init|Driver of bus injured in collision w hv veh in traf, init +C2898017|T037|AB|V74.5XXD|ICD10CM|Driver of bus injured in collision w hv veh in traf, subs|Driver of bus injured in collision w hv veh in traf, subs +C2898018|T037|AB|V74.5XXS|ICD10CM|Driver of bus injured in collision w hv veh in traf, sequela|Driver of bus injured in collision w hv veh in traf, sequela +C2898018|T037|PT|V74.5XXS|ICD10CM|Driver of bus injured in collision with heavy transport vehicle or bus in traffic accident, sequela|Driver of bus injured in collision with heavy transport vehicle or bus in traffic accident, sequela +C0477092|T037|PT|V74.6|ICD10|Bus occupant injured in collision with heavy transport vehicle or bus, passenger, traffic accident|Bus occupant injured in collision with heavy transport vehicle or bus, passenger, traffic accident +C2898019|T037|AB|V74.6|ICD10CM|Passenger on bus injured in collision w hv veh in traf|Passenger on bus injured in collision w hv veh in traf +C2898019|T037|HT|V74.6|ICD10CM|Passenger on bus injured in collision with heavy transport vehicle or bus in traffic accident|Passenger on bus injured in collision with heavy transport vehicle or bus in traffic accident +C2898020|T037|AB|V74.6XXA|ICD10CM|Passenger on bus injured in collision w hv veh in traf, init|Passenger on bus injured in collision w hv veh in traf, init +C2898021|T037|AB|V74.6XXD|ICD10CM|Passenger on bus injured in collision w hv veh in traf, subs|Passenger on bus injured in collision w hv veh in traf, subs +C2898022|T037|AB|V74.6XXS|ICD10CM|Passenger on bus injured in clsn w hv veh in traf, sequela|Passenger on bus injured in clsn w hv veh in traf, sequela +C2898023|T037|AB|V74.7|ICD10CM|Person outside bus injured in collision w hv veh in traf|Person outside bus injured in collision w hv veh in traf +C2898024|T037|AB|V74.7XXA|ICD10CM|Person outside bus injured in clsn w hv veh in traf, init|Person outside bus injured in clsn w hv veh in traf, init +C2898025|T037|AB|V74.7XXD|ICD10CM|Person outside bus injured in clsn w hv veh in traf, subs|Person outside bus injured in clsn w hv veh in traf, subs +C2898026|T037|AB|V74.7XXS|ICD10CM|Person outside bus injured in clsn w hv veh in traf, sequela|Person outside bus injured in clsn w hv veh in traf, sequela +C2898027|T037|AB|V74.9|ICD10CM|Occup of bus injured in collision w hv veh in traf|Occup of bus injured in collision w hv veh in traf +C2898028|T037|AB|V74.9XXA|ICD10CM|Occup of bus injured in collision w hv veh in traf, init|Occup of bus injured in collision w hv veh in traf, init +C2898029|T037|AB|V74.9XXD|ICD10CM|Occup of bus injured in collision w hv veh in traf, subs|Occup of bus injured in collision w hv veh in traf, subs +C2898030|T037|AB|V74.9XXS|ICD10CM|Occup of bus injured in collision w hv veh in traf, sequela|Occup of bus injured in collision w hv veh in traf, sequela +C0477095|T037|AB|V75|ICD10CM|Bus occupant injured in collision w rail trn/veh|Bus occupant injured in collision w rail trn/veh +C0477095|T037|HT|V75|ICD10CM|Bus occupant injured in collision with railway train or railway vehicle|Bus occupant injured in collision with railway train or railway vehicle +C0477095|T037|HT|V75|ICD10|Bus occupant injured in collision with railway train or railway vehicle|Bus occupant injured in collision with railway train or railway vehicle +C0477096|T037|PT|V75.0|ICD10|Bus occupant injured in collision with railway train or railway vehicle, driver, nontraffic accident|Bus occupant injured in collision with railway train or railway vehicle, driver, nontraffic accident +C2898031|T037|AB|V75.0|ICD10CM|Driver of bus injured in collision w rail trn/veh nontraf|Driver of bus injured in collision w rail trn/veh nontraf +C2898031|T037|HT|V75.0|ICD10CM|Driver of bus injured in collision with railway train or railway vehicle in nontraffic accident|Driver of bus injured in collision with railway train or railway vehicle in nontraffic accident +C2898032|T037|AB|V75.0XXA|ICD10CM|Driver of bus injured in clsn w rail trn/veh nontraf, init|Driver of bus injured in clsn w rail trn/veh nontraf, init +C2898033|T037|AB|V75.0XXD|ICD10CM|Driver of bus injured in clsn w rail trn/veh nontraf, subs|Driver of bus injured in clsn w rail trn/veh nontraf, subs +C2898034|T037|AB|V75.0XXS|ICD10CM|Driver of bus inj in clsn w rail trn/veh nontraf, sequela|Driver of bus inj in clsn w rail trn/veh nontraf, sequela +C2898035|T037|AB|V75.1|ICD10CM|Passenger on bus injured in collision w rail trn/veh nontraf|Passenger on bus injured in collision w rail trn/veh nontraf +C2898035|T037|HT|V75.1|ICD10CM|Passenger on bus injured in collision with railway train or railway vehicle in nontraffic accident|Passenger on bus injured in collision with railway train or railway vehicle in nontraffic accident +C2898036|T037|AB|V75.1XXA|ICD10CM|Pasngr on bus injured in clsn w rail trn/veh nontraf, init|Pasngr on bus injured in clsn w rail trn/veh nontraf, init +C2898037|T037|AB|V75.1XXD|ICD10CM|Pasngr on bus injured in clsn w rail trn/veh nontraf, subs|Pasngr on bus injured in clsn w rail trn/veh nontraf, subs +C2898038|T037|AB|V75.1XXS|ICD10CM|Pasngr on bus inj in clsn w rail trn/veh nontraf, sequela|Pasngr on bus inj in clsn w rail trn/veh nontraf, sequela +C2898039|T037|AB|V75.2|ICD10CM|Person outside bus injured in clsn w rail trn/veh nontraf|Person outside bus injured in clsn w rail trn/veh nontraf +C2898040|T037|AB|V75.2XXA|ICD10CM|Person outside bus inj in clsn w rail trn/veh nontraf, init|Person outside bus inj in clsn w rail trn/veh nontraf, init +C2898041|T037|AB|V75.2XXD|ICD10CM|Person outside bus inj in clsn w rail trn/veh nontraf, subs|Person outside bus inj in clsn w rail trn/veh nontraf, subs +C2898042|T037|AB|V75.2XXS|ICD10CM|Person outsd bus inj in clsn w rail trn/veh nontraf, sequela|Person outsd bus inj in clsn w rail trn/veh nontraf, sequela +C2898043|T037|AB|V75.3|ICD10CM|Occup of bus injured in collision w rail trn/veh nontraf|Occup of bus injured in collision w rail trn/veh nontraf +C2898044|T037|AB|V75.3XXA|ICD10CM|Occup of bus injured in clsn w rail trn/veh nontraf, init|Occup of bus injured in clsn w rail trn/veh nontraf, init +C2898045|T037|AB|V75.3XXD|ICD10CM|Occup of bus injured in clsn w rail trn/veh nontraf, subs|Occup of bus injured in clsn w rail trn/veh nontraf, subs +C2898046|T037|AB|V75.3XXS|ICD10CM|Occup of bus injured in clsn w rail trn/veh nontraf, sequela|Occup of bus injured in clsn w rail trn/veh nontraf, sequela +C0477100|T037|PT|V75.4|ICD10|Bus occupant injured in collision with railway train or railway vehicle, while boarding or alighting|Bus occupant injured in collision with railway train or railway vehicle, while boarding or alighting +C2898047|T037|HT|V75.4|ICD10CM|Person boarding or alighting from bus injured in collision with railway train or railway vehicle|Person boarding or alighting from bus injured in collision with railway train or railway vehicle +C2898047|T037|AB|V75.4|ICD10CM|Prsn brd/alit from bus injured in collision w rail trn/veh|Prsn brd/alit from bus injured in collision w rail trn/veh +C2898048|T037|AB|V75.4XXA|ICD10CM|Prsn brd/alit from bus injured in clsn w rail trn/veh, init|Prsn brd/alit from bus injured in clsn w rail trn/veh, init +C2898049|T037|AB|V75.4XXD|ICD10CM|Prsn brd/alit from bus injured in clsn w rail trn/veh, subs|Prsn brd/alit from bus injured in clsn w rail trn/veh, subs +C2898050|T037|AB|V75.4XXS|ICD10CM|Prsn brd/alit from bus inj in clsn w rail trn/veh, sequela|Prsn brd/alit from bus inj in clsn w rail trn/veh, sequela +C0477101|T037|PT|V75.5|ICD10|Bus occupant injured in collision with railway train or railway vehicle, driver, traffic accident|Bus occupant injured in collision with railway train or railway vehicle, driver, traffic accident +C2898051|T037|AB|V75.5|ICD10CM|Driver of bus injured in collision w rail trn/veh in traf|Driver of bus injured in collision w rail trn/veh in traf +C2898051|T037|HT|V75.5|ICD10CM|Driver of bus injured in collision with railway train or railway vehicle in traffic accident|Driver of bus injured in collision with railway train or railway vehicle in traffic accident +C2898052|T037|AB|V75.5XXA|ICD10CM|Driver of bus injured in clsn w rail trn/veh in traf, init|Driver of bus injured in clsn w rail trn/veh in traf, init +C2898053|T037|AB|V75.5XXD|ICD10CM|Driver of bus injured in clsn w rail trn/veh in traf, subs|Driver of bus injured in clsn w rail trn/veh in traf, subs +C2898054|T037|AB|V75.5XXS|ICD10CM|Driver of bus inj in clsn w rail trn/veh in traf, sequela|Driver of bus inj in clsn w rail trn/veh in traf, sequela +C0477102|T037|PT|V75.6|ICD10|Bus occupant injured in collision with railway train or railway vehicle, passenger, traffic accident|Bus occupant injured in collision with railway train or railway vehicle, passenger, traffic accident +C2898055|T037|AB|V75.6|ICD10CM|Passenger on bus injured in collision w rail trn/veh in traf|Passenger on bus injured in collision w rail trn/veh in traf +C2898055|T037|HT|V75.6|ICD10CM|Passenger on bus injured in collision with railway train or railway vehicle in traffic accident|Passenger on bus injured in collision with railway train or railway vehicle in traffic accident +C2898056|T037|AB|V75.6XXA|ICD10CM|Pasngr on bus injured in clsn w rail trn/veh in traf, init|Pasngr on bus injured in clsn w rail trn/veh in traf, init +C2898057|T037|AB|V75.6XXD|ICD10CM|Pasngr on bus injured in clsn w rail trn/veh in traf, subs|Pasngr on bus injured in clsn w rail trn/veh in traf, subs +C2898058|T037|AB|V75.6XXS|ICD10CM|Pasngr on bus inj in clsn w rail trn/veh in traf, sequela|Pasngr on bus inj in clsn w rail trn/veh in traf, sequela +C2898059|T037|AB|V75.7|ICD10CM|Person outside bus injured in clsn w rail trn/veh in traf|Person outside bus injured in clsn w rail trn/veh in traf +C2898060|T037|AB|V75.7XXA|ICD10CM|Person outside bus inj in clsn w rail trn/veh in traf, init|Person outside bus inj in clsn w rail trn/veh in traf, init +C2898061|T037|AB|V75.7XXD|ICD10CM|Person outside bus inj in clsn w rail trn/veh in traf, subs|Person outside bus inj in clsn w rail trn/veh in traf, subs +C2898062|T037|AB|V75.7XXS|ICD10CM|Person outsd bus inj in clsn w rail trn/veh in traf, sequela|Person outsd bus inj in clsn w rail trn/veh in traf, sequela +C2898063|T037|AB|V75.9|ICD10CM|Occup of bus injured in collision w rail trn/veh in traf|Occup of bus injured in collision w rail trn/veh in traf +C2898064|T037|AB|V75.9XXA|ICD10CM|Occup of bus injured in clsn w rail trn/veh in traf, init|Occup of bus injured in clsn w rail trn/veh in traf, init +C2898065|T037|AB|V75.9XXD|ICD10CM|Occup of bus injured in clsn w rail trn/veh in traf, subs|Occup of bus injured in clsn w rail trn/veh in traf, subs +C2898066|T037|AB|V75.9XXS|ICD10CM|Occup of bus injured in clsn w rail trn/veh in traf, sequela|Occup of bus injured in clsn w rail trn/veh in traf, sequela +C0477105|T037|AB|V76|ICD10CM|Bus occupant injured in collision with oth nonmotor vehicle|Bus occupant injured in collision with oth nonmotor vehicle +C0477105|T037|HT|V76|ICD10CM|Bus occupant injured in collision with other nonmotor vehicle|Bus occupant injured in collision with other nonmotor vehicle +C0477105|T037|HT|V76|ICD10|Bus occupant injured in collision with other nonmotor vehicle|Bus occupant injured in collision with other nonmotor vehicle +C4283912|T037|ET|V76|ICD10CM|collision with animal-drawn vehicle, animal being ridden, streetcar|collision with animal-drawn vehicle, animal being ridden, streetcar +C0477106|T037|PT|V76.0|ICD10|Bus occupant injured in collision with other nonmotor vehicle, driver, nontraffic accident|Bus occupant injured in collision with other nonmotor vehicle, driver, nontraffic accident +C2898067|T037|AB|V76.0|ICD10CM|Driver of bus injured in collision w nonmtr vehicle nontraf|Driver of bus injured in collision w nonmtr vehicle nontraf +C2898067|T037|HT|V76.0|ICD10CM|Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident|Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident +C2898068|T037|AB|V76.0XXA|ICD10CM|Driver of bus injured in clsn w nonmtr vehicle nontraf, init|Driver of bus injured in clsn w nonmtr vehicle nontraf, init +C2898069|T037|AB|V76.0XXD|ICD10CM|Driver of bus injured in clsn w nonmtr vehicle nontraf, subs|Driver of bus injured in clsn w nonmtr vehicle nontraf, subs +C2898070|T037|AB|V76.0XXS|ICD10CM|Driver of bus inj in clsn w nonmtr vehicle nontraf, sequela|Driver of bus inj in clsn w nonmtr vehicle nontraf, sequela +C2898070|T037|PT|V76.0XXS|ICD10CM|Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela|Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela +C0477107|T037|PT|V76.1|ICD10|Bus occupant injured in collision with other nonmotor vehicle, passenger, nontraffic accident|Bus occupant injured in collision with other nonmotor vehicle, passenger, nontraffic accident +C2898071|T037|AB|V76.1|ICD10CM|Passenger on bus injured in clsn w nonmtr vehicle nontraf|Passenger on bus injured in clsn w nonmtr vehicle nontraf +C2898071|T037|HT|V76.1|ICD10CM|Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident|Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident +C2898072|T037|AB|V76.1XXA|ICD10CM|Pasngr on bus injured in clsn w nonmtr vehicle nontraf, init|Pasngr on bus injured in clsn w nonmtr vehicle nontraf, init +C2898073|T037|AB|V76.1XXD|ICD10CM|Pasngr on bus injured in clsn w nonmtr vehicle nontraf, subs|Pasngr on bus injured in clsn w nonmtr vehicle nontraf, subs +C2898074|T037|AB|V76.1XXS|ICD10CM|Pasngr on bus inj in clsn w nonmtr vehicle nontraf, sequela|Pasngr on bus inj in clsn w nonmtr vehicle nontraf, sequela +C2898074|T037|PT|V76.1XXS|ICD10CM|Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela|Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela +C2898075|T037|HT|V76.2|ICD10CM|Person on outside of bus injured in collision with other nonmotor vehicle in nontraffic accident|Person on outside of bus injured in collision with other nonmotor vehicle in nontraffic accident +C2898075|T037|AB|V76.2|ICD10CM|Person outside bus injured in clsn w nonmtr vehicle nontraf|Person outside bus injured in clsn w nonmtr vehicle nontraf +C2898076|T037|AB|V76.2XXA|ICD10CM|Person outsd bus inj in clsn w nonmtr vehicle nontraf, init|Person outsd bus inj in clsn w nonmtr vehicle nontraf, init +C2898077|T037|AB|V76.2XXD|ICD10CM|Person outsd bus inj in clsn w nonmtr vehicle nontraf, subs|Person outsd bus inj in clsn w nonmtr vehicle nontraf, subs +C2898078|T037|AB|V76.2XXS|ICD10CM|Person outsd bus inj in clsn w nonmtr vehicle nontraf, sqla|Person outsd bus inj in clsn w nonmtr vehicle nontraf, sqla +C2898079|T037|AB|V76.3|ICD10CM|Occup of bus injured in collision w nonmtr vehicle nontraf|Occup of bus injured in collision w nonmtr vehicle nontraf +C2898079|T037|HT|V76.3|ICD10CM|Unspecified occupant of bus injured in collision with other nonmotor vehicle in nontraffic accident|Unspecified occupant of bus injured in collision with other nonmotor vehicle in nontraffic accident +C2898080|T037|AB|V76.3XXA|ICD10CM|Occup of bus injured in clsn w nonmtr vehicle nontraf, init|Occup of bus injured in clsn w nonmtr vehicle nontraf, init +C2898081|T037|AB|V76.3XXD|ICD10CM|Occup of bus injured in clsn w nonmtr vehicle nontraf, subs|Occup of bus injured in clsn w nonmtr vehicle nontraf, subs +C2898082|T037|AB|V76.3XXS|ICD10CM|Occup of bus inj in clsn w nonmtr vehicle nontraf, sequela|Occup of bus inj in clsn w nonmtr vehicle nontraf, sequela +C0477110|T037|PT|V76.4|ICD10|Bus occupant injured in collision with other nonmotor vehicle, while boarding or alighting|Bus occupant injured in collision with other nonmotor vehicle, while boarding or alighting +C2898083|T037|HT|V76.4|ICD10CM|Person boarding or alighting from bus injured in collision with other nonmotor vehicle|Person boarding or alighting from bus injured in collision with other nonmotor vehicle +C2898083|T037|AB|V76.4|ICD10CM|Prsn brd/alit from bus injured in collision w nonmtr vehicle|Prsn brd/alit from bus injured in collision w nonmtr vehicle +C2898084|T037|AB|V76.4XXA|ICD10CM|Prsn brd/alit from bus inj in clsn w nonmtr vehicle, init|Prsn brd/alit from bus inj in clsn w nonmtr vehicle, init +C2898085|T037|AB|V76.4XXD|ICD10CM|Prsn brd/alit from bus inj in clsn w nonmtr vehicle, subs|Prsn brd/alit from bus inj in clsn w nonmtr vehicle, subs +C2898086|T037|PT|V76.4XXS|ICD10CM|Person boarding or alighting from bus injured in collision with other nonmotor vehicle, sequela|Person boarding or alighting from bus injured in collision with other nonmotor vehicle, sequela +C2898086|T037|AB|V76.4XXS|ICD10CM|Prsn brd/alit from bus inj in clsn w nonmtr vehicle, sequela|Prsn brd/alit from bus inj in clsn w nonmtr vehicle, sequela +C0477111|T037|PT|V76.5|ICD10|Bus occupant injured in collision with other nonmotor vehicle, driver, traffic accident|Bus occupant injured in collision with other nonmotor vehicle, driver, traffic accident +C2898087|T037|AB|V76.5|ICD10CM|Driver of bus injured in collision w nonmtr vehicle in traf|Driver of bus injured in collision w nonmtr vehicle in traf +C2898087|T037|HT|V76.5|ICD10CM|Driver of bus injured in collision with other nonmotor vehicle in traffic accident|Driver of bus injured in collision with other nonmotor vehicle in traffic accident +C2898088|T037|AB|V76.5XXA|ICD10CM|Driver of bus injured in clsn w nonmtr vehicle in traf, init|Driver of bus injured in clsn w nonmtr vehicle in traf, init +C2898089|T037|AB|V76.5XXD|ICD10CM|Driver of bus injured in clsn w nonmtr vehicle in traf, subs|Driver of bus injured in clsn w nonmtr vehicle in traf, subs +C2898090|T037|AB|V76.5XXS|ICD10CM|Driver of bus inj in clsn w nonmtr vehicle in traf, sequela|Driver of bus inj in clsn w nonmtr vehicle in traf, sequela +C2898090|T037|PT|V76.5XXS|ICD10CM|Driver of bus injured in collision with other nonmotor vehicle in traffic accident, sequela|Driver of bus injured in collision with other nonmotor vehicle in traffic accident, sequela +C0477112|T037|PT|V76.6|ICD10|Bus occupant injured in collision with other nonmotor vehicle, passenger, traffic accident|Bus occupant injured in collision with other nonmotor vehicle, passenger, traffic accident +C2898091|T037|AB|V76.6|ICD10CM|Passenger on bus injured in clsn w nonmtr vehicle in traf|Passenger on bus injured in clsn w nonmtr vehicle in traf +C2898091|T037|HT|V76.6|ICD10CM|Passenger on bus injured in collision with other nonmotor vehicle in traffic accident|Passenger on bus injured in collision with other nonmotor vehicle in traffic accident +C2898092|T037|AB|V76.6XXA|ICD10CM|Pasngr on bus injured in clsn w nonmtr vehicle in traf, init|Pasngr on bus injured in clsn w nonmtr vehicle in traf, init +C2898093|T037|AB|V76.6XXD|ICD10CM|Pasngr on bus injured in clsn w nonmtr vehicle in traf, subs|Pasngr on bus injured in clsn w nonmtr vehicle in traf, subs +C2898094|T037|AB|V76.6XXS|ICD10CM|Pasngr on bus inj in clsn w nonmtr vehicle in traf, sequela|Pasngr on bus inj in clsn w nonmtr vehicle in traf, sequela +C2898094|T037|PT|V76.6XXS|ICD10CM|Passenger on bus injured in collision with other nonmotor vehicle in traffic accident, sequela|Passenger on bus injured in collision with other nonmotor vehicle in traffic accident, sequela +C2898095|T037|HT|V76.7|ICD10CM|Person on outside of bus injured in collision with other nonmotor vehicle in traffic accident|Person on outside of bus injured in collision with other nonmotor vehicle in traffic accident +C2898095|T037|AB|V76.7|ICD10CM|Person outside bus injured in clsn w nonmtr vehicle in traf|Person outside bus injured in clsn w nonmtr vehicle in traf +C2898096|T037|AB|V76.7XXA|ICD10CM|Person outsd bus inj in clsn w nonmtr vehicle in traf, init|Person outsd bus inj in clsn w nonmtr vehicle in traf, init +C2898097|T037|AB|V76.7XXD|ICD10CM|Person outsd bus inj in clsn w nonmtr vehicle in traf, subs|Person outsd bus inj in clsn w nonmtr vehicle in traf, subs +C2898098|T037|AB|V76.7XXS|ICD10CM|Person outsd bus inj in clsn w nonmtr vehicle in traf, sqla|Person outsd bus inj in clsn w nonmtr vehicle in traf, sqla +C2898099|T037|AB|V76.9|ICD10CM|Occup of bus injured in collision w nonmtr vehicle in traf|Occup of bus injured in collision w nonmtr vehicle in traf +C2898099|T037|HT|V76.9|ICD10CM|Unspecified occupant of bus injured in collision with other nonmotor vehicle in traffic accident|Unspecified occupant of bus injured in collision with other nonmotor vehicle in traffic accident +C2898100|T037|AB|V76.9XXA|ICD10CM|Occup of bus injured in clsn w nonmtr vehicle in traf, init|Occup of bus injured in clsn w nonmtr vehicle in traf, init +C2898101|T037|AB|V76.9XXD|ICD10CM|Occup of bus injured in clsn w nonmtr vehicle in traf, subs|Occup of bus injured in clsn w nonmtr vehicle in traf, subs +C2898102|T037|AB|V76.9XXS|ICD10CM|Occup of bus inj in clsn w nonmtr vehicle in traf, sequela|Occup of bus inj in clsn w nonmtr vehicle in traf, sequela +C0477115|T037|AB|V77|ICD10CM|Bus occupant injured in collision w statnry object|Bus occupant injured in collision w statnry object +C0477115|T037|HT|V77|ICD10CM|Bus occupant injured in collision with fixed or stationary object|Bus occupant injured in collision with fixed or stationary object +C0477115|T037|HT|V77|ICD10|Bus occupant injured in collision with fixed or stationary object|Bus occupant injured in collision with fixed or stationary object +C0477116|T037|PT|V77.0|ICD10|Bus occupant injured in collision with fixed or stationary object, driver, nontraffic accident|Bus occupant injured in collision with fixed or stationary object, driver, nontraffic accident +C2898103|T037|AB|V77.0|ICD10CM|Driver of bus injured in collision w statnry object nontraf|Driver of bus injured in collision w statnry object nontraf +C2898103|T037|HT|V77.0|ICD10CM|Driver of bus injured in collision with fixed or stationary object in nontraffic accident|Driver of bus injured in collision with fixed or stationary object in nontraffic accident +C2898104|T037|AB|V77.0XXA|ICD10CM|Driver of bus injured in clsn w statnry object nontraf, init|Driver of bus injured in clsn w statnry object nontraf, init +C2898105|T037|AB|V77.0XXD|ICD10CM|Driver of bus injured in clsn w statnry object nontraf, subs|Driver of bus injured in clsn w statnry object nontraf, subs +C2898106|T037|AB|V77.0XXS|ICD10CM|Driver of bus inj in clsn w statnry object nontraf, sequela|Driver of bus inj in clsn w statnry object nontraf, sequela +C2898106|T037|PT|V77.0XXS|ICD10CM|Driver of bus injured in collision with fixed or stationary object in nontraffic accident, sequela|Driver of bus injured in collision with fixed or stationary object in nontraffic accident, sequela +C0477117|T037|PT|V77.1|ICD10|Bus occupant injured in collision with fixed or stationary object, passenger, nontraffic accident|Bus occupant injured in collision with fixed or stationary object, passenger, nontraffic accident +C2898107|T037|AB|V77.1|ICD10CM|Passenger on bus injured in clsn w statnry object nontraf|Passenger on bus injured in clsn w statnry object nontraf +C2898107|T037|HT|V77.1|ICD10CM|Passenger on bus injured in collision with fixed or stationary object in nontraffic accident|Passenger on bus injured in collision with fixed or stationary object in nontraffic accident +C2898108|T037|AB|V77.1XXA|ICD10CM|Pasngr on bus injured in clsn w statnry object nontraf, init|Pasngr on bus injured in clsn w statnry object nontraf, init +C2898109|T037|AB|V77.1XXD|ICD10CM|Pasngr on bus injured in clsn w statnry object nontraf, subs|Pasngr on bus injured in clsn w statnry object nontraf, subs +C2898110|T037|AB|V77.1XXS|ICD10CM|Pasngr on bus inj in clsn w statnry object nontraf, sequela|Pasngr on bus inj in clsn w statnry object nontraf, sequela +C2898111|T037|HT|V77.2|ICD10CM|Person on outside of bus injured in collision with fixed or stationary object in nontraffic accident|Person on outside of bus injured in collision with fixed or stationary object in nontraffic accident +C2898111|T037|AB|V77.2|ICD10CM|Person outside bus injured in clsn w statnry object nontraf|Person outside bus injured in clsn w statnry object nontraf +C2898112|T037|AB|V77.2XXA|ICD10CM|Person outsd bus inj in clsn w statnry object nontraf, init|Person outsd bus inj in clsn w statnry object nontraf, init +C2898113|T037|AB|V77.2XXD|ICD10CM|Person outsd bus inj in clsn w statnry object nontraf, subs|Person outsd bus inj in clsn w statnry object nontraf, subs +C2898114|T037|AB|V77.2XXS|ICD10CM|Person outsd bus inj in clsn w statnry object nontraf, sqla|Person outsd bus inj in clsn w statnry object nontraf, sqla +C2898115|T037|AB|V77.3|ICD10CM|Occup of bus injured in collision w statnry object nontraf|Occup of bus injured in collision w statnry object nontraf +C2898116|T037|AB|V77.3XXA|ICD10CM|Occup of bus injured in clsn w statnry object nontraf, init|Occup of bus injured in clsn w statnry object nontraf, init +C2898117|T037|AB|V77.3XXD|ICD10CM|Occup of bus injured in clsn w statnry object nontraf, subs|Occup of bus injured in clsn w statnry object nontraf, subs +C2898118|T037|AB|V77.3XXS|ICD10CM|Occup of bus inj in clsn w statnry object nontraf, sequela|Occup of bus inj in clsn w statnry object nontraf, sequela +C0477120|T037|PT|V77.4|ICD10|Bus occupant injured in collision with fixed or stationary object, while boarding or alighting|Bus occupant injured in collision with fixed or stationary object, while boarding or alighting +C2898119|T037|HT|V77.4|ICD10CM|Person boarding or alighting from bus injured in collision with fixed or stationary object|Person boarding or alighting from bus injured in collision with fixed or stationary object +C2898119|T037|AB|V77.4|ICD10CM|Prsn brd/alit from bus injured in collision w statnry object|Prsn brd/alit from bus injured in collision w statnry object +C2898120|T037|AB|V77.4XXA|ICD10CM|Prsn brd/alit from bus inj in clsn w statnry object, init|Prsn brd/alit from bus inj in clsn w statnry object, init +C2898121|T037|AB|V77.4XXD|ICD10CM|Prsn brd/alit from bus inj in clsn w statnry object, subs|Prsn brd/alit from bus inj in clsn w statnry object, subs +C2898122|T037|PT|V77.4XXS|ICD10CM|Person boarding or alighting from bus injured in collision with fixed or stationary object, sequela|Person boarding or alighting from bus injured in collision with fixed or stationary object, sequela +C2898122|T037|AB|V77.4XXS|ICD10CM|Prsn brd/alit from bus inj in clsn w statnry object, sequela|Prsn brd/alit from bus inj in clsn w statnry object, sequela +C0477121|T037|PT|V77.5|ICD10|Bus occupant injured in collision with fixed or stationary object, driver, traffic accident|Bus occupant injured in collision with fixed or stationary object, driver, traffic accident +C2898123|T037|AB|V77.5|ICD10CM|Driver of bus injured in collision w statnry object in traf|Driver of bus injured in collision w statnry object in traf +C2898123|T037|HT|V77.5|ICD10CM|Driver of bus injured in collision with fixed or stationary object in traffic accident|Driver of bus injured in collision with fixed or stationary object in traffic accident +C2898124|T037|AB|V77.5XXA|ICD10CM|Driver of bus injured in clsn w statnry object in traf, init|Driver of bus injured in clsn w statnry object in traf, init +C2898125|T037|AB|V77.5XXD|ICD10CM|Driver of bus injured in clsn w statnry object in traf, subs|Driver of bus injured in clsn w statnry object in traf, subs +C2898126|T037|AB|V77.5XXS|ICD10CM|Driver of bus inj in clsn w statnry object in traf, sequela|Driver of bus inj in clsn w statnry object in traf, sequela +C2898126|T037|PT|V77.5XXS|ICD10CM|Driver of bus injured in collision with fixed or stationary object in traffic accident, sequela|Driver of bus injured in collision with fixed or stationary object in traffic accident, sequela +C0477122|T037|PT|V77.6|ICD10|Bus occupant injured in collision with fixed or stationary object, passenger, traffic accident|Bus occupant injured in collision with fixed or stationary object, passenger, traffic accident +C2898127|T037|AB|V77.6|ICD10CM|Passenger on bus injured in clsn w statnry object in traf|Passenger on bus injured in clsn w statnry object in traf +C2898127|T037|HT|V77.6|ICD10CM|Passenger on bus injured in collision with fixed or stationary object in traffic accident|Passenger on bus injured in collision with fixed or stationary object in traffic accident +C2898128|T037|AB|V77.6XXA|ICD10CM|Pasngr on bus injured in clsn w statnry object in traf, init|Pasngr on bus injured in clsn w statnry object in traf, init +C2898129|T037|AB|V77.6XXD|ICD10CM|Pasngr on bus injured in clsn w statnry object in traf, subs|Pasngr on bus injured in clsn w statnry object in traf, subs +C2898130|T037|AB|V77.6XXS|ICD10CM|Pasngr on bus inj in clsn w statnry object in traf, sequela|Pasngr on bus inj in clsn w statnry object in traf, sequela +C2898130|T037|PT|V77.6XXS|ICD10CM|Passenger on bus injured in collision with fixed or stationary object in traffic accident, sequela|Passenger on bus injured in collision with fixed or stationary object in traffic accident, sequela +C2898131|T037|HT|V77.7|ICD10CM|Person on outside of bus injured in collision with fixed or stationary object in traffic accident|Person on outside of bus injured in collision with fixed or stationary object in traffic accident +C2898131|T037|AB|V77.7|ICD10CM|Person outside bus injured in clsn w statnry object in traf|Person outside bus injured in clsn w statnry object in traf +C2898132|T037|AB|V77.7XXA|ICD10CM|Person outsd bus inj in clsn w statnry object in traf, init|Person outsd bus inj in clsn w statnry object in traf, init +C2898133|T037|AB|V77.7XXD|ICD10CM|Person outsd bus inj in clsn w statnry object in traf, subs|Person outsd bus inj in clsn w statnry object in traf, subs +C2898134|T037|AB|V77.7XXS|ICD10CM|Person outsd bus inj in clsn w statnry object in traf, sqla|Person outsd bus inj in clsn w statnry object in traf, sqla +C2898135|T037|AB|V77.9|ICD10CM|Occup of bus injured in collision w statnry object in traf|Occup of bus injured in collision w statnry object in traf +C2898135|T037|HT|V77.9|ICD10CM|Unspecified occupant of bus injured in collision with fixed or stationary object in traffic accident|Unspecified occupant of bus injured in collision with fixed or stationary object in traffic accident +C2898136|T037|AB|V77.9XXA|ICD10CM|Occup of bus injured in clsn w statnry object in traf, init|Occup of bus injured in clsn w statnry object in traf, init +C2898137|T037|AB|V77.9XXD|ICD10CM|Occup of bus injured in clsn w statnry object in traf, subs|Occup of bus injured in clsn w statnry object in traf, subs +C2898138|T037|AB|V77.9XXS|ICD10CM|Occup of bus inj in clsn w statnry object in traf, sequela|Occup of bus inj in clsn w statnry object in traf, sequela +C0477125|T037|HT|V78|ICD10|Bus occupant injured in noncollision transport accident|Bus occupant injured in noncollision transport accident +C0477125|T037|AB|V78|ICD10CM|Bus occupant injured in noncollision transport accident|Bus occupant injured in noncollision transport accident +C0477125|T037|HT|V78|ICD10CM|Bus occupant injured in noncollision transport accident|Bus occupant injured in noncollision transport accident +C4290445|T037|ET|V78|ICD10CM|overturning bus NOS|overturning bus NOS +C4290446|T037|ET|V78|ICD10CM|overturning bus without collision|overturning bus without collision +C0477126|T037|PT|V78.0|ICD10|Bus occupant injured in noncollision transport accident, driver, nontraffic accident|Bus occupant injured in noncollision transport accident, driver, nontraffic accident +C2898141|T037|AB|V78.0|ICD10CM|Driver of bus injured in nonclsn transport accident nontraf|Driver of bus injured in nonclsn transport accident nontraf +C2898141|T037|HT|V78.0|ICD10CM|Driver of bus injured in noncollision transport accident in nontraffic accident|Driver of bus injured in noncollision transport accident in nontraffic accident +C2898142|T037|AB|V78.0XXA|ICD10CM|Driver of bus injured in nonclsn trnsp acc nontraf, init|Driver of bus injured in nonclsn trnsp acc nontraf, init +C2898142|T037|PT|V78.0XXA|ICD10CM|Driver of bus injured in noncollision transport accident in nontraffic accident, initial encounter|Driver of bus injured in noncollision transport accident in nontraffic accident, initial encounter +C2898143|T037|AB|V78.0XXD|ICD10CM|Driver of bus injured in nonclsn trnsp acc nontraf, subs|Driver of bus injured in nonclsn trnsp acc nontraf, subs +C2898144|T037|AB|V78.0XXS|ICD10CM|Driver of bus injured in nonclsn trnsp acc nontraf, sequela|Driver of bus injured in nonclsn trnsp acc nontraf, sequela +C2898144|T037|PT|V78.0XXS|ICD10CM|Driver of bus injured in noncollision transport accident in nontraffic accident, sequela|Driver of bus injured in noncollision transport accident in nontraffic accident, sequela +C0477127|T037|PT|V78.1|ICD10|Bus occupant injured in noncollision transport accident, passenger, nontraffic accident|Bus occupant injured in noncollision transport accident, passenger, nontraffic accident +C2898145|T037|AB|V78.1|ICD10CM|Pasngr on bus injured in nonclsn transport accident nontraf|Pasngr on bus injured in nonclsn transport accident nontraf +C2898145|T037|HT|V78.1|ICD10CM|Passenger on bus injured in noncollision transport accident in nontraffic accident|Passenger on bus injured in noncollision transport accident in nontraffic accident +C2898146|T037|AB|V78.1XXA|ICD10CM|Pasngr on bus injured in nonclsn trnsp acc nontraf, init|Pasngr on bus injured in nonclsn trnsp acc nontraf, init +C2898147|T037|AB|V78.1XXD|ICD10CM|Pasngr on bus injured in nonclsn trnsp acc nontraf, subs|Pasngr on bus injured in nonclsn trnsp acc nontraf, subs +C2898148|T037|AB|V78.1XXS|ICD10CM|Pasngr on bus injured in nonclsn trnsp acc nontraf, sequela|Pasngr on bus injured in nonclsn trnsp acc nontraf, sequela +C2898148|T037|PT|V78.1XXS|ICD10CM|Passenger on bus injured in noncollision transport accident in nontraffic accident, sequela|Passenger on bus injured in noncollision transport accident in nontraffic accident, sequela +C2898149|T037|HT|V78.2|ICD10CM|Person on outside of bus injured in noncollision transport accident in nontraffic accident|Person on outside of bus injured in noncollision transport accident in nontraffic accident +C2898149|T037|AB|V78.2|ICD10CM|Person outside bus injured in nonclsn trnsp accident nontraf|Person outside bus injured in nonclsn trnsp accident nontraf +C2898150|T037|AB|V78.2XXA|ICD10CM|Person outside bus inj in nonclsn trnsp acc nontraf, init|Person outside bus inj in nonclsn trnsp acc nontraf, init +C2898151|T037|AB|V78.2XXD|ICD10CM|Person outside bus inj in nonclsn trnsp acc nontraf, subs|Person outside bus inj in nonclsn trnsp acc nontraf, subs +C2898152|T037|PT|V78.2XXS|ICD10CM|Person on outside of bus injured in noncollision transport accident in nontraffic accident, sequela|Person on outside of bus injured in noncollision transport accident in nontraffic accident, sequela +C2898152|T037|AB|V78.2XXS|ICD10CM|Person outside bus inj in nonclsn trnsp acc nontraf, sequela|Person outside bus inj in nonclsn trnsp acc nontraf, sequela +C2898153|T037|AB|V78.3|ICD10CM|Occup of bus injured in nonclsn transport accident nontraf|Occup of bus injured in nonclsn transport accident nontraf +C2898153|T037|HT|V78.3|ICD10CM|Unspecified occupant of bus injured in noncollision transport accident in nontraffic accident|Unspecified occupant of bus injured in noncollision transport accident in nontraffic accident +C2898154|T037|AB|V78.3XXA|ICD10CM|Occup of bus injured in nonclsn trnsp accident nontraf, init|Occup of bus injured in nonclsn trnsp accident nontraf, init +C2898155|T037|AB|V78.3XXD|ICD10CM|Occup of bus injured in nonclsn trnsp accident nontraf, subs|Occup of bus injured in nonclsn trnsp accident nontraf, subs +C2898156|T037|AB|V78.3XXS|ICD10CM|Occup of bus injured in nonclsn trnsp acc nontraf, sequela|Occup of bus injured in nonclsn trnsp acc nontraf, sequela +C0477130|T037|PT|V78.4|ICD10|Bus occupant injured in noncollision transport accident, while boarding or alighting|Bus occupant injured in noncollision transport accident, while boarding or alighting +C2898157|T037|HT|V78.4|ICD10CM|Person boarding or alighting from bus injured in noncollision transport accident|Person boarding or alighting from bus injured in noncollision transport accident +C2898157|T037|AB|V78.4|ICD10CM|Prsn brd/alit from bus injured in nonclsn transport accident|Prsn brd/alit from bus injured in nonclsn transport accident +C2898158|T037|PT|V78.4XXA|ICD10CM|Person boarding or alighting from bus injured in noncollision transport accident, initial encounter|Person boarding or alighting from bus injured in noncollision transport accident, initial encounter +C2898158|T037|AB|V78.4XXA|ICD10CM|Prsn brd/alit from bus injured in nonclsn trnsp acc, init|Prsn brd/alit from bus injured in nonclsn trnsp acc, init +C2898159|T037|AB|V78.4XXD|ICD10CM|Prsn brd/alit from bus injured in nonclsn trnsp acc, subs|Prsn brd/alit from bus injured in nonclsn trnsp acc, subs +C2898160|T037|PT|V78.4XXS|ICD10CM|Person boarding or alighting from bus injured in noncollision transport accident, sequela|Person boarding or alighting from bus injured in noncollision transport accident, sequela +C2898160|T037|AB|V78.4XXS|ICD10CM|Prsn brd/alit from bus injured in nonclsn trnsp acc, sequela|Prsn brd/alit from bus injured in nonclsn trnsp acc, sequela +C0477131|T037|PT|V78.5|ICD10|Bus occupant injured in noncollision transport accident, driver, traffic accident|Bus occupant injured in noncollision transport accident, driver, traffic accident +C2898161|T037|AB|V78.5|ICD10CM|Driver of bus injured in nonclsn transport accident in traf|Driver of bus injured in nonclsn transport accident in traf +C2898161|T037|HT|V78.5|ICD10CM|Driver of bus injured in noncollision transport accident in traffic accident|Driver of bus injured in noncollision transport accident in traffic accident +C2898162|T037|AB|V78.5XXA|ICD10CM|Driver of bus injured in nonclsn trnsp acc in traf, init|Driver of bus injured in nonclsn trnsp acc in traf, init +C2898162|T037|PT|V78.5XXA|ICD10CM|Driver of bus injured in noncollision transport accident in traffic accident, initial encounter|Driver of bus injured in noncollision transport accident in traffic accident, initial encounter +C2898163|T037|AB|V78.5XXD|ICD10CM|Driver of bus injured in nonclsn trnsp acc in traf, subs|Driver of bus injured in nonclsn trnsp acc in traf, subs +C2898163|T037|PT|V78.5XXD|ICD10CM|Driver of bus injured in noncollision transport accident in traffic accident, subsequent encounter|Driver of bus injured in noncollision transport accident in traffic accident, subsequent encounter +C2898164|T037|AB|V78.5XXS|ICD10CM|Driver of bus injured in nonclsn trnsp acc in traf, sequela|Driver of bus injured in nonclsn trnsp acc in traf, sequela +C2898164|T037|PT|V78.5XXS|ICD10CM|Driver of bus injured in noncollision transport accident in traffic accident, sequela|Driver of bus injured in noncollision transport accident in traffic accident, sequela +C0477132|T037|PT|V78.6|ICD10|Bus occupant injured in noncollision transport accident, passenger, traffic accident|Bus occupant injured in noncollision transport accident, passenger, traffic accident +C2898165|T037|AB|V78.6|ICD10CM|Pasngr on bus injured in nonclsn transport accident in traf|Pasngr on bus injured in nonclsn transport accident in traf +C2898165|T037|HT|V78.6|ICD10CM|Passenger on bus injured in noncollision transport accident in traffic accident|Passenger on bus injured in noncollision transport accident in traffic accident +C2898166|T037|AB|V78.6XXA|ICD10CM|Pasngr on bus injured in nonclsn trnsp acc in traf, init|Pasngr on bus injured in nonclsn trnsp acc in traf, init +C2898166|T037|PT|V78.6XXA|ICD10CM|Passenger on bus injured in noncollision transport accident in traffic accident, initial encounter|Passenger on bus injured in noncollision transport accident in traffic accident, initial encounter +C2898167|T037|AB|V78.6XXD|ICD10CM|Pasngr on bus injured in nonclsn trnsp acc in traf, subs|Pasngr on bus injured in nonclsn trnsp acc in traf, subs +C2898168|T037|AB|V78.6XXS|ICD10CM|Pasngr on bus injured in nonclsn trnsp acc in traf, sequela|Pasngr on bus injured in nonclsn trnsp acc in traf, sequela +C2898168|T037|PT|V78.6XXS|ICD10CM|Passenger on bus injured in noncollision transport accident in traffic accident, sequela|Passenger on bus injured in noncollision transport accident in traffic accident, sequela +C2898169|T037|HT|V78.7|ICD10CM|Person on outside of bus injured in noncollision transport accident in traffic accident|Person on outside of bus injured in noncollision transport accident in traffic accident +C2898169|T037|AB|V78.7|ICD10CM|Person outside bus injured in nonclsn trnsp accident in traf|Person outside bus injured in nonclsn trnsp accident in traf +C2898170|T037|AB|V78.7XXA|ICD10CM|Person outside bus inj in nonclsn trnsp acc in traf, init|Person outside bus inj in nonclsn trnsp acc in traf, init +C2898171|T037|AB|V78.7XXD|ICD10CM|Person outside bus inj in nonclsn trnsp acc in traf, subs|Person outside bus inj in nonclsn trnsp acc in traf, subs +C2898172|T037|PT|V78.7XXS|ICD10CM|Person on outside of bus injured in noncollision transport accident in traffic accident, sequela|Person on outside of bus injured in noncollision transport accident in traffic accident, sequela +C2898172|T037|AB|V78.7XXS|ICD10CM|Person outside bus inj in nonclsn trnsp acc in traf, sequela|Person outside bus inj in nonclsn trnsp acc in traf, sequela +C0477134|T037|PT|V78.9|ICD10|Bus occupant injured in noncollision transport accident, unspecified bus occupant, traffic accident|Bus occupant injured in noncollision transport accident, unspecified bus occupant, traffic accident +C2898173|T037|AB|V78.9|ICD10CM|Occup of bus injured in nonclsn transport accident in traf|Occup of bus injured in nonclsn transport accident in traf +C2898173|T037|HT|V78.9|ICD10CM|Unspecified occupant of bus injured in noncollision transport accident in traffic accident|Unspecified occupant of bus injured in noncollision transport accident in traffic accident +C2898174|T037|AB|V78.9XXA|ICD10CM|Occup of bus injured in nonclsn trnsp accident in traf, init|Occup of bus injured in nonclsn trnsp accident in traf, init +C2898175|T037|AB|V78.9XXD|ICD10CM|Occup of bus injured in nonclsn trnsp accident in traf, subs|Occup of bus injured in nonclsn trnsp accident in traf, subs +C2898176|T037|AB|V78.9XXS|ICD10CM|Occup of bus injured in nonclsn trnsp acc in traf, sequela|Occup of bus injured in nonclsn trnsp acc in traf, sequela +C2898176|T037|PT|V78.9XXS|ICD10CM|Unspecified occupant of bus injured in noncollision transport accident in traffic accident, sequela|Unspecified occupant of bus injured in noncollision transport accident in traffic accident, sequela +C0477135|T037|AB|V79|ICD10CM|Bus occupant injured in other and unsp transport accidents|Bus occupant injured in other and unsp transport accidents +C0477135|T037|HT|V79|ICD10CM|Bus occupant injured in other and unspecified transport accidents|Bus occupant injured in other and unspecified transport accidents +C0477135|T037|HT|V79|ICD10|Bus occupant injured in other and unspecified transport accidents|Bus occupant injured in other and unspecified transport accidents +C0477136|T037|PT|V79.0|ICD10|Driver injured in collision with other and unspecified motor vehicles in nontraffic accident|Driver injured in collision with other and unspecified motor vehicles in nontraffic accident +C0477136|T037|AB|V79.0|ICD10CM|Driver of bus injured in collision w oth and unsp mv nontraf|Driver of bus injured in collision w oth and unsp mv nontraf +C0477136|T037|HT|V79.0|ICD10CM|Driver of bus injured in collision with other and unspecified motor vehicles in nontraffic accident|Driver of bus injured in collision with other and unspecified motor vehicles in nontraffic accident +C2898177|T037|AB|V79.00|ICD10CM|Driver of bus injured in collision w unsp mv nontraf|Driver of bus injured in collision w unsp mv nontraf +C2898177|T037|HT|V79.00|ICD10CM|Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident|Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident +C2898178|T037|AB|V79.00XA|ICD10CM|Driver of bus injured in collision w unsp mv nontraf, init|Driver of bus injured in collision w unsp mv nontraf, init +C2898179|T037|AB|V79.00XD|ICD10CM|Driver of bus injured in collision w unsp mv nontraf, subs|Driver of bus injured in collision w unsp mv nontraf, subs +C2898180|T037|AB|V79.00XS|ICD10CM|Driver of bus injured in clsn w unsp mv nontraf, sequela|Driver of bus injured in clsn w unsp mv nontraf, sequela +C2898180|T037|PT|V79.00XS|ICD10CM|Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident, sequela|Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident, sequela +C2898181|T037|AB|V79.09|ICD10CM|Driver of bus injured in collision w oth mv nontraf|Driver of bus injured in collision w oth mv nontraf +C2898181|T037|HT|V79.09|ICD10CM|Driver of bus injured in collision with other motor vehicles in nontraffic accident|Driver of bus injured in collision with other motor vehicles in nontraffic accident +C2898182|T037|AB|V79.09XA|ICD10CM|Driver of bus injured in collision w oth mv nontraf, init|Driver of bus injured in collision w oth mv nontraf, init +C2898183|T037|AB|V79.09XD|ICD10CM|Driver of bus injured in collision w oth mv nontraf, subs|Driver of bus injured in collision w oth mv nontraf, subs +C2898184|T037|AB|V79.09XS|ICD10CM|Driver of bus injured in collision w oth mv nontraf, sequela|Driver of bus injured in collision w oth mv nontraf, sequela +C2898184|T037|PT|V79.09XS|ICD10CM|Driver of bus injured in collision with other motor vehicles in nontraffic accident, sequela|Driver of bus injured in collision with other motor vehicles in nontraffic accident, sequela +C0496486|T037|PT|V79.1|ICD10|Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident|Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident +C0496486|T037|AB|V79.1|ICD10CM|Passenger on bus injured in clsn w oth and unsp mv nontraf|Passenger on bus injured in clsn w oth and unsp mv nontraf +C2898185|T037|AB|V79.10|ICD10CM|Passenger on bus injured in collision w unsp mv nontraf|Passenger on bus injured in collision w unsp mv nontraf +C2898185|T037|HT|V79.10|ICD10CM|Passenger on bus injured in collision with unspecified motor vehicles in nontraffic accident|Passenger on bus injured in collision with unspecified motor vehicles in nontraffic accident +C2898186|T037|AB|V79.10XA|ICD10CM|Passenger on bus injured in clsn w unsp mv nontraf, init|Passenger on bus injured in clsn w unsp mv nontraf, init +C2898187|T037|AB|V79.10XD|ICD10CM|Passenger on bus injured in clsn w unsp mv nontraf, subs|Passenger on bus injured in clsn w unsp mv nontraf, subs +C2898188|T037|AB|V79.10XS|ICD10CM|Passenger on bus injured in clsn w unsp mv nontraf, sequela|Passenger on bus injured in clsn w unsp mv nontraf, sequela +C2898189|T037|AB|V79.19|ICD10CM|Passenger on bus injured in collision w oth mv nontraf|Passenger on bus injured in collision w oth mv nontraf +C2898189|T037|HT|V79.19|ICD10CM|Passenger on bus injured in collision with other motor vehicles in nontraffic accident|Passenger on bus injured in collision with other motor vehicles in nontraffic accident +C2898190|T037|AB|V79.19XA|ICD10CM|Passenger on bus injured in collision w oth mv nontraf, init|Passenger on bus injured in collision w oth mv nontraf, init +C2898191|T037|AB|V79.19XD|ICD10CM|Passenger on bus injured in collision w oth mv nontraf, subs|Passenger on bus injured in collision w oth mv nontraf, subs +C2898192|T037|AB|V79.19XS|ICD10CM|Passenger on bus injured in clsn w oth mv nontraf, sequela|Passenger on bus injured in clsn w oth mv nontraf, sequela +C2898192|T037|PT|V79.19XS|ICD10CM|Passenger on bus injured in collision with other motor vehicles in nontraffic accident, sequela|Passenger on bus injured in collision with other motor vehicles in nontraffic accident, sequela +C0477138|T037|AB|V79.2|ICD10CM|Unsp bus occupant injured in clsn w oth and unsp mv nontraf|Unsp bus occupant injured in clsn w oth and unsp mv nontraf +C2898193|T037|ET|V79.20|ICD10CM|Bus collision NOS, nontraffic|Bus collision NOS, nontraffic +C2898194|T037|AB|V79.20|ICD10CM|Unsp bus occupant injured in collision w unsp mv nontraf|Unsp bus occupant injured in collision w unsp mv nontraf +C2898194|T037|HT|V79.20|ICD10CM|Unspecified bus occupant injured in collision with unspecified motor vehicles in nontraffic accident|Unspecified bus occupant injured in collision with unspecified motor vehicles in nontraffic accident +C2898195|T037|AB|V79.20XA|ICD10CM|Unsp bus occupant injured in clsn w unsp mv nontraf, init|Unsp bus occupant injured in clsn w unsp mv nontraf, init +C2898196|T037|AB|V79.20XD|ICD10CM|Unsp bus occupant injured in clsn w unsp mv nontraf, subs|Unsp bus occupant injured in clsn w unsp mv nontraf, subs +C2898197|T037|AB|V79.20XS|ICD10CM|Unsp bus occupant injured in clsn w unsp mv nontraf, sequela|Unsp bus occupant injured in clsn w unsp mv nontraf, sequela +C2898198|T037|AB|V79.29|ICD10CM|Unsp bus occupant injured in collision w oth mv nontraf|Unsp bus occupant injured in collision w oth mv nontraf +C2898198|T037|HT|V79.29|ICD10CM|Unspecified bus occupant injured in collision with other motor vehicles in nontraffic accident|Unspecified bus occupant injured in collision with other motor vehicles in nontraffic accident +C2898199|T037|AB|V79.29XA|ICD10CM|Unsp bus occupant injured in clsn w oth mv nontraf, init|Unsp bus occupant injured in clsn w oth mv nontraf, init +C2898200|T037|AB|V79.29XD|ICD10CM|Unsp bus occupant injured in clsn w oth mv nontraf, subs|Unsp bus occupant injured in clsn w oth mv nontraf, subs +C2898201|T037|AB|V79.29XS|ICD10CM|Unsp bus occupant injured in clsn w oth mv nontraf, sequela|Unsp bus occupant injured in clsn w oth mv nontraf, sequela +C2898202|T037|ET|V79.3|ICD10CM|Bus accident NOS, nontraffic|Bus accident NOS, nontraffic +C2898204|T037|AB|V79.3|ICD10CM|Bus occupant (driver) (passenger) injured in unsp nontraf|Bus occupant (driver) (passenger) injured in unsp nontraf +C2898204|T037|HT|V79.3|ICD10CM|Bus occupant (driver) (passenger) injured in unspecified nontraffic accident|Bus occupant (driver) (passenger) injured in unspecified nontraffic accident +C0477139|T037|PT|V79.3|ICD10|Bus occupant [any] injured in unspecified nontraffic accident|Bus occupant [any] injured in unspecified nontraffic accident +C2898203|T037|ET|V79.3|ICD10CM|Bus occupant injured in nontraffic accident NOS|Bus occupant injured in nontraffic accident NOS +C2898205|T037|PT|V79.3XXA|ICD10CM|Bus occupant (driver) (passenger) injured in unspecified nontraffic accident, initial encounter|Bus occupant (driver) (passenger) injured in unspecified nontraffic accident, initial encounter +C2898205|T037|AB|V79.3XXA|ICD10CM|Bus occupant (driver) injured in unsp nontraf, init|Bus occupant (driver) injured in unsp nontraf, init +C2898206|T037|PT|V79.3XXD|ICD10CM|Bus occupant (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter|Bus occupant (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter +C2898206|T037|AB|V79.3XXD|ICD10CM|Bus occupant (driver) injured in unsp nontraf, subs|Bus occupant (driver) injured in unsp nontraf, subs +C2898207|T037|PT|V79.3XXS|ICD10CM|Bus occupant (driver) (passenger) injured in unspecified nontraffic accident, sequela|Bus occupant (driver) (passenger) injured in unspecified nontraffic accident, sequela +C2898207|T037|AB|V79.3XXS|ICD10CM|Bus occupant (driver) injured in unsp nontraf, sequela|Bus occupant (driver) injured in unsp nontraf, sequela +C0477140|T037|PT|V79.4|ICD10|Driver injured in collision with other and unspecified motor vehicles in traffic accident|Driver injured in collision with other and unspecified motor vehicles in traffic accident +C0477140|T037|AB|V79.4|ICD10CM|Driver of bus injured in collision w oth and unsp mv in traf|Driver of bus injured in collision w oth and unsp mv in traf +C0477140|T037|HT|V79.4|ICD10CM|Driver of bus injured in collision with other and unspecified motor vehicles in traffic accident|Driver of bus injured in collision with other and unspecified motor vehicles in traffic accident +C2898208|T037|AB|V79.40|ICD10CM|Driver of bus injured in collision w unsp mv in traf|Driver of bus injured in collision w unsp mv in traf +C2898208|T037|HT|V79.40|ICD10CM|Driver of bus injured in collision with unspecified motor vehicles in traffic accident|Driver of bus injured in collision with unspecified motor vehicles in traffic accident +C2898209|T037|AB|V79.40XA|ICD10CM|Driver of bus injured in collision w unsp mv in traf, init|Driver of bus injured in collision w unsp mv in traf, init +C2898210|T037|AB|V79.40XD|ICD10CM|Driver of bus injured in collision w unsp mv in traf, subs|Driver of bus injured in collision w unsp mv in traf, subs +C2898211|T037|AB|V79.40XS|ICD10CM|Driver of bus injured in clsn w unsp mv in traf, sequela|Driver of bus injured in clsn w unsp mv in traf, sequela +C2898211|T037|PT|V79.40XS|ICD10CM|Driver of bus injured in collision with unspecified motor vehicles in traffic accident, sequela|Driver of bus injured in collision with unspecified motor vehicles in traffic accident, sequela +C2898212|T037|AB|V79.49|ICD10CM|Driver of bus injured in collision w oth mv in traf|Driver of bus injured in collision w oth mv in traf +C2898212|T037|HT|V79.49|ICD10CM|Driver of bus injured in collision with other motor vehicles in traffic accident|Driver of bus injured in collision with other motor vehicles in traffic accident +C2898213|T037|AB|V79.49XA|ICD10CM|Driver of bus injured in collision w oth mv in traf, init|Driver of bus injured in collision w oth mv in traf, init +C2898213|T037|PT|V79.49XA|ICD10CM|Driver of bus injured in collision with other motor vehicles in traffic accident, initial encounter|Driver of bus injured in collision with other motor vehicles in traffic accident, initial encounter +C2898214|T037|AB|V79.49XD|ICD10CM|Driver of bus injured in collision w oth mv in traf, subs|Driver of bus injured in collision w oth mv in traf, subs +C2898215|T037|AB|V79.49XS|ICD10CM|Driver of bus injured in collision w oth mv in traf, sequela|Driver of bus injured in collision w oth mv in traf, sequela +C2898215|T037|PT|V79.49XS|ICD10CM|Driver of bus injured in collision with other motor vehicles in traffic accident, sequela|Driver of bus injured in collision with other motor vehicles in traffic accident, sequela +C0496488|T037|PT|V79.5|ICD10|Passenger injured in collision with other and unspecified motor vehicles in traffic accident|Passenger injured in collision with other and unspecified motor vehicles in traffic accident +C0496488|T037|AB|V79.5|ICD10CM|Passenger on bus injured in clsn w oth and unsp mv in traf|Passenger on bus injured in clsn w oth and unsp mv in traf +C0496488|T037|HT|V79.5|ICD10CM|Passenger on bus injured in collision with other and unspecified motor vehicles in traffic accident|Passenger on bus injured in collision with other and unspecified motor vehicles in traffic accident +C2898216|T037|AB|V79.50|ICD10CM|Passenger on bus injured in collision w unsp mv in traf|Passenger on bus injured in collision w unsp mv in traf +C2898216|T037|HT|V79.50|ICD10CM|Passenger on bus injured in collision with unspecified motor vehicles in traffic accident|Passenger on bus injured in collision with unspecified motor vehicles in traffic accident +C2898217|T037|AB|V79.50XA|ICD10CM|Passenger on bus injured in clsn w unsp mv in traf, init|Passenger on bus injured in clsn w unsp mv in traf, init +C2898218|T037|AB|V79.50XD|ICD10CM|Passenger on bus injured in clsn w unsp mv in traf, subs|Passenger on bus injured in clsn w unsp mv in traf, subs +C2898219|T037|AB|V79.50XS|ICD10CM|Passenger on bus injured in clsn w unsp mv in traf, sequela|Passenger on bus injured in clsn w unsp mv in traf, sequela +C2898219|T037|PT|V79.50XS|ICD10CM|Passenger on bus injured in collision with unspecified motor vehicles in traffic accident, sequela|Passenger on bus injured in collision with unspecified motor vehicles in traffic accident, sequela +C2898220|T037|AB|V79.59|ICD10CM|Passenger on bus injured in collision w oth mv in traf|Passenger on bus injured in collision w oth mv in traf +C2898220|T037|HT|V79.59|ICD10CM|Passenger on bus injured in collision with other motor vehicles in traffic accident|Passenger on bus injured in collision with other motor vehicles in traffic accident +C2898221|T037|AB|V79.59XA|ICD10CM|Passenger on bus injured in collision w oth mv in traf, init|Passenger on bus injured in collision w oth mv in traf, init +C2898222|T037|AB|V79.59XD|ICD10CM|Passenger on bus injured in collision w oth mv in traf, subs|Passenger on bus injured in collision w oth mv in traf, subs +C2898223|T037|AB|V79.59XS|ICD10CM|Passenger on bus injured in clsn w oth mv in traf, sequela|Passenger on bus injured in clsn w oth mv in traf, sequela +C2898223|T037|PT|V79.59XS|ICD10CM|Passenger on bus injured in collision with other motor vehicles in traffic accident, sequela|Passenger on bus injured in collision with other motor vehicles in traffic accident, sequela +C0477142|T037|AB|V79.6|ICD10CM|Unsp bus occupant injured in clsn w oth and unsp mv in traf|Unsp bus occupant injured in clsn w oth and unsp mv in traf +C2898224|T037|ET|V79.60|ICD10CM|Bus collision NOS (traffic)|Bus collision NOS (traffic) +C2898225|T037|AB|V79.60|ICD10CM|Unsp bus occupant injured in collision w unsp mv in traf|Unsp bus occupant injured in collision w unsp mv in traf +C2898225|T037|HT|V79.60|ICD10CM|Unspecified bus occupant injured in collision with unspecified motor vehicles in traffic accident|Unspecified bus occupant injured in collision with unspecified motor vehicles in traffic accident +C2898226|T037|AB|V79.60XA|ICD10CM|Unsp bus occupant injured in clsn w unsp mv in traf, init|Unsp bus occupant injured in clsn w unsp mv in traf, init +C2898227|T037|AB|V79.60XD|ICD10CM|Unsp bus occupant injured in clsn w unsp mv in traf, subs|Unsp bus occupant injured in clsn w unsp mv in traf, subs +C2898228|T037|AB|V79.60XS|ICD10CM|Unsp bus occupant injured in clsn w unsp mv in traf, sequela|Unsp bus occupant injured in clsn w unsp mv in traf, sequela +C2898229|T037|AB|V79.69|ICD10CM|Unsp bus occupant injured in collision w oth mv in traf|Unsp bus occupant injured in collision w oth mv in traf +C2898229|T037|HT|V79.69|ICD10CM|Unspecified bus occupant injured in collision with other motor vehicles in traffic accident|Unspecified bus occupant injured in collision with other motor vehicles in traffic accident +C2898230|T037|AB|V79.69XA|ICD10CM|Unsp bus occupant injured in clsn w oth mv in traf, init|Unsp bus occupant injured in clsn w oth mv in traf, init +C2898231|T037|AB|V79.69XD|ICD10CM|Unsp bus occupant injured in clsn w oth mv in traf, subs|Unsp bus occupant injured in clsn w oth mv in traf, subs +C2898232|T037|AB|V79.69XS|ICD10CM|Unsp bus occupant injured in clsn w oth mv in traf, sequela|Unsp bus occupant injured in clsn w oth mv in traf, sequela +C2898232|T037|PT|V79.69XS|ICD10CM|Unspecified bus occupant injured in collision with other motor vehicles in traffic accident, sequela|Unspecified bus occupant injured in collision with other motor vehicles in traffic accident, sequela +C2898233|T037|HT|V79.8|ICD10CM|Bus occupant (driver) (passenger) injured in other specified transport accidents|Bus occupant (driver) (passenger) injured in other specified transport accidents +C2898233|T037|AB|V79.8|ICD10CM|Bus occupant (driver) injured in oth transport accidents|Bus occupant (driver) injured in oth transport accidents +C0477143|T037|PT|V79.8|ICD10|Bus occupant [any] injured in other specified transport accidents|Bus occupant [any] injured in other specified transport accidents +C2898234|T037|HT|V79.81|ICD10CM|Bus occupant (driver) (passenger) injured in transport accidents with military vehicle|Bus occupant (driver) (passenger) injured in transport accidents with military vehicle +C2898234|T037|AB|V79.81|ICD10CM|Bus occupant injured in trnsp acc w military vehicle|Bus occupant injured in trnsp acc w military vehicle +C2898235|T037|AB|V79.81XA|ICD10CM|Bus occupant injured in trnsp acc w military vehicle, init|Bus occupant injured in trnsp acc w military vehicle, init +C2898236|T037|AB|V79.81XD|ICD10CM|Bus occupant injured in trnsp acc w military vehicle, subs|Bus occupant injured in trnsp acc w military vehicle, subs +C2898237|T037|PT|V79.81XS|ICD10CM|Bus occupant (driver) (passenger) injured in transport accidents with military vehicle, sequela|Bus occupant (driver) (passenger) injured in transport accidents with military vehicle, sequela +C2898237|T037|AB|V79.81XS|ICD10CM|Bus occupant injured in trnsp acc w miltry vehicle, sequela|Bus occupant injured in trnsp acc w miltry vehicle, sequela +C2898233|T037|HT|V79.88|ICD10CM|Bus occupant (driver) (passenger) injured in other specified transport accidents|Bus occupant (driver) (passenger) injured in other specified transport accidents +C2898233|T037|AB|V79.88|ICD10CM|Bus occupant (driver) injured in oth transport accidents|Bus occupant (driver) injured in oth transport accidents +C2898238|T037|PT|V79.88XA|ICD10CM|Bus occupant (driver) (passenger) injured in other specified transport accidents, initial encounter|Bus occupant (driver) (passenger) injured in other specified transport accidents, initial encounter +C2898238|T037|AB|V79.88XA|ICD10CM|Bus occupant (driver) injured in oth transport acc, init|Bus occupant (driver) injured in oth transport acc, init +C2898239|T037|AB|V79.88XD|ICD10CM|Bus occupant (driver) injured in oth transport acc, subs|Bus occupant (driver) injured in oth transport acc, subs +C2898240|T037|PT|V79.88XS|ICD10CM|Bus occupant (driver) (passenger) injured in other specified transport accidents, sequela|Bus occupant (driver) (passenger) injured in other specified transport accidents, sequela +C2898240|T037|AB|V79.88XS|ICD10CM|Bus occupant (driver) injured in oth transport acc, sequela|Bus occupant (driver) injured in oth transport acc, sequela +C0574036|T037|ET|V79.9|ICD10CM|Bus accident NOS|Bus accident NOS +C2898241|T037|AB|V79.9|ICD10CM|Bus occupant (driver) (passenger) injured in unsp traf|Bus occupant (driver) (passenger) injured in unsp traf +C2898241|T037|HT|V79.9|ICD10CM|Bus occupant (driver) (passenger) injured in unspecified traffic accident|Bus occupant (driver) (passenger) injured in unspecified traffic accident +C0477144|T037|PT|V79.9|ICD10|Bus occupant [any] injured in unspecified traffic accident|Bus occupant [any] injured in unspecified traffic accident +C2898242|T037|AB|V79.9XXA|ICD10CM|Bus occupant (driver) (passenger) injured in unsp traf, init|Bus occupant (driver) (passenger) injured in unsp traf, init +C2898242|T037|PT|V79.9XXA|ICD10CM|Bus occupant (driver) (passenger) injured in unspecified traffic accident, initial encounter|Bus occupant (driver) (passenger) injured in unspecified traffic accident, initial encounter +C2898243|T037|AB|V79.9XXD|ICD10CM|Bus occupant (driver) (passenger) injured in unsp traf, subs|Bus occupant (driver) (passenger) injured in unsp traf, subs +C2898243|T037|PT|V79.9XXD|ICD10CM|Bus occupant (driver) (passenger) injured in unspecified traffic accident, subsequent encounter|Bus occupant (driver) (passenger) injured in unspecified traffic accident, subsequent encounter +C2898244|T037|PT|V79.9XXS|ICD10CM|Bus occupant (driver) (passenger) injured in unspecified traffic accident, sequela|Bus occupant (driver) (passenger) injured in unspecified traffic accident, sequela +C2898244|T037|AB|V79.9XXS|ICD10CM|Bus occupant (driver) injured in unsp traf, sequela|Bus occupant (driver) injured in unsp traf, sequela +C0496489|T037|HT|V80|ICD10|Animal-rider or occupant of animal-drawn vehicle injured in transport accident|Animal-rider or occupant of animal-drawn vehicle injured in transport accident +C0496489|T037|HT|V80|ICD10CM|Animal-rider or occupant of animal-drawn vehicle injured in transport accident|Animal-rider or occupant of animal-drawn vehicle injured in transport accident +C0496489|T037|AB|V80|ICD10CM|Animl-ridr or occ of anml-drn vehicle injured in trnsp acc|Animl-ridr or occ of anml-drn vehicle injured in trnsp acc +C0477145|T037|HT|V80-V89|ICD10CM|Other land transport accidents (V80-V89)|Other land transport accidents (V80-V89) +C0477145|T037|HT|V80-V89.9|ICD10|Other land transport accidents|Other land transport accidents +C2898245|T037|AB|V80.0|ICD10CM|Animl-rider/occ injured fall from same w/o collision|Animl-rider/occ injured fall from same w/o collision +C2898246|T037|HT|V80.01|ICD10CM|Animal-rider injured by fall from or being thrown from animal in noncollision accident|Animal-rider injured by fall from or being thrown from animal in noncollision accident +C2898246|T037|AB|V80.01|ICD10CM|Animl-ridr injured by fall fr animal in nonclsn accident|Animl-ridr injured by fall fr animal in nonclsn accident +C2898247|T037|HT|V80.010|ICD10CM|Animal-rider injured by fall from or being thrown from horse in noncollision accident|Animal-rider injured by fall from or being thrown from horse in noncollision accident +C2898247|T037|AB|V80.010|ICD10CM|Animl-ridr injured by fall fr horse in noncollision accident|Animl-ridr injured by fall fr horse in noncollision accident +C2898248|T037|AB|V80.010A|ICD10CM|Animl-ridr injured by fall fr horse in nonclsn acc, init|Animl-ridr injured by fall fr horse in nonclsn acc, init +C2898249|T037|AB|V80.010D|ICD10CM|Animl-ridr injured by fall fr horse in nonclsn acc, subs|Animl-ridr injured by fall fr horse in nonclsn acc, subs +C2898250|T037|PT|V80.010S|ICD10CM|Animal-rider injured by fall from or being thrown from horse in noncollision accident, sequela|Animal-rider injured by fall from or being thrown from horse in noncollision accident, sequela +C2898250|T037|AB|V80.010S|ICD10CM|Animl-ridr injured by fall fr horse in nonclsn acc, sequela|Animl-ridr injured by fall fr horse in nonclsn acc, sequela +C2898251|T037|HT|V80.018|ICD10CM|Animal-rider injured by fall from or being thrown from other animal in noncollision accident|Animal-rider injured by fall from or being thrown from other animal in noncollision accident +C2898251|T037|AB|V80.018|ICD10CM|Animl-ridr injured by fall fr animl in noncollision accident|Animl-ridr injured by fall fr animl in noncollision accident +C2898252|T037|AB|V80.018A|ICD10CM|Animl-ridr injured by fall fr animl in nonclsn acc, init|Animl-ridr injured by fall fr animl in nonclsn acc, init +C2898253|T037|AB|V80.018D|ICD10CM|Animl-ridr injured by fall fr animl in nonclsn acc, subs|Animl-ridr injured by fall fr animl in nonclsn acc, subs +C2898254|T037|AB|V80.018S|ICD10CM|Animl-ridr injured by fall fr animl in nonclsn acc, sequela|Animl-ridr injured by fall fr animl in nonclsn acc, sequela +C2898256|T037|AB|V80.02|ICD10CM|Occ of anml-drn vehicle inj by fall fr veh in nonclsn acc|Occ of anml-drn vehicle inj by fall fr veh in nonclsn acc +C0415641|T037|ET|V80.02|ICD10CM|Overturning animal-drawn vehicle NOS|Overturning animal-drawn vehicle NOS +C2898255|T037|ET|V80.02|ICD10CM|Overturning animal-drawn vehicle without collision|Overturning animal-drawn vehicle without collision +C2898257|T037|AB|V80.02XA|ICD10CM|Occ of anml-drn veh inj by fall fr veh in nonclsn acc, init|Occ of anml-drn veh inj by fall fr veh in nonclsn acc, init +C2898258|T037|AB|V80.02XD|ICD10CM|Occ of anml-drn veh inj by fall fr veh in nonclsn acc, subs|Occ of anml-drn veh inj by fall fr veh in nonclsn acc, subs +C2898259|T037|AB|V80.02XS|ICD10CM|Occ of anml-drn veh inj by fall fr veh in nonclsn acc, sqla|Occ of anml-drn veh inj by fall fr veh in nonclsn acc, sqla +C2898260|T037|HT|V80.1|ICD10CM|Animal-rider or occupant of animal-drawn vehicle injured in collision with pedestrian or animal|Animal-rider or occupant of animal-drawn vehicle injured in collision with pedestrian or animal +C2898260|T037|AB|V80.1|ICD10CM|Animl-ridr or occ of anml-drn vehicle inj in clsn w ped/anml|Animl-ridr or occ of anml-drn vehicle inj in clsn w ped/anml +C0496491|T037|PT|V80.1|ICD10|Rider or occupant injured in collision with pedestrian or animal|Rider or occupant injured in collision with pedestrian or animal +C2898261|T037|AB|V80.11|ICD10CM|Animal-rider injured in collision with pedestrian or animal|Animal-rider injured in collision with pedestrian or animal +C2898261|T037|HT|V80.11|ICD10CM|Animal-rider injured in collision with pedestrian or animal|Animal-rider injured in collision with pedestrian or animal +C2898262|T037|AB|V80.11XA|ICD10CM|Animal-rider injured in collision w ped/anml, init|Animal-rider injured in collision w ped/anml, init +C2898262|T037|PT|V80.11XA|ICD10CM|Animal-rider injured in collision with pedestrian or animal, initial encounter|Animal-rider injured in collision with pedestrian or animal, initial encounter +C2898263|T037|AB|V80.11XD|ICD10CM|Animal-rider injured in collision w ped/anml, subs|Animal-rider injured in collision w ped/anml, subs +C2898263|T037|PT|V80.11XD|ICD10CM|Animal-rider injured in collision with pedestrian or animal, subsequent encounter|Animal-rider injured in collision with pedestrian or animal, subsequent encounter +C2898264|T037|AB|V80.11XS|ICD10CM|Animal-rider injured in collision w ped/anml, sequela|Animal-rider injured in collision w ped/anml, sequela +C2898264|T037|PT|V80.11XS|ICD10CM|Animal-rider injured in collision with pedestrian or animal, sequela|Animal-rider injured in collision with pedestrian or animal, sequela +C2898265|T037|HT|V80.12|ICD10CM|Occupant of animal-drawn vehicle injured in collision with pedestrian or animal|Occupant of animal-drawn vehicle injured in collision with pedestrian or animal +C2898265|T037|AB|V80.12|ICD10CM|Occupant of anml-drn vehicle injured in collision w ped/anml|Occupant of anml-drn vehicle injured in collision w ped/anml +C2898266|T037|AB|V80.12XA|ICD10CM|Occ of anml-drn vehicle injured in clsn w ped/anml, init|Occ of anml-drn vehicle injured in clsn w ped/anml, init +C2898266|T037|PT|V80.12XA|ICD10CM|Occupant of animal-drawn vehicle injured in collision with pedestrian or animal, initial encounter|Occupant of animal-drawn vehicle injured in collision with pedestrian or animal, initial encounter +C2898267|T037|AB|V80.12XD|ICD10CM|Occ of anml-drn vehicle injured in clsn w ped/anml, subs|Occ of anml-drn vehicle injured in clsn w ped/anml, subs +C2898268|T037|AB|V80.12XS|ICD10CM|Occ of anml-drn vehicle injured in clsn w ped/anml, sequela|Occ of anml-drn vehicle injured in clsn w ped/anml, sequela +C2898268|T037|PT|V80.12XS|ICD10CM|Occupant of animal-drawn vehicle injured in collision with pedestrian or animal, sequela|Occupant of animal-drawn vehicle injured in collision with pedestrian or animal, sequela +C2898269|T037|HT|V80.2|ICD10CM|Animal-rider or occupant of animal-drawn vehicle injured in collision with pedal cycle|Animal-rider or occupant of animal-drawn vehicle injured in collision with pedal cycle +C2898269|T037|AB|V80.2|ICD10CM|Animl-ridr or occ of anml-drn vehicle inj in clsn w pedl cyc|Animl-ridr or occ of anml-drn vehicle inj in clsn w pedl cyc +C0477146|T037|PT|V80.2|ICD10|Rider or occupant injured in collision with pedal cycle|Rider or occupant injured in collision with pedal cycle +C2898270|T037|AB|V80.21|ICD10CM|Animal-rider injured in collision with pedal cycle|Animal-rider injured in collision with pedal cycle +C2898270|T037|HT|V80.21|ICD10CM|Animal-rider injured in collision with pedal cycle|Animal-rider injured in collision with pedal cycle +C2898271|T037|AB|V80.21XA|ICD10CM|Animal-rider injured in collision w pedal cycle, init encntr|Animal-rider injured in collision w pedal cycle, init encntr +C2898271|T037|PT|V80.21XA|ICD10CM|Animal-rider injured in collision with pedal cycle, initial encounter|Animal-rider injured in collision with pedal cycle, initial encounter +C2898272|T037|AB|V80.21XD|ICD10CM|Animal-rider injured in collision w pedal cycle, subs encntr|Animal-rider injured in collision w pedal cycle, subs encntr +C2898272|T037|PT|V80.21XD|ICD10CM|Animal-rider injured in collision with pedal cycle, subsequent encounter|Animal-rider injured in collision with pedal cycle, subsequent encounter +C2898273|T037|AB|V80.21XS|ICD10CM|Animal-rider injured in collision with pedal cycle, sequela|Animal-rider injured in collision with pedal cycle, sequela +C2898273|T037|PT|V80.21XS|ICD10CM|Animal-rider injured in collision with pedal cycle, sequela|Animal-rider injured in collision with pedal cycle, sequela +C2898274|T037|HT|V80.22|ICD10CM|Occupant of animal-drawn vehicle injured in collision with pedal cycle|Occupant of animal-drawn vehicle injured in collision with pedal cycle +C2898274|T037|AB|V80.22|ICD10CM|Occupant of anml-drn vehicle injured in collision w pedl cyc|Occupant of anml-drn vehicle injured in collision w pedl cyc +C2898275|T037|AB|V80.22XA|ICD10CM|Occ of anml-drn vehicle injured in clsn w pedl cyc, init|Occ of anml-drn vehicle injured in clsn w pedl cyc, init +C2898275|T037|PT|V80.22XA|ICD10CM|Occupant of animal-drawn vehicle injured in collision with pedal cycle, initial encounter|Occupant of animal-drawn vehicle injured in collision with pedal cycle, initial encounter +C2898276|T037|AB|V80.22XD|ICD10CM|Occ of anml-drn vehicle injured in clsn w pedl cyc, subs|Occ of anml-drn vehicle injured in clsn w pedl cyc, subs +C2898276|T037|PT|V80.22XD|ICD10CM|Occupant of animal-drawn vehicle injured in collision with pedal cycle, subsequent encounter|Occupant of animal-drawn vehicle injured in collision with pedal cycle, subsequent encounter +C2898277|T037|AB|V80.22XS|ICD10CM|Occ of anml-drn vehicle injured in clsn w pedl cyc, sequela|Occ of anml-drn vehicle injured in clsn w pedl cyc, sequela +C2898277|T037|PT|V80.22XS|ICD10CM|Occupant of animal-drawn vehicle injured in collision with pedal cycle, sequela|Occupant of animal-drawn vehicle injured in collision with pedal cycle, sequela +C2898278|T037|AB|V80.3|ICD10CM|Animl-ridr or occ of anml-drn veh inj in clsn w 2/3-whl mv|Animl-ridr or occ of anml-drn veh inj in clsn w 2/3-whl mv +C0477147|T037|PT|V80.3|ICD10|Rider or occupant injured in collision with two- or three-wheeled motor vehicle|Rider or occupant injured in collision with two- or three-wheeled motor vehicle +C2898279|T037|AB|V80.31|ICD10CM|Animal-rider injured in collision w 2/3-whl mv|Animal-rider injured in collision w 2/3-whl mv +C2898279|T037|HT|V80.31|ICD10CM|Animal-rider injured in collision with two- or three-wheeled motor vehicle|Animal-rider injured in collision with two- or three-wheeled motor vehicle +C2898280|T037|AB|V80.31XA|ICD10CM|Animal-rider injured in collision w 2/3-whl mv, init|Animal-rider injured in collision w 2/3-whl mv, init +C2898280|T037|PT|V80.31XA|ICD10CM|Animal-rider injured in collision with two- or three-wheeled motor vehicle, initial encounter|Animal-rider injured in collision with two- or three-wheeled motor vehicle, initial encounter +C2898281|T037|AB|V80.31XD|ICD10CM|Animal-rider injured in collision w 2/3-whl mv, subs|Animal-rider injured in collision w 2/3-whl mv, subs +C2898281|T037|PT|V80.31XD|ICD10CM|Animal-rider injured in collision with two- or three-wheeled motor vehicle, subsequent encounter|Animal-rider injured in collision with two- or three-wheeled motor vehicle, subsequent encounter +C2898282|T037|AB|V80.31XS|ICD10CM|Animal-rider injured in collision w 2/3-whl mv, sequela|Animal-rider injured in collision w 2/3-whl mv, sequela +C2898282|T037|PT|V80.31XS|ICD10CM|Animal-rider injured in collision with two- or three-wheeled motor vehicle, sequela|Animal-rider injured in collision with two- or three-wheeled motor vehicle, sequela +C2898283|T037|HT|V80.32|ICD10CM|Occupant of animal-drawn vehicle injured in collision with two- or three-wheeled motor vehicle|Occupant of animal-drawn vehicle injured in collision with two- or three-wheeled motor vehicle +C2898283|T037|AB|V80.32|ICD10CM|Occupant of anml-drn vehicle injured in clsn w 2/3-whl mv|Occupant of anml-drn vehicle injured in clsn w 2/3-whl mv +C2898284|T037|AB|V80.32XA|ICD10CM|Occ of anml-drn vehicle injured in clsn w 2/3-whl mv, init|Occ of anml-drn vehicle injured in clsn w 2/3-whl mv, init +C2898285|T037|AB|V80.32XD|ICD10CM|Occ of anml-drn vehicle injured in clsn w 2/3-whl mv, subs|Occ of anml-drn vehicle injured in clsn w 2/3-whl mv, subs +C2898286|T037|AB|V80.32XS|ICD10CM|Occ of anml-drn vehicle inj in clsn w 2/3-whl mv, sequela|Occ of anml-drn vehicle inj in clsn w 2/3-whl mv, sequela +C2898287|T037|AB|V80.4|ICD10CM|Animl rider/occ injured collision hvy veh|Animl rider/occ injured collision hvy veh +C0477148|T037|PT|V80.4|ICD10|Rider or occupant injured in collision with car, pick-up truck, van, heavy transport vehicle or bus|Rider or occupant injured in collision with car, pick-up truck, van, heavy transport vehicle or bus +C2898288|T037|HT|V80.41|ICD10CM|Animal-rider injured in collision with car, pick-up truck, van, heavy transport vehicle or bus|Animal-rider injured in collision with car, pick-up truck, van, heavy transport vehicle or bus +C2898288|T037|AB|V80.41|ICD10CM|Animl-ridr injured pick-up truck, pick-up truck, van, hv veh|Animl-ridr injured pick-up truck, pick-up truck, van, hv veh +C2898289|T037|AB|V80.41XA|ICD10CM|Animl-ridr inj pk-up truck, pick-up truck, van, hv veh, init|Animl-ridr inj pk-up truck, pick-up truck, van, hv veh, init +C2898290|T037|AB|V80.41XD|ICD10CM|Animl-ridr inj pk-up truck, pick-up truck, van, hv veh, subs|Animl-ridr inj pk-up truck, pick-up truck, van, hv veh, subs +C2898291|T037|AB|V80.41XS|ICD10CM|Animl-ridr inj pk-up truck, pk-up truck, van, hv veh, sqla|Animl-ridr inj pk-up truck, pk-up truck, van, hv veh, sqla +C2898292|T037|AB|V80.42|ICD10CM|Occ animal-drwn veh injured collision hvy veh|Occ animal-drwn veh injured collision hvy veh +C2898293|T037|AB|V80.42XA|ICD10CM|Occ animal-drwn veh injured collision hvy veh, init encntr|Occ animal-drwn veh injured collision hvy veh, init encntr +C2898294|T037|AB|V80.42XD|ICD10CM|Occ animal-drwn veh injured collision hvy veh, subs encntr|Occ animal-drwn veh injured collision hvy veh, subs encntr +C2898295|T037|AB|V80.42XS|ICD10CM|Occ animal-drwn veh injured collision hvy veh, sequela|Occ animal-drwn veh injured collision hvy veh, sequela +C2898296|T037|AB|V80.5|ICD10CM|Animl-ridr or occ of anml-drn vehicle inj in clsn w mtr veh|Animl-ridr or occ of anml-drn vehicle inj in clsn w mtr veh +C0477149|T037|PT|V80.5|ICD10|Rider or occupant injured in collision with other specified motor vehicle|Rider or occupant injured in collision with other specified motor vehicle +C2898297|T037|AB|V80.51|ICD10CM|Animal-rider injured in collision with oth motor vehicle|Animal-rider injured in collision with oth motor vehicle +C2898297|T037|HT|V80.51|ICD10CM|Animal-rider injured in collision with other specified motor vehicle|Animal-rider injured in collision with other specified motor vehicle +C2898298|T037|AB|V80.51XA|ICD10CM|Animal-rider injured in collision w mtr veh, init encntr|Animal-rider injured in collision w mtr veh, init encntr +C2898298|T037|PT|V80.51XA|ICD10CM|Animal-rider injured in collision with other specified motor vehicle, initial encounter|Animal-rider injured in collision with other specified motor vehicle, initial encounter +C2898299|T037|AB|V80.51XD|ICD10CM|Animal-rider injured in collision w mtr veh, subs encntr|Animal-rider injured in collision w mtr veh, subs encntr +C2898299|T037|PT|V80.51XD|ICD10CM|Animal-rider injured in collision with other specified motor vehicle, subsequent encounter|Animal-rider injured in collision with other specified motor vehicle, subsequent encounter +C2898300|T037|AB|V80.51XS|ICD10CM|Animal-rider injured in collision w mtr veh, sequela|Animal-rider injured in collision w mtr veh, sequela +C2898300|T037|PT|V80.51XS|ICD10CM|Animal-rider injured in collision with other specified motor vehicle, sequela|Animal-rider injured in collision with other specified motor vehicle, sequela +C2898301|T037|HT|V80.52|ICD10CM|Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle|Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle +C2898301|T037|AB|V80.52|ICD10CM|Occupant of anml-drn vehicle injured in collision w mtr veh|Occupant of anml-drn vehicle injured in collision w mtr veh +C2898302|T037|AB|V80.52XA|ICD10CM|Occupant of anml-drn vehicle injured in clsn w mtr veh, init|Occupant of anml-drn vehicle injured in clsn w mtr veh, init +C2898303|T037|AB|V80.52XD|ICD10CM|Occupant of anml-drn vehicle injured in clsn w mtr veh, subs|Occupant of anml-drn vehicle injured in clsn w mtr veh, subs +C2898304|T037|AB|V80.52XS|ICD10CM|Occ of anml-drn vehicle injured in clsn w mtr veh, sequela|Occ of anml-drn vehicle injured in clsn w mtr veh, sequela +C2898304|T037|PT|V80.52XS|ICD10CM|Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle, sequela|Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle, sequela +C2898305|T037|AB|V80.6|ICD10CM|Animl-ridr or occ of anml-drn veh inj in clsn w rail trn/veh|Animl-ridr or occ of anml-drn veh inj in clsn w rail trn/veh +C0477150|T037|PT|V80.6|ICD10|Rider or occupant injured in collision with railway train or railway vehicle|Rider or occupant injured in collision with railway train or railway vehicle +C2898306|T037|AB|V80.61|ICD10CM|Animal-rider injured in collision w rail trn/veh|Animal-rider injured in collision w rail trn/veh +C2898306|T037|HT|V80.61|ICD10CM|Animal-rider injured in collision with railway train or railway vehicle|Animal-rider injured in collision with railway train or railway vehicle +C2898307|T037|AB|V80.61XA|ICD10CM|Animal-rider injured in collision w rail trn/veh, init|Animal-rider injured in collision w rail trn/veh, init +C2898307|T037|PT|V80.61XA|ICD10CM|Animal-rider injured in collision with railway train or railway vehicle, initial encounter|Animal-rider injured in collision with railway train or railway vehicle, initial encounter +C2898308|T037|AB|V80.61XD|ICD10CM|Animal-rider injured in collision w rail trn/veh, subs|Animal-rider injured in collision w rail trn/veh, subs +C2898308|T037|PT|V80.61XD|ICD10CM|Animal-rider injured in collision with railway train or railway vehicle, subsequent encounter|Animal-rider injured in collision with railway train or railway vehicle, subsequent encounter +C2898309|T037|AB|V80.61XS|ICD10CM|Animal-rider injured in collision w rail trn/veh, sequela|Animal-rider injured in collision w rail trn/veh, sequela +C2898309|T037|PT|V80.61XS|ICD10CM|Animal-rider injured in collision with railway train or railway vehicle, sequela|Animal-rider injured in collision with railway train or railway vehicle, sequela +C2898310|T037|HT|V80.62|ICD10CM|Occupant of animal-drawn vehicle injured in collision with railway train or railway vehicle|Occupant of animal-drawn vehicle injured in collision with railway train or railway vehicle +C2898310|T037|AB|V80.62|ICD10CM|Occupant of anml-drn vehicle injured in clsn w rail trn/veh|Occupant of anml-drn vehicle injured in clsn w rail trn/veh +C2898311|T037|AB|V80.62XA|ICD10CM|Occ of anml-drn vehicle injured in clsn w rail trn/veh, init|Occ of anml-drn vehicle injured in clsn w rail trn/veh, init +C2898312|T037|AB|V80.62XD|ICD10CM|Occ of anml-drn vehicle injured in clsn w rail trn/veh, subs|Occ of anml-drn vehicle injured in clsn w rail trn/veh, subs +C2898313|T037|AB|V80.62XS|ICD10CM|Occ of anml-drn vehicle inj in clsn w rail trn/veh, sequela|Occ of anml-drn vehicle inj in clsn w rail trn/veh, sequela +C2898313|T037|PT|V80.62XS|ICD10CM|Occupant of animal-drawn vehicle injured in collision with railway train or railway vehicle, sequela|Occupant of animal-drawn vehicle injured in collision with railway train or railway vehicle, sequela +C2898314|T037|HT|V80.7|ICD10CM|Animal-rider or occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles|Animal-rider or occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles +C2898314|T037|AB|V80.7|ICD10CM|Animl-ridr or occ of anml-drn veh inj in clsn w nonmtr veh|Animl-ridr or occ of anml-drn veh inj in clsn w nonmtr veh +C0477151|T037|PT|V80.7|ICD10|Rider or occupant injured in collision with other nonmotor vehicle|Rider or occupant injured in collision with other nonmotor vehicle +C2898315|T037|HT|V80.71|ICD10CM|Animal-rider or occupant of animal-drawn vehicle injured in collision with animal being ridden|Animal-rider or occupant of animal-drawn vehicle injured in collision with animal being ridden +C2898315|T037|AB|V80.71|ICD10CM|Animl-ridr or occ of anml-drn veh inj in clsn w animl riddn|Animl-ridr or occ of anml-drn veh inj in clsn w animl riddn +C2898316|T037|AB|V80.710|ICD10CM|Animal-rider injured in collision w oth animal being ridden|Animal-rider injured in collision w oth animal being ridden +C2898316|T037|HT|V80.710|ICD10CM|Animal-rider injured in collision with other animal being ridden|Animal-rider injured in collision with other animal being ridden +C2898317|T037|AB|V80.710A|ICD10CM|Animal-rider injured in collision w animl being ridden, init|Animal-rider injured in collision w animl being ridden, init +C2898317|T037|PT|V80.710A|ICD10CM|Animal-rider injured in collision with other animal being ridden, initial encounter|Animal-rider injured in collision with other animal being ridden, initial encounter +C2898318|T037|AB|V80.710D|ICD10CM|Animal-rider injured in collision w animl being ridden, subs|Animal-rider injured in collision w animl being ridden, subs +C2898318|T037|PT|V80.710D|ICD10CM|Animal-rider injured in collision with other animal being ridden, subsequent encounter|Animal-rider injured in collision with other animal being ridden, subsequent encounter +C2898319|T037|PT|V80.710S|ICD10CM|Animal-rider injured in collision with other animal being ridden, sequela|Animal-rider injured in collision with other animal being ridden, sequela +C2898319|T037|AB|V80.710S|ICD10CM|Animl-ridr injured in clsn w animl being ridden, sequela|Animl-ridr injured in clsn w animl being ridden, sequela +C2898320|T037|AB|V80.711|ICD10CM|Occ of anml-drn vehicle inj in clsn w animal being ridden|Occ of anml-drn vehicle inj in clsn w animal being ridden +C2898320|T037|HT|V80.711|ICD10CM|Occupant of animal-drawn vehicle injured in collision with animal being ridden|Occupant of animal-drawn vehicle injured in collision with animal being ridden +C2898321|T037|AB|V80.711A|ICD10CM|Occ of anml-drn veh inj in clsn w animal being ridden, init|Occ of anml-drn veh inj in clsn w animal being ridden, init +C2898321|T037|PT|V80.711A|ICD10CM|Occupant of animal-drawn vehicle injured in collision with animal being ridden, initial encounter|Occupant of animal-drawn vehicle injured in collision with animal being ridden, initial encounter +C2898322|T037|AB|V80.711D|ICD10CM|Occ of anml-drn veh inj in clsn w animal being ridden, subs|Occ of anml-drn veh inj in clsn w animal being ridden, subs +C2898322|T037|PT|V80.711D|ICD10CM|Occupant of animal-drawn vehicle injured in collision with animal being ridden, subsequent encounter|Occupant of animal-drawn vehicle injured in collision with animal being ridden, subsequent encounter +C2898323|T037|AB|V80.711S|ICD10CM|Occ of anml-drn veh inj in clsn w animal being ridden, sqla|Occ of anml-drn veh inj in clsn w animal being ridden, sqla +C2898323|T037|PT|V80.711S|ICD10CM|Occupant of animal-drawn vehicle injured in collision with animal being ridden, sequela|Occupant of animal-drawn vehicle injured in collision with animal being ridden, sequela +C2898324|T037|AB|V80.72|ICD10CM|Animl-ridr or occ of anml-drn veh inj in collisn with same|Animl-ridr or occ of anml-drn veh inj in collisn with same +C2898325|T037|AB|V80.720|ICD10CM|Animal-rider injured in collision with animal-drawn vehicle|Animal-rider injured in collision with animal-drawn vehicle +C2898325|T037|HT|V80.720|ICD10CM|Animal-rider injured in collision with animal-drawn vehicle|Animal-rider injured in collision with animal-drawn vehicle +C2898326|T037|AB|V80.720A|ICD10CM|Animal-rider injured in collision w anml-drn vehicle, init|Animal-rider injured in collision w anml-drn vehicle, init +C2898326|T037|PT|V80.720A|ICD10CM|Animal-rider injured in collision with animal-drawn vehicle, initial encounter|Animal-rider injured in collision with animal-drawn vehicle, initial encounter +C2898327|T037|AB|V80.720D|ICD10CM|Animal-rider injured in collision w anml-drn vehicle, subs|Animal-rider injured in collision w anml-drn vehicle, subs +C2898327|T037|PT|V80.720D|ICD10CM|Animal-rider injured in collision with animal-drawn vehicle, subsequent encounter|Animal-rider injured in collision with animal-drawn vehicle, subsequent encounter +C2898328|T037|PT|V80.720S|ICD10CM|Animal-rider injured in collision with animal-drawn vehicle, sequela|Animal-rider injured in collision with animal-drawn vehicle, sequela +C2898328|T037|AB|V80.720S|ICD10CM|Animl-ridr injured in collision w anml-drn vehicle, sequela|Animl-ridr injured in collision w anml-drn vehicle, sequela +C2898329|T037|HT|V80.721|ICD10CM|Occupant of animal-drawn vehicle injured in collision with other animal-drawn vehicle|Occupant of animal-drawn vehicle injured in collision with other animal-drawn vehicle +C2898329|T037|AB|V80.721|ICD10CM|Occupant of anml-drn vehicle injured in collisn with same|Occupant of anml-drn vehicle injured in collisn with same +C2898330|T037|AB|V80.721A|ICD10CM|Occ of anml-drn vehicle injured in collisn with same, init|Occ of anml-drn vehicle injured in collisn with same, init +C2898331|T037|AB|V80.721D|ICD10CM|Occ of anml-drn vehicle injured in collisn with same, subs|Occ of anml-drn vehicle injured in collisn with same, subs +C2898332|T037|AB|V80.721S|ICD10CM|Occ of anml-drn vehicle inj in collisn with same, sequela|Occ of anml-drn vehicle inj in collisn with same, sequela +C2898332|T037|PT|V80.721S|ICD10CM|Occupant of animal-drawn vehicle injured in collision with other animal-drawn vehicle, sequela|Occupant of animal-drawn vehicle injured in collision with other animal-drawn vehicle, sequela +C2898333|T037|HT|V80.73|ICD10CM|Animal-rider or occupant of animal-drawn vehicle injured in collision with streetcar|Animal-rider or occupant of animal-drawn vehicle injured in collision with streetcar +C2898333|T037|AB|V80.73|ICD10CM|Animl-ridr or occ of anml-drn vehicle inj in clsn w stcar|Animl-ridr or occ of anml-drn vehicle inj in clsn w stcar +C2898334|T037|AB|V80.730|ICD10CM|Animal-rider injured in collision with streetcar|Animal-rider injured in collision with streetcar +C2898334|T037|HT|V80.730|ICD10CM|Animal-rider injured in collision with streetcar|Animal-rider injured in collision with streetcar +C2898335|T037|AB|V80.730A|ICD10CM|Animal-rider injured in collision w streetcar, init encntr|Animal-rider injured in collision w streetcar, init encntr +C2898335|T037|PT|V80.730A|ICD10CM|Animal-rider injured in collision with streetcar, initial encounter|Animal-rider injured in collision with streetcar, initial encounter +C2898336|T037|AB|V80.730D|ICD10CM|Animal-rider injured in collision w streetcar, subs encntr|Animal-rider injured in collision w streetcar, subs encntr +C2898336|T037|PT|V80.730D|ICD10CM|Animal-rider injured in collision with streetcar, subsequent encounter|Animal-rider injured in collision with streetcar, subsequent encounter +C2898337|T037|AB|V80.730S|ICD10CM|Animal-rider injured in collision with streetcar, sequela|Animal-rider injured in collision with streetcar, sequela +C2898337|T037|PT|V80.730S|ICD10CM|Animal-rider injured in collision with streetcar, sequela|Animal-rider injured in collision with streetcar, sequela +C2898338|T037|HT|V80.731|ICD10CM|Occupant of animal-drawn vehicle injured in collision with streetcar|Occupant of animal-drawn vehicle injured in collision with streetcar +C2898338|T037|AB|V80.731|ICD10CM|Occupant of anml-drn vehicle injured in clsn w streetcar|Occupant of anml-drn vehicle injured in clsn w streetcar +C2898339|T037|PT|V80.731A|ICD10CM|Occupant of animal-drawn vehicle injured in collision with streetcar, initial encounter|Occupant of animal-drawn vehicle injured in collision with streetcar, initial encounter +C2898339|T037|AB|V80.731A|ICD10CM|Occupant of anml-drn vehicle injured in clsn w stcar, init|Occupant of anml-drn vehicle injured in clsn w stcar, init +C2898340|T037|PT|V80.731D|ICD10CM|Occupant of animal-drawn vehicle injured in collision with streetcar, subsequent encounter|Occupant of animal-drawn vehicle injured in collision with streetcar, subsequent encounter +C2898340|T037|AB|V80.731D|ICD10CM|Occupant of anml-drn vehicle injured in clsn w stcar, subs|Occupant of anml-drn vehicle injured in clsn w stcar, subs +C2898341|T037|AB|V80.731S|ICD10CM|Occ of anml-drn vehicle injured in clsn w stcar, sequela|Occ of anml-drn vehicle injured in clsn w stcar, sequela +C2898341|T037|PT|V80.731S|ICD10CM|Occupant of animal-drawn vehicle injured in collision with streetcar, sequela|Occupant of animal-drawn vehicle injured in collision with streetcar, sequela +C2898314|T037|HT|V80.79|ICD10CM|Animal-rider or occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles|Animal-rider or occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles +C2898314|T037|AB|V80.79|ICD10CM|Animl-ridr or occ of anml-drn veh inj in clsn w nonmtr veh|Animl-ridr or occ of anml-drn veh inj in clsn w nonmtr veh +C2898342|T037|AB|V80.790|ICD10CM|Animal-rider injured in collision with oth nonmotor vehicles|Animal-rider injured in collision with oth nonmotor vehicles +C2898342|T037|HT|V80.790|ICD10CM|Animal-rider injured in collision with other nonmotor vehicles|Animal-rider injured in collision with other nonmotor vehicles +C2898343|T037|AB|V80.790A|ICD10CM|Animal-rider injured in collision w nonmtr vehicles, init|Animal-rider injured in collision w nonmtr vehicles, init +C2898343|T037|PT|V80.790A|ICD10CM|Animal-rider injured in collision with other nonmotor vehicles, initial encounter|Animal-rider injured in collision with other nonmotor vehicles, initial encounter +C2898344|T037|AB|V80.790D|ICD10CM|Animal-rider injured in collision w nonmtr vehicles, subs|Animal-rider injured in collision w nonmtr vehicles, subs +C2898344|T037|PT|V80.790D|ICD10CM|Animal-rider injured in collision with other nonmotor vehicles, subsequent encounter|Animal-rider injured in collision with other nonmotor vehicles, subsequent encounter +C2898345|T037|AB|V80.790S|ICD10CM|Animal-rider injured in collision w nonmtr vehicles, sequela|Animal-rider injured in collision w nonmtr vehicles, sequela +C2898345|T037|PT|V80.790S|ICD10CM|Animal-rider injured in collision with other nonmotor vehicles, sequela|Animal-rider injured in collision with other nonmotor vehicles, sequela +C2898346|T037|AB|V80.791|ICD10CM|Occ of anml-drn vehicle injured in clsn w nonmtr vehicles|Occ of anml-drn vehicle injured in clsn w nonmtr vehicles +C2898346|T037|HT|V80.791|ICD10CM|Occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles|Occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles +C2898347|T037|AB|V80.791A|ICD10CM|Occ of anml-drn vehicle injured in clsn w nonmtr veh, init|Occ of anml-drn vehicle injured in clsn w nonmtr veh, init +C2898348|T037|AB|V80.791D|ICD10CM|Occ of anml-drn vehicle injured in clsn w nonmtr veh, subs|Occ of anml-drn vehicle injured in clsn w nonmtr veh, subs +C2898349|T037|AB|V80.791S|ICD10CM|Occ of anml-drn vehicle inj in clsn w nonmtr veh, sequela|Occ of anml-drn vehicle inj in clsn w nonmtr veh, sequela +C2898349|T037|PT|V80.791S|ICD10CM|Occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles, sequela|Occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles, sequela +C2898350|T037|AB|V80.8|ICD10CM|Animl-ridr or occ of anml-drn veh inj in clsn w statnry obj|Animl-ridr or occ of anml-drn veh inj in clsn w statnry obj +C0477152|T037|PT|V80.8|ICD10|Rider or occupant injured in collision with fixed or stationary object|Rider or occupant injured in collision with fixed or stationary object +C2898351|T037|AB|V80.81|ICD10CM|Animal-rider injured in collision w statnry object|Animal-rider injured in collision w statnry object +C2898351|T037|HT|V80.81|ICD10CM|Animal-rider injured in collision with fixed or stationary object|Animal-rider injured in collision with fixed or stationary object +C2898352|T037|AB|V80.81XA|ICD10CM|Animal-rider injured in collision w statnry object, init|Animal-rider injured in collision w statnry object, init +C2898352|T037|PT|V80.81XA|ICD10CM|Animal-rider injured in collision with fixed or stationary object, initial encounter|Animal-rider injured in collision with fixed or stationary object, initial encounter +C2898353|T037|AB|V80.81XD|ICD10CM|Animal-rider injured in collision w statnry object, subs|Animal-rider injured in collision w statnry object, subs +C2898353|T037|PT|V80.81XD|ICD10CM|Animal-rider injured in collision with fixed or stationary object, subsequent encounter|Animal-rider injured in collision with fixed or stationary object, subsequent encounter +C2898354|T037|AB|V80.81XS|ICD10CM|Animal-rider injured in collision w statnry object, sequela|Animal-rider injured in collision w statnry object, sequela +C2898354|T037|PT|V80.81XS|ICD10CM|Animal-rider injured in collision with fixed or stationary object, sequela|Animal-rider injured in collision with fixed or stationary object, sequela +C2898355|T037|AB|V80.82|ICD10CM|Occ of anml-drn vehicle injured in clsn w statnry object|Occ of anml-drn vehicle injured in clsn w statnry object +C2898355|T037|HT|V80.82|ICD10CM|Occupant of animal-drawn vehicle injured in collision with fixed or stationary object|Occupant of animal-drawn vehicle injured in collision with fixed or stationary object +C2898356|T037|AB|V80.82XA|ICD10CM|Occ of anml-drn vehicle inj in clsn w statnry object, init|Occ of anml-drn vehicle inj in clsn w statnry object, init +C2898357|T037|AB|V80.82XD|ICD10CM|Occ of anml-drn vehicle inj in clsn w statnry object, subs|Occ of anml-drn vehicle inj in clsn w statnry object, subs +C2898358|T037|AB|V80.82XS|ICD10CM|Occ of anml-drn vehicle inj in clsn w statnry object, sqla|Occ of anml-drn vehicle inj in clsn w statnry object, sqla +C2898358|T037|PT|V80.82XS|ICD10CM|Occupant of animal-drawn vehicle injured in collision with fixed or stationary object, sequela|Occupant of animal-drawn vehicle injured in collision with fixed or stationary object, sequela +C2898359|T037|AB|V80.9|ICD10CM|Animl rider/occ injured oth transp acc|Animl rider/occ injured oth transp acc +C0477153|T037|PT|V80.9|ICD10|Rider or occupant injured in other and unspecified transport accidents|Rider or occupant injured in other and unspecified transport accidents +C2898360|T037|AB|V80.91|ICD10CM|Animal-rider injured in other and unsp transport accidents|Animal-rider injured in other and unsp transport accidents +C2898360|T037|HT|V80.91|ICD10CM|Animal-rider injured in other and unspecified transport accidents|Animal-rider injured in other and unspecified transport accidents +C2898361|T037|HT|V80.910|ICD10CM|Animal-rider injured in transport accident with military vehicle|Animal-rider injured in transport accident with military vehicle +C2898361|T037|AB|V80.910|ICD10CM|Animl-ridr injured in transport accident w military vehicle|Animl-ridr injured in transport accident w military vehicle +C2898362|T037|PT|V80.910A|ICD10CM|Animal-rider injured in transport accident with military vehicle, initial encounter|Animal-rider injured in transport accident with military vehicle, initial encounter +C2898362|T037|AB|V80.910A|ICD10CM|Animl-ridr injured in trnsp acc w military vehicle, init|Animl-ridr injured in trnsp acc w military vehicle, init +C2898363|T037|PT|V80.910D|ICD10CM|Animal-rider injured in transport accident with military vehicle, subsequent encounter|Animal-rider injured in transport accident with military vehicle, subsequent encounter +C2898363|T037|AB|V80.910D|ICD10CM|Animl-ridr injured in trnsp acc w military vehicle, subs|Animl-ridr injured in trnsp acc w military vehicle, subs +C2898364|T037|PT|V80.910S|ICD10CM|Animal-rider injured in transport accident with military vehicle, sequela|Animal-rider injured in transport accident with military vehicle, sequela +C2898364|T037|AB|V80.910S|ICD10CM|Animl-ridr injured in trnsp acc w military vehicle, sequela|Animl-ridr injured in trnsp acc w military vehicle, sequela +C2898365|T037|AB|V80.918|ICD10CM|Animal-rider injured in other transport accident|Animal-rider injured in other transport accident +C2898365|T037|HT|V80.918|ICD10CM|Animal-rider injured in other transport accident|Animal-rider injured in other transport accident +C2898366|T037|AB|V80.918A|ICD10CM|Animal-rider injured in oth transport accident, init encntr|Animal-rider injured in oth transport accident, init encntr +C2898366|T037|PT|V80.918A|ICD10CM|Animal-rider injured in other transport accident, initial encounter|Animal-rider injured in other transport accident, initial encounter +C2898367|T037|AB|V80.918D|ICD10CM|Animal-rider injured in oth transport accident, subs encntr|Animal-rider injured in oth transport accident, subs encntr +C2898367|T037|PT|V80.918D|ICD10CM|Animal-rider injured in other transport accident, subsequent encounter|Animal-rider injured in other transport accident, subsequent encounter +C2898368|T037|AB|V80.918S|ICD10CM|Animal-rider injured in other transport accident, sequela|Animal-rider injured in other transport accident, sequela +C2898368|T037|PT|V80.918S|ICD10CM|Animal-rider injured in other transport accident, sequela|Animal-rider injured in other transport accident, sequela +C2898369|T037|ET|V80.919|ICD10CM|Animal rider accident NOS|Animal rider accident NOS +C2898370|T037|AB|V80.919|ICD10CM|Animal-rider injured in unspecified transport accident|Animal-rider injured in unspecified transport accident +C2898370|T037|HT|V80.919|ICD10CM|Animal-rider injured in unspecified transport accident|Animal-rider injured in unspecified transport accident +C2898371|T037|AB|V80.919A|ICD10CM|Animal-rider injured in unsp transport accident, init encntr|Animal-rider injured in unsp transport accident, init encntr +C2898371|T037|PT|V80.919A|ICD10CM|Animal-rider injured in unspecified transport accident, initial encounter|Animal-rider injured in unspecified transport accident, initial encounter +C2898372|T037|AB|V80.919D|ICD10CM|Animal-rider injured in unsp transport accident, subs encntr|Animal-rider injured in unsp transport accident, subs encntr +C2898372|T037|PT|V80.919D|ICD10CM|Animal-rider injured in unspecified transport accident, subsequent encounter|Animal-rider injured in unspecified transport accident, subsequent encounter +C2898373|T037|AB|V80.919S|ICD10CM|Animal-rider injured in unsp transport accident, sequela|Animal-rider injured in unsp transport accident, sequela +C2898373|T037|PT|V80.919S|ICD10CM|Animal-rider injured in unspecified transport accident, sequela|Animal-rider injured in unspecified transport accident, sequela +C2898374|T037|AB|V80.92|ICD10CM|Occ of anml-drn vehicle injured in oth and unsp trnsp acc|Occ of anml-drn vehicle injured in oth and unsp trnsp acc +C2898374|T037|HT|V80.92|ICD10CM|Occupant of animal-drawn vehicle injured in other and unspecified transport accidents|Occupant of animal-drawn vehicle injured in other and unspecified transport accidents +C2898375|T037|AB|V80.920|ICD10CM|Occ of anml-drn vehicle inj in trnsp acc w miltry vehicle|Occ of anml-drn vehicle inj in trnsp acc w miltry vehicle +C2898375|T037|HT|V80.920|ICD10CM|Occupant of animal-drawn vehicle injured in transport accident with military vehicle|Occupant of animal-drawn vehicle injured in transport accident with military vehicle +C2898376|T037|AB|V80.920A|ICD10CM|Occ of anml-drn veh inj in trnsp acc w miltry vehicle, init|Occ of anml-drn veh inj in trnsp acc w miltry vehicle, init +C2898377|T037|AB|V80.920D|ICD10CM|Occ of anml-drn veh inj in trnsp acc w miltry vehicle, subs|Occ of anml-drn veh inj in trnsp acc w miltry vehicle, subs +C2898378|T037|AB|V80.920S|ICD10CM|Occ of anml-drn veh inj in trnsp acc w miltry vehicle, sqla|Occ of anml-drn veh inj in trnsp acc w miltry vehicle, sqla +C2898378|T037|PT|V80.920S|ICD10CM|Occupant of animal-drawn vehicle injured in transport accident with military vehicle, sequela|Occupant of animal-drawn vehicle injured in transport accident with military vehicle, sequela +C2898379|T037|HT|V80.928|ICD10CM|Occupant of animal-drawn vehicle injured in other transport accident|Occupant of animal-drawn vehicle injured in other transport accident +C2898379|T037|AB|V80.928|ICD10CM|Occupant of anml-drn vehicle injured in oth trnsp accident|Occupant of anml-drn vehicle injured in oth trnsp accident +C2898380|T037|PT|V80.928A|ICD10CM|Occupant of animal-drawn vehicle injured in other transport accident, initial encounter|Occupant of animal-drawn vehicle injured in other transport accident, initial encounter +C2898380|T037|AB|V80.928A|ICD10CM|Occupant of anml-drn vehicle injured in oth trnsp acc, init|Occupant of anml-drn vehicle injured in oth trnsp acc, init +C2898381|T037|PT|V80.928D|ICD10CM|Occupant of animal-drawn vehicle injured in other transport accident, subsequent encounter|Occupant of animal-drawn vehicle injured in other transport accident, subsequent encounter +C2898381|T037|AB|V80.928D|ICD10CM|Occupant of anml-drn vehicle injured in oth trnsp acc, subs|Occupant of anml-drn vehicle injured in oth trnsp acc, subs +C2898382|T037|AB|V80.928S|ICD10CM|Occ of anml-drn vehicle injured in oth trnsp acc, sequela|Occ of anml-drn vehicle injured in oth trnsp acc, sequela +C2898382|T037|PT|V80.928S|ICD10CM|Occupant of animal-drawn vehicle injured in other transport accident, sequela|Occupant of animal-drawn vehicle injured in other transport accident, sequela +C0261208|T037|ET|V80.929|ICD10CM|Animal-drawn vehicle accident NOS|Animal-drawn vehicle accident NOS +C2898383|T037|HT|V80.929|ICD10CM|Occupant of animal-drawn vehicle injured in unspecified transport accident|Occupant of animal-drawn vehicle injured in unspecified transport accident +C2898383|T037|AB|V80.929|ICD10CM|Occupant of anml-drn vehicle injured in unsp trnsp accident|Occupant of anml-drn vehicle injured in unsp trnsp accident +C2898384|T037|PT|V80.929A|ICD10CM|Occupant of animal-drawn vehicle injured in unspecified transport accident, initial encounter|Occupant of animal-drawn vehicle injured in unspecified transport accident, initial encounter +C2898384|T037|AB|V80.929A|ICD10CM|Occupant of anml-drn vehicle injured in unsp trnsp acc, init|Occupant of anml-drn vehicle injured in unsp trnsp acc, init +C2898385|T037|PT|V80.929D|ICD10CM|Occupant of animal-drawn vehicle injured in unspecified transport accident, subsequent encounter|Occupant of animal-drawn vehicle injured in unspecified transport accident, subsequent encounter +C2898385|T037|AB|V80.929D|ICD10CM|Occupant of anml-drn vehicle injured in unsp trnsp acc, subs|Occupant of anml-drn vehicle injured in unsp trnsp acc, subs +C2898386|T037|AB|V80.929S|ICD10CM|Occ of anml-drn vehicle injured in unsp trnsp acc, sequela|Occ of anml-drn vehicle injured in unsp trnsp acc, sequela +C2898386|T037|PT|V80.929S|ICD10CM|Occupant of animal-drawn vehicle injured in unspecified transport accident, sequela|Occupant of animal-drawn vehicle injured in unspecified transport accident, sequela +C4290447|T037|ET|V81|ICD10CM|derailment of railway train or railway vehicle|derailment of railway train or railway vehicle +C0477154|T037|AB|V81|ICD10CM|Occupant of rail trn/veh injured in transport accident|Occupant of rail trn/veh injured in transport accident +C0477154|T037|HT|V81|ICD10CM|Occupant of railway train or railway vehicle injured in transport accident|Occupant of railway train or railway vehicle injured in transport accident +C0477154|T037|HT|V81|ICD10|Occupant of railway train or railway vehicle injured in transport accident|Occupant of railway train or railway vehicle injured in transport accident +C4290448|T037|ET|V81|ICD10CM|person on outside of train|person on outside of train +C0477155|T037|AB|V81.0|ICD10CM|Occupant of rail trn/veh injured in clsn w mtr veh nontraf|Occupant of rail trn/veh injured in clsn w mtr veh nontraf +C2898389|T037|AB|V81.0XXA|ICD10CM|Occ of rail trn/veh injured in clsn w mtr veh nontraf, init|Occ of rail trn/veh injured in clsn w mtr veh nontraf, init +C2898390|T037|AB|V81.0XXD|ICD10CM|Occ of rail trn/veh injured in clsn w mtr veh nontraf, subs|Occ of rail trn/veh injured in clsn w mtr veh nontraf, subs +C2898391|T037|AB|V81.0XXS|ICD10CM|Occ of rail trn/veh inj in clsn w mtr veh nontraf, sequela|Occ of rail trn/veh inj in clsn w mtr veh nontraf, sequela +C0477156|T037|AB|V81.1|ICD10CM|Occupant of rail trn/veh injured in clsn w mtr veh in traf|Occupant of rail trn/veh injured in clsn w mtr veh in traf +C2898392|T037|AB|V81.1XXA|ICD10CM|Occ of rail trn/veh injured in clsn w mtr veh in traf, init|Occ of rail trn/veh injured in clsn w mtr veh in traf, init +C2898393|T037|AB|V81.1XXD|ICD10CM|Occ of rail trn/veh injured in clsn w mtr veh in traf, subs|Occ of rail trn/veh injured in clsn w mtr veh in traf, subs +C2898394|T037|AB|V81.1XXS|ICD10CM|Occ of rail trn/veh inj in clsn w mtr veh in traf, sequela|Occ of rail trn/veh inj in clsn w mtr veh in traf, sequela +C0477157|T037|AB|V81.2|ICD10CM|Occupant of rail trn/veh injured in collisn/hit by roll stok|Occupant of rail trn/veh injured in collisn/hit by roll stok +C0477157|T037|HT|V81.2|ICD10CM|Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock|Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock +C0477157|T037|PT|V81.2|ICD10|Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock|Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock +C2898395|T037|AB|V81.2XXA|ICD10CM|Occ of rail trn/veh inj in collisn/hit by roll stok, init|Occ of rail trn/veh inj in collisn/hit by roll stok, init +C2898396|T037|AB|V81.2XXD|ICD10CM|Occ of rail trn/veh inj in collisn/hit by roll stok, subs|Occ of rail trn/veh inj in collisn/hit by roll stok, subs +C2898397|T037|AB|V81.2XXS|ICD10CM|Occ of rail trn/veh inj in collisn/hit by roll stok, sequela|Occ of rail trn/veh inj in collisn/hit by roll stok, sequela +C0477158|T037|AB|V81.3|ICD10CM|Occupant of rail trn/veh injured in collision w oth object|Occupant of rail trn/veh injured in collision w oth object +C0477158|T037|HT|V81.3|ICD10CM|Occupant of railway train or railway vehicle injured in collision with other object|Occupant of railway train or railway vehicle injured in collision with other object +C0477158|T037|PT|V81.3|ICD10|Occupant of railway train or railway vehicle injured in collision with other object|Occupant of railway train or railway vehicle injured in collision with other object +C2898398|T037|ET|V81.3|ICD10CM|Railway collision NOS|Railway collision NOS +C2898399|T037|AB|V81.3XXA|ICD10CM|Occupant of rail trn/veh injured in clsn w oth object, init|Occupant of rail trn/veh injured in clsn w oth object, init +C2898400|T037|AB|V81.3XXD|ICD10CM|Occupant of rail trn/veh injured in clsn w oth object, subs|Occupant of rail trn/veh injured in clsn w oth object, subs +C2898401|T037|AB|V81.3XXS|ICD10CM|Occ of rail trn/veh injured in clsn w oth object, sequela|Occ of rail trn/veh injured in clsn w oth object, sequela +C2898401|T037|PT|V81.3XXS|ICD10CM|Occupant of railway train or railway vehicle injured in collision with other object, sequela|Occupant of railway train or railway vehicle injured in collision with other object, sequela +C0477159|T037|AB|V81.4|ICD10CM|Person injured while boarding or alighting from rail trn/veh|Person injured while boarding or alighting from rail trn/veh +C0477159|T037|HT|V81.4|ICD10CM|Person injured while boarding or alighting from railway train or railway vehicle|Person injured while boarding or alighting from railway train or railway vehicle +C0477159|T037|PT|V81.4|ICD10|Person injured while boarding or alighting from railway train or railway vehicle|Person injured while boarding or alighting from railway train or railway vehicle +C2898402|T037|AB|V81.4XXA|ICD10CM|Person injured wh brd/alit from rail trn/veh, init|Person injured wh brd/alit from rail trn/veh, init +C2898402|T037|PT|V81.4XXA|ICD10CM|Person injured while boarding or alighting from railway train or railway vehicle, initial encounter|Person injured while boarding or alighting from railway train or railway vehicle, initial encounter +C2898403|T037|AB|V81.4XXD|ICD10CM|Person injured wh brd/alit from rail trn/veh, subs|Person injured wh brd/alit from rail trn/veh, subs +C2898404|T037|AB|V81.4XXS|ICD10CM|Person injured wh brd/alit from rail trn/veh, sequela|Person injured wh brd/alit from rail trn/veh, sequela +C2898404|T037|PT|V81.4XXS|ICD10CM|Person injured while boarding or alighting from railway train or railway vehicle, sequela|Person injured while boarding or alighting from railway train or railway vehicle, sequela +C0477160|T037|AB|V81.5|ICD10CM|Occupant of rail trn/veh injured by fall in rail trn/veh|Occupant of rail trn/veh injured by fall in rail trn/veh +C0477160|T037|HT|V81.5|ICD10CM|Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle|Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle +C0477160|T037|PT|V81.5|ICD10|Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle|Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle +C2898405|T037|AB|V81.5XXA|ICD10CM|Occ of rail trn/veh injured by fall in rail trn/veh, init|Occ of rail trn/veh injured by fall in rail trn/veh, init +C2898406|T037|AB|V81.5XXD|ICD10CM|Occ of rail trn/veh injured by fall in rail trn/veh, subs|Occ of rail trn/veh injured by fall in rail trn/veh, subs +C2898407|T037|AB|V81.5XXS|ICD10CM|Occ of rail trn/veh injured by fall in rail trn/veh, sequela|Occ of rail trn/veh injured by fall in rail trn/veh, sequela +C0477161|T037|AB|V81.6|ICD10CM|Occupant of rail trn/veh injured by fall from rail trn/veh|Occupant of rail trn/veh injured by fall from rail trn/veh +C0477161|T037|HT|V81.6|ICD10CM|Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle|Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle +C0477161|T037|PT|V81.6|ICD10|Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle|Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle +C2898408|T037|AB|V81.6XXA|ICD10CM|Occ of rail trn/veh injured by fall from rail trn/veh, init|Occ of rail trn/veh injured by fall from rail trn/veh, init +C2898409|T037|AB|V81.6XXD|ICD10CM|Occ of rail trn/veh injured by fall from rail trn/veh, subs|Occ of rail trn/veh injured by fall from rail trn/veh, subs +C2898410|T037|AB|V81.6XXS|ICD10CM|Occ of rail trn/veh inj by fall from rail trn/veh, sequela|Occ of rail trn/veh inj by fall from rail trn/veh, sequela +C0477162|T037|AB|V81.7|ICD10CM|Occ of rail trn/veh injured in derail w/o antecedent clsn|Occ of rail trn/veh injured in derail w/o antecedent clsn +C0477162|T037|HT|V81.7|ICD10CM|Occupant of railway train or railway vehicle injured in derailment without antecedent collision|Occupant of railway train or railway vehicle injured in derailment without antecedent collision +C0477162|T037|PT|V81.7|ICD10|Occupant of railway train or railway vehicle injured in derailment without antecedent collision|Occupant of railway train or railway vehicle injured in derailment without antecedent collision +C2898411|T037|AB|V81.7XXA|ICD10CM|Occ of rail trn/veh inj in derail w/o antecedent clsn, init|Occ of rail trn/veh inj in derail w/o antecedent clsn, init +C2898412|T037|AB|V81.7XXD|ICD10CM|Occ of rail trn/veh inj in derail w/o antecedent clsn, subs|Occ of rail trn/veh inj in derail w/o antecedent clsn, subs +C2898413|T037|AB|V81.7XXS|ICD10CM|Occ of rail trn/veh inj in derail w/o antecedent clsn, sqla|Occ of rail trn/veh inj in derail w/o antecedent clsn, sqla +C0477163|T037|AB|V81.8|ICD10CM|Occupant of rail trn/veh injured in oth railway accidents|Occupant of rail trn/veh injured in oth railway accidents +C0477163|T037|HT|V81.8|ICD10CM|Occupant of railway train or railway vehicle injured in other specified railway accidents|Occupant of railway train or railway vehicle injured in other specified railway accidents +C0477163|T037|PT|V81.8|ICD10|Occupant of railway train or railway vehicle injured in other specified railway accidents|Occupant of railway train or railway vehicle injured in other specified railway accidents +C2898414|T037|AB|V81.81|ICD10CM|Occ of rail trn/veh injured due to explosn or fire on train|Occ of rail trn/veh injured due to explosn or fire on train +C2898414|T037|HT|V81.81|ICD10CM|Occupant of railway train or railway vehicle injured due to explosion or fire on train|Occupant of railway train or railway vehicle injured due to explosion or fire on train +C2898415|T037|AB|V81.81XA|ICD10CM|Occ of rail trn/veh inj d/t explosn or fire on train, init|Occ of rail trn/veh inj d/t explosn or fire on train, init +C2898416|T037|AB|V81.81XD|ICD10CM|Occ of rail trn/veh inj d/t explosn or fire on train, subs|Occ of rail trn/veh inj d/t explosn or fire on train, subs +C2898417|T037|AB|V81.81XS|ICD10CM|Occ of rail trn/veh inj d/t explosn or fire on train, sqla|Occ of rail trn/veh inj d/t explosn or fire on train, sqla +C2898417|T037|PT|V81.81XS|ICD10CM|Occupant of railway train or railway vehicle injured due to explosion or fire on train, sequela|Occupant of railway train or railway vehicle injured due to explosion or fire on train, sequela +C2898422|T037|AB|V81.82|ICD10CM|Occ of rail trn/veh injured due to object falling onto train|Occ of rail trn/veh injured due to object falling onto train +C2898418|T037|ET|V81.82|ICD10CM|Occupant of railway train or railway vehicle injured due to falling earth onto train|Occupant of railway train or railway vehicle injured due to falling earth onto train +C2898419|T037|ET|V81.82|ICD10CM|Occupant of railway train or railway vehicle injured due to falling rocks onto train|Occupant of railway train or railway vehicle injured due to falling rocks onto train +C2898420|T037|ET|V81.82|ICD10CM|Occupant of railway train or railway vehicle injured due to falling snow onto train|Occupant of railway train or railway vehicle injured due to falling snow onto train +C2898421|T037|ET|V81.82|ICD10CM|Occupant of railway train or railway vehicle injured due to falling trees onto train|Occupant of railway train or railway vehicle injured due to falling trees onto train +C2898422|T037|HT|V81.82|ICD10CM|Occupant of railway train or railway vehicle injured due to object falling onto train|Occupant of railway train or railway vehicle injured due to object falling onto train +C2898423|T037|AB|V81.82XA|ICD10CM|Occ of rail trn/veh inj due to object fall onto train, init|Occ of rail trn/veh inj due to object fall onto train, init +C2898424|T037|AB|V81.82XD|ICD10CM|Occ of rail trn/veh inj due to object fall onto train, subs|Occ of rail trn/veh inj due to object fall onto train, subs +C2898425|T037|AB|V81.82XS|ICD10CM|Occ of rail trn/veh inj due to object fall onto train, sqla|Occ of rail trn/veh inj due to object fall onto train, sqla +C2898425|T037|PT|V81.82XS|ICD10CM|Occupant of railway train or railway vehicle injured due to object falling onto train, sequela|Occupant of railway train or railway vehicle injured due to object falling onto train, sequela +C2898426|T037|AB|V81.83|ICD10CM|Occ of rail trn/veh injured due to clsn w miltry vehicle|Occ of rail trn/veh injured due to clsn w miltry vehicle +C2898426|T037|HT|V81.83|ICD10CM|Occupant of railway train or railway vehicle injured due to collision with military vehicle|Occupant of railway train or railway vehicle injured due to collision with military vehicle +C2898427|T037|AB|V81.83XA|ICD10CM|Occ of rail trn/veh inj due to clsn w miltry vehicle, init|Occ of rail trn/veh inj due to clsn w miltry vehicle, init +C2898428|T037|AB|V81.83XD|ICD10CM|Occ of rail trn/veh inj due to clsn w miltry vehicle, subs|Occ of rail trn/veh inj due to clsn w miltry vehicle, subs +C2898429|T037|AB|V81.83XS|ICD10CM|Occ of rail trn/veh inj due to clsn w miltry vehicle, sqla|Occ of rail trn/veh inj due to clsn w miltry vehicle, sqla +C2898429|T037|PT|V81.83XS|ICD10CM|Occupant of railway train or railway vehicle injured due to collision with military vehicle, sequela|Occupant of railway train or railway vehicle injured due to collision with military vehicle, sequela +C2898430|T037|AB|V81.89|ICD10CM|Occupant of rail trn/veh injured due to oth railway accident|Occupant of rail trn/veh injured due to oth railway accident +C2898430|T037|HT|V81.89|ICD10CM|Occupant of railway train or railway vehicle injured due to other specified railway accident|Occupant of railway train or railway vehicle injured due to other specified railway accident +C2898431|T037|AB|V81.89XA|ICD10CM|Occ of rail trn/veh injured due to oth railway acc, init|Occ of rail trn/veh injured due to oth railway acc, init +C2898432|T037|AB|V81.89XD|ICD10CM|Occ of rail trn/veh injured due to oth railway acc, subs|Occ of rail trn/veh injured due to oth railway acc, subs +C2898433|T037|AB|V81.89XS|ICD10CM|Occ of rail trn/veh injured due to oth railway acc, sequela|Occ of rail trn/veh injured due to oth railway acc, sequela +C0477164|T037|AB|V81.9|ICD10CM|Occupant of rail trn/veh injured in unsp railway accident|Occupant of rail trn/veh injured in unsp railway accident +C0477164|T037|HT|V81.9|ICD10CM|Occupant of railway train or railway vehicle injured in unspecified railway accident|Occupant of railway train or railway vehicle injured in unspecified railway accident +C0477164|T037|PT|V81.9|ICD10|Occupant of railway train or railway vehicle injured in unspecified railway accident|Occupant of railway train or railway vehicle injured in unspecified railway accident +C0414085|T037|ET|V81.9|ICD10CM|Railway accident NOS|Railway accident NOS +C2898434|T037|AB|V81.9XXA|ICD10CM|Occupant of rail trn/veh injured in unsp railway acc, init|Occupant of rail trn/veh injured in unsp railway acc, init +C2898435|T037|AB|V81.9XXD|ICD10CM|Occupant of rail trn/veh injured in unsp railway acc, subs|Occupant of rail trn/veh injured in unsp railway acc, subs +C2898436|T037|AB|V81.9XXS|ICD10CM|Occ of rail trn/veh injured in unsp railway acc, sequela|Occ of rail trn/veh injured in unsp railway acc, sequela +C2898436|T037|PT|V81.9XXS|ICD10CM|Occupant of railway train or railway vehicle injured in unspecified railway accident, sequela|Occupant of railway train or railway vehicle injured in unspecified railway accident, sequela +C4290449|T037|ET|V82|ICD10CM|interurban electric car|interurban electric car +C2898441|T037|HT|V82|ICD10CM|Occupant of powered streetcar injured in transport accident|Occupant of powered streetcar injured in transport accident +C2898441|T037|AB|V82|ICD10CM|Occupant of powered streetcar injured in transport accident|Occupant of powered streetcar injured in transport accident +C0477165|T037|HT|V82|ICD10|Occupant of streetcar injured in transport accident|Occupant of streetcar injured in transport accident +C4290450|T037|ET|V82|ICD10CM|person on outside of streetcar|person on outside of streetcar +C4290451|T037|ET|V82|ICD10CM|tram (car)|tram (car) +C2898441|T037|ET|V82|ICD10CM|trolley (car)|trolley (car) +C0477166|T037|AB|V82.0|ICD10CM|Occupant of streetcar injured in collision w mtr veh nontraf|Occupant of streetcar injured in collision w mtr veh nontraf +C0477166|T037|HT|V82.0|ICD10CM|Occupant of streetcar injured in collision with motor vehicle in nontraffic accident|Occupant of streetcar injured in collision with motor vehicle in nontraffic accident +C0477166|T037|PT|V82.0|ICD10|Occupant of streetcar injured in collision with motor vehicle in nontraffic accident|Occupant of streetcar injured in collision with motor vehicle in nontraffic accident +C2898442|T037|AB|V82.0XXA|ICD10CM|Occupant of stcar injured in clsn w mtr veh nontraf, init|Occupant of stcar injured in clsn w mtr veh nontraf, init +C2898443|T037|AB|V82.0XXD|ICD10CM|Occupant of stcar injured in clsn w mtr veh nontraf, subs|Occupant of stcar injured in clsn w mtr veh nontraf, subs +C2898444|T037|AB|V82.0XXS|ICD10CM|Occupant of stcar injured in clsn w mtr veh nontraf, sequela|Occupant of stcar injured in clsn w mtr veh nontraf, sequela +C2898444|T037|PT|V82.0XXS|ICD10CM|Occupant of streetcar injured in collision with motor vehicle in nontraffic accident, sequela|Occupant of streetcar injured in collision with motor vehicle in nontraffic accident, sequela +C0477167|T037|AB|V82.1|ICD10CM|Occupant of streetcar injured in collision w mtr veh in traf|Occupant of streetcar injured in collision w mtr veh in traf +C0477167|T037|HT|V82.1|ICD10CM|Occupant of streetcar injured in collision with motor vehicle in traffic accident|Occupant of streetcar injured in collision with motor vehicle in traffic accident +C0477167|T037|PT|V82.1|ICD10|Occupant of streetcar injured in collision with motor vehicle in traffic accident|Occupant of streetcar injured in collision with motor vehicle in traffic accident +C2898445|T037|AB|V82.1XXA|ICD10CM|Occupant of stcar injured in clsn w mtr veh in traf, init|Occupant of stcar injured in clsn w mtr veh in traf, init +C2898445|T037|PT|V82.1XXA|ICD10CM|Occupant of streetcar injured in collision with motor vehicle in traffic accident, initial encounter|Occupant of streetcar injured in collision with motor vehicle in traffic accident, initial encounter +C2898446|T037|AB|V82.1XXD|ICD10CM|Occupant of stcar injured in clsn w mtr veh in traf, subs|Occupant of stcar injured in clsn w mtr veh in traf, subs +C2898447|T037|AB|V82.1XXS|ICD10CM|Occupant of stcar injured in clsn w mtr veh in traf, sequela|Occupant of stcar injured in clsn w mtr veh in traf, sequela +C2898447|T037|PT|V82.1XXS|ICD10CM|Occupant of streetcar injured in collision with motor vehicle in traffic accident, sequela|Occupant of streetcar injured in collision with motor vehicle in traffic accident, sequela +C0477168|T037|PT|V82.2|ICD10|Occupant of streetcar injured in collision with or hit by rolling stock|Occupant of streetcar injured in collision with or hit by rolling stock +C0477168|T037|HT|V82.2|ICD10CM|Occupant of streetcar injured in collision with or hit by rolling stock|Occupant of streetcar injured in collision with or hit by rolling stock +C0477168|T037|AB|V82.2|ICD10CM|Occupant of streetcar injured in collisn/hit by roll stok|Occupant of streetcar injured in collisn/hit by roll stok +C2898448|T037|AB|V82.2XXA|ICD10CM|Occupant of stcar injured in collisn/hit by roll stok, init|Occupant of stcar injured in collisn/hit by roll stok, init +C2898448|T037|PT|V82.2XXA|ICD10CM|Occupant of streetcar injured in collision with or hit by rolling stock, initial encounter|Occupant of streetcar injured in collision with or hit by rolling stock, initial encounter +C2898449|T037|AB|V82.2XXD|ICD10CM|Occupant of stcar injured in collisn/hit by roll stok, subs|Occupant of stcar injured in collisn/hit by roll stok, subs +C2898449|T037|PT|V82.2XXD|ICD10CM|Occupant of streetcar injured in collision with or hit by rolling stock, subsequent encounter|Occupant of streetcar injured in collision with or hit by rolling stock, subsequent encounter +C2898450|T037|AB|V82.2XXS|ICD10CM|Occ of stcar injured in collisn/hit by roll stok, sequela|Occ of stcar injured in collisn/hit by roll stok, sequela +C2898450|T037|PT|V82.2XXS|ICD10CM|Occupant of streetcar injured in collision with or hit by rolling stock, sequela|Occupant of streetcar injured in collision with or hit by rolling stock, sequela +C0477169|T037|HT|V82.3|ICD10CM|Occupant of streetcar injured in collision with other object|Occupant of streetcar injured in collision with other object +C0477169|T037|AB|V82.3|ICD10CM|Occupant of streetcar injured in collision with other object|Occupant of streetcar injured in collision with other object +C0477169|T037|PT|V82.3|ICD10|Occupant of streetcar injured in collision with other object|Occupant of streetcar injured in collision with other object +C2898451|T037|AB|V82.3XXA|ICD10CM|Occupant of streetcar injured in clsn w oth object, init|Occupant of streetcar injured in clsn w oth object, init +C2898451|T037|PT|V82.3XXA|ICD10CM|Occupant of streetcar injured in collision with other object, initial encounter|Occupant of streetcar injured in collision with other object, initial encounter +C2898452|T037|AB|V82.3XXD|ICD10CM|Occupant of streetcar injured in clsn w oth object, subs|Occupant of streetcar injured in clsn w oth object, subs +C2898452|T037|PT|V82.3XXD|ICD10CM|Occupant of streetcar injured in collision with other object, subsequent encounter|Occupant of streetcar injured in collision with other object, subsequent encounter +C2898453|T037|AB|V82.3XXS|ICD10CM|Occupant of streetcar injured in clsn w oth object, sequela|Occupant of streetcar injured in clsn w oth object, sequela +C2898453|T037|PT|V82.3XXS|ICD10CM|Occupant of streetcar injured in collision with other object, sequela|Occupant of streetcar injured in collision with other object, sequela +C0477170|T037|PT|V82.4|ICD10|Person injured while boarding or alighting from streetcar|Person injured while boarding or alighting from streetcar +C0477170|T037|HT|V82.4|ICD10CM|Person injured while boarding or alighting from streetcar|Person injured while boarding or alighting from streetcar +C0477170|T037|AB|V82.4|ICD10CM|Person injured while boarding or alighting from streetcar|Person injured while boarding or alighting from streetcar +C2898454|T037|AB|V82.4XXA|ICD10CM|Person injured wh brd/alit from streetcar, init|Person injured wh brd/alit from streetcar, init +C2898454|T037|PT|V82.4XXA|ICD10CM|Person injured while boarding or alighting from streetcar, initial encounter|Person injured while boarding or alighting from streetcar, initial encounter +C2898455|T037|AB|V82.4XXD|ICD10CM|Person injured wh brd/alit from streetcar, subs|Person injured wh brd/alit from streetcar, subs +C2898455|T037|PT|V82.4XXD|ICD10CM|Person injured while boarding or alighting from streetcar, subsequent encounter|Person injured while boarding or alighting from streetcar, subsequent encounter +C2898456|T037|AB|V82.4XXS|ICD10CM|Person injured wh brd/alit from streetcar, sequela|Person injured wh brd/alit from streetcar, sequela +C2898456|T037|PT|V82.4XXS|ICD10CM|Person injured while boarding or alighting from streetcar, sequela|Person injured while boarding or alighting from streetcar, sequela +C0477171|T037|HT|V82.5|ICD10CM|Occupant of streetcar injured by fall in streetcar|Occupant of streetcar injured by fall in streetcar +C0477171|T037|AB|V82.5|ICD10CM|Occupant of streetcar injured by fall in streetcar|Occupant of streetcar injured by fall in streetcar +C0477171|T037|PT|V82.5|ICD10|Occupant of streetcar injured by fall in streetcar|Occupant of streetcar injured by fall in streetcar +C2898457|T037|AB|V82.5XXA|ICD10CM|Occupant of streetcar injured by fall in streetcar, init|Occupant of streetcar injured by fall in streetcar, init +C2898457|T037|PT|V82.5XXA|ICD10CM|Occupant of streetcar injured by fall in streetcar, initial encounter|Occupant of streetcar injured by fall in streetcar, initial encounter +C2898458|T037|AB|V82.5XXD|ICD10CM|Occupant of streetcar injured by fall in streetcar, subs|Occupant of streetcar injured by fall in streetcar, subs +C2898458|T037|PT|V82.5XXD|ICD10CM|Occupant of streetcar injured by fall in streetcar, subsequent encounter|Occupant of streetcar injured by fall in streetcar, subsequent encounter +C2898459|T037|AB|V82.5XXS|ICD10CM|Occupant of streetcar injured by fall in streetcar, sequela|Occupant of streetcar injured by fall in streetcar, sequela +C2898459|T037|PT|V82.5XXS|ICD10CM|Occupant of streetcar injured by fall in streetcar, sequela|Occupant of streetcar injured by fall in streetcar, sequela +C0477172|T037|PT|V82.6|ICD10|Occupant of streetcar injured by fall from streetcar|Occupant of streetcar injured by fall from streetcar +C0477172|T037|HT|V82.6|ICD10CM|Occupant of streetcar injured by fall from streetcar|Occupant of streetcar injured by fall from streetcar +C0477172|T037|AB|V82.6|ICD10CM|Occupant of streetcar injured by fall from streetcar|Occupant of streetcar injured by fall from streetcar +C2898460|T037|AB|V82.6XXA|ICD10CM|Occupant of streetcar injured by fall from streetcar, init|Occupant of streetcar injured by fall from streetcar, init +C2898460|T037|PT|V82.6XXA|ICD10CM|Occupant of streetcar injured by fall from streetcar, initial encounter|Occupant of streetcar injured by fall from streetcar, initial encounter +C2898461|T037|AB|V82.6XXD|ICD10CM|Occupant of streetcar injured by fall from streetcar, subs|Occupant of streetcar injured by fall from streetcar, subs +C2898461|T037|PT|V82.6XXD|ICD10CM|Occupant of streetcar injured by fall from streetcar, subsequent encounter|Occupant of streetcar injured by fall from streetcar, subsequent encounter +C2898462|T037|AB|V82.6XXS|ICD10CM|Occupant of stcar injured by fall from streetcar, sequela|Occupant of stcar injured by fall from streetcar, sequela +C2898462|T037|PT|V82.6XXS|ICD10CM|Occupant of streetcar injured by fall from streetcar, sequela|Occupant of streetcar injured by fall from streetcar, sequela +C0477173|T037|AB|V82.7|ICD10CM|Occupant of streetcar injured in derail w/o antecedent clsn|Occupant of streetcar injured in derail w/o antecedent clsn +C0477173|T037|HT|V82.7|ICD10CM|Occupant of streetcar injured in derailment without antecedent collision|Occupant of streetcar injured in derailment without antecedent collision +C0477173|T037|PT|V82.7|ICD10|Occupant of streetcar injured in derailment without antecedent collision|Occupant of streetcar injured in derailment without antecedent collision +C2898463|T037|AB|V82.7XXA|ICD10CM|Occ of stcar injured in derail w/o antecedent clsn, init|Occ of stcar injured in derail w/o antecedent clsn, init +C2898463|T037|PT|V82.7XXA|ICD10CM|Occupant of streetcar injured in derailment without antecedent collision, initial encounter|Occupant of streetcar injured in derailment without antecedent collision, initial encounter +C2898464|T037|AB|V82.7XXD|ICD10CM|Occ of stcar injured in derail w/o antecedent clsn, subs|Occ of stcar injured in derail w/o antecedent clsn, subs +C2898464|T037|PT|V82.7XXD|ICD10CM|Occupant of streetcar injured in derailment without antecedent collision, subsequent encounter|Occupant of streetcar injured in derailment without antecedent collision, subsequent encounter +C2898465|T037|AB|V82.7XXS|ICD10CM|Occ of stcar injured in derail w/o antecedent clsn, sequela|Occ of stcar injured in derail w/o antecedent clsn, sequela +C2898465|T037|PT|V82.7XXS|ICD10CM|Occupant of streetcar injured in derailment without antecedent collision, sequela|Occupant of streetcar injured in derailment without antecedent collision, sequela +C0477174|T037|AB|V82.8|ICD10CM|Occupant of streetcar injured in oth transport accidents|Occupant of streetcar injured in oth transport accidents +C0477174|T037|HT|V82.8|ICD10CM|Occupant of streetcar injured in other specified transport accidents|Occupant of streetcar injured in other specified transport accidents +C0477174|T037|PT|V82.8|ICD10|Occupant of streetcar injured in other specified transport accidents|Occupant of streetcar injured in other specified transport accidents +C2898466|T037|ET|V82.8|ICD10CM|Streetcar collision with military vehicle|Streetcar collision with military vehicle +C2898467|T037|ET|V82.8|ICD10CM|Streetcar collision with train or nonmotor vehicles|Streetcar collision with train or nonmotor vehicles +C2898468|T037|AB|V82.8XXA|ICD10CM|Occupant of streetcar injured in oth transport acc, init|Occupant of streetcar injured in oth transport acc, init +C2898468|T037|PT|V82.8XXA|ICD10CM|Occupant of streetcar injured in other specified transport accidents, initial encounter|Occupant of streetcar injured in other specified transport accidents, initial encounter +C2898469|T037|AB|V82.8XXD|ICD10CM|Occupant of streetcar injured in oth transport acc, subs|Occupant of streetcar injured in oth transport acc, subs +C2898469|T037|PT|V82.8XXD|ICD10CM|Occupant of streetcar injured in other specified transport accidents, subsequent encounter|Occupant of streetcar injured in other specified transport accidents, subsequent encounter +C2898470|T037|AB|V82.8XXS|ICD10CM|Occupant of streetcar injured in oth transport acc, sequela|Occupant of streetcar injured in oth transport acc, sequela +C2898470|T037|PT|V82.8XXS|ICD10CM|Occupant of streetcar injured in other specified transport accidents, sequela|Occupant of streetcar injured in other specified transport accidents, sequela +C0477175|T037|AB|V82.9|ICD10CM|Occupant of streetcar injured in unsp traffic accident|Occupant of streetcar injured in unsp traffic accident +C0477175|T037|HT|V82.9|ICD10CM|Occupant of streetcar injured in unspecified traffic accident|Occupant of streetcar injured in unspecified traffic accident +C0477175|T037|PT|V82.9|ICD10|Occupant of streetcar injured in unspecified traffic accident|Occupant of streetcar injured in unspecified traffic accident +C2898471|T037|ET|V82.9|ICD10CM|Streetcar accident NOS|Streetcar accident NOS +C2898472|T037|AB|V82.9XXA|ICD10CM|Occupant of streetcar injured in unsp traffic accident, init|Occupant of streetcar injured in unsp traffic accident, init +C2898472|T037|PT|V82.9XXA|ICD10CM|Occupant of streetcar injured in unspecified traffic accident, initial encounter|Occupant of streetcar injured in unspecified traffic accident, initial encounter +C2898473|T037|AB|V82.9XXD|ICD10CM|Occupant of streetcar injured in unsp traffic accident, subs|Occupant of streetcar injured in unsp traffic accident, subs +C2898473|T037|PT|V82.9XXD|ICD10CM|Occupant of streetcar injured in unspecified traffic accident, subsequent encounter|Occupant of streetcar injured in unspecified traffic accident, subsequent encounter +C2898474|T037|AB|V82.9XXS|ICD10CM|Occupant of streetcar injured in unsp traf, sequela|Occupant of streetcar injured in unsp traf, sequela +C2898474|T037|PT|V82.9XXS|ICD10CM|Occupant of streetcar injured in unspecified traffic accident, sequela|Occupant of streetcar injured in unspecified traffic accident, sequela +C4290452|T037|ET|V83|ICD10CM|battery-powered airport passenger vehicle|battery-powered airport passenger vehicle +C4290453|T037|ET|V83|ICD10CM|battery-powered truck (baggage) (mail)|battery-powered truck (baggage) (mail) +C4290454|T037|ET|V83|ICD10CM|coal-car in mine|coal-car in mine +C4290455|T037|ET|V83|ICD10CM|forklift (truck)|forklift (truck) +C4290456|T037|ET|V83|ICD10CM|logging car|logging car +C0477176|T037|HT|V83|ICD10|Occupant of special vehicle mainly used on industrial premises injured in transport accident|Occupant of special vehicle mainly used on industrial premises injured in transport accident +C0477176|T037|HT|V83|ICD10CM|Occupant of special vehicle mainly used on industrial premises injured in transport accident|Occupant of special vehicle mainly used on industrial premises injured in transport accident +C0477176|T037|AB|V83|ICD10CM|Occupant specl indust veh injured in transport accident|Occupant specl indust veh injured in transport accident +C4290457|T037|ET|V83|ICD10CM|self-propelled industrial truck|self-propelled industrial truck +C4290458|T037|ET|V83|ICD10CM|station baggage truck (powered)|station baggage truck (powered) +C4290459|T037|ET|V83|ICD10CM|tram, truck, or tub (powered) in mine or quarry|tram, truck, or tub (powered) in mine or quarry +C0477177|T037|AB|V83.0|ICD10CM|Driver of special industrial vehicle injured in traf|Driver of special industrial vehicle injured in traf +C0477177|T037|HT|V83.0|ICD10CM|Driver of special industrial vehicle injured in traffic accident|Driver of special industrial vehicle injured in traffic accident +C0477177|T037|PT|V83.0|ICD10|Driver of special industrial vehicle injured in traffic accident|Driver of special industrial vehicle injured in traffic accident +C2898483|T037|AB|V83.0XXA|ICD10CM|Driver of special industrial vehicle injured in traf, init|Driver of special industrial vehicle injured in traf, init +C2898483|T037|PT|V83.0XXA|ICD10CM|Driver of special industrial vehicle injured in traffic accident, initial encounter|Driver of special industrial vehicle injured in traffic accident, initial encounter +C2898484|T037|AB|V83.0XXD|ICD10CM|Driver of special industrial vehicle injured in traf, subs|Driver of special industrial vehicle injured in traf, subs +C2898484|T037|PT|V83.0XXD|ICD10CM|Driver of special industrial vehicle injured in traffic accident, subsequent encounter|Driver of special industrial vehicle injured in traffic accident, subsequent encounter +C2898485|T037|AB|V83.0XXS|ICD10CM|Driver of special industr vehicle injured in traf, sequela|Driver of special industr vehicle injured in traf, sequela +C2898485|T037|PT|V83.0XXS|ICD10CM|Driver of special industrial vehicle injured in traffic accident, sequela|Driver of special industrial vehicle injured in traffic accident, sequela +C0477178|T037|AB|V83.1|ICD10CM|Passenger of special industrial vehicle injured in traf|Passenger of special industrial vehicle injured in traf +C0477178|T037|HT|V83.1|ICD10CM|Passenger of special industrial vehicle injured in traffic accident|Passenger of special industrial vehicle injured in traffic accident +C0477178|T037|PT|V83.1|ICD10|Passenger of special industrial vehicle injured in traffic accident|Passenger of special industrial vehicle injured in traffic accident +C2898486|T037|AB|V83.1XXA|ICD10CM|Passenger of special industr vehicle injured in traf, init|Passenger of special industr vehicle injured in traf, init +C2898486|T037|PT|V83.1XXA|ICD10CM|Passenger of special industrial vehicle injured in traffic accident, initial encounter|Passenger of special industrial vehicle injured in traffic accident, initial encounter +C2898487|T037|AB|V83.1XXD|ICD10CM|Passenger of special industr vehicle injured in traf, subs|Passenger of special industr vehicle injured in traf, subs +C2898487|T037|PT|V83.1XXD|ICD10CM|Passenger of special industrial vehicle injured in traffic accident, subsequent encounter|Passenger of special industrial vehicle injured in traffic accident, subsequent encounter +C2898488|T037|AB|V83.1XXS|ICD10CM|Pasngr of special industr vehicle injured in traf, sequela|Pasngr of special industr vehicle injured in traf, sequela +C2898488|T037|PT|V83.1XXS|ICD10CM|Passenger of special industrial vehicle injured in traffic accident, sequela|Passenger of special industrial vehicle injured in traffic accident, sequela +C0477179|T037|PT|V83.2|ICD10|Person on outside of special industrial vehicle injured in traffic accident|Person on outside of special industrial vehicle injured in traffic accident +C0477179|T037|HT|V83.2|ICD10CM|Person on outside of special industrial vehicle injured in traffic accident|Person on outside of special industrial vehicle injured in traffic accident +C0477179|T037|AB|V83.2|ICD10CM|Person outside special industrial vehicle injured in traf|Person outside special industrial vehicle injured in traf +C2898489|T037|PT|V83.2XXA|ICD10CM|Person on outside of special industrial vehicle injured in traffic accident, initial encounter|Person on outside of special industrial vehicle injured in traffic accident, initial encounter +C2898489|T037|AB|V83.2XXA|ICD10CM|Person outside special industr vehicle injured in traf, init|Person outside special industr vehicle injured in traf, init +C2898490|T037|PT|V83.2XXD|ICD10CM|Person on outside of special industrial vehicle injured in traffic accident, subsequent encounter|Person on outside of special industrial vehicle injured in traffic accident, subsequent encounter +C2898490|T037|AB|V83.2XXD|ICD10CM|Person outside special industr vehicle injured in traf, subs|Person outside special industr vehicle injured in traf, subs +C2898491|T037|PT|V83.2XXS|ICD10CM|Person on outside of special industrial vehicle injured in traffic accident, sequela|Person on outside of special industrial vehicle injured in traffic accident, sequela +C2898491|T037|AB|V83.2XXS|ICD10CM|Person outside special industr vehicle inj in traf, sequela|Person outside special industr vehicle inj in traf, sequela +C0477180|T037|AB|V83.3|ICD10CM|Occup of special industrial vehicle injured in traf|Occup of special industrial vehicle injured in traf +C0477180|T037|HT|V83.3|ICD10CM|Unspecified occupant of special industrial vehicle injured in traffic accident|Unspecified occupant of special industrial vehicle injured in traffic accident +C0477180|T037|PT|V83.3|ICD10|Unspecified occupant of special industrial vehicle injured in traffic accident|Unspecified occupant of special industrial vehicle injured in traffic accident +C2898492|T037|AB|V83.3XXA|ICD10CM|Occup of special industrial vehicle injured in traf, init|Occup of special industrial vehicle injured in traf, init +C2898492|T037|PT|V83.3XXA|ICD10CM|Unspecified occupant of special industrial vehicle injured in traffic accident, initial encounter|Unspecified occupant of special industrial vehicle injured in traffic accident, initial encounter +C2898493|T037|AB|V83.3XXD|ICD10CM|Occup of special industrial vehicle injured in traf, subs|Occup of special industrial vehicle injured in traf, subs +C2898493|T037|PT|V83.3XXD|ICD10CM|Unspecified occupant of special industrial vehicle injured in traffic accident, subsequent encounter|Unspecified occupant of special industrial vehicle injured in traffic accident, subsequent encounter +C2898494|T037|AB|V83.3XXS|ICD10CM|Occup of special industrial vehicle injured in traf, sequela|Occup of special industrial vehicle injured in traf, sequela +C2898494|T037|PT|V83.3XXS|ICD10CM|Unspecified occupant of special industrial vehicle injured in traffic accident, sequela|Unspecified occupant of special industrial vehicle injured in traffic accident, sequela +C0477181|T037|AB|V83.4|ICD10CM|Person injured wh brd/alit from special industrial vehicle|Person injured wh brd/alit from special industrial vehicle +C0477181|T037|HT|V83.4|ICD10CM|Person injured while boarding or alighting from special industrial vehicle|Person injured while boarding or alighting from special industrial vehicle +C0477181|T037|PT|V83.4|ICD10|Person injured while boarding or alighting from special industrial vehicle|Person injured while boarding or alighting from special industrial vehicle +C2898495|T037|AB|V83.4XXA|ICD10CM|Person inj wh brd/alit from special industr vehicle, init|Person inj wh brd/alit from special industr vehicle, init +C2898495|T037|PT|V83.4XXA|ICD10CM|Person injured while boarding or alighting from special industrial vehicle, initial encounter|Person injured while boarding or alighting from special industrial vehicle, initial encounter +C2898496|T037|AB|V83.4XXD|ICD10CM|Person inj wh brd/alit from special industr vehicle, subs|Person inj wh brd/alit from special industr vehicle, subs +C2898496|T037|PT|V83.4XXD|ICD10CM|Person injured while boarding or alighting from special industrial vehicle, subsequent encounter|Person injured while boarding or alighting from special industrial vehicle, subsequent encounter +C2898497|T037|AB|V83.4XXS|ICD10CM|Person inj wh brd/alit from special industr vehicle, sequela|Person inj wh brd/alit from special industr vehicle, sequela +C2898497|T037|PT|V83.4XXS|ICD10CM|Person injured while boarding or alighting from special industrial vehicle, sequela|Person injured while boarding or alighting from special industrial vehicle, sequela +C0477182|T037|PT|V83.5|ICD10|Driver of special industrial vehicle injured in nontraffic accident|Driver of special industrial vehicle injured in nontraffic accident +C0477182|T037|HT|V83.5|ICD10CM|Driver of special industrial vehicle injured in nontraffic accident|Driver of special industrial vehicle injured in nontraffic accident +C0477182|T037|AB|V83.5|ICD10CM|Driver of special industrial vehicle injured nontraf|Driver of special industrial vehicle injured nontraf +C2898498|T037|PT|V83.5XXA|ICD10CM|Driver of special industrial vehicle injured in nontraffic accident, initial encounter|Driver of special industrial vehicle injured in nontraffic accident, initial encounter +C2898498|T037|AB|V83.5XXA|ICD10CM|Driver of special industrial vehicle injured nontraf, init|Driver of special industrial vehicle injured nontraf, init +C2898499|T037|PT|V83.5XXD|ICD10CM|Driver of special industrial vehicle injured in nontraffic accident, subsequent encounter|Driver of special industrial vehicle injured in nontraffic accident, subsequent encounter +C2898499|T037|AB|V83.5XXD|ICD10CM|Driver of special industrial vehicle injured nontraf, subs|Driver of special industrial vehicle injured nontraf, subs +C2898500|T037|AB|V83.5XXS|ICD10CM|Driver of special industr vehicle injured nontraf, sequela|Driver of special industr vehicle injured nontraf, sequela +C2898500|T037|PT|V83.5XXS|ICD10CM|Driver of special industrial vehicle injured in nontraffic accident, sequela|Driver of special industrial vehicle injured in nontraffic accident, sequela +C0477183|T037|HT|V83.6|ICD10CM|Passenger of special industrial vehicle injured in nontraffic accident|Passenger of special industrial vehicle injured in nontraffic accident +C0477183|T037|PT|V83.6|ICD10|Passenger of special industrial vehicle injured in nontraffic accident|Passenger of special industrial vehicle injured in nontraffic accident +C0477183|T037|AB|V83.6|ICD10CM|Passenger of special industrial vehicle injured nontraf|Passenger of special industrial vehicle injured nontraf +C2898501|T037|AB|V83.6XXA|ICD10CM|Passenger of special industr vehicle injured nontraf, init|Passenger of special industr vehicle injured nontraf, init +C2898501|T037|PT|V83.6XXA|ICD10CM|Passenger of special industrial vehicle injured in nontraffic accident, initial encounter|Passenger of special industrial vehicle injured in nontraffic accident, initial encounter +C2898502|T037|AB|V83.6XXD|ICD10CM|Passenger of special industr vehicle injured nontraf, subs|Passenger of special industr vehicle injured nontraf, subs +C2898502|T037|PT|V83.6XXD|ICD10CM|Passenger of special industrial vehicle injured in nontraffic accident, subsequent encounter|Passenger of special industrial vehicle injured in nontraffic accident, subsequent encounter +C2898503|T037|AB|V83.6XXS|ICD10CM|Pasngr of special industr vehicle injured nontraf, sequela|Pasngr of special industr vehicle injured nontraf, sequela +C2898503|T037|PT|V83.6XXS|ICD10CM|Passenger of special industrial vehicle injured in nontraffic accident, sequela|Passenger of special industrial vehicle injured in nontraffic accident, sequela +C0477184|T037|HT|V83.7|ICD10CM|Person on outside of special industrial vehicle injured in nontraffic accident|Person on outside of special industrial vehicle injured in nontraffic accident +C0477184|T037|PT|V83.7|ICD10|Person on outside of special industrial vehicle injured in nontraffic accident|Person on outside of special industrial vehicle injured in nontraffic accident +C0477184|T037|AB|V83.7|ICD10CM|Person outside special industrial vehicle injured nontraf|Person outside special industrial vehicle injured nontraf +C2898504|T037|PT|V83.7XXA|ICD10CM|Person on outside of special industrial vehicle injured in nontraffic accident, initial encounter|Person on outside of special industrial vehicle injured in nontraffic accident, initial encounter +C2898504|T037|AB|V83.7XXA|ICD10CM|Person outside special industr vehicle injured nontraf, init|Person outside special industr vehicle injured nontraf, init +C2898505|T037|PT|V83.7XXD|ICD10CM|Person on outside of special industrial vehicle injured in nontraffic accident, subsequent encounter|Person on outside of special industrial vehicle injured in nontraffic accident, subsequent encounter +C2898505|T037|AB|V83.7XXD|ICD10CM|Person outside special industr vehicle injured nontraf, subs|Person outside special industr vehicle injured nontraf, subs +C2898506|T037|PT|V83.7XXS|ICD10CM|Person on outside of special industrial vehicle injured in nontraffic accident, sequela|Person on outside of special industrial vehicle injured in nontraffic accident, sequela +C2898506|T037|AB|V83.7XXS|ICD10CM|Person outside special industr vehicle inj nontraf, sequela|Person outside special industr vehicle inj nontraf, sequela +C0477185|T037|AB|V83.9|ICD10CM|Occup of special industrial vehicle injured nontraf|Occup of special industrial vehicle injured nontraf +C2898507|T037|ET|V83.9|ICD10CM|Special-industrial-vehicle accident NOS|Special-industrial-vehicle accident NOS +C0477185|T037|HT|V83.9|ICD10CM|Unspecified occupant of special industrial vehicle injured in nontraffic accident|Unspecified occupant of special industrial vehicle injured in nontraffic accident +C0477185|T037|PT|V83.9|ICD10|Unspecified occupant of special industrial vehicle injured in nontraffic accident|Unspecified occupant of special industrial vehicle injured in nontraffic accident +C2898508|T037|AB|V83.9XXA|ICD10CM|Occup of special industrial vehicle injured nontraf, init|Occup of special industrial vehicle injured nontraf, init +C2898508|T037|PT|V83.9XXA|ICD10CM|Unspecified occupant of special industrial vehicle injured in nontraffic accident, initial encounter|Unspecified occupant of special industrial vehicle injured in nontraffic accident, initial encounter +C2898509|T037|AB|V83.9XXD|ICD10CM|Occup of special industrial vehicle injured nontraf, subs|Occup of special industrial vehicle injured nontraf, subs +C2898510|T037|AB|V83.9XXS|ICD10CM|Occup of special industrial vehicle injured nontraf, sequela|Occup of special industrial vehicle injured nontraf, sequela +C2898510|T037|PT|V83.9XXS|ICD10CM|Unspecified occupant of special industrial vehicle injured in nontraffic accident, sequela|Unspecified occupant of special industrial vehicle injured in nontraffic accident, sequela +C0477186|T037|AB|V84|ICD10CM|Occ of specl veh mainly used in agriculture inj in trnsp acc|Occ of specl veh mainly used in agriculture inj in trnsp acc +C0477186|T037|HT|V84|ICD10CM|Occupant of special vehicle mainly used in agriculture injured in transport accident|Occupant of special vehicle mainly used in agriculture injured in transport accident +C0477186|T037|HT|V84|ICD10|Occupant of special vehicle mainly used in agriculture injured in transport accident|Occupant of special vehicle mainly used in agriculture injured in transport accident +C4290460|T037|ET|V84|ICD10CM|self-propelled farm machinery|self-propelled farm machinery +C4290461|T037|ET|V84|ICD10CM|tractor (and trailer)|tractor (and trailer) +C0477187|T037|AB|V84.0|ICD10CM|Driver of special agricultural vehicle injured in traf|Driver of special agricultural vehicle injured in traf +C0477187|T037|HT|V84.0|ICD10CM|Driver of special agricultural vehicle injured in traffic accident|Driver of special agricultural vehicle injured in traffic accident +C0477187|T037|PT|V84.0|ICD10|Driver of special agricultural vehicle injured in traffic accident|Driver of special agricultural vehicle injured in traffic accident +C2898513|T037|AB|V84.0XXA|ICD10CM|Driver of special agricultural vehicle injured in traf, init|Driver of special agricultural vehicle injured in traf, init +C2898513|T037|PT|V84.0XXA|ICD10CM|Driver of special agricultural vehicle injured in traffic accident, initial encounter|Driver of special agricultural vehicle injured in traffic accident, initial encounter +C2898514|T037|AB|V84.0XXD|ICD10CM|Driver of special agricultural vehicle injured in traf, subs|Driver of special agricultural vehicle injured in traf, subs +C2898514|T037|PT|V84.0XXD|ICD10CM|Driver of special agricultural vehicle injured in traffic accident, subsequent encounter|Driver of special agricultural vehicle injured in traffic accident, subsequent encounter +C2898515|T037|AB|V84.0XXS|ICD10CM|Driver of special agri vehicle injured in traf, sequela|Driver of special agri vehicle injured in traf, sequela +C2898515|T037|PT|V84.0XXS|ICD10CM|Driver of special agricultural vehicle injured in traffic accident, sequela|Driver of special agricultural vehicle injured in traffic accident, sequela +C0477188|T037|AB|V84.1|ICD10CM|Passenger of special agricultural vehicle injured in traf|Passenger of special agricultural vehicle injured in traf +C0477188|T037|HT|V84.1|ICD10CM|Passenger of special agricultural vehicle injured in traffic accident|Passenger of special agricultural vehicle injured in traffic accident +C0477188|T037|PT|V84.1|ICD10|Passenger of special agricultural vehicle injured in traffic accident|Passenger of special agricultural vehicle injured in traffic accident +C2898516|T037|AB|V84.1XXA|ICD10CM|Passenger of special agri vehicle injured in traf, init|Passenger of special agri vehicle injured in traf, init +C2898516|T037|PT|V84.1XXA|ICD10CM|Passenger of special agricultural vehicle injured in traffic accident, initial encounter|Passenger of special agricultural vehicle injured in traffic accident, initial encounter +C2898517|T037|AB|V84.1XXD|ICD10CM|Passenger of special agri vehicle injured in traf, subs|Passenger of special agri vehicle injured in traf, subs +C2898517|T037|PT|V84.1XXD|ICD10CM|Passenger of special agricultural vehicle injured in traffic accident, subsequent encounter|Passenger of special agricultural vehicle injured in traffic accident, subsequent encounter +C2898518|T037|AB|V84.1XXS|ICD10CM|Passenger of special agri vehicle injured in traf, sequela|Passenger of special agri vehicle injured in traf, sequela +C2898518|T037|PT|V84.1XXS|ICD10CM|Passenger of special agricultural vehicle injured in traffic accident, sequela|Passenger of special agricultural vehicle injured in traffic accident, sequela +C0477189|T037|PT|V84.2|ICD10|Person on outside of special agricultural vehicle injured in traffic accident|Person on outside of special agricultural vehicle injured in traffic accident +C0477189|T037|HT|V84.2|ICD10CM|Person on outside of special agricultural vehicle injured in traffic accident|Person on outside of special agricultural vehicle injured in traffic accident +C0477189|T037|AB|V84.2|ICD10CM|Person outside special agricultural vehicle injured in traf|Person outside special agricultural vehicle injured in traf +C2898519|T037|PT|V84.2XXA|ICD10CM|Person on outside of special agricultural vehicle injured in traffic accident, initial encounter|Person on outside of special agricultural vehicle injured in traffic accident, initial encounter +C2898519|T037|AB|V84.2XXA|ICD10CM|Person outside special agri vehicle injured in traf, init|Person outside special agri vehicle injured in traf, init +C2898520|T037|PT|V84.2XXD|ICD10CM|Person on outside of special agricultural vehicle injured in traffic accident, subsequent encounter|Person on outside of special agricultural vehicle injured in traffic accident, subsequent encounter +C2898520|T037|AB|V84.2XXD|ICD10CM|Person outside special agri vehicle injured in traf, subs|Person outside special agri vehicle injured in traf, subs +C2898521|T037|PT|V84.2XXS|ICD10CM|Person on outside of special agricultural vehicle injured in traffic accident, sequela|Person on outside of special agricultural vehicle injured in traffic accident, sequela +C2898521|T037|AB|V84.2XXS|ICD10CM|Person outside special agri vehicle injured in traf, sequela|Person outside special agri vehicle injured in traf, sequela +C0477190|T037|AB|V84.3|ICD10CM|Occup of special agricultural vehicle injured in traf|Occup of special agricultural vehicle injured in traf +C0477190|T037|HT|V84.3|ICD10CM|Unspecified occupant of special agricultural vehicle injured in traffic accident|Unspecified occupant of special agricultural vehicle injured in traffic accident +C0477190|T037|PT|V84.3|ICD10|Unspecified occupant of special agricultural vehicle injured in traffic accident|Unspecified occupant of special agricultural vehicle injured in traffic accident +C2898522|T037|AB|V84.3XXA|ICD10CM|Occup of special agricultural vehicle injured in traf, init|Occup of special agricultural vehicle injured in traf, init +C2898522|T037|PT|V84.3XXA|ICD10CM|Unspecified occupant of special agricultural vehicle injured in traffic accident, initial encounter|Unspecified occupant of special agricultural vehicle injured in traffic accident, initial encounter +C2898523|T037|AB|V84.3XXD|ICD10CM|Occup of special agricultural vehicle injured in traf, subs|Occup of special agricultural vehicle injured in traf, subs +C2898524|T037|AB|V84.3XXS|ICD10CM|Occup of special agri vehicle injured in traf, sequela|Occup of special agri vehicle injured in traf, sequela +C2898524|T037|PT|V84.3XXS|ICD10CM|Unspecified occupant of special agricultural vehicle injured in traffic accident, sequela|Unspecified occupant of special agricultural vehicle injured in traffic accident, sequela +C0477191|T037|AB|V84.4|ICD10CM|Person injured wh brd/alit from special agricultural vehicle|Person injured wh brd/alit from special agricultural vehicle +C0477191|T037|HT|V84.4|ICD10CM|Person injured while boarding or alighting from special agricultural vehicle|Person injured while boarding or alighting from special agricultural vehicle +C0477191|T037|PT|V84.4|ICD10|Person injured while boarding or alighting from special agricultural vehicle|Person injured while boarding or alighting from special agricultural vehicle +C2898525|T037|AB|V84.4XXA|ICD10CM|Person injured wh brd/alit from special agri vehicle, init|Person injured wh brd/alit from special agri vehicle, init +C2898525|T037|PT|V84.4XXA|ICD10CM|Person injured while boarding or alighting from special agricultural vehicle, initial encounter|Person injured while boarding or alighting from special agricultural vehicle, initial encounter +C2898526|T037|AB|V84.4XXD|ICD10CM|Person injured wh brd/alit from special agri vehicle, subs|Person injured wh brd/alit from special agri vehicle, subs +C2898526|T037|PT|V84.4XXD|ICD10CM|Person injured while boarding or alighting from special agricultural vehicle, subsequent encounter|Person injured while boarding or alighting from special agricultural vehicle, subsequent encounter +C2898527|T037|AB|V84.4XXS|ICD10CM|Person inj wh brd/alit from special agri vehicle, sequela|Person inj wh brd/alit from special agri vehicle, sequela +C2898527|T037|PT|V84.4XXS|ICD10CM|Person injured while boarding or alighting from special agricultural vehicle, sequela|Person injured while boarding or alighting from special agricultural vehicle, sequela +C0477192|T037|PT|V84.5|ICD10|Driver of special agricultural vehicle injured in nontraffic accident|Driver of special agricultural vehicle injured in nontraffic accident +C0477192|T037|HT|V84.5|ICD10CM|Driver of special agricultural vehicle injured in nontraffic accident|Driver of special agricultural vehicle injured in nontraffic accident +C0477192|T037|AB|V84.5|ICD10CM|Driver of special agricultural vehicle injured nontraf|Driver of special agricultural vehicle injured nontraf +C2898528|T037|PT|V84.5XXA|ICD10CM|Driver of special agricultural vehicle injured in nontraffic accident, initial encounter|Driver of special agricultural vehicle injured in nontraffic accident, initial encounter +C2898528|T037|AB|V84.5XXA|ICD10CM|Driver of special agricultural vehicle injured nontraf, init|Driver of special agricultural vehicle injured nontraf, init +C2898529|T037|PT|V84.5XXD|ICD10CM|Driver of special agricultural vehicle injured in nontraffic accident, subsequent encounter|Driver of special agricultural vehicle injured in nontraffic accident, subsequent encounter +C2898529|T037|AB|V84.5XXD|ICD10CM|Driver of special agricultural vehicle injured nontraf, subs|Driver of special agricultural vehicle injured nontraf, subs +C2898530|T037|AB|V84.5XXS|ICD10CM|Driver of special agri vehicle injured nontraf, sequela|Driver of special agri vehicle injured nontraf, sequela +C2898530|T037|PT|V84.5XXS|ICD10CM|Driver of special agricultural vehicle injured in nontraffic accident, sequela|Driver of special agricultural vehicle injured in nontraffic accident, sequela +C0477193|T037|HT|V84.6|ICD10CM|Passenger of special agricultural vehicle injured in nontraffic accident|Passenger of special agricultural vehicle injured in nontraffic accident +C0477193|T037|PT|V84.6|ICD10|Passenger of special agricultural vehicle injured in nontraffic accident|Passenger of special agricultural vehicle injured in nontraffic accident +C0477193|T037|AB|V84.6|ICD10CM|Passenger of special agricultural vehicle injured nontraf|Passenger of special agricultural vehicle injured nontraf +C2898531|T037|AB|V84.6XXA|ICD10CM|Passenger of special agri vehicle injured nontraf, init|Passenger of special agri vehicle injured nontraf, init +C2898531|T037|PT|V84.6XXA|ICD10CM|Passenger of special agricultural vehicle injured in nontraffic accident, initial encounter|Passenger of special agricultural vehicle injured in nontraffic accident, initial encounter +C2898532|T037|AB|V84.6XXD|ICD10CM|Passenger of special agri vehicle injured nontraf, subs|Passenger of special agri vehicle injured nontraf, subs +C2898532|T037|PT|V84.6XXD|ICD10CM|Passenger of special agricultural vehicle injured in nontraffic accident, subsequent encounter|Passenger of special agricultural vehicle injured in nontraffic accident, subsequent encounter +C2898533|T037|AB|V84.6XXS|ICD10CM|Passenger of special agri vehicle injured nontraf, sequela|Passenger of special agri vehicle injured nontraf, sequela +C2898533|T037|PT|V84.6XXS|ICD10CM|Passenger of special agricultural vehicle injured in nontraffic accident, sequela|Passenger of special agricultural vehicle injured in nontraffic accident, sequela +C0477194|T037|HT|V84.7|ICD10CM|Person on outside of special agricultural vehicle injured in nontraffic accident|Person on outside of special agricultural vehicle injured in nontraffic accident +C0477194|T037|PT|V84.7|ICD10|Person on outside of special agricultural vehicle injured in nontraffic accident|Person on outside of special agricultural vehicle injured in nontraffic accident +C0477194|T037|AB|V84.7|ICD10CM|Person outside special agricultural vehicle injured nontraf|Person outside special agricultural vehicle injured nontraf +C2898534|T037|PT|V84.7XXA|ICD10CM|Person on outside of special agricultural vehicle injured in nontraffic accident, initial encounter|Person on outside of special agricultural vehicle injured in nontraffic accident, initial encounter +C2898534|T037|AB|V84.7XXA|ICD10CM|Person outside special agri vehicle injured nontraf, init|Person outside special agri vehicle injured nontraf, init +C2898535|T037|AB|V84.7XXD|ICD10CM|Person outside special agri vehicle injured nontraf, subs|Person outside special agri vehicle injured nontraf, subs +C2898536|T037|PT|V84.7XXS|ICD10CM|Person on outside of special agricultural vehicle injured in nontraffic accident, sequela|Person on outside of special agricultural vehicle injured in nontraffic accident, sequela +C2898536|T037|AB|V84.7XXS|ICD10CM|Person outside special agri vehicle injured nontraf, sequela|Person outside special agri vehicle injured nontraf, sequela +C0477195|T037|AB|V84.9|ICD10CM|Occup of special agricultural vehicle injured nontraf|Occup of special agricultural vehicle injured nontraf +C2898537|T037|ET|V84.9|ICD10CM|Special-agricultural vehicle accident NOS|Special-agricultural vehicle accident NOS +C0477195|T037|HT|V84.9|ICD10CM|Unspecified occupant of special agricultural vehicle injured in nontraffic accident|Unspecified occupant of special agricultural vehicle injured in nontraffic accident +C0477195|T037|PT|V84.9|ICD10|Unspecified occupant of special agricultural vehicle injured in nontraffic accident|Unspecified occupant of special agricultural vehicle injured in nontraffic accident +C2898538|T037|AB|V84.9XXA|ICD10CM|Occup of special agricultural vehicle injured nontraf, init|Occup of special agricultural vehicle injured nontraf, init +C2898539|T037|AB|V84.9XXD|ICD10CM|Occup of special agricultural vehicle injured nontraf, subs|Occup of special agricultural vehicle injured nontraf, subs +C2898540|T037|AB|V84.9XXS|ICD10CM|Occup of special agri vehicle injured nontraf, sequela|Occup of special agri vehicle injured nontraf, sequela +C2898540|T037|PT|V84.9XXS|ICD10CM|Unspecified occupant of special agricultural vehicle injured in nontraffic accident, sequela|Unspecified occupant of special agricultural vehicle injured in nontraffic accident, sequela +C4283854|T037|ET|V85|ICD10CM|bulldozer|bulldozer +C2911649|T037|ET|V85|ICD10CM|digger|digger +C4284119|T037|ET|V85|ICD10CM|dump truck|dump truck +C4290462|T037|ET|V85|ICD10CM|earth-leveller|earth-leveller +C4290463|T037|ET|V85|ICD10CM|mechanical shovel|mechanical shovel +C0477196|T037|AB|V85|ICD10CM|Occupant of special construct vehicle injured in trnsp acc|Occupant of special construct vehicle injured in trnsp acc +C0477196|T037|HT|V85|ICD10CM|Occupant of special construction vehicle injured in transport accident|Occupant of special construction vehicle injured in transport accident +C0477196|T037|HT|V85|ICD10|Occupant of special construction vehicle injured in transport accident|Occupant of special construction vehicle injured in transport accident +C4290464|T037|ET|V85|ICD10CM|road-roller|road-roller +C0477197|T037|AB|V85.0|ICD10CM|Driver of special construction vehicle injured in traf|Driver of special construction vehicle injured in traf +C0477197|T037|HT|V85.0|ICD10CM|Driver of special construction vehicle injured in traffic accident|Driver of special construction vehicle injured in traffic accident +C0477197|T037|PT|V85.0|ICD10|Driver of special construction vehicle injured in traffic accident|Driver of special construction vehicle injured in traffic accident +C2898544|T037|AB|V85.0XXA|ICD10CM|Driver of special construction vehicle injured in traf, init|Driver of special construction vehicle injured in traf, init +C2898544|T037|PT|V85.0XXA|ICD10CM|Driver of special construction vehicle injured in traffic accident, initial encounter|Driver of special construction vehicle injured in traffic accident, initial encounter +C2898545|T037|AB|V85.0XXD|ICD10CM|Driver of special construction vehicle injured in traf, subs|Driver of special construction vehicle injured in traf, subs +C2898545|T037|PT|V85.0XXD|ICD10CM|Driver of special construction vehicle injured in traffic accident, subsequent encounter|Driver of special construction vehicle injured in traffic accident, subsequent encounter +C2898546|T037|AB|V85.0XXS|ICD10CM|Driver of special construct vehicle injured in traf, sequela|Driver of special construct vehicle injured in traf, sequela +C2898546|T037|PT|V85.0XXS|ICD10CM|Driver of special construction vehicle injured in traffic accident, sequela|Driver of special construction vehicle injured in traffic accident, sequela +C0477198|T037|AB|V85.1|ICD10CM|Passenger of special construction vehicle injured in traf|Passenger of special construction vehicle injured in traf +C0477198|T037|HT|V85.1|ICD10CM|Passenger of special construction vehicle injured in traffic accident|Passenger of special construction vehicle injured in traffic accident +C0477198|T037|PT|V85.1|ICD10|Passenger of special construction vehicle injured in traffic accident|Passenger of special construction vehicle injured in traffic accident +C2898547|T037|AB|V85.1XXA|ICD10CM|Passenger of special construct vehicle injured in traf, init|Passenger of special construct vehicle injured in traf, init +C2898547|T037|PT|V85.1XXA|ICD10CM|Passenger of special construction vehicle injured in traffic accident, initial encounter|Passenger of special construction vehicle injured in traffic accident, initial encounter +C2898548|T037|AB|V85.1XXD|ICD10CM|Passenger of special construct vehicle injured in traf, subs|Passenger of special construct vehicle injured in traf, subs +C2898548|T037|PT|V85.1XXD|ICD10CM|Passenger of special construction vehicle injured in traffic accident, subsequent encounter|Passenger of special construction vehicle injured in traffic accident, subsequent encounter +C2898549|T037|AB|V85.1XXS|ICD10CM|Pasngr of special construct vehicle injured in traf, sequela|Pasngr of special construct vehicle injured in traf, sequela +C2898549|T037|PT|V85.1XXS|ICD10CM|Passenger of special construction vehicle injured in traffic accident, sequela|Passenger of special construction vehicle injured in traffic accident, sequela +C0477199|T037|PT|V85.2|ICD10|Person on outside of special construction vehicle injured in traffic accident|Person on outside of special construction vehicle injured in traffic accident +C0477199|T037|HT|V85.2|ICD10CM|Person on outside of special construction vehicle injured in traffic accident|Person on outside of special construction vehicle injured in traffic accident +C0477199|T037|AB|V85.2|ICD10CM|Person outside special construction vehicle injured in traf|Person outside special construction vehicle injured in traf +C2898550|T037|PT|V85.2XXA|ICD10CM|Person on outside of special construction vehicle injured in traffic accident, initial encounter|Person on outside of special construction vehicle injured in traffic accident, initial encounter +C2898550|T037|AB|V85.2XXA|ICD10CM|Person outside special construct vehicle inj in traf, init|Person outside special construct vehicle inj in traf, init +C2898551|T037|PT|V85.2XXD|ICD10CM|Person on outside of special construction vehicle injured in traffic accident, subsequent encounter|Person on outside of special construction vehicle injured in traffic accident, subsequent encounter +C2898551|T037|AB|V85.2XXD|ICD10CM|Person outside special construct vehicle inj in traf, subs|Person outside special construct vehicle inj in traf, subs +C2898552|T037|PT|V85.2XXS|ICD10CM|Person on outside of special construction vehicle injured in traffic accident, sequela|Person on outside of special construction vehicle injured in traffic accident, sequela +C2898552|T037|AB|V85.2XXS|ICD10CM|Person outsd special construct vehicle inj in traf, sequela|Person outsd special construct vehicle inj in traf, sequela +C0477200|T037|AB|V85.3|ICD10CM|Occup of special construction vehicle injured in traf|Occup of special construction vehicle injured in traf +C0477200|T037|HT|V85.3|ICD10CM|Unspecified occupant of special construction vehicle injured in traffic accident|Unspecified occupant of special construction vehicle injured in traffic accident +C0477200|T037|PT|V85.3|ICD10|Unspecified occupant of special construction vehicle injured in traffic accident|Unspecified occupant of special construction vehicle injured in traffic accident +C2898553|T037|AB|V85.3XXA|ICD10CM|Occup of special construction vehicle injured in traf, init|Occup of special construction vehicle injured in traf, init +C2898553|T037|PT|V85.3XXA|ICD10CM|Unspecified occupant of special construction vehicle injured in traffic accident, initial encounter|Unspecified occupant of special construction vehicle injured in traffic accident, initial encounter +C2898554|T037|AB|V85.3XXD|ICD10CM|Occup of special construction vehicle injured in traf, subs|Occup of special construction vehicle injured in traf, subs +C2898555|T037|AB|V85.3XXS|ICD10CM|Occup of special construct vehicle injured in traf, sequela|Occup of special construct vehicle injured in traf, sequela +C2898555|T037|PT|V85.3XXS|ICD10CM|Unspecified occupant of special construction vehicle injured in traffic accident, sequela|Unspecified occupant of special construction vehicle injured in traffic accident, sequela +C0477201|T037|AB|V85.4|ICD10CM|Person injured wh brd/alit from special construction vehicle|Person injured wh brd/alit from special construction vehicle +C0477201|T037|HT|V85.4|ICD10CM|Person injured while boarding or alighting from special construction vehicle|Person injured while boarding or alighting from special construction vehicle +C0477201|T037|PT|V85.4|ICD10|Person injured while boarding or alighting from special construction vehicle|Person injured while boarding or alighting from special construction vehicle +C2898556|T037|AB|V85.4XXA|ICD10CM|Person inj wh brd/alit from special construct vehicle, init|Person inj wh brd/alit from special construct vehicle, init +C2898556|T037|PT|V85.4XXA|ICD10CM|Person injured while boarding or alighting from special construction vehicle, initial encounter|Person injured while boarding or alighting from special construction vehicle, initial encounter +C2898557|T037|AB|V85.4XXD|ICD10CM|Person inj wh brd/alit from special construct vehicle, subs|Person inj wh brd/alit from special construct vehicle, subs +C2898557|T037|PT|V85.4XXD|ICD10CM|Person injured while boarding or alighting from special construction vehicle, subsequent encounter|Person injured while boarding or alighting from special construction vehicle, subsequent encounter +C2898558|T037|AB|V85.4XXS|ICD10CM|Person inj wh brd/alit from special construct vehicle, sqla|Person inj wh brd/alit from special construct vehicle, sqla +C2898558|T037|PT|V85.4XXS|ICD10CM|Person injured while boarding or alighting from special construction vehicle, sequela|Person injured while boarding or alighting from special construction vehicle, sequela +C0477202|T037|PT|V85.5|ICD10|Driver of special construction vehicle injured in nontraffic accident|Driver of special construction vehicle injured in nontraffic accident +C0477202|T037|HT|V85.5|ICD10CM|Driver of special construction vehicle injured in nontraffic accident|Driver of special construction vehicle injured in nontraffic accident +C0477202|T037|AB|V85.5|ICD10CM|Driver of special construction vehicle injured nontraf|Driver of special construction vehicle injured nontraf +C2898559|T037|PT|V85.5XXA|ICD10CM|Driver of special construction vehicle injured in nontraffic accident, initial encounter|Driver of special construction vehicle injured in nontraffic accident, initial encounter +C2898559|T037|AB|V85.5XXA|ICD10CM|Driver of special construction vehicle injured nontraf, init|Driver of special construction vehicle injured nontraf, init +C2898560|T037|PT|V85.5XXD|ICD10CM|Driver of special construction vehicle injured in nontraffic accident, subsequent encounter|Driver of special construction vehicle injured in nontraffic accident, subsequent encounter +C2898560|T037|AB|V85.5XXD|ICD10CM|Driver of special construction vehicle injured nontraf, subs|Driver of special construction vehicle injured nontraf, subs +C2898561|T037|AB|V85.5XXS|ICD10CM|Driver of special construct vehicle injured nontraf, sequela|Driver of special construct vehicle injured nontraf, sequela +C2898561|T037|PT|V85.5XXS|ICD10CM|Driver of special construction vehicle injured in nontraffic accident, sequela|Driver of special construction vehicle injured in nontraffic accident, sequela +C0477203|T037|HT|V85.6|ICD10CM|Passenger of special construction vehicle injured in nontraffic accident|Passenger of special construction vehicle injured in nontraffic accident +C0477203|T037|PT|V85.6|ICD10|Passenger of special construction vehicle injured in nontraffic accident|Passenger of special construction vehicle injured in nontraffic accident +C0477203|T037|AB|V85.6|ICD10CM|Passenger of special construction vehicle injured nontraf|Passenger of special construction vehicle injured nontraf +C2898562|T037|AB|V85.6XXA|ICD10CM|Passenger of special construct vehicle injured nontraf, init|Passenger of special construct vehicle injured nontraf, init +C2898562|T037|PT|V85.6XXA|ICD10CM|Passenger of special construction vehicle injured in nontraffic accident, initial encounter|Passenger of special construction vehicle injured in nontraffic accident, initial encounter +C2898563|T037|AB|V85.6XXD|ICD10CM|Passenger of special construct vehicle injured nontraf, subs|Passenger of special construct vehicle injured nontraf, subs +C2898563|T037|PT|V85.6XXD|ICD10CM|Passenger of special construction vehicle injured in nontraffic accident, subsequent encounter|Passenger of special construction vehicle injured in nontraffic accident, subsequent encounter +C2898564|T037|AB|V85.6XXS|ICD10CM|Pasngr of special construct vehicle injured nontraf, sequela|Pasngr of special construct vehicle injured nontraf, sequela +C2898564|T037|PT|V85.6XXS|ICD10CM|Passenger of special construction vehicle injured in nontraffic accident, sequela|Passenger of special construction vehicle injured in nontraffic accident, sequela +C0477204|T037|HT|V85.7|ICD10CM|Person on outside of special construction vehicle injured in nontraffic accident|Person on outside of special construction vehicle injured in nontraffic accident +C0477204|T037|PT|V85.7|ICD10|Person on outside of special construction vehicle injured in nontraffic accident|Person on outside of special construction vehicle injured in nontraffic accident +C0477204|T037|AB|V85.7|ICD10CM|Person outside special construction vehicle injured nontraf|Person outside special construction vehicle injured nontraf +C2898565|T037|PT|V85.7XXA|ICD10CM|Person on outside of special construction vehicle injured in nontraffic accident, initial encounter|Person on outside of special construction vehicle injured in nontraffic accident, initial encounter +C2898565|T037|AB|V85.7XXA|ICD10CM|Person outside special construct vehicle inj nontraf, init|Person outside special construct vehicle inj nontraf, init +C2898566|T037|AB|V85.7XXD|ICD10CM|Person outside special construct vehicle inj nontraf, subs|Person outside special construct vehicle inj nontraf, subs +C2898567|T037|PT|V85.7XXS|ICD10CM|Person on outside of special construction vehicle injured in nontraffic accident, sequela|Person on outside of special construction vehicle injured in nontraffic accident, sequela +C2898567|T037|AB|V85.7XXS|ICD10CM|Person outsd special construct vehicle inj nontraf, sequela|Person outsd special construct vehicle inj nontraf, sequela +C0477205|T037|AB|V85.9|ICD10CM|Occup of special construction vehicle injured nontraf|Occup of special construction vehicle injured nontraf +C2898568|T037|ET|V85.9|ICD10CM|Special-construction-vehicle accident NOS|Special-construction-vehicle accident NOS +C0477205|T037|HT|V85.9|ICD10CM|Unspecified occupant of special construction vehicle injured in nontraffic accident|Unspecified occupant of special construction vehicle injured in nontraffic accident +C0477205|T037|PT|V85.9|ICD10|Unspecified occupant of special construction vehicle injured in nontraffic accident|Unspecified occupant of special construction vehicle injured in nontraffic accident +C2898569|T037|AB|V85.9XXA|ICD10CM|Occup of special construction vehicle injured nontraf, init|Occup of special construction vehicle injured nontraf, init +C2898570|T037|AB|V85.9XXD|ICD10CM|Occup of special construction vehicle injured nontraf, subs|Occup of special construction vehicle injured nontraf, subs +C2898571|T037|AB|V85.9XXS|ICD10CM|Occup of special construct vehicle injured nontraf, sequela|Occup of special construct vehicle injured nontraf, sequela +C2898571|T037|PT|V85.9XXS|ICD10CM|Unspecified occupant of special construction vehicle injured in nontraffic accident, sequela|Unspecified occupant of special construction vehicle injured in nontraffic accident, sequela +C2898572|T037|AB|V86|ICD10CM|Occ off-road veh injured transp acc|Occ off-road veh injured transp acc +C2898572|T037|HT|V86|ICD10CM|Occupant of special all-terrain or other off-road motor vehicle, injured in transport accident|Occupant of special all-terrain or other off-road motor vehicle, injured in transport accident +C0477207|T037|PT|V86.0|ICD10|Driver of all-terrain or other off-road motor vehicle injured in traffic accident|Driver of all-terrain or other off-road motor vehicle injured in traffic accident +C2898573|T037|HT|V86.0|ICD10CM|Driver of special all-terrain or other off-road motor vehicle injured in traffic accident|Driver of special all-terrain or other off-road motor vehicle injured in traffic accident +C2898573|T037|AB|V86.0|ICD10CM|Driver off-road veh injured in traffic accident|Driver off-road veh injured in traffic accident +C2898574|T037|AB|V86.01|ICD10CM|Driver of amblnc/fire eng injured in traffic accident|Driver of amblnc/fire eng injured in traffic accident +C2898574|T037|HT|V86.01|ICD10CM|Driver of ambulance or fire engine injured in traffic accident|Driver of ambulance or fire engine injured in traffic accident +C2898575|T037|AB|V86.01XA|ICD10CM|Driver of amblnc/fire eng injured in traffic accident, init|Driver of amblnc/fire eng injured in traffic accident, init +C2898575|T037|PT|V86.01XA|ICD10CM|Driver of ambulance or fire engine injured in traffic accident, initial encounter|Driver of ambulance or fire engine injured in traffic accident, initial encounter +C2898576|T037|AB|V86.01XD|ICD10CM|Driver of amblnc/fire eng injured in traffic accident, subs|Driver of amblnc/fire eng injured in traffic accident, subs +C2898576|T037|PT|V86.01XD|ICD10CM|Driver of ambulance or fire engine injured in traffic accident, subsequent encounter|Driver of ambulance or fire engine injured in traffic accident, subsequent encounter +C2898577|T037|AB|V86.01XS|ICD10CM|Driver of amblnc/fire eng injured in traf, sequela|Driver of amblnc/fire eng injured in traf, sequela +C2898577|T037|PT|V86.01XS|ICD10CM|Driver of ambulance or fire engine injured in traffic accident, sequela|Driver of ambulance or fire engine injured in traffic accident, sequela +C2898578|T037|AB|V86.02|ICD10CM|Driver of snowmobile injured in traffic accident|Driver of snowmobile injured in traffic accident +C2898578|T037|HT|V86.02|ICD10CM|Driver of snowmobile injured in traffic accident|Driver of snowmobile injured in traffic accident +C2898579|T037|AB|V86.02XA|ICD10CM|Driver of snowmobile injured in traffic accident, init|Driver of snowmobile injured in traffic accident, init +C2898579|T037|PT|V86.02XA|ICD10CM|Driver of snowmobile injured in traffic accident, initial encounter|Driver of snowmobile injured in traffic accident, initial encounter +C2898580|T037|AB|V86.02XD|ICD10CM|Driver of snowmobile injured in traffic accident, subs|Driver of snowmobile injured in traffic accident, subs +C2898580|T037|PT|V86.02XD|ICD10CM|Driver of snowmobile injured in traffic accident, subsequent encounter|Driver of snowmobile injured in traffic accident, subsequent encounter +C2898581|T037|AB|V86.02XS|ICD10CM|Driver of snowmobile injured in traffic accident, sequela|Driver of snowmobile injured in traffic accident, sequela +C2898581|T037|PT|V86.02XS|ICD10CM|Driver of snowmobile injured in traffic accident, sequela|Driver of snowmobile injured in traffic accident, sequela +C2898582|T037|AB|V86.03|ICD10CM|Driver of dune buggy injured in traffic accident|Driver of dune buggy injured in traffic accident +C2898582|T037|HT|V86.03|ICD10CM|Driver of dune buggy injured in traffic accident|Driver of dune buggy injured in traffic accident +C2898583|T037|AB|V86.03XA|ICD10CM|Driver of dune buggy injured in traffic accident, init|Driver of dune buggy injured in traffic accident, init +C2898583|T037|PT|V86.03XA|ICD10CM|Driver of dune buggy injured in traffic accident, initial encounter|Driver of dune buggy injured in traffic accident, initial encounter +C2898584|T037|AB|V86.03XD|ICD10CM|Driver of dune buggy injured in traffic accident, subs|Driver of dune buggy injured in traffic accident, subs +C2898584|T037|PT|V86.03XD|ICD10CM|Driver of dune buggy injured in traffic accident, subsequent encounter|Driver of dune buggy injured in traffic accident, subsequent encounter +C2898585|T037|AB|V86.03XS|ICD10CM|Driver of dune buggy injured in traffic accident, sequela|Driver of dune buggy injured in traffic accident, sequela +C2898585|T037|PT|V86.03XS|ICD10CM|Driver of dune buggy injured in traffic accident, sequela|Driver of dune buggy injured in traffic accident, sequela +C2898586|T037|AB|V86.04|ICD10CM|Driver of military vehicle injured in traffic accident|Driver of military vehicle injured in traffic accident +C2898586|T037|HT|V86.04|ICD10CM|Driver of military vehicle injured in traffic accident|Driver of military vehicle injured in traffic accident +C2898587|T037|AB|V86.04XA|ICD10CM|Driver of military vehicle injured in traffic accident, init|Driver of military vehicle injured in traffic accident, init +C2898587|T037|PT|V86.04XA|ICD10CM|Driver of military vehicle injured in traffic accident, initial encounter|Driver of military vehicle injured in traffic accident, initial encounter +C2898588|T037|AB|V86.04XD|ICD10CM|Driver of military vehicle injured in traffic accident, subs|Driver of military vehicle injured in traffic accident, subs +C2898588|T037|PT|V86.04XD|ICD10CM|Driver of military vehicle injured in traffic accident, subsequent encounter|Driver of military vehicle injured in traffic accident, subsequent encounter +C2898589|T037|AB|V86.04XS|ICD10CM|Driver of military vehicle injured in traf, sequela|Driver of military vehicle injured in traf, sequela +C2898589|T037|PT|V86.04XS|ICD10CM|Driver of military vehicle injured in traffic accident, sequela|Driver of military vehicle injured in traffic accident, sequela +C4509471|T037|HT|V86.05|ICD10CM|Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident|Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident +C4509471|T037|AB|V86.05|ICD10CM|Driver of 3- or 4- wheeled ATV injured in traffic accident|Driver of 3- or 4- wheeled ATV injured in traffic accident +C4509472|T037|PT|V86.05XA|ICD10CM|Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, initial encounter|Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, initial encounter +C4509472|T037|AB|V86.05XA|ICD10CM|Driver of 3- or 4- wheeled ATV injured in traf, init|Driver of 3- or 4- wheeled ATV injured in traf, init +C4509473|T037|AB|V86.05XD|ICD10CM|Driver of 3- or 4- wheeled ATV injured in traf, subs|Driver of 3- or 4- wheeled ATV injured in traf, subs +C4509474|T037|PT|V86.05XS|ICD10CM|Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, sequela|Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, sequela +C4509474|T037|AB|V86.05XS|ICD10CM|Driver of 3- or 4- wheeled ATV injured in traf, sequela|Driver of 3- or 4- wheeled ATV injured in traf, sequela +C4509475|T037|AB|V86.06|ICD10CM|Driver of dirt bike or motor/cross bike injured in traf|Driver of dirt bike or motor/cross bike injured in traf +C4509475|T037|HT|V86.06|ICD10CM|Driver of dirt bike or motor/cross bike injured in traffic accident|Driver of dirt bike or motor/cross bike injured in traffic accident +C4509476|T037|AB|V86.06XA|ICD10CM|Driver of dirt bike or motor/cross bike inj in traf, init|Driver of dirt bike or motor/cross bike inj in traf, init +C4509476|T037|PT|V86.06XA|ICD10CM|Driver of dirt bike or motor/cross bike injured in traffic accident, initial encounter|Driver of dirt bike or motor/cross bike injured in traffic accident, initial encounter +C4509477|T037|AB|V86.06XD|ICD10CM|Driver of dirt bike or motor/cross bike inj in traf, subs|Driver of dirt bike or motor/cross bike inj in traf, subs +C4509477|T037|PT|V86.06XD|ICD10CM|Driver of dirt bike or motor/cross bike injured in traffic accident, subsequent encounter|Driver of dirt bike or motor/cross bike injured in traffic accident, subsequent encounter +C4509478|T037|AB|V86.06XS|ICD10CM|Driver of dirt bike or motor/cross bike inj in traf, sequela|Driver of dirt bike or motor/cross bike inj in traf, sequela +C4509478|T037|PT|V86.06XS|ICD10CM|Driver of dirt bike or motor/cross bike injured in traffic accident, sequela|Driver of dirt bike or motor/cross bike injured in traffic accident, sequela +C2898591|T037|ET|V86.09|ICD10CM|Driver of go cart injured in traffic accident|Driver of go cart injured in traffic accident +C2898592|T037|ET|V86.09|ICD10CM|Driver of golf cart injured in traffic accident|Driver of golf cart injured in traffic accident +C2898593|T037|AB|V86.09|ICD10CM|Driver of oth sp off-rd mv injured in traffic accident|Driver of oth sp off-rd mv injured in traffic accident +C2898593|T037|HT|V86.09|ICD10CM|Driver of other special all-terrain or other off-road motor vehicle injured in traffic accident|Driver of other special all-terrain or other off-road motor vehicle injured in traffic accident +C2977238|T037|AB|V86.09XA|ICD10CM|Driver of oth sp off-rd mv injured in traffic accident, init|Driver of oth sp off-rd mv injured in traffic accident, init +C2977239|T037|AB|V86.09XD|ICD10CM|Driver of oth sp off-rd mv injured in traffic accident, subs|Driver of oth sp off-rd mv injured in traffic accident, subs +C2977240|T037|AB|V86.09XS|ICD10CM|Driver of sp off-rd mv injured in traffic accident, sequela|Driver of sp off-rd mv injured in traffic accident, sequela +C0477208|T037|PT|V86.1|ICD10|Passenger of all-terrain or other off-road motor vehicle injured in traffic accident|Passenger of all-terrain or other off-road motor vehicle injured in traffic accident +C2898597|T037|HT|V86.1|ICD10CM|Passenger of special all-terrain or other off-road motor vehicle injured in traffic accident|Passenger of special all-terrain or other off-road motor vehicle injured in traffic accident +C2898597|T037|AB|V86.1|ICD10CM|Passngr off-road veh injured in traffic accident|Passngr off-road veh injured in traffic accident +C2898598|T037|AB|V86.11|ICD10CM|Passenger of amblnc/fire eng injured in traffic accident|Passenger of amblnc/fire eng injured in traffic accident +C2898598|T037|HT|V86.11|ICD10CM|Passenger of ambulance or fire engine injured in traffic accident|Passenger of ambulance or fire engine injured in traffic accident +C2898599|T037|AB|V86.11XA|ICD10CM|Passenger of amblnc/fire eng injured in traf, init|Passenger of amblnc/fire eng injured in traf, init +C2898599|T037|PT|V86.11XA|ICD10CM|Passenger of ambulance or fire engine injured in traffic accident, initial encounter|Passenger of ambulance or fire engine injured in traffic accident, initial encounter +C2898600|T037|AB|V86.11XD|ICD10CM|Passenger of amblnc/fire eng injured in traf, subs|Passenger of amblnc/fire eng injured in traf, subs +C2898600|T037|PT|V86.11XD|ICD10CM|Passenger of ambulance or fire engine injured in traffic accident, subsequent encounter|Passenger of ambulance or fire engine injured in traffic accident, subsequent encounter +C2898601|T037|AB|V86.11XS|ICD10CM|Passenger of amblnc/fire eng injured in traf, sequela|Passenger of amblnc/fire eng injured in traf, sequela +C2898601|T037|PT|V86.11XS|ICD10CM|Passenger of ambulance or fire engine injured in traffic accident, sequela|Passenger of ambulance or fire engine injured in traffic accident, sequela +C2898602|T037|AB|V86.12|ICD10CM|Passenger of snowmobile injured in traffic accident|Passenger of snowmobile injured in traffic accident +C2898602|T037|HT|V86.12|ICD10CM|Passenger of snowmobile injured in traffic accident|Passenger of snowmobile injured in traffic accident +C2898603|T037|AB|V86.12XA|ICD10CM|Passenger of snowmobile injured in traffic accident, init|Passenger of snowmobile injured in traffic accident, init +C2898603|T037|PT|V86.12XA|ICD10CM|Passenger of snowmobile injured in traffic accident, initial encounter|Passenger of snowmobile injured in traffic accident, initial encounter +C2898604|T037|AB|V86.12XD|ICD10CM|Passenger of snowmobile injured in traffic accident, subs|Passenger of snowmobile injured in traffic accident, subs +C2898604|T037|PT|V86.12XD|ICD10CM|Passenger of snowmobile injured in traffic accident, subsequent encounter|Passenger of snowmobile injured in traffic accident, subsequent encounter +C2898605|T037|AB|V86.12XS|ICD10CM|Passenger of snowmobile injured in traffic accident, sequela|Passenger of snowmobile injured in traffic accident, sequela +C2898605|T037|PT|V86.12XS|ICD10CM|Passenger of snowmobile injured in traffic accident, sequela|Passenger of snowmobile injured in traffic accident, sequela +C2898606|T037|AB|V86.13|ICD10CM|Passenger of dune buggy injured in traffic accident|Passenger of dune buggy injured in traffic accident +C2898606|T037|HT|V86.13|ICD10CM|Passenger of dune buggy injured in traffic accident|Passenger of dune buggy injured in traffic accident +C2898607|T037|AB|V86.13XA|ICD10CM|Passenger of dune buggy injured in traffic accident, init|Passenger of dune buggy injured in traffic accident, init +C2898607|T037|PT|V86.13XA|ICD10CM|Passenger of dune buggy injured in traffic accident, initial encounter|Passenger of dune buggy injured in traffic accident, initial encounter +C2898608|T037|AB|V86.13XD|ICD10CM|Passenger of dune buggy injured in traffic accident, subs|Passenger of dune buggy injured in traffic accident, subs +C2898608|T037|PT|V86.13XD|ICD10CM|Passenger of dune buggy injured in traffic accident, subsequent encounter|Passenger of dune buggy injured in traffic accident, subsequent encounter +C2898609|T037|AB|V86.13XS|ICD10CM|Passenger of dune buggy injured in traffic accident, sequela|Passenger of dune buggy injured in traffic accident, sequela +C2898609|T037|PT|V86.13XS|ICD10CM|Passenger of dune buggy injured in traffic accident, sequela|Passenger of dune buggy injured in traffic accident, sequela +C2898610|T037|AB|V86.14|ICD10CM|Passenger of military vehicle injured in traffic accident|Passenger of military vehicle injured in traffic accident +C2898610|T037|HT|V86.14|ICD10CM|Passenger of military vehicle injured in traffic accident|Passenger of military vehicle injured in traffic accident +C2898611|T037|AB|V86.14XA|ICD10CM|Passenger of military vehicle injured in traf, init|Passenger of military vehicle injured in traf, init +C2898611|T037|PT|V86.14XA|ICD10CM|Passenger of military vehicle injured in traffic accident, initial encounter|Passenger of military vehicle injured in traffic accident, initial encounter +C2898612|T037|AB|V86.14XD|ICD10CM|Passenger of military vehicle injured in traf, subs|Passenger of military vehicle injured in traf, subs +C2898612|T037|PT|V86.14XD|ICD10CM|Passenger of military vehicle injured in traffic accident, subsequent encounter|Passenger of military vehicle injured in traffic accident, subsequent encounter +C2898613|T037|AB|V86.14XS|ICD10CM|Passenger of military vehicle injured in traf, sequela|Passenger of military vehicle injured in traf, sequela +C2898613|T037|PT|V86.14XS|ICD10CM|Passenger of military vehicle injured in traffic accident, sequela|Passenger of military vehicle injured in traffic accident, sequela +C4509479|T037|HT|V86.15|ICD10CM|Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident|Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident +C4509479|T037|AB|V86.15|ICD10CM|Passenger of 3- or 4- wheeled ATV injured in traf|Passenger of 3- or 4- wheeled ATV injured in traf +C4509480|T037|AB|V86.15XA|ICD10CM|Passenger of 3- or 4- wheeled ATV injured in traf, init|Passenger of 3- or 4- wheeled ATV injured in traf, init +C4509481|T037|AB|V86.15XD|ICD10CM|Passenger of 3- or 4- wheeled ATV injured in traf, subs|Passenger of 3- or 4- wheeled ATV injured in traf, subs +C4509482|T037|PT|V86.15XS|ICD10CM|Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, sequela|Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, sequela +C4509482|T037|AB|V86.15XS|ICD10CM|Passenger of 3- or 4- wheeled ATV injured in traf, sequela|Passenger of 3- or 4- wheeled ATV injured in traf, sequela +C4509483|T037|AB|V86.16|ICD10CM|Passenger of dirt bike or motor/cross bike injured in traf|Passenger of dirt bike or motor/cross bike injured in traf +C4509483|T037|HT|V86.16|ICD10CM|Passenger of dirt bike or motor/cross bike injured in traffic accident|Passenger of dirt bike or motor/cross bike injured in traffic accident +C4509484|T037|AB|V86.16XA|ICD10CM|Pasngr of dirt bike or motor/cross bike inj in traf, init|Pasngr of dirt bike or motor/cross bike inj in traf, init +C4509484|T037|PT|V86.16XA|ICD10CM|Passenger of dirt bike or motor/cross bike injured in traffic accident, initial encounter|Passenger of dirt bike or motor/cross bike injured in traffic accident, initial encounter +C4509485|T037|AB|V86.16XD|ICD10CM|Pasngr of dirt bike or motor/cross bike inj in traf, subs|Pasngr of dirt bike or motor/cross bike inj in traf, subs +C4509485|T037|PT|V86.16XD|ICD10CM|Passenger of dirt bike or motor/cross bike injured in traffic accident, subsequent encounter|Passenger of dirt bike or motor/cross bike injured in traffic accident, subsequent encounter +C4509486|T037|AB|V86.16XS|ICD10CM|Pasngr of dirt bike or motor/cross bike inj in traf, sequela|Pasngr of dirt bike or motor/cross bike inj in traf, sequela +C4509486|T037|PT|V86.16XS|ICD10CM|Passenger of dirt bike or motor/cross bike injured in traffic accident, sequela|Passenger of dirt bike or motor/cross bike injured in traffic accident, sequela +C2898615|T037|ET|V86.19|ICD10CM|Passenger of go cart injured in traffic accident|Passenger of go cart injured in traffic accident +C2898616|T037|ET|V86.19|ICD10CM|Passenger of golf cart injured in traffic accident|Passenger of golf cart injured in traffic accident +C2898617|T037|AB|V86.19|ICD10CM|Passenger of oth sp off-rd mv injured in traffic accident|Passenger of oth sp off-rd mv injured in traffic accident +C2898617|T037|HT|V86.19|ICD10CM|Passenger of other special all-terrain or other off-road motor vehicle injured in traffic accident|Passenger of other special all-terrain or other off-road motor vehicle injured in traffic accident +C2898618|T037|AB|V86.19XA|ICD10CM|Passenger of sp off-rd mv injured in traffic accident, init|Passenger of sp off-rd mv injured in traffic accident, init +C2898619|T037|AB|V86.19XD|ICD10CM|Passenger of sp off-rd mv injured in traffic accident, subs|Passenger of sp off-rd mv injured in traffic accident, subs +C2898620|T037|AB|V86.19XS|ICD10CM|Passenger of sp off-rd mv injured in traf, sequela|Passenger of sp off-rd mv injured in traf, sequela +C2898621|T037|AB|V86.2|ICD10CM|Persn outside off-road veh injured in traffic accident|Persn outside off-road veh injured in traffic accident +C0477209|T037|PT|V86.2|ICD10|Person on outside of all-terrain or other off-road motor vehicle injured in traffic accident|Person on outside of all-terrain or other off-road motor vehicle injured in traffic accident +C2898621|T037|HT|V86.2|ICD10CM|Person on outside of special all-terrain or other off-road motor vehicle injured in traffic accident|Person on outside of special all-terrain or other off-road motor vehicle injured in traffic accident +C2898622|T037|AB|V86.21|ICD10CM|Person on outside of amblnc/fire eng injured in traf|Person on outside of amblnc/fire eng injured in traf +C2898622|T037|HT|V86.21|ICD10CM|Person on outside of ambulance or fire engine injured in traffic accident|Person on outside of ambulance or fire engine injured in traffic accident +C2898623|T037|AB|V86.21XA|ICD10CM|Person on outside of amblnc/fire eng injured in traf, init|Person on outside of amblnc/fire eng injured in traf, init +C2898623|T037|PT|V86.21XA|ICD10CM|Person on outside of ambulance or fire engine injured in traffic accident, initial encounter|Person on outside of ambulance or fire engine injured in traffic accident, initial encounter +C2898624|T037|AB|V86.21XD|ICD10CM|Person on outside of amblnc/fire eng injured in traf, subs|Person on outside of amblnc/fire eng injured in traf, subs +C2898624|T037|PT|V86.21XD|ICD10CM|Person on outside of ambulance or fire engine injured in traffic accident, subsequent encounter|Person on outside of ambulance or fire engine injured in traffic accident, subsequent encounter +C2898625|T037|PT|V86.21XS|ICD10CM|Person on outside of ambulance or fire engine injured in traffic accident, sequela|Person on outside of ambulance or fire engine injured in traffic accident, sequela +C2898625|T037|AB|V86.21XS|ICD10CM|Person outside amblnc/fire eng injured in traf, sequela|Person outside amblnc/fire eng injured in traf, sequela +C2898626|T037|AB|V86.22|ICD10CM|Person on outside of snowmobile injured in traffic accident|Person on outside of snowmobile injured in traffic accident +C2898626|T037|HT|V86.22|ICD10CM|Person on outside of snowmobile injured in traffic accident|Person on outside of snowmobile injured in traffic accident +C2898627|T037|AB|V86.22XA|ICD10CM|Person on outside of snowmobile injured in traf, init|Person on outside of snowmobile injured in traf, init +C2898627|T037|PT|V86.22XA|ICD10CM|Person on outside of snowmobile injured in traffic accident, initial encounter|Person on outside of snowmobile injured in traffic accident, initial encounter +C2898628|T037|AB|V86.22XD|ICD10CM|Person on outside of snowmobile injured in traf, subs|Person on outside of snowmobile injured in traf, subs +C2898628|T037|PT|V86.22XD|ICD10CM|Person on outside of snowmobile injured in traffic accident, subsequent encounter|Person on outside of snowmobile injured in traffic accident, subsequent encounter +C2898629|T037|AB|V86.22XS|ICD10CM|Person on outside of snowmobile injured in traf, sequela|Person on outside of snowmobile injured in traf, sequela +C2898629|T037|PT|V86.22XS|ICD10CM|Person on outside of snowmobile injured in traffic accident, sequela|Person on outside of snowmobile injured in traffic accident, sequela +C2898630|T037|AB|V86.23|ICD10CM|Person on outside of dune buggy injured in traffic accident|Person on outside of dune buggy injured in traffic accident +C2898630|T037|HT|V86.23|ICD10CM|Person on outside of dune buggy injured in traffic accident|Person on outside of dune buggy injured in traffic accident +C2898631|T037|AB|V86.23XA|ICD10CM|Person on outside of dune buggy injured in traf, init|Person on outside of dune buggy injured in traf, init +C2898631|T037|PT|V86.23XA|ICD10CM|Person on outside of dune buggy injured in traffic accident, initial encounter|Person on outside of dune buggy injured in traffic accident, initial encounter +C2898632|T037|AB|V86.23XD|ICD10CM|Person on outside of dune buggy injured in traf, subs|Person on outside of dune buggy injured in traf, subs +C2898632|T037|PT|V86.23XD|ICD10CM|Person on outside of dune buggy injured in traffic accident, subsequent encounter|Person on outside of dune buggy injured in traffic accident, subsequent encounter +C2898633|T037|AB|V86.23XS|ICD10CM|Person on outside of dune buggy injured in traf, sequela|Person on outside of dune buggy injured in traf, sequela +C2898633|T037|PT|V86.23XS|ICD10CM|Person on outside of dune buggy injured in traffic accident, sequela|Person on outside of dune buggy injured in traffic accident, sequela +C2898634|T037|AB|V86.24|ICD10CM|Person on outside of military vehicle injured in traf|Person on outside of military vehicle injured in traf +C2898634|T037|HT|V86.24|ICD10CM|Person on outside of military vehicle injured in traffic accident|Person on outside of military vehicle injured in traffic accident +C2898635|T037|AB|V86.24XA|ICD10CM|Person on outside of military vehicle injured in traf, init|Person on outside of military vehicle injured in traf, init +C2898635|T037|PT|V86.24XA|ICD10CM|Person on outside of military vehicle injured in traffic accident, initial encounter|Person on outside of military vehicle injured in traffic accident, initial encounter +C2898636|T037|AB|V86.24XD|ICD10CM|Person on outside of military vehicle injured in traf, subs|Person on outside of military vehicle injured in traf, subs +C2898636|T037|PT|V86.24XD|ICD10CM|Person on outside of military vehicle injured in traffic accident, subsequent encounter|Person on outside of military vehicle injured in traffic accident, subsequent encounter +C2898637|T037|PT|V86.24XS|ICD10CM|Person on outside of military vehicle injured in traffic accident, sequela|Person on outside of military vehicle injured in traffic accident, sequela +C2898637|T037|AB|V86.24XS|ICD10CM|Person outside military vehicle injured in traf, sequela|Person outside military vehicle injured in traf, sequela +C4509487|T037|HT|V86.25|ICD10CM|Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident|Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident +C4509487|T037|AB|V86.25|ICD10CM|Person on outside of 3- or 4- wheeled ATV injured in traf|Person on outside of 3- or 4- wheeled ATV injured in traf +C4509488|T037|AB|V86.25XA|ICD10CM|Person outside 3- or 4- wheeled ATV injured in traf, init|Person outside 3- or 4- wheeled ATV injured in traf, init +C4509489|T037|AB|V86.25XD|ICD10CM|Person outside 3- or 4- wheeled ATV injured in traf, subs|Person outside 3- or 4- wheeled ATV injured in traf, subs +C4509490|T037|PT|V86.25XS|ICD10CM|Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, sequela|Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, sequela +C4509490|T037|AB|V86.25XS|ICD10CM|Person outside 3- or 4- wheeled ATV injured in traf, sequela|Person outside 3- or 4- wheeled ATV injured in traf, sequela +C4509491|T037|HT|V86.26|ICD10CM|Person on outside of dirt bike or motor/cross bike injured in traffic accident|Person on outside of dirt bike or motor/cross bike injured in traffic accident +C4509491|T037|AB|V86.26|ICD10CM|Person outside dirt bike or motor/cross bike injured in traf|Person outside dirt bike or motor/cross bike injured in traf +C4509492|T037|PT|V86.26XA|ICD10CM|Person on outside of dirt bike or motor/cross bike injured in traffic accident, initial encounter|Person on outside of dirt bike or motor/cross bike injured in traffic accident, initial encounter +C4509492|T037|AB|V86.26XA|ICD10CM|Person outsd dirt bike or motor/cross bike inj in traf, init|Person outsd dirt bike or motor/cross bike inj in traf, init +C4509493|T037|PT|V86.26XD|ICD10CM|Person on outside of dirt bike or motor/cross bike injured in traffic accident, subsequent encounter|Person on outside of dirt bike or motor/cross bike injured in traffic accident, subsequent encounter +C4509493|T037|AB|V86.26XD|ICD10CM|Person outsd dirt bike or motor/cross bike inj in traf, subs|Person outsd dirt bike or motor/cross bike inj in traf, subs +C4509494|T037|PT|V86.26XS|ICD10CM|Person on outside of dirt bike or motor/cross bike injured in traffic accident, sequela|Person on outside of dirt bike or motor/cross bike injured in traffic accident, sequela +C4509494|T037|AB|V86.26XS|ICD10CM|Person outsd dirt bike or motor/cross bike inj in traf, sqla|Person outsd dirt bike or motor/cross bike inj in traf, sqla +C2898639|T037|ET|V86.29|ICD10CM|Person on outside of go cart in traffic accident|Person on outside of go cart in traffic accident +C2898640|T037|ET|V86.29|ICD10CM|Person on outside of golf cart injured in traffic accident|Person on outside of golf cart injured in traffic accident +C2898641|T037|AB|V86.29|ICD10CM|Person on outside of sp off-rd mv injured in traf|Person on outside of sp off-rd mv injured in traf +C2977241|T037|AB|V86.29XA|ICD10CM|Person on outside of sp off-rd mv injured in traf, init|Person on outside of sp off-rd mv injured in traf, init +C2977242|T037|AB|V86.29XD|ICD10CM|Person on outside of sp off-rd mv injured in traf, subs|Person on outside of sp off-rd mv injured in traf, subs +C2977243|T037|AB|V86.29XS|ICD10CM|Person on outside of sp off-rd mv injured in traf, sequela|Person on outside of sp off-rd mv injured in traf, sequela +C2898645|T037|AB|V86.3|ICD10CM|Unspec occup off-road veh injured in traffic accident|Unspec occup off-road veh injured in traffic accident +C0496492|T037|PT|V86.3|ICD10|Unspecified occupant of all-terrain or other off-road motor vehicle injured in traffic accident|Unspecified occupant of all-terrain or other off-road motor vehicle injured in traffic accident +C2898646|T037|AB|V86.31|ICD10CM|Occup of amblnc/fire eng injured in traffic accident|Occup of amblnc/fire eng injured in traffic accident +C2898646|T037|HT|V86.31|ICD10CM|Unspecified occupant of ambulance or fire engine injured in traffic accident|Unspecified occupant of ambulance or fire engine injured in traffic accident +C2898647|T037|AB|V86.31XA|ICD10CM|Occup of amblnc/fire eng injured in traffic accident, init|Occup of amblnc/fire eng injured in traffic accident, init +C2898647|T037|PT|V86.31XA|ICD10CM|Unspecified occupant of ambulance or fire engine injured in traffic accident, initial encounter|Unspecified occupant of ambulance or fire engine injured in traffic accident, initial encounter +C2898648|T037|AB|V86.31XD|ICD10CM|Occup of amblnc/fire eng injured in traffic accident, subs|Occup of amblnc/fire eng injured in traffic accident, subs +C2898648|T037|PT|V86.31XD|ICD10CM|Unspecified occupant of ambulance or fire engine injured in traffic accident, subsequent encounter|Unspecified occupant of ambulance or fire engine injured in traffic accident, subsequent encounter +C2898649|T037|AB|V86.31XS|ICD10CM|Occup of amblnc/fire eng injured in traf, sequela|Occup of amblnc/fire eng injured in traf, sequela +C2898649|T037|PT|V86.31XS|ICD10CM|Unspecified occupant of ambulance or fire engine injured in traffic accident, sequela|Unspecified occupant of ambulance or fire engine injured in traffic accident, sequela +C2898650|T037|AB|V86.32|ICD10CM|Unsp occupant of snowmobile injured in traffic accident|Unsp occupant of snowmobile injured in traffic accident +C2898650|T037|HT|V86.32|ICD10CM|Unspecified occupant of snowmobile injured in traffic accident|Unspecified occupant of snowmobile injured in traffic accident +C2898651|T037|AB|V86.32XA|ICD10CM|Occup of snowmobile injured in traffic accident, init encntr|Occup of snowmobile injured in traffic accident, init encntr +C2898651|T037|PT|V86.32XA|ICD10CM|Unspecified occupant of snowmobile injured in traffic accident, initial encounter|Unspecified occupant of snowmobile injured in traffic accident, initial encounter +C2898652|T037|AB|V86.32XD|ICD10CM|Occup of snowmobile injured in traffic accident, subs encntr|Occup of snowmobile injured in traffic accident, subs encntr +C2898652|T037|PT|V86.32XD|ICD10CM|Unspecified occupant of snowmobile injured in traffic accident, subsequent encounter|Unspecified occupant of snowmobile injured in traffic accident, subsequent encounter +C2898653|T037|AB|V86.32XS|ICD10CM|Occup of snowmobile injured in traffic accident, sequela|Occup of snowmobile injured in traffic accident, sequela +C2898653|T037|PT|V86.32XS|ICD10CM|Unspecified occupant of snowmobile injured in traffic accident, sequela|Unspecified occupant of snowmobile injured in traffic accident, sequela +C2898654|T037|AB|V86.33|ICD10CM|Unsp occupant of dune buggy injured in traffic accident|Unsp occupant of dune buggy injured in traffic accident +C2898654|T037|HT|V86.33|ICD10CM|Unspecified occupant of dune buggy injured in traffic accident|Unspecified occupant of dune buggy injured in traffic accident +C2898655|T037|AB|V86.33XA|ICD10CM|Occup of dune buggy injured in traffic accident, init encntr|Occup of dune buggy injured in traffic accident, init encntr +C2898655|T037|PT|V86.33XA|ICD10CM|Unspecified occupant of dune buggy injured in traffic accident, initial encounter|Unspecified occupant of dune buggy injured in traffic accident, initial encounter +C2898656|T037|AB|V86.33XD|ICD10CM|Occup of dune buggy injured in traffic accident, subs encntr|Occup of dune buggy injured in traffic accident, subs encntr +C2898656|T037|PT|V86.33XD|ICD10CM|Unspecified occupant of dune buggy injured in traffic accident, subsequent encounter|Unspecified occupant of dune buggy injured in traffic accident, subsequent encounter +C2898657|T037|AB|V86.33XS|ICD10CM|Occup of dune buggy injured in traffic accident, sequela|Occup of dune buggy injured in traffic accident, sequela +C2898657|T037|PT|V86.33XS|ICD10CM|Unspecified occupant of dune buggy injured in traffic accident, sequela|Unspecified occupant of dune buggy injured in traffic accident, sequela +C2898658|T037|AB|V86.34|ICD10CM|Occup of military vehicle injured in traffic accident|Occup of military vehicle injured in traffic accident +C2898658|T037|HT|V86.34|ICD10CM|Unspecified occupant of military vehicle injured in traffic accident|Unspecified occupant of military vehicle injured in traffic accident +C2898659|T037|AB|V86.34XA|ICD10CM|Occup of military vehicle injured in traffic accident, init|Occup of military vehicle injured in traffic accident, init +C2898659|T037|PT|V86.34XA|ICD10CM|Unspecified occupant of military vehicle injured in traffic accident, initial encounter|Unspecified occupant of military vehicle injured in traffic accident, initial encounter +C2898660|T037|AB|V86.34XD|ICD10CM|Occup of military vehicle injured in traffic accident, subs|Occup of military vehicle injured in traffic accident, subs +C2898660|T037|PT|V86.34XD|ICD10CM|Unspecified occupant of military vehicle injured in traffic accident, subsequent encounter|Unspecified occupant of military vehicle injured in traffic accident, subsequent encounter +C2898661|T037|AB|V86.34XS|ICD10CM|Occup of military vehicle injured in traf, sequela|Occup of military vehicle injured in traf, sequela +C2898661|T037|PT|V86.34XS|ICD10CM|Unspecified occupant of military vehicle injured in traffic accident, sequela|Unspecified occupant of military vehicle injured in traffic accident, sequela +C4509495|T037|AB|V86.35|ICD10CM|Occup of 3- or 4- wheeled ATV injured in traffic accident|Occup of 3- or 4- wheeled ATV injured in traffic accident +C4509495|T037|HT|V86.35|ICD10CM|Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident|Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident +C4509496|T037|AB|V86.35XA|ICD10CM|Occup of 3- or 4- wheeled ATV injured in traf, init|Occup of 3- or 4- wheeled ATV injured in traf, init +C4509497|T037|AB|V86.35XD|ICD10CM|Occup of 3- or 4- wheeled ATV injured in traf, subs|Occup of 3- or 4- wheeled ATV injured in traf, subs +C4509498|T037|AB|V86.35XS|ICD10CM|Occup of 3- or 4- wheeled ATV injured in traf, sequela|Occup of 3- or 4- wheeled ATV injured in traf, sequela +C4509499|T037|AB|V86.36|ICD10CM|Occup of dirt bike or motor/cross bike injured in traf|Occup of dirt bike or motor/cross bike injured in traf +C4509499|T037|HT|V86.36|ICD10CM|Unspecified occupant of dirt bike or motor/cross bike injured in traffic accident|Unspecified occupant of dirt bike or motor/cross bike injured in traffic accident +C4509500|T037|AB|V86.36XA|ICD10CM|Occup of dirt bike or motor/cross bike injured in traf, init|Occup of dirt bike or motor/cross bike injured in traf, init +C4509500|T037|PT|V86.36XA|ICD10CM|Unspecified occupant of dirt bike or motor/cross bike injured in traffic accident, initial encounter|Unspecified occupant of dirt bike or motor/cross bike injured in traffic accident, initial encounter +C4509501|T037|AB|V86.36XD|ICD10CM|Occup of dirt bike or motor/cross bike injured in traf, subs|Occup of dirt bike or motor/cross bike injured in traf, subs +C4509502|T037|AB|V86.36XS|ICD10CM|Occup of dirt bike or motor/cross bike inj in traf, sequela|Occup of dirt bike or motor/cross bike inj in traf, sequela +C4509502|T037|PT|V86.36XS|ICD10CM|Unspecified occupant of dirt bike or motor/cross bike injured in traffic accident, sequela|Unspecified occupant of dirt bike or motor/cross bike injured in traffic accident, sequela +C2898665|T037|AB|V86.39|ICD10CM|Occup of oth sp off-rd mv injured in traffic accident|Occup of oth sp off-rd mv injured in traffic accident +C2898663|T037|ET|V86.39|ICD10CM|Unspecified occupant of go cart injured in traffic accident|Unspecified occupant of go cart injured in traffic accident +C2898664|T037|ET|V86.39|ICD10CM|Unspecified occupant of golf cart injured in traffic accident|Unspecified occupant of golf cart injured in traffic accident +C2977244|T037|AB|V86.39XA|ICD10CM|Occup of oth sp off-rd mv injured in traffic accident, init|Occup of oth sp off-rd mv injured in traffic accident, init +C2977245|T037|AB|V86.39XD|ICD10CM|Occup of oth sp off-rd mv injured in traffic accident, subs|Occup of oth sp off-rd mv injured in traffic accident, subs +C2977246|T037|AB|V86.39XS|ICD10CM|Occup of sp off-rd mv injured in traffic accident, sequela|Occup of sp off-rd mv injured in traffic accident, sequela +C2898669|T037|AB|V86.4|ICD10CM|Person injured boarding off-road veh|Person injured boarding off-road veh +C0477210|T037|PT|V86.4|ICD10|Person injured while boarding or alighting from all-terrain or other off-road motor vehicle|Person injured while boarding or alighting from all-terrain or other off-road motor vehicle +C2898669|T037|HT|V86.4|ICD10CM|Person injured while boarding or alighting from special all-terrain or other off-road motor vehicle|Person injured while boarding or alighting from special all-terrain or other off-road motor vehicle +C2898670|T037|AB|V86.41|ICD10CM|Person injured wh brd/alit from ambulance or fire engine|Person injured wh brd/alit from ambulance or fire engine +C2898670|T037|HT|V86.41|ICD10CM|Person injured while boarding or alighting from ambulance or fire engine|Person injured while boarding or alighting from ambulance or fire engine +C2898671|T037|AB|V86.41XA|ICD10CM|Person injured wh brd/alit from amblnc/fire eng, init|Person injured wh brd/alit from amblnc/fire eng, init +C2898671|T037|PT|V86.41XA|ICD10CM|Person injured while boarding or alighting from ambulance or fire engine, initial encounter|Person injured while boarding or alighting from ambulance or fire engine, initial encounter +C2898672|T037|AB|V86.41XD|ICD10CM|Person injured wh brd/alit from amblnc/fire eng, subs|Person injured wh brd/alit from amblnc/fire eng, subs +C2898672|T037|PT|V86.41XD|ICD10CM|Person injured while boarding or alighting from ambulance or fire engine, subsequent encounter|Person injured while boarding or alighting from ambulance or fire engine, subsequent encounter +C2898673|T037|AB|V86.41XS|ICD10CM|Person injured wh brd/alit from amblnc/fire eng, sequela|Person injured wh brd/alit from amblnc/fire eng, sequela +C2898673|T037|PT|V86.41XS|ICD10CM|Person injured while boarding or alighting from ambulance or fire engine, sequela|Person injured while boarding or alighting from ambulance or fire engine, sequela +C2898674|T037|AB|V86.42|ICD10CM|Person injured while boarding or alighting from snowmobile|Person injured while boarding or alighting from snowmobile +C2898674|T037|HT|V86.42|ICD10CM|Person injured while boarding or alighting from snowmobile|Person injured while boarding or alighting from snowmobile +C2898675|T037|AB|V86.42XA|ICD10CM|Person injured wh brd/alit from snowmobile, init|Person injured wh brd/alit from snowmobile, init +C2898675|T037|PT|V86.42XA|ICD10CM|Person injured while boarding or alighting from snowmobile, initial encounter|Person injured while boarding or alighting from snowmobile, initial encounter +C2898676|T037|AB|V86.42XD|ICD10CM|Person injured wh brd/alit from snowmobile, subs|Person injured wh brd/alit from snowmobile, subs +C2898676|T037|PT|V86.42XD|ICD10CM|Person injured while boarding or alighting from snowmobile, subsequent encounter|Person injured while boarding or alighting from snowmobile, subsequent encounter +C2898677|T037|AB|V86.42XS|ICD10CM|Person injured wh brd/alit from snowmobile, sequela|Person injured wh brd/alit from snowmobile, sequela +C2898677|T037|PT|V86.42XS|ICD10CM|Person injured while boarding or alighting from snowmobile, sequela|Person injured while boarding or alighting from snowmobile, sequela +C2898678|T037|AB|V86.43|ICD10CM|Person injured while boarding or alighting from dune buggy|Person injured while boarding or alighting from dune buggy +C2898678|T037|HT|V86.43|ICD10CM|Person injured while boarding or alighting from dune buggy|Person injured while boarding or alighting from dune buggy +C2898679|T037|AB|V86.43XA|ICD10CM|Person injured wh brd/alit from dune buggy, init|Person injured wh brd/alit from dune buggy, init +C2898679|T037|PT|V86.43XA|ICD10CM|Person injured while boarding or alighting from dune buggy, initial encounter|Person injured while boarding or alighting from dune buggy, initial encounter +C2898680|T037|AB|V86.43XD|ICD10CM|Person injured wh brd/alit from dune buggy, subs|Person injured wh brd/alit from dune buggy, subs +C2898680|T037|PT|V86.43XD|ICD10CM|Person injured while boarding or alighting from dune buggy, subsequent encounter|Person injured while boarding or alighting from dune buggy, subsequent encounter +C2898681|T037|AB|V86.43XS|ICD10CM|Person injured wh brd/alit from dune buggy, sequela|Person injured wh brd/alit from dune buggy, sequela +C2898681|T037|PT|V86.43XS|ICD10CM|Person injured while boarding or alighting from dune buggy, sequela|Person injured while boarding or alighting from dune buggy, sequela +C2898682|T037|AB|V86.44|ICD10CM|Person injured wh brd/alit from military vehicle|Person injured wh brd/alit from military vehicle +C2898682|T037|HT|V86.44|ICD10CM|Person injured while boarding or alighting from military vehicle|Person injured while boarding or alighting from military vehicle +C2898683|T037|AB|V86.44XA|ICD10CM|Person injured wh brd/alit from military vehicle, init|Person injured wh brd/alit from military vehicle, init +C2898683|T037|PT|V86.44XA|ICD10CM|Person injured while boarding or alighting from military vehicle, initial encounter|Person injured while boarding or alighting from military vehicle, initial encounter +C2898684|T037|AB|V86.44XD|ICD10CM|Person injured wh brd/alit from military vehicle, subs|Person injured wh brd/alit from military vehicle, subs +C2898684|T037|PT|V86.44XD|ICD10CM|Person injured while boarding or alighting from military vehicle, subsequent encounter|Person injured while boarding or alighting from military vehicle, subsequent encounter +C2898685|T037|AB|V86.44XS|ICD10CM|Person injured wh brd/alit from military vehicle, sequela|Person injured wh brd/alit from military vehicle, sequela +C2898685|T037|PT|V86.44XS|ICD10CM|Person injured while boarding or alighting from military vehicle, sequela|Person injured while boarding or alighting from military vehicle, sequela +C4509503|T037|AB|V86.45|ICD10CM|Person injured wh brd/alit from a 3- or 4- wheeled ATV|Person injured wh brd/alit from a 3- or 4- wheeled ATV +C4509503|T037|HT|V86.45|ICD10CM|Person injured while boarding or alighting from a 3- or 4- wheeled all-terrain vehicle (ATV)|Person injured while boarding or alighting from a 3- or 4- wheeled all-terrain vehicle (ATV) +C4509504|T037|AB|V86.45XA|ICD10CM|Person injured wh brd/alit from a 3- or 4- wheeled ATV, init|Person injured wh brd/alit from a 3- or 4- wheeled ATV, init +C4509505|T037|AB|V86.45XD|ICD10CM|Person injured wh brd/alit from a 3- or 4- wheeled ATV, subs|Person injured wh brd/alit from a 3- or 4- wheeled ATV, subs +C4509506|T037|AB|V86.45XS|ICD10CM|Person inj wh brd/alit from a 3- or 4- wheeled ATV, sequela|Person inj wh brd/alit from a 3- or 4- wheeled ATV, sequela +C4509507|T037|AB|V86.46|ICD10CM|Person inj wh brd/alit from a dirt bike or motor/cross bike|Person inj wh brd/alit from a dirt bike or motor/cross bike +C4509507|T037|HT|V86.46|ICD10CM|Person injured while boarding or alighting from a dirt bike or motor/cross bike|Person injured while boarding or alighting from a dirt bike or motor/cross bike +C4509508|T037|PT|V86.46XA|ICD10CM|Person injured while boarding or alighting from a dirt bike or motor/cross bike, initial encounter|Person injured while boarding or alighting from a dirt bike or motor/cross bike, initial encounter +C4509508|T037|AB|V86.46XA|ICD10CM|Prsn inj wh brd/alit fr a dirt bike or motor/cross bike,init|Prsn inj wh brd/alit fr a dirt bike or motor/cross bike,init +C4509509|T037|AB|V86.46XD|ICD10CM|Prsn inj wh brd/alit fr a dirt bike or motor/cross bike,subs|Prsn inj wh brd/alit fr a dirt bike or motor/cross bike,subs +C4509510|T037|PT|V86.46XS|ICD10CM|Person injured while boarding or alighting from a dirt bike or motor/cross bike, sequela|Person injured while boarding or alighting from a dirt bike or motor/cross bike, sequela +C4509510|T037|AB|V86.46XS|ICD10CM|Prsn inj wh brd/alit fr a dirt bike or motor/cross bike,sqla|Prsn inj wh brd/alit fr a dirt bike or motor/cross bike,sqla +C2898689|T037|AB|V86.49|ICD10CM|Person injured wh brd/alit from oth sp off-rd mv|Person injured wh brd/alit from oth sp off-rd mv +C2898687|T037|ET|V86.49|ICD10CM|Person injured while boarding or alighting from go cart|Person injured while boarding or alighting from go cart +C2898688|T037|ET|V86.49|ICD10CM|Person injured while boarding or alighting from golf cart|Person injured while boarding or alighting from golf cart +C2977247|T037|AB|V86.49XA|ICD10CM|Person injured wh brd/alit from oth sp off-rd mv, init|Person injured wh brd/alit from oth sp off-rd mv, init +C2977248|T037|AB|V86.49XD|ICD10CM|Person injured wh brd/alit from oth sp off-rd mv, subs|Person injured wh brd/alit from oth sp off-rd mv, subs +C2977249|T037|AB|V86.49XS|ICD10CM|Person injured wh brd/alit from oth sp off-rd mv, sequela|Person injured wh brd/alit from oth sp off-rd mv, sequela +C0477211|T037|PT|V86.5|ICD10|Driver of all-terrain or other off-road motor vehicle injured in nontraffic accident|Driver of all-terrain or other off-road motor vehicle injured in nontraffic accident +C2898693|T037|HT|V86.5|ICD10CM|Driver of special all-terrain or other off-road motor vehicle injured in nontraffic accident|Driver of special all-terrain or other off-road motor vehicle injured in nontraffic accident +C2898693|T037|AB|V86.5|ICD10CM|Driver off-road veh injured in nontraffic accident|Driver off-road veh injured in nontraffic accident +C2898694|T037|AB|V86.51|ICD10CM|Driver of amblnc/fire eng injured in nontraffic accident|Driver of amblnc/fire eng injured in nontraffic accident +C2898694|T037|HT|V86.51|ICD10CM|Driver of ambulance or fire engine injured in nontraffic accident|Driver of ambulance or fire engine injured in nontraffic accident +C2898695|T037|AB|V86.51XA|ICD10CM|Driver of amblnc/fire eng injured nontraf, init|Driver of amblnc/fire eng injured nontraf, init +C2898695|T037|PT|V86.51XA|ICD10CM|Driver of ambulance or fire engine injured in nontraffic accident, initial encounter|Driver of ambulance or fire engine injured in nontraffic accident, initial encounter +C2898696|T037|AB|V86.51XD|ICD10CM|Driver of amblnc/fire eng injured nontraf, subs|Driver of amblnc/fire eng injured nontraf, subs +C2898696|T037|PT|V86.51XD|ICD10CM|Driver of ambulance or fire engine injured in nontraffic accident, subsequent encounter|Driver of ambulance or fire engine injured in nontraffic accident, subsequent encounter +C2898697|T037|AB|V86.51XS|ICD10CM|Driver of amblnc/fire eng injured nontraf, sequela|Driver of amblnc/fire eng injured nontraf, sequela +C2898697|T037|PT|V86.51XS|ICD10CM|Driver of ambulance or fire engine injured in nontraffic accident, sequela|Driver of ambulance or fire engine injured in nontraffic accident, sequela +C2898698|T037|AB|V86.52|ICD10CM|Driver of snowmobile injured in nontraffic accident|Driver of snowmobile injured in nontraffic accident +C2898698|T037|HT|V86.52|ICD10CM|Driver of snowmobile injured in nontraffic accident|Driver of snowmobile injured in nontraffic accident +C2898699|T037|AB|V86.52XA|ICD10CM|Driver of snowmobile injured in nontraffic accident, init|Driver of snowmobile injured in nontraffic accident, init +C2898699|T037|PT|V86.52XA|ICD10CM|Driver of snowmobile injured in nontraffic accident, initial encounter|Driver of snowmobile injured in nontraffic accident, initial encounter +C2898700|T037|AB|V86.52XD|ICD10CM|Driver of snowmobile injured in nontraffic accident, subs|Driver of snowmobile injured in nontraffic accident, subs +C2898700|T037|PT|V86.52XD|ICD10CM|Driver of snowmobile injured in nontraffic accident, subsequent encounter|Driver of snowmobile injured in nontraffic accident, subsequent encounter +C2898701|T037|AB|V86.52XS|ICD10CM|Driver of snowmobile injured in nontraffic accident, sequela|Driver of snowmobile injured in nontraffic accident, sequela +C2898701|T037|PT|V86.52XS|ICD10CM|Driver of snowmobile injured in nontraffic accident, sequela|Driver of snowmobile injured in nontraffic accident, sequela +C2898702|T037|AB|V86.53|ICD10CM|Driver of dune buggy injured in nontraffic accident|Driver of dune buggy injured in nontraffic accident +C2898702|T037|HT|V86.53|ICD10CM|Driver of dune buggy injured in nontraffic accident|Driver of dune buggy injured in nontraffic accident +C2898703|T037|AB|V86.53XA|ICD10CM|Driver of dune buggy injured in nontraffic accident, init|Driver of dune buggy injured in nontraffic accident, init +C2898703|T037|PT|V86.53XA|ICD10CM|Driver of dune buggy injured in nontraffic accident, initial encounter|Driver of dune buggy injured in nontraffic accident, initial encounter +C2898704|T037|AB|V86.53XD|ICD10CM|Driver of dune buggy injured in nontraffic accident, subs|Driver of dune buggy injured in nontraffic accident, subs +C2898704|T037|PT|V86.53XD|ICD10CM|Driver of dune buggy injured in nontraffic accident, subsequent encounter|Driver of dune buggy injured in nontraffic accident, subsequent encounter +C2898705|T037|AB|V86.53XS|ICD10CM|Driver of dune buggy injured in nontraffic accident, sequela|Driver of dune buggy injured in nontraffic accident, sequela +C2898705|T037|PT|V86.53XS|ICD10CM|Driver of dune buggy injured in nontraffic accident, sequela|Driver of dune buggy injured in nontraffic accident, sequela +C2898706|T037|AB|V86.54|ICD10CM|Driver of military vehicle injured in nontraffic accident|Driver of military vehicle injured in nontraffic accident +C2898706|T037|HT|V86.54|ICD10CM|Driver of military vehicle injured in nontraffic accident|Driver of military vehicle injured in nontraffic accident +C2898707|T037|PT|V86.54XA|ICD10CM|Driver of military vehicle injured in nontraffic accident, initial encounter|Driver of military vehicle injured in nontraffic accident, initial encounter +C2898707|T037|AB|V86.54XA|ICD10CM|Driver of military vehicle injured nontraf, init|Driver of military vehicle injured nontraf, init +C2898708|T037|PT|V86.54XD|ICD10CM|Driver of military vehicle injured in nontraffic accident, subsequent encounter|Driver of military vehicle injured in nontraffic accident, subsequent encounter +C2898708|T037|AB|V86.54XD|ICD10CM|Driver of military vehicle injured nontraf, subs|Driver of military vehicle injured nontraf, subs +C2898709|T037|PT|V86.54XS|ICD10CM|Driver of military vehicle injured in nontraffic accident, sequela|Driver of military vehicle injured in nontraffic accident, sequela +C2898709|T037|AB|V86.54XS|ICD10CM|Driver of military vehicle injured nontraf, sequela|Driver of military vehicle injured nontraf, sequela +C4509511|T037|HT|V86.55|ICD10CM|Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident|Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident +C4509511|T037|AB|V86.55|ICD10CM|Driver of 3- or 4- wheeled ATV injured nontraf|Driver of 3- or 4- wheeled ATV injured nontraf +C4509512|T037|AB|V86.55XA|ICD10CM|Driver of 3- or 4- wheeled ATV injured nontraf, init|Driver of 3- or 4- wheeled ATV injured nontraf, init +C4509513|T037|AB|V86.55XD|ICD10CM|Driver of 3- or 4- wheeled ATV injured nontraf, subs|Driver of 3- or 4- wheeled ATV injured nontraf, subs +C4509514|T037|PT|V86.55XS|ICD10CM|Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, sequela|Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, sequela +C4509514|T037|AB|V86.55XS|ICD10CM|Driver of 3- or 4- wheeled ATV injured nontraf, sequela|Driver of 3- or 4- wheeled ATV injured nontraf, sequela +C4509515|T037|HT|V86.56|ICD10CM|Driver of dirt bike or motor/cross bike injured in nontraffic accident|Driver of dirt bike or motor/cross bike injured in nontraffic accident +C4509515|T037|AB|V86.56|ICD10CM|Driver of dirt bike or motor/cross bike injured nontraf|Driver of dirt bike or motor/cross bike injured nontraf +C4509516|T037|AB|V86.56XA|ICD10CM|Driver of dirt bike or motor/cross bike inj nontraf, init|Driver of dirt bike or motor/cross bike inj nontraf, init +C4509516|T037|PT|V86.56XA|ICD10CM|Driver of dirt bike or motor/cross bike injured in nontraffic accident, initial encounter|Driver of dirt bike or motor/cross bike injured in nontraffic accident, initial encounter +C4509517|T037|AB|V86.56XD|ICD10CM|Driver of dirt bike or motor/cross bike inj nontraf, subs|Driver of dirt bike or motor/cross bike inj nontraf, subs +C4509517|T037|PT|V86.56XD|ICD10CM|Driver of dirt bike or motor/cross bike injured in nontraffic accident, subsequent encounter|Driver of dirt bike or motor/cross bike injured in nontraffic accident, subsequent encounter +C4509518|T037|AB|V86.56XS|ICD10CM|Driver of dirt bike or motor/cross bike inj nontraf, sequela|Driver of dirt bike or motor/cross bike inj nontraf, sequela +C4509518|T037|PT|V86.56XS|ICD10CM|Driver of dirt bike or motor/cross bike injured in nontraffic accident, sequela|Driver of dirt bike or motor/cross bike injured in nontraffic accident, sequela +C2898711|T037|ET|V86.59|ICD10CM|Driver of go cart injured in nontraffic accident|Driver of go cart injured in nontraffic accident +C2898712|T037|ET|V86.59|ICD10CM|Driver of golf cart injured in nontraffic accident|Driver of golf cart injured in nontraffic accident +C2898714|T037|AB|V86.59|ICD10CM|Driver of oth sp off-rd mv injured in nontraffic accident|Driver of oth sp off-rd mv injured in nontraffic accident +C2898714|T037|HT|V86.59|ICD10CM|Driver of other special all-terrain or other off-road motor vehicle injured in nontraffic accident|Driver of other special all-terrain or other off-road motor vehicle injured in nontraffic accident +C2977250|T037|AB|V86.59XA|ICD10CM|Driver of sp off-rd mv injured in nontraffic accident, init|Driver of sp off-rd mv injured in nontraffic accident, init +C2977251|T037|AB|V86.59XD|ICD10CM|Driver of sp off-rd mv injured in nontraffic accident, subs|Driver of sp off-rd mv injured in nontraffic accident, subs +C2977252|T037|AB|V86.59XS|ICD10CM|Driver of sp off-rd mv injured nontraf, sequela|Driver of sp off-rd mv injured nontraf, sequela +C0477212|T037|PT|V86.6|ICD10|Passenger of all-terrain or other off-road motor vehicle injured in nontraffic accident|Passenger of all-terrain or other off-road motor vehicle injured in nontraffic accident +C2898718|T037|HT|V86.6|ICD10CM|Passenger of special all-terrain or other off-road motor vehicle injured in nontraffic accident|Passenger of special all-terrain or other off-road motor vehicle injured in nontraffic accident +C2898718|T037|AB|V86.6|ICD10CM|Passngr off-road veh injured in nontraffic accident|Passngr off-road veh injured in nontraffic accident +C2898719|T037|AB|V86.61|ICD10CM|Passenger of amblnc/fire eng injured in nontraffic accident|Passenger of amblnc/fire eng injured in nontraffic accident +C2898719|T037|HT|V86.61|ICD10CM|Passenger of ambulance or fire engine injured in nontraffic accident|Passenger of ambulance or fire engine injured in nontraffic accident +C2898720|T037|AB|V86.61XA|ICD10CM|Passenger of amblnc/fire eng injured nontraf, init|Passenger of amblnc/fire eng injured nontraf, init +C2898720|T037|PT|V86.61XA|ICD10CM|Passenger of ambulance or fire engine injured in nontraffic accident, initial encounter|Passenger of ambulance or fire engine injured in nontraffic accident, initial encounter +C2898721|T037|AB|V86.61XD|ICD10CM|Passenger of amblnc/fire eng injured nontraf, subs|Passenger of amblnc/fire eng injured nontraf, subs +C2898721|T037|PT|V86.61XD|ICD10CM|Passenger of ambulance or fire engine injured in nontraffic accident, subsequent encounter|Passenger of ambulance or fire engine injured in nontraffic accident, subsequent encounter +C2898722|T037|AB|V86.61XS|ICD10CM|Passenger of amblnc/fire eng injured nontraf, sequela|Passenger of amblnc/fire eng injured nontraf, sequela +C2898722|T037|PT|V86.61XS|ICD10CM|Passenger of ambulance or fire engine injured in nontraffic accident, sequela|Passenger of ambulance or fire engine injured in nontraffic accident, sequela +C2898723|T037|AB|V86.62|ICD10CM|Passenger of snowmobile injured in nontraffic accident|Passenger of snowmobile injured in nontraffic accident +C2898723|T037|HT|V86.62|ICD10CM|Passenger of snowmobile injured in nontraffic accident|Passenger of snowmobile injured in nontraffic accident +C2898724|T037|AB|V86.62XA|ICD10CM|Passenger of snowmobile injured in nontraffic accident, init|Passenger of snowmobile injured in nontraffic accident, init +C2898724|T037|PT|V86.62XA|ICD10CM|Passenger of snowmobile injured in nontraffic accident, initial encounter|Passenger of snowmobile injured in nontraffic accident, initial encounter +C2898725|T037|AB|V86.62XD|ICD10CM|Passenger of snowmobile injured in nontraffic accident, subs|Passenger of snowmobile injured in nontraffic accident, subs +C2898725|T037|PT|V86.62XD|ICD10CM|Passenger of snowmobile injured in nontraffic accident, subsequent encounter|Passenger of snowmobile injured in nontraffic accident, subsequent encounter +C2898726|T037|PT|V86.62XS|ICD10CM|Passenger of snowmobile injured in nontraffic accident, sequela|Passenger of snowmobile injured in nontraffic accident, sequela +C2898726|T037|AB|V86.62XS|ICD10CM|Passenger of snowmobile injured nontraf, sequela|Passenger of snowmobile injured nontraf, sequela +C2898727|T037|AB|V86.63|ICD10CM|Passenger of dune buggy injured in nontraffic accident|Passenger of dune buggy injured in nontraffic accident +C2898727|T037|HT|V86.63|ICD10CM|Passenger of dune buggy injured in nontraffic accident|Passenger of dune buggy injured in nontraffic accident +C2898728|T037|AB|V86.63XA|ICD10CM|Passenger of dune buggy injured in nontraffic accident, init|Passenger of dune buggy injured in nontraffic accident, init +C2898728|T037|PT|V86.63XA|ICD10CM|Passenger of dune buggy injured in nontraffic accident, initial encounter|Passenger of dune buggy injured in nontraffic accident, initial encounter +C2898729|T037|AB|V86.63XD|ICD10CM|Passenger of dune buggy injured in nontraffic accident, subs|Passenger of dune buggy injured in nontraffic accident, subs +C2898729|T037|PT|V86.63XD|ICD10CM|Passenger of dune buggy injured in nontraffic accident, subsequent encounter|Passenger of dune buggy injured in nontraffic accident, subsequent encounter +C2898730|T037|PT|V86.63XS|ICD10CM|Passenger of dune buggy injured in nontraffic accident, sequela|Passenger of dune buggy injured in nontraffic accident, sequela +C2898730|T037|AB|V86.63XS|ICD10CM|Passenger of dune buggy injured nontraf, sequela|Passenger of dune buggy injured nontraf, sequela +C2898731|T037|AB|V86.64|ICD10CM|Passenger of military vehicle injured in nontraffic accident|Passenger of military vehicle injured in nontraffic accident +C2898731|T037|HT|V86.64|ICD10CM|Passenger of military vehicle injured in nontraffic accident|Passenger of military vehicle injured in nontraffic accident +C2898732|T037|PT|V86.64XA|ICD10CM|Passenger of military vehicle injured in nontraffic accident, initial encounter|Passenger of military vehicle injured in nontraffic accident, initial encounter +C2898732|T037|AB|V86.64XA|ICD10CM|Passenger of military vehicle injured nontraf, init|Passenger of military vehicle injured nontraf, init +C2898733|T037|PT|V86.64XD|ICD10CM|Passenger of military vehicle injured in nontraffic accident, subsequent encounter|Passenger of military vehicle injured in nontraffic accident, subsequent encounter +C2898733|T037|AB|V86.64XD|ICD10CM|Passenger of military vehicle injured nontraf, subs|Passenger of military vehicle injured nontraf, subs +C2898734|T037|PT|V86.64XS|ICD10CM|Passenger of military vehicle injured in nontraffic accident, sequela|Passenger of military vehicle injured in nontraffic accident, sequela +C2898734|T037|AB|V86.64XS|ICD10CM|Passenger of military vehicle injured nontraf, sequela|Passenger of military vehicle injured nontraf, sequela +C4509519|T037|HT|V86.65|ICD10CM|Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident|Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident +C4509519|T037|AB|V86.65|ICD10CM|Passenger of 3- or 4- wheeled ATV injured nontraf|Passenger of 3- or 4- wheeled ATV injured nontraf +C4509520|T037|AB|V86.65XA|ICD10CM|Passenger of 3- or 4- wheeled ATV injured nontraf, init|Passenger of 3- or 4- wheeled ATV injured nontraf, init +C4509521|T037|AB|V86.65XD|ICD10CM|Passenger of 3- or 4- wheeled ATV injured nontraf, subs|Passenger of 3- or 4- wheeled ATV injured nontraf, subs +C4509522|T037|PT|V86.65XS|ICD10CM|Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, sequela|Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, sequela +C4509522|T037|AB|V86.65XS|ICD10CM|Passenger of 3- or 4- wheeled ATV injured nontraf, sequela|Passenger of 3- or 4- wheeled ATV injured nontraf, sequela +C4509523|T037|HT|V86.66|ICD10CM|Passenger of dirt bike or motor/cross bike injured in nontraffic accident|Passenger of dirt bike or motor/cross bike injured in nontraffic accident +C4509523|T037|AB|V86.66|ICD10CM|Passenger of dirt bike or motor/cross bike injured nontraf|Passenger of dirt bike or motor/cross bike injured nontraf +C4509524|T037|AB|V86.66XA|ICD10CM|Pasngr of dirt bike or motor/cross bike inj nontraf, init|Pasngr of dirt bike or motor/cross bike inj nontraf, init +C4509524|T037|PT|V86.66XA|ICD10CM|Passenger of dirt bike or motor/cross bike injured in nontraffic accident, initial encounter|Passenger of dirt bike or motor/cross bike injured in nontraffic accident, initial encounter +C4509525|T037|AB|V86.66XD|ICD10CM|Pasngr of dirt bike or motor/cross bike inj nontraf, subs|Pasngr of dirt bike or motor/cross bike inj nontraf, subs +C4509525|T037|PT|V86.66XD|ICD10CM|Passenger of dirt bike or motor/cross bike injured in nontraffic accident, subsequent encounter|Passenger of dirt bike or motor/cross bike injured in nontraffic accident, subsequent encounter +C4509526|T037|AB|V86.66XS|ICD10CM|Pasngr of dirt bike or motor/cross bike inj nontraf, sequela|Pasngr of dirt bike or motor/cross bike inj nontraf, sequela +C4509526|T037|PT|V86.66XS|ICD10CM|Passenger of dirt bike or motor/cross bike injured in nontraffic accident, sequela|Passenger of dirt bike or motor/cross bike injured in nontraffic accident, sequela +C2898736|T037|ET|V86.69|ICD10CM|Passenger of go cart injured in nontraffic accident|Passenger of go cart injured in nontraffic accident +C2898737|T037|ET|V86.69|ICD10CM|Passenger of golf cart injured in nontraffic accident|Passenger of golf cart injured in nontraffic accident +C2898739|T037|AB|V86.69|ICD10CM|Passenger of oth sp off-rd mv injured in nontraffic accident|Passenger of oth sp off-rd mv injured in nontraffic accident +C2977253|T037|AB|V86.69XA|ICD10CM|Passenger of sp off-rd mv injured nontraf, init|Passenger of sp off-rd mv injured nontraf, init +C2977254|T037|AB|V86.69XD|ICD10CM|Passenger of sp off-rd mv injured nontraf, subs|Passenger of sp off-rd mv injured nontraf, subs +C2977255|T037|AB|V86.69XS|ICD10CM|Passenger of sp off-rd mv injured nontraf, sequela|Passenger of sp off-rd mv injured nontraf, sequela +C2898743|T037|AB|V86.7|ICD10CM|Persn outside off-road veh injured in nontraffic accident|Persn outside off-road veh injured in nontraffic accident +C0477213|T037|PT|V86.7|ICD10|Person on outside of all-terrain or other off-road motor vehicle injured in nontraffic accident|Person on outside of all-terrain or other off-road motor vehicle injured in nontraffic accident +C2898744|T037|AB|V86.71|ICD10CM|Person on outside of amblnc/fire eng injured nontraf|Person on outside of amblnc/fire eng injured nontraf +C2898744|T037|HT|V86.71|ICD10CM|Person on outside of ambulance or fire engine injured in nontraffic accident|Person on outside of ambulance or fire engine injured in nontraffic accident +C2898745|T037|AB|V86.71XA|ICD10CM|Person on outside of amblnc/fire eng injured nontraf, init|Person on outside of amblnc/fire eng injured nontraf, init +C2898745|T037|PT|V86.71XA|ICD10CM|Person on outside of ambulance or fire engine injured in nontraffic accident, initial encounter|Person on outside of ambulance or fire engine injured in nontraffic accident, initial encounter +C2898746|T037|AB|V86.71XD|ICD10CM|Person on outside of amblnc/fire eng injured nontraf, subs|Person on outside of amblnc/fire eng injured nontraf, subs +C2898746|T037|PT|V86.71XD|ICD10CM|Person on outside of ambulance or fire engine injured in nontraffic accident, subsequent encounter|Person on outside of ambulance or fire engine injured in nontraffic accident, subsequent encounter +C2898747|T037|PT|V86.71XS|ICD10CM|Person on outside of ambulance or fire engine injured in nontraffic accident, sequela|Person on outside of ambulance or fire engine injured in nontraffic accident, sequela +C2898747|T037|AB|V86.71XS|ICD10CM|Person outside amblnc/fire eng injured nontraf, sequela|Person outside amblnc/fire eng injured nontraf, sequela +C2898748|T037|HT|V86.72|ICD10CM|Person on outside of snowmobile injured in nontraffic accident|Person on outside of snowmobile injured in nontraffic accident +C2898748|T037|AB|V86.72|ICD10CM|Person on outside of snowmobile injured nontraf|Person on outside of snowmobile injured nontraf +C2898749|T037|PT|V86.72XA|ICD10CM|Person on outside of snowmobile injured in nontraffic accident, initial encounter|Person on outside of snowmobile injured in nontraffic accident, initial encounter +C2898749|T037|AB|V86.72XA|ICD10CM|Person on outside of snowmobile injured nontraf, init|Person on outside of snowmobile injured nontraf, init +C2898750|T037|PT|V86.72XD|ICD10CM|Person on outside of snowmobile injured in nontraffic accident, subsequent encounter|Person on outside of snowmobile injured in nontraffic accident, subsequent encounter +C2898750|T037|AB|V86.72XD|ICD10CM|Person on outside of snowmobile injured nontraf, subs|Person on outside of snowmobile injured nontraf, subs +C2898751|T037|PT|V86.72XS|ICD10CM|Person on outside of snowmobile injured in nontraffic accident, sequela|Person on outside of snowmobile injured in nontraffic accident, sequela +C2898751|T037|AB|V86.72XS|ICD10CM|Person on outside of snowmobile injured nontraf, sequela|Person on outside of snowmobile injured nontraf, sequela +C2898752|T037|HT|V86.73|ICD10CM|Person on outside of dune buggy injured in nontraffic accident|Person on outside of dune buggy injured in nontraffic accident +C2898752|T037|AB|V86.73|ICD10CM|Person on outside of dune buggy injured nontraf|Person on outside of dune buggy injured nontraf +C2898753|T037|PT|V86.73XA|ICD10CM|Person on outside of dune buggy injured in nontraffic accident, initial encounter|Person on outside of dune buggy injured in nontraffic accident, initial encounter +C2898753|T037|AB|V86.73XA|ICD10CM|Person on outside of dune buggy injured nontraf, init|Person on outside of dune buggy injured nontraf, init +C2898754|T037|PT|V86.73XD|ICD10CM|Person on outside of dune buggy injured in nontraffic accident, subsequent encounter|Person on outside of dune buggy injured in nontraffic accident, subsequent encounter +C2898754|T037|AB|V86.73XD|ICD10CM|Person on outside of dune buggy injured nontraf, subs|Person on outside of dune buggy injured nontraf, subs +C2898755|T037|PT|V86.73XS|ICD10CM|Person on outside of dune buggy injured in nontraffic accident, sequela|Person on outside of dune buggy injured in nontraffic accident, sequela +C2898755|T037|AB|V86.73XS|ICD10CM|Person on outside of dune buggy injured nontraf, sequela|Person on outside of dune buggy injured nontraf, sequela +C2898756|T037|HT|V86.74|ICD10CM|Person on outside of military vehicle injured in nontraffic accident|Person on outside of military vehicle injured in nontraffic accident +C2898756|T037|AB|V86.74|ICD10CM|Person on outside of military vehicle injured nontraf|Person on outside of military vehicle injured nontraf +C2898757|T037|PT|V86.74XA|ICD10CM|Person on outside of military vehicle injured in nontraffic accident, initial encounter|Person on outside of military vehicle injured in nontraffic accident, initial encounter +C2898757|T037|AB|V86.74XA|ICD10CM|Person on outside of military vehicle injured nontraf, init|Person on outside of military vehicle injured nontraf, init +C2898758|T037|PT|V86.74XD|ICD10CM|Person on outside of military vehicle injured in nontraffic accident, subsequent encounter|Person on outside of military vehicle injured in nontraffic accident, subsequent encounter +C2898758|T037|AB|V86.74XD|ICD10CM|Person on outside of military vehicle injured nontraf, subs|Person on outside of military vehicle injured nontraf, subs +C2898759|T037|PT|V86.74XS|ICD10CM|Person on outside of military vehicle injured in nontraffic accident, sequela|Person on outside of military vehicle injured in nontraffic accident, sequela +C2898759|T037|AB|V86.74XS|ICD10CM|Person outside military vehicle injured nontraf, sequela|Person outside military vehicle injured nontraf, sequela +C4509527|T037|HT|V86.75|ICD10CM|Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident|Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident +C4509527|T037|AB|V86.75|ICD10CM|Person on outside of 3- or 4- wheeled ATV injured nontraf|Person on outside of 3- or 4- wheeled ATV injured nontraf +C4509528|T037|AB|V86.75XA|ICD10CM|Person outside 3- or 4- wheeled ATV injured nontraf, init|Person outside 3- or 4- wheeled ATV injured nontraf, init +C4509529|T037|AB|V86.75XD|ICD10CM|Person outside 3- or 4- wheeled ATV injured nontraf, subs|Person outside 3- or 4- wheeled ATV injured nontraf, subs +C4509530|T037|AB|V86.75XS|ICD10CM|Person outside 3- or 4- wheeled ATV injured nontraf, sequela|Person outside 3- or 4- wheeled ATV injured nontraf, sequela +C4509531|T037|HT|V86.76|ICD10CM|Person on outside of dirt bike or motor/cross bike injured in nontraffic accident|Person on outside of dirt bike or motor/cross bike injured in nontraffic accident +C4509531|T037|AB|V86.76|ICD10CM|Person outside dirt bike or motor/cross bike injured nontraf|Person outside dirt bike or motor/cross bike injured nontraf +C4509532|T037|PT|V86.76XA|ICD10CM|Person on outside of dirt bike or motor/cross bike injured in nontraffic accident, initial encounter|Person on outside of dirt bike or motor/cross bike injured in nontraffic accident, initial encounter +C4509532|T037|AB|V86.76XA|ICD10CM|Person outsd dirt bike or motor/cross bike inj nontraf, init|Person outsd dirt bike or motor/cross bike inj nontraf, init +C4509533|T037|AB|V86.76XD|ICD10CM|Person outsd dirt bike or motor/cross bike inj nontraf, subs|Person outsd dirt bike or motor/cross bike inj nontraf, subs +C4509534|T037|PT|V86.76XS|ICD10CM|Person on outside of dirt bike or motor/cross bike injured in nontraffic accident, sequela|Person on outside of dirt bike or motor/cross bike injured in nontraffic accident, sequela +C4509534|T037|AB|V86.76XS|ICD10CM|Person outsd dirt bike or motor/cross bike inj nontraf, sqla|Person outsd dirt bike or motor/cross bike inj nontraf, sqla +C2898761|T037|ET|V86.79|ICD10CM|Person on outside of go cart injured in nontraffic accident|Person on outside of go cart injured in nontraffic accident +C2898762|T037|ET|V86.79|ICD10CM|Person on outside of golf cart injured in nontraffic accident|Person on outside of golf cart injured in nontraffic accident +C2898764|T037|AB|V86.79|ICD10CM|Person on outside of sp off-rd mv injured nontraf|Person on outside of sp off-rd mv injured nontraf +C2977256|T037|AB|V86.79XA|ICD10CM|Person on outside of sp off-rd mv injured nontraf, init|Person on outside of sp off-rd mv injured nontraf, init +C2977257|T037|AB|V86.79XD|ICD10CM|Person on outside of sp off-rd mv injured nontraf, subs|Person on outside of sp off-rd mv injured nontraf, subs +C2977258|T037|AB|V86.79XS|ICD10CM|Person on outside of sp off-rd mv injured nontraf, sequela|Person on outside of sp off-rd mv injured nontraf, sequela +C2898768|T037|AB|V86.9|ICD10CM|Unspec occup off-road veh injured in nontraffic accident|Unspec occup off-road veh injured in nontraffic accident +C0477214|T037|PT|V86.9|ICD10|Unspecified occupant of all-terrain or other off-road motor vehicle injured in nontraffic accident|Unspecified occupant of all-terrain or other off-road motor vehicle injured in nontraffic accident +C2898769|T037|AB|V86.91|ICD10CM|Occup of amblnc/fire eng injured in nontraffic accident|Occup of amblnc/fire eng injured in nontraffic accident +C2898769|T037|HT|V86.91|ICD10CM|Unspecified occupant of ambulance or fire engine injured in nontraffic accident|Unspecified occupant of ambulance or fire engine injured in nontraffic accident +C2898770|T037|AB|V86.91XA|ICD10CM|Occup of amblnc/fire eng injured nontraf, init|Occup of amblnc/fire eng injured nontraf, init +C2898770|T037|PT|V86.91XA|ICD10CM|Unspecified occupant of ambulance or fire engine injured in nontraffic accident, initial encounter|Unspecified occupant of ambulance or fire engine injured in nontraffic accident, initial encounter +C2898771|T037|AB|V86.91XD|ICD10CM|Occup of amblnc/fire eng injured nontraf, subs|Occup of amblnc/fire eng injured nontraf, subs +C2898772|T037|AB|V86.91XS|ICD10CM|Occup of amblnc/fire eng injured nontraf, sequela|Occup of amblnc/fire eng injured nontraf, sequela +C2898772|T037|PT|V86.91XS|ICD10CM|Unspecified occupant of ambulance or fire engine injured in nontraffic accident, sequela|Unspecified occupant of ambulance or fire engine injured in nontraffic accident, sequela +C2898773|T037|AB|V86.92|ICD10CM|Unsp occupant of snowmobile injured in nontraffic accident|Unsp occupant of snowmobile injured in nontraffic accident +C2898773|T037|HT|V86.92|ICD10CM|Unspecified occupant of snowmobile injured in nontraffic accident|Unspecified occupant of snowmobile injured in nontraffic accident +C2898774|T037|AB|V86.92XA|ICD10CM|Occup of snowmobile injured in nontraffic accident, init|Occup of snowmobile injured in nontraffic accident, init +C2898774|T037|PT|V86.92XA|ICD10CM|Unspecified occupant of snowmobile injured in nontraffic accident, initial encounter|Unspecified occupant of snowmobile injured in nontraffic accident, initial encounter +C2898775|T037|AB|V86.92XD|ICD10CM|Occup of snowmobile injured in nontraffic accident, subs|Occup of snowmobile injured in nontraffic accident, subs +C2898775|T037|PT|V86.92XD|ICD10CM|Unspecified occupant of snowmobile injured in nontraffic accident, subsequent encounter|Unspecified occupant of snowmobile injured in nontraffic accident, subsequent encounter +C2898776|T037|AB|V86.92XS|ICD10CM|Occup of snowmobile injured in nontraffic accident, sequela|Occup of snowmobile injured in nontraffic accident, sequela +C2898776|T037|PT|V86.92XS|ICD10CM|Unspecified occupant of snowmobile injured in nontraffic accident, sequela|Unspecified occupant of snowmobile injured in nontraffic accident, sequela +C2898777|T037|AB|V86.93|ICD10CM|Unsp occupant of dune buggy injured in nontraffic accident|Unsp occupant of dune buggy injured in nontraffic accident +C2898777|T037|HT|V86.93|ICD10CM|Unspecified occupant of dune buggy injured in nontraffic accident|Unspecified occupant of dune buggy injured in nontraffic accident +C2898778|T037|AB|V86.93XA|ICD10CM|Occup of dune buggy injured in nontraffic accident, init|Occup of dune buggy injured in nontraffic accident, init +C2898778|T037|PT|V86.93XA|ICD10CM|Unspecified occupant of dune buggy injured in nontraffic accident, initial encounter|Unspecified occupant of dune buggy injured in nontraffic accident, initial encounter +C2898779|T037|AB|V86.93XD|ICD10CM|Occup of dune buggy injured in nontraffic accident, subs|Occup of dune buggy injured in nontraffic accident, subs +C2898779|T037|PT|V86.93XD|ICD10CM|Unspecified occupant of dune buggy injured in nontraffic accident, subsequent encounter|Unspecified occupant of dune buggy injured in nontraffic accident, subsequent encounter +C2898780|T037|AB|V86.93XS|ICD10CM|Occup of dune buggy injured in nontraffic accident, sequela|Occup of dune buggy injured in nontraffic accident, sequela +C2898780|T037|PT|V86.93XS|ICD10CM|Unspecified occupant of dune buggy injured in nontraffic accident, sequela|Unspecified occupant of dune buggy injured in nontraffic accident, sequela +C2898781|T037|AB|V86.94|ICD10CM|Occup of military vehicle injured in nontraffic accident|Occup of military vehicle injured in nontraffic accident +C2898781|T037|HT|V86.94|ICD10CM|Unspecified occupant of military vehicle injured in nontraffic accident|Unspecified occupant of military vehicle injured in nontraffic accident +C2898782|T037|AB|V86.94XA|ICD10CM|Occup of military vehicle injured nontraf, init|Occup of military vehicle injured nontraf, init +C2898782|T037|PT|V86.94XA|ICD10CM|Unspecified occupant of military vehicle injured in nontraffic accident, initial encounter|Unspecified occupant of military vehicle injured in nontraffic accident, initial encounter +C2898783|T037|AB|V86.94XD|ICD10CM|Occup of military vehicle injured nontraf, subs|Occup of military vehicle injured nontraf, subs +C2898783|T037|PT|V86.94XD|ICD10CM|Unspecified occupant of military vehicle injured in nontraffic accident, subsequent encounter|Unspecified occupant of military vehicle injured in nontraffic accident, subsequent encounter +C2898784|T037|AB|V86.94XS|ICD10CM|Occup of military vehicle injured nontraf, sequela|Occup of military vehicle injured nontraf, sequela +C2898784|T037|PT|V86.94XS|ICD10CM|Unspecified occupant of military vehicle injured in nontraffic accident, sequela|Unspecified occupant of military vehicle injured in nontraffic accident, sequela +C4509535|T037|HT|V86.95|ICD10CM|Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident|Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident +C4509535|T037|AB|V86.95|ICD10CM|Unspecified occupant of 3- or 4- wheeled ATV injured nontraf|Unspecified occupant of 3- or 4- wheeled ATV injured nontraf +C4509536|T037|AB|V86.95XA|ICD10CM|Occup of 3- or 4- wheeled ATV injured nontraf, init|Occup of 3- or 4- wheeled ATV injured nontraf, init +C4509537|T037|AB|V86.95XD|ICD10CM|Occup of 3- or 4- wheeled ATV injured nontraf, subs|Occup of 3- or 4- wheeled ATV injured nontraf, subs +C4509538|T037|AB|V86.95XS|ICD10CM|Occup of 3- or 4- wheeled ATV injured nontraf, sequela|Occup of 3- or 4- wheeled ATV injured nontraf, sequela +C4509539|T037|AB|V86.96|ICD10CM|Occup of dirt bike or motor/cross bike injured nontraf|Occup of dirt bike or motor/cross bike injured nontraf +C4509539|T037|HT|V86.96|ICD10CM|Unspecified occupant of dirt bike or motor/cross bike injured in nontraffic accident|Unspecified occupant of dirt bike or motor/cross bike injured in nontraffic accident +C4509540|T037|AB|V86.96XA|ICD10CM|Occup of dirt bike or motor/cross bike injured nontraf, init|Occup of dirt bike or motor/cross bike injured nontraf, init +C4509541|T037|AB|V86.96XD|ICD10CM|Occup of dirt bike or motor/cross bike injured nontraf, subs|Occup of dirt bike or motor/cross bike injured nontraf, subs +C4509542|T037|AB|V86.96XS|ICD10CM|Occup of dirt bike or motor/cross bike inj nontraf, sequela|Occup of dirt bike or motor/cross bike inj nontraf, sequela +C4509542|T037|PT|V86.96XS|ICD10CM|Unspecified occupant of dirt bike or motor/cross bike injured in nontraffic accident, sequela|Unspecified occupant of dirt bike or motor/cross bike injured in nontraffic accident, sequela +C2898791|T037|AB|V86.99|ICD10CM|Occup of oth sp off-rd mv injured in nontraffic accident|Occup of oth sp off-rd mv injured in nontraffic accident +C2919131|T037|ET|V86.99|ICD10CM|Off-road motor-vehicle accident NOS|Off-road motor-vehicle accident NOS +C2898786|T037|ET|V86.99|ICD10CM|Other motor-vehicle accident NOS|Other motor-vehicle accident NOS +C2898788|T037|ET|V86.99|ICD10CM|Unspecified occupant of go cart injured in nontraffic accident|Unspecified occupant of go cart injured in nontraffic accident +C2898789|T037|ET|V86.99|ICD10CM|Unspecified occupant of golf cart injured in nontraffic accident|Unspecified occupant of golf cart injured in nontraffic accident +C2977259|T037|AB|V86.99XA|ICD10CM|Occup of sp off-rd mv injured in nontraffic accident, init|Occup of sp off-rd mv injured in nontraffic accident, init +C2977260|T037|AB|V86.99XD|ICD10CM|Occup of sp off-rd mv injured in nontraffic accident, subs|Occup of sp off-rd mv injured in nontraffic accident, subs +C2977261|T037|AB|V86.99XS|ICD10CM|Occup of sp off-rd mv injured nontraf, sequela|Occup of sp off-rd mv injured nontraf, sequela +C0477215|T037|AB|V87|ICD10CM|Traf of spcf type but victim's mode of transport unknown|Traf of spcf type but victim's mode of transport unknown +C0477215|T037|HT|V87|ICD10CM|Traffic accident of specified type but victim's mode of transport unknown|Traffic accident of specified type but victim's mode of transport unknown +C0477215|T037|HT|V87|ICD10|Traffic accident of specified type but victim's mode of transport unknown|Traffic accident of specified type but victim's mode of transport unknown +C2898795|T037|AB|V87.0|ICD10CM|Person injured in collision betw car and 2/3-whl pwr veh|Person injured in collision betw car and 2/3-whl pwr veh +C0477216|T037|PT|V87.0|ICD10|Person injured in collision between car and two- or three-wheeled motor vehicle (traffic)|Person injured in collision between car and two- or three-wheeled motor vehicle (traffic) +C2898795|T037|HT|V87.0|ICD10CM|Person injured in collision between car and two- or three-wheeled powered vehicle (traffic)|Person injured in collision between car and two- or three-wheeled powered vehicle (traffic) +C2898796|T037|AB|V87.0XXA|ICD10CM|Person injured in clsn betw car and 2/3-whl pwr veh, init|Person injured in clsn betw car and 2/3-whl pwr veh, init +C2898797|T037|AB|V87.0XXD|ICD10CM|Person injured in clsn betw car and 2/3-whl pwr veh, subs|Person injured in clsn betw car and 2/3-whl pwr veh, subs +C2898798|T037|AB|V87.0XXS|ICD10CM|Person inj in clsn betw car and 2/3-whl pwr veh, sequela|Person inj in clsn betw car and 2/3-whl pwr veh, sequela +C2898798|T037|PT|V87.0XXS|ICD10CM|Person injured in collision between car and two- or three-wheeled powered vehicle (traffic), sequela|Person injured in collision between car and two- or three-wheeled powered vehicle (traffic), sequela +C0477217|T037|AB|V87.1|ICD10CM|Person injured in collision betw mtr veh and 2/3-whl mv|Person injured in collision betw mtr veh and 2/3-whl mv +C2898799|T037|AB|V87.1XXA|ICD10CM|Person injured in clsn betw mtr veh and 2/3-whl mv, init|Person injured in clsn betw mtr veh and 2/3-whl mv, init +C2898800|T037|AB|V87.1XXD|ICD10CM|Person injured in clsn betw mtr veh and 2/3-whl mv, subs|Person injured in clsn betw mtr veh and 2/3-whl mv, subs +C2898801|T037|AB|V87.1XXS|ICD10CM|Person injured in clsn betw mtr veh and 2/3-whl mv, sequela|Person injured in clsn betw mtr veh and 2/3-whl mv, sequela +C0477218|T037|AB|V87.2|ICD10CM|Person injured in collision betw car and pk-up/van (traffic)|Person injured in collision betw car and pk-up/van (traffic) +C0477218|T037|HT|V87.2|ICD10CM|Person injured in collision between car and pick-up truck or van (traffic)|Person injured in collision between car and pick-up truck or van (traffic) +C0477218|T037|PT|V87.2|ICD10|Person injured in collision between car and pick-up truck or van (traffic)|Person injured in collision between car and pick-up truck or van (traffic) +C2898802|T037|AB|V87.2XXA|ICD10CM|Person injured in collision betw car and pk-up/van, init|Person injured in collision betw car and pk-up/van, init +C2898802|T037|PT|V87.2XXA|ICD10CM|Person injured in collision between car and pick-up truck or van (traffic), initial encounter|Person injured in collision between car and pick-up truck or van (traffic), initial encounter +C2898803|T037|AB|V87.2XXD|ICD10CM|Person injured in collision betw car and pk-up/van, subs|Person injured in collision betw car and pk-up/van, subs +C2898803|T037|PT|V87.2XXD|ICD10CM|Person injured in collision between car and pick-up truck or van (traffic), subsequent encounter|Person injured in collision between car and pick-up truck or van (traffic), subsequent encounter +C2898804|T037|AB|V87.2XXS|ICD10CM|Person injured in collision betw car and pk-up/van, sequela|Person injured in collision betw car and pk-up/van, sequela +C2898804|T037|PT|V87.2XXS|ICD10CM|Person injured in collision between car and pick-up truck or van (traffic), sequela|Person injured in collision between car and pick-up truck or van (traffic), sequela +C0477219|T037|PT|V87.3|ICD10|Person injured in collision between car and bus (traffic)|Person injured in collision between car and bus (traffic) +C0477219|T037|HT|V87.3|ICD10CM|Person injured in collision between car and bus (traffic)|Person injured in collision between car and bus (traffic) +C0477219|T037|AB|V87.3|ICD10CM|Person injured in collision between car and bus (traffic)|Person injured in collision between car and bus (traffic) +C2898805|T037|AB|V87.3XXA|ICD10CM|Person injured in collision betw car and bus (traffic), init|Person injured in collision betw car and bus (traffic), init +C2898805|T037|PT|V87.3XXA|ICD10CM|Person injured in collision between car and bus (traffic), initial encounter|Person injured in collision between car and bus (traffic), initial encounter +C2898806|T037|AB|V87.3XXD|ICD10CM|Person injured in collision betw car and bus (traffic), subs|Person injured in collision betw car and bus (traffic), subs +C2898806|T037|PT|V87.3XXD|ICD10CM|Person injured in collision between car and bus (traffic), subsequent encounter|Person injured in collision between car and bus (traffic), subsequent encounter +C2898807|T037|AB|V87.3XXS|ICD10CM|Person injured in collision betw car and bus, sequela|Person injured in collision betw car and bus, sequela +C2898807|T037|PT|V87.3XXS|ICD10CM|Person injured in collision between car and bus (traffic), sequela|Person injured in collision between car and bus (traffic), sequela +C0477220|T037|AB|V87.4|ICD10CM|Person injured in collision betw car and hv veh (traffic)|Person injured in collision betw car and hv veh (traffic) +C0477220|T037|HT|V87.4|ICD10CM|Person injured in collision between car and heavy transport vehicle (traffic)|Person injured in collision between car and heavy transport vehicle (traffic) +C0477220|T037|PT|V87.4|ICD10|Person injured in collision between car and heavy transport vehicle (traffic)|Person injured in collision between car and heavy transport vehicle (traffic) +C2898808|T037|AB|V87.4XXA|ICD10CM|Person injured in collision betw car and hv veh, init|Person injured in collision betw car and hv veh, init +C2898808|T037|PT|V87.4XXA|ICD10CM|Person injured in collision between car and heavy transport vehicle (traffic), initial encounter|Person injured in collision between car and heavy transport vehicle (traffic), initial encounter +C2898809|T037|AB|V87.4XXD|ICD10CM|Person injured in collision betw car and hv veh, subs|Person injured in collision betw car and hv veh, subs +C2898809|T037|PT|V87.4XXD|ICD10CM|Person injured in collision between car and heavy transport vehicle (traffic), subsequent encounter|Person injured in collision between car and heavy transport vehicle (traffic), subsequent encounter +C2898810|T037|AB|V87.4XXS|ICD10CM|Person injured in collision betw car and hv veh, sequela|Person injured in collision betw car and hv veh, sequela +C2898810|T037|PT|V87.4XXS|ICD10CM|Person injured in collision between car and heavy transport vehicle (traffic), sequela|Person injured in collision between car and heavy transport vehicle (traffic), sequela +C0477221|T037|AB|V87.5|ICD10CM|Person injured in collision betw hv veh and bus (traffic)|Person injured in collision betw hv veh and bus (traffic) +C0477221|T037|HT|V87.5|ICD10CM|Person injured in collision between heavy transport vehicle and bus (traffic)|Person injured in collision between heavy transport vehicle and bus (traffic) +C0477221|T037|PT|V87.5|ICD10|Person injured in collision between heavy transport vehicle and bus (traffic)|Person injured in collision between heavy transport vehicle and bus (traffic) +C2898811|T037|AB|V87.5XXA|ICD10CM|Person injured in collision betw hv veh and bus, init|Person injured in collision betw hv veh and bus, init +C2898811|T037|PT|V87.5XXA|ICD10CM|Person injured in collision between heavy transport vehicle and bus (traffic), initial encounter|Person injured in collision between heavy transport vehicle and bus (traffic), initial encounter +C2898812|T037|AB|V87.5XXD|ICD10CM|Person injured in collision betw hv veh and bus, subs|Person injured in collision betw hv veh and bus, subs +C2898812|T037|PT|V87.5XXD|ICD10CM|Person injured in collision between heavy transport vehicle and bus (traffic), subsequent encounter|Person injured in collision between heavy transport vehicle and bus (traffic), subsequent encounter +C2898813|T037|AB|V87.5XXS|ICD10CM|Person injured in collision betw hv veh and bus, sequela|Person injured in collision betw hv veh and bus, sequela +C2898813|T037|PT|V87.5XXS|ICD10CM|Person injured in collision between heavy transport vehicle and bus (traffic), sequela|Person injured in collision between heavy transport vehicle and bus (traffic), sequela +C0477222|T037|AB|V87.6|ICD10CM|Person injured in collision betw rail trn/veh and car|Person injured in collision betw rail trn/veh and car +C0477222|T037|HT|V87.6|ICD10CM|Person injured in collision between railway train or railway vehicle and car (traffic)|Person injured in collision between railway train or railway vehicle and car (traffic) +C0477222|T037|PT|V87.6|ICD10|Person injured in collision between railway train or railway vehicle and car (traffic)|Person injured in collision between railway train or railway vehicle and car (traffic) +C2898814|T037|AB|V87.6XXA|ICD10CM|Person injured in collision betw rail trn/veh and car, init|Person injured in collision betw rail trn/veh and car, init +C2898815|T037|AB|V87.6XXD|ICD10CM|Person injured in collision betw rail trn/veh and car, subs|Person injured in collision betw rail trn/veh and car, subs +C2898816|T037|AB|V87.6XXS|ICD10CM|Person injured in clsn betw rail trn/veh and car, sequela|Person injured in clsn betw rail trn/veh and car, sequela +C2898816|T037|PT|V87.6XXS|ICD10CM|Person injured in collision between railway train or railway vehicle and car (traffic), sequela|Person injured in collision between railway train or railway vehicle and car (traffic), sequela +C0477223|T037|AB|V87.7|ICD10CM|Person injured in collision betw oth mtr veh (traffic)|Person injured in collision betw oth mtr veh (traffic) +C0477223|T037|HT|V87.7|ICD10CM|Person injured in collision between other specified motor vehicles (traffic)|Person injured in collision between other specified motor vehicles (traffic) +C0477223|T037|PT|V87.7|ICD10|Person injured in collision between other specified motor vehicles (traffic)|Person injured in collision between other specified motor vehicles (traffic) +C2898817|T037|AB|V87.7XXA|ICD10CM|Person injured in collision betw oth mtr veh (traffic), init|Person injured in collision betw oth mtr veh (traffic), init +C2898817|T037|PT|V87.7XXA|ICD10CM|Person injured in collision between other specified motor vehicles (traffic), initial encounter|Person injured in collision between other specified motor vehicles (traffic), initial encounter +C2898818|T037|AB|V87.7XXD|ICD10CM|Person injured in collision betw oth mtr veh (traffic), subs|Person injured in collision betw oth mtr veh (traffic), subs +C2898818|T037|PT|V87.7XXD|ICD10CM|Person injured in collision between other specified motor vehicles (traffic), subsequent encounter|Person injured in collision between other specified motor vehicles (traffic), subsequent encounter +C2898819|T037|AB|V87.7XXS|ICD10CM|Person injured in collision betw oth mtr veh, sequela|Person injured in collision betw oth mtr veh, sequela +C2898819|T037|PT|V87.7XXS|ICD10CM|Person injured in collision between other specified motor vehicles (traffic), sequela|Person injured in collision between other specified motor vehicles (traffic), sequela +C0477224|T037|AB|V87.8|ICD10CM|Person injured in oth nonclsn transport acc w mtr veh|Person injured in oth nonclsn transport acc w mtr veh +C0477224|T037|HT|V87.8|ICD10CM|Person injured in other specified noncollision transport accidents involving motor vehicle (traffic)|Person injured in other specified noncollision transport accidents involving motor vehicle (traffic) +C0477224|T037|PT|V87.8|ICD10|Person injured in other specified noncollision transport accidents involving motor vehicle (traffic)|Person injured in other specified noncollision transport accidents involving motor vehicle (traffic) +C2898820|T037|AB|V87.8XXA|ICD10CM|Person injured in oth nonclsn transport acc w mtr veh, init|Person injured in oth nonclsn transport acc w mtr veh, init +C2898821|T037|AB|V87.8XXD|ICD10CM|Person injured in oth nonclsn transport acc w mtr veh, subs|Person injured in oth nonclsn transport acc w mtr veh, subs +C2898822|T037|AB|V87.8XXS|ICD10CM|Person injured in oth nonclsn trnsp acc w mtr veh, sequela|Person injured in oth nonclsn trnsp acc w mtr veh, sequela +C0477225|T037|AB|V87.9|ICD10CM|Person injured in oth transport accidents involving non-mv|Person injured in oth transport accidents involving non-mv +C2898823|T037|AB|V87.9XXA|ICD10CM|Person injured in oth transport acc involving non-mv, init|Person injured in oth transport acc involving non-mv, init +C2898824|T037|AB|V87.9XXD|ICD10CM|Person injured in oth transport acc involving non-mv, subs|Person injured in oth transport acc involving non-mv, subs +C2898825|T037|AB|V87.9XXS|ICD10CM|Person injured in oth transport acc w non-mv, sequela|Person injured in oth transport acc w non-mv, sequela +C0477226|T037|AB|V88|ICD10CM|Nontraf of spcf type but victim's mode of transport unknown|Nontraf of spcf type but victim's mode of transport unknown +C0477226|T037|HT|V88|ICD10CM|Nontraffic accident of specified type but victim's mode of transport unknown|Nontraffic accident of specified type but victim's mode of transport unknown +C0477226|T037|HT|V88|ICD10|Nontraffic accident of specified type but victim's mode of transport unknown|Nontraffic accident of specified type but victim's mode of transport unknown +C0477227|T037|AB|V88.0|ICD10CM|Person injured in collision betw car and 2/3-whl mv, nontraf|Person injured in collision betw car and 2/3-whl mv, nontraf +C0477227|T037|HT|V88.0|ICD10CM|Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic|Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic +C0477227|T037|PT|V88.0|ICD10|Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic|Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic +C2898826|T037|AB|V88.0XXA|ICD10CM|Person inj in clsn betw car and 2/3-whl mv, nontraf, init|Person inj in clsn betw car and 2/3-whl mv, nontraf, init +C2898827|T037|AB|V88.0XXD|ICD10CM|Person inj in clsn betw car and 2/3-whl mv, nontraf, subs|Person inj in clsn betw car and 2/3-whl mv, nontraf, subs +C2898828|T037|AB|V88.0XXS|ICD10CM|Person inj in clsn betw car and 2/3-whl mv, nontraf, sequela|Person inj in clsn betw car and 2/3-whl mv, nontraf, sequela +C2898828|T037|PT|V88.0XXS|ICD10CM|Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic, sequela|Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic, sequela +C0477228|T037|AB|V88.1|ICD10CM|Person injured in clsn betw mtr veh and 2/3-whl mv, nontraf|Person injured in clsn betw mtr veh and 2/3-whl mv, nontraf +C2898829|T037|AB|V88.1XXA|ICD10CM|Prsn inj in clsn betw mtr veh and 2/3-whl mv, nontraf, init|Prsn inj in clsn betw mtr veh and 2/3-whl mv, nontraf, init +C2898830|T037|AB|V88.1XXD|ICD10CM|Prsn inj in clsn betw mtr veh and 2/3-whl mv, nontraf, subs|Prsn inj in clsn betw mtr veh and 2/3-whl mv, nontraf, subs +C2898831|T037|AB|V88.1XXS|ICD10CM|Prsn inj in clsn betw mtr veh and 2/3-whl mv, nontraf, sqla|Prsn inj in clsn betw mtr veh and 2/3-whl mv, nontraf, sqla +C0477229|T037|AB|V88.2|ICD10CM|Person injured in collision betw car and pk-up/van, nontraf|Person injured in collision betw car and pk-up/van, nontraf +C0477229|T037|HT|V88.2|ICD10CM|Person injured in collision between car and pick-up truck or van, nontraffic|Person injured in collision between car and pick-up truck or van, nontraffic +C0477229|T037|PT|V88.2|ICD10|Person injured in collision between car and pick-up truck or van, nontraffic|Person injured in collision between car and pick-up truck or van, nontraffic +C2898832|T037|AB|V88.2XXA|ICD10CM|Person injured in clsn betw car and pk-up/van, nontraf, init|Person injured in clsn betw car and pk-up/van, nontraf, init +C2898832|T037|PT|V88.2XXA|ICD10CM|Person injured in collision between car and pick-up truck or van, nontraffic, initial encounter|Person injured in collision between car and pick-up truck or van, nontraffic, initial encounter +C2898833|T037|AB|V88.2XXD|ICD10CM|Person injured in clsn betw car and pk-up/van, nontraf, subs|Person injured in clsn betw car and pk-up/van, nontraf, subs +C2898833|T037|PT|V88.2XXD|ICD10CM|Person injured in collision between car and pick-up truck or van, nontraffic, subsequent encounter|Person injured in collision between car and pick-up truck or van, nontraffic, subsequent encounter +C2898834|T037|AB|V88.2XXS|ICD10CM|Person inj in clsn betw car and pk-up/van, nontraf, sequela|Person inj in clsn betw car and pk-up/van, nontraf, sequela +C2898834|T037|PT|V88.2XXS|ICD10CM|Person injured in collision between car and pick-up truck or van, nontraffic, sequela|Person injured in collision between car and pick-up truck or van, nontraffic, sequela +C0477230|T037|PT|V88.3|ICD10|Person injured in collision between car and bus, nontraffic|Person injured in collision between car and bus, nontraffic +C0477230|T037|HT|V88.3|ICD10CM|Person injured in collision between car and bus, nontraffic|Person injured in collision between car and bus, nontraffic +C0477230|T037|AB|V88.3|ICD10CM|Person injured in collision between car and bus, nontraffic|Person injured in collision between car and bus, nontraffic +C2898835|T037|AB|V88.3XXA|ICD10CM|Person injured in collision betw car and bus, nontraf, init|Person injured in collision betw car and bus, nontraf, init +C2898835|T037|PT|V88.3XXA|ICD10CM|Person injured in collision between car and bus, nontraffic, initial encounter|Person injured in collision between car and bus, nontraffic, initial encounter +C2898836|T037|AB|V88.3XXD|ICD10CM|Person injured in collision betw car and bus, nontraf, subs|Person injured in collision betw car and bus, nontraf, subs +C2898836|T037|PT|V88.3XXD|ICD10CM|Person injured in collision between car and bus, nontraffic, subsequent encounter|Person injured in collision between car and bus, nontraffic, subsequent encounter +C2898837|T037|AB|V88.3XXS|ICD10CM|Person injured in clsn betw car and bus, nontraf, sequela|Person injured in clsn betw car and bus, nontraf, sequela +C2898837|T037|PT|V88.3XXS|ICD10CM|Person injured in collision between car and bus, nontraffic, sequela|Person injured in collision between car and bus, nontraffic, sequela +C0477231|T037|AB|V88.4|ICD10CM|Person injured in collision betw car and hv veh, nontraffic|Person injured in collision betw car and hv veh, nontraffic +C0477231|T037|HT|V88.4|ICD10CM|Person injured in collision between car and heavy transport vehicle, nontraffic|Person injured in collision between car and heavy transport vehicle, nontraffic +C0477231|T037|PT|V88.4|ICD10|Person injured in collision between car and heavy transport vehicle, nontraffic|Person injured in collision between car and heavy transport vehicle, nontraffic +C2898838|T037|AB|V88.4XXA|ICD10CM|Person injured in clsn betw car and hv veh, nontraf, init|Person injured in clsn betw car and hv veh, nontraf, init +C2898838|T037|PT|V88.4XXA|ICD10CM|Person injured in collision between car and heavy transport vehicle, nontraffic, initial encounter|Person injured in collision between car and heavy transport vehicle, nontraffic, initial encounter +C2898839|T037|AB|V88.4XXD|ICD10CM|Person injured in clsn betw car and hv veh, nontraf, subs|Person injured in clsn betw car and hv veh, nontraf, subs +C2898840|T037|AB|V88.4XXS|ICD10CM|Person injured in clsn betw car and hv veh, nontraf, sequela|Person injured in clsn betw car and hv veh, nontraf, sequela +C2898840|T037|PT|V88.4XXS|ICD10CM|Person injured in collision between car and heavy transport vehicle, nontraffic, sequela|Person injured in collision between car and heavy transport vehicle, nontraffic, sequela +C0477232|T037|AB|V88.5|ICD10CM|Person injured in collision betw hv veh and bus, nontraffic|Person injured in collision betw hv veh and bus, nontraffic +C0477232|T037|HT|V88.5|ICD10CM|Person injured in collision between heavy transport vehicle and bus, nontraffic|Person injured in collision between heavy transport vehicle and bus, nontraffic +C0477232|T037|PT|V88.5|ICD10|Person injured in collision between heavy transport vehicle and bus, nontraffic|Person injured in collision between heavy transport vehicle and bus, nontraffic +C2898841|T037|AB|V88.5XXA|ICD10CM|Person injured in clsn betw hv veh and bus, nontraf, init|Person injured in clsn betw hv veh and bus, nontraf, init +C2898841|T037|PT|V88.5XXA|ICD10CM|Person injured in collision between heavy transport vehicle and bus, nontraffic, initial encounter|Person injured in collision between heavy transport vehicle and bus, nontraffic, initial encounter +C2898842|T037|AB|V88.5XXD|ICD10CM|Person injured in clsn betw hv veh and bus, nontraf, subs|Person injured in clsn betw hv veh and bus, nontraf, subs +C2898843|T037|AB|V88.5XXS|ICD10CM|Person injured in clsn betw hv veh and bus, nontraf, sequela|Person injured in clsn betw hv veh and bus, nontraf, sequela +C2898843|T037|PT|V88.5XXS|ICD10CM|Person injured in collision between heavy transport vehicle and bus, nontraffic, sequela|Person injured in collision between heavy transport vehicle and bus, nontraffic, sequela +C0477233|T037|AB|V88.6|ICD10CM|Person injured in clsn betw rail trn/veh and car, nontraf|Person injured in clsn betw rail trn/veh and car, nontraf +C0477233|T037|HT|V88.6|ICD10CM|Person injured in collision between railway train or railway vehicle and car, nontraffic|Person injured in collision between railway train or railway vehicle and car, nontraffic +C0477233|T037|PT|V88.6|ICD10|Person injured in collision between railway train or railway vehicle and car, nontraffic|Person injured in collision between railway train or railway vehicle and car, nontraffic +C2898844|T037|AB|V88.6XXA|ICD10CM|Person inj in clsn betw rail trn/veh and car, nontraf, init|Person inj in clsn betw rail trn/veh and car, nontraf, init +C2898845|T037|AB|V88.6XXD|ICD10CM|Person inj in clsn betw rail trn/veh and car, nontraf, subs|Person inj in clsn betw rail trn/veh and car, nontraf, subs +C2898846|T037|AB|V88.6XXS|ICD10CM|Person inj in clsn betw rail trn/veh and car, nontraf, sqla|Person inj in clsn betw rail trn/veh and car, nontraf, sqla +C2898846|T037|PT|V88.6XXS|ICD10CM|Person injured in collision between railway train or railway vehicle and car, nontraffic, sequela|Person injured in collision between railway train or railway vehicle and car, nontraffic, sequela +C0477234|T037|AB|V88.7|ICD10CM|Person injured in collision betw mtr veh, nontraffic|Person injured in collision betw mtr veh, nontraffic +C0477234|T037|HT|V88.7|ICD10CM|Person injured in collision between other specified motor vehicle, nontraffic|Person injured in collision between other specified motor vehicle, nontraffic +C0477234|T037|PT|V88.7|ICD10|Person injured in collision between other specified motor vehicles, nontraffic|Person injured in collision between other specified motor vehicles, nontraffic +C2898847|T037|AB|V88.7XXA|ICD10CM|Person injured in collision betw mtr veh, nontraffic, init|Person injured in collision betw mtr veh, nontraffic, init +C2898847|T037|PT|V88.7XXA|ICD10CM|Person injured in collision between other specified motor vehicle, nontraffic, initial encounter|Person injured in collision between other specified motor vehicle, nontraffic, initial encounter +C2898848|T037|AB|V88.7XXD|ICD10CM|Person injured in collision betw mtr veh, nontraffic, subs|Person injured in collision betw mtr veh, nontraffic, subs +C2898848|T037|PT|V88.7XXD|ICD10CM|Person injured in collision between other specified motor vehicle, nontraffic, subsequent encounter|Person injured in collision between other specified motor vehicle, nontraffic, subsequent encounter +C2898849|T037|AB|V88.7XXS|ICD10CM|Person injured in collision betw mtr veh, nontraf, sequela|Person injured in collision betw mtr veh, nontraf, sequela +C2898849|T037|PT|V88.7XXS|ICD10CM|Person injured in collision between other specified motor vehicle, nontraffic, sequela|Person injured in collision between other specified motor vehicle, nontraffic, sequela +C0477235|T037|AB|V88.8|ICD10CM|Person injured in oth nonclsn trnsp acc w mtr veh, nontraf|Person injured in oth nonclsn trnsp acc w mtr veh, nontraf +C2898850|T037|AB|V88.8XXA|ICD10CM|Person inj in oth nonclsn trnsp acc w mtr veh, nontraf, init|Person inj in oth nonclsn trnsp acc w mtr veh, nontraf, init +C2898851|T037|AB|V88.8XXD|ICD10CM|Person inj in oth nonclsn trnsp acc w mtr veh, nontraf, subs|Person inj in oth nonclsn trnsp acc w mtr veh, nontraf, subs +C2898852|T037|AB|V88.8XXS|ICD10CM|Person inj in oth nonclsn trnsp acc w mtr veh, nontraf, sqla|Person inj in oth nonclsn trnsp acc w mtr veh, nontraf, sqla +C0477236|T037|AB|V88.9|ICD10CM|Person injured in oth transport acc w non-mv, nontraf|Person injured in oth transport acc w non-mv, nontraf +C2898853|T037|AB|V88.9XXA|ICD10CM|Person injured in oth transport acc w non-mv, nontraf, init|Person injured in oth transport acc w non-mv, nontraf, init +C2898854|T037|AB|V88.9XXD|ICD10CM|Person injured in oth transport acc w non-mv, nontraf, subs|Person injured in oth transport acc w non-mv, nontraf, subs +C2898855|T037|AB|V88.9XXS|ICD10CM|Person injured in oth trnsp acc w non-mv, nontraf, sequela|Person injured in oth trnsp acc w non-mv, nontraf, sequela +C0477237|T037|AB|V89|ICD10CM|Motor- or nonmotor-vehicle accident, type of vehicle unsp|Motor- or nonmotor-vehicle accident, type of vehicle unsp +C0477237|T037|HT|V89|ICD10CM|Motor- or nonmotor-vehicle accident, type of vehicle unspecified|Motor- or nonmotor-vehicle accident, type of vehicle unspecified +C0477237|T037|HT|V89|ICD10|Motor- or nonmotor-vehicle accident, type of vehicle unspecified|Motor- or nonmotor-vehicle accident, type of vehicle unspecified +C0178348|T037|ET|V89.0|ICD10CM|Motor-vehicle accident NOS, nontraffic|Motor-vehicle accident NOS, nontraffic +C0477238|T037|AB|V89.0|ICD10CM|Person injured in unsp motor-vehicle accident, nontraffic|Person injured in unsp motor-vehicle accident, nontraffic +C0477238|T037|HT|V89.0|ICD10CM|Person injured in unspecified motor-vehicle accident, nontraffic|Person injured in unspecified motor-vehicle accident, nontraffic +C0477238|T037|PT|V89.0|ICD10|Person injured in unspecified motor-vehicle accident, nontraffic|Person injured in unspecified motor-vehicle accident, nontraffic +C2898856|T037|AB|V89.0XXA|ICD10CM|Person injured in unsp motor-vehicle accident, nontraf, init|Person injured in unsp motor-vehicle accident, nontraf, init +C2898856|T037|PT|V89.0XXA|ICD10CM|Person injured in unspecified motor-vehicle accident, nontraffic, initial encounter|Person injured in unspecified motor-vehicle accident, nontraffic, initial encounter +C2898857|T037|AB|V89.0XXD|ICD10CM|Person injured in unsp motor-vehicle accident, nontraf, subs|Person injured in unsp motor-vehicle accident, nontraf, subs +C2898857|T037|PT|V89.0XXD|ICD10CM|Person injured in unspecified motor-vehicle accident, nontraffic, subsequent encounter|Person injured in unspecified motor-vehicle accident, nontraffic, subsequent encounter +C2898858|T037|AB|V89.0XXS|ICD10CM|Person injured in unsp motor-vehicle acc, nontraf, sequela|Person injured in unsp motor-vehicle acc, nontraf, sequela +C2898858|T037|PT|V89.0XXS|ICD10CM|Person injured in unspecified motor-vehicle accident, nontraffic, sequela|Person injured in unspecified motor-vehicle accident, nontraffic, sequela +C2898859|T037|ET|V89.1|ICD10CM|Nonmotor-vehicle accident NOS (nontraffic)|Nonmotor-vehicle accident NOS (nontraffic) +C0477239|T037|AB|V89.1|ICD10CM|Person injured in unsp nonmotor-vehicle accident, nontraffic|Person injured in unsp nonmotor-vehicle accident, nontraffic +C0477239|T037|HT|V89.1|ICD10CM|Person injured in unspecified nonmotor-vehicle accident, nontraffic|Person injured in unspecified nonmotor-vehicle accident, nontraffic +C0477239|T037|PT|V89.1|ICD10|Person injured in unspecified nonmotor-vehicle accident, nontraffic|Person injured in unspecified nonmotor-vehicle accident, nontraffic +C2898860|T037|AB|V89.1XXA|ICD10CM|Person injured in unsp nonmotor-vehicle acc, nontraf, init|Person injured in unsp nonmotor-vehicle acc, nontraf, init +C2898860|T037|PT|V89.1XXA|ICD10CM|Person injured in unspecified nonmotor-vehicle accident, nontraffic, initial encounter|Person injured in unspecified nonmotor-vehicle accident, nontraffic, initial encounter +C2898861|T037|AB|V89.1XXD|ICD10CM|Person injured in unsp nonmotor-vehicle acc, nontraf, subs|Person injured in unsp nonmotor-vehicle acc, nontraf, subs +C2898861|T037|PT|V89.1XXD|ICD10CM|Person injured in unspecified nonmotor-vehicle accident, nontraffic, subsequent encounter|Person injured in unspecified nonmotor-vehicle accident, nontraffic, subsequent encounter +C2898862|T037|AB|V89.1XXS|ICD10CM|Person inj in unsp nonmotor-vehicle acc, nontraf, sequela|Person inj in unsp nonmotor-vehicle acc, nontraf, sequela +C2898862|T037|PT|V89.1XXS|ICD10CM|Person injured in unspecified nonmotor-vehicle accident, nontraffic, sequela|Person injured in unspecified nonmotor-vehicle accident, nontraffic, sequela +C4760746|T037|ET|V89.2|ICD10CM|Motor-vehicle accident [MVA] NOS|Motor-vehicle accident [MVA] NOS +C0477240|T037|AB|V89.2|ICD10CM|Person injured in unsp motor-vehicle accident, traffic|Person injured in unsp motor-vehicle accident, traffic +C0477240|T037|HT|V89.2|ICD10CM|Person injured in unspecified motor-vehicle accident, traffic|Person injured in unspecified motor-vehicle accident, traffic +C0477240|T037|PT|V89.2|ICD10|Person injured in unspecified motor-vehicle accident, traffic|Person injured in unspecified motor-vehicle accident, traffic +C0362049|T037|ET|V89.2|ICD10CM|Road (traffic) accident [RTA] NOS|Road (traffic) accident [RTA] NOS +C2898863|T037|AB|V89.2XXA|ICD10CM|Person injured in unsp motor-vehicle accident, traffic, init|Person injured in unsp motor-vehicle accident, traffic, init +C2898863|T037|PT|V89.2XXA|ICD10CM|Person injured in unspecified motor-vehicle accident, traffic, initial encounter|Person injured in unspecified motor-vehicle accident, traffic, initial encounter +C2898864|T037|AB|V89.2XXD|ICD10CM|Person injured in unsp motor-vehicle accident, traffic, subs|Person injured in unsp motor-vehicle accident, traffic, subs +C2898864|T037|PT|V89.2XXD|ICD10CM|Person injured in unspecified motor-vehicle accident, traffic, subsequent encounter|Person injured in unspecified motor-vehicle accident, traffic, subsequent encounter +C2898865|T037|AB|V89.2XXS|ICD10CM|Person injured in unsp motor-vehicle acc, traffic, sequela|Person injured in unsp motor-vehicle acc, traffic, sequela +C2898865|T037|PT|V89.2XXS|ICD10CM|Person injured in unspecified motor-vehicle accident, traffic, sequela|Person injured in unspecified motor-vehicle accident, traffic, sequela +C2898866|T037|ET|V89.3|ICD10CM|Nonmotor-vehicle traffic accident NOS|Nonmotor-vehicle traffic accident NOS +C0477241|T037|AB|V89.3|ICD10CM|Person injured in unsp nonmotor-vehicle accident, traffic|Person injured in unsp nonmotor-vehicle accident, traffic +C0477241|T037|HT|V89.3|ICD10CM|Person injured in unspecified nonmotor-vehicle accident, traffic|Person injured in unspecified nonmotor-vehicle accident, traffic +C0477241|T037|PT|V89.3|ICD10|Person injured in unspecified nonmotor-vehicle accident, traffic|Person injured in unspecified nonmotor-vehicle accident, traffic +C2898867|T037|AB|V89.3XXA|ICD10CM|Person injured in unsp nonmotor-vehicle acc, traffic, init|Person injured in unsp nonmotor-vehicle acc, traffic, init +C2898867|T037|PT|V89.3XXA|ICD10CM|Person injured in unspecified nonmotor-vehicle accident, traffic, initial encounter|Person injured in unspecified nonmotor-vehicle accident, traffic, initial encounter +C2898868|T037|AB|V89.3XXD|ICD10CM|Person injured in unsp nonmotor-vehicle acc, traffic, subs|Person injured in unsp nonmotor-vehicle acc, traffic, subs +C2898868|T037|PT|V89.3XXD|ICD10CM|Person injured in unspecified nonmotor-vehicle accident, traffic, subsequent encounter|Person injured in unspecified nonmotor-vehicle accident, traffic, subsequent encounter +C2898869|T037|AB|V89.3XXS|ICD10CM|Person inj in unsp nonmotor-vehicle acc, traffic, sequela|Person inj in unsp nonmotor-vehicle acc, traffic, sequela +C2898869|T037|PT|V89.3XXS|ICD10CM|Person injured in unspecified nonmotor-vehicle accident, traffic, sequela|Person injured in unspecified nonmotor-vehicle accident, traffic, sequela +C0337196|T037|ET|V89.9|ICD10CM|Collision NOS|Collision NOS +C0477242|T037|HT|V89.9|ICD10CM|Person injured in unspecified vehicle accident|Person injured in unspecified vehicle accident +C0477242|T037|AB|V89.9|ICD10CM|Person injured in unspecified vehicle accident|Person injured in unspecified vehicle accident +C0477242|T037|PT|V89.9|ICD10|Person injured in unspecified vehicle accident|Person injured in unspecified vehicle accident +C2898870|T037|AB|V89.9XXA|ICD10CM|Person injured in unspecified vehicle accident, init encntr|Person injured in unspecified vehicle accident, init encntr +C2898870|T037|PT|V89.9XXA|ICD10CM|Person injured in unspecified vehicle accident, initial encounter|Person injured in unspecified vehicle accident, initial encounter +C2898871|T037|AB|V89.9XXD|ICD10CM|Person injured in unspecified vehicle accident, subs encntr|Person injured in unspecified vehicle accident, subs encntr +C2898871|T037|PT|V89.9XXD|ICD10CM|Person injured in unspecified vehicle accident, subsequent encounter|Person injured in unspecified vehicle accident, subsequent encounter +C2898872|T037|AB|V89.9XXS|ICD10CM|Person injured in unspecified vehicle accident, sequela|Person injured in unspecified vehicle accident, sequela +C2898872|T037|PT|V89.9XXS|ICD10CM|Person injured in unspecified vehicle accident, sequela|Person injured in unspecified vehicle accident, sequela +C2898873|T037|AB|V90|ICD10CM|Drowning and submersion due to accident to watercraft|Drowning and submersion due to accident to watercraft +C2898873|T037|HT|V90|ICD10CM|Drowning and submersion due to accident to watercraft|Drowning and submersion due to accident to watercraft +C4721415|T037|HT|V90-V94|ICD10CM|Water transport accidents (V90-V94)|Water transport accidents (V90-V94) +C4721415|T037|HT|V90-V94.9|ICD10|Water transport accidents|Water transport accidents +C0477243|T037|PT|V90.0|ICD10|Accident to watercraft causing drowning and submersion, merchant ship|Accident to watercraft causing drowning and submersion, merchant ship +C2898912|T037|AB|V90.0|ICD10CM|Drowning and submersion due to watercraft overturning|Drowning and submersion due to watercraft overturning +C2898912|T037|HT|V90.0|ICD10CM|Drowning and submersion due to watercraft overturning|Drowning and submersion due to watercraft overturning +C2898874|T037|AB|V90.00|ICD10CM|Drowning and submersion due to merchant ship overturning|Drowning and submersion due to merchant ship overturning +C2898874|T037|HT|V90.00|ICD10CM|Drowning and submersion due to merchant ship overturning|Drowning and submersion due to merchant ship overturning +C2898875|T037|AB|V90.00XA|ICD10CM|Drown due to merchant ship overturning, init|Drown due to merchant ship overturning, init +C2898875|T037|PT|V90.00XA|ICD10CM|Drowning and submersion due to merchant ship overturning, initial encounter|Drowning and submersion due to merchant ship overturning, initial encounter +C2898876|T037|AB|V90.00XD|ICD10CM|Drown due to merchant ship overturning, subs|Drown due to merchant ship overturning, subs +C2898876|T037|PT|V90.00XD|ICD10CM|Drowning and submersion due to merchant ship overturning, subsequent encounter|Drowning and submersion due to merchant ship overturning, subsequent encounter +C2898877|T037|AB|V90.00XS|ICD10CM|Drown due to merchant ship overturning, sequela|Drown due to merchant ship overturning, sequela +C2898877|T037|PT|V90.00XS|ICD10CM|Drowning and submersion due to merchant ship overturning, sequela|Drowning and submersion due to merchant ship overturning, sequela +C2898878|T037|ET|V90.01|ICD10CM|Drowning and submersion due to Ferry-boat overturning|Drowning and submersion due to Ferry-boat overturning +C2898879|T037|ET|V90.01|ICD10CM|Drowning and submersion due to Liner overturning|Drowning and submersion due to Liner overturning +C2898880|T037|AB|V90.01|ICD10CM|Drowning and submersion due to passenger ship overturning|Drowning and submersion due to passenger ship overturning +C2898880|T037|HT|V90.01|ICD10CM|Drowning and submersion due to passenger ship overturning|Drowning and submersion due to passenger ship overturning +C2898881|T037|AB|V90.01XA|ICD10CM|Drown due to passenger ship overturning, init|Drown due to passenger ship overturning, init +C2898881|T037|PT|V90.01XA|ICD10CM|Drowning and submersion due to passenger ship overturning, initial encounter|Drowning and submersion due to passenger ship overturning, initial encounter +C2898882|T037|AB|V90.01XD|ICD10CM|Drown due to passenger ship overturning, subs|Drown due to passenger ship overturning, subs +C2898882|T037|PT|V90.01XD|ICD10CM|Drowning and submersion due to passenger ship overturning, subsequent encounter|Drowning and submersion due to passenger ship overturning, subsequent encounter +C2898883|T037|AB|V90.01XS|ICD10CM|Drown due to passenger ship overturning, sequela|Drown due to passenger ship overturning, sequela +C2898883|T037|PT|V90.01XS|ICD10CM|Drowning and submersion due to passenger ship overturning, sequela|Drowning and submersion due to passenger ship overturning, sequela +C2898884|T037|AB|V90.02|ICD10CM|Drowning and submersion due to fishing boat overturning|Drowning and submersion due to fishing boat overturning +C2898884|T037|HT|V90.02|ICD10CM|Drowning and submersion due to fishing boat overturning|Drowning and submersion due to fishing boat overturning +C2898885|T037|AB|V90.02XA|ICD10CM|Drown due to fishing boat overturning, init|Drown due to fishing boat overturning, init +C2898885|T037|PT|V90.02XA|ICD10CM|Drowning and submersion due to fishing boat overturning, initial encounter|Drowning and submersion due to fishing boat overturning, initial encounter +C2898886|T037|AB|V90.02XD|ICD10CM|Drown due to fishing boat overturning, subs|Drown due to fishing boat overturning, subs +C2898886|T037|PT|V90.02XD|ICD10CM|Drowning and submersion due to fishing boat overturning, subsequent encounter|Drowning and submersion due to fishing boat overturning, subsequent encounter +C2898887|T037|AB|V90.02XS|ICD10CM|Drown due to fishing boat overturning, sequela|Drown due to fishing boat overturning, sequela +C2898887|T037|PT|V90.02XS|ICD10CM|Drowning and submersion due to fishing boat overturning, sequela|Drowning and submersion due to fishing boat overturning, sequela +C2898890|T037|AB|V90.03|ICD10CM|Drown due to oth powered watercraft overturning|Drown due to oth powered watercraft overturning +C2898888|T037|ET|V90.03|ICD10CM|Drowning and submersion due to Hovercraft (on open water) overturning|Drowning and submersion due to Hovercraft (on open water) overturning +C2898889|T037|ET|V90.03|ICD10CM|Drowning and submersion due to Jet ski overturning|Drowning and submersion due to Jet ski overturning +C2898890|T037|HT|V90.03|ICD10CM|Drowning and submersion due to other powered watercraft overturning|Drowning and submersion due to other powered watercraft overturning +C2898891|T037|AB|V90.03XA|ICD10CM|Drown due to oth powered watercraft overturning, init|Drown due to oth powered watercraft overturning, init +C2898891|T037|PT|V90.03XA|ICD10CM|Drowning and submersion due to other powered watercraft overturning, initial encounter|Drowning and submersion due to other powered watercraft overturning, initial encounter +C2898892|T037|AB|V90.03XD|ICD10CM|Drown due to oth powered watercraft overturning, subs|Drown due to oth powered watercraft overturning, subs +C2898892|T037|PT|V90.03XD|ICD10CM|Drowning and submersion due to other powered watercraft overturning, subsequent encounter|Drowning and submersion due to other powered watercraft overturning, subsequent encounter +C2898893|T037|AB|V90.03XS|ICD10CM|Drown due to oth powered watercraft overturning, sequela|Drown due to oth powered watercraft overturning, sequela +C2898893|T037|PT|V90.03XS|ICD10CM|Drowning and submersion due to other powered watercraft overturning, sequela|Drowning and submersion due to other powered watercraft overturning, sequela +C2898894|T037|AB|V90.04|ICD10CM|Drowning and submersion due to sailboat overturning|Drowning and submersion due to sailboat overturning +C2898894|T037|HT|V90.04|ICD10CM|Drowning and submersion due to sailboat overturning|Drowning and submersion due to sailboat overturning +C2898895|T037|AB|V90.04XA|ICD10CM|Drowning and submersion due to sailboat overturning, init|Drowning and submersion due to sailboat overturning, init +C2898895|T037|PT|V90.04XA|ICD10CM|Drowning and submersion due to sailboat overturning, initial encounter|Drowning and submersion due to sailboat overturning, initial encounter +C2898896|T037|AB|V90.04XD|ICD10CM|Drowning and submersion due to sailboat overturning, subs|Drowning and submersion due to sailboat overturning, subs +C2898896|T037|PT|V90.04XD|ICD10CM|Drowning and submersion due to sailboat overturning, subsequent encounter|Drowning and submersion due to sailboat overturning, subsequent encounter +C2898897|T037|AB|V90.04XS|ICD10CM|Drowning and submersion due to sailboat overturning, sequela|Drowning and submersion due to sailboat overturning, sequela +C2898897|T037|PT|V90.04XS|ICD10CM|Drowning and submersion due to sailboat overturning, sequela|Drowning and submersion due to sailboat overturning, sequela +C2898898|T037|AB|V90.05|ICD10CM|Drowning and submersion due to canoe or kayak overturning|Drowning and submersion due to canoe or kayak overturning +C2898898|T037|HT|V90.05|ICD10CM|Drowning and submersion due to canoe or kayak overturning|Drowning and submersion due to canoe or kayak overturning +C2898899|T037|AB|V90.05XA|ICD10CM|Drown due to canoe or kayak overturning, init|Drown due to canoe or kayak overturning, init +C2898899|T037|PT|V90.05XA|ICD10CM|Drowning and submersion due to canoe or kayak overturning, initial encounter|Drowning and submersion due to canoe or kayak overturning, initial encounter +C2898900|T037|AB|V90.05XD|ICD10CM|Drown due to canoe or kayak overturning, subs|Drown due to canoe or kayak overturning, subs +C2898900|T037|PT|V90.05XD|ICD10CM|Drowning and submersion due to canoe or kayak overturning, subsequent encounter|Drowning and submersion due to canoe or kayak overturning, subsequent encounter +C2898901|T037|AB|V90.05XS|ICD10CM|Drown due to canoe or kayak overturning, sequela|Drown due to canoe or kayak overturning, sequela +C2898901|T037|PT|V90.05XS|ICD10CM|Drowning and submersion due to canoe or kayak overturning, sequela|Drowning and submersion due to canoe or kayak overturning, sequela +C2898902|T037|AB|V90.06|ICD10CM|Drown due to (nonpowered) inflatable craft overturning|Drown due to (nonpowered) inflatable craft overturning +C2898902|T037|HT|V90.06|ICD10CM|Drowning and submersion due to (nonpowered) inflatable craft overturning|Drowning and submersion due to (nonpowered) inflatable craft overturning +C2898903|T037|AB|V90.06XA|ICD10CM|Drown due to (nonpowered) inflatable craft overturning, init|Drown due to (nonpowered) inflatable craft overturning, init +C2898903|T037|PT|V90.06XA|ICD10CM|Drowning and submersion due to (nonpowered) inflatable craft overturning, initial encounter|Drowning and submersion due to (nonpowered) inflatable craft overturning, initial encounter +C2898904|T037|AB|V90.06XD|ICD10CM|Drown due to (nonpowered) inflatable craft overturning, subs|Drown due to (nonpowered) inflatable craft overturning, subs +C2898904|T037|PT|V90.06XD|ICD10CM|Drowning and submersion due to (nonpowered) inflatable craft overturning, subsequent encounter|Drowning and submersion due to (nonpowered) inflatable craft overturning, subsequent encounter +C2898905|T037|AB|V90.06XS|ICD10CM|Drown due to (nonpowered) inflatbl crft overturning, sequela|Drown due to (nonpowered) inflatbl crft overturning, sequela +C2898905|T037|PT|V90.06XS|ICD10CM|Drowning and submersion due to (nonpowered) inflatable craft overturning, sequela|Drowning and submersion due to (nonpowered) inflatable craft overturning, sequela +C2898907|T037|HT|V90.08|ICD10CM|Drowning and submersion due to other unpowered watercraft overturning|Drowning and submersion due to other unpowered watercraft overturning +C2898907|T037|AB|V90.08|ICD10CM|Drowning and submersion due to unpowr wtrcrft overturning|Drowning and submersion due to unpowr wtrcrft overturning +C2898906|T037|ET|V90.08|ICD10CM|Drowning and submersion due to windsurfer overturning|Drowning and submersion due to windsurfer overturning +C2898908|T037|AB|V90.08XA|ICD10CM|Drown due to unpowr wtrcrft overturning, init|Drown due to unpowr wtrcrft overturning, init +C2898908|T037|PT|V90.08XA|ICD10CM|Drowning and submersion due to other unpowered watercraft overturning, initial encounter|Drowning and submersion due to other unpowered watercraft overturning, initial encounter +C2898909|T037|AB|V90.08XD|ICD10CM|Drown due to unpowr wtrcrft overturning, subs|Drown due to unpowr wtrcrft overturning, subs +C2898909|T037|PT|V90.08XD|ICD10CM|Drowning and submersion due to other unpowered watercraft overturning, subsequent encounter|Drowning and submersion due to other unpowered watercraft overturning, subsequent encounter +C2898910|T037|AB|V90.08XS|ICD10CM|Drown due to unpowr wtrcrft overturning, sequela|Drown due to unpowr wtrcrft overturning, sequela +C2898910|T037|PT|V90.08XS|ICD10CM|Drowning and submersion due to other unpowered watercraft overturning, sequela|Drowning and submersion due to other unpowered watercraft overturning, sequela +C0415807|T037|ET|V90.09|ICD10CM|Drowning and submersion due to boat NOS overturning|Drowning and submersion due to boat NOS overturning +C2898911|T037|ET|V90.09|ICD10CM|Drowning and submersion due to ship NOS overturning|Drowning and submersion due to ship NOS overturning +C2898913|T037|AB|V90.09|ICD10CM|Drowning and submersion due to unsp watercraft overturning|Drowning and submersion due to unsp watercraft overturning +C2898913|T037|HT|V90.09|ICD10CM|Drowning and submersion due to unspecified watercraft overturning|Drowning and submersion due to unspecified watercraft overturning +C2898912|T037|ET|V90.09|ICD10CM|Drowning and submersion due to watercraft NOS overturning|Drowning and submersion due to watercraft NOS overturning +C2898914|T037|AB|V90.09XA|ICD10CM|Drown due to unsp watercraft overturning, init|Drown due to unsp watercraft overturning, init +C2898914|T037|PT|V90.09XA|ICD10CM|Drowning and submersion due to unspecified watercraft overturning, initial encounter|Drowning and submersion due to unspecified watercraft overturning, initial encounter +C2898915|T037|AB|V90.09XD|ICD10CM|Drown due to unsp watercraft overturning, subs|Drown due to unsp watercraft overturning, subs +C2898915|T037|PT|V90.09XD|ICD10CM|Drowning and submersion due to unspecified watercraft overturning, subsequent encounter|Drowning and submersion due to unspecified watercraft overturning, subsequent encounter +C2898916|T037|AB|V90.09XS|ICD10CM|Drown due to unsp watercraft overturning, sequela|Drown due to unsp watercraft overturning, sequela +C2898916|T037|PT|V90.09XS|ICD10CM|Drowning and submersion due to unspecified watercraft overturning, sequela|Drowning and submersion due to unspecified watercraft overturning, sequela +C0477244|T037|PT|V90.1|ICD10|Accident to watercraft causing drowning and submersion, passenger ship|Accident to watercraft causing drowning and submersion, passenger ship +C2898954|T037|AB|V90.1|ICD10CM|Drowning and submersion due to watercraft sinking|Drowning and submersion due to watercraft sinking +C2898954|T037|HT|V90.1|ICD10CM|Drowning and submersion due to watercraft sinking|Drowning and submersion due to watercraft sinking +C2898917|T037|AB|V90.10|ICD10CM|Drowning and submersion due to merchant ship sinking|Drowning and submersion due to merchant ship sinking +C2898917|T037|HT|V90.10|ICD10CM|Drowning and submersion due to merchant ship sinking|Drowning and submersion due to merchant ship sinking +C2898918|T037|AB|V90.10XA|ICD10CM|Drowning and submersion due to merchant ship sinking, init|Drowning and submersion due to merchant ship sinking, init +C2898918|T037|PT|V90.10XA|ICD10CM|Drowning and submersion due to merchant ship sinking, initial encounter|Drowning and submersion due to merchant ship sinking, initial encounter +C2898919|T037|AB|V90.10XD|ICD10CM|Drowning and submersion due to merchant ship sinking, subs|Drowning and submersion due to merchant ship sinking, subs +C2898919|T037|PT|V90.10XD|ICD10CM|Drowning and submersion due to merchant ship sinking, subsequent encounter|Drowning and submersion due to merchant ship sinking, subsequent encounter +C2898920|T037|AB|V90.10XS|ICD10CM|Drown due to merchant ship sinking, sequela|Drown due to merchant ship sinking, sequela +C2898920|T037|PT|V90.10XS|ICD10CM|Drowning and submersion due to merchant ship sinking, sequela|Drowning and submersion due to merchant ship sinking, sequela +C2898921|T037|ET|V90.11|ICD10CM|Drowning and submersion due to Ferry-boat sinking|Drowning and submersion due to Ferry-boat sinking +C2898922|T037|ET|V90.11|ICD10CM|Drowning and submersion due to Liner sinking|Drowning and submersion due to Liner sinking +C2898923|T037|AB|V90.11|ICD10CM|Drowning and submersion due to passenger ship sinking|Drowning and submersion due to passenger ship sinking +C2898923|T037|HT|V90.11|ICD10CM|Drowning and submersion due to passenger ship sinking|Drowning and submersion due to passenger ship sinking +C2898924|T037|AB|V90.11XA|ICD10CM|Drowning and submersion due to passenger ship sinking, init|Drowning and submersion due to passenger ship sinking, init +C2898924|T037|PT|V90.11XA|ICD10CM|Drowning and submersion due to passenger ship sinking, initial encounter|Drowning and submersion due to passenger ship sinking, initial encounter +C2898925|T037|AB|V90.11XD|ICD10CM|Drowning and submersion due to passenger ship sinking, subs|Drowning and submersion due to passenger ship sinking, subs +C2898925|T037|PT|V90.11XD|ICD10CM|Drowning and submersion due to passenger ship sinking, subsequent encounter|Drowning and submersion due to passenger ship sinking, subsequent encounter +C2898926|T037|AB|V90.11XS|ICD10CM|Drown due to passenger ship sinking, sequela|Drown due to passenger ship sinking, sequela +C2898926|T037|PT|V90.11XS|ICD10CM|Drowning and submersion due to passenger ship sinking, sequela|Drowning and submersion due to passenger ship sinking, sequela +C2898927|T037|AB|V90.12|ICD10CM|Drowning and submersion due to fishing boat sinking|Drowning and submersion due to fishing boat sinking +C2898927|T037|HT|V90.12|ICD10CM|Drowning and submersion due to fishing boat sinking|Drowning and submersion due to fishing boat sinking +C2898928|T037|AB|V90.12XA|ICD10CM|Drowning and submersion due to fishing boat sinking, init|Drowning and submersion due to fishing boat sinking, init +C2898928|T037|PT|V90.12XA|ICD10CM|Drowning and submersion due to fishing boat sinking, initial encounter|Drowning and submersion due to fishing boat sinking, initial encounter +C2898929|T037|AB|V90.12XD|ICD10CM|Drowning and submersion due to fishing boat sinking, subs|Drowning and submersion due to fishing boat sinking, subs +C2898929|T037|PT|V90.12XD|ICD10CM|Drowning and submersion due to fishing boat sinking, subsequent encounter|Drowning and submersion due to fishing boat sinking, subsequent encounter +C2898930|T037|AB|V90.12XS|ICD10CM|Drowning and submersion due to fishing boat sinking, sequela|Drowning and submersion due to fishing boat sinking, sequela +C2898930|T037|PT|V90.12XS|ICD10CM|Drowning and submersion due to fishing boat sinking, sequela|Drowning and submersion due to fishing boat sinking, sequela +C2898933|T037|AB|V90.13|ICD10CM|Drown due to oth powered watercraft sinking|Drown due to oth powered watercraft sinking +C2898931|T037|ET|V90.13|ICD10CM|Drowning and submersion due to Hovercraft (on open water) sinking|Drowning and submersion due to Hovercraft (on open water) sinking +C2898932|T037|ET|V90.13|ICD10CM|Drowning and submersion due to Jet ski sinking|Drowning and submersion due to Jet ski sinking +C2898933|T037|HT|V90.13|ICD10CM|Drowning and submersion due to other powered watercraft sinking|Drowning and submersion due to other powered watercraft sinking +C2898934|T037|AB|V90.13XA|ICD10CM|Drown due to oth powered watercraft sinking, init|Drown due to oth powered watercraft sinking, init +C2898934|T037|PT|V90.13XA|ICD10CM|Drowning and submersion due to other powered watercraft sinking, initial encounter|Drowning and submersion due to other powered watercraft sinking, initial encounter +C2898935|T037|AB|V90.13XD|ICD10CM|Drown due to oth powered watercraft sinking, subs|Drown due to oth powered watercraft sinking, subs +C2898935|T037|PT|V90.13XD|ICD10CM|Drowning and submersion due to other powered watercraft sinking, subsequent encounter|Drowning and submersion due to other powered watercraft sinking, subsequent encounter +C2898936|T037|AB|V90.13XS|ICD10CM|Drown due to oth powered watercraft sinking, sequela|Drown due to oth powered watercraft sinking, sequela +C2898936|T037|PT|V90.13XS|ICD10CM|Drowning and submersion due to other powered watercraft sinking, sequela|Drowning and submersion due to other powered watercraft sinking, sequela +C2898937|T037|AB|V90.14|ICD10CM|Drowning and submersion due to sailboat sinking|Drowning and submersion due to sailboat sinking +C2898937|T037|HT|V90.14|ICD10CM|Drowning and submersion due to sailboat sinking|Drowning and submersion due to sailboat sinking +C2898938|T037|AB|V90.14XA|ICD10CM|Drowning and submersion due to sailboat sinking, init encntr|Drowning and submersion due to sailboat sinking, init encntr +C2898938|T037|PT|V90.14XA|ICD10CM|Drowning and submersion due to sailboat sinking, initial encounter|Drowning and submersion due to sailboat sinking, initial encounter +C2898939|T037|AB|V90.14XD|ICD10CM|Drowning and submersion due to sailboat sinking, subs encntr|Drowning and submersion due to sailboat sinking, subs encntr +C2898939|T037|PT|V90.14XD|ICD10CM|Drowning and submersion due to sailboat sinking, subsequent encounter|Drowning and submersion due to sailboat sinking, subsequent encounter +C2898940|T037|AB|V90.14XS|ICD10CM|Drowning and submersion due to sailboat sinking, sequela|Drowning and submersion due to sailboat sinking, sequela +C2898940|T037|PT|V90.14XS|ICD10CM|Drowning and submersion due to sailboat sinking, sequela|Drowning and submersion due to sailboat sinking, sequela +C2898941|T037|AB|V90.15|ICD10CM|Drowning and submersion due to canoe or kayak sinking|Drowning and submersion due to canoe or kayak sinking +C2898941|T037|HT|V90.15|ICD10CM|Drowning and submersion due to canoe or kayak sinking|Drowning and submersion due to canoe or kayak sinking +C2898942|T037|AB|V90.15XA|ICD10CM|Drowning and submersion due to canoe or kayak sinking, init|Drowning and submersion due to canoe or kayak sinking, init +C2898942|T037|PT|V90.15XA|ICD10CM|Drowning and submersion due to canoe or kayak sinking, initial encounter|Drowning and submersion due to canoe or kayak sinking, initial encounter +C2898943|T037|AB|V90.15XD|ICD10CM|Drowning and submersion due to canoe or kayak sinking, subs|Drowning and submersion due to canoe or kayak sinking, subs +C2898943|T037|PT|V90.15XD|ICD10CM|Drowning and submersion due to canoe or kayak sinking, subsequent encounter|Drowning and submersion due to canoe or kayak sinking, subsequent encounter +C2898944|T037|AB|V90.15XS|ICD10CM|Drown due to canoe or kayak sinking, sequela|Drown due to canoe or kayak sinking, sequela +C2898944|T037|PT|V90.15XS|ICD10CM|Drowning and submersion due to canoe or kayak sinking, sequela|Drowning and submersion due to canoe or kayak sinking, sequela +C2898945|T037|AB|V90.16|ICD10CM|Drown due to (nonpowered) inflatable craft sinking|Drown due to (nonpowered) inflatable craft sinking +C2898945|T037|HT|V90.16|ICD10CM|Drowning and submersion due to (nonpowered) inflatable craft sinking|Drowning and submersion due to (nonpowered) inflatable craft sinking +C2898946|T037|AB|V90.16XA|ICD10CM|Drown due to (nonpowered) inflatable craft sinking, init|Drown due to (nonpowered) inflatable craft sinking, init +C2898946|T037|PT|V90.16XA|ICD10CM|Drowning and submersion due to (nonpowered) inflatable craft sinking, initial encounter|Drowning and submersion due to (nonpowered) inflatable craft sinking, initial encounter +C2898947|T037|AB|V90.16XD|ICD10CM|Drown due to (nonpowered) inflatable craft sinking, subs|Drown due to (nonpowered) inflatable craft sinking, subs +C2898947|T037|PT|V90.16XD|ICD10CM|Drowning and submersion due to (nonpowered) inflatable craft sinking, subsequent encounter|Drowning and submersion due to (nonpowered) inflatable craft sinking, subsequent encounter +C2898948|T037|AB|V90.16XS|ICD10CM|Drown due to (nonpowered) inflatable craft sinking, sequela|Drown due to (nonpowered) inflatable craft sinking, sequela +C2898948|T037|PT|V90.16XS|ICD10CM|Drowning and submersion due to (nonpowered) inflatable craft sinking, sequela|Drowning and submersion due to (nonpowered) inflatable craft sinking, sequela +C2898949|T037|HT|V90.18|ICD10CM|Drowning and submersion due to other unpowered watercraft sinking|Drowning and submersion due to other unpowered watercraft sinking +C2898949|T037|AB|V90.18|ICD10CM|Drowning and submersion due to unpowr wtrcrft sinking|Drowning and submersion due to unpowr wtrcrft sinking +C2898950|T037|PT|V90.18XA|ICD10CM|Drowning and submersion due to other unpowered watercraft sinking, initial encounter|Drowning and submersion due to other unpowered watercraft sinking, initial encounter +C2898950|T037|AB|V90.18XA|ICD10CM|Drowning and submersion due to unpowr wtrcrft sinking, init|Drowning and submersion due to unpowr wtrcrft sinking, init +C2898951|T037|PT|V90.18XD|ICD10CM|Drowning and submersion due to other unpowered watercraft sinking, subsequent encounter|Drowning and submersion due to other unpowered watercraft sinking, subsequent encounter +C2898951|T037|AB|V90.18XD|ICD10CM|Drowning and submersion due to unpowr wtrcrft sinking, subs|Drowning and submersion due to unpowr wtrcrft sinking, subs +C2898952|T037|AB|V90.18XS|ICD10CM|Drown due to unpowr wtrcrft sinking, sequela|Drown due to unpowr wtrcrft sinking, sequela +C2898952|T037|PT|V90.18XS|ICD10CM|Drowning and submersion due to other unpowered watercraft sinking, sequela|Drowning and submersion due to other unpowered watercraft sinking, sequela +C2898953|T037|ET|V90.19|ICD10CM|Drowning and submersion due to boat NOS sinking|Drowning and submersion due to boat NOS sinking +C1534541|T037|ET|V90.19|ICD10CM|Drowning and submersion due to ship NOS sinking|Drowning and submersion due to ship NOS sinking +C2898955|T037|AB|V90.19|ICD10CM|Drowning and submersion due to unsp watercraft sinking|Drowning and submersion due to unsp watercraft sinking +C2898955|T037|HT|V90.19|ICD10CM|Drowning and submersion due to unspecified watercraft sinking|Drowning and submersion due to unspecified watercraft sinking +C2898954|T037|ET|V90.19|ICD10CM|Drowning and submersion due to watercraft NOS sinking|Drowning and submersion due to watercraft NOS sinking +C2898956|T037|AB|V90.19XA|ICD10CM|Drowning and submersion due to unsp watercraft sinking, init|Drowning and submersion due to unsp watercraft sinking, init +C2898956|T037|PT|V90.19XA|ICD10CM|Drowning and submersion due to unspecified watercraft sinking, initial encounter|Drowning and submersion due to unspecified watercraft sinking, initial encounter +C2898957|T037|AB|V90.19XD|ICD10CM|Drowning and submersion due to unsp watercraft sinking, subs|Drowning and submersion due to unsp watercraft sinking, subs +C2898957|T037|PT|V90.19XD|ICD10CM|Drowning and submersion due to unspecified watercraft sinking, subsequent encounter|Drowning and submersion due to unspecified watercraft sinking, subsequent encounter +C2898958|T037|AB|V90.19XS|ICD10CM|Drown due to unsp watercraft sinking, sequela|Drown due to unsp watercraft sinking, sequela +C2898958|T037|PT|V90.19XS|ICD10CM|Drowning and submersion due to unspecified watercraft sinking, sequela|Drowning and submersion due to unspecified watercraft sinking, sequela +C0477245|T037|PT|V90.2|ICD10|Accident to watercraft causing drowning and submersion, fishing boat|Accident to watercraft causing drowning and submersion, fishing boat +C2899003|T037|AB|V90.2|ICD10CM|Drown due to falling or jumping from burning watercraft|Drown due to falling or jumping from burning watercraft +C2899003|T037|HT|V90.2|ICD10CM|Drowning and submersion due to falling or jumping from burning watercraft|Drowning and submersion due to falling or jumping from burning watercraft +C2898959|T037|AB|V90.20|ICD10CM|Drown due to falling or jumping from burning merchant ship|Drown due to falling or jumping from burning merchant ship +C2898959|T037|HT|V90.20|ICD10CM|Drowning and submersion due to falling or jumping from burning merchant ship|Drowning and submersion due to falling or jumping from burning merchant ship +C2898960|T037|AB|V90.20XA|ICD10CM|Drown due to fall/jump fr burning merchant ship, init|Drown due to fall/jump fr burning merchant ship, init +C2898960|T037|PT|V90.20XA|ICD10CM|Drowning and submersion due to falling or jumping from burning merchant ship, initial encounter|Drowning and submersion due to falling or jumping from burning merchant ship, initial encounter +C2898961|T037|AB|V90.20XD|ICD10CM|Drown due to fall/jump fr burning merchant ship, subs|Drown due to fall/jump fr burning merchant ship, subs +C2898961|T037|PT|V90.20XD|ICD10CM|Drowning and submersion due to falling or jumping from burning merchant ship, subsequent encounter|Drowning and submersion due to falling or jumping from burning merchant ship, subsequent encounter +C2898962|T037|AB|V90.20XS|ICD10CM|Drown due to fall/jump fr burning merchant ship, sequela|Drown due to fall/jump fr burning merchant ship, sequela +C2898962|T037|PT|V90.20XS|ICD10CM|Drowning and submersion due to falling or jumping from burning merchant ship, sequela|Drowning and submersion due to falling or jumping from burning merchant ship, sequela +C2898965|T037|AB|V90.21|ICD10CM|Drown due to falling or jumping from burning passenger ship|Drown due to falling or jumping from burning passenger ship +C2898963|T037|ET|V90.21|ICD10CM|Drowning and submersion due to falling or jumping from burning Ferry-boat|Drowning and submersion due to falling or jumping from burning Ferry-boat +C2898964|T037|ET|V90.21|ICD10CM|Drowning and submersion due to falling or jumping from burning Liner|Drowning and submersion due to falling or jumping from burning Liner +C2898965|T037|HT|V90.21|ICD10CM|Drowning and submersion due to falling or jumping from burning passenger ship|Drowning and submersion due to falling or jumping from burning passenger ship +C2898966|T037|AB|V90.21XA|ICD10CM|Drown due to fall/jump fr burning passenger ship, init|Drown due to fall/jump fr burning passenger ship, init +C2898966|T037|PT|V90.21XA|ICD10CM|Drowning and submersion due to falling or jumping from burning passenger ship, initial encounter|Drowning and submersion due to falling or jumping from burning passenger ship, initial encounter +C2898967|T037|AB|V90.21XD|ICD10CM|Drown due to fall/jump fr burning passenger ship, subs|Drown due to fall/jump fr burning passenger ship, subs +C2898967|T037|PT|V90.21XD|ICD10CM|Drowning and submersion due to falling or jumping from burning passenger ship, subsequent encounter|Drowning and submersion due to falling or jumping from burning passenger ship, subsequent encounter +C2898968|T037|AB|V90.21XS|ICD10CM|Drown due to fall/jump fr burning passenger ship, sequela|Drown due to fall/jump fr burning passenger ship, sequela +C2898968|T037|PT|V90.21XS|ICD10CM|Drowning and submersion due to falling or jumping from burning passenger ship, sequela|Drowning and submersion due to falling or jumping from burning passenger ship, sequela +C2898969|T037|AB|V90.22|ICD10CM|Drown due to falling or jumping from burning fishing boat|Drown due to falling or jumping from burning fishing boat +C2898969|T037|HT|V90.22|ICD10CM|Drowning and submersion due to falling or jumping from burning fishing boat|Drowning and submersion due to falling or jumping from burning fishing boat +C2898970|T037|AB|V90.22XA|ICD10CM|Drown due to fall/jump fr burning fishing boat, init|Drown due to fall/jump fr burning fishing boat, init +C2898970|T037|PT|V90.22XA|ICD10CM|Drowning and submersion due to falling or jumping from burning fishing boat, initial encounter|Drowning and submersion due to falling or jumping from burning fishing boat, initial encounter +C2898971|T037|AB|V90.22XD|ICD10CM|Drown due to fall/jump fr burning fishing boat, subs|Drown due to fall/jump fr burning fishing boat, subs +C2898971|T037|PT|V90.22XD|ICD10CM|Drowning and submersion due to falling or jumping from burning fishing boat, subsequent encounter|Drowning and submersion due to falling or jumping from burning fishing boat, subsequent encounter +C2898972|T037|AB|V90.22XS|ICD10CM|Drown due to fall/jump fr burning fishing boat, sequela|Drown due to fall/jump fr burning fishing boat, sequela +C2898972|T037|PT|V90.22XS|ICD10CM|Drowning and submersion due to falling or jumping from burning fishing boat, sequela|Drowning and submersion due to falling or jumping from burning fishing boat, sequela +C2898975|T037|AB|V90.23|ICD10CM|Drown due to fall/jump fr oth burning powered watercraft|Drown due to fall/jump fr oth burning powered watercraft +C2898973|T037|ET|V90.23|ICD10CM|Drowning and submersion due to falling and jumping from burning Hovercraft (on open water)|Drowning and submersion due to falling and jumping from burning Hovercraft (on open water) +C2898974|T037|ET|V90.23|ICD10CM|Drowning and submersion due to falling and jumping from burning Jet ski|Drowning and submersion due to falling and jumping from burning Jet ski +C2898975|T037|HT|V90.23|ICD10CM|Drowning and submersion due to falling or jumping from other burning powered watercraft|Drowning and submersion due to falling or jumping from other burning powered watercraft +C2898976|T037|AB|V90.23XA|ICD10CM|Drown due to fall/jump fr oth burning powered wtrcrft, init|Drown due to fall/jump fr oth burning powered wtrcrft, init +C2898977|T037|AB|V90.23XD|ICD10CM|Drown due to fall/jump fr oth burning powered wtrcrft, subs|Drown due to fall/jump fr oth burning powered wtrcrft, subs +C2898978|T037|AB|V90.23XS|ICD10CM|Drown due to fall/jump fr oth burn powered wtrcrft, sequela|Drown due to fall/jump fr oth burn powered wtrcrft, sequela +C2898978|T037|PT|V90.23XS|ICD10CM|Drowning and submersion due to falling or jumping from other burning powered watercraft, sequela|Drowning and submersion due to falling or jumping from other burning powered watercraft, sequela +C2898979|T037|AB|V90.24|ICD10CM|Drown due to falling or jumping from burning sailboat|Drown due to falling or jumping from burning sailboat +C2898979|T037|HT|V90.24|ICD10CM|Drowning and submersion due to falling or jumping from burning sailboat|Drowning and submersion due to falling or jumping from burning sailboat +C2898980|T037|AB|V90.24XA|ICD10CM|Drown due to falling or jumping from burning sailboat, init|Drown due to falling or jumping from burning sailboat, init +C2898980|T037|PT|V90.24XA|ICD10CM|Drowning and submersion due to falling or jumping from burning sailboat, initial encounter|Drowning and submersion due to falling or jumping from burning sailboat, initial encounter +C2898981|T037|AB|V90.24XD|ICD10CM|Drown due to falling or jumping from burning sailboat, subs|Drown due to falling or jumping from burning sailboat, subs +C2898981|T037|PT|V90.24XD|ICD10CM|Drowning and submersion due to falling or jumping from burning sailboat, subsequent encounter|Drowning and submersion due to falling or jumping from burning sailboat, subsequent encounter +C2898982|T037|AB|V90.24XS|ICD10CM|Drown due to fall/jump fr burning sailboat, sequela|Drown due to fall/jump fr burning sailboat, sequela +C2898982|T037|PT|V90.24XS|ICD10CM|Drowning and submersion due to falling or jumping from burning sailboat, sequela|Drowning and submersion due to falling or jumping from burning sailboat, sequela +C2898983|T037|AB|V90.25|ICD10CM|Drown due to falling or jumping from burning canoe or kayak|Drown due to falling or jumping from burning canoe or kayak +C2898983|T037|HT|V90.25|ICD10CM|Drowning and submersion due to falling or jumping from burning canoe or kayak|Drowning and submersion due to falling or jumping from burning canoe or kayak +C2898984|T037|AB|V90.25XA|ICD10CM|Drown due to fall/jump fr burning canoe or kayak, init|Drown due to fall/jump fr burning canoe or kayak, init +C2898984|T037|PT|V90.25XA|ICD10CM|Drowning and submersion due to falling or jumping from burning canoe or kayak, initial encounter|Drowning and submersion due to falling or jumping from burning canoe or kayak, initial encounter +C2898985|T037|AB|V90.25XD|ICD10CM|Drown due to fall/jump fr burning canoe or kayak, subs|Drown due to fall/jump fr burning canoe or kayak, subs +C2898985|T037|PT|V90.25XD|ICD10CM|Drowning and submersion due to falling or jumping from burning canoe or kayak, subsequent encounter|Drowning and submersion due to falling or jumping from burning canoe or kayak, subsequent encounter +C2898986|T037|AB|V90.25XS|ICD10CM|Drown due to fall/jump fr burning canoe or kayak, sequela|Drown due to fall/jump fr burning canoe or kayak, sequela +C2898986|T037|PT|V90.25XS|ICD10CM|Drowning and submersion due to falling or jumping from burning canoe or kayak, sequela|Drowning and submersion due to falling or jumping from burning canoe or kayak, sequela +C2898987|T037|AB|V90.26|ICD10CM|Drown due to fall/jump fr burning (nonpowered) inflatbl crft|Drown due to fall/jump fr burning (nonpowered) inflatbl crft +C2898987|T037|HT|V90.26|ICD10CM|Drowning and submersion due to falling or jumping from burning (nonpowered) inflatable craft|Drowning and submersion due to falling or jumping from burning (nonpowered) inflatable craft +C2898988|T037|AB|V90.26XA|ICD10CM|Drown due to fall/jump fr burning inflatbl crft, init|Drown due to fall/jump fr burning inflatbl crft, init +C2898989|T037|AB|V90.26XD|ICD10CM|Drown due to fall/jump fr burning inflatbl crft, subs|Drown due to fall/jump fr burning inflatbl crft, subs +C2898990|T037|AB|V90.26XS|ICD10CM|Drown due to fall/jump fr burning inflatbl crft, sequela|Drown due to fall/jump fr burning inflatbl crft, sequela +C2898991|T037|AB|V90.27|ICD10CM|Drown due to falling or jumping from burning water-skis|Drown due to falling or jumping from burning water-skis +C2898991|T037|HT|V90.27|ICD10CM|Drowning and submersion due to falling or jumping from burning water-skis|Drowning and submersion due to falling or jumping from burning water-skis +C2898992|T037|AB|V90.27XA|ICD10CM|Drown due to fall/jump fr burning water-skis, init|Drown due to fall/jump fr burning water-skis, init +C2898992|T037|PT|V90.27XA|ICD10CM|Drowning and submersion due to falling or jumping from burning water-skis, initial encounter|Drowning and submersion due to falling or jumping from burning water-skis, initial encounter +C2898993|T037|AB|V90.27XD|ICD10CM|Drown due to fall/jump fr burning water-skis, subs|Drown due to fall/jump fr burning water-skis, subs +C2898993|T037|PT|V90.27XD|ICD10CM|Drowning and submersion due to falling or jumping from burning water-skis, subsequent encounter|Drowning and submersion due to falling or jumping from burning water-skis, subsequent encounter +C2898994|T037|AB|V90.27XS|ICD10CM|Drown due to fall/jump fr burning water-skis, sequela|Drown due to fall/jump fr burning water-skis, sequela +C2898994|T037|PT|V90.27XS|ICD10CM|Drowning and submersion due to falling or jumping from burning water-skis, sequela|Drowning and submersion due to falling or jumping from burning water-skis, sequela +C2898997|T037|AB|V90.28|ICD10CM|Drown due to fall/jump fr oth burning unpowered watercraft|Drown due to fall/jump fr oth burning unpowered watercraft +C2898995|T037|ET|V90.28|ICD10CM|Drowning and submersion due to falling and jumping from burning surf-board|Drowning and submersion due to falling and jumping from burning surf-board +C2898996|T037|ET|V90.28|ICD10CM|Drowning and submersion due to falling and jumping from burning windsurfer|Drowning and submersion due to falling and jumping from burning windsurfer +C2898997|T037|HT|V90.28|ICD10CM|Drowning and submersion due to falling or jumping from other burning unpowered watercraft|Drowning and submersion due to falling or jumping from other burning unpowered watercraft +C2898998|T037|AB|V90.28XA|ICD10CM|Drown due to fall/jump fr oth burning unpowr wtrcrft, init|Drown due to fall/jump fr oth burning unpowr wtrcrft, init +C2898999|T037|AB|V90.28XD|ICD10CM|Drown due to fall/jump fr oth burning unpowr wtrcrft, subs|Drown due to fall/jump fr oth burning unpowr wtrcrft, subs +C2899000|T037|AB|V90.28XS|ICD10CM|Drown due to fall/jump fr oth burn unpowr wtrcrft, sequela|Drown due to fall/jump fr oth burn unpowr wtrcrft, sequela +C2899000|T037|PT|V90.28XS|ICD10CM|Drowning and submersion due to falling or jumping from other burning unpowered watercraft, sequela|Drowning and submersion due to falling or jumping from other burning unpowered watercraft, sequela +C2899004|T037|AB|V90.29|ICD10CM|Drown due to falling or jumping from unsp burning watercraft|Drown due to falling or jumping from unsp burning watercraft +C2899001|T037|ET|V90.29|ICD10CM|Drowning and submersion due to falling or jumping from burning boat NOS|Drowning and submersion due to falling or jumping from burning boat NOS +C2899002|T037|ET|V90.29|ICD10CM|Drowning and submersion due to falling or jumping from burning ship NOS|Drowning and submersion due to falling or jumping from burning ship NOS +C2899003|T037|ET|V90.29|ICD10CM|Drowning and submersion due to falling or jumping from burning watercraft NOS|Drowning and submersion due to falling or jumping from burning watercraft NOS +C2899004|T037|HT|V90.29|ICD10CM|Drowning and submersion due to falling or jumping from unspecified burning watercraft|Drowning and submersion due to falling or jumping from unspecified burning watercraft +C2899005|T037|AB|V90.29XA|ICD10CM|Drown due to fall/jump fr unsp burning watercraft, init|Drown due to fall/jump fr unsp burning watercraft, init +C2899006|T037|AB|V90.29XD|ICD10CM|Drown due to fall/jump fr unsp burning watercraft, subs|Drown due to fall/jump fr unsp burning watercraft, subs +C2899007|T037|AB|V90.29XS|ICD10CM|Drown due to fall/jump fr unsp burning watercraft, sequela|Drown due to fall/jump fr unsp burning watercraft, sequela +C2899007|T037|PT|V90.29XS|ICD10CM|Drowning and submersion due to falling or jumping from unspecified burning watercraft, sequela|Drowning and submersion due to falling or jumping from unspecified burning watercraft, sequela +C0477246|T037|PT|V90.3|ICD10|Accident to watercraft causing drowning and submersion, other powered watercraft|Accident to watercraft causing drowning and submersion, other powered watercraft +C2899008|T037|AB|V90.3|ICD10CM|Drown due to falling or jumping from crushed watercraft|Drown due to falling or jumping from crushed watercraft +C2899008|T037|HT|V90.3|ICD10CM|Drowning and submersion due to falling or jumping from crushed watercraft|Drowning and submersion due to falling or jumping from crushed watercraft +C2899009|T037|AB|V90.30|ICD10CM|Drown due to falling or jumping from crushed merchant ship|Drown due to falling or jumping from crushed merchant ship +C2899009|T037|HT|V90.30|ICD10CM|Drowning and submersion due to falling or jumping from crushed merchant ship|Drowning and submersion due to falling or jumping from crushed merchant ship +C2899010|T037|AB|V90.30XA|ICD10CM|Drown due to fall/jump fr crushed merchant ship, init|Drown due to fall/jump fr crushed merchant ship, init +C2899010|T037|PT|V90.30XA|ICD10CM|Drowning and submersion due to falling or jumping from crushed merchant ship, initial encounter|Drowning and submersion due to falling or jumping from crushed merchant ship, initial encounter +C2899011|T037|AB|V90.30XD|ICD10CM|Drown due to fall/jump fr crushed merchant ship, subs|Drown due to fall/jump fr crushed merchant ship, subs +C2899011|T037|PT|V90.30XD|ICD10CM|Drowning and submersion due to falling or jumping from crushed merchant ship, subsequent encounter|Drowning and submersion due to falling or jumping from crushed merchant ship, subsequent encounter +C2899012|T037|AB|V90.30XS|ICD10CM|Drown due to fall/jump fr crushed merchant ship, sequela|Drown due to fall/jump fr crushed merchant ship, sequela +C2899012|T037|PT|V90.30XS|ICD10CM|Drowning and submersion due to falling or jumping from crushed merchant ship, sequela|Drowning and submersion due to falling or jumping from crushed merchant ship, sequela +C2899015|T037|AB|V90.31|ICD10CM|Drown due to falling or jumping from crushed passenger ship|Drown due to falling or jumping from crushed passenger ship +C2899013|T037|ET|V90.31|ICD10CM|Drowning and submersion due to falling and jumping from crushed Ferry boat|Drowning and submersion due to falling and jumping from crushed Ferry boat +C2899014|T037|ET|V90.31|ICD10CM|Drowning and submersion due to falling and jumping from crushed Liner|Drowning and submersion due to falling and jumping from crushed Liner +C2899015|T037|HT|V90.31|ICD10CM|Drowning and submersion due to falling or jumping from crushed passenger ship|Drowning and submersion due to falling or jumping from crushed passenger ship +C2899016|T037|AB|V90.31XA|ICD10CM|Drown due to fall/jump fr crushed passenger ship, init|Drown due to fall/jump fr crushed passenger ship, init +C2899016|T037|PT|V90.31XA|ICD10CM|Drowning and submersion due to falling or jumping from crushed passenger ship, initial encounter|Drowning and submersion due to falling or jumping from crushed passenger ship, initial encounter +C2899017|T037|AB|V90.31XD|ICD10CM|Drown due to fall/jump fr crushed passenger ship, subs|Drown due to fall/jump fr crushed passenger ship, subs +C2899017|T037|PT|V90.31XD|ICD10CM|Drowning and submersion due to falling or jumping from crushed passenger ship, subsequent encounter|Drowning and submersion due to falling or jumping from crushed passenger ship, subsequent encounter +C2899018|T037|AB|V90.31XS|ICD10CM|Drown due to fall/jump fr crushed passenger ship, sequela|Drown due to fall/jump fr crushed passenger ship, sequela +C2899018|T037|PT|V90.31XS|ICD10CM|Drowning and submersion due to falling or jumping from crushed passenger ship, sequela|Drowning and submersion due to falling or jumping from crushed passenger ship, sequela +C2899019|T037|AB|V90.32|ICD10CM|Drown due to falling or jumping from crushed fishing boat|Drown due to falling or jumping from crushed fishing boat +C2899019|T037|HT|V90.32|ICD10CM|Drowning and submersion due to falling or jumping from crushed fishing boat|Drowning and submersion due to falling or jumping from crushed fishing boat +C2899020|T037|AB|V90.32XA|ICD10CM|Drown due to fall/jump fr crushed fishing boat, init|Drown due to fall/jump fr crushed fishing boat, init +C2899020|T037|PT|V90.32XA|ICD10CM|Drowning and submersion due to falling or jumping from crushed fishing boat, initial encounter|Drowning and submersion due to falling or jumping from crushed fishing boat, initial encounter +C2899021|T037|AB|V90.32XD|ICD10CM|Drown due to fall/jump fr crushed fishing boat, subs|Drown due to fall/jump fr crushed fishing boat, subs +C2899021|T037|PT|V90.32XD|ICD10CM|Drowning and submersion due to falling or jumping from crushed fishing boat, subsequent encounter|Drowning and submersion due to falling or jumping from crushed fishing boat, subsequent encounter +C2899022|T037|AB|V90.32XS|ICD10CM|Drown due to fall/jump fr crushed fishing boat, sequela|Drown due to fall/jump fr crushed fishing boat, sequela +C2899022|T037|PT|V90.32XS|ICD10CM|Drowning and submersion due to falling or jumping from crushed fishing boat, sequela|Drowning and submersion due to falling or jumping from crushed fishing boat, sequela +C2899025|T037|AB|V90.33|ICD10CM|Drown due to fall/jump fr oth crushed powered watercraft|Drown due to fall/jump fr oth crushed powered watercraft +C2899023|T037|ET|V90.33|ICD10CM|Drowning and submersion due to falling and jumping from crushed Hovercraft|Drowning and submersion due to falling and jumping from crushed Hovercraft +C2899024|T037|ET|V90.33|ICD10CM|Drowning and submersion due to falling and jumping from crushed Jet ski|Drowning and submersion due to falling and jumping from crushed Jet ski +C2899025|T037|HT|V90.33|ICD10CM|Drowning and submersion due to falling or jumping from other crushed powered watercraft|Drowning and submersion due to falling or jumping from other crushed powered watercraft +C2899026|T037|AB|V90.33XA|ICD10CM|Drown due to fall/jump fr oth crushed powered wtrcrft, init|Drown due to fall/jump fr oth crushed powered wtrcrft, init +C2899027|T037|AB|V90.33XD|ICD10CM|Drown due to fall/jump fr oth crushed powered wtrcrft, subs|Drown due to fall/jump fr oth crushed powered wtrcrft, subs +C2899028|T037|AB|V90.33XS|ICD10CM|Drown due to fall/jump fr oth crush powered wtrcrft, sequela|Drown due to fall/jump fr oth crush powered wtrcrft, sequela +C2899028|T037|PT|V90.33XS|ICD10CM|Drowning and submersion due to falling or jumping from other crushed powered watercraft, sequela|Drowning and submersion due to falling or jumping from other crushed powered watercraft, sequela +C2899029|T037|AB|V90.34|ICD10CM|Drown due to falling or jumping from crushed sailboat|Drown due to falling or jumping from crushed sailboat +C2899029|T037|HT|V90.34|ICD10CM|Drowning and submersion due to falling or jumping from crushed sailboat|Drowning and submersion due to falling or jumping from crushed sailboat +C2899030|T037|AB|V90.34XA|ICD10CM|Drown due to falling or jumping from crushed sailboat, init|Drown due to falling or jumping from crushed sailboat, init +C2899030|T037|PT|V90.34XA|ICD10CM|Drowning and submersion due to falling or jumping from crushed sailboat, initial encounter|Drowning and submersion due to falling or jumping from crushed sailboat, initial encounter +C2899031|T037|AB|V90.34XD|ICD10CM|Drown due to falling or jumping from crushed sailboat, subs|Drown due to falling or jumping from crushed sailboat, subs +C2899031|T037|PT|V90.34XD|ICD10CM|Drowning and submersion due to falling or jumping from crushed sailboat, subsequent encounter|Drowning and submersion due to falling or jumping from crushed sailboat, subsequent encounter +C2899032|T037|AB|V90.34XS|ICD10CM|Drown due to fall/jump fr crushed sailboat, sequela|Drown due to fall/jump fr crushed sailboat, sequela +C2899032|T037|PT|V90.34XS|ICD10CM|Drowning and submersion due to falling or jumping from crushed sailboat, sequela|Drowning and submersion due to falling or jumping from crushed sailboat, sequela +C2899033|T037|AB|V90.35|ICD10CM|Drown due to falling or jumping from crushed canoe or kayak|Drown due to falling or jumping from crushed canoe or kayak +C2899033|T037|HT|V90.35|ICD10CM|Drowning and submersion due to falling or jumping from crushed canoe or kayak|Drowning and submersion due to falling or jumping from crushed canoe or kayak +C2899034|T037|AB|V90.35XA|ICD10CM|Drown due to fall/jump fr crushed canoe or kayak, init|Drown due to fall/jump fr crushed canoe or kayak, init +C2899034|T037|PT|V90.35XA|ICD10CM|Drowning and submersion due to falling or jumping from crushed canoe or kayak, initial encounter|Drowning and submersion due to falling or jumping from crushed canoe or kayak, initial encounter +C2899035|T037|AB|V90.35XD|ICD10CM|Drown due to fall/jump fr crushed canoe or kayak, subs|Drown due to fall/jump fr crushed canoe or kayak, subs +C2899035|T037|PT|V90.35XD|ICD10CM|Drowning and submersion due to falling or jumping from crushed canoe or kayak, subsequent encounter|Drowning and submersion due to falling or jumping from crushed canoe or kayak, subsequent encounter +C2899036|T037|AB|V90.35XS|ICD10CM|Drown due to fall/jump fr crushed canoe or kayak, sequela|Drown due to fall/jump fr crushed canoe or kayak, sequela +C2899036|T037|PT|V90.35XS|ICD10CM|Drowning and submersion due to falling or jumping from crushed canoe or kayak, sequela|Drowning and submersion due to falling or jumping from crushed canoe or kayak, sequela +C2899037|T037|AB|V90.36|ICD10CM|Drown due to fall/jump fr crushed (nonpowered) inflatbl crft|Drown due to fall/jump fr crushed (nonpowered) inflatbl crft +C2899037|T037|HT|V90.36|ICD10CM|Drowning and submersion due to falling or jumping from crushed (nonpowered) inflatable craft|Drowning and submersion due to falling or jumping from crushed (nonpowered) inflatable craft +C2899038|T037|AB|V90.36XA|ICD10CM|Drown due to fall/jump fr crushed inflatbl crft, init|Drown due to fall/jump fr crushed inflatbl crft, init +C2899039|T037|AB|V90.36XD|ICD10CM|Drown due to fall/jump fr crushed inflatbl crft, subs|Drown due to fall/jump fr crushed inflatbl crft, subs +C2899040|T037|AB|V90.36XS|ICD10CM|Drown due to fall/jump fr crushed inflatbl crft, sequela|Drown due to fall/jump fr crushed inflatbl crft, sequela +C2899041|T037|AB|V90.37|ICD10CM|Drown due to falling or jumping from crushed water-skis|Drown due to falling or jumping from crushed water-skis +C2899041|T037|HT|V90.37|ICD10CM|Drowning and submersion due to falling or jumping from crushed water-skis|Drowning and submersion due to falling or jumping from crushed water-skis +C2899042|T037|AB|V90.37XA|ICD10CM|Drown due to fall/jump fr crushed water-skis, init|Drown due to fall/jump fr crushed water-skis, init +C2899042|T037|PT|V90.37XA|ICD10CM|Drowning and submersion due to falling or jumping from crushed water-skis, initial encounter|Drowning and submersion due to falling or jumping from crushed water-skis, initial encounter +C2899043|T037|AB|V90.37XD|ICD10CM|Drown due to fall/jump fr crushed water-skis, subs|Drown due to fall/jump fr crushed water-skis, subs +C2899043|T037|PT|V90.37XD|ICD10CM|Drowning and submersion due to falling or jumping from crushed water-skis, subsequent encounter|Drowning and submersion due to falling or jumping from crushed water-skis, subsequent encounter +C2899044|T037|AB|V90.37XS|ICD10CM|Drown due to fall/jump fr crushed water-skis, sequela|Drown due to fall/jump fr crushed water-skis, sequela +C2899044|T037|PT|V90.37XS|ICD10CM|Drowning and submersion due to falling or jumping from crushed water-skis, sequela|Drowning and submersion due to falling or jumping from crushed water-skis, sequela +C2899047|T037|AB|V90.38|ICD10CM|Drown due to fall/jump fr oth crushed unpowered watercraft|Drown due to fall/jump fr oth crushed unpowered watercraft +C2899045|T037|ET|V90.38|ICD10CM|Drowning and submersion due to falling and jumping from crushed surf-board|Drowning and submersion due to falling and jumping from crushed surf-board +C2899046|T037|ET|V90.38|ICD10CM|Drowning and submersion due to falling and jumping from crushed windsurfer|Drowning and submersion due to falling and jumping from crushed windsurfer +C2899047|T037|HT|V90.38|ICD10CM|Drowning and submersion due to falling or jumping from other crushed unpowered watercraft|Drowning and submersion due to falling or jumping from other crushed unpowered watercraft +C2899048|T037|AB|V90.38XA|ICD10CM|Drown due to fall/jump fr oth crushed unpowr wtrcrft, init|Drown due to fall/jump fr oth crushed unpowr wtrcrft, init +C2899049|T037|AB|V90.38XD|ICD10CM|Drown due to fall/jump fr oth crushed unpowr wtrcrft, subs|Drown due to fall/jump fr oth crushed unpowr wtrcrft, subs +C2899050|T037|AB|V90.38XS|ICD10CM|Drown due to fall/jump fr oth crush unpowr wtrcrft, sequela|Drown due to fall/jump fr oth crush unpowr wtrcrft, sequela +C2899050|T037|PT|V90.38XS|ICD10CM|Drowning and submersion due to falling or jumping from other crushed unpowered watercraft, sequela|Drowning and submersion due to falling or jumping from other crushed unpowered watercraft, sequela +C2899054|T037|AB|V90.39|ICD10CM|Drown due to falling or jumping from crushed unsp watercraft|Drown due to falling or jumping from crushed unsp watercraft +C2899051|T037|ET|V90.39|ICD10CM|Drowning and submersion due to falling and jumping from crushed boat NOS|Drowning and submersion due to falling and jumping from crushed boat NOS +C2899052|T037|ET|V90.39|ICD10CM|Drowning and submersion due to falling and jumping from crushed ship NOS|Drowning and submersion due to falling and jumping from crushed ship NOS +C2899008|T037|ET|V90.39|ICD10CM|Drowning and submersion due to falling and jumping from crushed watercraft NOS|Drowning and submersion due to falling and jumping from crushed watercraft NOS +C2899054|T037|HT|V90.39|ICD10CM|Drowning and submersion due to falling or jumping from crushed unspecified watercraft|Drowning and submersion due to falling or jumping from crushed unspecified watercraft +C2899055|T037|AB|V90.39XA|ICD10CM|Drown due to fall/jump fr crushed unsp watercraft, init|Drown due to fall/jump fr crushed unsp watercraft, init +C2899056|T037|AB|V90.39XD|ICD10CM|Drown due to fall/jump fr crushed unsp watercraft, subs|Drown due to fall/jump fr crushed unsp watercraft, subs +C2899057|T037|AB|V90.39XS|ICD10CM|Drown due to fall/jump fr crushed unsp watercraft, sequela|Drown due to fall/jump fr crushed unsp watercraft, sequela +C2899057|T037|PT|V90.39XS|ICD10CM|Drowning and submersion due to falling or jumping from crushed unspecified watercraft, sequela|Drowning and submersion due to falling or jumping from crushed unspecified watercraft, sequela +C0477247|T037|PT|V90.4|ICD10|Accident to watercraft causing drowning and submersion, sailboat|Accident to watercraft causing drowning and submersion, sailboat +C0477248|T037|PT|V90.5|ICD10|Accident to watercraft causing drowning and submersion, canoe or kayak|Accident to watercraft causing drowning and submersion, canoe or kayak +C0477249|T037|PT|V90.6|ICD10|Accident to watercraft causing drowning and submersion, inflatable craft (nonpowered)|Accident to watercraft causing drowning and submersion, inflatable craft (nonpowered) +C0477250|T037|PT|V90.7|ICD10|Accident to watercraft causing drowning and submersion, water-skis|Accident to watercraft causing drowning and submersion, water-skis +C0477251|T037|PT|V90.8|ICD10|Accident to watercraft causing drowning and submersion, other unpowered watercraft|Accident to watercraft causing drowning and submersion, other unpowered watercraft +C0415797|T037|AB|V90.8|ICD10CM|Drowning and submersion due to other accident to watercraft|Drowning and submersion due to other accident to watercraft +C0415797|T037|HT|V90.8|ICD10CM|Drowning and submersion due to other accident to watercraft|Drowning and submersion due to other accident to watercraft +C2899058|T037|AB|V90.80|ICD10CM|Drowning and submersion due to oth accident to merchant ship|Drowning and submersion due to oth accident to merchant ship +C2899058|T037|HT|V90.80|ICD10CM|Drowning and submersion due to other accident to merchant ship|Drowning and submersion due to other accident to merchant ship +C2899059|T037|AB|V90.80XA|ICD10CM|Drown due to oth accident to merchant ship, init|Drown due to oth accident to merchant ship, init +C2899059|T037|PT|V90.80XA|ICD10CM|Drowning and submersion due to other accident to merchant ship, initial encounter|Drowning and submersion due to other accident to merchant ship, initial encounter +C2899060|T037|AB|V90.80XD|ICD10CM|Drown due to oth accident to merchant ship, subs|Drown due to oth accident to merchant ship, subs +C2899060|T037|PT|V90.80XD|ICD10CM|Drowning and submersion due to other accident to merchant ship, subsequent encounter|Drowning and submersion due to other accident to merchant ship, subsequent encounter +C2899061|T037|AB|V90.80XS|ICD10CM|Drown due to oth accident to merchant ship, sequela|Drown due to oth accident to merchant ship, sequela +C2899061|T037|PT|V90.80XS|ICD10CM|Drowning and submersion due to other accident to merchant ship, sequela|Drowning and submersion due to other accident to merchant ship, sequela +C2899064|T037|AB|V90.81|ICD10CM|Drown due to oth accident to passenger ship|Drown due to oth accident to passenger ship +C2899062|T037|ET|V90.81|ICD10CM|Drowning and submersion due to other accident to Ferry-boat|Drowning and submersion due to other accident to Ferry-boat +C2899063|T037|ET|V90.81|ICD10CM|Drowning and submersion due to other accident to Liner|Drowning and submersion due to other accident to Liner +C2899064|T037|HT|V90.81|ICD10CM|Drowning and submersion due to other accident to passenger ship|Drowning and submersion due to other accident to passenger ship +C2899065|T037|AB|V90.81XA|ICD10CM|Drown due to oth accident to passenger ship, init|Drown due to oth accident to passenger ship, init +C2899065|T037|PT|V90.81XA|ICD10CM|Drowning and submersion due to other accident to passenger ship, initial encounter|Drowning and submersion due to other accident to passenger ship, initial encounter +C2899066|T037|AB|V90.81XD|ICD10CM|Drown due to oth accident to passenger ship, subs|Drown due to oth accident to passenger ship, subs +C2899066|T037|PT|V90.81XD|ICD10CM|Drowning and submersion due to other accident to passenger ship, subsequent encounter|Drowning and submersion due to other accident to passenger ship, subsequent encounter +C2899067|T037|AB|V90.81XS|ICD10CM|Drown due to oth accident to passenger ship, sequela|Drown due to oth accident to passenger ship, sequela +C2899067|T037|PT|V90.81XS|ICD10CM|Drowning and submersion due to other accident to passenger ship, sequela|Drowning and submersion due to other accident to passenger ship, sequela +C2899068|T037|AB|V90.82|ICD10CM|Drowning and submersion due to oth accident to fishing boat|Drowning and submersion due to oth accident to fishing boat +C2899068|T037|HT|V90.82|ICD10CM|Drowning and submersion due to other accident to fishing boat|Drowning and submersion due to other accident to fishing boat +C2899069|T037|AB|V90.82XA|ICD10CM|Drown due to oth accident to fishing boat, init|Drown due to oth accident to fishing boat, init +C2899069|T037|PT|V90.82XA|ICD10CM|Drowning and submersion due to other accident to fishing boat, initial encounter|Drowning and submersion due to other accident to fishing boat, initial encounter +C2899070|T037|AB|V90.82XD|ICD10CM|Drown due to oth accident to fishing boat, subs|Drown due to oth accident to fishing boat, subs +C2899070|T037|PT|V90.82XD|ICD10CM|Drowning and submersion due to other accident to fishing boat, subsequent encounter|Drowning and submersion due to other accident to fishing boat, subsequent encounter +C2899071|T037|AB|V90.82XS|ICD10CM|Drown due to oth accident to fishing boat, sequela|Drown due to oth accident to fishing boat, sequela +C2899071|T037|PT|V90.82XS|ICD10CM|Drowning and submersion due to other accident to fishing boat, sequela|Drowning and submersion due to other accident to fishing boat, sequela +C2899074|T037|AB|V90.83|ICD10CM|Drown due to oth accident to oth powered watercraft|Drown due to oth accident to oth powered watercraft +C2899072|T037|ET|V90.83|ICD10CM|Drowning and submersion due to other accident to Hovercraft (on open water)|Drowning and submersion due to other accident to Hovercraft (on open water) +C2899073|T037|ET|V90.83|ICD10CM|Drowning and submersion due to other accident to Jet ski|Drowning and submersion due to other accident to Jet ski +C2899074|T037|HT|V90.83|ICD10CM|Drowning and submersion due to other accident to other powered watercraft|Drowning and submersion due to other accident to other powered watercraft +C2899075|T037|AB|V90.83XA|ICD10CM|Drown due to oth accident to oth powered watercraft, init|Drown due to oth accident to oth powered watercraft, init +C2899075|T037|PT|V90.83XA|ICD10CM|Drowning and submersion due to other accident to other powered watercraft, initial encounter|Drowning and submersion due to other accident to other powered watercraft, initial encounter +C2899076|T037|AB|V90.83XD|ICD10CM|Drown due to oth accident to oth powered watercraft, subs|Drown due to oth accident to oth powered watercraft, subs +C2899076|T037|PT|V90.83XD|ICD10CM|Drowning and submersion due to other accident to other powered watercraft, subsequent encounter|Drowning and submersion due to other accident to other powered watercraft, subsequent encounter +C2899077|T037|AB|V90.83XS|ICD10CM|Drown due to oth accident to oth powered watercraft, sequela|Drown due to oth accident to oth powered watercraft, sequela +C2899077|T037|PT|V90.83XS|ICD10CM|Drowning and submersion due to other accident to other powered watercraft, sequela|Drowning and submersion due to other accident to other powered watercraft, sequela +C2899078|T037|AB|V90.84|ICD10CM|Drowning and submersion due to other accident to sailboat|Drowning and submersion due to other accident to sailboat +C2899078|T037|HT|V90.84|ICD10CM|Drowning and submersion due to other accident to sailboat|Drowning and submersion due to other accident to sailboat +C2899079|T037|AB|V90.84XA|ICD10CM|Drown due to oth accident to sailboat, init|Drown due to oth accident to sailboat, init +C2899079|T037|PT|V90.84XA|ICD10CM|Drowning and submersion due to other accident to sailboat, initial encounter|Drowning and submersion due to other accident to sailboat, initial encounter +C2899080|T037|AB|V90.84XD|ICD10CM|Drown due to oth accident to sailboat, subs|Drown due to oth accident to sailboat, subs +C2899080|T037|PT|V90.84XD|ICD10CM|Drowning and submersion due to other accident to sailboat, subsequent encounter|Drowning and submersion due to other accident to sailboat, subsequent encounter +C2899081|T037|AB|V90.84XS|ICD10CM|Drown due to oth accident to sailboat, sequela|Drown due to oth accident to sailboat, sequela +C2899081|T037|PT|V90.84XS|ICD10CM|Drowning and submersion due to other accident to sailboat, sequela|Drowning and submersion due to other accident to sailboat, sequela +C2899082|T037|AB|V90.85|ICD10CM|Drown due to oth accident to canoe or kayak|Drown due to oth accident to canoe or kayak +C2899082|T037|HT|V90.85|ICD10CM|Drowning and submersion due to other accident to canoe or kayak|Drowning and submersion due to other accident to canoe or kayak +C2899083|T037|AB|V90.85XA|ICD10CM|Drown due to oth accident to canoe or kayak, init|Drown due to oth accident to canoe or kayak, init +C2899083|T037|PT|V90.85XA|ICD10CM|Drowning and submersion due to other accident to canoe or kayak, initial encounter|Drowning and submersion due to other accident to canoe or kayak, initial encounter +C2899084|T037|AB|V90.85XD|ICD10CM|Drown due to oth accident to canoe or kayak, subs|Drown due to oth accident to canoe or kayak, subs +C2899084|T037|PT|V90.85XD|ICD10CM|Drowning and submersion due to other accident to canoe or kayak, subsequent encounter|Drowning and submersion due to other accident to canoe or kayak, subsequent encounter +C2899085|T037|AB|V90.85XS|ICD10CM|Drown due to oth accident to canoe or kayak, sequela|Drown due to oth accident to canoe or kayak, sequela +C2899085|T037|PT|V90.85XS|ICD10CM|Drowning and submersion due to other accident to canoe or kayak, sequela|Drowning and submersion due to other accident to canoe or kayak, sequela +C2899086|T037|AB|V90.86|ICD10CM|Drown due to oth accident to (nonpowered) inflatable craft|Drown due to oth accident to (nonpowered) inflatable craft +C2899086|T037|HT|V90.86|ICD10CM|Drowning and submersion due to other accident to (nonpowered) inflatable craft|Drowning and submersion due to other accident to (nonpowered) inflatable craft +C2899087|T037|AB|V90.86XA|ICD10CM|Drown due to oth accident to inflatbl crft, init|Drown due to oth accident to inflatbl crft, init +C2899087|T037|PT|V90.86XA|ICD10CM|Drowning and submersion due to other accident to (nonpowered) inflatable craft, initial encounter|Drowning and submersion due to other accident to (nonpowered) inflatable craft, initial encounter +C2899088|T037|AB|V90.86XD|ICD10CM|Drown due to oth accident to inflatbl crft, subs|Drown due to oth accident to inflatbl crft, subs +C2899088|T037|PT|V90.86XD|ICD10CM|Drowning and submersion due to other accident to (nonpowered) inflatable craft, subsequent encounter|Drowning and submersion due to other accident to (nonpowered) inflatable craft, subsequent encounter +C2899089|T037|AB|V90.86XS|ICD10CM|Drown due to oth accident to inflatbl crft, sequela|Drown due to oth accident to inflatbl crft, sequela +C2899089|T037|PT|V90.86XS|ICD10CM|Drowning and submersion due to other accident to (nonpowered) inflatable craft, sequela|Drowning and submersion due to other accident to (nonpowered) inflatable craft, sequela +C2899090|T037|AB|V90.87|ICD10CM|Drowning and submersion due to other accident to water-skis|Drowning and submersion due to other accident to water-skis +C2899090|T037|HT|V90.87|ICD10CM|Drowning and submersion due to other accident to water-skis|Drowning and submersion due to other accident to water-skis +C2899091|T037|AB|V90.87XA|ICD10CM|Drown due to oth accident to water-skis, init|Drown due to oth accident to water-skis, init +C2899091|T037|PT|V90.87XA|ICD10CM|Drowning and submersion due to other accident to water-skis, initial encounter|Drowning and submersion due to other accident to water-skis, initial encounter +C2899092|T037|AB|V90.87XD|ICD10CM|Drown due to oth accident to water-skis, subs|Drown due to oth accident to water-skis, subs +C2899092|T037|PT|V90.87XD|ICD10CM|Drowning and submersion due to other accident to water-skis, subsequent encounter|Drowning and submersion due to other accident to water-skis, subsequent encounter +C2899093|T037|AB|V90.87XS|ICD10CM|Drown due to oth accident to water-skis, sequela|Drown due to oth accident to water-skis, sequela +C2899093|T037|PT|V90.87XS|ICD10CM|Drowning and submersion due to other accident to water-skis, sequela|Drowning and submersion due to other accident to water-skis, sequela +C2899096|T037|AB|V90.88|ICD10CM|Drown due to oth accident to unpowr wtrcrft|Drown due to oth accident to unpowr wtrcrft +C2899096|T037|HT|V90.88|ICD10CM|Drowning and submersion due to other accident to other unpowered watercraft|Drowning and submersion due to other accident to other unpowered watercraft +C2899094|T037|ET|V90.88|ICD10CM|Drowning and submersion due to other accident to surf-board|Drowning and submersion due to other accident to surf-board +C2899095|T037|ET|V90.88|ICD10CM|Drowning and submersion due to other accident to windsurfer|Drowning and submersion due to other accident to windsurfer +C2899097|T037|AB|V90.88XA|ICD10CM|Drown due to oth accident to unpowr wtrcrft, init|Drown due to oth accident to unpowr wtrcrft, init +C2899097|T037|PT|V90.88XA|ICD10CM|Drowning and submersion due to other accident to other unpowered watercraft, initial encounter|Drowning and submersion due to other accident to other unpowered watercraft, initial encounter +C2899098|T037|AB|V90.88XD|ICD10CM|Drown due to oth accident to unpowr wtrcrft, subs|Drown due to oth accident to unpowr wtrcrft, subs +C2899098|T037|PT|V90.88XD|ICD10CM|Drowning and submersion due to other accident to other unpowered watercraft, subsequent encounter|Drowning and submersion due to other accident to other unpowered watercraft, subsequent encounter +C2899099|T037|AB|V90.88XS|ICD10CM|Drown due to oth accident to unpowr wtrcrft, sequela|Drown due to oth accident to unpowr wtrcrft, sequela +C2899099|T037|PT|V90.88XS|ICD10CM|Drowning and submersion due to other accident to other unpowered watercraft, sequela|Drowning and submersion due to other accident to other unpowered watercraft, sequela +C2899102|T037|AB|V90.89|ICD10CM|Drown due to oth accident to unsp watercraft|Drown due to oth accident to unsp watercraft +C2899100|T037|ET|V90.89|ICD10CM|Drowning and submersion due to other accident to boat NOS|Drowning and submersion due to other accident to boat NOS +C2899101|T037|ET|V90.89|ICD10CM|Drowning and submersion due to other accident to ship NOS|Drowning and submersion due to other accident to ship NOS +C2899102|T037|HT|V90.89|ICD10CM|Drowning and submersion due to other accident to unspecified watercraft|Drowning and submersion due to other accident to unspecified watercraft +C0415797|T037|ET|V90.89|ICD10CM|Drowning and submersion due to other accident to watercraft NOS|Drowning and submersion due to other accident to watercraft NOS +C2899103|T037|AB|V90.89XA|ICD10CM|Drown due to oth accident to unsp watercraft, init|Drown due to oth accident to unsp watercraft, init +C2899103|T037|PT|V90.89XA|ICD10CM|Drowning and submersion due to other accident to unspecified watercraft, initial encounter|Drowning and submersion due to other accident to unspecified watercraft, initial encounter +C2899104|T037|AB|V90.89XD|ICD10CM|Drown due to oth accident to unsp watercraft, subs|Drown due to oth accident to unsp watercraft, subs +C2899104|T037|PT|V90.89XD|ICD10CM|Drowning and submersion due to other accident to unspecified watercraft, subsequent encounter|Drowning and submersion due to other accident to unspecified watercraft, subsequent encounter +C2899105|T037|AB|V90.89XS|ICD10CM|Drown due to oth accident to unsp watercraft, sequela|Drown due to oth accident to unsp watercraft, sequela +C2899105|T037|PT|V90.89XS|ICD10CM|Drowning and submersion due to other accident to unspecified watercraft, sequela|Drowning and submersion due to other accident to unspecified watercraft, sequela +C0261235|T037|HT|V91|ICD10|Accident to watercraft causing other injury|Accident to watercraft causing other injury +C4290465|T037|ET|V91|ICD10CM|any injury except drowning and submersion as a result of an accident to watercraft|any injury except drowning and submersion as a result of an accident to watercraft +C2899107|T037|AB|V91|ICD10CM|Other injury due to accident to watercraft|Other injury due to accident to watercraft +C2899107|T037|HT|V91|ICD10CM|Other injury due to accident to watercraft|Other injury due to accident to watercraft +C0477252|T037|PT|V91.0|ICD10|Accident to watercraft causing other injury, merchant ship|Accident to watercraft causing other injury, merchant ship +C2899108|T037|HT|V91.0|ICD10CM|Burn due to watercraft on fire|Burn due to watercraft on fire +C2899108|T037|AB|V91.0|ICD10CM|Burn due to watercraft on fire|Burn due to watercraft on fire +C2899109|T037|AB|V91.00|ICD10CM|Burn due to merchant ship on fire|Burn due to merchant ship on fire +C2899109|T037|HT|V91.00|ICD10CM|Burn due to merchant ship on fire|Burn due to merchant ship on fire +C2899110|T037|AB|V91.00XA|ICD10CM|Burn due to merchant ship on fire, initial encounter|Burn due to merchant ship on fire, initial encounter +C2899110|T037|PT|V91.00XA|ICD10CM|Burn due to merchant ship on fire, initial encounter|Burn due to merchant ship on fire, initial encounter +C2899111|T037|AB|V91.00XD|ICD10CM|Burn due to merchant ship on fire, subsequent encounter|Burn due to merchant ship on fire, subsequent encounter +C2899111|T037|PT|V91.00XD|ICD10CM|Burn due to merchant ship on fire, subsequent encounter|Burn due to merchant ship on fire, subsequent encounter +C2899112|T037|AB|V91.00XS|ICD10CM|Burn due to merchant ship on fire, sequela|Burn due to merchant ship on fire, sequela +C2899112|T037|PT|V91.00XS|ICD10CM|Burn due to merchant ship on fire, sequela|Burn due to merchant ship on fire, sequela +C2899113|T037|ET|V91.01|ICD10CM|Burn due to Ferry-boat on fire|Burn due to Ferry-boat on fire +C2899114|T037|ET|V91.01|ICD10CM|Burn due to Liner on fire|Burn due to Liner on fire +C2899115|T037|AB|V91.01|ICD10CM|Burn due to passenger ship on fire|Burn due to passenger ship on fire +C2899115|T037|HT|V91.01|ICD10CM|Burn due to passenger ship on fire|Burn due to passenger ship on fire +C2899116|T037|AB|V91.01XA|ICD10CM|Burn due to passenger ship on fire, initial encounter|Burn due to passenger ship on fire, initial encounter +C2899116|T037|PT|V91.01XA|ICD10CM|Burn due to passenger ship on fire, initial encounter|Burn due to passenger ship on fire, initial encounter +C2899117|T037|AB|V91.01XD|ICD10CM|Burn due to passenger ship on fire, subsequent encounter|Burn due to passenger ship on fire, subsequent encounter +C2899117|T037|PT|V91.01XD|ICD10CM|Burn due to passenger ship on fire, subsequent encounter|Burn due to passenger ship on fire, subsequent encounter +C2899118|T037|AB|V91.01XS|ICD10CM|Burn due to passenger ship on fire, sequela|Burn due to passenger ship on fire, sequela +C2899118|T037|PT|V91.01XS|ICD10CM|Burn due to passenger ship on fire, sequela|Burn due to passenger ship on fire, sequela +C2899119|T037|AB|V91.02|ICD10CM|Burn due to fishing boat on fire|Burn due to fishing boat on fire +C2899119|T037|HT|V91.02|ICD10CM|Burn due to fishing boat on fire|Burn due to fishing boat on fire +C2899120|T037|AB|V91.02XA|ICD10CM|Burn due to fishing boat on fire, initial encounter|Burn due to fishing boat on fire, initial encounter +C2899120|T037|PT|V91.02XA|ICD10CM|Burn due to fishing boat on fire, initial encounter|Burn due to fishing boat on fire, initial encounter +C2899121|T037|AB|V91.02XD|ICD10CM|Burn due to fishing boat on fire, subsequent encounter|Burn due to fishing boat on fire, subsequent encounter +C2899121|T037|PT|V91.02XD|ICD10CM|Burn due to fishing boat on fire, subsequent encounter|Burn due to fishing boat on fire, subsequent encounter +C2899122|T037|AB|V91.02XS|ICD10CM|Burn due to fishing boat on fire, sequela|Burn due to fishing boat on fire, sequela +C2899122|T037|PT|V91.02XS|ICD10CM|Burn due to fishing boat on fire, sequela|Burn due to fishing boat on fire, sequela +C2899123|T037|ET|V91.03|ICD10CM|Burn due to Hovercraft (on open water) on fire|Burn due to Hovercraft (on open water) on fire +C2899124|T037|ET|V91.03|ICD10CM|Burn due to Jet ski on fire|Burn due to Jet ski on fire +C2899125|T037|AB|V91.03|ICD10CM|Burn due to other powered watercraft on fire|Burn due to other powered watercraft on fire +C2899125|T037|HT|V91.03|ICD10CM|Burn due to other powered watercraft on fire|Burn due to other powered watercraft on fire +C2899126|T037|AB|V91.03XA|ICD10CM|Burn due to other powered watercraft on fire, init encntr|Burn due to other powered watercraft on fire, init encntr +C2899126|T037|PT|V91.03XA|ICD10CM|Burn due to other powered watercraft on fire, initial encounter|Burn due to other powered watercraft on fire, initial encounter +C2899127|T037|AB|V91.03XD|ICD10CM|Burn due to other powered watercraft on fire, subs encntr|Burn due to other powered watercraft on fire, subs encntr +C2899127|T037|PT|V91.03XD|ICD10CM|Burn due to other powered watercraft on fire, subsequent encounter|Burn due to other powered watercraft on fire, subsequent encounter +C2899128|T037|AB|V91.03XS|ICD10CM|Burn due to other powered watercraft on fire, sequela|Burn due to other powered watercraft on fire, sequela +C2899128|T037|PT|V91.03XS|ICD10CM|Burn due to other powered watercraft on fire, sequela|Burn due to other powered watercraft on fire, sequela +C2899129|T037|AB|V91.04|ICD10CM|Burn due to sailboat on fire|Burn due to sailboat on fire +C2899129|T037|HT|V91.04|ICD10CM|Burn due to sailboat on fire|Burn due to sailboat on fire +C2899130|T037|AB|V91.04XA|ICD10CM|Burn due to sailboat on fire, initial encounter|Burn due to sailboat on fire, initial encounter +C2899130|T037|PT|V91.04XA|ICD10CM|Burn due to sailboat on fire, initial encounter|Burn due to sailboat on fire, initial encounter +C2899131|T037|AB|V91.04XD|ICD10CM|Burn due to sailboat on fire, subsequent encounter|Burn due to sailboat on fire, subsequent encounter +C2899131|T037|PT|V91.04XD|ICD10CM|Burn due to sailboat on fire, subsequent encounter|Burn due to sailboat on fire, subsequent encounter +C2899132|T037|AB|V91.04XS|ICD10CM|Burn due to sailboat on fire, sequela|Burn due to sailboat on fire, sequela +C2899132|T037|PT|V91.04XS|ICD10CM|Burn due to sailboat on fire, sequela|Burn due to sailboat on fire, sequela +C2899133|T037|AB|V91.05|ICD10CM|Burn due to canoe or kayak on fire|Burn due to canoe or kayak on fire +C2899133|T037|HT|V91.05|ICD10CM|Burn due to canoe or kayak on fire|Burn due to canoe or kayak on fire +C2899134|T037|AB|V91.05XA|ICD10CM|Burn due to canoe or kayak on fire, initial encounter|Burn due to canoe or kayak on fire, initial encounter +C2899134|T037|PT|V91.05XA|ICD10CM|Burn due to canoe or kayak on fire, initial encounter|Burn due to canoe or kayak on fire, initial encounter +C2899135|T037|AB|V91.05XD|ICD10CM|Burn due to canoe or kayak on fire, subsequent encounter|Burn due to canoe or kayak on fire, subsequent encounter +C2899135|T037|PT|V91.05XD|ICD10CM|Burn due to canoe or kayak on fire, subsequent encounter|Burn due to canoe or kayak on fire, subsequent encounter +C2899136|T037|AB|V91.05XS|ICD10CM|Burn due to canoe or kayak on fire, sequela|Burn due to canoe or kayak on fire, sequela +C2899136|T037|PT|V91.05XS|ICD10CM|Burn due to canoe or kayak on fire, sequela|Burn due to canoe or kayak on fire, sequela +C2899137|T037|AB|V91.06|ICD10CM|Burn due to (nonpowered) inflatable craft on fire|Burn due to (nonpowered) inflatable craft on fire +C2899137|T037|HT|V91.06|ICD10CM|Burn due to (nonpowered) inflatable craft on fire|Burn due to (nonpowered) inflatable craft on fire +C2899138|T037|AB|V91.06XA|ICD10CM|Burn due to (nonpowered) inflatable craft on fire, init|Burn due to (nonpowered) inflatable craft on fire, init +C2899138|T037|PT|V91.06XA|ICD10CM|Burn due to (nonpowered) inflatable craft on fire, initial encounter|Burn due to (nonpowered) inflatable craft on fire, initial encounter +C2899139|T037|AB|V91.06XD|ICD10CM|Burn due to (nonpowered) inflatable craft on fire, subs|Burn due to (nonpowered) inflatable craft on fire, subs +C2899139|T037|PT|V91.06XD|ICD10CM|Burn due to (nonpowered) inflatable craft on fire, subsequent encounter|Burn due to (nonpowered) inflatable craft on fire, subsequent encounter +C2899140|T037|AB|V91.06XS|ICD10CM|Burn due to (nonpowered) inflatable craft on fire, sequela|Burn due to (nonpowered) inflatable craft on fire, sequela +C2899140|T037|PT|V91.06XS|ICD10CM|Burn due to (nonpowered) inflatable craft on fire, sequela|Burn due to (nonpowered) inflatable craft on fire, sequela +C2899141|T037|AB|V91.07|ICD10CM|Burn due to water-skis on fire|Burn due to water-skis on fire +C2899141|T037|HT|V91.07|ICD10CM|Burn due to water-skis on fire|Burn due to water-skis on fire +C2899142|T037|AB|V91.07XA|ICD10CM|Burn due to water-skis on fire, initial encounter|Burn due to water-skis on fire, initial encounter +C2899142|T037|PT|V91.07XA|ICD10CM|Burn due to water-skis on fire, initial encounter|Burn due to water-skis on fire, initial encounter +C2899143|T037|AB|V91.07XD|ICD10CM|Burn due to water-skis on fire, subsequent encounter|Burn due to water-skis on fire, subsequent encounter +C2899143|T037|PT|V91.07XD|ICD10CM|Burn due to water-skis on fire, subsequent encounter|Burn due to water-skis on fire, subsequent encounter +C2899144|T037|AB|V91.07XS|ICD10CM|Burn due to water-skis on fire, sequela|Burn due to water-skis on fire, sequela +C2899144|T037|PT|V91.07XS|ICD10CM|Burn due to water-skis on fire, sequela|Burn due to water-skis on fire, sequela +C2899145|T037|AB|V91.08|ICD10CM|Burn due to other unpowered watercraft on fire|Burn due to other unpowered watercraft on fire +C2899145|T037|HT|V91.08|ICD10CM|Burn due to other unpowered watercraft on fire|Burn due to other unpowered watercraft on fire +C2899146|T037|AB|V91.08XA|ICD10CM|Burn due to other unpowered watercraft on fire, init encntr|Burn due to other unpowered watercraft on fire, init encntr +C2899146|T037|PT|V91.08XA|ICD10CM|Burn due to other unpowered watercraft on fire, initial encounter|Burn due to other unpowered watercraft on fire, initial encounter +C2899147|T037|AB|V91.08XD|ICD10CM|Burn due to other unpowered watercraft on fire, subs encntr|Burn due to other unpowered watercraft on fire, subs encntr +C2899147|T037|PT|V91.08XD|ICD10CM|Burn due to other unpowered watercraft on fire, subsequent encounter|Burn due to other unpowered watercraft on fire, subsequent encounter +C2899148|T037|AB|V91.08XS|ICD10CM|Burn due to other unpowered watercraft on fire, sequela|Burn due to other unpowered watercraft on fire, sequela +C2899148|T037|PT|V91.08XS|ICD10CM|Burn due to other unpowered watercraft on fire, sequela|Burn due to other unpowered watercraft on fire, sequela +C2899149|T037|ET|V91.09|ICD10CM|Burn due to boat NOS on fire|Burn due to boat NOS on fire +C2899150|T037|ET|V91.09|ICD10CM|Burn due to ship NOS on fire|Burn due to ship NOS on fire +C2899151|T037|AB|V91.09|ICD10CM|Burn due to unspecified watercraft on fire|Burn due to unspecified watercraft on fire +C2899151|T037|HT|V91.09|ICD10CM|Burn due to unspecified watercraft on fire|Burn due to unspecified watercraft on fire +C2899108|T037|ET|V91.09|ICD10CM|Burn due to watercraft NOS on fire|Burn due to watercraft NOS on fire +C2899152|T037|AB|V91.09XA|ICD10CM|Burn due to unspecified watercraft on fire, init encntr|Burn due to unspecified watercraft on fire, init encntr +C2899152|T037|PT|V91.09XA|ICD10CM|Burn due to unspecified watercraft on fire, initial encounter|Burn due to unspecified watercraft on fire, initial encounter +C2899153|T037|AB|V91.09XD|ICD10CM|Burn due to unspecified watercraft on fire, subs encntr|Burn due to unspecified watercraft on fire, subs encntr +C2899153|T037|PT|V91.09XD|ICD10CM|Burn due to unspecified watercraft on fire, subsequent encounter|Burn due to unspecified watercraft on fire, subsequent encounter +C2899154|T037|AB|V91.09XS|ICD10CM|Burn due to unspecified watercraft on fire, sequela|Burn due to unspecified watercraft on fire, sequela +C2899154|T037|PT|V91.09XS|ICD10CM|Burn due to unspecified watercraft on fire, sequela|Burn due to unspecified watercraft on fire, sequela +C0477253|T037|PT|V91.1|ICD10|Accident to watercraft causing other injury, passenger ship|Accident to watercraft causing other injury, passenger ship +C2899196|T037|AB|V91.1|ICD10CM|Crushed betw watercraft and oth wtrcrft/obj due to collision|Crushed betw watercraft and oth wtrcrft/obj due to collision +C2899196|T037|HT|V91.1|ICD10CM|Crushed between watercraft and other watercraft or other object due to collision|Crushed between watercraft and other watercraft or other object due to collision +C2899155|T037|ET|V91.1|ICD10CM|Crushed by lifeboat after abandoning ship in a collision|Crushed by lifeboat after abandoning ship in a collision +C2899156|T037|AB|V91.10|ICD10CM|Crushed betw merch ship and oth wtrcrft/obj due to collision|Crushed betw merch ship and oth wtrcrft/obj due to collision +C2899156|T037|HT|V91.10|ICD10CM|Crushed between merchant ship and other watercraft or other object due to collision|Crushed between merchant ship and other watercraft or other object due to collision +C2899157|T037|AB|V91.10XA|ICD10CM|Crush betw merch ship and oth wtrcrft/obj due to clsn, init|Crush betw merch ship and oth wtrcrft/obj due to clsn, init +C2899158|T037|AB|V91.10XD|ICD10CM|Crush betw merch ship and oth wtrcrft/obj due to clsn, subs|Crush betw merch ship and oth wtrcrft/obj due to clsn, subs +C2899159|T037|AB|V91.10XS|ICD10CM|Crush betw merch ship and oth wtrcrft/obj due to clsn, sqla|Crush betw merch ship and oth wtrcrft/obj due to clsn, sqla +C2899159|T037|PT|V91.10XS|ICD10CM|Crushed between merchant ship and other watercraft or other object due to collision, sequela|Crushed between merchant ship and other watercraft or other object due to collision, sequela +C2899162|T037|AB|V91.11|ICD10CM|Crushed betw passenger ship and oth wtrcrft/obj due to clsn|Crushed betw passenger ship and oth wtrcrft/obj due to clsn +C2899160|T037|ET|V91.11|ICD10CM|Crushed between Ferry-boat and other watercraft or other object due to collision|Crushed between Ferry-boat and other watercraft or other object due to collision +C2899161|T037|ET|V91.11|ICD10CM|Crushed between Liner and other watercraft or other object due to collision|Crushed between Liner and other watercraft or other object due to collision +C2899162|T037|HT|V91.11|ICD10CM|Crushed between passenger ship and other watercraft or other object due to collision|Crushed between passenger ship and other watercraft or other object due to collision +C2899163|T037|AB|V91.11XA|ICD10CM|Crush betw pasngr ship and oth wtrcrft/obj due to clsn, init|Crush betw pasngr ship and oth wtrcrft/obj due to clsn, init +C2899164|T037|AB|V91.11XD|ICD10CM|Crush betw pasngr ship and oth wtrcrft/obj due to clsn, subs|Crush betw pasngr ship and oth wtrcrft/obj due to clsn, subs +C2899165|T037|AB|V91.11XS|ICD10CM|Crush betw pasngr ship and oth wtrcrft/obj due to clsn, sqla|Crush betw pasngr ship and oth wtrcrft/obj due to clsn, sqla +C2899165|T037|PT|V91.11XS|ICD10CM|Crushed between passenger ship and other watercraft or other object due to collision, sequela|Crushed between passenger ship and other watercraft or other object due to collision, sequela +C2899166|T037|AB|V91.12|ICD10CM|Crushed betw fishing boat and oth wtrcrft/obj due to clsn|Crushed betw fishing boat and oth wtrcrft/obj due to clsn +C2899166|T037|HT|V91.12|ICD10CM|Crushed between fishing boat and other watercraft or other object due to collision|Crushed between fishing boat and other watercraft or other object due to collision +C2899167|T037|AB|V91.12XA|ICD10CM|Crush betw fish boat and oth wtrcrft/obj due to clsn, init|Crush betw fish boat and oth wtrcrft/obj due to clsn, init +C2899168|T037|AB|V91.12XD|ICD10CM|Crush betw fish boat and oth wtrcrft/obj due to clsn, subs|Crush betw fish boat and oth wtrcrft/obj due to clsn, subs +C2899169|T037|AB|V91.12XS|ICD10CM|Crush betw fish boat and oth wtrcrft/obj due to clsn, sqla|Crush betw fish boat and oth wtrcrft/obj due to clsn, sqla +C2899169|T037|PT|V91.12XS|ICD10CM|Crushed between fishing boat and other watercraft or other object due to collision, sequela|Crushed between fishing boat and other watercraft or other object due to collision, sequela +C2899172|T037|AB|V91.13|ICD10CM|Crush betw oth power wtrcrft and oth wtrcrft/obj due to clsn|Crush betw oth power wtrcrft and oth wtrcrft/obj due to clsn +C2899170|T037|ET|V91.13|ICD10CM|Crushed between Hovercraft (on open water) and other watercraft or other object due to collision|Crushed between Hovercraft (on open water) and other watercraft or other object due to collision +C2899171|T037|ET|V91.13|ICD10CM|Crushed between Jet ski and other watercraft or other object due to collision|Crushed between Jet ski and other watercraft or other object due to collision +C2899172|T037|HT|V91.13|ICD10CM|Crushed between other powered watercraft and other watercraft or other object due to collision|Crushed between other powered watercraft and other watercraft or other object due to collision +C2899173|T037|AB|V91.13XA|ICD10CM|Crush betw oth pwr wtrcrft & oth wtrcrft/obj d/t clsn, init|Crush betw oth pwr wtrcrft & oth wtrcrft/obj d/t clsn, init +C2899174|T037|AB|V91.13XD|ICD10CM|Crush betw oth pwr wtrcrft & oth wtrcrft/obj d/t clsn, subs|Crush betw oth pwr wtrcrft & oth wtrcrft/obj d/t clsn, subs +C2899175|T037|AB|V91.13XS|ICD10CM|Crush betw oth pwr wtrcrft & oth wtrcrft/obj d/t clsn, sqla|Crush betw oth pwr wtrcrft & oth wtrcrft/obj d/t clsn, sqla +C2899176|T037|AB|V91.14|ICD10CM|Crushed betw sailboat and oth wtrcrft/obj due to collision|Crushed betw sailboat and oth wtrcrft/obj due to collision +C2899176|T037|HT|V91.14|ICD10CM|Crushed between sailboat and other watercraft or other object due to collision|Crushed between sailboat and other watercraft or other object due to collision +C2899177|T037|AB|V91.14XA|ICD10CM|Crushed betw sailboat and oth wtrcrft/obj due to clsn, init|Crushed betw sailboat and oth wtrcrft/obj due to clsn, init +C2899177|T037|PT|V91.14XA|ICD10CM|Crushed between sailboat and other watercraft or other object due to collision, initial encounter|Crushed between sailboat and other watercraft or other object due to collision, initial encounter +C2899178|T037|AB|V91.14XD|ICD10CM|Crushed betw sailboat and oth wtrcrft/obj due to clsn, subs|Crushed betw sailboat and oth wtrcrft/obj due to clsn, subs +C2899178|T037|PT|V91.14XD|ICD10CM|Crushed between sailboat and other watercraft or other object due to collision, subsequent encounter|Crushed between sailboat and other watercraft or other object due to collision, subsequent encounter +C2899179|T037|AB|V91.14XS|ICD10CM|Crushed betw sailbt and oth wtrcrft/obj due to clsn, sequela|Crushed betw sailbt and oth wtrcrft/obj due to clsn, sequela +C2899179|T037|PT|V91.14XS|ICD10CM|Crushed between sailboat and other watercraft or other object due to collision, sequela|Crushed between sailboat and other watercraft or other object due to collision, sequela +C2899180|T037|AB|V91.15|ICD10CM|Crushed betw canoe/kayk and oth wtrcrft/obj due to collision|Crushed betw canoe/kayk and oth wtrcrft/obj due to collision +C2899180|T037|HT|V91.15|ICD10CM|Crushed between canoe or kayak and other watercraft or other object due to collision|Crushed between canoe or kayak and other watercraft or other object due to collision +C2899181|T037|AB|V91.15XA|ICD10CM|Crush betw canoe/kayk and oth wtrcrft/obj due to clsn, init|Crush betw canoe/kayk and oth wtrcrft/obj due to clsn, init +C2899182|T037|AB|V91.15XD|ICD10CM|Crush betw canoe/kayk and oth wtrcrft/obj due to clsn, subs|Crush betw canoe/kayk and oth wtrcrft/obj due to clsn, subs +C2899183|T037|AB|V91.15XS|ICD10CM|Crush betw canoe/kayk and oth wtrcrft/obj due to clsn, sqla|Crush betw canoe/kayk and oth wtrcrft/obj due to clsn, sqla +C2899183|T037|PT|V91.15XS|ICD10CM|Crushed between canoe or kayak and other watercraft or other object due to collision, sequela|Crushed between canoe or kayak and other watercraft or other object due to collision, sequela +C2899184|T037|AB|V91.16|ICD10CM|Crushed betw inflatbl crft and oth wtrcrft/obj due to clsn|Crushed betw inflatbl crft and oth wtrcrft/obj due to clsn +C2899184|T037|HT|V91.16|ICD10CM|Crushed between (nonpowered) inflatable craft and other watercraft or other object due to collision|Crushed between (nonpowered) inflatable craft and other watercraft or other object due to collision +C2899185|T037|AB|V91.16XA|ICD10CM|Crush betw inflatbl crft and oth wtrcrft/obj d/t clsn, init|Crush betw inflatbl crft and oth wtrcrft/obj d/t clsn, init +C2899186|T037|AB|V91.16XD|ICD10CM|Crush betw inflatbl crft and oth wtrcrft/obj d/t clsn, subs|Crush betw inflatbl crft and oth wtrcrft/obj d/t clsn, subs +C2899187|T037|AB|V91.16XS|ICD10CM|Crush betw inflatbl crft and oth wtrcrft/obj d/t clsn, sqla|Crush betw inflatbl crft and oth wtrcrft/obj d/t clsn, sqla +C2899190|T037|AB|V91.18|ICD10CM|Crushed betw unpowr wtrcrft and oth wtrcrft/obj due to clsn|Crushed betw unpowr wtrcrft and oth wtrcrft/obj due to clsn +C2899190|T037|HT|V91.18|ICD10CM|Crushed between other unpowered watercraft and other watercraft or other object due to collision|Crushed between other unpowered watercraft and other watercraft or other object due to collision +C2899188|T037|ET|V91.18|ICD10CM|Crushed between surfboard and other watercraft or other object due to collision|Crushed between surfboard and other watercraft or other object due to collision +C2899189|T037|ET|V91.18|ICD10CM|Crushed between windsurfer and other watercraft or other object due to collision|Crushed between windsurfer and other watercraft or other object due to collision +C2899191|T037|AB|V91.18XA|ICD10CM|Crush betw unpowr wtrcrft and oth wtrcrft/obj d/t clsn, init|Crush betw unpowr wtrcrft and oth wtrcrft/obj d/t clsn, init +C2899192|T037|AB|V91.18XD|ICD10CM|Crush betw unpowr wtrcrft and oth wtrcrft/obj d/t clsn, subs|Crush betw unpowr wtrcrft and oth wtrcrft/obj d/t clsn, subs +C2899193|T037|AB|V91.18XS|ICD10CM|Crush betw unpowr wtrcrft and oth wtrcrft/obj d/t clsn, sqla|Crush betw unpowr wtrcrft and oth wtrcrft/obj d/t clsn, sqla +C2899197|T037|AB|V91.19|ICD10CM|Crushed betw unsp wtrcrft and oth wtrcrft/obj due to clsn|Crushed betw unsp wtrcrft and oth wtrcrft/obj due to clsn +C2899194|T037|ET|V91.19|ICD10CM|Crushed between boat NOS and other watercraft or other object due to collision|Crushed between boat NOS and other watercraft or other object due to collision +C2899195|T037|ET|V91.19|ICD10CM|Crushed between ship NOS and other watercraft or other object due to collision|Crushed between ship NOS and other watercraft or other object due to collision +C2899197|T037|HT|V91.19|ICD10CM|Crushed between unspecified watercraft and other watercraft or other object due to collision|Crushed between unspecified watercraft and other watercraft or other object due to collision +C2899196|T037|ET|V91.19|ICD10CM|Crushed between watercraft NOS and other watercraft or other object due to collision|Crushed between watercraft NOS and other watercraft or other object due to collision +C2899198|T037|AB|V91.19XA|ICD10CM|Crush betw unsp wtrcrft and oth wtrcrft/obj d/t clsn, init|Crush betw unsp wtrcrft and oth wtrcrft/obj d/t clsn, init +C2899199|T037|AB|V91.19XD|ICD10CM|Crush betw unsp wtrcrft and oth wtrcrft/obj d/t clsn, subs|Crush betw unsp wtrcrft and oth wtrcrft/obj d/t clsn, subs +C2899200|T037|AB|V91.19XS|ICD10CM|Crush betw unsp wtrcrft and oth wtrcrft/obj d/t clsn, sqla|Crush betw unsp wtrcrft and oth wtrcrft/obj d/t clsn, sqla +C0477254|T037|PT|V91.2|ICD10|Accident to watercraft causing other injury, fishing boat|Accident to watercraft causing other injury, fishing boat +C2899236|T037|AB|V91.2|ICD10CM|Fall due to collision betw watercraft and oth wtrcrft/obj|Fall due to collision betw watercraft and oth wtrcrft/obj +C2899236|T037|HT|V91.2|ICD10CM|Fall due to collision between watercraft and other watercraft or other object|Fall due to collision between watercraft and other watercraft or other object +C2899201|T037|ET|V91.2|ICD10CM|Fall while remaining on watercraft after collision|Fall while remaining on watercraft after collision +C2899202|T037|AB|V91.20|ICD10CM|Fall due to collision betw merchant ship and oth wtrcrft/obj|Fall due to collision betw merchant ship and oth wtrcrft/obj +C2899202|T037|HT|V91.20|ICD10CM|Fall due to collision between merchant ship and other watercraft or other object|Fall due to collision between merchant ship and other watercraft or other object +C2899203|T037|AB|V91.20XA|ICD10CM|Fall due to clsn betw merch ship and oth wtrcrft/obj, init|Fall due to clsn betw merch ship and oth wtrcrft/obj, init +C2899203|T037|PT|V91.20XA|ICD10CM|Fall due to collision between merchant ship and other watercraft or other object, initial encounter|Fall due to collision between merchant ship and other watercraft or other object, initial encounter +C2899204|T037|AB|V91.20XD|ICD10CM|Fall due to clsn betw merch ship and oth wtrcrft/obj, subs|Fall due to clsn betw merch ship and oth wtrcrft/obj, subs +C2899205|T037|AB|V91.20XS|ICD10CM|Fall due to clsn betw merch ship and oth wtrcrft/obj, sqla|Fall due to clsn betw merch ship and oth wtrcrft/obj, sqla +C2899205|T037|PT|V91.20XS|ICD10CM|Fall due to collision between merchant ship and other watercraft or other object, sequela|Fall due to collision between merchant ship and other watercraft or other object, sequela +C2899208|T037|AB|V91.21|ICD10CM|Fall due to clsn betw passenger ship and oth wtrcrft/obj|Fall due to clsn betw passenger ship and oth wtrcrft/obj +C2899206|T037|ET|V91.21|ICD10CM|Fall due to collision between Ferry-boat and other watercraft or other object|Fall due to collision between Ferry-boat and other watercraft or other object +C2899207|T037|ET|V91.21|ICD10CM|Fall due to collision between Liner and other watercraft or other object|Fall due to collision between Liner and other watercraft or other object +C2899208|T037|HT|V91.21|ICD10CM|Fall due to collision between passenger ship and other watercraft or other object|Fall due to collision between passenger ship and other watercraft or other object +C2899209|T037|AB|V91.21XA|ICD10CM|Fall due to clsn betw pasngr ship and oth wtrcrft/obj, init|Fall due to clsn betw pasngr ship and oth wtrcrft/obj, init +C2899209|T037|PT|V91.21XA|ICD10CM|Fall due to collision between passenger ship and other watercraft or other object, initial encounter|Fall due to collision between passenger ship and other watercraft or other object, initial encounter +C2899210|T037|AB|V91.21XD|ICD10CM|Fall due to clsn betw pasngr ship and oth wtrcrft/obj, subs|Fall due to clsn betw pasngr ship and oth wtrcrft/obj, subs +C2899211|T037|AB|V91.21XS|ICD10CM|Fall due to clsn betw pasngr ship and oth wtrcrft/obj, sqla|Fall due to clsn betw pasngr ship and oth wtrcrft/obj, sqla +C2899211|T037|PT|V91.21XS|ICD10CM|Fall due to collision between passenger ship and other watercraft or other object, sequela|Fall due to collision between passenger ship and other watercraft or other object, sequela +C2899212|T037|AB|V91.22|ICD10CM|Fall due to collision betw fishing boat and oth wtrcrft/obj|Fall due to collision betw fishing boat and oth wtrcrft/obj +C2899212|T037|HT|V91.22|ICD10CM|Fall due to collision between fishing boat and other watercraft or other object|Fall due to collision between fishing boat and other watercraft or other object +C2899213|T037|AB|V91.22XA|ICD10CM|Fall due to clsn betw fishing boat and oth wtrcrft/obj, init|Fall due to clsn betw fishing boat and oth wtrcrft/obj, init +C2899213|T037|PT|V91.22XA|ICD10CM|Fall due to collision between fishing boat and other watercraft or other object, initial encounter|Fall due to collision between fishing boat and other watercraft or other object, initial encounter +C2899214|T037|AB|V91.22XD|ICD10CM|Fall due to clsn betw fishing boat and oth wtrcrft/obj, subs|Fall due to clsn betw fishing boat and oth wtrcrft/obj, subs +C2899215|T037|AB|V91.22XS|ICD10CM|Fall due to clsn betw fish boat and oth wtrcrft/obj, sequela|Fall due to clsn betw fish boat and oth wtrcrft/obj, sequela +C2899215|T037|PT|V91.22XS|ICD10CM|Fall due to collision between fishing boat and other watercraft or other object, sequela|Fall due to collision between fishing boat and other watercraft or other object, sequela +C2899218|T037|AB|V91.23|ICD10CM|Fall due to clsn betw oth power wtrcrft and oth wtrcrft/obj|Fall due to clsn betw oth power wtrcrft and oth wtrcrft/obj +C2899216|T037|ET|V91.23|ICD10CM|Fall due to collision between Hovercraft (on open water) and other watercraft or other object|Fall due to collision between Hovercraft (on open water) and other watercraft or other object +C2899217|T037|ET|V91.23|ICD10CM|Fall due to collision between Jet ski and other watercraft or other object|Fall due to collision between Jet ski and other watercraft or other object +C2899218|T037|HT|V91.23|ICD10CM|Fall due to collision between other powered watercraft and other watercraft or other object|Fall due to collision between other powered watercraft and other watercraft or other object +C2899219|T037|AB|V91.23XA|ICD10CM|Fall d/t clsn betw oth pwr wtrcrft and oth wtrcrft/obj, init|Fall d/t clsn betw oth pwr wtrcrft and oth wtrcrft/obj, init +C2899220|T037|AB|V91.23XD|ICD10CM|Fall d/t clsn betw oth pwr wtrcrft and oth wtrcrft/obj, subs|Fall d/t clsn betw oth pwr wtrcrft and oth wtrcrft/obj, subs +C2899221|T037|AB|V91.23XS|ICD10CM|Fall d/t clsn betw oth pwr wtrcrft and oth wtrcrft/obj, sqla|Fall d/t clsn betw oth pwr wtrcrft and oth wtrcrft/obj, sqla +C2899221|T037|PT|V91.23XS|ICD10CM|Fall due to collision between other powered watercraft and other watercraft or other object, sequela|Fall due to collision between other powered watercraft and other watercraft or other object, sequela +C2899222|T037|AB|V91.24|ICD10CM|Fall due to collision betw sailboat and oth wtrcrft/obj|Fall due to collision betw sailboat and oth wtrcrft/obj +C2899222|T037|HT|V91.24|ICD10CM|Fall due to collision between sailboat and other watercraft or other object|Fall due to collision between sailboat and other watercraft or other object +C2899223|T037|AB|V91.24XA|ICD10CM|Fall due to clsn betw sailboat and oth wtrcrft/obj, init|Fall due to clsn betw sailboat and oth wtrcrft/obj, init +C2899223|T037|PT|V91.24XA|ICD10CM|Fall due to collision between sailboat and other watercraft or other object, initial encounter|Fall due to collision between sailboat and other watercraft or other object, initial encounter +C2899224|T037|AB|V91.24XD|ICD10CM|Fall due to clsn betw sailboat and oth wtrcrft/obj, subs|Fall due to clsn betw sailboat and oth wtrcrft/obj, subs +C2899224|T037|PT|V91.24XD|ICD10CM|Fall due to collision between sailboat and other watercraft or other object, subsequent encounter|Fall due to collision between sailboat and other watercraft or other object, subsequent encounter +C2899225|T037|AB|V91.24XS|ICD10CM|Fall due to clsn betw sailboat and oth wtrcrft/obj, sequela|Fall due to clsn betw sailboat and oth wtrcrft/obj, sequela +C2899225|T037|PT|V91.24XS|ICD10CM|Fall due to collision between sailboat and other watercraft or other object, sequela|Fall due to collision between sailboat and other watercraft or other object, sequela +C2899226|T037|AB|V91.25|ICD10CM|Fall due to collision betw canoe/kayk and oth wtrcrft/obj|Fall due to collision betw canoe/kayk and oth wtrcrft/obj +C2899226|T037|HT|V91.25|ICD10CM|Fall due to collision between canoe or kayak and other watercraft or other object|Fall due to collision between canoe or kayak and other watercraft or other object +C2899227|T037|AB|V91.25XA|ICD10CM|Fall due to clsn betw canoe/kayk and oth wtrcrft/obj, init|Fall due to clsn betw canoe/kayk and oth wtrcrft/obj, init +C2899227|T037|PT|V91.25XA|ICD10CM|Fall due to collision between canoe or kayak and other watercraft or other object, initial encounter|Fall due to collision between canoe or kayak and other watercraft or other object, initial encounter +C2899228|T037|AB|V91.25XD|ICD10CM|Fall due to clsn betw canoe/kayk and oth wtrcrft/obj, subs|Fall due to clsn betw canoe/kayk and oth wtrcrft/obj, subs +C2899229|T037|AB|V91.25XS|ICD10CM|Fall due to clsn betw canoe/kayk and oth wtrcrft/obj, sqla|Fall due to clsn betw canoe/kayk and oth wtrcrft/obj, sqla +C2899229|T037|PT|V91.25XS|ICD10CM|Fall due to collision between canoe or kayak and other watercraft or other object, sequela|Fall due to collision between canoe or kayak and other watercraft or other object, sequela +C2899230|T037|AB|V91.26|ICD10CM|Fall due to collision betw inflatbl crft and oth wtrcrft/obj|Fall due to collision betw inflatbl crft and oth wtrcrft/obj +C2899230|T037|HT|V91.26|ICD10CM|Fall due to collision between (nonpowered) inflatable craft and other watercraft or other object|Fall due to collision between (nonpowered) inflatable craft and other watercraft or other object +C2899231|T037|AB|V91.26XA|ICD10CM|Fall d/t clsn betw inflatbl crft and oth wtrcrft/obj, init|Fall d/t clsn betw inflatbl crft and oth wtrcrft/obj, init +C2899232|T037|AB|V91.26XD|ICD10CM|Fall d/t clsn betw inflatbl crft and oth wtrcrft/obj, subs|Fall d/t clsn betw inflatbl crft and oth wtrcrft/obj, subs +C2899233|T037|AB|V91.26XS|ICD10CM|Fall d/t clsn betw inflatbl crft and oth wtrcrft/obj, sqla|Fall d/t clsn betw inflatbl crft and oth wtrcrft/obj, sqla +C2899237|T037|AB|V91.29|ICD10CM|Fall due to collision betw unsp wtrcrft and oth wtrcrft/obj|Fall due to collision betw unsp wtrcrft and oth wtrcrft/obj +C2899234|T037|ET|V91.29|ICD10CM|Fall due to collision between boat NOS and other watercraft or other object|Fall due to collision between boat NOS and other watercraft or other object +C2899235|T037|ET|V91.29|ICD10CM|Fall due to collision between ship NOS and other watercraft or other object|Fall due to collision between ship NOS and other watercraft or other object +C2899237|T037|HT|V91.29|ICD10CM|Fall due to collision between unspecified watercraft and other watercraft or other object|Fall due to collision between unspecified watercraft and other watercraft or other object +C2899236|T037|ET|V91.29|ICD10CM|Fall due to collision between watercraft NOS and other watercraft or other object|Fall due to collision between watercraft NOS and other watercraft or other object +C2899238|T037|AB|V91.29XA|ICD10CM|Fall due to clsn betw unsp wtrcrft and oth wtrcrft/obj, init|Fall due to clsn betw unsp wtrcrft and oth wtrcrft/obj, init +C2899239|T037|AB|V91.29XD|ICD10CM|Fall due to clsn betw unsp wtrcrft and oth wtrcrft/obj, subs|Fall due to clsn betw unsp wtrcrft and oth wtrcrft/obj, subs +C2899240|T037|AB|V91.29XS|ICD10CM|Fall due to clsn betw unsp wtrcrft and oth wtrcrft/obj, sqla|Fall due to clsn betw unsp wtrcrft and oth wtrcrft/obj, sqla +C2899240|T037|PT|V91.29XS|ICD10CM|Fall due to collision between unspecified watercraft and other watercraft or other object, sequela|Fall due to collision between unspecified watercraft and other watercraft or other object, sequela +C0477255|T037|PT|V91.3|ICD10|Accident to watercraft causing other injury, other powered watercraft|Accident to watercraft causing other injury, other powered watercraft +C2899287|T037|AB|V91.3|ICD10CM|Hit by falling object due to accident to watercraft|Hit by falling object due to accident to watercraft +C2899287|T037|HT|V91.3|ICD10CM|Hit or struck by falling object due to accident to watercraft|Hit or struck by falling object due to accident to watercraft +C2899242|T037|AB|V91.30|ICD10CM|Hit by falling object due to accident to merchant ship|Hit by falling object due to accident to merchant ship +C2899242|T037|HT|V91.30|ICD10CM|Hit or struck by falling object due to accident to merchant ship|Hit or struck by falling object due to accident to merchant ship +C2899243|T037|AB|V91.30XA|ICD10CM|Hit by falling object due to accident to merchant ship, init|Hit by falling object due to accident to merchant ship, init +C2899243|T037|PT|V91.30XA|ICD10CM|Hit or struck by falling object due to accident to merchant ship, initial encounter|Hit or struck by falling object due to accident to merchant ship, initial encounter +C2899244|T037|AB|V91.30XD|ICD10CM|Hit by falling object due to accident to merchant ship, subs|Hit by falling object due to accident to merchant ship, subs +C2899244|T037|PT|V91.30XD|ICD10CM|Hit or struck by falling object due to accident to merchant ship, subsequent encounter|Hit or struck by falling object due to accident to merchant ship, subsequent encounter +C2899245|T037|AB|V91.30XS|ICD10CM|Hit by falling object due to accident to merch ship, sequela|Hit by falling object due to accident to merch ship, sequela +C2899245|T037|PT|V91.30XS|ICD10CM|Hit or struck by falling object due to accident to merchant ship, sequela|Hit or struck by falling object due to accident to merchant ship, sequela +C2899248|T037|AB|V91.31|ICD10CM|Hit by falling object due to accident to passenger ship|Hit by falling object due to accident to passenger ship +C2899246|T037|ET|V91.31|ICD10CM|Hit or struck by falling object due to accident to Ferry-boat|Hit or struck by falling object due to accident to Ferry-boat +C2899247|T037|ET|V91.31|ICD10CM|Hit or struck by falling object due to accident to Liner|Hit or struck by falling object due to accident to Liner +C2899248|T037|HT|V91.31|ICD10CM|Hit or struck by falling object due to accident to passenger ship|Hit or struck by falling object due to accident to passenger ship +C2899249|T037|AB|V91.31XA|ICD10CM|Hit by falling object due to accident to pasngr ship, init|Hit by falling object due to accident to pasngr ship, init +C2899249|T037|PT|V91.31XA|ICD10CM|Hit or struck by falling object due to accident to passenger ship, initial encounter|Hit or struck by falling object due to accident to passenger ship, initial encounter +C2899250|T037|AB|V91.31XD|ICD10CM|Hit by falling object due to accident to pasngr ship, subs|Hit by falling object due to accident to pasngr ship, subs +C2899250|T037|PT|V91.31XD|ICD10CM|Hit or struck by falling object due to accident to passenger ship, subsequent encounter|Hit or struck by falling object due to accident to passenger ship, subsequent encounter +C2899251|T037|AB|V91.31XS|ICD10CM|Hit by falling object due to acc to pasngr ship, sequela|Hit by falling object due to acc to pasngr ship, sequela +C2899251|T037|PT|V91.31XS|ICD10CM|Hit or struck by falling object due to accident to passenger ship, sequela|Hit or struck by falling object due to accident to passenger ship, sequela +C2899252|T037|AB|V91.32|ICD10CM|Hit by falling object due to accident to fishing boat|Hit by falling object due to accident to fishing boat +C2899252|T037|HT|V91.32|ICD10CM|Hit or struck by falling object due to accident to fishing boat|Hit or struck by falling object due to accident to fishing boat +C2899253|T037|AB|V91.32XA|ICD10CM|Hit by falling object due to accident to fishing boat, init|Hit by falling object due to accident to fishing boat, init +C2899253|T037|PT|V91.32XA|ICD10CM|Hit or struck by falling object due to accident to fishing boat, initial encounter|Hit or struck by falling object due to accident to fishing boat, initial encounter +C2899254|T037|AB|V91.32XD|ICD10CM|Hit by falling object due to accident to fishing boat, subs|Hit by falling object due to accident to fishing boat, subs +C2899254|T037|PT|V91.32XD|ICD10CM|Hit or struck by falling object due to accident to fishing boat, subsequent encounter|Hit or struck by falling object due to accident to fishing boat, subsequent encounter +C2899255|T037|AB|V91.32XS|ICD10CM|Hit by falling object due to acc to fishing boat, sequela|Hit by falling object due to acc to fishing boat, sequela +C2899255|T037|PT|V91.32XS|ICD10CM|Hit or struck by falling object due to accident to fishing boat, sequela|Hit or struck by falling object due to accident to fishing boat, sequela +C2899258|T037|AB|V91.33|ICD10CM|Hit by falling object due to accident to oth powered wtrcrft|Hit by falling object due to accident to oth powered wtrcrft +C2899256|T037|ET|V91.33|ICD10CM|Hit or struck by falling object due to accident to Hovercraft (on open water)|Hit or struck by falling object due to accident to Hovercraft (on open water) +C2899257|T037|ET|V91.33|ICD10CM|Hit or struck by falling object due to accident to Jet ski|Hit or struck by falling object due to accident to Jet ski +C2899258|T037|HT|V91.33|ICD10CM|Hit or struck by falling object due to accident to other powered watercraft|Hit or struck by falling object due to accident to other powered watercraft +C2899259|T037|AB|V91.33XA|ICD10CM|Hit by fall object due to acc to oth powered wtrcrft, init|Hit by fall object due to acc to oth powered wtrcrft, init +C2899259|T037|PT|V91.33XA|ICD10CM|Hit or struck by falling object due to accident to other powered watercraft, initial encounter|Hit or struck by falling object due to accident to other powered watercraft, initial encounter +C2899260|T037|AB|V91.33XD|ICD10CM|Hit by fall object due to acc to oth powered wtrcrft, subs|Hit by fall object due to acc to oth powered wtrcrft, subs +C2899260|T037|PT|V91.33XD|ICD10CM|Hit or struck by falling object due to accident to other powered watercraft, subsequent encounter|Hit or struck by falling object due to accident to other powered watercraft, subsequent encounter +C2899261|T037|AB|V91.33XS|ICD10CM|Hit by fall object due to acc to oth power wtrcrft, sequela|Hit by fall object due to acc to oth power wtrcrft, sequela +C2899261|T037|PT|V91.33XS|ICD10CM|Hit or struck by falling object due to accident to other powered watercraft, sequela|Hit or struck by falling object due to accident to other powered watercraft, sequela +C2899262|T037|AB|V91.34|ICD10CM|Hit or struck by falling object due to accident to sailboat|Hit or struck by falling object due to accident to sailboat +C2899262|T037|HT|V91.34|ICD10CM|Hit or struck by falling object due to accident to sailboat|Hit or struck by falling object due to accident to sailboat +C2899263|T037|AB|V91.34XA|ICD10CM|Hit by falling object due to accident to sailboat, init|Hit by falling object due to accident to sailboat, init +C2899263|T037|PT|V91.34XA|ICD10CM|Hit or struck by falling object due to accident to sailboat, initial encounter|Hit or struck by falling object due to accident to sailboat, initial encounter +C2899264|T037|AB|V91.34XD|ICD10CM|Hit by falling object due to accident to sailboat, subs|Hit by falling object due to accident to sailboat, subs +C2899264|T037|PT|V91.34XD|ICD10CM|Hit or struck by falling object due to accident to sailboat, subsequent encounter|Hit or struck by falling object due to accident to sailboat, subsequent encounter +C2899265|T037|AB|V91.34XS|ICD10CM|Hit by falling object due to accident to sailboat, sequela|Hit by falling object due to accident to sailboat, sequela +C2899265|T037|PT|V91.34XS|ICD10CM|Hit or struck by falling object due to accident to sailboat, sequela|Hit or struck by falling object due to accident to sailboat, sequela +C2899266|T037|AB|V91.35|ICD10CM|Hit by falling object due to accident to canoe or kayak|Hit by falling object due to accident to canoe or kayak +C2899266|T037|HT|V91.35|ICD10CM|Hit or struck by falling object due to accident to canoe or kayak|Hit or struck by falling object due to accident to canoe or kayak +C2899267|T037|AB|V91.35XA|ICD10CM|Hit by falling object due to accident to canoe/kayk, init|Hit by falling object due to accident to canoe/kayk, init +C2899267|T037|PT|V91.35XA|ICD10CM|Hit or struck by falling object due to accident to canoe or kayak, initial encounter|Hit or struck by falling object due to accident to canoe or kayak, initial encounter +C2899268|T037|AB|V91.35XD|ICD10CM|Hit by falling object due to accident to canoe/kayk, subs|Hit by falling object due to accident to canoe/kayk, subs +C2899268|T037|PT|V91.35XD|ICD10CM|Hit or struck by falling object due to accident to canoe or kayak, subsequent encounter|Hit or struck by falling object due to accident to canoe or kayak, subsequent encounter +C2899269|T037|AB|V91.35XS|ICD10CM|Hit by falling object due to accident to canoe/kayk, sequela|Hit by falling object due to accident to canoe/kayk, sequela +C2899269|T037|PT|V91.35XS|ICD10CM|Hit or struck by falling object due to accident to canoe or kayak, sequela|Hit or struck by falling object due to accident to canoe or kayak, sequela +C2899270|T037|AB|V91.36|ICD10CM|Hit by falling object due to accident to inflatbl crft|Hit by falling object due to accident to inflatbl crft +C2899270|T037|HT|V91.36|ICD10CM|Hit or struck by falling object due to accident to (nonpowered) inflatable craft|Hit or struck by falling object due to accident to (nonpowered) inflatable craft +C2899271|T037|AB|V91.36XA|ICD10CM|Hit by falling object due to accident to inflatbl crft, init|Hit by falling object due to accident to inflatbl crft, init +C2899271|T037|PT|V91.36XA|ICD10CM|Hit or struck by falling object due to accident to (nonpowered) inflatable craft, initial encounter|Hit or struck by falling object due to accident to (nonpowered) inflatable craft, initial encounter +C2899272|T037|AB|V91.36XD|ICD10CM|Hit by falling object due to accident to inflatbl crft, subs|Hit by falling object due to accident to inflatbl crft, subs +C2899273|T037|AB|V91.36XS|ICD10CM|Hit by falling object due to acc to inflatbl crft, sequela|Hit by falling object due to acc to inflatbl crft, sequela +C2899273|T037|PT|V91.36XS|ICD10CM|Hit or struck by falling object due to accident to (nonpowered) inflatable craft, sequela|Hit or struck by falling object due to accident to (nonpowered) inflatable craft, sequela +C2899275|T037|AB|V91.37|ICD10CM|Hit by falling object due to accident to water-skis|Hit by falling object due to accident to water-skis +C2899274|T037|ET|V91.37|ICD10CM|Hit by water-skis after jumping off of waterskis|Hit by water-skis after jumping off of waterskis +C2899275|T037|HT|V91.37|ICD10CM|Hit or struck by falling object due to accident to water-skis|Hit or struck by falling object due to accident to water-skis +C2899276|T037|AB|V91.37XA|ICD10CM|Hit by falling object due to accident to water-skis, init|Hit by falling object due to accident to water-skis, init +C2899276|T037|PT|V91.37XA|ICD10CM|Hit or struck by falling object due to accident to water-skis, initial encounter|Hit or struck by falling object due to accident to water-skis, initial encounter +C2899277|T037|AB|V91.37XD|ICD10CM|Hit by falling object due to accident to water-skis, subs|Hit by falling object due to accident to water-skis, subs +C2899277|T037|PT|V91.37XD|ICD10CM|Hit or struck by falling object due to accident to water-skis, subsequent encounter|Hit or struck by falling object due to accident to water-skis, subsequent encounter +C2899278|T037|AB|V91.37XS|ICD10CM|Hit by falling object due to accident to water-skis, sequela|Hit by falling object due to accident to water-skis, sequela +C2899278|T037|PT|V91.37XS|ICD10CM|Hit or struck by falling object due to accident to water-skis, sequela|Hit or struck by falling object due to accident to water-skis, sequela +C2899281|T037|AB|V91.38|ICD10CM|Hit by falling object due to accident to unpowr wtrcrft|Hit by falling object due to accident to unpowr wtrcrft +C2899281|T037|HT|V91.38|ICD10CM|Hit or struck by falling object due to accident to other unpowered watercraft|Hit or struck by falling object due to accident to other unpowered watercraft +C2899279|T037|ET|V91.38|ICD10CM|Hit or struck by object after falling off damaged windsurfer|Hit or struck by object after falling off damaged windsurfer +C2899280|T037|ET|V91.38|ICD10CM|Hit or struck by surf-board after falling off damaged surf-board|Hit or struck by surf-board after falling off damaged surf-board +C2899282|T037|AB|V91.38XA|ICD10CM|Hit by falling object due to acc to unpowr wtrcrft, init|Hit by falling object due to acc to unpowr wtrcrft, init +C2899282|T037|PT|V91.38XA|ICD10CM|Hit or struck by falling object due to accident to other unpowered watercraft, initial encounter|Hit or struck by falling object due to accident to other unpowered watercraft, initial encounter +C2899283|T037|AB|V91.38XD|ICD10CM|Hit by falling object due to acc to unpowr wtrcrft, subs|Hit by falling object due to acc to unpowr wtrcrft, subs +C2899283|T037|PT|V91.38XD|ICD10CM|Hit or struck by falling object due to accident to other unpowered watercraft, subsequent encounter|Hit or struck by falling object due to accident to other unpowered watercraft, subsequent encounter +C2899284|T037|AB|V91.38XS|ICD10CM|Hit by falling object due to acc to unpowr wtrcrft, sequela|Hit by falling object due to acc to unpowr wtrcrft, sequela +C2899284|T037|PT|V91.38XS|ICD10CM|Hit or struck by falling object due to accident to other unpowered watercraft, sequela|Hit or struck by falling object due to accident to other unpowered watercraft, sequela +C2899288|T037|AB|V91.39|ICD10CM|Hit by falling object due to accident to unsp watercraft|Hit by falling object due to accident to unsp watercraft +C2899285|T037|ET|V91.39|ICD10CM|Hit or struck by falling object due to accident to boat NOS|Hit or struck by falling object due to accident to boat NOS +C2899286|T037|ET|V91.39|ICD10CM|Hit or struck by falling object due to accident to ship NOS|Hit or struck by falling object due to accident to ship NOS +C2899288|T037|HT|V91.39|ICD10CM|Hit or struck by falling object due to accident to unspecified watercraft|Hit or struck by falling object due to accident to unspecified watercraft +C2899287|T037|ET|V91.39|ICD10CM|Hit or struck by falling object due to accident to watercraft NOS|Hit or struck by falling object due to accident to watercraft NOS +C2899289|T037|AB|V91.39XA|ICD10CM|Hit by falling object due to accident to unsp wtrcrft, init|Hit by falling object due to accident to unsp wtrcrft, init +C2899289|T037|PT|V91.39XA|ICD10CM|Hit or struck by falling object due to accident to unspecified watercraft, initial encounter|Hit or struck by falling object due to accident to unspecified watercraft, initial encounter +C2899290|T037|AB|V91.39XD|ICD10CM|Hit by falling object due to accident to unsp wtrcrft, subs|Hit by falling object due to accident to unsp wtrcrft, subs +C2899290|T037|PT|V91.39XD|ICD10CM|Hit or struck by falling object due to accident to unspecified watercraft, subsequent encounter|Hit or struck by falling object due to accident to unspecified watercraft, subsequent encounter +C2899291|T037|AB|V91.39XS|ICD10CM|Hit by falling object due to acc to unsp wtrcrft, sequela|Hit by falling object due to acc to unsp wtrcrft, sequela +C2899291|T037|PT|V91.39XS|ICD10CM|Hit or struck by falling object due to accident to unspecified watercraft, sequela|Hit or struck by falling object due to accident to unspecified watercraft, sequela +C0477256|T037|PT|V91.4|ICD10|Accident to watercraft causing other injury, sailboat|Accident to watercraft causing other injury, sailboat +C0477257|T037|PT|V91.5|ICD10|Accident to watercraft causing other injury, canoe or kayak|Accident to watercraft causing other injury, canoe or kayak +C0477258|T037|PT|V91.6|ICD10|Accident to watercraft causing other injury, inflatable craft (nonpowered)|Accident to watercraft causing other injury, inflatable craft (nonpowered) +C0546843|T037|PT|V91.8|ICD10|Accident to watercraft causing other injury, other unpowered watercraft|Accident to watercraft causing other injury, other unpowered watercraft +C2899336|T037|AB|V91.8|ICD10CM|Other injury due to other accident to watercraft|Other injury due to other accident to watercraft +C2899336|T037|HT|V91.8|ICD10CM|Other injury due to other accident to watercraft|Other injury due to other accident to watercraft +C2899292|T037|AB|V91.80|ICD10CM|Other injury due to other accident to merchant ship|Other injury due to other accident to merchant ship +C2899292|T037|HT|V91.80|ICD10CM|Other injury due to other accident to merchant ship|Other injury due to other accident to merchant ship +C2899293|T037|AB|V91.80XA|ICD10CM|Oth injury due to oth accident to merchant ship, init encntr|Oth injury due to oth accident to merchant ship, init encntr +C2899293|T037|PT|V91.80XA|ICD10CM|Other injury due to other accident to merchant ship, initial encounter|Other injury due to other accident to merchant ship, initial encounter +C2899294|T037|AB|V91.80XD|ICD10CM|Oth injury due to oth accident to merchant ship, subs encntr|Oth injury due to oth accident to merchant ship, subs encntr +C2899294|T037|PT|V91.80XD|ICD10CM|Other injury due to other accident to merchant ship, subsequent encounter|Other injury due to other accident to merchant ship, subsequent encounter +C2899295|T037|AB|V91.80XS|ICD10CM|Other injury due to other accident to merchant ship, sequela|Other injury due to other accident to merchant ship, sequela +C2899295|T037|PT|V91.80XS|ICD10CM|Other injury due to other accident to merchant ship, sequela|Other injury due to other accident to merchant ship, sequela +C2899296|T037|ET|V91.81|ICD10CM|Other injury due to other accident to Ferry-boat|Other injury due to other accident to Ferry-boat +C2899297|T037|ET|V91.81|ICD10CM|Other injury due to other accident to Liner|Other injury due to other accident to Liner +C2899298|T037|AB|V91.81|ICD10CM|Other injury due to other accident to passenger ship|Other injury due to other accident to passenger ship +C2899298|T037|HT|V91.81|ICD10CM|Other injury due to other accident to passenger ship|Other injury due to other accident to passenger ship +C2899299|T037|AB|V91.81XA|ICD10CM|Oth injury due to oth accident to passenger ship, init|Oth injury due to oth accident to passenger ship, init +C2899299|T037|PT|V91.81XA|ICD10CM|Other injury due to other accident to passenger ship, initial encounter|Other injury due to other accident to passenger ship, initial encounter +C2899300|T037|AB|V91.81XD|ICD10CM|Oth injury due to oth accident to passenger ship, subs|Oth injury due to oth accident to passenger ship, subs +C2899300|T037|PT|V91.81XD|ICD10CM|Other injury due to other accident to passenger ship, subsequent encounter|Other injury due to other accident to passenger ship, subsequent encounter +C2899301|T037|AB|V91.81XS|ICD10CM|Oth injury due to other accident to passenger ship, sequela|Oth injury due to other accident to passenger ship, sequela +C2899301|T037|PT|V91.81XS|ICD10CM|Other injury due to other accident to passenger ship, sequela|Other injury due to other accident to passenger ship, sequela +C2899302|T037|AB|V91.82|ICD10CM|Other injury due to other accident to fishing boat|Other injury due to other accident to fishing boat +C2899302|T037|HT|V91.82|ICD10CM|Other injury due to other accident to fishing boat|Other injury due to other accident to fishing boat +C2899303|T037|AB|V91.82XA|ICD10CM|Oth injury due to oth accident to fishing boat, init encntr|Oth injury due to oth accident to fishing boat, init encntr +C2899303|T037|PT|V91.82XA|ICD10CM|Other injury due to other accident to fishing boat, initial encounter|Other injury due to other accident to fishing boat, initial encounter +C2899304|T037|AB|V91.82XD|ICD10CM|Oth injury due to oth accident to fishing boat, subs encntr|Oth injury due to oth accident to fishing boat, subs encntr +C2899304|T037|PT|V91.82XD|ICD10CM|Other injury due to other accident to fishing boat, subsequent encounter|Other injury due to other accident to fishing boat, subsequent encounter +C2899305|T037|AB|V91.82XS|ICD10CM|Other injury due to other accident to fishing boat, sequela|Other injury due to other accident to fishing boat, sequela +C2899305|T037|PT|V91.82XS|ICD10CM|Other injury due to other accident to fishing boat, sequela|Other injury due to other accident to fishing boat, sequela +C2899308|T037|AB|V91.83|ICD10CM|Oth injury due to other accident to other powered watercraft|Oth injury due to other accident to other powered watercraft +C2899306|T037|ET|V91.83|ICD10CM|Other injury due to other accident to Hovercraft (on open water)|Other injury due to other accident to Hovercraft (on open water) +C2899307|T037|ET|V91.83|ICD10CM|Other injury due to other accident to Jet ski|Other injury due to other accident to Jet ski +C2899308|T037|HT|V91.83|ICD10CM|Other injury due to other accident to other powered watercraft|Other injury due to other accident to other powered watercraft +C2899309|T037|AB|V91.83XA|ICD10CM|Oth injury due to oth accident to oth powered wtrcrft, init|Oth injury due to oth accident to oth powered wtrcrft, init +C2899309|T037|PT|V91.83XA|ICD10CM|Other injury due to other accident to other powered watercraft, initial encounter|Other injury due to other accident to other powered watercraft, initial encounter +C2899310|T037|AB|V91.83XD|ICD10CM|Oth injury due to oth accident to oth powered wtrcrft, subs|Oth injury due to oth accident to oth powered wtrcrft, subs +C2899310|T037|PT|V91.83XD|ICD10CM|Other injury due to other accident to other powered watercraft, subsequent encounter|Other injury due to other accident to other powered watercraft, subsequent encounter +C2899311|T037|AB|V91.83XS|ICD10CM|Oth injury due to oth acc to oth powered wtrcrft, sequela|Oth injury due to oth acc to oth powered wtrcrft, sequela +C2899311|T037|PT|V91.83XS|ICD10CM|Other injury due to other accident to other powered watercraft, sequela|Other injury due to other accident to other powered watercraft, sequela +C2899312|T037|AB|V91.84|ICD10CM|Other injury due to other accident to sailboat|Other injury due to other accident to sailboat +C2899312|T037|HT|V91.84|ICD10CM|Other injury due to other accident to sailboat|Other injury due to other accident to sailboat +C2899313|T037|AB|V91.84XA|ICD10CM|Other injury due to other accident to sailboat, init encntr|Other injury due to other accident to sailboat, init encntr +C2899313|T037|PT|V91.84XA|ICD10CM|Other injury due to other accident to sailboat, initial encounter|Other injury due to other accident to sailboat, initial encounter +C2899314|T037|AB|V91.84XD|ICD10CM|Other injury due to other accident to sailboat, subs encntr|Other injury due to other accident to sailboat, subs encntr +C2899314|T037|PT|V91.84XD|ICD10CM|Other injury due to other accident to sailboat, subsequent encounter|Other injury due to other accident to sailboat, subsequent encounter +C2899315|T037|AB|V91.84XS|ICD10CM|Other injury due to other accident to sailboat, sequela|Other injury due to other accident to sailboat, sequela +C2899315|T037|PT|V91.84XS|ICD10CM|Other injury due to other accident to sailboat, sequela|Other injury due to other accident to sailboat, sequela +C2899316|T037|AB|V91.85|ICD10CM|Other injury due to other accident to canoe or kayak|Other injury due to other accident to canoe or kayak +C2899316|T037|HT|V91.85|ICD10CM|Other injury due to other accident to canoe or kayak|Other injury due to other accident to canoe or kayak +C2899317|T037|AB|V91.85XA|ICD10CM|Oth injury due to oth accident to canoe or kayak, init|Oth injury due to oth accident to canoe or kayak, init +C2899317|T037|PT|V91.85XA|ICD10CM|Other injury due to other accident to canoe or kayak, initial encounter|Other injury due to other accident to canoe or kayak, initial encounter +C2899318|T037|AB|V91.85XD|ICD10CM|Oth injury due to oth accident to canoe or kayak, subs|Oth injury due to oth accident to canoe or kayak, subs +C2899318|T037|PT|V91.85XD|ICD10CM|Other injury due to other accident to canoe or kayak, subsequent encounter|Other injury due to other accident to canoe or kayak, subsequent encounter +C2899319|T037|AB|V91.85XS|ICD10CM|Oth injury due to other accident to canoe or kayak, sequela|Oth injury due to other accident to canoe or kayak, sequela +C2899319|T037|PT|V91.85XS|ICD10CM|Other injury due to other accident to canoe or kayak, sequela|Other injury due to other accident to canoe or kayak, sequela +C2899320|T037|AB|V91.86|ICD10CM|Oth injury due to oth accident to (nonpowered) inflatbl crft|Oth injury due to oth accident to (nonpowered) inflatbl crft +C2899320|T037|HT|V91.86|ICD10CM|Other injury due to other accident to (nonpowered) inflatable craft|Other injury due to other accident to (nonpowered) inflatable craft +C2899321|T037|AB|V91.86XA|ICD10CM|Oth injury due to oth accident to inflatbl crft, init|Oth injury due to oth accident to inflatbl crft, init +C2899321|T037|PT|V91.86XA|ICD10CM|Other injury due to other accident to (nonpowered) inflatable craft, initial encounter|Other injury due to other accident to (nonpowered) inflatable craft, initial encounter +C2899322|T037|AB|V91.86XD|ICD10CM|Oth injury due to oth accident to inflatbl crft, subs|Oth injury due to oth accident to inflatbl crft, subs +C2899322|T037|PT|V91.86XD|ICD10CM|Other injury due to other accident to (nonpowered) inflatable craft, subsequent encounter|Other injury due to other accident to (nonpowered) inflatable craft, subsequent encounter +C2899323|T037|AB|V91.86XS|ICD10CM|Oth injury due to oth accident to inflatbl crft, sequela|Oth injury due to oth accident to inflatbl crft, sequela +C2899323|T037|PT|V91.86XS|ICD10CM|Other injury due to other accident to (nonpowered) inflatable craft, sequela|Other injury due to other accident to (nonpowered) inflatable craft, sequela +C2899324|T037|AB|V91.87|ICD10CM|Other injury due to other accident to water-skis|Other injury due to other accident to water-skis +C2899324|T037|HT|V91.87|ICD10CM|Other injury due to other accident to water-skis|Other injury due to other accident to water-skis +C2899325|T037|AB|V91.87XA|ICD10CM|Oth injury due to other accident to water-skis, init encntr|Oth injury due to other accident to water-skis, init encntr +C2899325|T037|PT|V91.87XA|ICD10CM|Other injury due to other accident to water-skis, initial encounter|Other injury due to other accident to water-skis, initial encounter +C2899326|T037|AB|V91.87XD|ICD10CM|Oth injury due to other accident to water-skis, subs encntr|Oth injury due to other accident to water-skis, subs encntr +C2899326|T037|PT|V91.87XD|ICD10CM|Other injury due to other accident to water-skis, subsequent encounter|Other injury due to other accident to water-skis, subsequent encounter +C2899327|T037|AB|V91.87XS|ICD10CM|Other injury due to other accident to water-skis, sequela|Other injury due to other accident to water-skis, sequela +C2899327|T037|PT|V91.87XS|ICD10CM|Other injury due to other accident to water-skis, sequela|Other injury due to other accident to water-skis, sequela +C2899330|T037|AB|V91.88|ICD10CM|Oth injury due to oth accident to other unpowered watercraft|Oth injury due to oth accident to other unpowered watercraft +C2899330|T037|HT|V91.88|ICD10CM|Other injury due to other accident to other unpowered watercraft|Other injury due to other accident to other unpowered watercraft +C2899328|T037|ET|V91.88|ICD10CM|Other injury due to other accident to surf-board|Other injury due to other accident to surf-board +C2899329|T037|ET|V91.88|ICD10CM|Other injury due to other accident to windsurfer|Other injury due to other accident to windsurfer +C2899331|T037|AB|V91.88XA|ICD10CM|Oth injury due to oth accident to unpowr wtrcrft, init|Oth injury due to oth accident to unpowr wtrcrft, init +C2899331|T037|PT|V91.88XA|ICD10CM|Other injury due to other accident to other unpowered watercraft, initial encounter|Other injury due to other accident to other unpowered watercraft, initial encounter +C2899332|T037|AB|V91.88XD|ICD10CM|Oth injury due to oth accident to unpowr wtrcrft, subs|Oth injury due to oth accident to unpowr wtrcrft, subs +C2899332|T037|PT|V91.88XD|ICD10CM|Other injury due to other accident to other unpowered watercraft, subsequent encounter|Other injury due to other accident to other unpowered watercraft, subsequent encounter +C2899333|T037|AB|V91.88XS|ICD10CM|Oth injury due to oth accident to unpowr wtrcrft, sequela|Oth injury due to oth accident to unpowr wtrcrft, sequela +C2899333|T037|PT|V91.88XS|ICD10CM|Other injury due to other accident to other unpowered watercraft, sequela|Other injury due to other accident to other unpowered watercraft, sequela +C2899334|T037|ET|V91.89|ICD10CM|Other injury due to other accident to boat NOS|Other injury due to other accident to boat NOS +C2899335|T037|ET|V91.89|ICD10CM|Other injury due to other accident to ship NOS|Other injury due to other accident to ship NOS +C2899337|T037|AB|V91.89|ICD10CM|Other injury due to other accident to unspecified watercraft|Other injury due to other accident to unspecified watercraft +C2899337|T037|HT|V91.89|ICD10CM|Other injury due to other accident to unspecified watercraft|Other injury due to other accident to unspecified watercraft +C2899336|T037|ET|V91.89|ICD10CM|Other injury due to other accident to watercraft NOS|Other injury due to other accident to watercraft NOS +C2899338|T037|AB|V91.89XA|ICD10CM|Oth injury due to oth accident to unsp watercraft, init|Oth injury due to oth accident to unsp watercraft, init +C2899338|T037|PT|V91.89XA|ICD10CM|Other injury due to other accident to unspecified watercraft, initial encounter|Other injury due to other accident to unspecified watercraft, initial encounter +C2899339|T037|AB|V91.89XD|ICD10CM|Oth injury due to oth accident to unsp watercraft, subs|Oth injury due to oth accident to unsp watercraft, subs +C2899339|T037|PT|V91.89XD|ICD10CM|Other injury due to other accident to unspecified watercraft, subsequent encounter|Other injury due to other accident to unspecified watercraft, subsequent encounter +C2899340|T037|AB|V91.89XS|ICD10CM|Oth injury due to other accident to unsp watercraft, sequela|Oth injury due to other accident to unsp watercraft, sequela +C2899340|T037|PT|V91.89XS|ICD10CM|Other injury due to other accident to unspecified watercraft, sequela|Other injury due to other accident to unspecified watercraft, sequela +C0261235|T037|PT|V91.9|ICD10|Accident to watercraft causing other injury, unspecified watercraft|Accident to watercraft causing other injury, unspecified watercraft +C2899341|T037|AB|V92|ICD10CM|Drown due to acc on board wtrcrft, w/o accident to wtrcrft|Drown due to acc on board wtrcrft, w/o accident to wtrcrft +C2899341|T037|HT|V92|ICD10CM|Drowning and submersion due to accident on board watercraft, without accident to watercraft|Drowning and submersion due to accident on board watercraft, without accident to watercraft +C0496494|T037|HT|V92|ICD10|Water-transport-related drowning and submersion without accident to watercraft|Water-transport-related drowning and submersion without accident to watercraft +C2899342|T037|ET|V92.0|ICD10CM|Drowning and submersion due to fall from gangplank of watercraft|Drowning and submersion due to fall from gangplank of watercraft +C2899388|T037|AB|V92.0|ICD10CM|Drowning and submersion due to fall off watercraft|Drowning and submersion due to fall off watercraft +C2899388|T037|HT|V92.0|ICD10CM|Drowning and submersion due to fall off watercraft|Drowning and submersion due to fall off watercraft +C2899343|T037|ET|V92.0|ICD10CM|Drowning and submersion due to fall overboard watercraft|Drowning and submersion due to fall overboard watercraft +C0477260|T037|PT|V92.0|ICD10|Water-transport-related drowning and submersion without accident to watercraft, merchant ship|Water-transport-related drowning and submersion without accident to watercraft, merchant ship +C2899344|T037|AB|V92.00|ICD10CM|Drowning and submersion due to fall off merchant ship|Drowning and submersion due to fall off merchant ship +C2899344|T037|HT|V92.00|ICD10CM|Drowning and submersion due to fall off merchant ship|Drowning and submersion due to fall off merchant ship +C2899345|T037|AB|V92.00XA|ICD10CM|Drowning and submersion due to fall off merchant ship, init|Drowning and submersion due to fall off merchant ship, init +C2899345|T037|PT|V92.00XA|ICD10CM|Drowning and submersion due to fall off merchant ship, initial encounter|Drowning and submersion due to fall off merchant ship, initial encounter +C2899346|T037|AB|V92.00XD|ICD10CM|Drowning and submersion due to fall off merchant ship, subs|Drowning and submersion due to fall off merchant ship, subs +C2899346|T037|PT|V92.00XD|ICD10CM|Drowning and submersion due to fall off merchant ship, subsequent encounter|Drowning and submersion due to fall off merchant ship, subsequent encounter +C2899347|T037|AB|V92.00XS|ICD10CM|Drown due to fall off merchant ship, sequela|Drown due to fall off merchant ship, sequela +C2899347|T037|PT|V92.00XS|ICD10CM|Drowning and submersion due to fall off merchant ship, sequela|Drowning and submersion due to fall off merchant ship, sequela +C2899348|T037|ET|V92.01|ICD10CM|Drowning and submersion due to fall off Ferry-boat|Drowning and submersion due to fall off Ferry-boat +C2899349|T037|ET|V92.01|ICD10CM|Drowning and submersion due to fall off Liner|Drowning and submersion due to fall off Liner +C2899350|T037|AB|V92.01|ICD10CM|Drowning and submersion due to fall off passenger ship|Drowning and submersion due to fall off passenger ship +C2899350|T037|HT|V92.01|ICD10CM|Drowning and submersion due to fall off passenger ship|Drowning and submersion due to fall off passenger ship +C2899351|T037|AB|V92.01XA|ICD10CM|Drowning and submersion due to fall off passenger ship, init|Drowning and submersion due to fall off passenger ship, init +C2899351|T037|PT|V92.01XA|ICD10CM|Drowning and submersion due to fall off passenger ship, initial encounter|Drowning and submersion due to fall off passenger ship, initial encounter +C2899352|T037|AB|V92.01XD|ICD10CM|Drowning and submersion due to fall off passenger ship, subs|Drowning and submersion due to fall off passenger ship, subs +C2899352|T037|PT|V92.01XD|ICD10CM|Drowning and submersion due to fall off passenger ship, subsequent encounter|Drowning and submersion due to fall off passenger ship, subsequent encounter +C2899353|T037|AB|V92.01XS|ICD10CM|Drown due to fall off passenger ship, sequela|Drown due to fall off passenger ship, sequela +C2899353|T037|PT|V92.01XS|ICD10CM|Drowning and submersion due to fall off passenger ship, sequela|Drowning and submersion due to fall off passenger ship, sequela +C2899354|T037|AB|V92.02|ICD10CM|Drowning and submersion due to fall off fishing boat|Drowning and submersion due to fall off fishing boat +C2899354|T037|HT|V92.02|ICD10CM|Drowning and submersion due to fall off fishing boat|Drowning and submersion due to fall off fishing boat +C2899355|T037|AB|V92.02XA|ICD10CM|Drowning and submersion due to fall off fishing boat, init|Drowning and submersion due to fall off fishing boat, init +C2899355|T037|PT|V92.02XA|ICD10CM|Drowning and submersion due to fall off fishing boat, initial encounter|Drowning and submersion due to fall off fishing boat, initial encounter +C2899356|T037|AB|V92.02XD|ICD10CM|Drowning and submersion due to fall off fishing boat, subs|Drowning and submersion due to fall off fishing boat, subs +C2899356|T037|PT|V92.02XD|ICD10CM|Drowning and submersion due to fall off fishing boat, subsequent encounter|Drowning and submersion due to fall off fishing boat, subsequent encounter +C2899357|T037|AB|V92.02XS|ICD10CM|Drown due to fall off fishing boat, sequela|Drown due to fall off fishing boat, sequela +C2899357|T037|PT|V92.02XS|ICD10CM|Drowning and submersion due to fall off fishing boat, sequela|Drowning and submersion due to fall off fishing boat, sequela +C2899360|T037|AB|V92.03|ICD10CM|Drown due to fall off oth powered watercraft|Drown due to fall off oth powered watercraft +C2899358|T037|ET|V92.03|ICD10CM|Drowning and submersion due to fall off Hovercraft (on open water)|Drowning and submersion due to fall off Hovercraft (on open water) +C2899359|T037|ET|V92.03|ICD10CM|Drowning and submersion due to fall off Jet ski|Drowning and submersion due to fall off Jet ski +C2899360|T037|HT|V92.03|ICD10CM|Drowning and submersion due to fall off other powered watercraft|Drowning and submersion due to fall off other powered watercraft +C2899361|T037|AB|V92.03XA|ICD10CM|Drown due to fall off oth powered watercraft, init|Drown due to fall off oth powered watercraft, init +C2899361|T037|PT|V92.03XA|ICD10CM|Drowning and submersion due to fall off other powered watercraft, initial encounter|Drowning and submersion due to fall off other powered watercraft, initial encounter +C2899362|T037|AB|V92.03XD|ICD10CM|Drown due to fall off oth powered watercraft, subs|Drown due to fall off oth powered watercraft, subs +C2899362|T037|PT|V92.03XD|ICD10CM|Drowning and submersion due to fall off other powered watercraft, subsequent encounter|Drowning and submersion due to fall off other powered watercraft, subsequent encounter +C2899363|T037|AB|V92.03XS|ICD10CM|Drown due to fall off oth powered watercraft, sequela|Drown due to fall off oth powered watercraft, sequela +C2899363|T037|PT|V92.03XS|ICD10CM|Drowning and submersion due to fall off other powered watercraft, sequela|Drowning and submersion due to fall off other powered watercraft, sequela +C2899364|T037|AB|V92.04|ICD10CM|Drowning and submersion due to fall off sailboat|Drowning and submersion due to fall off sailboat +C2899364|T037|HT|V92.04|ICD10CM|Drowning and submersion due to fall off sailboat|Drowning and submersion due to fall off sailboat +C2899365|T037|AB|V92.04XA|ICD10CM|Drowning and submersion due to fall off sailboat, init|Drowning and submersion due to fall off sailboat, init +C2899365|T037|PT|V92.04XA|ICD10CM|Drowning and submersion due to fall off sailboat, initial encounter|Drowning and submersion due to fall off sailboat, initial encounter +C2899366|T037|AB|V92.04XD|ICD10CM|Drowning and submersion due to fall off sailboat, subs|Drowning and submersion due to fall off sailboat, subs +C2899366|T037|PT|V92.04XD|ICD10CM|Drowning and submersion due to fall off sailboat, subsequent encounter|Drowning and submersion due to fall off sailboat, subsequent encounter +C2899367|T037|AB|V92.04XS|ICD10CM|Drowning and submersion due to fall off sailboat, sequela|Drowning and submersion due to fall off sailboat, sequela +C2899367|T037|PT|V92.04XS|ICD10CM|Drowning and submersion due to fall off sailboat, sequela|Drowning and submersion due to fall off sailboat, sequela +C2899368|T037|AB|V92.05|ICD10CM|Drowning and submersion due to fall off canoe or kayak|Drowning and submersion due to fall off canoe or kayak +C2899368|T037|HT|V92.05|ICD10CM|Drowning and submersion due to fall off canoe or kayak|Drowning and submersion due to fall off canoe or kayak +C2899369|T037|AB|V92.05XA|ICD10CM|Drowning and submersion due to fall off canoe or kayak, init|Drowning and submersion due to fall off canoe or kayak, init +C2899369|T037|PT|V92.05XA|ICD10CM|Drowning and submersion due to fall off canoe or kayak, initial encounter|Drowning and submersion due to fall off canoe or kayak, initial encounter +C2899370|T037|AB|V92.05XD|ICD10CM|Drowning and submersion due to fall off canoe or kayak, subs|Drowning and submersion due to fall off canoe or kayak, subs +C2899370|T037|PT|V92.05XD|ICD10CM|Drowning and submersion due to fall off canoe or kayak, subsequent encounter|Drowning and submersion due to fall off canoe or kayak, subsequent encounter +C2899371|T037|AB|V92.05XS|ICD10CM|Drown due to fall off canoe or kayak, sequela|Drown due to fall off canoe or kayak, sequela +C2899371|T037|PT|V92.05XS|ICD10CM|Drowning and submersion due to fall off canoe or kayak, sequela|Drowning and submersion due to fall off canoe or kayak, sequela +C2899372|T037|AB|V92.06|ICD10CM|Drown due to fall off (nonpowered) inflatable craft|Drown due to fall off (nonpowered) inflatable craft +C2899372|T037|HT|V92.06|ICD10CM|Drowning and submersion due to fall off (nonpowered) inflatable craft|Drowning and submersion due to fall off (nonpowered) inflatable craft +C2899373|T037|AB|V92.06XA|ICD10CM|Drown due to fall off (nonpowered) inflatable craft, init|Drown due to fall off (nonpowered) inflatable craft, init +C2899373|T037|PT|V92.06XA|ICD10CM|Drowning and submersion due to fall off (nonpowered) inflatable craft, initial encounter|Drowning and submersion due to fall off (nonpowered) inflatable craft, initial encounter +C2899374|T037|AB|V92.06XD|ICD10CM|Drown due to fall off (nonpowered) inflatable craft, subs|Drown due to fall off (nonpowered) inflatable craft, subs +C2899374|T037|PT|V92.06XD|ICD10CM|Drowning and submersion due to fall off (nonpowered) inflatable craft, subsequent encounter|Drowning and submersion due to fall off (nonpowered) inflatable craft, subsequent encounter +C2899375|T037|AB|V92.06XS|ICD10CM|Drown due to fall off (nonpowered) inflatable craft, sequela|Drown due to fall off (nonpowered) inflatable craft, sequela +C2899375|T037|PT|V92.06XS|ICD10CM|Drowning and submersion due to fall off (nonpowered) inflatable craft, sequela|Drowning and submersion due to fall off (nonpowered) inflatable craft, sequela +C2899376|T037|AB|V92.07|ICD10CM|Drowning and submersion due to fall off water-skis|Drowning and submersion due to fall off water-skis +C2899376|T037|HT|V92.07|ICD10CM|Drowning and submersion due to fall off water-skis|Drowning and submersion due to fall off water-skis +C2899377|T037|AB|V92.07XA|ICD10CM|Drowning and submersion due to fall off water-skis, init|Drowning and submersion due to fall off water-skis, init +C2899377|T037|PT|V92.07XA|ICD10CM|Drowning and submersion due to fall off water-skis, initial encounter|Drowning and submersion due to fall off water-skis, initial encounter +C2899378|T037|AB|V92.07XD|ICD10CM|Drowning and submersion due to fall off water-skis, subs|Drowning and submersion due to fall off water-skis, subs +C2899378|T037|PT|V92.07XD|ICD10CM|Drowning and submersion due to fall off water-skis, subsequent encounter|Drowning and submersion due to fall off water-skis, subsequent encounter +C2899379|T037|AB|V92.07XS|ICD10CM|Drowning and submersion due to fall off water-skis, sequela|Drowning and submersion due to fall off water-skis, sequela +C2899379|T037|PT|V92.07XS|ICD10CM|Drowning and submersion due to fall off water-skis, sequela|Drowning and submersion due to fall off water-skis, sequela +C2899382|T037|HT|V92.08|ICD10CM|Drowning and submersion due to fall off other unpowered watercraft|Drowning and submersion due to fall off other unpowered watercraft +C2899380|T037|ET|V92.08|ICD10CM|Drowning and submersion due to fall off surf-board|Drowning and submersion due to fall off surf-board +C2899382|T037|AB|V92.08|ICD10CM|Drowning and submersion due to fall off unpowr wtrcrft|Drowning and submersion due to fall off unpowr wtrcrft +C2899381|T037|ET|V92.08|ICD10CM|Drowning and submersion due to fall off windsurfer|Drowning and submersion due to fall off windsurfer +C2899383|T037|PT|V92.08XA|ICD10CM|Drowning and submersion due to fall off other unpowered watercraft, initial encounter|Drowning and submersion due to fall off other unpowered watercraft, initial encounter +C2899383|T037|AB|V92.08XA|ICD10CM|Drowning and submersion due to fall off unpowr wtrcrft, init|Drowning and submersion due to fall off unpowr wtrcrft, init +C2899384|T037|PT|V92.08XD|ICD10CM|Drowning and submersion due to fall off other unpowered watercraft, subsequent encounter|Drowning and submersion due to fall off other unpowered watercraft, subsequent encounter +C2899384|T037|AB|V92.08XD|ICD10CM|Drowning and submersion due to fall off unpowr wtrcrft, subs|Drowning and submersion due to fall off unpowr wtrcrft, subs +C2899385|T037|AB|V92.08XS|ICD10CM|Drown due to fall off unpowr wtrcrft, sequela|Drown due to fall off unpowr wtrcrft, sequela +C2899385|T037|PT|V92.08XS|ICD10CM|Drowning and submersion due to fall off other unpowered watercraft, sequela|Drowning and submersion due to fall off other unpowered watercraft, sequela +C2899386|T037|ET|V92.09|ICD10CM|Drowning and submersion due to fall off boat NOS|Drowning and submersion due to fall off boat NOS +C2899387|T037|ET|V92.09|ICD10CM|Drowning and submersion due to fall off ship|Drowning and submersion due to fall off ship +C2899389|T037|AB|V92.09|ICD10CM|Drowning and submersion due to fall off unsp watercraft|Drowning and submersion due to fall off unsp watercraft +C2899389|T037|HT|V92.09|ICD10CM|Drowning and submersion due to fall off unspecified watercraft|Drowning and submersion due to fall off unspecified watercraft +C2899388|T037|ET|V92.09|ICD10CM|Drowning and submersion due to fall off watercraft NOS|Drowning and submersion due to fall off watercraft NOS +C2899390|T037|AB|V92.09XA|ICD10CM|Drown due to fall off unsp watercraft, init|Drown due to fall off unsp watercraft, init +C2899390|T037|PT|V92.09XA|ICD10CM|Drowning and submersion due to fall off unspecified watercraft, initial encounter|Drowning and submersion due to fall off unspecified watercraft, initial encounter +C2899391|T037|AB|V92.09XD|ICD10CM|Drown due to fall off unsp watercraft, subs|Drown due to fall off unsp watercraft, subs +C2899391|T037|PT|V92.09XD|ICD10CM|Drowning and submersion due to fall off unspecified watercraft, subsequent encounter|Drowning and submersion due to fall off unspecified watercraft, subsequent encounter +C2899392|T037|AB|V92.09XS|ICD10CM|Drown due to fall off unsp watercraft, sequela|Drown due to fall off unsp watercraft, sequela +C2899392|T037|PT|V92.09XS|ICD10CM|Drowning and submersion due to fall off unspecified watercraft, sequela|Drowning and submersion due to fall off unspecified watercraft, sequela +C2899426|T037|AB|V92.1|ICD10CM|Drown due to being thrown overboard by motion of watercraft|Drown due to being thrown overboard by motion of watercraft +C2899426|T037|HT|V92.1|ICD10CM|Drowning and submersion due to being thrown overboard by motion of watercraft|Drowning and submersion due to being thrown overboard by motion of watercraft +C0477261|T037|PT|V92.1|ICD10|Water-transport-related drowning and submersion without accident to watercraft, passenger ship|Water-transport-related drowning and submersion without accident to watercraft, passenger ship +C2899393|T037|AB|V92.10|ICD10CM|Drown due to being thrown overboard by motion of merch ship|Drown due to being thrown overboard by motion of merch ship +C2899393|T037|HT|V92.10|ICD10CM|Drowning and submersion due to being thrown overboard by motion of merchant ship|Drowning and submersion due to being thrown overboard by motion of merchant ship +C2899394|T037|AB|V92.10XA|ICD10CM|Drown d/t being thrown ovrbrd by motion of merch ship, init|Drown d/t being thrown ovrbrd by motion of merch ship, init +C2899394|T037|PT|V92.10XA|ICD10CM|Drowning and submersion due to being thrown overboard by motion of merchant ship, initial encounter|Drowning and submersion due to being thrown overboard by motion of merchant ship, initial encounter +C2899395|T037|AB|V92.10XD|ICD10CM|Drown d/t being thrown ovrbrd by motion of merch ship, subs|Drown d/t being thrown ovrbrd by motion of merch ship, subs +C2899396|T037|AB|V92.10XS|ICD10CM|Drown d/t being thrown ovrbrd by motion of merch ship, sqla|Drown d/t being thrown ovrbrd by motion of merch ship, sqla +C2899396|T037|PT|V92.10XS|ICD10CM|Drowning and submersion due to being thrown overboard by motion of merchant ship, sequela|Drowning and submersion due to being thrown overboard by motion of merchant ship, sequela +C2899399|T037|AB|V92.11|ICD10CM|Drown due to being thrown ovrbrd by motion of passenger ship|Drown due to being thrown ovrbrd by motion of passenger ship +C2899397|T037|ET|V92.11|ICD10CM|Drowning and submersion due to being thrown overboard by motion of Ferry-boat|Drowning and submersion due to being thrown overboard by motion of Ferry-boat +C2899398|T037|ET|V92.11|ICD10CM|Drowning and submersion due to being thrown overboard by motion of Liner|Drowning and submersion due to being thrown overboard by motion of Liner +C2899399|T037|HT|V92.11|ICD10CM|Drowning and submersion due to being thrown overboard by motion of passenger ship|Drowning and submersion due to being thrown overboard by motion of passenger ship +C2899400|T037|AB|V92.11XA|ICD10CM|Drown d/t being thrown ovrbrd by motion of pasngr ship, init|Drown d/t being thrown ovrbrd by motion of pasngr ship, init +C2899400|T037|PT|V92.11XA|ICD10CM|Drowning and submersion due to being thrown overboard by motion of passenger ship, initial encounter|Drowning and submersion due to being thrown overboard by motion of passenger ship, initial encounter +C2899401|T037|AB|V92.11XD|ICD10CM|Drown d/t being thrown ovrbrd by motion of pasngr ship, subs|Drown d/t being thrown ovrbrd by motion of pasngr ship, subs +C2899402|T037|AB|V92.11XS|ICD10CM|Drown d/t being thrown ovrbrd by motion of pasngr ship, sqla|Drown d/t being thrown ovrbrd by motion of pasngr ship, sqla +C2899402|T037|PT|V92.11XS|ICD10CM|Drowning and submersion due to being thrown overboard by motion of passenger ship, sequela|Drowning and submersion due to being thrown overboard by motion of passenger ship, sequela +C2899403|T037|AB|V92.12|ICD10CM|Drown due to being thrown ovrbrd by motion of fishing boat|Drown due to being thrown ovrbrd by motion of fishing boat +C2899403|T037|HT|V92.12|ICD10CM|Drowning and submersion due to being thrown overboard by motion of fishing boat|Drowning and submersion due to being thrown overboard by motion of fishing boat +C2899404|T037|AB|V92.12XA|ICD10CM|Drown d/t being thrown ovrbrd by motion of fish boat, init|Drown d/t being thrown ovrbrd by motion of fish boat, init +C2899404|T037|PT|V92.12XA|ICD10CM|Drowning and submersion due to being thrown overboard by motion of fishing boat, initial encounter|Drowning and submersion due to being thrown overboard by motion of fishing boat, initial encounter +C2899405|T037|AB|V92.12XD|ICD10CM|Drown d/t being thrown ovrbrd by motion of fish boat, subs|Drown d/t being thrown ovrbrd by motion of fish boat, subs +C2899406|T037|AB|V92.12XS|ICD10CM|Drown d/t being thrown ovrbrd by motion of fish boat, sqla|Drown d/t being thrown ovrbrd by motion of fish boat, sqla +C2899406|T037|PT|V92.12XS|ICD10CM|Drowning and submersion due to being thrown overboard by motion of fishing boat, sequela|Drowning and submersion due to being thrown overboard by motion of fishing boat, sequela +C2899408|T037|AB|V92.13|ICD10CM|Drown due to being thrown ovrbrd by motion of power wtrcrft|Drown due to being thrown ovrbrd by motion of power wtrcrft +C2899407|T037|ET|V92.13|ICD10CM|Drowning and submersion due to being thrown overboard by motion of Hovercraft|Drowning and submersion due to being thrown overboard by motion of Hovercraft +C2899408|T037|HT|V92.13|ICD10CM|Drowning and submersion due to being thrown overboard by motion of other powered watercraft|Drowning and submersion due to being thrown overboard by motion of other powered watercraft +C2899409|T037|AB|V92.13XA|ICD10CM|Drown d/t thrown ovrbrd by motion of power wtrcrft, init|Drown d/t thrown ovrbrd by motion of power wtrcrft, init +C2899410|T037|AB|V92.13XD|ICD10CM|Drown d/t thrown ovrbrd by motion of power wtrcrft, subs|Drown d/t thrown ovrbrd by motion of power wtrcrft, subs +C2899411|T037|AB|V92.13XS|ICD10CM|Drown d/t thrown ovrbrd by motion of power wtrcrft, sqla|Drown d/t thrown ovrbrd by motion of power wtrcrft, sqla +C2899411|T037|PT|V92.13XS|ICD10CM|Drowning and submersion due to being thrown overboard by motion of other powered watercraft, sequela|Drowning and submersion due to being thrown overboard by motion of other powered watercraft, sequela +C2899412|T037|AB|V92.14|ICD10CM|Drown due to being thrown overboard by motion of sailboat|Drown due to being thrown overboard by motion of sailboat +C2899412|T037|HT|V92.14|ICD10CM|Drowning and submersion due to being thrown overboard by motion of sailboat|Drowning and submersion due to being thrown overboard by motion of sailboat +C2899413|T037|AB|V92.14XA|ICD10CM|Drown due to being thrown ovrbrd by motion of sailboat, init|Drown due to being thrown ovrbrd by motion of sailboat, init +C2899413|T037|PT|V92.14XA|ICD10CM|Drowning and submersion due to being thrown overboard by motion of sailboat, initial encounter|Drowning and submersion due to being thrown overboard by motion of sailboat, initial encounter +C2899414|T037|AB|V92.14XD|ICD10CM|Drown due to being thrown ovrbrd by motion of sailboat, subs|Drown due to being thrown ovrbrd by motion of sailboat, subs +C2899414|T037|PT|V92.14XD|ICD10CM|Drowning and submersion due to being thrown overboard by motion of sailboat, subsequent encounter|Drowning and submersion due to being thrown overboard by motion of sailboat, subsequent encounter +C2899415|T037|AB|V92.14XS|ICD10CM|Drown due to being thrown ovrbrd by motion of sailbt, sqla|Drown due to being thrown ovrbrd by motion of sailbt, sqla +C2899415|T037|PT|V92.14XS|ICD10CM|Drowning and submersion due to being thrown overboard by motion of sailboat, sequela|Drowning and submersion due to being thrown overboard by motion of sailboat, sequela +C2899416|T037|AB|V92.15|ICD10CM|Drown due to being thrown overboard by motion of canoe/kayk|Drown due to being thrown overboard by motion of canoe/kayk +C2899416|T037|HT|V92.15|ICD10CM|Drowning and submersion due to being thrown overboard by motion of canoe or kayak|Drowning and submersion due to being thrown overboard by motion of canoe or kayak +C2899417|T037|AB|V92.15XA|ICD10CM|Drown d/t being thrown ovrbrd by motion of canoe/kayk, init|Drown d/t being thrown ovrbrd by motion of canoe/kayk, init +C2899417|T037|PT|V92.15XA|ICD10CM|Drowning and submersion due to being thrown overboard by motion of canoe or kayak, initial encounter|Drowning and submersion due to being thrown overboard by motion of canoe or kayak, initial encounter +C2899418|T037|AB|V92.15XD|ICD10CM|Drown d/t being thrown ovrbrd by motion of canoe/kayk, subs|Drown d/t being thrown ovrbrd by motion of canoe/kayk, subs +C2899419|T037|AB|V92.15XS|ICD10CM|Drown d/t being thrown ovrbrd by motion of canoe/kayk, sqla|Drown d/t being thrown ovrbrd by motion of canoe/kayk, sqla +C2899419|T037|PT|V92.15XS|ICD10CM|Drowning and submersion due to being thrown overboard by motion of canoe or kayak, sequela|Drowning and submersion due to being thrown overboard by motion of canoe or kayak, sequela +C2899420|T037|AB|V92.16|ICD10CM|Drown due to being thrown ovrbrd by motion of inflatbl crft|Drown due to being thrown ovrbrd by motion of inflatbl crft +C2899420|T037|HT|V92.16|ICD10CM|Drowning and submersion due to being thrown overboard by motion of (nonpowered) inflatable craft|Drowning and submersion due to being thrown overboard by motion of (nonpowered) inflatable craft +C2899421|T037|AB|V92.16XA|ICD10CM|Drown d/t thrown ovrbrd by motion of inflatbl crft, init|Drown d/t thrown ovrbrd by motion of inflatbl crft, init +C2899422|T037|AB|V92.16XD|ICD10CM|Drown d/t thrown ovrbrd by motion of inflatbl crft, subs|Drown d/t thrown ovrbrd by motion of inflatbl crft, subs +C2899423|T037|AB|V92.16XS|ICD10CM|Drown d/t thrown ovrbrd by motion of inflatbl crft, sqla|Drown d/t thrown ovrbrd by motion of inflatbl crft, sqla +C2899427|T037|AB|V92.19|ICD10CM|Drown due to being thrown ovrbrd by motion of unsp wtrcrft|Drown due to being thrown ovrbrd by motion of unsp wtrcrft +C2899424|T037|ET|V92.19|ICD10CM|Drowning and submersion due to being thrown overboard by motion of boat NOS|Drowning and submersion due to being thrown overboard by motion of boat NOS +C2899425|T037|ET|V92.19|ICD10CM|Drowning and submersion due to being thrown overboard by motion of ship NOS|Drowning and submersion due to being thrown overboard by motion of ship NOS +C2899427|T037|HT|V92.19|ICD10CM|Drowning and submersion due to being thrown overboard by motion of unspecified watercraft|Drowning and submersion due to being thrown overboard by motion of unspecified watercraft +C2899426|T037|ET|V92.19|ICD10CM|Drowning and submersion due to being thrown overboard by motion of watercraft NOS|Drowning and submersion due to being thrown overboard by motion of watercraft NOS +C2899428|T037|AB|V92.19XA|ICD10CM|Drown d/t thrown ovrbrd by motion of unsp wtrcrft, init|Drown d/t thrown ovrbrd by motion of unsp wtrcrft, init +C2899429|T037|AB|V92.19XD|ICD10CM|Drown d/t thrown ovrbrd by motion of unsp wtrcrft, subs|Drown d/t thrown ovrbrd by motion of unsp wtrcrft, subs +C2899430|T037|AB|V92.19XS|ICD10CM|Drown d/t thrown ovrbrd by motion of unsp wtrcrft, sqla|Drown d/t thrown ovrbrd by motion of unsp wtrcrft, sqla +C2899430|T037|PT|V92.19XS|ICD10CM|Drowning and submersion due to being thrown overboard by motion of unspecified watercraft, sequela|Drowning and submersion due to being thrown overboard by motion of unspecified watercraft, sequela +C2899475|T037|AB|V92.2|ICD10CM|Drown due to being washed overboard from watercraft|Drown due to being washed overboard from watercraft +C2899475|T037|HT|V92.2|ICD10CM|Drowning and submersion due to being washed overboard from watercraft|Drowning and submersion due to being washed overboard from watercraft +C0496495|T037|PT|V92.2|ICD10|Water-transport-related drowning and submersion without accident to watercraft, fishing boat|Water-transport-related drowning and submersion without accident to watercraft, fishing boat +C2899431|T037|AB|V92.20|ICD10CM|Drown due to being washed overboard from merchant ship|Drown due to being washed overboard from merchant ship +C2899431|T037|HT|V92.20|ICD10CM|Drowning and submersion due to being washed overboard from merchant ship|Drowning and submersion due to being washed overboard from merchant ship +C2899432|T037|AB|V92.20XA|ICD10CM|Drown due to being washed overboard from merchant ship, init|Drown due to being washed overboard from merchant ship, init +C2899432|T037|PT|V92.20XA|ICD10CM|Drowning and submersion due to being washed overboard from merchant ship, initial encounter|Drowning and submersion due to being washed overboard from merchant ship, initial encounter +C2899433|T037|AB|V92.20XD|ICD10CM|Drown due to being washed overboard from merchant ship, subs|Drown due to being washed overboard from merchant ship, subs +C2899433|T037|PT|V92.20XD|ICD10CM|Drowning and submersion due to being washed overboard from merchant ship, subsequent encounter|Drowning and submersion due to being washed overboard from merchant ship, subsequent encounter +C2899434|T037|AB|V92.20XS|ICD10CM|Drown due to being washed overboard from merch ship, sequela|Drown due to being washed overboard from merch ship, sequela +C2899434|T037|PT|V92.20XS|ICD10CM|Drowning and submersion due to being washed overboard from merchant ship, sequela|Drowning and submersion due to being washed overboard from merchant ship, sequela +C2899437|T037|AB|V92.21|ICD10CM|Drown due to being washed overboard from passenger ship|Drown due to being washed overboard from passenger ship +C2899435|T037|ET|V92.21|ICD10CM|Drowning and submersion due to being washed overboard from Ferry-boat|Drowning and submersion due to being washed overboard from Ferry-boat +C2899436|T037|ET|V92.21|ICD10CM|Drowning and submersion due to being washed overboard from Liner|Drowning and submersion due to being washed overboard from Liner +C2899437|T037|HT|V92.21|ICD10CM|Drowning and submersion due to being washed overboard from passenger ship|Drowning and submersion due to being washed overboard from passenger ship +C2899438|T037|AB|V92.21XA|ICD10CM|Drown due to being washed ovrbrd from passenger ship, init|Drown due to being washed ovrbrd from passenger ship, init +C2899438|T037|PT|V92.21XA|ICD10CM|Drowning and submersion due to being washed overboard from passenger ship, initial encounter|Drowning and submersion due to being washed overboard from passenger ship, initial encounter +C2899439|T037|AB|V92.21XD|ICD10CM|Drown due to being washed ovrbrd from passenger ship, subs|Drown due to being washed ovrbrd from passenger ship, subs +C2899439|T037|PT|V92.21XD|ICD10CM|Drowning and submersion due to being washed overboard from passenger ship, subsequent encounter|Drowning and submersion due to being washed overboard from passenger ship, subsequent encounter +C2899440|T037|AB|V92.21XS|ICD10CM|Drown due to being washed ovrbrd from pasngr ship, sequela|Drown due to being washed ovrbrd from pasngr ship, sequela +C2899440|T037|PT|V92.21XS|ICD10CM|Drowning and submersion due to being washed overboard from passenger ship, sequela|Drowning and submersion due to being washed overboard from passenger ship, sequela +C2899441|T037|AB|V92.22|ICD10CM|Drown due to being washed overboard from fishing boat|Drown due to being washed overboard from fishing boat +C2899441|T037|HT|V92.22|ICD10CM|Drowning and submersion due to being washed overboard from fishing boat|Drowning and submersion due to being washed overboard from fishing boat +C2899442|T037|AB|V92.22XA|ICD10CM|Drown due to being washed overboard from fishing boat, init|Drown due to being washed overboard from fishing boat, init +C2899442|T037|PT|V92.22XA|ICD10CM|Drowning and submersion due to being washed overboard from fishing boat, initial encounter|Drowning and submersion due to being washed overboard from fishing boat, initial encounter +C2899443|T037|AB|V92.22XD|ICD10CM|Drown due to being washed overboard from fishing boat, subs|Drown due to being washed overboard from fishing boat, subs +C2899443|T037|PT|V92.22XD|ICD10CM|Drowning and submersion due to being washed overboard from fishing boat, subsequent encounter|Drowning and submersion due to being washed overboard from fishing boat, subsequent encounter +C2899444|T037|AB|V92.22XS|ICD10CM|Drown due to being washed ovrbrd from fishing boat, sequela|Drown due to being washed ovrbrd from fishing boat, sequela +C2899444|T037|PT|V92.22XS|ICD10CM|Drowning and submersion due to being washed overboard from fishing boat, sequela|Drowning and submersion due to being washed overboard from fishing boat, sequela +C2899447|T037|AB|V92.23|ICD10CM|Drown due to being washed overboard from oth powered wtrcrft|Drown due to being washed overboard from oth powered wtrcrft +C2899445|T037|ET|V92.23|ICD10CM|Drowning and submersion due to being washed overboard from Hovercraft (on open water)|Drowning and submersion due to being washed overboard from Hovercraft (on open water) +C2899446|T037|ET|V92.23|ICD10CM|Drowning and submersion due to being washed overboard from Jet ski|Drowning and submersion due to being washed overboard from Jet ski +C2899447|T037|HT|V92.23|ICD10CM|Drowning and submersion due to being washed overboard from other powered watercraft|Drowning and submersion due to being washed overboard from other powered watercraft +C2899448|T037|AB|V92.23XA|ICD10CM|Drown d/t being washed ovrbrd from oth power wtrcrft, init|Drown d/t being washed ovrbrd from oth power wtrcrft, init +C2899449|T037|AB|V92.23XD|ICD10CM|Drown d/t being washed ovrbrd from oth power wtrcrft, subs|Drown d/t being washed ovrbrd from oth power wtrcrft, subs +C2899450|T037|AB|V92.23XS|ICD10CM|Drown d/t being washed ovrbrd from oth power wtrcrft, sqla|Drown d/t being washed ovrbrd from oth power wtrcrft, sqla +C2899450|T037|PT|V92.23XS|ICD10CM|Drowning and submersion due to being washed overboard from other powered watercraft, sequela|Drowning and submersion due to being washed overboard from other powered watercraft, sequela +C2899451|T037|AB|V92.24|ICD10CM|Drown due to being washed overboard from sailboat|Drown due to being washed overboard from sailboat +C2899451|T037|HT|V92.24|ICD10CM|Drowning and submersion due to being washed overboard from sailboat|Drowning and submersion due to being washed overboard from sailboat +C2899452|T037|AB|V92.24XA|ICD10CM|Drown due to being washed overboard from sailboat, init|Drown due to being washed overboard from sailboat, init +C2899452|T037|PT|V92.24XA|ICD10CM|Drowning and submersion due to being washed overboard from sailboat, initial encounter|Drowning and submersion due to being washed overboard from sailboat, initial encounter +C2899453|T037|AB|V92.24XD|ICD10CM|Drown due to being washed overboard from sailboat, subs|Drown due to being washed overboard from sailboat, subs +C2899453|T037|PT|V92.24XD|ICD10CM|Drowning and submersion due to being washed overboard from sailboat, subsequent encounter|Drowning and submersion due to being washed overboard from sailboat, subsequent encounter +C2899454|T037|AB|V92.24XS|ICD10CM|Drown due to being washed overboard from sailboat, sequela|Drown due to being washed overboard from sailboat, sequela +C2899454|T037|PT|V92.24XS|ICD10CM|Drowning and submersion due to being washed overboard from sailboat, sequela|Drowning and submersion due to being washed overboard from sailboat, sequela +C2899455|T037|AB|V92.25|ICD10CM|Drown due to being washed overboard from canoe or kayak|Drown due to being washed overboard from canoe or kayak +C2899455|T037|HT|V92.25|ICD10CM|Drowning and submersion due to being washed overboard from canoe or kayak|Drowning and submersion due to being washed overboard from canoe or kayak +C2899456|T037|AB|V92.25XA|ICD10CM|Drown due to being washed overboard from canoe/kayk, init|Drown due to being washed overboard from canoe/kayk, init +C2899456|T037|PT|V92.25XA|ICD10CM|Drowning and submersion due to being washed overboard from canoe or kayak, initial encounter|Drowning and submersion due to being washed overboard from canoe or kayak, initial encounter +C2899457|T037|AB|V92.25XD|ICD10CM|Drown due to being washed overboard from canoe/kayk, subs|Drown due to being washed overboard from canoe/kayk, subs +C2899457|T037|PT|V92.25XD|ICD10CM|Drowning and submersion due to being washed overboard from canoe or kayak, subsequent encounter|Drowning and submersion due to being washed overboard from canoe or kayak, subsequent encounter +C2899458|T037|AB|V92.25XS|ICD10CM|Drown due to being washed overboard from canoe/kayk, sequela|Drown due to being washed overboard from canoe/kayk, sequela +C2899458|T037|PT|V92.25XS|ICD10CM|Drowning and submersion due to being washed overboard from canoe or kayak, sequela|Drowning and submersion due to being washed overboard from canoe or kayak, sequela +C2899459|T037|AB|V92.26|ICD10CM|Drown due to being washed overboard from inflatbl crft|Drown due to being washed overboard from inflatbl crft +C2899459|T037|HT|V92.26|ICD10CM|Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft|Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft +C2899460|T037|AB|V92.26XA|ICD10CM|Drown due to being washed overboard from inflatbl crft, init|Drown due to being washed overboard from inflatbl crft, init +C2899461|T037|AB|V92.26XD|ICD10CM|Drown due to being washed overboard from inflatbl crft, subs|Drown due to being washed overboard from inflatbl crft, subs +C2899462|T037|AB|V92.26XS|ICD10CM|Drown due to being washed ovrbrd from inflatbl crft, sequela|Drown due to being washed ovrbrd from inflatbl crft, sequela +C2899462|T037|PT|V92.26XS|ICD10CM|Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft, sequela|Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft, sequela +C2899463|T037|AB|V92.27|ICD10CM|Drown due to being washed overboard from water-skis|Drown due to being washed overboard from water-skis +C2899463|T037|HT|V92.27|ICD10CM|Drowning and submersion due to being washed overboard from water-skis|Drowning and submersion due to being washed overboard from water-skis +C2899464|T037|AB|V92.27XA|ICD10CM|Drown due to being washed overboard from water-skis, init|Drown due to being washed overboard from water-skis, init +C2899464|T037|PT|V92.27XA|ICD10CM|Drowning and submersion due to being washed overboard from water-skis, initial encounter|Drowning and submersion due to being washed overboard from water-skis, initial encounter +C2899465|T037|AB|V92.27XD|ICD10CM|Drown due to being washed overboard from water-skis, subs|Drown due to being washed overboard from water-skis, subs +C2899465|T037|PT|V92.27XD|ICD10CM|Drowning and submersion due to being washed overboard from water-skis, subsequent encounter|Drowning and submersion due to being washed overboard from water-skis, subsequent encounter +C2899466|T037|AB|V92.27XS|ICD10CM|Drown due to being washed overboard from water-skis, sequela|Drown due to being washed overboard from water-skis, sequela +C2899466|T037|PT|V92.27XS|ICD10CM|Drowning and submersion due to being washed overboard from water-skis, sequela|Drowning and submersion due to being washed overboard from water-skis, sequela +C2899469|T037|AB|V92.28|ICD10CM|Drown due to being washed overboard from unpowr wtrcrft|Drown due to being washed overboard from unpowr wtrcrft +C2899469|T037|HT|V92.28|ICD10CM|Drowning and submersion due to being washed overboard from other unpowered watercraft|Drowning and submersion due to being washed overboard from other unpowered watercraft +C2899467|T037|ET|V92.28|ICD10CM|Drowning and submersion due to being washed overboard from surf-board|Drowning and submersion due to being washed overboard from surf-board +C2899468|T037|ET|V92.28|ICD10CM|Drowning and submersion due to being washed overboard from windsurfer|Drowning and submersion due to being washed overboard from windsurfer +C2899470|T037|AB|V92.28XA|ICD10CM|Drown due to being washed ovrbrd from unpowr wtrcrft, init|Drown due to being washed ovrbrd from unpowr wtrcrft, init +C2899471|T037|AB|V92.28XD|ICD10CM|Drown due to being washed ovrbrd from unpowr wtrcrft, subs|Drown due to being washed ovrbrd from unpowr wtrcrft, subs +C2899472|T037|AB|V92.28XS|ICD10CM|Drown due to being washed ovrbrd from unpowr wtrcrft, sqla|Drown due to being washed ovrbrd from unpowr wtrcrft, sqla +C2899472|T037|PT|V92.28XS|ICD10CM|Drowning and submersion due to being washed overboard from other unpowered watercraft, sequela|Drowning and submersion due to being washed overboard from other unpowered watercraft, sequela +C2899476|T037|AB|V92.29|ICD10CM|Drown due to being washed overboard from unsp watercraft|Drown due to being washed overboard from unsp watercraft +C2899473|T037|ET|V92.29|ICD10CM|Drowning and submersion due to being washed overboard from boat NOS|Drowning and submersion due to being washed overboard from boat NOS +C2899474|T037|ET|V92.29|ICD10CM|Drowning and submersion due to being washed overboard from ship NOS|Drowning and submersion due to being washed overboard from ship NOS +C2899476|T037|HT|V92.29|ICD10CM|Drowning and submersion due to being washed overboard from unspecified watercraft|Drowning and submersion due to being washed overboard from unspecified watercraft +C2899475|T037|ET|V92.29|ICD10CM|Drowning and submersion due to being washed overboard from watercraft NOS|Drowning and submersion due to being washed overboard from watercraft NOS +C2899477|T037|AB|V92.29XA|ICD10CM|Drown due to being washed overboard from unsp wtrcrft, init|Drown due to being washed overboard from unsp wtrcrft, init +C2899477|T037|PT|V92.29XA|ICD10CM|Drowning and submersion due to being washed overboard from unspecified watercraft, initial encounter|Drowning and submersion due to being washed overboard from unspecified watercraft, initial encounter +C2899478|T037|AB|V92.29XD|ICD10CM|Drown due to being washed overboard from unsp wtrcrft, subs|Drown due to being washed overboard from unsp wtrcrft, subs +C2899479|T037|AB|V92.29XS|ICD10CM|Drown due to being washed ovrbrd from unsp wtrcrft, sequela|Drown due to being washed ovrbrd from unsp wtrcrft, sequela +C2899479|T037|PT|V92.29XS|ICD10CM|Drowning and submersion due to being washed overboard from unspecified watercraft, sequela|Drowning and submersion due to being washed overboard from unspecified watercraft, sequela +C0496497|T037|PT|V92.4|ICD10|Water-transport-related drowning and submersion without accident to watercraft, sailboat|Water-transport-related drowning and submersion without accident to watercraft, sailboat +C0477262|T037|PT|V92.5|ICD10|Water-transport-related drowning and submersion without accident to watercraft, canoe or kayak|Water-transport-related drowning and submersion without accident to watercraft, canoe or kayak +C0477264|T037|PT|V92.7|ICD10|Water-transport-related drowning and submersion without accident to watercraft, water-skis|Water-transport-related drowning and submersion without accident to watercraft, water-skis +C0496499|T037|HT|V93|ICD10|Accident on board watercraft without accident to watercraft, not causing drowning and submersion|Accident on board watercraft without accident to watercraft, not causing drowning and submersion +C2899480|T037|AB|V93|ICD10CM|Oth injury due to acc on board wtrcrft, w/o acc to wtrcrft|Oth injury due to acc on board wtrcrft, w/o acc to wtrcrft +C2899480|T037|HT|V93|ICD10CM|Other injury due to accident on board watercraft, without accident to watercraft|Other injury due to accident on board watercraft, without accident to watercraft +C2899507|T037|AB|V93.0|ICD10CM|Burn due to localized fire on board watercraft|Burn due to localized fire on board watercraft +C2899507|T037|HT|V93.0|ICD10CM|Burn due to localized fire on board watercraft|Burn due to localized fire on board watercraft +C2899481|T037|AB|V93.00|ICD10CM|Burn due to localized fire on board merchant vessel|Burn due to localized fire on board merchant vessel +C2899481|T037|HT|V93.00|ICD10CM|Burn due to localized fire on board merchant vessel|Burn due to localized fire on board merchant vessel +C2899482|T037|AB|V93.00XA|ICD10CM|Burn due to localized fire on board merchant vessel, init|Burn due to localized fire on board merchant vessel, init +C2899482|T037|PT|V93.00XA|ICD10CM|Burn due to localized fire on board merchant vessel, initial encounter|Burn due to localized fire on board merchant vessel, initial encounter +C2899483|T037|AB|V93.00XD|ICD10CM|Burn due to localized fire on board merchant vessel, subs|Burn due to localized fire on board merchant vessel, subs +C2899483|T037|PT|V93.00XD|ICD10CM|Burn due to localized fire on board merchant vessel, subsequent encounter|Burn due to localized fire on board merchant vessel, subsequent encounter +C2899484|T037|AB|V93.00XS|ICD10CM|Burn due to localized fire on board merchant vessel, sequela|Burn due to localized fire on board merchant vessel, sequela +C2899484|T037|PT|V93.00XS|ICD10CM|Burn due to localized fire on board merchant vessel, sequela|Burn due to localized fire on board merchant vessel, sequela +C2899485|T037|ET|V93.01|ICD10CM|Burn due to localized fire on board Ferry-boat|Burn due to localized fire on board Ferry-boat +C2899486|T037|ET|V93.01|ICD10CM|Burn due to localized fire on board Liner|Burn due to localized fire on board Liner +C2899487|T037|AB|V93.01|ICD10CM|Burn due to localized fire on board passenger vessel|Burn due to localized fire on board passenger vessel +C2899487|T037|HT|V93.01|ICD10CM|Burn due to localized fire on board passenger vessel|Burn due to localized fire on board passenger vessel +C2899488|T037|AB|V93.01XA|ICD10CM|Burn due to localized fire on board passenger vessel, init|Burn due to localized fire on board passenger vessel, init +C2899488|T037|PT|V93.01XA|ICD10CM|Burn due to localized fire on board passenger vessel, initial encounter|Burn due to localized fire on board passenger vessel, initial encounter +C2899489|T037|AB|V93.01XD|ICD10CM|Burn due to localized fire on board passenger vessel, subs|Burn due to localized fire on board passenger vessel, subs +C2899489|T037|PT|V93.01XD|ICD10CM|Burn due to localized fire on board passenger vessel, subsequent encounter|Burn due to localized fire on board passenger vessel, subsequent encounter +C2899490|T037|AB|V93.01XS|ICD10CM|Burn due to loc fire on board passenger vessel, sequela|Burn due to loc fire on board passenger vessel, sequela +C2899490|T037|PT|V93.01XS|ICD10CM|Burn due to localized fire on board passenger vessel, sequela|Burn due to localized fire on board passenger vessel, sequela +C2899491|T037|AB|V93.02|ICD10CM|Burn due to localized fire on board fishing boat|Burn due to localized fire on board fishing boat +C2899491|T037|HT|V93.02|ICD10CM|Burn due to localized fire on board fishing boat|Burn due to localized fire on board fishing boat +C2899492|T037|AB|V93.02XA|ICD10CM|Burn due to localized fire on board fishing boat, init|Burn due to localized fire on board fishing boat, init +C2899492|T037|PT|V93.02XA|ICD10CM|Burn due to localized fire on board fishing boat, initial encounter|Burn due to localized fire on board fishing boat, initial encounter +C2899493|T037|AB|V93.02XD|ICD10CM|Burn due to localized fire on board fishing boat, subs|Burn due to localized fire on board fishing boat, subs +C2899493|T037|PT|V93.02XD|ICD10CM|Burn due to localized fire on board fishing boat, subsequent encounter|Burn due to localized fire on board fishing boat, subsequent encounter +C2899494|T037|AB|V93.02XS|ICD10CM|Burn due to localized fire on board fishing boat, sequela|Burn due to localized fire on board fishing boat, sequela +C2899494|T037|PT|V93.02XS|ICD10CM|Burn due to localized fire on board fishing boat, sequela|Burn due to localized fire on board fishing boat, sequela +C2899495|T037|ET|V93.03|ICD10CM|Burn due to localized fire on board Hovercraft|Burn due to localized fire on board Hovercraft +C2899496|T037|ET|V93.03|ICD10CM|Burn due to localized fire on board Jet ski|Burn due to localized fire on board Jet ski +C2899497|T037|AB|V93.03|ICD10CM|Burn due to localized fire on board other powered watercraft|Burn due to localized fire on board other powered watercraft +C2899497|T037|HT|V93.03|ICD10CM|Burn due to localized fire on board other powered watercraft|Burn due to localized fire on board other powered watercraft +C2899498|T037|AB|V93.03XA|ICD10CM|Burn due to loc fire on board oth powered wtrcrft, init|Burn due to loc fire on board oth powered wtrcrft, init +C2899498|T037|PT|V93.03XA|ICD10CM|Burn due to localized fire on board other powered watercraft, initial encounter|Burn due to localized fire on board other powered watercraft, initial encounter +C2899499|T037|AB|V93.03XD|ICD10CM|Burn due to loc fire on board oth powered wtrcrft, subs|Burn due to loc fire on board oth powered wtrcrft, subs +C2899499|T037|PT|V93.03XD|ICD10CM|Burn due to localized fire on board other powered watercraft, subsequent encounter|Burn due to localized fire on board other powered watercraft, subsequent encounter +C2899500|T037|AB|V93.03XS|ICD10CM|Burn due to loc fire on board oth powered wtrcrft, sequela|Burn due to loc fire on board oth powered wtrcrft, sequela +C2899500|T037|PT|V93.03XS|ICD10CM|Burn due to localized fire on board other powered watercraft, sequela|Burn due to localized fire on board other powered watercraft, sequela +C2899501|T037|AB|V93.04|ICD10CM|Burn due to localized fire on board sailboat|Burn due to localized fire on board sailboat +C2899501|T037|HT|V93.04|ICD10CM|Burn due to localized fire on board sailboat|Burn due to localized fire on board sailboat +C2899502|T037|AB|V93.04XA|ICD10CM|Burn due to localized fire on board sailboat, init encntr|Burn due to localized fire on board sailboat, init encntr +C2899502|T037|PT|V93.04XA|ICD10CM|Burn due to localized fire on board sailboat, initial encounter|Burn due to localized fire on board sailboat, initial encounter +C2899503|T037|AB|V93.04XD|ICD10CM|Burn due to localized fire on board sailboat, subs encntr|Burn due to localized fire on board sailboat, subs encntr +C2899503|T037|PT|V93.04XD|ICD10CM|Burn due to localized fire on board sailboat, subsequent encounter|Burn due to localized fire on board sailboat, subsequent encounter +C2899504|T037|AB|V93.04XS|ICD10CM|Burn due to localized fire on board sailboat, sequela|Burn due to localized fire on board sailboat, sequela +C2899504|T037|PT|V93.04XS|ICD10CM|Burn due to localized fire on board sailboat, sequela|Burn due to localized fire on board sailboat, sequela +C2899505|T037|ET|V93.09|ICD10CM|Burn due to localized fire on board boat NOS|Burn due to localized fire on board boat NOS +C2899506|T037|ET|V93.09|ICD10CM|Burn due to localized fire on board ship NOS|Burn due to localized fire on board ship NOS +C2899508|T037|AB|V93.09|ICD10CM|Burn due to localized fire on board unspecified watercraft|Burn due to localized fire on board unspecified watercraft +C2899508|T037|HT|V93.09|ICD10CM|Burn due to localized fire on board unspecified watercraft|Burn due to localized fire on board unspecified watercraft +C2899507|T037|ET|V93.09|ICD10CM|Burn due to localized fire on board watercraft NOS|Burn due to localized fire on board watercraft NOS +C2899509|T037|AB|V93.09XA|ICD10CM|Burn due to localized fire on board unsp watercraft, init|Burn due to localized fire on board unsp watercraft, init +C2899509|T037|PT|V93.09XA|ICD10CM|Burn due to localized fire on board unspecified watercraft, initial encounter|Burn due to localized fire on board unspecified watercraft, initial encounter +C2899510|T037|AB|V93.09XD|ICD10CM|Burn due to localized fire on board unsp watercraft, subs|Burn due to localized fire on board unsp watercraft, subs +C2899510|T037|PT|V93.09XD|ICD10CM|Burn due to localized fire on board unspecified watercraft, subsequent encounter|Burn due to localized fire on board unspecified watercraft, subsequent encounter +C2899511|T037|AB|V93.09XS|ICD10CM|Burn due to localized fire on board unsp watercraft, sequela|Burn due to localized fire on board unsp watercraft, sequela +C2899511|T037|PT|V93.09XS|ICD10CM|Burn due to localized fire on board unspecified watercraft, sequela|Burn due to localized fire on board unspecified watercraft, sequela +C2899512|T037|ET|V93.1|ICD10CM|Burn due to source other than fire on board watercraft|Burn due to source other than fire on board watercraft +C2899539|T037|AB|V93.1|ICD10CM|Other burn on board watercraft|Other burn on board watercraft +C2899539|T037|HT|V93.1|ICD10CM|Other burn on board watercraft|Other burn on board watercraft +C2899513|T037|AB|V93.10|ICD10CM|Other burn on board merchant vessel|Other burn on board merchant vessel +C2899513|T037|HT|V93.10|ICD10CM|Other burn on board merchant vessel|Other burn on board merchant vessel +C2899514|T037|AB|V93.10XA|ICD10CM|Other burn on board merchant vessel, initial encounter|Other burn on board merchant vessel, initial encounter +C2899514|T037|PT|V93.10XA|ICD10CM|Other burn on board merchant vessel, initial encounter|Other burn on board merchant vessel, initial encounter +C2899515|T037|AB|V93.10XD|ICD10CM|Other burn on board merchant vessel, subsequent encounter|Other burn on board merchant vessel, subsequent encounter +C2899515|T037|PT|V93.10XD|ICD10CM|Other burn on board merchant vessel, subsequent encounter|Other burn on board merchant vessel, subsequent encounter +C2899516|T037|AB|V93.10XS|ICD10CM|Other burn on board merchant vessel, sequela|Other burn on board merchant vessel, sequela +C2899516|T037|PT|V93.10XS|ICD10CM|Other burn on board merchant vessel, sequela|Other burn on board merchant vessel, sequela +C2899517|T037|ET|V93.11|ICD10CM|Other burn on board Ferry-boat|Other burn on board Ferry-boat +C2899518|T037|ET|V93.11|ICD10CM|Other burn on board Liner|Other burn on board Liner +C2899519|T037|AB|V93.11|ICD10CM|Other burn on board passenger vessel|Other burn on board passenger vessel +C2899519|T037|HT|V93.11|ICD10CM|Other burn on board passenger vessel|Other burn on board passenger vessel +C2899520|T037|AB|V93.11XA|ICD10CM|Other burn on board passenger vessel, initial encounter|Other burn on board passenger vessel, initial encounter +C2899520|T037|PT|V93.11XA|ICD10CM|Other burn on board passenger vessel, initial encounter|Other burn on board passenger vessel, initial encounter +C2899521|T037|AB|V93.11XD|ICD10CM|Other burn on board passenger vessel, subsequent encounter|Other burn on board passenger vessel, subsequent encounter +C2899521|T037|PT|V93.11XD|ICD10CM|Other burn on board passenger vessel, subsequent encounter|Other burn on board passenger vessel, subsequent encounter +C2899522|T037|AB|V93.11XS|ICD10CM|Other burn on board passenger vessel, sequela|Other burn on board passenger vessel, sequela +C2899522|T037|PT|V93.11XS|ICD10CM|Other burn on board passenger vessel, sequela|Other burn on board passenger vessel, sequela +C2899523|T037|AB|V93.12|ICD10CM|Other burn on board fishing boat|Other burn on board fishing boat +C2899523|T037|HT|V93.12|ICD10CM|Other burn on board fishing boat|Other burn on board fishing boat +C2899524|T037|AB|V93.12XA|ICD10CM|Other burn on board fishing boat, initial encounter|Other burn on board fishing boat, initial encounter +C2899524|T037|PT|V93.12XA|ICD10CM|Other burn on board fishing boat, initial encounter|Other burn on board fishing boat, initial encounter +C2899525|T037|AB|V93.12XD|ICD10CM|Other burn on board fishing boat, subsequent encounter|Other burn on board fishing boat, subsequent encounter +C2899525|T037|PT|V93.12XD|ICD10CM|Other burn on board fishing boat, subsequent encounter|Other burn on board fishing boat, subsequent encounter +C2899526|T037|AB|V93.12XS|ICD10CM|Other burn on board fishing boat, sequela|Other burn on board fishing boat, sequela +C2899526|T037|PT|V93.12XS|ICD10CM|Other burn on board fishing boat, sequela|Other burn on board fishing boat, sequela +C2899527|T037|ET|V93.13|ICD10CM|Other burn on board Hovercraft|Other burn on board Hovercraft +C2899528|T037|ET|V93.13|ICD10CM|Other burn on board Jet ski|Other burn on board Jet ski +C2899529|T037|AB|V93.13|ICD10CM|Other burn on board other powered watercraft|Other burn on board other powered watercraft +C2899529|T037|HT|V93.13|ICD10CM|Other burn on board other powered watercraft|Other burn on board other powered watercraft +C2899530|T037|AB|V93.13XA|ICD10CM|Other burn on board other powered watercraft, init encntr|Other burn on board other powered watercraft, init encntr +C2899530|T037|PT|V93.13XA|ICD10CM|Other burn on board other powered watercraft, initial encounter|Other burn on board other powered watercraft, initial encounter +C2899531|T037|AB|V93.13XD|ICD10CM|Other burn on board other powered watercraft, subs encntr|Other burn on board other powered watercraft, subs encntr +C2899531|T037|PT|V93.13XD|ICD10CM|Other burn on board other powered watercraft, subsequent encounter|Other burn on board other powered watercraft, subsequent encounter +C2899532|T037|AB|V93.13XS|ICD10CM|Other burn on board other powered watercraft, sequela|Other burn on board other powered watercraft, sequela +C2899532|T037|PT|V93.13XS|ICD10CM|Other burn on board other powered watercraft, sequela|Other burn on board other powered watercraft, sequela +C2899533|T037|AB|V93.14|ICD10CM|Other burn on board sailboat|Other burn on board sailboat +C2899533|T037|HT|V93.14|ICD10CM|Other burn on board sailboat|Other burn on board sailboat +C2899534|T037|AB|V93.14XA|ICD10CM|Other burn on board sailboat, initial encounter|Other burn on board sailboat, initial encounter +C2899534|T037|PT|V93.14XA|ICD10CM|Other burn on board sailboat, initial encounter|Other burn on board sailboat, initial encounter +C2899535|T037|AB|V93.14XD|ICD10CM|Other burn on board sailboat, subsequent encounter|Other burn on board sailboat, subsequent encounter +C2899535|T037|PT|V93.14XD|ICD10CM|Other burn on board sailboat, subsequent encounter|Other burn on board sailboat, subsequent encounter +C2899536|T037|AB|V93.14XS|ICD10CM|Other burn on board sailboat, sequela|Other burn on board sailboat, sequela +C2899536|T037|PT|V93.14XS|ICD10CM|Other burn on board sailboat, sequela|Other burn on board sailboat, sequela +C2899537|T037|ET|V93.19|ICD10CM|Other burn on board boat NOS|Other burn on board boat NOS +C2899538|T037|ET|V93.19|ICD10CM|Other burn on board ship NOS|Other burn on board ship NOS +C2899540|T037|AB|V93.19|ICD10CM|Other burn on board unspecified watercraft|Other burn on board unspecified watercraft +C2899540|T037|HT|V93.19|ICD10CM|Other burn on board unspecified watercraft|Other burn on board unspecified watercraft +C2899539|T037|ET|V93.19|ICD10CM|Other burn on board watercraft NOS|Other burn on board watercraft NOS +C2899541|T037|AB|V93.19XA|ICD10CM|Other burn on board unspecified watercraft, init encntr|Other burn on board unspecified watercraft, init encntr +C2899541|T037|PT|V93.19XA|ICD10CM|Other burn on board unspecified watercraft, initial encounter|Other burn on board unspecified watercraft, initial encounter +C2899542|T037|AB|V93.19XD|ICD10CM|Other burn on board unspecified watercraft, subs encntr|Other burn on board unspecified watercraft, subs encntr +C2899542|T037|PT|V93.19XD|ICD10CM|Other burn on board unspecified watercraft, subsequent encounter|Other burn on board unspecified watercraft, subsequent encounter +C2899543|T037|AB|V93.19XS|ICD10CM|Other burn on board unspecified watercraft, sequela|Other burn on board unspecified watercraft, sequela +C2899543|T037|PT|V93.19XS|ICD10CM|Other burn on board unspecified watercraft, sequela|Other burn on board unspecified watercraft, sequela +C2899569|T037|AB|V93.2|ICD10CM|Heat exposure on board watercraft|Heat exposure on board watercraft +C2899569|T037|HT|V93.2|ICD10CM|Heat exposure on board watercraft|Heat exposure on board watercraft +C2899544|T037|AB|V93.20|ICD10CM|Heat exposure on board merchant ship|Heat exposure on board merchant ship +C2899544|T037|HT|V93.20|ICD10CM|Heat exposure on board merchant ship|Heat exposure on board merchant ship +C2899545|T037|AB|V93.20XA|ICD10CM|Heat exposure on board merchant ship, initial encounter|Heat exposure on board merchant ship, initial encounter +C2899545|T037|PT|V93.20XA|ICD10CM|Heat exposure on board merchant ship, initial encounter|Heat exposure on board merchant ship, initial encounter +C2899546|T037|AB|V93.20XD|ICD10CM|Heat exposure on board merchant ship, subsequent encounter|Heat exposure on board merchant ship, subsequent encounter +C2899546|T037|PT|V93.20XD|ICD10CM|Heat exposure on board merchant ship, subsequent encounter|Heat exposure on board merchant ship, subsequent encounter +C2899547|T037|AB|V93.20XS|ICD10CM|Heat exposure on board merchant ship, sequela|Heat exposure on board merchant ship, sequela +C2899547|T037|PT|V93.20XS|ICD10CM|Heat exposure on board merchant ship, sequela|Heat exposure on board merchant ship, sequela +C2899548|T037|ET|V93.21|ICD10CM|Heat exposure on board Ferry-boat|Heat exposure on board Ferry-boat +C2899549|T047|ET|V93.21|ICD10CM|Heat exposure on board Liner|Heat exposure on board Liner +C2899550|T037|AB|V93.21|ICD10CM|Heat exposure on board passenger ship|Heat exposure on board passenger ship +C2899550|T037|HT|V93.21|ICD10CM|Heat exposure on board passenger ship|Heat exposure on board passenger ship +C2899551|T037|AB|V93.21XA|ICD10CM|Heat exposure on board passenger ship, initial encounter|Heat exposure on board passenger ship, initial encounter +C2899551|T037|PT|V93.21XA|ICD10CM|Heat exposure on board passenger ship, initial encounter|Heat exposure on board passenger ship, initial encounter +C2899552|T037|AB|V93.21XD|ICD10CM|Heat exposure on board passenger ship, subsequent encounter|Heat exposure on board passenger ship, subsequent encounter +C2899552|T037|PT|V93.21XD|ICD10CM|Heat exposure on board passenger ship, subsequent encounter|Heat exposure on board passenger ship, subsequent encounter +C2899553|T037|AB|V93.21XS|ICD10CM|Heat exposure on board passenger ship, sequela|Heat exposure on board passenger ship, sequela +C2899553|T037|PT|V93.21XS|ICD10CM|Heat exposure on board passenger ship, sequela|Heat exposure on board passenger ship, sequela +C2899554|T037|AB|V93.22|ICD10CM|Heat exposure on board fishing boat|Heat exposure on board fishing boat +C2899554|T037|HT|V93.22|ICD10CM|Heat exposure on board fishing boat|Heat exposure on board fishing boat +C2899555|T037|AB|V93.22XA|ICD10CM|Heat exposure on board fishing boat, initial encounter|Heat exposure on board fishing boat, initial encounter +C2899555|T037|PT|V93.22XA|ICD10CM|Heat exposure on board fishing boat, initial encounter|Heat exposure on board fishing boat, initial encounter +C2899556|T037|AB|V93.22XD|ICD10CM|Heat exposure on board fishing boat, subsequent encounter|Heat exposure on board fishing boat, subsequent encounter +C2899556|T037|PT|V93.22XD|ICD10CM|Heat exposure on board fishing boat, subsequent encounter|Heat exposure on board fishing boat, subsequent encounter +C2899557|T037|AB|V93.22XS|ICD10CM|Heat exposure on board fishing boat, sequela|Heat exposure on board fishing boat, sequela +C2899557|T037|PT|V93.22XS|ICD10CM|Heat exposure on board fishing boat, sequela|Heat exposure on board fishing boat, sequela +C2899558|T047|ET|V93.23|ICD10CM|Heat exposure on board hovercraft|Heat exposure on board hovercraft +C2899559|T037|AB|V93.23|ICD10CM|Heat exposure on board other powered watercraft|Heat exposure on board other powered watercraft +C2899559|T037|HT|V93.23|ICD10CM|Heat exposure on board other powered watercraft|Heat exposure on board other powered watercraft +C2899560|T037|AB|V93.23XA|ICD10CM|Heat exposure on board other powered watercraft, init encntr|Heat exposure on board other powered watercraft, init encntr +C2899560|T037|PT|V93.23XA|ICD10CM|Heat exposure on board other powered watercraft, initial encounter|Heat exposure on board other powered watercraft, initial encounter +C2899561|T037|AB|V93.23XD|ICD10CM|Heat exposure on board other powered watercraft, subs encntr|Heat exposure on board other powered watercraft, subs encntr +C2899561|T037|PT|V93.23XD|ICD10CM|Heat exposure on board other powered watercraft, subsequent encounter|Heat exposure on board other powered watercraft, subsequent encounter +C2899562|T037|AB|V93.23XS|ICD10CM|Heat exposure on board other powered watercraft, sequela|Heat exposure on board other powered watercraft, sequela +C2899562|T037|PT|V93.23XS|ICD10CM|Heat exposure on board other powered watercraft, sequela|Heat exposure on board other powered watercraft, sequela +C2899563|T037|AB|V93.24|ICD10CM|Heat exposure on board sailboat|Heat exposure on board sailboat +C2899563|T037|HT|V93.24|ICD10CM|Heat exposure on board sailboat|Heat exposure on board sailboat +C2899564|T037|AB|V93.24XA|ICD10CM|Heat exposure on board sailboat, initial encounter|Heat exposure on board sailboat, initial encounter +C2899564|T037|PT|V93.24XA|ICD10CM|Heat exposure on board sailboat, initial encounter|Heat exposure on board sailboat, initial encounter +C2899565|T037|AB|V93.24XD|ICD10CM|Heat exposure on board sailboat, subsequent encounter|Heat exposure on board sailboat, subsequent encounter +C2899565|T037|PT|V93.24XD|ICD10CM|Heat exposure on board sailboat, subsequent encounter|Heat exposure on board sailboat, subsequent encounter +C2899566|T037|AB|V93.24XS|ICD10CM|Heat exposure on board sailboat, sequela|Heat exposure on board sailboat, sequela +C2899566|T037|PT|V93.24XS|ICD10CM|Heat exposure on board sailboat, sequela|Heat exposure on board sailboat, sequela +C2899567|T037|ET|V93.29|ICD10CM|Heat exposure on board boat NOS|Heat exposure on board boat NOS +C2899568|T037|ET|V93.29|ICD10CM|Heat exposure on board ship NOS|Heat exposure on board ship NOS +C2899570|T037|AB|V93.29|ICD10CM|Heat exposure on board unspecified watercraft|Heat exposure on board unspecified watercraft +C2899570|T037|HT|V93.29|ICD10CM|Heat exposure on board unspecified watercraft|Heat exposure on board unspecified watercraft +C2899569|T037|ET|V93.29|ICD10CM|Heat exposure on board watercraft NOS|Heat exposure on board watercraft NOS +C2899571|T037|AB|V93.29XA|ICD10CM|Heat exposure on board unspecified watercraft, init encntr|Heat exposure on board unspecified watercraft, init encntr +C2899571|T037|PT|V93.29XA|ICD10CM|Heat exposure on board unspecified watercraft, initial encounter|Heat exposure on board unspecified watercraft, initial encounter +C2899572|T037|AB|V93.29XD|ICD10CM|Heat exposure on board unspecified watercraft, subs encntr|Heat exposure on board unspecified watercraft, subs encntr +C2899572|T037|PT|V93.29XD|ICD10CM|Heat exposure on board unspecified watercraft, subsequent encounter|Heat exposure on board unspecified watercraft, subsequent encounter +C2899573|T037|AB|V93.29XS|ICD10CM|Heat exposure on board unspecified watercraft, sequela|Heat exposure on board unspecified watercraft, sequela +C2899573|T037|PT|V93.29XS|ICD10CM|Heat exposure on board unspecified watercraft, sequela|Heat exposure on board unspecified watercraft, sequela +C2899612|T037|AB|V93.3|ICD10CM|Fall on board watercraft|Fall on board watercraft +C2899612|T037|HT|V93.3|ICD10CM|Fall on board watercraft|Fall on board watercraft +C2899574|T037|AB|V93.30|ICD10CM|Fall on board merchant ship|Fall on board merchant ship +C2899574|T037|HT|V93.30|ICD10CM|Fall on board merchant ship|Fall on board merchant ship +C2899575|T037|PT|V93.30XA|ICD10CM|Fall on board merchant ship, initial encounter|Fall on board merchant ship, initial encounter +C2899575|T037|AB|V93.30XA|ICD10CM|Fall on board merchant ship, initial encounter|Fall on board merchant ship, initial encounter +C2899576|T037|PT|V93.30XD|ICD10CM|Fall on board merchant ship, subsequent encounter|Fall on board merchant ship, subsequent encounter +C2899576|T037|AB|V93.30XD|ICD10CM|Fall on board merchant ship, subsequent encounter|Fall on board merchant ship, subsequent encounter +C2899577|T037|PT|V93.30XS|ICD10CM|Fall on board merchant ship, sequela|Fall on board merchant ship, sequela +C2899577|T037|AB|V93.30XS|ICD10CM|Fall on board merchant ship, sequela|Fall on board merchant ship, sequela +C2899578|T037|ET|V93.31|ICD10CM|Fall on board Ferry-boat|Fall on board Ferry-boat +C2899579|T037|ET|V93.31|ICD10CM|Fall on board Liner|Fall on board Liner +C2899580|T037|AB|V93.31|ICD10CM|Fall on board passenger ship|Fall on board passenger ship +C2899580|T037|HT|V93.31|ICD10CM|Fall on board passenger ship|Fall on board passenger ship +C2899581|T037|PT|V93.31XA|ICD10CM|Fall on board passenger ship, initial encounter|Fall on board passenger ship, initial encounter +C2899581|T037|AB|V93.31XA|ICD10CM|Fall on board passenger ship, initial encounter|Fall on board passenger ship, initial encounter +C2899582|T037|PT|V93.31XD|ICD10CM|Fall on board passenger ship, subsequent encounter|Fall on board passenger ship, subsequent encounter +C2899582|T037|AB|V93.31XD|ICD10CM|Fall on board passenger ship, subsequent encounter|Fall on board passenger ship, subsequent encounter +C2899583|T037|PT|V93.31XS|ICD10CM|Fall on board passenger ship, sequela|Fall on board passenger ship, sequela +C2899583|T037|AB|V93.31XS|ICD10CM|Fall on board passenger ship, sequela|Fall on board passenger ship, sequela +C2899584|T037|AB|V93.32|ICD10CM|Fall on board fishing boat|Fall on board fishing boat +C2899584|T037|HT|V93.32|ICD10CM|Fall on board fishing boat|Fall on board fishing boat +C2899585|T037|PT|V93.32XA|ICD10CM|Fall on board fishing boat, initial encounter|Fall on board fishing boat, initial encounter +C2899585|T037|AB|V93.32XA|ICD10CM|Fall on board fishing boat, initial encounter|Fall on board fishing boat, initial encounter +C2899586|T037|PT|V93.32XD|ICD10CM|Fall on board fishing boat, subsequent encounter|Fall on board fishing boat, subsequent encounter +C2899586|T037|AB|V93.32XD|ICD10CM|Fall on board fishing boat, subsequent encounter|Fall on board fishing boat, subsequent encounter +C2899587|T037|PT|V93.32XS|ICD10CM|Fall on board fishing boat, sequela|Fall on board fishing boat, sequela +C2899587|T037|AB|V93.32XS|ICD10CM|Fall on board fishing boat, sequela|Fall on board fishing boat, sequela +C2899588|T037|ET|V93.33|ICD10CM|Fall on board Hovercraft (on open water)|Fall on board Hovercraft (on open water) +C2899589|T037|ET|V93.33|ICD10CM|Fall on board Jet ski|Fall on board Jet ski +C2899590|T037|AB|V93.33|ICD10CM|Fall on board other powered watercraft|Fall on board other powered watercraft +C2899590|T037|HT|V93.33|ICD10CM|Fall on board other powered watercraft|Fall on board other powered watercraft +C2899591|T037|PT|V93.33XA|ICD10CM|Fall on board other powered watercraft, initial encounter|Fall on board other powered watercraft, initial encounter +C2899591|T037|AB|V93.33XA|ICD10CM|Fall on board other powered watercraft, initial encounter|Fall on board other powered watercraft, initial encounter +C2899592|T037|AB|V93.33XD|ICD10CM|Fall on board other powered watercraft, subsequent encounter|Fall on board other powered watercraft, subsequent encounter +C2899592|T037|PT|V93.33XD|ICD10CM|Fall on board other powered watercraft, subsequent encounter|Fall on board other powered watercraft, subsequent encounter +C2899593|T037|PT|V93.33XS|ICD10CM|Fall on board other powered watercraft, sequela|Fall on board other powered watercraft, sequela +C2899593|T037|AB|V93.33XS|ICD10CM|Fall on board other powered watercraft, sequela|Fall on board other powered watercraft, sequela +C2899594|T037|AB|V93.34|ICD10CM|Fall on board sailboat|Fall on board sailboat +C2899594|T037|HT|V93.34|ICD10CM|Fall on board sailboat|Fall on board sailboat +C2899595|T037|PT|V93.34XA|ICD10CM|Fall on board sailboat, initial encounter|Fall on board sailboat, initial encounter +C2899595|T037|AB|V93.34XA|ICD10CM|Fall on board sailboat, initial encounter|Fall on board sailboat, initial encounter +C2899596|T037|PT|V93.34XD|ICD10CM|Fall on board sailboat, subsequent encounter|Fall on board sailboat, subsequent encounter +C2899596|T037|AB|V93.34XD|ICD10CM|Fall on board sailboat, subsequent encounter|Fall on board sailboat, subsequent encounter +C2899597|T037|PT|V93.34XS|ICD10CM|Fall on board sailboat, sequela|Fall on board sailboat, sequela +C2899597|T037|AB|V93.34XS|ICD10CM|Fall on board sailboat, sequela|Fall on board sailboat, sequela +C2899598|T037|AB|V93.35|ICD10CM|Fall on board canoe or kayak|Fall on board canoe or kayak +C2899598|T037|HT|V93.35|ICD10CM|Fall on board canoe or kayak|Fall on board canoe or kayak +C2899599|T037|AB|V93.35XA|ICD10CM|Fall on board canoe or kayak, initial encounter|Fall on board canoe or kayak, initial encounter +C2899599|T037|PT|V93.35XA|ICD10CM|Fall on board canoe or kayak, initial encounter|Fall on board canoe or kayak, initial encounter +C2899600|T037|AB|V93.35XD|ICD10CM|Fall on board canoe or kayak, subsequent encounter|Fall on board canoe or kayak, subsequent encounter +C2899600|T037|PT|V93.35XD|ICD10CM|Fall on board canoe or kayak, subsequent encounter|Fall on board canoe or kayak, subsequent encounter +C2899601|T037|AB|V93.35XS|ICD10CM|Fall on board canoe or kayak, sequela|Fall on board canoe or kayak, sequela +C2899601|T037|PT|V93.35XS|ICD10CM|Fall on board canoe or kayak, sequela|Fall on board canoe or kayak, sequela +C2899602|T037|AB|V93.36|ICD10CM|Fall on board (nonpowered) inflatable craft|Fall on board (nonpowered) inflatable craft +C2899602|T037|HT|V93.36|ICD10CM|Fall on board (nonpowered) inflatable craft|Fall on board (nonpowered) inflatable craft +C2899603|T037|AB|V93.36XA|ICD10CM|Fall on board (nonpowered) inflatable craft, init encntr|Fall on board (nonpowered) inflatable craft, init encntr +C2899603|T037|PT|V93.36XA|ICD10CM|Fall on board (nonpowered) inflatable craft, initial encounter|Fall on board (nonpowered) inflatable craft, initial encounter +C2899604|T037|AB|V93.36XD|ICD10CM|Fall on board (nonpowered) inflatable craft, subs encntr|Fall on board (nonpowered) inflatable craft, subs encntr +C2899604|T037|PT|V93.36XD|ICD10CM|Fall on board (nonpowered) inflatable craft, subsequent encounter|Fall on board (nonpowered) inflatable craft, subsequent encounter +C2899605|T037|AB|V93.36XS|ICD10CM|Fall on board (nonpowered) inflatable craft, sequela|Fall on board (nonpowered) inflatable craft, sequela +C2899605|T037|PT|V93.36XS|ICD10CM|Fall on board (nonpowered) inflatable craft, sequela|Fall on board (nonpowered) inflatable craft, sequela +C2899606|T037|AB|V93.38|ICD10CM|Fall on board other unpowered watercraft|Fall on board other unpowered watercraft +C2899606|T037|HT|V93.38|ICD10CM|Fall on board other unpowered watercraft|Fall on board other unpowered watercraft +C2899607|T037|AB|V93.38XA|ICD10CM|Fall on board other unpowered watercraft, initial encounter|Fall on board other unpowered watercraft, initial encounter +C2899607|T037|PT|V93.38XA|ICD10CM|Fall on board other unpowered watercraft, initial encounter|Fall on board other unpowered watercraft, initial encounter +C2899608|T037|AB|V93.38XD|ICD10CM|Fall on board other unpowered watercraft, subs encntr|Fall on board other unpowered watercraft, subs encntr +C2899608|T037|PT|V93.38XD|ICD10CM|Fall on board other unpowered watercraft, subsequent encounter|Fall on board other unpowered watercraft, subsequent encounter +C2899609|T037|AB|V93.38XS|ICD10CM|Fall on board other unpowered watercraft, sequela|Fall on board other unpowered watercraft, sequela +C2899609|T037|PT|V93.38XS|ICD10CM|Fall on board other unpowered watercraft, sequela|Fall on board other unpowered watercraft, sequela +C2899610|T037|ET|V93.39|ICD10CM|Fall on board boat NOS|Fall on board boat NOS +C2899611|T037|ET|V93.39|ICD10CM|Fall on board ship NOS|Fall on board ship NOS +C2899613|T037|AB|V93.39|ICD10CM|Fall on board unspecified watercraft|Fall on board unspecified watercraft +C2899613|T037|HT|V93.39|ICD10CM|Fall on board unspecified watercraft|Fall on board unspecified watercraft +C2899612|T037|ET|V93.39|ICD10CM|Fall on board watercraft NOS|Fall on board watercraft NOS +C2899614|T037|AB|V93.39XA|ICD10CM|Fall on board unspecified watercraft, initial encounter|Fall on board unspecified watercraft, initial encounter +C2899614|T037|PT|V93.39XA|ICD10CM|Fall on board unspecified watercraft, initial encounter|Fall on board unspecified watercraft, initial encounter +C2899615|T037|PT|V93.39XD|ICD10CM|Fall on board unspecified watercraft, subsequent encounter|Fall on board unspecified watercraft, subsequent encounter +C2899615|T037|AB|V93.39XD|ICD10CM|Fall on board unspecified watercraft, subsequent encounter|Fall on board unspecified watercraft, subsequent encounter +C2899616|T037|PT|V93.39XS|ICD10CM|Fall on board unspecified watercraft, sequela|Fall on board unspecified watercraft, sequela +C2899616|T037|AB|V93.39XS|ICD10CM|Fall on board unspecified watercraft, sequela|Fall on board unspecified watercraft, sequela +C2899617|T037|ET|V93.4|ICD10CM|Hit by falling object on board watercraft|Hit by falling object on board watercraft +C2899618|T037|AB|V93.4|ICD10CM|Struck by falling object on board watercraft|Struck by falling object on board watercraft +C2899618|T037|HT|V93.4|ICD10CM|Struck by falling object on board watercraft|Struck by falling object on board watercraft +C2899619|T037|AB|V93.40|ICD10CM|Struck by falling object on merchant ship|Struck by falling object on merchant ship +C2899619|T037|HT|V93.40|ICD10CM|Struck by falling object on merchant ship|Struck by falling object on merchant ship +C2899620|T037|AB|V93.40XA|ICD10CM|Struck by falling object on merchant ship, initial encounter|Struck by falling object on merchant ship, initial encounter +C2899620|T037|PT|V93.40XA|ICD10CM|Struck by falling object on merchant ship, initial encounter|Struck by falling object on merchant ship, initial encounter +C2899621|T037|AB|V93.40XD|ICD10CM|Struck by falling object on merchant ship, subs encntr|Struck by falling object on merchant ship, subs encntr +C2899621|T037|PT|V93.40XD|ICD10CM|Struck by falling object on merchant ship, subsequent encounter|Struck by falling object on merchant ship, subsequent encounter +C2899622|T037|AB|V93.40XS|ICD10CM|Struck by falling object on merchant ship, sequela|Struck by falling object on merchant ship, sequela +C2899622|T037|PT|V93.40XS|ICD10CM|Struck by falling object on merchant ship, sequela|Struck by falling object on merchant ship, sequela +C2899623|T037|ET|V93.41|ICD10CM|Struck by falling object on Ferry-boat|Struck by falling object on Ferry-boat +C2899624|T037|ET|V93.41|ICD10CM|Struck by falling object on Liner|Struck by falling object on Liner +C2899625|T037|AB|V93.41|ICD10CM|Struck by falling object on passenger ship|Struck by falling object on passenger ship +C2899625|T037|HT|V93.41|ICD10CM|Struck by falling object on passenger ship|Struck by falling object on passenger ship +C2899626|T037|AB|V93.41XA|ICD10CM|Struck by falling object on passenger ship, init encntr|Struck by falling object on passenger ship, init encntr +C2899626|T037|PT|V93.41XA|ICD10CM|Struck by falling object on passenger ship, initial encounter|Struck by falling object on passenger ship, initial encounter +C2899627|T037|AB|V93.41XD|ICD10CM|Struck by falling object on passenger ship, subs encntr|Struck by falling object on passenger ship, subs encntr +C2899627|T037|PT|V93.41XD|ICD10CM|Struck by falling object on passenger ship, subsequent encounter|Struck by falling object on passenger ship, subsequent encounter +C2899628|T037|AB|V93.41XS|ICD10CM|Struck by falling object on passenger ship, sequela|Struck by falling object on passenger ship, sequela +C2899628|T037|PT|V93.41XS|ICD10CM|Struck by falling object on passenger ship, sequela|Struck by falling object on passenger ship, sequela +C2899629|T037|AB|V93.42|ICD10CM|Struck by falling object on fishing boat|Struck by falling object on fishing boat +C2899629|T037|HT|V93.42|ICD10CM|Struck by falling object on fishing boat|Struck by falling object on fishing boat +C2899630|T037|AB|V93.42XA|ICD10CM|Struck by falling object on fishing boat, initial encounter|Struck by falling object on fishing boat, initial encounter +C2899630|T037|PT|V93.42XA|ICD10CM|Struck by falling object on fishing boat, initial encounter|Struck by falling object on fishing boat, initial encounter +C2899631|T037|AB|V93.42XD|ICD10CM|Struck by falling object on fishing boat, subs encntr|Struck by falling object on fishing boat, subs encntr +C2899631|T037|PT|V93.42XD|ICD10CM|Struck by falling object on fishing boat, subsequent encounter|Struck by falling object on fishing boat, subsequent encounter +C2899632|T037|AB|V93.42XS|ICD10CM|Struck by falling object on fishing boat, sequela|Struck by falling object on fishing boat, sequela +C2899632|T037|PT|V93.42XS|ICD10CM|Struck by falling object on fishing boat, sequela|Struck by falling object on fishing boat, sequela +C2899633|T037|ET|V93.43|ICD10CM|Struck by falling object on Hovercraft|Struck by falling object on Hovercraft +C2899634|T037|AB|V93.43|ICD10CM|Struck by falling object on other powered watercraft|Struck by falling object on other powered watercraft +C2899634|T037|HT|V93.43|ICD10CM|Struck by falling object on other powered watercraft|Struck by falling object on other powered watercraft +C2899635|T037|AB|V93.43XA|ICD10CM|Struck by falling object on oth powered watercraft, init|Struck by falling object on oth powered watercraft, init +C2899635|T037|PT|V93.43XA|ICD10CM|Struck by falling object on other powered watercraft, initial encounter|Struck by falling object on other powered watercraft, initial encounter +C2899636|T037|AB|V93.43XD|ICD10CM|Struck by falling object on oth powered watercraft, subs|Struck by falling object on oth powered watercraft, subs +C2899636|T037|PT|V93.43XD|ICD10CM|Struck by falling object on other powered watercraft, subsequent encounter|Struck by falling object on other powered watercraft, subsequent encounter +C2899637|T037|AB|V93.43XS|ICD10CM|Struck by falling object on oth powered watercraft, sequela|Struck by falling object on oth powered watercraft, sequela +C2899637|T037|PT|V93.43XS|ICD10CM|Struck by falling object on other powered watercraft, sequela|Struck by falling object on other powered watercraft, sequela +C2899638|T037|AB|V93.44|ICD10CM|Struck by falling object on sailboat|Struck by falling object on sailboat +C2899638|T037|HT|V93.44|ICD10CM|Struck by falling object on sailboat|Struck by falling object on sailboat +C2899639|T037|AB|V93.44XA|ICD10CM|Struck by falling object on sailboat, initial encounter|Struck by falling object on sailboat, initial encounter +C2899639|T037|PT|V93.44XA|ICD10CM|Struck by falling object on sailboat, initial encounter|Struck by falling object on sailboat, initial encounter +C2899640|T037|AB|V93.44XD|ICD10CM|Struck by falling object on sailboat, subsequent encounter|Struck by falling object on sailboat, subsequent encounter +C2899640|T037|PT|V93.44XD|ICD10CM|Struck by falling object on sailboat, subsequent encounter|Struck by falling object on sailboat, subsequent encounter +C2899641|T037|AB|V93.44XS|ICD10CM|Struck by falling object on sailboat, sequela|Struck by falling object on sailboat, sequela +C2899641|T037|PT|V93.44XS|ICD10CM|Struck by falling object on sailboat, sequela|Struck by falling object on sailboat, sequela +C2899642|T037|AB|V93.48|ICD10CM|Struck by falling object on other unpowered watercraft|Struck by falling object on other unpowered watercraft +C2899642|T037|HT|V93.48|ICD10CM|Struck by falling object on other unpowered watercraft|Struck by falling object on other unpowered watercraft +C2899643|T037|PT|V93.48XA|ICD10CM|Struck by falling object on other unpowered watercraft, initial encounter|Struck by falling object on other unpowered watercraft, initial encounter +C2899643|T037|AB|V93.48XA|ICD10CM|Struck by falling object on unpowr wtrcrft, init encntr|Struck by falling object on unpowr wtrcrft, init encntr +C2899644|T037|PT|V93.48XD|ICD10CM|Struck by falling object on other unpowered watercraft, subsequent encounter|Struck by falling object on other unpowered watercraft, subsequent encounter +C2899644|T037|AB|V93.48XD|ICD10CM|Struck by falling object on unpowr wtrcrft, subs encntr|Struck by falling object on unpowr wtrcrft, subs encntr +C2899645|T037|PT|V93.48XS|ICD10CM|Struck by falling object on other unpowered watercraft, sequela|Struck by falling object on other unpowered watercraft, sequela +C2899645|T037|AB|V93.48XS|ICD10CM|Struck by falling object on unpowr wtrcrft, sequela|Struck by falling object on unpowr wtrcrft, sequela +C2899646|T037|AB|V93.49|ICD10CM|Struck by falling object on unspecified watercraft|Struck by falling object on unspecified watercraft +C2899646|T037|HT|V93.49|ICD10CM|Struck by falling object on unspecified watercraft|Struck by falling object on unspecified watercraft +C2899647|T037|AB|V93.49XA|ICD10CM|Struck by falling object on unsp watercraft, init encntr|Struck by falling object on unsp watercraft, init encntr +C2899647|T037|PT|V93.49XA|ICD10CM|Struck by falling object on unspecified watercraft, initial encounter|Struck by falling object on unspecified watercraft, initial encounter +C2899648|T037|AB|V93.49XD|ICD10CM|Struck by falling object on unsp watercraft, subs encntr|Struck by falling object on unsp watercraft, subs encntr +C2899648|T037|PT|V93.49XD|ICD10CM|Struck by falling object on unspecified watercraft, subsequent encounter|Struck by falling object on unspecified watercraft, subsequent encounter +C2899649|T037|AB|V93.49XS|ICD10CM|Struck by falling object on unspecified watercraft, sequela|Struck by falling object on unspecified watercraft, sequela +C2899649|T037|PT|V93.49XS|ICD10CM|Struck by falling object on unspecified watercraft, sequela|Struck by falling object on unspecified watercraft, sequela +C2899650|T037|ET|V93.5|ICD10CM|Boiler explosion on steamship|Boiler explosion on steamship +C2899677|T037|AB|V93.5|ICD10CM|Explosion on board watercraft|Explosion on board watercraft +C2899677|T037|HT|V93.5|ICD10CM|Explosion on board watercraft|Explosion on board watercraft +C2899651|T037|AB|V93.50|ICD10CM|Explosion on board merchant ship|Explosion on board merchant ship +C2899651|T037|HT|V93.50|ICD10CM|Explosion on board merchant ship|Explosion on board merchant ship +C2899652|T037|PT|V93.50XA|ICD10CM|Explosion on board merchant ship, initial encounter|Explosion on board merchant ship, initial encounter +C2899652|T037|AB|V93.50XA|ICD10CM|Explosion on board merchant ship, initial encounter|Explosion on board merchant ship, initial encounter +C2899653|T037|PT|V93.50XD|ICD10CM|Explosion on board merchant ship, subsequent encounter|Explosion on board merchant ship, subsequent encounter +C2899653|T037|AB|V93.50XD|ICD10CM|Explosion on board merchant ship, subsequent encounter|Explosion on board merchant ship, subsequent encounter +C2899654|T037|PT|V93.50XS|ICD10CM|Explosion on board merchant ship, sequela|Explosion on board merchant ship, sequela +C2899654|T037|AB|V93.50XS|ICD10CM|Explosion on board merchant ship, sequela|Explosion on board merchant ship, sequela +C2899655|T037|ET|V93.51|ICD10CM|Explosion on board Ferry-boat|Explosion on board Ferry-boat +C2899656|T037|ET|V93.51|ICD10CM|Explosion on board Liner|Explosion on board Liner +C2899657|T037|AB|V93.51|ICD10CM|Explosion on board passenger ship|Explosion on board passenger ship +C2899657|T037|HT|V93.51|ICD10CM|Explosion on board passenger ship|Explosion on board passenger ship +C2899658|T037|PT|V93.51XA|ICD10CM|Explosion on board passenger ship, initial encounter|Explosion on board passenger ship, initial encounter +C2899658|T037|AB|V93.51XA|ICD10CM|Explosion on board passenger ship, initial encounter|Explosion on board passenger ship, initial encounter +C2899659|T037|PT|V93.51XD|ICD10CM|Explosion on board passenger ship, subsequent encounter|Explosion on board passenger ship, subsequent encounter +C2899659|T037|AB|V93.51XD|ICD10CM|Explosion on board passenger ship, subsequent encounter|Explosion on board passenger ship, subsequent encounter +C2899660|T037|PT|V93.51XS|ICD10CM|Explosion on board passenger ship, sequela|Explosion on board passenger ship, sequela +C2899660|T037|AB|V93.51XS|ICD10CM|Explosion on board passenger ship, sequela|Explosion on board passenger ship, sequela +C2899661|T037|AB|V93.52|ICD10CM|Explosion on board fishing boat|Explosion on board fishing boat +C2899661|T037|HT|V93.52|ICD10CM|Explosion on board fishing boat|Explosion on board fishing boat +C2899662|T037|PT|V93.52XA|ICD10CM|Explosion on board fishing boat, initial encounter|Explosion on board fishing boat, initial encounter +C2899662|T037|AB|V93.52XA|ICD10CM|Explosion on board fishing boat, initial encounter|Explosion on board fishing boat, initial encounter +C2899663|T037|PT|V93.52XD|ICD10CM|Explosion on board fishing boat, subsequent encounter|Explosion on board fishing boat, subsequent encounter +C2899663|T037|AB|V93.52XD|ICD10CM|Explosion on board fishing boat, subsequent encounter|Explosion on board fishing boat, subsequent encounter +C2899664|T037|PT|V93.52XS|ICD10CM|Explosion on board fishing boat, sequela|Explosion on board fishing boat, sequela +C2899664|T037|AB|V93.52XS|ICD10CM|Explosion on board fishing boat, sequela|Explosion on board fishing boat, sequela +C2899665|T037|ET|V93.53|ICD10CM|Explosion on board Hovercraft|Explosion on board Hovercraft +C2899666|T037|ET|V93.53|ICD10CM|Explosion on board Jet ski|Explosion on board Jet ski +C2899667|T037|AB|V93.53|ICD10CM|Explosion on board other powered watercraft|Explosion on board other powered watercraft +C2899667|T037|HT|V93.53|ICD10CM|Explosion on board other powered watercraft|Explosion on board other powered watercraft +C2899668|T037|AB|V93.53XA|ICD10CM|Explosion on board other powered watercraft, init encntr|Explosion on board other powered watercraft, init encntr +C2899668|T037|PT|V93.53XA|ICD10CM|Explosion on board other powered watercraft, initial encounter|Explosion on board other powered watercraft, initial encounter +C2899669|T037|AB|V93.53XD|ICD10CM|Explosion on board other powered watercraft, subs encntr|Explosion on board other powered watercraft, subs encntr +C2899669|T037|PT|V93.53XD|ICD10CM|Explosion on board other powered watercraft, subsequent encounter|Explosion on board other powered watercraft, subsequent encounter +C2899670|T037|PT|V93.53XS|ICD10CM|Explosion on board other powered watercraft, sequela|Explosion on board other powered watercraft, sequela +C2899670|T037|AB|V93.53XS|ICD10CM|Explosion on board other powered watercraft, sequela|Explosion on board other powered watercraft, sequela +C2899671|T037|AB|V93.54|ICD10CM|Explosion on board sailboat|Explosion on board sailboat +C2899671|T037|HT|V93.54|ICD10CM|Explosion on board sailboat|Explosion on board sailboat +C2899672|T037|PT|V93.54XA|ICD10CM|Explosion on board sailboat, initial encounter|Explosion on board sailboat, initial encounter +C2899672|T037|AB|V93.54XA|ICD10CM|Explosion on board sailboat, initial encounter|Explosion on board sailboat, initial encounter +C2899673|T037|PT|V93.54XD|ICD10CM|Explosion on board sailboat, subsequent encounter|Explosion on board sailboat, subsequent encounter +C2899673|T037|AB|V93.54XD|ICD10CM|Explosion on board sailboat, subsequent encounter|Explosion on board sailboat, subsequent encounter +C2899674|T037|PT|V93.54XS|ICD10CM|Explosion on board sailboat, sequela|Explosion on board sailboat, sequela +C2899674|T037|AB|V93.54XS|ICD10CM|Explosion on board sailboat, sequela|Explosion on board sailboat, sequela +C2899675|T037|ET|V93.59|ICD10CM|Explosion on board boat NOS|Explosion on board boat NOS +C2899676|T037|ET|V93.59|ICD10CM|Explosion on board ship NOS|Explosion on board ship NOS +C2899678|T037|AB|V93.59|ICD10CM|Explosion on board unspecified watercraft|Explosion on board unspecified watercraft +C2899678|T037|HT|V93.59|ICD10CM|Explosion on board unspecified watercraft|Explosion on board unspecified watercraft +C2899677|T037|ET|V93.59|ICD10CM|Explosion on board watercraft NOS|Explosion on board watercraft NOS +C2899679|T037|AB|V93.59XA|ICD10CM|Explosion on board unspecified watercraft, initial encounter|Explosion on board unspecified watercraft, initial encounter +C2899679|T037|PT|V93.59XA|ICD10CM|Explosion on board unspecified watercraft, initial encounter|Explosion on board unspecified watercraft, initial encounter +C2899680|T037|AB|V93.59XD|ICD10CM|Explosion on board unspecified watercraft, subs encntr|Explosion on board unspecified watercraft, subs encntr +C2899680|T037|PT|V93.59XD|ICD10CM|Explosion on board unspecified watercraft, subsequent encounter|Explosion on board unspecified watercraft, subsequent encounter +C2899681|T037|PT|V93.59XS|ICD10CM|Explosion on board unspecified watercraft, sequela|Explosion on board unspecified watercraft, sequela +C2899681|T037|AB|V93.59XS|ICD10CM|Explosion on board unspecified watercraft, sequela|Explosion on board unspecified watercraft, sequela +C2899707|T037|AB|V93.6|ICD10CM|Machinery accident on board watercraft|Machinery accident on board watercraft +C2899707|T037|HT|V93.6|ICD10CM|Machinery accident on board watercraft|Machinery accident on board watercraft +C2899682|T037|AB|V93.60|ICD10CM|Machinery accident on board merchant ship|Machinery accident on board merchant ship +C2899682|T037|HT|V93.60|ICD10CM|Machinery accident on board merchant ship|Machinery accident on board merchant ship +C2899683|T037|AB|V93.60XA|ICD10CM|Machinery accident on board merchant ship, initial encounter|Machinery accident on board merchant ship, initial encounter +C2899683|T037|PT|V93.60XA|ICD10CM|Machinery accident on board merchant ship, initial encounter|Machinery accident on board merchant ship, initial encounter +C2899684|T037|AB|V93.60XD|ICD10CM|Machinery accident on board merchant ship, subs encntr|Machinery accident on board merchant ship, subs encntr +C2899684|T037|PT|V93.60XD|ICD10CM|Machinery accident on board merchant ship, subsequent encounter|Machinery accident on board merchant ship, subsequent encounter +C2899685|T037|AB|V93.60XS|ICD10CM|Machinery accident on board merchant ship, sequela|Machinery accident on board merchant ship, sequela +C2899685|T037|PT|V93.60XS|ICD10CM|Machinery accident on board merchant ship, sequela|Machinery accident on board merchant ship, sequela +C2899686|T037|ET|V93.61|ICD10CM|Machinery accident on board Ferry-boat|Machinery accident on board Ferry-boat +C2899687|T037|ET|V93.61|ICD10CM|Machinery accident on board Liner|Machinery accident on board Liner +C2899688|T037|AB|V93.61|ICD10CM|Machinery accident on board passenger ship|Machinery accident on board passenger ship +C2899688|T037|HT|V93.61|ICD10CM|Machinery accident on board passenger ship|Machinery accident on board passenger ship +C2899689|T037|AB|V93.61XA|ICD10CM|Machinery accident on board passenger ship, init encntr|Machinery accident on board passenger ship, init encntr +C2899689|T037|PT|V93.61XA|ICD10CM|Machinery accident on board passenger ship, initial encounter|Machinery accident on board passenger ship, initial encounter +C2899690|T037|AB|V93.61XD|ICD10CM|Machinery accident on board passenger ship, subs encntr|Machinery accident on board passenger ship, subs encntr +C2899690|T037|PT|V93.61XD|ICD10CM|Machinery accident on board passenger ship, subsequent encounter|Machinery accident on board passenger ship, subsequent encounter +C2899691|T037|AB|V93.61XS|ICD10CM|Machinery accident on board passenger ship, sequela|Machinery accident on board passenger ship, sequela +C2899691|T037|PT|V93.61XS|ICD10CM|Machinery accident on board passenger ship, sequela|Machinery accident on board passenger ship, sequela +C2899692|T037|AB|V93.62|ICD10CM|Machinery accident on board fishing boat|Machinery accident on board fishing boat +C2899692|T037|HT|V93.62|ICD10CM|Machinery accident on board fishing boat|Machinery accident on board fishing boat +C2899693|T037|AB|V93.62XA|ICD10CM|Machinery accident on board fishing boat, initial encounter|Machinery accident on board fishing boat, initial encounter +C2899693|T037|PT|V93.62XA|ICD10CM|Machinery accident on board fishing boat, initial encounter|Machinery accident on board fishing boat, initial encounter +C2899694|T037|AB|V93.62XD|ICD10CM|Machinery accident on board fishing boat, subs encntr|Machinery accident on board fishing boat, subs encntr +C2899694|T037|PT|V93.62XD|ICD10CM|Machinery accident on board fishing boat, subsequent encounter|Machinery accident on board fishing boat, subsequent encounter +C2899695|T037|AB|V93.62XS|ICD10CM|Machinery accident on board fishing boat, sequela|Machinery accident on board fishing boat, sequela +C2899695|T037|PT|V93.62XS|ICD10CM|Machinery accident on board fishing boat, sequela|Machinery accident on board fishing boat, sequela +C2899696|T037|ET|V93.63|ICD10CM|Machinery accident on board Hovercraft|Machinery accident on board Hovercraft +C2899697|T037|AB|V93.63|ICD10CM|Machinery accident on board other powered watercraft|Machinery accident on board other powered watercraft +C2899697|T037|HT|V93.63|ICD10CM|Machinery accident on board other powered watercraft|Machinery accident on board other powered watercraft +C2899698|T037|AB|V93.63XA|ICD10CM|Machinery accident on board oth powered watercraft, init|Machinery accident on board oth powered watercraft, init +C2899698|T037|PT|V93.63XA|ICD10CM|Machinery accident on board other powered watercraft, initial encounter|Machinery accident on board other powered watercraft, initial encounter +C2899699|T037|AB|V93.63XD|ICD10CM|Machinery accident on board oth powered watercraft, subs|Machinery accident on board oth powered watercraft, subs +C2899699|T037|PT|V93.63XD|ICD10CM|Machinery accident on board other powered watercraft, subsequent encounter|Machinery accident on board other powered watercraft, subsequent encounter +C2899700|T037|AB|V93.63XS|ICD10CM|Machinery accident on board oth powered watercraft, sequela|Machinery accident on board oth powered watercraft, sequela +C2899700|T037|PT|V93.63XS|ICD10CM|Machinery accident on board other powered watercraft, sequela|Machinery accident on board other powered watercraft, sequela +C2899701|T037|AB|V93.64|ICD10CM|Machinery accident on board sailboat|Machinery accident on board sailboat +C2899701|T037|HT|V93.64|ICD10CM|Machinery accident on board sailboat|Machinery accident on board sailboat +C2899702|T037|AB|V93.64XA|ICD10CM|Machinery accident on board sailboat, initial encounter|Machinery accident on board sailboat, initial encounter +C2899702|T037|PT|V93.64XA|ICD10CM|Machinery accident on board sailboat, initial encounter|Machinery accident on board sailboat, initial encounter +C2899703|T037|AB|V93.64XD|ICD10CM|Machinery accident on board sailboat, subsequent encounter|Machinery accident on board sailboat, subsequent encounter +C2899703|T037|PT|V93.64XD|ICD10CM|Machinery accident on board sailboat, subsequent encounter|Machinery accident on board sailboat, subsequent encounter +C2899704|T037|AB|V93.64XS|ICD10CM|Machinery accident on board sailboat, sequela|Machinery accident on board sailboat, sequela +C2899704|T037|PT|V93.64XS|ICD10CM|Machinery accident on board sailboat, sequela|Machinery accident on board sailboat, sequela +C2899705|T037|ET|V93.69|ICD10CM|Machinery accident on board boat NOS|Machinery accident on board boat NOS +C2899706|T037|ET|V93.69|ICD10CM|Machinery accident on board ship NOS|Machinery accident on board ship NOS +C2899708|T037|AB|V93.69|ICD10CM|Machinery accident on board unspecified watercraft|Machinery accident on board unspecified watercraft +C2899708|T037|HT|V93.69|ICD10CM|Machinery accident on board unspecified watercraft|Machinery accident on board unspecified watercraft +C2899707|T037|ET|V93.69|ICD10CM|Machinery accident on board watercraft NOS|Machinery accident on board watercraft NOS +C2899709|T037|AB|V93.69XA|ICD10CM|Machinery accident on board unsp watercraft, init encntr|Machinery accident on board unsp watercraft, init encntr +C2899709|T037|PT|V93.69XA|ICD10CM|Machinery accident on board unspecified watercraft, initial encounter|Machinery accident on board unspecified watercraft, initial encounter +C2899710|T037|AB|V93.69XD|ICD10CM|Machinery accident on board unsp watercraft, subs encntr|Machinery accident on board unsp watercraft, subs encntr +C2899710|T037|PT|V93.69XD|ICD10CM|Machinery accident on board unspecified watercraft, subsequent encounter|Machinery accident on board unspecified watercraft, subsequent encounter +C2899711|T037|AB|V93.69XS|ICD10CM|Machinery accident on board unspecified watercraft, sequela|Machinery accident on board unspecified watercraft, sequela +C2899711|T037|PT|V93.69XS|ICD10CM|Machinery accident on board unspecified watercraft, sequela|Machinery accident on board unspecified watercraft, sequela +C0416112|T037|ET|V93.8|ICD10CM|Accidental poisoning by gases or fumes on watercraft|Accidental poisoning by gases or fumes on watercraft +C2899757|T037|AB|V93.8|ICD10CM|Other injury due to other accident on board watercraft|Other injury due to other accident on board watercraft +C2899757|T037|HT|V93.8|ICD10CM|Other injury due to other accident on board watercraft|Other injury due to other accident on board watercraft +C2899712|T037|AB|V93.80|ICD10CM|Other injury due to other accident on board merchant ship|Other injury due to other accident on board merchant ship +C2899712|T037|HT|V93.80|ICD10CM|Other injury due to other accident on board merchant ship|Other injury due to other accident on board merchant ship +C2899713|T037|AB|V93.80XA|ICD10CM|Oth injury due to oth accident on board merchant ship, init|Oth injury due to oth accident on board merchant ship, init +C2899713|T037|PT|V93.80XA|ICD10CM|Other injury due to other accident on board merchant ship, initial encounter|Other injury due to other accident on board merchant ship, initial encounter +C2899714|T037|AB|V93.80XD|ICD10CM|Oth injury due to oth accident on board merchant ship, subs|Oth injury due to oth accident on board merchant ship, subs +C2899714|T037|PT|V93.80XD|ICD10CM|Other injury due to other accident on board merchant ship, subsequent encounter|Other injury due to other accident on board merchant ship, subsequent encounter +C2899715|T037|AB|V93.80XS|ICD10CM|Oth injury due to oth accident on board merch ship, sequela|Oth injury due to oth accident on board merch ship, sequela +C2899715|T037|PT|V93.80XS|ICD10CM|Other injury due to other accident on board merchant ship, sequela|Other injury due to other accident on board merchant ship, sequela +C2899716|T037|ET|V93.81|ICD10CM|Other injury due to other accident on board Ferry-boat|Other injury due to other accident on board Ferry-boat +C2899717|T037|ET|V93.81|ICD10CM|Other injury due to other accident on board Liner|Other injury due to other accident on board Liner +C2899718|T037|AB|V93.81|ICD10CM|Other injury due to other accident on board passenger ship|Other injury due to other accident on board passenger ship +C2899718|T037|HT|V93.81|ICD10CM|Other injury due to other accident on board passenger ship|Other injury due to other accident on board passenger ship +C2899719|T037|AB|V93.81XA|ICD10CM|Oth injury due to oth accident on board passenger ship, init|Oth injury due to oth accident on board passenger ship, init +C2899719|T037|PT|V93.81XA|ICD10CM|Other injury due to other accident on board passenger ship, initial encounter|Other injury due to other accident on board passenger ship, initial encounter +C2899720|T037|AB|V93.81XD|ICD10CM|Oth injury due to oth accident on board passenger ship, subs|Oth injury due to oth accident on board passenger ship, subs +C2899720|T037|PT|V93.81XD|ICD10CM|Other injury due to other accident on board passenger ship, subsequent encounter|Other injury due to other accident on board passenger ship, subsequent encounter +C2899721|T037|AB|V93.81XS|ICD10CM|Oth injury due to oth accident on board pasngr ship, sequela|Oth injury due to oth accident on board pasngr ship, sequela +C2899721|T037|PT|V93.81XS|ICD10CM|Other injury due to other accident on board passenger ship, sequela|Other injury due to other accident on board passenger ship, sequela +C2899722|T037|AB|V93.82|ICD10CM|Other injury due to other accident on board fishing boat|Other injury due to other accident on board fishing boat +C2899722|T037|HT|V93.82|ICD10CM|Other injury due to other accident on board fishing boat|Other injury due to other accident on board fishing boat +C2899723|T037|AB|V93.82XA|ICD10CM|Oth injury due to oth accident on board fishing boat, init|Oth injury due to oth accident on board fishing boat, init +C2899723|T037|PT|V93.82XA|ICD10CM|Other injury due to other accident on board fishing boat, initial encounter|Other injury due to other accident on board fishing boat, initial encounter +C2899724|T037|AB|V93.82XD|ICD10CM|Oth injury due to oth accident on board fishing boat, subs|Oth injury due to oth accident on board fishing boat, subs +C2899724|T037|PT|V93.82XD|ICD10CM|Other injury due to other accident on board fishing boat, subsequent encounter|Other injury due to other accident on board fishing boat, subsequent encounter +C2899725|T037|AB|V93.82XS|ICD10CM|Oth injury due to oth acc on board fishing boat, sequela|Oth injury due to oth acc on board fishing boat, sequela +C2899725|T037|PT|V93.82XS|ICD10CM|Other injury due to other accident on board fishing boat, sequela|Other injury due to other accident on board fishing boat, sequela +C2899728|T037|AB|V93.83|ICD10CM|Oth injury due to oth accident on board oth powered wtrcrft|Oth injury due to oth accident on board oth powered wtrcrft +C2899726|T037|ET|V93.83|ICD10CM|Other injury due to other accident on board Hovercraft|Other injury due to other accident on board Hovercraft +C2899727|T037|ET|V93.83|ICD10CM|Other injury due to other accident on board Jet ski|Other injury due to other accident on board Jet ski +C2899728|T037|HT|V93.83|ICD10CM|Other injury due to other accident on board other powered watercraft|Other injury due to other accident on board other powered watercraft +C2899729|T037|AB|V93.83XA|ICD10CM|Oth injury due to oth acc on board oth powered wtrcrft, init|Oth injury due to oth acc on board oth powered wtrcrft, init +C2899729|T037|PT|V93.83XA|ICD10CM|Other injury due to other accident on board other powered watercraft, initial encounter|Other injury due to other accident on board other powered watercraft, initial encounter +C2899730|T037|AB|V93.83XD|ICD10CM|Oth injury due to oth acc on board oth powered wtrcrft, subs|Oth injury due to oth acc on board oth powered wtrcrft, subs +C2899730|T037|PT|V93.83XD|ICD10CM|Other injury due to other accident on board other powered watercraft, subsequent encounter|Other injury due to other accident on board other powered watercraft, subsequent encounter +C2899731|T037|AB|V93.83XS|ICD10CM|Oth injury due to oth acc on board oth power wtrcrft, sqla|Oth injury due to oth acc on board oth power wtrcrft, sqla +C2899731|T037|PT|V93.83XS|ICD10CM|Other injury due to other accident on board other powered watercraft, sequela|Other injury due to other accident on board other powered watercraft, sequela +C2899732|T037|AB|V93.84|ICD10CM|Other injury due to other accident on board sailboat|Other injury due to other accident on board sailboat +C2899732|T037|HT|V93.84|ICD10CM|Other injury due to other accident on board sailboat|Other injury due to other accident on board sailboat +C2899733|T037|AB|V93.84XA|ICD10CM|Oth injury due to oth accident on board sailboat, init|Oth injury due to oth accident on board sailboat, init +C2899733|T037|PT|V93.84XA|ICD10CM|Other injury due to other accident on board sailboat, initial encounter|Other injury due to other accident on board sailboat, initial encounter +C2899734|T037|AB|V93.84XD|ICD10CM|Oth injury due to oth accident on board sailboat, subs|Oth injury due to oth accident on board sailboat, subs +C2899734|T037|PT|V93.84XD|ICD10CM|Other injury due to other accident on board sailboat, subsequent encounter|Other injury due to other accident on board sailboat, subsequent encounter +C2899735|T037|AB|V93.84XS|ICD10CM|Oth injury due to other accident on board sailboat, sequela|Oth injury due to other accident on board sailboat, sequela +C2899735|T037|PT|V93.84XS|ICD10CM|Other injury due to other accident on board sailboat, sequela|Other injury due to other accident on board sailboat, sequela +C2899736|T037|AB|V93.85|ICD10CM|Other injury due to other accident on board canoe or kayak|Other injury due to other accident on board canoe or kayak +C2899736|T037|HT|V93.85|ICD10CM|Other injury due to other accident on board canoe or kayak|Other injury due to other accident on board canoe or kayak +C2899737|T037|AB|V93.85XA|ICD10CM|Oth injury due to oth accident on board canoe or kayak, init|Oth injury due to oth accident on board canoe or kayak, init +C2899737|T037|PT|V93.85XA|ICD10CM|Other injury due to other accident on board canoe or kayak, initial encounter|Other injury due to other accident on board canoe or kayak, initial encounter +C2899738|T037|AB|V93.85XD|ICD10CM|Oth injury due to oth accident on board canoe or kayak, subs|Oth injury due to oth accident on board canoe or kayak, subs +C2899738|T037|PT|V93.85XD|ICD10CM|Other injury due to other accident on board canoe or kayak, subsequent encounter|Other injury due to other accident on board canoe or kayak, subsequent encounter +C2899739|T037|AB|V93.85XS|ICD10CM|Oth injury due to oth accident on board canoe/kayk, sequela|Oth injury due to oth accident on board canoe/kayk, sequela +C2899739|T037|PT|V93.85XS|ICD10CM|Other injury due to other accident on board canoe or kayak, sequela|Other injury due to other accident on board canoe or kayak, sequela +C2899740|T037|AB|V93.86|ICD10CM|Oth injury due to oth accident on board inflatbl crft|Oth injury due to oth accident on board inflatbl crft +C2899740|T037|HT|V93.86|ICD10CM|Other injury due to other accident on board (nonpowered) inflatable craft|Other injury due to other accident on board (nonpowered) inflatable craft +C2899741|T037|AB|V93.86XA|ICD10CM|Oth injury due to oth accident on board inflatbl crft, init|Oth injury due to oth accident on board inflatbl crft, init +C2899741|T037|PT|V93.86XA|ICD10CM|Other injury due to other accident on board (nonpowered) inflatable craft, initial encounter|Other injury due to other accident on board (nonpowered) inflatable craft, initial encounter +C2899742|T037|AB|V93.86XD|ICD10CM|Oth injury due to oth accident on board inflatbl crft, subs|Oth injury due to oth accident on board inflatbl crft, subs +C2899742|T037|PT|V93.86XD|ICD10CM|Other injury due to other accident on board (nonpowered) inflatable craft, subsequent encounter|Other injury due to other accident on board (nonpowered) inflatable craft, subsequent encounter +C2899743|T037|AB|V93.86XS|ICD10CM|Oth injury due to oth acc on board inflatbl crft, sequela|Oth injury due to oth acc on board inflatbl crft, sequela +C2899743|T037|PT|V93.86XS|ICD10CM|Other injury due to other accident on board (nonpowered) inflatable craft, sequela|Other injury due to other accident on board (nonpowered) inflatable craft, sequela +C2899744|T037|ET|V93.87|ICD10CM|Hit or struck by object while waterskiing|Hit or struck by object while waterskiing +C2899745|T037|AB|V93.87|ICD10CM|Other injury due to other accident on board water-skis|Other injury due to other accident on board water-skis +C2899745|T037|HT|V93.87|ICD10CM|Other injury due to other accident on board water-skis|Other injury due to other accident on board water-skis +C2899746|T037|AB|V93.87XA|ICD10CM|Oth injury due to oth accident on board water-skis, init|Oth injury due to oth accident on board water-skis, init +C2899746|T037|PT|V93.87XA|ICD10CM|Other injury due to other accident on board water-skis, initial encounter|Other injury due to other accident on board water-skis, initial encounter +C2899747|T037|AB|V93.87XD|ICD10CM|Oth injury due to oth accident on board water-skis, subs|Oth injury due to oth accident on board water-skis, subs +C2899747|T037|PT|V93.87XD|ICD10CM|Other injury due to other accident on board water-skis, subsequent encounter|Other injury due to other accident on board water-skis, subsequent encounter +C2899748|T037|AB|V93.87XS|ICD10CM|Oth injury due to oth accident on board water-skis, sequela|Oth injury due to oth accident on board water-skis, sequela +C2899748|T037|PT|V93.87XS|ICD10CM|Other injury due to other accident on board water-skis, sequela|Other injury due to other accident on board water-skis, sequela +C2899749|T037|ET|V93.88|ICD10CM|Hit or struck by object while on board windsurfer|Hit or struck by object while on board windsurfer +C2899750|T037|ET|V93.88|ICD10CM|Hit or struck by object while surfing|Hit or struck by object while surfing +C2899751|T037|AB|V93.88|ICD10CM|Oth injury due to oth accident on board unpowr wtrcrft|Oth injury due to oth accident on board unpowr wtrcrft +C2899751|T037|HT|V93.88|ICD10CM|Other injury due to other accident on board other unpowered watercraft|Other injury due to other accident on board other unpowered watercraft +C2899752|T037|AB|V93.88XA|ICD10CM|Oth injury due to oth accident on board unpowr wtrcrft, init|Oth injury due to oth accident on board unpowr wtrcrft, init +C2899752|T037|PT|V93.88XA|ICD10CM|Other injury due to other accident on board other unpowered watercraft, initial encounter|Other injury due to other accident on board other unpowered watercraft, initial encounter +C2899753|T037|AB|V93.88XD|ICD10CM|Oth injury due to oth accident on board unpowr wtrcrft, subs|Oth injury due to oth accident on board unpowr wtrcrft, subs +C2899753|T037|PT|V93.88XD|ICD10CM|Other injury due to other accident on board other unpowered watercraft, subsequent encounter|Other injury due to other accident on board other unpowered watercraft, subsequent encounter +C2899754|T037|AB|V93.88XS|ICD10CM|Oth injury due to oth acc on board unpowr wtrcrft, sequela|Oth injury due to oth acc on board unpowr wtrcrft, sequela +C2899754|T037|PT|V93.88XS|ICD10CM|Other injury due to other accident on board other unpowered watercraft, sequela|Other injury due to other accident on board other unpowered watercraft, sequela +C2899755|T037|ET|V93.89|ICD10CM|Other injury due to other accident on board boat NOS|Other injury due to other accident on board boat NOS +C2899756|T037|ET|V93.89|ICD10CM|Other injury due to other accident on board ship NOS|Other injury due to other accident on board ship NOS +C2899758|T037|AB|V93.89|ICD10CM|Other injury due to other accident on board unsp watercraft|Other injury due to other accident on board unsp watercraft +C2899758|T037|HT|V93.89|ICD10CM|Other injury due to other accident on board unspecified watercraft|Other injury due to other accident on board unspecified watercraft +C2899757|T037|ET|V93.89|ICD10CM|Other injury due to other accident on board watercraft NOS|Other injury due to other accident on board watercraft NOS +C2899759|T037|AB|V93.89XA|ICD10CM|Oth injury due to oth accident on board unsp wtrcrft, init|Oth injury due to oth accident on board unsp wtrcrft, init +C2899759|T037|PT|V93.89XA|ICD10CM|Other injury due to other accident on board unspecified watercraft, initial encounter|Other injury due to other accident on board unspecified watercraft, initial encounter +C2899760|T037|AB|V93.89XD|ICD10CM|Oth injury due to oth accident on board unsp wtrcrft, subs|Oth injury due to oth accident on board unsp wtrcrft, subs +C2899760|T037|PT|V93.89XD|ICD10CM|Other injury due to other accident on board unspecified watercraft, subsequent encounter|Other injury due to other accident on board unspecified watercraft, subsequent encounter +C2899761|T037|AB|V93.89XS|ICD10CM|Oth injury due to oth acc on board unsp wtrcrft, sequela|Oth injury due to oth acc on board unsp wtrcrft, sequela +C2899761|T037|PT|V93.89XS|ICD10CM|Other injury due to other accident on board unspecified watercraft, sequela|Other injury due to other accident on board unspecified watercraft, sequela +C0261314|T037|AB|V94|ICD10CM|Other and unspecified water transport accidents|Other and unspecified water transport accidents +C0261314|T037|HT|V94|ICD10CM|Other and unspecified water transport accidents|Other and unspecified water transport accidents +C0261314|T037|HT|V94|ICD10|Other and unspecified water transport accidents|Other and unspecified water transport accidents +C2899762|T037|AB|V94.0|ICD10CM|Hitting obj/botm of body of water due to fall from wtrcrft|Hitting obj/botm of body of water due to fall from wtrcrft +C2899762|T037|HT|V94.0|ICD10CM|Hitting object or bottom of body of water due to fall from watercraft|Hitting object or bottom of body of water due to fall from watercraft +C0477273|T037|PT|V94.0|ICD10|Other and unspecified water transport accidents, merchant ship|Other and unspecified water transport accidents, merchant ship +C2899763|T037|AB|V94.0XXA|ICD10CM|Hitting obj/botm of body of wtr d/t fall from wtrcrft, init|Hitting obj/botm of body of wtr d/t fall from wtrcrft, init +C2899763|T037|PT|V94.0XXA|ICD10CM|Hitting object or bottom of body of water due to fall from watercraft, initial encounter|Hitting object or bottom of body of water due to fall from watercraft, initial encounter +C2899764|T037|AB|V94.0XXD|ICD10CM|Hitting obj/botm of body of wtr d/t fall from wtrcrft, subs|Hitting obj/botm of body of wtr d/t fall from wtrcrft, subs +C2899764|T037|PT|V94.0XXD|ICD10CM|Hitting object or bottom of body of water due to fall from watercraft, subsequent encounter|Hitting object or bottom of body of water due to fall from watercraft, subsequent encounter +C2899765|T037|AB|V94.0XXS|ICD10CM|Hitting obj/botm of body of wtr d/t fall from wtrcrft, sqla|Hitting obj/botm of body of wtr d/t fall from wtrcrft, sqla +C2899765|T037|PT|V94.0XXS|ICD10CM|Hitting object or bottom of body of water due to fall from watercraft, sequela|Hitting object or bottom of body of water due to fall from watercraft, sequela +C2899767|T037|AB|V94.1|ICD10CM|Bather struck by watercraft|Bather struck by watercraft +C2899767|T037|HT|V94.1|ICD10CM|Bather struck by watercraft|Bather struck by watercraft +C0477274|T037|PT|V94.1|ICD10|Other and unspecified water transport accidents, passenger ship|Other and unspecified water transport accidents, passenger ship +C2899766|T037|ET|V94.1|ICD10CM|Swimmer hit by watercraft|Swimmer hit by watercraft +C2899768|T037|AB|V94.11|ICD10CM|Bather struck by powered watercraft|Bather struck by powered watercraft +C2899768|T037|HT|V94.11|ICD10CM|Bather struck by powered watercraft|Bather struck by powered watercraft +C2899769|T037|AB|V94.11XA|ICD10CM|Bather struck by powered watercraft, initial encounter|Bather struck by powered watercraft, initial encounter +C2899769|T037|PT|V94.11XA|ICD10CM|Bather struck by powered watercraft, initial encounter|Bather struck by powered watercraft, initial encounter +C2899770|T037|AB|V94.11XD|ICD10CM|Bather struck by powered watercraft, subsequent encounter|Bather struck by powered watercraft, subsequent encounter +C2899770|T037|PT|V94.11XD|ICD10CM|Bather struck by powered watercraft, subsequent encounter|Bather struck by powered watercraft, subsequent encounter +C2899771|T037|AB|V94.11XS|ICD10CM|Bather struck by powered watercraft, sequela|Bather struck by powered watercraft, sequela +C2899771|T037|PT|V94.11XS|ICD10CM|Bather struck by powered watercraft, sequela|Bather struck by powered watercraft, sequela +C2899772|T037|AB|V94.12|ICD10CM|Bather struck by nonpowered watercraft|Bather struck by nonpowered watercraft +C2899772|T037|HT|V94.12|ICD10CM|Bather struck by nonpowered watercraft|Bather struck by nonpowered watercraft +C2899773|T037|AB|V94.12XA|ICD10CM|Bather struck by nonpowered watercraft, initial encounter|Bather struck by nonpowered watercraft, initial encounter +C2899773|T037|PT|V94.12XA|ICD10CM|Bather struck by nonpowered watercraft, initial encounter|Bather struck by nonpowered watercraft, initial encounter +C2899774|T037|AB|V94.12XD|ICD10CM|Bather struck by nonpowered watercraft, subsequent encounter|Bather struck by nonpowered watercraft, subsequent encounter +C2899774|T037|PT|V94.12XD|ICD10CM|Bather struck by nonpowered watercraft, subsequent encounter|Bather struck by nonpowered watercraft, subsequent encounter +C2899775|T037|AB|V94.12XS|ICD10CM|Bather struck by nonpowered watercraft, sequela|Bather struck by nonpowered watercraft, sequela +C2899775|T037|PT|V94.12XS|ICD10CM|Bather struck by nonpowered watercraft, sequela|Bather struck by nonpowered watercraft, sequela +C0477275|T037|PT|V94.2|ICD10|Other and unspecified water transport accidents, fishing boat|Other and unspecified water transport accidents, fishing boat +C2899776|T037|AB|V94.2|ICD10CM|Rider of nonpowered watercraft struck by other watercraft|Rider of nonpowered watercraft struck by other watercraft +C2899776|T037|HT|V94.2|ICD10CM|Rider of nonpowered watercraft struck by other watercraft|Rider of nonpowered watercraft struck by other watercraft +C2899777|T037|ET|V94.21|ICD10CM|Canoer hit by other nonpowered watercraft|Canoer hit by other nonpowered watercraft +C2899780|T037|HT|V94.21|ICD10CM|Rider of nonpowered watercraft struck by other nonpowered watercraft|Rider of nonpowered watercraft struck by other nonpowered watercraft +C2899780|T037|AB|V94.21|ICD10CM|Rider of nonpowr watercraft struck by oth nonpowr watercraft|Rider of nonpowr watercraft struck by oth nonpowr watercraft +C2899778|T037|ET|V94.21|ICD10CM|Surfer hit by other nonpowered watercraft|Surfer hit by other nonpowered watercraft +C2899779|T037|ET|V94.21|ICD10CM|Windsurfer hit by other nonpowered watercraft|Windsurfer hit by other nonpowered watercraft +C2899781|T037|PT|V94.21XA|ICD10CM|Rider of nonpowered watercraft struck by other nonpowered watercraft, initial encounter|Rider of nonpowered watercraft struck by other nonpowered watercraft, initial encounter +C2899781|T037|AB|V94.21XA|ICD10CM|Rider of nonpowr wtrcrft struck by oth nonpowr wtrcrft, init|Rider of nonpowr wtrcrft struck by oth nonpowr wtrcrft, init +C2899782|T037|PT|V94.21XD|ICD10CM|Rider of nonpowered watercraft struck by other nonpowered watercraft, subsequent encounter|Rider of nonpowered watercraft struck by other nonpowered watercraft, subsequent encounter +C2899782|T037|AB|V94.21XD|ICD10CM|Rider of nonpowr wtrcrft struck by oth nonpowr wtrcrft, subs|Rider of nonpowr wtrcrft struck by oth nonpowr wtrcrft, subs +C2899783|T037|PT|V94.21XS|ICD10CM|Rider of nonpowered watercraft struck by other nonpowered watercraft, sequela|Rider of nonpowered watercraft struck by other nonpowered watercraft, sequela +C2899783|T037|AB|V94.21XS|ICD10CM|Rider of nonpowr wtrcrft struck by oth nonpowr wtrcrft, sqla|Rider of nonpowr wtrcrft struck by oth nonpowr wtrcrft, sqla +C2899784|T037|ET|V94.22|ICD10CM|Canoer hit by motorboat|Canoer hit by motorboat +C2899787|T037|AB|V94.22|ICD10CM|Rider of nonpowered watercraft struck by powered watercraft|Rider of nonpowered watercraft struck by powered watercraft +C2899787|T037|HT|V94.22|ICD10CM|Rider of nonpowered watercraft struck by powered watercraft|Rider of nonpowered watercraft struck by powered watercraft +C2899785|T037|ET|V94.22|ICD10CM|Surfer hit by motorboat|Surfer hit by motorboat +C2899786|T037|ET|V94.22|ICD10CM|Windsurfer hit by motorboat|Windsurfer hit by motorboat +C2899788|T037|PT|V94.22XA|ICD10CM|Rider of nonpowered watercraft struck by powered watercraft, initial encounter|Rider of nonpowered watercraft struck by powered watercraft, initial encounter +C2899788|T037|AB|V94.22XA|ICD10CM|Rider of nonpowr wtrcrft struck by powered watercraft, init|Rider of nonpowr wtrcrft struck by powered watercraft, init +C2899789|T037|PT|V94.22XD|ICD10CM|Rider of nonpowered watercraft struck by powered watercraft, subsequent encounter|Rider of nonpowered watercraft struck by powered watercraft, subsequent encounter +C2899789|T037|AB|V94.22XD|ICD10CM|Rider of nonpowr wtrcrft struck by powered watercraft, subs|Rider of nonpowr wtrcrft struck by powered watercraft, subs +C2899790|T037|PT|V94.22XS|ICD10CM|Rider of nonpowered watercraft struck by powered watercraft, sequela|Rider of nonpowered watercraft struck by powered watercraft, sequela +C2899790|T037|AB|V94.22XS|ICD10CM|Rider of nonpowr wtrcrft struck by powered wtrcrft, sequela|Rider of nonpowr wtrcrft struck by powered wtrcrft, sequela +C2899791|T037|HT|V94.3|ICD10CM|Injury to rider of (inflatable) watercraft being pulled behind other watercraft|Injury to rider of (inflatable) watercraft being pulled behind other watercraft +C2899791|T037|AB|V94.3|ICD10CM|Injury to rider of watercraft being puld beh oth watercraft|Injury to rider of watercraft being puld beh oth watercraft +C0477276|T037|PT|V94.3|ICD10|Other and unspecified water transport accidents, other powered watercraft|Other and unspecified water transport accidents, other powered watercraft +C2899793|T037|AB|V94.31|ICD10CM|Inj to rider of recreatl wtrcrft being puld beh oth wtrcrft|Inj to rider of recreatl wtrcrft being puld beh oth wtrcrft +C2899793|T037|HT|V94.31|ICD10CM|Injury to rider of (inflatable) recreational watercraft being pulled behind other watercraft|Injury to rider of (inflatable) recreational watercraft being pulled behind other watercraft +C2899792|T037|ET|V94.31|ICD10CM|Injury to rider of inner-tube pulled behind motor boat|Injury to rider of inner-tube pulled behind motor boat +C2899794|T037|AB|V94.31XA|ICD10CM|Inj to rider of recreatl wtrcrft puld beh oth wtrcrft, init|Inj to rider of recreatl wtrcrft puld beh oth wtrcrft, init +C2899795|T037|AB|V94.31XD|ICD10CM|Inj to rider of recreatl wtrcrft puld beh oth wtrcrft, subs|Inj to rider of recreatl wtrcrft puld beh oth wtrcrft, subs +C2899796|T037|AB|V94.31XS|ICD10CM|Inj to rider of recreatl wtrcrft puld beh oth wtrcrft, sqla|Inj to rider of recreatl wtrcrft puld beh oth wtrcrft, sqla +C2899799|T037|AB|V94.32|ICD10CM|Inj to rider of nonrecr wtrcrft being puld beh oth wtrcrft|Inj to rider of nonrecr wtrcrft being puld beh oth wtrcrft +C2899797|T037|ET|V94.32|ICD10CM|Injury to occupant of dingy being pulled behind boat or ship|Injury to occupant of dingy being pulled behind boat or ship +C2899798|T037|ET|V94.32|ICD10CM|Injury to occupant of life-raft being pulled behind boat or ship|Injury to occupant of life-raft being pulled behind boat or ship +C2899799|T037|HT|V94.32|ICD10CM|Injury to rider of non-recreational watercraft being pulled behind other watercraft|Injury to rider of non-recreational watercraft being pulled behind other watercraft +C2899800|T037|AB|V94.32XA|ICD10CM|Inj to rider of nonrecr wtrcrft puld beh oth wtrcrft, init|Inj to rider of nonrecr wtrcrft puld beh oth wtrcrft, init +C2899801|T037|AB|V94.32XD|ICD10CM|Inj to rider of nonrecr wtrcrft puld beh oth wtrcrft, subs|Inj to rider of nonrecr wtrcrft puld beh oth wtrcrft, subs +C2899802|T037|AB|V94.32XS|ICD10CM|Inj to rider of nonrecr wtrcrft puld beh oth wtrcrft, sqla|Inj to rider of nonrecr wtrcrft puld beh oth wtrcrft, sqla +C2899802|T037|PT|V94.32XS|ICD10CM|Injury to rider of non-recreational watercraft being pulled behind other watercraft, sequela|Injury to rider of non-recreational watercraft being pulled behind other watercraft, sequela +C2899804|T037|HT|V94.4|ICD10CM|Injury to barefoot water-skier|Injury to barefoot water-skier +C2899804|T037|AB|V94.4|ICD10CM|Injury to barefoot water-skier|Injury to barefoot water-skier +C2899803|T037|ET|V94.4|ICD10CM|Injury to person being pulled behind boat or ship|Injury to person being pulled behind boat or ship +C0477277|T037|PT|V94.4|ICD10|Other and unspecified water transport accidents, sailboat|Other and unspecified water transport accidents, sailboat +C2899805|T037|AB|V94.4XXA|ICD10CM|Injury to barefoot water-skier, initial encounter|Injury to barefoot water-skier, initial encounter +C2899805|T037|PT|V94.4XXA|ICD10CM|Injury to barefoot water-skier, initial encounter|Injury to barefoot water-skier, initial encounter +C2899806|T037|AB|V94.4XXD|ICD10CM|Injury to barefoot water-skier, subsequent encounter|Injury to barefoot water-skier, subsequent encounter +C2899806|T037|PT|V94.4XXD|ICD10CM|Injury to barefoot water-skier, subsequent encounter|Injury to barefoot water-skier, subsequent encounter +C2899807|T037|AB|V94.4XXS|ICD10CM|Injury to barefoot water-skier, sequela|Injury to barefoot water-skier, sequela +C2899807|T037|PT|V94.4XXS|ICD10CM|Injury to barefoot water-skier, sequela|Injury to barefoot water-skier, sequela +C0477278|T037|PT|V94.5|ICD10|Other and unspecified water transport accidents, canoe or kayak|Other and unspecified water transport accidents, canoe or kayak +C0477279|T037|PT|V94.6|ICD10|Other and unspecified water transport accidents, inflatable craft (nonpowered)|Other and unspecified water transport accidents, inflatable craft (nonpowered) +C0477280|T037|PT|V94.7|ICD10|Other and unspecified water transport accidents, water-skis|Other and unspecified water transport accidents, water-skis +C0477281|T037|PT|V94.8|ICD10|Other and unspecified water transport accidents, other unpowered watercraft|Other and unspecified water transport accidents, other unpowered watercraft +C0261314|T037|HT|V94.8|ICD10CM|Other water transport accident|Other water transport accident +C0261314|T037|AB|V94.8|ICD10CM|Other water transport accident|Other water transport accident +C2899808|T037|AB|V94.81|ICD10CM|Water transport accident involving military watercraft|Water transport accident involving military watercraft +C2899808|T037|HT|V94.81|ICD10CM|Water transport accident involving military watercraft|Water transport accident involving military watercraft +C2899810|T037|HT|V94.810|ICD10CM|Civilian watercraft involved in water transport accident with military watercraft|Civilian watercraft involved in water transport accident with military watercraft +C2899810|T037|AB|V94.810|ICD10CM|Civilian wtrcrft in water trnsp accident w military wtrcrft|Civilian wtrcrft in water trnsp accident w military wtrcrft +C2899809|T037|ET|V94.810|ICD10CM|Passenger on civilian watercraft injured due to accident with military watercraft|Passenger on civilian watercraft injured due to accident with military watercraft +C2899811|T037|PT|V94.810A|ICD10CM|Civilian watercraft involved in water transport accident with military watercraft, initial encounter|Civilian watercraft involved in water transport accident with military watercraft, initial encounter +C2899811|T037|AB|V94.810A|ICD10CM|Civilian wtrcrft in water trnsp acc w military wtrcrft, init|Civilian wtrcrft in water trnsp acc w military wtrcrft, init +C2899812|T037|AB|V94.810D|ICD10CM|Civilian wtrcrft in water trnsp acc w military wtrcrft, subs|Civilian wtrcrft in water trnsp acc w military wtrcrft, subs +C2899813|T037|AB|V94.810S|ICD10CM|Civ wtrcrft in water trnsp acc w military wtrcrft, sequela|Civ wtrcrft in water trnsp acc w military wtrcrft, sequela +C2899813|T037|PT|V94.810S|ICD10CM|Civilian watercraft involved in water transport accident with military watercraft, sequela|Civilian watercraft involved in water transport accident with military watercraft, sequela +C2899814|T037|AB|V94.811|ICD10CM|Civilian in water injured by military watercraft|Civilian in water injured by military watercraft +C2899814|T037|HT|V94.811|ICD10CM|Civilian in water injured by military watercraft|Civilian in water injured by military watercraft +C2899815|T037|AB|V94.811A|ICD10CM|Civilian in water injured by military watercraft, init|Civilian in water injured by military watercraft, init +C2899815|T037|PT|V94.811A|ICD10CM|Civilian in water injured by military watercraft, initial encounter|Civilian in water injured by military watercraft, initial encounter +C2899816|T037|AB|V94.811D|ICD10CM|Civilian in water injured by military watercraft, subs|Civilian in water injured by military watercraft, subs +C2899816|T037|PT|V94.811D|ICD10CM|Civilian in water injured by military watercraft, subsequent encounter|Civilian in water injured by military watercraft, subsequent encounter +C2899817|T037|AB|V94.811S|ICD10CM|Civilian in water injured by military watercraft, sequela|Civilian in water injured by military watercraft, sequela +C2899817|T037|PT|V94.811S|ICD10CM|Civilian in water injured by military watercraft, sequela|Civilian in water injured by military watercraft, sequela +C2899818|T037|AB|V94.818|ICD10CM|Other water transport accident involving military watercraft|Other water transport accident involving military watercraft +C2899818|T037|HT|V94.818|ICD10CM|Other water transport accident involving military watercraft|Other water transport accident involving military watercraft +C2899819|T037|AB|V94.818A|ICD10CM|Oth water transport accident w military wtrcrft, init|Oth water transport accident w military wtrcrft, init +C2899819|T037|PT|V94.818A|ICD10CM|Other water transport accident involving military watercraft, initial encounter|Other water transport accident involving military watercraft, initial encounter +C2899820|T037|AB|V94.818D|ICD10CM|Oth water transport accident w military wtrcrft, subs|Oth water transport accident w military wtrcrft, subs +C2899820|T037|PT|V94.818D|ICD10CM|Other water transport accident involving military watercraft, subsequent encounter|Other water transport accident involving military watercraft, subsequent encounter +C2899821|T037|AB|V94.818S|ICD10CM|Oth water transport accident w military wtrcrft, sequela|Oth water transport accident w military wtrcrft, sequela +C2899821|T037|PT|V94.818S|ICD10CM|Other water transport accident involving military watercraft, sequela|Other water transport accident involving military watercraft, sequela +C0261314|T037|AB|V94.89|ICD10CM|Other water transport accident|Other water transport accident +C0261314|T037|HT|V94.89|ICD10CM|Other water transport accident|Other water transport accident +C2899822|T037|PT|V94.89XA|ICD10CM|Other water transport accident, initial encounter|Other water transport accident, initial encounter +C2899822|T037|AB|V94.89XA|ICD10CM|Other water transport accident, initial encounter|Other water transport accident, initial encounter +C2899823|T037|PT|V94.89XD|ICD10CM|Other water transport accident, subsequent encounter|Other water transport accident, subsequent encounter +C2899823|T037|AB|V94.89XD|ICD10CM|Other water transport accident, subsequent encounter|Other water transport accident, subsequent encounter +C2899824|T037|PT|V94.89XS|ICD10CM|Other water transport accident, sequela|Other water transport accident, sequela +C2899824|T037|AB|V94.89XS|ICD10CM|Other water transport accident, sequela|Other water transport accident, sequela +C0477282|T037|PT|V94.9|ICD10|Other and unspecified water transport accidents, unspecified watercraft|Other and unspecified water transport accidents, unspecified watercraft +C2899825|T037|AB|V94.9|ICD10CM|Unspecified water transport accident|Unspecified water transport accident +C2899825|T037|HT|V94.9|ICD10CM|Unspecified water transport accident|Unspecified water transport accident +C4721415|T037|ET|V94.9|ICD10CM|Water transport accident NOS|Water transport accident NOS +C2899826|T037|PT|V94.9XXA|ICD10CM|Unspecified water transport accident, initial encounter|Unspecified water transport accident, initial encounter +C2899826|T037|AB|V94.9XXA|ICD10CM|Unspecified water transport accident, initial encounter|Unspecified water transport accident, initial encounter +C2899827|T037|PT|V94.9XXD|ICD10CM|Unspecified water transport accident, subsequent encounter|Unspecified water transport accident, subsequent encounter +C2899827|T037|AB|V94.9XXD|ICD10CM|Unspecified water transport accident, subsequent encounter|Unspecified water transport accident, subsequent encounter +C2899828|T037|PT|V94.9XXS|ICD10CM|Unspecified water transport accident, sequela|Unspecified water transport accident, sequela +C2899828|T037|AB|V94.9XXS|ICD10CM|Unspecified water transport accident, sequela|Unspecified water transport accident, sequela +C0477283|T037|HT|V95|ICD10|Accident to powered aircraft causing injury to occupant|Accident to powered aircraft causing injury to occupant +C0477283|T037|AB|V95|ICD10CM|Accident to powered aircraft causing injury to occupant|Accident to powered aircraft causing injury to occupant +C0477283|T037|HT|V95|ICD10CM|Accident to powered aircraft causing injury to occupant|Accident to powered aircraft causing injury to occupant +C0178350|T037|HT|V95-V97|ICD10CM|Air and space transport accidents (V95-V97)|Air and space transport accidents (V95-V97) +C0178350|T037|HT|V95-V97.9|ICD10|Air and space transport accidents|Air and space transport accidents +C0477284|T033|PT|V95.0|ICD10|Helicopter accident injuring occupant|Helicopter accident injuring occupant +C0477284|T033|HT|V95.0|ICD10CM|Helicopter accident injuring occupant|Helicopter accident injuring occupant +C0477284|T033|AB|V95.0|ICD10CM|Helicopter accident injuring occupant|Helicopter accident injuring occupant +C2899829|T037|AB|V95.00|ICD10CM|Unspecified helicopter accident injuring occupant|Unspecified helicopter accident injuring occupant +C2899829|T037|HT|V95.00|ICD10CM|Unspecified helicopter accident injuring occupant|Unspecified helicopter accident injuring occupant +C2899830|T037|AB|V95.00XA|ICD10CM|Unsp helicopter accident injuring occupant, init encntr|Unsp helicopter accident injuring occupant, init encntr +C2899830|T037|PT|V95.00XA|ICD10CM|Unspecified helicopter accident injuring occupant, initial encounter|Unspecified helicopter accident injuring occupant, initial encounter +C2899831|T037|AB|V95.00XD|ICD10CM|Unsp helicopter accident injuring occupant, subs encntr|Unsp helicopter accident injuring occupant, subs encntr +C2899831|T037|PT|V95.00XD|ICD10CM|Unspecified helicopter accident injuring occupant, subsequent encounter|Unspecified helicopter accident injuring occupant, subsequent encounter +C2899832|T037|PT|V95.00XS|ICD10CM|Unspecified helicopter accident injuring occupant, sequela|Unspecified helicopter accident injuring occupant, sequela +C2899832|T037|AB|V95.00XS|ICD10CM|Unspecified helicopter accident injuring occupant, sequela|Unspecified helicopter accident injuring occupant, sequela +C2899833|T037|AB|V95.01|ICD10CM|Helicopter crash injuring occupant|Helicopter crash injuring occupant +C2899833|T037|HT|V95.01|ICD10CM|Helicopter crash injuring occupant|Helicopter crash injuring occupant +C2899834|T037|PT|V95.01XA|ICD10CM|Helicopter crash injuring occupant, initial encounter|Helicopter crash injuring occupant, initial encounter +C2899834|T037|AB|V95.01XA|ICD10CM|Helicopter crash injuring occupant, initial encounter|Helicopter crash injuring occupant, initial encounter +C2899835|T037|PT|V95.01XD|ICD10CM|Helicopter crash injuring occupant, subsequent encounter|Helicopter crash injuring occupant, subsequent encounter +C2899835|T037|AB|V95.01XD|ICD10CM|Helicopter crash injuring occupant, subsequent encounter|Helicopter crash injuring occupant, subsequent encounter +C2899836|T037|PT|V95.01XS|ICD10CM|Helicopter crash injuring occupant, sequela|Helicopter crash injuring occupant, sequela +C2899836|T037|AB|V95.01XS|ICD10CM|Helicopter crash injuring occupant, sequela|Helicopter crash injuring occupant, sequela +C2899837|T037|AB|V95.02|ICD10CM|Forced landing of helicopter injuring occupant|Forced landing of helicopter injuring occupant +C2899837|T037|HT|V95.02|ICD10CM|Forced landing of helicopter injuring occupant|Forced landing of helicopter injuring occupant +C2899838|T037|AB|V95.02XA|ICD10CM|Forced landing of helicopter injuring occupant, init encntr|Forced landing of helicopter injuring occupant, init encntr +C2899838|T037|PT|V95.02XA|ICD10CM|Forced landing of helicopter injuring occupant, initial encounter|Forced landing of helicopter injuring occupant, initial encounter +C2899839|T037|AB|V95.02XD|ICD10CM|Forced landing of helicopter injuring occupant, subs encntr|Forced landing of helicopter injuring occupant, subs encntr +C2899839|T037|PT|V95.02XD|ICD10CM|Forced landing of helicopter injuring occupant, subsequent encounter|Forced landing of helicopter injuring occupant, subsequent encounter +C2899840|T037|AB|V95.02XS|ICD10CM|Forced landing of helicopter injuring occupant, sequela|Forced landing of helicopter injuring occupant, sequela +C2899840|T037|PT|V95.02XS|ICD10CM|Forced landing of helicopter injuring occupant, sequela|Forced landing of helicopter injuring occupant, sequela +C2899842|T037|AB|V95.03|ICD10CM|Helicopter collision injuring occupant|Helicopter collision injuring occupant +C2899842|T037|HT|V95.03|ICD10CM|Helicopter collision injuring occupant|Helicopter collision injuring occupant +C2899841|T037|ET|V95.03|ICD10CM|Helicopter collision with any object, fixed, movable or moving|Helicopter collision with any object, fixed, movable or moving +C2899843|T037|PT|V95.03XA|ICD10CM|Helicopter collision injuring occupant, initial encounter|Helicopter collision injuring occupant, initial encounter +C2899843|T037|AB|V95.03XA|ICD10CM|Helicopter collision injuring occupant, initial encounter|Helicopter collision injuring occupant, initial encounter +C2899844|T037|AB|V95.03XD|ICD10CM|Helicopter collision injuring occupant, subsequent encounter|Helicopter collision injuring occupant, subsequent encounter +C2899844|T037|PT|V95.03XD|ICD10CM|Helicopter collision injuring occupant, subsequent encounter|Helicopter collision injuring occupant, subsequent encounter +C2899845|T037|PT|V95.03XS|ICD10CM|Helicopter collision injuring occupant, sequela|Helicopter collision injuring occupant, sequela +C2899845|T037|AB|V95.03XS|ICD10CM|Helicopter collision injuring occupant, sequela|Helicopter collision injuring occupant, sequela +C2899846|T037|AB|V95.04|ICD10CM|Helicopter fire injuring occupant|Helicopter fire injuring occupant +C2899846|T037|HT|V95.04|ICD10CM|Helicopter fire injuring occupant|Helicopter fire injuring occupant +C2899847|T037|PT|V95.04XA|ICD10CM|Helicopter fire injuring occupant, initial encounter|Helicopter fire injuring occupant, initial encounter +C2899847|T037|AB|V95.04XA|ICD10CM|Helicopter fire injuring occupant, initial encounter|Helicopter fire injuring occupant, initial encounter +C2899848|T037|PT|V95.04XD|ICD10CM|Helicopter fire injuring occupant, subsequent encounter|Helicopter fire injuring occupant, subsequent encounter +C2899848|T037|AB|V95.04XD|ICD10CM|Helicopter fire injuring occupant, subsequent encounter|Helicopter fire injuring occupant, subsequent encounter +C2899849|T037|PT|V95.04XS|ICD10CM|Helicopter fire injuring occupant, sequela|Helicopter fire injuring occupant, sequela +C2899849|T037|AB|V95.04XS|ICD10CM|Helicopter fire injuring occupant, sequela|Helicopter fire injuring occupant, sequela +C2899850|T037|AB|V95.05|ICD10CM|Helicopter explosion injuring occupant|Helicopter explosion injuring occupant +C2899850|T037|HT|V95.05|ICD10CM|Helicopter explosion injuring occupant|Helicopter explosion injuring occupant +C2899851|T037|PT|V95.05XA|ICD10CM|Helicopter explosion injuring occupant, initial encounter|Helicopter explosion injuring occupant, initial encounter +C2899851|T037|AB|V95.05XA|ICD10CM|Helicopter explosion injuring occupant, initial encounter|Helicopter explosion injuring occupant, initial encounter +C2899852|T037|AB|V95.05XD|ICD10CM|Helicopter explosion injuring occupant, subsequent encounter|Helicopter explosion injuring occupant, subsequent encounter +C2899852|T037|PT|V95.05XD|ICD10CM|Helicopter explosion injuring occupant, subsequent encounter|Helicopter explosion injuring occupant, subsequent encounter +C2899853|T037|PT|V95.05XS|ICD10CM|Helicopter explosion injuring occupant, sequela|Helicopter explosion injuring occupant, sequela +C2899853|T037|AB|V95.05XS|ICD10CM|Helicopter explosion injuring occupant, sequela|Helicopter explosion injuring occupant, sequela +C2899854|T037|AB|V95.09|ICD10CM|Other helicopter accident injuring occupant|Other helicopter accident injuring occupant +C2899854|T037|HT|V95.09|ICD10CM|Other helicopter accident injuring occupant|Other helicopter accident injuring occupant +C2899855|T037|AB|V95.09XA|ICD10CM|Other helicopter accident injuring occupant, init encntr|Other helicopter accident injuring occupant, init encntr +C2899855|T037|PT|V95.09XA|ICD10CM|Other helicopter accident injuring occupant, initial encounter|Other helicopter accident injuring occupant, initial encounter +C2899856|T037|AB|V95.09XD|ICD10CM|Other helicopter accident injuring occupant, subs encntr|Other helicopter accident injuring occupant, subs encntr +C2899856|T037|PT|V95.09XD|ICD10CM|Other helicopter accident injuring occupant, subsequent encounter|Other helicopter accident injuring occupant, subsequent encounter +C2899857|T037|PT|V95.09XS|ICD10CM|Other helicopter accident injuring occupant, sequela|Other helicopter accident injuring occupant, sequela +C2899857|T037|AB|V95.09XS|ICD10CM|Other helicopter accident injuring occupant, sequela|Other helicopter accident injuring occupant, sequela +C0477285|T033|HT|V95.1|ICD10CM|Ultralight, microlight or powered-glider accident injuring occupant|Ultralight, microlight or powered-glider accident injuring occupant +C0477285|T033|PT|V95.1|ICD10|Ultralight, microlight or powered-glider accident injuring occupant|Ultralight, microlight or powered-glider accident injuring occupant +C0477285|T033|AB|V95.1|ICD10CM|Ultralt/microlt/pwr-glider accident injuring occupant|Ultralt/microlt/pwr-glider accident injuring occupant +C2899858|T037|AB|V95.10|ICD10CM|Unsp ultralt/microlt/pwr-glider accident injuring occupant|Unsp ultralt/microlt/pwr-glider accident injuring occupant +C2899858|T037|HT|V95.10|ICD10CM|Unspecified ultralight, microlight or powered-glider accident injuring occupant|Unspecified ultralight, microlight or powered-glider accident injuring occupant +C2899859|T037|AB|V95.10XA|ICD10CM|Unsp ultralt/microlt/pwr-glider acc injuring occupant, init|Unsp ultralt/microlt/pwr-glider acc injuring occupant, init +C2899859|T037|PT|V95.10XA|ICD10CM|Unspecified ultralight, microlight or powered-glider accident injuring occupant, initial encounter|Unspecified ultralight, microlight or powered-glider accident injuring occupant, initial encounter +C2899860|T037|AB|V95.10XD|ICD10CM|Unsp ultralt/microlt/pwr-glider acc injuring occupant, subs|Unsp ultralt/microlt/pwr-glider acc injuring occupant, subs +C2899861|T037|AB|V95.10XS|ICD10CM|Unsp ultralt/microlt/pwr-glider acc inj occupant, sequela|Unsp ultralt/microlt/pwr-glider acc inj occupant, sequela +C2899861|T037|PT|V95.10XS|ICD10CM|Unspecified ultralight, microlight or powered-glider accident injuring occupant, sequela|Unspecified ultralight, microlight or powered-glider accident injuring occupant, sequela +C2899862|T037|HT|V95.11|ICD10CM|Ultralight, microlight or powered-glider crash injuring occupant|Ultralight, microlight or powered-glider crash injuring occupant +C2899862|T037|AB|V95.11|ICD10CM|Ultralt/microlt/pwr-glider crash injuring occupant|Ultralt/microlt/pwr-glider crash injuring occupant +C2899863|T037|PT|V95.11XA|ICD10CM|Ultralight, microlight or powered-glider crash injuring occupant, initial encounter|Ultralight, microlight or powered-glider crash injuring occupant, initial encounter +C2899863|T037|AB|V95.11XA|ICD10CM|Ultralt/microlt/pwr-glider crash injuring occupant, init|Ultralt/microlt/pwr-glider crash injuring occupant, init +C2899864|T037|PT|V95.11XD|ICD10CM|Ultralight, microlight or powered-glider crash injuring occupant, subsequent encounter|Ultralight, microlight or powered-glider crash injuring occupant, subsequent encounter +C2899864|T037|AB|V95.11XD|ICD10CM|Ultralt/microlt/pwr-glider crash injuring occupant, subs|Ultralt/microlt/pwr-glider crash injuring occupant, subs +C2899865|T037|PT|V95.11XS|ICD10CM|Ultralight, microlight or powered-glider crash injuring occupant, sequela|Ultralight, microlight or powered-glider crash injuring occupant, sequela +C2899865|T037|AB|V95.11XS|ICD10CM|Ultralt/microlt/pwr-glider crash injuring occupant, sequela|Ultralt/microlt/pwr-glider crash injuring occupant, sequela +C2899866|T037|HT|V95.12|ICD10CM|Forced landing of ultralight, microlight or powered-glider injuring occupant|Forced landing of ultralight, microlight or powered-glider injuring occupant +C2899866|T037|AB|V95.12|ICD10CM|Forced landing of ultralt/microlt/pwr-glider inj occupant|Forced landing of ultralt/microlt/pwr-glider inj occupant +C2899867|T037|PT|V95.12XA|ICD10CM|Forced landing of ultralight, microlight or powered-glider injuring occupant, initial encounter|Forced landing of ultralight, microlight or powered-glider injuring occupant, initial encounter +C2899867|T037|AB|V95.12XA|ICD10CM|Forced landing of ultralt/microlt/pwr-glider inj occ, init|Forced landing of ultralt/microlt/pwr-glider inj occ, init +C2899868|T037|PT|V95.12XD|ICD10CM|Forced landing of ultralight, microlight or powered-glider injuring occupant, subsequent encounter|Forced landing of ultralight, microlight or powered-glider injuring occupant, subsequent encounter +C2899868|T037|AB|V95.12XD|ICD10CM|Forced landing of ultralt/microlt/pwr-glider inj occ, subs|Forced landing of ultralt/microlt/pwr-glider inj occ, subs +C2899869|T037|AB|V95.12XS|ICD10CM|Forced land of ultralt/microlt/pwr-glider inj occ, sequela|Forced land of ultralt/microlt/pwr-glider inj occ, sequela +C2899869|T037|PT|V95.12XS|ICD10CM|Forced landing of ultralight, microlight or powered-glider injuring occupant, sequela|Forced landing of ultralight, microlight or powered-glider injuring occupant, sequela +C2899871|T037|HT|V95.13|ICD10CM|Ultralight, microlight or powered-glider collision injuring occupant|Ultralight, microlight or powered-glider collision injuring occupant +C2899870|T037|ET|V95.13|ICD10CM|Ultralight, microlight or powered-glider collision with any object, fixed, movable or moving|Ultralight, microlight or powered-glider collision with any object, fixed, movable or moving +C2899871|T037|AB|V95.13|ICD10CM|Ultralt/microlt/pwr-glider collision injuring occupant|Ultralt/microlt/pwr-glider collision injuring occupant +C2899872|T037|PT|V95.13XA|ICD10CM|Ultralight, microlight or powered-glider collision injuring occupant, initial encounter|Ultralight, microlight or powered-glider collision injuring occupant, initial encounter +C2899872|T037|AB|V95.13XA|ICD10CM|Ultralt/microlt/pwr-glider collision injuring occupant, init|Ultralt/microlt/pwr-glider collision injuring occupant, init +C2899873|T037|PT|V95.13XD|ICD10CM|Ultralight, microlight or powered-glider collision injuring occupant, subsequent encounter|Ultralight, microlight or powered-glider collision injuring occupant, subsequent encounter +C2899873|T037|AB|V95.13XD|ICD10CM|Ultralt/microlt/pwr-glider collision injuring occupant, subs|Ultralt/microlt/pwr-glider collision injuring occupant, subs +C2899874|T037|PT|V95.13XS|ICD10CM|Ultralight, microlight or powered-glider collision injuring occupant, sequela|Ultralight, microlight or powered-glider collision injuring occupant, sequela +C2899874|T037|AB|V95.13XS|ICD10CM|Ultralt/microlt/pwr-glider clsn injuring occupant, sequela|Ultralt/microlt/pwr-glider clsn injuring occupant, sequela +C2899875|T037|HT|V95.14|ICD10CM|Ultralight, microlight or powered-glider fire injuring occupant|Ultralight, microlight or powered-glider fire injuring occupant +C2899875|T037|AB|V95.14|ICD10CM|Ultralt/microlt/pwr-glider fire injuring occupant|Ultralt/microlt/pwr-glider fire injuring occupant +C2899876|T037|PT|V95.14XA|ICD10CM|Ultralight, microlight or powered-glider fire injuring occupant, initial encounter|Ultralight, microlight or powered-glider fire injuring occupant, initial encounter +C2899876|T037|AB|V95.14XA|ICD10CM|Ultralt/microlt/pwr-glider fire injuring occupant, init|Ultralt/microlt/pwr-glider fire injuring occupant, init +C2899877|T037|PT|V95.14XD|ICD10CM|Ultralight, microlight or powered-glider fire injuring occupant, subsequent encounter|Ultralight, microlight or powered-glider fire injuring occupant, subsequent encounter +C2899877|T037|AB|V95.14XD|ICD10CM|Ultralt/microlt/pwr-glider fire injuring occupant, subs|Ultralt/microlt/pwr-glider fire injuring occupant, subs +C2899878|T037|PT|V95.14XS|ICD10CM|Ultralight, microlight or powered-glider fire injuring occupant, sequela|Ultralight, microlight or powered-glider fire injuring occupant, sequela +C2899878|T037|AB|V95.14XS|ICD10CM|Ultralt/microlt/pwr-glider fire injuring occupant, sequela|Ultralt/microlt/pwr-glider fire injuring occupant, sequela +C2899879|T037|HT|V95.15|ICD10CM|Ultralight, microlight or powered-glider explosion injuring occupant|Ultralight, microlight or powered-glider explosion injuring occupant +C2899879|T037|AB|V95.15|ICD10CM|Ultralt/microlt/pwr-glider explosion injuring occupant|Ultralt/microlt/pwr-glider explosion injuring occupant +C2899880|T037|PT|V95.15XA|ICD10CM|Ultralight, microlight or powered-glider explosion injuring occupant, initial encounter|Ultralight, microlight or powered-glider explosion injuring occupant, initial encounter +C2899880|T037|AB|V95.15XA|ICD10CM|Ultralt/microlt/pwr-glider explosion injuring occupant, init|Ultralt/microlt/pwr-glider explosion injuring occupant, init +C2899881|T037|PT|V95.15XD|ICD10CM|Ultralight, microlight or powered-glider explosion injuring occupant, subsequent encounter|Ultralight, microlight or powered-glider explosion injuring occupant, subsequent encounter +C2899881|T037|AB|V95.15XD|ICD10CM|Ultralt/microlt/pwr-glider explosion injuring occupant, subs|Ultralt/microlt/pwr-glider explosion injuring occupant, subs +C2899882|T037|PT|V95.15XS|ICD10CM|Ultralight, microlight or powered-glider explosion injuring occupant, sequela|Ultralight, microlight or powered-glider explosion injuring occupant, sequela +C2899882|T037|AB|V95.15XS|ICD10CM|Ultralt/microlt/pwr-glider explosn inj occupant, sequela|Ultralt/microlt/pwr-glider explosn inj occupant, sequela +C2899883|T037|AB|V95.19|ICD10CM|Oth ultralt/microlt/pwr-glider accident injuring occupant|Oth ultralt/microlt/pwr-glider accident injuring occupant +C2899883|T037|HT|V95.19|ICD10CM|Other ultralight, microlight or powered-glider accident injuring occupant|Other ultralight, microlight or powered-glider accident injuring occupant +C2899884|T037|AB|V95.19XA|ICD10CM|Oth ultralt/microlt/pwr-glider acc injuring occupant, init|Oth ultralt/microlt/pwr-glider acc injuring occupant, init +C2899884|T037|PT|V95.19XA|ICD10CM|Other ultralight, microlight or powered-glider accident injuring occupant, initial encounter|Other ultralight, microlight or powered-glider accident injuring occupant, initial encounter +C2899885|T037|AB|V95.19XD|ICD10CM|Oth ultralt/microlt/pwr-glider acc injuring occupant, subs|Oth ultralt/microlt/pwr-glider acc injuring occupant, subs +C2899885|T037|PT|V95.19XD|ICD10CM|Other ultralight, microlight or powered-glider accident injuring occupant, subsequent encounter|Other ultralight, microlight or powered-glider accident injuring occupant, subsequent encounter +C2899886|T037|AB|V95.19XS|ICD10CM|Oth ultralt/microlt/pwr-glider acc inj occupant, sequela|Oth ultralt/microlt/pwr-glider acc inj occupant, sequela +C2899886|T037|PT|V95.19XS|ICD10CM|Other ultralight, microlight or powered-glider accident injuring occupant, sequela|Other ultralight, microlight or powered-glider accident injuring occupant, sequela +C0477286|T037|PT|V95.2|ICD10|Accident to other private fixed-wing aircraft, injuring occupant|Accident to other private fixed-wing aircraft, injuring occupant +C0477286|T037|AB|V95.2|ICD10CM|Other private fixed-wing aircraft accident injuring occupant|Other private fixed-wing aircraft accident injuring occupant +C0477286|T037|HT|V95.2|ICD10CM|Other private fixed-wing aircraft accident injuring occupant|Other private fixed-wing aircraft accident injuring occupant +C2899887|T037|AB|V95.20|ICD10CM|Unsp acc to oth private fix-wing aircraft, injuring occupant|Unsp acc to oth private fix-wing aircraft, injuring occupant +C2899887|T037|HT|V95.20|ICD10CM|Unspecified accident to other private fixed-wing aircraft, injuring occupant|Unspecified accident to other private fixed-wing aircraft, injuring occupant +C2899888|T037|AB|V95.20XA|ICD10CM|Unsp acc to oth private fix-wing arcrft, inj occupant, init|Unsp acc to oth private fix-wing arcrft, inj occupant, init +C2899888|T037|PT|V95.20XA|ICD10CM|Unspecified accident to other private fixed-wing aircraft, injuring occupant, initial encounter|Unspecified accident to other private fixed-wing aircraft, injuring occupant, initial encounter +C2899889|T037|AB|V95.20XD|ICD10CM|Unsp acc to oth private fix-wing arcrft, inj occupant, subs|Unsp acc to oth private fix-wing arcrft, inj occupant, subs +C2899889|T037|PT|V95.20XD|ICD10CM|Unspecified accident to other private fixed-wing aircraft, injuring occupant, subsequent encounter|Unspecified accident to other private fixed-wing aircraft, injuring occupant, subsequent encounter +C2899890|T037|AB|V95.20XS|ICD10CM|Unsp acc to oth private fix-wing arcrft, inj occ, sequela|Unsp acc to oth private fix-wing arcrft, inj occ, sequela +C2899890|T037|PT|V95.20XS|ICD10CM|Unspecified accident to other private fixed-wing aircraft, injuring occupant, sequela|Unspecified accident to other private fixed-wing aircraft, injuring occupant, sequela +C2899891|T037|AB|V95.21|ICD10CM|Other private fixed-wing aircraft crash injuring occupant|Other private fixed-wing aircraft crash injuring occupant +C2899891|T037|HT|V95.21|ICD10CM|Other private fixed-wing aircraft crash injuring occupant|Other private fixed-wing aircraft crash injuring occupant +C2899892|T037|AB|V95.21XA|ICD10CM|Oth private fix-wing aircraft crash injuring occupant, init|Oth private fix-wing aircraft crash injuring occupant, init +C2899892|T037|PT|V95.21XA|ICD10CM|Other private fixed-wing aircraft crash injuring occupant, initial encounter|Other private fixed-wing aircraft crash injuring occupant, initial encounter +C2899893|T037|AB|V95.21XD|ICD10CM|Oth private fix-wing aircraft crash injuring occupant, subs|Oth private fix-wing aircraft crash injuring occupant, subs +C2899893|T037|PT|V95.21XD|ICD10CM|Other private fixed-wing aircraft crash injuring occupant, subsequent encounter|Other private fixed-wing aircraft crash injuring occupant, subsequent encounter +C2899894|T037|AB|V95.21XS|ICD10CM|Oth private fix-wing arcrft crash injuring occupant, sequela|Oth private fix-wing arcrft crash injuring occupant, sequela +C2899894|T037|PT|V95.21XS|ICD10CM|Other private fixed-wing aircraft crash injuring occupant, sequela|Other private fixed-wing aircraft crash injuring occupant, sequela +C2899895|T037|HT|V95.22|ICD10CM|Forced landing of other private fixed-wing aircraft injuring occupant|Forced landing of other private fixed-wing aircraft injuring occupant +C2899895|T037|AB|V95.22|ICD10CM|Forced landing of private fix-wing arcrft injuring occupant|Forced landing of private fix-wing arcrft injuring occupant +C2899896|T037|PT|V95.22XA|ICD10CM|Forced landing of other private fixed-wing aircraft injuring occupant, initial encounter|Forced landing of other private fixed-wing aircraft injuring occupant, initial encounter +C2899896|T037|AB|V95.22XA|ICD10CM|Forced landing of private fix-wing arcrft inj occupant, init|Forced landing of private fix-wing arcrft inj occupant, init +C2899897|T037|PT|V95.22XD|ICD10CM|Forced landing of other private fixed-wing aircraft injuring occupant, subsequent encounter|Forced landing of other private fixed-wing aircraft injuring occupant, subsequent encounter +C2899897|T037|AB|V95.22XD|ICD10CM|Forced landing of private fix-wing arcrft inj occupant, subs|Forced landing of private fix-wing arcrft inj occupant, subs +C2899898|T037|PT|V95.22XS|ICD10CM|Forced landing of other private fixed-wing aircraft injuring occupant, sequela|Forced landing of other private fixed-wing aircraft injuring occupant, sequela +C2899898|T037|AB|V95.22XS|ICD10CM|Forced landing of private fix-wing arcrft inj occ, sequela|Forced landing of private fix-wing arcrft inj occ, sequela +C2899900|T037|AB|V95.23|ICD10CM|Oth private fixed-wing aircraft collision injuring occupant|Oth private fixed-wing aircraft collision injuring occupant +C2899900|T037|HT|V95.23|ICD10CM|Other private fixed-wing aircraft collision injuring occupant|Other private fixed-wing aircraft collision injuring occupant +C2899899|T037|ET|V95.23|ICD10CM|Other private fixed-wing aircraft collision with any object, fixed, movable or moving|Other private fixed-wing aircraft collision with any object, fixed, movable or moving +C2899901|T037|AB|V95.23XA|ICD10CM|Oth private fix-wing aircraft clsn injuring occupant, init|Oth private fix-wing aircraft clsn injuring occupant, init +C2899901|T037|PT|V95.23XA|ICD10CM|Other private fixed-wing aircraft collision injuring occupant, initial encounter|Other private fixed-wing aircraft collision injuring occupant, initial encounter +C2899902|T037|AB|V95.23XD|ICD10CM|Oth private fix-wing aircraft clsn injuring occupant, subs|Oth private fix-wing aircraft clsn injuring occupant, subs +C2899902|T037|PT|V95.23XD|ICD10CM|Other private fixed-wing aircraft collision injuring occupant, subsequent encounter|Other private fixed-wing aircraft collision injuring occupant, subsequent encounter +C2899903|T037|AB|V95.23XS|ICD10CM|Oth private fix-wing arcrft clsn injuring occupant, sequela|Oth private fix-wing arcrft clsn injuring occupant, sequela +C2899903|T037|PT|V95.23XS|ICD10CM|Other private fixed-wing aircraft collision injuring occupant, sequela|Other private fixed-wing aircraft collision injuring occupant, sequela +C2899904|T037|AB|V95.24|ICD10CM|Other private fixed-wing aircraft fire injuring occupant|Other private fixed-wing aircraft fire injuring occupant +C2899904|T037|HT|V95.24|ICD10CM|Other private fixed-wing aircraft fire injuring occupant|Other private fixed-wing aircraft fire injuring occupant +C2899905|T037|AB|V95.24XA|ICD10CM|Oth private fixed-wing aircraft fire injuring occupant, init|Oth private fixed-wing aircraft fire injuring occupant, init +C2899905|T037|PT|V95.24XA|ICD10CM|Other private fixed-wing aircraft fire injuring occupant, initial encounter|Other private fixed-wing aircraft fire injuring occupant, initial encounter +C2899906|T037|AB|V95.24XD|ICD10CM|Oth private fixed-wing aircraft fire injuring occupant, subs|Oth private fixed-wing aircraft fire injuring occupant, subs +C2899906|T037|PT|V95.24XD|ICD10CM|Other private fixed-wing aircraft fire injuring occupant, subsequent encounter|Other private fixed-wing aircraft fire injuring occupant, subsequent encounter +C2899907|T037|AB|V95.24XS|ICD10CM|Oth private fix-wing arcrft fire injuring occupant, sequela|Oth private fix-wing arcrft fire injuring occupant, sequela +C2899907|T037|PT|V95.24XS|ICD10CM|Other private fixed-wing aircraft fire injuring occupant, sequela|Other private fixed-wing aircraft fire injuring occupant, sequela +C2899908|T037|AB|V95.25|ICD10CM|Oth private fixed-wing aircraft explosion injuring occupant|Oth private fixed-wing aircraft explosion injuring occupant +C2899908|T037|HT|V95.25|ICD10CM|Other private fixed-wing aircraft explosion injuring occupant|Other private fixed-wing aircraft explosion injuring occupant +C2899909|T037|AB|V95.25XA|ICD10CM|Oth private fix-wing arcrft explosn injuring occupant, init|Oth private fix-wing arcrft explosn injuring occupant, init +C2899909|T037|PT|V95.25XA|ICD10CM|Other private fixed-wing aircraft explosion injuring occupant, initial encounter|Other private fixed-wing aircraft explosion injuring occupant, initial encounter +C2899910|T037|AB|V95.25XD|ICD10CM|Oth private fix-wing arcrft explosn injuring occupant, subs|Oth private fix-wing arcrft explosn injuring occupant, subs +C2899910|T037|PT|V95.25XD|ICD10CM|Other private fixed-wing aircraft explosion injuring occupant, subsequent encounter|Other private fixed-wing aircraft explosion injuring occupant, subsequent encounter +C2899911|T037|AB|V95.25XS|ICD10CM|Oth private fix-wing arcrft explosn inj occupant, sequela|Oth private fix-wing arcrft explosn inj occupant, sequela +C2899911|T037|PT|V95.25XS|ICD10CM|Other private fixed-wing aircraft explosion injuring occupant, sequela|Other private fixed-wing aircraft explosion injuring occupant, sequela +C2899912|T037|AB|V95.29|ICD10CM|Oth acc to oth private fix-wing aircraft injuring occupant|Oth acc to oth private fix-wing aircraft injuring occupant +C2899912|T037|HT|V95.29|ICD10CM|Other accident to other private fixed-wing aircraft injuring occupant|Other accident to other private fixed-wing aircraft injuring occupant +C2899913|T037|AB|V95.29XA|ICD10CM|Oth acc to oth private fix-wing arcrft inj occupant, init|Oth acc to oth private fix-wing arcrft inj occupant, init +C2899913|T037|PT|V95.29XA|ICD10CM|Other accident to other private fixed-wing aircraft injuring occupant, initial encounter|Other accident to other private fixed-wing aircraft injuring occupant, initial encounter +C2899914|T037|AB|V95.29XD|ICD10CM|Oth acc to oth private fix-wing arcrft inj occupant, subs|Oth acc to oth private fix-wing arcrft inj occupant, subs +C2899914|T037|PT|V95.29XD|ICD10CM|Other accident to other private fixed-wing aircraft injuring occupant, subsequent encounter|Other accident to other private fixed-wing aircraft injuring occupant, subsequent encounter +C2899915|T037|AB|V95.29XS|ICD10CM|Oth acc to oth private fix-wing arcrft inj occupant, sequela|Oth acc to oth private fix-wing arcrft inj occupant, sequela +C2899915|T037|PT|V95.29XS|ICD10CM|Other accident to other private fixed-wing aircraft injuring occupant, sequela|Other accident to other private fixed-wing aircraft injuring occupant, sequela +C0477287|T033|PT|V95.3|ICD10|Accident to commercial fixed-wing aircraft, injuring occupant|Accident to commercial fixed-wing aircraft, injuring occupant +C0477287|T033|AB|V95.3|ICD10CM|Commercial fixed-wing aircraft accident injuring occupant|Commercial fixed-wing aircraft accident injuring occupant +C0477287|T033|HT|V95.3|ICD10CM|Commercial fixed-wing aircraft accident injuring occupant|Commercial fixed-wing aircraft accident injuring occupant +C2899916|T037|AB|V95.30|ICD10CM|Unsp accident to commrcl fix-wing aircraft injuring occupant|Unsp accident to commrcl fix-wing aircraft injuring occupant +C2899916|T037|HT|V95.30|ICD10CM|Unspecified accident to commercial fixed-wing aircraft injuring occupant|Unspecified accident to commercial fixed-wing aircraft injuring occupant +C2899917|T037|AB|V95.30XA|ICD10CM|Unsp acc to commrcl fix-wing arcrft injuring occupant, init|Unsp acc to commrcl fix-wing arcrft injuring occupant, init +C2899917|T037|PT|V95.30XA|ICD10CM|Unspecified accident to commercial fixed-wing aircraft injuring occupant, initial encounter|Unspecified accident to commercial fixed-wing aircraft injuring occupant, initial encounter +C2899918|T037|AB|V95.30XD|ICD10CM|Unsp acc to commrcl fix-wing arcrft injuring occupant, subs|Unsp acc to commrcl fix-wing arcrft injuring occupant, subs +C2899918|T037|PT|V95.30XD|ICD10CM|Unspecified accident to commercial fixed-wing aircraft injuring occupant, subsequent encounter|Unspecified accident to commercial fixed-wing aircraft injuring occupant, subsequent encounter +C2899919|T037|AB|V95.30XS|ICD10CM|Unsp acc to commrcl fix-wing arcrft inj occupant, sequela|Unsp acc to commrcl fix-wing arcrft inj occupant, sequela +C2899919|T037|PT|V95.30XS|ICD10CM|Unspecified accident to commercial fixed-wing aircraft injuring occupant, sequela|Unspecified accident to commercial fixed-wing aircraft injuring occupant, sequela +C2899920|T037|AB|V95.31|ICD10CM|Commercial fixed-wing aircraft crash injuring occupant|Commercial fixed-wing aircraft crash injuring occupant +C2899920|T037|HT|V95.31|ICD10CM|Commercial fixed-wing aircraft crash injuring occupant|Commercial fixed-wing aircraft crash injuring occupant +C2899921|T037|AB|V95.31XA|ICD10CM|Commercial fixed-wing aircraft crash injuring occupant, init|Commercial fixed-wing aircraft crash injuring occupant, init +C2899921|T037|PT|V95.31XA|ICD10CM|Commercial fixed-wing aircraft crash injuring occupant, initial encounter|Commercial fixed-wing aircraft crash injuring occupant, initial encounter +C2899922|T037|AB|V95.31XD|ICD10CM|Commercial fixed-wing aircraft crash injuring occupant, subs|Commercial fixed-wing aircraft crash injuring occupant, subs +C2899922|T037|PT|V95.31XD|ICD10CM|Commercial fixed-wing aircraft crash injuring occupant, subsequent encounter|Commercial fixed-wing aircraft crash injuring occupant, subsequent encounter +C2899923|T037|PT|V95.31XS|ICD10CM|Commercial fixed-wing aircraft crash injuring occupant, sequela|Commercial fixed-wing aircraft crash injuring occupant, sequela +C2899923|T037|AB|V95.31XS|ICD10CM|Commrcl fixed-wing aircraft crash injuring occupant, sequela|Commrcl fixed-wing aircraft crash injuring occupant, sequela +C2899924|T037|HT|V95.32|ICD10CM|Forced landing of commercial fixed-wing aircraft injuring occupant|Forced landing of commercial fixed-wing aircraft injuring occupant +C2899924|T037|AB|V95.32|ICD10CM|Forced landing of commrcl fix-wing arcrft injuring occupant|Forced landing of commrcl fix-wing arcrft injuring occupant +C2899925|T037|PT|V95.32XA|ICD10CM|Forced landing of commercial fixed-wing aircraft injuring occupant, initial encounter|Forced landing of commercial fixed-wing aircraft injuring occupant, initial encounter +C2899925|T037|AB|V95.32XA|ICD10CM|Forced landing of commrcl fix-wing arcrft inj occupant, init|Forced landing of commrcl fix-wing arcrft inj occupant, init +C2899926|T037|PT|V95.32XD|ICD10CM|Forced landing of commercial fixed-wing aircraft injuring occupant, subsequent encounter|Forced landing of commercial fixed-wing aircraft injuring occupant, subsequent encounter +C2899926|T037|AB|V95.32XD|ICD10CM|Forced landing of commrcl fix-wing arcrft inj occupant, subs|Forced landing of commrcl fix-wing arcrft inj occupant, subs +C2899927|T037|PT|V95.32XS|ICD10CM|Forced landing of commercial fixed-wing aircraft injuring occupant, sequela|Forced landing of commercial fixed-wing aircraft injuring occupant, sequela +C2899927|T037|AB|V95.32XS|ICD10CM|Forced landing of commrcl fix-wing arcrft inj occ, sequela|Forced landing of commrcl fix-wing arcrft inj occ, sequela +C2899929|T037|AB|V95.33|ICD10CM|Commercial fixed-wing aircraft collision injuring occupant|Commercial fixed-wing aircraft collision injuring occupant +C2899929|T037|HT|V95.33|ICD10CM|Commercial fixed-wing aircraft collision injuring occupant|Commercial fixed-wing aircraft collision injuring occupant +C2899928|T037|ET|V95.33|ICD10CM|Commercial fixed-wing aircraft collision with any object, fixed, movable or moving|Commercial fixed-wing aircraft collision with any object, fixed, movable or moving +C2899930|T037|PT|V95.33XA|ICD10CM|Commercial fixed-wing aircraft collision injuring occupant, initial encounter|Commercial fixed-wing aircraft collision injuring occupant, initial encounter +C2899930|T037|AB|V95.33XA|ICD10CM|Commrcl fix-wing aircraft collision injuring occupant, init|Commrcl fix-wing aircraft collision injuring occupant, init +C2899931|T037|PT|V95.33XD|ICD10CM|Commercial fixed-wing aircraft collision injuring occupant, subsequent encounter|Commercial fixed-wing aircraft collision injuring occupant, subsequent encounter +C2899931|T037|AB|V95.33XD|ICD10CM|Commrcl fix-wing aircraft collision injuring occupant, subs|Commrcl fix-wing aircraft collision injuring occupant, subs +C2899932|T037|PT|V95.33XS|ICD10CM|Commercial fixed-wing aircraft collision injuring occupant, sequela|Commercial fixed-wing aircraft collision injuring occupant, sequela +C2899932|T037|AB|V95.33XS|ICD10CM|Commrcl fix-wing aircraft clsn injuring occupant, sequela|Commrcl fix-wing aircraft clsn injuring occupant, sequela +C2899933|T037|AB|V95.34|ICD10CM|Commercial fixed-wing aircraft fire injuring occupant|Commercial fixed-wing aircraft fire injuring occupant +C2899933|T037|HT|V95.34|ICD10CM|Commercial fixed-wing aircraft fire injuring occupant|Commercial fixed-wing aircraft fire injuring occupant +C2899934|T037|AB|V95.34XA|ICD10CM|Commercial fixed-wing aircraft fire injuring occupant, init|Commercial fixed-wing aircraft fire injuring occupant, init +C2899934|T037|PT|V95.34XA|ICD10CM|Commercial fixed-wing aircraft fire injuring occupant, initial encounter|Commercial fixed-wing aircraft fire injuring occupant, initial encounter +C2899935|T037|AB|V95.34XD|ICD10CM|Commercial fixed-wing aircraft fire injuring occupant, subs|Commercial fixed-wing aircraft fire injuring occupant, subs +C2899935|T037|PT|V95.34XD|ICD10CM|Commercial fixed-wing aircraft fire injuring occupant, subsequent encounter|Commercial fixed-wing aircraft fire injuring occupant, subsequent encounter +C2899936|T037|PT|V95.34XS|ICD10CM|Commercial fixed-wing aircraft fire injuring occupant, sequela|Commercial fixed-wing aircraft fire injuring occupant, sequela +C2899936|T037|AB|V95.34XS|ICD10CM|Commrcl fixed-wing aircraft fire injuring occupant, sequela|Commrcl fixed-wing aircraft fire injuring occupant, sequela +C2899937|T037|AB|V95.35|ICD10CM|Commercial fixed-wing aircraft explosion injuring occupant|Commercial fixed-wing aircraft explosion injuring occupant +C2899937|T037|HT|V95.35|ICD10CM|Commercial fixed-wing aircraft explosion injuring occupant|Commercial fixed-wing aircraft explosion injuring occupant +C2899938|T037|PT|V95.35XA|ICD10CM|Commercial fixed-wing aircraft explosion injuring occupant, initial encounter|Commercial fixed-wing aircraft explosion injuring occupant, initial encounter +C2899938|T037|AB|V95.35XA|ICD10CM|Commrcl fix-wing aircraft explosion injuring occupant, init|Commrcl fix-wing aircraft explosion injuring occupant, init +C2899939|T037|PT|V95.35XD|ICD10CM|Commercial fixed-wing aircraft explosion injuring occupant, subsequent encounter|Commercial fixed-wing aircraft explosion injuring occupant, subsequent encounter +C2899939|T037|AB|V95.35XD|ICD10CM|Commrcl fix-wing aircraft explosion injuring occupant, subs|Commrcl fix-wing aircraft explosion injuring occupant, subs +C2899940|T037|PT|V95.35XS|ICD10CM|Commercial fixed-wing aircraft explosion injuring occupant, sequela|Commercial fixed-wing aircraft explosion injuring occupant, sequela +C2899940|T037|AB|V95.35XS|ICD10CM|Commrcl fix-wing aircraft explosn injuring occupant, sequela|Commrcl fix-wing aircraft explosn injuring occupant, sequela +C2899941|T037|AB|V95.39|ICD10CM|Oth accident to commrcl fix-wing aircraft injuring occupant|Oth accident to commrcl fix-wing aircraft injuring occupant +C2899941|T037|HT|V95.39|ICD10CM|Other accident to commercial fixed-wing aircraft injuring occupant|Other accident to commercial fixed-wing aircraft injuring occupant +C2899942|T037|AB|V95.39XA|ICD10CM|Oth acc to commrcl fix-wing aircraft injuring occupant, init|Oth acc to commrcl fix-wing aircraft injuring occupant, init +C2899942|T037|PT|V95.39XA|ICD10CM|Other accident to commercial fixed-wing aircraft injuring occupant, initial encounter|Other accident to commercial fixed-wing aircraft injuring occupant, initial encounter +C2899943|T037|AB|V95.39XD|ICD10CM|Oth acc to commrcl fix-wing aircraft injuring occupant, subs|Oth acc to commrcl fix-wing aircraft injuring occupant, subs +C2899943|T037|PT|V95.39XD|ICD10CM|Other accident to commercial fixed-wing aircraft injuring occupant, subsequent encounter|Other accident to commercial fixed-wing aircraft injuring occupant, subsequent encounter +C2899944|T037|AB|V95.39XS|ICD10CM|Oth acc to commrcl fix-wing arcrft inj occupant, sequela|Oth acc to commrcl fix-wing arcrft inj occupant, sequela +C2899944|T037|PT|V95.39XS|ICD10CM|Other accident to commercial fixed-wing aircraft injuring occupant, sequela|Other accident to commercial fixed-wing aircraft injuring occupant, sequela +C0477288|T037|HT|V95.4|ICD10CM|Spacecraft accident injuring occupant|Spacecraft accident injuring occupant +C0477288|T037|AB|V95.4|ICD10CM|Spacecraft accident injuring occupant|Spacecraft accident injuring occupant +C0477288|T037|PT|V95.4|ICD10|Spacecraft accident injuring occupant|Spacecraft accident injuring occupant +C2899945|T037|AB|V95.40|ICD10CM|Unspecified spacecraft accident injuring occupant|Unspecified spacecraft accident injuring occupant +C2899945|T037|HT|V95.40|ICD10CM|Unspecified spacecraft accident injuring occupant|Unspecified spacecraft accident injuring occupant +C2899946|T037|AB|V95.40XA|ICD10CM|Unsp spacecraft accident injuring occupant, init encntr|Unsp spacecraft accident injuring occupant, init encntr +C2899946|T037|PT|V95.40XA|ICD10CM|Unspecified spacecraft accident injuring occupant, initial encounter|Unspecified spacecraft accident injuring occupant, initial encounter +C2899947|T037|AB|V95.40XD|ICD10CM|Unsp spacecraft accident injuring occupant, subs encntr|Unsp spacecraft accident injuring occupant, subs encntr +C2899947|T037|PT|V95.40XD|ICD10CM|Unspecified spacecraft accident injuring occupant, subsequent encounter|Unspecified spacecraft accident injuring occupant, subsequent encounter +C2899948|T037|PT|V95.40XS|ICD10CM|Unspecified spacecraft accident injuring occupant, sequela|Unspecified spacecraft accident injuring occupant, sequela +C2899948|T037|AB|V95.40XS|ICD10CM|Unspecified spacecraft accident injuring occupant, sequela|Unspecified spacecraft accident injuring occupant, sequela +C2899949|T037|AB|V95.41|ICD10CM|Spacecraft crash injuring occupant|Spacecraft crash injuring occupant +C2899949|T037|HT|V95.41|ICD10CM|Spacecraft crash injuring occupant|Spacecraft crash injuring occupant +C2899950|T037|PT|V95.41XA|ICD10CM|Spacecraft crash injuring occupant, initial encounter|Spacecraft crash injuring occupant, initial encounter +C2899950|T037|AB|V95.41XA|ICD10CM|Spacecraft crash injuring occupant, initial encounter|Spacecraft crash injuring occupant, initial encounter +C2899951|T037|PT|V95.41XD|ICD10CM|Spacecraft crash injuring occupant, subsequent encounter|Spacecraft crash injuring occupant, subsequent encounter +C2899951|T037|AB|V95.41XD|ICD10CM|Spacecraft crash injuring occupant, subsequent encounter|Spacecraft crash injuring occupant, subsequent encounter +C2899952|T037|PT|V95.41XS|ICD10CM|Spacecraft crash injuring occupant, sequela|Spacecraft crash injuring occupant, sequela +C2899952|T037|AB|V95.41XS|ICD10CM|Spacecraft crash injuring occupant, sequela|Spacecraft crash injuring occupant, sequela +C2899953|T037|AB|V95.42|ICD10CM|Forced landing of spacecraft injuring occupant|Forced landing of spacecraft injuring occupant +C2899953|T037|HT|V95.42|ICD10CM|Forced landing of spacecraft injuring occupant|Forced landing of spacecraft injuring occupant +C2899954|T037|AB|V95.42XA|ICD10CM|Forced landing of spacecraft injuring occupant, init encntr|Forced landing of spacecraft injuring occupant, init encntr +C2899954|T037|PT|V95.42XA|ICD10CM|Forced landing of spacecraft injuring occupant, initial encounter|Forced landing of spacecraft injuring occupant, initial encounter +C2899955|T037|AB|V95.42XD|ICD10CM|Forced landing of spacecraft injuring occupant, subs encntr|Forced landing of spacecraft injuring occupant, subs encntr +C2899955|T037|PT|V95.42XD|ICD10CM|Forced landing of spacecraft injuring occupant, subsequent encounter|Forced landing of spacecraft injuring occupant, subsequent encounter +C2899956|T037|AB|V95.42XS|ICD10CM|Forced landing of spacecraft injuring occupant, sequela|Forced landing of spacecraft injuring occupant, sequela +C2899956|T037|PT|V95.42XS|ICD10CM|Forced landing of spacecraft injuring occupant, sequela|Forced landing of spacecraft injuring occupant, sequela +C2899958|T037|AB|V95.43|ICD10CM|Spacecraft collision injuring occupant|Spacecraft collision injuring occupant +C2899958|T037|HT|V95.43|ICD10CM|Spacecraft collision injuring occupant|Spacecraft collision injuring occupant +C2899957|T037|ET|V95.43|ICD10CM|Spacecraft collision with any object, fixed, moveable or moving|Spacecraft collision with any object, fixed, moveable or moving +C2899959|T037|PT|V95.43XA|ICD10CM|Spacecraft collision injuring occupant, initial encounter|Spacecraft collision injuring occupant, initial encounter +C2899959|T037|AB|V95.43XA|ICD10CM|Spacecraft collision injuring occupant, initial encounter|Spacecraft collision injuring occupant, initial encounter +C2899960|T037|AB|V95.43XD|ICD10CM|Spacecraft collision injuring occupant, subsequent encounter|Spacecraft collision injuring occupant, subsequent encounter +C2899960|T037|PT|V95.43XD|ICD10CM|Spacecraft collision injuring occupant, subsequent encounter|Spacecraft collision injuring occupant, subsequent encounter +C2899961|T037|PT|V95.43XS|ICD10CM|Spacecraft collision injuring occupant, sequela|Spacecraft collision injuring occupant, sequela +C2899961|T037|AB|V95.43XS|ICD10CM|Spacecraft collision injuring occupant, sequela|Spacecraft collision injuring occupant, sequela +C2899962|T037|AB|V95.44|ICD10CM|Spacecraft fire injuring occupant|Spacecraft fire injuring occupant +C2899962|T037|HT|V95.44|ICD10CM|Spacecraft fire injuring occupant|Spacecraft fire injuring occupant +C2899963|T037|PT|V95.44XA|ICD10CM|Spacecraft fire injuring occupant, initial encounter|Spacecraft fire injuring occupant, initial encounter +C2899963|T037|AB|V95.44XA|ICD10CM|Spacecraft fire injuring occupant, initial encounter|Spacecraft fire injuring occupant, initial encounter +C2899964|T037|PT|V95.44XD|ICD10CM|Spacecraft fire injuring occupant, subsequent encounter|Spacecraft fire injuring occupant, subsequent encounter +C2899964|T037|AB|V95.44XD|ICD10CM|Spacecraft fire injuring occupant, subsequent encounter|Spacecraft fire injuring occupant, subsequent encounter +C2899965|T037|PT|V95.44XS|ICD10CM|Spacecraft fire injuring occupant, sequela|Spacecraft fire injuring occupant, sequela +C2899965|T037|AB|V95.44XS|ICD10CM|Spacecraft fire injuring occupant, sequela|Spacecraft fire injuring occupant, sequela +C2899966|T037|AB|V95.45|ICD10CM|Spacecraft explosion injuring occupant|Spacecraft explosion injuring occupant +C2899966|T037|HT|V95.45|ICD10CM|Spacecraft explosion injuring occupant|Spacecraft explosion injuring occupant +C2899967|T037|PT|V95.45XA|ICD10CM|Spacecraft explosion injuring occupant, initial encounter|Spacecraft explosion injuring occupant, initial encounter +C2899967|T037|AB|V95.45XA|ICD10CM|Spacecraft explosion injuring occupant, initial encounter|Spacecraft explosion injuring occupant, initial encounter +C2899968|T037|AB|V95.45XD|ICD10CM|Spacecraft explosion injuring occupant, subsequent encounter|Spacecraft explosion injuring occupant, subsequent encounter +C2899968|T037|PT|V95.45XD|ICD10CM|Spacecraft explosion injuring occupant, subsequent encounter|Spacecraft explosion injuring occupant, subsequent encounter +C2899969|T037|PT|V95.45XS|ICD10CM|Spacecraft explosion injuring occupant, sequela|Spacecraft explosion injuring occupant, sequela +C2899969|T037|AB|V95.45XS|ICD10CM|Spacecraft explosion injuring occupant, sequela|Spacecraft explosion injuring occupant, sequela +C2899970|T037|AB|V95.49|ICD10CM|Other spacecraft accident injuring occupant|Other spacecraft accident injuring occupant +C2899970|T037|HT|V95.49|ICD10CM|Other spacecraft accident injuring occupant|Other spacecraft accident injuring occupant +C2899971|T037|AB|V95.49XA|ICD10CM|Other spacecraft accident injuring occupant, init encntr|Other spacecraft accident injuring occupant, init encntr +C2899971|T037|PT|V95.49XA|ICD10CM|Other spacecraft accident injuring occupant, initial encounter|Other spacecraft accident injuring occupant, initial encounter +C2899972|T037|AB|V95.49XD|ICD10CM|Other spacecraft accident injuring occupant, subs encntr|Other spacecraft accident injuring occupant, subs encntr +C2899972|T037|PT|V95.49XD|ICD10CM|Other spacecraft accident injuring occupant, subsequent encounter|Other spacecraft accident injuring occupant, subsequent encounter +C2899973|T037|PT|V95.49XS|ICD10CM|Other spacecraft accident injuring occupant, sequela|Other spacecraft accident injuring occupant, sequela +C2899973|T037|AB|V95.49XS|ICD10CM|Other spacecraft accident injuring occupant, sequela|Other spacecraft accident injuring occupant, sequela +C0496501|T037|PT|V95.8|ICD10|Other aircraft accidents injuring occupant|Other aircraft accidents injuring occupant +C2899974|T037|AB|V95.8|ICD10CM|Other powered aircraft accidents injuring occupant|Other powered aircraft accidents injuring occupant +C2899974|T037|HT|V95.8|ICD10CM|Other powered aircraft accidents injuring occupant|Other powered aircraft accidents injuring occupant +C2899975|T037|AB|V95.8XXA|ICD10CM|Oth powered aircraft accidents injuring occupant, init|Oth powered aircraft accidents injuring occupant, init +C2899975|T037|PT|V95.8XXA|ICD10CM|Other powered aircraft accidents injuring occupant, initial encounter|Other powered aircraft accidents injuring occupant, initial encounter +C2899976|T037|AB|V95.8XXD|ICD10CM|Oth powered aircraft accidents injuring occupant, subs|Oth powered aircraft accidents injuring occupant, subs +C2899976|T037|PT|V95.8XXD|ICD10CM|Other powered aircraft accidents injuring occupant, subsequent encounter|Other powered aircraft accidents injuring occupant, subsequent encounter +C2899977|T037|AB|V95.8XXS|ICD10CM|Other powered aircraft accidents injuring occupant, sequela|Other powered aircraft accidents injuring occupant, sequela +C2899977|T037|PT|V95.8XXS|ICD10CM|Other powered aircraft accidents injuring occupant, sequela|Other powered aircraft accidents injuring occupant, sequela +C2899978|T037|ET|V95.9|ICD10CM|Air transport accident NOS|Air transport accident NOS +C3714670|T037|ET|V95.9|ICD10CM|Aircraft accident NOS|Aircraft accident NOS +C0477289|T037|PT|V95.9|ICD10|Unspecified aircraft accident injuring occupant|Unspecified aircraft accident injuring occupant +C0477289|T037|HT|V95.9|ICD10CM|Unspecified aircraft accident injuring occupant|Unspecified aircraft accident injuring occupant +C0477289|T037|AB|V95.9|ICD10CM|Unspecified aircraft accident injuring occupant|Unspecified aircraft accident injuring occupant +C2899979|T037|AB|V95.9XXA|ICD10CM|Unspecified aircraft accident injuring occupant, init encntr|Unspecified aircraft accident injuring occupant, init encntr +C2899979|T037|PT|V95.9XXA|ICD10CM|Unspecified aircraft accident injuring occupant, initial encounter|Unspecified aircraft accident injuring occupant, initial encounter +C2899980|T037|AB|V95.9XXD|ICD10CM|Unspecified aircraft accident injuring occupant, subs encntr|Unspecified aircraft accident injuring occupant, subs encntr +C2899980|T037|PT|V95.9XXD|ICD10CM|Unspecified aircraft accident injuring occupant, subsequent encounter|Unspecified aircraft accident injuring occupant, subsequent encounter +C2899981|T037|AB|V95.9XXS|ICD10CM|Unspecified aircraft accident injuring occupant, sequela|Unspecified aircraft accident injuring occupant, sequela +C2899981|T037|PT|V95.9XXS|ICD10CM|Unspecified aircraft accident injuring occupant, sequela|Unspecified aircraft accident injuring occupant, sequela +C0481422|T037|HT|V96|ICD10|Accident to nonpowered aircraft causing injury to occupant|Accident to nonpowered aircraft causing injury to occupant +C0481422|T037|AB|V96|ICD10CM|Accident to nonpowered aircraft causing injury to occupant|Accident to nonpowered aircraft causing injury to occupant +C0481422|T037|HT|V96|ICD10CM|Accident to nonpowered aircraft causing injury to occupant|Accident to nonpowered aircraft causing injury to occupant +C0477290|T037|PT|V96.0|ICD10|Balloon accident injuring occupant|Balloon accident injuring occupant +C0477290|T037|HT|V96.0|ICD10CM|Balloon accident injuring occupant|Balloon accident injuring occupant +C0477290|T037|AB|V96.0|ICD10CM|Balloon accident injuring occupant|Balloon accident injuring occupant +C2899982|T037|AB|V96.00|ICD10CM|Unspecified balloon accident injuring occupant|Unspecified balloon accident injuring occupant +C2899982|T037|HT|V96.00|ICD10CM|Unspecified balloon accident injuring occupant|Unspecified balloon accident injuring occupant +C2899983|T037|AB|V96.00XA|ICD10CM|Unspecified balloon accident injuring occupant, init encntr|Unspecified balloon accident injuring occupant, init encntr +C2899983|T037|PT|V96.00XA|ICD10CM|Unspecified balloon accident injuring occupant, initial encounter|Unspecified balloon accident injuring occupant, initial encounter +C2899984|T037|AB|V96.00XD|ICD10CM|Unspecified balloon accident injuring occupant, subs encntr|Unspecified balloon accident injuring occupant, subs encntr +C2899984|T037|PT|V96.00XD|ICD10CM|Unspecified balloon accident injuring occupant, subsequent encounter|Unspecified balloon accident injuring occupant, subsequent encounter +C2899985|T037|PT|V96.00XS|ICD10CM|Unspecified balloon accident injuring occupant, sequela|Unspecified balloon accident injuring occupant, sequela +C2899985|T037|AB|V96.00XS|ICD10CM|Unspecified balloon accident injuring occupant, sequela|Unspecified balloon accident injuring occupant, sequela +C2899986|T037|AB|V96.01|ICD10CM|Balloon crash injuring occupant|Balloon crash injuring occupant +C2899986|T037|HT|V96.01|ICD10CM|Balloon crash injuring occupant|Balloon crash injuring occupant +C2899987|T037|PT|V96.01XA|ICD10CM|Balloon crash injuring occupant, initial encounter|Balloon crash injuring occupant, initial encounter +C2899987|T037|AB|V96.01XA|ICD10CM|Balloon crash injuring occupant, initial encounter|Balloon crash injuring occupant, initial encounter +C2899988|T037|PT|V96.01XD|ICD10CM|Balloon crash injuring occupant, subsequent encounter|Balloon crash injuring occupant, subsequent encounter +C2899988|T037|AB|V96.01XD|ICD10CM|Balloon crash injuring occupant, subsequent encounter|Balloon crash injuring occupant, subsequent encounter +C2899989|T037|PT|V96.01XS|ICD10CM|Balloon crash injuring occupant, sequela|Balloon crash injuring occupant, sequela +C2899989|T037|AB|V96.01XS|ICD10CM|Balloon crash injuring occupant, sequela|Balloon crash injuring occupant, sequela +C2899990|T037|AB|V96.02|ICD10CM|Forced landing of balloon injuring occupant|Forced landing of balloon injuring occupant +C2899990|T037|HT|V96.02|ICD10CM|Forced landing of balloon injuring occupant|Forced landing of balloon injuring occupant +C2899991|T037|AB|V96.02XA|ICD10CM|Forced landing of balloon injuring occupant, init encntr|Forced landing of balloon injuring occupant, init encntr +C2899991|T037|PT|V96.02XA|ICD10CM|Forced landing of balloon injuring occupant, initial encounter|Forced landing of balloon injuring occupant, initial encounter +C2899992|T037|AB|V96.02XD|ICD10CM|Forced landing of balloon injuring occupant, subs encntr|Forced landing of balloon injuring occupant, subs encntr +C2899992|T037|PT|V96.02XD|ICD10CM|Forced landing of balloon injuring occupant, subsequent encounter|Forced landing of balloon injuring occupant, subsequent encounter +C2899993|T037|AB|V96.02XS|ICD10CM|Forced landing of balloon injuring occupant, sequela|Forced landing of balloon injuring occupant, sequela +C2899993|T037|PT|V96.02XS|ICD10CM|Forced landing of balloon injuring occupant, sequela|Forced landing of balloon injuring occupant, sequela +C2899995|T037|AB|V96.03|ICD10CM|Balloon collision injuring occupant|Balloon collision injuring occupant +C2899995|T037|HT|V96.03|ICD10CM|Balloon collision injuring occupant|Balloon collision injuring occupant +C2899994|T037|ET|V96.03|ICD10CM|Balloon collision with any object, fixed, moveable or moving|Balloon collision with any object, fixed, moveable or moving +C2899996|T037|PT|V96.03XA|ICD10CM|Balloon collision injuring occupant, initial encounter|Balloon collision injuring occupant, initial encounter +C2899996|T037|AB|V96.03XA|ICD10CM|Balloon collision injuring occupant, initial encounter|Balloon collision injuring occupant, initial encounter +C2899997|T037|PT|V96.03XD|ICD10CM|Balloon collision injuring occupant, subsequent encounter|Balloon collision injuring occupant, subsequent encounter +C2899997|T037|AB|V96.03XD|ICD10CM|Balloon collision injuring occupant, subsequent encounter|Balloon collision injuring occupant, subsequent encounter +C2899998|T037|PT|V96.03XS|ICD10CM|Balloon collision injuring occupant, sequela|Balloon collision injuring occupant, sequela +C2899998|T037|AB|V96.03XS|ICD10CM|Balloon collision injuring occupant, sequela|Balloon collision injuring occupant, sequela +C2899999|T037|AB|V96.04|ICD10CM|Balloon fire injuring occupant|Balloon fire injuring occupant +C2899999|T037|HT|V96.04|ICD10CM|Balloon fire injuring occupant|Balloon fire injuring occupant +C2900000|T037|PT|V96.04XA|ICD10CM|Balloon fire injuring occupant, initial encounter|Balloon fire injuring occupant, initial encounter +C2900000|T037|AB|V96.04XA|ICD10CM|Balloon fire injuring occupant, initial encounter|Balloon fire injuring occupant, initial encounter +C2900001|T037|PT|V96.04XD|ICD10CM|Balloon fire injuring occupant, subsequent encounter|Balloon fire injuring occupant, subsequent encounter +C2900001|T037|AB|V96.04XD|ICD10CM|Balloon fire injuring occupant, subsequent encounter|Balloon fire injuring occupant, subsequent encounter +C2900002|T037|PT|V96.04XS|ICD10CM|Balloon fire injuring occupant, sequela|Balloon fire injuring occupant, sequela +C2900002|T037|AB|V96.04XS|ICD10CM|Balloon fire injuring occupant, sequela|Balloon fire injuring occupant, sequela +C2900003|T037|AB|V96.05|ICD10CM|Balloon explosion injuring occupant|Balloon explosion injuring occupant +C2900003|T037|HT|V96.05|ICD10CM|Balloon explosion injuring occupant|Balloon explosion injuring occupant +C2900004|T037|PT|V96.05XA|ICD10CM|Balloon explosion injuring occupant, initial encounter|Balloon explosion injuring occupant, initial encounter +C2900004|T037|AB|V96.05XA|ICD10CM|Balloon explosion injuring occupant, initial encounter|Balloon explosion injuring occupant, initial encounter +C2900005|T037|PT|V96.05XD|ICD10CM|Balloon explosion injuring occupant, subsequent encounter|Balloon explosion injuring occupant, subsequent encounter +C2900005|T037|AB|V96.05XD|ICD10CM|Balloon explosion injuring occupant, subsequent encounter|Balloon explosion injuring occupant, subsequent encounter +C2900006|T037|PT|V96.05XS|ICD10CM|Balloon explosion injuring occupant, sequela|Balloon explosion injuring occupant, sequela +C2900006|T037|AB|V96.05XS|ICD10CM|Balloon explosion injuring occupant, sequela|Balloon explosion injuring occupant, sequela +C2900007|T037|AB|V96.09|ICD10CM|Other balloon accident injuring occupant|Other balloon accident injuring occupant +C2900007|T037|HT|V96.09|ICD10CM|Other balloon accident injuring occupant|Other balloon accident injuring occupant +C2900008|T037|PT|V96.09XA|ICD10CM|Other balloon accident injuring occupant, initial encounter|Other balloon accident injuring occupant, initial encounter +C2900008|T037|AB|V96.09XA|ICD10CM|Other balloon accident injuring occupant, initial encounter|Other balloon accident injuring occupant, initial encounter +C2900009|T037|AB|V96.09XD|ICD10CM|Other balloon accident injuring occupant, subs encntr|Other balloon accident injuring occupant, subs encntr +C2900009|T037|PT|V96.09XD|ICD10CM|Other balloon accident injuring occupant, subsequent encounter|Other balloon accident injuring occupant, subsequent encounter +C2900010|T037|PT|V96.09XS|ICD10CM|Other balloon accident injuring occupant, sequela|Other balloon accident injuring occupant, sequela +C2900010|T037|AB|V96.09XS|ICD10CM|Other balloon accident injuring occupant, sequela|Other balloon accident injuring occupant, sequela +C0481419|T037|PT|V96.1|ICD10|Hang-glider accident injuring occupant|Hang-glider accident injuring occupant +C0481419|T037|HT|V96.1|ICD10CM|Hang-glider accident injuring occupant|Hang-glider accident injuring occupant +C0481419|T037|AB|V96.1|ICD10CM|Hang-glider accident injuring occupant|Hang-glider accident injuring occupant +C2900011|T037|AB|V96.10|ICD10CM|Unspecified hang-glider accident injuring occupant|Unspecified hang-glider accident injuring occupant +C2900011|T037|HT|V96.10|ICD10CM|Unspecified hang-glider accident injuring occupant|Unspecified hang-glider accident injuring occupant +C2900012|T037|AB|V96.10XA|ICD10CM|Unsp hang-glider accident injuring occupant, init encntr|Unsp hang-glider accident injuring occupant, init encntr +C2900012|T037|PT|V96.10XA|ICD10CM|Unspecified hang-glider accident injuring occupant, initial encounter|Unspecified hang-glider accident injuring occupant, initial encounter +C2900013|T037|AB|V96.10XD|ICD10CM|Unsp hang-glider accident injuring occupant, subs encntr|Unsp hang-glider accident injuring occupant, subs encntr +C2900013|T037|PT|V96.10XD|ICD10CM|Unspecified hang-glider accident injuring occupant, subsequent encounter|Unspecified hang-glider accident injuring occupant, subsequent encounter +C2900014|T037|PT|V96.10XS|ICD10CM|Unspecified hang-glider accident injuring occupant, sequela|Unspecified hang-glider accident injuring occupant, sequela +C2900014|T037|AB|V96.10XS|ICD10CM|Unspecified hang-glider accident injuring occupant, sequela|Unspecified hang-glider accident injuring occupant, sequela +C2900015|T037|AB|V96.11|ICD10CM|Hang-glider crash injuring occupant|Hang-glider crash injuring occupant +C2900015|T037|HT|V96.11|ICD10CM|Hang-glider crash injuring occupant|Hang-glider crash injuring occupant +C2900016|T037|PT|V96.11XA|ICD10CM|Hang-glider crash injuring occupant, initial encounter|Hang-glider crash injuring occupant, initial encounter +C2900016|T037|AB|V96.11XA|ICD10CM|Hang-glider crash injuring occupant, initial encounter|Hang-glider crash injuring occupant, initial encounter +C2900017|T037|PT|V96.11XD|ICD10CM|Hang-glider crash injuring occupant, subsequent encounter|Hang-glider crash injuring occupant, subsequent encounter +C2900017|T037|AB|V96.11XD|ICD10CM|Hang-glider crash injuring occupant, subsequent encounter|Hang-glider crash injuring occupant, subsequent encounter +C2900018|T037|PT|V96.11XS|ICD10CM|Hang-glider crash injuring occupant, sequela|Hang-glider crash injuring occupant, sequela +C2900018|T037|AB|V96.11XS|ICD10CM|Hang-glider crash injuring occupant, sequela|Hang-glider crash injuring occupant, sequela +C2900019|T037|AB|V96.12|ICD10CM|Forced landing of hang-glider injuring occupant|Forced landing of hang-glider injuring occupant +C2900019|T037|HT|V96.12|ICD10CM|Forced landing of hang-glider injuring occupant|Forced landing of hang-glider injuring occupant +C2900020|T037|AB|V96.12XA|ICD10CM|Forced landing of hang-glider injuring occupant, init encntr|Forced landing of hang-glider injuring occupant, init encntr +C2900020|T037|PT|V96.12XA|ICD10CM|Forced landing of hang-glider injuring occupant, initial encounter|Forced landing of hang-glider injuring occupant, initial encounter +C2900021|T037|AB|V96.12XD|ICD10CM|Forced landing of hang-glider injuring occupant, subs encntr|Forced landing of hang-glider injuring occupant, subs encntr +C2900021|T037|PT|V96.12XD|ICD10CM|Forced landing of hang-glider injuring occupant, subsequent encounter|Forced landing of hang-glider injuring occupant, subsequent encounter +C2900022|T037|AB|V96.12XS|ICD10CM|Forced landing of hang-glider injuring occupant, sequela|Forced landing of hang-glider injuring occupant, sequela +C2900022|T037|PT|V96.12XS|ICD10CM|Forced landing of hang-glider injuring occupant, sequela|Forced landing of hang-glider injuring occupant, sequela +C2900024|T037|AB|V96.13|ICD10CM|Hang-glider collision injuring occupant|Hang-glider collision injuring occupant +C2900024|T037|HT|V96.13|ICD10CM|Hang-glider collision injuring occupant|Hang-glider collision injuring occupant +C2900023|T037|ET|V96.13|ICD10CM|Hang-glider collision with any object, fixed, moveable or moving|Hang-glider collision with any object, fixed, moveable or moving +C2900025|T037|PT|V96.13XA|ICD10CM|Hang-glider collision injuring occupant, initial encounter|Hang-glider collision injuring occupant, initial encounter +C2900025|T037|AB|V96.13XA|ICD10CM|Hang-glider collision injuring occupant, initial encounter|Hang-glider collision injuring occupant, initial encounter +C2900026|T037|AB|V96.13XD|ICD10CM|Hang-glider collision injuring occupant, subs encntr|Hang-glider collision injuring occupant, subs encntr +C2900026|T037|PT|V96.13XD|ICD10CM|Hang-glider collision injuring occupant, subsequent encounter|Hang-glider collision injuring occupant, subsequent encounter +C2900027|T037|PT|V96.13XS|ICD10CM|Hang-glider collision injuring occupant, sequela|Hang-glider collision injuring occupant, sequela +C2900027|T037|AB|V96.13XS|ICD10CM|Hang-glider collision injuring occupant, sequela|Hang-glider collision injuring occupant, sequela +C2900028|T037|AB|V96.14|ICD10CM|Hang-glider fire injuring occupant|Hang-glider fire injuring occupant +C2900028|T037|HT|V96.14|ICD10CM|Hang-glider fire injuring occupant|Hang-glider fire injuring occupant +C2900029|T037|PT|V96.14XA|ICD10CM|Hang-glider fire injuring occupant, initial encounter|Hang-glider fire injuring occupant, initial encounter +C2900029|T037|AB|V96.14XA|ICD10CM|Hang-glider fire injuring occupant, initial encounter|Hang-glider fire injuring occupant, initial encounter +C2900030|T037|PT|V96.14XD|ICD10CM|Hang-glider fire injuring occupant, subsequent encounter|Hang-glider fire injuring occupant, subsequent encounter +C2900030|T037|AB|V96.14XD|ICD10CM|Hang-glider fire injuring occupant, subsequent encounter|Hang-glider fire injuring occupant, subsequent encounter +C2900031|T037|PT|V96.14XS|ICD10CM|Hang-glider fire injuring occupant, sequela|Hang-glider fire injuring occupant, sequela +C2900031|T037|AB|V96.14XS|ICD10CM|Hang-glider fire injuring occupant, sequela|Hang-glider fire injuring occupant, sequela +C2900032|T037|AB|V96.15|ICD10CM|Hang-glider explosion injuring occupant|Hang-glider explosion injuring occupant +C2900032|T037|HT|V96.15|ICD10CM|Hang-glider explosion injuring occupant|Hang-glider explosion injuring occupant +C2900033|T037|PT|V96.15XA|ICD10CM|Hang-glider explosion injuring occupant, initial encounter|Hang-glider explosion injuring occupant, initial encounter +C2900033|T037|AB|V96.15XA|ICD10CM|Hang-glider explosion injuring occupant, initial encounter|Hang-glider explosion injuring occupant, initial encounter +C2900034|T037|AB|V96.15XD|ICD10CM|Hang-glider explosion injuring occupant, subs encntr|Hang-glider explosion injuring occupant, subs encntr +C2900034|T037|PT|V96.15XD|ICD10CM|Hang-glider explosion injuring occupant, subsequent encounter|Hang-glider explosion injuring occupant, subsequent encounter +C2900035|T037|PT|V96.15XS|ICD10CM|Hang-glider explosion injuring occupant, sequela|Hang-glider explosion injuring occupant, sequela +C2900035|T037|AB|V96.15XS|ICD10CM|Hang-glider explosion injuring occupant, sequela|Hang-glider explosion injuring occupant, sequela +C2900036|T037|AB|V96.19|ICD10CM|Other hang-glider accident injuring occupant|Other hang-glider accident injuring occupant +C2900036|T037|HT|V96.19|ICD10CM|Other hang-glider accident injuring occupant|Other hang-glider accident injuring occupant +C2900037|T037|AB|V96.19XA|ICD10CM|Other hang-glider accident injuring occupant, init encntr|Other hang-glider accident injuring occupant, init encntr +C2900037|T037|PT|V96.19XA|ICD10CM|Other hang-glider accident injuring occupant, initial encounter|Other hang-glider accident injuring occupant, initial encounter +C2900038|T037|AB|V96.19XD|ICD10CM|Other hang-glider accident injuring occupant, subs encntr|Other hang-glider accident injuring occupant, subs encntr +C2900038|T037|PT|V96.19XD|ICD10CM|Other hang-glider accident injuring occupant, subsequent encounter|Other hang-glider accident injuring occupant, subsequent encounter +C2900039|T037|PT|V96.19XS|ICD10CM|Other hang-glider accident injuring occupant, sequela|Other hang-glider accident injuring occupant, sequela +C2900039|T037|AB|V96.19XS|ICD10CM|Other hang-glider accident injuring occupant, sequela|Other hang-glider accident injuring occupant, sequela +C0481420|T037|HT|V96.2|ICD10CM|Glider (nonpowered) accident injuring occupant|Glider (nonpowered) accident injuring occupant +C0481420|T037|AB|V96.2|ICD10CM|Glider (nonpowered) accident injuring occupant|Glider (nonpowered) accident injuring occupant +C0481420|T037|PT|V96.2|ICD10|Glider (nonpowered) accident injuring occupant|Glider (nonpowered) accident injuring occupant +C2900040|T037|AB|V96.20|ICD10CM|Unspecified glider (nonpowered) accident injuring occupant|Unspecified glider (nonpowered) accident injuring occupant +C2900040|T037|HT|V96.20|ICD10CM|Unspecified glider (nonpowered) accident injuring occupant|Unspecified glider (nonpowered) accident injuring occupant +C2900041|T037|AB|V96.20XA|ICD10CM|Unsp glider (nonpowered) accident injuring occupant, init|Unsp glider (nonpowered) accident injuring occupant, init +C2900041|T037|PT|V96.20XA|ICD10CM|Unspecified glider (nonpowered) accident injuring occupant, initial encounter|Unspecified glider (nonpowered) accident injuring occupant, initial encounter +C2900042|T037|AB|V96.20XD|ICD10CM|Unsp glider (nonpowered) accident injuring occupant, subs|Unsp glider (nonpowered) accident injuring occupant, subs +C2900042|T037|PT|V96.20XD|ICD10CM|Unspecified glider (nonpowered) accident injuring occupant, subsequent encounter|Unspecified glider (nonpowered) accident injuring occupant, subsequent encounter +C2900043|T037|AB|V96.20XS|ICD10CM|Unsp glider (nonpowered) accident injuring occupant, sequela|Unsp glider (nonpowered) accident injuring occupant, sequela +C2900043|T037|PT|V96.20XS|ICD10CM|Unspecified glider (nonpowered) accident injuring occupant, sequela|Unspecified glider (nonpowered) accident injuring occupant, sequela +C2900044|T037|AB|V96.21|ICD10CM|Glider (nonpowered) crash injuring occupant|Glider (nonpowered) crash injuring occupant +C2900044|T037|HT|V96.21|ICD10CM|Glider (nonpowered) crash injuring occupant|Glider (nonpowered) crash injuring occupant +C2900045|T037|AB|V96.21XA|ICD10CM|Glider (nonpowered) crash injuring occupant, init encntr|Glider (nonpowered) crash injuring occupant, init encntr +C2900045|T037|PT|V96.21XA|ICD10CM|Glider (nonpowered) crash injuring occupant, initial encounter|Glider (nonpowered) crash injuring occupant, initial encounter +C2900046|T037|AB|V96.21XD|ICD10CM|Glider (nonpowered) crash injuring occupant, subs encntr|Glider (nonpowered) crash injuring occupant, subs encntr +C2900046|T037|PT|V96.21XD|ICD10CM|Glider (nonpowered) crash injuring occupant, subsequent encounter|Glider (nonpowered) crash injuring occupant, subsequent encounter +C2900047|T037|AB|V96.21XS|ICD10CM|Glider (nonpowered) crash injuring occupant, sequela|Glider (nonpowered) crash injuring occupant, sequela +C2900047|T037|PT|V96.21XS|ICD10CM|Glider (nonpowered) crash injuring occupant, sequela|Glider (nonpowered) crash injuring occupant, sequela +C2900048|T037|AB|V96.22|ICD10CM|Forced landing of glider (nonpowered) injuring occupant|Forced landing of glider (nonpowered) injuring occupant +C2900048|T037|HT|V96.22|ICD10CM|Forced landing of glider (nonpowered) injuring occupant|Forced landing of glider (nonpowered) injuring occupant +C2900049|T037|PT|V96.22XA|ICD10CM|Forced landing of glider (nonpowered) injuring occupant, initial encounter|Forced landing of glider (nonpowered) injuring occupant, initial encounter +C2900049|T037|AB|V96.22XA|ICD10CM|Forced landing of glider injuring occupant, init|Forced landing of glider injuring occupant, init +C2900050|T037|PT|V96.22XD|ICD10CM|Forced landing of glider (nonpowered) injuring occupant, subsequent encounter|Forced landing of glider (nonpowered) injuring occupant, subsequent encounter +C2900050|T037|AB|V96.22XD|ICD10CM|Forced landing of glider injuring occupant, subs|Forced landing of glider injuring occupant, subs +C2900051|T037|PT|V96.22XS|ICD10CM|Forced landing of glider (nonpowered) injuring occupant, sequela|Forced landing of glider (nonpowered) injuring occupant, sequela +C2900051|T037|AB|V96.22XS|ICD10CM|Forced landing of glider injuring occupant, sequela|Forced landing of glider injuring occupant, sequela +C2900053|T037|AB|V96.23|ICD10CM|Glider (nonpowered) collision injuring occupant|Glider (nonpowered) collision injuring occupant +C2900053|T037|HT|V96.23|ICD10CM|Glider (nonpowered) collision injuring occupant|Glider (nonpowered) collision injuring occupant +C2900052|T037|ET|V96.23|ICD10CM|Glider (nonpowered) collision with any object, fixed, moveable or moving|Glider (nonpowered) collision with any object, fixed, moveable or moving +C2900054|T037|AB|V96.23XA|ICD10CM|Glider (nonpowered) collision injuring occupant, init encntr|Glider (nonpowered) collision injuring occupant, init encntr +C2900054|T037|PT|V96.23XA|ICD10CM|Glider (nonpowered) collision injuring occupant, initial encounter|Glider (nonpowered) collision injuring occupant, initial encounter +C2900055|T037|AB|V96.23XD|ICD10CM|Glider (nonpowered) collision injuring occupant, subs encntr|Glider (nonpowered) collision injuring occupant, subs encntr +C2900055|T037|PT|V96.23XD|ICD10CM|Glider (nonpowered) collision injuring occupant, subsequent encounter|Glider (nonpowered) collision injuring occupant, subsequent encounter +C2900056|T037|AB|V96.23XS|ICD10CM|Glider (nonpowered) collision injuring occupant, sequela|Glider (nonpowered) collision injuring occupant, sequela +C2900056|T037|PT|V96.23XS|ICD10CM|Glider (nonpowered) collision injuring occupant, sequela|Glider (nonpowered) collision injuring occupant, sequela +C2900057|T037|AB|V96.24|ICD10CM|Glider (nonpowered) fire injuring occupant|Glider (nonpowered) fire injuring occupant +C2900057|T037|HT|V96.24|ICD10CM|Glider (nonpowered) fire injuring occupant|Glider (nonpowered) fire injuring occupant +C2900058|T037|AB|V96.24XA|ICD10CM|Glider (nonpowered) fire injuring occupant, init encntr|Glider (nonpowered) fire injuring occupant, init encntr +C2900058|T037|PT|V96.24XA|ICD10CM|Glider (nonpowered) fire injuring occupant, initial encounter|Glider (nonpowered) fire injuring occupant, initial encounter +C2900059|T037|AB|V96.24XD|ICD10CM|Glider (nonpowered) fire injuring occupant, subs encntr|Glider (nonpowered) fire injuring occupant, subs encntr +C2900059|T037|PT|V96.24XD|ICD10CM|Glider (nonpowered) fire injuring occupant, subsequent encounter|Glider (nonpowered) fire injuring occupant, subsequent encounter +C2900060|T037|AB|V96.24XS|ICD10CM|Glider (nonpowered) fire injuring occupant, sequela|Glider (nonpowered) fire injuring occupant, sequela +C2900060|T037|PT|V96.24XS|ICD10CM|Glider (nonpowered) fire injuring occupant, sequela|Glider (nonpowered) fire injuring occupant, sequela +C2900061|T037|AB|V96.25|ICD10CM|Glider (nonpowered) explosion injuring occupant|Glider (nonpowered) explosion injuring occupant +C2900061|T037|HT|V96.25|ICD10CM|Glider (nonpowered) explosion injuring occupant|Glider (nonpowered) explosion injuring occupant +C2900062|T037|AB|V96.25XA|ICD10CM|Glider (nonpowered) explosion injuring occupant, init encntr|Glider (nonpowered) explosion injuring occupant, init encntr +C2900062|T037|PT|V96.25XA|ICD10CM|Glider (nonpowered) explosion injuring occupant, initial encounter|Glider (nonpowered) explosion injuring occupant, initial encounter +C2900063|T037|AB|V96.25XD|ICD10CM|Glider (nonpowered) explosion injuring occupant, subs encntr|Glider (nonpowered) explosion injuring occupant, subs encntr +C2900063|T037|PT|V96.25XD|ICD10CM|Glider (nonpowered) explosion injuring occupant, subsequent encounter|Glider (nonpowered) explosion injuring occupant, subsequent encounter +C2900064|T037|AB|V96.25XS|ICD10CM|Glider (nonpowered) explosion injuring occupant, sequela|Glider (nonpowered) explosion injuring occupant, sequela +C2900064|T037|PT|V96.25XS|ICD10CM|Glider (nonpowered) explosion injuring occupant, sequela|Glider (nonpowered) explosion injuring occupant, sequela +C2900065|T037|AB|V96.29|ICD10CM|Other glider (nonpowered) accident injuring occupant|Other glider (nonpowered) accident injuring occupant +C2900065|T037|HT|V96.29|ICD10CM|Other glider (nonpowered) accident injuring occupant|Other glider (nonpowered) accident injuring occupant +C2900066|T037|AB|V96.29XA|ICD10CM|Oth glider (nonpowered) accident injuring occupant, init|Oth glider (nonpowered) accident injuring occupant, init +C2900066|T037|PT|V96.29XA|ICD10CM|Other glider (nonpowered) accident injuring occupant, initial encounter|Other glider (nonpowered) accident injuring occupant, initial encounter +C2900067|T037|AB|V96.29XD|ICD10CM|Oth glider (nonpowered) accident injuring occupant, subs|Oth glider (nonpowered) accident injuring occupant, subs +C2900067|T037|PT|V96.29XD|ICD10CM|Other glider (nonpowered) accident injuring occupant, subsequent encounter|Other glider (nonpowered) accident injuring occupant, subsequent encounter +C2900068|T037|AB|V96.29XS|ICD10CM|Oth glider (nonpowered) accident injuring occupant, sequela|Oth glider (nonpowered) accident injuring occupant, sequela +C2900068|T037|PT|V96.29XS|ICD10CM|Other glider (nonpowered) accident injuring occupant, sequela|Other glider (nonpowered) accident injuring occupant, sequela +C2900069|T037|ET|V96.8|ICD10CM|Kite carrying a person accident injuring occupant|Kite carrying a person accident injuring occupant +C0481421|T037|PT|V96.8|ICD10|Other nonpowered-aircraft accidents injuring occupant|Other nonpowered-aircraft accidents injuring occupant +C0481421|T037|HT|V96.8|ICD10CM|Other nonpowered-aircraft accidents injuring occupant|Other nonpowered-aircraft accidents injuring occupant +C0481421|T037|AB|V96.8|ICD10CM|Other nonpowered-aircraft accidents injuring occupant|Other nonpowered-aircraft accidents injuring occupant +C2900070|T037|AB|V96.8XXA|ICD10CM|Oth nonpowered-aircraft accidents injuring occupant, init|Oth nonpowered-aircraft accidents injuring occupant, init +C2900070|T037|PT|V96.8XXA|ICD10CM|Other nonpowered-aircraft accidents injuring occupant, initial encounter|Other nonpowered-aircraft accidents injuring occupant, initial encounter +C2900071|T037|AB|V96.8XXD|ICD10CM|Oth nonpowered-aircraft accidents injuring occupant, subs|Oth nonpowered-aircraft accidents injuring occupant, subs +C2900071|T037|PT|V96.8XXD|ICD10CM|Other nonpowered-aircraft accidents injuring occupant, subsequent encounter|Other nonpowered-aircraft accidents injuring occupant, subsequent encounter +C2900072|T037|AB|V96.8XXS|ICD10CM|Oth nonpowered-aircraft accidents injuring occupant, sequela|Oth nonpowered-aircraft accidents injuring occupant, sequela +C2900072|T037|PT|V96.8XXS|ICD10CM|Other nonpowered-aircraft accidents injuring occupant, sequela|Other nonpowered-aircraft accidents injuring occupant, sequela +C2900073|T037|ET|V96.9|ICD10CM|Nonpowered-aircraft accident NOS|Nonpowered-aircraft accident NOS +C0481422|T037|HT|V96.9|ICD10CM|Unspecified nonpowered-aircraft accident injuring occupant|Unspecified nonpowered-aircraft accident injuring occupant +C0481422|T037|AB|V96.9|ICD10CM|Unspecified nonpowered-aircraft accident injuring occupant|Unspecified nonpowered-aircraft accident injuring occupant +C0481422|T037|PT|V96.9|ICD10|Unspecified nonpowered-aircraft accident injuring occupant|Unspecified nonpowered-aircraft accident injuring occupant +C2900074|T037|AB|V96.9XXA|ICD10CM|Unsp nonpowered-aircraft accident injuring occupant, init|Unsp nonpowered-aircraft accident injuring occupant, init +C2900074|T037|PT|V96.9XXA|ICD10CM|Unspecified nonpowered-aircraft accident injuring occupant, initial encounter|Unspecified nonpowered-aircraft accident injuring occupant, initial encounter +C2900075|T037|AB|V96.9XXD|ICD10CM|Unsp nonpowered-aircraft accident injuring occupant, subs|Unsp nonpowered-aircraft accident injuring occupant, subs +C2900075|T037|PT|V96.9XXD|ICD10CM|Unspecified nonpowered-aircraft accident injuring occupant, subsequent encounter|Unspecified nonpowered-aircraft accident injuring occupant, subsequent encounter +C2900076|T037|AB|V96.9XXS|ICD10CM|Unsp nonpowered-aircraft accident injuring occupant, sequela|Unsp nonpowered-aircraft accident injuring occupant, sequela +C2900076|T037|PT|V96.9XXS|ICD10CM|Unspecified nonpowered-aircraft accident injuring occupant, sequela|Unspecified nonpowered-aircraft accident injuring occupant, sequela +C0261353|T037|HT|V97|ICD10|Other specified air transport accidents|Other specified air transport accidents +C0261353|T037|AB|V97|ICD10CM|Other specified air transport accidents|Other specified air transport accidents +C0261353|T037|HT|V97|ICD10CM|Other specified air transport accidents|Other specified air transport accidents +C2900077|T037|ET|V97.0|ICD10CM|Fall in, on or from aircraft in air transport accident|Fall in, on or from aircraft in air transport accident +C0477291|T037|AB|V97.0|ICD10CM|Occupant of aircraft injured in oth air transport accidents|Occupant of aircraft injured in oth air transport accidents +C0477291|T037|HT|V97.0|ICD10CM|Occupant of aircraft injured in other specified air transport accidents|Occupant of aircraft injured in other specified air transport accidents +C0477291|T037|PT|V97.0|ICD10|Occupant of aircraft injured in other specified air transport accidents|Occupant of aircraft injured in other specified air transport accidents +C2900078|T037|AB|V97.0XXA|ICD10CM|Occupant of aircraft injured in oth air transport acc, init|Occupant of aircraft injured in oth air transport acc, init +C2900078|T037|PT|V97.0XXA|ICD10CM|Occupant of aircraft injured in other specified air transport accidents, initial encounter|Occupant of aircraft injured in other specified air transport accidents, initial encounter +C2900079|T037|AB|V97.0XXD|ICD10CM|Occupant of aircraft injured in oth air transport acc, subs|Occupant of aircraft injured in oth air transport acc, subs +C2900079|T037|PT|V97.0XXD|ICD10CM|Occupant of aircraft injured in other specified air transport accidents, subsequent encounter|Occupant of aircraft injured in other specified air transport accidents, subsequent encounter +C2900080|T037|AB|V97.0XXS|ICD10CM|Occupant of aircraft injured in oth air trnsp acc, sequela|Occupant of aircraft injured in oth air trnsp acc, sequela +C2900080|T037|PT|V97.0XXS|ICD10CM|Occupant of aircraft injured in other specified air transport accidents, sequela|Occupant of aircraft injured in other specified air transport accidents, sequela +C0477292|T037|PT|V97.1|ICD10|Person injured while boarding or alighting from aircraft|Person injured while boarding or alighting from aircraft +C0477292|T037|HT|V97.1|ICD10CM|Person injured while boarding or alighting from aircraft|Person injured while boarding or alighting from aircraft +C0477292|T037|AB|V97.1|ICD10CM|Person injured while boarding or alighting from aircraft|Person injured while boarding or alighting from aircraft +C2900081|T037|AB|V97.1XXA|ICD10CM|Person injured wh brd/alit from aircraft, init|Person injured wh brd/alit from aircraft, init +C2900081|T037|PT|V97.1XXA|ICD10CM|Person injured while boarding or alighting from aircraft, initial encounter|Person injured while boarding or alighting from aircraft, initial encounter +C2900082|T037|AB|V97.1XXD|ICD10CM|Person injured wh brd/alit from aircraft, subs|Person injured wh brd/alit from aircraft, subs +C2900082|T037|PT|V97.1XXD|ICD10CM|Person injured while boarding or alighting from aircraft, subsequent encounter|Person injured while boarding or alighting from aircraft, subsequent encounter +C2900083|T037|AB|V97.1XXS|ICD10CM|Person injured wh brd/alit from aircraft, sequela|Person injured wh brd/alit from aircraft, sequela +C2900083|T037|PT|V97.1XXS|ICD10CM|Person injured while boarding or alighting from aircraft, sequela|Person injured while boarding or alighting from aircraft, sequela +C2900084|T037|AB|V97.2|ICD10CM|Parachutist accident|Parachutist accident +C2900084|T037|HT|V97.2|ICD10CM|Parachutist accident|Parachutist accident +C0477293|T037|PT|V97.2|ICD10|Parachutist injured in air transport accident|Parachutist injured in air transport accident +C2900086|T037|AB|V97.21|ICD10CM|Parachutist entangled in object|Parachutist entangled in object +C2900086|T037|HT|V97.21|ICD10CM|Parachutist entangled in object|Parachutist entangled in object +C2900085|T037|ET|V97.21|ICD10CM|Parachutist landing in tree|Parachutist landing in tree +C2900087|T037|AB|V97.21XA|ICD10CM|Parachutist entangled in object, initial encounter|Parachutist entangled in object, initial encounter +C2900087|T037|PT|V97.21XA|ICD10CM|Parachutist entangled in object, initial encounter|Parachutist entangled in object, initial encounter +C2900088|T037|AB|V97.21XD|ICD10CM|Parachutist entangled in object, subsequent encounter|Parachutist entangled in object, subsequent encounter +C2900088|T037|PT|V97.21XD|ICD10CM|Parachutist entangled in object, subsequent encounter|Parachutist entangled in object, subsequent encounter +C2900089|T037|AB|V97.21XS|ICD10CM|Parachutist entangled in object, sequela|Parachutist entangled in object, sequela +C2900089|T037|PT|V97.21XS|ICD10CM|Parachutist entangled in object, sequela|Parachutist entangled in object, sequela +C2900090|T037|AB|V97.22|ICD10CM|Parachutist injured on landing|Parachutist injured on landing +C2900090|T037|HT|V97.22|ICD10CM|Parachutist injured on landing|Parachutist injured on landing +C2900091|T037|AB|V97.22XA|ICD10CM|Parachutist injured on landing, initial encounter|Parachutist injured on landing, initial encounter +C2900091|T037|PT|V97.22XA|ICD10CM|Parachutist injured on landing, initial encounter|Parachutist injured on landing, initial encounter +C2900092|T037|AB|V97.22XD|ICD10CM|Parachutist injured on landing, subsequent encounter|Parachutist injured on landing, subsequent encounter +C2900092|T037|PT|V97.22XD|ICD10CM|Parachutist injured on landing, subsequent encounter|Parachutist injured on landing, subsequent encounter +C2900093|T037|AB|V97.22XS|ICD10CM|Parachutist injured on landing, sequela|Parachutist injured on landing, sequela +C2900093|T037|PT|V97.22XS|ICD10CM|Parachutist injured on landing, sequela|Parachutist injured on landing, sequela +C2900094|T037|AB|V97.29|ICD10CM|Other parachutist accident|Other parachutist accident +C2900094|T037|HT|V97.29|ICD10CM|Other parachutist accident|Other parachutist accident +C2900095|T037|AB|V97.29XA|ICD10CM|Other parachutist accident, initial encounter|Other parachutist accident, initial encounter +C2900095|T037|PT|V97.29XA|ICD10CM|Other parachutist accident, initial encounter|Other parachutist accident, initial encounter +C2900096|T037|AB|V97.29XD|ICD10CM|Other parachutist accident, subsequent encounter|Other parachutist accident, subsequent encounter +C2900096|T037|PT|V97.29XD|ICD10CM|Other parachutist accident, subsequent encounter|Other parachutist accident, subsequent encounter +C2900097|T037|AB|V97.29XS|ICD10CM|Other parachutist accident, sequela|Other parachutist accident, sequela +C2900097|T037|PT|V97.29XS|ICD10CM|Other parachutist accident, sequela|Other parachutist accident, sequela +C0277708|T037|PT|V97.3|ICD10|Person on ground injured in air transport accident|Person on ground injured in air transport accident +C0277708|T037|HT|V97.3|ICD10CM|Person on ground injured in air transport accident|Person on ground injured in air transport accident +C0277708|T037|AB|V97.3|ICD10CM|Person on ground injured in air transport accident|Person on ground injured in air transport accident +C2900098|T037|ET|V97.31|ICD10CM|Hit by crashing aircraft|Hit by crashing aircraft +C0416471|T037|HT|V97.31|ICD10CM|Hit by object falling from aircraft|Hit by object falling from aircraft +C0416471|T037|AB|V97.31|ICD10CM|Hit by object falling from aircraft|Hit by object falling from aircraft +C2900099|T037|ET|V97.31|ICD10CM|Injured by aircraft hitting car|Injured by aircraft hitting car +C2900100|T037|ET|V97.31|ICD10CM|Injured by aircraft hitting house|Injured by aircraft hitting house +C2900101|T037|AB|V97.31XA|ICD10CM|Hit by object falling from aircraft, initial encounter|Hit by object falling from aircraft, initial encounter +C2900101|T037|PT|V97.31XA|ICD10CM|Hit by object falling from aircraft, initial encounter|Hit by object falling from aircraft, initial encounter +C2900102|T037|AB|V97.31XD|ICD10CM|Hit by object falling from aircraft, subsequent encounter|Hit by object falling from aircraft, subsequent encounter +C2900102|T037|PT|V97.31XD|ICD10CM|Hit by object falling from aircraft, subsequent encounter|Hit by object falling from aircraft, subsequent encounter +C2900103|T037|AB|V97.31XS|ICD10CM|Hit by object falling from aircraft, sequela|Hit by object falling from aircraft, sequela +C2900103|T037|PT|V97.31XS|ICD10CM|Hit by object falling from aircraft, sequela|Hit by object falling from aircraft, sequela +C2900104|T037|AB|V97.32|ICD10CM|Injured by rotating propeller|Injured by rotating propeller +C2900104|T037|HT|V97.32|ICD10CM|Injured by rotating propeller|Injured by rotating propeller +C2900105|T037|AB|V97.32XA|ICD10CM|Injured by rotating propeller, initial encounter|Injured by rotating propeller, initial encounter +C2900105|T037|PT|V97.32XA|ICD10CM|Injured by rotating propeller, initial encounter|Injured by rotating propeller, initial encounter +C2900106|T037|AB|V97.32XD|ICD10CM|Injured by rotating propeller, subsequent encounter|Injured by rotating propeller, subsequent encounter +C2900106|T037|PT|V97.32XD|ICD10CM|Injured by rotating propeller, subsequent encounter|Injured by rotating propeller, subsequent encounter +C2900107|T037|AB|V97.32XS|ICD10CM|Injured by rotating propeller, sequela|Injured by rotating propeller, sequela +C2900107|T037|PT|V97.32XS|ICD10CM|Injured by rotating propeller, sequela|Injured by rotating propeller, sequela +C2900108|T037|AB|V97.33|ICD10CM|Sucked into jet engine|Sucked into jet engine +C2900108|T037|HT|V97.33|ICD10CM|Sucked into jet engine|Sucked into jet engine +C2900109|T037|AB|V97.33XA|ICD10CM|Sucked into jet engine, initial encounter|Sucked into jet engine, initial encounter +C2900109|T037|PT|V97.33XA|ICD10CM|Sucked into jet engine, initial encounter|Sucked into jet engine, initial encounter +C2900110|T037|AB|V97.33XD|ICD10CM|Sucked into jet engine, subsequent encounter|Sucked into jet engine, subsequent encounter +C2900110|T037|PT|V97.33XD|ICD10CM|Sucked into jet engine, subsequent encounter|Sucked into jet engine, subsequent encounter +C2900111|T037|AB|V97.33XS|ICD10CM|Sucked into jet engine, sequela|Sucked into jet engine, sequela +C2900111|T037|PT|V97.33XS|ICD10CM|Sucked into jet engine, sequela|Sucked into jet engine, sequela +C2900112|T037|AB|V97.39|ICD10CM|Oth injury to person on ground due to air transport accident|Oth injury to person on ground due to air transport accident +C2900112|T037|HT|V97.39|ICD10CM|Other injury to person on ground due to air transport accident|Other injury to person on ground due to air transport accident +C2900113|T037|AB|V97.39XA|ICD10CM|Oth injury to person on ground due to air trnsp acc, init|Oth injury to person on ground due to air trnsp acc, init +C2900113|T037|PT|V97.39XA|ICD10CM|Other injury to person on ground due to air transport accident, initial encounter|Other injury to person on ground due to air transport accident, initial encounter +C2900114|T037|AB|V97.39XD|ICD10CM|Oth injury to person on ground due to air trnsp acc, subs|Oth injury to person on ground due to air trnsp acc, subs +C2900114|T037|PT|V97.39XD|ICD10CM|Other injury to person on ground due to air transport accident, subsequent encounter|Other injury to person on ground due to air transport accident, subsequent encounter +C2900115|T037|AB|V97.39XS|ICD10CM|Oth injury to person on ground due to air trnsp acc, sequela|Oth injury to person on ground due to air trnsp acc, sequela +C2900115|T037|PT|V97.39XS|ICD10CM|Other injury to person on ground due to air transport accident, sequela|Other injury to person on ground due to air transport accident, sequela +C0868896|T037|PT|V97.8|ICD10|Other air transport accidents, not elsewhere classified|Other air transport accidents, not elsewhere classified +C0868896|T037|HT|V97.8|ICD10CM|Other air transport accidents, not elsewhere classified|Other air transport accidents, not elsewhere classified +C0868896|T037|AB|V97.8|ICD10CM|Other air transport accidents, not elsewhere classified|Other air transport accidents, not elsewhere classified +C2900116|T037|HT|V97.81|ICD10CM|Air transport accident involving military aircraft|Air transport accident involving military aircraft +C2900116|T037|AB|V97.81|ICD10CM|Air transport accident involving military aircraft|Air transport accident involving military aircraft +C2900118|T037|AB|V97.810|ICD10CM|Civilian aircraft in air trnsp accident w military aircraft|Civilian aircraft in air trnsp accident w military aircraft +C2900118|T037|HT|V97.810|ICD10CM|Civilian aircraft involved in air transport accident with military aircraft|Civilian aircraft involved in air transport accident with military aircraft +C2900117|T037|ET|V97.810|ICD10CM|Passenger in civilian aircraft injured due to accident with military aircraft|Passenger in civilian aircraft injured due to accident with military aircraft +C2900119|T037|AB|V97.810A|ICD10CM|Civilian aircraft in air trnsp acc w military aircraft, init|Civilian aircraft in air trnsp acc w military aircraft, init +C2900119|T037|PT|V97.810A|ICD10CM|Civilian aircraft involved in air transport accident with military aircraft, initial encounter|Civilian aircraft involved in air transport accident with military aircraft, initial encounter +C2900120|T037|AB|V97.810D|ICD10CM|Civilian aircraft in air trnsp acc w military aircraft, subs|Civilian aircraft in air trnsp acc w military aircraft, subs +C2900120|T037|PT|V97.810D|ICD10CM|Civilian aircraft involved in air transport accident with military aircraft, subsequent encounter|Civilian aircraft involved in air transport accident with military aircraft, subsequent encounter +C2900121|T037|PT|V97.810S|ICD10CM|Civilian aircraft involved in air transport accident with military aircraft, sequela|Civilian aircraft involved in air transport accident with military aircraft, sequela +C2900121|T037|AB|V97.810S|ICD10CM|Civilian arcrft in air trnsp acc w military arcrft, sequela|Civilian arcrft in air trnsp acc w military arcrft, sequela +C2900122|T037|AB|V97.811|ICD10CM|Civilian injured by military aircraft|Civilian injured by military aircraft +C2900122|T037|HT|V97.811|ICD10CM|Civilian injured by military aircraft|Civilian injured by military aircraft +C2900123|T037|AB|V97.811A|ICD10CM|Civilian injured by military aircraft, initial encounter|Civilian injured by military aircraft, initial encounter +C2900123|T037|PT|V97.811A|ICD10CM|Civilian injured by military aircraft, initial encounter|Civilian injured by military aircraft, initial encounter +C2900124|T037|AB|V97.811D|ICD10CM|Civilian injured by military aircraft, subsequent encounter|Civilian injured by military aircraft, subsequent encounter +C2900124|T037|PT|V97.811D|ICD10CM|Civilian injured by military aircraft, subsequent encounter|Civilian injured by military aircraft, subsequent encounter +C2900125|T037|AB|V97.811S|ICD10CM|Civilian injured by military aircraft, sequela|Civilian injured by military aircraft, sequela +C2900125|T037|PT|V97.811S|ICD10CM|Civilian injured by military aircraft, sequela|Civilian injured by military aircraft, sequela +C2900126|T037|AB|V97.818|ICD10CM|Other air transport accident involving military aircraft|Other air transport accident involving military aircraft +C2900126|T037|HT|V97.818|ICD10CM|Other air transport accident involving military aircraft|Other air transport accident involving military aircraft +C2900127|T037|AB|V97.818A|ICD10CM|Oth air transport accident involving military aircraft, init|Oth air transport accident involving military aircraft, init +C2900127|T037|PT|V97.818A|ICD10CM|Other air transport accident involving military aircraft, initial encounter|Other air transport accident involving military aircraft, initial encounter +C2900128|T037|AB|V97.818D|ICD10CM|Oth air transport accident involving military aircraft, subs|Oth air transport accident involving military aircraft, subs +C2900128|T037|PT|V97.818D|ICD10CM|Other air transport accident involving military aircraft, subsequent encounter|Other air transport accident involving military aircraft, subsequent encounter +C2900129|T037|AB|V97.818S|ICD10CM|Oth air transport accident w military aircraft, sequela|Oth air transport accident w military aircraft, sequela +C2900129|T037|PT|V97.818S|ICD10CM|Other air transport accident involving military aircraft, sequela|Other air transport accident involving military aircraft, sequela +C0416482|T037|ET|V97.89|ICD10CM|Injury from machinery on aircraft|Injury from machinery on aircraft +C0868896|T037|HT|V97.89|ICD10CM|Other air transport accidents, not elsewhere classified|Other air transport accidents, not elsewhere classified +C0868896|T037|AB|V97.89|ICD10CM|Other air transport accidents, not elsewhere classified|Other air transport accidents, not elsewhere classified +C2900130|T037|AB|V97.89XA|ICD10CM|Oth air transport accidents, not elsewhere classified, init|Oth air transport accidents, not elsewhere classified, init +C2900130|T037|PT|V97.89XA|ICD10CM|Other air transport accidents, not elsewhere classified, initial encounter|Other air transport accidents, not elsewhere classified, initial encounter +C2900131|T037|AB|V97.89XD|ICD10CM|Oth air transport accidents, not elsewhere classified, subs|Oth air transport accidents, not elsewhere classified, subs +C2900131|T037|PT|V97.89XD|ICD10CM|Other air transport accidents, not elsewhere classified, subsequent encounter|Other air transport accidents, not elsewhere classified, subsequent encounter +C2900132|T037|AB|V97.89XS|ICD10CM|Oth air transport accidents, NEC, sequela|Oth air transport accidents, NEC, sequela +C2900132|T037|PT|V97.89XS|ICD10CM|Other air transport accidents, not elsewhere classified, sequela|Other air transport accidents, not elsewhere classified, sequela +C0477297|T037|HT|V98|ICD10CM|Other specified transport accidents|Other specified transport accidents +C0477297|T037|AB|V98|ICD10CM|Other specified transport accidents|Other specified transport accidents +C0477297|T037|PT|V98|ICD10|Other specified transport accidents|Other specified transport accidents +C0477296|T037|HT|V98-V99|ICD10CM|Other and unspecified transport accidents (V98-V99)|Other and unspecified transport accidents (V98-V99) +C0477296|T037|HT|V98-V99.9|ICD10|Other and unspecified transport accidents|Other and unspecified transport accidents +C0867440|T037|AB|V98.0|ICD10CM|Accident to, on or involving cable-car, not on rails|Accident to, on or involving cable-car, not on rails +C0867440|T037|HT|V98.0|ICD10CM|Accident to, on or involving cable-car, not on rails|Accident to, on or involving cable-car, not on rails +C0867445|T037|ET|V98.0|ICD10CM|Caught or dragged by cable-car, not on rails|Caught or dragged by cable-car, not on rails +C0867446|T037|ET|V98.0|ICD10CM|Fall or jump from cable-car, not on rails|Fall or jump from cable-car, not on rails +C0867447|T037|ET|V98.0|ICD10CM|Object thrown from or in cable-car, not on rails|Object thrown from or in cable-car, not on rails +C2900133|T037|AB|V98.0XXA|ICD10CM|Accident to, on or involving cable-car, not on rails, init|Accident to, on or involving cable-car, not on rails, init +C2900133|T037|PT|V98.0XXA|ICD10CM|Accident to, on or involving cable-car, not on rails, initial encounter|Accident to, on or involving cable-car, not on rails, initial encounter +C2900134|T037|AB|V98.0XXD|ICD10CM|Accident to, on or involving cable-car, not on rails, subs|Accident to, on or involving cable-car, not on rails, subs +C2900134|T037|PT|V98.0XXD|ICD10CM|Accident to, on or involving cable-car, not on rails, subsequent encounter|Accident to, on or involving cable-car, not on rails, subsequent encounter +C2900135|T037|PT|V98.0XXS|ICD10CM|Accident to, on or involving cable-car, not on rails, sequela|Accident to, on or involving cable-car, not on rails, sequela +C2900135|T037|AB|V98.0XXS|ICD10CM|Accident to, on or w cable-car, not on rails, sequela|Accident to, on or w cable-car, not on rails, sequela +C0867449|T037|AB|V98.1|ICD10CM|Accident to, on or involving land-yacht|Accident to, on or involving land-yacht +C0867449|T037|HT|V98.1|ICD10CM|Accident to, on or involving land-yacht|Accident to, on or involving land-yacht +C2900136|T037|AB|V98.1XXA|ICD10CM|Accident to, on or involving land-yacht, initial encounter|Accident to, on or involving land-yacht, initial encounter +C2900136|T037|PT|V98.1XXA|ICD10CM|Accident to, on or involving land-yacht, initial encounter|Accident to, on or involving land-yacht, initial encounter +C2900137|T037|AB|V98.1XXD|ICD10CM|Accident to, on or involving land-yacht, subs encntr|Accident to, on or involving land-yacht, subs encntr +C2900137|T037|PT|V98.1XXD|ICD10CM|Accident to, on or involving land-yacht, subsequent encounter|Accident to, on or involving land-yacht, subsequent encounter +C2900138|T037|AB|V98.1XXS|ICD10CM|Accident to, on or involving land-yacht, sequela|Accident to, on or involving land-yacht, sequela +C2900138|T037|PT|V98.1XXS|ICD10CM|Accident to, on or involving land-yacht, sequela|Accident to, on or involving land-yacht, sequela +C0867448|T037|AB|V98.2|ICD10CM|Accident to, on or involving ice yacht|Accident to, on or involving ice yacht +C0867448|T037|HT|V98.2|ICD10CM|Accident to, on or involving ice yacht|Accident to, on or involving ice yacht +C2900139|T037|AB|V98.2XXA|ICD10CM|Accident to, on or involving ice yacht, initial encounter|Accident to, on or involving ice yacht, initial encounter +C2900139|T037|PT|V98.2XXA|ICD10CM|Accident to, on or involving ice yacht, initial encounter|Accident to, on or involving ice yacht, initial encounter +C2900140|T037|AB|V98.2XXD|ICD10CM|Accident to, on or involving ice yacht, subsequent encounter|Accident to, on or involving ice yacht, subsequent encounter +C2900140|T037|PT|V98.2XXD|ICD10CM|Accident to, on or involving ice yacht, subsequent encounter|Accident to, on or involving ice yacht, subsequent encounter +C2900141|T037|AB|V98.2XXS|ICD10CM|Accident to, on or involving ice yacht, sequela|Accident to, on or involving ice yacht, sequela +C2900141|T037|PT|V98.2XXS|ICD10CM|Accident to, on or involving ice yacht, sequela|Accident to, on or involving ice yacht, sequela +C0867441|T037|ET|V98.3|ICD10CM|Accident to, on or involving ski chair-lift|Accident to, on or involving ski chair-lift +C2900142|T037|AB|V98.3|ICD10CM|Accident to, on or involving ski lift|Accident to, on or involving ski lift +C2900142|T037|HT|V98.3|ICD10CM|Accident to, on or involving ski lift|Accident to, on or involving ski lift +C0867442|T037|ET|V98.3|ICD10CM|Accident to, on or involving ski-lift with gondola|Accident to, on or involving ski-lift with gondola +C2900143|T037|AB|V98.3XXA|ICD10CM|Accident to, on or involving ski lift, initial encounter|Accident to, on or involving ski lift, initial encounter +C2900143|T037|PT|V98.3XXA|ICD10CM|Accident to, on or involving ski lift, initial encounter|Accident to, on or involving ski lift, initial encounter +C2900144|T037|AB|V98.3XXD|ICD10CM|Accident to, on or involving ski lift, subsequent encounter|Accident to, on or involving ski lift, subsequent encounter +C2900144|T037|PT|V98.3XXD|ICD10CM|Accident to, on or involving ski lift, subsequent encounter|Accident to, on or involving ski lift, subsequent encounter +C2900145|T037|AB|V98.3XXS|ICD10CM|Accident to, on or involving ski lift, sequela|Accident to, on or involving ski lift, sequela +C2900145|T037|PT|V98.3XXS|ICD10CM|Accident to, on or involving ski lift, sequela|Accident to, on or involving ski lift, sequela +C0477297|T037|HT|V98.8|ICD10CM|Other specified transport accidents|Other specified transport accidents +C0477297|T037|AB|V98.8|ICD10CM|Other specified transport accidents|Other specified transport accidents +C2900146|T037|AB|V98.8XXA|ICD10CM|Other specified transport accidents, initial encounter|Other specified transport accidents, initial encounter +C2900146|T037|PT|V98.8XXA|ICD10CM|Other specified transport accidents, initial encounter|Other specified transport accidents, initial encounter +C2900147|T037|AB|V98.8XXD|ICD10CM|Other specified transport accidents, subsequent encounter|Other specified transport accidents, subsequent encounter +C2900147|T037|PT|V98.8XXD|ICD10CM|Other specified transport accidents, subsequent encounter|Other specified transport accidents, subsequent encounter +C2900148|T037|AB|V98.8XXS|ICD10CM|Other specified transport accidents, sequela|Other specified transport accidents, sequela +C2900148|T037|PT|V98.8XXS|ICD10CM|Other specified transport accidents, sequela|Other specified transport accidents, sequela +C0362049|T037|HT|V99|ICD10CM|Unspecified transport accident|Unspecified transport accident +C0362049|T037|AB|V99|ICD10CM|Unspecified transport accident|Unspecified transport accident +C0362049|T037|PT|V99|ICD10|Unspecified transport accident|Unspecified transport accident +C2900149|T037|AB|V99.XXXA|ICD10CM|Unspecified transport accident, initial encounter|Unspecified transport accident, initial encounter +C2900149|T037|PT|V99.XXXA|ICD10CM|Unspecified transport accident, initial encounter|Unspecified transport accident, initial encounter +C2900150|T037|AB|V99.XXXD|ICD10CM|Unspecified transport accident, subsequent encounter|Unspecified transport accident, subsequent encounter +C2900150|T037|PT|V99.XXXD|ICD10CM|Unspecified transport accident, subsequent encounter|Unspecified transport accident, subsequent encounter +C2900151|T037|AB|V99.XXXS|ICD10CM|Unspecified transport accident, sequela|Unspecified transport accident, sequela +C2900151|T037|PT|V99.XXXS|ICD10CM|Unspecified transport accident, sequela|Unspecified transport accident, sequela +C2900153|T037|HT|W00|ICD10CM|Fall due to ice and snow|Fall due to ice and snow +C2900153|T037|AB|W00|ICD10CM|Fall due to ice and snow|Fall due to ice and snow +C0478683|T037|PS|W00|ICD10|Fall on same level involving ice and snow|Fall on same level involving ice and snow +C0478683|T037|PX|W00|ICD10|Fall on same level involving ice and snow causing accidental injury|Fall on same level involving ice and snow causing accidental injury +C4290466|T037|ET|W00|ICD10CM|pedestrian on foot falling (slipping) on ice and snow|pedestrian on foot falling (slipping) on ice and snow +C2900154|T037|HT|W00-W19|ICD10CM|Slipping, tripping, stumbling and falls (W00-W19)|Slipping, tripping, stumbling and falls (W00-W19) +C0085639|T033|HT|W00-W19.9|ICD10|Falls|Falls +C4270687|T037|HT|W00-X58|ICD10CM|Other external causes of accidental injury (W00-X58)|Other external causes of accidental injury (W00-X58) +C0478682|T037|HT|W00-X59.9|ICD10|Other external causes of accidental injury|Other external causes of accidental injury +C2900155|T037|AB|W00.0|ICD10CM|Fall on same level due to ice and snow|Fall on same level due to ice and snow +C2900155|T037|HT|W00.0|ICD10CM|Fall on same level due to ice and snow|Fall on same level due to ice and snow +C2900156|T037|AB|W00.0XXA|ICD10CM|Fall on same level due to ice and snow, initial encounter|Fall on same level due to ice and snow, initial encounter +C2900156|T037|PT|W00.0XXA|ICD10CM|Fall on same level due to ice and snow, initial encounter|Fall on same level due to ice and snow, initial encounter +C2900157|T037|AB|W00.0XXD|ICD10CM|Fall on same level due to ice and snow, subsequent encounter|Fall on same level due to ice and snow, subsequent encounter +C2900157|T037|PT|W00.0XXD|ICD10CM|Fall on same level due to ice and snow, subsequent encounter|Fall on same level due to ice and snow, subsequent encounter +C2900158|T037|AB|W00.0XXS|ICD10CM|Fall on same level due to ice and snow, sequela|Fall on same level due to ice and snow, sequela +C2900158|T037|PT|W00.0XXS|ICD10CM|Fall on same level due to ice and snow, sequela|Fall on same level due to ice and snow, sequela +C2900159|T037|AB|W00.1|ICD10CM|Fall from stairs and steps due to ice and snow|Fall from stairs and steps due to ice and snow +C2900159|T037|HT|W00.1|ICD10CM|Fall from stairs and steps due to ice and snow|Fall from stairs and steps due to ice and snow +C2900160|T037|AB|W00.1XXA|ICD10CM|Fall from stairs and steps due to ice and snow, init encntr|Fall from stairs and steps due to ice and snow, init encntr +C2900160|T037|PT|W00.1XXA|ICD10CM|Fall from stairs and steps due to ice and snow, initial encounter|Fall from stairs and steps due to ice and snow, initial encounter +C2900161|T037|AB|W00.1XXD|ICD10CM|Fall from stairs and steps due to ice and snow, subs encntr|Fall from stairs and steps due to ice and snow, subs encntr +C2900161|T037|PT|W00.1XXD|ICD10CM|Fall from stairs and steps due to ice and snow, subsequent encounter|Fall from stairs and steps due to ice and snow, subsequent encounter +C2900162|T037|AB|W00.1XXS|ICD10CM|Fall from stairs and steps due to ice and snow, sequela|Fall from stairs and steps due to ice and snow, sequela +C2900162|T037|PT|W00.1XXS|ICD10CM|Fall from stairs and steps due to ice and snow, sequela|Fall from stairs and steps due to ice and snow, sequela +C2900163|T037|AB|W00.2|ICD10CM|Other fall from one level to another due to ice and snow|Other fall from one level to another due to ice and snow +C2900163|T037|HT|W00.2|ICD10CM|Other fall from one level to another due to ice and snow|Other fall from one level to another due to ice and snow +C2900164|T037|AB|W00.2XXA|ICD10CM|Oth fall from one level to another due to ice and snow, init|Oth fall from one level to another due to ice and snow, init +C2900164|T037|PT|W00.2XXA|ICD10CM|Other fall from one level to another due to ice and snow, initial encounter|Other fall from one level to another due to ice and snow, initial encounter +C2900165|T037|AB|W00.2XXD|ICD10CM|Oth fall from one level to another due to ice and snow, subs|Oth fall from one level to another due to ice and snow, subs +C2900165|T037|PT|W00.2XXD|ICD10CM|Other fall from one level to another due to ice and snow, subsequent encounter|Other fall from one level to another due to ice and snow, subsequent encounter +C2900166|T037|AB|W00.2XXS|ICD10CM|Oth fall from one level to another due to ice and snow, sqla|Oth fall from one level to another due to ice and snow, sqla +C2900166|T037|PT|W00.2XXS|ICD10CM|Other fall from one level to another due to ice and snow, sequela|Other fall from one level to another due to ice and snow, sequela +C2900167|T037|AB|W00.9|ICD10CM|Unspecified fall due to ice and snow|Unspecified fall due to ice and snow +C2900167|T037|HT|W00.9|ICD10CM|Unspecified fall due to ice and snow|Unspecified fall due to ice and snow +C2900168|T037|AB|W00.9XXA|ICD10CM|Unspecified fall due to ice and snow, initial encounter|Unspecified fall due to ice and snow, initial encounter +C2900168|T037|PT|W00.9XXA|ICD10CM|Unspecified fall due to ice and snow, initial encounter|Unspecified fall due to ice and snow, initial encounter +C2900169|T037|AB|W00.9XXD|ICD10CM|Unspecified fall due to ice and snow, subsequent encounter|Unspecified fall due to ice and snow, subsequent encounter +C2900169|T037|PT|W00.9XXD|ICD10CM|Unspecified fall due to ice and snow, subsequent encounter|Unspecified fall due to ice and snow, subsequent encounter +C2900170|T037|AB|W00.9XXS|ICD10CM|Unspecified fall due to ice and snow, sequela|Unspecified fall due to ice and snow, sequela +C2900170|T037|PT|W00.9XXS|ICD10CM|Unspecified fall due to ice and snow, sequela|Unspecified fall due to ice and snow, sequela +C0417001|T037|ET|W01|ICD10CM|fall on moving sidewalk|fall on moving sidewalk +C0478694|T037|PS|W01|ICD10|Fall on same level from slipping, tripping and stumbling|Fall on same level from slipping, tripping and stumbling +C0478694|T037|HT|W01|ICD10CM|Fall on same level from slipping, tripping and stumbling|Fall on same level from slipping, tripping and stumbling +C0478694|T037|AB|W01|ICD10CM|Fall on same level from slipping, tripping and stumbling|Fall on same level from slipping, tripping and stumbling +C0478694|T037|PX|W01|ICD10|Fall on same level from slipping, tripping and stumbling causing accidental injury|Fall on same level from slipping, tripping and stumbling causing accidental injury +C2900172|T037|AB|W01.0|ICD10CM|Fall on same level from slip/trip w/o strike against object|Fall on same level from slip/trip w/o strike against object +C2900172|T037|HT|W01.0|ICD10CM|Fall on same level from slipping, tripping and stumbling without subsequent striking against object|Fall on same level from slipping, tripping and stumbling without subsequent striking against object +C2900171|T037|ET|W01.0|ICD10CM|Falling over animal|Falling over animal +C2900173|T037|AB|W01.0XXA|ICD10CM|Fall same lev from slip/trip w/o strike against object, init|Fall same lev from slip/trip w/o strike against object, init +C2900174|T037|AB|W01.0XXD|ICD10CM|Fall same lev from slip/trip w/o strike against object, subs|Fall same lev from slip/trip w/o strike against object, subs +C2900175|T037|AB|W01.0XXS|ICD10CM|Fall same lev from slip/trip w/o strike agnst object, sqla|Fall same lev from slip/trip w/o strike agnst object, sqla +C2900176|T037|AB|W01.1|ICD10CM|Fall on same level from slip/trip w strike against object|Fall on same level from slip/trip w strike against object +C2900176|T037|HT|W01.1|ICD10CM|Fall on same level from slipping, tripping and stumbling with subsequent striking against object|Fall on same level from slipping, tripping and stumbling with subsequent striking against object +C2900177|T037|AB|W01.10|ICD10CM|Fall same lev from slip/trip w strike against unsp object|Fall same lev from slip/trip w strike against unsp object +C2900178|T037|AB|W01.10XA|ICD10CM|Fall same lev from slip/trip w strike agnst unsp obj, init|Fall same lev from slip/trip w strike agnst unsp obj, init +C2900179|T037|AB|W01.10XD|ICD10CM|Fall same lev from slip/trip w strike agnst unsp obj, subs|Fall same lev from slip/trip w strike agnst unsp obj, subs +C2900180|T037|AB|W01.10XS|ICD10CM|Fall same lev from slip/trip w strike agnst unsp obj, sqla|Fall same lev from slip/trip w strike agnst unsp obj, sqla +C2900181|T037|AB|W01.11|ICD10CM|Fall same lev from slip/trip w strike against sharp object|Fall same lev from slip/trip w strike against sharp object +C2900182|T037|AB|W01.110|ICD10CM|Fall same lev from slip/trip w strike against sharp glass|Fall same lev from slip/trip w strike against sharp glass +C2900183|T037|AB|W01.110A|ICD10CM|Fall same lev from slip/trip w strk agnst sharp glass, init|Fall same lev from slip/trip w strk agnst sharp glass, init +C2900184|T037|AB|W01.110D|ICD10CM|Fall same lev from slip/trip w strk agnst sharp glass, subs|Fall same lev from slip/trip w strk agnst sharp glass, subs +C2900185|T037|AB|W01.110S|ICD10CM|Fall same lev from slip/trip w strk agnst sharp glass, sqla|Fall same lev from slip/trip w strk agnst sharp glass, sqla +C2900186|T037|AB|W01.111|ICD10CM|Fall same lev from slip/trip w strike against pwr tl/machn|Fall same lev from slip/trip w strike against pwr tl/machn +C2900187|T037|AB|W01.111A|ICD10CM|Fall same lev from slip/trip w strk agnst pwr tl/machn, init|Fall same lev from slip/trip w strk agnst pwr tl/machn, init +C2900188|T037|AB|W01.111D|ICD10CM|Fall same lev from slip/trip w strk agnst pwr tl/machn, subs|Fall same lev from slip/trip w strk agnst pwr tl/machn, subs +C2900189|T037|AB|W01.111S|ICD10CM|Fall same lev from slip/trip w strk agnst pwr tl/machn, sqla|Fall same lev from slip/trip w strk agnst pwr tl/machn, sqla +C2900190|T037|AB|W01.118|ICD10CM|Fall same lev from slip/trip w strike agnst oth sharp object|Fall same lev from slip/trip w strike agnst oth sharp object +C2900191|T037|AB|W01.118A|ICD10CM|Fall same lev fr slip/trip w strk agnst oth sharp obj, init|Fall same lev fr slip/trip w strk agnst oth sharp obj, init +C2900192|T037|AB|W01.118D|ICD10CM|Fall same lev fr slip/trip w strk agnst oth sharp obj, subs|Fall same lev fr slip/trip w strk agnst oth sharp obj, subs +C2900193|T037|AB|W01.118S|ICD10CM|Fall same lev fr slip/trip w strk agnst oth sharp obj, sqla|Fall same lev fr slip/trip w strk agnst oth sharp obj, sqla +C2900194|T037|AB|W01.119|ICD10CM|Fall same lev from slip/trip w strike agnst unsp sharp obj|Fall same lev from slip/trip w strike agnst unsp sharp obj +C2900195|T037|AB|W01.119A|ICD10CM|Fall same lev fr slip/trip w strk agnst unsp sharp obj, init|Fall same lev fr slip/trip w strk agnst unsp sharp obj, init +C2900196|T037|AB|W01.119D|ICD10CM|Fall same lev fr slip/trip w strk agnst unsp sharp obj, subs|Fall same lev fr slip/trip w strk agnst unsp sharp obj, subs +C2900197|T037|AB|W01.119S|ICD10CM|Fall same lev fr slip/trip w strk agnst unsp sharp obj, sqla|Fall same lev fr slip/trip w strk agnst unsp sharp obj, sqla +C2900198|T037|AB|W01.19|ICD10CM|Fall same lev from slip/trip w strike against oth object|Fall same lev from slip/trip w strike against oth object +C2900199|T037|AB|W01.190|ICD10CM|Fall on same level from slip/trip w strike against furniture|Fall on same level from slip/trip w strike against furniture +C2900199|T037|HT|W01.190|ICD10CM|Fall on same level from slipping, tripping and stumbling with subsequent striking against furniture|Fall on same level from slipping, tripping and stumbling with subsequent striking against furniture +C2900200|T037|AB|W01.190A|ICD10CM|Fall same lev from slip/trip w strike agnst furniture, init|Fall same lev from slip/trip w strike agnst furniture, init +C2900201|T037|AB|W01.190D|ICD10CM|Fall same lev from slip/trip w strike agnst furniture, subs|Fall same lev from slip/trip w strike agnst furniture, subs +C2900202|T037|AB|W01.190S|ICD10CM|Fall same lev from slip/trip w strike agnst furniture, sqla|Fall same lev from slip/trip w strike agnst furniture, sqla +C2900198|T037|AB|W01.198|ICD10CM|Fall same lev from slip/trip w strike against oth object|Fall same lev from slip/trip w strike against oth object +C2900203|T037|AB|W01.198A|ICD10CM|Fall same lev from slip/trip w strike agnst oth object, init|Fall same lev from slip/trip w strike agnst oth object, init +C2900204|T037|AB|W01.198D|ICD10CM|Fall same lev from slip/trip w strike agnst oth object, subs|Fall same lev from slip/trip w strike agnst oth object, subs +C2900205|T037|AB|W01.198S|ICD10CM|Fall same lev from slip/trip w strike agnst oth object, sqla|Fall same lev from slip/trip w strike agnst oth object, sqla +C0478705|T037|PS|W02|ICD10|Fall involving ice-skates, skis, roller-skates or skateboards|Fall involving ice-skates, skis, roller-skates or skateboards +C0478705|T037|PX|W02|ICD10|Fall involving ice-skates, skis, roller-skates or skateboards causing accidental injury|Fall involving ice-skates, skis, roller-skates or skateboards causing accidental injury +C2900206|T037|ET|W03|ICD10CM|Fall due to non-transport collision with other person|Fall due to non-transport collision with other person +C2900207|T037|AB|W03|ICD10CM|Oth fall on same level due to collision with another person|Oth fall on same level due to collision with another person +C2900207|T037|HT|W03|ICD10CM|Other fall on same level due to collision with another person|Other fall on same level due to collision with another person +C0478716|T037|PS|W03|ICD10|Other fall on same level due to collision with, or pushing by, another person|Other fall on same level due to collision with, or pushing by, another person +C2900208|T037|AB|W03.XXXA|ICD10CM|Oth fall same lev due to collision w another person, init|Oth fall same lev due to collision w another person, init +C2900208|T037|PT|W03.XXXA|ICD10CM|Other fall on same level due to collision with another person, initial encounter|Other fall on same level due to collision with another person, initial encounter +C2900209|T037|AB|W03.XXXD|ICD10CM|Oth fall same lev due to collision w another person, subs|Oth fall same lev due to collision w another person, subs +C2900209|T037|PT|W03.XXXD|ICD10CM|Other fall on same level due to collision with another person, subsequent encounter|Other fall on same level due to collision with another person, subsequent encounter +C2900210|T037|AB|W03.XXXS|ICD10CM|Oth fall same lev due to collision w another person, sequela|Oth fall same lev due to collision w another person, sequela +C2900210|T037|PT|W03.XXXS|ICD10CM|Other fall on same level due to collision with another person, sequela|Other fall on same level due to collision with another person, sequela +C2900211|T037|ET|W04|ICD10CM|Accidentally dropped while being carried|Accidentally dropped while being carried +C0478727|T037|PS|W04|ICD10|Fall while being carried or supported by other persons|Fall while being carried or supported by other persons +C0478727|T037|HT|W04|ICD10CM|Fall while being carried or supported by other persons|Fall while being carried or supported by other persons +C0478727|T037|AB|W04|ICD10CM|Fall while being carried or supported by other persons|Fall while being carried or supported by other persons +C0478727|T037|PX|W04|ICD10|Fall while being carried or supported by other persons causing accidental injury|Fall while being carried or supported by other persons causing accidental injury +C2900212|T037|AB|W04.XXXA|ICD10CM|Fall while being carried or supported by oth persons, init|Fall while being carried or supported by oth persons, init +C2900212|T037|PT|W04.XXXA|ICD10CM|Fall while being carried or supported by other persons, initial encounter|Fall while being carried or supported by other persons, initial encounter +C2900213|T037|AB|W04.XXXD|ICD10CM|Fall while being carried or supported by oth persons, subs|Fall while being carried or supported by oth persons, subs +C2900213|T037|PT|W04.XXXD|ICD10CM|Fall while being carried or supported by other persons, subsequent encounter|Fall while being carried or supported by other persons, subsequent encounter +C2900214|T037|AB|W04.XXXS|ICD10CM|Fall while being carried or supported by oth persons, sqla|Fall while being carried or supported by oth persons, sqla +C2900214|T037|PT|W04.XXXS|ICD10CM|Fall while being carried or supported by other persons, sequela|Fall while being carried or supported by other persons, sequela +C2900215|T037|HT|W05|ICD10CM|Fall from non-moving wheelchair, nonmotorized scooter and motorized mobility scooter|Fall from non-moving wheelchair, nonmotorized scooter and motorized mobility scooter +C2900215|T037|AB|W05|ICD10CM|Fall from wheelchr/nonmotor scoot|Fall from wheelchr/nonmotor scoot +C0337231|T037|PS|W05|ICD10|Fall involving wheelchair|Fall involving wheelchair +C0337231|T037|PX|W05|ICD10|Fall involving wheelchair causing accidental injury|Fall involving wheelchair causing accidental injury +C2977274|T037|HT|W05.0|ICD10CM|Fall from non-moving wheelchair|Fall from non-moving wheelchair +C2977274|T037|AB|W05.0|ICD10CM|Fall from non-moving wheelchair|Fall from non-moving wheelchair +C2977275|T037|AB|W05.0XXA|ICD10CM|Fall from non-moving wheelchair, initial encounter|Fall from non-moving wheelchair, initial encounter +C2977275|T037|PT|W05.0XXA|ICD10CM|Fall from non-moving wheelchair, initial encounter|Fall from non-moving wheelchair, initial encounter +C2977276|T037|AB|W05.0XXD|ICD10CM|Fall from non-moving wheelchair, subsequent encounter|Fall from non-moving wheelchair, subsequent encounter +C2977276|T037|PT|W05.0XXD|ICD10CM|Fall from non-moving wheelchair, subsequent encounter|Fall from non-moving wheelchair, subsequent encounter +C2977277|T037|AB|W05.0XXS|ICD10CM|Fall from non-moving wheelchair, sequela|Fall from non-moving wheelchair, sequela +C2977277|T037|PT|W05.0XXS|ICD10CM|Fall from non-moving wheelchair, sequela|Fall from non-moving wheelchair, sequela +C2977278|T037|HT|W05.1|ICD10CM|Fall from non-moving nonmotorized scooter|Fall from non-moving nonmotorized scooter +C2977278|T037|AB|W05.1|ICD10CM|Fall from non-moving nonmotorized scooter|Fall from non-moving nonmotorized scooter +C2977279|T037|AB|W05.1XXA|ICD10CM|Fall from non-moving nonmotorized scooter, initial encounter|Fall from non-moving nonmotorized scooter, initial encounter +C2977279|T037|PT|W05.1XXA|ICD10CM|Fall from non-moving nonmotorized scooter, initial encounter|Fall from non-moving nonmotorized scooter, initial encounter +C2977280|T037|AB|W05.1XXD|ICD10CM|Fall from non-moving nonmotorized scooter, subs encntr|Fall from non-moving nonmotorized scooter, subs encntr +C2977280|T037|PT|W05.1XXD|ICD10CM|Fall from non-moving nonmotorized scooter, subsequent encounter|Fall from non-moving nonmotorized scooter, subsequent encounter +C2977281|T037|AB|W05.1XXS|ICD10CM|Fall from non-moving nonmotorized scooter, sequela|Fall from non-moving nonmotorized scooter, sequela +C2977281|T037|PT|W05.1XXS|ICD10CM|Fall from non-moving nonmotorized scooter, sequela|Fall from non-moving nonmotorized scooter, sequela +C2977282|T037|AB|W05.2|ICD10CM|Fall from non-moving motorized mobility scooter|Fall from non-moving motorized mobility scooter +C2977282|T037|HT|W05.2|ICD10CM|Fall from non-moving motorized mobility scooter|Fall from non-moving motorized mobility scooter +C2977283|T037|AB|W05.2XXA|ICD10CM|Fall from non-moving motorized mobility scooter, init encntr|Fall from non-moving motorized mobility scooter, init encntr +C2977283|T037|PT|W05.2XXA|ICD10CM|Fall from non-moving motorized mobility scooter, initial encounter|Fall from non-moving motorized mobility scooter, initial encounter +C2977284|T037|AB|W05.2XXD|ICD10CM|Fall from non-moving motorized mobility scooter, subs encntr|Fall from non-moving motorized mobility scooter, subs encntr +C2977284|T037|PT|W05.2XXD|ICD10CM|Fall from non-moving motorized mobility scooter, subsequent encounter|Fall from non-moving motorized mobility scooter, subsequent encounter +C2977285|T037|AB|W05.2XXS|ICD10CM|Fall from non-moving motorized mobility scooter, sequela|Fall from non-moving motorized mobility scooter, sequela +C2977285|T037|PT|W05.2XXS|ICD10CM|Fall from non-moving motorized mobility scooter, sequela|Fall from non-moving motorized mobility scooter, sequela +C0337228|T037|HT|W06|ICD10CM|Fall from bed|Fall from bed +C0337228|T037|AB|W06|ICD10CM|Fall from bed|Fall from bed +C0337228|T037|PS|W06|ICD10|Fall involving bed|Fall involving bed +C0337228|T037|PX|W06|ICD10|Fall involving bed causing accidental injury|Fall involving bed causing accidental injury +C2900219|T037|AB|W06.XXXA|ICD10CM|Fall from bed, initial encounter|Fall from bed, initial encounter +C2900219|T037|PT|W06.XXXA|ICD10CM|Fall from bed, initial encounter|Fall from bed, initial encounter +C2900220|T037|AB|W06.XXXD|ICD10CM|Fall from bed, subsequent encounter|Fall from bed, subsequent encounter +C2900220|T037|PT|W06.XXXD|ICD10CM|Fall from bed, subsequent encounter|Fall from bed, subsequent encounter +C2900221|T037|AB|W06.XXXS|ICD10CM|Fall from bed, sequela|Fall from bed, sequela +C2900221|T037|PT|W06.XXXS|ICD10CM|Fall from bed, sequela|Fall from bed, sequela +C0337230|T037|HT|W07|ICD10CM|Fall from chair|Fall from chair +C0337230|T037|AB|W07|ICD10CM|Fall from chair|Fall from chair +C0337230|T037|PS|W07|ICD10|Fall involving chair|Fall involving chair +C0337230|T037|PX|W07|ICD10|Fall involving chair causing accidental injury|Fall involving chair causing accidental injury +C2900222|T037|AB|W07.XXXA|ICD10CM|Fall from chair, initial encounter|Fall from chair, initial encounter +C2900222|T037|PT|W07.XXXA|ICD10CM|Fall from chair, initial encounter|Fall from chair, initial encounter +C2900223|T037|AB|W07.XXXD|ICD10CM|Fall from chair, subsequent encounter|Fall from chair, subsequent encounter +C2900223|T037|PT|W07.XXXD|ICD10CM|Fall from chair, subsequent encounter|Fall from chair, subsequent encounter +C2900224|T037|AB|W07.XXXS|ICD10CM|Fall from chair, sequela|Fall from chair, sequela +C2900224|T037|PT|W07.XXXS|ICD10CM|Fall from chair, sequela|Fall from chair, sequela +C0375736|T037|AB|W08|ICD10CM|Fall from other furniture|Fall from other furniture +C0375736|T037|HT|W08|ICD10CM|Fall from other furniture|Fall from other furniture +C0478771|T037|PS|W08|ICD10|Fall involving other furniture|Fall involving other furniture +C0478771|T037|PX|W08|ICD10|Fall involving other furniture causing accidental injury|Fall involving other furniture causing accidental injury +C2900225|T037|AB|W08.XXXA|ICD10CM|Fall from other furniture, initial encounter|Fall from other furniture, initial encounter +C2900225|T037|PT|W08.XXXA|ICD10CM|Fall from other furniture, initial encounter|Fall from other furniture, initial encounter +C2900226|T037|AB|W08.XXXD|ICD10CM|Fall from other furniture, subsequent encounter|Fall from other furniture, subsequent encounter +C2900226|T037|PT|W08.XXXD|ICD10CM|Fall from other furniture, subsequent encounter|Fall from other furniture, subsequent encounter +C2900227|T037|AB|W08.XXXS|ICD10CM|Fall from other furniture, sequela|Fall from other furniture, sequela +C2900227|T037|PT|W08.XXXS|ICD10CM|Fall from other furniture, sequela|Fall from other furniture, sequela +C0337234|T033|PS|W09|ICD10|Fall involving playground equipment|Fall involving playground equipment +C0337234|T033|PX|W09|ICD10|Fall involving playground equipment causing accidental injury|Fall involving playground equipment causing accidental injury +C0337234|T033|HT|W09|ICD10CM|Fall on and from playground equipment|Fall on and from playground equipment +C0337234|T033|AB|W09|ICD10CM|Fall on and from playground equipment|Fall on and from playground equipment +C2900228|T037|AB|W09.0|ICD10CM|Fall on or from playground slide|Fall on or from playground slide +C2900228|T037|HT|W09.0|ICD10CM|Fall on or from playground slide|Fall on or from playground slide +C2900229|T037|AB|W09.0XXA|ICD10CM|Fall on or from playground slide, initial encounter|Fall on or from playground slide, initial encounter +C2900229|T037|PT|W09.0XXA|ICD10CM|Fall on or from playground slide, initial encounter|Fall on or from playground slide, initial encounter +C2900230|T037|AB|W09.0XXD|ICD10CM|Fall on or from playground slide, subsequent encounter|Fall on or from playground slide, subsequent encounter +C2900230|T037|PT|W09.0XXD|ICD10CM|Fall on or from playground slide, subsequent encounter|Fall on or from playground slide, subsequent encounter +C2900231|T037|AB|W09.0XXS|ICD10CM|Fall on or from playground slide, sequela|Fall on or from playground slide, sequela +C2900231|T037|PT|W09.0XXS|ICD10CM|Fall on or from playground slide, sequela|Fall on or from playground slide, sequela +C2900232|T037|AB|W09.1|ICD10CM|Fall from playground swing|Fall from playground swing +C2900232|T037|HT|W09.1|ICD10CM|Fall from playground swing|Fall from playground swing +C2900233|T037|AB|W09.1XXA|ICD10CM|Fall from playground swing, initial encounter|Fall from playground swing, initial encounter +C2900233|T037|PT|W09.1XXA|ICD10CM|Fall from playground swing, initial encounter|Fall from playground swing, initial encounter +C2900234|T037|AB|W09.1XXD|ICD10CM|Fall from playground swing, subsequent encounter|Fall from playground swing, subsequent encounter +C2900234|T037|PT|W09.1XXD|ICD10CM|Fall from playground swing, subsequent encounter|Fall from playground swing, subsequent encounter +C2900235|T037|AB|W09.1XXS|ICD10CM|Fall from playground swing, sequela|Fall from playground swing, sequela +C2900235|T037|PT|W09.1XXS|ICD10CM|Fall from playground swing, sequela|Fall from playground swing, sequela +C2900236|T037|AB|W09.2|ICD10CM|Fall on or from jungle gym|Fall on or from jungle gym +C2900236|T037|HT|W09.2|ICD10CM|Fall on or from jungle gym|Fall on or from jungle gym +C2900237|T037|AB|W09.2XXA|ICD10CM|Fall on or from jungle gym, initial encounter|Fall on or from jungle gym, initial encounter +C2900237|T037|PT|W09.2XXA|ICD10CM|Fall on or from jungle gym, initial encounter|Fall on or from jungle gym, initial encounter +C2900238|T037|AB|W09.2XXD|ICD10CM|Fall on or from jungle gym, subsequent encounter|Fall on or from jungle gym, subsequent encounter +C2900238|T037|PT|W09.2XXD|ICD10CM|Fall on or from jungle gym, subsequent encounter|Fall on or from jungle gym, subsequent encounter +C2900239|T037|AB|W09.2XXS|ICD10CM|Fall on or from jungle gym, sequela|Fall on or from jungle gym, sequela +C2900239|T037|PT|W09.2XXS|ICD10CM|Fall on or from jungle gym, sequela|Fall on or from jungle gym, sequela +C2900240|T037|AB|W09.8|ICD10CM|Fall on or from other playground equipment|Fall on or from other playground equipment +C2900240|T037|HT|W09.8|ICD10CM|Fall on or from other playground equipment|Fall on or from other playground equipment +C2900241|T037|AB|W09.8XXA|ICD10CM|Fall on or from other playground equipment, init encntr|Fall on or from other playground equipment, init encntr +C2900241|T037|PT|W09.8XXA|ICD10CM|Fall on or from other playground equipment, initial encounter|Fall on or from other playground equipment, initial encounter +C2900242|T037|AB|W09.8XXD|ICD10CM|Fall on or from other playground equipment, subs encntr|Fall on or from other playground equipment, subs encntr +C2900242|T037|PT|W09.8XXD|ICD10CM|Fall on or from other playground equipment, subsequent encounter|Fall on or from other playground equipment, subsequent encounter +C2900243|T037|AB|W09.8XXS|ICD10CM|Fall on or from other playground equipment, sequela|Fall on or from other playground equipment, sequela +C2900243|T037|PT|W09.8XXS|ICD10CM|Fall on or from other playground equipment, sequela|Fall on or from other playground equipment, sequela +C0417021|T037|PS|W10|ICD10|Fall on and from stairs and steps|Fall on and from stairs and steps +C0417021|T037|HT|W10|ICD10CM|Fall on and from stairs and steps|Fall on and from stairs and steps +C0417021|T037|AB|W10|ICD10CM|Fall on and from stairs and steps|Fall on and from stairs and steps +C0417021|T037|PX|W10|ICD10|Fall on and from stairs and steps causing accidental injury|Fall on and from stairs and steps causing accidental injury +C0417020|T037|AB|W10.0|ICD10CM|Fall (on)(from) escalator|Fall (on)(from) escalator +C0417020|T037|HT|W10.0|ICD10CM|Fall (on)(from) escalator|Fall (on)(from) escalator +C2900244|T037|AB|W10.0XXA|ICD10CM|Fall (on)(from) escalator, initial encounter|Fall (on)(from) escalator, initial encounter +C2900244|T037|PT|W10.0XXA|ICD10CM|Fall (on)(from) escalator, initial encounter|Fall (on)(from) escalator, initial encounter +C2900245|T037|AB|W10.0XXD|ICD10CM|Fall (on)(from) escalator, subsequent encounter|Fall (on)(from) escalator, subsequent encounter +C2900245|T037|PT|W10.0XXD|ICD10CM|Fall (on)(from) escalator, subsequent encounter|Fall (on)(from) escalator, subsequent encounter +C2900246|T037|AB|W10.0XXS|ICD10CM|Fall (on)(from) escalator, sequela|Fall (on)(from) escalator, sequela +C2900246|T037|PT|W10.0XXS|ICD10CM|Fall (on)(from) escalator, sequela|Fall (on)(from) escalator, sequela +C2900247|T037|AB|W10.1|ICD10CM|Fall (on)(from) sidewalk curb|Fall (on)(from) sidewalk curb +C2900247|T037|HT|W10.1|ICD10CM|Fall (on)(from) sidewalk curb|Fall (on)(from) sidewalk curb +C2900248|T037|AB|W10.1XXA|ICD10CM|Fall (on)(from) sidewalk curb, initial encounter|Fall (on)(from) sidewalk curb, initial encounter +C2900248|T037|PT|W10.1XXA|ICD10CM|Fall (on)(from) sidewalk curb, initial encounter|Fall (on)(from) sidewalk curb, initial encounter +C2900249|T037|AB|W10.1XXD|ICD10CM|Fall (on)(from) sidewalk curb, subsequent encounter|Fall (on)(from) sidewalk curb, subsequent encounter +C2900249|T037|PT|W10.1XXD|ICD10CM|Fall (on)(from) sidewalk curb, subsequent encounter|Fall (on)(from) sidewalk curb, subsequent encounter +C2900250|T037|AB|W10.1XXS|ICD10CM|Fall (on)(from) sidewalk curb, sequela|Fall (on)(from) sidewalk curb, sequela +C2900250|T037|PT|W10.1XXS|ICD10CM|Fall (on)(from) sidewalk curb, sequela|Fall (on)(from) sidewalk curb, sequela +C2977286|T037|ET|W10.2|ICD10CM|Fall (on) (from) ramp|Fall (on) (from) ramp +C2900252|T037|AB|W10.2|ICD10CM|Fall (on)(from) incline|Fall (on)(from) incline +C2900252|T037|HT|W10.2|ICD10CM|Fall (on)(from) incline|Fall (on)(from) incline +C2977287|T037|AB|W10.2XXA|ICD10CM|Fall (on)(from) incline, initial encounter|Fall (on)(from) incline, initial encounter +C2977287|T037|PT|W10.2XXA|ICD10CM|Fall (on)(from) incline, initial encounter|Fall (on)(from) incline, initial encounter +C2977288|T037|AB|W10.2XXD|ICD10CM|Fall (on)(from) incline, subsequent encounter|Fall (on)(from) incline, subsequent encounter +C2977288|T037|PT|W10.2XXD|ICD10CM|Fall (on)(from) incline, subsequent encounter|Fall (on)(from) incline, subsequent encounter +C2977289|T037|AB|W10.2XXS|ICD10CM|Fall (on)(from) incline, sequela|Fall (on)(from) incline, sequela +C2977289|T037|PT|W10.2XXS|ICD10CM|Fall (on)(from) incline, sequela|Fall (on)(from) incline, sequela +C2900256|T037|AB|W10.8|ICD10CM|Fall (on) (from) other stairs and steps|Fall (on) (from) other stairs and steps +C2900256|T037|HT|W10.8|ICD10CM|Fall (on) (from) other stairs and steps|Fall (on) (from) other stairs and steps +C2900257|T037|AB|W10.8XXA|ICD10CM|Fall (on) (from) other stairs and steps, initial encounter|Fall (on) (from) other stairs and steps, initial encounter +C2900257|T037|PT|W10.8XXA|ICD10CM|Fall (on) (from) other stairs and steps, initial encounter|Fall (on) (from) other stairs and steps, initial encounter +C2900258|T037|AB|W10.8XXD|ICD10CM|Fall (on) (from) other stairs and steps, subs encntr|Fall (on) (from) other stairs and steps, subs encntr +C2900258|T037|PT|W10.8XXD|ICD10CM|Fall (on) (from) other stairs and steps, subsequent encounter|Fall (on) (from) other stairs and steps, subsequent encounter +C2900259|T037|AB|W10.8XXS|ICD10CM|Fall (on) (from) other stairs and steps, sequela|Fall (on) (from) other stairs and steps, sequela +C2900259|T037|PT|W10.8XXS|ICD10CM|Fall (on) (from) other stairs and steps, sequela|Fall (on) (from) other stairs and steps, sequela +C2900260|T037|AB|W10.9|ICD10CM|Fall (on) (from) unspecified stairs and steps|Fall (on) (from) unspecified stairs and steps +C2900260|T037|HT|W10.9|ICD10CM|Fall (on) (from) unspecified stairs and steps|Fall (on) (from) unspecified stairs and steps +C2900261|T037|AB|W10.9XXA|ICD10CM|Fall (on) (from) unspecified stairs and steps, init encntr|Fall (on) (from) unspecified stairs and steps, init encntr +C2900261|T037|PT|W10.9XXA|ICD10CM|Fall (on) (from) unspecified stairs and steps, initial encounter|Fall (on) (from) unspecified stairs and steps, initial encounter +C2900262|T037|AB|W10.9XXD|ICD10CM|Fall (on) (from) unspecified stairs and steps, subs encntr|Fall (on) (from) unspecified stairs and steps, subs encntr +C2900262|T037|PT|W10.9XXD|ICD10CM|Fall (on) (from) unspecified stairs and steps, subsequent encounter|Fall (on) (from) unspecified stairs and steps, subsequent encounter +C2900263|T037|AB|W10.9XXS|ICD10CM|Fall (on) (from) unspecified stairs and steps, sequela|Fall (on) (from) unspecified stairs and steps, sequela +C2900263|T037|PT|W10.9XXS|ICD10CM|Fall (on) (from) unspecified stairs and steps, sequela|Fall (on) (from) unspecified stairs and steps, sequela +C0337212|T033|HT|W11|ICD10CM|Fall on and from ladder|Fall on and from ladder +C0337212|T033|AB|W11|ICD10CM|Fall on and from ladder|Fall on and from ladder +C0337212|T033|PS|W11|ICD10|Fall on and from ladder|Fall on and from ladder +C0337212|T033|PX|W11|ICD10|Fall on and from ladder causing accidental injury|Fall on and from ladder causing accidental injury +C2900264|T037|AB|W11.XXXA|ICD10CM|Fall on and from ladder, initial encounter|Fall on and from ladder, initial encounter +C2900264|T037|PT|W11.XXXA|ICD10CM|Fall on and from ladder, initial encounter|Fall on and from ladder, initial encounter +C2900265|T037|AB|W11.XXXD|ICD10CM|Fall on and from ladder, subsequent encounter|Fall on and from ladder, subsequent encounter +C2900265|T037|PT|W11.XXXD|ICD10CM|Fall on and from ladder, subsequent encounter|Fall on and from ladder, subsequent encounter +C2900266|T037|AB|W11.XXXS|ICD10CM|Fall on and from ladder, sequela|Fall on and from ladder, sequela +C2900266|T037|PT|W11.XXXS|ICD10CM|Fall on and from ladder, sequela|Fall on and from ladder, sequela +C0337214|T033|PS|W12|ICD10|Fall on and from scaffolding|Fall on and from scaffolding +C0337214|T033|HT|W12|ICD10CM|Fall on and from scaffolding|Fall on and from scaffolding +C0337214|T033|AB|W12|ICD10CM|Fall on and from scaffolding|Fall on and from scaffolding +C0337214|T033|PX|W12|ICD10|Fall on and from scaffolding causing accidental injury|Fall on and from scaffolding causing accidental injury +C2900267|T037|AB|W12.XXXA|ICD10CM|Fall on and from scaffolding, initial encounter|Fall on and from scaffolding, initial encounter +C2900267|T037|PT|W12.XXXA|ICD10CM|Fall on and from scaffolding, initial encounter|Fall on and from scaffolding, initial encounter +C2900268|T037|AB|W12.XXXD|ICD10CM|Fall on and from scaffolding, subsequent encounter|Fall on and from scaffolding, subsequent encounter +C2900268|T037|PT|W12.XXXD|ICD10CM|Fall on and from scaffolding, subsequent encounter|Fall on and from scaffolding, subsequent encounter +C2900269|T037|AB|W12.XXXS|ICD10CM|Fall on and from scaffolding, sequela|Fall on and from scaffolding, sequela +C2900269|T037|PT|W12.XXXS|ICD10CM|Fall on and from scaffolding, sequela|Fall on and from scaffolding, sequela +C0337213|T033|PS|W13|ICD10|Fall from, out of or through building or structure|Fall from, out of or through building or structure +C0337213|T033|HT|W13|ICD10CM|Fall from, out of or through building or structure|Fall from, out of or through building or structure +C0337213|T033|AB|W13|ICD10CM|Fall from, out of or through building or structure|Fall from, out of or through building or structure +C0337213|T033|PX|W13|ICD10|Fall from, out of or through building or structure causing accidental injury|Fall from, out of or through building or structure causing accidental injury +C2900271|T037|AB|W13.0|ICD10CM|Fall from, out of or through balcony|Fall from, out of or through balcony +C2900271|T037|HT|W13.0|ICD10CM|Fall from, out of or through balcony|Fall from, out of or through balcony +C2900270|T037|ET|W13.0|ICD10CM|Fall from, out of or through railing|Fall from, out of or through railing +C2900272|T037|AB|W13.0XXA|ICD10CM|Fall from, out of or through balcony, initial encounter|Fall from, out of or through balcony, initial encounter +C2900272|T037|PT|W13.0XXA|ICD10CM|Fall from, out of or through balcony, initial encounter|Fall from, out of or through balcony, initial encounter +C2900273|T037|AB|W13.0XXD|ICD10CM|Fall from, out of or through balcony, subsequent encounter|Fall from, out of or through balcony, subsequent encounter +C2900273|T037|PT|W13.0XXD|ICD10CM|Fall from, out of or through balcony, subsequent encounter|Fall from, out of or through balcony, subsequent encounter +C2900274|T037|AB|W13.0XXS|ICD10CM|Fall from, out of or through balcony, sequela|Fall from, out of or through balcony, sequela +C2900274|T037|PT|W13.0XXS|ICD10CM|Fall from, out of or through balcony, sequela|Fall from, out of or through balcony, sequela +C2900275|T037|AB|W13.1|ICD10CM|Fall from, out of or through bridge|Fall from, out of or through bridge +C2900275|T037|HT|W13.1|ICD10CM|Fall from, out of or through bridge|Fall from, out of or through bridge +C2900276|T037|AB|W13.1XXA|ICD10CM|Fall from, out of or through bridge, initial encounter|Fall from, out of or through bridge, initial encounter +C2900276|T037|PT|W13.1XXA|ICD10CM|Fall from, out of or through bridge, initial encounter|Fall from, out of or through bridge, initial encounter +C2900277|T037|AB|W13.1XXD|ICD10CM|Fall from, out of or through bridge, subsequent encounter|Fall from, out of or through bridge, subsequent encounter +C2900277|T037|PT|W13.1XXD|ICD10CM|Fall from, out of or through bridge, subsequent encounter|Fall from, out of or through bridge, subsequent encounter +C2900278|T037|AB|W13.1XXS|ICD10CM|Fall from, out of or through bridge, sequela|Fall from, out of or through bridge, sequela +C2900278|T037|PT|W13.1XXS|ICD10CM|Fall from, out of or through bridge, sequela|Fall from, out of or through bridge, sequela +C2900279|T037|AB|W13.2|ICD10CM|Fall from, out of or through roof|Fall from, out of or through roof +C2900279|T037|HT|W13.2|ICD10CM|Fall from, out of or through roof|Fall from, out of or through roof +C2900280|T037|AB|W13.2XXA|ICD10CM|Fall from, out of or through roof, initial encounter|Fall from, out of or through roof, initial encounter +C2900280|T037|PT|W13.2XXA|ICD10CM|Fall from, out of or through roof, initial encounter|Fall from, out of or through roof, initial encounter +C2900281|T037|AB|W13.2XXD|ICD10CM|Fall from, out of or through roof, subsequent encounter|Fall from, out of or through roof, subsequent encounter +C2900281|T037|PT|W13.2XXD|ICD10CM|Fall from, out of or through roof, subsequent encounter|Fall from, out of or through roof, subsequent encounter +C2900282|T037|AB|W13.2XXS|ICD10CM|Fall from, out of or through roof, sequela|Fall from, out of or through roof, sequela +C2900282|T037|PT|W13.2XXS|ICD10CM|Fall from, out of or through roof, sequela|Fall from, out of or through roof, sequela +C2900283|T037|HT|W13.3|ICD10CM|Fall through floor|Fall through floor +C2900283|T037|AB|W13.3|ICD10CM|Fall through floor|Fall through floor +C2900284|T037|AB|W13.3XXA|ICD10CM|Fall through floor, initial encounter|Fall through floor, initial encounter +C2900284|T037|PT|W13.3XXA|ICD10CM|Fall through floor, initial encounter|Fall through floor, initial encounter +C2900285|T037|AB|W13.3XXD|ICD10CM|Fall through floor, subsequent encounter|Fall through floor, subsequent encounter +C2900285|T037|PT|W13.3XXD|ICD10CM|Fall through floor, subsequent encounter|Fall through floor, subsequent encounter +C2900286|T037|AB|W13.3XXS|ICD10CM|Fall through floor, sequela|Fall through floor, sequela +C2900286|T037|PT|W13.3XXS|ICD10CM|Fall through floor, sequela|Fall through floor, sequela +C2900287|T037|AB|W13.4|ICD10CM|Fall from, out of or through window|Fall from, out of or through window +C2900287|T037|HT|W13.4|ICD10CM|Fall from, out of or through window|Fall from, out of or through window +C2900288|T037|AB|W13.4XXA|ICD10CM|Fall from, out of or through window, initial encounter|Fall from, out of or through window, initial encounter +C2900288|T037|PT|W13.4XXA|ICD10CM|Fall from, out of or through window, initial encounter|Fall from, out of or through window, initial encounter +C2900289|T037|AB|W13.4XXD|ICD10CM|Fall from, out of or through window, subsequent encounter|Fall from, out of or through window, subsequent encounter +C2900289|T037|PT|W13.4XXD|ICD10CM|Fall from, out of or through window, subsequent encounter|Fall from, out of or through window, subsequent encounter +C2900290|T037|AB|W13.4XXS|ICD10CM|Fall from, out of or through window, sequela|Fall from, out of or through window, sequela +C2900290|T037|PT|W13.4XXS|ICD10CM|Fall from, out of or through window, sequela|Fall from, out of or through window, sequela +C2900291|T037|ET|W13.8|ICD10CM|Fall from, out of or through flag-pole|Fall from, out of or through flag-pole +C2900294|T037|AB|W13.8|ICD10CM|Fall from, out of or through other building or structure|Fall from, out of or through other building or structure +C2900294|T037|HT|W13.8|ICD10CM|Fall from, out of or through other building or structure|Fall from, out of or through other building or structure +C2900292|T037|ET|W13.8|ICD10CM|Fall from, out of or through viaduct|Fall from, out of or through viaduct +C2900293|T037|ET|W13.8|ICD10CM|Fall from, out of or through wall|Fall from, out of or through wall +C2900295|T037|AB|W13.8XXA|ICD10CM|Fall from, out of or through oth building or structure, init|Fall from, out of or through oth building or structure, init +C2900295|T037|PT|W13.8XXA|ICD10CM|Fall from, out of or through other building or structure, initial encounter|Fall from, out of or through other building or structure, initial encounter +C2900296|T037|AB|W13.8XXD|ICD10CM|Fall from, out of or through oth building or structure, subs|Fall from, out of or through oth building or structure, subs +C2900296|T037|PT|W13.8XXD|ICD10CM|Fall from, out of or through other building or structure, subsequent encounter|Fall from, out of or through other building or structure, subsequent encounter +C2900297|T037|AB|W13.8XXS|ICD10CM|Fall from, out of or through oth bldg, sequela|Fall from, out of or through oth bldg, sequela +C2900297|T037|PT|W13.8XXS|ICD10CM|Fall from, out of or through other building or structure, sequela|Fall from, out of or through other building or structure, sequela +C2900298|T037|AB|W13.9|ICD10CM|Fall from, out of or through building, not otherwise spcf|Fall from, out of or through building, not otherwise spcf +C2900298|T037|HT|W13.9|ICD10CM|Fall from, out of or through building, not otherwise specified|Fall from, out of or through building, not otherwise specified +C2900299|T037|AB|W13.9XXA|ICD10CM|Fall from, out of or through bldg, not otherwise spcf, init|Fall from, out of or through bldg, not otherwise spcf, init +C2900299|T037|PT|W13.9XXA|ICD10CM|Fall from, out of or through building, not otherwise specified, initial encounter|Fall from, out of or through building, not otherwise specified, initial encounter +C2900300|T037|AB|W13.9XXD|ICD10CM|Fall from, out of or through bldg, not otherwise spcf, subs|Fall from, out of or through bldg, not otherwise spcf, subs +C2900300|T037|PT|W13.9XXD|ICD10CM|Fall from, out of or through building, not otherwise specified, subsequent encounter|Fall from, out of or through building, not otherwise specified, subsequent encounter +C2900301|T037|AB|W13.9XXS|ICD10CM|Fall from, out of or through bldg, not otherwise spcf, sqla|Fall from, out of or through bldg, not otherwise spcf, sqla +C2900301|T037|PT|W13.9XXS|ICD10CM|Fall from, out of or through building, not otherwise specified, sequela|Fall from, out of or through building, not otherwise specified, sequela +C0337223|T033|PS|W14|ICD10|Fall from tree|Fall from tree +C0337223|T033|HT|W14|ICD10CM|Fall from tree|Fall from tree +C0337223|T033|AB|W14|ICD10CM|Fall from tree|Fall from tree +C0337223|T033|PX|W14|ICD10|Fall from tree causing accidental injury|Fall from tree causing accidental injury +C2900302|T037|AB|W14.XXXA|ICD10CM|Fall from tree, initial encounter|Fall from tree, initial encounter +C2900302|T037|PT|W14.XXXA|ICD10CM|Fall from tree, initial encounter|Fall from tree, initial encounter +C2900303|T037|AB|W14.XXXD|ICD10CM|Fall from tree, subsequent encounter|Fall from tree, subsequent encounter +C2900303|T037|PT|W14.XXXD|ICD10CM|Fall from tree, subsequent encounter|Fall from tree, subsequent encounter +C2900304|T037|AB|W14.XXXS|ICD10CM|Fall from tree, sequela|Fall from tree, sequela +C2900304|T037|PT|W14.XXXS|ICD10CM|Fall from tree, sequela|Fall from tree, sequela +C0337224|T037|PS|W15|ICD10|Fall from cliff|Fall from cliff +C0337224|T037|HT|W15|ICD10CM|Fall from cliff|Fall from cliff +C0337224|T037|AB|W15|ICD10CM|Fall from cliff|Fall from cliff +C0337224|T037|PX|W15|ICD10|Fall from cliff causing accidental injury|Fall from cliff causing accidental injury +C2900305|T037|AB|W15.XXXA|ICD10CM|Fall from cliff, initial encounter|Fall from cliff, initial encounter +C2900305|T037|PT|W15.XXXA|ICD10CM|Fall from cliff, initial encounter|Fall from cliff, initial encounter +C2900306|T037|AB|W15.XXXD|ICD10CM|Fall from cliff, subsequent encounter|Fall from cliff, subsequent encounter +C2900306|T037|PT|W15.XXXD|ICD10CM|Fall from cliff, subsequent encounter|Fall from cliff, subsequent encounter +C2900307|T037|AB|W15.XXXS|ICD10CM|Fall from cliff, sequela|Fall from cliff, sequela +C2900307|T037|PT|W15.XXXS|ICD10CM|Fall from cliff, sequela|Fall from cliff, sequela +C0478854|T037|PS|W16|ICD10|Diving or jumping into water causing injury other than drowning or submersion|Diving or jumping into water causing injury other than drowning or submersion +C2900308|T037|AB|W16|ICD10CM|Fall, jump or diving into water|Fall, jump or diving into water +C2900308|T037|HT|W16|ICD10CM|Fall, jump or diving into water|Fall, jump or diving into water +C2900310|T037|AB|W16.0|ICD10CM|Fall into swimming pool|Fall into swimming pool +C2900310|T037|HT|W16.0|ICD10CM|Fall into swimming pool|Fall into swimming pool +C2900310|T037|ET|W16.0|ICD10CM|Fall into swimming pool NOS|Fall into swimming pool NOS +C2900311|T037|HT|W16.01|ICD10CM|Fall into swimming pool striking water surface|Fall into swimming pool striking water surface +C2900311|T037|AB|W16.01|ICD10CM|Fall into swimming pool striking water surface|Fall into swimming pool striking water surface +C2900312|T037|AB|W16.011|ICD10CM|Fall into swimming pool striking water surface causing drown|Fall into swimming pool striking water surface causing drown +C2900312|T037|HT|W16.011|ICD10CM|Fall into swimming pool striking water surface causing drowning and submersion|Fall into swimming pool striking water surface causing drowning and submersion +C2900313|T037|AB|W16.011A|ICD10CM|Fall into swimming pool striking surfc causing drown, init|Fall into swimming pool striking surfc causing drown, init +C2900313|T037|PT|W16.011A|ICD10CM|Fall into swimming pool striking water surface causing drowning and submersion, initial encounter|Fall into swimming pool striking water surface causing drowning and submersion, initial encounter +C2900314|T037|AB|W16.011D|ICD10CM|Fall into swimming pool striking surfc causing drown, subs|Fall into swimming pool striking surfc causing drown, subs +C2900314|T037|PT|W16.011D|ICD10CM|Fall into swimming pool striking water surface causing drowning and submersion, subsequent encounter|Fall into swimming pool striking water surface causing drowning and submersion, subsequent encounter +C2900315|T037|PT|W16.011S|ICD10CM|Fall into swimming pool striking water surface causing drowning and submersion, sequela|Fall into swimming pool striking water surface causing drowning and submersion, sequela +C2900315|T037|AB|W16.011S|ICD10CM|Fall into swimming pool strk surfc causing drown, sequela|Fall into swimming pool strk surfc causing drown, sequela +C2900316|T037|AB|W16.012|ICD10CM|Fall into swimming pool striking surfc causing oth injury|Fall into swimming pool striking surfc causing oth injury +C2900316|T037|HT|W16.012|ICD10CM|Fall into swimming pool striking water surface causing other injury|Fall into swimming pool striking water surface causing other injury +C2900317|T037|PT|W16.012A|ICD10CM|Fall into swimming pool striking water surface causing other injury, initial encounter|Fall into swimming pool striking water surface causing other injury, initial encounter +C2900317|T037|AB|W16.012A|ICD10CM|Fall into swimming pool strk surfc causing oth injury, init|Fall into swimming pool strk surfc causing oth injury, init +C2900318|T037|PT|W16.012D|ICD10CM|Fall into swimming pool striking water surface causing other injury, subsequent encounter|Fall into swimming pool striking water surface causing other injury, subsequent encounter +C2900318|T037|AB|W16.012D|ICD10CM|Fall into swimming pool strk surfc causing oth injury, subs|Fall into swimming pool strk surfc causing oth injury, subs +C2900319|T037|AB|W16.012S|ICD10CM|Fall into swim pool strk surfc causing oth injury, sequela|Fall into swim pool strk surfc causing oth injury, sequela +C2900319|T037|PT|W16.012S|ICD10CM|Fall into swimming pool striking water surface causing other injury, sequela|Fall into swimming pool striking water surface causing other injury, sequela +C2900320|T037|HT|W16.02|ICD10CM|Fall into swimming pool striking bottom|Fall into swimming pool striking bottom +C2900320|T037|AB|W16.02|ICD10CM|Fall into swimming pool striking bottom|Fall into swimming pool striking bottom +C2900321|T037|AB|W16.021|ICD10CM|Fall into swimming pool striking bottom causing drown|Fall into swimming pool striking bottom causing drown +C2900321|T037|HT|W16.021|ICD10CM|Fall into swimming pool striking bottom causing drowning and submersion|Fall into swimming pool striking bottom causing drowning and submersion +C2900322|T037|AB|W16.021A|ICD10CM|Fall into swimming pool striking bottom causing drown, init|Fall into swimming pool striking bottom causing drown, init +C2900322|T037|PT|W16.021A|ICD10CM|Fall into swimming pool striking bottom causing drowning and submersion, initial encounter|Fall into swimming pool striking bottom causing drowning and submersion, initial encounter +C2900323|T037|AB|W16.021D|ICD10CM|Fall into swimming pool striking bottom causing drown, subs|Fall into swimming pool striking bottom causing drown, subs +C2900323|T037|PT|W16.021D|ICD10CM|Fall into swimming pool striking bottom causing drowning and submersion, subsequent encounter|Fall into swimming pool striking bottom causing drowning and submersion, subsequent encounter +C2900324|T037|PT|W16.021S|ICD10CM|Fall into swimming pool striking bottom causing drowning and submersion, sequela|Fall into swimming pool striking bottom causing drowning and submersion, sequela +C2900324|T037|AB|W16.021S|ICD10CM|Fall into swimming pool strk bottom causing drown, sequela|Fall into swimming pool strk bottom causing drown, sequela +C2900325|T037|AB|W16.022|ICD10CM|Fall into swimming pool striking bottom causing other injury|Fall into swimming pool striking bottom causing other injury +C2900325|T037|HT|W16.022|ICD10CM|Fall into swimming pool striking bottom causing other injury|Fall into swimming pool striking bottom causing other injury +C2900326|T037|PT|W16.022A|ICD10CM|Fall into swimming pool striking bottom causing other injury, initial encounter|Fall into swimming pool striking bottom causing other injury, initial encounter +C2900326|T037|AB|W16.022A|ICD10CM|Fall into swimming pool strk bottom causing oth injury, init|Fall into swimming pool strk bottom causing oth injury, init +C2900327|T037|PT|W16.022D|ICD10CM|Fall into swimming pool striking bottom causing other injury, subsequent encounter|Fall into swimming pool striking bottom causing other injury, subsequent encounter +C2900327|T037|AB|W16.022D|ICD10CM|Fall into swimming pool strk bottom causing oth injury, subs|Fall into swimming pool strk bottom causing oth injury, subs +C2900328|T037|AB|W16.022S|ICD10CM|Fall into swim pool strk bottom causing oth injury, sequela|Fall into swim pool strk bottom causing oth injury, sequela +C2900328|T037|PT|W16.022S|ICD10CM|Fall into swimming pool striking bottom causing other injury, sequela|Fall into swimming pool striking bottom causing other injury, sequela +C2900329|T037|HT|W16.03|ICD10CM|Fall into swimming pool striking wall|Fall into swimming pool striking wall +C2900329|T037|AB|W16.03|ICD10CM|Fall into swimming pool striking wall|Fall into swimming pool striking wall +C2900330|T037|AB|W16.031|ICD10CM|Fall into swimming pool striking wall causing drown|Fall into swimming pool striking wall causing drown +C2900330|T037|HT|W16.031|ICD10CM|Fall into swimming pool striking wall causing drowning and submersion|Fall into swimming pool striking wall causing drowning and submersion +C2900331|T037|AB|W16.031A|ICD10CM|Fall into swimming pool striking wall causing drown, init|Fall into swimming pool striking wall causing drown, init +C2900331|T037|PT|W16.031A|ICD10CM|Fall into swimming pool striking wall causing drowning and submersion, initial encounter|Fall into swimming pool striking wall causing drowning and submersion, initial encounter +C2900332|T037|AB|W16.031D|ICD10CM|Fall into swimming pool striking wall causing drown, subs|Fall into swimming pool striking wall causing drown, subs +C2900332|T037|PT|W16.031D|ICD10CM|Fall into swimming pool striking wall causing drowning and submersion, subsequent encounter|Fall into swimming pool striking wall causing drowning and submersion, subsequent encounter +C2900333|T037|AB|W16.031S|ICD10CM|Fall into swimming pool striking wall causing drown, sequela|Fall into swimming pool striking wall causing drown, sequela +C2900333|T037|PT|W16.031S|ICD10CM|Fall into swimming pool striking wall causing drowning and submersion, sequela|Fall into swimming pool striking wall causing drowning and submersion, sequela +C2900334|T037|AB|W16.032|ICD10CM|Fall into swimming pool striking wall causing other injury|Fall into swimming pool striking wall causing other injury +C2900334|T037|HT|W16.032|ICD10CM|Fall into swimming pool striking wall causing other injury|Fall into swimming pool striking wall causing other injury +C2900335|T037|PT|W16.032A|ICD10CM|Fall into swimming pool striking wall causing other injury, initial encounter|Fall into swimming pool striking wall causing other injury, initial encounter +C2900335|T037|AB|W16.032A|ICD10CM|Fall into swimming pool strk wall causing oth injury, init|Fall into swimming pool strk wall causing oth injury, init +C2900336|T037|PT|W16.032D|ICD10CM|Fall into swimming pool striking wall causing other injury, subsequent encounter|Fall into swimming pool striking wall causing other injury, subsequent encounter +C2900336|T037|AB|W16.032D|ICD10CM|Fall into swimming pool strk wall causing oth injury, subs|Fall into swimming pool strk wall causing oth injury, subs +C2900337|T037|AB|W16.032S|ICD10CM|Fall into swim pool strk wall causing oth injury, sequela|Fall into swim pool strk wall causing oth injury, sequela +C2900337|T037|PT|W16.032S|ICD10CM|Fall into swimming pool striking wall causing other injury, sequela|Fall into swimming pool striking wall causing other injury, sequela +C2900338|T037|ET|W16.1|ICD10CM|Fall into lake|Fall into lake +C2900342|T037|HT|W16.1|ICD10CM|Fall into natural body of water|Fall into natural body of water +C2900342|T037|AB|W16.1|ICD10CM|Fall into natural body of water|Fall into natural body of water +C2900339|T037|ET|W16.1|ICD10CM|Fall into open sea|Fall into open sea +C2900340|T037|ET|W16.1|ICD10CM|Fall into river|Fall into river +C2900341|T037|ET|W16.1|ICD10CM|Fall into stream|Fall into stream +C2900343|T037|HT|W16.11|ICD10CM|Fall into natural body of water striking water surface|Fall into natural body of water striking water surface +C2900343|T037|AB|W16.11|ICD10CM|Fall into natural body of water striking water surface|Fall into natural body of water striking water surface +C2900344|T037|AB|W16.111|ICD10CM|Fall into natural body of water striking surfc causing drown|Fall into natural body of water striking surfc causing drown +C2900344|T037|HT|W16.111|ICD10CM|Fall into natural body of water striking water surface causing drowning and submersion|Fall into natural body of water striking water surface causing drowning and submersion +C2900345|T037|AB|W16.111A|ICD10CM|Fall into natural body of water strk surfc cause drown, init|Fall into natural body of water strk surfc cause drown, init +C2900346|T037|AB|W16.111D|ICD10CM|Fall into natural body of water strk surfc cause drown, subs|Fall into natural body of water strk surfc cause drown, subs +C2900347|T037|AB|W16.111S|ICD10CM|Fall into natrl body of water strk surfc cause drown, sqla|Fall into natrl body of water strk surfc cause drown, sqla +C2900347|T037|PT|W16.111S|ICD10CM|Fall into natural body of water striking water surface causing drowning and submersion, sequela|Fall into natural body of water striking water surface causing drowning and submersion, sequela +C2900348|T037|HT|W16.112|ICD10CM|Fall into natural body of water striking water surface causing other injury|Fall into natural body of water striking water surface causing other injury +C2900348|T037|AB|W16.112|ICD10CM|Fall into natural body of water strk surfc cause oth injury|Fall into natural body of water strk surfc cause oth injury +C2900349|T037|AB|W16.112A|ICD10CM|Fall into natrl body of water strk surfc cause oth inj, init|Fall into natrl body of water strk surfc cause oth inj, init +C2900349|T037|PT|W16.112A|ICD10CM|Fall into natural body of water striking water surface causing other injury, initial encounter|Fall into natural body of water striking water surface causing other injury, initial encounter +C2900350|T037|AB|W16.112D|ICD10CM|Fall into natrl body of water strk surfc cause oth inj, subs|Fall into natrl body of water strk surfc cause oth inj, subs +C2900350|T037|PT|W16.112D|ICD10CM|Fall into natural body of water striking water surface causing other injury, subsequent encounter|Fall into natural body of water striking water surface causing other injury, subsequent encounter +C2900351|T037|AB|W16.112S|ICD10CM|Fall into natrl body of water strk surfc cause oth inj, sqla|Fall into natrl body of water strk surfc cause oth inj, sqla +C2900351|T037|PT|W16.112S|ICD10CM|Fall into natural body of water striking water surface causing other injury, sequela|Fall into natural body of water striking water surface causing other injury, sequela +C2900352|T037|HT|W16.12|ICD10CM|Fall into natural body of water striking bottom|Fall into natural body of water striking bottom +C2900352|T037|AB|W16.12|ICD10CM|Fall into natural body of water striking bottom|Fall into natural body of water striking bottom +C2900353|T037|HT|W16.121|ICD10CM|Fall into natural body of water striking bottom causing drowning and submersion|Fall into natural body of water striking bottom causing drowning and submersion +C2900353|T037|AB|W16.121|ICD10CM|Fall into natural body of water strk bottom causing drown|Fall into natural body of water strk bottom causing drown +C2900354|T037|AB|W16.121A|ICD10CM|Fall into natrl body of water strk bottom cause drown, init|Fall into natrl body of water strk bottom cause drown, init +C2900354|T037|PT|W16.121A|ICD10CM|Fall into natural body of water striking bottom causing drowning and submersion, initial encounter|Fall into natural body of water striking bottom causing drowning and submersion, initial encounter +C2900355|T037|AB|W16.121D|ICD10CM|Fall into natrl body of water strk bottom cause drown, subs|Fall into natrl body of water strk bottom cause drown, subs +C2900356|T037|AB|W16.121S|ICD10CM|Fall into natrl body of water strk bottom cause drown, sqla|Fall into natrl body of water strk bottom cause drown, sqla +C2900356|T037|PT|W16.121S|ICD10CM|Fall into natural body of water striking bottom causing drowning and submersion, sequela|Fall into natural body of water striking bottom causing drowning and submersion, sequela +C2900357|T037|HT|W16.122|ICD10CM|Fall into natural body of water striking bottom causing other injury|Fall into natural body of water striking bottom causing other injury +C2900357|T037|AB|W16.122|ICD10CM|Fall into natural body of water strk bottom cause oth injury|Fall into natural body of water strk bottom cause oth injury +C2900358|T037|AB|W16.122A|ICD10CM|Fall into natrl body of water strk botm cause oth inj, init|Fall into natrl body of water strk botm cause oth inj, init +C2900358|T037|PT|W16.122A|ICD10CM|Fall into natural body of water striking bottom causing other injury, initial encounter|Fall into natural body of water striking bottom causing other injury, initial encounter +C2900359|T037|AB|W16.122D|ICD10CM|Fall into natrl body of water strk botm cause oth inj, subs|Fall into natrl body of water strk botm cause oth inj, subs +C2900359|T037|PT|W16.122D|ICD10CM|Fall into natural body of water striking bottom causing other injury, subsequent encounter|Fall into natural body of water striking bottom causing other injury, subsequent encounter +C2900360|T037|AB|W16.122S|ICD10CM|Fall into natrl body of water strk botm cause oth inj, sqla|Fall into natrl body of water strk botm cause oth inj, sqla +C2900360|T037|PT|W16.122S|ICD10CM|Fall into natural body of water striking bottom causing other injury, sequela|Fall into natural body of water striking bottom causing other injury, sequela +C2900361|T037|HT|W16.13|ICD10CM|Fall into natural body of water striking side|Fall into natural body of water striking side +C2900361|T037|AB|W16.13|ICD10CM|Fall into natural body of water striking side|Fall into natural body of water striking side +C2900362|T037|AB|W16.131|ICD10CM|Fall into natural body of water striking side causing drown|Fall into natural body of water striking side causing drown +C2900362|T037|HT|W16.131|ICD10CM|Fall into natural body of water striking side causing drowning and submersion|Fall into natural body of water striking side causing drowning and submersion +C2900363|T037|PT|W16.131A|ICD10CM|Fall into natural body of water striking side causing drowning and submersion, initial encounter|Fall into natural body of water striking side causing drowning and submersion, initial encounter +C2900363|T037|AB|W16.131A|ICD10CM|Fall into natural body of water strk side cause drown, init|Fall into natural body of water strk side cause drown, init +C2900364|T037|PT|W16.131D|ICD10CM|Fall into natural body of water striking side causing drowning and submersion, subsequent encounter|Fall into natural body of water striking side causing drowning and submersion, subsequent encounter +C2900364|T037|AB|W16.131D|ICD10CM|Fall into natural body of water strk side cause drown, subs|Fall into natural body of water strk side cause drown, subs +C2900365|T037|AB|W16.131S|ICD10CM|Fall into natrl body of water strk side cause drown, sequela|Fall into natrl body of water strk side cause drown, sequela +C2900365|T037|PT|W16.131S|ICD10CM|Fall into natural body of water striking side causing drowning and submersion, sequela|Fall into natural body of water striking side causing drowning and submersion, sequela +C2900366|T037|HT|W16.132|ICD10CM|Fall into natural body of water striking side causing other injury|Fall into natural body of water striking side causing other injury +C2900366|T037|AB|W16.132|ICD10CM|Fall into natural body of water strk side causing oth injury|Fall into natural body of water strk side causing oth injury +C2900367|T037|AB|W16.132A|ICD10CM|Fall into natrl body of water strk side cause oth inj, init|Fall into natrl body of water strk side cause oth inj, init +C2900367|T037|PT|W16.132A|ICD10CM|Fall into natural body of water striking side causing other injury, initial encounter|Fall into natural body of water striking side causing other injury, initial encounter +C2900368|T037|AB|W16.132D|ICD10CM|Fall into natrl body of water strk side cause oth inj, subs|Fall into natrl body of water strk side cause oth inj, subs +C2900368|T037|PT|W16.132D|ICD10CM|Fall into natural body of water striking side causing other injury, subsequent encounter|Fall into natural body of water striking side causing other injury, subsequent encounter +C2900369|T037|AB|W16.132S|ICD10CM|Fall into natrl body of water strk side cause oth inj, sqla|Fall into natrl body of water strk side cause oth inj, sqla +C2900369|T037|PT|W16.132S|ICD10CM|Fall into natural body of water striking side causing other injury, sequela|Fall into natural body of water striking side causing other injury, sequela +C2900370|T037|AB|W16.2|ICD10CM|Fall in (into) filled bathtub or bucket of water|Fall in (into) filled bathtub or bucket of water +C2900370|T037|HT|W16.2|ICD10CM|Fall in (into) filled bathtub or bucket of water|Fall in (into) filled bathtub or bucket of water +C2900371|T037|AB|W16.21|ICD10CM|Fall in (into) filled bathtub|Fall in (into) filled bathtub +C2900371|T037|HT|W16.21|ICD10CM|Fall in (into) filled bathtub|Fall in (into) filled bathtub +C2900372|T037|AB|W16.211|ICD10CM|Fall in (into) filled bathtub causing drown|Fall in (into) filled bathtub causing drown +C2900372|T037|HT|W16.211|ICD10CM|Fall in (into) filled bathtub causing drowning and submersion|Fall in (into) filled bathtub causing drowning and submersion +C2900373|T037|AB|W16.211A|ICD10CM|Fall in (into) filled bathtub causing drown, init|Fall in (into) filled bathtub causing drown, init +C2900373|T037|PT|W16.211A|ICD10CM|Fall in (into) filled bathtub causing drowning and submersion, initial encounter|Fall in (into) filled bathtub causing drowning and submersion, initial encounter +C2900374|T037|AB|W16.211D|ICD10CM|Fall in (into) filled bathtub causing drown, subs|Fall in (into) filled bathtub causing drown, subs +C2900374|T037|PT|W16.211D|ICD10CM|Fall in (into) filled bathtub causing drowning and submersion, subsequent encounter|Fall in (into) filled bathtub causing drowning and submersion, subsequent encounter +C2900375|T037|AB|W16.211S|ICD10CM|Fall in (into) filled bathtub causing drown, sequela|Fall in (into) filled bathtub causing drown, sequela +C2900375|T037|PT|W16.211S|ICD10CM|Fall in (into) filled bathtub causing drowning and submersion, sequela|Fall in (into) filled bathtub causing drowning and submersion, sequela +C2900376|T037|AB|W16.212|ICD10CM|Fall in (into) filled bathtub causing other injury|Fall in (into) filled bathtub causing other injury +C2900376|T037|HT|W16.212|ICD10CM|Fall in (into) filled bathtub causing other injury|Fall in (into) filled bathtub causing other injury +C2900377|T037|AB|W16.212A|ICD10CM|Fall in (into) filled bathtub causing oth injury, init|Fall in (into) filled bathtub causing oth injury, init +C2900377|T037|PT|W16.212A|ICD10CM|Fall in (into) filled bathtub causing other injury, initial encounter|Fall in (into) filled bathtub causing other injury, initial encounter +C2900378|T037|AB|W16.212D|ICD10CM|Fall in (into) filled bathtub causing oth injury, subs|Fall in (into) filled bathtub causing oth injury, subs +C2900378|T037|PT|W16.212D|ICD10CM|Fall in (into) filled bathtub causing other injury, subsequent encounter|Fall in (into) filled bathtub causing other injury, subsequent encounter +C2900379|T037|AB|W16.212S|ICD10CM|Fall in (into) filled bathtub causing other injury, sequela|Fall in (into) filled bathtub causing other injury, sequela +C2900379|T037|PT|W16.212S|ICD10CM|Fall in (into) filled bathtub causing other injury, sequela|Fall in (into) filled bathtub causing other injury, sequela +C2900380|T037|AB|W16.22|ICD10CM|Fall in (into) bucket of water|Fall in (into) bucket of water +C2900380|T037|HT|W16.22|ICD10CM|Fall in (into) bucket of water|Fall in (into) bucket of water +C2900381|T037|AB|W16.221|ICD10CM|Fall in (into) bucket of water causing drown|Fall in (into) bucket of water causing drown +C2900381|T037|HT|W16.221|ICD10CM|Fall in (into) bucket of water causing drowning and submersion|Fall in (into) bucket of water causing drowning and submersion +C2900382|T037|AB|W16.221A|ICD10CM|Fall in (into) bucket of water causing drown, init|Fall in (into) bucket of water causing drown, init +C2900382|T037|PT|W16.221A|ICD10CM|Fall in (into) bucket of water causing drowning and submersion, initial encounter|Fall in (into) bucket of water causing drowning and submersion, initial encounter +C2900383|T037|AB|W16.221D|ICD10CM|Fall in (into) bucket of water causing drown, subs|Fall in (into) bucket of water causing drown, subs +C2900383|T037|PT|W16.221D|ICD10CM|Fall in (into) bucket of water causing drowning and submersion, subsequent encounter|Fall in (into) bucket of water causing drowning and submersion, subsequent encounter +C2900384|T037|AB|W16.221S|ICD10CM|Fall in (into) bucket of water causing drown, sequela|Fall in (into) bucket of water causing drown, sequela +C2900384|T037|PT|W16.221S|ICD10CM|Fall in (into) bucket of water causing drowning and submersion, sequela|Fall in (into) bucket of water causing drowning and submersion, sequela +C2900385|T037|AB|W16.222|ICD10CM|Fall in (into) bucket of water causing other injury|Fall in (into) bucket of water causing other injury +C2900385|T037|HT|W16.222|ICD10CM|Fall in (into) bucket of water causing other injury|Fall in (into) bucket of water causing other injury +C2900386|T037|AB|W16.222A|ICD10CM|Fall in (into) bucket of water causing oth injury, init|Fall in (into) bucket of water causing oth injury, init +C2900386|T037|PT|W16.222A|ICD10CM|Fall in (into) bucket of water causing other injury, initial encounter|Fall in (into) bucket of water causing other injury, initial encounter +C2900387|T037|AB|W16.222D|ICD10CM|Fall in (into) bucket of water causing oth injury, subs|Fall in (into) bucket of water causing oth injury, subs +C2900387|T037|PT|W16.222D|ICD10CM|Fall in (into) bucket of water causing other injury, subsequent encounter|Fall in (into) bucket of water causing other injury, subsequent encounter +C2900388|T037|AB|W16.222S|ICD10CM|Fall in (into) bucket of water causing other injury, sequela|Fall in (into) bucket of water causing other injury, sequela +C2900388|T037|PT|W16.222S|ICD10CM|Fall in (into) bucket of water causing other injury, sequela|Fall in (into) bucket of water causing other injury, sequela +C2900389|T037|ET|W16.3|ICD10CM|Fall into fountain|Fall into fountain +C2900391|T037|HT|W16.3|ICD10CM|Fall into other water|Fall into other water +C2900391|T037|AB|W16.3|ICD10CM|Fall into other water|Fall into other water +C2900390|T037|ET|W16.3|ICD10CM|Fall into reservoir|Fall into reservoir +C2900392|T037|HT|W16.31|ICD10CM|Fall into other water striking water surface|Fall into other water striking water surface +C2900392|T037|AB|W16.31|ICD10CM|Fall into other water striking water surface|Fall into other water striking water surface +C2900393|T037|AB|W16.311|ICD10CM|Fall into oth water striking water surface causing drown|Fall into oth water striking water surface causing drown +C2900393|T037|HT|W16.311|ICD10CM|Fall into other water striking water surface causing drowning and submersion|Fall into other water striking water surface causing drowning and submersion +C2900394|T037|AB|W16.311A|ICD10CM|Fall into oth water striking surfc causing drown, init|Fall into oth water striking surfc causing drown, init +C2900394|T037|PT|W16.311A|ICD10CM|Fall into other water striking water surface causing drowning and submersion, initial encounter|Fall into other water striking water surface causing drowning and submersion, initial encounter +C2900395|T037|AB|W16.311D|ICD10CM|Fall into oth water striking surfc causing drown, subs|Fall into oth water striking surfc causing drown, subs +C2900395|T037|PT|W16.311D|ICD10CM|Fall into other water striking water surface causing drowning and submersion, subsequent encounter|Fall into other water striking water surface causing drowning and submersion, subsequent encounter +C2900396|T037|AB|W16.311S|ICD10CM|Fall into oth water striking surfc causing drown, sequela|Fall into oth water striking surfc causing drown, sequela +C2900396|T037|PT|W16.311S|ICD10CM|Fall into other water striking water surface causing drowning and submersion, sequela|Fall into other water striking water surface causing drowning and submersion, sequela +C2900397|T037|AB|W16.312|ICD10CM|Fall into oth water striking surfc causing oth injury|Fall into oth water striking surfc causing oth injury +C2900397|T037|HT|W16.312|ICD10CM|Fall into other water striking water surface causing other injury|Fall into other water striking water surface causing other injury +C2900398|T037|AB|W16.312A|ICD10CM|Fall into oth water striking surfc causing oth injury, init|Fall into oth water striking surfc causing oth injury, init +C2900398|T037|PT|W16.312A|ICD10CM|Fall into other water striking water surface causing other injury, initial encounter|Fall into other water striking water surface causing other injury, initial encounter +C2900399|T037|AB|W16.312D|ICD10CM|Fall into oth water striking surfc causing oth injury, subs|Fall into oth water striking surfc causing oth injury, subs +C2900399|T037|PT|W16.312D|ICD10CM|Fall into other water striking water surface causing other injury, subsequent encounter|Fall into other water striking water surface causing other injury, subsequent encounter +C2900400|T037|AB|W16.312S|ICD10CM|Fall into oth water strk surfc causing oth injury, sequela|Fall into oth water strk surfc causing oth injury, sequela +C2900400|T037|PT|W16.312S|ICD10CM|Fall into other water striking water surface causing other injury, sequela|Fall into other water striking water surface causing other injury, sequela +C2900401|T037|HT|W16.32|ICD10CM|Fall into other water striking bottom|Fall into other water striking bottom +C2900401|T037|AB|W16.32|ICD10CM|Fall into other water striking bottom|Fall into other water striking bottom +C2900402|T037|AB|W16.321|ICD10CM|Fall into oth water striking bottom causing drown|Fall into oth water striking bottom causing drown +C2900402|T037|HT|W16.321|ICD10CM|Fall into other water striking bottom causing drowning and submersion|Fall into other water striking bottom causing drowning and submersion +C2900403|T037|AB|W16.321A|ICD10CM|Fall into oth water striking bottom causing drown, init|Fall into oth water striking bottom causing drown, init +C2900403|T037|PT|W16.321A|ICD10CM|Fall into other water striking bottom causing drowning and submersion, initial encounter|Fall into other water striking bottom causing drowning and submersion, initial encounter +C2900404|T037|AB|W16.321D|ICD10CM|Fall into oth water striking bottom causing drown, subs|Fall into oth water striking bottom causing drown, subs +C2900404|T037|PT|W16.321D|ICD10CM|Fall into other water striking bottom causing drowning and submersion, subsequent encounter|Fall into other water striking bottom causing drowning and submersion, subsequent encounter +C2900405|T037|AB|W16.321S|ICD10CM|Fall into oth water striking bottom causing drown, sequela|Fall into oth water striking bottom causing drown, sequela +C2900405|T037|PT|W16.321S|ICD10CM|Fall into other water striking bottom causing drowning and submersion, sequela|Fall into other water striking bottom causing drowning and submersion, sequela +C2900406|T037|AB|W16.322|ICD10CM|Fall into other water striking bottom causing other injury|Fall into other water striking bottom causing other injury +C2900406|T037|HT|W16.322|ICD10CM|Fall into other water striking bottom causing other injury|Fall into other water striking bottom causing other injury +C2900407|T037|AB|W16.322A|ICD10CM|Fall into oth water striking bottom causing oth injury, init|Fall into oth water striking bottom causing oth injury, init +C2900407|T037|PT|W16.322A|ICD10CM|Fall into other water striking bottom causing other injury, initial encounter|Fall into other water striking bottom causing other injury, initial encounter +C2900408|T037|AB|W16.322D|ICD10CM|Fall into oth water striking bottom causing oth injury, subs|Fall into oth water striking bottom causing oth injury, subs +C2900408|T037|PT|W16.322D|ICD10CM|Fall into other water striking bottom causing other injury, subsequent encounter|Fall into other water striking bottom causing other injury, subsequent encounter +C2900409|T037|AB|W16.322S|ICD10CM|Fall into oth water strk bottom causing oth injury, sequela|Fall into oth water strk bottom causing oth injury, sequela +C2900409|T037|PT|W16.322S|ICD10CM|Fall into other water striking bottom causing other injury, sequela|Fall into other water striking bottom causing other injury, sequela +C2900410|T037|HT|W16.33|ICD10CM|Fall into other water striking wall|Fall into other water striking wall +C2900410|T037|AB|W16.33|ICD10CM|Fall into other water striking wall|Fall into other water striking wall +C2900411|T037|AB|W16.331|ICD10CM|Fall into oth water striking wall causing drown|Fall into oth water striking wall causing drown +C2900411|T037|HT|W16.331|ICD10CM|Fall into other water striking wall causing drowning and submersion|Fall into other water striking wall causing drowning and submersion +C2900412|T037|AB|W16.331A|ICD10CM|Fall into oth water striking wall causing drown, init|Fall into oth water striking wall causing drown, init +C2900412|T037|PT|W16.331A|ICD10CM|Fall into other water striking wall causing drowning and submersion, initial encounter|Fall into other water striking wall causing drowning and submersion, initial encounter +C2900413|T037|AB|W16.331D|ICD10CM|Fall into oth water striking wall causing drown, subs|Fall into oth water striking wall causing drown, subs +C2900413|T037|PT|W16.331D|ICD10CM|Fall into other water striking wall causing drowning and submersion, subsequent encounter|Fall into other water striking wall causing drowning and submersion, subsequent encounter +C2900414|T037|AB|W16.331S|ICD10CM|Fall into oth water striking wall causing drown, sequela|Fall into oth water striking wall causing drown, sequela +C2900414|T037|PT|W16.331S|ICD10CM|Fall into other water striking wall causing drowning and submersion, sequela|Fall into other water striking wall causing drowning and submersion, sequela +C2900415|T037|AB|W16.332|ICD10CM|Fall into other water striking wall causing other injury|Fall into other water striking wall causing other injury +C2900415|T037|HT|W16.332|ICD10CM|Fall into other water striking wall causing other injury|Fall into other water striking wall causing other injury +C2900416|T037|AB|W16.332A|ICD10CM|Fall into oth water striking wall causing oth injury, init|Fall into oth water striking wall causing oth injury, init +C2900416|T037|PT|W16.332A|ICD10CM|Fall into other water striking wall causing other injury, initial encounter|Fall into other water striking wall causing other injury, initial encounter +C2900417|T037|AB|W16.332D|ICD10CM|Fall into oth water striking wall causing oth injury, subs|Fall into oth water striking wall causing oth injury, subs +C2900417|T037|PT|W16.332D|ICD10CM|Fall into other water striking wall causing other injury, subsequent encounter|Fall into other water striking wall causing other injury, subsequent encounter +C2900418|T037|AB|W16.332S|ICD10CM|Fall into oth water strk wall causing oth injury, sequela|Fall into oth water strk wall causing oth injury, sequela +C2900418|T037|PT|W16.332S|ICD10CM|Fall into other water striking wall causing other injury, sequela|Fall into other water striking wall causing other injury, sequela +C2900419|T037|AB|W16.4|ICD10CM|Fall into unspecified water|Fall into unspecified water +C2900419|T037|HT|W16.4|ICD10CM|Fall into unspecified water|Fall into unspecified water +C2900420|T037|AB|W16.41|ICD10CM|Fall into unspecified water causing drowning and submersion|Fall into unspecified water causing drowning and submersion +C2900420|T037|HT|W16.41|ICD10CM|Fall into unspecified water causing drowning and submersion|Fall into unspecified water causing drowning and submersion +C2900421|T037|AB|W16.41XA|ICD10CM|Fall into unsp water causing drowning and submersion, init|Fall into unsp water causing drowning and submersion, init +C2900421|T037|PT|W16.41XA|ICD10CM|Fall into unspecified water causing drowning and submersion, initial encounter|Fall into unspecified water causing drowning and submersion, initial encounter +C2900422|T037|AB|W16.41XD|ICD10CM|Fall into unsp water causing drowning and submersion, subs|Fall into unsp water causing drowning and submersion, subs +C2900422|T037|PT|W16.41XD|ICD10CM|Fall into unspecified water causing drowning and submersion, subsequent encounter|Fall into unspecified water causing drowning and submersion, subsequent encounter +C2900423|T037|AB|W16.41XS|ICD10CM|Fall into unsp water causing drown, sequela|Fall into unsp water causing drown, sequela +C2900423|T037|PT|W16.41XS|ICD10CM|Fall into unspecified water causing drowning and submersion, sequela|Fall into unspecified water causing drowning and submersion, sequela +C2900424|T037|AB|W16.42|ICD10CM|Fall into unspecified water causing other injury|Fall into unspecified water causing other injury +C2900424|T037|HT|W16.42|ICD10CM|Fall into unspecified water causing other injury|Fall into unspecified water causing other injury +C2900425|T037|AB|W16.42XA|ICD10CM|Fall into unsp water causing other injury, init encntr|Fall into unsp water causing other injury, init encntr +C2900425|T037|PT|W16.42XA|ICD10CM|Fall into unspecified water causing other injury, initial encounter|Fall into unspecified water causing other injury, initial encounter +C2900426|T037|AB|W16.42XD|ICD10CM|Fall into unsp water causing other injury, subs encntr|Fall into unsp water causing other injury, subs encntr +C2900426|T037|PT|W16.42XD|ICD10CM|Fall into unspecified water causing other injury, subsequent encounter|Fall into unspecified water causing other injury, subsequent encounter +C2900427|T037|AB|W16.42XS|ICD10CM|Fall into unspecified water causing other injury, sequela|Fall into unspecified water causing other injury, sequela +C2900427|T037|PT|W16.42XS|ICD10CM|Fall into unspecified water causing other injury, sequela|Fall into unspecified water causing other injury, sequela +C2900428|T037|HT|W16.5|ICD10CM|Jumping or diving into swimming pool|Jumping or diving into swimming pool +C2900428|T037|AB|W16.5|ICD10CM|Jumping or diving into swimming pool|Jumping or diving into swimming pool +C2900429|T037|HT|W16.51|ICD10CM|Jumping or diving into swimming pool striking water surface|Jumping or diving into swimming pool striking water surface +C2900429|T037|AB|W16.51|ICD10CM|Jumping or diving into swimming pool striking water surface|Jumping or diving into swimming pool striking water surface +C2900430|T037|AB|W16.511|ICD10CM|Jump/div into swimming pool striking surfc causing drown|Jump/div into swimming pool striking surfc causing drown +C2900430|T037|HT|W16.511|ICD10CM|Jumping or diving into swimming pool striking water surface causing drowning and submersion|Jumping or diving into swimming pool striking water surface causing drowning and submersion +C2900431|T037|AB|W16.511A|ICD10CM|Jump/div into swimming pool strk surfc causing drown, init|Jump/div into swimming pool strk surfc causing drown, init +C2900432|T037|AB|W16.511D|ICD10CM|Jump/div into swimming pool strk surfc causing drown, subs|Jump/div into swimming pool strk surfc causing drown, subs +C2900433|T037|AB|W16.511S|ICD10CM|Jump/div into swim pool strk surfc causing drown, sequela|Jump/div into swim pool strk surfc causing drown, sequela +C2900433|T037|PT|W16.511S|ICD10CM|Jumping or diving into swimming pool striking water surface causing drowning and submersion, sequela|Jumping or diving into swimming pool striking water surface causing drowning and submersion, sequela +C2900434|T037|AB|W16.512|ICD10CM|Jump/div into swimming pool strk surfc causing oth injury|Jump/div into swimming pool strk surfc causing oth injury +C2900434|T037|HT|W16.512|ICD10CM|Jumping or diving into swimming pool striking water surface causing other injury|Jumping or diving into swimming pool striking water surface causing other injury +C2900435|T037|AB|W16.512A|ICD10CM|Jump/div into swim pool strk surfc causing oth injury, init|Jump/div into swim pool strk surfc causing oth injury, init +C2900435|T037|PT|W16.512A|ICD10CM|Jumping or diving into swimming pool striking water surface causing other injury, initial encounter|Jumping or diving into swimming pool striking water surface causing other injury, initial encounter +C2900436|T037|AB|W16.512D|ICD10CM|Jump/div into swim pool strk surfc causing oth injury, subs|Jump/div into swim pool strk surfc causing oth injury, subs +C2903807|T037|AB|W16.512S|ICD10CM|Jump/div into swim pool strk surfc cause oth injury, sequela|Jump/div into swim pool strk surfc cause oth injury, sequela +C2903807|T037|PT|W16.512S|ICD10CM|Jumping or diving into swimming pool striking water surface causing other injury, sequela|Jumping or diving into swimming pool striking water surface causing other injury, sequela +C2903808|T037|HT|W16.52|ICD10CM|Jumping or diving into swimming pool striking bottom|Jumping or diving into swimming pool striking bottom +C2903808|T037|AB|W16.52|ICD10CM|Jumping or diving into swimming pool striking bottom|Jumping or diving into swimming pool striking bottom +C2903809|T037|AB|W16.521|ICD10CM|Jump/div into swimming pool striking bottom causing drown|Jump/div into swimming pool striking bottom causing drown +C2903809|T037|HT|W16.521|ICD10CM|Jumping or diving into swimming pool striking bottom causing drowning and submersion|Jumping or diving into swimming pool striking bottom causing drowning and submersion +C2903810|T037|AB|W16.521A|ICD10CM|Jump/div into swimming pool strk bottom causing drown, init|Jump/div into swimming pool strk bottom causing drown, init +C2903811|T037|AB|W16.521D|ICD10CM|Jump/div into swimming pool strk bottom causing drown, subs|Jump/div into swimming pool strk bottom causing drown, subs +C2903812|T037|AB|W16.521S|ICD10CM|Jump/div into swim pool strk bottom causing drown, sequela|Jump/div into swim pool strk bottom causing drown, sequela +C2903812|T037|PT|W16.521S|ICD10CM|Jumping or diving into swimming pool striking bottom causing drowning and submersion, sequela|Jumping or diving into swimming pool striking bottom causing drowning and submersion, sequela +C2903813|T037|AB|W16.522|ICD10CM|Jump/div into swimming pool strk bottom causing oth injury|Jump/div into swimming pool strk bottom causing oth injury +C2903813|T037|HT|W16.522|ICD10CM|Jumping or diving into swimming pool striking bottom causing other injury|Jumping or diving into swimming pool striking bottom causing other injury +C2903814|T037|AB|W16.522A|ICD10CM|Jump/div into swim pool strk bottom causing oth injury, init|Jump/div into swim pool strk bottom causing oth injury, init +C2903814|T037|PT|W16.522A|ICD10CM|Jumping or diving into swimming pool striking bottom causing other injury, initial encounter|Jumping or diving into swimming pool striking bottom causing other injury, initial encounter +C2903815|T037|AB|W16.522D|ICD10CM|Jump/div into swim pool strk bottom causing oth injury, subs|Jump/div into swim pool strk bottom causing oth injury, subs +C2903815|T037|PT|W16.522D|ICD10CM|Jumping or diving into swimming pool striking bottom causing other injury, subsequent encounter|Jumping or diving into swimming pool striking bottom causing other injury, subsequent encounter +C2903816|T037|AB|W16.522S|ICD10CM|Jump/div into swim pool strk bottom cause oth injury, sqla|Jump/div into swim pool strk bottom cause oth injury, sqla +C2903816|T037|PT|W16.522S|ICD10CM|Jumping or diving into swimming pool striking bottom causing other injury, sequela|Jumping or diving into swimming pool striking bottom causing other injury, sequela +C2903817|T037|HT|W16.53|ICD10CM|Jumping or diving into swimming pool striking wall|Jumping or diving into swimming pool striking wall +C2903817|T037|AB|W16.53|ICD10CM|Jumping or diving into swimming pool striking wall|Jumping or diving into swimming pool striking wall +C2903818|T037|AB|W16.531|ICD10CM|Jump/div into swimming pool striking wall causing drown|Jump/div into swimming pool striking wall causing drown +C2903818|T037|HT|W16.531|ICD10CM|Jumping or diving into swimming pool striking wall causing drowning and submersion|Jumping or diving into swimming pool striking wall causing drowning and submersion +C2903819|T037|AB|W16.531A|ICD10CM|Jump/div into swimming pool strk wall causing drown, init|Jump/div into swimming pool strk wall causing drown, init +C2903820|T037|AB|W16.531D|ICD10CM|Jump/div into swimming pool strk wall causing drown, subs|Jump/div into swimming pool strk wall causing drown, subs +C2903821|T037|AB|W16.531S|ICD10CM|Jump/div into swimming pool strk wall causing drown, sequela|Jump/div into swimming pool strk wall causing drown, sequela +C2903821|T037|PT|W16.531S|ICD10CM|Jumping or diving into swimming pool striking wall causing drowning and submersion, sequela|Jumping or diving into swimming pool striking wall causing drowning and submersion, sequela +C2903822|T037|AB|W16.532|ICD10CM|Jump/div into swimming pool striking wall causing oth injury|Jump/div into swimming pool striking wall causing oth injury +C2903822|T037|HT|W16.532|ICD10CM|Jumping or diving into swimming pool striking wall causing other injury|Jumping or diving into swimming pool striking wall causing other injury +C2903823|T037|AB|W16.532A|ICD10CM|Jump/div into swim pool strk wall causing oth injury, init|Jump/div into swim pool strk wall causing oth injury, init +C2903823|T037|PT|W16.532A|ICD10CM|Jumping or diving into swimming pool striking wall causing other injury, initial encounter|Jumping or diving into swimming pool striking wall causing other injury, initial encounter +C2903824|T037|AB|W16.532D|ICD10CM|Jump/div into swim pool strk wall causing oth injury, subs|Jump/div into swim pool strk wall causing oth injury, subs +C2903824|T037|PT|W16.532D|ICD10CM|Jumping or diving into swimming pool striking wall causing other injury, subsequent encounter|Jumping or diving into swimming pool striking wall causing other injury, subsequent encounter +C2903825|T037|AB|W16.532S|ICD10CM|Jump/div into swim pool strk wall cause oth injury, sequela|Jump/div into swim pool strk wall cause oth injury, sequela +C2903825|T037|PT|W16.532S|ICD10CM|Jumping or diving into swimming pool striking wall causing other injury, sequela|Jumping or diving into swimming pool striking wall causing other injury, sequela +C2903826|T037|ET|W16.6|ICD10CM|Jumping or diving into lake|Jumping or diving into lake +C2903830|T037|HT|W16.6|ICD10CM|Jumping or diving into natural body of water|Jumping or diving into natural body of water +C2903830|T037|AB|W16.6|ICD10CM|Jumping or diving into natural body of water|Jumping or diving into natural body of water +C2903827|T037|ET|W16.6|ICD10CM|Jumping or diving into open sea|Jumping or diving into open sea +C2903828|T037|ET|W16.6|ICD10CM|Jumping or diving into river|Jumping or diving into river +C2903829|T037|ET|W16.6|ICD10CM|Jumping or diving into stream|Jumping or diving into stream +C2903831|T037|AB|W16.61|ICD10CM|Jump/div into natural body of water striking water surface|Jump/div into natural body of water striking water surface +C2903831|T037|HT|W16.61|ICD10CM|Jumping or diving into natural body of water striking water surface|Jumping or diving into natural body of water striking water surface +C2903832|T037|AB|W16.611|ICD10CM|Jump/div into natural body of water strk surfc causing drown|Jump/div into natural body of water strk surfc causing drown +C2903832|T037|HT|W16.611|ICD10CM|Jumping or diving into natural body of water striking water surface causing drowning and submersion|Jumping or diving into natural body of water striking water surface causing drowning and submersion +C2903833|T037|AB|W16.611A|ICD10CM|Jump/div into natrl body of wtr strk surfc cause drown, init|Jump/div into natrl body of wtr strk surfc cause drown, init +C2903834|T037|AB|W16.611D|ICD10CM|Jump/div into natrl body of wtr strk surfc cause drown, subs|Jump/div into natrl body of wtr strk surfc cause drown, subs +C2903835|T037|AB|W16.611S|ICD10CM|Jump/div into natrl body of wtr strk surfc cause drown, sqla|Jump/div into natrl body of wtr strk surfc cause drown, sqla +C2903836|T037|AB|W16.612|ICD10CM|Jump/div into natrl body of water strk surfc cause oth inj|Jump/div into natrl body of water strk surfc cause oth inj +C2903836|T037|HT|W16.612|ICD10CM|Jumping or diving into natural body of water striking water surface causing other injury|Jumping or diving into natural body of water striking water surface causing other injury +C2903837|T037|AB|W16.612A|ICD10CM|Jump/div in natrl body of wtr strk surfc cause oth inj, init|Jump/div in natrl body of wtr strk surfc cause oth inj, init +C2903838|T037|AB|W16.612D|ICD10CM|Jump/div in natrl body of wtr strk surfc cause oth inj, subs|Jump/div in natrl body of wtr strk surfc cause oth inj, subs +C2903839|T037|AB|W16.612S|ICD10CM|Jump/div in natrl body of wtr strk surfc cause oth inj, sqla|Jump/div in natrl body of wtr strk surfc cause oth inj, sqla +C2903839|T037|PT|W16.612S|ICD10CM|Jumping or diving into natural body of water striking water surface causing other injury, sequela|Jumping or diving into natural body of water striking water surface causing other injury, sequela +C2903840|T037|HT|W16.62|ICD10CM|Jumping or diving into natural body of water striking bottom|Jumping or diving into natural body of water striking bottom +C2903840|T037|AB|W16.62|ICD10CM|Jumping or diving into natural body of water striking bottom|Jumping or diving into natural body of water striking bottom +C2903841|T037|AB|W16.621|ICD10CM|Jump/div into natural body of water strk bottom cause drown|Jump/div into natural body of water strk bottom cause drown +C2903841|T037|HT|W16.621|ICD10CM|Jumping or diving into natural body of water striking bottom causing drowning and submersion|Jumping or diving into natural body of water striking bottom causing drowning and submersion +C2903842|T037|AB|W16.621A|ICD10CM|Jump/div into natrl body of wtr strk botm cause drown, init|Jump/div into natrl body of wtr strk botm cause drown, init +C2903843|T037|AB|W16.621D|ICD10CM|Jump/div into natrl body of wtr strk botm cause drown, subs|Jump/div into natrl body of wtr strk botm cause drown, subs +C2903844|T037|AB|W16.621S|ICD10CM|Jump/div into natrl body of wtr strk botm cause drown, sqla|Jump/div into natrl body of wtr strk botm cause drown, sqla +C2903845|T037|AB|W16.622|ICD10CM|Jump/div into natrl body of water strk botm cause oth injury|Jump/div into natrl body of water strk botm cause oth injury +C2903845|T037|HT|W16.622|ICD10CM|Jumping or diving into natural body of water striking bottom causing other injury|Jumping or diving into natural body of water striking bottom causing other injury +C2903846|T037|AB|W16.622A|ICD10CM|Jump/div in natrl body of wtr strk botm cause oth inj, init|Jump/div in natrl body of wtr strk botm cause oth inj, init +C2903846|T037|PT|W16.622A|ICD10CM|Jumping or diving into natural body of water striking bottom causing other injury, initial encounter|Jumping or diving into natural body of water striking bottom causing other injury, initial encounter +C2903847|T037|AB|W16.622D|ICD10CM|Jump/div in natrl body of wtr strk botm cause oth inj, subs|Jump/div in natrl body of wtr strk botm cause oth inj, subs +C2903848|T037|AB|W16.622S|ICD10CM|Jump/div in natrl body of wtr strk botm cause oth inj, sqla|Jump/div in natrl body of wtr strk botm cause oth inj, sqla +C2903848|T037|PT|W16.622S|ICD10CM|Jumping or diving into natural body of water striking bottom causing other injury, sequela|Jumping or diving into natural body of water striking bottom causing other injury, sequela +C2903849|T037|HT|W16.7|ICD10CM|Jumping or diving from boat|Jumping or diving from boat +C2903849|T037|AB|W16.7|ICD10CM|Jumping or diving from boat|Jumping or diving from boat +C2903850|T037|HT|W16.71|ICD10CM|Jumping or diving from boat striking water surface|Jumping or diving from boat striking water surface +C2903850|T037|AB|W16.71|ICD10CM|Jumping or diving from boat striking water surface|Jumping or diving from boat striking water surface +C2903851|T037|AB|W16.711|ICD10CM|Jump/div from boat striking water surface causing drown|Jump/div from boat striking water surface causing drown +C2903851|T037|HT|W16.711|ICD10CM|Jumping or diving from boat striking water surface causing drowning and submersion|Jumping or diving from boat striking water surface causing drowning and submersion +C2903852|T037|AB|W16.711A|ICD10CM|Jump/div from boat striking surfc causing drown, init|Jump/div from boat striking surfc causing drown, init +C2903853|T037|AB|W16.711D|ICD10CM|Jump/div from boat striking surfc causing drown, subs|Jump/div from boat striking surfc causing drown, subs +C2903854|T037|AB|W16.711S|ICD10CM|Jump/div from boat striking surfc causing drown, sequela|Jump/div from boat striking surfc causing drown, sequela +C2903854|T037|PT|W16.711S|ICD10CM|Jumping or diving from boat striking water surface causing drowning and submersion, sequela|Jumping or diving from boat striking water surface causing drowning and submersion, sequela +C2903855|T037|AB|W16.712|ICD10CM|Jump/div from boat striking water surface causing oth injury|Jump/div from boat striking water surface causing oth injury +C2903855|T037|HT|W16.712|ICD10CM|Jumping or diving from boat striking water surface causing other injury|Jumping or diving from boat striking water surface causing other injury +C2903856|T037|AB|W16.712A|ICD10CM|Jump/div from boat striking surfc causing oth injury, init|Jump/div from boat striking surfc causing oth injury, init +C2903856|T037|PT|W16.712A|ICD10CM|Jumping or diving from boat striking water surface causing other injury, initial encounter|Jumping or diving from boat striking water surface causing other injury, initial encounter +C2903857|T037|AB|W16.712D|ICD10CM|Jump/div from boat striking surfc causing oth injury, subs|Jump/div from boat striking surfc causing oth injury, subs +C2903857|T037|PT|W16.712D|ICD10CM|Jumping or diving from boat striking water surface causing other injury, subsequent encounter|Jumping or diving from boat striking water surface causing other injury, subsequent encounter +C2903858|T037|AB|W16.712S|ICD10CM|Jump/div from boat strk surfc causing oth injury, sequela|Jump/div from boat strk surfc causing oth injury, sequela +C2903858|T037|PT|W16.712S|ICD10CM|Jumping or diving from boat striking water surface causing other injury, sequela|Jumping or diving from boat striking water surface causing other injury, sequela +C2903859|T037|HT|W16.72|ICD10CM|Jumping or diving from boat striking bottom|Jumping or diving from boat striking bottom +C2903859|T037|AB|W16.72|ICD10CM|Jumping or diving from boat striking bottom|Jumping or diving from boat striking bottom +C2903860|T037|AB|W16.721|ICD10CM|Jumping or diving from boat striking bottom causing drown|Jumping or diving from boat striking bottom causing drown +C2903860|T037|HT|W16.721|ICD10CM|Jumping or diving from boat striking bottom causing drowning and submersion|Jumping or diving from boat striking bottom causing drowning and submersion +C2903861|T037|AB|W16.721A|ICD10CM|Jump/div from boat striking bottom causing drown, init|Jump/div from boat striking bottom causing drown, init +C2903861|T037|PT|W16.721A|ICD10CM|Jumping or diving from boat striking bottom causing drowning and submersion, initial encounter|Jumping or diving from boat striking bottom causing drowning and submersion, initial encounter +C2903862|T037|AB|W16.721D|ICD10CM|Jump/div from boat striking bottom causing drown, subs|Jump/div from boat striking bottom causing drown, subs +C2903862|T037|PT|W16.721D|ICD10CM|Jumping or diving from boat striking bottom causing drowning and submersion, subsequent encounter|Jumping or diving from boat striking bottom causing drowning and submersion, subsequent encounter +C2903863|T037|AB|W16.721S|ICD10CM|Jump/div from boat striking bottom causing drown, sequela|Jump/div from boat striking bottom causing drown, sequela +C2903863|T037|PT|W16.721S|ICD10CM|Jumping or diving from boat striking bottom causing drowning and submersion, sequela|Jumping or diving from boat striking bottom causing drowning and submersion, sequela +C2903864|T037|AB|W16.722|ICD10CM|Jump/div from boat striking bottom causing oth injury|Jump/div from boat striking bottom causing oth injury +C2903864|T037|HT|W16.722|ICD10CM|Jumping or diving from boat striking bottom causing other injury|Jumping or diving from boat striking bottom causing other injury +C2903865|T037|AB|W16.722A|ICD10CM|Jump/div from boat striking bottom causing oth injury, init|Jump/div from boat striking bottom causing oth injury, init +C2903865|T037|PT|W16.722A|ICD10CM|Jumping or diving from boat striking bottom causing other injury, initial encounter|Jumping or diving from boat striking bottom causing other injury, initial encounter +C2903866|T037|AB|W16.722D|ICD10CM|Jump/div from boat striking bottom causing oth injury, subs|Jump/div from boat striking bottom causing oth injury, subs +C2903866|T037|PT|W16.722D|ICD10CM|Jumping or diving from boat striking bottom causing other injury, subsequent encounter|Jumping or diving from boat striking bottom causing other injury, subsequent encounter +C2903867|T037|AB|W16.722S|ICD10CM|Jump/div from boat strk bottom causing oth injury, sequela|Jump/div from boat strk bottom causing oth injury, sequela +C2903867|T037|PT|W16.722S|ICD10CM|Jumping or diving from boat striking bottom causing other injury, sequela|Jumping or diving from boat striking bottom causing other injury, sequela +C2903868|T037|ET|W16.8|ICD10CM|Jumping or diving into fountain|Jumping or diving into fountain +C2903870|T037|HT|W16.8|ICD10CM|Jumping or diving into other water|Jumping or diving into other water +C2903870|T037|AB|W16.8|ICD10CM|Jumping or diving into other water|Jumping or diving into other water +C2903869|T037|ET|W16.8|ICD10CM|Jumping or diving into reservoir|Jumping or diving into reservoir +C2903871|T037|HT|W16.81|ICD10CM|Jumping or diving into other water striking water surface|Jumping or diving into other water striking water surface +C2903871|T037|AB|W16.81|ICD10CM|Jumping or diving into other water striking water surface|Jumping or diving into other water striking water surface +C2903872|T037|AB|W16.811|ICD10CM|Jump/div into oth water striking water surface causing drown|Jump/div into oth water striking water surface causing drown +C2903872|T037|HT|W16.811|ICD10CM|Jumping or diving into other water striking water surface causing drowning and submersion|Jumping or diving into other water striking water surface causing drowning and submersion +C2903873|T037|AB|W16.811A|ICD10CM|Jump/div into oth water striking surfc causing drown, init|Jump/div into oth water striking surfc causing drown, init +C2903874|T037|AB|W16.811D|ICD10CM|Jump/div into oth water striking surfc causing drown, subs|Jump/div into oth water striking surfc causing drown, subs +C2903875|T037|AB|W16.811S|ICD10CM|Jump/div into oth water strk surfc causing drown, sequela|Jump/div into oth water strk surfc causing drown, sequela +C2903875|T037|PT|W16.811S|ICD10CM|Jumping or diving into other water striking water surface causing drowning and submersion, sequela|Jumping or diving into other water striking water surface causing drowning and submersion, sequela +C2903876|T037|AB|W16.812|ICD10CM|Jump/div into oth water striking surfc causing oth injury|Jump/div into oth water striking surfc causing oth injury +C2903876|T037|HT|W16.812|ICD10CM|Jumping or diving into other water striking water surface causing other injury|Jumping or diving into other water striking water surface causing other injury +C2903877|T037|AB|W16.812A|ICD10CM|Jump/div into oth water strk surfc causing oth injury, init|Jump/div into oth water strk surfc causing oth injury, init +C2903877|T037|PT|W16.812A|ICD10CM|Jumping or diving into other water striking water surface causing other injury, initial encounter|Jumping or diving into other water striking water surface causing other injury, initial encounter +C2903878|T037|AB|W16.812D|ICD10CM|Jump/div into oth water strk surfc causing oth injury, subs|Jump/div into oth water strk surfc causing oth injury, subs +C2903878|T037|PT|W16.812D|ICD10CM|Jumping or diving into other water striking water surface causing other injury, subsequent encounter|Jumping or diving into other water striking water surface causing other injury, subsequent encounter +C2903879|T037|AB|W16.812S|ICD10CM|Jump/div into oth water strk surfc cause oth injury, sequela|Jump/div into oth water strk surfc cause oth injury, sequela +C2903879|T037|PT|W16.812S|ICD10CM|Jumping or diving into other water striking water surface causing other injury, sequela|Jumping or diving into other water striking water surface causing other injury, sequela +C2903880|T037|HT|W16.82|ICD10CM|Jumping or diving into other water striking bottom|Jumping or diving into other water striking bottom +C2903880|T037|AB|W16.82|ICD10CM|Jumping or diving into other water striking bottom|Jumping or diving into other water striking bottom +C2903881|T037|AB|W16.821|ICD10CM|Jump/div into oth water striking bottom causing drown|Jump/div into oth water striking bottom causing drown +C2903881|T037|HT|W16.821|ICD10CM|Jumping or diving into other water striking bottom causing drowning and submersion|Jumping or diving into other water striking bottom causing drowning and submersion +C2903882|T037|AB|W16.821A|ICD10CM|Jump/div into oth water striking bottom causing drown, init|Jump/div into oth water striking bottom causing drown, init +C2903883|T037|AB|W16.821D|ICD10CM|Jump/div into oth water striking bottom causing drown, subs|Jump/div into oth water striking bottom causing drown, subs +C2903884|T037|AB|W16.821S|ICD10CM|Jump/div into oth water strk bottom causing drown, sequela|Jump/div into oth water strk bottom causing drown, sequela +C2903884|T037|PT|W16.821S|ICD10CM|Jumping or diving into other water striking bottom causing drowning and submersion, sequela|Jumping or diving into other water striking bottom causing drowning and submersion, sequela +C2903885|T037|AB|W16.822|ICD10CM|Jump/div into oth water striking bottom causing oth injury|Jump/div into oth water striking bottom causing oth injury +C2903885|T037|HT|W16.822|ICD10CM|Jumping or diving into other water striking bottom causing other injury|Jumping or diving into other water striking bottom causing other injury +C2903886|T037|AB|W16.822A|ICD10CM|Jump/div into oth water strk bottom causing oth injury, init|Jump/div into oth water strk bottom causing oth injury, init +C2903886|T037|PT|W16.822A|ICD10CM|Jumping or diving into other water striking bottom causing other injury, initial encounter|Jumping or diving into other water striking bottom causing other injury, initial encounter +C2903887|T037|AB|W16.822D|ICD10CM|Jump/div into oth water strk bottom causing oth injury, subs|Jump/div into oth water strk bottom causing oth injury, subs +C2903887|T037|PT|W16.822D|ICD10CM|Jumping or diving into other water striking bottom causing other injury, subsequent encounter|Jumping or diving into other water striking bottom causing other injury, subsequent encounter +C2903888|T037|AB|W16.822S|ICD10CM|Jump/div into oth water strk bottom cause oth injury, sqla|Jump/div into oth water strk bottom cause oth injury, sqla +C2903888|T037|PT|W16.822S|ICD10CM|Jumping or diving into other water striking bottom causing other injury, sequela|Jumping or diving into other water striking bottom causing other injury, sequela +C2903889|T037|HT|W16.83|ICD10CM|Jumping or diving into other water striking wall|Jumping or diving into other water striking wall +C2903889|T037|AB|W16.83|ICD10CM|Jumping or diving into other water striking wall|Jumping or diving into other water striking wall +C2903890|T037|AB|W16.831|ICD10CM|Jumping or diving into oth water striking wall causing drown|Jumping or diving into oth water striking wall causing drown +C2903890|T037|HT|W16.831|ICD10CM|Jumping or diving into other water striking wall causing drowning and submersion|Jumping or diving into other water striking wall causing drowning and submersion +C2903891|T037|AB|W16.831A|ICD10CM|Jump/div into oth water striking wall causing drown, init|Jump/div into oth water striking wall causing drown, init +C2903891|T037|PT|W16.831A|ICD10CM|Jumping or diving into other water striking wall causing drowning and submersion, initial encounter|Jumping or diving into other water striking wall causing drowning and submersion, initial encounter +C2903892|T037|AB|W16.831D|ICD10CM|Jump/div into oth water striking wall causing drown, subs|Jump/div into oth water striking wall causing drown, subs +C2903893|T037|AB|W16.831S|ICD10CM|Jump/div into oth water striking wall causing drown, sequela|Jump/div into oth water striking wall causing drown, sequela +C2903893|T037|PT|W16.831S|ICD10CM|Jumping or diving into other water striking wall causing drowning and submersion, sequela|Jumping or diving into other water striking wall causing drowning and submersion, sequela +C2903894|T037|AB|W16.832|ICD10CM|Jump/div into oth water striking wall causing oth injury|Jump/div into oth water striking wall causing oth injury +C2903894|T037|HT|W16.832|ICD10CM|Jumping or diving into other water striking wall causing other injury|Jumping or diving into other water striking wall causing other injury +C2903895|T037|AB|W16.832A|ICD10CM|Jump/div into oth water strk wall causing oth injury, init|Jump/div into oth water strk wall causing oth injury, init +C2903895|T037|PT|W16.832A|ICD10CM|Jumping or diving into other water striking wall causing other injury, initial encounter|Jumping or diving into other water striking wall causing other injury, initial encounter +C2903896|T037|AB|W16.832D|ICD10CM|Jump/div into oth water strk wall causing oth injury, subs|Jump/div into oth water strk wall causing oth injury, subs +C2903896|T037|PT|W16.832D|ICD10CM|Jumping or diving into other water striking wall causing other injury, subsequent encounter|Jumping or diving into other water striking wall causing other injury, subsequent encounter +C2903897|T037|AB|W16.832S|ICD10CM|Jump/div into oth water strk wall cause oth injury, sequela|Jump/div into oth water strk wall cause oth injury, sequela +C2903897|T037|PT|W16.832S|ICD10CM|Jumping or diving into other water striking wall causing other injury, sequela|Jumping or diving into other water striking wall causing other injury, sequela +C2903898|T037|AB|W16.9|ICD10CM|Jumping or diving into unspecified water|Jumping or diving into unspecified water +C2903898|T037|HT|W16.9|ICD10CM|Jumping or diving into unspecified water|Jumping or diving into unspecified water +C2903899|T037|AB|W16.91|ICD10CM|Jumping or diving into unsp water causing drown|Jumping or diving into unsp water causing drown +C2903899|T037|HT|W16.91|ICD10CM|Jumping or diving into unspecified water causing drowning and submersion|Jumping or diving into unspecified water causing drowning and submersion +C2903900|T037|AB|W16.91XA|ICD10CM|Jumping or diving into unsp water causing drown, init|Jumping or diving into unsp water causing drown, init +C2903900|T037|PT|W16.91XA|ICD10CM|Jumping or diving into unspecified water causing drowning and submersion, initial encounter|Jumping or diving into unspecified water causing drowning and submersion, initial encounter +C2903901|T037|AB|W16.91XD|ICD10CM|Jumping or diving into unsp water causing drown, subs|Jumping or diving into unsp water causing drown, subs +C2903901|T037|PT|W16.91XD|ICD10CM|Jumping or diving into unspecified water causing drowning and submersion, subsequent encounter|Jumping or diving into unspecified water causing drowning and submersion, subsequent encounter +C2903902|T037|AB|W16.91XS|ICD10CM|Jumping or diving into unsp water causing drown, sequela|Jumping or diving into unsp water causing drown, sequela +C2903902|T037|PT|W16.91XS|ICD10CM|Jumping or diving into unspecified water causing drowning and submersion, sequela|Jumping or diving into unspecified water causing drowning and submersion, sequela +C2903903|T037|AB|W16.92|ICD10CM|Jumping or diving into unsp water causing other injury|Jumping or diving into unsp water causing other injury +C2903903|T037|HT|W16.92|ICD10CM|Jumping or diving into unspecified water causing other injury|Jumping or diving into unspecified water causing other injury +C2903904|T037|AB|W16.92XA|ICD10CM|Jumping or diving into unsp water causing oth injury, init|Jumping or diving into unsp water causing oth injury, init +C2903904|T037|PT|W16.92XA|ICD10CM|Jumping or diving into unspecified water causing other injury, initial encounter|Jumping or diving into unspecified water causing other injury, initial encounter +C2903905|T037|AB|W16.92XD|ICD10CM|Jumping or diving into unsp water causing oth injury, subs|Jumping or diving into unsp water causing oth injury, subs +C2903905|T037|PT|W16.92XD|ICD10CM|Jumping or diving into unspecified water causing other injury, subsequent encounter|Jumping or diving into unspecified water causing other injury, subsequent encounter +C2903906|T037|AB|W16.92XS|ICD10CM|Jump/div into unsp water causing oth injury, sequela|Jump/div into unsp water causing oth injury, sequela +C2903906|T037|PT|W16.92XS|ICD10CM|Jumping or diving into unspecified water causing other injury, sequela|Jumping or diving into unspecified water causing other injury, sequela +C0478874|T037|PS|W17|ICD10|Other fall from one level to another|Other fall from one level to another +C0478874|T037|HT|W17|ICD10CM|Other fall from one level to another|Other fall from one level to another +C0478874|T037|AB|W17|ICD10CM|Other fall from one level to another|Other fall from one level to another +C0478874|T037|PX|W17|ICD10|Other fall from one level to another causing accidental injury|Other fall from one level to another causing accidental injury +C0417059|T037|HT|W17.0|ICD10CM|Fall into well|Fall into well +C0417059|T037|AB|W17.0|ICD10CM|Fall into well|Fall into well +C2903907|T037|AB|W17.0XXA|ICD10CM|Fall into well, initial encounter|Fall into well, initial encounter +C2903907|T037|PT|W17.0XXA|ICD10CM|Fall into well, initial encounter|Fall into well, initial encounter +C2903908|T037|AB|W17.0XXD|ICD10CM|Fall into well, subsequent encounter|Fall into well, subsequent encounter +C2903908|T037|PT|W17.0XXD|ICD10CM|Fall into well, subsequent encounter|Fall into well, subsequent encounter +C2903909|T037|AB|W17.0XXS|ICD10CM|Fall into well, sequela|Fall into well, sequela +C2903909|T037|PT|W17.0XXS|ICD10CM|Fall into well, sequela|Fall into well, sequela +C2903910|T037|AB|W17.1|ICD10CM|Fall into storm drain or manhole|Fall into storm drain or manhole +C2903910|T037|HT|W17.1|ICD10CM|Fall into storm drain or manhole|Fall into storm drain or manhole +C2903911|T037|AB|W17.1XXA|ICD10CM|Fall into storm drain or manhole, initial encounter|Fall into storm drain or manhole, initial encounter +C2903911|T037|PT|W17.1XXA|ICD10CM|Fall into storm drain or manhole, initial encounter|Fall into storm drain or manhole, initial encounter +C2903912|T037|AB|W17.1XXD|ICD10CM|Fall into storm drain or manhole, subsequent encounter|Fall into storm drain or manhole, subsequent encounter +C2903912|T037|PT|W17.1XXD|ICD10CM|Fall into storm drain or manhole, subsequent encounter|Fall into storm drain or manhole, subsequent encounter +C2903913|T037|AB|W17.1XXS|ICD10CM|Fall into storm drain or manhole, sequela|Fall into storm drain or manhole, sequela +C2903913|T037|PT|W17.1XXS|ICD10CM|Fall into storm drain or manhole, sequela|Fall into storm drain or manhole, sequela +C0337225|T037|HT|W17.2|ICD10CM|Fall into hole|Fall into hole +C0337225|T037|AB|W17.2|ICD10CM|Fall into hole|Fall into hole +C0417069|T037|ET|W17.2|ICD10CM|Fall into pit|Fall into pit +C2903914|T037|AB|W17.2XXA|ICD10CM|Fall into hole, initial encounter|Fall into hole, initial encounter +C2903914|T037|PT|W17.2XXA|ICD10CM|Fall into hole, initial encounter|Fall into hole, initial encounter +C2903915|T037|AB|W17.2XXD|ICD10CM|Fall into hole, subsequent encounter|Fall into hole, subsequent encounter +C2903915|T037|PT|W17.2XXD|ICD10CM|Fall into hole, subsequent encounter|Fall into hole, subsequent encounter +C2903916|T037|AB|W17.2XXS|ICD10CM|Fall into hole, sequela|Fall into hole, sequela +C2903916|T037|PT|W17.2XXS|ICD10CM|Fall into hole, sequela|Fall into hole, sequela +C2903917|T037|HT|W17.3|ICD10CM|Fall into empty swimming pool|Fall into empty swimming pool +C2903917|T037|AB|W17.3|ICD10CM|Fall into empty swimming pool|Fall into empty swimming pool +C2903918|T037|AB|W17.3XXA|ICD10CM|Fall into empty swimming pool, initial encounter|Fall into empty swimming pool, initial encounter +C2903918|T037|PT|W17.3XXA|ICD10CM|Fall into empty swimming pool, initial encounter|Fall into empty swimming pool, initial encounter +C2903919|T037|AB|W17.3XXD|ICD10CM|Fall into empty swimming pool, subsequent encounter|Fall into empty swimming pool, subsequent encounter +C2903919|T037|PT|W17.3XXD|ICD10CM|Fall into empty swimming pool, subsequent encounter|Fall into empty swimming pool, subsequent encounter +C2903920|T037|AB|W17.3XXS|ICD10CM|Fall into empty swimming pool, sequela|Fall into empty swimming pool, sequela +C2903920|T037|PT|W17.3XXS|ICD10CM|Fall into empty swimming pool, sequela|Fall into empty swimming pool, sequela +C2903921|T037|AB|W17.4|ICD10CM|Fall from dock|Fall from dock +C2903921|T037|HT|W17.4|ICD10CM|Fall from dock|Fall from dock +C2903922|T037|AB|W17.4XXA|ICD10CM|Fall from dock, initial encounter|Fall from dock, initial encounter +C2903922|T037|PT|W17.4XXA|ICD10CM|Fall from dock, initial encounter|Fall from dock, initial encounter +C2903923|T037|AB|W17.4XXD|ICD10CM|Fall from dock, subsequent encounter|Fall from dock, subsequent encounter +C2903923|T037|PT|W17.4XXD|ICD10CM|Fall from dock, subsequent encounter|Fall from dock, subsequent encounter +C2903924|T037|AB|W17.4XXS|ICD10CM|Fall from dock, sequela|Fall from dock, sequela +C2903924|T037|PT|W17.4XXS|ICD10CM|Fall from dock, sequela|Fall from dock, sequela +C0478874|T037|HT|W17.8|ICD10CM|Other fall from one level to another|Other fall from one level to another +C0478874|T037|AB|W17.8|ICD10CM|Other fall from one level to another|Other fall from one level to another +C2903925|T037|AB|W17.81|ICD10CM|Fall down embankment (hill)|Fall down embankment (hill) +C2903925|T037|HT|W17.81|ICD10CM|Fall down embankment (hill)|Fall down embankment (hill) +C2903926|T037|AB|W17.81XA|ICD10CM|Fall down embankment (hill), initial encounter|Fall down embankment (hill), initial encounter +C2903926|T037|PT|W17.81XA|ICD10CM|Fall down embankment (hill), initial encounter|Fall down embankment (hill), initial encounter +C2903927|T037|AB|W17.81XD|ICD10CM|Fall down embankment (hill), subsequent encounter|Fall down embankment (hill), subsequent encounter +C2903927|T037|PT|W17.81XD|ICD10CM|Fall down embankment (hill), subsequent encounter|Fall down embankment (hill), subsequent encounter +C2903928|T037|AB|W17.81XS|ICD10CM|Fall down embankment (hill), sequela|Fall down embankment (hill), sequela +C2903928|T037|PT|W17.81XS|ICD10CM|Fall down embankment (hill), sequela|Fall down embankment (hill), sequela +C2903929|T037|ET|W17.82|ICD10CM|Fall due to grocery cart tipping over|Fall due to grocery cart tipping over +C2903930|T037|AB|W17.82|ICD10CM|Fall from (out of) grocery cart|Fall from (out of) grocery cart +C2903930|T037|HT|W17.82|ICD10CM|Fall from (out of) grocery cart|Fall from (out of) grocery cart +C2903931|T037|AB|W17.82XA|ICD10CM|Fall from (out of) grocery cart, initial encounter|Fall from (out of) grocery cart, initial encounter +C2903931|T037|PT|W17.82XA|ICD10CM|Fall from (out of) grocery cart, initial encounter|Fall from (out of) grocery cart, initial encounter +C2903932|T037|AB|W17.82XD|ICD10CM|Fall from (out of) grocery cart, subsequent encounter|Fall from (out of) grocery cart, subsequent encounter +C2903932|T037|PT|W17.82XD|ICD10CM|Fall from (out of) grocery cart, subsequent encounter|Fall from (out of) grocery cart, subsequent encounter +C2903933|T037|AB|W17.82XS|ICD10CM|Fall from (out of) grocery cart, sequela|Fall from (out of) grocery cart, sequela +C2903933|T037|PT|W17.82XS|ICD10CM|Fall from (out of) grocery cart, sequela|Fall from (out of) grocery cart, sequela +C3263933|T037|ET|W17.89|ICD10CM|Fall from cherry picker|Fall from cherry picker +C3263934|T037|ET|W17.89|ICD10CM|Fall from lifting device|Fall from lifting device +C3263935|T037|ET|W17.89|ICD10CM|Fall from mobile elevated work platform [MEWP]|Fall from mobile elevated work platform [MEWP] +C3263936|T037|ET|W17.89|ICD10CM|Fall from sky lift|Fall from sky lift +C0478874|T037|HT|W17.89|ICD10CM|Other fall from one level to another|Other fall from one level to another +C0478874|T037|AB|W17.89|ICD10CM|Other fall from one level to another|Other fall from one level to another +C2903934|T037|AB|W17.89XA|ICD10CM|Other fall from one level to another, initial encounter|Other fall from one level to another, initial encounter +C2903934|T037|PT|W17.89XA|ICD10CM|Other fall from one level to another, initial encounter|Other fall from one level to another, initial encounter +C2903935|T037|AB|W17.89XD|ICD10CM|Other fall from one level to another, subsequent encounter|Other fall from one level to another, subsequent encounter +C2903935|T037|PT|W17.89XD|ICD10CM|Other fall from one level to another, subsequent encounter|Other fall from one level to another, subsequent encounter +C2903936|T037|AB|W17.89XS|ICD10CM|Other fall from one level to another, sequela|Other fall from one level to another, sequela +C2903936|T037|PT|W17.89XS|ICD10CM|Other fall from one level to another, sequela|Other fall from one level to another, sequela +C0478875|T037|PS|W18|ICD10|Other fall on same level|Other fall on same level +C0478875|T037|PX|W18|ICD10|Other fall on same level causing accidental injury|Other fall on same level causing accidental injury +C2903937|T037|AB|W18|ICD10CM|Other slipping, tripping and stumbling and falls|Other slipping, tripping and stumbling and falls +C2903937|T037|HT|W18|ICD10CM|Other slipping, tripping and stumbling and falls|Other slipping, tripping and stumbling and falls +C2903939|T037|HT|W18.0|ICD10CM|Fall due to bumping against object|Fall due to bumping against object +C2903939|T037|AB|W18.0|ICD10CM|Fall due to bumping against object|Fall due to bumping against object +C2903938|T037|ET|W18.0|ICD10CM|Striking against object with subsequent fall|Striking against object with subsequent fall +C2903940|T037|AB|W18.00|ICD10CM|Striking against unspecified object with subsequent fall|Striking against unspecified object with subsequent fall +C2903940|T037|HT|W18.00|ICD10CM|Striking against unspecified object with subsequent fall|Striking against unspecified object with subsequent fall +C2903941|T037|AB|W18.00XA|ICD10CM|Striking against unsp object w subsequent fall, init encntr|Striking against unsp object w subsequent fall, init encntr +C2903941|T037|PT|W18.00XA|ICD10CM|Striking against unspecified object with subsequent fall, initial encounter|Striking against unspecified object with subsequent fall, initial encounter +C2903942|T037|AB|W18.00XD|ICD10CM|Striking against unsp object w subsequent fall, subs encntr|Striking against unsp object w subsequent fall, subs encntr +C2903942|T037|PT|W18.00XD|ICD10CM|Striking against unspecified object with subsequent fall, subsequent encounter|Striking against unspecified object with subsequent fall, subsequent encounter +C2903943|T037|AB|W18.00XS|ICD10CM|Striking against unsp object with subsequent fall, sequela|Striking against unsp object with subsequent fall, sequela +C2903943|T037|PT|W18.00XS|ICD10CM|Striking against unspecified object with subsequent fall, sequela|Striking against unspecified object with subsequent fall, sequela +C2903944|T037|HT|W18.01|ICD10CM|Striking against sports equipment with subsequent fall|Striking against sports equipment with subsequent fall +C2903944|T037|AB|W18.01|ICD10CM|Striking against sports equipment with subsequent fall|Striking against sports equipment with subsequent fall +C2903945|T037|AB|W18.01XA|ICD10CM|Striking against sports equipment w subsequent fall, init|Striking against sports equipment w subsequent fall, init +C2903945|T037|PT|W18.01XA|ICD10CM|Striking against sports equipment with subsequent fall, initial encounter|Striking against sports equipment with subsequent fall, initial encounter +C2903946|T037|AB|W18.01XD|ICD10CM|Striking against sports equipment w subsequent fall, subs|Striking against sports equipment w subsequent fall, subs +C2903946|T037|PT|W18.01XD|ICD10CM|Striking against sports equipment with subsequent fall, subsequent encounter|Striking against sports equipment with subsequent fall, subsequent encounter +C2903947|T037|AB|W18.01XS|ICD10CM|Striking against sports equipment w subsequent fall, sequela|Striking against sports equipment w subsequent fall, sequela +C2903947|T037|PT|W18.01XS|ICD10CM|Striking against sports equipment with subsequent fall, sequela|Striking against sports equipment with subsequent fall, sequela +C2903948|T037|HT|W18.02|ICD10CM|Striking against glass with subsequent fall|Striking against glass with subsequent fall +C2903948|T037|AB|W18.02|ICD10CM|Striking against glass with subsequent fall|Striking against glass with subsequent fall +C2903949|T037|AB|W18.02XA|ICD10CM|Striking against glass with subsequent fall, init encntr|Striking against glass with subsequent fall, init encntr +C2903949|T037|PT|W18.02XA|ICD10CM|Striking against glass with subsequent fall, initial encounter|Striking against glass with subsequent fall, initial encounter +C2903950|T037|AB|W18.02XD|ICD10CM|Striking against glass with subsequent fall, subs encntr|Striking against glass with subsequent fall, subs encntr +C2903950|T037|PT|W18.02XD|ICD10CM|Striking against glass with subsequent fall, subsequent encounter|Striking against glass with subsequent fall, subsequent encounter +C2903951|T037|AB|W18.02XS|ICD10CM|Striking against glass with subsequent fall, sequela|Striking against glass with subsequent fall, sequela +C2903951|T037|PT|W18.02XS|ICD10CM|Striking against glass with subsequent fall, sequela|Striking against glass with subsequent fall, sequela +C2903952|T037|HT|W18.09|ICD10CM|Striking against other object with subsequent fall|Striking against other object with subsequent fall +C2903952|T037|AB|W18.09|ICD10CM|Striking against other object with subsequent fall|Striking against other object with subsequent fall +C2903953|T037|AB|W18.09XA|ICD10CM|Striking against oth object w subsequent fall, init encntr|Striking against oth object w subsequent fall, init encntr +C2903953|T037|PT|W18.09XA|ICD10CM|Striking against other object with subsequent fall, initial encounter|Striking against other object with subsequent fall, initial encounter +C2903954|T037|AB|W18.09XD|ICD10CM|Striking against oth object w subsequent fall, subs encntr|Striking against oth object w subsequent fall, subs encntr +C2903954|T037|PT|W18.09XD|ICD10CM|Striking against other object with subsequent fall, subsequent encounter|Striking against other object with subsequent fall, subsequent encounter +C2903955|T037|AB|W18.09XS|ICD10CM|Striking against other object with subsequent fall, sequela|Striking against other object with subsequent fall, sequela +C2903955|T037|PT|W18.09XS|ICD10CM|Striking against other object with subsequent fall, sequela|Striking against other object with subsequent fall, sequela +C2903956|T037|HT|W18.1|ICD10CM|Fall from or off toilet|Fall from or off toilet +C2903956|T037|AB|W18.1|ICD10CM|Fall from or off toilet|Fall from or off toilet +C2903957|T037|ET|W18.11|ICD10CM|Fall from (off) toilet NOS|Fall from (off) toilet NOS +C2903958|T037|AB|W18.11|ICD10CM|Fall from or off toilet w/o strike against object|Fall from or off toilet w/o strike against object +C2903958|T037|HT|W18.11|ICD10CM|Fall from or off toilet without subsequent striking against object|Fall from or off toilet without subsequent striking against object +C2903959|T037|AB|W18.11XA|ICD10CM|Fall from or off toilet w/o strike against object, init|Fall from or off toilet w/o strike against object, init +C2903959|T037|PT|W18.11XA|ICD10CM|Fall from or off toilet without subsequent striking against object, initial encounter|Fall from or off toilet without subsequent striking against object, initial encounter +C2903960|T037|AB|W18.11XD|ICD10CM|Fall from or off toilet w/o strike against object, subs|Fall from or off toilet w/o strike against object, subs +C2903960|T037|PT|W18.11XD|ICD10CM|Fall from or off toilet without subsequent striking against object, subsequent encounter|Fall from or off toilet without subsequent striking against object, subsequent encounter +C2903961|T037|AB|W18.11XS|ICD10CM|Fall from or off toilet w/o strike against object, sequela|Fall from or off toilet w/o strike against object, sequela +C2903961|T037|PT|W18.11XS|ICD10CM|Fall from or off toilet without subsequent striking against object, sequela|Fall from or off toilet without subsequent striking against object, sequela +C2903962|T037|AB|W18.12|ICD10CM|Fall from or off toilet w subsequent striking against object|Fall from or off toilet w subsequent striking against object +C2903962|T037|HT|W18.12|ICD10CM|Fall from or off toilet with subsequent striking against object|Fall from or off toilet with subsequent striking against object +C2903963|T037|AB|W18.12XA|ICD10CM|Fall from or off toilet w strike against object, init|Fall from or off toilet w strike against object, init +C2903963|T037|PT|W18.12XA|ICD10CM|Fall from or off toilet with subsequent striking against object, initial encounter|Fall from or off toilet with subsequent striking against object, initial encounter +C2903964|T037|AB|W18.12XD|ICD10CM|Fall from or off toilet w strike against object, subs|Fall from or off toilet w strike against object, subs +C2903964|T037|PT|W18.12XD|ICD10CM|Fall from or off toilet with subsequent striking against object, subsequent encounter|Fall from or off toilet with subsequent striking against object, subsequent encounter +C2903965|T037|AB|W18.12XS|ICD10CM|Fall from or off toilet w strike against object, sequela|Fall from or off toilet w strike against object, sequela +C2903965|T037|PT|W18.12XS|ICD10CM|Fall from or off toilet with subsequent striking against object, sequela|Fall from or off toilet with subsequent striking against object, sequela +C2903966|T037|AB|W18.2|ICD10CM|Fall in (into) shower or empty bathtub|Fall in (into) shower or empty bathtub +C2903966|T037|HT|W18.2|ICD10CM|Fall in (into) shower or empty bathtub|Fall in (into) shower or empty bathtub +C2903967|T037|AB|W18.2XXA|ICD10CM|Fall in (into) shower or empty bathtub, initial encounter|Fall in (into) shower or empty bathtub, initial encounter +C2903967|T037|PT|W18.2XXA|ICD10CM|Fall in (into) shower or empty bathtub, initial encounter|Fall in (into) shower or empty bathtub, initial encounter +C2903968|T037|AB|W18.2XXD|ICD10CM|Fall in (into) shower or empty bathtub, subsequent encounter|Fall in (into) shower or empty bathtub, subsequent encounter +C2903968|T037|PT|W18.2XXD|ICD10CM|Fall in (into) shower or empty bathtub, subsequent encounter|Fall in (into) shower or empty bathtub, subsequent encounter +C2903969|T037|AB|W18.2XXS|ICD10CM|Fall in (into) shower or empty bathtub, sequela|Fall in (into) shower or empty bathtub, sequela +C2903969|T037|PT|W18.2XXS|ICD10CM|Fall in (into) shower or empty bathtub, sequela|Fall in (into) shower or empty bathtub, sequela +C2903970|T037|AB|W18.3|ICD10CM|Other and unspecified fall on same level|Other and unspecified fall on same level +C2903970|T037|HT|W18.3|ICD10CM|Other and unspecified fall on same level|Other and unspecified fall on same level +C2903971|T037|AB|W18.30|ICD10CM|Fall on same level, unspecified|Fall on same level, unspecified +C2903971|T037|HT|W18.30|ICD10CM|Fall on same level, unspecified|Fall on same level, unspecified +C2903972|T037|AB|W18.30XA|ICD10CM|Fall on same level, unspecified, initial encounter|Fall on same level, unspecified, initial encounter +C2903972|T037|PT|W18.30XA|ICD10CM|Fall on same level, unspecified, initial encounter|Fall on same level, unspecified, initial encounter +C2903973|T037|AB|W18.30XD|ICD10CM|Fall on same level, unspecified, subsequent encounter|Fall on same level, unspecified, subsequent encounter +C2903973|T037|PT|W18.30XD|ICD10CM|Fall on same level, unspecified, subsequent encounter|Fall on same level, unspecified, subsequent encounter +C2903974|T037|AB|W18.30XS|ICD10CM|Fall on same level, unspecified, sequela|Fall on same level, unspecified, sequela +C2903974|T037|PT|W18.30XS|ICD10CM|Fall on same level, unspecified, sequela|Fall on same level, unspecified, sequela +C2903975|T037|ET|W18.31|ICD10CM|Fall on same level due to stepping on an animal|Fall on same level due to stepping on an animal +C2903976|T037|HT|W18.31|ICD10CM|Fall on same level due to stepping on an object|Fall on same level due to stepping on an object +C2903976|T037|AB|W18.31|ICD10CM|Fall on same level due to stepping on an object|Fall on same level due to stepping on an object +C2903977|T037|AB|W18.31XA|ICD10CM|Fall on same level due to stepping on an object, init encntr|Fall on same level due to stepping on an object, init encntr +C2903977|T037|PT|W18.31XA|ICD10CM|Fall on same level due to stepping on an object, initial encounter|Fall on same level due to stepping on an object, initial encounter +C2903978|T037|AB|W18.31XD|ICD10CM|Fall on same level due to stepping on an object, subs encntr|Fall on same level due to stepping on an object, subs encntr +C2903978|T037|PT|W18.31XD|ICD10CM|Fall on same level due to stepping on an object, subsequent encounter|Fall on same level due to stepping on an object, subsequent encounter +C2903979|T037|AB|W18.31XS|ICD10CM|Fall on same level due to stepping on an object, sequela|Fall on same level due to stepping on an object, sequela +C2903979|T037|PT|W18.31XS|ICD10CM|Fall on same level due to stepping on an object, sequela|Fall on same level due to stepping on an object, sequela +C0478875|T037|HT|W18.39|ICD10CM|Other fall on same level|Other fall on same level +C0478875|T037|AB|W18.39|ICD10CM|Other fall on same level|Other fall on same level +C2903980|T037|AB|W18.39XA|ICD10CM|Other fall on same level, initial encounter|Other fall on same level, initial encounter +C2903980|T037|PT|W18.39XA|ICD10CM|Other fall on same level, initial encounter|Other fall on same level, initial encounter +C2903981|T037|AB|W18.39XD|ICD10CM|Other fall on same level, subsequent encounter|Other fall on same level, subsequent encounter +C2903981|T037|PT|W18.39XD|ICD10CM|Other fall on same level, subsequent encounter|Other fall on same level, subsequent encounter +C2903982|T037|AB|W18.39XS|ICD10CM|Other fall on same level, sequela|Other fall on same level, sequela +C2903982|T037|PT|W18.39XS|ICD10CM|Other fall on same level, sequela|Other fall on same level, sequela +C2903984|T033|AB|W18.4|ICD10CM|Slipping, tripping and stumbling without falling|Slipping, tripping and stumbling without falling +C2903984|T033|HT|W18.4|ICD10CM|Slipping, tripping and stumbling without falling|Slipping, tripping and stumbling without falling +C2903984|T033|AB|W18.40|ICD10CM|Slipping, tripping and stumbling without falling, unsp|Slipping, tripping and stumbling without falling, unsp +C2903984|T033|HT|W18.40|ICD10CM|Slipping, tripping and stumbling without falling, unspecified|Slipping, tripping and stumbling without falling, unspecified +C2903985|T037|AB|W18.40XA|ICD10CM|Slipping, tripping and stumbling w/o falling, unsp, init|Slipping, tripping and stumbling w/o falling, unsp, init +C2903985|T037|PT|W18.40XA|ICD10CM|Slipping, tripping and stumbling without falling, unspecified, initial encounter|Slipping, tripping and stumbling without falling, unspecified, initial encounter +C2903986|T037|AB|W18.40XD|ICD10CM|Slipping, tripping and stumbling w/o falling, unsp, subs|Slipping, tripping and stumbling w/o falling, unsp, subs +C2903986|T037|PT|W18.40XD|ICD10CM|Slipping, tripping and stumbling without falling, unspecified, subsequent encounter|Slipping, tripping and stumbling without falling, unspecified, subsequent encounter +C2903987|T037|AB|W18.40XS|ICD10CM|Slipping, tripping and stumbling w/o falling, unsp, sequela|Slipping, tripping and stumbling w/o falling, unsp, sequela +C2903987|T037|PT|W18.40XS|ICD10CM|Slipping, tripping and stumbling without falling, unspecified, sequela|Slipping, tripping and stumbling without falling, unspecified, sequela +C2903989|T037|AB|W18.41|ICD10CM|Slip/trip w/o falling due to stepping on object|Slip/trip w/o falling due to stepping on object +C2903988|T037|ET|W18.41|ICD10CM|Slipping, tripping and stumbling without falling due to stepping on animal|Slipping, tripping and stumbling without falling due to stepping on animal +C2903989|T037|HT|W18.41|ICD10CM|Slipping, tripping and stumbling without falling due to stepping on object|Slipping, tripping and stumbling without falling due to stepping on object +C2903990|T037|AB|W18.41XA|ICD10CM|Slip/trip w/o falling due to stepping on object, init|Slip/trip w/o falling due to stepping on object, init +C2903990|T037|PT|W18.41XA|ICD10CM|Slipping, tripping and stumbling without falling due to stepping on object, initial encounter|Slipping, tripping and stumbling without falling due to stepping on object, initial encounter +C2903991|T037|AB|W18.41XD|ICD10CM|Slip/trip w/o falling due to stepping on object, subs|Slip/trip w/o falling due to stepping on object, subs +C2903991|T037|PT|W18.41XD|ICD10CM|Slipping, tripping and stumbling without falling due to stepping on object, subsequent encounter|Slipping, tripping and stumbling without falling due to stepping on object, subsequent encounter +C2903992|T037|AB|W18.41XS|ICD10CM|Slip/trip w/o falling due to stepping on object, sequela|Slip/trip w/o falling due to stepping on object, sequela +C2903992|T037|PT|W18.41XS|ICD10CM|Slipping, tripping and stumbling without falling due to stepping on object, sequela|Slipping, tripping and stumbling without falling due to stepping on object, sequela +C2903993|T037|AB|W18.42|ICD10CM|Slip/trip w/o falling due to stepping into hole or opening|Slip/trip w/o falling due to stepping into hole or opening +C2903993|T037|HT|W18.42|ICD10CM|Slipping, tripping and stumbling without falling due to stepping into hole or opening|Slipping, tripping and stumbling without falling due to stepping into hole or opening +C2903994|T037|AB|W18.42XA|ICD10CM|Slip/trip w/o falling due to step into hole or opening, init|Slip/trip w/o falling due to step into hole or opening, init +C2903995|T037|AB|W18.42XD|ICD10CM|Slip/trip w/o falling due to step into hole or opening, subs|Slip/trip w/o falling due to step into hole or opening, subs +C2903996|T037|AB|W18.42XS|ICD10CM|Slip/trip w/o fall due to step into hole or opening, sequela|Slip/trip w/o fall due to step into hole or opening, sequela +C2903996|T037|PT|W18.42XS|ICD10CM|Slipping, tripping and stumbling without falling due to stepping into hole or opening, sequela|Slipping, tripping and stumbling without falling due to stepping into hole or opening, sequela +C2903997|T037|AB|W18.43|ICD10CM|Slip/trip w/o falling due to step from one level to another|Slip/trip w/o falling due to step from one level to another +C2903997|T037|HT|W18.43|ICD10CM|Slipping, tripping and stumbling without falling due to stepping from one level to another|Slipping, tripping and stumbling without falling due to stepping from one level to another +C2903998|T037|AB|W18.43XA|ICD10CM|Slip/trip w/o fall d/t step from one level to another, init|Slip/trip w/o fall d/t step from one level to another, init +C2903999|T037|AB|W18.43XD|ICD10CM|Slip/trip w/o fall d/t step from one level to another, subs|Slip/trip w/o fall d/t step from one level to another, subs +C2904000|T037|AB|W18.43XS|ICD10CM|Slip/trip w/o fall d/t step from one level to another, sqla|Slip/trip w/o fall d/t step from one level to another, sqla +C2904000|T037|PT|W18.43XS|ICD10CM|Slipping, tripping and stumbling without falling due to stepping from one level to another, sequela|Slipping, tripping and stumbling without falling due to stepping from one level to another, sequela +C2904001|T037|AB|W18.49|ICD10CM|Other slipping, tripping and stumbling without falling|Other slipping, tripping and stumbling without falling +C2904001|T037|HT|W18.49|ICD10CM|Other slipping, tripping and stumbling without falling|Other slipping, tripping and stumbling without falling +C2904002|T037|AB|W18.49XA|ICD10CM|Oth slipping, tripping and stumbling w/o falling, init|Oth slipping, tripping and stumbling w/o falling, init +C2904002|T037|PT|W18.49XA|ICD10CM|Other slipping, tripping and stumbling without falling, initial encounter|Other slipping, tripping and stumbling without falling, initial encounter +C2904003|T037|AB|W18.49XD|ICD10CM|Oth slipping, tripping and stumbling w/o falling, subs|Oth slipping, tripping and stumbling w/o falling, subs +C2904003|T037|PT|W18.49XD|ICD10CM|Other slipping, tripping and stumbling without falling, subsequent encounter|Other slipping, tripping and stumbling without falling, subsequent encounter +C2904004|T037|AB|W18.49XS|ICD10CM|Other slipping, tripping and stumbling w/o falling, sequela|Other slipping, tripping and stumbling w/o falling, sequela +C2904004|T037|PT|W18.49XS|ICD10CM|Other slipping, tripping and stumbling without falling, sequela|Other slipping, tripping and stumbling without falling, sequela +C0000921|T037|ET|W19|ICD10CM|Accidental fall NOS|Accidental fall NOS +C0085639|T033|HT|W19|ICD10CM|Unspecified fall|Unspecified fall +C0085639|T033|AB|W19|ICD10CM|Unspecified fall|Unspecified fall +C0085639|T033|PS|W19|ICD10|Unspecified fall|Unspecified fall +C0085639|T033|PX|W19|ICD10|Unspecified fall causing accidental injury|Unspecified fall causing accidental injury +C2904005|T037|AB|W19.XXXA|ICD10CM|Unspecified fall, initial encounter|Unspecified fall, initial encounter +C2904005|T037|PT|W19.XXXA|ICD10CM|Unspecified fall, initial encounter|Unspecified fall, initial encounter +C2904006|T037|AB|W19.XXXD|ICD10CM|Unspecified fall, subsequent encounter|Unspecified fall, subsequent encounter +C2904006|T037|PT|W19.XXXD|ICD10CM|Unspecified fall, subsequent encounter|Unspecified fall, subsequent encounter +C2904007|T037|AB|W19.XXXS|ICD10CM|Unspecified fall, sequela|Unspecified fall, sequela +C2904007|T037|PT|W19.XXXS|ICD10CM|Unspecified fall, sequela|Unspecified fall, sequela +C0478903|T037|PS|W20|ICD10|Struck by thrown, projected or falling object|Struck by thrown, projected or falling object +C0478903|T037|HT|W20|ICD10CM|Struck by thrown, projected or falling object|Struck by thrown, projected or falling object +C0478903|T037|AB|W20|ICD10CM|Struck by thrown, projected or falling object|Struck by thrown, projected or falling object +C0478903|T037|PX|W20|ICD10|Struck by thrown, projected or falling object causing accidental injury|Struck by thrown, projected or falling object causing accidental injury +C0337242|T037|HT|W20-W49|ICD10CM|Exposure to inanimate mechanical forces (W20-W49)|Exposure to inanimate mechanical forces (W20-W49) +C0337242|T037|HT|W20-W49.9|ICD10|Exposure to inanimate mechanical forces|Exposure to inanimate mechanical forces +C2904008|T037|HT|W20.0|ICD10CM|Struck by falling object in cave-in|Struck by falling object in cave-in +C2904008|T037|AB|W20.0|ICD10CM|Struck by falling object in cave-in|Struck by falling object in cave-in +C2904009|T037|AB|W20.0XXA|ICD10CM|Struck by falling object in cave-in, initial encounter|Struck by falling object in cave-in, initial encounter +C2904009|T037|PT|W20.0XXA|ICD10CM|Struck by falling object in cave-in, initial encounter|Struck by falling object in cave-in, initial encounter +C2904010|T037|AB|W20.0XXD|ICD10CM|Struck by falling object in cave-in, subsequent encounter|Struck by falling object in cave-in, subsequent encounter +C2904010|T037|PT|W20.0XXD|ICD10CM|Struck by falling object in cave-in, subsequent encounter|Struck by falling object in cave-in, subsequent encounter +C2904011|T037|AB|W20.0XXS|ICD10CM|Struck by falling object in cave-in, sequela|Struck by falling object in cave-in, sequela +C2904011|T037|PT|W20.0XXS|ICD10CM|Struck by falling object in cave-in, sequela|Struck by falling object in cave-in, sequela +C2904012|T037|HT|W20.1|ICD10CM|Struck by object due to collapse of building|Struck by object due to collapse of building +C2904012|T037|AB|W20.1|ICD10CM|Struck by object due to collapse of building|Struck by object due to collapse of building +C2904013|T037|AB|W20.1XXA|ICD10CM|Struck by object due to collapse of building, init encntr|Struck by object due to collapse of building, init encntr +C2904013|T037|PT|W20.1XXA|ICD10CM|Struck by object due to collapse of building, initial encounter|Struck by object due to collapse of building, initial encounter +C2904014|T037|AB|W20.1XXD|ICD10CM|Struck by object due to collapse of building, subs encntr|Struck by object due to collapse of building, subs encntr +C2904014|T037|PT|W20.1XXD|ICD10CM|Struck by object due to collapse of building, subsequent encounter|Struck by object due to collapse of building, subsequent encounter +C2904015|T037|AB|W20.1XXS|ICD10CM|Struck by object due to collapse of building, sequela|Struck by object due to collapse of building, sequela +C2904015|T037|PT|W20.1XXS|ICD10CM|Struck by object due to collapse of building, sequela|Struck by object due to collapse of building, sequela +C2904016|T037|AB|W20.8|ICD10CM|Other cause of strike by thrown, projected or falling object|Other cause of strike by thrown, projected or falling object +C2904016|T037|HT|W20.8|ICD10CM|Other cause of strike by thrown, projected or falling object|Other cause of strike by thrown, projected or falling object +C2904017|T037|AB|W20.8XXA|ICD10CM|Oth cause of strike by thrown, projected or fall obj, init|Oth cause of strike by thrown, projected or fall obj, init +C2904017|T037|PT|W20.8XXA|ICD10CM|Other cause of strike by thrown, projected or falling object, initial encounter|Other cause of strike by thrown, projected or falling object, initial encounter +C2904018|T037|AB|W20.8XXD|ICD10CM|Oth cause of strike by thrown, projected or fall obj, subs|Oth cause of strike by thrown, projected or fall obj, subs +C2904018|T037|PT|W20.8XXD|ICD10CM|Other cause of strike by thrown, projected or falling object, subsequent encounter|Other cause of strike by thrown, projected or falling object, subsequent encounter +C2904019|T037|AB|W20.8XXS|ICD10CM|Oth cause of strike by thrown, projected or fall obj, sqla|Oth cause of strike by thrown, projected or fall obj, sqla +C2904019|T037|PT|W20.8XXS|ICD10CM|Other cause of strike by thrown, projected or falling object, sequela|Other cause of strike by thrown, projected or falling object, sequela +C0337263|T037|PS|W21|ICD10|Striking against or struck by sports equipment|Striking against or struck by sports equipment +C0337263|T037|HT|W21|ICD10CM|Striking against or struck by sports equipment|Striking against or struck by sports equipment +C0337263|T037|AB|W21|ICD10CM|Striking against or struck by sports equipment|Striking against or struck by sports equipment +C0337263|T037|PX|W21|ICD10|Striking against or struck by sports equipment causing accidental injury|Striking against or struck by sports equipment causing accidental injury +C0867984|T037|HT|W21.0|ICD10CM|Struck by hit or thrown ball|Struck by hit or thrown ball +C0867984|T037|AB|W21.0|ICD10CM|Struck by hit or thrown ball|Struck by hit or thrown ball +C2904020|T037|AB|W21.00|ICD10CM|Struck by hit or thrown ball, unspecified type|Struck by hit or thrown ball, unspecified type +C2904020|T037|HT|W21.00|ICD10CM|Struck by hit or thrown ball, unspecified type|Struck by hit or thrown ball, unspecified type +C2904021|T037|AB|W21.00XA|ICD10CM|Struck by hit or thrown ball, unspecified type, init encntr|Struck by hit or thrown ball, unspecified type, init encntr +C2904021|T037|PT|W21.00XA|ICD10CM|Struck by hit or thrown ball, unspecified type, initial encounter|Struck by hit or thrown ball, unspecified type, initial encounter +C2904022|T037|AB|W21.00XD|ICD10CM|Struck by hit or thrown ball, unspecified type, subs encntr|Struck by hit or thrown ball, unspecified type, subs encntr +C2904022|T037|PT|W21.00XD|ICD10CM|Struck by hit or thrown ball, unspecified type, subsequent encounter|Struck by hit or thrown ball, unspecified type, subsequent encounter +C2904023|T037|AB|W21.00XS|ICD10CM|Struck by hit or thrown ball, unspecified type, sequela|Struck by hit or thrown ball, unspecified type, sequela +C2904023|T037|PT|W21.00XS|ICD10CM|Struck by hit or thrown ball, unspecified type, sequela|Struck by hit or thrown ball, unspecified type, sequela +C2904024|T037|AB|W21.01|ICD10CM|Struck by football|Struck by football +C2904024|T037|HT|W21.01|ICD10CM|Struck by football|Struck by football +C2904025|T037|AB|W21.01XA|ICD10CM|Struck by football, initial encounter|Struck by football, initial encounter +C2904025|T037|PT|W21.01XA|ICD10CM|Struck by football, initial encounter|Struck by football, initial encounter +C2904026|T037|AB|W21.01XD|ICD10CM|Struck by football, subsequent encounter|Struck by football, subsequent encounter +C2904026|T037|PT|W21.01XD|ICD10CM|Struck by football, subsequent encounter|Struck by football, subsequent encounter +C2904027|T037|AB|W21.01XS|ICD10CM|Struck by football, sequela|Struck by football, sequela +C2904027|T037|PT|W21.01XS|ICD10CM|Struck by football, sequela|Struck by football, sequela +C2904028|T037|AB|W21.02|ICD10CM|Struck by soccer ball|Struck by soccer ball +C2904028|T037|HT|W21.02|ICD10CM|Struck by soccer ball|Struck by soccer ball +C2904029|T037|AB|W21.02XA|ICD10CM|Struck by soccer ball, initial encounter|Struck by soccer ball, initial encounter +C2904029|T037|PT|W21.02XA|ICD10CM|Struck by soccer ball, initial encounter|Struck by soccer ball, initial encounter +C2904030|T037|AB|W21.02XD|ICD10CM|Struck by soccer ball, subsequent encounter|Struck by soccer ball, subsequent encounter +C2904030|T037|PT|W21.02XD|ICD10CM|Struck by soccer ball, subsequent encounter|Struck by soccer ball, subsequent encounter +C2904031|T037|AB|W21.02XS|ICD10CM|Struck by soccer ball, sequela|Struck by soccer ball, sequela +C2904031|T037|PT|W21.02XS|ICD10CM|Struck by soccer ball, sequela|Struck by soccer ball, sequela +C2904032|T037|AB|W21.03|ICD10CM|Struck by baseball|Struck by baseball +C2904032|T037|HT|W21.03|ICD10CM|Struck by baseball|Struck by baseball +C2904033|T037|AB|W21.03XA|ICD10CM|Struck by baseball, initial encounter|Struck by baseball, initial encounter +C2904033|T037|PT|W21.03XA|ICD10CM|Struck by baseball, initial encounter|Struck by baseball, initial encounter +C2904034|T037|AB|W21.03XD|ICD10CM|Struck by baseball, subsequent encounter|Struck by baseball, subsequent encounter +C2904034|T037|PT|W21.03XD|ICD10CM|Struck by baseball, subsequent encounter|Struck by baseball, subsequent encounter +C2904035|T037|AB|W21.03XS|ICD10CM|Struck by baseball, sequela|Struck by baseball, sequela +C2904035|T037|PT|W21.03XS|ICD10CM|Struck by baseball, sequela|Struck by baseball, sequela +C2904036|T037|AB|W21.04|ICD10CM|Struck by golf ball|Struck by golf ball +C2904036|T037|HT|W21.04|ICD10CM|Struck by golf ball|Struck by golf ball +C2904037|T037|AB|W21.04XA|ICD10CM|Struck by golf ball, initial encounter|Struck by golf ball, initial encounter +C2904037|T037|PT|W21.04XA|ICD10CM|Struck by golf ball, initial encounter|Struck by golf ball, initial encounter +C2904038|T037|AB|W21.04XD|ICD10CM|Struck by golf ball, subsequent encounter|Struck by golf ball, subsequent encounter +C2904038|T037|PT|W21.04XD|ICD10CM|Struck by golf ball, subsequent encounter|Struck by golf ball, subsequent encounter +C2904039|T037|AB|W21.04XS|ICD10CM|Struck by golf ball, sequela|Struck by golf ball, sequela +C2904039|T037|PT|W21.04XS|ICD10CM|Struck by golf ball, sequela|Struck by golf ball, sequela +C2904040|T037|AB|W21.05|ICD10CM|Struck by basketball|Struck by basketball +C2904040|T037|HT|W21.05|ICD10CM|Struck by basketball|Struck by basketball +C2904041|T037|AB|W21.05XA|ICD10CM|Struck by basketball, initial encounter|Struck by basketball, initial encounter +C2904041|T037|PT|W21.05XA|ICD10CM|Struck by basketball, initial encounter|Struck by basketball, initial encounter +C2904042|T037|AB|W21.05XD|ICD10CM|Struck by basketball, subsequent encounter|Struck by basketball, subsequent encounter +C2904042|T037|PT|W21.05XD|ICD10CM|Struck by basketball, subsequent encounter|Struck by basketball, subsequent encounter +C2904043|T037|AB|W21.05XS|ICD10CM|Struck by basketball, sequela|Struck by basketball, sequela +C2904043|T037|PT|W21.05XS|ICD10CM|Struck by basketball, sequela|Struck by basketball, sequela +C2904044|T037|AB|W21.06|ICD10CM|Struck by volleyball|Struck by volleyball +C2904044|T037|HT|W21.06|ICD10CM|Struck by volleyball|Struck by volleyball +C2904045|T037|AB|W21.06XA|ICD10CM|Struck by volleyball, initial encounter|Struck by volleyball, initial encounter +C2904045|T037|PT|W21.06XA|ICD10CM|Struck by volleyball, initial encounter|Struck by volleyball, initial encounter +C2904046|T037|AB|W21.06XD|ICD10CM|Struck by volleyball, subsequent encounter|Struck by volleyball, subsequent encounter +C2904046|T037|PT|W21.06XD|ICD10CM|Struck by volleyball, subsequent encounter|Struck by volleyball, subsequent encounter +C2904047|T037|AB|W21.06XS|ICD10CM|Struck by volleyball, sequela|Struck by volleyball, sequela +C2904047|T037|PT|W21.06XS|ICD10CM|Struck by volleyball, sequela|Struck by volleyball, sequela +C2904048|T037|AB|W21.07|ICD10CM|Struck by softball|Struck by softball +C2904048|T037|HT|W21.07|ICD10CM|Struck by softball|Struck by softball +C2904049|T037|AB|W21.07XA|ICD10CM|Struck by softball, initial encounter|Struck by softball, initial encounter +C2904049|T037|PT|W21.07XA|ICD10CM|Struck by softball, initial encounter|Struck by softball, initial encounter +C2904050|T037|AB|W21.07XD|ICD10CM|Struck by softball, subsequent encounter|Struck by softball, subsequent encounter +C2904050|T037|PT|W21.07XD|ICD10CM|Struck by softball, subsequent encounter|Struck by softball, subsequent encounter +C2904051|T037|AB|W21.07XS|ICD10CM|Struck by softball, sequela|Struck by softball, sequela +C2904051|T037|PT|W21.07XS|ICD10CM|Struck by softball, sequela|Struck by softball, sequela +C2904052|T037|AB|W21.09|ICD10CM|Struck by other hit or thrown ball|Struck by other hit or thrown ball +C2904052|T037|HT|W21.09|ICD10CM|Struck by other hit or thrown ball|Struck by other hit or thrown ball +C2904053|T037|AB|W21.09XA|ICD10CM|Struck by other hit or thrown ball, initial encounter|Struck by other hit or thrown ball, initial encounter +C2904053|T037|PT|W21.09XA|ICD10CM|Struck by other hit or thrown ball, initial encounter|Struck by other hit or thrown ball, initial encounter +C2904054|T037|AB|W21.09XD|ICD10CM|Struck by other hit or thrown ball, subsequent encounter|Struck by other hit or thrown ball, subsequent encounter +C2904054|T037|PT|W21.09XD|ICD10CM|Struck by other hit or thrown ball, subsequent encounter|Struck by other hit or thrown ball, subsequent encounter +C2904055|T037|AB|W21.09XS|ICD10CM|Struck by other hit or thrown ball, sequela|Struck by other hit or thrown ball, sequela +C2904055|T037|PT|W21.09XS|ICD10CM|Struck by other hit or thrown ball, sequela|Struck by other hit or thrown ball, sequela +C2904056|T037|HT|W21.1|ICD10CM|Struck by bat, racquet or club|Struck by bat, racquet or club +C2904056|T037|AB|W21.1|ICD10CM|Struck by bat, racquet or club|Struck by bat, racquet or club +C2904057|T037|AB|W21.11|ICD10CM|Struck by baseball bat|Struck by baseball bat +C2904057|T037|HT|W21.11|ICD10CM|Struck by baseball bat|Struck by baseball bat +C2904058|T037|AB|W21.11XA|ICD10CM|Struck by baseball bat, initial encounter|Struck by baseball bat, initial encounter +C2904058|T037|PT|W21.11XA|ICD10CM|Struck by baseball bat, initial encounter|Struck by baseball bat, initial encounter +C2904059|T037|AB|W21.11XD|ICD10CM|Struck by baseball bat, subsequent encounter|Struck by baseball bat, subsequent encounter +C2904059|T037|PT|W21.11XD|ICD10CM|Struck by baseball bat, subsequent encounter|Struck by baseball bat, subsequent encounter +C2904060|T037|AB|W21.11XS|ICD10CM|Struck by baseball bat, sequela|Struck by baseball bat, sequela +C2904060|T037|PT|W21.11XS|ICD10CM|Struck by baseball bat, sequela|Struck by baseball bat, sequela +C2904061|T037|AB|W21.12|ICD10CM|Struck by tennis racquet|Struck by tennis racquet +C2904061|T037|HT|W21.12|ICD10CM|Struck by tennis racquet|Struck by tennis racquet +C2904062|T037|AB|W21.12XA|ICD10CM|Struck by tennis racquet, initial encounter|Struck by tennis racquet, initial encounter +C2904062|T037|PT|W21.12XA|ICD10CM|Struck by tennis racquet, initial encounter|Struck by tennis racquet, initial encounter +C2904063|T037|AB|W21.12XD|ICD10CM|Struck by tennis racquet, subsequent encounter|Struck by tennis racquet, subsequent encounter +C2904063|T037|PT|W21.12XD|ICD10CM|Struck by tennis racquet, subsequent encounter|Struck by tennis racquet, subsequent encounter +C2904064|T037|AB|W21.12XS|ICD10CM|Struck by tennis racquet, sequela|Struck by tennis racquet, sequela +C2904064|T037|PT|W21.12XS|ICD10CM|Struck by tennis racquet, sequela|Struck by tennis racquet, sequela +C2904065|T037|AB|W21.13|ICD10CM|Struck by golf club|Struck by golf club +C2904065|T037|HT|W21.13|ICD10CM|Struck by golf club|Struck by golf club +C2904066|T037|AB|W21.13XA|ICD10CM|Struck by golf club, initial encounter|Struck by golf club, initial encounter +C2904066|T037|PT|W21.13XA|ICD10CM|Struck by golf club, initial encounter|Struck by golf club, initial encounter +C2904067|T037|AB|W21.13XD|ICD10CM|Struck by golf club, subsequent encounter|Struck by golf club, subsequent encounter +C2904067|T037|PT|W21.13XD|ICD10CM|Struck by golf club, subsequent encounter|Struck by golf club, subsequent encounter +C2904068|T037|AB|W21.13XS|ICD10CM|Struck by golf club, sequela|Struck by golf club, sequela +C2904068|T037|PT|W21.13XS|ICD10CM|Struck by golf club, sequela|Struck by golf club, sequela +C2904069|T037|AB|W21.19|ICD10CM|Struck by other bat, racquet or club|Struck by other bat, racquet or club +C2904069|T037|HT|W21.19|ICD10CM|Struck by other bat, racquet or club|Struck by other bat, racquet or club +C2904070|T037|AB|W21.19XA|ICD10CM|Struck by other bat, racquet or club, initial encounter|Struck by other bat, racquet or club, initial encounter +C2904070|T037|PT|W21.19XA|ICD10CM|Struck by other bat, racquet or club, initial encounter|Struck by other bat, racquet or club, initial encounter +C2904071|T037|AB|W21.19XD|ICD10CM|Struck by other bat, racquet or club, subsequent encounter|Struck by other bat, racquet or club, subsequent encounter +C2904071|T037|PT|W21.19XD|ICD10CM|Struck by other bat, racquet or club, subsequent encounter|Struck by other bat, racquet or club, subsequent encounter +C2904072|T037|AB|W21.19XS|ICD10CM|Struck by other bat, racquet or club, sequela|Struck by other bat, racquet or club, sequela +C2904072|T037|PT|W21.19XS|ICD10CM|Struck by other bat, racquet or club, sequela|Struck by other bat, racquet or club, sequela +C0867985|T037|AB|W21.2|ICD10CM|Struck by hockey stick or puck|Struck by hockey stick or puck +C0867985|T037|HT|W21.2|ICD10CM|Struck by hockey stick or puck|Struck by hockey stick or puck +C2904073|T037|HT|W21.21|ICD10CM|Struck by hockey stick|Struck by hockey stick +C2904073|T037|AB|W21.21|ICD10CM|Struck by hockey stick|Struck by hockey stick +C2904074|T037|AB|W21.210|ICD10CM|Struck by ice hockey stick|Struck by ice hockey stick +C2904074|T037|HT|W21.210|ICD10CM|Struck by ice hockey stick|Struck by ice hockey stick +C2904075|T037|AB|W21.210A|ICD10CM|Struck by ice hockey stick, initial encounter|Struck by ice hockey stick, initial encounter +C2904075|T037|PT|W21.210A|ICD10CM|Struck by ice hockey stick, initial encounter|Struck by ice hockey stick, initial encounter +C2904076|T037|AB|W21.210D|ICD10CM|Struck by ice hockey stick, subsequent encounter|Struck by ice hockey stick, subsequent encounter +C2904076|T037|PT|W21.210D|ICD10CM|Struck by ice hockey stick, subsequent encounter|Struck by ice hockey stick, subsequent encounter +C2904077|T037|AB|W21.210S|ICD10CM|Struck by ice hockey stick, sequela|Struck by ice hockey stick, sequela +C2904077|T037|PT|W21.210S|ICD10CM|Struck by ice hockey stick, sequela|Struck by ice hockey stick, sequela +C2904078|T037|AB|W21.211|ICD10CM|Struck by field hockey stick|Struck by field hockey stick +C2904078|T037|HT|W21.211|ICD10CM|Struck by field hockey stick|Struck by field hockey stick +C2904079|T037|AB|W21.211A|ICD10CM|Struck by field hockey stick, initial encounter|Struck by field hockey stick, initial encounter +C2904079|T037|PT|W21.211A|ICD10CM|Struck by field hockey stick, initial encounter|Struck by field hockey stick, initial encounter +C2904080|T037|AB|W21.211D|ICD10CM|Struck by field hockey stick, subsequent encounter|Struck by field hockey stick, subsequent encounter +C2904080|T037|PT|W21.211D|ICD10CM|Struck by field hockey stick, subsequent encounter|Struck by field hockey stick, subsequent encounter +C2904081|T037|AB|W21.211S|ICD10CM|Struck by field hockey stick, sequela|Struck by field hockey stick, sequela +C2904081|T037|PT|W21.211S|ICD10CM|Struck by field hockey stick, sequela|Struck by field hockey stick, sequela +C2904082|T037|HT|W21.22|ICD10CM|Struck by hockey puck|Struck by hockey puck +C2904082|T037|AB|W21.22|ICD10CM|Struck by hockey puck|Struck by hockey puck +C2904083|T037|AB|W21.220|ICD10CM|Struck by ice hockey puck|Struck by ice hockey puck +C2904083|T037|HT|W21.220|ICD10CM|Struck by ice hockey puck|Struck by ice hockey puck +C2904084|T037|AB|W21.220A|ICD10CM|Struck by ice hockey puck, initial encounter|Struck by ice hockey puck, initial encounter +C2904084|T037|PT|W21.220A|ICD10CM|Struck by ice hockey puck, initial encounter|Struck by ice hockey puck, initial encounter +C2904085|T037|AB|W21.220D|ICD10CM|Struck by ice hockey puck, subsequent encounter|Struck by ice hockey puck, subsequent encounter +C2904085|T037|PT|W21.220D|ICD10CM|Struck by ice hockey puck, subsequent encounter|Struck by ice hockey puck, subsequent encounter +C2904086|T037|AB|W21.220S|ICD10CM|Struck by ice hockey puck, sequela|Struck by ice hockey puck, sequela +C2904086|T037|PT|W21.220S|ICD10CM|Struck by ice hockey puck, sequela|Struck by ice hockey puck, sequela +C2904087|T037|AB|W21.221|ICD10CM|Struck by field hockey puck|Struck by field hockey puck +C2904087|T037|HT|W21.221|ICD10CM|Struck by field hockey puck|Struck by field hockey puck +C2904088|T037|AB|W21.221A|ICD10CM|Struck by field hockey puck, initial encounter|Struck by field hockey puck, initial encounter +C2904088|T037|PT|W21.221A|ICD10CM|Struck by field hockey puck, initial encounter|Struck by field hockey puck, initial encounter +C2904089|T037|AB|W21.221D|ICD10CM|Struck by field hockey puck, subsequent encounter|Struck by field hockey puck, subsequent encounter +C2904089|T037|PT|W21.221D|ICD10CM|Struck by field hockey puck, subsequent encounter|Struck by field hockey puck, subsequent encounter +C2904090|T037|AB|W21.221S|ICD10CM|Struck by field hockey puck, sequela|Struck by field hockey puck, sequela +C2904090|T037|PT|W21.221S|ICD10CM|Struck by field hockey puck, sequela|Struck by field hockey puck, sequela +C2904091|T037|HT|W21.3|ICD10CM|Struck by sports foot wear|Struck by sports foot wear +C2904091|T037|AB|W21.3|ICD10CM|Struck by sports foot wear|Struck by sports foot wear +C2904092|T037|ET|W21.31|ICD10CM|Stepped on by shoe cleats|Stepped on by shoe cleats +C2904093|T037|AB|W21.31|ICD10CM|Struck by shoe cleats|Struck by shoe cleats +C2904093|T037|HT|W21.31|ICD10CM|Struck by shoe cleats|Struck by shoe cleats +C2904094|T037|AB|W21.31XA|ICD10CM|Struck by shoe cleats, initial encounter|Struck by shoe cleats, initial encounter +C2904094|T037|PT|W21.31XA|ICD10CM|Struck by shoe cleats, initial encounter|Struck by shoe cleats, initial encounter +C2904095|T037|AB|W21.31XD|ICD10CM|Struck by shoe cleats, subsequent encounter|Struck by shoe cleats, subsequent encounter +C2904095|T037|PT|W21.31XD|ICD10CM|Struck by shoe cleats, subsequent encounter|Struck by shoe cleats, subsequent encounter +C2904096|T037|AB|W21.31XS|ICD10CM|Struck by shoe cleats, sequela|Struck by shoe cleats, sequela +C2904096|T037|PT|W21.31XS|ICD10CM|Struck by shoe cleats, sequela|Struck by shoe cleats, sequela +C2904097|T037|ET|W21.32|ICD10CM|Skated over by skate blades|Skated over by skate blades +C2904098|T037|AB|W21.32|ICD10CM|Struck by skate blades|Struck by skate blades +C2904098|T037|HT|W21.32|ICD10CM|Struck by skate blades|Struck by skate blades +C2904099|T037|AB|W21.32XA|ICD10CM|Struck by skate blades, initial encounter|Struck by skate blades, initial encounter +C2904099|T037|PT|W21.32XA|ICD10CM|Struck by skate blades, initial encounter|Struck by skate blades, initial encounter +C2904100|T037|AB|W21.32XD|ICD10CM|Struck by skate blades, subsequent encounter|Struck by skate blades, subsequent encounter +C2904100|T037|PT|W21.32XD|ICD10CM|Struck by skate blades, subsequent encounter|Struck by skate blades, subsequent encounter +C2904101|T037|AB|W21.32XS|ICD10CM|Struck by skate blades, sequela|Struck by skate blades, sequela +C2904101|T037|PT|W21.32XS|ICD10CM|Struck by skate blades, sequela|Struck by skate blades, sequela +C2904102|T037|AB|W21.39|ICD10CM|Struck by other sports foot wear|Struck by other sports foot wear +C2904102|T037|HT|W21.39|ICD10CM|Struck by other sports foot wear|Struck by other sports foot wear +C2904103|T037|AB|W21.39XA|ICD10CM|Struck by other sports foot wear, initial encounter|Struck by other sports foot wear, initial encounter +C2904103|T037|PT|W21.39XA|ICD10CM|Struck by other sports foot wear, initial encounter|Struck by other sports foot wear, initial encounter +C2904104|T037|AB|W21.39XD|ICD10CM|Struck by other sports foot wear, subsequent encounter|Struck by other sports foot wear, subsequent encounter +C2904104|T037|PT|W21.39XD|ICD10CM|Struck by other sports foot wear, subsequent encounter|Struck by other sports foot wear, subsequent encounter +C2904105|T037|AB|W21.39XS|ICD10CM|Struck by other sports foot wear, sequela|Struck by other sports foot wear, sequela +C2904105|T037|PT|W21.39XS|ICD10CM|Struck by other sports foot wear, sequela|Struck by other sports foot wear, sequela +C2904106|T037|HT|W21.4|ICD10CM|Striking against diving board|Striking against diving board +C2904106|T037|AB|W21.4|ICD10CM|Striking against diving board|Striking against diving board +C2904107|T037|AB|W21.4XXA|ICD10CM|Striking against diving board, initial encounter|Striking against diving board, initial encounter +C2904107|T037|PT|W21.4XXA|ICD10CM|Striking against diving board, initial encounter|Striking against diving board, initial encounter +C2904108|T037|AB|W21.4XXD|ICD10CM|Striking against diving board, subsequent encounter|Striking against diving board, subsequent encounter +C2904108|T037|PT|W21.4XXD|ICD10CM|Striking against diving board, subsequent encounter|Striking against diving board, subsequent encounter +C2904109|T037|AB|W21.4XXS|ICD10CM|Striking against diving board, sequela|Striking against diving board, sequela +C2904109|T037|PT|W21.4XXS|ICD10CM|Striking against diving board, sequela|Striking against diving board, sequela +C2904110|T037|AB|W21.8|ICD10CM|Striking against or struck by other sports equipment|Striking against or struck by other sports equipment +C2904110|T037|HT|W21.8|ICD10CM|Striking against or struck by other sports equipment|Striking against or struck by other sports equipment +C2904111|T037|HT|W21.81|ICD10CM|Striking against or struck by football helmet|Striking against or struck by football helmet +C2904111|T037|AB|W21.81|ICD10CM|Striking against or struck by football helmet|Striking against or struck by football helmet +C2904112|T037|AB|W21.81XA|ICD10CM|Striking against or struck by football helmet, init encntr|Striking against or struck by football helmet, init encntr +C2904112|T037|PT|W21.81XA|ICD10CM|Striking against or struck by football helmet, initial encounter|Striking against or struck by football helmet, initial encounter +C2904113|T037|AB|W21.81XD|ICD10CM|Striking against or struck by football helmet, subs encntr|Striking against or struck by football helmet, subs encntr +C2904113|T037|PT|W21.81XD|ICD10CM|Striking against or struck by football helmet, subsequent encounter|Striking against or struck by football helmet, subsequent encounter +C2904114|T037|AB|W21.81XS|ICD10CM|Striking against or struck by football helmet, sequela|Striking against or struck by football helmet, sequela +C2904114|T037|PT|W21.81XS|ICD10CM|Striking against or struck by football helmet, sequela|Striking against or struck by football helmet, sequela +C2904110|T037|HT|W21.89|ICD10CM|Striking against or struck by other sports equipment|Striking against or struck by other sports equipment +C2904110|T037|AB|W21.89|ICD10CM|Striking against or struck by other sports equipment|Striking against or struck by other sports equipment +C2904115|T037|AB|W21.89XA|ICD10CM|Striking against or struck by oth sports equipment, init|Striking against or struck by oth sports equipment, init +C2904115|T037|PT|W21.89XA|ICD10CM|Striking against or struck by other sports equipment, initial encounter|Striking against or struck by other sports equipment, initial encounter +C2904116|T037|AB|W21.89XD|ICD10CM|Striking against or struck by oth sports equipment, subs|Striking against or struck by oth sports equipment, subs +C2904116|T037|PT|W21.89XD|ICD10CM|Striking against or struck by other sports equipment, subsequent encounter|Striking against or struck by other sports equipment, subsequent encounter +C2904117|T037|AB|W21.89XS|ICD10CM|Striking against or struck by oth sports equipment, sequela|Striking against or struck by oth sports equipment, sequela +C2904117|T037|PT|W21.89XS|ICD10CM|Striking against or struck by other sports equipment, sequela|Striking against or struck by other sports equipment, sequela +C2904118|T037|AB|W21.9|ICD10CM|Striking against or struck by unspecified sports equipment|Striking against or struck by unspecified sports equipment +C2904118|T037|HT|W21.9|ICD10CM|Striking against or struck by unspecified sports equipment|Striking against or struck by unspecified sports equipment +C2904119|T037|AB|W21.9XXA|ICD10CM|Striking against or struck by unsp sports equipment, init|Striking against or struck by unsp sports equipment, init +C2904119|T037|PT|W21.9XXA|ICD10CM|Striking against or struck by unspecified sports equipment, initial encounter|Striking against or struck by unspecified sports equipment, initial encounter +C2904120|T037|AB|W21.9XXD|ICD10CM|Striking against or struck by unsp sports equipment, subs|Striking against or struck by unsp sports equipment, subs +C2904120|T037|PT|W21.9XXD|ICD10CM|Striking against or struck by unspecified sports equipment, subsequent encounter|Striking against or struck by unspecified sports equipment, subsequent encounter +C2904121|T037|AB|W21.9XXS|ICD10CM|Striking against or struck by unsp sports equipment, sequela|Striking against or struck by unsp sports equipment, sequela +C2904121|T037|PT|W21.9XXS|ICD10CM|Striking against or struck by unspecified sports equipment, sequela|Striking against or struck by unspecified sports equipment, sequela +C0478923|T037|PS|W22|ICD10|Striking against or struck by other objects|Striking against or struck by other objects +C0478923|T037|HT|W22|ICD10CM|Striking against or struck by other objects|Striking against or struck by other objects +C0478923|T037|AB|W22|ICD10CM|Striking against or struck by other objects|Striking against or struck by other objects +C0478923|T037|PX|W22|ICD10|Striking against or struck by other objects causing accidental injury|Striking against or struck by other objects causing accidental injury +C2904122|T037|AB|W22.0|ICD10CM|Striking against stationary object|Striking against stationary object +C2904122|T037|HT|W22.0|ICD10CM|Striking against stationary object|Striking against stationary object +C2904123|T037|AB|W22.01|ICD10CM|Walked into wall|Walked into wall +C2904123|T037|HT|W22.01|ICD10CM|Walked into wall|Walked into wall +C2904124|T037|AB|W22.01XA|ICD10CM|Walked into wall, initial encounter|Walked into wall, initial encounter +C2904124|T037|PT|W22.01XA|ICD10CM|Walked into wall, initial encounter|Walked into wall, initial encounter +C2904125|T037|AB|W22.01XD|ICD10CM|Walked into wall, subsequent encounter|Walked into wall, subsequent encounter +C2904125|T037|PT|W22.01XD|ICD10CM|Walked into wall, subsequent encounter|Walked into wall, subsequent encounter +C2904126|T037|AB|W22.01XS|ICD10CM|Walked into wall, sequela|Walked into wall, sequela +C2904126|T037|PT|W22.01XS|ICD10CM|Walked into wall, sequela|Walked into wall, sequela +C2904127|T037|AB|W22.02|ICD10CM|Walked into lamppost|Walked into lamppost +C2904127|T037|HT|W22.02|ICD10CM|Walked into lamppost|Walked into lamppost +C2904128|T037|AB|W22.02XA|ICD10CM|Walked into lamppost, initial encounter|Walked into lamppost, initial encounter +C2904128|T037|PT|W22.02XA|ICD10CM|Walked into lamppost, initial encounter|Walked into lamppost, initial encounter +C2904129|T037|AB|W22.02XD|ICD10CM|Walked into lamppost, subsequent encounter|Walked into lamppost, subsequent encounter +C2904129|T037|PT|W22.02XD|ICD10CM|Walked into lamppost, subsequent encounter|Walked into lamppost, subsequent encounter +C2904130|T037|AB|W22.02XS|ICD10CM|Walked into lamppost, sequela|Walked into lamppost, sequela +C2904130|T037|PT|W22.02XS|ICD10CM|Walked into lamppost, sequela|Walked into lamppost, sequela +C2904131|T037|AB|W22.03|ICD10CM|Walked into furniture|Walked into furniture +C2904131|T037|HT|W22.03|ICD10CM|Walked into furniture|Walked into furniture +C2904132|T037|AB|W22.03XA|ICD10CM|Walked into furniture, initial encounter|Walked into furniture, initial encounter +C2904132|T037|PT|W22.03XA|ICD10CM|Walked into furniture, initial encounter|Walked into furniture, initial encounter +C2904133|T037|AB|W22.03XD|ICD10CM|Walked into furniture, subsequent encounter|Walked into furniture, subsequent encounter +C2904133|T037|PT|W22.03XD|ICD10CM|Walked into furniture, subsequent encounter|Walked into furniture, subsequent encounter +C2904134|T037|AB|W22.03XS|ICD10CM|Walked into furniture, sequela|Walked into furniture, sequela +C2904134|T037|PT|W22.03XS|ICD10CM|Walked into furniture, sequela|Walked into furniture, sequela +C2904135|T037|HT|W22.04|ICD10CM|Striking against wall of swimming pool|Striking against wall of swimming pool +C2904135|T037|AB|W22.04|ICD10CM|Striking against wall of swimming pool|Striking against wall of swimming pool +C2904136|T037|AB|W22.041|ICD10CM|Striking against wall of swimming pool causing drown|Striking against wall of swimming pool causing drown +C2904136|T037|HT|W22.041|ICD10CM|Striking against wall of swimming pool causing drowning and submersion|Striking against wall of swimming pool causing drowning and submersion +C2904137|T037|AB|W22.041A|ICD10CM|Striking against wall of swimming pool causing drown, init|Striking against wall of swimming pool causing drown, init +C2904137|T037|PT|W22.041A|ICD10CM|Striking against wall of swimming pool causing drowning and submersion, initial encounter|Striking against wall of swimming pool causing drowning and submersion, initial encounter +C2904138|T037|AB|W22.041D|ICD10CM|Striking against wall of swimming pool causing drown, subs|Striking against wall of swimming pool causing drown, subs +C2904138|T037|PT|W22.041D|ICD10CM|Striking against wall of swimming pool causing drowning and submersion, subsequent encounter|Striking against wall of swimming pool causing drowning and submersion, subsequent encounter +C2904139|T037|AB|W22.041S|ICD10CM|Strike wall of swimming pool causing drown, sequela|Strike wall of swimming pool causing drown, sequela +C2904139|T037|PT|W22.041S|ICD10CM|Striking against wall of swimming pool causing drowning and submersion, sequela|Striking against wall of swimming pool causing drowning and submersion, sequela +C2904140|T037|AB|W22.042|ICD10CM|Striking against wall of swimming pool causing other injury|Striking against wall of swimming pool causing other injury +C2904140|T037|HT|W22.042|ICD10CM|Striking against wall of swimming pool causing other injury|Striking against wall of swimming pool causing other injury +C2904141|T037|AB|W22.042A|ICD10CM|Strike wall of swimming pool causing oth injury, init|Strike wall of swimming pool causing oth injury, init +C2904141|T037|PT|W22.042A|ICD10CM|Striking against wall of swimming pool causing other injury, initial encounter|Striking against wall of swimming pool causing other injury, initial encounter +C2904142|T037|AB|W22.042D|ICD10CM|Strike wall of swimming pool causing oth injury, subs|Strike wall of swimming pool causing oth injury, subs +C2904142|T037|PT|W22.042D|ICD10CM|Striking against wall of swimming pool causing other injury, subsequent encounter|Striking against wall of swimming pool causing other injury, subsequent encounter +C2904143|T037|AB|W22.042S|ICD10CM|Strike wall of swimming pool causing oth injury, sequela|Strike wall of swimming pool causing oth injury, sequela +C2904143|T037|PT|W22.042S|ICD10CM|Striking against wall of swimming pool causing other injury, sequela|Striking against wall of swimming pool causing other injury, sequela +C2904144|T037|AB|W22.09|ICD10CM|Striking against other stationary object|Striking against other stationary object +C2904144|T037|HT|W22.09|ICD10CM|Striking against other stationary object|Striking against other stationary object +C2904145|T037|AB|W22.09XA|ICD10CM|Striking against other stationary object, initial encounter|Striking against other stationary object, initial encounter +C2904145|T037|PT|W22.09XA|ICD10CM|Striking against other stationary object, initial encounter|Striking against other stationary object, initial encounter +C2904146|T037|AB|W22.09XD|ICD10CM|Striking against other stationary object, subs encntr|Striking against other stationary object, subs encntr +C2904146|T037|PT|W22.09XD|ICD10CM|Striking against other stationary object, subsequent encounter|Striking against other stationary object, subsequent encounter +C2904147|T037|AB|W22.09XS|ICD10CM|Striking against other stationary object, sequela|Striking against other stationary object, sequela +C2904147|T037|PT|W22.09XS|ICD10CM|Striking against other stationary object, sequela|Striking against other stationary object, sequela +C2904148|T037|HT|W22.1|ICD10CM|Striking against or struck by automobile airbag|Striking against or struck by automobile airbag +C2904148|T037|AB|W22.1|ICD10CM|Striking against or struck by automobile airbag|Striking against or struck by automobile airbag +C2904149|T037|AB|W22.10|ICD10CM|Striking against or struck by unspecified automobile airbag|Striking against or struck by unspecified automobile airbag +C2904149|T037|HT|W22.10|ICD10CM|Striking against or struck by unspecified automobile airbag|Striking against or struck by unspecified automobile airbag +C2904150|T037|AB|W22.10XA|ICD10CM|Striking against or struck by unsp automobile airbag, init|Striking against or struck by unsp automobile airbag, init +C2904150|T037|PT|W22.10XA|ICD10CM|Striking against or struck by unspecified automobile airbag, initial encounter|Striking against or struck by unspecified automobile airbag, initial encounter +C2904151|T037|AB|W22.10XD|ICD10CM|Striking against or struck by unsp automobile airbag, subs|Striking against or struck by unsp automobile airbag, subs +C2904151|T037|PT|W22.10XD|ICD10CM|Striking against or struck by unspecified automobile airbag, subsequent encounter|Striking against or struck by unspecified automobile airbag, subsequent encounter +C2904152|T037|AB|W22.10XS|ICD10CM|Strike/struck by unsp automobile airbag, sequela|Strike/struck by unsp automobile airbag, sequela +C2904152|T037|PT|W22.10XS|ICD10CM|Striking against or struck by unspecified automobile airbag, sequela|Striking against or struck by unspecified automobile airbag, sequela +C2904153|T037|AB|W22.11|ICD10CM|Striking against or struck by driver side automobile airbag|Striking against or struck by driver side automobile airbag +C2904153|T037|HT|W22.11|ICD10CM|Striking against or struck by driver side automobile airbag|Striking against or struck by driver side automobile airbag +C2904154|T037|AB|W22.11XA|ICD10CM|Strike/struck by driver side automobile airbag, init|Strike/struck by driver side automobile airbag, init +C2904154|T037|PT|W22.11XA|ICD10CM|Striking against or struck by driver side automobile airbag, initial encounter|Striking against or struck by driver side automobile airbag, initial encounter +C2904155|T037|AB|W22.11XD|ICD10CM|Strike/struck by driver side automobile airbag, subs|Strike/struck by driver side automobile airbag, subs +C2904155|T037|PT|W22.11XD|ICD10CM|Striking against or struck by driver side automobile airbag, subsequent encounter|Striking against or struck by driver side automobile airbag, subsequent encounter +C2904156|T037|AB|W22.11XS|ICD10CM|Strike/struck by driver side automobile airbag, sequela|Strike/struck by driver side automobile airbag, sequela +C2904156|T037|PT|W22.11XS|ICD10CM|Striking against or struck by driver side automobile airbag, sequela|Striking against or struck by driver side automobile airbag, sequela +C2904157|T037|AB|W22.12|ICD10CM|Strike/struck by front passenger side automobile airbag|Strike/struck by front passenger side automobile airbag +C2904157|T037|HT|W22.12|ICD10CM|Striking against or struck by front passenger side automobile airbag|Striking against or struck by front passenger side automobile airbag +C2904158|T037|AB|W22.12XA|ICD10CM|Strike/struck by front passenger side auto airbag, init|Strike/struck by front passenger side auto airbag, init +C2904158|T037|PT|W22.12XA|ICD10CM|Striking against or struck by front passenger side automobile airbag, initial encounter|Striking against or struck by front passenger side automobile airbag, initial encounter +C2904159|T037|AB|W22.12XD|ICD10CM|Strike/struck by front passenger side auto airbag, subs|Strike/struck by front passenger side auto airbag, subs +C2904159|T037|PT|W22.12XD|ICD10CM|Striking against or struck by front passenger side automobile airbag, subsequent encounter|Striking against or struck by front passenger side automobile airbag, subsequent encounter +C2904160|T037|AB|W22.12XS|ICD10CM|Strike/struck by front passenger side auto airbag, sequela|Strike/struck by front passenger side auto airbag, sequela +C2904160|T037|PT|W22.12XS|ICD10CM|Striking against or struck by front passenger side automobile airbag, sequela|Striking against or struck by front passenger side automobile airbag, sequela +C2904161|T037|AB|W22.19|ICD10CM|Striking against or struck by other automobile airbag|Striking against or struck by other automobile airbag +C2904161|T037|HT|W22.19|ICD10CM|Striking against or struck by other automobile airbag|Striking against or struck by other automobile airbag +C2904162|T037|AB|W22.19XA|ICD10CM|Striking against or struck by oth automobile airbag, init|Striking against or struck by oth automobile airbag, init +C2904162|T037|PT|W22.19XA|ICD10CM|Striking against or struck by other automobile airbag, initial encounter|Striking against or struck by other automobile airbag, initial encounter +C2904163|T037|AB|W22.19XD|ICD10CM|Striking against or struck by oth automobile airbag, subs|Striking against or struck by oth automobile airbag, subs +C2904163|T037|PT|W22.19XD|ICD10CM|Striking against or struck by other automobile airbag, subsequent encounter|Striking against or struck by other automobile airbag, subsequent encounter +C2904164|T037|AB|W22.19XS|ICD10CM|Striking against or struck by oth automobile airbag, sequela|Striking against or struck by oth automobile airbag, sequela +C2904164|T037|PT|W22.19XS|ICD10CM|Striking against or struck by other automobile airbag, sequela|Striking against or struck by other automobile airbag, sequela +C2904165|T037|ET|W22.8|ICD10CM|Striking against or struck by object NOS|Striking against or struck by object NOS +C0478923|T037|HT|W22.8|ICD10CM|Striking against or struck by other objects|Striking against or struck by other objects +C0478923|T037|AB|W22.8|ICD10CM|Striking against or struck by other objects|Striking against or struck by other objects +C2904166|T037|AB|W22.8XXA|ICD10CM|Striking against or struck by other objects, init encntr|Striking against or struck by other objects, init encntr +C2904166|T037|PT|W22.8XXA|ICD10CM|Striking against or struck by other objects, initial encounter|Striking against or struck by other objects, initial encounter +C2904167|T037|AB|W22.8XXD|ICD10CM|Striking against or struck by other objects, subs encntr|Striking against or struck by other objects, subs encntr +C2904167|T037|PT|W22.8XXD|ICD10CM|Striking against or struck by other objects, subsequent encounter|Striking against or struck by other objects, subsequent encounter +C2904168|T037|AB|W22.8XXS|ICD10CM|Striking against or struck by other objects, sequela|Striking against or struck by other objects, sequela +C2904168|T037|PT|W22.8XXS|ICD10CM|Striking against or struck by other objects, sequela|Striking against or struck by other objects, sequela +C0478933|T037|HT|W23|ICD10CM|Caught, crushed, jammed or pinched in or between objects|Caught, crushed, jammed or pinched in or between objects +C0478933|T037|AB|W23|ICD10CM|Caught, crushed, jammed or pinched in or between objects|Caught, crushed, jammed or pinched in or between objects +C0478933|T037|PS|W23|ICD10|Caught, crushed, jammed or pinched in or between objects|Caught, crushed, jammed or pinched in or between objects +C0478933|T037|PX|W23|ICD10|Caught, crushed, jammed or pinched in or between objects causing accidental injury|Caught, crushed, jammed or pinched in or between objects causing accidental injury +C2904169|T037|AB|W23.0|ICD10CM|Caught, crushed, jammed, or pinched between moving objects|Caught, crushed, jammed, or pinched between moving objects +C2904169|T037|HT|W23.0|ICD10CM|Caught, crushed, jammed, or pinched between moving objects|Caught, crushed, jammed, or pinched between moving objects +C2904170|T037|AB|W23.0XXA|ICD10CM|Caught, crush, jammed, or pinched betw moving objects, init|Caught, crush, jammed, or pinched betw moving objects, init +C2904170|T037|PT|W23.0XXA|ICD10CM|Caught, crushed, jammed, or pinched between moving objects, initial encounter|Caught, crushed, jammed, or pinched between moving objects, initial encounter +C2904171|T037|AB|W23.0XXD|ICD10CM|Caught, crush, jammed, or pinched betw moving objects, subs|Caught, crush, jammed, or pinched betw moving objects, subs +C2904171|T037|PT|W23.0XXD|ICD10CM|Caught, crushed, jammed, or pinched between moving objects, subsequent encounter|Caught, crushed, jammed, or pinched between moving objects, subsequent encounter +C2904172|T037|AB|W23.0XXS|ICD10CM|Caught, crush, jammed, or pinched betw moving obj, sequela|Caught, crush, jammed, or pinched betw moving obj, sequela +C2904172|T037|PT|W23.0XXS|ICD10CM|Caught, crushed, jammed, or pinched between moving objects, sequela|Caught, crushed, jammed, or pinched between moving objects, sequela +C2904173|T037|AB|W23.1|ICD10CM|Caught, crushed, jammed, or pinched betw stationary objects|Caught, crushed, jammed, or pinched betw stationary objects +C2904173|T037|HT|W23.1|ICD10CM|Caught, crushed, jammed, or pinched between stationary objects|Caught, crushed, jammed, or pinched between stationary objects +C2904174|T037|AB|W23.1XXA|ICD10CM|Caught, crush, jammed, or pinched betw stationry obj, init|Caught, crush, jammed, or pinched betw stationry obj, init +C2904174|T037|PT|W23.1XXA|ICD10CM|Caught, crushed, jammed, or pinched between stationary objects, initial encounter|Caught, crushed, jammed, or pinched between stationary objects, initial encounter +C2904175|T037|AB|W23.1XXD|ICD10CM|Caught, crush, jammed, or pinched betw stationry obj, subs|Caught, crush, jammed, or pinched betw stationry obj, subs +C2904175|T037|PT|W23.1XXD|ICD10CM|Caught, crushed, jammed, or pinched between stationary objects, subsequent encounter|Caught, crushed, jammed, or pinched between stationary objects, subsequent encounter +C2904176|T037|AB|W23.1XXS|ICD10CM|Caught, crush, jammed, or pinched betw stationry obj, sqla|Caught, crush, jammed, or pinched betw stationry obj, sqla +C2904176|T037|PT|W23.1XXS|ICD10CM|Caught, crushed, jammed, or pinched between stationary objects, sequela|Caught, crushed, jammed, or pinched between stationary objects, sequela +C0869123|T037|AB|W24|ICD10CM|Contact w lifting and transmission devices, NEC|Contact w lifting and transmission devices, NEC +C0869123|T037|HT|W24|ICD10CM|Contact with lifting and transmission devices, not elsewhere classified|Contact with lifting and transmission devices, not elsewhere classified +C0869123|T037|PS|W24|ICD10|Contact with lifting and transmission devices, not elsewhere classified|Contact with lifting and transmission devices, not elsewhere classified +C0869123|T037|PX|W24|ICD10|Contact with lifting and transmission devices, not elsewhere classified causing accidental injury|Contact with lifting and transmission devices, not elsewhere classified causing accidental injury +C2904177|T037|ET|W24.0|ICD10CM|Contact with chain hoist|Contact with chain hoist +C2904178|T037|ET|W24.0|ICD10CM|Contact with drive belt|Contact with drive belt +C2904180|T037|AB|W24.0|ICD10CM|Contact with lifting devices, not elsewhere classified|Contact with lifting devices, not elsewhere classified +C2904180|T037|HT|W24.0|ICD10CM|Contact with lifting devices, not elsewhere classified|Contact with lifting devices, not elsewhere classified +C2904179|T037|ET|W24.0|ICD10CM|Contact with pulley (block)|Contact with pulley (block) +C2904181|T037|AB|W24.0XXA|ICD10CM|Contact w lifting devices, not elsewhere classified, init|Contact w lifting devices, not elsewhere classified, init +C2904181|T037|PT|W24.0XXA|ICD10CM|Contact with lifting devices, not elsewhere classified, initial encounter|Contact with lifting devices, not elsewhere classified, initial encounter +C2904182|T037|AB|W24.0XXD|ICD10CM|Contact w lifting devices, not elsewhere classified, subs|Contact w lifting devices, not elsewhere classified, subs +C2904182|T037|PT|W24.0XXD|ICD10CM|Contact with lifting devices, not elsewhere classified, subsequent encounter|Contact with lifting devices, not elsewhere classified, subsequent encounter +C2904183|T037|AB|W24.0XXS|ICD10CM|Contact w lifting devices, not elsewhere classified, sequela|Contact w lifting devices, not elsewhere classified, sequela +C2904183|T037|PT|W24.0XXS|ICD10CM|Contact with lifting devices, not elsewhere classified, sequela|Contact with lifting devices, not elsewhere classified, sequela +C2904184|T037|ET|W24.1|ICD10CM|Contact with transmission belt or cable|Contact with transmission belt or cable +C2904185|T037|AB|W24.1|ICD10CM|Contact with transmission devices, not elsewhere classified|Contact with transmission devices, not elsewhere classified +C2904185|T037|HT|W24.1|ICD10CM|Contact with transmission devices, not elsewhere classified|Contact with transmission devices, not elsewhere classified +C2904186|T037|AB|W24.1XXA|ICD10CM|Contact w transmission devices, NEC, init|Contact w transmission devices, NEC, init +C2904186|T037|PT|W24.1XXA|ICD10CM|Contact with transmission devices, not elsewhere classified, initial encounter|Contact with transmission devices, not elsewhere classified, initial encounter +C2904187|T037|AB|W24.1XXD|ICD10CM|Contact w transmission devices, NEC, subs|Contact w transmission devices, NEC, subs +C2904187|T037|PT|W24.1XXD|ICD10CM|Contact with transmission devices, not elsewhere classified, subsequent encounter|Contact with transmission devices, not elsewhere classified, subsequent encounter +C2904188|T037|AB|W24.1XXS|ICD10CM|Contact w transmission devices, NEC, sequela|Contact w transmission devices, NEC, sequela +C2904188|T037|PT|W24.1XXS|ICD10CM|Contact with transmission devices, not elsewhere classified, sequela|Contact with transmission devices, not elsewhere classified, sequela +C0478944|T037|PS|W25|ICD10|Contact with sharp glass|Contact with sharp glass +C0478944|T037|HT|W25|ICD10CM|Contact with sharp glass|Contact with sharp glass +C0478944|T037|AB|W25|ICD10CM|Contact with sharp glass|Contact with sharp glass +C0478944|T037|PX|W25|ICD10|Contact with sharp glass causing accidental injury|Contact with sharp glass causing accidental injury +C2904189|T037|AB|W25.XXXA|ICD10CM|Contact with sharp glass, initial encounter|Contact with sharp glass, initial encounter +C2904189|T037|PT|W25.XXXA|ICD10CM|Contact with sharp glass, initial encounter|Contact with sharp glass, initial encounter +C2904190|T037|AB|W25.XXXD|ICD10CM|Contact with sharp glass, subsequent encounter|Contact with sharp glass, subsequent encounter +C2904190|T037|PT|W25.XXXD|ICD10CM|Contact with sharp glass, subsequent encounter|Contact with sharp glass, subsequent encounter +C2904191|T037|AB|W25.XXXS|ICD10CM|Contact with sharp glass, sequela|Contact with sharp glass, sequela +C2904191|T037|PT|W25.XXXS|ICD10CM|Contact with sharp glass, sequela|Contact with sharp glass, sequela +C0478964|T037|PS|W26|ICD10|Contact with knife, sword or dagger|Contact with knife, sword or dagger +C0478964|T037|PX|W26|ICD10|Contact with knife, sword or dagger causing accidental injury|Contact with knife, sword or dagger causing accidental injury +C4270688|T033|AB|W26|ICD10CM|Contact with other sharp objects|Contact with other sharp objects +C4270688|T033|HT|W26|ICD10CM|Contact with other sharp objects|Contact with other sharp objects +C2904192|T037|HT|W26.0|ICD10CM|Contact with knife|Contact with knife +C2904192|T037|AB|W26.0|ICD10CM|Contact with knife|Contact with knife +C2904193|T037|AB|W26.0XXA|ICD10CM|Contact with knife, initial encounter|Contact with knife, initial encounter +C2904193|T037|PT|W26.0XXA|ICD10CM|Contact with knife, initial encounter|Contact with knife, initial encounter +C2904194|T037|AB|W26.0XXD|ICD10CM|Contact with knife, subsequent encounter|Contact with knife, subsequent encounter +C2904194|T037|PT|W26.0XXD|ICD10CM|Contact with knife, subsequent encounter|Contact with knife, subsequent encounter +C2904195|T037|AB|W26.0XXS|ICD10CM|Contact with knife, sequela|Contact with knife, sequela +C2904195|T037|PT|W26.0XXS|ICD10CM|Contact with knife, sequela|Contact with knife, sequela +C2904196|T037|HT|W26.1|ICD10CM|Contact with sword or dagger|Contact with sword or dagger +C2904196|T037|AB|W26.1|ICD10CM|Contact with sword or dagger|Contact with sword or dagger +C2904197|T037|AB|W26.1XXA|ICD10CM|Contact with sword or dagger, initial encounter|Contact with sword or dagger, initial encounter +C2904197|T037|PT|W26.1XXA|ICD10CM|Contact with sword or dagger, initial encounter|Contact with sword or dagger, initial encounter +C2904198|T037|AB|W26.1XXD|ICD10CM|Contact with sword or dagger, subsequent encounter|Contact with sword or dagger, subsequent encounter +C2904198|T037|PT|W26.1XXD|ICD10CM|Contact with sword or dagger, subsequent encounter|Contact with sword or dagger, subsequent encounter +C2904199|T037|AB|W26.1XXS|ICD10CM|Contact with sword or dagger, sequela|Contact with sword or dagger, sequela +C2904199|T037|PT|W26.1XXS|ICD10CM|Contact with sword or dagger, sequela|Contact with sword or dagger, sequela +C4270689|T033|AB|W26.2|ICD10CM|Contact with edge of stiff paper|Contact with edge of stiff paper +C4270689|T033|HT|W26.2|ICD10CM|Contact with edge of stiff paper|Contact with edge of stiff paper +C4270690|T037|ET|W26.2|ICD10CM|Paper cut|Paper cut +C4270691|T033|AB|W26.2XXA|ICD10CM|Contact with edge of stiff paper, initial encounter|Contact with edge of stiff paper, initial encounter +C4270691|T033|PT|W26.2XXA|ICD10CM|Contact with edge of stiff paper, initial encounter|Contact with edge of stiff paper, initial encounter +C4270692|T033|AB|W26.2XXD|ICD10CM|Contact with edge of stiff paper, subsequent encounter|Contact with edge of stiff paper, subsequent encounter +C4270692|T033|PT|W26.2XXD|ICD10CM|Contact with edge of stiff paper, subsequent encounter|Contact with edge of stiff paper, subsequent encounter +C4270693|T033|AB|W26.2XXS|ICD10CM|Contact with edge of stiff paper, sequela|Contact with edge of stiff paper, sequela +C4270693|T033|PT|W26.2XXS|ICD10CM|Contact with edge of stiff paper, sequela|Contact with edge of stiff paper, sequela +C4270694|T033|AB|W26.8|ICD10CM|Contact with other sharp object(s), not elsewhere classified|Contact with other sharp object(s), not elsewhere classified +C4270694|T033|HT|W26.8|ICD10CM|Contact with other sharp object(s), not elsewhere classified|Contact with other sharp object(s), not elsewhere classified +C4270695|T037|ET|W26.8|ICD10CM|Contact with tin can lid|Contact with tin can lid +C4270696|T033|AB|W26.8XXA|ICD10CM|Contact with other sharp object(s), NEC, initial encounter|Contact with other sharp object(s), NEC, initial encounter +C4270696|T033|PT|W26.8XXA|ICD10CM|Contact with other sharp object(s), not elsewhere classified, initial encounter|Contact with other sharp object(s), not elsewhere classified, initial encounter +C4270697|T033|AB|W26.8XXD|ICD10CM|Contact with other sharp object(s), NEC, subs|Contact with other sharp object(s), NEC, subs +C4270697|T033|PT|W26.8XXD|ICD10CM|Contact with other sharp object(s), not elsewhere classified, subsequent encounter|Contact with other sharp object(s), not elsewhere classified, subsequent encounter +C4270698|T033|AB|W26.8XXS|ICD10CM|Contact with other sharp object(s), NEC, sequela|Contact with other sharp object(s), NEC, sequela +C4270698|T033|PT|W26.8XXS|ICD10CM|Contact with other sharp object(s), not elsewhere classified, sequela|Contact with other sharp object(s), not elsewhere classified, sequela +C4270699|T033|AB|W26.9|ICD10CM|Contact with unspecified sharp object(s)|Contact with unspecified sharp object(s) +C4270699|T033|HT|W26.9|ICD10CM|Contact with unspecified sharp object(s)|Contact with unspecified sharp object(s) +C4270700|T033|AB|W26.9XXA|ICD10CM|Contact with unspecified sharp object(s), initial encounter|Contact with unspecified sharp object(s), initial encounter +C4270700|T033|PT|W26.9XXA|ICD10CM|Contact with unspecified sharp object(s), initial encounter|Contact with unspecified sharp object(s), initial encounter +C4270701|T033|AB|W26.9XXD|ICD10CM|Contact with unspecified sharp object(s), subs|Contact with unspecified sharp object(s), subs +C4270701|T033|PT|W26.9XXD|ICD10CM|Contact with unspecified sharp object(s), subsequent encounter|Contact with unspecified sharp object(s), subsequent encounter +C4270702|T033|AB|W26.9XXS|ICD10CM|Contact with unspecified sharp object(s), sequela|Contact with unspecified sharp object(s), sequela +C4270702|T033|PT|W26.9XXS|ICD10CM|Contact with unspecified sharp object(s), sequela|Contact with unspecified sharp object(s), sequela +C0478965|T037|PS|W27|ICD10|Contact with nonpowered hand tool|Contact with nonpowered hand tool +C0478965|T037|HT|W27|ICD10CM|Contact with nonpowered hand tool|Contact with nonpowered hand tool +C0478965|T037|AB|W27|ICD10CM|Contact with nonpowered hand tool|Contact with nonpowered hand tool +C0478965|T037|PX|W27|ICD10|Contact with nonpowered hand tool causing accidental injury|Contact with nonpowered hand tool causing accidental injury +C2904200|T037|ET|W27.0|ICD10CM|Contact with auger|Contact with auger +C2904201|T037|ET|W27.0|ICD10CM|Contact with axe|Contact with axe +C2904202|T037|ET|W27.0|ICD10CM|Contact with chisel|Contact with chisel +C2904203|T037|ET|W27.0|ICD10CM|Contact with handsaw|Contact with handsaw +C2904204|T037|ET|W27.0|ICD10CM|Contact with screwdriver|Contact with screwdriver +C2904205|T037|AB|W27.0|ICD10CM|Contact with workbench tool|Contact with workbench tool +C2904205|T037|HT|W27.0|ICD10CM|Contact with workbench tool|Contact with workbench tool +C2904206|T037|AB|W27.0XXA|ICD10CM|Contact with workbench tool, initial encounter|Contact with workbench tool, initial encounter +C2904206|T037|PT|W27.0XXA|ICD10CM|Contact with workbench tool, initial encounter|Contact with workbench tool, initial encounter +C2904207|T037|AB|W27.0XXD|ICD10CM|Contact with workbench tool, subsequent encounter|Contact with workbench tool, subsequent encounter +C2904207|T037|PT|W27.0XXD|ICD10CM|Contact with workbench tool, subsequent encounter|Contact with workbench tool, subsequent encounter +C2904208|T037|AB|W27.0XXS|ICD10CM|Contact with workbench tool, sequela|Contact with workbench tool, sequela +C2904208|T037|PT|W27.0XXS|ICD10CM|Contact with workbench tool, sequela|Contact with workbench tool, sequela +C2904213|T037|AB|W27.1|ICD10CM|Contact with garden tool|Contact with garden tool +C2904213|T037|HT|W27.1|ICD10CM|Contact with garden tool|Contact with garden tool +C2904209|T037|ET|W27.1|ICD10CM|Contact with hoe|Contact with hoe +C2904210|T037|ET|W27.1|ICD10CM|Contact with nonpowered lawn mower|Contact with nonpowered lawn mower +C2904211|T037|ET|W27.1|ICD10CM|Contact with pitchfork|Contact with pitchfork +C2904212|T037|ET|W27.1|ICD10CM|Contact with rake|Contact with rake +C2904214|T037|AB|W27.1XXA|ICD10CM|Contact with garden tool, initial encounter|Contact with garden tool, initial encounter +C2904214|T037|PT|W27.1XXA|ICD10CM|Contact with garden tool, initial encounter|Contact with garden tool, initial encounter +C2904215|T037|AB|W27.1XXD|ICD10CM|Contact with garden tool, subsequent encounter|Contact with garden tool, subsequent encounter +C2904215|T037|PT|W27.1XXD|ICD10CM|Contact with garden tool, subsequent encounter|Contact with garden tool, subsequent encounter +C2904216|T037|AB|W27.1XXS|ICD10CM|Contact with garden tool, sequela|Contact with garden tool, sequela +C2904216|T037|PT|W27.1XXS|ICD10CM|Contact with garden tool, sequela|Contact with garden tool, sequela +C2904217|T037|AB|W27.2|ICD10CM|Contact with scissors|Contact with scissors +C2904217|T037|HT|W27.2|ICD10CM|Contact with scissors|Contact with scissors +C2904218|T037|AB|W27.2XXA|ICD10CM|Contact with scissors, initial encounter|Contact with scissors, initial encounter +C2904218|T037|PT|W27.2XXA|ICD10CM|Contact with scissors, initial encounter|Contact with scissors, initial encounter +C2904219|T037|AB|W27.2XXD|ICD10CM|Contact with scissors, subsequent encounter|Contact with scissors, subsequent encounter +C2904219|T037|PT|W27.2XXD|ICD10CM|Contact with scissors, subsequent encounter|Contact with scissors, subsequent encounter +C2904220|T037|AB|W27.2XXS|ICD10CM|Contact with scissors, sequela|Contact with scissors, sequela +C2904220|T037|PT|W27.2XXS|ICD10CM|Contact with scissors, sequela|Contact with scissors, sequela +C2904221|T037|AB|W27.3|ICD10CM|Contact with needle (sewing)|Contact with needle (sewing) +C2904221|T037|HT|W27.3|ICD10CM|Contact with needle (sewing)|Contact with needle (sewing) +C2904222|T037|AB|W27.3XXA|ICD10CM|Contact with needle (sewing), initial encounter|Contact with needle (sewing), initial encounter +C2904222|T037|PT|W27.3XXA|ICD10CM|Contact with needle (sewing), initial encounter|Contact with needle (sewing), initial encounter +C2904223|T037|AB|W27.3XXD|ICD10CM|Contact with needle (sewing), subsequent encounter|Contact with needle (sewing), subsequent encounter +C2904223|T037|PT|W27.3XXD|ICD10CM|Contact with needle (sewing), subsequent encounter|Contact with needle (sewing), subsequent encounter +C2904224|T037|AB|W27.3XXS|ICD10CM|Contact with needle (sewing), sequela|Contact with needle (sewing), sequela +C2904224|T037|PT|W27.3XXS|ICD10CM|Contact with needle (sewing), sequela|Contact with needle (sewing), sequela +C2904247|T037|ET|W27.4|ICD10CM|Contact with can-opener NOS|Contact with can-opener NOS +C2904225|T037|ET|W27.4|ICD10CM|Contact with fork|Contact with fork +C2904226|T037|ET|W27.4|ICD10CM|Contact with ice-pick|Contact with ice-pick +C2904227|T037|AB|W27.4|ICD10CM|Contact with kitchen utensil|Contact with kitchen utensil +C2904227|T037|HT|W27.4|ICD10CM|Contact with kitchen utensil|Contact with kitchen utensil +C2904228|T037|AB|W27.4XXA|ICD10CM|Contact with kitchen utensil, initial encounter|Contact with kitchen utensil, initial encounter +C2904228|T037|PT|W27.4XXA|ICD10CM|Contact with kitchen utensil, initial encounter|Contact with kitchen utensil, initial encounter +C2904229|T037|AB|W27.4XXD|ICD10CM|Contact with kitchen utensil, subsequent encounter|Contact with kitchen utensil, subsequent encounter +C2904229|T037|PT|W27.4XXD|ICD10CM|Contact with kitchen utensil, subsequent encounter|Contact with kitchen utensil, subsequent encounter +C2904230|T037|AB|W27.4XXS|ICD10CM|Contact with kitchen utensil, sequela|Contact with kitchen utensil, sequela +C2904230|T037|PT|W27.4XXS|ICD10CM|Contact with kitchen utensil, sequela|Contact with kitchen utensil, sequela +C2904231|T037|AB|W27.5|ICD10CM|Contact with paper-cutter|Contact with paper-cutter +C2904231|T037|HT|W27.5|ICD10CM|Contact with paper-cutter|Contact with paper-cutter +C2904232|T037|AB|W27.5XXA|ICD10CM|Contact with paper-cutter, initial encounter|Contact with paper-cutter, initial encounter +C2904232|T037|PT|W27.5XXA|ICD10CM|Contact with paper-cutter, initial encounter|Contact with paper-cutter, initial encounter +C2904233|T037|AB|W27.5XXD|ICD10CM|Contact with paper-cutter, subsequent encounter|Contact with paper-cutter, subsequent encounter +C2904233|T037|PT|W27.5XXD|ICD10CM|Contact with paper-cutter, subsequent encounter|Contact with paper-cutter, subsequent encounter +C2904234|T037|AB|W27.5XXS|ICD10CM|Contact with paper-cutter, sequela|Contact with paper-cutter, sequela +C2904234|T037|PT|W27.5XXS|ICD10CM|Contact with paper-cutter, sequela|Contact with paper-cutter, sequela +C2904235|T037|ET|W27.8|ICD10CM|Contact with nonpowered sewing machine|Contact with nonpowered sewing machine +C2904237|T037|AB|W27.8|ICD10CM|Contact with other nonpowered hand tool|Contact with other nonpowered hand tool +C2904237|T037|HT|W27.8|ICD10CM|Contact with other nonpowered hand tool|Contact with other nonpowered hand tool +C2904236|T033|ET|W27.8|ICD10CM|Contact with shovel|Contact with shovel +C2904238|T037|AB|W27.8XXA|ICD10CM|Contact with other nonpowered hand tool, initial encounter|Contact with other nonpowered hand tool, initial encounter +C2904238|T037|PT|W27.8XXA|ICD10CM|Contact with other nonpowered hand tool, initial encounter|Contact with other nonpowered hand tool, initial encounter +C2904239|T037|AB|W27.8XXD|ICD10CM|Contact with other nonpowered hand tool, subs encntr|Contact with other nonpowered hand tool, subs encntr +C2904239|T037|PT|W27.8XXD|ICD10CM|Contact with other nonpowered hand tool, subsequent encounter|Contact with other nonpowered hand tool, subsequent encounter +C2904240|T037|AB|W27.8XXS|ICD10CM|Contact with other nonpowered hand tool, sequela|Contact with other nonpowered hand tool, sequela +C2904240|T037|PT|W27.8XXS|ICD10CM|Contact with other nonpowered hand tool, sequela|Contact with other nonpowered hand tool, sequela +C2904242|T037|HT|W28|ICD10CM|Contact with powered lawn mower|Contact with powered lawn mower +C2904242|T037|AB|W28|ICD10CM|Contact with powered lawn mower|Contact with powered lawn mower +C0478975|T037|PS|W28|ICD10|Contact with powered lawnmower|Contact with powered lawnmower +C0478975|T037|PX|W28|ICD10|Contact with powered lawnmower causing accidental injury|Contact with powered lawnmower causing accidental injury +C2904241|T037|ET|W28|ICD10CM|Powered lawn mower (commercial) (residential)|Powered lawn mower (commercial) (residential) +C2904243|T037|AB|W28.XXXA|ICD10CM|Contact with powered lawn mower, initial encounter|Contact with powered lawn mower, initial encounter +C2904243|T037|PT|W28.XXXA|ICD10CM|Contact with powered lawn mower, initial encounter|Contact with powered lawn mower, initial encounter +C2904244|T037|AB|W28.XXXD|ICD10CM|Contact with powered lawn mower, subsequent encounter|Contact with powered lawn mower, subsequent encounter +C2904244|T037|PT|W28.XXXD|ICD10CM|Contact with powered lawn mower, subsequent encounter|Contact with powered lawn mower, subsequent encounter +C2904245|T037|AB|W28.XXXS|ICD10CM|Contact with powered lawn mower, sequela|Contact with powered lawn mower, sequela +C2904245|T037|PT|W28.XXXS|ICD10CM|Contact with powered lawn mower, sequela|Contact with powered lawn mower, sequela +C0478985|T037|AB|W29|ICD10CM|Contact with oth powered hand tools and household machinery|Contact with oth powered hand tools and household machinery +C0478985|T037|HT|W29|ICD10CM|Contact with other powered hand tools and household machinery|Contact with other powered hand tools and household machinery +C0478985|T037|PS|W29|ICD10|Contact with other powered hand tools and household machinery|Contact with other powered hand tools and household machinery +C0478985|T037|PX|W29|ICD10|Contact with other powered hand tools and household machinery causing accidental injury|Contact with other powered hand tools and household machinery causing accidental injury +C2904246|T037|ET|W29.0|ICD10CM|Contact with blender|Contact with blender +C2904247|T037|ET|W29.0|ICD10CM|Contact with can-opener|Contact with can-opener +C2904248|T037|ET|W29.0|ICD10CM|Contact with garbage disposal|Contact with garbage disposal +C2904249|T037|ET|W29.0|ICD10CM|Contact with mixer|Contact with mixer +C2904250|T037|AB|W29.0|ICD10CM|Contact with powered kitchen appliance|Contact with powered kitchen appliance +C2904250|T037|HT|W29.0|ICD10CM|Contact with powered kitchen appliance|Contact with powered kitchen appliance +C2904251|T037|AB|W29.0XXA|ICD10CM|Contact with powered kitchen appliance, initial encounter|Contact with powered kitchen appliance, initial encounter +C2904251|T037|PT|W29.0XXA|ICD10CM|Contact with powered kitchen appliance, initial encounter|Contact with powered kitchen appliance, initial encounter +C2904252|T037|AB|W29.0XXD|ICD10CM|Contact with powered kitchen appliance, subsequent encounter|Contact with powered kitchen appliance, subsequent encounter +C2904252|T037|PT|W29.0XXD|ICD10CM|Contact with powered kitchen appliance, subsequent encounter|Contact with powered kitchen appliance, subsequent encounter +C2904253|T037|AB|W29.0XXS|ICD10CM|Contact with powered kitchen appliance, sequela|Contact with powered kitchen appliance, sequela +C2904253|T037|PT|W29.0XXS|ICD10CM|Contact with powered kitchen appliance, sequela|Contact with powered kitchen appliance, sequela +C2904254|T037|AB|W29.1|ICD10CM|Contact with electric knife|Contact with electric knife +C2904254|T037|HT|W29.1|ICD10CM|Contact with electric knife|Contact with electric knife +C2904255|T037|AB|W29.1XXA|ICD10CM|Contact with electric knife, initial encounter|Contact with electric knife, initial encounter +C2904255|T037|PT|W29.1XXA|ICD10CM|Contact with electric knife, initial encounter|Contact with electric knife, initial encounter +C2904256|T037|AB|W29.1XXD|ICD10CM|Contact with electric knife, subsequent encounter|Contact with electric knife, subsequent encounter +C2904256|T037|PT|W29.1XXD|ICD10CM|Contact with electric knife, subsequent encounter|Contact with electric knife, subsequent encounter +C2904257|T037|AB|W29.1XXS|ICD10CM|Contact with electric knife, sequela|Contact with electric knife, sequela +C2904257|T037|PT|W29.1XXS|ICD10CM|Contact with electric knife, sequela|Contact with electric knife, sequela +C2904258|T037|ET|W29.2|ICD10CM|Contact with electric fan|Contact with electric fan +C2904262|T037|AB|W29.2|ICD10CM|Contact with other powered household machinery|Contact with other powered household machinery +C2904262|T037|HT|W29.2|ICD10CM|Contact with other powered household machinery|Contact with other powered household machinery +C2904259|T037|ET|W29.2|ICD10CM|Contact with powered dryer (clothes) (powered) (spin)|Contact with powered dryer (clothes) (powered) (spin) +C2904260|T037|ET|W29.2|ICD10CM|Contact with sewing machine|Contact with sewing machine +C2904261|T037|ET|W29.2|ICD10CM|Contact with washing-machine|Contact with washing-machine +C2904263|T037|AB|W29.2XXA|ICD10CM|Contact with other powered household machinery, init encntr|Contact with other powered household machinery, init encntr +C2904263|T037|PT|W29.2XXA|ICD10CM|Contact with other powered household machinery, initial encounter|Contact with other powered household machinery, initial encounter +C2904264|T037|AB|W29.2XXD|ICD10CM|Contact with other powered household machinery, subs encntr|Contact with other powered household machinery, subs encntr +C2904264|T037|PT|W29.2XXD|ICD10CM|Contact with other powered household machinery, subsequent encounter|Contact with other powered household machinery, subsequent encounter +C2904265|T037|AB|W29.2XXS|ICD10CM|Contact with other powered household machinery, sequela|Contact with other powered household machinery, sequela +C2904265|T037|PT|W29.2XXS|ICD10CM|Contact with other powered household machinery, sequela|Contact with other powered household machinery, sequela +C2904271|T037|AB|W29.3|ICD10CM|Contact w powered garden and outdoor hand tools and mach|Contact w powered garden and outdoor hand tools and mach +C2904266|T037|ET|W29.3|ICD10CM|Contact with chainsaw|Contact with chainsaw +C2904267|T037|ET|W29.3|ICD10CM|Contact with edger|Contact with edger +C2904268|T037|ET|W29.3|ICD10CM|Contact with garden cultivator (tiller)|Contact with garden cultivator (tiller) +C2904269|T037|ET|W29.3|ICD10CM|Contact with hedge trimmer|Contact with hedge trimmer +C2904270|T037|ET|W29.3|ICD10CM|Contact with other powered garden tool|Contact with other powered garden tool +C2904271|T037|HT|W29.3|ICD10CM|Contact with powered garden and outdoor hand tools and machinery|Contact with powered garden and outdoor hand tools and machinery +C2904272|T037|AB|W29.3XXA|ICD10CM|Cntct w powered garden and outdoor hand tools and mach, init|Cntct w powered garden and outdoor hand tools and mach, init +C2904272|T037|PT|W29.3XXA|ICD10CM|Contact with powered garden and outdoor hand tools and machinery, initial encounter|Contact with powered garden and outdoor hand tools and machinery, initial encounter +C2904273|T037|AB|W29.3XXD|ICD10CM|Cntct w powered garden and outdoor hand tools and mach, subs|Cntct w powered garden and outdoor hand tools and mach, subs +C2904273|T037|PT|W29.3XXD|ICD10CM|Contact with powered garden and outdoor hand tools and machinery, subsequent encounter|Contact with powered garden and outdoor hand tools and machinery, subsequent encounter +C2904274|T037|AB|W29.3XXS|ICD10CM|Cntct w power garden and outdoor hand tools and mach, sqla|Cntct w power garden and outdoor hand tools and mach, sqla +C2904274|T037|PT|W29.3XXS|ICD10CM|Contact with powered garden and outdoor hand tools and machinery, sequela|Contact with powered garden and outdoor hand tools and machinery, sequela +C2904275|T037|AB|W29.4|ICD10CM|Contact with nail gun|Contact with nail gun +C2904275|T037|HT|W29.4|ICD10CM|Contact with nail gun|Contact with nail gun +C2904276|T037|AB|W29.4XXA|ICD10CM|Contact with nail gun, initial encounter|Contact with nail gun, initial encounter +C2904276|T037|PT|W29.4XXA|ICD10CM|Contact with nail gun, initial encounter|Contact with nail gun, initial encounter +C2904277|T037|AB|W29.4XXD|ICD10CM|Contact with nail gun, subsequent encounter|Contact with nail gun, subsequent encounter +C2904277|T037|PT|W29.4XXD|ICD10CM|Contact with nail gun, subsequent encounter|Contact with nail gun, subsequent encounter +C2904278|T037|AB|W29.4XXS|ICD10CM|Contact with nail gun, sequela|Contact with nail gun, sequela +C2904278|T037|PT|W29.4XXS|ICD10CM|Contact with nail gun, sequela|Contact with nail gun, sequela +C2904279|T037|ET|W29.8|ICD10CM|Contact with do-it-yourself tool NOS|Contact with do-it-yourself tool NOS +C0478985|T037|AB|W29.8|ICD10CM|Contact with other powered hand tools and household mach|Contact with other powered hand tools and household mach +C0478985|T037|HT|W29.8|ICD10CM|Contact with other powered hand tools and household machinery|Contact with other powered hand tools and household machinery +C2904281|T037|AB|W29.8XXA|ICD10CM|Cntct with other powered hand tools and household mach, init|Cntct with other powered hand tools and household mach, init +C2904281|T037|PT|W29.8XXA|ICD10CM|Contact with other powered hand tools and household machinery, initial encounter|Contact with other powered hand tools and household machinery, initial encounter +C2904282|T037|AB|W29.8XXD|ICD10CM|Cntct with other powered hand tools and household mach, subs|Cntct with other powered hand tools and household mach, subs +C2904282|T037|PT|W29.8XXD|ICD10CM|Contact with other powered hand tools and household machinery, subsequent encounter|Contact with other powered hand tools and household machinery, subsequent encounter +C2904283|T037|AB|W29.8XXS|ICD10CM|Cntct with other power hand tools and household mach, sqla|Cntct with other power hand tools and household mach, sqla +C2904283|T037|PT|W29.8XXS|ICD10CM|Contact with other powered hand tools and household machinery, sequela|Contact with other powered hand tools and household machinery, sequela +C4290467|T037|ET|W30|ICD10CM|animal-powered farm machine|animal-powered farm machine +C0478995|T037|HT|W30|ICD10CM|Contact with agricultural machinery|Contact with agricultural machinery +C0478995|T037|AB|W30|ICD10CM|Contact with agricultural machinery|Contact with agricultural machinery +C0478995|T037|PS|W30|ICD10|Contact with agricultural machinery|Contact with agricultural machinery +C0478995|T037|PX|W30|ICD10|Contact with agricultural machinery causing accidental injury|Contact with agricultural machinery causing accidental injury +C2904287|T037|HT|W30.0|ICD10CM|Contact with combine harvester|Contact with combine harvester +C2904287|T037|AB|W30.0|ICD10CM|Contact with combine harvester|Contact with combine harvester +C2904285|T037|ET|W30.0|ICD10CM|Contact with reaper|Contact with reaper +C2904286|T037|ET|W30.0|ICD10CM|Contact with thresher|Contact with thresher +C2904288|T037|AB|W30.0XXA|ICD10CM|Contact with combine harvester, initial encounter|Contact with combine harvester, initial encounter +C2904288|T037|PT|W30.0XXA|ICD10CM|Contact with combine harvester, initial encounter|Contact with combine harvester, initial encounter +C2904289|T037|AB|W30.0XXD|ICD10CM|Contact with combine harvester, subsequent encounter|Contact with combine harvester, subsequent encounter +C2904289|T037|PT|W30.0XXD|ICD10CM|Contact with combine harvester, subsequent encounter|Contact with combine harvester, subsequent encounter +C2904290|T037|AB|W30.0XXS|ICD10CM|Contact with combine harvester, sequela|Contact with combine harvester, sequela +C2904290|T037|PT|W30.0XXS|ICD10CM|Contact with combine harvester, sequela|Contact with combine harvester, sequela +C2904291|T037|AB|W30.1|ICD10CM|Contact with power take-off devices (PTO)|Contact with power take-off devices (PTO) +C2904291|T037|HT|W30.1|ICD10CM|Contact with power take-off devices (PTO)|Contact with power take-off devices (PTO) +C2904292|T037|AB|W30.1XXA|ICD10CM|Contact with power take-off devices (PTO), initial encounter|Contact with power take-off devices (PTO), initial encounter +C2904292|T037|PT|W30.1XXA|ICD10CM|Contact with power take-off devices (PTO), initial encounter|Contact with power take-off devices (PTO), initial encounter +C2904293|T037|AB|W30.1XXD|ICD10CM|Contact with power take-off devices (PTO), subs encntr|Contact with power take-off devices (PTO), subs encntr +C2904293|T037|PT|W30.1XXD|ICD10CM|Contact with power take-off devices (PTO), subsequent encounter|Contact with power take-off devices (PTO), subsequent encounter +C2904294|T037|AB|W30.1XXS|ICD10CM|Contact with power take-off devices (PTO), sequela|Contact with power take-off devices (PTO), sequela +C2904294|T037|PT|W30.1XXS|ICD10CM|Contact with power take-off devices (PTO), sequela|Contact with power take-off devices (PTO), sequela +C2904295|T037|HT|W30.2|ICD10CM|Contact with hay derrick|Contact with hay derrick +C2904295|T037|AB|W30.2|ICD10CM|Contact with hay derrick|Contact with hay derrick +C2904296|T037|AB|W30.2XXA|ICD10CM|Contact with hay derrick, initial encounter|Contact with hay derrick, initial encounter +C2904296|T037|PT|W30.2XXA|ICD10CM|Contact with hay derrick, initial encounter|Contact with hay derrick, initial encounter +C2904297|T037|AB|W30.2XXD|ICD10CM|Contact with hay derrick, subsequent encounter|Contact with hay derrick, subsequent encounter +C2904297|T037|PT|W30.2XXD|ICD10CM|Contact with hay derrick, subsequent encounter|Contact with hay derrick, subsequent encounter +C2904298|T037|AB|W30.2XXS|ICD10CM|Contact with hay derrick, sequela|Contact with hay derrick, sequela +C2904298|T037|PT|W30.2XXS|ICD10CM|Contact with hay derrick, sequela|Contact with hay derrick, sequela +C2904299|T037|HT|W30.3|ICD10CM|Contact with grain storage elevator|Contact with grain storage elevator +C2904299|T037|AB|W30.3|ICD10CM|Contact with grain storage elevator|Contact with grain storage elevator +C2904300|T037|AB|W30.3XXA|ICD10CM|Contact with grain storage elevator, initial encounter|Contact with grain storage elevator, initial encounter +C2904300|T037|PT|W30.3XXA|ICD10CM|Contact with grain storage elevator, initial encounter|Contact with grain storage elevator, initial encounter +C2904301|T037|AB|W30.3XXD|ICD10CM|Contact with grain storage elevator, subsequent encounter|Contact with grain storage elevator, subsequent encounter +C2904301|T037|PT|W30.3XXD|ICD10CM|Contact with grain storage elevator, subsequent encounter|Contact with grain storage elevator, subsequent encounter +C2904302|T037|AB|W30.3XXS|ICD10CM|Contact with grain storage elevator, sequela|Contact with grain storage elevator, sequela +C2904302|T037|PT|W30.3XXS|ICD10CM|Contact with grain storage elevator, sequela|Contact with grain storage elevator, sequela +C2904303|T037|AB|W30.8|ICD10CM|Contact with other specified agricultural machinery|Contact with other specified agricultural machinery +C2904303|T037|HT|W30.8|ICD10CM|Contact with other specified agricultural machinery|Contact with other specified agricultural machinery +C2904305|T037|AB|W30.81|ICD10CM|Contact w agricultural transport vehicle in stationary use|Contact w agricultural transport vehicle in stationary use +C2904305|T037|HT|W30.81|ICD10CM|Contact with agricultural transport vehicle in stationary use|Contact with agricultural transport vehicle in stationary use +C2904304|T037|ET|W30.81|ICD10CM|Contact with agricultural transport vehicle under repair, not on public roadway|Contact with agricultural transport vehicle under repair, not on public roadway +C2904306|T037|AB|W30.81XA|ICD10CM|Contact w agri transport vehicle in stationary use, init|Contact w agri transport vehicle in stationary use, init +C2904306|T037|PT|W30.81XA|ICD10CM|Contact with agricultural transport vehicle in stationary use, initial encounter|Contact with agricultural transport vehicle in stationary use, initial encounter +C2904307|T037|AB|W30.81XD|ICD10CM|Contact w agri transport vehicle in stationary use, subs|Contact w agri transport vehicle in stationary use, subs +C2904307|T037|PT|W30.81XD|ICD10CM|Contact with agricultural transport vehicle in stationary use, subsequent encounter|Contact with agricultural transport vehicle in stationary use, subsequent encounter +C2904308|T037|AB|W30.81XS|ICD10CM|Contact w agri transport vehicle in stationary use, sequela|Contact w agri transport vehicle in stationary use, sequela +C2904308|T037|PT|W30.81XS|ICD10CM|Contact with agricultural transport vehicle in stationary use, sequela|Contact with agricultural transport vehicle in stationary use, sequela +C2904303|T037|HT|W30.89|ICD10CM|Contact with other specified agricultural machinery|Contact with other specified agricultural machinery +C2904303|T037|AB|W30.89|ICD10CM|Contact with other specified agricultural machinery|Contact with other specified agricultural machinery +C2904309|T037|AB|W30.89XA|ICD10CM|Contact with oth agricultural machinery, init encntr|Contact with oth agricultural machinery, init encntr +C2904309|T037|PT|W30.89XA|ICD10CM|Contact with other specified agricultural machinery, initial encounter|Contact with other specified agricultural machinery, initial encounter +C2904310|T037|AB|W30.89XD|ICD10CM|Contact with oth agricultural machinery, subs encntr|Contact with oth agricultural machinery, subs encntr +C2904310|T037|PT|W30.89XD|ICD10CM|Contact with other specified agricultural machinery, subsequent encounter|Contact with other specified agricultural machinery, subsequent encounter +C2904311|T037|AB|W30.89XS|ICD10CM|Contact with other specified agricultural machinery, sequela|Contact with other specified agricultural machinery, sequela +C2904311|T037|PT|W30.89XS|ICD10CM|Contact with other specified agricultural machinery, sequela|Contact with other specified agricultural machinery, sequela +C2904312|T037|ET|W30.9|ICD10CM|Contact with farm machinery NOS|Contact with farm machinery NOS +C2904313|T037|AB|W30.9|ICD10CM|Contact with unspecified agricultural machinery|Contact with unspecified agricultural machinery +C2904313|T037|HT|W30.9|ICD10CM|Contact with unspecified agricultural machinery|Contact with unspecified agricultural machinery +C2904314|T037|AB|W30.9XXA|ICD10CM|Contact with unspecified agricultural machinery, init encntr|Contact with unspecified agricultural machinery, init encntr +C2904314|T037|PT|W30.9XXA|ICD10CM|Contact with unspecified agricultural machinery, initial encounter|Contact with unspecified agricultural machinery, initial encounter +C2904315|T037|AB|W30.9XXD|ICD10CM|Contact with unspecified agricultural machinery, subs encntr|Contact with unspecified agricultural machinery, subs encntr +C2904315|T037|PT|W30.9XXD|ICD10CM|Contact with unspecified agricultural machinery, subsequent encounter|Contact with unspecified agricultural machinery, subsequent encounter +C2904316|T037|AB|W30.9XXS|ICD10CM|Contact with unspecified agricultural machinery, sequela|Contact with unspecified agricultural machinery, sequela +C2904316|T037|PT|W30.9XXS|ICD10CM|Contact with unspecified agricultural machinery, sequela|Contact with unspecified agricultural machinery, sequela +C0479005|T037|PS|W31|ICD10|Contact with other and unspecified machinery|Contact with other and unspecified machinery +C0479005|T037|HT|W31|ICD10CM|Contact with other and unspecified machinery|Contact with other and unspecified machinery +C0479005|T037|AB|W31|ICD10CM|Contact with other and unspecified machinery|Contact with other and unspecified machinery +C0479005|T037|PX|W31|ICD10|Contact with other and unspecified machinery causing accidental injury|Contact with other and unspecified machinery causing accidental injury +C2904317|T037|ET|W31.0|ICD10CM|Contact with bore or drill (land) (seabed)|Contact with bore or drill (land) (seabed) +C2904321|T037|AB|W31.0|ICD10CM|Contact with mining and earth-drilling machinery|Contact with mining and earth-drilling machinery +C2904321|T037|HT|W31.0|ICD10CM|Contact with mining and earth-drilling machinery|Contact with mining and earth-drilling machinery +C2904318|T033|ET|W31.0|ICD10CM|Contact with shaft hoist|Contact with shaft hoist +C2904319|T037|ET|W31.0|ICD10CM|Contact with shaft lift|Contact with shaft lift +C2904320|T037|ET|W31.0|ICD10CM|Contact with undercutter|Contact with undercutter +C2904322|T037|AB|W31.0XXA|ICD10CM|Contact w mining and earth-drilling machinery, init encntr|Contact w mining and earth-drilling machinery, init encntr +C2904322|T037|PT|W31.0XXA|ICD10CM|Contact with mining and earth-drilling machinery, initial encounter|Contact with mining and earth-drilling machinery, initial encounter +C2904323|T037|AB|W31.0XXD|ICD10CM|Contact w mining and earth-drilling machinery, subs encntr|Contact w mining and earth-drilling machinery, subs encntr +C2904323|T037|PT|W31.0XXD|ICD10CM|Contact with mining and earth-drilling machinery, subsequent encounter|Contact with mining and earth-drilling machinery, subsequent encounter +C2904324|T037|AB|W31.0XXS|ICD10CM|Contact with mining and earth-drilling machinery, sequela|Contact with mining and earth-drilling machinery, sequela +C2904324|T037|PT|W31.0XXS|ICD10CM|Contact with mining and earth-drilling machinery, sequela|Contact with mining and earth-drilling machinery, sequela +C2904325|T037|ET|W31.1|ICD10CM|Contact with abrasive wheel|Contact with abrasive wheel +C2904326|T037|ET|W31.1|ICD10CM|Contact with forging machine|Contact with forging machine +C2904327|T037|ET|W31.1|ICD10CM|Contact with lathe|Contact with lathe +C2904328|T037|ET|W31.1|ICD10CM|Contact with mechanical shears|Contact with mechanical shears +C2904329|T037|ET|W31.1|ICD10CM|Contact with metal drilling machine|Contact with metal drilling machine +C2904330|T037|ET|W31.1|ICD10CM|Contact with metal sawing machine|Contact with metal sawing machine +C2904334|T037|AB|W31.1|ICD10CM|Contact with metalworking machines|Contact with metalworking machines +C2904334|T037|HT|W31.1|ICD10CM|Contact with metalworking machines|Contact with metalworking machines +C2904331|T037|ET|W31.1|ICD10CM|Contact with milling machine|Contact with milling machine +C2904332|T037|ET|W31.1|ICD10CM|Contact with power press|Contact with power press +C2904333|T037|ET|W31.1|ICD10CM|Contact with rolling-mill|Contact with rolling-mill +C2904335|T037|AB|W31.1XXA|ICD10CM|Contact with metalworking machines, initial encounter|Contact with metalworking machines, initial encounter +C2904335|T037|PT|W31.1XXA|ICD10CM|Contact with metalworking machines, initial encounter|Contact with metalworking machines, initial encounter +C2904336|T037|AB|W31.1XXD|ICD10CM|Contact with metalworking machines, subsequent encounter|Contact with metalworking machines, subsequent encounter +C2904336|T037|PT|W31.1XXD|ICD10CM|Contact with metalworking machines, subsequent encounter|Contact with metalworking machines, subsequent encounter +C2904337|T037|AB|W31.1XXS|ICD10CM|Contact with metalworking machines, sequela|Contact with metalworking machines, sequela +C2904337|T037|PT|W31.1XXS|ICD10CM|Contact with metalworking machines, sequela|Contact with metalworking machines, sequela +C2904338|T037|ET|W31.2|ICD10CM|Contact with band saw|Contact with band saw +C2904339|T037|ET|W31.2|ICD10CM|Contact with bench saw|Contact with bench saw +C2904340|T037|ET|W31.2|ICD10CM|Contact with circular saw|Contact with circular saw +C2904341|T037|ET|W31.2|ICD10CM|Contact with molding machine|Contact with molding machine +C2904342|T037|ET|W31.2|ICD10CM|Contact with overhead plane|Contact with overhead plane +C2904343|T037|ET|W31.2|ICD10CM|Contact with powered saw|Contact with powered saw +C2904346|T037|AB|W31.2|ICD10CM|Contact with powered woodworking and forming machines|Contact with powered woodworking and forming machines +C2904346|T037|HT|W31.2|ICD10CM|Contact with powered woodworking and forming machines|Contact with powered woodworking and forming machines +C2904344|T037|ET|W31.2|ICD10CM|Contact with radial saw|Contact with radial saw +C2904345|T037|ET|W31.2|ICD10CM|Contact with sander|Contact with sander +C2904347|T037|AB|W31.2XXA|ICD10CM|Contact w powered woodworking and forming machines, init|Contact w powered woodworking and forming machines, init +C2904347|T037|PT|W31.2XXA|ICD10CM|Contact with powered woodworking and forming machines, initial encounter|Contact with powered woodworking and forming machines, initial encounter +C2904348|T037|AB|W31.2XXD|ICD10CM|Contact w powered woodworking and forming machines, subs|Contact w powered woodworking and forming machines, subs +C2904348|T037|PT|W31.2XXD|ICD10CM|Contact with powered woodworking and forming machines, subsequent encounter|Contact with powered woodworking and forming machines, subsequent encounter +C2904349|T037|AB|W31.2XXS|ICD10CM|Contact w powered woodworking and forming machines, sequela|Contact w powered woodworking and forming machines, sequela +C2904349|T037|PT|W31.2XXS|ICD10CM|Contact with powered woodworking and forming machines, sequela|Contact with powered woodworking and forming machines, sequela +C2904350|T037|ET|W31.3|ICD10CM|Contact with gas turbine|Contact with gas turbine +C2904351|T037|ET|W31.3|ICD10CM|Contact with internal combustion engine|Contact with internal combustion engine +C2904354|T037|HT|W31.3|ICD10CM|Contact with prime movers|Contact with prime movers +C2904354|T037|AB|W31.3|ICD10CM|Contact with prime movers|Contact with prime movers +C2904352|T037|ET|W31.3|ICD10CM|Contact with steam engine|Contact with steam engine +C2904353|T037|ET|W31.3|ICD10CM|Contact with water driven turbine|Contact with water driven turbine +C2904355|T037|AB|W31.3XXA|ICD10CM|Contact with prime movers, initial encounter|Contact with prime movers, initial encounter +C2904355|T037|PT|W31.3XXA|ICD10CM|Contact with prime movers, initial encounter|Contact with prime movers, initial encounter +C2904356|T037|AB|W31.3XXD|ICD10CM|Contact with prime movers, subsequent encounter|Contact with prime movers, subsequent encounter +C2904356|T037|PT|W31.3XXD|ICD10CM|Contact with prime movers, subsequent encounter|Contact with prime movers, subsequent encounter +C2904357|T037|AB|W31.3XXS|ICD10CM|Contact with prime movers, sequela|Contact with prime movers, sequela +C2904357|T037|PT|W31.3XXS|ICD10CM|Contact with prime movers, sequela|Contact with prime movers, sequela +C2904358|T037|HT|W31.8|ICD10CM|Contact with other specified machinery|Contact with other specified machinery +C2904358|T037|AB|W31.8|ICD10CM|Contact with other specified machinery|Contact with other specified machinery +C2904360|T037|AB|W31.81|ICD10CM|Contact with recreational machinery|Contact with recreational machinery +C2904360|T037|HT|W31.81|ICD10CM|Contact with recreational machinery|Contact with recreational machinery +C2904359|T037|ET|W31.81|ICD10CM|Contact with roller coaster|Contact with roller coaster +C2904361|T037|AB|W31.81XA|ICD10CM|Contact with recreational machinery, initial encounter|Contact with recreational machinery, initial encounter +C2904361|T037|PT|W31.81XA|ICD10CM|Contact with recreational machinery, initial encounter|Contact with recreational machinery, initial encounter +C2904362|T037|AB|W31.81XD|ICD10CM|Contact with recreational machinery, subsequent encounter|Contact with recreational machinery, subsequent encounter +C2904362|T037|PT|W31.81XD|ICD10CM|Contact with recreational machinery, subsequent encounter|Contact with recreational machinery, subsequent encounter +C2904363|T037|AB|W31.81XS|ICD10CM|Contact with recreational machinery, sequela|Contact with recreational machinery, sequela +C2904363|T037|PT|W31.81XS|ICD10CM|Contact with recreational machinery, sequela|Contact with recreational machinery, sequela +C2904364|T037|ET|W31.82|ICD10CM|Contact with commercial electric fan|Contact with commercial electric fan +C2904365|T037|ET|W31.82|ICD10CM|Contact with commercial kitchen appliances|Contact with commercial kitchen appliances +C2904366|T037|ET|W31.82|ICD10CM|Contact with commercial powered dryer (clothes) (powered) (spin)|Contact with commercial powered dryer (clothes) (powered) (spin) +C2904367|T037|ET|W31.82|ICD10CM|Contact with commercial sewing machine|Contact with commercial sewing machine +C2904368|T037|ET|W31.82|ICD10CM|Contact with commercial washing-machine|Contact with commercial washing-machine +C2904369|T037|AB|W31.82|ICD10CM|Contact with other commercial machinery|Contact with other commercial machinery +C2904369|T037|HT|W31.82|ICD10CM|Contact with other commercial machinery|Contact with other commercial machinery +C2904370|T037|AB|W31.82XA|ICD10CM|Contact with other commercial machinery, initial encounter|Contact with other commercial machinery, initial encounter +C2904370|T037|PT|W31.82XA|ICD10CM|Contact with other commercial machinery, initial encounter|Contact with other commercial machinery, initial encounter +C2904371|T037|AB|W31.82XD|ICD10CM|Contact with other commercial machinery, subs encntr|Contact with other commercial machinery, subs encntr +C2904371|T037|PT|W31.82XD|ICD10CM|Contact with other commercial machinery, subsequent encounter|Contact with other commercial machinery, subsequent encounter +C2904372|T037|AB|W31.82XS|ICD10CM|Contact with other commercial machinery, sequela|Contact with other commercial machinery, sequela +C2904372|T037|PT|W31.82XS|ICD10CM|Contact with other commercial machinery, sequela|Contact with other commercial machinery, sequela +C2904374|T037|AB|W31.83|ICD10CM|Contact with special construction vehicle in stationary use|Contact with special construction vehicle in stationary use +C2904374|T037|HT|W31.83|ICD10CM|Contact with special construction vehicle in stationary use|Contact with special construction vehicle in stationary use +C2904373|T037|ET|W31.83|ICD10CM|Contact with special construction vehicle under repair, not on public roadway|Contact with special construction vehicle under repair, not on public roadway +C2904375|T037|AB|W31.83XA|ICD10CM|Contact w special construct vehicle in stationary use, init|Contact w special construct vehicle in stationary use, init +C2904375|T037|PT|W31.83XA|ICD10CM|Contact with special construction vehicle in stationary use, initial encounter|Contact with special construction vehicle in stationary use, initial encounter +C2904376|T037|AB|W31.83XD|ICD10CM|Contact w special construct vehicle in stationary use, subs|Contact w special construct vehicle in stationary use, subs +C2904376|T037|PT|W31.83XD|ICD10CM|Contact with special construction vehicle in stationary use, subsequent encounter|Contact with special construction vehicle in stationary use, subsequent encounter +C2904377|T037|AB|W31.83XS|ICD10CM|Cntct w special construct vehicle in stationry use, sequela|Cntct w special construct vehicle in stationry use, sequela +C2904377|T037|PT|W31.83XS|ICD10CM|Contact with special construction vehicle in stationary use, sequela|Contact with special construction vehicle in stationary use, sequela +C2904358|T037|AB|W31.89|ICD10CM|Contact with other specified machinery|Contact with other specified machinery +C2904358|T037|HT|W31.89|ICD10CM|Contact with other specified machinery|Contact with other specified machinery +C2904378|T037|AB|W31.89XA|ICD10CM|Contact with other specified machinery, initial encounter|Contact with other specified machinery, initial encounter +C2904378|T037|PT|W31.89XA|ICD10CM|Contact with other specified machinery, initial encounter|Contact with other specified machinery, initial encounter +C2904379|T037|AB|W31.89XD|ICD10CM|Contact with other specified machinery, subsequent encounter|Contact with other specified machinery, subsequent encounter +C2904379|T037|PT|W31.89XD|ICD10CM|Contact with other specified machinery, subsequent encounter|Contact with other specified machinery, subsequent encounter +C2904380|T037|AB|W31.89XS|ICD10CM|Contact with other specified machinery, sequela|Contact with other specified machinery, sequela +C2904380|T037|PT|W31.89XS|ICD10CM|Contact with other specified machinery, sequela|Contact with other specified machinery, sequela +C0337246|T037|ET|W31.9|ICD10CM|Contact with machinery NOS|Contact with machinery NOS +C2904381|T037|AB|W31.9|ICD10CM|Contact with unspecified machinery|Contact with unspecified machinery +C2904381|T037|HT|W31.9|ICD10CM|Contact with unspecified machinery|Contact with unspecified machinery +C2904382|T037|AB|W31.9XXA|ICD10CM|Contact with unspecified machinery, initial encounter|Contact with unspecified machinery, initial encounter +C2904382|T037|PT|W31.9XXA|ICD10CM|Contact with unspecified machinery, initial encounter|Contact with unspecified machinery, initial encounter +C2904383|T037|AB|W31.9XXD|ICD10CM|Contact with unspecified machinery, subsequent encounter|Contact with unspecified machinery, subsequent encounter +C2904383|T037|PT|W31.9XXD|ICD10CM|Contact with unspecified machinery, subsequent encounter|Contact with unspecified machinery, subsequent encounter +C2904384|T037|AB|W31.9XXS|ICD10CM|Contact with unspecified machinery, sequela|Contact with unspecified machinery, sequela +C2904384|T037|PT|W31.9XXS|ICD10CM|Contact with unspecified machinery, sequela|Contact with unspecified machinery, sequela +C4290468|T037|ET|W32|ICD10CM|accidental discharge and malfunction of gun for single hand use|accidental discharge and malfunction of gun for single hand use +C4290469|T037|ET|W32|ICD10CM|accidental discharge and malfunction of pistol|accidental discharge and malfunction of pistol +C4290470|T037|ET|W32|ICD10CM|accidental discharge and malfunction of revolver|accidental discharge and malfunction of revolver +C2904389|T037|AB|W32|ICD10CM|Accidental handgun discharge and malfunction|Accidental handgun discharge and malfunction +C2904389|T037|HT|W32|ICD10CM|Accidental handgun discharge and malfunction|Accidental handgun discharge and malfunction +C4290471|T037|ET|W32|ICD10CM|Handgun discharge and malfunction NOS|Handgun discharge and malfunction NOS +C2904390|T037|HT|W32.0|ICD10CM|Accidental handgun discharge|Accidental handgun discharge +C2904390|T037|AB|W32.0|ICD10CM|Accidental handgun discharge|Accidental handgun discharge +C2904391|T037|AB|W32.0XXA|ICD10CM|Accidental handgun discharge, initial encounter|Accidental handgun discharge, initial encounter +C2904391|T037|PT|W32.0XXA|ICD10CM|Accidental handgun discharge, initial encounter|Accidental handgun discharge, initial encounter +C2904392|T037|AB|W32.0XXD|ICD10CM|Accidental handgun discharge, subsequent encounter|Accidental handgun discharge, subsequent encounter +C2904392|T037|PT|W32.0XXD|ICD10CM|Accidental handgun discharge, subsequent encounter|Accidental handgun discharge, subsequent encounter +C2904393|T037|AB|W32.0XXS|ICD10CM|Accidental handgun discharge, sequela|Accidental handgun discharge, sequela +C2904393|T037|PT|W32.0XXS|ICD10CM|Accidental handgun discharge, sequela|Accidental handgun discharge, sequela +C2904398|T037|HT|W32.1|ICD10CM|Accidental handgun malfunction|Accidental handgun malfunction +C2904398|T037|AB|W32.1|ICD10CM|Accidental handgun malfunction|Accidental handgun malfunction +C2904394|T037|ET|W32.1|ICD10CM|Injury due to explosion of handgun (parts)|Injury due to explosion of handgun (parts) +C2904395|T037|ET|W32.1|ICD10CM|Injury due to malfunction of mechanism or component of handgun|Injury due to malfunction of mechanism or component of handgun +C2904396|T037|ET|W32.1|ICD10CM|Injury due to recoil of handgun|Injury due to recoil of handgun +C2904397|T037|ET|W32.1|ICD10CM|Powder burn from handgun|Powder burn from handgun +C2904399|T037|AB|W32.1XXA|ICD10CM|Accidental handgun malfunction, initial encounter|Accidental handgun malfunction, initial encounter +C2904399|T037|PT|W32.1XXA|ICD10CM|Accidental handgun malfunction, initial encounter|Accidental handgun malfunction, initial encounter +C2904400|T037|AB|W32.1XXD|ICD10CM|Accidental handgun malfunction, subsequent encounter|Accidental handgun malfunction, subsequent encounter +C2904400|T037|PT|W32.1XXD|ICD10CM|Accidental handgun malfunction, subsequent encounter|Accidental handgun malfunction, subsequent encounter +C2904401|T037|AB|W32.1XXS|ICD10CM|Accidental handgun malfunction, sequela|Accidental handgun malfunction, sequela +C2904401|T037|PT|W32.1XXS|ICD10CM|Accidental handgun malfunction, sequela|Accidental handgun malfunction, sequela +C2904403|T037|AB|W33|ICD10CM|Acc rifle, shotgun and larger firearm discharge and malfunct|Acc rifle, shotgun and larger firearm discharge and malfunct +C2904403|T037|HT|W33|ICD10CM|Accidental rifle, shotgun and larger firearm discharge and malfunction|Accidental rifle, shotgun and larger firearm discharge and malfunction +C0497034|T037|PS|W33|ICD10|Rifle, shotgun and larger firearm discharge|Rifle, shotgun and larger firearm discharge +C4290472|T037|ET|W33|ICD10CM|rifle, shotgun and larger firearm discharge and malfunction NOS|rifle, shotgun and larger firearm discharge and malfunction NOS +C0497034|T037|PX|W33|ICD10|Rifle, shotgun and larger firearm discharge causing accidental injury|Rifle, shotgun and larger firearm discharge causing accidental injury +C2904404|T037|HT|W33.0|ICD10CM|Accidental rifle, shotgun and larger firearm discharge|Accidental rifle, shotgun and larger firearm discharge +C2904404|T037|AB|W33.0|ICD10CM|Accidental rifle, shotgun and larger firearm discharge|Accidental rifle, shotgun and larger firearm discharge +C2904406|T037|AB|W33.00|ICD10CM|Accidental discharge of unspecified larger firearm|Accidental discharge of unspecified larger firearm +C2904406|T037|HT|W33.00|ICD10CM|Accidental discharge of unspecified larger firearm|Accidental discharge of unspecified larger firearm +C2904405|T037|ET|W33.00|ICD10CM|Discharge of unspecified larger firearm NOS|Discharge of unspecified larger firearm NOS +C2904407|T037|AB|W33.00XA|ICD10CM|Accidental discharge of unsp larger firearm, init encntr|Accidental discharge of unsp larger firearm, init encntr +C2904407|T037|PT|W33.00XA|ICD10CM|Accidental discharge of unspecified larger firearm, initial encounter|Accidental discharge of unspecified larger firearm, initial encounter +C2904408|T037|AB|W33.00XD|ICD10CM|Accidental discharge of unsp larger firearm, subs encntr|Accidental discharge of unsp larger firearm, subs encntr +C2904408|T037|PT|W33.00XD|ICD10CM|Accidental discharge of unspecified larger firearm, subsequent encounter|Accidental discharge of unspecified larger firearm, subsequent encounter +C2904409|T037|AB|W33.00XS|ICD10CM|Accidental discharge of unspecified larger firearm, sequela|Accidental discharge of unspecified larger firearm, sequela +C2904409|T037|PT|W33.00XS|ICD10CM|Accidental discharge of unspecified larger firearm, sequela|Accidental discharge of unspecified larger firearm, sequela +C0840929|T037|AB|W33.01|ICD10CM|Accidental discharge of shotgun|Accidental discharge of shotgun +C0840929|T037|HT|W33.01|ICD10CM|Accidental discharge of shotgun|Accidental discharge of shotgun +C2904410|T037|ET|W33.01|ICD10CM|Discharge of shotgun NOS|Discharge of shotgun NOS +C2904411|T037|AB|W33.01XA|ICD10CM|Accidental discharge of shotgun, initial encounter|Accidental discharge of shotgun, initial encounter +C2904411|T037|PT|W33.01XA|ICD10CM|Accidental discharge of shotgun, initial encounter|Accidental discharge of shotgun, initial encounter +C2904412|T037|AB|W33.01XD|ICD10CM|Accidental discharge of shotgun, subsequent encounter|Accidental discharge of shotgun, subsequent encounter +C2904412|T037|PT|W33.01XD|ICD10CM|Accidental discharge of shotgun, subsequent encounter|Accidental discharge of shotgun, subsequent encounter +C2904413|T037|AB|W33.01XS|ICD10CM|Accidental discharge of shotgun, sequela|Accidental discharge of shotgun, sequela +C2904413|T037|PT|W33.01XS|ICD10CM|Accidental discharge of shotgun, sequela|Accidental discharge of shotgun, sequela +C2904415|T037|AB|W33.02|ICD10CM|Accidental discharge of hunting rifle|Accidental discharge of hunting rifle +C2904415|T037|HT|W33.02|ICD10CM|Accidental discharge of hunting rifle|Accidental discharge of hunting rifle +C2904414|T037|ET|W33.02|ICD10CM|Discharge of hunting rifle NOS|Discharge of hunting rifle NOS +C2904416|T037|AB|W33.02XA|ICD10CM|Accidental discharge of hunting rifle, initial encounter|Accidental discharge of hunting rifle, initial encounter +C2904416|T037|PT|W33.02XA|ICD10CM|Accidental discharge of hunting rifle, initial encounter|Accidental discharge of hunting rifle, initial encounter +C2904417|T037|AB|W33.02XD|ICD10CM|Accidental discharge of hunting rifle, subsequent encounter|Accidental discharge of hunting rifle, subsequent encounter +C2904417|T037|PT|W33.02XD|ICD10CM|Accidental discharge of hunting rifle, subsequent encounter|Accidental discharge of hunting rifle, subsequent encounter +C2904418|T037|AB|W33.02XS|ICD10CM|Accidental discharge of hunting rifle, sequela|Accidental discharge of hunting rifle, sequela +C2904418|T037|PT|W33.02XS|ICD10CM|Accidental discharge of hunting rifle, sequela|Accidental discharge of hunting rifle, sequela +C2904420|T037|AB|W33.03|ICD10CM|Accidental discharge of machine gun|Accidental discharge of machine gun +C2904420|T037|HT|W33.03|ICD10CM|Accidental discharge of machine gun|Accidental discharge of machine gun +C2904419|T037|ET|W33.03|ICD10CM|Discharge of machine gun NOS|Discharge of machine gun NOS +C2904421|T037|AB|W33.03XA|ICD10CM|Accidental discharge of machine gun, initial encounter|Accidental discharge of machine gun, initial encounter +C2904421|T037|PT|W33.03XA|ICD10CM|Accidental discharge of machine gun, initial encounter|Accidental discharge of machine gun, initial encounter +C2904422|T037|AB|W33.03XD|ICD10CM|Accidental discharge of machine gun, subsequent encounter|Accidental discharge of machine gun, subsequent encounter +C2904422|T037|PT|W33.03XD|ICD10CM|Accidental discharge of machine gun, subsequent encounter|Accidental discharge of machine gun, subsequent encounter +C2904423|T037|AB|W33.03XS|ICD10CM|Accidental discharge of machine gun, sequela|Accidental discharge of machine gun, sequela +C2904423|T037|PT|W33.03XS|ICD10CM|Accidental discharge of machine gun, sequela|Accidental discharge of machine gun, sequela +C2904425|T037|AB|W33.09|ICD10CM|Accidental discharge of other larger firearm|Accidental discharge of other larger firearm +C2904425|T037|HT|W33.09|ICD10CM|Accidental discharge of other larger firearm|Accidental discharge of other larger firearm +C2904424|T037|ET|W33.09|ICD10CM|Discharge of other larger firearm NOS|Discharge of other larger firearm NOS +C2904426|T037|AB|W33.09XA|ICD10CM|Accidental discharge of other larger firearm, init encntr|Accidental discharge of other larger firearm, init encntr +C2904426|T037|PT|W33.09XA|ICD10CM|Accidental discharge of other larger firearm, initial encounter|Accidental discharge of other larger firearm, initial encounter +C2904427|T037|AB|W33.09XD|ICD10CM|Accidental discharge of other larger firearm, subs encntr|Accidental discharge of other larger firearm, subs encntr +C2904427|T037|PT|W33.09XD|ICD10CM|Accidental discharge of other larger firearm, subsequent encounter|Accidental discharge of other larger firearm, subsequent encounter +C2904428|T037|AB|W33.09XS|ICD10CM|Accidental discharge of other larger firearm, sequela|Accidental discharge of other larger firearm, sequela +C2904428|T037|PT|W33.09XS|ICD10CM|Accidental discharge of other larger firearm, sequela|Accidental discharge of other larger firearm, sequela +C2904434|T037|HT|W33.1|ICD10CM|Accidental rifle, shotgun and larger firearm malfunction|Accidental rifle, shotgun and larger firearm malfunction +C2904434|T037|AB|W33.1|ICD10CM|Accidental rifle, shotgun and larger firearm malfunction|Accidental rifle, shotgun and larger firearm malfunction +C2904429|T037|ET|W33.1|ICD10CM|Injury due to explosion of rifle, shotgun and larger firearm (parts)|Injury due to explosion of rifle, shotgun and larger firearm (parts) +C2904430|T037|ET|W33.1|ICD10CM|Injury due to malfunction of mechanism or component of rifle, shotgun and larger firearm|Injury due to malfunction of mechanism or component of rifle, shotgun and larger firearm +C2904432|T037|ET|W33.1|ICD10CM|Injury due to recoil of rifle, shotgun and larger firearm|Injury due to recoil of rifle, shotgun and larger firearm +C2904433|T037|ET|W33.1|ICD10CM|Powder burn from rifle, shotgun and larger firearm|Powder burn from rifle, shotgun and larger firearm +C2904436|T037|AB|W33.10|ICD10CM|Accidental malfunction of unspecified larger firearm|Accidental malfunction of unspecified larger firearm +C2904436|T037|HT|W33.10|ICD10CM|Accidental malfunction of unspecified larger firearm|Accidental malfunction of unspecified larger firearm +C2904435|T037|ET|W33.10|ICD10CM|Malfunction of unspecified larger firearm NOS|Malfunction of unspecified larger firearm NOS +C2904437|T037|AB|W33.10XA|ICD10CM|Accidental malfunction of unsp larger firearm, init encntr|Accidental malfunction of unsp larger firearm, init encntr +C2904437|T037|PT|W33.10XA|ICD10CM|Accidental malfunction of unspecified larger firearm, initial encounter|Accidental malfunction of unspecified larger firearm, initial encounter +C2904438|T037|AB|W33.10XD|ICD10CM|Accidental malfunction of unsp larger firearm, subs encntr|Accidental malfunction of unsp larger firearm, subs encntr +C2904438|T037|PT|W33.10XD|ICD10CM|Accidental malfunction of unspecified larger firearm, subsequent encounter|Accidental malfunction of unspecified larger firearm, subsequent encounter +C2904439|T037|AB|W33.10XS|ICD10CM|Accidental malfunction of unsp larger firearm, sequela|Accidental malfunction of unsp larger firearm, sequela +C2904439|T037|PT|W33.10XS|ICD10CM|Accidental malfunction of unspecified larger firearm, sequela|Accidental malfunction of unspecified larger firearm, sequela +C2904441|T037|AB|W33.11|ICD10CM|Accidental malfunction of shotgun|Accidental malfunction of shotgun +C2904441|T037|HT|W33.11|ICD10CM|Accidental malfunction of shotgun|Accidental malfunction of shotgun +C2904440|T037|ET|W33.11|ICD10CM|Malfunction of shotgun NOS|Malfunction of shotgun NOS +C2904442|T037|AB|W33.11XA|ICD10CM|Accidental malfunction of shotgun, initial encounter|Accidental malfunction of shotgun, initial encounter +C2904442|T037|PT|W33.11XA|ICD10CM|Accidental malfunction of shotgun, initial encounter|Accidental malfunction of shotgun, initial encounter +C2904443|T037|AB|W33.11XD|ICD10CM|Accidental malfunction of shotgun, subsequent encounter|Accidental malfunction of shotgun, subsequent encounter +C2904443|T037|PT|W33.11XD|ICD10CM|Accidental malfunction of shotgun, subsequent encounter|Accidental malfunction of shotgun, subsequent encounter +C2904444|T037|AB|W33.11XS|ICD10CM|Accidental malfunction of shotgun, sequela|Accidental malfunction of shotgun, sequela +C2904444|T037|PT|W33.11XS|ICD10CM|Accidental malfunction of shotgun, sequela|Accidental malfunction of shotgun, sequela +C2904446|T037|AB|W33.12|ICD10CM|Accidental malfunction of hunting rifle|Accidental malfunction of hunting rifle +C2904446|T037|HT|W33.12|ICD10CM|Accidental malfunction of hunting rifle|Accidental malfunction of hunting rifle +C2904445|T037|ET|W33.12|ICD10CM|Malfunction of hunting rifle NOS|Malfunction of hunting rifle NOS +C2904447|T037|AB|W33.12XA|ICD10CM|Accidental malfunction of hunting rifle, initial encounter|Accidental malfunction of hunting rifle, initial encounter +C2904447|T037|PT|W33.12XA|ICD10CM|Accidental malfunction of hunting rifle, initial encounter|Accidental malfunction of hunting rifle, initial encounter +C2904448|T037|AB|W33.12XD|ICD10CM|Accidental malfunction of hunting rifle, subs encntr|Accidental malfunction of hunting rifle, subs encntr +C2904448|T037|PT|W33.12XD|ICD10CM|Accidental malfunction of hunting rifle, subsequent encounter|Accidental malfunction of hunting rifle, subsequent encounter +C2904449|T037|AB|W33.12XS|ICD10CM|Accidental malfunction of hunting rifle, sequela|Accidental malfunction of hunting rifle, sequela +C2904449|T037|PT|W33.12XS|ICD10CM|Accidental malfunction of hunting rifle, sequela|Accidental malfunction of hunting rifle, sequela +C2904451|T037|AB|W33.13|ICD10CM|Accidental malfunction of machine gun|Accidental malfunction of machine gun +C2904451|T037|HT|W33.13|ICD10CM|Accidental malfunction of machine gun|Accidental malfunction of machine gun +C2904450|T037|ET|W33.13|ICD10CM|Malfunction of machine gun NOS|Malfunction of machine gun NOS +C2904452|T037|AB|W33.13XA|ICD10CM|Accidental malfunction of machine gun, initial encounter|Accidental malfunction of machine gun, initial encounter +C2904452|T037|PT|W33.13XA|ICD10CM|Accidental malfunction of machine gun, initial encounter|Accidental malfunction of machine gun, initial encounter +C2904453|T037|AB|W33.13XD|ICD10CM|Accidental malfunction of machine gun, subsequent encounter|Accidental malfunction of machine gun, subsequent encounter +C2904453|T037|PT|W33.13XD|ICD10CM|Accidental malfunction of machine gun, subsequent encounter|Accidental malfunction of machine gun, subsequent encounter +C2904454|T037|AB|W33.13XS|ICD10CM|Accidental malfunction of machine gun, sequela|Accidental malfunction of machine gun, sequela +C2904454|T037|PT|W33.13XS|ICD10CM|Accidental malfunction of machine gun, sequela|Accidental malfunction of machine gun, sequela +C2904456|T037|AB|W33.19|ICD10CM|Accidental malfunction of other larger firearm|Accidental malfunction of other larger firearm +C2904456|T037|HT|W33.19|ICD10CM|Accidental malfunction of other larger firearm|Accidental malfunction of other larger firearm +C2904455|T037|ET|W33.19|ICD10CM|Malfunction of other larger firearm NOS|Malfunction of other larger firearm NOS +C2904457|T037|AB|W33.19XA|ICD10CM|Accidental malfunction of other larger firearm, init encntr|Accidental malfunction of other larger firearm, init encntr +C2904457|T037|PT|W33.19XA|ICD10CM|Accidental malfunction of other larger firearm, initial encounter|Accidental malfunction of other larger firearm, initial encounter +C2904458|T037|AB|W33.19XD|ICD10CM|Accidental malfunction of other larger firearm, subs encntr|Accidental malfunction of other larger firearm, subs encntr +C2904458|T037|PT|W33.19XD|ICD10CM|Accidental malfunction of other larger firearm, subsequent encounter|Accidental malfunction of other larger firearm, subsequent encounter +C2904459|T037|AB|W33.19XS|ICD10CM|Accidental malfunction of other larger firearm, sequela|Accidental malfunction of other larger firearm, sequela +C2904459|T037|PT|W33.19XS|ICD10CM|Accidental malfunction of other larger firearm, sequela|Accidental malfunction of other larger firearm, sequela +C2904460|T037|AB|W34|ICD10CM|Acc disch and malfunct from oth and unsp firearms and guns|Acc disch and malfunct from oth and unsp firearms and guns +C2904460|T037|HT|W34|ICD10CM|Accidental discharge and malfunction from other and unspecified firearms and guns|Accidental discharge and malfunction from other and unspecified firearms and guns +C2904461|T037|AB|W34.0|ICD10CM|Accidental discharge from other and unsp firearms and guns|Accidental discharge from other and unsp firearms and guns +C2904461|T037|HT|W34.0|ICD10CM|Accidental discharge from other and unspecified firearms and guns|Accidental discharge from other and unspecified firearms and guns +C2904463|T037|AB|W34.00|ICD10CM|Accidental discharge from unspecified firearms or gun|Accidental discharge from unspecified firearms or gun +C2904463|T037|HT|W34.00|ICD10CM|Accidental discharge from unspecified firearms or gun|Accidental discharge from unspecified firearms or gun +C2904462|T037|ET|W34.00|ICD10CM|Discharge from firearm NOS|Discharge from firearm NOS +C0043252|T037|ET|W34.00|ICD10CM|Gunshot wound NOS|Gunshot wound NOS +C2919062|T037|ET|W34.00|ICD10CM|Shot NOS|Shot NOS +C2904464|T037|AB|W34.00XA|ICD10CM|Accidental discharge from unsp firearms or gun, init encntr|Accidental discharge from unsp firearms or gun, init encntr +C2904464|T037|PT|W34.00XA|ICD10CM|Accidental discharge from unspecified firearms or gun, initial encounter|Accidental discharge from unspecified firearms or gun, initial encounter +C2904465|T037|AB|W34.00XD|ICD10CM|Accidental discharge from unsp firearms or gun, subs encntr|Accidental discharge from unsp firearms or gun, subs encntr +C2904465|T037|PT|W34.00XD|ICD10CM|Accidental discharge from unspecified firearms or gun, subsequent encounter|Accidental discharge from unspecified firearms or gun, subsequent encounter +C2904466|T037|AB|W34.00XS|ICD10CM|Accidental discharge from unsp firearms or gun, sequela|Accidental discharge from unsp firearms or gun, sequela +C2904466|T037|PT|W34.00XS|ICD10CM|Accidental discharge from unspecified firearms or gun, sequela|Accidental discharge from unspecified firearms or gun, sequela +C2904467|T037|AB|W34.01|ICD10CM|Accidental discharge of gas, air or spring-operated guns|Accidental discharge of gas, air or spring-operated guns +C2904467|T037|HT|W34.01|ICD10CM|Accidental discharge of gas, air or spring-operated guns|Accidental discharge of gas, air or spring-operated guns +C2904470|T037|AB|W34.010|ICD10CM|Accidental discharge of airgun|Accidental discharge of airgun +C2904470|T037|HT|W34.010|ICD10CM|Accidental discharge of airgun|Accidental discharge of airgun +C2904468|T037|ET|W34.010|ICD10CM|Accidental discharge of BB gun|Accidental discharge of BB gun +C2904469|T037|ET|W34.010|ICD10CM|Accidental discharge of pellet gun|Accidental discharge of pellet gun +C2904471|T037|AB|W34.010A|ICD10CM|Accidental discharge of airgun, initial encounter|Accidental discharge of airgun, initial encounter +C2904471|T037|PT|W34.010A|ICD10CM|Accidental discharge of airgun, initial encounter|Accidental discharge of airgun, initial encounter +C2904472|T037|AB|W34.010D|ICD10CM|Accidental discharge of airgun, subsequent encounter|Accidental discharge of airgun, subsequent encounter +C2904472|T037|PT|W34.010D|ICD10CM|Accidental discharge of airgun, subsequent encounter|Accidental discharge of airgun, subsequent encounter +C2904473|T037|AB|W34.010S|ICD10CM|Accidental discharge of airgun, sequela|Accidental discharge of airgun, sequela +C2904473|T037|PT|W34.010S|ICD10CM|Accidental discharge of airgun, sequela|Accidental discharge of airgun, sequela +C2904475|T037|AB|W34.011|ICD10CM|Accidental discharge of paintball gun|Accidental discharge of paintball gun +C2904475|T037|HT|W34.011|ICD10CM|Accidental discharge of paintball gun|Accidental discharge of paintball gun +C2904474|T037|ET|W34.011|ICD10CM|Accidental injury due to paintball discharge|Accidental injury due to paintball discharge +C2904476|T037|AB|W34.011A|ICD10CM|Accidental discharge of paintball gun, initial encounter|Accidental discharge of paintball gun, initial encounter +C2904476|T037|PT|W34.011A|ICD10CM|Accidental discharge of paintball gun, initial encounter|Accidental discharge of paintball gun, initial encounter +C2904477|T037|AB|W34.011D|ICD10CM|Accidental discharge of paintball gun, subsequent encounter|Accidental discharge of paintball gun, subsequent encounter +C2904477|T037|PT|W34.011D|ICD10CM|Accidental discharge of paintball gun, subsequent encounter|Accidental discharge of paintball gun, subsequent encounter +C2904478|T037|AB|W34.011S|ICD10CM|Accidental discharge of paintball gun, sequela|Accidental discharge of paintball gun, sequela +C2904478|T037|PT|W34.011S|ICD10CM|Accidental discharge of paintball gun, sequela|Accidental discharge of paintball gun, sequela +C2904479|T037|AB|W34.018|ICD10CM|Accidental discharge of oth gas, air or spring-operated gun|Accidental discharge of oth gas, air or spring-operated gun +C2904479|T037|HT|W34.018|ICD10CM|Accidental discharge of other gas, air or spring-operated gun|Accidental discharge of other gas, air or spring-operated gun +C2904480|T037|AB|W34.018A|ICD10CM|Accidental discharge of gas, air or sprng-op gun, init|Accidental discharge of gas, air or sprng-op gun, init +C2904480|T037|PT|W34.018A|ICD10CM|Accidental discharge of other gas, air or spring-operated gun, initial encounter|Accidental discharge of other gas, air or spring-operated gun, initial encounter +C2904481|T037|AB|W34.018D|ICD10CM|Accidental discharge of gas, air or sprng-op gun, subs|Accidental discharge of gas, air or sprng-op gun, subs +C2904481|T037|PT|W34.018D|ICD10CM|Accidental discharge of other gas, air or spring-operated gun, subsequent encounter|Accidental discharge of other gas, air or spring-operated gun, subsequent encounter +C2904482|T037|AB|W34.018S|ICD10CM|Accidental discharge of gas, air or sprng-op gun, sequela|Accidental discharge of gas, air or sprng-op gun, sequela +C2904482|T037|PT|W34.018S|ICD10CM|Accidental discharge of other gas, air or spring-operated gun, sequela|Accidental discharge of other gas, air or spring-operated gun, sequela +C2904484|T037|AB|W34.09|ICD10CM|Accidental discharge from other specified firearms|Accidental discharge from other specified firearms +C2904484|T037|HT|W34.09|ICD10CM|Accidental discharge from other specified firearms|Accidental discharge from other specified firearms +C2904483|T037|ET|W34.09|ICD10CM|Accidental discharge from Very pistol [flare]|Accidental discharge from Very pistol [flare] +C2904485|T037|AB|W34.09XA|ICD10CM|Accidental discharge from oth firearms, init encntr|Accidental discharge from oth firearms, init encntr +C2904485|T037|PT|W34.09XA|ICD10CM|Accidental discharge from other specified firearms, initial encounter|Accidental discharge from other specified firearms, initial encounter +C2904486|T037|AB|W34.09XD|ICD10CM|Accidental discharge from oth firearms, subs encntr|Accidental discharge from oth firearms, subs encntr +C2904486|T037|PT|W34.09XD|ICD10CM|Accidental discharge from other specified firearms, subsequent encounter|Accidental discharge from other specified firearms, subsequent encounter +C2904487|T037|AB|W34.09XS|ICD10CM|Accidental discharge from other specified firearms, sequela|Accidental discharge from other specified firearms, sequela +C2904487|T037|PT|W34.09XS|ICD10CM|Accidental discharge from other specified firearms, sequela|Accidental discharge from other specified firearms, sequela +C2904488|T037|AB|W34.1|ICD10CM|Accidental malfunction from other and unsp firearms and guns|Accidental malfunction from other and unsp firearms and guns +C2904488|T037|HT|W34.1|ICD10CM|Accidental malfunction from other and unspecified firearms and guns|Accidental malfunction from other and unspecified firearms and guns +C2904490|T037|AB|W34.10|ICD10CM|Accidental malfunction from unspecified firearms or gun|Accidental malfunction from unspecified firearms or gun +C2904490|T037|HT|W34.10|ICD10CM|Accidental malfunction from unspecified firearms or gun|Accidental malfunction from unspecified firearms or gun +C2904489|T037|ET|W34.10|ICD10CM|Firearm malfunction NOS|Firearm malfunction NOS +C2904491|T037|AB|W34.10XA|ICD10CM|Accidental malfunction from unsp firearms or gun, init|Accidental malfunction from unsp firearms or gun, init +C2904491|T037|PT|W34.10XA|ICD10CM|Accidental malfunction from unspecified firearms or gun, initial encounter|Accidental malfunction from unspecified firearms or gun, initial encounter +C2904492|T037|AB|W34.10XD|ICD10CM|Accidental malfunction from unsp firearms or gun, subs|Accidental malfunction from unsp firearms or gun, subs +C2904492|T037|PT|W34.10XD|ICD10CM|Accidental malfunction from unspecified firearms or gun, subsequent encounter|Accidental malfunction from unspecified firearms or gun, subsequent encounter +C2904493|T037|AB|W34.10XS|ICD10CM|Accidental malfunction from unsp firearms or gun, sequela|Accidental malfunction from unsp firearms or gun, sequela +C2904493|T037|PT|W34.10XS|ICD10CM|Accidental malfunction from unspecified firearms or gun, sequela|Accidental malfunction from unspecified firearms or gun, sequela +C4760699|T037|AB|W34.11|ICD10CM|Accidental malfunction of gas, air or spring-operated guns|Accidental malfunction of gas, air or spring-operated guns +C4760699|T037|HT|W34.11|ICD10CM|Accidental malfunction of gas, air or spring-operated guns|Accidental malfunction of gas, air or spring-operated guns +C2904497|T037|AB|W34.110|ICD10CM|Accidental malfunction of airgun|Accidental malfunction of airgun +C2904497|T037|HT|W34.110|ICD10CM|Accidental malfunction of airgun|Accidental malfunction of airgun +C2904495|T037|ET|W34.110|ICD10CM|Accidental malfunction of BB gun|Accidental malfunction of BB gun +C2904496|T037|ET|W34.110|ICD10CM|Accidental malfunction of pellet gun|Accidental malfunction of pellet gun +C2904498|T037|AB|W34.110A|ICD10CM|Accidental malfunction of airgun, initial encounter|Accidental malfunction of airgun, initial encounter +C2904498|T037|PT|W34.110A|ICD10CM|Accidental malfunction of airgun, initial encounter|Accidental malfunction of airgun, initial encounter +C2904499|T037|AB|W34.110D|ICD10CM|Accidental malfunction of airgun, subsequent encounter|Accidental malfunction of airgun, subsequent encounter +C2904499|T037|PT|W34.110D|ICD10CM|Accidental malfunction of airgun, subsequent encounter|Accidental malfunction of airgun, subsequent encounter +C2904500|T037|AB|W34.110S|ICD10CM|Accidental malfunction of airgun, sequela|Accidental malfunction of airgun, sequela +C2904500|T037|PT|W34.110S|ICD10CM|Accidental malfunction of airgun, sequela|Accidental malfunction of airgun, sequela +C2904501|T037|ET|W34.111|ICD10CM|Accidental injury due to paintball gun malfunction|Accidental injury due to paintball gun malfunction +C2904502|T037|AB|W34.111|ICD10CM|Accidental malfunction of paintball gun|Accidental malfunction of paintball gun +C2904502|T037|HT|W34.111|ICD10CM|Accidental malfunction of paintball gun|Accidental malfunction of paintball gun +C2904503|T037|AB|W34.111A|ICD10CM|Accidental malfunction of paintball gun, initial encounter|Accidental malfunction of paintball gun, initial encounter +C2904503|T037|PT|W34.111A|ICD10CM|Accidental malfunction of paintball gun, initial encounter|Accidental malfunction of paintball gun, initial encounter +C2904504|T037|AB|W34.111D|ICD10CM|Accidental malfunction of paintball gun, subs encntr|Accidental malfunction of paintball gun, subs encntr +C2904504|T037|PT|W34.111D|ICD10CM|Accidental malfunction of paintball gun, subsequent encounter|Accidental malfunction of paintball gun, subsequent encounter +C2904505|T037|AB|W34.111S|ICD10CM|Accidental malfunction of paintball gun, sequela|Accidental malfunction of paintball gun, sequela +C2904505|T037|PT|W34.111S|ICD10CM|Accidental malfunction of paintball gun, sequela|Accidental malfunction of paintball gun, sequela +C2904494|T037|AB|W34.118|ICD10CM|Accidental malfunction of gas, air or spring-operated gun|Accidental malfunction of gas, air or spring-operated gun +C2904494|T037|HT|W34.118|ICD10CM|Accidental malfunction of other gas, air or spring-operated gun|Accidental malfunction of other gas, air or spring-operated gun +C2904507|T037|AB|W34.118A|ICD10CM|Accidental malfunction of gas, air or sprng-op gun, init|Accidental malfunction of gas, air or sprng-op gun, init +C2904507|T037|PT|W34.118A|ICD10CM|Accidental malfunction of other gas, air or spring-operated gun, initial encounter|Accidental malfunction of other gas, air or spring-operated gun, initial encounter +C2904508|T037|AB|W34.118D|ICD10CM|Accidental malfunction of gas, air or sprng-op gun, subs|Accidental malfunction of gas, air or sprng-op gun, subs +C2904508|T037|PT|W34.118D|ICD10CM|Accidental malfunction of other gas, air or spring-operated gun, subsequent encounter|Accidental malfunction of other gas, air or spring-operated gun, subsequent encounter +C2904509|T037|AB|W34.118S|ICD10CM|Accidental malfunction of gas, air or sprng-op gun, sequela|Accidental malfunction of gas, air or sprng-op gun, sequela +C2904509|T037|PT|W34.118S|ICD10CM|Accidental malfunction of other gas, air or spring-operated gun, sequela|Accidental malfunction of other gas, air or spring-operated gun, sequela +C2904511|T037|AB|W34.19|ICD10CM|Accidental malfunction from other specified firearms|Accidental malfunction from other specified firearms +C2904511|T037|HT|W34.19|ICD10CM|Accidental malfunction from other specified firearms|Accidental malfunction from other specified firearms +C2904510|T037|ET|W34.19|ICD10CM|Accidental malfunction from Very pistol [flare]|Accidental malfunction from Very pistol [flare] +C2904512|T037|AB|W34.19XA|ICD10CM|Accidental malfunction from oth firearms, init encntr|Accidental malfunction from oth firearms, init encntr +C2904512|T037|PT|W34.19XA|ICD10CM|Accidental malfunction from other specified firearms, initial encounter|Accidental malfunction from other specified firearms, initial encounter +C2904513|T037|AB|W34.19XD|ICD10CM|Accidental malfunction from oth firearms, subs encntr|Accidental malfunction from oth firearms, subs encntr +C2904513|T037|PT|W34.19XD|ICD10CM|Accidental malfunction from other specified firearms, subsequent encounter|Accidental malfunction from other specified firearms, subsequent encounter +C2904514|T037|AB|W34.19XS|ICD10CM|Accidental malfunction from oth firearms, sequela|Accidental malfunction from oth firearms, sequela +C2904514|T037|PT|W34.19XS|ICD10CM|Accidental malfunction from other specified firearms, sequela|Accidental malfunction from other specified firearms, sequela +C0479052|T037|PS|W35|ICD10|Explosion and rupture of boiler|Explosion and rupture of boiler +C0479052|T037|HT|W35|ICD10CM|Explosion and rupture of boiler|Explosion and rupture of boiler +C0479052|T037|AB|W35|ICD10CM|Explosion and rupture of boiler|Explosion and rupture of boiler +C0479052|T037|PX|W35|ICD10|Explosion and rupture of boiler causing accidental injury|Explosion and rupture of boiler causing accidental injury +C2904515|T037|AB|W35.XXXA|ICD10CM|Explosion and rupture of boiler, initial encounter|Explosion and rupture of boiler, initial encounter +C2904515|T037|PT|W35.XXXA|ICD10CM|Explosion and rupture of boiler, initial encounter|Explosion and rupture of boiler, initial encounter +C2904516|T037|AB|W35.XXXD|ICD10CM|Explosion and rupture of boiler, subsequent encounter|Explosion and rupture of boiler, subsequent encounter +C2904516|T037|PT|W35.XXXD|ICD10CM|Explosion and rupture of boiler, subsequent encounter|Explosion and rupture of boiler, subsequent encounter +C2904517|T037|AB|W35.XXXS|ICD10CM|Explosion and rupture of boiler, sequela|Explosion and rupture of boiler, sequela +C2904517|T037|PT|W35.XXXS|ICD10CM|Explosion and rupture of boiler, sequela|Explosion and rupture of boiler, sequela +C0479053|T037|PS|W36|ICD10|Explosion and rupture of gas cylinder|Explosion and rupture of gas cylinder +C0479053|T037|HT|W36|ICD10CM|Explosion and rupture of gas cylinder|Explosion and rupture of gas cylinder +C0479053|T037|AB|W36|ICD10CM|Explosion and rupture of gas cylinder|Explosion and rupture of gas cylinder +C0479053|T037|PX|W36|ICD10|Explosion and rupture of gas cylinder causing accidental injury|Explosion and rupture of gas cylinder causing accidental injury +C2904518|T037|AB|W36.1|ICD10CM|Explosion and rupture of aerosol can|Explosion and rupture of aerosol can +C2904518|T037|HT|W36.1|ICD10CM|Explosion and rupture of aerosol can|Explosion and rupture of aerosol can +C2904519|T037|AB|W36.1XXA|ICD10CM|Explosion and rupture of aerosol can, initial encounter|Explosion and rupture of aerosol can, initial encounter +C2904519|T037|PT|W36.1XXA|ICD10CM|Explosion and rupture of aerosol can, initial encounter|Explosion and rupture of aerosol can, initial encounter +C2904520|T037|AB|W36.1XXD|ICD10CM|Explosion and rupture of aerosol can, subsequent encounter|Explosion and rupture of aerosol can, subsequent encounter +C2904520|T037|PT|W36.1XXD|ICD10CM|Explosion and rupture of aerosol can, subsequent encounter|Explosion and rupture of aerosol can, subsequent encounter +C2904521|T037|AB|W36.1XXS|ICD10CM|Explosion and rupture of aerosol can, sequela|Explosion and rupture of aerosol can, sequela +C2904521|T037|PT|W36.1XXS|ICD10CM|Explosion and rupture of aerosol can, sequela|Explosion and rupture of aerosol can, sequela +C2904522|T037|AB|W36.2|ICD10CM|Explosion and rupture of air tank|Explosion and rupture of air tank +C2904522|T037|HT|W36.2|ICD10CM|Explosion and rupture of air tank|Explosion and rupture of air tank +C2904523|T037|AB|W36.2XXA|ICD10CM|Explosion and rupture of air tank, initial encounter|Explosion and rupture of air tank, initial encounter +C2904523|T037|PT|W36.2XXA|ICD10CM|Explosion and rupture of air tank, initial encounter|Explosion and rupture of air tank, initial encounter +C2904524|T037|AB|W36.2XXD|ICD10CM|Explosion and rupture of air tank, subsequent encounter|Explosion and rupture of air tank, subsequent encounter +C2904524|T037|PT|W36.2XXD|ICD10CM|Explosion and rupture of air tank, subsequent encounter|Explosion and rupture of air tank, subsequent encounter +C2904525|T037|AB|W36.2XXS|ICD10CM|Explosion and rupture of air tank, sequela|Explosion and rupture of air tank, sequela +C2904525|T037|PT|W36.2XXS|ICD10CM|Explosion and rupture of air tank, sequela|Explosion and rupture of air tank, sequela +C2904526|T037|AB|W36.3|ICD10CM|Explosion and rupture of pressurized-gas tank|Explosion and rupture of pressurized-gas tank +C2904526|T037|HT|W36.3|ICD10CM|Explosion and rupture of pressurized-gas tank|Explosion and rupture of pressurized-gas tank +C2904527|T037|AB|W36.3XXA|ICD10CM|Explosion and rupture of pressurized-gas tank, init encntr|Explosion and rupture of pressurized-gas tank, init encntr +C2904527|T037|PT|W36.3XXA|ICD10CM|Explosion and rupture of pressurized-gas tank, initial encounter|Explosion and rupture of pressurized-gas tank, initial encounter +C2904528|T037|AB|W36.3XXD|ICD10CM|Explosion and rupture of pressurized-gas tank, subs encntr|Explosion and rupture of pressurized-gas tank, subs encntr +C2904528|T037|PT|W36.3XXD|ICD10CM|Explosion and rupture of pressurized-gas tank, subsequent encounter|Explosion and rupture of pressurized-gas tank, subsequent encounter +C2904529|T037|AB|W36.3XXS|ICD10CM|Explosion and rupture of pressurized-gas tank, sequela|Explosion and rupture of pressurized-gas tank, sequela +C2904529|T037|PT|W36.3XXS|ICD10CM|Explosion and rupture of pressurized-gas tank, sequela|Explosion and rupture of pressurized-gas tank, sequela +C2904530|T037|AB|W36.8|ICD10CM|Explosion and rupture of other gas cylinder|Explosion and rupture of other gas cylinder +C2904530|T037|HT|W36.8|ICD10CM|Explosion and rupture of other gas cylinder|Explosion and rupture of other gas cylinder +C2904531|T037|AB|W36.8XXA|ICD10CM|Explosion and rupture of other gas cylinder, init encntr|Explosion and rupture of other gas cylinder, init encntr +C2904531|T037|PT|W36.8XXA|ICD10CM|Explosion and rupture of other gas cylinder, initial encounter|Explosion and rupture of other gas cylinder, initial encounter +C2904532|T037|AB|W36.8XXD|ICD10CM|Explosion and rupture of other gas cylinder, subs encntr|Explosion and rupture of other gas cylinder, subs encntr +C2904532|T037|PT|W36.8XXD|ICD10CM|Explosion and rupture of other gas cylinder, subsequent encounter|Explosion and rupture of other gas cylinder, subsequent encounter +C2904533|T037|AB|W36.8XXS|ICD10CM|Explosion and rupture of other gas cylinder, sequela|Explosion and rupture of other gas cylinder, sequela +C2904533|T037|PT|W36.8XXS|ICD10CM|Explosion and rupture of other gas cylinder, sequela|Explosion and rupture of other gas cylinder, sequela +C2904534|T037|AB|W36.9|ICD10CM|Explosion and rupture of unspecified gas cylinder|Explosion and rupture of unspecified gas cylinder +C2904534|T037|HT|W36.9|ICD10CM|Explosion and rupture of unspecified gas cylinder|Explosion and rupture of unspecified gas cylinder +C2904535|T037|AB|W36.9XXA|ICD10CM|Explosion and rupture of unsp gas cylinder, init encntr|Explosion and rupture of unsp gas cylinder, init encntr +C2904535|T037|PT|W36.9XXA|ICD10CM|Explosion and rupture of unspecified gas cylinder, initial encounter|Explosion and rupture of unspecified gas cylinder, initial encounter +C2904536|T037|AB|W36.9XXD|ICD10CM|Explosion and rupture of unsp gas cylinder, subs encntr|Explosion and rupture of unsp gas cylinder, subs encntr +C2904536|T037|PT|W36.9XXD|ICD10CM|Explosion and rupture of unspecified gas cylinder, subsequent encounter|Explosion and rupture of unspecified gas cylinder, subsequent encounter +C2904537|T037|AB|W36.9XXS|ICD10CM|Explosion and rupture of unspecified gas cylinder, sequela|Explosion and rupture of unspecified gas cylinder, sequela +C2904537|T037|PT|W36.9XXS|ICD10CM|Explosion and rupture of unspecified gas cylinder, sequela|Explosion and rupture of unspecified gas cylinder, sequela +C0479072|T037|PS|W37|ICD10AE|Explosion and rupture of pressurized tire, pipe or hose|Explosion and rupture of pressurized tire, pipe or hose +C0479072|T037|HT|W37|ICD10CM|Explosion and rupture of pressurized tire, pipe or hose|Explosion and rupture of pressurized tire, pipe or hose +C0479072|T037|AB|W37|ICD10CM|Explosion and rupture of pressurized tire, pipe or hose|Explosion and rupture of pressurized tire, pipe or hose +C0479072|T037|PX|W37|ICD10AE|Explosion and rupture of pressurized tire, pipe or hose causing accidental injury|Explosion and rupture of pressurized tire, pipe or hose causing accidental injury +C0479072|T037|PS|W37|ICD10|Explosion and rupture of pressurized tyre, pipe or hose|Explosion and rupture of pressurized tyre, pipe or hose +C0479072|T037|PX|W37|ICD10|Explosion and rupture of pressurized tyre, pipe or hose causing accidental injury|Explosion and rupture of pressurized tyre, pipe or hose causing accidental injury +C2904538|T037|HT|W37.0|ICD10CM|Explosion of bicycle tire|Explosion of bicycle tire +C2904538|T037|AB|W37.0|ICD10CM|Explosion of bicycle tire|Explosion of bicycle tire +C2904539|T037|AB|W37.0XXA|ICD10CM|Explosion of bicycle tire, initial encounter|Explosion of bicycle tire, initial encounter +C2904539|T037|PT|W37.0XXA|ICD10CM|Explosion of bicycle tire, initial encounter|Explosion of bicycle tire, initial encounter +C2904540|T037|AB|W37.0XXD|ICD10CM|Explosion of bicycle tire, subsequent encounter|Explosion of bicycle tire, subsequent encounter +C2904540|T037|PT|W37.0XXD|ICD10CM|Explosion of bicycle tire, subsequent encounter|Explosion of bicycle tire, subsequent encounter +C2904541|T037|AB|W37.0XXS|ICD10CM|Explosion of bicycle tire, sequela|Explosion of bicycle tire, sequela +C2904541|T037|PT|W37.0XXS|ICD10CM|Explosion of bicycle tire, sequela|Explosion of bicycle tire, sequela +C2904542|T037|AB|W37.8|ICD10CM|Explosion and rupture of oth pressurized tire, pipe or hose|Explosion and rupture of oth pressurized tire, pipe or hose +C2904542|T037|HT|W37.8|ICD10CM|Explosion and rupture of other pressurized tire, pipe or hose|Explosion and rupture of other pressurized tire, pipe or hose +C2904543|T037|PT|W37.8XXA|ICD10CM|Explosion and rupture of other pressurized tire, pipe or hose, initial encounter|Explosion and rupture of other pressurized tire, pipe or hose, initial encounter +C2904543|T037|AB|W37.8XXA|ICD10CM|Explosn and rupture of pressurized tire, pipe or hose, init|Explosn and rupture of pressurized tire, pipe or hose, init +C2904544|T037|PT|W37.8XXD|ICD10CM|Explosion and rupture of other pressurized tire, pipe or hose, subsequent encounter|Explosion and rupture of other pressurized tire, pipe or hose, subsequent encounter +C2904544|T037|AB|W37.8XXD|ICD10CM|Explosn and rupture of pressurized tire, pipe or hose, subs|Explosn and rupture of pressurized tire, pipe or hose, subs +C2904545|T037|PT|W37.8XXS|ICD10CM|Explosion and rupture of other pressurized tire, pipe or hose, sequela|Explosion and rupture of other pressurized tire, pipe or hose, sequela +C2904545|T037|AB|W37.8XXS|ICD10CM|Explosn and rupt of pressurized tire, pipe or hose, sequela|Explosn and rupt of pressurized tire, pipe or hose, sequela +C0479073|T037|PS|W38|ICD10|Explosion and rupture of other specified pressurized devices|Explosion and rupture of other specified pressurized devices +C0479073|T037|HT|W38|ICD10CM|Explosion and rupture of other specified pressurized devices|Explosion and rupture of other specified pressurized devices +C0479073|T037|AB|W38|ICD10CM|Explosion and rupture of other specified pressurized devices|Explosion and rupture of other specified pressurized devices +C0479073|T037|PX|W38|ICD10|Explosion and rupture of other specified pressurized devices causing accidental injury|Explosion and rupture of other specified pressurized devices causing accidental injury +C2904546|T037|AB|W38.XXXA|ICD10CM|Explosion and rupture of oth pressurized devices, init|Explosion and rupture of oth pressurized devices, init +C2904546|T037|PT|W38.XXXA|ICD10CM|Explosion and rupture of other specified pressurized devices, initial encounter|Explosion and rupture of other specified pressurized devices, initial encounter +C2904547|T037|AB|W38.XXXD|ICD10CM|Explosion and rupture of oth pressurized devices, subs|Explosion and rupture of oth pressurized devices, subs +C2904547|T037|PT|W38.XXXD|ICD10CM|Explosion and rupture of other specified pressurized devices, subsequent encounter|Explosion and rupture of other specified pressurized devices, subsequent encounter +C2904548|T037|AB|W38.XXXS|ICD10CM|Explosion and rupture of oth pressurized devices, sequela|Explosion and rupture of oth pressurized devices, sequela +C2904548|T037|PT|W38.XXXS|ICD10CM|Explosion and rupture of other specified pressurized devices, sequela|Explosion and rupture of other specified pressurized devices, sequela +C0479083|T037|PS|W39|ICD10|Discharge of firework|Discharge of firework +C0479083|T037|HT|W39|ICD10CM|Discharge of firework|Discharge of firework +C0479083|T037|AB|W39|ICD10CM|Discharge of firework|Discharge of firework +C0479083|T037|PX|W39|ICD10|Discharge of firework causing accidental injury|Discharge of firework causing accidental injury +C2904549|T037|AB|W39.XXXA|ICD10CM|Discharge of firework, initial encounter|Discharge of firework, initial encounter +C2904549|T037|PT|W39.XXXA|ICD10CM|Discharge of firework, initial encounter|Discharge of firework, initial encounter +C2904550|T037|AB|W39.XXXD|ICD10CM|Discharge of firework, subsequent encounter|Discharge of firework, subsequent encounter +C2904550|T037|PT|W39.XXXD|ICD10CM|Discharge of firework, subsequent encounter|Discharge of firework, subsequent encounter +C2904551|T037|AB|W39.XXXS|ICD10CM|Discharge of firework, sequela|Discharge of firework, sequela +C2904551|T037|PT|W39.XXXS|ICD10CM|Discharge of firework, sequela|Discharge of firework, sequela +C0479093|T037|PS|W40|ICD10|Explosion of other materials|Explosion of other materials +C0479093|T037|HT|W40|ICD10CM|Explosion of other materials|Explosion of other materials +C0479093|T037|AB|W40|ICD10CM|Explosion of other materials|Explosion of other materials +C0479093|T037|PX|W40|ICD10|Explosion of other materials causing accidental injury|Explosion of other materials causing accidental injury +C2904552|T037|ET|W40.0|ICD10CM|Explosion of blasting cap|Explosion of blasting cap +C2904556|T037|AB|W40.0|ICD10CM|Explosion of blasting material|Explosion of blasting material +C2904556|T037|HT|W40.0|ICD10CM|Explosion of blasting material|Explosion of blasting material +C2904553|T037|ET|W40.0|ICD10CM|Explosion of detonator|Explosion of detonator +C2904554|T037|ET|W40.0|ICD10CM|Explosion of dynamite|Explosion of dynamite +C2904555|T037|ET|W40.0|ICD10CM|Explosion of explosive (any) used in blasting operations|Explosion of explosive (any) used in blasting operations +C2904557|T037|AB|W40.0XXA|ICD10CM|Explosion of blasting material, initial encounter|Explosion of blasting material, initial encounter +C2904557|T037|PT|W40.0XXA|ICD10CM|Explosion of blasting material, initial encounter|Explosion of blasting material, initial encounter +C2904558|T037|AB|W40.0XXD|ICD10CM|Explosion of blasting material, subsequent encounter|Explosion of blasting material, subsequent encounter +C2904558|T037|PT|W40.0XXD|ICD10CM|Explosion of blasting material, subsequent encounter|Explosion of blasting material, subsequent encounter +C2904559|T037|AB|W40.0XXS|ICD10CM|Explosion of blasting material, sequela|Explosion of blasting material, sequela +C2904559|T037|PT|W40.0XXS|ICD10CM|Explosion of blasting material, sequela|Explosion of blasting material, sequela +C2904560|T037|ET|W40.1|ICD10CM|Explosion in mine NOS|Explosion in mine NOS +C2904561|T037|ET|W40.1|ICD10CM|Explosion of acetylene|Explosion of acetylene +C2904562|T037|ET|W40.1|ICD10CM|Explosion of butane|Explosion of butane +C2904563|T037|ET|W40.1|ICD10CM|Explosion of coal gas|Explosion of coal gas +C2904564|T037|ET|W40.1|ICD10CM|Explosion of explosive gas|Explosion of explosive gas +C2904569|T037|AB|W40.1|ICD10CM|Explosion of explosive gases|Explosion of explosive gases +C2904569|T037|HT|W40.1|ICD10CM|Explosion of explosive gases|Explosion of explosive gases +C2904565|T037|ET|W40.1|ICD10CM|Explosion of fire damp|Explosion of fire damp +C2904566|T037|ET|W40.1|ICD10CM|Explosion of gasoline fumes|Explosion of gasoline fumes +C2904567|T037|ET|W40.1|ICD10CM|Explosion of methane|Explosion of methane +C2904568|T037|ET|W40.1|ICD10CM|Explosion of propane|Explosion of propane +C2904570|T037|AB|W40.1XXA|ICD10CM|Explosion of explosive gases, initial encounter|Explosion of explosive gases, initial encounter +C2904570|T037|PT|W40.1XXA|ICD10CM|Explosion of explosive gases, initial encounter|Explosion of explosive gases, initial encounter +C2904571|T037|AB|W40.1XXD|ICD10CM|Explosion of explosive gases, subsequent encounter|Explosion of explosive gases, subsequent encounter +C2904571|T037|PT|W40.1XXD|ICD10CM|Explosion of explosive gases, subsequent encounter|Explosion of explosive gases, subsequent encounter +C2904572|T037|AB|W40.1XXS|ICD10CM|Explosion of explosive gases, sequela|Explosion of explosive gases, sequela +C2904572|T037|PT|W40.1XXS|ICD10CM|Explosion of explosive gases, sequela|Explosion of explosive gases, sequela +C2904573|T037|ET|W40.8|ICD10CM|Explosion in dump NOS|Explosion in dump NOS +C2904574|T037|ET|W40.8|ICD10CM|Explosion in factory NOS|Explosion in factory NOS +C2904575|T037|ET|W40.8|ICD10CM|Explosion in grain store|Explosion in grain store +C2904576|T037|ET|W40.8|ICD10CM|Explosion in munitions|Explosion in munitions +C2904577|T037|AB|W40.8|ICD10CM|Explosion of other specified explosive materials|Explosion of other specified explosive materials +C2904577|T037|HT|W40.8|ICD10CM|Explosion of other specified explosive materials|Explosion of other specified explosive materials +C2904578|T037|AB|W40.8XXA|ICD10CM|Explosion of oth explosive materials, init encntr|Explosion of oth explosive materials, init encntr +C2904578|T037|PT|W40.8XXA|ICD10CM|Explosion of other specified explosive materials, initial encounter|Explosion of other specified explosive materials, initial encounter +C2904579|T037|AB|W40.8XXD|ICD10CM|Explosion of oth explosive materials, subs encntr|Explosion of oth explosive materials, subs encntr +C2904579|T037|PT|W40.8XXD|ICD10CM|Explosion of other specified explosive materials, subsequent encounter|Explosion of other specified explosive materials, subsequent encounter +C2904580|T037|AB|W40.8XXS|ICD10CM|Explosion of other specified explosive materials, sequela|Explosion of other specified explosive materials, sequela +C2904580|T037|PT|W40.8XXS|ICD10CM|Explosion of other specified explosive materials, sequela|Explosion of other specified explosive materials, sequela +C0005700|T037|ET|W40.9|ICD10CM|Explosion NOS|Explosion NOS +C2904581|T037|AB|W40.9|ICD10CM|Explosion of unspecified explosive materials|Explosion of unspecified explosive materials +C2904581|T037|HT|W40.9|ICD10CM|Explosion of unspecified explosive materials|Explosion of unspecified explosive materials +C2904582|T037|AB|W40.9XXA|ICD10CM|Explosion of unspecified explosive materials, init encntr|Explosion of unspecified explosive materials, init encntr +C2904582|T037|PT|W40.9XXA|ICD10CM|Explosion of unspecified explosive materials, initial encounter|Explosion of unspecified explosive materials, initial encounter +C2904583|T037|AB|W40.9XXD|ICD10CM|Explosion of unspecified explosive materials, subs encntr|Explosion of unspecified explosive materials, subs encntr +C2904583|T037|PT|W40.9XXD|ICD10CM|Explosion of unspecified explosive materials, subsequent encounter|Explosion of unspecified explosive materials, subsequent encounter +C2904584|T037|AB|W40.9XXS|ICD10CM|Explosion of unspecified explosive materials, sequela|Explosion of unspecified explosive materials, sequela +C2904584|T037|PT|W40.9XXS|ICD10CM|Explosion of unspecified explosive materials, sequela|Explosion of unspecified explosive materials, sequela +C0479103|T037|PS|W41|ICD10|Exposure to high-pressure jet|Exposure to high-pressure jet +C0479103|T037|PX|W41|ICD10|Exposure to high-pressure jet causing accidental injury|Exposure to high-pressure jet causing accidental injury +C0700522|T037|PS|W42|ICD10|Exposure to noise|Exposure to noise +C0700522|T037|HT|W42|ICD10CM|Exposure to noise|Exposure to noise +C0700522|T037|AB|W42|ICD10CM|Exposure to noise|Exposure to noise +C0700522|T037|PX|W42|ICD10|Exposure to noise causing accidental injury|Exposure to noise causing accidental injury +C0868131|T037|AB|W42.0|ICD10CM|Exposure to supersonic waves|Exposure to supersonic waves +C0868131|T037|HT|W42.0|ICD10CM|Exposure to supersonic waves|Exposure to supersonic waves +C2904585|T037|AB|W42.0XXA|ICD10CM|Exposure to supersonic waves, initial encounter|Exposure to supersonic waves, initial encounter +C2904585|T037|PT|W42.0XXA|ICD10CM|Exposure to supersonic waves, initial encounter|Exposure to supersonic waves, initial encounter +C2904586|T037|AB|W42.0XXD|ICD10CM|Exposure to supersonic waves, subsequent encounter|Exposure to supersonic waves, subsequent encounter +C2904586|T037|PT|W42.0XXD|ICD10CM|Exposure to supersonic waves, subsequent encounter|Exposure to supersonic waves, subsequent encounter +C2904587|T037|AB|W42.0XXS|ICD10CM|Exposure to supersonic waves, sequela|Exposure to supersonic waves, sequela +C2904587|T037|PT|W42.0XXS|ICD10CM|Exposure to supersonic waves, sequela|Exposure to supersonic waves, sequela +C2904588|T037|AB|W42.9|ICD10CM|Exposure to other noise|Exposure to other noise +C2904588|T037|HT|W42.9|ICD10CM|Exposure to other noise|Exposure to other noise +C0868130|T037|ET|W42.9|ICD10CM|Exposure to sound waves NOS|Exposure to sound waves NOS +C2904589|T037|AB|W42.9XXA|ICD10CM|Exposure to other noise, initial encounter|Exposure to other noise, initial encounter +C2904589|T037|PT|W42.9XXA|ICD10CM|Exposure to other noise, initial encounter|Exposure to other noise, initial encounter +C2904590|T037|AB|W42.9XXD|ICD10CM|Exposure to other noise, subsequent encounter|Exposure to other noise, subsequent encounter +C2904590|T037|PT|W42.9XXD|ICD10CM|Exposure to other noise, subsequent encounter|Exposure to other noise, subsequent encounter +C2904591|T037|AB|W42.9XXS|ICD10CM|Exposure to other noise, sequela|Exposure to other noise, sequela +C2904591|T037|PT|W42.9XXS|ICD10CM|Exposure to other noise, sequela|Exposure to other noise, sequela +C0677519|T037|PS|W43|ICD10|Exposure to vibration|Exposure to vibration +C0677519|T037|PX|W43|ICD10|Exposure to vibration causing accidental injury|Exposure to vibration causing accidental injury +C0479132|T037|PS|W44|ICD10|Foreign body entering into or through eye or natural orifice|Foreign body entering into or through eye or natural orifice +C0479132|T037|PX|W44|ICD10|Foreign body entering into or through eye or natural orifice causing accidental injury|Foreign body entering into or through eye or natural orifice causing accidental injury +C4290473|T037|ET|W45|ICD10CM|foreign body or object embedded in skin|foreign body or object embedded in skin +C0479142|T037|PS|W45|ICD10|Foreign body or object entering through skin|Foreign body or object entering through skin +C0479142|T037|HT|W45|ICD10CM|Foreign body or object entering through skin|Foreign body or object entering through skin +C0479142|T037|AB|W45|ICD10CM|Foreign body or object entering through skin|Foreign body or object entering through skin +C0479142|T037|PX|W45|ICD10|Foreign body or object entering through skin causing accidental injury|Foreign body or object entering through skin causing accidental injury +C4290474|T037|ET|W45|ICD10CM|nail embedded in skin|nail embedded in skin +C2904592|T037|AB|W45.0|ICD10CM|Nail entering through skin|Nail entering through skin +C2904592|T037|HT|W45.0|ICD10CM|Nail entering through skin|Nail entering through skin +C2904593|T037|AB|W45.0XXA|ICD10CM|Nail entering through skin, initial encounter|Nail entering through skin, initial encounter +C2904593|T037|PT|W45.0XXA|ICD10CM|Nail entering through skin, initial encounter|Nail entering through skin, initial encounter +C2904594|T037|AB|W45.0XXD|ICD10CM|Nail entering through skin, subsequent encounter|Nail entering through skin, subsequent encounter +C2904594|T037|PT|W45.0XXD|ICD10CM|Nail entering through skin, subsequent encounter|Nail entering through skin, subsequent encounter +C2904595|T037|AB|W45.0XXS|ICD10CM|Nail entering through skin, sequela|Nail entering through skin, sequela +C2904595|T037|PT|W45.0XXS|ICD10CM|Nail entering through skin, sequela|Nail entering through skin, sequela +C2904605|T037|AB|W45.8|ICD10CM|Other foreign body or object entering through skin|Other foreign body or object entering through skin +C2904605|T037|HT|W45.8|ICD10CM|Other foreign body or object entering through skin|Other foreign body or object entering through skin +C0433651|T037|ET|W45.8|ICD10CM|Splinter in skin NOS|Splinter in skin NOS +C2904606|T037|AB|W45.8XXA|ICD10CM|Oth foreign body or object entering through skin, init|Oth foreign body or object entering through skin, init +C2904606|T037|PT|W45.8XXA|ICD10CM|Other foreign body or object entering through skin, initial encounter|Other foreign body or object entering through skin, initial encounter +C2904607|T037|AB|W45.8XXD|ICD10CM|Oth foreign body or object entering through skin, subs|Oth foreign body or object entering through skin, subs +C2904607|T037|PT|W45.8XXD|ICD10CM|Other foreign body or object entering through skin, subsequent encounter|Other foreign body or object entering through skin, subsequent encounter +C2904608|T037|AB|W45.8XXS|ICD10CM|Other foreign body or object entering through skin, sequela|Other foreign body or object entering through skin, sequela +C2904608|T037|PT|W45.8XXS|ICD10CM|Other foreign body or object entering through skin, sequela|Other foreign body or object entering through skin, sequela +C2904610|T037|HT|W46|ICD10CM|Contact with hypodermic needle|Contact with hypodermic needle +C2904610|T037|AB|W46|ICD10CM|Contact with hypodermic needle|Contact with hypodermic needle +C2904610|T037|HT|W46.0|ICD10CM|Contact with hypodermic needle|Contact with hypodermic needle +C2904610|T037|AB|W46.0|ICD10CM|Contact with hypodermic needle|Contact with hypodermic needle +C2904609|T037|ET|W46.0|ICD10CM|Hypodermic needle stick NOS|Hypodermic needle stick NOS +C2904611|T037|AB|W46.0XXA|ICD10CM|Contact with hypodermic needle, initial encounter|Contact with hypodermic needle, initial encounter +C2904611|T037|PT|W46.0XXA|ICD10CM|Contact with hypodermic needle, initial encounter|Contact with hypodermic needle, initial encounter +C2904612|T037|AB|W46.0XXD|ICD10CM|Contact with hypodermic needle, subsequent encounter|Contact with hypodermic needle, subsequent encounter +C2904612|T037|PT|W46.0XXD|ICD10CM|Contact with hypodermic needle, subsequent encounter|Contact with hypodermic needle, subsequent encounter +C2904613|T037|AB|W46.0XXS|ICD10CM|Contact with hypodermic needle, sequela|Contact with hypodermic needle, sequela +C2904613|T037|PT|W46.0XXS|ICD10CM|Contact with hypodermic needle, sequela|Contact with hypodermic needle, sequela +C2904614|T037|HT|W46.1|ICD10CM|Contact with contaminated hypodermic needle|Contact with contaminated hypodermic needle +C2904614|T037|AB|W46.1|ICD10CM|Contact with contaminated hypodermic needle|Contact with contaminated hypodermic needle +C2904615|T037|AB|W46.1XXA|ICD10CM|Contact with contaminated hypodermic needle, init encntr|Contact with contaminated hypodermic needle, init encntr +C2904615|T037|PT|W46.1XXA|ICD10CM|Contact with contaminated hypodermic needle, initial encounter|Contact with contaminated hypodermic needle, initial encounter +C2904616|T037|AB|W46.1XXD|ICD10CM|Contact with contaminated hypodermic needle, subs encntr|Contact with contaminated hypodermic needle, subs encntr +C2904616|T037|PT|W46.1XXD|ICD10CM|Contact with contaminated hypodermic needle, subsequent encounter|Contact with contaminated hypodermic needle, subsequent encounter +C2904617|T037|AB|W46.1XXS|ICD10CM|Contact with contaminated hypodermic needle, sequela|Contact with contaminated hypodermic needle, sequela +C2904617|T037|PT|W46.1XXS|ICD10CM|Contact with contaminated hypodermic needle, sequela|Contact with contaminated hypodermic needle, sequela +C4290475|T037|ET|W49|ICD10CM|exposure to abnormal gravitational [G] forces|exposure to abnormal gravitational [G] forces +C4290476|T037|ET|W49|ICD10CM|exposure to inanimate mechanical forces NEC|exposure to inanimate mechanical forces NEC +C0479152|T037|PS|W49|ICD10|Exposure to other and unspecified inanimate mechanical forces|Exposure to other and unspecified inanimate mechanical forces +C0479152|T037|PX|W49|ICD10|Exposure to other and unspecified inanimate mechanical forces causing accidental injury|Exposure to other and unspecified inanimate mechanical forces causing accidental injury +C2904640|T037|HT|W49|ICD10CM|Exposure to other inanimate mechanical forces|Exposure to other inanimate mechanical forces +C2904640|T037|AB|W49|ICD10CM|Exposure to other inanimate mechanical forces|Exposure to other inanimate mechanical forces +C2904620|T037|HT|W49.0|ICD10CM|Item causing external constriction|Item causing external constriction +C2904620|T037|AB|W49.0|ICD10CM|Item causing external constriction|Item causing external constriction +C1260473|T037|AB|W49.01|ICD10CM|Hair causing external constriction|Hair causing external constriction +C1260473|T037|HT|W49.01|ICD10CM|Hair causing external constriction|Hair causing external constriction +C2904621|T037|AB|W49.01XA|ICD10CM|Hair causing external constriction, initial encounter|Hair causing external constriction, initial encounter +C2904621|T037|PT|W49.01XA|ICD10CM|Hair causing external constriction, initial encounter|Hair causing external constriction, initial encounter +C2904622|T037|AB|W49.01XD|ICD10CM|Hair causing external constriction, subsequent encounter|Hair causing external constriction, subsequent encounter +C2904622|T037|PT|W49.01XD|ICD10CM|Hair causing external constriction, subsequent encounter|Hair causing external constriction, subsequent encounter +C2904623|T037|AB|W49.01XS|ICD10CM|Hair causing external constriction, sequela|Hair causing external constriction, sequela +C2904623|T037|PT|W49.01XS|ICD10CM|Hair causing external constriction, sequela|Hair causing external constriction, sequela +C2904624|T037|AB|W49.02|ICD10CM|String or thread causing external constriction|String or thread causing external constriction +C2904624|T037|HT|W49.02|ICD10CM|String or thread causing external constriction|String or thread causing external constriction +C2904625|T037|AB|W49.02XA|ICD10CM|String or thread causing external constriction, init encntr|String or thread causing external constriction, init encntr +C2904625|T037|PT|W49.02XA|ICD10CM|String or thread causing external constriction, initial encounter|String or thread causing external constriction, initial encounter +C2904626|T037|AB|W49.02XD|ICD10CM|String or thread causing external constriction, subs encntr|String or thread causing external constriction, subs encntr +C2904626|T037|PT|W49.02XD|ICD10CM|String or thread causing external constriction, subsequent encounter|String or thread causing external constriction, subsequent encounter +C2904627|T037|AB|W49.02XS|ICD10CM|String or thread causing external constriction, sequela|String or thread causing external constriction, sequela +C2904627|T037|PT|W49.02XS|ICD10CM|String or thread causing external constriction, sequela|String or thread causing external constriction, sequela +C2904628|T037|AB|W49.03|ICD10CM|Rubber band causing external constriction|Rubber band causing external constriction +C2904628|T037|HT|W49.03|ICD10CM|Rubber band causing external constriction|Rubber band causing external constriction +C2904629|T037|AB|W49.03XA|ICD10CM|Rubber band causing external constriction, initial encounter|Rubber band causing external constriction, initial encounter +C2904629|T037|PT|W49.03XA|ICD10CM|Rubber band causing external constriction, initial encounter|Rubber band causing external constriction, initial encounter +C2904630|T037|AB|W49.03XD|ICD10CM|Rubber band causing external constriction, subs encntr|Rubber band causing external constriction, subs encntr +C2904630|T037|PT|W49.03XD|ICD10CM|Rubber band causing external constriction, subsequent encounter|Rubber band causing external constriction, subsequent encounter +C2904631|T037|AB|W49.03XS|ICD10CM|Rubber band causing external constriction, sequela|Rubber band causing external constriction, sequela +C2904631|T037|PT|W49.03XS|ICD10CM|Rubber band causing external constriction, sequela|Rubber band causing external constriction, sequela +C2904632|T037|AB|W49.04|ICD10CM|Ring or other jewelry causing external constriction|Ring or other jewelry causing external constriction +C2904632|T037|HT|W49.04|ICD10CM|Ring or other jewelry causing external constriction|Ring or other jewelry causing external constriction +C2904633|T037|AB|W49.04XA|ICD10CM|Ring or oth jewelry causing external constriction, init|Ring or oth jewelry causing external constriction, init +C2904633|T037|PT|W49.04XA|ICD10CM|Ring or other jewelry causing external constriction, initial encounter|Ring or other jewelry causing external constriction, initial encounter +C2904634|T037|AB|W49.04XD|ICD10CM|Ring or oth jewelry causing external constriction, subs|Ring or oth jewelry causing external constriction, subs +C2904634|T037|PT|W49.04XD|ICD10CM|Ring or other jewelry causing external constriction, subsequent encounter|Ring or other jewelry causing external constriction, subsequent encounter +C2904635|T037|AB|W49.04XS|ICD10CM|Ring or other jewelry causing external constriction, sequela|Ring or other jewelry causing external constriction, sequela +C2904635|T037|PT|W49.04XS|ICD10CM|Ring or other jewelry causing external constriction, sequela|Ring or other jewelry causing external constriction, sequela +C2977293|T037|AB|W49.09|ICD10CM|Other specified item causing external constriction|Other specified item causing external constriction +C2977293|T037|HT|W49.09|ICD10CM|Other specified item causing external constriction|Other specified item causing external constriction +C2977294|T037|AB|W49.09XA|ICD10CM|Oth item causing external constriction, init encntr|Oth item causing external constriction, init encntr +C2977294|T037|PT|W49.09XA|ICD10CM|Other specified item causing external constriction, initial encounter|Other specified item causing external constriction, initial encounter +C2977295|T037|AB|W49.09XD|ICD10CM|Oth item causing external constriction, subs encntr|Oth item causing external constriction, subs encntr +C2977295|T037|PT|W49.09XD|ICD10CM|Other specified item causing external constriction, subsequent encounter|Other specified item causing external constriction, subsequent encounter +C2977296|T037|AB|W49.09XS|ICD10CM|Other specified item causing external constriction, sequela|Other specified item causing external constriction, sequela +C2977296|T037|PT|W49.09XS|ICD10CM|Other specified item causing external constriction, sequela|Other specified item causing external constriction, sequela +C2904640|T037|AB|W49.9|ICD10CM|Exposure to other inanimate mechanical forces|Exposure to other inanimate mechanical forces +C2904640|T037|HT|W49.9|ICD10CM|Exposure to other inanimate mechanical forces|Exposure to other inanimate mechanical forces +C2904641|T037|AB|W49.9XXA|ICD10CM|Exposure to other inanimate mechanical forces, init encntr|Exposure to other inanimate mechanical forces, init encntr +C2904641|T037|PT|W49.9XXA|ICD10CM|Exposure to other inanimate mechanical forces, initial encounter|Exposure to other inanimate mechanical forces, initial encounter +C2904642|T037|AB|W49.9XXD|ICD10CM|Exposure to other inanimate mechanical forces, subs encntr|Exposure to other inanimate mechanical forces, subs encntr +C2904642|T037|PT|W49.9XXD|ICD10CM|Exposure to other inanimate mechanical forces, subsequent encounter|Exposure to other inanimate mechanical forces, subsequent encounter +C2904643|T037|AB|W49.9XXS|ICD10CM|Exposure to other inanimate mechanical forces, sequela|Exposure to other inanimate mechanical forces, sequela +C2904643|T037|PT|W49.9XXS|ICD10CM|Exposure to other inanimate mechanical forces, sequela|Exposure to other inanimate mechanical forces, sequela +C2904644|T037|AB|W50|ICD10CM|Acc hit, strk, kick, twist, bite or scratch by another prsn|Acc hit, strk, kick, twist, bite or scratch by another prsn +C2904644|T037|HT|W50|ICD10CM|Accidental hit, strike, kick, twist, bite or scratch by another person|Accidental hit, strike, kick, twist, bite or scratch by another person +C0479163|T037|ET|W50|ICD10CM|hit, strike, kick, twist, bite, or scratch by another person NOS|hit, strike, kick, twist, bite, or scratch by another person NOS +C0479163|T037|PT|W50|ICD10|Hit, struck, kicked, twisted, bitten or scratched by another person|Hit, struck, kicked, twisted, bitten or scratched by another person +C0337266|T037|HT|W50-W64|ICD10CM|Exposure to animate mechanical forces (W50-W64)|Exposure to animate mechanical forces (W50-W64) +C0337266|T037|HT|W50-W64.9|ICD10|Exposure to animate mechanical forces|Exposure to animate mechanical forces +C2904646|T037|HT|W50.0|ICD10CM|Accidental hit or strike by another person|Accidental hit or strike by another person +C2904646|T037|AB|W50.0|ICD10CM|Accidental hit or strike by another person|Accidental hit or strike by another person +C2904645|T037|ET|W50.0|ICD10CM|Hit or strike by another person NOS|Hit or strike by another person NOS +C2904647|T037|AB|W50.0XXA|ICD10CM|Accidental hit or strike by another person, init encntr|Accidental hit or strike by another person, init encntr +C2904647|T037|PT|W50.0XXA|ICD10CM|Accidental hit or strike by another person, initial encounter|Accidental hit or strike by another person, initial encounter +C2904648|T037|AB|W50.0XXD|ICD10CM|Accidental hit or strike by another person, subs encntr|Accidental hit or strike by another person, subs encntr +C2904648|T037|PT|W50.0XXD|ICD10CM|Accidental hit or strike by another person, subsequent encounter|Accidental hit or strike by another person, subsequent encounter +C2904649|T037|AB|W50.0XXS|ICD10CM|Accidental hit or strike by another person, sequela|Accidental hit or strike by another person, sequela +C2904649|T037|PT|W50.0XXS|ICD10CM|Accidental hit or strike by another person, sequela|Accidental hit or strike by another person, sequela +C2904651|T037|HT|W50.1|ICD10CM|Accidental kick by another person|Accidental kick by another person +C2904651|T037|AB|W50.1|ICD10CM|Accidental kick by another person|Accidental kick by another person +C2904650|T037|ET|W50.1|ICD10CM|Kick by another person NOS|Kick by another person NOS +C2904652|T037|AB|W50.1XXA|ICD10CM|Accidental kick by another person, initial encounter|Accidental kick by another person, initial encounter +C2904652|T037|PT|W50.1XXA|ICD10CM|Accidental kick by another person, initial encounter|Accidental kick by another person, initial encounter +C2904653|T037|AB|W50.1XXD|ICD10CM|Accidental kick by another person, subsequent encounter|Accidental kick by another person, subsequent encounter +C2904653|T037|PT|W50.1XXD|ICD10CM|Accidental kick by another person, subsequent encounter|Accidental kick by another person, subsequent encounter +C2904654|T037|AB|W50.1XXS|ICD10CM|Accidental kick by another person, sequela|Accidental kick by another person, sequela +C2904654|T037|PT|W50.1XXS|ICD10CM|Accidental kick by another person, sequela|Accidental kick by another person, sequela +C2904656|T037|HT|W50.2|ICD10CM|Accidental twist by another person|Accidental twist by another person +C2904656|T037|AB|W50.2|ICD10CM|Accidental twist by another person|Accidental twist by another person +C2904655|T037|ET|W50.2|ICD10CM|Twist by another person NOS|Twist by another person NOS +C2904657|T037|AB|W50.2XXA|ICD10CM|Accidental twist by another person, initial encounter|Accidental twist by another person, initial encounter +C2904657|T037|PT|W50.2XXA|ICD10CM|Accidental twist by another person, initial encounter|Accidental twist by another person, initial encounter +C2904658|T037|AB|W50.2XXD|ICD10CM|Accidental twist by another person, subsequent encounter|Accidental twist by another person, subsequent encounter +C2904658|T037|PT|W50.2XXD|ICD10CM|Accidental twist by another person, subsequent encounter|Accidental twist by another person, subsequent encounter +C2904659|T037|AB|W50.2XXS|ICD10CM|Accidental twist by another person, sequela|Accidental twist by another person, sequela +C2904659|T037|PT|W50.2XXS|ICD10CM|Accidental twist by another person, sequela|Accidental twist by another person, sequela +C2904661|T037|HT|W50.3|ICD10CM|Accidental bite by another person|Accidental bite by another person +C2904661|T037|AB|W50.3|ICD10CM|Accidental bite by another person|Accidental bite by another person +C2904660|T037|ET|W50.3|ICD10CM|Bite by another person NOS|Bite by another person NOS +C0005660|T037|ET|W50.3|ICD10CM|Human bite|Human bite +C2904662|T037|AB|W50.3XXA|ICD10CM|Accidental bite by another person, initial encounter|Accidental bite by another person, initial encounter +C2904662|T037|PT|W50.3XXA|ICD10CM|Accidental bite by another person, initial encounter|Accidental bite by another person, initial encounter +C2904663|T037|AB|W50.3XXD|ICD10CM|Accidental bite by another person, subsequent encounter|Accidental bite by another person, subsequent encounter +C2904663|T037|PT|W50.3XXD|ICD10CM|Accidental bite by another person, subsequent encounter|Accidental bite by another person, subsequent encounter +C2904664|T037|AB|W50.3XXS|ICD10CM|Accidental bite by another person, sequela|Accidental bite by another person, sequela +C2904664|T037|PT|W50.3XXS|ICD10CM|Accidental bite by another person, sequela|Accidental bite by another person, sequela +C2904666|T037|HT|W50.4|ICD10CM|Accidental scratch by another person|Accidental scratch by another person +C2904666|T037|AB|W50.4|ICD10CM|Accidental scratch by another person|Accidental scratch by another person +C2904665|T037|ET|W50.4|ICD10CM|Scratch by another person NOS|Scratch by another person NOS +C2904667|T037|AB|W50.4XXA|ICD10CM|Accidental scratch by another person, initial encounter|Accidental scratch by another person, initial encounter +C2904667|T037|PT|W50.4XXA|ICD10CM|Accidental scratch by another person, initial encounter|Accidental scratch by another person, initial encounter +C2904668|T037|AB|W50.4XXD|ICD10CM|Accidental scratch by another person, subsequent encounter|Accidental scratch by another person, subsequent encounter +C2904668|T037|PT|W50.4XXD|ICD10CM|Accidental scratch by another person, subsequent encounter|Accidental scratch by another person, subsequent encounter +C2904669|T037|AB|W50.4XXS|ICD10CM|Accidental scratch by another person, sequela|Accidental scratch by another person, sequela +C2904669|T037|PT|W50.4XXS|ICD10CM|Accidental scratch by another person, sequela|Accidental scratch by another person, sequela +C2904670|T037|HT|W51|ICD10CM|Accidental striking against or bumped into by another person|Accidental striking against or bumped into by another person +C2904670|T037|AB|W51|ICD10CM|Accidental striking against or bumped into by another person|Accidental striking against or bumped into by another person +C0337268|T037|PT|W51|ICD10|Striking against or bumped into by another person|Striking against or bumped into by another person +C2904671|T037|AB|W51.XXXA|ICD10CM|Accidental strike or bumped into by another person, init|Accidental strike or bumped into by another person, init +C2904671|T037|PT|W51.XXXA|ICD10CM|Accidental striking against or bumped into by another person, initial encounter|Accidental striking against or bumped into by another person, initial encounter +C2904672|T037|AB|W51.XXXD|ICD10CM|Accidental strike or bumped into by another person, subs|Accidental strike or bumped into by another person, subs +C2904672|T037|PT|W51.XXXD|ICD10CM|Accidental striking against or bumped into by another person, subsequent encounter|Accidental striking against or bumped into by another person, subsequent encounter +C2904673|T037|AB|W51.XXXS|ICD10CM|Accidental strike or bumped into by another person, sequela|Accidental strike or bumped into by another person, sequela +C2904673|T037|PT|W51.XXXS|ICD10CM|Accidental striking against or bumped into by another person, sequela|Accidental striking against or bumped into by another person, sequela +C0479185|T037|PT|W52|ICD10|Crushed, pushed or stepped on by crowd or human stampede|Crushed, pushed or stepped on by crowd or human stampede +C0479185|T037|HT|W52|ICD10CM|Crushed, pushed or stepped on by crowd or human stampede|Crushed, pushed or stepped on by crowd or human stampede +C0479185|T037|AB|W52|ICD10CM|Crushed, pushed or stepped on by crowd or human stampede|Crushed, pushed or stepped on by crowd or human stampede +C2904674|T037|ET|W52|ICD10CM|Crushed, pushed or stepped on by crowd or human stampede with or without fall|Crushed, pushed or stepped on by crowd or human stampede with or without fall +C2904675|T037|AB|W52.XXXA|ICD10CM|Crushd/pushd/stepd on by crowd or human stampede, init|Crushd/pushd/stepd on by crowd or human stampede, init +C2904675|T037|PT|W52.XXXA|ICD10CM|Crushed, pushed or stepped on by crowd or human stampede, initial encounter|Crushed, pushed or stepped on by crowd or human stampede, initial encounter +C2904676|T037|AB|W52.XXXD|ICD10CM|Crushd/pushd/stepd on by crowd or human stampede, subs|Crushd/pushd/stepd on by crowd or human stampede, subs +C2904676|T037|PT|W52.XXXD|ICD10CM|Crushed, pushed or stepped on by crowd or human stampede, subsequent encounter|Crushed, pushed or stepped on by crowd or human stampede, subsequent encounter +C2904677|T037|AB|W52.XXXS|ICD10CM|Crushd/pushd/stepd on by crowd or human stampede, sequela|Crushd/pushd/stepd on by crowd or human stampede, sequela +C2904677|T037|PT|W52.XXXS|ICD10CM|Crushed, pushed or stepped on by crowd or human stampede, sequela|Crushed, pushed or stepped on by crowd or human stampede, sequela +C0479196|T037|PT|W53|ICD10|Bitten by rat|Bitten by rat +C2904679|T037|HT|W53|ICD10CM|Contact with rodent|Contact with rodent +C2904679|T037|AB|W53|ICD10CM|Contact with rodent|Contact with rodent +C4290477|T037|ET|W53|ICD10CM|contact with saliva, feces or urine of rodent|contact with saliva, feces or urine of rodent +C2904680|T037|AB|W53.0|ICD10CM|Contact with mouse|Contact with mouse +C2904680|T037|HT|W53.0|ICD10CM|Contact with mouse|Contact with mouse +C0417717|T037|AB|W53.01|ICD10CM|Bitten by mouse|Bitten by mouse +C0417717|T037|HT|W53.01|ICD10CM|Bitten by mouse|Bitten by mouse +C2904681|T037|AB|W53.01XA|ICD10CM|Bitten by mouse, initial encounter|Bitten by mouse, initial encounter +C2904681|T037|PT|W53.01XA|ICD10CM|Bitten by mouse, initial encounter|Bitten by mouse, initial encounter +C2904682|T037|AB|W53.01XD|ICD10CM|Bitten by mouse, subsequent encounter|Bitten by mouse, subsequent encounter +C2904682|T037|PT|W53.01XD|ICD10CM|Bitten by mouse, subsequent encounter|Bitten by mouse, subsequent encounter +C2904683|T037|AB|W53.01XS|ICD10CM|Bitten by mouse, sequela|Bitten by mouse, sequela +C2904683|T037|PT|W53.01XS|ICD10CM|Bitten by mouse, sequela|Bitten by mouse, sequela +C2904684|T037|AB|W53.09|ICD10CM|Other contact with mouse|Other contact with mouse +C2904684|T037|HT|W53.09|ICD10CM|Other contact with mouse|Other contact with mouse +C2904685|T037|AB|W53.09XA|ICD10CM|Other contact with mouse, initial encounter|Other contact with mouse, initial encounter +C2904685|T037|PT|W53.09XA|ICD10CM|Other contact with mouse, initial encounter|Other contact with mouse, initial encounter +C2904686|T037|AB|W53.09XD|ICD10CM|Other contact with mouse, subsequent encounter|Other contact with mouse, subsequent encounter +C2904686|T037|PT|W53.09XD|ICD10CM|Other contact with mouse, subsequent encounter|Other contact with mouse, subsequent encounter +C2904687|T037|AB|W53.09XS|ICD10CM|Other contact with mouse, sequela|Other contact with mouse, sequela +C2904687|T037|PT|W53.09XS|ICD10CM|Other contact with mouse, sequela|Other contact with mouse, sequela +C2904691|T037|AB|W53.1|ICD10CM|Contact with rat|Contact with rat +C2904691|T037|HT|W53.1|ICD10CM|Contact with rat|Contact with rat +C0479196|T037|HT|W53.11|ICD10CM|Bitten by rat|Bitten by rat +C0479196|T037|AB|W53.11|ICD10CM|Bitten by rat|Bitten by rat +C2904688|T037|AB|W53.11XA|ICD10CM|Bitten by rat, initial encounter|Bitten by rat, initial encounter +C2904688|T037|PT|W53.11XA|ICD10CM|Bitten by rat, initial encounter|Bitten by rat, initial encounter +C2904689|T037|AB|W53.11XD|ICD10CM|Bitten by rat, subsequent encounter|Bitten by rat, subsequent encounter +C2904689|T037|PT|W53.11XD|ICD10CM|Bitten by rat, subsequent encounter|Bitten by rat, subsequent encounter +C2904690|T037|AB|W53.11XS|ICD10CM|Bitten by rat, sequela|Bitten by rat, sequela +C2904690|T037|PT|W53.11XS|ICD10CM|Bitten by rat, sequela|Bitten by rat, sequela +C2904691|T037|AB|W53.19|ICD10CM|Other contact with rat|Other contact with rat +C2904691|T037|HT|W53.19|ICD10CM|Other contact with rat|Other contact with rat +C2904692|T037|AB|W53.19XA|ICD10CM|Other contact with rat, initial encounter|Other contact with rat, initial encounter +C2904692|T037|PT|W53.19XA|ICD10CM|Other contact with rat, initial encounter|Other contact with rat, initial encounter +C2904693|T037|AB|W53.19XD|ICD10CM|Other contact with rat, subsequent encounter|Other contact with rat, subsequent encounter +C2904693|T037|PT|W53.19XD|ICD10CM|Other contact with rat, subsequent encounter|Other contact with rat, subsequent encounter +C2904694|T037|AB|W53.19XS|ICD10CM|Other contact with rat, sequela|Other contact with rat, sequela +C2904694|T037|PT|W53.19XS|ICD10CM|Other contact with rat, sequela|Other contact with rat, sequela +C2904695|T037|HT|W53.2|ICD10CM|Contact with squirrel|Contact with squirrel +C2904695|T037|AB|W53.2|ICD10CM|Contact with squirrel|Contact with squirrel +C0561648|T037|AB|W53.21|ICD10CM|Bitten by squirrel|Bitten by squirrel +C0561648|T037|HT|W53.21|ICD10CM|Bitten by squirrel|Bitten by squirrel +C2904696|T037|AB|W53.21XA|ICD10CM|Bitten by squirrel, initial encounter|Bitten by squirrel, initial encounter +C2904696|T037|PT|W53.21XA|ICD10CM|Bitten by squirrel, initial encounter|Bitten by squirrel, initial encounter +C2904697|T037|AB|W53.21XD|ICD10CM|Bitten by squirrel, subsequent encounter|Bitten by squirrel, subsequent encounter +C2904697|T037|PT|W53.21XD|ICD10CM|Bitten by squirrel, subsequent encounter|Bitten by squirrel, subsequent encounter +C2904698|T037|AB|W53.21XS|ICD10CM|Bitten by squirrel, sequela|Bitten by squirrel, sequela +C2904698|T037|PT|W53.21XS|ICD10CM|Bitten by squirrel, sequela|Bitten by squirrel, sequela +C2904699|T037|AB|W53.29|ICD10CM|Other contact with squirrel|Other contact with squirrel +C2904699|T037|HT|W53.29|ICD10CM|Other contact with squirrel|Other contact with squirrel +C2904700|T037|AB|W53.29XA|ICD10CM|Other contact with squirrel, initial encounter|Other contact with squirrel, initial encounter +C2904700|T037|PT|W53.29XA|ICD10CM|Other contact with squirrel, initial encounter|Other contact with squirrel, initial encounter +C2904701|T037|AB|W53.29XD|ICD10CM|Other contact with squirrel, subsequent encounter|Other contact with squirrel, subsequent encounter +C2904701|T037|PT|W53.29XD|ICD10CM|Other contact with squirrel, subsequent encounter|Other contact with squirrel, subsequent encounter +C2904702|T037|AB|W53.29XS|ICD10CM|Other contact with squirrel, sequela|Other contact with squirrel, sequela +C2904702|T037|PT|W53.29XS|ICD10CM|Other contact with squirrel, sequela|Other contact with squirrel, sequela +C2904703|T037|HT|W53.8|ICD10CM|Contact with other rodent|Contact with other rodent +C2904703|T037|AB|W53.8|ICD10CM|Contact with other rodent|Contact with other rodent +C2904704|T037|AB|W53.81|ICD10CM|Bitten by other rodent|Bitten by other rodent +C2904704|T037|HT|W53.81|ICD10CM|Bitten by other rodent|Bitten by other rodent +C2904705|T037|AB|W53.81XA|ICD10CM|Bitten by other rodent, initial encounter|Bitten by other rodent, initial encounter +C2904705|T037|PT|W53.81XA|ICD10CM|Bitten by other rodent, initial encounter|Bitten by other rodent, initial encounter +C2904706|T037|AB|W53.81XD|ICD10CM|Bitten by other rodent, subsequent encounter|Bitten by other rodent, subsequent encounter +C2904706|T037|PT|W53.81XD|ICD10CM|Bitten by other rodent, subsequent encounter|Bitten by other rodent, subsequent encounter +C2904707|T037|AB|W53.81XS|ICD10CM|Bitten by other rodent, sequela|Bitten by other rodent, sequela +C2904707|T037|PT|W53.81XS|ICD10CM|Bitten by other rodent, sequela|Bitten by other rodent, sequela +C2904708|T037|AB|W53.89|ICD10CM|Other contact with other rodent|Other contact with other rodent +C2904708|T037|HT|W53.89|ICD10CM|Other contact with other rodent|Other contact with other rodent +C2904709|T037|AB|W53.89XA|ICD10CM|Other contact with other rodent, initial encounter|Other contact with other rodent, initial encounter +C2904709|T037|PT|W53.89XA|ICD10CM|Other contact with other rodent, initial encounter|Other contact with other rodent, initial encounter +C2904710|T037|AB|W53.89XD|ICD10CM|Other contact with other rodent, subsequent encounter|Other contact with other rodent, subsequent encounter +C2904710|T037|PT|W53.89XD|ICD10CM|Other contact with other rodent, subsequent encounter|Other contact with other rodent, subsequent encounter +C2904711|T037|AB|W53.89XS|ICD10CM|Other contact with other rodent, sequela|Other contact with other rodent, sequela +C2904711|T037|PT|W53.89XS|ICD10CM|Other contact with other rodent, sequela|Other contact with other rodent, sequela +C0479207|T037|PT|W54|ICD10|Bitten or struck by dog|Bitten or struck by dog +C2904713|T037|AB|W54|ICD10CM|Contact with dog|Contact with dog +C2904713|T037|HT|W54|ICD10CM|Contact with dog|Contact with dog +C4290478|T037|ET|W54|ICD10CM|contact with saliva, feces or urine of dog|contact with saliva, feces or urine of dog +C0259797|T037|AB|W54.0|ICD10CM|Bitten by dog|Bitten by dog +C0259797|T037|HT|W54.0|ICD10CM|Bitten by dog|Bitten by dog +C2904714|T037|PT|W54.0XXA|ICD10CM|Bitten by dog, initial encounter|Bitten by dog, initial encounter +C2904714|T037|AB|W54.0XXA|ICD10CM|Bitten by dog, initial encounter|Bitten by dog, initial encounter +C2904715|T037|PT|W54.0XXD|ICD10CM|Bitten by dog, subsequent encounter|Bitten by dog, subsequent encounter +C2904715|T037|AB|W54.0XXD|ICD10CM|Bitten by dog, subsequent encounter|Bitten by dog, subsequent encounter +C2904716|T037|PT|W54.0XXS|ICD10CM|Bitten by dog, sequela|Bitten by dog, sequela +C2904716|T037|AB|W54.0XXS|ICD10CM|Bitten by dog, sequela|Bitten by dog, sequela +C2904717|T037|ET|W54.1|ICD10CM|Knocked over by dog|Knocked over by dog +C2904718|T037|HT|W54.1|ICD10CM|Struck by dog|Struck by dog +C2904718|T037|AB|W54.1|ICD10CM|Struck by dog|Struck by dog +C2904719|T037|PT|W54.1XXA|ICD10CM|Struck by dog, initial encounter|Struck by dog, initial encounter +C2904719|T037|AB|W54.1XXA|ICD10CM|Struck by dog, initial encounter|Struck by dog, initial encounter +C2904720|T037|PT|W54.1XXD|ICD10CM|Struck by dog, subsequent encounter|Struck by dog, subsequent encounter +C2904720|T037|AB|W54.1XXD|ICD10CM|Struck by dog, subsequent encounter|Struck by dog, subsequent encounter +C2904721|T037|PT|W54.1XXS|ICD10CM|Struck by dog, sequela|Struck by dog, sequela +C2904721|T037|AB|W54.1XXS|ICD10CM|Struck by dog, sequela|Struck by dog, sequela +C2904722|T037|AB|W54.8|ICD10CM|Other contact with dog|Other contact with dog +C2904722|T037|HT|W54.8|ICD10CM|Other contact with dog|Other contact with dog +C2904723|T037|AB|W54.8XXA|ICD10CM|Other contact with dog, initial encounter|Other contact with dog, initial encounter +C2904723|T037|PT|W54.8XXA|ICD10CM|Other contact with dog, initial encounter|Other contact with dog, initial encounter +C2904724|T037|AB|W54.8XXD|ICD10CM|Other contact with dog, subsequent encounter|Other contact with dog, subsequent encounter +C2904724|T037|PT|W54.8XXD|ICD10CM|Other contact with dog, subsequent encounter|Other contact with dog, subsequent encounter +C2904725|T037|AB|W54.8XXS|ICD10CM|Other contact with dog, sequela|Other contact with dog, sequela +C2904725|T037|PT|W54.8XXS|ICD10CM|Other contact with dog, sequela|Other contact with dog, sequela +C0496502|T037|PT|W55|ICD10|Bitten or struck by other mammals|Bitten or struck by other mammals +C2904800|T037|AB|W55|ICD10CM|Contact with other mammals|Contact with other mammals +C2904800|T037|HT|W55|ICD10CM|Contact with other mammals|Contact with other mammals +C4290479|T037|ET|W55|ICD10CM|contact with saliva, feces or urine of mammal|contact with saliva, feces or urine of mammal +C2904727|T037|AB|W55.0|ICD10CM|Contact with cat|Contact with cat +C2904727|T037|HT|W55.0|ICD10CM|Contact with cat|Contact with cat +C0417713|T037|AB|W55.01|ICD10CM|Bitten by cat|Bitten by cat +C0417713|T037|HT|W55.01|ICD10CM|Bitten by cat|Bitten by cat +C2904728|T037|PT|W55.01XA|ICD10CM|Bitten by cat, initial encounter|Bitten by cat, initial encounter +C2904728|T037|AB|W55.01XA|ICD10CM|Bitten by cat, initial encounter|Bitten by cat, initial encounter +C2904729|T037|PT|W55.01XD|ICD10CM|Bitten by cat, subsequent encounter|Bitten by cat, subsequent encounter +C2904729|T037|AB|W55.01XD|ICD10CM|Bitten by cat, subsequent encounter|Bitten by cat, subsequent encounter +C2904730|T037|PT|W55.01XS|ICD10CM|Bitten by cat, sequela|Bitten by cat, sequela +C2904730|T037|AB|W55.01XS|ICD10CM|Bitten by cat, sequela|Bitten by cat, sequela +C0238909|T037|AB|W55.03|ICD10CM|Scratched by cat|Scratched by cat +C0238909|T037|HT|W55.03|ICD10CM|Scratched by cat|Scratched by cat +C2904731|T037|PT|W55.03XA|ICD10CM|Scratched by cat, initial encounter|Scratched by cat, initial encounter +C2904731|T037|AB|W55.03XA|ICD10CM|Scratched by cat, initial encounter|Scratched by cat, initial encounter +C2904732|T037|PT|W55.03XD|ICD10CM|Scratched by cat, subsequent encounter|Scratched by cat, subsequent encounter +C2904732|T037|AB|W55.03XD|ICD10CM|Scratched by cat, subsequent encounter|Scratched by cat, subsequent encounter +C2904733|T037|PT|W55.03XS|ICD10CM|Scratched by cat, sequela|Scratched by cat, sequela +C2904733|T037|AB|W55.03XS|ICD10CM|Scratched by cat, sequela|Scratched by cat, sequela +C2904734|T037|AB|W55.09|ICD10CM|Other contact with cat|Other contact with cat +C2904734|T037|HT|W55.09|ICD10CM|Other contact with cat|Other contact with cat +C2904735|T037|AB|W55.09XA|ICD10CM|Other contact with cat, initial encounter|Other contact with cat, initial encounter +C2904735|T037|PT|W55.09XA|ICD10CM|Other contact with cat, initial encounter|Other contact with cat, initial encounter +C2904736|T037|AB|W55.09XD|ICD10CM|Other contact with cat, subsequent encounter|Other contact with cat, subsequent encounter +C2904736|T037|PT|W55.09XD|ICD10CM|Other contact with cat, subsequent encounter|Other contact with cat, subsequent encounter +C2904737|T037|AB|W55.09XS|ICD10CM|Other contact with cat, sequela|Other contact with cat, sequela +C2904737|T037|PT|W55.09XS|ICD10CM|Other contact with cat, sequela|Other contact with cat, sequela +C2911668|T037|AB|W55.1|ICD10CM|Contact with horse|Contact with horse +C2911668|T037|HT|W55.1|ICD10CM|Contact with horse|Contact with horse +C0417721|T037|AB|W55.11|ICD10CM|Bitten by horse|Bitten by horse +C0417721|T037|HT|W55.11|ICD10CM|Bitten by horse|Bitten by horse +C2904738|T037|PT|W55.11XA|ICD10CM|Bitten by horse, initial encounter|Bitten by horse, initial encounter +C2904738|T037|AB|W55.11XA|ICD10CM|Bitten by horse, initial encounter|Bitten by horse, initial encounter +C2904739|T037|PT|W55.11XD|ICD10CM|Bitten by horse, subsequent encounter|Bitten by horse, subsequent encounter +C2904739|T037|AB|W55.11XD|ICD10CM|Bitten by horse, subsequent encounter|Bitten by horse, subsequent encounter +C2904740|T037|PT|W55.11XS|ICD10CM|Bitten by horse, sequela|Bitten by horse, sequela +C2904740|T037|AB|W55.11XS|ICD10CM|Bitten by horse, sequela|Bitten by horse, sequela +C2904741|T037|AB|W55.12|ICD10CM|Struck by horse|Struck by horse +C2904741|T037|HT|W55.12|ICD10CM|Struck by horse|Struck by horse +C2904742|T037|PT|W55.12XA|ICD10CM|Struck by horse, initial encounter|Struck by horse, initial encounter +C2904742|T037|AB|W55.12XA|ICD10CM|Struck by horse, initial encounter|Struck by horse, initial encounter +C2904743|T037|PT|W55.12XD|ICD10CM|Struck by horse, subsequent encounter|Struck by horse, subsequent encounter +C2904743|T037|AB|W55.12XD|ICD10CM|Struck by horse, subsequent encounter|Struck by horse, subsequent encounter +C2904744|T037|PT|W55.12XS|ICD10CM|Struck by horse, sequela|Struck by horse, sequela +C2904744|T037|AB|W55.12XS|ICD10CM|Struck by horse, sequela|Struck by horse, sequela +C2904745|T037|AB|W55.19|ICD10CM|Other contact with horse|Other contact with horse +C2904745|T037|HT|W55.19|ICD10CM|Other contact with horse|Other contact with horse +C2904746|T037|AB|W55.19XA|ICD10CM|Other contact with horse, initial encounter|Other contact with horse, initial encounter +C2904746|T037|PT|W55.19XA|ICD10CM|Other contact with horse, initial encounter|Other contact with horse, initial encounter +C2904747|T037|AB|W55.19XD|ICD10CM|Other contact with horse, subsequent encounter|Other contact with horse, subsequent encounter +C2904747|T037|PT|W55.19XD|ICD10CM|Other contact with horse, subsequent encounter|Other contact with horse, subsequent encounter +C2904748|T037|AB|W55.19XS|ICD10CM|Other contact with horse, sequela|Other contact with horse, sequela +C2904748|T037|PT|W55.19XS|ICD10CM|Other contact with horse, sequela|Other contact with horse, sequela +C2904749|T037|ET|W55.2|ICD10CM|Contact with bull|Contact with bull +C2904750|T037|AB|W55.2|ICD10CM|Contact with cow|Contact with cow +C2904750|T037|HT|W55.2|ICD10CM|Contact with cow|Contact with cow +C2911669|T037|AB|W55.21|ICD10CM|Bitten by cow|Bitten by cow +C2911669|T037|HT|W55.21|ICD10CM|Bitten by cow|Bitten by cow +C2904751|T037|PT|W55.21XA|ICD10CM|Bitten by cow, initial encounter|Bitten by cow, initial encounter +C2904751|T037|AB|W55.21XA|ICD10CM|Bitten by cow, initial encounter|Bitten by cow, initial encounter +C2904752|T037|PT|W55.21XD|ICD10CM|Bitten by cow, subsequent encounter|Bitten by cow, subsequent encounter +C2904752|T037|AB|W55.21XD|ICD10CM|Bitten by cow, subsequent encounter|Bitten by cow, subsequent encounter +C2904753|T037|PT|W55.21XS|ICD10CM|Bitten by cow, sequela|Bitten by cow, sequela +C2904753|T037|AB|W55.21XS|ICD10CM|Bitten by cow, sequela|Bitten by cow, sequela +C2904754|T037|ET|W55.22|ICD10CM|Gored by bull|Gored by bull +C2904755|T037|AB|W55.22|ICD10CM|Struck by cow|Struck by cow +C2904755|T037|HT|W55.22|ICD10CM|Struck by cow|Struck by cow +C2904756|T037|PT|W55.22XA|ICD10CM|Struck by cow, initial encounter|Struck by cow, initial encounter +C2904756|T037|AB|W55.22XA|ICD10CM|Struck by cow, initial encounter|Struck by cow, initial encounter +C2904757|T037|PT|W55.22XD|ICD10CM|Struck by cow, subsequent encounter|Struck by cow, subsequent encounter +C2904757|T037|AB|W55.22XD|ICD10CM|Struck by cow, subsequent encounter|Struck by cow, subsequent encounter +C2904758|T037|PT|W55.22XS|ICD10CM|Struck by cow, sequela|Struck by cow, sequela +C2904758|T037|AB|W55.22XS|ICD10CM|Struck by cow, sequela|Struck by cow, sequela +C2904759|T037|AB|W55.29|ICD10CM|Other contact with cow|Other contact with cow +C2904759|T037|HT|W55.29|ICD10CM|Other contact with cow|Other contact with cow +C2904760|T037|AB|W55.29XA|ICD10CM|Other contact with cow, initial encounter|Other contact with cow, initial encounter +C2904760|T037|PT|W55.29XA|ICD10CM|Other contact with cow, initial encounter|Other contact with cow, initial encounter +C2904761|T037|AB|W55.29XD|ICD10CM|Other contact with cow, subsequent encounter|Other contact with cow, subsequent encounter +C2904761|T037|PT|W55.29XD|ICD10CM|Other contact with cow, subsequent encounter|Other contact with cow, subsequent encounter +C2904762|T037|AB|W55.29XS|ICD10CM|Other contact with cow, sequela|Other contact with cow, sequela +C2904762|T037|PT|W55.29XS|ICD10CM|Other contact with cow, sequela|Other contact with cow, sequela +C2919135|T037|ET|W55.3|ICD10CM|Contact with goats|Contact with goats +C2904763|T037|AB|W55.3|ICD10CM|Contact with other hoof stock|Contact with other hoof stock +C2904763|T037|HT|W55.3|ICD10CM|Contact with other hoof stock|Contact with other hoof stock +C2919136|T037|ET|W55.3|ICD10CM|Contact with sheep|Contact with sheep +C2904764|T037|AB|W55.31|ICD10CM|Bitten by other hoof stock|Bitten by other hoof stock +C2904764|T037|HT|W55.31|ICD10CM|Bitten by other hoof stock|Bitten by other hoof stock +C2904765|T037|PT|W55.31XA|ICD10CM|Bitten by other hoof stock, initial encounter|Bitten by other hoof stock, initial encounter +C2904765|T037|AB|W55.31XA|ICD10CM|Bitten by other hoof stock, initial encounter|Bitten by other hoof stock, initial encounter +C2904766|T037|PT|W55.31XD|ICD10CM|Bitten by other hoof stock, subsequent encounter|Bitten by other hoof stock, subsequent encounter +C2904766|T037|AB|W55.31XD|ICD10CM|Bitten by other hoof stock, subsequent encounter|Bitten by other hoof stock, subsequent encounter +C2904767|T037|PT|W55.31XS|ICD10CM|Bitten by other hoof stock, sequela|Bitten by other hoof stock, sequela +C2904767|T037|AB|W55.31XS|ICD10CM|Bitten by other hoof stock, sequela|Bitten by other hoof stock, sequela +C2904768|T037|ET|W55.32|ICD10CM|Gored by goat|Gored by goat +C2904769|T037|ET|W55.32|ICD10CM|Gored by ram|Gored by ram +C2904770|T037|AB|W55.32|ICD10CM|Struck by other hoof stock|Struck by other hoof stock +C2904770|T037|HT|W55.32|ICD10CM|Struck by other hoof stock|Struck by other hoof stock +C2904771|T037|PT|W55.32XA|ICD10CM|Struck by other hoof stock, initial encounter|Struck by other hoof stock, initial encounter +C2904771|T037|AB|W55.32XA|ICD10CM|Struck by other hoof stock, initial encounter|Struck by other hoof stock, initial encounter +C2904772|T037|PT|W55.32XD|ICD10CM|Struck by other hoof stock, subsequent encounter|Struck by other hoof stock, subsequent encounter +C2904772|T037|AB|W55.32XD|ICD10CM|Struck by other hoof stock, subsequent encounter|Struck by other hoof stock, subsequent encounter +C2904773|T037|PT|W55.32XS|ICD10CM|Struck by other hoof stock, sequela|Struck by other hoof stock, sequela +C2904773|T037|AB|W55.32XS|ICD10CM|Struck by other hoof stock, sequela|Struck by other hoof stock, sequela +C2904774|T037|AB|W55.39|ICD10CM|Other contact with other hoof stock|Other contact with other hoof stock +C2904774|T037|HT|W55.39|ICD10CM|Other contact with other hoof stock|Other contact with other hoof stock +C2904775|T037|AB|W55.39XA|ICD10CM|Other contact with other hoof stock, initial encounter|Other contact with other hoof stock, initial encounter +C2904775|T037|PT|W55.39XA|ICD10CM|Other contact with other hoof stock, initial encounter|Other contact with other hoof stock, initial encounter +C2904776|T037|AB|W55.39XD|ICD10CM|Other contact with other hoof stock, subsequent encounter|Other contact with other hoof stock, subsequent encounter +C2904776|T037|PT|W55.39XD|ICD10CM|Other contact with other hoof stock, subsequent encounter|Other contact with other hoof stock, subsequent encounter +C2904777|T037|AB|W55.39XS|ICD10CM|Other contact with other hoof stock, sequela|Other contact with other hoof stock, sequela +C2904777|T037|PT|W55.39XS|ICD10CM|Other contact with other hoof stock, sequela|Other contact with other hoof stock, sequela +C2911670|T037|AB|W55.4|ICD10CM|Contact with pig|Contact with pig +C2911670|T037|HT|W55.4|ICD10CM|Contact with pig|Contact with pig +C0417720|T037|AB|W55.41|ICD10CM|Bitten by pig|Bitten by pig +C0417720|T037|HT|W55.41|ICD10CM|Bitten by pig|Bitten by pig +C2904778|T037|PT|W55.41XA|ICD10CM|Bitten by pig, initial encounter|Bitten by pig, initial encounter +C2904778|T037|AB|W55.41XA|ICD10CM|Bitten by pig, initial encounter|Bitten by pig, initial encounter +C2904779|T037|PT|W55.41XD|ICD10CM|Bitten by pig, subsequent encounter|Bitten by pig, subsequent encounter +C2904779|T037|AB|W55.41XD|ICD10CM|Bitten by pig, subsequent encounter|Bitten by pig, subsequent encounter +C2904780|T037|PT|W55.41XS|ICD10CM|Bitten by pig, sequela|Bitten by pig, sequela +C2904780|T037|AB|W55.41XS|ICD10CM|Bitten by pig, sequela|Bitten by pig, sequela +C2904781|T037|AB|W55.42|ICD10CM|Struck by pig|Struck by pig +C2904781|T037|HT|W55.42|ICD10CM|Struck by pig|Struck by pig +C2904782|T037|PT|W55.42XA|ICD10CM|Struck by pig, initial encounter|Struck by pig, initial encounter +C2904782|T037|AB|W55.42XA|ICD10CM|Struck by pig, initial encounter|Struck by pig, initial encounter +C2904783|T037|PT|W55.42XD|ICD10CM|Struck by pig, subsequent encounter|Struck by pig, subsequent encounter +C2904783|T037|AB|W55.42XD|ICD10CM|Struck by pig, subsequent encounter|Struck by pig, subsequent encounter +C2904784|T037|PT|W55.42XS|ICD10CM|Struck by pig, sequela|Struck by pig, sequela +C2904784|T037|AB|W55.42XS|ICD10CM|Struck by pig, sequela|Struck by pig, sequela +C2904785|T037|AB|W55.49|ICD10CM|Other contact with pig|Other contact with pig +C2904785|T037|HT|W55.49|ICD10CM|Other contact with pig|Other contact with pig +C2904786|T037|AB|W55.49XA|ICD10CM|Other contact with pig, initial encounter|Other contact with pig, initial encounter +C2904786|T037|PT|W55.49XA|ICD10CM|Other contact with pig, initial encounter|Other contact with pig, initial encounter +C2904787|T037|AB|W55.49XD|ICD10CM|Other contact with pig, subsequent encounter|Other contact with pig, subsequent encounter +C2904787|T037|PT|W55.49XD|ICD10CM|Other contact with pig, subsequent encounter|Other contact with pig, subsequent encounter +C2904788|T037|AB|W55.49XS|ICD10CM|Other contact with pig, sequela|Other contact with pig, sequela +C2904788|T037|PT|W55.49XS|ICD10CM|Other contact with pig, sequela|Other contact with pig, sequela +C2911672|T037|AB|W55.5|ICD10CM|Contact with raccoon|Contact with raccoon +C2911672|T037|HT|W55.5|ICD10CM|Contact with raccoon|Contact with raccoon +C2911671|T037|AB|W55.51|ICD10CM|Bitten by raccoon|Bitten by raccoon +C2911671|T037|HT|W55.51|ICD10CM|Bitten by raccoon|Bitten by raccoon +C2904789|T037|PT|W55.51XA|ICD10CM|Bitten by raccoon, initial encounter|Bitten by raccoon, initial encounter +C2904789|T037|AB|W55.51XA|ICD10CM|Bitten by raccoon, initial encounter|Bitten by raccoon, initial encounter +C2904790|T037|PT|W55.51XD|ICD10CM|Bitten by raccoon, subsequent encounter|Bitten by raccoon, subsequent encounter +C2904790|T037|AB|W55.51XD|ICD10CM|Bitten by raccoon, subsequent encounter|Bitten by raccoon, subsequent encounter +C2904791|T037|PT|W55.51XS|ICD10CM|Bitten by raccoon, sequela|Bitten by raccoon, sequela +C2904791|T037|AB|W55.51XS|ICD10CM|Bitten by raccoon, sequela|Bitten by raccoon, sequela +C2904792|T037|AB|W55.52|ICD10CM|Struck by raccoon|Struck by raccoon +C2904792|T037|HT|W55.52|ICD10CM|Struck by raccoon|Struck by raccoon +C2904793|T037|PT|W55.52XA|ICD10CM|Struck by raccoon, initial encounter|Struck by raccoon, initial encounter +C2904793|T037|AB|W55.52XA|ICD10CM|Struck by raccoon, initial encounter|Struck by raccoon, initial encounter +C2904794|T037|PT|W55.52XD|ICD10CM|Struck by raccoon, subsequent encounter|Struck by raccoon, subsequent encounter +C2904794|T037|AB|W55.52XD|ICD10CM|Struck by raccoon, subsequent encounter|Struck by raccoon, subsequent encounter +C2904795|T037|PT|W55.52XS|ICD10CM|Struck by raccoon, sequela|Struck by raccoon, sequela +C2904795|T037|AB|W55.52XS|ICD10CM|Struck by raccoon, sequela|Struck by raccoon, sequela +C2904796|T037|AB|W55.59|ICD10CM|Other contact with raccoon|Other contact with raccoon +C2904796|T037|HT|W55.59|ICD10CM|Other contact with raccoon|Other contact with raccoon +C2904797|T037|AB|W55.59XA|ICD10CM|Other contact with raccoon, initial encounter|Other contact with raccoon, initial encounter +C2904797|T037|PT|W55.59XA|ICD10CM|Other contact with raccoon, initial encounter|Other contact with raccoon, initial encounter +C2904798|T037|AB|W55.59XD|ICD10CM|Other contact with raccoon, subsequent encounter|Other contact with raccoon, subsequent encounter +C2904798|T037|PT|W55.59XD|ICD10CM|Other contact with raccoon, subsequent encounter|Other contact with raccoon, subsequent encounter +C2904799|T037|AB|W55.59XS|ICD10CM|Other contact with raccoon, sequela|Other contact with raccoon, sequela +C2904799|T037|PT|W55.59XS|ICD10CM|Other contact with raccoon, sequela|Other contact with raccoon, sequela +C2904800|T037|HT|W55.8|ICD10CM|Contact with other mammals|Contact with other mammals +C2904800|T037|AB|W55.8|ICD10CM|Contact with other mammals|Contact with other mammals +C2904801|T037|AB|W55.81|ICD10CM|Bitten by other mammals|Bitten by other mammals +C2904801|T037|HT|W55.81|ICD10CM|Bitten by other mammals|Bitten by other mammals +C2904802|T037|PT|W55.81XA|ICD10CM|Bitten by other mammals, initial encounter|Bitten by other mammals, initial encounter +C2904802|T037|AB|W55.81XA|ICD10CM|Bitten by other mammals, initial encounter|Bitten by other mammals, initial encounter +C2904803|T037|PT|W55.81XD|ICD10CM|Bitten by other mammals, subsequent encounter|Bitten by other mammals, subsequent encounter +C2904803|T037|AB|W55.81XD|ICD10CM|Bitten by other mammals, subsequent encounter|Bitten by other mammals, subsequent encounter +C2904804|T037|PT|W55.81XS|ICD10CM|Bitten by other mammals, sequela|Bitten by other mammals, sequela +C2904804|T037|AB|W55.81XS|ICD10CM|Bitten by other mammals, sequela|Bitten by other mammals, sequela +C2904805|T037|AB|W55.82|ICD10CM|Struck by other mammals|Struck by other mammals +C2904805|T037|HT|W55.82|ICD10CM|Struck by other mammals|Struck by other mammals +C2904806|T037|PT|W55.82XA|ICD10CM|Struck by other mammals, initial encounter|Struck by other mammals, initial encounter +C2904806|T037|AB|W55.82XA|ICD10CM|Struck by other mammals, initial encounter|Struck by other mammals, initial encounter +C2904807|T037|PT|W55.82XD|ICD10CM|Struck by other mammals, subsequent encounter|Struck by other mammals, subsequent encounter +C2904807|T037|AB|W55.82XD|ICD10CM|Struck by other mammals, subsequent encounter|Struck by other mammals, subsequent encounter +C2904808|T037|PT|W55.82XS|ICD10CM|Struck by other mammals, sequela|Struck by other mammals, sequela +C2904808|T037|AB|W55.82XS|ICD10CM|Struck by other mammals, sequela|Struck by other mammals, sequela +C2904809|T037|AB|W55.89|ICD10CM|Other contact with other mammals|Other contact with other mammals +C2904809|T037|HT|W55.89|ICD10CM|Other contact with other mammals|Other contact with other mammals +C2904810|T037|AB|W55.89XA|ICD10CM|Other contact with other mammals, initial encounter|Other contact with other mammals, initial encounter +C2904810|T037|PT|W55.89XA|ICD10CM|Other contact with other mammals, initial encounter|Other contact with other mammals, initial encounter +C2904811|T037|AB|W55.89XD|ICD10CM|Other contact with other mammals, subsequent encounter|Other contact with other mammals, subsequent encounter +C2904811|T037|PT|W55.89XD|ICD10CM|Other contact with other mammals, subsequent encounter|Other contact with other mammals, subsequent encounter +C2904812|T037|AB|W55.89XS|ICD10CM|Other contact with other mammals, sequela|Other contact with other mammals, sequela +C2904812|T037|PT|W55.89XS|ICD10CM|Other contact with other mammals, sequela|Other contact with other mammals, sequela +C0337271|T037|PT|W56|ICD10|Contact with marine animal|Contact with marine animal +C2904813|T037|HT|W56|ICD10CM|Contact with nonvenomous marine animal|Contact with nonvenomous marine animal +C2904813|T037|AB|W56|ICD10CM|Contact with nonvenomous marine animal|Contact with nonvenomous marine animal +C2904814|T037|HT|W56.0|ICD10CM|Contact with dolphin|Contact with dolphin +C2904814|T037|AB|W56.0|ICD10CM|Contact with dolphin|Contact with dolphin +C2904815|T037|AB|W56.01|ICD10CM|Bitten by dolphin|Bitten by dolphin +C2904815|T037|HT|W56.01|ICD10CM|Bitten by dolphin|Bitten by dolphin +C2904816|T037|PT|W56.01XA|ICD10CM|Bitten by dolphin, initial encounter|Bitten by dolphin, initial encounter +C2904816|T037|AB|W56.01XA|ICD10CM|Bitten by dolphin, initial encounter|Bitten by dolphin, initial encounter +C2904817|T037|PT|W56.01XD|ICD10CM|Bitten by dolphin, subsequent encounter|Bitten by dolphin, subsequent encounter +C2904817|T037|AB|W56.01XD|ICD10CM|Bitten by dolphin, subsequent encounter|Bitten by dolphin, subsequent encounter +C2904818|T037|PT|W56.01XS|ICD10CM|Bitten by dolphin, sequela|Bitten by dolphin, sequela +C2904818|T037|AB|W56.01XS|ICD10CM|Bitten by dolphin, sequela|Bitten by dolphin, sequela +C2904819|T037|AB|W56.02|ICD10CM|Struck by dolphin|Struck by dolphin +C2904819|T037|HT|W56.02|ICD10CM|Struck by dolphin|Struck by dolphin +C2904820|T037|PT|W56.02XA|ICD10CM|Struck by dolphin, initial encounter|Struck by dolphin, initial encounter +C2904820|T037|AB|W56.02XA|ICD10CM|Struck by dolphin, initial encounter|Struck by dolphin, initial encounter +C2904821|T037|PT|W56.02XD|ICD10CM|Struck by dolphin, subsequent encounter|Struck by dolphin, subsequent encounter +C2904821|T037|AB|W56.02XD|ICD10CM|Struck by dolphin, subsequent encounter|Struck by dolphin, subsequent encounter +C2904822|T037|PT|W56.02XS|ICD10CM|Struck by dolphin, sequela|Struck by dolphin, sequela +C2904822|T037|AB|W56.02XS|ICD10CM|Struck by dolphin, sequela|Struck by dolphin, sequela +C2904823|T037|AB|W56.09|ICD10CM|Other contact with dolphin|Other contact with dolphin +C2904823|T037|HT|W56.09|ICD10CM|Other contact with dolphin|Other contact with dolphin +C2904824|T037|AB|W56.09XA|ICD10CM|Other contact with dolphin, initial encounter|Other contact with dolphin, initial encounter +C2904824|T037|PT|W56.09XA|ICD10CM|Other contact with dolphin, initial encounter|Other contact with dolphin, initial encounter +C2904825|T037|AB|W56.09XD|ICD10CM|Other contact with dolphin, subsequent encounter|Other contact with dolphin, subsequent encounter +C2904825|T037|PT|W56.09XD|ICD10CM|Other contact with dolphin, subsequent encounter|Other contact with dolphin, subsequent encounter +C2904826|T037|AB|W56.09XS|ICD10CM|Other contact with dolphin, sequela|Other contact with dolphin, sequela +C2904826|T037|PT|W56.09XS|ICD10CM|Other contact with dolphin, sequela|Other contact with dolphin, sequela +C2904827|T037|HT|W56.1|ICD10CM|Contact with sea lion|Contact with sea lion +C2904827|T037|AB|W56.1|ICD10CM|Contact with sea lion|Contact with sea lion +C2904828|T037|AB|W56.11|ICD10CM|Bitten by sea lion|Bitten by sea lion +C2904828|T037|HT|W56.11|ICD10CM|Bitten by sea lion|Bitten by sea lion +C2904829|T037|PT|W56.11XA|ICD10CM|Bitten by sea lion, initial encounter|Bitten by sea lion, initial encounter +C2904829|T037|AB|W56.11XA|ICD10CM|Bitten by sea lion, initial encounter|Bitten by sea lion, initial encounter +C2904830|T037|PT|W56.11XD|ICD10CM|Bitten by sea lion, subsequent encounter|Bitten by sea lion, subsequent encounter +C2904830|T037|AB|W56.11XD|ICD10CM|Bitten by sea lion, subsequent encounter|Bitten by sea lion, subsequent encounter +C2904831|T037|PT|W56.11XS|ICD10CM|Bitten by sea lion, sequela|Bitten by sea lion, sequela +C2904831|T037|AB|W56.11XS|ICD10CM|Bitten by sea lion, sequela|Bitten by sea lion, sequela +C2904832|T037|AB|W56.12|ICD10CM|Struck by sea lion|Struck by sea lion +C2904832|T037|HT|W56.12|ICD10CM|Struck by sea lion|Struck by sea lion +C2904833|T037|PT|W56.12XA|ICD10CM|Struck by sea lion, initial encounter|Struck by sea lion, initial encounter +C2904833|T037|AB|W56.12XA|ICD10CM|Struck by sea lion, initial encounter|Struck by sea lion, initial encounter +C2904834|T037|PT|W56.12XD|ICD10CM|Struck by sea lion, subsequent encounter|Struck by sea lion, subsequent encounter +C2904834|T037|AB|W56.12XD|ICD10CM|Struck by sea lion, subsequent encounter|Struck by sea lion, subsequent encounter +C2904835|T037|PT|W56.12XS|ICD10CM|Struck by sea lion, sequela|Struck by sea lion, sequela +C2904835|T037|AB|W56.12XS|ICD10CM|Struck by sea lion, sequela|Struck by sea lion, sequela +C2904836|T037|AB|W56.19|ICD10CM|Other contact with sea lion|Other contact with sea lion +C2904836|T037|HT|W56.19|ICD10CM|Other contact with sea lion|Other contact with sea lion +C2904837|T037|AB|W56.19XA|ICD10CM|Other contact with sea lion, initial encounter|Other contact with sea lion, initial encounter +C2904837|T037|PT|W56.19XA|ICD10CM|Other contact with sea lion, initial encounter|Other contact with sea lion, initial encounter +C2904838|T037|AB|W56.19XD|ICD10CM|Other contact with sea lion, subsequent encounter|Other contact with sea lion, subsequent encounter +C2904838|T037|PT|W56.19XD|ICD10CM|Other contact with sea lion, subsequent encounter|Other contact with sea lion, subsequent encounter +C2904839|T037|AB|W56.19XS|ICD10CM|Other contact with sea lion, sequela|Other contact with sea lion, sequela +C2904839|T037|PT|W56.19XS|ICD10CM|Other contact with sea lion, sequela|Other contact with sea lion, sequela +C2904840|T037|ET|W56.2|ICD10CM|Contact with killer whale|Contact with killer whale +C2904841|T037|HT|W56.2|ICD10CM|Contact with orca|Contact with orca +C2904841|T037|AB|W56.2|ICD10CM|Contact with orca|Contact with orca +C2904842|T037|AB|W56.21|ICD10CM|Bitten by orca|Bitten by orca +C2904842|T037|HT|W56.21|ICD10CM|Bitten by orca|Bitten by orca +C2904843|T037|PT|W56.21XA|ICD10CM|Bitten by orca, initial encounter|Bitten by orca, initial encounter +C2904843|T037|AB|W56.21XA|ICD10CM|Bitten by orca, initial encounter|Bitten by orca, initial encounter +C2904844|T037|PT|W56.21XD|ICD10CM|Bitten by orca, subsequent encounter|Bitten by orca, subsequent encounter +C2904844|T037|AB|W56.21XD|ICD10CM|Bitten by orca, subsequent encounter|Bitten by orca, subsequent encounter +C2904845|T037|PT|W56.21XS|ICD10CM|Bitten by orca, sequela|Bitten by orca, sequela +C2904845|T037|AB|W56.21XS|ICD10CM|Bitten by orca, sequela|Bitten by orca, sequela +C2904846|T037|AB|W56.22|ICD10CM|Struck by orca|Struck by orca +C2904846|T037|HT|W56.22|ICD10CM|Struck by orca|Struck by orca +C2904847|T037|PT|W56.22XA|ICD10CM|Struck by orca, initial encounter|Struck by orca, initial encounter +C2904847|T037|AB|W56.22XA|ICD10CM|Struck by orca, initial encounter|Struck by orca, initial encounter +C2904848|T037|PT|W56.22XD|ICD10CM|Struck by orca, subsequent encounter|Struck by orca, subsequent encounter +C2904848|T037|AB|W56.22XD|ICD10CM|Struck by orca, subsequent encounter|Struck by orca, subsequent encounter +C2904849|T037|PT|W56.22XS|ICD10CM|Struck by orca, sequela|Struck by orca, sequela +C2904849|T037|AB|W56.22XS|ICD10CM|Struck by orca, sequela|Struck by orca, sequela +C2904850|T037|AB|W56.29|ICD10CM|Other contact with orca|Other contact with orca +C2904850|T037|HT|W56.29|ICD10CM|Other contact with orca|Other contact with orca +C2904851|T037|AB|W56.29XA|ICD10CM|Other contact with orca, initial encounter|Other contact with orca, initial encounter +C2904851|T037|PT|W56.29XA|ICD10CM|Other contact with orca, initial encounter|Other contact with orca, initial encounter +C2904852|T037|AB|W56.29XD|ICD10CM|Other contact with orca, subsequent encounter|Other contact with orca, subsequent encounter +C2904852|T037|PT|W56.29XD|ICD10CM|Other contact with orca, subsequent encounter|Other contact with orca, subsequent encounter +C2904853|T037|AB|W56.29XS|ICD10CM|Other contact with orca, sequela|Other contact with orca, sequela +C2904853|T037|PT|W56.29XS|ICD10CM|Other contact with orca, sequela|Other contact with orca, sequela +C2904854|T037|AB|W56.3|ICD10CM|Contact with other marine mammals|Contact with other marine mammals +C2904854|T037|HT|W56.3|ICD10CM|Contact with other marine mammals|Contact with other marine mammals +C2904855|T037|AB|W56.31|ICD10CM|Bitten by other marine mammals|Bitten by other marine mammals +C2904855|T037|HT|W56.31|ICD10CM|Bitten by other marine mammals|Bitten by other marine mammals +C2904856|T037|PT|W56.31XA|ICD10CM|Bitten by other marine mammals, initial encounter|Bitten by other marine mammals, initial encounter +C2904856|T037|AB|W56.31XA|ICD10CM|Bitten by other marine mammals, initial encounter|Bitten by other marine mammals, initial encounter +C2904857|T037|PT|W56.31XD|ICD10CM|Bitten by other marine mammals, subsequent encounter|Bitten by other marine mammals, subsequent encounter +C2904857|T037|AB|W56.31XD|ICD10CM|Bitten by other marine mammals, subsequent encounter|Bitten by other marine mammals, subsequent encounter +C2904858|T037|PT|W56.31XS|ICD10CM|Bitten by other marine mammals, sequela|Bitten by other marine mammals, sequela +C2904858|T037|AB|W56.31XS|ICD10CM|Bitten by other marine mammals, sequela|Bitten by other marine mammals, sequela +C2904859|T037|AB|W56.32|ICD10CM|Struck by other marine mammals|Struck by other marine mammals +C2904859|T037|HT|W56.32|ICD10CM|Struck by other marine mammals|Struck by other marine mammals +C2904860|T037|PT|W56.32XA|ICD10CM|Struck by other marine mammals, initial encounter|Struck by other marine mammals, initial encounter +C2904860|T037|AB|W56.32XA|ICD10CM|Struck by other marine mammals, initial encounter|Struck by other marine mammals, initial encounter +C2904861|T037|PT|W56.32XD|ICD10CM|Struck by other marine mammals, subsequent encounter|Struck by other marine mammals, subsequent encounter +C2904861|T037|AB|W56.32XD|ICD10CM|Struck by other marine mammals, subsequent encounter|Struck by other marine mammals, subsequent encounter +C2904862|T037|PT|W56.32XS|ICD10CM|Struck by other marine mammals, sequela|Struck by other marine mammals, sequela +C2904862|T037|AB|W56.32XS|ICD10CM|Struck by other marine mammals, sequela|Struck by other marine mammals, sequela +C2904863|T037|AB|W56.39|ICD10CM|Other contact with other marine mammals|Other contact with other marine mammals +C2904863|T037|HT|W56.39|ICD10CM|Other contact with other marine mammals|Other contact with other marine mammals +C2904864|T037|AB|W56.39XA|ICD10CM|Other contact with other marine mammals, initial encounter|Other contact with other marine mammals, initial encounter +C2904864|T037|PT|W56.39XA|ICD10CM|Other contact with other marine mammals, initial encounter|Other contact with other marine mammals, initial encounter +C2904865|T037|AB|W56.39XD|ICD10CM|Other contact with other marine mammals, subs encntr|Other contact with other marine mammals, subs encntr +C2904865|T037|PT|W56.39XD|ICD10CM|Other contact with other marine mammals, subsequent encounter|Other contact with other marine mammals, subsequent encounter +C2904866|T037|AB|W56.39XS|ICD10CM|Other contact with other marine mammals, sequela|Other contact with other marine mammals, sequela +C2904866|T037|PT|W56.39XS|ICD10CM|Other contact with other marine mammals, sequela|Other contact with other marine mammals, sequela +C2904867|T037|HT|W56.4|ICD10CM|Contact with shark|Contact with shark +C2904867|T037|AB|W56.4|ICD10CM|Contact with shark|Contact with shark +C0417738|T037|AB|W56.41|ICD10CM|Bitten by shark|Bitten by shark +C0417738|T037|HT|W56.41|ICD10CM|Bitten by shark|Bitten by shark +C2904868|T037|PT|W56.41XA|ICD10CM|Bitten by shark, initial encounter|Bitten by shark, initial encounter +C2904868|T037|AB|W56.41XA|ICD10CM|Bitten by shark, initial encounter|Bitten by shark, initial encounter +C2904869|T037|PT|W56.41XD|ICD10CM|Bitten by shark, subsequent encounter|Bitten by shark, subsequent encounter +C2904869|T037|AB|W56.41XD|ICD10CM|Bitten by shark, subsequent encounter|Bitten by shark, subsequent encounter +C2904870|T037|PT|W56.41XS|ICD10CM|Bitten by shark, sequela|Bitten by shark, sequela +C2904870|T037|AB|W56.41XS|ICD10CM|Bitten by shark, sequela|Bitten by shark, sequela +C2904871|T037|AB|W56.42|ICD10CM|Struck by shark|Struck by shark +C2904871|T037|HT|W56.42|ICD10CM|Struck by shark|Struck by shark +C2904872|T037|PT|W56.42XA|ICD10CM|Struck by shark, initial encounter|Struck by shark, initial encounter +C2904872|T037|AB|W56.42XA|ICD10CM|Struck by shark, initial encounter|Struck by shark, initial encounter +C2904873|T037|PT|W56.42XD|ICD10CM|Struck by shark, subsequent encounter|Struck by shark, subsequent encounter +C2904873|T037|AB|W56.42XD|ICD10CM|Struck by shark, subsequent encounter|Struck by shark, subsequent encounter +C2904874|T037|PT|W56.42XS|ICD10CM|Struck by shark, sequela|Struck by shark, sequela +C2904874|T037|AB|W56.42XS|ICD10CM|Struck by shark, sequela|Struck by shark, sequela +C2904875|T037|AB|W56.49|ICD10CM|Other contact with shark|Other contact with shark +C2904875|T037|HT|W56.49|ICD10CM|Other contact with shark|Other contact with shark +C2904876|T037|AB|W56.49XA|ICD10CM|Other contact with shark, initial encounter|Other contact with shark, initial encounter +C2904876|T037|PT|W56.49XA|ICD10CM|Other contact with shark, initial encounter|Other contact with shark, initial encounter +C2904877|T037|AB|W56.49XD|ICD10CM|Other contact with shark, subsequent encounter|Other contact with shark, subsequent encounter +C2904877|T037|PT|W56.49XD|ICD10CM|Other contact with shark, subsequent encounter|Other contact with shark, subsequent encounter +C2904878|T037|AB|W56.49XS|ICD10CM|Other contact with shark, sequela|Other contact with shark, sequela +C2904878|T037|PT|W56.49XS|ICD10CM|Other contact with shark, sequela|Other contact with shark, sequela +C2904879|T037|AB|W56.5|ICD10CM|Contact with other fish|Contact with other fish +C2904879|T037|HT|W56.5|ICD10CM|Contact with other fish|Contact with other fish +C2904880|T037|AB|W56.51|ICD10CM|Bitten by other fish|Bitten by other fish +C2904880|T037|HT|W56.51|ICD10CM|Bitten by other fish|Bitten by other fish +C2904881|T037|PT|W56.51XA|ICD10CM|Bitten by other fish, initial encounter|Bitten by other fish, initial encounter +C2904881|T037|AB|W56.51XA|ICD10CM|Bitten by other fish, initial encounter|Bitten by other fish, initial encounter +C2904882|T037|PT|W56.51XD|ICD10CM|Bitten by other fish, subsequent encounter|Bitten by other fish, subsequent encounter +C2904882|T037|AB|W56.51XD|ICD10CM|Bitten by other fish, subsequent encounter|Bitten by other fish, subsequent encounter +C2904883|T037|PT|W56.51XS|ICD10CM|Bitten by other fish, sequela|Bitten by other fish, sequela +C2904883|T037|AB|W56.51XS|ICD10CM|Bitten by other fish, sequela|Bitten by other fish, sequela +C2904884|T037|AB|W56.52|ICD10CM|Struck by other fish|Struck by other fish +C2904884|T037|HT|W56.52|ICD10CM|Struck by other fish|Struck by other fish +C2904885|T037|PT|W56.52XA|ICD10CM|Struck by other fish, initial encounter|Struck by other fish, initial encounter +C2904885|T037|AB|W56.52XA|ICD10CM|Struck by other fish, initial encounter|Struck by other fish, initial encounter +C2904886|T037|PT|W56.52XD|ICD10CM|Struck by other fish, subsequent encounter|Struck by other fish, subsequent encounter +C2904886|T037|AB|W56.52XD|ICD10CM|Struck by other fish, subsequent encounter|Struck by other fish, subsequent encounter +C2904887|T037|PT|W56.52XS|ICD10CM|Struck by other fish, sequela|Struck by other fish, sequela +C2904887|T037|AB|W56.52XS|ICD10CM|Struck by other fish, sequela|Struck by other fish, sequela +C2904888|T037|AB|W56.59|ICD10CM|Other contact with other fish|Other contact with other fish +C2904888|T037|HT|W56.59|ICD10CM|Other contact with other fish|Other contact with other fish +C2904889|T037|AB|W56.59XA|ICD10CM|Other contact with other fish, initial encounter|Other contact with other fish, initial encounter +C2904889|T037|PT|W56.59XA|ICD10CM|Other contact with other fish, initial encounter|Other contact with other fish, initial encounter +C2904890|T037|AB|W56.59XD|ICD10CM|Other contact with other fish, subsequent encounter|Other contact with other fish, subsequent encounter +C2904890|T037|PT|W56.59XD|ICD10CM|Other contact with other fish, subsequent encounter|Other contact with other fish, subsequent encounter +C2904891|T037|AB|W56.59XS|ICD10CM|Other contact with other fish, sequela|Other contact with other fish, sequela +C2904891|T037|PT|W56.59XS|ICD10CM|Other contact with other fish, sequela|Other contact with other fish, sequela +C2904892|T037|AB|W56.8|ICD10CM|Contact with other nonvenomous marine animals|Contact with other nonvenomous marine animals +C2904892|T037|HT|W56.8|ICD10CM|Contact with other nonvenomous marine animals|Contact with other nonvenomous marine animals +C2904893|T037|AB|W56.81|ICD10CM|Bitten by other nonvenomous marine animals|Bitten by other nonvenomous marine animals +C2904893|T037|HT|W56.81|ICD10CM|Bitten by other nonvenomous marine animals|Bitten by other nonvenomous marine animals +C2904894|T037|AB|W56.81XA|ICD10CM|Bitten by other nonvenomous marine animals, init encntr|Bitten by other nonvenomous marine animals, init encntr +C2904894|T037|PT|W56.81XA|ICD10CM|Bitten by other nonvenomous marine animals, initial encounter|Bitten by other nonvenomous marine animals, initial encounter +C2904895|T037|AB|W56.81XD|ICD10CM|Bitten by other nonvenomous marine animals, subs encntr|Bitten by other nonvenomous marine animals, subs encntr +C2904895|T037|PT|W56.81XD|ICD10CM|Bitten by other nonvenomous marine animals, subsequent encounter|Bitten by other nonvenomous marine animals, subsequent encounter +C2904896|T037|PT|W56.81XS|ICD10CM|Bitten by other nonvenomous marine animals, sequela|Bitten by other nonvenomous marine animals, sequela +C2904896|T037|AB|W56.81XS|ICD10CM|Bitten by other nonvenomous marine animals, sequela|Bitten by other nonvenomous marine animals, sequela +C2904897|T037|AB|W56.82|ICD10CM|Struck by other nonvenomous marine animals|Struck by other nonvenomous marine animals +C2904897|T037|HT|W56.82|ICD10CM|Struck by other nonvenomous marine animals|Struck by other nonvenomous marine animals +C2904898|T037|AB|W56.82XA|ICD10CM|Struck by other nonvenomous marine animals, init encntr|Struck by other nonvenomous marine animals, init encntr +C2904898|T037|PT|W56.82XA|ICD10CM|Struck by other nonvenomous marine animals, initial encounter|Struck by other nonvenomous marine animals, initial encounter +C2904899|T037|AB|W56.82XD|ICD10CM|Struck by other nonvenomous marine animals, subs encntr|Struck by other nonvenomous marine animals, subs encntr +C2904899|T037|PT|W56.82XD|ICD10CM|Struck by other nonvenomous marine animals, subsequent encounter|Struck by other nonvenomous marine animals, subsequent encounter +C2904900|T037|PT|W56.82XS|ICD10CM|Struck by other nonvenomous marine animals, sequela|Struck by other nonvenomous marine animals, sequela +C2904900|T037|AB|W56.82XS|ICD10CM|Struck by other nonvenomous marine animals, sequela|Struck by other nonvenomous marine animals, sequela +C2904901|T037|AB|W56.89|ICD10CM|Other contact with other nonvenomous marine animals|Other contact with other nonvenomous marine animals +C2904901|T037|HT|W56.89|ICD10CM|Other contact with other nonvenomous marine animals|Other contact with other nonvenomous marine animals +C2904902|T037|AB|W56.89XA|ICD10CM|Oth contact with oth nonvenomous marine animals, init encntr|Oth contact with oth nonvenomous marine animals, init encntr +C2904902|T037|PT|W56.89XA|ICD10CM|Other contact with other nonvenomous marine animals, initial encounter|Other contact with other nonvenomous marine animals, initial encounter +C2904903|T037|AB|W56.89XD|ICD10CM|Oth contact with oth nonvenomous marine animals, subs encntr|Oth contact with oth nonvenomous marine animals, subs encntr +C2904903|T037|PT|W56.89XD|ICD10CM|Other contact with other nonvenomous marine animals, subsequent encounter|Other contact with other nonvenomous marine animals, subsequent encounter +C2904904|T037|AB|W56.89XS|ICD10CM|Other contact with other nonvenomous marine animals, sequela|Other contact with other nonvenomous marine animals, sequela +C2904904|T037|PT|W56.89XS|ICD10CM|Other contact with other nonvenomous marine animals, sequela|Other contact with other nonvenomous marine animals, sequela +C0496503|T037|AB|W57|ICD10CM|Bit/stung by nonvenom insect and oth nonvenomous arthropods|Bit/stung by nonvenom insect and oth nonvenomous arthropods +C0496503|T037|HT|W57|ICD10CM|Bitten or stung by nonvenomous insect and other nonvenomous arthropods|Bitten or stung by nonvenomous insect and other nonvenomous arthropods +C0496503|T037|PT|W57|ICD10|Bitten or stung by nonvenomous insect and other nonvenomous arthropods|Bitten or stung by nonvenomous insect and other nonvenomous arthropods +C2904905|T037|AB|W57.XXXA|ICD10CM|Bit/stung by nonvenom insect & oth nonvenom arthropods, init|Bit/stung by nonvenom insect & oth nonvenom arthropods, init +C2904905|T037|PT|W57.XXXA|ICD10CM|Bitten or stung by nonvenomous insect and other nonvenomous arthropods, initial encounter|Bitten or stung by nonvenomous insect and other nonvenomous arthropods, initial encounter +C2904906|T037|AB|W57.XXXD|ICD10CM|Bit/stung by nonvenom insect & oth nonvenom arthropods, subs|Bit/stung by nonvenom insect & oth nonvenom arthropods, subs +C2904906|T037|PT|W57.XXXD|ICD10CM|Bitten or stung by nonvenomous insect and other nonvenomous arthropods, subsequent encounter|Bitten or stung by nonvenomous insect and other nonvenomous arthropods, subsequent encounter +C2904907|T037|AB|W57.XXXS|ICD10CM|Bit/stung by nonvenom insect & oth nonvenom arthropods, sqla|Bit/stung by nonvenom insect & oth nonvenom arthropods, sqla +C2904907|T037|PT|W57.XXXS|ICD10CM|Bitten or stung by nonvenomous insect and other nonvenomous arthropods, sequela|Bitten or stung by nonvenomous insect and other nonvenomous arthropods, sequela +C0479249|T037|PT|W58|ICD10|Bitten or struck by crocodile or alligator|Bitten or struck by crocodile or alligator +C2904908|T037|HT|W58|ICD10CM|Contact with crocodile or alligator|Contact with crocodile or alligator +C2904908|T037|AB|W58|ICD10CM|Contact with crocodile or alligator|Contact with crocodile or alligator +C2904909|T037|HT|W58.0|ICD10CM|Contact with alligator|Contact with alligator +C2904909|T037|AB|W58.0|ICD10CM|Contact with alligator|Contact with alligator +C2904910|T037|AB|W58.01|ICD10CM|Bitten by alligator|Bitten by alligator +C2904910|T037|HT|W58.01|ICD10CM|Bitten by alligator|Bitten by alligator +C2904911|T037|PT|W58.01XA|ICD10CM|Bitten by alligator, initial encounter|Bitten by alligator, initial encounter +C2904911|T037|AB|W58.01XA|ICD10CM|Bitten by alligator, initial encounter|Bitten by alligator, initial encounter +C2904912|T037|PT|W58.01XD|ICD10CM|Bitten by alligator, subsequent encounter|Bitten by alligator, subsequent encounter +C2904912|T037|AB|W58.01XD|ICD10CM|Bitten by alligator, subsequent encounter|Bitten by alligator, subsequent encounter +C2904913|T037|PT|W58.01XS|ICD10CM|Bitten by alligator, sequela|Bitten by alligator, sequela +C2904913|T037|AB|W58.01XS|ICD10CM|Bitten by alligator, sequela|Bitten by alligator, sequela +C2904914|T037|AB|W58.02|ICD10CM|Struck by alligator|Struck by alligator +C2904914|T037|HT|W58.02|ICD10CM|Struck by alligator|Struck by alligator +C2904915|T037|PT|W58.02XA|ICD10CM|Struck by alligator, initial encounter|Struck by alligator, initial encounter +C2904915|T037|AB|W58.02XA|ICD10CM|Struck by alligator, initial encounter|Struck by alligator, initial encounter +C2904916|T037|PT|W58.02XD|ICD10CM|Struck by alligator, subsequent encounter|Struck by alligator, subsequent encounter +C2904916|T037|AB|W58.02XD|ICD10CM|Struck by alligator, subsequent encounter|Struck by alligator, subsequent encounter +C2904917|T037|PT|W58.02XS|ICD10CM|Struck by alligator, sequela|Struck by alligator, sequela +C2904917|T037|AB|W58.02XS|ICD10CM|Struck by alligator, sequela|Struck by alligator, sequela +C2904918|T037|AB|W58.03|ICD10CM|Crushed by alligator|Crushed by alligator +C2904918|T037|HT|W58.03|ICD10CM|Crushed by alligator|Crushed by alligator +C2904919|T037|PT|W58.03XA|ICD10CM|Crushed by alligator, initial encounter|Crushed by alligator, initial encounter +C2904919|T037|AB|W58.03XA|ICD10CM|Crushed by alligator, initial encounter|Crushed by alligator, initial encounter +C2904920|T037|PT|W58.03XD|ICD10CM|Crushed by alligator, subsequent encounter|Crushed by alligator, subsequent encounter +C2904920|T037|AB|W58.03XD|ICD10CM|Crushed by alligator, subsequent encounter|Crushed by alligator, subsequent encounter +C2904921|T037|PT|W58.03XS|ICD10CM|Crushed by alligator, sequela|Crushed by alligator, sequela +C2904921|T037|AB|W58.03XS|ICD10CM|Crushed by alligator, sequela|Crushed by alligator, sequela +C2977297|T037|AB|W58.09|ICD10CM|Other contact with alligator|Other contact with alligator +C2977297|T037|HT|W58.09|ICD10CM|Other contact with alligator|Other contact with alligator +C2977298|T037|AB|W58.09XA|ICD10CM|Other contact with alligator, initial encounter|Other contact with alligator, initial encounter +C2977298|T037|PT|W58.09XA|ICD10CM|Other contact with alligator, initial encounter|Other contact with alligator, initial encounter +C2977299|T037|AB|W58.09XD|ICD10CM|Other contact with alligator, subsequent encounter|Other contact with alligator, subsequent encounter +C2977299|T037|PT|W58.09XD|ICD10CM|Other contact with alligator, subsequent encounter|Other contact with alligator, subsequent encounter +C2977300|T037|AB|W58.09XS|ICD10CM|Other contact with alligator, sequela|Other contact with alligator, sequela +C2977300|T037|PT|W58.09XS|ICD10CM|Other contact with alligator, sequela|Other contact with alligator, sequela +C2904922|T037|HT|W58.1|ICD10CM|Contact with crocodile|Contact with crocodile +C2904922|T037|AB|W58.1|ICD10CM|Contact with crocodile|Contact with crocodile +C0417734|T037|AB|W58.11|ICD10CM|Bitten by crocodile|Bitten by crocodile +C0417734|T037|HT|W58.11|ICD10CM|Bitten by crocodile|Bitten by crocodile +C2904923|T037|PT|W58.11XA|ICD10CM|Bitten by crocodile, initial encounter|Bitten by crocodile, initial encounter +C2904923|T037|AB|W58.11XA|ICD10CM|Bitten by crocodile, initial encounter|Bitten by crocodile, initial encounter +C2904924|T037|PT|W58.11XD|ICD10CM|Bitten by crocodile, subsequent encounter|Bitten by crocodile, subsequent encounter +C2904924|T037|AB|W58.11XD|ICD10CM|Bitten by crocodile, subsequent encounter|Bitten by crocodile, subsequent encounter +C2904925|T037|PT|W58.11XS|ICD10CM|Bitten by crocodile, sequela|Bitten by crocodile, sequela +C2904925|T037|AB|W58.11XS|ICD10CM|Bitten by crocodile, sequela|Bitten by crocodile, sequela +C2904926|T037|AB|W58.12|ICD10CM|Struck by crocodile|Struck by crocodile +C2904926|T037|HT|W58.12|ICD10CM|Struck by crocodile|Struck by crocodile +C2904927|T037|PT|W58.12XA|ICD10CM|Struck by crocodile, initial encounter|Struck by crocodile, initial encounter +C2904927|T037|AB|W58.12XA|ICD10CM|Struck by crocodile, initial encounter|Struck by crocodile, initial encounter +C2904928|T037|PT|W58.12XD|ICD10CM|Struck by crocodile, subsequent encounter|Struck by crocodile, subsequent encounter +C2904928|T037|AB|W58.12XD|ICD10CM|Struck by crocodile, subsequent encounter|Struck by crocodile, subsequent encounter +C2904929|T037|PT|W58.12XS|ICD10CM|Struck by crocodile, sequela|Struck by crocodile, sequela +C2904929|T037|AB|W58.12XS|ICD10CM|Struck by crocodile, sequela|Struck by crocodile, sequela +C2904930|T037|AB|W58.13|ICD10CM|Crushed by crocodile|Crushed by crocodile +C2904930|T037|HT|W58.13|ICD10CM|Crushed by crocodile|Crushed by crocodile +C2904931|T037|PT|W58.13XA|ICD10CM|Crushed by crocodile, initial encounter|Crushed by crocodile, initial encounter +C2904931|T037|AB|W58.13XA|ICD10CM|Crushed by crocodile, initial encounter|Crushed by crocodile, initial encounter +C2904932|T037|PT|W58.13XD|ICD10CM|Crushed by crocodile, subsequent encounter|Crushed by crocodile, subsequent encounter +C2904932|T037|AB|W58.13XD|ICD10CM|Crushed by crocodile, subsequent encounter|Crushed by crocodile, subsequent encounter +C2904933|T037|PT|W58.13XS|ICD10CM|Crushed by crocodile, sequela|Crushed by crocodile, sequela +C2904933|T037|AB|W58.13XS|ICD10CM|Crushed by crocodile, sequela|Crushed by crocodile, sequela +C2977301|T037|AB|W58.19|ICD10CM|Other contact with crocodile|Other contact with crocodile +C2977301|T037|HT|W58.19|ICD10CM|Other contact with crocodile|Other contact with crocodile +C2977302|T037|AB|W58.19XA|ICD10CM|Other contact with crocodile, initial encounter|Other contact with crocodile, initial encounter +C2977302|T037|PT|W58.19XA|ICD10CM|Other contact with crocodile, initial encounter|Other contact with crocodile, initial encounter +C2977303|T037|AB|W58.19XD|ICD10CM|Other contact with crocodile, subsequent encounter|Other contact with crocodile, subsequent encounter +C2977303|T037|PT|W58.19XD|ICD10CM|Other contact with crocodile, subsequent encounter|Other contact with crocodile, subsequent encounter +C2977304|T037|AB|W58.19XS|ICD10CM|Other contact with crocodile, sequela|Other contact with crocodile, sequela +C2977304|T037|PT|W58.19XS|ICD10CM|Other contact with crocodile, sequela|Other contact with crocodile, sequela +C0479260|T037|PT|W59|ICD10|Bitten or crushed by other reptiles|Bitten or crushed by other reptiles +C2904976|T037|HT|W59|ICD10CM|Contact with other nonvenomous reptiles|Contact with other nonvenomous reptiles +C2904976|T037|AB|W59|ICD10CM|Contact with other nonvenomous reptiles|Contact with other nonvenomous reptiles +C2904934|T037|AB|W59.0|ICD10CM|Contact with nonvenomous lizards|Contact with nonvenomous lizards +C2904934|T037|HT|W59.0|ICD10CM|Contact with nonvenomous lizards|Contact with nonvenomous lizards +C2077088|T037|AB|W59.01|ICD10CM|Bitten by nonvenomous lizards|Bitten by nonvenomous lizards +C2077088|T037|HT|W59.01|ICD10CM|Bitten by nonvenomous lizards|Bitten by nonvenomous lizards +C2904935|T037|PT|W59.01XA|ICD10CM|Bitten by nonvenomous lizards, initial encounter|Bitten by nonvenomous lizards, initial encounter +C2904935|T037|AB|W59.01XA|ICD10CM|Bitten by nonvenomous lizards, initial encounter|Bitten by nonvenomous lizards, initial encounter +C2904936|T037|PT|W59.01XD|ICD10CM|Bitten by nonvenomous lizards, subsequent encounter|Bitten by nonvenomous lizards, subsequent encounter +C2904936|T037|AB|W59.01XD|ICD10CM|Bitten by nonvenomous lizards, subsequent encounter|Bitten by nonvenomous lizards, subsequent encounter +C2904937|T037|PT|W59.01XS|ICD10CM|Bitten by nonvenomous lizards, sequela|Bitten by nonvenomous lizards, sequela +C2904937|T037|AB|W59.01XS|ICD10CM|Bitten by nonvenomous lizards, sequela|Bitten by nonvenomous lizards, sequela +C2904938|T037|AB|W59.02|ICD10CM|Struck by nonvenomous lizards|Struck by nonvenomous lizards +C2904938|T037|HT|W59.02|ICD10CM|Struck by nonvenomous lizards|Struck by nonvenomous lizards +C2904939|T037|PT|W59.02XA|ICD10CM|Struck by nonvenomous lizards, initial encounter|Struck by nonvenomous lizards, initial encounter +C2904939|T037|AB|W59.02XA|ICD10CM|Struck by nonvenomous lizards, initial encounter|Struck by nonvenomous lizards, initial encounter +C2904940|T037|PT|W59.02XD|ICD10CM|Struck by nonvenomous lizards, subsequent encounter|Struck by nonvenomous lizards, subsequent encounter +C2904940|T037|AB|W59.02XD|ICD10CM|Struck by nonvenomous lizards, subsequent encounter|Struck by nonvenomous lizards, subsequent encounter +C2904941|T037|PT|W59.02XS|ICD10CM|Struck by nonvenomous lizards, sequela|Struck by nonvenomous lizards, sequela +C2904941|T037|AB|W59.02XS|ICD10CM|Struck by nonvenomous lizards, sequela|Struck by nonvenomous lizards, sequela +C2904942|T037|ET|W59.09|ICD10CM|Exposure to nonvenomous lizards|Exposure to nonvenomous lizards +C2904943|T037|AB|W59.09|ICD10CM|Other contact with nonvenomous lizards|Other contact with nonvenomous lizards +C2904943|T037|HT|W59.09|ICD10CM|Other contact with nonvenomous lizards|Other contact with nonvenomous lizards +C2904944|T037|AB|W59.09XA|ICD10CM|Other contact with nonvenomous lizards, initial encounter|Other contact with nonvenomous lizards, initial encounter +C2904944|T037|PT|W59.09XA|ICD10CM|Other contact with nonvenomous lizards, initial encounter|Other contact with nonvenomous lizards, initial encounter +C2904945|T037|AB|W59.09XD|ICD10CM|Other contact with nonvenomous lizards, subsequent encounter|Other contact with nonvenomous lizards, subsequent encounter +C2904945|T037|PT|W59.09XD|ICD10CM|Other contact with nonvenomous lizards, subsequent encounter|Other contact with nonvenomous lizards, subsequent encounter +C2904946|T037|AB|W59.09XS|ICD10CM|Other contact with nonvenomous lizards, sequela|Other contact with nonvenomous lizards, sequela +C2904946|T037|PT|W59.09XS|ICD10CM|Other contact with nonvenomous lizards, sequela|Other contact with nonvenomous lizards, sequela +C2904947|T037|AB|W59.1|ICD10CM|Contact with nonvenomous snakes|Contact with nonvenomous snakes +C2904947|T037|HT|W59.1|ICD10CM|Contact with nonvenomous snakes|Contact with nonvenomous snakes +C0344203|T037|AB|W59.11|ICD10CM|Bitten by nonvenomous snake|Bitten by nonvenomous snake +C0344203|T037|HT|W59.11|ICD10CM|Bitten by nonvenomous snake|Bitten by nonvenomous snake +C2904948|T037|PT|W59.11XA|ICD10CM|Bitten by nonvenomous snake, initial encounter|Bitten by nonvenomous snake, initial encounter +C2904948|T037|AB|W59.11XA|ICD10CM|Bitten by nonvenomous snake, initial encounter|Bitten by nonvenomous snake, initial encounter +C2904949|T037|PT|W59.11XD|ICD10CM|Bitten by nonvenomous snake, subsequent encounter|Bitten by nonvenomous snake, subsequent encounter +C2904949|T037|AB|W59.11XD|ICD10CM|Bitten by nonvenomous snake, subsequent encounter|Bitten by nonvenomous snake, subsequent encounter +C2904950|T037|PT|W59.11XS|ICD10CM|Bitten by nonvenomous snake, sequela|Bitten by nonvenomous snake, sequela +C2904950|T037|AB|W59.11XS|ICD10CM|Bitten by nonvenomous snake, sequela|Bitten by nonvenomous snake, sequela +C2904951|T037|AB|W59.12|ICD10CM|Struck by nonvenomous snake|Struck by nonvenomous snake +C2904951|T037|HT|W59.12|ICD10CM|Struck by nonvenomous snake|Struck by nonvenomous snake +C2904952|T037|PT|W59.12XA|ICD10CM|Struck by nonvenomous snake, initial encounter|Struck by nonvenomous snake, initial encounter +C2904952|T037|AB|W59.12XA|ICD10CM|Struck by nonvenomous snake, initial encounter|Struck by nonvenomous snake, initial encounter +C2904953|T037|PT|W59.12XD|ICD10CM|Struck by nonvenomous snake, subsequent encounter|Struck by nonvenomous snake, subsequent encounter +C2904953|T037|AB|W59.12XD|ICD10CM|Struck by nonvenomous snake, subsequent encounter|Struck by nonvenomous snake, subsequent encounter +C2904954|T037|PT|W59.12XS|ICD10CM|Struck by nonvenomous snake, sequela|Struck by nonvenomous snake, sequela +C2904954|T037|AB|W59.12XS|ICD10CM|Struck by nonvenomous snake, sequela|Struck by nonvenomous snake, sequela +C2904955|T037|AB|W59.13|ICD10CM|Crushed by nonvenomous snake|Crushed by nonvenomous snake +C2904955|T037|HT|W59.13|ICD10CM|Crushed by nonvenomous snake|Crushed by nonvenomous snake +C2904956|T037|PT|W59.13XA|ICD10CM|Crushed by nonvenomous snake, initial encounter|Crushed by nonvenomous snake, initial encounter +C2904956|T037|AB|W59.13XA|ICD10CM|Crushed by nonvenomous snake, initial encounter|Crushed by nonvenomous snake, initial encounter +C2904957|T037|PT|W59.13XD|ICD10CM|Crushed by nonvenomous snake, subsequent encounter|Crushed by nonvenomous snake, subsequent encounter +C2904957|T037|AB|W59.13XD|ICD10CM|Crushed by nonvenomous snake, subsequent encounter|Crushed by nonvenomous snake, subsequent encounter +C2904958|T037|PT|W59.13XS|ICD10CM|Crushed by nonvenomous snake, sequela|Crushed by nonvenomous snake, sequela +C2904958|T037|AB|W59.13XS|ICD10CM|Crushed by nonvenomous snake, sequela|Crushed by nonvenomous snake, sequela +C2904959|T037|AB|W59.19|ICD10CM|Other contact with nonvenomous snake|Other contact with nonvenomous snake +C2904959|T037|HT|W59.19|ICD10CM|Other contact with nonvenomous snake|Other contact with nonvenomous snake +C2904960|T037|AB|W59.19XA|ICD10CM|Other contact with nonvenomous snake, initial encounter|Other contact with nonvenomous snake, initial encounter +C2904960|T037|PT|W59.19XA|ICD10CM|Other contact with nonvenomous snake, initial encounter|Other contact with nonvenomous snake, initial encounter +C2904961|T037|AB|W59.19XD|ICD10CM|Other contact with nonvenomous snake, subsequent encounter|Other contact with nonvenomous snake, subsequent encounter +C2904961|T037|PT|W59.19XD|ICD10CM|Other contact with nonvenomous snake, subsequent encounter|Other contact with nonvenomous snake, subsequent encounter +C2904962|T037|AB|W59.19XS|ICD10CM|Other contact with nonvenomous snake, sequela|Other contact with nonvenomous snake, sequela +C2904962|T037|PT|W59.19XS|ICD10CM|Other contact with nonvenomous snake, sequela|Other contact with nonvenomous snake, sequela +C2904963|T037|AB|W59.2|ICD10CM|Contact with turtles|Contact with turtles +C2904963|T037|HT|W59.2|ICD10CM|Contact with turtles|Contact with turtles +C0417736|T037|AB|W59.21|ICD10CM|Bitten by turtle|Bitten by turtle +C0417736|T037|HT|W59.21|ICD10CM|Bitten by turtle|Bitten by turtle +C2904964|T037|PT|W59.21XA|ICD10CM|Bitten by turtle, initial encounter|Bitten by turtle, initial encounter +C2904964|T037|AB|W59.21XA|ICD10CM|Bitten by turtle, initial encounter|Bitten by turtle, initial encounter +C2904965|T037|PT|W59.21XD|ICD10CM|Bitten by turtle, subsequent encounter|Bitten by turtle, subsequent encounter +C2904965|T037|AB|W59.21XD|ICD10CM|Bitten by turtle, subsequent encounter|Bitten by turtle, subsequent encounter +C2904966|T037|PT|W59.21XS|ICD10CM|Bitten by turtle, sequela|Bitten by turtle, sequela +C2904966|T037|AB|W59.21XS|ICD10CM|Bitten by turtle, sequela|Bitten by turtle, sequela +C2904967|T037|AB|W59.22|ICD10CM|Struck by turtle|Struck by turtle +C2904967|T037|HT|W59.22|ICD10CM|Struck by turtle|Struck by turtle +C2904968|T037|PT|W59.22XA|ICD10CM|Struck by turtle, initial encounter|Struck by turtle, initial encounter +C2904968|T037|AB|W59.22XA|ICD10CM|Struck by turtle, initial encounter|Struck by turtle, initial encounter +C2904969|T037|PT|W59.22XD|ICD10CM|Struck by turtle, subsequent encounter|Struck by turtle, subsequent encounter +C2904969|T037|AB|W59.22XD|ICD10CM|Struck by turtle, subsequent encounter|Struck by turtle, subsequent encounter +C2904970|T037|PT|W59.22XS|ICD10CM|Struck by turtle, sequela|Struck by turtle, sequela +C2904970|T037|AB|W59.22XS|ICD10CM|Struck by turtle, sequela|Struck by turtle, sequela +C2904971|T037|ET|W59.29|ICD10CM|Exposure to turtles|Exposure to turtles +C2904972|T037|AB|W59.29|ICD10CM|Other contact with turtle|Other contact with turtle +C2904972|T037|HT|W59.29|ICD10CM|Other contact with turtle|Other contact with turtle +C2904973|T037|AB|W59.29XA|ICD10CM|Other contact with turtle, initial encounter|Other contact with turtle, initial encounter +C2904973|T037|PT|W59.29XA|ICD10CM|Other contact with turtle, initial encounter|Other contact with turtle, initial encounter +C2904974|T037|AB|W59.29XD|ICD10CM|Other contact with turtle, subsequent encounter|Other contact with turtle, subsequent encounter +C2904974|T037|PT|W59.29XD|ICD10CM|Other contact with turtle, subsequent encounter|Other contact with turtle, subsequent encounter +C2904975|T037|AB|W59.29XS|ICD10CM|Other contact with turtle, sequela|Other contact with turtle, sequela +C2904975|T037|PT|W59.29XS|ICD10CM|Other contact with turtle, sequela|Other contact with turtle, sequela +C2904976|T037|AB|W59.8|ICD10CM|Contact with other nonvenomous reptiles|Contact with other nonvenomous reptiles +C2904976|T037|HT|W59.8|ICD10CM|Contact with other nonvenomous reptiles|Contact with other nonvenomous reptiles +C2904977|T037|AB|W59.81|ICD10CM|Bitten by other nonvenomous reptiles|Bitten by other nonvenomous reptiles +C2904977|T037|HT|W59.81|ICD10CM|Bitten by other nonvenomous reptiles|Bitten by other nonvenomous reptiles +C2904978|T037|PT|W59.81XA|ICD10CM|Bitten by other nonvenomous reptiles, initial encounter|Bitten by other nonvenomous reptiles, initial encounter +C2904978|T037|AB|W59.81XA|ICD10CM|Bitten by other nonvenomous reptiles, initial encounter|Bitten by other nonvenomous reptiles, initial encounter +C2904979|T037|PT|W59.81XD|ICD10CM|Bitten by other nonvenomous reptiles, subsequent encounter|Bitten by other nonvenomous reptiles, subsequent encounter +C2904979|T037|AB|W59.81XD|ICD10CM|Bitten by other nonvenomous reptiles, subsequent encounter|Bitten by other nonvenomous reptiles, subsequent encounter +C2904980|T037|PT|W59.81XS|ICD10CM|Bitten by other nonvenomous reptiles, sequela|Bitten by other nonvenomous reptiles, sequela +C2904980|T037|AB|W59.81XS|ICD10CM|Bitten by other nonvenomous reptiles, sequela|Bitten by other nonvenomous reptiles, sequela +C2904981|T037|AB|W59.82|ICD10CM|Struck by other nonvenomous reptiles|Struck by other nonvenomous reptiles +C2904981|T037|HT|W59.82|ICD10CM|Struck by other nonvenomous reptiles|Struck by other nonvenomous reptiles +C2904982|T037|PT|W59.82XA|ICD10CM|Struck by other nonvenomous reptiles, initial encounter|Struck by other nonvenomous reptiles, initial encounter +C2904982|T037|AB|W59.82XA|ICD10CM|Struck by other nonvenomous reptiles, initial encounter|Struck by other nonvenomous reptiles, initial encounter +C2904983|T037|PT|W59.82XD|ICD10CM|Struck by other nonvenomous reptiles, subsequent encounter|Struck by other nonvenomous reptiles, subsequent encounter +C2904983|T037|AB|W59.82XD|ICD10CM|Struck by other nonvenomous reptiles, subsequent encounter|Struck by other nonvenomous reptiles, subsequent encounter +C2904984|T037|PT|W59.82XS|ICD10CM|Struck by other nonvenomous reptiles, sequela|Struck by other nonvenomous reptiles, sequela +C2904984|T037|AB|W59.82XS|ICD10CM|Struck by other nonvenomous reptiles, sequela|Struck by other nonvenomous reptiles, sequela +C2904985|T037|AB|W59.83|ICD10CM|Crushed by other nonvenomous reptiles|Crushed by other nonvenomous reptiles +C2904985|T037|HT|W59.83|ICD10CM|Crushed by other nonvenomous reptiles|Crushed by other nonvenomous reptiles +C2904986|T037|PT|W59.83XA|ICD10CM|Crushed by other nonvenomous reptiles, initial encounter|Crushed by other nonvenomous reptiles, initial encounter +C2904986|T037|AB|W59.83XA|ICD10CM|Crushed by other nonvenomous reptiles, initial encounter|Crushed by other nonvenomous reptiles, initial encounter +C2904987|T037|PT|W59.83XD|ICD10CM|Crushed by other nonvenomous reptiles, subsequent encounter|Crushed by other nonvenomous reptiles, subsequent encounter +C2904987|T037|AB|W59.83XD|ICD10CM|Crushed by other nonvenomous reptiles, subsequent encounter|Crushed by other nonvenomous reptiles, subsequent encounter +C2904988|T037|PT|W59.83XS|ICD10CM|Crushed by other nonvenomous reptiles, sequela|Crushed by other nonvenomous reptiles, sequela +C2904988|T037|AB|W59.83XS|ICD10CM|Crushed by other nonvenomous reptiles, sequela|Crushed by other nonvenomous reptiles, sequela +C2904989|T037|AB|W59.89|ICD10CM|Other contact with other nonvenomous reptiles|Other contact with other nonvenomous reptiles +C2904989|T037|HT|W59.89|ICD10CM|Other contact with other nonvenomous reptiles|Other contact with other nonvenomous reptiles +C2904990|T037|AB|W59.89XA|ICD10CM|Other contact with other nonvenomous reptiles, init encntr|Other contact with other nonvenomous reptiles, init encntr +C2904990|T037|PT|W59.89XA|ICD10CM|Other contact with other nonvenomous reptiles, initial encounter|Other contact with other nonvenomous reptiles, initial encounter +C2904991|T037|AB|W59.89XD|ICD10CM|Other contact with other nonvenomous reptiles, subs encntr|Other contact with other nonvenomous reptiles, subs encntr +C2904991|T037|PT|W59.89XD|ICD10CM|Other contact with other nonvenomous reptiles, subsequent encounter|Other contact with other nonvenomous reptiles, subsequent encounter +C2904992|T037|AB|W59.89XS|ICD10CM|Other contact with other nonvenomous reptiles, sequela|Other contact with other nonvenomous reptiles, sequela +C2904992|T037|PT|W59.89XS|ICD10CM|Other contact with other nonvenomous reptiles, sequela|Other contact with other nonvenomous reptiles, sequela +C2904993|T037|AB|W60|ICD10CM|Contact w nonvenom plant thorns and spines and sharp leaves|Contact w nonvenom plant thorns and spines and sharp leaves +C2904993|T037|HT|W60|ICD10CM|Contact with nonvenomous plant thorns and spines and sharp leaves|Contact with nonvenomous plant thorns and spines and sharp leaves +C0479271|T037|PT|W60|ICD10|Contact with plant thorns and spines and sharp leaves|Contact with plant thorns and spines and sharp leaves +C2904994|T037|AB|W60.XXXA|ICD10CM|Cntct w nonvenom plant thorns & spines & sharp leaves, init|Cntct w nonvenom plant thorns & spines & sharp leaves, init +C2904994|T037|PT|W60.XXXA|ICD10CM|Contact with nonvenomous plant thorns and spines and sharp leaves, initial encounter|Contact with nonvenomous plant thorns and spines and sharp leaves, initial encounter +C2904995|T037|AB|W60.XXXD|ICD10CM|Cntct w nonvenom plant thorns & spines & sharp leaves, subs|Cntct w nonvenom plant thorns & spines & sharp leaves, subs +C2904995|T037|PT|W60.XXXD|ICD10CM|Contact with nonvenomous plant thorns and spines and sharp leaves, subsequent encounter|Contact with nonvenomous plant thorns and spines and sharp leaves, subsequent encounter +C2904996|T037|AB|W60.XXXS|ICD10CM|Cntct w nonvenom plant thorns & spines & sharp leaves, sqla|Cntct w nonvenom plant thorns & spines & sharp leaves, sqla +C2904996|T037|PT|W60.XXXS|ICD10CM|Contact with nonvenomous plant thorns and spines and sharp leaves, sequela|Contact with nonvenomous plant thorns and spines and sharp leaves, sequela +C2904998|T037|AB|W61|ICD10CM|Contact with birds (domestic) (wild)|Contact with birds (domestic) (wild) +C2904998|T037|HT|W61|ICD10CM|Contact with birds (domestic) (wild)|Contact with birds (domestic) (wild) +C4290480|T037|ET|W61|ICD10CM|contact with excreta of birds|contact with excreta of birds +C2904999|T037|AB|W61.0|ICD10CM|Contact with parrot|Contact with parrot +C2904999|T037|HT|W61.0|ICD10CM|Contact with parrot|Contact with parrot +C2905000|T037|AB|W61.01|ICD10CM|Bitten by parrot|Bitten by parrot +C2905000|T037|HT|W61.01|ICD10CM|Bitten by parrot|Bitten by parrot +C2905001|T037|PT|W61.01XA|ICD10CM|Bitten by parrot, initial encounter|Bitten by parrot, initial encounter +C2905001|T037|AB|W61.01XA|ICD10CM|Bitten by parrot, initial encounter|Bitten by parrot, initial encounter +C2905002|T037|PT|W61.01XD|ICD10CM|Bitten by parrot, subsequent encounter|Bitten by parrot, subsequent encounter +C2905002|T037|AB|W61.01XD|ICD10CM|Bitten by parrot, subsequent encounter|Bitten by parrot, subsequent encounter +C2905003|T037|PT|W61.01XS|ICD10CM|Bitten by parrot, sequela|Bitten by parrot, sequela +C2905003|T037|AB|W61.01XS|ICD10CM|Bitten by parrot, sequela|Bitten by parrot, sequela +C2905004|T037|AB|W61.02|ICD10CM|Struck by parrot|Struck by parrot +C2905004|T037|HT|W61.02|ICD10CM|Struck by parrot|Struck by parrot +C2905005|T037|PT|W61.02XA|ICD10CM|Struck by parrot, initial encounter|Struck by parrot, initial encounter +C2905005|T037|AB|W61.02XA|ICD10CM|Struck by parrot, initial encounter|Struck by parrot, initial encounter +C2905006|T037|PT|W61.02XD|ICD10CM|Struck by parrot, subsequent encounter|Struck by parrot, subsequent encounter +C2905006|T037|AB|W61.02XD|ICD10CM|Struck by parrot, subsequent encounter|Struck by parrot, subsequent encounter +C2905007|T037|PT|W61.02XS|ICD10CM|Struck by parrot, sequela|Struck by parrot, sequela +C2905007|T037|AB|W61.02XS|ICD10CM|Struck by parrot, sequela|Struck by parrot, sequela +C2905008|T037|ET|W61.09|ICD10CM|Exposure to parrots|Exposure to parrots +C2905009|T037|AB|W61.09|ICD10CM|Other contact with parrot|Other contact with parrot +C2905009|T037|HT|W61.09|ICD10CM|Other contact with parrot|Other contact with parrot +C2905010|T037|AB|W61.09XA|ICD10CM|Other contact with parrot, initial encounter|Other contact with parrot, initial encounter +C2905010|T037|PT|W61.09XA|ICD10CM|Other contact with parrot, initial encounter|Other contact with parrot, initial encounter +C2905011|T037|AB|W61.09XD|ICD10CM|Other contact with parrot, subsequent encounter|Other contact with parrot, subsequent encounter +C2905011|T037|PT|W61.09XD|ICD10CM|Other contact with parrot, subsequent encounter|Other contact with parrot, subsequent encounter +C2905012|T037|AB|W61.09XS|ICD10CM|Other contact with parrot, sequela|Other contact with parrot, sequela +C2905012|T037|PT|W61.09XS|ICD10CM|Other contact with parrot, sequela|Other contact with parrot, sequela +C2905013|T033|HT|W61.1|ICD10CM|Contact with macaw|Contact with macaw +C2905013|T033|AB|W61.1|ICD10CM|Contact with macaw|Contact with macaw +C2905014|T037|AB|W61.11|ICD10CM|Bitten by macaw|Bitten by macaw +C2905014|T037|HT|W61.11|ICD10CM|Bitten by macaw|Bitten by macaw +C2905015|T037|PT|W61.11XA|ICD10CM|Bitten by macaw, initial encounter|Bitten by macaw, initial encounter +C2905015|T037|AB|W61.11XA|ICD10CM|Bitten by macaw, initial encounter|Bitten by macaw, initial encounter +C2905016|T037|PT|W61.11XD|ICD10CM|Bitten by macaw, subsequent encounter|Bitten by macaw, subsequent encounter +C2905016|T037|AB|W61.11XD|ICD10CM|Bitten by macaw, subsequent encounter|Bitten by macaw, subsequent encounter +C2905017|T037|PT|W61.11XS|ICD10CM|Bitten by macaw, sequela|Bitten by macaw, sequela +C2905017|T037|AB|W61.11XS|ICD10CM|Bitten by macaw, sequela|Bitten by macaw, sequela +C2905018|T037|AB|W61.12|ICD10CM|Struck by macaw|Struck by macaw +C2905018|T037|HT|W61.12|ICD10CM|Struck by macaw|Struck by macaw +C2905019|T037|PT|W61.12XA|ICD10CM|Struck by macaw, initial encounter|Struck by macaw, initial encounter +C2905019|T037|AB|W61.12XA|ICD10CM|Struck by macaw, initial encounter|Struck by macaw, initial encounter +C2905020|T037|PT|W61.12XD|ICD10CM|Struck by macaw, subsequent encounter|Struck by macaw, subsequent encounter +C2905020|T037|AB|W61.12XD|ICD10CM|Struck by macaw, subsequent encounter|Struck by macaw, subsequent encounter +C2905021|T037|PT|W61.12XS|ICD10CM|Struck by macaw, sequela|Struck by macaw, sequela +C2905021|T037|AB|W61.12XS|ICD10CM|Struck by macaw, sequela|Struck by macaw, sequela +C2905022|T037|ET|W61.19|ICD10CM|Exposure to macaws|Exposure to macaws +C2905023|T037|AB|W61.19|ICD10CM|Other contact with macaw|Other contact with macaw +C2905023|T037|HT|W61.19|ICD10CM|Other contact with macaw|Other contact with macaw +C2905024|T037|AB|W61.19XA|ICD10CM|Other contact with macaw, initial encounter|Other contact with macaw, initial encounter +C2905024|T037|PT|W61.19XA|ICD10CM|Other contact with macaw, initial encounter|Other contact with macaw, initial encounter +C2905025|T037|AB|W61.19XD|ICD10CM|Other contact with macaw, subsequent encounter|Other contact with macaw, subsequent encounter +C2905025|T037|PT|W61.19XD|ICD10CM|Other contact with macaw, subsequent encounter|Other contact with macaw, subsequent encounter +C2905026|T037|AB|W61.19XS|ICD10CM|Other contact with macaw, sequela|Other contact with macaw, sequela +C2905026|T037|PT|W61.19XS|ICD10CM|Other contact with macaw, sequela|Other contact with macaw, sequela +C2905027|T037|AB|W61.2|ICD10CM|Contact with other psittacines|Contact with other psittacines +C2905027|T037|HT|W61.2|ICD10CM|Contact with other psittacines|Contact with other psittacines +C2905028|T037|AB|W61.21|ICD10CM|Bitten by other psittacines|Bitten by other psittacines +C2905028|T037|HT|W61.21|ICD10CM|Bitten by other psittacines|Bitten by other psittacines +C2905029|T037|PT|W61.21XA|ICD10CM|Bitten by other psittacines, initial encounter|Bitten by other psittacines, initial encounter +C2905029|T037|AB|W61.21XA|ICD10CM|Bitten by other psittacines, initial encounter|Bitten by other psittacines, initial encounter +C2905030|T037|PT|W61.21XD|ICD10CM|Bitten by other psittacines, subsequent encounter|Bitten by other psittacines, subsequent encounter +C2905030|T037|AB|W61.21XD|ICD10CM|Bitten by other psittacines, subsequent encounter|Bitten by other psittacines, subsequent encounter +C2905031|T037|PT|W61.21XS|ICD10CM|Bitten by other psittacines, sequela|Bitten by other psittacines, sequela +C2905031|T037|AB|W61.21XS|ICD10CM|Bitten by other psittacines, sequela|Bitten by other psittacines, sequela +C2905032|T037|AB|W61.22|ICD10CM|Struck by other psittacines|Struck by other psittacines +C2905032|T037|HT|W61.22|ICD10CM|Struck by other psittacines|Struck by other psittacines +C2905033|T037|PT|W61.22XA|ICD10CM|Struck by other psittacines, initial encounter|Struck by other psittacines, initial encounter +C2905033|T037|AB|W61.22XA|ICD10CM|Struck by other psittacines, initial encounter|Struck by other psittacines, initial encounter +C2905034|T037|PT|W61.22XD|ICD10CM|Struck by other psittacines, subsequent encounter|Struck by other psittacines, subsequent encounter +C2905034|T037|AB|W61.22XD|ICD10CM|Struck by other psittacines, subsequent encounter|Struck by other psittacines, subsequent encounter +C2905035|T037|PT|W61.22XS|ICD10CM|Struck by other psittacines, sequela|Struck by other psittacines, sequela +C2905035|T037|AB|W61.22XS|ICD10CM|Struck by other psittacines, sequela|Struck by other psittacines, sequela +C2905036|T037|ET|W61.29|ICD10CM|Exposure to other psittacines|Exposure to other psittacines +C2905037|T037|AB|W61.29|ICD10CM|Other contact with other psittacines|Other contact with other psittacines +C2905037|T037|HT|W61.29|ICD10CM|Other contact with other psittacines|Other contact with other psittacines +C2905038|T037|AB|W61.29XA|ICD10CM|Other contact with other psittacines, initial encounter|Other contact with other psittacines, initial encounter +C2905038|T037|PT|W61.29XA|ICD10CM|Other contact with other psittacines, initial encounter|Other contact with other psittacines, initial encounter +C2905039|T037|AB|W61.29XD|ICD10CM|Other contact with other psittacines, subsequent encounter|Other contact with other psittacines, subsequent encounter +C2905039|T037|PT|W61.29XD|ICD10CM|Other contact with other psittacines, subsequent encounter|Other contact with other psittacines, subsequent encounter +C2905040|T037|AB|W61.29XS|ICD10CM|Other contact with other psittacines, sequela|Other contact with other psittacines, sequela +C2905040|T037|PT|W61.29XS|ICD10CM|Other contact with other psittacines, sequela|Other contact with other psittacines, sequela +C2905041|T037|AB|W61.3|ICD10CM|Contact with chicken|Contact with chicken +C2905041|T037|HT|W61.3|ICD10CM|Contact with chicken|Contact with chicken +C2905042|T037|AB|W61.32|ICD10CM|Struck by chicken|Struck by chicken +C2905042|T037|HT|W61.32|ICD10CM|Struck by chicken|Struck by chicken +C2905043|T037|PT|W61.32XA|ICD10CM|Struck by chicken, initial encounter|Struck by chicken, initial encounter +C2905043|T037|AB|W61.32XA|ICD10CM|Struck by chicken, initial encounter|Struck by chicken, initial encounter +C2905044|T037|PT|W61.32XD|ICD10CM|Struck by chicken, subsequent encounter|Struck by chicken, subsequent encounter +C2905044|T037|AB|W61.32XD|ICD10CM|Struck by chicken, subsequent encounter|Struck by chicken, subsequent encounter +C2905045|T037|PT|W61.32XS|ICD10CM|Struck by chicken, sequela|Struck by chicken, sequela +C2905045|T037|AB|W61.32XS|ICD10CM|Struck by chicken, sequela|Struck by chicken, sequela +C2905046|T037|AB|W61.33|ICD10CM|Pecked by chicken|Pecked by chicken +C2905046|T037|HT|W61.33|ICD10CM|Pecked by chicken|Pecked by chicken +C2905047|T037|PT|W61.33XA|ICD10CM|Pecked by chicken, initial encounter|Pecked by chicken, initial encounter +C2905047|T037|AB|W61.33XA|ICD10CM|Pecked by chicken, initial encounter|Pecked by chicken, initial encounter +C2905048|T037|PT|W61.33XD|ICD10CM|Pecked by chicken, subsequent encounter|Pecked by chicken, subsequent encounter +C2905048|T037|AB|W61.33XD|ICD10CM|Pecked by chicken, subsequent encounter|Pecked by chicken, subsequent encounter +C2905049|T037|PT|W61.33XS|ICD10CM|Pecked by chicken, sequela|Pecked by chicken, sequela +C2905049|T037|AB|W61.33XS|ICD10CM|Pecked by chicken, sequela|Pecked by chicken, sequela +C0239044|T037|ET|W61.39|ICD10CM|Exposure to chickens|Exposure to chickens +C2905050|T037|AB|W61.39|ICD10CM|Other contact with chicken|Other contact with chicken +C2905050|T037|HT|W61.39|ICD10CM|Other contact with chicken|Other contact with chicken +C2905051|T037|AB|W61.39XA|ICD10CM|Other contact with chicken, initial encounter|Other contact with chicken, initial encounter +C2905051|T037|PT|W61.39XA|ICD10CM|Other contact with chicken, initial encounter|Other contact with chicken, initial encounter +C2905052|T037|AB|W61.39XD|ICD10CM|Other contact with chicken, subsequent encounter|Other contact with chicken, subsequent encounter +C2905052|T037|PT|W61.39XD|ICD10CM|Other contact with chicken, subsequent encounter|Other contact with chicken, subsequent encounter +C2905053|T037|AB|W61.39XS|ICD10CM|Other contact with chicken, sequela|Other contact with chicken, sequela +C2905053|T037|PT|W61.39XS|ICD10CM|Other contact with chicken, sequela|Other contact with chicken, sequela +C2905054|T033|HT|W61.4|ICD10CM|Contact with turkey|Contact with turkey +C2905054|T033|AB|W61.4|ICD10CM|Contact with turkey|Contact with turkey +C2905055|T037|AB|W61.42|ICD10CM|Struck by turkey|Struck by turkey +C2905055|T037|HT|W61.42|ICD10CM|Struck by turkey|Struck by turkey +C2905056|T037|PT|W61.42XA|ICD10CM|Struck by turkey, initial encounter|Struck by turkey, initial encounter +C2905056|T037|AB|W61.42XA|ICD10CM|Struck by turkey, initial encounter|Struck by turkey, initial encounter +C2905057|T037|PT|W61.42XD|ICD10CM|Struck by turkey, subsequent encounter|Struck by turkey, subsequent encounter +C2905057|T037|AB|W61.42XD|ICD10CM|Struck by turkey, subsequent encounter|Struck by turkey, subsequent encounter +C2905058|T037|PT|W61.42XS|ICD10CM|Struck by turkey, sequela|Struck by turkey, sequela +C2905058|T037|AB|W61.42XS|ICD10CM|Struck by turkey, sequela|Struck by turkey, sequela +C2905059|T037|AB|W61.43|ICD10CM|Pecked by turkey|Pecked by turkey +C2905059|T037|HT|W61.43|ICD10CM|Pecked by turkey|Pecked by turkey +C2905060|T037|PT|W61.43XA|ICD10CM|Pecked by turkey, initial encounter|Pecked by turkey, initial encounter +C2905060|T037|AB|W61.43XA|ICD10CM|Pecked by turkey, initial encounter|Pecked by turkey, initial encounter +C2905061|T037|PT|W61.43XD|ICD10CM|Pecked by turkey, subsequent encounter|Pecked by turkey, subsequent encounter +C2905061|T037|AB|W61.43XD|ICD10CM|Pecked by turkey, subsequent encounter|Pecked by turkey, subsequent encounter +C2905062|T037|PT|W61.43XS|ICD10CM|Pecked by turkey, sequela|Pecked by turkey, sequela +C2905062|T037|AB|W61.43XS|ICD10CM|Pecked by turkey, sequela|Pecked by turkey, sequela +C2905063|T037|AB|W61.49|ICD10CM|Other contact with turkey|Other contact with turkey +C2905063|T037|HT|W61.49|ICD10CM|Other contact with turkey|Other contact with turkey +C2905064|T037|AB|W61.49XA|ICD10CM|Other contact with turkey, initial encounter|Other contact with turkey, initial encounter +C2905064|T037|PT|W61.49XA|ICD10CM|Other contact with turkey, initial encounter|Other contact with turkey, initial encounter +C2905065|T037|AB|W61.49XD|ICD10CM|Other contact with turkey, subsequent encounter|Other contact with turkey, subsequent encounter +C2905065|T037|PT|W61.49XD|ICD10CM|Other contact with turkey, subsequent encounter|Other contact with turkey, subsequent encounter +C2905066|T037|AB|W61.49XS|ICD10CM|Other contact with turkey, sequela|Other contact with turkey, sequela +C2905066|T037|PT|W61.49XS|ICD10CM|Other contact with turkey, sequela|Other contact with turkey, sequela +C2905067|T033|HT|W61.5|ICD10CM|Contact with goose|Contact with goose +C2905067|T033|AB|W61.5|ICD10CM|Contact with goose|Contact with goose +C2905068|T037|AB|W61.51|ICD10CM|Bitten by goose|Bitten by goose +C2905068|T037|HT|W61.51|ICD10CM|Bitten by goose|Bitten by goose +C2905069|T037|PT|W61.51XA|ICD10CM|Bitten by goose, initial encounter|Bitten by goose, initial encounter +C2905069|T037|AB|W61.51XA|ICD10CM|Bitten by goose, initial encounter|Bitten by goose, initial encounter +C2905070|T037|PT|W61.51XD|ICD10CM|Bitten by goose, subsequent encounter|Bitten by goose, subsequent encounter +C2905070|T037|AB|W61.51XD|ICD10CM|Bitten by goose, subsequent encounter|Bitten by goose, subsequent encounter +C2905071|T037|PT|W61.51XS|ICD10CM|Bitten by goose, sequela|Bitten by goose, sequela +C2905071|T037|AB|W61.51XS|ICD10CM|Bitten by goose, sequela|Bitten by goose, sequela +C2905072|T037|AB|W61.52|ICD10CM|Struck by goose|Struck by goose +C2905072|T037|HT|W61.52|ICD10CM|Struck by goose|Struck by goose +C2905073|T037|PT|W61.52XA|ICD10CM|Struck by goose, initial encounter|Struck by goose, initial encounter +C2905073|T037|AB|W61.52XA|ICD10CM|Struck by goose, initial encounter|Struck by goose, initial encounter +C2905074|T037|PT|W61.52XD|ICD10CM|Struck by goose, subsequent encounter|Struck by goose, subsequent encounter +C2905074|T037|AB|W61.52XD|ICD10CM|Struck by goose, subsequent encounter|Struck by goose, subsequent encounter +C2905075|T037|PT|W61.52XS|ICD10CM|Struck by goose, sequela|Struck by goose, sequela +C2905075|T037|AB|W61.52XS|ICD10CM|Struck by goose, sequela|Struck by goose, sequela +C2905076|T037|AB|W61.59|ICD10CM|Other contact with goose|Other contact with goose +C2905076|T037|HT|W61.59|ICD10CM|Other contact with goose|Other contact with goose +C2905077|T037|AB|W61.59XA|ICD10CM|Other contact with goose, initial encounter|Other contact with goose, initial encounter +C2905077|T037|PT|W61.59XA|ICD10CM|Other contact with goose, initial encounter|Other contact with goose, initial encounter +C2905078|T037|AB|W61.59XD|ICD10CM|Other contact with goose, subsequent encounter|Other contact with goose, subsequent encounter +C2905078|T037|PT|W61.59XD|ICD10CM|Other contact with goose, subsequent encounter|Other contact with goose, subsequent encounter +C2905079|T037|AB|W61.59XS|ICD10CM|Other contact with goose, sequela|Other contact with goose, sequela +C2905079|T037|PT|W61.59XS|ICD10CM|Other contact with goose, sequela|Other contact with goose, sequela +C2905080|T033|HT|W61.6|ICD10CM|Contact with duck|Contact with duck +C2905080|T033|AB|W61.6|ICD10CM|Contact with duck|Contact with duck +C2905081|T037|AB|W61.61|ICD10CM|Bitten by duck|Bitten by duck +C2905081|T037|HT|W61.61|ICD10CM|Bitten by duck|Bitten by duck +C2905082|T037|PT|W61.61XA|ICD10CM|Bitten by duck, initial encounter|Bitten by duck, initial encounter +C2905082|T037|AB|W61.61XA|ICD10CM|Bitten by duck, initial encounter|Bitten by duck, initial encounter +C2905083|T037|PT|W61.61XD|ICD10CM|Bitten by duck, subsequent encounter|Bitten by duck, subsequent encounter +C2905083|T037|AB|W61.61XD|ICD10CM|Bitten by duck, subsequent encounter|Bitten by duck, subsequent encounter +C2905084|T037|PT|W61.61XS|ICD10CM|Bitten by duck, sequela|Bitten by duck, sequela +C2905084|T037|AB|W61.61XS|ICD10CM|Bitten by duck, sequela|Bitten by duck, sequela +C2905085|T037|AB|W61.62|ICD10CM|Struck by duck|Struck by duck +C2905085|T037|HT|W61.62|ICD10CM|Struck by duck|Struck by duck +C2905086|T037|PT|W61.62XA|ICD10CM|Struck by duck, initial encounter|Struck by duck, initial encounter +C2905086|T037|AB|W61.62XA|ICD10CM|Struck by duck, initial encounter|Struck by duck, initial encounter +C2905087|T037|PT|W61.62XD|ICD10CM|Struck by duck, subsequent encounter|Struck by duck, subsequent encounter +C2905087|T037|AB|W61.62XD|ICD10CM|Struck by duck, subsequent encounter|Struck by duck, subsequent encounter +C2905088|T037|PT|W61.62XS|ICD10CM|Struck by duck, sequela|Struck by duck, sequela +C2905088|T037|AB|W61.62XS|ICD10CM|Struck by duck, sequela|Struck by duck, sequela +C2905089|T037|AB|W61.69|ICD10CM|Other contact with duck|Other contact with duck +C2905089|T037|HT|W61.69|ICD10CM|Other contact with duck|Other contact with duck +C2905090|T037|AB|W61.69XA|ICD10CM|Other contact with duck, initial encounter|Other contact with duck, initial encounter +C2905090|T037|PT|W61.69XA|ICD10CM|Other contact with duck, initial encounter|Other contact with duck, initial encounter +C2905091|T037|AB|W61.69XD|ICD10CM|Other contact with duck, subsequent encounter|Other contact with duck, subsequent encounter +C2905091|T037|PT|W61.69XD|ICD10CM|Other contact with duck, subsequent encounter|Other contact with duck, subsequent encounter +C2905092|T037|AB|W61.69XS|ICD10CM|Other contact with duck, sequela|Other contact with duck, sequela +C2905092|T037|PT|W61.69XS|ICD10CM|Other contact with duck, sequela|Other contact with duck, sequela +C2905093|T037|AB|W61.9|ICD10CM|Contact with other birds|Contact with other birds +C2905093|T037|HT|W61.9|ICD10CM|Contact with other birds|Contact with other birds +C2905094|T037|AB|W61.91|ICD10CM|Bitten by other birds|Bitten by other birds +C2905094|T037|HT|W61.91|ICD10CM|Bitten by other birds|Bitten by other birds +C2905095|T037|PT|W61.91XA|ICD10CM|Bitten by other birds, initial encounter|Bitten by other birds, initial encounter +C2905095|T037|AB|W61.91XA|ICD10CM|Bitten by other birds, initial encounter|Bitten by other birds, initial encounter +C2905096|T037|PT|W61.91XD|ICD10CM|Bitten by other birds, subsequent encounter|Bitten by other birds, subsequent encounter +C2905096|T037|AB|W61.91XD|ICD10CM|Bitten by other birds, subsequent encounter|Bitten by other birds, subsequent encounter +C2905097|T037|PT|W61.91XS|ICD10CM|Bitten by other birds, sequela|Bitten by other birds, sequela +C2905097|T037|AB|W61.91XS|ICD10CM|Bitten by other birds, sequela|Bitten by other birds, sequela +C2905098|T037|AB|W61.92|ICD10CM|Struck by other birds|Struck by other birds +C2905098|T037|HT|W61.92|ICD10CM|Struck by other birds|Struck by other birds +C2905099|T037|PT|W61.92XA|ICD10CM|Struck by other birds, initial encounter|Struck by other birds, initial encounter +C2905099|T037|AB|W61.92XA|ICD10CM|Struck by other birds, initial encounter|Struck by other birds, initial encounter +C2905100|T037|PT|W61.92XD|ICD10CM|Struck by other birds, subsequent encounter|Struck by other birds, subsequent encounter +C2905100|T037|AB|W61.92XD|ICD10CM|Struck by other birds, subsequent encounter|Struck by other birds, subsequent encounter +C2905101|T037|PT|W61.92XS|ICD10CM|Struck by other birds, sequela|Struck by other birds, sequela +C2905101|T037|AB|W61.92XS|ICD10CM|Struck by other birds, sequela|Struck by other birds, sequela +C2977305|T033|ET|W61.99|ICD10CM|Contact with bird NOS|Contact with bird NOS +C2905102|T037|AB|W61.99|ICD10CM|Other contact with other birds|Other contact with other birds +C2905102|T037|HT|W61.99|ICD10CM|Other contact with other birds|Other contact with other birds +C2905103|T037|AB|W61.99XA|ICD10CM|Other contact with other birds, initial encounter|Other contact with other birds, initial encounter +C2905103|T037|PT|W61.99XA|ICD10CM|Other contact with other birds, initial encounter|Other contact with other birds, initial encounter +C2905104|T037|AB|W61.99XD|ICD10CM|Other contact with other birds, subsequent encounter|Other contact with other birds, subsequent encounter +C2905104|T037|PT|W61.99XD|ICD10CM|Other contact with other birds, subsequent encounter|Other contact with other birds, subsequent encounter +C2905105|T037|AB|W61.99XS|ICD10CM|Other contact with other birds, sequela|Other contact with other birds, sequela +C2905105|T037|PT|W61.99XS|ICD10CM|Other contact with other birds, sequela|Other contact with other birds, sequela +C2905106|T037|HT|W62|ICD10CM|Contact with nonvenomous amphibians|Contact with nonvenomous amphibians +C2905106|T037|AB|W62|ICD10CM|Contact with nonvenomous amphibians|Contact with nonvenomous amphibians +C2905107|T037|AB|W62.0|ICD10CM|Contact with nonvenomous frogs|Contact with nonvenomous frogs +C2905107|T037|HT|W62.0|ICD10CM|Contact with nonvenomous frogs|Contact with nonvenomous frogs +C2905108|T037|AB|W62.0XXA|ICD10CM|Contact with nonvenomous frogs, initial encounter|Contact with nonvenomous frogs, initial encounter +C2905108|T037|PT|W62.0XXA|ICD10CM|Contact with nonvenomous frogs, initial encounter|Contact with nonvenomous frogs, initial encounter +C2905109|T037|AB|W62.0XXD|ICD10CM|Contact with nonvenomous frogs, subsequent encounter|Contact with nonvenomous frogs, subsequent encounter +C2905109|T037|PT|W62.0XXD|ICD10CM|Contact with nonvenomous frogs, subsequent encounter|Contact with nonvenomous frogs, subsequent encounter +C2905110|T037|AB|W62.0XXS|ICD10CM|Contact with nonvenomous frogs, sequela|Contact with nonvenomous frogs, sequela +C2905110|T037|PT|W62.0XXS|ICD10CM|Contact with nonvenomous frogs, sequela|Contact with nonvenomous frogs, sequela +C2905111|T037|AB|W62.1|ICD10CM|Contact with nonvenomous toads|Contact with nonvenomous toads +C2905111|T037|HT|W62.1|ICD10CM|Contact with nonvenomous toads|Contact with nonvenomous toads +C2905112|T037|AB|W62.1XXA|ICD10CM|Contact with nonvenomous toads, initial encounter|Contact with nonvenomous toads, initial encounter +C2905112|T037|PT|W62.1XXA|ICD10CM|Contact with nonvenomous toads, initial encounter|Contact with nonvenomous toads, initial encounter +C2905113|T037|AB|W62.1XXD|ICD10CM|Contact with nonvenomous toads, subsequent encounter|Contact with nonvenomous toads, subsequent encounter +C2905113|T037|PT|W62.1XXD|ICD10CM|Contact with nonvenomous toads, subsequent encounter|Contact with nonvenomous toads, subsequent encounter +C2905114|T037|AB|W62.1XXS|ICD10CM|Contact with nonvenomous toads, sequela|Contact with nonvenomous toads, sequela +C2905114|T037|PT|W62.1XXS|ICD10CM|Contact with nonvenomous toads, sequela|Contact with nonvenomous toads, sequela +C2905115|T037|AB|W62.9|ICD10CM|Contact with other nonvenomous amphibians|Contact with other nonvenomous amphibians +C2905115|T037|HT|W62.9|ICD10CM|Contact with other nonvenomous amphibians|Contact with other nonvenomous amphibians +C2905116|T037|AB|W62.9XXA|ICD10CM|Contact with other nonvenomous amphibians, initial encounter|Contact with other nonvenomous amphibians, initial encounter +C2905116|T037|PT|W62.9XXA|ICD10CM|Contact with other nonvenomous amphibians, initial encounter|Contact with other nonvenomous amphibians, initial encounter +C2905117|T037|AB|W62.9XXD|ICD10CM|Contact with other nonvenomous amphibians, subs encntr|Contact with other nonvenomous amphibians, subs encntr +C2905117|T037|PT|W62.9XXD|ICD10CM|Contact with other nonvenomous amphibians, subsequent encounter|Contact with other nonvenomous amphibians, subsequent encounter +C2905118|T037|AB|W62.9XXS|ICD10CM|Contact with other nonvenomous amphibians, sequela|Contact with other nonvenomous amphibians, sequela +C2905118|T037|PT|W62.9XXS|ICD10CM|Contact with other nonvenomous amphibians, sequela|Contact with other nonvenomous amphibians, sequela +C4290481|T037|ET|W64|ICD10CM|exposure to nonvenomous animal NOS|exposure to nonvenomous animal NOS +C0479282|T037|PT|W64|ICD10|Exposure to other and unspecified animate mechanical forces|Exposure to other and unspecified animate mechanical forces +C2905120|T037|HT|W64|ICD10CM|Exposure to other animate mechanical forces|Exposure to other animate mechanical forces +C2905120|T037|AB|W64|ICD10CM|Exposure to other animate mechanical forces|Exposure to other animate mechanical forces +C2905121|T037|AB|W64.XXXA|ICD10CM|Exposure to other animate mechanical forces, init encntr|Exposure to other animate mechanical forces, init encntr +C2905121|T037|PT|W64.XXXA|ICD10CM|Exposure to other animate mechanical forces, initial encounter|Exposure to other animate mechanical forces, initial encounter +C2905122|T037|AB|W64.XXXD|ICD10CM|Exposure to other animate mechanical forces, subs encntr|Exposure to other animate mechanical forces, subs encntr +C2905122|T037|PT|W64.XXXD|ICD10CM|Exposure to other animate mechanical forces, subsequent encounter|Exposure to other animate mechanical forces, subsequent encounter +C2905123|T037|AB|W64.XXXS|ICD10CM|Exposure to other animate mechanical forces, sequela|Exposure to other animate mechanical forces, sequela +C2905123|T037|PT|W64.XXXS|ICD10CM|Exposure to other animate mechanical forces, sequela|Exposure to other animate mechanical forces, sequela +C2905124|T037|AB|W65|ICD10CM|Accidental drowning and submersion while in bath-tub|Accidental drowning and submersion while in bath-tub +C2905124|T037|HT|W65|ICD10CM|Accidental drowning and submersion while in bath-tub|Accidental drowning and submersion while in bath-tub +C0496504|T037|PT|W65|ICD10|Drowning and submersion while in bath-tub|Drowning and submersion while in bath-tub +C2905125|T037|HT|W65-W74|ICD10CM|Accidental non-transport drowning and submersion (W65-W74)|Accidental non-transport drowning and submersion (W65-W74) +C0261678|T037|HT|W65-W74.9|ICD10|Accidental drowning and submersion|Accidental drowning and submersion +C2905126|T037|AB|W65.XXXA|ICD10CM|Accidental drowning and submersion while in bath-tub, init|Accidental drowning and submersion while in bath-tub, init +C2905126|T037|PT|W65.XXXA|ICD10CM|Accidental drowning and submersion while in bath-tub, initial encounter|Accidental drowning and submersion while in bath-tub, initial encounter +C2905127|T037|AB|W65.XXXD|ICD10CM|Accidental drowning and submersion while in bath-tub, subs|Accidental drowning and submersion while in bath-tub, subs +C2905127|T037|PT|W65.XXXD|ICD10CM|Accidental drowning and submersion while in bath-tub, subsequent encounter|Accidental drowning and submersion while in bath-tub, subsequent encounter +C2905128|T037|AB|W65.XXXS|ICD10CM|Accidental drown while in bath-tub, sequela|Accidental drown while in bath-tub, sequela +C2905128|T037|PT|W65.XXXS|ICD10CM|Accidental drowning and submersion while in bath-tub, sequela|Accidental drowning and submersion while in bath-tub, sequela +C0479303|T037|PT|W66|ICD10|Drowning and submersion following fall into bath-tub|Drowning and submersion following fall into bath-tub +C2905129|T037|AB|W67|ICD10CM|Accidental drowning and submersion while in swimming-pool|Accidental drowning and submersion while in swimming-pool +C2905129|T037|HT|W67|ICD10CM|Accidental drowning and submersion while in swimming-pool|Accidental drowning and submersion while in swimming-pool +C0496505|T037|PT|W67|ICD10|Drowning and submersion while in swimming-pool|Drowning and submersion while in swimming-pool +C2905130|T037|AB|W67.XXXA|ICD10CM|Accidental drown while in swimming-pool, init|Accidental drown while in swimming-pool, init +C2905130|T037|PT|W67.XXXA|ICD10CM|Accidental drowning and submersion while in swimming-pool, initial encounter|Accidental drowning and submersion while in swimming-pool, initial encounter +C2905131|T037|AB|W67.XXXD|ICD10CM|Accidental drown while in swimming-pool, subs|Accidental drown while in swimming-pool, subs +C2905131|T037|PT|W67.XXXD|ICD10CM|Accidental drowning and submersion while in swimming-pool, subsequent encounter|Accidental drowning and submersion while in swimming-pool, subsequent encounter +C2905132|T037|AB|W67.XXXS|ICD10CM|Accidental drown while in swimming-pool, sequela|Accidental drown while in swimming-pool, sequela +C2905132|T037|PT|W67.XXXS|ICD10CM|Accidental drowning and submersion while in swimming-pool, sequela|Accidental drowning and submersion while in swimming-pool, sequela +C0479324|T037|PT|W68|ICD10|Drowning and submersion following fall into swimming-pool|Drowning and submersion following fall into swimming-pool +C2905133|T037|ET|W69|ICD10CM|Accidental drowning and submersion while in lake|Accidental drowning and submersion while in lake +C2905137|T037|AB|W69|ICD10CM|Accidental drowning and submersion while in natural water|Accidental drowning and submersion while in natural water +C2905137|T037|HT|W69|ICD10CM|Accidental drowning and submersion while in natural water|Accidental drowning and submersion while in natural water +C2905134|T037|ET|W69|ICD10CM|Accidental drowning and submersion while in open sea|Accidental drowning and submersion while in open sea +C2905135|T037|ET|W69|ICD10CM|Accidental drowning and submersion while in river|Accidental drowning and submersion while in river +C2905136|T037|ET|W69|ICD10CM|Accidental drowning and submersion while in stream|Accidental drowning and submersion while in stream +C0496506|T037|PT|W69|ICD10|Drowning and submersion while in natural water|Drowning and submersion while in natural water +C2905138|T037|AB|W69.XXXA|ICD10CM|Accidental drown while in natural water, init|Accidental drown while in natural water, init +C2905138|T037|PT|W69.XXXA|ICD10CM|Accidental drowning and submersion while in natural water, initial encounter|Accidental drowning and submersion while in natural water, initial encounter +C2905139|T037|AB|W69.XXXD|ICD10CM|Accidental drown while in natural water, subs|Accidental drown while in natural water, subs +C2905139|T037|PT|W69.XXXD|ICD10CM|Accidental drowning and submersion while in natural water, subsequent encounter|Accidental drowning and submersion while in natural water, subsequent encounter +C2905140|T037|AB|W69.XXXS|ICD10CM|Accidental drown while in natural water, sequela|Accidental drown while in natural water, sequela +C2905140|T037|PT|W69.XXXS|ICD10CM|Accidental drowning and submersion while in natural water, sequela|Accidental drowning and submersion while in natural water, sequela +C0479345|T037|PT|W70|ICD10|Drowning and submersion following fall into natural water|Drowning and submersion following fall into natural water +C2905141|T037|ET|W73|ICD10CM|Accidental drowning and submersion while in quenching tank|Accidental drowning and submersion while in quenching tank +C2905142|T037|ET|W73|ICD10CM|Accidental drowning and submersion while in reservoir|Accidental drowning and submersion while in reservoir +C2905143|T037|AB|W73|ICD10CM|Oth cause of accidental non-transport drown|Oth cause of accidental non-transport drown +C2905143|T037|HT|W73|ICD10CM|Other specified cause of accidental non-transport drowning and submersion|Other specified cause of accidental non-transport drowning and submersion +C0479356|T037|PT|W73|ICD10|Other specified drowning and submersion|Other specified drowning and submersion +C2905144|T037|AB|W73.XXXA|ICD10CM|Oth cause of accidental non-transport drown, init|Oth cause of accidental non-transport drown, init +C2905144|T037|PT|W73.XXXA|ICD10CM|Other specified cause of accidental non-transport drowning and submersion, initial encounter|Other specified cause of accidental non-transport drowning and submersion, initial encounter +C2905145|T037|AB|W73.XXXD|ICD10CM|Oth cause of accidental non-transport drown, subs|Oth cause of accidental non-transport drown, subs +C2905145|T037|PT|W73.XXXD|ICD10CM|Other specified cause of accidental non-transport drowning and submersion, subsequent encounter|Other specified cause of accidental non-transport drowning and submersion, subsequent encounter +C2905146|T037|AB|W73.XXXS|ICD10CM|Oth cause of accidental non-transport drown, sequela|Oth cause of accidental non-transport drown, sequela +C2905146|T037|PT|W73.XXXS|ICD10CM|Other specified cause of accidental non-transport drowning and submersion, sequela|Other specified cause of accidental non-transport drowning and submersion, sequela +C0013142|T037|ET|W74|ICD10CM|Drowning NOS|Drowning NOS +C2905147|T037|AB|W74|ICD10CM|Unspecified cause of accidental drowning and submersion|Unspecified cause of accidental drowning and submersion +C2905147|T037|HT|W74|ICD10CM|Unspecified cause of accidental drowning and submersion|Unspecified cause of accidental drowning and submersion +C0496507|T037|PT|W74|ICD10|Unspecified drowning and submersion|Unspecified drowning and submersion +C2905148|T037|AB|W74.XXXA|ICD10CM|Unsp cause of accidental drowning and submersion, init|Unsp cause of accidental drowning and submersion, init +C2905148|T037|PT|W74.XXXA|ICD10CM|Unspecified cause of accidental drowning and submersion, initial encounter|Unspecified cause of accidental drowning and submersion, initial encounter +C2905149|T037|AB|W74.XXXD|ICD10CM|Unsp cause of accidental drowning and submersion, subs|Unsp cause of accidental drowning and submersion, subs +C2905149|T037|PT|W74.XXXD|ICD10CM|Unspecified cause of accidental drowning and submersion, subsequent encounter|Unspecified cause of accidental drowning and submersion, subsequent encounter +C2905150|T037|AB|W74.XXXS|ICD10CM|Unsp cause of accidental drowning and submersion, sequela|Unsp cause of accidental drowning and submersion, sequela +C2905150|T037|PT|W74.XXXS|ICD10CM|Unspecified cause of accidental drowning and submersion, sequela|Unspecified cause of accidental drowning and submersion, sequela +C0479378|T037|PT|W75|ICD10|Accidental suffocation and strangulation in bed|Accidental suffocation and strangulation in bed +C0479377|T037|HT|W75-W84.9|ICD10|Other accidental threats to breathing|Other accidental threats to breathing +C0479389|T037|PT|W76|ICD10|Other accidental hanging and strangulation|Other accidental hanging and strangulation +C0479400|T037|PT|W77|ICD10|Threat to breathing due to cave-in, falling earth and other substances|Threat to breathing due to cave-in, falling earth and other substances +C0004052|T037|PS|W78|ICD10|Inhalation of gastric contents|Inhalation of gastric contents +C0004052|T037|PX|W78|ICD10|Inhalation of gastric contents as an external cause of morbidity and mortality|Inhalation of gastric contents as an external cause of morbidity and mortality +C0497037|T037|PS|W79|ICD10|Inhalation and ingestion of food causing obstruction of respiratory tract|Inhalation and ingestion of food causing obstruction of respiratory tract +C0479431|T037|PS|W80|ICD10|Inhalation and ingestion of other objects causing obstruction of respiratory tract|Inhalation and ingestion of other objects causing obstruction of respiratory tract +C0479442|T037|PS|W81|ICD10|Confined to or trapped in a low-oxygen environment|Confined to or trapped in a low-oxygen environment +C0479442|T037|PX|W81|ICD10|Confined to or trapped in a low-oxygen environment as an external cause of morbidity and mortality|Confined to or trapped in a low-oxygen environment as an external cause of morbidity and mortality +C0479462|T037|PS|W83|ICD10|Other specified threats to breathing|Other specified threats to breathing +C0479462|T037|PX|W83|ICD10|Other specified threats to breathing as an external cause of morbidity and mortality|Other specified threats to breathing as an external cause of morbidity and mortality +C0479463|T037|PS|W84|ICD10|Unspecified threat to breathing|Unspecified threat to breathing +C0479463|T037|PX|W84|ICD10|Unspecified threat to breathing as an external cause of morbidity and mortality|Unspecified threat to breathing as an external cause of morbidity and mortality +C2905151|T037|ET|W85|ICD10CM|Broken power line|Broken power line +C0479483|T037|PS|W85|ICD10|Exposure to electric transmission lines|Exposure to electric transmission lines +C0479483|T037|HT|W85|ICD10CM|Exposure to electric transmission lines|Exposure to electric transmission lines +C0479483|T037|AB|W85|ICD10CM|Exposure to electric transmission lines|Exposure to electric transmission lines +C0479483|T037|PX|W85|ICD10|Exposure to electric transmission lines as an external cause of morbidity and mortality|Exposure to electric transmission lines as an external cause of morbidity and mortality +C0694465|T037|HT|W85-W99|ICD10CM|Exposure to electric current, radiation and extreme ambient air temperature and pressure (W85-W99)|Exposure to electric current, radiation and extreme ambient air temperature and pressure (W85-W99) +C0694465|T037|HT|W85-W99.9|ICD10|Exposure to electric current, radiation and extreme ambient air temperature and pressure|Exposure to electric current, radiation and extreme ambient air temperature and pressure +C2905152|T037|AB|W85.XXXA|ICD10CM|Exposure to electric transmission lines, initial encounter|Exposure to electric transmission lines, initial encounter +C2905152|T037|PT|W85.XXXA|ICD10CM|Exposure to electric transmission lines, initial encounter|Exposure to electric transmission lines, initial encounter +C2905153|T037|AB|W85.XXXD|ICD10CM|Exposure to electric transmission lines, subs encntr|Exposure to electric transmission lines, subs encntr +C2905153|T037|PT|W85.XXXD|ICD10CM|Exposure to electric transmission lines, subsequent encounter|Exposure to electric transmission lines, subsequent encounter +C2905154|T037|AB|W85.XXXS|ICD10CM|Exposure to electric transmission lines, sequela|Exposure to electric transmission lines, sequela +C2905154|T037|PT|W85.XXXS|ICD10CM|Exposure to electric transmission lines, sequela|Exposure to electric transmission lines, sequela +C0479484|T037|HT|W86|ICD10CM|Exposure to other specified electric current|Exposure to other specified electric current +C0479484|T037|AB|W86|ICD10CM|Exposure to other specified electric current|Exposure to other specified electric current +C0479484|T037|PS|W86|ICD10|Exposure to other specified electric current|Exposure to other specified electric current +C0479484|T037|PX|W86|ICD10|Exposure to other specified electric current as an external cause of morbidity and mortality|Exposure to other specified electric current as an external cause of morbidity and mortality +C2905155|T037|HT|W86.0|ICD10CM|Exposure to domestic wiring and appliances|Exposure to domestic wiring and appliances +C2905155|T037|AB|W86.0|ICD10CM|Exposure to domestic wiring and appliances|Exposure to domestic wiring and appliances +C2905156|T037|AB|W86.0XXA|ICD10CM|Exposure to domestic wiring and appliances, init encntr|Exposure to domestic wiring and appliances, init encntr +C2905156|T037|PT|W86.0XXA|ICD10CM|Exposure to domestic wiring and appliances, initial encounter|Exposure to domestic wiring and appliances, initial encounter +C2905157|T037|AB|W86.0XXD|ICD10CM|Exposure to domestic wiring and appliances, subs encntr|Exposure to domestic wiring and appliances, subs encntr +C2905157|T037|PT|W86.0XXD|ICD10CM|Exposure to domestic wiring and appliances, subsequent encounter|Exposure to domestic wiring and appliances, subsequent encounter +C2905158|T037|AB|W86.0XXS|ICD10CM|Exposure to domestic wiring and appliances, sequela|Exposure to domestic wiring and appliances, sequela +C2905158|T037|PT|W86.0XXS|ICD10CM|Exposure to domestic wiring and appliances, sequela|Exposure to domestic wiring and appliances, sequela +C2905159|T037|ET|W86.1|ICD10CM|Exposure to conductors|Exposure to conductors +C2905160|T037|ET|W86.1|ICD10CM|Exposure to control apparatus|Exposure to control apparatus +C2905161|T037|ET|W86.1|ICD10CM|Exposure to electrical equipment and machinery|Exposure to electrical equipment and machinery +C2905163|T037|AB|W86.1|ICD10CM|Exposure to industr wiring, appliances and electrical mach|Exposure to industr wiring, appliances and electrical mach +C2905163|T037|HT|W86.1|ICD10CM|Exposure to industrial wiring, appliances and electrical machinery|Exposure to industrial wiring, appliances and electrical machinery +C2905162|T037|ET|W86.1|ICD10CM|Exposure to transformers|Exposure to transformers +C2905164|T037|PT|W86.1XXA|ICD10CM|Exposure to industrial wiring, appliances and electrical machinery, initial encounter|Exposure to industrial wiring, appliances and electrical machinery, initial encounter +C2905164|T037|AB|W86.1XXA|ICD10CM|Expsr to industr wiring, appliances & electrical mach, init|Expsr to industr wiring, appliances & electrical mach, init +C2905165|T037|PT|W86.1XXD|ICD10CM|Exposure to industrial wiring, appliances and electrical machinery, subsequent encounter|Exposure to industrial wiring, appliances and electrical machinery, subsequent encounter +C2905165|T037|AB|W86.1XXD|ICD10CM|Expsr to industr wiring, appliances & electrical mach, subs|Expsr to industr wiring, appliances & electrical mach, subs +C2905166|T037|PT|W86.1XXS|ICD10CM|Exposure to industrial wiring, appliances and electrical machinery, sequela|Exposure to industrial wiring, appliances and electrical machinery, sequela +C2905166|T037|AB|W86.1XXS|ICD10CM|Expsr to industr wiring, appliances & electrical mach, sqla|Expsr to industr wiring, appliances & electrical mach, sqla +C2905172|T037|AB|W86.8|ICD10CM|Exposure to other electric current|Exposure to other electric current +C2905172|T037|HT|W86.8|ICD10CM|Exposure to other electric current|Exposure to other electric current +C2905167|T037|ET|W86.8|ICD10CM|Exposure to wiring and appliances in or on farm (not farmhouse)|Exposure to wiring and appliances in or on farm (not farmhouse) +C2905168|T037|ET|W86.8|ICD10CM|Exposure to wiring and appliances in or on public building|Exposure to wiring and appliances in or on public building +C2905169|T037|ET|W86.8|ICD10CM|Exposure to wiring and appliances in or on residential institutions|Exposure to wiring and appliances in or on residential institutions +C2905170|T037|ET|W86.8|ICD10CM|Exposure to wiring and appliances in or on schools|Exposure to wiring and appliances in or on schools +C2905171|T037|ET|W86.8|ICD10CM|Exposure to wiring and appliances outdoors|Exposure to wiring and appliances outdoors +C2905173|T037|AB|W86.8XXA|ICD10CM|Exposure to other electric current, initial encounter|Exposure to other electric current, initial encounter +C2905173|T037|PT|W86.8XXA|ICD10CM|Exposure to other electric current, initial encounter|Exposure to other electric current, initial encounter +C2905174|T037|AB|W86.8XXD|ICD10CM|Exposure to other electric current, subsequent encounter|Exposure to other electric current, subsequent encounter +C2905174|T037|PT|W86.8XXD|ICD10CM|Exposure to other electric current, subsequent encounter|Exposure to other electric current, subsequent encounter +C2905175|T037|AB|W86.8XXS|ICD10CM|Exposure to other electric current, sequela|Exposure to other electric current, sequela +C2905175|T037|PT|W86.8XXS|ICD10CM|Exposure to other electric current, sequela|Exposure to other electric current, sequela +C0479494|T037|PS|W87|ICD10|Exposure to unspecified electric current|Exposure to unspecified electric current +C0479494|T037|PX|W87|ICD10|Exposure to unspecified electric current as an external cause of morbidity and mortality|Exposure to unspecified electric current as an external cause of morbidity and mortality +C0479513|T037|PS|W88|ICD10|Exposure to ionizing radiation|Exposure to ionizing radiation +C0479513|T037|HT|W88|ICD10CM|Exposure to ionizing radiation|Exposure to ionizing radiation +C0479513|T037|AB|W88|ICD10CM|Exposure to ionizing radiation|Exposure to ionizing radiation +C0479513|T037|PX|W88|ICD10|Exposure to ionizing radiation as an external cause of morbidity and mortality|Exposure to ionizing radiation as an external cause of morbidity and mortality +C0868115|T037|AB|W88.0|ICD10CM|Exposure to X-rays|Exposure to X-rays +C0868115|T037|HT|W88.0|ICD10CM|Exposure to X-rays|Exposure to X-rays +C2905176|T037|AB|W88.0XXA|ICD10CM|Exposure to X-rays, initial encounter|Exposure to X-rays, initial encounter +C2905176|T037|PT|W88.0XXA|ICD10CM|Exposure to X-rays, initial encounter|Exposure to X-rays, initial encounter +C2905177|T037|AB|W88.0XXD|ICD10CM|Exposure to X-rays, subsequent encounter|Exposure to X-rays, subsequent encounter +C2905177|T037|PT|W88.0XXD|ICD10CM|Exposure to X-rays, subsequent encounter|Exposure to X-rays, subsequent encounter +C2905178|T037|AB|W88.0XXS|ICD10CM|Exposure to X-rays, sequela|Exposure to X-rays, sequela +C2905178|T037|PT|W88.0XXS|ICD10CM|Exposure to X-rays, sequela|Exposure to X-rays, sequela +C0261750|T037|HT|W88.1|ICD10CM|Exposure to radioactive isotopes|Exposure to radioactive isotopes +C0261750|T037|AB|W88.1|ICD10CM|Exposure to radioactive isotopes|Exposure to radioactive isotopes +C2905179|T037|AB|W88.1XXA|ICD10CM|Exposure to radioactive isotopes, initial encounter|Exposure to radioactive isotopes, initial encounter +C2905179|T037|PT|W88.1XXA|ICD10CM|Exposure to radioactive isotopes, initial encounter|Exposure to radioactive isotopes, initial encounter +C2905180|T037|AB|W88.1XXD|ICD10CM|Exposure to radioactive isotopes, subsequent encounter|Exposure to radioactive isotopes, subsequent encounter +C2905180|T037|PT|W88.1XXD|ICD10CM|Exposure to radioactive isotopes, subsequent encounter|Exposure to radioactive isotopes, subsequent encounter +C2905181|T037|AB|W88.1XXS|ICD10CM|Exposure to radioactive isotopes, sequela|Exposure to radioactive isotopes, sequela +C2905181|T037|PT|W88.1XXS|ICD10CM|Exposure to radioactive isotopes, sequela|Exposure to radioactive isotopes, sequela +C2905182|T037|AB|W88.8|ICD10CM|Exposure to other ionizing radiation|Exposure to other ionizing radiation +C2905182|T037|HT|W88.8|ICD10CM|Exposure to other ionizing radiation|Exposure to other ionizing radiation +C2905183|T037|AB|W88.8XXA|ICD10CM|Exposure to other ionizing radiation, initial encounter|Exposure to other ionizing radiation, initial encounter +C2905183|T037|PT|W88.8XXA|ICD10CM|Exposure to other ionizing radiation, initial encounter|Exposure to other ionizing radiation, initial encounter +C2905184|T037|AB|W88.8XXD|ICD10CM|Exposure to other ionizing radiation, subsequent encounter|Exposure to other ionizing radiation, subsequent encounter +C2905184|T037|PT|W88.8XXD|ICD10CM|Exposure to other ionizing radiation, subsequent encounter|Exposure to other ionizing radiation, subsequent encounter +C2905185|T037|AB|W88.8XXS|ICD10CM|Exposure to other ionizing radiation, sequela|Exposure to other ionizing radiation, sequela +C2905185|T037|PT|W88.8XXS|ICD10CM|Exposure to other ionizing radiation, sequela|Exposure to other ionizing radiation, sequela +C0479514|T037|PS|W89|ICD10|Exposure to man-made visible and ultraviolet light|Exposure to man-made visible and ultraviolet light +C0479514|T037|HT|W89|ICD10CM|Exposure to man-made visible and ultraviolet light|Exposure to man-made visible and ultraviolet light +C0479514|T037|AB|W89|ICD10CM|Exposure to man-made visible and ultraviolet light|Exposure to man-made visible and ultraviolet light +C0479514|T037|PX|W89|ICD10|Exposure to man-made visible and ultraviolet light as an external cause of morbidity and mortality|Exposure to man-made visible and ultraviolet light as an external cause of morbidity and mortality +C2905186|T037|ET|W89|ICD10CM|exposure to welding light (arc)|exposure to welding light (arc) +C2905186|T037|AB|W89.0|ICD10CM|Exposure to welding light (arc)|Exposure to welding light (arc) +C2905186|T037|HT|W89.0|ICD10CM|Exposure to welding light (arc)|Exposure to welding light (arc) +C2905187|T037|AB|W89.0XXA|ICD10CM|Exposure to welding light (arc), initial encounter|Exposure to welding light (arc), initial encounter +C2905187|T037|PT|W89.0XXA|ICD10CM|Exposure to welding light (arc), initial encounter|Exposure to welding light (arc), initial encounter +C2905188|T037|AB|W89.0XXD|ICD10CM|Exposure to welding light (arc), subsequent encounter|Exposure to welding light (arc), subsequent encounter +C2905188|T037|PT|W89.0XXD|ICD10CM|Exposure to welding light (arc), subsequent encounter|Exposure to welding light (arc), subsequent encounter +C2905189|T037|AB|W89.0XXS|ICD10CM|Exposure to welding light (arc), sequela|Exposure to welding light (arc), sequela +C2905189|T037|PT|W89.0XXS|ICD10CM|Exposure to welding light (arc), sequela|Exposure to welding light (arc), sequela +C0949204|T037|AB|W89.1|ICD10CM|Exposure to tanning bed|Exposure to tanning bed +C0949204|T037|HT|W89.1|ICD10CM|Exposure to tanning bed|Exposure to tanning bed +C2905190|T037|AB|W89.1XXA|ICD10CM|Exposure to tanning bed, initial encounter|Exposure to tanning bed, initial encounter +C2905190|T037|PT|W89.1XXA|ICD10CM|Exposure to tanning bed, initial encounter|Exposure to tanning bed, initial encounter +C2905191|T037|AB|W89.1XXD|ICD10CM|Exposure to tanning bed, subsequent encounter|Exposure to tanning bed, subsequent encounter +C2905191|T037|PT|W89.1XXD|ICD10CM|Exposure to tanning bed, subsequent encounter|Exposure to tanning bed, subsequent encounter +C2905192|T037|AB|W89.1XXS|ICD10CM|Exposure to tanning bed, sequela|Exposure to tanning bed, sequela +C2905192|T037|PT|W89.1XXS|ICD10CM|Exposure to tanning bed, sequela|Exposure to tanning bed, sequela +C2905193|T037|AB|W89.8|ICD10CM|Exposure to other man-made visible and ultraviolet light|Exposure to other man-made visible and ultraviolet light +C2905193|T037|HT|W89.8|ICD10CM|Exposure to other man-made visible and ultraviolet light|Exposure to other man-made visible and ultraviolet light +C2905194|T037|AB|W89.8XXA|ICD10CM|Exposure to oth man-made visible and ultraviolet light, init|Exposure to oth man-made visible and ultraviolet light, init +C2905194|T037|PT|W89.8XXA|ICD10CM|Exposure to other man-made visible and ultraviolet light, initial encounter|Exposure to other man-made visible and ultraviolet light, initial encounter +C2905195|T037|AB|W89.8XXD|ICD10CM|Exposure to oth man-made visible and ultraviolet light, subs|Exposure to oth man-made visible and ultraviolet light, subs +C2905195|T037|PT|W89.8XXD|ICD10CM|Exposure to other man-made visible and ultraviolet light, subsequent encounter|Exposure to other man-made visible and ultraviolet light, subsequent encounter +C2905196|T037|PT|W89.8XXS|ICD10CM|Exposure to other man-made visible and ultraviolet light, sequela|Exposure to other man-made visible and ultraviolet light, sequela +C2905196|T037|AB|W89.8XXS|ICD10CM|Expsr to oth man-made visible and ultraviolet light, sequela|Expsr to oth man-made visible and ultraviolet light, sequela +C2905197|T037|AB|W89.9|ICD10CM|Exposure to unsp man-made visible and ultraviolet light|Exposure to unsp man-made visible and ultraviolet light +C2905197|T037|HT|W89.9|ICD10CM|Exposure to unspecified man-made visible and ultraviolet light|Exposure to unspecified man-made visible and ultraviolet light +C2905198|T037|PT|W89.9XXA|ICD10CM|Exposure to unspecified man-made visible and ultraviolet light, initial encounter|Exposure to unspecified man-made visible and ultraviolet light, initial encounter +C2905198|T037|AB|W89.9XXA|ICD10CM|Expsr to unsp man-made visible and ultraviolet light, init|Expsr to unsp man-made visible and ultraviolet light, init +C2905199|T037|PT|W89.9XXD|ICD10CM|Exposure to unspecified man-made visible and ultraviolet light, subsequent encounter|Exposure to unspecified man-made visible and ultraviolet light, subsequent encounter +C2905199|T037|AB|W89.9XXD|ICD10CM|Expsr to unsp man-made visible and ultraviolet light, subs|Expsr to unsp man-made visible and ultraviolet light, subs +C2905200|T037|PT|W89.9XXS|ICD10CM|Exposure to unspecified man-made visible and ultraviolet light, sequela|Exposure to unspecified man-made visible and ultraviolet light, sequela +C2905200|T037|AB|W89.9XXS|ICD10CM|Expsr to unsp man-made visible and ultraviolet light, sqla|Expsr to unsp man-made visible and ultraviolet light, sqla +C0479524|T037|PS|W90|ICD10|Exposure to other nonionizing radiation|Exposure to other nonionizing radiation +C0479524|T037|HT|W90|ICD10CM|Exposure to other nonionizing radiation|Exposure to other nonionizing radiation +C0479524|T037|AB|W90|ICD10CM|Exposure to other nonionizing radiation|Exposure to other nonionizing radiation +C0479524|T037|PX|W90|ICD10|Exposure to other nonionizing radiation as an external cause of morbidity and mortality|Exposure to other nonionizing radiation as an external cause of morbidity and mortality +C2905201|T037|AB|W90.0|ICD10CM|Exposure to radiofrequency|Exposure to radiofrequency +C2905201|T037|HT|W90.0|ICD10CM|Exposure to radiofrequency|Exposure to radiofrequency +C2905202|T037|AB|W90.0XXA|ICD10CM|Exposure to radiofrequency, initial encounter|Exposure to radiofrequency, initial encounter +C2905202|T037|PT|W90.0XXA|ICD10CM|Exposure to radiofrequency, initial encounter|Exposure to radiofrequency, initial encounter +C2905203|T037|AB|W90.0XXD|ICD10CM|Exposure to radiofrequency, subsequent encounter|Exposure to radiofrequency, subsequent encounter +C2905203|T037|PT|W90.0XXD|ICD10CM|Exposure to radiofrequency, subsequent encounter|Exposure to radiofrequency, subsequent encounter +C2905204|T037|AB|W90.0XXS|ICD10CM|Exposure to radiofrequency, sequela|Exposure to radiofrequency, sequela +C2905204|T037|PT|W90.0XXS|ICD10CM|Exposure to radiofrequency, sequela|Exposure to radiofrequency, sequela +C2905205|T037|AB|W90.1|ICD10CM|Exposure to infrared radiation|Exposure to infrared radiation +C2905205|T037|HT|W90.1|ICD10CM|Exposure to infrared radiation|Exposure to infrared radiation +C2905206|T037|AB|W90.1XXA|ICD10CM|Exposure to infrared radiation, initial encounter|Exposure to infrared radiation, initial encounter +C2905206|T037|PT|W90.1XXA|ICD10CM|Exposure to infrared radiation, initial encounter|Exposure to infrared radiation, initial encounter +C2905207|T037|AB|W90.1XXD|ICD10CM|Exposure to infrared radiation, subsequent encounter|Exposure to infrared radiation, subsequent encounter +C2905207|T037|PT|W90.1XXD|ICD10CM|Exposure to infrared radiation, subsequent encounter|Exposure to infrared radiation, subsequent encounter +C2905208|T037|AB|W90.1XXS|ICD10CM|Exposure to infrared radiation, sequela|Exposure to infrared radiation, sequela +C2905208|T037|PT|W90.1XXS|ICD10CM|Exposure to infrared radiation, sequela|Exposure to infrared radiation, sequela +C2905209|T037|AB|W90.2|ICD10CM|Exposure to laser radiation|Exposure to laser radiation +C2905209|T037|HT|W90.2|ICD10CM|Exposure to laser radiation|Exposure to laser radiation +C2905210|T037|AB|W90.2XXA|ICD10CM|Exposure to laser radiation, initial encounter|Exposure to laser radiation, initial encounter +C2905210|T037|PT|W90.2XXA|ICD10CM|Exposure to laser radiation, initial encounter|Exposure to laser radiation, initial encounter +C2905211|T037|AB|W90.2XXD|ICD10CM|Exposure to laser radiation, subsequent encounter|Exposure to laser radiation, subsequent encounter +C2905211|T037|PT|W90.2XXD|ICD10CM|Exposure to laser radiation, subsequent encounter|Exposure to laser radiation, subsequent encounter +C2905212|T037|AB|W90.2XXS|ICD10CM|Exposure to laser radiation, sequela|Exposure to laser radiation, sequela +C2905212|T037|PT|W90.2XXS|ICD10CM|Exposure to laser radiation, sequela|Exposure to laser radiation, sequela +C0479524|T037|HT|W90.8|ICD10CM|Exposure to other nonionizing radiation|Exposure to other nonionizing radiation +C0479524|T037|AB|W90.8|ICD10CM|Exposure to other nonionizing radiation|Exposure to other nonionizing radiation +C2905213|T037|AB|W90.8XXA|ICD10CM|Exposure to other nonionizing radiation, initial encounter|Exposure to other nonionizing radiation, initial encounter +C2905213|T037|PT|W90.8XXA|ICD10CM|Exposure to other nonionizing radiation, initial encounter|Exposure to other nonionizing radiation, initial encounter +C2905214|T037|AB|W90.8XXD|ICD10CM|Exposure to other nonionizing radiation, subs encntr|Exposure to other nonionizing radiation, subs encntr +C2905214|T037|PT|W90.8XXD|ICD10CM|Exposure to other nonionizing radiation, subsequent encounter|Exposure to other nonionizing radiation, subsequent encounter +C2905215|T037|AB|W90.8XXS|ICD10CM|Exposure to other nonionizing radiation, sequela|Exposure to other nonionizing radiation, sequela +C2905215|T037|PT|W90.8XXS|ICD10CM|Exposure to other nonionizing radiation, sequela|Exposure to other nonionizing radiation, sequela +C0015333|T037|PS|W91|ICD10|Exposure to unspecified type of radiation|Exposure to unspecified type of radiation +C0015333|T037|PX|W91|ICD10|Exposure to unspecified type of radiation as an external cause of morbidity and mortality|Exposure to unspecified type of radiation as an external cause of morbidity and mortality +C0479543|T037|HT|W92|ICD10CM|Exposure to excessive heat of man-made origin|Exposure to excessive heat of man-made origin +C0479543|T037|AB|W92|ICD10CM|Exposure to excessive heat of man-made origin|Exposure to excessive heat of man-made origin +C0479543|T037|PS|W92|ICD10|Exposure to excessive heat of man-made origin|Exposure to excessive heat of man-made origin +C0479543|T037|PX|W92|ICD10|Exposure to excessive heat of man-made origin as an external cause of morbidity and mortality|Exposure to excessive heat of man-made origin as an external cause of morbidity and mortality +C2905216|T037|AB|W92.XXXA|ICD10CM|Exposure to excessive heat of man-made origin, init encntr|Exposure to excessive heat of man-made origin, init encntr +C2905216|T037|PT|W92.XXXA|ICD10CM|Exposure to excessive heat of man-made origin, initial encounter|Exposure to excessive heat of man-made origin, initial encounter +C2905217|T037|AB|W92.XXXD|ICD10CM|Exposure to excessive heat of man-made origin, subs encntr|Exposure to excessive heat of man-made origin, subs encntr +C2905217|T037|PT|W92.XXXD|ICD10CM|Exposure to excessive heat of man-made origin, subsequent encounter|Exposure to excessive heat of man-made origin, subsequent encounter +C2905218|T037|AB|W92.XXXS|ICD10CM|Exposure to excessive heat of man-made origin, sequela|Exposure to excessive heat of man-made origin, sequela +C2905218|T037|PT|W92.XXXS|ICD10CM|Exposure to excessive heat of man-made origin, sequela|Exposure to excessive heat of man-made origin, sequela +C0479553|T037|PS|W93|ICD10|Exposure to excessive cold of man-made origin|Exposure to excessive cold of man-made origin +C0479553|T037|HT|W93|ICD10CM|Exposure to excessive cold of man-made origin|Exposure to excessive cold of man-made origin +C0479553|T037|AB|W93|ICD10CM|Exposure to excessive cold of man-made origin|Exposure to excessive cold of man-made origin +C0479553|T037|PX|W93|ICD10|Exposure to excessive cold of man-made origin as an external cause of morbidity and mortality|Exposure to excessive cold of man-made origin as an external cause of morbidity and mortality +C0867843|T037|AB|W93.0|ICD10CM|Contact with or inhalation of dry ice|Contact with or inhalation of dry ice +C0867843|T037|HT|W93.0|ICD10CM|Contact with or inhalation of dry ice|Contact with or inhalation of dry ice +C2905219|T037|AB|W93.01|ICD10CM|Contact with dry ice|Contact with dry ice +C2905219|T037|HT|W93.01|ICD10CM|Contact with dry ice|Contact with dry ice +C2905220|T037|AB|W93.01XA|ICD10CM|Contact with dry ice, initial encounter|Contact with dry ice, initial encounter +C2905220|T037|PT|W93.01XA|ICD10CM|Contact with dry ice, initial encounter|Contact with dry ice, initial encounter +C2905221|T037|AB|W93.01XD|ICD10CM|Contact with dry ice, subsequent encounter|Contact with dry ice, subsequent encounter +C2905221|T037|PT|W93.01XD|ICD10CM|Contact with dry ice, subsequent encounter|Contact with dry ice, subsequent encounter +C2905222|T037|AB|W93.01XS|ICD10CM|Contact with dry ice, sequela|Contact with dry ice, sequela +C2905222|T037|PT|W93.01XS|ICD10CM|Contact with dry ice, sequela|Contact with dry ice, sequela +C2905223|T037|HT|W93.02|ICD10CM|Inhalation of dry ice|Inhalation of dry ice +C2905223|T037|AB|W93.02|ICD10CM|Inhalation of dry ice|Inhalation of dry ice +C2905224|T037|AB|W93.02XA|ICD10CM|Inhalation of dry ice, initial encounter|Inhalation of dry ice, initial encounter +C2905224|T037|PT|W93.02XA|ICD10CM|Inhalation of dry ice, initial encounter|Inhalation of dry ice, initial encounter +C2905225|T037|AB|W93.02XD|ICD10CM|Inhalation of dry ice, subsequent encounter|Inhalation of dry ice, subsequent encounter +C2905225|T037|PT|W93.02XD|ICD10CM|Inhalation of dry ice, subsequent encounter|Inhalation of dry ice, subsequent encounter +C2905226|T037|AB|W93.02XS|ICD10CM|Inhalation of dry ice, sequela|Inhalation of dry ice, sequela +C2905226|T037|PT|W93.02XS|ICD10CM|Inhalation of dry ice, sequela|Inhalation of dry ice, sequela +C0867844|T037|AB|W93.1|ICD10CM|Contact with or inhalation of liquid air|Contact with or inhalation of liquid air +C0867844|T037|HT|W93.1|ICD10CM|Contact with or inhalation of liquid air|Contact with or inhalation of liquid air +C2905229|T037|AB|W93.11|ICD10CM|Contact with liquid air|Contact with liquid air +C2905229|T037|HT|W93.11|ICD10CM|Contact with liquid air|Contact with liquid air +C2905227|T037|ET|W93.11|ICD10CM|Contact with liquid hydrogen|Contact with liquid hydrogen +C2905228|T037|ET|W93.11|ICD10CM|Contact with liquid nitrogen|Contact with liquid nitrogen +C2905230|T037|AB|W93.11XA|ICD10CM|Contact with liquid air, initial encounter|Contact with liquid air, initial encounter +C2905230|T037|PT|W93.11XA|ICD10CM|Contact with liquid air, initial encounter|Contact with liquid air, initial encounter +C2905231|T037|AB|W93.11XD|ICD10CM|Contact with liquid air, subsequent encounter|Contact with liquid air, subsequent encounter +C2905231|T037|PT|W93.11XD|ICD10CM|Contact with liquid air, subsequent encounter|Contact with liquid air, subsequent encounter +C2905232|T037|AB|W93.11XS|ICD10CM|Contact with liquid air, sequela|Contact with liquid air, sequela +C2905232|T037|PT|W93.11XS|ICD10CM|Contact with liquid air, sequela|Contact with liquid air, sequela +C2905235|T037|HT|W93.12|ICD10CM|Inhalation of liquid air|Inhalation of liquid air +C2905235|T037|AB|W93.12|ICD10CM|Inhalation of liquid air|Inhalation of liquid air +C2905233|T037|ET|W93.12|ICD10CM|Inhalation of liquid hydrogen|Inhalation of liquid hydrogen +C2905234|T037|ET|W93.12|ICD10CM|Inhalation of liquid nitrogen|Inhalation of liquid nitrogen +C2905236|T037|AB|W93.12XA|ICD10CM|Inhalation of liquid air, initial encounter|Inhalation of liquid air, initial encounter +C2905236|T037|PT|W93.12XA|ICD10CM|Inhalation of liquid air, initial encounter|Inhalation of liquid air, initial encounter +C2905237|T037|AB|W93.12XD|ICD10CM|Inhalation of liquid air, subsequent encounter|Inhalation of liquid air, subsequent encounter +C2905237|T037|PT|W93.12XD|ICD10CM|Inhalation of liquid air, subsequent encounter|Inhalation of liquid air, subsequent encounter +C2905238|T037|AB|W93.12XS|ICD10CM|Inhalation of liquid air, sequela|Inhalation of liquid air, sequela +C2905238|T037|PT|W93.12XS|ICD10CM|Inhalation of liquid air, sequela|Inhalation of liquid air, sequela +C2905239|T037|AB|W93.2|ICD10CM|Prolonged exposure in deep freeze unit or refrigerator|Prolonged exposure in deep freeze unit or refrigerator +C2905239|T037|HT|W93.2|ICD10CM|Prolonged exposure in deep freeze unit or refrigerator|Prolonged exposure in deep freeze unit or refrigerator +C2905240|T037|AB|W93.2XXA|ICD10CM|Prolonged exposure in deep freeze unit or refrigerator, init|Prolonged exposure in deep freeze unit or refrigerator, init +C2905240|T037|PT|W93.2XXA|ICD10CM|Prolonged exposure in deep freeze unit or refrigerator, initial encounter|Prolonged exposure in deep freeze unit or refrigerator, initial encounter +C2905241|T037|AB|W93.2XXD|ICD10CM|Prolonged exposure in deep freeze unit or refrigerator, subs|Prolonged exposure in deep freeze unit or refrigerator, subs +C2905241|T037|PT|W93.2XXD|ICD10CM|Prolonged exposure in deep freeze unit or refrigerator, subsequent encounter|Prolonged exposure in deep freeze unit or refrigerator, subsequent encounter +C2905242|T037|AB|W93.2XXS|ICD10CM|Prolonged exposure in deep freeze unit or refrig, sequela|Prolonged exposure in deep freeze unit or refrig, sequela +C2905242|T037|PT|W93.2XXS|ICD10CM|Prolonged exposure in deep freeze unit or refrigerator, sequela|Prolonged exposure in deep freeze unit or refrigerator, sequela +C2905243|T037|AB|W93.8|ICD10CM|Exposure to other excessive cold of man-made origin|Exposure to other excessive cold of man-made origin +C2905243|T037|HT|W93.8|ICD10CM|Exposure to other excessive cold of man-made origin|Exposure to other excessive cold of man-made origin +C2905244|T037|AB|W93.8XXA|ICD10CM|Exposure to oth excessive cold of man-made origin, init|Exposure to oth excessive cold of man-made origin, init +C2905244|T037|PT|W93.8XXA|ICD10CM|Exposure to other excessive cold of man-made origin, initial encounter|Exposure to other excessive cold of man-made origin, initial encounter +C2905245|T037|AB|W93.8XXD|ICD10CM|Exposure to oth excessive cold of man-made origin, subs|Exposure to oth excessive cold of man-made origin, subs +C2905245|T037|PT|W93.8XXD|ICD10CM|Exposure to other excessive cold of man-made origin, subsequent encounter|Exposure to other excessive cold of man-made origin, subsequent encounter +C2905246|T037|AB|W93.8XXS|ICD10CM|Exposure to other excessive cold of man-made origin, sequela|Exposure to other excessive cold of man-made origin, sequela +C2905246|T037|PT|W93.8XXS|ICD10CM|Exposure to other excessive cold of man-made origin, sequela|Exposure to other excessive cold of man-made origin, sequela +C0479563|T037|PS|W94|ICD10|Exposure to high and low air pressure and changes in air pressure|Exposure to high and low air pressure and changes in air pressure +C0479563|T037|HT|W94|ICD10CM|Exposure to high and low air pressure and changes in air pressure|Exposure to high and low air pressure and changes in air pressure +C0479563|T037|AB|W94|ICD10CM|Expsr to high and low air pressr and changes in air pressure|Expsr to high and low air pressr and changes in air pressure +C2905247|T037|HT|W94.0|ICD10CM|Exposure to prolonged high air pressure|Exposure to prolonged high air pressure +C2905247|T037|AB|W94.0|ICD10CM|Exposure to prolonged high air pressure|Exposure to prolonged high air pressure +C2905248|T037|AB|W94.0XXA|ICD10CM|Exposure to prolonged high air pressure, initial encounter|Exposure to prolonged high air pressure, initial encounter +C2905248|T037|PT|W94.0XXA|ICD10CM|Exposure to prolonged high air pressure, initial encounter|Exposure to prolonged high air pressure, initial encounter +C2905249|T037|AB|W94.0XXD|ICD10CM|Exposure to prolonged high air pressure, subs encntr|Exposure to prolonged high air pressure, subs encntr +C2905249|T037|PT|W94.0XXD|ICD10CM|Exposure to prolonged high air pressure, subsequent encounter|Exposure to prolonged high air pressure, subsequent encounter +C2905250|T037|AB|W94.0XXS|ICD10CM|Exposure to prolonged high air pressure, sequela|Exposure to prolonged high air pressure, sequela +C2905250|T037|PT|W94.0XXS|ICD10CM|Exposure to prolonged high air pressure, sequela|Exposure to prolonged high air pressure, sequela +C2905251|T037|HT|W94.1|ICD10CM|Exposure to prolonged low air pressure|Exposure to prolonged low air pressure +C2905251|T037|AB|W94.1|ICD10CM|Exposure to prolonged low air pressure|Exposure to prolonged low air pressure +C2905252|T037|HT|W94.11|ICD10CM|Exposure to residence or prolonged visit at high altitude|Exposure to residence or prolonged visit at high altitude +C2905252|T037|AB|W94.11|ICD10CM|Exposure to residence or prolonged visit at high altitude|Exposure to residence or prolonged visit at high altitude +C2905253|T037|PT|W94.11XA|ICD10CM|Exposure to residence or prolonged visit at high altitude, initial encounter|Exposure to residence or prolonged visit at high altitude, initial encounter +C2905253|T037|AB|W94.11XA|ICD10CM|Expsr to resdnce or prolonged visit at high altitude, init|Expsr to resdnce or prolonged visit at high altitude, init +C2905254|T037|PT|W94.11XD|ICD10CM|Exposure to residence or prolonged visit at high altitude, subsequent encounter|Exposure to residence or prolonged visit at high altitude, subsequent encounter +C2905254|T037|AB|W94.11XD|ICD10CM|Expsr to resdnce or prolonged visit at high altitude, subs|Expsr to resdnce or prolonged visit at high altitude, subs +C2905255|T037|PT|W94.11XS|ICD10CM|Exposure to residence or prolonged visit at high altitude, sequela|Exposure to residence or prolonged visit at high altitude, sequela +C2905255|T037|AB|W94.11XS|ICD10CM|Expsr to resdnce or prolonged visit at high altitude, sqla|Expsr to resdnce or prolonged visit at high altitude, sqla +C2905256|T037|AB|W94.12|ICD10CM|Exposure to other prolonged low air pressure|Exposure to other prolonged low air pressure +C2905256|T037|HT|W94.12|ICD10CM|Exposure to other prolonged low air pressure|Exposure to other prolonged low air pressure +C2905257|T037|AB|W94.12XA|ICD10CM|Exposure to other prolonged low air pressure, init encntr|Exposure to other prolonged low air pressure, init encntr +C2905257|T037|PT|W94.12XA|ICD10CM|Exposure to other prolonged low air pressure, initial encounter|Exposure to other prolonged low air pressure, initial encounter +C2905258|T037|AB|W94.12XD|ICD10CM|Exposure to other prolonged low air pressure, subs encntr|Exposure to other prolonged low air pressure, subs encntr +C2905258|T037|PT|W94.12XD|ICD10CM|Exposure to other prolonged low air pressure, subsequent encounter|Exposure to other prolonged low air pressure, subsequent encounter +C2905259|T037|AB|W94.12XS|ICD10CM|Exposure to other prolonged low air pressure, sequela|Exposure to other prolonged low air pressure, sequela +C2905259|T037|PT|W94.12XS|ICD10CM|Exposure to other prolonged low air pressure, sequela|Exposure to other prolonged low air pressure, sequela +C2905260|T037|HT|W94.2|ICD10CM|Exposure to rapid changes in air pressure during ascent|Exposure to rapid changes in air pressure during ascent +C2905260|T037|AB|W94.2|ICD10CM|Exposure to rapid changes in air pressure during ascent|Exposure to rapid changes in air pressure during ascent +C2905261|T037|HT|W94.21|ICD10CM|Exposure to reduction in atmospheric pressure while surfacing from deep-water diving|Exposure to reduction in atmospheric pressure while surfacing from deep-water diving +C2905261|T037|AB|W94.21|ICD10CM|Expsr to rdct in atmos pressr while surfc from dp-watr div|Expsr to rdct in atmos pressr while surfc from dp-watr div +C2905262|T037|AB|W94.21XA|ICD10CM|Expsr to rdct in atmos pressr wh surfc fr dp-watr div, init|Expsr to rdct in atmos pressr wh surfc fr dp-watr div, init +C2905263|T037|AB|W94.21XD|ICD10CM|Expsr to rdct in atmos pressr wh surfc fr dp-watr div, subs|Expsr to rdct in atmos pressr wh surfc fr dp-watr div, subs +C2905264|T037|PT|W94.21XS|ICD10CM|Exposure to reduction in atmospheric pressure while surfacing from deep-water diving, sequela|Exposure to reduction in atmospheric pressure while surfacing from deep-water diving, sequela +C2905264|T037|AB|W94.21XS|ICD10CM|Expsr to rdct in atmos pressr wh surfc fr dp-watr div, sqla|Expsr to rdct in atmos pressr wh surfc fr dp-watr div, sqla +C2905265|T037|HT|W94.22|ICD10CM|Exposure to reduction in atmospheric pressure while surfacing from underground|Exposure to reduction in atmospheric pressure while surfacing from underground +C2905265|T037|AB|W94.22|ICD10CM|Expsr to rdct in atmos pressr while surfc from underground|Expsr to rdct in atmos pressr while surfc from underground +C2905266|T037|PT|W94.22XA|ICD10CM|Exposure to reduction in atmospheric pressure while surfacing from underground, initial encounter|Exposure to reduction in atmospheric pressure while surfacing from underground, initial encounter +C2905266|T037|AB|W94.22XA|ICD10CM|Expsr to rdct in atmos pressr wh surfc fr underground, init|Expsr to rdct in atmos pressr wh surfc fr underground, init +C2905267|T037|PT|W94.22XD|ICD10CM|Exposure to reduction in atmospheric pressure while surfacing from underground, subsequent encounter|Exposure to reduction in atmospheric pressure while surfacing from underground, subsequent encounter +C2905267|T037|AB|W94.22XD|ICD10CM|Expsr to rdct in atmos pressr wh surfc fr underground, subs|Expsr to rdct in atmos pressr wh surfc fr underground, subs +C2905268|T037|PT|W94.22XS|ICD10CM|Exposure to reduction in atmospheric pressure while surfacing from underground, sequela|Exposure to reduction in atmospheric pressure while surfacing from underground, sequela +C2905268|T037|AB|W94.22XS|ICD10CM|Expsr to rdct in atmos pressr wh surfc fr underground, sqla|Expsr to rdct in atmos pressr wh surfc fr underground, sqla +C2905269|T037|AB|W94.23|ICD10CM|Exposure to chng in air pressure in aircraft during ascent|Exposure to chng in air pressure in aircraft during ascent +C2905269|T037|HT|W94.23|ICD10CM|Exposure to sudden change in air pressure in aircraft during ascent|Exposure to sudden change in air pressure in aircraft during ascent +C2905270|T037|PT|W94.23XA|ICD10CM|Exposure to sudden change in air pressure in aircraft during ascent, initial encounter|Exposure to sudden change in air pressure in aircraft during ascent, initial encounter +C2905270|T037|AB|W94.23XA|ICD10CM|Expsr to chng in air pressure in arcrft during ascent, init|Expsr to chng in air pressure in arcrft during ascent, init +C2905271|T037|PT|W94.23XD|ICD10CM|Exposure to sudden change in air pressure in aircraft during ascent, subsequent encounter|Exposure to sudden change in air pressure in aircraft during ascent, subsequent encounter +C2905271|T037|AB|W94.23XD|ICD10CM|Expsr to chng in air pressure in arcrft during ascent, subs|Expsr to chng in air pressure in arcrft during ascent, subs +C2905272|T037|PT|W94.23XS|ICD10CM|Exposure to sudden change in air pressure in aircraft during ascent, sequela|Exposure to sudden change in air pressure in aircraft during ascent, sequela +C2905272|T037|AB|W94.23XS|ICD10CM|Expsr to chng in air pressr in arcrft during ascent, sequela|Expsr to chng in air pressr in arcrft during ascent, sequela +C2905273|T037|AB|W94.29|ICD10CM|Exposure to oth rapid changes in air pressure during ascent|Exposure to oth rapid changes in air pressure during ascent +C2905273|T037|HT|W94.29|ICD10CM|Exposure to other rapid changes in air pressure during ascent|Exposure to other rapid changes in air pressure during ascent +C2905274|T037|PT|W94.29XA|ICD10CM|Exposure to other rapid changes in air pressure during ascent, initial encounter|Exposure to other rapid changes in air pressure during ascent, initial encounter +C2905274|T037|AB|W94.29XA|ICD10CM|Expsr to oth rapid changes in air pressr during ascent, init|Expsr to oth rapid changes in air pressr during ascent, init +C2905275|T037|PT|W94.29XD|ICD10CM|Exposure to other rapid changes in air pressure during ascent, subsequent encounter|Exposure to other rapid changes in air pressure during ascent, subsequent encounter +C2905275|T037|AB|W94.29XD|ICD10CM|Expsr to oth rapid changes in air pressr during ascent, subs|Expsr to oth rapid changes in air pressr during ascent, subs +C2905276|T037|PT|W94.29XS|ICD10CM|Exposure to other rapid changes in air pressure during ascent, sequela|Exposure to other rapid changes in air pressure during ascent, sequela +C2905276|T037|AB|W94.29XS|ICD10CM|Expsr to oth rapid changes in air pressr during ascent, sqla|Expsr to oth rapid changes in air pressr during ascent, sqla +C2905277|T037|HT|W94.3|ICD10CM|Exposure to rapid changes in air pressure during descent|Exposure to rapid changes in air pressure during descent +C2905277|T037|AB|W94.3|ICD10CM|Exposure to rapid changes in air pressure during descent|Exposure to rapid changes in air pressure during descent +C3696854|T037|AB|W94.31|ICD10CM|Exposure to chng in air pressure in aircraft during descent|Exposure to chng in air pressure in aircraft during descent +C3696854|T037|HT|W94.31|ICD10CM|Exposure to sudden change in air pressure in aircraft during descent|Exposure to sudden change in air pressure in aircraft during descent +C2905279|T033|PT|W94.31XA|ICD10CM|Exposure to sudden change in air pressure in aircraft during descent, initial encounter|Exposure to sudden change in air pressure in aircraft during descent, initial encounter +C2905279|T033|AB|W94.31XA|ICD10CM|Expsr to chng in air pressure in arcrft during descent, init|Expsr to chng in air pressure in arcrft during descent, init +C2905280|T033|PT|W94.31XD|ICD10CM|Exposure to sudden change in air pressure in aircraft during descent, subsequent encounter|Exposure to sudden change in air pressure in aircraft during descent, subsequent encounter +C2905280|T033|AB|W94.31XD|ICD10CM|Expsr to chng in air pressure in arcrft during descent, subs|Expsr to chng in air pressure in arcrft during descent, subs +C2905281|T033|PT|W94.31XS|ICD10CM|Exposure to sudden change in air pressure in aircraft during descent, sequela|Exposure to sudden change in air pressure in aircraft during descent, sequela +C2905281|T033|AB|W94.31XS|ICD10CM|Expsr to chng in air pressr in arcrft during descent, sqla|Expsr to chng in air pressr in arcrft during descent, sqla +C2905282|T037|HT|W94.32|ICD10CM|Exposure to high air pressure from rapid descent in water|Exposure to high air pressure from rapid descent in water +C2905282|T037|AB|W94.32|ICD10CM|Exposure to high air pressure from rapid descent in water|Exposure to high air pressure from rapid descent in water +C2905283|T037|PT|W94.32XA|ICD10CM|Exposure to high air pressure from rapid descent in water, initial encounter|Exposure to high air pressure from rapid descent in water, initial encounter +C2905283|T037|AB|W94.32XA|ICD10CM|Expsr to high air pressure from rapid descent in water, init|Expsr to high air pressure from rapid descent in water, init +C2905284|T037|PT|W94.32XD|ICD10CM|Exposure to high air pressure from rapid descent in water, subsequent encounter|Exposure to high air pressure from rapid descent in water, subsequent encounter +C2905284|T037|AB|W94.32XD|ICD10CM|Expsr to high air pressure from rapid descent in water, subs|Expsr to high air pressure from rapid descent in water, subs +C2905285|T037|PT|W94.32XS|ICD10CM|Exposure to high air pressure from rapid descent in water, sequela|Exposure to high air pressure from rapid descent in water, sequela +C2905285|T037|AB|W94.32XS|ICD10CM|Expsr to high air pressr from rapid descent in water, sqla|Expsr to high air pressr from rapid descent in water, sqla +C2905286|T037|AB|W94.39|ICD10CM|Exposure to oth rapid changes in air pressure during descent|Exposure to oth rapid changes in air pressure during descent +C2905286|T037|HT|W94.39|ICD10CM|Exposure to other rapid changes in air pressure during descent|Exposure to other rapid changes in air pressure during descent +C2905287|T037|PT|W94.39XA|ICD10CM|Exposure to other rapid changes in air pressure during descent, initial encounter|Exposure to other rapid changes in air pressure during descent, initial encounter +C2905287|T037|AB|W94.39XA|ICD10CM|Expsr to oth rapid changes in air pressr dur descent, init|Expsr to oth rapid changes in air pressr dur descent, init +C2905288|T037|PT|W94.39XD|ICD10CM|Exposure to other rapid changes in air pressure during descent, subsequent encounter|Exposure to other rapid changes in air pressure during descent, subsequent encounter +C2905288|T037|AB|W94.39XD|ICD10CM|Expsr to oth rapid changes in air pressr dur descent, subs|Expsr to oth rapid changes in air pressr dur descent, subs +C2905289|T037|PT|W94.39XS|ICD10CM|Exposure to other rapid changes in air pressure during descent, sequela|Exposure to other rapid changes in air pressure during descent, sequela +C2905289|T037|AB|W94.39XS|ICD10CM|Expsr to oth rapid changes in air pressr dur descent, sqla|Expsr to oth rapid changes in air pressr dur descent, sqla +C0479573|T037|PS|W99|ICD10|Exposure to other and unspecified man-made environmental factors|Exposure to other and unspecified man-made environmental factors +C2905290|T037|HT|W99|ICD10CM|Exposure to other man-made environmental factors|Exposure to other man-made environmental factors +C2905290|T037|AB|W99|ICD10CM|Exposure to other man-made environmental factors|Exposure to other man-made environmental factors +C2905291|T037|AB|W99.XXXA|ICD10CM|Exposure to oth man-made environmental factors, init encntr|Exposure to oth man-made environmental factors, init encntr +C2905291|T037|PT|W99.XXXA|ICD10CM|Exposure to other man-made environmental factors, initial encounter|Exposure to other man-made environmental factors, initial encounter +C2905292|T037|AB|W99.XXXD|ICD10CM|Exposure to oth man-made environmental factors, subs encntr|Exposure to oth man-made environmental factors, subs encntr +C2905292|T037|PT|W99.XXXD|ICD10CM|Exposure to other man-made environmental factors, subsequent encounter|Exposure to other man-made environmental factors, subsequent encounter +C2905293|T037|AB|W99.XXXS|ICD10CM|Exposure to other man-made environmental factors, sequela|Exposure to other man-made environmental factors, sequela +C2905293|T037|PT|W99.XXXS|ICD10CM|Exposure to other man-made environmental factors, sequela|Exposure to other man-made environmental factors, sequela +C4290482|T037|ET|X00|ICD10CM|conflagration in building or structure|conflagration in building or structure +C0479583|T037|PS|X00|ICD10|Exposure to uncontrolled fire in building or structure|Exposure to uncontrolled fire in building or structure +C0479583|T037|HT|X00|ICD10CM|Exposure to uncontrolled fire in building or structure|Exposure to uncontrolled fire in building or structure +C0479583|T037|AB|X00|ICD10CM|Exposure to uncontrolled fire in building or structure|Exposure to uncontrolled fire in building or structure +C0497045|T037|HT|X00-X08|ICD10CM|Exposure to smoke, fire and flames (X00-X08)|Exposure to smoke, fire and flames (X00-X08) +C0497045|T037|HT|X00-X09.9|ICD10|Exposure to smoke, fire and flames|Exposure to smoke, fire and flames +C2905295|T037|AB|X00.0|ICD10CM|Exposure to flames in uncontrolled fire in bldg|Exposure to flames in uncontrolled fire in bldg +C2905295|T037|HT|X00.0|ICD10CM|Exposure to flames in uncontrolled fire in building or structure|Exposure to flames in uncontrolled fire in building or structure +C2905296|T037|AB|X00.0XXA|ICD10CM|Exposure to flames in uncontrolled fire in bldg, init|Exposure to flames in uncontrolled fire in bldg, init +C2905296|T037|PT|X00.0XXA|ICD10CM|Exposure to flames in uncontrolled fire in building or structure, initial encounter|Exposure to flames in uncontrolled fire in building or structure, initial encounter +C2905297|T037|AB|X00.0XXD|ICD10CM|Exposure to flames in uncontrolled fire in bldg, subs|Exposure to flames in uncontrolled fire in bldg, subs +C2905297|T037|PT|X00.0XXD|ICD10CM|Exposure to flames in uncontrolled fire in building or structure, subsequent encounter|Exposure to flames in uncontrolled fire in building or structure, subsequent encounter +C2905298|T037|AB|X00.0XXS|ICD10CM|Exposure to flames in uncontrolled fire in bldg, sequela|Exposure to flames in uncontrolled fire in bldg, sequela +C2905298|T037|PT|X00.0XXS|ICD10CM|Exposure to flames in uncontrolled fire in building or structure, sequela|Exposure to flames in uncontrolled fire in building or structure, sequela +C2905299|T037|AB|X00.1|ICD10CM|Exposure to smoke in uncontrolled fire in bldg|Exposure to smoke in uncontrolled fire in bldg +C2905299|T037|HT|X00.1|ICD10CM|Exposure to smoke in uncontrolled fire in building or structure|Exposure to smoke in uncontrolled fire in building or structure +C2905300|T037|AB|X00.1XXA|ICD10CM|Exposure to smoke in uncontrolled fire in bldg, init|Exposure to smoke in uncontrolled fire in bldg, init +C2905300|T037|PT|X00.1XXA|ICD10CM|Exposure to smoke in uncontrolled fire in building or structure, initial encounter|Exposure to smoke in uncontrolled fire in building or structure, initial encounter +C2905301|T037|AB|X00.1XXD|ICD10CM|Exposure to smoke in uncontrolled fire in bldg, subs|Exposure to smoke in uncontrolled fire in bldg, subs +C2905301|T037|PT|X00.1XXD|ICD10CM|Exposure to smoke in uncontrolled fire in building or structure, subsequent encounter|Exposure to smoke in uncontrolled fire in building or structure, subsequent encounter +C2905302|T037|AB|X00.1XXS|ICD10CM|Exposure to smoke in uncontrolled fire in bldg, sequela|Exposure to smoke in uncontrolled fire in bldg, sequela +C2905302|T037|PT|X00.1XXS|ICD10CM|Exposure to smoke in uncontrolled fire in building or structure, sequela|Exposure to smoke in uncontrolled fire in building or structure, sequela +C2905303|T037|AB|X00.2|ICD10CM|Injury due to collapse of burning bldg in uncontrolled fire|Injury due to collapse of burning bldg in uncontrolled fire +C2905303|T037|HT|X00.2|ICD10CM|Injury due to collapse of burning building or structure in uncontrolled fire|Injury due to collapse of burning building or structure in uncontrolled fire +C2905304|T037|AB|X00.2XXA|ICD10CM|Injury due to collapse of burn bldg in uncntrld fire, init|Injury due to collapse of burn bldg in uncntrld fire, init +C2905304|T037|PT|X00.2XXA|ICD10CM|Injury due to collapse of burning building or structure in uncontrolled fire, initial encounter|Injury due to collapse of burning building or structure in uncontrolled fire, initial encounter +C2905305|T037|AB|X00.2XXD|ICD10CM|Injury due to collapse of burn bldg in uncntrld fire, subs|Injury due to collapse of burn bldg in uncntrld fire, subs +C2905305|T037|PT|X00.2XXD|ICD10CM|Injury due to collapse of burning building or structure in uncontrolled fire, subsequent encounter|Injury due to collapse of burning building or structure in uncontrolled fire, subsequent encounter +C2905306|T037|AB|X00.2XXS|ICD10CM|Injury due to collapse of burn bldg in uncntrld fire, sqla|Injury due to collapse of burn bldg in uncntrld fire, sqla +C2905306|T037|PT|X00.2XXS|ICD10CM|Injury due to collapse of burning building or structure in uncontrolled fire, sequela|Injury due to collapse of burning building or structure in uncontrolled fire, sequela +C2905307|T037|AB|X00.3|ICD10CM|Fall from burning building or structure in uncontrolled fire|Fall from burning building or structure in uncontrolled fire +C2905307|T037|HT|X00.3|ICD10CM|Fall from burning building or structure in uncontrolled fire|Fall from burning building or structure in uncontrolled fire +C2905308|T037|AB|X00.3XXA|ICD10CM|Fall from burning bldg in uncontrolled fire, init|Fall from burning bldg in uncontrolled fire, init +C2905308|T037|PT|X00.3XXA|ICD10CM|Fall from burning building or structure in uncontrolled fire, initial encounter|Fall from burning building or structure in uncontrolled fire, initial encounter +C2905309|T037|AB|X00.3XXD|ICD10CM|Fall from burning bldg in uncontrolled fire, subs|Fall from burning bldg in uncontrolled fire, subs +C2905309|T037|PT|X00.3XXD|ICD10CM|Fall from burning building or structure in uncontrolled fire, subsequent encounter|Fall from burning building or structure in uncontrolled fire, subsequent encounter +C2905310|T037|AB|X00.3XXS|ICD10CM|Fall from burning bldg in uncontrolled fire, sequela|Fall from burning bldg in uncontrolled fire, sequela +C2905310|T037|PT|X00.3XXS|ICD10CM|Fall from burning building or structure in uncontrolled fire, sequela|Fall from burning building or structure in uncontrolled fire, sequela +C2905311|T037|AB|X00.4|ICD10CM|Hit by object from burning bldg in uncontrolled fire|Hit by object from burning bldg in uncontrolled fire +C2905311|T037|HT|X00.4|ICD10CM|Hit by object from burning building or structure in uncontrolled fire|Hit by object from burning building or structure in uncontrolled fire +C2905312|T037|AB|X00.4XXA|ICD10CM|Hit by object from burning bldg in uncontrolled fire, init|Hit by object from burning bldg in uncontrolled fire, init +C2905312|T037|PT|X00.4XXA|ICD10CM|Hit by object from burning building or structure in uncontrolled fire, initial encounter|Hit by object from burning building or structure in uncontrolled fire, initial encounter +C2905313|T037|AB|X00.4XXD|ICD10CM|Hit by object from burning bldg in uncontrolled fire, subs|Hit by object from burning bldg in uncontrolled fire, subs +C2905313|T037|PT|X00.4XXD|ICD10CM|Hit by object from burning building or structure in uncontrolled fire, subsequent encounter|Hit by object from burning building or structure in uncontrolled fire, subsequent encounter +C2905314|T037|AB|X00.4XXS|ICD10CM|Hit by object from burning bldg in uncntrld fire, sequela|Hit by object from burning bldg in uncntrld fire, sequela +C2905314|T037|PT|X00.4XXS|ICD10CM|Hit by object from burning building or structure in uncontrolled fire, sequela|Hit by object from burning building or structure in uncontrolled fire, sequela +C2905315|T037|AB|X00.5|ICD10CM|Jump from burning building or structure in uncontrolled fire|Jump from burning building or structure in uncontrolled fire +C2905315|T037|HT|X00.5|ICD10CM|Jump from burning building or structure in uncontrolled fire|Jump from burning building or structure in uncontrolled fire +C2905316|T037|AB|X00.5XXA|ICD10CM|Jump from burning bldg in uncontrolled fire, init|Jump from burning bldg in uncontrolled fire, init +C2905316|T037|PT|X00.5XXA|ICD10CM|Jump from burning building or structure in uncontrolled fire, initial encounter|Jump from burning building or structure in uncontrolled fire, initial encounter +C2905317|T037|AB|X00.5XXD|ICD10CM|Jump from burning bldg in uncontrolled fire, subs|Jump from burning bldg in uncontrolled fire, subs +C2905317|T037|PT|X00.5XXD|ICD10CM|Jump from burning building or structure in uncontrolled fire, subsequent encounter|Jump from burning building or structure in uncontrolled fire, subsequent encounter +C2905318|T037|AB|X00.5XXS|ICD10CM|Jump from burning bldg in uncontrolled fire, sequela|Jump from burning bldg in uncontrolled fire, sequela +C2905318|T037|PT|X00.5XXS|ICD10CM|Jump from burning building or structure in uncontrolled fire, sequela|Jump from burning building or structure in uncontrolled fire, sequela +C2905319|T037|AB|X00.8|ICD10CM|Other exposure to uncontrolled fire in building or structure|Other exposure to uncontrolled fire in building or structure +C2905319|T037|HT|X00.8|ICD10CM|Other exposure to uncontrolled fire in building or structure|Other exposure to uncontrolled fire in building or structure +C2905320|T037|AB|X00.8XXA|ICD10CM|Oth exposure to uncontrolled fire in bldg, init|Oth exposure to uncontrolled fire in bldg, init +C2905320|T037|PT|X00.8XXA|ICD10CM|Other exposure to uncontrolled fire in building or structure, initial encounter|Other exposure to uncontrolled fire in building or structure, initial encounter +C2905321|T037|AB|X00.8XXD|ICD10CM|Oth exposure to uncontrolled fire in bldg, subs|Oth exposure to uncontrolled fire in bldg, subs +C2905321|T037|PT|X00.8XXD|ICD10CM|Other exposure to uncontrolled fire in building or structure, subsequent encounter|Other exposure to uncontrolled fire in building or structure, subsequent encounter +C2905322|T037|AB|X00.8XXS|ICD10CM|Oth exposure to uncontrolled fire in bldg, sequela|Oth exposure to uncontrolled fire in bldg, sequela +C2905322|T037|PT|X00.8XXS|ICD10CM|Other exposure to uncontrolled fire in building or structure, sequela|Other exposure to uncontrolled fire in building or structure, sequela +C4290483|T037|ET|X01|ICD10CM|exposure to forest fire|exposure to forest fire +C0497038|T037|HT|X01|ICD10CM|Exposure to uncontrolled fire, not in building or structure|Exposure to uncontrolled fire, not in building or structure +C0497038|T037|AB|X01|ICD10CM|Exposure to uncontrolled fire, not in building or structure|Exposure to uncontrolled fire, not in building or structure +C0497038|T037|PS|X01|ICD10|Exposure to uncontrolled fire, not in building or structure|Exposure to uncontrolled fire, not in building or structure +C2905324|T037|AB|X01.0|ICD10CM|Exposure to flames in uncontrolled fire, not in bldg|Exposure to flames in uncontrolled fire, not in bldg +C2905324|T037|HT|X01.0|ICD10CM|Exposure to flames in uncontrolled fire, not in building or structure|Exposure to flames in uncontrolled fire, not in building or structure +C2905325|T037|AB|X01.0XXA|ICD10CM|Exposure to flames in uncontrolled fire, not in bldg, init|Exposure to flames in uncontrolled fire, not in bldg, init +C2905325|T037|PT|X01.0XXA|ICD10CM|Exposure to flames in uncontrolled fire, not in building or structure, initial encounter|Exposure to flames in uncontrolled fire, not in building or structure, initial encounter +C2905326|T037|AB|X01.0XXD|ICD10CM|Exposure to flames in uncontrolled fire, not in bldg, subs|Exposure to flames in uncontrolled fire, not in bldg, subs +C2905326|T037|PT|X01.0XXD|ICD10CM|Exposure to flames in uncontrolled fire, not in building or structure, subsequent encounter|Exposure to flames in uncontrolled fire, not in building or structure, subsequent encounter +C2905327|T037|AB|X01.0XXS|ICD10CM|Exposure to flames in uncntrld fire, not in bldg, sequela|Exposure to flames in uncntrld fire, not in bldg, sequela +C2905327|T037|PT|X01.0XXS|ICD10CM|Exposure to flames in uncontrolled fire, not in building or structure, sequela|Exposure to flames in uncontrolled fire, not in building or structure, sequela +C2905328|T037|AB|X01.1|ICD10CM|Exposure to smoke in uncontrolled fire, not in bldg|Exposure to smoke in uncontrolled fire, not in bldg +C2905328|T037|HT|X01.1|ICD10CM|Exposure to smoke in uncontrolled fire, not in building or structure|Exposure to smoke in uncontrolled fire, not in building or structure +C2905329|T037|AB|X01.1XXA|ICD10CM|Exposure to smoke in uncontrolled fire, not in bldg, init|Exposure to smoke in uncontrolled fire, not in bldg, init +C2905329|T037|PT|X01.1XXA|ICD10CM|Exposure to smoke in uncontrolled fire, not in building or structure, initial encounter|Exposure to smoke in uncontrolled fire, not in building or structure, initial encounter +C2905330|T037|AB|X01.1XXD|ICD10CM|Exposure to smoke in uncontrolled fire, not in bldg, subs|Exposure to smoke in uncontrolled fire, not in bldg, subs +C2905330|T037|PT|X01.1XXD|ICD10CM|Exposure to smoke in uncontrolled fire, not in building or structure, subsequent encounter|Exposure to smoke in uncontrolled fire, not in building or structure, subsequent encounter +C2905331|T037|AB|X01.1XXS|ICD10CM|Exposure to smoke in uncontrolled fire, not in bldg, sequela|Exposure to smoke in uncontrolled fire, not in bldg, sequela +C2905331|T037|PT|X01.1XXS|ICD10CM|Exposure to smoke in uncontrolled fire, not in building or structure, sequela|Exposure to smoke in uncontrolled fire, not in building or structure, sequela +C2905332|T037|AB|X01.3|ICD10CM|Fall due to uncontrolled fire, not in building or structure|Fall due to uncontrolled fire, not in building or structure +C2905332|T037|HT|X01.3|ICD10CM|Fall due to uncontrolled fire, not in building or structure|Fall due to uncontrolled fire, not in building or structure +C2905333|T037|AB|X01.3XXA|ICD10CM|Fall due to uncontrolled fire, not in bldg, init|Fall due to uncontrolled fire, not in bldg, init +C2905333|T037|PT|X01.3XXA|ICD10CM|Fall due to uncontrolled fire, not in building or structure, initial encounter|Fall due to uncontrolled fire, not in building or structure, initial encounter +C2905334|T037|AB|X01.3XXD|ICD10CM|Fall due to uncontrolled fire, not in bldg, subs|Fall due to uncontrolled fire, not in bldg, subs +C2905334|T037|PT|X01.3XXD|ICD10CM|Fall due to uncontrolled fire, not in building or structure, subsequent encounter|Fall due to uncontrolled fire, not in building or structure, subsequent encounter +C2905335|T037|AB|X01.3XXS|ICD10CM|Fall due to uncontrolled fire, not in bldg, sequela|Fall due to uncontrolled fire, not in bldg, sequela +C2905335|T037|PT|X01.3XXS|ICD10CM|Fall due to uncontrolled fire, not in building or structure, sequela|Fall due to uncontrolled fire, not in building or structure, sequela +C2905336|T037|AB|X01.4|ICD10CM|Hit by object due to uncontrolled fire, not in bldg|Hit by object due to uncontrolled fire, not in bldg +C2905336|T037|HT|X01.4|ICD10CM|Hit by object due to uncontrolled fire, not in building or structure|Hit by object due to uncontrolled fire, not in building or structure +C2905337|T037|AB|X01.4XXA|ICD10CM|Hit by object due to uncontrolled fire, not in bldg, init|Hit by object due to uncontrolled fire, not in bldg, init +C2905337|T037|PT|X01.4XXA|ICD10CM|Hit by object due to uncontrolled fire, not in building or structure, initial encounter|Hit by object due to uncontrolled fire, not in building or structure, initial encounter +C2905338|T037|AB|X01.4XXD|ICD10CM|Hit by object due to uncontrolled fire, not in bldg, subs|Hit by object due to uncontrolled fire, not in bldg, subs +C2905338|T037|PT|X01.4XXD|ICD10CM|Hit by object due to uncontrolled fire, not in building or structure, subsequent encounter|Hit by object due to uncontrolled fire, not in building or structure, subsequent encounter +C2905339|T037|AB|X01.4XXS|ICD10CM|Hit by object due to uncontrolled fire, not in bldg, sequela|Hit by object due to uncontrolled fire, not in bldg, sequela +C2905339|T037|PT|X01.4XXS|ICD10CM|Hit by object due to uncontrolled fire, not in building or structure, sequela|Hit by object due to uncontrolled fire, not in building or structure, sequela +C2905340|T037|AB|X01.8|ICD10CM|Oth exposure to uncontrolled fire, not in bldg|Oth exposure to uncontrolled fire, not in bldg +C2905340|T037|HT|X01.8|ICD10CM|Other exposure to uncontrolled fire, not in building or structure|Other exposure to uncontrolled fire, not in building or structure +C2905341|T037|AB|X01.8XXA|ICD10CM|Oth exposure to uncontrolled fire, not in bldg, init|Oth exposure to uncontrolled fire, not in bldg, init +C2905341|T037|PT|X01.8XXA|ICD10CM|Other exposure to uncontrolled fire, not in building or structure, initial encounter|Other exposure to uncontrolled fire, not in building or structure, initial encounter +C2905342|T037|AB|X01.8XXD|ICD10CM|Oth exposure to uncontrolled fire, not in bldg, subs|Oth exposure to uncontrolled fire, not in bldg, subs +C2905342|T037|PT|X01.8XXD|ICD10CM|Other exposure to uncontrolled fire, not in building or structure, subsequent encounter|Other exposure to uncontrolled fire, not in building or structure, subsequent encounter +C2905343|T037|AB|X01.8XXS|ICD10CM|Oth exposure to uncontrolled fire, not in bldg, sequela|Oth exposure to uncontrolled fire, not in bldg, sequela +C2905343|T037|PT|X01.8XXS|ICD10CM|Other exposure to uncontrolled fire, not in building or structure, sequela|Other exposure to uncontrolled fire, not in building or structure, sequela +C0497039|T037|PS|X02|ICD10|Exposure to controlled fire in building or structure|Exposure to controlled fire in building or structure +C0497039|T037|HT|X02|ICD10CM|Exposure to controlled fire in building or structure|Exposure to controlled fire in building or structure +C0497039|T037|AB|X02|ICD10CM|Exposure to controlled fire in building or structure|Exposure to controlled fire in building or structure +C0497039|T037|PX|X02|ICD10|Exposure to controlled fire in building or structure as an external cause of morbidity and mortality|Exposure to controlled fire in building or structure as an external cause of morbidity and mortality +C4290484|T037|ET|X02|ICD10CM|exposure to fire in fireplace|exposure to fire in fireplace +C4290485|T037|ET|X02|ICD10CM|exposure to fire in stove|exposure to fire in stove +C2905346|T037|AB|X02.0|ICD10CM|Exposure to flames in controlled fire in bldg|Exposure to flames in controlled fire in bldg +C2905346|T037|HT|X02.0|ICD10CM|Exposure to flames in controlled fire in building or structure|Exposure to flames in controlled fire in building or structure +C2905347|T037|AB|X02.0XXA|ICD10CM|Exposure to flames in controlled fire in bldg, init|Exposure to flames in controlled fire in bldg, init +C2905347|T037|PT|X02.0XXA|ICD10CM|Exposure to flames in controlled fire in building or structure, initial encounter|Exposure to flames in controlled fire in building or structure, initial encounter +C2905348|T037|AB|X02.0XXD|ICD10CM|Exposure to flames in controlled fire in bldg, subs|Exposure to flames in controlled fire in bldg, subs +C2905348|T037|PT|X02.0XXD|ICD10CM|Exposure to flames in controlled fire in building or structure, subsequent encounter|Exposure to flames in controlled fire in building or structure, subsequent encounter +C2905349|T037|AB|X02.0XXS|ICD10CM|Exposure to flames in controlled fire in bldg, sequela|Exposure to flames in controlled fire in bldg, sequela +C2905349|T037|PT|X02.0XXS|ICD10CM|Exposure to flames in controlled fire in building or structure, sequela|Exposure to flames in controlled fire in building or structure, sequela +C2905350|T037|AB|X02.1|ICD10CM|Exposure to smoke in controlled fire in bldg|Exposure to smoke in controlled fire in bldg +C2905350|T037|HT|X02.1|ICD10CM|Exposure to smoke in controlled fire in building or structure|Exposure to smoke in controlled fire in building or structure +C2905351|T037|AB|X02.1XXA|ICD10CM|Exposure to smoke in controlled fire in bldg, init|Exposure to smoke in controlled fire in bldg, init +C2905351|T037|PT|X02.1XXA|ICD10CM|Exposure to smoke in controlled fire in building or structure, initial encounter|Exposure to smoke in controlled fire in building or structure, initial encounter +C2905352|T037|AB|X02.1XXD|ICD10CM|Exposure to smoke in controlled fire in bldg, subs|Exposure to smoke in controlled fire in bldg, subs +C2905352|T037|PT|X02.1XXD|ICD10CM|Exposure to smoke in controlled fire in building or structure, subsequent encounter|Exposure to smoke in controlled fire in building or structure, subsequent encounter +C2905353|T037|AB|X02.1XXS|ICD10CM|Exposure to smoke in controlled fire in bldg, sequela|Exposure to smoke in controlled fire in bldg, sequela +C2905353|T037|PT|X02.1XXS|ICD10CM|Exposure to smoke in controlled fire in building or structure, sequela|Exposure to smoke in controlled fire in building or structure, sequela +C2905354|T037|AB|X02.2|ICD10CM|Injury due to collapse of burning bldg in controlled fire|Injury due to collapse of burning bldg in controlled fire +C2905354|T037|HT|X02.2|ICD10CM|Injury due to collapse of burning building or structure in controlled fire|Injury due to collapse of burning building or structure in controlled fire +C2905355|T037|AB|X02.2XXA|ICD10CM|Injury due to collapse of burning bldg in ctrl fire, init|Injury due to collapse of burning bldg in ctrl fire, init +C2905355|T037|PT|X02.2XXA|ICD10CM|Injury due to collapse of burning building or structure in controlled fire, initial encounter|Injury due to collapse of burning building or structure in controlled fire, initial encounter +C2905356|T037|AB|X02.2XXD|ICD10CM|Injury due to collapse of burning bldg in ctrl fire, subs|Injury due to collapse of burning bldg in ctrl fire, subs +C2905356|T037|PT|X02.2XXD|ICD10CM|Injury due to collapse of burning building or structure in controlled fire, subsequent encounter|Injury due to collapse of burning building or structure in controlled fire, subsequent encounter +C2905357|T037|AB|X02.2XXS|ICD10CM|Injury due to collapse of burning bldg in ctrl fire, sequela|Injury due to collapse of burning bldg in ctrl fire, sequela +C2905357|T037|PT|X02.2XXS|ICD10CM|Injury due to collapse of burning building or structure in controlled fire, sequela|Injury due to collapse of burning building or structure in controlled fire, sequela +C2905358|T037|AB|X02.3|ICD10CM|Fall from burning building or structure in controlled fire|Fall from burning building or structure in controlled fire +C2905358|T037|HT|X02.3|ICD10CM|Fall from burning building or structure in controlled fire|Fall from burning building or structure in controlled fire +C2905359|T037|AB|X02.3XXA|ICD10CM|Fall from burning bldg in controlled fire, init|Fall from burning bldg in controlled fire, init +C2905359|T037|PT|X02.3XXA|ICD10CM|Fall from burning building or structure in controlled fire, initial encounter|Fall from burning building or structure in controlled fire, initial encounter +C2905360|T037|AB|X02.3XXD|ICD10CM|Fall from burning bldg in controlled fire, subs|Fall from burning bldg in controlled fire, subs +C2905360|T037|PT|X02.3XXD|ICD10CM|Fall from burning building or structure in controlled fire, subsequent encounter|Fall from burning building or structure in controlled fire, subsequent encounter +C2905361|T037|AB|X02.3XXS|ICD10CM|Fall from burning bldg in controlled fire, sequela|Fall from burning bldg in controlled fire, sequela +C2905361|T037|PT|X02.3XXS|ICD10CM|Fall from burning building or structure in controlled fire, sequela|Fall from burning building or structure in controlled fire, sequela +C2905362|T037|AB|X02.4|ICD10CM|Hit by object from burning bldg in controlled fire|Hit by object from burning bldg in controlled fire +C2905362|T037|HT|X02.4|ICD10CM|Hit by object from burning building or structure in controlled fire|Hit by object from burning building or structure in controlled fire +C2905363|T037|AB|X02.4XXA|ICD10CM|Hit by object from burning bldg in controlled fire, init|Hit by object from burning bldg in controlled fire, init +C2905363|T037|PT|X02.4XXA|ICD10CM|Hit by object from burning building or structure in controlled fire, initial encounter|Hit by object from burning building or structure in controlled fire, initial encounter +C2905364|T037|AB|X02.4XXD|ICD10CM|Hit by object from burning bldg in controlled fire, subs|Hit by object from burning bldg in controlled fire, subs +C2905364|T037|PT|X02.4XXD|ICD10CM|Hit by object from burning building or structure in controlled fire, subsequent encounter|Hit by object from burning building or structure in controlled fire, subsequent encounter +C2905365|T037|AB|X02.4XXS|ICD10CM|Hit by object from burning bldg in controlled fire, sequela|Hit by object from burning bldg in controlled fire, sequela +C2905365|T037|PT|X02.4XXS|ICD10CM|Hit by object from burning building or structure in controlled fire, sequela|Hit by object from burning building or structure in controlled fire, sequela +C2905366|T037|AB|X02.5|ICD10CM|Jump from burning building or structure in controlled fire|Jump from burning building or structure in controlled fire +C2905366|T037|HT|X02.5|ICD10CM|Jump from burning building or structure in controlled fire|Jump from burning building or structure in controlled fire +C2905367|T037|AB|X02.5XXA|ICD10CM|Jump from burning bldg in controlled fire, init|Jump from burning bldg in controlled fire, init +C2905367|T037|PT|X02.5XXA|ICD10CM|Jump from burning building or structure in controlled fire, initial encounter|Jump from burning building or structure in controlled fire, initial encounter +C2905368|T037|AB|X02.5XXD|ICD10CM|Jump from burning bldg in controlled fire, subs|Jump from burning bldg in controlled fire, subs +C2905368|T037|PT|X02.5XXD|ICD10CM|Jump from burning building or structure in controlled fire, subsequent encounter|Jump from burning building or structure in controlled fire, subsequent encounter +C2905369|T037|AB|X02.5XXS|ICD10CM|Jump from burning bldg in controlled fire, sequela|Jump from burning bldg in controlled fire, sequela +C2905369|T037|PT|X02.5XXS|ICD10CM|Jump from burning building or structure in controlled fire, sequela|Jump from burning building or structure in controlled fire, sequela +C2905370|T037|AB|X02.8|ICD10CM|Other exposure to controlled fire in building or structure|Other exposure to controlled fire in building or structure +C2905370|T037|HT|X02.8|ICD10CM|Other exposure to controlled fire in building or structure|Other exposure to controlled fire in building or structure +C2905371|T037|AB|X02.8XXA|ICD10CM|Oth exposure to controlled fire in bldg, init|Oth exposure to controlled fire in bldg, init +C2905371|T037|PT|X02.8XXA|ICD10CM|Other exposure to controlled fire in building or structure, initial encounter|Other exposure to controlled fire in building or structure, initial encounter +C2905372|T037|AB|X02.8XXD|ICD10CM|Oth exposure to controlled fire in bldg, subs|Oth exposure to controlled fire in bldg, subs +C2905372|T037|PT|X02.8XXD|ICD10CM|Other exposure to controlled fire in building or structure, subsequent encounter|Other exposure to controlled fire in building or structure, subsequent encounter +C2905373|T037|AB|X02.8XXS|ICD10CM|Oth exposure to controlled fire in bldg, sequela|Oth exposure to controlled fire in bldg, sequela +C2905373|T037|PT|X02.8XXS|ICD10CM|Other exposure to controlled fire in building or structure, sequela|Other exposure to controlled fire in building or structure, sequela +C4290486|T037|ET|X03|ICD10CM|exposure to bon fire|exposure to bon fire +C4290487|T037|ET|X03|ICD10CM|exposure to camp-fire|exposure to camp-fire +C0497040|T037|PS|X03|ICD10|Exposure to controlled fire, not in building or structure|Exposure to controlled fire, not in building or structure +C0497040|T037|HT|X03|ICD10CM|Exposure to controlled fire, not in building or structure|Exposure to controlled fire, not in building or structure +C0497040|T037|AB|X03|ICD10CM|Exposure to controlled fire, not in building or structure|Exposure to controlled fire, not in building or structure +C4290488|T037|ET|X03|ICD10CM|exposure to trash fire|exposure to trash fire +C2905377|T037|AB|X03.0|ICD10CM|Exposure to flames in controlled fire, not in bldg|Exposure to flames in controlled fire, not in bldg +C2905377|T037|HT|X03.0|ICD10CM|Exposure to flames in controlled fire, not in building or structure|Exposure to flames in controlled fire, not in building or structure +C2905378|T037|AB|X03.0XXA|ICD10CM|Exposure to flames in controlled fire, not in bldg, init|Exposure to flames in controlled fire, not in bldg, init +C2905378|T037|PT|X03.0XXA|ICD10CM|Exposure to flames in controlled fire, not in building or structure, initial encounter|Exposure to flames in controlled fire, not in building or structure, initial encounter +C2905379|T037|AB|X03.0XXD|ICD10CM|Exposure to flames in controlled fire, not in bldg, subs|Exposure to flames in controlled fire, not in bldg, subs +C2905379|T037|PT|X03.0XXD|ICD10CM|Exposure to flames in controlled fire, not in building or structure, subsequent encounter|Exposure to flames in controlled fire, not in building or structure, subsequent encounter +C2905380|T037|AB|X03.0XXS|ICD10CM|Exposure to flames in controlled fire, not in bldg, sequela|Exposure to flames in controlled fire, not in bldg, sequela +C2905380|T037|PT|X03.0XXS|ICD10CM|Exposure to flames in controlled fire, not in building or structure, sequela|Exposure to flames in controlled fire, not in building or structure, sequela +C2905381|T037|AB|X03.1|ICD10CM|Exposure to smoke in controlled fire, not in bldg|Exposure to smoke in controlled fire, not in bldg +C2905381|T037|HT|X03.1|ICD10CM|Exposure to smoke in controlled fire, not in building or structure|Exposure to smoke in controlled fire, not in building or structure +C2905382|T037|AB|X03.1XXA|ICD10CM|Exposure to smoke in controlled fire, not in bldg, init|Exposure to smoke in controlled fire, not in bldg, init +C2905382|T037|PT|X03.1XXA|ICD10CM|Exposure to smoke in controlled fire, not in building or structure, initial encounter|Exposure to smoke in controlled fire, not in building or structure, initial encounter +C2905383|T037|AB|X03.1XXD|ICD10CM|Exposure to smoke in controlled fire, not in bldg, subs|Exposure to smoke in controlled fire, not in bldg, subs +C2905383|T037|PT|X03.1XXD|ICD10CM|Exposure to smoke in controlled fire, not in building or structure, subsequent encounter|Exposure to smoke in controlled fire, not in building or structure, subsequent encounter +C2905384|T037|AB|X03.1XXS|ICD10CM|Exposure to smoke in controlled fire, not in bldg, sequela|Exposure to smoke in controlled fire, not in bldg, sequela +C2905384|T037|PT|X03.1XXS|ICD10CM|Exposure to smoke in controlled fire, not in building or structure, sequela|Exposure to smoke in controlled fire, not in building or structure, sequela +C2905385|T037|AB|X03.3|ICD10CM|Fall due to controlled fire, not in building or structure|Fall due to controlled fire, not in building or structure +C2905385|T037|HT|X03.3|ICD10CM|Fall due to controlled fire, not in building or structure|Fall due to controlled fire, not in building or structure +C2905386|T037|AB|X03.3XXA|ICD10CM|Fall due to controlled fire, not in bldg, init|Fall due to controlled fire, not in bldg, init +C2905386|T037|PT|X03.3XXA|ICD10CM|Fall due to controlled fire, not in building or structure, initial encounter|Fall due to controlled fire, not in building or structure, initial encounter +C2905387|T037|AB|X03.3XXD|ICD10CM|Fall due to controlled fire, not in bldg, subs|Fall due to controlled fire, not in bldg, subs +C2905387|T037|PT|X03.3XXD|ICD10CM|Fall due to controlled fire, not in building or structure, subsequent encounter|Fall due to controlled fire, not in building or structure, subsequent encounter +C2905388|T037|AB|X03.3XXS|ICD10CM|Fall due to controlled fire, not in bldg, sequela|Fall due to controlled fire, not in bldg, sequela +C2905388|T037|PT|X03.3XXS|ICD10CM|Fall due to controlled fire, not in building or structure, sequela|Fall due to controlled fire, not in building or structure, sequela +C2905389|T037|AB|X03.4|ICD10CM|Hit by object due to controlled fire, not in bldg|Hit by object due to controlled fire, not in bldg +C2905389|T037|HT|X03.4|ICD10CM|Hit by object due to controlled fire, not in building or structure|Hit by object due to controlled fire, not in building or structure +C2905390|T037|AB|X03.4XXA|ICD10CM|Hit by object due to controlled fire, not in bldg, init|Hit by object due to controlled fire, not in bldg, init +C2905390|T037|PT|X03.4XXA|ICD10CM|Hit by object due to controlled fire, not in building or structure, initial encounter|Hit by object due to controlled fire, not in building or structure, initial encounter +C2905391|T037|AB|X03.4XXD|ICD10CM|Hit by object due to controlled fire, not in bldg, subs|Hit by object due to controlled fire, not in bldg, subs +C2905391|T037|PT|X03.4XXD|ICD10CM|Hit by object due to controlled fire, not in building or structure, subsequent encounter|Hit by object due to controlled fire, not in building or structure, subsequent encounter +C2905392|T037|AB|X03.4XXS|ICD10CM|Hit by object due to controlled fire, not in bldg, sequela|Hit by object due to controlled fire, not in bldg, sequela +C2905392|T037|PT|X03.4XXS|ICD10CM|Hit by object due to controlled fire, not in building or structure, sequela|Hit by object due to controlled fire, not in building or structure, sequela +C2905393|T037|AB|X03.8|ICD10CM|Oth exposure to controlled fire, not in bldg|Oth exposure to controlled fire, not in bldg +C2905393|T037|HT|X03.8|ICD10CM|Other exposure to controlled fire, not in building or structure|Other exposure to controlled fire, not in building or structure +C2905394|T037|AB|X03.8XXA|ICD10CM|Oth exposure to controlled fire, not in bldg, init|Oth exposure to controlled fire, not in bldg, init +C2905394|T037|PT|X03.8XXA|ICD10CM|Other exposure to controlled fire, not in building or structure, initial encounter|Other exposure to controlled fire, not in building or structure, initial encounter +C2905395|T037|AB|X03.8XXD|ICD10CM|Oth exposure to controlled fire, not in bldg, subs|Oth exposure to controlled fire, not in bldg, subs +C2905395|T037|PT|X03.8XXD|ICD10CM|Other exposure to controlled fire, not in building or structure, subsequent encounter|Other exposure to controlled fire, not in building or structure, subsequent encounter +C2905396|T037|AB|X03.8XXS|ICD10CM|Oth exposure to controlled fire, not in bldg, sequela|Oth exposure to controlled fire, not in bldg, sequela +C2905396|T037|PT|X03.8XXS|ICD10CM|Other exposure to controlled fire, not in building or structure, sequela|Other exposure to controlled fire, not in building or structure, sequela +C2905397|T037|ET|X04|ICD10CM|Exposure to ignition of gasoline|Exposure to ignition of gasoline +C0497041|T037|PS|X04|ICD10|Exposure to ignition of highly flammable material|Exposure to ignition of highly flammable material +C0497041|T037|HT|X04|ICD10CM|Exposure to ignition of highly flammable material|Exposure to ignition of highly flammable material +C0497041|T037|AB|X04|ICD10CM|Exposure to ignition of highly flammable material|Exposure to ignition of highly flammable material +C0497041|T037|PX|X04|ICD10|Exposure to ignition of highly flammable material as an external cause of morbidity and mortality|Exposure to ignition of highly flammable material as an external cause of morbidity and mortality +C2905398|T037|ET|X04|ICD10CM|Exposure to ignition of kerosene|Exposure to ignition of kerosene +C2905399|T037|ET|X04|ICD10CM|Exposure to ignition of petrol|Exposure to ignition of petrol +C2905400|T037|AB|X04.XXXA|ICD10CM|Exposure to ignition of highly flammable material, init|Exposure to ignition of highly flammable material, init +C2905400|T037|PT|X04.XXXA|ICD10CM|Exposure to ignition of highly flammable material, initial encounter|Exposure to ignition of highly flammable material, initial encounter +C2905401|T037|AB|X04.XXXD|ICD10CM|Exposure to ignition of highly flammable material, subs|Exposure to ignition of highly flammable material, subs +C2905401|T037|PT|X04.XXXD|ICD10CM|Exposure to ignition of highly flammable material, subsequent encounter|Exposure to ignition of highly flammable material, subsequent encounter +C2905402|T037|AB|X04.XXXS|ICD10CM|Exposure to ignition of highly flammable material, sequela|Exposure to ignition of highly flammable material, sequela +C2905402|T037|PT|X04.XXXS|ICD10CM|Exposure to ignition of highly flammable material, sequela|Exposure to ignition of highly flammable material, sequela +C0497042|T037|PS|X05|ICD10|Exposure to ignition or melting of nightwear|Exposure to ignition or melting of nightwear +C0497042|T037|HT|X05|ICD10CM|Exposure to ignition or melting of nightwear|Exposure to ignition or melting of nightwear +C0497042|T037|AB|X05|ICD10CM|Exposure to ignition or melting of nightwear|Exposure to ignition or melting of nightwear +C0497042|T037|PX|X05|ICD10|Exposure to ignition or melting of nightwear as an external cause of morbidity and mortality|Exposure to ignition or melting of nightwear as an external cause of morbidity and mortality +C2905403|T037|AB|X05.XXXA|ICD10CM|Exposure to ignition or melting of nightwear, init encntr|Exposure to ignition or melting of nightwear, init encntr +C2905403|T037|PT|X05.XXXA|ICD10CM|Exposure to ignition or melting of nightwear, initial encounter|Exposure to ignition or melting of nightwear, initial encounter +C2905404|T037|AB|X05.XXXD|ICD10CM|Exposure to ignition or melting of nightwear, subs encntr|Exposure to ignition or melting of nightwear, subs encntr +C2905404|T037|PT|X05.XXXD|ICD10CM|Exposure to ignition or melting of nightwear, subsequent encounter|Exposure to ignition or melting of nightwear, subsequent encounter +C2905405|T037|AB|X05.XXXS|ICD10CM|Exposure to ignition or melting of nightwear, sequela|Exposure to ignition or melting of nightwear, sequela +C2905405|T037|PT|X05.XXXS|ICD10CM|Exposure to ignition or melting of nightwear, sequela|Exposure to ignition or melting of nightwear, sequela +C0497043|T037|AB|X06|ICD10CM|Exposure to ignition or melting of oth clothing and apparel|Exposure to ignition or melting of oth clothing and apparel +C0497043|T037|HT|X06|ICD10CM|Exposure to ignition or melting of other clothing and apparel|Exposure to ignition or melting of other clothing and apparel +C0497043|T037|PS|X06|ICD10|Exposure to ignition or melting of other clothing and apparel|Exposure to ignition or melting of other clothing and apparel +C2905406|T037|AB|X06.0|ICD10CM|Exposure to ignition of plastic jewelry|Exposure to ignition of plastic jewelry +C2905406|T037|HT|X06.0|ICD10CM|Exposure to ignition of plastic jewelry|Exposure to ignition of plastic jewelry +C2905407|T037|AB|X06.0XXA|ICD10CM|Exposure to ignition of plastic jewelry, initial encounter|Exposure to ignition of plastic jewelry, initial encounter +C2905407|T037|PT|X06.0XXA|ICD10CM|Exposure to ignition of plastic jewelry, initial encounter|Exposure to ignition of plastic jewelry, initial encounter +C2905408|T037|AB|X06.0XXD|ICD10CM|Exposure to ignition of plastic jewelry, subs encntr|Exposure to ignition of plastic jewelry, subs encntr +C2905408|T037|PT|X06.0XXD|ICD10CM|Exposure to ignition of plastic jewelry, subsequent encounter|Exposure to ignition of plastic jewelry, subsequent encounter +C2905409|T037|AB|X06.0XXS|ICD10CM|Exposure to ignition of plastic jewelry, sequela|Exposure to ignition of plastic jewelry, sequela +C2905409|T037|PT|X06.0XXS|ICD10CM|Exposure to ignition of plastic jewelry, sequela|Exposure to ignition of plastic jewelry, sequela +C2905410|T037|AB|X06.1|ICD10CM|Exposure to melting of plastic jewelry|Exposure to melting of plastic jewelry +C2905410|T037|HT|X06.1|ICD10CM|Exposure to melting of plastic jewelry|Exposure to melting of plastic jewelry +C2905411|T037|AB|X06.1XXA|ICD10CM|Exposure to melting of plastic jewelry, initial encounter|Exposure to melting of plastic jewelry, initial encounter +C2905411|T037|PT|X06.1XXA|ICD10CM|Exposure to melting of plastic jewelry, initial encounter|Exposure to melting of plastic jewelry, initial encounter +C2905412|T037|AB|X06.1XXD|ICD10CM|Exposure to melting of plastic jewelry, subsequent encounter|Exposure to melting of plastic jewelry, subsequent encounter +C2905412|T037|PT|X06.1XXD|ICD10CM|Exposure to melting of plastic jewelry, subsequent encounter|Exposure to melting of plastic jewelry, subsequent encounter +C2905413|T037|AB|X06.1XXS|ICD10CM|Exposure to melting of plastic jewelry, sequela|Exposure to melting of plastic jewelry, sequela +C2905413|T037|PT|X06.1XXS|ICD10CM|Exposure to melting of plastic jewelry, sequela|Exposure to melting of plastic jewelry, sequela +C2905414|T037|AB|X06.2|ICD10CM|Exposure to ignition of other clothing and apparel|Exposure to ignition of other clothing and apparel +C2905414|T037|HT|X06.2|ICD10CM|Exposure to ignition of other clothing and apparel|Exposure to ignition of other clothing and apparel +C2905415|T037|AB|X06.2XXA|ICD10CM|Exposure to ignition of oth clothing and apparel, init|Exposure to ignition of oth clothing and apparel, init +C2905415|T037|PT|X06.2XXA|ICD10CM|Exposure to ignition of other clothing and apparel, initial encounter|Exposure to ignition of other clothing and apparel, initial encounter +C2905416|T037|AB|X06.2XXD|ICD10CM|Exposure to ignition of oth clothing and apparel, subs|Exposure to ignition of oth clothing and apparel, subs +C2905416|T037|PT|X06.2XXD|ICD10CM|Exposure to ignition of other clothing and apparel, subsequent encounter|Exposure to ignition of other clothing and apparel, subsequent encounter +C2905417|T037|AB|X06.2XXS|ICD10CM|Exposure to ignition of other clothing and apparel, sequela|Exposure to ignition of other clothing and apparel, sequela +C2905417|T037|PT|X06.2XXS|ICD10CM|Exposure to ignition of other clothing and apparel, sequela|Exposure to ignition of other clothing and apparel, sequela +C2905418|T037|AB|X06.3|ICD10CM|Exposure to melting of other clothing and apparel|Exposure to melting of other clothing and apparel +C2905418|T037|HT|X06.3|ICD10CM|Exposure to melting of other clothing and apparel|Exposure to melting of other clothing and apparel +C2905419|T037|AB|X06.3XXA|ICD10CM|Exposure to melting of oth clothing and apparel, init encntr|Exposure to melting of oth clothing and apparel, init encntr +C2905419|T037|PT|X06.3XXA|ICD10CM|Exposure to melting of other clothing and apparel, initial encounter|Exposure to melting of other clothing and apparel, initial encounter +C2905420|T037|AB|X06.3XXD|ICD10CM|Exposure to melting of oth clothing and apparel, subs encntr|Exposure to melting of oth clothing and apparel, subs encntr +C2905420|T037|PT|X06.3XXD|ICD10CM|Exposure to melting of other clothing and apparel, subsequent encounter|Exposure to melting of other clothing and apparel, subsequent encounter +C2905421|T037|AB|X06.3XXS|ICD10CM|Exposure to melting of other clothing and apparel, sequela|Exposure to melting of other clothing and apparel, sequela +C2905421|T037|PT|X06.3XXS|ICD10CM|Exposure to melting of other clothing and apparel, sequela|Exposure to melting of other clothing and apparel, sequela +C0497044|T037|PS|X08|ICD10|Exposure to other specified smoke, fire and flames|Exposure to other specified smoke, fire and flames +C0497044|T037|HT|X08|ICD10CM|Exposure to other specified smoke, fire and flames|Exposure to other specified smoke, fire and flames +C0497044|T037|AB|X08|ICD10CM|Exposure to other specified smoke, fire and flames|Exposure to other specified smoke, fire and flames +C0497044|T037|PX|X08|ICD10|Exposure to other specified smoke, fire and flames as an external cause of morbidity and mortality|Exposure to other specified smoke, fire and flames as an external cause of morbidity and mortality +C2905423|T037|HT|X08.0|ICD10CM|Exposure to bed fire|Exposure to bed fire +C2905423|T037|AB|X08.0|ICD10CM|Exposure to bed fire|Exposure to bed fire +C2905422|T037|ET|X08.0|ICD10CM|Exposure to mattress fire|Exposure to mattress fire +C2905424|T037|AB|X08.00|ICD10CM|Exposure to bed fire due to unspecified burning material|Exposure to bed fire due to unspecified burning material +C2905424|T037|HT|X08.00|ICD10CM|Exposure to bed fire due to unspecified burning material|Exposure to bed fire due to unspecified burning material +C2905425|T037|AB|X08.00XA|ICD10CM|Exposure to bed fire due to unsp burning material, init|Exposure to bed fire due to unsp burning material, init +C2905425|T037|PT|X08.00XA|ICD10CM|Exposure to bed fire due to unspecified burning material, initial encounter|Exposure to bed fire due to unspecified burning material, initial encounter +C2905426|T037|AB|X08.00XD|ICD10CM|Exposure to bed fire due to unsp burning material, subs|Exposure to bed fire due to unsp burning material, subs +C2905426|T037|PT|X08.00XD|ICD10CM|Exposure to bed fire due to unspecified burning material, subsequent encounter|Exposure to bed fire due to unspecified burning material, subsequent encounter +C2905427|T037|AB|X08.00XS|ICD10CM|Exposure to bed fire due to unsp burning material, sequela|Exposure to bed fire due to unsp burning material, sequela +C2905427|T037|PT|X08.00XS|ICD10CM|Exposure to bed fire due to unspecified burning material, sequela|Exposure to bed fire due to unspecified burning material, sequela +C2905428|T037|AB|X08.01|ICD10CM|Exposure to bed fire due to burning cigarette|Exposure to bed fire due to burning cigarette +C2905428|T037|HT|X08.01|ICD10CM|Exposure to bed fire due to burning cigarette|Exposure to bed fire due to burning cigarette +C2905429|T037|AB|X08.01XA|ICD10CM|Exposure to bed fire due to burning cigarette, init encntr|Exposure to bed fire due to burning cigarette, init encntr +C2905429|T037|PT|X08.01XA|ICD10CM|Exposure to bed fire due to burning cigarette, initial encounter|Exposure to bed fire due to burning cigarette, initial encounter +C2905430|T037|AB|X08.01XD|ICD10CM|Exposure to bed fire due to burning cigarette, subs encntr|Exposure to bed fire due to burning cigarette, subs encntr +C2905430|T037|PT|X08.01XD|ICD10CM|Exposure to bed fire due to burning cigarette, subsequent encounter|Exposure to bed fire due to burning cigarette, subsequent encounter +C2905431|T037|AB|X08.01XS|ICD10CM|Exposure to bed fire due to burning cigarette, sequela|Exposure to bed fire due to burning cigarette, sequela +C2905431|T037|PT|X08.01XS|ICD10CM|Exposure to bed fire due to burning cigarette, sequela|Exposure to bed fire due to burning cigarette, sequela +C2905432|T037|AB|X08.09|ICD10CM|Exposure to bed fire due to other burning material|Exposure to bed fire due to other burning material +C2905432|T037|HT|X08.09|ICD10CM|Exposure to bed fire due to other burning material|Exposure to bed fire due to other burning material +C2905433|T037|AB|X08.09XA|ICD10CM|Exposure to bed fire due to oth burning material, init|Exposure to bed fire due to oth burning material, init +C2905433|T037|PT|X08.09XA|ICD10CM|Exposure to bed fire due to other burning material, initial encounter|Exposure to bed fire due to other burning material, initial encounter +C2905434|T037|AB|X08.09XD|ICD10CM|Exposure to bed fire due to oth burning material, subs|Exposure to bed fire due to oth burning material, subs +C2905434|T037|PT|X08.09XD|ICD10CM|Exposure to bed fire due to other burning material, subsequent encounter|Exposure to bed fire due to other burning material, subsequent encounter +C2905435|T037|AB|X08.09XS|ICD10CM|Exposure to bed fire due to other burning material, sequela|Exposure to bed fire due to other burning material, sequela +C2905435|T037|PT|X08.09XS|ICD10CM|Exposure to bed fire due to other burning material, sequela|Exposure to bed fire due to other burning material, sequela +C2905436|T037|HT|X08.1|ICD10CM|Exposure to sofa fire|Exposure to sofa fire +C2905436|T037|AB|X08.1|ICD10CM|Exposure to sofa fire|Exposure to sofa fire +C2905437|T037|AB|X08.10|ICD10CM|Exposure to sofa fire due to unspecified burning material|Exposure to sofa fire due to unspecified burning material +C2905437|T037|HT|X08.10|ICD10CM|Exposure to sofa fire due to unspecified burning material|Exposure to sofa fire due to unspecified burning material +C2905438|T037|AB|X08.10XA|ICD10CM|Exposure to sofa fire due to unsp burning material, init|Exposure to sofa fire due to unsp burning material, init +C2905438|T037|PT|X08.10XA|ICD10CM|Exposure to sofa fire due to unspecified burning material, initial encounter|Exposure to sofa fire due to unspecified burning material, initial encounter +C2905439|T037|AB|X08.10XD|ICD10CM|Exposure to sofa fire due to unsp burning material, subs|Exposure to sofa fire due to unsp burning material, subs +C2905439|T037|PT|X08.10XD|ICD10CM|Exposure to sofa fire due to unspecified burning material, subsequent encounter|Exposure to sofa fire due to unspecified burning material, subsequent encounter +C2905440|T037|AB|X08.10XS|ICD10CM|Exposure to sofa fire due to unsp burning material, sequela|Exposure to sofa fire due to unsp burning material, sequela +C2905440|T037|PT|X08.10XS|ICD10CM|Exposure to sofa fire due to unspecified burning material, sequela|Exposure to sofa fire due to unspecified burning material, sequela +C2905441|T037|AB|X08.11|ICD10CM|Exposure to sofa fire due to burning cigarette|Exposure to sofa fire due to burning cigarette +C2905441|T037|HT|X08.11|ICD10CM|Exposure to sofa fire due to burning cigarette|Exposure to sofa fire due to burning cigarette +C2905442|T037|AB|X08.11XA|ICD10CM|Exposure to sofa fire due to burning cigarette, init encntr|Exposure to sofa fire due to burning cigarette, init encntr +C2905442|T037|PT|X08.11XA|ICD10CM|Exposure to sofa fire due to burning cigarette, initial encounter|Exposure to sofa fire due to burning cigarette, initial encounter +C2905443|T037|AB|X08.11XD|ICD10CM|Exposure to sofa fire due to burning cigarette, subs encntr|Exposure to sofa fire due to burning cigarette, subs encntr +C2905443|T037|PT|X08.11XD|ICD10CM|Exposure to sofa fire due to burning cigarette, subsequent encounter|Exposure to sofa fire due to burning cigarette, subsequent encounter +C2905444|T037|AB|X08.11XS|ICD10CM|Exposure to sofa fire due to burning cigarette, sequela|Exposure to sofa fire due to burning cigarette, sequela +C2905444|T037|PT|X08.11XS|ICD10CM|Exposure to sofa fire due to burning cigarette, sequela|Exposure to sofa fire due to burning cigarette, sequela +C2905445|T037|AB|X08.19|ICD10CM|Exposure to sofa fire due to other burning material|Exposure to sofa fire due to other burning material +C2905445|T037|HT|X08.19|ICD10CM|Exposure to sofa fire due to other burning material|Exposure to sofa fire due to other burning material +C2905446|T037|AB|X08.19XA|ICD10CM|Exposure to sofa fire due to oth burning material, init|Exposure to sofa fire due to oth burning material, init +C2905446|T037|PT|X08.19XA|ICD10CM|Exposure to sofa fire due to other burning material, initial encounter|Exposure to sofa fire due to other burning material, initial encounter +C2905447|T037|AB|X08.19XD|ICD10CM|Exposure to sofa fire due to oth burning material, subs|Exposure to sofa fire due to oth burning material, subs +C2905447|T037|PT|X08.19XD|ICD10CM|Exposure to sofa fire due to other burning material, subsequent encounter|Exposure to sofa fire due to other burning material, subsequent encounter +C2905448|T037|AB|X08.19XS|ICD10CM|Exposure to sofa fire due to other burning material, sequela|Exposure to sofa fire due to other burning material, sequela +C2905448|T037|PT|X08.19XS|ICD10CM|Exposure to sofa fire due to other burning material, sequela|Exposure to sofa fire due to other burning material, sequela +C2905449|T037|AB|X08.2|ICD10CM|Exposure to other furniture fire|Exposure to other furniture fire +C2905449|T037|HT|X08.2|ICD10CM|Exposure to other furniture fire|Exposure to other furniture fire +C2905450|T037|AB|X08.20|ICD10CM|Exposure to oth furniture fire due to unsp burning material|Exposure to oth furniture fire due to unsp burning material +C2905450|T037|HT|X08.20|ICD10CM|Exposure to other furniture fire due to unspecified burning material|Exposure to other furniture fire due to unspecified burning material +C2905451|T037|PT|X08.20XA|ICD10CM|Exposure to other furniture fire due to unspecified burning material, initial encounter|Exposure to other furniture fire due to unspecified burning material, initial encounter +C2905451|T037|AB|X08.20XA|ICD10CM|Expsr to oth furniture fire due to unsp burn material, init|Expsr to oth furniture fire due to unsp burn material, init +C2905452|T037|PT|X08.20XD|ICD10CM|Exposure to other furniture fire due to unspecified burning material, subsequent encounter|Exposure to other furniture fire due to unspecified burning material, subsequent encounter +C2905452|T037|AB|X08.20XD|ICD10CM|Expsr to oth furniture fire due to unsp burn material, subs|Expsr to oth furniture fire due to unsp burn material, subs +C2905453|T037|PT|X08.20XS|ICD10CM|Exposure to other furniture fire due to unspecified burning material, sequela|Exposure to other furniture fire due to unspecified burning material, sequela +C2905453|T037|AB|X08.20XS|ICD10CM|Expsr to oth furniture fire due to unsp burn material, sqla|Expsr to oth furniture fire due to unsp burn material, sqla +C2905454|T037|AB|X08.21|ICD10CM|Exposure to other furniture fire due to burning cigarette|Exposure to other furniture fire due to burning cigarette +C2905454|T037|HT|X08.21|ICD10CM|Exposure to other furniture fire due to burning cigarette|Exposure to other furniture fire due to burning cigarette +C2905455|T037|PT|X08.21XA|ICD10CM|Exposure to other furniture fire due to burning cigarette, initial encounter|Exposure to other furniture fire due to burning cigarette, initial encounter +C2905455|T037|AB|X08.21XA|ICD10CM|Expsr to oth furniture fire due to burning cigarette, init|Expsr to oth furniture fire due to burning cigarette, init +C2905456|T037|PT|X08.21XD|ICD10CM|Exposure to other furniture fire due to burning cigarette, subsequent encounter|Exposure to other furniture fire due to burning cigarette, subsequent encounter +C2905456|T037|AB|X08.21XD|ICD10CM|Expsr to oth furniture fire due to burning cigarette, subs|Expsr to oth furniture fire due to burning cigarette, subs +C2905457|T037|PT|X08.21XS|ICD10CM|Exposure to other furniture fire due to burning cigarette, sequela|Exposure to other furniture fire due to burning cigarette, sequela +C2905457|T037|AB|X08.21XS|ICD10CM|Expsr to oth furniture fire due to burn cigarette, sequela|Expsr to oth furniture fire due to burn cigarette, sequela +C2905458|T037|AB|X08.29|ICD10CM|Exposure to oth furniture fire due to other burning material|Exposure to oth furniture fire due to other burning material +C2905458|T037|HT|X08.29|ICD10CM|Exposure to other furniture fire due to other burning material|Exposure to other furniture fire due to other burning material +C2905459|T037|PT|X08.29XA|ICD10CM|Exposure to other furniture fire due to other burning material, initial encounter|Exposure to other furniture fire due to other burning material, initial encounter +C2905459|T037|AB|X08.29XA|ICD10CM|Expsr to oth furniture fire due to oth burn material, init|Expsr to oth furniture fire due to oth burn material, init +C2905460|T037|PT|X08.29XD|ICD10CM|Exposure to other furniture fire due to other burning material, subsequent encounter|Exposure to other furniture fire due to other burning material, subsequent encounter +C2905460|T037|AB|X08.29XD|ICD10CM|Expsr to oth furniture fire due to oth burn material, subs|Expsr to oth furniture fire due to oth burn material, subs +C2905461|T037|PT|X08.29XS|ICD10CM|Exposure to other furniture fire due to other burning material, sequela|Exposure to other furniture fire due to other burning material, sequela +C2905461|T037|AB|X08.29XS|ICD10CM|Expsr to oth furniture fire due to oth burn material, sqla|Expsr to oth furniture fire due to oth burn material, sqla +C0497044|T037|HT|X08.8|ICD10CM|Exposure to other specified smoke, fire and flames|Exposure to other specified smoke, fire and flames +C0497044|T037|AB|X08.8|ICD10CM|Exposure to other specified smoke, fire and flames|Exposure to other specified smoke, fire and flames +C2905462|T037|AB|X08.8XXA|ICD10CM|Exposure to oth smoke, fire and flames, init encntr|Exposure to oth smoke, fire and flames, init encntr +C2905462|T037|PT|X08.8XXA|ICD10CM|Exposure to other specified smoke, fire and flames, initial encounter|Exposure to other specified smoke, fire and flames, initial encounter +C2905463|T037|AB|X08.8XXD|ICD10CM|Exposure to oth smoke, fire and flames, subs encntr|Exposure to oth smoke, fire and flames, subs encntr +C2905463|T037|PT|X08.8XXD|ICD10CM|Exposure to other specified smoke, fire and flames, subsequent encounter|Exposure to other specified smoke, fire and flames, subsequent encounter +C2905464|T037|AB|X08.8XXS|ICD10CM|Exposure to other specified smoke, fire and flames, sequela|Exposure to other specified smoke, fire and flames, sequela +C2905464|T037|PT|X08.8XXS|ICD10CM|Exposure to other specified smoke, fire and flames, sequela|Exposure to other specified smoke, fire and flames, sequela +C0497045|T037|PS|X09|ICD10|Exposure to unspecified smoke, fire and flames|Exposure to unspecified smoke, fire and flames +C0497045|T037|PX|X09|ICD10|Exposure to unspecified smoke, fire and flames as an external cause of morbidity and mortality|Exposure to unspecified smoke, fire and flames as an external cause of morbidity and mortality +C0497046|T037|PS|X10|ICD10|Contact with hot drinks, food, fats and cooking oils|Contact with hot drinks, food, fats and cooking oils +C0497046|T037|HT|X10|ICD10CM|Contact with hot drinks, food, fats and cooking oils|Contact with hot drinks, food, fats and cooking oils +C0497046|T037|AB|X10|ICD10CM|Contact with hot drinks, food, fats and cooking oils|Contact with hot drinks, food, fats and cooking oils +C0497046|T037|PX|X10|ICD10|Contact with hot drinks, food, fats and cooking oils as an external cause of morbidity and mortality|Contact with hot drinks, food, fats and cooking oils as an external cause of morbidity and mortality +C0479665|T037|HT|X10-X19|ICD10CM|Contact with heat and hot substances (X10-X19)|Contact with heat and hot substances (X10-X19) +C0479665|T037|HT|X10-X19.9|ICD10|Contact with heat and hot substances|Contact with heat and hot substances +C2905465|T037|HT|X10.0|ICD10CM|Contact with hot drinks|Contact with hot drinks +C2905465|T037|AB|X10.0|ICD10CM|Contact with hot drinks|Contact with hot drinks +C2905466|T037|AB|X10.0XXA|ICD10CM|Contact with hot drinks, initial encounter|Contact with hot drinks, initial encounter +C2905466|T037|PT|X10.0XXA|ICD10CM|Contact with hot drinks, initial encounter|Contact with hot drinks, initial encounter +C2905467|T037|AB|X10.0XXD|ICD10CM|Contact with hot drinks, subsequent encounter|Contact with hot drinks, subsequent encounter +C2905467|T037|PT|X10.0XXD|ICD10CM|Contact with hot drinks, subsequent encounter|Contact with hot drinks, subsequent encounter +C2905468|T037|AB|X10.0XXS|ICD10CM|Contact with hot drinks, sequela|Contact with hot drinks, sequela +C2905468|T037|PT|X10.0XXS|ICD10CM|Contact with hot drinks, sequela|Contact with hot drinks, sequela +C2905469|T037|HT|X10.1|ICD10CM|Contact with hot food|Contact with hot food +C2905469|T037|AB|X10.1|ICD10CM|Contact with hot food|Contact with hot food +C2905470|T037|AB|X10.1XXA|ICD10CM|Contact with hot food, initial encounter|Contact with hot food, initial encounter +C2905470|T037|PT|X10.1XXA|ICD10CM|Contact with hot food, initial encounter|Contact with hot food, initial encounter +C2905471|T037|AB|X10.1XXD|ICD10CM|Contact with hot food, subsequent encounter|Contact with hot food, subsequent encounter +C2905471|T037|PT|X10.1XXD|ICD10CM|Contact with hot food, subsequent encounter|Contact with hot food, subsequent encounter +C2905472|T037|AB|X10.1XXS|ICD10CM|Contact with hot food, sequela|Contact with hot food, sequela +C2905472|T037|PT|X10.1XXS|ICD10CM|Contact with hot food, sequela|Contact with hot food, sequela +C2905473|T037|HT|X10.2|ICD10CM|Contact with fats and cooking oils|Contact with fats and cooking oils +C2905473|T037|AB|X10.2|ICD10CM|Contact with fats and cooking oils|Contact with fats and cooking oils +C2905474|T037|AB|X10.2XXA|ICD10CM|Contact with fats and cooking oils, initial encounter|Contact with fats and cooking oils, initial encounter +C2905474|T037|PT|X10.2XXA|ICD10CM|Contact with fats and cooking oils, initial encounter|Contact with fats and cooking oils, initial encounter +C2905475|T037|AB|X10.2XXD|ICD10CM|Contact with fats and cooking oils, subsequent encounter|Contact with fats and cooking oils, subsequent encounter +C2905475|T037|PT|X10.2XXD|ICD10CM|Contact with fats and cooking oils, subsequent encounter|Contact with fats and cooking oils, subsequent encounter +C2905476|T037|AB|X10.2XXS|ICD10CM|Contact with fats and cooking oils, sequela|Contact with fats and cooking oils, sequela +C2905476|T037|PT|X10.2XXS|ICD10CM|Contact with fats and cooking oils, sequela|Contact with fats and cooking oils, sequela +C4290489|T037|ET|X11|ICD10CM|contact with boiling tap-water|contact with boiling tap-water +C4290490|T037|ET|X11|ICD10CM|contact with boiling water NOS|contact with boiling water NOS +C0497047|T037|HT|X11|ICD10CM|Contact with hot tap-water|Contact with hot tap-water +C0497047|T037|AB|X11|ICD10CM|Contact with hot tap-water|Contact with hot tap-water +C0497047|T037|PS|X11|ICD10|Contact with hot tap-water|Contact with hot tap-water +C0497047|T037|PX|X11|ICD10|Contact with hot tap-water as an external cause of morbidity and mortality|Contact with hot tap-water as an external cause of morbidity and mortality +C2905479|T037|AB|X11.0|ICD10CM|Contact with hot water in bath or tub|Contact with hot water in bath or tub +C2905479|T037|HT|X11.0|ICD10CM|Contact with hot water in bath or tub|Contact with hot water in bath or tub +C2905480|T037|AB|X11.0XXA|ICD10CM|Contact with hot water in bath or tub, initial encounter|Contact with hot water in bath or tub, initial encounter +C2905480|T037|PT|X11.0XXA|ICD10CM|Contact with hot water in bath or tub, initial encounter|Contact with hot water in bath or tub, initial encounter +C2905481|T037|AB|X11.0XXD|ICD10CM|Contact with hot water in bath or tub, subsequent encounter|Contact with hot water in bath or tub, subsequent encounter +C2905481|T037|PT|X11.0XXD|ICD10CM|Contact with hot water in bath or tub, subsequent encounter|Contact with hot water in bath or tub, subsequent encounter +C2905482|T037|AB|X11.0XXS|ICD10CM|Contact with hot water in bath or tub, sequela|Contact with hot water in bath or tub, sequela +C2905482|T037|PT|X11.0XXS|ICD10CM|Contact with hot water in bath or tub, sequela|Contact with hot water in bath or tub, sequela +C2905483|T037|ET|X11.1|ICD10CM|Contact with hot water running out of hose|Contact with hot water running out of hose +C2905484|T037|ET|X11.1|ICD10CM|Contact with hot water running out of tap|Contact with hot water running out of tap +C2905485|T037|AB|X11.1|ICD10CM|Contact with running hot water|Contact with running hot water +C2905485|T037|HT|X11.1|ICD10CM|Contact with running hot water|Contact with running hot water +C2905486|T037|AB|X11.1XXA|ICD10CM|Contact with running hot water, initial encounter|Contact with running hot water, initial encounter +C2905486|T037|PT|X11.1XXA|ICD10CM|Contact with running hot water, initial encounter|Contact with running hot water, initial encounter +C2905487|T037|AB|X11.1XXD|ICD10CM|Contact with running hot water, subsequent encounter|Contact with running hot water, subsequent encounter +C2905487|T037|PT|X11.1XXD|ICD10CM|Contact with running hot water, subsequent encounter|Contact with running hot water, subsequent encounter +C2905488|T037|AB|X11.1XXS|ICD10CM|Contact with running hot water, sequela|Contact with running hot water, sequela +C2905488|T037|PT|X11.1XXS|ICD10CM|Contact with running hot water, sequela|Contact with running hot water, sequela +C0497047|T037|ET|X11.8|ICD10CM|Contact with hot tap-water NOS|Contact with hot tap-water NOS +C2905489|T037|ET|X11.8|ICD10CM|Contact with hot water in bucket|Contact with hot water in bucket +C2905490|T037|AB|X11.8|ICD10CM|Contact with other hot tap-water|Contact with other hot tap-water +C2905490|T037|HT|X11.8|ICD10CM|Contact with other hot tap-water|Contact with other hot tap-water +C2905491|T037|AB|X11.8XXA|ICD10CM|Contact with other hot tap-water, initial encounter|Contact with other hot tap-water, initial encounter +C2905491|T037|PT|X11.8XXA|ICD10CM|Contact with other hot tap-water, initial encounter|Contact with other hot tap-water, initial encounter +C2905492|T037|AB|X11.8XXD|ICD10CM|Contact with other hot tap-water, subsequent encounter|Contact with other hot tap-water, subsequent encounter +C2905492|T037|PT|X11.8XXD|ICD10CM|Contact with other hot tap-water, subsequent encounter|Contact with other hot tap-water, subsequent encounter +C2905493|T037|AB|X11.8XXS|ICD10CM|Contact with other hot tap-water, sequela|Contact with other hot tap-water, sequela +C2905493|T037|PT|X11.8XXS|ICD10CM|Contact with other hot tap-water, sequela|Contact with other hot tap-water, sequela +C0497048|T037|HT|X12|ICD10CM|Contact with other hot fluids|Contact with other hot fluids +C0497048|T037|AB|X12|ICD10CM|Contact with other hot fluids|Contact with other hot fluids +C0497048|T037|PS|X12|ICD10|Contact with other hot fluids|Contact with other hot fluids +C0497048|T037|PX|X12|ICD10|Contact with other hot fluids as an external cause of morbidity and mortality|Contact with other hot fluids as an external cause of morbidity and mortality +C2905494|T037|ET|X12|ICD10CM|Contact with water heated on stove|Contact with water heated on stove +C2905495|T037|AB|X12.XXXA|ICD10CM|Contact with other hot fluids, initial encounter|Contact with other hot fluids, initial encounter +C2905495|T037|PT|X12.XXXA|ICD10CM|Contact with other hot fluids, initial encounter|Contact with other hot fluids, initial encounter +C2905496|T037|AB|X12.XXXD|ICD10CM|Contact with other hot fluids, subsequent encounter|Contact with other hot fluids, subsequent encounter +C2905496|T037|PT|X12.XXXD|ICD10CM|Contact with other hot fluids, subsequent encounter|Contact with other hot fluids, subsequent encounter +C2905497|T037|AB|X12.XXXS|ICD10CM|Contact with other hot fluids, sequela|Contact with other hot fluids, sequela +C2905497|T037|PT|X12.XXXS|ICD10CM|Contact with other hot fluids, sequela|Contact with other hot fluids, sequela +C2905498|T037|HT|X13|ICD10CM|Contact with steam and other hot vapors|Contact with steam and other hot vapors +C2905498|T037|AB|X13|ICD10CM|Contact with steam and other hot vapors|Contact with steam and other hot vapors +C2905499|T037|HT|X13.0|ICD10CM|Inhalation of steam and other hot vapors|Inhalation of steam and other hot vapors +C2905499|T037|AB|X13.0|ICD10CM|Inhalation of steam and other hot vapors|Inhalation of steam and other hot vapors +C2905500|T037|AB|X13.0XXA|ICD10CM|Inhalation of steam and other hot vapors, initial encounter|Inhalation of steam and other hot vapors, initial encounter +C2905500|T037|PT|X13.0XXA|ICD10CM|Inhalation of steam and other hot vapors, initial encounter|Inhalation of steam and other hot vapors, initial encounter +C2905501|T037|AB|X13.0XXD|ICD10CM|Inhalation of steam and other hot vapors, subs encntr|Inhalation of steam and other hot vapors, subs encntr +C2905501|T037|PT|X13.0XXD|ICD10CM|Inhalation of steam and other hot vapors, subsequent encounter|Inhalation of steam and other hot vapors, subsequent encounter +C2905502|T037|AB|X13.0XXS|ICD10CM|Inhalation of steam and other hot vapors, sequela|Inhalation of steam and other hot vapors, sequela +C2905502|T037|PT|X13.0XXS|ICD10CM|Inhalation of steam and other hot vapors, sequela|Inhalation of steam and other hot vapors, sequela +C2905503|T037|AB|X13.1|ICD10CM|Other contact with steam and other hot vapors|Other contact with steam and other hot vapors +C2905503|T037|HT|X13.1|ICD10CM|Other contact with steam and other hot vapors|Other contact with steam and other hot vapors +C2905504|T037|AB|X13.1XXA|ICD10CM|Other contact with steam and other hot vapors, init encntr|Other contact with steam and other hot vapors, init encntr +C2905504|T037|PT|X13.1XXA|ICD10CM|Other contact with steam and other hot vapors, initial encounter|Other contact with steam and other hot vapors, initial encounter +C2905505|T037|AB|X13.1XXD|ICD10CM|Other contact with steam and other hot vapors, subs encntr|Other contact with steam and other hot vapors, subs encntr +C2905505|T037|PT|X13.1XXD|ICD10CM|Other contact with steam and other hot vapors, subsequent encounter|Other contact with steam and other hot vapors, subsequent encounter +C2905506|T037|AB|X13.1XXS|ICD10CM|Other contact with steam and other hot vapors, sequela|Other contact with steam and other hot vapors, sequela +C2905506|T037|PT|X13.1XXS|ICD10CM|Other contact with steam and other hot vapors, sequela|Other contact with steam and other hot vapors, sequela +C2905507|T037|HT|X14|ICD10CM|Contact with hot air and other hot gases|Contact with hot air and other hot gases +C2905507|T037|AB|X14|ICD10CM|Contact with hot air and other hot gases|Contact with hot air and other hot gases +C2905508|T037|AB|X14.0|ICD10CM|Inhalation of hot air and gases|Inhalation of hot air and gases +C2905508|T037|HT|X14.0|ICD10CM|Inhalation of hot air and gases|Inhalation of hot air and gases +C2905509|T037|AB|X14.0XXA|ICD10CM|Inhalation of hot air and gases, initial encounter|Inhalation of hot air and gases, initial encounter +C2905509|T037|PT|X14.0XXA|ICD10CM|Inhalation of hot air and gases, initial encounter|Inhalation of hot air and gases, initial encounter +C2905510|T037|AB|X14.0XXD|ICD10CM|Inhalation of hot air and gases, subsequent encounter|Inhalation of hot air and gases, subsequent encounter +C2905510|T037|PT|X14.0XXD|ICD10CM|Inhalation of hot air and gases, subsequent encounter|Inhalation of hot air and gases, subsequent encounter +C2905511|T037|AB|X14.0XXS|ICD10CM|Inhalation of hot air and gases, sequela|Inhalation of hot air and gases, sequela +C2905511|T037|PT|X14.0XXS|ICD10CM|Inhalation of hot air and gases, sequela|Inhalation of hot air and gases, sequela +C2905512|T037|AB|X14.1|ICD10CM|Other contact with hot air and other hot gases|Other contact with hot air and other hot gases +C2905512|T037|HT|X14.1|ICD10CM|Other contact with hot air and other hot gases|Other contact with hot air and other hot gases +C2905513|T037|AB|X14.1XXA|ICD10CM|Other contact with hot air and other hot gases, init encntr|Other contact with hot air and other hot gases, init encntr +C2905513|T037|PT|X14.1XXA|ICD10CM|Other contact with hot air and other hot gases, initial encounter|Other contact with hot air and other hot gases, initial encounter +C2905514|T037|AB|X14.1XXD|ICD10CM|Other contact with hot air and other hot gases, subs encntr|Other contact with hot air and other hot gases, subs encntr +C2905514|T037|PT|X14.1XXD|ICD10CM|Other contact with hot air and other hot gases, subsequent encounter|Other contact with hot air and other hot gases, subsequent encounter +C2905515|T037|AB|X14.1XXS|ICD10CM|Other contact with hot air and other hot gases, sequela|Other contact with hot air and other hot gases, sequela +C2905515|T037|PT|X14.1XXS|ICD10CM|Other contact with hot air and other hot gases, sequela|Other contact with hot air and other hot gases, sequela +C0497051|T037|PS|X15|ICD10|Contact with hot household appliances|Contact with hot household appliances +C0497051|T037|HT|X15|ICD10CM|Contact with hot household appliances|Contact with hot household appliances +C0497051|T037|AB|X15|ICD10CM|Contact with hot household appliances|Contact with hot household appliances +C0497051|T037|PX|X15|ICD10|Contact with hot household appliances as an external cause of morbidity and mortality|Contact with hot household appliances as an external cause of morbidity and mortality +C2905516|T037|AB|X15.0|ICD10CM|Contact with hot stove (kitchen)|Contact with hot stove (kitchen) +C2905516|T037|HT|X15.0|ICD10CM|Contact with hot stove (kitchen)|Contact with hot stove (kitchen) +C2905517|T037|AB|X15.0XXA|ICD10CM|Contact with hot stove (kitchen), initial encounter|Contact with hot stove (kitchen), initial encounter +C2905517|T037|PT|X15.0XXA|ICD10CM|Contact with hot stove (kitchen), initial encounter|Contact with hot stove (kitchen), initial encounter +C2905518|T037|AB|X15.0XXD|ICD10CM|Contact with hot stove (kitchen), subsequent encounter|Contact with hot stove (kitchen), subsequent encounter +C2905518|T037|PT|X15.0XXD|ICD10CM|Contact with hot stove (kitchen), subsequent encounter|Contact with hot stove (kitchen), subsequent encounter +C2905519|T037|AB|X15.0XXS|ICD10CM|Contact with hot stove (kitchen), sequela|Contact with hot stove (kitchen), sequela +C2905519|T037|PT|X15.0XXS|ICD10CM|Contact with hot stove (kitchen), sequela|Contact with hot stove (kitchen), sequela +C2905520|T037|AB|X15.1|ICD10CM|Contact with hot toaster|Contact with hot toaster +C2905520|T037|HT|X15.1|ICD10CM|Contact with hot toaster|Contact with hot toaster +C2905521|T037|AB|X15.1XXA|ICD10CM|Contact with hot toaster, initial encounter|Contact with hot toaster, initial encounter +C2905521|T037|PT|X15.1XXA|ICD10CM|Contact with hot toaster, initial encounter|Contact with hot toaster, initial encounter +C2905522|T037|AB|X15.1XXD|ICD10CM|Contact with hot toaster, subsequent encounter|Contact with hot toaster, subsequent encounter +C2905522|T037|PT|X15.1XXD|ICD10CM|Contact with hot toaster, subsequent encounter|Contact with hot toaster, subsequent encounter +C2905523|T037|AB|X15.1XXS|ICD10CM|Contact with hot toaster, sequela|Contact with hot toaster, sequela +C2905523|T037|PT|X15.1XXS|ICD10CM|Contact with hot toaster, sequela|Contact with hot toaster, sequela +C2905524|T037|AB|X15.2|ICD10CM|Contact with hotplate|Contact with hotplate +C2905524|T037|HT|X15.2|ICD10CM|Contact with hotplate|Contact with hotplate +C2905525|T037|AB|X15.2XXA|ICD10CM|Contact with hotplate, initial encounter|Contact with hotplate, initial encounter +C2905525|T037|PT|X15.2XXA|ICD10CM|Contact with hotplate, initial encounter|Contact with hotplate, initial encounter +C2905526|T037|AB|X15.2XXD|ICD10CM|Contact with hotplate, subsequent encounter|Contact with hotplate, subsequent encounter +C2905526|T037|PT|X15.2XXD|ICD10CM|Contact with hotplate, subsequent encounter|Contact with hotplate, subsequent encounter +C2905527|T037|AB|X15.2XXS|ICD10CM|Contact with hotplate, sequela|Contact with hotplate, sequela +C2905527|T037|PT|X15.2XXS|ICD10CM|Contact with hotplate, sequela|Contact with hotplate, sequela +C2905528|T037|AB|X15.3|ICD10CM|Contact with hot saucepan or skillet|Contact with hot saucepan or skillet +C2905528|T037|HT|X15.3|ICD10CM|Contact with hot saucepan or skillet|Contact with hot saucepan or skillet +C2905529|T037|AB|X15.3XXA|ICD10CM|Contact with hot saucepan or skillet, initial encounter|Contact with hot saucepan or skillet, initial encounter +C2905529|T037|PT|X15.3XXA|ICD10CM|Contact with hot saucepan or skillet, initial encounter|Contact with hot saucepan or skillet, initial encounter +C2905530|T037|AB|X15.3XXD|ICD10CM|Contact with hot saucepan or skillet, subsequent encounter|Contact with hot saucepan or skillet, subsequent encounter +C2905530|T037|PT|X15.3XXD|ICD10CM|Contact with hot saucepan or skillet, subsequent encounter|Contact with hot saucepan or skillet, subsequent encounter +C2905531|T037|AB|X15.3XXS|ICD10CM|Contact with hot saucepan or skillet, sequela|Contact with hot saucepan or skillet, sequela +C2905531|T037|PT|X15.3XXS|ICD10CM|Contact with hot saucepan or skillet, sequela|Contact with hot saucepan or skillet, sequela +C2905532|T037|ET|X15.8|ICD10CM|Contact with cooker|Contact with cooker +C2905533|T037|ET|X15.8|ICD10CM|Contact with kettle|Contact with kettle +C2905534|T037|ET|X15.8|ICD10CM|Contact with light bulbs|Contact with light bulbs +C2905535|T037|AB|X15.8|ICD10CM|Contact with other hot household appliances|Contact with other hot household appliances +C2905535|T037|HT|X15.8|ICD10CM|Contact with other hot household appliances|Contact with other hot household appliances +C2905536|T037|AB|X15.8XXA|ICD10CM|Contact with other hot household appliances, init encntr|Contact with other hot household appliances, init encntr +C2905536|T037|PT|X15.8XXA|ICD10CM|Contact with other hot household appliances, initial encounter|Contact with other hot household appliances, initial encounter +C2905537|T037|AB|X15.8XXD|ICD10CM|Contact with other hot household appliances, subs encntr|Contact with other hot household appliances, subs encntr +C2905537|T037|PT|X15.8XXD|ICD10CM|Contact with other hot household appliances, subsequent encounter|Contact with other hot household appliances, subsequent encounter +C2905538|T037|AB|X15.8XXS|ICD10CM|Contact with other hot household appliances, sequela|Contact with other hot household appliances, sequela +C2905538|T037|PT|X15.8XXS|ICD10CM|Contact with other hot household appliances, sequela|Contact with other hot household appliances, sequela +C0479720|T037|PS|X16|ICD10|Contact with hot heating appliances, radiators and pipes|Contact with hot heating appliances, radiators and pipes +C0479720|T037|HT|X16|ICD10CM|Contact with hot heating appliances, radiators and pipes|Contact with hot heating appliances, radiators and pipes +C0479720|T037|AB|X16|ICD10CM|Contact with hot heating appliances, radiators and pipes|Contact with hot heating appliances, radiators and pipes +C2905539|T037|AB|X16.XXXA|ICD10CM|Contact w hot heating appliances, radiators and pipes, init|Contact w hot heating appliances, radiators and pipes, init +C2905539|T037|PT|X16.XXXA|ICD10CM|Contact with hot heating appliances, radiators and pipes, initial encounter|Contact with hot heating appliances, radiators and pipes, initial encounter +C2905540|T037|AB|X16.XXXD|ICD10CM|Contact w hot heating appliances, radiators and pipes, subs|Contact w hot heating appliances, radiators and pipes, subs +C2905540|T037|PT|X16.XXXD|ICD10CM|Contact with hot heating appliances, radiators and pipes, subsequent encounter|Contact with hot heating appliances, radiators and pipes, subsequent encounter +C2905541|T037|AB|X16.XXXS|ICD10CM|Cntct w hot heating appliances, radiators and pipes, sequela|Cntct w hot heating appliances, radiators and pipes, sequela +C2905541|T037|PT|X16.XXXS|ICD10CM|Contact with hot heating appliances, radiators and pipes, sequela|Contact with hot heating appliances, radiators and pipes, sequela +C0479731|T037|PS|X17|ICD10|Contact with hot engines, machinery and tools|Contact with hot engines, machinery and tools +C0479731|T037|HT|X17|ICD10CM|Contact with hot engines, machinery and tools|Contact with hot engines, machinery and tools +C0479731|T037|AB|X17|ICD10CM|Contact with hot engines, machinery and tools|Contact with hot engines, machinery and tools +C0479731|T037|PX|X17|ICD10|Contact with hot engines, machinery and tools as an external cause of morbidity and mortality|Contact with hot engines, machinery and tools as an external cause of morbidity and mortality +C2905542|T037|AB|X17.XXXA|ICD10CM|Contact with hot engines, machinery and tools, init encntr|Contact with hot engines, machinery and tools, init encntr +C2905542|T037|PT|X17.XXXA|ICD10CM|Contact with hot engines, machinery and tools, initial encounter|Contact with hot engines, machinery and tools, initial encounter +C2905543|T037|AB|X17.XXXD|ICD10CM|Contact with hot engines, machinery and tools, subs encntr|Contact with hot engines, machinery and tools, subs encntr +C2905543|T037|PT|X17.XXXD|ICD10CM|Contact with hot engines, machinery and tools, subsequent encounter|Contact with hot engines, machinery and tools, subsequent encounter +C2905544|T037|AB|X17.XXXS|ICD10CM|Contact with hot engines, machinery and tools, sequela|Contact with hot engines, machinery and tools, sequela +C2905544|T037|PT|X17.XXXS|ICD10CM|Contact with hot engines, machinery and tools, sequela|Contact with hot engines, machinery and tools, sequela +C2905545|T037|ET|X18|ICD10CM|Contact with liquid metal|Contact with liquid metal +C0479742|T037|PS|X18|ICD10|Contact with other hot metals|Contact with other hot metals +C0479742|T037|HT|X18|ICD10CM|Contact with other hot metals|Contact with other hot metals +C0479742|T037|AB|X18|ICD10CM|Contact with other hot metals|Contact with other hot metals +C0479742|T037|PX|X18|ICD10|Contact with other hot metals as an external cause of morbidity and mortality|Contact with other hot metals as an external cause of morbidity and mortality +C2905546|T037|AB|X18.XXXA|ICD10CM|Contact with other hot metals, initial encounter|Contact with other hot metals, initial encounter +C2905546|T037|PT|X18.XXXA|ICD10CM|Contact with other hot metals, initial encounter|Contact with other hot metals, initial encounter +C2905547|T037|AB|X18.XXXD|ICD10CM|Contact with other hot metals, subsequent encounter|Contact with other hot metals, subsequent encounter +C2905547|T037|PT|X18.XXXD|ICD10CM|Contact with other hot metals, subsequent encounter|Contact with other hot metals, subsequent encounter +C2905548|T037|AB|X18.XXXS|ICD10CM|Contact with other hot metals, sequela|Contact with other hot metals, sequela +C2905548|T037|PT|X18.XXXS|ICD10CM|Contact with other hot metals, sequela|Contact with other hot metals, sequela +C0479753|T037|PS|X19|ICD10|Contact with other and unspecified heat and hot substances|Contact with other and unspecified heat and hot substances +C2905549|T037|AB|X19|ICD10CM|Contact with other heat and hot substances|Contact with other heat and hot substances +C2905549|T037|HT|X19|ICD10CM|Contact with other heat and hot substances|Contact with other heat and hot substances +C2905550|T037|AB|X19.XXXA|ICD10CM|Contact with other heat and hot substances, init encntr|Contact with other heat and hot substances, init encntr +C2905550|T037|PT|X19.XXXA|ICD10CM|Contact with other heat and hot substances, initial encounter|Contact with other heat and hot substances, initial encounter +C2905551|T037|AB|X19.XXXD|ICD10CM|Contact with other heat and hot substances, subs encntr|Contact with other heat and hot substances, subs encntr +C2905551|T037|PT|X19.XXXD|ICD10CM|Contact with other heat and hot substances, subsequent encounter|Contact with other heat and hot substances, subsequent encounter +C2905552|T037|AB|X19.XXXS|ICD10CM|Contact with other heat and hot substances, sequela|Contact with other heat and hot substances, sequela +C2905552|T037|PT|X19.XXXS|ICD10CM|Contact with other heat and hot substances, sequela|Contact with other heat and hot substances, sequela +C0479765|T037|PS|X20|ICD10|Contact with venomous snakes and lizards|Contact with venomous snakes and lizards +C0479765|T037|PX|X20|ICD10|Contact with venomous snakes and lizards as an external cause of morbidity and mortality|Contact with venomous snakes and lizards as an external cause of morbidity and mortality +C0479764|T037|HT|X20-X29.9|ICD10|Contact with venomous animals and plants|Contact with venomous animals and plants +C0497052|T037|PS|X21|ICD10|Contact with venomous spiders|Contact with venomous spiders +C0497052|T037|PX|X21|ICD10|Contact with venomous spiders as an external cause of morbidity and mortality|Contact with venomous spiders as an external cause of morbidity and mortality +C0497053|T037|PS|X22|ICD10|Contact with scorpions|Contact with scorpions +C0497053|T037|PX|X22|ICD10|Contact with scorpions as an external cause of morbidity and mortality|Contact with scorpions as an external cause of morbidity and mortality +C0497054|T037|PS|X23|ICD10|Contact with hornets, wasps and bees|Contact with hornets, wasps and bees +C0497054|T037|PX|X23|ICD10|Contact with hornets, wasps and bees as an external cause of morbidity and mortality|Contact with hornets, wasps and bees as an external cause of morbidity and mortality +C0497055|T037|PS|X24|ICD10|Contact with centipedes and venomous millipedes (tropical)|Contact with centipedes and venomous millipedes (tropical) +C0497056|T037|PS|X25|ICD10|Contact with other specified venomous arthropods|Contact with other specified venomous arthropods +C0497056|T037|PX|X25|ICD10|Contact with other specified venomous arthropods as an external cause of morbidity and mortality|Contact with other specified venomous arthropods as an external cause of morbidity and mortality +C0497057|T037|PS|X26|ICD10|Contact with venomous marine animals and plants|Contact with venomous marine animals and plants +C0497057|T037|PX|X26|ICD10|Contact with venomous marine animals and plants as an external cause of morbidity and mortality|Contact with venomous marine animals and plants as an external cause of morbidity and mortality +C0497058|T037|PS|X27|ICD10|Contact with other specified venomous animals|Contact with other specified venomous animals +C0497058|T037|PX|X27|ICD10|Contact with other specified venomous animals as an external cause of morbidity and mortality|Contact with other specified venomous animals as an external cause of morbidity and mortality +C0497059|T037|PS|X28|ICD10|Contact with other specified venomous plants|Contact with other specified venomous plants +C0497059|T037|PX|X28|ICD10|Contact with other specified venomous plants as an external cause of morbidity and mortality|Contact with other specified venomous plants as an external cause of morbidity and mortality +C0479764|T037|PS|X29|ICD10|Contact with unspecified venomous animal or plant|Contact with unspecified venomous animal or plant +C0479764|T037|PX|X29|ICD10|Contact with unspecified venomous animal or plant as an external cause of morbidity and mortality|Contact with unspecified venomous animal or plant as an external cause of morbidity and mortality +C2905553|T037|ET|X30|ICD10CM|Exposure to excessive heat as the cause of sunstroke|Exposure to excessive heat as the cause of sunstroke +C0497060|T037|PS|X30|ICD10|Exposure to excessive natural heat|Exposure to excessive natural heat +C0497060|T037|HT|X30|ICD10CM|Exposure to excessive natural heat|Exposure to excessive natural heat +C0497060|T037|AB|X30|ICD10CM|Exposure to excessive natural heat|Exposure to excessive natural heat +C0497060|T037|PX|X30|ICD10|Exposure to excessive natural heat as an external cause of morbidity and mortality|Exposure to excessive natural heat as an external cause of morbidity and mortality +C0239930|T037|ET|X30|ICD10CM|Exposure to heat NOS|Exposure to heat NOS +C0479866|T037|HT|X30-X39|ICD10CM|Exposure to forces of nature (X30-X39)|Exposure to forces of nature (X30-X39) +C0479866|T037|HT|X30-X39.9|ICD10|Exposure to forces of nature|Exposure to forces of nature +C2905554|T037|AB|X30.XXXA|ICD10CM|Exposure to excessive natural heat, initial encounter|Exposure to excessive natural heat, initial encounter +C2905554|T037|PT|X30.XXXA|ICD10CM|Exposure to excessive natural heat, initial encounter|Exposure to excessive natural heat, initial encounter +C2905555|T037|AB|X30.XXXD|ICD10CM|Exposure to excessive natural heat, subsequent encounter|Exposure to excessive natural heat, subsequent encounter +C2905555|T037|PT|X30.XXXD|ICD10CM|Exposure to excessive natural heat, subsequent encounter|Exposure to excessive natural heat, subsequent encounter +C2905556|T037|AB|X30.XXXS|ICD10CM|Exposure to excessive natural heat, sequela|Exposure to excessive natural heat, sequela +C2905556|T037|PT|X30.XXXS|ICD10CM|Exposure to excessive natural heat, sequela|Exposure to excessive natural heat, sequela +C0867839|T037|ET|X31|ICD10CM|Excessive cold as the cause of chilblains NOS|Excessive cold as the cause of chilblains NOS +C2905557|T037|ET|X31|ICD10CM|Excessive cold as the cause of immersion foot or hand|Excessive cold as the cause of immersion foot or hand +C0231275|T037|ET|X31|ICD10CM|Exposure to cold NOS|Exposure to cold NOS +C0497061|T037|HT|X31|ICD10CM|Exposure to excessive natural cold|Exposure to excessive natural cold +C0497061|T037|AB|X31|ICD10CM|Exposure to excessive natural cold|Exposure to excessive natural cold +C0497061|T037|PS|X31|ICD10|Exposure to excessive natural cold|Exposure to excessive natural cold +C0497061|T037|PX|X31|ICD10|Exposure to excessive natural cold as an external cause of morbidity and mortality|Exposure to excessive natural cold as an external cause of morbidity and mortality +C2118149|T037|ET|X31|ICD10CM|Exposure to weather conditions|Exposure to weather conditions +C2905558|T037|AB|X31.XXXA|ICD10CM|Exposure to excessive natural cold, initial encounter|Exposure to excessive natural cold, initial encounter +C2905558|T037|PT|X31.XXXA|ICD10CM|Exposure to excessive natural cold, initial encounter|Exposure to excessive natural cold, initial encounter +C2905559|T037|AB|X31.XXXD|ICD10CM|Exposure to excessive natural cold, subsequent encounter|Exposure to excessive natural cold, subsequent encounter +C2905559|T037|PT|X31.XXXD|ICD10CM|Exposure to excessive natural cold, subsequent encounter|Exposure to excessive natural cold, subsequent encounter +C2905560|T037|AB|X31.XXXS|ICD10CM|Exposure to excessive natural cold, sequela|Exposure to excessive natural cold, sequela +C2905560|T037|PT|X31.XXXS|ICD10CM|Exposure to excessive natural cold, sequela|Exposure to excessive natural cold, sequela +C0497062|T033|PS|X32|ICD10|Exposure to sunlight|Exposure to sunlight +C0497062|T033|HT|X32|ICD10CM|Exposure to sunlight|Exposure to sunlight +C0497062|T033|AB|X32|ICD10CM|Exposure to sunlight|Exposure to sunlight +C0497062|T033|PX|X32|ICD10|Exposure to sunlight as an external cause of morbidity and mortality|Exposure to sunlight as an external cause of morbidity and mortality +C2905561|T037|AB|X32.XXXA|ICD10CM|Exposure to sunlight, initial encounter|Exposure to sunlight, initial encounter +C2905561|T037|PT|X32.XXXA|ICD10CM|Exposure to sunlight, initial encounter|Exposure to sunlight, initial encounter +C2905562|T037|AB|X32.XXXD|ICD10CM|Exposure to sunlight, subsequent encounter|Exposure to sunlight, subsequent encounter +C2905562|T037|PT|X32.XXXD|ICD10CM|Exposure to sunlight, subsequent encounter|Exposure to sunlight, subsequent encounter +C2905563|T037|AB|X32.XXXS|ICD10CM|Exposure to sunlight, sequela|Exposure to sunlight, sequela +C2905563|T037|PT|X32.XXXS|ICD10CM|Exposure to sunlight, sequela|Exposure to sunlight, sequela +C0479897|T037|PT|X33|ICD10|Victim of lightning|Victim of lightning +C0417614|T037|HT|X34|ICD10CM|Earthquake|Earthquake +C0417614|T037|AB|X34|ICD10CM|Earthquake|Earthquake +C0479908|T037|PT|X34|ICD10|Victim of earthquake|Victim of earthquake +C2905564|T037|PT|X34.XXXA|ICD10CM|Earthquake, initial encounter|Earthquake, initial encounter +C2905564|T037|AB|X34.XXXA|ICD10CM|Earthquake, initial encounter|Earthquake, initial encounter +C2905565|T037|PT|X34.XXXD|ICD10CM|Earthquake, subsequent encounter|Earthquake, subsequent encounter +C2905565|T037|AB|X34.XXXD|ICD10CM|Earthquake, subsequent encounter|Earthquake, subsequent encounter +C2905566|T037|PT|X34.XXXS|ICD10CM|Earthquake, sequela|Earthquake, sequela +C2905566|T037|AB|X34.XXXS|ICD10CM|Earthquake, sequela|Earthquake, sequela +C0479919|T037|PT|X35|ICD10|Victim of volcanic eruption|Victim of volcanic eruption +C0375746|T037|AB|X35|ICD10CM|Volcanic eruption|Volcanic eruption +C0375746|T037|HT|X35|ICD10CM|Volcanic eruption|Volcanic eruption +C2905567|T037|AB|X35.XXXA|ICD10CM|Volcanic eruption, initial encounter|Volcanic eruption, initial encounter +C2905567|T037|PT|X35.XXXA|ICD10CM|Volcanic eruption, initial encounter|Volcanic eruption, initial encounter +C2905568|T037|AB|X35.XXXD|ICD10CM|Volcanic eruption, subsequent encounter|Volcanic eruption, subsequent encounter +C2905568|T037|PT|X35.XXXD|ICD10CM|Volcanic eruption, subsequent encounter|Volcanic eruption, subsequent encounter +C2905569|T037|AB|X35.XXXS|ICD10CM|Volcanic eruption, sequela|Volcanic eruption, sequela +C2905569|T037|PT|X35.XXXS|ICD10CM|Volcanic eruption, sequela|Volcanic eruption, sequela +C2905571|T037|AB|X36|ICD10CM|Avalanche, landslide and other earth movements|Avalanche, landslide and other earth movements +C2905571|T037|HT|X36|ICD10CM|Avalanche, landslide and other earth movements|Avalanche, landslide and other earth movements +C0479930|T037|PT|X36|ICD10|Victim of avalanche, landslide and other earth movements|Victim of avalanche, landslide and other earth movements +C4290491|T037|ET|X36|ICD10CM|victim of mudslide of cataclysmic nature|victim of mudslide of cataclysmic nature +C2905572|T037|AB|X36.0|ICD10CM|Collapse of dam or man-made structure causing earth movement|Collapse of dam or man-made structure causing earth movement +C2905572|T037|HT|X36.0|ICD10CM|Collapse of dam or man-made structure causing earth movement|Collapse of dam or man-made structure causing earth movement +C2905573|T037|AB|X36.0XXA|ICD10CM|Collapse of dam or man-made struct cause earth movmnt, init|Collapse of dam or man-made struct cause earth movmnt, init +C2905573|T037|PT|X36.0XXA|ICD10CM|Collapse of dam or man-made structure causing earth movement, initial encounter|Collapse of dam or man-made structure causing earth movement, initial encounter +C2905574|T037|AB|X36.0XXD|ICD10CM|Collapse of dam or man-made struct cause earth movmnt, subs|Collapse of dam or man-made struct cause earth movmnt, subs +C2905574|T037|PT|X36.0XXD|ICD10CM|Collapse of dam or man-made structure causing earth movement, subsequent encounter|Collapse of dam or man-made structure causing earth movement, subsequent encounter +C2905575|T037|AB|X36.0XXS|ICD10CM|Collapse of dam or man-made struct cause earth movmnt, sqla|Collapse of dam or man-made struct cause earth movmnt, sqla +C2905575|T037|PT|X36.0XXS|ICD10CM|Collapse of dam or man-made structure causing earth movement, sequela|Collapse of dam or man-made structure causing earth movement, sequela +C0375747|T037|HT|X36.1|ICD10CM|Avalanche, landslide, or mudslide|Avalanche, landslide, or mudslide +C0375747|T037|AB|X36.1|ICD10CM|Avalanche, landslide, or mudslide|Avalanche, landslide, or mudslide +C2905577|T037|AB|X36.1XXA|ICD10CM|Avalanche, landslide, or mudslide, initial encounter|Avalanche, landslide, or mudslide, initial encounter +C2905577|T037|PT|X36.1XXA|ICD10CM|Avalanche, landslide, or mudslide, initial encounter|Avalanche, landslide, or mudslide, initial encounter +C2905578|T037|AB|X36.1XXD|ICD10CM|Avalanche, landslide, or mudslide, subsequent encounter|Avalanche, landslide, or mudslide, subsequent encounter +C2905578|T037|PT|X36.1XXD|ICD10CM|Avalanche, landslide, or mudslide, subsequent encounter|Avalanche, landslide, or mudslide, subsequent encounter +C2905579|T037|AB|X36.1XXS|ICD10CM|Avalanche, landslide, or mudslide, sequela|Avalanche, landslide, or mudslide, sequela +C2905579|T037|PT|X36.1XXS|ICD10CM|Avalanche, landslide, or mudslide, sequela|Avalanche, landslide, or mudslide, sequela +C2905580|T037|AB|X37|ICD10CM|Cataclysmic storm|Cataclysmic storm +C2905580|T037|HT|X37|ICD10CM|Cataclysmic storm|Cataclysmic storm +C0479941|T037|PT|X37|ICD10|Victim of cataclysmic storm|Victim of cataclysmic storm +C0375739|T037|HT|X37.0|ICD10CM|Hurricane|Hurricane +C0375739|T037|AB|X37.0|ICD10CM|Hurricane|Hurricane +C2905581|T037|ET|X37.0|ICD10CM|Storm surge|Storm surge +C2919090|T037|ET|X37.0|ICD10CM|Typhoon|Typhoon +C2905582|T037|PT|X37.0XXA|ICD10CM|Hurricane, initial encounter|Hurricane, initial encounter +C2905582|T037|AB|X37.0XXA|ICD10CM|Hurricane, initial encounter|Hurricane, initial encounter +C2905583|T037|PT|X37.0XXD|ICD10CM|Hurricane, subsequent encounter|Hurricane, subsequent encounter +C2905583|T037|AB|X37.0XXD|ICD10CM|Hurricane, subsequent encounter|Hurricane, subsequent encounter +C2905584|T037|PT|X37.0XXS|ICD10CM|Hurricane, sequela|Hurricane, sequela +C2905584|T037|AB|X37.0XXS|ICD10CM|Hurricane, sequela|Hurricane, sequela +C0867913|T037|ET|X37.1|ICD10CM|Cyclone|Cyclone +C0375740|T037|HT|X37.1|ICD10CM|Tornado|Tornado +C0375740|T037|AB|X37.1|ICD10CM|Tornado|Tornado +C0375740|T037|ET|X37.1|ICD10CM|Twister|Twister +C2905585|T037|PT|X37.1XXA|ICD10CM|Tornado, initial encounter|Tornado, initial encounter +C2905585|T037|AB|X37.1XXA|ICD10CM|Tornado, initial encounter|Tornado, initial encounter +C2905586|T037|PT|X37.1XXD|ICD10CM|Tornado, subsequent encounter|Tornado, subsequent encounter +C2905586|T037|AB|X37.1XXD|ICD10CM|Tornado, subsequent encounter|Tornado, subsequent encounter +C2905587|T037|PT|X37.1XXS|ICD10CM|Tornado, sequela|Tornado, sequela +C2905587|T037|AB|X37.1XXS|ICD10CM|Tornado, sequela|Tornado, sequela +C0375742|T037|AB|X37.2|ICD10CM|Blizzard (snow)(ice)|Blizzard (snow)(ice) +C0375742|T037|HT|X37.2|ICD10CM|Blizzard (snow)(ice)|Blizzard (snow)(ice) +C2905588|T037|AB|X37.2XXA|ICD10CM|Blizzard (snow)(ice), initial encounter|Blizzard (snow)(ice), initial encounter +C2905588|T037|PT|X37.2XXA|ICD10CM|Blizzard (snow)(ice), initial encounter|Blizzard (snow)(ice), initial encounter +C2905589|T037|AB|X37.2XXD|ICD10CM|Blizzard (snow)(ice), subsequent encounter|Blizzard (snow)(ice), subsequent encounter +C2905589|T037|PT|X37.2XXD|ICD10CM|Blizzard (snow)(ice), subsequent encounter|Blizzard (snow)(ice), subsequent encounter +C2905590|T037|AB|X37.2XXS|ICD10CM|Blizzard (snow)(ice), sequela|Blizzard (snow)(ice), sequela +C2905590|T037|PT|X37.2XXS|ICD10CM|Blizzard (snow)(ice), sequela|Blizzard (snow)(ice), sequela +C0375743|T037|HT|X37.3|ICD10CM|Dust storm|Dust storm +C0375743|T037|AB|X37.3|ICD10CM|Dust storm|Dust storm +C2905592|T037|AB|X37.3XXA|ICD10CM|Dust storm, initial encounter|Dust storm, initial encounter +C2905592|T037|PT|X37.3XXA|ICD10CM|Dust storm, initial encounter|Dust storm, initial encounter +C2905593|T037|AB|X37.3XXD|ICD10CM|Dust storm, subsequent encounter|Dust storm, subsequent encounter +C2905593|T037|PT|X37.3XXD|ICD10CM|Dust storm, subsequent encounter|Dust storm, subsequent encounter +C2905594|T037|AB|X37.3XXS|ICD10CM|Dust storm, sequela|Dust storm, sequela +C2905594|T037|PT|X37.3XXS|ICD10CM|Dust storm, sequela|Dust storm, sequela +C2919085|T037|AB|X37.4|ICD10CM|Tidalwave|Tidalwave +C2919085|T037|HT|X37.4|ICD10CM|Tidalwave|Tidalwave +C2905595|T037|AB|X37.41|ICD10CM|Tidal wave due to earthquake or volcanic eruption|Tidal wave due to earthquake or volcanic eruption +C2905595|T037|HT|X37.41|ICD10CM|Tidal wave due to earthquake or volcanic eruption|Tidal wave due to earthquake or volcanic eruption +C2919085|T037|ET|X37.41|ICD10CM|Tidal wave NOS|Tidal wave NOS +C2919089|T037|ET|X37.41|ICD10CM|Tsunami|Tsunami +C2905596|T037|AB|X37.41XA|ICD10CM|Tidal wave due to earthquake or volcanic eruption, init|Tidal wave due to earthquake or volcanic eruption, init +C2905596|T037|PT|X37.41XA|ICD10CM|Tidal wave due to earthquake or volcanic eruption, initial encounter|Tidal wave due to earthquake or volcanic eruption, initial encounter +C2905597|T037|AB|X37.41XD|ICD10CM|Tidal wave due to earthquake or volcanic eruption, subs|Tidal wave due to earthquake or volcanic eruption, subs +C2905597|T037|PT|X37.41XD|ICD10CM|Tidal wave due to earthquake or volcanic eruption, subsequent encounter|Tidal wave due to earthquake or volcanic eruption, subsequent encounter +C2905598|T037|AB|X37.41XS|ICD10CM|Tidal wave due to earthquake or volcanic eruption, sequela|Tidal wave due to earthquake or volcanic eruption, sequela +C2905598|T037|PT|X37.41XS|ICD10CM|Tidal wave due to earthquake or volcanic eruption, sequela|Tidal wave due to earthquake or volcanic eruption, sequela +C2905599|T037|AB|X37.42|ICD10CM|Tidal wave due to storm|Tidal wave due to storm +C2905599|T037|HT|X37.42|ICD10CM|Tidal wave due to storm|Tidal wave due to storm +C2905600|T037|AB|X37.42XA|ICD10CM|Tidal wave due to storm, initial encounter|Tidal wave due to storm, initial encounter +C2905600|T037|PT|X37.42XA|ICD10CM|Tidal wave due to storm, initial encounter|Tidal wave due to storm, initial encounter +C2905601|T037|AB|X37.42XD|ICD10CM|Tidal wave due to storm, subsequent encounter|Tidal wave due to storm, subsequent encounter +C2905601|T037|PT|X37.42XD|ICD10CM|Tidal wave due to storm, subsequent encounter|Tidal wave due to storm, subsequent encounter +C2905602|T037|AB|X37.42XS|ICD10CM|Tidal wave due to storm, sequela|Tidal wave due to storm, sequela +C2905602|T037|PT|X37.42XS|ICD10CM|Tidal wave due to storm, sequela|Tidal wave due to storm, sequela +C2905603|T037|AB|X37.43|ICD10CM|Tidal wave due to landslide|Tidal wave due to landslide +C2905603|T037|HT|X37.43|ICD10CM|Tidal wave due to landslide|Tidal wave due to landslide +C2905604|T037|AB|X37.43XA|ICD10CM|Tidal wave due to landslide, initial encounter|Tidal wave due to landslide, initial encounter +C2905604|T037|PT|X37.43XA|ICD10CM|Tidal wave due to landslide, initial encounter|Tidal wave due to landslide, initial encounter +C2905605|T037|AB|X37.43XD|ICD10CM|Tidal wave due to landslide, subsequent encounter|Tidal wave due to landslide, subsequent encounter +C2905605|T037|PT|X37.43XD|ICD10CM|Tidal wave due to landslide, subsequent encounter|Tidal wave due to landslide, subsequent encounter +C2905606|T037|AB|X37.43XS|ICD10CM|Tidal wave due to landslide, sequela|Tidal wave due to landslide, sequela +C2905606|T037|PT|X37.43XS|ICD10CM|Tidal wave due to landslide, sequela|Tidal wave due to landslide, sequela +C2905607|T037|ET|X37.8|ICD10CM|Cloudburst|Cloudburst +C0375744|T037|HT|X37.8|ICD10CM|Other cataclysmic storms|Other cataclysmic storms +C0375744|T037|AB|X37.8|ICD10CM|Other cataclysmic storms|Other cataclysmic storms +C2919086|T037|ET|X37.8|ICD10CM|Torrential rain|Torrential rain +C2905609|T037|AB|X37.8XXA|ICD10CM|Other cataclysmic storms, initial encounter|Other cataclysmic storms, initial encounter +C2905609|T037|PT|X37.8XXA|ICD10CM|Other cataclysmic storms, initial encounter|Other cataclysmic storms, initial encounter +C2905610|T037|AB|X37.8XXD|ICD10CM|Other cataclysmic storms, subsequent encounter|Other cataclysmic storms, subsequent encounter +C2905610|T037|PT|X37.8XXD|ICD10CM|Other cataclysmic storms, subsequent encounter|Other cataclysmic storms, subsequent encounter +C2905611|T037|AB|X37.8XXS|ICD10CM|Other cataclysmic storms, sequela|Other cataclysmic storms, sequela +C2905611|T037|PT|X37.8XXS|ICD10CM|Other cataclysmic storms, sequela|Other cataclysmic storms, sequela +C2905612|T037|ET|X37.9|ICD10CM|Storm NOS|Storm NOS +C2905613|T037|AB|X37.9|ICD10CM|Unspecified cataclysmic storm|Unspecified cataclysmic storm +C2905613|T037|HT|X37.9|ICD10CM|Unspecified cataclysmic storm|Unspecified cataclysmic storm +C2905614|T037|AB|X37.9XXA|ICD10CM|Unspecified cataclysmic storm, initial encounter|Unspecified cataclysmic storm, initial encounter +C2905614|T037|PT|X37.9XXA|ICD10CM|Unspecified cataclysmic storm, initial encounter|Unspecified cataclysmic storm, initial encounter +C2905615|T037|AB|X37.9XXD|ICD10CM|Unspecified cataclysmic storm, subsequent encounter|Unspecified cataclysmic storm, subsequent encounter +C2905615|T037|PT|X37.9XXD|ICD10CM|Unspecified cataclysmic storm, subsequent encounter|Unspecified cataclysmic storm, subsequent encounter +C2905616|T037|AB|X37.9XXS|ICD10CM|Unspecified cataclysmic storm, sequela|Unspecified cataclysmic storm, sequela +C2905616|T037|PT|X37.9XXS|ICD10CM|Unspecified cataclysmic storm, sequela|Unspecified cataclysmic storm, sequela +C0375741|T037|AB|X38|ICD10CM|Flood|Flood +C0375741|T037|HT|X38|ICD10CM|Flood|Flood +C2905617|T037|ET|X38|ICD10CM|Flood arising from remote storm|Flood arising from remote storm +C2905618|T037|ET|X38|ICD10CM|Flood of cataclysmic nature arising from melting snow|Flood of cataclysmic nature arising from melting snow +C2905619|T037|ET|X38|ICD10CM|Flood resulting directly from storm|Flood resulting directly from storm +C0479952|T037|PT|X38|ICD10|Victim of flood|Victim of flood +C2905620|T037|PT|X38.XXXA|ICD10CM|Flood, initial encounter|Flood, initial encounter +C2905620|T037|AB|X38.XXXA|ICD10CM|Flood, initial encounter|Flood, initial encounter +C2905621|T037|PT|X38.XXXD|ICD10CM|Flood, subsequent encounter|Flood, subsequent encounter +C2905621|T037|AB|X38.XXXD|ICD10CM|Flood, subsequent encounter|Flood, subsequent encounter +C2905622|T037|PT|X38.XXXS|ICD10CM|Flood, sequela|Flood, sequela +C2905622|T037|AB|X38.XXXS|ICD10CM|Flood, sequela|Flood, sequela +C0479963|T037|PT|X39|ICD10|Exposure to other and unspecified forces of nature|Exposure to other and unspecified forces of nature +C2905623|T037|AB|X39|ICD10CM|Exposure to other forces of nature|Exposure to other forces of nature +C2905623|T037|HT|X39|ICD10CM|Exposure to other forces of nature|Exposure to other forces of nature +C2905624|T037|HT|X39.0|ICD10CM|Exposure to natural radiation|Exposure to natural radiation +C2905624|T037|AB|X39.0|ICD10CM|Exposure to natural radiation|Exposure to natural radiation +C0681792|T033|HT|X39.01|ICD10CM|Exposure to radon|Exposure to radon +C0681792|T033|AB|X39.01|ICD10CM|Exposure to radon|Exposure to radon +C2905625|T037|AB|X39.01XA|ICD10CM|Exposure to radon, initial encounter|Exposure to radon, initial encounter +C2905625|T037|PT|X39.01XA|ICD10CM|Exposure to radon, initial encounter|Exposure to radon, initial encounter +C2905626|T037|AB|X39.01XD|ICD10CM|Exposure to radon, subsequent encounter|Exposure to radon, subsequent encounter +C2905626|T037|PT|X39.01XD|ICD10CM|Exposure to radon, subsequent encounter|Exposure to radon, subsequent encounter +C2905627|T037|AB|X39.01XS|ICD10CM|Exposure to radon, sequela|Exposure to radon, sequela +C2905627|T037|PT|X39.01XS|ICD10CM|Exposure to radon, sequela|Exposure to radon, sequela +C2905628|T037|AB|X39.08|ICD10CM|Exposure to other natural radiation|Exposure to other natural radiation +C2905628|T037|HT|X39.08|ICD10CM|Exposure to other natural radiation|Exposure to other natural radiation +C2905629|T037|AB|X39.08XA|ICD10CM|Exposure to other natural radiation, initial encounter|Exposure to other natural radiation, initial encounter +C2905629|T037|PT|X39.08XA|ICD10CM|Exposure to other natural radiation, initial encounter|Exposure to other natural radiation, initial encounter +C2905630|T037|AB|X39.08XD|ICD10CM|Exposure to other natural radiation, subsequent encounter|Exposure to other natural radiation, subsequent encounter +C2905630|T037|PT|X39.08XD|ICD10CM|Exposure to other natural radiation, subsequent encounter|Exposure to other natural radiation, subsequent encounter +C2905631|T037|AB|X39.08XS|ICD10CM|Exposure to other natural radiation, sequela|Exposure to other natural radiation, sequela +C2905631|T037|PT|X39.08XS|ICD10CM|Exposure to other natural radiation, sequela|Exposure to other natural radiation, sequela +C2905632|T037|AB|X39.8|ICD10CM|Other exposure to forces of nature|Other exposure to forces of nature +C2905632|T037|HT|X39.8|ICD10CM|Other exposure to forces of nature|Other exposure to forces of nature +C2905633|T037|AB|X39.8XXA|ICD10CM|Other exposure to forces of nature, initial encounter|Other exposure to forces of nature, initial encounter +C2905633|T037|PT|X39.8XXA|ICD10CM|Other exposure to forces of nature, initial encounter|Other exposure to forces of nature, initial encounter +C2905634|T037|AB|X39.8XXD|ICD10CM|Other exposure to forces of nature, subsequent encounter|Other exposure to forces of nature, subsequent encounter +C2905634|T037|PT|X39.8XXD|ICD10CM|Other exposure to forces of nature, subsequent encounter|Other exposure to forces of nature, subsequent encounter +C2905635|T037|AB|X39.8XXS|ICD10CM|Other exposure to forces of nature, sequela|Other exposure to forces of nature, sequela +C2905635|T037|PT|X39.8XXS|ICD10CM|Other exposure to forces of nature, sequela|Other exposure to forces of nature, sequela +C0496508|T037|PT|X40|ICD10|Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics|Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics +C0362054|T037|HT|X40-X49.9|ICD10|Accidental poisoning by and exposure to noxious substances|Accidental poisoning by and exposure to noxious substances +C0496511|T037|PT|X43|ICD10|Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system|Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system +C0480073|T037|PT|X45|ICD10|Accidental poisoning by and exposure to alcohol|Accidental poisoning by and exposure to alcohol +C0480095|T037|PT|X47|ICD10AE|Accidental poisoning by and exposure to other gases and vapors|Accidental poisoning by and exposure to other gases and vapors +C0480095|T037|PT|X47|ICD10|Accidental poisoning by and exposure to other gases and vapours|Accidental poisoning by and exposure to other gases and vapours +C0480106|T037|PT|X48|ICD10|Accidental poisoning by and exposure to pesticides|Accidental poisoning by and exposure to pesticides +C0480117|T037|PT|X49|ICD10|Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances|Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances +C0452206|T033|PS|X50|ICD10|Overexertion and strenuous or repetitive movements|Overexertion and strenuous or repetitive movements +C0452206|T033|HT|X50|ICD10CM|Overexertion and strenuous or repetitive movements|Overexertion and strenuous or repetitive movements +C0452206|T033|AB|X50|ICD10CM|Overexertion and strenuous or repetitive movements|Overexertion and strenuous or repetitive movements +C0452206|T033|PX|X50|ICD10|Overexertion and strenuous or repetitive movements as an external cause of morbidity and mortality|Overexertion and strenuous or repetitive movements as an external cause of morbidity and mortality +C4270703|T037|HT|X50-X50|ICD10CM|Overexertion and strenuous or repetitive movements (X50)|Overexertion and strenuous or repetitive movements (X50) +C0480128|T037|HT|X50-X57.9|ICD10|Overexertion, travel and privation|Overexertion, travel and privation +C4270705|T037|ET|X50.0|ICD10CM|Lifting heavy objects|Lifting heavy objects +C4270704|T033|HT|X50.0|ICD10CM|Overexertion from strenuous movement or load|Overexertion from strenuous movement or load +C4270704|T033|AB|X50.0|ICD10CM|Overexertion from strenuous movement or load|Overexertion from strenuous movement or load +C4270706|T033|AB|X50.0XXA|ICD10CM|Overexertion from strenuous movement or load, init|Overexertion from strenuous movement or load, init +C4270706|T033|PT|X50.0XXA|ICD10CM|Overexertion from strenuous movement or load, initial encounter|Overexertion from strenuous movement or load, initial encounter +C4270707|T033|AB|X50.0XXD|ICD10CM|Overexertion from strenuous movement or load, subs|Overexertion from strenuous movement or load, subs +C4270707|T033|PT|X50.0XXD|ICD10CM|Overexertion from strenuous movement or load, subsequent encounter|Overexertion from strenuous movement or load, subsequent encounter +C4270708|T033|AB|X50.0XXS|ICD10CM|Overexertion from strenuous movement or load, sequela|Overexertion from strenuous movement or load, sequela +C4270708|T033|PT|X50.0XXS|ICD10CM|Overexertion from strenuous movement or load, sequela|Overexertion from strenuous movement or load, sequela +C4270709|T033|AB|X50.1|ICD10CM|Overexertion from prolonged static or awkward postures|Overexertion from prolonged static or awkward postures +C4270709|T033|HT|X50.1|ICD10CM|Overexertion from prolonged static or awkward postures|Overexertion from prolonged static or awkward postures +C4270710|T033|ET|X50.1|ICD10CM|Prolonged bending|Prolonged bending +C4270711|T033|ET|X50.1|ICD10CM|Prolonged kneeling|Prolonged kneeling +C4270712|T033|ET|X50.1|ICD10CM|Prolonged reaching|Prolonged reaching +C4270713|T033|ET|X50.1|ICD10CM|Prolonged sitting|Prolonged sitting +C4270714|T033|ET|X50.1|ICD10CM|Prolonged standing|Prolonged standing +C4270715|T033|ET|X50.1|ICD10CM|Prolonged twisting|Prolonged twisting +C4270716|T033|ET|X50.1|ICD10CM|Static bending|Static bending +C4270717|T033|ET|X50.1|ICD10CM|Static kneeling|Static kneeling +C4270718|T033|ET|X50.1|ICD10CM|Static reaching|Static reaching +C4270719|T033|ET|X50.1|ICD10CM|Static sitting|Static sitting +C4270720|T033|ET|X50.1|ICD10CM|Static standing|Static standing +C4270721|T033|ET|X50.1|ICD10CM|Static twisting|Static twisting +C4270722|T033|AB|X50.1XXA|ICD10CM|Overexertion from prolonged static or awkward postures, init|Overexertion from prolonged static or awkward postures, init +C4270722|T033|PT|X50.1XXA|ICD10CM|Overexertion from prolonged static or awkward postures, initial encounter|Overexertion from prolonged static or awkward postures, initial encounter +C4270819|T033|AB|X50.1XXD|ICD10CM|Overexertion from prolonged static or awkward postures, subs|Overexertion from prolonged static or awkward postures, subs +C4270819|T033|PT|X50.1XXD|ICD10CM|Overexertion from prolonged static or awkward postures, subsequent encounter|Overexertion from prolonged static or awkward postures, subsequent encounter +C4270723|T033|PT|X50.1XXS|ICD10CM|Overexertion from prolonged static or awkward postures, sequela|Overexertion from prolonged static or awkward postures, sequela +C4270723|T033|AB|X50.1XXS|ICD10CM|Overexertion from prolonged static or awkward postures, sqla|Overexertion from prolonged static or awkward postures, sqla +C4270724|T033|AB|X50.3|ICD10CM|Overexertion from repetitive movements|Overexertion from repetitive movements +C4270724|T033|HT|X50.3|ICD10CM|Overexertion from repetitive movements|Overexertion from repetitive movements +C4270725|T033|ET|X50.3|ICD10CM|Use of hand as hammer|Use of hand as hammer +C4270726|T033|AB|X50.3XXA|ICD10CM|Overexertion from repetitive movements, initial encounter|Overexertion from repetitive movements, initial encounter +C4270726|T033|PT|X50.3XXA|ICD10CM|Overexertion from repetitive movements, initial encounter|Overexertion from repetitive movements, initial encounter +C4270727|T033|AB|X50.3XXD|ICD10CM|Overexertion from repetitive movements, subsequent encounter|Overexertion from repetitive movements, subsequent encounter +C4270727|T033|PT|X50.3XXD|ICD10CM|Overexertion from repetitive movements, subsequent encounter|Overexertion from repetitive movements, subsequent encounter +C4270728|T033|AB|X50.3XXS|ICD10CM|Overexertion from repetitive movements, sequela|Overexertion from repetitive movements, sequela +C4270728|T033|PT|X50.3XXS|ICD10CM|Overexertion from repetitive movements, sequela|Overexertion from repetitive movements, sequela +C4270730|T033|ET|X50.9|ICD10CM|Contact pressure|Contact pressure +C4270731|T033|ET|X50.9|ICD10CM|Contact stress|Contact stress +C4270729|T033|HT|X50.9|ICD10CM|Other and unspecified overexertion or strenuous movements or postures|Other and unspecified overexertion or strenuous movements or postures +C4270729|T033|AB|X50.9|ICD10CM|Other and unspecified ovrexrtn or strnous move/pstr|Other and unspecified ovrexrtn or strnous move/pstr +C4270732|T033|PT|X50.9XXA|ICD10CM|Other and unspecified overexertion or strenuous movements or postures, initial encounter|Other and unspecified overexertion or strenuous movements or postures, initial encounter +C4270732|T033|AB|X50.9XXA|ICD10CM|Other and unspecified ovrexrtn or strnous move/pstr, init|Other and unspecified ovrexrtn or strnous move/pstr, init +C4270733|T033|PT|X50.9XXD|ICD10CM|Other and unspecified overexertion or strenuous movements or postures, subsequent encounter|Other and unspecified overexertion or strenuous movements or postures, subsequent encounter +C4270733|T033|AB|X50.9XXD|ICD10CM|Other and unspecified ovrexrtn or strnous move/pstr, subs|Other and unspecified ovrexrtn or strnous move/pstr, subs +C4270734|T033|PT|X50.9XXS|ICD10CM|Other and unspecified overexertion or strenuous movements or postures, sequela|Other and unspecified overexertion or strenuous movements or postures, sequela +C4270734|T033|AB|X50.9XXS|ICD10CM|Other and unspecified ovrexrtn or strnous move/pstr, sequela|Other and unspecified ovrexrtn or strnous move/pstr, sequela +C0480147|T037|PS|X51|ICD10|Travel and motion|Travel and motion +C0480147|T037|PX|X51|ICD10|Travel and motion as an external cause of morbidity and mortality|Travel and motion as an external cause of morbidity and mortality +C0261752|T037|HT|X52|ICD10CM|Prolonged stay in weightless environment|Prolonged stay in weightless environment +C0261752|T037|AB|X52|ICD10CM|Prolonged stay in weightless environment|Prolonged stay in weightless environment +C0261752|T037|PS|X52|ICD10|Prolonged stay in weightless environment|Prolonged stay in weightless environment +C0261752|T037|PX|X52|ICD10|Prolonged stay in weightless environment as an external cause of morbidity and mortality|Prolonged stay in weightless environment as an external cause of morbidity and mortality +C2905636|T037|ET|X52|ICD10CM|Weightlessness in spacecraft (simulator)|Weightlessness in spacecraft (simulator) +C2977343|T037|HT|X52-X58|ICD10CM|Accidental exposure to other specified factors (X52-X58)|Accidental exposure to other specified factors (X52-X58) +C2905638|T037|AB|X52.XXXA|ICD10CM|Prolonged stay in weightless environment, initial encounter|Prolonged stay in weightless environment, initial encounter +C2905638|T037|PT|X52.XXXA|ICD10CM|Prolonged stay in weightless environment, initial encounter|Prolonged stay in weightless environment, initial encounter +C2905639|T037|AB|X52.XXXD|ICD10CM|Prolonged stay in weightless environment, subs encntr|Prolonged stay in weightless environment, subs encntr +C2905639|T037|PT|X52.XXXD|ICD10CM|Prolonged stay in weightless environment, subsequent encounter|Prolonged stay in weightless environment, subsequent encounter +C2905640|T037|AB|X52.XXXS|ICD10CM|Prolonged stay in weightless environment, sequela|Prolonged stay in weightless environment, sequela +C2905640|T037|PT|X52.XXXS|ICD10CM|Prolonged stay in weightless environment, sequela|Prolonged stay in weightless environment, sequela +C3495148|T033|PS|X53|ICD10|Lack of food|Lack of food +C3495148|T033|PX|X53|ICD10|Lack of food as an external cause of morbidity and mortality|Lack of food as an external cause of morbidity and mortality +C3495149|T037|PS|X54|ICD10|Lack of water|Lack of water +C3495149|T037|PX|X54|ICD10|Lack of water as an external cause of morbidity and mortality|Lack of water as an external cause of morbidity and mortality +C3495150|T033|PS|X57|ICD10|Unspecified privation|Unspecified privation +C3495150|T033|PX|X57|ICD10|Unspecified privation as an external cause of morbidity and mortality|Unspecified privation as an external cause of morbidity and mortality +C4759661|T037|ET|X58|ICD10CM|Accident NOS|Accident NOS +C0274281|T037|ET|X58|ICD10CM|Exposure NOS|Exposure NOS +C0496512|T037|PS|X58|ICD10|Exposure to other specified factors|Exposure to other specified factors +C0496512|T037|HT|X58|ICD10CM|Exposure to other specified factors|Exposure to other specified factors +C0496512|T037|AB|X58|ICD10CM|Exposure to other specified factors|Exposure to other specified factors +C0496512|T037|PX|X58|ICD10|Exposure to other specified factors as an external cause of morbidity and mortality|Exposure to other specified factors as an external cause of morbidity and mortality +C0480184|T037|HT|X58-X59.9|ICD10|Accidental exposure to other and unspecified factors|Accidental exposure to other and unspecified factors +C2905641|T037|AB|X58.XXXA|ICD10CM|Exposure to other specified factors, initial encounter|Exposure to other specified factors, initial encounter +C2905641|T037|PT|X58.XXXA|ICD10CM|Exposure to other specified factors, initial encounter|Exposure to other specified factors, initial encounter +C2905642|T037|AB|X58.XXXD|ICD10CM|Exposure to other specified factors, subsequent encounter|Exposure to other specified factors, subsequent encounter +C2905642|T037|PT|X58.XXXD|ICD10CM|Exposure to other specified factors, subsequent encounter|Exposure to other specified factors, subsequent encounter +C2905643|T037|AB|X58.XXXS|ICD10CM|Exposure to other specified factors, sequela|Exposure to other specified factors, sequela +C2905643|T037|PT|X58.XXXS|ICD10CM|Exposure to other specified factors, sequela|Exposure to other specified factors, sequela +C0496513|T037|PT|X60|ICD10|Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics|Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics +C0480203|T037|HT|X60-X84.9|ICD10|Intentional self-harm|Intentional self-harm +C0496516|T037|PT|X63|ICD10|Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system|Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system +C0480295|T037|PT|X65|ICD10|Intentional self-poisoning by and exposure to alcohol|Intentional self-poisoning by and exposure to alcohol +C0480315|T037|PT|X67|ICD10AE|Intentional self-poisoning by and exposure to other gases and vapors|Intentional self-poisoning by and exposure to other gases and vapors +C0480315|T037|PT|X67|ICD10|Intentional self-poisoning by and exposure to other gases and vapours|Intentional self-poisoning by and exposure to other gases and vapours +C0480326|T037|PT|X68|ICD10|Intentional self-poisoning by and exposure to pesticides|Intentional self-poisoning by and exposure to pesticides +C0480337|T037|PT|X69|ICD10|Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances|Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances +C0480348|T037|PT|X70|ICD10|Intentional self-harm by hanging, strangulation and suffocation|Intentional self-harm by hanging, strangulation and suffocation +C0480359|T037|PT|X71|ICD10|Intentional self-harm by drowning and submersion|Intentional self-harm by drowning and submersion +C0480359|T037|HT|X71|ICD10CM|Intentional self-harm by drowning and submersion|Intentional self-harm by drowning and submersion +C0480359|T037|AB|X71|ICD10CM|Intentional self-harm by drowning and submersion|Intentional self-harm by drowning and submersion +C0480203|T037|HT|X71-X83|ICD10CM|Intentional self-harm (X71-X83)|Intentional self-harm (X71-X83) +C4290492|T037|ET|X71-X83|ICD10CM|Purposely self-inflicted injury|Purposely self-inflicted injury +C0038663|T037|ET|X71-X83|ICD10CM|Suicide (attempted)|Suicide (attempted) +C2905645|T037|AB|X71.0|ICD10CM|Intentional self-harm by drown while in bathtub|Intentional self-harm by drown while in bathtub +C2905645|T037|HT|X71.0|ICD10CM|Intentional self-harm by drowning and submersion while in bathtub|Intentional self-harm by drowning and submersion while in bathtub +C2905646|T037|AB|X71.0XXA|ICD10CM|Intentional self-harm by drown while in bathtub, init|Intentional self-harm by drown while in bathtub, init +C2905646|T037|PT|X71.0XXA|ICD10CM|Intentional self-harm by drowning and submersion while in bathtub, initial encounter|Intentional self-harm by drowning and submersion while in bathtub, initial encounter +C2905647|T037|AB|X71.0XXD|ICD10CM|Intentional self-harm by drown while in bathtub, subs|Intentional self-harm by drown while in bathtub, subs +C2905647|T037|PT|X71.0XXD|ICD10CM|Intentional self-harm by drowning and submersion while in bathtub, subsequent encounter|Intentional self-harm by drowning and submersion while in bathtub, subsequent encounter +C2905648|T037|AB|X71.0XXS|ICD10CM|Intentional self-harm by drown while in bathtub, sequela|Intentional self-harm by drown while in bathtub, sequela +C2905648|T037|PT|X71.0XXS|ICD10CM|Intentional self-harm by drowning and submersion while in bathtub, sequela|Intentional self-harm by drowning and submersion while in bathtub, sequela +C2905649|T037|AB|X71.1|ICD10CM|Intentional self-harm by drown while in swimming pool|Intentional self-harm by drown while in swimming pool +C2905649|T037|HT|X71.1|ICD10CM|Intentional self-harm by drowning and submersion while in swimming pool|Intentional self-harm by drowning and submersion while in swimming pool +C2905650|T037|AB|X71.1XXA|ICD10CM|Intentional self-harm by drown while in swimming pool, init|Intentional self-harm by drown while in swimming pool, init +C2905650|T037|PT|X71.1XXA|ICD10CM|Intentional self-harm by drowning and submersion while in swimming pool, initial encounter|Intentional self-harm by drowning and submersion while in swimming pool, initial encounter +C2905651|T037|AB|X71.1XXD|ICD10CM|Intentional self-harm by drown while in swimming pool, subs|Intentional self-harm by drown while in swimming pool, subs +C2905651|T037|PT|X71.1XXD|ICD10CM|Intentional self-harm by drowning and submersion while in swimming pool, subsequent encounter|Intentional self-harm by drowning and submersion while in swimming pool, subsequent encounter +C2905652|T037|PT|X71.1XXS|ICD10CM|Intentional self-harm by drowning and submersion while in swimming pool, sequela|Intentional self-harm by drowning and submersion while in swimming pool, sequela +C2905652|T037|AB|X71.1XXS|ICD10CM|Self-harm by drown while in swimming pool, sequela|Self-harm by drown while in swimming pool, sequela +C2905653|T037|AB|X71.2|ICD10CM|Intentional self-harm by drown after jump into swimming pool|Intentional self-harm by drown after jump into swimming pool +C2905653|T037|HT|X71.2|ICD10CM|Intentional self-harm by drowning and submersion after jump into swimming pool|Intentional self-harm by drowning and submersion after jump into swimming pool +C2905654|T037|PT|X71.2XXA|ICD10CM|Intentional self-harm by drowning and submersion after jump into swimming pool, initial encounter|Intentional self-harm by drowning and submersion after jump into swimming pool, initial encounter +C2905654|T037|AB|X71.2XXA|ICD10CM|Self-harm by drown after jump into swimming pool, init|Self-harm by drown after jump into swimming pool, init +C2905655|T037|PT|X71.2XXD|ICD10CM|Intentional self-harm by drowning and submersion after jump into swimming pool, subsequent encounter|Intentional self-harm by drowning and submersion after jump into swimming pool, subsequent encounter +C2905655|T037|AB|X71.2XXD|ICD10CM|Self-harm by drown after jump into swimming pool, subs|Self-harm by drown after jump into swimming pool, subs +C2905656|T037|PT|X71.2XXS|ICD10CM|Intentional self-harm by drowning and submersion after jump into swimming pool, sequela|Intentional self-harm by drowning and submersion after jump into swimming pool, sequela +C2905656|T037|AB|X71.2XXS|ICD10CM|Self-harm by drown after jump into swimming pool, sequela|Self-harm by drown after jump into swimming pool, sequela +C2905657|T037|AB|X71.3|ICD10CM|Intentional self-harm by drown in natural water|Intentional self-harm by drown in natural water +C2905657|T037|HT|X71.3|ICD10CM|Intentional self-harm by drowning and submersion in natural water|Intentional self-harm by drowning and submersion in natural water +C2905658|T037|AB|X71.3XXA|ICD10CM|Intentional self-harm by drown in natural water, init|Intentional self-harm by drown in natural water, init +C2905658|T037|PT|X71.3XXA|ICD10CM|Intentional self-harm by drowning and submersion in natural water, initial encounter|Intentional self-harm by drowning and submersion in natural water, initial encounter +C2905659|T037|AB|X71.3XXD|ICD10CM|Intentional self-harm by drown in natural water, subs|Intentional self-harm by drown in natural water, subs +C2905659|T037|PT|X71.3XXD|ICD10CM|Intentional self-harm by drowning and submersion in natural water, subsequent encounter|Intentional self-harm by drowning and submersion in natural water, subsequent encounter +C2905660|T037|AB|X71.3XXS|ICD10CM|Intentional self-harm by drown in natural water, sequela|Intentional self-harm by drown in natural water, sequela +C2905660|T037|PT|X71.3XXS|ICD10CM|Intentional self-harm by drowning and submersion in natural water, sequela|Intentional self-harm by drowning and submersion in natural water, sequela +C2905661|T037|AB|X71.8|ICD10CM|Other intentional self-harm by drowning and submersion|Other intentional self-harm by drowning and submersion +C2905661|T037|HT|X71.8|ICD10CM|Other intentional self-harm by drowning and submersion|Other intentional self-harm by drowning and submersion +C2905662|T037|AB|X71.8XXA|ICD10CM|Oth intentional self-harm by drowning and submersion, init|Oth intentional self-harm by drowning and submersion, init +C2905662|T037|PT|X71.8XXA|ICD10CM|Other intentional self-harm by drowning and submersion, initial encounter|Other intentional self-harm by drowning and submersion, initial encounter +C2905663|T037|AB|X71.8XXD|ICD10CM|Oth intentional self-harm by drowning and submersion, subs|Oth intentional self-harm by drowning and submersion, subs +C2905663|T037|PT|X71.8XXD|ICD10CM|Other intentional self-harm by drowning and submersion, subsequent encounter|Other intentional self-harm by drowning and submersion, subsequent encounter +C2905664|T037|AB|X71.8XXS|ICD10CM|Oth intentional self-harm by drown, sequela|Oth intentional self-harm by drown, sequela +C2905664|T037|PT|X71.8XXS|ICD10CM|Other intentional self-harm by drowning and submersion, sequela|Other intentional self-harm by drowning and submersion, sequela +C0480359|T037|AB|X71.9|ICD10CM|Intentional self-harm by drowning and submersion, unsp|Intentional self-harm by drowning and submersion, unsp +C0480359|T037|HT|X71.9|ICD10CM|Intentional self-harm by drowning and submersion, unspecified|Intentional self-harm by drowning and submersion, unspecified +C2905666|T037|AB|X71.9XXA|ICD10CM|Intentional self-harm by drowning and submersion, unsp, init|Intentional self-harm by drowning and submersion, unsp, init +C2905666|T037|PT|X71.9XXA|ICD10CM|Intentional self-harm by drowning and submersion, unspecified, initial encounter|Intentional self-harm by drowning and submersion, unspecified, initial encounter +C2905667|T037|AB|X71.9XXD|ICD10CM|Intentional self-harm by drowning and submersion, unsp, subs|Intentional self-harm by drowning and submersion, unsp, subs +C2905667|T037|PT|X71.9XXD|ICD10CM|Intentional self-harm by drowning and submersion, unspecified, subsequent encounter|Intentional self-harm by drowning and submersion, unspecified, subsequent encounter +C2905668|T037|AB|X71.9XXS|ICD10CM|Intentional self-harm by drown, unsp, sequela|Intentional self-harm by drown, unsp, sequela +C2905668|T037|PT|X71.9XXS|ICD10CM|Intentional self-harm by drowning and submersion, unspecified, sequela|Intentional self-harm by drowning and submersion, unspecified, sequela +C2905669|T037|ET|X72|ICD10CM|Intentional self-harm by gun for single hand use|Intentional self-harm by gun for single hand use +C0480370|T037|HT|X72|ICD10CM|Intentional self-harm by handgun discharge|Intentional self-harm by handgun discharge +C0480370|T037|AB|X72|ICD10CM|Intentional self-harm by handgun discharge|Intentional self-harm by handgun discharge +C0480370|T037|PT|X72|ICD10|Intentional self-harm by handgun discharge|Intentional self-harm by handgun discharge +C2905670|T037|ET|X72|ICD10CM|Intentional self-harm by pistol|Intentional self-harm by pistol +C2905671|T037|ET|X72|ICD10CM|Intentional self-harm by revolver|Intentional self-harm by revolver +C2905672|T037|AB|X72.XXXA|ICD10CM|Intentional self-harm by handgun discharge, init encntr|Intentional self-harm by handgun discharge, init encntr +C2905672|T037|PT|X72.XXXA|ICD10CM|Intentional self-harm by handgun discharge, initial encounter|Intentional self-harm by handgun discharge, initial encounter +C2905673|T037|AB|X72.XXXD|ICD10CM|Intentional self-harm by handgun discharge, subs encntr|Intentional self-harm by handgun discharge, subs encntr +C2905673|T037|PT|X72.XXXD|ICD10CM|Intentional self-harm by handgun discharge, subsequent encounter|Intentional self-harm by handgun discharge, subsequent encounter +C2905674|T037|AB|X72.XXXS|ICD10CM|Intentional self-harm by handgun discharge, sequela|Intentional self-harm by handgun discharge, sequela +C2905674|T037|PT|X72.XXXS|ICD10CM|Intentional self-harm by handgun discharge, sequela|Intentional self-harm by handgun discharge, sequela +C0480381|T037|PT|X73|ICD10|Intentional self-harm by rifle, shotgun and larger firearm discharge|Intentional self-harm by rifle, shotgun and larger firearm discharge +C0480381|T037|HT|X73|ICD10CM|Intentional self-harm by rifle, shotgun and larger firearm discharge|Intentional self-harm by rifle, shotgun and larger firearm discharge +C0480381|T037|AB|X73|ICD10CM|Self-harm by rifle, shotgun and larger firearm discharge|Self-harm by rifle, shotgun and larger firearm discharge +C0840938|T037|HT|X73.0|ICD10CM|Intentional self-harm by shotgun discharge|Intentional self-harm by shotgun discharge +C0840938|T037|AB|X73.0|ICD10CM|Intentional self-harm by shotgun discharge|Intentional self-harm by shotgun discharge +C2905675|T037|AB|X73.0XXA|ICD10CM|Intentional self-harm by shotgun discharge, init encntr|Intentional self-harm by shotgun discharge, init encntr +C2905675|T037|PT|X73.0XXA|ICD10CM|Intentional self-harm by shotgun discharge, initial encounter|Intentional self-harm by shotgun discharge, initial encounter +C2905676|T037|AB|X73.0XXD|ICD10CM|Intentional self-harm by shotgun discharge, subs encntr|Intentional self-harm by shotgun discharge, subs encntr +C2905676|T037|PT|X73.0XXD|ICD10CM|Intentional self-harm by shotgun discharge, subsequent encounter|Intentional self-harm by shotgun discharge, subsequent encounter +C2905677|T037|AB|X73.0XXS|ICD10CM|Intentional self-harm by shotgun discharge, sequela|Intentional self-harm by shotgun discharge, sequela +C2905677|T037|PT|X73.0XXS|ICD10CM|Intentional self-harm by shotgun discharge, sequela|Intentional self-harm by shotgun discharge, sequela +C2905678|T037|AB|X73.1|ICD10CM|Intentional self-harm by hunting rifle discharge|Intentional self-harm by hunting rifle discharge +C2905678|T037|HT|X73.1|ICD10CM|Intentional self-harm by hunting rifle discharge|Intentional self-harm by hunting rifle discharge +C2905679|T037|AB|X73.1XXA|ICD10CM|Intentional self-harm by hunting rifle discharge, init|Intentional self-harm by hunting rifle discharge, init +C2905679|T037|PT|X73.1XXA|ICD10CM|Intentional self-harm by hunting rifle discharge, initial encounter|Intentional self-harm by hunting rifle discharge, initial encounter +C2905680|T037|AB|X73.1XXD|ICD10CM|Intentional self-harm by hunting rifle discharge, subs|Intentional self-harm by hunting rifle discharge, subs +C2905680|T037|PT|X73.1XXD|ICD10CM|Intentional self-harm by hunting rifle discharge, subsequent encounter|Intentional self-harm by hunting rifle discharge, subsequent encounter +C2905681|T037|AB|X73.1XXS|ICD10CM|Intentional self-harm by hunting rifle discharge, sequela|Intentional self-harm by hunting rifle discharge, sequela +C2905681|T037|PT|X73.1XXS|ICD10CM|Intentional self-harm by hunting rifle discharge, sequela|Intentional self-harm by hunting rifle discharge, sequela +C2905682|T037|AB|X73.2|ICD10CM|Intentional self-harm by machine gun discharge|Intentional self-harm by machine gun discharge +C2905682|T037|HT|X73.2|ICD10CM|Intentional self-harm by machine gun discharge|Intentional self-harm by machine gun discharge +C2905683|T037|AB|X73.2XXA|ICD10CM|Intentional self-harm by machine gun discharge, init encntr|Intentional self-harm by machine gun discharge, init encntr +C2905683|T037|PT|X73.2XXA|ICD10CM|Intentional self-harm by machine gun discharge, initial encounter|Intentional self-harm by machine gun discharge, initial encounter +C2905684|T037|AB|X73.2XXD|ICD10CM|Intentional self-harm by machine gun discharge, subs encntr|Intentional self-harm by machine gun discharge, subs encntr +C2905684|T037|PT|X73.2XXD|ICD10CM|Intentional self-harm by machine gun discharge, subsequent encounter|Intentional self-harm by machine gun discharge, subsequent encounter +C2905685|T037|AB|X73.2XXS|ICD10CM|Intentional self-harm by machine gun discharge, sequela|Intentional self-harm by machine gun discharge, sequela +C2905685|T037|PT|X73.2XXS|ICD10CM|Intentional self-harm by machine gun discharge, sequela|Intentional self-harm by machine gun discharge, sequela +C2905686|T037|AB|X73.8|ICD10CM|Intentional self-harm by other larger firearm discharge|Intentional self-harm by other larger firearm discharge +C2905686|T037|HT|X73.8|ICD10CM|Intentional self-harm by other larger firearm discharge|Intentional self-harm by other larger firearm discharge +C2905687|T037|AB|X73.8XXA|ICD10CM|Intentional self-harm by oth larger firearm discharge, init|Intentional self-harm by oth larger firearm discharge, init +C2905687|T037|PT|X73.8XXA|ICD10CM|Intentional self-harm by other larger firearm discharge, initial encounter|Intentional self-harm by other larger firearm discharge, initial encounter +C2905688|T037|AB|X73.8XXD|ICD10CM|Intentional self-harm by oth larger firearm discharge, subs|Intentional self-harm by oth larger firearm discharge, subs +C2905688|T037|PT|X73.8XXD|ICD10CM|Intentional self-harm by other larger firearm discharge, subsequent encounter|Intentional self-harm by other larger firearm discharge, subsequent encounter +C2905689|T037|PT|X73.8XXS|ICD10CM|Intentional self-harm by other larger firearm discharge, sequela|Intentional self-harm by other larger firearm discharge, sequela +C2905689|T037|AB|X73.8XXS|ICD10CM|Self-harm by oth larger firearm discharge, sequela|Self-harm by oth larger firearm discharge, sequela +C2905690|T037|AB|X73.9|ICD10CM|Intentional self-harm by unsp larger firearm discharge|Intentional self-harm by unsp larger firearm discharge +C2905690|T037|HT|X73.9|ICD10CM|Intentional self-harm by unspecified larger firearm discharge|Intentional self-harm by unspecified larger firearm discharge +C2905691|T037|AB|X73.9XXA|ICD10CM|Intentional self-harm by unsp larger firearm discharge, init|Intentional self-harm by unsp larger firearm discharge, init +C2905691|T037|PT|X73.9XXA|ICD10CM|Intentional self-harm by unspecified larger firearm discharge, initial encounter|Intentional self-harm by unspecified larger firearm discharge, initial encounter +C2905692|T037|AB|X73.9XXD|ICD10CM|Intentional self-harm by unsp larger firearm discharge, subs|Intentional self-harm by unsp larger firearm discharge, subs +C2905692|T037|PT|X73.9XXD|ICD10CM|Intentional self-harm by unspecified larger firearm discharge, subsequent encounter|Intentional self-harm by unspecified larger firearm discharge, subsequent encounter +C2905693|T037|PT|X73.9XXS|ICD10CM|Intentional self-harm by unspecified larger firearm discharge, sequela|Intentional self-harm by unspecified larger firearm discharge, sequela +C2905693|T037|AB|X73.9XXS|ICD10CM|Self-harm by unsp larger firearm discharge, sequela|Self-harm by unsp larger firearm discharge, sequela +C2905694|T037|HT|X74|ICD10CM|Intentional self-harm by other and unspecified firearm and gun discharge|Intentional self-harm by other and unspecified firearm and gun discharge +C0480392|T037|PT|X74|ICD10|Intentional self-harm by other and unspecified firearm discharge|Intentional self-harm by other and unspecified firearm discharge +C2905694|T037|AB|X74|ICD10CM|Self-harm by oth and unsp firearm and gun discharge|Self-harm by oth and unsp firearm and gun discharge +C2905695|T037|AB|X74.0|ICD10CM|Intentional self-harm by gas, air or spring-operated guns|Intentional self-harm by gas, air or spring-operated guns +C2905695|T037|HT|X74.0|ICD10CM|Intentional self-harm by gas, air or spring-operated guns|Intentional self-harm by gas, air or spring-operated guns +C2905698|T037|AB|X74.01|ICD10CM|Intentional self-harm by airgun|Intentional self-harm by airgun +C2905698|T037|HT|X74.01|ICD10CM|Intentional self-harm by airgun|Intentional self-harm by airgun +C2905696|T037|ET|X74.01|ICD10CM|Intentional self-harm by BB gun discharge|Intentional self-harm by BB gun discharge +C2905697|T037|ET|X74.01|ICD10CM|Intentional self-harm by pellet gun discharge|Intentional self-harm by pellet gun discharge +C2905699|T037|AB|X74.01XA|ICD10CM|Intentional self-harm by airgun, initial encounter|Intentional self-harm by airgun, initial encounter +C2905699|T037|PT|X74.01XA|ICD10CM|Intentional self-harm by airgun, initial encounter|Intentional self-harm by airgun, initial encounter +C2905700|T037|AB|X74.01XD|ICD10CM|Intentional self-harm by airgun, subsequent encounter|Intentional self-harm by airgun, subsequent encounter +C2905700|T037|PT|X74.01XD|ICD10CM|Intentional self-harm by airgun, subsequent encounter|Intentional self-harm by airgun, subsequent encounter +C2905701|T037|AB|X74.01XS|ICD10CM|Intentional self-harm by airgun, sequela|Intentional self-harm by airgun, sequela +C2905701|T037|PT|X74.01XS|ICD10CM|Intentional self-harm by airgun, sequela|Intentional self-harm by airgun, sequela +C2905702|T037|AB|X74.02|ICD10CM|Intentional self-harm by paintball gun|Intentional self-harm by paintball gun +C2905702|T037|HT|X74.02|ICD10CM|Intentional self-harm by paintball gun|Intentional self-harm by paintball gun +C2905703|T037|AB|X74.02XA|ICD10CM|Intentional self-harm by paintball gun, initial encounter|Intentional self-harm by paintball gun, initial encounter +C2905703|T037|PT|X74.02XA|ICD10CM|Intentional self-harm by paintball gun, initial encounter|Intentional self-harm by paintball gun, initial encounter +C2905704|T037|AB|X74.02XD|ICD10CM|Intentional self-harm by paintball gun, subsequent encounter|Intentional self-harm by paintball gun, subsequent encounter +C2905704|T037|PT|X74.02XD|ICD10CM|Intentional self-harm by paintball gun, subsequent encounter|Intentional self-harm by paintball gun, subsequent encounter +C2905705|T037|AB|X74.02XS|ICD10CM|Intentional self-harm by paintball gun, sequela|Intentional self-harm by paintball gun, sequela +C2905705|T037|PT|X74.02XS|ICD10CM|Intentional self-harm by paintball gun, sequela|Intentional self-harm by paintball gun, sequela +C2905706|T037|AB|X74.09|ICD10CM|Intentional self-harm by oth gas, air or spring-operated gun|Intentional self-harm by oth gas, air or spring-operated gun +C2905706|T037|HT|X74.09|ICD10CM|Intentional self-harm by other gas, air or spring-operated gun|Intentional self-harm by other gas, air or spring-operated gun +C2905707|T037|PT|X74.09XA|ICD10CM|Intentional self-harm by other gas, air or spring-operated gun, initial encounter|Intentional self-harm by other gas, air or spring-operated gun, initial encounter +C2905707|T037|AB|X74.09XA|ICD10CM|Self-harm by oth gas, air or spring-operated gun, init|Self-harm by oth gas, air or spring-operated gun, init +C2905708|T037|PT|X74.09XD|ICD10CM|Intentional self-harm by other gas, air or spring-operated gun, subsequent encounter|Intentional self-harm by other gas, air or spring-operated gun, subsequent encounter +C2905708|T037|AB|X74.09XD|ICD10CM|Self-harm by oth gas, air or spring-operated gun, subs|Self-harm by oth gas, air or spring-operated gun, subs +C2905709|T037|PT|X74.09XS|ICD10CM|Intentional self-harm by other gas, air or spring-operated gun, sequela|Intentional self-harm by other gas, air or spring-operated gun, sequela +C2905709|T037|AB|X74.09XS|ICD10CM|Self-harm by oth gas, air or spring-operated gun, sequela|Self-harm by oth gas, air or spring-operated gun, sequela +C2905711|T037|AB|X74.8|ICD10CM|Intentional self-harm by other firearm discharge|Intentional self-harm by other firearm discharge +C2905711|T037|HT|X74.8|ICD10CM|Intentional self-harm by other firearm discharge|Intentional self-harm by other firearm discharge +C2905710|T037|ET|X74.8|ICD10CM|Intentional self-harm by Very pistol [flare] discharge|Intentional self-harm by Very pistol [flare] discharge +C2905712|T037|AB|X74.8XXA|ICD10CM|Intentional self-harm by oth firearm discharge, init encntr|Intentional self-harm by oth firearm discharge, init encntr +C2905712|T037|PT|X74.8XXA|ICD10CM|Intentional self-harm by other firearm discharge, initial encounter|Intentional self-harm by other firearm discharge, initial encounter +C2905713|T037|AB|X74.8XXD|ICD10CM|Intentional self-harm by oth firearm discharge, subs encntr|Intentional self-harm by oth firearm discharge, subs encntr +C2905713|T037|PT|X74.8XXD|ICD10CM|Intentional self-harm by other firearm discharge, subsequent encounter|Intentional self-harm by other firearm discharge, subsequent encounter +C2905714|T037|AB|X74.8XXS|ICD10CM|Intentional self-harm by other firearm discharge, sequela|Intentional self-harm by other firearm discharge, sequela +C2905714|T037|PT|X74.8XXS|ICD10CM|Intentional self-harm by other firearm discharge, sequela|Intentional self-harm by other firearm discharge, sequela +C2905715|T037|AB|X74.9|ICD10CM|Intentional self-harm by unspecified firearm discharge|Intentional self-harm by unspecified firearm discharge +C2905715|T037|HT|X74.9|ICD10CM|Intentional self-harm by unspecified firearm discharge|Intentional self-harm by unspecified firearm discharge +C2905716|T037|AB|X74.9XXA|ICD10CM|Intentional self-harm by unsp firearm discharge, init encntr|Intentional self-harm by unsp firearm discharge, init encntr +C2905716|T037|PT|X74.9XXA|ICD10CM|Intentional self-harm by unspecified firearm discharge, initial encounter|Intentional self-harm by unspecified firearm discharge, initial encounter +C2905717|T037|AB|X74.9XXD|ICD10CM|Intentional self-harm by unsp firearm discharge, subs encntr|Intentional self-harm by unsp firearm discharge, subs encntr +C2905717|T037|PT|X74.9XXD|ICD10CM|Intentional self-harm by unspecified firearm discharge, subsequent encounter|Intentional self-harm by unspecified firearm discharge, subsequent encounter +C2905718|T037|AB|X74.9XXS|ICD10CM|Intentional self-harm by unsp firearm discharge, sequela|Intentional self-harm by unsp firearm discharge, sequela +C2905718|T037|PT|X74.9XXS|ICD10CM|Intentional self-harm by unspecified firearm discharge, sequela|Intentional self-harm by unspecified firearm discharge, sequela +C0480403|T037|PT|X75|ICD10|Intentional self-harm by explosive material|Intentional self-harm by explosive material +C0480403|T037|HT|X75|ICD10CM|Intentional self-harm by explosive material|Intentional self-harm by explosive material +C0480403|T037|AB|X75|ICD10CM|Intentional self-harm by explosive material|Intentional self-harm by explosive material +C2905719|T037|AB|X75.XXXA|ICD10CM|Intentional self-harm by explosive material, init encntr|Intentional self-harm by explosive material, init encntr +C2905719|T037|PT|X75.XXXA|ICD10CM|Intentional self-harm by explosive material, initial encounter|Intentional self-harm by explosive material, initial encounter +C2905720|T037|AB|X75.XXXD|ICD10CM|Intentional self-harm by explosive material, subs encntr|Intentional self-harm by explosive material, subs encntr +C2905720|T037|PT|X75.XXXD|ICD10CM|Intentional self-harm by explosive material, subsequent encounter|Intentional self-harm by explosive material, subsequent encounter +C2905721|T037|AB|X75.XXXS|ICD10CM|Intentional self-harm by explosive material, sequela|Intentional self-harm by explosive material, sequela +C2905721|T037|PT|X75.XXXS|ICD10CM|Intentional self-harm by explosive material, sequela|Intentional self-harm by explosive material, sequela +C0480414|T037|HT|X76|ICD10CM|Intentional self-harm by smoke, fire and flames|Intentional self-harm by smoke, fire and flames +C0480414|T037|AB|X76|ICD10CM|Intentional self-harm by smoke, fire and flames|Intentional self-harm by smoke, fire and flames +C0480414|T037|PT|X76|ICD10|Intentional self-harm by smoke, fire and flames|Intentional self-harm by smoke, fire and flames +C2905722|T037|AB|X76.XXXA|ICD10CM|Intentional self-harm by smoke, fire and flames, init encntr|Intentional self-harm by smoke, fire and flames, init encntr +C2905722|T037|PT|X76.XXXA|ICD10CM|Intentional self-harm by smoke, fire and flames, initial encounter|Intentional self-harm by smoke, fire and flames, initial encounter +C2905723|T037|AB|X76.XXXD|ICD10CM|Intentional self-harm by smoke, fire and flames, subs encntr|Intentional self-harm by smoke, fire and flames, subs encntr +C2905723|T037|PT|X76.XXXD|ICD10CM|Intentional self-harm by smoke, fire and flames, subsequent encounter|Intentional self-harm by smoke, fire and flames, subsequent encounter +C2905724|T037|AB|X76.XXXS|ICD10CM|Intentional self-harm by smoke, fire and flames, sequela|Intentional self-harm by smoke, fire and flames, sequela +C2905724|T037|PT|X76.XXXS|ICD10CM|Intentional self-harm by smoke, fire and flames, sequela|Intentional self-harm by smoke, fire and flames, sequela +C0480425|T037|PT|X77|ICD10AE|Intentional self-harm by steam, hot vapors and hot objects|Intentional self-harm by steam, hot vapors and hot objects +C0480425|T037|HT|X77|ICD10CM|Intentional self-harm by steam, hot vapors and hot objects|Intentional self-harm by steam, hot vapors and hot objects +C0480425|T037|AB|X77|ICD10CM|Intentional self-harm by steam, hot vapors and hot objects|Intentional self-harm by steam, hot vapors and hot objects +C0480425|T037|PT|X77|ICD10|Intentional self-harm by steam, hot vapours and hot objects|Intentional self-harm by steam, hot vapours and hot objects +C2905725|T037|AB|X77.0|ICD10CM|Intentional self-harm by steam or hot vapors|Intentional self-harm by steam or hot vapors +C2905725|T037|HT|X77.0|ICD10CM|Intentional self-harm by steam or hot vapors|Intentional self-harm by steam or hot vapors +C2905726|T037|AB|X77.0XXA|ICD10CM|Intentional self-harm by steam or hot vapors, init encntr|Intentional self-harm by steam or hot vapors, init encntr +C2905726|T037|PT|X77.0XXA|ICD10CM|Intentional self-harm by steam or hot vapors, initial encounter|Intentional self-harm by steam or hot vapors, initial encounter +C2905727|T037|AB|X77.0XXD|ICD10CM|Intentional self-harm by steam or hot vapors, subs encntr|Intentional self-harm by steam or hot vapors, subs encntr +C2905727|T037|PT|X77.0XXD|ICD10CM|Intentional self-harm by steam or hot vapors, subsequent encounter|Intentional self-harm by steam or hot vapors, subsequent encounter +C2905728|T037|AB|X77.0XXS|ICD10CM|Intentional self-harm by steam or hot vapors, sequela|Intentional self-harm by steam or hot vapors, sequela +C2905728|T037|PT|X77.0XXS|ICD10CM|Intentional self-harm by steam or hot vapors, sequela|Intentional self-harm by steam or hot vapors, sequela +C2905729|T037|AB|X77.1|ICD10CM|Intentional self-harm by hot tap water|Intentional self-harm by hot tap water +C2905729|T037|HT|X77.1|ICD10CM|Intentional self-harm by hot tap water|Intentional self-harm by hot tap water +C2905730|T037|AB|X77.1XXA|ICD10CM|Intentional self-harm by hot tap water, initial encounter|Intentional self-harm by hot tap water, initial encounter +C2905730|T037|PT|X77.1XXA|ICD10CM|Intentional self-harm by hot tap water, initial encounter|Intentional self-harm by hot tap water, initial encounter +C2905731|T037|AB|X77.1XXD|ICD10CM|Intentional self-harm by hot tap water, subsequent encounter|Intentional self-harm by hot tap water, subsequent encounter +C2905731|T037|PT|X77.1XXD|ICD10CM|Intentional self-harm by hot tap water, subsequent encounter|Intentional self-harm by hot tap water, subsequent encounter +C2905732|T037|AB|X77.1XXS|ICD10CM|Intentional self-harm by hot tap water, sequela|Intentional self-harm by hot tap water, sequela +C2905732|T037|PT|X77.1XXS|ICD10CM|Intentional self-harm by hot tap water, sequela|Intentional self-harm by hot tap water, sequela +C2905733|T037|AB|X77.2|ICD10CM|Intentional self-harm by other hot fluids|Intentional self-harm by other hot fluids +C2905733|T037|HT|X77.2|ICD10CM|Intentional self-harm by other hot fluids|Intentional self-harm by other hot fluids +C2905734|T037|AB|X77.2XXA|ICD10CM|Intentional self-harm by other hot fluids, initial encounter|Intentional self-harm by other hot fluids, initial encounter +C2905734|T037|PT|X77.2XXA|ICD10CM|Intentional self-harm by other hot fluids, initial encounter|Intentional self-harm by other hot fluids, initial encounter +C2905735|T037|AB|X77.2XXD|ICD10CM|Intentional self-harm by other hot fluids, subs encntr|Intentional self-harm by other hot fluids, subs encntr +C2905735|T037|PT|X77.2XXD|ICD10CM|Intentional self-harm by other hot fluids, subsequent encounter|Intentional self-harm by other hot fluids, subsequent encounter +C2905736|T037|AB|X77.2XXS|ICD10CM|Intentional self-harm by other hot fluids, sequela|Intentional self-harm by other hot fluids, sequela +C2905736|T037|PT|X77.2XXS|ICD10CM|Intentional self-harm by other hot fluids, sequela|Intentional self-harm by other hot fluids, sequela +C2905737|T037|AB|X77.3|ICD10CM|Intentional self-harm by hot household appliances|Intentional self-harm by hot household appliances +C2905737|T037|HT|X77.3|ICD10CM|Intentional self-harm by hot household appliances|Intentional self-harm by hot household appliances +C2905738|T037|AB|X77.3XXA|ICD10CM|Intentional self-harm by hot household appliances, init|Intentional self-harm by hot household appliances, init +C2905738|T037|PT|X77.3XXA|ICD10CM|Intentional self-harm by hot household appliances, initial encounter|Intentional self-harm by hot household appliances, initial encounter +C2905739|T037|AB|X77.3XXD|ICD10CM|Intentional self-harm by hot household appliances, subs|Intentional self-harm by hot household appliances, subs +C2905739|T037|PT|X77.3XXD|ICD10CM|Intentional self-harm by hot household appliances, subsequent encounter|Intentional self-harm by hot household appliances, subsequent encounter +C2905740|T037|AB|X77.3XXS|ICD10CM|Intentional self-harm by hot household appliances, sequela|Intentional self-harm by hot household appliances, sequela +C2905740|T037|PT|X77.3XXS|ICD10CM|Intentional self-harm by hot household appliances, sequela|Intentional self-harm by hot household appliances, sequela +C2905741|T037|AB|X77.8|ICD10CM|Intentional self-harm by other hot objects|Intentional self-harm by other hot objects +C2905741|T037|HT|X77.8|ICD10CM|Intentional self-harm by other hot objects|Intentional self-harm by other hot objects +C2905742|T037|AB|X77.8XXA|ICD10CM|Intentional self-harm by other hot objects, init encntr|Intentional self-harm by other hot objects, init encntr +C2905742|T037|PT|X77.8XXA|ICD10CM|Intentional self-harm by other hot objects, initial encounter|Intentional self-harm by other hot objects, initial encounter +C2905743|T037|AB|X77.8XXD|ICD10CM|Intentional self-harm by other hot objects, subs encntr|Intentional self-harm by other hot objects, subs encntr +C2905743|T037|PT|X77.8XXD|ICD10CM|Intentional self-harm by other hot objects, subsequent encounter|Intentional self-harm by other hot objects, subsequent encounter +C2905744|T037|AB|X77.8XXS|ICD10CM|Intentional self-harm by other hot objects, sequela|Intentional self-harm by other hot objects, sequela +C2905744|T037|PT|X77.8XXS|ICD10CM|Intentional self-harm by other hot objects, sequela|Intentional self-harm by other hot objects, sequela +C2905745|T037|AB|X77.9|ICD10CM|Intentional self-harm by unspecified hot objects|Intentional self-harm by unspecified hot objects +C2905745|T037|HT|X77.9|ICD10CM|Intentional self-harm by unspecified hot objects|Intentional self-harm by unspecified hot objects +C2905746|T037|AB|X77.9XXA|ICD10CM|Intentional self-harm by unsp hot objects, init encntr|Intentional self-harm by unsp hot objects, init encntr +C2905746|T037|PT|X77.9XXA|ICD10CM|Intentional self-harm by unspecified hot objects, initial encounter|Intentional self-harm by unspecified hot objects, initial encounter +C2905747|T037|AB|X77.9XXD|ICD10CM|Intentional self-harm by unsp hot objects, subs encntr|Intentional self-harm by unsp hot objects, subs encntr +C2905747|T037|PT|X77.9XXD|ICD10CM|Intentional self-harm by unspecified hot objects, subsequent encounter|Intentional self-harm by unspecified hot objects, subsequent encounter +C2905748|T037|AB|X77.9XXS|ICD10CM|Intentional self-harm by unspecified hot objects, sequela|Intentional self-harm by unspecified hot objects, sequela +C2905748|T037|PT|X77.9XXS|ICD10CM|Intentional self-harm by unspecified hot objects, sequela|Intentional self-harm by unspecified hot objects, sequela +C0480436|T037|PT|X78|ICD10|Intentional self-harm by sharp object|Intentional self-harm by sharp object +C0480436|T037|HT|X78|ICD10CM|Intentional self-harm by sharp object|Intentional self-harm by sharp object +C0480436|T037|AB|X78|ICD10CM|Intentional self-harm by sharp object|Intentional self-harm by sharp object +C2905749|T037|AB|X78.0|ICD10CM|Intentional self-harm by sharp glass|Intentional self-harm by sharp glass +C2905749|T037|HT|X78.0|ICD10CM|Intentional self-harm by sharp glass|Intentional self-harm by sharp glass +C2905750|T037|AB|X78.0XXA|ICD10CM|Intentional self-harm by sharp glass, initial encounter|Intentional self-harm by sharp glass, initial encounter +C2905750|T037|PT|X78.0XXA|ICD10CM|Intentional self-harm by sharp glass, initial encounter|Intentional self-harm by sharp glass, initial encounter +C2905751|T037|AB|X78.0XXD|ICD10CM|Intentional self-harm by sharp glass, subsequent encounter|Intentional self-harm by sharp glass, subsequent encounter +C2905751|T037|PT|X78.0XXD|ICD10CM|Intentional self-harm by sharp glass, subsequent encounter|Intentional self-harm by sharp glass, subsequent encounter +C2905752|T037|AB|X78.0XXS|ICD10CM|Intentional self-harm by sharp glass, sequela|Intentional self-harm by sharp glass, sequela +C2905752|T037|PT|X78.0XXS|ICD10CM|Intentional self-harm by sharp glass, sequela|Intentional self-harm by sharp glass, sequela +C2905753|T037|AB|X78.1|ICD10CM|Intentional self-harm by knife|Intentional self-harm by knife +C2905753|T037|HT|X78.1|ICD10CM|Intentional self-harm by knife|Intentional self-harm by knife +C2905754|T037|AB|X78.1XXA|ICD10CM|Intentional self-harm by knife, initial encounter|Intentional self-harm by knife, initial encounter +C2905754|T037|PT|X78.1XXA|ICD10CM|Intentional self-harm by knife, initial encounter|Intentional self-harm by knife, initial encounter +C2905755|T037|AB|X78.1XXD|ICD10CM|Intentional self-harm by knife, subsequent encounter|Intentional self-harm by knife, subsequent encounter +C2905755|T037|PT|X78.1XXD|ICD10CM|Intentional self-harm by knife, subsequent encounter|Intentional self-harm by knife, subsequent encounter +C2905756|T037|AB|X78.1XXS|ICD10CM|Intentional self-harm by knife, sequela|Intentional self-harm by knife, sequela +C2905756|T037|PT|X78.1XXS|ICD10CM|Intentional self-harm by knife, sequela|Intentional self-harm by knife, sequela +C2905757|T037|AB|X78.2|ICD10CM|Intentional self-harm by sword or dagger|Intentional self-harm by sword or dagger +C2905757|T037|HT|X78.2|ICD10CM|Intentional self-harm by sword or dagger|Intentional self-harm by sword or dagger +C2905758|T037|AB|X78.2XXA|ICD10CM|Intentional self-harm by sword or dagger, initial encounter|Intentional self-harm by sword or dagger, initial encounter +C2905758|T037|PT|X78.2XXA|ICD10CM|Intentional self-harm by sword or dagger, initial encounter|Intentional self-harm by sword or dagger, initial encounter +C2905759|T037|AB|X78.2XXD|ICD10CM|Intentional self-harm by sword or dagger, subs encntr|Intentional self-harm by sword or dagger, subs encntr +C2905759|T037|PT|X78.2XXD|ICD10CM|Intentional self-harm by sword or dagger, subsequent encounter|Intentional self-harm by sword or dagger, subsequent encounter +C2905760|T037|AB|X78.2XXS|ICD10CM|Intentional self-harm by sword or dagger, sequela|Intentional self-harm by sword or dagger, sequela +C2905760|T037|PT|X78.2XXS|ICD10CM|Intentional self-harm by sword or dagger, sequela|Intentional self-harm by sword or dagger, sequela +C2905761|T037|AB|X78.8|ICD10CM|Intentional self-harm by other sharp object|Intentional self-harm by other sharp object +C2905761|T037|HT|X78.8|ICD10CM|Intentional self-harm by other sharp object|Intentional self-harm by other sharp object +C2905762|T037|AB|X78.8XXA|ICD10CM|Intentional self-harm by other sharp object, init encntr|Intentional self-harm by other sharp object, init encntr +C2905762|T037|PT|X78.8XXA|ICD10CM|Intentional self-harm by other sharp object, initial encounter|Intentional self-harm by other sharp object, initial encounter +C2905763|T037|AB|X78.8XXD|ICD10CM|Intentional self-harm by other sharp object, subs encntr|Intentional self-harm by other sharp object, subs encntr +C2905763|T037|PT|X78.8XXD|ICD10CM|Intentional self-harm by other sharp object, subsequent encounter|Intentional self-harm by other sharp object, subsequent encounter +C2905764|T037|AB|X78.8XXS|ICD10CM|Intentional self-harm by other sharp object, sequela|Intentional self-harm by other sharp object, sequela +C2905764|T037|PT|X78.8XXS|ICD10CM|Intentional self-harm by other sharp object, sequela|Intentional self-harm by other sharp object, sequela +C2905765|T037|AB|X78.9|ICD10CM|Intentional self-harm by unspecified sharp object|Intentional self-harm by unspecified sharp object +C2905765|T037|HT|X78.9|ICD10CM|Intentional self-harm by unspecified sharp object|Intentional self-harm by unspecified sharp object +C2905766|T037|AB|X78.9XXA|ICD10CM|Intentional self-harm by unsp sharp object, init encntr|Intentional self-harm by unsp sharp object, init encntr +C2905766|T037|PT|X78.9XXA|ICD10CM|Intentional self-harm by unspecified sharp object, initial encounter|Intentional self-harm by unspecified sharp object, initial encounter +C2905767|T037|AB|X78.9XXD|ICD10CM|Intentional self-harm by unsp sharp object, subs encntr|Intentional self-harm by unsp sharp object, subs encntr +C2905767|T037|PT|X78.9XXD|ICD10CM|Intentional self-harm by unspecified sharp object, subsequent encounter|Intentional self-harm by unspecified sharp object, subsequent encounter +C2905768|T037|AB|X78.9XXS|ICD10CM|Intentional self-harm by unspecified sharp object, sequela|Intentional self-harm by unspecified sharp object, sequela +C2905768|T037|PT|X78.9XXS|ICD10CM|Intentional self-harm by unspecified sharp object, sequela|Intentional self-harm by unspecified sharp object, sequela +C0480447|T037|HT|X79|ICD10CM|Intentional self-harm by blunt object|Intentional self-harm by blunt object +C0480447|T037|AB|X79|ICD10CM|Intentional self-harm by blunt object|Intentional self-harm by blunt object +C0480447|T037|PT|X79|ICD10|Intentional self-harm by blunt object|Intentional self-harm by blunt object +C2905769|T037|AB|X79.XXXA|ICD10CM|Intentional self-harm by blunt object, initial encounter|Intentional self-harm by blunt object, initial encounter +C2905769|T037|PT|X79.XXXA|ICD10CM|Intentional self-harm by blunt object, initial encounter|Intentional self-harm by blunt object, initial encounter +C2905770|T037|AB|X79.XXXD|ICD10CM|Intentional self-harm by blunt object, subsequent encounter|Intentional self-harm by blunt object, subsequent encounter +C2905770|T037|PT|X79.XXXD|ICD10CM|Intentional self-harm by blunt object, subsequent encounter|Intentional self-harm by blunt object, subsequent encounter +C2905771|T037|AB|X79.XXXS|ICD10CM|Intentional self-harm by blunt object, sequela|Intentional self-harm by blunt object, sequela +C2905771|T037|PT|X79.XXXS|ICD10CM|Intentional self-harm by blunt object, sequela|Intentional self-harm by blunt object, sequela +C2905772|T037|ET|X80|ICD10CM|Intentional fall from one level to another|Intentional fall from one level to another +C0480458|T037|PT|X80|ICD10|Intentional self-harm by jumping from a high place|Intentional self-harm by jumping from a high place +C0480458|T037|HT|X80|ICD10CM|Intentional self-harm by jumping from a high place|Intentional self-harm by jumping from a high place +C0480458|T037|AB|X80|ICD10CM|Intentional self-harm by jumping from a high place|Intentional self-harm by jumping from a high place +C2905773|T037|AB|X80.XXXA|ICD10CM|Intentional self-harm by jumping from a high place, init|Intentional self-harm by jumping from a high place, init +C2905773|T037|PT|X80.XXXA|ICD10CM|Intentional self-harm by jumping from a high place, initial encounter|Intentional self-harm by jumping from a high place, initial encounter +C2905774|T037|AB|X80.XXXD|ICD10CM|Intentional self-harm by jumping from a high place, subs|Intentional self-harm by jumping from a high place, subs +C2905774|T037|PT|X80.XXXD|ICD10CM|Intentional self-harm by jumping from a high place, subsequent encounter|Intentional self-harm by jumping from a high place, subsequent encounter +C2905775|T037|AB|X80.XXXS|ICD10CM|Intentional self-harm by jumping from a high place, sequela|Intentional self-harm by jumping from a high place, sequela +C2905775|T037|PT|X80.XXXS|ICD10CM|Intentional self-harm by jumping from a high place, sequela|Intentional self-harm by jumping from a high place, sequela +C0480469|T037|PT|X81|ICD10|Intentional self-harm by jumping or lying before moving object|Intentional self-harm by jumping or lying before moving object +C2905776|T037|HT|X81|ICD10CM|Intentional self-harm by jumping or lying in front of moving object|Intentional self-harm by jumping or lying in front of moving object +C2905776|T037|AB|X81|ICD10CM|Self-harm by jumping or lying in front of moving object|Self-harm by jumping or lying in front of moving object +C2905777|T037|HT|X81.0|ICD10CM|Intentional self-harm by jumping or lying in front of motor vehicle|Intentional self-harm by jumping or lying in front of motor vehicle +C2905777|T037|AB|X81.0|ICD10CM|Self-harm by jumping or lying in front of motor vehicle|Self-harm by jumping or lying in front of motor vehicle +C2905778|T037|PT|X81.0XXA|ICD10CM|Intentional self-harm by jumping or lying in front of motor vehicle, initial encounter|Intentional self-harm by jumping or lying in front of motor vehicle, initial encounter +C2905778|T037|AB|X81.0XXA|ICD10CM|Self-harm by jumping or lying in front of mtr veh, init|Self-harm by jumping or lying in front of mtr veh, init +C2905779|T037|PT|X81.0XXD|ICD10CM|Intentional self-harm by jumping or lying in front of motor vehicle, subsequent encounter|Intentional self-harm by jumping or lying in front of motor vehicle, subsequent encounter +C2905779|T037|AB|X81.0XXD|ICD10CM|Self-harm by jumping or lying in front of mtr veh, subs|Self-harm by jumping or lying in front of mtr veh, subs +C2905780|T037|PT|X81.0XXS|ICD10CM|Intentional self-harm by jumping or lying in front of motor vehicle, sequela|Intentional self-harm by jumping or lying in front of motor vehicle, sequela +C2905780|T037|AB|X81.0XXS|ICD10CM|Self-harm by jumping or lying in front of mtr veh, sequela|Self-harm by jumping or lying in front of mtr veh, sequela +C2905781|T037|HT|X81.1|ICD10CM|Intentional self-harm by jumping or lying in front of (subway) train|Intentional self-harm by jumping or lying in front of (subway) train +C2905781|T037|AB|X81.1|ICD10CM|Self-harm by jumping or lying in front of (subway) train|Self-harm by jumping or lying in front of (subway) train +C2905782|T037|PT|X81.1XXA|ICD10CM|Intentional self-harm by jumping or lying in front of (subway) train, initial encounter|Intentional self-harm by jumping or lying in front of (subway) train, initial encounter +C2905782|T037|AB|X81.1XXA|ICD10CM|Slf-hrm by jumping or lying in front of (subway) train, init|Slf-hrm by jumping or lying in front of (subway) train, init +C2905783|T037|PT|X81.1XXD|ICD10CM|Intentional self-harm by jumping or lying in front of (subway) train, subsequent encounter|Intentional self-harm by jumping or lying in front of (subway) train, subsequent encounter +C2905783|T037|AB|X81.1XXD|ICD10CM|Slf-hrm by jumping or lying in front of (subway) train, subs|Slf-hrm by jumping or lying in front of (subway) train, subs +C2905784|T037|PT|X81.1XXS|ICD10CM|Intentional self-harm by jumping or lying in front of (subway) train, sequela|Intentional self-harm by jumping or lying in front of (subway) train, sequela +C2905784|T037|AB|X81.1XXS|ICD10CM|Slf-hrm by jumping or lying in front of train, sequela|Slf-hrm by jumping or lying in front of train, sequela +C2905776|T037|HT|X81.8|ICD10CM|Intentional self-harm by jumping or lying in front of other moving object|Intentional self-harm by jumping or lying in front of other moving object +C2905776|T037|AB|X81.8|ICD10CM|Self-harm by jumping or lying in front of moving object|Self-harm by jumping or lying in front of moving object +C2905786|T037|PT|X81.8XXA|ICD10CM|Intentional self-harm by jumping or lying in front of other moving object, initial encounter|Intentional self-harm by jumping or lying in front of other moving object, initial encounter +C2905786|T037|AB|X81.8XXA|ICD10CM|Slf-hrm by jumping or lying in front of moving object, init|Slf-hrm by jumping or lying in front of moving object, init +C2905787|T037|PT|X81.8XXD|ICD10CM|Intentional self-harm by jumping or lying in front of other moving object, subsequent encounter|Intentional self-harm by jumping or lying in front of other moving object, subsequent encounter +C2905787|T037|AB|X81.8XXD|ICD10CM|Slf-hrm by jumping or lying in front of moving object, subs|Slf-hrm by jumping or lying in front of moving object, subs +C2905788|T037|PT|X81.8XXS|ICD10CM|Intentional self-harm by jumping or lying in front of other moving object, sequela|Intentional self-harm by jumping or lying in front of other moving object, sequela +C2905788|T037|AB|X81.8XXS|ICD10CM|Slf-hrm by jump or lying in front of moving object, sequela|Slf-hrm by jump or lying in front of moving object, sequela +C0480480|T037|PT|X82|ICD10|Intentional self-harm by crashing of motor vehicle|Intentional self-harm by crashing of motor vehicle +C0480480|T037|HT|X82|ICD10CM|Intentional self-harm by crashing of motor vehicle|Intentional self-harm by crashing of motor vehicle +C0480480|T037|AB|X82|ICD10CM|Intentional self-harm by crashing of motor vehicle|Intentional self-harm by crashing of motor vehicle +C2905789|T037|AB|X82.0|ICD10CM|Intentional collision of motor vehicle w oth motor vehicle|Intentional collision of motor vehicle w oth motor vehicle +C2905789|T037|HT|X82.0|ICD10CM|Intentional collision of motor vehicle with other motor vehicle|Intentional collision of motor vehicle with other motor vehicle +C2905790|T037|AB|X82.0XXA|ICD10CM|Intentional collision of motor vehicle w mtr veh, init|Intentional collision of motor vehicle w mtr veh, init +C2905790|T037|PT|X82.0XXA|ICD10CM|Intentional collision of motor vehicle with other motor vehicle, initial encounter|Intentional collision of motor vehicle with other motor vehicle, initial encounter +C2905791|T037|AB|X82.0XXD|ICD10CM|Intentional collision of motor vehicle w mtr veh, subs|Intentional collision of motor vehicle w mtr veh, subs +C2905791|T037|PT|X82.0XXD|ICD10CM|Intentional collision of motor vehicle with other motor vehicle, subsequent encounter|Intentional collision of motor vehicle with other motor vehicle, subsequent encounter +C2905792|T037|AB|X82.0XXS|ICD10CM|Intentional collision of motor vehicle w mtr veh, sequela|Intentional collision of motor vehicle w mtr veh, sequela +C2905792|T037|PT|X82.0XXS|ICD10CM|Intentional collision of motor vehicle with other motor vehicle, sequela|Intentional collision of motor vehicle with other motor vehicle, sequela +C2905793|T037|AB|X82.1|ICD10CM|Intentional collision of motor vehicle with train|Intentional collision of motor vehicle with train +C2905793|T037|HT|X82.1|ICD10CM|Intentional collision of motor vehicle with train|Intentional collision of motor vehicle with train +C2905794|T037|AB|X82.1XXA|ICD10CM|Intentional collision of motor vehicle w train, init encntr|Intentional collision of motor vehicle w train, init encntr +C2905794|T037|PT|X82.1XXA|ICD10CM|Intentional collision of motor vehicle with train, initial encounter|Intentional collision of motor vehicle with train, initial encounter +C2905795|T037|AB|X82.1XXD|ICD10CM|Intentional collision of motor vehicle w train, subs encntr|Intentional collision of motor vehicle w train, subs encntr +C2905795|T037|PT|X82.1XXD|ICD10CM|Intentional collision of motor vehicle with train, subsequent encounter|Intentional collision of motor vehicle with train, subsequent encounter +C2905796|T037|AB|X82.1XXS|ICD10CM|Intentional collision of motor vehicle with train, sequela|Intentional collision of motor vehicle with train, sequela +C2905796|T037|PT|X82.1XXS|ICD10CM|Intentional collision of motor vehicle with train, sequela|Intentional collision of motor vehicle with train, sequela +C2905797|T037|AB|X82.2|ICD10CM|Intentional collision of motor vehicle with tree|Intentional collision of motor vehicle with tree +C2905797|T037|HT|X82.2|ICD10CM|Intentional collision of motor vehicle with tree|Intentional collision of motor vehicle with tree +C2905798|T037|AB|X82.2XXA|ICD10CM|Intentional collision of motor vehicle w tree, init encntr|Intentional collision of motor vehicle w tree, init encntr +C2905798|T037|PT|X82.2XXA|ICD10CM|Intentional collision of motor vehicle with tree, initial encounter|Intentional collision of motor vehicle with tree, initial encounter +C2905799|T037|AB|X82.2XXD|ICD10CM|Intentional collision of motor vehicle w tree, subs encntr|Intentional collision of motor vehicle w tree, subs encntr +C2905799|T037|PT|X82.2XXD|ICD10CM|Intentional collision of motor vehicle with tree, subsequent encounter|Intentional collision of motor vehicle with tree, subsequent encounter +C2905800|T037|AB|X82.2XXS|ICD10CM|Intentional collision of motor vehicle with tree, sequela|Intentional collision of motor vehicle with tree, sequela +C2905800|T037|PT|X82.2XXS|ICD10CM|Intentional collision of motor vehicle with tree, sequela|Intentional collision of motor vehicle with tree, sequela +C2905801|T037|AB|X82.8|ICD10CM|Other intentional self-harm by crashing of motor vehicle|Other intentional self-harm by crashing of motor vehicle +C2905801|T037|HT|X82.8|ICD10CM|Other intentional self-harm by crashing of motor vehicle|Other intentional self-harm by crashing of motor vehicle +C2905802|T037|AB|X82.8XXA|ICD10CM|Oth intentional self-harm by crashing of motor vehicle, init|Oth intentional self-harm by crashing of motor vehicle, init +C2905802|T037|PT|X82.8XXA|ICD10CM|Other intentional self-harm by crashing of motor vehicle, initial encounter|Other intentional self-harm by crashing of motor vehicle, initial encounter +C2905803|T037|AB|X82.8XXD|ICD10CM|Oth intentional self-harm by crashing of motor vehicle, subs|Oth intentional self-harm by crashing of motor vehicle, subs +C2905803|T037|PT|X82.8XXD|ICD10CM|Other intentional self-harm by crashing of motor vehicle, subsequent encounter|Other intentional self-harm by crashing of motor vehicle, subsequent encounter +C2905804|T037|AB|X82.8XXS|ICD10CM|Oth self-harm by crashing of motor vehicle, sequela|Oth self-harm by crashing of motor vehicle, sequela +C2905804|T037|PT|X82.8XXS|ICD10CM|Other intentional self-harm by crashing of motor vehicle, sequela|Other intentional self-harm by crashing of motor vehicle, sequela +C0480491|T037|HT|X83|ICD10CM|Intentional self-harm by other specified means|Intentional self-harm by other specified means +C0480491|T037|AB|X83|ICD10CM|Intentional self-harm by other specified means|Intentional self-harm by other specified means +C0480491|T037|PT|X83|ICD10|Intentional self-harm by other specified means|Intentional self-harm by other specified means +C2905805|T037|AB|X83.0|ICD10CM|Intentional self-harm by crashing of aircraft|Intentional self-harm by crashing of aircraft +C2905805|T037|HT|X83.0|ICD10CM|Intentional self-harm by crashing of aircraft|Intentional self-harm by crashing of aircraft +C2905806|T037|AB|X83.0XXA|ICD10CM|Intentional self-harm by crashing of aircraft, init encntr|Intentional self-harm by crashing of aircraft, init encntr +C2905806|T037|PT|X83.0XXA|ICD10CM|Intentional self-harm by crashing of aircraft, initial encounter|Intentional self-harm by crashing of aircraft, initial encounter +C2905807|T037|AB|X83.0XXD|ICD10CM|Intentional self-harm by crashing of aircraft, subs encntr|Intentional self-harm by crashing of aircraft, subs encntr +C2905807|T037|PT|X83.0XXD|ICD10CM|Intentional self-harm by crashing of aircraft, subsequent encounter|Intentional self-harm by crashing of aircraft, subsequent encounter +C2905808|T037|AB|X83.0XXS|ICD10CM|Intentional self-harm by crashing of aircraft, sequela|Intentional self-harm by crashing of aircraft, sequela +C2905808|T037|PT|X83.0XXS|ICD10CM|Intentional self-harm by crashing of aircraft, sequela|Intentional self-harm by crashing of aircraft, sequela +C2905809|T037|AB|X83.1|ICD10CM|Intentional self-harm by electrocution|Intentional self-harm by electrocution +C2905809|T037|HT|X83.1|ICD10CM|Intentional self-harm by electrocution|Intentional self-harm by electrocution +C2905810|T037|AB|X83.1XXA|ICD10CM|Intentional self-harm by electrocution, initial encounter|Intentional self-harm by electrocution, initial encounter +C2905810|T037|PT|X83.1XXA|ICD10CM|Intentional self-harm by electrocution, initial encounter|Intentional self-harm by electrocution, initial encounter +C2905811|T037|AB|X83.1XXD|ICD10CM|Intentional self-harm by electrocution, subsequent encounter|Intentional self-harm by electrocution, subsequent encounter +C2905811|T037|PT|X83.1XXD|ICD10CM|Intentional self-harm by electrocution, subsequent encounter|Intentional self-harm by electrocution, subsequent encounter +C2905812|T037|AB|X83.1XXS|ICD10CM|Intentional self-harm by electrocution, sequela|Intentional self-harm by electrocution, sequela +C2905812|T037|PT|X83.1XXS|ICD10CM|Intentional self-harm by electrocution, sequela|Intentional self-harm by electrocution, sequela +C2905813|T037|AB|X83.2|ICD10CM|Intentional self-harm by exposure to extremes of cold|Intentional self-harm by exposure to extremes of cold +C2905813|T037|HT|X83.2|ICD10CM|Intentional self-harm by exposure to extremes of cold|Intentional self-harm by exposure to extremes of cold +C2905814|T037|AB|X83.2XXA|ICD10CM|Intentional self-harm by exposure to extremes of cold, init|Intentional self-harm by exposure to extremes of cold, init +C2905814|T037|PT|X83.2XXA|ICD10CM|Intentional self-harm by exposure to extremes of cold, initial encounter|Intentional self-harm by exposure to extremes of cold, initial encounter +C2905815|T037|AB|X83.2XXD|ICD10CM|Intentional self-harm by exposure to extremes of cold, subs|Intentional self-harm by exposure to extremes of cold, subs +C2905815|T037|PT|X83.2XXD|ICD10CM|Intentional self-harm by exposure to extremes of cold, subsequent encounter|Intentional self-harm by exposure to extremes of cold, subsequent encounter +C2905816|T037|PT|X83.2XXS|ICD10CM|Intentional self-harm by exposure to extremes of cold, sequela|Intentional self-harm by exposure to extremes of cold, sequela +C2905816|T037|AB|X83.2XXS|ICD10CM|Self-harm by exposure to extremes of cold, sequela|Self-harm by exposure to extremes of cold, sequela +C0480491|T037|HT|X83.8|ICD10CM|Intentional self-harm by other specified means|Intentional self-harm by other specified means +C0480491|T037|AB|X83.8|ICD10CM|Intentional self-harm by other specified means|Intentional self-harm by other specified means +C2905817|T037|AB|X83.8XXA|ICD10CM|Intentional self-harm by other specified means, init encntr|Intentional self-harm by other specified means, init encntr +C2905817|T037|PT|X83.8XXA|ICD10CM|Intentional self-harm by other specified means, initial encounter|Intentional self-harm by other specified means, initial encounter +C2905818|T037|AB|X83.8XXD|ICD10CM|Intentional self-harm by other specified means, subs encntr|Intentional self-harm by other specified means, subs encntr +C2905818|T037|PT|X83.8XXD|ICD10CM|Intentional self-harm by other specified means, subsequent encounter|Intentional self-harm by other specified means, subsequent encounter +C2905819|T037|AB|X83.8XXS|ICD10CM|Intentional self-harm by other specified means, sequela|Intentional self-harm by other specified means, sequela +C2905819|T037|PT|X83.8XXS|ICD10CM|Intentional self-harm by other specified means, sequela|Intentional self-harm by other specified means, sequela +C0480203|T037|PT|X84|ICD10|Intentional self-harm by unspecified means|Intentional self-harm by unspecified means +C0480511|T037|PT|X85|ICD10|Assault by drugs, medicaments and biological substances|Assault by drugs, medicaments and biological substances +C0004063|T037|HT|X85-Y09.9|ICD10|Assault|Assault +C0480522|T037|PT|X86|ICD10|Assault by corrosive substance|Assault by corrosive substance +C0480533|T037|PT|X87|ICD10|Assault by pesticides|Assault by pesticides +C0480544|T037|PT|X88|ICD10AE|Assault by gases and vapors|Assault by gases and vapors +C0480544|T037|PT|X88|ICD10|Assault by gases and vapours|Assault by gases and vapours +C0480555|T037|PT|X89|ICD10|Assault by other specified chemicals and noxious substances|Assault by other specified chemicals and noxious substances +C0480566|T037|PT|X90|ICD10|Assault by unspecified chemical or noxious substance|Assault by unspecified chemical or noxious substance +C0480577|T037|PT|X91|ICD10|Assault by hanging, strangulation and suffocation|Assault by hanging, strangulation and suffocation +C0262008|T037|HT|X92|ICD10CM|Assault by drowning and submersion|Assault by drowning and submersion +C0262008|T037|AB|X92|ICD10CM|Assault by drowning and submersion|Assault by drowning and submersion +C0262008|T037|PT|X92|ICD10|Assault by drowning and submersion|Assault by drowning and submersion +C4270735|T037|HT|X92-Y09|ICD10CM|Assault (X92-Y09)|Assault (X92-Y09) +C2919103|T037|ET|X92-Y09|ICD10CM|homicide|homicide +C4290493|T037|ET|X92-Y09|ICD10CM|injuries inflicted by another person with intent to injure or kill, by any means|injuries inflicted by another person with intent to injure or kill, by any means +C2905821|T037|AB|X92.0|ICD10CM|Assault by drowning and submersion while in bathtub|Assault by drowning and submersion while in bathtub +C2905821|T037|HT|X92.0|ICD10CM|Assault by drowning and submersion while in bathtub|Assault by drowning and submersion while in bathtub +C2905822|T037|AB|X92.0XXA|ICD10CM|Assault by drowning and submersion while in bathtub, init|Assault by drowning and submersion while in bathtub, init +C2905822|T037|PT|X92.0XXA|ICD10CM|Assault by drowning and submersion while in bathtub, initial encounter|Assault by drowning and submersion while in bathtub, initial encounter +C2905823|T037|AB|X92.0XXD|ICD10CM|Assault by drowning and submersion while in bathtub, subs|Assault by drowning and submersion while in bathtub, subs +C2905823|T037|PT|X92.0XXD|ICD10CM|Assault by drowning and submersion while in bathtub, subsequent encounter|Assault by drowning and submersion while in bathtub, subsequent encounter +C2905824|T037|AB|X92.0XXS|ICD10CM|Assault by drowning and submersion while in bathtub, sequela|Assault by drowning and submersion while in bathtub, sequela +C2905824|T037|PT|X92.0XXS|ICD10CM|Assault by drowning and submersion while in bathtub, sequela|Assault by drowning and submersion while in bathtub, sequela +C2905825|T037|AB|X92.1|ICD10CM|Assault by drowning and submersion while in swimming pool|Assault by drowning and submersion while in swimming pool +C2905825|T037|HT|X92.1|ICD10CM|Assault by drowning and submersion while in swimming pool|Assault by drowning and submersion while in swimming pool +C2905826|T037|AB|X92.1XXA|ICD10CM|Assault by drown while in swimming pool, init|Assault by drown while in swimming pool, init +C2905826|T037|PT|X92.1XXA|ICD10CM|Assault by drowning and submersion while in swimming pool, initial encounter|Assault by drowning and submersion while in swimming pool, initial encounter +C2905827|T037|AB|X92.1XXD|ICD10CM|Assault by drown while in swimming pool, subs|Assault by drown while in swimming pool, subs +C2905827|T037|PT|X92.1XXD|ICD10CM|Assault by drowning and submersion while in swimming pool, subsequent encounter|Assault by drowning and submersion while in swimming pool, subsequent encounter +C2905828|T037|AB|X92.1XXS|ICD10CM|Assault by drown while in swimming pool, sequela|Assault by drown while in swimming pool, sequela +C2905828|T037|PT|X92.1XXS|ICD10CM|Assault by drowning and submersion while in swimming pool, sequela|Assault by drowning and submersion while in swimming pool, sequela +C2905829|T037|AB|X92.2|ICD10CM|Assault by drown after push into swimming pool|Assault by drown after push into swimming pool +C2905829|T037|HT|X92.2|ICD10CM|Assault by drowning and submersion after push into swimming pool|Assault by drowning and submersion after push into swimming pool +C2905830|T037|AB|X92.2XXA|ICD10CM|Assault by drown after push into swimming pool, init|Assault by drown after push into swimming pool, init +C2905830|T037|PT|X92.2XXA|ICD10CM|Assault by drowning and submersion after push into swimming pool, initial encounter|Assault by drowning and submersion after push into swimming pool, initial encounter +C2905831|T037|AB|X92.2XXD|ICD10CM|Assault by drown after push into swimming pool, subs|Assault by drown after push into swimming pool, subs +C2905831|T037|PT|X92.2XXD|ICD10CM|Assault by drowning and submersion after push into swimming pool, subsequent encounter|Assault by drowning and submersion after push into swimming pool, subsequent encounter +C2905832|T037|AB|X92.2XXS|ICD10CM|Assault by drown after push into swimming pool, sequela|Assault by drown after push into swimming pool, sequela +C2905832|T037|PT|X92.2XXS|ICD10CM|Assault by drowning and submersion after push into swimming pool, sequela|Assault by drowning and submersion after push into swimming pool, sequela +C2905833|T037|AB|X92.3|ICD10CM|Assault by drowning and submersion in natural water|Assault by drowning and submersion in natural water +C2905833|T037|HT|X92.3|ICD10CM|Assault by drowning and submersion in natural water|Assault by drowning and submersion in natural water +C2905834|T037|AB|X92.3XXA|ICD10CM|Assault by drowning and submersion in natural water, init|Assault by drowning and submersion in natural water, init +C2905834|T037|PT|X92.3XXA|ICD10CM|Assault by drowning and submersion in natural water, initial encounter|Assault by drowning and submersion in natural water, initial encounter +C2905835|T037|AB|X92.3XXD|ICD10CM|Assault by drowning and submersion in natural water, subs|Assault by drowning and submersion in natural water, subs +C2905835|T037|PT|X92.3XXD|ICD10CM|Assault by drowning and submersion in natural water, subsequent encounter|Assault by drowning and submersion in natural water, subsequent encounter +C2905836|T037|AB|X92.3XXS|ICD10CM|Assault by drowning and submersion in natural water, sequela|Assault by drowning and submersion in natural water, sequela +C2905836|T037|PT|X92.3XXS|ICD10CM|Assault by drowning and submersion in natural water, sequela|Assault by drowning and submersion in natural water, sequela +C2905837|T037|AB|X92.8|ICD10CM|Other assault by drowning and submersion|Other assault by drowning and submersion +C2905837|T037|HT|X92.8|ICD10CM|Other assault by drowning and submersion|Other assault by drowning and submersion +C2905838|T037|AB|X92.8XXA|ICD10CM|Other assault by drowning and submersion, initial encounter|Other assault by drowning and submersion, initial encounter +C2905838|T037|PT|X92.8XXA|ICD10CM|Other assault by drowning and submersion, initial encounter|Other assault by drowning and submersion, initial encounter +C2905839|T037|AB|X92.8XXD|ICD10CM|Other assault by drowning and submersion, subs encntr|Other assault by drowning and submersion, subs encntr +C2905839|T037|PT|X92.8XXD|ICD10CM|Other assault by drowning and submersion, subsequent encounter|Other assault by drowning and submersion, subsequent encounter +C2905840|T037|AB|X92.8XXS|ICD10CM|Other assault by drowning and submersion, sequela|Other assault by drowning and submersion, sequela +C2905840|T037|PT|X92.8XXS|ICD10CM|Other assault by drowning and submersion, sequela|Other assault by drowning and submersion, sequela +C0262008|T037|AB|X92.9|ICD10CM|Assault by drowning and submersion, unspecified|Assault by drowning and submersion, unspecified +C0262008|T037|HT|X92.9|ICD10CM|Assault by drowning and submersion, unspecified|Assault by drowning and submersion, unspecified +C2905842|T037|AB|X92.9XXA|ICD10CM|Assault by drowning and submersion, unspecified, init encntr|Assault by drowning and submersion, unspecified, init encntr +C2905842|T037|PT|X92.9XXA|ICD10CM|Assault by drowning and submersion, unspecified, initial encounter|Assault by drowning and submersion, unspecified, initial encounter +C2905843|T037|AB|X92.9XXD|ICD10CM|Assault by drowning and submersion, unspecified, subs encntr|Assault by drowning and submersion, unspecified, subs encntr +C2905843|T037|PT|X92.9XXD|ICD10CM|Assault by drowning and submersion, unspecified, subsequent encounter|Assault by drowning and submersion, unspecified, subsequent encounter +C2905844|T037|AB|X92.9XXS|ICD10CM|Assault by drowning and submersion, unspecified, sequela|Assault by drowning and submersion, unspecified, sequela +C2905844|T037|PT|X92.9XXS|ICD10CM|Assault by drowning and submersion, unspecified, sequela|Assault by drowning and submersion, unspecified, sequela +C2905845|T037|ET|X93|ICD10CM|Assault by discharge of gun for single hand use|Assault by discharge of gun for single hand use +C2905846|T037|ET|X93|ICD10CM|Assault by discharge of pistol|Assault by discharge of pistol +C2905847|T037|ET|X93|ICD10CM|Assault by discharge of revolver|Assault by discharge of revolver +C0480598|T037|PT|X93|ICD10|Assault by handgun discharge|Assault by handgun discharge +C0480598|T037|HT|X93|ICD10CM|Assault by handgun discharge|Assault by handgun discharge +C0480598|T037|AB|X93|ICD10CM|Assault by handgun discharge|Assault by handgun discharge +C2905848|T037|AB|X93.XXXA|ICD10CM|Assault by handgun discharge, initial encounter|Assault by handgun discharge, initial encounter +C2905848|T037|PT|X93.XXXA|ICD10CM|Assault by handgun discharge, initial encounter|Assault by handgun discharge, initial encounter +C2905849|T037|AB|X93.XXXD|ICD10CM|Assault by handgun discharge, subsequent encounter|Assault by handgun discharge, subsequent encounter +C2905849|T037|PT|X93.XXXD|ICD10CM|Assault by handgun discharge, subsequent encounter|Assault by handgun discharge, subsequent encounter +C2905850|T037|AB|X93.XXXS|ICD10CM|Assault by handgun discharge, sequela|Assault by handgun discharge, sequela +C2905850|T037|PT|X93.XXXS|ICD10CM|Assault by handgun discharge, sequela|Assault by handgun discharge, sequela +C0480609|T037|HT|X94|ICD10CM|Assault by rifle, shotgun and larger firearm discharge|Assault by rifle, shotgun and larger firearm discharge +C0480609|T037|AB|X94|ICD10CM|Assault by rifle, shotgun and larger firearm discharge|Assault by rifle, shotgun and larger firearm discharge +C0480609|T037|PT|X94|ICD10|Assault by rifle, shotgun and larger firearm discharge|Assault by rifle, shotgun and larger firearm discharge +C0262011|T037|HT|X94.0|ICD10CM|Assault by shotgun|Assault by shotgun +C0262011|T037|AB|X94.0|ICD10CM|Assault by shotgun|Assault by shotgun +C2905851|T037|AB|X94.0XXA|ICD10CM|Assault by shotgun, initial encounter|Assault by shotgun, initial encounter +C2905851|T037|PT|X94.0XXA|ICD10CM|Assault by shotgun, initial encounter|Assault by shotgun, initial encounter +C2905852|T037|AB|X94.0XXD|ICD10CM|Assault by shotgun, subsequent encounter|Assault by shotgun, subsequent encounter +C2905852|T037|PT|X94.0XXD|ICD10CM|Assault by shotgun, subsequent encounter|Assault by shotgun, subsequent encounter +C2905853|T037|AB|X94.0XXS|ICD10CM|Assault by shotgun, sequela|Assault by shotgun, sequela +C2905853|T037|PT|X94.0XXS|ICD10CM|Assault by shotgun, sequela|Assault by shotgun, sequela +C0262012|T037|HT|X94.1|ICD10CM|Assault by hunting rifle|Assault by hunting rifle +C0262012|T037|AB|X94.1|ICD10CM|Assault by hunting rifle|Assault by hunting rifle +C2905854|T037|AB|X94.1XXA|ICD10CM|Assault by hunting rifle, initial encounter|Assault by hunting rifle, initial encounter +C2905854|T037|PT|X94.1XXA|ICD10CM|Assault by hunting rifle, initial encounter|Assault by hunting rifle, initial encounter +C2905855|T037|AB|X94.1XXD|ICD10CM|Assault by hunting rifle, subsequent encounter|Assault by hunting rifle, subsequent encounter +C2905855|T037|PT|X94.1XXD|ICD10CM|Assault by hunting rifle, subsequent encounter|Assault by hunting rifle, subsequent encounter +C2905856|T037|AB|X94.1XXS|ICD10CM|Assault by hunting rifle, sequela|Assault by hunting rifle, sequela +C2905856|T037|PT|X94.1XXS|ICD10CM|Assault by hunting rifle, sequela|Assault by hunting rifle, sequela +C2905857|T037|AB|X94.2|ICD10CM|Assault by machine gun|Assault by machine gun +C2905857|T037|HT|X94.2|ICD10CM|Assault by machine gun|Assault by machine gun +C2905858|T037|AB|X94.2XXA|ICD10CM|Assault by machine gun, initial encounter|Assault by machine gun, initial encounter +C2905858|T037|PT|X94.2XXA|ICD10CM|Assault by machine gun, initial encounter|Assault by machine gun, initial encounter +C2905859|T037|AB|X94.2XXD|ICD10CM|Assault by machine gun, subsequent encounter|Assault by machine gun, subsequent encounter +C2905859|T037|PT|X94.2XXD|ICD10CM|Assault by machine gun, subsequent encounter|Assault by machine gun, subsequent encounter +C2905860|T037|AB|X94.2XXS|ICD10CM|Assault by machine gun, sequela|Assault by machine gun, sequela +C2905860|T037|PT|X94.2XXS|ICD10CM|Assault by machine gun, sequela|Assault by machine gun, sequela +C2905861|T037|AB|X94.8|ICD10CM|Assault by other larger firearm discharge|Assault by other larger firearm discharge +C2905861|T037|HT|X94.8|ICD10CM|Assault by other larger firearm discharge|Assault by other larger firearm discharge +C2905862|T037|AB|X94.8XXA|ICD10CM|Assault by other larger firearm discharge, initial encounter|Assault by other larger firearm discharge, initial encounter +C2905862|T037|PT|X94.8XXA|ICD10CM|Assault by other larger firearm discharge, initial encounter|Assault by other larger firearm discharge, initial encounter +C2905863|T037|AB|X94.8XXD|ICD10CM|Assault by other larger firearm discharge, subs encntr|Assault by other larger firearm discharge, subs encntr +C2905863|T037|PT|X94.8XXD|ICD10CM|Assault by other larger firearm discharge, subsequent encounter|Assault by other larger firearm discharge, subsequent encounter +C2905864|T037|AB|X94.8XXS|ICD10CM|Assault by other larger firearm discharge, sequela|Assault by other larger firearm discharge, sequela +C2905864|T037|PT|X94.8XXS|ICD10CM|Assault by other larger firearm discharge, sequela|Assault by other larger firearm discharge, sequela +C2905865|T037|AB|X94.9|ICD10CM|Assault by unspecified larger firearm discharge|Assault by unspecified larger firearm discharge +C2905865|T037|HT|X94.9|ICD10CM|Assault by unspecified larger firearm discharge|Assault by unspecified larger firearm discharge +C2905866|T037|AB|X94.9XXA|ICD10CM|Assault by unspecified larger firearm discharge, init encntr|Assault by unspecified larger firearm discharge, init encntr +C2905866|T037|PT|X94.9XXA|ICD10CM|Assault by unspecified larger firearm discharge, initial encounter|Assault by unspecified larger firearm discharge, initial encounter +C2905867|T037|AB|X94.9XXD|ICD10CM|Assault by unspecified larger firearm discharge, subs encntr|Assault by unspecified larger firearm discharge, subs encntr +C2905867|T037|PT|X94.9XXD|ICD10CM|Assault by unspecified larger firearm discharge, subsequent encounter|Assault by unspecified larger firearm discharge, subsequent encounter +C2905868|T037|AB|X94.9XXS|ICD10CM|Assault by unspecified larger firearm discharge, sequela|Assault by unspecified larger firearm discharge, sequela +C2905868|T037|PT|X94.9XXS|ICD10CM|Assault by unspecified larger firearm discharge, sequela|Assault by unspecified larger firearm discharge, sequela +C2905869|T037|AB|X95|ICD10CM|Assault by other and unspecified firearm and gun discharge|Assault by other and unspecified firearm and gun discharge +C2905869|T037|HT|X95|ICD10CM|Assault by other and unspecified firearm and gun discharge|Assault by other and unspecified firearm and gun discharge +C0480620|T037|PT|X95|ICD10|Assault by other and unspecified firearm discharge|Assault by other and unspecified firearm discharge +C2905870|T037|AB|X95.0|ICD10CM|Assault by gas, air or spring-operated guns|Assault by gas, air or spring-operated guns +C2905870|T037|HT|X95.0|ICD10CM|Assault by gas, air or spring-operated guns|Assault by gas, air or spring-operated guns +C2905873|T037|AB|X95.01|ICD10CM|Assault by airgun discharge|Assault by airgun discharge +C2905873|T037|HT|X95.01|ICD10CM|Assault by airgun discharge|Assault by airgun discharge +C2905871|T037|ET|X95.01|ICD10CM|Assault by BB gun discharge|Assault by BB gun discharge +C2905872|T037|ET|X95.01|ICD10CM|Assault by pellet gun discharge|Assault by pellet gun discharge +C2905874|T037|AB|X95.01XA|ICD10CM|Assault by airgun discharge, initial encounter|Assault by airgun discharge, initial encounter +C2905874|T037|PT|X95.01XA|ICD10CM|Assault by airgun discharge, initial encounter|Assault by airgun discharge, initial encounter +C2905875|T037|AB|X95.01XD|ICD10CM|Assault by airgun discharge, subsequent encounter|Assault by airgun discharge, subsequent encounter +C2905875|T037|PT|X95.01XD|ICD10CM|Assault by airgun discharge, subsequent encounter|Assault by airgun discharge, subsequent encounter +C2905876|T037|AB|X95.01XS|ICD10CM|Assault by airgun discharge, sequela|Assault by airgun discharge, sequela +C2905876|T037|PT|X95.01XS|ICD10CM|Assault by airgun discharge, sequela|Assault by airgun discharge, sequela +C2905877|T037|AB|X95.02|ICD10CM|Assault by paintball gun discharge|Assault by paintball gun discharge +C2905877|T037|HT|X95.02|ICD10CM|Assault by paintball gun discharge|Assault by paintball gun discharge +C2905878|T037|AB|X95.02XA|ICD10CM|Assault by paintball gun discharge, initial encounter|Assault by paintball gun discharge, initial encounter +C2905878|T037|PT|X95.02XA|ICD10CM|Assault by paintball gun discharge, initial encounter|Assault by paintball gun discharge, initial encounter +C2905879|T037|AB|X95.02XD|ICD10CM|Assault by paintball gun discharge, subsequent encounter|Assault by paintball gun discharge, subsequent encounter +C2905879|T037|PT|X95.02XD|ICD10CM|Assault by paintball gun discharge, subsequent encounter|Assault by paintball gun discharge, subsequent encounter +C2905880|T037|AB|X95.02XS|ICD10CM|Assault by paintball gun discharge, sequela|Assault by paintball gun discharge, sequela +C2905880|T037|PT|X95.02XS|ICD10CM|Assault by paintball gun discharge, sequela|Assault by paintball gun discharge, sequela +C2905881|T037|AB|X95.09|ICD10CM|Assault by other gas, air or spring-operated gun|Assault by other gas, air or spring-operated gun +C2905881|T037|HT|X95.09|ICD10CM|Assault by other gas, air or spring-operated gun|Assault by other gas, air or spring-operated gun +C2977366|T037|AB|X95.09XA|ICD10CM|Assault by oth gas, air or spring-operated gun, init encntr|Assault by oth gas, air or spring-operated gun, init encntr +C2977366|T037|PT|X95.09XA|ICD10CM|Assault by other gas, air or spring-operated gun, initial encounter|Assault by other gas, air or spring-operated gun, initial encounter +C2977367|T037|AB|X95.09XD|ICD10CM|Assault by oth gas, air or spring-operated gun, subs encntr|Assault by oth gas, air or spring-operated gun, subs encntr +C2977367|T037|PT|X95.09XD|ICD10CM|Assault by other gas, air or spring-operated gun, subsequent encounter|Assault by other gas, air or spring-operated gun, subsequent encounter +C2977368|T037|AB|X95.09XS|ICD10CM|Assault by other gas, air or spring-operated gun, sequela|Assault by other gas, air or spring-operated gun, sequela +C2977368|T037|PT|X95.09XS|ICD10CM|Assault by other gas, air or spring-operated gun, sequela|Assault by other gas, air or spring-operated gun, sequela +C2905886|T037|AB|X95.8|ICD10CM|Assault by other firearm discharge|Assault by other firearm discharge +C2905886|T037|HT|X95.8|ICD10CM|Assault by other firearm discharge|Assault by other firearm discharge +C2905885|T037|ET|X95.8|ICD10CM|Assault by very pistol [flare] discharge|Assault by very pistol [flare] discharge +C2905887|T037|AB|X95.8XXA|ICD10CM|Assault by other firearm discharge, initial encounter|Assault by other firearm discharge, initial encounter +C2905887|T037|PT|X95.8XXA|ICD10CM|Assault by other firearm discharge, initial encounter|Assault by other firearm discharge, initial encounter +C2905888|T037|AB|X95.8XXD|ICD10CM|Assault by other firearm discharge, subsequent encounter|Assault by other firearm discharge, subsequent encounter +C2905888|T037|PT|X95.8XXD|ICD10CM|Assault by other firearm discharge, subsequent encounter|Assault by other firearm discharge, subsequent encounter +C2905889|T037|AB|X95.8XXS|ICD10CM|Assault by other firearm discharge, sequela|Assault by other firearm discharge, sequela +C2905889|T037|PT|X95.8XXS|ICD10CM|Assault by other firearm discharge, sequela|Assault by other firearm discharge, sequela +C2905890|T037|AB|X95.9|ICD10CM|Assault by unspecified firearm discharge|Assault by unspecified firearm discharge +C2905890|T037|HT|X95.9|ICD10CM|Assault by unspecified firearm discharge|Assault by unspecified firearm discharge +C2905891|T037|AB|X95.9XXA|ICD10CM|Assault by unspecified firearm discharge, initial encounter|Assault by unspecified firearm discharge, initial encounter +C2905891|T037|PT|X95.9XXA|ICD10CM|Assault by unspecified firearm discharge, initial encounter|Assault by unspecified firearm discharge, initial encounter +C2905892|T037|AB|X95.9XXD|ICD10CM|Assault by unspecified firearm discharge, subs encntr|Assault by unspecified firearm discharge, subs encntr +C2905892|T037|PT|X95.9XXD|ICD10CM|Assault by unspecified firearm discharge, subsequent encounter|Assault by unspecified firearm discharge, subsequent encounter +C2905893|T037|AB|X95.9XXS|ICD10CM|Assault by unspecified firearm discharge, sequela|Assault by unspecified firearm discharge, sequela +C2905893|T037|PT|X95.9XXS|ICD10CM|Assault by unspecified firearm discharge, sequela|Assault by unspecified firearm discharge, sequela +C0480631|T037|PT|X96|ICD10|Assault by explosive material|Assault by explosive material +C0480631|T037|HT|X96|ICD10CM|Assault by explosive material|Assault by explosive material +C0480631|T037|AB|X96|ICD10CM|Assault by explosive material|Assault by explosive material +C0262015|T037|HT|X96.0|ICD10CM|Assault by antipersonnel bomb|Assault by antipersonnel bomb +C0262015|T037|AB|X96.0|ICD10CM|Assault by antipersonnel bomb|Assault by antipersonnel bomb +C2905894|T037|AB|X96.0XXA|ICD10CM|Assault by antipersonnel bomb, initial encounter|Assault by antipersonnel bomb, initial encounter +C2905894|T037|PT|X96.0XXA|ICD10CM|Assault by antipersonnel bomb, initial encounter|Assault by antipersonnel bomb, initial encounter +C2905895|T037|AB|X96.0XXD|ICD10CM|Assault by antipersonnel bomb, subsequent encounter|Assault by antipersonnel bomb, subsequent encounter +C2905895|T037|PT|X96.0XXD|ICD10CM|Assault by antipersonnel bomb, subsequent encounter|Assault by antipersonnel bomb, subsequent encounter +C2905896|T037|AB|X96.0XXS|ICD10CM|Assault by antipersonnel bomb, sequela|Assault by antipersonnel bomb, sequela +C2905896|T037|PT|X96.0XXS|ICD10CM|Assault by antipersonnel bomb, sequela|Assault by antipersonnel bomb, sequela +C0418380|T037|HT|X96.1|ICD10CM|Assault by gasoline bomb|Assault by gasoline bomb +C0418380|T037|AB|X96.1|ICD10CM|Assault by gasoline bomb|Assault by gasoline bomb +C2905897|T037|AB|X96.1XXA|ICD10CM|Assault by gasoline bomb, initial encounter|Assault by gasoline bomb, initial encounter +C2905897|T037|PT|X96.1XXA|ICD10CM|Assault by gasoline bomb, initial encounter|Assault by gasoline bomb, initial encounter +C2905898|T037|AB|X96.1XXD|ICD10CM|Assault by gasoline bomb, subsequent encounter|Assault by gasoline bomb, subsequent encounter +C2905898|T037|PT|X96.1XXD|ICD10CM|Assault by gasoline bomb, subsequent encounter|Assault by gasoline bomb, subsequent encounter +C2905899|T037|AB|X96.1XXS|ICD10CM|Assault by gasoline bomb, sequela|Assault by gasoline bomb, sequela +C2905899|T037|PT|X96.1XXS|ICD10CM|Assault by gasoline bomb, sequela|Assault by gasoline bomb, sequela +C0262017|T037|HT|X96.2|ICD10CM|Assault by letter bomb|Assault by letter bomb +C0262017|T037|AB|X96.2|ICD10CM|Assault by letter bomb|Assault by letter bomb +C2905900|T037|AB|X96.2XXA|ICD10CM|Assault by letter bomb, initial encounter|Assault by letter bomb, initial encounter +C2905900|T037|PT|X96.2XXA|ICD10CM|Assault by letter bomb, initial encounter|Assault by letter bomb, initial encounter +C2905901|T037|AB|X96.2XXD|ICD10CM|Assault by letter bomb, subsequent encounter|Assault by letter bomb, subsequent encounter +C2905901|T037|PT|X96.2XXD|ICD10CM|Assault by letter bomb, subsequent encounter|Assault by letter bomb, subsequent encounter +C2905902|T037|AB|X96.2XXS|ICD10CM|Assault by letter bomb, sequela|Assault by letter bomb, sequela +C2905902|T037|PT|X96.2XXS|ICD10CM|Assault by letter bomb, sequela|Assault by letter bomb, sequela +C2905903|T037|AB|X96.3|ICD10CM|Assault by fertilizer bomb|Assault by fertilizer bomb +C2905903|T037|HT|X96.3|ICD10CM|Assault by fertilizer bomb|Assault by fertilizer bomb +C2905904|T037|AB|X96.3XXA|ICD10CM|Assault by fertilizer bomb, initial encounter|Assault by fertilizer bomb, initial encounter +C2905904|T037|PT|X96.3XXA|ICD10CM|Assault by fertilizer bomb, initial encounter|Assault by fertilizer bomb, initial encounter +C2905905|T037|AB|X96.3XXD|ICD10CM|Assault by fertilizer bomb, subsequent encounter|Assault by fertilizer bomb, subsequent encounter +C2905905|T037|PT|X96.3XXD|ICD10CM|Assault by fertilizer bomb, subsequent encounter|Assault by fertilizer bomb, subsequent encounter +C2905906|T037|AB|X96.3XXS|ICD10CM|Assault by fertilizer bomb, sequela|Assault by fertilizer bomb, sequela +C2905906|T037|PT|X96.3XXS|ICD10CM|Assault by fertilizer bomb, sequela|Assault by fertilizer bomb, sequela +C2905907|T037|AB|X96.4|ICD10CM|Assault by pipe bomb|Assault by pipe bomb +C2905907|T037|HT|X96.4|ICD10CM|Assault by pipe bomb|Assault by pipe bomb +C2905908|T037|AB|X96.4XXA|ICD10CM|Assault by pipe bomb, initial encounter|Assault by pipe bomb, initial encounter +C2905908|T037|PT|X96.4XXA|ICD10CM|Assault by pipe bomb, initial encounter|Assault by pipe bomb, initial encounter +C2905909|T037|AB|X96.4XXD|ICD10CM|Assault by pipe bomb, subsequent encounter|Assault by pipe bomb, subsequent encounter +C2905909|T037|PT|X96.4XXD|ICD10CM|Assault by pipe bomb, subsequent encounter|Assault by pipe bomb, subsequent encounter +C2905910|T037|AB|X96.4XXS|ICD10CM|Assault by pipe bomb, sequela|Assault by pipe bomb, sequela +C2905910|T037|PT|X96.4XXS|ICD10CM|Assault by pipe bomb, sequela|Assault by pipe bomb, sequela +C0262018|T037|HT|X96.8|ICD10CM|Assault by other specified explosive|Assault by other specified explosive +C0262018|T037|AB|X96.8|ICD10CM|Assault by other specified explosive|Assault by other specified explosive +C2905911|T037|AB|X96.8XXA|ICD10CM|Assault by other specified explosive, initial encounter|Assault by other specified explosive, initial encounter +C2905911|T037|PT|X96.8XXA|ICD10CM|Assault by other specified explosive, initial encounter|Assault by other specified explosive, initial encounter +C2905912|T037|AB|X96.8XXD|ICD10CM|Assault by other specified explosive, subsequent encounter|Assault by other specified explosive, subsequent encounter +C2905912|T037|PT|X96.8XXD|ICD10CM|Assault by other specified explosive, subsequent encounter|Assault by other specified explosive, subsequent encounter +C2905913|T037|AB|X96.8XXS|ICD10CM|Assault by other specified explosive, sequela|Assault by other specified explosive, sequela +C2905913|T037|PT|X96.8XXS|ICD10CM|Assault by other specified explosive, sequela|Assault by other specified explosive, sequela +C0262019|T037|HT|X96.9|ICD10CM|Assault by unspecified explosive|Assault by unspecified explosive +C0262019|T037|AB|X96.9|ICD10CM|Assault by unspecified explosive|Assault by unspecified explosive +C2905914|T037|AB|X96.9XXA|ICD10CM|Assault by unspecified explosive, initial encounter|Assault by unspecified explosive, initial encounter +C2905914|T037|PT|X96.9XXA|ICD10CM|Assault by unspecified explosive, initial encounter|Assault by unspecified explosive, initial encounter +C2905915|T037|AB|X96.9XXD|ICD10CM|Assault by unspecified explosive, subsequent encounter|Assault by unspecified explosive, subsequent encounter +C2905915|T037|PT|X96.9XXD|ICD10CM|Assault by unspecified explosive, subsequent encounter|Assault by unspecified explosive, subsequent encounter +C2905916|T037|AB|X96.9XXS|ICD10CM|Assault by unspecified explosive, sequela|Assault by unspecified explosive, sequela +C2905916|T037|PT|X96.9XXS|ICD10CM|Assault by unspecified explosive, sequela|Assault by unspecified explosive, sequela +C0418437|T037|ET|X97|ICD10CM|Assault by arson|Assault by arson +C2905917|T037|ET|X97|ICD10CM|Assault by cigarettes|Assault by cigarettes +C2905918|T037|ET|X97|ICD10CM|Assault by incendiary device|Assault by incendiary device +C0480642|T037|HT|X97|ICD10CM|Assault by smoke, fire and flames|Assault by smoke, fire and flames +C0480642|T037|AB|X97|ICD10CM|Assault by smoke, fire and flames|Assault by smoke, fire and flames +C0480642|T037|PT|X97|ICD10|Assault by smoke, fire and flames|Assault by smoke, fire and flames +C2905919|T037|AB|X97.XXXA|ICD10CM|Assault by smoke, fire and flames, initial encounter|Assault by smoke, fire and flames, initial encounter +C2905919|T037|PT|X97.XXXA|ICD10CM|Assault by smoke, fire and flames, initial encounter|Assault by smoke, fire and flames, initial encounter +C2905920|T037|AB|X97.XXXD|ICD10CM|Assault by smoke, fire and flames, subsequent encounter|Assault by smoke, fire and flames, subsequent encounter +C2905920|T037|PT|X97.XXXD|ICD10CM|Assault by smoke, fire and flames, subsequent encounter|Assault by smoke, fire and flames, subsequent encounter +C2905921|T037|AB|X97.XXXS|ICD10CM|Assault by smoke, fire and flames, sequela|Assault by smoke, fire and flames, sequela +C2905921|T037|PT|X97.XXXS|ICD10CM|Assault by smoke, fire and flames, sequela|Assault by smoke, fire and flames, sequela +C0480653|T037|HT|X98|ICD10CM|Assault by steam, hot vapors and hot objects|Assault by steam, hot vapors and hot objects +C0480653|T037|AB|X98|ICD10CM|Assault by steam, hot vapors and hot objects|Assault by steam, hot vapors and hot objects +C0480653|T037|PT|X98|ICD10AE|Assault by steam, hot vapors and hot objects|Assault by steam, hot vapors and hot objects +C0480653|T037|PT|X98|ICD10|Assault by steam, hot vapours and hot objects|Assault by steam, hot vapours and hot objects +C2905922|T037|AB|X98.0|ICD10CM|Assault by steam or hot vapors|Assault by steam or hot vapors +C2905922|T037|HT|X98.0|ICD10CM|Assault by steam or hot vapors|Assault by steam or hot vapors +C2905923|T037|AB|X98.0XXA|ICD10CM|Assault by steam or hot vapors, initial encounter|Assault by steam or hot vapors, initial encounter +C2905923|T037|PT|X98.0XXA|ICD10CM|Assault by steam or hot vapors, initial encounter|Assault by steam or hot vapors, initial encounter +C2905924|T037|AB|X98.0XXD|ICD10CM|Assault by steam or hot vapors, subsequent encounter|Assault by steam or hot vapors, subsequent encounter +C2905924|T037|PT|X98.0XXD|ICD10CM|Assault by steam or hot vapors, subsequent encounter|Assault by steam or hot vapors, subsequent encounter +C2905925|T037|AB|X98.0XXS|ICD10CM|Assault by steam or hot vapors, sequela|Assault by steam or hot vapors, sequela +C2905925|T037|PT|X98.0XXS|ICD10CM|Assault by steam or hot vapors, sequela|Assault by steam or hot vapors, sequela +C2905926|T037|AB|X98.1|ICD10CM|Assault by hot tap water|Assault by hot tap water +C2905926|T037|HT|X98.1|ICD10CM|Assault by hot tap water|Assault by hot tap water +C2905927|T037|AB|X98.1XXA|ICD10CM|Assault by hot tap water, initial encounter|Assault by hot tap water, initial encounter +C2905927|T037|PT|X98.1XXA|ICD10CM|Assault by hot tap water, initial encounter|Assault by hot tap water, initial encounter +C2905928|T037|AB|X98.1XXD|ICD10CM|Assault by hot tap water, subsequent encounter|Assault by hot tap water, subsequent encounter +C2905928|T037|PT|X98.1XXD|ICD10CM|Assault by hot tap water, subsequent encounter|Assault by hot tap water, subsequent encounter +C2905929|T037|AB|X98.1XXS|ICD10CM|Assault by hot tap water, sequela|Assault by hot tap water, sequela +C2905929|T037|PT|X98.1XXS|ICD10CM|Assault by hot tap water, sequela|Assault by hot tap water, sequela +C2905930|T037|AB|X98.2|ICD10CM|Assault by hot fluids|Assault by hot fluids +C2905930|T037|HT|X98.2|ICD10CM|Assault by hot fluids|Assault by hot fluids +C2905931|T037|AB|X98.2XXA|ICD10CM|Assault by hot fluids, initial encounter|Assault by hot fluids, initial encounter +C2905931|T037|PT|X98.2XXA|ICD10CM|Assault by hot fluids, initial encounter|Assault by hot fluids, initial encounter +C2905932|T037|AB|X98.2XXD|ICD10CM|Assault by hot fluids, subsequent encounter|Assault by hot fluids, subsequent encounter +C2905932|T037|PT|X98.2XXD|ICD10CM|Assault by hot fluids, subsequent encounter|Assault by hot fluids, subsequent encounter +C2905933|T037|AB|X98.2XXS|ICD10CM|Assault by hot fluids, sequela|Assault by hot fluids, sequela +C2905933|T037|PT|X98.2XXS|ICD10CM|Assault by hot fluids, sequela|Assault by hot fluids, sequela +C2905934|T037|AB|X98.3|ICD10CM|Assault by hot household appliances|Assault by hot household appliances +C2905934|T037|HT|X98.3|ICD10CM|Assault by hot household appliances|Assault by hot household appliances +C2905935|T037|AB|X98.3XXA|ICD10CM|Assault by hot household appliances, initial encounter|Assault by hot household appliances, initial encounter +C2905935|T037|PT|X98.3XXA|ICD10CM|Assault by hot household appliances, initial encounter|Assault by hot household appliances, initial encounter +C2905936|T037|AB|X98.3XXD|ICD10CM|Assault by hot household appliances, subsequent encounter|Assault by hot household appliances, subsequent encounter +C2905936|T037|PT|X98.3XXD|ICD10CM|Assault by hot household appliances, subsequent encounter|Assault by hot household appliances, subsequent encounter +C2905937|T037|AB|X98.3XXS|ICD10CM|Assault by hot household appliances, sequela|Assault by hot household appliances, sequela +C2905937|T037|PT|X98.3XXS|ICD10CM|Assault by hot household appliances, sequela|Assault by hot household appliances, sequela +C2905938|T037|AB|X98.8|ICD10CM|Assault by other hot objects|Assault by other hot objects +C2905938|T037|HT|X98.8|ICD10CM|Assault by other hot objects|Assault by other hot objects +C2905939|T037|AB|X98.8XXA|ICD10CM|Assault by other hot objects, initial encounter|Assault by other hot objects, initial encounter +C2905939|T037|PT|X98.8XXA|ICD10CM|Assault by other hot objects, initial encounter|Assault by other hot objects, initial encounter +C2905940|T037|AB|X98.8XXD|ICD10CM|Assault by other hot objects, subsequent encounter|Assault by other hot objects, subsequent encounter +C2905940|T037|PT|X98.8XXD|ICD10CM|Assault by other hot objects, subsequent encounter|Assault by other hot objects, subsequent encounter +C2905941|T037|AB|X98.8XXS|ICD10CM|Assault by other hot objects, sequela|Assault by other hot objects, sequela +C2905941|T037|PT|X98.8XXS|ICD10CM|Assault by other hot objects, sequela|Assault by other hot objects, sequela +C2905942|T037|AB|X98.9|ICD10CM|Assault by unspecified hot objects|Assault by unspecified hot objects +C2905942|T037|HT|X98.9|ICD10CM|Assault by unspecified hot objects|Assault by unspecified hot objects +C2905943|T037|AB|X98.9XXA|ICD10CM|Assault by unspecified hot objects, initial encounter|Assault by unspecified hot objects, initial encounter +C2905943|T037|PT|X98.9XXA|ICD10CM|Assault by unspecified hot objects, initial encounter|Assault by unspecified hot objects, initial encounter +C2905944|T037|AB|X98.9XXD|ICD10CM|Assault by unspecified hot objects, subsequent encounter|Assault by unspecified hot objects, subsequent encounter +C2905944|T037|PT|X98.9XXD|ICD10CM|Assault by unspecified hot objects, subsequent encounter|Assault by unspecified hot objects, subsequent encounter +C2905945|T037|AB|X98.9XXS|ICD10CM|Assault by unspecified hot objects, sequela|Assault by unspecified hot objects, sequela +C2905945|T037|PT|X98.9XXS|ICD10CM|Assault by unspecified hot objects, sequela|Assault by unspecified hot objects, sequela +C0480664|T037|PT|X99|ICD10|Assault by sharp object|Assault by sharp object +C0480664|T037|HT|X99|ICD10CM|Assault by sharp object|Assault by sharp object +C0480664|T037|AB|X99|ICD10CM|Assault by sharp object|Assault by sharp object +C2905946|T037|AB|X99.0|ICD10CM|Assault by sharp glass|Assault by sharp glass +C2905946|T037|HT|X99.0|ICD10CM|Assault by sharp glass|Assault by sharp glass +C2905947|T037|AB|X99.0XXA|ICD10CM|Assault by sharp glass, initial encounter|Assault by sharp glass, initial encounter +C2905947|T037|PT|X99.0XXA|ICD10CM|Assault by sharp glass, initial encounter|Assault by sharp glass, initial encounter +C2905948|T037|AB|X99.0XXD|ICD10CM|Assault by sharp glass, subsequent encounter|Assault by sharp glass, subsequent encounter +C2905948|T037|PT|X99.0XXD|ICD10CM|Assault by sharp glass, subsequent encounter|Assault by sharp glass, subsequent encounter +C2905949|T037|AB|X99.0XXS|ICD10CM|Assault by sharp glass, sequela|Assault by sharp glass, sequela +C2905949|T037|PT|X99.0XXS|ICD10CM|Assault by sharp glass, sequela|Assault by sharp glass, sequela +C2905950|T037|AB|X99.1|ICD10CM|Assault by knife|Assault by knife +C2905950|T037|HT|X99.1|ICD10CM|Assault by knife|Assault by knife +C2905951|T037|AB|X99.1XXA|ICD10CM|Assault by knife, initial encounter|Assault by knife, initial encounter +C2905951|T037|PT|X99.1XXA|ICD10CM|Assault by knife, initial encounter|Assault by knife, initial encounter +C2905952|T037|AB|X99.1XXD|ICD10CM|Assault by knife, subsequent encounter|Assault by knife, subsequent encounter +C2905952|T037|PT|X99.1XXD|ICD10CM|Assault by knife, subsequent encounter|Assault by knife, subsequent encounter +C2905953|T037|AB|X99.1XXS|ICD10CM|Assault by knife, sequela|Assault by knife, sequela +C2905953|T037|PT|X99.1XXS|ICD10CM|Assault by knife, sequela|Assault by knife, sequela +C2905954|T037|AB|X99.2|ICD10CM|Assault by sword or dagger|Assault by sword or dagger +C2905954|T037|HT|X99.2|ICD10CM|Assault by sword or dagger|Assault by sword or dagger +C2905955|T037|AB|X99.2XXA|ICD10CM|Assault by sword or dagger, initial encounter|Assault by sword or dagger, initial encounter +C2905955|T037|PT|X99.2XXA|ICD10CM|Assault by sword or dagger, initial encounter|Assault by sword or dagger, initial encounter +C2905956|T037|AB|X99.2XXD|ICD10CM|Assault by sword or dagger, subsequent encounter|Assault by sword or dagger, subsequent encounter +C2905956|T037|PT|X99.2XXD|ICD10CM|Assault by sword or dagger, subsequent encounter|Assault by sword or dagger, subsequent encounter +C2905957|T037|AB|X99.2XXS|ICD10CM|Assault by sword or dagger, sequela|Assault by sword or dagger, sequela +C2905957|T037|PT|X99.2XXS|ICD10CM|Assault by sword or dagger, sequela|Assault by sword or dagger, sequela +C2905958|T037|AB|X99.8|ICD10CM|Assault by other sharp object|Assault by other sharp object +C2905958|T037|HT|X99.8|ICD10CM|Assault by other sharp object|Assault by other sharp object +C2905959|T037|AB|X99.8XXA|ICD10CM|Assault by other sharp object, initial encounter|Assault by other sharp object, initial encounter +C2905959|T037|PT|X99.8XXA|ICD10CM|Assault by other sharp object, initial encounter|Assault by other sharp object, initial encounter +C2905960|T037|AB|X99.8XXD|ICD10CM|Assault by other sharp object, subsequent encounter|Assault by other sharp object, subsequent encounter +C2905960|T037|PT|X99.8XXD|ICD10CM|Assault by other sharp object, subsequent encounter|Assault by other sharp object, subsequent encounter +C2905961|T037|AB|X99.8XXS|ICD10CM|Assault by other sharp object, sequela|Assault by other sharp object, sequela +C2905961|T037|PT|X99.8XXS|ICD10CM|Assault by other sharp object, sequela|Assault by other sharp object, sequela +C0418391|T037|ET|X99.9|ICD10CM|Assault by stabbing NOS|Assault by stabbing NOS +C2905962|T037|AB|X99.9|ICD10CM|Assault by unspecified sharp object|Assault by unspecified sharp object +C2905962|T037|HT|X99.9|ICD10CM|Assault by unspecified sharp object|Assault by unspecified sharp object +C2905963|T037|AB|X99.9XXA|ICD10CM|Assault by unspecified sharp object, initial encounter|Assault by unspecified sharp object, initial encounter +C2905963|T037|PT|X99.9XXA|ICD10CM|Assault by unspecified sharp object, initial encounter|Assault by unspecified sharp object, initial encounter +C2905964|T037|AB|X99.9XXD|ICD10CM|Assault by unspecified sharp object, subsequent encounter|Assault by unspecified sharp object, subsequent encounter +C2905964|T037|PT|X99.9XXD|ICD10CM|Assault by unspecified sharp object, subsequent encounter|Assault by unspecified sharp object, subsequent encounter +C2905965|T037|AB|X99.9XXS|ICD10CM|Assault by unspecified sharp object, sequela|Assault by unspecified sharp object, sequela +C2905965|T037|PT|X99.9XXS|ICD10CM|Assault by unspecified sharp object, sequela|Assault by unspecified sharp object, sequela +C0480675|T037|HT|Y00|ICD10CM|Assault by blunt object|Assault by blunt object +C0480675|T037|AB|Y00|ICD10CM|Assault by blunt object|Assault by blunt object +C0480675|T037|PT|Y00|ICD10|Assault by blunt object|Assault by blunt object +C2905966|T037|AB|Y00.XXXA|ICD10CM|Assault by blunt object, initial encounter|Assault by blunt object, initial encounter +C2905966|T037|PT|Y00.XXXA|ICD10CM|Assault by blunt object, initial encounter|Assault by blunt object, initial encounter +C2905967|T037|AB|Y00.XXXD|ICD10CM|Assault by blunt object, subsequent encounter|Assault by blunt object, subsequent encounter +C2905967|T037|PT|Y00.XXXD|ICD10CM|Assault by blunt object, subsequent encounter|Assault by blunt object, subsequent encounter +C2905968|T037|AB|Y00.XXXS|ICD10CM|Assault by blunt object, sequela|Assault by blunt object, sequela +C2905968|T037|PT|Y00.XXXS|ICD10CM|Assault by blunt object, sequela|Assault by blunt object, sequela +C0480686|T037|PT|Y01|ICD10|Assault by pushing from high place|Assault by pushing from high place +C0480686|T037|HT|Y01|ICD10CM|Assault by pushing from high place|Assault by pushing from high place +C0480686|T037|AB|Y01|ICD10CM|Assault by pushing from high place|Assault by pushing from high place +C2905969|T037|AB|Y01.XXXA|ICD10CM|Assault by pushing from high place, initial encounter|Assault by pushing from high place, initial encounter +C2905969|T037|PT|Y01.XXXA|ICD10CM|Assault by pushing from high place, initial encounter|Assault by pushing from high place, initial encounter +C2905970|T037|AB|Y01.XXXD|ICD10CM|Assault by pushing from high place, subsequent encounter|Assault by pushing from high place, subsequent encounter +C2905970|T037|PT|Y01.XXXD|ICD10CM|Assault by pushing from high place, subsequent encounter|Assault by pushing from high place, subsequent encounter +C2905971|T037|AB|Y01.XXXS|ICD10CM|Assault by pushing from high place, sequela|Assault by pushing from high place, sequela +C2905971|T037|PT|Y01.XXXS|ICD10CM|Assault by pushing from high place, sequela|Assault by pushing from high place, sequela +C2905972|T037|AB|Y02|ICD10CM|Assault by push/place victim in front of moving object|Assault by push/place victim in front of moving object +C0480697|T037|PT|Y02|ICD10|Assault by pushing or placing victim before moving object|Assault by pushing or placing victim before moving object +C2905972|T037|HT|Y02|ICD10CM|Assault by pushing or placing victim in front of moving object|Assault by pushing or placing victim in front of moving object +C2905973|T037|AB|Y02.0|ICD10CM|Assault by push/place victim in front of motor vehicle|Assault by push/place victim in front of motor vehicle +C2905973|T037|HT|Y02.0|ICD10CM|Assault by pushing or placing victim in front of motor vehicle|Assault by pushing or placing victim in front of motor vehicle +C2905974|T037|AB|Y02.0XXA|ICD10CM|Assault by push/place victim in front of motor vehicle, init|Assault by push/place victim in front of motor vehicle, init +C2905974|T037|PT|Y02.0XXA|ICD10CM|Assault by pushing or placing victim in front of motor vehicle, initial encounter|Assault by pushing or placing victim in front of motor vehicle, initial encounter +C2905975|T037|AB|Y02.0XXD|ICD10CM|Assault by push/place victim in front of motor vehicle, subs|Assault by push/place victim in front of motor vehicle, subs +C2905975|T037|PT|Y02.0XXD|ICD10CM|Assault by pushing or placing victim in front of motor vehicle, subsequent encounter|Assault by pushing or placing victim in front of motor vehicle, subsequent encounter +C2905976|T037|AB|Y02.0XXS|ICD10CM|Assault by push/place victim in front of mtr veh, sequela|Assault by push/place victim in front of mtr veh, sequela +C2905976|T037|PT|Y02.0XXS|ICD10CM|Assault by pushing or placing victim in front of motor vehicle, sequela|Assault by pushing or placing victim in front of motor vehicle, sequela +C2905977|T037|AB|Y02.1|ICD10CM|Assault by push/place victim in front of (subway) train|Assault by push/place victim in front of (subway) train +C2905977|T037|HT|Y02.1|ICD10CM|Assault by pushing or placing victim in front of (subway) train|Assault by pushing or placing victim in front of (subway) train +C2905978|T037|AB|Y02.1XXA|ICD10CM|Assault by push/place victim in front of train, init|Assault by push/place victim in front of train, init +C2905978|T037|PT|Y02.1XXA|ICD10CM|Assault by pushing or placing victim in front of (subway) train, initial encounter|Assault by pushing or placing victim in front of (subway) train, initial encounter +C2905979|T037|AB|Y02.1XXD|ICD10CM|Assault by push/place victim in front of train, subs|Assault by push/place victim in front of train, subs +C2905979|T037|PT|Y02.1XXD|ICD10CM|Assault by pushing or placing victim in front of (subway) train, subsequent encounter|Assault by pushing or placing victim in front of (subway) train, subsequent encounter +C2905980|T037|AB|Y02.1XXS|ICD10CM|Assault by push/place victim in front of train, sequela|Assault by push/place victim in front of train, sequela +C2905980|T037|PT|Y02.1XXS|ICD10CM|Assault by pushing or placing victim in front of (subway) train, sequela|Assault by pushing or placing victim in front of (subway) train, sequela +C2905972|T037|AB|Y02.8|ICD10CM|Assault by push/place victim in front of moving object|Assault by push/place victim in front of moving object +C2905972|T037|HT|Y02.8|ICD10CM|Assault by pushing or placing victim in front of other moving object|Assault by pushing or placing victim in front of other moving object +C2905982|T037|AB|Y02.8XXA|ICD10CM|Assault by push/place victim in front of moving object, init|Assault by push/place victim in front of moving object, init +C2905982|T037|PT|Y02.8XXA|ICD10CM|Assault by pushing or placing victim in front of other moving object, initial encounter|Assault by pushing or placing victim in front of other moving object, initial encounter +C2905983|T037|AB|Y02.8XXD|ICD10CM|Assault by push/place victim in front of moving object, subs|Assault by push/place victim in front of moving object, subs +C2905983|T037|PT|Y02.8XXD|ICD10CM|Assault by pushing or placing victim in front of other moving object, subsequent encounter|Assault by pushing or placing victim in front of other moving object, subsequent encounter +C2905984|T037|PT|Y02.8XXS|ICD10CM|Assault by pushing or placing victim in front of other moving object, sequela|Assault by pushing or placing victim in front of other moving object, sequela +C2905984|T037|AB|Y02.8XXS|ICD10CM|Asslt by push/place victim in front of moving object, sqla|Asslt by push/place victim in front of moving object, sqla +C0480708|T037|PT|Y03|ICD10|Assault by crashing of motor vehicle|Assault by crashing of motor vehicle +C0480708|T037|HT|Y03|ICD10CM|Assault by crashing of motor vehicle|Assault by crashing of motor vehicle +C0480708|T037|AB|Y03|ICD10CM|Assault by crashing of motor vehicle|Assault by crashing of motor vehicle +C2905985|T037|AB|Y03.0|ICD10CM|Assault by being hit or run over by motor vehicle|Assault by being hit or run over by motor vehicle +C2905985|T037|HT|Y03.0|ICD10CM|Assault by being hit or run over by motor vehicle|Assault by being hit or run over by motor vehicle +C2905986|T037|AB|Y03.0XXA|ICD10CM|Assault by being hit or run over by motor vehicle, init|Assault by being hit or run over by motor vehicle, init +C2905986|T037|PT|Y03.0XXA|ICD10CM|Assault by being hit or run over by motor vehicle, initial encounter|Assault by being hit or run over by motor vehicle, initial encounter +C2905987|T037|AB|Y03.0XXD|ICD10CM|Assault by being hit or run over by motor vehicle, subs|Assault by being hit or run over by motor vehicle, subs +C2905987|T037|PT|Y03.0XXD|ICD10CM|Assault by being hit or run over by motor vehicle, subsequent encounter|Assault by being hit or run over by motor vehicle, subsequent encounter +C2905988|T037|AB|Y03.0XXS|ICD10CM|Assault by being hit or run over by motor vehicle, sequela|Assault by being hit or run over by motor vehicle, sequela +C2905988|T037|PT|Y03.0XXS|ICD10CM|Assault by being hit or run over by motor vehicle, sequela|Assault by being hit or run over by motor vehicle, sequela +C2905989|T037|AB|Y03.8|ICD10CM|Other assault by crashing of motor vehicle|Other assault by crashing of motor vehicle +C2905989|T037|HT|Y03.8|ICD10CM|Other assault by crashing of motor vehicle|Other assault by crashing of motor vehicle +C2905990|T037|AB|Y03.8XXA|ICD10CM|Other assault by crashing of motor vehicle, init encntr|Other assault by crashing of motor vehicle, init encntr +C2905990|T037|PT|Y03.8XXA|ICD10CM|Other assault by crashing of motor vehicle, initial encounter|Other assault by crashing of motor vehicle, initial encounter +C2905991|T037|AB|Y03.8XXD|ICD10CM|Other assault by crashing of motor vehicle, subs encntr|Other assault by crashing of motor vehicle, subs encntr +C2905991|T037|PT|Y03.8XXD|ICD10CM|Other assault by crashing of motor vehicle, subsequent encounter|Other assault by crashing of motor vehicle, subsequent encounter +C2905992|T037|AB|Y03.8XXS|ICD10CM|Other assault by crashing of motor vehicle, sequela|Other assault by crashing of motor vehicle, sequela +C2905992|T037|PT|Y03.8XXS|ICD10CM|Other assault by crashing of motor vehicle, sequela|Other assault by crashing of motor vehicle, sequela +C0480719|T037|HT|Y04|ICD10CM|Assault by bodily force|Assault by bodily force +C0480719|T037|AB|Y04|ICD10CM|Assault by bodily force|Assault by bodily force +C0480719|T037|PT|Y04|ICD10|Assault by bodily force|Assault by bodily force +C2905993|T037|AB|Y04.0|ICD10CM|Assault by unarmed brawl or fight|Assault by unarmed brawl or fight +C2905993|T037|HT|Y04.0|ICD10CM|Assault by unarmed brawl or fight|Assault by unarmed brawl or fight +C2905994|T037|AB|Y04.0XXA|ICD10CM|Assault by unarmed brawl or fight, initial encounter|Assault by unarmed brawl or fight, initial encounter +C2905994|T037|PT|Y04.0XXA|ICD10CM|Assault by unarmed brawl or fight, initial encounter|Assault by unarmed brawl or fight, initial encounter +C2905995|T037|AB|Y04.0XXD|ICD10CM|Assault by unarmed brawl or fight, subsequent encounter|Assault by unarmed brawl or fight, subsequent encounter +C2905995|T037|PT|Y04.0XXD|ICD10CM|Assault by unarmed brawl or fight, subsequent encounter|Assault by unarmed brawl or fight, subsequent encounter +C2905996|T037|AB|Y04.0XXS|ICD10CM|Assault by unarmed brawl or fight, sequela|Assault by unarmed brawl or fight, sequela +C2905996|T037|PT|Y04.0XXS|ICD10CM|Assault by unarmed brawl or fight, sequela|Assault by unarmed brawl or fight, sequela +C0418414|T037|HT|Y04.1|ICD10CM|Assault by human bite|Assault by human bite +C0418414|T037|AB|Y04.1|ICD10CM|Assault by human bite|Assault by human bite +C2905997|T037|AB|Y04.1XXA|ICD10CM|Assault by human bite, initial encounter|Assault by human bite, initial encounter +C2905997|T037|PT|Y04.1XXA|ICD10CM|Assault by human bite, initial encounter|Assault by human bite, initial encounter +C2905998|T037|AB|Y04.1XXD|ICD10CM|Assault by human bite, subsequent encounter|Assault by human bite, subsequent encounter +C2905998|T037|PT|Y04.1XXD|ICD10CM|Assault by human bite, subsequent encounter|Assault by human bite, subsequent encounter +C2905999|T037|AB|Y04.1XXS|ICD10CM|Assault by human bite, sequela|Assault by human bite, sequela +C2905999|T037|PT|Y04.1XXS|ICD10CM|Assault by human bite, sequela|Assault by human bite, sequela +C2906000|T037|AB|Y04.2|ICD10CM|Assault by strike against or bumped into by another person|Assault by strike against or bumped into by another person +C2906000|T037|HT|Y04.2|ICD10CM|Assault by strike against or bumped into by another person|Assault by strike against or bumped into by another person +C2906001|T037|PT|Y04.2XXA|ICD10CM|Assault by strike against or bumped into by another person, initial encounter|Assault by strike against or bumped into by another person, initial encounter +C2906001|T037|AB|Y04.2XXA|ICD10CM|Asslt by strike agnst or bumped into by another person, init|Asslt by strike agnst or bumped into by another person, init +C2906002|T037|PT|Y04.2XXD|ICD10CM|Assault by strike against or bumped into by another person, subsequent encounter|Assault by strike against or bumped into by another person, subsequent encounter +C2906002|T037|AB|Y04.2XXD|ICD10CM|Asslt by strike agnst or bumped into by another person, subs|Asslt by strike agnst or bumped into by another person, subs +C2906003|T037|PT|Y04.2XXS|ICD10CM|Assault by strike against or bumped into by another person, sequela|Assault by strike against or bumped into by another person, sequela +C2906003|T037|AB|Y04.2XXS|ICD10CM|Asslt by strike agnst or bumped into by another person, sqla|Asslt by strike agnst or bumped into by another person, sqla +C0480719|T037|ET|Y04.8|ICD10CM|Assault by bodily force NOS|Assault by bodily force NOS +C2906004|T037|AB|Y04.8|ICD10CM|Assault by other bodily force|Assault by other bodily force +C2906004|T037|HT|Y04.8|ICD10CM|Assault by other bodily force|Assault by other bodily force +C2906005|T037|AB|Y04.8XXA|ICD10CM|Assault by other bodily force, initial encounter|Assault by other bodily force, initial encounter +C2906005|T037|PT|Y04.8XXA|ICD10CM|Assault by other bodily force, initial encounter|Assault by other bodily force, initial encounter +C2906006|T037|AB|Y04.8XXD|ICD10CM|Assault by other bodily force, subsequent encounter|Assault by other bodily force, subsequent encounter +C2906006|T037|PT|Y04.8XXD|ICD10CM|Assault by other bodily force, subsequent encounter|Assault by other bodily force, subsequent encounter +C2906007|T037|AB|Y04.8XXS|ICD10CM|Assault by other bodily force, sequela|Assault by other bodily force, sequela +C2906007|T037|PT|Y04.8XXS|ICD10CM|Assault by other bodily force, sequela|Assault by other bodily force, sequela +C0480730|T037|PT|Y05|ICD10|Sexual assault by bodily force|Sexual assault by bodily force +C0480741|T037|HT|Y06|ICD10|Neglect and abandonment|Neglect and abandonment +C0480741|T037|PS|Y06.9|ICD10|By unspecified person|By unspecified person +C0480741|T037|PX|Y06.9|ICD10|Neglect and abandonment by unspecified person|Neglect and abandonment by unspecified person +C0480746|T037|HT|Y07|ICD10|Other maltreatment syndromes|Other maltreatment syndromes +C2079565|T048|ET|Y07|ICD10CM|perpetrator of sexual abuse|perpetrator of sexual abuse +C0497064|T037|PS|Y07.0|ICD10|By spouse or partner|By spouse or partner +C0497064|T037|PX|Y07.0|ICD10|Maltreatment by spouse or partner|Maltreatment by spouse or partner +C2906014|T033|AB|Y07.0|ICD10CM|Spouse or partner, perpetrator of maltreatment and neglect|Spouse or partner, perpetrator of maltreatment and neglect +C2906014|T033|HT|Y07.0|ICD10CM|Spouse or partner, perpetrator of maltreatment and neglect|Spouse or partner, perpetrator of maltreatment and neglect +C2977373|T033|ET|Y07.0|ICD10CM|Spouse or partner, perpetrator of maltreatment and neglect against spouse or partner|Spouse or partner, perpetrator of maltreatment and neglect against spouse or partner +C2906015|T033|AB|Y07.01|ICD10CM|Husband, perpetrator of maltreatment and neglect|Husband, perpetrator of maltreatment and neglect +C2906015|T033|PT|Y07.01|ICD10CM|Husband, perpetrator of maltreatment and neglect|Husband, perpetrator of maltreatment and neglect +C2906016|T033|AB|Y07.02|ICD10CM|Wife, perpetrator of maltreatment and neglect|Wife, perpetrator of maltreatment and neglect +C2906016|T033|PT|Y07.02|ICD10CM|Wife, perpetrator of maltreatment and neglect|Wife, perpetrator of maltreatment and neglect +C2906017|T033|AB|Y07.03|ICD10CM|Male partner, perpetrator of maltreatment and neglect|Male partner, perpetrator of maltreatment and neglect +C2906017|T033|PT|Y07.03|ICD10CM|Male partner, perpetrator of maltreatment and neglect|Male partner, perpetrator of maltreatment and neglect +C2906018|T033|AB|Y07.04|ICD10CM|Female partner, perpetrator of maltreatment and neglect|Female partner, perpetrator of maltreatment and neglect +C2906018|T033|PT|Y07.04|ICD10CM|Female partner, perpetrator of maltreatment and neglect|Female partner, perpetrator of maltreatment and neglect +C0497065|T037|PS|Y07.1|ICD10|By parent|By parent +C0497065|T037|PX|Y07.1|ICD10|Maltreatment by parent|Maltreatment by parent +C2906019|T033|AB|Y07.1|ICD10CM|Parent (adoptive) (biological), perp of maltreat and neglect|Parent (adoptive) (biological), perp of maltreat and neglect +C2906019|T033|HT|Y07.1|ICD10CM|Parent (adoptive) (biological), perpetrator of maltreatment and neglect|Parent (adoptive) (biological), perpetrator of maltreatment and neglect +C2906020|T033|AB|Y07.11|ICD10CM|Biological father, perpetrator of maltreatment and neglect|Biological father, perpetrator of maltreatment and neglect +C2906020|T033|PT|Y07.11|ICD10CM|Biological father, perpetrator of maltreatment and neglect|Biological father, perpetrator of maltreatment and neglect +C2906021|T033|AB|Y07.12|ICD10CM|Biological mother, perpetrator of maltreatment and neglect|Biological mother, perpetrator of maltreatment and neglect +C2906021|T033|PT|Y07.12|ICD10CM|Biological mother, perpetrator of maltreatment and neglect|Biological mother, perpetrator of maltreatment and neglect +C2906022|T033|AB|Y07.13|ICD10CM|Adoptive father, perpetrator of maltreatment and neglect|Adoptive father, perpetrator of maltreatment and neglect +C2906022|T033|PT|Y07.13|ICD10CM|Adoptive father, perpetrator of maltreatment and neglect|Adoptive father, perpetrator of maltreatment and neglect +C2906023|T033|AB|Y07.14|ICD10CM|Adoptive mother, perpetrator of maltreatment and neglect|Adoptive mother, perpetrator of maltreatment and neglect +C2906023|T033|PT|Y07.14|ICD10CM|Adoptive mother, perpetrator of maltreatment and neglect|Adoptive mother, perpetrator of maltreatment and neglect +C0497066|T037|PS|Y07.2|ICD10|By acquaintance or friend|By acquaintance or friend +C0497066|T037|PX|Y07.2|ICD10|Maltreatment by acquaintance or friend|Maltreatment by acquaintance or friend +C0480750|T037|PS|Y07.3|ICD10|By official authorities|By official authorities +C0480750|T037|PX|Y07.3|ICD10|Maltreatment by official authorities|Maltreatment by official authorities +C2906036|T033|HT|Y07.4|ICD10CM|Other family member, perpetrator of maltreatment and neglect|Other family member, perpetrator of maltreatment and neglect +C2906036|T033|AB|Y07.4|ICD10CM|Other family member, perpetrator of maltreatment and neglect|Other family member, perpetrator of maltreatment and neglect +C2919007|T033|AB|Y07.41|ICD10CM|Sibling, perpetrator of maltreatment and neglect|Sibling, perpetrator of maltreatment and neglect +C2919007|T033|HT|Y07.41|ICD10CM|Sibling, perpetrator of maltreatment and neglect|Sibling, perpetrator of maltreatment and neglect +C2906025|T033|AB|Y07.410|ICD10CM|Brother, perpetrator of maltreatment and neglect|Brother, perpetrator of maltreatment and neglect +C2906025|T033|PT|Y07.410|ICD10CM|Brother, perpetrator of maltreatment and neglect|Brother, perpetrator of maltreatment and neglect +C2906026|T033|AB|Y07.411|ICD10CM|Sister, perpetrator of maltreatment and neglect|Sister, perpetrator of maltreatment and neglect +C2906026|T033|PT|Y07.411|ICD10CM|Sister, perpetrator of maltreatment and neglect|Sister, perpetrator of maltreatment and neglect +C2919092|T033|AB|Y07.42|ICD10CM|Foster parent, perpetrator of maltreatment and neglect|Foster parent, perpetrator of maltreatment and neglect +C2919092|T033|HT|Y07.42|ICD10CM|Foster parent, perpetrator of maltreatment and neglect|Foster parent, perpetrator of maltreatment and neglect +C2906027|T033|AB|Y07.420|ICD10CM|Foster father, perpetrator of maltreatment and neglect|Foster father, perpetrator of maltreatment and neglect +C2906027|T033|PT|Y07.420|ICD10CM|Foster father, perpetrator of maltreatment and neglect|Foster father, perpetrator of maltreatment and neglect +C2906028|T033|AB|Y07.421|ICD10CM|Foster mother, perpetrator of maltreatment and neglect|Foster mother, perpetrator of maltreatment and neglect +C2906028|T033|PT|Y07.421|ICD10CM|Foster mother, perpetrator of maltreatment and neglect|Foster mother, perpetrator of maltreatment and neglect +C2906029|T033|AB|Y07.43|ICD10CM|Stepparent or stepsibling, perp of maltreat and neglect|Stepparent or stepsibling, perp of maltreat and neglect +C2906029|T033|HT|Y07.43|ICD10CM|Stepparent or stepsibling, perpetrator of maltreatment and neglect|Stepparent or stepsibling, perpetrator of maltreatment and neglect +C2906030|T033|AB|Y07.430|ICD10CM|Stepfather, perpetrator of maltreatment and neglect|Stepfather, perpetrator of maltreatment and neglect +C2906030|T033|PT|Y07.430|ICD10CM|Stepfather, perpetrator of maltreatment and neglect|Stepfather, perpetrator of maltreatment and neglect +C2906031|T033|PT|Y07.432|ICD10CM|Male friend of parent (co-residing in household), perpetrator of maltreatment and neglect|Male friend of parent (co-residing in household), perpetrator of maltreatment and neglect +C2906031|T033|AB|Y07.432|ICD10CM|Male friend of parent, perpetrator of maltreat and neglect|Male friend of parent, perpetrator of maltreat and neglect +C2906032|T033|AB|Y07.433|ICD10CM|Stepmother, perpetrator of maltreatment and neglect|Stepmother, perpetrator of maltreatment and neglect +C2906032|T033|PT|Y07.433|ICD10CM|Stepmother, perpetrator of maltreatment and neglect|Stepmother, perpetrator of maltreatment and neglect +C2906033|T033|PT|Y07.434|ICD10CM|Female friend of parent (co-residing in household), perpetrator of maltreatment and neglect|Female friend of parent (co-residing in household), perpetrator of maltreatment and neglect +C2906033|T033|AB|Y07.434|ICD10CM|Female friend of parent, perp of maltreat and neglect|Female friend of parent, perp of maltreat and neglect +C2906034|T033|AB|Y07.435|ICD10CM|Stepbrother, perpetrator or maltreatment and neglect|Stepbrother, perpetrator or maltreatment and neglect +C2906034|T033|PT|Y07.435|ICD10CM|Stepbrother, perpetrator or maltreatment and neglect|Stepbrother, perpetrator or maltreatment and neglect +C2906035|T033|AB|Y07.436|ICD10CM|Stepsister, perpetrator of maltreatment and neglect|Stepsister, perpetrator of maltreatment and neglect +C2906035|T033|PT|Y07.436|ICD10CM|Stepsister, perpetrator of maltreatment and neglect|Stepsister, perpetrator of maltreatment and neglect +C2906036|T033|HT|Y07.49|ICD10CM|Other family member, perpetrator of maltreatment and neglect|Other family member, perpetrator of maltreatment and neglect +C2906036|T033|AB|Y07.49|ICD10CM|Other family member, perpetrator of maltreatment and neglect|Other family member, perpetrator of maltreatment and neglect +C2906037|T033|AB|Y07.490|ICD10CM|Male cousin, perpetrator of maltreatment and neglect|Male cousin, perpetrator of maltreatment and neglect +C2906037|T033|PT|Y07.490|ICD10CM|Male cousin, perpetrator of maltreatment and neglect|Male cousin, perpetrator of maltreatment and neglect +C2906038|T033|AB|Y07.491|ICD10CM|Female cousin, perpetrator of maltreatment and neglect|Female cousin, perpetrator of maltreatment and neglect +C2906038|T033|PT|Y07.491|ICD10CM|Female cousin, perpetrator of maltreatment and neglect|Female cousin, perpetrator of maltreatment and neglect +C2906036|T033|AB|Y07.499|ICD10CM|Other family member, perpetrator of maltreatment and neglect|Other family member, perpetrator of maltreatment and neglect +C2906036|T033|PT|Y07.499|ICD10CM|Other family member, perpetrator of maltreatment and neglect|Other family member, perpetrator of maltreatment and neglect +C2919091|T033|AB|Y07.5|ICD10CM|Non-family member, perpetrator of maltreatment and neglect|Non-family member, perpetrator of maltreatment and neglect +C2919091|T033|HT|Y07.5|ICD10CM|Non-family member, perpetrator of maltreatment and neglect|Non-family member, perpetrator of maltreatment and neglect +C2906039|T033|AB|Y07.50|ICD10CM|Unsp non-family member, perpetrator of maltreat and neglect|Unsp non-family member, perpetrator of maltreat and neglect +C2906039|T033|PT|Y07.50|ICD10CM|Unspecified non-family member, perpetrator of maltreatment and neglect|Unspecified non-family member, perpetrator of maltreatment and neglect +C2906040|T033|AB|Y07.51|ICD10CM|Daycare provider, perpetrator of maltreatment and neglect|Daycare provider, perpetrator of maltreatment and neglect +C2906040|T033|HT|Y07.51|ICD10CM|Daycare provider, perpetrator of maltreatment and neglect|Daycare provider, perpetrator of maltreatment and neglect +C2906041|T037|AB|Y07.510|ICD10CM|At-home childcare provider, perp of maltreat and neglect|At-home childcare provider, perp of maltreat and neglect +C2906041|T037|PT|Y07.510|ICD10CM|At-home childcare provider, perpetrator of maltreatment and neglect|At-home childcare provider, perpetrator of maltreatment and neglect +C2906042|T033|AB|Y07.511|ICD10CM|Daycare center childcare prov, perp of maltreat and neglect|Daycare center childcare prov, perp of maltreat and neglect +C2906042|T033|PT|Y07.511|ICD10CM|Daycare center childcare provider, perpetrator of maltreatment and neglect|Daycare center childcare provider, perpetrator of maltreatment and neglect +C2906043|T037|AB|Y07.512|ICD10CM|At-home adultcare provider, perp of maltreat and neglect|At-home adultcare provider, perp of maltreat and neglect +C2906043|T037|PT|Y07.512|ICD10CM|At-home adultcare provider, perpetrator of maltreatment and neglect|At-home adultcare provider, perpetrator of maltreatment and neglect +C2906044|T033|AB|Y07.513|ICD10CM|Adultcare center provider, perp of maltreat and neglect|Adultcare center provider, perp of maltreat and neglect +C2906044|T033|PT|Y07.513|ICD10CM|Adultcare center provider, perpetrator of maltreatment and neglect|Adultcare center provider, perpetrator of maltreatment and neglect +C2906045|T033|AB|Y07.519|ICD10CM|Unsp daycare provider, perpetrator of maltreat and neglect|Unsp daycare provider, perpetrator of maltreat and neglect +C2906045|T033|PT|Y07.519|ICD10CM|Unspecified daycare provider, perpetrator of maltreatment and neglect|Unspecified daycare provider, perpetrator of maltreatment and neglect +C2919096|T033|AB|Y07.52|ICD10CM|Healthcare provider, perpetrator of maltreatment and neglect|Healthcare provider, perpetrator of maltreatment and neglect +C2919096|T033|HT|Y07.52|ICD10CM|Healthcare provider, perpetrator of maltreatment and neglect|Healthcare provider, perpetrator of maltreatment and neglect +C2906046|T033|AB|Y07.521|ICD10CM|Mental health provider, perpetrator of maltreat and neglect|Mental health provider, perpetrator of maltreat and neglect +C2906046|T033|PT|Y07.521|ICD10CM|Mental health provider, perpetrator of maltreatment and neglect|Mental health provider, perpetrator of maltreatment and neglect +C2977374|T033|ET|Y07.528|ICD10CM|Nurse perpetrator of maltreatment and neglect|Nurse perpetrator of maltreatment and neglect +C2977375|T033|ET|Y07.528|ICD10CM|Occupational therapist perpetrator of maltreatment and neglect|Occupational therapist perpetrator of maltreatment and neglect +C2906047|T037|AB|Y07.528|ICD10CM|Oth therapist or healthcare prov, perp of maltreat & neglect|Oth therapist or healthcare prov, perp of maltreat & neglect +C2906047|T037|PT|Y07.528|ICD10CM|Other therapist or healthcare provider, perpetrator of maltreatment and neglect|Other therapist or healthcare provider, perpetrator of maltreatment and neglect +C2977376|T033|ET|Y07.528|ICD10CM|Physical therapist perpetrator of maltreatment and neglect|Physical therapist perpetrator of maltreatment and neglect +C2977377|T033|ET|Y07.528|ICD10CM|Speech therapist perpetrator of maltreatment and neglect|Speech therapist perpetrator of maltreatment and neglect +C2906048|T033|AB|Y07.529|ICD10CM|Unsp healthcare provider, perp of maltreat and neglect|Unsp healthcare provider, perp of maltreat and neglect +C2906048|T033|PT|Y07.529|ICD10CM|Unspecified healthcare provider, perpetrator of maltreatment and neglect|Unspecified healthcare provider, perpetrator of maltreatment and neglect +C2906049|T033|ET|Y07.53|ICD10CM|Coach, perpetrator of maltreatment and neglect|Coach, perpetrator of maltreatment and neglect +C2906050|T033|AB|Y07.53|ICD10CM|Teacher or instructor, perpetrator of maltreat and neglect|Teacher or instructor, perpetrator of maltreat and neglect +C2906050|T033|PT|Y07.53|ICD10CM|Teacher or instructor, perpetrator of maltreatment and neglect|Teacher or instructor, perpetrator of maltreatment and neglect +C2906051|T033|AB|Y07.59|ICD10CM|Oth non-family member, perpetrator of maltreat and neglect|Oth non-family member, perpetrator of maltreat and neglect +C2906051|T033|PT|Y07.59|ICD10CM|Other non-family member, perpetrator of maltreatment and neglect|Other non-family member, perpetrator of maltreatment and neglect +C4702978|T033|PT|Y07.6|ICD10CM|Multiple perpetrators of maltreatment and neglect|Multiple perpetrators of maltreatment and neglect +C4702978|T033|AB|Y07.6|ICD10CM|Multiple perpetrators of maltreatment and neglect|Multiple perpetrators of maltreatment and neglect +C0497068|T037|PS|Y07.8|ICD10|By other specified persons|By other specified persons +C0497068|T037|PX|Y07.8|ICD10|Maltreatment by other specified persons|Maltreatment by other specified persons +C0497069|T037|PS|Y07.9|ICD10|By unspecified person|By unspecified person +C0497069|T037|PX|Y07.9|ICD10|Maltreatment by unspecified person|Maltreatment by unspecified person +C2977378|T033|AB|Y07.9|ICD10CM|Unspecified perpetrator of maltreatment and neglect|Unspecified perpetrator of maltreatment and neglect +C2977378|T033|PT|Y07.9|ICD10CM|Unspecified perpetrator of maltreatment and neglect|Unspecified perpetrator of maltreatment and neglect +C0262030|T037|HT|Y08|ICD10CM|Assault by other specified means|Assault by other specified means +C0262030|T037|AB|Y08|ICD10CM|Assault by other specified means|Assault by other specified means +C0262030|T037|PT|Y08|ICD10|Assault by other specified means|Assault by other specified means +C2906052|T037|AB|Y08.0|ICD10CM|Assault by strike by sport equipment|Assault by strike by sport equipment +C2906052|T037|HT|Y08.0|ICD10CM|Assault by strike by sport equipment|Assault by strike by sport equipment +C2906053|T037|AB|Y08.01|ICD10CM|Assault by strike by hockey stick|Assault by strike by hockey stick +C2906053|T037|HT|Y08.01|ICD10CM|Assault by strike by hockey stick|Assault by strike by hockey stick +C2906054|T037|AB|Y08.01XA|ICD10CM|Assault by strike by hockey stick, initial encounter|Assault by strike by hockey stick, initial encounter +C2906054|T037|PT|Y08.01XA|ICD10CM|Assault by strike by hockey stick, initial encounter|Assault by strike by hockey stick, initial encounter +C2906055|T037|AB|Y08.01XD|ICD10CM|Assault by strike by hockey stick, subsequent encounter|Assault by strike by hockey stick, subsequent encounter +C2906055|T037|PT|Y08.01XD|ICD10CM|Assault by strike by hockey stick, subsequent encounter|Assault by strike by hockey stick, subsequent encounter +C2906056|T037|AB|Y08.01XS|ICD10CM|Assault by strike by hockey stick, sequela|Assault by strike by hockey stick, sequela +C2906056|T037|PT|Y08.01XS|ICD10CM|Assault by strike by hockey stick, sequela|Assault by strike by hockey stick, sequela +C2906057|T037|AB|Y08.02|ICD10CM|Assault by strike by baseball bat|Assault by strike by baseball bat +C2906057|T037|HT|Y08.02|ICD10CM|Assault by strike by baseball bat|Assault by strike by baseball bat +C2906058|T037|AB|Y08.02XA|ICD10CM|Assault by strike by baseball bat, initial encounter|Assault by strike by baseball bat, initial encounter +C2906058|T037|PT|Y08.02XA|ICD10CM|Assault by strike by baseball bat, initial encounter|Assault by strike by baseball bat, initial encounter +C2906059|T037|AB|Y08.02XD|ICD10CM|Assault by strike by baseball bat, subsequent encounter|Assault by strike by baseball bat, subsequent encounter +C2906059|T037|PT|Y08.02XD|ICD10CM|Assault by strike by baseball bat, subsequent encounter|Assault by strike by baseball bat, subsequent encounter +C2906060|T037|AB|Y08.02XS|ICD10CM|Assault by strike by baseball bat, sequela|Assault by strike by baseball bat, sequela +C2906060|T037|PT|Y08.02XS|ICD10CM|Assault by strike by baseball bat, sequela|Assault by strike by baseball bat, sequela +C2906061|T037|AB|Y08.09|ICD10CM|Assault by strike by other specified type of sport equipment|Assault by strike by other specified type of sport equipment +C2906061|T037|HT|Y08.09|ICD10CM|Assault by strike by other specified type of sport equipment|Assault by strike by other specified type of sport equipment +C2977379|T037|AB|Y08.09XA|ICD10CM|Assault by strike by oth type of sport equipment, init|Assault by strike by oth type of sport equipment, init +C2977379|T037|PT|Y08.09XA|ICD10CM|Assault by strike by other specified type of sport equipment, initial encounter|Assault by strike by other specified type of sport equipment, initial encounter +C2977380|T037|AB|Y08.09XD|ICD10CM|Assault by strike by oth type of sport equipment, subs|Assault by strike by oth type of sport equipment, subs +C2977380|T037|PT|Y08.09XD|ICD10CM|Assault by strike by other specified type of sport equipment, subsequent encounter|Assault by strike by other specified type of sport equipment, subsequent encounter +C2977381|T037|AB|Y08.09XS|ICD10CM|Assault by strike by oth type of sport equipment, sequela|Assault by strike by oth type of sport equipment, sequela +C2977381|T037|PT|Y08.09XS|ICD10CM|Assault by strike by other specified type of sport equipment, sequela|Assault by strike by other specified type of sport equipment, sequela +C0262030|T037|HT|Y08.8|ICD10CM|Assault by other specified means|Assault by other specified means +C0262030|T037|AB|Y08.8|ICD10CM|Assault by other specified means|Assault by other specified means +C2906065|T037|AB|Y08.81|ICD10CM|Assault by crashing of aircraft|Assault by crashing of aircraft +C2906065|T037|HT|Y08.81|ICD10CM|Assault by crashing of aircraft|Assault by crashing of aircraft +C2906066|T037|AB|Y08.81XA|ICD10CM|Assault by crashing of aircraft, initial encounter|Assault by crashing of aircraft, initial encounter +C2906066|T037|PT|Y08.81XA|ICD10CM|Assault by crashing of aircraft, initial encounter|Assault by crashing of aircraft, initial encounter +C2906067|T037|AB|Y08.81XD|ICD10CM|Assault by crashing of aircraft, subsequent encounter|Assault by crashing of aircraft, subsequent encounter +C2906067|T037|PT|Y08.81XD|ICD10CM|Assault by crashing of aircraft, subsequent encounter|Assault by crashing of aircraft, subsequent encounter +C2906068|T037|AB|Y08.81XS|ICD10CM|Assault by crashing of aircraft, sequela|Assault by crashing of aircraft, sequela +C2906068|T037|PT|Y08.81XS|ICD10CM|Assault by crashing of aircraft, sequela|Assault by crashing of aircraft, sequela +C0262030|T037|HT|Y08.89|ICD10CM|Assault by other specified means|Assault by other specified means +C0262030|T037|AB|Y08.89|ICD10CM|Assault by other specified means|Assault by other specified means +C2906069|T037|AB|Y08.89XA|ICD10CM|Assault by other specified means, initial encounter|Assault by other specified means, initial encounter +C2906069|T037|PT|Y08.89XA|ICD10CM|Assault by other specified means, initial encounter|Assault by other specified means, initial encounter +C2906070|T037|AB|Y08.89XD|ICD10CM|Assault by other specified means, subsequent encounter|Assault by other specified means, subsequent encounter +C2906070|T037|PT|Y08.89XD|ICD10CM|Assault by other specified means, subsequent encounter|Assault by other specified means, subsequent encounter +C2906071|T037|AB|Y08.89XS|ICD10CM|Assault by other specified means, sequela|Assault by other specified means, sequela +C2906071|T037|PT|Y08.89XS|ICD10CM|Assault by other specified means, sequela|Assault by other specified means, sequela +C0418339|T037|ET|Y09|ICD10CM|Assassination (attempted) NOS|Assassination (attempted) NOS +C0004063|T037|PT|Y09|ICD10CM|Assault by unspecified means|Assault by unspecified means +C0004063|T037|AB|Y09|ICD10CM|Assault by unspecified means|Assault by unspecified means +C0004063|T037|PT|Y09|ICD10|Assault by unspecified means|Assault by unspecified means +C0277662|T033|ET|Y09|ICD10CM|Homicide (attempted) NOS|Homicide (attempted) NOS +C2977382|T033|ET|Y09|ICD10CM|Manslaughter (attempted) NOS|Manslaughter (attempted) NOS +C0418337|T033|ET|Y09|ICD10CM|Murder (attempted) NOS|Murder (attempted) NOS +C0480773|T037|HT|Y10-Y34.9|ICD10|Event of undetermined intent|Event of undetermined intent +C0496520|T037|PT|Y13|ICD10|Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent|Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent +C0480874|T037|PT|Y15|ICD10|Poisoning by and exposure to alcohol, undetermined intent|Poisoning by and exposure to alcohol, undetermined intent +C0480896|T037|PT|Y17|ICD10AE|Poisoning by and exposure to other gases and vapors, undetermined intent|Poisoning by and exposure to other gases and vapors, undetermined intent +C0480896|T037|PT|Y17|ICD10|Poisoning by and exposure to other gases and vapours, undetermined intent|Poisoning by and exposure to other gases and vapours, undetermined intent +C0480907|T037|PT|Y18|ICD10|Poisoning by and exposure to pesticides, undetermined intent|Poisoning by and exposure to pesticides, undetermined intent +C0480929|T037|PT|Y20|ICD10|Hanging, strangulation and suffocation, undetermined intent|Hanging, strangulation and suffocation, undetermined intent +C0496521|T037|PT|Y21|ICD10|Drowning and submersion, undetermined intent|Drowning and submersion, undetermined intent +C0496521|T037|HT|Y21|ICD10CM|Drowning and submersion, undetermined intent|Drowning and submersion, undetermined intent +C0496521|T037|AB|Y21|ICD10CM|Drowning and submersion, undetermined intent|Drowning and submersion, undetermined intent +C2977395|T037|HT|Y21-Y33|ICD10CM|Event of undetermined intent (Y21-Y33)|Event of undetermined intent (Y21-Y33) +C2906072|T037|AB|Y21.0|ICD10CM|Drown while in bathtub, undetermined intent|Drown while in bathtub, undetermined intent +C2906072|T037|HT|Y21.0|ICD10CM|Drowning and submersion while in bathtub, undetermined intent|Drowning and submersion while in bathtub, undetermined intent +C2906073|T037|AB|Y21.0XXA|ICD10CM|Drown while in bathtub, undetermined intent, init|Drown while in bathtub, undetermined intent, init +C2906073|T037|PT|Y21.0XXA|ICD10CM|Drowning and submersion while in bathtub, undetermined intent, initial encounter|Drowning and submersion while in bathtub, undetermined intent, initial encounter +C2906074|T037|AB|Y21.0XXD|ICD10CM|Drown while in bathtub, undetermined intent, subs|Drown while in bathtub, undetermined intent, subs +C2906074|T037|PT|Y21.0XXD|ICD10CM|Drowning and submersion while in bathtub, undetermined intent, subsequent encounter|Drowning and submersion while in bathtub, undetermined intent, subsequent encounter +C2906075|T037|AB|Y21.0XXS|ICD10CM|Drown while in bathtub, undetermined intent, sequela|Drown while in bathtub, undetermined intent, sequela +C2906075|T037|PT|Y21.0XXS|ICD10CM|Drowning and submersion while in bathtub, undetermined intent, sequela|Drowning and submersion while in bathtub, undetermined intent, sequela +C2906076|T037|AB|Y21.1|ICD10CM|Drown after fall into bathtub, undetermined intent|Drown after fall into bathtub, undetermined intent +C2906076|T037|HT|Y21.1|ICD10CM|Drowning and submersion after fall into bathtub, undetermined intent|Drowning and submersion after fall into bathtub, undetermined intent +C2906077|T037|AB|Y21.1XXA|ICD10CM|Drown after fall into bathtub, undetermined intent, init|Drown after fall into bathtub, undetermined intent, init +C2906077|T037|PT|Y21.1XXA|ICD10CM|Drowning and submersion after fall into bathtub, undetermined intent, initial encounter|Drowning and submersion after fall into bathtub, undetermined intent, initial encounter +C2906078|T037|AB|Y21.1XXD|ICD10CM|Drown after fall into bathtub, undetermined intent, subs|Drown after fall into bathtub, undetermined intent, subs +C2906078|T037|PT|Y21.1XXD|ICD10CM|Drowning and submersion after fall into bathtub, undetermined intent, subsequent encounter|Drowning and submersion after fall into bathtub, undetermined intent, subsequent encounter +C2906079|T037|AB|Y21.1XXS|ICD10CM|Drown after fall into bathtub, undetermined intent, sequela|Drown after fall into bathtub, undetermined intent, sequela +C2906079|T037|PT|Y21.1XXS|ICD10CM|Drowning and submersion after fall into bathtub, undetermined intent, sequela|Drowning and submersion after fall into bathtub, undetermined intent, sequela +C2906080|T037|AB|Y21.2|ICD10CM|Drown while in swimming pool, undetermined intent|Drown while in swimming pool, undetermined intent +C2906080|T037|HT|Y21.2|ICD10CM|Drowning and submersion while in swimming pool, undetermined intent|Drowning and submersion while in swimming pool, undetermined intent +C2906081|T037|AB|Y21.2XXA|ICD10CM|Drown while in swimming pool, undetermined intent, init|Drown while in swimming pool, undetermined intent, init +C2906081|T037|PT|Y21.2XXA|ICD10CM|Drowning and submersion while in swimming pool, undetermined intent, initial encounter|Drowning and submersion while in swimming pool, undetermined intent, initial encounter +C2906082|T037|AB|Y21.2XXD|ICD10CM|Drown while in swimming pool, undetermined intent, subs|Drown while in swimming pool, undetermined intent, subs +C2906082|T037|PT|Y21.2XXD|ICD10CM|Drowning and submersion while in swimming pool, undetermined intent, subsequent encounter|Drowning and submersion while in swimming pool, undetermined intent, subsequent encounter +C2906083|T037|AB|Y21.2XXS|ICD10CM|Drown while in swimming pool, undetermined intent, sequela|Drown while in swimming pool, undetermined intent, sequela +C2906083|T037|PT|Y21.2XXS|ICD10CM|Drowning and submersion while in swimming pool, undetermined intent, sequela|Drowning and submersion while in swimming pool, undetermined intent, sequela +C2906084|T037|AB|Y21.3|ICD10CM|Drown after fall into swimming pool, undetermined intent|Drown after fall into swimming pool, undetermined intent +C2906084|T037|HT|Y21.3|ICD10CM|Drowning and submersion after fall into swimming pool, undetermined intent|Drowning and submersion after fall into swimming pool, undetermined intent +C2906085|T037|AB|Y21.3XXA|ICD10CM|Drown after fall into swimming pool, undet intent, init|Drown after fall into swimming pool, undet intent, init +C2906085|T037|PT|Y21.3XXA|ICD10CM|Drowning and submersion after fall into swimming pool, undetermined intent, initial encounter|Drowning and submersion after fall into swimming pool, undetermined intent, initial encounter +C2906086|T037|AB|Y21.3XXD|ICD10CM|Drown after fall into swimming pool, undet intent, subs|Drown after fall into swimming pool, undet intent, subs +C2906086|T037|PT|Y21.3XXD|ICD10CM|Drowning and submersion after fall into swimming pool, undetermined intent, subsequent encounter|Drowning and submersion after fall into swimming pool, undetermined intent, subsequent encounter +C2906087|T037|AB|Y21.3XXS|ICD10CM|Drown after fall into swimming pool, undet intent, sequela|Drown after fall into swimming pool, undet intent, sequela +C2906087|T037|PT|Y21.3XXS|ICD10CM|Drowning and submersion after fall into swimming pool, undetermined intent, sequela|Drowning and submersion after fall into swimming pool, undetermined intent, sequela +C2906088|T037|AB|Y21.4|ICD10CM|Drown in natural water, undetermined intent|Drown in natural water, undetermined intent +C2906088|T037|HT|Y21.4|ICD10CM|Drowning and submersion in natural water, undetermined intent|Drowning and submersion in natural water, undetermined intent +C2906089|T037|AB|Y21.4XXA|ICD10CM|Drown in natural water, undetermined intent, init|Drown in natural water, undetermined intent, init +C2906089|T037|PT|Y21.4XXA|ICD10CM|Drowning and submersion in natural water, undetermined intent, initial encounter|Drowning and submersion in natural water, undetermined intent, initial encounter +C2906090|T037|AB|Y21.4XXD|ICD10CM|Drown in natural water, undetermined intent, subs|Drown in natural water, undetermined intent, subs +C2906090|T037|PT|Y21.4XXD|ICD10CM|Drowning and submersion in natural water, undetermined intent, subsequent encounter|Drowning and submersion in natural water, undetermined intent, subsequent encounter +C2906091|T037|AB|Y21.4XXS|ICD10CM|Drown in natural water, undetermined intent, sequela|Drown in natural water, undetermined intent, sequela +C2906091|T037|PT|Y21.4XXS|ICD10CM|Drowning and submersion in natural water, undetermined intent, sequela|Drowning and submersion in natural water, undetermined intent, sequela +C2906092|T037|AB|Y21.8|ICD10CM|Other drowning and submersion, undetermined intent|Other drowning and submersion, undetermined intent +C2906092|T037|HT|Y21.8|ICD10CM|Other drowning and submersion, undetermined intent|Other drowning and submersion, undetermined intent +C2906093|T037|AB|Y21.8XXA|ICD10CM|Oth drowning and submersion, undetermined intent, init|Oth drowning and submersion, undetermined intent, init +C2906093|T037|PT|Y21.8XXA|ICD10CM|Other drowning and submersion, undetermined intent, initial encounter|Other drowning and submersion, undetermined intent, initial encounter +C2906094|T037|AB|Y21.8XXD|ICD10CM|Oth drowning and submersion, undetermined intent, subs|Oth drowning and submersion, undetermined intent, subs +C2906094|T037|PT|Y21.8XXD|ICD10CM|Other drowning and submersion, undetermined intent, subsequent encounter|Other drowning and submersion, undetermined intent, subsequent encounter +C2906095|T037|PT|Y21.8XXS|ICD10CM|Other drowning and submersion, undetermined intent, sequela|Other drowning and submersion, undetermined intent, sequela +C2906095|T037|AB|Y21.8XXS|ICD10CM|Other drowning and submersion, undetermined intent, sequela|Other drowning and submersion, undetermined intent, sequela +C2906096|T037|AB|Y21.9|ICD10CM|Unspecified drowning and submersion, undetermined intent|Unspecified drowning and submersion, undetermined intent +C2906096|T037|HT|Y21.9|ICD10CM|Unspecified drowning and submersion, undetermined intent|Unspecified drowning and submersion, undetermined intent +C2906097|T037|AB|Y21.9XXA|ICD10CM|Unsp drowning and submersion, undetermined intent, init|Unsp drowning and submersion, undetermined intent, init +C2906097|T037|PT|Y21.9XXA|ICD10CM|Unspecified drowning and submersion, undetermined intent, initial encounter|Unspecified drowning and submersion, undetermined intent, initial encounter +C2906098|T037|AB|Y21.9XXD|ICD10CM|Unsp drowning and submersion, undetermined intent, subs|Unsp drowning and submersion, undetermined intent, subs +C2906098|T037|PT|Y21.9XXD|ICD10CM|Unspecified drowning and submersion, undetermined intent, subsequent encounter|Unspecified drowning and submersion, undetermined intent, subsequent encounter +C2906099|T037|AB|Y21.9XXS|ICD10CM|Unsp drowning and submersion, undetermined intent, sequela|Unsp drowning and submersion, undetermined intent, sequela +C2906099|T037|PT|Y21.9XXS|ICD10CM|Unspecified drowning and submersion, undetermined intent, sequela|Unspecified drowning and submersion, undetermined intent, sequela +C2906100|T037|ET|Y22|ICD10CM|Discharge of gun for single hand use, undetermined intent|Discharge of gun for single hand use, undetermined intent +C2906101|T037|ET|Y22|ICD10CM|Discharge of pistol, undetermined intent|Discharge of pistol, undetermined intent +C2906102|T037|ET|Y22|ICD10CM|Discharge of revolver, undetermined intent|Discharge of revolver, undetermined intent +C0480950|T037|HT|Y22|ICD10CM|Handgun discharge, undetermined intent|Handgun discharge, undetermined intent +C0480950|T037|AB|Y22|ICD10CM|Handgun discharge, undetermined intent|Handgun discharge, undetermined intent +C0480950|T037|PS|Y22|ICD10|Handgun discharge, undetermined intent|Handgun discharge, undetermined intent +C0480950|T037|PX|Y22|ICD10|Handgun discharge, undetermined intent causing accidental injury|Handgun discharge, undetermined intent causing accidental injury +C2906103|T037|PT|Y22.XXXA|ICD10CM|Handgun discharge, undetermined intent, initial encounter|Handgun discharge, undetermined intent, initial encounter +C2906103|T037|AB|Y22.XXXA|ICD10CM|Handgun discharge, undetermined intent, initial encounter|Handgun discharge, undetermined intent, initial encounter +C2906104|T037|AB|Y22.XXXD|ICD10CM|Handgun discharge, undetermined intent, subsequent encounter|Handgun discharge, undetermined intent, subsequent encounter +C2906104|T037|PT|Y22.XXXD|ICD10CM|Handgun discharge, undetermined intent, subsequent encounter|Handgun discharge, undetermined intent, subsequent encounter +C2906105|T037|PT|Y22.XXXS|ICD10CM|Handgun discharge, undetermined intent, sequela|Handgun discharge, undetermined intent, sequela +C2906105|T037|AB|Y22.XXXS|ICD10CM|Handgun discharge, undetermined intent, sequela|Handgun discharge, undetermined intent, sequela +C0480961|T037|AB|Y23|ICD10CM|Rifle, shotgun and larger firearm discharge, undet intent|Rifle, shotgun and larger firearm discharge, undet intent +C0480961|T037|HT|Y23|ICD10CM|Rifle, shotgun and larger firearm discharge, undetermined intent|Rifle, shotgun and larger firearm discharge, undetermined intent +C0480961|T037|PS|Y23|ICD10|Rifle, shotgun and larger firearm discharge, undetermined intent|Rifle, shotgun and larger firearm discharge, undetermined intent +C0480961|T037|PX|Y23|ICD10|Rifle, shotgun and larger firearm discharge, undetermined intent causing accidental injury|Rifle, shotgun and larger firearm discharge, undetermined intent causing accidental injury +C0840946|T037|HT|Y23.0|ICD10CM|Shotgun discharge, undetermined intent|Shotgun discharge, undetermined intent +C0840946|T037|AB|Y23.0|ICD10CM|Shotgun discharge, undetermined intent|Shotgun discharge, undetermined intent +C2906106|T037|PT|Y23.0XXA|ICD10CM|Shotgun discharge, undetermined intent, initial encounter|Shotgun discharge, undetermined intent, initial encounter +C2906106|T037|AB|Y23.0XXA|ICD10CM|Shotgun discharge, undetermined intent, initial encounter|Shotgun discharge, undetermined intent, initial encounter +C2906107|T037|AB|Y23.0XXD|ICD10CM|Shotgun discharge, undetermined intent, subsequent encounter|Shotgun discharge, undetermined intent, subsequent encounter +C2906107|T037|PT|Y23.0XXD|ICD10CM|Shotgun discharge, undetermined intent, subsequent encounter|Shotgun discharge, undetermined intent, subsequent encounter +C2906108|T037|PT|Y23.0XXS|ICD10CM|Shotgun discharge, undetermined intent, sequela|Shotgun discharge, undetermined intent, sequela +C2906108|T037|AB|Y23.0XXS|ICD10CM|Shotgun discharge, undetermined intent, sequela|Shotgun discharge, undetermined intent, sequela +C2906109|T037|AB|Y23.1|ICD10CM|Hunting rifle discharge, undetermined intent|Hunting rifle discharge, undetermined intent +C2906109|T037|HT|Y23.1|ICD10CM|Hunting rifle discharge, undetermined intent|Hunting rifle discharge, undetermined intent +C2906110|T037|AB|Y23.1XXA|ICD10CM|Hunting rifle discharge, undetermined intent, init encntr|Hunting rifle discharge, undetermined intent, init encntr +C2906110|T037|PT|Y23.1XXA|ICD10CM|Hunting rifle discharge, undetermined intent, initial encounter|Hunting rifle discharge, undetermined intent, initial encounter +C2906111|T037|AB|Y23.1XXD|ICD10CM|Hunting rifle discharge, undetermined intent, subs encntr|Hunting rifle discharge, undetermined intent, subs encntr +C2906111|T037|PT|Y23.1XXD|ICD10CM|Hunting rifle discharge, undetermined intent, subsequent encounter|Hunting rifle discharge, undetermined intent, subsequent encounter +C2906112|T037|AB|Y23.1XXS|ICD10CM|Hunting rifle discharge, undetermined intent, sequela|Hunting rifle discharge, undetermined intent, sequela +C2906112|T037|PT|Y23.1XXS|ICD10CM|Hunting rifle discharge, undetermined intent, sequela|Hunting rifle discharge, undetermined intent, sequela +C2906113|T037|AB|Y23.2|ICD10CM|Military firearm discharge, undetermined intent|Military firearm discharge, undetermined intent +C2906113|T037|HT|Y23.2|ICD10CM|Military firearm discharge, undetermined intent|Military firearm discharge, undetermined intent +C2906114|T037|AB|Y23.2XXA|ICD10CM|Military firearm discharge, undetermined intent, init encntr|Military firearm discharge, undetermined intent, init encntr +C2906114|T037|PT|Y23.2XXA|ICD10CM|Military firearm discharge, undetermined intent, initial encounter|Military firearm discharge, undetermined intent, initial encounter +C2906115|T037|AB|Y23.2XXD|ICD10CM|Military firearm discharge, undetermined intent, subs encntr|Military firearm discharge, undetermined intent, subs encntr +C2906115|T037|PT|Y23.2XXD|ICD10CM|Military firearm discharge, undetermined intent, subsequent encounter|Military firearm discharge, undetermined intent, subsequent encounter +C2906116|T037|PT|Y23.2XXS|ICD10CM|Military firearm discharge, undetermined intent, sequela|Military firearm discharge, undetermined intent, sequela +C2906116|T037|AB|Y23.2XXS|ICD10CM|Military firearm discharge, undetermined intent, sequela|Military firearm discharge, undetermined intent, sequela +C2906117|T037|AB|Y23.3|ICD10CM|Machine gun discharge, undetermined intent|Machine gun discharge, undetermined intent +C2906117|T037|HT|Y23.3|ICD10CM|Machine gun discharge, undetermined intent|Machine gun discharge, undetermined intent +C2906118|T037|AB|Y23.3XXA|ICD10CM|Machine gun discharge, undetermined intent, init encntr|Machine gun discharge, undetermined intent, init encntr +C2906118|T037|PT|Y23.3XXA|ICD10CM|Machine gun discharge, undetermined intent, initial encounter|Machine gun discharge, undetermined intent, initial encounter +C2906119|T037|AB|Y23.3XXD|ICD10CM|Machine gun discharge, undetermined intent, subs encntr|Machine gun discharge, undetermined intent, subs encntr +C2906119|T037|PT|Y23.3XXD|ICD10CM|Machine gun discharge, undetermined intent, subsequent encounter|Machine gun discharge, undetermined intent, subsequent encounter +C2906120|T037|AB|Y23.3XXS|ICD10CM|Machine gun discharge, undetermined intent, sequela|Machine gun discharge, undetermined intent, sequela +C2906120|T037|PT|Y23.3XXS|ICD10CM|Machine gun discharge, undetermined intent, sequela|Machine gun discharge, undetermined intent, sequela +C2906121|T037|AB|Y23.8|ICD10CM|Other larger firearm discharge, undetermined intent|Other larger firearm discharge, undetermined intent +C2906121|T037|HT|Y23.8|ICD10CM|Other larger firearm discharge, undetermined intent|Other larger firearm discharge, undetermined intent +C2906122|T037|AB|Y23.8XXA|ICD10CM|Oth larger firearm discharge, undetermined intent, init|Oth larger firearm discharge, undetermined intent, init +C2906122|T037|PT|Y23.8XXA|ICD10CM|Other larger firearm discharge, undetermined intent, initial encounter|Other larger firearm discharge, undetermined intent, initial encounter +C2906123|T037|AB|Y23.8XXD|ICD10CM|Oth larger firearm discharge, undetermined intent, subs|Oth larger firearm discharge, undetermined intent, subs +C2906123|T037|PT|Y23.8XXD|ICD10CM|Other larger firearm discharge, undetermined intent, subsequent encounter|Other larger firearm discharge, undetermined intent, subsequent encounter +C2906124|T037|AB|Y23.8XXS|ICD10CM|Other larger firearm discharge, undetermined intent, sequela|Other larger firearm discharge, undetermined intent, sequela +C2906124|T037|PT|Y23.8XXS|ICD10CM|Other larger firearm discharge, undetermined intent, sequela|Other larger firearm discharge, undetermined intent, sequela +C2906125|T037|AB|Y23.9|ICD10CM|Unspecified larger firearm discharge, undetermined intent|Unspecified larger firearm discharge, undetermined intent +C2906125|T037|HT|Y23.9|ICD10CM|Unspecified larger firearm discharge, undetermined intent|Unspecified larger firearm discharge, undetermined intent +C2906126|T037|AB|Y23.9XXA|ICD10CM|Unsp larger firearm discharge, undetermined intent, init|Unsp larger firearm discharge, undetermined intent, init +C2906126|T037|PT|Y23.9XXA|ICD10CM|Unspecified larger firearm discharge, undetermined intent, initial encounter|Unspecified larger firearm discharge, undetermined intent, initial encounter +C2906127|T037|AB|Y23.9XXD|ICD10CM|Unsp larger firearm discharge, undetermined intent, subs|Unsp larger firearm discharge, undetermined intent, subs +C2906127|T037|PT|Y23.9XXD|ICD10CM|Unspecified larger firearm discharge, undetermined intent, subsequent encounter|Unspecified larger firearm discharge, undetermined intent, subsequent encounter +C2906128|T037|AB|Y23.9XXS|ICD10CM|Unsp larger firearm discharge, undetermined intent, sequela|Unsp larger firearm discharge, undetermined intent, sequela +C2906128|T037|PT|Y23.9XXS|ICD10CM|Unspecified larger firearm discharge, undetermined intent, sequela|Unspecified larger firearm discharge, undetermined intent, sequela +C0480972|T037|PS|Y24|ICD10|Other and unspecified firearm discharge, undetermined intent|Other and unspecified firearm discharge, undetermined intent +C0480972|T037|HT|Y24|ICD10CM|Other and unspecified firearm discharge, undetermined intent|Other and unspecified firearm discharge, undetermined intent +C0480972|T037|AB|Y24|ICD10CM|Other and unspecified firearm discharge, undetermined intent|Other and unspecified firearm discharge, undetermined intent +C0480972|T037|PX|Y24|ICD10|Other and unspecified firearm discharge, undetermined intent causing accidental injury|Other and unspecified firearm discharge, undetermined intent causing accidental injury +C2906131|T037|AB|Y24.0|ICD10CM|Airgun discharge, undetermined intent|Airgun discharge, undetermined intent +C2906131|T037|HT|Y24.0|ICD10CM|Airgun discharge, undetermined intent|Airgun discharge, undetermined intent +C2906129|T037|ET|Y24.0|ICD10CM|BB gun discharge, undetermined intent|BB gun discharge, undetermined intent +C2906130|T037|ET|Y24.0|ICD10CM|Pellet gun discharge, undetermined intent|Pellet gun discharge, undetermined intent +C2906132|T037|PT|Y24.0XXA|ICD10CM|Airgun discharge, undetermined intent, initial encounter|Airgun discharge, undetermined intent, initial encounter +C2906132|T037|AB|Y24.0XXA|ICD10CM|Airgun discharge, undetermined intent, initial encounter|Airgun discharge, undetermined intent, initial encounter +C2906133|T037|AB|Y24.0XXD|ICD10CM|Airgun discharge, undetermined intent, subsequent encounter|Airgun discharge, undetermined intent, subsequent encounter +C2906133|T037|PT|Y24.0XXD|ICD10CM|Airgun discharge, undetermined intent, subsequent encounter|Airgun discharge, undetermined intent, subsequent encounter +C2906134|T037|PT|Y24.0XXS|ICD10CM|Airgun discharge, undetermined intent, sequela|Airgun discharge, undetermined intent, sequela +C2906134|T037|AB|Y24.0XXS|ICD10CM|Airgun discharge, undetermined intent, sequela|Airgun discharge, undetermined intent, sequela +C2906137|T037|AB|Y24.8|ICD10CM|Other firearm discharge, undetermined intent|Other firearm discharge, undetermined intent +C2906137|T037|HT|Y24.8|ICD10CM|Other firearm discharge, undetermined intent|Other firearm discharge, undetermined intent +C2906135|T037|ET|Y24.8|ICD10CM|Paintball gun discharge, undetermined intent|Paintball gun discharge, undetermined intent +C2906136|T037|ET|Y24.8|ICD10CM|Very pistol [flare] discharge, undetermined intent|Very pistol [flare] discharge, undetermined intent +C2906138|T037|AB|Y24.8XXA|ICD10CM|Other firearm discharge, undetermined intent, init encntr|Other firearm discharge, undetermined intent, init encntr +C2906138|T037|PT|Y24.8XXA|ICD10CM|Other firearm discharge, undetermined intent, initial encounter|Other firearm discharge, undetermined intent, initial encounter +C2906139|T037|AB|Y24.8XXD|ICD10CM|Other firearm discharge, undetermined intent, subs encntr|Other firearm discharge, undetermined intent, subs encntr +C2906139|T037|PT|Y24.8XXD|ICD10CM|Other firearm discharge, undetermined intent, subsequent encounter|Other firearm discharge, undetermined intent, subsequent encounter +C2906140|T037|PT|Y24.8XXS|ICD10CM|Other firearm discharge, undetermined intent, sequela|Other firearm discharge, undetermined intent, sequela +C2906140|T037|AB|Y24.8XXS|ICD10CM|Other firearm discharge, undetermined intent, sequela|Other firearm discharge, undetermined intent, sequela +C2906141|T037|AB|Y24.9|ICD10CM|Unspecified firearm discharge, undetermined intent|Unspecified firearm discharge, undetermined intent +C2906141|T037|HT|Y24.9|ICD10CM|Unspecified firearm discharge, undetermined intent|Unspecified firearm discharge, undetermined intent +C2906142|T037|AB|Y24.9XXA|ICD10CM|Unsp firearm discharge, undetermined intent, init encntr|Unsp firearm discharge, undetermined intent, init encntr +C2906142|T037|PT|Y24.9XXA|ICD10CM|Unspecified firearm discharge, undetermined intent, initial encounter|Unspecified firearm discharge, undetermined intent, initial encounter +C2906143|T037|AB|Y24.9XXD|ICD10CM|Unsp firearm discharge, undetermined intent, subs encntr|Unsp firearm discharge, undetermined intent, subs encntr +C2906143|T037|PT|Y24.9XXD|ICD10CM|Unspecified firearm discharge, undetermined intent, subsequent encounter|Unspecified firearm discharge, undetermined intent, subsequent encounter +C2906144|T037|PT|Y24.9XXS|ICD10CM|Unspecified firearm discharge, undetermined intent, sequela|Unspecified firearm discharge, undetermined intent, sequela +C2906144|T037|AB|Y24.9XXS|ICD10CM|Unspecified firearm discharge, undetermined intent, sequela|Unspecified firearm discharge, undetermined intent, sequela +C0480983|T037|PS|Y25|ICD10|Contact with explosive material, undetermined intent|Contact with explosive material, undetermined intent +C0480983|T037|HT|Y25|ICD10CM|Contact with explosive material, undetermined intent|Contact with explosive material, undetermined intent +C0480983|T037|AB|Y25|ICD10CM|Contact with explosive material, undetermined intent|Contact with explosive material, undetermined intent +C0480983|T037|PX|Y25|ICD10|Contact with explosive material, undetermined intent causing accidental injury|Contact with explosive material, undetermined intent causing accidental injury +C2906145|T037|AB|Y25.XXXA|ICD10CM|Contact w explosive material, undetermined intent, init|Contact w explosive material, undetermined intent, init +C2906145|T037|PT|Y25.XXXA|ICD10CM|Contact with explosive material, undetermined intent, initial encounter|Contact with explosive material, undetermined intent, initial encounter +C2906146|T037|AB|Y25.XXXD|ICD10CM|Contact w explosive material, undetermined intent, subs|Contact w explosive material, undetermined intent, subs +C2906146|T037|PT|Y25.XXXD|ICD10CM|Contact with explosive material, undetermined intent, subsequent encounter|Contact with explosive material, undetermined intent, subsequent encounter +C2906147|T037|AB|Y25.XXXS|ICD10CM|Contact w explosive material, undetermined intent, sequela|Contact w explosive material, undetermined intent, sequela +C2906147|T037|PT|Y25.XXXS|ICD10CM|Contact with explosive material, undetermined intent, sequela|Contact with explosive material, undetermined intent, sequela +C0480994|T037|PS|Y26|ICD10|Exposure to smoke, fire and flames, undetermined intent|Exposure to smoke, fire and flames, undetermined intent +C0480994|T037|HT|Y26|ICD10CM|Exposure to smoke, fire and flames, undetermined intent|Exposure to smoke, fire and flames, undetermined intent +C0480994|T037|AB|Y26|ICD10CM|Exposure to smoke, fire and flames, undetermined intent|Exposure to smoke, fire and flames, undetermined intent +C0480994|T037|PX|Y26|ICD10|Exposure to smoke, fire and flames, undetermined intent causing accidental injury|Exposure to smoke, fire and flames, undetermined intent causing accidental injury +C2906148|T037|AB|Y26.XXXA|ICD10CM|Exposure to smoke, fire and flames, undet intent, init|Exposure to smoke, fire and flames, undet intent, init +C2906148|T037|PT|Y26.XXXA|ICD10CM|Exposure to smoke, fire and flames, undetermined intent, initial encounter|Exposure to smoke, fire and flames, undetermined intent, initial encounter +C2906149|T037|AB|Y26.XXXD|ICD10CM|Exposure to smoke, fire and flames, undet intent, subs|Exposure to smoke, fire and flames, undet intent, subs +C2906149|T037|PT|Y26.XXXD|ICD10CM|Exposure to smoke, fire and flames, undetermined intent, subsequent encounter|Exposure to smoke, fire and flames, undetermined intent, subsequent encounter +C2906150|T037|AB|Y26.XXXS|ICD10CM|Exposure to smoke, fire and flames, undet intent, sequela|Exposure to smoke, fire and flames, undet intent, sequela +C2906150|T037|PT|Y26.XXXS|ICD10CM|Exposure to smoke, fire and flames, undetermined intent, sequela|Exposure to smoke, fire and flames, undetermined intent, sequela +C0481005|T037|AB|Y27|ICD10CM|Contact w steam, hot vapors and hot objects, undet intent|Contact w steam, hot vapors and hot objects, undet intent +C0481005|T037|HT|Y27|ICD10CM|Contact with steam, hot vapors and hot objects, undetermined intent|Contact with steam, hot vapors and hot objects, undetermined intent +C0481005|T037|PS|Y27|ICD10AE|Contact with steam, hot vapors and hot objects, undetermined intent|Contact with steam, hot vapors and hot objects, undetermined intent +C0481005|T037|PX|Y27|ICD10AE|Contact with steam, hot vapors and hot objects, undetermined intent causing accidental injury|Contact with steam, hot vapors and hot objects, undetermined intent causing accidental injury +C0481005|T037|PS|Y27|ICD10|Contact with steam, hot vapours and hot objects, undetermined intent|Contact with steam, hot vapours and hot objects, undetermined intent +C0481005|T037|PX|Y27|ICD10|Contact with steam, hot vapours and hot objects, undetermined intent causing accidental injury|Contact with steam, hot vapours and hot objects, undetermined intent causing accidental injury +C2906151|T037|AB|Y27.0|ICD10CM|Contact with steam and hot vapors, undetermined intent|Contact with steam and hot vapors, undetermined intent +C2906151|T037|HT|Y27.0|ICD10CM|Contact with steam and hot vapors, undetermined intent|Contact with steam and hot vapors, undetermined intent +C2906152|T037|AB|Y27.0XXA|ICD10CM|Contact w steam and hot vapors, undetermined intent, init|Contact w steam and hot vapors, undetermined intent, init +C2906152|T037|PT|Y27.0XXA|ICD10CM|Contact with steam and hot vapors, undetermined intent, initial encounter|Contact with steam and hot vapors, undetermined intent, initial encounter +C2906153|T037|AB|Y27.0XXD|ICD10CM|Contact w steam and hot vapors, undetermined intent, subs|Contact w steam and hot vapors, undetermined intent, subs +C2906153|T037|PT|Y27.0XXD|ICD10CM|Contact with steam and hot vapors, undetermined intent, subsequent encounter|Contact with steam and hot vapors, undetermined intent, subsequent encounter +C2906154|T037|AB|Y27.0XXS|ICD10CM|Contact w steam and hot vapors, undetermined intent, sequela|Contact w steam and hot vapors, undetermined intent, sequela +C2906154|T037|PT|Y27.0XXS|ICD10CM|Contact with steam and hot vapors, undetermined intent, sequela|Contact with steam and hot vapors, undetermined intent, sequela +C2906155|T037|AB|Y27.1|ICD10CM|Contact with hot tap water, undetermined intent|Contact with hot tap water, undetermined intent +C2906155|T037|HT|Y27.1|ICD10CM|Contact with hot tap water, undetermined intent|Contact with hot tap water, undetermined intent +C2906156|T037|AB|Y27.1XXA|ICD10CM|Contact with hot tap water, undetermined intent, init encntr|Contact with hot tap water, undetermined intent, init encntr +C2906156|T037|PT|Y27.1XXA|ICD10CM|Contact with hot tap water, undetermined intent, initial encounter|Contact with hot tap water, undetermined intent, initial encounter +C2906157|T037|AB|Y27.1XXD|ICD10CM|Contact with hot tap water, undetermined intent, subs encntr|Contact with hot tap water, undetermined intent, subs encntr +C2906157|T037|PT|Y27.1XXD|ICD10CM|Contact with hot tap water, undetermined intent, subsequent encounter|Contact with hot tap water, undetermined intent, subsequent encounter +C2906158|T037|AB|Y27.1XXS|ICD10CM|Contact with hot tap water, undetermined intent, sequela|Contact with hot tap water, undetermined intent, sequela +C2906158|T037|PT|Y27.1XXS|ICD10CM|Contact with hot tap water, undetermined intent, sequela|Contact with hot tap water, undetermined intent, sequela +C2906159|T037|AB|Y27.2|ICD10CM|Contact with hot fluids, undetermined intent|Contact with hot fluids, undetermined intent +C2906159|T037|HT|Y27.2|ICD10CM|Contact with hot fluids, undetermined intent|Contact with hot fluids, undetermined intent +C2906160|T037|AB|Y27.2XXA|ICD10CM|Contact with hot fluids, undetermined intent, init encntr|Contact with hot fluids, undetermined intent, init encntr +C2906160|T037|PT|Y27.2XXA|ICD10CM|Contact with hot fluids, undetermined intent, initial encounter|Contact with hot fluids, undetermined intent, initial encounter +C2906161|T037|AB|Y27.2XXD|ICD10CM|Contact with hot fluids, undetermined intent, subs encntr|Contact with hot fluids, undetermined intent, subs encntr +C2906161|T037|PT|Y27.2XXD|ICD10CM|Contact with hot fluids, undetermined intent, subsequent encounter|Contact with hot fluids, undetermined intent, subsequent encounter +C2906162|T037|AB|Y27.2XXS|ICD10CM|Contact with hot fluids, undetermined intent, sequela|Contact with hot fluids, undetermined intent, sequela +C2906162|T037|PT|Y27.2XXS|ICD10CM|Contact with hot fluids, undetermined intent, sequela|Contact with hot fluids, undetermined intent, sequela +C2906163|T037|AB|Y27.3|ICD10CM|Contact with hot household appliance, undetermined intent|Contact with hot household appliance, undetermined intent +C2906163|T037|HT|Y27.3|ICD10CM|Contact with hot household appliance, undetermined intent|Contact with hot household appliance, undetermined intent +C2906164|T037|AB|Y27.3XXA|ICD10CM|Contact w hot household appliance, undetermined intent, init|Contact w hot household appliance, undetermined intent, init +C2906164|T037|PT|Y27.3XXA|ICD10CM|Contact with hot household appliance, undetermined intent, initial encounter|Contact with hot household appliance, undetermined intent, initial encounter +C2906165|T037|AB|Y27.3XXD|ICD10CM|Contact w hot household appliance, undetermined intent, subs|Contact w hot household appliance, undetermined intent, subs +C2906165|T037|PT|Y27.3XXD|ICD10CM|Contact with hot household appliance, undetermined intent, subsequent encounter|Contact with hot household appliance, undetermined intent, subsequent encounter +C2906166|T037|AB|Y27.3XXS|ICD10CM|Contact w hot household appliance, undet intent, sequela|Contact w hot household appliance, undet intent, sequela +C2906166|T037|PT|Y27.3XXS|ICD10CM|Contact with hot household appliance, undetermined intent, sequela|Contact with hot household appliance, undetermined intent, sequela +C2906167|T037|AB|Y27.8|ICD10CM|Contact with other hot objects, undetermined intent|Contact with other hot objects, undetermined intent +C2906167|T037|HT|Y27.8|ICD10CM|Contact with other hot objects, undetermined intent|Contact with other hot objects, undetermined intent +C2906168|T037|AB|Y27.8XXA|ICD10CM|Contact w oth hot objects, undetermined intent, init encntr|Contact w oth hot objects, undetermined intent, init encntr +C2906168|T037|PT|Y27.8XXA|ICD10CM|Contact with other hot objects, undetermined intent, initial encounter|Contact with other hot objects, undetermined intent, initial encounter +C2906169|T037|AB|Y27.8XXD|ICD10CM|Contact w oth hot objects, undetermined intent, subs encntr|Contact w oth hot objects, undetermined intent, subs encntr +C2906169|T037|PT|Y27.8XXD|ICD10CM|Contact with other hot objects, undetermined intent, subsequent encounter|Contact with other hot objects, undetermined intent, subsequent encounter +C2906170|T037|AB|Y27.8XXS|ICD10CM|Contact with other hot objects, undetermined intent, sequela|Contact with other hot objects, undetermined intent, sequela +C2906170|T037|PT|Y27.8XXS|ICD10CM|Contact with other hot objects, undetermined intent, sequela|Contact with other hot objects, undetermined intent, sequela +C2906171|T037|AB|Y27.9|ICD10CM|Contact with unspecified hot objects, undetermined intent|Contact with unspecified hot objects, undetermined intent +C2906171|T037|HT|Y27.9|ICD10CM|Contact with unspecified hot objects, undetermined intent|Contact with unspecified hot objects, undetermined intent +C2906172|T037|AB|Y27.9XXA|ICD10CM|Contact w unsp hot objects, undetermined intent, init encntr|Contact w unsp hot objects, undetermined intent, init encntr +C2906172|T037|PT|Y27.9XXA|ICD10CM|Contact with unspecified hot objects, undetermined intent, initial encounter|Contact with unspecified hot objects, undetermined intent, initial encounter +C2906173|T037|AB|Y27.9XXD|ICD10CM|Contact w unsp hot objects, undetermined intent, subs encntr|Contact w unsp hot objects, undetermined intent, subs encntr +C2906173|T037|PT|Y27.9XXD|ICD10CM|Contact with unspecified hot objects, undetermined intent, subsequent encounter|Contact with unspecified hot objects, undetermined intent, subsequent encounter +C2906174|T037|AB|Y27.9XXS|ICD10CM|Contact with unsp hot objects, undetermined intent, sequela|Contact with unsp hot objects, undetermined intent, sequela +C2906174|T037|PT|Y27.9XXS|ICD10CM|Contact with unspecified hot objects, undetermined intent, sequela|Contact with unspecified hot objects, undetermined intent, sequela +C0481016|T037|PS|Y28|ICD10|Contact with sharp object, undetermined intent|Contact with sharp object, undetermined intent +C0481016|T037|HT|Y28|ICD10CM|Contact with sharp object, undetermined intent|Contact with sharp object, undetermined intent +C0481016|T037|AB|Y28|ICD10CM|Contact with sharp object, undetermined intent|Contact with sharp object, undetermined intent +C0481016|T037|PX|Y28|ICD10|Contact with sharp object, undetermined intent causing accidental injury|Contact with sharp object, undetermined intent causing accidental injury +C2906175|T037|AB|Y28.0|ICD10CM|Contact with sharp glass, undetermined intent|Contact with sharp glass, undetermined intent +C2906175|T037|HT|Y28.0|ICD10CM|Contact with sharp glass, undetermined intent|Contact with sharp glass, undetermined intent +C2906176|T037|AB|Y28.0XXA|ICD10CM|Contact with sharp glass, undetermined intent, init encntr|Contact with sharp glass, undetermined intent, init encntr +C2906176|T037|PT|Y28.0XXA|ICD10CM|Contact with sharp glass, undetermined intent, initial encounter|Contact with sharp glass, undetermined intent, initial encounter +C2906177|T037|AB|Y28.0XXD|ICD10CM|Contact with sharp glass, undetermined intent, subs encntr|Contact with sharp glass, undetermined intent, subs encntr +C2906177|T037|PT|Y28.0XXD|ICD10CM|Contact with sharp glass, undetermined intent, subsequent encounter|Contact with sharp glass, undetermined intent, subsequent encounter +C2906178|T037|AB|Y28.0XXS|ICD10CM|Contact with sharp glass, undetermined intent, sequela|Contact with sharp glass, undetermined intent, sequela +C2906178|T037|PT|Y28.0XXS|ICD10CM|Contact with sharp glass, undetermined intent, sequela|Contact with sharp glass, undetermined intent, sequela +C2906179|T037|AB|Y28.1|ICD10CM|Contact with knife, undetermined intent|Contact with knife, undetermined intent +C2906179|T037|HT|Y28.1|ICD10CM|Contact with knife, undetermined intent|Contact with knife, undetermined intent +C2906180|T037|AB|Y28.1XXA|ICD10CM|Contact with knife, undetermined intent, initial encounter|Contact with knife, undetermined intent, initial encounter +C2906180|T037|PT|Y28.1XXA|ICD10CM|Contact with knife, undetermined intent, initial encounter|Contact with knife, undetermined intent, initial encounter +C2906181|T037|AB|Y28.1XXD|ICD10CM|Contact with knife, undetermined intent, subs encntr|Contact with knife, undetermined intent, subs encntr +C2906181|T037|PT|Y28.1XXD|ICD10CM|Contact with knife, undetermined intent, subsequent encounter|Contact with knife, undetermined intent, subsequent encounter +C2906182|T037|AB|Y28.1XXS|ICD10CM|Contact with knife, undetermined intent, sequela|Contact with knife, undetermined intent, sequela +C2906182|T037|PT|Y28.1XXS|ICD10CM|Contact with knife, undetermined intent, sequela|Contact with knife, undetermined intent, sequela +C2906183|T037|AB|Y28.2|ICD10CM|Contact with sword or dagger, undetermined intent|Contact with sword or dagger, undetermined intent +C2906183|T037|HT|Y28.2|ICD10CM|Contact with sword or dagger, undetermined intent|Contact with sword or dagger, undetermined intent +C2906184|T037|AB|Y28.2XXA|ICD10CM|Contact w sword or dagger, undetermined intent, init encntr|Contact w sword or dagger, undetermined intent, init encntr +C2906184|T037|PT|Y28.2XXA|ICD10CM|Contact with sword or dagger, undetermined intent, initial encounter|Contact with sword or dagger, undetermined intent, initial encounter +C2906185|T037|AB|Y28.2XXD|ICD10CM|Contact w sword or dagger, undetermined intent, subs encntr|Contact w sword or dagger, undetermined intent, subs encntr +C2906185|T037|PT|Y28.2XXD|ICD10CM|Contact with sword or dagger, undetermined intent, subsequent encounter|Contact with sword or dagger, undetermined intent, subsequent encounter +C2906186|T037|AB|Y28.2XXS|ICD10CM|Contact with sword or dagger, undetermined intent, sequela|Contact with sword or dagger, undetermined intent, sequela +C2906186|T037|PT|Y28.2XXS|ICD10CM|Contact with sword or dagger, undetermined intent, sequela|Contact with sword or dagger, undetermined intent, sequela +C2906187|T037|AB|Y28.8|ICD10CM|Contact with other sharp object, undetermined intent|Contact with other sharp object, undetermined intent +C2906187|T037|HT|Y28.8|ICD10CM|Contact with other sharp object, undetermined intent|Contact with other sharp object, undetermined intent +C2906188|T037|AB|Y28.8XXA|ICD10CM|Contact w oth sharp object, undetermined intent, init encntr|Contact w oth sharp object, undetermined intent, init encntr +C2906188|T037|PT|Y28.8XXA|ICD10CM|Contact with other sharp object, undetermined intent, initial encounter|Contact with other sharp object, undetermined intent, initial encounter +C2906189|T037|AB|Y28.8XXD|ICD10CM|Contact w oth sharp object, undetermined intent, subs encntr|Contact w oth sharp object, undetermined intent, subs encntr +C2906189|T037|PT|Y28.8XXD|ICD10CM|Contact with other sharp object, undetermined intent, subsequent encounter|Contact with other sharp object, undetermined intent, subsequent encounter +C2906190|T037|AB|Y28.8XXS|ICD10CM|Contact with oth sharp object, undetermined intent, sequela|Contact with oth sharp object, undetermined intent, sequela +C2906190|T037|PT|Y28.8XXS|ICD10CM|Contact with other sharp object, undetermined intent, sequela|Contact with other sharp object, undetermined intent, sequela +C2906191|T037|AB|Y28.9|ICD10CM|Contact with unspecified sharp object, undetermined intent|Contact with unspecified sharp object, undetermined intent +C2906191|T037|HT|Y28.9|ICD10CM|Contact with unspecified sharp object, undetermined intent|Contact with unspecified sharp object, undetermined intent +C2906192|T037|AB|Y28.9XXA|ICD10CM|Contact w unsp sharp object, undetermined intent, init|Contact w unsp sharp object, undetermined intent, init +C2906192|T037|PT|Y28.9XXA|ICD10CM|Contact with unspecified sharp object, undetermined intent, initial encounter|Contact with unspecified sharp object, undetermined intent, initial encounter +C2906193|T037|AB|Y28.9XXD|ICD10CM|Contact w unsp sharp object, undetermined intent, subs|Contact w unsp sharp object, undetermined intent, subs +C2906193|T037|PT|Y28.9XXD|ICD10CM|Contact with unspecified sharp object, undetermined intent, subsequent encounter|Contact with unspecified sharp object, undetermined intent, subsequent encounter +C2906194|T037|AB|Y28.9XXS|ICD10CM|Contact with unsp sharp object, undetermined intent, sequela|Contact with unsp sharp object, undetermined intent, sequela +C2906194|T037|PT|Y28.9XXS|ICD10CM|Contact with unspecified sharp object, undetermined intent, sequela|Contact with unspecified sharp object, undetermined intent, sequela +C0481027|T037|PS|Y29|ICD10|Contact with blunt object, undetermined intent|Contact with blunt object, undetermined intent +C0481027|T037|HT|Y29|ICD10CM|Contact with blunt object, undetermined intent|Contact with blunt object, undetermined intent +C0481027|T037|AB|Y29|ICD10CM|Contact with blunt object, undetermined intent|Contact with blunt object, undetermined intent +C0481027|T037|PX|Y29|ICD10|Contact with blunt object, undetermined intent causing accidental injury|Contact with blunt object, undetermined intent causing accidental injury +C2906195|T037|AB|Y29.XXXA|ICD10CM|Contact with blunt object, undetermined intent, init encntr|Contact with blunt object, undetermined intent, init encntr +C2906195|T037|PT|Y29.XXXA|ICD10CM|Contact with blunt object, undetermined intent, initial encounter|Contact with blunt object, undetermined intent, initial encounter +C2906196|T037|AB|Y29.XXXD|ICD10CM|Contact with blunt object, undetermined intent, subs encntr|Contact with blunt object, undetermined intent, subs encntr +C2906196|T037|PT|Y29.XXXD|ICD10CM|Contact with blunt object, undetermined intent, subsequent encounter|Contact with blunt object, undetermined intent, subsequent encounter +C2906197|T037|AB|Y29.XXXS|ICD10CM|Contact with blunt object, undetermined intent, sequela|Contact with blunt object, undetermined intent, sequela +C2906197|T037|PT|Y29.XXXS|ICD10CM|Contact with blunt object, undetermined intent, sequela|Contact with blunt object, undetermined intent, sequela +C0481038|T037|AB|Y30|ICD10CM|Falling, jumping or pushed from a high place, undet intent|Falling, jumping or pushed from a high place, undet intent +C0481038|T037|HT|Y30|ICD10CM|Falling, jumping or pushed from a high place, undetermined intent|Falling, jumping or pushed from a high place, undetermined intent +C0481038|T037|PS|Y30|ICD10|Falling, jumping or pushed from a high place, undetermined intent|Falling, jumping or pushed from a high place, undetermined intent +C0481038|T037|PX|Y30|ICD10|Falling, jumping or pushed from a high place, undetermined intent causing accidental injury|Falling, jumping or pushed from a high place, undetermined intent causing accidental injury +C2906198|T037|ET|Y30|ICD10CM|Victim falling from one level to another, undetermined intent|Victim falling from one level to another, undetermined intent +C2906199|T037|AB|Y30.XXXA|ICD10CM|Fall, jump or pushed from a high place, undet intent, init|Fall, jump or pushed from a high place, undet intent, init +C2906199|T037|PT|Y30.XXXA|ICD10CM|Falling, jumping or pushed from a high place, undetermined intent, initial encounter|Falling, jumping or pushed from a high place, undetermined intent, initial encounter +C2906200|T037|AB|Y30.XXXD|ICD10CM|Fall, jump or pushed from a high place, undet intent, subs|Fall, jump or pushed from a high place, undet intent, subs +C2906200|T037|PT|Y30.XXXD|ICD10CM|Falling, jumping or pushed from a high place, undetermined intent, subsequent encounter|Falling, jumping or pushed from a high place, undetermined intent, subsequent encounter +C2906201|T037|AB|Y30.XXXS|ICD10CM|Fall, jump or pushed from a high place, undet intent, sqla|Fall, jump or pushed from a high place, undet intent, sqla +C2906201|T037|PT|Y30.XXXS|ICD10CM|Falling, jumping or pushed from a high place, undetermined intent, sequela|Falling, jumping or pushed from a high place, undetermined intent, sequela +C0481049|T037|AB|Y31|ICD10CM|Fall/lying/running bef/into moving object, undet intent|Fall/lying/running bef/into moving object, undet intent +C0481049|T037|HT|Y31|ICD10CM|Falling, lying or running before or into moving object, undetermined intent|Falling, lying or running before or into moving object, undetermined intent +C0481049|T037|PS|Y31|ICD10|Falling, lying or running before or into moving object, undetermined intent|Falling, lying or running before or into moving object, undetermined intent +C2906202|T037|AB|Y31.XXXA|ICD10CM|Fall/lying/running bef/into moving obj, undet intent, init|Fall/lying/running bef/into moving obj, undet intent, init +C2906202|T037|PT|Y31.XXXA|ICD10CM|Falling, lying or running before or into moving object, undetermined intent, initial encounter|Falling, lying or running before or into moving object, undetermined intent, initial encounter +C2906203|T037|AB|Y31.XXXD|ICD10CM|Fall/lying/running bef/into moving obj, undet intent, subs|Fall/lying/running bef/into moving obj, undet intent, subs +C2906203|T037|PT|Y31.XXXD|ICD10CM|Falling, lying or running before or into moving object, undetermined intent, subsequent encounter|Falling, lying or running before or into moving object, undetermined intent, subsequent encounter +C2906204|T037|AB|Y31.XXXS|ICD10CM|Fall/lying/running bef/into moving obj, undet intent, sqla|Fall/lying/running bef/into moving obj, undet intent, sqla +C2906204|T037|PT|Y31.XXXS|ICD10CM|Falling, lying or running before or into moving object, undetermined intent, sequela|Falling, lying or running before or into moving object, undetermined intent, sequela +C0481060|T037|PS|Y32|ICD10|Crashing of motor vehicle, undetermined intent|Crashing of motor vehicle, undetermined intent +C0481060|T037|HT|Y32|ICD10CM|Crashing of motor vehicle, undetermined intent|Crashing of motor vehicle, undetermined intent +C0481060|T037|AB|Y32|ICD10CM|Crashing of motor vehicle, undetermined intent|Crashing of motor vehicle, undetermined intent +C0481060|T037|PX|Y32|ICD10|Crashing of motor vehicle, undetermined intent causing accidental injury|Crashing of motor vehicle, undetermined intent causing accidental injury +C2906205|T037|AB|Y32.XXXA|ICD10CM|Crashing of motor vehicle, undetermined intent, init encntr|Crashing of motor vehicle, undetermined intent, init encntr +C2906205|T037|PT|Y32.XXXA|ICD10CM|Crashing of motor vehicle, undetermined intent, initial encounter|Crashing of motor vehicle, undetermined intent, initial encounter +C2906206|T037|AB|Y32.XXXD|ICD10CM|Crashing of motor vehicle, undetermined intent, subs encntr|Crashing of motor vehicle, undetermined intent, subs encntr +C2906206|T037|PT|Y32.XXXD|ICD10CM|Crashing of motor vehicle, undetermined intent, subsequent encounter|Crashing of motor vehicle, undetermined intent, subsequent encounter +C2906207|T037|AB|Y32.XXXS|ICD10CM|Crashing of motor vehicle, undetermined intent, sequela|Crashing of motor vehicle, undetermined intent, sequela +C2906207|T037|PT|Y32.XXXS|ICD10CM|Crashing of motor vehicle, undetermined intent, sequela|Crashing of motor vehicle, undetermined intent, sequela +C0481071|T037|PS|Y33|ICD10|Other specified events, undetermined intent|Other specified events, undetermined intent +C0481071|T037|HT|Y33|ICD10CM|Other specified events, undetermined intent|Other specified events, undetermined intent +C0481071|T037|AB|Y33|ICD10CM|Other specified events, undetermined intent|Other specified events, undetermined intent +C0481071|T037|PX|Y33|ICD10|Other specified events, undetermined intent causing accidental injury|Other specified events, undetermined intent causing accidental injury +C2906208|T037|AB|Y33.XXXA|ICD10CM|Other specified events, undetermined intent, init encntr|Other specified events, undetermined intent, init encntr +C2906208|T037|PT|Y33.XXXA|ICD10CM|Other specified events, undetermined intent, initial encounter|Other specified events, undetermined intent, initial encounter +C2906209|T037|AB|Y33.XXXD|ICD10CM|Other specified events, undetermined intent, subs encntr|Other specified events, undetermined intent, subs encntr +C2906209|T037|PT|Y33.XXXD|ICD10CM|Other specified events, undetermined intent, subsequent encounter|Other specified events, undetermined intent, subsequent encounter +C2906210|T037|AB|Y33.XXXS|ICD10CM|Other specified events, undetermined intent, sequela|Other specified events, undetermined intent, sequela +C2906210|T037|PT|Y33.XXXS|ICD10CM|Other specified events, undetermined intent, sequela|Other specified events, undetermined intent, sequela +C0481082|T037|PS|Y34|ICD10|Unspecified event, undetermined intent|Unspecified event, undetermined intent +C0481082|T037|PX|Y34|ICD10|Unspecified event, undetermined intent causing accidental injury|Unspecified event, undetermined intent causing accidental injury +C0178362|T037|HT|Y35|ICD10CM|Legal intervention|Legal intervention +C0178362|T037|AB|Y35|ICD10CM|Legal intervention|Legal intervention +C0178362|T037|HT|Y35|ICD10|Legal intervention|Legal intervention +C0481093|T037|HT|Y35-Y36.9|ICD10|Legal intervention and operations of war|Legal intervention and operations of war +C2906212|T037|HT|Y35-Y38|ICD10CM|Legal intervention, operations of war, military operations, and terrorism (Y35-Y38)|Legal intervention, operations of war, military operations, and terrorism (Y35-Y38) +C0481094|T037|PX|Y35.0|ICD10|Injury due to legal intervention involving firearm discharge|Injury due to legal intervention involving firearm discharge +C0481094|T037|PS|Y35.0|ICD10|Legal intervention involving firearm discharge|Legal intervention involving firearm discharge +C0481094|T037|HT|Y35.0|ICD10CM|Legal intervention involving firearm discharge|Legal intervention involving firearm discharge +C0481094|T037|AB|Y35.0|ICD10CM|Legal intervention involving firearm discharge|Legal intervention involving firearm discharge +C2906213|T037|ET|Y35.00|ICD10CM|Legal intervention involving gunshot wound|Legal intervention involving gunshot wound +C2906214|T037|ET|Y35.00|ICD10CM|Legal intervention involving shot NOS|Legal intervention involving shot NOS +C2906215|T037|AB|Y35.00|ICD10CM|Legal intervention involving unspecified firearm discharge|Legal intervention involving unspecified firearm discharge +C2906215|T037|HT|Y35.00|ICD10CM|Legal intervention involving unspecified firearm discharge|Legal intervention involving unspecified firearm discharge +C2906216|T037|HT|Y35.001|ICD10CM|Legal intervention involving unspecified firearm discharge, law enforcement official injured|Legal intervention involving unspecified firearm discharge, law enforcement official injured +C2906216|T037|AB|Y35.001|ICD10CM|Legal intervnt w unsp firearm disch, law enforc offl injured|Legal intervnt w unsp firearm disch, law enforc offl injured +C2906217|T037|AB|Y35.001A|ICD10CM|Lgl intervnt w unsp firearm disch, law enforc offl inj, init|Lgl intervnt w unsp firearm disch, law enforc offl inj, init +C2906218|T037|AB|Y35.001D|ICD10CM|Lgl intervnt w unsp firearm disch, law enforc offl inj, subs|Lgl intervnt w unsp firearm disch, law enforc offl inj, subs +C2906219|T037|AB|Y35.001S|ICD10CM|Lgl intervnt w unsp firearm disch, law enforc offl inj, sqla|Lgl intervnt w unsp firearm disch, law enforc offl inj, sqla +C2906220|T037|HT|Y35.002|ICD10CM|Legal intervention involving unspecified firearm discharge, bystander injured|Legal intervention involving unspecified firearm discharge, bystander injured +C2906220|T037|AB|Y35.002|ICD10CM|Legal intervnt involving unsp firearm disch, bystand injured|Legal intervnt involving unsp firearm disch, bystand injured +C2906221|T037|PT|Y35.002A|ICD10CM|Legal intervention involving unspecified firearm discharge, bystander injured, initial encounter|Legal intervention involving unspecified firearm discharge, bystander injured, initial encounter +C2906221|T037|AB|Y35.002A|ICD10CM|Legal intervnt w unsp firearm disch, bystand injured, init|Legal intervnt w unsp firearm disch, bystand injured, init +C2906222|T037|PT|Y35.002D|ICD10CM|Legal intervention involving unspecified firearm discharge, bystander injured, subsequent encounter|Legal intervention involving unspecified firearm discharge, bystander injured, subsequent encounter +C2906222|T037|AB|Y35.002D|ICD10CM|Legal intervnt w unsp firearm disch, bystand injured, subs|Legal intervnt w unsp firearm disch, bystand injured, subs +C2906223|T037|PT|Y35.002S|ICD10CM|Legal intervention involving unspecified firearm discharge, bystander injured, sequela|Legal intervention involving unspecified firearm discharge, bystander injured, sequela +C2906223|T037|AB|Y35.002S|ICD10CM|Legal intervnt w unsp firearm disch, bystand inj, sequela|Legal intervnt w unsp firearm disch, bystand inj, sequela +C2906224|T037|HT|Y35.003|ICD10CM|Legal intervention involving unspecified firearm discharge, suspect injured|Legal intervention involving unspecified firearm discharge, suspect injured +C2906224|T037|AB|Y35.003|ICD10CM|Legal intervnt involving unsp firearm disch, suspect injured|Legal intervnt involving unsp firearm disch, suspect injured +C2906225|T037|PT|Y35.003A|ICD10CM|Legal intervention involving unspecified firearm discharge, suspect injured, initial encounter|Legal intervention involving unspecified firearm discharge, suspect injured, initial encounter +C2906225|T037|AB|Y35.003A|ICD10CM|Legal intervnt w unsp firearm disch, suspect injured, init|Legal intervnt w unsp firearm disch, suspect injured, init +C2906226|T037|PT|Y35.003D|ICD10CM|Legal intervention involving unspecified firearm discharge, suspect injured, subsequent encounter|Legal intervention involving unspecified firearm discharge, suspect injured, subsequent encounter +C2906226|T037|AB|Y35.003D|ICD10CM|Legal intervnt w unsp firearm disch, suspect injured, subs|Legal intervnt w unsp firearm disch, suspect injured, subs +C2906227|T037|PT|Y35.003S|ICD10CM|Legal intervention involving unspecified firearm discharge, suspect injured, sequela|Legal intervention involving unspecified firearm discharge, suspect injured, sequela +C2906227|T037|AB|Y35.003S|ICD10CM|Legal intervnt w unsp firearm disch, suspect inj, sequela|Legal intervnt w unsp firearm disch, suspect inj, sequela +C5141006|T037|HT|Y35.009|ICD10CM|Legal intervention involving unspecified firearm discharge, unspecified person injured|Legal intervention involving unspecified firearm discharge, unspecified person injured +C5141006|T037|AB|Y35.009|ICD10CM|Legal intervnt w unsp firearm disch, unsp person injured|Legal intervnt w unsp firearm disch, unsp person injured +C5141007|T037|AB|Y35.009A|ICD10CM|Legal intrvnt w unsp firearm disch, unsp person inj, init|Legal intrvnt w unsp firearm disch, unsp person inj, init +C5141008|T037|AB|Y35.009D|ICD10CM|Legal intrvnt w unsp firearm disch, unsp person inj, subs|Legal intrvnt w unsp firearm disch, unsp person inj, subs +C5141009|T037|PT|Y35.009S|ICD10CM|Legal intervention involving unspecified firearm discharge, unspecified person injured, sequela|Legal intervention involving unspecified firearm discharge, unspecified person injured, sequela +C5141009|T037|AB|Y35.009S|ICD10CM|Legal intrvnt w unsp firearm disch, unsp person inj, sequela|Legal intrvnt w unsp firearm disch, unsp person inj, sequela +C2906228|T037|AB|Y35.01|ICD10CM|Legal intervention involving injury by machine gun|Legal intervention involving injury by machine gun +C2906228|T037|HT|Y35.01|ICD10CM|Legal intervention involving injury by machine gun|Legal intervention involving injury by machine gun +C2906229|T037|HT|Y35.011|ICD10CM|Legal intervention involving injury by machine gun, law enforcement official injured|Legal intervention involving injury by machine gun, law enforcement official injured +C2906229|T037|AB|Y35.011|ICD10CM|Legal intervnt w injury by mch gun, law enforc offl injured|Legal intervnt w injury by mch gun, law enforc offl injured +C2906230|T037|AB|Y35.011A|ICD10CM|Legal intervnt w inj by mch gun, law enforc offl inj, init|Legal intervnt w inj by mch gun, law enforc offl inj, init +C2906231|T037|AB|Y35.011D|ICD10CM|Legal intervnt w inj by mch gun, law enforc offl inj, subs|Legal intervnt w inj by mch gun, law enforc offl inj, subs +C2906232|T037|PT|Y35.011S|ICD10CM|Legal intervention involving injury by machine gun, law enforcement official injured, sequela|Legal intervention involving injury by machine gun, law enforcement official injured, sequela +C2906232|T037|AB|Y35.011S|ICD10CM|Legal intervnt w inj by mch gun, law enforc offl inj, sqla|Legal intervnt w inj by mch gun, law enforc offl inj, sqla +C2906233|T037|HT|Y35.012|ICD10CM|Legal intervention involving injury by machine gun, bystander injured|Legal intervention involving injury by machine gun, bystander injured +C2906233|T037|AB|Y35.012|ICD10CM|Legal intervnt involving injury by mch gun, bystand injured|Legal intervnt involving injury by mch gun, bystand injured +C2906234|T037|PT|Y35.012A|ICD10CM|Legal intervention involving injury by machine gun, bystander injured, initial encounter|Legal intervention involving injury by machine gun, bystander injured, initial encounter +C2906234|T037|AB|Y35.012A|ICD10CM|Legal intervnt w injury by mch gun, bystand injured, init|Legal intervnt w injury by mch gun, bystand injured, init +C2906235|T037|PT|Y35.012D|ICD10CM|Legal intervention involving injury by machine gun, bystander injured, subsequent encounter|Legal intervention involving injury by machine gun, bystander injured, subsequent encounter +C2906235|T037|AB|Y35.012D|ICD10CM|Legal intervnt w injury by mch gun, bystand injured, subs|Legal intervnt w injury by mch gun, bystand injured, subs +C2906236|T037|PT|Y35.012S|ICD10CM|Legal intervention involving injury by machine gun, bystander injured, sequela|Legal intervention involving injury by machine gun, bystander injured, sequela +C2906236|T037|AB|Y35.012S|ICD10CM|Legal intervnt w injury by mch gun, bystand injured, sequela|Legal intervnt w injury by mch gun, bystand injured, sequela +C2906237|T037|HT|Y35.013|ICD10CM|Legal intervention involving injury by machine gun, suspect injured|Legal intervention involving injury by machine gun, suspect injured +C2906237|T037|AB|Y35.013|ICD10CM|Legal intervnt involving injury by mch gun, suspect injured|Legal intervnt involving injury by mch gun, suspect injured +C2906238|T037|PT|Y35.013A|ICD10CM|Legal intervention involving injury by machine gun, suspect injured, initial encounter|Legal intervention involving injury by machine gun, suspect injured, initial encounter +C2906238|T037|AB|Y35.013A|ICD10CM|Legal intervnt w injury by mch gun, suspect injured, init|Legal intervnt w injury by mch gun, suspect injured, init +C2906239|T037|PT|Y35.013D|ICD10CM|Legal intervention involving injury by machine gun, suspect injured, subsequent encounter|Legal intervention involving injury by machine gun, suspect injured, subsequent encounter +C2906239|T037|AB|Y35.013D|ICD10CM|Legal intervnt w injury by mch gun, suspect injured, subs|Legal intervnt w injury by mch gun, suspect injured, subs +C2906240|T037|PT|Y35.013S|ICD10CM|Legal intervention involving injury by machine gun, suspect injured, sequela|Legal intervention involving injury by machine gun, suspect injured, sequela +C2906240|T037|AB|Y35.013S|ICD10CM|Legal intervnt w injury by mch gun, suspect injured, sequela|Legal intervnt w injury by mch gun, suspect injured, sequela +C5141010|T037|HT|Y35.019|ICD10CM|Legal intervention involving injury by machine gun, unspecified person injured|Legal intervention involving injury by machine gun, unspecified person injured +C5141010|T037|AB|Y35.019|ICD10CM|Legal intervnt w injury by mch gun, unsp person injured|Legal intervnt w injury by mch gun, unsp person injured +C5141011|T037|PT|Y35.019A|ICD10CM|Legal intervention involving injury by machine gun, unspecified person injured, initial encounter|Legal intervention involving injury by machine gun, unspecified person injured, initial encounter +C5141011|T037|AB|Y35.019A|ICD10CM|Legal intrvnt w injury by mch gun, unsp person injured, init|Legal intrvnt w injury by mch gun, unsp person injured, init +C5141012|T037|PT|Y35.019D|ICD10CM|Legal intervention involving injury by machine gun, unspecified person injured, subsequent encounter|Legal intervention involving injury by machine gun, unspecified person injured, subsequent encounter +C5141012|T037|AB|Y35.019D|ICD10CM|Legal intrvnt w injury by mch gun, unsp person injured, subs|Legal intrvnt w injury by mch gun, unsp person injured, subs +C5141013|T037|PT|Y35.019S|ICD10CM|Legal intervention involving injury by machine gun, unspecified person injured, sequela|Legal intervention involving injury by machine gun, unspecified person injured, sequela +C5141013|T037|AB|Y35.019S|ICD10CM|Legal intrvnt w injury by mch gun, unsp person inj, sequela|Legal intrvnt w injury by mch gun, unsp person inj, sequela +C2906241|T037|AB|Y35.02|ICD10CM|Legal intervention involving injury by handgun|Legal intervention involving injury by handgun +C2906241|T037|HT|Y35.02|ICD10CM|Legal intervention involving injury by handgun|Legal intervention involving injury by handgun +C2906242|T037|HT|Y35.021|ICD10CM|Legal intervention involving injury by handgun, law enforcement official injured|Legal intervention involving injury by handgun, law enforcement official injured +C2906242|T037|AB|Y35.021|ICD10CM|Legal intervnt w injury by handgun, law enforc offl injured|Legal intervnt w injury by handgun, law enforc offl injured +C2906243|T037|PT|Y35.021A|ICD10CM|Legal intervention involving injury by handgun, law enforcement official injured, initial encounter|Legal intervention involving injury by handgun, law enforcement official injured, initial encounter +C2906243|T037|AB|Y35.021A|ICD10CM|Legal intervnt w inj by handgun, law enforc offl inj, init|Legal intervnt w inj by handgun, law enforc offl inj, init +C2906244|T037|AB|Y35.021D|ICD10CM|Legal intervnt w inj by handgun, law enforc offl inj, subs|Legal intervnt w inj by handgun, law enforc offl inj, subs +C2906245|T037|PT|Y35.021S|ICD10CM|Legal intervention involving injury by handgun, law enforcement official injured, sequela|Legal intervention involving injury by handgun, law enforcement official injured, sequela +C2906245|T037|AB|Y35.021S|ICD10CM|Legal intervnt w inj by handgun, law enforc offl inj, sqla|Legal intervnt w inj by handgun, law enforc offl inj, sqla +C2906246|T037|HT|Y35.022|ICD10CM|Legal intervention involving injury by handgun, bystander injured|Legal intervention involving injury by handgun, bystander injured +C2906246|T037|AB|Y35.022|ICD10CM|Legal intervnt involving injury by handgun, bystand injured|Legal intervnt involving injury by handgun, bystand injured +C2906247|T037|PT|Y35.022A|ICD10CM|Legal intervention involving injury by handgun, bystander injured, initial encounter|Legal intervention involving injury by handgun, bystander injured, initial encounter +C2906247|T037|AB|Y35.022A|ICD10CM|Legal intervnt w injury by handgun, bystand injured, init|Legal intervnt w injury by handgun, bystand injured, init +C2906248|T037|PT|Y35.022D|ICD10CM|Legal intervention involving injury by handgun, bystander injured, subsequent encounter|Legal intervention involving injury by handgun, bystander injured, subsequent encounter +C2906248|T037|AB|Y35.022D|ICD10CM|Legal intervnt w injury by handgun, bystand injured, subs|Legal intervnt w injury by handgun, bystand injured, subs +C2906249|T037|PT|Y35.022S|ICD10CM|Legal intervention involving injury by handgun, bystander injured, sequela|Legal intervention involving injury by handgun, bystander injured, sequela +C2906249|T037|AB|Y35.022S|ICD10CM|Legal intervnt w injury by handgun, bystand injured, sequela|Legal intervnt w injury by handgun, bystand injured, sequela +C2906250|T037|HT|Y35.023|ICD10CM|Legal intervention involving injury by handgun, suspect injured|Legal intervention involving injury by handgun, suspect injured +C2906250|T037|AB|Y35.023|ICD10CM|Legal intervnt involving injury by handgun, suspect injured|Legal intervnt involving injury by handgun, suspect injured +C2906251|T037|PT|Y35.023A|ICD10CM|Legal intervention involving injury by handgun, suspect injured, initial encounter|Legal intervention involving injury by handgun, suspect injured, initial encounter +C2906251|T037|AB|Y35.023A|ICD10CM|Legal intervnt w injury by handgun, suspect injured, init|Legal intervnt w injury by handgun, suspect injured, init +C2906252|T037|PT|Y35.023D|ICD10CM|Legal intervention involving injury by handgun, suspect injured, subsequent encounter|Legal intervention involving injury by handgun, suspect injured, subsequent encounter +C2906252|T037|AB|Y35.023D|ICD10CM|Legal intervnt w injury by handgun, suspect injured, subs|Legal intervnt w injury by handgun, suspect injured, subs +C2906253|T037|PT|Y35.023S|ICD10CM|Legal intervention involving injury by handgun, suspect injured, sequela|Legal intervention involving injury by handgun, suspect injured, sequela +C2906253|T037|AB|Y35.023S|ICD10CM|Legal intervnt w injury by handgun, suspect injured, sequela|Legal intervnt w injury by handgun, suspect injured, sequela +C5141014|T037|HT|Y35.029|ICD10CM|Legal intervention involving injury by handgun, unspecified person injured|Legal intervention involving injury by handgun, unspecified person injured +C5141014|T037|AB|Y35.029|ICD10CM|Legal intervnt w injury by handgun, unsp person injured|Legal intervnt w injury by handgun, unsp person injured +C5141015|T037|PT|Y35.029A|ICD10CM|Legal intervention involving injury by handgun, unspecified person injured, initial encounter|Legal intervention involving injury by handgun, unspecified person injured, initial encounter +C5141015|T037|AB|Y35.029A|ICD10CM|Legal intrvnt w injury by handgun, unsp person injured, init|Legal intrvnt w injury by handgun, unsp person injured, init +C5141016|T037|PT|Y35.029D|ICD10CM|Legal intervention involving injury by handgun, unspecified person injured, subsequent encounter|Legal intervention involving injury by handgun, unspecified person injured, subsequent encounter +C5141016|T037|AB|Y35.029D|ICD10CM|Legal intrvnt w injury by handgun, unsp person injured, subs|Legal intrvnt w injury by handgun, unsp person injured, subs +C5141017|T037|PT|Y35.029S|ICD10CM|Legal intervention involving injury by handgun, unspecified person injured, sequela|Legal intervention involving injury by handgun, unspecified person injured, sequela +C5141017|T037|AB|Y35.029S|ICD10CM|Legal intrvnt w injury by handgun, unsp person inj, sequela|Legal intrvnt w injury by handgun, unsp person inj, sequela +C2906254|T037|AB|Y35.03|ICD10CM|Legal intervention involving injury by rifle pellet|Legal intervention involving injury by rifle pellet +C2906254|T037|HT|Y35.03|ICD10CM|Legal intervention involving injury by rifle pellet|Legal intervention involving injury by rifle pellet +C2906255|T037|HT|Y35.031|ICD10CM|Legal intervention involving injury by rifle pellet, law enforcement official injured|Legal intervention involving injury by rifle pellet, law enforcement official injured +C2906255|T037|AB|Y35.031|ICD10CM|Legal intervnt w injury by rifl pelet, law enforc offl inj|Legal intervnt w injury by rifl pelet, law enforc offl inj +C2906256|T037|AB|Y35.031A|ICD10CM|Lgl intervnt w inj by rifl pelet, law enforc offl inj, init|Lgl intervnt w inj by rifl pelet, law enforc offl inj, init +C2906257|T037|AB|Y35.031D|ICD10CM|Lgl intervnt w inj by rifl pelet, law enforc offl inj, subs|Lgl intervnt w inj by rifl pelet, law enforc offl inj, subs +C2906258|T037|PT|Y35.031S|ICD10CM|Legal intervention involving injury by rifle pellet, law enforcement official injured, sequela|Legal intervention involving injury by rifle pellet, law enforcement official injured, sequela +C2906258|T037|AB|Y35.031S|ICD10CM|Lgl intervnt w inj by rifl pelet, law enforc offl inj, sqla|Lgl intervnt w inj by rifl pelet, law enforc offl inj, sqla +C2906259|T037|HT|Y35.032|ICD10CM|Legal intervention involving injury by rifle pellet, bystander injured|Legal intervention involving injury by rifle pellet, bystander injured +C2906259|T037|AB|Y35.032|ICD10CM|Legal intervnt w injury by rifl pelet, bystand injured|Legal intervnt w injury by rifl pelet, bystand injured +C2906260|T037|PT|Y35.032A|ICD10CM|Legal intervention involving injury by rifle pellet, bystander injured, initial encounter|Legal intervention involving injury by rifle pellet, bystander injured, initial encounter +C2906260|T037|AB|Y35.032A|ICD10CM|Legal intervnt w injury by rifl pelet, bystand injured, init|Legal intervnt w injury by rifl pelet, bystand injured, init +C2906261|T037|PT|Y35.032D|ICD10CM|Legal intervention involving injury by rifle pellet, bystander injured, subsequent encounter|Legal intervention involving injury by rifle pellet, bystander injured, subsequent encounter +C2906261|T037|AB|Y35.032D|ICD10CM|Legal intervnt w injury by rifl pelet, bystand injured, subs|Legal intervnt w injury by rifl pelet, bystand injured, subs +C2906262|T037|PT|Y35.032S|ICD10CM|Legal intervention involving injury by rifle pellet, bystander injured, sequela|Legal intervention involving injury by rifle pellet, bystander injured, sequela +C2906262|T037|AB|Y35.032S|ICD10CM|Legal intervnt w injury by rifl pelet, bystand inj, sequela|Legal intervnt w injury by rifl pelet, bystand inj, sequela +C2906263|T037|HT|Y35.033|ICD10CM|Legal intervention involving injury by rifle pellet, suspect injured|Legal intervention involving injury by rifle pellet, suspect injured +C2906263|T037|AB|Y35.033|ICD10CM|Legal intervnt w injury by rifl pelet, suspect injured|Legal intervnt w injury by rifl pelet, suspect injured +C2906264|T037|PT|Y35.033A|ICD10CM|Legal intervention involving injury by rifle pellet, suspect injured, initial encounter|Legal intervention involving injury by rifle pellet, suspect injured, initial encounter +C2906264|T037|AB|Y35.033A|ICD10CM|Legal intervnt w injury by rifl pelet, suspect injured, init|Legal intervnt w injury by rifl pelet, suspect injured, init +C2906265|T037|PT|Y35.033D|ICD10CM|Legal intervention involving injury by rifle pellet, suspect injured, subsequent encounter|Legal intervention involving injury by rifle pellet, suspect injured, subsequent encounter +C2906265|T037|AB|Y35.033D|ICD10CM|Legal intervnt w injury by rifl pelet, suspect injured, subs|Legal intervnt w injury by rifl pelet, suspect injured, subs +C2906266|T037|PT|Y35.033S|ICD10CM|Legal intervention involving injury by rifle pellet, suspect injured, sequela|Legal intervention involving injury by rifle pellet, suspect injured, sequela +C2906266|T037|AB|Y35.033S|ICD10CM|Legal intervnt w injury by rifl pelet, suspect inj, sequela|Legal intervnt w injury by rifl pelet, suspect inj, sequela +C5141018|T037|HT|Y35.039|ICD10CM|Legal intervention involving injury by rifle pellet, unspecified person injured|Legal intervention involving injury by rifle pellet, unspecified person injured +C5141018|T037|AB|Y35.039|ICD10CM|Legal intervnt w injury by rifl pelet, unsp person injured|Legal intervnt w injury by rifl pelet, unsp person injured +C5141019|T037|PT|Y35.039A|ICD10CM|Legal intervention involving injury by rifle pellet, unspecified person injured, initial encounter|Legal intervention involving injury by rifle pellet, unspecified person injured, initial encounter +C5141019|T037|AB|Y35.039A|ICD10CM|Legal intrvnt w injury by rifl pelet, unsp person inj, init|Legal intrvnt w injury by rifl pelet, unsp person inj, init +C5141020|T037|AB|Y35.039D|ICD10CM|Legal intrvnt w injury by rifl pelet, unsp person inj, subs|Legal intrvnt w injury by rifl pelet, unsp person inj, subs +C5141021|T037|PT|Y35.039S|ICD10CM|Legal intervention involving injury by rifle pellet, unspecified person injured, sequela|Legal intervention involving injury by rifle pellet, unspecified person injured, sequela +C5141021|T037|AB|Y35.039S|ICD10CM|Legal intrvnt w injury by rifl pelet, unsp person inj, sqla|Legal intrvnt w injury by rifl pelet, unsp person inj, sqla +C2906267|T037|AB|Y35.04|ICD10CM|Legal intervention involving injury by rubber bullet|Legal intervention involving injury by rubber bullet +C2906267|T037|HT|Y35.04|ICD10CM|Legal intervention involving injury by rubber bullet|Legal intervention involving injury by rubber bullet +C2906268|T037|HT|Y35.041|ICD10CM|Legal intervention involving injury by rubber bullet, law enforcement official injured|Legal intervention involving injury by rubber bullet, law enforcement official injured +C2906268|T037|AB|Y35.041|ICD10CM|Legal intervnt w injury by rubr bulet, law enforc offl inj|Legal intervnt w injury by rubr bulet, law enforc offl inj +C2906269|T037|AB|Y35.041A|ICD10CM|Lgl intervnt w inj by rubr bulet, law enforc offl inj, init|Lgl intervnt w inj by rubr bulet, law enforc offl inj, init +C2906270|T037|AB|Y35.041D|ICD10CM|Lgl intervnt w inj by rubr bulet, law enforc offl inj, subs|Lgl intervnt w inj by rubr bulet, law enforc offl inj, subs +C2906271|T037|PT|Y35.041S|ICD10CM|Legal intervention involving injury by rubber bullet, law enforcement official injured, sequela|Legal intervention involving injury by rubber bullet, law enforcement official injured, sequela +C2906271|T037|AB|Y35.041S|ICD10CM|Lgl intervnt w inj by rubr bulet, law enforc offl inj, sqla|Lgl intervnt w inj by rubr bulet, law enforc offl inj, sqla +C2906272|T037|HT|Y35.042|ICD10CM|Legal intervention involving injury by rubber bullet, bystander injured|Legal intervention involving injury by rubber bullet, bystander injured +C2906272|T037|AB|Y35.042|ICD10CM|Legal intervnt w injury by rubr bulet, bystand injured|Legal intervnt w injury by rubr bulet, bystand injured +C2906273|T037|PT|Y35.042A|ICD10CM|Legal intervention involving injury by rubber bullet, bystander injured, initial encounter|Legal intervention involving injury by rubber bullet, bystander injured, initial encounter +C2906273|T037|AB|Y35.042A|ICD10CM|Legal intervnt w injury by rubr bulet, bystand injured, init|Legal intervnt w injury by rubr bulet, bystand injured, init +C2906274|T037|PT|Y35.042D|ICD10CM|Legal intervention involving injury by rubber bullet, bystander injured, subsequent encounter|Legal intervention involving injury by rubber bullet, bystander injured, subsequent encounter +C2906274|T037|AB|Y35.042D|ICD10CM|Legal intervnt w injury by rubr bulet, bystand injured, subs|Legal intervnt w injury by rubr bulet, bystand injured, subs +C2906275|T037|PT|Y35.042S|ICD10CM|Legal intervention involving injury by rubber bullet, bystander injured, sequela|Legal intervention involving injury by rubber bullet, bystander injured, sequela +C2906275|T037|AB|Y35.042S|ICD10CM|Legal intervnt w injury by rubr bulet, bystand inj, sequela|Legal intervnt w injury by rubr bulet, bystand inj, sequela +C2906276|T037|HT|Y35.043|ICD10CM|Legal intervention involving injury by rubber bullet, suspect injured|Legal intervention involving injury by rubber bullet, suspect injured +C2906276|T037|AB|Y35.043|ICD10CM|Legal intervnt w injury by rubr bulet, suspect injured|Legal intervnt w injury by rubr bulet, suspect injured +C2906277|T037|PT|Y35.043A|ICD10CM|Legal intervention involving injury by rubber bullet, suspect injured, initial encounter|Legal intervention involving injury by rubber bullet, suspect injured, initial encounter +C2906277|T037|AB|Y35.043A|ICD10CM|Legal intervnt w injury by rubr bulet, suspect injured, init|Legal intervnt w injury by rubr bulet, suspect injured, init +C2906278|T037|PT|Y35.043D|ICD10CM|Legal intervention involving injury by rubber bullet, suspect injured, subsequent encounter|Legal intervention involving injury by rubber bullet, suspect injured, subsequent encounter +C2906278|T037|AB|Y35.043D|ICD10CM|Legal intervnt w injury by rubr bulet, suspect injured, subs|Legal intervnt w injury by rubr bulet, suspect injured, subs +C2906279|T037|PT|Y35.043S|ICD10CM|Legal intervention involving injury by rubber bullet, suspect injured, sequela|Legal intervention involving injury by rubber bullet, suspect injured, sequela +C2906279|T037|AB|Y35.043S|ICD10CM|Legal intervnt w injury by rubr bulet, suspect inj, sequela|Legal intervnt w injury by rubr bulet, suspect inj, sequela +C5141022|T037|HT|Y35.049|ICD10CM|Legal intervention involving injury by rubber bullet, unspecified person injured|Legal intervention involving injury by rubber bullet, unspecified person injured +C5141022|T037|AB|Y35.049|ICD10CM|Legal intervnt w injury by rubr bulet, unsp person injured|Legal intervnt w injury by rubr bulet, unsp person injured +C5141023|T037|PT|Y35.049A|ICD10CM|Legal intervention involving injury by rubber bullet, unspecified person injured, initial encounter|Legal intervention involving injury by rubber bullet, unspecified person injured, initial encounter +C5141023|T037|AB|Y35.049A|ICD10CM|Legal intrvnt w injury by rubr bulet, unsp person inj, init|Legal intrvnt w injury by rubr bulet, unsp person inj, init +C5141024|T037|AB|Y35.049D|ICD10CM|Legal intrvnt w injury by rubr bulet, unsp person inj, subs|Legal intrvnt w injury by rubr bulet, unsp person inj, subs +C5141025|T037|PT|Y35.049S|ICD10CM|Legal intervention involving injury by rubber bullet, unspecified person injured, sequela|Legal intervention involving injury by rubber bullet, unspecified person injured, sequela +C5141025|T037|AB|Y35.049S|ICD10CM|Legal intrvnt w injury by rubr bulet, unsp person inj, sqla|Legal intrvnt w injury by rubr bulet, unsp person inj, sqla +C2906280|T037|AB|Y35.09|ICD10CM|Legal intervention involving other firearm discharge|Legal intervention involving other firearm discharge +C2906280|T037|HT|Y35.09|ICD10CM|Legal intervention involving other firearm discharge|Legal intervention involving other firearm discharge +C2906281|T037|HT|Y35.091|ICD10CM|Legal intervention involving other firearm discharge, law enforcement official injured|Legal intervention involving other firearm discharge, law enforcement official injured +C2906281|T037|AB|Y35.091|ICD10CM|Legal intervnt w firearm disch, law enforc offl injured|Legal intervnt w firearm disch, law enforc offl injured +C2906282|T037|AB|Y35.091A|ICD10CM|Legal intervnt w firearm disch, law enforc offl inj, init|Legal intervnt w firearm disch, law enforc offl inj, init +C2906283|T037|AB|Y35.091D|ICD10CM|Legal intervnt w firearm disch, law enforc offl inj, subs|Legal intervnt w firearm disch, law enforc offl inj, subs +C2906284|T037|PT|Y35.091S|ICD10CM|Legal intervention involving other firearm discharge, law enforcement official injured, sequela|Legal intervention involving other firearm discharge, law enforcement official injured, sequela +C2906284|T037|AB|Y35.091S|ICD10CM|Legal intervnt w firearm disch, law enforc offl inj, sequela|Legal intervnt w firearm disch, law enforc offl inj, sequela +C2906285|T037|HT|Y35.092|ICD10CM|Legal intervention involving other firearm discharge, bystander injured|Legal intervention involving other firearm discharge, bystander injured +C2906285|T037|AB|Y35.092|ICD10CM|Legal intervnt involving firearm discharge, bystand injured|Legal intervnt involving firearm discharge, bystand injured +C2906286|T037|PT|Y35.092A|ICD10CM|Legal intervention involving other firearm discharge, bystander injured, initial encounter|Legal intervention involving other firearm discharge, bystander injured, initial encounter +C2906286|T037|AB|Y35.092A|ICD10CM|Legal intervnt w firearm disch, bystand injured, init|Legal intervnt w firearm disch, bystand injured, init +C2906287|T037|PT|Y35.092D|ICD10CM|Legal intervention involving other firearm discharge, bystander injured, subsequent encounter|Legal intervention involving other firearm discharge, bystander injured, subsequent encounter +C2906287|T037|AB|Y35.092D|ICD10CM|Legal intervnt w firearm disch, bystand injured, subs|Legal intervnt w firearm disch, bystand injured, subs +C2906288|T037|PT|Y35.092S|ICD10CM|Legal intervention involving other firearm discharge, bystander injured, sequela|Legal intervention involving other firearm discharge, bystander injured, sequela +C2906288|T037|AB|Y35.092S|ICD10CM|Legal intervnt w firearm disch, bystand injured, sequela|Legal intervnt w firearm disch, bystand injured, sequela +C2906289|T037|HT|Y35.093|ICD10CM|Legal intervention involving other firearm discharge, suspect injured|Legal intervention involving other firearm discharge, suspect injured +C2906289|T037|AB|Y35.093|ICD10CM|Legal intervnt involving firearm discharge, suspect injured|Legal intervnt involving firearm discharge, suspect injured +C2906290|T037|PT|Y35.093A|ICD10CM|Legal intervention involving other firearm discharge, suspect injured, initial encounter|Legal intervention involving other firearm discharge, suspect injured, initial encounter +C2906290|T037|AB|Y35.093A|ICD10CM|Legal intervnt w firearm disch, suspect injured, init|Legal intervnt w firearm disch, suspect injured, init +C2906291|T037|PT|Y35.093D|ICD10CM|Legal intervention involving other firearm discharge, suspect injured, subsequent encounter|Legal intervention involving other firearm discharge, suspect injured, subsequent encounter +C2906291|T037|AB|Y35.093D|ICD10CM|Legal intervnt w firearm disch, suspect injured, subs|Legal intervnt w firearm disch, suspect injured, subs +C2906292|T037|PT|Y35.093S|ICD10CM|Legal intervention involving other firearm discharge, suspect injured, sequela|Legal intervention involving other firearm discharge, suspect injured, sequela +C2906292|T037|AB|Y35.093S|ICD10CM|Legal intervnt w firearm disch, suspect injured, sequela|Legal intervnt w firearm disch, suspect injured, sequela +C5141026|T037|HT|Y35.099|ICD10CM|Legal intervention involving other firearm discharge, unspecified person injured|Legal intervention involving other firearm discharge, unspecified person injured +C5141026|T037|AB|Y35.099|ICD10CM|Legal intervnt involving firearm disch, unsp person injured|Legal intervnt involving firearm disch, unsp person injured +C5141027|T037|PT|Y35.099A|ICD10CM|Legal intervention involving other firearm discharge, unspecified person injured, initial encounter|Legal intervention involving other firearm discharge, unspecified person injured, initial encounter +C5141027|T037|AB|Y35.099A|ICD10CM|Legal intervnt w firearm disch, unsp person injured, init|Legal intervnt w firearm disch, unsp person injured, init +C5141028|T037|AB|Y35.099D|ICD10CM|Legal intervnt w firearm disch, unsp person injured, subs|Legal intervnt w firearm disch, unsp person injured, subs +C5141029|T037|PT|Y35.099S|ICD10CM|Legal intervention involving other firearm discharge, unspecified person injured, sequela|Legal intervention involving other firearm discharge, unspecified person injured, sequela +C5141029|T037|AB|Y35.099S|ICD10CM|Legal intervnt w firearm disch, unsp person injured, sequela|Legal intervnt w firearm disch, unsp person injured, sequela +C0481095|T037|PX|Y35.1|ICD10|Injury due to legal intervention involving explosives|Injury due to legal intervention involving explosives +C0481095|T037|PS|Y35.1|ICD10|Legal intervention involving explosives|Legal intervention involving explosives +C0481095|T037|HT|Y35.1|ICD10CM|Legal intervention involving explosives|Legal intervention involving explosives +C0481095|T037|AB|Y35.1|ICD10CM|Legal intervention involving explosives|Legal intervention involving explosives +C2906293|T037|AB|Y35.10|ICD10CM|Legal intervention involving unspecified explosives|Legal intervention involving unspecified explosives +C2906293|T037|HT|Y35.10|ICD10CM|Legal intervention involving unspecified explosives|Legal intervention involving unspecified explosives +C2906294|T037|HT|Y35.101|ICD10CM|Legal intervention involving unspecified explosives, law enforcement official injured|Legal intervention involving unspecified explosives, law enforcement official injured +C2906294|T037|AB|Y35.101|ICD10CM|Legal intervnt w unsp explosv, law enforc offl injured|Legal intervnt w unsp explosv, law enforc offl injured +C2906295|T037|AB|Y35.101A|ICD10CM|Legal intervnt w unsp explosv, law enforc offl injured, init|Legal intervnt w unsp explosv, law enforc offl injured, init +C2906296|T037|AB|Y35.101D|ICD10CM|Legal intervnt w unsp explosv, law enforc offl injured, subs|Legal intervnt w unsp explosv, law enforc offl injured, subs +C2906297|T037|PT|Y35.101S|ICD10CM|Legal intervention involving unspecified explosives, law enforcement official injured, sequela|Legal intervention involving unspecified explosives, law enforcement official injured, sequela +C2906297|T037|AB|Y35.101S|ICD10CM|Legal intervnt w unsp explosv, law enforc offl inj, sequela|Legal intervnt w unsp explosv, law enforc offl inj, sequela +C2906298|T037|HT|Y35.102|ICD10CM|Legal intervention involving unspecified explosives, bystander injured|Legal intervention involving unspecified explosives, bystander injured +C2906298|T037|AB|Y35.102|ICD10CM|Legal intervnt involving unsp explosives, bystander injured|Legal intervnt involving unsp explosives, bystander injured +C2906299|T037|PT|Y35.102A|ICD10CM|Legal intervention involving unspecified explosives, bystander injured, initial encounter|Legal intervention involving unspecified explosives, bystander injured, initial encounter +C2906299|T037|AB|Y35.102A|ICD10CM|Legal intervnt involving unsp explosv, bystand injured, init|Legal intervnt involving unsp explosv, bystand injured, init +C2906300|T037|PT|Y35.102D|ICD10CM|Legal intervention involving unspecified explosives, bystander injured, subsequent encounter|Legal intervention involving unspecified explosives, bystander injured, subsequent encounter +C2906300|T037|AB|Y35.102D|ICD10CM|Legal intervnt involving unsp explosv, bystand injured, subs|Legal intervnt involving unsp explosv, bystand injured, subs +C2906301|T037|PT|Y35.102S|ICD10CM|Legal intervention involving unspecified explosives, bystander injured, sequela|Legal intervention involving unspecified explosives, bystander injured, sequela +C2906301|T037|AB|Y35.102S|ICD10CM|Legal intervnt w unsp explosv, bystand injured, sequela|Legal intervnt w unsp explosv, bystand injured, sequela +C2906302|T037|HT|Y35.103|ICD10CM|Legal intervention involving unspecified explosives, suspect injured|Legal intervention involving unspecified explosives, suspect injured +C2906302|T037|AB|Y35.103|ICD10CM|Legal intervnt involving unsp explosives, suspect injured|Legal intervnt involving unsp explosives, suspect injured +C2906303|T037|PT|Y35.103A|ICD10CM|Legal intervention involving unspecified explosives, suspect injured, initial encounter|Legal intervention involving unspecified explosives, suspect injured, initial encounter +C2906303|T037|AB|Y35.103A|ICD10CM|Legal intervnt involving unsp explosv, suspect injured, init|Legal intervnt involving unsp explosv, suspect injured, init +C2906304|T037|PT|Y35.103D|ICD10CM|Legal intervention involving unspecified explosives, suspect injured, subsequent encounter|Legal intervention involving unspecified explosives, suspect injured, subsequent encounter +C2906304|T037|AB|Y35.103D|ICD10CM|Legal intervnt involving unsp explosv, suspect injured, subs|Legal intervnt involving unsp explosv, suspect injured, subs +C2906305|T037|PT|Y35.103S|ICD10CM|Legal intervention involving unspecified explosives, suspect injured, sequela|Legal intervention involving unspecified explosives, suspect injured, sequela +C2906305|T037|AB|Y35.103S|ICD10CM|Legal intervnt w unsp explosv, suspect injured, sequela|Legal intervnt w unsp explosv, suspect injured, sequela +C5141030|T037|HT|Y35.109|ICD10CM|Legal intervention involving unspecified explosives, unspecified person injured|Legal intervention involving unspecified explosives, unspecified person injured +C5141030|T037|AB|Y35.109|ICD10CM|Legal intervnt involving unsp explosv, unsp person injured|Legal intervnt involving unsp explosv, unsp person injured +C5141031|T037|PT|Y35.109A|ICD10CM|Legal intervention involving unspecified explosives, unspecified person injured, initial encounter|Legal intervention involving unspecified explosives, unspecified person injured, initial encounter +C5141031|T037|AB|Y35.109A|ICD10CM|Legal intervnt w unsp explosv, unsp person injured, init|Legal intervnt w unsp explosv, unsp person injured, init +C5141032|T037|AB|Y35.109D|ICD10CM|Legal intervnt w unsp explosv, unsp person injured, subs|Legal intervnt w unsp explosv, unsp person injured, subs +C5141033|T037|PT|Y35.109S|ICD10CM|Legal intervention involving unspecified explosives, unspecified person injured, sequela|Legal intervention involving unspecified explosives, unspecified person injured, sequela +C5141033|T037|AB|Y35.109S|ICD10CM|Legal intervnt w unsp explosv, unsp person injured, sequela|Legal intervnt w unsp explosv, unsp person injured, sequela +C2906306|T037|AB|Y35.11|ICD10CM|Legal intervention involving injury by dynamite|Legal intervention involving injury by dynamite +C2906306|T037|HT|Y35.11|ICD10CM|Legal intervention involving injury by dynamite|Legal intervention involving injury by dynamite +C2906307|T037|HT|Y35.111|ICD10CM|Legal intervention involving injury by dynamite, law enforcement official injured|Legal intervention involving injury by dynamite, law enforcement official injured +C2906307|T037|AB|Y35.111|ICD10CM|Legal intervnt w injury by dynamite, law enforc offl injured|Legal intervnt w injury by dynamite, law enforc offl injured +C2906308|T037|PT|Y35.111A|ICD10CM|Legal intervention involving injury by dynamite, law enforcement official injured, initial encounter|Legal intervention involving injury by dynamite, law enforcement official injured, initial encounter +C2906308|T037|AB|Y35.111A|ICD10CM|Legal intervnt w inj by dynamite, law enforc offl inj, init|Legal intervnt w inj by dynamite, law enforc offl inj, init +C2906309|T037|AB|Y35.111D|ICD10CM|Legal intervnt w inj by dynamite, law enforc offl inj, subs|Legal intervnt w inj by dynamite, law enforc offl inj, subs +C2906310|T037|PT|Y35.111S|ICD10CM|Legal intervention involving injury by dynamite, law enforcement official injured, sequela|Legal intervention involving injury by dynamite, law enforcement official injured, sequela +C2906310|T037|AB|Y35.111S|ICD10CM|Legal intervnt w inj by dynamite, law enforc offl inj, sqla|Legal intervnt w inj by dynamite, law enforc offl inj, sqla +C2906311|T037|HT|Y35.112|ICD10CM|Legal intervention involving injury by dynamite, bystander injured|Legal intervention involving injury by dynamite, bystander injured +C2906311|T037|AB|Y35.112|ICD10CM|Legal intervnt involving injury by dynamite, bystand injured|Legal intervnt involving injury by dynamite, bystand injured +C2906312|T037|PT|Y35.112A|ICD10CM|Legal intervention involving injury by dynamite, bystander injured, initial encounter|Legal intervention involving injury by dynamite, bystander injured, initial encounter +C2906312|T037|AB|Y35.112A|ICD10CM|Legal intervnt w injury by dynamite, bystand injured, init|Legal intervnt w injury by dynamite, bystand injured, init +C2906313|T037|PT|Y35.112D|ICD10CM|Legal intervention involving injury by dynamite, bystander injured, subsequent encounter|Legal intervention involving injury by dynamite, bystander injured, subsequent encounter +C2906313|T037|AB|Y35.112D|ICD10CM|Legal intervnt w injury by dynamite, bystand injured, subs|Legal intervnt w injury by dynamite, bystand injured, subs +C2906314|T037|PT|Y35.112S|ICD10CM|Legal intervention involving injury by dynamite, bystander injured, sequela|Legal intervention involving injury by dynamite, bystander injured, sequela +C2906314|T037|AB|Y35.112S|ICD10CM|Legal intervnt w injury by dynamite, bystand inj, sequela|Legal intervnt w injury by dynamite, bystand inj, sequela +C2906315|T037|HT|Y35.113|ICD10CM|Legal intervention involving injury by dynamite, suspect injured|Legal intervention involving injury by dynamite, suspect injured +C2906315|T037|AB|Y35.113|ICD10CM|Legal intervnt involving injury by dynamite, suspect injured|Legal intervnt involving injury by dynamite, suspect injured +C2906316|T037|PT|Y35.113A|ICD10CM|Legal intervention involving injury by dynamite, suspect injured, initial encounter|Legal intervention involving injury by dynamite, suspect injured, initial encounter +C2906316|T037|AB|Y35.113A|ICD10CM|Legal intervnt w injury by dynamite, suspect injured, init|Legal intervnt w injury by dynamite, suspect injured, init +C2906317|T037|PT|Y35.113D|ICD10CM|Legal intervention involving injury by dynamite, suspect injured, subsequent encounter|Legal intervention involving injury by dynamite, suspect injured, subsequent encounter +C2906317|T037|AB|Y35.113D|ICD10CM|Legal intervnt w injury by dynamite, suspect injured, subs|Legal intervnt w injury by dynamite, suspect injured, subs +C2906318|T037|PT|Y35.113S|ICD10CM|Legal intervention involving injury by dynamite, suspect injured, sequela|Legal intervention involving injury by dynamite, suspect injured, sequela +C2906318|T037|AB|Y35.113S|ICD10CM|Legal intervnt w injury by dynamite, suspect inj, sequela|Legal intervnt w injury by dynamite, suspect inj, sequela +C5141034|T037|HT|Y35.119|ICD10CM|Legal intervention involving injury by dynamite, unspecified person injured|Legal intervention involving injury by dynamite, unspecified person injured +C5141034|T037|AB|Y35.119|ICD10CM|Legal intervnt w injury by dynamite, unsp person injured|Legal intervnt w injury by dynamite, unsp person injured +C5141035|T037|PT|Y35.119A|ICD10CM|Legal intervention involving injury by dynamite, unspecified person injured, initial encounter|Legal intervention involving injury by dynamite, unspecified person injured, initial encounter +C5141035|T037|AB|Y35.119A|ICD10CM|Legal intrvnt w injury by dynamite, unsp person inj, init|Legal intrvnt w injury by dynamite, unsp person inj, init +C5141036|T037|PT|Y35.119D|ICD10CM|Legal intervention involving injury by dynamite, unspecified person injured, subsequent encounter|Legal intervention involving injury by dynamite, unspecified person injured, subsequent encounter +C5141036|T037|AB|Y35.119D|ICD10CM|Legal intrvnt w injury by dynamite, unsp person inj, subs|Legal intrvnt w injury by dynamite, unsp person inj, subs +C5141037|T037|PT|Y35.119S|ICD10CM|Legal intervention involving injury by dynamite, unspecified person injured, sequela|Legal intervention involving injury by dynamite, unspecified person injured, sequela +C5141037|T037|AB|Y35.119S|ICD10CM|Legal intrvnt w injury by dynamite, unsp person inj, sequela|Legal intrvnt w injury by dynamite, unsp person inj, sequela +C2906319|T037|AB|Y35.12|ICD10CM|Legal intervention involving injury by explosive shell|Legal intervention involving injury by explosive shell +C2906319|T037|HT|Y35.12|ICD10CM|Legal intervention involving injury by explosive shell|Legal intervention involving injury by explosive shell +C2906320|T037|HT|Y35.121|ICD10CM|Legal intervention involving injury by explosive shell, law enforcement official injured|Legal intervention involving injury by explosive shell, law enforcement official injured +C2906320|T037|AB|Y35.121|ICD10CM|Legal intervnt w inj by explosv shell, law enforc offl inj|Legal intervnt w inj by explosv shell, law enforc offl inj +C2906321|T037|AB|Y35.121A|ICD10CM|Lgl intervnt w inj by explosv shl, law enforc offl inj, init|Lgl intervnt w inj by explosv shl, law enforc offl inj, init +C2906322|T037|AB|Y35.121D|ICD10CM|Lgl intervnt w inj by explosv shl, law enforc offl inj, subs|Lgl intervnt w inj by explosv shl, law enforc offl inj, subs +C2906323|T037|PT|Y35.121S|ICD10CM|Legal intervention involving injury by explosive shell, law enforcement official injured, sequela|Legal intervention involving injury by explosive shell, law enforcement official injured, sequela +C2906323|T037|AB|Y35.121S|ICD10CM|Lgl intervnt w inj by explosv shl, law enforc offl inj, sqla|Lgl intervnt w inj by explosv shl, law enforc offl inj, sqla +C2906324|T037|HT|Y35.122|ICD10CM|Legal intervention involving injury by explosive shell, bystander injured|Legal intervention involving injury by explosive shell, bystander injured +C2906324|T037|AB|Y35.122|ICD10CM|Legal intervnt w injury by explosv shell, bystand injured|Legal intervnt w injury by explosv shell, bystand injured +C2906325|T037|PT|Y35.122A|ICD10CM|Legal intervention involving injury by explosive shell, bystander injured, initial encounter|Legal intervention involving injury by explosive shell, bystander injured, initial encounter +C2906325|T037|AB|Y35.122A|ICD10CM|Legal intervnt w injury by explosv shell, bystand inj, init|Legal intervnt w injury by explosv shell, bystand inj, init +C2906326|T037|PT|Y35.122D|ICD10CM|Legal intervention involving injury by explosive shell, bystander injured, subsequent encounter|Legal intervention involving injury by explosive shell, bystander injured, subsequent encounter +C2906326|T037|AB|Y35.122D|ICD10CM|Legal intervnt w injury by explosv shell, bystand inj, subs|Legal intervnt w injury by explosv shell, bystand inj, subs +C2906327|T037|PT|Y35.122S|ICD10CM|Legal intervention involving injury by explosive shell, bystander injured, sequela|Legal intervention involving injury by explosive shell, bystander injured, sequela +C2906327|T037|AB|Y35.122S|ICD10CM|Legal intervnt w injury by explosv shell, bystand inj, sqla|Legal intervnt w injury by explosv shell, bystand inj, sqla +C2906328|T037|HT|Y35.123|ICD10CM|Legal intervention involving injury by explosive shell, suspect injured|Legal intervention involving injury by explosive shell, suspect injured +C2906328|T037|AB|Y35.123|ICD10CM|Legal intervnt w injury by explosv shell, suspect injured|Legal intervnt w injury by explosv shell, suspect injured +C2906329|T037|PT|Y35.123A|ICD10CM|Legal intervention involving injury by explosive shell, suspect injured, initial encounter|Legal intervention involving injury by explosive shell, suspect injured, initial encounter +C2906329|T037|AB|Y35.123A|ICD10CM|Legal intervnt w injury by explosv shell, suspect inj, init|Legal intervnt w injury by explosv shell, suspect inj, init +C2906330|T037|PT|Y35.123D|ICD10CM|Legal intervention involving injury by explosive shell, suspect injured, subsequent encounter|Legal intervention involving injury by explosive shell, suspect injured, subsequent encounter +C2906330|T037|AB|Y35.123D|ICD10CM|Legal intervnt w injury by explosv shell, suspect inj, subs|Legal intervnt w injury by explosv shell, suspect inj, subs +C2906331|T037|PT|Y35.123S|ICD10CM|Legal intervention involving injury by explosive shell, suspect injured, sequela|Legal intervention involving injury by explosive shell, suspect injured, sequela +C2906331|T037|AB|Y35.123S|ICD10CM|Legal intervnt w injury by explosv shell, suspect inj, sqla|Legal intervnt w injury by explosv shell, suspect inj, sqla +C5141038|T037|HT|Y35.129|ICD10CM|Legal intervention involving injury by explosive shell, unspecified person injured|Legal intervention involving injury by explosive shell, unspecified person injured +C5141038|T037|AB|Y35.129|ICD10CM|Legal intrvnt w injury by explosv shell, unsp person injured|Legal intrvnt w injury by explosv shell, unsp person injured +C5141039|T037|AB|Y35.129A|ICD10CM|Legal intrvnt w inj by explosv shell, unsp person inj, init|Legal intrvnt w inj by explosv shell, unsp person inj, init +C5141040|T037|AB|Y35.129D|ICD10CM|Legal intrvnt w inj by explosv shell, unsp person inj, subs|Legal intrvnt w inj by explosv shell, unsp person inj, subs +C5141041|T037|PT|Y35.129S|ICD10CM|Legal intervention involving injury by explosive shell, unspecified person injured, sequela|Legal intervention involving injury by explosive shell, unspecified person injured, sequela +C5141041|T037|AB|Y35.129S|ICD10CM|Legal intrvnt w inj by explosv shell, unsp person inj, sqla|Legal intrvnt w inj by explosv shell, unsp person inj, sqla +C2906332|T037|ET|Y35.19|ICD10CM|Legal intervention involving injury by grenade|Legal intervention involving injury by grenade +C2906333|T037|ET|Y35.19|ICD10CM|Legal intervention involving injury by mortar bomb|Legal intervention involving injury by mortar bomb +C2906334|T037|AB|Y35.19|ICD10CM|Legal intervention involving other explosives|Legal intervention involving other explosives +C2906334|T037|HT|Y35.19|ICD10CM|Legal intervention involving other explosives|Legal intervention involving other explosives +C2906335|T037|HT|Y35.191|ICD10CM|Legal intervention involving other explosives, law enforcement official injured|Legal intervention involving other explosives, law enforcement official injured +C2906335|T037|AB|Y35.191|ICD10CM|Legal intervnt w oth explosv, law enforc offl injured|Legal intervnt w oth explosv, law enforc offl injured +C2906336|T037|PT|Y35.191A|ICD10CM|Legal intervention involving other explosives, law enforcement official injured, initial encounter|Legal intervention involving other explosives, law enforcement official injured, initial encounter +C2906336|T037|AB|Y35.191A|ICD10CM|Legal intervnt w oth explosv, law enforc offl injured, init|Legal intervnt w oth explosv, law enforc offl injured, init +C2906337|T037|AB|Y35.191D|ICD10CM|Legal intervnt w oth explosv, law enforc offl injured, subs|Legal intervnt w oth explosv, law enforc offl injured, subs +C2906338|T037|PT|Y35.191S|ICD10CM|Legal intervention involving other explosives, law enforcement official injured, sequela|Legal intervention involving other explosives, law enforcement official injured, sequela +C2906338|T037|AB|Y35.191S|ICD10CM|Legal intervnt w oth explosv, law enforc offl inj, sequela|Legal intervnt w oth explosv, law enforc offl inj, sequela +C2906339|T037|HT|Y35.192|ICD10CM|Legal intervention involving other explosives, bystander injured|Legal intervention involving other explosives, bystander injured +C2906339|T037|AB|Y35.192|ICD10CM|Legal intervnt involving oth explosives, bystander injured|Legal intervnt involving oth explosives, bystander injured +C2906340|T037|PT|Y35.192A|ICD10CM|Legal intervention involving other explosives, bystander injured, initial encounter|Legal intervention involving other explosives, bystander injured, initial encounter +C2906340|T037|AB|Y35.192A|ICD10CM|Legal intervnt involving oth explosv, bystand injured, init|Legal intervnt involving oth explosv, bystand injured, init +C2906341|T037|PT|Y35.192D|ICD10CM|Legal intervention involving other explosives, bystander injured, subsequent encounter|Legal intervention involving other explosives, bystander injured, subsequent encounter +C2906341|T037|AB|Y35.192D|ICD10CM|Legal intervnt involving oth explosv, bystand injured, subs|Legal intervnt involving oth explosv, bystand injured, subs +C2906342|T037|PT|Y35.192S|ICD10CM|Legal intervention involving other explosives, bystander injured, sequela|Legal intervention involving other explosives, bystander injured, sequela +C2906342|T037|AB|Y35.192S|ICD10CM|Legal intervnt w oth explosv, bystand injured, sequela|Legal intervnt w oth explosv, bystand injured, sequela +C2906343|T037|AB|Y35.193|ICD10CM|Legal intervention involving oth explosives, suspect injured|Legal intervention involving oth explosives, suspect injured +C2906343|T037|HT|Y35.193|ICD10CM|Legal intervention involving other explosives, suspect injured|Legal intervention involving other explosives, suspect injured +C2906344|T037|PT|Y35.193A|ICD10CM|Legal intervention involving other explosives, suspect injured, initial encounter|Legal intervention involving other explosives, suspect injured, initial encounter +C2906344|T037|AB|Y35.193A|ICD10CM|Legal intervnt involving oth explosv, suspect injured, init|Legal intervnt involving oth explosv, suspect injured, init +C2906345|T037|PT|Y35.193D|ICD10CM|Legal intervention involving other explosives, suspect injured, subsequent encounter|Legal intervention involving other explosives, suspect injured, subsequent encounter +C2906345|T037|AB|Y35.193D|ICD10CM|Legal intervnt involving oth explosv, suspect injured, subs|Legal intervnt involving oth explosv, suspect injured, subs +C2906346|T037|PT|Y35.193S|ICD10CM|Legal intervention involving other explosives, suspect injured, sequela|Legal intervention involving other explosives, suspect injured, sequela +C2906346|T037|AB|Y35.193S|ICD10CM|Legal intervnt w oth explosv, suspect injured, sequela|Legal intervnt w oth explosv, suspect injured, sequela +C5141042|T037|HT|Y35.199|ICD10CM|Legal intervention involving other explosives, unspecified person injured|Legal intervention involving other explosives, unspecified person injured +C5141042|T037|AB|Y35.199|ICD10CM|Legal intervnt involving other explosv, unsp person injured|Legal intervnt involving other explosv, unsp person injured +C5141043|T037|PT|Y35.199A|ICD10CM|Legal intervention involving other explosives, unspecified person injured, initial encounter|Legal intervention involving other explosives, unspecified person injured, initial encounter +C5141043|T037|AB|Y35.199A|ICD10CM|Legal intervnt w other explosv, unsp person injured, init|Legal intervnt w other explosv, unsp person injured, init +C5141044|T037|PT|Y35.199D|ICD10CM|Legal intervention involving other explosives, unspecified person injured, subsequent encounter|Legal intervention involving other explosives, unspecified person injured, subsequent encounter +C5141044|T037|AB|Y35.199D|ICD10CM|Legal intervnt w other explosv, unsp person injured, subs|Legal intervnt w other explosv, unsp person injured, subs +C5141045|T037|PT|Y35.199S|ICD10CM|Legal intervention involving other explosives, unspecified person injured, sequela|Legal intervention involving other explosives, unspecified person injured, sequela +C5141045|T037|AB|Y35.199S|ICD10CM|Legal intervnt w other explosv, unsp person injured, sequela|Legal intervnt w other explosv, unsp person injured, sequela +C0481096|T037|PX|Y35.2|ICD10|Injury due to legal intervention involving gas|Injury due to legal intervention involving gas +C2906347|T037|ET|Y35.2|ICD10CM|Legal intervention involving asphyxiation by gas|Legal intervention involving asphyxiation by gas +C0481096|T037|PS|Y35.2|ICD10|Legal intervention involving gas|Legal intervention involving gas +C0481096|T037|HT|Y35.2|ICD10CM|Legal intervention involving gas|Legal intervention involving gas +C0481096|T037|AB|Y35.2|ICD10CM|Legal intervention involving gas|Legal intervention involving gas +C2906348|T037|ET|Y35.2|ICD10CM|Legal intervention involving poisoning by gas|Legal intervention involving poisoning by gas +C2906349|T037|AB|Y35.20|ICD10CM|Legal intervention involving unspecified gas|Legal intervention involving unspecified gas +C2906349|T037|HT|Y35.20|ICD10CM|Legal intervention involving unspecified gas|Legal intervention involving unspecified gas +C2906350|T037|HT|Y35.201|ICD10CM|Legal intervention involving unspecified gas, law enforcement official injured|Legal intervention involving unspecified gas, law enforcement official injured +C2906350|T037|AB|Y35.201|ICD10CM|Legal intervnt involving unsp gas, law enforc offl injured|Legal intervnt involving unsp gas, law enforc offl injured +C2906351|T037|PT|Y35.201A|ICD10CM|Legal intervention involving unspecified gas, law enforcement official injured, initial encounter|Legal intervention involving unspecified gas, law enforcement official injured, initial encounter +C2906351|T037|AB|Y35.201A|ICD10CM|Legal intervnt w unsp gas, law enforc offl injured, init|Legal intervnt w unsp gas, law enforc offl injured, init +C2906352|T037|PT|Y35.201D|ICD10CM|Legal intervention involving unspecified gas, law enforcement official injured, subsequent encounter|Legal intervention involving unspecified gas, law enforcement official injured, subsequent encounter +C2906352|T037|AB|Y35.201D|ICD10CM|Legal intervnt w unsp gas, law enforc offl injured, subs|Legal intervnt w unsp gas, law enforc offl injured, subs +C2906353|T037|PT|Y35.201S|ICD10CM|Legal intervention involving unspecified gas, law enforcement official injured, sequela|Legal intervention involving unspecified gas, law enforcement official injured, sequela +C2906353|T037|AB|Y35.201S|ICD10CM|Legal intervnt w unsp gas, law enforc offl injured, sequela|Legal intervnt w unsp gas, law enforc offl injured, sequela +C2906354|T037|AB|Y35.202|ICD10CM|Legal intervention involving unsp gas, bystander injured|Legal intervention involving unsp gas, bystander injured +C2906354|T037|HT|Y35.202|ICD10CM|Legal intervention involving unspecified gas, bystander injured|Legal intervention involving unspecified gas, bystander injured +C2906355|T037|PT|Y35.202A|ICD10CM|Legal intervention involving unspecified gas, bystander injured, initial encounter|Legal intervention involving unspecified gas, bystander injured, initial encounter +C2906355|T037|AB|Y35.202A|ICD10CM|Legal intervnt involving unsp gas, bystander injured, init|Legal intervnt involving unsp gas, bystander injured, init +C2906356|T037|PT|Y35.202D|ICD10CM|Legal intervention involving unspecified gas, bystander injured, subsequent encounter|Legal intervention involving unspecified gas, bystander injured, subsequent encounter +C2906356|T037|AB|Y35.202D|ICD10CM|Legal intervnt involving unsp gas, bystander injured, subs|Legal intervnt involving unsp gas, bystander injured, subs +C2906357|T037|PT|Y35.202S|ICD10CM|Legal intervention involving unspecified gas, bystander injured, sequela|Legal intervention involving unspecified gas, bystander injured, sequela +C2906357|T037|AB|Y35.202S|ICD10CM|Legal intervnt involving unsp gas, bystand injured, sequela|Legal intervnt involving unsp gas, bystand injured, sequela +C2906358|T037|AB|Y35.203|ICD10CM|Legal intervention involving unsp gas, suspect injured|Legal intervention involving unsp gas, suspect injured +C2906358|T037|HT|Y35.203|ICD10CM|Legal intervention involving unspecified gas, suspect injured|Legal intervention involving unspecified gas, suspect injured +C2906359|T037|AB|Y35.203A|ICD10CM|Legal intervention involving unsp gas, suspect injured, init|Legal intervention involving unsp gas, suspect injured, init +C2906359|T037|PT|Y35.203A|ICD10CM|Legal intervention involving unspecified gas, suspect injured, initial encounter|Legal intervention involving unspecified gas, suspect injured, initial encounter +C2906360|T037|AB|Y35.203D|ICD10CM|Legal intervention involving unsp gas, suspect injured, subs|Legal intervention involving unsp gas, suspect injured, subs +C2906360|T037|PT|Y35.203D|ICD10CM|Legal intervention involving unspecified gas, suspect injured, subsequent encounter|Legal intervention involving unspecified gas, suspect injured, subsequent encounter +C2906361|T037|PT|Y35.203S|ICD10CM|Legal intervention involving unspecified gas, suspect injured, sequela|Legal intervention involving unspecified gas, suspect injured, sequela +C2906361|T037|AB|Y35.203S|ICD10CM|Legal intervnt involving unsp gas, suspect injured, sequela|Legal intervnt involving unsp gas, suspect injured, sequela +C5141046|T037|HT|Y35.209|ICD10CM|Legal intervention involving unspecified gas, unspecified person injured|Legal intervention involving unspecified gas, unspecified person injured +C5141046|T037|AB|Y35.209|ICD10CM|Legal intervnt involving unsp gas, unsp person injured|Legal intervnt involving unsp gas, unsp person injured +C5141047|T037|PT|Y35.209A|ICD10CM|Legal intervention involving unspecified gas, unspecified person injured, initial encounter|Legal intervention involving unspecified gas, unspecified person injured, initial encounter +C5141047|T037|AB|Y35.209A|ICD10CM|Legal intervnt involving unsp gas, unsp person injured, init|Legal intervnt involving unsp gas, unsp person injured, init +C5141048|T037|PT|Y35.209D|ICD10CM|Legal intervention involving unspecified gas, unspecified person injured, subsequent encounter|Legal intervention involving unspecified gas, unspecified person injured, subsequent encounter +C5141048|T037|AB|Y35.209D|ICD10CM|Legal intervnt involving unsp gas, unsp person injured, subs|Legal intervnt involving unsp gas, unsp person injured, subs +C5141049|T037|PT|Y35.209S|ICD10CM|Legal intervention involving unspecified gas, unspecified person injured, sequela|Legal intervention involving unspecified gas, unspecified person injured, sequela +C5141049|T037|AB|Y35.209S|ICD10CM|Legal intervnt w unsp gas, unsp person injured, sequela|Legal intervnt w unsp gas, unsp person injured, sequela +C2906362|T037|AB|Y35.21|ICD10CM|Legal intervention involving injury by tear gas|Legal intervention involving injury by tear gas +C2906362|T037|HT|Y35.21|ICD10CM|Legal intervention involving injury by tear gas|Legal intervention involving injury by tear gas +C2906363|T037|HT|Y35.211|ICD10CM|Legal intervention involving injury by tear gas, law enforcement official injured|Legal intervention involving injury by tear gas, law enforcement official injured +C2906363|T037|AB|Y35.211|ICD10CM|Legal intervnt w injury by tear gas, law enforc offl injured|Legal intervnt w injury by tear gas, law enforc offl injured +C2906364|T037|PT|Y35.211A|ICD10CM|Legal intervention involving injury by tear gas, law enforcement official injured, initial encounter|Legal intervention involving injury by tear gas, law enforcement official injured, initial encounter +C2906364|T037|AB|Y35.211A|ICD10CM|Legal intervnt w inj by tear gas, law enforc offl inj, init|Legal intervnt w inj by tear gas, law enforc offl inj, init +C2906365|T037|AB|Y35.211D|ICD10CM|Legal intervnt w inj by tear gas, law enforc offl inj, subs|Legal intervnt w inj by tear gas, law enforc offl inj, subs +C2906366|T037|PT|Y35.211S|ICD10CM|Legal intervention involving injury by tear gas, law enforcement official injured, sequela|Legal intervention involving injury by tear gas, law enforcement official injured, sequela +C2906366|T037|AB|Y35.211S|ICD10CM|Legal intervnt w inj by tear gas, law enforc offl inj, sqla|Legal intervnt w inj by tear gas, law enforc offl inj, sqla +C2906367|T037|HT|Y35.212|ICD10CM|Legal intervention involving injury by tear gas, bystander injured|Legal intervention involving injury by tear gas, bystander injured +C2906367|T037|AB|Y35.212|ICD10CM|Legal intervnt involving injury by tear gas, bystand injured|Legal intervnt involving injury by tear gas, bystand injured +C2906368|T037|PT|Y35.212A|ICD10CM|Legal intervention involving injury by tear gas, bystander injured, initial encounter|Legal intervention involving injury by tear gas, bystander injured, initial encounter +C2906368|T037|AB|Y35.212A|ICD10CM|Legal intervnt w injury by tear gas, bystand injured, init|Legal intervnt w injury by tear gas, bystand injured, init +C2906369|T037|PT|Y35.212D|ICD10CM|Legal intervention involving injury by tear gas, bystander injured, subsequent encounter|Legal intervention involving injury by tear gas, bystander injured, subsequent encounter +C2906369|T037|AB|Y35.212D|ICD10CM|Legal intervnt w injury by tear gas, bystand injured, subs|Legal intervnt w injury by tear gas, bystand injured, subs +C2906370|T037|PT|Y35.212S|ICD10CM|Legal intervention involving injury by tear gas, bystander injured, sequela|Legal intervention involving injury by tear gas, bystander injured, sequela +C2906370|T037|AB|Y35.212S|ICD10CM|Legal intervnt w injury by tear gas, bystand inj, sequela|Legal intervnt w injury by tear gas, bystand inj, sequela +C2906371|T037|HT|Y35.213|ICD10CM|Legal intervention involving injury by tear gas, suspect injured|Legal intervention involving injury by tear gas, suspect injured +C2906371|T037|AB|Y35.213|ICD10CM|Legal intervnt involving injury by tear gas, suspect injured|Legal intervnt involving injury by tear gas, suspect injured +C2906372|T037|PT|Y35.213A|ICD10CM|Legal intervention involving injury by tear gas, suspect injured, initial encounter|Legal intervention involving injury by tear gas, suspect injured, initial encounter +C2906372|T037|AB|Y35.213A|ICD10CM|Legal intervnt w injury by tear gas, suspect injured, init|Legal intervnt w injury by tear gas, suspect injured, init +C2906373|T037|PT|Y35.213D|ICD10CM|Legal intervention involving injury by tear gas, suspect injured, subsequent encounter|Legal intervention involving injury by tear gas, suspect injured, subsequent encounter +C2906373|T037|AB|Y35.213D|ICD10CM|Legal intervnt w injury by tear gas, suspect injured, subs|Legal intervnt w injury by tear gas, suspect injured, subs +C2906374|T037|PT|Y35.213S|ICD10CM|Legal intervention involving injury by tear gas, suspect injured, sequela|Legal intervention involving injury by tear gas, suspect injured, sequela +C2906374|T037|AB|Y35.213S|ICD10CM|Legal intervnt w injury by tear gas, suspect inj, sequela|Legal intervnt w injury by tear gas, suspect inj, sequela +C5141050|T037|HT|Y35.219|ICD10CM|Legal intervention involving injury by tear gas, unspecified person injured|Legal intervention involving injury by tear gas, unspecified person injured +C5141050|T037|AB|Y35.219|ICD10CM|Legal intervnt w injury by tear gas, unsp person injured|Legal intervnt w injury by tear gas, unsp person injured +C5141051|T037|PT|Y35.219A|ICD10CM|Legal intervention involving injury by tear gas, unspecified person injured, initial encounter|Legal intervention involving injury by tear gas, unspecified person injured, initial encounter +C5141051|T037|AB|Y35.219A|ICD10CM|Legal intrvnt w injury by tear gas, unsp person inj, init|Legal intrvnt w injury by tear gas, unsp person inj, init +C5141052|T037|PT|Y35.219D|ICD10CM|Legal intervention involving injury by tear gas, unspecified person injured, subsequent encounter|Legal intervention involving injury by tear gas, unspecified person injured, subsequent encounter +C5141052|T037|AB|Y35.219D|ICD10CM|Legal intrvnt w injury by tear gas, unsp person inj, subs|Legal intrvnt w injury by tear gas, unsp person inj, subs +C5141053|T037|PT|Y35.219S|ICD10CM|Legal intervention involving injury by tear gas, unspecified person injured, sequela|Legal intervention involving injury by tear gas, unspecified person injured, sequela +C5141053|T037|AB|Y35.219S|ICD10CM|Legal intrvnt w injury by tear gas, unsp person inj, sequela|Legal intrvnt w injury by tear gas, unsp person inj, sequela +C2906375|T037|AB|Y35.29|ICD10CM|Legal intervention involving other gas|Legal intervention involving other gas +C2906375|T037|HT|Y35.29|ICD10CM|Legal intervention involving other gas|Legal intervention involving other gas +C2906376|T037|HT|Y35.291|ICD10CM|Legal intervention involving other gas, law enforcement official injured|Legal intervention involving other gas, law enforcement official injured +C2906376|T037|AB|Y35.291|ICD10CM|Legal intervnt involving oth gas, law enforc offl injured|Legal intervnt involving oth gas, law enforc offl injured +C2906377|T037|PT|Y35.291A|ICD10CM|Legal intervention involving other gas, law enforcement official injured, initial encounter|Legal intervention involving other gas, law enforcement official injured, initial encounter +C2906377|T037|AB|Y35.291A|ICD10CM|Legal intervnt w oth gas, law enforc offl injured, init|Legal intervnt w oth gas, law enforc offl injured, init +C2906378|T037|PT|Y35.291D|ICD10CM|Legal intervention involving other gas, law enforcement official injured, subsequent encounter|Legal intervention involving other gas, law enforcement official injured, subsequent encounter +C2906378|T037|AB|Y35.291D|ICD10CM|Legal intervnt w oth gas, law enforc offl injured, subs|Legal intervnt w oth gas, law enforc offl injured, subs +C2906379|T037|PT|Y35.291S|ICD10CM|Legal intervention involving other gas, law enforcement official injured, sequela|Legal intervention involving other gas, law enforcement official injured, sequela +C2906379|T037|AB|Y35.291S|ICD10CM|Legal intervnt w oth gas, law enforc offl injured, sequela|Legal intervnt w oth gas, law enforc offl injured, sequela +C2906380|T037|AB|Y35.292|ICD10CM|Legal intervention involving other gas, bystander injured|Legal intervention involving other gas, bystander injured +C2906380|T037|HT|Y35.292|ICD10CM|Legal intervention involving other gas, bystander injured|Legal intervention involving other gas, bystander injured +C2906381|T037|PT|Y35.292A|ICD10CM|Legal intervention involving other gas, bystander injured, initial encounter|Legal intervention involving other gas, bystander injured, initial encounter +C2906381|T037|AB|Y35.292A|ICD10CM|Legal intervnt involving oth gas, bystander injured, init|Legal intervnt involving oth gas, bystander injured, init +C2906382|T037|PT|Y35.292D|ICD10CM|Legal intervention involving other gas, bystander injured, subsequent encounter|Legal intervention involving other gas, bystander injured, subsequent encounter +C2906382|T037|AB|Y35.292D|ICD10CM|Legal intervnt involving oth gas, bystander injured, subs|Legal intervnt involving oth gas, bystander injured, subs +C2906383|T037|PT|Y35.292S|ICD10CM|Legal intervention involving other gas, bystander injured, sequela|Legal intervention involving other gas, bystander injured, sequela +C2906383|T037|AB|Y35.292S|ICD10CM|Legal intervnt involving oth gas, bystander injured, sequela|Legal intervnt involving oth gas, bystander injured, sequela +C2906384|T037|AB|Y35.293|ICD10CM|Legal intervention involving other gas, suspect injured|Legal intervention involving other gas, suspect injured +C2906384|T037|HT|Y35.293|ICD10CM|Legal intervention involving other gas, suspect injured|Legal intervention involving other gas, suspect injured +C2906385|T037|AB|Y35.293A|ICD10CM|Legal intervention involving oth gas, suspect injured, init|Legal intervention involving oth gas, suspect injured, init +C2906385|T037|PT|Y35.293A|ICD10CM|Legal intervention involving other gas, suspect injured, initial encounter|Legal intervention involving other gas, suspect injured, initial encounter +C2906386|T037|AB|Y35.293D|ICD10CM|Legal intervention involving oth gas, suspect injured, subs|Legal intervention involving oth gas, suspect injured, subs +C2906386|T037|PT|Y35.293D|ICD10CM|Legal intervention involving other gas, suspect injured, subsequent encounter|Legal intervention involving other gas, suspect injured, subsequent encounter +C2906387|T037|PT|Y35.293S|ICD10CM|Legal intervention involving other gas, suspect injured, sequela|Legal intervention involving other gas, suspect injured, sequela +C2906387|T037|AB|Y35.293S|ICD10CM|Legal intervnt involving oth gas, suspect injured, sequela|Legal intervnt involving oth gas, suspect injured, sequela +C5141054|T037|HT|Y35.299|ICD10CM|Legal intervention involving other gas, unspecified person injured|Legal intervention involving other gas, unspecified person injured +C5141054|T037|AB|Y35.299|ICD10CM|Legal intervnt involving other gas, unsp person injured|Legal intervnt involving other gas, unsp person injured +C5141055|T037|PT|Y35.299A|ICD10CM|Legal intervention involving other gas, unspecified person injured, initial encounter|Legal intervention involving other gas, unspecified person injured, initial encounter +C5141055|T037|AB|Y35.299A|ICD10CM|Legal intervnt w other gas, unsp person injured, init|Legal intervnt w other gas, unsp person injured, init +C5141056|T037|PT|Y35.299D|ICD10CM|Legal intervention involving other gas, unspecified person injured, subsequent encounter|Legal intervention involving other gas, unspecified person injured, subsequent encounter +C5141056|T037|AB|Y35.299D|ICD10CM|Legal intervnt w other gas, unsp person injured, subs|Legal intervnt w other gas, unsp person injured, subs +C5141057|T037|PT|Y35.299S|ICD10CM|Legal intervention involving other gas, unspecified person injured, sequela|Legal intervention involving other gas, unspecified person injured, sequela +C5141057|T037|AB|Y35.299S|ICD10CM|Legal intervnt w other gas, unsp person injured, sequela|Legal intervnt w other gas, unsp person injured, sequela +C0481097|T037|PX|Y35.3|ICD10|Injury due to legal intervention involving blunt objects|Injury due to legal intervention involving blunt objects +C2906388|T037|ET|Y35.3|ICD10CM|Legal intervention involving being hit or struck by blunt object|Legal intervention involving being hit or struck by blunt object +C0481097|T037|PS|Y35.3|ICD10|Legal intervention involving blunt objects|Legal intervention involving blunt objects +C0481097|T037|HT|Y35.3|ICD10CM|Legal intervention involving blunt objects|Legal intervention involving blunt objects +C0481097|T037|AB|Y35.3|ICD10CM|Legal intervention involving blunt objects|Legal intervention involving blunt objects +C2906389|T037|AB|Y35.30|ICD10CM|Legal intervention involving unspecified blunt objects|Legal intervention involving unspecified blunt objects +C2906389|T037|HT|Y35.30|ICD10CM|Legal intervention involving unspecified blunt objects|Legal intervention involving unspecified blunt objects +C2906390|T037|HT|Y35.301|ICD10CM|Legal intervention involving unspecified blunt objects, law enforcement official injured|Legal intervention involving unspecified blunt objects, law enforcement official injured +C2906390|T037|AB|Y35.301|ICD10CM|Legal intervnt w unsp blunt objects, law enforc offl injured|Legal intervnt w unsp blunt objects, law enforc offl injured +C2906391|T037|AB|Y35.301A|ICD10CM|Legal intervnt w unsp blunt obj, law enforc offl inj, init|Legal intervnt w unsp blunt obj, law enforc offl inj, init +C2906392|T037|AB|Y35.301D|ICD10CM|Legal intervnt w unsp blunt obj, law enforc offl inj, subs|Legal intervnt w unsp blunt obj, law enforc offl inj, subs +C2906393|T037|PT|Y35.301S|ICD10CM|Legal intervention involving unspecified blunt objects, law enforcement official injured, sequela|Legal intervention involving unspecified blunt objects, law enforcement official injured, sequela +C2906393|T037|AB|Y35.301S|ICD10CM|Legal intervnt w unsp blunt obj, law enforc offl inj, sqla|Legal intervnt w unsp blunt obj, law enforc offl inj, sqla +C2906394|T037|HT|Y35.302|ICD10CM|Legal intervention involving unspecified blunt objects, bystander injured|Legal intervention involving unspecified blunt objects, bystander injured +C2906394|T037|AB|Y35.302|ICD10CM|Legal intervnt involving unsp blunt objects, bystand injured|Legal intervnt involving unsp blunt objects, bystand injured +C2906395|T037|PT|Y35.302A|ICD10CM|Legal intervention involving unspecified blunt objects, bystander injured, initial encounter|Legal intervention involving unspecified blunt objects, bystander injured, initial encounter +C2906395|T037|AB|Y35.302A|ICD10CM|Legal intervnt w unsp blunt objects, bystand injured, init|Legal intervnt w unsp blunt objects, bystand injured, init +C2906396|T037|PT|Y35.302D|ICD10CM|Legal intervention involving unspecified blunt objects, bystander injured, subsequent encounter|Legal intervention involving unspecified blunt objects, bystander injured, subsequent encounter +C2906396|T037|AB|Y35.302D|ICD10CM|Legal intervnt w unsp blunt objects, bystand injured, subs|Legal intervnt w unsp blunt objects, bystand injured, subs +C2906397|T037|PT|Y35.302S|ICD10CM|Legal intervention involving unspecified blunt objects, bystander injured, sequela|Legal intervention involving unspecified blunt objects, bystander injured, sequela +C2906397|T037|AB|Y35.302S|ICD10CM|Legal intervnt w unsp blunt objects, bystand inj, sequela|Legal intervnt w unsp blunt objects, bystand inj, sequela +C2906398|T037|HT|Y35.303|ICD10CM|Legal intervention involving unspecified blunt objects, suspect injured|Legal intervention involving unspecified blunt objects, suspect injured +C2906398|T037|AB|Y35.303|ICD10CM|Legal intervnt involving unsp blunt objects, suspect injured|Legal intervnt involving unsp blunt objects, suspect injured +C2906399|T037|PT|Y35.303A|ICD10CM|Legal intervention involving unspecified blunt objects, suspect injured, initial encounter|Legal intervention involving unspecified blunt objects, suspect injured, initial encounter +C2906399|T037|AB|Y35.303A|ICD10CM|Legal intervnt w unsp blunt objects, suspect injured, init|Legal intervnt w unsp blunt objects, suspect injured, init +C2906400|T037|PT|Y35.303D|ICD10CM|Legal intervention involving unspecified blunt objects, suspect injured, subsequent encounter|Legal intervention involving unspecified blunt objects, suspect injured, subsequent encounter +C2906400|T037|AB|Y35.303D|ICD10CM|Legal intervnt w unsp blunt objects, suspect injured, subs|Legal intervnt w unsp blunt objects, suspect injured, subs +C2906401|T037|PT|Y35.303S|ICD10CM|Legal intervention involving unspecified blunt objects, suspect injured, sequela|Legal intervention involving unspecified blunt objects, suspect injured, sequela +C2906401|T037|AB|Y35.303S|ICD10CM|Legal intervnt w unsp blunt objects, suspect inj, sequela|Legal intervnt w unsp blunt objects, suspect inj, sequela +C5141058|T037|HT|Y35.309|ICD10CM|Legal intervention involving unspecified blunt objects, unspecified person injured|Legal intervention involving unspecified blunt objects, unspecified person injured +C5141058|T037|AB|Y35.309|ICD10CM|Legal intervnt w unsp blunt objects, unsp person injured|Legal intervnt w unsp blunt objects, unsp person injured +C5141059|T037|AB|Y35.309A|ICD10CM|Legal intrvnt w unsp blunt objects, unsp person inj, init|Legal intrvnt w unsp blunt objects, unsp person inj, init +C5141060|T037|AB|Y35.309D|ICD10CM|Legal intrvnt w unsp blunt objects, unsp person inj, subs|Legal intrvnt w unsp blunt objects, unsp person inj, subs +C5141061|T037|PT|Y35.309S|ICD10CM|Legal intervention involving unspecified blunt objects, unspecified person injured, sequela|Legal intervention involving unspecified blunt objects, unspecified person injured, sequela +C5141061|T037|AB|Y35.309S|ICD10CM|Legal intrvnt w unsp blunt objects, unsp person inj, sequela|Legal intrvnt w unsp blunt objects, unsp person inj, sequela +C2906402|T037|AB|Y35.31|ICD10CM|Legal intervention involving baton|Legal intervention involving baton +C2906402|T037|HT|Y35.31|ICD10CM|Legal intervention involving baton|Legal intervention involving baton +C2906403|T037|AB|Y35.311|ICD10CM|Legal intervention involving baton, law enforc offl injured|Legal intervention involving baton, law enforc offl injured +C2906403|T037|HT|Y35.311|ICD10CM|Legal intervention involving baton, law enforcement official injured|Legal intervention involving baton, law enforcement official injured +C2906404|T037|PT|Y35.311A|ICD10CM|Legal intervention involving baton, law enforcement official injured, initial encounter|Legal intervention involving baton, law enforcement official injured, initial encounter +C2906404|T037|AB|Y35.311A|ICD10CM|Legal intervnt w baton, law enforc offl injured, init|Legal intervnt w baton, law enforc offl injured, init +C2906405|T037|PT|Y35.311D|ICD10CM|Legal intervention involving baton, law enforcement official injured, subsequent encounter|Legal intervention involving baton, law enforcement official injured, subsequent encounter +C2906405|T037|AB|Y35.311D|ICD10CM|Legal intervnt w baton, law enforc offl injured, subs|Legal intervnt w baton, law enforc offl injured, subs +C2906406|T037|PT|Y35.311S|ICD10CM|Legal intervention involving baton, law enforcement official injured, sequela|Legal intervention involving baton, law enforcement official injured, sequela +C2906406|T037|AB|Y35.311S|ICD10CM|Legal intervnt w baton, law enforc offl injured, sequela|Legal intervnt w baton, law enforc offl injured, sequela +C2906407|T037|AB|Y35.312|ICD10CM|Legal intervention involving baton, bystander injured|Legal intervention involving baton, bystander injured +C2906407|T037|HT|Y35.312|ICD10CM|Legal intervention involving baton, bystander injured|Legal intervention involving baton, bystander injured +C2906408|T037|AB|Y35.312A|ICD10CM|Legal intervention involving baton, bystander injured, init|Legal intervention involving baton, bystander injured, init +C2906408|T037|PT|Y35.312A|ICD10CM|Legal intervention involving baton, bystander injured, initial encounter|Legal intervention involving baton, bystander injured, initial encounter +C2906409|T037|AB|Y35.312D|ICD10CM|Legal intervention involving baton, bystander injured, subs|Legal intervention involving baton, bystander injured, subs +C2906409|T037|PT|Y35.312D|ICD10CM|Legal intervention involving baton, bystander injured, subsequent encounter|Legal intervention involving baton, bystander injured, subsequent encounter +C2906410|T037|PT|Y35.312S|ICD10CM|Legal intervention involving baton, bystander injured, sequela|Legal intervention involving baton, bystander injured, sequela +C2906410|T037|AB|Y35.312S|ICD10CM|Legal intervnt involving baton, bystander injured, sequela|Legal intervnt involving baton, bystander injured, sequela +C2906411|T037|AB|Y35.313|ICD10CM|Legal intervention involving baton, suspect injured|Legal intervention involving baton, suspect injured +C2906411|T037|HT|Y35.313|ICD10CM|Legal intervention involving baton, suspect injured|Legal intervention involving baton, suspect injured +C2906412|T037|AB|Y35.313A|ICD10CM|Legal intervention involving baton, suspect injured, init|Legal intervention involving baton, suspect injured, init +C2906412|T037|PT|Y35.313A|ICD10CM|Legal intervention involving baton, suspect injured, initial encounter|Legal intervention involving baton, suspect injured, initial encounter +C2906413|T037|AB|Y35.313D|ICD10CM|Legal intervention involving baton, suspect injured, subs|Legal intervention involving baton, suspect injured, subs +C2906413|T037|PT|Y35.313D|ICD10CM|Legal intervention involving baton, suspect injured, subsequent encounter|Legal intervention involving baton, suspect injured, subsequent encounter +C2906414|T037|AB|Y35.313S|ICD10CM|Legal intervention involving baton, suspect injured, sequela|Legal intervention involving baton, suspect injured, sequela +C2906414|T037|PT|Y35.313S|ICD10CM|Legal intervention involving baton, suspect injured, sequela|Legal intervention involving baton, suspect injured, sequela +C5141062|T037|HT|Y35.319|ICD10CM|Legal intervention involving baton, unspecified person injured|Legal intervention involving baton, unspecified person injured +C5141062|T037|AB|Y35.319|ICD10CM|Legal intervnt involving baton, unspecified person injured|Legal intervnt involving baton, unspecified person injured +C5141063|T037|PT|Y35.319A|ICD10CM|Legal intervention involving baton, unspecified person injured, initial encounter|Legal intervention involving baton, unspecified person injured, initial encounter +C5141063|T037|AB|Y35.319A|ICD10CM|Legal intervnt involving baton, unsp person injured, init|Legal intervnt involving baton, unsp person injured, init +C5141064|T037|PT|Y35.319D|ICD10CM|Legal intervention involving baton, unspecified person injured, subsequent encounter|Legal intervention involving baton, unspecified person injured, subsequent encounter +C5141064|T037|AB|Y35.319D|ICD10CM|Legal intervnt involving baton, unsp person injured, subs|Legal intervnt involving baton, unsp person injured, subs +C5141065|T037|PT|Y35.319S|ICD10CM|Legal intervention involving baton, unspecified person injured, sequela|Legal intervention involving baton, unspecified person injured, sequela +C5141065|T037|AB|Y35.319S|ICD10CM|Legal intervnt involving baton, unsp person injured, sequela|Legal intervnt involving baton, unsp person injured, sequela +C2906415|T037|AB|Y35.39|ICD10CM|Legal intervention involving other blunt objects|Legal intervention involving other blunt objects +C2906415|T037|HT|Y35.39|ICD10CM|Legal intervention involving other blunt objects|Legal intervention involving other blunt objects +C2906416|T037|HT|Y35.391|ICD10CM|Legal intervention involving other blunt objects, law enforcement official injured|Legal intervention involving other blunt objects, law enforcement official injured +C2906416|T037|AB|Y35.391|ICD10CM|Legal intervnt w oth blunt objects, law enforc offl injured|Legal intervnt w oth blunt objects, law enforc offl injured +C2906417|T037|AB|Y35.391A|ICD10CM|Legal intervnt w oth blunt obj, law enforc offl inj, init|Legal intervnt w oth blunt obj, law enforc offl inj, init +C2906418|T037|AB|Y35.391D|ICD10CM|Legal intervnt w oth blunt obj, law enforc offl inj, subs|Legal intervnt w oth blunt obj, law enforc offl inj, subs +C2906419|T037|PT|Y35.391S|ICD10CM|Legal intervention involving other blunt objects, law enforcement official injured, sequela|Legal intervention involving other blunt objects, law enforcement official injured, sequela +C2906419|T037|AB|Y35.391S|ICD10CM|Legal intervnt w oth blunt obj, law enforc offl inj, sequela|Legal intervnt w oth blunt obj, law enforc offl inj, sequela +C2906420|T037|HT|Y35.392|ICD10CM|Legal intervention involving other blunt objects, bystander injured|Legal intervention involving other blunt objects, bystander injured +C2906420|T037|AB|Y35.392|ICD10CM|Legal intervnt involving oth blunt objects, bystand injured|Legal intervnt involving oth blunt objects, bystand injured +C2906421|T037|PT|Y35.392A|ICD10CM|Legal intervention involving other blunt objects, bystander injured, initial encounter|Legal intervention involving other blunt objects, bystander injured, initial encounter +C2906421|T037|AB|Y35.392A|ICD10CM|Legal intervnt w oth blunt objects, bystand injured, init|Legal intervnt w oth blunt objects, bystand injured, init +C2906422|T037|PT|Y35.392D|ICD10CM|Legal intervention involving other blunt objects, bystander injured, subsequent encounter|Legal intervention involving other blunt objects, bystander injured, subsequent encounter +C2906422|T037|AB|Y35.392D|ICD10CM|Legal intervnt w oth blunt objects, bystand injured, subs|Legal intervnt w oth blunt objects, bystand injured, subs +C2906423|T037|PT|Y35.392S|ICD10CM|Legal intervention involving other blunt objects, bystander injured, sequela|Legal intervention involving other blunt objects, bystander injured, sequela +C2906423|T037|AB|Y35.392S|ICD10CM|Legal intervnt w oth blunt objects, bystand injured, sequela|Legal intervnt w oth blunt objects, bystand injured, sequela +C2906424|T037|HT|Y35.393|ICD10CM|Legal intervention involving other blunt objects, suspect injured|Legal intervention involving other blunt objects, suspect injured +C2906424|T037|AB|Y35.393|ICD10CM|Legal intervnt involving oth blunt objects, suspect injured|Legal intervnt involving oth blunt objects, suspect injured +C2906425|T037|PT|Y35.393A|ICD10CM|Legal intervention involving other blunt objects, suspect injured, initial encounter|Legal intervention involving other blunt objects, suspect injured, initial encounter +C2906425|T037|AB|Y35.393A|ICD10CM|Legal intervnt w oth blunt objects, suspect injured, init|Legal intervnt w oth blunt objects, suspect injured, init +C2906426|T037|PT|Y35.393D|ICD10CM|Legal intervention involving other blunt objects, suspect injured, subsequent encounter|Legal intervention involving other blunt objects, suspect injured, subsequent encounter +C2906426|T037|AB|Y35.393D|ICD10CM|Legal intervnt w oth blunt objects, suspect injured, subs|Legal intervnt w oth blunt objects, suspect injured, subs +C2906427|T037|PT|Y35.393S|ICD10CM|Legal intervention involving other blunt objects, suspect injured, sequela|Legal intervention involving other blunt objects, suspect injured, sequela +C2906427|T037|AB|Y35.393S|ICD10CM|Legal intervnt w oth blunt objects, suspect injured, sequela|Legal intervnt w oth blunt objects, suspect injured, sequela +C5141066|T037|HT|Y35.399|ICD10CM|Legal intervention involving other blunt objects, unspecified person injured|Legal intervention involving other blunt objects, unspecified person injured +C5141066|T037|AB|Y35.399|ICD10CM|Legal intervnt w other blunt objects, unsp person injured|Legal intervnt w other blunt objects, unsp person injured +C5141067|T037|PT|Y35.399A|ICD10CM|Legal intervention involving other blunt objects, unspecified person injured, initial encounter|Legal intervention involving other blunt objects, unspecified person injured, initial encounter +C5141067|T037|AB|Y35.399A|ICD10CM|Legal intrvnt w other blunt objects, unsp person inj, init|Legal intrvnt w other blunt objects, unsp person inj, init +C5141068|T037|PT|Y35.399D|ICD10CM|Legal intervention involving other blunt objects, unspecified person injured, subsequent encounter|Legal intervention involving other blunt objects, unspecified person injured, subsequent encounter +C5141068|T037|AB|Y35.399D|ICD10CM|Legal intrvnt w other blunt objects, unsp person inj, subs|Legal intrvnt w other blunt objects, unsp person inj, subs +C5141069|T037|PT|Y35.399S|ICD10CM|Legal intervention involving other blunt objects, unspecified person injured, sequela|Legal intervention involving other blunt objects, unspecified person injured, sequela +C5141069|T037|AB|Y35.399S|ICD10CM|Legal intrvnt w other blunt obj, unsp person inj, sequela|Legal intrvnt w other blunt obj, unsp person inj, sequela +C0481098|T037|PX|Y35.4|ICD10|Injury due to legal intervention involving sharp objects|Injury due to legal intervention involving sharp objects +C2906428|T037|ET|Y35.4|ICD10CM|Legal intervention involving being cut by sharp objects|Legal intervention involving being cut by sharp objects +C2906429|T037|ET|Y35.4|ICD10CM|Legal intervention involving being stabbed by sharp objects|Legal intervention involving being stabbed by sharp objects +C0481098|T037|PS|Y35.4|ICD10|Legal intervention involving sharp objects|Legal intervention involving sharp objects +C0481098|T037|HT|Y35.4|ICD10CM|Legal intervention involving sharp objects|Legal intervention involving sharp objects +C0481098|T037|AB|Y35.4|ICD10CM|Legal intervention involving sharp objects|Legal intervention involving sharp objects +C2906430|T037|AB|Y35.40|ICD10CM|Legal intervention involving unspecified sharp objects|Legal intervention involving unspecified sharp objects +C2906430|T037|HT|Y35.40|ICD10CM|Legal intervention involving unspecified sharp objects|Legal intervention involving unspecified sharp objects +C2906431|T037|HT|Y35.401|ICD10CM|Legal intervention involving unspecified sharp objects, law enforcement official injured|Legal intervention involving unspecified sharp objects, law enforcement official injured +C2906431|T037|AB|Y35.401|ICD10CM|Legal intervnt w unsp sharp objects, law enforc offl injured|Legal intervnt w unsp sharp objects, law enforc offl injured +C2906432|T037|AB|Y35.401A|ICD10CM|Legal intervnt w unsp sharp obj, law enforc offl inj, init|Legal intervnt w unsp sharp obj, law enforc offl inj, init +C2906433|T037|AB|Y35.401D|ICD10CM|Legal intervnt w unsp sharp obj, law enforc offl inj, subs|Legal intervnt w unsp sharp obj, law enforc offl inj, subs +C2906434|T037|PT|Y35.401S|ICD10CM|Legal intervention involving unspecified sharp objects, law enforcement official injured, sequela|Legal intervention involving unspecified sharp objects, law enforcement official injured, sequela +C2906434|T037|AB|Y35.401S|ICD10CM|Legal intervnt w unsp sharp obj, law enforc offl inj, sqla|Legal intervnt w unsp sharp obj, law enforc offl inj, sqla +C2906435|T037|HT|Y35.402|ICD10CM|Legal intervention involving unspecified sharp objects, bystander injured|Legal intervention involving unspecified sharp objects, bystander injured +C2906435|T037|AB|Y35.402|ICD10CM|Legal intervnt involving unsp sharp objects, bystand injured|Legal intervnt involving unsp sharp objects, bystand injured +C2906436|T037|PT|Y35.402A|ICD10CM|Legal intervention involving unspecified sharp objects, bystander injured, initial encounter|Legal intervention involving unspecified sharp objects, bystander injured, initial encounter +C2906436|T037|AB|Y35.402A|ICD10CM|Legal intervnt w unsp sharp objects, bystand injured, init|Legal intervnt w unsp sharp objects, bystand injured, init +C2906437|T037|PT|Y35.402D|ICD10CM|Legal intervention involving unspecified sharp objects, bystander injured, subsequent encounter|Legal intervention involving unspecified sharp objects, bystander injured, subsequent encounter +C2906437|T037|AB|Y35.402D|ICD10CM|Legal intervnt w unsp sharp objects, bystand injured, subs|Legal intervnt w unsp sharp objects, bystand injured, subs +C2906438|T037|PT|Y35.402S|ICD10CM|Legal intervention involving unspecified sharp objects, bystander injured, sequela|Legal intervention involving unspecified sharp objects, bystander injured, sequela +C2906438|T037|AB|Y35.402S|ICD10CM|Legal intervnt w unsp sharp objects, bystand inj, sequela|Legal intervnt w unsp sharp objects, bystand inj, sequela +C2906439|T037|HT|Y35.403|ICD10CM|Legal intervention involving unspecified sharp objects, suspect injured|Legal intervention involving unspecified sharp objects, suspect injured +C2906439|T037|AB|Y35.403|ICD10CM|Legal intervnt involving unsp sharp objects, suspect injured|Legal intervnt involving unsp sharp objects, suspect injured +C2906440|T037|PT|Y35.403A|ICD10CM|Legal intervention involving unspecified sharp objects, suspect injured, initial encounter|Legal intervention involving unspecified sharp objects, suspect injured, initial encounter +C2906440|T037|AB|Y35.403A|ICD10CM|Legal intervnt w unsp sharp objects, suspect injured, init|Legal intervnt w unsp sharp objects, suspect injured, init +C2906441|T037|PT|Y35.403D|ICD10CM|Legal intervention involving unspecified sharp objects, suspect injured, subsequent encounter|Legal intervention involving unspecified sharp objects, suspect injured, subsequent encounter +C2906441|T037|AB|Y35.403D|ICD10CM|Legal intervnt w unsp sharp objects, suspect injured, subs|Legal intervnt w unsp sharp objects, suspect injured, subs +C2906442|T037|PT|Y35.403S|ICD10CM|Legal intervention involving unspecified sharp objects, suspect injured, sequela|Legal intervention involving unspecified sharp objects, suspect injured, sequela +C2906442|T037|AB|Y35.403S|ICD10CM|Legal intervnt w unsp sharp objects, suspect inj, sequela|Legal intervnt w unsp sharp objects, suspect inj, sequela +C5141070|T037|HT|Y35.409|ICD10CM|Legal intervention involving unspecified sharp objects, unspecified person injured|Legal intervention involving unspecified sharp objects, unspecified person injured +C5141070|T037|AB|Y35.409|ICD10CM|Legal intervnt w unsp sharp objects, unsp person injured|Legal intervnt w unsp sharp objects, unsp person injured +C5141071|T037|AB|Y35.409A|ICD10CM|Legal intrvnt w unsp sharp objects, unsp person inj, init|Legal intrvnt w unsp sharp objects, unsp person inj, init +C5141072|T037|AB|Y35.409D|ICD10CM|Legal intrvnt w unsp sharp objects, unsp person inj, subs|Legal intrvnt w unsp sharp objects, unsp person inj, subs +C5141073|T037|PT|Y35.409S|ICD10CM|Legal intervention involving unspecified sharp objects, unspecified person injured, sequela|Legal intervention involving unspecified sharp objects, unspecified person injured, sequela +C5141073|T037|AB|Y35.409S|ICD10CM|Legal intrvnt w unsp sharp objects, unsp person inj, sequela|Legal intrvnt w unsp sharp objects, unsp person inj, sequela +C2906443|T037|AB|Y35.41|ICD10CM|Legal intervention involving bayonet|Legal intervention involving bayonet +C2906443|T037|HT|Y35.41|ICD10CM|Legal intervention involving bayonet|Legal intervention involving bayonet +C2906444|T037|HT|Y35.411|ICD10CM|Legal intervention involving bayonet, law enforcement official injured|Legal intervention involving bayonet, law enforcement official injured +C2906444|T037|AB|Y35.411|ICD10CM|Legal intervnt involving bayonet, law enforc offl injured|Legal intervnt involving bayonet, law enforc offl injured +C2906445|T037|PT|Y35.411A|ICD10CM|Legal intervention involving bayonet, law enforcement official injured, initial encounter|Legal intervention involving bayonet, law enforcement official injured, initial encounter +C2906445|T037|AB|Y35.411A|ICD10CM|Legal intervnt w bayonet, law enforc offl injured, init|Legal intervnt w bayonet, law enforc offl injured, init +C2906446|T037|PT|Y35.411D|ICD10CM|Legal intervention involving bayonet, law enforcement official injured, subsequent encounter|Legal intervention involving bayonet, law enforcement official injured, subsequent encounter +C2906446|T037|AB|Y35.411D|ICD10CM|Legal intervnt w bayonet, law enforc offl injured, subs|Legal intervnt w bayonet, law enforc offl injured, subs +C2906447|T037|PT|Y35.411S|ICD10CM|Legal intervention involving bayonet, law enforcement official injured, sequela|Legal intervention involving bayonet, law enforcement official injured, sequela +C2906447|T037|AB|Y35.411S|ICD10CM|Legal intervnt w bayonet, law enforc offl injured, sequela|Legal intervnt w bayonet, law enforc offl injured, sequela +C2906448|T037|AB|Y35.412|ICD10CM|Legal intervention involving bayonet, bystander injured|Legal intervention involving bayonet, bystander injured +C2906448|T037|HT|Y35.412|ICD10CM|Legal intervention involving bayonet, bystander injured|Legal intervention involving bayonet, bystander injured +C2906449|T037|PT|Y35.412A|ICD10CM|Legal intervention involving bayonet, bystander injured, initial encounter|Legal intervention involving bayonet, bystander injured, initial encounter +C2906449|T037|AB|Y35.412A|ICD10CM|Legal intervnt involving bayonet, bystander injured, init|Legal intervnt involving bayonet, bystander injured, init +C2906450|T037|PT|Y35.412D|ICD10CM|Legal intervention involving bayonet, bystander injured, subsequent encounter|Legal intervention involving bayonet, bystander injured, subsequent encounter +C2906450|T037|AB|Y35.412D|ICD10CM|Legal intervnt involving bayonet, bystander injured, subs|Legal intervnt involving bayonet, bystander injured, subs +C2906451|T037|PT|Y35.412S|ICD10CM|Legal intervention involving bayonet, bystander injured, sequela|Legal intervention involving bayonet, bystander injured, sequela +C2906451|T037|AB|Y35.412S|ICD10CM|Legal intervnt involving bayonet, bystander injured, sequela|Legal intervnt involving bayonet, bystander injured, sequela +C2906452|T037|AB|Y35.413|ICD10CM|Legal intervention involving bayonet, suspect injured|Legal intervention involving bayonet, suspect injured +C2906452|T037|HT|Y35.413|ICD10CM|Legal intervention involving bayonet, suspect injured|Legal intervention involving bayonet, suspect injured +C2906453|T037|AB|Y35.413A|ICD10CM|Legal intervention involving bayonet, suspect injured, init|Legal intervention involving bayonet, suspect injured, init +C2906453|T037|PT|Y35.413A|ICD10CM|Legal intervention involving bayonet, suspect injured, initial encounter|Legal intervention involving bayonet, suspect injured, initial encounter +C2906454|T037|AB|Y35.413D|ICD10CM|Legal intervention involving bayonet, suspect injured, subs|Legal intervention involving bayonet, suspect injured, subs +C2906454|T037|PT|Y35.413D|ICD10CM|Legal intervention involving bayonet, suspect injured, subsequent encounter|Legal intervention involving bayonet, suspect injured, subsequent encounter +C2906455|T037|PT|Y35.413S|ICD10CM|Legal intervention involving bayonet, suspect injured, sequela|Legal intervention involving bayonet, suspect injured, sequela +C2906455|T037|AB|Y35.413S|ICD10CM|Legal intervnt involving bayonet, suspect injured, sequela|Legal intervnt involving bayonet, suspect injured, sequela +C5141074|T037|HT|Y35.419|ICD10CM|Legal intervention involving bayonet, unspecified person injured|Legal intervention involving bayonet, unspecified person injured +C5141074|T037|AB|Y35.419|ICD10CM|Legal intervnt involving bayonet, unspecified person injured|Legal intervnt involving bayonet, unspecified person injured +C5141075|T037|PT|Y35.419A|ICD10CM|Legal intervention involving bayonet, unspecified person injured, initial encounter|Legal intervention involving bayonet, unspecified person injured, initial encounter +C5141075|T037|AB|Y35.419A|ICD10CM|Legal intervnt involving bayonet, unsp person injured, init|Legal intervnt involving bayonet, unsp person injured, init +C5141076|T037|PT|Y35.419D|ICD10CM|Legal intervention involving bayonet, unspecified person injured, subsequent encounter|Legal intervention involving bayonet, unspecified person injured, subsequent encounter +C5141076|T037|AB|Y35.419D|ICD10CM|Legal intervnt involving bayonet, unsp person injured, subs|Legal intervnt involving bayonet, unsp person injured, subs +C5141077|T037|PT|Y35.419S|ICD10CM|Legal intervention involving bayonet, unspecified person injured, sequela|Legal intervention involving bayonet, unspecified person injured, sequela +C5141077|T037|AB|Y35.419S|ICD10CM|Legal intervnt w bayonet, unsp person injured, sequela|Legal intervnt w bayonet, unsp person injured, sequela +C2906456|T037|AB|Y35.49|ICD10CM|Legal intervention involving other sharp objects|Legal intervention involving other sharp objects +C2906456|T037|HT|Y35.49|ICD10CM|Legal intervention involving other sharp objects|Legal intervention involving other sharp objects +C2906457|T037|HT|Y35.491|ICD10CM|Legal intervention involving other sharp objects, law enforcement official injured|Legal intervention involving other sharp objects, law enforcement official injured +C2906457|T037|AB|Y35.491|ICD10CM|Legal intervnt w oth sharp objects, law enforc offl injured|Legal intervnt w oth sharp objects, law enforc offl injured +C2906458|T037|AB|Y35.491A|ICD10CM|Legal intervnt w oth sharp obj, law enforc offl inj, init|Legal intervnt w oth sharp obj, law enforc offl inj, init +C2906459|T037|AB|Y35.491D|ICD10CM|Legal intervnt w oth sharp obj, law enforc offl inj, subs|Legal intervnt w oth sharp obj, law enforc offl inj, subs +C2906460|T037|PT|Y35.491S|ICD10CM|Legal intervention involving other sharp objects, law enforcement official injured, sequela|Legal intervention involving other sharp objects, law enforcement official injured, sequela +C2906460|T037|AB|Y35.491S|ICD10CM|Legal intervnt w oth sharp obj, law enforc offl inj, sequela|Legal intervnt w oth sharp obj, law enforc offl inj, sequela +C2906461|T037|HT|Y35.492|ICD10CM|Legal intervention involving other sharp objects, bystander injured|Legal intervention involving other sharp objects, bystander injured +C2906461|T037|AB|Y35.492|ICD10CM|Legal intervnt involving oth sharp objects, bystand injured|Legal intervnt involving oth sharp objects, bystand injured +C2906462|T037|PT|Y35.492A|ICD10CM|Legal intervention involving other sharp objects, bystander injured, initial encounter|Legal intervention involving other sharp objects, bystander injured, initial encounter +C2906462|T037|AB|Y35.492A|ICD10CM|Legal intervnt w oth sharp objects, bystand injured, init|Legal intervnt w oth sharp objects, bystand injured, init +C2906463|T037|PT|Y35.492D|ICD10CM|Legal intervention involving other sharp objects, bystander injured, subsequent encounter|Legal intervention involving other sharp objects, bystander injured, subsequent encounter +C2906463|T037|AB|Y35.492D|ICD10CM|Legal intervnt w oth sharp objects, bystand injured, subs|Legal intervnt w oth sharp objects, bystand injured, subs +C2906464|T037|PT|Y35.492S|ICD10CM|Legal intervention involving other sharp objects, bystander injured, sequela|Legal intervention involving other sharp objects, bystander injured, sequela +C2906464|T037|AB|Y35.492S|ICD10CM|Legal intervnt w oth sharp objects, bystand injured, sequela|Legal intervnt w oth sharp objects, bystand injured, sequela +C2906465|T037|HT|Y35.493|ICD10CM|Legal intervention involving other sharp objects, suspect injured|Legal intervention involving other sharp objects, suspect injured +C2906465|T037|AB|Y35.493|ICD10CM|Legal intervnt involving oth sharp objects, suspect injured|Legal intervnt involving oth sharp objects, suspect injured +C2906466|T037|PT|Y35.493A|ICD10CM|Legal intervention involving other sharp objects, suspect injured, initial encounter|Legal intervention involving other sharp objects, suspect injured, initial encounter +C2906466|T037|AB|Y35.493A|ICD10CM|Legal intervnt w oth sharp objects, suspect injured, init|Legal intervnt w oth sharp objects, suspect injured, init +C2906467|T037|PT|Y35.493D|ICD10CM|Legal intervention involving other sharp objects, suspect injured, subsequent encounter|Legal intervention involving other sharp objects, suspect injured, subsequent encounter +C2906467|T037|AB|Y35.493D|ICD10CM|Legal intervnt w oth sharp objects, suspect injured, subs|Legal intervnt w oth sharp objects, suspect injured, subs +C2906468|T037|PT|Y35.493S|ICD10CM|Legal intervention involving other sharp objects, suspect injured, sequela|Legal intervention involving other sharp objects, suspect injured, sequela +C2906468|T037|AB|Y35.493S|ICD10CM|Legal intervnt w oth sharp objects, suspect injured, sequela|Legal intervnt w oth sharp objects, suspect injured, sequela +C5141078|T037|HT|Y35.499|ICD10CM|Legal intervention involving other sharp objects, unspecified person injured|Legal intervention involving other sharp objects, unspecified person injured +C5141078|T037|AB|Y35.499|ICD10CM|Legal intervnt w other sharp objects, unsp person injured|Legal intervnt w other sharp objects, unsp person injured +C5141079|T037|PT|Y35.499A|ICD10CM|Legal intervention involving other sharp objects, unspecified person injured, initial encounter|Legal intervention involving other sharp objects, unspecified person injured, initial encounter +C5141079|T037|AB|Y35.499A|ICD10CM|Legal intrvnt w other sharp objects, unsp person inj, init|Legal intrvnt w other sharp objects, unsp person inj, init +C5141080|T037|PT|Y35.499D|ICD10CM|Legal intervention involving other sharp objects, unspecified person injured, subsequent encounter|Legal intervention involving other sharp objects, unspecified person injured, subsequent encounter +C5141080|T037|AB|Y35.499D|ICD10CM|Legal intrvnt w other sharp objects, unsp person inj, subs|Legal intrvnt w other sharp objects, unsp person inj, subs +C5141081|T037|PT|Y35.499S|ICD10CM|Legal intervention involving other sharp objects, unspecified person injured, sequela|Legal intervention involving other sharp objects, unspecified person injured, sequela +C5141081|T037|AB|Y35.499S|ICD10CM|Legal intrvnt w other sharp obj, unsp person inj, sequela|Legal intrvnt w other sharp obj, unsp person inj, sequela +C0481099|T037|PX|Y35.6|ICD10|Injury due to legal intervention involving other specified means|Injury due to legal intervention involving other specified means +C0481099|T037|PS|Y35.6|ICD10|Legal intervention involving other specified means|Legal intervention involving other specified means +C0481093|T037|PX|Y35.7|ICD10|Injury due to legal intervention, means unspecified|Injury due to legal intervention, means unspecified +C0481093|T037|PS|Y35.7|ICD10|Legal intervention, means unspecified|Legal intervention, means unspecified +C0481099|T037|HT|Y35.8|ICD10CM|Legal intervention involving other specified means|Legal intervention involving other specified means +C0481099|T037|AB|Y35.8|ICD10CM|Legal intervention involving other specified means|Legal intervention involving other specified means +C2906469|T037|AB|Y35.81|ICD10CM|Legal intervention involving manhandling|Legal intervention involving manhandling +C2906469|T037|HT|Y35.81|ICD10CM|Legal intervention involving manhandling|Legal intervention involving manhandling +C2906470|T037|HT|Y35.811|ICD10CM|Legal intervention involving manhandling, law enforcement official injured|Legal intervention involving manhandling, law enforcement official injured +C2906470|T037|AB|Y35.811|ICD10CM|Legal intervnt w manhandling, law enforc offl injured|Legal intervnt w manhandling, law enforc offl injured +C2906471|T037|PT|Y35.811A|ICD10CM|Legal intervention involving manhandling, law enforcement official injured, initial encounter|Legal intervention involving manhandling, law enforcement official injured, initial encounter +C2906471|T037|AB|Y35.811A|ICD10CM|Legal intervnt w manhandling, law enforc offl injured, init|Legal intervnt w manhandling, law enforc offl injured, init +C2906472|T037|PT|Y35.811D|ICD10CM|Legal intervention involving manhandling, law enforcement official injured, subsequent encounter|Legal intervention involving manhandling, law enforcement official injured, subsequent encounter +C2906472|T037|AB|Y35.811D|ICD10CM|Legal intervnt w manhandling, law enforc offl injured, subs|Legal intervnt w manhandling, law enforc offl injured, subs +C2906473|T037|PT|Y35.811S|ICD10CM|Legal intervention involving manhandling, law enforcement official injured, sequela|Legal intervention involving manhandling, law enforcement official injured, sequela +C2906473|T037|AB|Y35.811S|ICD10CM|Legal intervnt w manhandling, law enforc offl inj, sequela|Legal intervnt w manhandling, law enforc offl inj, sequela +C2906474|T037|AB|Y35.812|ICD10CM|Legal intervention involving manhandling, bystander injured|Legal intervention involving manhandling, bystander injured +C2906474|T037|HT|Y35.812|ICD10CM|Legal intervention involving manhandling, bystander injured|Legal intervention involving manhandling, bystander injured +C2906475|T037|PT|Y35.812A|ICD10CM|Legal intervention involving manhandling, bystander injured, initial encounter|Legal intervention involving manhandling, bystander injured, initial encounter +C2906475|T037|AB|Y35.812A|ICD10CM|Legal intervnt involving manhandling, bystand injured, init|Legal intervnt involving manhandling, bystand injured, init +C2906476|T037|PT|Y35.812D|ICD10CM|Legal intervention involving manhandling, bystander injured, subsequent encounter|Legal intervention involving manhandling, bystander injured, subsequent encounter +C2906476|T037|AB|Y35.812D|ICD10CM|Legal intervnt involving manhandling, bystand injured, subs|Legal intervnt involving manhandling, bystand injured, subs +C2906477|T037|PT|Y35.812S|ICD10CM|Legal intervention involving manhandling, bystander injured, sequela|Legal intervention involving manhandling, bystander injured, sequela +C2906477|T037|AB|Y35.812S|ICD10CM|Legal intervnt w manhandling, bystand injured, sequela|Legal intervnt w manhandling, bystand injured, sequela +C2906478|T037|AB|Y35.813|ICD10CM|Legal intervention involving manhandling, suspect injured|Legal intervention involving manhandling, suspect injured +C2906478|T037|HT|Y35.813|ICD10CM|Legal intervention involving manhandling, suspect injured|Legal intervention involving manhandling, suspect injured +C2906479|T037|PT|Y35.813A|ICD10CM|Legal intervention involving manhandling, suspect injured, initial encounter|Legal intervention involving manhandling, suspect injured, initial encounter +C2906479|T037|AB|Y35.813A|ICD10CM|Legal intervnt involving manhandling, suspect injured, init|Legal intervnt involving manhandling, suspect injured, init +C2906480|T037|PT|Y35.813D|ICD10CM|Legal intervention involving manhandling, suspect injured, subsequent encounter|Legal intervention involving manhandling, suspect injured, subsequent encounter +C2906480|T037|AB|Y35.813D|ICD10CM|Legal intervnt involving manhandling, suspect injured, subs|Legal intervnt involving manhandling, suspect injured, subs +C2906481|T037|PT|Y35.813S|ICD10CM|Legal intervention involving manhandling, suspect injured, sequela|Legal intervention involving manhandling, suspect injured, sequela +C2906481|T037|AB|Y35.813S|ICD10CM|Legal intervnt w manhandling, suspect injured, sequela|Legal intervnt w manhandling, suspect injured, sequela +C5141082|T037|HT|Y35.819|ICD10CM|Legal intervention involving manhandling, unspecified person injured|Legal intervention involving manhandling, unspecified person injured +C5141082|T037|AB|Y35.819|ICD10CM|Legal intervnt involving manhandling, unsp person injured|Legal intervnt involving manhandling, unsp person injured +C5141083|T037|PT|Y35.819A|ICD10CM|Legal intervention involving manhandling, unspecified person injured, initial encounter|Legal intervention involving manhandling, unspecified person injured, initial encounter +C5141083|T037|AB|Y35.819A|ICD10CM|Legal intervnt w manhandling, unsp person injured, init|Legal intervnt w manhandling, unsp person injured, init +C5141084|T037|PT|Y35.819D|ICD10CM|Legal intervention involving manhandling, unspecified person injured, subsequent encounter|Legal intervention involving manhandling, unspecified person injured, subsequent encounter +C5141084|T037|AB|Y35.819D|ICD10CM|Legal intervnt w manhandling, unsp person injured, subs|Legal intervnt w manhandling, unsp person injured, subs +C5141085|T037|PT|Y35.819S|ICD10CM|Legal intervention involving manhandling, unspecified person injured, sequela|Legal intervention involving manhandling, unspecified person injured, sequela +C5141085|T037|AB|Y35.819S|ICD10CM|Legal intervnt w manhandling, unsp person injured, sequela|Legal intervnt w manhandling, unsp person injured, sequela +C5141167|T037|ET|Y35.83|ICD10CM|Electroshock device (taser)|Electroshock device (taser) +C5141086|T037|AB|Y35.83|ICD10CM|Legal intervention involving a conducted energy device|Legal intervention involving a conducted energy device +C5141086|T037|HT|Y35.83|ICD10CM|Legal intervention involving a conducted energy device|Legal intervention involving a conducted energy device +C5141168|T037|ET|Y35.83|ICD10CM|Stun gun|Stun gun +C5141087|T037|HT|Y35.831|ICD10CM|Legal intervention involving a conducted energy device, law enforcement official injured|Legal intervention involving a conducted energy device, law enforcement official injured +C5141087|T037|AB|Y35.831|ICD10CM|Legal intervnt w a cond energy device, law enforc injured|Legal intervnt w a cond energy device, law enforc injured +C5141088|T037|AB|Y35.831A|ICD10CM|Legal intrvnt w a cond energy device, law enforc inj, init|Legal intrvnt w a cond energy device, law enforc inj, init +C5141089|T037|AB|Y35.831D|ICD10CM|Legal intrvnt w a cond energy device, law enforc inj, subs|Legal intrvnt w a cond energy device, law enforc inj, subs +C5141090|T037|PT|Y35.831S|ICD10CM|Legal intervention involving a conducted energy device, law enforcement official injured, sequela|Legal intervention involving a conducted energy device, law enforcement official injured, sequela +C5141090|T037|AB|Y35.831S|ICD10CM|Legal intrvnt w a cond energy device, law enforc inj, sqla|Legal intrvnt w a cond energy device, law enforc inj, sqla +C5141091|T037|HT|Y35.832|ICD10CM|Legal intervention involving a conducted energy device, bystander injured|Legal intervention involving a conducted energy device, bystander injured +C5141091|T037|AB|Y35.832|ICD10CM|Legal intervnt w a cond energy device, bystand injured|Legal intervnt w a cond energy device, bystand injured +C5141092|T037|PT|Y35.832A|ICD10CM|Legal intervention involving a conducted energy device, bystander injured, initial encounter|Legal intervention involving a conducted energy device, bystander injured, initial encounter +C5141092|T037|AB|Y35.832A|ICD10CM|Legal intervnt w a cond energy device, bystand injured, init|Legal intervnt w a cond energy device, bystand injured, init +C5141093|T037|PT|Y35.832D|ICD10CM|Legal intervention involving a conducted energy device, bystander injured, subsequent encounter|Legal intervention involving a conducted energy device, bystander injured, subsequent encounter +C5141093|T037|AB|Y35.832D|ICD10CM|Legal intervnt w a cond energy device, bystand injured, subs|Legal intervnt w a cond energy device, bystand injured, subs +C5141094|T037|PT|Y35.832S|ICD10CM|Legal intervention involving a conducted energy device, bystander injured, sequela|Legal intervention involving a conducted energy device, bystander injured, sequela +C5141094|T037|AB|Y35.832S|ICD10CM|Legal intrvnt w a cond energy device, bystand inj, sequela|Legal intrvnt w a cond energy device, bystand inj, sequela +C5141095|T037|HT|Y35.833|ICD10CM|Legal intervention involving a conducted energy device, suspect injured|Legal intervention involving a conducted energy device, suspect injured +C5141095|T037|AB|Y35.833|ICD10CM|Legal intervnt w a cond energy device, suspect injured|Legal intervnt w a cond energy device, suspect injured +C5141096|T037|PT|Y35.833A|ICD10CM|Legal intervention involving a conducted energy device, suspect injured, initial encounter|Legal intervention involving a conducted energy device, suspect injured, initial encounter +C5141096|T037|AB|Y35.833A|ICD10CM|Legal intervnt w a cond energy device, suspect injured, init|Legal intervnt w a cond energy device, suspect injured, init +C5141097|T037|PT|Y35.833D|ICD10CM|Legal intervention involving a conducted energy device, suspect injured, subsequent encounter|Legal intervention involving a conducted energy device, suspect injured, subsequent encounter +C5141097|T037|AB|Y35.833D|ICD10CM|Legal intervnt w a cond energy device, suspect injured, subs|Legal intervnt w a cond energy device, suspect injured, subs +C5141098|T037|PT|Y35.833S|ICD10CM|Legal intervention involving a conducted energy device, suspect injured, sequela|Legal intervention involving a conducted energy device, suspect injured, sequela +C5141098|T037|AB|Y35.833S|ICD10CM|Legal intrvnt w a cond energy device, suspect inj, sequela|Legal intrvnt w a cond energy device, suspect inj, sequela +C5141099|T037|HT|Y35.839|ICD10CM|Legal intervention involving a conducted energy device, unspecified person injured|Legal intervention involving a conducted energy device, unspecified person injured +C5141099|T037|AB|Y35.839|ICD10CM|Legal intervnt w a cond energy device, unsp person injured|Legal intervnt w a cond energy device, unsp person injured +C5141100|T037|AB|Y35.839A|ICD10CM|Legal intrvnt w a cond energy device, unsp person inj, init|Legal intrvnt w a cond energy device, unsp person inj, init +C5141101|T037|AB|Y35.839D|ICD10CM|Legal intrvnt w a cond energy device, unsp person inj, subs|Legal intrvnt w a cond energy device, unsp person inj, subs +C5141102|T037|PT|Y35.839S|ICD10CM|Legal intervention involving a conducted energy device, unspecified person injured, sequela|Legal intervention involving a conducted energy device, unspecified person injured, sequela +C5141102|T037|AB|Y35.839S|ICD10CM|Legal intrvnt w a cond energy device, unsp person inj, sqla|Legal intrvnt w a cond energy device, unsp person inj, sqla +C0481099|T037|HT|Y35.89|ICD10CM|Legal intervention involving other specified means|Legal intervention involving other specified means +C0481099|T037|AB|Y35.89|ICD10CM|Legal intervention involving other specified means|Legal intervention involving other specified means +C2906482|T037|HT|Y35.891|ICD10CM|Legal intervention involving other specified means, law enforcement official injured|Legal intervention involving other specified means, law enforcement official injured +C2906482|T037|AB|Y35.891|ICD10CM|Legal intervnt involving oth means, law enforc offl injured|Legal intervnt involving oth means, law enforc offl injured +C2906483|T037|AB|Y35.891A|ICD10CM|Legal intervnt w oth means, law enforc offl injured, init|Legal intervnt w oth means, law enforc offl injured, init +C2906484|T037|AB|Y35.891D|ICD10CM|Legal intervnt w oth means, law enforc offl injured, subs|Legal intervnt w oth means, law enforc offl injured, subs +C2906485|T037|PT|Y35.891S|ICD10CM|Legal intervention involving other specified means, law enforcement official injured, sequela|Legal intervention involving other specified means, law enforcement official injured, sequela +C2906485|T037|AB|Y35.891S|ICD10CM|Legal intervnt w oth means, law enforc offl injured, sequela|Legal intervnt w oth means, law enforc offl injured, sequela +C2906486|T037|AB|Y35.892|ICD10CM|Legal intervention involving oth means, bystander injured|Legal intervention involving oth means, bystander injured +C2906486|T037|HT|Y35.892|ICD10CM|Legal intervention involving other specified means, bystander injured|Legal intervention involving other specified means, bystander injured +C2906487|T037|PT|Y35.892A|ICD10CM|Legal intervention involving other specified means, bystander injured, initial encounter|Legal intervention involving other specified means, bystander injured, initial encounter +C2906487|T037|AB|Y35.892A|ICD10CM|Legal intervnt involving oth means, bystander injured, init|Legal intervnt involving oth means, bystander injured, init +C2906488|T037|PT|Y35.892D|ICD10CM|Legal intervention involving other specified means, bystander injured, subsequent encounter|Legal intervention involving other specified means, bystander injured, subsequent encounter +C2906488|T037|AB|Y35.892D|ICD10CM|Legal intervnt involving oth means, bystander injured, subs|Legal intervnt involving oth means, bystander injured, subs +C2906489|T037|PT|Y35.892S|ICD10CM|Legal intervention involving other specified means, bystander injured, sequela|Legal intervention involving other specified means, bystander injured, sequela +C2906489|T037|AB|Y35.892S|ICD10CM|Legal intervnt involving oth means, bystand injured, sequela|Legal intervnt involving oth means, bystand injured, sequela +C2906490|T037|AB|Y35.893|ICD10CM|Legal intervention involving oth means, suspect injured|Legal intervention involving oth means, suspect injured +C2906490|T037|HT|Y35.893|ICD10CM|Legal intervention involving other specified means, suspect injured|Legal intervention involving other specified means, suspect injured +C2906491|T037|PT|Y35.893A|ICD10CM|Legal intervention involving other specified means, suspect injured, initial encounter|Legal intervention involving other specified means, suspect injured, initial encounter +C2906491|T037|AB|Y35.893A|ICD10CM|Legal intervnt involving oth means, suspect injured, init|Legal intervnt involving oth means, suspect injured, init +C2906492|T037|PT|Y35.893D|ICD10CM|Legal intervention involving other specified means, suspect injured, subsequent encounter|Legal intervention involving other specified means, suspect injured, subsequent encounter +C2906492|T037|AB|Y35.893D|ICD10CM|Legal intervnt involving oth means, suspect injured, subs|Legal intervnt involving oth means, suspect injured, subs +C2906493|T037|PT|Y35.893S|ICD10CM|Legal intervention involving other specified means, suspect injured, sequela|Legal intervention involving other specified means, suspect injured, sequela +C2906493|T037|AB|Y35.893S|ICD10CM|Legal intervnt involving oth means, suspect injured, sequela|Legal intervnt involving oth means, suspect injured, sequela +C0481093|T037|HT|Y35.9|ICD10CM|Legal intervention, means unspecified|Legal intervention, means unspecified +C0481093|T037|AB|Y35.9|ICD10CM|Legal intervention, means unspecified|Legal intervention, means unspecified +C2906494|T037|AB|Y35.91|ICD10CM|Legal intervention, means unsp, law enforc offl injured|Legal intervention, means unsp, law enforc offl injured +C2906494|T037|HT|Y35.91|ICD10CM|Legal intervention, means unspecified, law enforcement official injured|Legal intervention, means unspecified, law enforcement official injured +C2906495|T037|PT|Y35.91XA|ICD10CM|Legal intervention, means unspecified, law enforcement official injured, initial encounter|Legal intervention, means unspecified, law enforcement official injured, initial encounter +C2906495|T037|AB|Y35.91XA|ICD10CM|Legal intervnt, means unsp, law enforc offl injured, init|Legal intervnt, means unsp, law enforc offl injured, init +C2906496|T037|PT|Y35.91XD|ICD10CM|Legal intervention, means unspecified, law enforcement official injured, subsequent encounter|Legal intervention, means unspecified, law enforcement official injured, subsequent encounter +C2906496|T037|AB|Y35.91XD|ICD10CM|Legal intervnt, means unsp, law enforc offl injured, subs|Legal intervnt, means unsp, law enforc offl injured, subs +C2906497|T037|PT|Y35.91XS|ICD10CM|Legal intervention, means unspecified, law enforcement official injured, sequela|Legal intervention, means unspecified, law enforcement official injured, sequela +C2906497|T037|AB|Y35.91XS|ICD10CM|Legal intervnt, means unsp, law enforc offl injured, sequela|Legal intervnt, means unsp, law enforc offl injured, sequela +C2906498|T037|AB|Y35.92|ICD10CM|Legal intervention, means unspecified, bystander injured|Legal intervention, means unspecified, bystander injured +C2906498|T037|HT|Y35.92|ICD10CM|Legal intervention, means unspecified, bystander injured|Legal intervention, means unspecified, bystander injured +C2906499|T037|AB|Y35.92XA|ICD10CM|Legal intervention, means unsp, bystander injured, init|Legal intervention, means unsp, bystander injured, init +C2906499|T037|PT|Y35.92XA|ICD10CM|Legal intervention, means unspecified, bystander injured, initial encounter|Legal intervention, means unspecified, bystander injured, initial encounter +C2906500|T037|AB|Y35.92XD|ICD10CM|Legal intervention, means unsp, bystander injured, subs|Legal intervention, means unsp, bystander injured, subs +C2906500|T037|PT|Y35.92XD|ICD10CM|Legal intervention, means unspecified, bystander injured, subsequent encounter|Legal intervention, means unspecified, bystander injured, subsequent encounter +C2906501|T037|AB|Y35.92XS|ICD10CM|Legal intervention, means unsp, bystander injured, sequela|Legal intervention, means unsp, bystander injured, sequela +C2906501|T037|PT|Y35.92XS|ICD10CM|Legal intervention, means unspecified, bystander injured, sequela|Legal intervention, means unspecified, bystander injured, sequela +C2906502|T037|AB|Y35.93|ICD10CM|Legal intervention, means unspecified, suspect injured|Legal intervention, means unspecified, suspect injured +C2906502|T037|HT|Y35.93|ICD10CM|Legal intervention, means unspecified, suspect injured|Legal intervention, means unspecified, suspect injured +C2906503|T037|AB|Y35.93XA|ICD10CM|Legal intervention, means unsp, suspect injured, init encntr|Legal intervention, means unsp, suspect injured, init encntr +C2906503|T037|PT|Y35.93XA|ICD10CM|Legal intervention, means unspecified, suspect injured, initial encounter|Legal intervention, means unspecified, suspect injured, initial encounter +C2906504|T037|AB|Y35.93XD|ICD10CM|Legal intervention, means unsp, suspect injured, subs encntr|Legal intervention, means unsp, suspect injured, subs encntr +C2906504|T037|PT|Y35.93XD|ICD10CM|Legal intervention, means unspecified, suspect injured, subsequent encounter|Legal intervention, means unspecified, suspect injured, subsequent encounter +C2906505|T037|AB|Y35.93XS|ICD10CM|Legal intervention, means unsp, suspect injured, sequela|Legal intervention, means unsp, suspect injured, sequela +C2906505|T037|PT|Y35.93XS|ICD10CM|Legal intervention, means unspecified, suspect injured, sequela|Legal intervention, means unspecified, suspect injured, sequela +C5141103|T037|HT|Y35.99|ICD10CM|Legal intervention, means unspecified, unspecified person injured|Legal intervention, means unspecified, unspecified person injured +C5141103|T037|AB|Y35.99|ICD10CM|Legal intervnt, means unsp, unspecified person injured|Legal intervnt, means unsp, unspecified person injured +C5141104|T037|PT|Y35.99XA|ICD10CM|Legal intervention, means unspecified, unspecified person injured, initial encounter|Legal intervention, means unspecified, unspecified person injured, initial encounter +C5141104|T037|AB|Y35.99XA|ICD10CM|Legal intervnt, means unsp, unspecified person injured, init|Legal intervnt, means unsp, unspecified person injured, init +C5141105|T037|PT|Y35.99XD|ICD10CM|Legal intervention, means unspecified, unspecified person injured, subsequent encounter|Legal intervention, means unspecified, unspecified person injured, subsequent encounter +C5141105|T037|AB|Y35.99XD|ICD10CM|Legal intervnt, means unsp, unspecified person injured, subs|Legal intervnt, means unsp, unspecified person injured, subs +C5141106|T037|PT|Y35.99XS|ICD10CM|Legal intervention, means unspecified, unspecified person injured, sequela|Legal intervention, means unspecified, unspecified person injured, sequela +C5141106|T037|AB|Y35.99XS|ICD10CM|Legal intervnt, means unsp, unsp person injured, sequela|Legal intervnt, means unsp, unsp person injured, sequela +C0481101|T037|PX|Y36.0|ICD10|Injury due to war operations involving explosion of marine weapons|Injury due to war operations involving explosion of marine weapons +C0481101|T037|PS|Y36.0|ICD10|War operations involving explosion of marine weapons|War operations involving explosion of marine weapons +C0481101|T037|HT|Y36.0|ICD10CM|War operations involving explosion of marine weapons|War operations involving explosion of marine weapons +C0481101|T037|AB|Y36.0|ICD10CM|War operations involving explosion of marine weapons|War operations involving explosion of marine weapons +C2906508|T037|AB|Y36.00|ICD10CM|War operations involving explosion of unsp marine weapon|War operations involving explosion of unsp marine weapon +C2906508|T037|HT|Y36.00|ICD10CM|War operations involving explosion of unspecified marine weapon|War operations involving explosion of unspecified marine weapon +C2906507|T037|ET|Y36.00|ICD10CM|War operations involving underwater blast NOS|War operations involving underwater blast NOS +C2906509|T037|AB|Y36.000|ICD10CM|War op involving explosion of unsp marine weapon, milt|War op involving explosion of unsp marine weapon, milt +C2906509|T037|HT|Y36.000|ICD10CM|War operations involving explosion of unspecified marine weapon, military personnel|War operations involving explosion of unspecified marine weapon, military personnel +C2906510|T037|AB|Y36.000A|ICD10CM|War op involving explosion of unsp marine weapon, milt, init|War op involving explosion of unsp marine weapon, milt, init +C2906511|T037|AB|Y36.000D|ICD10CM|War op involving explosion of unsp marine weapon, milt, subs|War op involving explosion of unsp marine weapon, milt, subs +C2906512|T037|AB|Y36.000S|ICD10CM|War op w explosn of unsp marine weapon, milt, sequela|War op w explosn of unsp marine weapon, milt, sequela +C2906512|T037|PT|Y36.000S|ICD10CM|War operations involving explosion of unspecified marine weapon, military personnel, sequela|War operations involving explosion of unspecified marine weapon, military personnel, sequela +C2906513|T037|AB|Y36.001|ICD10CM|War op involving explosion of unsp marine weapon, civilian|War op involving explosion of unsp marine weapon, civilian +C2906513|T037|HT|Y36.001|ICD10CM|War operations involving explosion of unspecified marine weapon, civilian|War operations involving explosion of unspecified marine weapon, civilian +C2906514|T037|AB|Y36.001A|ICD10CM|War op w explosn of unsp marine weapon, civilian, init|War op w explosn of unsp marine weapon, civilian, init +C2906514|T037|PT|Y36.001A|ICD10CM|War operations involving explosion of unspecified marine weapon, civilian, initial encounter|War operations involving explosion of unspecified marine weapon, civilian, initial encounter +C2906515|T037|AB|Y36.001D|ICD10CM|War op w explosn of unsp marine weapon, civilian, subs|War op w explosn of unsp marine weapon, civilian, subs +C2906515|T037|PT|Y36.001D|ICD10CM|War operations involving explosion of unspecified marine weapon, civilian, subsequent encounter|War operations involving explosion of unspecified marine weapon, civilian, subsequent encounter +C2906516|T037|AB|Y36.001S|ICD10CM|War op w explosn of unsp marine weapon, civilian, sequela|War op w explosn of unsp marine weapon, civilian, sequela +C2906516|T037|PT|Y36.001S|ICD10CM|War operations involving explosion of unspecified marine weapon, civilian, sequela|War operations involving explosion of unspecified marine weapon, civilian, sequela +C2906517|T037|AB|Y36.01|ICD10CM|War operations involving explosion of depth-charge|War operations involving explosion of depth-charge +C2906517|T037|HT|Y36.01|ICD10CM|War operations involving explosion of depth-charge|War operations involving explosion of depth-charge +C2906518|T037|HT|Y36.010|ICD10CM|War operations involving explosion of depth-charge, military personnel|War operations involving explosion of depth-charge, military personnel +C2906518|T037|AB|Y36.010|ICD10CM|War operations involving explosion of depth-charge, milt|War operations involving explosion of depth-charge, milt +C2906519|T037|PT|Y36.010A|ICD10CM|War operations involving explosion of depth-charge, military personnel, initial encounter|War operations involving explosion of depth-charge, military personnel, initial encounter +C2906519|T037|AB|Y36.010A|ICD10CM|War operations involving explosion of depth-chg, milt, init|War operations involving explosion of depth-chg, milt, init +C2906520|T037|PT|Y36.010D|ICD10CM|War operations involving explosion of depth-charge, military personnel, subsequent encounter|War operations involving explosion of depth-charge, military personnel, subsequent encounter +C2906520|T037|AB|Y36.010D|ICD10CM|War operations involving explosion of depth-chg, milt, subs|War operations involving explosion of depth-chg, milt, subs +C2906521|T037|AB|Y36.010S|ICD10CM|War op involving explosion of depth-chg, milt, sequela|War op involving explosion of depth-chg, milt, sequela +C2906521|T037|PT|Y36.010S|ICD10CM|War operations involving explosion of depth-charge, military personnel, sequela|War operations involving explosion of depth-charge, military personnel, sequela +C2906522|T037|AB|Y36.011|ICD10CM|War operations involving explosion of depth-charge, civilian|War operations involving explosion of depth-charge, civilian +C2906522|T037|HT|Y36.011|ICD10CM|War operations involving explosion of depth-charge, civilian|War operations involving explosion of depth-charge, civilian +C2906523|T037|AB|Y36.011A|ICD10CM|War op involving explosion of depth-chg, civilian, init|War op involving explosion of depth-chg, civilian, init +C2906523|T037|PT|Y36.011A|ICD10CM|War operations involving explosion of depth-charge, civilian, initial encounter|War operations involving explosion of depth-charge, civilian, initial encounter +C2906524|T037|AB|Y36.011D|ICD10CM|War op involving explosion of depth-chg, civilian, subs|War op involving explosion of depth-chg, civilian, subs +C2906524|T037|PT|Y36.011D|ICD10CM|War operations involving explosion of depth-charge, civilian, subsequent encounter|War operations involving explosion of depth-charge, civilian, subsequent encounter +C2906525|T037|AB|Y36.011S|ICD10CM|War op involving explosion of depth-chg, civilian, sequela|War op involving explosion of depth-chg, civilian, sequela +C2906525|T037|PT|Y36.011S|ICD10CM|War operations involving explosion of depth-charge, civilian, sequela|War operations involving explosion of depth-charge, civilian, sequela +C2906527|T037|AB|Y36.02|ICD10CM|War operations involving explosion of marine mine|War operations involving explosion of marine mine +C2906527|T037|HT|Y36.02|ICD10CM|War operations involving explosion of marine mine|War operations involving explosion of marine mine +C2906526|T037|ET|Y36.02|ICD10CM|War operations involving explosion of marine mine, at sea or in harbor|War operations involving explosion of marine mine, at sea or in harbor +C2906528|T037|HT|Y36.020|ICD10CM|War operations involving explosion of marine mine, military personnel|War operations involving explosion of marine mine, military personnel +C2906528|T037|AB|Y36.020|ICD10CM|War operations involving explosion of marine mine, milt|War operations involving explosion of marine mine, milt +C2906529|T037|AB|Y36.020A|ICD10CM|War op involving explosion of marine mine, milt, init|War op involving explosion of marine mine, milt, init +C2906529|T037|PT|Y36.020A|ICD10CM|War operations involving explosion of marine mine, military personnel, initial encounter|War operations involving explosion of marine mine, military personnel, initial encounter +C2906530|T037|AB|Y36.020D|ICD10CM|War op involving explosion of marine mine, milt, subs|War op involving explosion of marine mine, milt, subs +C2906530|T037|PT|Y36.020D|ICD10CM|War operations involving explosion of marine mine, military personnel, subsequent encounter|War operations involving explosion of marine mine, military personnel, subsequent encounter +C2906531|T037|AB|Y36.020S|ICD10CM|War op involving explosion of marine mine, milt, sequela|War op involving explosion of marine mine, milt, sequela +C2906531|T037|PT|Y36.020S|ICD10CM|War operations involving explosion of marine mine, military personnel, sequela|War operations involving explosion of marine mine, military personnel, sequela +C2906532|T037|AB|Y36.021|ICD10CM|War operations involving explosion of marine mine, civilian|War operations involving explosion of marine mine, civilian +C2906532|T037|HT|Y36.021|ICD10CM|War operations involving explosion of marine mine, civilian|War operations involving explosion of marine mine, civilian +C2906533|T037|AB|Y36.021A|ICD10CM|War op involving explosion of marine mine, civilian, init|War op involving explosion of marine mine, civilian, init +C2906533|T037|PT|Y36.021A|ICD10CM|War operations involving explosion of marine mine, civilian, initial encounter|War operations involving explosion of marine mine, civilian, initial encounter +C2906534|T037|AB|Y36.021D|ICD10CM|War op involving explosion of marine mine, civilian, subs|War op involving explosion of marine mine, civilian, subs +C2906534|T037|PT|Y36.021D|ICD10CM|War operations involving explosion of marine mine, civilian, subsequent encounter|War operations involving explosion of marine mine, civilian, subsequent encounter +C2906535|T037|AB|Y36.021S|ICD10CM|War op involving explosion of marine mine, civilian, sequela|War op involving explosion of marine mine, civilian, sequela +C2906535|T037|PT|Y36.021S|ICD10CM|War operations involving explosion of marine mine, civilian, sequela|War operations involving explosion of marine mine, civilian, sequela +C2906536|T037|AB|Y36.03|ICD10CM|War op involving explosion of sea-based artillery shell|War op involving explosion of sea-based artillery shell +C2906536|T037|HT|Y36.03|ICD10CM|War operations involving explosion of sea-based artillery shell|War operations involving explosion of sea-based artillery shell +C2906537|T037|AB|Y36.030|ICD10CM|War op involving explosion of sea-based artlry shell, milt|War op involving explosion of sea-based artlry shell, milt +C2906537|T037|HT|Y36.030|ICD10CM|War operations involving explosion of sea-based artillery shell, military personnel|War operations involving explosion of sea-based artillery shell, military personnel +C2906538|T037|AB|Y36.030A|ICD10CM|War op w explosn of sea-based artlry shell, milt, init|War op w explosn of sea-based artlry shell, milt, init +C2906539|T037|AB|Y36.030D|ICD10CM|War op w explosn of sea-based artlry shell, milt, subs|War op w explosn of sea-based artlry shell, milt, subs +C2906540|T037|AB|Y36.030S|ICD10CM|War op w explosn of sea-based artlry shell, milt, sequela|War op w explosn of sea-based artlry shell, milt, sequela +C2906540|T037|PT|Y36.030S|ICD10CM|War operations involving explosion of sea-based artillery shell, military personnel, sequela|War operations involving explosion of sea-based artillery shell, military personnel, sequela +C2906541|T037|AB|Y36.031|ICD10CM|War op involving explosn of sea-based artlry shell, civilian|War op involving explosn of sea-based artlry shell, civilian +C2906541|T037|HT|Y36.031|ICD10CM|War operations involving explosion of sea-based artillery shell, civilian|War operations involving explosion of sea-based artillery shell, civilian +C2906542|T037|AB|Y36.031A|ICD10CM|War op w explosn of sea-based artlry shell, civilian, init|War op w explosn of sea-based artlry shell, civilian, init +C2906542|T037|PT|Y36.031A|ICD10CM|War operations involving explosion of sea-based artillery shell, civilian, initial encounter|War operations involving explosion of sea-based artillery shell, civilian, initial encounter +C2906543|T037|AB|Y36.031D|ICD10CM|War op w explosn of sea-based artlry shell, civilian, subs|War op w explosn of sea-based artlry shell, civilian, subs +C2906543|T037|PT|Y36.031D|ICD10CM|War operations involving explosion of sea-based artillery shell, civilian, subsequent encounter|War operations involving explosion of sea-based artillery shell, civilian, subsequent encounter +C2906544|T037|AB|Y36.031S|ICD10CM|War op w explosn of sea-based artlry shell, civ, sequela|War op w explosn of sea-based artlry shell, civ, sequela +C2906544|T037|PT|Y36.031S|ICD10CM|War operations involving explosion of sea-based artillery shell, civilian, sequela|War operations involving explosion of sea-based artillery shell, civilian, sequela +C2906545|T037|AB|Y36.04|ICD10CM|War operations involving explosion of torpedo|War operations involving explosion of torpedo +C2906545|T037|HT|Y36.04|ICD10CM|War operations involving explosion of torpedo|War operations involving explosion of torpedo +C2906546|T037|HT|Y36.040|ICD10CM|War operations involving explosion of torpedo, military personnel|War operations involving explosion of torpedo, military personnel +C2906546|T037|AB|Y36.040|ICD10CM|War operations involving explosion of torpedo, milt|War operations involving explosion of torpedo, milt +C2906547|T037|PT|Y36.040A|ICD10CM|War operations involving explosion of torpedo, military personnel, initial encounter|War operations involving explosion of torpedo, military personnel, initial encounter +C2906547|T037|AB|Y36.040A|ICD10CM|War operations involving explosion of torpedo, milt, init|War operations involving explosion of torpedo, milt, init +C2906548|T037|PT|Y36.040D|ICD10CM|War operations involving explosion of torpedo, military personnel, subsequent encounter|War operations involving explosion of torpedo, military personnel, subsequent encounter +C2906548|T037|AB|Y36.040D|ICD10CM|War operations involving explosion of torpedo, milt, subs|War operations involving explosion of torpedo, milt, subs +C2906549|T037|PT|Y36.040S|ICD10CM|War operations involving explosion of torpedo, military personnel, sequela|War operations involving explosion of torpedo, military personnel, sequela +C2906549|T037|AB|Y36.040S|ICD10CM|War operations involving explosion of torpedo, milt, sequela|War operations involving explosion of torpedo, milt, sequela +C2906550|T037|AB|Y36.041|ICD10CM|War operations involving explosion of torpedo, civilian|War operations involving explosion of torpedo, civilian +C2906550|T037|HT|Y36.041|ICD10CM|War operations involving explosion of torpedo, civilian|War operations involving explosion of torpedo, civilian +C2906551|T037|AB|Y36.041A|ICD10CM|War op involving explosion of torpedo, civilian, init|War op involving explosion of torpedo, civilian, init +C2906551|T037|PT|Y36.041A|ICD10CM|War operations involving explosion of torpedo, civilian, initial encounter|War operations involving explosion of torpedo, civilian, initial encounter +C2906552|T037|AB|Y36.041D|ICD10CM|War op involving explosion of torpedo, civilian, subs|War op involving explosion of torpedo, civilian, subs +C2906552|T037|PT|Y36.041D|ICD10CM|War operations involving explosion of torpedo, civilian, subsequent encounter|War operations involving explosion of torpedo, civilian, subsequent encounter +C2906553|T037|AB|Y36.041S|ICD10CM|War op involving explosion of torpedo, civilian, sequela|War op involving explosion of torpedo, civilian, sequela +C2906553|T037|PT|Y36.041S|ICD10CM|War operations involving explosion of torpedo, civilian, sequela|War operations involving explosion of torpedo, civilian, sequela +C2906554|T037|AB|Y36.05|ICD10CM|War operations involving acc deton onboard marine weapons|War operations involving acc deton onboard marine weapons +C2906554|T037|HT|Y36.05|ICD10CM|War operations involving accidental detonation of onboard marine weapons|War operations involving accidental detonation of onboard marine weapons +C2906555|T037|AB|Y36.050|ICD10CM|War op involving acc deton onboard marine weapons, milt|War op involving acc deton onboard marine weapons, milt +C2906555|T037|HT|Y36.050|ICD10CM|War operations involving accidental detonation of onboard marine weapons, military personnel|War operations involving accidental detonation of onboard marine weapons, military personnel +C2906556|T037|AB|Y36.050A|ICD10CM|War op w acc deton onboard marine weapons, milt, init|War op w acc deton onboard marine weapons, milt, init +C2906557|T037|AB|Y36.050D|ICD10CM|War op w acc deton onboard marine weapons, milt, subs|War op w acc deton onboard marine weapons, milt, subs +C2906558|T037|AB|Y36.050S|ICD10CM|War op w acc deton onboard marine weapons, milt, sequela|War op w acc deton onboard marine weapons, milt, sequela +C2906559|T037|AB|Y36.051|ICD10CM|War op involving acc deton onboard marine weapons, civilian|War op involving acc deton onboard marine weapons, civilian +C2906559|T037|HT|Y36.051|ICD10CM|War operations involving accidental detonation of onboard marine weapons, civilian|War operations involving accidental detonation of onboard marine weapons, civilian +C2906560|T037|AB|Y36.051A|ICD10CM|War op w acc deton onboard marine weapons, civilian, init|War op w acc deton onboard marine weapons, civilian, init +C2906561|T037|AB|Y36.051D|ICD10CM|War op w acc deton onboard marine weapons, civilian, subs|War op w acc deton onboard marine weapons, civilian, subs +C2906562|T037|AB|Y36.051S|ICD10CM|War op w acc deton onboard marine weapons, civilian, sequela|War op w acc deton onboard marine weapons, civilian, sequela +C2906562|T037|PT|Y36.051S|ICD10CM|War operations involving accidental detonation of onboard marine weapons, civilian, sequela|War operations involving accidental detonation of onboard marine weapons, civilian, sequela +C2906563|T037|AB|Y36.09|ICD10CM|War operations involving explosion of other marine weapons|War operations involving explosion of other marine weapons +C2906563|T037|HT|Y36.09|ICD10CM|War operations involving explosion of other marine weapons|War operations involving explosion of other marine weapons +C2906564|T037|AB|Y36.090|ICD10CM|War operations involving explosion of marine weapons, milt|War operations involving explosion of marine weapons, milt +C2906564|T037|HT|Y36.090|ICD10CM|War operations involving explosion of other marine weapons, military personnel|War operations involving explosion of other marine weapons, military personnel +C2906565|T037|AB|Y36.090A|ICD10CM|War op involving explosion of marine weapons, milt, init|War op involving explosion of marine weapons, milt, init +C2906565|T037|PT|Y36.090A|ICD10CM|War operations involving explosion of other marine weapons, military personnel, initial encounter|War operations involving explosion of other marine weapons, military personnel, initial encounter +C2906566|T037|AB|Y36.090D|ICD10CM|War op involving explosion of marine weapons, milt, subs|War op involving explosion of marine weapons, milt, subs +C2906566|T037|PT|Y36.090D|ICD10CM|War operations involving explosion of other marine weapons, military personnel, subsequent encounter|War operations involving explosion of other marine weapons, military personnel, subsequent encounter +C2906567|T037|AB|Y36.090S|ICD10CM|War op involving explosion of marine weapons, milt, sequela|War op involving explosion of marine weapons, milt, sequela +C2906567|T037|PT|Y36.090S|ICD10CM|War operations involving explosion of other marine weapons, military personnel, sequela|War operations involving explosion of other marine weapons, military personnel, sequela +C2906568|T037|AB|Y36.091|ICD10CM|War op involving explosion of marine weapons, civilian|War op involving explosion of marine weapons, civilian +C2906568|T037|HT|Y36.091|ICD10CM|War operations involving explosion of other marine weapons, civilian|War operations involving explosion of other marine weapons, civilian +C2906569|T037|AB|Y36.091A|ICD10CM|War op involving explosion of marine weapons, civilian, init|War op involving explosion of marine weapons, civilian, init +C2906569|T037|PT|Y36.091A|ICD10CM|War operations involving explosion of other marine weapons, civilian, initial encounter|War operations involving explosion of other marine weapons, civilian, initial encounter +C2906570|T037|AB|Y36.091D|ICD10CM|War op involving explosion of marine weapons, civilian, subs|War op involving explosion of marine weapons, civilian, subs +C2906570|T037|PT|Y36.091D|ICD10CM|War operations involving explosion of other marine weapons, civilian, subsequent encounter|War operations involving explosion of other marine weapons, civilian, subsequent encounter +C2906571|T037|AB|Y36.091S|ICD10CM|War op w explosn of marine weapons, civilian, sequela|War op w explosn of marine weapons, civilian, sequela +C2906571|T037|PT|Y36.091S|ICD10CM|War operations involving explosion of other marine weapons, civilian, sequela|War operations involving explosion of other marine weapons, civilian, sequela +C0481102|T037|PX|Y36.1|ICD10|Injury due to war operations involving destruction of aircraft|Injury due to war operations involving destruction of aircraft +C0481102|T037|PS|Y36.1|ICD10|War operations involving destruction of aircraft|War operations involving destruction of aircraft +C0481102|T037|HT|Y36.1|ICD10CM|War operations involving destruction of aircraft|War operations involving destruction of aircraft +C0481102|T037|AB|Y36.1|ICD10CM|War operations involving destruction of aircraft|War operations involving destruction of aircraft +C2906572|T037|AB|Y36.10|ICD10CM|War operations involving unspecified destruction of aircraft|War operations involving unspecified destruction of aircraft +C2906572|T037|HT|Y36.10|ICD10CM|War operations involving unspecified destruction of aircraft|War operations involving unspecified destruction of aircraft +C2906573|T037|AB|Y36.100|ICD10CM|War operations involving unsp dest arcrft, milt|War operations involving unsp dest arcrft, milt +C2906573|T037|HT|Y36.100|ICD10CM|War operations involving unspecified destruction of aircraft, military personnel|War operations involving unspecified destruction of aircraft, military personnel +C2906574|T037|AB|Y36.100A|ICD10CM|War operations involving unsp dest arcrft, milt, init|War operations involving unsp dest arcrft, milt, init +C2906574|T037|PT|Y36.100A|ICD10CM|War operations involving unspecified destruction of aircraft, military personnel, initial encounter|War operations involving unspecified destruction of aircraft, military personnel, initial encounter +C2906575|T037|AB|Y36.100D|ICD10CM|War operations involving unsp dest arcrft, milt, subs|War operations involving unsp dest arcrft, milt, subs +C2906576|T037|AB|Y36.100S|ICD10CM|War operations involving unsp dest arcrft, milt, sequela|War operations involving unsp dest arcrft, milt, sequela +C2906576|T037|PT|Y36.100S|ICD10CM|War operations involving unspecified destruction of aircraft, military personnel, sequela|War operations involving unspecified destruction of aircraft, military personnel, sequela +C2906577|T037|AB|Y36.101|ICD10CM|War operations involving unsp dest arcrft, civilian|War operations involving unsp dest arcrft, civilian +C2906577|T037|HT|Y36.101|ICD10CM|War operations involving unspecified destruction of aircraft, civilian|War operations involving unspecified destruction of aircraft, civilian +C2906578|T037|AB|Y36.101A|ICD10CM|War operations involving unsp dest arcrft, civilian, init|War operations involving unsp dest arcrft, civilian, init +C2906578|T037|PT|Y36.101A|ICD10CM|War operations involving unspecified destruction of aircraft, civilian, initial encounter|War operations involving unspecified destruction of aircraft, civilian, initial encounter +C2906579|T037|AB|Y36.101D|ICD10CM|War operations involving unsp dest arcrft, civilian, subs|War operations involving unsp dest arcrft, civilian, subs +C2906579|T037|PT|Y36.101D|ICD10CM|War operations involving unspecified destruction of aircraft, civilian, subsequent encounter|War operations involving unspecified destruction of aircraft, civilian, subsequent encounter +C2906580|T037|AB|Y36.101S|ICD10CM|War operations involving unsp dest arcrft, civilian, sequela|War operations involving unsp dest arcrft, civilian, sequela +C2906580|T037|PT|Y36.101S|ICD10CM|War operations involving unspecified destruction of aircraft, civilian, sequela|War operations involving unspecified destruction of aircraft, civilian, sequela +C2906586|T037|AB|Y36.11|ICD10CM|War operations involving dest arcrft due to enmy fire/expls|War operations involving dest arcrft due to enmy fire/expls +C2906581|T037|ET|Y36.11|ICD10CM|War operations involving destruction of aircraft due to air to air missile|War operations involving destruction of aircraft due to air to air missile +C2906586|T037|HT|Y36.11|ICD10CM|War operations involving destruction of aircraft due to enemy fire or explosives|War operations involving destruction of aircraft due to enemy fire or explosives +C2906582|T037|ET|Y36.11|ICD10CM|War operations involving destruction of aircraft due to explosive placed on aircraft|War operations involving destruction of aircraft due to explosive placed on aircraft +C2906583|T037|ET|Y36.11|ICD10CM|War operations involving destruction of aircraft due to rocket propelled grenade [RPG]|War operations involving destruction of aircraft due to rocket propelled grenade [RPG] +C2906584|T037|ET|Y36.11|ICD10CM|War operations involving destruction of aircraft due to small arms fire|War operations involving destruction of aircraft due to small arms fire +C2906585|T037|ET|Y36.11|ICD10CM|War operations involving destruction of aircraft due to surface to air missile|War operations involving destruction of aircraft due to surface to air missile +C2906587|T037|AB|Y36.110|ICD10CM|War op involving dest arcrft due to enmy fire/expls, milt|War op involving dest arcrft due to enmy fire/expls, milt +C2906587|T037|HT|Y36.110|ICD10CM|War operations involving destruction of aircraft due to enemy fire or explosives, military personnel|War operations involving destruction of aircraft due to enemy fire or explosives, military personnel +C2906588|T037|AB|Y36.110A|ICD10CM|War op w dest arcrft due to enmy fire/expls, milt, init|War op w dest arcrft due to enmy fire/expls, milt, init +C2906589|T037|AB|Y36.110D|ICD10CM|War op w dest arcrft due to enmy fire/expls, milt, subs|War op w dest arcrft due to enmy fire/expls, milt, subs +C2906590|T037|AB|Y36.110S|ICD10CM|War op w dest arcrft due to enmy fire/expls, milt, sequela|War op w dest arcrft due to enmy fire/expls, milt, sequela +C2906591|T037|AB|Y36.111|ICD10CM|War op w dest arcrft due to enmy fire/expls, civilian|War op w dest arcrft due to enmy fire/expls, civilian +C2906591|T037|HT|Y36.111|ICD10CM|War operations involving destruction of aircraft due to enemy fire or explosives, civilian|War operations involving destruction of aircraft due to enemy fire or explosives, civilian +C2906592|T037|AB|Y36.111A|ICD10CM|War op w dest arcrft due to enmy fire/expls, civilian, init|War op w dest arcrft due to enmy fire/expls, civilian, init +C2906593|T037|AB|Y36.111D|ICD10CM|War op w dest arcrft due to enmy fire/expls, civilian, subs|War op w dest arcrft due to enmy fire/expls, civilian, subs +C2906594|T037|AB|Y36.111S|ICD10CM|War op w dest arcrft due to enmy fire/expls, civ, sequela|War op w dest arcrft due to enmy fire/expls, civ, sequela +C2906594|T037|PT|Y36.111S|ICD10CM|War operations involving destruction of aircraft due to enemy fire or explosives, civilian, sequela|War operations involving destruction of aircraft due to enemy fire or explosives, civilian, sequela +C2906595|T037|AB|Y36.12|ICD10CM|War op involving dest arcrft due to collision w oth aircraft|War op involving dest arcrft due to collision w oth aircraft +C2906595|T037|HT|Y36.12|ICD10CM|War operations involving destruction of aircraft due to collision with other aircraft|War operations involving destruction of aircraft due to collision with other aircraft +C2906596|T037|AB|Y36.120|ICD10CM|War op w dest arcrft due to clsn w oth aircraft, milt|War op w dest arcrft due to clsn w oth aircraft, milt +C2906597|T037|AB|Y36.120A|ICD10CM|War op w dest arcrft due to clsn w oth aircraft, milt, init|War op w dest arcrft due to clsn w oth aircraft, milt, init +C2906598|T037|AB|Y36.120D|ICD10CM|War op w dest arcrft due to clsn w oth aircraft, milt, subs|War op w dest arcrft due to clsn w oth aircraft, milt, subs +C2906599|T037|AB|Y36.120S|ICD10CM|War op w dest arcrft due to clsn w oth arcrft, milt, sequela|War op w dest arcrft due to clsn w oth arcrft, milt, sequela +C2906600|T037|AB|Y36.121|ICD10CM|War op w dest arcrft due to clsn w oth aircraft, civilian|War op w dest arcrft due to clsn w oth aircraft, civilian +C2906600|T037|HT|Y36.121|ICD10CM|War operations involving destruction of aircraft due to collision with other aircraft, civilian|War operations involving destruction of aircraft due to collision with other aircraft, civilian +C2906601|T037|AB|Y36.121A|ICD10CM|War op w dest arcrft due to clsn w oth arcrft, civ, init|War op w dest arcrft due to clsn w oth arcrft, civ, init +C2906602|T037|AB|Y36.121D|ICD10CM|War op w dest arcrft due to clsn w oth arcrft, civ, subs|War op w dest arcrft due to clsn w oth arcrft, civ, subs +C2906603|T037|AB|Y36.121S|ICD10CM|War op w dest arcrft due to clsn w oth arcrft, civ, sequela|War op w dest arcrft due to clsn w oth arcrft, civ, sequela +C2906604|T037|AB|Y36.13|ICD10CM|War operations involving dest arcrft due to onboard fire|War operations involving dest arcrft due to onboard fire +C2906604|T037|HT|Y36.13|ICD10CM|War operations involving destruction of aircraft due to onboard fire|War operations involving destruction of aircraft due to onboard fire +C2906605|T037|AB|Y36.130|ICD10CM|War op involving dest arcrft due to onboard fire, milt|War op involving dest arcrft due to onboard fire, milt +C2906605|T037|HT|Y36.130|ICD10CM|War operations involving destruction of aircraft due to onboard fire, military personnel|War operations involving destruction of aircraft due to onboard fire, military personnel +C2906606|T037|AB|Y36.130A|ICD10CM|War op involving dest arcrft due to onboard fire, milt, init|War op involving dest arcrft due to onboard fire, milt, init +C2906607|T037|AB|Y36.130D|ICD10CM|War op involving dest arcrft due to onboard fire, milt, subs|War op involving dest arcrft due to onboard fire, milt, subs +C2906608|T037|AB|Y36.130S|ICD10CM|War op w dest arcrft due to onboard fire, milt, sequela|War op w dest arcrft due to onboard fire, milt, sequela +C2906608|T037|PT|Y36.130S|ICD10CM|War operations involving destruction of aircraft due to onboard fire, military personnel, sequela|War operations involving destruction of aircraft due to onboard fire, military personnel, sequela +C2906609|T037|AB|Y36.131|ICD10CM|War op involving dest arcrft due to onboard fire, civilian|War op involving dest arcrft due to onboard fire, civilian +C2906609|T037|HT|Y36.131|ICD10CM|War operations involving destruction of aircraft due to onboard fire, civilian|War operations involving destruction of aircraft due to onboard fire, civilian +C2906610|T037|AB|Y36.131A|ICD10CM|War op w dest arcrft due to onboard fire, civilian, init|War op w dest arcrft due to onboard fire, civilian, init +C2906610|T037|PT|Y36.131A|ICD10CM|War operations involving destruction of aircraft due to onboard fire, civilian, initial encounter|War operations involving destruction of aircraft due to onboard fire, civilian, initial encounter +C2906611|T037|AB|Y36.131D|ICD10CM|War op w dest arcrft due to onboard fire, civilian, subs|War op w dest arcrft due to onboard fire, civilian, subs +C2906611|T037|PT|Y36.131D|ICD10CM|War operations involving destruction of aircraft due to onboard fire, civilian, subsequent encounter|War operations involving destruction of aircraft due to onboard fire, civilian, subsequent encounter +C2906612|T037|AB|Y36.131S|ICD10CM|War op w dest arcrft due to onboard fire, civilian, sequela|War op w dest arcrft due to onboard fire, civilian, sequela +C2906612|T037|PT|Y36.131S|ICD10CM|War operations involving destruction of aircraft due to onboard fire, civilian, sequela|War operations involving destruction of aircraft due to onboard fire, civilian, sequela +C2906613|T037|AB|Y36.14|ICD10CM|War op involving dest arcrft due to acc deton onboard munit|War op involving dest arcrft due to acc deton onboard munit +C2906614|T037|AB|Y36.140|ICD10CM|War op w dest arcrft due to acc deton onboard munit, milt|War op w dest arcrft due to acc deton onboard munit, milt +C2906615|T037|AB|Y36.140A|ICD10CM|War op w dest arcrft d/t acc deton onbrd munit, milt, init|War op w dest arcrft d/t acc deton onbrd munit, milt, init +C2906616|T037|AB|Y36.140D|ICD10CM|War op w dest arcrft d/t acc deton onbrd munit, milt, subs|War op w dest arcrft d/t acc deton onbrd munit, milt, subs +C2906617|T037|AB|Y36.140S|ICD10CM|War op w dest arcrft d/t acc deton onbrd munit, milt, sqla|War op w dest arcrft d/t acc deton onbrd munit, milt, sqla +C2906618|T037|AB|Y36.141|ICD10CM|War op w dest arcrft due to acc deton onboard munit, civ|War op w dest arcrft due to acc deton onboard munit, civ +C2906619|T037|AB|Y36.141A|ICD10CM|War op w dest arcrft due to acc deton onbrd munit, civ, init|War op w dest arcrft due to acc deton onbrd munit, civ, init +C2906620|T037|AB|Y36.141D|ICD10CM|War op w dest arcrft due to acc deton onbrd munit, civ, subs|War op w dest arcrft due to acc deton onbrd munit, civ, subs +C2906621|T037|AB|Y36.141S|ICD10CM|War op w dest arcrft due to acc deton onbrd munit, civ, sqla|War op w dest arcrft due to acc deton onbrd munit, civ, sqla +C2906622|T037|AB|Y36.19|ICD10CM|War operations involving other destruction of aircraft|War operations involving other destruction of aircraft +C2906622|T037|HT|Y36.19|ICD10CM|War operations involving other destruction of aircraft|War operations involving other destruction of aircraft +C2906623|T037|AB|Y36.190|ICD10CM|War operations involving oth dest arcrft, military personnel|War operations involving oth dest arcrft, military personnel +C2906623|T037|HT|Y36.190|ICD10CM|War operations involving other destruction of aircraft, military personnel|War operations involving other destruction of aircraft, military personnel +C2906624|T037|AB|Y36.190A|ICD10CM|War operations involving oth dest arcrft, milt, init|War operations involving oth dest arcrft, milt, init +C2906624|T037|PT|Y36.190A|ICD10CM|War operations involving other destruction of aircraft, military personnel, initial encounter|War operations involving other destruction of aircraft, military personnel, initial encounter +C2906625|T037|AB|Y36.190D|ICD10CM|War operations involving oth dest arcrft, milt, subs|War operations involving oth dest arcrft, milt, subs +C2906625|T037|PT|Y36.190D|ICD10CM|War operations involving other destruction of aircraft, military personnel, subsequent encounter|War operations involving other destruction of aircraft, military personnel, subsequent encounter +C2906626|T037|AB|Y36.190S|ICD10CM|War operations involving oth dest arcrft, milt, sequela|War operations involving oth dest arcrft, milt, sequela +C2906626|T037|PT|Y36.190S|ICD10CM|War operations involving other destruction of aircraft, military personnel, sequela|War operations involving other destruction of aircraft, military personnel, sequela +C2906627|T037|AB|Y36.191|ICD10CM|War operations involving oth dest arcrft, civilian|War operations involving oth dest arcrft, civilian +C2906627|T037|HT|Y36.191|ICD10CM|War operations involving other destruction of aircraft, civilian|War operations involving other destruction of aircraft, civilian +C2906628|T037|AB|Y36.191A|ICD10CM|War operations involving oth dest arcrft, civilian, init|War operations involving oth dest arcrft, civilian, init +C2906628|T037|PT|Y36.191A|ICD10CM|War operations involving other destruction of aircraft, civilian, initial encounter|War operations involving other destruction of aircraft, civilian, initial encounter +C2906629|T037|AB|Y36.191D|ICD10CM|War operations involving oth dest arcrft, civilian, subs|War operations involving oth dest arcrft, civilian, subs +C2906629|T037|PT|Y36.191D|ICD10CM|War operations involving other destruction of aircraft, civilian, subsequent encounter|War operations involving other destruction of aircraft, civilian, subsequent encounter +C2906630|T037|AB|Y36.191S|ICD10CM|War operations involving oth dest arcrft, civilian, sequela|War operations involving oth dest arcrft, civilian, sequela +C2906630|T037|PT|Y36.191S|ICD10CM|War operations involving other destruction of aircraft, civilian, sequela|War operations involving other destruction of aircraft, civilian, sequela +C0481103|T037|PX|Y36.2|ICD10|Injury due to war operations involving other explosions and fragments|Injury due to war operations involving other explosions and fragments +C0481103|T037|PS|Y36.2|ICD10|War operations involving other explosions and fragments|War operations involving other explosions and fragments +C0481103|T037|HT|Y36.2|ICD10CM|War operations involving other explosions and fragments|War operations involving other explosions and fragments +C0481103|T037|AB|Y36.2|ICD10CM|War operations involving other explosions and fragments|War operations involving other explosions and fragments +C2906631|T037|ET|Y36.20|ICD10CM|War operations involving air blast NOS|War operations involving air blast NOS +C2906633|T037|ET|Y36.20|ICD10CM|War operations involving blast fragments NOS|War operations involving blast fragments NOS +C2906632|T037|ET|Y36.20|ICD10CM|War operations involving blast NOS|War operations involving blast NOS +C2906634|T037|ET|Y36.20|ICD10CM|War operations involving blast wave NOS|War operations involving blast wave NOS +C2906635|T037|ET|Y36.20|ICD10CM|War operations involving blast wind NOS|War operations involving blast wind NOS +C2906636|T037|ET|Y36.20|ICD10CM|War operations involving explosion NOS|War operations involving explosion NOS +C2906637|T037|ET|Y36.20|ICD10CM|War operations involving explosion of bomb NOS|War operations involving explosion of bomb NOS +C2906638|T037|AB|Y36.20|ICD10CM|War operations involving unspecified explosion and fragments|War operations involving unspecified explosion and fragments +C2906638|T037|HT|Y36.20|ICD10CM|War operations involving unspecified explosion and fragments|War operations involving unspecified explosion and fragments +C2906639|T037|AB|Y36.200|ICD10CM|War operations involving unsp explosion and fragments, milt|War operations involving unsp explosion and fragments, milt +C2906639|T037|HT|Y36.200|ICD10CM|War operations involving unspecified explosion and fragments, military personnel|War operations involving unspecified explosion and fragments, military personnel +C2906640|T037|AB|Y36.200A|ICD10CM|War op involving unsp explosion and fragments, milt, init|War op involving unsp explosion and fragments, milt, init +C2906640|T037|PT|Y36.200A|ICD10CM|War operations involving unspecified explosion and fragments, military personnel, initial encounter|War operations involving unspecified explosion and fragments, military personnel, initial encounter +C2906641|T037|AB|Y36.200D|ICD10CM|War op involving unsp explosion and fragments, milt, subs|War op involving unsp explosion and fragments, milt, subs +C2906642|T037|AB|Y36.200S|ICD10CM|War op involving unsp explosion and fragments, milt, sequela|War op involving unsp explosion and fragments, milt, sequela +C2906642|T037|PT|Y36.200S|ICD10CM|War operations involving unspecified explosion and fragments, military personnel, sequela|War operations involving unspecified explosion and fragments, military personnel, sequela +C2906643|T037|AB|Y36.201|ICD10CM|War op involving unsp explosion and fragments, civilian|War op involving unsp explosion and fragments, civilian +C2906643|T037|HT|Y36.201|ICD10CM|War operations involving unspecified explosion and fragments, civilian|War operations involving unspecified explosion and fragments, civilian +C2906644|T037|AB|Y36.201A|ICD10CM|War op involving unsp explosn and fragments, civilian, init|War op involving unsp explosn and fragments, civilian, init +C2906644|T037|PT|Y36.201A|ICD10CM|War operations involving unspecified explosion and fragments, civilian, initial encounter|War operations involving unspecified explosion and fragments, civilian, initial encounter +C2906645|T037|AB|Y36.201D|ICD10CM|War op involving unsp explosn and fragments, civilian, subs|War op involving unsp explosn and fragments, civilian, subs +C2906645|T037|PT|Y36.201D|ICD10CM|War operations involving unspecified explosion and fragments, civilian, subsequent encounter|War operations involving unspecified explosion and fragments, civilian, subsequent encounter +C2906646|T037|AB|Y36.201S|ICD10CM|War op involving unsp explosn and fragmt, civilian, sequela|War op involving unsp explosn and fragmt, civilian, sequela +C2906646|T037|PT|Y36.201S|ICD10CM|War operations involving unspecified explosion and fragments, civilian, sequela|War operations involving unspecified explosion and fragments, civilian, sequela +C2906647|T037|AB|Y36.21|ICD10CM|War operations involving explosion of aerial bomb|War operations involving explosion of aerial bomb +C2906647|T037|HT|Y36.21|ICD10CM|War operations involving explosion of aerial bomb|War operations involving explosion of aerial bomb +C2906648|T037|HT|Y36.210|ICD10CM|War operations involving explosion of aerial bomb, military personnel|War operations involving explosion of aerial bomb, military personnel +C2906648|T037|AB|Y36.210|ICD10CM|War operations involving explosion of aerial bomb, milt|War operations involving explosion of aerial bomb, milt +C2906649|T037|AB|Y36.210A|ICD10CM|War op involving explosion of aerial bomb, milt, init|War op involving explosion of aerial bomb, milt, init +C2906649|T037|PT|Y36.210A|ICD10CM|War operations involving explosion of aerial bomb, military personnel, initial encounter|War operations involving explosion of aerial bomb, military personnel, initial encounter +C2906650|T037|AB|Y36.210D|ICD10CM|War op involving explosion of aerial bomb, milt, subs|War op involving explosion of aerial bomb, milt, subs +C2906650|T037|PT|Y36.210D|ICD10CM|War operations involving explosion of aerial bomb, military personnel, subsequent encounter|War operations involving explosion of aerial bomb, military personnel, subsequent encounter +C2906651|T037|AB|Y36.210S|ICD10CM|War op involving explosion of aerial bomb, milt, sequela|War op involving explosion of aerial bomb, milt, sequela +C2906651|T037|PT|Y36.210S|ICD10CM|War operations involving explosion of aerial bomb, military personnel, sequela|War operations involving explosion of aerial bomb, military personnel, sequela +C2906652|T037|AB|Y36.211|ICD10CM|War operations involving explosion of aerial bomb, civilian|War operations involving explosion of aerial bomb, civilian +C2906652|T037|HT|Y36.211|ICD10CM|War operations involving explosion of aerial bomb, civilian|War operations involving explosion of aerial bomb, civilian +C2906653|T037|AB|Y36.211A|ICD10CM|War op involving explosion of aerial bomb, civilian, init|War op involving explosion of aerial bomb, civilian, init +C2906653|T037|PT|Y36.211A|ICD10CM|War operations involving explosion of aerial bomb, civilian, initial encounter|War operations involving explosion of aerial bomb, civilian, initial encounter +C2906654|T037|AB|Y36.211D|ICD10CM|War op involving explosion of aerial bomb, civilian, subs|War op involving explosion of aerial bomb, civilian, subs +C2906654|T037|PT|Y36.211D|ICD10CM|War operations involving explosion of aerial bomb, civilian, subsequent encounter|War operations involving explosion of aerial bomb, civilian, subsequent encounter +C2906655|T037|AB|Y36.211S|ICD10CM|War op involving explosion of aerial bomb, civilian, sequela|War op involving explosion of aerial bomb, civilian, sequela +C2906655|T037|PT|Y36.211S|ICD10CM|War operations involving explosion of aerial bomb, civilian, sequela|War operations involving explosion of aerial bomb, civilian, sequela +C2906656|T037|AB|Y36.22|ICD10CM|War operations involving explosion of guided missile|War operations involving explosion of guided missile +C2906656|T037|HT|Y36.22|ICD10CM|War operations involving explosion of guided missile|War operations involving explosion of guided missile +C2906657|T037|HT|Y36.220|ICD10CM|War operations involving explosion of guided missile, military personnel|War operations involving explosion of guided missile, military personnel +C2906657|T037|AB|Y36.220|ICD10CM|War operations involving explosion of guided missile, milt|War operations involving explosion of guided missile, milt +C2906658|T037|AB|Y36.220A|ICD10CM|War op involving explosion of guided missile, milt, init|War op involving explosion of guided missile, milt, init +C2906658|T037|PT|Y36.220A|ICD10CM|War operations involving explosion of guided missile, military personnel, initial encounter|War operations involving explosion of guided missile, military personnel, initial encounter +C2906659|T037|AB|Y36.220D|ICD10CM|War op involving explosion of guided missile, milt, subs|War op involving explosion of guided missile, milt, subs +C2906659|T037|PT|Y36.220D|ICD10CM|War operations involving explosion of guided missile, military personnel, subsequent encounter|War operations involving explosion of guided missile, military personnel, subsequent encounter +C2906660|T037|AB|Y36.220S|ICD10CM|War op involving explosion of guided missile, milt, sequela|War op involving explosion of guided missile, milt, sequela +C2906660|T037|PT|Y36.220S|ICD10CM|War operations involving explosion of guided missile, military personnel, sequela|War operations involving explosion of guided missile, military personnel, sequela +C2906661|T037|AB|Y36.221|ICD10CM|War op involving explosion of guided missile, civilian|War op involving explosion of guided missile, civilian +C2906661|T037|HT|Y36.221|ICD10CM|War operations involving explosion of guided missile, civilian|War operations involving explosion of guided missile, civilian +C2906662|T037|AB|Y36.221A|ICD10CM|War op involving explosion of guided missile, civilian, init|War op involving explosion of guided missile, civilian, init +C2906662|T037|PT|Y36.221A|ICD10CM|War operations involving explosion of guided missile, civilian, initial encounter|War operations involving explosion of guided missile, civilian, initial encounter +C2906663|T037|AB|Y36.221D|ICD10CM|War op involving explosion of guided missile, civilian, subs|War op involving explosion of guided missile, civilian, subs +C2906663|T037|PT|Y36.221D|ICD10CM|War operations involving explosion of guided missile, civilian, subsequent encounter|War operations involving explosion of guided missile, civilian, subsequent encounter +C2906664|T037|AB|Y36.221S|ICD10CM|War op w explosn of guided missile, civilian, sequela|War op w explosn of guided missile, civilian, sequela +C2906664|T037|PT|Y36.221S|ICD10CM|War operations involving explosion of guided missile, civilian, sequela|War operations involving explosion of guided missile, civilian, sequela +C2906668|T037|AB|Y36.23|ICD10CM|War op involving explosion of improv explosive device|War op involving explosion of improv explosive device +C2906668|T037|HT|Y36.23|ICD10CM|War operations involving explosion of improvised explosive device [IED]|War operations involving explosion of improvised explosive device [IED] +C2906665|T037|ET|Y36.23|ICD10CM|War operations involving explosion of person-borne improvised explosive device [IED]|War operations involving explosion of person-borne improvised explosive device [IED] +C2906666|T037|ET|Y36.23|ICD10CM|War operations involving explosion of roadside improvised explosive device [IED]|War operations involving explosion of roadside improvised explosive device [IED] +C2906667|T037|ET|Y36.23|ICD10CM|War operations involving explosion of vehicle-borne improvised explosive device [IED]|War operations involving explosion of vehicle-borne improvised explosive device [IED] +C2906669|T037|AB|Y36.230|ICD10CM|War op involving explosion of improv explosive device, milt|War op involving explosion of improv explosive device, milt +C2906669|T037|HT|Y36.230|ICD10CM|War operations involving explosion of improvised explosive device [IED], military personnel|War operations involving explosion of improvised explosive device [IED], military personnel +C2906670|T037|AB|Y36.230A|ICD10CM|War op w explosn of improv explosv device, milt, init|War op w explosn of improv explosv device, milt, init +C2906671|T037|AB|Y36.230D|ICD10CM|War op w explosn of improv explosv device, milt, subs|War op w explosn of improv explosv device, milt, subs +C2906672|T037|AB|Y36.230S|ICD10CM|War op w explosn of improv explosv device, milt, sequela|War op w explosn of improv explosv device, milt, sequela +C2906672|T037|PT|Y36.230S|ICD10CM|War operations involving explosion of improvised explosive device [IED], military personnel, sequela|War operations involving explosion of improvised explosive device [IED], military personnel, sequela +C2906673|T037|AB|Y36.231|ICD10CM|War op involving explosn of improv explosv device, civilian|War op involving explosn of improv explosv device, civilian +C2906673|T037|HT|Y36.231|ICD10CM|War operations involving explosion of improvised explosive device [IED], civilian|War operations involving explosion of improvised explosive device [IED], civilian +C2906674|T037|AB|Y36.231A|ICD10CM|War op w explosn of improv explosv device, civilian, init|War op w explosn of improv explosv device, civilian, init +C2906674|T037|PT|Y36.231A|ICD10CM|War operations involving explosion of improvised explosive device [IED], civilian, initial encounter|War operations involving explosion of improvised explosive device [IED], civilian, initial encounter +C2906675|T037|AB|Y36.231D|ICD10CM|War op w explosn of improv explosv device, civilian, subs|War op w explosn of improv explosv device, civilian, subs +C2906676|T037|AB|Y36.231S|ICD10CM|War op w explosn of improv explosv device, civilian, sequela|War op w explosn of improv explosv device, civilian, sequela +C2906676|T037|PT|Y36.231S|ICD10CM|War operations involving explosion of improvised explosive device [IED], civilian, sequela|War operations involving explosion of improvised explosive device [IED], civilian, sequela +C2906677|T037|AB|Y36.24|ICD10CM|War op involving explosion due to acc disch of own munit|War op involving explosion due to acc disch of own munit +C2906678|T037|AB|Y36.240|ICD10CM|War op involving explosn due to acc disch of own munit, milt|War op involving explosn due to acc disch of own munit, milt +C2906679|T037|AB|Y36.240A|ICD10CM|War op w explosn due to acc disch of own munit, milt, init|War op w explosn due to acc disch of own munit, milt, init +C2906680|T037|AB|Y36.240D|ICD10CM|War op w explosn due to acc disch of own munit, milt, subs|War op w explosn due to acc disch of own munit, milt, subs +C2906681|T037|AB|Y36.240S|ICD10CM|War op w explosn due to acc disch of own munit, milt, sqla|War op w explosn due to acc disch of own munit, milt, sqla +C2906682|T037|AB|Y36.241|ICD10CM|War op w explosn due to acc disch of own munit, civilian|War op w explosn due to acc disch of own munit, civilian +C2906683|T037|AB|Y36.241A|ICD10CM|War op w explosn due to acc disch of own munit, civ, init|War op w explosn due to acc disch of own munit, civ, init +C2906684|T037|AB|Y36.241D|ICD10CM|War op w explosn due to acc disch of own munit, civ, subs|War op w explosn due to acc disch of own munit, civ, subs +C2906685|T037|AB|Y36.241S|ICD10CM|War op w explosn due to acc disch of own munit, civ, sequela|War op w explosn due to acc disch of own munit, civ, sequela +C2906686|T037|AB|Y36.25|ICD10CM|War operations involving fragments from munitions|War operations involving fragments from munitions +C2906686|T037|HT|Y36.25|ICD10CM|War operations involving fragments from munitions|War operations involving fragments from munitions +C2906687|T037|HT|Y36.250|ICD10CM|War operations involving fragments from munitions, military personnel|War operations involving fragments from munitions, military personnel +C2906687|T037|AB|Y36.250|ICD10CM|War operations involving fragments from munitions, milt|War operations involving fragments from munitions, milt +C2906688|T037|AB|Y36.250A|ICD10CM|War op involving fragments from munitions, milt, init|War op involving fragments from munitions, milt, init +C2906688|T037|PT|Y36.250A|ICD10CM|War operations involving fragments from munitions, military personnel, initial encounter|War operations involving fragments from munitions, military personnel, initial encounter +C2906689|T037|AB|Y36.250D|ICD10CM|War op involving fragments from munitions, milt, subs|War op involving fragments from munitions, milt, subs +C2906689|T037|PT|Y36.250D|ICD10CM|War operations involving fragments from munitions, military personnel, subsequent encounter|War operations involving fragments from munitions, military personnel, subsequent encounter +C2906690|T037|AB|Y36.250S|ICD10CM|War op involving fragments from munitions, milt, sequela|War op involving fragments from munitions, milt, sequela +C2906690|T037|PT|Y36.250S|ICD10CM|War operations involving fragments from munitions, military personnel, sequela|War operations involving fragments from munitions, military personnel, sequela +C2906691|T037|AB|Y36.251|ICD10CM|War operations involving fragments from munitions, civilian|War operations involving fragments from munitions, civilian +C2906691|T037|HT|Y36.251|ICD10CM|War operations involving fragments from munitions, civilian|War operations involving fragments from munitions, civilian +C2906692|T037|AB|Y36.251A|ICD10CM|War op involving fragments from munitions, civilian, init|War op involving fragments from munitions, civilian, init +C2906692|T037|PT|Y36.251A|ICD10CM|War operations involving fragments from munitions, civilian, initial encounter|War operations involving fragments from munitions, civilian, initial encounter +C2906693|T037|AB|Y36.251D|ICD10CM|War op involving fragments from munitions, civilian, subs|War op involving fragments from munitions, civilian, subs +C2906693|T037|PT|Y36.251D|ICD10CM|War operations involving fragments from munitions, civilian, subsequent encounter|War operations involving fragments from munitions, civilian, subsequent encounter +C2906694|T037|AB|Y36.251S|ICD10CM|War op involving fragments from munitions, civilian, sequela|War op involving fragments from munitions, civilian, sequela +C2906694|T037|PT|Y36.251S|ICD10CM|War operations involving fragments from munitions, civilian, sequela|War operations involving fragments from munitions, civilian, sequela +C2906698|T037|AB|Y36.26|ICD10CM|War op involving fragments of improv explosive device|War op involving fragments of improv explosive device +C2906698|T037|HT|Y36.26|ICD10CM|War operations involving fragments of improvised explosive device [IED]|War operations involving fragments of improvised explosive device [IED] +C2906695|T037|ET|Y36.26|ICD10CM|War operations involving fragments of person-borne improvised explosive device [IED]|War operations involving fragments of person-borne improvised explosive device [IED] +C2906696|T037|ET|Y36.26|ICD10CM|War operations involving fragments of roadside improvised explosive device [IED]|War operations involving fragments of roadside improvised explosive device [IED] +C2906697|T037|ET|Y36.26|ICD10CM|War operations involving fragments of vehicle-borne improvised explosive device [IED]|War operations involving fragments of vehicle-borne improvised explosive device [IED] +C2906699|T037|AB|Y36.260|ICD10CM|War op involving fragments of improv explosive device, milt|War op involving fragments of improv explosive device, milt +C2906699|T037|HT|Y36.260|ICD10CM|War operations involving fragments of improvised explosive device [IED], military personnel|War operations involving fragments of improvised explosive device [IED], military personnel +C2906700|T037|AB|Y36.260A|ICD10CM|War op involving fragmt of improv explosv device, milt, init|War op involving fragmt of improv explosv device, milt, init +C2906701|T037|AB|Y36.260D|ICD10CM|War op involving fragmt of improv explosv device, milt, subs|War op involving fragmt of improv explosv device, milt, subs +C2906702|T037|AB|Y36.260S|ICD10CM|War op w fragmt of improv explosv device, milt, sequela|War op w fragmt of improv explosv device, milt, sequela +C2906702|T037|PT|Y36.260S|ICD10CM|War operations involving fragments of improvised explosive device [IED], military personnel, sequela|War operations involving fragments of improvised explosive device [IED], military personnel, sequela +C2906703|T037|AB|Y36.261|ICD10CM|War op involving fragmt of improv explosv device, civilian|War op involving fragmt of improv explosv device, civilian +C2906703|T037|HT|Y36.261|ICD10CM|War operations involving fragments of improvised explosive device [IED], civilian|War operations involving fragments of improvised explosive device [IED], civilian +C2906704|T037|AB|Y36.261A|ICD10CM|War op w fragmt of improv explosv device, civilian, init|War op w fragmt of improv explosv device, civilian, init +C2906704|T037|PT|Y36.261A|ICD10CM|War operations involving fragments of improvised explosive device [IED], civilian, initial encounter|War operations involving fragments of improvised explosive device [IED], civilian, initial encounter +C2906705|T037|AB|Y36.261D|ICD10CM|War op w fragmt of improv explosv device, civilian, subs|War op w fragmt of improv explosv device, civilian, subs +C2906706|T037|AB|Y36.261S|ICD10CM|War op w fragmt of improv explosv device, civilian, sequela|War op w fragmt of improv explosv device, civilian, sequela +C2906706|T037|PT|Y36.261S|ICD10CM|War operations involving fragments of improvised explosive device [IED], civilian, sequela|War operations involving fragments of improvised explosive device [IED], civilian, sequela +C2906707|T037|AB|Y36.27|ICD10CM|War operations involving fragments from weapons|War operations involving fragments from weapons +C2906707|T037|HT|Y36.27|ICD10CM|War operations involving fragments from weapons|War operations involving fragments from weapons +C2906708|T037|HT|Y36.270|ICD10CM|War operations involving fragments from weapons, military personnel|War operations involving fragments from weapons, military personnel +C2906708|T037|AB|Y36.270|ICD10CM|War operations involving fragments from weapons, milt|War operations involving fragments from weapons, milt +C2906709|T037|PT|Y36.270A|ICD10CM|War operations involving fragments from weapons, military personnel, initial encounter|War operations involving fragments from weapons, military personnel, initial encounter +C2906709|T037|AB|Y36.270A|ICD10CM|War operations involving fragments from weapons, milt, init|War operations involving fragments from weapons, milt, init +C2906710|T037|PT|Y36.270D|ICD10CM|War operations involving fragments from weapons, military personnel, subsequent encounter|War operations involving fragments from weapons, military personnel, subsequent encounter +C2906710|T037|AB|Y36.270D|ICD10CM|War operations involving fragments from weapons, milt, subs|War operations involving fragments from weapons, milt, subs +C2906711|T037|AB|Y36.270S|ICD10CM|War op involving fragments from weapons, milt, sequela|War op involving fragments from weapons, milt, sequela +C2906711|T037|PT|Y36.270S|ICD10CM|War operations involving fragments from weapons, military personnel, sequela|War operations involving fragments from weapons, military personnel, sequela +C2906712|T037|AB|Y36.271|ICD10CM|War operations involving fragments from weapons, civilian|War operations involving fragments from weapons, civilian +C2906712|T037|HT|Y36.271|ICD10CM|War operations involving fragments from weapons, civilian|War operations involving fragments from weapons, civilian +C2906713|T037|AB|Y36.271A|ICD10CM|War op involving fragments from weapons, civilian, init|War op involving fragments from weapons, civilian, init +C2906713|T037|PT|Y36.271A|ICD10CM|War operations involving fragments from weapons, civilian, initial encounter|War operations involving fragments from weapons, civilian, initial encounter +C2906714|T037|AB|Y36.271D|ICD10CM|War op involving fragments from weapons, civilian, subs|War op involving fragments from weapons, civilian, subs +C2906714|T037|PT|Y36.271D|ICD10CM|War operations involving fragments from weapons, civilian, subsequent encounter|War operations involving fragments from weapons, civilian, subsequent encounter +C2906715|T037|AB|Y36.271S|ICD10CM|War op involving fragments from weapons, civilian, sequela|War op involving fragments from weapons, civilian, sequela +C2906715|T037|PT|Y36.271S|ICD10CM|War operations involving fragments from weapons, civilian, sequela|War operations involving fragments from weapons, civilian, sequela +C2906716|T037|ET|Y36.29|ICD10CM|War operations involving explosion of grenade|War operations involving explosion of grenade +C2906717|T037|ET|Y36.29|ICD10CM|War operations involving explosions of land mine|War operations involving explosions of land mine +C0481103|T037|HT|Y36.29|ICD10CM|War operations involving other explosions and fragments|War operations involving other explosions and fragments +C0481103|T037|AB|Y36.29|ICD10CM|War operations involving other explosions and fragments|War operations involving other explosions and fragments +C2906718|T037|ET|Y36.29|ICD10CM|War operations involving shrapnel NOS|War operations involving shrapnel NOS +C2906719|T037|AB|Y36.290|ICD10CM|War operations involving oth explosions and fragments, milt|War operations involving oth explosions and fragments, milt +C2906719|T037|HT|Y36.290|ICD10CM|War operations involving other explosions and fragments, military personnel|War operations involving other explosions and fragments, military personnel +C2906720|T037|AB|Y36.290A|ICD10CM|War op involving oth explosn and fragments, milt, init|War op involving oth explosn and fragments, milt, init +C2906720|T037|PT|Y36.290A|ICD10CM|War operations involving other explosions and fragments, military personnel, initial encounter|War operations involving other explosions and fragments, military personnel, initial encounter +C2906721|T037|AB|Y36.290D|ICD10CM|War op involving oth explosn and fragments, milt, subs|War op involving oth explosn and fragments, milt, subs +C2906721|T037|PT|Y36.290D|ICD10CM|War operations involving other explosions and fragments, military personnel, subsequent encounter|War operations involving other explosions and fragments, military personnel, subsequent encounter +C2906722|T037|AB|Y36.290S|ICD10CM|War op involving oth explosn and fragments, milt, sequela|War op involving oth explosn and fragments, milt, sequela +C2906722|T037|PT|Y36.290S|ICD10CM|War operations involving other explosions and fragments, military personnel, sequela|War operations involving other explosions and fragments, military personnel, sequela +C2906723|T037|AB|Y36.291|ICD10CM|War operations involving oth explosn and fragments, civilian|War operations involving oth explosn and fragments, civilian +C2906723|T037|HT|Y36.291|ICD10CM|War operations involving other explosions and fragments, civilian|War operations involving other explosions and fragments, civilian +C2906724|T037|AB|Y36.291A|ICD10CM|War op involving oth explosn and fragments, civilian, init|War op involving oth explosn and fragments, civilian, init +C2906724|T037|PT|Y36.291A|ICD10CM|War operations involving other explosions and fragments, civilian, initial encounter|War operations involving other explosions and fragments, civilian, initial encounter +C2906725|T037|AB|Y36.291D|ICD10CM|War op involving oth explosn and fragments, civilian, subs|War op involving oth explosn and fragments, civilian, subs +C2906725|T037|PT|Y36.291D|ICD10CM|War operations involving other explosions and fragments, civilian, subsequent encounter|War operations involving other explosions and fragments, civilian, subsequent encounter +C2906726|T037|AB|Y36.291S|ICD10CM|War op involving oth explosn and fragmt, civilian, sequela|War op involving oth explosn and fragmt, civilian, sequela +C2906726|T037|PT|Y36.291S|ICD10CM|War operations involving other explosions and fragments, civilian, sequela|War operations involving other explosions and fragments, civilian, sequela +C0481104|T037|PX|Y36.3|ICD10|Injury due to war operations involving fires, conflagrations and hot substances|Injury due to war operations involving fires, conflagrations and hot substances +C0481104|T037|AB|Y36.3|ICD10CM|War operations involving fire/hot subst|War operations involving fire/hot subst +C0481104|T037|HT|Y36.3|ICD10CM|War operations involving fires, conflagrations and hot substances|War operations involving fires, conflagrations and hot substances +C0481104|T037|PS|Y36.3|ICD10|War operations involving fires, conflagrations and hot substances|War operations involving fires, conflagrations and hot substances +C2906727|T037|ET|Y36.3|ICD10CM|War operations involving smoke, fumes, and heat from fires, conflagrations and hot substances|War operations involving smoke, fumes, and heat from fires, conflagrations and hot substances +C2906728|T037|AB|Y36.30|ICD10CM|War operations involving unsp fire/conflagr/hot subst|War operations involving unsp fire/conflagr/hot subst +C2906728|T037|HT|Y36.30|ICD10CM|War operations involving unspecified fire, conflagration and hot substance|War operations involving unspecified fire, conflagration and hot substance +C2906729|T037|AB|Y36.300|ICD10CM|War operations involving unsp fire/conflagr/hot subst, milt|War operations involving unsp fire/conflagr/hot subst, milt +C2906729|T037|HT|Y36.300|ICD10CM|War operations involving unspecified fire, conflagration and hot substance, military personnel|War operations involving unspecified fire, conflagration and hot substance, military personnel +C2906730|T037|AB|Y36.300A|ICD10CM|War op involving unsp fire/conflagr/hot subst, milt, init|War op involving unsp fire/conflagr/hot subst, milt, init +C2906731|T037|AB|Y36.300D|ICD10CM|War op involving unsp fire/conflagr/hot subst, milt, subs|War op involving unsp fire/conflagr/hot subst, milt, subs +C2906732|T037|AB|Y36.300S|ICD10CM|War op involving unsp fire/conflagr/hot subst, milt, sequela|War op involving unsp fire/conflagr/hot subst, milt, sequela +C2906733|T037|AB|Y36.301|ICD10CM|War op involving unsp fire/conflagr/hot subst, civilian|War op involving unsp fire/conflagr/hot subst, civilian +C2906733|T037|HT|Y36.301|ICD10CM|War operations involving unspecified fire, conflagration and hot substance, civilian|War operations involving unspecified fire, conflagration and hot substance, civilian +C2906734|T037|AB|Y36.301A|ICD10CM|War op w unsp fire/conflagr/hot subst, civilian, init|War op w unsp fire/conflagr/hot subst, civilian, init +C2906735|T037|AB|Y36.301D|ICD10CM|War op w unsp fire/conflagr/hot subst, civilian, subs|War op w unsp fire/conflagr/hot subst, civilian, subs +C2906736|T037|AB|Y36.301S|ICD10CM|War op w unsp fire/conflagr/hot subst, civilian, sequela|War op w unsp fire/conflagr/hot subst, civilian, sequela +C2906736|T037|PT|Y36.301S|ICD10CM|War operations involving unspecified fire, conflagration and hot substance, civilian, sequela|War operations involving unspecified fire, conflagration and hot substance, civilian, sequela +C2906739|T037|AB|Y36.31|ICD10CM|War operations involving gasoline bomb|War operations involving gasoline bomb +C2906739|T037|HT|Y36.31|ICD10CM|War operations involving gasoline bomb|War operations involving gasoline bomb +C2906737|T037|ET|Y36.31|ICD10CM|War operations involving incendiary bomb|War operations involving incendiary bomb +C2906738|T037|ET|Y36.31|ICD10CM|War operations involving petrol bomb|War operations involving petrol bomb +C2906740|T037|AB|Y36.310|ICD10CM|War operations involving gasoline bomb, military personnel|War operations involving gasoline bomb, military personnel +C2906740|T037|HT|Y36.310|ICD10CM|War operations involving gasoline bomb, military personnel|War operations involving gasoline bomb, military personnel +C2906741|T037|PT|Y36.310A|ICD10CM|War operations involving gasoline bomb, military personnel, initial encounter|War operations involving gasoline bomb, military personnel, initial encounter +C2906741|T037|AB|Y36.310A|ICD10CM|War operations involving gasoline bomb, milt, init|War operations involving gasoline bomb, milt, init +C2906742|T037|PT|Y36.310D|ICD10CM|War operations involving gasoline bomb, military personnel, subsequent encounter|War operations involving gasoline bomb, military personnel, subsequent encounter +C2906742|T037|AB|Y36.310D|ICD10CM|War operations involving gasoline bomb, milt, subs|War operations involving gasoline bomb, milt, subs +C2906743|T037|PT|Y36.310S|ICD10CM|War operations involving gasoline bomb, military personnel, sequela|War operations involving gasoline bomb, military personnel, sequela +C2906743|T037|AB|Y36.310S|ICD10CM|War operations involving gasoline bomb, milt, sequela|War operations involving gasoline bomb, milt, sequela +C2906744|T037|AB|Y36.311|ICD10CM|War operations involving gasoline bomb, civilian|War operations involving gasoline bomb, civilian +C2906744|T037|HT|Y36.311|ICD10CM|War operations involving gasoline bomb, civilian|War operations involving gasoline bomb, civilian +C2906745|T037|AB|Y36.311A|ICD10CM|War operations involving gasoline bomb, civilian, init|War operations involving gasoline bomb, civilian, init +C2906745|T037|PT|Y36.311A|ICD10CM|War operations involving gasoline bomb, civilian, initial encounter|War operations involving gasoline bomb, civilian, initial encounter +C2906746|T037|AB|Y36.311D|ICD10CM|War operations involving gasoline bomb, civilian, subs|War operations involving gasoline bomb, civilian, subs +C2906746|T037|PT|Y36.311D|ICD10CM|War operations involving gasoline bomb, civilian, subsequent encounter|War operations involving gasoline bomb, civilian, subsequent encounter +C2906747|T037|PT|Y36.311S|ICD10CM|War operations involving gasoline bomb, civilian, sequela|War operations involving gasoline bomb, civilian, sequela +C2906747|T037|AB|Y36.311S|ICD10CM|War operations involving gasoline bomb, civilian, sequela|War operations involving gasoline bomb, civilian, sequela +C2906748|T037|AB|Y36.32|ICD10CM|War operations involving incendiary bullet|War operations involving incendiary bullet +C2906748|T037|HT|Y36.32|ICD10CM|War operations involving incendiary bullet|War operations involving incendiary bullet +C2906749|T037|HT|Y36.320|ICD10CM|War operations involving incendiary bullet, military personnel|War operations involving incendiary bullet, military personnel +C2906749|T037|AB|Y36.320|ICD10CM|War operations involving incendiary bullet, milt|War operations involving incendiary bullet, milt +C2906750|T037|PT|Y36.320A|ICD10CM|War operations involving incendiary bullet, military personnel, initial encounter|War operations involving incendiary bullet, military personnel, initial encounter +C2906750|T037|AB|Y36.320A|ICD10CM|War operations involving incendiary bullet, milt, init|War operations involving incendiary bullet, milt, init +C2906751|T037|PT|Y36.320D|ICD10CM|War operations involving incendiary bullet, military personnel, subsequent encounter|War operations involving incendiary bullet, military personnel, subsequent encounter +C2906751|T037|AB|Y36.320D|ICD10CM|War operations involving incendiary bullet, milt, subs|War operations involving incendiary bullet, milt, subs +C2906752|T037|PT|Y36.320S|ICD10CM|War operations involving incendiary bullet, military personnel, sequela|War operations involving incendiary bullet, military personnel, sequela +C2906752|T037|AB|Y36.320S|ICD10CM|War operations involving incendiary bullet, milt, sequela|War operations involving incendiary bullet, milt, sequela +C2906753|T037|AB|Y36.321|ICD10CM|War operations involving incendiary bullet, civilian|War operations involving incendiary bullet, civilian +C2906753|T037|HT|Y36.321|ICD10CM|War operations involving incendiary bullet, civilian|War operations involving incendiary bullet, civilian +C2906754|T037|AB|Y36.321A|ICD10CM|War operations involving incendiary bullet, civilian, init|War operations involving incendiary bullet, civilian, init +C2906754|T037|PT|Y36.321A|ICD10CM|War operations involving incendiary bullet, civilian, initial encounter|War operations involving incendiary bullet, civilian, initial encounter +C2906755|T037|AB|Y36.321D|ICD10CM|War operations involving incendiary bullet, civilian, subs|War operations involving incendiary bullet, civilian, subs +C2906755|T037|PT|Y36.321D|ICD10CM|War operations involving incendiary bullet, civilian, subsequent encounter|War operations involving incendiary bullet, civilian, subsequent encounter +C2906756|T037|AB|Y36.321S|ICD10CM|War op involving incendiary bullet, civilian, sequela|War op involving incendiary bullet, civilian, sequela +C2906756|T037|PT|Y36.321S|ICD10CM|War operations involving incendiary bullet, civilian, sequela|War operations involving incendiary bullet, civilian, sequela +C2906757|T037|AB|Y36.33|ICD10CM|War operations involving flamethrower|War operations involving flamethrower +C2906757|T037|HT|Y36.33|ICD10CM|War operations involving flamethrower|War operations involving flamethrower +C2906758|T037|AB|Y36.330|ICD10CM|War operations involving flamethrower, military personnel|War operations involving flamethrower, military personnel +C2906758|T037|HT|Y36.330|ICD10CM|War operations involving flamethrower, military personnel|War operations involving flamethrower, military personnel +C2906759|T037|PT|Y36.330A|ICD10CM|War operations involving flamethrower, military personnel, initial encounter|War operations involving flamethrower, military personnel, initial encounter +C2906759|T037|AB|Y36.330A|ICD10CM|War operations involving flamethrower, milt, init|War operations involving flamethrower, milt, init +C2906760|T037|PT|Y36.330D|ICD10CM|War operations involving flamethrower, military personnel, subsequent encounter|War operations involving flamethrower, military personnel, subsequent encounter +C2906760|T037|AB|Y36.330D|ICD10CM|War operations involving flamethrower, milt, subs|War operations involving flamethrower, milt, subs +C2906761|T037|PT|Y36.330S|ICD10CM|War operations involving flamethrower, military personnel, sequela|War operations involving flamethrower, military personnel, sequela +C2906761|T037|AB|Y36.330S|ICD10CM|War operations involving flamethrower, milt, sequela|War operations involving flamethrower, milt, sequela +C2906762|T037|AB|Y36.331|ICD10CM|War operations involving flamethrower, civilian|War operations involving flamethrower, civilian +C2906762|T037|HT|Y36.331|ICD10CM|War operations involving flamethrower, civilian|War operations involving flamethrower, civilian +C2906763|T037|AB|Y36.331A|ICD10CM|War operations involving flamethrower, civilian, init encntr|War operations involving flamethrower, civilian, init encntr +C2906763|T037|PT|Y36.331A|ICD10CM|War operations involving flamethrower, civilian, initial encounter|War operations involving flamethrower, civilian, initial encounter +C2906764|T037|AB|Y36.331D|ICD10CM|War operations involving flamethrower, civilian, subs encntr|War operations involving flamethrower, civilian, subs encntr +C2906764|T037|PT|Y36.331D|ICD10CM|War operations involving flamethrower, civilian, subsequent encounter|War operations involving flamethrower, civilian, subsequent encounter +C2906765|T037|PT|Y36.331S|ICD10CM|War operations involving flamethrower, civilian, sequela|War operations involving flamethrower, civilian, sequela +C2906765|T037|AB|Y36.331S|ICD10CM|War operations involving flamethrower, civilian, sequela|War operations involving flamethrower, civilian, sequela +C2906766|T037|AB|Y36.39|ICD10CM|War operations involving oth fire/hot subst|War operations involving oth fire/hot subst +C2906766|T037|HT|Y36.39|ICD10CM|War operations involving other fires, conflagrations and hot substances|War operations involving other fires, conflagrations and hot substances +C2906767|T037|AB|Y36.390|ICD10CM|War operations involving oth fire/hot subst, milt|War operations involving oth fire/hot subst, milt +C2906767|T037|HT|Y36.390|ICD10CM|War operations involving other fires, conflagrations and hot substances, military personnel|War operations involving other fires, conflagrations and hot substances, military personnel +C2906768|T037|AB|Y36.390A|ICD10CM|War operations involving oth fire/hot subst, milt, init|War operations involving oth fire/hot subst, milt, init +C2906769|T037|AB|Y36.390D|ICD10CM|War operations involving oth fire/hot subst, milt, subs|War operations involving oth fire/hot subst, milt, subs +C2906770|T037|AB|Y36.390S|ICD10CM|War operations involving oth fire/hot subst, milt, sequela|War operations involving oth fire/hot subst, milt, sequela +C2906770|T037|PT|Y36.390S|ICD10CM|War operations involving other fires, conflagrations and hot substances, military personnel, sequela|War operations involving other fires, conflagrations and hot substances, military personnel, sequela +C2906771|T037|AB|Y36.391|ICD10CM|War operations involving oth fire/hot subst, civilian|War operations involving oth fire/hot subst, civilian +C2906771|T037|HT|Y36.391|ICD10CM|War operations involving other fires, conflagrations and hot substances, civilian|War operations involving other fires, conflagrations and hot substances, civilian +C2906772|T037|AB|Y36.391A|ICD10CM|War operations involving oth fire/hot subst, civilian, init|War operations involving oth fire/hot subst, civilian, init +C2906772|T037|PT|Y36.391A|ICD10CM|War operations involving other fires, conflagrations and hot substances, civilian, initial encounter|War operations involving other fires, conflagrations and hot substances, civilian, initial encounter +C2906773|T037|AB|Y36.391D|ICD10CM|War operations involving oth fire/hot subst, civilian, subs|War operations involving oth fire/hot subst, civilian, subs +C2906774|T037|AB|Y36.391S|ICD10CM|War op involving oth fire/hot subst, civilian, sequela|War op involving oth fire/hot subst, civilian, sequela +C2906774|T037|PT|Y36.391S|ICD10CM|War operations involving other fires, conflagrations and hot substances, civilian, sequela|War operations involving other fires, conflagrations and hot substances, civilian, sequela +C0481105|T037|PX|Y36.4|ICD10|Injury due to war operations involving firearm discharge and other forms of conventional warfare|Injury due to war operations involving firearm discharge and other forms of conventional warfare +C0481105|T037|AB|Y36.4|ICD10CM|War op involving firearm discharge and oth conventl warfare|War op involving firearm discharge and oth conventl warfare +C0481105|T037|HT|Y36.4|ICD10CM|War operations involving firearm discharge and other forms of conventional warfare|War operations involving firearm discharge and other forms of conventional warfare +C0481105|T037|PS|Y36.4|ICD10|War operations involving firearm discharge and other forms of conventional warfare|War operations involving firearm discharge and other forms of conventional warfare +C2906775|T037|AB|Y36.41|ICD10CM|War operations involving rubber bullets|War operations involving rubber bullets +C2906775|T037|HT|Y36.41|ICD10CM|War operations involving rubber bullets|War operations involving rubber bullets +C2906776|T037|AB|Y36.410|ICD10CM|War operations involving rubber bullets, military personnel|War operations involving rubber bullets, military personnel +C2906776|T037|HT|Y36.410|ICD10CM|War operations involving rubber bullets, military personnel|War operations involving rubber bullets, military personnel +C2906777|T037|PT|Y36.410A|ICD10CM|War operations involving rubber bullets, military personnel, initial encounter|War operations involving rubber bullets, military personnel, initial encounter +C2906777|T037|AB|Y36.410A|ICD10CM|War operations involving rubber bullets, milt, init|War operations involving rubber bullets, milt, init +C2906778|T037|PT|Y36.410D|ICD10CM|War operations involving rubber bullets, military personnel, subsequent encounter|War operations involving rubber bullets, military personnel, subsequent encounter +C2906778|T037|AB|Y36.410D|ICD10CM|War operations involving rubber bullets, milt, subs|War operations involving rubber bullets, milt, subs +C2906779|T037|PT|Y36.410S|ICD10CM|War operations involving rubber bullets, military personnel, sequela|War operations involving rubber bullets, military personnel, sequela +C2906779|T037|AB|Y36.410S|ICD10CM|War operations involving rubber bullets, milt, sequela|War operations involving rubber bullets, milt, sequela +C2906780|T037|AB|Y36.411|ICD10CM|War operations involving rubber bullets, civilian|War operations involving rubber bullets, civilian +C2906780|T037|HT|Y36.411|ICD10CM|War operations involving rubber bullets, civilian|War operations involving rubber bullets, civilian +C2906781|T037|AB|Y36.411A|ICD10CM|War operations involving rubber bullets, civilian, init|War operations involving rubber bullets, civilian, init +C2906781|T037|PT|Y36.411A|ICD10CM|War operations involving rubber bullets, civilian, initial encounter|War operations involving rubber bullets, civilian, initial encounter +C2906782|T037|AB|Y36.411D|ICD10CM|War operations involving rubber bullets, civilian, subs|War operations involving rubber bullets, civilian, subs +C2906782|T037|PT|Y36.411D|ICD10CM|War operations involving rubber bullets, civilian, subsequent encounter|War operations involving rubber bullets, civilian, subsequent encounter +C2906783|T037|PT|Y36.411S|ICD10CM|War operations involving rubber bullets, civilian, sequela|War operations involving rubber bullets, civilian, sequela +C2906783|T037|AB|Y36.411S|ICD10CM|War operations involving rubber bullets, civilian, sequela|War operations involving rubber bullets, civilian, sequela +C2906784|T037|AB|Y36.42|ICD10CM|War operations involving firearms pellets|War operations involving firearms pellets +C2906784|T037|HT|Y36.42|ICD10CM|War operations involving firearms pellets|War operations involving firearms pellets +C2906785|T037|HT|Y36.420|ICD10CM|War operations involving firearms pellets, military personnel|War operations involving firearms pellets, military personnel +C2906785|T037|AB|Y36.420|ICD10CM|War operations involving firearms pellets, milt|War operations involving firearms pellets, milt +C2906786|T037|PT|Y36.420A|ICD10CM|War operations involving firearms pellets, military personnel, initial encounter|War operations involving firearms pellets, military personnel, initial encounter +C2906786|T037|AB|Y36.420A|ICD10CM|War operations involving firearms pellets, milt, init|War operations involving firearms pellets, milt, init +C2906787|T037|PT|Y36.420D|ICD10CM|War operations involving firearms pellets, military personnel, subsequent encounter|War operations involving firearms pellets, military personnel, subsequent encounter +C2906787|T037|AB|Y36.420D|ICD10CM|War operations involving firearms pellets, milt, subs|War operations involving firearms pellets, milt, subs +C2906788|T037|PT|Y36.420S|ICD10CM|War operations involving firearms pellets, military personnel, sequela|War operations involving firearms pellets, military personnel, sequela +C2906788|T037|AB|Y36.420S|ICD10CM|War operations involving firearms pellets, milt, sequela|War operations involving firearms pellets, milt, sequela +C2906789|T037|AB|Y36.421|ICD10CM|War operations involving firearms pellets, civilian|War operations involving firearms pellets, civilian +C2906789|T037|HT|Y36.421|ICD10CM|War operations involving firearms pellets, civilian|War operations involving firearms pellets, civilian +C2906790|T037|AB|Y36.421A|ICD10CM|War operations involving firearms pellets, civilian, init|War operations involving firearms pellets, civilian, init +C2906790|T037|PT|Y36.421A|ICD10CM|War operations involving firearms pellets, civilian, initial encounter|War operations involving firearms pellets, civilian, initial encounter +C2906791|T037|AB|Y36.421D|ICD10CM|War operations involving firearms pellets, civilian, subs|War operations involving firearms pellets, civilian, subs +C2906791|T037|PT|Y36.421D|ICD10CM|War operations involving firearms pellets, civilian, subsequent encounter|War operations involving firearms pellets, civilian, subsequent encounter +C2906792|T037|AB|Y36.421S|ICD10CM|War operations involving firearms pellets, civilian, sequela|War operations involving firearms pellets, civilian, sequela +C2906792|T037|PT|Y36.421S|ICD10CM|War operations involving firearms pellets, civilian, sequela|War operations involving firearms pellets, civilian, sequela +C2906793|T037|ET|Y36.43|ICD10CM|War operations involving bullets NOS|War operations involving bullets NOS +C2906794|T037|AB|Y36.43|ICD10CM|War operations involving other firearms discharge|War operations involving other firearms discharge +C2906794|T037|HT|Y36.43|ICD10CM|War operations involving other firearms discharge|War operations involving other firearms discharge +C2906795|T037|AB|Y36.430|ICD10CM|War operations involving oth firearms discharge, milt|War operations involving oth firearms discharge, milt +C2906795|T037|HT|Y36.430|ICD10CM|War operations involving other firearms discharge, military personnel|War operations involving other firearms discharge, military personnel +C2906796|T037|AB|Y36.430A|ICD10CM|War operations involving oth firearms discharge, milt, init|War operations involving oth firearms discharge, milt, init +C2906796|T037|PT|Y36.430A|ICD10CM|War operations involving other firearms discharge, military personnel, initial encounter|War operations involving other firearms discharge, military personnel, initial encounter +C2906797|T037|AB|Y36.430D|ICD10CM|War operations involving oth firearms discharge, milt, subs|War operations involving oth firearms discharge, milt, subs +C2906797|T037|PT|Y36.430D|ICD10CM|War operations involving other firearms discharge, military personnel, subsequent encounter|War operations involving other firearms discharge, military personnel, subsequent encounter +C2906798|T037|AB|Y36.430S|ICD10CM|War op involving oth firearms discharge, milt, sequela|War op involving oth firearms discharge, milt, sequela +C2906798|T037|PT|Y36.430S|ICD10CM|War operations involving other firearms discharge, military personnel, sequela|War operations involving other firearms discharge, military personnel, sequela +C2906799|T037|AB|Y36.431|ICD10CM|War operations involving other firearms discharge, civilian|War operations involving other firearms discharge, civilian +C2906799|T037|HT|Y36.431|ICD10CM|War operations involving other firearms discharge, civilian|War operations involving other firearms discharge, civilian +C2906800|T037|AB|Y36.431A|ICD10CM|War op involving oth firearms discharge, civilian, init|War op involving oth firearms discharge, civilian, init +C2906800|T037|PT|Y36.431A|ICD10CM|War operations involving other firearms discharge, civilian, initial encounter|War operations involving other firearms discharge, civilian, initial encounter +C2906801|T037|AB|Y36.431D|ICD10CM|War op involving oth firearms discharge, civilian, subs|War op involving oth firearms discharge, civilian, subs +C2906801|T037|PT|Y36.431D|ICD10CM|War operations involving other firearms discharge, civilian, subsequent encounter|War operations involving other firearms discharge, civilian, subsequent encounter +C2906802|T037|AB|Y36.431S|ICD10CM|War op involving oth firearms discharge, civilian, sequela|War op involving oth firearms discharge, civilian, sequela +C2906802|T037|PT|Y36.431S|ICD10CM|War operations involving other firearms discharge, civilian, sequela|War operations involving other firearms discharge, civilian, sequela +C2906803|T037|AB|Y36.44|ICD10CM|War operations involving unarmed hand to hand combat|War operations involving unarmed hand to hand combat +C2906803|T037|HT|Y36.44|ICD10CM|War operations involving unarmed hand to hand combat|War operations involving unarmed hand to hand combat +C2906804|T037|HT|Y36.440|ICD10CM|War operations involving unarmed hand to hand combat, military personnel|War operations involving unarmed hand to hand combat, military personnel +C2906804|T037|AB|Y36.440|ICD10CM|War operations involving unarmed hand to hand combat, milt|War operations involving unarmed hand to hand combat, milt +C2906805|T037|AB|Y36.440A|ICD10CM|War op involving unarmed hand to hand combat, milt, init|War op involving unarmed hand to hand combat, milt, init +C2906805|T037|PT|Y36.440A|ICD10CM|War operations involving unarmed hand to hand combat, military personnel, initial encounter|War operations involving unarmed hand to hand combat, military personnel, initial encounter +C2906806|T037|AB|Y36.440D|ICD10CM|War op involving unarmed hand to hand combat, milt, subs|War op involving unarmed hand to hand combat, milt, subs +C2906806|T037|PT|Y36.440D|ICD10CM|War operations involving unarmed hand to hand combat, military personnel, subsequent encounter|War operations involving unarmed hand to hand combat, military personnel, subsequent encounter +C2906807|T037|AB|Y36.440S|ICD10CM|War op involving unarmed hand to hand combat, milt, sequela|War op involving unarmed hand to hand combat, milt, sequela +C2906807|T037|PT|Y36.440S|ICD10CM|War operations involving unarmed hand to hand combat, military personnel, sequela|War operations involving unarmed hand to hand combat, military personnel, sequela +C2906808|T037|AB|Y36.441|ICD10CM|War op involving unarmed hand to hand combat, civilian|War op involving unarmed hand to hand combat, civilian +C2906808|T037|HT|Y36.441|ICD10CM|War operations involving unarmed hand to hand combat, civilian|War operations involving unarmed hand to hand combat, civilian +C2906809|T037|AB|Y36.441A|ICD10CM|War op involving unarmed hand to hand combat, civilian, init|War op involving unarmed hand to hand combat, civilian, init +C2906809|T037|PT|Y36.441A|ICD10CM|War operations involving unarmed hand to hand combat, civilian, initial encounter|War operations involving unarmed hand to hand combat, civilian, initial encounter +C2906810|T037|AB|Y36.441D|ICD10CM|War op involving unarmed hand to hand combat, civilian, subs|War op involving unarmed hand to hand combat, civilian, subs +C2906810|T037|PT|Y36.441D|ICD10CM|War operations involving unarmed hand to hand combat, civilian, subsequent encounter|War operations involving unarmed hand to hand combat, civilian, subsequent encounter +C2906811|T037|AB|Y36.441S|ICD10CM|War op w unarmed hand to hand combat, civilian, sequela|War op w unarmed hand to hand combat, civilian, sequela +C2906811|T037|PT|Y36.441S|ICD10CM|War operations involving unarmed hand to hand combat, civilian, sequela|War operations involving unarmed hand to hand combat, civilian, sequela +C2906812|T037|HT|Y36.45|ICD10CM|War operations involving combat using blunt or piercing object|War operations involving combat using blunt or piercing object +C2906812|T037|AB|Y36.45|ICD10CM|War operations involving combat using blunt/pierc object|War operations involving combat using blunt/pierc object +C2906813|T037|AB|Y36.450|ICD10CM|War op involving combat using blunt/pierc object, milt|War op involving combat using blunt/pierc object, milt +C2906813|T037|HT|Y36.450|ICD10CM|War operations involving combat using blunt or piercing object, military personnel|War operations involving combat using blunt or piercing object, military personnel +C2906814|T037|AB|Y36.450A|ICD10CM|War op involving combat using blunt/pierc object, milt, init|War op involving combat using blunt/pierc object, milt, init +C2906815|T037|AB|Y36.450D|ICD10CM|War op involving combat using blunt/pierc object, milt, subs|War op involving combat using blunt/pierc object, milt, subs +C2906816|T037|AB|Y36.450S|ICD10CM|War op w combat using blunt/pierc object, milt, sequela|War op w combat using blunt/pierc object, milt, sequela +C2906816|T037|PT|Y36.450S|ICD10CM|War operations involving combat using blunt or piercing object, military personnel, sequela|War operations involving combat using blunt or piercing object, military personnel, sequela +C2906817|T037|AB|Y36.451|ICD10CM|War op involving combat using blunt/pierc object, civilian|War op involving combat using blunt/pierc object, civilian +C2906817|T037|HT|Y36.451|ICD10CM|War operations involving combat using blunt or piercing object, civilian|War operations involving combat using blunt or piercing object, civilian +C2906818|T037|AB|Y36.451A|ICD10CM|War op w combat using blunt/pierc object, civilian, init|War op w combat using blunt/pierc object, civilian, init +C2906818|T037|PT|Y36.451A|ICD10CM|War operations involving combat using blunt or piercing object, civilian, initial encounter|War operations involving combat using blunt or piercing object, civilian, initial encounter +C2906819|T037|AB|Y36.451D|ICD10CM|War op w combat using blunt/pierc object, civilian, subs|War op w combat using blunt/pierc object, civilian, subs +C2906819|T037|PT|Y36.451D|ICD10CM|War operations involving combat using blunt or piercing object, civilian, subsequent encounter|War operations involving combat using blunt or piercing object, civilian, subsequent encounter +C2906820|T037|AB|Y36.451S|ICD10CM|War op w combat using blunt/pierc object, civilian, sequela|War op w combat using blunt/pierc object, civilian, sequela +C2906820|T037|PT|Y36.451S|ICD10CM|War operations involving combat using blunt or piercing object, civilian, sequela|War operations involving combat using blunt or piercing object, civilian, sequela +C2906821|T037|HT|Y36.46|ICD10CM|War operations involving intentional restriction of air and airway|War operations involving intentional restriction of air and airway +C2906821|T037|AB|Y36.46|ICD10CM|War operations involving intentl restriction of air/airwy|War operations involving intentl restriction of air/airwy +C2906822|T037|HT|Y36.460|ICD10CM|War operations involving intentional restriction of air and airway, military personnel|War operations involving intentional restriction of air and airway, military personnel +C2906822|T037|AB|Y36.460|ICD10CM|War operations involving intentl restrict of air/airwy, milt|War operations involving intentl restrict of air/airwy, milt +C2906823|T037|AB|Y36.460A|ICD10CM|War op involving intentl restrict of air/airwy, milt, init|War op involving intentl restrict of air/airwy, milt, init +C2906824|T037|AB|Y36.460D|ICD10CM|War op involving intentl restrict of air/airwy, milt, subs|War op involving intentl restrict of air/airwy, milt, subs +C2906825|T037|AB|Y36.460S|ICD10CM|War op w intentl restrict of air/airwy, milt, sequela|War op w intentl restrict of air/airwy, milt, sequela +C2906825|T037|PT|Y36.460S|ICD10CM|War operations involving intentional restriction of air and airway, military personnel, sequela|War operations involving intentional restriction of air and airway, military personnel, sequela +C2906826|T037|AB|Y36.461|ICD10CM|War op involving intentl restrict of air/airwy, civilian|War op involving intentl restrict of air/airwy, civilian +C2906826|T037|HT|Y36.461|ICD10CM|War operations involving intentional restriction of air and airway, civilian|War operations involving intentional restriction of air and airway, civilian +C2906827|T037|AB|Y36.461A|ICD10CM|War op w intentl restrict of air/airwy, civilian, init|War op w intentl restrict of air/airwy, civilian, init +C2906827|T037|PT|Y36.461A|ICD10CM|War operations involving intentional restriction of air and airway, civilian, initial encounter|War operations involving intentional restriction of air and airway, civilian, initial encounter +C2906828|T037|AB|Y36.461D|ICD10CM|War op w intentl restrict of air/airwy, civilian, subs|War op w intentl restrict of air/airwy, civilian, subs +C2906828|T037|PT|Y36.461D|ICD10CM|War operations involving intentional restriction of air and airway, civilian, subsequent encounter|War operations involving intentional restriction of air and airway, civilian, subsequent encounter +C2906829|T037|AB|Y36.461S|ICD10CM|War op w intentl restrict of air/airwy, civilian, sequela|War op w intentl restrict of air/airwy, civilian, sequela +C2906829|T037|PT|Y36.461S|ICD10CM|War operations involving intentional restriction of air and airway, civilian, sequela|War operations involving intentional restriction of air and airway, civilian, sequela +C2906830|T037|AB|Y36.47|ICD10CM|War operations involving unintent restriction of air/airwy|War operations involving unintent restriction of air/airwy +C2906830|T037|HT|Y36.47|ICD10CM|War operations involving unintentional restriction of air and airway|War operations involving unintentional restriction of air and airway +C2906831|T037|AB|Y36.470|ICD10CM|War op involving unintent restrict of air/airwy, milt|War op involving unintent restrict of air/airwy, milt +C2906831|T037|HT|Y36.470|ICD10CM|War operations involving unintentional restriction of air and airway, military personnel|War operations involving unintentional restriction of air and airway, military personnel +C2906832|T037|AB|Y36.470A|ICD10CM|War op involving unintent restrict of air/airwy, milt, init|War op involving unintent restrict of air/airwy, milt, init +C2906833|T037|AB|Y36.470D|ICD10CM|War op involving unintent restrict of air/airwy, milt, subs|War op involving unintent restrict of air/airwy, milt, subs +C2906834|T037|AB|Y36.470S|ICD10CM|War op w unintent restrict of air/airwy, milt, sequela|War op w unintent restrict of air/airwy, milt, sequela +C2906834|T037|PT|Y36.470S|ICD10CM|War operations involving unintentional restriction of air and airway, military personnel, sequela|War operations involving unintentional restriction of air and airway, military personnel, sequela +C2906835|T037|AB|Y36.471|ICD10CM|War op involving unintent restrict of air/airwy, civilian|War op involving unintent restrict of air/airwy, civilian +C2906835|T037|HT|Y36.471|ICD10CM|War operations involving unintentional restriction of air and airway, civilian|War operations involving unintentional restriction of air and airway, civilian +C2906836|T037|AB|Y36.471A|ICD10CM|War op w unintent restrict of air/airwy, civilian, init|War op w unintent restrict of air/airwy, civilian, init +C2906836|T037|PT|Y36.471A|ICD10CM|War operations involving unintentional restriction of air and airway, civilian, initial encounter|War operations involving unintentional restriction of air and airway, civilian, initial encounter +C2906837|T037|AB|Y36.471D|ICD10CM|War op w unintent restrict of air/airwy, civilian, subs|War op w unintent restrict of air/airwy, civilian, subs +C2906837|T037|PT|Y36.471D|ICD10CM|War operations involving unintentional restriction of air and airway, civilian, subsequent encounter|War operations involving unintentional restriction of air and airway, civilian, subsequent encounter +C2906838|T037|AB|Y36.471S|ICD10CM|War op w unintent restrict of air/airwy, civilian, sequela|War op w unintent restrict of air/airwy, civilian, sequela +C2906838|T037|PT|Y36.471S|ICD10CM|War operations involving unintentional restriction of air and airway, civilian, sequela|War operations involving unintentional restriction of air and airway, civilian, sequela +C2906839|T037|AB|Y36.49|ICD10CM|War operations involving other forms of conventional warfare|War operations involving other forms of conventional warfare +C2906839|T037|HT|Y36.49|ICD10CM|War operations involving other forms of conventional warfare|War operations involving other forms of conventional warfare +C2906840|T037|AB|Y36.490|ICD10CM|War operations involving oth conventional warfare, milt|War operations involving oth conventional warfare, milt +C2906840|T037|HT|Y36.490|ICD10CM|War operations involving other forms of conventional warfare, military personnel|War operations involving other forms of conventional warfare, military personnel +C2906841|T037|AB|Y36.490A|ICD10CM|War operations involving oth conventl warfare, milt, init|War operations involving oth conventl warfare, milt, init +C2906841|T037|PT|Y36.490A|ICD10CM|War operations involving other forms of conventional warfare, military personnel, initial encounter|War operations involving other forms of conventional warfare, military personnel, initial encounter +C2906842|T037|AB|Y36.490D|ICD10CM|War operations involving oth conventl warfare, milt, subs|War operations involving oth conventl warfare, milt, subs +C2906843|T037|AB|Y36.490S|ICD10CM|War operations involving oth conventl warfare, milt, sequela|War operations involving oth conventl warfare, milt, sequela +C2906843|T037|PT|Y36.490S|ICD10CM|War operations involving other forms of conventional warfare, military personnel, sequela|War operations involving other forms of conventional warfare, military personnel, sequela +C2906844|T037|AB|Y36.491|ICD10CM|War operations involving oth conventional warfare, civilian|War operations involving oth conventional warfare, civilian +C2906844|T037|HT|Y36.491|ICD10CM|War operations involving other forms of conventional warfare, civilian|War operations involving other forms of conventional warfare, civilian +C2906845|T037|AB|Y36.491A|ICD10CM|War op involving oth conventl warfare, civilian, init|War op involving oth conventl warfare, civilian, init +C2906845|T037|PT|Y36.491A|ICD10CM|War operations involving other forms of conventional warfare, civilian, initial encounter|War operations involving other forms of conventional warfare, civilian, initial encounter +C2906846|T037|AB|Y36.491D|ICD10CM|War op involving oth conventl warfare, civilian, subs|War op involving oth conventl warfare, civilian, subs +C2906846|T037|PT|Y36.491D|ICD10CM|War operations involving other forms of conventional warfare, civilian, subsequent encounter|War operations involving other forms of conventional warfare, civilian, subsequent encounter +C2906847|T037|AB|Y36.491S|ICD10CM|War op involving oth conventl warfare, civilian, sequela|War op involving oth conventl warfare, civilian, sequela +C2906847|T037|PT|Y36.491S|ICD10CM|War operations involving other forms of conventional warfare, civilian, sequela|War operations involving other forms of conventional warfare, civilian, sequela +C0481106|T037|PX|Y36.5|ICD10|Injury due to war operations involving nuclear weapons|Injury due to war operations involving nuclear weapons +C2906848|T037|ET|Y36.5|ICD10CM|War operations involving dirty bomb NOS|War operations involving dirty bomb NOS +C0481106|T037|PS|Y36.5|ICD10|War operations involving nuclear weapons|War operations involving nuclear weapons +C0481106|T037|HT|Y36.5|ICD10CM|War operations involving nuclear weapons|War operations involving nuclear weapons +C0481106|T037|AB|Y36.5|ICD10CM|War operations involving nuclear weapons|War operations involving nuclear weapons +C2906849|T037|AB|Y36.50|ICD10CM|War operations involving unsp effect of nuclear weapon|War operations involving unsp effect of nuclear weapon +C2906849|T037|HT|Y36.50|ICD10CM|War operations involving unspecified effect of nuclear weapon|War operations involving unspecified effect of nuclear weapon +C2906850|T037|AB|Y36.500|ICD10CM|War operations involving unsp effect of nuclear weapon, milt|War operations involving unsp effect of nuclear weapon, milt +C2906850|T037|HT|Y36.500|ICD10CM|War operations involving unspecified effect of nuclear weapon, military personnel|War operations involving unspecified effect of nuclear weapon, military personnel +C2906851|T037|AB|Y36.500A|ICD10CM|War op involving unsp effect of nuclear weapon, milt, init|War op involving unsp effect of nuclear weapon, milt, init +C2906851|T037|PT|Y36.500A|ICD10CM|War operations involving unspecified effect of nuclear weapon, military personnel, initial encounter|War operations involving unspecified effect of nuclear weapon, military personnel, initial encounter +C2906852|T037|AB|Y36.500D|ICD10CM|War op involving unsp effect of nuclear weapon, milt, subs|War op involving unsp effect of nuclear weapon, milt, subs +C2906853|T037|AB|Y36.500S|ICD10CM|War op w unsp effect of nuclear weapon, milt, sequela|War op w unsp effect of nuclear weapon, milt, sequela +C2906853|T037|PT|Y36.500S|ICD10CM|War operations involving unspecified effect of nuclear weapon, military personnel, sequela|War operations involving unspecified effect of nuclear weapon, military personnel, sequela +C2906854|T037|AB|Y36.501|ICD10CM|War op involving unsp effect of nuclear weapon, civilian|War op involving unsp effect of nuclear weapon, civilian +C2906854|T037|HT|Y36.501|ICD10CM|War operations involving unspecified effect of nuclear weapon, civilian|War operations involving unspecified effect of nuclear weapon, civilian +C2906855|T037|AB|Y36.501A|ICD10CM|War op w unsp effect of nuclear weapon, civilian, init|War op w unsp effect of nuclear weapon, civilian, init +C2906855|T037|PT|Y36.501A|ICD10CM|War operations involving unspecified effect of nuclear weapon, civilian, initial encounter|War operations involving unspecified effect of nuclear weapon, civilian, initial encounter +C2906856|T037|AB|Y36.501D|ICD10CM|War op w unsp effect of nuclear weapon, civilian, subs|War op w unsp effect of nuclear weapon, civilian, subs +C2906856|T037|PT|Y36.501D|ICD10CM|War operations involving unspecified effect of nuclear weapon, civilian, subsequent encounter|War operations involving unspecified effect of nuclear weapon, civilian, subsequent encounter +C2906857|T037|AB|Y36.501S|ICD10CM|War op w unsp effect of nuclear weapon, civilian, sequela|War op w unsp effect of nuclear weapon, civilian, sequela +C2906857|T037|PT|Y36.501S|ICD10CM|War operations involving unspecified effect of nuclear weapon, civilian, sequela|War operations involving unspecified effect of nuclear weapon, civilian, sequela +C2906859|T037|AB|Y36.51|ICD10CM|War op involving direct blast effect of nuclear weapon|War op involving direct blast effect of nuclear weapon +C2906858|T037|ET|Y36.51|ICD10CM|War operations involving blast pressure of nuclear weapon|War operations involving blast pressure of nuclear weapon +C2906859|T037|HT|Y36.51|ICD10CM|War operations involving direct blast effect of nuclear weapon|War operations involving direct blast effect of nuclear weapon +C2906860|T037|AB|Y36.510|ICD10CM|War op involving direct blast effect of nuclear weapon, milt|War op involving direct blast effect of nuclear weapon, milt +C2906860|T037|HT|Y36.510|ICD10CM|War operations involving direct blast effect of nuclear weapon, military personnel|War operations involving direct blast effect of nuclear weapon, military personnel +C2906861|T037|AB|Y36.510A|ICD10CM|War op w direct blast effect of nuclear weapon, milt, init|War op w direct blast effect of nuclear weapon, milt, init +C2906862|T037|AB|Y36.510D|ICD10CM|War op w direct blast effect of nuclear weapon, milt, subs|War op w direct blast effect of nuclear weapon, milt, subs +C2906863|T037|AB|Y36.510S|ICD10CM|War op w direct blast effect of nuclr weapon, milt, sequela|War op w direct blast effect of nuclr weapon, milt, sequela +C2906863|T037|PT|Y36.510S|ICD10CM|War operations involving direct blast effect of nuclear weapon, military personnel, sequela|War operations involving direct blast effect of nuclear weapon, military personnel, sequela +C2906864|T037|AB|Y36.511|ICD10CM|War op w direct blast effect of nuclear weapon, civilian|War op w direct blast effect of nuclear weapon, civilian +C2906864|T037|HT|Y36.511|ICD10CM|War operations involving direct blast effect of nuclear weapon, civilian|War operations involving direct blast effect of nuclear weapon, civilian +C2906865|T037|AB|Y36.511A|ICD10CM|War op w direct blast effect of nuclear weapon, civ, init|War op w direct blast effect of nuclear weapon, civ, init +C2906865|T037|PT|Y36.511A|ICD10CM|War operations involving direct blast effect of nuclear weapon, civilian, initial encounter|War operations involving direct blast effect of nuclear weapon, civilian, initial encounter +C2906866|T037|AB|Y36.511D|ICD10CM|War op w direct blast effect of nuclear weapon, civ, subs|War op w direct blast effect of nuclear weapon, civ, subs +C2906866|T037|PT|Y36.511D|ICD10CM|War operations involving direct blast effect of nuclear weapon, civilian, subsequent encounter|War operations involving direct blast effect of nuclear weapon, civilian, subsequent encounter +C2906867|T037|AB|Y36.511S|ICD10CM|War op w direct blast effect of nuclear weapon, civ, sequela|War op w direct blast effect of nuclear weapon, civ, sequela +C2906867|T037|PT|Y36.511S|ICD10CM|War operations involving direct blast effect of nuclear weapon, civilian, sequela|War operations involving direct blast effect of nuclear weapon, civilian, sequela +C2906870|T037|AB|Y36.52|ICD10CM|War op involving indirect blast effect of nuclear weapon|War op involving indirect blast effect of nuclear weapon +C2906868|T037|ET|Y36.52|ICD10CM|War operations involving being struck or crushed by blast debris of nuclear weapon|War operations involving being struck or crushed by blast debris of nuclear weapon +C2906869|T037|ET|Y36.52|ICD10CM|War operations involving being thrown by blast of nuclear weapon|War operations involving being thrown by blast of nuclear weapon +C2906870|T037|HT|Y36.52|ICD10CM|War operations involving indirect blast effect of nuclear weapon|War operations involving indirect blast effect of nuclear weapon +C2906871|T037|AB|Y36.520|ICD10CM|War op w indirect blast effect of nuclear weapon, milt|War op w indirect blast effect of nuclear weapon, milt +C2906871|T037|HT|Y36.520|ICD10CM|War operations involving indirect blast effect of nuclear weapon, military personnel|War operations involving indirect blast effect of nuclear weapon, military personnel +C2906872|T037|AB|Y36.520A|ICD10CM|War op w indirect blast effect of nuclear weapon, milt, init|War op w indirect blast effect of nuclear weapon, milt, init +C2906873|T037|AB|Y36.520D|ICD10CM|War op w indirect blast effect of nuclear weapon, milt, subs|War op w indirect blast effect of nuclear weapon, milt, subs +C2906874|T037|AB|Y36.520S|ICD10CM|War op w indir blast effect of nuclear weapon, milt, sequela|War op w indir blast effect of nuclear weapon, milt, sequela +C2906874|T037|PT|Y36.520S|ICD10CM|War operations involving indirect blast effect of nuclear weapon, military personnel, sequela|War operations involving indirect blast effect of nuclear weapon, military personnel, sequela +C2906875|T037|AB|Y36.521|ICD10CM|War op w indirect blast effect of nuclear weapon, civilian|War op w indirect blast effect of nuclear weapon, civilian +C2906875|T037|HT|Y36.521|ICD10CM|War operations involving indirect blast effect of nuclear weapon, civilian|War operations involving indirect blast effect of nuclear weapon, civilian +C2906876|T037|AB|Y36.521A|ICD10CM|War op w indirect blast effect of nuclear weapon, civ, init|War op w indirect blast effect of nuclear weapon, civ, init +C2906876|T037|PT|Y36.521A|ICD10CM|War operations involving indirect blast effect of nuclear weapon, civilian, initial encounter|War operations involving indirect blast effect of nuclear weapon, civilian, initial encounter +C2906877|T037|AB|Y36.521D|ICD10CM|War op w indirect blast effect of nuclear weapon, civ, subs|War op w indirect blast effect of nuclear weapon, civ, subs +C2906877|T037|PT|Y36.521D|ICD10CM|War operations involving indirect blast effect of nuclear weapon, civilian, subsequent encounter|War operations involving indirect blast effect of nuclear weapon, civilian, subsequent encounter +C2906878|T037|AB|Y36.521S|ICD10CM|War op w indir blast effect of nuclear weapon, civ, sequela|War op w indir blast effect of nuclear weapon, civ, sequela +C2906878|T037|PT|Y36.521S|ICD10CM|War operations involving indirect blast effect of nuclear weapon, civilian, sequela|War operations involving indirect blast effect of nuclear weapon, civilian, sequela +C2906881|T037|AB|Y36.53|ICD10CM|War op involving thermal radn effect of nuclear weapon|War op involving thermal radn effect of nuclear weapon +C2906879|T037|ET|Y36.53|ICD10CM|War operation involving fireball effects from nuclear weapon|War operation involving fireball effects from nuclear weapon +C2906880|T037|ET|Y36.53|ICD10CM|War operations involving direct heat from nuclear weapon|War operations involving direct heat from nuclear weapon +C2906881|T037|HT|Y36.53|ICD10CM|War operations involving thermal radiation effect of nuclear weapon|War operations involving thermal radiation effect of nuclear weapon +C2906882|T037|AB|Y36.530|ICD10CM|War op involving thermal radn effect of nuclear weapon, milt|War op involving thermal radn effect of nuclear weapon, milt +C2906882|T037|HT|Y36.530|ICD10CM|War operations involving thermal radiation effect of nuclear weapon, military personnel|War operations involving thermal radiation effect of nuclear weapon, military personnel +C2906883|T037|AB|Y36.530A|ICD10CM|War op w thermal radn effect of nuclear weapon, milt, init|War op w thermal radn effect of nuclear weapon, milt, init +C2906884|T037|AB|Y36.530D|ICD10CM|War op w thermal radn effect of nuclear weapon, milt, subs|War op w thermal radn effect of nuclear weapon, milt, subs +C2906885|T037|AB|Y36.530S|ICD10CM|War op w thermal radn effect of nuclr weapon, milt, sequela|War op w thermal radn effect of nuclr weapon, milt, sequela +C2906885|T037|PT|Y36.530S|ICD10CM|War operations involving thermal radiation effect of nuclear weapon, military personnel, sequela|War operations involving thermal radiation effect of nuclear weapon, military personnel, sequela +C2906886|T037|AB|Y36.531|ICD10CM|War op w thermal radn effect of nuclear weapon, civilian|War op w thermal radn effect of nuclear weapon, civilian +C2906886|T037|HT|Y36.531|ICD10CM|War operations involving thermal radiation effect of nuclear weapon, civilian|War operations involving thermal radiation effect of nuclear weapon, civilian +C2906887|T037|AB|Y36.531A|ICD10CM|War op w thermal radn effect of nuclear weapon, civ, init|War op w thermal radn effect of nuclear weapon, civ, init +C2906887|T037|PT|Y36.531A|ICD10CM|War operations involving thermal radiation effect of nuclear weapon, civilian, initial encounter|War operations involving thermal radiation effect of nuclear weapon, civilian, initial encounter +C2906888|T037|AB|Y36.531D|ICD10CM|War op w thermal radn effect of nuclear weapon, civ, subs|War op w thermal radn effect of nuclear weapon, civ, subs +C2906888|T037|PT|Y36.531D|ICD10CM|War operations involving thermal radiation effect of nuclear weapon, civilian, subsequent encounter|War operations involving thermal radiation effect of nuclear weapon, civilian, subsequent encounter +C2906889|T037|AB|Y36.531S|ICD10CM|War op w thermal radn effect of nuclear weapon, civ, sequela|War op w thermal radn effect of nuclear weapon, civ, sequela +C2906889|T037|PT|Y36.531S|ICD10CM|War operations involving thermal radiation effect of nuclear weapon, civilian, sequela|War operations involving thermal radiation effect of nuclear weapon, civilian, sequela +C2906890|T037|ET|Y36.54|ICD10CM|War operation involving acute radiation exposure from nuclear weapon|War operation involving acute radiation exposure from nuclear weapon +C2906891|T037|ET|Y36.54|ICD10CM|War operation involving exposure to immediate ionizing radiation from nuclear weapon|War operation involving exposure to immediate ionizing radiation from nuclear weapon +C2906892|T037|ET|Y36.54|ICD10CM|War operation involving fallout exposure from nuclear weapon|War operation involving fallout exposure from nuclear weapon +C2906894|T037|HT|Y36.54|ICD10CM|War operation involving nuclear radiation effects of nuclear weapon|War operation involving nuclear radiation effects of nuclear weapon +C2906893|T037|ET|Y36.54|ICD10CM|War operation involving secondary effects of nuclear weapons|War operation involving secondary effects of nuclear weapons +C2906894|T037|AB|Y36.54|ICD10CM|War operation w nuclear radiation effects of nuclear weapon|War operation w nuclear radiation effects of nuclear weapon +C2906895|T037|AB|Y36.540|ICD10CM|War op w nuclear radiation effects of nuclear weapon, milt|War op w nuclear radiation effects of nuclear weapon, milt +C2906895|T037|HT|Y36.540|ICD10CM|War operation involving nuclear radiation effects of nuclear weapon, military personnel|War operation involving nuclear radiation effects of nuclear weapon, military personnel +C2906896|T037|AB|Y36.540A|ICD10CM|War op w nuclear radiation eff of nuclear weapon, milt, init|War op w nuclear radiation eff of nuclear weapon, milt, init +C2906897|T037|AB|Y36.540D|ICD10CM|War op w nuclear radiation eff of nuclear weapon, milt, subs|War op w nuclear radiation eff of nuclear weapon, milt, subs +C2906898|T037|AB|Y36.540S|ICD10CM|War op w nuclr radiation eff of nuclr weapon, milt, sequela|War op w nuclr radiation eff of nuclr weapon, milt, sequela +C2906898|T037|PT|Y36.540S|ICD10CM|War operation involving nuclear radiation effects of nuclear weapon, military personnel, sequela|War operation involving nuclear radiation effects of nuclear weapon, military personnel, sequela +C2906899|T037|AB|Y36.541|ICD10CM|War op w nuclear radiation effects of nuclear weapon, civ|War op w nuclear radiation effects of nuclear weapon, civ +C2906899|T037|HT|Y36.541|ICD10CM|War operation involving nuclear radiation effects of nuclear weapon, civilian|War operation involving nuclear radiation effects of nuclear weapon, civilian +C2906900|T037|AB|Y36.541A|ICD10CM|War op w nuclear radiation eff of nuclear weapon, civ, init|War op w nuclear radiation eff of nuclear weapon, civ, init +C2906900|T037|PT|Y36.541A|ICD10CM|War operation involving nuclear radiation effects of nuclear weapon, civilian, initial encounter|War operation involving nuclear radiation effects of nuclear weapon, civilian, initial encounter +C2906901|T037|AB|Y36.541D|ICD10CM|War op w nuclear radiation eff of nuclear weapon, civ, subs|War op w nuclear radiation eff of nuclear weapon, civ, subs +C2906901|T037|PT|Y36.541D|ICD10CM|War operation involving nuclear radiation effects of nuclear weapon, civilian, subsequent encounter|War operation involving nuclear radiation effects of nuclear weapon, civilian, subsequent encounter +C2906902|T037|AB|Y36.541S|ICD10CM|War op w nuclr radiation eff of nuclear weapon, civ, sequela|War op w nuclr radiation eff of nuclear weapon, civ, sequela +C2906902|T037|PT|Y36.541S|ICD10CM|War operation involving nuclear radiation effects of nuclear weapon, civilian, sequela|War operation involving nuclear radiation effects of nuclear weapon, civilian, sequela +C2906903|T037|AB|Y36.59|ICD10CM|War operation involving other effects of nuclear weapons|War operation involving other effects of nuclear weapons +C2906903|T037|HT|Y36.59|ICD10CM|War operation involving other effects of nuclear weapons|War operation involving other effects of nuclear weapons +C2906904|T037|AB|Y36.590|ICD10CM|War operation involving oth effects of nuclear weapons, milt|War operation involving oth effects of nuclear weapons, milt +C2906904|T037|HT|Y36.590|ICD10CM|War operation involving other effects of nuclear weapons, military personnel|War operation involving other effects of nuclear weapons, military personnel +C2906905|T037|PT|Y36.590A|ICD10CM|War operation involving other effects of nuclear weapons, military personnel, initial encounter|War operation involving other effects of nuclear weapons, military personnel, initial encounter +C2906905|T037|AB|Y36.590A|ICD10CM|War operation w oth effects of nuclear weapons, milt, init|War operation w oth effects of nuclear weapons, milt, init +C2906906|T037|PT|Y36.590D|ICD10CM|War operation involving other effects of nuclear weapons, military personnel, subsequent encounter|War operation involving other effects of nuclear weapons, military personnel, subsequent encounter +C2906906|T037|AB|Y36.590D|ICD10CM|War operation w oth effects of nuclear weapons, milt, subs|War operation w oth effects of nuclear weapons, milt, subs +C2906907|T037|AB|Y36.590S|ICD10CM|War op w oth effects of nuclear weapons, milt, sequela|War op w oth effects of nuclear weapons, milt, sequela +C2906907|T037|PT|Y36.590S|ICD10CM|War operation involving other effects of nuclear weapons, military personnel, sequela|War operation involving other effects of nuclear weapons, military personnel, sequela +C2906908|T037|HT|Y36.591|ICD10CM|War operation involving other effects of nuclear weapons, civilian|War operation involving other effects of nuclear weapons, civilian +C2906908|T037|AB|Y36.591|ICD10CM|War operation w oth effects of nuclear weapons, civilian|War operation w oth effects of nuclear weapons, civilian +C2906909|T037|AB|Y36.591A|ICD10CM|War op w oth effects of nuclear weapons, civilian, init|War op w oth effects of nuclear weapons, civilian, init +C2906909|T037|PT|Y36.591A|ICD10CM|War operation involving other effects of nuclear weapons, civilian, initial encounter|War operation involving other effects of nuclear weapons, civilian, initial encounter +C2906910|T037|AB|Y36.591D|ICD10CM|War op w oth effects of nuclear weapons, civilian, subs|War op w oth effects of nuclear weapons, civilian, subs +C2906910|T037|PT|Y36.591D|ICD10CM|War operation involving other effects of nuclear weapons, civilian, subsequent encounter|War operation involving other effects of nuclear weapons, civilian, subsequent encounter +C2906911|T037|AB|Y36.591S|ICD10CM|War op w oth effects of nuclear weapons, civilian, sequela|War op w oth effects of nuclear weapons, civilian, sequela +C2906911|T037|PT|Y36.591S|ICD10CM|War operation involving other effects of nuclear weapons, civilian, sequela|War operation involving other effects of nuclear weapons, civilian, sequela +C0481107|T037|PX|Y36.6|ICD10|Injury due to war operations involving biological weapons|Injury due to war operations involving biological weapons +C0481107|T037|PS|Y36.6|ICD10|War operations involving biological weapons|War operations involving biological weapons +C0481107|T037|HT|Y36.6|ICD10CM|War operations involving biological weapons|War operations involving biological weapons +C0481107|T037|AB|Y36.6|ICD10CM|War operations involving biological weapons|War operations involving biological weapons +C0481107|T037|HT|Y36.6X|ICD10CM|War operations involving biological weapons|War operations involving biological weapons +C0481107|T037|AB|Y36.6X|ICD10CM|War operations involving biological weapons|War operations involving biological weapons +C2906912|T037|HT|Y36.6X0|ICD10CM|War operations involving biological weapons, military personnel|War operations involving biological weapons, military personnel +C2906912|T037|AB|Y36.6X0|ICD10CM|War operations involving biological weapons, milt|War operations involving biological weapons, milt +C2906913|T037|PT|Y36.6X0A|ICD10CM|War operations involving biological weapons, military personnel, initial encounter|War operations involving biological weapons, military personnel, initial encounter +C2906913|T037|AB|Y36.6X0A|ICD10CM|War operations involving biological weapons, milt, init|War operations involving biological weapons, milt, init +C2906914|T037|PT|Y36.6X0D|ICD10CM|War operations involving biological weapons, military personnel, subsequent encounter|War operations involving biological weapons, military personnel, subsequent encounter +C2906914|T037|AB|Y36.6X0D|ICD10CM|War operations involving biological weapons, milt, subs|War operations involving biological weapons, milt, subs +C2906915|T037|PT|Y36.6X0S|ICD10CM|War operations involving biological weapons, military personnel, sequela|War operations involving biological weapons, military personnel, sequela +C2906915|T037|AB|Y36.6X0S|ICD10CM|War operations involving biological weapons, milt, sequela|War operations involving biological weapons, milt, sequela +C2906916|T037|AB|Y36.6X1|ICD10CM|War operations involving biological weapons, civilian|War operations involving biological weapons, civilian +C2906916|T037|HT|Y36.6X1|ICD10CM|War operations involving biological weapons, civilian|War operations involving biological weapons, civilian +C2906917|T037|AB|Y36.6X1A|ICD10CM|War operations involving biological weapons, civilian, init|War operations involving biological weapons, civilian, init +C2906917|T037|PT|Y36.6X1A|ICD10CM|War operations involving biological weapons, civilian, initial encounter|War operations involving biological weapons, civilian, initial encounter +C2906918|T037|AB|Y36.6X1D|ICD10CM|War operations involving biological weapons, civilian, subs|War operations involving biological weapons, civilian, subs +C2906918|T037|PT|Y36.6X1D|ICD10CM|War operations involving biological weapons, civilian, subsequent encounter|War operations involving biological weapons, civilian, subsequent encounter +C2906919|T037|AB|Y36.6X1S|ICD10CM|War operations involving biolg weapons, civilian, sequela|War operations involving biolg weapons, civilian, sequela +C2906919|T037|PT|Y36.6X1S|ICD10CM|War operations involving biological weapons, civilian, sequela|War operations involving biological weapons, civilian, sequela +C0481108|T037|PX|Y36.7|ICD10|Injury due to war operations involving chemical weapons and other forms of unconventional warfare|Injury due to war operations involving chemical weapons and other forms of unconventional warfare +C0481108|T037|AB|Y36.7|ICD10CM|War op involving chemical weapons and oth unconvtl warfare|War op involving chemical weapons and oth unconvtl warfare +C0481108|T037|HT|Y36.7|ICD10CM|War operations involving chemical weapons and other forms of unconventional warfare|War operations involving chemical weapons and other forms of unconventional warfare +C0481108|T037|PS|Y36.7|ICD10|War operations involving chemical weapons and other forms of unconventional warfare|War operations involving chemical weapons and other forms of unconventional warfare +C0481108|T037|AB|Y36.7X|ICD10CM|War op involving chemical weapons and oth unconvtl warfare|War op involving chemical weapons and oth unconvtl warfare +C0481108|T037|HT|Y36.7X|ICD10CM|War operations involving chemical weapons and other forms of unconventional warfare|War operations involving chemical weapons and other forms of unconventional warfare +C2906920|T037|AB|Y36.7X0|ICD10CM|War op w chemical weapons and oth unconvtl warfare, milt|War op w chemical weapons and oth unconvtl warfare, milt +C2906921|T037|AB|Y36.7X0A|ICD10CM|War op w chem weapons and oth unconvtl warfare, milt, init|War op w chem weapons and oth unconvtl warfare, milt, init +C2906922|T037|AB|Y36.7X0D|ICD10CM|War op w chem weapons and oth unconvtl warfare, milt, subs|War op w chem weapons and oth unconvtl warfare, milt, subs +C2906923|T037|AB|Y36.7X0S|ICD10CM|War op w chem weapons and oth unconvtl warfare, milt, sqla|War op w chem weapons and oth unconvtl warfare, milt, sqla +C2906924|T037|AB|Y36.7X1|ICD10CM|War op w chemical weapons and oth unconvtl warfare, civilian|War op w chemical weapons and oth unconvtl warfare, civilian +C2906924|T037|HT|Y36.7X1|ICD10CM|War operations involving chemical weapons and other forms of unconventional warfare, civilian|War operations involving chemical weapons and other forms of unconventional warfare, civilian +C2906925|T037|AB|Y36.7X1A|ICD10CM|War op w chem weapons and oth unconvtl warfare, civ, init|War op w chem weapons and oth unconvtl warfare, civ, init +C2906926|T037|AB|Y36.7X1D|ICD10CM|War op w chem weapons and oth unconvtl warfare, civ, subs|War op w chem weapons and oth unconvtl warfare, civ, subs +C2906927|T037|AB|Y36.7X1S|ICD10CM|War op w chem weapons and oth unconvtl warfare, civ, sequela|War op w chem weapons and oth unconvtl warfare, civ, sequela +C0481109|T037|PX|Y36.8|ICD10|Injury due to war operations occurring after cessation of hostilities|Injury due to war operations occurring after cessation of hostilities +C2906928|T037|ET|Y36.8|ICD10CM|War operations classifiable to categories Y36.0-Y36.8 but occurring after cessation of hostilities|War operations classifiable to categories Y36.0-Y36.8 but occurring after cessation of hostilities +C0481109|T037|PS|Y36.8|ICD10|War operations occurring after cessation of hostilities|War operations occurring after cessation of hostilities +C0481109|T037|HT|Y36.8|ICD10CM|War operations occurring after cessation of hostilities|War operations occurring after cessation of hostilities +C0481109|T037|AB|Y36.8|ICD10CM|War operations occurring after cessation of hostilities|War operations occurring after cessation of hostilities +C2906929|T037|AB|Y36.81|ICD10CM|Explosion of mine placed during war op but exploding after|Explosion of mine placed during war op but exploding after +C2906929|T037|HT|Y36.81|ICD10CM|Explosion of mine placed during war operations but exploding after cessation of hostilities|Explosion of mine placed during war operations but exploding after cessation of hostilities +C2906930|T037|AB|Y36.810|ICD10CM|Explosn of mine placed during war op but expld after, milt|Explosn of mine placed during war op but expld after, milt +C2906931|T037|AB|Y36.810A|ICD10CM|Explosn of mine place dur war op but expld aft, milt, init|Explosn of mine place dur war op but expld aft, milt, init +C2906932|T037|AB|Y36.810D|ICD10CM|Explosn of mine place dur war op but expld aft, milt, subs|Explosn of mine place dur war op but expld aft, milt, subs +C2906933|T037|AB|Y36.810S|ICD10CM|Explosn of mine place dur war op but expld aft, milt, sqla|Explosn of mine place dur war op but expld aft, milt, sqla +C2906934|T037|AB|Y36.811|ICD10CM|Explosn of mine placed during war op but expld after, civ|Explosn of mine placed during war op but expld after, civ +C2906935|T037|AB|Y36.811A|ICD10CM|Explosn of mine place dur war op but expld after, civ, init|Explosn of mine place dur war op but expld after, civ, init +C2906936|T037|AB|Y36.811D|ICD10CM|Explosn of mine place dur war op but expld after, civ, subs|Explosn of mine place dur war op but expld after, civ, subs +C2906937|T037|AB|Y36.811S|ICD10CM|Explosn of mine place dur war op but expld after, civ, sqla|Explosn of mine place dur war op but expld after, civ, sqla +C2906938|T037|AB|Y36.82|ICD10CM|Explosion of bomb placed during war op but exploding after|Explosion of bomb placed during war op but exploding after +C2906938|T037|HT|Y36.82|ICD10CM|Explosion of bomb placed during war operations but exploding after cessation of hostilities|Explosion of bomb placed during war operations but exploding after cessation of hostilities +C2906939|T037|AB|Y36.820|ICD10CM|Explosn of bomb placed during war op but expld after, milt|Explosn of bomb placed during war op but expld after, milt +C2906940|T037|AB|Y36.820A|ICD10CM|Explosn of bomb place dur war op but expld aft, milt, init|Explosn of bomb place dur war op but expld aft, milt, init +C2906941|T037|AB|Y36.820D|ICD10CM|Explosn of bomb place dur war op but expld aft, milt, subs|Explosn of bomb place dur war op but expld aft, milt, subs +C2906942|T037|AB|Y36.820S|ICD10CM|Explosn of bomb place dur war op but expld aft, milt, sqla|Explosn of bomb place dur war op but expld aft, milt, sqla +C2906943|T037|AB|Y36.821|ICD10CM|Explosn of bomb placed during war op but expld after, civ|Explosn of bomb placed during war op but expld after, civ +C2906944|T037|AB|Y36.821A|ICD10CM|Explosn of bomb place dur war op but expld after, civ, init|Explosn of bomb place dur war op but expld after, civ, init +C2906945|T037|AB|Y36.821D|ICD10CM|Explosn of bomb place dur war op but expld after, civ, subs|Explosn of bomb place dur war op but expld after, civ, subs +C2906946|T037|AB|Y36.821S|ICD10CM|Explosn of bomb place dur war op but expld after, civ, sqla|Explosn of bomb place dur war op but expld after, civ, sqla +C2906947|T037|AB|Y36.88|ICD10CM|Oth war operations occurring after cessation of hostilities|Oth war operations occurring after cessation of hostilities +C2906947|T037|HT|Y36.88|ICD10CM|Other war operations occurring after cessation of hostilities|Other war operations occurring after cessation of hostilities +C2906948|T037|AB|Y36.880|ICD10CM|Oth war operations occurring after, military personnel|Oth war operations occurring after, military personnel +C2906948|T037|HT|Y36.880|ICD10CM|Other war operations occurring after cessation of hostilities, military personnel|Other war operations occurring after cessation of hostilities, military personnel +C2906949|T037|AB|Y36.880A|ICD10CM|Oth war operations occurring after, milt, init|Oth war operations occurring after, milt, init +C2906949|T037|PT|Y36.880A|ICD10CM|Other war operations occurring after cessation of hostilities, military personnel, initial encounter|Other war operations occurring after cessation of hostilities, military personnel, initial encounter +C2906950|T037|AB|Y36.880D|ICD10CM|Oth war operations occurring after, milt, subs|Oth war operations occurring after, milt, subs +C2906951|T037|AB|Y36.880S|ICD10CM|Oth war operations occurring after, milt, sequela|Oth war operations occurring after, milt, sequela +C2906951|T037|PT|Y36.880S|ICD10CM|Other war operations occurring after cessation of hostilities, military personnel, sequela|Other war operations occurring after cessation of hostilities, military personnel, sequela +C2906952|T037|AB|Y36.881|ICD10CM|Oth war operations occurring after, civilian|Oth war operations occurring after, civilian +C2906952|T037|HT|Y36.881|ICD10CM|Other war operations occurring after cessation of hostilities, civilian|Other war operations occurring after cessation of hostilities, civilian +C2906953|T037|AB|Y36.881A|ICD10CM|Oth war operations occurring after, civilian, init|Oth war operations occurring after, civilian, init +C2906953|T037|PT|Y36.881A|ICD10CM|Other war operations occurring after cessation of hostilities, civilian, initial encounter|Other war operations occurring after cessation of hostilities, civilian, initial encounter +C2906954|T037|AB|Y36.881D|ICD10CM|Oth war operations occurring after, civilian, subs|Oth war operations occurring after, civilian, subs +C2906954|T037|PT|Y36.881D|ICD10CM|Other war operations occurring after cessation of hostilities, civilian, subsequent encounter|Other war operations occurring after cessation of hostilities, civilian, subsequent encounter +C2906955|T037|AB|Y36.881S|ICD10CM|Oth war operations occurring after, civilian, sequela|Oth war operations occurring after, civilian, sequela +C2906955|T037|PT|Y36.881S|ICD10CM|Other war operations occurring after cessation of hostilities, civilian, sequela|Other war operations occurring after cessation of hostilities, civilian, sequela +C2906956|T037|AB|Y36.89|ICD10CM|Unsp war operations occurring after cessation of hostilities|Unsp war operations occurring after cessation of hostilities +C2906956|T037|HT|Y36.89|ICD10CM|Unspecified war operations occurring after cessation of hostilities|Unspecified war operations occurring after cessation of hostilities +C2906957|T037|AB|Y36.890|ICD10CM|Unsp war operations occurring after, military personnel|Unsp war operations occurring after, military personnel +C2906957|T037|HT|Y36.890|ICD10CM|Unspecified war operations occurring after cessation of hostilities, military personnel|Unspecified war operations occurring after cessation of hostilities, military personnel +C2906958|T037|AB|Y36.890A|ICD10CM|Unsp war operations occurring after, milt, init|Unsp war operations occurring after, milt, init +C2906959|T037|AB|Y36.890D|ICD10CM|Unsp war operations occurring after, milt, subs|Unsp war operations occurring after, milt, subs +C2906960|T037|AB|Y36.890S|ICD10CM|Unsp war operations occurring after, milt, sequela|Unsp war operations occurring after, milt, sequela +C2906960|T037|PT|Y36.890S|ICD10CM|Unspecified war operations occurring after cessation of hostilities, military personnel, sequela|Unspecified war operations occurring after cessation of hostilities, military personnel, sequela +C2906961|T037|AB|Y36.891|ICD10CM|Unsp war operations occurring after, civilian|Unsp war operations occurring after, civilian +C2906961|T037|HT|Y36.891|ICD10CM|Unspecified war operations occurring after cessation of hostilities, civilian|Unspecified war operations occurring after cessation of hostilities, civilian +C2906962|T037|AB|Y36.891A|ICD10CM|Unsp war operations occurring after, civilian, init|Unsp war operations occurring after, civilian, init +C2906962|T037|PT|Y36.891A|ICD10CM|Unspecified war operations occurring after cessation of hostilities, civilian, initial encounter|Unspecified war operations occurring after cessation of hostilities, civilian, initial encounter +C2906963|T037|AB|Y36.891D|ICD10CM|Unsp war operations occurring after, civilian, subs|Unsp war operations occurring after, civilian, subs +C2906963|T037|PT|Y36.891D|ICD10CM|Unspecified war operations occurring after cessation of hostilities, civilian, subsequent encounter|Unspecified war operations occurring after cessation of hostilities, civilian, subsequent encounter +C2906964|T037|AB|Y36.891S|ICD10CM|Unsp war operations occurring after, civilian, sequela|Unsp war operations occurring after, civilian, sequela +C2906964|T037|PT|Y36.891S|ICD10CM|Unspecified war operations occurring after cessation of hostilities, civilian, sequela|Unspecified war operations occurring after cessation of hostilities, civilian, sequela +C0178364|T037|PX|Y36.9|ICD10|Injury due to war operations, unspecified|Injury due to war operations, unspecified +C2906965|T037|AB|Y36.9|ICD10CM|Other and unspecified war operations|Other and unspecified war operations +C2906965|T037|HT|Y36.9|ICD10CM|Other and unspecified war operations|Other and unspecified war operations +C2906966|T037|PT|Y36.90XA|ICD10CM|War operations, unspecified, initial encounter|War operations, unspecified, initial encounter +C2906966|T037|AB|Y36.90XA|ICD10CM|War operations, unspecified, initial encounter|War operations, unspecified, initial encounter +C2906967|T037|PT|Y36.90XD|ICD10CM|War operations, unspecified, subsequent encounter|War operations, unspecified, subsequent encounter +C2906967|T037|AB|Y36.90XD|ICD10CM|War operations, unspecified, subsequent encounter|War operations, unspecified, subsequent encounter +C2906968|T037|PT|Y36.90XS|ICD10CM|War operations, unspecified, sequela|War operations, unspecified, sequela +C2906968|T037|AB|Y36.90XS|ICD10CM|War operations, unspecified, sequela|War operations, unspecified, sequela +C2906969|T037|AB|Y36.91|ICD10CM|War operations involving unsp weapon of mass destruction|War operations involving unsp weapon of mass destruction +C2906969|T037|HT|Y36.91|ICD10CM|War operations involving unspecified weapon of mass destruction [WMD]|War operations involving unspecified weapon of mass destruction [WMD] +C2906970|T037|AB|Y36.91XA|ICD10CM|War operations involving unsp weapon of mass dest, init|War operations involving unsp weapon of mass dest, init +C2906970|T037|PT|Y36.91XA|ICD10CM|War operations involving unspecified weapon of mass destruction [WMD], initial encounter|War operations involving unspecified weapon of mass destruction [WMD], initial encounter +C2906971|T037|AB|Y36.91XD|ICD10CM|War operations involving unsp weapon of mass dest, subs|War operations involving unsp weapon of mass dest, subs +C2906971|T037|PT|Y36.91XD|ICD10CM|War operations involving unspecified weapon of mass destruction [WMD], subsequent encounter|War operations involving unspecified weapon of mass destruction [WMD], subsequent encounter +C2906972|T037|AB|Y36.91XS|ICD10CM|War operations involving unsp weapon of mass dest, sequela|War operations involving unsp weapon of mass dest, sequela +C2906972|T037|PT|Y36.91XS|ICD10CM|War operations involving unspecified weapon of mass destruction [WMD], sequela|War operations involving unspecified weapon of mass destruction [WMD], sequela +C2906973|T037|AB|Y36.92|ICD10CM|War operations involving friendly fire|War operations involving friendly fire +C2906973|T037|HT|Y36.92|ICD10CM|War operations involving friendly fire|War operations involving friendly fire +C2906974|T037|PT|Y36.92XA|ICD10CM|War operations involving friendly fire, initial encounter|War operations involving friendly fire, initial encounter +C2906974|T037|AB|Y36.92XA|ICD10CM|War operations involving friendly fire, initial encounter|War operations involving friendly fire, initial encounter +C2906975|T037|AB|Y36.92XD|ICD10CM|War operations involving friendly fire, subsequent encounter|War operations involving friendly fire, subsequent encounter +C2906975|T037|PT|Y36.92XD|ICD10CM|War operations involving friendly fire, subsequent encounter|War operations involving friendly fire, subsequent encounter +C2906976|T037|PT|Y36.92XS|ICD10CM|War operations involving friendly fire, sequela|War operations involving friendly fire, sequela +C2906976|T037|AB|Y36.92XS|ICD10CM|War operations involving friendly fire, sequela|War operations involving friendly fire, sequela +C2907409|T037|AB|Y37|ICD10CM|Military operations|Military operations +C2907409|T037|HT|Y37|ICD10CM|Military operations|Military operations +C2906979|T037|AB|Y37.0|ICD10CM|Military operations involving explosion of marine weapons|Military operations involving explosion of marine weapons +C2906979|T037|HT|Y37.0|ICD10CM|Military operations involving explosion of marine weapons|Military operations involving explosion of marine weapons +C2906981|T037|HT|Y37.00|ICD10CM|Military operations involving explosion of unspecified marine weapon|Military operations involving explosion of unspecified marine weapon +C2906980|T037|ET|Y37.00|ICD10CM|Military operations involving underwater blast NOS|Military operations involving underwater blast NOS +C2906981|T037|AB|Y37.00|ICD10CM|Milt op involving explosion of unsp marine weapon|Milt op involving explosion of unsp marine weapon +C2906982|T037|HT|Y37.000|ICD10CM|Military operations involving explosion of unspecified marine weapon, military personnel|Military operations involving explosion of unspecified marine weapon, military personnel +C2906982|T037|AB|Y37.000|ICD10CM|Milt op involving explosion of unsp marine weapon, milt|Milt op involving explosion of unsp marine weapon, milt +C2906983|T037|AB|Y37.000A|ICD10CM|Milt op involving explosn of unsp marine weapon, milt, init|Milt op involving explosn of unsp marine weapon, milt, init +C2906984|T037|AB|Y37.000D|ICD10CM|Milt op involving explosn of unsp marine weapon, milt, subs|Milt op involving explosn of unsp marine weapon, milt, subs +C2906985|T037|PT|Y37.000S|ICD10CM|Military operations involving explosion of unspecified marine weapon, military personnel, sequela|Military operations involving explosion of unspecified marine weapon, military personnel, sequela +C2906985|T037|AB|Y37.000S|ICD10CM|Milt op w explosn of unsp marine weapon, milt, sequela|Milt op w explosn of unsp marine weapon, milt, sequela +C2906986|T037|HT|Y37.001|ICD10CM|Military operations involving explosion of unspecified marine weapon, civilian|Military operations involving explosion of unspecified marine weapon, civilian +C2906986|T037|AB|Y37.001|ICD10CM|Milt op involving explosion of unsp marine weapon, civilian|Milt op involving explosion of unsp marine weapon, civilian +C2906987|T037|PT|Y37.001A|ICD10CM|Military operations involving explosion of unspecified marine weapon, civilian, initial encounter|Military operations involving explosion of unspecified marine weapon, civilian, initial encounter +C2906987|T037|AB|Y37.001A|ICD10CM|Milt op w explosn of unsp marine weapon, civilian, init|Milt op w explosn of unsp marine weapon, civilian, init +C2906988|T037|PT|Y37.001D|ICD10CM|Military operations involving explosion of unspecified marine weapon, civilian, subsequent encounter|Military operations involving explosion of unspecified marine weapon, civilian, subsequent encounter +C2906988|T037|AB|Y37.001D|ICD10CM|Milt op w explosn of unsp marine weapon, civilian, subs|Milt op w explosn of unsp marine weapon, civilian, subs +C2906989|T037|PT|Y37.001S|ICD10CM|Military operations involving explosion of unspecified marine weapon, civilian, sequela|Military operations involving explosion of unspecified marine weapon, civilian, sequela +C2906989|T037|AB|Y37.001S|ICD10CM|Milt op w explosn of unsp marine weapon, civilian, sequela|Milt op w explosn of unsp marine weapon, civilian, sequela +C2906990|T037|AB|Y37.01|ICD10CM|Military operations involving explosion of depth-charge|Military operations involving explosion of depth-charge +C2906990|T037|HT|Y37.01|ICD10CM|Military operations involving explosion of depth-charge|Military operations involving explosion of depth-charge +C2906991|T037|HT|Y37.010|ICD10CM|Military operations involving explosion of depth-charge, military personnel|Military operations involving explosion of depth-charge, military personnel +C2906991|T037|AB|Y37.010|ICD10CM|Milt op involving explosion of depth-charge, milt|Milt op involving explosion of depth-charge, milt +C2906992|T037|PT|Y37.010A|ICD10CM|Military operations involving explosion of depth-charge, military personnel, initial encounter|Military operations involving explosion of depth-charge, military personnel, initial encounter +C2906992|T037|AB|Y37.010A|ICD10CM|Milt op involving explosion of depth-charge, milt, init|Milt op involving explosion of depth-charge, milt, init +C2906993|T037|PT|Y37.010D|ICD10CM|Military operations involving explosion of depth-charge, military personnel, subsequent encounter|Military operations involving explosion of depth-charge, military personnel, subsequent encounter +C2906993|T037|AB|Y37.010D|ICD10CM|Milt op involving explosion of depth-charge, milt, subs|Milt op involving explosion of depth-charge, milt, subs +C2906994|T037|PT|Y37.010S|ICD10CM|Military operations involving explosion of depth-charge, military personnel, sequela|Military operations involving explosion of depth-charge, military personnel, sequela +C2906994|T037|AB|Y37.010S|ICD10CM|Milt op involving explosion of depth-charge, milt, sequela|Milt op involving explosion of depth-charge, milt, sequela +C2906995|T037|HT|Y37.011|ICD10CM|Military operations involving explosion of depth-charge, civilian|Military operations involving explosion of depth-charge, civilian +C2906995|T037|AB|Y37.011|ICD10CM|Milt op involving explosion of depth-charge, civilian|Milt op involving explosion of depth-charge, civilian +C2906996|T037|PT|Y37.011A|ICD10CM|Military operations involving explosion of depth-charge, civilian, initial encounter|Military operations involving explosion of depth-charge, civilian, initial encounter +C2906996|T037|AB|Y37.011A|ICD10CM|Milt op involving explosion of depth-charge, civilian, init|Milt op involving explosion of depth-charge, civilian, init +C2906997|T037|PT|Y37.011D|ICD10CM|Military operations involving explosion of depth-charge, civilian, subsequent encounter|Military operations involving explosion of depth-charge, civilian, subsequent encounter +C2906997|T037|AB|Y37.011D|ICD10CM|Milt op involving explosion of depth-charge, civilian, subs|Milt op involving explosion of depth-charge, civilian, subs +C2906998|T037|PT|Y37.011S|ICD10CM|Military operations involving explosion of depth-charge, civilian, sequela|Military operations involving explosion of depth-charge, civilian, sequela +C2906998|T037|AB|Y37.011S|ICD10CM|Milt op involving explosion of depth-chg, civilian, sequela|Milt op involving explosion of depth-chg, civilian, sequela +C2907000|T037|AB|Y37.02|ICD10CM|Military operations involving explosion of marine mine|Military operations involving explosion of marine mine +C2907000|T037|HT|Y37.02|ICD10CM|Military operations involving explosion of marine mine|Military operations involving explosion of marine mine +C2906999|T037|ET|Y37.02|ICD10CM|Military operations involving explosion of marine mine, at sea or in harbor|Military operations involving explosion of marine mine, at sea or in harbor +C2907001|T037|HT|Y37.020|ICD10CM|Military operations involving explosion of marine mine, military personnel|Military operations involving explosion of marine mine, military personnel +C2907001|T037|AB|Y37.020|ICD10CM|Milt op involving explosion of marine mine, milt|Milt op involving explosion of marine mine, milt +C2907002|T037|PT|Y37.020A|ICD10CM|Military operations involving explosion of marine mine, military personnel, initial encounter|Military operations involving explosion of marine mine, military personnel, initial encounter +C2907002|T037|AB|Y37.020A|ICD10CM|Milt op involving explosion of marine mine, milt, init|Milt op involving explosion of marine mine, milt, init +C2907003|T037|PT|Y37.020D|ICD10CM|Military operations involving explosion of marine mine, military personnel, subsequent encounter|Military operations involving explosion of marine mine, military personnel, subsequent encounter +C2907003|T037|AB|Y37.020D|ICD10CM|Milt op involving explosion of marine mine, milt, subs|Milt op involving explosion of marine mine, milt, subs +C2907004|T037|PT|Y37.020S|ICD10CM|Military operations involving explosion of marine mine, military personnel, sequela|Military operations involving explosion of marine mine, military personnel, sequela +C2907004|T037|AB|Y37.020S|ICD10CM|Milt op involving explosion of marine mine, milt, sequela|Milt op involving explosion of marine mine, milt, sequela +C2907005|T037|HT|Y37.021|ICD10CM|Military operations involving explosion of marine mine, civilian|Military operations involving explosion of marine mine, civilian +C2907005|T037|AB|Y37.021|ICD10CM|Milt op involving explosion of marine mine, civilian|Milt op involving explosion of marine mine, civilian +C2907006|T037|PT|Y37.021A|ICD10CM|Military operations involving explosion of marine mine, civilian, initial encounter|Military operations involving explosion of marine mine, civilian, initial encounter +C2907006|T037|AB|Y37.021A|ICD10CM|Milt op involving explosion of marine mine, civilian, init|Milt op involving explosion of marine mine, civilian, init +C2907007|T037|PT|Y37.021D|ICD10CM|Military operations involving explosion of marine mine, civilian, subsequent encounter|Military operations involving explosion of marine mine, civilian, subsequent encounter +C2907007|T037|AB|Y37.021D|ICD10CM|Milt op involving explosion of marine mine, civilian, subs|Milt op involving explosion of marine mine, civilian, subs +C2907008|T037|PT|Y37.021S|ICD10CM|Military operations involving explosion of marine mine, civilian, sequela|Military operations involving explosion of marine mine, civilian, sequela +C2907008|T037|AB|Y37.021S|ICD10CM|Milt op involving explosn of marine mine, civilian, sequela|Milt op involving explosn of marine mine, civilian, sequela +C2907009|T037|HT|Y37.03|ICD10CM|Military operations involving explosion of sea-based artillery shell|Military operations involving explosion of sea-based artillery shell +C2907009|T037|AB|Y37.03|ICD10CM|Milt op involving explosion of sea-based artillery shell|Milt op involving explosion of sea-based artillery shell +C2907010|T037|HT|Y37.030|ICD10CM|Military operations involving explosion of sea-based artillery shell, military personnel|Military operations involving explosion of sea-based artillery shell, military personnel +C2907010|T037|AB|Y37.030|ICD10CM|Milt op involving explosion of sea-based artlry shell, milt|Milt op involving explosion of sea-based artlry shell, milt +C2907011|T037|AB|Y37.030A|ICD10CM|Milt op w explosn of sea-based artlry shell, milt, init|Milt op w explosn of sea-based artlry shell, milt, init +C2907012|T037|AB|Y37.030D|ICD10CM|Milt op w explosn of sea-based artlry shell, milt, subs|Milt op w explosn of sea-based artlry shell, milt, subs +C2907013|T037|PT|Y37.030S|ICD10CM|Military operations involving explosion of sea-based artillery shell, military personnel, sequela|Military operations involving explosion of sea-based artillery shell, military personnel, sequela +C2907013|T037|AB|Y37.030S|ICD10CM|Milt op w explosn of sea-based artlry shell, milt, sequela|Milt op w explosn of sea-based artlry shell, milt, sequela +C2907014|T037|HT|Y37.031|ICD10CM|Military operations involving explosion of sea-based artillery shell, civilian|Military operations involving explosion of sea-based artillery shell, civilian +C2907014|T037|AB|Y37.031|ICD10CM|Milt op w explosn of sea-based artlry shell, civilian|Milt op w explosn of sea-based artlry shell, civilian +C2907015|T037|PT|Y37.031A|ICD10CM|Military operations involving explosion of sea-based artillery shell, civilian, initial encounter|Military operations involving explosion of sea-based artillery shell, civilian, initial encounter +C2907015|T037|AB|Y37.031A|ICD10CM|Milt op w explosn of sea-based artlry shell, civilian, init|Milt op w explosn of sea-based artlry shell, civilian, init +C2907016|T037|PT|Y37.031D|ICD10CM|Military operations involving explosion of sea-based artillery shell, civilian, subsequent encounter|Military operations involving explosion of sea-based artillery shell, civilian, subsequent encounter +C2907016|T037|AB|Y37.031D|ICD10CM|Milt op w explosn of sea-based artlry shell, civilian, subs|Milt op w explosn of sea-based artlry shell, civilian, subs +C2907017|T037|PT|Y37.031S|ICD10CM|Military operations involving explosion of sea-based artillery shell, civilian, sequela|Military operations involving explosion of sea-based artillery shell, civilian, sequela +C2907017|T037|AB|Y37.031S|ICD10CM|Milt op w explosn of sea-based artlry shell, civ, sequela|Milt op w explosn of sea-based artlry shell, civ, sequela +C2907018|T037|AB|Y37.04|ICD10CM|Military operations involving explosion of torpedo|Military operations involving explosion of torpedo +C2907018|T037|HT|Y37.04|ICD10CM|Military operations involving explosion of torpedo|Military operations involving explosion of torpedo +C2907019|T037|HT|Y37.040|ICD10CM|Military operations involving explosion of torpedo, military personnel|Military operations involving explosion of torpedo, military personnel +C2907019|T037|AB|Y37.040|ICD10CM|Milt op involving explosion of torpedo, military personnel|Milt op involving explosion of torpedo, military personnel +C2907020|T037|PT|Y37.040A|ICD10CM|Military operations involving explosion of torpedo, military personnel, initial encounter|Military operations involving explosion of torpedo, military personnel, initial encounter +C2907020|T037|AB|Y37.040A|ICD10CM|Milt op involving explosion of torpedo, milt, init|Milt op involving explosion of torpedo, milt, init +C2907021|T037|PT|Y37.040D|ICD10CM|Military operations involving explosion of torpedo, military personnel, subsequent encounter|Military operations involving explosion of torpedo, military personnel, subsequent encounter +C2907021|T037|AB|Y37.040D|ICD10CM|Milt op involving explosion of torpedo, milt, subs|Milt op involving explosion of torpedo, milt, subs +C2907022|T037|PT|Y37.040S|ICD10CM|Military operations involving explosion of torpedo, military personnel, sequela|Military operations involving explosion of torpedo, military personnel, sequela +C2907022|T037|AB|Y37.040S|ICD10CM|Milt op involving explosion of torpedo, milt, sequela|Milt op involving explosion of torpedo, milt, sequela +C2907023|T037|AB|Y37.041|ICD10CM|Military operations involving explosion of torpedo, civilian|Military operations involving explosion of torpedo, civilian +C2907023|T037|HT|Y37.041|ICD10CM|Military operations involving explosion of torpedo, civilian|Military operations involving explosion of torpedo, civilian +C2907024|T037|PT|Y37.041A|ICD10CM|Military operations involving explosion of torpedo, civilian, initial encounter|Military operations involving explosion of torpedo, civilian, initial encounter +C2907024|T037|AB|Y37.041A|ICD10CM|Milt op involving explosion of torpedo, civilian, init|Milt op involving explosion of torpedo, civilian, init +C2907025|T037|PT|Y37.041D|ICD10CM|Military operations involving explosion of torpedo, civilian, subsequent encounter|Military operations involving explosion of torpedo, civilian, subsequent encounter +C2907025|T037|AB|Y37.041D|ICD10CM|Milt op involving explosion of torpedo, civilian, subs|Milt op involving explosion of torpedo, civilian, subs +C2907026|T037|PT|Y37.041S|ICD10CM|Military operations involving explosion of torpedo, civilian, sequela|Military operations involving explosion of torpedo, civilian, sequela +C2907026|T037|AB|Y37.041S|ICD10CM|Milt op involving explosion of torpedo, civilian, sequela|Milt op involving explosion of torpedo, civilian, sequela +C2907027|T037|HT|Y37.05|ICD10CM|Military operations involving accidental detonation of onboard marine weapons|Military operations involving accidental detonation of onboard marine weapons +C2907027|T037|AB|Y37.05|ICD10CM|Milt op involving accidental deton onboard marine weapons|Milt op involving accidental deton onboard marine weapons +C2907028|T037|HT|Y37.050|ICD10CM|Military operations involving accidental detonation of onboard marine weapons, military personnel|Military operations involving accidental detonation of onboard marine weapons, military personnel +C2907028|T037|AB|Y37.050|ICD10CM|Milt op involving acc deton onboard marine weapons, milt|Milt op involving acc deton onboard marine weapons, milt +C2907029|T037|AB|Y37.050A|ICD10CM|Milt op w acc deton onboard marine weapons, milt, init|Milt op w acc deton onboard marine weapons, milt, init +C2907030|T037|AB|Y37.050D|ICD10CM|Milt op w acc deton onboard marine weapons, milt, subs|Milt op w acc deton onboard marine weapons, milt, subs +C2907031|T037|AB|Y37.050S|ICD10CM|Milt op w acc deton onboard marine weapons, milt, sequela|Milt op w acc deton onboard marine weapons, milt, sequela +C2907032|T037|HT|Y37.051|ICD10CM|Military operations involving accidental detonation of onboard marine weapons, civilian|Military operations involving accidental detonation of onboard marine weapons, civilian +C2907032|T037|AB|Y37.051|ICD10CM|Milt op involving acc deton onboard marine weapons, civilian|Milt op involving acc deton onboard marine weapons, civilian +C2907033|T037|AB|Y37.051A|ICD10CM|Milt op w acc deton onboard marine weapons, civilian, init|Milt op w acc deton onboard marine weapons, civilian, init +C2907034|T037|AB|Y37.051D|ICD10CM|Milt op w acc deton onboard marine weapons, civilian, subs|Milt op w acc deton onboard marine weapons, civilian, subs +C2907035|T037|PT|Y37.051S|ICD10CM|Military operations involving accidental detonation of onboard marine weapons, civilian, sequela|Military operations involving accidental detonation of onboard marine weapons, civilian, sequela +C2907035|T037|AB|Y37.051S|ICD10CM|Milt op w acc deton onboard marine weapons, civ, sequela|Milt op w acc deton onboard marine weapons, civ, sequela +C2906979|T037|AB|Y37.09|ICD10CM|Military operations involving explosion of marine weapons|Military operations involving explosion of marine weapons +C2906979|T037|HT|Y37.09|ICD10CM|Military operations involving explosion of other marine weapons|Military operations involving explosion of other marine weapons +C2907037|T037|HT|Y37.090|ICD10CM|Military operations involving explosion of other marine weapons, military personnel|Military operations involving explosion of other marine weapons, military personnel +C2907037|T037|AB|Y37.090|ICD10CM|Milt op involving explosion of marine weapons, milt|Milt op involving explosion of marine weapons, milt +C2907038|T037|AB|Y37.090A|ICD10CM|Milt op involving explosion of marine weapons, milt, init|Milt op involving explosion of marine weapons, milt, init +C2907039|T037|AB|Y37.090D|ICD10CM|Milt op involving explosion of marine weapons, milt, subs|Milt op involving explosion of marine weapons, milt, subs +C2907040|T037|PT|Y37.090S|ICD10CM|Military operations involving explosion of other marine weapons, military personnel, sequela|Military operations involving explosion of other marine weapons, military personnel, sequela +C2907040|T037|AB|Y37.090S|ICD10CM|Milt op involving explosion of marine weapons, milt, sequela|Milt op involving explosion of marine weapons, milt, sequela +C2907041|T037|HT|Y37.091|ICD10CM|Military operations involving explosion of other marine weapons, civilian|Military operations involving explosion of other marine weapons, civilian +C2907041|T037|AB|Y37.091|ICD10CM|Milt op involving explosion of marine weapons, civilian|Milt op involving explosion of marine weapons, civilian +C2907042|T037|PT|Y37.091A|ICD10CM|Military operations involving explosion of other marine weapons, civilian, initial encounter|Military operations involving explosion of other marine weapons, civilian, initial encounter +C2907042|T037|AB|Y37.091A|ICD10CM|Milt op involving explosn of marine weapons, civilian, init|Milt op involving explosn of marine weapons, civilian, init +C2907043|T037|PT|Y37.091D|ICD10CM|Military operations involving explosion of other marine weapons, civilian, subsequent encounter|Military operations involving explosion of other marine weapons, civilian, subsequent encounter +C2907043|T037|AB|Y37.091D|ICD10CM|Milt op involving explosn of marine weapons, civilian, subs|Milt op involving explosn of marine weapons, civilian, subs +C2907044|T037|PT|Y37.091S|ICD10CM|Military operations involving explosion of other marine weapons, civilian, sequela|Military operations involving explosion of other marine weapons, civilian, sequela +C2907044|T037|AB|Y37.091S|ICD10CM|Milt op w explosn of marine weapons, civilian, sequela|Milt op w explosn of marine weapons, civilian, sequela +C2907045|T037|AB|Y37.1|ICD10CM|Military operations involving destruction of aircraft|Military operations involving destruction of aircraft +C2907045|T037|HT|Y37.1|ICD10CM|Military operations involving destruction of aircraft|Military operations involving destruction of aircraft +C2907046|T037|AB|Y37.10|ICD10CM|Military operations involving unsp destruction of aircraft|Military operations involving unsp destruction of aircraft +C2907046|T037|HT|Y37.10|ICD10CM|Military operations involving unspecified destruction of aircraft|Military operations involving unspecified destruction of aircraft +C2907047|T037|HT|Y37.100|ICD10CM|Military operations involving unspecified destruction of aircraft, military personnel|Military operations involving unspecified destruction of aircraft, military personnel +C2907047|T037|AB|Y37.100|ICD10CM|Milt op involving unsp dest arcrft, military personnel|Milt op involving unsp dest arcrft, military personnel +C2907048|T037|AB|Y37.100A|ICD10CM|Milt op involving unsp dest arcrft, military personnel, init|Milt op involving unsp dest arcrft, military personnel, init +C2907049|T037|AB|Y37.100D|ICD10CM|Milt op involving unsp dest arcrft, military personnel, subs|Milt op involving unsp dest arcrft, military personnel, subs +C2907050|T037|PT|Y37.100S|ICD10CM|Military operations involving unspecified destruction of aircraft, military personnel, sequela|Military operations involving unspecified destruction of aircraft, military personnel, sequela +C2907050|T037|AB|Y37.100S|ICD10CM|Milt op involving unsp dest arcrft, milt, sequela|Milt op involving unsp dest arcrft, milt, sequela +C2907051|T037|AB|Y37.101|ICD10CM|Military operations involving unsp dest arcrft, civilian|Military operations involving unsp dest arcrft, civilian +C2907051|T037|HT|Y37.101|ICD10CM|Military operations involving unspecified destruction of aircraft, civilian|Military operations involving unspecified destruction of aircraft, civilian +C2907052|T037|PT|Y37.101A|ICD10CM|Military operations involving unspecified destruction of aircraft, civilian, initial encounter|Military operations involving unspecified destruction of aircraft, civilian, initial encounter +C2907052|T037|AB|Y37.101A|ICD10CM|Milt op involving unsp dest arcrft, civilian, init|Milt op involving unsp dest arcrft, civilian, init +C2907053|T037|PT|Y37.101D|ICD10CM|Military operations involving unspecified destruction of aircraft, civilian, subsequent encounter|Military operations involving unspecified destruction of aircraft, civilian, subsequent encounter +C2907053|T037|AB|Y37.101D|ICD10CM|Milt op involving unsp dest arcrft, civilian, subs|Milt op involving unsp dest arcrft, civilian, subs +C2907054|T037|PT|Y37.101S|ICD10CM|Military operations involving unspecified destruction of aircraft, civilian, sequela|Military operations involving unspecified destruction of aircraft, civilian, sequela +C2907054|T037|AB|Y37.101S|ICD10CM|Milt op involving unsp dest arcrft, civilian, sequela|Milt op involving unsp dest arcrft, civilian, sequela +C2907055|T037|ET|Y37.11|ICD10CM|Military operations involving destruction of aircraft due to air to air missile|Military operations involving destruction of aircraft due to air to air missile +C2907060|T037|HT|Y37.11|ICD10CM|Military operations involving destruction of aircraft due to enemy fire or explosives|Military operations involving destruction of aircraft due to enemy fire or explosives +C2907056|T037|ET|Y37.11|ICD10CM|Military operations involving destruction of aircraft due to explosive placed on aircraft|Military operations involving destruction of aircraft due to explosive placed on aircraft +C2907057|T037|ET|Y37.11|ICD10CM|Military operations involving destruction of aircraft due to rocket propelled grenade [RPG]|Military operations involving destruction of aircraft due to rocket propelled grenade [RPG] +C2907058|T037|ET|Y37.11|ICD10CM|Military operations involving destruction of aircraft due to small arms fire|Military operations involving destruction of aircraft due to small arms fire +C2907059|T037|ET|Y37.11|ICD10CM|Military operations involving destruction of aircraft due to surface to air missile|Military operations involving destruction of aircraft due to surface to air missile +C2907060|T037|AB|Y37.11|ICD10CM|Milt op involving dest arcrft due to enmy fire/expls|Milt op involving dest arcrft due to enmy fire/expls +C2907061|T037|AB|Y37.110|ICD10CM|Milt op involving dest arcrft due to enmy fire/expls, milt|Milt op involving dest arcrft due to enmy fire/expls, milt +C2907062|T037|AB|Y37.110A|ICD10CM|Milt op w dest arcrft due to enmy fire/expls, milt, init|Milt op w dest arcrft due to enmy fire/expls, milt, init +C2907063|T037|AB|Y37.110D|ICD10CM|Milt op w dest arcrft due to enmy fire/expls, milt, subs|Milt op w dest arcrft due to enmy fire/expls, milt, subs +C2907064|T037|AB|Y37.110S|ICD10CM|Milt op w dest arcrft due to enmy fire/expls, milt, sequela|Milt op w dest arcrft due to enmy fire/expls, milt, sequela +C2907065|T037|HT|Y37.111|ICD10CM|Military operations involving destruction of aircraft due to enemy fire or explosives, civilian|Military operations involving destruction of aircraft due to enemy fire or explosives, civilian +C2907065|T037|AB|Y37.111|ICD10CM|Milt op w dest arcrft due to enmy fire/expls, civilian|Milt op w dest arcrft due to enmy fire/expls, civilian +C2907066|T037|AB|Y37.111A|ICD10CM|Milt op w dest arcrft due to enmy fire/expls, civilian, init|Milt op w dest arcrft due to enmy fire/expls, civilian, init +C2907067|T037|AB|Y37.111D|ICD10CM|Milt op w dest arcrft due to enmy fire/expls, civilian, subs|Milt op w dest arcrft due to enmy fire/expls, civilian, subs +C2907068|T037|AB|Y37.111S|ICD10CM|Milt op w dest arcrft due to enmy fire/expls, civ, sequela|Milt op w dest arcrft due to enmy fire/expls, civ, sequela +C2907069|T037|HT|Y37.12|ICD10CM|Military operations involving destruction of aircraft due to collision with other aircraft|Military operations involving destruction of aircraft due to collision with other aircraft +C2907069|T037|AB|Y37.12|ICD10CM|Milt op involving dest arcrft due to clsn w oth aircraft|Milt op involving dest arcrft due to clsn w oth aircraft +C2907070|T037|AB|Y37.120|ICD10CM|Milt op w dest arcrft due to clsn w oth aircraft, milt|Milt op w dest arcrft due to clsn w oth aircraft, milt +C2907071|T037|AB|Y37.120A|ICD10CM|Milt op w dest arcrft due to clsn w oth aircraft, milt, init|Milt op w dest arcrft due to clsn w oth aircraft, milt, init +C2907072|T037|AB|Y37.120D|ICD10CM|Milt op w dest arcrft due to clsn w oth aircraft, milt, subs|Milt op w dest arcrft due to clsn w oth aircraft, milt, subs +C2907073|T037|AB|Y37.120S|ICD10CM|Milt op w dest arcrft due to clsn w oth arcrft, milt, sqla|Milt op w dest arcrft due to clsn w oth arcrft, milt, sqla +C2907074|T037|HT|Y37.121|ICD10CM|Military operations involving destruction of aircraft due to collision with other aircraft, civilian|Military operations involving destruction of aircraft due to collision with other aircraft, civilian +C2907074|T037|AB|Y37.121|ICD10CM|Milt op w dest arcrft due to clsn w oth aircraft, civilian|Milt op w dest arcrft due to clsn w oth aircraft, civilian +C2907075|T037|AB|Y37.121A|ICD10CM|Milt op w dest arcrft due to clsn w oth arcrft, civ, init|Milt op w dest arcrft due to clsn w oth arcrft, civ, init +C2907076|T037|AB|Y37.121D|ICD10CM|Milt op w dest arcrft due to clsn w oth arcrft, civ, subs|Milt op w dest arcrft due to clsn w oth arcrft, civ, subs +C2907077|T037|AB|Y37.121S|ICD10CM|Milt op w dest arcrft due to clsn w oth arcrft, civ, sequela|Milt op w dest arcrft due to clsn w oth arcrft, civ, sequela +C2907078|T037|HT|Y37.13|ICD10CM|Military operations involving destruction of aircraft due to onboard fire|Military operations involving destruction of aircraft due to onboard fire +C2907078|T037|AB|Y37.13|ICD10CM|Milt op involving dest arcrft due to onboard fire|Milt op involving dest arcrft due to onboard fire +C2907079|T037|HT|Y37.130|ICD10CM|Military operations involving destruction of aircraft due to onboard fire, military personnel|Military operations involving destruction of aircraft due to onboard fire, military personnel +C2907079|T037|AB|Y37.130|ICD10CM|Milt op involving dest arcrft due to onboard fire, milt|Milt op involving dest arcrft due to onboard fire, milt +C2907080|T037|AB|Y37.130A|ICD10CM|Milt op w dest arcrft due to onboard fire, milt, init|Milt op w dest arcrft due to onboard fire, milt, init +C2907081|T037|AB|Y37.130D|ICD10CM|Milt op w dest arcrft due to onboard fire, milt, subs|Milt op w dest arcrft due to onboard fire, milt, subs +C2907082|T037|AB|Y37.130S|ICD10CM|Milt op w dest arcrft due to onboard fire, milt, sequela|Milt op w dest arcrft due to onboard fire, milt, sequela +C2907083|T037|HT|Y37.131|ICD10CM|Military operations involving destruction of aircraft due to onboard fire, civilian|Military operations involving destruction of aircraft due to onboard fire, civilian +C2907083|T037|AB|Y37.131|ICD10CM|Milt op involving dest arcrft due to onboard fire, civilian|Milt op involving dest arcrft due to onboard fire, civilian +C2907084|T037|AB|Y37.131A|ICD10CM|Milt op w dest arcrft due to onboard fire, civilian, init|Milt op w dest arcrft due to onboard fire, civilian, init +C2907085|T037|AB|Y37.131D|ICD10CM|Milt op w dest arcrft due to onboard fire, civilian, subs|Milt op w dest arcrft due to onboard fire, civilian, subs +C2907086|T037|PT|Y37.131S|ICD10CM|Military operations involving destruction of aircraft due to onboard fire, civilian, sequela|Military operations involving destruction of aircraft due to onboard fire, civilian, sequela +C2907086|T037|AB|Y37.131S|ICD10CM|Milt op w dest arcrft due to onboard fire, civilian, sequela|Milt op w dest arcrft due to onboard fire, civilian, sequela +C2907087|T037|AB|Y37.14|ICD10CM|Milt op involving dest arcrft due to acc deton onboard munit|Milt op involving dest arcrft due to acc deton onboard munit +C2907088|T037|AB|Y37.140|ICD10CM|Milt op w dest arcrft due to acc deton onboard munit, milt|Milt op w dest arcrft due to acc deton onboard munit, milt +C2907089|T037|AB|Y37.140A|ICD10CM|Milt op w dest arcrft d/t acc deton onbrd munit, milt, init|Milt op w dest arcrft d/t acc deton onbrd munit, milt, init +C2907090|T037|AB|Y37.140D|ICD10CM|Milt op w dest arcrft d/t acc deton onbrd munit, milt, subs|Milt op w dest arcrft d/t acc deton onbrd munit, milt, subs +C2907091|T037|AB|Y37.140S|ICD10CM|Milt op w dest arcrft d/t acc deton onbrd munit, milt, sqla|Milt op w dest arcrft d/t acc deton onbrd munit, milt, sqla +C2907092|T037|AB|Y37.141|ICD10CM|Milt op w dest arcrft due to acc deton onboard munit, civ|Milt op w dest arcrft due to acc deton onboard munit, civ +C2907093|T037|AB|Y37.141A|ICD10CM|Milt op w dest arcrft d/t acc deton onbrd munit, civ, init|Milt op w dest arcrft d/t acc deton onbrd munit, civ, init +C2907094|T037|AB|Y37.141D|ICD10CM|Milt op w dest arcrft d/t acc deton onbrd munit, civ, subs|Milt op w dest arcrft d/t acc deton onbrd munit, civ, subs +C2907095|T037|AB|Y37.141S|ICD10CM|Milt op w dest arcrft d/t acc deton onbrd munit, civ, sqla|Milt op w dest arcrft d/t acc deton onbrd munit, civ, sqla +C2907096|T037|AB|Y37.19|ICD10CM|Military operations involving other destruction of aircraft|Military operations involving other destruction of aircraft +C2907096|T037|HT|Y37.19|ICD10CM|Military operations involving other destruction of aircraft|Military operations involving other destruction of aircraft +C2907097|T037|HT|Y37.190|ICD10CM|Military operations involving other destruction of aircraft, military personnel|Military operations involving other destruction of aircraft, military personnel +C2907097|T037|AB|Y37.190|ICD10CM|Milt op involving oth dest arcrft, military personnel|Milt op involving oth dest arcrft, military personnel +C2907098|T037|PT|Y37.190A|ICD10CM|Military operations involving other destruction of aircraft, military personnel, initial encounter|Military operations involving other destruction of aircraft, military personnel, initial encounter +C2907098|T037|AB|Y37.190A|ICD10CM|Milt op involving oth dest arcrft, military personnel, init|Milt op involving oth dest arcrft, military personnel, init +C2907099|T037|AB|Y37.190D|ICD10CM|Milt op involving oth dest arcrft, military personnel, subs|Milt op involving oth dest arcrft, military personnel, subs +C2907100|T037|PT|Y37.190S|ICD10CM|Military operations involving other destruction of aircraft, military personnel, sequela|Military operations involving other destruction of aircraft, military personnel, sequela +C2907100|T037|AB|Y37.190S|ICD10CM|Milt op involving oth dest arcrft, milt, sequela|Milt op involving oth dest arcrft, milt, sequela +C2907101|T037|AB|Y37.191|ICD10CM|Military operations involving oth dest arcrft, civilian|Military operations involving oth dest arcrft, civilian +C2907101|T037|HT|Y37.191|ICD10CM|Military operations involving other destruction of aircraft, civilian|Military operations involving other destruction of aircraft, civilian +C2907102|T037|PT|Y37.191A|ICD10CM|Military operations involving other destruction of aircraft, civilian, initial encounter|Military operations involving other destruction of aircraft, civilian, initial encounter +C2907102|T037|AB|Y37.191A|ICD10CM|Milt op involving oth dest arcrft, civilian, init|Milt op involving oth dest arcrft, civilian, init +C2907103|T037|PT|Y37.191D|ICD10CM|Military operations involving other destruction of aircraft, civilian, subsequent encounter|Military operations involving other destruction of aircraft, civilian, subsequent encounter +C2907103|T037|AB|Y37.191D|ICD10CM|Milt op involving oth dest arcrft, civilian, subs|Milt op involving oth dest arcrft, civilian, subs +C2907104|T037|PT|Y37.191S|ICD10CM|Military operations involving other destruction of aircraft, civilian, sequela|Military operations involving other destruction of aircraft, civilian, sequela +C2907104|T037|AB|Y37.191S|ICD10CM|Milt op involving oth dest arcrft, civilian, sequela|Milt op involving oth dest arcrft, civilian, sequela +C2907105|T037|AB|Y37.2|ICD10CM|Military operations involving other explosions and fragments|Military operations involving other explosions and fragments +C2907105|T037|HT|Y37.2|ICD10CM|Military operations involving other explosions and fragments|Military operations involving other explosions and fragments +C2907106|T037|ET|Y37.20|ICD10CM|Military operations involving air blast NOS|Military operations involving air blast NOS +C2907108|T037|ET|Y37.20|ICD10CM|Military operations involving blast fragments NOS|Military operations involving blast fragments NOS +C2907107|T037|ET|Y37.20|ICD10CM|Military operations involving blast NOS|Military operations involving blast NOS +C2907109|T037|ET|Y37.20|ICD10CM|Military operations involving blast wave NOS|Military operations involving blast wave NOS +C2907110|T037|ET|Y37.20|ICD10CM|Military operations involving blast wind NOS|Military operations involving blast wind NOS +C2907111|T037|ET|Y37.20|ICD10CM|Military operations involving explosion NOS|Military operations involving explosion NOS +C2907112|T037|ET|Y37.20|ICD10CM|Military operations involving explosion of bomb NOS|Military operations involving explosion of bomb NOS +C2907113|T037|AB|Y37.20|ICD10CM|Military operations involving unsp explosion and fragments|Military operations involving unsp explosion and fragments +C2907113|T037|HT|Y37.20|ICD10CM|Military operations involving unspecified explosion and fragments|Military operations involving unspecified explosion and fragments +C2907114|T037|HT|Y37.200|ICD10CM|Military operations involving unspecified explosion and fragments, military personnel|Military operations involving unspecified explosion and fragments, military personnel +C2907114|T037|AB|Y37.200|ICD10CM|Milt op involving unsp explosion and fragments, milt|Milt op involving unsp explosion and fragments, milt +C2907115|T037|AB|Y37.200A|ICD10CM|Milt op involving unsp explosion and fragments, milt, init|Milt op involving unsp explosion and fragments, milt, init +C2907116|T037|AB|Y37.200D|ICD10CM|Milt op involving unsp explosion and fragments, milt, subs|Milt op involving unsp explosion and fragments, milt, subs +C2907117|T037|PT|Y37.200S|ICD10CM|Military operations involving unspecified explosion and fragments, military personnel, sequela|Military operations involving unspecified explosion and fragments, military personnel, sequela +C2907117|T037|AB|Y37.200S|ICD10CM|Milt op involving unsp explosn and fragments, milt, sequela|Milt op involving unsp explosn and fragments, milt, sequela +C2907118|T037|HT|Y37.201|ICD10CM|Military operations involving unspecified explosion and fragments, civilian|Military operations involving unspecified explosion and fragments, civilian +C2907118|T037|AB|Y37.201|ICD10CM|Milt op involving unsp explosion and fragments, civilian|Milt op involving unsp explosion and fragments, civilian +C2907119|T037|PT|Y37.201A|ICD10CM|Military operations involving unspecified explosion and fragments, civilian, initial encounter|Military operations involving unspecified explosion and fragments, civilian, initial encounter +C2907119|T037|AB|Y37.201A|ICD10CM|Milt op involving unsp explosn and fragments, civilian, init|Milt op involving unsp explosn and fragments, civilian, init +C2907120|T037|PT|Y37.201D|ICD10CM|Military operations involving unspecified explosion and fragments, civilian, subsequent encounter|Military operations involving unspecified explosion and fragments, civilian, subsequent encounter +C2907120|T037|AB|Y37.201D|ICD10CM|Milt op involving unsp explosn and fragments, civilian, subs|Milt op involving unsp explosn and fragments, civilian, subs +C2907121|T037|PT|Y37.201S|ICD10CM|Military operations involving unspecified explosion and fragments, civilian, sequela|Military operations involving unspecified explosion and fragments, civilian, sequela +C2907121|T037|AB|Y37.201S|ICD10CM|Milt op involving unsp explosn and fragmt, civilian, sequela|Milt op involving unsp explosn and fragmt, civilian, sequela +C2907122|T037|AB|Y37.21|ICD10CM|Military operations involving explosion of aerial bomb|Military operations involving explosion of aerial bomb +C2907122|T037|HT|Y37.21|ICD10CM|Military operations involving explosion of aerial bomb|Military operations involving explosion of aerial bomb +C2907123|T037|HT|Y37.210|ICD10CM|Military operations involving explosion of aerial bomb, military personnel|Military operations involving explosion of aerial bomb, military personnel +C2907123|T037|AB|Y37.210|ICD10CM|Milt op involving explosion of aerial bomb, milt|Milt op involving explosion of aerial bomb, milt +C2907124|T037|PT|Y37.210A|ICD10CM|Military operations involving explosion of aerial bomb, military personnel, initial encounter|Military operations involving explosion of aerial bomb, military personnel, initial encounter +C2907124|T037|AB|Y37.210A|ICD10CM|Milt op involving explosion of aerial bomb, milt, init|Milt op involving explosion of aerial bomb, milt, init +C2907125|T037|PT|Y37.210D|ICD10CM|Military operations involving explosion of aerial bomb, military personnel, subsequent encounter|Military operations involving explosion of aerial bomb, military personnel, subsequent encounter +C2907125|T037|AB|Y37.210D|ICD10CM|Milt op involving explosion of aerial bomb, milt, subs|Milt op involving explosion of aerial bomb, milt, subs +C2907126|T037|PT|Y37.210S|ICD10CM|Military operations involving explosion of aerial bomb, military personnel, sequela|Military operations involving explosion of aerial bomb, military personnel, sequela +C2907126|T037|AB|Y37.210S|ICD10CM|Milt op involving explosion of aerial bomb, milt, sequela|Milt op involving explosion of aerial bomb, milt, sequela +C2907127|T037|HT|Y37.211|ICD10CM|Military operations involving explosion of aerial bomb, civilian|Military operations involving explosion of aerial bomb, civilian +C2907127|T037|AB|Y37.211|ICD10CM|Milt op involving explosion of aerial bomb, civilian|Milt op involving explosion of aerial bomb, civilian +C2907128|T037|PT|Y37.211A|ICD10CM|Military operations involving explosion of aerial bomb, civilian, initial encounter|Military operations involving explosion of aerial bomb, civilian, initial encounter +C2907128|T037|AB|Y37.211A|ICD10CM|Milt op involving explosion of aerial bomb, civilian, init|Milt op involving explosion of aerial bomb, civilian, init +C2907129|T037|PT|Y37.211D|ICD10CM|Military operations involving explosion of aerial bomb, civilian, subsequent encounter|Military operations involving explosion of aerial bomb, civilian, subsequent encounter +C2907129|T037|AB|Y37.211D|ICD10CM|Milt op involving explosion of aerial bomb, civilian, subs|Milt op involving explosion of aerial bomb, civilian, subs +C2907130|T037|PT|Y37.211S|ICD10CM|Military operations involving explosion of aerial bomb, civilian, sequela|Military operations involving explosion of aerial bomb, civilian, sequela +C2907130|T037|AB|Y37.211S|ICD10CM|Milt op involving explosn of aerial bomb, civilian, sequela|Milt op involving explosn of aerial bomb, civilian, sequela +C2907131|T037|AB|Y37.22|ICD10CM|Military operations involving explosion of guided missile|Military operations involving explosion of guided missile +C2907131|T037|HT|Y37.22|ICD10CM|Military operations involving explosion of guided missile|Military operations involving explosion of guided missile +C2907132|T037|HT|Y37.220|ICD10CM|Military operations involving explosion of guided missile, military personnel|Military operations involving explosion of guided missile, military personnel +C2907132|T037|AB|Y37.220|ICD10CM|Milt op involving explosion of guided missile, milt|Milt op involving explosion of guided missile, milt +C2907133|T037|PT|Y37.220A|ICD10CM|Military operations involving explosion of guided missile, military personnel, initial encounter|Military operations involving explosion of guided missile, military personnel, initial encounter +C2907133|T037|AB|Y37.220A|ICD10CM|Milt op involving explosion of guided missile, milt, init|Milt op involving explosion of guided missile, milt, init +C2907134|T037|PT|Y37.220D|ICD10CM|Military operations involving explosion of guided missile, military personnel, subsequent encounter|Military operations involving explosion of guided missile, military personnel, subsequent encounter +C2907134|T037|AB|Y37.220D|ICD10CM|Milt op involving explosion of guided missile, milt, subs|Milt op involving explosion of guided missile, milt, subs +C2907135|T037|PT|Y37.220S|ICD10CM|Military operations involving explosion of guided missile, military personnel, sequela|Military operations involving explosion of guided missile, military personnel, sequela +C2907135|T037|AB|Y37.220S|ICD10CM|Milt op involving explosion of guided missile, milt, sequela|Milt op involving explosion of guided missile, milt, sequela +C2907136|T037|HT|Y37.221|ICD10CM|Military operations involving explosion of guided missile, civilian|Military operations involving explosion of guided missile, civilian +C2907136|T037|AB|Y37.221|ICD10CM|Milt op involving explosion of guided missile, civilian|Milt op involving explosion of guided missile, civilian +C2907137|T037|PT|Y37.221A|ICD10CM|Military operations involving explosion of guided missile, civilian, initial encounter|Military operations involving explosion of guided missile, civilian, initial encounter +C2907137|T037|AB|Y37.221A|ICD10CM|Milt op involving explosn of guided missile, civilian, init|Milt op involving explosn of guided missile, civilian, init +C2907138|T037|PT|Y37.221D|ICD10CM|Military operations involving explosion of guided missile, civilian, subsequent encounter|Military operations involving explosion of guided missile, civilian, subsequent encounter +C2907138|T037|AB|Y37.221D|ICD10CM|Milt op involving explosn of guided missile, civilian, subs|Milt op involving explosn of guided missile, civilian, subs +C2907139|T037|PT|Y37.221S|ICD10CM|Military operations involving explosion of guided missile, civilian, sequela|Military operations involving explosion of guided missile, civilian, sequela +C2907139|T037|AB|Y37.221S|ICD10CM|Milt op w explosn of guided missile, civilian, sequela|Milt op w explosn of guided missile, civilian, sequela +C2907143|T037|HT|Y37.23|ICD10CM|Military operations involving explosion of improvised explosive device [IED]|Military operations involving explosion of improvised explosive device [IED] +C2907140|T037|ET|Y37.23|ICD10CM|Military operations involving explosion of person-borne improvised explosive device [IED]|Military operations involving explosion of person-borne improvised explosive device [IED] +C2907141|T037|ET|Y37.23|ICD10CM|Military operations involving explosion of roadside improvised explosive device [IED]|Military operations involving explosion of roadside improvised explosive device [IED] +C2907142|T037|ET|Y37.23|ICD10CM|Military operations involving explosion of vehicle-borne improvised explosive device [IED]|Military operations involving explosion of vehicle-borne improvised explosive device [IED] +C2907143|T037|AB|Y37.23|ICD10CM|Milt op involving explosion of improvised explosive device|Milt op involving explosion of improvised explosive device +C2907144|T037|HT|Y37.230|ICD10CM|Military operations involving explosion of improvised explosive device [IED], military personnel|Military operations involving explosion of improvised explosive device [IED], military personnel +C2907144|T037|AB|Y37.230|ICD10CM|Milt op involving explosion of improv explosive device, milt|Milt op involving explosion of improv explosive device, milt +C2907145|T037|AB|Y37.230A|ICD10CM|Milt op w explosn of improv explosv device, milt, init|Milt op w explosn of improv explosv device, milt, init +C2907146|T037|AB|Y37.230D|ICD10CM|Milt op w explosn of improv explosv device, milt, subs|Milt op w explosn of improv explosv device, milt, subs +C2907147|T037|AB|Y37.230S|ICD10CM|Milt op w explosn of improv explosv device, milt, sequela|Milt op w explosn of improv explosv device, milt, sequela +C2907148|T037|HT|Y37.231|ICD10CM|Military operations involving explosion of improvised explosive device [IED], civilian|Military operations involving explosion of improvised explosive device [IED], civilian +C2907148|T037|AB|Y37.231|ICD10CM|Milt op involving explosn of improv explosv device, civilian|Milt op involving explosn of improv explosv device, civilian +C2907149|T037|AB|Y37.231A|ICD10CM|Milt op w explosn of improv explosv device, civilian, init|Milt op w explosn of improv explosv device, civilian, init +C2907150|T037|AB|Y37.231D|ICD10CM|Milt op w explosn of improv explosv device, civilian, subs|Milt op w explosn of improv explosv device, civilian, subs +C2907151|T037|PT|Y37.231S|ICD10CM|Military operations involving explosion of improvised explosive device [IED], civilian, sequela|Military operations involving explosion of improvised explosive device [IED], civilian, sequela +C2907151|T037|AB|Y37.231S|ICD10CM|Milt op w explosn of improv explosv device, civ, sequela|Milt op w explosn of improv explosv device, civ, sequela +C2907152|T037|AB|Y37.24|ICD10CM|Milt op involving explosion due to acc disch of own munit|Milt op involving explosion due to acc disch of own munit +C2907153|T037|AB|Y37.240|ICD10CM|Milt op w explosn due to acc disch of own munit, milt|Milt op w explosn due to acc disch of own munit, milt +C2907154|T037|AB|Y37.240A|ICD10CM|Milt op w explosn due to acc disch of own munit, milt, init|Milt op w explosn due to acc disch of own munit, milt, init +C2907155|T037|AB|Y37.240D|ICD10CM|Milt op w explosn due to acc disch of own munit, milt, subs|Milt op w explosn due to acc disch of own munit, milt, subs +C2907156|T037|AB|Y37.240S|ICD10CM|Milt op w explosn due to acc disch of own munit, milt, sqla|Milt op w explosn due to acc disch of own munit, milt, sqla +C2907157|T037|AB|Y37.241|ICD10CM|Milt op w explosn due to acc disch of own munit, civilian|Milt op w explosn due to acc disch of own munit, civilian +C2907158|T037|AB|Y37.241A|ICD10CM|Milt op w explosn due to acc disch of own munit, civ, init|Milt op w explosn due to acc disch of own munit, civ, init +C2907159|T037|AB|Y37.241D|ICD10CM|Milt op w explosn due to acc disch of own munit, civ, subs|Milt op w explosn due to acc disch of own munit, civ, subs +C2907160|T037|AB|Y37.241S|ICD10CM|Milt op w explosn due to acc disch of own munit, civ, sqla|Milt op w explosn due to acc disch of own munit, civ, sqla +C2907161|T037|AB|Y37.25|ICD10CM|Military operations involving fragments from munitions|Military operations involving fragments from munitions +C2907161|T037|HT|Y37.25|ICD10CM|Military operations involving fragments from munitions|Military operations involving fragments from munitions +C2907162|T037|HT|Y37.250|ICD10CM|Military operations involving fragments from munitions, military personnel|Military operations involving fragments from munitions, military personnel +C2907162|T037|AB|Y37.250|ICD10CM|Milt op involving fragments from munitions, milt|Milt op involving fragments from munitions, milt +C2907163|T037|PT|Y37.250A|ICD10CM|Military operations involving fragments from munitions, military personnel, initial encounter|Military operations involving fragments from munitions, military personnel, initial encounter +C2907163|T037|AB|Y37.250A|ICD10CM|Milt op involving fragments from munitions, milt, init|Milt op involving fragments from munitions, milt, init +C2907164|T037|PT|Y37.250D|ICD10CM|Military operations involving fragments from munitions, military personnel, subsequent encounter|Military operations involving fragments from munitions, military personnel, subsequent encounter +C2907164|T037|AB|Y37.250D|ICD10CM|Milt op involving fragments from munitions, milt, subs|Milt op involving fragments from munitions, milt, subs +C2907165|T037|PT|Y37.250S|ICD10CM|Military operations involving fragments from munitions, military personnel, sequela|Military operations involving fragments from munitions, military personnel, sequela +C2907165|T037|AB|Y37.250S|ICD10CM|Milt op involving fragments from munitions, milt, sequela|Milt op involving fragments from munitions, milt, sequela +C2907166|T037|HT|Y37.251|ICD10CM|Military operations involving fragments from munitions, civilian|Military operations involving fragments from munitions, civilian +C2907166|T037|AB|Y37.251|ICD10CM|Milt op involving fragments from munitions, civilian|Milt op involving fragments from munitions, civilian +C2907167|T037|PT|Y37.251A|ICD10CM|Military operations involving fragments from munitions, civilian, initial encounter|Military operations involving fragments from munitions, civilian, initial encounter +C2907167|T037|AB|Y37.251A|ICD10CM|Milt op involving fragments from munitions, civilian, init|Milt op involving fragments from munitions, civilian, init +C2907168|T037|PT|Y37.251D|ICD10CM|Military operations involving fragments from munitions, civilian, subsequent encounter|Military operations involving fragments from munitions, civilian, subsequent encounter +C2907168|T037|AB|Y37.251D|ICD10CM|Milt op involving fragments from munitions, civilian, subs|Milt op involving fragments from munitions, civilian, subs +C2907169|T037|PT|Y37.251S|ICD10CM|Military operations involving fragments from munitions, civilian, sequela|Military operations involving fragments from munitions, civilian, sequela +C2907169|T037|AB|Y37.251S|ICD10CM|Milt op involving fragmt from munitions, civilian, sequela|Milt op involving fragmt from munitions, civilian, sequela +C2907173|T037|HT|Y37.26|ICD10CM|Military operations involving fragments of improvised explosive device [IED]|Military operations involving fragments of improvised explosive device [IED] +C2907170|T037|ET|Y37.26|ICD10CM|Military operations involving fragments of person-borne improvised explosive device [IED]|Military operations involving fragments of person-borne improvised explosive device [IED] +C2907171|T037|ET|Y37.26|ICD10CM|Military operations involving fragments of roadside improvised explosive device [IED]|Military operations involving fragments of roadside improvised explosive device [IED] +C2907172|T037|ET|Y37.26|ICD10CM|Military operations involving fragments of vehicle-borne improvised explosive device [IED]|Military operations involving fragments of vehicle-borne improvised explosive device [IED] +C2907173|T037|AB|Y37.26|ICD10CM|Milt op involving fragments of improvised explosive device|Milt op involving fragments of improvised explosive device +C2907174|T037|HT|Y37.260|ICD10CM|Military operations involving fragments of improvised explosive device [IED], military personnel|Military operations involving fragments of improvised explosive device [IED], military personnel +C2907174|T037|AB|Y37.260|ICD10CM|Milt op involving fragments of improv explosive device, milt|Milt op involving fragments of improv explosive device, milt +C2907175|T037|AB|Y37.260A|ICD10CM|Milt op w fragmt of improv explosv device, milt, init|Milt op w fragmt of improv explosv device, milt, init +C2907176|T037|AB|Y37.260D|ICD10CM|Milt op w fragmt of improv explosv device, milt, subs|Milt op w fragmt of improv explosv device, milt, subs +C2907177|T037|AB|Y37.260S|ICD10CM|Milt op w fragmt of improv explosv device, milt, sequela|Milt op w fragmt of improv explosv device, milt, sequela +C2907178|T037|HT|Y37.261|ICD10CM|Military operations involving fragments of improvised explosive device [IED], civilian|Military operations involving fragments of improvised explosive device [IED], civilian +C2907178|T037|AB|Y37.261|ICD10CM|Milt op involving fragmt of improv explosv device, civilian|Milt op involving fragmt of improv explosv device, civilian +C2907179|T037|AB|Y37.261A|ICD10CM|Milt op w fragmt of improv explosv device, civilian, init|Milt op w fragmt of improv explosv device, civilian, init +C2907180|T037|AB|Y37.261D|ICD10CM|Milt op w fragmt of improv explosv device, civilian, subs|Milt op w fragmt of improv explosv device, civilian, subs +C2907181|T037|PT|Y37.261S|ICD10CM|Military operations involving fragments of improvised explosive device [IED], civilian, sequela|Military operations involving fragments of improvised explosive device [IED], civilian, sequela +C2907181|T037|AB|Y37.261S|ICD10CM|Milt op w fragmt of improv explosv device, civilian, sequela|Milt op w fragmt of improv explosv device, civilian, sequela +C2907182|T037|AB|Y37.27|ICD10CM|Military operations involving fragments from weapons|Military operations involving fragments from weapons +C2907182|T037|HT|Y37.27|ICD10CM|Military operations involving fragments from weapons|Military operations involving fragments from weapons +C2907183|T037|HT|Y37.270|ICD10CM|Military operations involving fragments from weapons, military personnel|Military operations involving fragments from weapons, military personnel +C2907183|T037|AB|Y37.270|ICD10CM|Milt op involving fragments from weapons, military personnel|Milt op involving fragments from weapons, military personnel +C2907184|T037|PT|Y37.270A|ICD10CM|Military operations involving fragments from weapons, military personnel, initial encounter|Military operations involving fragments from weapons, military personnel, initial encounter +C2907184|T037|AB|Y37.270A|ICD10CM|Milt op involving fragments from weapons, milt, init|Milt op involving fragments from weapons, milt, init +C2907185|T037|PT|Y37.270D|ICD10CM|Military operations involving fragments from weapons, military personnel, subsequent encounter|Military operations involving fragments from weapons, military personnel, subsequent encounter +C2907185|T037|AB|Y37.270D|ICD10CM|Milt op involving fragments from weapons, milt, subs|Milt op involving fragments from weapons, milt, subs +C2907186|T037|PT|Y37.270S|ICD10CM|Military operations involving fragments from weapons, military personnel, sequela|Military operations involving fragments from weapons, military personnel, sequela +C2907186|T037|AB|Y37.270S|ICD10CM|Milt op involving fragments from weapons, milt, sequela|Milt op involving fragments from weapons, milt, sequela +C2907187|T037|HT|Y37.271|ICD10CM|Military operations involving fragments from weapons, civilian|Military operations involving fragments from weapons, civilian +C2907187|T037|AB|Y37.271|ICD10CM|Milt op involving fragments from weapons, civilian|Milt op involving fragments from weapons, civilian +C2907188|T037|PT|Y37.271A|ICD10CM|Military operations involving fragments from weapons, civilian, initial encounter|Military operations involving fragments from weapons, civilian, initial encounter +C2907188|T037|AB|Y37.271A|ICD10CM|Milt op involving fragments from weapons, civilian, init|Milt op involving fragments from weapons, civilian, init +C2907189|T037|PT|Y37.271D|ICD10CM|Military operations involving fragments from weapons, civilian, subsequent encounter|Military operations involving fragments from weapons, civilian, subsequent encounter +C2907189|T037|AB|Y37.271D|ICD10CM|Milt op involving fragments from weapons, civilian, subs|Milt op involving fragments from weapons, civilian, subs +C2907190|T037|PT|Y37.271S|ICD10CM|Military operations involving fragments from weapons, civilian, sequela|Military operations involving fragments from weapons, civilian, sequela +C2907190|T037|AB|Y37.271S|ICD10CM|Milt op involving fragments from weapons, civilian, sequela|Milt op involving fragments from weapons, civilian, sequela +C2907191|T037|ET|Y37.29|ICD10CM|Military operations involving explosion of grenade|Military operations involving explosion of grenade +C2907192|T037|ET|Y37.29|ICD10CM|Military operations involving explosions of land mine|Military operations involving explosions of land mine +C2907105|T037|HT|Y37.29|ICD10CM|Military operations involving other explosions and fragments|Military operations involving other explosions and fragments +C2907105|T037|AB|Y37.29|ICD10CM|Military operations involving other explosions and fragments|Military operations involving other explosions and fragments +C2907193|T037|ET|Y37.29|ICD10CM|Military operations involving shrapnel NOS|Military operations involving shrapnel NOS +C2907194|T037|HT|Y37.290|ICD10CM|Military operations involving other explosions and fragments, military personnel|Military operations involving other explosions and fragments, military personnel +C2907194|T037|AB|Y37.290|ICD10CM|Milt op involving oth explosions and fragments, milt|Milt op involving oth explosions and fragments, milt +C2907195|T037|PT|Y37.290A|ICD10CM|Military operations involving other explosions and fragments, military personnel, initial encounter|Military operations involving other explosions and fragments, military personnel, initial encounter +C2907195|T037|AB|Y37.290A|ICD10CM|Milt op involving oth explosions and fragments, milt, init|Milt op involving oth explosions and fragments, milt, init +C2907196|T037|AB|Y37.290D|ICD10CM|Milt op involving oth explosions and fragments, milt, subs|Milt op involving oth explosions and fragments, milt, subs +C2907197|T037|PT|Y37.290S|ICD10CM|Military operations involving other explosions and fragments, military personnel, sequela|Military operations involving other explosions and fragments, military personnel, sequela +C2907197|T037|AB|Y37.290S|ICD10CM|Milt op involving oth explosn and fragments, milt, sequela|Milt op involving oth explosn and fragments, milt, sequela +C2907198|T037|HT|Y37.291|ICD10CM|Military operations involving other explosions and fragments, civilian|Military operations involving other explosions and fragments, civilian +C2907198|T037|AB|Y37.291|ICD10CM|Milt op involving oth explosions and fragments, civilian|Milt op involving oth explosions and fragments, civilian +C2907199|T037|PT|Y37.291A|ICD10CM|Military operations involving other explosions and fragments, civilian, initial encounter|Military operations involving other explosions and fragments, civilian, initial encounter +C2907199|T037|AB|Y37.291A|ICD10CM|Milt op involving oth explosn and fragments, civilian, init|Milt op involving oth explosn and fragments, civilian, init +C2907200|T037|PT|Y37.291D|ICD10CM|Military operations involving other explosions and fragments, civilian, subsequent encounter|Military operations involving other explosions and fragments, civilian, subsequent encounter +C2907200|T037|AB|Y37.291D|ICD10CM|Milt op involving oth explosn and fragments, civilian, subs|Milt op involving oth explosn and fragments, civilian, subs +C2907201|T037|PT|Y37.291S|ICD10CM|Military operations involving other explosions and fragments, civilian, sequela|Military operations involving other explosions and fragments, civilian, sequela +C2907201|T037|AB|Y37.291S|ICD10CM|Milt op involving oth explosn and fragmt, civilian, sequela|Milt op involving oth explosn and fragmt, civilian, sequela +C2907203|T037|AB|Y37.3|ICD10CM|Military operations involving fire/hot subst|Military operations involving fire/hot subst +C2907203|T037|HT|Y37.3|ICD10CM|Military operations involving fires, conflagrations and hot substances|Military operations involving fires, conflagrations and hot substances +C2907202|T037|ET|Y37.3|ICD10CM|Military operations involving smoke, fumes, and heat from fires, conflagrations and hot substances|Military operations involving smoke, fumes, and heat from fires, conflagrations and hot substances +C2907204|T037|AB|Y37.30|ICD10CM|Military operations involving unsp fire/conflagr/hot subst|Military operations involving unsp fire/conflagr/hot subst +C2907204|T037|HT|Y37.30|ICD10CM|Military operations involving unspecified fire, conflagration and hot substance|Military operations involving unspecified fire, conflagration and hot substance +C2907205|T037|HT|Y37.300|ICD10CM|Military operations involving unspecified fire, conflagration and hot substance, military personnel|Military operations involving unspecified fire, conflagration and hot substance, military personnel +C2907205|T037|AB|Y37.300|ICD10CM|Milt op involving unsp fire/conflagr/hot subst, milt|Milt op involving unsp fire/conflagr/hot subst, milt +C2907206|T037|AB|Y37.300A|ICD10CM|Milt op involving unsp fire/conflagr/hot subst, milt, init|Milt op involving unsp fire/conflagr/hot subst, milt, init +C2907207|T037|AB|Y37.300D|ICD10CM|Milt op involving unsp fire/conflagr/hot subst, milt, subs|Milt op involving unsp fire/conflagr/hot subst, milt, subs +C2907208|T037|AB|Y37.300S|ICD10CM|Milt op w unsp fire/conflagr/hot subst, milt, sequela|Milt op w unsp fire/conflagr/hot subst, milt, sequela +C2907209|T037|HT|Y37.301|ICD10CM|Military operations involving unspecified fire, conflagration and hot substance, civilian|Military operations involving unspecified fire, conflagration and hot substance, civilian +C2907209|T037|AB|Y37.301|ICD10CM|Milt op involving unsp fire/conflagr/hot subst, civilian|Milt op involving unsp fire/conflagr/hot subst, civilian +C2907210|T037|AB|Y37.301A|ICD10CM|Milt op w unsp fire/conflagr/hot subst, civilian, init|Milt op w unsp fire/conflagr/hot subst, civilian, init +C2907211|T037|AB|Y37.301D|ICD10CM|Milt op w unsp fire/conflagr/hot subst, civilian, subs|Milt op w unsp fire/conflagr/hot subst, civilian, subs +C2907212|T037|PT|Y37.301S|ICD10CM|Military operations involving unspecified fire, conflagration and hot substance, civilian, sequela|Military operations involving unspecified fire, conflagration and hot substance, civilian, sequela +C2907212|T037|AB|Y37.301S|ICD10CM|Milt op w unsp fire/conflagr/hot subst, civilian, sequela|Milt op w unsp fire/conflagr/hot subst, civilian, sequela +C2907215|T037|AB|Y37.31|ICD10CM|Military operations involving gasoline bomb|Military operations involving gasoline bomb +C2907215|T037|HT|Y37.31|ICD10CM|Military operations involving gasoline bomb|Military operations involving gasoline bomb +C2907213|T037|ET|Y37.31|ICD10CM|Military operations involving incendiary bomb|Military operations involving incendiary bomb +C2907214|T037|ET|Y37.31|ICD10CM|Military operations involving petrol bomb|Military operations involving petrol bomb +C2907216|T037|HT|Y37.310|ICD10CM|Military operations involving gasoline bomb, military personnel|Military operations involving gasoline bomb, military personnel +C2907216|T037|AB|Y37.310|ICD10CM|Milt op involving gasoline bomb, military personnel|Milt op involving gasoline bomb, military personnel +C2907217|T037|PT|Y37.310A|ICD10CM|Military operations involving gasoline bomb, military personnel, initial encounter|Military operations involving gasoline bomb, military personnel, initial encounter +C2907217|T037|AB|Y37.310A|ICD10CM|Milt op involving gasoline bomb, military personnel, init|Milt op involving gasoline bomb, military personnel, init +C2907218|T037|PT|Y37.310D|ICD10CM|Military operations involving gasoline bomb, military personnel, subsequent encounter|Military operations involving gasoline bomb, military personnel, subsequent encounter +C2907218|T037|AB|Y37.310D|ICD10CM|Milt op involving gasoline bomb, military personnel, subs|Milt op involving gasoline bomb, military personnel, subs +C2907219|T037|PT|Y37.310S|ICD10CM|Military operations involving gasoline bomb, military personnel, sequela|Military operations involving gasoline bomb, military personnel, sequela +C2907219|T037|AB|Y37.310S|ICD10CM|Milt op involving gasoline bomb, military personnel, sequela|Milt op involving gasoline bomb, military personnel, sequela +C2907220|T037|AB|Y37.311|ICD10CM|Military operations involving gasoline bomb, civilian|Military operations involving gasoline bomb, civilian +C2907220|T037|HT|Y37.311|ICD10CM|Military operations involving gasoline bomb, civilian|Military operations involving gasoline bomb, civilian +C2907221|T037|AB|Y37.311A|ICD10CM|Military operations involving gasoline bomb, civilian, init|Military operations involving gasoline bomb, civilian, init +C2907221|T037|PT|Y37.311A|ICD10CM|Military operations involving gasoline bomb, civilian, initial encounter|Military operations involving gasoline bomb, civilian, initial encounter +C2907222|T037|AB|Y37.311D|ICD10CM|Military operations involving gasoline bomb, civilian, subs|Military operations involving gasoline bomb, civilian, subs +C2907222|T037|PT|Y37.311D|ICD10CM|Military operations involving gasoline bomb, civilian, subsequent encounter|Military operations involving gasoline bomb, civilian, subsequent encounter +C2907223|T037|PT|Y37.311S|ICD10CM|Military operations involving gasoline bomb, civilian, sequela|Military operations involving gasoline bomb, civilian, sequela +C2907223|T037|AB|Y37.311S|ICD10CM|Milt op involving gasoline bomb, civilian, sequela|Milt op involving gasoline bomb, civilian, sequela +C2907224|T037|AB|Y37.32|ICD10CM|Military operations involving incendiary bullet|Military operations involving incendiary bullet +C2907224|T037|HT|Y37.32|ICD10CM|Military operations involving incendiary bullet|Military operations involving incendiary bullet +C2907225|T037|HT|Y37.320|ICD10CM|Military operations involving incendiary bullet, military personnel|Military operations involving incendiary bullet, military personnel +C2907225|T037|AB|Y37.320|ICD10CM|Milt op involving incendiary bullet, military personnel|Milt op involving incendiary bullet, military personnel +C2907226|T037|PT|Y37.320A|ICD10CM|Military operations involving incendiary bullet, military personnel, initial encounter|Military operations involving incendiary bullet, military personnel, initial encounter +C2907226|T037|AB|Y37.320A|ICD10CM|Milt op involving incendiary bullet, milt, init|Milt op involving incendiary bullet, milt, init +C2907227|T037|PT|Y37.320D|ICD10CM|Military operations involving incendiary bullet, military personnel, subsequent encounter|Military operations involving incendiary bullet, military personnel, subsequent encounter +C2907227|T037|AB|Y37.320D|ICD10CM|Milt op involving incendiary bullet, milt, subs|Milt op involving incendiary bullet, milt, subs +C2907228|T037|PT|Y37.320S|ICD10CM|Military operations involving incendiary bullet, military personnel, sequela|Military operations involving incendiary bullet, military personnel, sequela +C2907228|T037|AB|Y37.320S|ICD10CM|Milt op involving incendiary bullet, milt, sequela|Milt op involving incendiary bullet, milt, sequela +C2907229|T037|AB|Y37.321|ICD10CM|Military operations involving incendiary bullet, civilian|Military operations involving incendiary bullet, civilian +C2907229|T037|HT|Y37.321|ICD10CM|Military operations involving incendiary bullet, civilian|Military operations involving incendiary bullet, civilian +C2907230|T037|PT|Y37.321A|ICD10CM|Military operations involving incendiary bullet, civilian, initial encounter|Military operations involving incendiary bullet, civilian, initial encounter +C2907230|T037|AB|Y37.321A|ICD10CM|Milt op involving incendiary bullet, civilian, init|Milt op involving incendiary bullet, civilian, init +C2907231|T037|PT|Y37.321D|ICD10CM|Military operations involving incendiary bullet, civilian, subsequent encounter|Military operations involving incendiary bullet, civilian, subsequent encounter +C2907231|T037|AB|Y37.321D|ICD10CM|Milt op involving incendiary bullet, civilian, subs|Milt op involving incendiary bullet, civilian, subs +C2907232|T037|PT|Y37.321S|ICD10CM|Military operations involving incendiary bullet, civilian, sequela|Military operations involving incendiary bullet, civilian, sequela +C2907232|T037|AB|Y37.321S|ICD10CM|Milt op involving incendiary bullet, civilian, sequela|Milt op involving incendiary bullet, civilian, sequela +C2907233|T037|AB|Y37.33|ICD10CM|Military operations involving flamethrower|Military operations involving flamethrower +C2907233|T037|HT|Y37.33|ICD10CM|Military operations involving flamethrower|Military operations involving flamethrower +C2907234|T037|HT|Y37.330|ICD10CM|Military operations involving flamethrower, military personnel|Military operations involving flamethrower, military personnel +C2907234|T037|AB|Y37.330|ICD10CM|Milt op involving flamethrower, military personnel|Milt op involving flamethrower, military personnel +C2907235|T037|PT|Y37.330A|ICD10CM|Military operations involving flamethrower, military personnel, initial encounter|Military operations involving flamethrower, military personnel, initial encounter +C2907235|T037|AB|Y37.330A|ICD10CM|Milt op involving flamethrower, military personnel, init|Milt op involving flamethrower, military personnel, init +C2907236|T037|PT|Y37.330D|ICD10CM|Military operations involving flamethrower, military personnel, subsequent encounter|Military operations involving flamethrower, military personnel, subsequent encounter +C2907236|T037|AB|Y37.330D|ICD10CM|Milt op involving flamethrower, military personnel, subs|Milt op involving flamethrower, military personnel, subs +C2907237|T037|PT|Y37.330S|ICD10CM|Military operations involving flamethrower, military personnel, sequela|Military operations involving flamethrower, military personnel, sequela +C2907237|T037|AB|Y37.330S|ICD10CM|Milt op involving flamethrower, military personnel, sequela|Milt op involving flamethrower, military personnel, sequela +C2907238|T037|AB|Y37.331|ICD10CM|Military operations involving flamethrower, civilian|Military operations involving flamethrower, civilian +C2907238|T037|HT|Y37.331|ICD10CM|Military operations involving flamethrower, civilian|Military operations involving flamethrower, civilian +C2907239|T037|AB|Y37.331A|ICD10CM|Military operations involving flamethrower, civilian, init|Military operations involving flamethrower, civilian, init +C2907239|T037|PT|Y37.331A|ICD10CM|Military operations involving flamethrower, civilian, initial encounter|Military operations involving flamethrower, civilian, initial encounter +C2907240|T037|AB|Y37.331D|ICD10CM|Military operations involving flamethrower, civilian, subs|Military operations involving flamethrower, civilian, subs +C2907240|T037|PT|Y37.331D|ICD10CM|Military operations involving flamethrower, civilian, subsequent encounter|Military operations involving flamethrower, civilian, subsequent encounter +C2907241|T037|PT|Y37.331S|ICD10CM|Military operations involving flamethrower, civilian, sequela|Military operations involving flamethrower, civilian, sequela +C2907241|T037|AB|Y37.331S|ICD10CM|Milt op involving flamethrower, civilian, sequela|Milt op involving flamethrower, civilian, sequela +C2907242|T037|AB|Y37.39|ICD10CM|Military operations involving oth fire/hot subst|Military operations involving oth fire/hot subst +C2907242|T037|HT|Y37.39|ICD10CM|Military operations involving other fires, conflagrations and hot substances|Military operations involving other fires, conflagrations and hot substances +C2907243|T037|HT|Y37.390|ICD10CM|Military operations involving other fires, conflagrations and hot substances, military personnel|Military operations involving other fires, conflagrations and hot substances, military personnel +C2907243|T037|AB|Y37.390|ICD10CM|Milt op involving oth fire/hot subst, military personnel|Milt op involving oth fire/hot subst, military personnel +C2907244|T037|AB|Y37.390A|ICD10CM|Milt op involving oth fire/hot subst, milt, init|Milt op involving oth fire/hot subst, milt, init +C2907245|T037|AB|Y37.390D|ICD10CM|Milt op involving oth fire/hot subst, milt, subs|Milt op involving oth fire/hot subst, milt, subs +C2907246|T037|AB|Y37.390S|ICD10CM|Milt op involving oth fire/hot subst, milt, sequela|Milt op involving oth fire/hot subst, milt, sequela +C2907247|T037|AB|Y37.391|ICD10CM|Military operations involving oth fire/hot subst, civilian|Military operations involving oth fire/hot subst, civilian +C2907247|T037|HT|Y37.391|ICD10CM|Military operations involving other fires, conflagrations and hot substances, civilian|Military operations involving other fires, conflagrations and hot substances, civilian +C2907248|T037|AB|Y37.391A|ICD10CM|Milt op involving oth fire/hot subst, civilian, init|Milt op involving oth fire/hot subst, civilian, init +C2907249|T037|AB|Y37.391D|ICD10CM|Milt op involving oth fire/hot subst, civilian, subs|Milt op involving oth fire/hot subst, civilian, subs +C2907250|T037|PT|Y37.391S|ICD10CM|Military operations involving other fires, conflagrations and hot substances, civilian, sequela|Military operations involving other fires, conflagrations and hot substances, civilian, sequela +C2907250|T037|AB|Y37.391S|ICD10CM|Milt op involving oth fire/hot subst, civilian, sequela|Milt op involving oth fire/hot subst, civilian, sequela +C2907251|T037|HT|Y37.4|ICD10CM|Military operations involving firearm discharge and other forms of conventional warfare|Military operations involving firearm discharge and other forms of conventional warfare +C2907251|T037|AB|Y37.4|ICD10CM|Milt op involving firearm discharge and oth conventl warfare|Milt op involving firearm discharge and oth conventl warfare +C2907252|T037|AB|Y37.41|ICD10CM|Military operations involving rubber bullets|Military operations involving rubber bullets +C2907252|T037|HT|Y37.41|ICD10CM|Military operations involving rubber bullets|Military operations involving rubber bullets +C2907253|T037|HT|Y37.410|ICD10CM|Military operations involving rubber bullets, military personnel|Military operations involving rubber bullets, military personnel +C2907253|T037|AB|Y37.410|ICD10CM|Milt op involving rubber bullets, military personnel|Milt op involving rubber bullets, military personnel +C2907254|T037|PT|Y37.410A|ICD10CM|Military operations involving rubber bullets, military personnel, initial encounter|Military operations involving rubber bullets, military personnel, initial encounter +C2907254|T037|AB|Y37.410A|ICD10CM|Milt op involving rubber bullets, military personnel, init|Milt op involving rubber bullets, military personnel, init +C2907255|T037|PT|Y37.410D|ICD10CM|Military operations involving rubber bullets, military personnel, subsequent encounter|Military operations involving rubber bullets, military personnel, subsequent encounter +C2907255|T037|AB|Y37.410D|ICD10CM|Milt op involving rubber bullets, military personnel, subs|Milt op involving rubber bullets, military personnel, subs +C2907256|T037|PT|Y37.410S|ICD10CM|Military operations involving rubber bullets, military personnel, sequela|Military operations involving rubber bullets, military personnel, sequela +C2907256|T037|AB|Y37.410S|ICD10CM|Milt op involving rubber bullets, milt, sequela|Milt op involving rubber bullets, milt, sequela +C2907257|T037|AB|Y37.411|ICD10CM|Military operations involving rubber bullets, civilian|Military operations involving rubber bullets, civilian +C2907257|T037|HT|Y37.411|ICD10CM|Military operations involving rubber bullets, civilian|Military operations involving rubber bullets, civilian +C2907258|T037|AB|Y37.411A|ICD10CM|Military operations involving rubber bullets, civilian, init|Military operations involving rubber bullets, civilian, init +C2907258|T037|PT|Y37.411A|ICD10CM|Military operations involving rubber bullets, civilian, initial encounter|Military operations involving rubber bullets, civilian, initial encounter +C2907259|T037|AB|Y37.411D|ICD10CM|Military operations involving rubber bullets, civilian, subs|Military operations involving rubber bullets, civilian, subs +C2907259|T037|PT|Y37.411D|ICD10CM|Military operations involving rubber bullets, civilian, subsequent encounter|Military operations involving rubber bullets, civilian, subsequent encounter +C2907260|T037|PT|Y37.411S|ICD10CM|Military operations involving rubber bullets, civilian, sequela|Military operations involving rubber bullets, civilian, sequela +C2907260|T037|AB|Y37.411S|ICD10CM|Milt op involving rubber bullets, civilian, sequela|Milt op involving rubber bullets, civilian, sequela +C2907261|T037|AB|Y37.42|ICD10CM|Military operations involving firearms pellets|Military operations involving firearms pellets +C2907261|T037|HT|Y37.42|ICD10CM|Military operations involving firearms pellets|Military operations involving firearms pellets +C2907262|T037|HT|Y37.420|ICD10CM|Military operations involving firearms pellets, military personnel|Military operations involving firearms pellets, military personnel +C2907262|T037|AB|Y37.420|ICD10CM|Milt op involving firearms pellets, military personnel|Milt op involving firearms pellets, military personnel +C2907263|T037|PT|Y37.420A|ICD10CM|Military operations involving firearms pellets, military personnel, initial encounter|Military operations involving firearms pellets, military personnel, initial encounter +C2907263|T037|AB|Y37.420A|ICD10CM|Milt op involving firearms pellets, military personnel, init|Milt op involving firearms pellets, military personnel, init +C2907264|T037|PT|Y37.420D|ICD10CM|Military operations involving firearms pellets, military personnel, subsequent encounter|Military operations involving firearms pellets, military personnel, subsequent encounter +C2907264|T037|AB|Y37.420D|ICD10CM|Milt op involving firearms pellets, military personnel, subs|Milt op involving firearms pellets, military personnel, subs +C2907265|T037|PT|Y37.420S|ICD10CM|Military operations involving firearms pellets, military personnel, sequela|Military operations involving firearms pellets, military personnel, sequela +C2907265|T037|AB|Y37.420S|ICD10CM|Milt op involving firearms pellets, milt, sequela|Milt op involving firearms pellets, milt, sequela +C2907266|T037|AB|Y37.421|ICD10CM|Military operations involving firearms pellets, civilian|Military operations involving firearms pellets, civilian +C2907266|T037|HT|Y37.421|ICD10CM|Military operations involving firearms pellets, civilian|Military operations involving firearms pellets, civilian +C2907267|T037|PT|Y37.421A|ICD10CM|Military operations involving firearms pellets, civilian, initial encounter|Military operations involving firearms pellets, civilian, initial encounter +C2907267|T037|AB|Y37.421A|ICD10CM|Milt op involving firearms pellets, civilian, init|Milt op involving firearms pellets, civilian, init +C2907268|T037|PT|Y37.421D|ICD10CM|Military operations involving firearms pellets, civilian, subsequent encounter|Military operations involving firearms pellets, civilian, subsequent encounter +C2907268|T037|AB|Y37.421D|ICD10CM|Milt op involving firearms pellets, civilian, subs|Milt op involving firearms pellets, civilian, subs +C2907269|T037|PT|Y37.421S|ICD10CM|Military operations involving firearms pellets, civilian, sequela|Military operations involving firearms pellets, civilian, sequela +C2907269|T037|AB|Y37.421S|ICD10CM|Milt op involving firearms pellets, civilian, sequela|Milt op involving firearms pellets, civilian, sequela +C2907270|T037|ET|Y37.43|ICD10CM|Military operations involving bullets NOS|Military operations involving bullets NOS +C2907271|T037|AB|Y37.43|ICD10CM|Military operations involving other firearms discharge|Military operations involving other firearms discharge +C2907271|T037|HT|Y37.43|ICD10CM|Military operations involving other firearms discharge|Military operations involving other firearms discharge +C2907272|T037|HT|Y37.430|ICD10CM|Military operations involving other firearms discharge, military personnel|Military operations involving other firearms discharge, military personnel +C2907272|T037|AB|Y37.430|ICD10CM|Milt op involving oth firearms discharge, military personnel|Milt op involving oth firearms discharge, military personnel +C2907273|T037|PT|Y37.430A|ICD10CM|Military operations involving other firearms discharge, military personnel, initial encounter|Military operations involving other firearms discharge, military personnel, initial encounter +C2907273|T037|AB|Y37.430A|ICD10CM|Milt op involving oth firearms discharge, milt, init|Milt op involving oth firearms discharge, milt, init +C2907274|T037|PT|Y37.430D|ICD10CM|Military operations involving other firearms discharge, military personnel, subsequent encounter|Military operations involving other firearms discharge, military personnel, subsequent encounter +C2907274|T037|AB|Y37.430D|ICD10CM|Milt op involving oth firearms discharge, milt, subs|Milt op involving oth firearms discharge, milt, subs +C2907275|T037|PT|Y37.430S|ICD10CM|Military operations involving other firearms discharge, military personnel, sequela|Military operations involving other firearms discharge, military personnel, sequela +C2907275|T037|AB|Y37.430S|ICD10CM|Milt op involving oth firearms discharge, milt, sequela|Milt op involving oth firearms discharge, milt, sequela +C2907276|T037|HT|Y37.431|ICD10CM|Military operations involving other firearms discharge, civilian|Military operations involving other firearms discharge, civilian +C2907276|T037|AB|Y37.431|ICD10CM|Milt op involving oth firearms discharge, civilian|Milt op involving oth firearms discharge, civilian +C2907277|T037|PT|Y37.431A|ICD10CM|Military operations involving other firearms discharge, civilian, initial encounter|Military operations involving other firearms discharge, civilian, initial encounter +C2907277|T037|AB|Y37.431A|ICD10CM|Milt op involving oth firearms discharge, civilian, init|Milt op involving oth firearms discharge, civilian, init +C2907278|T037|PT|Y37.431D|ICD10CM|Military operations involving other firearms discharge, civilian, subsequent encounter|Military operations involving other firearms discharge, civilian, subsequent encounter +C2907278|T037|AB|Y37.431D|ICD10CM|Milt op involving oth firearms discharge, civilian, subs|Milt op involving oth firearms discharge, civilian, subs +C2907279|T037|PT|Y37.431S|ICD10CM|Military operations involving other firearms discharge, civilian, sequela|Military operations involving other firearms discharge, civilian, sequela +C2907279|T037|AB|Y37.431S|ICD10CM|Milt op involving oth firearms discharge, civilian, sequela|Milt op involving oth firearms discharge, civilian, sequela +C2907280|T037|AB|Y37.44|ICD10CM|Military operations involving unarmed hand to hand combat|Military operations involving unarmed hand to hand combat +C2907280|T037|HT|Y37.44|ICD10CM|Military operations involving unarmed hand to hand combat|Military operations involving unarmed hand to hand combat +C2907281|T037|HT|Y37.440|ICD10CM|Military operations involving unarmed hand to hand combat, military personnel|Military operations involving unarmed hand to hand combat, military personnel +C2907281|T037|AB|Y37.440|ICD10CM|Milt op involving unarmed hand to hand combat, milt|Milt op involving unarmed hand to hand combat, milt +C2907282|T037|PT|Y37.440A|ICD10CM|Military operations involving unarmed hand to hand combat, military personnel, initial encounter|Military operations involving unarmed hand to hand combat, military personnel, initial encounter +C2907282|T037|AB|Y37.440A|ICD10CM|Milt op involving unarmed hand to hand combat, milt, init|Milt op involving unarmed hand to hand combat, milt, init +C2907283|T037|PT|Y37.440D|ICD10CM|Military operations involving unarmed hand to hand combat, military personnel, subsequent encounter|Military operations involving unarmed hand to hand combat, military personnel, subsequent encounter +C2907283|T037|AB|Y37.440D|ICD10CM|Milt op involving unarmed hand to hand combat, milt, subs|Milt op involving unarmed hand to hand combat, milt, subs +C2907284|T037|PT|Y37.440S|ICD10CM|Military operations involving unarmed hand to hand combat, military personnel, sequela|Military operations involving unarmed hand to hand combat, military personnel, sequela +C2907284|T037|AB|Y37.440S|ICD10CM|Milt op involving unarmed hand to hand combat, milt, sequela|Milt op involving unarmed hand to hand combat, milt, sequela +C2907285|T037|HT|Y37.441|ICD10CM|Military operations involving unarmed hand to hand combat, civilian|Military operations involving unarmed hand to hand combat, civilian +C2907285|T037|AB|Y37.441|ICD10CM|Milt op involving unarmed hand to hand combat, civilian|Milt op involving unarmed hand to hand combat, civilian +C2907286|T037|PT|Y37.441A|ICD10CM|Military operations involving unarmed hand to hand combat, civilian, initial encounter|Military operations involving unarmed hand to hand combat, civilian, initial encounter +C2907286|T037|AB|Y37.441A|ICD10CM|Milt op w unarmed hand to hand combat, civilian, init|Milt op w unarmed hand to hand combat, civilian, init +C2907287|T037|PT|Y37.441D|ICD10CM|Military operations involving unarmed hand to hand combat, civilian, subsequent encounter|Military operations involving unarmed hand to hand combat, civilian, subsequent encounter +C2907287|T037|AB|Y37.441D|ICD10CM|Milt op w unarmed hand to hand combat, civilian, subs|Milt op w unarmed hand to hand combat, civilian, subs +C2907288|T037|PT|Y37.441S|ICD10CM|Military operations involving unarmed hand to hand combat, civilian, sequela|Military operations involving unarmed hand to hand combat, civilian, sequela +C2907288|T037|AB|Y37.441S|ICD10CM|Milt op w unarmed hand to hand combat, civilian, sequela|Milt op w unarmed hand to hand combat, civilian, sequela +C2907289|T037|HT|Y37.45|ICD10CM|Military operations involving combat using blunt or piercing object|Military operations involving combat using blunt or piercing object +C2907289|T037|AB|Y37.45|ICD10CM|Milt op involving combat using blunt or piercing object|Milt op involving combat using blunt or piercing object +C2907290|T037|HT|Y37.450|ICD10CM|Military operations involving combat using blunt or piercing object, military personnel|Military operations involving combat using blunt or piercing object, military personnel +C2907290|T037|AB|Y37.450|ICD10CM|Milt op involving combat using blunt/pierc object, milt|Milt op involving combat using blunt/pierc object, milt +C2907291|T037|AB|Y37.450A|ICD10CM|Milt op w combat using blunt/pierc object, milt, init|Milt op w combat using blunt/pierc object, milt, init +C2907292|T037|AB|Y37.450D|ICD10CM|Milt op w combat using blunt/pierc object, milt, subs|Milt op w combat using blunt/pierc object, milt, subs +C2907293|T037|PT|Y37.450S|ICD10CM|Military operations involving combat using blunt or piercing object, military personnel, sequela|Military operations involving combat using blunt or piercing object, military personnel, sequela +C2907293|T037|AB|Y37.450S|ICD10CM|Milt op w combat using blunt/pierc object, milt, sequela|Milt op w combat using blunt/pierc object, milt, sequela +C2907294|T037|HT|Y37.451|ICD10CM|Military operations involving combat using blunt or piercing object, civilian|Military operations involving combat using blunt or piercing object, civilian +C2907294|T037|AB|Y37.451|ICD10CM|Milt op involving combat using blunt/pierc object, civilian|Milt op involving combat using blunt/pierc object, civilian +C2907295|T037|PT|Y37.451A|ICD10CM|Military operations involving combat using blunt or piercing object, civilian, initial encounter|Military operations involving combat using blunt or piercing object, civilian, initial encounter +C2907295|T037|AB|Y37.451A|ICD10CM|Milt op w combat using blunt/pierc object, civilian, init|Milt op w combat using blunt/pierc object, civilian, init +C2907296|T037|PT|Y37.451D|ICD10CM|Military operations involving combat using blunt or piercing object, civilian, subsequent encounter|Military operations involving combat using blunt or piercing object, civilian, subsequent encounter +C2907296|T037|AB|Y37.451D|ICD10CM|Milt op w combat using blunt/pierc object, civilian, subs|Milt op w combat using blunt/pierc object, civilian, subs +C2907297|T037|PT|Y37.451S|ICD10CM|Military operations involving combat using blunt or piercing object, civilian, sequela|Military operations involving combat using blunt or piercing object, civilian, sequela +C2907297|T037|AB|Y37.451S|ICD10CM|Milt op w combat using blunt/pierc object, civilian, sequela|Milt op w combat using blunt/pierc object, civilian, sequela +C2907298|T037|HT|Y37.46|ICD10CM|Military operations involving intentional restriction of air and airway|Military operations involving intentional restriction of air and airway +C2907298|T037|AB|Y37.46|ICD10CM|Milt op involving intentional restriction of air and airway|Milt op involving intentional restriction of air and airway +C2907299|T037|HT|Y37.460|ICD10CM|Military operations involving intentional restriction of air and airway, military personnel|Military operations involving intentional restriction of air and airway, military personnel +C2907299|T037|AB|Y37.460|ICD10CM|Milt op involving intentional restriction of air/airwy, milt|Milt op involving intentional restriction of air/airwy, milt +C2907300|T037|AB|Y37.460A|ICD10CM|Milt op involving intentl restrict of air/airwy, milt, init|Milt op involving intentl restrict of air/airwy, milt, init +C2907301|T037|AB|Y37.460D|ICD10CM|Milt op involving intentl restrict of air/airwy, milt, subs|Milt op involving intentl restrict of air/airwy, milt, subs +C2907302|T037|PT|Y37.460S|ICD10CM|Military operations involving intentional restriction of air and airway, military personnel, sequela|Military operations involving intentional restriction of air and airway, military personnel, sequela +C2907302|T037|AB|Y37.460S|ICD10CM|Milt op w intentl restrict of air/airwy, milt, sequela|Milt op w intentl restrict of air/airwy, milt, sequela +C2907303|T037|HT|Y37.461|ICD10CM|Military operations involving intentional restriction of air and airway, civilian|Military operations involving intentional restriction of air and airway, civilian +C2907303|T037|AB|Y37.461|ICD10CM|Milt op involving intentl restriction of air/airwy, civilian|Milt op involving intentl restriction of air/airwy, civilian +C2907304|T037|PT|Y37.461A|ICD10CM|Military operations involving intentional restriction of air and airway, civilian, initial encounter|Military operations involving intentional restriction of air and airway, civilian, initial encounter +C2907304|T037|AB|Y37.461A|ICD10CM|Milt op w intentl restrict of air/airwy, civilian, init|Milt op w intentl restrict of air/airwy, civilian, init +C2907305|T037|AB|Y37.461D|ICD10CM|Milt op w intentl restrict of air/airwy, civilian, subs|Milt op w intentl restrict of air/airwy, civilian, subs +C2907306|T037|PT|Y37.461S|ICD10CM|Military operations involving intentional restriction of air and airway, civilian, sequela|Military operations involving intentional restriction of air and airway, civilian, sequela +C2907306|T037|AB|Y37.461S|ICD10CM|Milt op w intentl restrict of air/airwy, civilian, sequela|Milt op w intentl restrict of air/airwy, civilian, sequela +C2907307|T037|HT|Y37.47|ICD10CM|Military operations involving unintentional restriction of air and airway|Military operations involving unintentional restriction of air and airway +C2907307|T037|AB|Y37.47|ICD10CM|Milt op involving unintentional restriction of air/airwy|Milt op involving unintentional restriction of air/airwy +C2907308|T037|HT|Y37.470|ICD10CM|Military operations involving unintentional restriction of air and airway, military personnel|Military operations involving unintentional restriction of air and airway, military personnel +C2907308|T037|AB|Y37.470|ICD10CM|Milt op involving unintent restriction of air/airwy, milt|Milt op involving unintent restriction of air/airwy, milt +C2907309|T037|AB|Y37.470A|ICD10CM|Milt op involving unintent restrict of air/airwy, milt, init|Milt op involving unintent restrict of air/airwy, milt, init +C2907310|T037|AB|Y37.470D|ICD10CM|Milt op involving unintent restrict of air/airwy, milt, subs|Milt op involving unintent restrict of air/airwy, milt, subs +C2907311|T037|AB|Y37.470S|ICD10CM|Milt op w unintent restrict of air/airwy, milt, sequela|Milt op w unintent restrict of air/airwy, milt, sequela +C2907312|T037|HT|Y37.471|ICD10CM|Military operations involving unintentional restriction of air and airway, civilian|Military operations involving unintentional restriction of air and airway, civilian +C2907312|T037|AB|Y37.471|ICD10CM|Milt op involving unintent restrict of air/airwy, civilian|Milt op involving unintent restrict of air/airwy, civilian +C2907313|T037|AB|Y37.471A|ICD10CM|Milt op w unintent restrict of air/airwy, civilian, init|Milt op w unintent restrict of air/airwy, civilian, init +C2907314|T037|AB|Y37.471D|ICD10CM|Milt op w unintent restrict of air/airwy, civilian, subs|Milt op w unintent restrict of air/airwy, civilian, subs +C2907315|T037|PT|Y37.471S|ICD10CM|Military operations involving unintentional restriction of air and airway, civilian, sequela|Military operations involving unintentional restriction of air and airway, civilian, sequela +C2907315|T037|AB|Y37.471S|ICD10CM|Milt op w unintent restrict of air/airwy, civilian, sequela|Milt op w unintent restrict of air/airwy, civilian, sequela +C2907316|T037|AB|Y37.49|ICD10CM|Military operations involving oth conventional warfare|Military operations involving oth conventional warfare +C2907316|T037|HT|Y37.49|ICD10CM|Military operations involving other forms of conventional warfare|Military operations involving other forms of conventional warfare +C2907317|T037|HT|Y37.490|ICD10CM|Military operations involving other forms of conventional warfare, military personnel|Military operations involving other forms of conventional warfare, military personnel +C2907317|T037|AB|Y37.490|ICD10CM|Milt op involving oth conventional warfare, milt|Milt op involving oth conventional warfare, milt +C2907318|T037|AB|Y37.490A|ICD10CM|Milt op involving oth conventional warfare, milt, init|Milt op involving oth conventional warfare, milt, init +C2907319|T037|AB|Y37.490D|ICD10CM|Milt op involving oth conventional warfare, milt, subs|Milt op involving oth conventional warfare, milt, subs +C2907320|T037|PT|Y37.490S|ICD10CM|Military operations involving other forms of conventional warfare, military personnel, sequela|Military operations involving other forms of conventional warfare, military personnel, sequela +C2907320|T037|AB|Y37.490S|ICD10CM|Milt op involving oth conventional warfare, milt, sequela|Milt op involving oth conventional warfare, milt, sequela +C2907321|T037|HT|Y37.491|ICD10CM|Military operations involving other forms of conventional warfare, civilian|Military operations involving other forms of conventional warfare, civilian +C2907321|T037|AB|Y37.491|ICD10CM|Milt op involving oth conventional warfare, civilian|Milt op involving oth conventional warfare, civilian +C2907322|T037|PT|Y37.491A|ICD10CM|Military operations involving other forms of conventional warfare, civilian, initial encounter|Military operations involving other forms of conventional warfare, civilian, initial encounter +C2907322|T037|AB|Y37.491A|ICD10CM|Milt op involving oth conventional warfare, civilian, init|Milt op involving oth conventional warfare, civilian, init +C2907323|T037|PT|Y37.491D|ICD10CM|Military operations involving other forms of conventional warfare, civilian, subsequent encounter|Military operations involving other forms of conventional warfare, civilian, subsequent encounter +C2907323|T037|AB|Y37.491D|ICD10CM|Milt op involving oth conventional warfare, civilian, subs|Milt op involving oth conventional warfare, civilian, subs +C2907324|T037|PT|Y37.491S|ICD10CM|Military operations involving other forms of conventional warfare, civilian, sequela|Military operations involving other forms of conventional warfare, civilian, sequela +C2907324|T037|AB|Y37.491S|ICD10CM|Milt op involving oth conventl warfare, civilian, sequela|Milt op involving oth conventl warfare, civilian, sequela +C2907325|T037|ET|Y37.5|ICD10CM|Military operation involving dirty bomb NOS|Military operation involving dirty bomb NOS +C2907326|T037|AB|Y37.5|ICD10CM|Military operations involving nuclear weapons|Military operations involving nuclear weapons +C2907326|T037|HT|Y37.5|ICD10CM|Military operations involving nuclear weapons|Military operations involving nuclear weapons +C2907327|T037|AB|Y37.50|ICD10CM|Military operations involving unsp effect of nuclear weapon|Military operations involving unsp effect of nuclear weapon +C2907327|T037|HT|Y37.50|ICD10CM|Military operations involving unspecified effect of nuclear weapon|Military operations involving unspecified effect of nuclear weapon +C2907328|T037|HT|Y37.500|ICD10CM|Military operations involving unspecified effect of nuclear weapon, military personnel|Military operations involving unspecified effect of nuclear weapon, military personnel +C2907328|T037|AB|Y37.500|ICD10CM|Milt op involving unsp effect of nuclear weapon, milt|Milt op involving unsp effect of nuclear weapon, milt +C2907329|T037|AB|Y37.500A|ICD10CM|Milt op involving unsp effect of nuclear weapon, milt, init|Milt op involving unsp effect of nuclear weapon, milt, init +C2907330|T037|AB|Y37.500D|ICD10CM|Milt op involving unsp effect of nuclear weapon, milt, subs|Milt op involving unsp effect of nuclear weapon, milt, subs +C2907331|T037|PT|Y37.500S|ICD10CM|Military operations involving unspecified effect of nuclear weapon, military personnel, sequela|Military operations involving unspecified effect of nuclear weapon, military personnel, sequela +C2907331|T037|AB|Y37.500S|ICD10CM|Milt op w unsp effect of nuclear weapon, milt, sequela|Milt op w unsp effect of nuclear weapon, milt, sequela +C2907332|T037|HT|Y37.501|ICD10CM|Military operations involving unspecified effect of nuclear weapon, civilian|Military operations involving unspecified effect of nuclear weapon, civilian +C2907332|T037|AB|Y37.501|ICD10CM|Milt op involving unsp effect of nuclear weapon, civilian|Milt op involving unsp effect of nuclear weapon, civilian +C2907333|T037|PT|Y37.501A|ICD10CM|Military operations involving unspecified effect of nuclear weapon, civilian, initial encounter|Military operations involving unspecified effect of nuclear weapon, civilian, initial encounter +C2907333|T037|AB|Y37.501A|ICD10CM|Milt op w unsp effect of nuclear weapon, civilian, init|Milt op w unsp effect of nuclear weapon, civilian, init +C2907334|T037|PT|Y37.501D|ICD10CM|Military operations involving unspecified effect of nuclear weapon, civilian, subsequent encounter|Military operations involving unspecified effect of nuclear weapon, civilian, subsequent encounter +C2907334|T037|AB|Y37.501D|ICD10CM|Milt op w unsp effect of nuclear weapon, civilian, subs|Milt op w unsp effect of nuclear weapon, civilian, subs +C2907335|T037|PT|Y37.501S|ICD10CM|Military operations involving unspecified effect of nuclear weapon, civilian, sequela|Military operations involving unspecified effect of nuclear weapon, civilian, sequela +C2907335|T037|AB|Y37.501S|ICD10CM|Milt op w unsp effect of nuclear weapon, civilian, sequela|Milt op w unsp effect of nuclear weapon, civilian, sequela +C2907336|T037|ET|Y37.51|ICD10CM|Military operations involving blast pressure of nuclear weapon|Military operations involving blast pressure of nuclear weapon +C2907337|T037|HT|Y37.51|ICD10CM|Military operations involving direct blast effect of nuclear weapon|Military operations involving direct blast effect of nuclear weapon +C2907337|T037|AB|Y37.51|ICD10CM|Milt op involving direct blast effect of nuclear weapon|Milt op involving direct blast effect of nuclear weapon +C2907338|T037|HT|Y37.510|ICD10CM|Military operations involving direct blast effect of nuclear weapon, military personnel|Military operations involving direct blast effect of nuclear weapon, military personnel +C2907338|T037|AB|Y37.510|ICD10CM|Milt op w direct blast effect of nuclear weapon, milt|Milt op w direct blast effect of nuclear weapon, milt +C2907339|T037|AB|Y37.510A|ICD10CM|Milt op w direct blast effect of nuclear weapon, milt, init|Milt op w direct blast effect of nuclear weapon, milt, init +C2907340|T037|AB|Y37.510D|ICD10CM|Milt op w direct blast effect of nuclear weapon, milt, subs|Milt op w direct blast effect of nuclear weapon, milt, subs +C2907341|T037|PT|Y37.510S|ICD10CM|Military operations involving direct blast effect of nuclear weapon, military personnel, sequela|Military operations involving direct blast effect of nuclear weapon, military personnel, sequela +C2907341|T037|AB|Y37.510S|ICD10CM|Milt op w direct blast effect of nuclr weapon, milt, sequela|Milt op w direct blast effect of nuclr weapon, milt, sequela +C2907342|T037|HT|Y37.511|ICD10CM|Military operations involving direct blast effect of nuclear weapon, civilian|Military operations involving direct blast effect of nuclear weapon, civilian +C2907342|T037|AB|Y37.511|ICD10CM|Milt op w direct blast effect of nuclear weapon, civilian|Milt op w direct blast effect of nuclear weapon, civilian +C2907343|T037|PT|Y37.511A|ICD10CM|Military operations involving direct blast effect of nuclear weapon, civilian, initial encounter|Military operations involving direct blast effect of nuclear weapon, civilian, initial encounter +C2907343|T037|AB|Y37.511A|ICD10CM|Milt op w direct blast effect of nuclear weapon, civ, init|Milt op w direct blast effect of nuclear weapon, civ, init +C2907344|T037|PT|Y37.511D|ICD10CM|Military operations involving direct blast effect of nuclear weapon, civilian, subsequent encounter|Military operations involving direct blast effect of nuclear weapon, civilian, subsequent encounter +C2907344|T037|AB|Y37.511D|ICD10CM|Milt op w direct blast effect of nuclear weapon, civ, subs|Milt op w direct blast effect of nuclear weapon, civ, subs +C2907345|T037|PT|Y37.511S|ICD10CM|Military operations involving direct blast effect of nuclear weapon, civilian, sequela|Military operations involving direct blast effect of nuclear weapon, civilian, sequela +C2907345|T037|AB|Y37.511S|ICD10CM|Milt op w direct blast effect of nuclr weapon, civ, sequela|Milt op w direct blast effect of nuclr weapon, civ, sequela +C2907346|T037|ET|Y37.52|ICD10CM|Military operations involving being struck or crushed by blast debris of nuclear weapon|Military operations involving being struck or crushed by blast debris of nuclear weapon +C2907347|T037|ET|Y37.52|ICD10CM|Military operations involving being thrown by blast of nuclear weapon|Military operations involving being thrown by blast of nuclear weapon +C2907348|T037|HT|Y37.52|ICD10CM|Military operations involving indirect blast effect of nuclear weapon|Military operations involving indirect blast effect of nuclear weapon +C2907348|T037|AB|Y37.52|ICD10CM|Milt op involving indirect blast effect of nuclear weapon|Milt op involving indirect blast effect of nuclear weapon +C2907349|T037|HT|Y37.520|ICD10CM|Military operations involving indirect blast effect of nuclear weapon, military personnel|Military operations involving indirect blast effect of nuclear weapon, military personnel +C2907349|T037|AB|Y37.520|ICD10CM|Milt op w indirect blast effect of nuclear weapon, milt|Milt op w indirect blast effect of nuclear weapon, milt +C2907350|T037|AB|Y37.520A|ICD10CM|Milt op w indir blast effect of nuclear weapon, milt, init|Milt op w indir blast effect of nuclear weapon, milt, init +C2907351|T037|AB|Y37.520D|ICD10CM|Milt op w indir blast effect of nuclear weapon, milt, subs|Milt op w indir blast effect of nuclear weapon, milt, subs +C2907352|T037|PT|Y37.520S|ICD10CM|Military operations involving indirect blast effect of nuclear weapon, military personnel, sequela|Military operations involving indirect blast effect of nuclear weapon, military personnel, sequela +C2907352|T037|AB|Y37.520S|ICD10CM|Milt op w indir blast effect of nuclr weapon, milt, sequela|Milt op w indir blast effect of nuclr weapon, milt, sequela +C2907353|T037|HT|Y37.521|ICD10CM|Military operations involving indirect blast effect of nuclear weapon, civilian|Military operations involving indirect blast effect of nuclear weapon, civilian +C2907353|T037|AB|Y37.521|ICD10CM|Milt op w indirect blast effect of nuclear weapon, civilian|Milt op w indirect blast effect of nuclear weapon, civilian +C2907354|T037|PT|Y37.521A|ICD10CM|Military operations involving indirect blast effect of nuclear weapon, civilian, initial encounter|Military operations involving indirect blast effect of nuclear weapon, civilian, initial encounter +C2907354|T037|AB|Y37.521A|ICD10CM|Milt op w indirect blast effect of nuclear weapon, civ, init|Milt op w indirect blast effect of nuclear weapon, civ, init +C2907355|T037|AB|Y37.521D|ICD10CM|Milt op w indirect blast effect of nuclear weapon, civ, subs|Milt op w indirect blast effect of nuclear weapon, civ, subs +C2907356|T037|PT|Y37.521S|ICD10CM|Military operations involving indirect blast effect of nuclear weapon, civilian, sequela|Military operations involving indirect blast effect of nuclear weapon, civilian, sequela +C2907356|T037|AB|Y37.521S|ICD10CM|Milt op w indir blast effect of nuclear weapon, civ, sequela|Milt op w indir blast effect of nuclear weapon, civ, sequela +C2907357|T037|ET|Y37.53|ICD10CM|Military operation involving fireball effects from nuclear weapon|Military operation involving fireball effects from nuclear weapon +C2907358|T037|ET|Y37.53|ICD10CM|Military operations involving direct heat from nuclear weapon|Military operations involving direct heat from nuclear weapon +C2907359|T037|HT|Y37.53|ICD10CM|Military operations involving thermal radiation effect of nuclear weapon|Military operations involving thermal radiation effect of nuclear weapon +C2907359|T037|AB|Y37.53|ICD10CM|Milt op involving thermal radiation effect of nuclear weapon|Milt op involving thermal radiation effect of nuclear weapon +C2907360|T037|HT|Y37.530|ICD10CM|Military operations involving thermal radiation effect of nuclear weapon, military personnel|Military operations involving thermal radiation effect of nuclear weapon, military personnel +C2907360|T037|AB|Y37.530|ICD10CM|Milt op w thermal radn effect of nuclear weapon, milt|Milt op w thermal radn effect of nuclear weapon, milt +C2907361|T037|AB|Y37.530A|ICD10CM|Milt op w thermal radn effect of nuclear weapon, milt, init|Milt op w thermal radn effect of nuclear weapon, milt, init +C2907362|T037|AB|Y37.530D|ICD10CM|Milt op w thermal radn effect of nuclear weapon, milt, subs|Milt op w thermal radn effect of nuclear weapon, milt, subs +C2907363|T037|AB|Y37.530S|ICD10CM|Milt op w thermal radn effect of nuclr weapon, milt, sequela|Milt op w thermal radn effect of nuclr weapon, milt, sequela +C2907364|T037|HT|Y37.531|ICD10CM|Military operations involving thermal radiation effect of nuclear weapon, civilian|Military operations involving thermal radiation effect of nuclear weapon, civilian +C2907364|T037|AB|Y37.531|ICD10CM|Milt op w thermal radn effect of nuclear weapon, civilian|Milt op w thermal radn effect of nuclear weapon, civilian +C2907365|T037|AB|Y37.531A|ICD10CM|Milt op w thermal radn effect of nuclear weapon, civ, init|Milt op w thermal radn effect of nuclear weapon, civ, init +C2907366|T037|AB|Y37.531D|ICD10CM|Milt op w thermal radn effect of nuclear weapon, civ, subs|Milt op w thermal radn effect of nuclear weapon, civ, subs +C2907367|T037|PT|Y37.531S|ICD10CM|Military operations involving thermal radiation effect of nuclear weapon, civilian, sequela|Military operations involving thermal radiation effect of nuclear weapon, civilian, sequela +C2907367|T037|AB|Y37.531S|ICD10CM|Milt op w thermal radn effect of nuclr weapon, civ, sequela|Milt op w thermal radn effect of nuclr weapon, civ, sequela +C2907372|T037|AB|Y37.54|ICD10CM|Military op w nuclear radiation effects of nuclear weapon|Military op w nuclear radiation effects of nuclear weapon +C2907368|T037|ET|Y37.54|ICD10CM|Military operation involving acute radiation exposure from nuclear weapon|Military operation involving acute radiation exposure from nuclear weapon +C2907369|T037|ET|Y37.54|ICD10CM|Military operation involving exposure to immediate ionizing radiation from nuclear weapon|Military operation involving exposure to immediate ionizing radiation from nuclear weapon +C2907370|T037|ET|Y37.54|ICD10CM|Military operation involving fallout exposure from nuclear weapon|Military operation involving fallout exposure from nuclear weapon +C2907372|T037|HT|Y37.54|ICD10CM|Military operation involving nuclear radiation effects of nuclear weapon|Military operation involving nuclear radiation effects of nuclear weapon +C2907371|T037|ET|Y37.54|ICD10CM|Military operation involving secondary effects of nuclear weapons|Military operation involving secondary effects of nuclear weapons +C2907373|T037|HT|Y37.540|ICD10CM|Military operation involving nuclear radiation effects of nuclear weapon, military personnel|Military operation involving nuclear radiation effects of nuclear weapon, military personnel +C2907373|T037|AB|Y37.540|ICD10CM|Miltry op w nuclear radiation eff of nuclear weapon, milt|Miltry op w nuclear radiation eff of nuclear weapon, milt +C2907374|T037|AB|Y37.540A|ICD10CM|Miltry op w nuclr radiation eff of nuclr weapon, milt, init|Miltry op w nuclr radiation eff of nuclr weapon, milt, init +C2907375|T037|AB|Y37.540D|ICD10CM|Miltry op w nuclr radiation eff of nuclr weapon, milt, subs|Miltry op w nuclr radiation eff of nuclr weapon, milt, subs +C2907376|T037|AB|Y37.540S|ICD10CM|Miltry op w nuclr radiation eff of nuclr weapon, milt, sqla|Miltry op w nuclr radiation eff of nuclr weapon, milt, sqla +C2907377|T037|HT|Y37.541|ICD10CM|Military operation involving nuclear radiation effects of nuclear weapon, civilian|Military operation involving nuclear radiation effects of nuclear weapon, civilian +C2907377|T037|AB|Y37.541|ICD10CM|Miltry op w nuclear radiation effects of nuclear weapon, civ|Miltry op w nuclear radiation effects of nuclear weapon, civ +C2907378|T037|AB|Y37.541A|ICD10CM|Miltry op w nuclr radiation eff of nuclear weapon, civ, init|Miltry op w nuclr radiation eff of nuclear weapon, civ, init +C2907379|T037|AB|Y37.541D|ICD10CM|Miltry op w nuclr radiation eff of nuclear weapon, civ, subs|Miltry op w nuclr radiation eff of nuclear weapon, civ, subs +C2907380|T037|PT|Y37.541S|ICD10CM|Military operation involving nuclear radiation effects of nuclear weapon, civilian, sequela|Military operation involving nuclear radiation effects of nuclear weapon, civilian, sequela +C2907380|T037|AB|Y37.541S|ICD10CM|Miltry op w nuclr radiation eff of nuclr weapon, civ, sqla|Miltry op w nuclr radiation eff of nuclr weapon, civ, sqla +C2907381|T037|AB|Y37.59|ICD10CM|Military operation involving oth effects of nuclear weapons|Military operation involving oth effects of nuclear weapons +C2907381|T037|HT|Y37.59|ICD10CM|Military operation involving other effects of nuclear weapons|Military operation involving other effects of nuclear weapons +C2907382|T037|HT|Y37.590|ICD10CM|Military operation involving other effects of nuclear weapons, military personnel|Military operation involving other effects of nuclear weapons, military personnel +C2907382|T037|AB|Y37.590|ICD10CM|Military operation w oth effects of nuclear weapons, milt|Military operation w oth effects of nuclear weapons, milt +C2907383|T037|AB|Y37.590A|ICD10CM|Military op w oth effects of nuclear weapons, milt, init|Military op w oth effects of nuclear weapons, milt, init +C2907383|T037|PT|Y37.590A|ICD10CM|Military operation involving other effects of nuclear weapons, military personnel, initial encounter|Military operation involving other effects of nuclear weapons, military personnel, initial encounter +C2907384|T037|AB|Y37.590D|ICD10CM|Military op w oth effects of nuclear weapons, milt, subs|Military op w oth effects of nuclear weapons, milt, subs +C2907385|T037|AB|Y37.590S|ICD10CM|Military op w oth effects of nuclear weapons, milt, sequela|Military op w oth effects of nuclear weapons, milt, sequela +C2907385|T037|PT|Y37.590S|ICD10CM|Military operation involving other effects of nuclear weapons, military personnel, sequela|Military operation involving other effects of nuclear weapons, military personnel, sequela +C2907386|T037|AB|Y37.591|ICD10CM|Military op w oth effects of nuclear weapons, civilian|Military op w oth effects of nuclear weapons, civilian +C2907386|T037|HT|Y37.591|ICD10CM|Military operation involving other effects of nuclear weapons, civilian|Military operation involving other effects of nuclear weapons, civilian +C2907387|T037|AB|Y37.591A|ICD10CM|Military op w oth effects of nuclear weapons, civilian, init|Military op w oth effects of nuclear weapons, civilian, init +C2907387|T037|PT|Y37.591A|ICD10CM|Military operation involving other effects of nuclear weapons, civilian, initial encounter|Military operation involving other effects of nuclear weapons, civilian, initial encounter +C2907388|T037|AB|Y37.591D|ICD10CM|Military op w oth effects of nuclear weapons, civilian, subs|Military op w oth effects of nuclear weapons, civilian, subs +C2907388|T037|PT|Y37.591D|ICD10CM|Military operation involving other effects of nuclear weapons, civilian, subsequent encounter|Military operation involving other effects of nuclear weapons, civilian, subsequent encounter +C2907389|T037|AB|Y37.591S|ICD10CM|Military op w oth effects of nuclear weapons, civ, sequela|Military op w oth effects of nuclear weapons, civ, sequela +C2907389|T037|PT|Y37.591S|ICD10CM|Military operation involving other effects of nuclear weapons, civilian, sequela|Military operation involving other effects of nuclear weapons, civilian, sequela +C2907390|T037|AB|Y37.6|ICD10CM|Military operations involving biological weapons|Military operations involving biological weapons +C2907390|T037|HT|Y37.6|ICD10CM|Military operations involving biological weapons|Military operations involving biological weapons +C2907390|T037|HT|Y37.6X|ICD10CM|Military operations involving biological weapons|Military operations involving biological weapons +C2907390|T037|AB|Y37.6X|ICD10CM|Military operations involving biological weapons|Military operations involving biological weapons +C2907391|T037|HT|Y37.6X0|ICD10CM|Military operations involving biological weapons, military personnel|Military operations involving biological weapons, military personnel +C2907391|T037|AB|Y37.6X0|ICD10CM|Milt op involving biological weapons, military personnel|Milt op involving biological weapons, military personnel +C2907392|T037|PT|Y37.6X0A|ICD10CM|Military operations involving biological weapons, military personnel, initial encounter|Military operations involving biological weapons, military personnel, initial encounter +C2907392|T037|AB|Y37.6X0A|ICD10CM|Milt op involving biological weapons, milt, init|Milt op involving biological weapons, milt, init +C2907393|T037|PT|Y37.6X0D|ICD10CM|Military operations involving biological weapons, military personnel, subsequent encounter|Military operations involving biological weapons, military personnel, subsequent encounter +C2907393|T037|AB|Y37.6X0D|ICD10CM|Milt op involving biological weapons, milt, subs|Milt op involving biological weapons, milt, subs +C2907394|T037|PT|Y37.6X0S|ICD10CM|Military operations involving biological weapons, military personnel, sequela|Military operations involving biological weapons, military personnel, sequela +C2907394|T037|AB|Y37.6X0S|ICD10CM|Milt op involving biological weapons, milt, sequela|Milt op involving biological weapons, milt, sequela +C2907395|T037|AB|Y37.6X1|ICD10CM|Military operations involving biological weapons, civilian|Military operations involving biological weapons, civilian +C2907395|T037|HT|Y37.6X1|ICD10CM|Military operations involving biological weapons, civilian|Military operations involving biological weapons, civilian +C2907396|T037|PT|Y37.6X1A|ICD10CM|Military operations involving biological weapons, civilian, initial encounter|Military operations involving biological weapons, civilian, initial encounter +C2907396|T037|AB|Y37.6X1A|ICD10CM|Milt op involving biological weapons, civilian, init|Milt op involving biological weapons, civilian, init +C2907397|T037|PT|Y37.6X1D|ICD10CM|Military operations involving biological weapons, civilian, subsequent encounter|Military operations involving biological weapons, civilian, subsequent encounter +C2907397|T037|AB|Y37.6X1D|ICD10CM|Milt op involving biological weapons, civilian, subs|Milt op involving biological weapons, civilian, subs +C2907398|T037|PT|Y37.6X1S|ICD10CM|Military operations involving biological weapons, civilian, sequela|Military operations involving biological weapons, civilian, sequela +C2907398|T037|AB|Y37.6X1S|ICD10CM|Milt op involving biological weapons, civilian, sequela|Milt op involving biological weapons, civilian, sequela +C2907399|T037|HT|Y37.7|ICD10CM|Military operations involving chemical weapons and other forms of unconventional warfare|Military operations involving chemical weapons and other forms of unconventional warfare +C2907399|T037|AB|Y37.7|ICD10CM|Milt op involving chemical weapons and oth unconvtl warfare|Milt op involving chemical weapons and oth unconvtl warfare +C2907399|T037|HT|Y37.7X|ICD10CM|Military operations involving chemical weapons and other forms of unconventional warfare|Military operations involving chemical weapons and other forms of unconventional warfare +C2907399|T037|AB|Y37.7X|ICD10CM|Milt op involving chemical weapons and oth unconvtl warfare|Milt op involving chemical weapons and oth unconvtl warfare +C2907400|T037|AB|Y37.7X0|ICD10CM|Milt op w chemical weapons and oth unconvtl warfare, milt|Milt op w chemical weapons and oth unconvtl warfare, milt +C2907401|T037|AB|Y37.7X0A|ICD10CM|Milt op w chem weapons and oth unconvtl warfare, milt, init|Milt op w chem weapons and oth unconvtl warfare, milt, init +C2907402|T037|AB|Y37.7X0D|ICD10CM|Milt op w chem weapons and oth unconvtl warfare, milt, subs|Milt op w chem weapons and oth unconvtl warfare, milt, subs +C2907403|T037|AB|Y37.7X0S|ICD10CM|Milt op w chem weapons and oth unconvtl warfare, milt, sqla|Milt op w chem weapons and oth unconvtl warfare, milt, sqla +C2907404|T037|HT|Y37.7X1|ICD10CM|Military operations involving chemical weapons and other forms of unconventional warfare, civilian|Military operations involving chemical weapons and other forms of unconventional warfare, civilian +C2907404|T037|AB|Y37.7X1|ICD10CM|Milt op w chem weapons and oth unconvtl warfare, civilian|Milt op w chem weapons and oth unconvtl warfare, civilian +C2907405|T037|AB|Y37.7X1A|ICD10CM|Milt op w chem weapons and oth unconvtl warfare, civ, init|Milt op w chem weapons and oth unconvtl warfare, civ, init +C2907406|T037|AB|Y37.7X1D|ICD10CM|Milt op w chem weapons and oth unconvtl warfare, civ, subs|Milt op w chem weapons and oth unconvtl warfare, civ, subs +C2907407|T037|AB|Y37.7X1S|ICD10CM|Milt op w chem weapons and oth unconvtl warfare, civ, sqla|Milt op w chem weapons and oth unconvtl warfare, civ, sqla +C2907408|T037|AB|Y37.9|ICD10CM|Other and unspecified military operations|Other and unspecified military operations +C2907408|T037|HT|Y37.9|ICD10CM|Other and unspecified military operations|Other and unspecified military operations +C2907409|T037|AB|Y37.90|ICD10CM|Military operations, unspecified|Military operations, unspecified +C2907409|T037|HT|Y37.90|ICD10CM|Military operations, unspecified|Military operations, unspecified +C2907410|T037|PT|Y37.90XA|ICD10CM|Military operations, unspecified, initial encounter|Military operations, unspecified, initial encounter +C2907410|T037|AB|Y37.90XA|ICD10CM|Military operations, unspecified, initial encounter|Military operations, unspecified, initial encounter +C2907411|T037|PT|Y37.90XD|ICD10CM|Military operations, unspecified, subsequent encounter|Military operations, unspecified, subsequent encounter +C2907411|T037|AB|Y37.90XD|ICD10CM|Military operations, unspecified, subsequent encounter|Military operations, unspecified, subsequent encounter +C2907412|T037|PT|Y37.90XS|ICD10CM|Military operations, unspecified, sequela|Military operations, unspecified, sequela +C2907412|T037|AB|Y37.90XS|ICD10CM|Military operations, unspecified, sequela|Military operations, unspecified, sequela +C2907413|T037|HT|Y37.91|ICD10CM|Military operations involving unspecified weapon of mass destruction [WMD]|Military operations involving unspecified weapon of mass destruction [WMD] +C2907413|T037|AB|Y37.91|ICD10CM|Milt op involving unsp weapon of mass destruction|Milt op involving unsp weapon of mass destruction +C2907414|T037|PT|Y37.91XA|ICD10CM|Military operations involving unspecified weapon of mass destruction [WMD], initial encounter|Military operations involving unspecified weapon of mass destruction [WMD], initial encounter +C2907414|T037|AB|Y37.91XA|ICD10CM|Milt op involving unsp weapon of mass destruction, init|Milt op involving unsp weapon of mass destruction, init +C2907415|T037|PT|Y37.91XD|ICD10CM|Military operations involving unspecified weapon of mass destruction [WMD], subsequent encounter|Military operations involving unspecified weapon of mass destruction [WMD], subsequent encounter +C2907415|T037|AB|Y37.91XD|ICD10CM|Milt op involving unsp weapon of mass destruction, subs|Milt op involving unsp weapon of mass destruction, subs +C2907416|T037|PT|Y37.91XS|ICD10CM|Military operations involving unspecified weapon of mass destruction [WMD], sequela|Military operations involving unspecified weapon of mass destruction [WMD], sequela +C2907416|T037|AB|Y37.91XS|ICD10CM|Milt op involving unsp weapon of mass destruction, sequela|Milt op involving unsp weapon of mass destruction, sequela +C2907417|T037|AB|Y37.92|ICD10CM|Military operations involving friendly fire|Military operations involving friendly fire +C2907417|T037|HT|Y37.92|ICD10CM|Military operations involving friendly fire|Military operations involving friendly fire +C2907418|T037|AB|Y37.92XA|ICD10CM|Military operations involving friendly fire, init encntr|Military operations involving friendly fire, init encntr +C2907418|T037|PT|Y37.92XA|ICD10CM|Military operations involving friendly fire, initial encounter|Military operations involving friendly fire, initial encounter +C2907419|T037|AB|Y37.92XD|ICD10CM|Military operations involving friendly fire, subs encntr|Military operations involving friendly fire, subs encntr +C2907419|T037|PT|Y37.92XD|ICD10CM|Military operations involving friendly fire, subsequent encounter|Military operations involving friendly fire, subsequent encounter +C2907420|T037|PT|Y37.92XS|ICD10CM|Military operations involving friendly fire, sequela|Military operations involving friendly fire, sequela +C2907420|T037|AB|Y37.92XS|ICD10CM|Military operations involving friendly fire, sequela|Military operations involving friendly fire, sequela +C2077104|T037|AB|Y38|ICD10CM|Terrorism|Terrorism +C2077104|T037|HT|Y38|ICD10CM|Terrorism|Terrorism +C2907421|T037|ET|Y38.0|ICD10CM|Terrorism involving depth-charge|Terrorism involving depth-charge +C1135316|T037|HT|Y38.0|ICD10CM|Terrorism involving explosion of marine weapons|Terrorism involving explosion of marine weapons +C1135316|T037|AB|Y38.0|ICD10CM|Terrorism involving explosion of marine weapons|Terrorism involving explosion of marine weapons +C2907422|T037|ET|Y38.0|ICD10CM|Terrorism involving marine mine|Terrorism involving marine mine +C2907423|T037|ET|Y38.0|ICD10CM|Terrorism involving mine NOS, at sea or in harbor|Terrorism involving mine NOS, at sea or in harbor +C2907424|T037|ET|Y38.0|ICD10CM|Terrorism involving sea-based artillery shell|Terrorism involving sea-based artillery shell +C2907425|T037|ET|Y38.0|ICD10CM|Terrorism involving torpedo|Terrorism involving torpedo +C1135379|T037|ET|Y38.0|ICD10CM|Terrorism involving underwater blast|Terrorism involving underwater blast +C1135316|T037|HT|Y38.0X|ICD10CM|Terrorism involving explosion of marine weapons|Terrorism involving explosion of marine weapons +C1135316|T037|AB|Y38.0X|ICD10CM|Terrorism involving explosion of marine weapons|Terrorism involving explosion of marine weapons +C2907426|T037|AB|Y38.0X1|ICD10CM|Terorsm w explosn of marine weapons, publ sfty offcl injured|Terorsm w explosn of marine weapons, publ sfty offcl injured +C2907426|T037|HT|Y38.0X1|ICD10CM|Terrorism involving explosion of marine weapons, public safety official injured|Terrorism involving explosion of marine weapons, public safety official injured +C2907427|T037|AB|Y38.0X1A|ICD10CM|Terorsm w explosn of marine weap, publ sfty offcl inj, init|Terorsm w explosn of marine weap, publ sfty offcl inj, init +C2907427|T037|PT|Y38.0X1A|ICD10CM|Terrorism involving explosion of marine weapons, public safety official injured, initial encounter|Terrorism involving explosion of marine weapons, public safety official injured, initial encounter +C2907428|T037|AB|Y38.0X1D|ICD10CM|Terorsm w explosn of marine weap, publ sfty offcl inj, subs|Terorsm w explosn of marine weap, publ sfty offcl inj, subs +C2907429|T037|AB|Y38.0X1S|ICD10CM|Terorsm w explosn of marine weap, publ sfty offcl inj, sqla|Terorsm w explosn of marine weap, publ sfty offcl inj, sqla +C2907429|T037|PT|Y38.0X1S|ICD10CM|Terrorism involving explosion of marine weapons, public safety official injured, sequela|Terrorism involving explosion of marine weapons, public safety official injured, sequela +C2907430|T037|HT|Y38.0X2|ICD10CM|Terrorism involving explosion of marine weapons, civilian injured|Terrorism involving explosion of marine weapons, civilian injured +C2907430|T037|AB|Y38.0X2|ICD10CM|Terrorism w explosn of marine weapons, civilian injured|Terrorism w explosn of marine weapons, civilian injured +C2907431|T037|AB|Y38.0X2A|ICD10CM|Terorsm w explosn of marine weapons, civilian injured, init|Terorsm w explosn of marine weapons, civilian injured, init +C2907431|T037|PT|Y38.0X2A|ICD10CM|Terrorism involving explosion of marine weapons, civilian injured, initial encounter|Terrorism involving explosion of marine weapons, civilian injured, initial encounter +C2907432|T037|AB|Y38.0X2D|ICD10CM|Terorsm w explosn of marine weapons, civilian injured, subs|Terorsm w explosn of marine weapons, civilian injured, subs +C2907432|T037|PT|Y38.0X2D|ICD10CM|Terrorism involving explosion of marine weapons, civilian injured, subsequent encounter|Terrorism involving explosion of marine weapons, civilian injured, subsequent encounter +C2907433|T037|AB|Y38.0X2S|ICD10CM|Terorsm w explosn of marine weapons, civ injured, sequela|Terorsm w explosn of marine weapons, civ injured, sequela +C2907433|T037|PT|Y38.0X2S|ICD10CM|Terrorism involving explosion of marine weapons, civilian injured, sequela|Terrorism involving explosion of marine weapons, civilian injured, sequela +C2907434|T037|HT|Y38.0X3|ICD10CM|Terrorism involving explosion of marine weapons, terrorist injured|Terrorism involving explosion of marine weapons, terrorist injured +C2907434|T037|AB|Y38.0X3|ICD10CM|Terrorism w explosn of marine weapons, terrorist injured|Terrorism w explosn of marine weapons, terrorist injured +C2907435|T037|AB|Y38.0X3A|ICD10CM|Terorsm w explosn of marine weapons, terrorist injured, init|Terorsm w explosn of marine weapons, terrorist injured, init +C2907435|T037|PT|Y38.0X3A|ICD10CM|Terrorism involving explosion of marine weapons, terrorist injured, initial encounter|Terrorism involving explosion of marine weapons, terrorist injured, initial encounter +C2907436|T037|AB|Y38.0X3D|ICD10CM|Terorsm w explosn of marine weapons, terrorist injured, subs|Terorsm w explosn of marine weapons, terrorist injured, subs +C2907436|T037|PT|Y38.0X3D|ICD10CM|Terrorism involving explosion of marine weapons, terrorist injured, subsequent encounter|Terrorism involving explosion of marine weapons, terrorist injured, subsequent encounter +C2907437|T037|AB|Y38.0X3S|ICD10CM|Terorsm w explosn of marine weapons, terrorist inj, sequela|Terorsm w explosn of marine weapons, terrorist inj, sequela +C2907437|T037|PT|Y38.0X3S|ICD10CM|Terrorism involving explosion of marine weapons, terrorist injured, sequela|Terrorism involving explosion of marine weapons, terrorist injured, sequela +C1135383|T037|ET|Y38.1|ICD10CM|Terrorism involving aircraft being shot down|Terrorism involving aircraft being shot down +C1135381|T037|ET|Y38.1|ICD10CM|Terrorism involving aircraft burned|Terrorism involving aircraft burned +C1135382|T037|ET|Y38.1|ICD10CM|Terrorism involving aircraft exploded|Terrorism involving aircraft exploded +C1135380|T037|ET|Y38.1|ICD10CM|Terrorism involving aircraft used as a weapon|Terrorism involving aircraft used as a weapon +C1135317|T037|HT|Y38.1|ICD10CM|Terrorism involving destruction of aircraft|Terrorism involving destruction of aircraft +C1135317|T037|AB|Y38.1|ICD10CM|Terrorism involving destruction of aircraft|Terrorism involving destruction of aircraft +C1135317|T037|HT|Y38.1X|ICD10CM|Terrorism involving destruction of aircraft|Terrorism involving destruction of aircraft +C1135317|T037|AB|Y38.1X|ICD10CM|Terrorism involving destruction of aircraft|Terrorism involving destruction of aircraft +C2907438|T037|AB|Y38.1X1|ICD10CM|Terrorism involving dest arcrft, publ sfty offcl injured|Terrorism involving dest arcrft, publ sfty offcl injured +C2907438|T037|HT|Y38.1X1|ICD10CM|Terrorism involving destruction of aircraft, public safety official injured|Terrorism involving destruction of aircraft, public safety official injured +C2907439|T037|PT|Y38.1X1A|ICD10CM|Terrorism involving destruction of aircraft, public safety official injured, initial encounter|Terrorism involving destruction of aircraft, public safety official injured, initial encounter +C2907439|T037|AB|Y38.1X1A|ICD10CM|Terrorism w dest arcrft, publ sfty offcl injured, init|Terrorism w dest arcrft, publ sfty offcl injured, init +C2907440|T037|PT|Y38.1X1D|ICD10CM|Terrorism involving destruction of aircraft, public safety official injured, subsequent encounter|Terrorism involving destruction of aircraft, public safety official injured, subsequent encounter +C2907440|T037|AB|Y38.1X1D|ICD10CM|Terrorism w dest arcrft, publ sfty offcl injured, subs|Terrorism w dest arcrft, publ sfty offcl injured, subs +C2907441|T037|PT|Y38.1X1S|ICD10CM|Terrorism involving destruction of aircraft, public safety official injured, sequela|Terrorism involving destruction of aircraft, public safety official injured, sequela +C2907441|T037|AB|Y38.1X1S|ICD10CM|Terrorism w dest arcrft, publ sfty offcl injured, sequela|Terrorism w dest arcrft, publ sfty offcl injured, sequela +C2907442|T037|AB|Y38.1X2|ICD10CM|Terrorism involving dest arcrft, civilian injured|Terrorism involving dest arcrft, civilian injured +C2907442|T037|HT|Y38.1X2|ICD10CM|Terrorism involving destruction of aircraft, civilian injured|Terrorism involving destruction of aircraft, civilian injured +C2907443|T037|AB|Y38.1X2A|ICD10CM|Terrorism involving dest arcrft, civilian injured, init|Terrorism involving dest arcrft, civilian injured, init +C2907443|T037|PT|Y38.1X2A|ICD10CM|Terrorism involving destruction of aircraft, civilian injured, initial encounter|Terrorism involving destruction of aircraft, civilian injured, initial encounter +C2907444|T037|AB|Y38.1X2D|ICD10CM|Terrorism involving dest arcrft, civilian injured, subs|Terrorism involving dest arcrft, civilian injured, subs +C2907444|T037|PT|Y38.1X2D|ICD10CM|Terrorism involving destruction of aircraft, civilian injured, subsequent encounter|Terrorism involving destruction of aircraft, civilian injured, subsequent encounter +C2907445|T037|AB|Y38.1X2S|ICD10CM|Terrorism involving dest arcrft, civilian injured, sequela|Terrorism involving dest arcrft, civilian injured, sequela +C2907445|T037|PT|Y38.1X2S|ICD10CM|Terrorism involving destruction of aircraft, civilian injured, sequela|Terrorism involving destruction of aircraft, civilian injured, sequela +C2907446|T037|AB|Y38.1X3|ICD10CM|Terrorism involving dest arcrft, terrorist injured|Terrorism involving dest arcrft, terrorist injured +C2907446|T037|HT|Y38.1X3|ICD10CM|Terrorism involving destruction of aircraft, terrorist injured|Terrorism involving destruction of aircraft, terrorist injured +C2907447|T037|AB|Y38.1X3A|ICD10CM|Terrorism involving dest arcrft, terrorist injured, init|Terrorism involving dest arcrft, terrorist injured, init +C2907447|T037|PT|Y38.1X3A|ICD10CM|Terrorism involving destruction of aircraft, terrorist injured, initial encounter|Terrorism involving destruction of aircraft, terrorist injured, initial encounter +C2907448|T037|AB|Y38.1X3D|ICD10CM|Terrorism involving dest arcrft, terrorist injured, subs|Terrorism involving dest arcrft, terrorist injured, subs +C2907448|T037|PT|Y38.1X3D|ICD10CM|Terrorism involving destruction of aircraft, terrorist injured, subsequent encounter|Terrorism involving destruction of aircraft, terrorist injured, subsequent encounter +C2907449|T037|AB|Y38.1X3S|ICD10CM|Terrorism involving dest arcrft, terrorist injured, sequela|Terrorism involving dest arcrft, terrorist injured, sequela +C2907449|T037|PT|Y38.1X3S|ICD10CM|Terrorism involving destruction of aircraft, terrorist injured, sequela|Terrorism involving destruction of aircraft, terrorist injured, sequela +C1135385|T037|ET|Y38.2|ICD10CM|Terrorism involving antipersonnel (fragments) bomb|Terrorism involving antipersonnel (fragments) bomb +C1135386|T037|ET|Y38.2|ICD10CM|Terrorism involving blast NOS|Terrorism involving blast NOS +C2907450|T037|ET|Y38.2|ICD10CM|Terrorism involving explosion (fragments) of artillery shell|Terrorism involving explosion (fragments) of artillery shell +C2907451|T037|ET|Y38.2|ICD10CM|Terrorism involving explosion (fragments) of bomb|Terrorism involving explosion (fragments) of bomb +C2907452|T037|ET|Y38.2|ICD10CM|Terrorism involving explosion (fragments) of grenade|Terrorism involving explosion (fragments) of grenade +C2907453|T037|ET|Y38.2|ICD10CM|Terrorism involving explosion (fragments) of guided missile|Terrorism involving explosion (fragments) of guided missile +C2907454|T037|ET|Y38.2|ICD10CM|Terrorism involving explosion (fragments) of land mine|Terrorism involving explosion (fragments) of land mine +C2907455|T037|ET|Y38.2|ICD10CM|Terrorism involving explosion (fragments) of rocket|Terrorism involving explosion (fragments) of rocket +C2907456|T037|ET|Y38.2|ICD10CM|Terrorism involving explosion (fragments) of shell|Terrorism involving explosion (fragments) of shell +C1135392|T037|ET|Y38.2|ICD10CM|Terrorism involving explosion NOS|Terrorism involving explosion NOS +C1135388|T037|ET|Y38.2|ICD10CM|Terrorism involving explosion of breech block|Terrorism involving explosion of breech block +C1135389|T037|ET|Y38.2|ICD10CM|Terrorism involving explosion of cannon block|Terrorism involving explosion of cannon block +C1135390|T037|ET|Y38.2|ICD10CM|Terrorism involving explosion of mortar bomb|Terrorism involving explosion of mortar bomb +C2907457|T037|ET|Y38.2|ICD10CM|Terrorism involving explosion of munitions|Terrorism involving explosion of munitions +C2907458|T037|ET|Y38.2|ICD10CM|Terrorism involving mine NOS, on land|Terrorism involving mine NOS, on land +C1135318|T037|HT|Y38.2|ICD10CM|Terrorism involving other explosions and fragments|Terrorism involving other explosions and fragments +C1135318|T037|AB|Y38.2|ICD10CM|Terrorism involving other explosions and fragments|Terrorism involving other explosions and fragments +C2907459|T037|ET|Y38.2|ICD10CM|Terrorism involving shrapnel|Terrorism involving shrapnel +C1135318|T037|HT|Y38.2X|ICD10CM|Terrorism involving other explosions and fragments|Terrorism involving other explosions and fragments +C1135318|T037|AB|Y38.2X|ICD10CM|Terrorism involving other explosions and fragments|Terrorism involving other explosions and fragments +C2907460|T037|HT|Y38.2X1|ICD10CM|Terrorism involving other explosions and fragments, public safety official injured|Terrorism involving other explosions and fragments, public safety official injured +C2907460|T037|AB|Y38.2X1|ICD10CM|Terrorism w oth explosn and fragmt, publ sfty offcl injured|Terrorism w oth explosn and fragmt, publ sfty offcl injured +C2907461|T037|AB|Y38.2X1A|ICD10CM|Terorsm w oth explosn and fragmt, publ sfty offcl inj, init|Terorsm w oth explosn and fragmt, publ sfty offcl inj, init +C2907462|T037|AB|Y38.2X1D|ICD10CM|Terorsm w oth explosn and fragmt, publ sfty offcl inj, subs|Terorsm w oth explosn and fragmt, publ sfty offcl inj, subs +C2907463|T037|AB|Y38.2X1S|ICD10CM|Terorsm w oth explosn and fragmt, publ sfty offcl inj, sqla|Terorsm w oth explosn and fragmt, publ sfty offcl inj, sqla +C2907463|T037|PT|Y38.2X1S|ICD10CM|Terrorism involving other explosions and fragments, public safety official injured, sequela|Terrorism involving other explosions and fragments, public safety official injured, sequela +C2907464|T037|AB|Y38.2X2|ICD10CM|Terrorism involving oth explosn and fragmt, civilian injured|Terrorism involving oth explosn and fragmt, civilian injured +C2907464|T037|HT|Y38.2X2|ICD10CM|Terrorism involving other explosions and fragments, civilian injured|Terrorism involving other explosions and fragments, civilian injured +C2907465|T037|PT|Y38.2X2A|ICD10CM|Terrorism involving other explosions and fragments, civilian injured, initial encounter|Terrorism involving other explosions and fragments, civilian injured, initial encounter +C2907465|T037|AB|Y38.2X2A|ICD10CM|Terrorism w oth explosn and fragmt, civilian injured, init|Terrorism w oth explosn and fragmt, civilian injured, init +C2907466|T037|PT|Y38.2X2D|ICD10CM|Terrorism involving other explosions and fragments, civilian injured, subsequent encounter|Terrorism involving other explosions and fragments, civilian injured, subsequent encounter +C2907466|T037|AB|Y38.2X2D|ICD10CM|Terrorism w oth explosn and fragmt, civilian injured, subs|Terrorism w oth explosn and fragmt, civilian injured, subs +C2907467|T037|AB|Y38.2X2S|ICD10CM|Terorsm w oth explosn and fragmt, civilian injured, sequela|Terorsm w oth explosn and fragmt, civilian injured, sequela +C2907467|T037|PT|Y38.2X2S|ICD10CM|Terrorism involving other explosions and fragments, civilian injured, sequela|Terrorism involving other explosions and fragments, civilian injured, sequela +C2907468|T037|HT|Y38.2X3|ICD10CM|Terrorism involving other explosions and fragments, terrorist injured|Terrorism involving other explosions and fragments, terrorist injured +C2907468|T037|AB|Y38.2X3|ICD10CM|Terrorism w oth explosn and fragmt, terrorist injured|Terrorism w oth explosn and fragmt, terrorist injured +C2907469|T037|PT|Y38.2X3A|ICD10CM|Terrorism involving other explosions and fragments, terrorist injured, initial encounter|Terrorism involving other explosions and fragments, terrorist injured, initial encounter +C2907469|T037|AB|Y38.2X3A|ICD10CM|Terrorism w oth explosn and fragmt, terrorist injured, init|Terrorism w oth explosn and fragmt, terrorist injured, init +C2907470|T037|PT|Y38.2X3D|ICD10CM|Terrorism involving other explosions and fragments, terrorist injured, subsequent encounter|Terrorism involving other explosions and fragments, terrorist injured, subsequent encounter +C2907470|T037|AB|Y38.2X3D|ICD10CM|Terrorism w oth explosn and fragmt, terrorist injured, subs|Terrorism w oth explosn and fragmt, terrorist injured, subs +C2907471|T037|AB|Y38.2X3S|ICD10CM|Terorsm w oth explosn and fragmt, terrorist injured, sequela|Terorsm w oth explosn and fragmt, terrorist injured, sequela +C2907471|T037|PT|Y38.2X3S|ICD10CM|Terrorism involving other explosions and fragments, terrorist injured, sequela|Terrorism involving other explosions and fragments, terrorist injured, sequela +C1135409|T037|ET|Y38.3|ICD10CM|Terrorism involving conflagration NOS|Terrorism involving conflagration NOS +C1135409|T037|ET|Y38.3|ICD10CM|Terrorism involving fire NOS|Terrorism involving fire NOS +C1135319|T037|AB|Y38.3|ICD10CM|Terrorism involving fires, conflagration and hot substances|Terrorism involving fires, conflagration and hot substances +C1135319|T037|HT|Y38.3|ICD10CM|Terrorism involving fires, conflagration and hot substances|Terrorism involving fires, conflagration and hot substances +C1135412|T037|ET|Y38.3|ICD10CM|Terrorism involving petrol bomb|Terrorism involving petrol bomb +C1135319|T037|HT|Y38.3X|ICD10CM|Terrorism involving fires, conflagration and hot substances|Terrorism involving fires, conflagration and hot substances +C1135319|T037|AB|Y38.3X|ICD10CM|Terrorism involving fires, conflagration and hot substances|Terrorism involving fires, conflagration and hot substances +C2907472|T037|AB|Y38.3X1|ICD10CM|Terrorism involving fire/hot subst, publ sfty offcl injured|Terrorism involving fire/hot subst, publ sfty offcl injured +C2907472|T037|HT|Y38.3X1|ICD10CM|Terrorism involving fires, conflagration and hot substances, public safety official injured|Terrorism involving fires, conflagration and hot substances, public safety official injured +C2907473|T037|AB|Y38.3X1A|ICD10CM|Terrorism w fire/hot subst, publ sfty offcl injured, init|Terrorism w fire/hot subst, publ sfty offcl injured, init +C2907474|T037|AB|Y38.3X1D|ICD10CM|Terrorism w fire/hot subst, publ sfty offcl injured, subs|Terrorism w fire/hot subst, publ sfty offcl injured, subs +C2907475|T037|PT|Y38.3X1S|ICD10CM|Terrorism involving fires, conflagration and hot substances, public safety official injured, sequela|Terrorism involving fires, conflagration and hot substances, public safety official injured, sequela +C2907475|T037|AB|Y38.3X1S|ICD10CM|Terrorism w fire/hot subst, publ sfty offcl injured, sequela|Terrorism w fire/hot subst, publ sfty offcl injured, sequela +C2907476|T037|AB|Y38.3X2|ICD10CM|Terrorism involving fire/hot subst, civilian injured|Terrorism involving fire/hot subst, civilian injured +C2907476|T037|HT|Y38.3X2|ICD10CM|Terrorism involving fires, conflagration and hot substances, civilian injured|Terrorism involving fires, conflagration and hot substances, civilian injured +C2907477|T037|AB|Y38.3X2A|ICD10CM|Terrorism involving fire/hot subst, civilian injured, init|Terrorism involving fire/hot subst, civilian injured, init +C2907477|T037|PT|Y38.3X2A|ICD10CM|Terrorism involving fires, conflagration and hot substances, civilian injured, initial encounter|Terrorism involving fires, conflagration and hot substances, civilian injured, initial encounter +C2907478|T037|AB|Y38.3X2D|ICD10CM|Terrorism involving fire/hot subst, civilian injured, subs|Terrorism involving fire/hot subst, civilian injured, subs +C2907478|T037|PT|Y38.3X2D|ICD10CM|Terrorism involving fires, conflagration and hot substances, civilian injured, subsequent encounter|Terrorism involving fires, conflagration and hot substances, civilian injured, subsequent encounter +C2907479|T037|PT|Y38.3X2S|ICD10CM|Terrorism involving fires, conflagration and hot substances, civilian injured, sequela|Terrorism involving fires, conflagration and hot substances, civilian injured, sequela +C2907479|T037|AB|Y38.3X2S|ICD10CM|Terrorism w fire/hot subst, civilian injured, sequela|Terrorism w fire/hot subst, civilian injured, sequela +C2907480|T037|AB|Y38.3X3|ICD10CM|Terrorism involving fire/hot subst, terrorist injured|Terrorism involving fire/hot subst, terrorist injured +C2907480|T037|HT|Y38.3X3|ICD10CM|Terrorism involving fires, conflagration and hot substances, terrorist injured|Terrorism involving fires, conflagration and hot substances, terrorist injured +C2907481|T037|AB|Y38.3X3A|ICD10CM|Terrorism involving fire/hot subst, terrorist injured, init|Terrorism involving fire/hot subst, terrorist injured, init +C2907481|T037|PT|Y38.3X3A|ICD10CM|Terrorism involving fires, conflagration and hot substances, terrorist injured, initial encounter|Terrorism involving fires, conflagration and hot substances, terrorist injured, initial encounter +C2907482|T037|AB|Y38.3X3D|ICD10CM|Terrorism involving fire/hot subst, terrorist injured, subs|Terrorism involving fire/hot subst, terrorist injured, subs +C2907482|T037|PT|Y38.3X3D|ICD10CM|Terrorism involving fires, conflagration and hot substances, terrorist injured, subsequent encounter|Terrorism involving fires, conflagration and hot substances, terrorist injured, subsequent encounter +C2907483|T037|PT|Y38.3X3S|ICD10CM|Terrorism involving fires, conflagration and hot substances, terrorist injured, sequela|Terrorism involving fires, conflagration and hot substances, terrorist injured, sequela +C2907483|T037|AB|Y38.3X3S|ICD10CM|Terrorism w fire/hot subst, terrorist injured, sequela|Terrorism w fire/hot subst, terrorist injured, sequela +C1135414|T037|ET|Y38.4|ICD10CM|Terrorism involving carbine bullet|Terrorism involving carbine bullet +C1135320|T037|HT|Y38.4|ICD10CM|Terrorism involving firearms|Terrorism involving firearms +C1135320|T037|AB|Y38.4|ICD10CM|Terrorism involving firearms|Terrorism involving firearms +C1135415|T037|ET|Y38.4|ICD10CM|Terrorism involving machine gun bullet|Terrorism involving machine gun bullet +C1135419|T037|ET|Y38.4|ICD10CM|Terrorism involving pellets (shotgun)|Terrorism involving pellets (shotgun) +C1135416|T037|ET|Y38.4|ICD10CM|Terrorism involving pistol bullet|Terrorism involving pistol bullet +C1135417|T037|ET|Y38.4|ICD10CM|Terrorism involving rifle bullet|Terrorism involving rifle bullet +C1135418|T037|ET|Y38.4|ICD10CM|Terrorism involving rubber (rifle) bullet|Terrorism involving rubber (rifle) bullet +C1135320|T037|HT|Y38.4X|ICD10CM|Terrorism involving firearms|Terrorism involving firearms +C1135320|T037|AB|Y38.4X|ICD10CM|Terrorism involving firearms|Terrorism involving firearms +C2907484|T037|AB|Y38.4X1|ICD10CM|Terrorism involving firearms, public safety official injured|Terrorism involving firearms, public safety official injured +C2907484|T037|HT|Y38.4X1|ICD10CM|Terrorism involving firearms, public safety official injured|Terrorism involving firearms, public safety official injured +C2907485|T037|AB|Y38.4X1A|ICD10CM|Terrorism involving firearms, publ sfty offcl injured, init|Terrorism involving firearms, publ sfty offcl injured, init +C2907485|T037|PT|Y38.4X1A|ICD10CM|Terrorism involving firearms, public safety official injured, initial encounter|Terrorism involving firearms, public safety official injured, initial encounter +C2907486|T037|AB|Y38.4X1D|ICD10CM|Terrorism involving firearms, publ sfty offcl injured, subs|Terrorism involving firearms, publ sfty offcl injured, subs +C2907486|T037|PT|Y38.4X1D|ICD10CM|Terrorism involving firearms, public safety official injured, subsequent encounter|Terrorism involving firearms, public safety official injured, subsequent encounter +C2907487|T037|PT|Y38.4X1S|ICD10CM|Terrorism involving firearms, public safety official injured, sequela|Terrorism involving firearms, public safety official injured, sequela +C2907487|T037|AB|Y38.4X1S|ICD10CM|Terrorism w firearms, publ sfty offcl injured, sequela|Terrorism w firearms, publ sfty offcl injured, sequela +C2907488|T037|AB|Y38.4X2|ICD10CM|Terrorism involving firearms, civilian injured|Terrorism involving firearms, civilian injured +C2907488|T037|HT|Y38.4X2|ICD10CM|Terrorism involving firearms, civilian injured|Terrorism involving firearms, civilian injured +C2907489|T037|AB|Y38.4X2A|ICD10CM|Terrorism involving firearms, civilian injured, init encntr|Terrorism involving firearms, civilian injured, init encntr +C2907489|T037|PT|Y38.4X2A|ICD10CM|Terrorism involving firearms, civilian injured, initial encounter|Terrorism involving firearms, civilian injured, initial encounter +C2907490|T037|AB|Y38.4X2D|ICD10CM|Terrorism involving firearms, civilian injured, subs encntr|Terrorism involving firearms, civilian injured, subs encntr +C2907490|T037|PT|Y38.4X2D|ICD10CM|Terrorism involving firearms, civilian injured, subsequent encounter|Terrorism involving firearms, civilian injured, subsequent encounter +C2907491|T037|AB|Y38.4X2S|ICD10CM|Terrorism involving firearms, civilian injured, sequela|Terrorism involving firearms, civilian injured, sequela +C2907491|T037|PT|Y38.4X2S|ICD10CM|Terrorism involving firearms, civilian injured, sequela|Terrorism involving firearms, civilian injured, sequela +C2907492|T037|AB|Y38.4X3|ICD10CM|Terrorism involving firearms, terrorist injured|Terrorism involving firearms, terrorist injured +C2907492|T037|HT|Y38.4X3|ICD10CM|Terrorism involving firearms, terrorist injured|Terrorism involving firearms, terrorist injured +C2907493|T037|AB|Y38.4X3A|ICD10CM|Terrorism involving firearms, terrorist injured, init encntr|Terrorism involving firearms, terrorist injured, init encntr +C2907493|T037|PT|Y38.4X3A|ICD10CM|Terrorism involving firearms, terrorist injured, initial encounter|Terrorism involving firearms, terrorist injured, initial encounter +C2907494|T037|AB|Y38.4X3D|ICD10CM|Terrorism involving firearms, terrorist injured, subs encntr|Terrorism involving firearms, terrorist injured, subs encntr +C2907494|T037|PT|Y38.4X3D|ICD10CM|Terrorism involving firearms, terrorist injured, subsequent encounter|Terrorism involving firearms, terrorist injured, subsequent encounter +C2907495|T037|AB|Y38.4X3S|ICD10CM|Terrorism involving firearms, terrorist injured, sequela|Terrorism involving firearms, terrorist injured, sequela +C2907495|T037|PT|Y38.4X3S|ICD10CM|Terrorism involving firearms, terrorist injured, sequela|Terrorism involving firearms, terrorist injured, sequela +C1135420|T037|ET|Y38.5|ICD10CM|Terrorism involving blast effects of nuclear weapon|Terrorism involving blast effects of nuclear weapon +C1135421|T037|ET|Y38.5|ICD10CM|Terrorism involving exposure to ionizing radiation from nuclear weapon|Terrorism involving exposure to ionizing radiation from nuclear weapon +C1135422|T037|ET|Y38.5|ICD10CM|Terrorism involving fireball effect of nuclear weapon|Terrorism involving fireball effect of nuclear weapon +C1135423|T037|ET|Y38.5|ICD10CM|Terrorism involving heat from nuclear weapon|Terrorism involving heat from nuclear weapon +C1135321|T037|HT|Y38.5|ICD10CM|Terrorism involving nuclear weapons|Terrorism involving nuclear weapons +C1135321|T037|AB|Y38.5|ICD10CM|Terrorism involving nuclear weapons|Terrorism involving nuclear weapons +C1135321|T037|HT|Y38.5X|ICD10CM|Terrorism involving nuclear weapons|Terrorism involving nuclear weapons +C1135321|T037|AB|Y38.5X|ICD10CM|Terrorism involving nuclear weapons|Terrorism involving nuclear weapons +C2907496|T037|AB|Y38.5X1|ICD10CM|Terrorism involving nuclear weapons, publ sfty offcl injured|Terrorism involving nuclear weapons, publ sfty offcl injured +C2907496|T037|HT|Y38.5X1|ICD10CM|Terrorism involving nuclear weapons, public safety official injured|Terrorism involving nuclear weapons, public safety official injured +C2907497|T037|PT|Y38.5X1A|ICD10CM|Terrorism involving nuclear weapons, public safety official injured, initial encounter|Terrorism involving nuclear weapons, public safety official injured, initial encounter +C2907497|T037|AB|Y38.5X1A|ICD10CM|Terrorism w nuclear weapons, publ sfty offcl injured, init|Terrorism w nuclear weapons, publ sfty offcl injured, init +C2907498|T037|PT|Y38.5X1D|ICD10CM|Terrorism involving nuclear weapons, public safety official injured, subsequent encounter|Terrorism involving nuclear weapons, public safety official injured, subsequent encounter +C2907498|T037|AB|Y38.5X1D|ICD10CM|Terrorism w nuclear weapons, publ sfty offcl injured, subs|Terrorism w nuclear weapons, publ sfty offcl injured, subs +C2907499|T037|AB|Y38.5X1S|ICD10CM|Terorsm w nuclear weapons, publ sfty offcl injured, sequela|Terorsm w nuclear weapons, publ sfty offcl injured, sequela +C2907499|T037|PT|Y38.5X1S|ICD10CM|Terrorism involving nuclear weapons, public safety official injured, sequela|Terrorism involving nuclear weapons, public safety official injured, sequela +C2907500|T037|AB|Y38.5X2|ICD10CM|Terrorism involving nuclear weapons, civilian injured|Terrorism involving nuclear weapons, civilian injured +C2907500|T037|HT|Y38.5X2|ICD10CM|Terrorism involving nuclear weapons, civilian injured|Terrorism involving nuclear weapons, civilian injured +C2907501|T037|AB|Y38.5X2A|ICD10CM|Terrorism involving nuclear weapons, civilian injured, init|Terrorism involving nuclear weapons, civilian injured, init +C2907501|T037|PT|Y38.5X2A|ICD10CM|Terrorism involving nuclear weapons, civilian injured, initial encounter|Terrorism involving nuclear weapons, civilian injured, initial encounter +C2907502|T037|AB|Y38.5X2D|ICD10CM|Terrorism involving nuclear weapons, civilian injured, subs|Terrorism involving nuclear weapons, civilian injured, subs +C2907502|T037|PT|Y38.5X2D|ICD10CM|Terrorism involving nuclear weapons, civilian injured, subsequent encounter|Terrorism involving nuclear weapons, civilian injured, subsequent encounter +C2907503|T037|PT|Y38.5X2S|ICD10CM|Terrorism involving nuclear weapons, civilian injured, sequela|Terrorism involving nuclear weapons, civilian injured, sequela +C2907503|T037|AB|Y38.5X2S|ICD10CM|Terrorism w nuclear weapons, civilian injured, sequela|Terrorism w nuclear weapons, civilian injured, sequela +C2907504|T037|AB|Y38.5X3|ICD10CM|Terrorism involving nuclear weapons, terrorist injured|Terrorism involving nuclear weapons, terrorist injured +C2907504|T037|HT|Y38.5X3|ICD10CM|Terrorism involving nuclear weapons, terrorist injured|Terrorism involving nuclear weapons, terrorist injured +C2907505|T037|AB|Y38.5X3A|ICD10CM|Terrorism involving nuclear weapons, terrorist injured, init|Terrorism involving nuclear weapons, terrorist injured, init +C2907505|T037|PT|Y38.5X3A|ICD10CM|Terrorism involving nuclear weapons, terrorist injured, initial encounter|Terrorism involving nuclear weapons, terrorist injured, initial encounter +C2907506|T037|AB|Y38.5X3D|ICD10CM|Terrorism involving nuclear weapons, terrorist injured, subs|Terrorism involving nuclear weapons, terrorist injured, subs +C2907506|T037|PT|Y38.5X3D|ICD10CM|Terrorism involving nuclear weapons, terrorist injured, subsequent encounter|Terrorism involving nuclear weapons, terrorist injured, subsequent encounter +C2907507|T037|PT|Y38.5X3S|ICD10CM|Terrorism involving nuclear weapons, terrorist injured, sequela|Terrorism involving nuclear weapons, terrorist injured, sequela +C2907507|T037|AB|Y38.5X3S|ICD10CM|Terrorism w nuclear weapons, terrorist injured, sequela|Terrorism w nuclear weapons, terrorist injured, sequela +C1135425|T037|ET|Y38.6|ICD10CM|Terrorism involving anthrax|Terrorism involving anthrax +C1135322|T037|HT|Y38.6|ICD10CM|Terrorism involving biological weapons|Terrorism involving biological weapons +C1135322|T037|AB|Y38.6|ICD10CM|Terrorism involving biological weapons|Terrorism involving biological weapons +C1135426|T037|ET|Y38.6|ICD10CM|Terrorism involving cholera|Terrorism involving cholera +C1135427|T037|ET|Y38.6|ICD10CM|Terrorism involving smallpox|Terrorism involving smallpox +C1135322|T037|HT|Y38.6X|ICD10CM|Terrorism involving biological weapons|Terrorism involving biological weapons +C1135322|T037|AB|Y38.6X|ICD10CM|Terrorism involving biological weapons|Terrorism involving biological weapons +C2907508|T037|AB|Y38.6X1|ICD10CM|Terrorism involving biolg weapons, publ sfty offcl injured|Terrorism involving biolg weapons, publ sfty offcl injured +C2907508|T037|HT|Y38.6X1|ICD10CM|Terrorism involving biological weapons, public safety official injured|Terrorism involving biological weapons, public safety official injured +C2907509|T037|PT|Y38.6X1A|ICD10CM|Terrorism involving biological weapons, public safety official injured, initial encounter|Terrorism involving biological weapons, public safety official injured, initial encounter +C2907509|T037|AB|Y38.6X1A|ICD10CM|Terrorism w biolg weapons, publ sfty offcl injured, init|Terrorism w biolg weapons, publ sfty offcl injured, init +C2907510|T037|PT|Y38.6X1D|ICD10CM|Terrorism involving biological weapons, public safety official injured, subsequent encounter|Terrorism involving biological weapons, public safety official injured, subsequent encounter +C2907510|T037|AB|Y38.6X1D|ICD10CM|Terrorism w biolg weapons, publ sfty offcl injured, subs|Terrorism w biolg weapons, publ sfty offcl injured, subs +C2907511|T037|PT|Y38.6X1S|ICD10CM|Terrorism involving biological weapons, public safety official injured, sequela|Terrorism involving biological weapons, public safety official injured, sequela +C2907511|T037|AB|Y38.6X1S|ICD10CM|Terrorism w biolg weapons, publ sfty offcl injured, sequela|Terrorism w biolg weapons, publ sfty offcl injured, sequela +C2907512|T037|AB|Y38.6X2|ICD10CM|Terrorism involving biological weapons, civilian injured|Terrorism involving biological weapons, civilian injured +C2907512|T037|HT|Y38.6X2|ICD10CM|Terrorism involving biological weapons, civilian injured|Terrorism involving biological weapons, civilian injured +C2907513|T037|AB|Y38.6X2A|ICD10CM|Terrorism involving biolg weapons, civilian injured, init|Terrorism involving biolg weapons, civilian injured, init +C2907513|T037|PT|Y38.6X2A|ICD10CM|Terrorism involving biological weapons, civilian injured, initial encounter|Terrorism involving biological weapons, civilian injured, initial encounter +C2907514|T037|AB|Y38.6X2D|ICD10CM|Terrorism involving biolg weapons, civilian injured, subs|Terrorism involving biolg weapons, civilian injured, subs +C2907514|T037|PT|Y38.6X2D|ICD10CM|Terrorism involving biological weapons, civilian injured, subsequent encounter|Terrorism involving biological weapons, civilian injured, subsequent encounter +C2907515|T037|AB|Y38.6X2S|ICD10CM|Terrorism involving biolg weapons, civilian injured, sequela|Terrorism involving biolg weapons, civilian injured, sequela +C2907515|T037|PT|Y38.6X2S|ICD10CM|Terrorism involving biological weapons, civilian injured, sequela|Terrorism involving biological weapons, civilian injured, sequela +C2907516|T037|AB|Y38.6X3|ICD10CM|Terrorism involving biological weapons, terrorist injured|Terrorism involving biological weapons, terrorist injured +C2907516|T037|HT|Y38.6X3|ICD10CM|Terrorism involving biological weapons, terrorist injured|Terrorism involving biological weapons, terrorist injured +C2907517|T037|AB|Y38.6X3A|ICD10CM|Terrorism involving biolg weapons, terrorist injured, init|Terrorism involving biolg weapons, terrorist injured, init +C2907517|T037|PT|Y38.6X3A|ICD10CM|Terrorism involving biological weapons, terrorist injured, initial encounter|Terrorism involving biological weapons, terrorist injured, initial encounter +C2907518|T037|AB|Y38.6X3D|ICD10CM|Terrorism involving biolg weapons, terrorist injured, subs|Terrorism involving biolg weapons, terrorist injured, subs +C2907518|T037|PT|Y38.6X3D|ICD10CM|Terrorism involving biological weapons, terrorist injured, subsequent encounter|Terrorism involving biological weapons, terrorist injured, subsequent encounter +C2907519|T037|PT|Y38.6X3S|ICD10CM|Terrorism involving biological weapons, terrorist injured, sequela|Terrorism involving biological weapons, terrorist injured, sequela +C2907519|T037|AB|Y38.6X3S|ICD10CM|Terrorism w biolg weapons, terrorist injured, sequela|Terrorism w biolg weapons, terrorist injured, sequela +C1135323|T037|HT|Y38.7|ICD10CM|Terrorism involving chemical weapons|Terrorism involving chemical weapons +C1135323|T037|AB|Y38.7|ICD10CM|Terrorism involving chemical weapons|Terrorism involving chemical weapons +C1135428|T037|ET|Y38.7|ICD10CM|Terrorism involving gases, fumes, chemicals|Terrorism involving gases, fumes, chemicals +C1135429|T037|ET|Y38.7|ICD10CM|Terrorism involving hydrogen cyanide|Terrorism involving hydrogen cyanide +C1135430|T037|ET|Y38.7|ICD10CM|Terrorism involving phosgene|Terrorism involving phosgene +C1135431|T037|ET|Y38.7|ICD10CM|Terrorism involving sarin|Terrorism involving sarin +C1135323|T037|HT|Y38.7X|ICD10CM|Terrorism involving chemical weapons|Terrorism involving chemical weapons +C1135323|T037|AB|Y38.7X|ICD10CM|Terrorism involving chemical weapons|Terrorism involving chemical weapons +C2907520|T037|HT|Y38.7X1|ICD10CM|Terrorism involving chemical weapons, public safety official injured|Terrorism involving chemical weapons, public safety official injured +C2907520|T037|AB|Y38.7X1|ICD10CM|Terrorism w chemical weapons, publ sfty offcl injured|Terrorism w chemical weapons, publ sfty offcl injured +C2907521|T037|PT|Y38.7X1A|ICD10CM|Terrorism involving chemical weapons, public safety official injured, initial encounter|Terrorism involving chemical weapons, public safety official injured, initial encounter +C2907521|T037|AB|Y38.7X1A|ICD10CM|Terrorism w chemical weapons, publ sfty offcl injured, init|Terrorism w chemical weapons, publ sfty offcl injured, init +C2907522|T037|PT|Y38.7X1D|ICD10CM|Terrorism involving chemical weapons, public safety official injured, subsequent encounter|Terrorism involving chemical weapons, public safety official injured, subsequent encounter +C2907522|T037|AB|Y38.7X1D|ICD10CM|Terrorism w chemical weapons, publ sfty offcl injured, subs|Terrorism w chemical weapons, publ sfty offcl injured, subs +C2907523|T037|AB|Y38.7X1S|ICD10CM|Terorsm w chemical weapons, publ sfty offcl injured, sequela|Terorsm w chemical weapons, publ sfty offcl injured, sequela +C2907523|T037|PT|Y38.7X1S|ICD10CM|Terrorism involving chemical weapons, public safety official injured, sequela|Terrorism involving chemical weapons, public safety official injured, sequela +C2907524|T037|AB|Y38.7X2|ICD10CM|Terrorism involving chemical weapons, civilian injured|Terrorism involving chemical weapons, civilian injured +C2907524|T037|HT|Y38.7X2|ICD10CM|Terrorism involving chemical weapons, civilian injured|Terrorism involving chemical weapons, civilian injured +C2907525|T037|AB|Y38.7X2A|ICD10CM|Terrorism involving chemical weapons, civilian injured, init|Terrorism involving chemical weapons, civilian injured, init +C2907525|T037|PT|Y38.7X2A|ICD10CM|Terrorism involving chemical weapons, civilian injured, initial encounter|Terrorism involving chemical weapons, civilian injured, initial encounter +C2907526|T037|AB|Y38.7X2D|ICD10CM|Terrorism involving chemical weapons, civilian injured, subs|Terrorism involving chemical weapons, civilian injured, subs +C2907526|T037|PT|Y38.7X2D|ICD10CM|Terrorism involving chemical weapons, civilian injured, subsequent encounter|Terrorism involving chemical weapons, civilian injured, subsequent encounter +C2907527|T037|PT|Y38.7X2S|ICD10CM|Terrorism involving chemical weapons, civilian injured, sequela|Terrorism involving chemical weapons, civilian injured, sequela +C2907527|T037|AB|Y38.7X2S|ICD10CM|Terrorism w chemical weapons, civilian injured, sequela|Terrorism w chemical weapons, civilian injured, sequela +C2907528|T037|AB|Y38.7X3|ICD10CM|Terrorism involving chemical weapons, terrorist injured|Terrorism involving chemical weapons, terrorist injured +C2907528|T037|HT|Y38.7X3|ICD10CM|Terrorism involving chemical weapons, terrorist injured|Terrorism involving chemical weapons, terrorist injured +C2907529|T037|PT|Y38.7X3A|ICD10CM|Terrorism involving chemical weapons, terrorist injured, initial encounter|Terrorism involving chemical weapons, terrorist injured, initial encounter +C2907529|T037|AB|Y38.7X3A|ICD10CM|Terrorism w chemical weapons, terrorist injured, init|Terrorism w chemical weapons, terrorist injured, init +C2907530|T037|PT|Y38.7X3D|ICD10CM|Terrorism involving chemical weapons, terrorist injured, subsequent encounter|Terrorism involving chemical weapons, terrorist injured, subsequent encounter +C2907530|T037|AB|Y38.7X3D|ICD10CM|Terrorism w chemical weapons, terrorist injured, subs|Terrorism w chemical weapons, terrorist injured, subs +C2907531|T037|PT|Y38.7X3S|ICD10CM|Terrorism involving chemical weapons, terrorist injured, sequela|Terrorism involving chemical weapons, terrorist injured, sequela +C2907531|T037|AB|Y38.7X3S|ICD10CM|Terrorism w chemical weapons, terrorist injured, sequela|Terrorism w chemical weapons, terrorist injured, sequela +C2907532|T037|AB|Y38.8|ICD10CM|Terrorism involving other and unspecified means|Terrorism involving other and unspecified means +C2907532|T037|HT|Y38.8|ICD10CM|Terrorism involving other and unspecified means|Terrorism involving other and unspecified means +C2907533|T037|AB|Y38.80|ICD10CM|Terrorism involving unspecified means|Terrorism involving unspecified means +C2907533|T037|HT|Y38.80|ICD10CM|Terrorism involving unspecified means|Terrorism involving unspecified means +C2077104|T037|ET|Y38.80|ICD10CM|Terrorism NOS|Terrorism NOS +C2907534|T037|AB|Y38.80XA|ICD10CM|Terrorism involving unspecified means, initial encounter|Terrorism involving unspecified means, initial encounter +C2907534|T037|PT|Y38.80XA|ICD10CM|Terrorism involving unspecified means, initial encounter|Terrorism involving unspecified means, initial encounter +C2907535|T037|AB|Y38.80XD|ICD10CM|Terrorism involving unspecified means, subsequent encounter|Terrorism involving unspecified means, subsequent encounter +C2907535|T037|PT|Y38.80XD|ICD10CM|Terrorism involving unspecified means, subsequent encounter|Terrorism involving unspecified means, subsequent encounter +C2907536|T037|AB|Y38.80XS|ICD10CM|Terrorism involving unspecified means, sequela|Terrorism involving unspecified means, sequela +C2907536|T037|PT|Y38.80XS|ICD10CM|Terrorism involving unspecified means, sequela|Terrorism involving unspecified means, sequela +C2907537|T037|AB|Y38.81|ICD10CM|Terrorism involving suicide bomber|Terrorism involving suicide bomber +C2907537|T037|HT|Y38.81|ICD10CM|Terrorism involving suicide bomber|Terrorism involving suicide bomber +C2907538|T037|AB|Y38.811|ICD10CM|Terrorism involving suicide bomber, publ sfty offcl injured|Terrorism involving suicide bomber, publ sfty offcl injured +C2907538|T037|HT|Y38.811|ICD10CM|Terrorism involving suicide bomber, public safety official injured|Terrorism involving suicide bomber, public safety official injured +C2907539|T037|PT|Y38.811A|ICD10CM|Terrorism involving suicide bomber, public safety official injured, initial encounter|Terrorism involving suicide bomber, public safety official injured, initial encounter +C2907539|T037|AB|Y38.811A|ICD10CM|Terrorism w suicide bomber, publ sfty offcl injured, init|Terrorism w suicide bomber, publ sfty offcl injured, init +C2907540|T037|PT|Y38.811D|ICD10CM|Terrorism involving suicide bomber, public safety official injured, subsequent encounter|Terrorism involving suicide bomber, public safety official injured, subsequent encounter +C2907540|T037|AB|Y38.811D|ICD10CM|Terrorism w suicide bomber, publ sfty offcl injured, subs|Terrorism w suicide bomber, publ sfty offcl injured, subs +C2907541|T037|PT|Y38.811S|ICD10CM|Terrorism involving suicide bomber, public safety official injured, sequela|Terrorism involving suicide bomber, public safety official injured, sequela +C2907541|T037|AB|Y38.811S|ICD10CM|Terrorism w suicide bomber, publ sfty offcl injured, sequela|Terrorism w suicide bomber, publ sfty offcl injured, sequela +C2907542|T037|AB|Y38.812|ICD10CM|Terrorism involving suicide bomber, civilian injured|Terrorism involving suicide bomber, civilian injured +C2907542|T037|HT|Y38.812|ICD10CM|Terrorism involving suicide bomber, civilian injured|Terrorism involving suicide bomber, civilian injured +C2907543|T037|AB|Y38.812A|ICD10CM|Terrorism involving suicide bomber, civilian injured, init|Terrorism involving suicide bomber, civilian injured, init +C2907543|T037|PT|Y38.812A|ICD10CM|Terrorism involving suicide bomber, civilian injured, initial encounter|Terrorism involving suicide bomber, civilian injured, initial encounter +C2907544|T037|AB|Y38.812D|ICD10CM|Terrorism involving suicide bomber, civilian injured, subs|Terrorism involving suicide bomber, civilian injured, subs +C2907544|T037|PT|Y38.812D|ICD10CM|Terrorism involving suicide bomber, civilian injured, subsequent encounter|Terrorism involving suicide bomber, civilian injured, subsequent encounter +C2907545|T037|PT|Y38.812S|ICD10CM|Terrorism involving suicide bomber, civilian injured, sequela|Terrorism involving suicide bomber, civilian injured, sequela +C2907545|T037|AB|Y38.812S|ICD10CM|Terrorism w suicide bomber, civilian injured, sequela|Terrorism w suicide bomber, civilian injured, sequela +C1135432|T037|ET|Y38.89|ICD10CM|Terrorism involving drowning and submersion|Terrorism involving drowning and submersion +C1135433|T037|ET|Y38.89|ICD10CM|Terrorism involving lasers|Terrorism involving lasers +C1135324|T037|HT|Y38.89|ICD10CM|Terrorism involving other means|Terrorism involving other means +C1135324|T037|AB|Y38.89|ICD10CM|Terrorism involving other means|Terrorism involving other means +C1135434|T037|ET|Y38.89|ICD10CM|Terrorism involving piercing or stabbing instruments|Terrorism involving piercing or stabbing instruments +C2907546|T037|AB|Y38.891|ICD10CM|Terrorism involving oth means, publ sfty offcl injured|Terrorism involving oth means, publ sfty offcl injured +C2907546|T037|HT|Y38.891|ICD10CM|Terrorism involving other means, public safety official injured|Terrorism involving other means, public safety official injured +C2907547|T037|AB|Y38.891A|ICD10CM|Terrorism involving oth means, publ sfty offcl injured, init|Terrorism involving oth means, publ sfty offcl injured, init +C2907547|T037|PT|Y38.891A|ICD10CM|Terrorism involving other means, public safety official injured, initial encounter|Terrorism involving other means, public safety official injured, initial encounter +C2907548|T037|AB|Y38.891D|ICD10CM|Terrorism involving oth means, publ sfty offcl injured, subs|Terrorism involving oth means, publ sfty offcl injured, subs +C2907548|T037|PT|Y38.891D|ICD10CM|Terrorism involving other means, public safety official injured, subsequent encounter|Terrorism involving other means, public safety official injured, subsequent encounter +C2907549|T037|PT|Y38.891S|ICD10CM|Terrorism involving other means, public safety official injured, sequela|Terrorism involving other means, public safety official injured, sequela +C2907549|T037|AB|Y38.891S|ICD10CM|Terrorism w oth means, publ sfty offcl injured, sequela|Terrorism w oth means, publ sfty offcl injured, sequela +C2907550|T037|AB|Y38.892|ICD10CM|Terrorism involving other means, civilian injured|Terrorism involving other means, civilian injured +C2907550|T037|HT|Y38.892|ICD10CM|Terrorism involving other means, civilian injured|Terrorism involving other means, civilian injured +C2907551|T037|AB|Y38.892A|ICD10CM|Terrorism involving oth means, civilian injured, init encntr|Terrorism involving oth means, civilian injured, init encntr +C2907551|T037|PT|Y38.892A|ICD10CM|Terrorism involving other means, civilian injured, initial encounter|Terrorism involving other means, civilian injured, initial encounter +C2907552|T037|AB|Y38.892D|ICD10CM|Terrorism involving oth means, civilian injured, subs encntr|Terrorism involving oth means, civilian injured, subs encntr +C2907552|T037|PT|Y38.892D|ICD10CM|Terrorism involving other means, civilian injured, subsequent encounter|Terrorism involving other means, civilian injured, subsequent encounter +C2907553|T037|AB|Y38.892S|ICD10CM|Terrorism involving other means, civilian injured, sequela|Terrorism involving other means, civilian injured, sequela +C2907553|T037|PT|Y38.892S|ICD10CM|Terrorism involving other means, civilian injured, sequela|Terrorism involving other means, civilian injured, sequela +C2907554|T037|AB|Y38.893|ICD10CM|Terrorism involving other means, terrorist injured|Terrorism involving other means, terrorist injured +C2907554|T037|HT|Y38.893|ICD10CM|Terrorism involving other means, terrorist injured|Terrorism involving other means, terrorist injured +C2907555|T037|AB|Y38.893A|ICD10CM|Terrorism involving oth means, terrorist injured, init|Terrorism involving oth means, terrorist injured, init +C2907555|T037|PT|Y38.893A|ICD10CM|Terrorism involving other means, terrorist injured, initial encounter|Terrorism involving other means, terrorist injured, initial encounter +C2907556|T037|AB|Y38.893D|ICD10CM|Terrorism involving oth means, terrorist injured, subs|Terrorism involving oth means, terrorist injured, subs +C2907556|T037|PT|Y38.893D|ICD10CM|Terrorism involving other means, terrorist injured, subsequent encounter|Terrorism involving other means, terrorist injured, subsequent encounter +C2907557|T037|AB|Y38.893S|ICD10CM|Terrorism involving other means, terrorist injured, sequela|Terrorism involving other means, terrorist injured, sequela +C2907557|T037|PT|Y38.893S|ICD10CM|Terrorism involving other means, terrorist injured, sequela|Terrorism involving other means, terrorist injured, sequela +C1135325|T037|AB|Y38.9|ICD10CM|Terrorism, secondary effects|Terrorism, secondary effects +C1135325|T037|HT|Y38.9|ICD10CM|Terrorism, secondary effects|Terrorism, secondary effects +C1135325|T037|HT|Y38.9X|ICD10CM|Terrorism, secondary effects|Terrorism, secondary effects +C1135325|T037|AB|Y38.9X|ICD10CM|Terrorism, secondary effects|Terrorism, secondary effects +C2907558|T037|AB|Y38.9X1|ICD10CM|Terrorism, secondary effects, public safety official injured|Terrorism, secondary effects, public safety official injured +C2907558|T037|HT|Y38.9X1|ICD10CM|Terrorism, secondary effects, public safety official injured|Terrorism, secondary effects, public safety official injured +C2907559|T037|AB|Y38.9X1A|ICD10CM|Terrorism, secondary effects, publ sfty offcl injured, init|Terrorism, secondary effects, publ sfty offcl injured, init +C2907559|T037|PT|Y38.9X1A|ICD10CM|Terrorism, secondary effects, public safety official injured, initial encounter|Terrorism, secondary effects, public safety official injured, initial encounter +C2907560|T037|AB|Y38.9X1D|ICD10CM|Terrorism, secondary effects, publ sfty offcl injured, subs|Terrorism, secondary effects, publ sfty offcl injured, subs +C2907560|T037|PT|Y38.9X1D|ICD10CM|Terrorism, secondary effects, public safety official injured, subsequent encounter|Terrorism, secondary effects, public safety official injured, subsequent encounter +C2907561|T037|AB|Y38.9X1S|ICD10CM|Terrorism, sec effects, publ sfty offcl injured, sequela|Terrorism, sec effects, publ sfty offcl injured, sequela +C2907561|T037|PT|Y38.9X1S|ICD10CM|Terrorism, secondary effects, public safety official injured, sequela|Terrorism, secondary effects, public safety official injured, sequela +C2907562|T037|AB|Y38.9X2|ICD10CM|Terrorism, secondary effects, civilian injured|Terrorism, secondary effects, civilian injured +C2907562|T037|HT|Y38.9X2|ICD10CM|Terrorism, secondary effects, civilian injured|Terrorism, secondary effects, civilian injured +C2907563|T037|AB|Y38.9X2A|ICD10CM|Terrorism, secondary effects, civilian injured, init encntr|Terrorism, secondary effects, civilian injured, init encntr +C2907563|T037|PT|Y38.9X2A|ICD10CM|Terrorism, secondary effects, civilian injured, initial encounter|Terrorism, secondary effects, civilian injured, initial encounter +C2907564|T037|AB|Y38.9X2D|ICD10CM|Terrorism, secondary effects, civilian injured, subs encntr|Terrorism, secondary effects, civilian injured, subs encntr +C2907564|T037|PT|Y38.9X2D|ICD10CM|Terrorism, secondary effects, civilian injured, subsequent encounter|Terrorism, secondary effects, civilian injured, subsequent encounter +C2907565|T037|AB|Y38.9X2S|ICD10CM|Terrorism, secondary effects, civilian injured, sequela|Terrorism, secondary effects, civilian injured, sequela +C2907565|T037|PT|Y38.9X2S|ICD10CM|Terrorism, secondary effects, civilian injured, sequela|Terrorism, secondary effects, civilian injured, sequela +C0481111|T037|HX|Y40|ICD10|Adverse effects in the therapeutic use of systemic antibiotics|Adverse effects in the therapeutic use of systemic antibiotics +C0481111|T037|HS|Y40|ICD10|Systemic antibiotics|Systemic antibiotics +C0481110|T037|HT|Y40-Y59.9|ICD10|Drugs, medicaments and biological substances causing adverse effects in therapeutic use|Drugs, medicaments and biological substances causing adverse effects in therapeutic use +C0274310|T046|HT|Y40-Y84.9|ICD10|Complications of medical and surgical care|Complications of medical and surgical care +C0413443|T046|PX|Y40.0|ICD10|Adverse effects in the therapeutic use of penicillins|Adverse effects in the therapeutic use of penicillins +C0413443|T046|PS|Y40.0|ICD10|Penicillins|Penicillins +C0481112|T037|PX|Y40.1|ICD10|Adverse effects in the therapeutic use of cefalosporins and other beta-lactam antibiotics|Adverse effects in the therapeutic use of cefalosporins and other beta-lactam antibiotics +C0481112|T037|PS|Y40.1|ICD10|Cefalosporins and other beta-lactam antibiotics|Cefalosporins and other beta-lactam antibiotics +C0261764|T037|PX|Y40.2|ICD10|Adverse effects in the therapeutic use of chloramphenicol group|Adverse effects in the therapeutic use of chloramphenicol group +C0851330|T037|PS|Y40.2|ICD10|Chloramphenicol group|Chloramphenicol group +C0481113|T046|PX|Y40.3|ICD10|Adverse effects in the therapeutic use of macrolides|Adverse effects in the therapeutic use of macrolides +C0481113|T046|PS|Y40.3|ICD10|Macrolides|Macrolides +C0481114|T037|PX|Y40.4|ICD10|Adverse effects in the therapeutic use of tetracyclines|Adverse effects in the therapeutic use of tetracyclines +C0481114|T037|PS|Y40.4|ICD10|Tetracyclines|Tetracyclines +C0452208|T037|PX|Y40.5|ICD10|Adverse effects in the therapeutic use of aminoglycosides|Adverse effects in the therapeutic use of aminoglycosides +C0452208|T037|PS|Y40.5|ICD10|Aminoglycosides|Aminoglycosides +C0496523|T037|PX|Y40.6|ICD10|Adverse effects in the therapeutic use of rifamycins|Adverse effects in the therapeutic use of rifamycins +C0496523|T037|PS|Y40.6|ICD10|Rifamycins|Rifamycins +C0878543|T037|PX|Y40.7|ICD10|Adverse effects in the therapeutic use of antifungal antibiotics, systemically used|Adverse effects in the therapeutic use of antifungal antibiotics, systemically used +C0481115|T037|PS|Y40.7|ICD10|Antifungal antibiotics, systemically used|Antifungal antibiotics, systemically used +C0497070|T037|PX|Y40.8|ICD10|Adverse effects in the therapeutic use of other systemic antibiotics|Adverse effects in the therapeutic use of other systemic antibiotics +C0497070|T037|PS|Y40.8|ICD10|Other systemic antibiotics|Other systemic antibiotics +C0481111|T037|PX|Y40.9|ICD10|Adverse effects in the therapeutic use of systemic antibiotic, unspecified|Adverse effects in the therapeutic use of systemic antibiotic, unspecified +C0481111|T037|PS|Y40.9|ICD10|Systemic antibiotic, unspecified|Systemic antibiotic, unspecified +C0481116|T037|HX|Y41|ICD10|Adverse effects in the therapeutic use of other systemic anti-infectives and antiparasitics|Adverse effects in the therapeutic use of other systemic anti-infectives and antiparasitics +C0481116|T037|HS|Y41|ICD10|Other systemic anti-infectives and antiparasitics|Other systemic anti-infectives and antiparasitics +C0261773|T046|PX|Y41.0|ICD10|Adverse effects in the therapeutic use of sulfonamides|Adverse effects in the therapeutic use of sulfonamides +C0261773|T046|PS|Y41.0|ICD10|Sulfonamides|Sulfonamides +C0413415|T046|PX|Y41.1|ICD10|Adverse effects in the therapeutic use of antimycobacterial drugs|Adverse effects in the therapeutic use of antimycobacterial drugs +C0413415|T046|PS|Y41.1|ICD10|Antimycobacterial drugs|Antimycobacterial drugs +C0261777|T037|PX|Y41.2|ICD10|Adverse effects in the therapeutic use of antimalarials and drugs acting on other blood protozoa|Adverse effects in the therapeutic use of antimalarials and drugs acting on other blood protozoa +C0261777|T037|PS|Y41.2|ICD10|Antimalarials and drugs acting on other blood protozoa|Antimalarials and drugs acting on other blood protozoa +C0878540|T037|PX|Y41.3|ICD10|Adverse effects in the therapeutic use of other antiprotozoal drugs|Adverse effects in the therapeutic use of other antiprotozoal drugs +C0261778|T037|PS|Y41.3|ICD10|Other antiprotozoal drugs|Other antiprotozoal drugs +C0413512|T046|PX|Y41.4|ICD10|Adverse effects in the therapeutic use of anthelminthics|Adverse effects in the therapeutic use of anthelminthics +C0413512|T046|PS|Y41.4|ICD10|Anthelminthics|Anthelminthics +C0261780|T046|PX|Y41.5|ICD10|Adverse effects in the therapeutic use of antiviral drugs|Adverse effects in the therapeutic use of antiviral drugs +C0261780|T046|PS|Y41.5|ICD10|Antiviral drugs|Antiviral drugs +C0481117|T037|PS|Y41.8|ICD10|Other specified systemic anti-infectives and antiparasitics|Other specified systemic anti-infectives and antiparasitics +C0481118|T046|PX|Y41.9|ICD10|Adverse effects in the therapeutic use of systemic anti-infective and antiparasitic, unspecified|Adverse effects in the therapeutic use of systemic anti-infective and antiparasitic, unspecified +C0481118|T046|PS|Y41.9|ICD10|Systemic anti-infective and antiparasitic, unspecified|Systemic anti-infective and antiparasitic, unspecified +C0869124|T037|HS|Y42|ICD10|Hormones and their synthetic substitutes and antagonists, not elsewhere classified|Hormones and their synthetic substitutes and antagonists, not elsewhere classified +C0481120|T037|PX|Y42.0|ICD10AE|Adverse effects in the therapeutic use of glucocorticoids and synthetic analogs|Adverse effects in the therapeutic use of glucocorticoids and synthetic analogs +C0481120|T037|PX|Y42.0|ICD10|Adverse effects in the therapeutic use of glucocorticoids and synthetic analogues|Adverse effects in the therapeutic use of glucocorticoids and synthetic analogues +C0481120|T037|PS|Y42.0|ICD10AE|Glucocorticoids and synthetic analogs|Glucocorticoids and synthetic analogs +C0481120|T037|PS|Y42.0|ICD10|Glucocorticoids and synthetic analogues|Glucocorticoids and synthetic analogues +C0452209|T037|PX|Y42.1|ICD10|Adverse effects in the therapeutic use of thyroid hormones and substitutes|Adverse effects in the therapeutic use of thyroid hormones and substitutes +C0452209|T037|PS|Y42.1|ICD10|Thyroid hormones and substitutes|Thyroid hormones and substitutes +C0261792|T037|PX|Y42.2|ICD10|Adverse effects in the therapeutic use of antithyroid drugs|Adverse effects in the therapeutic use of antithyroid drugs +C0851314|T037|PS|Y42.2|ICD10|Antithyroid drugs|Antithyroid drugs +C0481899|T037|PX|Y42.3|ICD10|Adverse effects in the therapeutic use of insulin and oral hypoglycaemic [antidiabetic] drugs|Adverse effects in the therapeutic use of insulin and oral hypoglycaemic [antidiabetic] drugs +C0481899|T037|PX|Y42.3|ICD10AE|Adverse effects in the therapeutic use of insulin and oral hypoglycemic [antidiabetic] drugs|Adverse effects in the therapeutic use of insulin and oral hypoglycemic [antidiabetic] drugs +C0481899|T037|PS|Y42.3|ICD10|Insulin and oral hypoglycaemic [antidiabetic] drugs|Insulin and oral hypoglycaemic [antidiabetic] drugs +C0481899|T037|PS|Y42.3|ICD10AE|Insulin and oral hypoglycemic [antidiabetic] drugs|Insulin and oral hypoglycemic [antidiabetic] drugs +C0481121|T046|PX|Y42.4|ICD10|Adverse effects in the therapeutic use of oral contraceptives|Adverse effects in the therapeutic use of oral contraceptives +C0481121|T046|PS|Y42.4|ICD10|Oral contraceptives|Oral contraceptives +C0481900|T037|PX|Y42.5|ICD10|Adverse effects in the therapeutic use of other estrogens and progestogens|Adverse effects in the therapeutic use of other estrogens and progestogens +C0481900|T037|PS|Y42.5|ICD10|Other estrogens and progestogens|Other estrogens and progestogens +C0869125|T037|PS|Y42.6|ICD10|Antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified|Antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified +C0261785|T037|PX|Y42.7|ICD10|Adverse effects in the therapeutic use of androgens and anabolic congeners|Adverse effects in the therapeutic use of androgens and anabolic congeners +C0261785|T037|PS|Y42.7|ICD10|Androgens and anabolic congeners|Androgens and anabolic congeners +C0261793|T037|PS|Y42.8|ICD10|Other and unspecified hormones and their synthetic substitutes|Other and unspecified hormones and their synthetic substitutes +C0481123|T037|PX|Y42.9|ICD10|Adverse effects in the therapeutic use of other and unspecified hormone antagonists|Adverse effects in the therapeutic use of other and unspecified hormone antagonists +C0481123|T037|PS|Y42.9|ICD10|Other and unspecified hormone antagonists|Other and unspecified hormone antagonists +C0261794|T046|HX|Y43|ICD10|Adverse effects in the therapeutic use of primarily systemic agents|Adverse effects in the therapeutic use of primarily systemic agents +C0261794|T046|HS|Y43|ICD10|Primarily systemic agents|Primarily systemic agents +C0261795|T046|PX|Y43.0|ICD10|Adverse effects in the therapeutic use of antiallergic and antiemetic drugs|Adverse effects in the therapeutic use of antiallergic and antiemetic drugs +C0261795|T046|PS|Y43.0|ICD10|Antiallergic and antiemetic drugs|Antiallergic and antiemetic drugs +C0481124|T037|PX|Y43.1|ICD10|Adverse effects in the therapeutic use of antineoplastic antimetabolites|Adverse effects in the therapeutic use of antineoplastic antimetabolites +C0481124|T037|PS|Y43.1|ICD10|Antineoplastic antimetabolites|Antineoplastic antimetabolites +C0496524|T037|PX|Y43.2|ICD10|Adverse effects in the therapeutic use of antineoplastic natural products|Adverse effects in the therapeutic use of antineoplastic natural products +C0496524|T037|PS|Y43.2|ICD10|Antineoplastic natural products|Antineoplastic natural products +C0496525|T037|PX|Y43.3|ICD10|Adverse effects in the therapeutic use of other antineoplastic drugs|Adverse effects in the therapeutic use of other antineoplastic drugs +C0496525|T037|PS|Y43.3|ICD10|Other antineoplastic drugs|Other antineoplastic drugs +C0496526|T037|PX|Y43.4|ICD10|Adverse effects in the therapeutic use of immunosuppressive agents|Adverse effects in the therapeutic use of immunosuppressive agents +C0496526|T037|PS|Y43.4|ICD10|Immunosuppressive agents|Immunosuppressive agents +C0481125|T037|PS|Y43.5|ICD10|Acidifying and alkalizing agents|Acidifying and alkalizing agents +C0481125|T037|PX|Y43.5|ICD10|Adverse effects in the therapeutic use of acidifying and alkalizing agents|Adverse effects in the therapeutic use of acidifying and alkalizing agents +C0869501|T037|PX|Y43.6|ICD10|Adverse effects in the therapeutic use of enzymes, not elsewhere classified|Adverse effects in the therapeutic use of enzymes, not elsewhere classified +C0869501|T037|PS|Y43.6|ICD10|Enzymes, not elsewhere classified|Enzymes, not elsewhere classified +C0869126|T037|PX|Y43.8|ICD10|Adverse effects in the therapeutic use of other primarily systemic agents, not elsewhere classified|Adverse effects in the therapeutic use of other primarily systemic agents, not elsewhere classified +C0869126|T037|PS|Y43.8|ICD10|Other primarily systemic agents, not elsewhere classified|Other primarily systemic agents, not elsewhere classified +C0481127|T037|PX|Y43.9|ICD10|Adverse effects in the therapeutic use of primarily systemic agent, unspecified|Adverse effects in the therapeutic use of primarily systemic agent, unspecified +C0481127|T037|PS|Y43.9|ICD10|Primarily systemic agent, unspecified|Primarily systemic agent, unspecified +C0261803|T046|HX|Y44|ICD10|Adverse effects in the therapeutic use of agents primarily affecting blood constituents|Adverse effects in the therapeutic use of agents primarily affecting blood constituents +C0261803|T046|HS|Y44|ICD10|Agents primarily affecting blood constituents|Agents primarily affecting blood constituents +C0481128|T037|PS|Y44.0|ICD10|Iron preparations and other anti-hypochromic-anaemia preparations|Iron preparations and other anti-hypochromic-anaemia preparations +C0481128|T037|PS|Y44.0|ICD10AE|Iron preparations and other anti-hypochromic-anemia preparations|Iron preparations and other anti-hypochromic-anemia preparations +C0481129|T037|PS|Y44.1|ICD10|Vitamin B12, folic acid and other anti-megaloblastic-anaemia preparations|Vitamin B12, folic acid and other anti-megaloblastic-anaemia preparations +C0481129|T037|PS|Y44.1|ICD10AE|Vitamin B12, folic acid and other anti-megaloblastic-anemia preparations|Vitamin B12, folic acid and other anti-megaloblastic-anemia preparations +C0261806|T037|PX|Y44.2|ICD10|Adverse effects in the therapeutic use of anticoagulants|Adverse effects in the therapeutic use of anticoagulants +C0261806|T037|PS|Y44.2|ICD10|Anticoagulants|Anticoagulants +C0481130|T037|PX|Y44.3|ICD10|Adverse effects in the therapeutic use of anticoagulant antagonists, vitamin K and other coagulants|Adverse effects in the therapeutic use of anticoagulant antagonists, vitamin K and other coagulants +C0481130|T037|PS|Y44.3|ICD10|Anticoagulant antagonists, vitamin K and other coagulants|Anticoagulant antagonists, vitamin K and other coagulants +C0481131|T037|PX|Y44.4|ICD10|Adverse effects in the therapeutic use of antithrombotic drugs [platelet-aggregation inhibitors]|Adverse effects in the therapeutic use of antithrombotic drugs [platelet-aggregation inhibitors] +C0481131|T037|PS|Y44.4|ICD10|Antithrombotic drugs [platelet-aggregation inhibitors]|Antithrombotic drugs [platelet-aggregation inhibitors] +C0481132|T037|PX|Y44.5|ICD10|Adverse effects in the therapeutic use of thrombolytic drugs|Adverse effects in the therapeutic use of thrombolytic drugs +C0481132|T037|PS|Y44.5|ICD10|Thrombolytic drugs|Thrombolytic drugs +C0261811|T046|PX|Y44.6|ICD10|Adverse effects in the therapeutic use of natural blood and blood products|Adverse effects in the therapeutic use of natural blood and blood products +C0261811|T046|PS|Y44.6|ICD10|Natural blood and blood products|Natural blood and blood products +C0496527|T046|PX|Y44.7|ICD10|Adverse effects in the therapeutic use of plasma substitutes|Adverse effects in the therapeutic use of plasma substitutes +C0496527|T046|PS|Y44.7|ICD10|Plasma substitutes|Plasma substitutes +C0481133|T037|PX|Y44.9|ICD10|Adverse effects in the therapeutic use of other and unspecified agents affecting blood constituents|Adverse effects in the therapeutic use of other and unspecified agents affecting blood constituents +C0481133|T037|PS|Y44.9|ICD10|Other and unspecified agents affecting blood constituents|Other and unspecified agents affecting blood constituents +C0481134|T037|HX|Y45|ICD10|Adverse effects in the therapeutic use of analgesics, antipyretics and anti-inflammatory drugs|Adverse effects in the therapeutic use of analgesics, antipyretics and anti-inflammatory drugs +C0481134|T037|HS|Y45|ICD10|Analgesics, antipyretics and anti-inflammatory drugs|Analgesics, antipyretics and anti-inflammatory drugs +C0481135|T037|PX|Y45.0|ICD10|Adverse effects in the therapeutic use of opioids and related analgesics|Adverse effects in the therapeutic use of opioids and related analgesics +C0481135|T037|PS|Y45.0|ICD10|Opioids and related analgesics|Opioids and related analgesics +C0261818|T037|PX|Y45.1|ICD10|Adverse effects in the therapeutic use of salicylates|Adverse effects in the therapeutic use of salicylates +C0851323|T037|PS|Y45.1|ICD10|Salicylates|Salicylates +C0481136|T037|PX|Y45.2|ICD10|Adverse effects in the therapeutic use of propionic acid derivatives|Adverse effects in the therapeutic use of propionic acid derivatives +C0481136|T037|PS|Y45.2|ICD10|Propionic acid derivatives|Propionic acid derivatives +C0481137|T037|PX|Y45.3|ICD10|Adverse effects in the therapeutic use of other nonsteroidal anti-inflammatory drugs [NSAID]|Adverse effects in the therapeutic use of other nonsteroidal anti-inflammatory drugs [NSAID] +C0481137|T037|PS|Y45.3|ICD10|Other nonsteroidal anti-inflammatory drugs [NSAID]|Other nonsteroidal anti-inflammatory drugs [NSAID] +C0481138|T046|PX|Y45.4|ICD10|Adverse effects in the therapeutic use of antirheumatics|Adverse effects in the therapeutic use of antirheumatics +C0481138|T046|PS|Y45.4|ICD10|Antirheumatics|Antirheumatics +C0481139|T037|PS|Y45.5|ICD10|4-Aminophenol derivatives|4-Aminophenol derivatives +C0481139|T037|PX|Y45.5|ICD10|Adverse effects in the therapeutic use of 4-aminophenol derivatives|Adverse effects in the therapeutic use of 4-aminophenol derivatives +C0481140|T037|PX|Y45.8|ICD10|Adverse effects in the therapeutic use of other analgesics and antipyretics|Adverse effects in the therapeutic use of other analgesics and antipyretics +C0481140|T037|PS|Y45.8|ICD10|Other analgesics and antipyretics|Other analgesics and antipyretics +C0481141|T037|PS|Y45.9|ICD10|Analgesic, antipyretic and anti-inflammatory drug, unspecified|Analgesic, antipyretic and anti-inflammatory drug, unspecified +C0877806|T046|HX|Y46|ICD10|Adverse effects in the therapeutic use of antiepileptics and antiparkinsonism drugs|Adverse effects in the therapeutic use of antiepileptics and antiparkinsonism drugs +C0481142|T037|HS|Y46|ICD10|Antiepileptics and antiparkinsonism drugs|Antiepileptics and antiparkinsonism drugs +C0261828|T037|PX|Y46.0|ICD10|Adverse effects in the therapeutic use of succinimides|Adverse effects in the therapeutic use of succinimides +C0851324|T037|PS|Y46.0|ICD10|Succinimides|Succinimides +C0481143|T037|PX|Y46.1|ICD10|Adverse effects in the therapeutic use of oxazolidinediones|Adverse effects in the therapeutic use of oxazolidinediones +C0481143|T037|PS|Y46.1|ICD10|Oxazolidinediones|Oxazolidinediones +C0878541|T037|PX|Y46.2|ICD10|Adverse effects in the therapeutic use of hydantoin derivatives|Adverse effects in the therapeutic use of hydantoin derivatives +C0261827|T037|PS|Y46.2|ICD10|Hydantoin derivatives|Hydantoin derivatives +C0481144|T037|PX|Y46.3|ICD10|Adverse effects in the therapeutic use of deoxybarbiturates|Adverse effects in the therapeutic use of deoxybarbiturates +C0481144|T037|PS|Y46.3|ICD10|Deoxybarbiturates|Deoxybarbiturates +C0481145|T037|PX|Y46.4|ICD10|Adverse effects in the therapeutic use of iminostilbenes|Adverse effects in the therapeutic use of iminostilbenes +C0481145|T037|PS|Y46.4|ICD10|Iminostilbenes|Iminostilbenes +C0452210|T037|PX|Y46.5|ICD10|Adverse effects in the therapeutic use of valproic acid|Adverse effects in the therapeutic use of valproic acid +C0452210|T037|PS|Y46.5|ICD10|Valproic acid|Valproic acid +C0481146|T037|PX|Y46.6|ICD10|Adverse effects in the therapeutic use of other and unspecified antiepileptics|Adverse effects in the therapeutic use of other and unspecified antiepileptics +C0481146|T037|PS|Y46.6|ICD10|Other and unspecified antiepileptics|Other and unspecified antiepileptics +C0481147|T046|PX|Y46.7|ICD10|Adverse effects in the therapeutic use of antiparkinsonism drugs|Adverse effects in the therapeutic use of antiparkinsonism drugs +C0481147|T046|PS|Y46.7|ICD10|Antiparkinsonism drugs|Antiparkinsonism drugs +C0481148|T037|PX|Y46.8|ICD10|Adverse effects in the therapeutic use of antispasticity drugs|Adverse effects in the therapeutic use of antispasticity drugs +C0481148|T037|PS|Y46.8|ICD10|Antispasticity drugs|Antispasticity drugs +C0481149|T037|HX|Y47|ICD10|Adverse effects in the therapeutic use of sedatives, hypnotics and antianxiety drugs|Adverse effects in the therapeutic use of sedatives, hypnotics and antianxiety drugs +C0481149|T037|HS|Y47|ICD10|Sedatives, hypnotics and antianxiety drugs|Sedatives, hypnotics and antianxiety drugs +C0869127|T037|PX|Y47.0|ICD10|Adverse effects in the therapeutic use of barbiturates, not elsewhere classified|Adverse effects in the therapeutic use of barbiturates, not elsewhere classified +C0869127|T037|PS|Y47.0|ICD10|Barbiturates, not elsewhere classified|Barbiturates, not elsewhere classified +C0481151|T037|PX|Y47.1|ICD10|Adverse effects in the therapeutic use of benzodiazepines|Adverse effects in the therapeutic use of benzodiazepines +C0481151|T037|PS|Y47.1|ICD10|Benzodiazepines|Benzodiazepines +C0481152|T037|PX|Y47.2|ICD10|Adverse effects in the therapeutic use of cloral derivatives|Adverse effects in the therapeutic use of cloral derivatives +C0481152|T037|PS|Y47.2|ICD10|Cloral derivatives|Cloral derivatives +C0261834|T037|PX|Y47.3|ICD10|Adverse effects in the therapeutic use of paraldehyde|Adverse effects in the therapeutic use of paraldehyde +C0851325|T037|PS|Y47.3|ICD10|Paraldehyde|Paraldehyde +C0261835|T037|PX|Y47.4|ICD10|Adverse effects in the therapeutic use of bromine compounds|Adverse effects in the therapeutic use of bromine compounds +C0261835|T037|PS|Y47.4|ICD10|Bromine compounds|Bromine compounds +C0869128|T037|PX|Y47.5|ICD10|Adverse effects in the therapeutic use of mixed sedatives and hypnotics, not elsewhere classified|Adverse effects in the therapeutic use of mixed sedatives and hypnotics, not elsewhere classified +C0869128|T037|PS|Y47.5|ICD10|Mixed sedatives and hypnotics, not elsewhere classified|Mixed sedatives and hypnotics, not elsewhere classified +C0481154|T037|PX|Y47.8|ICD10|Adverse effects in the therapeutic use of other sedatives, hypnotics and antianxiety drugs|Adverse effects in the therapeutic use of other sedatives, hypnotics and antianxiety drugs +C0481154|T037|PS|Y47.8|ICD10|Other sedatives, hypnotics and antianxiety drugs|Other sedatives, hypnotics and antianxiety drugs +C0481155|T037|PX|Y47.9|ICD10|Adverse effects in the therapeutic use of sedative, hypnotic and antianxiety drug, unspecified|Adverse effects in the therapeutic use of sedative, hypnotic and antianxiety drug, unspecified +C0481155|T037|PS|Y47.9|ICD10|Sedative, hypnotic and antianxiety drug, unspecified|Sedative, hypnotic and antianxiety drug, unspecified +C0481156|T037|HX|Y48|ICD10|Adverse effects in the therapeutic use of anaesthetics and therapeutic gases|Adverse effects in the therapeutic use of anaesthetics and therapeutic gases +C0481156|T037|HX|Y48|ICD10AE|Adverse effects in the therapeutic use of anesthetics and therapeutic gases|Adverse effects in the therapeutic use of anesthetics and therapeutic gases +C0481156|T037|HS|Y48|ICD10|Anaesthetics and therapeutic gases|Anaesthetics and therapeutic gases +C0481156|T037|HS|Y48|ICD10AE|Anesthetics and therapeutic gases|Anesthetics and therapeutic gases +C0481157|T037|PX|Y48.0|ICD10|Adverse effects in the therapeutic use of inhaled anaesthetics|Adverse effects in the therapeutic use of inhaled anaesthetics +C0481157|T037|PX|Y48.0|ICD10AE|Adverse effects in the therapeutic use of inhaled anesthetics|Adverse effects in the therapeutic use of inhaled anesthetics +C0481157|T037|PS|Y48.0|ICD10|Inhaled anaesthetics|Inhaled anaesthetics +C0481157|T037|PS|Y48.0|ICD10AE|Inhaled anesthetics|Inhaled anesthetics +C0481158|T037|PX|Y48.1|ICD10|Adverse effects in the therapeutic use of parenteral anaesthetics|Adverse effects in the therapeutic use of parenteral anaesthetics +C0481158|T037|PX|Y48.1|ICD10AE|Adverse effects in the therapeutic use of parenteral anesthetics|Adverse effects in the therapeutic use of parenteral anesthetics +C0481158|T037|PS|Y48.1|ICD10|Parenteral anaesthetics|Parenteral anaesthetics +C0481158|T037|PS|Y48.1|ICD10AE|Parenteral anesthetics|Parenteral anesthetics +C0261846|T037|PX|Y48.2|ICD10|Adverse effects in the therapeutic use of other and unspecified general anaesthetics|Adverse effects in the therapeutic use of other and unspecified general anaesthetics +C0261846|T037|PX|Y48.2|ICD10AE|Adverse effects in the therapeutic use of other and unspecified general anesthetics|Adverse effects in the therapeutic use of other and unspecified general anesthetics +C0261846|T037|PS|Y48.2|ICD10|Other and unspecified general anaesthetics|Other and unspecified general anaesthetics +C0261846|T037|PS|Y48.2|ICD10AE|Other and unspecified general anesthetics|Other and unspecified general anesthetics +C0452211|T046|PX|Y48.3|ICD10|Adverse effects in the therapeutic use of local anaesthetics|Adverse effects in the therapeutic use of local anaesthetics +C0452211|T046|PX|Y48.3|ICD10AE|Adverse effects in the therapeutic use of local anesthetics|Adverse effects in the therapeutic use of local anesthetics +C0452211|T046|PS|Y48.3|ICD10|Local anaesthetics|Local anaesthetics +C0452211|T046|PS|Y48.3|ICD10AE|Local anesthetics|Local anesthetics +C0481159|T037|PX|Y48.4|ICD10|Adverse effects in the therapeutic use of anaesthetic, unspecified|Adverse effects in the therapeutic use of anaesthetic, unspecified +C0481159|T037|PX|Y48.4|ICD10AE|Adverse effects in the therapeutic use of anesthetic, unspecified|Adverse effects in the therapeutic use of anesthetic, unspecified +C0481159|T037|PS|Y48.4|ICD10|Anaesthetic, unspecified|Anaesthetic, unspecified +C0481159|T037|PS|Y48.4|ICD10AE|Anesthetic, unspecified|Anesthetic, unspecified +C0481160|T037|PX|Y48.5|ICD10|Adverse effects in the therapeutic use of therapeutic gases|Adverse effects in the therapeutic use of therapeutic gases +C0481160|T037|PS|Y48.5|ICD10|Therapeutic gases|Therapeutic gases +C0869129|T037|HX|Y49|ICD10|Adverse effects in the therapeutic use of psychotropic drugs, not elsewhere classified|Adverse effects in the therapeutic use of psychotropic drugs, not elsewhere classified +C0869129|T037|HS|Y49|ICD10|Psychotropic drugs, not elsewhere classified|Psychotropic drugs, not elsewhere classified +C0481162|T037|PX|Y49.0|ICD10|Adverse effects in the therapeutic use of tricyclic and tetracyclic antidepressants|Adverse effects in the therapeutic use of tricyclic and tetracyclic antidepressants +C0481162|T037|PS|Y49.0|ICD10|Tricyclic and tetracyclic antidepressants|Tricyclic and tetracyclic antidepressants +C0452212|T037|PX|Y49.1|ICD10|Adverse effects in the therapeutic use of monoamine-oxidase-inhibitor antidepressants|Adverse effects in the therapeutic use of monoamine-oxidase-inhibitor antidepressants +C0452212|T037|PS|Y49.1|ICD10|Monoamine-oxidase-inhibitor antidepressants|Monoamine-oxidase-inhibitor antidepressants +C0481163|T037|PX|Y49.2|ICD10|Adverse effects in the therapeutic use of other and unspecified antidepressants|Adverse effects in the therapeutic use of other and unspecified antidepressants +C0481163|T037|PS|Y49.2|ICD10|Other and unspecified antidepressants|Other and unspecified antidepressants +C0452213|T037|PX|Y49.3|ICD10|Adverse effects in the therapeutic use of phenothiazine antipsychotics and neuroleptics|Adverse effects in the therapeutic use of phenothiazine antipsychotics and neuroleptics +C0452213|T037|PS|Y49.3|ICD10|Phenothiazine antipsychotics and neuroleptics|Phenothiazine antipsychotics and neuroleptics +C0481164|T037|PX|Y49.4|ICD10|Adverse effects in the therapeutic use of butyrophenone and thioxanthene neuroleptics|Adverse effects in the therapeutic use of butyrophenone and thioxanthene neuroleptics +C0481164|T037|PS|Y49.4|ICD10|Butyrophenone and thioxanthene neuroleptics|Butyrophenone and thioxanthene neuroleptics +C0481165|T037|PX|Y49.5|ICD10|Adverse effects in the therapeutic use of other antipsychotics and neuroleptics|Adverse effects in the therapeutic use of other antipsychotics and neuroleptics +C0481165|T037|PS|Y49.5|ICD10|Other antipsychotics and neuroleptics|Other antipsychotics and neuroleptics +C0261858|T037|PX|Y49.6|ICD10|Adverse effects in the therapeutic use of psychodysleptics [hallucinogens]|Adverse effects in the therapeutic use of psychodysleptics [hallucinogens] +C0261858|T037|PS|Y49.6|ICD10|Psychodysleptics [hallucinogens]|Psychodysleptics [hallucinogens] +C0481166|T037|PX|Y49.7|ICD10|Adverse effects in the therapeutic use of psychostimulants with abuse potential|Adverse effects in the therapeutic use of psychostimulants with abuse potential +C0481166|T037|PS|Y49.7|ICD10|Psychostimulants with abuse potential|Psychostimulants with abuse potential +C0869130|T037|PX|Y49.8|ICD10|Adverse effects in the therapeutic use of other psychotropic drugs, not elsewhere classified|Adverse effects in the therapeutic use of other psychotropic drugs, not elsewhere classified +C0869130|T037|PS|Y49.8|ICD10|Other psychotropic drugs, not elsewhere classified|Other psychotropic drugs, not elsewhere classified +C0261861|T037|PX|Y49.9|ICD10|Adverse effects in the therapeutic use of psychotropic drug, unspecified|Adverse effects in the therapeutic use of psychotropic drug, unspecified +C0261861|T037|PS|Y49.9|ICD10|Psychotropic drug, unspecified|Psychotropic drug, unspecified +C0868886|T037|HS|Y50|ICD10|Central nervous system stimulants, not elsewhere classified|Central nervous system stimulants, not elsewhere classified +C0261863|T046|PX|Y50.0|ICD10|Adverse effects in the therapeutic use of analeptics|Adverse effects in the therapeutic use of analeptics +C0261863|T046|PS|Y50.0|ICD10|Analeptics|Analeptics +C0481168|T037|PX|Y50.1|ICD10|Adverse effects in the therapeutic use of opioid receptor antagonists|Adverse effects in the therapeutic use of opioid receptor antagonists +C0481168|T037|PS|Y50.1|ICD10|Opioid receptor antagonists|Opioid receptor antagonists +C0869131|T037|PX|Y50.2|ICD10|Adverse effects in the therapeutic use of methylxanthines, not elsewhere classified|Adverse effects in the therapeutic use of methylxanthines, not elsewhere classified +C0869131|T037|PS|Y50.2|ICD10|Methylxanthines, not elsewhere classified|Methylxanthines, not elsewhere classified +C0481170|T037|PX|Y50.8|ICD10|Adverse effects in the therapeutic use of other central nervous system stimulants|Adverse effects in the therapeutic use of other central nervous system stimulants +C0481170|T037|PS|Y50.8|ICD10|Other central nervous system stimulants|Other central nervous system stimulants +C0569621|T046|PX|Y50.9|ICD10|Adverse effects in the therapeutic use of central nervous system stimulant, unspecified|Adverse effects in the therapeutic use of central nervous system stimulant, unspecified +C0569621|T046|PS|Y50.9|ICD10|Central nervous system stimulant, unspecified|Central nervous system stimulant, unspecified +C0543418|T046|HX|Y51|ICD10|Adverse effects in the therapeutic use of drugs primarily affecting the autonomic nervous system|Adverse effects in the therapeutic use of drugs primarily affecting the autonomic nervous system +C0543418|T046|HS|Y51|ICD10|Drugs primarily affecting the autonomic nervous system|Drugs primarily affecting the autonomic nervous system +C0481172|T037|PX|Y51.0|ICD10|Adverse effects in the therapeutic use of anticholinesterase agents|Adverse effects in the therapeutic use of anticholinesterase agents +C0481172|T037|PS|Y51.0|ICD10|Anticholinesterase agents|Anticholinesterase agents +C0481173|T037|PX|Y51.1|ICD10|Adverse effects in the therapeutic use of other parasympathomimetics [cholinergics]|Adverse effects in the therapeutic use of other parasympathomimetics [cholinergics] +C0481173|T037|PS|Y51.1|ICD10|Other parasympathomimetics [cholinergics]|Other parasympathomimetics [cholinergics] +C0869132|T037|PX|Y51.2|ICD10|Adverse effects in the therapeutic use of ganglionic blocking drugs, not elsewhere classified|Adverse effects in the therapeutic use of ganglionic blocking drugs, not elsewhere classified +C0869132|T037|PS|Y51.2|ICD10|Ganglionic blocking drugs, not elsewhere classified|Ganglionic blocking drugs, not elsewhere classified +C0869134|T037|PS|Y51.4|ICD10|Predominantly alpha-adrenoreceptor agonists, not elsewhere classified|Predominantly alpha-adrenoreceptor agonists, not elsewhere classified +C0869135|T037|PS|Y51.5|ICD10|Predominantly beta-adrenoreceptor agonists, not elsewhere classified|Predominantly beta-adrenoreceptor agonists, not elsewhere classified +C0869136|T037|PX|Y51.6|ICD10|Adverse effects in the therapeutic use of alpha-adrenoreceptor antagonists, not elsewhere classified|Adverse effects in the therapeutic use of alpha-adrenoreceptor antagonists, not elsewhere classified +C0869136|T037|PS|Y51.6|ICD10|Alpha-adrenoreceptor antagonists, not elsewhere classified|Alpha-adrenoreceptor antagonists, not elsewhere classified +C0869137|T037|PX|Y51.7|ICD10|Adverse effects in the therapeutic use of beta-adrenoreceptor antagonists, not elsewhere classified|Adverse effects in the therapeutic use of beta-adrenoreceptor antagonists, not elsewhere classified +C0869137|T037|PS|Y51.7|ICD10|Beta-adrenoreceptor antagonists, not elsewhere classified|Beta-adrenoreceptor antagonists, not elsewhere classified +C0869138|T037|PS|Y51.8|ICD10|Centrally acting and adrenergic-neuron-blocking agents, not elsewhere classified|Centrally acting and adrenergic-neuron-blocking agents, not elsewhere classified +C0481181|T037|PS|Y51.9|ICD10|Other and unspecified drugs primarily affecting the autonomic nervous system|Other and unspecified drugs primarily affecting the autonomic nervous system +C1533672|T046|HX|Y52|ICD10|Adverse effects in the therapeutic use of agents primarily affecting the cardiovascular system|Adverse effects in the therapeutic use of agents primarily affecting the cardiovascular system +C1533672|T046|HS|Y52|ICD10|Agents primarily affecting the cardiovascular system|Agents primarily affecting the cardiovascular system +C0497072|T037|PX|Y52.0|ICD10|Adverse effects in the therapeutic use of cardiac-stimulant glycosides and drugs of similar action|Adverse effects in the therapeutic use of cardiac-stimulant glycosides and drugs of similar action +C0497072|T037|PS|Y52.0|ICD10|Cardiac-stimulant glycosides and drugs of similar action|Cardiac-stimulant glycosides and drugs of similar action +C0878542|T037|PX|Y52.1|ICD10|Adverse effects in the therapeutic use of calcium-channel blockers|Adverse effects in the therapeutic use of calcium-channel blockers +C0481183|T037|PS|Y52.1|ICD10|Calcium-channel blockers|Calcium-channel blockers +C0869184|T037|PX|Y52.2|ICD10|Adverse effects in the therapeutic use of other antidysrhythmic drugs, not elsewhere classified|Adverse effects in the therapeutic use of other antidysrhythmic drugs, not elsewhere classified +C0869184|T037|PS|Y52.2|ICD10|Other antidysrhythmic drugs, not elsewhere classified|Other antidysrhythmic drugs, not elsewhere classified +C0869185|T037|PX|Y52.3|ICD10|Adverse effects in the therapeutic use of coronary vasodilators, not elsewhere classified|Adverse effects in the therapeutic use of coronary vasodilators, not elsewhere classified +C0869185|T037|PS|Y52.3|ICD10|Coronary vasodilators, not elsewhere classified|Coronary vasodilators, not elsewhere classified +C0481186|T037|PX|Y52.4|ICD10|Adverse effects in the therapeutic use of angiotensin-converting-enzyme inhibitors|Adverse effects in the therapeutic use of angiotensin-converting-enzyme inhibitors +C0481186|T037|PS|Y52.4|ICD10|Angiotensin-converting-enzyme inhibitors|Angiotensin-converting-enzyme inhibitors +C0869186|T037|PX|Y52.5|ICD10|Adverse effects in the therapeutic use of other antihypertensive drugs, not elsewhere classified|Adverse effects in the therapeutic use of other antihypertensive drugs, not elsewhere classified +C0869186|T037|PS|Y52.5|ICD10|Other antihypertensive drugs, not elsewhere classified|Other antihypertensive drugs, not elsewhere classified +C0481188|T037|PX|Y52.6|ICD10|Adverse effects in the therapeutic use of antihyperlipidaemic and antiarteriosclerotic drugs|Adverse effects in the therapeutic use of antihyperlipidaemic and antiarteriosclerotic drugs +C0481188|T037|PS|Y52.6|ICD10|Antihyperlipidaemic and antiarteriosclerotic drugs|Antihyperlipidaemic and antiarteriosclerotic drugs +C0481189|T037|PX|Y52.7|ICD10|Adverse effects in the therapeutic use of peripheral vasodilators|Adverse effects in the therapeutic use of peripheral vasodilators +C0481189|T037|PS|Y52.7|ICD10|Peripheral vasodilators|Peripheral vasodilators +C0497073|T037|PX|Y52.8|ICD10|Adverse effects in the therapeutic use of antivaricose drugs, including sclerosing agents|Adverse effects in the therapeutic use of antivaricose drugs, including sclerosing agents +C0497073|T037|PS|Y52.8|ICD10|Antivaricose drugs, including sclerosing agents|Antivaricose drugs, including sclerosing agents +C0497074|T037|PS|Y52.9|ICD10|Other and unspecified agents primarily affecting the cardiovascular system|Other and unspecified agents primarily affecting the cardiovascular system +C0413956|T046|HX|Y53|ICD10|Adverse effects in the therapeutic use of agents primarily affecting the gastrointestinal system|Adverse effects in the therapeutic use of agents primarily affecting the gastrointestinal system +C0413956|T046|HS|Y53|ICD10|Agents primarily affecting the gastrointestinal system|Agents primarily affecting the gastrointestinal system +C0459969|T046|PX|Y53.0|ICD10|Adverse effects in the therapeutic use of histamine H2-receptor antagonists|Adverse effects in the therapeutic use of histamine H2-receptor antagonists +C0459969|T046|PS|Y53.0|ICD10|Histamine H2-receptor antagonists|Histamine H2-receptor antagonists +C0481190|T037|PX|Y53.1|ICD10|Adverse effects in the therapeutic use of other antacids and anti-gastric-secretion drugs|Adverse effects in the therapeutic use of other antacids and anti-gastric-secretion drugs +C0481190|T037|PS|Y53.1|ICD10|Other antacids and anti-gastric-secretion drugs|Other antacids and anti-gastric-secretion drugs +C0481191|T037|PX|Y53.2|ICD10|Adverse effects in the therapeutic use of stimulant laxatives|Adverse effects in the therapeutic use of stimulant laxatives +C0481191|T037|PS|Y53.2|ICD10|Stimulant laxatives|Stimulant laxatives +C0481192|T037|PX|Y53.3|ICD10|Adverse effects in the therapeutic use of saline and osmotic laxatives|Adverse effects in the therapeutic use of saline and osmotic laxatives +C0481192|T037|PS|Y53.3|ICD10|Saline and osmotic laxatives|Saline and osmotic laxatives +C0481193|T037|PX|Y53.4|ICD10|Adverse effects in the therapeutic use of other laxatives|Adverse effects in the therapeutic use of other laxatives +C0481193|T037|PS|Y53.4|ICD10|Other laxatives|Other laxatives +C0261889|T046|PX|Y53.5|ICD10|Adverse effects in the therapeutic use of digestants|Adverse effects in the therapeutic use of digestants +C0261889|T046|PS|Y53.5|ICD10|Digestants|Digestants +C0474035|T046|PX|Y53.6|ICD10AE|Adverse effects in the therapeutic use of antidiarrheal drugs|Adverse effects in the therapeutic use of antidiarrheal drugs +C0474035|T046|PX|Y53.6|ICD10|Adverse effects in the therapeutic use of antidiarrhoeal drugs|Adverse effects in the therapeutic use of antidiarrhoeal drugs +C0474035|T046|PS|Y53.6|ICD10AE|Antidiarrheal drugs|Antidiarrheal drugs +C0474035|T046|PS|Y53.6|ICD10|Antidiarrhoeal drugs|Antidiarrhoeal drugs +C0261891|T046|PX|Y53.7|ICD10|Adverse effects in the therapeutic use of emetics|Adverse effects in the therapeutic use of emetics +C0261891|T046|PS|Y53.7|ICD10|Emetics|Emetics +C0481194|T046|PS|Y53.8|ICD10|Other agents primarily affecting the gastrointestinal system|Other agents primarily affecting the gastrointestinal system +C0413956|T046|PS|Y53.9|ICD10|Agent primarily affecting the gastrointestinal system, unspecified|Agent primarily affecting the gastrointestinal system, unspecified +C0481195|T037|HS|Y54|ICD10|Agents primarily affecting water-balance and mineral and uric acid metabolism|Agents primarily affecting water-balance and mineral and uric acid metabolism +C0481196|T037|PX|Y54.0|ICD10|Adverse effects in the therapeutic use of mineralocorticoids|Adverse effects in the therapeutic use of mineralocorticoids +C0481196|T037|PS|Y54.0|ICD10|Mineralocorticoids|Mineralocorticoids +C0452215|T037|PX|Y54.1|ICD10|Adverse effects in the therapeutic use of mineralocorticoid antagonists [aldosterone antagonists]|Adverse effects in the therapeutic use of mineralocorticoid antagonists [aldosterone antagonists] +C0452215|T037|PS|Y54.1|ICD10|Mineralocorticoid antagonists [aldosterone antagonists]|Mineralocorticoid antagonists [aldosterone antagonists] +C0481197|T037|PX|Y54.2|ICD10|Adverse effects in the therapeutic use of carbonic-anhydrase inhibitors|Adverse effects in the therapeutic use of carbonic-anhydrase inhibitors +C0481197|T037|PS|Y54.2|ICD10|Carbonic-anhydrase inhibitors|Carbonic-anhydrase inhibitors +C0481198|T037|PX|Y54.3|ICD10|Adverse effects in the therapeutic use of benzothiadiazine derivatives|Adverse effects in the therapeutic use of benzothiadiazine derivatives +C0481198|T037|PS|Y54.3|ICD10|Benzothiadiazine derivatives|Benzothiadiazine derivatives +C0481199|T037|PX|Y54.4|ICD10|Adverse effects in the therapeutic use of loop [high-ceiling] diuretics|Adverse effects in the therapeutic use of loop [high-ceiling] diuretics +C0481199|T037|PS|Y54.4|ICD10|Loop [high-ceiling] diuretics|Loop [high-ceiling] diuretics +C0261899|T037|PX|Y54.5|ICD10|Adverse effects in the therapeutic use of other diuretics|Adverse effects in the therapeutic use of other diuretics +C0261899|T037|PS|Y54.5|ICD10|Other diuretics|Other diuretics +C0497076|T046|PX|Y54.6|ICD10|Adverse effects in the therapeutic use of electrolytic, caloric and water-balance agents|Adverse effects in the therapeutic use of electrolytic, caloric and water-balance agents +C0497076|T046|PS|Y54.6|ICD10|Electrolytic, caloric and water-balance agents|Electrolytic, caloric and water-balance agents +C0481200|T037|PX|Y54.7|ICD10|Adverse effects in the therapeutic use of agents affecting calcification|Adverse effects in the therapeutic use of agents affecting calcification +C0481200|T037|PS|Y54.7|ICD10|Agents affecting calcification|Agents affecting calcification +C0414015|T046|PX|Y54.8|ICD10|Adverse effects in the therapeutic use of agents affecting uric acid metabolism|Adverse effects in the therapeutic use of agents affecting uric acid metabolism +C0414015|T046|PS|Y54.8|ICD10|Agents affecting uric acid metabolism|Agents affecting uric acid metabolism +C0869187|T037|PX|Y54.9|ICD10|Adverse effects in the therapeutic use of mineral salts, not elsewhere classified|Adverse effects in the therapeutic use of mineral salts, not elsewhere classified +C0869187|T037|PS|Y54.9|ICD10|Mineral salts, not elsewhere classified|Mineral salts, not elsewhere classified +C0261903|T046|HS|Y55|ICD10|Agents primarily acting on smooth and skeletal muscles and the respiratory system|Agents primarily acting on smooth and skeletal muscles and the respiratory system +C0414020|T046|PX|Y55.0|ICD10|Adverse effects in the therapeutic use of oxytocic drugs|Adverse effects in the therapeutic use of oxytocic drugs +C0414020|T046|PS|Y55.0|ICD10|Oxytocic drugs|Oxytocic drugs +C0481202|T037|PX|Y55.1|ICD10|Adverse effects in the therapeutic use of skeletal muscle relaxants [neuromuscular blocking agents]|Adverse effects in the therapeutic use of skeletal muscle relaxants [neuromuscular blocking agents] +C0481202|T037|PS|Y55.1|ICD10|Skeletal muscle relaxants [neuromuscular blocking agents]|Skeletal muscle relaxants [neuromuscular blocking agents] +C0481203|T037|PX|Y55.2|ICD10|Adverse effects in the therapeutic use of other and unspecified agents primarily acting on muscles|Adverse effects in the therapeutic use of other and unspecified agents primarily acting on muscles +C0481203|T037|PS|Y55.2|ICD10|Other and unspecified agents primarily acting on muscles|Other and unspecified agents primarily acting on muscles +C0261908|T046|PX|Y55.3|ICD10|Adverse effects in the therapeutic use of antitussives|Adverse effects in the therapeutic use of antitussives +C0261908|T046|PS|Y55.3|ICD10|Antitussives|Antitussives +C0261909|T037|PX|Y55.4|ICD10|Adverse effects in the therapeutic use of expectorants|Adverse effects in the therapeutic use of expectorants +C0851326|T037|PS|Y55.4|ICD10|Expectorants|Expectorants +C0414040|T046|PX|Y55.5|ICD10|Adverse effects in the therapeutic use of anti-common-cold drugs|Adverse effects in the therapeutic use of anti-common-cold drugs +C0414040|T046|PS|Y55.5|ICD10|Anti-common-cold drugs|Anti-common-cold drugs +C0869188|T037|PX|Y55.6|ICD10|Adverse effects in the therapeutic use of antiasthmatics, not elsewhere classified|Adverse effects in the therapeutic use of antiasthmatics, not elsewhere classified +C0869188|T037|PS|Y55.6|ICD10|Antiasthmatics, not elsewhere classified|Antiasthmatics, not elsewhere classified +C0481205|T037|PS|Y55.7|ICD10|Other and unspecified agents primarily acting on the respiratory system|Other and unspecified agents primarily acting on the respiratory system +C0869190|T037|PS|Y56.0|ICD10|Local antifungal, anti-infective and anti-inflammatory drugs, not elsewhere classified|Local antifungal, anti-infective and anti-inflammatory drugs, not elsewhere classified +C0261915|T046|PX|Y56.1|ICD10|Adverse effects in the therapeutic use of antipruritics|Adverse effects in the therapeutic use of antipruritics +C0261915|T046|PS|Y56.1|ICD10|Antipruritics|Antipruritics +C0414053|T046|PX|Y56.2|ICD10|Adverse effects in the therapeutic use of local astringents and local detergents|Adverse effects in the therapeutic use of local astringents and local detergents +C0414053|T046|PS|Y56.2|ICD10|Local astringents and local detergents|Local astringents and local detergents +C0414054|T046|PX|Y56.3|ICD10|Adverse effects in the therapeutic use of emollients, demulcents and protectants|Adverse effects in the therapeutic use of emollients, demulcents and protectants +C0414054|T046|PS|Y56.3|ICD10|Emollients, demulcents and protectants|Emollients, demulcents and protectants +C0414055|T046|PS|Y56.4|ICD10|Keratolytics, keratoplastics and other hair treatment drugs and preparations|Keratolytics, keratoplastics and other hair treatment drugs and preparations +C0481208|T037|PX|Y56.5|ICD10|Adverse effects in the therapeutic use of ophthalmological drugs and preparations|Adverse effects in the therapeutic use of ophthalmological drugs and preparations +C0481208|T037|PS|Y56.5|ICD10|Ophthalmological drugs and preparations|Ophthalmological drugs and preparations +C0481209|T037|PX|Y56.6|ICD10|Adverse effects in the therapeutic use of otorhinolaryngological drugs and preparations|Adverse effects in the therapeutic use of otorhinolaryngological drugs and preparations +C0481209|T037|PS|Y56.6|ICD10|Otorhinolaryngological drugs and preparations|Otorhinolaryngological drugs and preparations +C0261921|T046|PX|Y56.7|ICD10|Adverse effects in the therapeutic use of dental drugs, topically applied|Adverse effects in the therapeutic use of dental drugs, topically applied +C0261921|T046|PS|Y56.7|ICD10|Dental drugs, topically applied|Dental drugs, topically applied +C0481210|T046|PX|Y56.8|ICD10|Adverse effects in the therapeutic use of other topical agents|Adverse effects in the therapeutic use of other topical agents +C0481210|T046|PS|Y56.8|ICD10|Other topical agents|Other topical agents +C0481211|T037|PX|Y56.9|ICD10|Adverse effects in the therapeutic use of topical agent, unspecified|Adverse effects in the therapeutic use of topical agent, unspecified +C0481211|T037|PS|Y56.9|ICD10|Topical agent, unspecified|Topical agent, unspecified +C0481212|T037|HX|Y57|ICD10|Adverse effects in the therapeutic use of other and unspecified drugs and medicaments|Adverse effects in the therapeutic use of other and unspecified drugs and medicaments +C0481212|T037|HS|Y57|ICD10|Other and unspecified drugs and medicaments|Other and unspecified drugs and medicaments +C0481213|T037|PX|Y57.0|ICD10|Adverse effects in the therapeutic use of appetite depressants [anorectics]|Adverse effects in the therapeutic use of appetite depressants [anorectics] +C0481213|T037|PS|Y57.0|ICD10|Appetite depressants [anorectics]|Appetite depressants [anorectics] +C0261926|T046|PX|Y57.1|ICD10|Adverse effects in the therapeutic use of lipotropic drugs|Adverse effects in the therapeutic use of lipotropic drugs +C0261926|T046|PS|Y57.1|ICD10|Lipotropic drugs|Lipotropic drugs +C0851293|T037|PX|Y57.2|ICD10|Adverse effects in the therapeutic use of antidotes and chelating agents, not elsewhere classified|Adverse effects in the therapeutic use of antidotes and chelating agents, not elsewhere classified +C0851293|T037|PS|Y57.2|ICD10|Antidotes and chelating agents, not elsewhere classified|Antidotes and chelating agents, not elsewhere classified +C0261928|T046|PX|Y57.3|ICD10|Adverse effects in the therapeutic use of alcohol deterrents|Adverse effects in the therapeutic use of alcohol deterrents +C0261928|T046|PS|Y57.3|ICD10|Alcohol deterrents|Alcohol deterrents +C0261929|T046|PX|Y57.4|ICD10|Adverse effects in the therapeutic use of pharmaceutical excipients|Adverse effects in the therapeutic use of pharmaceutical excipients +C0261929|T046|PS|Y57.4|ICD10|Pharmaceutical excipients|Pharmaceutical excipients +C0481214|T037|PX|Y57.5|ICD10|Adverse effects in the therapeutic use of x-ray contrast media|Adverse effects in the therapeutic use of x-ray contrast media +C0481214|T037|PS|Y57.5|ICD10|X-ray contrast media|X-ray contrast media +C0481215|T037|PX|Y57.6|ICD10|Adverse effects in the therapeutic use of other diagnostic agents|Adverse effects in the therapeutic use of other diagnostic agents +C0481215|T037|PS|Y57.6|ICD10|Other diagnostic agents|Other diagnostic agents +C0869503|T037|PX|Y57.7|ICD10|Adverse effects in the therapeutic use of vitamins, not elsewhere classified|Adverse effects in the therapeutic use of vitamins, not elsewhere classified +C0869503|T037|PS|Y57.7|ICD10|Vitamins, not elsewhere classified|Vitamins, not elsewhere classified +C0414062|T046|PX|Y57.8|ICD10|Adverse effects in the therapeutic use of other drugs and medicaments|Adverse effects in the therapeutic use of other drugs and medicaments +C0414062|T046|PS|Y57.8|ICD10|Other drugs and medicaments|Other drugs and medicaments +C0414071|T046|PX|Y57.9|ICD10|Adverse effects in the therapeutic use of drug or medicament, unspecified|Adverse effects in the therapeutic use of drug or medicament, unspecified +C0414071|T046|PS|Y57.9|ICD10|Drug or medicament, unspecified|Drug or medicament, unspecified +C0261931|T037|HX|Y58|ICD10|Adverse effects in the therapeutic use of bacterial vaccines|Adverse effects in the therapeutic use of bacterial vaccines +C0851327|T037|HS|Y58|ICD10|Bacterial vaccines|Bacterial vaccines +C0261932|T037|PX|Y58.0|ICD10|Adverse effects in the therapeutic use of BCG vaccine|Adverse effects in the therapeutic use of BCG vaccine +C0851328|T046|PS|Y58.0|ICD10|BCG vaccine|BCG vaccine +C0261933|T046|PX|Y58.1|ICD10|Adverse effects in the therapeutic use of typhoid and paratyphoid vaccine|Adverse effects in the therapeutic use of typhoid and paratyphoid vaccine +C0261933|T046|PS|Y58.1|ICD10|Typhoid and paratyphoid vaccine|Typhoid and paratyphoid vaccine +C0261934|T037|PX|Y58.2|ICD10|Adverse effects in the therapeutic use of cholera vaccine|Adverse effects in the therapeutic use of cholera vaccine +C0261934|T037|PS|Y58.2|ICD10|Cholera vaccine|Cholera vaccine +C0261935|T037|PX|Y58.3|ICD10|Adverse effects in the therapeutic use of plague vaccine|Adverse effects in the therapeutic use of plague vaccine +C0851329|T037|PS|Y58.3|ICD10|Plague vaccine|Plague vaccine +C0261936|T037|PX|Y58.4|ICD10|Adverse effects in the therapeutic use of tetanus vaccine|Adverse effects in the therapeutic use of tetanus vaccine +C0261936|T037|PS|Y58.4|ICD10|Tetanus vaccine|Tetanus vaccine +C0261937|T037|PX|Y58.5|ICD10|Adverse effects in the therapeutic use of diphtheria vaccine|Adverse effects in the therapeutic use of diphtheria vaccine +C0261937|T037|PS|Y58.5|ICD10|Diphtheria vaccine|Diphtheria vaccine +C0261938|T046|PS|Y58.6|ICD10|Pertussis vaccine, including combinations with a pertussis component|Pertussis vaccine, including combinations with a pertussis component +C0261940|T046|PS|Y58.8|ICD10|Mixed bacterial vaccines, except combinations with a pertussis component|Mixed bacterial vaccines, except combinations with a pertussis component +C0261939|T037|PX|Y58.9|ICD10|Adverse effects in the therapeutic use of other and unspecified bacterial vaccines|Adverse effects in the therapeutic use of other and unspecified bacterial vaccines +C0261939|T037|PS|Y58.9|ICD10|Other and unspecified bacterial vaccines|Other and unspecified bacterial vaccines +C0261950|T046|HX|Y59|ICD10|Adverse effects in the therapeutic use of other and unspecified vaccines and biological substances|Adverse effects in the therapeutic use of other and unspecified vaccines and biological substances +C0261950|T046|HS|Y59|ICD10|Other and unspecified vaccines and biological substances|Other and unspecified vaccines and biological substances +C0481216|T037|PX|Y59.0|ICD10|Adverse effects in the therapeutic use of viral vaccines|Adverse effects in the therapeutic use of viral vaccines +C0481216|T037|PS|Y59.0|ICD10|Viral vaccines|Viral vaccines +C0481217|T037|PX|Y59.1|ICD10|Adverse effects in the therapeutic use of rickettsial vaccines|Adverse effects in the therapeutic use of rickettsial vaccines +C0481217|T037|PS|Y59.1|ICD10|Rickettsial vaccines|Rickettsial vaccines +C0481218|T037|PX|Y59.2|ICD10|Adverse effects in the therapeutic use of protozoal vaccines|Adverse effects in the therapeutic use of protozoal vaccines +C0481218|T037|PS|Y59.2|ICD10|Protozoal vaccines|Protozoal vaccines +C0481219|T037|PX|Y59.3|ICD10|Adverse effects in the therapeutic use of immunoglobulin|Adverse effects in the therapeutic use of immunoglobulin +C0481219|T037|PS|Y59.3|ICD10|Immunoglobulin|Immunoglobulin +C0481220|T037|PX|Y59.8|ICD10|Adverse effects in the therapeutic use of other specified vaccines and biological substances|Adverse effects in the therapeutic use of other specified vaccines and biological substances +C0481220|T037|PS|Y59.8|ICD10|Other specified vaccines and biological substances|Other specified vaccines and biological substances +C0481221|T037|PX|Y59.9|ICD10|Adverse effects in the therapeutic use of vaccine or biological substance, unspecified|Adverse effects in the therapeutic use of vaccine or biological substance, unspecified +C0481221|T037|PS|Y59.9|ICD10|Vaccine or biological substance, unspecified|Vaccine or biological substance, unspecified +C0481222|T037|HS|Y60|ICD10|Unintentional cut, puncture, perforation or haemorrhage during surgical and medical care|Unintentional cut, puncture, perforation or haemorrhage during surgical and medical care +C0481222|T037|HS|Y60|ICD10AE|Unintentional cut, puncture, perforation or hemorrhage during surgical and medical care|Unintentional cut, puncture, perforation or hemorrhage during surgical and medical care +C0481263|T037|HT|Y60-Y69.9|ICD10|Misadventures to patients during surgical and medical care|Misadventures to patients during surgical and medical care +C0481222|T037|PS|Y60.0|ICD10|During surgical operation|During surgical operation +C0481222|T037|PX|Y60.0|ICD10|Injury due to unintentional cut, puncture, perforation or haemorrhage during surgical operation|Injury due to unintentional cut, puncture, perforation or haemorrhage during surgical operation +C0481222|T037|PX|Y60.0|ICD10AE|Injury due to unintentional cut, puncture, perforation or hemorrhage during surgical operation|Injury due to unintentional cut, puncture, perforation or hemorrhage during surgical operation +C2939422|T037|PS|Y60.1|ICD10|During infusion or transfusion|During infusion or transfusion +C2939422|T037|PX|Y60.1|ICD10|Injury due to unintentional cut, puncture, perforation or haemorrhage during infusion or transfusion|Injury due to unintentional cut, puncture, perforation or haemorrhage during infusion or transfusion +C2939422|T037|PX|Y60.1|ICD10AE|Injury due to unintentional cut, puncture, perforation or hemorrhage during infusion or transfusion|Injury due to unintentional cut, puncture, perforation or hemorrhage during infusion or transfusion +C0261514|T037|PS|Y60.2|ICD10|During kidney dialysis or other perfusion|During kidney dialysis or other perfusion +C0261515|T037|PS|Y60.3|ICD10|During injection or immunization|During injection or immunization +C0261516|T037|PS|Y60.4|ICD10|During endoscopic examination|During endoscopic examination +C0261516|T037|PX|Y60.4|ICD10|Injury due to unintentional cut, puncture, perforation or haemorrhage during endoscopic examination|Injury due to unintentional cut, puncture, perforation or haemorrhage during endoscopic examination +C0261516|T037|PX|Y60.4|ICD10AE|Injury due to unintentional cut, puncture, perforation or hemorrhage during endoscopic examination|Injury due to unintentional cut, puncture, perforation or hemorrhage during endoscopic examination +C0261518|T037|PS|Y60.5|ICD10|During heart catheterization|During heart catheterization +C0261518|T037|PX|Y60.5|ICD10|Injury due to unintentional cut, puncture, perforation or haemorrhage during heart catheterization|Injury due to unintentional cut, puncture, perforation or haemorrhage during heart catheterization +C0261518|T037|PX|Y60.5|ICD10AE|Injury due to unintentional cut, puncture, perforation or hemorrhage during heart catheterization|Injury due to unintentional cut, puncture, perforation or hemorrhage during heart catheterization +C0261517|T037|PS|Y60.6|ICD10|During aspiration, puncture and other catheterization|During aspiration, puncture and other catheterization +C0261519|T037|PS|Y60.7|ICD10|During administration of enema|During administration of enema +C0261519|T037|PX|Y60.7|ICD10|Injury due to unintentional cut, puncture, perforation or haemorrhage during administration of enema|Injury due to unintentional cut, puncture, perforation or haemorrhage during administration of enema +C0261519|T037|PX|Y60.7|ICD10AE|Injury due to unintentional cut, puncture, perforation or hemorrhage during administration of enema|Injury due to unintentional cut, puncture, perforation or hemorrhage during administration of enema +C0496529|T037|PS|Y60.8|ICD10|During other surgical and medical care|During other surgical and medical care +C0481222|T037|PS|Y60.9|ICD10|During unspecified surgical and medical care|During unspecified surgical and medical care +C0481230|T037|HS|Y61|ICD10|Foreign object accidentally left in body during surgical and medical care|Foreign object accidentally left in body during surgical and medical care +C0481230|T037|HX|Y61|ICD10|Injury due to foreign object accidentally left in body during surgical and medical care|Injury due to foreign object accidentally left in body during surgical and medical care +C0702090|T037|PS|Y61.0|ICD10|During surgical operation|During surgical operation +C0702090|T037|PX|Y61.0|ICD10|Injury due to foreign object accidentally left in body during surgical operation|Injury due to foreign object accidentally left in body during surgical operation +C0481232|T037|PS|Y61.1|ICD10|During infusion or transfusion|During infusion or transfusion +C0481232|T037|PX|Y61.1|ICD10|Injury due to foreign object accidentally left in body during infusion or transfusion|Injury due to foreign object accidentally left in body during infusion or transfusion +C0481233|T037|PS|Y61.2|ICD10|During kidney dialysis or other perfusion|During kidney dialysis or other perfusion +C0481233|T037|PX|Y61.2|ICD10|Injury due to foreign object accidentally left in body during kidney dialysis or other perfusion|Injury due to foreign object accidentally left in body during kidney dialysis or other perfusion +C0481234|T037|PS|Y61.3|ICD10|During injection or immunization|During injection or immunization +C0481234|T037|PX|Y61.3|ICD10|Injury due to foreign object accidentally left in body during injection or immunization|Injury due to foreign object accidentally left in body during injection or immunization +C0481235|T037|PS|Y61.4|ICD10|During endoscopic examination|During endoscopic examination +C0481235|T037|PX|Y61.4|ICD10|Injury due to foreign object accidentally left in body during endoscopic examination|Injury due to foreign object accidentally left in body during endoscopic examination +C0481236|T037|PS|Y61.5|ICD10|During heart catheterization|During heart catheterization +C0481236|T037|PX|Y61.5|ICD10|Injury due to foreign object accidentally left in body during heart catheterization|Injury due to foreign object accidentally left in body during heart catheterization +C0481237|T037|PS|Y61.6|ICD10|During aspiration, puncture and other catheterization|During aspiration, puncture and other catheterization +C0496530|T037|PS|Y61.7|ICD10|During removal of catheter or packing|During removal of catheter or packing +C0496530|T037|PX|Y61.7|ICD10|Injury due to foreign object accidentally left in body during removal of catheter or packing|Injury due to foreign object accidentally left in body during removal of catheter or packing +C0481238|T037|PS|Y61.8|ICD10|During other surgical and medical care|During other surgical and medical care +C0481238|T037|PX|Y61.8|ICD10|Injury due to foreign object accidentally left in body during other surgical and medical care|Injury due to foreign object accidentally left in body during other surgical and medical care +C0481230|T037|PS|Y61.9|ICD10|During unspecified surgical and medical care|During unspecified surgical and medical care +C0481230|T037|PX|Y61.9|ICD10|Injury due to foreign object accidentally left in body during unspecified surgical and medical care|Injury due to foreign object accidentally left in body during unspecified surgical and medical care +C0481240|T037|AB|Y62|ICD10CM|Failure of steril precaut during surgical and medical care|Failure of steril precaut during surgical and medical care +C0481240|T037|HT|Y62|ICD10CM|Failure of sterile precautions during surgical and medical care|Failure of sterile precautions during surgical and medical care +C0481240|T037|HS|Y62|ICD10|Failure of sterile precautions during surgical and medical care|Failure of sterile precautions during surgical and medical care +C0481240|T037|HX|Y62|ICD10|Injury due to failure of sterile precautions during surgical and medical care|Injury due to failure of sterile precautions during surgical and medical care +C0481263|T037|HT|Y62-Y69|ICD10CM|Misadventures to patients during surgical and medical care (Y62-Y69)|Misadventures to patients during surgical and medical care (Y62-Y69) +C4270736|T046|HT|Y62-Y84|ICD10CM|Complications of medical and surgical care (Y62-Y84)|Complications of medical and surgical care (Y62-Y84) +C1112353|T046|ET|Y62-Y84|ICD10CM|complications of medical devices|complications of medical devices +C0261533|T037|PS|Y62.0|ICD10|During surgical operation|During surgical operation +C0261533|T037|PT|Y62.0|ICD10CM|Failure of sterile precautions during surgical operation|Failure of sterile precautions during surgical operation +C0261533|T037|AB|Y62.0|ICD10CM|Failure of sterile precautions during surgical operation|Failure of sterile precautions during surgical operation +C0261533|T037|PX|Y62.0|ICD10|Injury due to failure of sterile precautions during surgical operation|Injury due to failure of sterile precautions during surgical operation +C0497080|T037|PS|Y62.1|ICD10|During infusion or transfusion|During infusion or transfusion +C0497080|T037|PT|Y62.1|ICD10CM|Failure of sterile precautions during infusion or transfusion|Failure of sterile precautions during infusion or transfusion +C0497080|T037|AB|Y62.1|ICD10CM|Failure of sterile precautions during infusn/transfusn|Failure of sterile precautions during infusn/transfusn +C0497080|T037|PX|Y62.1|ICD10|Injury due to failure of sterile precautions during infusion or transfusion|Injury due to failure of sterile precautions during infusion or transfusion +C0481241|T037|PS|Y62.2|ICD10|During kidney dialysis or other perfusion|During kidney dialysis or other perfusion +C0261536|T037|AB|Y62.2|ICD10CM|Fail of steril precaut dur kidney dialysis and oth perfusion|Fail of steril precaut dur kidney dialysis and oth perfusion +C0261536|T037|PT|Y62.2|ICD10CM|Failure of sterile precautions during kidney dialysis and other perfusion|Failure of sterile precautions during kidney dialysis and other perfusion +C0481241|T037|PX|Y62.2|ICD10|Injury due to failure of sterile precautions during kidney dialysis or other perfusion|Injury due to failure of sterile precautions during kidney dialysis or other perfusion +C0497081|T037|PS|Y62.3|ICD10|During injection or immunization|During injection or immunization +C0497081|T037|AB|Y62.3|ICD10CM|Failure of steril precaut during injection or immunization|Failure of steril precaut during injection or immunization +C0497081|T037|PT|Y62.3|ICD10CM|Failure of sterile precautions during injection or immunization|Failure of sterile precautions during injection or immunization +C0497081|T037|PX|Y62.3|ICD10|Injury due to failure of sterile precautions during injection or immunization|Injury due to failure of sterile precautions during injection or immunization +C0497082|T037|PS|Y62.4|ICD10|During endoscopic examination|During endoscopic examination +C0497082|T037|PT|Y62.4|ICD10CM|Failure of sterile precautions during endoscopic examination|Failure of sterile precautions during endoscopic examination +C0497082|T037|AB|Y62.4|ICD10CM|Failure of sterile precautions during endoscopic examination|Failure of sterile precautions during endoscopic examination +C0497082|T037|PX|Y62.4|ICD10|Injury due to failure of sterile precautions during endoscopic examination|Injury due to failure of sterile precautions during endoscopic examination +C0497083|T037|PS|Y62.5|ICD10|During heart catheterization|During heart catheterization +C0497083|T037|PT|Y62.5|ICD10CM|Failure of sterile precautions during heart catheterization|Failure of sterile precautions during heart catheterization +C0497083|T037|AB|Y62.5|ICD10CM|Failure of sterile precautions during heart catheterization|Failure of sterile precautions during heart catheterization +C0497083|T037|PX|Y62.5|ICD10|Injury due to failure of sterile precautions during heart catheterization|Injury due to failure of sterile precautions during heart catheterization +C0497084|T037|PS|Y62.6|ICD10|During aspiration, puncture and other catheterization|During aspiration, puncture and other catheterization +C0497084|T037|AB|Y62.6|ICD10CM|Failure of steril precaut during aspirat, pnctr and oth cath|Failure of steril precaut during aspirat, pnctr and oth cath +C0497084|T037|PT|Y62.6|ICD10CM|Failure of sterile precautions during aspiration, puncture and other catheterization|Failure of sterile precautions during aspiration, puncture and other catheterization +C0497084|T037|PX|Y62.6|ICD10|Injury due to failure of sterile precautions during aspiration, puncture and other catheterization|Injury due to failure of sterile precautions during aspiration, puncture and other catheterization +C0481244|T037|PS|Y62.8|ICD10|During other surgical and medical care|During other surgical and medical care +C0481244|T037|AB|Y62.8|ICD10CM|Failure of steril precaut during oth surg and medical care|Failure of steril precaut during oth surg and medical care +C0481244|T037|PT|Y62.8|ICD10CM|Failure of sterile precautions during other surgical and medical care|Failure of sterile precautions during other surgical and medical care +C0481244|T037|PX|Y62.8|ICD10|Injury due to failure of sterile precautions during other surgical and medical care|Injury due to failure of sterile precautions during other surgical and medical care +C0481240|T037|PS|Y62.9|ICD10|During unspecified surgical and medical care|During unspecified surgical and medical care +C0481240|T037|AB|Y62.9|ICD10CM|Failure of steril precaut during unsp surg and medical care|Failure of steril precaut during unsp surg and medical care +C0481240|T037|PT|Y62.9|ICD10CM|Failure of sterile precautions during unspecified surgical and medical care|Failure of sterile precautions during unspecified surgical and medical care +C0481240|T037|PX|Y62.9|ICD10|Injury due to failure of sterile precautions during unspecified surgical and medical care|Injury due to failure of sterile precautions during unspecified surgical and medical care +C0481245|T037|HS|Y63|ICD10|Failure in dosage during surgical and medical care|Failure in dosage during surgical and medical care +C0481245|T037|HT|Y63|ICD10CM|Failure in dosage during surgical and medical care|Failure in dosage during surgical and medical care +C0481245|T037|AB|Y63|ICD10CM|Failure in dosage during surgical and medical care|Failure in dosage during surgical and medical care +C0481245|T037|HX|Y63|ICD10|Injury due to failure in dosage during surgical and medical care|Injury due to failure in dosage during surgical and medical care +C0481246|T037|AB|Y63.0|ICD10CM|Excess amount of bld or oth fluid given dur tranfs or infusn|Excess amount of bld or oth fluid given dur tranfs or infusn +C0481246|T037|PT|Y63.0|ICD10CM|Excessive amount of blood or other fluid given during transfusion or infusion|Excessive amount of blood or other fluid given during transfusion or infusion +C0481246|T037|PS|Y63.0|ICD10|Excessive amount of blood or other fluid given during transfusion or infusion|Excessive amount of blood or other fluid given during transfusion or infusion +C0481246|T037|PX|Y63.0|ICD10|Injury due to excessive amount of blood or other fluid given during transfusion or infusion|Injury due to excessive amount of blood or other fluid given during transfusion or infusion +C0481247|T037|PS|Y63.1|ICD10|Incorrect dilution of fluid used during infusion|Incorrect dilution of fluid used during infusion +C0481247|T037|PT|Y63.1|ICD10CM|Incorrect dilution of fluid used during infusion|Incorrect dilution of fluid used during infusion +C0481247|T037|AB|Y63.1|ICD10CM|Incorrect dilution of fluid used during infusion|Incorrect dilution of fluid used during infusion +C0481247|T037|PX|Y63.1|ICD10|Injury due to incorrect dilution of fluid used during infusion|Injury due to incorrect dilution of fluid used during infusion +C0481248|T037|PX|Y63.2|ICD10|Injury due to overdose of radiation given during therapy|Injury due to overdose of radiation given during therapy +C0481248|T037|PS|Y63.2|ICD10|Overdose of radiation given during therapy|Overdose of radiation given during therapy +C0481248|T037|PT|Y63.2|ICD10CM|Overdose of radiation given during therapy|Overdose of radiation given during therapy +C0481248|T037|AB|Y63.2|ICD10CM|Overdose of radiation given during therapy|Overdose of radiation given during therapy +C0261547|T037|PS|Y63.3|ICD10|Inadvertent exposure of patient to radiation during medical care|Inadvertent exposure of patient to radiation during medical care +C0261547|T037|PT|Y63.3|ICD10CM|Inadvertent exposure of patient to radiation during medical care|Inadvertent exposure of patient to radiation during medical care +C0261547|T037|AB|Y63.3|ICD10CM|Inadvertent expsr of patient to radiation during med care|Inadvertent expsr of patient to radiation during med care +C0261547|T037|PX|Y63.3|ICD10|Injury due to inadvertent exposure of patient to radiation during medical care|Injury due to inadvertent exposure of patient to radiation during medical care +C0261548|T037|PS|Y63.4|ICD10|Failure in dosage in electroshock or insulin-shock therapy|Failure in dosage in electroshock or insulin-shock therapy +C0261548|T037|PT|Y63.4|ICD10CM|Failure in dosage in electroshock or insulin-shock therapy|Failure in dosage in electroshock or insulin-shock therapy +C0261548|T037|AB|Y63.4|ICD10CM|Failure in dosage in electroshock or insulin-shock therapy|Failure in dosage in electroshock or insulin-shock therapy +C0261548|T037|PX|Y63.4|ICD10|Injury due to failure in dosage in electroshock or insulin-shock therapy|Injury due to failure in dosage in electroshock or insulin-shock therapy +C0418626|T037|PT|Y63.5|ICD10CM|Inappropriate temperature in local application and packing|Inappropriate temperature in local application and packing +C0418626|T037|AB|Y63.5|ICD10CM|Inappropriate temperature in local application and packing|Inappropriate temperature in local application and packing +C0418626|T037|PS|Y63.5|ICD10|Inappropriate temperature in local application and packing|Inappropriate temperature in local application and packing +C0418626|T037|PX|Y63.5|ICD10|Injury due to inappropriate temperature in local application and packing|Injury due to inappropriate temperature in local application and packing +C0481249|T037|PX|Y63.6|ICD10|Injury due to nonadministration of necessary drug, medicament or biological substance|Injury due to nonadministration of necessary drug, medicament or biological substance +C0481249|T037|PS|Y63.6|ICD10|Nonadministration of necessary drug, medicament or biological substance|Nonadministration of necessary drug, medicament or biological substance +C2907566|T037|PT|Y63.6|ICD10CM|Underdosing and nonadministration of necessary drug, medicament or biological substance|Underdosing and nonadministration of necessary drug, medicament or biological substance +C2907566|T037|AB|Y63.6|ICD10CM|Undrdose & nonadmin of necess drug, medicament or biolg sub|Undrdose & nonadmin of necess drug, medicament or biolg sub +C0481250|T037|PS|Y63.8|ICD10|Failure in dosage during other surgical and medical care|Failure in dosage during other surgical and medical care +C0481250|T037|PT|Y63.8|ICD10CM|Failure in dosage during other surgical and medical care|Failure in dosage during other surgical and medical care +C0481250|T037|AB|Y63.8|ICD10CM|Failure in dosage during other surgical and medical care|Failure in dosage during other surgical and medical care +C0481250|T037|PX|Y63.8|ICD10|Injury due to failure in dosage during other surgical and medical care|Injury due to failure in dosage during other surgical and medical care +C0481245|T037|AB|Y63.9|ICD10CM|Failure in dosage during unsp surgical and medical care|Failure in dosage during unsp surgical and medical care +C0481245|T037|PT|Y63.9|ICD10CM|Failure in dosage during unspecified surgical and medical care|Failure in dosage during unspecified surgical and medical care +C0481245|T037|PS|Y63.9|ICD10|Failure in dosage during unspecified surgical and medical care|Failure in dosage during unspecified surgical and medical care +C0481245|T037|PX|Y63.9|ICD10|Injury due to failure in dosage during unspecified surgical and medical care|Injury due to failure in dosage during unspecified surgical and medical care +C0481252|T037|HS|Y64|ICD10|Contaminated medical or biological substances|Contaminated medical or biological substances +C0481252|T037|AB|Y64|ICD10CM|Contaminated medical or biological substances|Contaminated medical or biological substances +C0481252|T037|HT|Y64|ICD10CM|Contaminated medical or biological substances|Contaminated medical or biological substances +C0481252|T037|HX|Y64|ICD10|Injury due to contaminated medical or biological substances|Injury due to contaminated medical or biological substances +C1261338|T037|AB|Y64.0|ICD10CM|Contaminated med/biolog sub, transfused or infused|Contaminated med/biolog sub, transfused or infused +C1261338|T037|PT|Y64.0|ICD10CM|Contaminated medical or biological substance, transfused or infused|Contaminated medical or biological substance, transfused or infused +C1261338|T037|PS|Y64.0|ICD10|Contaminated medical or biological substance, transfused or infused|Contaminated medical or biological substance, transfused or infused +C1261338|T037|PX|Y64.0|ICD10|Injury due to contaminated medical or biological substance, transfused or infused|Injury due to contaminated medical or biological substance, transfused or infused +C0481254|T037|AB|Y64.1|ICD10CM|Contaminated med/biolog sub, injected or used for immuniz|Contaminated med/biolog sub, injected or used for immuniz +C0481254|T037|PT|Y64.1|ICD10CM|Contaminated medical or biological substance, injected or used for immunization|Contaminated medical or biological substance, injected or used for immunization +C0481254|T037|PS|Y64.1|ICD10|Contaminated medical or biological substance, injected or used for immunization|Contaminated medical or biological substance, injected or used for immunization +C0481254|T037|PX|Y64.1|ICD10|Injury due to contaminated medical or biological substance, injected or used for immunization|Injury due to contaminated medical or biological substance, injected or used for immunization +C0481255|T037|AB|Y64.8|ICD10CM|Contaminated med/biolog sub administered by oth means|Contaminated med/biolog sub administered by oth means +C0481255|T037|PT|Y64.8|ICD10CM|Contaminated medical or biological substance administered by other means|Contaminated medical or biological substance administered by other means +C0481255|T037|PS|Y64.8|ICD10|Contaminated medical or biological substance administered by other means|Contaminated medical or biological substance administered by other means +C0481255|T037|PX|Y64.8|ICD10|Injury due to contaminated medical or biological substance administered by other means|Injury due to contaminated medical or biological substance administered by other means +C2907568|T037|ET|Y64.9|ICD10CM|Administered contaminated medical or biological substance NOS|Administered contaminated medical or biological substance NOS +C0481256|T037|AB|Y64.9|ICD10CM|Contaminated med/biolog sub administered by unsp means|Contaminated med/biolog sub administered by unsp means +C0481256|T037|PT|Y64.9|ICD10CM|Contaminated medical or biological substance administered by unspecified means|Contaminated medical or biological substance administered by unspecified means +C0481256|T037|PS|Y64.9|ICD10|Contaminated medical or biological substance administered by unspecified means|Contaminated medical or biological substance administered by unspecified means +C0481256|T037|PX|Y64.9|ICD10|Injury due to contaminated medical or biological substance administered by unspecified means|Injury due to contaminated medical or biological substance administered by unspecified means +C0418600|T037|HX|Y65|ICD10|Injury due to other misadventures during surgical and medical care|Injury due to other misadventures during surgical and medical care +C0418600|T037|HS|Y65|ICD10|Other misadventures during surgical and medical care|Other misadventures during surgical and medical care +C0418600|T037|AB|Y65|ICD10CM|Other misadventures during surgical and medical care|Other misadventures during surgical and medical care +C0418600|T037|HT|Y65|ICD10CM|Other misadventures during surgical and medical care|Other misadventures during surgical and medical care +C0161841|T037|PX|Y65.0|ICD10|Injury due to mismatched blood used in transfusion|Injury due to mismatched blood used in transfusion +C0161841|T037|AB|Y65.0|ICD10CM|Mismatched blood in transfusion|Mismatched blood in transfusion +C0161841|T037|PT|Y65.0|ICD10CM|Mismatched blood in transfusion|Mismatched blood in transfusion +C0161841|T037|PS|Y65.0|ICD10|Mismatched blood used in transfusion|Mismatched blood used in transfusion +C0261570|T033|PX|Y65.1|ICD10|Injury due to wrong fluid used in infusion|Injury due to wrong fluid used in infusion +C0261570|T033|PS|Y65.1|ICD10|Wrong fluid used in infusion|Wrong fluid used in infusion +C0261570|T033|PT|Y65.1|ICD10CM|Wrong fluid used in infusion|Wrong fluid used in infusion +C0261570|T033|AB|Y65.1|ICD10CM|Wrong fluid used in infusion|Wrong fluid used in infusion +C0481259|T037|PT|Y65.2|ICD10CM|Failure in suture or ligature during surgical operation|Failure in suture or ligature during surgical operation +C0481259|T037|AB|Y65.2|ICD10CM|Failure in suture or ligature during surgical operation|Failure in suture or ligature during surgical operation +C0481259|T037|PS|Y65.2|ICD10|Failure in suture or ligature during surgical operation|Failure in suture or ligature during surgical operation +C0481259|T037|PX|Y65.2|ICD10|Injury due to failure in suture or ligature during surgical operation|Injury due to failure in suture or ligature during surgical operation +C0261572|T037|PS|Y65.3|ICD10|Endotracheal tube wrongly placed during anaesthetic procedure|Endotracheal tube wrongly placed during anaesthetic procedure +C0261572|T037|PT|Y65.3|ICD10CM|Endotracheal tube wrongly placed during anesthetic procedure|Endotracheal tube wrongly placed during anesthetic procedure +C0261572|T037|AB|Y65.3|ICD10CM|Endotracheal tube wrongly placed during anesthetic procedure|Endotracheal tube wrongly placed during anesthetic procedure +C0261572|T037|PS|Y65.3|ICD10AE|Endotracheal tube wrongly placed during anesthetic procedure|Endotracheal tube wrongly placed during anesthetic procedure +C0261572|T037|PX|Y65.3|ICD10|Injury due to endotracheal tube wrongly placed during anaesthetic procedure|Injury due to endotracheal tube wrongly placed during anaesthetic procedure +C0261572|T037|PX|Y65.3|ICD10AE|Injury due to endotracheal tube wrongly placed during anesthetic procedure|Injury due to endotracheal tube wrongly placed during anesthetic procedure +C0261573|T037|PS|Y65.4|ICD10|Failure to introduce or to remove other tube or instrument|Failure to introduce or to remove other tube or instrument +C0261573|T037|PT|Y65.4|ICD10CM|Failure to introduce or to remove other tube or instrument|Failure to introduce or to remove other tube or instrument +C0261573|T037|AB|Y65.4|ICD10CM|Failure to introduce or to remove other tube or instrument|Failure to introduce or to remove other tube or instrument +C0261573|T037|PX|Y65.4|ICD10|Injury due to failure to introduce or to remove other tube or instrument|Injury due to failure to introduce or to remove other tube or instrument +C0261574|T037|PX|Y65.5|ICD10|Injury due to performance of inappropriate operation|Injury due to performance of inappropriate operation +C0261574|T037|PS|Y65.5|ICD10|Performance of inappropriate operation|Performance of inappropriate operation +C2907569|T037|AB|Y65.5|ICD10CM|Performance of wrong procedure (operation)|Performance of wrong procedure (operation) +C2907569|T037|HT|Y65.5|ICD10CM|Performance of wrong procedure (operation)|Performance of wrong procedure (operation) +C2712478|T037|AB|Y65.51|ICD10CM|Performance of wrong procedure (op) on correct patient|Performance of wrong procedure (op) on correct patient +C2712478|T037|PT|Y65.51|ICD10CM|Performance of wrong procedure (operation) on correct patient|Performance of wrong procedure (operation) on correct patient +C2712944|T037|ET|Y65.51|ICD10CM|Wrong device implanted into correct surgical site|Wrong device implanted into correct surgical site +C2712479|T037|AB|Y65.52|ICD10CM|Perform of proc (op) on patient not scheduled for surgery|Perform of proc (op) on patient not scheduled for surgery +C2712957|T037|ET|Y65.52|ICD10CM|Performance of procedure (operation) intended for another patient|Performance of procedure (operation) intended for another patient +C2712479|T037|PT|Y65.52|ICD10CM|Performance of procedure (operation) on patient not scheduled for surgery|Performance of procedure (operation) on patient not scheduled for surgery +C2712958|T037|ET|Y65.52|ICD10CM|Performance of procedure (operation) on wrong patient|Performance of procedure (operation) on wrong patient +C2907570|T037|AB|Y65.53|ICD10CM|Perform of correct procedure (op) on wrong side or body part|Perform of correct procedure (op) on wrong side or body part +C2712968|T037|ET|Y65.53|ICD10CM|Performance of correct procedure (operation) on wrong side|Performance of correct procedure (operation) on wrong side +C2907570|T037|PT|Y65.53|ICD10CM|Performance of correct procedure (operation) on wrong side or body part|Performance of correct procedure (operation) on wrong side or body part +C2712969|T037|ET|Y65.53|ICD10CM|Performance of correct procedure (operation) on wrong site|Performance of correct procedure (operation) on wrong site +C0481261|T037|PX|Y65.8|ICD10|Injury due to other specified misadventures during surgical and medical care|Injury due to other specified misadventures during surgical and medical care +C0481261|T037|AB|Y65.8|ICD10CM|Oth misadventures during surgical and medical care|Oth misadventures during surgical and medical care +C0481261|T037|PT|Y65.8|ICD10CM|Other specified misadventures during surgical and medical care|Other specified misadventures during surgical and medical care +C0481261|T037|PS|Y65.8|ICD10|Other specified misadventures during surgical and medical care|Other specified misadventures during surgical and medical care +C0481262|T037|PX|Y66|ICD10|Injury due to nonadministration of surgical and medical care|Injury due to nonadministration of surgical and medical care +C0481262|T037|PS|Y66|ICD10|Nonadministration of surgical and medical care|Nonadministration of surgical and medical care +C0481262|T037|PT|Y66|ICD10CM|Nonadministration of surgical and medical care|Nonadministration of surgical and medical care +C0481262|T037|AB|Y66|ICD10CM|Nonadministration of surgical and medical care|Nonadministration of surgical and medical care +C2907571|T037|ET|Y66|ICD10CM|Premature cessation of surgical and medical care|Premature cessation of surgical and medical care +C0481263|T037|PX|Y69|ICD10|Injury due to unspecified misadventure during surgical and medical care|Injury due to unspecified misadventure during surgical and medical care +C0481263|T037|PS|Y69|ICD10|Unspecified misadventure during surgical and medical care|Unspecified misadventure during surgical and medical care +C0481263|T037|PT|Y69|ICD10CM|Unspecified misadventure during surgical and medical care|Unspecified misadventure during surgical and medical care +C0481263|T037|AB|Y69|ICD10CM|Unspecified misadventure during surgical and medical care|Unspecified misadventure during surgical and medical care +C0481265|T037|HT|Y70|ICD10|Anaesthesiology devices associated with adverse incidents|Anaesthesiology devices associated with adverse incidents +C0481265|T037|HT|Y70|ICD10AE|Anesthesiology devices associated with adverse incidents|Anesthesiology devices associated with adverse incidents +C0481265|T037|HT|Y70|ICD10CM|Anesthesiology devices associated with adverse incidents|Anesthesiology devices associated with adverse incidents +C0481265|T037|AB|Y70|ICD10CM|Anesthesiology devices associated with adverse incidents|Anesthesiology devices associated with adverse incidents +C4290503|T046|ET|Y70-Y82|ICD10CM|breakdown or malfunction of medical devices (during use) (after implantation) (ongoing use)|breakdown or malfunction of medical devices (during use) (after implantation) (ongoing use) +C0481264|T037|HT|Y70-Y82|ICD10CM|Medical devices associated with adverse incidents in diagnostic and therapeutic use (Y70-Y82)|Medical devices associated with adverse incidents in diagnostic and therapeutic use (Y70-Y82) +C0481264|T037|HT|Y70-Y82.9|ICD10|Medical devices associated with adverse incidents in diagnostic and therapeutic use|Medical devices associated with adverse incidents in diagnostic and therapeutic use +C0481266|T037|PT|Y70.0|ICD10|Anaesthesiology devices associated with adverse incidents, diagnostic and monitoring devices|Anaesthesiology devices associated with adverse incidents, diagnostic and monitoring devices +C0481266|T037|PT|Y70.0|ICD10AE|Anesthesiology devices associated with adverse incidents, diagnostic and monitoring devices|Anesthesiology devices associated with adverse incidents, diagnostic and monitoring devices +C2907573|T037|AB|Y70.0|ICD10CM|Diagnostic and monitoring anesth devices assoc w incdt|Diagnostic and monitoring anesth devices assoc w incdt +C2907573|T037|PT|Y70.0|ICD10CM|Diagnostic and monitoring anesthesiology devices associated with adverse incidents|Diagnostic and monitoring anesthesiology devices associated with adverse incidents +C2907574|T037|AB|Y70.1|ICD10CM|Therapeutic and rehab anesth devices assoc w incdt|Therapeutic and rehab anesth devices assoc w incdt +C2907575|T037|AB|Y70.2|ICD10CM|Prosth/oth implnt/mtrls anesthesiology devices assoc w incdt|Prosth/oth implnt/mtrls anesthesiology devices assoc w incdt +C2907576|T037|AB|Y70.3|ICD10CM|Surgical instrumnt, matrl and anesth devices assoc w incdt|Surgical instrumnt, matrl and anesth devices assoc w incdt +C2907577|T037|AB|Y70.8|ICD10CM|Miscellaneous anesthesiology devices assoc w incdt, NEC|Miscellaneous anesthesiology devices assoc w incdt, NEC +C2907577|T037|PT|Y70.8|ICD10CM|Miscellaneous anesthesiology devices associated with adverse incidents, not elsewhere classified|Miscellaneous anesthesiology devices associated with adverse incidents, not elsewhere classified +C0481271|T037|HT|Y71|ICD10CM|Cardiovascular devices associated with adverse incidents|Cardiovascular devices associated with adverse incidents +C0481271|T037|AB|Y71|ICD10CM|Cardiovascular devices associated with adverse incidents|Cardiovascular devices associated with adverse incidents +C0481271|T037|HT|Y71|ICD10|Cardiovascular devices associated with adverse incidents|Cardiovascular devices associated with adverse incidents +C0481272|T037|PT|Y71.0|ICD10|Cardiovascular devices associated with adverse incidents, diagnostic and monitoring devices|Cardiovascular devices associated with adverse incidents, diagnostic and monitoring devices +C2907578|T037|AB|Y71.0|ICD10CM|Diagnostic and monitoring cardiovasc devices assoc w incdt|Diagnostic and monitoring cardiovasc devices assoc w incdt +C2907578|T037|PT|Y71.0|ICD10CM|Diagnostic and monitoring cardiovascular devices associated with adverse incidents|Diagnostic and monitoring cardiovascular devices associated with adverse incidents +C2907579|T037|AB|Y71.1|ICD10CM|Therapeutic and rehab cardiovasc devices assoc w incdt|Therapeutic and rehab cardiovasc devices assoc w incdt +C2907580|T037|AB|Y71.2|ICD10CM|Prosth/oth implnt/mtrls cardiovascular devices assoc w incdt|Prosth/oth implnt/mtrls cardiovascular devices assoc w incdt +C2907581|T037|AB|Y71.3|ICD10CM|Surg instrumnt, matrl and cardiovasc devices assoc w incdt|Surg instrumnt, matrl and cardiovasc devices assoc w incdt +C2907582|T037|AB|Y71.8|ICD10CM|Miscellaneous cardiovascular devices assoc w incdt, NEC|Miscellaneous cardiovascular devices assoc w incdt, NEC +C2907582|T037|PT|Y71.8|ICD10CM|Miscellaneous cardiovascular devices associated with adverse incidents, not elsewhere classified|Miscellaneous cardiovascular devices associated with adverse incidents, not elsewhere classified +C0496531|T037|AB|Y72|ICD10CM|Otorhinolaryngological devices assoc w incdt|Otorhinolaryngological devices assoc w incdt +C0496531|T037|HT|Y72|ICD10CM|Otorhinolaryngological devices associated with adverse incidents|Otorhinolaryngological devices associated with adverse incidents +C0496531|T037|HT|Y72|ICD10|Otorhinolaryngological devices associated with adverse incidents|Otorhinolaryngological devices associated with adverse incidents +C2907583|T037|AB|Y72.0|ICD10CM|Diagnostic and monitoring otorhino devices assoc w incdt|Diagnostic and monitoring otorhino devices assoc w incdt +C2907583|T037|PT|Y72.0|ICD10CM|Diagnostic and monitoring otorhinolaryngological devices associated with adverse incidents|Diagnostic and monitoring otorhinolaryngological devices associated with adverse incidents +C0481278|T037|PT|Y72.0|ICD10|Otorhinolaryngological devices associated with adverse incidents, diagnostic and monitoring devices|Otorhinolaryngological devices associated with adverse incidents, diagnostic and monitoring devices +C2907584|T037|AB|Y72.1|ICD10CM|Therapeutic and rehab otorhino devices assoc w incdt|Therapeutic and rehab otorhino devices assoc w incdt +C2907585|T037|AB|Y72.2|ICD10CM|Prosth/oth implnt/mtrls otorhino devices assoc w incdt|Prosth/oth implnt/mtrls otorhino devices assoc w incdt +C2907586|T037|AB|Y72.3|ICD10CM|Surgical instrumnt, matrl and otorhino devices assoc w incdt|Surgical instrumnt, matrl and otorhino devices assoc w incdt +C2907587|T037|AB|Y72.8|ICD10CM|Miscellaneous otorhino devices assoc w incdt, NEC|Miscellaneous otorhino devices assoc w incdt, NEC +C0481280|T037|AB|Y73|ICD10CM|Gastroenterology and urology devices assoc w incdt|Gastroenterology and urology devices assoc w incdt +C0481280|T037|HT|Y73|ICD10CM|Gastroenterology and urology devices associated with adverse incidents|Gastroenterology and urology devices associated with adverse incidents +C0481280|T037|HT|Y73|ICD10|Gastroenterology and urology devices associated with adverse incidents|Gastroenterology and urology devices associated with adverse incidents +C2907588|T037|PT|Y73.0|ICD10CM|Diagnostic and monitoring gastroenterology and urology devices associated with adverse incidents|Diagnostic and monitoring gastroenterology and urology devices associated with adverse incidents +C2907588|T037|AB|Y73.0|ICD10CM|Dx and monitor gastroent and urology devices assoc w incdt|Dx and monitor gastroent and urology devices assoc w incdt +C2907589|T037|AB|Y73.1|ICD10CM|Theraputc and rehab gastroent and urology dev assoc w incdt|Theraputc and rehab gastroent and urology dev assoc w incdt +C2907590|T037|AB|Y73.2|ICD10CM|Prosth/oth implnt/mtrls gastroent and urol dev assoc w incdt|Prosth/oth implnt/mtrls gastroent and urol dev assoc w incdt +C2907591|T037|AB|Y73.3|ICD10CM|Surg instrumnt, matrl & gastroent and urol dev assoc w incdt|Surg instrumnt, matrl & gastroent and urol dev assoc w incdt +C2907592|T037|AB|Y73.8|ICD10CM|Misc gastroent and urology devices assoc w incdt, NEC|Misc gastroent and urology devices assoc w incdt, NEC +C0481285|T037|AB|Y74|ICD10CM|General hospital and personal-use devices assoc w incdt|General hospital and personal-use devices assoc w incdt +C0481285|T037|HT|Y74|ICD10CM|General hospital and personal-use devices associated with adverse incidents|General hospital and personal-use devices associated with adverse incidents +C0481285|T037|HT|Y74|ICD10|General hospital and personal-use devices associated with adverse incidents|General hospital and personal-use devices associated with adverse incidents +C2907593|T037|AB|Y74.0|ICD10CM|Dx and monitoring gen hosp/persnl-use devices assoc w incdt|Dx and monitoring gen hosp/persnl-use devices assoc w incdt +C2907594|T037|AB|Y74.1|ICD10CM|Theraputc and rehab gen hosp/persnl-use dev assoc w incdt|Theraputc and rehab gen hosp/persnl-use dev assoc w incdt +C2907595|T037|AB|Y74.2|ICD10CM|Prosth/oth implnt, matrl & hosp/persnl-use dev assoc w incdt|Prosth/oth implnt, matrl & hosp/persnl-use dev assoc w incdt +C2907596|T037|AB|Y74.3|ICD10CM|Surg instrumnt,matrl & gen hosp/persnl-use dev assoc w incdt|Surg instrumnt,matrl & gen hosp/persnl-use dev assoc w incdt +C2907597|T037|AB|Y74.8|ICD10CM|Miscellaneous gen hosp/persnl-use devices assoc w incdt, NEC|Miscellaneous gen hosp/persnl-use devices assoc w incdt, NEC +C0481291|T037|HT|Y75|ICD10|Neurological devices associated with adverse incidents|Neurological devices associated with adverse incidents +C0481291|T037|HT|Y75|ICD10CM|Neurological devices associated with adverse incidents|Neurological devices associated with adverse incidents +C0481291|T037|AB|Y75|ICD10CM|Neurological devices associated with adverse incidents|Neurological devices associated with adverse incidents +C2907598|T037|AB|Y75.0|ICD10CM|Diagnostic and monitoring neurological devices assoc w incdt|Diagnostic and monitoring neurological devices assoc w incdt +C2907598|T037|PT|Y75.0|ICD10CM|Diagnostic and monitoring neurological devices associated with adverse incidents|Diagnostic and monitoring neurological devices associated with adverse incidents +C0481292|T037|PT|Y75.0|ICD10|Neurological devices associated with adverse incidents, diagnostic and monitoring devices|Neurological devices associated with adverse incidents, diagnostic and monitoring devices +C2907599|T037|PT|Y75.1|ICD10CM|Therapeutic (nonsurgical) and rehabilitative neurological devices associated with adverse incidents|Therapeutic (nonsurgical) and rehabilitative neurological devices associated with adverse incidents +C2907599|T037|AB|Y75.1|ICD10CM|Therapeutic and rehab neurological devices assoc w incdt|Therapeutic and rehab neurological devices assoc w incdt +C2907600|T037|AB|Y75.2|ICD10CM|Prosth/oth implants, matrl and neuro devices assoc w incdt|Prosth/oth implants, matrl and neuro devices assoc w incdt +C2907600|T037|PT|Y75.2|ICD10CM|Prosthetic and other implants, materials and neurological devices associated with adverse incidents|Prosthetic and other implants, materials and neurological devices associated with adverse incidents +C2907601|T037|AB|Y75.3|ICD10CM|Surgical instrumnt, matrl and neuro devices assoc w incdt|Surgical instrumnt, matrl and neuro devices assoc w incdt +C2907602|T037|AB|Y75.8|ICD10CM|Miscellaneous neurological devices assoc w incdt, NEC|Miscellaneous neurological devices assoc w incdt, NEC +C2907602|T037|PT|Y75.8|ICD10CM|Miscellaneous neurological devices associated with adverse incidents, not elsewhere classified|Miscellaneous neurological devices associated with adverse incidents, not elsewhere classified +C0481297|T037|HT|Y76|ICD10|Obstetric and gynaecological devices associated with adverse incidents|Obstetric and gynaecological devices associated with adverse incidents +C0481297|T037|AB|Y76|ICD10CM|Obstetric and gynecological devices assoc w incdt|Obstetric and gynecological devices assoc w incdt +C0481297|T037|HT|Y76|ICD10CM|Obstetric and gynecological devices associated with adverse incidents|Obstetric and gynecological devices associated with adverse incidents +C0481297|T037|HT|Y76|ICD10AE|Obstetric and gynecological devices associated with adverse incidents|Obstetric and gynecological devices associated with adverse incidents +C2907603|T037|AB|Y76.0|ICD10CM|Diagnostic and monitoring ob/gyn devices assoc w incdt|Diagnostic and monitoring ob/gyn devices assoc w incdt +C2907603|T037|PT|Y76.0|ICD10CM|Diagnostic and monitoring obstetric and gynecological devices associated with adverse incidents|Diagnostic and monitoring obstetric and gynecological devices associated with adverse incidents +C2907604|T037|AB|Y76.1|ICD10CM|Therapeutic and rehab ob/gyn devices assoc w incdt|Therapeutic and rehab ob/gyn devices assoc w incdt +C2907605|T037|AB|Y76.2|ICD10CM|Prosth/oth implnt/mtrls ob/gyn devices assoc w incdt|Prosth/oth implnt/mtrls ob/gyn devices assoc w incdt +C2907606|T037|AB|Y76.3|ICD10CM|Surgical instrumnt, matrl and ob/gyn devices assoc w incdt|Surgical instrumnt, matrl and ob/gyn devices assoc w incdt +C2907607|T037|AB|Y76.8|ICD10CM|Miscellaneous ob/gyn devices assoc w incdt, NEC|Miscellaneous ob/gyn devices assoc w incdt, NEC +C0481303|T037|HT|Y77|ICD10CM|Ophthalmic devices associated with adverse incidents|Ophthalmic devices associated with adverse incidents +C0481303|T037|AB|Y77|ICD10CM|Ophthalmic devices associated with adverse incidents|Ophthalmic devices associated with adverse incidents +C0481303|T037|HT|Y77|ICD10|Ophthalmic devices associated with adverse incidents|Ophthalmic devices associated with adverse incidents +C2907608|T037|AB|Y77.0|ICD10CM|Diagnostic and monitoring ophthalmic devices assoc w incdt|Diagnostic and monitoring ophthalmic devices assoc w incdt +C2907608|T037|PT|Y77.0|ICD10CM|Diagnostic and monitoring ophthalmic devices associated with adverse incidents|Diagnostic and monitoring ophthalmic devices associated with adverse incidents +C0481304|T037|PT|Y77.0|ICD10|Ophthalmic devices associated with adverse incidents, diagnostic and monitoring devices|Ophthalmic devices associated with adverse incidents, diagnostic and monitoring devices +C2907609|T037|PT|Y77.1|ICD10CM|Therapeutic (nonsurgical) and rehabilitative ophthalmic devices associated with adverse incidents|Therapeutic (nonsurgical) and rehabilitative ophthalmic devices associated with adverse incidents +C2907609|T037|AB|Y77.1|ICD10CM|Therapeutic and rehab ophthalmic devices assoc w incdt|Therapeutic and rehab ophthalmic devices assoc w incdt +C2907610|T037|AB|Y77.2|ICD10CM|Prosth/oth implnt/mtrls ophthalmic devices assoc w incdt|Prosth/oth implnt/mtrls ophthalmic devices assoc w incdt +C2907611|T037|AB|Y77.3|ICD10CM|Surgical instrumnt, materials and opth devices assoc w incdt|Surgical instrumnt, materials and opth devices assoc w incdt +C2907612|T037|AB|Y77.8|ICD10CM|Miscellaneous ophthalmic devices assoc w incdt, NEC|Miscellaneous ophthalmic devices assoc w incdt, NEC +C2907612|T037|PT|Y77.8|ICD10CM|Miscellaneous ophthalmic devices associated with adverse incidents, not elsewhere classified|Miscellaneous ophthalmic devices associated with adverse incidents, not elsewhere classified +C0481309|T037|HT|Y78|ICD10|Radiological devices associated with adverse incidents|Radiological devices associated with adverse incidents +C0481309|T037|HT|Y78|ICD10CM|Radiological devices associated with adverse incidents|Radiological devices associated with adverse incidents +C0481309|T037|AB|Y78|ICD10CM|Radiological devices associated with adverse incidents|Radiological devices associated with adverse incidents +C2907613|T037|AB|Y78.0|ICD10CM|Diagnostic and monitoring radiological devices assoc w incdt|Diagnostic and monitoring radiological devices assoc w incdt +C2907613|T037|PT|Y78.0|ICD10CM|Diagnostic and monitoring radiological devices associated with adverse incidents|Diagnostic and monitoring radiological devices associated with adverse incidents +C0481310|T037|PT|Y78.0|ICD10|Radiological devices associated with adverse incidents, diagnostic and monitoring devices|Radiological devices associated with adverse incidents, diagnostic and monitoring devices +C2907614|T037|PT|Y78.1|ICD10CM|Therapeutic (nonsurgical) and rehabilitative radiological devices associated with adverse incidents|Therapeutic (nonsurgical) and rehabilitative radiological devices associated with adverse incidents +C2907614|T037|AB|Y78.1|ICD10CM|Therapeutic and rehab radiological devices assoc w incdt|Therapeutic and rehab radiological devices assoc w incdt +C2907615|T037|AB|Y78.2|ICD10CM|Prosth/oth implnt/mtrls radiological devices assoc w incdt|Prosth/oth implnt/mtrls radiological devices assoc w incdt +C2907616|T037|AB|Y78.3|ICD10CM|Surgical instrumnt, matrl and radiolog devices assoc w incdt|Surgical instrumnt, matrl and radiolog devices assoc w incdt +C2907617|T037|AB|Y78.8|ICD10CM|Miscellaneous radiological devices assoc w incdt, NEC|Miscellaneous radiological devices assoc w incdt, NEC +C2907617|T037|PT|Y78.8|ICD10CM|Miscellaneous radiological devices associated with adverse incidents, not elsewhere classified|Miscellaneous radiological devices associated with adverse incidents, not elsewhere classified +C0481315|T037|HT|Y79|ICD10|Orthopaedic devices associated with adverse incidents|Orthopaedic devices associated with adverse incidents +C0481315|T037|HT|Y79|ICD10AE|Orthopedic devices associated with adverse incidents|Orthopedic devices associated with adverse incidents +C0481315|T037|HT|Y79|ICD10CM|Orthopedic devices associated with adverse incidents|Orthopedic devices associated with adverse incidents +C0481315|T037|AB|Y79|ICD10CM|Orthopedic devices associated with adverse incidents|Orthopedic devices associated with adverse incidents +C2907618|T037|AB|Y79.0|ICD10CM|Diagnostic and monitoring orthopedic devices assoc w incdt|Diagnostic and monitoring orthopedic devices assoc w incdt +C2907618|T037|PT|Y79.0|ICD10CM|Diagnostic and monitoring orthopedic devices associated with adverse incidents|Diagnostic and monitoring orthopedic devices associated with adverse incidents +C0481316|T037|PT|Y79.0|ICD10|Orthopaedic devices associated with adverse incidents, diagnostic and monitoring devices|Orthopaedic devices associated with adverse incidents, diagnostic and monitoring devices +C0481316|T037|PT|Y79.0|ICD10AE|Orthopedic devices associated with adverse incidents, diagnostic and monitoring devices|Orthopedic devices associated with adverse incidents, diagnostic and monitoring devices +C2907619|T037|PT|Y79.1|ICD10CM|Therapeutic (nonsurgical) and rehabilitative orthopedic devices associated with adverse incidents|Therapeutic (nonsurgical) and rehabilitative orthopedic devices associated with adverse incidents +C2907619|T037|AB|Y79.1|ICD10CM|Therapeutic and rehab orthopedic devices assoc w incdt|Therapeutic and rehab orthopedic devices assoc w incdt +C2907620|T037|AB|Y79.2|ICD10CM|Prosth/oth implnt/mtrls orthopedic devices assoc w incdt|Prosth/oth implnt/mtrls orthopedic devices assoc w incdt +C2907621|T037|AB|Y79.3|ICD10CM|Surgical instrumnt, materials and orth devices assoc w incdt|Surgical instrumnt, materials and orth devices assoc w incdt +C2907622|T037|AB|Y79.8|ICD10CM|Miscellaneous orthopedic devices assoc w incdt, NEC|Miscellaneous orthopedic devices assoc w incdt, NEC +C2907622|T037|PT|Y79.8|ICD10CM|Miscellaneous orthopedic devices associated with adverse incidents, not elsewhere classified|Miscellaneous orthopedic devices associated with adverse incidents, not elsewhere classified +C0481321|T037|HT|Y80|ICD10CM|Physical medicine devices associated with adverse incidents|Physical medicine devices associated with adverse incidents +C0481321|T037|AB|Y80|ICD10CM|Physical medicine devices associated with adverse incidents|Physical medicine devices associated with adverse incidents +C0481321|T037|HT|Y80|ICD10|Physical medicine devices associated with adverse incidents|Physical medicine devices associated with adverse incidents +C2907623|T037|PT|Y80.0|ICD10CM|Diagnostic and monitoring physical medicine devices associated with adverse incidents|Diagnostic and monitoring physical medicine devices associated with adverse incidents +C2907623|T037|AB|Y80.0|ICD10CM|Dx and monitoring physical medicine devices assoc w incdt|Dx and monitoring physical medicine devices assoc w incdt +C0481322|T037|PT|Y80.0|ICD10|Physical medicine devices associated with adverse incidents, diagnostic and monitoring devices|Physical medicine devices associated with adverse incidents, diagnostic and monitoring devices +C2907624|T037|AB|Y80.1|ICD10CM|Theraputc and rehab physical medicine devices assoc w incdt|Theraputc and rehab physical medicine devices assoc w incdt +C2907625|T037|AB|Y80.2|ICD10CM|Prosth/oth implnt/mtrls physical med devices assoc w incdt|Prosth/oth implnt/mtrls physical med devices assoc w incdt +C2907626|T037|AB|Y80.3|ICD10CM|Surg instrumnt, matrl and physcl med devices assoc w incdt|Surg instrumnt, matrl and physcl med devices assoc w incdt +C2907627|T037|AB|Y80.8|ICD10CM|Miscellaneous physical medicine devices assoc w incdt, NEC|Miscellaneous physical medicine devices assoc w incdt, NEC +C2907627|T037|PT|Y80.8|ICD10CM|Miscellaneous physical medicine devices associated with adverse incidents, not elsewhere classified|Miscellaneous physical medicine devices associated with adverse incidents, not elsewhere classified +C0481327|T037|AB|Y81|ICD10CM|General- and plastic-surgery devices assoc w incdt|General- and plastic-surgery devices assoc w incdt +C0481327|T037|HT|Y81|ICD10CM|General- and plastic-surgery devices associated with adverse incidents|General- and plastic-surgery devices associated with adverse incidents +C0481327|T037|HT|Y81|ICD10|General- and plastic-surgery devices associated with adverse incidents|General- and plastic-surgery devices associated with adverse incidents +C2907628|T037|PT|Y81.0|ICD10CM|Diagnostic and monitoring general- and plastic-surgery devices associated with adverse incidents|Diagnostic and monitoring general- and plastic-surgery devices associated with adverse incidents +C2907628|T037|AB|Y81.0|ICD10CM|Dx and monitoring gen/plast-surg devices assoc w incdt|Dx and monitoring gen/plast-surg devices assoc w incdt +C2907629|T037|AB|Y81.1|ICD10CM|Therapeutic and rehab gen/plast-surg devices assoc w incdt|Therapeutic and rehab gen/plast-surg devices assoc w incdt +C2907630|T037|AB|Y81.2|ICD10CM|Prosth/oth implnt/mtrls gen/plast-surg devices assoc w incdt|Prosth/oth implnt/mtrls gen/plast-surg devices assoc w incdt +C2907631|T037|AB|Y81.3|ICD10CM|Surg instrumnt, matrl and gen/plast-surg dev assoc w incdt|Surg instrumnt, matrl and gen/plast-surg dev assoc w incdt +C2907632|T037|AB|Y81.8|ICD10CM|Miscellaneous gen/plast-surg devices assoc w incdt, NEC|Miscellaneous gen/plast-surg devices assoc w incdt, NEC +C0481333|T037|AB|Y82|ICD10CM|Oth and unsp medical devices associated w adverse incidents|Oth and unsp medical devices associated w adverse incidents +C0481333|T037|HT|Y82|ICD10CM|Other and unspecified medical devices associated with adverse incidents|Other and unspecified medical devices associated with adverse incidents +C0481333|T037|HT|Y82|ICD10|Other and unspecified medical devices associated with adverse incidents|Other and unspecified medical devices associated with adverse incidents +C2977541|T037|AB|Y82.8|ICD10CM|Other medical devices associated with adverse incidents|Other medical devices associated with adverse incidents +C2977541|T037|PT|Y82.8|ICD10CM|Other medical devices associated with adverse incidents|Other medical devices associated with adverse incidents +C2907634|T037|AB|Y82.9|ICD10CM|Unsp medical devices associated with adverse incidents|Unsp medical devices associated with adverse incidents +C2907634|T037|PT|Y82.9|ICD10CM|Unspecified medical devices associated with adverse incidents|Unspecified medical devices associated with adverse incidents +C0261577|T046|AB|Y83|ICD10CM|Surg op & oth surg proc cause abn react/compl, w/o misadvnt|Surg op & oth surg proc cause abn react/compl, w/o misadvnt +C0496540|T037|PT|Y83.0|ICD10|Surgical operation with transplant of whole organ|Surgical operation with transplant of whole organ +C0481340|T046|AB|Y83.0|ICD10CM|Txplt of whole organ cause abn react/compl, w/o misadvnt|Txplt of whole organ cause abn react/compl, w/o misadvnt +C0418680|T037|AB|Y83.1|ICD10CM|Implnt of artif int dev cause abn react/compl, w/o misadvnt|Implnt of artif int dev cause abn react/compl, w/o misadvnt +C0418680|T037|PT|Y83.1|ICD10|Surgical operation with implant of artificial internal device|Surgical operation with implant of artificial internal device +C0481342|T037|AB|Y83.2|ICD10CM|Anastomos,bypass or grft cause abn react/compl, w/o misadvnt|Anastomos,bypass or grft cause abn react/compl, w/o misadvnt +C0496541|T037|PT|Y83.2|ICD10|Surgical operation with anastomosis, bypass or graft|Surgical operation with anastomosis, bypass or graft +C0481343|T046|AB|Y83.3|ICD10CM|Form of external stoma cause abn react/compl, w/o misadvnt|Form of external stoma cause abn react/compl, w/o misadvnt +C0496542|T037|PT|Y83.3|ICD10|Surgical operation with formation of external stoma|Surgical operation with formation of external stoma +C0481344|T037|AB|Y83.4|ICD10CM|Oth recnst surgery cause abn react/compl, w/o misadvnt|Oth recnst surgery cause abn react/compl, w/o misadvnt +C0418696|T037|PT|Y83.4|ICD10|Other reconstructive surgery|Other reconstructive surgery +C0418697|T046|AB|Y83.5|ICD10CM|Amputation of limb(s) cause abn react/compl, w/o misadvnt|Amputation of limb(s) cause abn react/compl, w/o misadvnt +C2907635|T046|AB|Y83.6|ICD10CM|Remov org (total) cause abn react/compl, w/o misadvnt|Remov org (total) cause abn react/compl, w/o misadvnt +C0496543|T037|PT|Y83.6|ICD10|Removal of other organ (partial) (total)|Removal of other organ (partial) (total) +C0481347|T046|AB|Y83.8|ICD10CM|Oth surgical procedures cause abn react/compl, w/o misadvnt|Oth surgical procedures cause abn react/compl, w/o misadvnt +C0496544|T046|PT|Y83.8|ICD10|Other surgical procedures|Other surgical procedures +C0481348|T037|AB|Y83.9|ICD10CM|Surgical proc, unsp cause abn react/compl, w/o misadvnt|Surgical proc, unsp cause abn react/compl, w/o misadvnt +C0496545|T037|PT|Y83.9|ICD10|Surgical procedure, unspecified|Surgical procedure, unspecified +C0481349|T037|AB|Y84|ICD10CM|Oth medical procedures cause abn react/compl, w/o misadvnt|Oth medical procedures cause abn react/compl, w/o misadvnt +C0261588|T037|PS|Y84.0|ICD10|Cardiac catheterization|Cardiac catheterization +C0261588|T037|AB|Y84.0|ICD10CM|Cardiac catheterization cause abn react/compl, w/o misadvnt|Cardiac catheterization cause abn react/compl, w/o misadvnt +C0261589|T037|PS|Y84.1|ICD10|Kidney dialysis|Kidney dialysis +C0261589|T037|AB|Y84.1|ICD10CM|Kidney dialysis cause abn react/compl, w/o misadvnt|Kidney dialysis cause abn react/compl, w/o misadvnt +C0261590|T037|AB|Y84.2|ICD10CM|Radiolog proc/radiothrpy cause abn react/compl, w/o misadvnt|Radiolog proc/radiothrpy cause abn react/compl, w/o misadvnt +C0261590|T037|PS|Y84.2|ICD10|Radiological procedure and radiotherapy|Radiological procedure and radiotherapy +C0261591|T037|PS|Y84.3|ICD10|Shock therapy|Shock therapy +C0261591|T037|AB|Y84.3|ICD10CM|Shock therapy cause abn react/compl, w/o misadvnt|Shock therapy cause abn react/compl, w/o misadvnt +C0261592|T037|PS|Y84.4|ICD10|Aspiration of fluid|Aspiration of fluid +C0261592|T037|AB|Y84.4|ICD10CM|Aspiration of fluid cause abn react/compl, w/o misadvnt|Aspiration of fluid cause abn react/compl, w/o misadvnt +C0481350|T037|PS|Y84.5|ICD10|Insertion of gastric or duodenal sound|Insertion of gastric or duodenal sound +C0481350|T037|AB|Y84.5|ICD10CM|Insrt gastr/duodnl sound cause abn react/compl, w/o misadvnt|Insrt gastr/duodnl sound cause abn react/compl, w/o misadvnt +C0261594|T037|PS|Y84.6|ICD10|Urinary catheterization|Urinary catheterization +C0261594|T037|AB|Y84.6|ICD10CM|Urinary catheterization cause abn react/compl, w/o misadvnt|Urinary catheterization cause abn react/compl, w/o misadvnt +C0261595|T037|PS|Y84.7|ICD10|Blood-sampling|Blood-sampling +C0261595|T037|AB|Y84.7|ICD10CM|Blood-sampling cause abn react/compl, w/o misadvnt|Blood-sampling cause abn react/compl, w/o misadvnt +C0481349|T037|AB|Y84.8|ICD10CM|Oth medical procedures cause abn react/compl, w/o misadvnt|Oth medical procedures cause abn react/compl, w/o misadvnt +C0481349|T037|PS|Y84.8|ICD10|Other medical procedures|Other medical procedures +C0481351|T046|AB|Y84.9|ICD10CM|Medical procedure, unsp cause abn react/compl, w/o misadvnt|Medical procedure, unsp cause abn react/compl, w/o misadvnt +C0481351|T046|PS|Y84.9|ICD10|Medical procedure, unspecified|Medical procedure, unspecified +C0481353|T046|HT|Y85|ICD10|Sequelae of transport accidents|Sequelae of transport accidents +C0481352|T037|HT|Y85-Y89.9|ICD10|Sequelae of external causes of morbidity and mortality|Sequelae of external causes of morbidity and mortality +C0481354|T037|PT|Y85.0|ICD10|Sequelae of motor-vehicle accident|Sequelae of motor-vehicle accident +C0481355|T037|PT|Y85.9|ICD10|Sequelae of other and unspecified transport accidents|Sequelae of other and unspecified transport accidents +C0481356|T037|PT|Y86|ICD10|Sequelae of other accidents|Sequelae of other accidents +C0481357|T037|HT|Y87|ICD10|Sequelae of intentional self-harm, assault and events of undetermined intent|Sequelae of intentional self-harm, assault and events of undetermined intent +C0481358|T037|PT|Y87.0|ICD10|Sequelae of intentional self-harm|Sequelae of intentional self-harm +C0481359|T037|PT|Y87.1|ICD10|Sequelae of assault|Sequelae of assault +C0481360|T037|PT|Y87.2|ICD10|Sequelae of events of undetermined intent|Sequelae of events of undetermined intent +C0481361|T037|HT|Y88|ICD10|Sequelae with surgical and medical care as external cause|Sequelae with surgical and medical care as external cause +C0481363|T037|PT|Y88.1|ICD10|Sequelae of misadventures to patients during surgical and medical procedures|Sequelae of misadventures to patients during surgical and medical procedures +C0481364|T037|PT|Y88.2|ICD10|Sequelae of adverse incidents associated with medical devices in diagnostic and therapeutic use|Sequelae of adverse incidents associated with medical devices in diagnostic and therapeutic use +C0481366|T037|HT|Y89|ICD10|Sequelae of other external causes|Sequelae of other external causes +C0481367|T037|PT|Y89.0|ICD10|Sequelae of legal intervention|Sequelae of legal intervention +C0481368|T046|PT|Y89.1|ICD10|Sequelae of war operations|Sequelae of war operations +C0481369|T037|PT|Y89.9|ICD10|Sequelae of unspecified external cause|Sequelae of unspecified external cause +C0481371|T033|AB|Y90|ICD10CM|Evidence of alcohol involv determined by blood alcohol level|Evidence of alcohol involv determined by blood alcohol level +C0481371|T033|HT|Y90|ICD10CM|Evidence of alcohol involvement determined by blood alcohol level|Evidence of alcohol involvement determined by blood alcohol level +C0481371|T033|HT|Y90|ICD10|Evidence of alcohol involvement determined by blood alcohol level|Evidence of alcohol involvement determined by blood alcohol level +C0481370|T037|HT|Y90-Y98.9|ICD10|Supplementary factors related to causes of morbidity and mortality classified elsewhere|Supplementary factors related to causes of morbidity and mortality classified elsewhere +C2907636|T037|HT|Y90-Y99|ICD10CM|Supplementary factors related to causes of morbidity classified elsewhere (Y90-Y99)|Supplementary factors related to causes of morbidity classified elsewhere (Y90-Y99) +C0481372|T033|PT|Y90.0|ICD10|Blood alcohol level of less than 20 mg/100 ml|Blood alcohol level of less than 20 mg/100 ml +C0481372|T033|PT|Y90.0|ICD10CM|Blood alcohol level of less than 20 mg/100 ml|Blood alcohol level of less than 20 mg/100 ml +C0481372|T033|AB|Y90.0|ICD10CM|Blood alcohol level of less than 20 mg/100 ml|Blood alcohol level of less than 20 mg/100 ml +C0481373|T033|PT|Y90.1|ICD10CM|Blood alcohol level of 20-39 mg/100 ml|Blood alcohol level of 20-39 mg/100 ml +C0481373|T033|AB|Y90.1|ICD10CM|Blood alcohol level of 20-39 mg/100 ml|Blood alcohol level of 20-39 mg/100 ml +C0481373|T033|PT|Y90.1|ICD10|Blood alcohol level of 20-39 mg/100 ml|Blood alcohol level of 20-39 mg/100 ml +C0481374|T033|PT|Y90.2|ICD10|Blood alcohol level of 40-59 mg/100 ml|Blood alcohol level of 40-59 mg/100 ml +C0481374|T033|PT|Y90.2|ICD10CM|Blood alcohol level of 40-59 mg/100 ml|Blood alcohol level of 40-59 mg/100 ml +C0481374|T033|AB|Y90.2|ICD10CM|Blood alcohol level of 40-59 mg/100 ml|Blood alcohol level of 40-59 mg/100 ml +C0481375|T033|PT|Y90.3|ICD10CM|Blood alcohol level of 60-79 mg/100 ml|Blood alcohol level of 60-79 mg/100 ml +C0481375|T033|AB|Y90.3|ICD10CM|Blood alcohol level of 60-79 mg/100 ml|Blood alcohol level of 60-79 mg/100 ml +C0481375|T033|PT|Y90.3|ICD10|Blood alcohol level of 60-79 mg/100 ml|Blood alcohol level of 60-79 mg/100 ml +C0481376|T033|PT|Y90.4|ICD10|Blood alcohol level of 80-99 mg/100 ml|Blood alcohol level of 80-99 mg/100 ml +C0481376|T033|PT|Y90.4|ICD10CM|Blood alcohol level of 80-99 mg/100 ml|Blood alcohol level of 80-99 mg/100 ml +C0481376|T033|AB|Y90.4|ICD10CM|Blood alcohol level of 80-99 mg/100 ml|Blood alcohol level of 80-99 mg/100 ml +C0481377|T033|PT|Y90.5|ICD10CM|Blood alcohol level of 100-119 mg/100 ml|Blood alcohol level of 100-119 mg/100 ml +C0481377|T033|AB|Y90.5|ICD10CM|Blood alcohol level of 100-119 mg/100 ml|Blood alcohol level of 100-119 mg/100 ml +C0481377|T033|PT|Y90.5|ICD10|Blood alcohol level of 100-119 mg/100 ml|Blood alcohol level of 100-119 mg/100 ml +C0481378|T033|PT|Y90.6|ICD10|Blood alcohol level of 120-199 mg/100 ml|Blood alcohol level of 120-199 mg/100 ml +C0481378|T033|PT|Y90.6|ICD10CM|Blood alcohol level of 120-199 mg/100 ml|Blood alcohol level of 120-199 mg/100 ml +C0481378|T033|AB|Y90.6|ICD10CM|Blood alcohol level of 120-199 mg/100 ml|Blood alcohol level of 120-199 mg/100 ml +C0481379|T033|PT|Y90.7|ICD10CM|Blood alcohol level of 200-239 mg/100 ml|Blood alcohol level of 200-239 mg/100 ml +C0481379|T033|AB|Y90.7|ICD10CM|Blood alcohol level of 200-239 mg/100 ml|Blood alcohol level of 200-239 mg/100 ml +C0481379|T033|PT|Y90.7|ICD10|Blood alcohol level of 200-239 mg/100 ml|Blood alcohol level of 200-239 mg/100 ml +C0481380|T033|PT|Y90.8|ICD10|Blood alcohol level of 240 mg/100 ml or more|Blood alcohol level of 240 mg/100 ml or more +C0481380|T033|PT|Y90.8|ICD10CM|Blood alcohol level of 240 mg/100 ml or more|Blood alcohol level of 240 mg/100 ml or more +C0481380|T033|AB|Y90.8|ICD10CM|Blood alcohol level of 240 mg/100 ml or more|Blood alcohol level of 240 mg/100 ml or more +C0481381|T033|PT|Y90.9|ICD10CM|Presence of alcohol in blood, level not specified|Presence of alcohol in blood, level not specified +C0481381|T033|AB|Y90.9|ICD10CM|Presence of alcohol in blood, level not specified|Presence of alcohol in blood, level not specified +C0481381|T033|PT|Y90.9|ICD10|Presence of alcohol in blood, level not specified|Presence of alcohol in blood, level not specified +C0481382|T037|HT|Y91|ICD10|Evidence of alcohol involvement determined by level of intoxication|Evidence of alcohol involvement determined by level of intoxication +C0496556|T033|PT|Y91.0|ICD10|Mild alcohol intoxication|Mild alcohol intoxication +C0496557|T033|PT|Y91.1|ICD10|Moderate alcohol intoxication|Moderate alcohol intoxication +C0496558|T033|PT|Y91.2|ICD10|Severe alcohol intoxication|Severe alcohol intoxication +C0496559|T033|PT|Y91.3|ICD10|Very severe alcohol intoxication|Very severe alcohol intoxication +C0496560|T033|PT|Y91.9|ICD10|Alcohol involvement, not otherwise specified|Alcohol involvement, not otherwise specified +C2907637|T033|AB|Y92|ICD10CM|Place of occurrence of the external cause|Place of occurrence of the external cause +C2907637|T033|HT|Y92|ICD10CM|Place of occurrence of the external cause|Place of occurrence of the external cause +C2907638|T033|AB|Y92.0|ICD10CM|Non-institutional (private) residence as place|Non-institutional (private) residence as place +C2907638|T033|HT|Y92.0|ICD10CM|Non-institutional (private) residence as the place of occurrence of the external cause|Non-institutional (private) residence as the place of occurrence of the external cause +C2907639|T033|AB|Y92.00|ICD10CM|Unsp non-institutional (private) residence as place|Unsp non-institutional (private) residence as place +C2907639|T033|HT|Y92.00|ICD10CM|Unspecified non-institutional (private) residence as the place of occurrence of the external cause|Unspecified non-institutional (private) residence as the place of occurrence of the external cause +C3264047|T033|AB|Y92.000|ICD10CM|Kitchen of unsp non-institut (private) residence as place|Kitchen of unsp non-institut (private) residence as place +C3264048|T033|AB|Y92.001|ICD10CM|Dining room of unsp non-institut residence as place|Dining room of unsp non-institut residence as place +C3264049|T033|AB|Y92.002|ICD10CM|Bathrm of unsp non-institut resdnce sngl-fmly house as place|Bathrm of unsp non-institut resdnce sngl-fmly house as place +C3264050|T033|AB|Y92.003|ICD10CM|Bedroom of unsp non-institut (private) residence as place|Bedroom of unsp non-institut (private) residence as place +C3264051|T033|AB|Y92.007|ICD10CM|Garden or yard of unsp non-institut residence as place|Garden or yard of unsp non-institut residence as place +C3264052|T033|AB|Y92.008|ICD10CM|Oth place in unsp non-institut (private) residence as place|Oth place in unsp non-institut (private) residence as place +C3264053|T033|ET|Y92.009|ICD10CM|Home (NOS) as the place of occurrence of the external cause|Home (NOS) as the place of occurrence of the external cause +C3264054|T033|AB|Y92.009|ICD10CM|Unsp place in unsp non-institut (private) residence as place|Unsp place in unsp non-institut (private) residence as place +C2907640|T033|ET|Y92.01|ICD10CM|Farmhouse as the place of occurrence of the external cause|Farmhouse as the place of occurrence of the external cause +C2907641|T033|AB|Y92.01|ICD10CM|Single-family non-institutional (private) house as place|Single-family non-institutional (private) house as place +C2907641|T033|HT|Y92.01|ICD10CM|Single-family non-institutional (private) house as the place of occurrence of the external cause|Single-family non-institutional (private) house as the place of occurrence of the external cause +C2907642|T033|AB|Y92.010|ICD10CM|Kitchen of single-family (private) house as place|Kitchen of single-family (private) house as place +C2907642|T033|PT|Y92.010|ICD10CM|Kitchen of single-family (private) house as the place of occurrence of the external cause|Kitchen of single-family (private) house as the place of occurrence of the external cause +C2907643|T033|AB|Y92.011|ICD10CM|Dining room of single-family (private) house as place|Dining room of single-family (private) house as place +C2907643|T033|PT|Y92.011|ICD10CM|Dining room of single-family (private) house as the place of occurrence of the external cause|Dining room of single-family (private) house as the place of occurrence of the external cause +C2907644|T033|AB|Y92.012|ICD10CM|Bathroom of single-family (private) house as place|Bathroom of single-family (private) house as place +C2907644|T033|PT|Y92.012|ICD10CM|Bathroom of single-family (private) house as the place of occurrence of the external cause|Bathroom of single-family (private) house as the place of occurrence of the external cause +C2907645|T033|AB|Y92.013|ICD10CM|Bedroom of single-family (private) house as place|Bedroom of single-family (private) house as place +C2907645|T033|PT|Y92.013|ICD10CM|Bedroom of single-family (private) house as the place of occurrence of the external cause|Bedroom of single-family (private) house as the place of occurrence of the external cause +C2907646|T033|AB|Y92.014|ICD10CM|Private driveway to single-family (private) house as place|Private driveway to single-family (private) house as place +C2907646|T033|PT|Y92.014|ICD10CM|Private driveway to single-family (private) house as the place of occurrence of the external cause|Private driveway to single-family (private) house as the place of occurrence of the external cause +C2907647|T033|AB|Y92.015|ICD10CM|Private garage of single-family (private) house as place|Private garage of single-family (private) house as place +C2907647|T033|PT|Y92.015|ICD10CM|Private garage of single-family (private) house as the place of occurrence of the external cause|Private garage of single-family (private) house as the place of occurrence of the external cause +C2907648|T033|AB|Y92.016|ICD10CM|Swm-pool in sngl-fmly (private) house or garden as place|Swm-pool in sngl-fmly (private) house or garden as place +C2907649|T033|AB|Y92.017|ICD10CM|Garden or yard in single-family (private) house as place|Garden or yard in single-family (private) house as place +C2907649|T033|PT|Y92.017|ICD10CM|Garden or yard in single-family (private) house as the place of occurrence of the external cause|Garden or yard in single-family (private) house as the place of occurrence of the external cause +C2907650|T033|AB|Y92.018|ICD10CM|Oth place in single-family (private) house as place|Oth place in single-family (private) house as place +C2907650|T033|PT|Y92.018|ICD10CM|Other place in single-family (private) house as the place of occurrence of the external cause|Other place in single-family (private) house as the place of occurrence of the external cause +C2907651|T033|AB|Y92.019|ICD10CM|Unsp place in single-family (private) house as place|Unsp place in single-family (private) house as place +C2907651|T033|PT|Y92.019|ICD10CM|Unspecified place in single-family (private) house as the place of occurrence of the external cause|Unspecified place in single-family (private) house as the place of occurrence of the external cause +C2907652|T033|AB|Y92.02|ICD10CM|Mobile home as the place of occurrence of the external cause|Mobile home as the place of occurrence of the external cause +C2907652|T033|HT|Y92.02|ICD10CM|Mobile home as the place of occurrence of the external cause|Mobile home as the place of occurrence of the external cause +C2907653|T033|AB|Y92.020|ICD10CM|Kitchen in mobile home as place|Kitchen in mobile home as place +C2907653|T033|PT|Y92.020|ICD10CM|Kitchen in mobile home as the place of occurrence of the external cause|Kitchen in mobile home as the place of occurrence of the external cause +C2907654|T033|AB|Y92.021|ICD10CM|Dining room in mobile home as place|Dining room in mobile home as place +C2907654|T033|PT|Y92.021|ICD10CM|Dining room in mobile home as the place of occurrence of the external cause|Dining room in mobile home as the place of occurrence of the external cause +C2907655|T033|AB|Y92.022|ICD10CM|Bathroom in mobile home as place|Bathroom in mobile home as place +C2907655|T033|PT|Y92.022|ICD10CM|Bathroom in mobile home as the place of occurrence of the external cause|Bathroom in mobile home as the place of occurrence of the external cause +C2907656|T033|AB|Y92.023|ICD10CM|Bedroom in mobile home as place|Bedroom in mobile home as place +C2907656|T033|PT|Y92.023|ICD10CM|Bedroom in mobile home as the place of occurrence of the external cause|Bedroom in mobile home as the place of occurrence of the external cause +C2907657|T033|AB|Y92.024|ICD10CM|Driveway of mobile home as place|Driveway of mobile home as place +C2907657|T033|PT|Y92.024|ICD10CM|Driveway of mobile home as the place of occurrence of the external cause|Driveway of mobile home as the place of occurrence of the external cause +C2907658|T033|AB|Y92.025|ICD10CM|Garage of mobile home as place|Garage of mobile home as place +C2907658|T033|PT|Y92.025|ICD10CM|Garage of mobile home as the place of occurrence of the external cause|Garage of mobile home as the place of occurrence of the external cause +C2907659|T033|AB|Y92.026|ICD10CM|Swimming-pool of mobile home as place|Swimming-pool of mobile home as place +C2907659|T033|PT|Y92.026|ICD10CM|Swimming-pool of mobile home as the place of occurrence of the external cause|Swimming-pool of mobile home as the place of occurrence of the external cause +C2907660|T033|AB|Y92.027|ICD10CM|Garden or yard of mobile home as place|Garden or yard of mobile home as place +C2907660|T033|PT|Y92.027|ICD10CM|Garden or yard of mobile home as the place of occurrence of the external cause|Garden or yard of mobile home as the place of occurrence of the external cause +C2907661|T033|AB|Y92.028|ICD10CM|Oth place in mobile home as place|Oth place in mobile home as place +C2907661|T033|PT|Y92.028|ICD10CM|Other place in mobile home as the place of occurrence of the external cause|Other place in mobile home as the place of occurrence of the external cause +C2907662|T033|AB|Y92.029|ICD10CM|Unsp place in mobile home as place|Unsp place in mobile home as place +C2907662|T033|PT|Y92.029|ICD10CM|Unspecified place in mobile home as the place of occurrence of the external cause|Unspecified place in mobile home as the place of occurrence of the external cause +C2907665|T033|AB|Y92.03|ICD10CM|Apartment as the place of occurrence of the external cause|Apartment as the place of occurrence of the external cause +C2907665|T033|HT|Y92.03|ICD10CM|Apartment as the place of occurrence of the external cause|Apartment as the place of occurrence of the external cause +C2907663|T033|ET|Y92.03|ICD10CM|Co-op apartment as the place of occurrence of the external cause|Co-op apartment as the place of occurrence of the external cause +C2907664|T033|ET|Y92.03|ICD10CM|Condominium as the place of occurrence of the external cause|Condominium as the place of occurrence of the external cause +C2907666|T033|AB|Y92.030|ICD10CM|Kitchen in apartment as place|Kitchen in apartment as place +C2907666|T033|PT|Y92.030|ICD10CM|Kitchen in apartment as the place of occurrence of the external cause|Kitchen in apartment as the place of occurrence of the external cause +C2907667|T033|AB|Y92.031|ICD10CM|Bathroom in apartment as place|Bathroom in apartment as place +C2907667|T033|PT|Y92.031|ICD10CM|Bathroom in apartment as the place of occurrence of the external cause|Bathroom in apartment as the place of occurrence of the external cause +C2907668|T033|AB|Y92.032|ICD10CM|Bedroom in apartment as place|Bedroom in apartment as place +C2907668|T033|PT|Y92.032|ICD10CM|Bedroom in apartment as the place of occurrence of the external cause|Bedroom in apartment as the place of occurrence of the external cause +C2907669|T033|AB|Y92.038|ICD10CM|Oth place in apartment as place|Oth place in apartment as place +C2907669|T033|PT|Y92.038|ICD10CM|Other place in apartment as the place of occurrence of the external cause|Other place in apartment as the place of occurrence of the external cause +C2907670|T033|AB|Y92.039|ICD10CM|Unsp place in apartment as place|Unsp place in apartment as place +C2907670|T033|PT|Y92.039|ICD10CM|Unspecified place in apartment as the place of occurrence of the external cause|Unspecified place in apartment as the place of occurrence of the external cause +C2907671|T033|AB|Y92.04|ICD10CM|Boarding-house as place|Boarding-house as place +C2907671|T033|HT|Y92.04|ICD10CM|Boarding-house as the place of occurrence of the external cause|Boarding-house as the place of occurrence of the external cause +C2907672|T033|AB|Y92.040|ICD10CM|Kitchen in boarding-house as place|Kitchen in boarding-house as place +C2907672|T033|PT|Y92.040|ICD10CM|Kitchen in boarding-house as the place of occurrence of the external cause|Kitchen in boarding-house as the place of occurrence of the external cause +C2907673|T033|AB|Y92.041|ICD10CM|Bathroom in boarding-house as place|Bathroom in boarding-house as place +C2907673|T033|PT|Y92.041|ICD10CM|Bathroom in boarding-house as the place of occurrence of the external cause|Bathroom in boarding-house as the place of occurrence of the external cause +C2907674|T033|AB|Y92.042|ICD10CM|Bedroom in boarding-house as place|Bedroom in boarding-house as place +C2907674|T033|PT|Y92.042|ICD10CM|Bedroom in boarding-house as the place of occurrence of the external cause|Bedroom in boarding-house as the place of occurrence of the external cause +C2907675|T033|AB|Y92.043|ICD10CM|Driveway of boarding-house as place|Driveway of boarding-house as place +C2907675|T033|PT|Y92.043|ICD10CM|Driveway of boarding-house as the place of occurrence of the external cause|Driveway of boarding-house as the place of occurrence of the external cause +C2907676|T033|AB|Y92.044|ICD10CM|Garage of boarding-house as place|Garage of boarding-house as place +C2907676|T033|PT|Y92.044|ICD10CM|Garage of boarding-house as the place of occurrence of the external cause|Garage of boarding-house as the place of occurrence of the external cause +C2907677|T033|AB|Y92.045|ICD10CM|Swimming-pool of boarding-house as place|Swimming-pool of boarding-house as place +C2907677|T033|PT|Y92.045|ICD10CM|Swimming-pool of boarding-house as the place of occurrence of the external cause|Swimming-pool of boarding-house as the place of occurrence of the external cause +C2907678|T033|AB|Y92.046|ICD10CM|Garden or yard of boarding-house as place|Garden or yard of boarding-house as place +C2907678|T033|PT|Y92.046|ICD10CM|Garden or yard of boarding-house as the place of occurrence of the external cause|Garden or yard of boarding-house as the place of occurrence of the external cause +C2907679|T033|AB|Y92.048|ICD10CM|Oth place in boarding-house as place|Oth place in boarding-house as place +C2907679|T033|PT|Y92.048|ICD10CM|Other place in boarding-house as the place of occurrence of the external cause|Other place in boarding-house as the place of occurrence of the external cause +C2907680|T033|AB|Y92.049|ICD10CM|Unsp place in boarding-house as place|Unsp place in boarding-house as place +C2907680|T033|PT|Y92.049|ICD10CM|Unspecified place in boarding-house as the place of occurrence of the external cause|Unspecified place in boarding-house as the place of occurrence of the external cause +C2907681|T033|AB|Y92.09|ICD10CM|Oth non-institutional residence as place|Oth non-institutional residence as place +C2907681|T033|HT|Y92.09|ICD10CM|Other non-institutional residence as the place of occurrence of the external cause|Other non-institutional residence as the place of occurrence of the external cause +C2907682|T033|AB|Y92.090|ICD10CM|Kitchen in oth non-institutional residence as place|Kitchen in oth non-institutional residence as place +C2907682|T033|PT|Y92.090|ICD10CM|Kitchen in other non-institutional residence as the place of occurrence of the external cause|Kitchen in other non-institutional residence as the place of occurrence of the external cause +C2907683|T033|AB|Y92.091|ICD10CM|Bathroom in oth non-institutional residence as place|Bathroom in oth non-institutional residence as place +C2907683|T033|PT|Y92.091|ICD10CM|Bathroom in other non-institutional residence as the place of occurrence of the external cause|Bathroom in other non-institutional residence as the place of occurrence of the external cause +C2907684|T033|AB|Y92.092|ICD10CM|Bedroom in oth non-institutional residence as place|Bedroom in oth non-institutional residence as place +C2907684|T033|PT|Y92.092|ICD10CM|Bedroom in other non-institutional residence as the place of occurrence of the external cause|Bedroom in other non-institutional residence as the place of occurrence of the external cause +C2907685|T033|AB|Y92.093|ICD10CM|Driveway of non-institutional residence as place|Driveway of non-institutional residence as place +C2907685|T033|PT|Y92.093|ICD10CM|Driveway of other non-institutional residence as the place of occurrence of the external cause|Driveway of other non-institutional residence as the place of occurrence of the external cause +C2907686|T033|AB|Y92.094|ICD10CM|Garage of non-institutional residence as place|Garage of non-institutional residence as place +C2907686|T033|PT|Y92.094|ICD10CM|Garage of other non-institutional residence as the place of occurrence of the external cause|Garage of other non-institutional residence as the place of occurrence of the external cause +C2907687|T033|AB|Y92.095|ICD10CM|Swimming-pool of non-institutional residence as place|Swimming-pool of non-institutional residence as place +C2907687|T033|PT|Y92.095|ICD10CM|Swimming-pool of other non-institutional residence as the place of occurrence of the external cause|Swimming-pool of other non-institutional residence as the place of occurrence of the external cause +C2907688|T033|AB|Y92.096|ICD10CM|Garden or yard of non-institutional residence as place|Garden or yard of non-institutional residence as place +C2907688|T033|PT|Y92.096|ICD10CM|Garden or yard of other non-institutional residence as the place of occurrence of the external cause|Garden or yard of other non-institutional residence as the place of occurrence of the external cause +C2907689|T033|AB|Y92.098|ICD10CM|Oth place in oth non-institutional residence as place|Oth place in oth non-institutional residence as place +C2907689|T033|PT|Y92.098|ICD10CM|Other place in other non-institutional residence as the place of occurrence of the external cause|Other place in other non-institutional residence as the place of occurrence of the external cause +C2907690|T033|AB|Y92.099|ICD10CM|Unsp place in oth non-institutional residence as place|Unsp place in oth non-institutional residence as place +C2907691|T033|AB|Y92.1|ICD10CM|Institutional (nonprivate) residence as place|Institutional (nonprivate) residence as place +C2907691|T033|HT|Y92.1|ICD10CM|Institutional (nonprivate) residence as the place of occurrence of the external cause|Institutional (nonprivate) residence as the place of occurrence of the external cause +C2907692|T033|AB|Y92.10|ICD10CM|Unsp residential institution as place|Unsp residential institution as place +C2907692|T033|PT|Y92.10|ICD10CM|Unspecified residential institution as the place of occurrence of the external cause|Unspecified residential institution as the place of occurrence of the external cause +C2907693|T033|AB|Y92.11|ICD10CM|Children's home and orphanage as place|Children's home and orphanage as place +C2907693|T033|HT|Y92.11|ICD10CM|Children's home and orphanage as the place of occurrence of the external cause|Children's home and orphanage as the place of occurrence of the external cause +C2907694|T033|AB|Y92.110|ICD10CM|Kitchen in children's home and orphanage as place|Kitchen in children's home and orphanage as place +C2907694|T033|PT|Y92.110|ICD10CM|Kitchen in children's home and orphanage as the place of occurrence of the external cause|Kitchen in children's home and orphanage as the place of occurrence of the external cause +C2907695|T033|AB|Y92.111|ICD10CM|Bathroom in children's home and orphanage as place|Bathroom in children's home and orphanage as place +C2907695|T033|PT|Y92.111|ICD10CM|Bathroom in children's home and orphanage as the place of occurrence of the external cause|Bathroom in children's home and orphanage as the place of occurrence of the external cause +C2907696|T033|AB|Y92.112|ICD10CM|Bedroom in children's home and orphanage as place|Bedroom in children's home and orphanage as place +C2907696|T033|PT|Y92.112|ICD10CM|Bedroom in children's home and orphanage as the place of occurrence of the external cause|Bedroom in children's home and orphanage as the place of occurrence of the external cause +C2907697|T033|AB|Y92.113|ICD10CM|Driveway of children's home and orphanage as place|Driveway of children's home and orphanage as place +C2907697|T033|PT|Y92.113|ICD10CM|Driveway of children's home and orphanage as the place of occurrence of the external cause|Driveway of children's home and orphanage as the place of occurrence of the external cause +C2907698|T033|AB|Y92.114|ICD10CM|Garage of children's home and orphanage as place|Garage of children's home and orphanage as place +C2907698|T033|PT|Y92.114|ICD10CM|Garage of children's home and orphanage as the place of occurrence of the external cause|Garage of children's home and orphanage as the place of occurrence of the external cause +C2907699|T033|AB|Y92.115|ICD10CM|Swimming-pool of children's home and orphanage as place|Swimming-pool of children's home and orphanage as place +C2907699|T033|PT|Y92.115|ICD10CM|Swimming-pool of children's home and orphanage as the place of occurrence of the external cause|Swimming-pool of children's home and orphanage as the place of occurrence of the external cause +C2907700|T033|AB|Y92.116|ICD10CM|Garden or yard of children's home and orphanage as place|Garden or yard of children's home and orphanage as place +C2907700|T033|PT|Y92.116|ICD10CM|Garden or yard of children's home and orphanage as the place of occurrence of the external cause|Garden or yard of children's home and orphanage as the place of occurrence of the external cause +C2907701|T033|AB|Y92.118|ICD10CM|Oth place in children's home and orphanage as place|Oth place in children's home and orphanage as place +C2907701|T033|PT|Y92.118|ICD10CM|Other place in children's home and orphanage as the place of occurrence of the external cause|Other place in children's home and orphanage as the place of occurrence of the external cause +C2907702|T033|AB|Y92.119|ICD10CM|Unsp place in children's home and orphanage as place|Unsp place in children's home and orphanage as place +C2907702|T033|PT|Y92.119|ICD10CM|Unspecified place in children's home and orphanage as the place of occurrence of the external cause|Unspecified place in children's home and orphanage as the place of occurrence of the external cause +C2907703|T033|ET|Y92.12|ICD10CM|Home for the sick as the place of occurrence of the external cause|Home for the sick as the place of occurrence of the external cause +C2907704|T033|ET|Y92.12|ICD10CM|Hospice as the place of occurrence of the external cause|Hospice as the place of occurrence of the external cause +C2907705|T033|AB|Y92.12|ICD10CM|Nursing home as place|Nursing home as place +C2907705|T033|HT|Y92.12|ICD10CM|Nursing home as the place of occurrence of the external cause|Nursing home as the place of occurrence of the external cause +C2907706|T033|AB|Y92.120|ICD10CM|Kitchen in nursing home as place|Kitchen in nursing home as place +C2907706|T033|PT|Y92.120|ICD10CM|Kitchen in nursing home as the place of occurrence of the external cause|Kitchen in nursing home as the place of occurrence of the external cause +C2907707|T033|AB|Y92.121|ICD10CM|Bathroom in nursing home as place|Bathroom in nursing home as place +C2907707|T033|PT|Y92.121|ICD10CM|Bathroom in nursing home as the place of occurrence of the external cause|Bathroom in nursing home as the place of occurrence of the external cause +C2907708|T033|AB|Y92.122|ICD10CM|Bedroom in nursing home as place|Bedroom in nursing home as place +C2907708|T033|PT|Y92.122|ICD10CM|Bedroom in nursing home as the place of occurrence of the external cause|Bedroom in nursing home as the place of occurrence of the external cause +C2907709|T033|AB|Y92.123|ICD10CM|Driveway of nursing home as place|Driveway of nursing home as place +C2907709|T033|PT|Y92.123|ICD10CM|Driveway of nursing home as the place of occurrence of the external cause|Driveway of nursing home as the place of occurrence of the external cause +C2907710|T033|AB|Y92.124|ICD10CM|Garage of nursing home as place|Garage of nursing home as place +C2907710|T033|PT|Y92.124|ICD10CM|Garage of nursing home as the place of occurrence of the external cause|Garage of nursing home as the place of occurrence of the external cause +C2907711|T033|AB|Y92.125|ICD10CM|Swimming-pool of nursing home as place|Swimming-pool of nursing home as place +C2907711|T033|PT|Y92.125|ICD10CM|Swimming-pool of nursing home as the place of occurrence of the external cause|Swimming-pool of nursing home as the place of occurrence of the external cause +C2907712|T033|AB|Y92.126|ICD10CM|Garden or yard of nursing home as place|Garden or yard of nursing home as place +C2907712|T033|PT|Y92.126|ICD10CM|Garden or yard of nursing home as the place of occurrence of the external cause|Garden or yard of nursing home as the place of occurrence of the external cause +C2907713|T033|AB|Y92.128|ICD10CM|Oth place in nursing home as place|Oth place in nursing home as place +C2907713|T033|PT|Y92.128|ICD10CM|Other place in nursing home as the place of occurrence of the external cause|Other place in nursing home as the place of occurrence of the external cause +C2907714|T033|AB|Y92.129|ICD10CM|Unsp place in nursing home as place|Unsp place in nursing home as place +C2907714|T033|PT|Y92.129|ICD10CM|Unspecified place in nursing home as the place of occurrence of the external cause|Unspecified place in nursing home as the place of occurrence of the external cause +C2907715|T033|AB|Y92.13|ICD10CM|Military base as place|Military base as place +C2907715|T033|HT|Y92.13|ICD10CM|Military base as the place of occurrence of the external cause|Military base as the place of occurrence of the external cause +C2907716|T033|AB|Y92.130|ICD10CM|Kitchen on military base as place|Kitchen on military base as place +C2907716|T033|PT|Y92.130|ICD10CM|Kitchen on military base as the place of occurrence of the external cause|Kitchen on military base as the place of occurrence of the external cause +C2907717|T033|AB|Y92.131|ICD10CM|Mess hall on military base as place|Mess hall on military base as place +C2907717|T033|PT|Y92.131|ICD10CM|Mess hall on military base as the place of occurrence of the external cause|Mess hall on military base as the place of occurrence of the external cause +C2907718|T033|AB|Y92.133|ICD10CM|Barracks on military base as place|Barracks on military base as place +C2907718|T033|PT|Y92.133|ICD10CM|Barracks on military base as the place of occurrence of the external cause|Barracks on military base as the place of occurrence of the external cause +C2907719|T033|AB|Y92.135|ICD10CM|Garage on military base as place|Garage on military base as place +C2907719|T033|PT|Y92.135|ICD10CM|Garage on military base as the place of occurrence of the external cause|Garage on military base as the place of occurrence of the external cause +C2907720|T033|AB|Y92.136|ICD10CM|Swimming-pool on military base as place|Swimming-pool on military base as place +C2907720|T033|PT|Y92.136|ICD10CM|Swimming-pool on military base as the place of occurrence of the external cause|Swimming-pool on military base as the place of occurrence of the external cause +C2907721|T033|AB|Y92.137|ICD10CM|Garden or yard on military base as place|Garden or yard on military base as place +C2907721|T033|PT|Y92.137|ICD10CM|Garden or yard on military base as the place of occurrence of the external cause|Garden or yard on military base as the place of occurrence of the external cause +C2907722|T033|AB|Y92.138|ICD10CM|Oth place on military base as place|Oth place on military base as place +C2907722|T033|PT|Y92.138|ICD10CM|Other place on military base as the place of occurrence of the external cause|Other place on military base as the place of occurrence of the external cause +C2907723|T033|AB|Y92.139|ICD10CM|Unsp place military base as place|Unsp place military base as place +C2907723|T033|PT|Y92.139|ICD10CM|Unspecified place military base as the place of occurrence of the external cause|Unspecified place military base as the place of occurrence of the external cause +C2907724|T033|AB|Y92.14|ICD10CM|Prison as the place of occurrence of the external cause|Prison as the place of occurrence of the external cause +C2907724|T033|HT|Y92.14|ICD10CM|Prison as the place of occurrence of the external cause|Prison as the place of occurrence of the external cause +C2907725|T033|AB|Y92.140|ICD10CM|Kitchen in prison as place|Kitchen in prison as place +C2907725|T033|PT|Y92.140|ICD10CM|Kitchen in prison as the place of occurrence of the external cause|Kitchen in prison as the place of occurrence of the external cause +C2907726|T033|AB|Y92.141|ICD10CM|Dining room in prison as place|Dining room in prison as place +C2907726|T033|PT|Y92.141|ICD10CM|Dining room in prison as the place of occurrence of the external cause|Dining room in prison as the place of occurrence of the external cause +C2907727|T033|AB|Y92.142|ICD10CM|Bathroom in prison as place|Bathroom in prison as place +C2907727|T033|PT|Y92.142|ICD10CM|Bathroom in prison as the place of occurrence of the external cause|Bathroom in prison as the place of occurrence of the external cause +C2907728|T033|AB|Y92.143|ICD10CM|Cell of prison as place|Cell of prison as place +C2907728|T033|PT|Y92.143|ICD10CM|Cell of prison as the place of occurrence of the external cause|Cell of prison as the place of occurrence of the external cause +C2907729|T033|AB|Y92.146|ICD10CM|Swimming-pool of prison as place|Swimming-pool of prison as place +C2907729|T033|PT|Y92.146|ICD10CM|Swimming-pool of prison as the place of occurrence of the external cause|Swimming-pool of prison as the place of occurrence of the external cause +C2907730|T033|AB|Y92.147|ICD10CM|Courtyard of prison as place|Courtyard of prison as place +C2907730|T033|PT|Y92.147|ICD10CM|Courtyard of prison as the place of occurrence of the external cause|Courtyard of prison as the place of occurrence of the external cause +C2907731|T033|AB|Y92.148|ICD10CM|Oth place in prison as place|Oth place in prison as place +C2907731|T033|PT|Y92.148|ICD10CM|Other place in prison as the place of occurrence of the external cause|Other place in prison as the place of occurrence of the external cause +C2907732|T033|AB|Y92.149|ICD10CM|Unsp place in prison as place|Unsp place in prison as place +C2907732|T033|PT|Y92.149|ICD10CM|Unspecified place in prison as the place of occurrence of the external cause|Unspecified place in prison as the place of occurrence of the external cause +C2907733|T033|AB|Y92.15|ICD10CM|Reform school as place|Reform school as place +C2907733|T033|HT|Y92.15|ICD10CM|Reform school as the place of occurrence of the external cause|Reform school as the place of occurrence of the external cause +C2907734|T033|AB|Y92.150|ICD10CM|Kitchen in reform school as place|Kitchen in reform school as place +C2907734|T033|PT|Y92.150|ICD10CM|Kitchen in reform school as the place of occurrence of the external cause|Kitchen in reform school as the place of occurrence of the external cause +C2907735|T033|AB|Y92.151|ICD10CM|Dining room in reform school as place|Dining room in reform school as place +C2907735|T033|PT|Y92.151|ICD10CM|Dining room in reform school as the place of occurrence of the external cause|Dining room in reform school as the place of occurrence of the external cause +C2907736|T033|AB|Y92.152|ICD10CM|Bathroom in reform school as place|Bathroom in reform school as place +C2907736|T033|PT|Y92.152|ICD10CM|Bathroom in reform school as the place of occurrence of the external cause|Bathroom in reform school as the place of occurrence of the external cause +C2907737|T033|AB|Y92.153|ICD10CM|Bedroom in reform school as place|Bedroom in reform school as place +C2907737|T033|PT|Y92.153|ICD10CM|Bedroom in reform school as the place of occurrence of the external cause|Bedroom in reform school as the place of occurrence of the external cause +C2907738|T033|AB|Y92.154|ICD10CM|Driveway of reform school as place|Driveway of reform school as place +C2907738|T033|PT|Y92.154|ICD10CM|Driveway of reform school as the place of occurrence of the external cause|Driveway of reform school as the place of occurrence of the external cause +C2907739|T033|AB|Y92.155|ICD10CM|Garage of reform school as place|Garage of reform school as place +C2907739|T033|PT|Y92.155|ICD10CM|Garage of reform school as the place of occurrence of the external cause|Garage of reform school as the place of occurrence of the external cause +C2907740|T033|AB|Y92.156|ICD10CM|Swimming-pool of reform school as place|Swimming-pool of reform school as place +C2907740|T033|PT|Y92.156|ICD10CM|Swimming-pool of reform school as the place of occurrence of the external cause|Swimming-pool of reform school as the place of occurrence of the external cause +C2907741|T033|AB|Y92.157|ICD10CM|Garden or yard of reform school as place|Garden or yard of reform school as place +C2907741|T033|PT|Y92.157|ICD10CM|Garden or yard of reform school as the place of occurrence of the external cause|Garden or yard of reform school as the place of occurrence of the external cause +C2907742|T033|AB|Y92.158|ICD10CM|Oth place in reform school as place|Oth place in reform school as place +C2907742|T033|PT|Y92.158|ICD10CM|Other place in reform school as the place of occurrence of the external cause|Other place in reform school as the place of occurrence of the external cause +C2907743|T033|AB|Y92.159|ICD10CM|Unsp place in reform school as place|Unsp place in reform school as place +C2907743|T033|PT|Y92.159|ICD10CM|Unspecified place in reform school as the place of occurrence of the external cause|Unspecified place in reform school as the place of occurrence of the external cause +C2907744|T033|AB|Y92.16|ICD10CM|School dormitory as place|School dormitory as place +C2907744|T033|HT|Y92.16|ICD10CM|School dormitory as the place of occurrence of the external cause|School dormitory as the place of occurrence of the external cause +C2907745|T033|AB|Y92.160|ICD10CM|Kitchen in school dormitory as place|Kitchen in school dormitory as place +C2907745|T033|PT|Y92.160|ICD10CM|Kitchen in school dormitory as the place of occurrence of the external cause|Kitchen in school dormitory as the place of occurrence of the external cause +C2907746|T033|AB|Y92.161|ICD10CM|Dining room in school dormitory as place|Dining room in school dormitory as place +C2907746|T033|PT|Y92.161|ICD10CM|Dining room in school dormitory as the place of occurrence of the external cause|Dining room in school dormitory as the place of occurrence of the external cause +C2907747|T033|AB|Y92.162|ICD10CM|Bathroom in school dormitory as place|Bathroom in school dormitory as place +C2907747|T033|PT|Y92.162|ICD10CM|Bathroom in school dormitory as the place of occurrence of the external cause|Bathroom in school dormitory as the place of occurrence of the external cause +C2907748|T033|AB|Y92.163|ICD10CM|Bedroom in school dormitory as place|Bedroom in school dormitory as place +C2907748|T033|PT|Y92.163|ICD10CM|Bedroom in school dormitory as the place of occurrence of the external cause|Bedroom in school dormitory as the place of occurrence of the external cause +C2907749|T033|AB|Y92.168|ICD10CM|Oth place in school dormitory as place|Oth place in school dormitory as place +C2907749|T033|PT|Y92.168|ICD10CM|Other place in school dormitory as the place of occurrence of the external cause|Other place in school dormitory as the place of occurrence of the external cause +C2907750|T033|AB|Y92.169|ICD10CM|Unsp place in school dormitory as place|Unsp place in school dormitory as place +C2907750|T033|PT|Y92.169|ICD10CM|Unspecified place in school dormitory as the place of occurrence of the external cause|Unspecified place in school dormitory as the place of occurrence of the external cause +C2907751|T033|AB|Y92.19|ICD10CM|Oth residential institution as place|Oth residential institution as place +C2907751|T033|HT|Y92.19|ICD10CM|Other specified residential institution as the place of occurrence of the external cause|Other specified residential institution as the place of occurrence of the external cause +C2907752|T033|AB|Y92.190|ICD10CM|Kitchen in oth residential institution as place|Kitchen in oth residential institution as place +C2907752|T033|PT|Y92.190|ICD10CM|Kitchen in other specified residential institution as the place of occurrence of the external cause|Kitchen in other specified residential institution as the place of occurrence of the external cause +C2907753|T033|AB|Y92.191|ICD10CM|Dining room in oth residential institution as place|Dining room in oth residential institution as place +C2907754|T033|AB|Y92.192|ICD10CM|Bathroom in oth residential institution as place|Bathroom in oth residential institution as place +C2907754|T033|PT|Y92.192|ICD10CM|Bathroom in other specified residential institution as the place of occurrence of the external cause|Bathroom in other specified residential institution as the place of occurrence of the external cause +C2907755|T033|AB|Y92.193|ICD10CM|Bedroom in oth residential institution as place|Bedroom in oth residential institution as place +C2907755|T033|PT|Y92.193|ICD10CM|Bedroom in other specified residential institution as the place of occurrence of the external cause|Bedroom in other specified residential institution as the place of occurrence of the external cause +C2907756|T033|PT|Y92.194|ICD10CM|Driveway of other specified residential institution as the place of occurrence of the external cause|Driveway of other specified residential institution as the place of occurrence of the external cause +C2907756|T033|AB|Y92.194|ICD10CM|Driveway of residential institution as place|Driveway of residential institution as place +C2907757|T033|PT|Y92.195|ICD10CM|Garage of other specified residential institution as the place of occurrence of the external cause|Garage of other specified residential institution as the place of occurrence of the external cause +C2907757|T033|AB|Y92.195|ICD10CM|Garage of residential institution as place|Garage of residential institution as place +C2907758|T033|PT|Y92.196|ICD10CM|Pool of other specified residential institution as the place of occurrence of the external cause|Pool of other specified residential institution as the place of occurrence of the external cause +C2907758|T033|AB|Y92.196|ICD10CM|Pool of residential institution as place|Pool of residential institution as place +C2907759|T033|AB|Y92.197|ICD10CM|Garden or yard of residential institution as place|Garden or yard of residential institution as place +C2907760|T033|AB|Y92.198|ICD10CM|Oth place in oth residential institution as place|Oth place in oth residential institution as place +C2907761|T033|AB|Y92.199|ICD10CM|Unsp place in oth residential institution as place|Unsp place in oth residential institution as place +C2907762|T033|ET|Y92.2|ICD10CM|Building and adjacent grounds used by the general public or by a particular group of the public|Building and adjacent grounds used by the general public or by a particular group of the public +C2907763|T033|AB|Y92.2|ICD10CM|School, oth institution and pub admin as place|School, oth institution and pub admin as place +C2907764|T033|AB|Y92.21|ICD10CM|School (private) (public) (state) as place|School (private) (public) (state) as place +C2907764|T033|HT|Y92.21|ICD10CM|School (private) (public) (state) as the place of occurrence of the external cause|School (private) (public) (state) as the place of occurrence of the external cause +C2907765|T033|AB|Y92.210|ICD10CM|Daycare center as place|Daycare center as place +C2907765|T033|PT|Y92.210|ICD10CM|Daycare center as the place of occurrence of the external cause|Daycare center as the place of occurrence of the external cause +C2907767|T033|AB|Y92.211|ICD10CM|Elementary school as place|Elementary school as place +C2907767|T033|PT|Y92.211|ICD10CM|Elementary school as the place of occurrence of the external cause|Elementary school as the place of occurrence of the external cause +C2907766|T033|ET|Y92.211|ICD10CM|Kindergarten as the place of occurrence of the external cause|Kindergarten as the place of occurrence of the external cause +C2907768|T033|AB|Y92.212|ICD10CM|Middle school as place|Middle school as place +C2907768|T033|PT|Y92.212|ICD10CM|Middle school as the place of occurrence of the external cause|Middle school as the place of occurrence of the external cause +C2907769|T033|AB|Y92.213|ICD10CM|High school as the place of occurrence of the external cause|High school as the place of occurrence of the external cause +C2907769|T033|PT|Y92.213|ICD10CM|High school as the place of occurrence of the external cause|High school as the place of occurrence of the external cause +C2907771|T033|AB|Y92.214|ICD10CM|College as the place of occurrence of the external cause|College as the place of occurrence of the external cause +C2907771|T033|PT|Y92.214|ICD10CM|College as the place of occurrence of the external cause|College as the place of occurrence of the external cause +C2907770|T033|ET|Y92.214|ICD10CM|University as the place of occurrence of the external cause|University as the place of occurrence of the external cause +C2907772|T033|AB|Y92.215|ICD10CM|Trade school as place|Trade school as place +C2907772|T033|PT|Y92.215|ICD10CM|Trade school as the place of occurrence of the external cause|Trade school as the place of occurrence of the external cause +C2907773|T033|AB|Y92.218|ICD10CM|Oth school as the place of occurrence of the external cause|Oth school as the place of occurrence of the external cause +C2907773|T033|PT|Y92.218|ICD10CM|Other school as the place of occurrence of the external cause|Other school as the place of occurrence of the external cause +C2907774|T033|AB|Y92.219|ICD10CM|Unsp school as the place of occurrence of the external cause|Unsp school as the place of occurrence of the external cause +C2907774|T033|PT|Y92.219|ICD10CM|Unspecified school as the place of occurrence of the external cause|Unspecified school as the place of occurrence of the external cause +C2907775|T033|ET|Y92.22|ICD10CM|Church as the place of occurrence of the external cause|Church as the place of occurrence of the external cause +C2907776|T033|ET|Y92.22|ICD10CM|Mosque as the place of occurrence of the external cause|Mosque as the place of occurrence of the external cause +C2907778|T033|AB|Y92.22|ICD10CM|Religious institution as place|Religious institution as place +C2907778|T033|PT|Y92.22|ICD10CM|Religious institution as the place of occurrence of the external cause|Religious institution as the place of occurrence of the external cause +C2907777|T033|ET|Y92.22|ICD10CM|Synagogue as the place of occurrence of the external cause|Synagogue as the place of occurrence of the external cause +C2907779|T033|AB|Y92.23|ICD10CM|Hospital as the place of occurrence of the external cause|Hospital as the place of occurrence of the external cause +C2907779|T033|HT|Y92.23|ICD10CM|Hospital as the place of occurrence of the external cause|Hospital as the place of occurrence of the external cause +C2907780|T033|AB|Y92.230|ICD10CM|Patient room in hospital as place|Patient room in hospital as place +C2907780|T033|PT|Y92.230|ICD10CM|Patient room in hospital as the place of occurrence of the external cause|Patient room in hospital as the place of occurrence of the external cause +C2907781|T033|AB|Y92.231|ICD10CM|Patient bathroom in hospital as place|Patient bathroom in hospital as place +C2907781|T033|PT|Y92.231|ICD10CM|Patient bathroom in hospital as the place of occurrence of the external cause|Patient bathroom in hospital as the place of occurrence of the external cause +C2907782|T033|AB|Y92.232|ICD10CM|Corridor of hospital as place|Corridor of hospital as place +C2907782|T033|PT|Y92.232|ICD10CM|Corridor of hospital as the place of occurrence of the external cause|Corridor of hospital as the place of occurrence of the external cause +C2907783|T033|AB|Y92.233|ICD10CM|Cafeteria of hospital as place|Cafeteria of hospital as place +C2907783|T033|PT|Y92.233|ICD10CM|Cafeteria of hospital as the place of occurrence of the external cause|Cafeteria of hospital as the place of occurrence of the external cause +C2907784|T033|AB|Y92.234|ICD10CM|Operating room of hospital as place|Operating room of hospital as place +C2907784|T033|PT|Y92.234|ICD10CM|Operating room of hospital as the place of occurrence of the external cause|Operating room of hospital as the place of occurrence of the external cause +C2907785|T033|AB|Y92.238|ICD10CM|Oth place in hospital as place|Oth place in hospital as place +C2907785|T033|PT|Y92.238|ICD10CM|Other place in hospital as the place of occurrence of the external cause|Other place in hospital as the place of occurrence of the external cause +C2907786|T033|AB|Y92.239|ICD10CM|Unsp place in hospital as place|Unsp place in hospital as place +C2907786|T033|PT|Y92.239|ICD10CM|Unspecified place in hospital as the place of occurrence of the external cause|Unspecified place in hospital as the place of occurrence of the external cause +C2907787|T033|AB|Y92.24|ICD10CM|Public administrative building as place|Public administrative building as place +C2907787|T033|HT|Y92.24|ICD10CM|Public administrative building as the place of occurrence of the external cause|Public administrative building as the place of occurrence of the external cause +C2907788|T033|AB|Y92.240|ICD10CM|Courthouse as the place of occurrence of the external cause|Courthouse as the place of occurrence of the external cause +C2907788|T033|PT|Y92.240|ICD10CM|Courthouse as the place of occurrence of the external cause|Courthouse as the place of occurrence of the external cause +C2907789|T033|AB|Y92.241|ICD10CM|Library as the place of occurrence of the external cause|Library as the place of occurrence of the external cause +C2907789|T033|PT|Y92.241|ICD10CM|Library as the place of occurrence of the external cause|Library as the place of occurrence of the external cause +C2907790|T033|AB|Y92.242|ICD10CM|Post office as the place of occurrence of the external cause|Post office as the place of occurrence of the external cause +C2907790|T033|PT|Y92.242|ICD10CM|Post office as the place of occurrence of the external cause|Post office as the place of occurrence of the external cause +C2907791|T033|AB|Y92.243|ICD10CM|City hall as the place of occurrence of the external cause|City hall as the place of occurrence of the external cause +C2907791|T033|PT|Y92.243|ICD10CM|City hall as the place of occurrence of the external cause|City hall as the place of occurrence of the external cause +C2907792|T033|AB|Y92.248|ICD10CM|Oth public administrative building as place|Oth public administrative building as place +C2907792|T033|PT|Y92.248|ICD10CM|Other public administrative building as the place of occurrence of the external cause|Other public administrative building as the place of occurrence of the external cause +C2907793|T033|AB|Y92.25|ICD10CM|Cultural building as place|Cultural building as place +C2907793|T033|HT|Y92.25|ICD10CM|Cultural building as the place of occurrence of the external cause|Cultural building as the place of occurrence of the external cause +C2907794|T033|AB|Y92.250|ICD10CM|Art Gallery as the place of occurrence of the external cause|Art Gallery as the place of occurrence of the external cause +C2907794|T033|PT|Y92.250|ICD10CM|Art Gallery as the place of occurrence of the external cause|Art Gallery as the place of occurrence of the external cause +C2907795|T033|AB|Y92.251|ICD10CM|Museum as the place of occurrence of the external cause|Museum as the place of occurrence of the external cause +C2907795|T033|PT|Y92.251|ICD10CM|Museum as the place of occurrence of the external cause|Museum as the place of occurrence of the external cause +C2907796|T033|AB|Y92.252|ICD10CM|Music hall as the place of occurrence of the external cause|Music hall as the place of occurrence of the external cause +C2907796|T033|PT|Y92.252|ICD10CM|Music hall as the place of occurrence of the external cause|Music hall as the place of occurrence of the external cause +C2907797|T033|AB|Y92.253|ICD10CM|Opera house as the place of occurrence of the external cause|Opera house as the place of occurrence of the external cause +C2907797|T033|PT|Y92.253|ICD10CM|Opera house as the place of occurrence of the external cause|Opera house as the place of occurrence of the external cause +C2907798|T033|AB|Y92.254|ICD10CM|Theater (live) as place|Theater (live) as place +C2907798|T033|PT|Y92.254|ICD10CM|Theater (live) as the place of occurrence of the external cause|Theater (live) as the place of occurrence of the external cause +C2907799|T033|AB|Y92.258|ICD10CM|Oth cultural public building as place|Oth cultural public building as place +C2907799|T033|PT|Y92.258|ICD10CM|Other cultural public building as the place of occurrence of the external cause|Other cultural public building as the place of occurrence of the external cause +C2907800|T033|AB|Y92.26|ICD10CM|Movie house or cinema as place|Movie house or cinema as place +C2907800|T033|PT|Y92.26|ICD10CM|Movie house or cinema as the place of occurrence of the external cause|Movie house or cinema as the place of occurrence of the external cause +C2907801|T033|ET|Y92.29|ICD10CM|Assembly hall as the place of occurrence of the external cause|Assembly hall as the place of occurrence of the external cause +C2907802|T033|ET|Y92.29|ICD10CM|Clubhouse as the place of occurrence of the external cause|Clubhouse as the place of occurrence of the external cause +C2907803|T033|AB|Y92.29|ICD10CM|Oth public building as place|Oth public building as place +C2907803|T033|PT|Y92.29|ICD10CM|Other specified public building as the place of occurrence of the external cause|Other specified public building as the place of occurrence of the external cause +C2907804|T033|AB|Y92.3|ICD10CM|Sports and athletics area as place|Sports and athletics area as place +C2907804|T033|HT|Y92.3|ICD10CM|Sports and athletics area as the place of occurrence of the external cause|Sports and athletics area as the place of occurrence of the external cause +C2907805|T033|AB|Y92.31|ICD10CM|Athletic court as place|Athletic court as place +C2907805|T033|HT|Y92.31|ICD10CM|Athletic court as the place of occurrence of the external cause|Athletic court as the place of occurrence of the external cause +C2907806|T033|AB|Y92.310|ICD10CM|Basketball court as place|Basketball court as place +C2907806|T033|PT|Y92.310|ICD10CM|Basketball court as the place of occurrence of the external cause|Basketball court as the place of occurrence of the external cause +C2907807|T033|AB|Y92.311|ICD10CM|Squash court as place|Squash court as place +C2907807|T033|PT|Y92.311|ICD10CM|Squash court as the place of occurrence of the external cause|Squash court as the place of occurrence of the external cause +C2907808|T033|AB|Y92.312|ICD10CM|Tennis court as place|Tennis court as place +C2907808|T033|PT|Y92.312|ICD10CM|Tennis court as the place of occurrence of the external cause|Tennis court as the place of occurrence of the external cause +C2907809|T033|AB|Y92.318|ICD10CM|Oth athletic court as place|Oth athletic court as place +C2907809|T033|PT|Y92.318|ICD10CM|Other athletic court as the place of occurrence of the external cause|Other athletic court as the place of occurrence of the external cause +C2907810|T033|AB|Y92.32|ICD10CM|Athletic field as place|Athletic field as place +C2907810|T033|HT|Y92.32|ICD10CM|Athletic field as the place of occurrence of the external cause|Athletic field as the place of occurrence of the external cause +C2907811|T033|AB|Y92.320|ICD10CM|Baseball field as place|Baseball field as place +C2907811|T033|PT|Y92.320|ICD10CM|Baseball field as the place of occurrence of the external cause|Baseball field as the place of occurrence of the external cause +C2907812|T033|AB|Y92.321|ICD10CM|Football field as place|Football field as place +C2907812|T033|PT|Y92.321|ICD10CM|Football field as the place of occurrence of the external cause|Football field as the place of occurrence of the external cause +C2907813|T033|AB|Y92.322|ICD10CM|Soccer field as place|Soccer field as place +C2907813|T033|PT|Y92.322|ICD10CM|Soccer field as the place of occurrence of the external cause|Soccer field as the place of occurrence of the external cause +C2907814|T033|ET|Y92.328|ICD10CM|Cricket field as the place of occurrence of the external cause|Cricket field as the place of occurrence of the external cause +C2907815|T033|ET|Y92.328|ICD10CM|Hockey field as the place of occurrence of the external cause|Hockey field as the place of occurrence of the external cause +C2907816|T033|AB|Y92.328|ICD10CM|Oth athletic field as place|Oth athletic field as place +C2907816|T033|PT|Y92.328|ICD10CM|Other athletic field as the place of occurrence of the external cause|Other athletic field as the place of occurrence of the external cause +C2907817|T033|AB|Y92.33|ICD10CM|Skating rink as place|Skating rink as place +C2907817|T033|HT|Y92.33|ICD10CM|Skating rink as the place of occurrence of the external cause|Skating rink as the place of occurrence of the external cause +C2907818|T033|AB|Y92.330|ICD10CM|Ice skating rink (indoor) (outdoor) as place|Ice skating rink (indoor) (outdoor) as place +C2907818|T033|PT|Y92.330|ICD10CM|Ice skating rink (indoor) (outdoor) as the place of occurrence of the external cause|Ice skating rink (indoor) (outdoor) as the place of occurrence of the external cause +C2907819|T033|AB|Y92.331|ICD10CM|Roller skating rink as place|Roller skating rink as place +C2907819|T033|PT|Y92.331|ICD10CM|Roller skating rink as the place of occurrence of the external cause|Roller skating rink as the place of occurrence of the external cause +C2907820|T033|AB|Y92.34|ICD10CM|Swimming pool (public) as place|Swimming pool (public) as place +C2907820|T033|PT|Y92.34|ICD10CM|Swimming pool (public) as the place of occurrence of the external cause|Swimming pool (public) as the place of occurrence of the external cause +C2907821|T033|ET|Y92.39|ICD10CM|Golf-course as the place of occurrence of the external cause|Golf-course as the place of occurrence of the external cause +C2907822|T033|ET|Y92.39|ICD10CM|Gymnasium as the place of occurrence of the external cause|Gymnasium as the place of occurrence of the external cause +C2907825|T033|AB|Y92.39|ICD10CM|Oth sports and athletic area as place|Oth sports and athletic area as place +C2907825|T033|PT|Y92.39|ICD10CM|Other specified sports and athletic area as the place of occurrence of the external cause|Other specified sports and athletic area as the place of occurrence of the external cause +C2907823|T033|ET|Y92.39|ICD10CM|Riding-school as the place of occurrence of the external cause|Riding-school as the place of occurrence of the external cause +C2907824|T033|ET|Y92.39|ICD10CM|Stadium as the place of occurrence of the external cause|Stadium as the place of occurrence of the external cause +C2907826|T033|AB|Y92.4|ICD10CM|Street, highway and other paved roadways as place|Street, highway and other paved roadways as place +C2907826|T033|HT|Y92.4|ICD10CM|Street, highway and other paved roadways as the place of occurrence of the external cause|Street, highway and other paved roadways as the place of occurrence of the external cause +C2907827|T033|AB|Y92.41|ICD10CM|Street and highway as place|Street and highway as place +C2907827|T033|HT|Y92.41|ICD10CM|Street and highway as the place of occurrence of the external cause|Street and highway as the place of occurrence of the external cause +C2907828|T033|ET|Y92.410|ICD10CM|Road NOS as the place of occurrence of the external cause|Road NOS as the place of occurrence of the external cause +C2907829|T033|AB|Y92.410|ICD10CM|Unsp street and highway as place|Unsp street and highway as place +C2907829|T033|PT|Y92.410|ICD10CM|Unspecified street and highway as the place of occurrence of the external cause|Unspecified street and highway as the place of occurrence of the external cause +C2907830|T033|ET|Y92.411|ICD10CM|Freeway as the place of occurrence of the external cause|Freeway as the place of occurrence of the external cause +C2907832|T033|AB|Y92.411|ICD10CM|Interstate highway as place|Interstate highway as place +C2907832|T033|PT|Y92.411|ICD10CM|Interstate highway as the place of occurrence of the external cause|Interstate highway as the place of occurrence of the external cause +C2907831|T033|ET|Y92.411|ICD10CM|Motorway as the place of occurrence of the external cause|Motorway as the place of occurrence of the external cause +C2907833|T033|AB|Y92.412|ICD10CM|Parkway as the place of occurrence of the external cause|Parkway as the place of occurrence of the external cause +C2907833|T033|PT|Y92.412|ICD10CM|Parkway as the place of occurrence of the external cause|Parkway as the place of occurrence of the external cause +C2907834|T033|AB|Y92.413|ICD10CM|State road as the place of occurrence of the external cause|State road as the place of occurrence of the external cause +C2907834|T033|PT|Y92.413|ICD10CM|State road as the place of occurrence of the external cause|State road as the place of occurrence of the external cause +C2907835|T033|AB|Y92.414|ICD10CM|Local residential or business street as place|Local residential or business street as place +C2907835|T033|PT|Y92.414|ICD10CM|Local residential or business street as the place of occurrence of the external cause|Local residential or business street as the place of occurrence of the external cause +C2907836|T033|AB|Y92.415|ICD10CM|Exit ramp or entrance ramp of street or highway as place|Exit ramp or entrance ramp of street or highway as place +C2907836|T033|PT|Y92.415|ICD10CM|Exit ramp or entrance ramp of street or highway as the place of occurrence of the external cause|Exit ramp or entrance ramp of street or highway as the place of occurrence of the external cause +C2907837|T033|AB|Y92.48|ICD10CM|Oth paved roadways as place|Oth paved roadways as place +C2907837|T033|HT|Y92.48|ICD10CM|Other paved roadways as the place of occurrence of the external cause|Other paved roadways as the place of occurrence of the external cause +C2907838|T033|AB|Y92.480|ICD10CM|Sidewalk as the place of occurrence of the external cause|Sidewalk as the place of occurrence of the external cause +C2907838|T033|PT|Y92.480|ICD10CM|Sidewalk as the place of occurrence of the external cause|Sidewalk as the place of occurrence of the external cause +C2907839|T033|AB|Y92.481|ICD10CM|Parking lot as the place of occurrence of the external cause|Parking lot as the place of occurrence of the external cause +C2907839|T033|PT|Y92.481|ICD10CM|Parking lot as the place of occurrence of the external cause|Parking lot as the place of occurrence of the external cause +C2907840|T033|AB|Y92.482|ICD10CM|Bike path as the place of occurrence of the external cause|Bike path as the place of occurrence of the external cause +C2907840|T033|PT|Y92.482|ICD10CM|Bike path as the place of occurrence of the external cause|Bike path as the place of occurrence of the external cause +C2907837|T033|AB|Y92.488|ICD10CM|Oth paved roadways as place|Oth paved roadways as place +C2907837|T033|PT|Y92.488|ICD10CM|Other paved roadways as the place of occurrence of the external cause|Other paved roadways as the place of occurrence of the external cause +C2907841|T033|AB|Y92.5|ICD10CM|Trade and service area as place|Trade and service area as place +C2907841|T033|HT|Y92.5|ICD10CM|Trade and service area as the place of occurrence of the external cause|Trade and service area as the place of occurrence of the external cause +C2907842|T033|AB|Y92.51|ICD10CM|Private commercial establishments as place|Private commercial establishments as place +C2907842|T033|HT|Y92.51|ICD10CM|Private commercial establishments as the place of occurrence of the external cause|Private commercial establishments as the place of occurrence of the external cause +C2907843|T033|AB|Y92.510|ICD10CM|Bank as the place of occurrence of the external cause|Bank as the place of occurrence of the external cause +C2907843|T033|PT|Y92.510|ICD10CM|Bank as the place of occurrence of the external cause|Bank as the place of occurrence of the external cause +C2907844|T033|AB|Y92.511|ICD10CM|Restaurant or cafe as place|Restaurant or cafe as place +C2907844|T033|PT|Y92.511|ICD10CM|Restaurant or café as the place of occurrence of the external cause|Restaurant or café as the place of occurrence of the external cause +C2907845|T033|AB|Y92.512|ICD10CM|Supermarket, store or market as place|Supermarket, store or market as place +C2907845|T033|PT|Y92.512|ICD10CM|Supermarket, store or market as the place of occurrence of the external cause|Supermarket, store or market as the place of occurrence of the external cause +C2907846|T033|AB|Y92.513|ICD10CM|Shop (commercial) as place|Shop (commercial) as place +C2907846|T033|PT|Y92.513|ICD10CM|Shop (commercial) as the place of occurrence of the external cause|Shop (commercial) as the place of occurrence of the external cause +C2907847|T033|AB|Y92.52|ICD10CM|Service areas as place|Service areas as place +C2907847|T033|HT|Y92.52|ICD10CM|Service areas as the place of occurrence of the external cause|Service areas as the place of occurrence of the external cause +C2907848|T033|AB|Y92.520|ICD10CM|Airport as the place of occurrence of the external cause|Airport as the place of occurrence of the external cause +C2907848|T033|PT|Y92.520|ICD10CM|Airport as the place of occurrence of the external cause|Airport as the place of occurrence of the external cause +C2907849|T033|AB|Y92.521|ICD10CM|Bus station as the place of occurrence of the external cause|Bus station as the place of occurrence of the external cause +C2907849|T033|PT|Y92.521|ICD10CM|Bus station as the place of occurrence of the external cause|Bus station as the place of occurrence of the external cause +C2907850|T033|AB|Y92.522|ICD10CM|Railway station as place|Railway station as place +C2907850|T033|PT|Y92.522|ICD10CM|Railway station as the place of occurrence of the external cause|Railway station as the place of occurrence of the external cause +C2907851|T033|AB|Y92.523|ICD10CM|Highway rest stop as place|Highway rest stop as place +C2907851|T033|PT|Y92.523|ICD10CM|Highway rest stop as the place of occurrence of the external cause|Highway rest stop as the place of occurrence of the external cause +C2907854|T033|AB|Y92.524|ICD10CM|Gas station as the place of occurrence of the external cause|Gas station as the place of occurrence of the external cause +C2907854|T033|PT|Y92.524|ICD10CM|Gas station as the place of occurrence of the external cause|Gas station as the place of occurrence of the external cause +C2907852|T033|ET|Y92.524|ICD10CM|Petroleum station as the place of occurrence of the external cause|Petroleum station as the place of occurrence of the external cause +C2907853|T033|ET|Y92.524|ICD10CM|Service station as the place of occurrence of the external cause|Service station as the place of occurrence of the external cause +C2907855|T033|AB|Y92.53|ICD10CM|Ambulatory health services establishments as place|Ambulatory health services establishments as place +C2907855|T033|HT|Y92.53|ICD10CM|Ambulatory health services establishments as the place of occurrence of the external cause|Ambulatory health services establishments as the place of occurrence of the external cause +C2907858|T033|AB|Y92.530|ICD10CM|Ambulatory surgery center as place|Ambulatory surgery center as place +C2907858|T033|PT|Y92.530|ICD10CM|Ambulatory surgery center as the place of occurrence of the external cause|Ambulatory surgery center as the place of occurrence of the external cause +C2907860|T033|AB|Y92.531|ICD10CM|Health care provider office as place|Health care provider office as place +C2907860|T033|PT|Y92.531|ICD10CM|Health care provider office as the place of occurrence of the external cause|Health care provider office as the place of occurrence of the external cause +C2907859|T033|ET|Y92.531|ICD10CM|Physician office as the place of occurrence of the external cause|Physician office as the place of occurrence of the external cause +C2907861|T033|AB|Y92.532|ICD10CM|Urgent care center as place|Urgent care center as place +C2907861|T033|PT|Y92.532|ICD10CM|Urgent care center as the place of occurrence of the external cause|Urgent care center as the place of occurrence of the external cause +C2907862|T033|AB|Y92.538|ICD10CM|Oth ambulatory health services establishments as place|Oth ambulatory health services establishments as place +C2907862|T033|PT|Y92.538|ICD10CM|Other ambulatory health services establishments as the place of occurrence of the external cause|Other ambulatory health services establishments as the place of occurrence of the external cause +C2907863|T033|ET|Y92.59|ICD10CM|Casino as the place of occurrence of the external cause|Casino as the place of occurrence of the external cause +C2907864|T033|ET|Y92.59|ICD10CM|Garage (commercial) as the place of occurrence of the external cause|Garage (commercial) as the place of occurrence of the external cause +C2907865|T033|ET|Y92.59|ICD10CM|Hotel as the place of occurrence of the external cause|Hotel as the place of occurrence of the external cause +C2907866|T033|ET|Y92.59|ICD10CM|Office building as the place of occurrence of the external cause|Office building as the place of occurrence of the external cause +C2907870|T033|AB|Y92.59|ICD10CM|Oth trade areas as place|Oth trade areas as place +C2907870|T033|PT|Y92.59|ICD10CM|Other trade areas as the place of occurrence of the external cause|Other trade areas as the place of occurrence of the external cause +C2907867|T033|ET|Y92.59|ICD10CM|Radio or television station as the place of occurrence of the external cause|Radio or television station as the place of occurrence of the external cause +C2907868|T033|ET|Y92.59|ICD10CM|Shopping mall as the place of occurrence of the external cause|Shopping mall as the place of occurrence of the external cause +C2907869|T033|ET|Y92.59|ICD10CM|Warehouse as the place of occurrence of the external cause|Warehouse as the place of occurrence of the external cause +C2907871|T033|AB|Y92.6|ICD10CM|Industrial and construction area as place|Industrial and construction area as place +C2907871|T033|HT|Y92.6|ICD10CM|Industrial and construction area as the place of occurrence of the external cause|Industrial and construction area as the place of occurrence of the external cause +C2907872|T033|PT|Y92.61|ICD10CM|Building [any] under construction as the place of occurrence of the external cause|Building [any] under construction as the place of occurrence of the external cause +C2907872|T033|AB|Y92.61|ICD10CM|Building under construction as place|Building under construction as place +C2907876|T033|AB|Y92.62|ICD10CM|Dock or shipyard as place|Dock or shipyard as place +C2907876|T033|PT|Y92.62|ICD10CM|Dock or shipyard as the place of occurrence of the external cause|Dock or shipyard as the place of occurrence of the external cause +C2907873|T033|ET|Y92.62|ICD10CM|Dockyard as the place of occurrence of the external cause|Dockyard as the place of occurrence of the external cause +C2907874|T037|ET|Y92.62|ICD10CM|Dry dock as the place of occurrence of the external cause|Dry dock as the place of occurrence of the external cause +C2907875|T033|ET|Y92.62|ICD10CM|Shipyard as the place of occurrence of the external cause|Shipyard as the place of occurrence of the external cause +C2907880|T033|AB|Y92.63|ICD10CM|Factory as the place of occurrence of the external cause|Factory as the place of occurrence of the external cause +C2907880|T033|PT|Y92.63|ICD10CM|Factory as the place of occurrence of the external cause|Factory as the place of occurrence of the external cause +C2907877|T033|ET|Y92.63|ICD10CM|Factory building as the place of occurrence of the external cause|Factory building as the place of occurrence of the external cause +C2907878|T033|ET|Y92.63|ICD10CM|Factory premises as the place of occurrence of the external cause|Factory premises as the place of occurrence of the external cause +C2907879|T033|ET|Y92.63|ICD10CM|Industrial yard as the place of occurrence of the external cause|Industrial yard as the place of occurrence of the external cause +C2907881|T033|ET|Y92.64|ICD10CM|Mine as the place of occurrence of the external cause|Mine as the place of occurrence of the external cause +C2907882|T033|AB|Y92.64|ICD10CM|Mine or pit as the place of occurrence of the external cause|Mine or pit as the place of occurrence of the external cause +C2907882|T033|PT|Y92.64|ICD10CM|Mine or pit as the place of occurrence of the external cause|Mine or pit as the place of occurrence of the external cause +C2907884|T033|AB|Y92.65|ICD10CM|Oil rig as the place of occurrence of the external cause|Oil rig as the place of occurrence of the external cause +C2907884|T033|PT|Y92.65|ICD10CM|Oil rig as the place of occurrence of the external cause|Oil rig as the place of occurrence of the external cause +C2907883|T033|ET|Y92.65|ICD10CM|Pit (coal) (gravel) (sand) as the place of occurrence of the external cause|Pit (coal) (gravel) (sand) as the place of occurrence of the external cause +C2907885|T033|ET|Y92.69|ICD10CM|Gasworks as the place of occurrence of the external cause|Gasworks as the place of occurrence of the external cause +C2907889|T033|AB|Y92.69|ICD10CM|Oth industrial and construction area as place|Oth industrial and construction area as place +C2907889|T033|PT|Y92.69|ICD10CM|Other specified industrial and construction area as the place of occurrence of the external cause|Other specified industrial and construction area as the place of occurrence of the external cause +C2907886|T033|ET|Y92.69|ICD10CM|Power-station (coal) (nuclear) (oil) as the place of occurrence of the external cause|Power-station (coal) (nuclear) (oil) as the place of occurrence of the external cause +C2907887|T033|ET|Y92.69|ICD10CM|Tunnel under construction as the place of occurrence of the external cause|Tunnel under construction as the place of occurrence of the external cause +C2907888|T033|ET|Y92.69|ICD10CM|Workshop as the place of occurrence of the external cause|Workshop as the place of occurrence of the external cause +C2907891|T033|AB|Y92.7|ICD10CM|Farm as the place of occurrence of the external cause|Farm as the place of occurrence of the external cause +C2907891|T033|HT|Y92.7|ICD10CM|Farm as the place of occurrence of the external cause|Farm as the place of occurrence of the external cause +C2907890|T033|ET|Y92.7|ICD10CM|Ranch as the place of occurrence of the external cause|Ranch as the place of occurrence of the external cause +C2907892|T033|AB|Y92.71|ICD10CM|Barn as the place of occurrence of the external cause|Barn as the place of occurrence of the external cause +C2907892|T033|PT|Y92.71|ICD10CM|Barn as the place of occurrence of the external cause|Barn as the place of occurrence of the external cause +C2907894|T033|AB|Y92.72|ICD10CM|Chicken coop as place|Chicken coop as place +C2907894|T033|PT|Y92.72|ICD10CM|Chicken coop as the place of occurrence of the external cause|Chicken coop as the place of occurrence of the external cause +C2907893|T033|ET|Y92.72|ICD10CM|Hen house as the place of occurrence of the external cause|Hen house as the place of occurrence of the external cause +C2907895|T033|AB|Y92.73|ICD10CM|Farm field as the place of occurrence of the external cause|Farm field as the place of occurrence of the external cause +C2907895|T033|PT|Y92.73|ICD10CM|Farm field as the place of occurrence of the external cause|Farm field as the place of occurrence of the external cause +C2907896|T033|AB|Y92.74|ICD10CM|Orchard as the place of occurrence of the external cause|Orchard as the place of occurrence of the external cause +C2907896|T033|PT|Y92.74|ICD10CM|Orchard as the place of occurrence of the external cause|Orchard as the place of occurrence of the external cause +C2907897|T033|AB|Y92.79|ICD10CM|Oth farm location as place|Oth farm location as place +C2907897|T033|PT|Y92.79|ICD10CM|Other farm location as the place of occurrence of the external cause|Other farm location as the place of occurrence of the external cause +C2907898|T033|AB|Y92.8|ICD10CM|Oth places as the place of occurrence of the external cause|Oth places as the place of occurrence of the external cause +C2907898|T033|HT|Y92.8|ICD10CM|Other places as the place of occurrence of the external cause|Other places as the place of occurrence of the external cause +C2907899|T033|AB|Y92.81|ICD10CM|Transport vehicle as place|Transport vehicle as place +C2907899|T033|HT|Y92.81|ICD10CM|Transport vehicle as the place of occurrence of the external cause|Transport vehicle as the place of occurrence of the external cause +C2907900|T033|AB|Y92.810|ICD10CM|Car as the place of occurrence of the external cause|Car as the place of occurrence of the external cause +C2907900|T033|PT|Y92.810|ICD10CM|Car as the place of occurrence of the external cause|Car as the place of occurrence of the external cause +C2907901|T033|AB|Y92.811|ICD10CM|Bus as the place of occurrence of the external cause|Bus as the place of occurrence of the external cause +C2907901|T033|PT|Y92.811|ICD10CM|Bus as the place of occurrence of the external cause|Bus as the place of occurrence of the external cause +C2907902|T033|AB|Y92.812|ICD10CM|Truck as the place of occurrence of the external cause|Truck as the place of occurrence of the external cause +C2907902|T033|PT|Y92.812|ICD10CM|Truck as the place of occurrence of the external cause|Truck as the place of occurrence of the external cause +C2907903|T033|AB|Y92.813|ICD10CM|Airplane as the place of occurrence of the external cause|Airplane as the place of occurrence of the external cause +C2907903|T033|PT|Y92.813|ICD10CM|Airplane as the place of occurrence of the external cause|Airplane as the place of occurrence of the external cause +C2907904|T033|AB|Y92.814|ICD10CM|Boat as the place of occurrence of the external cause|Boat as the place of occurrence of the external cause +C2907904|T033|PT|Y92.814|ICD10CM|Boat as the place of occurrence of the external cause|Boat as the place of occurrence of the external cause +C2910415|T033|AB|Y92.815|ICD10CM|Train as the place of occurrence of the external cause|Train as the place of occurrence of the external cause +C2910415|T033|PT|Y92.815|ICD10CM|Train as the place of occurrence of the external cause|Train as the place of occurrence of the external cause +C2910416|T033|AB|Y92.816|ICD10CM|Subway car as the place of occurrence of the external cause|Subway car as the place of occurrence of the external cause +C2910416|T033|PT|Y92.816|ICD10CM|Subway car as the place of occurrence of the external cause|Subway car as the place of occurrence of the external cause +C2910417|T033|AB|Y92.818|ICD10CM|Oth transport vehicle as place|Oth transport vehicle as place +C2910417|T033|PT|Y92.818|ICD10CM|Other transport vehicle as the place of occurrence of the external cause|Other transport vehicle as the place of occurrence of the external cause +C2910418|T033|AB|Y92.82|ICD10CM|Wilderness area|Wilderness area +C2910418|T033|HT|Y92.82|ICD10CM|Wilderness area|Wilderness area +C2910419|T033|AB|Y92.820|ICD10CM|Desert as the place of occurrence of the external cause|Desert as the place of occurrence of the external cause +C2910419|T033|PT|Y92.820|ICD10CM|Desert as the place of occurrence of the external cause|Desert as the place of occurrence of the external cause +C2910420|T033|AB|Y92.821|ICD10CM|Forest as the place of occurrence of the external cause|Forest as the place of occurrence of the external cause +C2910420|T033|PT|Y92.821|ICD10CM|Forest as the place of occurrence of the external cause|Forest as the place of occurrence of the external cause +C2910421|T033|ET|Y92.828|ICD10CM|Marsh as the place of occurrence of the external cause|Marsh as the place of occurrence of the external cause +C2910422|T033|ET|Y92.828|ICD10CM|Mountain as the place of occurrence of the external cause|Mountain as the place of occurrence of the external cause +C2910425|T033|AB|Y92.828|ICD10CM|Oth wilderness area as place|Oth wilderness area as place +C2910425|T033|PT|Y92.828|ICD10CM|Other wilderness area as the place of occurrence of the external cause|Other wilderness area as the place of occurrence of the external cause +C2910423|T033|ET|Y92.828|ICD10CM|Prairie as the place of occurrence of the external cause|Prairie as the place of occurrence of the external cause +C2910424|T033|ET|Y92.828|ICD10CM|Swamp as the place of occurrence of the external cause|Swamp as the place of occurrence of the external cause +C2910426|T033|AB|Y92.83|ICD10CM|Recreation area as place|Recreation area as place +C2910426|T033|HT|Y92.83|ICD10CM|Recreation area as the place of occurrence of the external cause|Recreation area as the place of occurrence of the external cause +C2910427|T033|AB|Y92.830|ICD10CM|Public park as the place of occurrence of the external cause|Public park as the place of occurrence of the external cause +C2910427|T033|PT|Y92.830|ICD10CM|Public park as the place of occurrence of the external cause|Public park as the place of occurrence of the external cause +C2910428|T033|AB|Y92.831|ICD10CM|Amusement park as place|Amusement park as place +C2910428|T033|PT|Y92.831|ICD10CM|Amusement park as the place of occurrence of the external cause|Amusement park as the place of occurrence of the external cause +C2910430|T033|AB|Y92.832|ICD10CM|Beach as the place of occurrence of the external cause|Beach as the place of occurrence of the external cause +C2910430|T033|PT|Y92.832|ICD10CM|Beach as the place of occurrence of the external cause|Beach as the place of occurrence of the external cause +C2910429|T033|ET|Y92.832|ICD10CM|Seashore as the place of occurrence of the external cause|Seashore as the place of occurrence of the external cause +C2910431|T033|AB|Y92.833|ICD10CM|Campsite as the place of occurrence of the external cause|Campsite as the place of occurrence of the external cause +C2910431|T033|PT|Y92.833|ICD10CM|Campsite as the place of occurrence of the external cause|Campsite as the place of occurrence of the external cause +C2910432|T033|AB|Y92.834|ICD10CM|Zoological garden (Zoo) as place|Zoological garden (Zoo) as place +C2910432|T033|PT|Y92.834|ICD10CM|Zoological garden (Zoo) as the place of occurrence of the external cause|Zoological garden (Zoo) as the place of occurrence of the external cause +C2910433|T033|AB|Y92.838|ICD10CM|Oth recreation area as place|Oth recreation area as place +C2910433|T033|PT|Y92.838|ICD10CM|Other recreation area as the place of occurrence of the external cause|Other recreation area as the place of occurrence of the external cause +C2910434|T033|AB|Y92.84|ICD10CM|Military training ground as place|Military training ground as place +C2910434|T033|PT|Y92.84|ICD10CM|Military training ground as the place of occurrence of the external cause|Military training ground as the place of occurrence of the external cause +C2910435|T033|AB|Y92.85|ICD10CM|Railroad track as place|Railroad track as place +C2910435|T033|PT|Y92.85|ICD10CM|Railroad track as the place of occurrence of the external cause|Railroad track as the place of occurrence of the external cause +C2910436|T033|AB|Y92.86|ICD10CM|Slaughter house as place|Slaughter house as place +C2910436|T033|PT|Y92.86|ICD10CM|Slaughter house as the place of occurrence of the external cause|Slaughter house as the place of occurrence of the external cause +C2910437|T033|ET|Y92.89|ICD10CM|Derelict house as the place of occurrence of the external cause|Derelict house as the place of occurrence of the external cause +C2910438|T033|AB|Y92.89|ICD10CM|Oth places as the place of occurrence of the external cause|Oth places as the place of occurrence of the external cause +C2910438|T033|PT|Y92.89|ICD10CM|Other specified places as the place of occurrence of the external cause|Other specified places as the place of occurrence of the external cause +C2910439|T033|AB|Y92.9|ICD10CM|Unspecified place or not applicable|Unspecified place or not applicable +C2910439|T033|PT|Y92.9|ICD10CM|Unspecified place or not applicable|Unspecified place or not applicable +C0424522|T033|AB|Y93.84|ICD10CM|Activity, sleeping|Activity, sleeping +C0424522|T033|PT|Y93.84|ICD10CM|Activity, sleeping|Activity, sleeping +C0481388|T037|PT|Y95|ICD10|Nosocomial condition|Nosocomial condition +C0481388|T037|PT|Y95|ICD10CM|Nosocomial condition|Nosocomial condition +C0481388|T037|AB|Y95|ICD10CM|Nosocomial condition|Nosocomial condition +C0481389|T037|PT|Y96|ICD10|Work-related condition|Work-related condition +C0481390|T037|PT|Y97|ICD10|Environmental-pollution-related condition|Environmental-pollution-related condition +C0481391|T033|PT|Y98|ICD10|Lifestyle-related condition|Lifestyle-related condition +C2712898|T033|AB|Y99|ICD10CM|External cause status|External cause status +C2712898|T033|HT|Y99|ICD10CM|External cause status|External cause status +C2712805|T037|ET|Y99.0|ICD10CM|Civilian activity done for financial or other compensation|Civilian activity done for financial or other compensation +C2712384|T037|AB|Y99.0|ICD10CM|Civilian activity done for income or pay|Civilian activity done for income or pay +C2712384|T037|PT|Y99.0|ICD10CM|Civilian activity done for income or pay|Civilian activity done for income or pay +C2712385|T037|AB|Y99.1|ICD10CM|Military activity|Military activity +C2712385|T037|PT|Y99.1|ICD10CM|Military activity|Military activity +C2921264|T033|ET|Y99.8|ICD10CM|Activity of child or other family member assisting in compensated work of other family member|Activity of child or other family member assisting in compensated work of other family member +C2712726|T037|ET|Y99.8|ICD10CM|Off-duty activity of military personnel|Off-duty activity of military personnel +C2712386|T033|AB|Y99.8|ICD10CM|Other external cause status|Other external cause status +C2712386|T033|PT|Y99.8|ICD10CM|Other external cause status|Other external cause status +C2712387|T037|AB|Y99.9|ICD10CM|Unspecified external cause status|Unspecified external cause status +C2712387|T037|PT|Y99.9|ICD10CM|Unspecified external cause status|Unspecified external cause status +C2910442|T033|AB|Z00|ICD10CM|Encntr for general exam w/o complaint, susp or reprtd dx|Encntr for general exam w/o complaint, susp or reprtd dx +C2910442|T033|HT|Z00|ICD10CM|Encounter for general examination without complaint, suspected or reported diagnosis|Encounter for general examination without complaint, suspected or reported diagnosis +C2910443|T033|HT|Z00-Z13|ICD10CM|Persons encountering health services for examinations (Z00-Z13)|Persons encountering health services for examinations (Z00-Z13) +C0178336|T033|HT|Z00-Z99|ICD10CM|Factors influencing health status and contact with health services (Z00-Z99)|Factors influencing health status and contact with health services (Z00-Z99) +C0178336|T033|HT|Z00-Z99.9|ICD10|Factors influencing health status and contact with health services|Factors influencing health status and contact with health services +C2910445|T033|AB|Z00.0|ICD10CM|Encounter for general adult medical examination|Encounter for general adult medical examination +C2910445|T033|HT|Z00.0|ICD10CM|Encounter for general adult medical examination|Encounter for general adult medical examination +C0260860|T033|PT|Z00.0|ICD10|General medical examination|General medical examination +C2910447|T033|AB|Z00.00|ICD10CM|Encntr for general adult medical exam w/o abnormal findings|Encntr for general adult medical exam w/o abnormal findings +C2910446|T033|ET|Z00.00|ICD10CM|Encounter for adult health check-up NOS|Encounter for adult health check-up NOS +C2910447|T033|PT|Z00.00|ICD10CM|Encounter for general adult medical examination without abnormal findings|Encounter for general adult medical examination without abnormal findings +C2910448|T033|AB|Z00.01|ICD10CM|Encounter for general adult medical exam w abnormal findings|Encounter for general adult medical exam w abnormal findings +C2910448|T033|PT|Z00.01|ICD10CM|Encounter for general adult medical examination with abnormal findings|Encounter for general adult medical examination with abnormal findings +C2910449|T033|AB|Z00.1|ICD10CM|Encounter for newborn, infant and child health examinations|Encounter for newborn, infant and child health examinations +C2910449|T033|HT|Z00.1|ICD10CM|Encounter for newborn, infant and child health examinations|Encounter for newborn, infant and child health examinations +C0476709|T033|PT|Z00.1|ICD10|Routine child health examination|Routine child health examination +C2712856|T033|ET|Z00.11|ICD10CM|Health check for child under 29 days old|Health check for child under 29 days old +C2910450|T033|AB|Z00.11|ICD10CM|Newborn health examination|Newborn health examination +C2910450|T033|HT|Z00.11|ICD10CM|Newborn health examination|Newborn health examination +C2712818|T033|ET|Z00.110|ICD10CM|Health check for newborn under 8 days old|Health check for newborn under 8 days old +C2910451|T033|AB|Z00.110|ICD10CM|Health examination for newborn under 8 days old|Health examination for newborn under 8 days old +C2910451|T033|PT|Z00.110|ICD10CM|Health examination for newborn under 8 days old|Health examination for newborn under 8 days old +C2712829|T033|ET|Z00.111|ICD10CM|Health check for newborn 8 to 28 days old|Health check for newborn 8 to 28 days old +C2910452|T033|AB|Z00.111|ICD10CM|Health examination for newborn 8 to 28 days old|Health examination for newborn 8 to 28 days old +C2910452|T033|PT|Z00.111|ICD10CM|Health examination for newborn 8 to 28 days old|Health examination for newborn 8 to 28 days old +C2712830|T033|ET|Z00.111|ICD10CM|Newborn weight check|Newborn weight check +C2910456|T033|AB|Z00.12|ICD10CM|Encounter for routine child health examination|Encounter for routine child health examination +C2910456|T033|HT|Z00.12|ICD10CM|Encounter for routine child health examination|Encounter for routine child health examination +C2910454|T033|ET|Z00.12|ICD10CM|Health check (routine) for child over 28 days old|Health check (routine) for child over 28 days old +C0868558|T033|ET|Z00.12|ICD10CM|Immunizations appropriate for age|Immunizations appropriate for age +C2910453|T033|ET|Z00.12|ICD10CM|Routine developmental screening of infant or child|Routine developmental screening of infant or child +C0868559|T033|ET|Z00.12|ICD10CM|Routine vision and hearing testing|Routine vision and hearing testing +C2910455|T033|AB|Z00.121|ICD10CM|Encounter for routine child health exam w abnormal findings|Encounter for routine child health exam w abnormal findings +C2910455|T033|PT|Z00.121|ICD10CM|Encounter for routine child health examination with abnormal findings|Encounter for routine child health examination with abnormal findings +C2910457|T033|AB|Z00.129|ICD10CM|Encntr for routine child health exam w/o abnormal findings|Encntr for routine child health exam w/o abnormal findings +C2910456|T033|ET|Z00.129|ICD10CM|Encounter for routine child health examination NOS|Encounter for routine child health examination NOS +C2910457|T033|PT|Z00.129|ICD10CM|Encounter for routine child health examination without abnormal findings|Encounter for routine child health examination without abnormal findings +C2910458|T033|AB|Z00.2|ICD10CM|Encounter for exam for period of rapid growth in childhood|Encounter for exam for period of rapid growth in childhood +C2910458|T033|PT|Z00.2|ICD10CM|Encounter for examination for period of rapid growth in childhood|Encounter for examination for period of rapid growth in childhood +C0496562|T033|PT|Z00.2|ICD10|Examination for period of rapid growth in childhood|Examination for period of rapid growth in childhood +C2910460|T033|AB|Z00.3|ICD10CM|Encounter for examination for adolescent development state|Encounter for examination for adolescent development state +C2910460|T033|PT|Z00.3|ICD10CM|Encounter for examination for adolescent development state|Encounter for examination for adolescent development state +C2910459|T033|ET|Z00.3|ICD10CM|Encounter for puberty development state|Encounter for puberty development state +C0476711|T033|PT|Z00.3|ICD10|Examination for adolescent development state|Examination for adolescent development state +C2910461|T033|AB|Z00.5|ICD10CM|Encounter for exam of potential donor of organ and tissue|Encounter for exam of potential donor of organ and tissue +C2910461|T033|PT|Z00.5|ICD10CM|Encounter for examination of potential donor of organ and tissue|Encounter for examination of potential donor of organ and tissue +C0476710|T033|PT|Z00.5|ICD10|Examination of potential donor of organ and tissue|Examination of potential donor of organ and tissue +C2910462|T033|AB|Z00.6|ICD10CM|Encntr for exam for nrml cmprsn and ctrl in clncl rsrch prog|Encntr for exam for nrml cmprsn and ctrl in clncl rsrch prog +C2910462|T033|PT|Z00.6|ICD10CM|Encounter for examination for normal comparison and control in clinical research program|Encounter for examination for normal comparison and control in clinical research program +C0496564|T033|PT|Z00.6|ICD10AE|Examination for normal comparison and control in clinical research program|Examination for normal comparison and control in clinical research program +C0496564|T033|PT|Z00.6|ICD10|Examination for normal comparison and control in clinical research programme|Examination for normal comparison and control in clinical research programme +C3264055|T033|ET|Z00.6|ICD10CM|Examination of participant or control in clinical research program|Examination of participant or control in clinical research program +C2910463|T033|AB|Z00.7|ICD10CM|Encntr for exam for delay growth in childhood|Encntr for exam for delay growth in childhood +C2910463|T033|HT|Z00.7|ICD10CM|Encounter for examination for period of delayed growth in childhood|Encounter for examination for period of delayed growth in childhood +C2910464|T033|AB|Z00.70|ICD10CM|Encntr for exam for delay growth in chldhd w/o abn findings|Encntr for exam for delay growth in chldhd w/o abn findings +C2910464|T033|PT|Z00.70|ICD10CM|Encounter for examination for period of delayed growth in childhood without abnormal findings|Encounter for examination for period of delayed growth in childhood without abnormal findings +C2910465|T033|AB|Z00.71|ICD10CM|Encntr for exam for delay growth in chldhd w abn findings|Encntr for exam for delay growth in chldhd w abn findings +C2910465|T033|PT|Z00.71|ICD10CM|Encounter for examination for period of delayed growth in childhood with abnormal findings|Encounter for examination for period of delayed growth in childhood with abnormal findings +C2910466|T033|ET|Z00.8|ICD10CM|Encounter for health examination in population surveys|Encounter for health examination in population surveys +C2910467|T033|AB|Z00.8|ICD10CM|Encounter for other general examination|Encounter for other general examination +C2910467|T033|PT|Z00.8|ICD10CM|Encounter for other general examination|Encounter for other general examination +C2910469|T033|AB|Z01|ICD10CM|Encntr for oth sp exam w/o complaint, suspected or reprtd dx|Encntr for oth sp exam w/o complaint, suspected or reprtd dx +C2910469|T033|HT|Z01|ICD10CM|Encounter for other special examination without complaint, suspected or reported diagnosis|Encounter for other special examination without complaint, suspected or reported diagnosis +C4290504|T033|ET|Z01|ICD10CM|routine examination of specific system|routine examination of specific system +C2910470|T033|AB|Z01.0|ICD10CM|Encounter for examination of eyes and vision|Encounter for examination of eyes and vision +C2910470|T033|HT|Z01.0|ICD10CM|Encounter for examination of eyes and vision|Encounter for examination of eyes and vision +C1961134|T033|PT|Z01.0|ICD10|Examination of eyes and vision|Examination of eyes and vision +C2910471|T033|AB|Z01.00|ICD10CM|Encounter for exam of eyes and vision w/o abnormal findings|Encounter for exam of eyes and vision w/o abnormal findings +C2910470|T033|ET|Z01.00|ICD10CM|Encounter for examination of eyes and vision NOS|Encounter for examination of eyes and vision NOS +C2910471|T033|PT|Z01.00|ICD10CM|Encounter for examination of eyes and vision without abnormal findings|Encounter for examination of eyes and vision without abnormal findings +C2910472|T033|AB|Z01.01|ICD10CM|Encounter for exam of eyes and vision w abnormal findings|Encounter for exam of eyes and vision w abnormal findings +C2910472|T033|PT|Z01.01|ICD10CM|Encounter for examination of eyes and vision with abnormal findings|Encounter for examination of eyes and vision with abnormal findings +C5141107|T033|HT|Z01.02|ICD10CM|Encounter for examination of eyes and vision following failed vision screening|Encounter for examination of eyes and vision following failed vision screening +C5141107|T033|AB|Z01.02|ICD10CM|Enctr for exam of eyes and vision fol failed vision screen|Enctr for exam of eyes and vision fol failed vision screen +C5141108|T033|AB|Z01.020|ICD10CM|Enctr for ex of eyes and vis fol fail vis scrn w/o abn find|Enctr for ex of eyes and vis fol fail vis scrn w/o abn find +C5141109|T033|AB|Z01.021|ICD10CM|Enctr for exam of eyes and vis fol fail vis scrn wbn find|Enctr for exam of eyes and vis fol fail vis scrn wbn find +C2910473|T033|AB|Z01.1|ICD10CM|Encounter for examination of ears and hearing|Encounter for examination of ears and hearing +C2910473|T033|HT|Z01.1|ICD10CM|Encounter for examination of ears and hearing|Encounter for examination of ears and hearing +C0015222|T033|PT|Z01.1|ICD10|Examination of ears and hearing|Examination of ears and hearing +C2910474|T033|AB|Z01.10|ICD10CM|Encounter for exam of ears and hearing w/o abnormal findings|Encounter for exam of ears and hearing w/o abnormal findings +C2910473|T033|ET|Z01.10|ICD10CM|Encounter for examination of ears and hearing NOS|Encounter for examination of ears and hearing NOS +C2910474|T033|PT|Z01.10|ICD10CM|Encounter for examination of ears and hearing without abnormal findings|Encounter for examination of ears and hearing without abnormal findings +C2910475|T033|AB|Z01.11|ICD10CM|Encounter for exam of ears and hearing w abnormal findings|Encounter for exam of ears and hearing w abnormal findings +C2910475|T033|HT|Z01.11|ICD10CM|Encounter for examination of ears and hearing with abnormal findings|Encounter for examination of ears and hearing with abnormal findings +C1719698|T033|AB|Z01.110|ICD10CM|Encounter for hearing exam following failed hear screening|Encounter for hearing exam following failed hear screening +C1719698|T033|PT|Z01.110|ICD10CM|Encounter for hearing examination following failed hearing screening|Encounter for hearing examination following failed hearing screening +C2910476|T033|AB|Z01.118|ICD10CM|Encntr for exam of ears and hearing w oth abnormal findings|Encntr for exam of ears and hearing w oth abnormal findings +C2910476|T033|PT|Z01.118|ICD10CM|Encounter for examination of ears and hearing with other abnormal findings|Encounter for examination of ears and hearing with other abnormal findings +C1955615|T033|AB|Z01.12|ICD10CM|Encounter for hearing conservation and treatment|Encounter for hearing conservation and treatment +C1955615|T033|PT|Z01.12|ICD10CM|Encounter for hearing conservation and treatment|Encounter for hearing conservation and treatment +C0176003|T033|PT|Z01.2|ICD10|Dental examination|Dental examination +C2910477|T033|AB|Z01.2|ICD10CM|Encounter for dental examination and cleaning|Encounter for dental examination and cleaning +C2910477|T033|HT|Z01.2|ICD10CM|Encounter for dental examination and cleaning|Encounter for dental examination and cleaning +C2910478|T033|AB|Z01.20|ICD10CM|Encounter for dental exam and cleaning w/o abnormal findings|Encounter for dental exam and cleaning w/o abnormal findings +C2910477|T033|ET|Z01.20|ICD10CM|Encounter for dental examination and cleaning NOS|Encounter for dental examination and cleaning NOS +C2910478|T033|PT|Z01.20|ICD10CM|Encounter for dental examination and cleaning without abnormal findings|Encounter for dental examination and cleaning without abnormal findings +C2910479|T033|AB|Z01.21|ICD10CM|Encounter for dental exam and cleaning w abnormal findings|Encounter for dental exam and cleaning w abnormal findings +C2910479|T033|PT|Z01.21|ICD10CM|Encounter for dental examination and cleaning with abnormal findings|Encounter for dental examination and cleaning with abnormal findings +C1313910|T033|HT|Z01.3|ICD10CM|Encounter for examination of blood pressure|Encounter for examination of blood pressure +C1313910|T033|AB|Z01.3|ICD10CM|Encounter for examination of blood pressure|Encounter for examination of blood pressure +C1313910|T033|PT|Z01.3|ICD10|Examination of blood pressure|Examination of blood pressure +C2910480|T033|AB|Z01.30|ICD10CM|Encounter for exam of blood pressure w/o abnormal findings|Encounter for exam of blood pressure w/o abnormal findings +C1313910|T033|ET|Z01.30|ICD10CM|Encounter for examination of blood pressure NOS|Encounter for examination of blood pressure NOS +C2910480|T033|PT|Z01.30|ICD10CM|Encounter for examination of blood pressure without abnormal findings|Encounter for examination of blood pressure without abnormal findings +C2910481|T033|AB|Z01.31|ICD10CM|Encounter for exam of blood pressure w abnormal findings|Encounter for exam of blood pressure w abnormal findings +C2910481|T033|PT|Z01.31|ICD10CM|Encounter for examination of blood pressure with abnormal findings|Encounter for examination of blood pressure with abnormal findings +C2910482|T033|AB|Z01.4|ICD10CM|Encounter for gynecological examination|Encounter for gynecological examination +C2910482|T033|HT|Z01.4|ICD10CM|Encounter for gynecological examination|Encounter for gynecological examination +C0302487|T033|PT|Z01.4|ICD10|Gynaecological examination (general) (routine)|Gynaecological examination (general) (routine) +C0302487|T033|PT|Z01.4|ICD10AE|Gynecological examination (general) (routine)|Gynecological examination (general) (routine) +C2910483|T033|ET|Z01.41|ICD10CM|Encounter for general gynecological examination with or without cervical smear|Encounter for general gynecological examination with or without cervical smear +C2910484|T033|ET|Z01.41|ICD10CM|Encounter for gynecological examination (general) (routine) NOS|Encounter for gynecological examination (general) (routine) NOS +C2910485|T033|ET|Z01.41|ICD10CM|Encounter for pelvic examination (annual) (periodic)|Encounter for pelvic examination (annual) (periodic) +C2910486|T033|AB|Z01.41|ICD10CM|Encounter for routine gynecological examination|Encounter for routine gynecological examination +C2910486|T033|HT|Z01.41|ICD10CM|Encounter for routine gynecological examination|Encounter for routine gynecological examination +C2910487|T033|AB|Z01.411|ICD10CM|Encntr for gyn exam (general) (routine) w abnormal findings|Encntr for gyn exam (general) (routine) w abnormal findings +C2910487|T033|PT|Z01.411|ICD10CM|Encounter for gynecological examination (general) (routine) with abnormal findings|Encounter for gynecological examination (general) (routine) with abnormal findings +C2910488|T033|AB|Z01.419|ICD10CM|Encntr for gyn exam (general) (routine) w/o abn findings|Encntr for gyn exam (general) (routine) w/o abn findings +C2910488|T033|PT|Z01.419|ICD10CM|Encounter for gynecological examination (general) (routine) without abnormal findings|Encounter for gynecological examination (general) (routine) without abnormal findings +C2910489|T033|AB|Z01.42|ICD10CM|Encntr for cerv smear to cnfrm norm smr fol init abn smear|Encntr for cerv smear to cnfrm norm smr fol init abn smear +C0362085|T033|PT|Z01.5|ICD10|Diagnostic skin and sensitization tests|Diagnostic skin and sensitization tests +C0869290|T033|PT|Z01.6|ICD10|Radiological examination, not elsewhere classified|Radiological examination, not elsewhere classified +C0260877|T033|PT|Z01.7|ICD10|Laboratory examination|Laboratory examination +C2910490|T033|HT|Z01.8|ICD10CM|Encounter for other specified special examinations|Encounter for other specified special examinations +C2910490|T033|AB|Z01.8|ICD10CM|Encounter for other specified special examinations|Encounter for other specified special examinations +C2910491|T033|ET|Z01.81|ICD10CM|Encounter for preoperative examinations|Encounter for preoperative examinations +C2910498|T033|AB|Z01.81|ICD10CM|Encounter for preprocedural examinations|Encounter for preprocedural examinations +C2910498|T033|HT|Z01.81|ICD10CM|Encounter for preprocedural examinations|Encounter for preprocedural examinations +C2910492|T033|ET|Z01.81|ICD10CM|Encounter for radiological and imaging examinations as part of preprocedural examination|Encounter for radiological and imaging examinations as part of preprocedural examination +C2910493|T033|AB|Z01.810|ICD10CM|Encounter for preprocedural cardiovascular examination|Encounter for preprocedural cardiovascular examination +C2910493|T033|PT|Z01.810|ICD10CM|Encounter for preprocedural cardiovascular examination|Encounter for preprocedural cardiovascular examination +C2910494|T033|AB|Z01.811|ICD10CM|Encounter for preprocedural respiratory examination|Encounter for preprocedural respiratory examination +C2910494|T033|PT|Z01.811|ICD10CM|Encounter for preprocedural respiratory examination|Encounter for preprocedural respiratory examination +C2910495|T033|ET|Z01.812|ICD10CM|Blood and urine tests prior to treatment or procedure|Blood and urine tests prior to treatment or procedure +C2910496|T033|AB|Z01.812|ICD10CM|Encounter for preprocedural laboratory examination|Encounter for preprocedural laboratory examination +C2910496|T033|PT|Z01.812|ICD10CM|Encounter for preprocedural laboratory examination|Encounter for preprocedural laboratory examination +C2910497|T033|ET|Z01.818|ICD10CM|Encounter for examinations prior to antineoplastic chemotherapy|Encounter for examinations prior to antineoplastic chemotherapy +C2910499|T033|AB|Z01.818|ICD10CM|Encounter for other preprocedural examination|Encounter for other preprocedural examination +C2910499|T033|PT|Z01.818|ICD10CM|Encounter for other preprocedural examination|Encounter for other preprocedural examination +C2910498|T033|ET|Z01.818|ICD10CM|Encounter for preprocedural examination NOS|Encounter for preprocedural examination NOS +C2910500|T033|AB|Z01.82|ICD10CM|Encounter for allergy testing|Encounter for allergy testing +C2910500|T033|PT|Z01.82|ICD10CM|Encounter for allergy testing|Encounter for allergy testing +C1561709|T033|AB|Z01.83|ICD10CM|Encounter for blood typing|Encounter for blood typing +C1561709|T033|PT|Z01.83|ICD10CM|Encounter for blood typing|Encounter for blood typing +C2910501|T033|ET|Z01.83|ICD10CM|Encounter for Rh typing|Encounter for Rh typing +C2712560|T033|PT|Z01.84|ICD10CM|Encounter for antibody response examination|Encounter for antibody response examination +C2712560|T033|AB|Z01.84|ICD10CM|Encounter for antibody response examination|Encounter for antibody response examination +C2910502|T033|ET|Z01.84|ICD10CM|Encounter for immunity status testing|Encounter for immunity status testing +C2910490|T033|AB|Z01.89|ICD10CM|Encounter for other specified special examinations|Encounter for other specified special examinations +C2910490|T033|PT|Z01.89|ICD10CM|Encounter for other specified special examinations|Encounter for other specified special examinations +C0260875|T033|PT|Z01.9|ICD10|Special examination, unspecified|Special examination, unspecified +C2910503|T033|AB|Z02|ICD10CM|Encounter for administrative examination|Encounter for administrative examination +C2910503|T033|HT|Z02|ICD10CM|Encounter for administrative examination|Encounter for administrative examination +C0496568|T033|HT|Z02|ICD10|Examination and encounter for administrative purposes|Examination and encounter for administrative purposes +C2910506|T033|AB|Z02.0|ICD10CM|Encounter for exam for admission to educational institution|Encounter for exam for admission to educational institution +C2910506|T033|PT|Z02.0|ICD10CM|Encounter for examination for admission to educational institution|Encounter for examination for admission to educational institution +C2910504|T033|ET|Z02.0|ICD10CM|Encounter for examination for admission to preschool (education)|Encounter for examination for admission to preschool (education) +C2910505|T033|ET|Z02.0|ICD10CM|Encounter for examination for re-admission to school following illness or medical treatment|Encounter for examination for re-admission to school following illness or medical treatment +C0478666|T033|PT|Z02.0|ICD10|Examination for admission to educational institution|Examination for admission to educational institution +C2910507|T033|AB|Z02.1|ICD10CM|Encounter for pre-employment examination|Encounter for pre-employment examination +C2910507|T033|PT|Z02.1|ICD10CM|Encounter for pre-employment examination|Encounter for pre-employment examination +C0476713|T033|PT|Z02.1|ICD10|Pre-employment examination|Pre-employment examination +C2910508|T033|AB|Z02.2|ICD10CM|Encounter for exam for admission to residential institution|Encounter for exam for admission to residential institution +C2910508|T033|PT|Z02.2|ICD10CM|Encounter for examination for admission to residential institution|Encounter for examination for admission to residential institution +C0478667|T033|PT|Z02.2|ICD10|Examination for admission to residential institutions|Examination for admission to residential institutions +C2910509|T033|AB|Z02.3|ICD10CM|Encounter for examination for recruitment to armed forces|Encounter for examination for recruitment to armed forces +C2910509|T033|PT|Z02.3|ICD10CM|Encounter for examination for recruitment to armed forces|Encounter for examination for recruitment to armed forces +C0476714|T033|PT|Z02.3|ICD10|Examination for recruitment to armed forces|Examination for recruitment to armed forces +C2910510|T033|AB|Z02.4|ICD10CM|Encounter for examination for driving license|Encounter for examination for driving license +C2910510|T033|PT|Z02.4|ICD10CM|Encounter for examination for driving license|Encounter for examination for driving license +C0478668|T033|PT|Z02.4|ICD10|Examination for driving licence|Examination for driving licence +C2910511|T033|AB|Z02.5|ICD10CM|Encounter for examination for participation in sport|Encounter for examination for participation in sport +C2910511|T033|PT|Z02.5|ICD10CM|Encounter for examination for participation in sport|Encounter for examination for participation in sport +C0476715|T033|PT|Z02.5|ICD10|Examination for participation in sport|Examination for participation in sport +C2910512|T033|AB|Z02.6|ICD10CM|Encounter for examination for insurance purposes|Encounter for examination for insurance purposes +C2910512|T033|PT|Z02.6|ICD10CM|Encounter for examination for insurance purposes|Encounter for examination for insurance purposes +C0478669|T033|PT|Z02.6|ICD10|Examination for insurance purposes|Examination for insurance purposes +C2910513|T033|AB|Z02.7|ICD10CM|Encounter for issue of medical certificate|Encounter for issue of medical certificate +C2910513|T033|HT|Z02.7|ICD10CM|Encounter for issue of medical certificate|Encounter for issue of medical certificate +C0260844|T033|PT|Z02.7|ICD10|Issue of medical certificate|Issue of medical certificate +C2910516|T033|AB|Z02.71|ICD10CM|Encounter for disability determination|Encounter for disability determination +C2910516|T033|PT|Z02.71|ICD10CM|Encounter for disability determination|Encounter for disability determination +C2910514|T033|ET|Z02.71|ICD10CM|Encounter for issue of medical certificate of incapacity|Encounter for issue of medical certificate of incapacity +C2910515|T033|ET|Z02.71|ICD10CM|Encounter for issue of medical certificate of invalidity|Encounter for issue of medical certificate of invalidity +C2910517|T033|AB|Z02.79|ICD10CM|Encounter for issue of other medical certificate|Encounter for issue of other medical certificate +C2910517|T033|PT|Z02.79|ICD10CM|Encounter for issue of other medical certificate|Encounter for issue of other medical certificate +C2910518|T033|HT|Z02.8|ICD10CM|Encounter for other administrative examinations|Encounter for other administrative examinations +C2910518|T033|AB|Z02.8|ICD10CM|Encounter for other administrative examinations|Encounter for other administrative examinations +C2910519|T033|AB|Z02.81|ICD10CM|Encounter for paternity testing|Encounter for paternity testing +C2910519|T033|PT|Z02.81|ICD10CM|Encounter for paternity testing|Encounter for paternity testing +C2910520|T033|AB|Z02.82|ICD10CM|Encounter for adoption services|Encounter for adoption services +C2910520|T033|PT|Z02.82|ICD10CM|Encounter for adoption services|Encounter for adoption services +C2910521|T033|AB|Z02.83|ICD10CM|Encounter for blood-alcohol and blood-drug test|Encounter for blood-alcohol and blood-drug test +C2910521|T033|PT|Z02.83|ICD10CM|Encounter for blood-alcohol and blood-drug test|Encounter for blood-alcohol and blood-drug test +C2910522|T033|ET|Z02.89|ICD10CM|Encounter for examination for admission to prison|Encounter for examination for admission to prison +C2910523|T033|ET|Z02.89|ICD10CM|Encounter for examination for admission to summer camp|Encounter for examination for admission to summer camp +C2910524|T033|ET|Z02.89|ICD10CM|Encounter for immigration examination|Encounter for immigration examination +C2910525|T033|ET|Z02.89|ICD10CM|Encounter for naturalization examination|Encounter for naturalization examination +C2910518|T033|PT|Z02.89|ICD10CM|Encounter for other administrative examinations|Encounter for other administrative examinations +C2910518|T033|AB|Z02.89|ICD10CM|Encounter for other administrative examinations|Encounter for other administrative examinations +C2910526|T033|ET|Z02.89|ICD10CM|Encounter for premarital examination|Encounter for premarital examination +C2910527|T033|AB|Z02.9|ICD10CM|Encounter for administrative examinations, unspecified|Encounter for administrative examinations, unspecified +C2910527|T033|PT|Z02.9|ICD10CM|Encounter for administrative examinations, unspecified|Encounter for administrative examinations, unspecified +C0496568|T033|PT|Z02.9|ICD10|Examination for administrative purposes, unspecified|Examination for administrative purposes, unspecified +C2910528|T033|AB|Z03|ICD10CM|Encntr for medical obs for susp diseases and cond ruled out|Encntr for medical obs for susp diseases and cond ruled out +C2910528|T033|HT|Z03|ICD10CM|Encounter for medical observation for suspected diseases and conditions ruled out|Encounter for medical observation for suspected diseases and conditions ruled out +C0260861|T033|HT|Z03|ICD10|Medical observation and evaluation for suspected diseases and conditions|Medical observation and evaluation for suspected diseases and conditions +C0260867|T033|PT|Z03.0|ICD10|Observation for suspected tuberculosis|Observation for suspected tuberculosis +C0260866|T033|PT|Z03.1|ICD10|Observation for suspected malignant neoplasm|Observation for suspected malignant neoplasm +C0496570|T033|PT|Z03.2|ICD10AE|Observation for suspected mental and behavioral disorders|Observation for suspected mental and behavioral disorders +C0496570|T033|PT|Z03.2|ICD10|Observation for suspected mental and behavioural disorders|Observation for suspected mental and behavioural disorders +C0476717|T033|PT|Z03.3|ICD10|Observation for suspected nervous system disorder|Observation for suspected nervous system disorder +C0476718|T033|PT|Z03.4|ICD10|Observation for suspected myocardial infarction|Observation for suspected myocardial infarction +C2910531|T033|AB|Z03.6|ICD10CM|Encntr for obs for susp toxic eff from ingest sub ruled out|Encntr for obs for susp toxic eff from ingest sub ruled out +C2910529|T033|ET|Z03.6|ICD10CM|Encounter for observation for suspected adverse effect from drug|Encounter for observation for suspected adverse effect from drug +C2910530|T033|ET|Z03.6|ICD10CM|Encounter for observation for suspected poisoning|Encounter for observation for suspected poisoning +C2910531|T033|PT|Z03.6|ICD10CM|Encounter for observation for suspected toxic effect from ingested substance ruled out|Encounter for observation for suspected toxic effect from ingested substance ruled out +C0476719|T033|PT|Z03.6|ICD10|Observation for suspected toxic effect from ingested substance|Observation for suspected toxic effect from ingested substance +C2910533|T033|AB|Z03.7|ICD10CM|Encounter for suspected maternal and fetal cond ruled out|Encounter for suspected maternal and fetal cond ruled out +C2910532|T033|ET|Z03.7|ICD10CM|Encounter for suspected maternal and fetal conditions not found|Encounter for suspected maternal and fetal conditions not found +C2910533|T033|HT|Z03.7|ICD10CM|Encounter for suspected maternal and fetal conditions ruled out|Encounter for suspected maternal and fetal conditions ruled out +C2910536|T033|AB|Z03.71|ICD10CM|Encntr for susp prob w amnio cavity and membrane ruled out|Encntr for susp prob w amnio cavity and membrane ruled out +C2910534|T033|ET|Z03.71|ICD10CM|Encounter for suspected oligohydramnios ruled out|Encounter for suspected oligohydramnios ruled out +C2910535|T033|ET|Z03.71|ICD10CM|Encounter for suspected polyhydramnios ruled out|Encounter for suspected polyhydramnios ruled out +C2910536|T033|PT|Z03.71|ICD10CM|Encounter for suspected problem with amniotic cavity and membrane ruled out|Encounter for suspected problem with amniotic cavity and membrane ruled out +C2910537|T033|AB|Z03.72|ICD10CM|Encounter for suspected placental problem ruled out|Encounter for suspected placental problem ruled out +C2910537|T033|PT|Z03.72|ICD10CM|Encounter for suspected placental problem ruled out|Encounter for suspected placental problem ruled out +C2910538|T033|AB|Z03.73|ICD10CM|Encounter for suspected fetal anomaly ruled out|Encounter for suspected fetal anomaly ruled out +C2910538|T033|PT|Z03.73|ICD10CM|Encounter for suspected fetal anomaly ruled out|Encounter for suspected fetal anomaly ruled out +C2910539|T033|AB|Z03.74|ICD10CM|Encounter for suspected problem with fetal growth ruled out|Encounter for suspected problem with fetal growth ruled out +C2910539|T033|PT|Z03.74|ICD10CM|Encounter for suspected problem with fetal growth ruled out|Encounter for suspected problem with fetal growth ruled out +C2910540|T033|AB|Z03.75|ICD10CM|Encounter for suspected cervical shortening ruled out|Encounter for suspected cervical shortening ruled out +C2910540|T033|PT|Z03.75|ICD10CM|Encounter for suspected cervical shortening ruled out|Encounter for suspected cervical shortening ruled out +C2910541|T033|AB|Z03.79|ICD10CM|Encntr for oth suspected maternal and fetal cond ruled out|Encntr for oth suspected maternal and fetal cond ruled out +C2910541|T033|PT|Z03.79|ICD10CM|Encounter for other suspected maternal and fetal conditions ruled out|Encounter for other suspected maternal and fetal conditions ruled out +C2910542|T033|AB|Z03.8|ICD10CM|Encntr for obs for oth suspected diseases and cond ruled out|Encntr for obs for oth suspected diseases and cond ruled out +C2910542|T033|HT|Z03.8|ICD10CM|Encounter for observation for other suspected diseases and conditions ruled out|Encounter for observation for other suspected diseases and conditions ruled out +C2910543|T033|AB|Z03.81|ICD10CM|Encntr for obs for susp exposure to biolg agents ruled out|Encntr for obs for susp exposure to biolg agents ruled out +C2910543|T033|HT|Z03.81|ICD10CM|Encounter for observation for suspected exposure to biological agents ruled out|Encounter for observation for suspected exposure to biological agents ruled out +C2910544|T033|AB|Z03.810|ICD10CM|Encntr for obs for suspected exposure to anthrax ruled out|Encntr for obs for suspected exposure to anthrax ruled out +C2910544|T033|PT|Z03.810|ICD10CM|Encounter for observation for suspected exposure to anthrax ruled out|Encounter for observation for suspected exposure to anthrax ruled out +C2910545|T033|AB|Z03.818|ICD10CM|Encntr for obs for susp expsr to oth biolg agents ruled out|Encntr for obs for susp expsr to oth biolg agents ruled out +C2910545|T033|PT|Z03.818|ICD10CM|Encounter for observation for suspected exposure to other biological agents ruled out|Encounter for observation for suspected exposure to other biological agents ruled out +C2910542|T033|AB|Z03.89|ICD10CM|Encntr for obs for oth suspected diseases and cond ruled out|Encntr for obs for oth suspected diseases and cond ruled out +C2910542|T033|PT|Z03.89|ICD10CM|Encounter for observation for other suspected diseases and conditions ruled out|Encounter for observation for other suspected diseases and conditions ruled out +C0496571|T033|PT|Z03.9|ICD10|Observation for suspected disease or condition, unspecified|Observation for suspected disease or condition, unspecified +C2910547|T033|AB|Z04|ICD10CM|Encounter for examination and observation for other reasons|Encounter for examination and observation for other reasons +C2910547|T033|HT|Z04|ICD10CM|Encounter for examination and observation for other reasons|Encounter for examination and observation for other reasons +C4290505|T033|ET|Z04|ICD10CM|encounter for examination for medicolegal reasons|encounter for examination for medicolegal reasons +C0478670|T033|PT|Z04.0|ICD10|Blood-alcohol and blood-drug test|Blood-alcohol and blood-drug test +C2910548|T033|AB|Z04.1|ICD10CM|Encounter for exam and obs following transport accident|Encounter for exam and obs following transport accident +C2910548|T033|PT|Z04.1|ICD10CM|Encounter for examination and observation following transport accident|Encounter for examination and observation following transport accident +C0476720|T033|PT|Z04.1|ICD10|Examination and observation following transport accident|Examination and observation following transport accident +C2910549|T033|AB|Z04.2|ICD10CM|Encounter for exam and observation following work accident|Encounter for exam and observation following work accident +C2910549|T033|PT|Z04.2|ICD10CM|Encounter for examination and observation following work accident|Encounter for examination and observation following work accident +C2910550|T033|AB|Z04.3|ICD10CM|Encounter for exam and observation following oth accident|Encounter for exam and observation following oth accident +C2910550|T033|PT|Z04.3|ICD10CM|Encounter for examination and observation following other accident|Encounter for examination and observation following other accident +C0478527|T033|PT|Z04.3|ICD10|Examination and observation following other accident|Examination and observation following other accident +C2910553|T033|AB|Z04.4|ICD10CM|Encounter for exam and observation following alleged rape|Encounter for exam and observation following alleged rape +C2910553|T033|HT|Z04.4|ICD10CM|Encounter for examination and observation following alleged rape|Encounter for examination and observation following alleged rape +C2910551|T033|ET|Z04.4|ICD10CM|Encounter for examination and observation of victim following alleged rape|Encounter for examination and observation of victim following alleged rape +C2910552|T033|ET|Z04.4|ICD10CM|Encounter for examination and observation of victim following alleged sexual abuse|Encounter for examination and observation of victim following alleged sexual abuse +C2910556|T033|AB|Z04.41|ICD10CM|Encounter for exam and obs following alleged adult rape|Encounter for exam and obs following alleged adult rape +C2910556|T033|PT|Z04.41|ICD10CM|Encounter for examination and observation following alleged adult rape|Encounter for examination and observation following alleged adult rape +C2910554|T033|ET|Z04.41|ICD10CM|Suspected adult rape, ruled out|Suspected adult rape, ruled out +C2910555|T033|ET|Z04.41|ICD10CM|Suspected adult sexual abuse, ruled out|Suspected adult sexual abuse, ruled out +C2910559|T033|AB|Z04.42|ICD10CM|Encounter for exam and obs following alleged child rape|Encounter for exam and obs following alleged child rape +C2910559|T033|PT|Z04.42|ICD10CM|Encounter for examination and observation following alleged child rape|Encounter for examination and observation following alleged child rape +C2910557|T033|ET|Z04.42|ICD10CM|Suspected child rape, ruled out|Suspected child rape, ruled out +C2910558|T033|ET|Z04.42|ICD10CM|Suspected child sexual abuse, ruled out|Suspected child sexual abuse, ruled out +C2910560|T033|AB|Z04.6|ICD10CM|Encntr for general psychiatric exam, requested by authority|Encntr for general psychiatric exam, requested by authority +C2910560|T033|PT|Z04.6|ICD10CM|Encounter for general psychiatric examination, requested by authority|Encounter for general psychiatric examination, requested by authority +C0260852|T033|PT|Z04.6|ICD10|General psychiatric examination, requested by authority|General psychiatric examination, requested by authority +C2910561|T033|AB|Z04.7|ICD10CM|Encounter for exam and obs following alleged physical abuse|Encounter for exam and obs following alleged physical abuse +C2910561|T033|HT|Z04.7|ICD10CM|Encounter for examination and observation following alleged physical abuse|Encounter for examination and observation following alleged physical abuse +C2910563|T033|AB|Z04.71|ICD10CM|Encntr for exam and obs fol alleged adult physical abuse|Encntr for exam and obs fol alleged adult physical abuse +C2910563|T033|PT|Z04.71|ICD10CM|Encounter for examination and observation following alleged adult physical abuse|Encounter for examination and observation following alleged adult physical abuse +C2910562|T033|ET|Z04.71|ICD10CM|Suspected adult physical abuse, ruled out|Suspected adult physical abuse, ruled out +C2910565|T033|AB|Z04.72|ICD10CM|Encntr for exam and obs fol alleged child physical abuse|Encntr for exam and obs fol alleged child physical abuse +C2910565|T033|PT|Z04.72|ICD10CM|Encounter for examination and observation following alleged child physical abuse|Encounter for examination and observation following alleged child physical abuse +C2910564|T033|ET|Z04.72|ICD10CM|Suspected child physical abuse, ruled out|Suspected child physical abuse, ruled out +C2910567|T033|AB|Z04.8|ICD10CM|Encounter for examination and observation for oth reasons|Encounter for examination and observation for oth reasons +C2910567|T033|HT|Z04.8|ICD10CM|Encounter for examination and observation for other specified reasons|Encounter for examination and observation for other specified reasons +C2910566|T033|ET|Z04.8|ICD10CM|Encounter for examination and observation for request for expert evidence|Encounter for examination and observation for request for expert evidence +C4553592|T033|PT|Z04.81|ICD10CM|Encounter for examination and observation of victim following forced sexual exploitation|Encounter for examination and observation of victim following forced sexual exploitation +C4553592|T033|AB|Z04.81|ICD10CM|Enctr for exam and obs of victim fol forced sex exploitation|Enctr for exam and obs of victim fol forced sex exploitation +C4553593|T033|PT|Z04.82|ICD10CM|Encounter for examination and observation of victim following forced labor exploitation|Encounter for examination and observation of victim following forced labor exploitation +C4553593|T033|AB|Z04.82|ICD10CM|Enctr for exam and obs of vctm fol forced labor exploitation|Enctr for exam and obs of vctm fol forced labor exploitation +C2910567|T033|AB|Z04.89|ICD10CM|Encounter for examination and observation for oth reasons|Encounter for examination and observation for oth reasons +C2910567|T033|PT|Z04.89|ICD10CM|Encounter for examination and observation for other specified reasons|Encounter for examination and observation for other specified reasons +C2910569|T033|AB|Z04.9|ICD10CM|Encounter for examination and observation for unsp reason|Encounter for examination and observation for unsp reason +C2910569|T033|PT|Z04.9|ICD10CM|Encounter for examination and observation for unspecified reason|Encounter for examination and observation for unspecified reason +C2910568|T033|ET|Z04.9|ICD10CM|Encounter for observation NOS|Encounter for observation NOS +C0478530|T033|PT|Z04.9|ICD10|Examination and observation for unspecified reason|Examination and observation for unspecified reason +C4270739|T033|HT|Z05|ICD10CM|Encounter for observation and evaluation of newborn for suspected diseases and conditions ruled out|Encounter for observation and evaluation of newborn for suspected diseases and conditions ruled out +C4270739|T033|AB|Z05|ICD10CM|Enctr for Obs & eval of NB for susp diseases and cond R/O|Enctr for Obs & eval of NB for susp diseases and cond R/O +C4270741|T033|AB|Z05.0|ICD10CM|Obs & eval of NB for suspected cardiac condition ruled out|Obs & eval of NB for suspected cardiac condition ruled out +C4270741|T033|PT|Z05.0|ICD10CM|Observation and evaluation of newborn for suspected cardiac condition ruled out|Observation and evaluation of newborn for suspected cardiac condition ruled out +C4270742|T033|AB|Z05.1|ICD10CM|Obs & eval of NB for suspected infect condition ruled out|Obs & eval of NB for suspected infect condition ruled out +C4270742|T033|PT|Z05.1|ICD10CM|Observation and evaluation of newborn for suspected infectious condition ruled out|Observation and evaluation of newborn for suspected infectious condition ruled out +C4270743|T033|AB|Z05.2|ICD10CM|Obs & eval of NB for suspected neuro condition ruled out|Obs & eval of NB for suspected neuro condition ruled out +C4270743|T033|PT|Z05.2|ICD10CM|Observation and evaluation of newborn for suspected neurological condition ruled out|Observation and evaluation of newborn for suspected neurological condition ruled out +C4270744|T033|AB|Z05.3|ICD10CM|Obs & eval of NB for suspected resp condition ruled out|Obs & eval of NB for suspected resp condition ruled out +C4270744|T033|PT|Z05.3|ICD10CM|Observation and evaluation of newborn for suspected respiratory condition ruled out|Observation and evaluation of newborn for suspected respiratory condition ruled out +C4270745|T033|AB|Z05.4|ICD10CM|Obs & eval of NB for suspected genetic, metab,immun cond R/O|Obs & eval of NB for suspected genetic, metab,immun cond R/O +C4270746|T033|AB|Z05.41|ICD10CM|Obs & eval of NB for suspected genetic condition ruled out|Obs & eval of NB for suspected genetic condition ruled out +C4270746|T033|PT|Z05.41|ICD10CM|Observation and evaluation of newborn for suspected genetic condition ruled out|Observation and evaluation of newborn for suspected genetic condition ruled out +C4270747|T033|AB|Z05.42|ICD10CM|Obs & eval of NB for suspected metabolic condition ruled out|Obs & eval of NB for suspected metabolic condition ruled out +C4270747|T033|PT|Z05.42|ICD10CM|Observation and evaluation of newborn for suspected metabolic condition ruled out|Observation and evaluation of newborn for suspected metabolic condition ruled out +C4270748|T033|AB|Z05.43|ICD10CM|Obs & eval of NB for suspected immunologic cond ruled out|Obs & eval of NB for suspected immunologic cond ruled out +C4270748|T033|PT|Z05.43|ICD10CM|Observation and evaluation of newborn for suspected immunologic condition ruled out|Observation and evaluation of newborn for suspected immunologic condition ruled out +C4270749|T033|AB|Z05.5|ICD10CM|Obs & eval of NB for suspected GI condition ruled out|Obs & eval of NB for suspected GI condition ruled out +C4270749|T033|PT|Z05.5|ICD10CM|Observation and evaluation of newborn for suspected gastrointestinal condition ruled out|Observation and evaluation of newborn for suspected gastrointestinal condition ruled out +C4270750|T033|AB|Z05.6|ICD10CM|Obs & eval of NB for suspected GU condition ruled out|Obs & eval of NB for suspected GU condition ruled out +C4270750|T033|PT|Z05.6|ICD10CM|Observation and evaluation of newborn for suspected genitourinary condition ruled out|Observation and evaluation of newborn for suspected genitourinary condition ruled out +C4270751|T033|AB|Z05.7|ICD10CM|Obs & eval NB for susp skin, subcu, ms & conn tiss cond R/O|Obs & eval NB for susp skin, subcu, ms & conn tiss cond R/O +C4270752|T033|AB|Z05.71|ICD10CM|Obs & eval of NB for suspected skin, subcu cond ruled out|Obs & eval of NB for suspected skin, subcu cond ruled out +C4270752|T033|PT|Z05.71|ICD10CM|Observation and evaluation of newborn for suspected skin and subcutaneous tissue condition ruled out|Observation and evaluation of newborn for suspected skin and subcutaneous tissue condition ruled out +C4270753|T033|AB|Z05.72|ICD10CM|Obs & eval of NB for suspected ms condition ruled out|Obs & eval of NB for suspected ms condition ruled out +C4270753|T033|PT|Z05.72|ICD10CM|Observation and evaluation of newborn for suspected musculoskeletal condition ruled out|Observation and evaluation of newborn for suspected musculoskeletal condition ruled out +C4270754|T033|AB|Z05.73|ICD10CM|Obs & eval of NB for suspected conn tiss condition ruled out|Obs & eval of NB for suspected conn tiss condition ruled out +C4270754|T033|PT|Z05.73|ICD10CM|Observation and evaluation of newborn for suspected connective tissue condition ruled out|Observation and evaluation of newborn for suspected connective tissue condition ruled out +C4270755|T033|AB|Z05.8|ICD10CM|Obs & eval of NB for oth suspected condition ruled out|Obs & eval of NB for oth suspected condition ruled out +C4270755|T033|PT|Z05.8|ICD10CM|Observation and evaluation of newborn for other specified suspected condition ruled out|Observation and evaluation of newborn for other specified suspected condition ruled out +C4270756|T033|AB|Z05.9|ICD10CM|Obs & eval of NB for unsp suspected condition ruled out|Obs & eval of NB for unsp suspected condition ruled out +C4270756|T033|PT|Z05.9|ICD10CM|Observation and evaluation of newborn for unspecified suspected condition ruled out|Observation and evaluation of newborn for unspecified suspected condition ruled out +C2910570|T033|AB|Z08|ICD10CM|Encntr for follow-up exam after trtmt for malignant neoplasm|Encntr for follow-up exam after trtmt for malignant neoplasm +C2910570|T033|PT|Z08|ICD10CM|Encounter for follow-up examination after completed treatment for malignant neoplasm|Encounter for follow-up examination after completed treatment for malignant neoplasm +C2910571|T033|ET|Z08|ICD10CM|Medical surveillance following completed treatment|Medical surveillance following completed treatment +C0476666|T033|PT|Z08.0|ICD10|Follow-up examination after surgery for malignant neoplasm|Follow-up examination after surgery for malignant neoplasm +C0476667|T033|PT|Z08.1|ICD10|Follow-up examination after radiotherapy for malignant neoplasm|Follow-up examination after radiotherapy for malignant neoplasm +C0476668|T033|PT|Z08.2|ICD10|Follow-up examination after chemotherapy for malignant neoplasm|Follow-up examination after chemotherapy for malignant neoplasm +C0476669|T033|PT|Z08.7|ICD10|Follow-up examination after combined treatment for malignant neoplasm|Follow-up examination after combined treatment for malignant neoplasm +C0478532|T033|PT|Z08.9|ICD10|Follow-up examination after unspecified treatment for malignant neoplasm|Follow-up examination after unspecified treatment for malignant neoplasm +C2910572|T033|AB|Z09|ICD10CM|Encntr for f/u exam aft trtmt for cond oth than malig neoplm|Encntr for f/u exam aft trtmt for cond oth than malig neoplm +C0476670|T033|HT|Z09|ICD10|Follow-up examination after treatment for conditions other than malignant neoplasms|Follow-up examination after treatment for conditions other than malignant neoplasms +C2910571|T033|ET|Z09|ICD10CM|Medical surveillance following completed treatment|Medical surveillance following completed treatment +C1740784|T033|PT|Z09.2|ICD10|Follow-up examination after chemotherapy for other conditions|Follow-up examination after chemotherapy for other conditions +C0496576|T033|PT|Z09.3|ICD10|Follow-up examination after psychotherapy|Follow-up examination after psychotherapy +C0481525|T033|PT|Z09.4|ICD10|Follow-up examination after treatment of fracture|Follow-up examination after treatment of fracture +C1735319|T033|PT|Z09.7|ICD10|Follow-up examination after combined treatment for other conditions|Follow-up examination after combined treatment for other conditions +C1739362|T033|PT|Z09.8|ICD10|Follow-up examination after other treatment for other conditions|Follow-up examination after other treatment for other conditions +C1739093|T033|PT|Z09.9|ICD10|Follow-up examination after unspecified treatment for other conditions|Follow-up examination after unspecified treatment for other conditions +C0851297|T033|PT|Z10.0|ICD10|Occupational health examination|Occupational health examination +C0478671|T033|PT|Z10.1|ICD10|Routine general health check-up of inhabitants of institutions|Routine general health check-up of inhabitants of institutions +C0478672|T033|PT|Z10.2|ICD10|Routine general health check-up of armed forces|Routine general health check-up of armed forces +C0476716|T033|PT|Z10.3|ICD10|Routine general health check-up of sports teams|Routine general health check-up of sports teams +C0478539|T033|PT|Z10.8|ICD10|Routine general health check-up of other defined subpopulations|Routine general health check-up of other defined subpopulations +C2910586|T033|AB|Z11|ICD10CM|Encounter for screening for infec/parastc diseases|Encounter for screening for infec/parastc diseases +C2910586|T033|HT|Z11|ICD10CM|Encounter for screening for infectious and parasitic diseases|Encounter for screening for infectious and parasitic diseases +C2910574|T033|AB|Z11.0|ICD10CM|Encounter for screening for intestinal infectious diseases|Encounter for screening for intestinal infectious diseases +C2910574|T033|PT|Z11.0|ICD10CM|Encounter for screening for intestinal infectious diseases|Encounter for screening for intestinal infectious diseases +C5141169|T033|ET|Z11.1|ICD10CM|Encounter for screening for active tuberculosis disease|Encounter for screening for active tuberculosis disease +C2910575|T033|PT|Z11.1|ICD10CM|Encounter for screening for respiratory tuberculosis|Encounter for screening for respiratory tuberculosis +C2910575|T033|AB|Z11.1|ICD10CM|Encounter for screening for respiratory tuberculosis|Encounter for screening for respiratory tuberculosis +C0496581|T033|PT|Z11.1|ICD10|Special screening examination for respiratory tuberculosis|Special screening examination for respiratory tuberculosis +C2910576|T033|AB|Z11.2|ICD10CM|Encounter for screening for other bacterial diseases|Encounter for screening for other bacterial diseases +C2910576|T033|PT|Z11.2|ICD10CM|Encounter for screening for other bacterial diseases|Encounter for screening for other bacterial diseases +C2910577|T033|AB|Z11.3|ICD10CM|Encntr screen for infections w sexl mode of transmiss|Encntr screen for infections w sexl mode of transmiss +C2910577|T033|PT|Z11.3|ICD10CM|Encounter for screening for infections with a predominantly sexual mode of transmission|Encounter for screening for infections with a predominantly sexual mode of transmission +C2910578|T033|AB|Z11.4|ICD10CM|Encounter for screening for human immunodeficiency virus|Encounter for screening for human immunodeficiency virus +C2910578|T033|PT|Z11.4|ICD10CM|Encounter for screening for human immunodeficiency virus [HIV]|Encounter for screening for human immunodeficiency virus [HIV] +C2910579|T033|HT|Z11.5|ICD10CM|Encounter for screening for other viral diseases|Encounter for screening for other viral diseases +C2910579|T033|AB|Z11.5|ICD10CM|Encounter for screening for other viral diseases|Encounter for screening for other viral diseases +C1959639|T033|AB|Z11.51|ICD10CM|Encounter for screening for human papillomavirus (HPV)|Encounter for screening for human papillomavirus (HPV) +C1959639|T033|PT|Z11.51|ICD10CM|Encounter for screening for human papillomavirus (HPV)|Encounter for screening for human papillomavirus (HPV) +C2910579|T033|AB|Z11.59|ICD10CM|Encounter for screening for other viral diseases|Encounter for screening for other viral diseases +C2910579|T033|PT|Z11.59|ICD10CM|Encounter for screening for other viral diseases|Encounter for screening for other viral diseases +C2910580|T033|AB|Z11.6|ICD10CM|Encntr screen for oth protozoal diseases and helminthiases|Encntr screen for oth protozoal diseases and helminthiases +C2910580|T033|PT|Z11.6|ICD10CM|Encounter for screening for other protozoal diseases and helminthiases|Encounter for screening for other protozoal diseases and helminthiases +C5141110|T033|AB|Z11.7|ICD10CM|Encounter for testing for latent tuberculosis infection|Encounter for testing for latent tuberculosis infection +C5141110|T033|PT|Z11.7|ICD10CM|Encounter for testing for latent tuberculosis infection|Encounter for testing for latent tuberculosis infection +C2910581|T033|ET|Z11.8|ICD10CM|Encounter for screening for chlamydia|Encounter for screening for chlamydia +C2910582|T033|ET|Z11.8|ICD10CM|Encounter for screening for mycoses|Encounter for screening for mycoses +C2910585|T033|AB|Z11.8|ICD10CM|Encounter for screening for oth infec/parastc diseases|Encounter for screening for oth infec/parastc diseases +C2910585|T033|PT|Z11.8|ICD10CM|Encounter for screening for other infectious and parasitic diseases|Encounter for screening for other infectious and parasitic diseases +C2910583|T033|ET|Z11.8|ICD10CM|Encounter for screening for rickettsial|Encounter for screening for rickettsial +C2910584|T033|ET|Z11.8|ICD10CM|Encounter for screening for spirochetal|Encounter for screening for spirochetal +C0478543|T033|PT|Z11.8|ICD10|Special screening examination for other infectious and parasitic diseases|Special screening examination for other infectious and parasitic diseases +C2910586|T033|AB|Z11.9|ICD10CM|Encounter for screening for infec/parastc diseases, unsp|Encounter for screening for infec/parastc diseases, unsp +C2910586|T033|PT|Z11.9|ICD10CM|Encounter for screening for infectious and parasitic diseases, unspecified|Encounter for screening for infectious and parasitic diseases, unspecified +C0260922|T033|AB|Z12|ICD10CM|Encounter for screening for malignant neoplasms|Encounter for screening for malignant neoplasms +C0260922|T033|HT|Z12|ICD10CM|Encounter for screening for malignant neoplasms|Encounter for screening for malignant neoplasms +C2910587|T033|AB|Z12.0|ICD10CM|Encounter for screening for malignant neoplasm of stomach|Encounter for screening for malignant neoplasm of stomach +C2910587|T033|PT|Z12.0|ICD10CM|Encounter for screening for malignant neoplasm of stomach|Encounter for screening for malignant neoplasm of stomach +C2910589|T033|AB|Z12.1|ICD10CM|Encntr screen for malignant neoplasm of intestinal tract|Encntr screen for malignant neoplasm of intestinal tract +C2910589|T033|HT|Z12.1|ICD10CM|Encounter for screening for malignant neoplasm of intestinal tract|Encounter for screening for malignant neoplasm of intestinal tract +C2910589|T033|AB|Z12.10|ICD10CM|Encntr screen for malignant neoplasm of intest tract, unsp|Encntr screen for malignant neoplasm of intest tract, unsp +C2910589|T033|PT|Z12.10|ICD10CM|Encounter for screening for malignant neoplasm of intestinal tract, unspecified|Encounter for screening for malignant neoplasm of intestinal tract, unspecified +C2977628|T033|ET|Z12.11|ICD10CM|Encounter for screening colonoscopy NOS|Encounter for screening colonoscopy NOS +C0878742|T033|AB|Z12.11|ICD10CM|Encounter for screening for malignant neoplasm of colon|Encounter for screening for malignant neoplasm of colon +C0878742|T033|PT|Z12.11|ICD10CM|Encounter for screening for malignant neoplasm of colon|Encounter for screening for malignant neoplasm of colon +C0260917|T033|AB|Z12.12|ICD10CM|Encounter for screening for malignant neoplasm of rectum|Encounter for screening for malignant neoplasm of rectum +C0260917|T033|PT|Z12.12|ICD10CM|Encounter for screening for malignant neoplasm of rectum|Encounter for screening for malignant neoplasm of rectum +C2910590|T033|AB|Z12.13|ICD10CM|Encntr screen for malignant neoplasm of small intestine|Encntr screen for malignant neoplasm of small intestine +C2910590|T033|PT|Z12.13|ICD10CM|Encounter for screening for malignant neoplasm of small intestine|Encounter for screening for malignant neoplasm of small intestine +C0481873|T033|AB|Z12.2|ICD10CM|Encntr screen for malignant neoplasm of respiratory organs|Encntr screen for malignant neoplasm of respiratory organs +C0481873|T033|PT|Z12.2|ICD10CM|Encounter for screening for malignant neoplasm of respiratory organs|Encounter for screening for malignant neoplasm of respiratory organs +C2910592|T033|AB|Z12.3|ICD10CM|Encounter for screening for malignant neoplasm of breast|Encounter for screening for malignant neoplasm of breast +C2910592|T033|HT|Z12.3|ICD10CM|Encounter for screening for malignant neoplasm of breast|Encounter for screening for malignant neoplasm of breast +C0496586|T033|PT|Z12.3|ICD10|Special screening examination for neoplasm of breast|Special screening examination for neoplasm of breast +C2910593|T033|AB|Z12.31|ICD10CM|Encntr screen mammogram for malignant neoplasm of breast|Encntr screen mammogram for malignant neoplasm of breast +C2910593|T033|PT|Z12.31|ICD10CM|Encounter for screening mammogram for malignant neoplasm of breast|Encounter for screening mammogram for malignant neoplasm of breast +C2910594|T033|AB|Z12.39|ICD10CM|Encounter for oth screening for malignant neoplasm of breast|Encounter for oth screening for malignant neoplasm of breast +C2910594|T033|PT|Z12.39|ICD10CM|Encounter for other screening for malignant neoplasm of breast|Encounter for other screening for malignant neoplasm of breast +C0260914|T033|PT|Z12.4|ICD10CM|Encounter for screening for malignant neoplasm of cervix|Encounter for screening for malignant neoplasm of cervix +C0260914|T033|AB|Z12.4|ICD10CM|Encounter for screening for malignant neoplasm of cervix|Encounter for screening for malignant neoplasm of cervix +C2910595|T033|ET|Z12.4|ICD10CM|Encounter for screening pap smear for malignant neoplasm of cervix|Encounter for screening pap smear for malignant neoplasm of cervix +C0496587|T033|PT|Z12.4|ICD10|Special screening examination for neoplasm of cervix|Special screening examination for neoplasm of cervix +C0699916|T033|AB|Z12.5|ICD10CM|Encounter for screening for malignant neoplasm of prostate|Encounter for screening for malignant neoplasm of prostate +C0699916|T033|PT|Z12.5|ICD10CM|Encounter for screening for malignant neoplasm of prostate|Encounter for screening for malignant neoplasm of prostate +C0476723|T033|PT|Z12.5|ICD10|Special screening examination for neoplasm of prostate|Special screening examination for neoplasm of prostate +C0260915|T033|PT|Z12.6|ICD10CM|Encounter for screening for malignant neoplasm of bladder|Encounter for screening for malignant neoplasm of bladder +C0260915|T033|AB|Z12.6|ICD10CM|Encounter for screening for malignant neoplasm of bladder|Encounter for screening for malignant neoplasm of bladder +C0496588|T033|PT|Z12.6|ICD10|Special screening examination for neoplasm of bladder|Special screening examination for neoplasm of bladder +C2910597|T033|AB|Z12.7|ICD10CM|Encntr screen for malignant neoplasm of genitourinary organs|Encntr screen for malignant neoplasm of genitourinary organs +C2910597|T033|HT|Z12.7|ICD10CM|Encounter for screening for malignant neoplasm of other genitourinary organs|Encounter for screening for malignant neoplasm of other genitourinary organs +C2910598|T033|AB|Z12.71|ICD10CM|Encounter for screening for malignant neoplasm of testis|Encounter for screening for malignant neoplasm of testis +C2910598|T033|PT|Z12.71|ICD10CM|Encounter for screening for malignant neoplasm of testis|Encounter for screening for malignant neoplasm of testis +C2910599|T033|AB|Z12.72|ICD10CM|Encounter for screening for malignant neoplasm of vagina|Encounter for screening for malignant neoplasm of vagina +C2910599|T033|PT|Z12.72|ICD10CM|Encounter for screening for malignant neoplasm of vagina|Encounter for screening for malignant neoplasm of vagina +C2977629|T033|ET|Z12.72|ICD10CM|Vaginal pap smear status-post hysterectomy for non-malignant condition|Vaginal pap smear status-post hysterectomy for non-malignant condition +C2910597|T033|AB|Z12.79|ICD10CM|Encntr screen for malignant neoplasm of genitourinary organs|Encntr screen for malignant neoplasm of genitourinary organs +C2910597|T033|PT|Z12.79|ICD10CM|Encounter for screening for malignant neoplasm of other genitourinary organs|Encounter for screening for malignant neoplasm of other genitourinary organs +C2910601|T033|AB|Z12.8|ICD10CM|Encounter for screening for malignant neoplasm of oth sites|Encounter for screening for malignant neoplasm of oth sites +C2910601|T033|HT|Z12.8|ICD10CM|Encounter for screening for malignant neoplasm of other sites|Encounter for screening for malignant neoplasm of other sites +C2910602|T033|AB|Z12.81|ICD10CM|Encntr screen for malignant neoplasm of oral cavity|Encntr screen for malignant neoplasm of oral cavity +C2910602|T033|PT|Z12.81|ICD10CM|Encounter for screening for malignant neoplasm of oral cavity|Encounter for screening for malignant neoplasm of oral cavity +C2910603|T033|AB|Z12.82|ICD10CM|Encntr screen for malignant neoplasm of nervous system|Encntr screen for malignant neoplasm of nervous system +C2910603|T033|PT|Z12.82|ICD10CM|Encounter for screening for malignant neoplasm of nervous system|Encounter for screening for malignant neoplasm of nervous system +C0260919|T033|PT|Z12.83|ICD10CM|Encounter for screening for malignant neoplasm of skin|Encounter for screening for malignant neoplasm of skin +C0260919|T033|AB|Z12.83|ICD10CM|Encounter for screening for malignant neoplasm of skin|Encounter for screening for malignant neoplasm of skin +C2910601|T033|AB|Z12.89|ICD10CM|Encounter for screening for malignant neoplasm of oth sites|Encounter for screening for malignant neoplasm of oth sites +C2910601|T033|PT|Z12.89|ICD10CM|Encounter for screening for malignant neoplasm of other sites|Encounter for screening for malignant neoplasm of other sites +C2910604|T033|AB|Z12.9|ICD10CM|Encounter for screening for malignant neoplasm, site unsp|Encounter for screening for malignant neoplasm, site unsp +C2910604|T033|PT|Z12.9|ICD10CM|Encounter for screening for malignant neoplasm, site unspecified|Encounter for screening for malignant neoplasm, site unspecified +C2910605|T033|AB|Z13|ICD10CM|Encounter for screening for other diseases and disorders|Encounter for screening for other diseases and disorders +C2910605|T033|HT|Z13|ICD10CM|Encounter for screening for other diseases and disorders|Encounter for screening for other diseases and disorders +C2910606|T033|AB|Z13.0|ICD10CM|Encntr screen for dis of the bld/bld-form org/immun mechnsm|Encntr screen for dis of the bld/bld-form org/immun mechnsm +C0260925|T033|PT|Z13.1|ICD10CM|Encounter for screening for diabetes mellitus|Encounter for screening for diabetes mellitus +C0260925|T033|AB|Z13.1|ICD10CM|Encounter for screening for diabetes mellitus|Encounter for screening for diabetes mellitus +C0701147|T033|PT|Z13.1|ICD10|Special screening examination for diabetes mellitus|Special screening examination for diabetes mellitus +C2910608|T033|AB|Z13.2|ICD10CM|Encntr screen for nutritional, metabolic and oth endo disord|Encntr screen for nutritional, metabolic and oth endo disord +C2910608|T033|HT|Z13.2|ICD10CM|Encounter for screening for nutritional, metabolic and other endocrine disorders|Encounter for screening for nutritional, metabolic and other endocrine disorders +C0481879|T033|PT|Z13.2|ICD10|Special screening examination for nutritional disorders|Special screening examination for nutritional disorders +C2910609|T033|AB|Z13.21|ICD10CM|Encounter for screening for nutritional disorder|Encounter for screening for nutritional disorder +C2910609|T033|PT|Z13.21|ICD10CM|Encounter for screening for nutritional disorder|Encounter for screening for nutritional disorder +C2910610|T033|AB|Z13.22|ICD10CM|Encounter for screening for metabolic disorder|Encounter for screening for metabolic disorder +C2910610|T033|HT|Z13.22|ICD10CM|Encounter for screening for metabolic disorder|Encounter for screening for metabolic disorder +C2910611|T033|ET|Z13.220|ICD10CM|Encounter for screening for cholesterol level|Encounter for screening for cholesterol level +C2910612|T033|ET|Z13.220|ICD10CM|Encounter for screening for hypercholesterolemia|Encounter for screening for hypercholesterolemia +C2910613|T033|ET|Z13.220|ICD10CM|Encounter for screening for hyperlipidemia|Encounter for screening for hyperlipidemia +C2910614|T033|AB|Z13.220|ICD10CM|Encounter for screening for lipoid disorders|Encounter for screening for lipoid disorders +C2910614|T033|PT|Z13.220|ICD10CM|Encounter for screening for lipoid disorders|Encounter for screening for lipoid disorders +C2910615|T033|AB|Z13.228|ICD10CM|Encounter for screening for other metabolic disorders|Encounter for screening for other metabolic disorders +C2910615|T033|PT|Z13.228|ICD10CM|Encounter for screening for other metabolic disorders|Encounter for screening for other metabolic disorders +C2910616|T033|AB|Z13.29|ICD10CM|Encounter for screening for oth suspected endocrine disorder|Encounter for screening for oth suspected endocrine disorder +C2910616|T033|PT|Z13.29|ICD10CM|Encounter for screening for other suspected endocrine disorder|Encounter for screening for other suspected endocrine disorder +C4718830|T033|AB|Z13.3|ICD10CM|Encntr screen exam for mental health and behavrl disorders|Encntr screen exam for mental health and behavrl disorders +C4718830|T033|HT|Z13.3|ICD10CM|Encounter for screening examination for mental health and behavioral disorders|Encounter for screening examination for mental health and behavioral disorders +C0496594|T033|PT|Z13.3|ICD10AE|Special screening examination for mental and behavioral disorders|Special screening examination for mental and behavioral disorders +C0496594|T033|PT|Z13.3|ICD10|Special screening examination for mental and behavioural disorders|Special screening examination for mental and behavioural disorders +C4553594|T033|AB|Z13.30|ICD10CM|Encntr screen exam for mental hlth and behavrl disord, unsp|Encntr screen exam for mental hlth and behavrl disord, unsp +C4553594|T033|PT|Z13.30|ICD10CM|Encounter for screening examination for mental health and behavioral disorders, unspecified|Encounter for screening examination for mental health and behavioral disorders, unspecified +C4553595|T033|AB|Z13.31|ICD10CM|Encounter for screening for depression|Encounter for screening for depression +C4553595|T033|PT|Z13.31|ICD10CM|Encounter for screening for depression|Encounter for screening for depression +C4718832|T033|ET|Z13.31|ICD10CM|Encounter for screening for depression for child or adolescent|Encounter for screening for depression for child or adolescent +C4718831|T033|ET|Z13.31|ICD10CM|Encounter for screening for depression, adult|Encounter for screening for depression, adult +C4553596|T033|AB|Z13.32|ICD10CM|Encounter for screening for maternal depression|Encounter for screening for maternal depression +C4553596|T033|PT|Z13.32|ICD10CM|Encounter for screening for maternal depression|Encounter for screening for maternal depression +C4718833|T033|ET|Z13.32|ICD10CM|Encounter for screening for perinatal depression|Encounter for screening for perinatal depression +C4553597|T033|AB|Z13.39|ICD10CM|Encntr screen exam for other mental hlth and behavrl disord|Encntr screen exam for other mental hlth and behavrl disord +C4553597|T033|PT|Z13.39|ICD10CM|Encounter for screening examination for other mental health and behavioral disorders|Encounter for screening examination for other mental health and behavioral disorders +C4718834|T033|ET|Z13.39|ICD10CM|Encounter for screening for alcoholism|Encounter for screening for alcoholism +C4718835|T033|ET|Z13.39|ICD10CM|Encounter for screening for intellectual disabilities|Encounter for screening for intellectual disabilities +C2910618|T033|AB|Z13.4|ICD10CM|Encntr screen for certain developmental disorders in chldhd|Encntr screen for certain developmental disorders in chldhd +C4718836|T033|ET|Z13.4|ICD10CM|Encounter for development testing of infant or child|Encounter for development testing of infant or child +C2910618|T033|HT|Z13.4|ICD10CM|Encounter for screening for certain developmental disorders in childhood|Encounter for screening for certain developmental disorders in childhood +C2910617|T033|ET|Z13.4|ICD10CM|Encounter for screening for developmental handicaps in early childhood|Encounter for screening for developmental handicaps in early childhood +C4553598|T033|AB|Z13.40|ICD10CM|Encounter for screening for unspecified developmental delays|Encounter for screening for unspecified developmental delays +C4553598|T033|PT|Z13.40|ICD10CM|Encounter for screening for unspecified developmental delays|Encounter for screening for unspecified developmental delays +C4553599|T033|AB|Z13.41|ICD10CM|Encounter for autism screening|Encounter for autism screening +C4553599|T033|PT|Z13.41|ICD10CM|Encounter for autism screening|Encounter for autism screening +C4553600|T033|AB|Z13.42|ICD10CM|Encntr screen for global developmental delays (milestones)|Encntr screen for global developmental delays (milestones) +C2910617|T033|ET|Z13.42|ICD10CM|Encounter for screening for developmental handicaps in early childhood|Encounter for screening for developmental handicaps in early childhood +C4553600|T033|PT|Z13.42|ICD10CM|Encounter for screening for global developmental delays (milestones)|Encounter for screening for global developmental delays (milestones) +C4553609|T033|AB|Z13.49|ICD10CM|Encounter for screening for other developmental delays|Encounter for screening for other developmental delays +C4553609|T033|PT|Z13.49|ICD10CM|Encounter for screening for other developmental delays|Encounter for screening for other developmental delays +C2910619|T033|AB|Z13.5|ICD10CM|Encounter for screening for eye and ear disorders|Encounter for screening for eye and ear disorders +C2910619|T033|PT|Z13.5|ICD10CM|Encounter for screening for eye and ear disorders|Encounter for screening for eye and ear disorders +C2910620|T033|AB|Z13.6|ICD10CM|Encounter for screening for cardiovascular disorders|Encounter for screening for cardiovascular disorders +C2910620|T033|PT|Z13.6|ICD10CM|Encounter for screening for cardiovascular disorders|Encounter for screening for cardiovascular disorders +C2910621|T033|AB|Z13.7|ICD10CM|Encntr screen for genetic and chromosomal anomalies|Encntr screen for genetic and chromosomal anomalies +C2910621|T033|HT|Z13.7|ICD10CM|Encounter for screening for genetic and chromosomal anomalies|Encounter for screening for genetic and chromosomal anomalies +C2910622|T033|AB|Z13.71|ICD10CM|Encntr for nonprocreat screen for genetic dis carrier status|Encntr for nonprocreat screen for genetic dis carrier status +C2910622|T033|PT|Z13.71|ICD10CM|Encounter for nonprocreative screening for genetic disease carrier status|Encounter for nonprocreative screening for genetic disease carrier status +C2910623|T033|AB|Z13.79|ICD10CM|Encntr for oth screening for genetic and chromsoml anomalies|Encntr for oth screening for genetic and chromsoml anomalies +C2910623|T033|PT|Z13.79|ICD10CM|Encounter for other screening for genetic and chromosomal anomalies|Encounter for other screening for genetic and chromosomal anomalies +C2910624|T033|AB|Z13.8|ICD10CM|Encounter for screening for oth diseases and disorders|Encounter for screening for oth diseases and disorders +C2910624|T033|HT|Z13.8|ICD10CM|Encounter for screening for other specified diseases and disorders|Encounter for screening for other specified diseases and disorders +C2910625|T033|AB|Z13.81|ICD10CM|Encounter for screening for digestive system disorders|Encounter for screening for digestive system disorders +C2910625|T033|HT|Z13.81|ICD10CM|Encounter for screening for digestive system disorders|Encounter for screening for digestive system disorders +C2910626|T033|AB|Z13.810|ICD10CM|Encounter for screening for upper gastrointestinal disorder|Encounter for screening for upper gastrointestinal disorder +C2910626|T033|PT|Z13.810|ICD10CM|Encounter for screening for upper gastrointestinal disorder|Encounter for screening for upper gastrointestinal disorder +C2910627|T033|AB|Z13.811|ICD10CM|Encounter for screening for lower gastrointestinal disorder|Encounter for screening for lower gastrointestinal disorder +C2910627|T033|PT|Z13.811|ICD10CM|Encounter for screening for lower gastrointestinal disorder|Encounter for screening for lower gastrointestinal disorder +C2910628|T033|AB|Z13.818|ICD10CM|Encounter for screening for other digestive system disorders|Encounter for screening for other digestive system disorders +C2910628|T033|PT|Z13.818|ICD10CM|Encounter for screening for other digestive system disorders|Encounter for screening for other digestive system disorders +C2910629|T033|AB|Z13.82|ICD10CM|Encounter for screening for musculoskeletal disorder|Encounter for screening for musculoskeletal disorder +C2910629|T033|HT|Z13.82|ICD10CM|Encounter for screening for musculoskeletal disorder|Encounter for screening for musculoskeletal disorder +C2910630|T033|PT|Z13.820|ICD10CM|Encounter for screening for osteoporosis|Encounter for screening for osteoporosis +C2910630|T033|AB|Z13.820|ICD10CM|Encounter for screening for osteoporosis|Encounter for screening for osteoporosis +C2910631|T033|AB|Z13.828|ICD10CM|Encounter for screening for other musculoskeletal disorder|Encounter for screening for other musculoskeletal disorder +C2910631|T033|PT|Z13.828|ICD10CM|Encounter for screening for other musculoskeletal disorder|Encounter for screening for other musculoskeletal disorder +C2910632|T033|AB|Z13.83|ICD10CM|Encounter for screening for respiratory disorder NEC|Encounter for screening for respiratory disorder NEC +C2910632|T033|PT|Z13.83|ICD10CM|Encounter for screening for respiratory disorder NEC|Encounter for screening for respiratory disorder NEC +C2910633|T033|AB|Z13.84|ICD10CM|Encounter for screening for dental disorders|Encounter for screening for dental disorders +C2910633|T033|PT|Z13.84|ICD10CM|Encounter for screening for dental disorders|Encounter for screening for dental disorders +C2910634|T033|AB|Z13.85|ICD10CM|Encounter for screening for nervous system disorders|Encounter for screening for nervous system disorders +C2910634|T033|HT|Z13.85|ICD10CM|Encounter for screening for nervous system disorders|Encounter for screening for nervous system disorders +C2921402|T033|PT|Z13.850|ICD10CM|Encounter for screening for traumatic brain injury|Encounter for screening for traumatic brain injury +C2921402|T033|AB|Z13.850|ICD10CM|Encounter for screening for traumatic brain injury|Encounter for screening for traumatic brain injury +C2910635|T033|AB|Z13.858|ICD10CM|Encounter for screening for other nervous system disorders|Encounter for screening for other nervous system disorders +C2910635|T033|PT|Z13.858|ICD10CM|Encounter for screening for other nervous system disorders|Encounter for screening for other nervous system disorders +C2910636|T033|AB|Z13.88|ICD10CM|Encntr screen for disorder due to exposure to contaminants|Encntr screen for disorder due to exposure to contaminants +C2910636|T033|PT|Z13.88|ICD10CM|Encounter for screening for disorder due to exposure to contaminants|Encounter for screening for disorder due to exposure to contaminants +C2910637|T033|ET|Z13.89|ICD10CM|Encounter for screening for genitourinary disorders|Encounter for screening for genitourinary disorders +C2910638|T033|AB|Z13.89|ICD10CM|Encounter for screening for other disorder|Encounter for screening for other disorder +C2910638|T033|PT|Z13.89|ICD10CM|Encounter for screening for other disorder|Encounter for screening for other disorder +C2910639|T033|AB|Z13.9|ICD10CM|Encounter for screening, unspecified|Encounter for screening, unspecified +C2910639|T033|PT|Z13.9|ICD10CM|Encounter for screening, unspecified|Encounter for screening, unspecified +C0007294|T033|AB|Z14|ICD10CM|Genetic carrier|Genetic carrier +C0007294|T033|HT|Z14|ICD10CM|Genetic carrier|Genetic carrier +C2910640|T033|HT|Z14-Z15|ICD10CM|Genetic carrier and genetic susceptibility to disease (Z14-Z15)|Genetic carrier and genetic susceptibility to disease (Z14-Z15) +C2919122|T033|AB|Z14.0|ICD10CM|Hemophilia A carrier|Hemophilia A carrier +C2919122|T033|HT|Z14.0|ICD10CM|Hemophilia A carrier|Hemophilia A carrier +C2911654|T033|AB|Z14.01|ICD10CM|Asymptomatic hemophilia A carrier|Asymptomatic hemophilia A carrier +C2911654|T033|PT|Z14.01|ICD10CM|Asymptomatic hemophilia A carrier|Asymptomatic hemophilia A carrier +C2911655|T033|AB|Z14.02|ICD10CM|Symptomatic hemophilia A carrier|Symptomatic hemophilia A carrier +C2911655|T033|PT|Z14.02|ICD10CM|Symptomatic hemophilia A carrier|Symptomatic hemophilia A carrier +C2911653|T033|AB|Z14.1|ICD10CM|Cystic fibrosis carrier|Cystic fibrosis carrier +C2911653|T033|PT|Z14.1|ICD10CM|Cystic fibrosis carrier|Cystic fibrosis carrier +C2910641|T033|AB|Z14.8|ICD10CM|Genetic carrier of other disease|Genetic carrier of other disease +C2910641|T033|PT|Z14.8|ICD10CM|Genetic carrier of other disease|Genetic carrier of other disease +C4290506|T033|ET|Z15|ICD10CM|confirmed abnormal gene|confirmed abnormal gene +C2919134|T033|AB|Z15|ICD10CM|Genetic susceptibility to disease|Genetic susceptibility to disease +C2919134|T033|HT|Z15|ICD10CM|Genetic susceptibility to disease|Genetic susceptibility to disease +C1455995|T033|AB|Z15.0|ICD10CM|Genetic susceptibility to malignant neoplasm|Genetic susceptibility to malignant neoplasm +C1455995|T033|HT|Z15.0|ICD10CM|Genetic susceptibility to malignant neoplasm|Genetic susceptibility to malignant neoplasm +C1455990|T033|AB|Z15.01|ICD10CM|Genetic susceptibility to malignant neoplasm of breast|Genetic susceptibility to malignant neoplasm of breast +C1455990|T033|PT|Z15.01|ICD10CM|Genetic susceptibility to malignant neoplasm of breast|Genetic susceptibility to malignant neoplasm of breast +C1455991|T033|AB|Z15.02|ICD10CM|Genetic susceptibility to malignant neoplasm of ovary|Genetic susceptibility to malignant neoplasm of ovary +C1455991|T033|PT|Z15.02|ICD10CM|Genetic susceptibility to malignant neoplasm of ovary|Genetic susceptibility to malignant neoplasm of ovary +C1455992|T033|AB|Z15.03|ICD10CM|Genetic susceptibility to malignant neoplasm of prostate|Genetic susceptibility to malignant neoplasm of prostate +C1455992|T033|PT|Z15.03|ICD10CM|Genetic susceptibility to malignant neoplasm of prostate|Genetic susceptibility to malignant neoplasm of prostate +C1455993|T033|AB|Z15.04|ICD10CM|Genetic susceptibility to malignant neoplasm of endometrium|Genetic susceptibility to malignant neoplasm of endometrium +C1455993|T033|PT|Z15.04|ICD10CM|Genetic susceptibility to malignant neoplasm of endometrium|Genetic susceptibility to malignant neoplasm of endometrium +C1455994|T033|AB|Z15.09|ICD10CM|Genetic susceptibility to other malignant neoplasm|Genetic susceptibility to other malignant neoplasm +C1455994|T033|PT|Z15.09|ICD10CM|Genetic susceptibility to other malignant neoplasm|Genetic susceptibility to other malignant neoplasm +C1455996|T033|HT|Z15.8|ICD10CM|Genetic susceptibility to other disease|Genetic susceptibility to other disease +C1455996|T033|AB|Z15.8|ICD10CM|Genetic susceptibility to other disease|Genetic susceptibility to other disease +C1955618|T033|AB|Z15.81|ICD10CM|Genetic susceptibility to multiple endocrine neoplasia [MEN]|Genetic susceptibility to multiple endocrine neoplasia [MEN] +C1955618|T033|PT|Z15.81|ICD10CM|Genetic susceptibility to multiple endocrine neoplasia [MEN]|Genetic susceptibility to multiple endocrine neoplasia [MEN] +C1455996|T033|AB|Z15.89|ICD10CM|Genetic susceptibility to other disease|Genetic susceptibility to other disease +C1455996|T033|PT|Z15.89|ICD10CM|Genetic susceptibility to other disease|Genetic susceptibility to other disease +C3265903|T033|AB|Z16|ICD10CM|Resistance to antimicrobial drugs|Resistance to antimicrobial drugs +C3265903|T033|HT|Z16|ICD10CM|Resistance to antimicrobial drugs|Resistance to antimicrobial drugs +C3264056|T033|HT|Z16-Z16|ICD10CM|Resistance to antimicrobial drugs (Z16)|Resistance to antimicrobial drugs (Z16) +C3265905|T033|AB|Z16.1|ICD10CM|Resistance to beta lactam antibiotics|Resistance to beta lactam antibiotics +C3265905|T033|HT|Z16.1|ICD10CM|Resistance to beta lactam antibiotics|Resistance to beta lactam antibiotics +C3264057|T033|AB|Z16.10|ICD10CM|Resistance to unspecified beta lactam antibiotics|Resistance to unspecified beta lactam antibiotics +C3264057|T033|PT|Z16.10|ICD10CM|Resistance to unspecified beta lactam antibiotics|Resistance to unspecified beta lactam antibiotics +C3264058|T033|ET|Z16.11|ICD10CM|Resistance to amoxicillin|Resistance to amoxicillin +C0002682|T033|ET|Z16.11|ICD10CM|Resistance to ampicillin|Resistance to ampicillin +C3265907|T033|AB|Z16.11|ICD10CM|Resistance to penicillins|Resistance to penicillins +C3265907|T033|PT|Z16.11|ICD10CM|Resistance to penicillins|Resistance to penicillins +C3264059|T033|AB|Z16.12|ICD10CM|Extended spectrum beta lactamase (ESBL) resistance|Extended spectrum beta lactamase (ESBL) resistance +C3264059|T033|PT|Z16.12|ICD10CM|Extended spectrum beta lactamase (ESBL) resistance|Extended spectrum beta lactamase (ESBL) resistance +C0242771|T033|ET|Z16.19|ICD10CM|Resistance to cephalosporins|Resistance to cephalosporins +C3264060|T033|AB|Z16.19|ICD10CM|Resistance to other specified beta lactam antibiotics|Resistance to other specified beta lactam antibiotics +C3264060|T033|PT|Z16.19|ICD10CM|Resistance to other specified beta lactam antibiotics|Resistance to other specified beta lactam antibiotics +C3264061|T033|AB|Z16.2|ICD10CM|Resistance to other antibiotics|Resistance to other antibiotics +C3264061|T033|HT|Z16.2|ICD10CM|Resistance to other antibiotics|Resistance to other antibiotics +C4759684|T033|ET|Z16.20|ICD10CM|Resistance to antibiotics NOS|Resistance to antibiotics NOS +C3264062|T033|AB|Z16.20|ICD10CM|Resistance to unspecified antibiotic|Resistance to unspecified antibiotic +C3264062|T033|PT|Z16.20|ICD10CM|Resistance to unspecified antibiotic|Resistance to unspecified antibiotic +C3265908|T033|AB|Z16.21|ICD10CM|Resistance to vancomycin|Resistance to vancomycin +C3265908|T033|PT|Z16.21|ICD10CM|Resistance to vancomycin|Resistance to vancomycin +C3264063|T033|AB|Z16.22|ICD10CM|Resistance to vancomycin related antibiotics|Resistance to vancomycin related antibiotics +C3264063|T033|PT|Z16.22|ICD10CM|Resistance to vancomycin related antibiotics|Resistance to vancomycin related antibiotics +C3264064|T033|AB|Z16.23|ICD10CM|Resistance to quinolones and fluoroquinolones|Resistance to quinolones and fluoroquinolones +C3264064|T033|PT|Z16.23|ICD10CM|Resistance to quinolones and fluoroquinolones|Resistance to quinolones and fluoroquinolones +C3264065|T033|AB|Z16.24|ICD10CM|Resistance to multiple antibiotics|Resistance to multiple antibiotics +C3264065|T033|PT|Z16.24|ICD10CM|Resistance to multiple antibiotics|Resistance to multiple antibiotics +C3264066|T033|ET|Z16.29|ICD10CM|Resistance to aminoglycosides|Resistance to aminoglycosides +C3264067|T033|ET|Z16.29|ICD10CM|Resistance to macrolides|Resistance to macrolides +C3264069|T033|AB|Z16.29|ICD10CM|Resistance to other single specified antibiotic|Resistance to other single specified antibiotic +C3264069|T033|PT|Z16.29|ICD10CM|Resistance to other single specified antibiotic|Resistance to other single specified antibiotic +C3264068|T033|ET|Z16.29|ICD10CM|Resistance to sulfonamides|Resistance to sulfonamides +C0039649|T033|ET|Z16.29|ICD10CM|Resistance to tetracyclines|Resistance to tetracyclines +C3264070|T033|AB|Z16.3|ICD10CM|Resistance to other antimicrobial drugs|Resistance to other antimicrobial drugs +C3264070|T033|HT|Z16.3|ICD10CM|Resistance to other antimicrobial drugs|Resistance to other antimicrobial drugs +C3264071|T033|AB|Z16.30|ICD10CM|Resistance to unspecified antimicrobial drugs|Resistance to unspecified antimicrobial drugs +C3264071|T033|PT|Z16.30|ICD10CM|Resistance to unspecified antimicrobial drugs|Resistance to unspecified antimicrobial drugs +C3264073|T033|AB|Z16.31|ICD10CM|Resistance to antiparasitic drug(s)|Resistance to antiparasitic drug(s) +C3264073|T033|PT|Z16.31|ICD10CM|Resistance to antiparasitic drug(s)|Resistance to antiparasitic drug(s) +C3264072|T033|ET|Z16.31|ICD10CM|Resistance to quinine and related compounds|Resistance to quinine and related compounds +C3265901|T033|AB|Z16.32|ICD10CM|Resistance to antifungal drug(s)|Resistance to antifungal drug(s) +C3265901|T033|PT|Z16.32|ICD10CM|Resistance to antifungal drug(s)|Resistance to antifungal drug(s) +C3265904|T033|AB|Z16.33|ICD10CM|Resistance to antiviral drug(s)|Resistance to antiviral drug(s) +C3265904|T033|PT|Z16.33|ICD10CM|Resistance to antiviral drug(s)|Resistance to antiviral drug(s) +C3264075|T033|AB|Z16.34|ICD10CM|Resistance to antimycobacterial drug(s)|Resistance to antimycobacterial drug(s) +C3264075|T033|HT|Z16.34|ICD10CM|Resistance to antimycobacterial drug(s)|Resistance to antimycobacterial drug(s) +C3264074|T033|ET|Z16.34|ICD10CM|Resistance to tuberculostatics|Resistance to tuberculostatics +C3264075|T033|ET|Z16.341|ICD10CM|Resistance to antimycobacterial drug NOS|Resistance to antimycobacterial drug NOS +C3264076|T033|AB|Z16.341|ICD10CM|Resistance to single antimycobacterial drug|Resistance to single antimycobacterial drug +C3264076|T033|PT|Z16.341|ICD10CM|Resistance to single antimycobacterial drug|Resistance to single antimycobacterial drug +C3264077|T033|AB|Z16.342|ICD10CM|Resistance to multiple antimycobacterial drugs|Resistance to multiple antimycobacterial drugs +C3264077|T033|PT|Z16.342|ICD10CM|Resistance to multiple antimycobacterial drugs|Resistance to multiple antimycobacterial drugs +C3264078|T033|AB|Z16.35|ICD10CM|Resistance to multiple antimicrobial drugs|Resistance to multiple antimicrobial drugs +C3264078|T033|PT|Z16.35|ICD10CM|Resistance to multiple antimicrobial drugs|Resistance to multiple antimicrobial drugs +C3264079|T033|AB|Z16.39|ICD10CM|Resistance to other specified antimicrobial drug|Resistance to other specified antimicrobial drug +C3264079|T033|PT|Z16.39|ICD10CM|Resistance to other specified antimicrobial drug|Resistance to other specified antimicrobial drug +C2919114|T033|AB|Z17|ICD10CM|Estrogen receptor status|Estrogen receptor status +C2919114|T033|HT|Z17|ICD10CM|Estrogen receptor status|Estrogen receptor status +C2919114|T033|HT|Z17-Z17|ICD10CM|Estrogen receptor status (Z17)|Estrogen receptor status (Z17) +C1719706|T033|AB|Z17.0|ICD10CM|Estrogen receptor positive status [ER+]|Estrogen receptor positive status [ER+] +C1719706|T033|PT|Z17.0|ICD10CM|Estrogen receptor positive status [ER+]|Estrogen receptor positive status [ER+] +C1719707|T033|AB|Z17.1|ICD10CM|Estrogen receptor negative status [ER-]|Estrogen receptor negative status [ER-] +C1719707|T033|PT|Z17.1|ICD10CM|Estrogen receptor negative status [ER-]|Estrogen receptor negative status [ER-] +C2921319|T033|ET|Z18|ICD10CM|embedded fragment (status)|embedded fragment (status) +C2921320|T033|ET|Z18|ICD10CM|embedded splinter (status)|embedded splinter (status) +C2977631|T033|AB|Z18|ICD10CM|Retained foreign body fragments|Retained foreign body fragments +C2977631|T033|HT|Z18|ICD10CM|Retained foreign body fragments|Retained foreign body fragments +C2921321|T033|ET|Z18|ICD10CM|retained foreign body status|retained foreign body status +C2977631|T033|HT|Z18-Z18|ICD10CM|Retained foreign body fragments (Z18)|Retained foreign body fragments (Z18) +C2921322|T033|AB|Z18.0|ICD10CM|Retained radioactive fragments|Retained radioactive fragments +C2921322|T033|HT|Z18.0|ICD10CM|Retained radioactive fragments|Retained radioactive fragments +C2921323|T033|AB|Z18.01|ICD10CM|Retained depleted uranium fragments|Retained depleted uranium fragments +C2921323|T033|PT|Z18.01|ICD10CM|Retained depleted uranium fragments|Retained depleted uranium fragments +C2921324|T033|ET|Z18.09|ICD10CM|Other retained depleted isotope fragments|Other retained depleted isotope fragments +C2921325|T033|AB|Z18.09|ICD10CM|Other retained radioactive fragments|Other retained radioactive fragments +C2921325|T033|PT|Z18.09|ICD10CM|Other retained radioactive fragments|Other retained radioactive fragments +C2921326|T033|ET|Z18.09|ICD10CM|Retained nontherapeutic radioactive fragments|Retained nontherapeutic radioactive fragments +C2921327|T033|AB|Z18.1|ICD10CM|Retained metal fragments|Retained metal fragments +C2921327|T033|HT|Z18.1|ICD10CM|Retained metal fragments|Retained metal fragments +C2921327|T033|ET|Z18.10|ICD10CM|Retained metal fragment NOS|Retained metal fragment NOS +C2921327|T033|AB|Z18.10|ICD10CM|Retained metal fragments, unspecified|Retained metal fragments, unspecified +C2921327|T033|PT|Z18.10|ICD10CM|Retained metal fragments, unspecified|Retained metal fragments, unspecified +C2921328|T033|AB|Z18.11|ICD10CM|Retained magnetic metal fragments|Retained magnetic metal fragments +C2921328|T033|PT|Z18.11|ICD10CM|Retained magnetic metal fragments|Retained magnetic metal fragments +C2921329|T033|AB|Z18.12|ICD10CM|Retained nonmagnetic metal fragments|Retained nonmagnetic metal fragments +C2921329|T033|PT|Z18.12|ICD10CM|Retained nonmagnetic metal fragments|Retained nonmagnetic metal fragments +C2977632|T033|ET|Z18.2|ICD10CM|Acrylics fragments|Acrylics fragments +C2977633|T033|ET|Z18.2|ICD10CM|Diethylhexyl phthalates fragments|Diethylhexyl phthalates fragments +C2977634|T033|ET|Z18.2|ICD10CM|Isocyanate fragments|Isocyanate fragments +C2921333|T033|AB|Z18.2|ICD10CM|Retained plastic fragments|Retained plastic fragments +C2921333|T033|PT|Z18.2|ICD10CM|Retained plastic fragments|Retained plastic fragments +C2921334|T033|AB|Z18.3|ICD10CM|Retained organic fragments|Retained organic fragments +C2921334|T033|HT|Z18.3|ICD10CM|Retained organic fragments|Retained organic fragments +C2921335|T033|AB|Z18.31|ICD10CM|Retained animal quills or spines|Retained animal quills or spines +C2921335|T033|PT|Z18.31|ICD10CM|Retained animal quills or spines|Retained animal quills or spines +C4721538|T033|PT|Z18.32|ICD10CM|Retained tooth|Retained tooth +C4721538|T033|AB|Z18.32|ICD10CM|Retained tooth|Retained tooth +C2921337|T033|AB|Z18.33|ICD10CM|Retained wood fragments|Retained wood fragments +C2921337|T033|PT|Z18.33|ICD10CM|Retained wood fragments|Retained wood fragments +C2921338|T033|AB|Z18.39|ICD10CM|Other retained organic fragments|Other retained organic fragments +C2921338|T033|PT|Z18.39|ICD10CM|Other retained organic fragments|Other retained organic fragments +C2921339|T033|HT|Z18.8|ICD10CM|Other specified retained foreign body|Other specified retained foreign body +C2921339|T033|AB|Z18.8|ICD10CM|Other specified retained foreign body|Other specified retained foreign body +C2921340|T033|AB|Z18.81|ICD10CM|Retained glass fragments|Retained glass fragments +C2921340|T033|PT|Z18.81|ICD10CM|Retained glass fragments|Retained glass fragments +C2921341|T033|ET|Z18.83|ICD10CM|Retained concrete or cement fragments|Retained concrete or cement fragments +C2921342|T033|AB|Z18.83|ICD10CM|Retained stone or crystalline fragments|Retained stone or crystalline fragments +C2921342|T033|PT|Z18.83|ICD10CM|Retained stone or crystalline fragments|Retained stone or crystalline fragments +C2977635|T033|AB|Z18.89|ICD10CM|Other specified retained foreign body fragments|Other specified retained foreign body fragments +C2977635|T033|PT|Z18.89|ICD10CM|Other specified retained foreign body fragments|Other specified retained foreign body fragments +C2977636|T033|AB|Z18.9|ICD10CM|Retained foreign body fragments, unspecified material|Retained foreign body fragments, unspecified material +C2977636|T033|PT|Z18.9|ICD10CM|Retained foreign body fragments, unspecified material|Retained foreign body fragments, unspecified material +C4270758|T033|HT|Z19|ICD10CM|Hormone sensitivity malignancy status|Hormone sensitivity malignancy status +C4270758|T033|AB|Z19|ICD10CM|Hormone sensitivity malignancy status|Hormone sensitivity malignancy status +C4270757|T033|HT|Z19-Z19|ICD10CM|Hormone sensitivity malignancy status (Z19)|Hormone sensitivity malignancy status (Z19) +C4270758|T033|AB|Z19.1|ICD10CM|Hormone sensitive malignancy status|Hormone sensitive malignancy status +C4270758|T033|PT|Z19.1|ICD10CM|Hormone sensitive malignancy status|Hormone sensitive malignancy status +C4270759|T033|ET|Z19.2|ICD10CM|Castrate resistant prostate malignancy status|Castrate resistant prostate malignancy status +C4270820|T033|AB|Z19.2|ICD10CM|Hormone resistant malignancy status|Hormone resistant malignancy status +C4270820|T033|PT|Z19.2|ICD10CM|Hormone resistant malignancy status|Hormone resistant malignancy status +C2910643|T033|AB|Z20|ICD10CM|Contact w and (suspected) exposure to communicable diseases|Contact w and (suspected) exposure to communicable diseases +C2910643|T033|HT|Z20|ICD10CM|Contact with and (suspected) exposure to communicable diseases|Contact with and (suspected) exposure to communicable diseases +C0496599|T033|HT|Z20|ICD10|Contact with and exposure to communicable diseases|Contact with and exposure to communicable diseases +C4270760|T033|HT|Z20-Z29|ICD10CM|Persons with potential health hazards related to communicable diseases (Z20-Z29)|Persons with potential health hazards related to communicable diseases (Z20-Z29) +C0178337|T033|HT|Z20-Z29.9|ICD10|Persons with potential health hazards related to communicable diseases|Persons with potential health hazards related to communicable diseases +C2910644|T033|AB|Z20.0|ICD10CM|Contact w and exposure to intestinal infectious diseases|Contact w and exposure to intestinal infectious diseases +C2910644|T033|HT|Z20.0|ICD10CM|Contact with and (suspected) exposure to intestinal infectious diseases|Contact with and (suspected) exposure to intestinal infectious diseases +C0496600|T033|PT|Z20.0|ICD10|Contact with and exposure to intestinal infectious diseases|Contact with and exposure to intestinal infectious diseases +C2910645|T033|AB|Z20.01|ICD10CM|Cntct w and expsr to intestnl infct dis d/t E coli (E. coli)|Cntct w and expsr to intestnl infct dis d/t E coli (E. coli) +C2910646|T033|AB|Z20.09|ICD10CM|Contact w and exposure to oth intestinal infectious diseases|Contact w and exposure to oth intestinal infectious diseases +C2910646|T033|PT|Z20.09|ICD10CM|Contact with and (suspected) exposure to other intestinal infectious diseases|Contact with and (suspected) exposure to other intestinal infectious diseases +C2910647|T033|AB|Z20.1|ICD10CM|Contact with and (suspected) exposure to tuberculosis|Contact with and (suspected) exposure to tuberculosis +C2910647|T033|PT|Z20.1|ICD10CM|Contact with and (suspected) exposure to tuberculosis|Contact with and (suspected) exposure to tuberculosis +C0260341|T033|PT|Z20.1|ICD10|Contact with and exposure to tuberculosis|Contact with and exposure to tuberculosis +C2910648|T033|AB|Z20.2|ICD10CM|Contact w and exposure to infect w a sexl mode of transmiss|Contact w and exposure to infect w a sexl mode of transmiss +C2910648|T033|PT|Z20.2|ICD10CM|Contact with and (suspected) exposure to infections with a predominantly sexual mode of transmission|Contact with and (suspected) exposure to infections with a predominantly sexual mode of transmission +C0496602|T033|PT|Z20.2|ICD10|Contact with and exposure to infections with a predominantly sexual mode of transmission|Contact with and exposure to infections with a predominantly sexual mode of transmission +C2910649|T033|AB|Z20.3|ICD10CM|Contact with and (suspected) exposure to rabies|Contact with and (suspected) exposure to rabies +C2910649|T033|PT|Z20.3|ICD10CM|Contact with and (suspected) exposure to rabies|Contact with and (suspected) exposure to rabies +C0260345|T033|PT|Z20.3|ICD10|Contact with and exposure to rabies|Contact with and exposure to rabies +C2910650|T033|AB|Z20.4|ICD10CM|Contact with and (suspected) exposure to rubella|Contact with and (suspected) exposure to rubella +C2910650|T033|PT|Z20.4|ICD10CM|Contact with and (suspected) exposure to rubella|Contact with and (suspected) exposure to rubella +C0260344|T033|PT|Z20.4|ICD10|Contact with and exposure to rubella|Contact with and exposure to rubella +C2910651|T033|AB|Z20.5|ICD10CM|Contact with and (suspected) exposure to viral hepatitis|Contact with and (suspected) exposure to viral hepatitis +C2910651|T033|PT|Z20.5|ICD10CM|Contact with and (suspected) exposure to viral hepatitis|Contact with and (suspected) exposure to viral hepatitis +C0476551|T033|PT|Z20.5|ICD10|Contact with and exposure to viral hepatitis|Contact with and exposure to viral hepatitis +C2910652|T033|AB|Z20.6|ICD10CM|Contact w and (suspected) exposure to human immunodef virus|Contact w and (suspected) exposure to human immunodef virus +C2910652|T033|PT|Z20.6|ICD10CM|Contact with and (suspected) exposure to human immunodeficiency virus [HIV]|Contact with and (suspected) exposure to human immunodeficiency virus [HIV] +C0476549|T033|PT|Z20.6|ICD10|Contact with and exposure to human immunodeficiency virus [HIV]|Contact with and exposure to human immunodeficiency virus [HIV] +C2910653|T033|AB|Z20.7|ICD10CM|Cntct w & expsr to pediculosis, acariasis & oth infestations|Cntct w & expsr to pediculosis, acariasis & oth infestations +C2910653|T033|PT|Z20.7|ICD10CM|Contact with and (suspected) exposure to pediculosis, acariasis and other infestations|Contact with and (suspected) exposure to pediculosis, acariasis and other infestations +C0476552|T033|PT|Z20.7|ICD10|Contact with and exposure to pediculosis, acariasis and other infestations|Contact with and exposure to pediculosis, acariasis and other infestations +C2910654|T033|AB|Z20.8|ICD10CM|Contact w and exposure to oth communicable diseases|Contact w and exposure to oth communicable diseases +C2910654|T033|HT|Z20.8|ICD10CM|Contact with and (suspected) exposure to other communicable diseases|Contact with and (suspected) exposure to other communicable diseases +C0496606|T033|PT|Z20.8|ICD10|Contact with and exposure to other communicable diseases|Contact with and exposure to other communicable diseases +C2910655|T033|AB|Z20.81|ICD10CM|Contact w and exposure to oth bact communicable diseases|Contact w and exposure to oth bact communicable diseases +C2910655|T033|HT|Z20.81|ICD10CM|Contact with and (suspected) exposure to other bacterial communicable diseases|Contact with and (suspected) exposure to other bacterial communicable diseases +C2910656|T033|AB|Z20.810|ICD10CM|Contact with and (suspected) exposure to anthrax|Contact with and (suspected) exposure to anthrax +C2910656|T033|PT|Z20.810|ICD10CM|Contact with and (suspected) exposure to anthrax|Contact with and (suspected) exposure to anthrax +C2910657|T033|AB|Z20.811|ICD10CM|Contact with and (suspected) exposure to meningococcus|Contact with and (suspected) exposure to meningococcus +C2910657|T033|PT|Z20.811|ICD10CM|Contact with and (suspected) exposure to meningococcus|Contact with and (suspected) exposure to meningococcus +C2910655|T033|AB|Z20.818|ICD10CM|Contact w and exposure to oth bact communicable diseases|Contact w and exposure to oth bact communicable diseases +C2910655|T033|PT|Z20.818|ICD10CM|Contact with and (suspected) exposure to other bacterial communicable diseases|Contact with and (suspected) exposure to other bacterial communicable diseases +C2910658|T033|AB|Z20.82|ICD10CM|Contact w and exposure to oth viral communicable diseases|Contact w and exposure to oth viral communicable diseases +C2910658|T033|HT|Z20.82|ICD10CM|Contact with and (suspected) exposure to other viral communicable diseases|Contact with and (suspected) exposure to other viral communicable diseases +C2910659|T033|AB|Z20.820|ICD10CM|Contact with and (suspected) exposure to varicella|Contact with and (suspected) exposure to varicella +C2910659|T033|PT|Z20.820|ICD10CM|Contact with and (suspected) exposure to varicella|Contact with and (suspected) exposure to varicella +C4553601|T033|AB|Z20.821|ICD10CM|Contact with and (suspected) exposure to Zika virus|Contact with and (suspected) exposure to Zika virus +C4553601|T033|PT|Z20.821|ICD10CM|Contact with and (suspected) exposure to Zika virus|Contact with and (suspected) exposure to Zika virus +C2910658|T033|AB|Z20.828|ICD10CM|Contact w and exposure to oth viral communicable diseases|Contact w and exposure to oth viral communicable diseases +C2910658|T033|PT|Z20.828|ICD10CM|Contact with and (suspected) exposure to other viral communicable diseases|Contact with and (suspected) exposure to other viral communicable diseases +C2910654|T033|AB|Z20.89|ICD10CM|Contact w and exposure to oth communicable diseases|Contact w and exposure to oth communicable diseases +C2910654|T033|PT|Z20.89|ICD10CM|Contact with and (suspected) exposure to other communicable diseases|Contact with and (suspected) exposure to other communicable diseases +C2910660|T033|AB|Z20.9|ICD10CM|Contact w and exposure to unsp communicable disease|Contact w and exposure to unsp communicable disease +C2910660|T033|PT|Z20.9|ICD10CM|Contact with and (suspected) exposure to unspecified communicable disease|Contact with and (suspected) exposure to unspecified communicable disease +C0496599|T033|PT|Z20.9|ICD10|Contact with and exposure to unspecified communicable disease|Contact with and exposure to unspecified communicable disease +C0476550|T033|PT|Z21|ICD10|Asymptomatic human immunodeficiency virus [HIV] infection status|Asymptomatic human immunodeficiency virus [HIV] infection status +C0476550|T033|PT|Z21|ICD10CM|Asymptomatic human immunodeficiency virus [HIV] infection status|Asymptomatic human immunodeficiency virus [HIV] infection status +C0476550|T033|AB|Z21|ICD10CM|Asymptomatic human immunodeficiency virus infection status|Asymptomatic human immunodeficiency virus infection status +C4759637|T033|ET|Z21|ICD10CM|HIV positive NOS|HIV positive NOS +C0481551|T033|HT|Z22|ICD10|Carrier of infectious disease|Carrier of infectious disease +C0481551|T033|AB|Z22|ICD10CM|Carrier of infectious disease|Carrier of infectious disease +C0481551|T033|HT|Z22|ICD10CM|Carrier of infectious disease|Carrier of infectious disease +C4290507|T033|ET|Z22|ICD10CM|colonization status|colonization status +C4290508|T033|ET|Z22|ICD10CM|suspected carrier|suspected carrier +C0260352|T033|PT|Z22.0|ICD10CM|Carrier of typhoid|Carrier of typhoid +C0260352|T033|AB|Z22.0|ICD10CM|Carrier of typhoid|Carrier of typhoid +C0260352|T033|PT|Z22.0|ICD10|Carrier of typhoid|Carrier of typhoid +C0478548|T033|PT|Z22.1|ICD10|Carrier of other intestinal infectious diseases|Carrier of other intestinal infectious diseases +C0478548|T033|PT|Z22.1|ICD10CM|Carrier of other intestinal infectious diseases|Carrier of other intestinal infectious diseases +C0478548|T033|AB|Z22.1|ICD10CM|Carrier of other intestinal infectious diseases|Carrier of other intestinal infectious diseases +C1313911|T033|PT|Z22.2|ICD10|Carrier of diphtheria|Carrier of diphtheria +C1313911|T033|PT|Z22.2|ICD10CM|Carrier of diphtheria|Carrier of diphtheria +C1313911|T033|AB|Z22.2|ICD10CM|Carrier of diphtheria|Carrier of diphtheria +C0481548|T033|HT|Z22.3|ICD10CM|Carrier of other specified bacterial diseases|Carrier of other specified bacterial diseases +C0481548|T033|AB|Z22.3|ICD10CM|Carrier of other specified bacterial diseases|Carrier of other specified bacterial diseases +C0481548|T033|PT|Z22.3|ICD10|Carrier of other specified bacterial diseases|Carrier of other specified bacterial diseases +C2910663|T033|AB|Z22.31|ICD10CM|Carrier of bacterial disease due to meningococci|Carrier of bacterial disease due to meningococci +C2910663|T033|PT|Z22.31|ICD10CM|Carrier of bacterial disease due to meningococci|Carrier of bacterial disease due to meningococci +C2910664|T033|AB|Z22.32|ICD10CM|Carrier of bacterial disease due to staphylococci|Carrier of bacterial disease due to staphylococci +C2910664|T033|HT|Z22.32|ICD10CM|Carrier of bacterial disease due to staphylococci|Carrier of bacterial disease due to staphylococci +C2355591|T033|AB|Z22.321|ICD10CM|Carrier or suspected carrier of methicillin suscep staph|Carrier or suspected carrier of methicillin suscep staph +C2355591|T033|PT|Z22.321|ICD10CM|Carrier or suspected carrier of Methicillin susceptible Staphylococcus aureus|Carrier or suspected carrier of Methicillin susceptible Staphylococcus aureus +C2349818|T047|ET|Z22.321|ICD10CM|MSSA colonization|MSSA colonization +C2350012|T033|AB|Z22.322|ICD10CM|Carrier or suspected carrier of methicillin resis staph|Carrier or suspected carrier of methicillin resis staph +C2350012|T033|PT|Z22.322|ICD10CM|Carrier or suspected carrier of Methicillin resistant Staphylococcus aureus|Carrier or suspected carrier of Methicillin resistant Staphylococcus aureus +C2242741|T033|ET|Z22.322|ICD10CM|MRSA colonization|MRSA colonization +C2910665|T033|AB|Z22.33|ICD10CM|Carrier of bacterial disease due to streptococci|Carrier of bacterial disease due to streptococci +C2910665|T033|HT|Z22.33|ICD10CM|Carrier of bacterial disease due to streptococci|Carrier of bacterial disease due to streptococci +C2910666|T033|PT|Z22.330|ICD10CM|Carrier of Group B streptococcus|Carrier of Group B streptococcus +C2910666|T033|AB|Z22.330|ICD10CM|Carrier of Group B streptococcus|Carrier of Group B streptococcus +C2910667|T033|AB|Z22.338|ICD10CM|Carrier of other streptococcus|Carrier of other streptococcus +C2910667|T033|PT|Z22.338|ICD10CM|Carrier of other streptococcus|Carrier of other streptococcus +C0481548|T033|PT|Z22.39|ICD10CM|Carrier of other specified bacterial diseases|Carrier of other specified bacterial diseases +C0481548|T033|AB|Z22.39|ICD10CM|Carrier of other specified bacterial diseases|Carrier of other specified bacterial diseases +C0496607|T033|AB|Z22.4|ICD10CM|Carrier of infections w sexl mode of transmiss|Carrier of infections w sexl mode of transmiss +C0496607|T033|PT|Z22.4|ICD10CM|Carrier of infections with a predominantly sexual mode of transmission|Carrier of infections with a predominantly sexual mode of transmission +C0496607|T033|PT|Z22.4|ICD10|Carrier of infections with a predominantly sexual mode of transmission|Carrier of infections with a predominantly sexual mode of transmission +C0549126|T033|PT|Z22.5|ICD10|Carrier of viral hepatitis|Carrier of viral hepatitis +C0496608|T033|PT|Z22.6|ICD10|Carrier of human T-lymphotropic virus type- 1 [HTLV-1] infection|Carrier of human T-lymphotropic virus type- 1 [HTLV-1] infection +C0496608|T033|PT|Z22.6|ICD10CM|Carrier of human T-lymphotropic virus type-1 [HTLV-1] infection|Carrier of human T-lymphotropic virus type-1 [HTLV-1] infection +C0496608|T033|AB|Z22.6|ICD10CM|Carrier of human T-lymphotropic virus type-1 infection|Carrier of human T-lymphotropic virus type-1 infection +C1609538|T047|PT|Z22.7|ICD10CM|Latent tuberculosis|Latent tuberculosis +C1609538|T047|AB|Z22.7|ICD10CM|Latent tuberculosis|Latent tuberculosis +C1609538|T047|ET|Z22.7|ICD10CM|Latent tuberculosis infection (LTBI)|Latent tuberculosis infection (LTBI) +C0478549|T033|PT|Z22.8|ICD10CM|Carrier of other infectious diseases|Carrier of other infectious diseases +C0478549|T033|AB|Z22.8|ICD10CM|Carrier of other infectious diseases|Carrier of other infectious diseases +C0478549|T033|PT|Z22.8|ICD10|Carrier of other infectious diseases|Carrier of other infectious diseases +C0481551|T033|PT|Z22.9|ICD10|Carrier of infectious disease, unspecified|Carrier of infectious disease, unspecified +C0481551|T033|PT|Z22.9|ICD10CM|Carrier of infectious disease, unspecified|Carrier of infectious disease, unspecified +C0481551|T033|AB|Z22.9|ICD10CM|Carrier of infectious disease, unspecified|Carrier of infectious disease, unspecified +C2910668|T033|AB|Z23|ICD10CM|Encounter for immunization|Encounter for immunization +C2910668|T033|PT|Z23|ICD10CM|Encounter for immunization|Encounter for immunization +C0496609|T033|HT|Z23|ICD10|Need for immunization against single bacterial diseases|Need for immunization against single bacterial diseases +C0700175|T033|PT|Z23.0|ICD10|Need for immunization against cholera alone|Need for immunization against cholera alone +C0496611|T033|PT|Z23.1|ICD10|Need for immunization against typhoid-paratyphoid alone [TAB]|Need for immunization against typhoid-paratyphoid alone [TAB] +C0496612|T033|PT|Z23.2|ICD10|Need for immunization against tuberculosis [BCG]|Need for immunization against tuberculosis [BCG] +C0496613|T033|PT|Z23.3|ICD10|Need for immunization against plague|Need for immunization against plague +C0496614|T033|PT|Z23.4|ICD10|Need for immunization against tularaemia|Need for immunization against tularaemia +C0496614|T033|PT|Z23.4|ICD10AE|Need for immunization against tularemia|Need for immunization against tularemia +C0496615|T033|PT|Z23.5|ICD10|Need for immunization against tetanus alone|Need for immunization against tetanus alone +C0481437|T033|PT|Z23.6|ICD10|Need for immunization against diphtheria alone|Need for immunization against diphtheria alone +C0496617|T033|PT|Z23.7|ICD10|Need for immunization against pertussis alone|Need for immunization against pertussis alone +C0478550|T033|PT|Z23.8|ICD10|Need for immunization against other single bacterial diseases|Need for immunization against other single bacterial diseases +C0496618|T033|HT|Z24|ICD10|Need for immunization against certain single viral diseases|Need for immunization against certain single viral diseases +C0496619|T033|PT|Z24.0|ICD10|Need for immunization against poliomyelitis|Need for immunization against poliomyelitis +C1962939|T033|PT|Z24.1|ICD10|Need for immunization against arthropod-borne viral encephalitis|Need for immunization against arthropod-borne viral encephalitis +C0496620|T033|PT|Z24.2|ICD10|Need for immunization against rabies|Need for immunization against rabies +C0496621|T033|PT|Z24.3|ICD10|Need for immunization against yellow fever|Need for immunization against yellow fever +C0700173|T033|PT|Z24.4|ICD10|Need for immunization against measles alone|Need for immunization against measles alone +C0700174|T033|PT|Z24.5|ICD10|Need for immunization against rubella alone|Need for immunization against rubella alone +C0476555|T033|PT|Z24.6|ICD10|Need for immunization against viral hepatitis|Need for immunization against viral hepatitis +C0496624|T033|HT|Z25|ICD10|Need for immunization against other single viral diseases|Need for immunization against other single viral diseases +C0700172|T033|PT|Z25.0|ICD10|Need for immunization against mumps alone|Need for immunization against mumps alone +C0260381|T033|PT|Z25.1|ICD10|Need for immunization against influenza|Need for immunization against influenza +C0478551|T033|PT|Z25.8|ICD10|Need for immunization against other specified single viral diseases|Need for immunization against other specified single viral diseases +C0496627|T033|HT|Z26|ICD10|Need for immunization against other single infectious diseases|Need for immunization against other single infectious diseases +C0476556|T033|PT|Z26.0|ICD10|Need for immunization against leishmaniasis|Need for immunization against leishmaniasis +C0478552|T033|PT|Z26.8|ICD10|Need for immunization against other specified single infectious diseases|Need for immunization against other specified single infectious diseases +C0496628|T033|PT|Z26.9|ICD10|Need for immunization against unspecified infectious disease|Need for immunization against unspecified infectious disease +C0496629|T033|HT|Z27|ICD10|Need for immunization against combinations of infectious diseases|Need for immunization against combinations of infectious diseases +C0496630|T033|PT|Z27.0|ICD10|Need for immunization against cholera with typhoid-paratyphoid [cholera + TAB]|Need for immunization against cholera with typhoid-paratyphoid [cholera + TAB] +C0496631|T033|PT|Z27.1|ICD10|Need for immunization against diphtheria-tetanus-pertussis, combined [DTP]|Need for immunization against diphtheria-tetanus-pertussis, combined [DTP] +C0496632|T033|PT|Z27.2|ICD10|Need for immunization against diphtheria-tetanus-pertussis with typhoid-paratyphoid [DTP + TAB]|Need for immunization against diphtheria-tetanus-pertussis with typhoid-paratyphoid [DTP + TAB] +C0496633|T033|PT|Z27.3|ICD10|Need for immunization against diphtheria-tetanus-pertussis with poliomyelitis [DTP + polio]|Need for immunization against diphtheria-tetanus-pertussis with poliomyelitis [DTP + polio] +C0496634|T033|PT|Z27.4|ICD10|Need for immunization against measles-mumps-rubella [MMR]|Need for immunization against measles-mumps-rubella [MMR] +C0478553|T033|PT|Z27.8|ICD10|Need for immunization against other combinations of infectious diseases|Need for immunization against other combinations of infectious diseases +C0496629|T033|PT|Z27.9|ICD10|Need for immunization against unspecified combinations of infectious diseases|Need for immunization against unspecified combinations of infectious diseases +C0476665|T033|HT|Z28|ICD10|Immunization not carried out|Immunization not carried out +C2910669|T033|AB|Z28|ICD10CM|Immunization not carried out and underimmunization status|Immunization not carried out and underimmunization status +C2910669|T033|HT|Z28|ICD10CM|Immunization not carried out and underimmunization status|Immunization not carried out and underimmunization status +C1561700|T033|ET|Z28|ICD10CM|vaccination not carried out|vaccination not carried out +C0496635|T033|PT|Z28.0|ICD10|Immunization not carried out because of contraindication|Immunization not carried out because of contraindication +C0496635|T033|HT|Z28.0|ICD10CM|Immunization not carried out because of contraindication|Immunization not carried out because of contraindication +C0496635|T033|AB|Z28.0|ICD10CM|Immunization not carried out because of contraindication|Immunization not carried out because of contraindication +C2910670|T033|PT|Z28.01|ICD10CM|Immunization not carried out because of acute illness of patient|Immunization not carried out because of acute illness of patient +C2910670|T033|AB|Z28.01|ICD10CM|Immunization not crd out because of acute illness of patient|Immunization not crd out because of acute illness of patient +C2910671|T033|AB|Z28.02|ICD10CM|Immuniz not crd out bec chronic illness or cond of patient|Immuniz not crd out bec chronic illness or cond of patient +C2910671|T033|PT|Z28.02|ICD10CM|Immunization not carried out because of chronic illness or condition of patient|Immunization not carried out because of chronic illness or condition of patient +C2910672|T033|AB|Z28.03|ICD10CM|Immuniz not crd out bec immune compromised state of patient|Immuniz not crd out bec immune compromised state of patient +C2910672|T033|PT|Z28.03|ICD10CM|Immunization not carried out because of immune compromised state of patient|Immunization not carried out because of immune compromised state of patient +C2910673|T033|AB|Z28.04|ICD10CM|Immuniz not crd out bec patient allergy to vaccine or cmpnt|Immuniz not crd out bec patient allergy to vaccine or cmpnt +C2910673|T033|PT|Z28.04|ICD10CM|Immunization not carried out because of patient allergy to vaccine or component|Immunization not carried out because of patient allergy to vaccine or component +C2910674|T033|AB|Z28.09|ICD10CM|Immunization not carried out because of oth contraindication|Immunization not carried out because of oth contraindication +C2910674|T033|PT|Z28.09|ICD10CM|Immunization not carried out because of other contraindication|Immunization not carried out because of other contraindication +C0476663|T033|AB|Z28.1|ICD10CM|Immuniz not crd out because of patient belief/grp pressr|Immuniz not crd out because of patient belief/grp pressr +C0476663|T033|PT|Z28.1|ICD10CM|Immunization not carried out because of patient decision for reasons of belief or group pressure|Immunization not carried out because of patient decision for reasons of belief or group pressure +C0496636|T033|PT|Z28.1|ICD10|Immunization not carried out because of patient's decision for reasons of belief and group pressure|Immunization not carried out because of patient's decision for reasons of belief and group pressure +C2910675|T033|ET|Z28.1|ICD10CM|Immunization not carried out because of religious belief|Immunization not carried out because of religious belief +C0478554|T033|AB|Z28.2|ICD10CM|Immuniz not crd out bec pt decision for oth and unsp reason|Immuniz not crd out bec pt decision for oth and unsp reason +C0478554|T033|HT|Z28.2|ICD10CM|Immunization not carried out because of patient decision for other and unspecified reason|Immunization not carried out because of patient decision for other and unspecified reason +C0478554|T033|PT|Z28.2|ICD10|Immunization not carried out because of patient's decision for other and unspecified reasons|Immunization not carried out because of patient's decision for other and unspecified reasons +C2910676|T033|AB|Z28.20|ICD10CM|Immuniz not crd out bec patient decision for unsp reason|Immuniz not crd out bec patient decision for unsp reason +C2910676|T033|PT|Z28.20|ICD10CM|Immunization not carried out because of patient decision for unspecified reason|Immunization not carried out because of patient decision for unspecified reason +C2910677|T033|AB|Z28.21|ICD10CM|Immunization not carried out because of patient refusal|Immunization not carried out because of patient refusal +C2910677|T033|PT|Z28.21|ICD10CM|Immunization not carried out because of patient refusal|Immunization not carried out because of patient refusal +C2910678|T033|AB|Z28.29|ICD10CM|Immuniz not crd out bec patient decision for oth reason|Immuniz not crd out bec patient decision for oth reason +C2910678|T033|PT|Z28.29|ICD10CM|Immunization not carried out because of patient decision for other reason|Immunization not carried out because of patient decision for other reason +C2712900|T033|ET|Z28.3|ICD10CM|Delinquent immunization status|Delinquent immunization status +C2712901|T033|ET|Z28.3|ICD10CM|Lapsed immunization schedule status|Lapsed immunization schedule status +C2712541|T033|AB|Z28.3|ICD10CM|Underimmunization status|Underimmunization status +C2712541|T033|PT|Z28.3|ICD10CM|Underimmunization status|Underimmunization status +C0476664|T033|HT|Z28.8|ICD10CM|Immunization not carried out for other reason|Immunization not carried out for other reason +C0476664|T033|AB|Z28.8|ICD10CM|Immunization not carried out for other reason|Immunization not carried out for other reason +C0476664|T033|PT|Z28.8|ICD10|Immunization not carried out for other reasons|Immunization not carried out for other reasons +C2910679|T033|AB|Z28.81|ICD10CM|Immuniz not crd out due to patient having had the disease|Immuniz not crd out due to patient having had the disease +C2910679|T033|PT|Z28.81|ICD10CM|Immunization not carried out due to patient having had the disease|Immunization not carried out due to patient having had the disease +C2910682|T033|AB|Z28.82|ICD10CM|Immunization not carried out because of caregiver refusal|Immunization not carried out because of caregiver refusal +C2910682|T033|PT|Z28.82|ICD10CM|Immunization not carried out because of caregiver refusal|Immunization not carried out because of caregiver refusal +C2910680|T033|ET|Z28.82|ICD10CM|Immunization not carried out because of guardian refusal|Immunization not carried out because of guardian refusal +C2910681|T033|ET|Z28.82|ICD10CM|Immunization not carried out because of parent refusal|Immunization not carried out because of parent refusal +C4718837|T033|ET|Z28.83|ICD10CM|Delay in delivery of vaccine|Delay in delivery of vaccine +C4553602|T033|PT|Z28.83|ICD10CM|Immunization not carried out due to unavailability of vaccine|Immunization not carried out due to unavailability of vaccine +C4553602|T033|AB|Z28.83|ICD10CM|Immunization not crd out due to unavailability of vaccine|Immunization not crd out due to unavailability of vaccine +C4718838|T033|ET|Z28.83|ICD10CM|Lack of availability of vaccine|Lack of availability of vaccine +C4718839|T033|ET|Z28.83|ICD10CM|Manufacturer delay of vaccine|Manufacturer delay of vaccine +C0476664|T033|AB|Z28.89|ICD10CM|Immunization not carried out for other reason|Immunization not carried out for other reason +C0476664|T033|PT|Z28.89|ICD10CM|Immunization not carried out for other reason|Immunization not carried out for other reason +C0476665|T033|PT|Z28.9|ICD10CM|Immunization not carried out for unspecified reason|Immunization not carried out for unspecified reason +C0476665|T033|AB|Z28.9|ICD10CM|Immunization not carried out for unspecified reason|Immunization not carried out for unspecified reason +C0476665|T033|PT|Z28.9|ICD10|Immunization not carried out for unspecified reason|Immunization not carried out for unspecified reason +C4270761|T033|AB|Z29|ICD10CM|Encounter for other prophylactic measures|Encounter for other prophylactic measures +C4270761|T033|HT|Z29|ICD10CM|Encounter for other prophylactic measures|Encounter for other prophylactic measures +C0496637|T033|HT|Z29|ICD10|Need for other prophylactic measures|Need for other prophylactic measures +C0260397|T033|PT|Z29.0|ICD10|Isolation|Isolation +C4270765|T033|ET|Z29.1|ICD10CM|Encounter for administration of immunoglobulin|Encounter for administration of immunoglobulin +C4270764|T033|AB|Z29.1|ICD10CM|Encounter for prophylactic immunotherapy|Encounter for prophylactic immunotherapy +C4270764|T033|HT|Z29.1|ICD10CM|Encounter for prophylactic immunotherapy|Encounter for prophylactic immunotherapy +C0481443|T033|PT|Z29.1|ICD10|Prophylactic immunotherapy|Prophylactic immunotherapy +C4270766|T033|PT|Z29.11|ICD10CM|Encounter for prophylactic immunotherapy for respiratory syncytial virus (RSV)|Encounter for prophylactic immunotherapy for respiratory syncytial virus (RSV) +C4270766|T033|AB|Z29.11|ICD10CM|Enctr for prphylc immther for resp syncytial virus (RSV)|Enctr for prphylc immther for resp syncytial virus (RSV) +C4270767|T033|AB|Z29.12|ICD10CM|Encounter for prophylactic antivenin|Encounter for prophylactic antivenin +C4270767|T033|PT|Z29.12|ICD10CM|Encounter for prophylactic antivenin|Encounter for prophylactic antivenin +C4270768|T033|AB|Z29.13|ICD10CM|Encounter for prophylactic Rho(D) immune globulin|Encounter for prophylactic Rho(D) immune globulin +C4270768|T033|PT|Z29.13|ICD10CM|Encounter for prophylactic Rho(D) immune globulin|Encounter for prophylactic Rho(D) immune globulin +C4270769|T033|AB|Z29.14|ICD10CM|Encounter for prophylactic rabies immune globin|Encounter for prophylactic rabies immune globin +C4270769|T033|PT|Z29.14|ICD10CM|Encounter for prophylactic rabies immune globin|Encounter for prophylactic rabies immune globin +C0362063|T033|PT|Z29.2|ICD10|Other prophylactic chemotherapy|Other prophylactic chemotherapy +C4270770|T033|AB|Z29.3|ICD10CM|Encounter for prophylactic fluoride administration|Encounter for prophylactic fluoride administration +C4270770|T033|PT|Z29.3|ICD10CM|Encounter for prophylactic fluoride administration|Encounter for prophylactic fluoride administration +C4270771|T033|AB|Z29.8|ICD10CM|Encounter for other specified prophylactic measures|Encounter for other specified prophylactic measures +C4270771|T033|PT|Z29.8|ICD10CM|Encounter for other specified prophylactic measures|Encounter for other specified prophylactic measures +C4270772|T033|AB|Z29.9|ICD10CM|Encounter for prophylactic measures, unspecified|Encounter for prophylactic measures, unspecified +C4270772|T033|PT|Z29.9|ICD10CM|Encounter for prophylactic measures, unspecified|Encounter for prophylactic measures, unspecified +C0481566|T033|PT|Z29.9|ICD10|Prophylactic measure, unspecified|Prophylactic measure, unspecified +C0375815|T033|HT|Z30|ICD10|Contraceptive management|Contraceptive management +C0375815|T033|AB|Z30|ICD10CM|Encounter for contraceptive management|Encounter for contraceptive management +C0375815|T033|HT|Z30|ICD10CM|Encounter for contraceptive management|Encounter for contraceptive management +C0478556|T033|HT|Z30-Z39|ICD10CM|Persons encountering health services in circumstances related to reproduction (Z30-Z39)|Persons encountering health services in circumstances related to reproduction (Z30-Z39) +C0478556|T033|HT|Z30-Z39.9|ICD10|Persons encountering health services in circumstances related to reproduction|Persons encountering health services in circumstances related to reproduction +C2910683|T033|AB|Z30.0|ICD10CM|Encounter for general counseling and advice on contraception|Encounter for general counseling and advice on contraception +C2910683|T033|HT|Z30.0|ICD10CM|Encounter for general counseling and advice on contraception|Encounter for general counseling and advice on contraception +C1304539|T033|PT|Z30.0|ICD10AE|General counseling and advice on contraception|General counseling and advice on contraception +C1304539|T033|PT|Z30.0|ICD10|General counselling and advice on contraception|General counselling and advice on contraception +C2910691|T033|AB|Z30.01|ICD10CM|Encounter for initial prescription of contraceptives|Encounter for initial prescription of contraceptives +C2910691|T033|HT|Z30.01|ICD10CM|Encounter for initial prescription of contraceptives|Encounter for initial prescription of contraceptives +C2910685|T033|AB|Z30.011|ICD10CM|Encounter for initial prescription of contraceptive pills|Encounter for initial prescription of contraceptive pills +C2910685|T033|PT|Z30.011|ICD10CM|Encounter for initial prescription of contraceptive pills|Encounter for initial prescription of contraceptive pills +C2910686|T033|ET|Z30.012|ICD10CM|Encounter for postcoital contraception|Encounter for postcoital contraception +C2910687|T033|AB|Z30.012|ICD10CM|Encounter for prescription of emergency contraception|Encounter for prescription of emergency contraception +C2910687|T033|PT|Z30.012|ICD10CM|Encounter for prescription of emergency contraception|Encounter for prescription of emergency contraception +C2910688|T033|AB|Z30.013|ICD10CM|Encounter for initial prescription of injectable contracep|Encounter for initial prescription of injectable contracep +C2910688|T033|PT|Z30.013|ICD10CM|Encounter for initial prescription of injectable contraceptive|Encounter for initial prescription of injectable contraceptive +C2910689|T033|PT|Z30.014|ICD10CM|Encounter for initial prescription of intrauterine contraceptive device|Encounter for initial prescription of intrauterine contraceptive device +C2910689|T033|AB|Z30.014|ICD10CM|Encounter for initial prescription of uterin contracep dev|Encounter for initial prescription of uterin contracep dev +C4270773|T033|PT|Z30.015|ICD10CM|Encounter for initial prescription of vaginal ring hormonal contraceptive|Encounter for initial prescription of vaginal ring hormonal contraceptive +C4270773|T033|AB|Z30.015|ICD10CM|Encounter for initial prescription of vagnl ring|Encounter for initial prescription of vagnl ring +C4270774|T033|PT|Z30.016|ICD10CM|Encounter for initial prescription of transdermal patch hormonal contraceptive device|Encounter for initial prescription of transdermal patch hormonal contraceptive device +C4270774|T033|AB|Z30.016|ICD10CM|Enctr for init prescription of patch hormonal contracep dev|Enctr for init prescription of patch hormonal contracep dev +C4270775|T033|PT|Z30.017|ICD10CM|Encounter for initial prescription of implantable subdermal contraceptive|Encounter for initial prescription of implantable subdermal contraceptive +C4270775|T033|AB|Z30.017|ICD10CM|Enctr for init prescription of implntbl subdermal contracep|Enctr for init prescription of implntbl subdermal contracep +C4270776|T033|ET|Z30.018|ICD10CM|Encounter for initial prescription of barrier contraception|Encounter for initial prescription of barrier contraception +C4270777|T033|ET|Z30.018|ICD10CM|Encounter for initial prescription of diaphragm|Encounter for initial prescription of diaphragm +C2910690|T033|AB|Z30.018|ICD10CM|Encounter for initial prescription of other contraceptives|Encounter for initial prescription of other contraceptives +C2910690|T033|PT|Z30.018|ICD10CM|Encounter for initial prescription of other contraceptives|Encounter for initial prescription of other contraceptives +C2910691|T033|AB|Z30.019|ICD10CM|Encounter for initial prescription of contraceptives, unsp|Encounter for initial prescription of contraceptives, unsp +C2910691|T033|PT|Z30.019|ICD10CM|Encounter for initial prescription of contraceptives, unspecified|Encounter for initial prescription of contraceptives, unspecified +C1955578|T033|AB|Z30.02|ICD10CM|Cnsl and instruction in natrl family planning to avoid preg|Cnsl and instruction in natrl family planning to avoid preg +C1955578|T033|PT|Z30.02|ICD10CM|Counseling and instruction in natural family planning to avoid pregnancy|Counseling and instruction in natural family planning to avoid pregnancy +C2910692|T033|ET|Z30.09|ICD10CM|Encounter for family planning advice NOS|Encounter for family planning advice NOS +C2910693|T033|AB|Z30.09|ICD10CM|Encounter for oth general cnsl and advice on contraception|Encounter for oth general cnsl and advice on contraception +C2910693|T033|PT|Z30.09|ICD10CM|Encounter for other general counseling and advice on contraception|Encounter for other general counseling and advice on contraception +C1735586|T033|PT|Z30.1|ICD10|Insertion of (intrauterine) contraceptive device|Insertion of (intrauterine) contraceptive device +C0362065|T033|AB|Z30.2|ICD10CM|Encounter for sterilization|Encounter for sterilization +C0362065|T033|PT|Z30.2|ICD10CM|Encounter for sterilization|Encounter for sterilization +C0362065|T033|PT|Z30.2|ICD10|Sterilization|Sterilization +C0362068|T033|PT|Z30.3|ICD10|Menstrual extraction|Menstrual extraction +C2910694|T033|AB|Z30.4|ICD10CM|Encounter for surveillance of contraceptives|Encounter for surveillance of contraceptives +C2910694|T033|HT|Z30.4|ICD10CM|Encounter for surveillance of contraceptives|Encounter for surveillance of contraceptives +C0478673|T033|PT|Z30.4|ICD10|Surveillance of contraceptive drugs|Surveillance of contraceptive drugs +C0375824|T033|AB|Z30.40|ICD10CM|Encounter for surveillance of contraceptives, unspecified|Encounter for surveillance of contraceptives, unspecified +C0375824|T033|PT|Z30.40|ICD10CM|Encounter for surveillance of contraceptives, unspecified|Encounter for surveillance of contraceptives, unspecified +C2910695|T033|ET|Z30.41|ICD10CM|Encounter for repeat prescription for contraceptive pill|Encounter for repeat prescription for contraceptive pill +C0375825|T033|AB|Z30.41|ICD10CM|Encounter for surveillance of contraceptive pills|Encounter for surveillance of contraceptive pills +C0375825|T033|PT|Z30.41|ICD10CM|Encounter for surveillance of contraceptive pills|Encounter for surveillance of contraceptive pills +C2910696|T033|AB|Z30.42|ICD10CM|Encounter for surveillance of injectable contraceptive|Encounter for surveillance of injectable contraceptive +C2910696|T033|PT|Z30.42|ICD10CM|Encounter for surveillance of injectable contraceptive|Encounter for surveillance of injectable contraceptive +C0260572|T033|AB|Z30.43|ICD10CM|Encounter for surveillance of intrauterine contracep dev|Encounter for surveillance of intrauterine contracep dev +C0260572|T033|HT|Z30.43|ICD10CM|Encounter for surveillance of intrauterine contraceptive device|Encounter for surveillance of intrauterine contraceptive device +C0375820|T033|PT|Z30.430|ICD10CM|Encounter for insertion of intrauterine contraceptive device|Encounter for insertion of intrauterine contraceptive device +C0375820|T033|AB|Z30.430|ICD10CM|Encounter for insertion of intrauterine contraceptive device|Encounter for insertion of intrauterine contraceptive device +C2977637|T033|AB|Z30.431|ICD10CM|Encounter for routine checking of intrauterine contracep dev|Encounter for routine checking of intrauterine contracep dev +C2977637|T033|PT|Z30.431|ICD10CM|Encounter for routine checking of intrauterine contraceptive device|Encounter for routine checking of intrauterine contraceptive device +C2921303|T033|PT|Z30.432|ICD10CM|Encounter for removal of intrauterine contraceptive device|Encounter for removal of intrauterine contraceptive device +C2921303|T033|AB|Z30.432|ICD10CM|Encounter for removal of intrauterine contraceptive device|Encounter for removal of intrauterine contraceptive device +C2921304|T033|AB|Z30.433|ICD10CM|Encntr for removal and reinsertion of uterin contracep dev|Encntr for removal and reinsertion of uterin contracep dev +C2921304|T033|PT|Z30.433|ICD10CM|Encounter for removal and reinsertion of intrauterine contraceptive device|Encounter for removal and reinsertion of intrauterine contraceptive device +C2921305|T033|ET|Z30.433|ICD10CM|Encounter for replacement of intrauterine contraceptive device|Encounter for replacement of intrauterine contraceptive device +C4270778|T033|PT|Z30.44|ICD10CM|Encounter for surveillance of vaginal ring hormonal contraceptive device|Encounter for surveillance of vaginal ring hormonal contraceptive device +C4270778|T033|AB|Z30.44|ICD10CM|Encounter for surveillance of vagnl ring|Encounter for surveillance of vagnl ring +C4270779|T033|PT|Z30.45|ICD10CM|Encounter for surveillance of transdermal patch hormonal contraceptive device|Encounter for surveillance of transdermal patch hormonal contraceptive device +C4270779|T033|AB|Z30.45|ICD10CM|Enctr srvlnc transdermal patch hormonal contraceptive device|Enctr srvlnc transdermal patch hormonal contraceptive device +C4270780|T033|ET|Z30.46|ICD10CM|Encounter for checking, reinsertion or removal of implantable subdermal contraceptive|Encounter for checking, reinsertion or removal of implantable subdermal contraceptive +C0375827|T033|PT|Z30.46|ICD10CM|Encounter for surveillance of implantable subdermal contraceptive|Encounter for surveillance of implantable subdermal contraceptive +C0375827|T033|AB|Z30.46|ICD10CM|Enctr srvlnc implantable subdermal contraceptive|Enctr srvlnc implantable subdermal contraceptive +C4270781|T033|ET|Z30.49|ICD10CM|Encounter for surveillance of barrier contraception|Encounter for surveillance of barrier contraception +C4270782|T033|ET|Z30.49|ICD10CM|Encounter for surveillance of diaphragm|Encounter for surveillance of diaphragm +C2910698|T033|AB|Z30.49|ICD10CM|Encounter for surveillance of other contraceptives|Encounter for surveillance of other contraceptives +C2910698|T033|PT|Z30.49|ICD10CM|Encounter for surveillance of other contraceptives|Encounter for surveillance of other contraceptives +C0260572|T033|PT|Z30.5|ICD10|Surveillance of (intrauterine) contraceptive device|Surveillance of (intrauterine) contraceptive device +C2910701|T033|AB|Z30.8|ICD10CM|Encounter for other contraceptive management|Encounter for other contraceptive management +C2910701|T033|PT|Z30.8|ICD10CM|Encounter for other contraceptive management|Encounter for other contraceptive management +C2910699|T033|ET|Z30.8|ICD10CM|Encounter for postvasectomy sperm count|Encounter for postvasectomy sperm count +C2910700|T033|ET|Z30.8|ICD10CM|Encounter for routine examination for contraceptive maintenance|Encounter for routine examination for contraceptive maintenance +C0478557|T033|PT|Z30.8|ICD10|Other contraceptive management|Other contraceptive management +C0375815|T033|PT|Z30.9|ICD10|Contraceptive management, unspecified|Contraceptive management, unspecified +C0375815|T033|AB|Z30.9|ICD10CM|Encounter for contraceptive management, unspecified|Encounter for contraceptive management, unspecified +C0375815|T033|PT|Z30.9|ICD10CM|Encounter for contraceptive management, unspecified|Encounter for contraceptive management, unspecified +C2910721|T033|AB|Z31|ICD10CM|Encounter for procreative management|Encounter for procreative management +C2910721|T033|HT|Z31|ICD10CM|Encounter for procreative management|Encounter for procreative management +C0260576|T033|HT|Z31|ICD10|Procreative management|Procreative management +C2910703|T033|AB|Z31.0|ICD10CM|Encounter for reversal of previous sterilization|Encounter for reversal of previous sterilization +C2910703|T033|PT|Z31.0|ICD10CM|Encounter for reversal of previous sterilization|Encounter for reversal of previous sterilization +C3714643|T033|PT|Z31.0|ICD10|Tuboplasty or vasoplasty after previous sterilization|Tuboplasty or vasoplasty after previous sterilization +C0699895|T033|PT|Z31.1|ICD10|Artificial insemination|Artificial insemination +C0733942|T033|PT|Z31.2|ICD10|In vitro fertilization|In vitro fertilization +C0478558|T033|PT|Z31.3|ICD10|Other assisted fertilization methods|Other assisted fertilization methods +C2910704|T033|AB|Z31.4|ICD10CM|Encounter for procreative investigation and testing|Encounter for procreative investigation and testing +C2910704|T033|HT|Z31.4|ICD10CM|Encounter for procreative investigation and testing|Encounter for procreative investigation and testing +C2910705|T033|ET|Z31.41|ICD10CM|Encounter for fallopian tube patency testing|Encounter for fallopian tube patency testing +C0886496|T033|PT|Z31.41|ICD10CM|Encounter for fertility testing|Encounter for fertility testing +C0886496|T033|AB|Z31.41|ICD10CM|Encounter for fertility testing|Encounter for fertility testing +C2910706|T033|ET|Z31.41|ICD10CM|Encounter for sperm count for fertility testing|Encounter for sperm count for fertility testing +C0878722|T033|AB|Z31.42|ICD10CM|Aftercare following sterilization reversal|Aftercare following sterilization reversal +C0878722|T033|PT|Z31.42|ICD10CM|Aftercare following sterilization reversal|Aftercare following sterilization reversal +C0878799|T033|ET|Z31.42|ICD10CM|Sperm count following sterilization reversal|Sperm count following sterilization reversal +C2910708|T033|AB|Z31.43|ICD10CM|Encounter for genetic testing of female for pro mgmt|Encounter for genetic testing of female for pro mgmt +C2910708|T033|HT|Z31.43|ICD10CM|Encounter for genetic testing of female for procreative management|Encounter for genetic testing of female for procreative management +C2910709|T033|AB|Z31.430|ICD10CM|Encntr fem for test for genetc dis carrier stat for pro mgmt|Encntr fem for test for genetc dis carrier stat for pro mgmt +C2910709|T033|PT|Z31.430|ICD10CM|Encounter of female for testing for genetic disease carrier status for procreative management|Encounter of female for testing for genetic disease carrier status for procreative management +C2910710|T033|AB|Z31.438|ICD10CM|Encounter for oth genetic testing of female for pro mgmt|Encounter for oth genetic testing of female for pro mgmt +C2910710|T033|PT|Z31.438|ICD10CM|Encounter for other genetic testing of female for procreative management|Encounter for other genetic testing of female for procreative management +C2910711|T033|AB|Z31.44|ICD10CM|Encounter for genetic testing of male for pro mgmt|Encounter for genetic testing of male for pro mgmt +C2910711|T033|HT|Z31.44|ICD10CM|Encounter for genetic testing of male for procreative management|Encounter for genetic testing of male for procreative management +C2910712|T033|AB|Z31.440|ICD10CM|Encntr male test for genetic dis carrier status for pro mgmt|Encntr male test for genetic dis carrier status for pro mgmt +C2910712|T033|PT|Z31.440|ICD10CM|Encounter of male for testing for genetic disease carrier status for procreative management|Encounter of male for testing for genetic disease carrier status for procreative management +C2921306|T033|AB|Z31.441|ICD10CM|Encntr for testing of male prtnr of pt w recur preg loss|Encntr for testing of male prtnr of pt w recur preg loss +C2921306|T033|PT|Z31.441|ICD10CM|Encounter for testing of male partner of patient with recurrent pregnancy loss|Encounter for testing of male partner of patient with recurrent pregnancy loss +C2910713|T033|AB|Z31.448|ICD10CM|Encounter for oth genetic testing of male for pro mgmt|Encounter for oth genetic testing of male for pro mgmt +C2910713|T033|PT|Z31.448|ICD10CM|Encounter for other genetic testing of male for procreative management|Encounter for other genetic testing of male for procreative management +C2910714|T033|AB|Z31.49|ICD10CM|Encounter for other procreative investigation and testing|Encounter for other procreative investigation and testing +C2910714|T033|PT|Z31.49|ICD10CM|Encounter for other procreative investigation and testing|Encounter for other procreative investigation and testing +C2910715|T033|AB|Z31.5|ICD10CM|Encounter for procreative genetic counseling|Encounter for procreative genetic counseling +C2910715|T033|PT|Z31.5|ICD10CM|Encounter for procreative genetic counseling|Encounter for procreative genetic counseling +C0599986|T033|PT|Z31.5|ICD10AE|Genetic counseling|Genetic counseling +C0599986|T033|PT|Z31.5|ICD10|Genetic counselling|Genetic counselling +C2910716|T033|AB|Z31.6|ICD10CM|Encounter for general counseling and advice on procreation|Encounter for general counseling and advice on procreation +C2910716|T033|HT|Z31.6|ICD10CM|Encounter for general counseling and advice on procreation|Encounter for general counseling and advice on procreation +C0496640|T033|PT|Z31.6|ICD10AE|General counseling and advice on procreation|General counseling and advice on procreation +C0496640|T033|PT|Z31.6|ICD10|General counselling and advice on procreation|General counselling and advice on procreation +C1955579|T033|AB|Z31.61|ICD10CM|Procreat counseling and advice using natural family planning|Procreat counseling and advice using natural family planning +C1955579|T033|PT|Z31.61|ICD10CM|Procreative counseling and advice using natural family planning|Procreative counseling and advice using natural family planning +C2712547|T033|AB|Z31.62|ICD10CM|Encounter for fertility preservation counseling|Encounter for fertility preservation counseling +C2712547|T033|PT|Z31.62|ICD10CM|Encounter for fertility preservation counseling|Encounter for fertility preservation counseling +C2712866|T033|ET|Z31.62|ICD10CM|Encounter for fertility preservation counseling prior to cancer therapy|Encounter for fertility preservation counseling prior to cancer therapy +C2712867|T033|ET|Z31.62|ICD10CM|Encounter for fertility preservation counseling prior to surgical removal of gonads|Encounter for fertility preservation counseling prior to surgical removal of gonads +C2910717|T033|AB|Z31.69|ICD10CM|Encounter for oth general cnsl and advice on procreation|Encounter for oth general cnsl and advice on procreation +C2910717|T033|PT|Z31.69|ICD10CM|Encounter for other general counseling and advice on procreation|Encounter for other general counseling and advice on procreation +C4270783|T033|PT|Z31.7|ICD10CM|Encounter for procreative management and counseling for gestational carrier|Encounter for procreative management and counseling for gestational carrier +C4270783|T033|AB|Z31.7|ICD10CM|Enctr for pro mgmt and counseling for gestational carrier|Enctr for pro mgmt and counseling for gestational carrier +C2910718|T033|HT|Z31.8|ICD10CM|Encounter for other procreative management|Encounter for other procreative management +C2910718|T033|AB|Z31.8|ICD10CM|Encounter for other procreative management|Encounter for other procreative management +C0478559|T033|PT|Z31.8|ICD10|Other procreative management|Other procreative management +C2910719|T033|AB|Z31.81|ICD10CM|Encounter for male factor infertility in female patient|Encounter for male factor infertility in female patient +C2910719|T033|PT|Z31.81|ICD10CM|Encounter for male factor infertility in female patient|Encounter for male factor infertility in female patient +C2910720|T033|AB|Z31.82|ICD10CM|Encounter for Rh incompatibility status|Encounter for Rh incompatibility status +C2910720|T033|PT|Z31.82|ICD10CM|Encounter for Rh incompatibility status|Encounter for Rh incompatibility status +C1955581|T033|AB|Z31.83|ICD10CM|Encounter for assisted reprodctv fertility procedure cycle|Encounter for assisted reprodctv fertility procedure cycle +C1955581|T033|PT|Z31.83|ICD10CM|Encounter for assisted reproductive fertility procedure cycle|Encounter for assisted reproductive fertility procedure cycle +C1955582|T033|ET|Z31.83|ICD10CM|Patient undergoing in vitro fertilization cycle|Patient undergoing in vitro fertilization cycle +C2712548|T033|AB|Z31.84|ICD10CM|Encounter for fertility preservation procedure|Encounter for fertility preservation procedure +C2712548|T033|PT|Z31.84|ICD10CM|Encounter for fertility preservation procedure|Encounter for fertility preservation procedure +C2712656|T033|ET|Z31.84|ICD10CM|Encounter for fertility preservation procedure prior to cancer therapy|Encounter for fertility preservation procedure prior to cancer therapy +C2712657|T033|ET|Z31.84|ICD10CM|Encounter for fertility preservation procedure prior to surgical removal of gonads|Encounter for fertility preservation procedure prior to surgical removal of gonads +C2910718|T033|AB|Z31.89|ICD10CM|Encounter for other procreative management|Encounter for other procreative management +C2910718|T033|PT|Z31.89|ICD10CM|Encounter for other procreative management|Encounter for other procreative management +C2910721|T033|AB|Z31.9|ICD10CM|Encounter for procreative management, unspecified|Encounter for procreative management, unspecified +C2910721|T033|PT|Z31.9|ICD10CM|Encounter for procreative management, unspecified|Encounter for procreative management, unspecified +C0260576|T033|PT|Z31.9|ICD10|Procreative management, unspecified|Procreative management, unspecified +C2910722|T033|AB|Z32|ICD10CM|Encntr for preg test and chldbrth and childcare instruction|Encntr for preg test and chldbrth and childcare instruction +C2910722|T033|HT|Z32|ICD10CM|Encounter for pregnancy test and childbirth and childcare instruction|Encounter for pregnancy test and childbirth and childcare instruction +C0496641|T033|HT|Z32|ICD10|Pregnancy examination and test|Pregnancy examination and test +C2910723|T033|AB|Z32.0|ICD10CM|Encounter for pregnancy test|Encounter for pregnancy test +C2910723|T033|HT|Z32.0|ICD10CM|Encounter for pregnancy test|Encounter for pregnancy test +C0496642|T033|PT|Z32.0|ICD10|Pregnancy, not (yet) confirmed|Pregnancy, not (yet) confirmed +C2910723|T033|ET|Z32.00|ICD10CM|Encounter for pregnancy test NOS|Encounter for pregnancy test NOS +C2910724|T033|AB|Z32.00|ICD10CM|Encounter for pregnancy test, result unknown|Encounter for pregnancy test, result unknown +C2910724|T033|PT|Z32.00|ICD10CM|Encounter for pregnancy test, result unknown|Encounter for pregnancy test, result unknown +C2910725|T033|AB|Z32.01|ICD10CM|Encounter for pregnancy test, result positive|Encounter for pregnancy test, result positive +C2910725|T033|PT|Z32.01|ICD10CM|Encounter for pregnancy test, result positive|Encounter for pregnancy test, result positive +C2910726|T033|AB|Z32.02|ICD10CM|Encounter for pregnancy test, result negative|Encounter for pregnancy test, result negative +C2910726|T033|PT|Z32.02|ICD10CM|Encounter for pregnancy test, result negative|Encounter for pregnancy test, result negative +C0033010|T033|PT|Z32.1|ICD10|Pregnancy confirmed|Pregnancy confirmed +C2910727|T033|AB|Z32.2|ICD10CM|Encounter for childbirth instruction|Encounter for childbirth instruction +C2910727|T033|PT|Z32.2|ICD10CM|Encounter for childbirth instruction|Encounter for childbirth instruction +C2910729|T033|AB|Z32.3|ICD10CM|Encounter for childcare instruction|Encounter for childcare instruction +C2910729|T033|PT|Z32.3|ICD10CM|Encounter for childcare instruction|Encounter for childcare instruction +C2910728|T033|ET|Z32.3|ICD10CM|Encounter for prenatal or postpartum childcare instruction|Encounter for prenatal or postpartum childcare instruction +C0868560|T033|AB|Z33|ICD10CM|Pregnant state|Pregnant state +C0868560|T033|HT|Z33|ICD10CM|Pregnant state|Pregnant state +C0451636|T033|PT|Z33|ICD10|Pregnant state, incidental|Pregnant state, incidental +C0868560|T033|ET|Z33.1|ICD10CM|Pregnant state NOS|Pregnant state NOS +C0451636|T033|PT|Z33.1|ICD10CM|Pregnant state, incidental|Pregnant state, incidental +C0451636|T033|AB|Z33.1|ICD10CM|Pregnant state, incidental|Pregnant state, incidental +C2910730|T033|AB|Z33.2|ICD10CM|Encounter for elective termination of pregnancy|Encounter for elective termination of pregnancy +C2910730|T033|PT|Z33.2|ICD10CM|Encounter for elective termination of pregnancy|Encounter for elective termination of pregnancy +C4270784|T033|AB|Z33.3|ICD10CM|Pregnant state, gestational carrier|Pregnant state, gestational carrier +C4270784|T033|PT|Z33.3|ICD10CM|Pregnant state, gestational carrier|Pregnant state, gestational carrier +C2910742|T033|AB|Z34|ICD10CM|Encounter for supervision of normal pregnancy|Encounter for supervision of normal pregnancy +C2910742|T033|HT|Z34|ICD10CM|Encounter for supervision of normal pregnancy|Encounter for supervision of normal pregnancy +C0700573|T033|HT|Z34|ICD10|Supervision of normal pregnancy|Supervision of normal pregnancy +C2910732|T033|AB|Z34.0|ICD10CM|Encounter for supervision of normal first pregnancy|Encounter for supervision of normal first pregnancy +C2910732|T033|HT|Z34.0|ICD10CM|Encounter for supervision of normal first pregnancy|Encounter for supervision of normal first pregnancy +C0260550|T033|PT|Z34.0|ICD10|Supervision of normal first pregnancy|Supervision of normal first pregnancy +C2910733|T033|AB|Z34.00|ICD10CM|Encntr for suprvsn of normal first pregnancy, unsp trimester|Encntr for suprvsn of normal first pregnancy, unsp trimester +C2910733|T033|PT|Z34.00|ICD10CM|Encounter for supervision of normal first pregnancy, unspecified trimester|Encounter for supervision of normal first pregnancy, unspecified trimester +C2910734|T033|AB|Z34.01|ICD10CM|Encntr for suprvsn of normal first preg, first trimester|Encntr for suprvsn of normal first preg, first trimester +C2910734|T033|PT|Z34.01|ICD10CM|Encounter for supervision of normal first pregnancy, first trimester|Encounter for supervision of normal first pregnancy, first trimester +C2910735|T033|AB|Z34.02|ICD10CM|Encntr for suprvsn of normal first preg, second trimester|Encntr for suprvsn of normal first preg, second trimester +C2910735|T033|PT|Z34.02|ICD10CM|Encounter for supervision of normal first pregnancy, second trimester|Encounter for supervision of normal first pregnancy, second trimester +C2910736|T033|AB|Z34.03|ICD10CM|Encntr for suprvsn of normal first preg, third trimester|Encntr for suprvsn of normal first preg, third trimester +C2910736|T033|PT|Z34.03|ICD10CM|Encounter for supervision of normal first pregnancy, third trimester|Encounter for supervision of normal first pregnancy, third trimester +C2910737|T033|AB|Z34.8|ICD10CM|Encounter for supervision of other normal pregnancy|Encounter for supervision of other normal pregnancy +C2910737|T033|HT|Z34.8|ICD10CM|Encounter for supervision of other normal pregnancy|Encounter for supervision of other normal pregnancy +C0038843|T033|PT|Z34.8|ICD10|Supervision of other normal pregnancy|Supervision of other normal pregnancy +C2910738|T033|PT|Z34.80|ICD10CM|Encounter for supervision of other normal pregnancy, unspecified trimester|Encounter for supervision of other normal pregnancy, unspecified trimester +C2910738|T033|AB|Z34.80|ICD10CM|Encounter for suprvsn of normal pregnancy, unsp trimester|Encounter for suprvsn of normal pregnancy, unsp trimester +C2910739|T033|PT|Z34.81|ICD10CM|Encounter for supervision of other normal pregnancy, first trimester|Encounter for supervision of other normal pregnancy, first trimester +C2910739|T033|AB|Z34.81|ICD10CM|Encounter for suprvsn of normal pregnancy, first trimester|Encounter for suprvsn of normal pregnancy, first trimester +C2910740|T033|PT|Z34.82|ICD10CM|Encounter for supervision of other normal pregnancy, second trimester|Encounter for supervision of other normal pregnancy, second trimester +C2910740|T033|AB|Z34.82|ICD10CM|Encounter for suprvsn of normal pregnancy, second trimester|Encounter for suprvsn of normal pregnancy, second trimester +C2910741|T033|PT|Z34.83|ICD10CM|Encounter for supervision of other normal pregnancy, third trimester|Encounter for supervision of other normal pregnancy, third trimester +C2910741|T033|AB|Z34.83|ICD10CM|Encounter for suprvsn of normal pregnancy, third trimester|Encounter for suprvsn of normal pregnancy, third trimester +C2910742|T033|AB|Z34.9|ICD10CM|Encounter for supervision of normal pregnancy, unspecified|Encounter for supervision of normal pregnancy, unspecified +C2910742|T033|HT|Z34.9|ICD10CM|Encounter for supervision of normal pregnancy, unspecified|Encounter for supervision of normal pregnancy, unspecified +C0700573|T033|PT|Z34.9|ICD10|Supervision of normal pregnancy, unspecified|Supervision of normal pregnancy, unspecified +C2910743|T033|AB|Z34.90|ICD10CM|Encntr for suprvsn of normal pregnancy, unsp, unsp trimester|Encntr for suprvsn of normal pregnancy, unsp, unsp trimester +C2910743|T033|PT|Z34.90|ICD10CM|Encounter for supervision of normal pregnancy, unspecified, unspecified trimester|Encounter for supervision of normal pregnancy, unspecified, unspecified trimester +C2910744|T033|AB|Z34.91|ICD10CM|Encntr for suprvsn of normal preg, unsp, first trimester|Encntr for suprvsn of normal preg, unsp, first trimester +C2910744|T033|PT|Z34.91|ICD10CM|Encounter for supervision of normal pregnancy, unspecified, first trimester|Encounter for supervision of normal pregnancy, unspecified, first trimester +C2910745|T033|AB|Z34.92|ICD10CM|Encntr for suprvsn of normal preg, unsp, second trimester|Encntr for suprvsn of normal preg, unsp, second trimester +C2910745|T033|PT|Z34.92|ICD10CM|Encounter for supervision of normal pregnancy, unspecified, second trimester|Encounter for supervision of normal pregnancy, unspecified, second trimester +C2910746|T033|AB|Z34.93|ICD10CM|Encntr for suprvsn of normal preg, unsp, third trimester|Encntr for suprvsn of normal preg, unsp, third trimester +C2910746|T033|PT|Z34.93|ICD10CM|Encounter for supervision of normal pregnancy, unspecified, third trimester|Encounter for supervision of normal pregnancy, unspecified, third trimester +C0260551|T033|HT|Z35|ICD10|Supervision of high-risk pregnancy|Supervision of high-risk pregnancy +C0496643|T033|PT|Z35.0|ICD10|Supervision of pregnancy with history of infertility|Supervision of pregnancy with history of infertility +C0496644|T033|PT|Z35.1|ICD10|Supervision of pregnancy with history of abortive outcome|Supervision of pregnancy with history of abortive outcome +C0496645|T033|PT|Z35.2|ICD10|Supervision of pregnancy with other poor reproductive or obstetric history|Supervision of pregnancy with other poor reproductive or obstetric history +C0476570|T033|PT|Z35.3|ICD10|Supervision of pregnancy with history of insufficient antenatal care|Supervision of pregnancy with history of insufficient antenatal care +C0496646|T033|PT|Z35.4|ICD10|Supervision of pregnancy with grand multiparity|Supervision of pregnancy with grand multiparity +C0496647|T033|PT|Z35.5|ICD10|Supervision of elderly primigravida|Supervision of elderly primigravida +C0476571|T033|PT|Z35.6|ICD10|Supervision of very young primigravida|Supervision of very young primigravida +C0476572|T033|PT|Z35.7|ICD10|Supervision of high-risk pregnancy due to social problems|Supervision of high-risk pregnancy due to social problems +C0260559|T033|PT|Z35.8|ICD10|Supervision of other high-risk pregnancies|Supervision of other high-risk pregnancies +C0260551|T033|PT|Z35.9|ICD10|Supervision of high-risk pregnancy, unspecified|Supervision of high-risk pregnancy, unspecified +C0260591|T033|HT|Z36|ICD10|Antenatal screening|Antenatal screening +C1719685|T033|AB|Z36|ICD10CM|Encounter for antenatal screening of mother|Encounter for antenatal screening of mother +C1719685|T033|HT|Z36|ICD10CM|Encounter for antenatal screening of mother|Encounter for antenatal screening of mother +C4509544|T033|ET|Z36|ICD10CM|Encounter for placental sample (taken vaginally)|Encounter for placental sample (taken vaginally) +C0391992|T033|PT|Z36.0|ICD10|Antenatal screening for chromosomal anomalies|Antenatal screening for chromosomal anomalies +C4509545|T033|AB|Z36.0|ICD10CM|Encounter for antenatal screening for chromosomal anomalies|Encounter for antenatal screening for chromosomal anomalies +C4509545|T033|PT|Z36.0|ICD10CM|Encounter for antenatal screening for chromosomal anomalies|Encounter for antenatal screening for chromosomal anomalies +C0496648|T033|PT|Z36.1|ICD10|Antenatal screening for raised alphafetoprotein level|Antenatal screening for raised alphafetoprotein level +C4509547|T033|ET|Z36.1|ICD10CM|Encounter for antenatal screening for elevated maternal serum alphafetoprotein level|Encounter for antenatal screening for elevated maternal serum alphafetoprotein level +C4509546|T033|PT|Z36.1|ICD10CM|Encounter for antenatal screening for raised alphafetoprotein level|Encounter for antenatal screening for raised alphafetoprotein level +C4509546|T033|AB|Z36.1|ICD10CM|Enctr for antenat screen for raised alphafetoprotein level|Enctr for antenat screen for raised alphafetoprotein level +C4509548|T033|AB|Z36.2|ICD10CM|Encounter for other antenatal screening follow-up|Encounter for other antenatal screening follow-up +C4509548|T033|PT|Z36.2|ICD10CM|Encounter for other antenatal screening follow-up|Encounter for other antenatal screening follow-up +C4509549|T033|ET|Z36.2|ICD10CM|Non-visualized anatomy on a previous scan|Non-visualized anatomy on a previous scan +C0260594|T033|PT|Z36.2|ICD10|Other antenatal screening based on amniocentesis|Other antenatal screening based on amniocentesis +C0496649|T033|PT|Z36.3|ICD10|Antenatal screening for malformations using ultrasound and other physical methods|Antenatal screening for malformations using ultrasound and other physical methods +C4509550|T033|AB|Z36.3|ICD10CM|Encounter for antenatal screening for malformations|Encounter for antenatal screening for malformations +C4509550|T033|PT|Z36.3|ICD10CM|Encounter for antenatal screening for malformations|Encounter for antenatal screening for malformations +C4509551|T033|ET|Z36.3|ICD10CM|Screening for a suspected anomaly|Screening for a suspected anomaly +C0260596|T033|PT|Z36.4|ICD10|Antenatal screening for fetal growth retardation using ultrasound and other physical methods|Antenatal screening for fetal growth retardation using ultrasound and other physical methods +C4509552|T033|PT|Z36.4|ICD10CM|Encounter for antenatal screening for fetal growth retardation|Encounter for antenatal screening for fetal growth retardation +C4509552|T033|AB|Z36.4|ICD10CM|Enctr for antenatal screening for fetal growth retardation|Enctr for antenatal screening for fetal growth retardation +C4509553|T033|ET|Z36.4|ICD10CM|Intrauterine growth restriction (IUGR)/small-for-dates|Intrauterine growth restriction (IUGR)/small-for-dates +C4509554|T033|AB|Z36.5|ICD10CM|Encounter for antenatal screening for isoimmunization|Encounter for antenatal screening for isoimmunization +C4509554|T033|PT|Z36.5|ICD10CM|Encounter for antenatal screening for isoimmunization|Encounter for antenatal screening for isoimmunization +C4509555|T033|AB|Z36.8|ICD10CM|Encounter for other antenatal screening|Encounter for other antenatal screening +C4509555|T033|HT|Z36.8|ICD10CM|Encounter for other antenatal screening|Encounter for other antenatal screening +C0478561|T033|PT|Z36.8|ICD10|Other antenatal screening|Other antenatal screening +C4509591|T033|AB|Z36.81|ICD10CM|Encounter for antenatal screening for hydrops fetalis|Encounter for antenatal screening for hydrops fetalis +C4509591|T033|PT|Z36.81|ICD10CM|Encounter for antenatal screening for hydrops fetalis|Encounter for antenatal screening for hydrops fetalis +C4509556|T033|AB|Z36.82|ICD10CM|Encounter for antenatal screening for nuchal translucency|Encounter for antenatal screening for nuchal translucency +C4509556|T033|PT|Z36.82|ICD10CM|Encounter for antenatal screening for nuchal translucency|Encounter for antenatal screening for nuchal translucency +C4509557|T033|AB|Z36.83|ICD10CM|Encounter for fetal screening for congenital cardiac abnlt|Encounter for fetal screening for congenital cardiac abnlt +C4509557|T033|PT|Z36.83|ICD10CM|Encounter for fetal screening for congenital cardiac abnormalities|Encounter for fetal screening for congenital cardiac abnormalities +C4509558|T033|AB|Z36.84|ICD10CM|Encounter for antenatal screening for fetal lung maturity|Encounter for antenatal screening for fetal lung maturity +C4509558|T033|PT|Z36.84|ICD10CM|Encounter for antenatal screening for fetal lung maturity|Encounter for antenatal screening for fetal lung maturity +C4509559|T033|AB|Z36.85|ICD10CM|Encounter for antenatal screening for Streptococcus B|Encounter for antenatal screening for Streptococcus B +C4509559|T033|PT|Z36.85|ICD10CM|Encounter for antenatal screening for Streptococcus B|Encounter for antenatal screening for Streptococcus B +C4509560|T033|AB|Z36.86|ICD10CM|Encounter for antenatal screening for cervical length|Encounter for antenatal screening for cervical length +C4509560|T033|PT|Z36.86|ICD10CM|Encounter for antenatal screening for cervical length|Encounter for antenatal screening for cervical length +C4509561|T033|ET|Z36.86|ICD10CM|Screening for risk of pre-term labor|Screening for risk of pre-term labor +C4509562|T033|AB|Z36.87|ICD10CM|Encounter for antenatal screening for uncertain dates|Encounter for antenatal screening for uncertain dates +C4509562|T033|PT|Z36.87|ICD10CM|Encounter for antenatal screening for uncertain dates|Encounter for antenatal screening for uncertain dates +C4509563|T033|AB|Z36.88|ICD10CM|Encounter for antenatal screening for fetal macrosomia|Encounter for antenatal screening for fetal macrosomia +C4509563|T033|PT|Z36.88|ICD10CM|Encounter for antenatal screening for fetal macrosomia|Encounter for antenatal screening for fetal macrosomia +C4509564|T033|ET|Z36.88|ICD10CM|Screening for large-for-dates|Screening for large-for-dates +C4509565|T033|AB|Z36.89|ICD10CM|Encounter for other specified antenatal screening|Encounter for other specified antenatal screening +C4509565|T033|PT|Z36.89|ICD10CM|Encounter for other specified antenatal screening|Encounter for other specified antenatal screening +C4509566|T033|AB|Z36.8A|ICD10CM|Encounter for antenatal screening for other genetic defects|Encounter for antenatal screening for other genetic defects +C4509566|T033|PT|Z36.8A|ICD10CM|Encounter for antenatal screening for other genetic defects|Encounter for antenatal screening for other genetic defects +C0260591|T033|PT|Z36.9|ICD10|Antenatal screening, unspecified|Antenatal screening, unspecified +C4509567|T033|AB|Z36.9|ICD10CM|Encounter for antenatal screening, unspecified|Encounter for antenatal screening, unspecified +C4509567|T033|PT|Z36.9|ICD10CM|Encounter for antenatal screening, unspecified|Encounter for antenatal screening, unspecified +C1313895|T033|PT|Z37.0|ICD10|Single live birth|Single live birth +C1313895|T033|PT|Z37.0|ICD10CM|Single live birth|Single live birth +C1313895|T033|AB|Z37.0|ICD10CM|Single live birth|Single live birth +C1313896|T033|PT|Z37.1|ICD10CM|Single stillbirth|Single stillbirth +C1313896|T033|AB|Z37.1|ICD10CM|Single stillbirth|Single stillbirth +C1313896|T033|PT|Z37.1|ICD10|Single stillbirth|Single stillbirth +C0481459|T033|PT|Z37.2|ICD10|Twins, both liveborn|Twins, both liveborn +C0481459|T033|PT|Z37.2|ICD10CM|Twins, both liveborn|Twins, both liveborn +C0481459|T033|AB|Z37.2|ICD10CM|Twins, both liveborn|Twins, both liveborn +C0481466|T033|PT|Z37.3|ICD10CM|Twins, one liveborn and one stillborn|Twins, one liveborn and one stillborn +C0481466|T033|AB|Z37.3|ICD10CM|Twins, one liveborn and one stillborn|Twins, one liveborn and one stillborn +C0481466|T033|PT|Z37.3|ICD10|Twins, one liveborn and one stillborn|Twins, one liveborn and one stillborn +C0419377|T033|PT|Z37.4|ICD10|Twins, both stillborn|Twins, both stillborn +C0419377|T033|PT|Z37.4|ICD10CM|Twins, both stillborn|Twins, both stillborn +C0419377|T033|AB|Z37.4|ICD10CM|Twins, both stillborn|Twins, both stillborn +C0481669|T033|PT|Z37.5|ICD10|Other multiple births, all liveborn|Other multiple births, all liveborn +C0481669|T033|HT|Z37.5|ICD10CM|Other multiple births, all liveborn|Other multiple births, all liveborn +C0481669|T033|AB|Z37.5|ICD10CM|Other multiple births, all liveborn|Other multiple births, all liveborn +C2910747|T033|AB|Z37.50|ICD10CM|Multiple births, unspecified, all liveborn|Multiple births, unspecified, all liveborn +C2910747|T033|PT|Z37.50|ICD10CM|Multiple births, unspecified, all liveborn|Multiple births, unspecified, all liveborn +C2910748|T033|AB|Z37.51|ICD10CM|Triplets, all liveborn|Triplets, all liveborn +C2910748|T033|PT|Z37.51|ICD10CM|Triplets, all liveborn|Triplets, all liveborn +C2910749|T033|AB|Z37.52|ICD10CM|Quadruplets, all liveborn|Quadruplets, all liveborn +C2910749|T033|PT|Z37.52|ICD10CM|Quadruplets, all liveborn|Quadruplets, all liveborn +C2910750|T033|AB|Z37.53|ICD10CM|Quintuplets, all liveborn|Quintuplets, all liveborn +C2910750|T033|PT|Z37.53|ICD10CM|Quintuplets, all liveborn|Quintuplets, all liveborn +C2910751|T033|AB|Z37.54|ICD10CM|Sextuplets, all liveborn|Sextuplets, all liveborn +C2910751|T033|PT|Z37.54|ICD10CM|Sextuplets, all liveborn|Sextuplets, all liveborn +C0481669|T033|PT|Z37.59|ICD10CM|Other multiple births, all liveborn|Other multiple births, all liveborn +C0481669|T033|AB|Z37.59|ICD10CM|Other multiple births, all liveborn|Other multiple births, all liveborn +C0481670|T033|HT|Z37.6|ICD10CM|Other multiple births, some liveborn|Other multiple births, some liveborn +C0481670|T033|AB|Z37.6|ICD10CM|Other multiple births, some liveborn|Other multiple births, some liveborn +C0481670|T033|PT|Z37.6|ICD10|Other multiple births, some liveborn|Other multiple births, some liveborn +C2910752|T033|AB|Z37.60|ICD10CM|Multiple births, unspecified, some liveborn|Multiple births, unspecified, some liveborn +C2910752|T033|PT|Z37.60|ICD10CM|Multiple births, unspecified, some liveborn|Multiple births, unspecified, some liveborn +C2910753|T033|AB|Z37.61|ICD10CM|Triplets, some liveborn|Triplets, some liveborn +C2910753|T033|PT|Z37.61|ICD10CM|Triplets, some liveborn|Triplets, some liveborn +C2910754|T033|AB|Z37.62|ICD10CM|Quadruplets, some liveborn|Quadruplets, some liveborn +C2910754|T033|PT|Z37.62|ICD10CM|Quadruplets, some liveborn|Quadruplets, some liveborn +C2910755|T033|AB|Z37.63|ICD10CM|Quintuplets, some liveborn|Quintuplets, some liveborn +C2910755|T033|PT|Z37.63|ICD10CM|Quintuplets, some liveborn|Quintuplets, some liveborn +C2910756|T033|AB|Z37.64|ICD10CM|Sextuplets, some liveborn|Sextuplets, some liveborn +C2910756|T033|PT|Z37.64|ICD10CM|Sextuplets, some liveborn|Sextuplets, some liveborn +C0481670|T033|AB|Z37.69|ICD10CM|Other multiple births, some liveborn|Other multiple births, some liveborn +C0481670|T033|PT|Z37.69|ICD10CM|Other multiple births, some liveborn|Other multiple births, some liveborn +C0481671|T033|PT|Z37.7|ICD10CM|Other multiple births, all stillborn|Other multiple births, all stillborn +C0481671|T033|AB|Z37.7|ICD10CM|Other multiple births, all stillborn|Other multiple births, all stillborn +C0481671|T033|PT|Z37.7|ICD10|Other multiple births, all stillborn|Other multiple births, all stillborn +C2015861|T033|ET|Z37.9|ICD10CM|Multiple birth NOS|Multiple birth NOS +C2235729|T033|ET|Z37.9|ICD10CM|Single birth NOS|Single birth NOS +C0496653|T033|HT|Z38|ICD10|Liveborn infants according to place of birth|Liveborn infants according to place of birth +C2910757|T033|AB|Z38|ICD10CM|Liveborn infants according to place of birth and type of del|Liveborn infants according to place of birth and type of del +C2910757|T033|HT|Z38|ICD10CM|Liveborn infants according to place of birth and type of delivery|Liveborn infants according to place of birth and type of delivery +C2910758|T033|ET|Z38.0|ICD10CM|Single liveborn infant, born in birthing center or other health care facility|Single liveborn infant, born in birthing center or other health care facility +C2910759|T033|AB|Z38.0|ICD10CM|Single liveborn infant, born in hospital|Single liveborn infant, born in hospital +C2910759|T033|HT|Z38.0|ICD10CM|Single liveborn infant, born in hospital|Single liveborn infant, born in hospital +C0481463|T033|PT|Z38.0|ICD10|Singleton, born in hospital|Singleton, born in hospital +C2910760|T033|AB|Z38.00|ICD10CM|Single liveborn infant, delivered vaginally|Single liveborn infant, delivered vaginally +C2910760|T033|PT|Z38.00|ICD10CM|Single liveborn infant, delivered vaginally|Single liveborn infant, delivered vaginally +C2910761|T033|AB|Z38.01|ICD10CM|Single liveborn infant, delivered by cesarean|Single liveborn infant, delivered by cesarean +C2910761|T033|PT|Z38.01|ICD10CM|Single liveborn infant, delivered by cesarean|Single liveborn infant, delivered by cesarean +C2910762|T033|AB|Z38.1|ICD10CM|Single liveborn infant, born outside hospital|Single liveborn infant, born outside hospital +C2910762|T033|PT|Z38.1|ICD10CM|Single liveborn infant, born outside hospital|Single liveborn infant, born outside hospital +C0496654|T033|PT|Z38.1|ICD10|Singleton, born outside hospital|Singleton, born outside hospital +C2910763|T033|ET|Z38.2|ICD10CM|Single liveborn infant NOS|Single liveborn infant NOS +C2910764|T033|AB|Z38.2|ICD10CM|Single liveborn infant, unspecified as to place of birth|Single liveborn infant, unspecified as to place of birth +C2910764|T033|PT|Z38.2|ICD10CM|Single liveborn infant, unspecified as to place of birth|Single liveborn infant, unspecified as to place of birth +C0496655|T033|PT|Z38.2|ICD10|Singleton, unspecified as to place of birth|Singleton, unspecified as to place of birth +C2746034|T033|AB|Z38.3|ICD10CM|Twin liveborn infant, born in hospital|Twin liveborn infant, born in hospital +C2746034|T033|HT|Z38.3|ICD10CM|Twin liveborn infant, born in hospital|Twin liveborn infant, born in hospital +C0496656|T033|PT|Z38.3|ICD10|Twin, born in hospital|Twin, born in hospital +C2910765|T033|AB|Z38.30|ICD10CM|Twin liveborn infant, delivered vaginally|Twin liveborn infant, delivered vaginally +C2910765|T033|PT|Z38.30|ICD10CM|Twin liveborn infant, delivered vaginally|Twin liveborn infant, delivered vaginally +C2910766|T033|AB|Z38.31|ICD10CM|Twin liveborn infant, delivered by cesarean|Twin liveborn infant, delivered by cesarean +C2910766|T033|PT|Z38.31|ICD10CM|Twin liveborn infant, delivered by cesarean|Twin liveborn infant, delivered by cesarean +C2746035|T033|AB|Z38.4|ICD10CM|Twin liveborn infant, born outside hospital|Twin liveborn infant, born outside hospital +C2746035|T033|PT|Z38.4|ICD10CM|Twin liveborn infant, born outside hospital|Twin liveborn infant, born outside hospital +C0496657|T033|PT|Z38.4|ICD10|Twin, born outside hospital|Twin, born outside hospital +C2910767|T033|AB|Z38.5|ICD10CM|Twin liveborn infant, unspecified as to place of birth|Twin liveborn infant, unspecified as to place of birth +C2910767|T033|PT|Z38.5|ICD10CM|Twin liveborn infant, unspecified as to place of birth|Twin liveborn infant, unspecified as to place of birth +C0496658|T033|PT|Z38.5|ICD10|Twin, unspecified as to place of birth|Twin, unspecified as to place of birth +C0478564|T033|AB|Z38.6|ICD10CM|Other multiple liveborn infant, born in hospital|Other multiple liveborn infant, born in hospital +C0478564|T033|HT|Z38.6|ICD10CM|Other multiple liveborn infant, born in hospital|Other multiple liveborn infant, born in hospital +C0496659|T033|PT|Z38.6|ICD10|Other multiple, born in hospital|Other multiple, born in hospital +C2910768|T033|AB|Z38.61|ICD10CM|Triplet liveborn infant, delivered vaginally|Triplet liveborn infant, delivered vaginally +C2910768|T033|PT|Z38.61|ICD10CM|Triplet liveborn infant, delivered vaginally|Triplet liveborn infant, delivered vaginally +C2910769|T033|AB|Z38.62|ICD10CM|Triplet liveborn infant, delivered by cesarean|Triplet liveborn infant, delivered by cesarean +C2910769|T033|PT|Z38.62|ICD10CM|Triplet liveborn infant, delivered by cesarean|Triplet liveborn infant, delivered by cesarean +C2910770|T033|AB|Z38.63|ICD10CM|Quadruplet liveborn infant, delivered vaginally|Quadruplet liveborn infant, delivered vaginally +C2910770|T033|PT|Z38.63|ICD10CM|Quadruplet liveborn infant, delivered vaginally|Quadruplet liveborn infant, delivered vaginally +C2910771|T033|AB|Z38.64|ICD10CM|Quadruplet liveborn infant, delivered by cesarean|Quadruplet liveborn infant, delivered by cesarean +C2910771|T033|PT|Z38.64|ICD10CM|Quadruplet liveborn infant, delivered by cesarean|Quadruplet liveborn infant, delivered by cesarean +C2910772|T033|AB|Z38.65|ICD10CM|Quintuplet liveborn infant, delivered vaginally|Quintuplet liveborn infant, delivered vaginally +C2910772|T033|PT|Z38.65|ICD10CM|Quintuplet liveborn infant, delivered vaginally|Quintuplet liveborn infant, delivered vaginally +C2910773|T033|AB|Z38.66|ICD10CM|Quintuplet liveborn infant, delivered by cesarean|Quintuplet liveborn infant, delivered by cesarean +C2910773|T033|PT|Z38.66|ICD10CM|Quintuplet liveborn infant, delivered by cesarean|Quintuplet liveborn infant, delivered by cesarean +C2910774|T033|AB|Z38.68|ICD10CM|Other multiple liveborn infant, delivered vaginally|Other multiple liveborn infant, delivered vaginally +C2910774|T033|PT|Z38.68|ICD10CM|Other multiple liveborn infant, delivered vaginally|Other multiple liveborn infant, delivered vaginally +C2910775|T033|AB|Z38.69|ICD10CM|Other multiple liveborn infant, delivered by cesarean|Other multiple liveborn infant, delivered by cesarean +C2910775|T033|PT|Z38.69|ICD10CM|Other multiple liveborn infant, delivered by cesarean|Other multiple liveborn infant, delivered by cesarean +C0478565|T033|AB|Z38.7|ICD10CM|Other multiple liveborn infant, born outside hospital|Other multiple liveborn infant, born outside hospital +C0478565|T033|PT|Z38.7|ICD10CM|Other multiple liveborn infant, born outside hospital|Other multiple liveborn infant, born outside hospital +C0496660|T033|PT|Z38.7|ICD10|Other multiple, born outside hospital|Other multiple, born outside hospital +C2910776|T033|AB|Z38.8|ICD10CM|Other multiple liveborn infant, unsp as to place of birth|Other multiple liveborn infant, unsp as to place of birth +C2910776|T033|PT|Z38.8|ICD10CM|Other multiple liveborn infant, unspecified as to place of birth|Other multiple liveborn infant, unspecified as to place of birth +C0496661|T033|PT|Z38.8|ICD10|Other multiple, unspecified as to place of birth|Other multiple, unspecified as to place of birth +C2910777|T033|AB|Z39|ICD10CM|Encounter for maternal postpartum care and examination|Encounter for maternal postpartum care and examination +C2910777|T033|HT|Z39|ICD10CM|Encounter for maternal postpartum care and examination|Encounter for maternal postpartum care and examination +C0260561|T033|HT|Z39|ICD10|Postpartum care and examination|Postpartum care and examination +C0496662|T033|PT|Z39.0|ICD10|Care and examination immediately after delivery|Care and examination immediately after delivery +C2910778|T033|ET|Z39.0|ICD10CM|Care and observation in uncomplicated cases when the delivery occurs outside a healthcare facility|Care and observation in uncomplicated cases when the delivery occurs outside a healthcare facility +C2910779|T033|AB|Z39.0|ICD10CM|Encntr for care and exam of mother immediately after del|Encntr for care and exam of mother immediately after del +C2910779|T033|PT|Z39.0|ICD10CM|Encounter for care and examination of mother immediately after delivery|Encounter for care and examination of mother immediately after delivery +C2910781|T033|AB|Z39.1|ICD10CM|Encounter for care and examination of lactating mother|Encounter for care and examination of lactating mother +C2910781|T033|PT|Z39.1|ICD10CM|Encounter for care and examination of lactating mother|Encounter for care and examination of lactating mother +C2910780|T033|ET|Z39.1|ICD10CM|Encounter for supervision of lactation|Encounter for supervision of lactation +C0260564|T033|PT|Z39.2|ICD10CM|Encounter for routine postpartum follow-up|Encounter for routine postpartum follow-up +C0260564|T033|AB|Z39.2|ICD10CM|Encounter for routine postpartum follow-up|Encounter for routine postpartum follow-up +C0260564|T033|PT|Z39.2|ICD10|Routine postpartum follow-up|Routine postpartum follow-up +C1135241|T033|AB|Z3A|ICD10CM|Weeks of gestation|Weeks of gestation +C1135241|T033|HT|Z3A|ICD10CM|Weeks of gestation|Weeks of gestation +C3264081|T033|AB|Z3A.0|ICD10CM|Weeks of gestation of pregnancy, unsp or less than 10 weeks|Weeks of gestation of pregnancy, unsp or less than 10 weeks +C3264081|T033|HT|Z3A.0|ICD10CM|Weeks of gestation of pregnancy, unspecified or less than 10 weeks|Weeks of gestation of pregnancy, unspecified or less than 10 weeks +C3264082|T033|AB|Z3A.00|ICD10CM|Weeks of gestation of pregnancy not specified|Weeks of gestation of pregnancy not specified +C3264082|T033|PT|Z3A.00|ICD10CM|Weeks of gestation of pregnancy not specified|Weeks of gestation of pregnancy not specified +C3264083|T033|AB|Z3A.01|ICD10CM|Less than 8 weeks gestation of pregnancy|Less than 8 weeks gestation of pregnancy +C3264083|T033|PT|Z3A.01|ICD10CM|Less than 8 weeks gestation of pregnancy|Less than 8 weeks gestation of pregnancy +C3264084|T033|AB|Z3A.08|ICD10CM|8 weeks gestation of pregnancy|8 weeks gestation of pregnancy +C3264084|T033|PT|Z3A.08|ICD10CM|8 weeks gestation of pregnancy|8 weeks gestation of pregnancy +C3264085|T033|AB|Z3A.09|ICD10CM|9 weeks gestation of pregnancy|9 weeks gestation of pregnancy +C3264085|T033|PT|Z3A.09|ICD10CM|9 weeks gestation of pregnancy|9 weeks gestation of pregnancy +C3264086|T033|AB|Z3A.1|ICD10CM|Weeks of gestation of pregnancy, weeks 10-19|Weeks of gestation of pregnancy, weeks 10-19 +C3264086|T033|HT|Z3A.1|ICD10CM|Weeks of gestation of pregnancy, weeks 10-19|Weeks of gestation of pregnancy, weeks 10-19 +C3264087|T033|AB|Z3A.10|ICD10CM|10 weeks gestation of pregnancy|10 weeks gestation of pregnancy +C3264087|T033|PT|Z3A.10|ICD10CM|10 weeks gestation of pregnancy|10 weeks gestation of pregnancy +C3264088|T033|AB|Z3A.11|ICD10CM|11 weeks gestation of pregnancy|11 weeks gestation of pregnancy +C3264088|T033|PT|Z3A.11|ICD10CM|11 weeks gestation of pregnancy|11 weeks gestation of pregnancy +C3264089|T033|AB|Z3A.12|ICD10CM|12 weeks gestation of pregnancy|12 weeks gestation of pregnancy +C3264089|T033|PT|Z3A.12|ICD10CM|12 weeks gestation of pregnancy|12 weeks gestation of pregnancy +C3264090|T033|AB|Z3A.13|ICD10CM|13 weeks gestation of pregnancy|13 weeks gestation of pregnancy +C3264090|T033|PT|Z3A.13|ICD10CM|13 weeks gestation of pregnancy|13 weeks gestation of pregnancy +C3264091|T033|AB|Z3A.14|ICD10CM|14 weeks gestation of pregnancy|14 weeks gestation of pregnancy +C3264091|T033|PT|Z3A.14|ICD10CM|14 weeks gestation of pregnancy|14 weeks gestation of pregnancy +C3264092|T033|AB|Z3A.15|ICD10CM|15 weeks gestation of pregnancy|15 weeks gestation of pregnancy +C3264092|T033|PT|Z3A.15|ICD10CM|15 weeks gestation of pregnancy|15 weeks gestation of pregnancy +C3264093|T033|AB|Z3A.16|ICD10CM|16 weeks gestation of pregnancy|16 weeks gestation of pregnancy +C3264093|T033|PT|Z3A.16|ICD10CM|16 weeks gestation of pregnancy|16 weeks gestation of pregnancy +C3264094|T033|AB|Z3A.17|ICD10CM|17 weeks gestation of pregnancy|17 weeks gestation of pregnancy +C3264094|T033|PT|Z3A.17|ICD10CM|17 weeks gestation of pregnancy|17 weeks gestation of pregnancy +C3264095|T033|AB|Z3A.18|ICD10CM|18 weeks gestation of pregnancy|18 weeks gestation of pregnancy +C3264095|T033|PT|Z3A.18|ICD10CM|18 weeks gestation of pregnancy|18 weeks gestation of pregnancy +C3264096|T033|AB|Z3A.19|ICD10CM|19 weeks gestation of pregnancy|19 weeks gestation of pregnancy +C3264096|T033|PT|Z3A.19|ICD10CM|19 weeks gestation of pregnancy|19 weeks gestation of pregnancy +C3264097|T033|AB|Z3A.2|ICD10CM|Weeks of gestation of pregnancy, weeks 20-29|Weeks of gestation of pregnancy, weeks 20-29 +C3264097|T033|HT|Z3A.2|ICD10CM|Weeks of gestation of pregnancy, weeks 20-29|Weeks of gestation of pregnancy, weeks 20-29 +C3264098|T033|AB|Z3A.20|ICD10CM|20 weeks gestation of pregnancy|20 weeks gestation of pregnancy +C3264098|T033|PT|Z3A.20|ICD10CM|20 weeks gestation of pregnancy|20 weeks gestation of pregnancy +C3264099|T033|AB|Z3A.21|ICD10CM|21 weeks gestation of pregnancy|21 weeks gestation of pregnancy +C3264099|T033|PT|Z3A.21|ICD10CM|21 weeks gestation of pregnancy|21 weeks gestation of pregnancy +C3264100|T033|AB|Z3A.22|ICD10CM|22 weeks gestation of pregnancy|22 weeks gestation of pregnancy +C3264100|T033|PT|Z3A.22|ICD10CM|22 weeks gestation of pregnancy|22 weeks gestation of pregnancy +C3264101|T033|AB|Z3A.23|ICD10CM|23 weeks gestation of pregnancy|23 weeks gestation of pregnancy +C3264101|T033|PT|Z3A.23|ICD10CM|23 weeks gestation of pregnancy|23 weeks gestation of pregnancy +C3264102|T033|AB|Z3A.24|ICD10CM|24 weeks gestation of pregnancy|24 weeks gestation of pregnancy +C3264102|T033|PT|Z3A.24|ICD10CM|24 weeks gestation of pregnancy|24 weeks gestation of pregnancy +C3264103|T033|AB|Z3A.25|ICD10CM|25 weeks gestation of pregnancy|25 weeks gestation of pregnancy +C3264103|T033|PT|Z3A.25|ICD10CM|25 weeks gestation of pregnancy|25 weeks gestation of pregnancy +C3264104|T033|AB|Z3A.26|ICD10CM|26 weeks gestation of pregnancy|26 weeks gestation of pregnancy +C3264104|T033|PT|Z3A.26|ICD10CM|26 weeks gestation of pregnancy|26 weeks gestation of pregnancy +C3264105|T033|AB|Z3A.27|ICD10CM|27 weeks gestation of pregnancy|27 weeks gestation of pregnancy +C3264105|T033|PT|Z3A.27|ICD10CM|27 weeks gestation of pregnancy|27 weeks gestation of pregnancy +C3264106|T033|AB|Z3A.28|ICD10CM|28 weeks gestation of pregnancy|28 weeks gestation of pregnancy +C3264106|T033|PT|Z3A.28|ICD10CM|28 weeks gestation of pregnancy|28 weeks gestation of pregnancy +C3264107|T033|AB|Z3A.29|ICD10CM|29 weeks gestation of pregnancy|29 weeks gestation of pregnancy +C3264107|T033|PT|Z3A.29|ICD10CM|29 weeks gestation of pregnancy|29 weeks gestation of pregnancy +C3264108|T033|AB|Z3A.3|ICD10CM|Weeks of gestation of pregnancy, weeks 30-39|Weeks of gestation of pregnancy, weeks 30-39 +C3264108|T033|HT|Z3A.3|ICD10CM|Weeks of gestation of pregnancy, weeks 30-39|Weeks of gestation of pregnancy, weeks 30-39 +C3264109|T033|AB|Z3A.30|ICD10CM|30 weeks gestation of pregnancy|30 weeks gestation of pregnancy +C3264109|T033|PT|Z3A.30|ICD10CM|30 weeks gestation of pregnancy|30 weeks gestation of pregnancy +C3264110|T033|AB|Z3A.31|ICD10CM|31 weeks gestation of pregnancy|31 weeks gestation of pregnancy +C3264110|T033|PT|Z3A.31|ICD10CM|31 weeks gestation of pregnancy|31 weeks gestation of pregnancy +C3264111|T033|AB|Z3A.32|ICD10CM|32 weeks gestation of pregnancy|32 weeks gestation of pregnancy +C3264111|T033|PT|Z3A.32|ICD10CM|32 weeks gestation of pregnancy|32 weeks gestation of pregnancy +C3264112|T033|AB|Z3A.33|ICD10CM|33 weeks gestation of pregnancy|33 weeks gestation of pregnancy +C3264112|T033|PT|Z3A.33|ICD10CM|33 weeks gestation of pregnancy|33 weeks gestation of pregnancy +C3264113|T033|AB|Z3A.34|ICD10CM|34 weeks gestation of pregnancy|34 weeks gestation of pregnancy +C3264113|T033|PT|Z3A.34|ICD10CM|34 weeks gestation of pregnancy|34 weeks gestation of pregnancy +C3264114|T033|AB|Z3A.35|ICD10CM|35 weeks gestation of pregnancy|35 weeks gestation of pregnancy +C3264114|T033|PT|Z3A.35|ICD10CM|35 weeks gestation of pregnancy|35 weeks gestation of pregnancy +C3264115|T033|AB|Z3A.36|ICD10CM|36 weeks gestation of pregnancy|36 weeks gestation of pregnancy +C3264115|T033|PT|Z3A.36|ICD10CM|36 weeks gestation of pregnancy|36 weeks gestation of pregnancy +C3264116|T033|AB|Z3A.37|ICD10CM|37 weeks gestation of pregnancy|37 weeks gestation of pregnancy +C3264116|T033|PT|Z3A.37|ICD10CM|37 weeks gestation of pregnancy|37 weeks gestation of pregnancy +C3264117|T033|AB|Z3A.38|ICD10CM|38 weeks gestation of pregnancy|38 weeks gestation of pregnancy +C3264117|T033|PT|Z3A.38|ICD10CM|38 weeks gestation of pregnancy|38 weeks gestation of pregnancy +C3264118|T033|AB|Z3A.39|ICD10CM|39 weeks gestation of pregnancy|39 weeks gestation of pregnancy +C3264118|T033|PT|Z3A.39|ICD10CM|39 weeks gestation of pregnancy|39 weeks gestation of pregnancy +C3264119|T033|AB|Z3A.4|ICD10CM|Weeks of gestation of pregnancy, weeks 40 or greater|Weeks of gestation of pregnancy, weeks 40 or greater +C3264119|T033|HT|Z3A.4|ICD10CM|Weeks of gestation of pregnancy, weeks 40 or greater|Weeks of gestation of pregnancy, weeks 40 or greater +C3264120|T033|AB|Z3A.40|ICD10CM|40 weeks gestation of pregnancy|40 weeks gestation of pregnancy +C3264120|T033|PT|Z3A.40|ICD10CM|40 weeks gestation of pregnancy|40 weeks gestation of pregnancy +C3264121|T033|AB|Z3A.41|ICD10CM|41 weeks gestation of pregnancy|41 weeks gestation of pregnancy +C3264121|T033|PT|Z3A.41|ICD10CM|41 weeks gestation of pregnancy|41 weeks gestation of pregnancy +C3264122|T033|AB|Z3A.42|ICD10CM|42 weeks gestation of pregnancy|42 weeks gestation of pregnancy +C3264122|T033|PT|Z3A.42|ICD10CM|42 weeks gestation of pregnancy|42 weeks gestation of pregnancy +C3264123|T033|AB|Z3A.49|ICD10CM|Greater than 42 weeks gestation of pregnancy|Greater than 42 weeks gestation of pregnancy +C3264123|T033|PT|Z3A.49|ICD10CM|Greater than 42 weeks gestation of pregnancy|Greater than 42 weeks gestation of pregnancy +C2910791|T033|AB|Z40|ICD10CM|Encounter for prophylactic surgery|Encounter for prophylactic surgery +C2910791|T033|HT|Z40|ICD10CM|Encounter for prophylactic surgery|Encounter for prophylactic surgery +C0476661|T033|HT|Z40|ICD10|Prophylactic surgery|Prophylactic surgery +C2910784|T033|HT|Z40-Z53|ICD10CM|Encounters for other specific health care (Z40-Z53)|Encounters for other specific health care (Z40-Z53) +C1405476|T033|ET|Z40.0|ICD10CM|Admission for prophylactic organ removal|Admission for prophylactic organ removal +C2910785|T033|AB|Z40.0|ICD10CM|Encntr for prophylc surg for risks related to malig neoplm|Encntr for prophylc surg for risks related to malig neoplm +C2910785|T033|HT|Z40.0|ICD10CM|Encounter for prophylactic surgery for risk factors related to malignant neoplasms|Encounter for prophylactic surgery for risk factors related to malignant neoplasms +C0476662|T033|PT|Z40.0|ICD10|Prophylactic surgery for risk-factors related to malignant neoplasms|Prophylactic surgery for risk-factors related to malignant neoplasms +C2910786|T033|AB|Z40.00|ICD10CM|Encounter for prophylactic removal of unspecified organ|Encounter for prophylactic removal of unspecified organ +C2910786|T033|PT|Z40.00|ICD10CM|Encounter for prophylactic removal of unspecified organ|Encounter for prophylactic removal of unspecified organ +C2910787|T033|AB|Z40.01|ICD10CM|Encounter for prophylactic removal of breast|Encounter for prophylactic removal of breast +C2910787|T033|PT|Z40.01|ICD10CM|Encounter for prophylactic removal of breast|Encounter for prophylactic removal of breast +C2910788|T033|AB|Z40.02|ICD10CM|Encounter for prophylactic removal of ovary(s)|Encounter for prophylactic removal of ovary(s) +C2910788|T033|PT|Z40.02|ICD10CM|Encounter for prophylactic removal of ovary(s)|Encounter for prophylactic removal of ovary(s) +C4509568|T033|ET|Z40.02|ICD10CM|Encounter for prophylactic removal of ovary(s) and fallopian tube(s)|Encounter for prophylactic removal of ovary(s) and fallopian tube(s) +C4509569|T033|AB|Z40.03|ICD10CM|Encounter for prophylactic removal of fallopian tube(s)|Encounter for prophylactic removal of fallopian tube(s) +C4509569|T033|PT|Z40.03|ICD10CM|Encounter for prophylactic removal of fallopian tube(s)|Encounter for prophylactic removal of fallopian tube(s) +C2910789|T033|AB|Z40.09|ICD10CM|Encounter for prophylactic removal of other organ|Encounter for prophylactic removal of other organ +C2910789|T033|PT|Z40.09|ICD10CM|Encounter for prophylactic removal of other organ|Encounter for prophylactic removal of other organ +C2910790|T033|AB|Z40.8|ICD10CM|Encounter for other prophylactic surgery|Encounter for other prophylactic surgery +C2910790|T033|PT|Z40.8|ICD10CM|Encounter for other prophylactic surgery|Encounter for other prophylactic surgery +C2910791|T033|AB|Z40.9|ICD10CM|Encounter for prophylactic surgery, unspecified|Encounter for prophylactic surgery, unspecified +C2910791|T033|PT|Z40.9|ICD10CM|Encounter for prophylactic surgery, unspecified|Encounter for prophylactic surgery, unspecified +C0476661|T033|PT|Z40.9|ICD10|Prophylactic surgery, unspecified|Prophylactic surgery, unspecified +C2910792|T033|AB|Z41|ICD10CM|Encntr for proc for purposes oth than remedying health state|Encntr for proc for purposes oth than remedying health state +C2910792|T033|HT|Z41|ICD10CM|Encounter for procedures for purposes other than remedying health state|Encounter for procedures for purposes other than remedying health state +C0496664|T033|HT|Z41|ICD10|Procedures for purposes other than remedying health state|Procedures for purposes other than remedying health state +C0740181|T033|PT|Z41.0|ICD10|Hair transplant|Hair transplant +C2910793|T033|ET|Z41.1|ICD10CM|Encounter for cosmetic breast implant|Encounter for cosmetic breast implant +C2910794|T033|ET|Z41.1|ICD10CM|Encounter for cosmetic procedure|Encounter for cosmetic procedure +C2910795|T033|AB|Z41.1|ICD10CM|Encounter for cosmetic surgery|Encounter for cosmetic surgery +C2910795|T033|PT|Z41.1|ICD10CM|Encounter for cosmetic surgery|Encounter for cosmetic surgery +C0029711|T033|PT|Z41.1|ICD10|Other plastic surgery for unacceptable cosmetic appearance|Other plastic surgery for unacceptable cosmetic appearance +C1971613|T033|PT|Z41.2|ICD10CM|Encounter for routine and ritual male circumcision|Encounter for routine and ritual male circumcision +C1971613|T033|AB|Z41.2|ICD10CM|Encounter for routine and ritual male circumcision|Encounter for routine and ritual male circumcision +C1971613|T033|PT|Z41.2|ICD10|Routine and ritual circumcision|Routine and ritual circumcision +C0700645|T033|PT|Z41.3|ICD10|Ear piercing|Ear piercing +C0700645|T033|PT|Z41.3|ICD10CM|Encounter for ear piercing|Encounter for ear piercing +C0700645|T033|AB|Z41.3|ICD10CM|Encounter for ear piercing|Encounter for ear piercing +C2910798|T033|AB|Z41.8|ICD10CM|Encntr for oth proc for purpose oth than remedy health state|Encntr for oth proc for purpose oth than remedy health state +C2910798|T033|PT|Z41.8|ICD10CM|Encounter for other procedures for purposes other than remedying health state|Encounter for other procedures for purposes other than remedying health state +C0478569|T033|PT|Z41.8|ICD10|Other procedures for purposes other than remedying health state|Other procedures for purposes other than remedying health state +C2910799|T033|AB|Z41.9|ICD10CM|Encntr for proc for purpose oth than remedy hlth state, unsp|Encntr for proc for purpose oth than remedy hlth state, unsp +C2910799|T033|PT|Z41.9|ICD10CM|Encounter for procedure for purposes other than remedying health state, unspecified|Encounter for procedure for purposes other than remedying health state, unspecified +C2910800|T033|AB|Z42|ICD10CM|Encntr for plast/recnst surg fol med proc or healed injury|Encntr for plast/recnst surg fol med proc or healed injury +C2910800|T033|HT|Z42|ICD10CM|Encounter for plastic and reconstructive surgery following medical procedure or healed injury|Encounter for plastic and reconstructive surgery following medical procedure or healed injury +C2349879|T033|AB|Z42.1|ICD10CM|Encounter for breast reconstruction following mastectomy|Encounter for breast reconstruction following mastectomy +C2349879|T033|PT|Z42.1|ICD10CM|Encounter for breast reconstruction following mastectomy|Encounter for breast reconstruction following mastectomy +C1736127|T033|PT|Z42.2|ICD10|Follow-up care involving plastic surgery of other parts of trunk|Follow-up care involving plastic surgery of other parts of trunk +C2910801|T033|AB|Z42.8|ICD10CM|Encntr for oth plast/recnst surg fol med proc or heal injury|Encntr for oth plast/recnst surg fol med proc or heal injury +C2910801|T033|PT|Z42.8|ICD10CM|Encounter for other plastic and reconstructive surgery following medical procedure or healed injury|Encounter for other plastic and reconstructive surgery following medical procedure or healed injury +C0740203|T033|HT|Z43|ICD10|Attention to artificial openings|Attention to artificial openings +C4290510|T033|ET|Z43|ICD10CM|closure of artificial openings|closure of artificial openings +C2910807|T033|AB|Z43|ICD10CM|Encounter for attention to artificial openings|Encounter for attention to artificial openings +C2910807|T033|HT|Z43|ICD10CM|Encounter for attention to artificial openings|Encounter for attention to artificial openings +C4290511|T033|ET|Z43|ICD10CM|passage of sounds or bougies through artificial openings|passage of sounds or bougies through artificial openings +C4290512|T033|ET|Z43|ICD10CM|reforming artificial openings|reforming artificial openings +C4290513|T033|ET|Z43|ICD10CM|removal of catheter from artificial openings|removal of catheter from artificial openings +C4290514|T033|ET|Z43|ICD10CM|toilet or cleansing of artificial openings|toilet or cleansing of artificial openings +C0260760|T033|PT|Z43.0|ICD10|Attention to tracheostomy|Attention to tracheostomy +C0260760|T033|PT|Z43.0|ICD10CM|Encounter for attention to tracheostomy|Encounter for attention to tracheostomy +C0260760|T033|AB|Z43.0|ICD10CM|Encounter for attention to tracheostomy|Encounter for attention to tracheostomy +C0260761|T033|PT|Z43.1|ICD10|Attention to gastrostomy|Attention to gastrostomy +C0260761|T033|PT|Z43.1|ICD10CM|Encounter for attention to gastrostomy|Encounter for attention to gastrostomy +C0260761|T033|AB|Z43.1|ICD10CM|Encounter for attention to gastrostomy|Encounter for attention to gastrostomy +C0260762|T033|PT|Z43.2|ICD10|Attention to ileostomy|Attention to ileostomy +C0260762|T033|PT|Z43.2|ICD10CM|Encounter for attention to ileostomy|Encounter for attention to ileostomy +C0260762|T033|AB|Z43.2|ICD10CM|Encounter for attention to ileostomy|Encounter for attention to ileostomy +C0260763|T033|PT|Z43.3|ICD10|Attention to colostomy|Attention to colostomy +C0260763|T033|PT|Z43.3|ICD10CM|Encounter for attention to colostomy|Encounter for attention to colostomy +C0260763|T033|AB|Z43.3|ICD10CM|Encounter for attention to colostomy|Encounter for attention to colostomy +C0260764|T033|PT|Z43.4|ICD10|Attention to other artificial openings of digestive tract|Attention to other artificial openings of digestive tract +C0260764|T033|PT|Z43.4|ICD10CM|Encounter for attention to other artificial openings of digestive tract|Encounter for attention to other artificial openings of digestive tract +C0260764|T033|AB|Z43.4|ICD10CM|Encounter for attn to oth artif openings of digestive tract|Encounter for attn to oth artif openings of digestive tract +C0260765|T033|PT|Z43.5|ICD10|Attention to cystostomy|Attention to cystostomy +C0260765|T033|PT|Z43.5|ICD10CM|Encounter for attention to cystostomy|Encounter for attention to cystostomy +C0260765|T033|AB|Z43.5|ICD10CM|Encounter for attention to cystostomy|Encounter for attention to cystostomy +C0260766|T033|PT|Z43.6|ICD10|Attention to other artificial openings of urinary tract|Attention to other artificial openings of urinary tract +C2910814|T033|ET|Z43.6|ICD10CM|Encounter for attention to nephrostomy|Encounter for attention to nephrostomy +C0260766|T033|PT|Z43.6|ICD10CM|Encounter for attention to other artificial openings of urinary tract|Encounter for attention to other artificial openings of urinary tract +C2910815|T033|ET|Z43.6|ICD10CM|Encounter for attention to ureterostomy|Encounter for attention to ureterostomy +C2910816|T033|ET|Z43.6|ICD10CM|Encounter for attention to urethrostomy|Encounter for attention to urethrostomy +C0260766|T033|AB|Z43.6|ICD10CM|Encounter for attn to oth artif openings of urinary tract|Encounter for attn to oth artif openings of urinary tract +C0260767|T033|PT|Z43.7|ICD10|Attention to artificial vagina|Attention to artificial vagina +C0260767|T033|PT|Z43.7|ICD10CM|Encounter for attention to artificial vagina|Encounter for attention to artificial vagina +C0260767|T033|AB|Z43.7|ICD10CM|Encounter for attention to artificial vagina|Encounter for attention to artificial vagina +C2910819|T033|AB|Z43.8|ICD10CM|Encounter for attention to other artificial openings|Encounter for attention to other artificial openings +C2910819|T033|PT|Z43.8|ICD10CM|Encounter for attention to other artificial openings|Encounter for attention to other artificial openings +C0740203|T033|PT|Z43.9|ICD10|Attention to unspecified artificial opening|Attention to unspecified artificial opening +C0740203|T033|PT|Z43.9|ICD10CM|Encounter for attention to unspecified artificial opening|Encounter for attention to unspecified artificial opening +C0740203|T033|AB|Z43.9|ICD10CM|Encounter for attention to unspecified artificial opening|Encounter for attention to unspecified artificial opening +C2910857|T033|AB|Z44|ICD10CM|Encounter for fit/adjst of external prosthetic device|Encounter for fit/adjst of external prosthetic device +C2910857|T033|HT|Z44|ICD10CM|Encounter for fitting and adjustment of external prosthetic device|Encounter for fitting and adjustment of external prosthetic device +C0496665|T033|HT|Z44|ICD10|Fitting and adjustment of external prosthetic device|Fitting and adjustment of external prosthetic device +C4290515|T033|ET|Z44|ICD10CM|removal or replacement of external prosthetic device|removal or replacement of external prosthetic device +C2910823|T033|AB|Z44.0|ICD10CM|Encounter for fitting and adjustment of artificial arm|Encounter for fitting and adjustment of artificial arm +C2910823|T033|HT|Z44.0|ICD10CM|Encounter for fitting and adjustment of artificial arm|Encounter for fitting and adjustment of artificial arm +C0260738|T033|PT|Z44.0|ICD10|Fitting and adjustment of artificial arm (complete) (partial)|Fitting and adjustment of artificial arm (complete) (partial) +C2910824|T033|AB|Z44.00|ICD10CM|Encounter for fitting and adjustment of unsp artificial arm|Encounter for fitting and adjustment of unsp artificial arm +C2910824|T033|HT|Z44.00|ICD10CM|Encounter for fitting and adjustment of unspecified artificial arm|Encounter for fitting and adjustment of unspecified artificial arm +C2910825|T033|AB|Z44.001|ICD10CM|Encounter for fit/adjst of unsp right artificial arm|Encounter for fit/adjst of unsp right artificial arm +C2910825|T033|PT|Z44.001|ICD10CM|Encounter for fitting and adjustment of unspecified right artificial arm|Encounter for fitting and adjustment of unspecified right artificial arm +C2910826|T033|AB|Z44.002|ICD10CM|Encounter for fit/adjst of unsp left artificial arm|Encounter for fit/adjst of unsp left artificial arm +C2910826|T033|PT|Z44.002|ICD10CM|Encounter for fitting and adjustment of unspecified left artificial arm|Encounter for fitting and adjustment of unspecified left artificial arm +C2910827|T033|AB|Z44.009|ICD10CM|Encounter for fit/adjst of unsp artificial arm, unsp arm|Encounter for fit/adjst of unsp artificial arm, unsp arm +C2910827|T033|PT|Z44.009|ICD10CM|Encounter for fitting and adjustment of unspecified artificial arm, unspecified arm|Encounter for fitting and adjustment of unspecified artificial arm, unspecified arm +C2910828|T033|AB|Z44.01|ICD10CM|Encounter for fit/adjst of complete artificial arm|Encounter for fit/adjst of complete artificial arm +C2910828|T033|HT|Z44.01|ICD10CM|Encounter for fitting and adjustment of complete artificial arm|Encounter for fitting and adjustment of complete artificial arm +C2910829|T033|AB|Z44.011|ICD10CM|Encounter for fit/adjst of complete right artificial arm|Encounter for fit/adjst of complete right artificial arm +C2910829|T033|PT|Z44.011|ICD10CM|Encounter for fitting and adjustment of complete right artificial arm|Encounter for fitting and adjustment of complete right artificial arm +C2910830|T033|AB|Z44.012|ICD10CM|Encounter for fit/adjst of complete left artificial arm|Encounter for fit/adjst of complete left artificial arm +C2910830|T033|PT|Z44.012|ICD10CM|Encounter for fitting and adjustment of complete left artificial arm|Encounter for fitting and adjustment of complete left artificial arm +C2910831|T033|AB|Z44.019|ICD10CM|Encounter for fit/adjst of complete artificial arm, unsp arm|Encounter for fit/adjst of complete artificial arm, unsp arm +C2910831|T033|PT|Z44.019|ICD10CM|Encounter for fitting and adjustment of complete artificial arm, unspecified arm|Encounter for fitting and adjustment of complete artificial arm, unspecified arm +C2910832|T033|AB|Z44.02|ICD10CM|Encounter for fit/adjst of partial artificial arm|Encounter for fit/adjst of partial artificial arm +C2910832|T033|HT|Z44.02|ICD10CM|Encounter for fitting and adjustment of partial artificial arm|Encounter for fitting and adjustment of partial artificial arm +C2910833|T033|AB|Z44.021|ICD10CM|Encounter for fit/adjst of partial artificial right arm|Encounter for fit/adjst of partial artificial right arm +C2910833|T033|PT|Z44.021|ICD10CM|Encounter for fitting and adjustment of partial artificial right arm|Encounter for fitting and adjustment of partial artificial right arm +C2910834|T033|AB|Z44.022|ICD10CM|Encounter for fit/adjst of partial artificial left arm|Encounter for fit/adjst of partial artificial left arm +C2910834|T033|PT|Z44.022|ICD10CM|Encounter for fitting and adjustment of partial artificial left arm|Encounter for fitting and adjustment of partial artificial left arm +C2910835|T033|AB|Z44.029|ICD10CM|Encounter for fit/adjst of partial artificial arm, unsp arm|Encounter for fit/adjst of partial artificial arm, unsp arm +C2910835|T033|PT|Z44.029|ICD10CM|Encounter for fitting and adjustment of partial artificial arm, unspecified arm|Encounter for fitting and adjustment of partial artificial arm, unspecified arm +C2910836|T033|AB|Z44.1|ICD10CM|Encounter for fitting and adjustment of artificial leg|Encounter for fitting and adjustment of artificial leg +C2910836|T033|HT|Z44.1|ICD10CM|Encounter for fitting and adjustment of artificial leg|Encounter for fitting and adjustment of artificial leg +C0260739|T033|PT|Z44.1|ICD10|Fitting and adjustment of artificial leg (complete) (partial)|Fitting and adjustment of artificial leg (complete) (partial) +C2910837|T033|AB|Z44.10|ICD10CM|Encounter for fitting and adjustment of unsp artificial leg|Encounter for fitting and adjustment of unsp artificial leg +C2910837|T033|HT|Z44.10|ICD10CM|Encounter for fitting and adjustment of unspecified artificial leg|Encounter for fitting and adjustment of unspecified artificial leg +C2910838|T033|AB|Z44.101|ICD10CM|Encounter for fit/adjst of unsp right artificial leg|Encounter for fit/adjst of unsp right artificial leg +C2910838|T033|PT|Z44.101|ICD10CM|Encounter for fitting and adjustment of unspecified right artificial leg|Encounter for fitting and adjustment of unspecified right artificial leg +C2910839|T033|AB|Z44.102|ICD10CM|Encounter for fit/adjst of unsp left artificial leg|Encounter for fit/adjst of unsp left artificial leg +C2910839|T033|PT|Z44.102|ICD10CM|Encounter for fitting and adjustment of unspecified left artificial leg|Encounter for fitting and adjustment of unspecified left artificial leg +C2910840|T033|AB|Z44.109|ICD10CM|Encounter for fit/adjst of unsp artificial leg, unsp leg|Encounter for fit/adjst of unsp artificial leg, unsp leg +C2910840|T033|PT|Z44.109|ICD10CM|Encounter for fitting and adjustment of unspecified artificial leg, unspecified leg|Encounter for fitting and adjustment of unspecified artificial leg, unspecified leg +C2910841|T033|AB|Z44.11|ICD10CM|Encounter for fit/adjst of complete artificial leg|Encounter for fit/adjst of complete artificial leg +C2910841|T033|HT|Z44.11|ICD10CM|Encounter for fitting and adjustment of complete artificial leg|Encounter for fitting and adjustment of complete artificial leg +C2910842|T033|AB|Z44.111|ICD10CM|Encounter for fit/adjst of complete right artificial leg|Encounter for fit/adjst of complete right artificial leg +C2910842|T033|PT|Z44.111|ICD10CM|Encounter for fitting and adjustment of complete right artificial leg|Encounter for fitting and adjustment of complete right artificial leg +C2910843|T033|AB|Z44.112|ICD10CM|Encounter for fit/adjst of complete left artificial leg|Encounter for fit/adjst of complete left artificial leg +C2910843|T033|PT|Z44.112|ICD10CM|Encounter for fitting and adjustment of complete left artificial leg|Encounter for fitting and adjustment of complete left artificial leg +C2910844|T033|AB|Z44.119|ICD10CM|Encounter for fit/adjst of complete artificial leg, unsp leg|Encounter for fit/adjst of complete artificial leg, unsp leg +C2910844|T033|PT|Z44.119|ICD10CM|Encounter for fitting and adjustment of complete artificial leg, unspecified leg|Encounter for fitting and adjustment of complete artificial leg, unspecified leg +C2910845|T033|AB|Z44.12|ICD10CM|Encounter for fit/adjst of partial artificial leg|Encounter for fit/adjst of partial artificial leg +C2910845|T033|HT|Z44.12|ICD10CM|Encounter for fitting and adjustment of partial artificial leg|Encounter for fitting and adjustment of partial artificial leg +C2910846|T033|AB|Z44.121|ICD10CM|Encounter for fit/adjst of partial artificial right leg|Encounter for fit/adjst of partial artificial right leg +C2910846|T033|PT|Z44.121|ICD10CM|Encounter for fitting and adjustment of partial artificial right leg|Encounter for fitting and adjustment of partial artificial right leg +C2910847|T033|AB|Z44.122|ICD10CM|Encounter for fit/adjst of partial artificial left leg|Encounter for fit/adjst of partial artificial left leg +C2910847|T033|PT|Z44.122|ICD10CM|Encounter for fitting and adjustment of partial artificial left leg|Encounter for fitting and adjustment of partial artificial left leg +C2910848|T033|AB|Z44.129|ICD10CM|Encounter for fit/adjst of partial artificial leg, unsp leg|Encounter for fit/adjst of partial artificial leg, unsp leg +C2910848|T033|PT|Z44.129|ICD10CM|Encounter for fitting and adjustment of partial artificial leg, unspecified leg|Encounter for fitting and adjustment of partial artificial leg, unspecified leg +C2910850|T033|AB|Z44.2|ICD10CM|Encounter for fitting and adjustment of artificial eye|Encounter for fitting and adjustment of artificial eye +C2910850|T033|HT|Z44.2|ICD10CM|Encounter for fitting and adjustment of artificial eye|Encounter for fitting and adjustment of artificial eye +C1971617|T033|PT|Z44.2|ICD10|Fitting and adjustment of artificial eye|Fitting and adjustment of artificial eye +C2910850|T033|AB|Z44.20|ICD10CM|Encounter for fitting and adjustment of artificial eye, unsp|Encounter for fitting and adjustment of artificial eye, unsp +C2910850|T033|PT|Z44.20|ICD10CM|Encounter for fitting and adjustment of artificial eye, unspecified|Encounter for fitting and adjustment of artificial eye, unspecified +C2910851|T033|AB|Z44.21|ICD10CM|Encounter for fitting and adjustment of artificial right eye|Encounter for fitting and adjustment of artificial right eye +C2910851|T033|PT|Z44.21|ICD10CM|Encounter for fitting and adjustment of artificial right eye|Encounter for fitting and adjustment of artificial right eye +C2910852|T033|AB|Z44.22|ICD10CM|Encounter for fitting and adjustment of artificial left eye|Encounter for fitting and adjustment of artificial left eye +C2910852|T033|PT|Z44.22|ICD10CM|Encounter for fitting and adjustment of artificial left eye|Encounter for fitting and adjustment of artificial left eye +C2910853|T033|AB|Z44.3|ICD10CM|Encounter for fit/adjst of external breast prosthesis|Encounter for fit/adjst of external breast prosthesis +C2910853|T033|HT|Z44.3|ICD10CM|Encounter for fitting and adjustment of external breast prosthesis|Encounter for fitting and adjustment of external breast prosthesis +C0496666|T033|PT|Z44.3|ICD10|Fitting and adjustment of external breast prosthesis|Fitting and adjustment of external breast prosthesis +C2910854|T033|AB|Z44.30|ICD10CM|Encntr for fit/adjst of external breast prosth, unsp breast|Encntr for fit/adjst of external breast prosth, unsp breast +C2910854|T033|PT|Z44.30|ICD10CM|Encounter for fitting and adjustment of external breast prosthesis, unspecified breast|Encounter for fitting and adjustment of external breast prosthesis, unspecified breast +C2910855|T033|AB|Z44.31|ICD10CM|Encounter for fit/adjst of external right breast prosthesis|Encounter for fit/adjst of external right breast prosthesis +C2910855|T033|PT|Z44.31|ICD10CM|Encounter for fitting and adjustment of external right breast prosthesis|Encounter for fitting and adjustment of external right breast prosthesis +C2910856|T033|AB|Z44.32|ICD10CM|Encounter for fit/adjst of external left breast prosthesis|Encounter for fit/adjst of external left breast prosthesis +C2910856|T033|PT|Z44.32|ICD10CM|Encounter for fitting and adjustment of external left breast prosthesis|Encounter for fitting and adjustment of external left breast prosthesis +C2910857|T033|AB|Z44.8|ICD10CM|Encounter for fit/adjst of external prosthetic devices|Encounter for fit/adjst of external prosthetic devices +C2910857|T033|PT|Z44.8|ICD10CM|Encounter for fitting and adjustment of other external prosthetic devices|Encounter for fitting and adjustment of other external prosthetic devices +C2910858|T033|AB|Z44.9|ICD10CM|Encounter for fit/adjst of unsp external prosthetic device|Encounter for fit/adjst of unsp external prosthetic device +C2910858|T033|PT|Z44.9|ICD10CM|Encounter for fitting and adjustment of unspecified external prosthetic device|Encounter for fitting and adjustment of unspecified external prosthetic device +C0496665|T033|PT|Z44.9|ICD10|Fitting and adjustment of unspecified external prosthetic device|Fitting and adjustment of unspecified external prosthetic device +C0478588|T033|HT|Z45|ICD10|Adjustment and management of implanted device|Adjustment and management of implanted device +C2910860|T033|AB|Z45|ICD10CM|Encounter for adjustment and management of implanted device|Encounter for adjustment and management of implanted device +C2910860|T033|HT|Z45|ICD10CM|Encounter for adjustment and management of implanted device|Encounter for adjustment and management of implanted device +C4290516|T033|ET|Z45|ICD10CM|removal or replacement of implanted device|removal or replacement of implanted device +C0496667|T033|PT|Z45.0|ICD10|Adjustment and management of cardiac pacemaker|Adjustment and management of cardiac pacemaker +C2910861|T033|HT|Z45.0|ICD10CM|Encounter for adjustment and management of cardiac device|Encounter for adjustment and management of cardiac device +C2910861|T033|AB|Z45.0|ICD10CM|Encounter for adjustment and management of cardiac device|Encounter for adjustment and management of cardiac device +C2910862|T033|AB|Z45.01|ICD10CM|Encounter for adjustment and management of cardiac pacemaker|Encounter for adjustment and management of cardiac pacemaker +C2910862|T033|HT|Z45.01|ICD10CM|Encounter for adjustment and management of cardiac pacemaker|Encounter for adjustment and management of cardiac pacemaker +C4270785|T033|ET|Z45.01|ICD10CM|Encounter for adjustment and management of cardiac resynchronization therapy pacemaker (CRT-P)|Encounter for adjustment and management of cardiac resynchronization therapy pacemaker (CRT-P) +C2910864|T033|AB|Z45.010|ICD10CM|Encntr for checking and test of card pacemaker pulse gnrtr|Encntr for checking and test of card pacemaker pulse gnrtr +C2910864|T033|PT|Z45.010|ICD10CM|Encounter for checking and testing of cardiac pacemaker pulse generator [battery]|Encounter for checking and testing of cardiac pacemaker pulse generator [battery] +C2910863|T033|ET|Z45.010|ICD10CM|Encounter for replacing cardiac pacemaker pulse generator [battery]|Encounter for replacing cardiac pacemaker pulse generator [battery] +C2910865|T033|AB|Z45.018|ICD10CM|Encounter for adjust and mgmt oth prt cardiac pacemaker|Encounter for adjust and mgmt oth prt cardiac pacemaker +C2910865|T033|PT|Z45.018|ICD10CM|Encounter for adjustment and management of other part of cardiac pacemaker|Encounter for adjustment and management of other part of cardiac pacemaker +C2910866|T033|AB|Z45.02|ICD10CM|Encntr for adjust and mgmt of automatic implntbl card defib|Encntr for adjust and mgmt of automatic implntbl card defib +C2910866|T033|PT|Z45.02|ICD10CM|Encounter for adjustment and management of automatic implantable cardiac defibrillator|Encounter for adjustment and management of automatic implantable cardiac defibrillator +C4270786|T033|ET|Z45.02|ICD10CM|Encounter for adjustment and management of cardiac resynchronization therapy defibrillator (CRT-D)|Encounter for adjustment and management of cardiac resynchronization therapy defibrillator (CRT-D) +C2910867|T033|AB|Z45.09|ICD10CM|Encounter for adjustment and management of cardiac device|Encounter for adjustment and management of cardiac device +C2910867|T033|PT|Z45.09|ICD10CM|Encounter for adjustment and management of other cardiac device|Encounter for adjustment and management of other cardiac device +C0476654|T033|PT|Z45.1|ICD10|Adjustment and management of infusion pump|Adjustment and management of infusion pump +C0476654|T033|PT|Z45.1|ICD10CM|Encounter for adjustment and management of infusion pump|Encounter for adjustment and management of infusion pump +C0476654|T033|AB|Z45.1|ICD10CM|Encounter for adjustment and management of infusion pump|Encounter for adjustment and management of infusion pump +C0476655|T033|PT|Z45.2|ICD10|Adjustment and management of vascular access device|Adjustment and management of vascular access device +C0476655|T033|AB|Z45.2|ICD10CM|Encounter for adjustment and management of VAD|Encounter for adjustment and management of VAD +C0476655|T033|PT|Z45.2|ICD10CM|Encounter for adjustment and management of vascular access device|Encounter for adjustment and management of vascular access device +C2910869|T033|ET|Z45.2|ICD10CM|Encounter for adjustment and management of vascular catheters|Encounter for adjustment and management of vascular catheters +C0476656|T033|PT|Z45.3|ICD10|Adjustment and management of implanted hearing device|Adjustment and management of implanted hearing device +C2910871|T033|AB|Z45.3|ICD10CM|Encntr for adjust and mgmt of implnt dev of the specl senses|Encntr for adjust and mgmt of implnt dev of the specl senses +C2910871|T033|HT|Z45.3|ICD10CM|Encounter for adjustment and management of implanted devices of the special senses|Encounter for adjustment and management of implanted devices of the special senses +C2910872|T033|AB|Z45.31|ICD10CM|Encntr for adjust and mgmt of implnt visual substitution dev|Encntr for adjust and mgmt of implnt visual substitution dev +C2910872|T033|PT|Z45.31|ICD10CM|Encounter for adjustment and management of implanted visual substitution device|Encounter for adjustment and management of implanted visual substitution device +C2910876|T033|AB|Z45.32|ICD10CM|Encounter for adjust and management of implanted hear dev|Encounter for adjust and management of implanted hear dev +C2910876|T033|HT|Z45.32|ICD10CM|Encounter for adjustment and management of implanted hearing device|Encounter for adjustment and management of implanted hearing device +C2910874|T033|AB|Z45.320|ICD10CM|Encounter for adjust and mgmt of bone conduction device|Encounter for adjust and mgmt of bone conduction device +C2910874|T033|PT|Z45.320|ICD10CM|Encounter for adjustment and management of bone conduction device|Encounter for adjustment and management of bone conduction device +C2910875|T033|AB|Z45.321|ICD10CM|Encounter for adjustment and management of cochlear device|Encounter for adjustment and management of cochlear device +C2910875|T033|PT|Z45.321|ICD10CM|Encounter for adjustment and management of cochlear device|Encounter for adjustment and management of cochlear device +C2910876|T033|AB|Z45.328|ICD10CM|Encounter for adjust and management of implanted hear dev|Encounter for adjust and management of implanted hear dev +C2910876|T033|PT|Z45.328|ICD10CM|Encounter for adjustment and management of other implanted hearing device|Encounter for adjustment and management of other implanted hearing device +C2910881|T033|AB|Z45.4|ICD10CM|Encntr for adjust and mgmt of implanted nervous sys device|Encntr for adjust and mgmt of implanted nervous sys device +C2910881|T033|HT|Z45.4|ICD10CM|Encounter for adjustment and management of implanted nervous system device|Encounter for adjustment and management of implanted nervous system device +C2910878|T033|ET|Z45.41|ICD10CM|Encounter for adjustment and management of cerebral ventricular (communicating) shunt|Encounter for adjustment and management of cerebral ventricular (communicating) shunt +C2910879|T033|PT|Z45.41|ICD10CM|Encounter for adjustment and management of cerebrospinal fluid drainage device|Encounter for adjustment and management of cerebrospinal fluid drainage device +C2910879|T033|AB|Z45.41|ICD10CM|Encounter for adjustment and management of CSF drain dev|Encounter for adjustment and management of CSF drain dev +C5141170|T033|ET|Z45.42|ICD10CM|Encounter for adjustment and management of brain neurostimulator|Encounter for adjustment and management of brain neurostimulator +C5141171|T033|ET|Z45.42|ICD10CM|Encounter for adjustment and management of gastric neurostimulator|Encounter for adjustment and management of gastric neurostimulator +C5141111|T033|PT|Z45.42|ICD10CM|Encounter for adjustment and management of neurostimulator|Encounter for adjustment and management of neurostimulator +C5141111|T033|AB|Z45.42|ICD10CM|Encounter for adjustment and management of neurostimulator|Encounter for adjustment and management of neurostimulator +C5141172|T033|ET|Z45.42|ICD10CM|Encounter for adjustment and management of peripheral nerve neurostimulator|Encounter for adjustment and management of peripheral nerve neurostimulator +C5141173|T033|ET|Z45.42|ICD10CM|Encounter for adjustment and management of sacral nerve neurostimulator|Encounter for adjustment and management of sacral nerve neurostimulator +C5141174|T033|ET|Z45.42|ICD10CM|Encounter for adjustment and management of spinal cord neurostimulator|Encounter for adjustment and management of spinal cord neurostimulator +C5141175|T033|ET|Z45.42|ICD10CM|Encounter for adjustment and management of vagus nerve neurostimulator|Encounter for adjustment and management of vagus nerve neurostimulator +C2910881|T033|AB|Z45.49|ICD10CM|Encntr for adjust and mgmt of implanted nervous sys device|Encntr for adjust and mgmt of implanted nervous sys device +C2910881|T033|PT|Z45.49|ICD10CM|Encounter for adjustment and management of other implanted nervous system device|Encounter for adjustment and management of other implanted nervous system device +C2910882|T033|AB|Z45.8|ICD10CM|Encounter for adjustment and management of implanted devices|Encounter for adjustment and management of implanted devices +C2910882|T033|HT|Z45.8|ICD10CM|Encounter for adjustment and management of other implanted devices|Encounter for adjustment and management of other implanted devices +C2910884|T033|AB|Z45.81|ICD10CM|Encounter for adjustment or removal of breast implant|Encounter for adjustment or removal of breast implant +C2910884|T033|HT|Z45.81|ICD10CM|Encounter for adjustment or removal of breast implant|Encounter for adjustment or removal of breast implant +C2910883|T033|ET|Z45.81|ICD10CM|Encounter for elective implant exchange (different material) (different size)|Encounter for elective implant exchange (different material) (different size) +C5141176|T033|ET|Z45.81|ICD10CM|Encounter removal of tissue expander with or without synchronous insertion of permanent implant|Encounter removal of tissue expander with or without synchronous insertion of permanent implant +C2910885|T033|AB|Z45.811|ICD10CM|Encounter for adjustment or removal of right breast implant|Encounter for adjustment or removal of right breast implant +C2910885|T033|PT|Z45.811|ICD10CM|Encounter for adjustment or removal of right breast implant|Encounter for adjustment or removal of right breast implant +C2910886|T033|AB|Z45.812|ICD10CM|Encounter for adjustment or removal of left breast implant|Encounter for adjustment or removal of left breast implant +C2910886|T033|PT|Z45.812|ICD10CM|Encounter for adjustment or removal of left breast implant|Encounter for adjustment or removal of left breast implant +C2910887|T033|AB|Z45.819|ICD10CM|Encounter for adjustment or removal of unsp breast implant|Encounter for adjustment or removal of unsp breast implant +C2910887|T033|PT|Z45.819|ICD10CM|Encounter for adjustment or removal of unspecified breast implant|Encounter for adjustment or removal of unspecified breast implant +C2910888|T033|AB|Z45.82|ICD10CM|Encntr for adjust or removal of myringotomy device (tube)|Encntr for adjust or removal of myringotomy device (tube) +C2910888|T033|PT|Z45.82|ICD10CM|Encounter for adjustment or removal of myringotomy device (stent) (tube)|Encounter for adjustment or removal of myringotomy device (stent) (tube) +C2910882|T033|AB|Z45.89|ICD10CM|Encounter for adjustment and management of implanted devices|Encounter for adjustment and management of implanted devices +C2910882|T033|PT|Z45.89|ICD10CM|Encounter for adjustment and management of other implanted devices|Encounter for adjustment and management of other implanted devices +C0478588|T033|PT|Z45.9|ICD10|Adjustment and management of unspecified implanted device|Adjustment and management of unspecified implanted device +C2910889|T033|AB|Z45.9|ICD10CM|Encounter for adjust and management of unsp implanted device|Encounter for adjust and management of unsp implanted device +C2910889|T033|PT|Z45.9|ICD10CM|Encounter for adjustment and management of unspecified implanted device|Encounter for adjustment and management of unspecified implanted device +C2910891|T033|AB|Z46|ICD10CM|Encounter for fitting and adjustment of other devices|Encounter for fitting and adjustment of other devices +C2910891|T033|HT|Z46|ICD10CM|Encounter for fitting and adjustment of other devices|Encounter for fitting and adjustment of other devices +C4290517|T033|ET|Z46|ICD10CM|removal or replacement of other device|removal or replacement of other device +C2910892|T033|AB|Z46.0|ICD10CM|Encounter for fit/adjst of spectacles and contact lenses|Encounter for fit/adjst of spectacles and contact lenses +C2910892|T033|PT|Z46.0|ICD10CM|Encounter for fitting and adjustment of spectacles and contact lenses|Encounter for fitting and adjustment of spectacles and contact lenses +C0260747|T033|PT|Z46.0|ICD10|Fitting and adjustment of spectacles and contact lenses|Fitting and adjustment of spectacles and contact lenses +C2910893|T033|AB|Z46.1|ICD10CM|Encounter for fitting and adjustment of hearing aid|Encounter for fitting and adjustment of hearing aid +C2910893|T033|PT|Z46.1|ICD10CM|Encounter for fitting and adjustment of hearing aid|Encounter for fitting and adjustment of hearing aid +C0260748|T033|PT|Z46.1|ICD10|Fitting and adjustment of hearing aid|Fitting and adjustment of hearing aid +C2910894|T033|AB|Z46.2|ICD10CM|Encntr for fit/adjst of dev rel to nrv sys and specl senses|Encntr for fit/adjst of dev rel to nrv sys and specl senses +C2910894|T033|PT|Z46.2|ICD10CM|Encounter for fitting and adjustment of other devices related to nervous system and special senses|Encounter for fitting and adjustment of other devices related to nervous system and special senses +C0478576|T033|PT|Z46.2|ICD10|Fitting and adjustment of other devices related to nervous system and special senses|Fitting and adjustment of other devices related to nervous system and special senses +C2910896|T033|AB|Z46.3|ICD10CM|Encounter for fit/adjst of dental prosthetic device|Encounter for fit/adjst of dental prosthetic device +C2910896|T033|PT|Z46.3|ICD10CM|Encounter for fitting and adjustment of dental prosthetic device|Encounter for fitting and adjustment of dental prosthetic device +C2910895|T033|ET|Z46.3|ICD10CM|Encounter for fitting and adjustment of dentures|Encounter for fitting and adjustment of dentures +C0481749|T033|PT|Z46.3|ICD10|Fitting and adjustment of dental prosthetic device|Fitting and adjustment of dental prosthetic device +C0260750|T033|PT|Z46.4|ICD10CM|Encounter for fitting and adjustment of orthodontic device|Encounter for fitting and adjustment of orthodontic device +C0260750|T033|AB|Z46.4|ICD10CM|Encounter for fitting and adjustment of orthodontic device|Encounter for fitting and adjustment of orthodontic device +C0260750|T033|PT|Z46.4|ICD10|Fitting and adjustment of orthodontic device|Fitting and adjustment of orthodontic device +C2712802|T033|AB|Z46.5|ICD10CM|Encounter for fit/adjst of GI appliance and device|Encounter for fit/adjst of GI appliance and device +C2712802|T033|HT|Z46.5|ICD10CM|Encounter for fitting and adjustment of other gastrointestinal appliance and device|Encounter for fitting and adjustment of other gastrointestinal appliance and device +C0478577|T033|PT|Z46.5|ICD10|Fitting and adjustment of ileostomy and other intestinal appliances|Fitting and adjustment of ileostomy and other intestinal appliances +C2910897|T033|AB|Z46.51|ICD10CM|Encounter for fitting and adjustment of gastric lap band|Encounter for fitting and adjustment of gastric lap band +C2910897|T033|PT|Z46.51|ICD10CM|Encounter for fitting and adjustment of gastric lap band|Encounter for fitting and adjustment of gastric lap band +C2712802|T033|AB|Z46.59|ICD10CM|Encounter for fit/adjst of GI appliance and device|Encounter for fit/adjst of GI appliance and device +C2712802|T033|PT|Z46.59|ICD10CM|Encounter for fitting and adjustment of other gastrointestinal appliance and device|Encounter for fitting and adjustment of other gastrointestinal appliance and device +C2910898|T033|AB|Z46.6|ICD10CM|Encounter for fitting and adjustment of urinary device|Encounter for fitting and adjustment of urinary device +C2910898|T033|PT|Z46.6|ICD10CM|Encounter for fitting and adjustment of urinary device|Encounter for fitting and adjustment of urinary device +C0260752|T033|PT|Z46.6|ICD10|Fitting and adjustment of urinary device|Fitting and adjustment of urinary device +C2910899|T033|AB|Z46.8|ICD10CM|Encounter for fitting and adjustment of oth devices|Encounter for fitting and adjustment of oth devices +C2910899|T033|HT|Z46.8|ICD10CM|Encounter for fitting and adjustment of other specified devices|Encounter for fitting and adjustment of other specified devices +C2910902|T033|AB|Z46.81|ICD10CM|Encounter for fitting and adjustment of insulin pump|Encounter for fitting and adjustment of insulin pump +C2910902|T033|PT|Z46.81|ICD10CM|Encounter for fitting and adjustment of insulin pump|Encounter for fitting and adjustment of insulin pump +C2910900|T033|ET|Z46.81|ICD10CM|Encounter for insulin pump instruction and training|Encounter for insulin pump instruction and training +C2910901|T033|ET|Z46.81|ICD10CM|Encounter for insulin pump titration|Encounter for insulin pump titration +C2910903|T033|AB|Z46.82|ICD10CM|Encounter for fit/adjst of non-vascular catheter|Encounter for fit/adjst of non-vascular catheter +C2910903|T033|PT|Z46.82|ICD10CM|Encounter for fitting and adjustment of non-vascular catheter|Encounter for fitting and adjustment of non-vascular catheter +C2910899|T033|AB|Z46.89|ICD10CM|Encounter for fitting and adjustment of oth devices|Encounter for fitting and adjustment of oth devices +C2910899|T033|PT|Z46.89|ICD10CM|Encounter for fitting and adjustment of other specified devices|Encounter for fitting and adjustment of other specified devices +C2910904|T033|ET|Z46.89|ICD10CM|Encounter for fitting and adjustment of wheelchair|Encounter for fitting and adjustment of wheelchair +C2910905|T033|AB|Z46.9|ICD10CM|Encounter for fitting and adjustment of unspecified device|Encounter for fitting and adjustment of unspecified device +C2910905|T033|PT|Z46.9|ICD10CM|Encounter for fitting and adjustment of unspecified device|Encounter for fitting and adjustment of unspecified device +C0496668|T033|PT|Z46.9|ICD10|Fitting and adjustment of unspecified device|Fitting and adjustment of unspecified device +C0260758|T033|AB|Z47|ICD10CM|Orthopedic aftercare|Orthopedic aftercare +C0260758|T033|HT|Z47|ICD10CM|Orthopedic aftercare|Orthopedic aftercare +C2910906|T033|AB|Z47.1|ICD10CM|Aftercare following joint replacement surgery|Aftercare following joint replacement surgery +C2910906|T033|PT|Z47.1|ICD10CM|Aftercare following joint replacement surgery|Aftercare following joint replacement surgery +C1260461|T033|AB|Z47.2|ICD10CM|Encounter for removal of internal fixation device|Encounter for removal of internal fixation device +C1260461|T033|PT|Z47.2|ICD10CM|Encounter for removal of internal fixation device|Encounter for removal of internal fixation device +C3161153|T033|HT|Z47.3|ICD10CM|Aftercare following explantation of joint prosthesis|Aftercare following explantation of joint prosthesis +C3161153|T033|AB|Z47.3|ICD10CM|Aftercare following explantation of joint prosthesis|Aftercare following explantation of joint prosthesis +C3161245|T033|ET|Z47.3|ICD10CM|Aftercare following explantation of joint prosthesis, staged procedure|Aftercare following explantation of joint prosthesis, staged procedure +C3161246|T033|ET|Z47.3|ICD10CM|Encounter for joint prosthesis insertion following prior explantation of joint prosthesis|Encounter for joint prosthesis insertion following prior explantation of joint prosthesis +C3264124|T033|PT|Z47.31|ICD10CM|Aftercare following explantation of shoulder joint prosthesis|Aftercare following explantation of shoulder joint prosthesis +C3264124|T033|AB|Z47.31|ICD10CM|Aftercare following explantation of shoulder jt prosthesis|Aftercare following explantation of shoulder jt prosthesis +C3264125|T033|AB|Z47.32|ICD10CM|Aftercare following explantation of hip joint prosthesis|Aftercare following explantation of hip joint prosthesis +C3264125|T033|PT|Z47.32|ICD10CM|Aftercare following explantation of hip joint prosthesis|Aftercare following explantation of hip joint prosthesis +C3264126|T033|AB|Z47.33|ICD10CM|Aftercare following explantation of knee joint prosthesis|Aftercare following explantation of knee joint prosthesis +C3264126|T033|PT|Z47.33|ICD10CM|Aftercare following explantation of knee joint prosthesis|Aftercare following explantation of knee joint prosthesis +C2910907|T033|HT|Z47.8|ICD10CM|Encounter for other orthopedic aftercare|Encounter for other orthopedic aftercare +C2910907|T033|AB|Z47.8|ICD10CM|Encounter for other orthopedic aftercare|Encounter for other orthopedic aftercare +C2910908|T033|AB|Z47.81|ICD10CM|Encounter for orthopedic aftercare following surgical amp|Encounter for orthopedic aftercare following surgical amp +C2910908|T033|PT|Z47.81|ICD10CM|Encounter for orthopedic aftercare following surgical amputation|Encounter for orthopedic aftercare following surgical amputation +C2910909|T033|AB|Z47.82|ICD10CM|Encounter for orth aftercare following scoliosis surgery|Encounter for orth aftercare following scoliosis surgery +C2910909|T033|PT|Z47.82|ICD10CM|Encounter for orthopedic aftercare following scoliosis surgery|Encounter for orthopedic aftercare following scoliosis surgery +C2910907|T033|AB|Z47.89|ICD10CM|Encounter for other orthopedic aftercare|Encounter for other orthopedic aftercare +C2910907|T033|PT|Z47.89|ICD10CM|Encounter for other orthopedic aftercare|Encounter for other orthopedic aftercare +C0260758|T033|PT|Z47.9|ICD10|Orthopaedic follow-up care, unspecified|Orthopaedic follow-up care, unspecified +C0260758|T033|PT|Z47.9|ICD10AE|Orthopedic follow-up care, unspecified|Orthopedic follow-up care, unspecified +C2910910|T033|AB|Z48|ICD10CM|Encounter for other postprocedural aftercare|Encounter for other postprocedural aftercare +C2910910|T033|HT|Z48|ICD10CM|Encounter for other postprocedural aftercare|Encounter for other postprocedural aftercare +C0260781|T033|PT|Z48.0|ICD10|Attention to surgical dressings and sutures|Attention to surgical dressings and sutures +C2910911|T033|AB|Z48.0|ICD10CM|Encounter for attention to dressings, sutures and drains|Encounter for attention to dressings, sutures and drains +C2910911|T033|HT|Z48.0|ICD10CM|Encounter for attention to dressings, sutures and drains|Encounter for attention to dressings, sutures and drains +C1719690|T033|AB|Z48.00|ICD10CM|Encounter for change or removal of nonsurg wound dressing|Encounter for change or removal of nonsurg wound dressing +C1719690|T033|PT|Z48.00|ICD10CM|Encounter for change or removal of nonsurgical wound dressing|Encounter for change or removal of nonsurgical wound dressing +C1719691|T033|ET|Z48.00|ICD10CM|Encounter for change or removal of wound dressing NOS|Encounter for change or removal of wound dressing NOS +C1719692|T033|AB|Z48.01|ICD10CM|Encounter for change or removal of surgical wound dressing|Encounter for change or removal of surgical wound dressing +C1719692|T033|PT|Z48.01|ICD10CM|Encounter for change or removal of surgical wound dressing|Encounter for change or removal of surgical wound dressing +C1719727|T033|ET|Z48.02|ICD10CM|Encounter for removal of staples|Encounter for removal of staples +C1719693|T033|AB|Z48.02|ICD10CM|Encounter for removal of sutures|Encounter for removal of sutures +C1719693|T033|PT|Z48.02|ICD10CM|Encounter for removal of sutures|Encounter for removal of sutures +C2910912|T033|AB|Z48.03|ICD10CM|Encounter for change or removal of drains|Encounter for change or removal of drains +C2910912|T033|PT|Z48.03|ICD10CM|Encounter for change or removal of drains|Encounter for change or removal of drains +C2910913|T033|AB|Z48.1|ICD10CM|Encounter for planned postprocedural wound closure|Encounter for planned postprocedural wound closure +C2910913|T033|PT|Z48.1|ICD10CM|Encounter for planned postprocedural wound closure|Encounter for planned postprocedural wound closure +C2910914|T033|AB|Z48.2|ICD10CM|Encounter for aftercare following organ transplant|Encounter for aftercare following organ transplant +C2910914|T033|HT|Z48.2|ICD10CM|Encounter for aftercare following organ transplant|Encounter for aftercare following organ transplant +C2910915|T033|AB|Z48.21|ICD10CM|Encounter for aftercare following heart transplant|Encounter for aftercare following heart transplant +C2910915|T033|PT|Z48.21|ICD10CM|Encounter for aftercare following heart transplant|Encounter for aftercare following heart transplant +C2910916|T033|AB|Z48.22|ICD10CM|Encounter for aftercare following kidney transplant|Encounter for aftercare following kidney transplant +C2910916|T033|PT|Z48.22|ICD10CM|Encounter for aftercare following kidney transplant|Encounter for aftercare following kidney transplant +C2910917|T033|AB|Z48.23|ICD10CM|Encounter for aftercare following liver transplant|Encounter for aftercare following liver transplant +C2910917|T033|PT|Z48.23|ICD10CM|Encounter for aftercare following liver transplant|Encounter for aftercare following liver transplant +C2910918|T033|AB|Z48.24|ICD10CM|Encounter for aftercare following lung transplant|Encounter for aftercare following lung transplant +C2910918|T033|PT|Z48.24|ICD10CM|Encounter for aftercare following lung transplant|Encounter for aftercare following lung transplant +C2910919|T033|HT|Z48.28|ICD10CM|Encounter for aftercare following multiple organ transplant|Encounter for aftercare following multiple organ transplant +C2910919|T033|AB|Z48.28|ICD10CM|Encounter for aftercare following multiple organ transplant|Encounter for aftercare following multiple organ transplant +C2910920|T033|AB|Z48.280|ICD10CM|Encounter for aftercare following heart-lung transplant|Encounter for aftercare following heart-lung transplant +C2910920|T033|PT|Z48.280|ICD10CM|Encounter for aftercare following heart-lung transplant|Encounter for aftercare following heart-lung transplant +C2910919|T033|AB|Z48.288|ICD10CM|Encounter for aftercare following multiple organ transplant|Encounter for aftercare following multiple organ transplant +C2910919|T033|PT|Z48.288|ICD10CM|Encounter for aftercare following multiple organ transplant|Encounter for aftercare following multiple organ transplant +C2910921|T033|HT|Z48.29|ICD10CM|Encounter for aftercare following other organ transplant|Encounter for aftercare following other organ transplant +C2910921|T033|AB|Z48.29|ICD10CM|Encounter for aftercare following other organ transplant|Encounter for aftercare following other organ transplant +C2910922|T033|AB|Z48.290|ICD10CM|Encounter for aftercare following bone marrow transplant|Encounter for aftercare following bone marrow transplant +C2910922|T033|PT|Z48.290|ICD10CM|Encounter for aftercare following bone marrow transplant|Encounter for aftercare following bone marrow transplant +C2910921|T033|AB|Z48.298|ICD10CM|Encounter for aftercare following other organ transplant|Encounter for aftercare following other organ transplant +C2910921|T033|PT|Z48.298|ICD10CM|Encounter for aftercare following other organ transplant|Encounter for aftercare following other organ transplant +C1135298|T033|AB|Z48.3|ICD10CM|Aftercare following surgery for neoplasm|Aftercare following surgery for neoplasm +C1135298|T033|PT|Z48.3|ICD10CM|Aftercare following surgery for neoplasm|Aftercare following surgery for neoplasm +C2910923|T033|AB|Z48.8|ICD10CM|Encounter for other specified postprocedural aftercare|Encounter for other specified postprocedural aftercare +C2910923|T033|HT|Z48.8|ICD10CM|Encounter for other specified postprocedural aftercare|Encounter for other specified postprocedural aftercare +C2910924|T033|AB|Z48.81|ICD10CM|Encntr for surgical aftcr fol surgery on spcf body systems|Encntr for surgical aftcr fol surgery on spcf body systems +C2910924|T033|HT|Z48.81|ICD10CM|Encounter for surgical aftercare following surgery on specified body systems|Encounter for surgical aftercare following surgery on specified body systems +C2910925|T033|AB|Z48.810|ICD10CM|Encntr for surgical aftcr fol surgery on the sense organs|Encntr for surgical aftcr fol surgery on the sense organs +C2910925|T033|PT|Z48.810|ICD10CM|Encounter for surgical aftercare following surgery on the sense organs|Encounter for surgical aftercare following surgery on the sense organs +C2910926|T033|AB|Z48.811|ICD10CM|Encntr for surgical aftcr fol surgery on the nervous sys|Encntr for surgical aftcr fol surgery on the nervous sys +C2910926|T033|PT|Z48.811|ICD10CM|Encounter for surgical aftercare following surgery on the nervous system|Encounter for surgical aftercare following surgery on the nervous system +C2910927|T033|AB|Z48.812|ICD10CM|Encntr for surgical aftcr following surgery on the circ sys|Encntr for surgical aftcr following surgery on the circ sys +C2910927|T033|PT|Z48.812|ICD10CM|Encounter for surgical aftercare following surgery on the circulatory system|Encounter for surgical aftercare following surgery on the circulatory system +C2910928|T033|AB|Z48.813|ICD10CM|Encntr for surgical aftcr following surgery on the resp sys|Encntr for surgical aftcr following surgery on the resp sys +C2910928|T033|PT|Z48.813|ICD10CM|Encounter for surgical aftercare following surgery on the respiratory system|Encounter for surgical aftercare following surgery on the respiratory system +C2910929|T033|AB|Z48.814|ICD10CM|Encntr for surg aftcr fol surg on the teeth or oral cavity|Encntr for surg aftcr fol surg on the teeth or oral cavity +C2910929|T033|PT|Z48.814|ICD10CM|Encounter for surgical aftercare following surgery on the teeth or oral cavity|Encounter for surgical aftercare following surgery on the teeth or oral cavity +C2910930|T033|AB|Z48.815|ICD10CM|Encntr for surgical aftcr following surgery on the dgstv sys|Encntr for surgical aftcr following surgery on the dgstv sys +C2910930|T033|PT|Z48.815|ICD10CM|Encounter for surgical aftercare following surgery on the digestive system|Encounter for surgical aftercare following surgery on the digestive system +C2910931|T033|AB|Z48.816|ICD10CM|Encounter for surgical aftcr following surgery on the GU sys|Encounter for surgical aftcr following surgery on the GU sys +C2910931|T033|PT|Z48.816|ICD10CM|Encounter for surgical aftercare following surgery on the genitourinary system|Encounter for surgical aftercare following surgery on the genitourinary system +C2910932|T033|AB|Z48.817|ICD10CM|Encntr for surgical aftcr fol surgery on the skin, subcu|Encntr for surgical aftcr fol surgery on the skin, subcu +C2910932|T033|PT|Z48.817|ICD10CM|Encounter for surgical aftercare following surgery on the skin and subcutaneous tissue|Encounter for surgical aftercare following surgery on the skin and subcutaneous tissue +C2910933|T033|AB|Z48.89|ICD10CM|Encounter for other specified surgical aftercare|Encounter for other specified surgical aftercare +C2910933|T033|PT|Z48.89|ICD10CM|Encounter for other specified surgical aftercare|Encounter for other specified surgical aftercare +C0496673|T033|PT|Z48.9|ICD10|Surgical follow-up care, unspecified|Surgical follow-up care, unspecified +C2910934|T033|AB|Z49|ICD10CM|Encounter for care involving renal dialysis|Encounter for care involving renal dialysis +C2910934|T033|HT|Z49|ICD10CM|Encounter for care involving renal dialysis|Encounter for care involving renal dialysis +C2910935|T033|ET|Z49.0|ICD10CM|Encounter for dialysis instruction and training|Encounter for dialysis instruction and training +C0476657|T033|PT|Z49.0|ICD10|Preparatory care for dialysis|Preparatory care for dialysis +C2910936|T033|AB|Z49.0|ICD10CM|Preparatory care for renal dialysis|Preparatory care for renal dialysis +C2910936|T033|HT|Z49.0|ICD10CM|Preparatory care for renal dialysis|Preparatory care for renal dialysis +C2910939|T033|AB|Z49.01|ICD10CM|Encounter for fit/adjst of extracorporeal dialysis catheter|Encounter for fit/adjst of extracorporeal dialysis catheter +C2910939|T033|PT|Z49.01|ICD10CM|Encounter for fitting and adjustment of extracorporeal dialysis catheter|Encounter for fitting and adjustment of extracorporeal dialysis catheter +C2910937|T033|ET|Z49.01|ICD10CM|Removal or replacement of renal dialysis catheter|Removal or replacement of renal dialysis catheter +C2910938|T033|ET|Z49.01|ICD10CM|Toilet or cleansing of renal dialysis catheter|Toilet or cleansing of renal dialysis catheter +C2910940|T033|AB|Z49.02|ICD10CM|Encounter for fit/adjst of peritoneal dialysis catheter|Encounter for fit/adjst of peritoneal dialysis catheter +C2910940|T033|PT|Z49.02|ICD10CM|Encounter for fitting and adjustment of peritoneal dialysis catheter|Encounter for fitting and adjustment of peritoneal dialysis catheter +C0260771|T033|PT|Z49.1|ICD10|Extracorporeal dialysis|Extracorporeal dialysis +C0478581|T033|PT|Z49.2|ICD10|Other dialysis|Other dialysis +C0878730|T033|AB|Z49.3|ICD10CM|Encounter for adequacy testing for dialysis|Encounter for adequacy testing for dialysis +C0878730|T033|HT|Z49.3|ICD10CM|Encounter for adequacy testing for dialysis|Encounter for adequacy testing for dialysis +C0878731|T033|AB|Z49.31|ICD10CM|Encounter for adequacy testing for hemodialysis|Encounter for adequacy testing for hemodialysis +C0878731|T033|PT|Z49.31|ICD10CM|Encounter for adequacy testing for hemodialysis|Encounter for adequacy testing for hemodialysis +C0878732|T033|AB|Z49.32|ICD10CM|Encounter for adequacy testing for peritoneal dialysis|Encounter for adequacy testing for peritoneal dialysis +C0878732|T033|PT|Z49.32|ICD10CM|Encounter for adequacy testing for peritoneal dialysis|Encounter for adequacy testing for peritoneal dialysis +C0878801|T033|ET|Z49.32|ICD10CM|Encounter for peritoneal equilibration test|Encounter for peritoneal equilibration test +C0007237|T033|HT|Z50|ICD10|Care involving use of rehabilitation procedures|Care involving use of rehabilitation procedures +C0150497|T033|PT|Z50.0|ICD10|Cardiac rehabilitation|Cardiac rehabilitation +C0029709|T033|PT|Z50.1|ICD10|Other physical therapy|Other physical therapy +C0700507|T033|PT|Z50.2|ICD10|Alcohol rehabilitation|Alcohol rehabilitation +C0728952|T033|PT|Z50.3|ICD10|Drug rehabilitation|Drug rehabilitation +C0868889|T033|PT|Z50.4|ICD10|Psychotherapy, not elsewhere classified|Psychotherapy, not elsewhere classified +C0699719|T033|PT|Z50.5|ICD10|Speech therapy|Speech therapy +C0600052|T033|PT|Z50.6|ICD10|Orthoptic training|Orthoptic training +C0478583|T033|PT|Z50.8|ICD10|Care involving use of other rehabilitation procedures|Care involving use of other rehabilitation procedures +C0007237|T033|PT|Z50.9|ICD10|Care involving use of rehabilitation procedure, unspecified|Care involving use of rehabilitation procedure, unspecified +C4270787|T033|AB|Z51|ICD10CM|Encounter for other aftercare and medical care|Encounter for other aftercare and medical care +C4270787|T033|HT|Z51|ICD10CM|Encounter for other aftercare and medical care|Encounter for other aftercare and medical care +C2910942|T033|AB|Z51.0|ICD10CM|Encounter for antineoplastic radiation therapy|Encounter for antineoplastic radiation therapy +C2910942|T033|PT|Z51.0|ICD10CM|Encounter for antineoplastic radiation therapy|Encounter for antineoplastic radiation therapy +C0476658|T033|PT|Z51.1|ICD10|Chemotherapy session for neoplasm|Chemotherapy session for neoplasm +C0476658|T033|AB|Z51.1|ICD10CM|Encounter for antineoplastic chemotherapy and immunotherapy|Encounter for antineoplastic chemotherapy and immunotherapy +C0476658|T033|HT|Z51.1|ICD10CM|Encounter for antineoplastic chemotherapy and immunotherapy|Encounter for antineoplastic chemotherapy and immunotherapy +C1561677|T033|AB|Z51.11|ICD10CM|Encounter for antineoplastic chemotherapy|Encounter for antineoplastic chemotherapy +C1561677|T033|PT|Z51.11|ICD10CM|Encounter for antineoplastic chemotherapy|Encounter for antineoplastic chemotherapy +C1561678|T033|AB|Z51.12|ICD10CM|Encounter for antineoplastic immunotherapy|Encounter for antineoplastic immunotherapy +C1561678|T033|PT|Z51.12|ICD10CM|Encounter for antineoplastic immunotherapy|Encounter for antineoplastic immunotherapy +C0260780|T033|PT|Z51.3|ICD10|Blood transfusion without reported diagnosis|Blood transfusion without reported diagnosis +C0375892|T033|AB|Z51.5|ICD10CM|Encounter for palliative care|Encounter for palliative care +C0375892|T033|PT|Z51.5|ICD10CM|Encounter for palliative care|Encounter for palliative care +C0700049|T033|PT|Z51.5|ICD10|Palliative care|Palliative care +C0595957|T033|PT|Z51.6|ICD10|Desensitization to allergens|Desensitization to allergens +C4270788|T033|AB|Z51.6|ICD10CM|Encounter for desensitization to allergens|Encounter for desensitization to allergens +C4270788|T033|PT|Z51.6|ICD10CM|Encounter for desensitization to allergens|Encounter for desensitization to allergens +C0260783|T033|HT|Z51.8|ICD10CM|Encounter for other specified aftercare|Encounter for other specified aftercare +C0260783|T033|AB|Z51.8|ICD10CM|Encounter for other specified aftercare|Encounter for other specified aftercare +C0478585|T033|PT|Z51.8|ICD10|Other specified medical care|Other specified medical care +C2910943|T033|AB|Z51.81|ICD10CM|Encounter for therapeutic drug level monitoring|Encounter for therapeutic drug level monitoring +C2910943|T033|PT|Z51.81|ICD10CM|Encounter for therapeutic drug level monitoring|Encounter for therapeutic drug level monitoring +C0260783|T033|AB|Z51.89|ICD10CM|Encounter for other specified aftercare|Encounter for other specified aftercare +C0260783|T033|PT|Z51.89|ICD10CM|Encounter for other specified aftercare|Encounter for other specified aftercare +C4290518|T033|ET|Z52|ICD10CM|autologous and other living donors|autologous and other living donors +C0496676|T033|HT|Z52|ICD10|Donors of organs and tissues|Donors of organs and tissues +C0496676|T033|AB|Z52|ICD10CM|Donors of organs and tissues|Donors of organs and tissues +C0496676|T033|HT|Z52|ICD10CM|Donors of organs and tissues|Donors of organs and tissues +C1313951|T033|PT|Z52.0|ICD10|Blood donor|Blood donor +C1313951|T033|HT|Z52.0|ICD10CM|Blood donor|Blood donor +C1313951|T033|AB|Z52.0|ICD10CM|Blood donor|Blood donor +C2910945|T033|AB|Z52.00|ICD10CM|Unspecified blood donor|Unspecified blood donor +C2910945|T033|HT|Z52.00|ICD10CM|Unspecified blood donor|Unspecified blood donor +C2910946|T033|AB|Z52.000|ICD10CM|Unspecified donor, whole blood|Unspecified donor, whole blood +C2910946|T033|PT|Z52.000|ICD10CM|Unspecified donor, whole blood|Unspecified donor, whole blood +C2910947|T033|AB|Z52.001|ICD10CM|Unspecified donor, stem cells|Unspecified donor, stem cells +C2910947|T033|PT|Z52.001|ICD10CM|Unspecified donor, stem cells|Unspecified donor, stem cells +C2910948|T033|AB|Z52.008|ICD10CM|Unspecified donor, other blood|Unspecified donor, other blood +C2910948|T033|PT|Z52.008|ICD10CM|Unspecified donor, other blood|Unspecified donor, other blood +C2910949|T033|AB|Z52.01|ICD10CM|Autologous blood donor|Autologous blood donor +C2910949|T033|HT|Z52.01|ICD10CM|Autologous blood donor|Autologous blood donor +C2910950|T033|AB|Z52.010|ICD10CM|Autologous donor, whole blood|Autologous donor, whole blood +C2910950|T033|PT|Z52.010|ICD10CM|Autologous donor, whole blood|Autologous donor, whole blood +C2910951|T033|AB|Z52.011|ICD10CM|Autologous donor, stem cells|Autologous donor, stem cells +C2910951|T033|PT|Z52.011|ICD10CM|Autologous donor, stem cells|Autologous donor, stem cells +C2910952|T033|AB|Z52.018|ICD10CM|Autologous donor, other blood|Autologous donor, other blood +C2910952|T033|PT|Z52.018|ICD10CM|Autologous donor, other blood|Autologous donor, other blood +C0375878|T033|AB|Z52.09|ICD10CM|Other blood donor|Other blood donor +C0375878|T033|HT|Z52.09|ICD10CM|Other blood donor|Other blood donor +C2910953|T033|ET|Z52.09|ICD10CM|Volunteer donor|Volunteer donor +C2910954|T033|AB|Z52.090|ICD10CM|Other blood donor, whole blood|Other blood donor, whole blood +C2910954|T033|PT|Z52.090|ICD10CM|Other blood donor, whole blood|Other blood donor, whole blood +C2910955|T033|AB|Z52.091|ICD10CM|Other blood donor, stem cells|Other blood donor, stem cells +C2910955|T033|PT|Z52.091|ICD10CM|Other blood donor, stem cells|Other blood donor, stem cells +C2910956|T033|AB|Z52.098|ICD10CM|Other blood donor, other blood|Other blood donor, other blood +C2910956|T033|PT|Z52.098|ICD10CM|Other blood donor, other blood|Other blood donor, other blood +C0260785|T033|HT|Z52.1|ICD10CM|Skin donor|Skin donor +C0260785|T033|AB|Z52.1|ICD10CM|Skin donor|Skin donor +C0260785|T033|PT|Z52.1|ICD10|Skin donor|Skin donor +C0260785|T033|AB|Z52.10|ICD10CM|Skin donor, unspecified|Skin donor, unspecified +C0260785|T033|PT|Z52.10|ICD10CM|Skin donor, unspecified|Skin donor, unspecified +C2910958|T033|AB|Z52.11|ICD10CM|Skin donor, autologous|Skin donor, autologous +C2910958|T033|PT|Z52.11|ICD10CM|Skin donor, autologous|Skin donor, autologous +C2910959|T033|AB|Z52.19|ICD10CM|Skin donor, other|Skin donor, other +C2910959|T033|PT|Z52.19|ICD10CM|Skin donor, other|Skin donor, other +C1313933|T033|PT|Z52.2|ICD10|Bone donor|Bone donor +C1313933|T033|HT|Z52.2|ICD10CM|Bone donor|Bone donor +C1313933|T033|AB|Z52.2|ICD10CM|Bone donor|Bone donor +C1313933|T033|AB|Z52.20|ICD10CM|Bone donor, unspecified|Bone donor, unspecified +C1313933|T033|PT|Z52.20|ICD10CM|Bone donor, unspecified|Bone donor, unspecified +C2910961|T033|AB|Z52.21|ICD10CM|Bone donor, autologous|Bone donor, autologous +C2910961|T033|PT|Z52.21|ICD10CM|Bone donor, autologous|Bone donor, autologous +C2910962|T033|AB|Z52.29|ICD10CM|Bone donor, other|Bone donor, other +C2910962|T033|PT|Z52.29|ICD10CM|Bone donor, other|Bone donor, other +C1313934|T033|PT|Z52.3|ICD10CM|Bone marrow donor|Bone marrow donor +C1313934|T033|AB|Z52.3|ICD10CM|Bone marrow donor|Bone marrow donor +C1313934|T033|PT|Z52.3|ICD10|Bone marrow donor|Bone marrow donor +C1313935|T033|PT|Z52.4|ICD10|Kidney donor|Kidney donor +C1313935|T033|PT|Z52.4|ICD10CM|Kidney donor|Kidney donor +C1313935|T033|AB|Z52.4|ICD10CM|Kidney donor|Kidney donor +C0260789|T033|PT|Z52.5|ICD10|Cornea donor|Cornea donor +C0260789|T033|PT|Z52.5|ICD10CM|Cornea donor|Cornea donor +C0260789|T033|AB|Z52.5|ICD10CM|Cornea donor|Cornea donor +C2830120|T033|PT|Z52.6|ICD10|Liver donor|Liver donor +C2830120|T033|PT|Z52.6|ICD10CM|Liver donor|Liver donor +C2830120|T033|AB|Z52.6|ICD10CM|Liver donor|Liver donor +C2239274|T033|PT|Z52.7|ICD10|Heart donor|Heart donor +C0260790|T033|HT|Z52.8|ICD10CM|Donor of other specified organs or tissues|Donor of other specified organs or tissues +C0260790|T033|AB|Z52.8|ICD10CM|Donor of other specified organs or tissues|Donor of other specified organs or tissues +C2910963|T033|AB|Z52.81|ICD10CM|Egg (Oocyte) donor|Egg (Oocyte) donor +C2910963|T033|HT|Z52.81|ICD10CM|Egg (Oocyte) donor|Egg (Oocyte) donor +C1561680|T033|AB|Z52.810|ICD10CM|Egg (Oocyte) donor under age 35, anonymous recipient|Egg (Oocyte) donor under age 35, anonymous recipient +C1561680|T033|PT|Z52.810|ICD10CM|Egg (Oocyte) donor under age 35, anonymous recipient|Egg (Oocyte) donor under age 35, anonymous recipient +C2911680|T033|ET|Z52.810|ICD10CM|Egg donor under age 35 NOS|Egg donor under age 35 NOS +C2910964|T033|AB|Z52.811|ICD10CM|Egg (Oocyte) donor under age 35, designated recipient|Egg (Oocyte) donor under age 35, designated recipient +C2910964|T033|PT|Z52.811|ICD10CM|Egg (Oocyte) donor under age 35, designated recipient|Egg (Oocyte) donor under age 35, designated recipient +C2910965|T033|AB|Z52.812|ICD10CM|Egg (Oocyte) donor age 35 and over, anonymous recipient|Egg (Oocyte) donor age 35 and over, anonymous recipient +C2910965|T033|PT|Z52.812|ICD10CM|Egg (Oocyte) donor age 35 and over, anonymous recipient|Egg (Oocyte) donor age 35 and over, anonymous recipient +C1561684|T033|ET|Z52.812|ICD10CM|Egg donor age 35 and over NOS|Egg donor age 35 and over NOS +C2910966|T033|AB|Z52.813|ICD10CM|Egg (Oocyte) donor age 35 and over, designated recipient|Egg (Oocyte) donor age 35 and over, designated recipient +C2910966|T033|PT|Z52.813|ICD10CM|Egg (Oocyte) donor age 35 and over, designated recipient|Egg (Oocyte) donor age 35 and over, designated recipient +C2910967|T033|AB|Z52.819|ICD10CM|Egg (Oocyte) donor, unspecified|Egg (Oocyte) donor, unspecified +C2910967|T033|PT|Z52.819|ICD10CM|Egg (Oocyte) donor, unspecified|Egg (Oocyte) donor, unspecified +C0260790|T033|AB|Z52.89|ICD10CM|Donor of other specified organs or tissues|Donor of other specified organs or tissues +C0260790|T033|PT|Z52.89|ICD10CM|Donor of other specified organs or tissues|Donor of other specified organs or tissues +C1527169|T033|ET|Z52.9|ICD10CM|Donor NOS|Donor NOS +C0013019|T033|PT|Z52.9|ICD10CM|Donor of unspecified organ or tissue|Donor of unspecified organ or tissue +C0013019|T033|AB|Z52.9|ICD10CM|Donor of unspecified organ or tissue|Donor of unspecified organ or tissue +C0013019|T033|PT|Z52.9|ICD10|Donor of unspecified organ or tissue|Donor of unspecified organ or tissue +C2910968|T033|AB|Z53|ICD10CM|Persons encntr hlth serv for spec proc & trtmt, not crd out|Persons encntr hlth serv for spec proc & trtmt, not crd out +C2910968|T033|HT|Z53|ICD10CM|Persons encountering health services for specific procedures and treatment, not carried out|Persons encountering health services for specific procedures and treatment, not carried out +C0260815|T033|HT|Z53|ICD10|Persons encountering health services for specific procedures, not carried out|Persons encountering health services for specific procedures, not carried out +C2910969|T033|AB|Z53.0|ICD10CM|Proc/trtmt not carried out because of contraindication|Proc/trtmt not carried out because of contraindication +C2910969|T033|HT|Z53.0|ICD10CM|Procedure and treatment not carried out because of contraindication|Procedure and treatment not carried out because of contraindication +C0496677|T033|PT|Z53.0|ICD10|Procedure not carried out because of contraindication|Procedure not carried out because of contraindication +C2910970|T033|AB|Z53.01|ICD10CM|Proc/trtmt not carried out due to patient smoking|Proc/trtmt not carried out due to patient smoking +C2910970|T033|PT|Z53.01|ICD10CM|Procedure and treatment not carried out due to patient smoking|Procedure and treatment not carried out due to patient smoking +C2910971|T033|AB|Z53.09|ICD10CM|Proc/trtmt not carried out because of contraindication|Proc/trtmt not carried out because of contraindication +C2910971|T033|PT|Z53.09|ICD10CM|Procedure and treatment not carried out because of other contraindication|Procedure and treatment not carried out because of other contraindication +C2910972|T033|AB|Z53.1|ICD10CM|Proc/trtmt not crd out bec pt belief and group pressure|Proc/trtmt not crd out bec pt belief and group pressure +C0496678|T033|PT|Z53.1|ICD10|Procedure not carried out because of patient's decision for reasons of belief and group pressure|Procedure not carried out because of patient's decision for reasons of belief and group pressure +C2910973|T033|AB|Z53.2|ICD10CM|Proc/trtmt not crd out bec pt decision for oth/unsp reason|Proc/trtmt not crd out bec pt decision for oth/unsp reason +C0478587|T033|PT|Z53.2|ICD10|Procedure not carried out because of patient's decision for other and unspecified reasons|Procedure not carried out because of patient's decision for other and unspecified reasons +C2910974|T033|AB|Z53.20|ICD10CM|Proc/trtmt not crd out bec pt decision for unsp reasons|Proc/trtmt not crd out bec pt decision for unsp reasons +C2910974|T033|PT|Z53.20|ICD10CM|Procedure and treatment not carried out because of patient's decision for unspecified reasons|Procedure and treatment not carried out because of patient's decision for unspecified reasons +C2910975|T033|AB|Z53.21|ICD10CM|Proc/trtmt not crd out d/t pt lv bef seen by hlth care prov|Proc/trtmt not crd out d/t pt lv bef seen by hlth care prov +C2910976|T033|AB|Z53.29|ICD10CM|Proc/trtmt not crd out bec pt decision for oth reasons|Proc/trtmt not crd out bec pt decision for oth reasons +C2910976|T033|PT|Z53.29|ICD10CM|Procedure and treatment not carried out because of patient's decision for other reasons|Procedure and treatment not carried out because of patient's decision for other reasons +C4270789|T033|AB|Z53.3|ICD10CM|Procedure converted to open procedure|Procedure converted to open procedure +C4270789|T033|HT|Z53.3|ICD10CM|Procedure converted to open procedure|Procedure converted to open procedure +C1260467|T033|AB|Z53.31|ICD10CM|Laparoscopic surgical procedure converted to open procedure|Laparoscopic surgical procedure converted to open procedure +C1260467|T033|PT|Z53.31|ICD10CM|Laparoscopic surgical procedure converted to open procedure|Laparoscopic surgical procedure converted to open procedure +C1260468|T033|AB|Z53.32|ICD10CM|Thoracoscopic surgical procedure converted to open procedure|Thoracoscopic surgical procedure converted to open procedure +C1260468|T033|PT|Z53.32|ICD10CM|Thoracoscopic surgical procedure converted to open procedure|Thoracoscopic surgical procedure converted to open procedure +C1260469|T033|AB|Z53.33|ICD10CM|Arthroscopic surgical procedure converted to open procedure|Arthroscopic surgical procedure converted to open procedure +C1260469|T033|PT|Z53.33|ICD10CM|Arthroscopic surgical procedure converted to open procedure|Arthroscopic surgical procedure converted to open procedure +C4270790|T033|AB|Z53.39|ICD10CM|Other specified procedure converted to open procedure|Other specified procedure converted to open procedure +C4270790|T033|PT|Z53.39|ICD10CM|Other specified procedure converted to open procedure|Other specified procedure converted to open procedure +C2910977|T033|AB|Z53.8|ICD10CM|Procedure and treatment not carried out for other reasons|Procedure and treatment not carried out for other reasons +C2910977|T033|PT|Z53.8|ICD10CM|Procedure and treatment not carried out for other reasons|Procedure and treatment not carried out for other reasons +C0260819|T033|PT|Z53.8|ICD10|Procedure not carried out for other reasons|Procedure not carried out for other reasons +C2910978|T033|AB|Z53.9|ICD10CM|Procedure and treatment not carried out, unspecified reason|Procedure and treatment not carried out, unspecified reason +C2910978|T033|PT|Z53.9|ICD10CM|Procedure and treatment not carried out, unspecified reason|Procedure and treatment not carried out, unspecified reason +C0481810|T033|PT|Z53.9|ICD10|Procedure not carried out, unspecified reason|Procedure not carried out, unspecified reason +C0677614|T033|HT|Z54|ICD10|Convalescence|Convalescence +C0260826|T033|PT|Z54.0|ICD10|Convalescence following surgery|Convalescence following surgery +C0260827|T033|PT|Z54.1|ICD10|Convalescence following radiotherapy|Convalescence following radiotherapy +C0260828|T033|PT|Z54.2|ICD10|Convalescence following chemotherapy|Convalescence following chemotherapy +C0392011|T033|PT|Z54.3|ICD10|Convalescence following psychotherapy|Convalescence following psychotherapy +C0260830|T033|PT|Z54.4|ICD10|Convalescence following treatment of fracture|Convalescence following treatment of fracture +C0260831|T033|PT|Z54.7|ICD10|Convalescence following combined treatment|Convalescence following combined treatment +C0009941|T033|PT|Z54.8|ICD10|Convalescence following other treatment|Convalescence following other treatment +C0476583|T033|AB|Z55|ICD10CM|Problems related to education and literacy|Problems related to education and literacy +C0476583|T033|HT|Z55|ICD10CM|Problems related to education and literacy|Problems related to education and literacy +C0476583|T033|HT|Z55|ICD10|Problems related to education and literacy|Problems related to education and literacy +C0478589|T033|HT|Z55-Z65.9|ICD10|Persons with potential health hazards related to socioeconomic and psychosocial circumstances|Persons with potential health hazards related to socioeconomic and psychosocial circumstances +C0476584|T033|PT|Z55.0|ICD10|Illiteracy and low-level literacy|Illiteracy and low-level literacy +C0476584|T033|PT|Z55.0|ICD10CM|Illiteracy and low-level literacy|Illiteracy and low-level literacy +C0476584|T033|AB|Z55.0|ICD10CM|Illiteracy and low-level literacy|Illiteracy and low-level literacy +C0476585|T033|PT|Z55.1|ICD10CM|Schooling unavailable and unattainable|Schooling unavailable and unattainable +C0476585|T033|AB|Z55.1|ICD10CM|Schooling unavailable and unattainable|Schooling unavailable and unattainable +C0476585|T033|PT|Z55.1|ICD10|Schooling unavailable and unattainable|Schooling unavailable and unattainable +C0700430|T033|PT|Z55.2|ICD10|Failed examinations|Failed examinations +C2910979|T033|PT|Z55.2|ICD10CM|Failed school examinations|Failed school examinations +C2910979|T033|AB|Z55.2|ICD10CM|Failed school examinations|Failed school examinations +C1313907|T033|PT|Z55.3|ICD10|Underachievement in school|Underachievement in school +C1313907|T033|PT|Z55.3|ICD10CM|Underachievement in school|Underachievement in school +C1313907|T033|AB|Z55.3|ICD10CM|Underachievement in school|Underachievement in school +C0496680|T033|AB|Z55.4|ICD10CM|Educational maladjustment & discord w teachers & classmates|Educational maladjustment & discord w teachers & classmates +C0496680|T033|PT|Z55.4|ICD10CM|Educational maladjustment and discord with teachers and classmates|Educational maladjustment and discord with teachers and classmates +C0496680|T033|PT|Z55.4|ICD10|Educational maladjustment and discord with teachers and classmates|Educational maladjustment and discord with teachers and classmates +C0478590|T033|PT|Z55.8|ICD10|Other problems related to education and literacy|Other problems related to education and literacy +C0478590|T033|PT|Z55.8|ICD10CM|Other problems related to education and literacy|Other problems related to education and literacy +C0478590|T033|AB|Z55.8|ICD10CM|Other problems related to education and literacy|Other problems related to education and literacy +C2910980|T033|ET|Z55.8|ICD10CM|Problems related to inadequate teaching|Problems related to inadequate teaching +C0000873|T033|ET|Z55.9|ICD10CM|Academic problems NOS|Academic problems NOS +C0476583|T033|PT|Z55.9|ICD10|Problem related to education and literacy, unspecified|Problem related to education and literacy, unspecified +C0476583|T033|AB|Z55.9|ICD10CM|Problems related to education and literacy, unspecified|Problems related to education and literacy, unspecified +C0476583|T033|PT|Z55.9|ICD10CM|Problems related to education and literacy, unspecified|Problems related to education and literacy, unspecified +C0476588|T033|AB|Z56|ICD10CM|Problems related to employment and unemployment|Problems related to employment and unemployment +C0476588|T033|HT|Z56|ICD10CM|Problems related to employment and unemployment|Problems related to employment and unemployment +C0476588|T033|HT|Z56|ICD10|Problems related to employment and unemployment|Problems related to employment and unemployment +C0496682|T033|PT|Z56.0|ICD10|Unemployment, unspecified|Unemployment, unspecified +C0496682|T033|PT|Z56.0|ICD10CM|Unemployment, unspecified|Unemployment, unspecified +C0496682|T033|AB|Z56.0|ICD10CM|Unemployment, unspecified|Unemployment, unspecified +C0476589|T033|PT|Z56.1|ICD10|Change of job|Change of job +C0476589|T033|PT|Z56.1|ICD10CM|Change of job|Change of job +C0476589|T033|AB|Z56.1|ICD10CM|Change of job|Change of job +C0476590|T033|PT|Z56.2|ICD10CM|Threat of job loss|Threat of job loss +C0476590|T033|AB|Z56.2|ICD10CM|Threat of job loss|Threat of job loss +C0476590|T033|PT|Z56.2|ICD10|Threat of job loss|Threat of job loss +C0476591|T033|PT|Z56.3|ICD10|Stressful work schedule|Stressful work schedule +C0476591|T033|PT|Z56.3|ICD10CM|Stressful work schedule|Stressful work schedule +C0476591|T033|AB|Z56.3|ICD10CM|Stressful work schedule|Stressful work schedule +C0476592|T033|PT|Z56.4|ICD10CM|Discord with boss and workmates|Discord with boss and workmates +C0476592|T033|AB|Z56.4|ICD10CM|Discord with boss and workmates|Discord with boss and workmates +C0476592|T033|PT|Z56.4|ICD10|Discord with boss and workmates|Discord with boss and workmates +C2910981|T033|ET|Z56.5|ICD10CM|Difficult conditions at work|Difficult conditions at work +C2910982|T033|PT|Z56.5|ICD10|Uncongenial work|Uncongenial work +C2910982|T033|AB|Z56.5|ICD10CM|Uncongenial work environment|Uncongenial work environment +C2910982|T033|PT|Z56.5|ICD10CM|Uncongenial work environment|Uncongenial work environment +C0478591|T033|PT|Z56.6|ICD10|Other physical and mental strain related to work|Other physical and mental strain related to work +C0478591|T033|PT|Z56.6|ICD10CM|Other physical and mental strain related to work|Other physical and mental strain related to work +C0478591|T033|AB|Z56.6|ICD10CM|Other physical and mental strain related to work|Other physical and mental strain related to work +C0478592|T033|PT|Z56.7|ICD10|Other and unspecified problems related to employment|Other and unspecified problems related to employment +C2910983|T033|HT|Z56.8|ICD10CM|Other problems related to employment|Other problems related to employment +C2910983|T033|AB|Z56.8|ICD10CM|Other problems related to employment|Other problems related to employment +C2910984|T033|AB|Z56.81|ICD10CM|Sexual harassment on the job|Sexual harassment on the job +C2910984|T033|PT|Z56.81|ICD10CM|Sexual harassment on the job|Sexual harassment on the job +C2910985|T033|PT|Z56.82|ICD10CM|Military deployment status|Military deployment status +C2910985|T033|AB|Z56.82|ICD10CM|Military deployment status|Military deployment status +C2910983|T033|AB|Z56.89|ICD10CM|Other problems related to employment|Other problems related to employment +C2910983|T033|PT|Z56.89|ICD10CM|Other problems related to employment|Other problems related to employment +C0028803|T033|ET|Z56.9|ICD10CM|Occupational problems NOS|Occupational problems NOS +C2910986|T033|AB|Z56.9|ICD10CM|Unspecified problems related to employment|Unspecified problems related to employment +C2910986|T033|PT|Z56.9|ICD10CM|Unspecified problems related to employment|Unspecified problems related to employment +C0476594|T033|AB|Z57|ICD10CM|Occupational exposure to risk factors|Occupational exposure to risk factors +C0476594|T033|HT|Z57|ICD10CM|Occupational exposure to risk factors|Occupational exposure to risk factors +C0476594|T033|HT|Z57|ICD10|Occupational exposure to risk-factors|Occupational exposure to risk-factors +C0337093|T033|PT|Z57.0|ICD10|Occupational exposure to noise|Occupational exposure to noise +C0337093|T033|PT|Z57.0|ICD10CM|Occupational exposure to noise|Occupational exposure to noise +C0337093|T033|AB|Z57.0|ICD10CM|Occupational exposure to noise|Occupational exposure to noise +C0476595|T033|PT|Z57.1|ICD10|Occupational exposure to radiation|Occupational exposure to radiation +C0476595|T033|PT|Z57.1|ICD10CM|Occupational exposure to radiation|Occupational exposure to radiation +C0476595|T033|AB|Z57.1|ICD10CM|Occupational exposure to radiation|Occupational exposure to radiation +C0476596|T033|PT|Z57.2|ICD10CM|Occupational exposure to dust|Occupational exposure to dust +C0476596|T033|AB|Z57.2|ICD10CM|Occupational exposure to dust|Occupational exposure to dust +C0476596|T033|PT|Z57.2|ICD10|Occupational exposure to dust|Occupational exposure to dust +C0478593|T033|PT|Z57.3|ICD10|Occupational exposure to other air contaminants|Occupational exposure to other air contaminants +C0478593|T033|HT|Z57.3|ICD10CM|Occupational exposure to other air contaminants|Occupational exposure to other air contaminants +C0478593|T033|AB|Z57.3|ICD10CM|Occupational exposure to other air contaminants|Occupational exposure to other air contaminants +C2910987|T033|AB|Z57.31|ICD10CM|Occupational exposure to environmental tobacco smoke|Occupational exposure to environmental tobacco smoke +C2910987|T033|PT|Z57.31|ICD10CM|Occupational exposure to environmental tobacco smoke|Occupational exposure to environmental tobacco smoke +C0478593|T033|PT|Z57.39|ICD10CM|Occupational exposure to other air contaminants|Occupational exposure to other air contaminants +C0478593|T033|AB|Z57.39|ICD10CM|Occupational exposure to other air contaminants|Occupational exposure to other air contaminants +C2910988|T033|ET|Z57.4|ICD10CM|Occupational exposure to solids, liquids, gases or vapors in agriculture|Occupational exposure to solids, liquids, gases or vapors in agriculture +C0476597|T033|PT|Z57.4|ICD10|Occupational exposure to toxic agents in agriculture|Occupational exposure to toxic agents in agriculture +C0476597|T033|PT|Z57.4|ICD10CM|Occupational exposure to toxic agents in agriculture|Occupational exposure to toxic agents in agriculture +C0476597|T033|AB|Z57.4|ICD10CM|Occupational exposure to toxic agents in agriculture|Occupational exposure to toxic agents in agriculture +C2910989|T033|ET|Z57.5|ICD10CM|Occupational exposure to solids, liquids, gases or vapors in other industries|Occupational exposure to solids, liquids, gases or vapors in other industries +C0478594|T033|PT|Z57.5|ICD10|Occupational exposure to toxic agents in other industries|Occupational exposure to toxic agents in other industries +C0478594|T033|PT|Z57.5|ICD10CM|Occupational exposure to toxic agents in other industries|Occupational exposure to toxic agents in other industries +C0478594|T033|AB|Z57.5|ICD10CM|Occupational exposure to toxic agents in other industries|Occupational exposure to toxic agents in other industries +C0476598|T033|PT|Z57.6|ICD10|Occupational exposure to extreme temperature|Occupational exposure to extreme temperature +C0476598|T033|PT|Z57.6|ICD10CM|Occupational exposure to extreme temperature|Occupational exposure to extreme temperature +C0476598|T033|AB|Z57.6|ICD10CM|Occupational exposure to extreme temperature|Occupational exposure to extreme temperature +C0476599|T033|PT|Z57.7|ICD10CM|Occupational exposure to vibration|Occupational exposure to vibration +C0476599|T033|AB|Z57.7|ICD10CM|Occupational exposure to vibration|Occupational exposure to vibration +C0476599|T033|PT|Z57.7|ICD10|Occupational exposure to vibration|Occupational exposure to vibration +C0478595|T033|AB|Z57.8|ICD10CM|Occupational exposure to other risk factors|Occupational exposure to other risk factors +C0478595|T033|PT|Z57.8|ICD10CM|Occupational exposure to other risk factors|Occupational exposure to other risk factors +C0478595|T033|PT|Z57.8|ICD10|Occupational exposure to other risk-factors|Occupational exposure to other risk-factors +C0476600|T033|AB|Z57.9|ICD10CM|Occupational exposure to unspecified risk factor|Occupational exposure to unspecified risk factor +C0476600|T033|PT|Z57.9|ICD10CM|Occupational exposure to unspecified risk factor|Occupational exposure to unspecified risk factor +C0476600|T033|PT|Z57.9|ICD10|Occupational exposure to unspecified risk-factor|Occupational exposure to unspecified risk-factor +C0476601|T033|HT|Z58|ICD10|Problems related to physical environment|Problems related to physical environment +C0015331|T033|PT|Z58.0|ICD10|Exposure to noise|Exposure to noise +C0476602|T033|PT|Z58.1|ICD10|Exposure to air pollution|Exposure to air pollution +C0476603|T033|PT|Z58.2|ICD10|Exposure to water pollution|Exposure to water pollution +C1313916|T033|PT|Z58.3|ICD10|Exposure to soil pollution|Exposure to soil pollution +C1536744|T033|PT|Z58.4|ICD10|Exposure to radiation|Exposure to radiation +C0478596|T033|PT|Z58.5|ICD10|Exposure to other pollution|Exposure to other pollution +C0476605|T033|PT|Z58.6|ICD10|Inadequate drinking-water supply|Inadequate drinking-water supply +C0478597|T033|PT|Z58.8|ICD10|Other problems related to physical environment|Other problems related to physical environment +C0476606|T033|PT|Z58.9|ICD10|Problem related to physical environment, unspecified|Problem related to physical environment, unspecified +C0476607|T033|HT|Z59|ICD10|Problems related to housing and economic circumstances|Problems related to housing and economic circumstances +C0476607|T033|AB|Z59|ICD10CM|Problems related to housing and economic circumstances|Problems related to housing and economic circumstances +C0476607|T033|HT|Z59|ICD10CM|Problems related to housing and economic circumstances|Problems related to housing and economic circumstances +C2911663|T033|PT|Z59.0|ICD10|Homelessness|Homelessness +C2911663|T033|PT|Z59.0|ICD10CM|Homelessness|Homelessness +C2911663|T033|AB|Z59.0|ICD10CM|Homelessness|Homelessness +C0260793|T033|PT|Z59.1|ICD10|Inadequate housing|Inadequate housing +C0260793|T033|PT|Z59.1|ICD10CM|Inadequate housing|Inadequate housing +C0260793|T033|AB|Z59.1|ICD10CM|Inadequate housing|Inadequate housing +C0546945|T033|ET|Z59.1|ICD10CM|Lack of heating|Lack of heating +C0546946|T033|ET|Z59.1|ICD10CM|Restriction of space|Restriction of space +C0868629|T033|ET|Z59.1|ICD10CM|Technical defects in home preventing adequate care|Technical defects in home preventing adequate care +C1408528|T033|ET|Z59.1|ICD10CM|Unsatisfactory surroundings|Unsatisfactory surroundings +C0476608|T033|PT|Z59.2|ICD10AE|Discord with neighbors, lodgers and landlord|Discord with neighbors, lodgers and landlord +C0476608|T033|PT|Z59.2|ICD10CM|Discord with neighbors, lodgers and landlord|Discord with neighbors, lodgers and landlord +C0476608|T033|AB|Z59.2|ICD10CM|Discord with neighbors, lodgers and landlord|Discord with neighbors, lodgers and landlord +C0476608|T033|PT|Z59.2|ICD10|Discord with neighbours, lodgers and landlord|Discord with neighbours, lodgers and landlord +C0481794|T033|ET|Z59.3|ICD10CM|Boarding-school resident|Boarding-school resident +C0496683|T033|PT|Z59.3|ICD10CM|Problems related to living in residential institution|Problems related to living in residential institution +C0496683|T033|AB|Z59.3|ICD10CM|Problems related to living in residential institution|Problems related to living in residential institution +C0496683|T033|PT|Z59.3|ICD10|Problems related to living in residential institution|Problems related to living in residential institution +C0476605|T033|ET|Z59.4|ICD10CM|Inadequate drinking water supply|Inadequate drinking water supply +C0476609|T033|PT|Z59.4|ICD10|Lack of adequate food|Lack of adequate food +C2910990|T033|AB|Z59.4|ICD10CM|Lack of adequate food and safe drinking water|Lack of adequate food and safe drinking water +C2910990|T033|PT|Z59.4|ICD10CM|Lack of adequate food and safe drinking water|Lack of adequate food and safe drinking water +C0476610|T033|PT|Z59.5|ICD10|Extreme poverty|Extreme poverty +C0476610|T033|PT|Z59.5|ICD10CM|Extreme poverty|Extreme poverty +C0476610|T033|AB|Z59.5|ICD10CM|Extreme poverty|Extreme poverty +C0302604|T033|PT|Z59.6|ICD10|Low income|Low income +C0302604|T033|PT|Z59.6|ICD10CM|Low income|Low income +C0302604|T033|AB|Z59.6|ICD10CM|Low income|Low income +C0476611|T033|PT|Z59.7|ICD10CM|Insufficient social insurance and welfare support|Insufficient social insurance and welfare support +C0476611|T033|AB|Z59.7|ICD10CM|Insufficient social insurance and welfare support|Insufficient social insurance and welfare support +C0476611|T033|PT|Z59.7|ICD10|Insufficient social insurance and welfare support|Insufficient social insurance and welfare support +C0687005|T033|ET|Z59.8|ICD10CM|Foreclosure on loan|Foreclosure on loan +C1386533|T033|ET|Z59.8|ICD10CM|Isolated dwelling|Isolated dwelling +C0478598|T033|PT|Z59.8|ICD10CM|Other problems related to housing and economic circumstances|Other problems related to housing and economic circumstances +C0478598|T033|AB|Z59.8|ICD10CM|Other problems related to housing and economic circumstances|Other problems related to housing and economic circumstances +C0478598|T033|PT|Z59.8|ICD10|Other problems related to housing and economic circumstances|Other problems related to housing and economic circumstances +C1405454|T033|ET|Z59.8|ICD10CM|Problems with creditors|Problems with creditors +C0496684|T033|AB|Z59.9|ICD10CM|Problem related to housing and economic circumstances, unsp|Problem related to housing and economic circumstances, unsp +C0496684|T033|PT|Z59.9|ICD10CM|Problem related to housing and economic circumstances, unspecified|Problem related to housing and economic circumstances, unspecified +C0496684|T033|PT|Z59.9|ICD10|Problem related to housing and economic circumstances, unspecified|Problem related to housing and economic circumstances, unspecified +C0476612|T033|HT|Z60|ICD10|Problems related to social environment|Problems related to social environment +C0476612|T033|HT|Z60|ICD10CM|Problems related to social environment|Problems related to social environment +C0476612|T033|AB|Z60|ICD10CM|Problems related to social environment|Problems related to social environment +C2919113|T033|ET|Z60.0|ICD10CM|Empty nest syndrome|Empty nest syndrome +C2919101|T033|ET|Z60.0|ICD10CM|Phase of life problem|Phase of life problem +C2910991|T033|ET|Z60.0|ICD10CM|Problem with adjustment to retirement [pension]|Problem with adjustment to retirement [pension] +C0476613|T033|PT|Z60.0|ICD10CM|Problems of adjustment to life-cycle transitions|Problems of adjustment to life-cycle transitions +C0476613|T033|AB|Z60.0|ICD10CM|Problems of adjustment to life-cycle transitions|Problems of adjustment to life-cycle transitions +C0476613|T033|PT|Z60.0|ICD10|Problems of adjustment to life-cycle transitions|Problems of adjustment to life-cycle transitions +C0476614|T033|PT|Z60.1|ICD10|Atypical parenting situation|Atypical parenting situation +C0439044|T033|PT|Z60.2|ICD10|Living alone|Living alone +C2910992|T033|AB|Z60.2|ICD10CM|Problems related to living alone|Problems related to living alone +C2910992|T033|PT|Z60.2|ICD10CM|Problems related to living alone|Problems related to living alone +C1313908|T033|PT|Z60.3|ICD10|Acculturation difficulty|Acculturation difficulty +C1313908|T033|PT|Z60.3|ICD10CM|Acculturation difficulty|Acculturation difficulty +C1313908|T033|AB|Z60.3|ICD10CM|Acculturation difficulty|Acculturation difficulty +C0848273|T033|ET|Z60.3|ICD10CM|Problem with migration|Problem with migration +C2910993|T033|ET|Z60.3|ICD10CM|Problem with social transplantation|Problem with social transplantation +C0476616|T033|PT|Z60.4|ICD10|Social exclusion and rejection|Social exclusion and rejection +C0476616|T033|PT|Z60.4|ICD10CM|Social exclusion and rejection|Social exclusion and rejection +C0476616|T033|AB|Z60.4|ICD10CM|Social exclusion and rejection|Social exclusion and rejection +C0478674|T033|AB|Z60.5|ICD10CM|Target of (perceived) adverse discrimination and persecution|Target of (perceived) adverse discrimination and persecution +C0478674|T033|PT|Z60.5|ICD10CM|Target of (perceived) adverse discrimination and persecution|Target of (perceived) adverse discrimination and persecution +C0478674|T033|PT|Z60.5|ICD10|Target of perceived adverse discrimination and persecution|Target of perceived adverse discrimination and persecution +C0478599|T033|PT|Z60.8|ICD10|Other problems related to social environment|Other problems related to social environment +C0478599|T033|PT|Z60.8|ICD10CM|Other problems related to social environment|Other problems related to social environment +C0478599|T033|AB|Z60.8|ICD10CM|Other problems related to social environment|Other problems related to social environment +C0496685|T033|PT|Z60.9|ICD10CM|Problem related to social environment, unspecified|Problem related to social environment, unspecified +C0496685|T033|AB|Z60.9|ICD10CM|Problem related to social environment, unspecified|Problem related to social environment, unspecified +C0496685|T033|PT|Z60.9|ICD10|Problem related to social environment, unspecified|Problem related to social environment, unspecified +C0476621|T033|HT|Z61|ICD10|Problems related to negative life events in childhood|Problems related to negative life events in childhood +C0476622|T033|PT|Z61.0|ICD10|Loss of love relationship in childhood|Loss of love relationship in childhood +C0476623|T033|PT|Z61.1|ICD10|Removal from home in childhood|Removal from home in childhood +C0476624|T033|PT|Z61.2|ICD10|Altered pattern of family relationships in childhood|Altered pattern of family relationships in childhood +C0476625|T033|PT|Z61.3|ICD10|Events resulting in loss of self-esteem in childhood|Events resulting in loss of self-esteem in childhood +C0496686|T033|PT|Z61.4|ICD10|Problems related to alleged sexual abuse of child by person within primary support group|Problems related to alleged sexual abuse of child by person within primary support group +C0478675|T033|PT|Z61.5|ICD10|Problems related to alleged sexual abuse of child by person outside primary support group|Problems related to alleged sexual abuse of child by person outside primary support group +C0476627|T033|PT|Z61.6|ICD10|Problems related to alleged physical abuse of child|Problems related to alleged physical abuse of child +C0476628|T033|PT|Z61.7|ICD10|Personal frightening experience in childhood|Personal frightening experience in childhood +C0478600|T033|PT|Z61.8|ICD10|Other negative life events in childhood|Other negative life events in childhood +C0478608|T033|PT|Z61.9|ICD10|Negative life event in childhood, unspecified|Negative life event in childhood, unspecified +C4290519|T033|ET|Z62|ICD10CM|current and past negative life events in childhood|current and past negative life events in childhood +C4290520|T033|ET|Z62|ICD10CM|current and past problems of a child related to upbringing|current and past problems of a child related to upbringing +C0476629|T033|HT|Z62|ICD10|Other problems related to upbringing|Other problems related to upbringing +C3537220|T033|AB|Z62|ICD10CM|Problems related to upbringing|Problems related to upbringing +C3537220|T033|HT|Z62|ICD10CM|Problems related to upbringing|Problems related to upbringing +C0476630|T033|PT|Z62.0|ICD10|Inadequate parental supervision and control|Inadequate parental supervision and control +C0476630|T033|PT|Z62.0|ICD10CM|Inadequate parental supervision and control|Inadequate parental supervision and control +C0476630|T033|AB|Z62.0|ICD10CM|Inadequate parental supervision and control|Inadequate parental supervision and control +C0476631|T033|PT|Z62.1|ICD10CM|Parental overprotection|Parental overprotection +C0476631|T033|AB|Z62.1|ICD10CM|Parental overprotection|Parental overprotection +C0476631|T033|PT|Z62.1|ICD10|Parental overprotection|Parental overprotection +C0478676|T033|PT|Z62.2|ICD10|Institutional upbringing|Institutional upbringing +C2910998|T033|AB|Z62.2|ICD10CM|Upbringing away from parents|Upbringing away from parents +C2910998|T033|HT|Z62.2|ICD10CM|Upbringing away from parents|Upbringing away from parents +C2910999|T033|ET|Z62.21|ICD10CM|Child in care of non-parental family member|Child in care of non-parental family member +C0580719|T033|ET|Z62.21|ICD10CM|Child in foster care|Child in foster care +C2911000|T033|PT|Z62.21|ICD10CM|Child in welfare custody|Child in welfare custody +C2911000|T033|AB|Z62.21|ICD10CM|Child in welfare custody|Child in welfare custody +C2911001|T033|ET|Z62.22|ICD10CM|Child living in orphanage or group home|Child living in orphanage or group home +C0478676|T033|PT|Z62.22|ICD10CM|Institutional upbringing|Institutional upbringing +C0478676|T033|AB|Z62.22|ICD10CM|Institutional upbringing|Institutional upbringing +C2911002|T033|AB|Z62.29|ICD10CM|Other upbringing away from parents|Other upbringing away from parents +C2911002|T033|PT|Z62.29|ICD10CM|Other upbringing away from parents|Other upbringing away from parents +C0476632|T033|PT|Z62.3|ICD10CM|Hostility towards and scapegoating of child|Hostility towards and scapegoating of child +C0476632|T033|AB|Z62.3|ICD10CM|Hostility towards and scapegoating of child|Hostility towards and scapegoating of child +C0476632|T033|PT|Z62.3|ICD10|Hostility towards and scapegoating of child|Hostility towards and scapegoating of child +C0476633|T033|PT|Z62.4|ICD10|Emotional neglect of child|Emotional neglect of child +C0478601|T033|PT|Z62.5|ICD10|Other problems related to neglect in upbringing|Other problems related to neglect in upbringing +C2911003|T033|AB|Z62.6|ICD10CM|Inappropriate (excessive) parental pressure|Inappropriate (excessive) parental pressure +C2911003|T033|PT|Z62.6|ICD10CM|Inappropriate (excessive) parental pressure|Inappropriate (excessive) parental pressure +C0478602|T033|PT|Z62.6|ICD10|Inappropriate parental pressure and other abnormal qualities of upbringing|Inappropriate parental pressure and other abnormal qualities of upbringing +C0478603|T033|PT|Z62.8|ICD10|Other specified problems related to upbringing|Other specified problems related to upbringing +C0478603|T033|HT|Z62.8|ICD10CM|Other specified problems related to upbringing|Other specified problems related to upbringing +C0478603|T033|AB|Z62.8|ICD10CM|Other specified problems related to upbringing|Other specified problems related to upbringing +C2911004|T033|AB|Z62.81|ICD10CM|Personal history of abuse in childhood|Personal history of abuse in childhood +C2911004|T033|HT|Z62.81|ICD10CM|Personal history of abuse in childhood|Personal history of abuse in childhood +C2911005|T033|AB|Z62.810|ICD10CM|Personal history of physical and sexual abuse in childhood|Personal history of physical and sexual abuse in childhood +C2911005|T033|PT|Z62.810|ICD10CM|Personal history of physical and sexual abuse in childhood|Personal history of physical and sexual abuse in childhood +C2911006|T033|AB|Z62.811|ICD10CM|Personal history of psychological abuse in childhood|Personal history of psychological abuse in childhood +C2911006|T033|PT|Z62.811|ICD10CM|Personal history of psychological abuse in childhood|Personal history of psychological abuse in childhood +C2911007|T033|AB|Z62.812|ICD10CM|Personal history of neglect in childhood|Personal history of neglect in childhood +C2911007|T033|PT|Z62.812|ICD10CM|Personal history of neglect in childhood|Personal history of neglect in childhood +C4553603|T033|AB|Z62.813|ICD10CM|Pers hx of forced labor or sexual exploitation in childhood|Pers hx of forced labor or sexual exploitation in childhood +C4553603|T033|PT|Z62.813|ICD10CM|Personal history of forced labor or sexual exploitation in childhood|Personal history of forced labor or sexual exploitation in childhood +C2911008|T033|AB|Z62.819|ICD10CM|Personal history of unspecified abuse in childhood|Personal history of unspecified abuse in childhood +C2911008|T033|PT|Z62.819|ICD10CM|Personal history of unspecified abuse in childhood|Personal history of unspecified abuse in childhood +C0700498|T033|AB|Z62.82|ICD10CM|Parent-child conflict|Parent-child conflict +C0700498|T033|HT|Z62.82|ICD10CM|Parent-child conflict|Parent-child conflict +C2712964|T033|AB|Z62.820|ICD10CM|Parent-biological child conflict|Parent-biological child conflict +C2712964|T033|PT|Z62.820|ICD10CM|Parent-biological child conflict|Parent-biological child conflict +C0700498|T033|ET|Z62.820|ICD10CM|Parent-child problem NOS|Parent-child problem NOS +C2712555|T033|AB|Z62.821|ICD10CM|Parent-adopted child conflict|Parent-adopted child conflict +C2712555|T033|PT|Z62.821|ICD10CM|Parent-adopted child conflict|Parent-adopted child conflict +C2911009|T033|AB|Z62.822|ICD10CM|Parent-foster child conflict|Parent-foster child conflict +C2911009|T033|PT|Z62.822|ICD10CM|Parent-foster child conflict|Parent-foster child conflict +C0478603|T033|HT|Z62.89|ICD10CM|Other specified problems related to upbringing|Other specified problems related to upbringing +C0478603|T033|AB|Z62.89|ICD10CM|Other specified problems related to upbringing|Other specified problems related to upbringing +C2911010|T033|AB|Z62.890|ICD10CM|Parent-child estrangement NEC|Parent-child estrangement NEC +C2911010|T033|PT|Z62.890|ICD10CM|Parent-child estrangement NEC|Parent-child estrangement NEC +C2919125|T033|AB|Z62.891|ICD10CM|Sibling rivalry|Sibling rivalry +C2919125|T033|PT|Z62.891|ICD10CM|Sibling rivalry|Sibling rivalry +C0478603|T033|PT|Z62.898|ICD10CM|Other specified problems related to upbringing|Other specified problems related to upbringing +C0478603|T033|AB|Z62.898|ICD10CM|Other specified problems related to upbringing|Other specified problems related to upbringing +C0496687|T033|PT|Z62.9|ICD10CM|Problem related to upbringing, unspecified|Problem related to upbringing, unspecified +C0496687|T033|AB|Z62.9|ICD10CM|Problem related to upbringing, unspecified|Problem related to upbringing, unspecified +C0496687|T033|PT|Z62.9|ICD10|Problem related to upbringing, unspecified|Problem related to upbringing, unspecified +C0496688|T033|AB|Z63|ICD10CM|Oth prob rel to prim support group, inc family circumstances|Oth prob rel to prim support group, inc family circumstances +C0496688|T033|HT|Z63|ICD10CM|Other problems related to primary support group, including family circumstances|Other problems related to primary support group, including family circumstances +C0496688|T033|HT|Z63|ICD10|Other problems related to primary support group, including family circumstances|Other problems related to primary support group, including family circumstances +C0496689|T033|PT|Z63.0|ICD10|Problems in relationship with spouse or partner|Problems in relationship with spouse or partner +C0496689|T033|PT|Z63.0|ICD10CM|Problems in relationship with spouse or partner|Problems in relationship with spouse or partner +C0496689|T033|AB|Z63.0|ICD10CM|Problems in relationship with spouse or partner|Problems in relationship with spouse or partner +C4237379|T033|ET|Z63.0|ICD10CM|Relationship distress with spouse or intimate partner|Relationship distress with spouse or intimate partner +C2911011|T033|AB|Z63.1|ICD10CM|Problems in relationship with in-laws|Problems in relationship with in-laws +C2911011|T033|PT|Z63.1|ICD10CM|Problems in relationship with in-laws|Problems in relationship with in-laws +C0496690|T033|PT|Z63.1|ICD10|Problems in relationship with parents and in-laws|Problems in relationship with parents and in-laws +C0476617|T033|PT|Z63.2|ICD10|Inadequate family support|Inadequate family support +C0476618|T033|PT|Z63.3|ICD10|Absence of family member|Absence of family member +C0476618|T033|HT|Z63.3|ICD10CM|Absence of family member|Absence of family member +C0476618|T033|AB|Z63.3|ICD10CM|Absence of family member|Absence of family member +C2911013|T033|PT|Z63.31|ICD10CM|Absence of family member due to military deployment|Absence of family member due to military deployment +C2911013|T033|AB|Z63.31|ICD10CM|Absence of family member due to military deployment|Absence of family member due to military deployment +C2911012|T033|ET|Z63.31|ICD10CM|Individual or family affected by other family member being on military deployment|Individual or family affected by other family member being on military deployment +C2911014|T033|AB|Z63.32|ICD10CM|Other absence of family member|Other absence of family member +C2911014|T033|PT|Z63.32|ICD10CM|Other absence of family member|Other absence of family member +C2911015|T033|ET|Z63.4|ICD10CM|Assumed death of family member|Assumed death of family member +C2919115|T033|ET|Z63.4|ICD10CM|Bereavement|Bereavement +C0476619|T033|PT|Z63.4|ICD10CM|Disappearance and death of family member|Disappearance and death of family member +C0476619|T033|AB|Z63.4|ICD10CM|Disappearance and death of family member|Disappearance and death of family member +C0476619|T033|PT|Z63.4|ICD10|Disappearance and death of family member|Disappearance and death of family member +C0496691|T033|PT|Z63.5|ICD10|Disruption of family by separation and divorce|Disruption of family by separation and divorce +C0496691|T033|PT|Z63.5|ICD10CM|Disruption of family by separation and divorce|Disruption of family by separation and divorce +C0496691|T033|AB|Z63.5|ICD10CM|Disruption of family by separation and divorce|Disruption of family by separation and divorce +C0555026|T033|ET|Z63.5|ICD10CM|Marital estrangement|Marital estrangement +C0476620|T033|PT|Z63.6|ICD10|Dependent relative needing care at home|Dependent relative needing care at home +C0476620|T033|PT|Z63.6|ICD10CM|Dependent relative needing care at home|Dependent relative needing care at home +C0476620|T033|AB|Z63.6|ICD10CM|Dependent relative needing care at home|Dependent relative needing care at home +C0478604|T033|HT|Z63.7|ICD10CM|Other stressful life events affecting family and household|Other stressful life events affecting family and household +C0478604|T033|AB|Z63.7|ICD10CM|Other stressful life events affecting family and household|Other stressful life events affecting family and household +C0478604|T033|PT|Z63.7|ICD10|Other stressful life events affecting family and household|Other stressful life events affecting family and household +C2911017|T033|AB|Z63.71|ICD10CM|Stress on fam d/t return of family member from miltry deploy|Stress on fam d/t return of family member from miltry deploy +C2911017|T033|PT|Z63.71|ICD10CM|Stress on family due to return of family member from military deployment|Stress on family due to return of family member from military deployment +C2911018|T033|AB|Z63.72|ICD10CM|Alcoholism and drug addiction in family|Alcoholism and drug addiction in family +C2911018|T033|PT|Z63.72|ICD10CM|Alcoholism and drug addiction in family|Alcoholism and drug addiction in family +C2911019|T033|ET|Z63.79|ICD10CM|Anxiety (normal) about sick person in family|Anxiety (normal) about sick person in family +C0481514|T033|ET|Z63.79|ICD10CM|Health problems within family|Health problems within family +C2911020|T033|ET|Z63.79|ICD10CM|Ill or disturbed family member|Ill or disturbed family member +C2911021|T033|ET|Z63.79|ICD10CM|Isolated family|Isolated family +C0478604|T033|PT|Z63.79|ICD10CM|Other stressful life events affecting family and household|Other stressful life events affecting family and household +C0478604|T033|AB|Z63.79|ICD10CM|Other stressful life events affecting family and household|Other stressful life events affecting family and household +C2911022|T033|ET|Z63.8|ICD10CM|Family discord NOS|Family discord NOS +C2919130|T033|ET|Z63.8|ICD10CM|Family estrangement NOS|Family estrangement NOS +C1399736|T033|ET|Z63.8|ICD10CM|High expressed emotional level within family|High expressed emotional level within family +C0476617|T033|ET|Z63.8|ICD10CM|Inadequate family support NOS|Inadequate family support NOS +C2911023|T033|ET|Z63.8|ICD10CM|Inadequate or distorted communication within family|Inadequate or distorted communication within family +C0478605|T033|PT|Z63.8|ICD10CM|Other specified problems related to primary support group|Other specified problems related to primary support group +C0478605|T033|AB|Z63.8|ICD10CM|Other specified problems related to primary support group|Other specified problems related to primary support group +C0478605|T033|PT|Z63.8|ICD10|Other specified problems related to primary support group|Other specified problems related to primary support group +C0496692|T033|PT|Z63.9|ICD10|Problem related to primary support group, unspecified|Problem related to primary support group, unspecified +C0496692|T033|PT|Z63.9|ICD10CM|Problem related to primary support group, unspecified|Problem related to primary support group, unspecified +C0496692|T033|AB|Z63.9|ICD10CM|Problem related to primary support group, unspecified|Problem related to primary support group, unspecified +C2919127|T033|ET|Z63.9|ICD10CM|Relationship disorder NOS|Relationship disorder NOS +C0476634|T033|AB|Z64|ICD10CM|Problems related to certain psychosocial circumstances|Problems related to certain psychosocial circumstances +C0476634|T033|HT|Z64|ICD10CM|Problems related to certain psychosocial circumstances|Problems related to certain psychosocial circumstances +C0476634|T033|HT|Z64|ICD10|Problems related to certain psychosocial circumstances|Problems related to certain psychosocial circumstances +C0476635|T033|PT|Z64.0|ICD10|Problems related to unwanted pregnancy|Problems related to unwanted pregnancy +C0476635|T033|PT|Z64.0|ICD10CM|Problems related to unwanted pregnancy|Problems related to unwanted pregnancy +C0476635|T033|AB|Z64.0|ICD10CM|Problems related to unwanted pregnancy|Problems related to unwanted pregnancy +C0496693|T033|PT|Z64.1|ICD10CM|Problems related to multiparity|Problems related to multiparity +C0496693|T033|AB|Z64.1|ICD10CM|Problems related to multiparity|Problems related to multiparity +C0496693|T033|PT|Z64.1|ICD10|Problems related to multiparity|Problems related to multiparity +C0476637|T033|PT|Z64.3|ICD10AE|Seeking and accepting behavioral and psychological interventions known to be hazardous and harmful|Seeking and accepting behavioral and psychological interventions known to be hazardous and harmful +C0476637|T033|PT|Z64.3|ICD10|Seeking and accepting behavioural and psychological interventions known to be hazardous and harmful|Seeking and accepting behavioural and psychological interventions known to be hazardous and harmful +C0476638|T033|PT|Z64.4|ICD10|Discord with counsellors|Discord with counsellors +C0476638|T033|PT|Z64.4|ICD10CM|Discord with counselors|Discord with counselors +C0476638|T033|AB|Z64.4|ICD10CM|Discord with counselors|Discord with counselors +C0476638|T033|PT|Z64.4|ICD10AE|Discord with counselors|Discord with counselors +C0686988|T033|ET|Z64.4|ICD10CM|Discord with probation officer|Discord with probation officer +C2919104|T033|ET|Z64.4|ICD10CM|Discord with social worker|Discord with social worker +C0496694|T033|AB|Z65|ICD10CM|Problems related to other psychosocial circumstances|Problems related to other psychosocial circumstances +C0496694|T033|HT|Z65|ICD10CM|Problems related to other psychosocial circumstances|Problems related to other psychosocial circumstances +C0496694|T033|HT|Z65|ICD10|Problems related to other psychosocial circumstances|Problems related to other psychosocial circumstances +C0476639|T033|AB|Z65.0|ICD10CM|Conviction in civil & criminal proceedings w/o imprisonment|Conviction in civil & criminal proceedings w/o imprisonment +C0476639|T033|PT|Z65.0|ICD10CM|Conviction in civil and criminal proceedings without imprisonment|Conviction in civil and criminal proceedings without imprisonment +C0476639|T033|PT|Z65.0|ICD10|Conviction in civil and criminal proceedings without imprisonment|Conviction in civil and criminal proceedings without imprisonment +C0478677|T033|PT|Z65.1|ICD10|Imprisonment and other incarceration|Imprisonment and other incarceration +C0478677|T033|PT|Z65.1|ICD10CM|Imprisonment and other incarceration|Imprisonment and other incarceration +C0478677|T033|AB|Z65.1|ICD10CM|Imprisonment and other incarceration|Imprisonment and other incarceration +C0476640|T033|PT|Z65.2|ICD10|Problems related to release from prison|Problems related to release from prison +C0476640|T033|PT|Z65.2|ICD10CM|Problems related to release from prison|Problems related to release from prison +C0476640|T033|AB|Z65.2|ICD10CM|Problems related to release from prison|Problems related to release from prison +C2919124|T033|ET|Z65.3|ICD10CM|Arrest|Arrest +C2911024|T033|ET|Z65.3|ICD10CM|Child custody or support proceedings|Child custody or support proceedings +C0684331|T033|ET|Z65.3|ICD10CM|Litigation|Litigation +C0496695|T033|PT|Z65.3|ICD10CM|Problems related to other legal circumstances|Problems related to other legal circumstances +C0496695|T033|AB|Z65.3|ICD10CM|Problems related to other legal circumstances|Problems related to other legal circumstances +C0496695|T033|PT|Z65.3|ICD10|Problems related to other legal circumstances|Problems related to other legal circumstances +C0684331|T033|ET|Z65.3|ICD10CM|Prosecution|Prosecution +C0476641|T033|PT|Z65.4|ICD10CM|Victim of crime and terrorism|Victim of crime and terrorism +C0476641|T033|AB|Z65.4|ICD10CM|Victim of crime and terrorism|Victim of crime and terrorism +C0476641|T033|PT|Z65.4|ICD10|Victim of crime and terrorism|Victim of crime and terrorism +C0476641|T033|ET|Z65.4|ICD10CM|Victim of torture|Victim of torture +C0476642|T033|PT|Z65.5|ICD10CM|Exposure to disaster, war and other hostilities|Exposure to disaster, war and other hostilities +C0476642|T033|AB|Z65.5|ICD10CM|Exposure to disaster, war and other hostilities|Exposure to disaster, war and other hostilities +C0476642|T033|PT|Z65.5|ICD10|Exposure to disaster, war and other hostilities|Exposure to disaster, war and other hostilities +C0478606|T033|AB|Z65.8|ICD10CM|Oth problems related to psychosocial circumstances|Oth problems related to psychosocial circumstances +C0478606|T033|PT|Z65.8|ICD10CM|Other specified problems related to psychosocial circumstances|Other specified problems related to psychosocial circumstances +C0478606|T033|PT|Z65.8|ICD10|Other specified problems related to psychosocial circumstances|Other specified problems related to psychosocial circumstances +C0236867|T033|ET|Z65.8|ICD10CM|Religious or spiritual problem|Religious or spiritual problem +C0478607|T033|PT|Z65.9|ICD10|Problem related to unspecified psychosocial circumstances|Problem related to unspecified psychosocial circumstances +C0478607|T033|PT|Z65.9|ICD10CM|Problem related to unspecified psychosocial circumstances|Problem related to unspecified psychosocial circumstances +C0478607|T033|AB|Z65.9|ICD10CM|Problem related to unspecified psychosocial circumstances|Problem related to unspecified psychosocial circumstances +C2911025|T033|ET|Z66|ICD10CM|DNR status|DNR status +C2911674|T033|AB|Z66|ICD10CM|Do not resuscitate|Do not resuscitate +C2911674|T033|PT|Z66|ICD10CM|Do not resuscitate|Do not resuscitate +C0582114|T033|HT|Z66-Z66|ICD10CM|Do not resuscitate status (Z66)|Do not resuscitate status (Z66) +C2911644|T033|AB|Z67|ICD10CM|Blood type|Blood type +C2911644|T033|HT|Z67|ICD10CM|Blood type|Blood type +C2911644|T033|HT|Z67-Z67|ICD10CM|Blood type (Z67)|Blood type (Z67) +C0427620|T033|AB|Z67.1|ICD10CM|Type A blood|Type A blood +C0427620|T033|HT|Z67.1|ICD10CM|Type A blood|Type A blood +C2911027|T033|AB|Z67.10|ICD10CM|Type A blood, Rh positive|Type A blood, Rh positive +C2911027|T033|PT|Z67.10|ICD10CM|Type A blood, Rh positive|Type A blood, Rh positive +C2911028|T033|AB|Z67.11|ICD10CM|Type A blood, Rh negative|Type A blood, Rh negative +C2911028|T033|PT|Z67.11|ICD10CM|Type A blood, Rh negative|Type A blood, Rh negative +C2919112|T033|AB|Z67.2|ICD10CM|Type B blood|Type B blood +C2919112|T033|HT|Z67.2|ICD10CM|Type B blood|Type B blood +C2911029|T033|AB|Z67.20|ICD10CM|Type B blood, Rh positive|Type B blood, Rh positive +C2911029|T033|PT|Z67.20|ICD10CM|Type B blood, Rh positive|Type B blood, Rh positive +C2911030|T033|AB|Z67.21|ICD10CM|Type B blood, Rh negative|Type B blood, Rh negative +C2911030|T033|PT|Z67.21|ICD10CM|Type B blood, Rh negative|Type B blood, Rh negative +C0427624|T033|AB|Z67.3|ICD10CM|Type AB blood|Type AB blood +C0427624|T033|HT|Z67.3|ICD10CM|Type AB blood|Type AB blood +C2911031|T033|AB|Z67.30|ICD10CM|Type AB blood, Rh positive|Type AB blood, Rh positive +C2911031|T033|PT|Z67.30|ICD10CM|Type AB blood, Rh positive|Type AB blood, Rh positive +C2911032|T033|AB|Z67.31|ICD10CM|Type AB blood, Rh negative|Type AB blood, Rh negative +C2911032|T033|PT|Z67.31|ICD10CM|Type AB blood, Rh negative|Type AB blood, Rh negative +C0427625|T033|AB|Z67.4|ICD10CM|Type O blood|Type O blood +C0427625|T033|HT|Z67.4|ICD10CM|Type O blood|Type O blood +C2911033|T033|AB|Z67.40|ICD10CM|Type O blood, Rh positive|Type O blood, Rh positive +C2911033|T033|PT|Z67.40|ICD10CM|Type O blood, Rh positive|Type O blood, Rh positive +C2911034|T033|AB|Z67.41|ICD10CM|Type O blood, Rh negative|Type O blood, Rh negative +C2911034|T033|PT|Z67.41|ICD10CM|Type O blood, Rh negative|Type O blood, Rh negative +C2911035|T033|AB|Z67.9|ICD10CM|Unspecified blood type|Unspecified blood type +C2911035|T033|HT|Z67.9|ICD10CM|Unspecified blood type|Unspecified blood type +C2911036|T033|AB|Z67.90|ICD10CM|Unspecified blood type, Rh positive|Unspecified blood type, Rh positive +C2911036|T033|PT|Z67.90|ICD10CM|Unspecified blood type, Rh positive|Unspecified blood type, Rh positive +C2911037|T033|AB|Z67.91|ICD10CM|Unspecified blood type, Rh negative|Unspecified blood type, Rh negative +C2911037|T033|PT|Z67.91|ICD10CM|Unspecified blood type, Rh negative|Unspecified blood type, Rh negative +C2240399|T033|AB|Z68|ICD10CM|Body mass index [BMI]|Body mass index [BMI] +C2240399|T033|HT|Z68|ICD10CM|Body mass index [BMI]|Body mass index [BMI] +C2919126|T033|ET|Z68|ICD10CM|Kilograms per meters squared|Kilograms per meters squared +C2240399|T033|HT|Z68-Z68|ICD10CM|Body mass index [BMI] (Z68)|Body mass index [BMI] (Z68) +C4509570|T033|AB|Z68.1|ICD10CM|Body mass index (BMI) 19.9 or less, adult|Body mass index (BMI) 19.9 or less, adult +C4509570|T033|PT|Z68.1|ICD10CM|Body mass index (BMI) 19.9 or less, adult|Body mass index (BMI) 19.9 or less, adult +C2911039|T033|AB|Z68.2|ICD10CM|Body mass index (BMI) 20-29, adult|Body mass index (BMI) 20-29, adult +C2911039|T033|HT|Z68.2|ICD10CM|Body mass index (BMI) 20-29, adult|Body mass index (BMI) 20-29, adult +C2911040|T033|AB|Z68.20|ICD10CM|Body mass index (BMI) 20.0-20.9, adult|Body mass index (BMI) 20.0-20.9, adult +C2911040|T033|PT|Z68.20|ICD10CM|Body mass index (BMI) 20.0-20.9, adult|Body mass index (BMI) 20.0-20.9, adult +C2911041|T033|AB|Z68.21|ICD10CM|Body mass index (BMI) 21.0-21.9, adult|Body mass index (BMI) 21.0-21.9, adult +C2911041|T033|PT|Z68.21|ICD10CM|Body mass index (BMI) 21.0-21.9, adult|Body mass index (BMI) 21.0-21.9, adult +C2911042|T033|AB|Z68.22|ICD10CM|Body mass index (BMI) 22.0-22.9, adult|Body mass index (BMI) 22.0-22.9, adult +C2911042|T033|PT|Z68.22|ICD10CM|Body mass index (BMI) 22.0-22.9, adult|Body mass index (BMI) 22.0-22.9, adult +C2911043|T033|AB|Z68.23|ICD10CM|Body mass index (BMI) 23.0-23.9, adult|Body mass index (BMI) 23.0-23.9, adult +C2911043|T033|PT|Z68.23|ICD10CM|Body mass index (BMI) 23.0-23.9, adult|Body mass index (BMI) 23.0-23.9, adult +C2911044|T033|AB|Z68.24|ICD10CM|Body mass index (BMI) 24.0-24.9, adult|Body mass index (BMI) 24.0-24.9, adult +C2911044|T033|PT|Z68.24|ICD10CM|Body mass index (BMI) 24.0-24.9, adult|Body mass index (BMI) 24.0-24.9, adult +C2911045|T033|AB|Z68.25|ICD10CM|Body mass index (BMI) 25.0-25.9, adult|Body mass index (BMI) 25.0-25.9, adult +C2911045|T033|PT|Z68.25|ICD10CM|Body mass index (BMI) 25.0-25.9, adult|Body mass index (BMI) 25.0-25.9, adult +C2911046|T033|AB|Z68.26|ICD10CM|Body mass index (BMI) 26.0-26.9, adult|Body mass index (BMI) 26.0-26.9, adult +C2911046|T033|PT|Z68.26|ICD10CM|Body mass index (BMI) 26.0-26.9, adult|Body mass index (BMI) 26.0-26.9, adult +C2911047|T033|AB|Z68.27|ICD10CM|Body mass index (BMI) 27.0-27.9, adult|Body mass index (BMI) 27.0-27.9, adult +C2911047|T033|PT|Z68.27|ICD10CM|Body mass index (BMI) 27.0-27.9, adult|Body mass index (BMI) 27.0-27.9, adult +C2911048|T033|AB|Z68.28|ICD10CM|Body mass index (BMI) 28.0-28.9, adult|Body mass index (BMI) 28.0-28.9, adult +C2911048|T033|PT|Z68.28|ICD10CM|Body mass index (BMI) 28.0-28.9, adult|Body mass index (BMI) 28.0-28.9, adult +C2911049|T033|AB|Z68.29|ICD10CM|Body mass index (BMI) 29.0-29.9, adult|Body mass index (BMI) 29.0-29.9, adult +C2911049|T033|PT|Z68.29|ICD10CM|Body mass index (BMI) 29.0-29.9, adult|Body mass index (BMI) 29.0-29.9, adult +C2911050|T033|AB|Z68.3|ICD10CM|Body mass index (BMI) 30-39, adult|Body mass index (BMI) 30-39, adult +C2911050|T033|HT|Z68.3|ICD10CM|Body mass index (BMI) 30-39, adult|Body mass index (BMI) 30-39, adult +C2911051|T033|AB|Z68.30|ICD10CM|Body mass index (BMI) 30.0-30.9, adult|Body mass index (BMI) 30.0-30.9, adult +C2911051|T033|PT|Z68.30|ICD10CM|Body mass index (BMI) 30.0-30.9, adult|Body mass index (BMI) 30.0-30.9, adult +C2911052|T033|AB|Z68.31|ICD10CM|Body mass index (BMI) 31.0-31.9, adult|Body mass index (BMI) 31.0-31.9, adult +C2911052|T033|PT|Z68.31|ICD10CM|Body mass index (BMI) 31.0-31.9, adult|Body mass index (BMI) 31.0-31.9, adult +C2911053|T033|AB|Z68.32|ICD10CM|Body mass index (BMI) 32.0-32.9, adult|Body mass index (BMI) 32.0-32.9, adult +C2911053|T033|PT|Z68.32|ICD10CM|Body mass index (BMI) 32.0-32.9, adult|Body mass index (BMI) 32.0-32.9, adult +C2911054|T033|AB|Z68.33|ICD10CM|Body mass index (BMI) 33.0-33.9, adult|Body mass index (BMI) 33.0-33.9, adult +C2911054|T033|PT|Z68.33|ICD10CM|Body mass index (BMI) 33.0-33.9, adult|Body mass index (BMI) 33.0-33.9, adult +C2911055|T033|AB|Z68.34|ICD10CM|Body mass index (BMI) 34.0-34.9, adult|Body mass index (BMI) 34.0-34.9, adult +C2911055|T033|PT|Z68.34|ICD10CM|Body mass index (BMI) 34.0-34.9, adult|Body mass index (BMI) 34.0-34.9, adult +C2911056|T033|AB|Z68.35|ICD10CM|Body mass index (BMI) 35.0-35.9, adult|Body mass index (BMI) 35.0-35.9, adult +C2911056|T033|PT|Z68.35|ICD10CM|Body mass index (BMI) 35.0-35.9, adult|Body mass index (BMI) 35.0-35.9, adult +C2911057|T033|AB|Z68.36|ICD10CM|Body mass index (BMI) 36.0-36.9, adult|Body mass index (BMI) 36.0-36.9, adult +C2911057|T033|PT|Z68.36|ICD10CM|Body mass index (BMI) 36.0-36.9, adult|Body mass index (BMI) 36.0-36.9, adult +C2911058|T033|AB|Z68.37|ICD10CM|Body mass index (BMI) 37.0-37.9, adult|Body mass index (BMI) 37.0-37.9, adult +C2911058|T033|PT|Z68.37|ICD10CM|Body mass index (BMI) 37.0-37.9, adult|Body mass index (BMI) 37.0-37.9, adult +C2911059|T033|AB|Z68.38|ICD10CM|Body mass index (BMI) 38.0-38.9, adult|Body mass index (BMI) 38.0-38.9, adult +C2911059|T033|PT|Z68.38|ICD10CM|Body mass index (BMI) 38.0-38.9, adult|Body mass index (BMI) 38.0-38.9, adult +C2911060|T033|AB|Z68.39|ICD10CM|Body mass index (BMI) 39.0-39.9, adult|Body mass index (BMI) 39.0-39.9, adult +C2911060|T033|PT|Z68.39|ICD10CM|Body mass index (BMI) 39.0-39.9, adult|Body mass index (BMI) 39.0-39.9, adult +C1561729|T033|AB|Z68.4|ICD10CM|Body mass index (BMI) 40 or greater, adult|Body mass index (BMI) 40 or greater, adult +C1561729|T033|HT|Z68.4|ICD10CM|Body mass index (BMI) 40 or greater, adult|Body mass index (BMI) 40 or greater, adult +C2977643|T033|AB|Z68.41|ICD10CM|Body mass index (BMI) 40.0-44.9, adult|Body mass index (BMI) 40.0-44.9, adult +C2977643|T033|PT|Z68.41|ICD10CM|Body mass index (BMI) 40.0-44.9, adult|Body mass index (BMI) 40.0-44.9, adult +C2977644|T033|AB|Z68.42|ICD10CM|Body mass index (BMI) 45.0-49.9, adult|Body mass index (BMI) 45.0-49.9, adult +C2977644|T033|PT|Z68.42|ICD10CM|Body mass index (BMI) 45.0-49.9, adult|Body mass index (BMI) 45.0-49.9, adult +C2977645|T033|AB|Z68.43|ICD10CM|Body mass index (BMI) 50.0-59.9, adult|Body mass index (BMI) 50.0-59.9, adult +C2977645|T033|PT|Z68.43|ICD10CM|Body mass index (BMI) 50.0-59.9, adult|Body mass index (BMI) 50.0-59.9, adult +C2977646|T033|AB|Z68.44|ICD10CM|Body mass index (BMI) 60.0-69.9, adult|Body mass index (BMI) 60.0-69.9, adult +C2977646|T033|PT|Z68.44|ICD10CM|Body mass index (BMI) 60.0-69.9, adult|Body mass index (BMI) 60.0-69.9, adult +C2977647|T033|AB|Z68.45|ICD10CM|Body mass index (BMI) 70 or greater, adult|Body mass index (BMI) 70 or greater, adult +C2977647|T033|PT|Z68.45|ICD10CM|Body mass index (BMI) 70 or greater, adult|Body mass index (BMI) 70 or greater, adult +C2911062|T033|AB|Z68.5|ICD10CM|Body mass index (BMI) pediatric|Body mass index (BMI) pediatric +C2911062|T033|HT|Z68.5|ICD10CM|Body mass index (BMI) pediatric|Body mass index (BMI) pediatric +C2911063|T033|AB|Z68.51|ICD10CM|BMI pediatric, less than 5th percentile for age|BMI pediatric, less than 5th percentile for age +C2911063|T033|PT|Z68.51|ICD10CM|Body mass index (BMI) pediatric, less than 5th percentile for age|Body mass index (BMI) pediatric, less than 5th percentile for age +C2911064|T033|AB|Z68.52|ICD10CM|BMI pediatric, 5th percentile to less than 85% for age|BMI pediatric, 5th percentile to less than 85% for age +C2911064|T033|PT|Z68.52|ICD10CM|Body mass index (BMI) pediatric, 5th percentile to less than 85th percentile for age|Body mass index (BMI) pediatric, 5th percentile to less than 85th percentile for age +C2911065|T033|AB|Z68.53|ICD10CM|BMI pediatric, 85% to less than 95th percentile for age|BMI pediatric, 85% to less than 95th percentile for age +C2911065|T033|PT|Z68.53|ICD10CM|Body mass index (BMI) pediatric, 85th percentile to less than 95th percentile for age|Body mass index (BMI) pediatric, 85th percentile to less than 95th percentile for age +C2911066|T033|AB|Z68.54|ICD10CM|BMI pediatric, greater than or equal to 95% for age|BMI pediatric, greater than or equal to 95% for age +C2911066|T033|PT|Z68.54|ICD10CM|Body mass index (BMI) pediatric, greater than or equal to 95th percentile for age|Body mass index (BMI) pediatric, greater than or equal to 95th percentile for age +C4290521|T033|ET|Z69|ICD10CM|counseling for victims and perpetrators of abuse|counseling for victims and perpetrators of abuse +C2911068|T033|AB|Z69|ICD10CM|Encntr for mental health serv for victim and perp of abuse|Encntr for mental health serv for victim and perp of abuse +C2911068|T033|HT|Z69|ICD10CM|Encounter for mental health services for victim and perpetrator of abuse|Encounter for mental health services for victim and perpetrator of abuse +C0178343|T033|HT|Z69-Z76|ICD10CM|Persons encountering health services in other circumstances (Z69-Z76)|Persons encountering health services in other circumstances (Z69-Z76) +C2911069|T033|AB|Z69.0|ICD10CM|Encntr for mental health services for child abuse problems|Encntr for mental health services for child abuse problems +C2911069|T033|HT|Z69.0|ICD10CM|Encounter for mental health services for child abuse problems|Encounter for mental health services for child abuse problems +C2911070|T033|AB|Z69.01|ICD10CM|Encntr for mental health services for parental child abuse|Encntr for mental health services for parental child abuse +C2911070|T033|HT|Z69.01|ICD10CM|Encounter for mental health services for parental child abuse|Encounter for mental health services for parental child abuse +C2911071|T033|AB|Z69.010|ICD10CM|Encntr for mental hlth serv for victim of prntl child abuse|Encntr for mental hlth serv for victim of prntl child abuse +C4237118|T033|ET|Z69.010|ICD10CM|Encounter for mental health services for victim of child abuse by parent|Encounter for mental health services for victim of child abuse by parent +C4237119|T033|ET|Z69.010|ICD10CM|Encounter for mental health services for victim of child neglect by parent|Encounter for mental health services for victim of child neglect by parent +C4237120|T033|ET|Z69.010|ICD10CM|Encounter for mental health services for victim of child psychological abuse by parent|Encounter for mental health services for victim of child psychological abuse by parent +C4237121|T033|ET|Z69.010|ICD10CM|Encounter for mental health services for victim of child sexual abuse by parent|Encounter for mental health services for victim of child sexual abuse by parent +C2911071|T033|PT|Z69.010|ICD10CM|Encounter for mental health services for victim of parental child abuse|Encounter for mental health services for victim of parental child abuse +C2911072|T033|AB|Z69.011|ICD10CM|Encntr for mental health serv for perp of prntl child abuse|Encntr for mental health serv for perp of prntl child abuse +C2911072|T033|PT|Z69.011|ICD10CM|Encounter for mental health services for perpetrator of parental child abuse|Encounter for mental health services for perpetrator of parental child abuse +C4237111|T033|ET|Z69.011|ICD10CM|Encounter for mental health services for perpetrator of parental child neglect|Encounter for mental health services for perpetrator of parental child neglect +C4237112|T033|ET|Z69.011|ICD10CM|Encounter for mental health services for perpetrator of parental child psychological abuse|Encounter for mental health services for perpetrator of parental child psychological abuse +C4237113|T033|ET|Z69.011|ICD10CM|Encounter for mental health services for perpetrator of parental child sexual abuse|Encounter for mental health services for perpetrator of parental child sexual abuse +C2911073|T033|AB|Z69.02|ICD10CM|Encntr for mental health services for non-prntl child abuse|Encntr for mental health services for non-prntl child abuse +C2911073|T033|HT|Z69.02|ICD10CM|Encounter for mental health services for non-parental child abuse|Encounter for mental health services for non-parental child abuse +C2911074|T033|AB|Z69.020|ICD10CM|Encntr for mntl hlth serv for vctm of non-prntl child abuse|Encntr for mntl hlth serv for vctm of non-prntl child abuse +C2911074|T033|PT|Z69.020|ICD10CM|Encounter for mental health services for victim of non-parental child abuse|Encounter for mental health services for victim of non-parental child abuse +C4509571|T033|ET|Z69.020|ICD10CM|Encounter for mental health services for victim of non-parental child neglect|Encounter for mental health services for victim of non-parental child neglect +C4509572|T033|ET|Z69.020|ICD10CM|Encounter for mental health services for victim of non-parental child psychological abuse|Encounter for mental health services for victim of non-parental child psychological abuse +C4509573|T033|ET|Z69.020|ICD10CM|Encounter for mental health services for victim of non-parental child sexual abuse|Encounter for mental health services for victim of non-parental child sexual abuse +C2911075|T033|AB|Z69.021|ICD10CM|Encntr for mntl hlth serv for perp of non-prntl child abuse|Encntr for mntl hlth serv for perp of non-prntl child abuse +C2911075|T033|PT|Z69.021|ICD10CM|Encounter for mental health services for perpetrator of non-parental child abuse|Encounter for mental health services for perpetrator of non-parental child abuse +C4509574|T033|ET|Z69.021|ICD10CM|Encounter for mental health services for perpetrator of non-parental child neglect|Encounter for mental health services for perpetrator of non-parental child neglect +C4509575|T033|ET|Z69.021|ICD10CM|Encounter for mental health services for perpetrator of non-parental child psychological abuse|Encounter for mental health services for perpetrator of non-parental child psychological abuse +C4509576|T033|ET|Z69.021|ICD10CM|Encounter for mental health services for perpetrator of non-parental child sexual abuse|Encounter for mental health services for perpetrator of non-parental child sexual abuse +C2911076|T033|AB|Z69.1|ICD10CM|Encntr for mental health serv for spous or prtnr abuse prob|Encntr for mental health serv for spous or prtnr abuse prob +C2911076|T033|HT|Z69.1|ICD10CM|Encounter for mental health services for spousal or partner abuse problems|Encounter for mental health services for spousal or partner abuse problems +C2911077|T033|AB|Z69.11|ICD10CM|Encntr for mntl hlth serv for victim of spous or prtnr abuse|Encntr for mntl hlth serv for victim of spous or prtnr abuse +C2911077|T033|PT|Z69.11|ICD10CM|Encounter for mental health services for victim of spousal or partner abuse|Encounter for mental health services for victim of spousal or partner abuse +C4237127|T033|ET|Z69.11|ICD10CM|Encounter for mental health services for victim of spouse or partner neglect|Encounter for mental health services for victim of spouse or partner neglect +C4237128|T033|ET|Z69.11|ICD10CM|Encounter for mental health services for victim of spouse or partner psychological abuse|Encounter for mental health services for victim of spouse or partner psychological abuse +C4237129|T033|ET|Z69.11|ICD10CM|Encounter for mental health services for victim of spouse or partner violence, physical|Encounter for mental health services for victim of spouse or partner violence, physical +C2911078|T033|AB|Z69.12|ICD10CM|Encntr for mental hlth serv for perp of spous or prtnr abuse|Encntr for mental hlth serv for perp of spous or prtnr abuse +C2911078|T033|PT|Z69.12|ICD10CM|Encounter for mental health services for perpetrator of spousal or partner abuse|Encounter for mental health services for perpetrator of spousal or partner abuse +C4237114|T033|ET|Z69.12|ICD10CM|Encounter for mental health services for perpetrator of spouse or partner neglect|Encounter for mental health services for perpetrator of spouse or partner neglect +C4237115|T033|ET|Z69.12|ICD10CM|Encounter for mental health services for perpetrator of spouse or partner psychological abuse|Encounter for mental health services for perpetrator of spouse or partner psychological abuse +C4237116|T033|ET|Z69.12|ICD10CM|Encounter for mental health services for perpetrator of spouse or partner violence, physical|Encounter for mental health services for perpetrator of spouse or partner violence, physical +C4237117|T033|ET|Z69.12|ICD10CM|Encounter for mental health services for perpetrator of spouse or partner violence, sexual|Encounter for mental health services for perpetrator of spouse or partner violence, sexual +C2911079|T033|AB|Z69.8|ICD10CM|Encntr for mental health serv for victim or perp of abuse|Encntr for mental health serv for victim or perp of abuse +C2911079|T033|HT|Z69.8|ICD10CM|Encounter for mental health services for victim or perpetrator of other abuse|Encounter for mental health services for victim or perpetrator of other abuse +C4509578|T033|ET|Z69.81|ICD10CM|Encounter for mental health services for victim of non-spousal adult abuse|Encounter for mental health services for victim of non-spousal adult abuse +C2911081|T033|AB|Z69.81|ICD10CM|Encounter for mental health services for victim of oth abuse|Encounter for mental health services for victim of oth abuse +C2911081|T033|PT|Z69.81|ICD10CM|Encounter for mental health services for victim of other abuse|Encounter for mental health services for victim of other abuse +C4237130|T033|ET|Z69.81|ICD10CM|Encounter for mental health services for victim of spouse or partner violence, sexual|Encounter for mental health services for victim of spouse or partner violence, sexual +C2911080|T033|ET|Z69.81|ICD10CM|Encounter for rape victim counseling|Encounter for rape victim counseling +C2911082|T033|AB|Z69.82|ICD10CM|Encounter for mental health services for perp of abuse|Encounter for mental health services for perp of abuse +C5141177|T033|ET|Z69.82|ICD10CM|Encounter for mental health services for perpetrator of non-spousal adult abuse|Encounter for mental health services for perpetrator of non-spousal adult abuse +C2911082|T033|PT|Z69.82|ICD10CM|Encounter for mental health services for perpetrator of other abuse|Encounter for mental health services for perpetrator of other abuse +C0496696|T033|HT|Z70|ICD10CM|Counseling related to sexual attitude, behavior and orientation|Counseling related to sexual attitude, behavior and orientation +C0496696|T033|HT|Z70|ICD10AE|Counseling related to sexual attitude, behavior and orientation|Counseling related to sexual attitude, behavior and orientation +C0496696|T033|AB|Z70|ICD10CM|Counseling related to sexual attitude, behavior and orientn|Counseling related to sexual attitude, behavior and orientn +C0496696|T033|HT|Z70|ICD10|Counselling related to sexual attitude, behaviour and orientation|Counselling related to sexual attitude, behaviour and orientation +C0496696|T033|ET|Z70|ICD10CM|encounter for mental health services for sexual attitude, behavior and orientation|encounter for mental health services for sexual attitude, behavior and orientation +C0178343|T033|HT|Z70-Z76.9|ICD10|Persons encountering health services in other circumstances|Persons encountering health services in other circumstances +C0476677|T033|PT|Z70.0|ICD10CM|Counseling related to sexual attitude|Counseling related to sexual attitude +C0476677|T033|AB|Z70.0|ICD10CM|Counseling related to sexual attitude|Counseling related to sexual attitude +C0476677|T033|PT|Z70.0|ICD10AE|Counseling related to sexual attitude|Counseling related to sexual attitude +C0476677|T033|PT|Z70.0|ICD10|Counselling related to sexual attitude|Counselling related to sexual attitude +C0476678|T033|PT|Z70.1|ICD10AE|Counseling related to patient's sexual behavior and orientation|Counseling related to patient's sexual behavior and orientation +C0476678|T033|PT|Z70.1|ICD10CM|Counseling related to patient's sexual behavior and orientation|Counseling related to patient's sexual behavior and orientation +C0476678|T033|AB|Z70.1|ICD10CM|Counseling related to patient's sexual behavior and orientn|Counseling related to patient's sexual behavior and orientn +C0476678|T033|PT|Z70.1|ICD10|Counselling related to patient's sexual behaviour and orientation|Counselling related to patient's sexual behaviour and orientation +C2911084|T033|ET|Z70.1|ICD10CM|Patient concerned regarding impotence|Patient concerned regarding impotence +C2911085|T033|ET|Z70.1|ICD10CM|Patient concerned regarding non-responsiveness|Patient concerned regarding non-responsiveness +C2911086|T033|ET|Z70.1|ICD10CM|Patient concerned regarding promiscuity|Patient concerned regarding promiscuity +C2911087|T033|ET|Z70.1|ICD10CM|Patient concerned regarding sexual orientation|Patient concerned regarding sexual orientation +C2911088|T033|ET|Z70.2|ICD10CM|Advice sought regarding sexual behavior and orientation of child|Advice sought regarding sexual behavior and orientation of child +C2911089|T033|ET|Z70.2|ICD10CM|Advice sought regarding sexual behavior and orientation of partner|Advice sought regarding sexual behavior and orientation of partner +C2911090|T033|ET|Z70.2|ICD10CM|Advice sought regarding sexual behavior and orientation of spouse|Advice sought regarding sexual behavior and orientation of spouse +C0476679|T033|AB|Z70.2|ICD10CM|Cnsl related to sexual behavior and orientn of third party|Cnsl related to sexual behavior and orientn of third party +C0476679|T033|PT|Z70.2|ICD10CM|Counseling related to sexual behavior and orientation of third party|Counseling related to sexual behavior and orientation of third party +C0476679|T033|PT|Z70.2|ICD10AE|Counseling related to sexual behavior and orientation of third party|Counseling related to sexual behavior and orientation of third party +C0476679|T033|PT|Z70.2|ICD10|Counselling related to sexual behaviour and orientation of third party|Counselling related to sexual behaviour and orientation of third party +C0476680|T033|AB|Z70.3|ICD10CM|Cnsl rel to comb concrn rgrd sex attitude, behav and orientn|Cnsl rel to comb concrn rgrd sex attitude, behav and orientn +C0476680|T033|PT|Z70.3|ICD10CM|Counseling related to combined concerns regarding sexual attitude, behavior and orientation|Counseling related to combined concerns regarding sexual attitude, behavior and orientation +C0476680|T033|PT|Z70.3|ICD10AE|Counseling related to combined concerns regarding sexual attitude, behavior and orientation|Counseling related to combined concerns regarding sexual attitude, behavior and orientation +C0476680|T033|PT|Z70.3|ICD10|Counselling related to combined concerns regarding sexual attitude, behaviour and orientation|Counselling related to combined concerns regarding sexual attitude, behaviour and orientation +C2911091|T033|ET|Z70.8|ICD10CM|Encounter for sex education|Encounter for sex education +C0476686|T033|PT|Z70.8|ICD10CM|Other sex counseling|Other sex counseling +C0476686|T033|AB|Z70.8|ICD10CM|Other sex counseling|Other sex counseling +C0476686|T033|PT|Z70.8|ICD10AE|Other sex counseling|Other sex counseling +C0476686|T033|PT|Z70.8|ICD10|Other sex counselling|Other sex counselling +C0700050|T033|PT|Z70.9|ICD10AE|Sex counseling, unspecified|Sex counseling, unspecified +C0700050|T033|PT|Z70.9|ICD10CM|Sex counseling, unspecified|Sex counseling, unspecified +C0700050|T033|AB|Z70.9|ICD10CM|Sex counseling, unspecified|Sex counseling, unspecified +C0700050|T033|PT|Z70.9|ICD10|Sex counselling, unspecified|Sex counselling, unspecified +C0496697|T033|AB|Z71|ICD10CM|Persons encntr health serv for oth cnsl and med advice, NEC|Persons encntr health serv for oth cnsl and med advice, NEC +C0260822|T033|PT|Z71.0|ICD10|Person consulting on behalf of another person|Person consulting on behalf of another person +C2911093|T033|PT|Z71.0|ICD10CM|Person encountering health services to consult on behalf of another person|Person encountering health services to consult on behalf of another person +C2911092|T033|ET|Z71.0|ICD10CM|Person encountering health services to seek advice or treatment for non-attending third party|Person encountering health services to seek advice or treatment for non-attending third party +C2911093|T033|AB|Z71.0|ICD10CM|Prsn encntr hlth serv to consult on behalf of another person|Prsn encntr hlth serv to consult on behalf of another person +C0851311|T033|ET|Z71.1|ICD10CM|'Worried well'|'Worried well' +C2911094|T033|ET|Z71.1|ICD10CM|Person encountering health services in which problem was normal state|Person encountering health services in which problem was normal state +C2911095|T033|ET|Z71.1|ICD10CM|Person encountering health services with feared condition which was not demonstrated|Person encountering health services with feared condition which was not demonstrated +C2911096|T033|AB|Z71.1|ICD10CM|Person w feared hlth complaint in whom no diagnosis is made|Person w feared hlth complaint in whom no diagnosis is made +C0851311|T033|PT|Z71.1|ICD10|Person with feared complaint in whom no diagnosis is made|Person with feared complaint in whom no diagnosis is made +C2911096|T033|PT|Z71.1|ICD10CM|Person with feared health complaint in whom no diagnosis is made|Person with feared health complaint in whom no diagnosis is made +C2911097|T033|AB|Z71.2|ICD10CM|Person consulting for explanation of exam or test findings|Person consulting for explanation of exam or test findings +C2911097|T033|PT|Z71.2|ICD10CM|Person consulting for explanation of examination or test findings|Person consulting for explanation of examination or test findings +C0476682|T033|PT|Z71.2|ICD10|Person consulting for explanation of investigation findings|Person consulting for explanation of investigation findings +C0260823|T033|PT|Z71.3|ICD10AE|Dietary counseling and surveillance|Dietary counseling and surveillance +C0260823|T033|PT|Z71.3|ICD10CM|Dietary counseling and surveillance|Dietary counseling and surveillance +C0260823|T033|AB|Z71.3|ICD10CM|Dietary counseling and surveillance|Dietary counseling and surveillance +C0260823|T033|PT|Z71.3|ICD10|Dietary counselling and surveillance|Dietary counselling and surveillance +C0476683|T033|PT|Z71.4|ICD10AE|Alcohol abuse counseling and surveillance|Alcohol abuse counseling and surveillance +C0476683|T033|HT|Z71.4|ICD10CM|Alcohol abuse counseling and surveillance|Alcohol abuse counseling and surveillance +C0476683|T033|AB|Z71.4|ICD10CM|Alcohol abuse counseling and surveillance|Alcohol abuse counseling and surveillance +C0476683|T033|PT|Z71.4|ICD10|Alcohol abuse counselling and surveillance|Alcohol abuse counselling and surveillance +C2911098|T033|AB|Z71.41|ICD10CM|Alcohol abuse counseling and surveillance of alcoholic|Alcohol abuse counseling and surveillance of alcoholic +C2911098|T033|PT|Z71.41|ICD10CM|Alcohol abuse counseling and surveillance of alcoholic|Alcohol abuse counseling and surveillance of alcoholic +C2911100|T033|AB|Z71.42|ICD10CM|Counseling for family member of alcoholic|Counseling for family member of alcoholic +C2911100|T033|PT|Z71.42|ICD10CM|Counseling for family member of alcoholic|Counseling for family member of alcoholic +C2911099|T033|ET|Z71.42|ICD10CM|Counseling for significant other, partner, or friend of alcoholic|Counseling for significant other, partner, or friend of alcoholic +C0476684|T033|HT|Z71.5|ICD10CM|Drug abuse counseling and surveillance|Drug abuse counseling and surveillance +C0476684|T033|AB|Z71.5|ICD10CM|Drug abuse counseling and surveillance|Drug abuse counseling and surveillance +C0476684|T033|PT|Z71.5|ICD10AE|Drug abuse counseling and surveillance|Drug abuse counseling and surveillance +C0476684|T033|PT|Z71.5|ICD10|Drug abuse counselling and surveillance|Drug abuse counselling and surveillance +C2911101|T033|AB|Z71.51|ICD10CM|Drug abuse counseling and surveillance of drug abuser|Drug abuse counseling and surveillance of drug abuser +C2911101|T033|PT|Z71.51|ICD10CM|Drug abuse counseling and surveillance of drug abuser|Drug abuse counseling and surveillance of drug abuser +C2911103|T033|AB|Z71.52|ICD10CM|Counseling for family member of drug abuser|Counseling for family member of drug abuser +C2911103|T033|PT|Z71.52|ICD10CM|Counseling for family member of drug abuser|Counseling for family member of drug abuser +C2911102|T033|ET|Z71.52|ICD10CM|Counseling for significant other, partner, or friend of drug abuser|Counseling for significant other, partner, or friend of drug abuser +C0476685|T033|PT|Z71.6|ICD10AE|Tobacco abuse counseling|Tobacco abuse counseling +C0476685|T033|PT|Z71.6|ICD10CM|Tobacco abuse counseling|Tobacco abuse counseling +C0476685|T033|AB|Z71.6|ICD10CM|Tobacco abuse counseling|Tobacco abuse counseling +C0476685|T033|PT|Z71.6|ICD10|Tobacco abuse counselling|Tobacco abuse counselling +C0476681|T033|PT|Z71.7|ICD10CM|Human immunodeficiency virus [HIV] counseling|Human immunodeficiency virus [HIV] counseling +C0476681|T033|AB|Z71.7|ICD10CM|Human immunodeficiency virus [HIV] counseling|Human immunodeficiency virus [HIV] counseling +C0476681|T033|PT|Z71.7|ICD10AE|Human immunodeficiency virus [HIV] counseling|Human immunodeficiency virus [HIV] counseling +C0476681|T033|PT|Z71.7|ICD10|Human immunodeficiency virus [HIV] counselling|Human immunodeficiency virus [HIV] counselling +C0348773|T033|PT|Z71.8|ICD10AE|Other specified counseling|Other specified counseling +C0348773|T033|HT|Z71.8|ICD10CM|Other specified counseling|Other specified counseling +C0348773|T033|AB|Z71.8|ICD10CM|Other specified counseling|Other specified counseling +C0348773|T033|PT|Z71.8|ICD10|Other specified counselling|Other specified counselling +C2911104|T033|AB|Z71.81|ICD10CM|Spiritual or religious counseling|Spiritual or religious counseling +C2911104|T033|PT|Z71.81|ICD10CM|Spiritual or religious counseling|Spiritual or religious counseling +C0375886|T033|AB|Z71.82|ICD10CM|Exercise counseling|Exercise counseling +C0375886|T033|PT|Z71.82|ICD10CM|Exercise counseling|Exercise counseling +C4509579|T033|AB|Z71.83|ICD10CM|Encounter for nonprocreative genetic counseling|Encounter for nonprocreative genetic counseling +C4509579|T033|PT|Z71.83|ICD10CM|Encounter for nonprocreative genetic counseling|Encounter for nonprocreative genetic counseling +C5141112|T033|AB|Z71.84|ICD10CM|Encounter for health counseling related to travel|Encounter for health counseling related to travel +C5141112|T033|PT|Z71.84|ICD10CM|Encounter for health counseling related to travel|Encounter for health counseling related to travel +C5141178|T033|ET|Z71.84|ICD10CM|Encounter for health risk and safety counseling for (international) travel|Encounter for health risk and safety counseling for (international) travel +C0348773|T033|PT|Z71.89|ICD10CM|Other specified counseling|Other specified counseling +C0348773|T033|AB|Z71.89|ICD10CM|Other specified counseling|Other specified counseling +C0740209|T033|PT|Z71.9|ICD10CM|Counseling, unspecified|Counseling, unspecified +C0740209|T033|AB|Z71.9|ICD10CM|Counseling, unspecified|Counseling, unspecified +C0740209|T033|PT|Z71.9|ICD10AE|Counseling, unspecified|Counseling, unspecified +C0740209|T033|PT|Z71.9|ICD10|Counselling, unspecified|Counselling, unspecified +C2911105|T033|ET|Z71.9|ICD10CM|Encounter for medical advice NOS|Encounter for medical advice NOS +C0348087|T033|AB|Z72|ICD10CM|Problems related to lifestyle|Problems related to lifestyle +C0348087|T033|HT|Z72|ICD10CM|Problems related to lifestyle|Problems related to lifestyle +C0348087|T033|HT|Z72|ICD10|Problems related to lifestyle|Problems related to lifestyle +C0040335|T033|PT|Z72.0|ICD10|Tobacco use|Tobacco use +C0841002|T033|AB|Z72.0|ICD10CM|Tobacco use|Tobacco use +C0841002|T033|PT|Z72.0|ICD10CM|Tobacco use|Tobacco use +C0040335|T033|ET|Z72.0|ICD10CM|Tobacco use NOS|Tobacco use NOS +C0476643|T033|PT|Z72.2|ICD10|Drug use|Drug use +C1306891|T033|PT|Z72.3|ICD10|Lack of physical exercise|Lack of physical exercise +C1306891|T033|PT|Z72.3|ICD10CM|Lack of physical exercise|Lack of physical exercise +C1306891|T033|AB|Z72.3|ICD10CM|Lack of physical exercise|Lack of physical exercise +C3537062|T033|PT|Z72.4|ICD10|Inappropriate diet and eating habits|Inappropriate diet and eating habits +C3537062|T033|PT|Z72.4|ICD10CM|Inappropriate diet and eating habits|Inappropriate diet and eating habits +C3537062|T033|AB|Z72.4|ICD10CM|Inappropriate diet and eating habits|Inappropriate diet and eating habits +C0348089|T033|AB|Z72.5|ICD10CM|High risk sexual behavior|High risk sexual behavior +C0348089|T033|HT|Z72.5|ICD10CM|High risk sexual behavior|High risk sexual behavior +C0348089|T033|PT|Z72.5|ICD10AE|High-risk sexual behavior|High-risk sexual behavior +C0348089|T033|PT|Z72.5|ICD10|High-risk sexual behaviour|High-risk sexual behaviour +C2919102|T033|ET|Z72.5|ICD10CM|Promiscuity|Promiscuity +C3537221|T033|AB|Z72.51|ICD10CM|High risk heterosexual behavior|High risk heterosexual behavior +C3537221|T033|PT|Z72.51|ICD10CM|High risk heterosexual behavior|High risk heterosexual behavior +C3537222|T033|AB|Z72.52|ICD10CM|High risk homosexual behavior|High risk homosexual behavior +C3537222|T033|PT|Z72.52|ICD10CM|High risk homosexual behavior|High risk homosexual behavior +C3537223|T033|AB|Z72.53|ICD10CM|High risk bisexual behavior|High risk bisexual behavior +C3537223|T033|PT|Z72.53|ICD10CM|High risk bisexual behavior|High risk bisexual behavior +C0348090|T033|PT|Z72.6|ICD10|Gambling and betting|Gambling and betting +C0348090|T033|PT|Z72.6|ICD10CM|Gambling and betting|Gambling and betting +C0348090|T033|AB|Z72.6|ICD10CM|Gambling and betting|Gambling and betting +C0348774|T033|PT|Z72.8|ICD10|Other problems related to lifestyle|Other problems related to lifestyle +C0348774|T033|HT|Z72.8|ICD10CM|Other problems related to lifestyle|Other problems related to lifestyle +C0348774|T033|AB|Z72.8|ICD10CM|Other problems related to lifestyle|Other problems related to lifestyle +C2919119|T033|AB|Z72.81|ICD10CM|Antisocial behavior|Antisocial behavior +C2919119|T033|HT|Z72.81|ICD10CM|Antisocial behavior|Antisocial behavior +C2911109|T033|ET|Z72.810|ICD10CM|Antisocial behavior (child) (adolescent) without manifest psychiatric disorder|Antisocial behavior (child) (adolescent) without manifest psychiatric disorder +C2911113|T033|AB|Z72.810|ICD10CM|Child and adolescent antisocial behavior|Child and adolescent antisocial behavior +C2911113|T033|PT|Z72.810|ICD10CM|Child and adolescent antisocial behavior|Child and adolescent antisocial behavior +C2919120|T033|ET|Z72.810|ICD10CM|Delinquency NOS|Delinquency NOS +C2919121|T033|ET|Z72.810|ICD10CM|Group delinquency|Group delinquency +C2911110|T033|ET|Z72.810|ICD10CM|Offenses in the context of gang membership|Offenses in the context of gang membership +C2911111|T033|ET|Z72.810|ICD10CM|Stealing in company with others|Stealing in company with others +C2911112|T033|ET|Z72.810|ICD10CM|Truancy from school|Truancy from school +C2919118|T033|AB|Z72.811|ICD10CM|Adult antisocial behavior|Adult antisocial behavior +C2919118|T033|PT|Z72.811|ICD10CM|Adult antisocial behavior|Adult antisocial behavior +C2911114|T033|ET|Z72.811|ICD10CM|Adult antisocial behavior without manifest psychiatric disorder|Adult antisocial behavior without manifest psychiatric disorder +C2911115|T033|AB|Z72.82|ICD10CM|Problems related to sleep|Problems related to sleep +C2911115|T033|HT|Z72.82|ICD10CM|Problems related to sleep|Problems related to sleep +C1455980|T033|ET|Z72.820|ICD10CM|Lack of adequate sleep|Lack of adequate sleep +C0037316|T033|PT|Z72.820|ICD10CM|Sleep deprivation|Sleep deprivation +C0037316|T033|AB|Z72.820|ICD10CM|Sleep deprivation|Sleep deprivation +C2911116|T033|ET|Z72.821|ICD10CM|Bad sleep habits|Bad sleep habits +C2919123|T033|AB|Z72.821|ICD10CM|Inadequate sleep hygiene|Inadequate sleep hygiene +C2919123|T033|PT|Z72.821|ICD10CM|Inadequate sleep hygiene|Inadequate sleep hygiene +C2911117|T033|ET|Z72.821|ICD10CM|Irregular sleep habits|Irregular sleep habits +C2911118|T033|ET|Z72.821|ICD10CM|Unhealthy sleep wake schedule|Unhealthy sleep wake schedule +C0348774|T033|AB|Z72.89|ICD10CM|Other problems related to lifestyle|Other problems related to lifestyle +C0348774|T033|PT|Z72.89|ICD10CM|Other problems related to lifestyle|Other problems related to lifestyle +C2919149|T033|ET|Z72.89|ICD10CM|Self-damaging behavior|Self-damaging behavior +C0348775|T033|PT|Z72.9|ICD10CM|Problem related to lifestyle, unspecified|Problem related to lifestyle, unspecified +C0348775|T033|AB|Z72.9|ICD10CM|Problem related to lifestyle, unspecified|Problem related to lifestyle, unspecified +C0348775|T033|PT|Z72.9|ICD10|Problem related to lifestyle, unspecified|Problem related to lifestyle, unspecified +C0496699|T033|AB|Z73|ICD10CM|Problems related to life management difficulty|Problems related to life management difficulty +C0496699|T033|HT|Z73|ICD10CM|Problems related to life management difficulty|Problems related to life management difficulty +C0496699|T033|HT|Z73|ICD10|Problems related to life-management difficulty|Problems related to life-management difficulty +C0684323|T033|PT|Z73.0|ICD10CM|Burn-out|Burn-out +C0684323|T033|AB|Z73.0|ICD10CM|Burn-out|Burn-out +C0684323|T033|PT|Z73.0|ICD10|Burn-out|Burn-out +C0476645|T033|PT|Z73.1|ICD10|Accentuation of personality traits|Accentuation of personality traits +C1398208|T033|PT|Z73.1|ICD10CM|Type A behavior pattern|Type A behavior pattern +C1398208|T033|AB|Z73.1|ICD10CM|Type A behavior pattern|Type A behavior pattern +C0476646|T033|PT|Z73.2|ICD10|Lack of relaxation and leisure|Lack of relaxation and leisure +C0476646|T033|PT|Z73.2|ICD10CM|Lack of relaxation and leisure|Lack of relaxation and leisure +C0476646|T033|AB|Z73.2|ICD10CM|Lack of relaxation and leisure|Lack of relaxation and leisure +C2911119|T033|ET|Z73.3|ICD10CM|Physical and mental strain NOS|Physical and mental strain NOS +C0496700|T033|PT|Z73.3|ICD10CM|Stress, not elsewhere classified|Stress, not elsewhere classified +C0496700|T033|AB|Z73.3|ICD10CM|Stress, not elsewhere classified|Stress, not elsewhere classified +C0496700|T033|PT|Z73.3|ICD10|Stress, not elsewhere classified|Stress, not elsewhere classified +C0869118|T033|PT|Z73.4|ICD10|Inadequate social skills, not elsewhere classified|Inadequate social skills, not elsewhere classified +C0869118|T033|PT|Z73.4|ICD10CM|Inadequate social skills, not elsewhere classified|Inadequate social skills, not elsewhere classified +C0869118|T033|AB|Z73.4|ICD10CM|Inadequate social skills, not elsewhere classified|Inadequate social skills, not elsewhere classified +C0868888|T033|PT|Z73.5|ICD10CM|Social role conflict, not elsewhere classified|Social role conflict, not elsewhere classified +C0868888|T033|AB|Z73.5|ICD10CM|Social role conflict, not elsewhere classified|Social role conflict, not elsewhere classified +C0868888|T033|PT|Z73.5|ICD10|Social role conflict, not elsewhere classified|Social role conflict, not elsewhere classified +C0476648|T033|PT|Z73.6|ICD10|Limitation of activities due to disability|Limitation of activities due to disability +C0476648|T033|PT|Z73.6|ICD10CM|Limitation of activities due to disability|Limitation of activities due to disability +C0476648|T033|AB|Z73.6|ICD10CM|Limitation of activities due to disability|Limitation of activities due to disability +C0478610|T033|HT|Z73.8|ICD10CM|Other problems related to life management difficulty|Other problems related to life management difficulty +C0478610|T033|AB|Z73.8|ICD10CM|Other problems related to life management difficulty|Other problems related to life management difficulty +C0478610|T033|PT|Z73.8|ICD10|Other problems related to life-management difficulty|Other problems related to life-management difficulty +C4317290|T033|HT|Z73.81|ICD10CM|Behavioral insomnia of childhood|Behavioral insomnia of childhood +C4317290|T033|AB|Z73.81|ICD10CM|Behavioral insomnia of childhood|Behavioral insomnia of childhood +C2911120|T033|AB|Z73.810|ICD10CM|Behavioral insomnia of childhood, sleep-onset assoc type|Behavioral insomnia of childhood, sleep-onset assoc type +C2911120|T033|PT|Z73.810|ICD10CM|Behavioral insomnia of childhood, sleep-onset association type|Behavioral insomnia of childhood, sleep-onset association type +C2911121|T033|PT|Z73.811|ICD10CM|Behavioral insomnia of childhood, limit setting type|Behavioral insomnia of childhood, limit setting type +C2911121|T033|AB|Z73.811|ICD10CM|Behavioral insomnia of childhood, limit setting type|Behavioral insomnia of childhood, limit setting type +C2911122|T033|PT|Z73.812|ICD10CM|Behavioral insomnia of childhood, combined type|Behavioral insomnia of childhood, combined type +C2911122|T033|AB|Z73.812|ICD10CM|Behavioral insomnia of childhood, combined type|Behavioral insomnia of childhood, combined type +C2911123|T033|AB|Z73.819|ICD10CM|Behavioral insomnia of childhood, unspecified type|Behavioral insomnia of childhood, unspecified type +C2911123|T033|PT|Z73.819|ICD10CM|Behavioral insomnia of childhood, unspecified type|Behavioral insomnia of childhood, unspecified type +C1955602|T033|AB|Z73.82|ICD10CM|Dual sensory impairment|Dual sensory impairment +C1955602|T033|PT|Z73.82|ICD10CM|Dual sensory impairment|Dual sensory impairment +C0478610|T033|AB|Z73.89|ICD10CM|Other problems related to life management difficulty|Other problems related to life management difficulty +C0478610|T033|PT|Z73.89|ICD10CM|Other problems related to life management difficulty|Other problems related to life management difficulty +C0478617|T033|AB|Z73.9|ICD10CM|Problem related to life management difficulty, unspecified|Problem related to life management difficulty, unspecified +C0478617|T033|PT|Z73.9|ICD10CM|Problem related to life management difficulty, unspecified|Problem related to life management difficulty, unspecified +C0478617|T033|PT|Z73.9|ICD10|Problem related to life-management difficulty, unspecified|Problem related to life-management difficulty, unspecified +C0476649|T033|HT|Z74|ICD10CM|Problems related to care provider dependency|Problems related to care provider dependency +C0476649|T033|AB|Z74|ICD10CM|Problems related to care provider dependency|Problems related to care provider dependency +C0476649|T033|HT|Z74|ICD10|Problems related to care-provider dependency|Problems related to care-provider dependency +C0476650|T033|PT|Z74.0|ICD10|Reduced mobility|Reduced mobility +C0476650|T033|HT|Z74.0|ICD10CM|Reduced mobility|Reduced mobility +C0476650|T033|AB|Z74.0|ICD10CM|Reduced mobility|Reduced mobility +C1561676|T033|AB|Z74.01|ICD10CM|Bed confinement status|Bed confinement status +C1561676|T033|PT|Z74.01|ICD10CM|Bed confinement status|Bed confinement status +C0741453|T033|ET|Z74.01|ICD10CM|Bedridden|Bedridden +C2911124|T033|ET|Z74.09|ICD10CM|Chairridden|Chairridden +C2911125|T033|AB|Z74.09|ICD10CM|Other reduced mobility|Other reduced mobility +C2911125|T033|PT|Z74.09|ICD10CM|Other reduced mobility|Other reduced mobility +C0476650|T033|ET|Z74.09|ICD10CM|Reduced mobility NOS|Reduced mobility NOS +C0476651|T033|PT|Z74.1|ICD10CM|Need for assistance with personal care|Need for assistance with personal care +C0476651|T033|AB|Z74.1|ICD10CM|Need for assistance with personal care|Need for assistance with personal care +C0476651|T033|PT|Z74.1|ICD10|Need for assistance with personal care|Need for assistance with personal care +C0496701|T033|AB|Z74.2|ICD10CM|Need for assist at home & no house memb able to render care|Need for assist at home & no house memb able to render care +C0496701|T033|PT|Z74.2|ICD10CM|Need for assistance at home and no other household member able to render care|Need for assistance at home and no other household member able to render care +C0496701|T033|PT|Z74.2|ICD10|Need for assistance at home and no other household member able to render care|Need for assistance at home and no other household member able to render care +C0476652|T033|PT|Z74.3|ICD10|Need for continuous supervision|Need for continuous supervision +C0476652|T033|PT|Z74.3|ICD10CM|Need for continuous supervision|Need for continuous supervision +C0476652|T033|AB|Z74.3|ICD10CM|Need for continuous supervision|Need for continuous supervision +C0478611|T033|AB|Z74.8|ICD10CM|Other problems related to care provider dependency|Other problems related to care provider dependency +C0478611|T033|PT|Z74.8|ICD10CM|Other problems related to care provider dependency|Other problems related to care provider dependency +C0478611|T033|PT|Z74.8|ICD10|Other problems related to care-provider dependency|Other problems related to care-provider dependency +C0476653|T033|AB|Z74.9|ICD10CM|Problem related to care provider dependency, unspecified|Problem related to care provider dependency, unspecified +C0476653|T033|PT|Z74.9|ICD10CM|Problem related to care provider dependency, unspecified|Problem related to care provider dependency, unspecified +C0476653|T033|PT|Z74.9|ICD10|Problem related to care-provider dependency, unspecified|Problem related to care-provider dependency, unspecified +C0476687|T033|HT|Z75|ICD10|Problems related to medical facilities and other health care|Problems related to medical facilities and other health care +C0476687|T033|HT|Z75|ICD10CM|Problems related to medical facilities and other health care|Problems related to medical facilities and other health care +C0476687|T033|AB|Z75|ICD10CM|Problems related to medical facilities and other health care|Problems related to medical facilities and other health care +C0420585|T033|PT|Z75.0|ICD10CM|Medical services not available in home|Medical services not available in home +C0420585|T033|AB|Z75.0|ICD10CM|Medical services not available in home|Medical services not available in home +C0420585|T033|PT|Z75.0|ICD10|Medical services not available in home|Medical services not available in home +C0260812|T033|PT|Z75.1|ICD10|Person awaiting admission to adequate facility elsewhere|Person awaiting admission to adequate facility elsewhere +C0260812|T033|PT|Z75.1|ICD10CM|Person awaiting admission to adequate facility elsewhere|Person awaiting admission to adequate facility elsewhere +C0260812|T033|AB|Z75.1|ICD10CM|Person awaiting admission to adequate facility elsewhere|Person awaiting admission to adequate facility elsewhere +C0478612|T033|PT|Z75.2|ICD10CM|Other waiting period for investigation and treatment|Other waiting period for investigation and treatment +C0478612|T033|AB|Z75.2|ICD10CM|Other waiting period for investigation and treatment|Other waiting period for investigation and treatment +C0478612|T033|PT|Z75.2|ICD10|Other waiting period for investigation and treatment|Other waiting period for investigation and treatment +C0496702|T033|PT|Z75.3|ICD10|Unavailability and inaccessibility of health-care facilities|Unavailability and inaccessibility of health-care facilities +C0496702|T033|PT|Z75.3|ICD10CM|Unavailability and inaccessibility of health-care facilities|Unavailability and inaccessibility of health-care facilities +C0496702|T033|AB|Z75.3|ICD10CM|Unavailability and inaccessibility of health-care facilities|Unavailability and inaccessibility of health-care facilities +C0476688|T033|PT|Z75.4|ICD10CM|Unavailability and inaccessibility of other helping agencies|Unavailability and inaccessibility of other helping agencies +C0476688|T033|AB|Z75.4|ICD10CM|Unavailability and inaccessibility of other helping agencies|Unavailability and inaccessibility of other helping agencies +C0476688|T033|PT|Z75.4|ICD10|Unavailability and inaccessibility of other helping agencies|Unavailability and inaccessibility of other helping agencies +C0260796|T033|PT|Z75.5|ICD10|Holiday relief care|Holiday relief care +C0260796|T033|PT|Z75.5|ICD10CM|Holiday relief care|Holiday relief care +C0260796|T033|AB|Z75.5|ICD10CM|Holiday relief care|Holiday relief care +C0478613|T033|AB|Z75.8|ICD10CM|Oth prob related to medical facilities and oth health care|Oth prob related to medical facilities and oth health care +C0478613|T033|PT|Z75.8|ICD10CM|Other problems related to medical facilities and other health care|Other problems related to medical facilities and other health care +C0478613|T033|PT|Z75.8|ICD10|Other problems related to medical facilities and other health care|Other problems related to medical facilities and other health care +C0476689|T033|AB|Z75.9|ICD10CM|Unsp problem related to med facilities and oth health care|Unsp problem related to med facilities and oth health care +C0476689|T033|PT|Z75.9|ICD10CM|Unspecified problem related to medical facilities and other health care|Unspecified problem related to medical facilities and other health care +C0476689|T033|PT|Z75.9|ICD10|Unspecified problem related to medical facilities and other health care|Unspecified problem related to medical facilities and other health care +C0178343|T033|AB|Z76|ICD10CM|Persons encountering health services in other circumstances|Persons encountering health services in other circumstances +C0178343|T033|HT|Z76|ICD10CM|Persons encountering health services in other circumstances|Persons encountering health services in other circumstances +C0178343|T033|HT|Z76|ICD10|Persons encountering health services in other circumstances|Persons encountering health services in other circumstances +C0260845|T033|PT|Z76.0|ICD10CM|Encounter for issue of repeat prescription|Encounter for issue of repeat prescription +C0260845|T033|AB|Z76.0|ICD10CM|Encounter for issue of repeat prescription|Encounter for issue of repeat prescription +C2911126|T033|ET|Z76.0|ICD10CM|Encounter for issue of repeat prescription for appliance|Encounter for issue of repeat prescription for appliance +C2911127|T033|ET|Z76.0|ICD10CM|Encounter for issue of repeat prescription for medicaments|Encounter for issue of repeat prescription for medicaments +C2911128|T033|ET|Z76.0|ICD10CM|Encounter for issue of repeat prescription for spectacles|Encounter for issue of repeat prescription for spectacles +C0260845|T033|PT|Z76.0|ICD10|Issue of repeat prescription|Issue of repeat prescription +C0476707|T033|PT|Z76.1|ICD10CM|Encounter for health supervision and care of foundling|Encounter for health supervision and care of foundling +C0476707|T033|AB|Z76.1|ICD10CM|Encounter for health supervision and care of foundling|Encounter for health supervision and care of foundling +C0476707|T033|PT|Z76.1|ICD10|Health supervision and care of foundling|Health supervision and care of foundling +C2911134|T033|AB|Z76.2|ICD10CM|Encntr for hlth suprvsn and care of healthy infant and child|Encntr for hlth suprvsn and care of healthy infant and child +C2911134|T033|PT|Z76.2|ICD10CM|Encounter for health supervision and care of other healthy infant and child|Encounter for health supervision and care of other healthy infant and child +C0260821|T033|PT|Z76.3|ICD10|Healthy person accompanying sick person|Healthy person accompanying sick person +C0260821|T033|PT|Z76.3|ICD10CM|Healthy person accompanying sick person|Healthy person accompanying sick person +C0260821|T033|AB|Z76.3|ICD10CM|Healthy person accompanying sick person|Healthy person accompanying sick person +C0478614|T033|PT|Z76.4|ICD10|Other boarder in health-care facility|Other boarder in health-care facility +C2911135|T033|AB|Z76.4|ICD10CM|Other boarder to healthcare facility|Other boarder to healthcare facility +C2911135|T033|PT|Z76.4|ICD10CM|Other boarder to healthcare facility|Other boarder to healthcare facility +C0496703|T033|PT|Z76.5|ICD10|Malingerer [conscious simulation]|Malingerer [conscious simulation] +C0496703|T033|PT|Z76.5|ICD10CM|Malingerer [conscious simulation]|Malingerer [conscious simulation] +C0496703|T033|AB|Z76.5|ICD10CM|Malingerer [conscious simulation]|Malingerer [conscious simulation] +C2911136|T033|ET|Z76.5|ICD10CM|Person feigning illness (with obvious motivation)|Person feigning illness (with obvious motivation) +C0478615|T033|AB|Z76.8|ICD10CM|Persons encountering health services in oth circumstances|Persons encountering health services in oth circumstances +C0478615|T033|HT|Z76.8|ICD10CM|Persons encountering health services in other specified circumstances|Persons encountering health services in other specified circumstances +C0478615|T033|PT|Z76.8|ICD10|Persons encountering health services in other specified circumstances|Persons encountering health services in other specified circumstances +C2911138|T033|AB|Z76.81|ICD10CM|Expectant parent(s) prebirth pediatrician visit|Expectant parent(s) prebirth pediatrician visit +C2911138|T033|PT|Z76.81|ICD10CM|Expectant parent(s) prebirth pediatrician visit|Expectant parent(s) prebirth pediatrician visit +C2911137|T033|ET|Z76.81|ICD10CM|Pre-adoption pediatrician visit for adoptive parent(s)|Pre-adoption pediatrician visit for adoptive parent(s) +C1455976|T033|AB|Z76.82|ICD10CM|Awaiting organ transplant status|Awaiting organ transplant status +C1455976|T033|PT|Z76.82|ICD10CM|Awaiting organ transplant status|Awaiting organ transplant status +C2911139|T033|ET|Z76.82|ICD10CM|Patient waiting for organ availability|Patient waiting for organ availability +C0478615|T033|AB|Z76.89|ICD10CM|Persons encountering health services in oth circumstances|Persons encountering health services in oth circumstances +C0478615|T033|PT|Z76.89|ICD10CM|Persons encountering health services in other specified circumstances|Persons encountering health services in other specified circumstances +C2911140|T033|ET|Z76.89|ICD10CM|Persons encountering health services NOS|Persons encountering health services NOS +C0496704|T033|PT|Z76.9|ICD10|Person encountering health services in unspecified circumstances|Person encountering health services in unspecified circumstances +C4290522|T033|ET|Z77|ICD10CM|contact with and (suspected) exposures to potential hazards to health|contact with and (suspected) exposures to potential hazards to health +C2911142|T033|AB|Z77|ICD10CM|Oth contact w and (suspected) exposures hazardous to health|Oth contact w and (suspected) exposures hazardous to health +C2911142|T033|HT|Z77|ICD10CM|Other contact with and (suspected) exposures hazardous to health|Other contact with and (suspected) exposures hazardous to health +C2911143|T033|AB|Z77.0|ICD10CM|Contact w and exposure to hazard, chiefly nonmed, chemicals|Contact w and exposure to hazard, chiefly nonmed, chemicals +C2911143|T033|HT|Z77.0|ICD10CM|Contact with and (suspected) exposure to hazardous, chiefly nonmedicinal, chemicals|Contact with and (suspected) exposure to hazardous, chiefly nonmedicinal, chemicals +C2349903|T033|AB|Z77.01|ICD10CM|Contact with and (suspected) exposure to hazardous metals|Contact with and (suspected) exposure to hazardous metals +C2349903|T033|HT|Z77.01|ICD10CM|Contact with and (suspected) exposure to hazardous metals|Contact with and (suspected) exposure to hazardous metals +C2349899|T033|AB|Z77.010|ICD10CM|Contact with and (suspected) exposure to arsenic|Contact with and (suspected) exposure to arsenic +C2349899|T033|PT|Z77.010|ICD10CM|Contact with and (suspected) exposure to arsenic|Contact with and (suspected) exposure to arsenic +C2911144|T033|AB|Z77.011|ICD10CM|Contact with and (suspected) exposure to lead|Contact with and (suspected) exposure to lead +C2911144|T033|PT|Z77.011|ICD10CM|Contact with and (suspected) exposure to lead|Contact with and (suspected) exposure to lead +C3161155|T033|AB|Z77.012|ICD10CM|Contact with and (suspected) exposure to uranium|Contact with and (suspected) exposure to uranium +C3161155|T033|PT|Z77.012|ICD10CM|Contact with and (suspected) exposure to uranium|Contact with and (suspected) exposure to uranium +C2349900|T033|AB|Z77.018|ICD10CM|Contact w and (suspected) exposure to oth hazardous metals|Contact w and (suspected) exposure to oth hazardous metals +C2349901|T033|ET|Z77.018|ICD10CM|Contact with and (suspected) exposure to chromium compounds|Contact with and (suspected) exposure to chromium compounds +C2349902|T033|ET|Z77.018|ICD10CM|Contact with and (suspected) exposure to nickel dust|Contact with and (suspected) exposure to nickel dust +C2349900|T033|PT|Z77.018|ICD10CM|Contact with and (suspected) exposure to other hazardous metals|Contact with and (suspected) exposure to other hazardous metals +C2349909|T033|AB|Z77.02|ICD10CM|Contact w and exposure to hazardous aromatic compounds|Contact w and exposure to hazardous aromatic compounds +C2349909|T033|HT|Z77.02|ICD10CM|Contact with and (suspected) exposure to hazardous aromatic compounds|Contact with and (suspected) exposure to hazardous aromatic compounds +C2349904|T033|AB|Z77.020|ICD10CM|Contact with and (suspected) exposure to aromatic amines|Contact with and (suspected) exposure to aromatic amines +C2349904|T033|PT|Z77.020|ICD10CM|Contact with and (suspected) exposure to aromatic amines|Contact with and (suspected) exposure to aromatic amines +C2349905|T033|AB|Z77.021|ICD10CM|Contact with and (suspected) exposure to benzene|Contact with and (suspected) exposure to benzene +C2349905|T033|PT|Z77.021|ICD10CM|Contact with and (suspected) exposure to benzene|Contact with and (suspected) exposure to benzene +C2911145|T033|ET|Z77.028|ICD10CM|Aromatic dyes NOS|Aromatic dyes NOS +C2349906|T033|AB|Z77.028|ICD10CM|Contact w and exposure to oth hazardous aromatic compounds|Contact w and exposure to oth hazardous aromatic compounds +C2349906|T033|PT|Z77.028|ICD10CM|Contact with and (suspected) exposure to other hazardous aromatic compounds|Contact with and (suspected) exposure to other hazardous aromatic compounds +C2911638|T033|ET|Z77.028|ICD10CM|Polycyclic aromatic hydrocarbons|Polycyclic aromatic hydrocarbons +C2911146|T033|AB|Z77.09|ICD10CM|Contact w and expsr to oth hazard, chiefly nonmed, chemicals|Contact w and expsr to oth hazard, chiefly nonmed, chemicals +C2911146|T033|HT|Z77.09|ICD10CM|Contact with and (suspected) exposure to other hazardous, chiefly nonmedicinal, chemicals|Contact with and (suspected) exposure to other hazardous, chiefly nonmedicinal, chemicals +C2712542|T033|AB|Z77.090|ICD10CM|Contact with and (suspected) exposure to asbestos|Contact with and (suspected) exposure to asbestos +C2712542|T033|PT|Z77.090|ICD10CM|Contact with and (suspected) exposure to asbestos|Contact with and (suspected) exposure to asbestos +C2911146|T033|AB|Z77.098|ICD10CM|Contact w and expsr to oth hazard, chiefly nonmed, chemicals|Contact w and expsr to oth hazard, chiefly nonmed, chemicals +C2911146|T033|PT|Z77.098|ICD10CM|Contact with and (suspected) exposure to other hazardous, chiefly nonmedicinal, chemicals|Contact with and (suspected) exposure to other hazardous, chiefly nonmedicinal, chemicals +C2911146|T033|ET|Z77.098|ICD10CM|Dyes NOS|Dyes NOS +C2911148|T033|AB|Z77.1|ICD10CM|Contact w and exposure pollutn & hazrd in phys envr|Contact w and exposure pollutn & hazrd in phys envr +C2911149|T033|AB|Z77.11|ICD10CM|Contact w and (suspected) exposure to environ pollution|Contact w and (suspected) exposure to environ pollution +C2911149|T033|HT|Z77.11|ICD10CM|Contact with and (suspected) exposure to environmental pollution|Contact with and (suspected) exposure to environmental pollution +C2911150|T033|AB|Z77.110|ICD10CM|Contact with and (suspected) exposure to air pollution|Contact with and (suspected) exposure to air pollution +C2911150|T033|PT|Z77.110|ICD10CM|Contact with and (suspected) exposure to air pollution|Contact with and (suspected) exposure to air pollution +C2911151|T033|AB|Z77.111|ICD10CM|Contact with and (suspected) exposure to water pollution|Contact with and (suspected) exposure to water pollution +C2911151|T033|PT|Z77.111|ICD10CM|Contact with and (suspected) exposure to water pollution|Contact with and (suspected) exposure to water pollution +C2911152|T033|AB|Z77.112|ICD10CM|Contact with and (suspected) exposure to soil pollution|Contact with and (suspected) exposure to soil pollution +C2911152|T033|PT|Z77.112|ICD10CM|Contact with and (suspected) exposure to soil pollution|Contact with and (suspected) exposure to soil pollution +C2911153|T033|AB|Z77.118|ICD10CM|Contact w and (suspected) exposure to oth environ pollution|Contact w and (suspected) exposure to oth environ pollution +C2911153|T033|PT|Z77.118|ICD10CM|Contact with and (suspected) exposure to other environmental pollution|Contact with and (suspected) exposure to other environmental pollution +C2911154|T033|AB|Z77.12|ICD10CM|Contact w and expsr to hazards in the physical environment|Contact w and expsr to hazards in the physical environment +C2911154|T033|HT|Z77.12|ICD10CM|Contact with and (suspected) exposure to hazards in the physical environment|Contact with and (suspected) exposure to hazards in the physical environment +C2911155|T033|AB|Z77.120|ICD10CM|Contact with and (suspected) exposure to mold (toxic)|Contact with and (suspected) exposure to mold (toxic) +C2911155|T033|PT|Z77.120|ICD10CM|Contact with and (suspected) exposure to mold (toxic)|Contact with and (suspected) exposure to mold (toxic) +C2911163|T033|AB|Z77.121|ICD10CM|Contact w and exposure to harmful algae and algae toxins|Contact w and exposure to harmful algae and algae toxins +C2911156|T033|ET|Z77.121|ICD10CM|Contact with and (suspected) exposure to (harmful) algae bloom NOS|Contact with and (suspected) exposure to (harmful) algae bloom NOS +C2911158|T033|ET|Z77.121|ICD10CM|Contact with and (suspected) exposure to blue-green algae bloom|Contact with and (suspected) exposure to blue-green algae bloom +C2911159|T033|ET|Z77.121|ICD10CM|Contact with and (suspected) exposure to brown tide|Contact with and (suspected) exposure to brown tide +C2911160|T033|ET|Z77.121|ICD10CM|Contact with and (suspected) exposure to cyanobacteria bloom|Contact with and (suspected) exposure to cyanobacteria bloom +C2911157|T033|ET|Z77.121|ICD10CM|Contact with and (suspected) exposure to Florida red tide|Contact with and (suspected) exposure to Florida red tide +C2911163|T033|PT|Z77.121|ICD10CM|Contact with and (suspected) exposure to harmful algae and algae toxins|Contact with and (suspected) exposure to harmful algae and algae toxins +C2911161|T033|ET|Z77.121|ICD10CM|Contact with and (suspected) exposure to pfiesteria piscicida|Contact with and (suspected) exposure to pfiesteria piscicida +C2911162|T033|ET|Z77.121|ICD10CM|Contact with and (suspected) exposure to red tide|Contact with and (suspected) exposure to red tide +C2911164|T033|AB|Z77.122|ICD10CM|Contact with and (suspected) exposure to noise|Contact with and (suspected) exposure to noise +C2911164|T033|PT|Z77.122|ICD10CM|Contact with and (suspected) exposure to noise|Contact with and (suspected) exposure to noise +C2911165|T033|AB|Z77.123|ICD10CM|Cntct w & expsr to radon and other naturally occur radiation|Cntct w & expsr to radon and other naturally occur radiation +C2911165|T033|PT|Z77.123|ICD10CM|Contact with and (suspected) exposure to radon and other naturally occurring radiation|Contact with and (suspected) exposure to radon and other naturally occurring radiation +C2911166|T033|AB|Z77.128|ICD10CM|Contact w and expsr to oth hazards in the physcl environment|Contact w and expsr to oth hazards in the physcl environment +C2911166|T033|PT|Z77.128|ICD10CM|Contact with and (suspected) exposure to other hazards in the physical environment|Contact with and (suspected) exposure to other hazards in the physical environment +C2911167|T033|HT|Z77.2|ICD10CM|Contact with and (suspected) exposure to other hazardous substances|Contact with and (suspected) exposure to other hazardous substances +C2911167|T033|AB|Z77.2|ICD10CM|Contact with and exposure to other hazardous substances|Contact with and exposure to other hazardous substances +C2911168|T033|AB|Z77.21|ICD10CM|Contact w and exposure to potentially hazardous body fluids|Contact w and exposure to potentially hazardous body fluids +C2911168|T033|PT|Z77.21|ICD10CM|Contact with and (suspected) exposure to potentially hazardous body fluids|Contact with and (suspected) exposure to potentially hazardous body fluids +C2911171|T033|AB|Z77.22|ICD10CM|Cntct w and expsr to environ tobacco smoke (acute) (chronic)|Cntct w and expsr to environ tobacco smoke (acute) (chronic) +C2911171|T033|PT|Z77.22|ICD10CM|Contact with and (suspected) exposure to environmental tobacco smoke (acute) (chronic)|Contact with and (suspected) exposure to environmental tobacco smoke (acute) (chronic) +C2911169|T033|ET|Z77.22|ICD10CM|Exposure to second hand tobacco smoke (acute) (chronic)|Exposure to second hand tobacco smoke (acute) (chronic) +C2911170|T033|ET|Z77.22|ICD10CM|Passive smoking (acute) (chronic)|Passive smoking (acute) (chronic) +C2911167|T033|PT|Z77.29|ICD10CM|Contact with and (suspected) exposure to other hazardous substances|Contact with and (suspected) exposure to other hazardous substances +C2911167|T033|AB|Z77.29|ICD10CM|Contact with and exposure to other hazardous substances|Contact with and exposure to other hazardous substances +C2911142|T033|AB|Z77.9|ICD10CM|Oth contact w and (suspected) exposures hazardous to health|Oth contact w and (suspected) exposures hazardous to health +C2911142|T033|PT|Z77.9|ICD10CM|Other contact with and (suspected) exposures hazardous to health|Other contact with and (suspected) exposures hazardous to health +C2911172|T033|HT|Z78|ICD10CM|Other specified health status|Other specified health status +C2911172|T033|AB|Z78|ICD10CM|Other specified health status|Other specified health status +C2911174|T033|AB|Z78.0|ICD10CM|Asymptomatic menopausal state|Asymptomatic menopausal state +C2911174|T033|PT|Z78.0|ICD10CM|Asymptomatic menopausal state|Asymptomatic menopausal state +C2919100|T033|ET|Z78.0|ICD10CM|Menopausal state NOS|Menopausal state NOS +C2911173|T033|ET|Z78.0|ICD10CM|Postmenopausal status NOS|Postmenopausal status NOS +C2921308|T033|PT|Z78.1|ICD10CM|Physical restraint status|Physical restraint status +C2921308|T033|AB|Z78.1|ICD10CM|Physical restraint status|Physical restraint status +C2911172|T033|AB|Z78.9|ICD10CM|Other specified health status|Other specified health status +C2911172|T033|PT|Z78.9|ICD10CM|Other specified health status|Other specified health status +C2911176|T033|AB|Z79|ICD10CM|Long term (current) drug therapy|Long term (current) drug therapy +C2911176|T033|HT|Z79|ICD10CM|Long term (current) drug therapy|Long term (current) drug therapy +C4290523|T033|ET|Z79|ICD10CM|long term (current) drug use for prophylactic purposes|long term (current) drug use for prophylactic purposes +C2911177|T033|HT|Z79.0|ICD10CM|Long term (current) use of anticoagulants and antithrombotics/antiplatelets|Long term (current) use of anticoagulants and antithrombotics/antiplatelets +C2911177|T033|AB|Z79.0|ICD10CM|Long term (current) use of antocoag/antithrom/angiplate|Long term (current) use of antocoag/antithrom/angiplate +C2911178|T033|AB|Z79.01|ICD10CM|Long term (current) use of anticoagulants|Long term (current) use of anticoagulants +C2911178|T033|PT|Z79.01|ICD10CM|Long term (current) use of anticoagulants|Long term (current) use of anticoagulants +C2911179|T033|AB|Z79.02|ICD10CM|Long term (current) use of antithrombotics/antiplatelets|Long term (current) use of antithrombotics/antiplatelets +C2911179|T033|PT|Z79.02|ICD10CM|Long term (current) use of antithrombotics/antiplatelets|Long term (current) use of antithrombotics/antiplatelets +C2911180|T033|PT|Z79.1|ICD10CM|Long term (current) use of non-steroidal anti-inflammatories (NSAID)|Long term (current) use of non-steroidal anti-inflammatories (NSAID) +C2911180|T033|AB|Z79.1|ICD10CM|Long term (current) use of non-steroidal non-inflam (NSAID)|Long term (current) use of non-steroidal non-inflam (NSAID) +C2911181|T033|AB|Z79.2|ICD10CM|Long term (current) use of antibiotics|Long term (current) use of antibiotics +C2911181|T033|PT|Z79.2|ICD10CM|Long term (current) use of antibiotics|Long term (current) use of antibiotics +C2911182|T033|ET|Z79.3|ICD10CM|Long term (current) use of birth control pill or patch|Long term (current) use of birth control pill or patch +C2911183|T033|AB|Z79.3|ICD10CM|Long term (current) use of hormonal contraceptives|Long term (current) use of hormonal contraceptives +C2911183|T033|PT|Z79.3|ICD10CM|Long term (current) use of hormonal contraceptives|Long term (current) use of hormonal contraceptives +C1455979|T033|AB|Z79.4|ICD10CM|Long term (current) use of insulin|Long term (current) use of insulin +C1455979|T033|PT|Z79.4|ICD10CM|Long term (current) use of insulin|Long term (current) use of insulin +C1260466|T033|AB|Z79.5|ICD10CM|Long term (current) use of steroids|Long term (current) use of steroids +C1260466|T033|HT|Z79.5|ICD10CM|Long term (current) use of steroids|Long term (current) use of steroids +C2911186|T033|AB|Z79.51|ICD10CM|Long term (current) use of inhaled steroids|Long term (current) use of inhaled steroids +C2911186|T033|PT|Z79.51|ICD10CM|Long term (current) use of inhaled steroids|Long term (current) use of inhaled steroids +C2911187|T033|AB|Z79.52|ICD10CM|Long term (current) use of systemic steroids|Long term (current) use of systemic steroids +C2911187|T033|PT|Z79.52|ICD10CM|Long term (current) use of systemic steroids|Long term (current) use of systemic steroids +C2911188|T033|HT|Z79.8|ICD10CM|Other long term (current) drug therapy|Other long term (current) drug therapy +C2911188|T033|AB|Z79.8|ICD10CM|Other long term (current) drug therapy|Other long term (current) drug therapy +C2911189|T033|AB|Z79.81|ICD10CM|Lng trm (crnt) use of agnt aff estrog recpt & estrog levels|Lng trm (crnt) use of agnt aff estrog recpt & estrog levels +C2911189|T033|HT|Z79.81|ICD10CM|Long term (current) use of agents affecting estrogen receptors and estrogen levels|Long term (current) use of agents affecting estrogen receptors and estrogen levels +C2911193|T033|AB|Z79.810|ICD10CM|Lng trm (crnt) use of slctv estrog receptor modulators|Lng trm (crnt) use of slctv estrog receptor modulators +C2911190|T033|ET|Z79.810|ICD10CM|Long term (current) use of raloxifene (Evista)|Long term (current) use of raloxifene (Evista) +C2911193|T033|PT|Z79.810|ICD10CM|Long term (current) use of selective estrogen receptor modulators (SERMs)|Long term (current) use of selective estrogen receptor modulators (SERMs) +C2911191|T033|ET|Z79.810|ICD10CM|Long term (current) use of tamoxifen (Nolvadex)|Long term (current) use of tamoxifen (Nolvadex) +C2911192|T033|ET|Z79.810|ICD10CM|Long term (current) use of toremifene (Fareston)|Long term (current) use of toremifene (Fareston) +C2911194|T033|ET|Z79.811|ICD10CM|Long term (current) use of anastrozole (Arimidex)|Long term (current) use of anastrozole (Arimidex) +C2911197|T033|AB|Z79.811|ICD10CM|Long term (current) use of aromatase inhibitors|Long term (current) use of aromatase inhibitors +C2911197|T033|PT|Z79.811|ICD10CM|Long term (current) use of aromatase inhibitors|Long term (current) use of aromatase inhibitors +C2911195|T033|ET|Z79.811|ICD10CM|Long term (current) use of exemestane (Aromasin)|Long term (current) use of exemestane (Aromasin) +C2911196|T033|ET|Z79.811|ICD10CM|Long term (current) use of letrozole (Femara)|Long term (current) use of letrozole (Femara) +C2911204|T033|AB|Z79.818|ICD10CM|Lng trm (crnt) use of agnt aff estrog recpt & estrog levels|Lng trm (crnt) use of agnt aff estrog recpt & estrog levels +C2911198|T033|ET|Z79.818|ICD10CM|Long term (current) use of estrogen receptor downregulators|Long term (current) use of estrogen receptor downregulators +C2911199|T033|ET|Z79.818|ICD10CM|Long term (current) use of fulvestrant (Faslodex)|Long term (current) use of fulvestrant (Faslodex) +C2911200|T033|ET|Z79.818|ICD10CM|Long term (current) use of gonadotropin-releasing hormone (GnRH) agonist|Long term (current) use of gonadotropin-releasing hormone (GnRH) agonist +C2911201|T033|ET|Z79.818|ICD10CM|Long term (current) use of goserelin acetate (Zoladex)|Long term (current) use of goserelin acetate (Zoladex) +C2911202|T033|ET|Z79.818|ICD10CM|Long term (current) use of leuprolide acetate (leuprorelin) (Lupron)|Long term (current) use of leuprolide acetate (leuprorelin) (Lupron) +C2911203|T033|ET|Z79.818|ICD10CM|Long term (current) use of megestrol acetate (Megace)|Long term (current) use of megestrol acetate (Megace) +C2911204|T033|PT|Z79.818|ICD10CM|Long term (current) use of other agents affecting estrogen receptors and estrogen levels|Long term (current) use of other agents affecting estrogen receptors and estrogen levels +C2911205|T033|AB|Z79.82|ICD10CM|Long term (current) use of aspirin|Long term (current) use of aspirin +C2911205|T033|PT|Z79.82|ICD10CM|Long term (current) use of aspirin|Long term (current) use of aspirin +C3161154|T033|AB|Z79.83|ICD10CM|Long term (current) use of bisphosphonates|Long term (current) use of bisphosphonates +C3161154|T033|PT|Z79.83|ICD10CM|Long term (current) use of bisphosphonates|Long term (current) use of bisphosphonates +C4270792|T033|ET|Z79.84|ICD10CM|Long term (current) use of oral antidiabetic drugs|Long term (current) use of oral antidiabetic drugs +C4270791|T033|AB|Z79.84|ICD10CM|Long term (current) use of oral hypoglycemic drugs|Long term (current) use of oral hypoglycemic drugs +C4270791|T033|PT|Z79.84|ICD10CM|Long term (current) use of oral hypoglycemic drugs|Long term (current) use of oral hypoglycemic drugs +C2911188|T033|HT|Z79.89|ICD10CM|Other long term (current) drug therapy|Other long term (current) drug therapy +C2911188|T033|AB|Z79.89|ICD10CM|Other long term (current) drug therapy|Other long term (current) drug therapy +C4759772|T033|AB|Z79.890|ICD10CM|Hormone replacement therapy|Hormone replacement therapy +C4759772|T033|PT|Z79.890|ICD10CM|Hormone replacement therapy|Hormone replacement therapy +C2911206|T033|ET|Z79.891|ICD10CM|Long term (current) use of methadone for pain management|Long term (current) use of methadone for pain management +C2911207|T033|AB|Z79.891|ICD10CM|Long term (current) use of opiate analgesic|Long term (current) use of opiate analgesic +C2911207|T033|PT|Z79.891|ICD10CM|Long term (current) use of opiate analgesic|Long term (current) use of opiate analgesic +C2911188|T033|AB|Z79.899|ICD10CM|Other long term (current) drug therapy|Other long term (current) drug therapy +C2911188|T033|PT|Z79.899|ICD10CM|Other long term (current) drug therapy|Other long term (current) drug therapy +C1261378|T033|HT|Z80|ICD10|Family history of malignant neoplasm|Family history of malignant neoplasm +C2911208|T033|AB|Z80|ICD10CM|Family history of primary malignant neoplasm|Family history of primary malignant neoplasm +C2911208|T033|HT|Z80|ICD10CM|Family history of primary malignant neoplasm|Family history of primary malignant neoplasm +C2911209|T033|ET|Z80.0|ICD10CM|Conditions classifiable to C15-C26|Conditions classifiable to C15-C26 +C0260506|T033|PT|Z80.0|ICD10CM|Family history of malignant neoplasm of digestive organs|Family history of malignant neoplasm of digestive organs +C0260506|T033|AB|Z80.0|ICD10CM|Family history of malignant neoplasm of digestive organs|Family history of malignant neoplasm of digestive organs +C0260506|T033|PT|Z80.0|ICD10|Family history of malignant neoplasm of digestive organs|Family history of malignant neoplasm of digestive organs +C2911210|T033|ET|Z80.1|ICD10CM|Conditions classifiable to C33-C34|Conditions classifiable to C33-C34 +C0260507|T033|AB|Z80.1|ICD10CM|Family history of malig neoplasm of trachea, bronc and lung|Family history of malig neoplasm of trachea, bronc and lung +C0260507|T033|PT|Z80.1|ICD10CM|Family history of malignant neoplasm of trachea, bronchus and lung|Family history of malignant neoplasm of trachea, bronchus and lung +C0260507|T033|PT|Z80.1|ICD10|Family history of malignant neoplasm of trachea, bronchus and lung|Family history of malignant neoplasm of trachea, bronchus and lung +C2911211|T033|ET|Z80.2|ICD10CM|Conditions classifiable to C30-C32, C37-C39|Conditions classifiable to C30-C32, C37-C39 +C0260508|T033|PT|Z80.2|ICD10|Family history of malignant neoplasm of other respiratory and intrathoracic organs|Family history of malignant neoplasm of other respiratory and intrathoracic organs +C0260508|T033|PT|Z80.2|ICD10CM|Family history of malignant neoplasm of other respiratory and intrathoracic organs|Family history of malignant neoplasm of other respiratory and intrathoracic organs +C0260508|T033|AB|Z80.2|ICD10CM|Family hx of malig neoplm of resp and intrathorac organs|Family hx of malig neoplm of resp and intrathorac organs +C2911282|T033|ET|Z80.3|ICD10CM|Conditions classifiable to C50.-|Conditions classifiable to C50.- +C1261325|T033|PT|Z80.3|ICD10CM|Family history of malignant neoplasm of breast|Family history of malignant neoplasm of breast +C1261325|T033|AB|Z80.3|ICD10CM|Family history of malignant neoplasm of breast|Family history of malignant neoplasm of breast +C1261325|T033|PT|Z80.3|ICD10|Family history of malignant neoplasm of breast|Family history of malignant neoplasm of breast +C2911283|T033|ET|Z80.4|ICD10CM|Conditions classifiable to C51-C63|Conditions classifiable to C51-C63 +C0260510|T033|HT|Z80.4|ICD10CM|Family history of malignant neoplasm of genital organs|Family history of malignant neoplasm of genital organs +C0260510|T033|AB|Z80.4|ICD10CM|Family history of malignant neoplasm of genital organs|Family history of malignant neoplasm of genital organs +C0260510|T033|PT|Z80.4|ICD10|Family history of malignant neoplasm of genital organs|Family history of malignant neoplasm of genital organs +C0490017|T033|PT|Z80.41|ICD10CM|Family history of malignant neoplasm of ovary|Family history of malignant neoplasm of ovary +C0490017|T033|AB|Z80.41|ICD10CM|Family history of malignant neoplasm of ovary|Family history of malignant neoplasm of ovary +C1532320|T033|AB|Z80.42|ICD10CM|Family history of malignant neoplasm of prostate|Family history of malignant neoplasm of prostate +C1532320|T033|PT|Z80.42|ICD10CM|Family history of malignant neoplasm of prostate|Family history of malignant neoplasm of prostate +C0490019|T033|PT|Z80.43|ICD10CM|Family history of malignant neoplasm of testis|Family history of malignant neoplasm of testis +C0490019|T033|AB|Z80.43|ICD10CM|Family history of malignant neoplasm of testis|Family history of malignant neoplasm of testis +C0490020|T033|PT|Z80.49|ICD10CM|Family history of malignant neoplasm of other genital organs|Family history of malignant neoplasm of other genital organs +C0490020|T033|AB|Z80.49|ICD10CM|Family history of malignant neoplasm of other genital organs|Family history of malignant neoplasm of other genital organs +C2911284|T033|ET|Z80.5|ICD10CM|Conditions classifiable to C64-C68|Conditions classifiable to C64-C68 +C0496706|T033|HT|Z80.5|ICD10CM|Family history of malignant neoplasm of urinary tract|Family history of malignant neoplasm of urinary tract +C0496706|T033|AB|Z80.5|ICD10CM|Family history of malignant neoplasm of urinary tract|Family history of malignant neoplasm of urinary tract +C0496706|T033|PT|Z80.5|ICD10|Family history of malignant neoplasm of urinary tract|Family history of malignant neoplasm of urinary tract +C0700102|T033|PT|Z80.51|ICD10CM|Family history of malignant neoplasm of kidney|Family history of malignant neoplasm of kidney +C0700102|T033|AB|Z80.51|ICD10CM|Family history of malignant neoplasm of kidney|Family history of malignant neoplasm of kidney +C1955574|T033|AB|Z80.52|ICD10CM|Family history of malignant neoplasm of bladder|Family history of malignant neoplasm of bladder +C1955574|T033|PT|Z80.52|ICD10CM|Family history of malignant neoplasm of bladder|Family history of malignant neoplasm of bladder +C2911212|T033|PT|Z80.59|ICD10CM|Family history of malignant neoplasm of other urinary tract organ|Family history of malignant neoplasm of other urinary tract organ +C2911212|T033|AB|Z80.59|ICD10CM|Family history of malignant neoplasm of urinary tract organ|Family history of malignant neoplasm of urinary tract organ +C2911291|T033|ET|Z80.6|ICD10CM|Conditions classifiable to C91-C95|Conditions classifiable to C91-C95 +C0260512|T033|PT|Z80.6|ICD10|Family history of leukaemia|Family history of leukaemia +C0260512|T033|PT|Z80.6|ICD10AE|Family history of leukemia|Family history of leukemia +C0260512|T033|PT|Z80.6|ICD10CM|Family history of leukemia|Family history of leukemia +C0260512|T033|AB|Z80.6|ICD10CM|Family history of leukemia|Family history of leukemia +C2911213|T033|ET|Z80.7|ICD10CM|Conditions classifiable to C81-C90, C96.-|Conditions classifiable to C81-C90, C96.- +C0478619|T033|AB|Z80.7|ICD10CM|Fam hx of malig neoplm of lymphoid, hematpoetc and rel tiss|Fam hx of malig neoplm of lymphoid, hematpoetc and rel tiss +C0478619|T033|PT|Z80.7|ICD10|Family history of other malignant neoplasms of lymphoid, haematopoietic and related tissues|Family history of other malignant neoplasms of lymphoid, haematopoietic and related tissues +C0478619|T033|PT|Z80.7|ICD10CM|Family history of other malignant neoplasms of lymphoid, hematopoietic and related tissues|Family history of other malignant neoplasms of lymphoid, hematopoietic and related tissues +C0478619|T033|PT|Z80.7|ICD10AE|Family history of other malignant neoplasms of lymphoid, hematopoietic and related tissues|Family history of other malignant neoplasms of lymphoid, hematopoietic and related tissues +C2911214|T033|ET|Z80.8|ICD10CM|Conditions classifiable to C00-C14, C40-C49, C69-C79|Conditions classifiable to C00-C14, C40-C49, C69-C79 +C0478620|T033|AB|Z80.8|ICD10CM|Family history of malignant neoplasm of organs or systems|Family history of malignant neoplasm of organs or systems +C0478620|T033|PT|Z80.8|ICD10CM|Family history of malignant neoplasm of other organs or systems|Family history of malignant neoplasm of other organs or systems +C0478620|T033|PT|Z80.8|ICD10|Family history of malignant neoplasm of other organs or systems|Family history of malignant neoplasm of other organs or systems +C2911215|T033|ET|Z80.9|ICD10CM|Conditions classifiable to C80.1|Conditions classifiable to C80.1 +C1261378|T033|PT|Z80.9|ICD10CM|Family history of malignant neoplasm, unspecified|Family history of malignant neoplasm, unspecified +C1261378|T033|AB|Z80.9|ICD10CM|Family history of malignant neoplasm, unspecified|Family history of malignant neoplasm, unspecified +C1261378|T033|PT|Z80.9|ICD10|Family history of malignant neoplasm, unspecified|Family history of malignant neoplasm, unspecified +C0476559|T033|HT|Z81|ICD10AE|Family history of mental and behavioral disorders|Family history of mental and behavioral disorders +C0476559|T033|AB|Z81|ICD10CM|Family history of mental and behavioral disorders|Family history of mental and behavioral disorders +C0476559|T033|HT|Z81|ICD10CM|Family history of mental and behavioral disorders|Family history of mental and behavioral disorders +C0476559|T033|HT|Z81|ICD10|Family history of mental and behavioural disorders|Family history of mental and behavioural disorders +C2911216|T033|ET|Z81.0|ICD10CM|Conditions classifiable to F70-F79|Conditions classifiable to F70-F79 +C0260530|T033|AB|Z81.0|ICD10CM|Family history of intellectual disabilities|Family history of intellectual disabilities +C0260530|T033|PT|Z81.0|ICD10CM|Family history of intellectual disabilities|Family history of intellectual disabilities +C0260530|T033|PT|Z81.0|ICD10|Family history of mental retardation|Family history of mental retardation +C2911217|T033|ET|Z81.1|ICD10CM|Conditions classifiable to F10.-|Conditions classifiable to F10.- +C0476560|T033|PT|Z81.1|ICD10|Family history of alcohol abuse|Family history of alcohol abuse +C2911218|T033|AB|Z81.1|ICD10CM|Family history of alcohol abuse and dependence|Family history of alcohol abuse and dependence +C2911218|T033|PT|Z81.1|ICD10CM|Family history of alcohol abuse and dependence|Family history of alcohol abuse and dependence +C2911219|T033|ET|Z81.2|ICD10CM|Conditions classifiable to F17.-|Conditions classifiable to F17.- +C0476561|T033|PT|Z81.2|ICD10|Family history of tobacco abuse|Family history of tobacco abuse +C2911220|T033|AB|Z81.2|ICD10CM|Family history of tobacco abuse and dependence|Family history of tobacco abuse and dependence +C2911220|T033|PT|Z81.2|ICD10CM|Family history of tobacco abuse and dependence|Family history of tobacco abuse and dependence +C2911221|T033|ET|Z81.3|ICD10CM|Conditions classifiable to F11-F16, F18-F19|Conditions classifiable to F11-F16, F18-F19 +C0496707|T033|PT|Z81.3|ICD10|Family history of other psychoactive substance abuse|Family history of other psychoactive substance abuse +C2911222|T033|PT|Z81.3|ICD10CM|Family history of other psychoactive substance abuse and dependence|Family history of other psychoactive substance abuse and dependence +C2911222|T033|AB|Z81.3|ICD10CM|Family history of psychoactv substance abuse and dependence|Family history of psychoactv substance abuse and dependence +C2911223|T033|ET|Z81.4|ICD10CM|Conditions classifiable to F55|Conditions classifiable to F55 +C0478622|T033|PT|Z81.4|ICD10|Family history of other substance abuse|Family history of other substance abuse +C2911224|T033|AB|Z81.4|ICD10CM|Family history of other substance abuse and dependence|Family history of other substance abuse and dependence +C2911224|T033|PT|Z81.4|ICD10CM|Family history of other substance abuse and dependence|Family history of other substance abuse and dependence +C2911225|T033|ET|Z81.8|ICD10CM|Conditions classifiable elsewhere in F01-F99|Conditions classifiable elsewhere in F01-F99 +C0476562|T033|PT|Z81.8|ICD10AE|Family history of other mental and behavioral disorders|Family history of other mental and behavioral disorders +C0476562|T033|PT|Z81.8|ICD10CM|Family history of other mental and behavioral disorders|Family history of other mental and behavioral disorders +C0476562|T033|AB|Z81.8|ICD10CM|Family history of other mental and behavioral disorders|Family history of other mental and behavioral disorders +C0476562|T033|PT|Z81.8|ICD10|Family history of other mental and behavioural disorders|Family history of other mental and behavioural disorders +C0496708|T033|AB|Z82|ICD10CM|Fam hx of certain disabil & chr dis (leading to disablement)|Fam hx of certain disabil & chr dis (leading to disablement) +C0496708|T033|HT|Z82|ICD10CM|Family history of certain disabilities and chronic diseases (leading to disablement)|Family history of certain disabilities and chronic diseases (leading to disablement) +C0496708|T033|HT|Z82|ICD10|Family history of certain disabilities and chronic diseases leading to disablement|Family history of certain disabilities and chronic diseases leading to disablement +C2911226|T033|ET|Z82.0|ICD10CM|Conditions classifiable to G00-G99|Conditions classifiable to G00-G99 +C0478623|T033|AB|Z82.0|ICD10CM|Family history of epilepsy and oth dis of the nervous sys|Family history of epilepsy and oth dis of the nervous sys +C0478623|T033|PT|Z82.0|ICD10CM|Family history of epilepsy and other diseases of the nervous system|Family history of epilepsy and other diseases of the nervous system +C0478623|T033|PT|Z82.0|ICD10|Family history of epilepsy and other diseases of the nervous system|Family history of epilepsy and other diseases of the nervous system +C2911227|T033|ET|Z82.1|ICD10CM|Conditions classifiable to H54.-|Conditions classifiable to H54.- +C0496709|T033|PT|Z82.1|ICD10|Family history of blindness and visual loss|Family history of blindness and visual loss +C0496709|T033|PT|Z82.1|ICD10CM|Family history of blindness and visual loss|Family history of blindness and visual loss +C0496709|T033|AB|Z82.1|ICD10CM|Family history of blindness and visual loss|Family history of blindness and visual loss +C2911228|T033|ET|Z82.2|ICD10CM|Conditions classifiable to H90-H91|Conditions classifiable to H90-H91 +C0260538|T033|PT|Z82.2|ICD10|Family history of deafness and hearing loss|Family history of deafness and hearing loss +C0260538|T033|PT|Z82.2|ICD10CM|Family history of deafness and hearing loss|Family history of deafness and hearing loss +C0260538|T033|AB|Z82.2|ICD10CM|Family history of deafness and hearing loss|Family history of deafness and hearing loss +C2911229|T033|ET|Z82.3|ICD10CM|Conditions classifiable to I60-I64|Conditions classifiable to I60-I64 +C0260518|T033|PT|Z82.3|ICD10CM|Family history of stroke|Family history of stroke +C0260518|T033|AB|Z82.3|ICD10CM|Family history of stroke|Family history of stroke +C0260518|T033|PT|Z82.3|ICD10|Family history of stroke|Family history of stroke +C2911230|T033|ET|Z82.4|ICD10CM|Conditions classifiable to I00-I52, I65-I99|Conditions classifiable to I00-I52, I65-I99 +C0478624|T033|PT|Z82.4|ICD10|Family history of ischaemic heart disease and other diseases of the circulatory system|Family history of ischaemic heart disease and other diseases of the circulatory system +C0478624|T033|HT|Z82.4|ICD10CM|Family history of ischemic heart disease and other diseases of the circulatory system|Family history of ischemic heart disease and other diseases of the circulatory system +C0478624|T033|PT|Z82.4|ICD10AE|Family history of ischemic heart disease and other diseases of the circulatory system|Family history of ischemic heart disease and other diseases of the circulatory system +C0478624|T033|AB|Z82.4|ICD10CM|Family hx of ischem heart dis and oth dis of the circ sys|Family hx of ischem heart dis and oth dis of the circ sys +C2825161|T033|PT|Z82.41|ICD10CM|Family history of sudden cardiac death|Family history of sudden cardiac death +C2825161|T033|AB|Z82.41|ICD10CM|Family history of sudden cardiac death|Family history of sudden cardiac death +C0478624|T033|PT|Z82.49|ICD10CM|Family history of ischemic heart disease and other diseases of the circulatory system|Family history of ischemic heart disease and other diseases of the circulatory system +C0478624|T033|AB|Z82.49|ICD10CM|Family hx of ischem heart dis and oth dis of the circ sys|Family hx of ischem heart dis and oth dis of the circ sys +C2911232|T033|ET|Z82.5|ICD10CM|Conditions classifiable to J40-J47|Conditions classifiable to J40-J47 +C0478625|T033|AB|Z82.5|ICD10CM|Family history of asthma and oth chronic lower resp diseases|Family history of asthma and oth chronic lower resp diseases +C0478625|T033|PT|Z82.5|ICD10CM|Family history of asthma and other chronic lower respiratory diseases|Family history of asthma and other chronic lower respiratory diseases +C0478625|T033|PT|Z82.5|ICD10|Family history of asthma and other chronic lower respiratory diseases|Family history of asthma and other chronic lower respiratory diseases +C2911333|T033|ET|Z82.6|ICD10CM|Conditions classifiable to M00-M99|Conditions classifiable to M00-M99 +C0478626|T033|PT|Z82.6|ICD10|Family history of arthritis and other diseases of the musculoskeletal system and connective tissue|Family history of arthritis and other diseases of the musculoskeletal system and connective tissue +C0478626|T033|HT|Z82.6|ICD10CM|Family history of arthritis and other diseases of the musculoskeletal system and connective tissue|Family history of arthritis and other diseases of the musculoskeletal system and connective tissue +C0478626|T033|AB|Z82.6|ICD10CM|Family hx of arthrit and oth dis of the ms sys and conn tiss|Family hx of arthrit and oth dis of the ms sys and conn tiss +C0221565|T033|AB|Z82.61|ICD10CM|Family history of arthritis|Family history of arthritis +C0221565|T033|PT|Z82.61|ICD10CM|Family history of arthritis|Family history of arthritis +C2911643|T033|AB|Z82.62|ICD10CM|Family history of osteoporosis|Family history of osteoporosis +C2911643|T033|PT|Z82.62|ICD10CM|Family history of osteoporosis|Family history of osteoporosis +C2911233|T033|AB|Z82.69|ICD10CM|Family history of diseases of the ms sys and connective tiss|Family history of diseases of the ms sys and connective tiss +C2911233|T033|PT|Z82.69|ICD10CM|Family history of other diseases of the musculoskeletal system and connective tissue|Family history of other diseases of the musculoskeletal system and connective tissue +C2911234|T033|ET|Z82.7|ICD10CM|Conditions classifiable to Q00-Q99|Conditions classifiable to Q00-Q99 +C0496711|T033|AB|Z82.7|ICD10CM|Fam hx of congen malform, deformations and chromsoml abnlt|Fam hx of congen malform, deformations and chromsoml abnlt +C0496711|T033|HT|Z82.7|ICD10CM|Family history of congenital malformations, deformations and chromosomal abnormalities|Family history of congenital malformations, deformations and chromosomal abnormalities +C0496711|T033|PT|Z82.7|ICD10|Family history of congenital malformations, deformations and chromosomal abnormalities|Family history of congenital malformations, deformations and chromosomal abnormalities +C0455422|T033|PT|Z82.71|ICD10CM|Family history of polycystic kidney|Family history of polycystic kidney +C0455422|T033|AB|Z82.71|ICD10CM|Family history of polycystic kidney|Family history of polycystic kidney +C2911235|T033|AB|Z82.79|ICD10CM|Fam hx of congen malform, deformations and chromsoml abnlt|Fam hx of congen malform, deformations and chromsoml abnlt +C2911235|T033|PT|Z82.79|ICD10CM|Family history of other congenital malformations, deformations and chromosomal abnormalities|Family history of other congenital malformations, deformations and chromosomal abnormalities +C0869252|T033|AB|Z82.8|ICD10CM|Family hx of disabil and chr dis leading to disablement, NEC|Family hx of disabil and chr dis leading to disablement, NEC +C0496713|T033|HT|Z83|ICD10|Family history of other specific disorders|Family history of other specific disorders +C0496713|T033|AB|Z83|ICD10CM|Family history of other specific disorders|Family history of other specific disorders +C0496713|T033|HT|Z83|ICD10CM|Family history of other specific disorders|Family history of other specific disorders +C2911236|T033|ET|Z83.0|ICD10CM|Conditions classifiable to B20|Conditions classifiable to B20 +C0481424|T033|PT|Z83.0|ICD10CM|Family history of human immunodeficiency virus [HIV] disease|Family history of human immunodeficiency virus [HIV] disease +C0481424|T033|AB|Z83.0|ICD10CM|Family history of human immunodeficiency virus [HIV] disease|Family history of human immunodeficiency virus [HIV] disease +C0481424|T033|PT|Z83.0|ICD10|Family history of human immunodeficiency virus [HIV] disease|Family history of human immunodeficiency virus [HIV] disease +C2911237|T033|ET|Z83.1|ICD10CM|Conditions classifiable to A00-B19, B25-B94, B99|Conditions classifiable to A00-B19, B25-B94, B99 +C0478628|T033|PT|Z83.1|ICD10|Family history of other infectious and parasitic diseases|Family history of other infectious and parasitic diseases +C0478628|T033|PT|Z83.1|ICD10CM|Family history of other infectious and parasitic diseases|Family history of other infectious and parasitic diseases +C0478628|T033|AB|Z83.1|ICD10CM|Family history of other infectious and parasitic diseases|Family history of other infectious and parasitic diseases +C2911318|T033|ET|Z83.2|ICD10CM|Conditions classifiable to D50-D89|Conditions classifiable to D50-D89 +C0496715|T033|AB|Z83.2|ICD10CM|Family history of dis of the bld/bld-form org/immun mechnsm|Family history of dis of the bld/bld-form org/immun mechnsm +C0260526|T033|PT|Z83.3|ICD10|Family history of diabetes mellitus|Family history of diabetes mellitus +C0260526|T033|PT|Z83.3|ICD10CM|Family history of diabetes mellitus|Family history of diabetes mellitus +C0260526|T033|AB|Z83.3|ICD10CM|Family history of diabetes mellitus|Family history of diabetes mellitus +C0478629|T033|AB|Z83.4|ICD10CM|Family history of endo, nutritional and metabolic diseases|Family history of endo, nutritional and metabolic diseases +C0478629|T033|HT|Z83.4|ICD10CM|Family history of other endocrine, nutritional and metabolic diseases|Family history of other endocrine, nutritional and metabolic diseases +C0478629|T033|PT|Z83.4|ICD10|Family history of other endocrine, nutritional and metabolic diseases|Family history of other endocrine, nutritional and metabolic diseases +C1955576|T033|PT|Z83.41|ICD10CM|Family history of multiple endocrine neoplasia [MEN] syndrome|Family history of multiple endocrine neoplasia [MEN] syndrome +C1955576|T033|AB|Z83.41|ICD10CM|Family history of multiple endocrine neoplasia syndrome|Family history of multiple endocrine neoplasia syndrome +C2732832|T033|PT|Z83.42|ICD10CM|Family history of familial hypercholesterolemia|Family history of familial hypercholesterolemia +C2732832|T033|AB|Z83.42|ICD10CM|Family history of familial hypercholesterolemia|Family history of familial hypercholesterolemia +C4718840|T033|AB|Z83.43|ICD10CM|Fam hx of disord of lipoprotein metab and other lipidemias|Fam hx of disord of lipoprotein metab and other lipidemias +C4718840|T033|HT|Z83.43|ICD10CM|Family history of other disorder of lipoprotein metabolism and other lipidemias|Family history of other disorder of lipoprotein metabolism and other lipidemias +C4553604|T033|AB|Z83.430|ICD10CM|Family history of elevated lipoprotein(a)|Family history of elevated lipoprotein(a) +C4553604|T033|PT|Z83.430|ICD10CM|Family history of elevated lipoprotein(a)|Family history of elevated lipoprotein(a) +C4553604|T033|ET|Z83.430|ICD10CM|Family history of elevated Lp(a)|Family history of elevated Lp(a) +C4553605|T033|AB|Z83.438|ICD10CM|Fam hx of disord of lipoprotein metab and other lipidemia|Fam hx of disord of lipoprotein metab and other lipidemia +C4718841|T033|ET|Z83.438|ICD10CM|Family history of familial combined hyperlipidemia|Family history of familial combined hyperlipidemia +C4553605|T033|PT|Z83.438|ICD10CM|Family history of other disorder of lipoprotein metabolism and other lipidemia|Family history of other disorder of lipoprotein metabolism and other lipidemia +C0478629|T033|AB|Z83.49|ICD10CM|Family history of endo, nutritional and metabolic diseases|Family history of endo, nutritional and metabolic diseases +C0478629|T033|PT|Z83.49|ICD10CM|Family history of other endocrine, nutritional and metabolic diseases|Family history of other endocrine, nutritional and metabolic diseases +C0476557|T033|PT|Z83.5|ICD10|Family history of eye and ear disorders|Family history of eye and ear disorders +C0476557|T033|HT|Z83.5|ICD10CM|Family history of eye and ear disorders|Family history of eye and ear disorders +C0476557|T033|AB|Z83.5|ICD10CM|Family history of eye and ear disorders|Family history of eye and ear disorders +C0455396|T033|AB|Z83.51|ICD10CM|Family history of eye disorders|Family history of eye disorders +C0455396|T033|HT|Z83.51|ICD10CM|Family history of eye disorders|Family history of eye disorders +C0455397|T033|AB|Z83.511|ICD10CM|Family history of glaucoma|Family history of glaucoma +C0455397|T033|PT|Z83.511|ICD10CM|Family history of glaucoma|Family history of glaucoma +C3161148|T033|AB|Z83.518|ICD10CM|Family history of other specified eye disorder|Family history of other specified eye disorder +C3161148|T033|PT|Z83.518|ICD10CM|Family history of other specified eye disorder|Family history of other specified eye disorder +C0455401|T033|AB|Z83.52|ICD10CM|Family history of ear disorders|Family history of ear disorders +C0455401|T033|PT|Z83.52|ICD10CM|Family history of ear disorders|Family history of ear disorders +C2911241|T033|ET|Z83.6|ICD10CM|Conditions classifiable to J00-J39, J60-J99|Conditions classifiable to J00-J39, J60-J99 +C0476558|T033|PT|Z83.6|ICD10|Family history of diseases of the respiratory system|Family history of diseases of the respiratory system +C2911242|T033|AB|Z83.6|ICD10CM|Family history of other diseases of the respiratory system|Family history of other diseases of the respiratory system +C2911242|T033|PT|Z83.6|ICD10CM|Family history of other diseases of the respiratory system|Family history of other diseases of the respiratory system +C2911332|T033|ET|Z83.7|ICD10CM|Conditions classifiable to K00-K93|Conditions classifiable to K00-K93 +C0496716|T033|PT|Z83.7|ICD10|Family history of diseases of the digestive system|Family history of diseases of the digestive system +C0496716|T033|HT|Z83.7|ICD10CM|Family history of diseases of the digestive system|Family history of diseases of the digestive system +C0496716|T033|AB|Z83.7|ICD10CM|Family history of diseases of the digestive system|Family history of diseases of the digestive system +C2911243|T033|AB|Z83.71|ICD10CM|Family history of colonic polyps|Family history of colonic polyps +C2911243|T033|PT|Z83.71|ICD10CM|Family history of colonic polyps|Family history of colonic polyps +C2911244|T033|AB|Z83.79|ICD10CM|Family history of other diseases of the digestive system|Family history of other diseases of the digestive system +C2911244|T033|PT|Z83.79|ICD10CM|Family history of other diseases of the digestive system|Family history of other diseases of the digestive system +C0260535|T033|AB|Z84|ICD10CM|Family history of other conditions|Family history of other conditions +C0260535|T033|HT|Z84|ICD10CM|Family history of other conditions|Family history of other conditions +C0260535|T033|HT|Z84|ICD10|Family history of other conditions|Family history of other conditions +C2911245|T033|ET|Z84.0|ICD10CM|Conditions classifiable to L00-L99|Conditions classifiable to L00-L99 +C0496717|T033|PT|Z84.0|ICD10CM|Family history of diseases of the skin and subcutaneous tissue|Family history of diseases of the skin and subcutaneous tissue +C0496717|T033|PT|Z84.0|ICD10|Family history of diseases of the skin and subcutaneous tissue|Family history of diseases of the skin and subcutaneous tissue +C0496717|T033|AB|Z84.0|ICD10CM|Family history of diseases of the skin, subcu|Family history of diseases of the skin, subcu +C2911246|T033|ET|Z84.1|ICD10CM|Conditions classifiable to N00-N29|Conditions classifiable to N00-N29 +C0496718|T033|PT|Z84.1|ICD10CM|Family history of disorders of kidney and ureter|Family history of disorders of kidney and ureter +C0496718|T033|AB|Z84.1|ICD10CM|Family history of disorders of kidney and ureter|Family history of disorders of kidney and ureter +C0496718|T033|PT|Z84.1|ICD10|Family history of disorders of kidney and ureter|Family history of disorders of kidney and ureter +C2911247|T033|ET|Z84.2|ICD10CM|Conditions classifiable to N30-N99|Conditions classifiable to N30-N99 +C0478630|T033|PT|Z84.2|ICD10|Family history of other diseases of the genitourinary system|Family history of other diseases of the genitourinary system +C0478630|T033|PT|Z84.2|ICD10CM|Family history of other diseases of the genitourinary system|Family history of other diseases of the genitourinary system +C0478630|T033|AB|Z84.2|ICD10CM|Family history of other diseases of the genitourinary system|Family history of other diseases of the genitourinary system +C0015584|T033|PT|Z84.3|ICD10|Family history of consanguinity|Family history of consanguinity +C0015584|T033|PT|Z84.3|ICD10CM|Family history of consanguinity|Family history of consanguinity +C0015584|T033|AB|Z84.3|ICD10CM|Family history of consanguinity|Family history of consanguinity +C0481636|T033|HT|Z84.8|ICD10CM|Family history of other specified conditions|Family history of other specified conditions +C0481636|T033|AB|Z84.8|ICD10CM|Family history of other specified conditions|Family history of other specified conditions +C0481636|T033|PT|Z84.8|ICD10|Family history of other specified conditions|Family history of other specified conditions +C2315327|T033|AB|Z84.81|ICD10CM|Family history of carrier of genetic disease|Family history of carrier of genetic disease +C2315327|T033|PT|Z84.81|ICD10CM|Family history of carrier of genetic disease|Family history of carrier of genetic disease +C4270793|T033|ET|Z84.82|ICD10CM|Family history of SIDS|Family history of SIDS +C0455454|T033|AB|Z84.82|ICD10CM|Family history of sudden infant death syndrome|Family history of sudden infant death syndrome +C0455454|T033|PT|Z84.82|ICD10CM|Family history of sudden infant death syndrome|Family history of sudden infant death syndrome +C0481636|T033|PT|Z84.89|ICD10CM|Family history of other specified conditions|Family history of other specified conditions +C0481636|T033|AB|Z84.89|ICD10CM|Family history of other specified conditions|Family history of other specified conditions +C0260455|T033|HT|Z85|ICD10|Personal history of malignant neoplasm|Personal history of malignant neoplasm +C0260455|T033|AB|Z85|ICD10CM|Personal history of malignant neoplasm|Personal history of malignant neoplasm +C0260455|T033|HT|Z85|ICD10CM|Personal history of malignant neoplasm|Personal history of malignant neoplasm +C0496719|T033|HT|Z85.0|ICD10CM|Personal history of malignant neoplasm of digestive organs|Personal history of malignant neoplasm of digestive organs +C0496719|T033|AB|Z85.0|ICD10CM|Personal history of malignant neoplasm of digestive organs|Personal history of malignant neoplasm of digestive organs +C0496719|T033|PT|Z85.0|ICD10|Personal history of malignant neoplasm of digestive organs|Personal history of malignant neoplasm of digestive organs +C2911248|T033|AB|Z85.00|ICD10CM|Personal history of malignant neoplasm of unsp dgstv org|Personal history of malignant neoplasm of unsp dgstv org +C2911248|T033|PT|Z85.00|ICD10CM|Personal history of malignant neoplasm of unspecified digestive organ|Personal history of malignant neoplasm of unspecified digestive organ +C2911249|T033|ET|Z85.01|ICD10CM|Conditions classifiable to C15|Conditions classifiable to C15 +C0260408|T033|AB|Z85.01|ICD10CM|Personal history of malignant neoplasm of esophagus|Personal history of malignant neoplasm of esophagus +C0260408|T033|PT|Z85.01|ICD10CM|Personal history of malignant neoplasm of esophagus|Personal history of malignant neoplasm of esophagus +C0260409|T033|HT|Z85.02|ICD10CM|Personal history of malignant neoplasm of stomach|Personal history of malignant neoplasm of stomach +C0260409|T033|AB|Z85.02|ICD10CM|Personal history of malignant neoplasm of stomach|Personal history of malignant neoplasm of stomach +C2911250|T033|ET|Z85.020|ICD10CM|Conditions classifiable to C7A.092|Conditions classifiable to C7A.092 +C2911251|T033|AB|Z85.020|ICD10CM|Personal history of malignant carcinoid tumor of stomach|Personal history of malignant carcinoid tumor of stomach +C2911251|T033|PT|Z85.020|ICD10CM|Personal history of malignant carcinoid tumor of stomach|Personal history of malignant carcinoid tumor of stomach +C2911252|T033|ET|Z85.028|ICD10CM|Conditions classifiable to C16|Conditions classifiable to C16 +C2911253|T033|AB|Z85.028|ICD10CM|Personal history of other malignant neoplasm of stomach|Personal history of other malignant neoplasm of stomach +C2911253|T033|PT|Z85.028|ICD10CM|Personal history of other malignant neoplasm of stomach|Personal history of other malignant neoplasm of stomach +C0260410|T033|HT|Z85.03|ICD10CM|Personal history of malignant neoplasm of large intestine|Personal history of malignant neoplasm of large intestine +C0260410|T033|AB|Z85.03|ICD10CM|Personal history of malignant neoplasm of large intestine|Personal history of malignant neoplasm of large intestine +C2911254|T033|ET|Z85.030|ICD10CM|Conditions classifiable to C7A.022-C7A.025, C7A.029|Conditions classifiable to C7A.022-C7A.025, C7A.029 +C2911255|T033|PT|Z85.030|ICD10CM|Personal history of malignant carcinoid tumor of large intestine|Personal history of malignant carcinoid tumor of large intestine +C2911255|T033|AB|Z85.030|ICD10CM|Personal history of malignant carcinoid tumor of lg int|Personal history of malignant carcinoid tumor of lg int +C2911256|T033|ET|Z85.038|ICD10CM|Conditions classifiable to C18|Conditions classifiable to C18 +C0260410|T033|AB|Z85.038|ICD10CM|Personal history of malignant neoplasm of large intestine|Personal history of malignant neoplasm of large intestine +C0260410|T033|PT|Z85.038|ICD10CM|Personal history of other malignant neoplasm of large intestine|Personal history of other malignant neoplasm of large intestine +C0260411|T033|HT|Z85.04|ICD10CM|Personal history of malignant neoplasm of rectum, rectosigmoid junction, and anus|Personal history of malignant neoplasm of rectum, rectosigmoid junction, and anus +C0260411|T033|AB|Z85.04|ICD10CM|Prsnl hx of malig neoplm of rectum, rectosig junct, and anus|Prsnl hx of malig neoplm of rectum, rectosig junct, and anus +C2911258|T033|ET|Z85.040|ICD10CM|Conditions classifiable to C7A.026|Conditions classifiable to C7A.026 +C2911259|T033|AB|Z85.040|ICD10CM|Personal history of malignant carcinoid tumor of rectum|Personal history of malignant carcinoid tumor of rectum +C2911259|T033|PT|Z85.040|ICD10CM|Personal history of malignant carcinoid tumor of rectum|Personal history of malignant carcinoid tumor of rectum +C2911260|T033|ET|Z85.048|ICD10CM|Conditions classifiable to C19-C21|Conditions classifiable to C19-C21 +C2911261|T033|PT|Z85.048|ICD10CM|Personal history of other malignant neoplasm of rectum, rectosigmoid junction, and anus|Personal history of other malignant neoplasm of rectum, rectosigmoid junction, and anus +C2911261|T033|AB|Z85.048|ICD10CM|Prsnl hx of malig neoplm of rectum, rectosig junct, and anus|Prsnl hx of malig neoplm of rectum, rectosig junct, and anus +C2911262|T033|ET|Z85.05|ICD10CM|Conditions classifiable to C22|Conditions classifiable to C22 +C0260412|T033|AB|Z85.05|ICD10CM|Personal history of malignant neoplasm of liver|Personal history of malignant neoplasm of liver +C0260412|T033|PT|Z85.05|ICD10CM|Personal history of malignant neoplasm of liver|Personal history of malignant neoplasm of liver +C2911263|T033|HT|Z85.06|ICD10CM|Personal history of malignant neoplasm of small intestine|Personal history of malignant neoplasm of small intestine +C2911263|T033|AB|Z85.06|ICD10CM|Personal history of malignant neoplasm of small intestine|Personal history of malignant neoplasm of small intestine +C2911264|T033|ET|Z85.060|ICD10CM|Conditions classifiable to C7A.01-|Conditions classifiable to C7A.01- +C2911265|T033|AB|Z85.060|ICD10CM|Personal history of malignant carcinoid tumor of sm int|Personal history of malignant carcinoid tumor of sm int +C2911265|T033|PT|Z85.060|ICD10CM|Personal history of malignant carcinoid tumor of small intestine|Personal history of malignant carcinoid tumor of small intestine +C2911266|T033|ET|Z85.068|ICD10CM|Conditions classifiable to C17|Conditions classifiable to C17 +C2911267|T033|AB|Z85.068|ICD10CM|Personal history of malignant neoplasm of small intestine|Personal history of malignant neoplasm of small intestine +C2911267|T033|PT|Z85.068|ICD10CM|Personal history of other malignant neoplasm of small intestine|Personal history of other malignant neoplasm of small intestine +C2911268|T033|ET|Z85.07|ICD10CM|Conditions classifiable to C25|Conditions classifiable to C25 +C2911269|T033|AB|Z85.07|ICD10CM|Personal history of malignant neoplasm of pancreas|Personal history of malignant neoplasm of pancreas +C2911269|T033|PT|Z85.07|ICD10CM|Personal history of malignant neoplasm of pancreas|Personal history of malignant neoplasm of pancreas +C0496719|T033|AB|Z85.09|ICD10CM|Personal history of malignant neoplasm of digestive organs|Personal history of malignant neoplasm of digestive organs +C0496719|T033|PT|Z85.09|ICD10CM|Personal history of malignant neoplasm of other digestive organs|Personal history of malignant neoplasm of other digestive organs +C0260414|T033|AB|Z85.1|ICD10CM|Personal history of malig neoplm of trachea, bronc and lung|Personal history of malig neoplm of trachea, bronc and lung +C0260414|T033|HT|Z85.1|ICD10CM|Personal history of malignant neoplasm of trachea, bronchus and lung|Personal history of malignant neoplasm of trachea, bronchus and lung +C0260414|T033|PT|Z85.1|ICD10|Personal history of malignant neoplasm of trachea, bronchus and lung|Personal history of malignant neoplasm of trachea, bronchus and lung +C0260415|T033|HT|Z85.11|ICD10CM|Personal history of malignant neoplasm of bronchus and lung|Personal history of malignant neoplasm of bronchus and lung +C0260415|T033|AB|Z85.11|ICD10CM|Personal history of malignant neoplasm of bronchus and lung|Personal history of malignant neoplasm of bronchus and lung +C2911271|T033|ET|Z85.110|ICD10CM|Conditions classifiable to C7A.090|Conditions classifiable to C7A.090 +C2911272|T033|AB|Z85.110|ICD10CM|Personal history of malig carcinoid tumor of bronc and lung|Personal history of malig carcinoid tumor of bronc and lung +C2911272|T033|PT|Z85.110|ICD10CM|Personal history of malignant carcinoid tumor of bronchus and lung|Personal history of malignant carcinoid tumor of bronchus and lung +C2911273|T033|ET|Z85.118|ICD10CM|Conditions classifiable to C34|Conditions classifiable to C34 +C0260415|T033|AB|Z85.118|ICD10CM|Personal history of malignant neoplasm of bronchus and lung|Personal history of malignant neoplasm of bronchus and lung +C0260415|T033|PT|Z85.118|ICD10CM|Personal history of other malignant neoplasm of bronchus and lung|Personal history of other malignant neoplasm of bronchus and lung +C2911275|T033|ET|Z85.12|ICD10CM|Conditions classifiable to C33|Conditions classifiable to C33 +C0260416|T033|PT|Z85.12|ICD10CM|Personal history of malignant neoplasm of trachea|Personal history of malignant neoplasm of trachea +C0260416|T033|AB|Z85.12|ICD10CM|Personal history of malignant neoplasm of trachea|Personal history of malignant neoplasm of trachea +C0260417|T033|HT|Z85.2|ICD10CM|Personal history of malignant neoplasm of other respiratory and intrathoracic organs|Personal history of malignant neoplasm of other respiratory and intrathoracic organs +C0260417|T033|PT|Z85.2|ICD10|Personal history of malignant neoplasm of other respiratory and intrathoracic organs|Personal history of malignant neoplasm of other respiratory and intrathoracic organs +C0260417|T033|AB|Z85.2|ICD10CM|Prsnl history of malig neoplm of resp and intrathorac organs|Prsnl history of malig neoplm of resp and intrathorac organs +C0260418|T033|AB|Z85.20|ICD10CM|Personal history of malignant neoplasm of unsp resp organ|Personal history of malignant neoplasm of unsp resp organ +C0260418|T033|PT|Z85.20|ICD10CM|Personal history of malignant neoplasm of unspecified respiratory organ|Personal history of malignant neoplasm of unspecified respiratory organ +C2911276|T033|ET|Z85.21|ICD10CM|Conditions classifiable to C32|Conditions classifiable to C32 +C0260419|T033|AB|Z85.21|ICD10CM|Personal history of malignant neoplasm of larynx|Personal history of malignant neoplasm of larynx +C0260419|T033|PT|Z85.21|ICD10CM|Personal history of malignant neoplasm of larynx|Personal history of malignant neoplasm of larynx +C2911277|T033|ET|Z85.22|ICD10CM|Conditions classifiable to C30-C31|Conditions classifiable to C30-C31 +C0260420|T033|PT|Z85.22|ICD10CM|Personal history of malignant neoplasm of nasal cavities, middle ear, and accessory sinuses|Personal history of malignant neoplasm of nasal cavities, middle ear, and accessory sinuses +C0260420|T033|AB|Z85.22|ICD10CM|Prsnl hx of malig neoplm of nasl cav, mid ear, & acces sinus|Prsnl hx of malig neoplm of nasl cav, mid ear, & acces sinus +C2911278|T033|AB|Z85.23|ICD10CM|Personal history of malignant neoplasm of thymus|Personal history of malignant neoplasm of thymus +C2911278|T033|HT|Z85.23|ICD10CM|Personal history of malignant neoplasm of thymus|Personal history of malignant neoplasm of thymus +C2911279|T033|ET|Z85.230|ICD10CM|Conditions classifiable to C7A.091|Conditions classifiable to C7A.091 +C2911280|T033|AB|Z85.230|ICD10CM|Personal history of malignant carcinoid tumor of thymus|Personal history of malignant carcinoid tumor of thymus +C2911280|T033|PT|Z85.230|ICD10CM|Personal history of malignant carcinoid tumor of thymus|Personal history of malignant carcinoid tumor of thymus +C2911281|T033|ET|Z85.238|ICD10CM|Conditions classifiable to C37|Conditions classifiable to C37 +C2911278|T033|AB|Z85.238|ICD10CM|Personal history of other malignant neoplasm of thymus|Personal history of other malignant neoplasm of thymus +C2911278|T033|PT|Z85.238|ICD10CM|Personal history of other malignant neoplasm of thymus|Personal history of other malignant neoplasm of thymus +C0260417|T033|PT|Z85.29|ICD10CM|Personal history of malignant neoplasm of other respiratory and intrathoracic organs|Personal history of malignant neoplasm of other respiratory and intrathoracic organs +C0260417|T033|AB|Z85.29|ICD10CM|Prsnl history of malig neoplm of resp and intrathorac organs|Prsnl history of malig neoplm of resp and intrathorac organs +C2911282|T033|ET|Z85.3|ICD10CM|Conditions classifiable to C50.-|Conditions classifiable to C50.- +C0260421|T033|PT|Z85.3|ICD10CM|Personal history of malignant neoplasm of breast|Personal history of malignant neoplasm of breast +C0260421|T033|AB|Z85.3|ICD10CM|Personal history of malignant neoplasm of breast|Personal history of malignant neoplasm of breast +C0260421|T033|PT|Z85.3|ICD10|Personal history of malignant neoplasm of breast|Personal history of malignant neoplasm of breast +C2911283|T033|ET|Z85.4|ICD10CM|Conditions classifiable to C51-C63|Conditions classifiable to C51-C63 +C0260422|T033|PT|Z85.4|ICD10|Personal history of malignant neoplasm of genital organs|Personal history of malignant neoplasm of genital organs +C0260422|T033|HT|Z85.4|ICD10CM|Personal history of malignant neoplasm of genital organs|Personal history of malignant neoplasm of genital organs +C0260422|T033|AB|Z85.4|ICD10CM|Personal history of malignant neoplasm of genital organs|Personal history of malignant neoplasm of genital organs +C0260423|T033|PT|Z85.40|ICD10CM|Personal history of malignant neoplasm of unspecified female genital organ|Personal history of malignant neoplasm of unspecified female genital organ +C0260423|T033|AB|Z85.40|ICD10CM|Prsnl history of malig neoplm of unsp female genital organ|Prsnl history of malig neoplm of unsp female genital organ +C0260424|T033|AB|Z85.41|ICD10CM|Personal history of malignant neoplasm of cervix uteri|Personal history of malignant neoplasm of cervix uteri +C0260424|T033|PT|Z85.41|ICD10CM|Personal history of malignant neoplasm of cervix uteri|Personal history of malignant neoplasm of cervix uteri +C0260425|T033|AB|Z85.42|ICD10CM|Personal history of malignant neoplasm of oth prt uterus|Personal history of malignant neoplasm of oth prt uterus +C0260425|T033|PT|Z85.42|ICD10CM|Personal history of malignant neoplasm of other parts of uterus|Personal history of malignant neoplasm of other parts of uterus +C0260426|T033|AB|Z85.43|ICD10CM|Personal history of malignant neoplasm of ovary|Personal history of malignant neoplasm of ovary +C0260426|T033|PT|Z85.43|ICD10CM|Personal history of malignant neoplasm of ovary|Personal history of malignant neoplasm of ovary +C0260427|T033|AB|Z85.44|ICD10CM|Personal history of malig neoplasm of female genital organs|Personal history of malig neoplasm of female genital organs +C0260427|T033|PT|Z85.44|ICD10CM|Personal history of malignant neoplasm of other female genital organs|Personal history of malignant neoplasm of other female genital organs +C0260428|T033|AB|Z85.45|ICD10CM|Personal history of malig neoplm of unsp male genital organ|Personal history of malig neoplm of unsp male genital organ +C0260428|T033|PT|Z85.45|ICD10CM|Personal history of malignant neoplasm of unspecified male genital organ|Personal history of malignant neoplasm of unspecified male genital organ +C0260429|T033|AB|Z85.46|ICD10CM|Personal history of malignant neoplasm of prostate|Personal history of malignant neoplasm of prostate +C0260429|T033|PT|Z85.46|ICD10CM|Personal history of malignant neoplasm of prostate|Personal history of malignant neoplasm of prostate +C0260430|T033|AB|Z85.47|ICD10CM|Personal history of malignant neoplasm of testis|Personal history of malignant neoplasm of testis +C0260430|T033|PT|Z85.47|ICD10CM|Personal history of malignant neoplasm of testis|Personal history of malignant neoplasm of testis +C0700112|T033|AB|Z85.48|ICD10CM|Personal history of malignant neoplasm of epididymis|Personal history of malignant neoplasm of epididymis +C0700112|T033|PT|Z85.48|ICD10CM|Personal history of malignant neoplasm of epididymis|Personal history of malignant neoplasm of epididymis +C0260431|T033|AB|Z85.49|ICD10CM|Personal history of malig neoplasm of male genital organs|Personal history of malig neoplasm of male genital organs +C0260431|T033|PT|Z85.49|ICD10CM|Personal history of malignant neoplasm of other male genital organs|Personal history of malignant neoplasm of other male genital organs +C2911284|T033|ET|Z85.5|ICD10CM|Conditions classifiable to C64-C68|Conditions classifiable to C64-C68 +C0496720|T033|PT|Z85.5|ICD10|Personal history of malignant neoplasm of urinary tract|Personal history of malignant neoplasm of urinary tract +C0496720|T033|HT|Z85.5|ICD10CM|Personal history of malignant neoplasm of urinary tract|Personal history of malignant neoplasm of urinary tract +C0496720|T033|AB|Z85.5|ICD10CM|Personal history of malignant neoplasm of urinary tract|Personal history of malignant neoplasm of urinary tract +C2911285|T033|AB|Z85.50|ICD10CM|Personal history of malig neoplm of unsp urinary tract organ|Personal history of malig neoplm of unsp urinary tract organ +C2911285|T033|PT|Z85.50|ICD10CM|Personal history of malignant neoplasm of unspecified urinary tract organ|Personal history of malignant neoplasm of unspecified urinary tract organ +C0260434|T033|AB|Z85.51|ICD10CM|Personal history of malignant neoplasm of bladder|Personal history of malignant neoplasm of bladder +C0260434|T033|PT|Z85.51|ICD10CM|Personal history of malignant neoplasm of bladder|Personal history of malignant neoplasm of bladder +C0260435|T033|HT|Z85.52|ICD10CM|Personal history of malignant neoplasm of kidney|Personal history of malignant neoplasm of kidney +C0260435|T033|AB|Z85.52|ICD10CM|Personal history of malignant neoplasm of kidney|Personal history of malignant neoplasm of kidney +C2911286|T033|ET|Z85.520|ICD10CM|Conditions classifiable to C7A.093|Conditions classifiable to C7A.093 +C2911287|T033|AB|Z85.520|ICD10CM|Personal history of malignant carcinoid tumor of kidney|Personal history of malignant carcinoid tumor of kidney +C2911287|T033|PT|Z85.520|ICD10CM|Personal history of malignant carcinoid tumor of kidney|Personal history of malignant carcinoid tumor of kidney +C2911288|T033|ET|Z85.528|ICD10CM|Conditions classifiable to C64|Conditions classifiable to C64 +C2911289|T033|AB|Z85.528|ICD10CM|Personal history of other malignant neoplasm of kidney|Personal history of other malignant neoplasm of kidney +C2911289|T033|PT|Z85.528|ICD10CM|Personal history of other malignant neoplasm of kidney|Personal history of other malignant neoplasm of kidney +C0949153|T033|AB|Z85.53|ICD10CM|Personal history of malignant neoplasm of renal pelvis|Personal history of malignant neoplasm of renal pelvis +C0949153|T033|PT|Z85.53|ICD10CM|Personal history of malignant neoplasm of renal pelvis|Personal history of malignant neoplasm of renal pelvis +C3264129|T033|AB|Z85.54|ICD10CM|Personal history of malignant neoplasm of ureter|Personal history of malignant neoplasm of ureter +C3264129|T033|PT|Z85.54|ICD10CM|Personal history of malignant neoplasm of ureter|Personal history of malignant neoplasm of ureter +C2911290|T033|AB|Z85.59|ICD10CM|Personal history of malig neoplasm of urinary tract organ|Personal history of malig neoplasm of urinary tract organ +C2911290|T033|PT|Z85.59|ICD10CM|Personal history of malignant neoplasm of other urinary tract organ|Personal history of malignant neoplasm of other urinary tract organ +C2911291|T033|ET|Z85.6|ICD10CM|Conditions classifiable to C91-C95|Conditions classifiable to C91-C95 +C0260437|T033|PT|Z85.6|ICD10|Personal history of leukaemia|Personal history of leukaemia +C0260437|T033|PT|Z85.6|ICD10AE|Personal history of leukemia|Personal history of leukemia +C0260437|T033|PT|Z85.6|ICD10CM|Personal history of leukemia|Personal history of leukemia +C0260437|T033|AB|Z85.6|ICD10CM|Personal history of leukemia|Personal history of leukemia +C0478631|T033|PT|Z85.7|ICD10|Personal history of other malignant neoplasms of lymphoid, haematopoietic and related tissues|Personal history of other malignant neoplasms of lymphoid, haematopoietic and related tissues +C0478631|T033|HT|Z85.7|ICD10CM|Personal history of other malignant neoplasms of lymphoid, hematopoietic and related tissues|Personal history of other malignant neoplasms of lymphoid, hematopoietic and related tissues +C0478631|T033|PT|Z85.7|ICD10AE|Personal history of other malignant neoplasms of lymphoid, hematopoietic and related tissues|Personal history of other malignant neoplasms of lymphoid, hematopoietic and related tissues +C0478631|T033|AB|Z85.7|ICD10CM|Prsnl hx of malig neoplm of lymphoid, hematpoetc & rel tiss|Prsnl hx of malig neoplm of lymphoid, hematpoetc & rel tiss +C2911292|T033|AB|Z85.71|ICD10CM|Personal history of Hodgkin lymphoma|Personal history of Hodgkin lymphoma +C2911292|T033|PT|Z85.71|ICD10CM|Personal history of Hodgkin lymphoma|Personal history of Hodgkin lymphoma +C2911293|T033|AB|Z85.72|ICD10CM|Personal history of non-Hodgkin lymphomas|Personal history of non-Hodgkin lymphomas +C2911293|T033|PT|Z85.72|ICD10CM|Personal history of non-Hodgkin lymphomas|Personal history of non-Hodgkin lymphomas +C0478631|T033|PT|Z85.79|ICD10CM|Personal history of other malignant neoplasms of lymphoid, hematopoietic and related tissues|Personal history of other malignant neoplasms of lymphoid, hematopoietic and related tissues +C0478631|T033|AB|Z85.79|ICD10CM|Prsnl hx of malig neoplm of lymphoid, hematpoetc & rel tiss|Prsnl hx of malig neoplm of lymphoid, hematpoetc & rel tiss +C0478632|T033|AB|Z85.8|ICD10CM|Personal history of malig neoplasms of organs and systems|Personal history of malig neoplasms of organs and systems +C0478632|T033|HT|Z85.8|ICD10CM|Personal history of malignant neoplasms of other organs and systems|Personal history of malignant neoplasms of other organs and systems +C0478632|T033|PT|Z85.8|ICD10|Personal history of malignant neoplasms of other organs and systems|Personal history of malignant neoplasms of other organs and systems +C2911295|T033|HT|Z85.81|ICD10CM|Personal history of malignant neoplasm of lip, oral cavity, and pharynx|Personal history of malignant neoplasm of lip, oral cavity, and pharynx +C2911295|T033|AB|Z85.81|ICD10CM|Prsnl hx of malig neoplm of lip, oral cavity, and pharynx|Prsnl hx of malig neoplm of lip, oral cavity, and pharynx +C0260406|T033|AB|Z85.810|ICD10CM|Personal history of malignant neoplasm of tongue|Personal history of malignant neoplasm of tongue +C0260406|T033|PT|Z85.810|ICD10CM|Personal history of malignant neoplasm of tongue|Personal history of malignant neoplasm of tongue +C2911296|T033|PT|Z85.818|ICD10CM|Personal history of malignant neoplasm of other sites of lip, oral cavity, and pharynx|Personal history of malignant neoplasm of other sites of lip, oral cavity, and pharynx +C2911296|T033|AB|Z85.818|ICD10CM|Prsnl hx of malig neoplm of site of lip, oral cav, & pharynx|Prsnl hx of malig neoplm of site of lip, oral cav, & pharynx +C2911297|T033|PT|Z85.819|ICD10CM|Personal history of malignant neoplasm of unspecified site of lip, oral cavity, and pharynx|Personal history of malignant neoplasm of unspecified site of lip, oral cavity, and pharynx +C2911297|T033|AB|Z85.819|ICD10CM|Prsnl hx of malig neoplm of unsp site lip,oral cav,& pharynx|Prsnl hx of malig neoplm of unsp site lip,oral cav,& pharynx +C0481597|T033|AB|Z85.82|ICD10CM|Personal history of malignant neoplasm of skin|Personal history of malignant neoplasm of skin +C0481597|T033|HT|Z85.82|ICD10CM|Personal history of malignant neoplasm of skin|Personal history of malignant neoplasm of skin +C2911298|T033|ET|Z85.820|ICD10CM|Conditions classifiable to C43|Conditions classifiable to C43 +C0260448|T033|AB|Z85.820|ICD10CM|Personal history of malignant melanoma of skin|Personal history of malignant melanoma of skin +C0260448|T033|PT|Z85.820|ICD10CM|Personal history of malignant melanoma of skin|Personal history of malignant melanoma of skin +C2911299|T033|ET|Z85.821|ICD10CM|Conditions classifiable to C4A|Conditions classifiable to C4A +C2712772|T033|AB|Z85.821|ICD10CM|Personal history of Merkel cell carcinoma|Personal history of Merkel cell carcinoma +C2712772|T033|PT|Z85.821|ICD10CM|Personal history of Merkel cell carcinoma|Personal history of Merkel cell carcinoma +C2911300|T033|ET|Z85.828|ICD10CM|Conditions classifiable to C44|Conditions classifiable to C44 +C0260449|T033|AB|Z85.828|ICD10CM|Personal history of other malignant neoplasm of skin|Personal history of other malignant neoplasm of skin +C0260449|T033|PT|Z85.828|ICD10CM|Personal history of other malignant neoplasm of skin|Personal history of other malignant neoplasm of skin +C2911301|T033|AB|Z85.83|ICD10CM|Personal history of malig neoplasm of bone and soft tissue|Personal history of malig neoplasm of bone and soft tissue +C2911301|T033|HT|Z85.83|ICD10CM|Personal history of malignant neoplasm of bone and soft tissue|Personal history of malignant neoplasm of bone and soft tissue +C0260447|T033|AB|Z85.830|ICD10CM|Personal history of malignant neoplasm of bone|Personal history of malignant neoplasm of bone +C0260447|T033|PT|Z85.830|ICD10CM|Personal history of malignant neoplasm of bone|Personal history of malignant neoplasm of bone +C2911302|T033|AB|Z85.831|ICD10CM|Personal history of malignant neoplasm of soft tissue|Personal history of malignant neoplasm of soft tissue +C2911302|T033|PT|Z85.831|ICD10CM|Personal history of malignant neoplasm of soft tissue|Personal history of malignant neoplasm of soft tissue +C2911303|T033|AB|Z85.84|ICD10CM|Personal history of malig neoplasm of eye and nervous tissue|Personal history of malig neoplasm of eye and nervous tissue +C2911303|T033|HT|Z85.84|ICD10CM|Personal history of malignant neoplasm of eye and nervous tissue|Personal history of malignant neoplasm of eye and nervous tissue +C0260450|T033|AB|Z85.840|ICD10CM|Personal history of malignant neoplasm of eye|Personal history of malignant neoplasm of eye +C0260450|T033|PT|Z85.840|ICD10CM|Personal history of malignant neoplasm of eye|Personal history of malignant neoplasm of eye +C0260451|T033|AB|Z85.841|ICD10CM|Personal history of malignant neoplasm of brain|Personal history of malignant neoplasm of brain +C0260451|T033|PT|Z85.841|ICD10CM|Personal history of malignant neoplasm of brain|Personal history of malignant neoplasm of brain +C2911304|T033|PT|Z85.848|ICD10CM|Personal history of malignant neoplasm of other parts of nervous tissue|Personal history of malignant neoplasm of other parts of nervous tissue +C2911304|T033|AB|Z85.848|ICD10CM|Personal history of malignant neoplasm of prt nervous tissue|Personal history of malignant neoplasm of prt nervous tissue +C2911305|T033|HT|Z85.85|ICD10CM|Personal history of malignant neoplasm of endocrine glands|Personal history of malignant neoplasm of endocrine glands +C2911305|T033|AB|Z85.85|ICD10CM|Personal history of malignant neoplasm of endocrine glands|Personal history of malignant neoplasm of endocrine glands +C0260453|T033|AB|Z85.850|ICD10CM|Personal history of malignant neoplasm of thyroid|Personal history of malignant neoplasm of thyroid +C0260453|T033|PT|Z85.850|ICD10CM|Personal history of malignant neoplasm of thyroid|Personal history of malignant neoplasm of thyroid +C2911306|T033|AB|Z85.858|ICD10CM|Personal history of malignant neoplasm of endocrine glands|Personal history of malignant neoplasm of endocrine glands +C2911306|T033|PT|Z85.858|ICD10CM|Personal history of malignant neoplasm of other endocrine glands|Personal history of malignant neoplasm of other endocrine glands +C0478632|T033|AB|Z85.89|ICD10CM|Personal history of malignant neoplasm of organs and systems|Personal history of malignant neoplasm of organs and systems +C0478632|T033|PT|Z85.89|ICD10CM|Personal history of malignant neoplasm of other organs and systems|Personal history of malignant neoplasm of other organs and systems +C2911307|T033|ET|Z85.9|ICD10CM|Conditions classifiable to C7A.00, C80.1|Conditions classifiable to C7A.00, C80.1 +C0260455|T033|PT|Z85.9|ICD10CM|Personal history of malignant neoplasm, unspecified|Personal history of malignant neoplasm, unspecified +C0260455|T033|AB|Z85.9|ICD10CM|Personal history of malignant neoplasm, unspecified|Personal history of malignant neoplasm, unspecified +C0260455|T033|PT|Z85.9|ICD10|Personal history of malignant neoplasm, unspecified|Personal history of malignant neoplasm, unspecified +C0260463|T033|HT|Z86|ICD10|Personal history of certain other diseases|Personal history of certain other diseases +C0260463|T033|AB|Z86|ICD10CM|Personal history of certain other diseases|Personal history of certain other diseases +C0260463|T033|HT|Z86|ICD10CM|Personal history of certain other diseases|Personal history of certain other diseases +C2911308|T033|HT|Z86.0|ICD10CM|Personal history of in-situ and benign neoplasms and neoplasms of uncertain behavior|Personal history of in-situ and benign neoplasms and neoplasms of uncertain behavior +C0478633|T033|PT|Z86.0|ICD10|Personal history of other neoplasms|Personal history of other neoplasms +C2911308|T033|AB|Z86.0|ICD10CM|Prsnl hx of in-situ and ben neoplm and neoplm of uncrt behav|Prsnl hx of in-situ and ben neoplm and neoplm of uncrt behav +C2911309|T033|AB|Z86.00|ICD10CM|Personal history of in-situ neoplasm|Personal history of in-situ neoplasm +C2911309|T033|HT|Z86.00|ICD10CM|Personal history of in-situ neoplasm|Personal history of in-situ neoplasm +C2911310|T033|AB|Z86.000|ICD10CM|Personal history of in-situ neoplasm of breast|Personal history of in-situ neoplasm of breast +C2911310|T033|PT|Z86.000|ICD10CM|Personal history of in-situ neoplasm of breast|Personal history of in-situ neoplasm of breast +C4270796|T033|ET|Z86.001|ICD10CM|Personal history of cervical intraepithelial neoplasia III [CIN III]|Personal history of cervical intraepithelial neoplasia III [CIN III] +C2911311|T033|AB|Z86.001|ICD10CM|Personal history of in-situ neoplasm of cervix uteri|Personal history of in-situ neoplasm of cervix uteri +C2911311|T033|PT|Z86.001|ICD10CM|Personal history of in-situ neoplasm of cervix uteri|Personal history of in-situ neoplasm of cervix uteri +C5141113|T033|AB|Z86.002|ICD10CM|Pers hx of in-situ neoplasm of other and unsp genital organs|Pers hx of in-situ neoplasm of other and unsp genital organs +C5141182|T033|ET|Z86.002|ICD10CM|Personal history of high-grade prostatic intraepithelial neoplasia III [HGPIN III]|Personal history of high-grade prostatic intraepithelial neoplasia III [HGPIN III] +C5141113|T033|PT|Z86.002|ICD10CM|Personal history of in-situ neoplasm of other and unspecified genital organs|Personal history of in-situ neoplasm of other and unspecified genital organs +C5141183|T033|ET|Z86.002|ICD10CM|Personal history of vaginal intraepithelial neoplasia III [VAIN III]|Personal history of vaginal intraepithelial neoplasia III [VAIN III] +C5141184|T033|ET|Z86.002|ICD10CM|Personal history of vulvar intraepithelial neoplasia III [VIN III]|Personal history of vulvar intraepithelial neoplasia III [VIN III] +C5141114|T033|AB|Z86.003|ICD10CM|Pers hx of in-situ neoplm of oral cavity, esoph and stomach|Pers hx of in-situ neoplm of oral cavity, esoph and stomach +C5141114|T033|PT|Z86.003|ICD10CM|Personal history of in-situ neoplasm of oral cavity, esophagus and stomach|Personal history of in-situ neoplasm of oral cavity, esophagus and stomach +C5141115|T033|AB|Z86.004|ICD10CM|Pers hx of in-situ neoplasm of other and unsp dgstv orgs|Pers hx of in-situ neoplasm of other and unsp dgstv orgs +C5141187|T033|ET|Z86.004|ICD10CM|Personal history of anal intraepithelial neoplasia (AIN III)|Personal history of anal intraepithelial neoplasia (AIN III) +C5141115|T033|PT|Z86.004|ICD10CM|Personal history of in-situ neoplasm of other and unspecified digestive organs|Personal history of in-situ neoplasm of other and unspecified digestive organs +C5141116|T033|AB|Z86.005|ICD10CM|Pers hx of in-situ neoplasm of middle ear and resp sys|Pers hx of in-situ neoplasm of middle ear and resp sys +C5141116|T033|PT|Z86.005|ICD10CM|Personal history of in-situ neoplasm of middle ear and respiratory system|Personal history of in-situ neoplasm of middle ear and respiratory system +C5141117|T033|AB|Z86.006|ICD10CM|Personal history of melanoma in-situ|Personal history of melanoma in-situ +C5141117|T033|PT|Z86.006|ICD10CM|Personal history of melanoma in-situ|Personal history of melanoma in-situ +C5141191|T033|ET|Z86.007|ICD10CM|Personal history of carcinoma in situ of skin|Personal history of carcinoma in situ of skin +C5141118|T033|AB|Z86.007|ICD10CM|Personal history of in-situ neoplasm of skin|Personal history of in-situ neoplasm of skin +C5141118|T033|PT|Z86.007|ICD10CM|Personal history of in-situ neoplasm of skin|Personal history of in-situ neoplasm of skin +C2911312|T033|AB|Z86.008|ICD10CM|Personal history of in-situ neoplasm of other site|Personal history of in-situ neoplasm of other site +C2911312|T033|PT|Z86.008|ICD10CM|Personal history of in-situ neoplasm of other site|Personal history of in-situ neoplasm of other site +C2911313|T033|AB|Z86.01|ICD10CM|Personal history of benign neoplasm|Personal history of benign neoplasm +C2911313|T033|HT|Z86.01|ICD10CM|Personal history of benign neoplasm|Personal history of benign neoplasm +C0375804|T033|PT|Z86.010|ICD10CM|Personal history of colonic polyps|Personal history of colonic polyps +C0375804|T033|AB|Z86.010|ICD10CM|Personal history of colonic polyps|Personal history of colonic polyps +C0490014|T033|AB|Z86.011|ICD10CM|Personal history of benign neoplasm of the brain|Personal history of benign neoplasm of the brain +C0490014|T033|PT|Z86.011|ICD10CM|Personal history of benign neoplasm of the brain|Personal history of benign neoplasm of the brain +C2911314|T033|AB|Z86.012|ICD10CM|Personal history of benign carcinoid tumor|Personal history of benign carcinoid tumor +C2911314|T033|PT|Z86.012|ICD10CM|Personal history of benign carcinoid tumor|Personal history of benign carcinoid tumor +C2911315|T033|AB|Z86.018|ICD10CM|Personal history of other benign neoplasm|Personal history of other benign neoplasm +C2911315|T033|PT|Z86.018|ICD10CM|Personal history of other benign neoplasm|Personal history of other benign neoplasm +C2911316|T033|AB|Z86.03|ICD10CM|Personal history of neoplasm of uncertain behavior|Personal history of neoplasm of uncertain behavior +C2911316|T033|PT|Z86.03|ICD10CM|Personal history of neoplasm of uncertain behavior|Personal history of neoplasm of uncertain behavior +C2911317|T033|ET|Z86.1|ICD10CM|Conditions classifiable to A00-B89, B99|Conditions classifiable to A00-B89, B99 +C0260464|T033|PT|Z86.1|ICD10|Personal history of infectious and parasitic diseases|Personal history of infectious and parasitic diseases +C0260464|T033|HT|Z86.1|ICD10CM|Personal history of infectious and parasitic diseases|Personal history of infectious and parasitic diseases +C0260464|T033|AB|Z86.1|ICD10CM|Personal history of infectious and parasitic diseases|Personal history of infectious and parasitic diseases +C0375796|T033|PT|Z86.11|ICD10CM|Personal history of tuberculosis|Personal history of tuberculosis +C0375796|T033|AB|Z86.11|ICD10CM|Personal history of tuberculosis|Personal history of tuberculosis +C0375797|T033|PT|Z86.12|ICD10CM|Personal history of poliomyelitis|Personal history of poliomyelitis +C0375797|T033|AB|Z86.12|ICD10CM|Personal history of poliomyelitis|Personal history of poliomyelitis +C0375798|T033|PT|Z86.13|ICD10CM|Personal history of malaria|Personal history of malaria +C0375798|T033|AB|Z86.13|ICD10CM|Personal history of malaria|Personal history of malaria +C3264131|T033|AB|Z86.14|ICD10CM|Personal history of methicillin resis staph infection|Personal history of methicillin resis staph infection +C3264131|T033|PT|Z86.14|ICD10CM|Personal history of Methicillin resistant Staphylococcus aureus infection|Personal history of Methicillin resistant Staphylococcus aureus infection +C3264130|T033|ET|Z86.14|ICD10CM|Personal history of MRSA infection|Personal history of MRSA infection +C5141119|T033|AB|Z86.15|ICD10CM|Personal history of latent tuberculosis infection|Personal history of latent tuberculosis infection +C5141119|T033|PT|Z86.15|ICD10CM|Personal history of latent tuberculosis infection|Personal history of latent tuberculosis infection +C0375799|T033|AB|Z86.19|ICD10CM|Personal history of other infectious and parasitic diseases|Personal history of other infectious and parasitic diseases +C0375799|T033|PT|Z86.19|ICD10CM|Personal history of other infectious and parasitic diseases|Personal history of other infectious and parasitic diseases +C2911318|T033|ET|Z86.2|ICD10CM|Conditions classifiable to D50-D89|Conditions classifiable to D50-D89 +C0496721|T033|AB|Z86.2|ICD10CM|Prsnl history of dis of the bld/bld-form org/immun mechnsm|Prsnl history of dis of the bld/bld-form org/immun mechnsm +C0496722|T033|AB|Z86.3|ICD10CM|Personal history of endo, nutritional and metabolic diseases|Personal history of endo, nutritional and metabolic diseases +C0496722|T033|HT|Z86.3|ICD10CM|Personal history of endocrine, nutritional and metabolic diseases|Personal history of endocrine, nutritional and metabolic diseases +C0496722|T033|PT|Z86.3|ICD10|Personal history of endocrine, nutritional and metabolic diseases|Personal history of endocrine, nutritional and metabolic diseases +C2911319|T033|AB|Z86.31|ICD10CM|Personal history of diabetic foot ulcer|Personal history of diabetic foot ulcer +C2911319|T033|PT|Z86.31|ICD10CM|Personal history of diabetic foot ulcer|Personal history of diabetic foot ulcer +C3264132|T033|ET|Z86.32|ICD10CM|Personal history of conditions classifiable to O24.4-|Personal history of conditions classifiable to O24.4- +C3161145|T033|AB|Z86.32|ICD10CM|Personal history of gestational diabetes|Personal history of gestational diabetes +C3161145|T033|PT|Z86.32|ICD10CM|Personal history of gestational diabetes|Personal history of gestational diabetes +C2911320|T033|AB|Z86.39|ICD10CM|Personal history of endo, nutritional and metabolic disease|Personal history of endo, nutritional and metabolic disease +C2911320|T033|PT|Z86.39|ICD10CM|Personal history of other endocrine, nutritional and metabolic disease|Personal history of other endocrine, nutritional and metabolic disease +C0481423|T033|PT|Z86.4|ICD10|Personal history of psychoactive substance abuse|Personal history of psychoactive substance abuse +C2977653|T033|AB|Z86.5|ICD10CM|Personal history of mental and behavioral disorders|Personal history of mental and behavioral disorders +C2977653|T033|HT|Z86.5|ICD10CM|Personal history of mental and behavioral disorders|Personal history of mental and behavioral disorders +C0478634|T033|PT|Z86.5|ICD10AE|Personal history of other mental and behavioral disorders|Personal history of other mental and behavioral disorders +C0478634|T033|PT|Z86.5|ICD10|Personal history of other mental and behavioural disorders|Personal history of other mental and behavioural disorders +C2921273|T033|AB|Z86.51|ICD10CM|Personal history of combat and operational stress reaction|Personal history of combat and operational stress reaction +C2921273|T033|PT|Z86.51|ICD10CM|Personal history of combat and operational stress reaction|Personal history of combat and operational stress reaction +C0478634|T033|PT|Z86.59|ICD10CM|Personal history of other mental and behavioral disorders|Personal history of other mental and behavioral disorders +C0478634|T033|AB|Z86.59|ICD10CM|Personal history of other mental and behavioral disorders|Personal history of other mental and behavioral disorders +C2911321|T033|ET|Z86.6|ICD10CM|Conditions classifiable to G00-G99, H00-H95|Conditions classifiable to G00-G99, H00-H95 +C0496723|T033|AB|Z86.6|ICD10CM|Personal history of dis of the nervous sys and sense organs|Personal history of dis of the nervous sys and sense organs +C0496723|T033|HT|Z86.6|ICD10CM|Personal history of diseases of the nervous system and sense organs|Personal history of diseases of the nervous system and sense organs +C0496723|T033|PT|Z86.6|ICD10|Personal history of diseases of the nervous system and sense organs|Personal history of diseases of the nervous system and sense organs +C2911322|T033|ET|Z86.61|ICD10CM|Personal history of encephalitis|Personal history of encephalitis +C2921394|T033|AB|Z86.61|ICD10CM|Personal history of infections of the central nervous system|Personal history of infections of the central nervous system +C2921394|T033|PT|Z86.61|ICD10CM|Personal history of infections of the central nervous system|Personal history of infections of the central nervous system +C2911323|T033|ET|Z86.61|ICD10CM|Personal history of meningitis|Personal history of meningitis +C0496723|T033|AB|Z86.69|ICD10CM|Personal history of dis of the nervous sys and sense organs|Personal history of dis of the nervous sys and sense organs +C0496723|T033|PT|Z86.69|ICD10CM|Personal history of other diseases of the nervous system and sense organs|Personal history of other diseases of the nervous system and sense organs +C2911325|T033|ET|Z86.7|ICD10CM|Conditions classifiable to I00-I99|Conditions classifiable to I00-I99 +C0260469|T033|HT|Z86.7|ICD10CM|Personal history of diseases of the circulatory system|Personal history of diseases of the circulatory system +C0260469|T033|AB|Z86.7|ICD10CM|Personal history of diseases of the circulatory system|Personal history of diseases of the circulatory system +C0260469|T033|PT|Z86.7|ICD10|Personal history of diseases of the circulatory system|Personal history of diseases of the circulatory system +C0375800|T033|HT|Z86.71|ICD10CM|Personal history of venous thrombosis and embolism|Personal history of venous thrombosis and embolism +C0375800|T033|AB|Z86.71|ICD10CM|Personal history of venous thrombosis and embolism|Personal history of venous thrombosis and embolism +C0585968|T033|AB|Z86.711|ICD10CM|Personal history of pulmonary embolism|Personal history of pulmonary embolism +C0585968|T033|PT|Z86.711|ICD10CM|Personal history of pulmonary embolism|Personal history of pulmonary embolism +C3264133|T033|AB|Z86.718|ICD10CM|Personal history of other venous thrombosis and embolism|Personal history of other venous thrombosis and embolism +C3264133|T033|PT|Z86.718|ICD10CM|Personal history of other venous thrombosis and embolism|Personal history of other venous thrombosis and embolism +C0375801|T033|AB|Z86.72|ICD10CM|Personal history of thrombophlebitis|Personal history of thrombophlebitis +C0375801|T033|PT|Z86.72|ICD10CM|Personal history of thrombophlebitis|Personal history of thrombophlebitis +C2911326|T033|ET|Z86.73|ICD10CM|Personal history of prolonged reversible ischemic neurological deficit (PRIND)|Personal history of prolonged reversible ischemic neurological deficit (PRIND) +C2911327|T033|ET|Z86.73|ICD10CM|Personal history of stroke NOS without residual deficits|Personal history of stroke NOS without residual deficits +C1955570|T033|AB|Z86.73|ICD10CM|Prsnl hx of TIA (TIA), and cereb infrc w/o resid deficits|Prsnl hx of TIA (TIA), and cereb infrc w/o resid deficits +C1961116|T033|AB|Z86.74|ICD10CM|Personal history of sudden cardiac arrest|Personal history of sudden cardiac arrest +C1961116|T033|PT|Z86.74|ICD10CM|Personal history of sudden cardiac arrest|Personal history of sudden cardiac arrest +C2921275|T033|ET|Z86.74|ICD10CM|Personal history of sudden cardiac death successfully resuscitated|Personal history of sudden cardiac death successfully resuscitated +C2911329|T033|AB|Z86.79|ICD10CM|Personal history of other diseases of the circulatory system|Personal history of other diseases of the circulatory system +C2911329|T033|PT|Z86.79|ICD10CM|Personal history of other diseases of the circulatory system|Personal history of other diseases of the circulatory system +C0496724|T033|AB|Z87|ICD10CM|Personal history of other diseases and conditions|Personal history of other diseases and conditions +C0496724|T033|HT|Z87|ICD10CM|Personal history of other diseases and conditions|Personal history of other diseases and conditions +C0496724|T033|HT|Z87|ICD10|Personal history of other diseases and conditions|Personal history of other diseases and conditions +C2911330|T033|ET|Z87.0|ICD10CM|Conditions classifiable to J00-J99|Conditions classifiable to J00-J99 +C0260470|T033|PT|Z87.0|ICD10|Personal history of diseases of the respiratory system|Personal history of diseases of the respiratory system +C0260470|T033|HT|Z87.0|ICD10CM|Personal history of diseases of the respiratory system|Personal history of diseases of the respiratory system +C0260470|T033|AB|Z87.0|ICD10CM|Personal history of diseases of the respiratory system|Personal history of diseases of the respiratory system +C2911331|T033|PT|Z87.01|ICD10CM|Personal history of pneumonia (recurrent)|Personal history of pneumonia (recurrent) +C2911331|T033|AB|Z87.01|ICD10CM|Personal history of pneumonia (recurrent)|Personal history of pneumonia (recurrent) +C2921392|T033|AB|Z87.09|ICD10CM|Personal history of other diseases of the respiratory system|Personal history of other diseases of the respiratory system +C2921392|T033|PT|Z87.09|ICD10CM|Personal history of other diseases of the respiratory system|Personal history of other diseases of the respiratory system +C2911332|T033|ET|Z87.1|ICD10CM|Conditions classifiable to K00-K93|Conditions classifiable to K00-K93 +C0260471|T033|HT|Z87.1|ICD10CM|Personal history of diseases of the digestive system|Personal history of diseases of the digestive system +C0260471|T033|AB|Z87.1|ICD10CM|Personal history of diseases of the digestive system|Personal history of diseases of the digestive system +C0260471|T033|PT|Z87.1|ICD10|Personal history of diseases of the digestive system|Personal history of diseases of the digestive system +C0375803|T033|PT|Z87.11|ICD10CM|Personal history of peptic ulcer disease|Personal history of peptic ulcer disease +C0375803|T033|AB|Z87.11|ICD10CM|Personal history of peptic ulcer disease|Personal history of peptic ulcer disease +C0375805|T033|AB|Z87.19|ICD10CM|Personal history of other diseases of the digestive system|Personal history of other diseases of the digestive system +C0375805|T033|PT|Z87.19|ICD10CM|Personal history of other diseases of the digestive system|Personal history of other diseases of the digestive system +C2911245|T033|ET|Z87.2|ICD10CM|Conditions classifiable to L00-L99|Conditions classifiable to L00-L99 +C0260476|T033|PT|Z87.2|ICD10|Personal history of diseases of the skin and subcutaneous tissue|Personal history of diseases of the skin and subcutaneous tissue +C0260476|T033|PT|Z87.2|ICD10CM|Personal history of diseases of the skin and subcutaneous tissue|Personal history of diseases of the skin and subcutaneous tissue +C0260476|T033|AB|Z87.2|ICD10CM|Personal history of diseases of the skin, subcu|Personal history of diseases of the skin, subcu +C2911333|T033|ET|Z87.3|ICD10CM|Conditions classifiable to M00-M99|Conditions classifiable to M00-M99 +C0496725|T033|AB|Z87.3|ICD10CM|Personal history of diseases of the ms sys and conn tiss|Personal history of diseases of the ms sys and conn tiss +C0496725|T033|HT|Z87.3|ICD10CM|Personal history of diseases of the musculoskeletal system and connective tissue|Personal history of diseases of the musculoskeletal system and connective tissue +C0496725|T033|PT|Z87.3|ICD10|Personal history of diseases of the musculoskeletal system and connective tissue|Personal history of diseases of the musculoskeletal system and connective tissue +C2911334|T033|AB|Z87.31|ICD10CM|Personal history of (healed) nontraumatic fracture|Personal history of (healed) nontraumatic fracture +C2911334|T033|HT|Z87.31|ICD10CM|Personal history of (healed) nontraumatic fracture|Personal history of (healed) nontraumatic fracture +C2911335|T033|ET|Z87.310|ICD10CM|Personal history of (healed) collapsed vertebra due to osteoporosis|Personal history of (healed) collapsed vertebra due to osteoporosis +C2911336|T033|ET|Z87.310|ICD10CM|Personal history of (healed) fragility fracture|Personal history of (healed) fragility fracture +C2911337|T033|AB|Z87.310|ICD10CM|Personal history of (healed) osteoporosis fracture|Personal history of (healed) osteoporosis fracture +C2911337|T033|PT|Z87.310|ICD10CM|Personal history of (healed) osteoporosis fracture|Personal history of (healed) osteoporosis fracture +C2911338|T033|ET|Z87.311|ICD10CM|Personal history of (healed) collapsed vertebra NOS|Personal history of (healed) collapsed vertebra NOS +C2911339|T033|AB|Z87.311|ICD10CM|Personal history of (healed) other pathological fracture|Personal history of (healed) other pathological fracture +C2911339|T033|PT|Z87.311|ICD10CM|Personal history of (healed) other pathological fracture|Personal history of (healed) other pathological fracture +C2911340|T033|ET|Z87.312|ICD10CM|Personal history of (healed) fatigue fracture|Personal history of (healed) fatigue fracture +C2911341|T033|AB|Z87.312|ICD10CM|Personal history of (healed) stress fracture|Personal history of (healed) stress fracture +C2911341|T033|PT|Z87.312|ICD10CM|Personal history of (healed) stress fracture|Personal history of (healed) stress fracture +C0496725|T033|AB|Z87.39|ICD10CM|Personal history of diseases of the ms sys and conn tiss|Personal history of diseases of the ms sys and conn tiss +C0496725|T033|PT|Z87.39|ICD10CM|Personal history of other diseases of the musculoskeletal system and connective tissue|Personal history of other diseases of the musculoskeletal system and connective tissue +C2911343|T033|ET|Z87.4|ICD10CM|Conditions classifiable to N00-N99|Conditions classifiable to N00-N99 +C0496726|T033|AB|Z87.4|ICD10CM|Personal history of diseases of genitourinary system|Personal history of diseases of genitourinary system +C0496726|T033|HT|Z87.4|ICD10CM|Personal history of diseases of genitourinary system|Personal history of diseases of genitourinary system +C0496726|T033|PT|Z87.4|ICD10|Personal history of diseases of the genitourinary system|Personal history of diseases of the genitourinary system +C2977654|T033|AB|Z87.41|ICD10CM|Personal history of dysplasia of the female genital tract|Personal history of dysplasia of the female genital tract +C2977654|T033|HT|Z87.41|ICD10CM|Personal history of dysplasia of the female genital tract|Personal history of dysplasia of the female genital tract +C1955573|T033|AB|Z87.410|ICD10CM|Personal history of cervical dysplasia|Personal history of cervical dysplasia +C1955573|T033|PT|Z87.410|ICD10CM|Personal history of cervical dysplasia|Personal history of cervical dysplasia +C2921279|T033|AB|Z87.411|ICD10CM|Personal history of vaginal dysplasia|Personal history of vaginal dysplasia +C2921279|T033|PT|Z87.411|ICD10CM|Personal history of vaginal dysplasia|Personal history of vaginal dysplasia +C2921281|T033|AB|Z87.412|ICD10CM|Personal history of vulvar dysplasia|Personal history of vulvar dysplasia +C2921281|T033|PT|Z87.412|ICD10CM|Personal history of vulvar dysplasia|Personal history of vulvar dysplasia +C2921393|T033|AB|Z87.42|ICD10CM|Personal history of oth diseases of the female genital tract|Personal history of oth diseases of the female genital tract +C2921393|T033|PT|Z87.42|ICD10CM|Personal history of other diseases of the female genital tract|Personal history of other diseases of the female genital tract +C2977655|T033|AB|Z87.43|ICD10CM|Personal history of diseases of male genital organs|Personal history of diseases of male genital organs +C2977655|T033|HT|Z87.43|ICD10CM|Personal history of diseases of male genital organs|Personal history of diseases of male genital organs +C2977656|T033|AB|Z87.430|ICD10CM|Personal history of prostatic dysplasia|Personal history of prostatic dysplasia +C2977656|T033|PT|Z87.430|ICD10CM|Personal history of prostatic dysplasia|Personal history of prostatic dysplasia +C2977657|T033|AB|Z87.438|ICD10CM|Personal history of other diseases of male genital organs|Personal history of other diseases of male genital organs +C2977657|T033|PT|Z87.438|ICD10CM|Personal history of other diseases of male genital organs|Personal history of other diseases of male genital organs +C2977658|T033|AB|Z87.44|ICD10CM|Personal history of diseases of urinary system|Personal history of diseases of urinary system +C2977658|T033|HT|Z87.44|ICD10CM|Personal history of diseases of urinary system|Personal history of diseases of urinary system +C2921372|T033|AB|Z87.440|ICD10CM|Personal history of urinary (tract) infections|Personal history of urinary (tract) infections +C2921372|T033|PT|Z87.440|ICD10CM|Personal history of urinary (tract) infections|Personal history of urinary (tract) infections +C2921393|T033|AB|Z87.441|ICD10CM|Personal history of nephrotic syndrome|Personal history of nephrotic syndrome +C2921393|T033|PT|Z87.441|ICD10CM|Personal history of nephrotic syndrome|Personal history of nephrotic syndrome +C2977659|T033|ET|Z87.442|ICD10CM|Personal history of kidney stones|Personal history of kidney stones +C0375806|T033|AB|Z87.442|ICD10CM|Personal history of urinary calculi|Personal history of urinary calculi +C0375806|T033|PT|Z87.442|ICD10CM|Personal history of urinary calculi|Personal history of urinary calculi +C2977660|T033|AB|Z87.448|ICD10CM|Personal history of other diseases of urinary system|Personal history of other diseases of urinary system +C2977660|T033|PT|Z87.448|ICD10CM|Personal history of other diseases of urinary system|Personal history of other diseases of urinary system +C0496727|T033|AB|Z87.5|ICD10CM|Personal history of comp of preg, chldbrth and the puerp|Personal history of comp of preg, chldbrth and the puerp +C0496727|T033|HT|Z87.5|ICD10CM|Personal history of complications of pregnancy, childbirth and the puerperium|Personal history of complications of pregnancy, childbirth and the puerperium +C0496727|T033|PT|Z87.5|ICD10|Personal history of complications of pregnancy, childbirth and the puerperium|Personal history of complications of pregnancy, childbirth and the puerperium +C1135273|T033|AB|Z87.51|ICD10CM|Personal history of pre-term labor|Personal history of pre-term labor +C1135273|T033|PT|Z87.51|ICD10CM|Personal history of pre-term labor|Personal history of pre-term labor +C2911346|T033|AB|Z87.59|ICD10CM|Personal history of comp of preg, chldbrth and the puerp|Personal history of comp of preg, chldbrth and the puerp +C2911346|T033|PT|Z87.59|ICD10CM|Personal history of other complications of pregnancy, childbirth and the puerperium|Personal history of other complications of pregnancy, childbirth and the puerperium +C0260474|T033|ET|Z87.59|ICD10CM|Personal history of trophoblastic disease|Personal history of trophoblastic disease +C0496728|T033|PT|Z87.6|ICD10|Personal history of certain conditions arising in the perinatal period|Personal history of certain conditions arising in the perinatal period +C2911347|T033|ET|Z87.7|ICD10CM|Conditions classifiable to Q00-Q89 that have been repaired or corrected|Conditions classifiable to Q00-Q89 that have been repaired or corrected +C2921283|T033|AB|Z87.7|ICD10CM|Personal history of (corrected) congenital malformations|Personal history of (corrected) congenital malformations +C2921283|T033|HT|Z87.7|ICD10CM|Personal history of (corrected) congenital malformations|Personal history of (corrected) congenital malformations +C0496729|T033|PT|Z87.7|ICD10|Personal history of congenital malformations, deformations and chromosomal abnormalities|Personal history of congenital malformations, deformations and chromosomal abnormalities +C2977661|T033|AB|Z87.71|ICD10CM|Personal history of (corrected) congenital malform of GU sys|Personal history of (corrected) congenital malform of GU sys +C2977661|T033|HT|Z87.71|ICD10CM|Personal history of (corrected) congenital malformations of genitourinary system|Personal history of (corrected) congenital malformations of genitourinary system +C2921284|T033|AB|Z87.710|ICD10CM|Personal history of (corrected) hypospadias|Personal history of (corrected) hypospadias +C2921284|T033|PT|Z87.710|ICD10CM|Personal history of (corrected) hypospadias|Personal history of (corrected) hypospadias +C2977662|T033|AB|Z87.718|ICD10CM|Personal history of (corrected) congenital malform of GU sys|Personal history of (corrected) congenital malform of GU sys +C2977662|T033|PT|Z87.718|ICD10CM|Personal history of other specified (corrected) congenital malformations of genitourinary system|Personal history of other specified (corrected) congenital malformations of genitourinary system +C2977663|T033|HT|Z87.72|ICD10CM|Personal history of (corrected) congenital malformations of nervous system and sense organs|Personal history of (corrected) congenital malformations of nervous system and sense organs +C2977663|T033|AB|Z87.72|ICD10CM|Prsnl hx of congen malform of nervous sys and sense organs|Prsnl hx of congen malform of nervous sys and sense organs +C2977664|T033|AB|Z87.720|ICD10CM|Personal history of (corrected) congenital malform of eye|Personal history of (corrected) congenital malform of eye +C2977664|T033|PT|Z87.720|ICD10CM|Personal history of (corrected) congenital malformations of eye|Personal history of (corrected) congenital malformations of eye +C2977665|T033|AB|Z87.721|ICD10CM|Personal history of (corrected) congenital malform of ear|Personal history of (corrected) congenital malform of ear +C2977665|T033|PT|Z87.721|ICD10CM|Personal history of (corrected) congenital malformations of ear|Personal history of (corrected) congenital malformations of ear +C2977666|T033|AB|Z87.728|ICD10CM|Prsnl hx of congen malform of nervous sys and sense organs|Prsnl hx of congen malform of nervous sys and sense organs +C2921291|T033|HT|Z87.73|ICD10CM|Personal history of (corrected) congenital malformations of digestive system|Personal history of (corrected) congenital malformations of digestive system +C2921291|T033|AB|Z87.73|ICD10CM|Personal history of congenital malform of dgstv sys|Personal history of congenital malform of dgstv sys +C2921287|T033|AB|Z87.730|ICD10CM|Personal history of (corrected) cleft lip and palate|Personal history of (corrected) cleft lip and palate +C2921287|T033|PT|Z87.730|ICD10CM|Personal history of (corrected) cleft lip and palate|Personal history of (corrected) cleft lip and palate +C2977667|T033|AB|Z87.738|ICD10CM|Personal history of congenital malform of dgstv sys|Personal history of congenital malform of dgstv sys +C2977667|T033|PT|Z87.738|ICD10CM|Personal history of other specified (corrected) congenital malformations of digestive system|Personal history of other specified (corrected) congenital malformations of digestive system +C2921289|T033|PT|Z87.74|ICD10CM|Personal history of (corrected) congenital malformations of heart and circulatory system|Personal history of (corrected) congenital malformations of heart and circulatory system +C2921289|T033|AB|Z87.74|ICD10CM|Personal history of congenital malform of heart and circ sys|Personal history of congenital malform of heart and circ sys +C2921290|T033|PT|Z87.75|ICD10CM|Personal history of (corrected) congenital malformations of respiratory system|Personal history of (corrected) congenital malformations of respiratory system +C2921290|T033|AB|Z87.75|ICD10CM|Personal history of congenital malform of resp sys|Personal history of congenital malform of resp sys +C2921292|T033|AB|Z87.76|ICD10CM|Prsnl hx of congen malform of integument, limbs and ms sys|Prsnl hx of congen malform of integument, limbs and ms sys +C0700232|T033|AB|Z87.79|ICD10CM|Personal history of oth (corrected) congenital malformations|Personal history of oth (corrected) congenital malformations +C0700232|T033|HT|Z87.79|ICD10CM|Personal history of other (corrected) congenital malformations|Personal history of other (corrected) congenital malformations +C2977668|T033|PT|Z87.790|ICD10CM|Personal history of (corrected) congenital malformations of face and neck|Personal history of (corrected) congenital malformations of face and neck +C2977668|T033|AB|Z87.790|ICD10CM|Personal history of congenital malform of face and neck|Personal history of congenital malform of face and neck +C0700232|T033|AB|Z87.798|ICD10CM|Personal history of oth (corrected) congenital malformations|Personal history of oth (corrected) congenital malformations +C0700232|T033|PT|Z87.798|ICD10CM|Personal history of other (corrected) congenital malformations|Personal history of other (corrected) congenital malformations +C0478635|T033|HT|Z87.8|ICD10CM|Personal history of other specified conditions|Personal history of other specified conditions +C0478635|T033|AB|Z87.8|ICD10CM|Personal history of other specified conditions|Personal history of other specified conditions +C0478635|T033|PT|Z87.8|ICD10|Personal history of other specified conditions|Personal history of other specified conditions +C2911350|T033|AB|Z87.81|ICD10CM|Personal history of (healed) traumatic fracture|Personal history of (healed) traumatic fracture +C2911350|T033|PT|Z87.81|ICD10CM|Personal history of (healed) traumatic fracture|Personal history of (healed) traumatic fracture +C2911352|T033|AB|Z87.82|ICD10CM|Personal history of oth (healed) physical injury and trauma|Personal history of oth (healed) physical injury and trauma +C2911352|T033|HT|Z87.82|ICD10CM|Personal history of other (healed) physical injury and trauma|Personal history of other (healed) physical injury and trauma +C2712539|T033|AB|Z87.820|ICD10CM|Personal history of traumatic brain injury|Personal history of traumatic brain injury +C2712539|T033|PT|Z87.820|ICD10CM|Personal history of traumatic brain injury|Personal history of traumatic brain injury +C2921301|T033|AB|Z87.821|ICD10CM|Personal history of retained foreign body fully removed|Personal history of retained foreign body fully removed +C2921301|T033|PT|Z87.821|ICD10CM|Personal history of retained foreign body fully removed|Personal history of retained foreign body fully removed +C2911352|T033|AB|Z87.828|ICD10CM|Personal history of oth (healed) physical injury and trauma|Personal history of oth (healed) physical injury and trauma +C2911352|T033|PT|Z87.828|ICD10CM|Personal history of other (healed) physical injury and trauma|Personal history of other (healed) physical injury and trauma +C0478635|T033|HT|Z87.89|ICD10CM|Personal history of other specified conditions|Personal history of other specified conditions +C0478635|T033|AB|Z87.89|ICD10CM|Personal history of other specified conditions|Personal history of other specified conditions +C2911354|T033|AB|Z87.890|ICD10CM|Personal history of sex reassignment|Personal history of sex reassignment +C2911354|T033|PT|Z87.890|ICD10CM|Personal history of sex reassignment|Personal history of sex reassignment +C2911355|T033|AB|Z87.891|ICD10CM|Personal history of nicotine dependence|Personal history of nicotine dependence +C2911355|T033|PT|Z87.891|ICD10CM|Personal history of nicotine dependence|Personal history of nicotine dependence +C3161147|T033|AB|Z87.892|ICD10CM|Personal history of anaphylaxis|Personal history of anaphylaxis +C3161147|T033|PT|Z87.892|ICD10CM|Personal history of anaphylaxis|Personal history of anaphylaxis +C0478635|T033|PT|Z87.898|ICD10CM|Personal history of other specified conditions|Personal history of other specified conditions +C0478635|T033|AB|Z87.898|ICD10CM|Personal history of other specified conditions|Personal history of other specified conditions +C2911356|T033|AB|Z88|ICD10CM|Allergy status to drug/meds/biol subst|Allergy status to drug/meds/biol subst +C2911356|T033|HT|Z88|ICD10CM|Allergy status to drugs, medicaments and biological substances|Allergy status to drugs, medicaments and biological substances +C0496730|T033|HT|Z88|ICD10|Personal history of allergy to drugs, medicaments and biological substances|Personal history of allergy to drugs, medicaments and biological substances +C2911357|T033|AB|Z88.0|ICD10CM|Allergy status to penicillin|Allergy status to penicillin +C2911357|T033|PT|Z88.0|ICD10CM|Allergy status to penicillin|Allergy status to penicillin +C0260484|T033|PT|Z88.0|ICD10|Personal history of allergy to penicillin|Personal history of allergy to penicillin +C2911358|T033|AB|Z88.1|ICD10CM|Allergy status to other antibiotic agents status|Allergy status to other antibiotic agents status +C2911358|T033|PT|Z88.1|ICD10CM|Allergy status to other antibiotic agents status|Allergy status to other antibiotic agents status +C0260485|T033|PT|Z88.1|ICD10|Personal history of allergy to other antibiotic agents|Personal history of allergy to other antibiotic agents +C2911359|T033|AB|Z88.2|ICD10CM|Allergy status to sulfonamides status|Allergy status to sulfonamides status +C2911359|T033|PT|Z88.2|ICD10CM|Allergy status to sulfonamides status|Allergy status to sulfonamides status +C0260486|T033|PT|Z88.2|ICD10|Personal history of allergy to sulfonamides|Personal history of allergy to sulfonamides +C2911360|T033|AB|Z88.3|ICD10CM|Allergy status to other anti-infective agents status|Allergy status to other anti-infective agents status +C2911360|T033|PT|Z88.3|ICD10CM|Allergy status to other anti-infective agents status|Allergy status to other anti-infective agents status +C0260487|T033|PT|Z88.3|ICD10|Personal history of allergy to other anti-infective agents|Personal history of allergy to other anti-infective agents +C2911361|T033|AB|Z88.4|ICD10CM|Allergy status to anesthetic agent status|Allergy status to anesthetic agent status +C2911361|T033|PT|Z88.4|ICD10CM|Allergy status to anesthetic agent status|Allergy status to anesthetic agent status +C0260488|T033|PT|Z88.4|ICD10|Personal history of allergy to anaesthetic agent|Personal history of allergy to anaesthetic agent +C0260488|T033|PT|Z88.4|ICD10AE|Personal history of allergy to anesthetic agent|Personal history of allergy to anesthetic agent +C2911362|T033|AB|Z88.5|ICD10CM|Allergy status to narcotic agent status|Allergy status to narcotic agent status +C2911362|T033|PT|Z88.5|ICD10CM|Allergy status to narcotic agent status|Allergy status to narcotic agent status +C0260489|T033|PT|Z88.5|ICD10|Personal history of allergy to narcotic agent|Personal history of allergy to narcotic agent +C2911363|T033|AB|Z88.6|ICD10CM|Allergy status to analgesic agent status|Allergy status to analgesic agent status +C2911363|T033|PT|Z88.6|ICD10CM|Allergy status to analgesic agent status|Allergy status to analgesic agent status +C0260490|T033|PT|Z88.6|ICD10|Personal history of allergy to analgesic agent|Personal history of allergy to analgesic agent +C2911364|T033|AB|Z88.7|ICD10CM|Allergy status to serum and vaccine status|Allergy status to serum and vaccine status +C2911364|T033|PT|Z88.7|ICD10CM|Allergy status to serum and vaccine status|Allergy status to serum and vaccine status +C0260491|T033|PT|Z88.7|ICD10|Personal history of allergy to serum and vaccine|Personal history of allergy to serum and vaccine +C2911365|T033|AB|Z88.8|ICD10CM|Allergy status to oth drug/meds/biol subst status|Allergy status to oth drug/meds/biol subst status +C2911365|T033|PT|Z88.8|ICD10CM|Allergy status to other drugs, medicaments and biological substances status|Allergy status to other drugs, medicaments and biological substances status +C0496732|T033|PT|Z88.8|ICD10|Personal history of allergy to other drugs, medicaments and biological substances|Personal history of allergy to other drugs, medicaments and biological substances +C2911366|T033|AB|Z88.9|ICD10CM|Allergy status to unsp drug/meds/biol subst status|Allergy status to unsp drug/meds/biol subst status +C2911366|T033|PT|Z88.9|ICD10CM|Allergy status to unspecified drugs, medicaments and biological substances status|Allergy status to unspecified drugs, medicaments and biological substances status +C0496730|T033|PT|Z88.9|ICD10|Personal history of allergy to unspecified drugs, medicaments and biological substances|Personal history of allergy to unspecified drugs, medicaments and biological substances +C0476690|T033|HT|Z89|ICD10|Acquired absence of limb|Acquired absence of limb +C0476690|T033|AB|Z89|ICD10CM|Acquired absence of limb|Acquired absence of limb +C0476690|T033|HT|Z89|ICD10CM|Acquired absence of limb|Acquired absence of limb +C4290524|T033|ET|Z89|ICD10CM|amputation status|amputation status +C4290526|T033|ET|Z89|ICD10CM|post-traumatic loss of limb|post-traumatic loss of limb +C4290525|T033|ET|Z89|ICD10CM|postprocedural loss of limb|postprocedural loss of limb +C0476691|T020|PT|Z89.0|ICD10|Acquired absence of finger(s) [including thumb], unilateral|Acquired absence of finger(s) [including thumb], unilateral +C2911370|T033|AB|Z89.0|ICD10CM|Acquired absence of thumb and other finger(s)|Acquired absence of thumb and other finger(s) +C2911370|T033|HT|Z89.0|ICD10CM|Acquired absence of thumb and other finger(s)|Acquired absence of thumb and other finger(s) +C2911371|T033|AB|Z89.01|ICD10CM|Acquired absence of thumb|Acquired absence of thumb +C2911371|T033|HT|Z89.01|ICD10CM|Acquired absence of thumb|Acquired absence of thumb +C2911372|T033|AB|Z89.011|ICD10CM|Acquired absence of right thumb|Acquired absence of right thumb +C2911372|T033|PT|Z89.011|ICD10CM|Acquired absence of right thumb|Acquired absence of right thumb +C2911373|T033|AB|Z89.012|ICD10CM|Acquired absence of left thumb|Acquired absence of left thumb +C2911373|T033|PT|Z89.012|ICD10CM|Acquired absence of left thumb|Acquired absence of left thumb +C2911374|T033|AB|Z89.019|ICD10CM|Acquired absence of unspecified thumb|Acquired absence of unspecified thumb +C2911374|T033|PT|Z89.019|ICD10CM|Acquired absence of unspecified thumb|Acquired absence of unspecified thumb +C2911375|T033|AB|Z89.02|ICD10CM|Acquired absence of other finger(s)|Acquired absence of other finger(s) +C2911375|T033|HT|Z89.02|ICD10CM|Acquired absence of other finger(s)|Acquired absence of other finger(s) +C2911376|T033|AB|Z89.021|ICD10CM|Acquired absence of right finger(s)|Acquired absence of right finger(s) +C2911376|T033|PT|Z89.021|ICD10CM|Acquired absence of right finger(s)|Acquired absence of right finger(s) +C2911377|T033|AB|Z89.022|ICD10CM|Acquired absence of left finger(s)|Acquired absence of left finger(s) +C2911377|T033|PT|Z89.022|ICD10CM|Acquired absence of left finger(s)|Acquired absence of left finger(s) +C2911378|T033|AB|Z89.029|ICD10CM|Acquired absence of unspecified finger(s)|Acquired absence of unspecified finger(s) +C2911378|T033|PT|Z89.029|ICD10CM|Acquired absence of unspecified finger(s)|Acquired absence of unspecified finger(s) +C0476692|T033|PT|Z89.1|ICD10|Acquired absence of hand and wrist|Acquired absence of hand and wrist +C0476692|T033|HT|Z89.1|ICD10CM|Acquired absence of hand and wrist|Acquired absence of hand and wrist +C0476692|T033|AB|Z89.1|ICD10CM|Acquired absence of hand and wrist|Acquired absence of hand and wrist +C2911379|T033|AB|Z89.11|ICD10CM|Acquired absence of hand|Acquired absence of hand +C2911379|T033|HT|Z89.11|ICD10CM|Acquired absence of hand|Acquired absence of hand +C2911380|T033|AB|Z89.111|ICD10CM|Acquired absence of right hand|Acquired absence of right hand +C2911380|T033|PT|Z89.111|ICD10CM|Acquired absence of right hand|Acquired absence of right hand +C2911381|T033|AB|Z89.112|ICD10CM|Acquired absence of left hand|Acquired absence of left hand +C2911381|T033|PT|Z89.112|ICD10CM|Acquired absence of left hand|Acquired absence of left hand +C2911382|T033|AB|Z89.119|ICD10CM|Acquired absence of unspecified hand|Acquired absence of unspecified hand +C2911382|T033|PT|Z89.119|ICD10CM|Acquired absence of unspecified hand|Acquired absence of unspecified hand +C2911383|T033|AB|Z89.12|ICD10CM|Acquired absence of wrist|Acquired absence of wrist +C2911383|T033|HT|Z89.12|ICD10CM|Acquired absence of wrist|Acquired absence of wrist +C2911678|T033|ET|Z89.12|ICD10CM|Disarticulation at wrist|Disarticulation at wrist +C2911384|T033|AB|Z89.121|ICD10CM|Acquired absence of right wrist|Acquired absence of right wrist +C2911384|T033|PT|Z89.121|ICD10CM|Acquired absence of right wrist|Acquired absence of right wrist +C2911385|T033|AB|Z89.122|ICD10CM|Acquired absence of left wrist|Acquired absence of left wrist +C2911385|T033|PT|Z89.122|ICD10CM|Acquired absence of left wrist|Acquired absence of left wrist +C2911386|T033|AB|Z89.129|ICD10CM|Acquired absence of unspecified wrist|Acquired absence of unspecified wrist +C2911386|T033|PT|Z89.129|ICD10CM|Acquired absence of unspecified wrist|Acquired absence of unspecified wrist +C0476693|T033|HT|Z89.2|ICD10CM|Acquired absence of upper limb above wrist|Acquired absence of upper limb above wrist +C0476693|T033|AB|Z89.2|ICD10CM|Acquired absence of upper limb above wrist|Acquired absence of upper limb above wrist +C0476693|T033|PT|Z89.2|ICD10|Acquired absence of upper limb above wrist|Acquired absence of upper limb above wrist +C2911387|T033|AB|Z89.20|ICD10CM|Acquired absence of upper limb, unspecified level|Acquired absence of upper limb, unspecified level +C2911387|T033|HT|Z89.20|ICD10CM|Acquired absence of upper limb, unspecified level|Acquired absence of upper limb, unspecified level +C2911388|T033|AB|Z89.201|ICD10CM|Acquired absence of right upper limb, unspecified level|Acquired absence of right upper limb, unspecified level +C2911388|T033|PT|Z89.201|ICD10CM|Acquired absence of right upper limb, unspecified level|Acquired absence of right upper limb, unspecified level +C2911389|T033|AB|Z89.202|ICD10CM|Acquired absence of left upper limb, unspecified level|Acquired absence of left upper limb, unspecified level +C2911389|T033|PT|Z89.202|ICD10CM|Acquired absence of left upper limb, unspecified level|Acquired absence of left upper limb, unspecified level +C2911390|T033|ET|Z89.209|ICD10CM|Acquired absence of arm NOS|Acquired absence of arm NOS +C2911391|T033|AB|Z89.209|ICD10CM|Acquired absence of unsp upper limb, unspecified level|Acquired absence of unsp upper limb, unspecified level +C2911391|T033|PT|Z89.209|ICD10CM|Acquired absence of unspecified upper limb, unspecified level|Acquired absence of unspecified upper limb, unspecified level +C2911392|T033|AB|Z89.21|ICD10CM|Acquired absence of upper limb below elbow|Acquired absence of upper limb below elbow +C2911392|T033|HT|Z89.21|ICD10CM|Acquired absence of upper limb below elbow|Acquired absence of upper limb below elbow +C2911393|T033|AB|Z89.211|ICD10CM|Acquired absence of right upper limb below elbow|Acquired absence of right upper limb below elbow +C2911393|T033|PT|Z89.211|ICD10CM|Acquired absence of right upper limb below elbow|Acquired absence of right upper limb below elbow +C2911394|T033|AB|Z89.212|ICD10CM|Acquired absence of left upper limb below elbow|Acquired absence of left upper limb below elbow +C2911394|T033|PT|Z89.212|ICD10CM|Acquired absence of left upper limb below elbow|Acquired absence of left upper limb below elbow +C2911395|T033|AB|Z89.219|ICD10CM|Acquired absence of unspecified upper limb below elbow|Acquired absence of unspecified upper limb below elbow +C2911395|T033|PT|Z89.219|ICD10CM|Acquired absence of unspecified upper limb below elbow|Acquired absence of unspecified upper limb below elbow +C2911396|T033|AB|Z89.22|ICD10CM|Acquired absence of upper limb above elbow|Acquired absence of upper limb above elbow +C2911396|T033|HT|Z89.22|ICD10CM|Acquired absence of upper limb above elbow|Acquired absence of upper limb above elbow +C2911679|T033|ET|Z89.22|ICD10CM|Disarticulation at elbow|Disarticulation at elbow +C2911397|T033|AB|Z89.221|ICD10CM|Acquired absence of right upper limb above elbow|Acquired absence of right upper limb above elbow +C2911397|T033|PT|Z89.221|ICD10CM|Acquired absence of right upper limb above elbow|Acquired absence of right upper limb above elbow +C2911398|T033|AB|Z89.222|ICD10CM|Acquired absence of left upper limb above elbow|Acquired absence of left upper limb above elbow +C2911398|T033|PT|Z89.222|ICD10CM|Acquired absence of left upper limb above elbow|Acquired absence of left upper limb above elbow +C2911399|T033|AB|Z89.229|ICD10CM|Acquired absence of unspecified upper limb above elbow|Acquired absence of unspecified upper limb above elbow +C2911399|T033|PT|Z89.229|ICD10CM|Acquired absence of unspecified upper limb above elbow|Acquired absence of unspecified upper limb above elbow +C2911400|T033|AB|Z89.23|ICD10CM|Acquired absence of shoulder|Acquired absence of shoulder +C2911400|T033|HT|Z89.23|ICD10CM|Acquired absence of shoulder|Acquired absence of shoulder +C2911401|T033|AB|Z89.231|ICD10CM|Acquired absence of right shoulder|Acquired absence of right shoulder +C2911401|T033|PT|Z89.231|ICD10CM|Acquired absence of right shoulder|Acquired absence of right shoulder +C2911402|T033|AB|Z89.232|ICD10CM|Acquired absence of left shoulder|Acquired absence of left shoulder +C2911402|T033|PT|Z89.232|ICD10CM|Acquired absence of left shoulder|Acquired absence of left shoulder +C2911403|T033|AB|Z89.239|ICD10CM|Acquired absence of unspecified shoulder|Acquired absence of unspecified shoulder +C2911403|T033|PT|Z89.239|ICD10CM|Acquired absence of unspecified shoulder|Acquired absence of unspecified shoulder +C0476694|T020|PT|Z89.3|ICD10|Acquired absence of both upper limbs [any level]|Acquired absence of both upper limbs [any level] +C0476695|T033|PT|Z89.4|ICD10|Acquired absence of foot and ankle|Acquired absence of foot and ankle +C2911404|T033|AB|Z89.4|ICD10CM|Acquired absence of toe(s), foot, and ankle|Acquired absence of toe(s), foot, and ankle +C2911404|T033|HT|Z89.4|ICD10CM|Acquired absence of toe(s), foot, and ankle|Acquired absence of toe(s), foot, and ankle +C2911405|T033|AB|Z89.41|ICD10CM|Acquired absence of great toe|Acquired absence of great toe +C2911405|T033|HT|Z89.41|ICD10CM|Acquired absence of great toe|Acquired absence of great toe +C2911406|T033|AB|Z89.411|ICD10CM|Acquired absence of right great toe|Acquired absence of right great toe +C2911406|T033|PT|Z89.411|ICD10CM|Acquired absence of right great toe|Acquired absence of right great toe +C2911407|T033|AB|Z89.412|ICD10CM|Acquired absence of left great toe|Acquired absence of left great toe +C2911407|T033|PT|Z89.412|ICD10CM|Acquired absence of left great toe|Acquired absence of left great toe +C2911408|T033|AB|Z89.419|ICD10CM|Acquired absence of unspecified great toe|Acquired absence of unspecified great toe +C2911408|T033|PT|Z89.419|ICD10CM|Acquired absence of unspecified great toe|Acquired absence of unspecified great toe +C2911409|T033|AB|Z89.42|ICD10CM|Acquired absence of other toe(s)|Acquired absence of other toe(s) +C2911409|T033|HT|Z89.42|ICD10CM|Acquired absence of other toe(s)|Acquired absence of other toe(s) +C2911410|T033|AB|Z89.421|ICD10CM|Acquired absence of other right toe(s)|Acquired absence of other right toe(s) +C2911410|T033|PT|Z89.421|ICD10CM|Acquired absence of other right toe(s)|Acquired absence of other right toe(s) +C2911411|T033|AB|Z89.422|ICD10CM|Acquired absence of other left toe(s)|Acquired absence of other left toe(s) +C2911411|T033|PT|Z89.422|ICD10CM|Acquired absence of other left toe(s)|Acquired absence of other left toe(s) +C2911412|T033|AB|Z89.429|ICD10CM|Acquired absence of other toe(s), unspecified side|Acquired absence of other toe(s), unspecified side +C2911412|T033|PT|Z89.429|ICD10CM|Acquired absence of other toe(s), unspecified side|Acquired absence of other toe(s), unspecified side +C2911413|T033|AB|Z89.43|ICD10CM|Acquired absence of foot|Acquired absence of foot +C2911413|T033|HT|Z89.43|ICD10CM|Acquired absence of foot|Acquired absence of foot +C2911414|T033|AB|Z89.431|ICD10CM|Acquired absence of right foot|Acquired absence of right foot +C2911414|T033|PT|Z89.431|ICD10CM|Acquired absence of right foot|Acquired absence of right foot +C2911415|T033|AB|Z89.432|ICD10CM|Acquired absence of left foot|Acquired absence of left foot +C2911415|T033|PT|Z89.432|ICD10CM|Acquired absence of left foot|Acquired absence of left foot +C2911416|T033|AB|Z89.439|ICD10CM|Acquired absence of unspecified foot|Acquired absence of unspecified foot +C2911416|T033|PT|Z89.439|ICD10CM|Acquired absence of unspecified foot|Acquired absence of unspecified foot +C2911417|T033|AB|Z89.44|ICD10CM|Acquired absence of ankle|Acquired absence of ankle +C2911417|T033|HT|Z89.44|ICD10CM|Acquired absence of ankle|Acquired absence of ankle +C2911676|T033|ET|Z89.44|ICD10CM|Disarticulation of ankle|Disarticulation of ankle +C2911418|T033|AB|Z89.441|ICD10CM|Acquired absence of right ankle|Acquired absence of right ankle +C2911418|T033|PT|Z89.441|ICD10CM|Acquired absence of right ankle|Acquired absence of right ankle +C2911419|T033|AB|Z89.442|ICD10CM|Acquired absence of left ankle|Acquired absence of left ankle +C2911419|T033|PT|Z89.442|ICD10CM|Acquired absence of left ankle|Acquired absence of left ankle +C2911420|T033|AB|Z89.449|ICD10CM|Acquired absence of unspecified ankle|Acquired absence of unspecified ankle +C2911420|T033|PT|Z89.449|ICD10CM|Acquired absence of unspecified ankle|Acquired absence of unspecified ankle +C0476696|T020|PT|Z89.5|ICD10|Acquired absence of leg at or below knee|Acquired absence of leg at or below knee +C2911421|T033|AB|Z89.5|ICD10CM|Acquired absence of leg below knee|Acquired absence of leg below knee +C2911421|T033|HT|Z89.5|ICD10CM|Acquired absence of leg below knee|Acquired absence of leg below knee +C2911421|T033|HT|Z89.51|ICD10CM|Acquired absence of leg below knee|Acquired absence of leg below knee +C2911421|T033|AB|Z89.51|ICD10CM|Acquired absence of leg below knee|Acquired absence of leg below knee +C3264136|T033|AB|Z89.511|ICD10CM|Acquired absence of right leg below knee|Acquired absence of right leg below knee +C3264136|T033|PT|Z89.511|ICD10CM|Acquired absence of right leg below knee|Acquired absence of right leg below knee +C3264137|T033|AB|Z89.512|ICD10CM|Acquired absence of left leg below knee|Acquired absence of left leg below knee +C3264137|T033|PT|Z89.512|ICD10CM|Acquired absence of left leg below knee|Acquired absence of left leg below knee +C3264138|T033|AB|Z89.519|ICD10CM|Acquired absence of unspecified leg below knee|Acquired absence of unspecified leg below knee +C3264138|T033|PT|Z89.519|ICD10CM|Acquired absence of unspecified leg below knee|Acquired absence of unspecified leg below knee +C3264140|T033|AB|Z89.52|ICD10CM|Acquired absence of knee|Acquired absence of knee +C3264140|T033|HT|Z89.52|ICD10CM|Acquired absence of knee|Acquired absence of knee +C3264141|T033|AB|Z89.521|ICD10CM|Acquired absence of right knee|Acquired absence of right knee +C3264141|T033|PT|Z89.521|ICD10CM|Acquired absence of right knee|Acquired absence of right knee +C3264142|T033|AB|Z89.522|ICD10CM|Acquired absence of left knee|Acquired absence of left knee +C3264142|T033|PT|Z89.522|ICD10CM|Acquired absence of left knee|Acquired absence of left knee +C3264143|T033|AB|Z89.529|ICD10CM|Acquired absence of unspecified knee|Acquired absence of unspecified knee +C3264143|T033|PT|Z89.529|ICD10CM|Acquired absence of unspecified knee|Acquired absence of unspecified knee +C0476697|T033|PT|Z89.6|ICD10|Acquired absence of leg above knee|Acquired absence of leg above knee +C0476697|T033|HT|Z89.6|ICD10CM|Acquired absence of leg above knee|Acquired absence of leg above knee +C0476697|T033|AB|Z89.6|ICD10CM|Acquired absence of leg above knee|Acquired absence of leg above knee +C0476697|T033|HT|Z89.61|ICD10CM|Acquired absence of leg above knee|Acquired absence of leg above knee +C0476697|T033|AB|Z89.61|ICD10CM|Acquired absence of leg above knee|Acquired absence of leg above knee +C2911425|T033|ET|Z89.61|ICD10CM|Acquired absence of leg NOS|Acquired absence of leg NOS +C2911675|T033|ET|Z89.61|ICD10CM|Disarticulation at knee|Disarticulation at knee +C2911426|T033|AB|Z89.611|ICD10CM|Acquired absence of right leg above knee|Acquired absence of right leg above knee +C2911426|T033|PT|Z89.611|ICD10CM|Acquired absence of right leg above knee|Acquired absence of right leg above knee +C2911427|T033|AB|Z89.612|ICD10CM|Acquired absence of left leg above knee|Acquired absence of left leg above knee +C2911427|T033|PT|Z89.612|ICD10CM|Acquired absence of left leg above knee|Acquired absence of left leg above knee +C2911428|T033|AB|Z89.619|ICD10CM|Acquired absence of unspecified leg above knee|Acquired absence of unspecified leg above knee +C2911428|T033|PT|Z89.619|ICD10CM|Acquired absence of unspecified leg above knee|Acquired absence of unspecified leg above knee +C2911430|T033|AB|Z89.62|ICD10CM|Acquired absence of hip|Acquired absence of hip +C2911430|T033|HT|Z89.62|ICD10CM|Acquired absence of hip|Acquired absence of hip +C2911429|T033|ET|Z89.62|ICD10CM|Disarticulation at hip|Disarticulation at hip +C2911431|T033|AB|Z89.621|ICD10CM|Acquired absence of right hip joint|Acquired absence of right hip joint +C2911431|T033|PT|Z89.621|ICD10CM|Acquired absence of right hip joint|Acquired absence of right hip joint +C3264145|T033|AB|Z89.622|ICD10CM|Acquired absence of left hip joint|Acquired absence of left hip joint +C3264145|T033|PT|Z89.622|ICD10CM|Acquired absence of left hip joint|Acquired absence of left hip joint +C2911433|T033|AB|Z89.629|ICD10CM|Acquired absence of unspecified hip joint|Acquired absence of unspecified hip joint +C2911433|T033|PT|Z89.629|ICD10CM|Acquired absence of unspecified hip joint|Acquired absence of unspecified hip joint +C0476698|T020|PT|Z89.7|ICD10|Acquired absence of both lower limbs [any level, except toes alone]|Acquired absence of both lower limbs [any level, except toes alone] +C0476699|T020|PT|Z89.8|ICD10|Acquired absence of upper and lower limbs [any level]|Acquired absence of upper and lower limbs [any level] +C0476690|T033|PT|Z89.9|ICD10|Acquired absence of limb, unspecified|Acquired absence of limb, unspecified +C0476690|T033|PT|Z89.9|ICD10CM|Acquired absence of limb, unspecified|Acquired absence of limb, unspecified +C0476690|T033|AB|Z89.9|ICD10CM|Acquired absence of limb, unspecified|Acquired absence of limb, unspecified +C0869260|T033|HT|Z90|ICD10|Acquired absence of organs, not elsewhere classified|Acquired absence of organs, not elsewhere classified +C0869260|T033|AB|Z90|ICD10CM|Acquired absence of organs, not elsewhere classified|Acquired absence of organs, not elsewhere classified +C0869260|T033|HT|Z90|ICD10CM|Acquired absence of organs, not elsewhere classified|Acquired absence of organs, not elsewhere classified +C4290527|T033|ET|Z90|ICD10CM|postprocedural or post-traumatic loss of body part NEC|postprocedural or post-traumatic loss of body part NEC +C0476701|T033|PT|Z90.0|ICD10|Acquired absence of part of head and neck|Acquired absence of part of head and neck +C0476701|T033|HT|Z90.0|ICD10CM|Acquired absence of part of head and neck|Acquired absence of part of head and neck +C0476701|T033|AB|Z90.0|ICD10CM|Acquired absence of part of head and neck|Acquired absence of part of head and neck +C0917922|T033|AB|Z90.01|ICD10CM|Acquired absence of eye|Acquired absence of eye +C0917922|T033|PT|Z90.01|ICD10CM|Acquired absence of eye|Acquired absence of eye +C2746033|T033|AB|Z90.02|ICD10CM|Acquired absence of larynx|Acquired absence of larynx +C2746033|T033|PT|Z90.02|ICD10CM|Acquired absence of larynx|Acquired absence of larynx +C2919073|T033|ET|Z90.09|ICD10CM|Acquired absence of nose|Acquired absence of nose +C2911435|T033|AB|Z90.09|ICD10CM|Acquired absence of other part of head and neck|Acquired absence of other part of head and neck +C2911435|T033|PT|Z90.09|ICD10CM|Acquired absence of other part of head and neck|Acquired absence of other part of head and neck +C2349873|T033|HT|Z90.1|ICD10CM|Acquired absence of breast and nipple|Acquired absence of breast and nipple +C2349873|T033|AB|Z90.1|ICD10CM|Acquired absence of breast and nipple|Acquired absence of breast and nipple +C0476702|T033|PT|Z90.1|ICD10|Acquired absence of breast(s)|Acquired absence of breast(s) +C2911436|T033|AB|Z90.10|ICD10CM|Acquired absence of unspecified breast and nipple|Acquired absence of unspecified breast and nipple +C2911436|T033|PT|Z90.10|ICD10CM|Acquired absence of unspecified breast and nipple|Acquired absence of unspecified breast and nipple +C2911437|T033|AB|Z90.11|ICD10CM|Acquired absence of right breast and nipple|Acquired absence of right breast and nipple +C2911437|T033|PT|Z90.11|ICD10CM|Acquired absence of right breast and nipple|Acquired absence of right breast and nipple +C2911438|T033|AB|Z90.12|ICD10CM|Acquired absence of left breast and nipple|Acquired absence of left breast and nipple +C2911438|T033|PT|Z90.12|ICD10CM|Acquired absence of left breast and nipple|Acquired absence of left breast and nipple +C2911439|T033|AB|Z90.13|ICD10CM|Acquired absence of bilateral breasts and nipples|Acquired absence of bilateral breasts and nipples +C2911439|T033|PT|Z90.13|ICD10CM|Acquired absence of bilateral breasts and nipples|Acquired absence of bilateral breasts and nipples +C0476703|T033|PT|Z90.2|ICD10|Acquired absence of lung [part of]|Acquired absence of lung [part of] +C0476703|T033|PT|Z90.2|ICD10CM|Acquired absence of lung [part of]|Acquired absence of lung [part of] +C0476703|T033|AB|Z90.2|ICD10CM|Acquired absence of lung [part of]|Acquired absence of lung [part of] +C0476704|T033|PT|Z90.3|ICD10|Acquired absence of part of stomach|Acquired absence of part of stomach +C0476704|T033|AB|Z90.3|ICD10CM|Acquired absence of stomach [part of]|Acquired absence of stomach [part of] +C0476704|T033|PT|Z90.3|ICD10CM|Acquired absence of stomach [part of]|Acquired absence of stomach [part of] +C0478637|T033|PT|Z90.4|ICD10|Acquired absence of other parts of digestive tract|Acquired absence of other parts of digestive tract +C2977669|T033|HT|Z90.4|ICD10CM|Acquired absence of other specified parts of digestive tract|Acquired absence of other specified parts of digestive tract +C2977669|T033|AB|Z90.4|ICD10CM|Acquired absence of other specified parts of digestive tract|Acquired absence of other specified parts of digestive tract +C1386808|T020|AB|Z90.41|ICD10CM|Acquired absence of pancreas|Acquired absence of pancreas +C1386808|T020|HT|Z90.41|ICD10CM|Acquired absence of pancreas|Acquired absence of pancreas +C1386808|T020|ET|Z90.410|ICD10CM|Acquired absence of pancreas NOS|Acquired absence of pancreas NOS +C2921317|T033|AB|Z90.410|ICD10CM|Acquired total absence of pancreas|Acquired total absence of pancreas +C2921317|T033|PT|Z90.410|ICD10CM|Acquired total absence of pancreas|Acquired total absence of pancreas +C2921318|T033|AB|Z90.411|ICD10CM|Acquired partial absence of pancreas|Acquired partial absence of pancreas +C2921318|T033|PT|Z90.411|ICD10CM|Acquired partial absence of pancreas|Acquired partial absence of pancreas +C2977669|T033|PT|Z90.49|ICD10CM|Acquired absence of other specified parts of digestive tract|Acquired absence of other specified parts of digestive tract +C2977669|T033|AB|Z90.49|ICD10CM|Acquired absence of other specified parts of digestive tract|Acquired absence of other specified parts of digestive tract +C0476705|T033|PT|Z90.5|ICD10|Acquired absence of kidney|Acquired absence of kidney +C0476705|T033|PT|Z90.5|ICD10CM|Acquired absence of kidney|Acquired absence of kidney +C0476705|T033|AB|Z90.5|ICD10CM|Acquired absence of kidney|Acquired absence of kidney +C0878800|T020|ET|Z90.6|ICD10CM|Acquired absence of bladder|Acquired absence of bladder +C0478638|T033|PT|Z90.6|ICD10|Acquired absence of other organs of urinary tract|Acquired absence of other organs of urinary tract +C0878725|T033|AB|Z90.6|ICD10CM|Acquired absence of other parts of urinary tract|Acquired absence of other parts of urinary tract +C0878725|T033|PT|Z90.6|ICD10CM|Acquired absence of other parts of urinary tract|Acquired absence of other parts of urinary tract +C0476706|T033|PT|Z90.7|ICD10|Acquired absence of genital organ(s)|Acquired absence of genital organ(s) +C0476706|T033|HT|Z90.7|ICD10CM|Acquired absence of genital organ(s)|Acquired absence of genital organ(s) +C0476706|T033|AB|Z90.7|ICD10CM|Acquired absence of genital organ(s)|Acquired absence of genital organ(s) +C2349925|T020|HT|Z90.71|ICD10CM|Acquired absence of cervix and uterus|Acquired absence of cervix and uterus +C2349925|T020|AB|Z90.71|ICD10CM|Acquired absence of cervix and uterus|Acquired absence of cervix and uterus +C2349919|T033|AB|Z90.710|ICD10CM|Acquired absence of both cervix and uterus|Acquired absence of both cervix and uterus +C2349919|T033|PT|Z90.710|ICD10CM|Acquired absence of both cervix and uterus|Acquired absence of both cervix and uterus +C2349920|T033|ET|Z90.710|ICD10CM|Acquired absence of uterus NOS|Acquired absence of uterus NOS +C2349921|T033|ET|Z90.710|ICD10CM|Status post total hysterectomy|Status post total hysterectomy +C2349922|T033|AB|Z90.711|ICD10CM|Acquired absence of uterus with remaining cervical stump|Acquired absence of uterus with remaining cervical stump +C2349922|T033|PT|Z90.711|ICD10CM|Acquired absence of uterus with remaining cervical stump|Acquired absence of uterus with remaining cervical stump +C2349923|T033|ET|Z90.711|ICD10CM|Status post partial hysterectomy with remaining cervical stump|Status post partial hysterectomy with remaining cervical stump +C2349924|T033|AB|Z90.712|ICD10CM|Acquired absence of cervix with remaining uterus|Acquired absence of cervix with remaining uterus +C2349924|T033|PT|Z90.712|ICD10CM|Acquired absence of cervix with remaining uterus|Acquired absence of cervix with remaining uterus +C0554378|T020|AB|Z90.72|ICD10CM|Acquired absence of ovaries|Acquired absence of ovaries +C0554378|T020|HT|Z90.72|ICD10CM|Acquired absence of ovaries|Acquired absence of ovaries +C2911441|T033|AB|Z90.721|ICD10CM|Acquired absence of ovaries, unilateral|Acquired absence of ovaries, unilateral +C2911441|T033|PT|Z90.721|ICD10CM|Acquired absence of ovaries, unilateral|Acquired absence of ovaries, unilateral +C2911442|T020|AB|Z90.722|ICD10CM|Acquired absence of ovaries, bilateral|Acquired absence of ovaries, bilateral +C2911442|T020|PT|Z90.722|ICD10CM|Acquired absence of ovaries, bilateral|Acquired absence of ovaries, bilateral +C2911443|T033|AB|Z90.79|ICD10CM|Acquired absence of other genital organ(s)|Acquired absence of other genital organ(s) +C2911443|T033|PT|Z90.79|ICD10CM|Acquired absence of other genital organ(s)|Acquired absence of other genital organ(s) +C0478639|T033|HT|Z90.8|ICD10CM|Acquired absence of other organs|Acquired absence of other organs +C0478639|T033|AB|Z90.8|ICD10CM|Acquired absence of other organs|Acquired absence of other organs +C0478639|T033|PT|Z90.8|ICD10|Acquired absence of other organs|Acquired absence of other organs +C2919074|T033|AB|Z90.81|ICD10CM|Acquired absence of spleen|Acquired absence of spleen +C2919074|T033|PT|Z90.81|ICD10CM|Acquired absence of spleen|Acquired absence of spleen +C0478639|T033|PT|Z90.89|ICD10CM|Acquired absence of other organs|Acquired absence of other organs +C0478639|T033|AB|Z90.89|ICD10CM|Acquired absence of other organs|Acquired absence of other organs +C0496734|T033|HT|Z91|ICD10|Personal history of risk-factors, not elsewhere classified|Personal history of risk-factors, not elsewhere classified +C2911444|T033|AB|Z91|ICD10CM|Personal risk factors, not elsewhere classified|Personal risk factors, not elsewhere classified +C2911444|T033|HT|Z91|ICD10CM|Personal risk factors, not elsewhere classified|Personal risk factors, not elsewhere classified +C2911445|T033|AB|Z91.0|ICD10CM|Allergy status, oth than to drugs and biological substances|Allergy status, oth than to drugs and biological substances +C2911445|T033|HT|Z91.0|ICD10CM|Allergy status, other than to drugs and biological substances|Allergy status, other than to drugs and biological substances +C0478640|T033|PT|Z91.0|ICD10|Personal history of allergy, other than to drugs and biological substances|Personal history of allergy, other than to drugs and biological substances +C2911446|T033|AB|Z91.01|ICD10CM|Food allergy status|Food allergy status +C2911446|T033|HT|Z91.01|ICD10CM|Food allergy status|Food allergy status +C0917918|T033|AB|Z91.010|ICD10CM|Allergy to peanuts|Allergy to peanuts +C0917918|T033|PT|Z91.010|ICD10CM|Allergy to peanuts|Allergy to peanuts +C0878710|T033|AB|Z91.011|ICD10CM|Allergy to milk products|Allergy to milk products +C0878710|T033|PT|Z91.011|ICD10CM|Allergy to milk products|Allergy to milk products +C0917919|T033|AB|Z91.012|ICD10CM|Allergy to eggs|Allergy to eggs +C0917919|T033|PT|Z91.012|ICD10CM|Allergy to eggs|Allergy to eggs +C2911447|T033|ET|Z91.013|ICD10CM|Allergy to octopus or squid ink|Allergy to octopus or squid ink +C0917920|T033|AB|Z91.013|ICD10CM|Allergy to seafood|Allergy to seafood +C0917920|T033|PT|Z91.013|ICD10CM|Allergy to seafood|Allergy to seafood +C0878789|T033|ET|Z91.013|ICD10CM|Allergy to shellfish|Allergy to shellfish +C2919081|T033|ET|Z91.018|ICD10CM|Allergy to nuts other than peanuts|Allergy to nuts other than peanuts +C0878711|T033|AB|Z91.018|ICD10CM|Allergy to other foods|Allergy to other foods +C0878711|T033|PT|Z91.018|ICD10CM|Allergy to other foods|Allergy to other foods +C2911448|T033|AB|Z91.02|ICD10CM|Food additives allergy status|Food additives allergy status +C2911448|T033|PT|Z91.02|ICD10CM|Food additives allergy status|Food additives allergy status +C2911449|T033|AB|Z91.03|ICD10CM|Insect allergy status|Insect allergy status +C2911449|T033|HT|Z91.03|ICD10CM|Insect allergy status|Insect allergy status +C2911450|T033|AB|Z91.030|ICD10CM|Bee allergy status|Bee allergy status +C2911450|T033|PT|Z91.030|ICD10CM|Bee allergy status|Bee allergy status +C2911451|T033|AB|Z91.038|ICD10CM|Other insect allergy status|Other insect allergy status +C2911451|T033|PT|Z91.038|ICD10CM|Other insect allergy status|Other insect allergy status +C2911452|T033|AB|Z91.04|ICD10CM|Nonmedicinal substance allergy status|Nonmedicinal substance allergy status +C2911452|T033|HT|Z91.04|ICD10CM|Nonmedicinal substance allergy status|Nonmedicinal substance allergy status +C2911454|T033|AB|Z91.040|ICD10CM|Latex allergy status|Latex allergy status +C2911454|T033|PT|Z91.040|ICD10CM|Latex allergy status|Latex allergy status +C2911453|T033|ET|Z91.040|ICD10CM|Latex sensitivity status|Latex sensitivity status +C2911455|T033|ET|Z91.041|ICD10CM|Allergy status to contrast media used for diagnostic X-ray procedure|Allergy status to contrast media used for diagnostic X-ray procedure +C2911456|T033|AB|Z91.041|ICD10CM|Radiographic dye allergy status|Radiographic dye allergy status +C2911456|T033|PT|Z91.041|ICD10CM|Radiographic dye allergy status|Radiographic dye allergy status +C2911457|T033|AB|Z91.048|ICD10CM|Other nonmedicinal substance allergy status|Other nonmedicinal substance allergy status +C2911457|T033|PT|Z91.048|ICD10CM|Other nonmedicinal substance allergy status|Other nonmedicinal substance allergy status +C2911458|T033|AB|Z91.09|ICD10CM|Oth allergy status, oth than to drugs and biolg substances|Oth allergy status, oth than to drugs and biolg substances +C2911458|T033|PT|Z91.09|ICD10CM|Other allergy status, other than to drugs and biological substances|Other allergy status, other than to drugs and biological substances +C2911459|T033|AB|Z91.1|ICD10CM|Patient's noncompliance with medical treatment and regimen|Patient's noncompliance with medical treatment and regimen +C2911459|T033|HT|Z91.1|ICD10CM|Patient's noncompliance with medical treatment and regimen|Patient's noncompliance with medical treatment and regimen +C0496735|T033|PT|Z91.1|ICD10|Personal history of noncompliance with medical treatment and regimen|Personal history of noncompliance with medical treatment and regimen +C2911460|T033|AB|Z91.11|ICD10CM|Patient's noncompliance with dietary regimen|Patient's noncompliance with dietary regimen +C2911460|T033|PT|Z91.11|ICD10CM|Patient's noncompliance with dietary regimen|Patient's noncompliance with dietary regimen +C2911461|T033|AB|Z91.12|ICD10CM|Patient's intentional underdosing of medication regimen|Patient's intentional underdosing of medication regimen +C2911461|T033|HT|Z91.12|ICD10CM|Patient's intentional underdosing of medication regimen|Patient's intentional underdosing of medication regimen +C2911462|T033|PT|Z91.120|ICD10CM|Patient's intentional underdosing of medication regimen due to financial hardship|Patient's intentional underdosing of medication regimen due to financial hardship +C2911462|T033|AB|Z91.120|ICD10CM|Pt intentl undrdose of meds regimen due to financl hardship|Pt intentl undrdose of meds regimen due to financl hardship +C2911463|T033|PT|Z91.128|ICD10CM|Patient's intentional underdosing of medication regimen for other reason|Patient's intentional underdosing of medication regimen for other reason +C2911463|T033|AB|Z91.128|ICD10CM|Patient's intentl undrdose of meds regimen for oth reason|Patient's intentl undrdose of meds regimen for oth reason +C2911464|T033|AB|Z91.13|ICD10CM|Patient's unintentional underdosing of medication regimen|Patient's unintentional underdosing of medication regimen +C2911464|T033|HT|Z91.13|ICD10CM|Patient's unintentional underdosing of medication regimen|Patient's unintentional underdosing of medication regimen +C2911465|T033|PT|Z91.130|ICD10CM|Patient's unintentional underdosing of medication regimen due to age-related debility|Patient's unintentional underdosing of medication regimen due to age-related debility +C2911465|T033|AB|Z91.130|ICD10CM|Pt unintent undrdose of meds regimen due to age-rel debility|Pt unintent undrdose of meds regimen due to age-rel debility +C2911466|T033|AB|Z91.138|ICD10CM|Patient's unintent undrdose of meds regimen for oth reason|Patient's unintent undrdose of meds regimen for oth reason +C2911466|T033|PT|Z91.138|ICD10CM|Patient's unintentional underdosing of medication regimen for other reason|Patient's unintentional underdosing of medication regimen for other reason +C2911468|T033|AB|Z91.14|ICD10CM|Patient's other noncompliance with medication regimen|Patient's other noncompliance with medication regimen +C2911468|T033|PT|Z91.14|ICD10CM|Patient's other noncompliance with medication regimen|Patient's other noncompliance with medication regimen +C2911467|T033|ET|Z91.14|ICD10CM|Patient's underdosing of medication NOS|Patient's underdosing of medication NOS +C2349872|T033|AB|Z91.15|ICD10CM|Patient's noncompliance with renal dialysis|Patient's noncompliance with renal dialysis +C2349872|T033|PT|Z91.15|ICD10CM|Patient's noncompliance with renal dialysis|Patient's noncompliance with renal dialysis +C4237226|T033|ET|Z91.19|ICD10CM|Nonadherence to medical treatment|Nonadherence to medical treatment +C2911470|T033|AB|Z91.19|ICD10CM|Patient's noncompliance w oth medical treatment and regimen|Patient's noncompliance w oth medical treatment and regimen +C2911470|T033|PT|Z91.19|ICD10CM|Patient's noncompliance with other medical treatment and regimen|Patient's noncompliance with other medical treatment and regimen +C0476564|T033|PT|Z91.2|ICD10|Personal history of poor personal hygiene|Personal history of poor personal hygiene +C0476565|T033|PT|Z91.3|ICD10|Personal history of unhealthy sleep-wake schedule|Personal history of unhealthy sleep-wake schedule +C0496736|T033|AB|Z91.4|ICD10CM|Personal history of psychological trauma, NEC|Personal history of psychological trauma, NEC +C0496736|T033|HT|Z91.4|ICD10CM|Personal history of psychological trauma, not elsewhere classified|Personal history of psychological trauma, not elsewhere classified +C0496736|T033|PT|Z91.4|ICD10|Personal history of psychological trauma, not elsewhere classified|Personal history of psychological trauma, not elsewhere classified +C2911471|T033|AB|Z91.41|ICD10CM|Personal history of adult abuse|Personal history of adult abuse +C2911471|T033|HT|Z91.41|ICD10CM|Personal history of adult abuse|Personal history of adult abuse +C2911472|T033|AB|Z91.410|ICD10CM|Personal history of adult physical and sexual abuse|Personal history of adult physical and sexual abuse +C2911472|T033|PT|Z91.410|ICD10CM|Personal history of adult physical and sexual abuse|Personal history of adult physical and sexual abuse +C2911473|T033|AB|Z91.411|ICD10CM|Personal history of adult psychological abuse|Personal history of adult psychological abuse +C2911473|T033|PT|Z91.411|ICD10CM|Personal history of adult psychological abuse|Personal history of adult psychological abuse +C2911474|T033|AB|Z91.412|ICD10CM|Personal history of adult neglect|Personal history of adult neglect +C2911474|T033|PT|Z91.412|ICD10CM|Personal history of adult neglect|Personal history of adult neglect +C2911475|T033|AB|Z91.419|ICD10CM|Personal history of unspecified adult abuse|Personal history of unspecified adult abuse +C2911475|T033|PT|Z91.419|ICD10CM|Personal history of unspecified adult abuse|Personal history of unspecified adult abuse +C4553606|T033|AB|Z91.42|ICD10CM|Personal history of forced labor or sexual exploitation|Personal history of forced labor or sexual exploitation +C4553606|T033|PT|Z91.42|ICD10CM|Personal history of forced labor or sexual exploitation|Personal history of forced labor or sexual exploitation +C2911476|T033|AB|Z91.49|ICD10CM|Oth personal history of psychological trauma, NEC|Oth personal history of psychological trauma, NEC +C2911476|T033|PT|Z91.49|ICD10CM|Other personal history of psychological trauma, not elsewhere classified|Other personal history of psychological trauma, not elsewhere classified +C2911477|T033|ET|Z91.5|ICD10CM|Personal history of parasuicide|Personal history of parasuicide +C0476566|T033|PT|Z91.5|ICD10|Personal history of self-harm|Personal history of self-harm +C0476566|T033|PT|Z91.5|ICD10CM|Personal history of self-harm|Personal history of self-harm +C0476566|T033|AB|Z91.5|ICD10CM|Personal history of self-harm|Personal history of self-harm +C2911478|T033|ET|Z91.5|ICD10CM|Personal history of self-poisoning|Personal history of self-poisoning +C2911479|T033|ET|Z91.5|ICD10CM|Personal history of suicide attempt|Personal history of suicide attempt +C0478641|T033|PT|Z91.6|ICD10|Personal history of other physical trauma|Personal history of other physical trauma +C2911480|T033|AB|Z91.8|ICD10CM|Oth personal risk factors, not elsewhere classified|Oth personal risk factors, not elsewhere classified +C2911480|T033|HT|Z91.8|ICD10CM|Other specified personal risk factors, not elsewhere classified|Other specified personal risk factors, not elsewhere classified +C0869119|T033|PT|Z91.8|ICD10|Personal history of other specified risk-factors, not elsewhere classified|Personal history of other specified risk-factors, not elsewhere classified +C1268740|T033|ET|Z91.81|ICD10CM|At risk for falling|At risk for falling +C2919132|T033|AB|Z91.81|ICD10CM|History of falling|History of falling +C2919132|T033|PT|Z91.81|ICD10CM|History of falling|History of falling +C2911482|T033|AB|Z91.82|ICD10CM|Personal history of military deployment|Personal history of military deployment +C2911482|T033|PT|Z91.82|ICD10CM|Personal history of military deployment|Personal history of military deployment +C2911481|T033|ET|Z91.82|ICD10CM|Returned from military deployment|Returned from military deployment +C3161151|T033|PT|Z91.83|ICD10CM|Wandering in diseases classified elsewhere|Wandering in diseases classified elsewhere +C3161151|T033|AB|Z91.83|ICD10CM|Wandering in diseases classified elsewhere|Wandering in diseases classified elsewhere +C4509580|T033|AB|Z91.84|ICD10CM|Oral health risk factors|Oral health risk factors +C4509580|T033|HT|Z91.84|ICD10CM|Oral health risk factors|Oral health risk factors +C4509592|T033|AB|Z91.841|ICD10CM|Risk for dental caries, low|Risk for dental caries, low +C4509592|T033|PT|Z91.841|ICD10CM|Risk for dental caries, low|Risk for dental caries, low +C4509581|T033|AB|Z91.842|ICD10CM|Risk for dental caries, moderate|Risk for dental caries, moderate +C4509581|T033|PT|Z91.842|ICD10CM|Risk for dental caries, moderate|Risk for dental caries, moderate +C4509582|T033|AB|Z91.843|ICD10CM|Risk for dental caries, high|Risk for dental caries, high +C4509582|T033|PT|Z91.843|ICD10CM|Risk for dental caries, high|Risk for dental caries, high +C4509583|T033|AB|Z91.849|ICD10CM|Unspecified risk for dental caries|Unspecified risk for dental caries +C4509583|T033|PT|Z91.849|ICD10CM|Unspecified risk for dental caries|Unspecified risk for dental caries +C2911480|T033|AB|Z91.89|ICD10CM|Oth personal risk factors, not elsewhere classified|Oth personal risk factors, not elsewhere classified +C2911480|T033|PT|Z91.89|ICD10CM|Other specified personal risk factors, not elsewhere classified|Other specified personal risk factors, not elsewhere classified +C0476567|T033|HT|Z92|ICD10|Personal history of medical treatment|Personal history of medical treatment +C0476567|T033|HT|Z92|ICD10CM|Personal history of medical treatment|Personal history of medical treatment +C0476567|T033|AB|Z92|ICD10CM|Personal history of medical treatment|Personal history of medical treatment +C0481624|T033|PT|Z92.0|ICD10|Personal history of contraception|Personal history of contraception +C0481624|T033|PT|Z92.0|ICD10CM|Personal history of contraception|Personal history of contraception +C0481624|T033|AB|Z92.0|ICD10CM|Personal history of contraception|Personal history of contraception +C0476568|T033|PT|Z92.1|ICD10|Personal history of long-term (current) use of anticoagulants|Personal history of long-term (current) use of anticoagulants +C2349916|T033|AB|Z92.2|ICD10CM|Personal history of drug therapy|Personal history of drug therapy +C2349916|T033|HT|Z92.2|ICD10CM|Personal history of drug therapy|Personal history of drug therapy +C0478643|T033|PT|Z92.2|ICD10|Personal history of long-term (current) use of other medicaments|Personal history of long-term (current) use of other medicaments +C2349913|T033|AB|Z92.21|ICD10CM|Personal history of antineoplastic chemotherapy|Personal history of antineoplastic chemotherapy +C2349913|T033|PT|Z92.21|ICD10CM|Personal history of antineoplastic chemotherapy|Personal history of antineoplastic chemotherapy +C2349914|T033|AB|Z92.22|ICD10CM|Personal history of monoclonal drug therapy|Personal history of monoclonal drug therapy +C2349914|T033|PT|Z92.22|ICD10CM|Personal history of monoclonal drug therapy|Personal history of monoclonal drug therapy +C2712566|T033|AB|Z92.23|ICD10CM|Personal history of estrogen therapy|Personal history of estrogen therapy +C2712566|T033|PT|Z92.23|ICD10CM|Personal history of estrogen therapy|Personal history of estrogen therapy +C2712644|T033|AB|Z92.24|ICD10CM|Personal history of steroid therapy|Personal history of steroid therapy +C2712644|T033|HT|Z92.24|ICD10CM|Personal history of steroid therapy|Personal history of steroid therapy +C2712567|T033|AB|Z92.240|ICD10CM|Personal history of inhaled steroid therapy|Personal history of inhaled steroid therapy +C2712567|T033|PT|Z92.240|ICD10CM|Personal history of inhaled steroid therapy|Personal history of inhaled steroid therapy +C2712644|T033|ET|Z92.241|ICD10CM|Personal history of steroid therapy NOS|Personal history of steroid therapy NOS +C2712644|T033|AB|Z92.241|ICD10CM|Personal history of systemic steroid therapy|Personal history of systemic steroid therapy +C2712644|T033|PT|Z92.241|ICD10CM|Personal history of systemic steroid therapy|Personal history of systemic steroid therapy +C2911483|T033|AB|Z92.25|ICD10CM|Personal history of immunosupression therapy|Personal history of immunosupression therapy +C2911483|T033|PT|Z92.25|ICD10CM|Personal history of immunosupression therapy|Personal history of immunosupression therapy +C2349915|T033|AB|Z92.29|ICD10CM|Personal history of other drug therapy|Personal history of other drug therapy +C2349915|T033|PT|Z92.29|ICD10CM|Personal history of other drug therapy|Personal history of other drug therapy +C2911484|T033|ET|Z92.3|ICD10CM|Personal history of exposure to therapeutic radiation|Personal history of exposure to therapeutic radiation +C0481620|T033|PT|Z92.3|ICD10|Personal history of irradiation|Personal history of irradiation +C0481620|T033|PT|Z92.3|ICD10CM|Personal history of irradiation|Personal history of irradiation +C0481620|T033|AB|Z92.3|ICD10CM|Personal history of irradiation|Personal history of irradiation +C0869120|T033|PT|Z92.4|ICD10|Personal history of major surgery, not elsewhere classified|Personal history of major surgery, not elsewhere classified +C0476569|T033|PT|Z92.5|ICD10|Personal history of rehabilitation measures|Personal history of rehabilitation measures +C0478645|T033|PT|Z92.8|ICD10|Personal history of other medical treatment|Personal history of other medical treatment +C0478645|T033|HT|Z92.8|ICD10CM|Personal history of other medical treatment|Personal history of other medical treatment +C0478645|T033|AB|Z92.8|ICD10CM|Personal history of other medical treatment|Personal history of other medical treatment +C2911485|T033|PT|Z92.81|ICD10CM|Personal history of extracorporeal membrane oxygenation (ECMO)|Personal history of extracorporeal membrane oxygenation (ECMO) +C2911485|T033|AB|Z92.81|ICD10CM|Prsnl history of extracorporeal membrane oxygenation (ECMO)|Prsnl history of extracorporeal membrane oxygenation (ECMO) +C2349876|T033|AB|Z92.82|ICD10CM|S/p admn tPA in diff fac w/n last 24 hr bef adm to crnt fac|S/p admn tPA in diff fac w/n last 24 hr bef adm to crnt fac +C2911486|T033|ET|Z92.83|ICD10CM|Personal history of failed conscious sedation|Personal history of failed conscious sedation +C2712540|T033|AB|Z92.83|ICD10CM|Personal history of failed moderate sedation|Personal history of failed moderate sedation +C2712540|T033|PT|Z92.83|ICD10CM|Personal history of failed moderate sedation|Personal history of failed moderate sedation +C4270799|T033|AB|Z92.84|ICD10CM|Pers hx of unintended awareness under general anesthesia|Pers hx of unintended awareness under general anesthesia +C4270799|T033|PT|Z92.84|ICD10CM|Personal history of unintended awareness under general anesthesia|Personal history of unintended awareness under general anesthesia +C0478645|T033|PT|Z92.89|ICD10CM|Personal history of other medical treatment|Personal history of other medical treatment +C0478645|T033|AB|Z92.89|ICD10CM|Personal history of other medical treatment|Personal history of other medical treatment +C0476567|T033|PT|Z92.9|ICD10|Personal history of medical treatment, unspecified|Personal history of medical treatment, unspecified +C0260691|T033|HT|Z93|ICD10|Artificial opening status|Artificial opening status +C0260691|T033|AB|Z93|ICD10CM|Artificial opening status|Artificial opening status +C0260691|T033|HT|Z93|ICD10CM|Artificial opening status|Artificial opening status +C0260682|T033|PT|Z93.0|ICD10CM|Tracheostomy status|Tracheostomy status +C0260682|T033|AB|Z93.0|ICD10CM|Tracheostomy status|Tracheostomy status +C0260682|T033|PT|Z93.0|ICD10|Tracheostomy status|Tracheostomy status +C0260683|T033|PT|Z93.1|ICD10|Gastrostomy status|Gastrostomy status +C0260683|T033|PT|Z93.1|ICD10CM|Gastrostomy status|Gastrostomy status +C0260683|T033|AB|Z93.1|ICD10CM|Gastrostomy status|Gastrostomy status +C0260684|T033|PT|Z93.2|ICD10CM|Ileostomy status|Ileostomy status +C0260684|T033|AB|Z93.2|ICD10CM|Ileostomy status|Ileostomy status +C0260684|T033|PT|Z93.2|ICD10|Ileostomy status|Ileostomy status +C0260685|T033|PT|Z93.3|ICD10|Colostomy status|Colostomy status +C0260685|T033|PT|Z93.3|ICD10CM|Colostomy status|Colostomy status +C0260685|T033|AB|Z93.3|ICD10CM|Colostomy status|Colostomy status +C0260686|T033|PT|Z93.4|ICD10CM|Other artificial openings of gastrointestinal tract status|Other artificial openings of gastrointestinal tract status +C0260686|T033|AB|Z93.4|ICD10CM|Other artificial openings of gastrointestinal tract status|Other artificial openings of gastrointestinal tract status +C0260686|T033|PT|Z93.4|ICD10|Other artificial openings of gastrointestinal tract status|Other artificial openings of gastrointestinal tract status +C0260687|T033|PT|Z93.5|ICD10|Cystostomy status|Cystostomy status +C0260687|T033|HT|Z93.5|ICD10CM|Cystostomy status|Cystostomy status +C0260687|T033|AB|Z93.5|ICD10CM|Cystostomy status|Cystostomy status +C2911488|T033|AB|Z93.50|ICD10CM|Unspecified cystostomy status|Unspecified cystostomy status +C2911488|T033|PT|Z93.50|ICD10CM|Unspecified cystostomy status|Unspecified cystostomy status +C2911489|T033|PT|Z93.51|ICD10CM|Cutaneous-vesicostomy status|Cutaneous-vesicostomy status +C2911489|T033|AB|Z93.51|ICD10CM|Cutaneous-vesicostomy status|Cutaneous-vesicostomy status +C2911490|T033|PT|Z93.52|ICD10CM|Appendico-vesicostomy status|Appendico-vesicostomy status +C2911490|T033|AB|Z93.52|ICD10CM|Appendico-vesicostomy status|Appendico-vesicostomy status +C2911491|T033|AB|Z93.59|ICD10CM|Other cystostomy status|Other cystostomy status +C2911491|T033|PT|Z93.59|ICD10CM|Other cystostomy status|Other cystostomy status +C0868574|T033|ET|Z93.6|ICD10CM|Nephrostomy status|Nephrostomy status +C0260688|T033|PT|Z93.6|ICD10CM|Other artificial openings of urinary tract status|Other artificial openings of urinary tract status +C0260688|T033|AB|Z93.6|ICD10CM|Other artificial openings of urinary tract status|Other artificial openings of urinary tract status +C0260688|T033|PT|Z93.6|ICD10|Other artificial openings of urinary tract status|Other artificial openings of urinary tract status +C0868575|T033|ET|Z93.6|ICD10CM|Ureterostomy status|Ureterostomy status +C0868576|T033|ET|Z93.6|ICD10CM|Urethrostomy status|Urethrostomy status +C0260690|T033|PT|Z93.8|ICD10|Other artificial opening status|Other artificial opening status +C0260690|T033|PT|Z93.8|ICD10CM|Other artificial opening status|Other artificial opening status +C0260690|T033|AB|Z93.8|ICD10CM|Other artificial opening status|Other artificial opening status +C0260691|T033|PT|Z93.9|ICD10CM|Artificial opening status, unspecified|Artificial opening status, unspecified +C0260691|T033|AB|Z93.9|ICD10CM|Artificial opening status, unspecified|Artificial opening status, unspecified +C0260691|T033|PT|Z93.9|ICD10|Artificial opening status, unspecified|Artificial opening status, unspecified +C4290528|T033|ET|Z94|ICD10CM|organ or tissue replaced by heterogenous or homogenous transplant|organ or tissue replaced by heterogenous or homogenous transplant +C0478647|T033|HT|Z94|ICD10CM|Transplanted organ and tissue status|Transplanted organ and tissue status +C0478647|T033|AB|Z94|ICD10CM|Transplanted organ and tissue status|Transplanted organ and tissue status +C0478647|T033|HT|Z94|ICD10|Transplanted organ and tissue status|Transplanted organ and tissue status +C0392096|T033|PT|Z94.0|ICD10|Kidney transplant status|Kidney transplant status +C0392096|T033|PT|Z94.0|ICD10CM|Kidney transplant status|Kidney transplant status +C0392096|T033|AB|Z94.0|ICD10CM|Kidney transplant status|Kidney transplant status +C0392095|T033|PT|Z94.1|ICD10CM|Heart transplant status|Heart transplant status +C0392095|T033|AB|Z94.1|ICD10CM|Heart transplant status|Heart transplant status +C0392095|T033|PT|Z94.1|ICD10|Heart transplant status|Heart transplant status +C0392098|T033|PT|Z94.2|ICD10|Lung transplant status|Lung transplant status +C0392098|T033|PT|Z94.2|ICD10CM|Lung transplant status|Lung transplant status +C0392098|T033|AB|Z94.2|ICD10CM|Lung transplant status|Lung transplant status +C0476660|T033|PT|Z94.3|ICD10CM|Heart and lungs transplant status|Heart and lungs transplant status +C0476660|T033|AB|Z94.3|ICD10CM|Heart and lungs transplant status|Heart and lungs transplant status +C0476660|T033|PT|Z94.3|ICD10|Heart and lungs transplant status|Heart and lungs transplant status +C0392097|T033|PT|Z94.4|ICD10|Liver transplant status|Liver transplant status +C0392097|T033|PT|Z94.4|ICD10CM|Liver transplant status|Liver transplant status +C0392097|T033|AB|Z94.4|ICD10CM|Liver transplant status|Liver transplant status +C2911493|T033|ET|Z94.5|ICD10CM|Autogenous skin transplant status|Autogenous skin transplant status +C0392099|T033|PT|Z94.5|ICD10CM|Skin transplant status|Skin transplant status +C0392099|T033|AB|Z94.5|ICD10CM|Skin transplant status|Skin transplant status +C0392099|T033|PT|Z94.5|ICD10|Skin transplant status|Skin transplant status +C0040750|T033|PT|Z94.6|ICD10CM|Bone transplant status|Bone transplant status +C0040750|T033|AB|Z94.6|ICD10CM|Bone transplant status|Bone transplant status +C0040750|T033|PT|Z94.6|ICD10|Bone transplant status|Bone transplant status +C0496737|T033|PT|Z94.7|ICD10|Corneal transplant status|Corneal transplant status +C0496737|T033|PT|Z94.7|ICD10CM|Corneal transplant status|Corneal transplant status +C0496737|T033|AB|Z94.7|ICD10CM|Corneal transplant status|Corneal transplant status +C0478646|T033|HT|Z94.8|ICD10CM|Other transplanted organ and tissue status|Other transplanted organ and tissue status +C0478646|T033|AB|Z94.8|ICD10CM|Other transplanted organ and tissue status|Other transplanted organ and tissue status +C0478646|T033|PT|Z94.8|ICD10|Other transplanted organ and tissue status|Other transplanted organ and tissue status +C2911494|T033|AB|Z94.81|ICD10CM|Bone marrow transplant status|Bone marrow transplant status +C2911494|T033|PT|Z94.81|ICD10CM|Bone marrow transplant status|Bone marrow transplant status +C2911495|T033|PT|Z94.82|ICD10CM|Intestine transplant status|Intestine transplant status +C2911495|T033|AB|Z94.82|ICD10CM|Intestine transplant status|Intestine transplant status +C2911496|T033|PT|Z94.83|ICD10CM|Pancreas transplant status|Pancreas transplant status +C2911496|T033|AB|Z94.83|ICD10CM|Pancreas transplant status|Pancreas transplant status +C2911497|T033|AB|Z94.84|ICD10CM|Stem cells transplant status|Stem cells transplant status +C2911497|T033|PT|Z94.84|ICD10CM|Stem cells transplant status|Stem cells transplant status +C0478646|T033|PT|Z94.89|ICD10CM|Other transplanted organ and tissue status|Other transplanted organ and tissue status +C0478646|T033|AB|Z94.89|ICD10CM|Other transplanted organ and tissue status|Other transplanted organ and tissue status +C0478647|T033|PT|Z94.9|ICD10CM|Transplanted organ and tissue status, unspecified|Transplanted organ and tissue status, unspecified +C0478647|T033|AB|Z94.9|ICD10CM|Transplanted organ and tissue status, unspecified|Transplanted organ and tissue status, unspecified +C0478647|T033|PT|Z94.9|ICD10|Transplanted organ and tissue status, unspecified|Transplanted organ and tissue status, unspecified +C0496738|T033|HT|Z95|ICD10|Presence of cardiac and vascular implants and grafts|Presence of cardiac and vascular implants and grafts +C0496738|T033|AB|Z95|ICD10CM|Presence of cardiac and vascular implants and grafts|Presence of cardiac and vascular implants and grafts +C0496738|T033|HT|Z95|ICD10CM|Presence of cardiac and vascular implants and grafts|Presence of cardiac and vascular implants and grafts +C2240369|T033|PT|Z95.0|ICD10|Presence of cardiac pacemaker|Presence of cardiac pacemaker +C2240369|T033|PT|Z95.0|ICD10CM|Presence of cardiac pacemaker|Presence of cardiac pacemaker +C2240369|T033|AB|Z95.0|ICD10CM|Presence of cardiac pacemaker|Presence of cardiac pacemaker +C4270800|T033|ET|Z95.0|ICD10CM|Presence of cardiac resynchronization therapy (CRT-P) pacemaker|Presence of cardiac resynchronization therapy (CRT-P) pacemaker +C0476573|T033|PT|Z95.1|ICD10CM|Presence of aortocoronary bypass graft|Presence of aortocoronary bypass graft +C0476573|T033|AB|Z95.1|ICD10CM|Presence of aortocoronary bypass graft|Presence of aortocoronary bypass graft +C0476573|T033|PT|Z95.1|ICD10|Presence of aortocoronary bypass graft|Presence of aortocoronary bypass graft +C0585628|T033|ET|Z95.1|ICD10CM|Presence of coronary artery bypass graft|Presence of coronary artery bypass graft +C2911498|T033|ET|Z95.2|ICD10CM|Presence of heart valve NOS|Presence of heart valve NOS +C0478678|T033|PT|Z95.2|ICD10CM|Presence of prosthetic heart valve|Presence of prosthetic heart valve +C0478678|T033|AB|Z95.2|ICD10CM|Presence of prosthetic heart valve|Presence of prosthetic heart valve +C0478678|T033|PT|Z95.2|ICD10|Presence of prosthetic heart valve|Presence of prosthetic heart valve +C0496740|T033|PT|Z95.3|ICD10|Presence of xenogenic heart valve|Presence of xenogenic heart valve +C0496740|T033|PT|Z95.3|ICD10CM|Presence of xenogenic heart valve|Presence of xenogenic heart valve +C0496740|T033|AB|Z95.3|ICD10CM|Presence of xenogenic heart valve|Presence of xenogenic heart valve +C0478648|T033|PT|Z95.4|ICD10CM|Presence of other heart-valve replacement|Presence of other heart-valve replacement +C0478648|T033|AB|Z95.4|ICD10CM|Presence of other heart-valve replacement|Presence of other heart-valve replacement +C0478648|T033|PT|Z95.4|ICD10|Presence of other heart-valve replacement|Presence of other heart-valve replacement +C0476574|T033|PT|Z95.5|ICD10|Presence of coronary angioplasty implant and graft|Presence of coronary angioplasty implant and graft +C0476574|T033|PT|Z95.5|ICD10CM|Presence of coronary angioplasty implant and graft|Presence of coronary angioplasty implant and graft +C0476574|T033|AB|Z95.5|ICD10CM|Presence of coronary angioplasty implant and graft|Presence of coronary angioplasty implant and graft +C0478649|T033|PT|Z95.8|ICD10|Presence of other cardiac and vascular implants and grafts|Presence of other cardiac and vascular implants and grafts +C0478649|T033|HT|Z95.8|ICD10CM|Presence of other cardiac and vascular implants and grafts|Presence of other cardiac and vascular implants and grafts +C0478649|T033|AB|Z95.8|ICD10CM|Presence of other cardiac and vascular implants and grafts|Presence of other cardiac and vascular implants and grafts +C2911499|T033|HT|Z95.81|ICD10CM|Presence of other cardiac implants and grafts|Presence of other cardiac implants and grafts +C2911499|T033|AB|Z95.81|ICD10CM|Presence of other cardiac implants and grafts|Presence of other cardiac implants and grafts +C2911500|T033|AB|Z95.810|ICD10CM|Presence of automatic (implantable) cardiac defibrillator|Presence of automatic (implantable) cardiac defibrillator +C2911500|T033|PT|Z95.810|ICD10CM|Presence of automatic (implantable) cardiac defibrillator|Presence of automatic (implantable) cardiac defibrillator +C2977670|T033|ET|Z95.810|ICD10CM|Presence of automatic (implantable) cardiac defibrillator with synchronous cardiac pacemaker|Presence of automatic (implantable) cardiac defibrillator with synchronous cardiac pacemaker +C4270801|T033|ET|Z95.810|ICD10CM|Presence of cardiac resynchronization therapy defibrillator (CRT-D)|Presence of cardiac resynchronization therapy defibrillator (CRT-D) +C4270802|T033|ET|Z95.810|ICD10CM|Presence of cardioverter-defibrillator (ICD)|Presence of cardioverter-defibrillator (ICD) +C2911501|T033|AB|Z95.811|ICD10CM|Presence of heart assist device|Presence of heart assist device +C2911501|T033|PT|Z95.811|ICD10CM|Presence of heart assist device|Presence of heart assist device +C2911502|T033|AB|Z95.812|ICD10CM|Presence of fully implantable artificial heart|Presence of fully implantable artificial heart +C2911502|T033|PT|Z95.812|ICD10CM|Presence of fully implantable artificial heart|Presence of fully implantable artificial heart +C2911499|T033|AB|Z95.818|ICD10CM|Presence of other cardiac implants and grafts|Presence of other cardiac implants and grafts +C2911499|T033|PT|Z95.818|ICD10CM|Presence of other cardiac implants and grafts|Presence of other cardiac implants and grafts +C2911503|T033|HT|Z95.82|ICD10CM|Presence of other vascular implants and grafts|Presence of other vascular implants and grafts +C2911503|T033|AB|Z95.82|ICD10CM|Presence of other vascular implants and grafts|Presence of other vascular implants and grafts +C2911504|T033|AB|Z95.820|ICD10CM|Peripheral vascular angioplasty status w implants and grafts|Peripheral vascular angioplasty status w implants and grafts +C2911504|T033|PT|Z95.820|ICD10CM|Peripheral vascular angioplasty status with implants and grafts|Peripheral vascular angioplasty status with implants and grafts +C2911505|T033|ET|Z95.828|ICD10CM|Presence of intravascular prosthesis NEC|Presence of intravascular prosthesis NEC +C2911503|T033|AB|Z95.828|ICD10CM|Presence of other vascular implants and grafts|Presence of other vascular implants and grafts +C2911503|T033|PT|Z95.828|ICD10CM|Presence of other vascular implants and grafts|Presence of other vascular implants and grafts +C0478650|T033|AB|Z95.9|ICD10CM|Presence of cardiac and vascular implant and graft, unsp|Presence of cardiac and vascular implant and graft, unsp +C0478650|T033|PT|Z95.9|ICD10CM|Presence of cardiac and vascular implant and graft, unspecified|Presence of cardiac and vascular implant and graft, unspecified +C0478650|T033|PT|Z95.9|ICD10|Presence of cardiac and vascular implant and graft, unspecified|Presence of cardiac and vascular implant and graft, unspecified +C0496741|T033|HT|Z96|ICD10|Presence of other functional implants|Presence of other functional implants +C0496741|T033|AB|Z96|ICD10CM|Presence of other functional implants|Presence of other functional implants +C0496741|T033|HT|Z96|ICD10CM|Presence of other functional implants|Presence of other functional implants +C0481487|T033|PT|Z96.0|ICD10CM|Presence of urogenital implants|Presence of urogenital implants +C0481487|T033|AB|Z96.0|ICD10CM|Presence of urogenital implants|Presence of urogenital implants +C0481487|T033|PT|Z96.0|ICD10|Presence of urogenital implants|Presence of urogenital implants +C0496743|T033|PT|Z96.1|ICD10|Presence of intraocular lens|Presence of intraocular lens +C0496743|T033|PT|Z96.1|ICD10CM|Presence of intraocular lens|Presence of intraocular lens +C0496743|T033|AB|Z96.1|ICD10CM|Presence of intraocular lens|Presence of intraocular lens +C2911506|T033|ET|Z96.1|ICD10CM|Presence of pseudophakia|Presence of pseudophakia +C0476575|T033|PT|Z96.2|ICD10|Presence of otological and audiological implants|Presence of otological and audiological implants +C0476575|T033|HT|Z96.2|ICD10CM|Presence of otological and audiological implants|Presence of otological and audiological implants +C0476575|T033|AB|Z96.2|ICD10CM|Presence of otological and audiological implants|Presence of otological and audiological implants +C2911507|T033|AB|Z96.20|ICD10CM|Presence of otological and audiological implant, unspecified|Presence of otological and audiological implant, unspecified +C2911507|T033|PT|Z96.20|ICD10CM|Presence of otological and audiological implant, unspecified|Presence of otological and audiological implant, unspecified +C2911508|T033|AB|Z96.21|ICD10CM|Cochlear implant status|Cochlear implant status +C2911508|T033|PT|Z96.21|ICD10CM|Cochlear implant status|Cochlear implant status +C2911509|T033|AB|Z96.22|ICD10CM|Myringotomy tube(s) status|Myringotomy tube(s) status +C2911509|T033|PT|Z96.22|ICD10CM|Myringotomy tube(s) status|Myringotomy tube(s) status +C2911510|T033|ET|Z96.29|ICD10CM|Presence of bone-conduction hearing device|Presence of bone-conduction hearing device +C2911511|T033|ET|Z96.29|ICD10CM|Presence of eustachian tube stent|Presence of eustachian tube stent +C2911512|T033|AB|Z96.29|ICD10CM|Presence of other otological and audiological implants|Presence of other otological and audiological implants +C2911512|T033|PT|Z96.29|ICD10CM|Presence of other otological and audiological implants|Presence of other otological and audiological implants +C1409972|T033|ET|Z96.29|ICD10CM|Stapes replacement|Stapes replacement +C0496744|T033|PT|Z96.3|ICD10|Presence of artificial larynx|Presence of artificial larynx +C0496744|T033|PT|Z96.3|ICD10CM|Presence of artificial larynx|Presence of artificial larynx +C0496744|T033|AB|Z96.3|ICD10CM|Presence of artificial larynx|Presence of artificial larynx +C0476576|T033|PT|Z96.4|ICD10|Presence of endocrine implants|Presence of endocrine implants +C0476576|T033|HT|Z96.4|ICD10CM|Presence of endocrine implants|Presence of endocrine implants +C0476576|T033|AB|Z96.4|ICD10CM|Presence of endocrine implants|Presence of endocrine implants +C2911513|T033|AB|Z96.41|ICD10CM|Presence of insulin pump (external) (internal)|Presence of insulin pump (external) (internal) +C2911513|T033|PT|Z96.41|ICD10CM|Presence of insulin pump (external) (internal)|Presence of insulin pump (external) (internal) +C2911514|T033|AB|Z96.49|ICD10CM|Presence of other endocrine implants|Presence of other endocrine implants +C2911514|T033|PT|Z96.49|ICD10CM|Presence of other endocrine implants|Presence of other endocrine implants +C0476577|T033|PT|Z96.5|ICD10CM|Presence of tooth-root and mandibular implants|Presence of tooth-root and mandibular implants +C0476577|T033|AB|Z96.5|ICD10CM|Presence of tooth-root and mandibular implants|Presence of tooth-root and mandibular implants +C0476577|T033|PT|Z96.5|ICD10|Presence of tooth-root and mandibular implants|Presence of tooth-root and mandibular implants +C1321883|T033|PT|Z96.6|ICD10|Presence of orthopaedic joint implants|Presence of orthopaedic joint implants +C1321883|T033|PT|Z96.6|ICD10AE|Presence of orthopedic joint implants|Presence of orthopedic joint implants +C1321883|T033|HT|Z96.6|ICD10CM|Presence of orthopedic joint implants|Presence of orthopedic joint implants +C1321883|T033|AB|Z96.6|ICD10CM|Presence of orthopedic joint implants|Presence of orthopedic joint implants +C2911515|T033|AB|Z96.60|ICD10CM|Presence of unspecified orthopedic joint implant|Presence of unspecified orthopedic joint implant +C2911515|T033|PT|Z96.60|ICD10CM|Presence of unspecified orthopedic joint implant|Presence of unspecified orthopedic joint implant +C2911516|T033|AB|Z96.61|ICD10CM|Presence of artificial shoulder joint|Presence of artificial shoulder joint +C2911516|T033|HT|Z96.61|ICD10CM|Presence of artificial shoulder joint|Presence of artificial shoulder joint +C2911517|T033|AB|Z96.611|ICD10CM|Presence of right artificial shoulder joint|Presence of right artificial shoulder joint +C2911517|T033|PT|Z96.611|ICD10CM|Presence of right artificial shoulder joint|Presence of right artificial shoulder joint +C2911518|T033|AB|Z96.612|ICD10CM|Presence of left artificial shoulder joint|Presence of left artificial shoulder joint +C2911518|T033|PT|Z96.612|ICD10CM|Presence of left artificial shoulder joint|Presence of left artificial shoulder joint +C2911519|T033|AB|Z96.619|ICD10CM|Presence of unspecified artificial shoulder joint|Presence of unspecified artificial shoulder joint +C2911519|T033|PT|Z96.619|ICD10CM|Presence of unspecified artificial shoulder joint|Presence of unspecified artificial shoulder joint +C2911520|T033|AB|Z96.62|ICD10CM|Presence of artificial elbow joint|Presence of artificial elbow joint +C2911520|T033|HT|Z96.62|ICD10CM|Presence of artificial elbow joint|Presence of artificial elbow joint +C2911521|T033|AB|Z96.621|ICD10CM|Presence of right artificial elbow joint|Presence of right artificial elbow joint +C2911521|T033|PT|Z96.621|ICD10CM|Presence of right artificial elbow joint|Presence of right artificial elbow joint +C2911522|T033|AB|Z96.622|ICD10CM|Presence of left artificial elbow joint|Presence of left artificial elbow joint +C2911522|T033|PT|Z96.622|ICD10CM|Presence of left artificial elbow joint|Presence of left artificial elbow joint +C2911523|T033|AB|Z96.629|ICD10CM|Presence of unspecified artificial elbow joint|Presence of unspecified artificial elbow joint +C2911523|T033|PT|Z96.629|ICD10CM|Presence of unspecified artificial elbow joint|Presence of unspecified artificial elbow joint +C2911524|T033|AB|Z96.63|ICD10CM|Presence of artificial wrist joint|Presence of artificial wrist joint +C2911524|T033|HT|Z96.63|ICD10CM|Presence of artificial wrist joint|Presence of artificial wrist joint +C2911525|T033|AB|Z96.631|ICD10CM|Presence of right artificial wrist joint|Presence of right artificial wrist joint +C2911525|T033|PT|Z96.631|ICD10CM|Presence of right artificial wrist joint|Presence of right artificial wrist joint +C2911526|T033|AB|Z96.632|ICD10CM|Presence of left artificial wrist joint|Presence of left artificial wrist joint +C2911526|T033|PT|Z96.632|ICD10CM|Presence of left artificial wrist joint|Presence of left artificial wrist joint +C2911527|T033|AB|Z96.639|ICD10CM|Presence of unspecified artificial wrist joint|Presence of unspecified artificial wrist joint +C2911527|T033|PT|Z96.639|ICD10CM|Presence of unspecified artificial wrist joint|Presence of unspecified artificial wrist joint +C2911528|T033|ET|Z96.64|ICD10CM|Hip-joint replacement (partial) (total)|Hip-joint replacement (partial) (total) +C2911529|T033|AB|Z96.64|ICD10CM|Presence of artificial hip joint|Presence of artificial hip joint +C2911529|T033|HT|Z96.64|ICD10CM|Presence of artificial hip joint|Presence of artificial hip joint +C2911530|T033|AB|Z96.641|ICD10CM|Presence of right artificial hip joint|Presence of right artificial hip joint +C2911530|T033|PT|Z96.641|ICD10CM|Presence of right artificial hip joint|Presence of right artificial hip joint +C2911531|T033|AB|Z96.642|ICD10CM|Presence of left artificial hip joint|Presence of left artificial hip joint +C2911531|T033|PT|Z96.642|ICD10CM|Presence of left artificial hip joint|Presence of left artificial hip joint +C2911532|T033|AB|Z96.643|ICD10CM|Presence of artificial hip joint, bilateral|Presence of artificial hip joint, bilateral +C2911532|T033|PT|Z96.643|ICD10CM|Presence of artificial hip joint, bilateral|Presence of artificial hip joint, bilateral +C2911533|T033|AB|Z96.649|ICD10CM|Presence of unspecified artificial hip joint|Presence of unspecified artificial hip joint +C2911533|T033|PT|Z96.649|ICD10CM|Presence of unspecified artificial hip joint|Presence of unspecified artificial hip joint +C2911534|T033|AB|Z96.65|ICD10CM|Presence of artificial knee joint|Presence of artificial knee joint +C2911534|T033|HT|Z96.65|ICD10CM|Presence of artificial knee joint|Presence of artificial knee joint +C2911535|T033|AB|Z96.651|ICD10CM|Presence of right artificial knee joint|Presence of right artificial knee joint +C2911535|T033|PT|Z96.651|ICD10CM|Presence of right artificial knee joint|Presence of right artificial knee joint +C2911536|T033|AB|Z96.652|ICD10CM|Presence of left artificial knee joint|Presence of left artificial knee joint +C2911536|T033|PT|Z96.652|ICD10CM|Presence of left artificial knee joint|Presence of left artificial knee joint +C2911537|T033|AB|Z96.653|ICD10CM|Presence of artificial knee joint, bilateral|Presence of artificial knee joint, bilateral +C2911537|T033|PT|Z96.653|ICD10CM|Presence of artificial knee joint, bilateral|Presence of artificial knee joint, bilateral +C2911538|T033|AB|Z96.659|ICD10CM|Presence of unspecified artificial knee joint|Presence of unspecified artificial knee joint +C2911538|T033|PT|Z96.659|ICD10CM|Presence of unspecified artificial knee joint|Presence of unspecified artificial knee joint +C2911539|T033|AB|Z96.66|ICD10CM|Presence of artificial ankle joint|Presence of artificial ankle joint +C2911539|T033|HT|Z96.66|ICD10CM|Presence of artificial ankle joint|Presence of artificial ankle joint +C2911540|T033|AB|Z96.661|ICD10CM|Presence of right artificial ankle joint|Presence of right artificial ankle joint +C2911540|T033|PT|Z96.661|ICD10CM|Presence of right artificial ankle joint|Presence of right artificial ankle joint +C2911541|T033|AB|Z96.662|ICD10CM|Presence of left artificial ankle joint|Presence of left artificial ankle joint +C2911541|T033|PT|Z96.662|ICD10CM|Presence of left artificial ankle joint|Presence of left artificial ankle joint +C2911542|T033|AB|Z96.669|ICD10CM|Presence of unspecified artificial ankle joint|Presence of unspecified artificial ankle joint +C2911542|T033|PT|Z96.669|ICD10CM|Presence of unspecified artificial ankle joint|Presence of unspecified artificial ankle joint +C0841010|T033|HT|Z96.69|ICD10CM|Presence of other orthopedic joint implants|Presence of other orthopedic joint implants +C0841010|T033|AB|Z96.69|ICD10CM|Presence of other orthopedic joint implants|Presence of other orthopedic joint implants +C2911543|T033|AB|Z96.691|ICD10CM|Finger-joint replacement of right hand|Finger-joint replacement of right hand +C2911543|T033|PT|Z96.691|ICD10CM|Finger-joint replacement of right hand|Finger-joint replacement of right hand +C2911544|T033|AB|Z96.692|ICD10CM|Finger-joint replacement of left hand|Finger-joint replacement of left hand +C2911544|T033|PT|Z96.692|ICD10CM|Finger-joint replacement of left hand|Finger-joint replacement of left hand +C2911545|T033|AB|Z96.693|ICD10CM|Finger-joint replacement, bilateral|Finger-joint replacement, bilateral +C2911545|T033|PT|Z96.693|ICD10CM|Finger-joint replacement, bilateral|Finger-joint replacement, bilateral +C0841010|T033|AB|Z96.698|ICD10CM|Presence of other orthopedic joint implants|Presence of other orthopedic joint implants +C0841010|T033|PT|Z96.698|ICD10CM|Presence of other orthopedic joint implants|Presence of other orthopedic joint implants +C0478651|T033|PT|Z96.7|ICD10|Presence of other bone and tendon implants|Presence of other bone and tendon implants +C0478651|T033|PT|Z96.7|ICD10CM|Presence of other bone and tendon implants|Presence of other bone and tendon implants +C0478651|T033|AB|Z96.7|ICD10CM|Presence of other bone and tendon implants|Presence of other bone and tendon implants +C1409480|T033|ET|Z96.7|ICD10CM|Presence of skull plate|Presence of skull plate +C0478652|T033|HT|Z96.8|ICD10CM|Presence of other specified functional implants|Presence of other specified functional implants +C0478652|T033|AB|Z96.8|ICD10CM|Presence of other specified functional implants|Presence of other specified functional implants +C0478652|T033|PT|Z96.8|ICD10|Presence of other specified functional implants|Presence of other specified functional implants +C2911546|T033|AB|Z96.81|ICD10CM|Presence of artificial skin|Presence of artificial skin +C2911546|T033|PT|Z96.81|ICD10CM|Presence of artificial skin|Presence of artificial skin +C5141193|T033|ET|Z96.82|ICD10CM|Presence of brain neurostimulator|Presence of brain neurostimulator +C5141194|T033|ET|Z96.82|ICD10CM|Presence of gastric neurostimulator|Presence of gastric neurostimulator +C5141120|T033|AB|Z96.82|ICD10CM|Presence of neurostimulator|Presence of neurostimulator +C5141120|T033|PT|Z96.82|ICD10CM|Presence of neurostimulator|Presence of neurostimulator +C5141195|T033|ET|Z96.82|ICD10CM|Presence of peripheral nerve neurostimulator|Presence of peripheral nerve neurostimulator +C5141196|T033|ET|Z96.82|ICD10CM|Presence of sacral nerve neurostimulator|Presence of sacral nerve neurostimulator +C5141198|T033|ET|Z96.82|ICD10CM|Presence of spinal cord neurostimulator|Presence of spinal cord neurostimulator +C5141197|T033|ET|Z96.82|ICD10CM|Presence of vagus nerve neurostimulator|Presence of vagus nerve neurostimulator +C0478652|T033|PT|Z96.89|ICD10CM|Presence of other specified functional implants|Presence of other specified functional implants +C0478652|T033|AB|Z96.89|ICD10CM|Presence of other specified functional implants|Presence of other specified functional implants +C0496746|T033|PT|Z96.9|ICD10CM|Presence of functional implant, unspecified|Presence of functional implant, unspecified +C0496746|T033|AB|Z96.9|ICD10CM|Presence of functional implant, unspecified|Presence of functional implant, unspecified +C0496746|T033|PT|Z96.9|ICD10|Presence of functional implant, unspecified|Presence of functional implant, unspecified +C0496747|T033|HT|Z97|ICD10|Presence of other devices|Presence of other devices +C0496747|T033|AB|Z97|ICD10CM|Presence of other devices|Presence of other devices +C0496747|T033|HT|Z97|ICD10CM|Presence of other devices|Presence of other devices +C2919146|T033|PT|Z97.0|ICD10|Presence of artificial eye|Presence of artificial eye +C2919146|T033|PT|Z97.0|ICD10CM|Presence of artificial eye|Presence of artificial eye +C2919146|T033|AB|Z97.0|ICD10CM|Presence of artificial eye|Presence of artificial eye +C0476578|T033|PT|Z97.1|ICD10|Presence of artificial limb (complete) (partial)|Presence of artificial limb (complete) (partial) +C0476578|T033|HT|Z97.1|ICD10CM|Presence of artificial limb (complete) (partial)|Presence of artificial limb (complete) (partial) +C0476578|T033|AB|Z97.1|ICD10CM|Presence of artificial limb (complete) (partial)|Presence of artificial limb (complete) (partial) +C0476578|T033|AB|Z97.10|ICD10CM|Presence of artificial limb (complete) (partial), unsp|Presence of artificial limb (complete) (partial), unsp +C0476578|T033|PT|Z97.10|ICD10CM|Presence of artificial limb (complete) (partial), unspecified|Presence of artificial limb (complete) (partial), unspecified +C2911548|T033|AB|Z97.11|ICD10CM|Presence of artificial right arm (complete) (partial)|Presence of artificial right arm (complete) (partial) +C2911548|T033|PT|Z97.11|ICD10CM|Presence of artificial right arm (complete) (partial)|Presence of artificial right arm (complete) (partial) +C2911549|T033|AB|Z97.12|ICD10CM|Presence of artificial left arm (complete) (partial)|Presence of artificial left arm (complete) (partial) +C2911549|T033|PT|Z97.12|ICD10CM|Presence of artificial left arm (complete) (partial)|Presence of artificial left arm (complete) (partial) +C2911550|T033|AB|Z97.13|ICD10CM|Presence of artificial right leg (complete) (partial)|Presence of artificial right leg (complete) (partial) +C2911550|T033|PT|Z97.13|ICD10CM|Presence of artificial right leg (complete) (partial)|Presence of artificial right leg (complete) (partial) +C2911551|T033|AB|Z97.14|ICD10CM|Presence of artificial left leg (complete) (partial)|Presence of artificial left leg (complete) (partial) +C2911551|T033|PT|Z97.14|ICD10CM|Presence of artificial left leg (complete) (partial)|Presence of artificial left leg (complete) (partial) +C2911552|T033|AB|Z97.15|ICD10CM|Presence of artificial arms, bilateral (complete) (partial)|Presence of artificial arms, bilateral (complete) (partial) +C2911552|T033|PT|Z97.15|ICD10CM|Presence of artificial arms, bilateral (complete) (partial)|Presence of artificial arms, bilateral (complete) (partial) +C2911553|T033|AB|Z97.16|ICD10CM|Presence of artificial legs, bilateral (complete) (partial)|Presence of artificial legs, bilateral (complete) (partial) +C2911553|T033|PT|Z97.16|ICD10CM|Presence of artificial legs, bilateral (complete) (partial)|Presence of artificial legs, bilateral (complete) (partial) +C0476579|T033|PT|Z97.2|ICD10CM|Presence of dental prosthetic device (complete) (partial)|Presence of dental prosthetic device (complete) (partial) +C0476579|T033|AB|Z97.2|ICD10CM|Presence of dental prosthetic device (complete) (partial)|Presence of dental prosthetic device (complete) (partial) +C0476579|T033|PT|Z97.2|ICD10|Presence of dental prosthetic device (complete) (partial)|Presence of dental prosthetic device (complete) (partial) +C2911554|T033|ET|Z97.2|ICD10CM|Presence of dentures (complete) (partial)|Presence of dentures (complete) (partial) +C0476580|T033|PT|Z97.3|ICD10|Presence of spectacles and contact lenses|Presence of spectacles and contact lenses +C0476580|T033|PT|Z97.3|ICD10CM|Presence of spectacles and contact lenses|Presence of spectacles and contact lenses +C0476580|T033|AB|Z97.3|ICD10CM|Presence of spectacles and contact lenses|Presence of spectacles and contact lenses +C0476581|T033|PT|Z97.4|ICD10CM|Presence of external hearing-aid|Presence of external hearing-aid +C0476581|T033|AB|Z97.4|ICD10CM|Presence of external hearing-aid|Presence of external hearing-aid +C0476581|T033|PT|Z97.4|ICD10|Presence of external hearing-aid|Presence of external hearing-aid +C0344225|T033|PT|Z97.5|ICD10|Presence of (intrauterine) contraceptive device|Presence of (intrauterine) contraceptive device +C0344225|T033|PT|Z97.5|ICD10CM|Presence of (intrauterine) contraceptive device|Presence of (intrauterine) contraceptive device +C0344225|T033|AB|Z97.5|ICD10CM|Presence of (intrauterine) contraceptive device|Presence of (intrauterine) contraceptive device +C0478653|T033|PT|Z97.8|ICD10CM|Presence of other specified devices|Presence of other specified devices +C0478653|T033|AB|Z97.8|ICD10CM|Presence of other specified devices|Presence of other specified devices +C0478653|T033|PT|Z97.8|ICD10|Presence of other specified devices|Presence of other specified devices +C0260698|T033|AB|Z98|ICD10CM|Other postprocedural states|Other postprocedural states +C0260698|T033|HT|Z98|ICD10CM|Other postprocedural states|Other postprocedural states +C0260698|T033|HT|Z98|ICD10|Other postsurgical states|Other postsurgical states +C0496749|T033|PT|Z98.0|ICD10|Intestinal bypass and anastomosis status|Intestinal bypass and anastomosis status +C0496749|T033|PT|Z98.0|ICD10CM|Intestinal bypass and anastomosis status|Intestinal bypass and anastomosis status +C0496749|T033|AB|Z98.0|ICD10CM|Intestinal bypass and anastomosis status|Intestinal bypass and anastomosis status +C0391994|T033|PT|Z98.1|ICD10|Arthrodesis status|Arthrodesis status +C0391994|T033|PT|Z98.1|ICD10CM|Arthrodesis status|Arthrodesis status +C0391994|T033|AB|Z98.1|ICD10CM|Arthrodesis status|Arthrodesis status +C0496750|T033|PT|Z98.2|ICD10CM|Presence of cerebrospinal fluid drainage device|Presence of cerebrospinal fluid drainage device +C0496750|T033|AB|Z98.2|ICD10CM|Presence of cerebrospinal fluid drainage device|Presence of cerebrospinal fluid drainage device +C0496750|T033|PT|Z98.2|ICD10|Presence of cerebrospinal fluid drainage device|Presence of cerebrospinal fluid drainage device +C2911555|T033|ET|Z98.2|ICD10CM|Presence of CSF shunt|Presence of CSF shunt +C2911556|T033|AB|Z98.3|ICD10CM|Post therapeutic collapse of lung status|Post therapeutic collapse of lung status +C2911556|T033|PT|Z98.3|ICD10CM|Post therapeutic collapse of lung status|Post therapeutic collapse of lung status +C0490024|T033|HT|Z98.4|ICD10CM|Cataract extraction status|Cataract extraction status +C0490024|T033|AB|Z98.4|ICD10CM|Cataract extraction status|Cataract extraction status +C2911558|T033|AB|Z98.41|ICD10CM|Cataract extraction status, right eye|Cataract extraction status, right eye +C2911558|T033|PT|Z98.41|ICD10CM|Cataract extraction status, right eye|Cataract extraction status, right eye +C2911559|T033|AB|Z98.42|ICD10CM|Cataract extraction status, left eye|Cataract extraction status, left eye +C2911559|T033|PT|Z98.42|ICD10CM|Cataract extraction status, left eye|Cataract extraction status, left eye +C2911560|T033|AB|Z98.49|ICD10CM|Cataract extraction status, unspecified eye|Cataract extraction status, unspecified eye +C2911560|T033|PT|Z98.49|ICD10CM|Cataract extraction status, unspecified eye|Cataract extraction status, unspecified eye +C0695263|T033|AB|Z98.5|ICD10CM|Sterilization status|Sterilization status +C0695263|T033|HT|Z98.5|ICD10CM|Sterilization status|Sterilization status +C0695264|T033|AB|Z98.51|ICD10CM|Tubal ligation status|Tubal ligation status +C0695264|T033|PT|Z98.51|ICD10CM|Tubal ligation status|Tubal ligation status +C0695265|T033|AB|Z98.52|ICD10CM|Vasectomy status|Vasectomy status +C0695265|T033|PT|Z98.52|ICD10CM|Vasectomy status|Vasectomy status +C1409987|T033|HT|Z98.6|ICD10CM|Angioplasty status|Angioplasty status +C1409987|T033|AB|Z98.6|ICD10CM|Angioplasty status|Angioplasty status +C2911561|T033|AB|Z98.61|ICD10CM|Coronary angioplasty status|Coronary angioplasty status +C2911561|T033|PT|Z98.61|ICD10CM|Coronary angioplasty status|Coronary angioplasty status +C2911562|T033|PT|Z98.62|ICD10CM|Peripheral vascular angioplasty status|Peripheral vascular angioplasty status +C2911562|T033|AB|Z98.62|ICD10CM|Peripheral vascular angioplasty status|Peripheral vascular angioplasty status +C2911563|T033|HT|Z98.8|ICD10CM|Other specified postprocedural states|Other specified postprocedural states +C2911563|T033|AB|Z98.8|ICD10CM|Other specified postprocedural states|Other specified postprocedural states +C0481728|T033|PT|Z98.8|ICD10|Other specified postsurgical states|Other specified postsurgical states +C2911564|T033|AB|Z98.81|ICD10CM|Dental procedure status|Dental procedure status +C2911564|T033|HT|Z98.81|ICD10CM|Dental procedure status|Dental procedure status +C0949155|T033|AB|Z98.810|ICD10CM|Dental sealant status|Dental sealant status +C0949155|T033|PT|Z98.810|ICD10CM|Dental sealant status|Dental sealant status +C0949192|T033|ET|Z98.811|ICD10CM|Dental crown status|Dental crown status +C0949193|T033|ET|Z98.811|ICD10CM|Dental fillings status|Dental fillings status +C2911565|T033|AB|Z98.811|ICD10CM|Dental restoration status|Dental restoration status +C2911565|T033|PT|Z98.811|ICD10CM|Dental restoration status|Dental restoration status +C2911566|T033|AB|Z98.818|ICD10CM|Other dental procedure status|Other dental procedure status +C2911566|T033|PT|Z98.818|ICD10CM|Other dental procedure status|Other dental procedure status +C2911567|T033|PT|Z98.82|ICD10CM|Breast implant status|Breast implant status +C2911567|T033|AB|Z98.82|ICD10CM|Breast implant status|Breast implant status +C2911568|T033|AB|Z98.83|ICD10CM|Filtering (vitreous) bleb after glaucoma surgery status|Filtering (vitreous) bleb after glaucoma surgery status +C2911568|T033|PT|Z98.83|ICD10CM|Filtering (vitreous) bleb after glaucoma surgery status|Filtering (vitreous) bleb after glaucoma surgery status +C1719686|T033|AB|Z98.84|ICD10CM|Bariatric surgery status|Bariatric surgery status +C1719686|T033|PT|Z98.84|ICD10CM|Bariatric surgery status|Bariatric surgery status +C1719687|T033|ET|Z98.84|ICD10CM|Gastric banding status|Gastric banding status +C1719688|T033|ET|Z98.84|ICD10CM|Gastric bypass status for obesity|Gastric bypass status for obesity +C1719689|T033|ET|Z98.84|ICD10CM|Obesity surgery status|Obesity surgery status +C2349875|T033|ET|Z98.85|ICD10CM|Transplanted organ previously removed due to complication, failure, rejection or infection|Transplanted organ previously removed due to complication, failure, rejection or infection +C2349874|T033|AB|Z98.85|ICD10CM|Transplanted organ removal status|Transplanted organ removal status +C2349874|T033|PT|Z98.85|ICD10CM|Transplanted organ removal status|Transplanted organ removal status +C2911569|T033|AB|Z98.86|ICD10CM|Personal history of breast implant removal|Personal history of breast implant removal +C2911569|T033|PT|Z98.86|ICD10CM|Personal history of breast implant removal|Personal history of breast implant removal +C2911570|T033|AB|Z98.87|ICD10CM|Personal history of in utero procedure|Personal history of in utero procedure +C2911570|T033|HT|Z98.87|ICD10CM|Personal history of in utero procedure|Personal history of in utero procedure +C2911571|T033|AB|Z98.870|ICD10CM|Personal history of in utero procedure during pregnancy|Personal history of in utero procedure during pregnancy +C2911571|T033|PT|Z98.870|ICD10CM|Personal history of in utero procedure during pregnancy|Personal history of in utero procedure during pregnancy +C2911572|T033|AB|Z98.871|ICD10CM|Personal history of in utero procedure while a fetus|Personal history of in utero procedure while a fetus +C2911572|T033|PT|Z98.871|ICD10CM|Personal history of in utero procedure while a fetus|Personal history of in utero procedure while a fetus +C2911563|T033|AB|Z98.89|ICD10CM|Other specified postprocedural states|Other specified postprocedural states +C2911563|T033|HT|Z98.89|ICD10CM|Other specified postprocedural states|Other specified postprocedural states +C2911563|T033|AB|Z98.890|ICD10CM|Other specified postprocedural states|Other specified postprocedural states +C2911563|T033|PT|Z98.890|ICD10CM|Other specified postprocedural states|Other specified postprocedural states +C4270803|T033|ET|Z98.890|ICD10CM|Personal history of surgery, not elsewhere classified|Personal history of surgery, not elsewhere classified +C4270804|T033|AB|Z98.891|ICD10CM|History of uterine scar from previous surgery|History of uterine scar from previous surgery +C4270804|T033|PT|Z98.891|ICD10CM|History of uterine scar from previous surgery|History of uterine scar from previous surgery +C0496751|T033|AB|Z99|ICD10CM|Dependence on enabling machines and devices, NEC|Dependence on enabling machines and devices, NEC +C0496751|T033|HT|Z99|ICD10CM|Dependence on enabling machines and devices, not elsewhere classified|Dependence on enabling machines and devices, not elsewhere classified +C0496751|T033|HT|Z99|ICD10|Dependence on enabling machines and devices, not elsewhere classified|Dependence on enabling machines and devices, not elsewhere classified +C0260700|T033|PT|Z99.0|ICD10CM|Dependence on aspirator|Dependence on aspirator +C0260700|T033|AB|Z99.0|ICD10CM|Dependence on aspirator|Dependence on aspirator +C0260700|T033|PT|Z99.0|ICD10|Dependence on aspirator|Dependence on aspirator +C1321831|T033|PT|Z99.1|ICD10|Dependence on respirator|Dependence on respirator +C1321831|T033|HT|Z99.1|ICD10CM|Dependence on respirator|Dependence on respirator +C1321831|T033|AB|Z99.1|ICD10CM|Dependence on respirator|Dependence on respirator +C2911574|T033|ET|Z99.1|ICD10CM|Dependence on ventilator|Dependence on ventilator +C2911575|T033|AB|Z99.11|ICD10CM|Dependence on respirator [ventilator] status|Dependence on respirator [ventilator] status +C2911575|T033|PT|Z99.11|ICD10CM|Dependence on respirator [ventilator] status|Dependence on respirator [ventilator] status +C2911576|T033|PT|Z99.12|ICD10CM|Encounter for respirator [ventilator] dependence during power failure|Encounter for respirator [ventilator] dependence during power failure +C2911576|T033|AB|Z99.12|ICD10CM|Encounter for respirator dependence during power failure|Encounter for respirator dependence during power failure +C2945570|T033|PT|Z99.2|ICD10CM|Dependence on renal dialysis|Dependence on renal dialysis +C2945570|T033|AB|Z99.2|ICD10CM|Dependence on renal dialysis|Dependence on renal dialysis +C2945570|T033|PT|Z99.2|ICD10|Dependence on renal dialysis|Dependence on renal dialysis +C1399375|T033|ET|Z99.2|ICD10CM|Hemodialysis status|Hemodialysis status +C2349870|T033|ET|Z99.2|ICD10CM|Peritoneal dialysis status|Peritoneal dialysis status +C2945570|T033|ET|Z99.2|ICD10CM|Presence of arteriovenous shunt for dialysis|Presence of arteriovenous shunt for dialysis +C0481496|T033|ET|Z99.2|ICD10CM|Renal dialysis status NOS|Renal dialysis status NOS +C0476582|T033|PT|Z99.3|ICD10CM|Dependence on wheelchair|Dependence on wheelchair +C0476582|T033|AB|Z99.3|ICD10CM|Dependence on wheelchair|Dependence on wheelchair +C0476582|T033|PT|Z99.3|ICD10|Dependence on wheelchair|Dependence on wheelchair +C2349877|T033|ET|Z99.3|ICD10CM|Wheelchair confinement status|Wheelchair confinement status +C0481429|T033|PT|Z99.8|ICD10|Dependence on other enabling machines and devices|Dependence on other enabling machines and devices +C0481429|T033|HT|Z99.8|ICD10CM|Dependence on other enabling machines and devices|Dependence on other enabling machines and devices +C0481429|T033|AB|Z99.8|ICD10CM|Dependence on other enabling machines and devices|Dependence on other enabling machines and devices +C2911577|T033|ET|Z99.81|ICD10CM|Dependence on long-term oxygen|Dependence on long-term oxygen +C2363337|T033|AB|Z99.81|ICD10CM|Dependence on supplemental oxygen|Dependence on supplemental oxygen +C2363337|T033|PT|Z99.81|ICD10CM|Dependence on supplemental oxygen|Dependence on supplemental oxygen +C2911578|T033|ET|Z99.89|ICD10CM|Dependence on machine or device NOS|Dependence on machine or device NOS +C0481429|T033|PT|Z99.89|ICD10CM|Dependence on other enabling machines and devices|Dependence on other enabling machines and devices +C0481429|T033|AB|Z99.89|ICD10CM|Dependence on other enabling machines and devices|Dependence on other enabling machines and devices +C0496753|T033|PT|Z99.9|ICD10|Dependence on unspecified enabling machine and device|Dependence on unspecified enabling machine and device diff --git a/cumulus_library/studies/vocab/ICD9.bsv b/cumulus_library/studies/vocab/ICD9.bsv new file mode 100644 index 00000000..95b9b292 --- /dev/null +++ b/cumulus_library/studies/vocab/ICD9.bsv @@ -0,0 +1,29779 @@ +C0008354|T047|HT|001|ICD9CM|Cholera|Cholera +C0178238|T047|HT|001-009.99|ICD9CM|INTESTINAL INFECTIOUS DISEASES|INTESTINAL INFECTIOUS DISEASES +C0041849|T047|HT|001-139.99|ICD9CM|INFECTIOUS AND PARASITIC DISEASES|INFECTIOUS AND PARASITIC DISEASES +C0178237|T047|HT|001-999.99|ICD9CM|DISEASES AND INJURIES|DISEASES AND INJURIES +C0008354|T047|AB|001.0|ICD9CM|Cholera d/t vib cholerae|Cholera d/t vib cholerae +C0008354|T047|PT|001.0|ICD9CM|Cholera due to vibrio cholerae|Cholera due to vibrio cholerae +C0343372|T047|AB|001.1|ICD9CM|Cholera d/t vib el tor|Cholera d/t vib el tor +C0343372|T047|PT|001.1|ICD9CM|Cholera due to vibrio cholerae el tor|Cholera due to vibrio cholerae el tor +C0008354|T047|AB|001.9|ICD9CM|Cholera NOS|Cholera NOS +C0008354|T047|PT|001.9|ICD9CM|Cholera, unspecified|Cholera, unspecified +C0275976|T047|HT|002|ICD9CM|Typhoid and paratyphoid fevers|Typhoid and paratyphoid fevers +C0041466|T047|AB|002.0|ICD9CM|Typhoid fever|Typhoid fever +C0041466|T047|PT|002.0|ICD9CM|Typhoid fever|Typhoid fever +C0343375|T047|AB|002.1|ICD9CM|Paratyphoid fever a|Paratyphoid fever a +C0343375|T047|PT|002.1|ICD9CM|Paratyphoid fever A|Paratyphoid fever A +C0343376|T047|AB|002.2|ICD9CM|Paratyphoid fever b|Paratyphoid fever b +C0343376|T047|PT|002.2|ICD9CM|Paratyphoid fever B|Paratyphoid fever B +C0343377|T047|AB|002.3|ICD9CM|Paratyphoid fever c|Paratyphoid fever c +C0343377|T047|PT|002.3|ICD9CM|Paratyphoid fever C|Paratyphoid fever C +C0030528|T047|AB|002.9|ICD9CM|Paratyphoid fever NOS|Paratyphoid fever NOS +C0030528|T047|PT|002.9|ICD9CM|Paratyphoid fever, unspecified|Paratyphoid fever, unspecified +C0152485|T047|HT|003|ICD9CM|Other salmonella infections|Other salmonella infections +C0036114|T037|AB|003.0|ICD9CM|Salmonella enteritis|Salmonella enteritis +C0036114|T037|PT|003.0|ICD9CM|Salmonella gastroenteritis|Salmonella gastroenteritis +C0152486|T047|AB|003.1|ICD9CM|Salmonella septicemia|Salmonella septicemia +C0152486|T047|PT|003.1|ICD9CM|Salmonella septicemia|Salmonella septicemia +C0152487|T047|HT|003.2|ICD9CM|Localized salmonella infections|Localized salmonella infections +C0152487|T047|AB|003.20|ICD9CM|Local salmonella inf NOS|Local salmonella inf NOS +C0152487|T047|PT|003.20|ICD9CM|Localized salmonella infection, unspecified|Localized salmonella infection, unspecified +C0152488|T047|AB|003.21|ICD9CM|Salmonella meningitis|Salmonella meningitis +C0152488|T047|PT|003.21|ICD9CM|Salmonella meningitis|Salmonella meningitis +C0152489|T047|AB|003.22|ICD9CM|Salmonella pneumonia|Salmonella pneumonia +C0152489|T047|PT|003.22|ICD9CM|Salmonella pneumonia|Salmonella pneumonia +C0152490|T047|AB|003.23|ICD9CM|Salmonella arthritis|Salmonella arthritis +C0152490|T047|PT|003.23|ICD9CM|Salmonella arthritis|Salmonella arthritis +C0152491|T047|AB|003.24|ICD9CM|Salmonella osteomyelitis|Salmonella osteomyelitis +C0152491|T047|PT|003.24|ICD9CM|Salmonella osteomyelitis|Salmonella osteomyelitis +C0152492|T047|AB|003.29|ICD9CM|Local salmonella inf NEC|Local salmonella inf NEC +C0152492|T047|PT|003.29|ICD9CM|Other localized salmonella infections|Other localized salmonella infections +C0029826|T047|PT|003.8|ICD9CM|Other specified salmonella infections|Other specified salmonella infections +C0029826|T047|AB|003.8|ICD9CM|Salmonella infection NEC|Salmonella infection NEC +C0036117|T047|AB|003.9|ICD9CM|Salmonella infection NOS|Salmonella infection NOS +C0036117|T047|PT|003.9|ICD9CM|Salmonella infection, unspecified|Salmonella infection, unspecified +C0013371|T047|HT|004|ICD9CM|Shigellosis|Shigellosis +C0302358|T047|AB|004.0|ICD9CM|Shigella dysenteriae|Shigella dysenteriae +C0302358|T047|PT|004.0|ICD9CM|Shigella dysenteriae|Shigella dysenteriae +C0302359|T047|AB|004.1|ICD9CM|Shigella flexneri|Shigella flexneri +C0302359|T047|PT|004.1|ICD9CM|Shigella flexneri|Shigella flexneri +C0302360|T047|AB|004.2|ICD9CM|Shigella boydii|Shigella boydii +C0302360|T047|PT|004.2|ICD9CM|Shigella boydii|Shigella boydii +C0302361|T047|AB|004.3|ICD9CM|Shigella sonnei|Shigella sonnei +C0302361|T047|PT|004.3|ICD9CM|Shigella sonnei|Shigella sonnei +C0152493|T047|PT|004.8|ICD9CM|Other specified shigella infections|Other specified shigella infections +C0152493|T047|AB|004.8|ICD9CM|Shigella infection NEC|Shigella infection NEC +C0013371|T047|AB|004.9|ICD9CM|Shigellosis NOS|Shigellosis NOS +C0013371|T047|PT|004.9|ICD9CM|Shigellosis, unspecified|Shigellosis, unspecified +C0152498|T037|HT|005|ICD9CM|Other food poisoning (bacterial)|Other food poisoning (bacterial) +C0038159|T047|AB|005.0|ICD9CM|Staph food poisoning|Staph food poisoning +C0038159|T047|PT|005.0|ICD9CM|Staphylococcal food poisoning|Staphylococcal food poisoning +C1739094|T047|PT|005.1|ICD9CM|Botulism food poisoning|Botulism food poisoning +C1739094|T047|AB|005.1|ICD9CM|Botulism food poisoning|Botulism food poisoning +C0275590|T037|AB|005.2|ICD9CM|Food pois d/t c. perfrin|Food pois d/t c. perfrin +C0275590|T037|PT|005.2|ICD9CM|Food poisoning due to Clostridium perfringens (C. welchii)|Food poisoning due to Clostridium perfringens (C. welchii) +C0152496|T037|AB|005.3|ICD9CM|Food pois: clostrid NEC|Food pois: clostrid NEC +C0152496|T037|PT|005.3|ICD9CM|Food poisoning due to other Clostridia|Food poisoning due to other Clostridia +C0152497|T047|AB|005.4|ICD9CM|Food pois: v. parahaem|Food pois: v. parahaem +C0152497|T047|PT|005.4|ICD9CM|Food poisoning due to Vibrio parahaemolyticus|Food poisoning due to Vibrio parahaemolyticus +C0152498|T037|HT|005.8|ICD9CM|Other bacterial food poisoning|Other bacterial food poisoning +C0374921|T037|AB|005.81|ICD9CM|Food poisn d/t v. vulnif|Food poisn d/t v. vulnif +C0374921|T037|PT|005.81|ICD9CM|Food poisoning due to Vibrio vulnificus|Food poisoning due to Vibrio vulnificus +C0152498|T037|AB|005.89|ICD9CM|Bact food poisoning NEC|Bact food poisoning NEC +C0152498|T037|PT|005.89|ICD9CM|Other bacterial food poisoning|Other bacterial food poisoning +C0016479|T037|AB|005.9|ICD9CM|Food poisoning NOS|Food poisoning NOS +C0016479|T037|PT|005.9|ICD9CM|Food poisoning, unspecified|Food poisoning, unspecified +C0002438|T047|HT|006|ICD9CM|Amebiasis|Amebiasis +C1363999|T047|AB|006.0|ICD9CM|Ac amebiasis w/o abscess|Ac amebiasis w/o abscess +C1363999|T047|PT|006.0|ICD9CM|Acute amebic dysentery without mention of abscess|Acute amebic dysentery without mention of abscess +C0152500|T047|AB|006.1|ICD9CM|Chr amebiasis w/o absces|Chr amebiasis w/o absces +C0152500|T047|PT|006.1|ICD9CM|Chronic intestinal amebiasis without mention of abscess|Chronic intestinal amebiasis without mention of abscess +C0152501|T047|AB|006.2|ICD9CM|Amebic nondysent colitis|Amebic nondysent colitis +C0152501|T047|PT|006.2|ICD9CM|Amebic nondysenteric colitis|Amebic nondysenteric colitis +C0023886|T047|AB|006.3|ICD9CM|Amebic liver abscess|Amebic liver abscess +C0023886|T047|PT|006.3|ICD9CM|Amebic liver abscess|Amebic liver abscess +C0152502|T047|AB|006.4|ICD9CM|Amebic lung abscess|Amebic lung abscess +C0152502|T047|PT|006.4|ICD9CM|Amebic lung abscess|Amebic lung abscess +C0152503|T047|AB|006.5|ICD9CM|Amebic brain abscess|Amebic brain abscess +C0152503|T047|PT|006.5|ICD9CM|Amebic brain abscess|Amebic brain abscess +C1318565|T047|AB|006.6|ICD9CM|Amebic skin ulceration|Amebic skin ulceration +C1318565|T047|PT|006.6|ICD9CM|Amebic skin ulceration|Amebic skin ulceration +C0152505|T047|AB|006.8|ICD9CM|Amebic infection NEC|Amebic infection NEC +C0152505|T047|PT|006.8|ICD9CM|Amebic infection of other sites|Amebic infection of other sites +C0002438|T047|AB|006.9|ICD9CM|Amebiasis NOS|Amebiasis NOS +C0002438|T047|PT|006.9|ICD9CM|Amebiasis, unspecified|Amebiasis, unspecified +C0152506|T047|HT|007|ICD9CM|Other protozoal intestinal diseases|Other protozoal intestinal diseases +C0004692|T047|AB|007.0|ICD9CM|Balantidiasis|Balantidiasis +C0004692|T047|PT|007.0|ICD9CM|Balantidiasis|Balantidiasis +C0017536|T047|AB|007.1|ICD9CM|Giardiasis|Giardiasis +C0017536|T047|PT|007.1|ICD9CM|Giardiasis|Giardiasis +C1299919|T047|AB|007.2|ICD9CM|Coccidiosis|Coccidiosis +C1299919|T047|PT|007.2|ICD9CM|Coccidiosis|Coccidiosis +C0411268|T047|AB|007.3|ICD9CM|Intest trichomoniasis|Intest trichomoniasis +C0411268|T047|PT|007.3|ICD9CM|Intestinal trichomoniasis|Intestinal trichomoniasis +C0010418|T047|AB|007.4|ICD9CM|Cryptosporidiosis|Cryptosporidiosis +C0010418|T047|PT|007.4|ICD9CM|Cryptosporidiosis|Cryptosporidiosis +C0343398|T047|AB|007.5|ICD9CM|Cyclosporiasis|Cyclosporiasis +C0343398|T047|PT|007.5|ICD9CM|Cyclosporiasis|Cyclosporiasis +C0152507|T047|PT|007.8|ICD9CM|Other specified protozoal intestinal diseases|Other specified protozoal intestinal diseases +C0152507|T047|AB|007.8|ICD9CM|Protozoal intest dis NEC|Protozoal intest dis NEC +C0276774|T047|AB|007.9|ICD9CM|Protozoal intest dis NOS|Protozoal intest dis NOS +C0276774|T047|PT|007.9|ICD9CM|Unspecified protozoal intestinal disease|Unspecified protozoal intestinal disease +C0152518|T047|HT|008|ICD9CM|Intestinal infections due to other organisms|Intestinal infections due to other organisms +C0341558|T047|HT|008.0|ICD9CM|Intestinal infection due to escherichia coli [E. coli]|Intestinal infection due to escherichia coli [E. coli] +C0341558|T047|AB|008.00|ICD9CM|Intest infec e coli NOS|Intest infec e coli NOS +C0341558|T047|PT|008.00|ICD9CM|Intestinal infection due to E. coli, unspecified|Intestinal infection due to E. coli, unspecified +C0343380|T047|AB|008.01|ICD9CM|Int inf e coli entrpath|Int inf e coli entrpath +C0343380|T047|PT|008.01|ICD9CM|Intestinal infection due to enteropathogenic E. coli|Intestinal infection due to enteropathogenic E. coli +C0343379|T047|AB|008.02|ICD9CM|Int inf e coli entrtoxgn|Int inf e coli entrtoxgn +C0343379|T047|PT|008.02|ICD9CM|Intestinal infection due to enterotoxigenic E. coli|Intestinal infection due to enterotoxigenic E. coli +C0343382|T047|AB|008.03|ICD9CM|Int inf e coli entrnvsv|Int inf e coli entrnvsv +C0343382|T047|PT|008.03|ICD9CM|Intestinal infection due to enteroinvasive E. coli|Intestinal infection due to enteroinvasive E. coli +C0343381|T047|AB|008.04|ICD9CM|Int inf e coli entrhmrg|Int inf e coli entrhmrg +C0343381|T047|PT|008.04|ICD9CM|Intestinal infection due to enterohemorrhagic E. coli|Intestinal infection due to enterohemorrhagic E. coli +C0494024|T047|AB|008.09|ICD9CM|Int inf e coli spcf NEC|Int inf e coli spcf NEC +C0494024|T047|PT|008.09|ICD9CM|Intestinal infection due to other intestinal E. coli infections|Intestinal infection due to other intestinal E. coli infections +C0152511|T047|AB|008.1|ICD9CM|Arizona enteritis|Arizona enteritis +C0152511|T047|PT|008.1|ICD9CM|Intestinal infection due to arizona group of paracolon bacilli|Intestinal infection due to arizona group of paracolon bacilli +C0276058|T047|AB|008.2|ICD9CM|Aerobacter enteritis|Aerobacter enteritis +C0276058|T047|PT|008.2|ICD9CM|Intestinal infection due to aerobacter aerogenes|Intestinal infection due to aerobacter aerogenes +C0152513|T047|PT|008.3|ICD9CM|Intestinal infection due to proteus (mirabilis) (morganii)|Intestinal infection due to proteus (mirabilis) (morganii) +C0152513|T047|AB|008.3|ICD9CM|Proteus enteritis|Proteus enteritis +C0489951|T047|HT|008.4|ICD9CM|Intestinal infection due to other specified bacteria|Intestinal infection due to other specified bacteria +C0038157|T047|PT|008.41|ICD9CM|Intestinal infection due to staphylococcus|Intestinal infection due to staphylococcus +C0038157|T047|AB|008.41|ICD9CM|Staphylococc enteritis|Staphylococc enteritis +C0152515|T047|PT|008.42|ICD9CM|Intestinal infection due to pseudomonas|Intestinal infection due to pseudomonas +C0152515|T047|AB|008.42|ICD9CM|Pseudomonas enteritis|Pseudomonas enteritis +C0275982|T047|AB|008.43|ICD9CM|Int infec campylobacter|Int infec campylobacter +C0275982|T047|PT|008.43|ICD9CM|Intestinal infection due to campylobacter|Intestinal infection due to campylobacter +C0238528|T047|AB|008.44|ICD9CM|Int inf yrsnia entrcltca|Int inf yrsnia entrcltca +C0238528|T047|PT|008.44|ICD9CM|Intestinal infection due to yersinia enterocolitica|Intestinal infection due to yersinia enterocolitica +C0494025|T047|AB|008.45|ICD9CM|Int inf clstrdium dfcile|Int inf clstrdium dfcile +C0494025|T047|PT|008.45|ICD9CM|Intestinal infection due to Clostridium difficile|Intestinal infection due to Clostridium difficile +C0374931|T047|AB|008.46|ICD9CM|Intes infec oth anerobes|Intes infec oth anerobes +C0374931|T047|PT|008.46|ICD9CM|Intestinal infection due to other anaerobes|Intestinal infection due to other anaerobes +C0374932|T047|AB|008.47|ICD9CM|Int inf oth grm neg bctr|Int inf oth grm neg bctr +C0374932|T047|PT|008.47|ICD9CM|Intestinal infection due to other gram-negative bacteria|Intestinal infection due to other gram-negative bacteria +C0489951|T047|AB|008.49|ICD9CM|Bacterial enteritis NEC|Bacterial enteritis NEC +C0489951|T047|PT|008.49|ICD9CM|Intestinal infection due to other organisms|Intestinal infection due to other organisms +C0152516|T047|AB|008.5|ICD9CM|Bacterial enteritis NOS|Bacterial enteritis NOS +C0152516|T047|PT|008.5|ICD9CM|Bacterial enteritis, unspecified|Bacterial enteritis, unspecified +C0152517|T047|HT|008.6|ICD9CM|Enteritis due to specified virus|Enteritis due to specified virus +C0347854|T047|PT|008.61|ICD9CM|Enteritis due to rotavirus|Enteritis due to rotavirus +C0347854|T047|AB|008.61|ICD9CM|Intes infec rotavirus|Intes infec rotavirus +C0276162|T047|PT|008.62|ICD9CM|Enteritis due to adenovirus|Enteritis due to adenovirus +C0276162|T047|AB|008.62|ICD9CM|Intes infec adenovirus|Intes infec adenovirus +C0374933|T047|PT|008.63|ICD9CM|Enteritis due to norwalk virus|Enteritis due to norwalk virus +C0374933|T047|AB|008.63|ICD9CM|Int inf norwalk virus|Int inf norwalk virus +C0374934|T047|PT|008.64|ICD9CM|Enteritis due to other small round viruses [SRV's]|Enteritis due to other small round viruses [SRV's] +C0374934|T047|AB|008.64|ICD9CM|Int inf oth sml rnd vrus|Int inf oth sml rnd vrus +C1611187|T047|AB|008.65|ICD9CM|Enteritis d/t calicivirs|Enteritis d/t calicivirs +C1611187|T047|PT|008.65|ICD9CM|Enteritis due to calicivirus|Enteritis due to calicivirus +C0374936|T047|PT|008.66|ICD9CM|Enteritis due to astrovirus|Enteritis due to astrovirus +C0374936|T047|AB|008.66|ICD9CM|Intes infec astrovirus|Intes infec astrovirus +C0374937|T047|PT|008.67|ICD9CM|Enteritis due to enterovirus nec|Enteritis due to enterovirus nec +C0374937|T047|AB|008.67|ICD9CM|Int inf enterovirus NEC|Int inf enterovirus NEC +C0348098|T047|PT|008.69|ICD9CM|Enteritis due to other viral enteritis|Enteritis due to other viral enteritis +C0348098|T047|AB|008.69|ICD9CM|Other viral intes infec|Other viral intes infec +C0489952|T047|PT|008.8|ICD9CM|Intestinal infection due to other organism, not elsewhere classified|Intestinal infection due to other organism, not elsewhere classified +C0489952|T047|AB|008.8|ICD9CM|Viral enteritis NOS|Viral enteritis NOS +C0152519|T047|HT|009|ICD9CM|Ill-defined intestinal infections|Ill-defined intestinal infections +C1279224|T047|PT|009.0|ICD9CM|Infectious colitis, enteritis, and gastroenteritis|Infectious colitis, enteritis, and gastroenteritis +C1279224|T047|AB|009.0|ICD9CM|Infectious enteritis NOS|Infectious enteritis NOS +C0595979|T047|PT|009.1|ICD9CM|Colitis, enteritis, and gastroenteritis of presumed infectious origin|Colitis, enteritis, and gastroenteritis of presumed infectious origin +C0595979|T047|AB|009.1|ICD9CM|Enteritis of infect orig|Enteritis of infect orig +C0013369|T047|PT|009.2|ICD9CM|Infectious diarrhea|Infectious diarrhea +C0013369|T047|AB|009.2|ICD9CM|Infectious diarrhea NOS|Infectious diarrhea NOS +C0152522|T047|AB|009.3|ICD9CM|Diarrhea of infect orig|Diarrhea of infect orig +C0152522|T047|PT|009.3|ICD9CM|Diarrhea of presumed infectious origin|Diarrhea of presumed infectious origin +C0152545|T047|HT|010|ICD9CM|Primary tuberculous infection|Primary tuberculous infection +C0041296|T047|HT|010-018.99|ICD9CM|TUBERCULOSIS|TUBERCULOSIS +C0152545|T047|HT|010.0|ICD9CM|Primary tuberculous infection|Primary tuberculous infection +C1812612|T047|AB|010.00|ICD9CM|Prim TB complex-unspec|Prim TB complex-unspec +C1812612|T047|PT|010.00|ICD9CM|Primary tuberculous infection, unspecified|Primary tuberculous infection, unspecified +C0374939|T047|AB|010.01|ICD9CM|Prim TB complex-no exam|Prim TB complex-no exam +C0374939|T047|PT|010.01|ICD9CM|Primary tuberculous infection, bacteriological or histological examination not done|Primary tuberculous infection, bacteriological or histological examination not done +C0374940|T047|AB|010.02|ICD9CM|Prim TB complex-exm unkn|Prim TB complex-exm unkn +C0374940|T047|PT|010.02|ICD9CM|Primary tuberculous infection, bacteriological or histological examination unknown (at present)|Primary tuberculous infection, bacteriological or histological examination unknown (at present) +C0374941|T047|AB|010.03|ICD9CM|Prim TB complex-micro dx|Prim TB complex-micro dx +C0374941|T047|PT|010.03|ICD9CM|Primary tuberculous infection, tubercle bacilli found (in sputum) by microscopy|Primary tuberculous infection, tubercle bacilli found (in sputum) by microscopy +C0374942|T047|AB|010.04|ICD9CM|Prim TB complex-cult dx|Prim TB complex-cult dx +C0374943|T047|AB|010.05|ICD9CM|Prim TB complex-histo dx|Prim TB complex-histo dx +C0374944|T047|AB|010.06|ICD9CM|Prim TB complex-oth test|Prim TB complex-oth test +C0152531|T047|HT|010.1|ICD9CM|Tuberculous pleurisy in primary progressive tuberculosis|Tuberculous pleurisy in primary progressive tuberculosis +C0374945|T047|AB|010.10|ICD9CM|Prim TB pleurisy-unspec|Prim TB pleurisy-unspec +C0374945|T047|PT|010.10|ICD9CM|Tuberculous pleurisy in primary progressive tuberculosis, unspecified|Tuberculous pleurisy in primary progressive tuberculosis, unspecified +C0152532|T047|AB|010.11|ICD9CM|Prim TB pleurisy-no exam|Prim TB pleurisy-no exam +C0152533|T047|AB|010.12|ICD9CM|Prim TB pleur-exam unkn|Prim TB pleur-exam unkn +C0152534|T047|AB|010.13|ICD9CM|Prim TB pleuris-micro dx|Prim TB pleuris-micro dx +C0152535|T047|AB|010.14|ICD9CM|Prim TB pleurisy-cult dx|Prim TB pleurisy-cult dx +C0152536|T047|AB|010.15|ICD9CM|Prim TB pleuris-histo dx|Prim TB pleuris-histo dx +C0152537|T047|AB|010.16|ICD9CM|Prim TB pleuris-oth test|Prim TB pleuris-oth test +C0152538|T047|HT|010.8|ICD9CM|Other primary progressive tuberculosis|Other primary progressive tuberculosis +C0374946|T047|PT|010.80|ICD9CM|Other primary progressive tuberculosis, unspecified|Other primary progressive tuberculosis, unspecified +C0374946|T047|AB|010.80|ICD9CM|Prim prog TB NEC-unspec|Prim prog TB NEC-unspec +C0152539|T047|PT|010.81|ICD9CM|Other primary progressive tuberculosis, bacteriological or histological examination not done|Other primary progressive tuberculosis, bacteriological or histological examination not done +C0152539|T047|AB|010.81|ICD9CM|Prim prog TB NEC-no exam|Prim prog TB NEC-no exam +C0152540|T047|AB|010.82|ICD9CM|Prim pr TB NEC-exam unkn|Prim pr TB NEC-exam unkn +C0152541|T047|PT|010.83|ICD9CM|Other primary progressive tuberculosis, tubercle bacilli found (in sputum) by microscopy|Other primary progressive tuberculosis, tubercle bacilli found (in sputum) by microscopy +C0152541|T047|AB|010.83|ICD9CM|Prim prg TB NEC-micro dx|Prim prg TB NEC-micro dx +C0152542|T047|AB|010.84|ICD9CM|Prim prog TB NEC-cult dx|Prim prog TB NEC-cult dx +C0152543|T047|AB|010.85|ICD9CM|Prim prg TB NEC-histo dx|Prim prg TB NEC-histo dx +C0152544|T047|AB|010.86|ICD9CM|Prim prg TB NEC-oth test|Prim prg TB NEC-oth test +C1812610|T047|HT|010.9|ICD9CM|Primary tuberculous infection, unspecified type|Primary tuberculous infection, unspecified type +C1812611|T047|AB|010.90|ICD9CM|Primary TB NOS-unspec|Primary TB NOS-unspec +C1812611|T047|PT|010.90|ICD9CM|Primary tuberculous infection, unspecified, unspecified|Primary tuberculous infection, unspecified, unspecified +C0152546|T047|AB|010.91|ICD9CM|Primary TB NOS-no exam|Primary TB NOS-no exam +C0152546|T047|PT|010.91|ICD9CM|Primary tuberculous infection, unspecified, bacteriological or histological examination not done|Primary tuberculous infection, unspecified, bacteriological or histological examination not done +C0152547|T047|AB|010.92|ICD9CM|Primary TB NOS-exam unkn|Primary TB NOS-exam unkn +C0152548|T033|AB|010.93|ICD9CM|Primary TB NOS-micro dx|Primary TB NOS-micro dx +C0152548|T033|PT|010.93|ICD9CM|Primary tuberculous infection, unspecified, tubercle bacilli found (in sputum) by microscopy|Primary tuberculous infection, unspecified, tubercle bacilli found (in sputum) by microscopy +C0152549|T047|AB|010.94|ICD9CM|Primary TB NOS-cult dx|Primary TB NOS-cult dx +C0152550|T047|AB|010.95|ICD9CM|Primary TB NOS-histo dx|Primary TB NOS-histo dx +C0152551|T047|AB|010.96|ICD9CM|Primary TB NOS-oth test|Primary TB NOS-oth test +C0041327|T047|HT|011|ICD9CM|Pulmonary tuberculosis|Pulmonary tuberculosis +C0152552|T047|HT|011.0|ICD9CM|Tuberculosis of lung, infiltrative|Tuberculosis of lung, infiltrative +C0152552|T047|AB|011.00|ICD9CM|TB lung infiltr-unspec|TB lung infiltr-unspec +C0152552|T047|PT|011.00|ICD9CM|Tuberculosis of lung, infiltrative, unspecified|Tuberculosis of lung, infiltrative, unspecified +C0152553|T047|AB|011.01|ICD9CM|TB lung infiltr-no exam|TB lung infiltr-no exam +C0152553|T047|PT|011.01|ICD9CM|Tuberculosis of lung, infiltrative, bacteriological or histological examination not done|Tuberculosis of lung, infiltrative, bacteriological or histological examination not done +C0152554|T047|AB|011.02|ICD9CM|TB lung infiltr-exm unkn|TB lung infiltr-exm unkn +C0152554|T047|PT|011.02|ICD9CM|Tuberculosis of lung, infiltrative, bacteriological or histological examination unknown (at present)|Tuberculosis of lung, infiltrative, bacteriological or histological examination unknown (at present) +C0152555|T047|AB|011.03|ICD9CM|TB lung infiltr-micro dx|TB lung infiltr-micro dx +C0152555|T047|PT|011.03|ICD9CM|Tuberculosis of lung, infiltrative, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of lung, infiltrative, tubercle bacilli found (in sputum) by microscopy +C0152556|T047|AB|011.04|ICD9CM|TB lung infiltr-cult dx|TB lung infiltr-cult dx +C0152557|T047|AB|011.05|ICD9CM|TB lung infiltr-histo dx|TB lung infiltr-histo dx +C0152558|T047|AB|011.06|ICD9CM|TB lung infiltr-oth test|TB lung infiltr-oth test +C0152559|T047|HT|011.1|ICD9CM|Tuberculosis of lung, nodular|Tuberculosis of lung, nodular +C0152559|T047|AB|011.10|ICD9CM|TB lung nodular-unspec|TB lung nodular-unspec +C0152559|T047|PT|011.10|ICD9CM|Tuberculosis of lung, nodular, unspecified|Tuberculosis of lung, nodular, unspecified +C0152560|T047|AB|011.11|ICD9CM|TB lung nodular-no exam|TB lung nodular-no exam +C0152560|T047|PT|011.11|ICD9CM|Tuberculosis of lung, nodular, bacteriological or histological examination not done|Tuberculosis of lung, nodular, bacteriological or histological examination not done +C0152561|T047|AB|011.12|ICD9CM|TB lung nodul-exam unkn|TB lung nodul-exam unkn +C0152561|T047|PT|011.12|ICD9CM|Tuberculosis of lung, nodular, bacteriological or histological examination unknown (at present)|Tuberculosis of lung, nodular, bacteriological or histological examination unknown (at present) +C0152562|T047|AB|011.13|ICD9CM|TB lung nodular-micro dx|TB lung nodular-micro dx +C0152562|T047|PT|011.13|ICD9CM|Tuberculosis of lung, nodular, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of lung, nodular, tubercle bacilli found (in sputum) by microscopy +C0152563|T047|AB|011.14|ICD9CM|TB lung nodular-cult dx|TB lung nodular-cult dx +C0152564|T047|AB|011.15|ICD9CM|TB lung nodular-histo dx|TB lung nodular-histo dx +C0152565|T047|AB|011.16|ICD9CM|TB lung nodular-oth test|TB lung nodular-oth test +C0152566|T047|HT|011.2|ICD9CM|Tuberculosis of lung with cavitation|Tuberculosis of lung with cavitation +C0152566|T047|AB|011.20|ICD9CM|TB lung w cavity-unspec|TB lung w cavity-unspec +C0152566|T047|PT|011.20|ICD9CM|Tuberculosis of lung with cavitation, unspecified|Tuberculosis of lung with cavitation, unspecified +C0152567|T047|AB|011.21|ICD9CM|TB lung w cavity-no exam|TB lung w cavity-no exam +C0152567|T047|PT|011.21|ICD9CM|Tuberculosis of lung with cavitation, bacteriological or histological examination not done|Tuberculosis of lung with cavitation, bacteriological or histological examination not done +C0152568|T047|AB|011.22|ICD9CM|TB lung cavity-exam unkn|TB lung cavity-exam unkn +C0152569|T047|AB|011.23|ICD9CM|TB lung w cavit-micro dx|TB lung w cavit-micro dx +C0152569|T047|PT|011.23|ICD9CM|Tuberculosis of lung with cavitation, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of lung with cavitation, tubercle bacilli found (in sputum) by microscopy +C0152570|T047|AB|011.24|ICD9CM|TB lung w cavity-cult dx|TB lung w cavity-cult dx +C0152571|T047|AB|011.25|ICD9CM|TB lung w cavit-histo dx|TB lung w cavit-histo dx +C0152572|T047|AB|011.26|ICD9CM|TB lung w cavit-oth test|TB lung w cavit-oth test +C0152573|T047|HT|011.3|ICD9CM|Tuberculosis of bronchus|Tuberculosis of bronchus +C0152573|T047|AB|011.30|ICD9CM|TB of bronchus-unspec|TB of bronchus-unspec +C0152573|T047|PT|011.30|ICD9CM|Tuberculosis of bronchus, unspecified|Tuberculosis of bronchus, unspecified +C0152574|T047|AB|011.31|ICD9CM|TB of bronchus-no exam|TB of bronchus-no exam +C0152574|T047|PT|011.31|ICD9CM|Tuberculosis of bronchus, bacteriological or histological examination not done|Tuberculosis of bronchus, bacteriological or histological examination not done +C0152575|T047|AB|011.32|ICD9CM|TB of bronchus-exam unkn|TB of bronchus-exam unkn +C0152575|T047|PT|011.32|ICD9CM|Tuberculosis of bronchus, bacteriological or histological examination unknown (at present)|Tuberculosis of bronchus, bacteriological or histological examination unknown (at present) +C0152576|T047|AB|011.33|ICD9CM|TB of bronchus-micro dx|TB of bronchus-micro dx +C0152576|T047|PT|011.33|ICD9CM|Tuberculosis of bronchus, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of bronchus, tubercle bacilli found (in sputum) by microscopy +C0152577|T047|AB|011.34|ICD9CM|TB of bronchus-cult dx|TB of bronchus-cult dx +C0152578|T047|AB|011.35|ICD9CM|TB of bronchus-histo dx|TB of bronchus-histo dx +C0152579|T047|AB|011.36|ICD9CM|TB of bronchus-oth test|TB of bronchus-oth test +C0041336|T047|HT|011.4|ICD9CM|Tuberculous fibrosis of lung|Tuberculous fibrosis of lung +C0041336|T047|AB|011.40|ICD9CM|TB lung fibrosis-unspec|TB lung fibrosis-unspec +C0041336|T047|PT|011.40|ICD9CM|Tuberculous fibrosis of lung, unspecified|Tuberculous fibrosis of lung, unspecified +C0152580|T047|AB|011.41|ICD9CM|TB lung fibrosis-no exam|TB lung fibrosis-no exam +C0152580|T047|PT|011.41|ICD9CM|Tuberculous fibrosis of lung, bacteriological or histological examination not done|Tuberculous fibrosis of lung, bacteriological or histological examination not done +C0152581|T047|AB|011.42|ICD9CM|TB lung fibros-exam unkn|TB lung fibros-exam unkn +C0152581|T047|PT|011.42|ICD9CM|Tuberculous fibrosis of lung, bacteriological or histological examination unknown (at present)|Tuberculous fibrosis of lung, bacteriological or histological examination unknown (at present) +C0152582|T047|AB|011.43|ICD9CM|TB lung fibros-micro dx|TB lung fibros-micro dx +C0152582|T047|PT|011.43|ICD9CM|Tuberculous fibrosis of lung, tubercle bacilli found (in sputum) by microscopy|Tuberculous fibrosis of lung, tubercle bacilli found (in sputum) by microscopy +C0152583|T047|AB|011.44|ICD9CM|TB lung fibrosis-cult dx|TB lung fibrosis-cult dx +C0152584|T047|AB|011.45|ICD9CM|TB lung fibros-histo dx|TB lung fibros-histo dx +C0152585|T047|AB|011.46|ICD9CM|TB lung fibros-oth test|TB lung fibros-oth test +C0152586|T047|HT|011.5|ICD9CM|Tuberculous bronchiectasis|Tuberculous bronchiectasis +C0152586|T047|AB|011.50|ICD9CM|TB bronchiectasis-unspec|TB bronchiectasis-unspec +C0152586|T047|PT|011.50|ICD9CM|Tuberculous bronchiectasis, unspecified|Tuberculous bronchiectasis, unspecified +C0152587|T047|AB|011.51|ICD9CM|TB bronchiect-no exam|TB bronchiect-no exam +C0152587|T047|PT|011.51|ICD9CM|Tuberculous bronchiectasis, bacteriological or histological examination not done|Tuberculous bronchiectasis, bacteriological or histological examination not done +C0152588|T047|AB|011.52|ICD9CM|TB bronchiect-exam unkn|TB bronchiect-exam unkn +C0152588|T047|PT|011.52|ICD9CM|Tuberculous bronchiectasis, bacteriological or histological examination unknown (at present)|Tuberculous bronchiectasis, bacteriological or histological examination unknown (at present) +C0152589|T047|AB|011.53|ICD9CM|TB bronchiect-micro dx|TB bronchiect-micro dx +C0152589|T047|PT|011.53|ICD9CM|Tuberculous bronchiectasis, tubercle bacilli found (in sputum) by microscopy|Tuberculous bronchiectasis, tubercle bacilli found (in sputum) by microscopy +C0152590|T047|AB|011.54|ICD9CM|TB bronchiect-cult dx|TB bronchiect-cult dx +C0152591|T047|AB|011.55|ICD9CM|TB bronchiect-histo dx|TB bronchiect-histo dx +C0152592|T047|AB|011.56|ICD9CM|TB bronchiect-oth test|TB bronchiect-oth test +C0275891|T047|HT|011.6|ICD9CM|Tuberculous pneumonia [any form]|Tuberculous pneumonia [any form] +C0374952|T047|AB|011.60|ICD9CM|TB pneumonia-unspec|TB pneumonia-unspec +C0374952|T047|PT|011.60|ICD9CM|Tuberculous pneumonia [any form], unspecified|Tuberculous pneumonia [any form], unspecified +C0152594|T047|AB|011.61|ICD9CM|TB pneumonia-no exam|TB pneumonia-no exam +C0152594|T047|PT|011.61|ICD9CM|Tuberculous pneumonia [any form], bacteriological or histological examination not done|Tuberculous pneumonia [any form], bacteriological or histological examination not done +C0152595|T047|AB|011.62|ICD9CM|TB pneumonia-exam unkn|TB pneumonia-exam unkn +C0152595|T047|PT|011.62|ICD9CM|Tuberculous pneumonia [any form], bacteriological or histological examination unknown (at present)|Tuberculous pneumonia [any form], bacteriological or histological examination unknown (at present) +C0152596|T047|AB|011.63|ICD9CM|TB pneumonia-micro dx|TB pneumonia-micro dx +C0152596|T047|PT|011.63|ICD9CM|Tuberculous pneumonia [any form], tubercle bacilli found (in sputum) by microscopy|Tuberculous pneumonia [any form], tubercle bacilli found (in sputum) by microscopy +C0152597|T047|AB|011.64|ICD9CM|TB pneumonia-cult dx|TB pneumonia-cult dx +C0152598|T047|AB|011.65|ICD9CM|TB pneumonia-histo dx|TB pneumonia-histo dx +C0152599|T047|AB|011.66|ICD9CM|TB pneumonia-oth test|TB pneumonia-oth test +C0152600|T047|HT|011.7|ICD9CM|Tuberculous pneumothorax|Tuberculous pneumothorax +C0152600|T047|AB|011.70|ICD9CM|TB pneumothorax-unspec|TB pneumothorax-unspec +C0152600|T047|PT|011.70|ICD9CM|Tuberculous pneumothorax, unspecified|Tuberculous pneumothorax, unspecified +C0152601|T047|AB|011.71|ICD9CM|TB pneumothorax-no exam|TB pneumothorax-no exam +C0152601|T047|PT|011.71|ICD9CM|Tuberculous pneumothorax, bacteriological or histological examination not done|Tuberculous pneumothorax, bacteriological or histological examination not done +C0152602|T047|AB|011.72|ICD9CM|TB pneumothorx-exam unkn|TB pneumothorx-exam unkn +C0152602|T047|PT|011.72|ICD9CM|Tuberculous pneumothorax, bacteriological or histological examination unknown (at present)|Tuberculous pneumothorax, bacteriological or histological examination unknown (at present) +C0152603|T047|AB|011.73|ICD9CM|TB pneumothorax-micro dx|TB pneumothorax-micro dx +C0152603|T047|PT|011.73|ICD9CM|Tuberculous pneumothorax, tubercle bacilli found (in sputum) by microscopy|Tuberculous pneumothorax, tubercle bacilli found (in sputum) by microscopy +C0152604|T047|AB|011.74|ICD9CM|TB pneumothorax-cult dx|TB pneumothorax-cult dx +C0152605|T047|AB|011.75|ICD9CM|TB pneumothorax-histo dx|TB pneumothorax-histo dx +C0152606|T047|AB|011.76|ICD9CM|TB pneumothorax-oth test|TB pneumothorax-oth test +C0152607|T047|HT|011.8|ICD9CM|Other specified pulmonary tuberculosis|Other specified pulmonary tuberculosis +C0374954|T047|PT|011.80|ICD9CM|Other specified pulmonary tuberculosis, unspecified|Other specified pulmonary tuberculosis, unspecified +C0374954|T047|AB|011.80|ICD9CM|Pulmonary TB NEC-unspec|Pulmonary TB NEC-unspec +C0152608|T047|PT|011.81|ICD9CM|Other specified pulmonary tuberculosis, bacteriological or histological examination not done|Other specified pulmonary tuberculosis, bacteriological or histological examination not done +C0152608|T047|AB|011.81|ICD9CM|Pulmonary TB NEC-no exam|Pulmonary TB NEC-no exam +C0152609|T047|AB|011.82|ICD9CM|Pulmon TB NEC-exam unkn|Pulmon TB NEC-exam unkn +C0152610|T047|PT|011.83|ICD9CM|Other specified pulmonary tuberculosis, tubercle bacilli found (in sputum) by microscopy|Other specified pulmonary tuberculosis, tubercle bacilli found (in sputum) by microscopy +C0152610|T047|AB|011.83|ICD9CM|Pulmon TB NEC-micro dx|Pulmon TB NEC-micro dx +C0152611|T047|AB|011.84|ICD9CM|Pulmon TB NEC-cult dx|Pulmon TB NEC-cult dx +C0152612|T047|AB|011.85|ICD9CM|Pulmon TB NEC-histo dx|Pulmon TB NEC-histo dx +C0152613|T047|AB|011.86|ICD9CM|Pulmon TB NEC-oth test|Pulmon TB NEC-oth test +C0041327|T047|HT|011.9|ICD9CM|Unspecified pulmonary tuberculosis|Unspecified pulmonary tuberculosis +C0041327|T047|AB|011.90|ICD9CM|Pulmonary TB NOS-unspec|Pulmonary TB NOS-unspec +C0041327|T047|PT|011.90|ICD9CM|Pulmonary tuberculosis, unspecified, unspecified|Pulmonary tuberculosis, unspecified, unspecified +C0152614|T047|AB|011.91|ICD9CM|Pulmonary TB NOS-no exam|Pulmonary TB NOS-no exam +C0152614|T047|PT|011.91|ICD9CM|Pulmonary tuberculosis, unspecified, bacteriological or histological examination not done|Pulmonary tuberculosis, unspecified, bacteriological or histological examination not done +C0152615|T047|AB|011.92|ICD9CM|Pulmon TB NOS-exam unkn|Pulmon TB NOS-exam unkn +C0152616|T047|AB|011.93|ICD9CM|Pulmon TB NOS-micro dx|Pulmon TB NOS-micro dx +C0152616|T047|PT|011.93|ICD9CM|Pulmonary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy|Pulmonary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy +C0152617|T047|AB|011.94|ICD9CM|Pulmon TB NOS-cult dx|Pulmon TB NOS-cult dx +C0152618|T047|AB|011.95|ICD9CM|Pulmon TB NOS-histo dx|Pulmon TB NOS-histo dx +C0152619|T047|AB|011.96|ICD9CM|Pulmon TB NOS-oth test|Pulmon TB NOS-oth test +C0152620|T047|HT|012|ICD9CM|Other respiratory tuberculosis|Other respiratory tuberculosis +C0041326|T047|HT|012.0|ICD9CM|Tuberculous pleurisy|Tuberculous pleurisy +C0041326|T047|AB|012.00|ICD9CM|TB pleurisy-unspec|TB pleurisy-unspec +C0041326|T047|PT|012.00|ICD9CM|Tuberculous pleurisy, unspecified|Tuberculous pleurisy, unspecified +C0152621|T047|AB|012.01|ICD9CM|TB pleurisy-no exam|TB pleurisy-no exam +C0152621|T047|PT|012.01|ICD9CM|Tuberculous pleurisy, bacteriological or histological examination not done|Tuberculous pleurisy, bacteriological or histological examination not done +C0152622|T047|AB|012.02|ICD9CM|TB pleurisy-exam unkn|TB pleurisy-exam unkn +C0152622|T047|PT|012.02|ICD9CM|Tuberculous pleurisy, bacteriological or histological examination unknown (at present)|Tuberculous pleurisy, bacteriological or histological examination unknown (at present) +C0152623|T047|AB|012.03|ICD9CM|TB pleurisy-micro dx|TB pleurisy-micro dx +C0152623|T047|PT|012.03|ICD9CM|Tuberculous pleurisy, tubercle bacilli found (in sputum) by microscopy|Tuberculous pleurisy, tubercle bacilli found (in sputum) by microscopy +C0152624|T047|AB|012.04|ICD9CM|TB pleurisy-cult dx|TB pleurisy-cult dx +C0152625|T047|AB|012.05|ICD9CM|TB pleurisy-histolog dx|TB pleurisy-histolog dx +C0152626|T047|AB|012.06|ICD9CM|TB pleurisy-oth test|TB pleurisy-oth test +C0152627|T047|HT|012.1|ICD9CM|Tuberculosis of intrathoracic lymph nodes|Tuberculosis of intrathoracic lymph nodes +C0152627|T047|AB|012.10|ICD9CM|TB thoracic nodes-unspec|TB thoracic nodes-unspec +C0152627|T047|PT|012.10|ICD9CM|Tuberculosis of intrathoracic lymph nodes, unspecified|Tuberculosis of intrathoracic lymph nodes, unspecified +C0152628|T047|AB|012.11|ICD9CM|TB thorax node-no exam|TB thorax node-no exam +C0152628|T047|PT|012.11|ICD9CM|Tuberculosis of intrathoracic lymph nodes, bacteriological or histological examination not done|Tuberculosis of intrathoracic lymph nodes, bacteriological or histological examination not done +C0152629|T047|AB|012.12|ICD9CM|TB thorax node-exam unkn|TB thorax node-exam unkn +C0152630|T047|AB|012.13|ICD9CM|TB thorax node-micro dx|TB thorax node-micro dx +C0152630|T047|PT|012.13|ICD9CM|Tuberculosis of intrathoracic lymph nodes, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of intrathoracic lymph nodes, tubercle bacilli found (in sputum) by microscopy +C0152631|T047|AB|012.14|ICD9CM|TB thorax node-cult dx|TB thorax node-cult dx +C0152632|T047|AB|012.15|ICD9CM|TB thorax node-histo dx|TB thorax node-histo dx +C0152633|T047|AB|012.16|ICD9CM|TB thorax node-oth test|TB thorax node-oth test +C0152634|T047|HT|012.2|ICD9CM|Isolated tracheal or bronchial tuberculosis|Isolated tracheal or bronchial tuberculosis +C0152634|T047|AB|012.20|ICD9CM|Isol tracheal tb-unspec|Isol tracheal tb-unspec +C0152634|T047|PT|012.20|ICD9CM|Isolated tracheal or bronchial tuberculosis, unspecified|Isolated tracheal or bronchial tuberculosis, unspecified +C0152635|T047|AB|012.21|ICD9CM|Isol tracheal tb-no exam|Isol tracheal tb-no exam +C0152635|T047|PT|012.21|ICD9CM|Isolated tracheal or bronchial tuberculosis, bacteriological or histological examination not done|Isolated tracheal or bronchial tuberculosis, bacteriological or histological examination not done +C0152636|T047|AB|012.22|ICD9CM|Isol trach tb-exam unkn|Isol trach tb-exam unkn +C0152637|T047|AB|012.23|ICD9CM|Isolat trach tb-micro dx|Isolat trach tb-micro dx +C0152637|T047|PT|012.23|ICD9CM|Isolated tracheal or bronchial tuberculosis, tubercle bacilli found (in sputum) by microscopy|Isolated tracheal or bronchial tuberculosis, tubercle bacilli found (in sputum) by microscopy +C0152638|T047|AB|012.24|ICD9CM|Isol tracheal tb-cult dx|Isol tracheal tb-cult dx +C0152639|T047|AB|012.25|ICD9CM|Isolat trach tb-histo dx|Isolat trach tb-histo dx +C0152640|T047|AB|012.26|ICD9CM|Isolat trach tb-oth test|Isolat trach tb-oth test +C0041315|T047|HT|012.3|ICD9CM|Tuberculous laryngitis|Tuberculous laryngitis +C0374955|T047|AB|012.30|ICD9CM|TB laryngitis-unspec|TB laryngitis-unspec +C0374955|T047|PT|012.30|ICD9CM|Tuberculous laryngitis, unspecified|Tuberculous laryngitis, unspecified +C0152641|T047|AB|012.31|ICD9CM|TB laryngitis-no exam|TB laryngitis-no exam +C0152641|T047|PT|012.31|ICD9CM|Tuberculous laryngitis, bacteriological or histological examination not done|Tuberculous laryngitis, bacteriological or histological examination not done +C0152642|T047|AB|012.32|ICD9CM|TB laryngitis-exam unkn|TB laryngitis-exam unkn +C0152642|T047|PT|012.32|ICD9CM|Tuberculous laryngitis, bacteriological or histological examination unknown (at present)|Tuberculous laryngitis, bacteriological or histological examination unknown (at present) +C0152643|T047|AB|012.33|ICD9CM|TB laryngitis-micro dx|TB laryngitis-micro dx +C0152643|T047|PT|012.33|ICD9CM|Tuberculous laryngitis, tubercle bacilli found (in sputum) by microscopy|Tuberculous laryngitis, tubercle bacilli found (in sputum) by microscopy +C0152644|T047|AB|012.34|ICD9CM|TB laryngitis-cult dx|TB laryngitis-cult dx +C0152645|T047|AB|012.35|ICD9CM|TB laryngitis-histo dx|TB laryngitis-histo dx +C0152646|T047|AB|012.36|ICD9CM|TB laryngitis-oth test|TB laryngitis-oth test +C0152647|T047|HT|012.8|ICD9CM|Other specified respiratory tuberculosis|Other specified respiratory tuberculosis +C0152647|T047|PT|012.80|ICD9CM|Other specified respiratory tuberculosis, unspecified|Other specified respiratory tuberculosis, unspecified +C0152647|T047|AB|012.80|ICD9CM|Resp TB NEC-unspec|Resp TB NEC-unspec +C0152648|T047|PT|012.81|ICD9CM|Other specified respiratory tuberculosis, bacteriological or histological examination not done|Other specified respiratory tuberculosis, bacteriological or histological examination not done +C0152648|T047|AB|012.81|ICD9CM|Resp TB NEC-no exam|Resp TB NEC-no exam +C0152649|T047|AB|012.82|ICD9CM|Resp TB NEC-exam unkn|Resp TB NEC-exam unkn +C0152650|T047|PT|012.83|ICD9CM|Other specified respiratory tuberculosis, tubercle bacilli found (in sputum) by microscopy|Other specified respiratory tuberculosis, tubercle bacilli found (in sputum) by microscopy +C0152650|T047|AB|012.83|ICD9CM|Resp TB NEC-micro dx|Resp TB NEC-micro dx +C0152651|T047|AB|012.84|ICD9CM|Resp TB NEC-cult dx|Resp TB NEC-cult dx +C0152652|T047|AB|012.85|ICD9CM|Resp TB NEC-histo dx|Resp TB NEC-histo dx +C0152653|T047|AB|012.86|ICD9CM|Resp TB NEC-oth test|Resp TB NEC-oth test +C0152654|T047|HT|013|ICD9CM|Tuberculosis of meninges and central nervous system|Tuberculosis of meninges and central nervous system +C0041318|T047|HT|013.0|ICD9CM|Tuberculous meningitis|Tuberculous meningitis +C0041318|T047|AB|013.00|ICD9CM|TB meningitis-unspec|TB meningitis-unspec +C0041318|T047|PT|013.00|ICD9CM|Tuberculous meningitis, unspecified|Tuberculous meningitis, unspecified +C0152655|T047|AB|013.01|ICD9CM|TB meningitis-no exam|TB meningitis-no exam +C0152655|T047|PT|013.01|ICD9CM|Tuberculous meningitis, bacteriological or histological examination not done|Tuberculous meningitis, bacteriological or histological examination not done +C0152656|T047|AB|013.02|ICD9CM|TB meningitis-exam unkn|TB meningitis-exam unkn +C0152656|T047|PT|013.02|ICD9CM|Tuberculous meningitis, bacteriological or histological examination unknown (at present)|Tuberculous meningitis, bacteriological or histological examination unknown (at present) +C0152657|T047|AB|013.03|ICD9CM|TB meningitis-micro dx|TB meningitis-micro dx +C0152657|T047|PT|013.03|ICD9CM|Tuberculous meningitis, tubercle bacilli found (in sputum) by microscopy|Tuberculous meningitis, tubercle bacilli found (in sputum) by microscopy +C0152658|T047|AB|013.04|ICD9CM|TB meningitis-cult dx|TB meningitis-cult dx +C0152659|T047|AB|013.05|ICD9CM|TB meningitis-histo dx|TB meningitis-histo dx +C0152660|T047|AB|013.06|ICD9CM|TB meningitis-oth test|TB meningitis-oth test +C0152661|T047|HT|013.1|ICD9CM|Tuberculoma of meninges|Tuberculoma of meninges +C0152661|T047|PT|013.10|ICD9CM|Tuberculoma of meninges, unspecified|Tuberculoma of meninges, unspecified +C0152661|T047|AB|013.10|ICD9CM|Tubrclma meninges-unspec|Tubrclma meninges-unspec +C0152662|T047|PT|013.11|ICD9CM|Tuberculoma of meninges, bacteriological or histological examination not done|Tuberculoma of meninges, bacteriological or histological examination not done +C0152662|T047|AB|013.11|ICD9CM|Tubrclma mening-no exam|Tubrclma mening-no exam +C0152663|T047|PT|013.12|ICD9CM|Tuberculoma of meninges, bacteriological or histological examination unknown (at present)|Tuberculoma of meninges, bacteriological or histological examination unknown (at present) +C0152663|T047|AB|013.12|ICD9CM|Tubrclma menin-exam unkn|Tubrclma menin-exam unkn +C0152664|T047|PT|013.13|ICD9CM|Tuberculoma of meninges, tubercle bacilli found (in sputum) by microscopy|Tuberculoma of meninges, tubercle bacilli found (in sputum) by microscopy +C0152664|T047|AB|013.13|ICD9CM|Tubrclma mening-micro dx|Tubrclma mening-micro dx +C0152665|T047|AB|013.14|ICD9CM|Tubrclma mening-cult dx|Tubrclma mening-cult dx +C0152666|T047|AB|013.15|ICD9CM|Tubrclma mening-histo dx|Tubrclma mening-histo dx +C0152667|T047|AB|013.16|ICD9CM|Tubrclma mening-oth test|Tubrclma mening-oth test +C0085388|T047|HT|013.2|ICD9CM|Tuberculoma of brain|Tuberculoma of brain +C0085388|T047|AB|013.20|ICD9CM|Tuberculoma brain-unspec|Tuberculoma brain-unspec +C0085388|T047|PT|013.20|ICD9CM|Tuberculoma of brain, unspecified|Tuberculoma of brain, unspecified +C0152669|T047|PT|013.21|ICD9CM|Tuberculoma of brain, bacteriological or histological examination not done|Tuberculoma of brain, bacteriological or histological examination not done +C0152669|T047|AB|013.21|ICD9CM|Tubrcloma brain-no exam|Tubrcloma brain-no exam +C0152670|T047|PT|013.22|ICD9CM|Tuberculoma of brain, bacteriological or histological examination unknown (at present)|Tuberculoma of brain, bacteriological or histological examination unknown (at present) +C0152670|T047|AB|013.22|ICD9CM|Tubrclma brain-exam unkn|Tubrclma brain-exam unkn +C0152671|T047|PT|013.23|ICD9CM|Tuberculoma of brain, tubercle bacilli found (in sputum) by microscopy|Tuberculoma of brain, tubercle bacilli found (in sputum) by microscopy +C0152671|T047|AB|013.23|ICD9CM|Tubrcloma brain-micro dx|Tubrcloma brain-micro dx +C0152672|T047|AB|013.24|ICD9CM|Tubrcloma brain-cult dx|Tubrcloma brain-cult dx +C0152673|T047|AB|013.25|ICD9CM|Tubrcloma brain-histo dx|Tubrcloma brain-histo dx +C0152674|T047|AB|013.26|ICD9CM|Tubrcloma brain-oth test|Tubrcloma brain-oth test +C2607948|T047|HT|013.3|ICD9CM|Tuberculous abscess of brain|Tuberculous abscess of brain +C0374958|T047|AB|013.30|ICD9CM|TB brain abscess-unspec|TB brain abscess-unspec +C0374958|T047|PT|013.30|ICD9CM|Tuberculous abscess of brain, unspecified|Tuberculous abscess of brain, unspecified +C0152676|T047|AB|013.31|ICD9CM|TB brain abscess-no exam|TB brain abscess-no exam +C0152676|T047|PT|013.31|ICD9CM|Tuberculous abscess of brain, bacteriological or histological examination not done|Tuberculous abscess of brain, bacteriological or histological examination not done +C0152677|T047|AB|013.32|ICD9CM|TB brain absc-exam unkn|TB brain absc-exam unkn +C0152677|T047|PT|013.32|ICD9CM|Tuberculous abscess of brain, bacteriological or histological examination unknown (at present)|Tuberculous abscess of brain, bacteriological or histological examination unknown (at present) +C0152678|T047|AB|013.33|ICD9CM|TB brain absc-micro dx|TB brain absc-micro dx +C0152678|T047|PT|013.33|ICD9CM|Tuberculous abscess of brain, tubercle bacilli found (in sputum) by microscopy|Tuberculous abscess of brain, tubercle bacilli found (in sputum) by microscopy +C0152679|T047|AB|013.34|ICD9CM|TB brain abscess-cult dx|TB brain abscess-cult dx +C0152680|T047|AB|013.35|ICD9CM|TB brain absc-histo dx|TB brain absc-histo dx +C0152681|T047|AB|013.36|ICD9CM|TB brain absc-oth test|TB brain absc-oth test +C0338439|T047|HT|013.4|ICD9CM|Tuberculoma of spinal cord|Tuberculoma of spinal cord +C0338439|T047|PT|013.40|ICD9CM|Tuberculoma of spinal cord, unspecified|Tuberculoma of spinal cord, unspecified +C0338439|T047|AB|013.40|ICD9CM|Tubrclma sp cord-unspec|Tubrclma sp cord-unspec +C0152683|T047|PT|013.41|ICD9CM|Tuberculoma of spinal cord, bacteriological or histological examination not done|Tuberculoma of spinal cord, bacteriological or histological examination not done +C0152683|T047|AB|013.41|ICD9CM|Tubrclma sp cord-no exam|Tubrclma sp cord-no exam +C0152684|T047|PT|013.42|ICD9CM|Tuberculoma of spinal cord, bacteriological or histological examination unknown (at present)|Tuberculoma of spinal cord, bacteriological or histological examination unknown (at present) +C0152684|T047|AB|013.42|ICD9CM|Tubrclma sp cd-exam unkn|Tubrclma sp cd-exam unkn +C0152685|T047|PT|013.43|ICD9CM|Tuberculoma of spinal cord, tubercle bacilli found (in sputum) by microscopy|Tuberculoma of spinal cord, tubercle bacilli found (in sputum) by microscopy +C0152685|T047|AB|013.43|ICD9CM|Tubrclma sp crd-micro dx|Tubrclma sp crd-micro dx +C0152686|T047|AB|013.44|ICD9CM|Tubrclma sp cord-cult dx|Tubrclma sp cord-cult dx +C0152687|T047|AB|013.45|ICD9CM|Tubrclma sp crd-histo dx|Tubrclma sp crd-histo dx +C0152688|T047|AB|013.46|ICD9CM|Tubrclma sp crd-oth test|Tubrclma sp crd-oth test +C0338439|T047|HT|013.5|ICD9CM|Tuberculous abscess of spinal cord|Tuberculous abscess of spinal cord +C0338439|T047|AB|013.50|ICD9CM|TB sp crd abscess-unspec|TB sp crd abscess-unspec +C0338439|T047|PT|013.50|ICD9CM|Tuberculous abscess of spinal cord, unspecified|Tuberculous abscess of spinal cord, unspecified +C0152690|T047|AB|013.51|ICD9CM|TB sp crd absc-no exam|TB sp crd absc-no exam +C0152690|T047|PT|013.51|ICD9CM|Tuberculous abscess of spinal cord, bacteriological or histological examination not done|Tuberculous abscess of spinal cord, bacteriological or histological examination not done +C0152691|T047|AB|013.52|ICD9CM|TB sp crd absc-exam unkn|TB sp crd absc-exam unkn +C0152691|T047|PT|013.52|ICD9CM|Tuberculous abscess of spinal cord, bacteriological or histological examination unknown (at present)|Tuberculous abscess of spinal cord, bacteriological or histological examination unknown (at present) +C0152692|T047|AB|013.53|ICD9CM|TB sp crd absc-micro dx|TB sp crd absc-micro dx +C0152692|T047|PT|013.53|ICD9CM|Tuberculous abscess of spinal cord, tubercle bacilli found (in sputum) by microscopy|Tuberculous abscess of spinal cord, tubercle bacilli found (in sputum) by microscopy +C0152693|T047|AB|013.54|ICD9CM|TB sp crd absc-cult dx|TB sp crd absc-cult dx +C0152694|T047|AB|013.55|ICD9CM|TB sp crd absc-histo dx|TB sp crd absc-histo dx +C0152695|T047|AB|013.56|ICD9CM|TB sp crd absc-oth test|TB sp crd absc-oth test +C0152696|T047|HT|013.6|ICD9CM|Tuberculous encephalitis or myelitis|Tuberculous encephalitis or myelitis +C0152696|T047|AB|013.60|ICD9CM|TB encephalitis-unspec|TB encephalitis-unspec +C0152696|T047|PT|013.60|ICD9CM|Tuberculous encephalitis or myelitis, unspecified|Tuberculous encephalitis or myelitis, unspecified +C0152697|T047|AB|013.61|ICD9CM|TB encephalitis-no exam|TB encephalitis-no exam +C0152697|T047|PT|013.61|ICD9CM|Tuberculous encephalitis or myelitis, bacteriological or histological examination not done|Tuberculous encephalitis or myelitis, bacteriological or histological examination not done +C0152698|T047|AB|013.62|ICD9CM|TB encephalit-exam unkn|TB encephalit-exam unkn +C0152699|T047|AB|013.63|ICD9CM|TB encephalitis-micro dx|TB encephalitis-micro dx +C0152699|T047|PT|013.63|ICD9CM|Tuberculous encephalitis or myelitis, tubercle bacilli found (in sputum) by microscopy|Tuberculous encephalitis or myelitis, tubercle bacilli found (in sputum) by microscopy +C0152700|T047|AB|013.64|ICD9CM|TB encephalitis-cult dx|TB encephalitis-cult dx +C0152701|T047|AB|013.65|ICD9CM|TB encephalitis-histo dx|TB encephalitis-histo dx +C0152702|T047|AB|013.66|ICD9CM|TB encephalitis-oth test|TB encephalitis-oth test +C0152703|T047|HT|013.8|ICD9CM|Other specified tuberculosis of central nervous system|Other specified tuberculosis of central nervous system +C0374959|T047|AB|013.80|ICD9CM|Cns TB NEC-unspec|Cns TB NEC-unspec +C0374959|T047|PT|013.80|ICD9CM|Other specified tuberculosis of central nervous system, unspecified|Other specified tuberculosis of central nervous system, unspecified +C0152704|T047|AB|013.81|ICD9CM|Cns TB NEC-no exam|Cns TB NEC-no exam +C0152705|T047|AB|013.82|ICD9CM|Cns TB NEC-exam unkn|Cns TB NEC-exam unkn +C0152706|T047|AB|013.83|ICD9CM|Cns TB NEC-micro dx|Cns TB NEC-micro dx +C0152707|T047|AB|013.84|ICD9CM|Cns TB NEC-cult dx|Cns TB NEC-cult dx +C0152708|T047|AB|013.85|ICD9CM|Cns TB NEC-histo dx|Cns TB NEC-histo dx +C0152709|T047|AB|013.86|ICD9CM|Cns TB NEC-oth test|Cns TB NEC-oth test +C0275904|T047|HT|013.9|ICD9CM|Unspecified tuberculosis of central nervous system|Unspecified tuberculosis of central nervous system +C0275904|T047|AB|013.90|ICD9CM|Cns TB NOS-unspec|Cns TB NOS-unspec +C0275904|T047|PT|013.90|ICD9CM|Unspecified tuberculosis of central nervous system, unspecified|Unspecified tuberculosis of central nervous system, unspecified +C0152711|T047|AB|013.91|ICD9CM|Cns TB NOS-no exam|Cns TB NOS-no exam +C0152712|T047|AB|013.92|ICD9CM|Cns TB NOS-exam unkn|Cns TB NOS-exam unkn +C0152713|T047|AB|013.93|ICD9CM|Cns TB NOS-micro dx|Cns TB NOS-micro dx +C0152713|T047|PT|013.93|ICD9CM|Unspecified tuberculosis of central nervous system, tubercle bacilli found (in sputum) by microscopy|Unspecified tuberculosis of central nervous system, tubercle bacilli found (in sputum) by microscopy +C0152714|T047|AB|013.94|ICD9CM|Cns TB NOS-cult dx|Cns TB NOS-cult dx +C0152715|T047|AB|013.95|ICD9CM|Cns TB NOS-histo dx|Cns TB NOS-histo dx +C0152716|T047|AB|013.96|ICD9CM|Cns TB NOS-oth test|Cns TB NOS-oth test +C0152717|T047|HT|014|ICD9CM|Tuberculosis of intestines, peritoneum, and mesenteric glands|Tuberculosis of intestines, peritoneum, and mesenteric glands +C0041325|T047|HT|014.0|ICD9CM|Tuberculous peritonitis|Tuberculous peritonitis +C0374961|T047|AB|014.00|ICD9CM|TB peritonitis-unspec|TB peritonitis-unspec +C0374961|T047|PT|014.00|ICD9CM|Tuberculous peritonitis, unspecified|Tuberculous peritonitis, unspecified +C0152718|T047|AB|014.01|ICD9CM|TB peritonitis-no exam|TB peritonitis-no exam +C0152718|T047|PT|014.01|ICD9CM|Tuberculous peritonitis, bacteriological or histological examination not done|Tuberculous peritonitis, bacteriological or histological examination not done +C0152719|T047|AB|014.02|ICD9CM|TB peritonitis-exam unkn|TB peritonitis-exam unkn +C0152719|T047|PT|014.02|ICD9CM|Tuberculous peritonitis, bacteriological or histological examination unknown (at present)|Tuberculous peritonitis, bacteriological or histological examination unknown (at present) +C0152720|T047|AB|014.03|ICD9CM|TB peritonitis-micro dx|TB peritonitis-micro dx +C0152720|T047|PT|014.03|ICD9CM|Tuberculous peritonitis, tubercle bacilli found (in sputum) by microscopy|Tuberculous peritonitis, tubercle bacilli found (in sputum) by microscopy +C0152721|T047|AB|014.04|ICD9CM|TB peritonitis-cult dx|TB peritonitis-cult dx +C0152722|T047|AB|014.05|ICD9CM|TB peritonitis-histo dx|TB peritonitis-histo dx +C0152723|T047|AB|014.06|ICD9CM|TB peritonitis-oth test|TB peritonitis-oth test +C0152724|T047|HT|014.8|ICD9CM|Tuberculosis of intestines and mesenteric glands|Tuberculosis of intestines and mesenteric glands +C0374962|T047|AB|014.80|ICD9CM|Intestinal TB NEC-unspec|Intestinal TB NEC-unspec +C0374962|T047|PT|014.80|ICD9CM|Other tuberculosis of intestines, peritoneum, and mesenteric glands, unspecified|Other tuberculosis of intestines, peritoneum, and mesenteric glands, unspecified +C0152725|T047|AB|014.81|ICD9CM|Intestin TB NEC-no exam|Intestin TB NEC-no exam +C0152726|T047|AB|014.82|ICD9CM|Intest TB NEC-exam unkn|Intest TB NEC-exam unkn +C0152727|T047|AB|014.83|ICD9CM|Intestin TB NEC-micro dx|Intestin TB NEC-micro dx +C0152728|T047|AB|014.84|ICD9CM|Intestin TB NEC-cult dx|Intestin TB NEC-cult dx +C0152729|T047|AB|014.85|ICD9CM|Intestin TB NEC-histo dx|Intestin TB NEC-histo dx +C0152730|T047|AB|014.86|ICD9CM|Intestin TB NEC-oth test|Intestin TB NEC-oth test +C0041324|T047|HT|015|ICD9CM|Tuberculosis of bones and joints|Tuberculosis of bones and joints +C0041330|T047|HT|015.0|ICD9CM|Tuberculosis of vertebral column|Tuberculosis of vertebral column +C0041330|T047|AB|015.00|ICD9CM|TB of vertebra-unspec|TB of vertebra-unspec +C0041330|T047|PT|015.00|ICD9CM|Tuberculosis of vertebral column, unspecified|Tuberculosis of vertebral column, unspecified +C0152731|T047|AB|015.01|ICD9CM|TB of vertebra-no exam|TB of vertebra-no exam +C0152731|T047|PT|015.01|ICD9CM|Tuberculosis of vertebral column, bacteriological or histological examination not done|Tuberculosis of vertebral column, bacteriological or histological examination not done +C0152732|T047|AB|015.02|ICD9CM|TB of vertebra-exam unkn|TB of vertebra-exam unkn +C0152732|T047|PT|015.02|ICD9CM|Tuberculosis of vertebral column, bacteriological or histological examination unknown (at present)|Tuberculosis of vertebral column, bacteriological or histological examination unknown (at present) +C0152733|T047|AB|015.03|ICD9CM|TB of vertebra-micro dx|TB of vertebra-micro dx +C0152733|T047|PT|015.03|ICD9CM|Tuberculosis of vertebral column, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of vertebral column, tubercle bacilli found (in sputum) by microscopy +C0152734|T047|AB|015.04|ICD9CM|TB of vertebra-cult dx|TB of vertebra-cult dx +C0152735|T047|AB|015.05|ICD9CM|TB of vertebra-histo dx|TB of vertebra-histo dx +C0152736|T047|AB|015.06|ICD9CM|TB of vertebra-oth test|TB of vertebra-oth test +C0152737|T047|HT|015.1|ICD9CM|Tuberculosis of hip|Tuberculosis of hip +C0374963|T047|AB|015.10|ICD9CM|TB of hip-unspec|TB of hip-unspec +C0374963|T047|PT|015.10|ICD9CM|Tuberculosis of hip, unspecified|Tuberculosis of hip, unspecified +C0152738|T047|AB|015.11|ICD9CM|TB of hip-no exam|TB of hip-no exam +C0152738|T047|PT|015.11|ICD9CM|Tuberculosis of hip, bacteriological or histological examination not done|Tuberculosis of hip, bacteriological or histological examination not done +C0152739|T047|AB|015.12|ICD9CM|TB of hip-exam unkn|TB of hip-exam unkn +C0152739|T047|PT|015.12|ICD9CM|Tuberculosis of hip, bacteriological or histological examination unknown (at present)|Tuberculosis of hip, bacteriological or histological examination unknown (at present) +C0152740|T047|AB|015.13|ICD9CM|TB of hip-micro dx|TB of hip-micro dx +C0152740|T047|PT|015.13|ICD9CM|Tuberculosis of hip, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of hip, tubercle bacilli found (in sputum) by microscopy +C0152741|T047|AB|015.14|ICD9CM|TB of hip-cult dx|TB of hip-cult dx +C0152742|T047|AB|015.15|ICD9CM|TB of hip-histo dx|TB of hip-histo dx +C0152743|T047|AB|015.16|ICD9CM|TB of hip-oth test|TB of hip-oth test +C0152744|T047|HT|015.2|ICD9CM|Tuberculosis of knee|Tuberculosis of knee +C0374964|T047|AB|015.20|ICD9CM|TB of knee-unspec|TB of knee-unspec +C0374964|T047|PT|015.20|ICD9CM|Tuberculosis of knee, unspecified|Tuberculosis of knee, unspecified +C0152745|T047|AB|015.21|ICD9CM|TB of knee-no exam|TB of knee-no exam +C0152745|T047|PT|015.21|ICD9CM|Tuberculosis of knee, bacteriological or histological examination not done|Tuberculosis of knee, bacteriological or histological examination not done +C0152746|T047|AB|015.22|ICD9CM|TB of knee-exam unkn|TB of knee-exam unkn +C0152746|T047|PT|015.22|ICD9CM|Tuberculosis of knee, bacteriological or histological examination unknown (at present)|Tuberculosis of knee, bacteriological or histological examination unknown (at present) +C0152747|T047|AB|015.23|ICD9CM|TB of knee-micro dx|TB of knee-micro dx +C0152747|T047|PT|015.23|ICD9CM|Tuberculosis of knee, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of knee, tubercle bacilli found (in sputum) by microscopy +C0152748|T047|AB|015.24|ICD9CM|TB of knee-cult dx|TB of knee-cult dx +C0152749|T047|AB|015.25|ICD9CM|TB of knee-histo dx|TB of knee-histo dx +C0152750|T047|AB|015.26|ICD9CM|TB of knee-oth test|TB of knee-oth test +C0347900|T047|HT|015.5|ICD9CM|Tuberculosis of limb bones|Tuberculosis of limb bones +C0347900|T047|AB|015.50|ICD9CM|TB of limb bones-unspec|TB of limb bones-unspec +C0347900|T047|PT|015.50|ICD9CM|Tuberculosis of limb bones, unspecified|Tuberculosis of limb bones, unspecified +C0152752|T047|AB|015.51|ICD9CM|TB limb bones-no exam|TB limb bones-no exam +C0152752|T047|PT|015.51|ICD9CM|Tuberculosis of limb bones, bacteriological or histological examination not done|Tuberculosis of limb bones, bacteriological or histological examination not done +C0152753|T047|AB|015.52|ICD9CM|TB limb bones-exam unkn|TB limb bones-exam unkn +C0152753|T047|PT|015.52|ICD9CM|Tuberculosis of limb bones, bacteriological or histological examination unknown (at present)|Tuberculosis of limb bones, bacteriological or histological examination unknown (at present) +C0152754|T047|AB|015.53|ICD9CM|TB limb bones-micro dx|TB limb bones-micro dx +C0152754|T047|PT|015.53|ICD9CM|Tuberculosis of limb bones, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of limb bones, tubercle bacilli found (in sputum) by microscopy +C0152755|T047|AB|015.54|ICD9CM|TB limb bones-cult dx|TB limb bones-cult dx +C0152756|T047|AB|015.55|ICD9CM|TB limb bones-histo dx|TB limb bones-histo dx +C0152757|T047|AB|015.56|ICD9CM|TB limb bones-oth test|TB limb bones-oth test +C0275956|T047|HT|015.6|ICD9CM|Tuberculosis of mastoid|Tuberculosis of mastoid +C0374965|T047|AB|015.60|ICD9CM|TB of mastoid-unspec|TB of mastoid-unspec +C0374965|T047|PT|015.60|ICD9CM|Tuberculosis of mastoid, unspecified|Tuberculosis of mastoid, unspecified +C0152759|T047|AB|015.61|ICD9CM|TB of mastoid-no exam|TB of mastoid-no exam +C0152759|T047|PT|015.61|ICD9CM|Tuberculosis of mastoid, bacteriological or histological examination not done|Tuberculosis of mastoid, bacteriological or histological examination not done +C0152760|T047|AB|015.62|ICD9CM|TB of mastoid-exam unkn|TB of mastoid-exam unkn +C0152760|T047|PT|015.62|ICD9CM|Tuberculosis of mastoid, bacteriological or histological examination unknown (at present)|Tuberculosis of mastoid, bacteriological or histological examination unknown (at present) +C0152761|T047|AB|015.63|ICD9CM|TB of mastoid-micro dx|TB of mastoid-micro dx +C0152761|T047|PT|015.63|ICD9CM|Tuberculosis of mastoid, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of mastoid, tubercle bacilli found (in sputum) by microscopy +C0152762|T047|AB|015.64|ICD9CM|TB of mastoid-cult dx|TB of mastoid-cult dx +C0152763|T047|AB|015.65|ICD9CM|TB of mastoid-histo dx|TB of mastoid-histo dx +C0152764|T047|AB|015.66|ICD9CM|TB of mastoid-oth test|TB of mastoid-oth test +C0152765|T047|HT|015.7|ICD9CM|Tuberculosis of other specified bone|Tuberculosis of other specified bone +C0374966|T047|AB|015.70|ICD9CM|TB of bone NEC-unspec|TB of bone NEC-unspec +C0374966|T047|PT|015.70|ICD9CM|Tuberculosis of other specified bone, unspecified|Tuberculosis of other specified bone, unspecified +C0152766|T047|AB|015.71|ICD9CM|TB of bone NEC-no exam|TB of bone NEC-no exam +C0152766|T047|PT|015.71|ICD9CM|Tuberculosis of other specified bone, bacteriological or histological examination not done|Tuberculosis of other specified bone, bacteriological or histological examination not done +C0152767|T047|AB|015.72|ICD9CM|TB of bone NEC-exam unkn|TB of bone NEC-exam unkn +C0152768|T047|AB|015.73|ICD9CM|TB of bone NEC-micro dx|TB of bone NEC-micro dx +C0152768|T047|PT|015.73|ICD9CM|Tuberculosis of other specified bone, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of other specified bone, tubercle bacilli found (in sputum) by microscopy +C0152769|T047|AB|015.74|ICD9CM|TB of bone NEC-cult dx|TB of bone NEC-cult dx +C0152770|T047|AB|015.75|ICD9CM|TB of bone NEC-histo dx|TB of bone NEC-histo dx +C0152771|T047|AB|015.76|ICD9CM|TB of bone NEC-oth test|TB of bone NEC-oth test +C0152772|T047|HT|015.8|ICD9CM|Tuberculosis of other specified joint|Tuberculosis of other specified joint +C0374967|T047|AB|015.80|ICD9CM|TB of joint NEC-unspec|TB of joint NEC-unspec +C0374967|T047|PT|015.80|ICD9CM|Tuberculosis of other specified joint, unspecified|Tuberculosis of other specified joint, unspecified +C0152773|T047|AB|015.81|ICD9CM|TB of joint NEC-no exam|TB of joint NEC-no exam +C0152773|T047|PT|015.81|ICD9CM|Tuberculosis of other specified joint, bacteriological or histological examination not done|Tuberculosis of other specified joint, bacteriological or histological examination not done +C0152774|T047|AB|015.82|ICD9CM|TB joint NEC-exam unkn|TB joint NEC-exam unkn +C0152775|T047|AB|015.83|ICD9CM|TB of joint NEC-micro dx|TB of joint NEC-micro dx +C0152775|T047|PT|015.83|ICD9CM|Tuberculosis of other specified joint, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of other specified joint, tubercle bacilli found (in sputum) by microscopy +C0152776|T047|AB|015.84|ICD9CM|TB of joint NEC-cult dx|TB of joint NEC-cult dx +C0152777|T047|AB|015.85|ICD9CM|TB of joint NEC-histo dx|TB of joint NEC-histo dx +C0152778|T047|AB|015.86|ICD9CM|TB of joint NEC-oth test|TB of joint NEC-oth test +C0041324|T047|HT|015.9|ICD9CM|Tuberculosis of unspecified bones and joints|Tuberculosis of unspecified bones and joints +C0374968|T047|AB|015.90|ICD9CM|TB bone/joint NOS-unspec|TB bone/joint NOS-unspec +C0374968|T047|PT|015.90|ICD9CM|Tuberculosis of unspecified bones and joints, unspecified|Tuberculosis of unspecified bones and joints, unspecified +C0152780|T047|AB|015.91|ICD9CM|TB bone/jt NOS-no exam|TB bone/jt NOS-no exam +C0152780|T047|PT|015.91|ICD9CM|Tuberculosis of unspecified bones and joints, bacteriological or histological examination not done|Tuberculosis of unspecified bones and joints, bacteriological or histological examination not done +C0152781|T047|AB|015.92|ICD9CM|TB bone/jt NOS-exam unkn|TB bone/jt NOS-exam unkn +C0152782|T047|AB|015.93|ICD9CM|TB bone/jt NOS-micro dx|TB bone/jt NOS-micro dx +C0152782|T047|PT|015.93|ICD9CM|Tuberculosis of unspecified bones and joints, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of unspecified bones and joints, tubercle bacilli found (in sputum) by microscopy +C0152783|T047|AB|015.94|ICD9CM|TB bone/jt NOS-cult dx|TB bone/jt NOS-cult dx +C0152784|T047|AB|015.95|ICD9CM|TB bone/jt NOS-histo dx|TB bone/jt NOS-histo dx +C0152785|T047|AB|015.96|ICD9CM|TB bone/jt NOS-oth test|TB bone/jt NOS-oth test +C0041333|T047|HT|016|ICD9CM|Tuberculosis of genitourinary system|Tuberculosis of genitourinary system +C0041328|T047|HT|016.0|ICD9CM|Tuberculosis of kidney|Tuberculosis of kidney +C0041328|T047|AB|016.00|ICD9CM|TB of kidney-unspec|TB of kidney-unspec +C0041328|T047|PT|016.00|ICD9CM|Tuberculosis of kidney, unspecified|Tuberculosis of kidney, unspecified +C0152787|T047|AB|016.01|ICD9CM|TB of kidney-no exam|TB of kidney-no exam +C0152787|T047|PT|016.01|ICD9CM|Tuberculosis of kidney, bacteriological or histological examination not done|Tuberculosis of kidney, bacteriological or histological examination not done +C0152788|T047|AB|016.02|ICD9CM|TB of kidney-exam unkn|TB of kidney-exam unkn +C0152788|T047|PT|016.02|ICD9CM|Tuberculosis of kidney, bacteriological or histological examination unknown (at present)|Tuberculosis of kidney, bacteriological or histological examination unknown (at present) +C0152789|T047|AB|016.03|ICD9CM|TB of kidney-micro dx|TB of kidney-micro dx +C0152789|T047|PT|016.03|ICD9CM|Tuberculosis of kidney, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of kidney, tubercle bacilli found (in sputum) by microscopy +C0152790|T047|AB|016.04|ICD9CM|TB of kidney-cult dx|TB of kidney-cult dx +C0152791|T047|AB|016.05|ICD9CM|TB of kidney-histo dx|TB of kidney-histo dx +C0152792|T047|AB|016.06|ICD9CM|TB of kidney-oth test|TB of kidney-oth test +C0152793|T047|HT|016.1|ICD9CM|Tuberculosis of bladder|Tuberculosis of bladder +C0152793|T047|AB|016.10|ICD9CM|TB of bladder-unspec|TB of bladder-unspec +C0152793|T047|PT|016.10|ICD9CM|Tuberculosis of bladder, unspecified|Tuberculosis of bladder, unspecified +C0152794|T047|AB|016.11|ICD9CM|TB of bladder-no exam|TB of bladder-no exam +C0152794|T047|PT|016.11|ICD9CM|Tuberculosis of bladder, bacteriological or histological examination not done|Tuberculosis of bladder, bacteriological or histological examination not done +C0152795|T047|AB|016.12|ICD9CM|TB of bladder-exam unkn|TB of bladder-exam unkn +C0152795|T047|PT|016.12|ICD9CM|Tuberculosis of bladder, bacteriological or histological examination unknown (at present)|Tuberculosis of bladder, bacteriological or histological examination unknown (at present) +C0152796|T047|AB|016.13|ICD9CM|TB of bladder-micro dx|TB of bladder-micro dx +C0152796|T047|PT|016.13|ICD9CM|Tuberculosis of bladder, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of bladder, tubercle bacilli found (in sputum) by microscopy +C0152797|T047|AB|016.14|ICD9CM|TB of bladder-cult dx|TB of bladder-cult dx +C0152798|T047|AB|016.15|ICD9CM|TB of bladder-histo dx|TB of bladder-histo dx +C0152799|T047|AB|016.16|ICD9CM|TB of bladder-oth test|TB of bladder-oth test +C0152800|T047|HT|016.2|ICD9CM|Tuberculosis of ureter|Tuberculosis of ureter +C0374969|T047|AB|016.20|ICD9CM|TB of ureter-unspec|TB of ureter-unspec +C0374969|T047|PT|016.20|ICD9CM|Tuberculosis of ureter, unspecified|Tuberculosis of ureter, unspecified +C0152801|T047|AB|016.21|ICD9CM|TB of ureter-no exam|TB of ureter-no exam +C0152801|T047|PT|016.21|ICD9CM|Tuberculosis of ureter, bacteriological or histological examination not done|Tuberculosis of ureter, bacteriological or histological examination not done +C0152802|T047|AB|016.22|ICD9CM|TB of ureter-exam unkn|TB of ureter-exam unkn +C0152802|T047|PT|016.22|ICD9CM|Tuberculosis of ureter, bacteriological or histological examination unknown (at present)|Tuberculosis of ureter, bacteriological or histological examination unknown (at present) +C0152803|T047|AB|016.23|ICD9CM|TB of ureter-micro dx|TB of ureter-micro dx +C0152803|T047|PT|016.23|ICD9CM|Tuberculosis of ureter, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of ureter, tubercle bacilli found (in sputum) by microscopy +C0152804|T047|AB|016.24|ICD9CM|TB of ureter-cult dx|TB of ureter-cult dx +C0152805|T047|AB|016.25|ICD9CM|TB of ureter-histo dx|TB of ureter-histo dx +C0152806|T047|AB|016.26|ICD9CM|TB of ureter-oth test|TB of ureter-oth test +C0041332|T047|HT|016.3|ICD9CM|Tuberculosis of other urinary organs|Tuberculosis of other urinary organs +C0374970|T047|AB|016.30|ICD9CM|TB urinary NEC-unspec|TB urinary NEC-unspec +C0374970|T047|PT|016.30|ICD9CM|Tuberculosis of other urinary organs, unspecified|Tuberculosis of other urinary organs, unspecified +C0152808|T047|AB|016.31|ICD9CM|TB urinary NEC-no exam|TB urinary NEC-no exam +C0152808|T047|PT|016.31|ICD9CM|Tuberculosis of other urinary organs, bacteriological or histological examination not done|Tuberculosis of other urinary organs, bacteriological or histological examination not done +C0152809|T047|AB|016.32|ICD9CM|TB urinary NEC-exam unkn|TB urinary NEC-exam unkn +C0152810|T047|AB|016.33|ICD9CM|TB urinary NEC-micro dx|TB urinary NEC-micro dx +C0152810|T047|PT|016.33|ICD9CM|Tuberculosis of other urinary organs, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of other urinary organs, tubercle bacilli found (in sputum) by microscopy +C0152811|T047|AB|016.34|ICD9CM|TB urinary NEC-cult dx|TB urinary NEC-cult dx +C0152812|T047|AB|016.35|ICD9CM|TB urinary NEC-histo dx|TB urinary NEC-histo dx +C0152813|T047|AB|016.36|ICD9CM|TB urinary NEC-oth test|TB urinary NEC-oth test +C0152814|T047|HT|016.4|ICD9CM|Tuberculosis of epididymis|Tuberculosis of epididymis +C0374971|T047|AB|016.40|ICD9CM|TB epididymis-unspec|TB epididymis-unspec +C0374971|T047|PT|016.40|ICD9CM|Tuberculosis of epididymis, unspecified|Tuberculosis of epididymis, unspecified +C0152815|T047|AB|016.41|ICD9CM|TB epididymis-no exam|TB epididymis-no exam +C0152815|T047|PT|016.41|ICD9CM|Tuberculosis of epididymis, bacteriological or histological examination not done|Tuberculosis of epididymis, bacteriological or histological examination not done +C0152816|T047|AB|016.42|ICD9CM|TB epididymis-exam unkn|TB epididymis-exam unkn +C0152816|T047|PT|016.42|ICD9CM|Tuberculosis of epididymis, bacteriological or histological examination unknown (at present)|Tuberculosis of epididymis, bacteriological or histological examination unknown (at present) +C0152817|T047|AB|016.43|ICD9CM|TB epididymis-micro dx|TB epididymis-micro dx +C0152817|T047|PT|016.43|ICD9CM|Tuberculosis of epididymis, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of epididymis, tubercle bacilli found (in sputum) by microscopy +C0152818|T047|AB|016.44|ICD9CM|TB epididymis-cult dx|TB epididymis-cult dx +C0152819|T047|AB|016.45|ICD9CM|TB epididymis-histo dx|TB epididymis-histo dx +C0152820|T047|AB|016.46|ICD9CM|TB epididymis-oth test|TB epididymis-oth test +C0152821|T047|HT|016.5|ICD9CM|Tuberculosis of other male genital organs|Tuberculosis of other male genital organs +C0152821|T047|AB|016.50|ICD9CM|TB male genit NEC-unspec|TB male genit NEC-unspec +C0152821|T047|PT|016.50|ICD9CM|Tuberculosis of other male genital organs, unspecified|Tuberculosis of other male genital organs, unspecified +C0152822|T047|AB|016.51|ICD9CM|TB male gen NEC-no exam|TB male gen NEC-no exam +C0152822|T047|PT|016.51|ICD9CM|Tuberculosis of other male genital organs, bacteriological or histological examination not done|Tuberculosis of other male genital organs, bacteriological or histological examination not done +C0152823|T047|AB|016.52|ICD9CM|TB male gen NEC-ex unkn|TB male gen NEC-ex unkn +C0152824|T047|AB|016.53|ICD9CM|TB male gen NEC-micro dx|TB male gen NEC-micro dx +C0152824|T047|PT|016.53|ICD9CM|Tuberculosis of other male genital organs, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of other male genital organs, tubercle bacilli found (in sputum) by microscopy +C0152825|T047|AB|016.54|ICD9CM|TB male gen NEC-cult dx|TB male gen NEC-cult dx +C0152826|T047|AB|016.55|ICD9CM|TB male gen NEC-histo dx|TB male gen NEC-histo dx +C0152827|T047|AB|016.56|ICD9CM|TB male gen NEC-oth test|TB male gen NEC-oth test +C0152828|T047|HT|016.6|ICD9CM|Tuberculous oophoritis and salpingitis|Tuberculous oophoritis and salpingitis +C0374972|T047|AB|016.60|ICD9CM|TB ovary & tube-unspec|TB ovary & tube-unspec +C0374972|T047|PT|016.60|ICD9CM|Tuberculous oophoritis and salpingitis, unspecified|Tuberculous oophoritis and salpingitis, unspecified +C0152829|T047|AB|016.61|ICD9CM|TB ovary & tube-no exam|TB ovary & tube-no exam +C0152829|T047|PT|016.61|ICD9CM|Tuberculous oophoritis and salpingitis, bacteriological or histological examination not done|Tuberculous oophoritis and salpingitis, bacteriological or histological examination not done +C0152830|T047|AB|016.62|ICD9CM|TB ovary/tube-exam unkn|TB ovary/tube-exam unkn +C0152831|T047|AB|016.63|ICD9CM|TB ovary & tube-micro dx|TB ovary & tube-micro dx +C0152831|T047|PT|016.63|ICD9CM|Tuberculous oophoritis and salpingitis, tubercle bacilli found (in sputum) by microscopy|Tuberculous oophoritis and salpingitis, tubercle bacilli found (in sputum) by microscopy +C0152832|T047|AB|016.64|ICD9CM|TB ovary & tube-cult dx|TB ovary & tube-cult dx +C0152833|T047|AB|016.65|ICD9CM|TB ovary & tube-histo dx|TB ovary & tube-histo dx +C0152834|T047|AB|016.66|ICD9CM|TB ovary & tube-oth test|TB ovary & tube-oth test +C0152835|T047|HT|016.7|ICD9CM|Tuberculosis of other female genital organs|Tuberculosis of other female genital organs +C0152835|T047|AB|016.70|ICD9CM|TB female gen NEC-unspec|TB female gen NEC-unspec +C0152835|T047|PT|016.70|ICD9CM|Tuberculosis of other female genital organs, unspecified|Tuberculosis of other female genital organs, unspecified +C0152836|T047|AB|016.71|ICD9CM|TB fem gen NEC-no exam|TB fem gen NEC-no exam +C0152836|T047|PT|016.71|ICD9CM|Tuberculosis of other female genital organs, bacteriological or histological examination not done|Tuberculosis of other female genital organs, bacteriological or histological examination not done +C0152837|T047|AB|016.72|ICD9CM|TB fem gen NEC-exam unkn|TB fem gen NEC-exam unkn +C0152838|T047|AB|016.73|ICD9CM|TB fem gen NEC-micro dx|TB fem gen NEC-micro dx +C0152838|T047|PT|016.73|ICD9CM|Tuberculosis of other female genital organs, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of other female genital organs, tubercle bacilli found (in sputum) by microscopy +C0152839|T047|AB|016.74|ICD9CM|TB fem gen NEC-cult dx|TB fem gen NEC-cult dx +C0152840|T047|AB|016.75|ICD9CM|TB fem gen NEC-histo dx|TB fem gen NEC-histo dx +C0152841|T047|AB|016.76|ICD9CM|TB fem gen NEC-oth test|TB fem gen NEC-oth test +C0041333|T047|HT|016.9|ICD9CM|Genitourinary tuberculosis, unspecified|Genitourinary tuberculosis, unspecified +C0374973|T047|PT|016.90|ICD9CM|Genitourinary tuberculosis, unspecified, unspecified|Genitourinary tuberculosis, unspecified, unspecified +C0374973|T047|AB|016.90|ICD9CM|Gu TB NOS-unspec|Gu TB NOS-unspec +C0152843|T047|PT|016.91|ICD9CM|Genitourinary tuberculosis, unspecified, bacteriological or histological examination not done|Genitourinary tuberculosis, unspecified, bacteriological or histological examination not done +C0152843|T047|AB|016.91|ICD9CM|Gu TB NOS-no exam|Gu TB NOS-no exam +C0152844|T047|AB|016.92|ICD9CM|Gu TB NOS-exam unkn|Gu TB NOS-exam unkn +C0152845|T047|PT|016.93|ICD9CM|Genitourinary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy|Genitourinary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy +C0152845|T047|AB|016.93|ICD9CM|Gu TB NOS-micro dx|Gu TB NOS-micro dx +C0152846|T047|AB|016.94|ICD9CM|Gu TB NOS-cult dx|Gu TB NOS-cult dx +C0152847|T047|AB|016.95|ICD9CM|Gu TB NOS-histo dx|Gu TB NOS-histo dx +C0152848|T047|AB|016.96|ICD9CM|Gu TB NOS-oth test|Gu TB NOS-oth test +C0041300|T047|HT|017|ICD9CM|Tuberculosis of other organs|Tuberculosis of other organs +C0374974|T047|HT|017.0|ICD9CM|Tuberculosis of skin and subcutaneous cellular tissue|Tuberculosis of skin and subcutaneous cellular tissue +C0374974|T047|AB|017.00|ICD9CM|TB skin/subcutan-unspec|TB skin/subcutan-unspec +C0374974|T047|PT|017.00|ICD9CM|Tuberculosis of skin and subcutaneous cellular tissue, unspecified|Tuberculosis of skin and subcutaneous cellular tissue, unspecified +C0152849|T047|AB|017.01|ICD9CM|TB skin/subcut-no exam|TB skin/subcut-no exam +C0152850|T047|AB|017.02|ICD9CM|TB skin/subcut-exam unkn|TB skin/subcut-exam unkn +C0152851|T047|AB|017.03|ICD9CM|TB skin/subcut-micro dx|TB skin/subcut-micro dx +C0152852|T047|AB|017.04|ICD9CM|TB skin/subcut-cult dx|TB skin/subcut-cult dx +C0152853|T047|AB|017.05|ICD9CM|TB skin/subcut-histo dx|TB skin/subcut-histo dx +C0152854|T047|AB|017.06|ICD9CM|TB skin/subcut-oth test|TB skin/subcut-oth test +C0014744|T047|HT|017.1|ICD9CM|Erythema nodosum with hypersensitivity reaction in tuberculosis|Erythema nodosum with hypersensitivity reaction in tuberculosis +C0014744|T047|AB|017.10|ICD9CM|Erythema nodos tb-unspec|Erythema nodos tb-unspec +C0014744|T047|PT|017.10|ICD9CM|Erythema nodosum with hypersensitivity reaction in tuberculosis, unspecified|Erythema nodosum with hypersensitivity reaction in tuberculosis, unspecified +C0152855|T047|AB|017.11|ICD9CM|Erythem nodos tb-no exam|Erythem nodos tb-no exam +C0152856|T047|AB|017.12|ICD9CM|Erythem nod tb-exam unkn|Erythem nod tb-exam unkn +C0152857|T047|AB|017.13|ICD9CM|Erythem nod tb-micro dx|Erythem nod tb-micro dx +C0152858|T047|AB|017.14|ICD9CM|Erythem nodos tb-cult dx|Erythem nodos tb-cult dx +C0152859|T047|AB|017.15|ICD9CM|Erythem nod tb-histo dx|Erythem nod tb-histo dx +C0152860|T047|AB|017.16|ICD9CM|Erythem nod tb-oth test|Erythem nod tb-oth test +C0152861|T047|HT|017.2|ICD9CM|Tuberculosis of peripheral lymph nodes|Tuberculosis of peripheral lymph nodes +C0152861|T047|AB|017.20|ICD9CM|TB periph lymph-unspec|TB periph lymph-unspec +C0152861|T047|PT|017.20|ICD9CM|Tuberculosis of peripheral lymph nodes, unspecified|Tuberculosis of peripheral lymph nodes, unspecified +C0152862|T047|AB|017.21|ICD9CM|TB periph lymph-no exam|TB periph lymph-no exam +C0152862|T047|PT|017.21|ICD9CM|Tuberculosis of peripheral lymph nodes, bacteriological or histological examination not done|Tuberculosis of peripheral lymph nodes, bacteriological or histological examination not done +C0152863|T047|AB|017.22|ICD9CM|TB periph lymph-exam unk|TB periph lymph-exam unk +C0152864|T047|AB|017.23|ICD9CM|TB periph lymph-micro dx|TB periph lymph-micro dx +C0152864|T047|PT|017.23|ICD9CM|Tuberculosis of peripheral lymph nodes, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of peripheral lymph nodes, tubercle bacilli found (in sputum) by microscopy +C0152865|T047|AB|017.24|ICD9CM|TB periph lymph-cult dx|TB periph lymph-cult dx +C0152866|T047|AB|017.25|ICD9CM|TB periph lymph-histo dx|TB periph lymph-histo dx +C0152867|T047|AB|017.26|ICD9CM|TB periph lymph-oth test|TB periph lymph-oth test +C0041322|T047|HT|017.3|ICD9CM|Tuberculosis of eye|Tuberculosis of eye +C0041322|T047|AB|017.30|ICD9CM|TB of eye-unspec|TB of eye-unspec +C0041322|T047|PT|017.30|ICD9CM|Tuberculosis of eye, unspecified|Tuberculosis of eye, unspecified +C0152868|T047|AB|017.31|ICD9CM|TB of eye-no exam|TB of eye-no exam +C0152868|T047|PT|017.31|ICD9CM|Tuberculosis of eye, bacteriological or histological examination not done|Tuberculosis of eye, bacteriological or histological examination not done +C0152869|T047|AB|017.32|ICD9CM|TB of eye-exam unkn|TB of eye-exam unkn +C0152869|T047|PT|017.32|ICD9CM|Tuberculosis of eye, bacteriological or histological examination unknown (at present)|Tuberculosis of eye, bacteriological or histological examination unknown (at present) +C0152870|T047|AB|017.33|ICD9CM|TB of eye-micro dx|TB of eye-micro dx +C0152870|T047|PT|017.33|ICD9CM|Tuberculosis of eye, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of eye, tubercle bacilli found (in sputum) by microscopy +C0152871|T047|AB|017.34|ICD9CM|TB of eye-cult dx|TB of eye-cult dx +C0152872|T047|AB|017.35|ICD9CM|TB of eye-histo dx|TB of eye-histo dx +C0152873|T047|AB|017.36|ICD9CM|TB of eye-oth test|TB of eye-oth test +C0152874|T047|HT|017.4|ICD9CM|Tuberculosis of ear|Tuberculosis of ear +C0374976|T047|AB|017.40|ICD9CM|TB of ear-unspec|TB of ear-unspec +C0374976|T047|PT|017.40|ICD9CM|Tuberculosis of ear, unspecified|Tuberculosis of ear, unspecified +C0152875|T047|AB|017.41|ICD9CM|TB of ear-no exam|TB of ear-no exam +C0152875|T047|PT|017.41|ICD9CM|Tuberculosis of ear, bacteriological or histological examination not done|Tuberculosis of ear, bacteriological or histological examination not done +C0152876|T047|AB|017.42|ICD9CM|TB of ear-exam unkn|TB of ear-exam unkn +C0152876|T047|PT|017.42|ICD9CM|Tuberculosis of ear, bacteriological or histological examination unknown (at present)|Tuberculosis of ear, bacteriological or histological examination unknown (at present) +C0152877|T047|AB|017.43|ICD9CM|TB of ear-micro dx|TB of ear-micro dx +C0152877|T047|PT|017.43|ICD9CM|Tuberculosis of ear, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of ear, tubercle bacilli found (in sputum) by microscopy +C0152878|T047|AB|017.44|ICD9CM|TB of ear-cult dx|TB of ear-cult dx +C0152879|T047|AB|017.45|ICD9CM|TB of ear-histo dx|TB of ear-histo dx +C0152880|T047|AB|017.46|ICD9CM|TB of ear-oth test|TB of ear-oth test +C0152881|T047|HT|017.5|ICD9CM|Tuberculosis of thyroid gland|Tuberculosis of thyroid gland +C0152882|T047|AB|017.50|ICD9CM|TB of thyroid-unspec|TB of thyroid-unspec +C0152882|T047|PT|017.50|ICD9CM|Tuberculosis of thyroid gland, unspecified|Tuberculosis of thyroid gland, unspecified +C0152883|T047|AB|017.51|ICD9CM|TB of thyroid-no exam|TB of thyroid-no exam +C0152883|T047|PT|017.51|ICD9CM|Tuberculosis of thyroid gland, bacteriological or histological examination not done|Tuberculosis of thyroid gland, bacteriological or histological examination not done +C0152884|T047|AB|017.52|ICD9CM|TB of thyroid-exam unkn|TB of thyroid-exam unkn +C0152884|T047|PT|017.52|ICD9CM|Tuberculosis of thyroid gland, bacteriological or histological examination unknown (at present)|Tuberculosis of thyroid gland, bacteriological or histological examination unknown (at present) +C0152885|T047|AB|017.53|ICD9CM|TB of thyroid-micro dx|TB of thyroid-micro dx +C0152885|T047|PT|017.53|ICD9CM|Tuberculosis of thyroid gland, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of thyroid gland, tubercle bacilli found (in sputum) by microscopy +C0152886|T047|AB|017.54|ICD9CM|TB of thyroid-cult dx|TB of thyroid-cult dx +C0152887|T047|AB|017.55|ICD9CM|TB of thyroid-histo dx|TB of thyroid-histo dx +C0152888|T047|AB|017.56|ICD9CM|TB of thyroid-oth test|TB of thyroid-oth test +C0152889|T047|HT|017.6|ICD9CM|Tuberculosis of adrenal glands|Tuberculosis of adrenal glands +C0152889|T047|AB|017.60|ICD9CM|TB of adrenal-unspec|TB of adrenal-unspec +C0152889|T047|PT|017.60|ICD9CM|Tuberculosis of adrenal glands, unspecified|Tuberculosis of adrenal glands, unspecified +C0152890|T047|AB|017.61|ICD9CM|TB of adrenal-no exam|TB of adrenal-no exam +C0152890|T047|PT|017.61|ICD9CM|Tuberculosis of adrenal glands, bacteriological or histological examination not done|Tuberculosis of adrenal glands, bacteriological or histological examination not done +C0152891|T047|AB|017.62|ICD9CM|TB of adrenal-exam unkn|TB of adrenal-exam unkn +C0152891|T047|PT|017.62|ICD9CM|Tuberculosis of adrenal glands, bacteriological or histological examination unknown (at present)|Tuberculosis of adrenal glands, bacteriological or histological examination unknown (at present) +C0152892|T047|AB|017.63|ICD9CM|TB of adrenal-micro dx|TB of adrenal-micro dx +C0152892|T047|PT|017.63|ICD9CM|Tuberculosis of adrenal glands, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of adrenal glands, tubercle bacilli found (in sputum) by microscopy +C0152893|T047|AB|017.64|ICD9CM|TB of adrenal-cult dx|TB of adrenal-cult dx +C0152894|T047|AB|017.65|ICD9CM|TB of adrenal-histo dx|TB of adrenal-histo dx +C0152895|T047|AB|017.66|ICD9CM|TB of adrenal-oth test|TB of adrenal-oth test +C0041331|T047|HT|017.7|ICD9CM|Tuberculosis of spleen|Tuberculosis of spleen +C0374977|T047|AB|017.70|ICD9CM|TB of spleen-unspec|TB of spleen-unspec +C0374977|T047|PT|017.70|ICD9CM|Tuberculosis of spleen, unspecified|Tuberculosis of spleen, unspecified +C0152896|T047|AB|017.71|ICD9CM|TB of spleen-no exam|TB of spleen-no exam +C0152896|T047|PT|017.71|ICD9CM|Tuberculosis of spleen, bacteriological or histological examination not done|Tuberculosis of spleen, bacteriological or histological examination not done +C0152897|T047|AB|017.72|ICD9CM|TB of spleen-exam unkn|TB of spleen-exam unkn +C0152897|T047|PT|017.72|ICD9CM|Tuberculosis of spleen, bacteriological or histological examination unknown (at present)|Tuberculosis of spleen, bacteriological or histological examination unknown (at present) +C0152898|T047|AB|017.73|ICD9CM|TB of spleen-micro dx|TB of spleen-micro dx +C0152898|T047|PT|017.73|ICD9CM|Tuberculosis of spleen, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of spleen, tubercle bacilli found (in sputum) by microscopy +C0152899|T047|AB|017.74|ICD9CM|TB of spleen-cult dx|TB of spleen-cult dx +C0152900|T047|AB|017.75|ICD9CM|TB of spleen-histo dx|TB of spleen-histo dx +C0152901|T047|AB|017.76|ICD9CM|TB of spleen-oth test|TB of spleen-oth test +C0152902|T047|HT|017.8|ICD9CM|Tuberculosis of esophagus|Tuberculosis of esophagus +C0374978|T047|AB|017.80|ICD9CM|TB esophagus-unspec|TB esophagus-unspec +C0374978|T047|PT|017.80|ICD9CM|Tuberculosis of esophagus, unspecified|Tuberculosis of esophagus, unspecified +C0152903|T047|AB|017.81|ICD9CM|TB esophagus-no exam|TB esophagus-no exam +C0152903|T047|PT|017.81|ICD9CM|Tuberculosis of esophagus, bacteriological or histological examination not done|Tuberculosis of esophagus, bacteriological or histological examination not done +C0152904|T047|AB|017.82|ICD9CM|TB esophagus-exam unkn|TB esophagus-exam unkn +C0152904|T047|PT|017.82|ICD9CM|Tuberculosis of esophagus, bacteriological or histological examination unknown (at present)|Tuberculosis of esophagus, bacteriological or histological examination unknown (at present) +C0152905|T047|AB|017.83|ICD9CM|TB esophagus-micro dx|TB esophagus-micro dx +C0152905|T047|PT|017.83|ICD9CM|Tuberculosis of esophagus, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of esophagus, tubercle bacilli found (in sputum) by microscopy +C0152906|T047|AB|017.84|ICD9CM|TB esophagus-cult dx|TB esophagus-cult dx +C0152907|T047|AB|017.85|ICD9CM|TB esophagus-histo dx|TB esophagus-histo dx +C0152908|T047|AB|017.86|ICD9CM|TB esophagus-oth test|TB esophagus-oth test +C0041301|T047|HT|017.9|ICD9CM|Tuberculosis of other specified organs|Tuberculosis of other specified organs +C0041301|T047|AB|017.90|ICD9CM|TB of organ NEC-unspec|TB of organ NEC-unspec +C0041301|T047|PT|017.90|ICD9CM|Tuberculosis of other specified organs, unspecified|Tuberculosis of other specified organs, unspecified +C0152909|T047|AB|017.91|ICD9CM|TB of organ NEC-no exam|TB of organ NEC-no exam +C0152909|T047|PT|017.91|ICD9CM|Tuberculosis of other specified organs, bacteriological or histological examination not done|Tuberculosis of other specified organs, bacteriological or histological examination not done +C0152910|T047|AB|017.92|ICD9CM|TB organ NEC-exam unkn|TB organ NEC-exam unkn +C0152911|T047|AB|017.93|ICD9CM|TB of organ NEC-micro dx|TB of organ NEC-micro dx +C0152911|T047|PT|017.93|ICD9CM|Tuberculosis of other specified organs, tubercle bacilli found (in sputum) by microscopy|Tuberculosis of other specified organs, tubercle bacilli found (in sputum) by microscopy +C0152912|T047|AB|017.94|ICD9CM|TB of organ NEC-cult dx|TB of organ NEC-cult dx +C0152913|T047|AB|017.95|ICD9CM|TB of organ NEC-histo dx|TB of organ NEC-histo dx +C0152914|T047|AB|017.96|ICD9CM|TB of organ NEC-oth test|TB of organ NEC-oth test +C0041321|T047|HT|018|ICD9CM|Miliary tuberculosis|Miliary tuberculosis +C0152915|T047|HT|018.0|ICD9CM|Acute miliary tuberculosis|Acute miliary tuberculosis +C0152915|T047|AB|018.00|ICD9CM|Acute miliary tb-unspec|Acute miliary tb-unspec +C0152915|T047|PT|018.00|ICD9CM|Acute miliary tuberculosis, unspecified|Acute miliary tuberculosis, unspecified +C0152916|T047|AB|018.01|ICD9CM|Acute miliary tb-no exam|Acute miliary tb-no exam +C0152916|T047|PT|018.01|ICD9CM|Acute miliary tuberculosis, bacteriological or histological examination not done|Acute miliary tuberculosis, bacteriological or histological examination not done +C0152917|T047|AB|018.02|ICD9CM|Ac miliary tb-exam unkn|Ac miliary tb-exam unkn +C0152917|T047|PT|018.02|ICD9CM|Acute miliary tuberculosis, bacteriological or histological examination unknown (at present)|Acute miliary tuberculosis, bacteriological or histological examination unknown (at present) +C0152918|T047|AB|018.03|ICD9CM|Ac miliary tb-micro dx|Ac miliary tb-micro dx +C0152918|T047|PT|018.03|ICD9CM|Acute miliary tuberculosis, tubercle bacilli found (in sputum) by microscopy|Acute miliary tuberculosis, tubercle bacilli found (in sputum) by microscopy +C0152919|T047|AB|018.04|ICD9CM|Acute miliary tb-cult dx|Acute miliary tb-cult dx +C0152920|T047|AB|018.05|ICD9CM|Ac miliary tb-histo dx|Ac miliary tb-histo dx +C0152921|T047|AB|018.06|ICD9CM|Ac miliary tb-oth test|Ac miliary tb-oth test +C0152922|T047|HT|018.8|ICD9CM|Other specified miliary tuberculosis|Other specified miliary tuberculosis +C0152922|T047|AB|018.80|ICD9CM|Miliary TB NEC-unspec|Miliary TB NEC-unspec +C0152922|T047|PT|018.80|ICD9CM|Other specified miliary tuberculosis, unspecified|Other specified miliary tuberculosis, unspecified +C0152923|T047|AB|018.81|ICD9CM|Miliary TB NEC-no exam|Miliary TB NEC-no exam +C0152923|T047|PT|018.81|ICD9CM|Other specified miliary tuberculosis, bacteriological or histological examination not done|Other specified miliary tuberculosis, bacteriological or histological examination not done +C0152924|T047|AB|018.82|ICD9CM|Miliary TB NEC-exam unkn|Miliary TB NEC-exam unkn +C0152925|T047|AB|018.83|ICD9CM|Miliary TB NEC-micro dx|Miliary TB NEC-micro dx +C0152925|T047|PT|018.83|ICD9CM|Other specified miliary tuberculosis, tubercle bacilli found (in sputum) by microscopy|Other specified miliary tuberculosis, tubercle bacilli found (in sputum) by microscopy +C0152926|T047|AB|018.84|ICD9CM|Miliary TB NEC-cult dx|Miliary TB NEC-cult dx +C0152927|T047|AB|018.85|ICD9CM|Miliary TB NEC-histo dx|Miliary TB NEC-histo dx +C0152928|T047|AB|018.86|ICD9CM|Miliary TB NEC-oth test|Miliary TB NEC-oth test +C0041321|T047|HT|018.9|ICD9CM|Unspecified miliary tuberculosis|Unspecified miliary tuberculosis +C0041321|T047|AB|018.90|ICD9CM|Miliary TB NOS-unspec|Miliary TB NOS-unspec +C0041321|T047|PT|018.90|ICD9CM|Miliary tuberculosis, unspecified, unspecified|Miliary tuberculosis, unspecified, unspecified +C0152929|T047|AB|018.91|ICD9CM|Miliary TB NOS-no exam|Miliary TB NOS-no exam +C0152929|T047|PT|018.91|ICD9CM|Miliary tuberculosis, unspecified, bacteriological or histological examination not done|Miliary tuberculosis, unspecified, bacteriological or histological examination not done +C0152930|T047|AB|018.92|ICD9CM|Miliary TB NOS-exam unkn|Miliary TB NOS-exam unkn +C0152930|T047|PT|018.92|ICD9CM|Miliary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)|Miliary tuberculosis, unspecified, bacteriological or histological examination unknown (at present) +C0152931|T047|AB|018.93|ICD9CM|Miliary TB NOS-micro dx|Miliary TB NOS-micro dx +C0152931|T047|PT|018.93|ICD9CM|Miliary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy|Miliary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy +C0152932|T047|AB|018.94|ICD9CM|Miliary TB NOS-cult dx|Miliary TB NOS-cult dx +C0152933|T047|AB|018.95|ICD9CM|Miliary TB NOS-histo dx|Miliary TB NOS-histo dx +C0152934|T047|AB|018.96|ICD9CM|Miliary TB NOS-oth test|Miliary TB NOS-oth test +C0032064|T047|HT|020|ICD9CM|Plague|Plague +C0311376|T047|HT|020-027.99|ICD9CM|ZOONOTIC BACTERIAL DISEASES|ZOONOTIC BACTERIAL DISEASES +C0282312|T047|AB|020.0|ICD9CM|Bubonic plague|Bubonic plague +C0282312|T047|PT|020.0|ICD9CM|Bubonic plague|Bubonic plague +C0152935|T047|AB|020.1|ICD9CM|Cellulocutaneous plague|Cellulocutaneous plague +C0152935|T047|PT|020.1|ICD9CM|Cellulocutaneous plague|Cellulocutaneous plague +C0152936|T047|AB|020.2|ICD9CM|Septicemic plague|Septicemic plague +C0152936|T047|PT|020.2|ICD9CM|Septicemic plague|Septicemic plague +C0152937|T047|AB|020.3|ICD9CM|Primary pneumonic plague|Primary pneumonic plague +C0152937|T047|PT|020.3|ICD9CM|Primary pneumonic plague|Primary pneumonic plague +C0152938|T047|AB|020.4|ICD9CM|Secondary pneumon plague|Secondary pneumon plague +C0152938|T047|PT|020.4|ICD9CM|Secondary pneumonic plague|Secondary pneumonic plague +C0524688|T047|AB|020.5|ICD9CM|Pneumonic plague NOS|Pneumonic plague NOS +C0524688|T047|PT|020.5|ICD9CM|Pneumonic plague, unspecified|Pneumonic plague, unspecified +C0152940|T047|PT|020.8|ICD9CM|Other specified types of plague|Other specified types of plague +C0152940|T047|AB|020.8|ICD9CM|Other types of plague|Other types of plague +C0032064|T047|AB|020.9|ICD9CM|Plague NOS|Plague NOS +C0032064|T047|PT|020.9|ICD9CM|Plague, unspecified|Plague, unspecified +C0041351|T047|HT|021|ICD9CM|Tularemia|Tularemia +C0152941|T047|AB|021.0|ICD9CM|Ulceroglandul tularemia|Ulceroglandul tularemia +C0152941|T047|PT|021.0|ICD9CM|Ulceroglandular tularemia|Ulceroglandular tularemia +C0152942|T047|AB|021.1|ICD9CM|Enteric tularemia|Enteric tularemia +C0152942|T047|PT|021.1|ICD9CM|Enteric tularemia|Enteric tularemia +C0339946|T047|AB|021.2|ICD9CM|Pulmonary tularemia|Pulmonary tularemia +C0339946|T047|PT|021.2|ICD9CM|Pulmonary tularemia|Pulmonary tularemia +C0152944|T047|AB|021.3|ICD9CM|Oculoglandular tularemia|Oculoglandular tularemia +C0152944|T047|PT|021.3|ICD9CM|Oculoglandular tularemia|Oculoglandular tularemia +C0029835|T047|PT|021.8|ICD9CM|Other specified tularemia|Other specified tularemia +C0029835|T047|AB|021.8|ICD9CM|Tularemia NEC|Tularemia NEC +C0041351|T047|AB|021.9|ICD9CM|Tularemia NOS|Tularemia NOS +C0041351|T047|PT|021.9|ICD9CM|Unspecified tularemia|Unspecified tularemia +C0003175|T047|HT|022|ICD9CM|Anthrax|Anthrax +C0003177|T047|AB|022.0|ICD9CM|Cutaneous anthrax|Cutaneous anthrax +C0003177|T047|PT|022.0|ICD9CM|Cutaneous anthrax|Cutaneous anthrax +C0155866|T047|AB|022.1|ICD9CM|Pulmonary anthrax|Pulmonary anthrax +C0155866|T047|PT|022.1|ICD9CM|Pulmonary anthrax|Pulmonary anthrax +C0152945|T047|AB|022.2|ICD9CM|Gastrointestinal anthrax|Gastrointestinal anthrax +C0152945|T047|PT|022.2|ICD9CM|Gastrointestinal anthrax|Gastrointestinal anthrax +C0152946|T047|AB|022.3|ICD9CM|Anthrax septicemia|Anthrax septicemia +C0152946|T047|PT|022.3|ICD9CM|Anthrax septicemia|Anthrax septicemia +C0152947|T047|AB|022.8|ICD9CM|Other anthrax manifest|Other anthrax manifest +C0152947|T047|PT|022.8|ICD9CM|Other specified manifestations of anthrax|Other specified manifestations of anthrax +C0003175|T047|AB|022.9|ICD9CM|Anthrax NOS|Anthrax NOS +C0003175|T047|PT|022.9|ICD9CM|Anthrax, unspecified|Anthrax, unspecified +C0006309|T047|HT|023|ICD9CM|Brucellosis|Brucellosis +C0302362|T047|AB|023.0|ICD9CM|Brucella melitensis|Brucella melitensis +C0302362|T047|PT|023.0|ICD9CM|Brucella melitensis|Brucella melitensis +C0302363|T047|AB|023.1|ICD9CM|Brucella abortus|Brucella abortus +C0302363|T047|PT|023.1|ICD9CM|Brucella abortus|Brucella abortus +C0275594|T047|AB|023.2|ICD9CM|Brucella suis|Brucella suis +C0275594|T047|PT|023.2|ICD9CM|Brucella suis|Brucella suis +C0494040|T047|AB|023.3|ICD9CM|Brucella canis|Brucella canis +C0494040|T047|PT|023.3|ICD9CM|Brucella canis|Brucella canis +C0029527|T047|AB|023.8|ICD9CM|Brucellosis NEC|Brucellosis NEC +C0029527|T047|PT|023.8|ICD9CM|Other brucellosis|Other brucellosis +C0006309|T047|AB|023.9|ICD9CM|Brucellosis NOS|Brucellosis NOS +C0006309|T047|PT|023.9|ICD9CM|Brucellosis, unspecified|Brucellosis, unspecified +C0017589|T047|AB|024|ICD9CM|Glanders|Glanders +C0017589|T047|PT|024|ICD9CM|Glanders|Glanders +C0025229|T047|AB|025|ICD9CM|Melioidosis|Melioidosis +C0025229|T047|PT|025|ICD9CM|Melioidosis|Melioidosis +C0034686|T047|HT|026|ICD9CM|Rat-bite fever|Rat-bite fever +C0152062|T047|AB|026.0|ICD9CM|Spirillary fever|Spirillary fever +C0152062|T047|PT|026.0|ICD9CM|Spirillary fever|Spirillary fever +C0152063|T047|AB|026.1|ICD9CM|Streptobacillary fever|Streptobacillary fever +C0152063|T047|PT|026.1|ICD9CM|Streptobacillary fever|Streptobacillary fever +C0034686|T047|AB|026.9|ICD9CM|Rat-bite fever NOS|Rat-bite fever NOS +C0034686|T047|PT|026.9|ICD9CM|Unspecified rat-bite fever|Unspecified rat-bite fever +C0152948|T047|HT|027|ICD9CM|Other zoonotic bacterial diseases|Other zoonotic bacterial diseases +C0023860|T047|AB|027.0|ICD9CM|Listeriosis|Listeriosis +C0023860|T047|PT|027.0|ICD9CM|Listeriosis|Listeriosis +C0014736|T047|AB|027.1|ICD9CM|Erysipelothrix infection|Erysipelothrix infection +C0014736|T047|PT|027.1|ICD9CM|Erysipelothrix infection|Erysipelothrix infection +C0030636|T047|AB|027.2|ICD9CM|Pasteurellosis|Pasteurellosis +C0030636|T047|PT|027.2|ICD9CM|Pasteurellosis|Pasteurellosis +C0152949|T047|PT|027.8|ICD9CM|Other specified zoonotic bacterial diseases|Other specified zoonotic bacterial diseases +C0152949|T047|AB|027.8|ICD9CM|Zoonotic bact dis NEC|Zoonotic bact dis NEC +C0311376|T047|PT|027.9|ICD9CM|Unspecified zoonotic bacterial disease|Unspecified zoonotic bacterial disease +C0311376|T047|AB|027.9|ICD9CM|Zoonotic bact dis NOS|Zoonotic bact dis NOS +C0023343|T047|HT|030|ICD9CM|Leprosy|Leprosy +C2939130|T047|HT|030-041.99|ICD9CM|OTHER BACTERIAL DISEASES|OTHER BACTERIAL DISEASES +C0023348|T047|AB|030.0|ICD9CM|Lepromatous leprosy|Lepromatous leprosy +C0023348|T047|PT|030.0|ICD9CM|Lepromatous leprosy [type L]|Lepromatous leprosy [type L] +C0023351|T047|AB|030.1|ICD9CM|Tuberculoid leprosy|Tuberculoid leprosy +C0023351|T047|PT|030.1|ICD9CM|Tuberculoid leprosy [type T]|Tuberculoid leprosy [type T] +C0021192|T047|AB|030.2|ICD9CM|Indeterminate leprosy|Indeterminate leprosy +C0021192|T047|PT|030.2|ICD9CM|Indeterminate leprosy [group I]|Indeterminate leprosy [group I] +C0023346|T047|AB|030.3|ICD9CM|Borderline leprosy|Borderline leprosy +C0023346|T047|PT|030.3|ICD9CM|Borderline leprosy [group B]|Borderline leprosy [group B] +C0029811|T047|AB|030.8|ICD9CM|Leprosy NEC|Leprosy NEC +C0029811|T047|PT|030.8|ICD9CM|Other specified leprosy|Other specified leprosy +C0023343|T047|AB|030.9|ICD9CM|Leprosy NOS|Leprosy NOS +C0023343|T047|PT|030.9|ICD9CM|Leprosy, unspecified|Leprosy, unspecified +C0152950|T047|HT|031|ICD9CM|Diseases due to other mycobacteria|Diseases due to other mycobacteria +C0392054|T047|PT|031.0|ICD9CM|Pulmonary diseases due to other mycobacteria|Pulmonary diseases due to other mycobacteria +C0392054|T047|AB|031.0|ICD9CM|Pulmonary mycobacteria|Pulmonary mycobacteria +C0010487|T047|PT|031.1|ICD9CM|Cutaneous diseases due to other mycobacteria|Cutaneous diseases due to other mycobacteria +C0010487|T047|AB|031.1|ICD9CM|Cutaneous mycobacteria|Cutaneous mycobacteria +C0489980|T047|PT|031.2|ICD9CM|Disseminated due to other mycobacteria|Disseminated due to other mycobacteria +C0489980|T047|AB|031.2|ICD9CM|DMAC bacteremia|DMAC bacteremia +C0152951|T047|AB|031.8|ICD9CM|Mycobacterial dis NEC|Mycobacterial dis NEC +C0152951|T047|PT|031.8|ICD9CM|Other specified mycobacterial diseases|Other specified mycobacterial diseases +C0026918|T047|AB|031.9|ICD9CM|Mycobacterial dis NOS|Mycobacterial dis NOS +C0026918|T047|PT|031.9|ICD9CM|Unspecified diseases due to mycobacteria|Unspecified diseases due to mycobacteria +C0012546|T047|HT|032|ICD9CM|Diphtheria|Diphtheria +C0012556|T047|AB|032.0|ICD9CM|Faucial diphtheria|Faucial diphtheria +C0012556|T047|PT|032.0|ICD9CM|Faucial diphtheria|Faucial diphtheria +C0012558|T047|PT|032.1|ICD9CM|Nasopharyngeal diphtheria|Nasopharyngeal diphtheria +C0012558|T047|AB|032.1|ICD9CM|Nasopharynx diphtheria|Nasopharynx diphtheria +C0012553|T047|AB|032.2|ICD9CM|Ant nasal diphtheria|Ant nasal diphtheria +C0012553|T047|PT|032.2|ICD9CM|Anterior nasal diphtheria|Anterior nasal diphtheria +C0012557|T047|AB|032.3|ICD9CM|Laryngeal diphtheria|Laryngeal diphtheria +C0012557|T047|PT|032.3|ICD9CM|Laryngeal diphtheria|Laryngeal diphtheria +C0029764|T047|HT|032.8|ICD9CM|Other specified diphtheria|Other specified diphtheria +C0012554|T047|AB|032.81|ICD9CM|Conjunctival diphtheria|Conjunctival diphtheria +C0012554|T047|PT|032.81|ICD9CM|Conjunctival diphtheria|Conjunctival diphtheria +C0152952|T047|AB|032.82|ICD9CM|Diphtheritic myocarditis|Diphtheritic myocarditis +C0152952|T047|PT|032.82|ICD9CM|Diphtheritic myocarditis|Diphtheritic myocarditis +C0152953|T047|AB|032.83|ICD9CM|Diphtheritic peritonitis|Diphtheritic peritonitis +C0152953|T047|PT|032.83|ICD9CM|Diphtheritic peritonitis|Diphtheritic peritonitis +C0152954|T047|AB|032.84|ICD9CM|Diphtheritic cystitis|Diphtheritic cystitis +C0152954|T047|PT|032.84|ICD9CM|Diphtheritic cystitis|Diphtheritic cystitis +C0012555|T047|AB|032.85|ICD9CM|Cutaneous diphtheria|Cutaneous diphtheria +C0012555|T047|PT|032.85|ICD9CM|Cutaneous diphtheria|Cutaneous diphtheria +C0029764|T047|AB|032.89|ICD9CM|Diphtheria NEC|Diphtheria NEC +C0029764|T047|PT|032.89|ICD9CM|Other specified diphtheria|Other specified diphtheria +C0012546|T047|AB|032.9|ICD9CM|Diphtheria NOS|Diphtheria NOS +C0012546|T047|PT|032.9|ICD9CM|Diphtheria, unspecified|Diphtheria, unspecified +C0043168|T047|HT|033|ICD9CM|Whooping cough|Whooping cough +C0043167|T047|AB|033.0|ICD9CM|Bordetella pertussis|Bordetella pertussis +C0043167|T047|PT|033.0|ICD9CM|Whooping cough due to bordetella pertussis [B. pertussis]|Whooping cough due to bordetella pertussis [B. pertussis] +C0275742|T047|AB|033.1|ICD9CM|Bordetella parapertussis|Bordetella parapertussis +C0275742|T047|PT|033.1|ICD9CM|Whooping cough due to bordetella parapertussis [B. parapertussis]|Whooping cough due to bordetella parapertussis [B. parapertussis] +C0043170|T047|PT|033.8|ICD9CM|Whooping cough due to other specified organism|Whooping cough due to other specified organism +C0043170|T047|AB|033.8|ICD9CM|Whooping cough NEC|Whooping cough NEC +C0043168|T047|AB|033.9|ICD9CM|Whooping cough NOS|Whooping cough NOS +C0043168|T047|PT|033.9|ICD9CM|Whooping cough, unspecified organism|Whooping cough, unspecified organism +C0343487|T047|HT|034|ICD9CM|Streptococcal sore throat and scarlet fever|Streptococcal sore throat and scarlet fever +C0036689|T047|AB|034.0|ICD9CM|Strep sore throat|Strep sore throat +C0036689|T047|PT|034.0|ICD9CM|Streptococcal sore throat|Streptococcal sore throat +C0036285|T047|AB|034.1|ICD9CM|Scarlet fever|Scarlet fever +C0036285|T047|PT|034.1|ICD9CM|Scarlet fever|Scarlet fever +C0014733|T047|AB|035|ICD9CM|Erysipelas|Erysipelas +C0014733|T047|PT|035|ICD9CM|Erysipelas|Erysipelas +C0025303|T047|HT|036|ICD9CM|Meningococcal infection|Meningococcal infection +C0025294|T047|AB|036.0|ICD9CM|Meningococcal meningitis|Meningococcal meningitis +C0025294|T047|PT|036.0|ICD9CM|Meningococcal meningitis|Meningococcal meningitis +C0152957|T047|AB|036.1|ICD9CM|Meningococc encephalitis|Meningococc encephalitis +C0152957|T047|PT|036.1|ICD9CM|Meningococcal encephalitis|Meningococcal encephalitis +C0025306|T047|AB|036.2|ICD9CM|Meningococcemia|Meningococcemia +C0025306|T047|PT|036.2|ICD9CM|Meningococcemia|Meningococcemia +C1403891|T047|AB|036.3|ICD9CM|Meningococc adrenal synd|Meningococc adrenal synd +C1403891|T047|PT|036.3|ICD9CM|Waterhouse-Friderichsen syndrome, meningococcal|Waterhouse-Friderichsen syndrome, meningococcal +C0152958|T047|HT|036.4|ICD9CM|Meningococcal carditis|Meningococcal carditis +C0152958|T047|AB|036.40|ICD9CM|Meningococc carditis NOS|Meningococc carditis NOS +C0152958|T047|PT|036.40|ICD9CM|Meningococcal carditis, unspecified|Meningococcal carditis, unspecified +C0152959|T047|AB|036.41|ICD9CM|Meningococc pericarditis|Meningococc pericarditis +C0152959|T047|PT|036.41|ICD9CM|Meningococcal pericarditis|Meningococcal pericarditis +C0152960|T047|AB|036.42|ICD9CM|Meningococc endocarditis|Meningococc endocarditis +C0152960|T047|PT|036.42|ICD9CM|Meningococcal endocarditis|Meningococcal endocarditis +C0152961|T047|AB|036.43|ICD9CM|Meningococc myocarditis|Meningococc myocarditis +C0152961|T047|PT|036.43|ICD9CM|Meningococcal myocarditis|Meningococcal myocarditis +C0029815|T047|HT|036.8|ICD9CM|Other specified meningococcal infections|Other specified meningococcal infections +C0152962|T047|AB|036.81|ICD9CM|Meningococc optic neurit|Meningococc optic neurit +C0152962|T047|PT|036.81|ICD9CM|Meningococcal optic neuritis|Meningococcal optic neuritis +C0238009|T047|AB|036.82|ICD9CM|Meningococc arthropathy|Meningococc arthropathy +C0238009|T047|PT|036.82|ICD9CM|Meningococcal arthropathy|Meningococcal arthropathy +C0029815|T047|AB|036.89|ICD9CM|Meningococcal infect NEC|Meningococcal infect NEC +C0029815|T047|PT|036.89|ICD9CM|Other specified meningococcal infections|Other specified meningococcal infections +C0025303|T047|AB|036.9|ICD9CM|Meningococcal infect NOS|Meningococcal infect NOS +C0025303|T047|PT|036.9|ICD9CM|Meningococcal infection, unspecified|Meningococcal infection, unspecified +C0039614|T047|AB|037|ICD9CM|Tetanus|Tetanus +C0039614|T047|PT|037|ICD9CM|Tetanus|Tetanus +C0036690|T047|HT|038|ICD9CM|Septicemia|Septicemia +C0152964|T047|AB|038.0|ICD9CM|Streptococcal septicemia|Streptococcal septicemia +C0152964|T047|PT|038.0|ICD9CM|Streptococcal septicemia|Streptococcal septicemia +C0152965|T047|HT|038.1|ICD9CM|Staphylococcal septicemia|Staphylococcal septicemia +C0152965|T047|AB|038.10|ICD9CM|Staphylcocc septicem NOS|Staphylcocc septicem NOS +C0152965|T047|PT|038.10|ICD9CM|Staphylococcal septicemia, unspecified|Staphylococcal septicemia, unspecified +C2349736|T047|AB|038.11|ICD9CM|Meth susc Staph aur sept|Meth susc Staph aur sept +C2349736|T047|PT|038.11|ICD9CM|Methicillin susceptible Staphylococcus aureus septicemia|Methicillin susceptible Staphylococcus aureus septicemia +C0877176|T047|PT|038.12|ICD9CM|Methicillin resistant Staphylococcus aureus septicemia|Methicillin resistant Staphylococcus aureus septicemia +C0877176|T047|AB|038.12|ICD9CM|MRSA septicemia|MRSA septicemia +C0489981|T047|PT|038.19|ICD9CM|Other staphylococcal septicemia|Other staphylococcal septicemia +C0489981|T047|AB|038.19|ICD9CM|Staphylcocc septicem NEC|Staphylcocc septicem NEC +C0152966|T047|AB|038.2|ICD9CM|Pneumococcal septicemia|Pneumococcal septicemia +C0152966|T047|PT|038.2|ICD9CM|Pneumococcal septicemia [Streptococcus pneumoniae septicemia]|Pneumococcal septicemia [Streptococcus pneumoniae septicemia] +C0152967|T047|AB|038.3|ICD9CM|Anaerobic septicemia|Anaerobic septicemia +C0152967|T047|PT|038.3|ICD9CM|Septicemia due to anaerobes|Septicemia due to anaerobes +C0276063|T047|HT|038.4|ICD9CM|Septicemia due to other gram-negative organisms|Septicemia due to other gram-negative organisms +C0036685|T047|AB|038.40|ICD9CM|Gram-neg septicemia NOS|Gram-neg septicemia NOS +C0036685|T047|PT|038.40|ICD9CM|Septicemia due to gram-negative organism, unspecified|Septicemia due to gram-negative organism, unspecified +C0276029|T047|AB|038.41|ICD9CM|H. influenae septicemia|H. influenae septicemia +C0276029|T047|PT|038.41|ICD9CM|Septicemia due to hemophilus influenzae [H. influenzae]|Septicemia due to hemophilus influenzae [H. influenzae] +C0276088|T047|AB|038.42|ICD9CM|E coli septicemia|E coli septicemia +C0276088|T047|PT|038.42|ICD9CM|Septicemia due to escherichia coli [E. coli]|Septicemia due to escherichia coli [E. coli] +C0152972|T047|AB|038.43|ICD9CM|Pseudomonas septicemia|Pseudomonas septicemia +C0152972|T047|PT|038.43|ICD9CM|Septicemia due to pseudomonas|Septicemia due to pseudomonas +C0152973|T047|PT|038.44|ICD9CM|Septicemia due to serratia|Septicemia due to serratia +C0152973|T047|AB|038.44|ICD9CM|Serratia septicemia|Serratia septicemia +C0276063|T047|AB|038.49|ICD9CM|Gram-neg septicemia NEC|Gram-neg septicemia NEC +C0276063|T047|PT|038.49|ICD9CM|Other septicemia due to gram-negative organisms|Other septicemia due to gram-negative organisms +C0348133|T047|PT|038.8|ICD9CM|Other specified septicemias|Other specified septicemias +C0348133|T047|AB|038.8|ICD9CM|Septicemia NEC|Septicemia NEC +C0036690|T047|AB|038.9|ICD9CM|Septicemia NOS|Septicemia NOS +C0036690|T047|PT|038.9|ICD9CM|Unspecified septicemia|Unspecified septicemia +C0001261|T047|HT|039|ICD9CM|Actinomycotic infections|Actinomycotic infections +C0275567|T047|AB|039.0|ICD9CM|Cutaneous actinomycosis|Cutaneous actinomycosis +C0275567|T047|PT|039.0|ICD9CM|Cutaneous actinomycotic infection|Cutaneous actinomycotic infection +C0275566|T047|AB|039.1|ICD9CM|Pulmonary actinomycosis|Pulmonary actinomycosis +C0275566|T047|PT|039.1|ICD9CM|Pulmonary actinomycotic infection|Pulmonary actinomycotic infection +C0001263|T047|AB|039.2|ICD9CM|Abdominal actinomycosis|Abdominal actinomycosis +C0001263|T047|PT|039.2|ICD9CM|Abdominal actinomycotic infection|Abdominal actinomycotic infection +C0001264|T047|AB|039.3|ICD9CM|Cervicofac actinomycosis|Cervicofac actinomycosis +C0001264|T047|PT|039.3|ICD9CM|Cervicofacial actinomycotic infection|Cervicofacial actinomycotic infection +C2355609|T047|AB|039.4|ICD9CM|Madura foot|Madura foot +C2355609|T047|PT|039.4|ICD9CM|Madura foot|Madura foot +C0001265|T047|AB|039.8|ICD9CM|Actinomycosis NEC|Actinomycosis NEC +C0001265|T047|PT|039.8|ICD9CM|Actinomycotic infection of other specified sites|Actinomycotic infection of other specified sites +C0001261|T047|AB|039.9|ICD9CM|Actinomycosis NOS|Actinomycosis NOS +C0001261|T047|PT|039.9|ICD9CM|Actinomycotic infection of unspecified site|Actinomycotic infection of unspecified site +C2939130|T047|HT|040|ICD9CM|Other bacterial diseases|Other bacterial diseases +C0017105|T047|AB|040.0|ICD9CM|Gas gangrene|Gas gangrene +C0017105|T047|PT|040.0|ICD9CM|Gas gangrene|Gas gangrene +C0035468|T047|AB|040.1|ICD9CM|Rhinoscleroma|Rhinoscleroma +C0035468|T047|PT|040.1|ICD9CM|Rhinoscleroma|Rhinoscleroma +C0023788|T047|AB|040.2|ICD9CM|Whipple's disease|Whipple's disease +C0023788|T047|PT|040.2|ICD9CM|Whipple's disease|Whipple's disease +C0027537|T047|AB|040.3|ICD9CM|Necrobacillosis|Necrobacillosis +C0027537|T047|PT|040.3|ICD9CM|Necrobacillosis|Necrobacillosis +C1955553|T047|HT|040.4|ICD9CM|Other specified botulism|Other specified botulism +C0238027|T047|PT|040.41|ICD9CM|Infant botulism|Infant botulism +C0238027|T047|AB|040.41|ICD9CM|Infant botulism|Infant botulism +C1306794|T047|PT|040.42|ICD9CM|Wound botulism|Wound botulism +C1306794|T047|AB|040.42|ICD9CM|Wound botulism|Wound botulism +C0152977|T047|HT|040.8|ICD9CM|Other specified bacterial disease|Other specified bacterial disease +C0041188|T047|AB|040.81|ICD9CM|Tropical pyomyositis|Tropical pyomyositis +C0041188|T047|PT|040.81|ICD9CM|Tropical pyomyositis|Tropical pyomyositis +C0600327|T047|AB|040.82|ICD9CM|Toxic shock syndrome|Toxic shock syndrome +C0600327|T047|PT|040.82|ICD9CM|Toxic shock syndrome|Toxic shock syndrome +C0152977|T047|AB|040.89|ICD9CM|Bacterial diseases NEC|Bacterial diseases NEC +C0152977|T047|PT|040.89|ICD9CM|Other specified bacterial diseases|Other specified bacterial diseases +C0004622|T047|HT|041|ICD9CM|Bacterial infection in conditions classified elsewhere and of unspecified site|Bacterial infection in conditions classified elsewhere and of unspecified site +C0374982|T047|HT|041.0|ICD9CM|Streptococcus infection in conditions classified elsewhere and of unspecified site|Streptococcus infection in conditions classified elsewhere and of unspecified site +C0374982|T047|AB|041.00|ICD9CM|Streptococcus unspecf|Streptococcus unspecf +C0374983|T047|AB|041.01|ICD9CM|Streptococcus group a|Streptococcus group a +C0374984|T047|AB|041.02|ICD9CM|Streptococcus group b|Streptococcus group b +C0374985|T047|AB|041.03|ICD9CM|Streptococcus group c|Streptococcus group c +C0490039|T047|AB|041.04|ICD9CM|Enterococcus group d|Enterococcus group d +C0374987|T047|AB|041.05|ICD9CM|Streptococcus group g|Streptococcus group g +C0374988|T047|AB|041.09|ICD9CM|Other streptococcus|Other streptococcus +C0374989|T047|HT|041.1|ICD9CM|Staphylococcus infection in conditions classified elsewhere and of unspecified site|Staphylococcus infection in conditions classified elsewhere and of unspecified site +C0374989|T047|AB|041.10|ICD9CM|Staphylococcus unspcfied|Staphylococcus unspcfied +C0374990|T047|AB|041.11|ICD9CM|Mth sus Stph aur els/NOS|Mth sus Stph aur els/NOS +C2349738|T047|AB|041.12|ICD9CM|MRSA elsewhere/NOS|MRSA elsewhere/NOS +C0374991|T047|AB|041.19|ICD9CM|Other staphylococcus|Other staphylococcus +C0032272|T047|AB|041.2|ICD9CM|Pneumococcus infect NOS|Pneumococcus infect NOS +C0032272|T047|PT|041.2|ICD9CM|Pneumococcus infection in conditions classified elsewhere and of unspecified site|Pneumococcus infection in conditions classified elsewhere and of unspecified site +C2712605|T047|PT|041.3|ICD9CM|Friedländer's bacillus infection in conditions classified elsewhere and of unspecified site|Friedländer's bacillus infection in conditions classified elsewhere and of unspecified site +C2712605|T047|AB|041.3|ICD9CM|Klebsiella pneumoniae|Klebsiella pneumoniae +C0014835|T047|HT|041.4|ICD9CM|Escherichia coli [E. coli] infection in conditions classified elsewhere and of unspecified site|Escherichia coli [E. coli] infection in conditions classified elsewhere and of unspecified site +C3161036|T047|PT|041.41|ICD9CM|Shiga toxin-producing Escherichia coli [E. coli] (STEC) O157|Shiga toxin-producing Escherichia coli [E. coli] (STEC) O157 +C3161036|T047|AB|041.41|ICD9CM|Shiga txn-produce E.coli|Shiga txn-produce E.coli +C3161167|T047|PT|041.42|ICD9CM|Other specified Shiga toxin-producing Escherichia coli [E. coli] (STEC)|Other specified Shiga toxin-producing Escherichia coli [E. coli] (STEC) +C3161167|T047|AB|041.42|ICD9CM|Shga txn prod E.coli NEC|Shga txn prod E.coli NEC +C3161170|T047|AB|041.43|ICD9CM|Shga txn prod E.coli NOS|Shga txn prod E.coli NOS +C3161170|T047|PT|041.43|ICD9CM|Shiga toxin-producing Escherichia coli [E. coli] (STEC), unspecified|Shiga toxin-producing Escherichia coli [E. coli] (STEC), unspecified +C0014836|T047|AB|041.49|ICD9CM|E.coli infection NEC/NOS|E.coli infection NEC/NOS +C0014836|T047|PT|041.49|ICD9CM|Other and unspecified Escherichia coli [E. coli]|Other and unspecified Escherichia coli [E. coli] +C0019073|T047|AB|041.5|ICD9CM|H. influenzae infect NOS|H. influenzae infect NOS +C0033698|T047|PT|041.6|ICD9CM|Proteus (mirabilis) (morganii) infection in conditions classified elsewhere and of unspecified site|Proteus (mirabilis) (morganii) infection in conditions classified elsewhere and of unspecified site +C0033698|T047|AB|041.6|ICD9CM|Proteus infection NOS|Proteus infection NOS +C0033816|T047|AB|041.7|ICD9CM|Pseudomonas infect NOS|Pseudomonas infect NOS +C0033816|T047|PT|041.7|ICD9CM|Pseudomonas infection in conditions classified elsewhere and of unspecified site|Pseudomonas infection in conditions classified elsewhere and of unspecified site +C0029748|T047|HT|041.8|ICD9CM|Other specified bacterial infections in conditions classified elsewhere and of unspecified site|Other specified bacterial infections in conditions classified elsewhere and of unspecified site +C0374992|T047|AB|041.81|ICD9CM|Mycoplasma|Mycoplasma +C1456246|T047|AB|041.82|ICD9CM|Bacteroides fragilis|Bacteroides fragilis +C1456246|T047|PT|041.82|ICD9CM|Bacteroides fragilis|Bacteroides fragilis +C0374994|T047|AB|041.83|ICD9CM|Clostridium perfringens|Clostridium perfringens +C0374995|T047|AB|041.84|ICD9CM|Other anaerobes|Other anaerobes +C0374996|T047|AB|041.85|ICD9CM|Oth gram negatv bacteria|Oth gram negatv bacteria +C0374997|T047|AB|041.86|ICD9CM|Helicobacter pylori|Helicobacter pylori +C0374997|T047|PT|041.86|ICD9CM|Helicobacter pylori [H. pylori]|Helicobacter pylori [H. pylori] +C0029748|T047|AB|041.89|ICD9CM|Oth specf bacteria|Oth specf bacteria +C0004622|T047|AB|041.9|ICD9CM|Bacterial infection NOS|Bacterial infection NOS +C0004622|T047|PT|041.9|ICD9CM|Bacterial infection, unspecified, in conditions classified elsewhere and of unspecified site|Bacterial infection, unspecified, in conditions classified elsewhere and of unspecified site +C0019693|T047|AB|042|ICD9CM|Human immuno virus dis|Human immuno virus dis +C0019693|T047|PT|042|ICD9CM|Human immunodeficiency virus [HIV] disease|Human immunodeficiency virus [HIV] disease +C0019693|T047|HT|042-042.99|ICD9CM|HUMAN IMMUNODEFICIENCY VIRUS [HIV] INFECTION|HUMAN IMMUNODEFICIENCY VIRUS [HIV] INFECTION +C0032371|T047|HT|045|ICD9CM|Acute poliomyelitis|Acute poliomyelitis +C0032372|T047|HT|045.0|ICD9CM|Acute paralytic poliomyelitis specified as bulbar|Acute paralytic poliomyelitis specified as bulbar +C0152989|T047|AB|045.00|ICD9CM|Ac bulbar polio-type NOS|Ac bulbar polio-type NOS +C0152989|T047|PT|045.00|ICD9CM|Acute paralytic poliomyelitis specified as bulbar, poliovirus, unspecified type|Acute paralytic poliomyelitis specified as bulbar, poliovirus, unspecified type +C0152990|T047|AB|045.01|ICD9CM|Ac bulbar polio-type 1|Ac bulbar polio-type 1 +C0152990|T047|PT|045.01|ICD9CM|Acute paralytic poliomyelitis specified as bulbar, poliovirus type I|Acute paralytic poliomyelitis specified as bulbar, poliovirus type I +C0152991|T047|AB|045.02|ICD9CM|Ac bulbar polio-type 2|Ac bulbar polio-type 2 +C0152991|T047|PT|045.02|ICD9CM|Acute paralytic poliomyelitis specified as bulbar, poliovirus type II|Acute paralytic poliomyelitis specified as bulbar, poliovirus type II +C0152992|T047|AB|045.03|ICD9CM|Ac bulbar polio-type 3|Ac bulbar polio-type 3 +C0152992|T047|PT|045.03|ICD9CM|Acute paralytic poliomyelitis specified as bulbar, poliovirus type III|Acute paralytic poliomyelitis specified as bulbar, poliovirus type III +C0152993|T047|HT|045.1|ICD9CM|Acute poliomyelitis with other paralysis|Acute poliomyelitis with other paralysis +C0152994|T047|PT|045.10|ICD9CM|Acute poliomyelitis with other paralysis, poliovirus, unspecified type|Acute poliomyelitis with other paralysis, poliovirus, unspecified type +C0152994|T047|AB|045.10|ICD9CM|Paral polio NEC-type NOS|Paral polio NEC-type NOS +C0152995|T047|PT|045.11|ICD9CM|Acute poliomyelitis with other paralysis, poliovirus type I|Acute poliomyelitis with other paralysis, poliovirus type I +C0152995|T047|AB|045.11|ICD9CM|Paral polio NEC-type 1|Paral polio NEC-type 1 +C0152996|T047|PT|045.12|ICD9CM|Acute poliomyelitis with other paralysis, poliovirus type II|Acute poliomyelitis with other paralysis, poliovirus type II +C0152996|T047|AB|045.12|ICD9CM|Paral polio NEC-type 2|Paral polio NEC-type 2 +C0152997|T047|PT|045.13|ICD9CM|Acute poliomyelitis with other paralysis, poliovirus type III|Acute poliomyelitis with other paralysis, poliovirus type III +C0152997|T047|AB|045.13|ICD9CM|Paral polio NEC-type 3|Paral polio NEC-type 3 +C0152998|T047|HT|045.2|ICD9CM|Acute nonparalytic poliomyelitis|Acute nonparalytic poliomyelitis +C0152998|T047|PT|045.20|ICD9CM|Acute nonparalytic poliomyelitis, poliovirus, unspecified type|Acute nonparalytic poliomyelitis, poliovirus, unspecified type +C0152998|T047|AB|045.20|ICD9CM|Nonparaly polio-type NOS|Nonparaly polio-type NOS +C1112685|T047|PT|045.21|ICD9CM|Acute nonparalytic poliomyelitis, poliovirus type I|Acute nonparalytic poliomyelitis, poliovirus type I +C1112685|T047|AB|045.21|ICD9CM|Nonparalyt polio-type 1|Nonparalyt polio-type 1 +C1112686|T047|PT|045.22|ICD9CM|Acute nonparalytic poliomyelitis, poliovirus type II|Acute nonparalytic poliomyelitis, poliovirus type II +C1112686|T047|AB|045.22|ICD9CM|Nonparalyt polio-type 2|Nonparalyt polio-type 2 +C1112687|T047|PT|045.23|ICD9CM|Acute nonparalytic poliomyelitis, poliovirus type III|Acute nonparalytic poliomyelitis, poliovirus type III +C1112687|T047|AB|045.23|ICD9CM|Nonparalyt polio-type 3|Nonparalyt polio-type 3 +C0032371|T047|HT|045.9|ICD9CM|Acute poliomyelitis, unspecified|Acute poliomyelitis, unspecified +C0374998|T047|AB|045.90|ICD9CM|Ac polio NOS-type NOS|Ac polio NOS-type NOS +C0374998|T047|PT|045.90|ICD9CM|Acute poliomyelitis, unspecified, poliovirus, unspecified type|Acute poliomyelitis, unspecified, poliovirus, unspecified type +C0153004|T047|AB|045.91|ICD9CM|Ac polio NOS-type 1|Ac polio NOS-type 1 +C0153004|T047|PT|045.91|ICD9CM|Acute poliomyelitis, unspecified, poliovirus type I|Acute poliomyelitis, unspecified, poliovirus type I +C0153005|T047|AB|045.92|ICD9CM|Ac polio NOS-type 2|Ac polio NOS-type 2 +C0153005|T047|PT|045.92|ICD9CM|Acute poliomyelitis, unspecified, poliovirus type II|Acute poliomyelitis, unspecified, poliovirus type II +C0153006|T047|AB|045.93|ICD9CM|Ac polio NOS-type 3|Ac polio NOS-type 3 +C0153006|T047|PT|045.93|ICD9CM|Acute poliomyelitis, unspecified, poliovirus type III|Acute poliomyelitis, unspecified, poliovirus type III +C2349761|T047|HT|046|ICD9CM|Slow virus infections and prion diseases of central nervous system|Slow virus infections and prion diseases of central nervous system +C0022802|T047|AB|046.0|ICD9CM|Kuru|Kuru +C0022802|T047|PT|046.0|ICD9CM|Kuru|Kuru +C0022336|T047|HT|046.1|ICD9CM|Jakob-Creutzfeldt disease|Jakob-Creutzfeldt disease +C0376329|T047|PT|046.11|ICD9CM|Variant Creutzfeldt-Jakob disease|Variant Creutzfeldt-Jakob disease +C0376329|T047|AB|046.11|ICD9CM|Varnt Creutzfeldt-Jakob|Varnt Creutzfeldt-Jakob +C2349756|T047|AB|046.19|ICD9CM|Creutzfldt-Jakob NEC/NOS|Creutzfldt-Jakob NEC/NOS +C2349756|T047|PT|046.19|ICD9CM|Other and unspecified Creutzfeldt-Jakob disease|Other and unspecified Creutzfeldt-Jakob disease +C0038522|T047|AB|046.2|ICD9CM|Subac scleros panenceph|Subac scleros panenceph +C0038522|T047|PT|046.2|ICD9CM|Subacute sclerosing panencephalitis|Subacute sclerosing panencephalitis +C0023524|T047|AB|046.3|ICD9CM|Prog multifoc leukoencep|Prog multifoc leukoencep +C0023524|T047|PT|046.3|ICD9CM|Progressive multifocal leukoencephalopathy|Progressive multifocal leukoencephalopathy +C2349760|T047|HT|046.7|ICD9CM|Other specified prion diseases of central nervous system|Other specified prion diseases of central nervous system +C0017495|T047|PT|046.71|ICD9CM|Gerstmann-Sträussler-Scheinker syndrome|Gerstmann-Sträussler-Scheinker syndrome +C0017495|T047|AB|046.71|ICD9CM|Gerstmn-Straus-Schnk syn|Gerstmn-Straus-Schnk syn +C0206042|T047|PT|046.72|ICD9CM|Fatal familial insomnia|Fatal familial insomnia +C0206042|T047|AB|046.72|ICD9CM|Fatal familial insomnia|Fatal familial insomnia +C2349759|T047|PT|046.79|ICD9CM|Other and unspecified prion disease of central nervous system|Other and unspecified prion disease of central nervous system +C2349759|T047|AB|046.79|ICD9CM|Prion dis of CNS NEC/NOS|Prion dis of CNS NEC/NOS +C0153007|T047|AB|046.8|ICD9CM|Cns slow virus infec NEC|Cns slow virus infec NEC +C0153007|T047|PT|046.8|ICD9CM|Other specified slow virus infection of central nervous system|Other specified slow virus infection of central nervous system +C0153008|T047|AB|046.9|ICD9CM|Cns slow virus infec NOS|Cns slow virus infec NOS +C0153008|T047|PT|046.9|ICD9CM|Unspecified slow virus infection of central nervous system|Unspecified slow virus infection of central nervous system +C0276430|T047|HT|047|ICD9CM|Meningitis due to enterovirus|Meningitis due to enterovirus +C0276431|T047|AB|047.0|ICD9CM|Coxsackie virus mening|Coxsackie virus mening +C0276431|T047|PT|047.0|ICD9CM|Meningitis due to coxsackie virus|Meningitis due to coxsackie virus +C0338388|T047|AB|047.1|ICD9CM|Echo virus meningitis|Echo virus meningitis +C0338388|T047|PT|047.1|ICD9CM|Meningitis due to echo virus|Meningitis due to echo virus +C0029843|T047|PT|047.8|ICD9CM|Other specified viral meningitis|Other specified viral meningitis +C0029843|T047|AB|047.8|ICD9CM|Viral meningitis NEC|Viral meningitis NEC +C0025297|T047|PT|047.9|ICD9CM|Unspecified viral meningitis|Unspecified viral meningitis +C0025297|T047|AB|047.9|ICD9CM|Viral meningitis NOS|Viral meningitis NOS +C0153012|T047|AB|048|ICD9CM|Oth enteroviral cns dis|Oth enteroviral cns dis +C0153012|T047|PT|048|ICD9CM|Other enterovirus diseases of central nervous system|Other enterovirus diseases of central nervous system +C0153013|T047|HT|049|ICD9CM|Other non-arthropod-borne viral diseases of central nervous system|Other non-arthropod-borne viral diseases of central nervous system +C0153014|T047|AB|049.0|ICD9CM|Lymphocytic choriomening|Lymphocytic choriomening +C0153014|T047|PT|049.0|ICD9CM|Lymphocytic choriomeningitis|Lymphocytic choriomeningitis +C0153015|T047|AB|049.1|ICD9CM|Adenoviral meningitis|Adenoviral meningitis +C0153015|T047|PT|049.1|ICD9CM|Meningitis due to adenovirus|Meningitis due to adenovirus +C0029818|T047|PT|049.8|ICD9CM|Other specified non-arthropod-borne viral diseases of central nervous system|Other specified non-arthropod-borne viral diseases of central nervous system +C0029818|T047|AB|049.8|ICD9CM|Viral encephalitis NEC|Viral encephalitis NEC +C0276148|T047|PT|049.9|ICD9CM|Unspecified non-arthropod-borne viral diseases of central nervous system|Unspecified non-arthropod-borne viral diseases of central nervous system +C0276148|T047|AB|049.9|ICD9CM|Viral encephalitis NOS|Viral encephalitis NOS +C0037354|T047|HT|050|ICD9CM|Smallpox|Smallpox +C2712640|T047|HT|050-059.99|ICD9CM|VIRAL DISEASES GENERALLY ACCOMPANIED BY EXANTHEM|VIRAL DISEASES GENERALLY ACCOMPANIED BY EXANTHEM +C1812609|T047|AB|050.0|ICD9CM|Variola major|Variola major +C1812609|T047|PT|050.0|ICD9CM|Variola major|Variola major +C0001906|T047|AB|050.1|ICD9CM|Alastrim|Alastrim +C0001906|T047|PT|050.1|ICD9CM|Alastrim|Alastrim +C0037358|T047|AB|050.2|ICD9CM|Modified smallpox|Modified smallpox +C0037358|T047|PT|050.2|ICD9CM|Modified smallpox|Modified smallpox +C0037354|T047|AB|050.9|ICD9CM|Smallpox NOS|Smallpox NOS +C0037354|T047|PT|050.9|ICD9CM|Smallpox, unspecified|Smallpox, unspecified +C0153016|T047|HT|051|ICD9CM|Cowpox and paravaccinia|Cowpox and paravaccinia +C2349762|T047|HT|051.0|ICD9CM|Cowpox and vaccinia not from vaccination|Cowpox and vaccinia not from vaccination +C0010232|T047|PT|051.01|ICD9CM|Cowpox|Cowpox +C0010232|T047|AB|051.01|ICD9CM|Cowpox|Cowpox +C0864706|T033|AB|051.02|ICD9CM|Vaccinia n/f vaccination|Vaccinia n/f vaccination +C0864706|T033|PT|051.02|ICD9CM|Vaccinia not from vaccination|Vaccinia not from vaccination +C0026143|T047|AB|051.1|ICD9CM|Pseudocowpox|Pseudocowpox +C0026143|T047|PT|051.1|ICD9CM|Pseudocowpox|Pseudocowpox +C0013570|T047|AB|051.2|ICD9CM|Contagious pustular derm|Contagious pustular derm +C0013570|T047|PT|051.2|ICD9CM|Contagious pustular dermatitis|Contagious pustular dermatitis +C0026143|T047|AB|051.9|ICD9CM|Paravaccinia NOS|Paravaccinia NOS +C0026143|T047|PT|051.9|ICD9CM|Paravaccinia, unspecified|Paravaccinia, unspecified +C0008049|T047|HT|052|ICD9CM|Chickenpox|Chickenpox +C0153017|T047|AB|052.0|ICD9CM|Postvaricella encephalit|Postvaricella encephalit +C0153017|T047|PT|052.0|ICD9CM|Postvaricella encephalitis|Postvaricella encephalitis +C0153018|T047|PT|052.1|ICD9CM|Varicella (hemorrhagic) pneumonitis|Varicella (hemorrhagic) pneumonitis +C0153018|T047|AB|052.1|ICD9CM|Varicella pneumonitis|Varicella pneumonitis +C1719295|T047|PT|052.2|ICD9CM|Postvaricella myelitis|Postvaricella myelitis +C1719295|T047|AB|052.2|ICD9CM|Postvaricella myelitis|Postvaricella myelitis +C0153019|T047|PT|052.7|ICD9CM|Chickenpox with other specified complications|Chickenpox with other specified complications +C0153019|T047|AB|052.7|ICD9CM|Varicella complicat NEC|Varicella complicat NEC +C0348187|T047|PT|052.8|ICD9CM|Chickenpox with unspecified complication|Chickenpox with unspecified complication +C0348187|T047|AB|052.8|ICD9CM|Varicella complicat NOS|Varicella complicat NOS +C0348188|T047|AB|052.9|ICD9CM|Varicella uncomplicated|Varicella uncomplicated +C0348188|T047|PT|052.9|ICD9CM|Varicella without mention of complication|Varicella without mention of complication +C0019360|T047|HT|053|ICD9CM|Herpes zoster|Herpes zoster +C0700503|T047|AB|053.0|ICD9CM|Herpes zoster meningitis|Herpes zoster meningitis +C0700503|T047|PT|053.0|ICD9CM|Herpes zoster with meningitis|Herpes zoster with meningitis +C0153022|T047|HT|053.1|ICD9CM|Herpes zoster with other nervous system complications|Herpes zoster with other nervous system complications +C1264623|T047|AB|053.10|ICD9CM|H zoster nerv syst NOS|H zoster nerv syst NOS +C1264623|T047|PT|053.10|ICD9CM|Herpes zoster with unspecified nervous system complication|Herpes zoster with unspecified nervous system complication +C0017409|T047|AB|053.11|ICD9CM|Geniculate herpes zoster|Geniculate herpes zoster +C0017409|T047|PT|053.11|ICD9CM|Geniculate herpes zoster|Geniculate herpes zoster +C0153024|T047|AB|053.12|ICD9CM|Postherpes trigem neural|Postherpes trigem neural +C0153024|T047|PT|053.12|ICD9CM|Postherpetic trigeminal neuralgia|Postherpetic trigeminal neuralgia +C0153025|T047|AB|053.13|ICD9CM|Postherpes polyneuropath|Postherpes polyneuropath +C0153025|T047|PT|053.13|ICD9CM|Postherpetic polyneuropathy|Postherpetic polyneuropathy +C1719297|T047|PT|053.14|ICD9CM|Herpes zoster myelitis|Herpes zoster myelitis +C1719297|T047|AB|053.14|ICD9CM|Herpes zoster myelitis|Herpes zoster myelitis +C0153022|T047|AB|053.19|ICD9CM|H zoster nerv syst NEC|H zoster nerv syst NEC +C0153022|T047|PT|053.19|ICD9CM|Herpes zoster with other nervous system complications|Herpes zoster with other nervous system complications +C0019364|T047|HT|053.2|ICD9CM|Herpes zoster with ophthalmic complications|Herpes zoster with ophthalmic complications +C0019362|T047|PT|053.20|ICD9CM|Herpes zoster dermatitis of eyelid|Herpes zoster dermatitis of eyelid +C0019362|T047|AB|053.20|ICD9CM|Herpes zoster of eyelid|Herpes zoster of eyelid +C0153027|T047|AB|053.21|ICD9CM|H zoster keratoconjunct|H zoster keratoconjunct +C0153027|T047|PT|053.21|ICD9CM|Herpes zoster keratoconjunctivitis|Herpes zoster keratoconjunctivitis +C0153028|T047|AB|053.22|ICD9CM|H zoster iridocyclitis|H zoster iridocyclitis +C0153028|T047|PT|053.22|ICD9CM|Herpes zoster iridocyclitis|Herpes zoster iridocyclitis +C0795698|T047|AB|053.29|ICD9CM|Herpes zoster of eye NEC|Herpes zoster of eye NEC +C0795698|T047|PT|053.29|ICD9CM|Herpes zoster with other ophthalmic complications|Herpes zoster with other ophthalmic complications +C0153030|T047|HT|053.7|ICD9CM|Herpes zoster with other specified complications|Herpes zoster with other specified complications +C0153031|T047|AB|053.71|ICD9CM|H zoster otitis externa|H zoster otitis externa +C0153031|T047|PT|053.71|ICD9CM|Otitis externa due to herpes zoster|Otitis externa due to herpes zoster +C0153030|T047|AB|053.79|ICD9CM|H zoster complicated NEC|H zoster complicated NEC +C0153030|T047|PT|053.79|ICD9CM|Herpes zoster with other specified complications|Herpes zoster with other specified complications +C0276249|T047|AB|053.8|ICD9CM|H zoster complicated NOS|H zoster complicated NOS +C0276249|T047|PT|053.8|ICD9CM|Herpes zoster with unspecified complication|Herpes zoster with unspecified complication +C0019366|T047|AB|053.9|ICD9CM|Herpes zoster NOS|Herpes zoster NOS +C0019366|T047|PT|053.9|ICD9CM|Herpes zoster without mention of complication|Herpes zoster without mention of complication +C0019348|T047|HT|054|ICD9CM|Herpes simplex|Herpes simplex +C0936250|T047|AB|054.0|ICD9CM|Eczema herpeticum|Eczema herpeticum +C0936250|T047|PT|054.0|ICD9CM|Eczema herpeticum|Eczema herpeticum +C0019342|T047|HT|054.1|ICD9CM|Genital herpes|Genital herpes +C0019342|T047|AB|054.10|ICD9CM|Genital herpes NOS|Genital herpes NOS +C0019342|T047|PT|054.10|ICD9CM|Genital herpes, unspecified|Genital herpes, unspecified +C0019386|T047|AB|054.11|ICD9CM|Herpetic vulvovaginitis|Herpetic vulvovaginitis +C0019386|T047|PT|054.11|ICD9CM|Herpetic vulvovaginitis|Herpetic vulvovaginitis +C0153033|T047|AB|054.12|ICD9CM|Herpetic ulcer of vulva|Herpetic ulcer of vulva +C0153033|T047|PT|054.12|ICD9CM|Herpetic ulceration of vulva|Herpetic ulceration of vulva +C0153034|T047|AB|054.13|ICD9CM|Herpetic infect of penis|Herpetic infect of penis +C0153034|T047|PT|054.13|ICD9CM|Herpetic infection of penis|Herpetic infection of penis +C0029627|T047|AB|054.19|ICD9CM|Genital herpes NEC|Genital herpes NEC +C0029627|T047|PT|054.19|ICD9CM|Other genital herpes|Other genital herpes +C0376379|T047|AB|054.2|ICD9CM|Herpetic gingivostomat|Herpetic gingivostomat +C0376379|T047|PT|054.2|ICD9CM|Herpetic gingivostomatitis|Herpetic gingivostomatitis +C0019385|T047|AB|054.3|ICD9CM|Herpetic encephalitis|Herpetic encephalitis +C0019385|T047|PT|054.3|ICD9CM|Herpetic meningoencephalitis|Herpetic meningoencephalitis +C0153036|T047|HT|054.4|ICD9CM|Herpes simplex with ophthalmic complications|Herpes simplex with ophthalmic complications +C0153036|T047|AB|054.40|ICD9CM|Herpes simplex eye NOS|Herpes simplex eye NOS +C0153036|T047|PT|054.40|ICD9CM|Herpes simplex with unspecified ophthalmic complication|Herpes simplex with unspecified ophthalmic complication +C0153037|T047|PT|054.41|ICD9CM|Herpes simplex dermatitis of eyelid|Herpes simplex dermatitis of eyelid +C0153037|T047|AB|054.41|ICD9CM|Herpes simplex of eyelid|Herpes simplex of eyelid +C0022570|T047|AB|054.42|ICD9CM|Dendritic keratitis|Dendritic keratitis +C0022570|T047|PT|054.42|ICD9CM|Dendritic keratitis|Dendritic keratitis +C0153038|T047|AB|054.43|ICD9CM|H simplex keratitis|H simplex keratitis +C0153038|T047|PT|054.43|ICD9CM|Herpes simplex disciform keratitis|Herpes simplex disciform keratitis +C0153039|T047|AB|054.44|ICD9CM|H simplex iridocyclitis|H simplex iridocyclitis +C0153039|T047|PT|054.44|ICD9CM|Herpes simplex iridocyclitis|Herpes simplex iridocyclitis +C0153040|T047|AB|054.49|ICD9CM|Herpes simplex eye NEC|Herpes simplex eye NEC +C0153040|T047|PT|054.49|ICD9CM|Herpes simplex with other ophthalmic complications|Herpes simplex with other ophthalmic complications +C0153041|T047|AB|054.5|ICD9CM|Herpetic septicemia|Herpetic septicemia +C0153041|T047|PT|054.5|ICD9CM|Herpetic septicemia|Herpetic septicemia +C0153042|T047|AB|054.6|ICD9CM|Herpetic whitlow|Herpetic whitlow +C0153042|T047|PT|054.6|ICD9CM|Herpetic whitlow|Herpetic whitlow +C0153043|T047|HT|054.7|ICD9CM|Herpes simplex with other specified complications|Herpes simplex with other specified complications +C0019359|T047|AB|054.71|ICD9CM|Visceral herpes simplex|Visceral herpes simplex +C0019359|T047|PT|054.71|ICD9CM|Visceral herpes simplex|Visceral herpes simplex +C0153045|T047|AB|054.72|ICD9CM|H simplex meningitis|H simplex meningitis +C0153045|T047|PT|054.72|ICD9CM|Herpes simplex meningitis|Herpes simplex meningitis +C0153046|T047|AB|054.73|ICD9CM|H simplex otitis externa|H simplex otitis externa +C0153046|T047|PT|054.73|ICD9CM|Herpes simplex otitis externa|Herpes simplex otitis externa +C1719298|T047|PT|054.74|ICD9CM|Herpes simplex myelitis|Herpes simplex myelitis +C1719298|T047|AB|054.74|ICD9CM|Herpes simplex myelitis|Herpes simplex myelitis +C0153043|T047|AB|054.79|ICD9CM|H simplex complicat NEC|H simplex complicat NEC +C0153043|T047|PT|054.79|ICD9CM|Herpes simplex with other specified complications|Herpes simplex with other specified complications +C0153047|T047|AB|054.8|ICD9CM|H simplex complicat NOS|H simplex complicat NOS +C0153047|T047|PT|054.8|ICD9CM|Herpes simplex with unspecified complication|Herpes simplex with unspecified complication +C0392646|T047|AB|054.9|ICD9CM|Herpes simplex NOS|Herpes simplex NOS +C0392646|T047|PT|054.9|ICD9CM|Herpes simplex without mention of complication|Herpes simplex without mention of complication +C0025007|T047|HT|055|ICD9CM|Measles|Measles +C0153048|T047|AB|055.0|ICD9CM|Postmeasles encephalitis|Postmeasles encephalitis +C0153048|T047|PT|055.0|ICD9CM|Postmeasles encephalitis|Postmeasles encephalitis +C1112452|T047|AB|055.1|ICD9CM|Postmeasles pneumonia|Postmeasles pneumonia +C1112452|T047|PT|055.1|ICD9CM|Postmeasles pneumonia|Postmeasles pneumonia +C0153050|T047|AB|055.2|ICD9CM|Postmeasles otitis media|Postmeasles otitis media +C0153050|T047|PT|055.2|ICD9CM|Postmeasles otitis media|Postmeasles otitis media +C0153051|T047|HT|055.7|ICD9CM|Measles with other specified complications|Measles with other specified complications +C0153052|T047|AB|055.71|ICD9CM|Measles keratitis|Measles keratitis +C0153052|T047|PT|055.71|ICD9CM|Measles keratoconjunctivitis|Measles keratoconjunctivitis +C0153051|T047|AB|055.79|ICD9CM|Measles complication NEC|Measles complication NEC +C0153051|T047|PT|055.79|ICD9CM|Measles with other specified complications|Measles with other specified complications +C0153053|T047|AB|055.8|ICD9CM|Measles complication NOS|Measles complication NOS +C0153053|T047|PT|055.8|ICD9CM|Measles with unspecified complication|Measles with unspecified complication +C0392650|T047|AB|055.9|ICD9CM|Measles uncomplicated|Measles uncomplicated +C0392650|T047|PT|055.9|ICD9CM|Measles without mention of complication|Measles without mention of complication +C0035920|T047|HT|056|ICD9CM|Rubella|Rubella +C2937267|T047|HT|056.0|ICD9CM|Rubella with neurological complications|Rubella with neurological complications +C2937267|T047|AB|056.00|ICD9CM|Rubella nerve compl NOS|Rubella nerve compl NOS +C2937267|T047|PT|056.00|ICD9CM|Rubella with unspecified neurological complication|Rubella with unspecified neurological complication +C0033359|T047|PT|056.01|ICD9CM|Encephalomyelitis due to rubella|Encephalomyelitis due to rubella +C0033359|T047|AB|056.01|ICD9CM|Rubella encephalitis|Rubella encephalitis +C0153057|T047|AB|056.09|ICD9CM|Rubella nerve compl NEC|Rubella nerve compl NEC +C0153057|T047|PT|056.09|ICD9CM|Rubella with other neurological complications|Rubella with other neurological complications +C0153058|T047|HT|056.7|ICD9CM|Rubella with other specified complications|Rubella with other specified complications +C0276308|T047|AB|056.71|ICD9CM|Arthritis due to rubella|Arthritis due to rubella +C0276308|T047|PT|056.71|ICD9CM|Arthritis due to rubella|Arthritis due to rubella +C0153058|T047|AB|056.79|ICD9CM|Rubella complication NEC|Rubella complication NEC +C0153058|T047|PT|056.79|ICD9CM|Rubella with other specified complications|Rubella with other specified complications +C0153060|T047|AB|056.8|ICD9CM|Rubella complication NOS|Rubella complication NOS +C0153060|T047|PT|056.8|ICD9CM|Rubella with unspecified complications|Rubella with unspecified complications +C0348194|T047|AB|056.9|ICD9CM|Rubella uncomplicated|Rubella uncomplicated +C0348194|T047|PT|056.9|ICD9CM|Rubella without mention of complication|Rubella without mention of complication +C0153061|T047|HT|057|ICD9CM|Other viral exanthemata|Other viral exanthemata +C0085273|T047|AB|057.0|ICD9CM|Erythema infectiosum|Erythema infectiosum +C0085273|T047|PT|057.0|ICD9CM|Erythema infectiosum (fifth disease)|Erythema infectiosum (fifth disease) +C0029841|T047|PT|057.8|ICD9CM|Other specified viral exanthemata|Other specified viral exanthemata +C0029841|T047|AB|057.8|ICD9CM|Viral exanthemata NEC|Viral exanthemata NEC +C0153062|T047|PT|057.9|ICD9CM|Viral exanthem, unspecified|Viral exanthem, unspecified +C0153062|T047|AB|057.9|ICD9CM|Viral exanthemata NOS|Viral exanthemata NOS +C1955628|T047|HT|058|ICD9CM|Other human herpesvirus|Other human herpesvirus +C0015231|T047|HT|058.1|ICD9CM|Roseola infantum|Roseola infantum +C0015231|T047|AB|058.10|ICD9CM|Roseola infantum NOS|Roseola infantum NOS +C0015231|T047|PT|058.10|ICD9CM|Roseola infantum, unspecified|Roseola infantum, unspecified +C2240388|T047|AB|058.11|ICD9CM|Roseola infant d/t HHV-6|Roseola infant d/t HHV-6 +C2240388|T047|PT|058.11|ICD9CM|Roseola infantum due to human herpesvirus 6|Roseola infantum due to human herpesvirus 6 +C1274329|T047|AB|058.12|ICD9CM|Roseola infant d/t HHV-7|Roseola infant d/t HHV-7 +C1274329|T047|PT|058.12|ICD9CM|Roseola infantum due to human herpesvirus 7|Roseola infantum due to human herpesvirus 7 +C1955630|T047|HT|058.2|ICD9CM|Other human herpesvirus encephalitis|Other human herpesvirus encephalitis +C1955629|T047|AB|058.21|ICD9CM|Human herpesvir 6 enceph|Human herpesvir 6 enceph +C1955629|T047|PT|058.21|ICD9CM|Human herpesvirus 6 encephalitis|Human herpesvirus 6 encephalitis +C1955630|T047|AB|058.29|ICD9CM|Human herpesvr encph NEC|Human herpesvr encph NEC +C1955630|T047|PT|058.29|ICD9CM|Other human herpesvirus encephalitis|Other human herpesvirus encephalitis +C1955633|T047|HT|058.8|ICD9CM|Other human herpesvirus infections|Other human herpesvirus infections +C0854530|T047|AB|058.81|ICD9CM|Human herpesvirus 6 infc|Human herpesvirus 6 infc +C0854530|T047|PT|058.81|ICD9CM|Human herpesvirus 6 infection|Human herpesvirus 6 infection +C1504514|T047|AB|058.82|ICD9CM|Human herpesvirus 7 infc|Human herpesvirus 7 infc +C1504514|T047|PT|058.82|ICD9CM|Human herpesvirus 7 infection|Human herpesvirus 7 infection +C1955633|T047|AB|058.89|ICD9CM|Human herpesvirs inf NEC|Human herpesvirs inf NEC +C1955633|T047|PT|058.89|ICD9CM|Other human herpesvirus infection|Other human herpesvirus infection +C2349858|T047|HT|059|ICD9CM|Other poxvirus infections|Other poxvirus infections +C0348196|T047|HT|059.0|ICD9CM|Other orthopoxvirus infections|Other orthopoxvirus infections +C2349763|T047|AB|059.00|ICD9CM|Orthopoxvirus infect NOS|Orthopoxvirus infect NOS +C2349763|T047|PT|059.00|ICD9CM|Orthopoxvirus infection, unspecified|Orthopoxvirus infection, unspecified +C0276180|T047|PT|059.01|ICD9CM|Monkeypox|Monkeypox +C0276180|T047|AB|059.01|ICD9CM|Monkeypox|Monkeypox +C0348196|T047|AB|059.09|ICD9CM|Orthopoxvirus infect NEC|Orthopoxvirus infect NEC +C0348196|T047|PT|059.09|ICD9CM|Other orthopoxvirus infections|Other orthopoxvirus infections +C2349855|T047|HT|059.1|ICD9CM|Other parapoxvirus infections|Other parapoxvirus infections +C2368006|T047|PT|059.10|ICD9CM|Parapoxvirus infection, unspecified|Parapoxvirus infection, unspecified +C2368006|T047|AB|059.10|ICD9CM|Parapoxvirus infectn NOS|Parapoxvirus infectn NOS +C2349765|T047|PT|059.11|ICD9CM|Bovine stomatitis|Bovine stomatitis +C2349765|T047|AB|059.11|ICD9CM|Bovine stomatitis|Bovine stomatitis +C0276191|T047|PT|059.12|ICD9CM|Sealpox|Sealpox +C0276191|T047|AB|059.12|ICD9CM|Sealpox|Sealpox +C2349855|T047|PT|059.19|ICD9CM|Other parapoxvirus infections|Other parapoxvirus infections +C2349855|T047|AB|059.19|ICD9CM|Parapoxvirus infectn NEC|Parapoxvirus infectn NEC +C2349857|T047|HT|059.2|ICD9CM|Yatapoxvirus infections|Yatapoxvirus infections +C2349857|T047|PT|059.20|ICD9CM|Yatapoxvirus infection, unspecified|Yatapoxvirus infection, unspecified +C2349857|T047|AB|059.20|ICD9CM|Yatapoxvirus infectn NOS|Yatapoxvirus infectn NOS +C0276214|T047|PT|059.21|ICD9CM|Tanapox|Tanapox +C0276214|T047|AB|059.21|ICD9CM|Tanapox|Tanapox +C2349858|T047|PT|059.8|ICD9CM|Other poxvirus infections|Other poxvirus infections +C2349858|T047|AB|059.8|ICD9CM|Poxvirus infections NEC|Poxvirus infections NEC +C0032870|T047|AB|059.9|ICD9CM|Poxvirus infection NOS|Poxvirus infection NOS +C0032870|T047|PT|059.9|ICD9CM|Poxvirus infections, unspecified|Poxvirus infections, unspecified +C0043395|T047|HT|060|ICD9CM|Yellow fever|Yellow fever +C0003723|T047|HT|060-066.99|ICD9CM|ARTHROPOD-BORNE VIRAL DISEASES|ARTHROPOD-BORNE VIRAL DISEASES +C0043397|T047|AB|060.0|ICD9CM|Sylvatic yellow fever|Sylvatic yellow fever +C0043397|T047|PT|060.0|ICD9CM|Sylvatic yellow fever|Sylvatic yellow fever +C0043398|T047|AB|060.1|ICD9CM|Urban yellow fever|Urban yellow fever +C0043398|T047|PT|060.1|ICD9CM|Urban yellow fever|Urban yellow fever +C0043395|T047|AB|060.9|ICD9CM|Yellow fever NOS|Yellow fever NOS +C0043395|T047|PT|060.9|ICD9CM|Yellow fever, unspecified|Yellow fever, unspecified +C0011311|T047|AB|061|ICD9CM|Dengue|Dengue +C0011311|T047|PT|061|ICD9CM|Dengue|Dengue +C0751098|T047|HT|062|ICD9CM|Mosquito-borne viral encephalitis|Mosquito-borne viral encephalitis +C0014057|T047|AB|062.0|ICD9CM|Japanese encephalitis|Japanese encephalitis +C0014057|T047|PT|062.0|ICD9CM|Japanese encephalitis|Japanese encephalitis +C0153064|T047|AB|062.1|ICD9CM|West equine encephalitis|West equine encephalitis +C0153064|T047|PT|062.1|ICD9CM|Western equine encephalitis|Western equine encephalitis +C0153065|T047|AB|062.2|ICD9CM|East equine encephalitis|East equine encephalitis +C0153065|T047|PT|062.2|ICD9CM|Eastern equine encephalitis|Eastern equine encephalitis +C0014060|T047|AB|062.3|ICD9CM|St Louis encephalitis|St Louis encephalitis +C0014060|T047|PT|062.3|ICD9CM|St. Louis encephalitis|St. Louis encephalitis +C0153066|T047|AB|062.4|ICD9CM|Australian encephalitis|Australian encephalitis +C0153066|T047|PT|062.4|ICD9CM|Australian encephalitis|Australian encephalitis +C0014053|T047|AB|062.5|ICD9CM|California encephalitis|California encephalitis +C0014053|T047|PT|062.5|ICD9CM|California virus encephalitis|California virus encephalitis +C0348168|T047|AB|062.8|ICD9CM|Mosquit-borne enceph NEC|Mosquit-borne enceph NEC +C0348168|T047|PT|062.8|ICD9CM|Other specified mosquito-borne viral encephalitis|Other specified mosquito-borne viral encephalitis +C0751098|T047|AB|062.9|ICD9CM|Mosquit-borne enceph NOS|Mosquit-borne enceph NOS +C0751098|T047|PT|062.9|ICD9CM|Mosquito-borne viral encephalitis, unspecified|Mosquito-borne viral encephalitis, unspecified +C0014061|T047|HT|063|ICD9CM|Tick-borne viral encephalitis|Tick-borne viral encephalitis +C0015632|T047|AB|063.0|ICD9CM|Russia spr-summer enceph|Russia spr-summer enceph +C0015632|T047|PT|063.0|ICD9CM|Russian spring-summer [taiga] encephalitis|Russian spring-summer [taiga] encephalitis +C0024025|T047|AB|063.1|ICD9CM|Louping ill|Louping ill +C0024025|T047|PT|063.1|ICD9CM|Louping ill|Louping ill +C0014054|T047|AB|063.2|ICD9CM|Cent Europe encephalitis|Cent Europe encephalitis +C0014054|T047|PT|063.2|ICD9CM|Central european encephalitis|Central european encephalitis +C0029832|T047|PT|063.8|ICD9CM|Other specified tick-borne viral encephalitis|Other specified tick-borne viral encephalitis +C0029832|T047|AB|063.8|ICD9CM|Tick-borne enceph NEC|Tick-borne enceph NEC +C0014061|T047|AB|063.9|ICD9CM|Tick-borne enceph NOS|Tick-borne enceph NOS +C0014061|T047|PT|063.9|ICD9CM|Tick-borne viral encephalitis, unspecified|Tick-borne viral encephalitis, unspecified +C0153069|T047|AB|064|ICD9CM|Vir enceph arthropod NEC|Vir enceph arthropod NEC +C0153069|T047|PT|064|ICD9CM|Viral encephalitis transmitted by other and unspecified arthropods|Viral encephalitis transmitted by other and unspecified arthropods +C0003721|T047|HT|065|ICD9CM|Arthropod-borne hemorrhagic fever|Arthropod-borne hemorrhagic fever +C0019099|T047|AB|065.0|ICD9CM|Crimean hemorrhagic fev|Crimean hemorrhagic fev +C0019099|T047|PT|065.0|ICD9CM|Crimean hemorrhagic fever [CHF Congo virus]|Crimean hemorrhagic fever [CHF Congo virus] +C0019103|T047|AB|065.1|ICD9CM|Omsk hemorrhagic fever|Omsk hemorrhagic fever +C0019103|T047|PT|065.1|ICD9CM|Omsk hemorrhagic fever|Omsk hemorrhagic fever +C0022810|T047|AB|065.2|ICD9CM|Kyasanur forest disease|Kyasanur forest disease +C0022810|T047|PT|065.2|ICD9CM|Kyasanur forest disease|Kyasanur forest disease +C0153070|T047|PT|065.3|ICD9CM|Other tick-borne hemorrhagic fever|Other tick-borne hemorrhagic fever +C0153070|T047|AB|065.3|ICD9CM|Tick-borne hem fever NEC|Tick-borne hem fever NEC +C0153071|T047|AB|065.4|ICD9CM|Mosquito-borne hem fever|Mosquito-borne hem fever +C0153071|T047|PT|065.4|ICD9CM|Mosquito-borne hemorrhagic fever|Mosquito-borne hemorrhagic fever +C0153072|T047|AB|065.8|ICD9CM|Arthropod hem fever NEC|Arthropod hem fever NEC +C0153072|T047|PT|065.8|ICD9CM|Other specified arthropod-borne hemorrhagic fever|Other specified arthropod-borne hemorrhagic fever +C0003721|T047|AB|065.9|ICD9CM|Arthropod hem fever NOS|Arthropod hem fever NOS +C0003721|T047|PT|065.9|ICD9CM|Arthropod-borne hemorrhagic fever, unspecified|Arthropod-borne hemorrhagic fever, unspecified +C0153073|T047|HT|066|ICD9CM|Other arthropod-borne viral diseases|Other arthropod-borne viral diseases +C0030372|T047|AB|066.0|ICD9CM|Phlebotomus fever|Phlebotomus fever +C0030372|T047|PT|066.0|ICD9CM|Phlebotomus fever|Phlebotomus fever +C0040199|T047|AB|066.1|ICD9CM|Tick-borne fever|Tick-borne fever +C0040199|T047|PT|066.1|ICD9CM|Tick-borne fever|Tick-borne fever +C0014078|T047|AB|066.2|ICD9CM|Venezuelan equine fever|Venezuelan equine fever +C0014078|T047|PT|066.2|ICD9CM|Venezuelan equine fever|Venezuelan equine fever +C0029667|T047|AB|066.3|ICD9CM|Mosquito-borne fever NEC|Mosquito-borne fever NEC +C0029667|T047|PT|066.3|ICD9CM|Other mosquito-borne fever|Other mosquito-borne fever +C0043124|T047|HT|066.4|ICD9CM|West Nile fever|West Nile fever +C0043124|T047|AB|066.40|ICD9CM|West Nile Fever NOS|West Nile Fever NOS +C0043124|T047|PT|066.40|ICD9CM|West Nile Fever, unspecified|West Nile Fever, unspecified +C0751583|T047|AB|066.41|ICD9CM|West Nile Fever w/enceph|West Nile Fever w/enceph +C0751583|T047|PT|066.41|ICD9CM|West Nile Fever with encephalitis|West Nile Fever with encephalitis +C1456259|T047|PT|066.42|ICD9CM|West Nile Fever with other neurologic manifestation|West Nile Fever with other neurologic manifestation +C1456259|T047|AB|066.42|ICD9CM|West Nile neuro man NEC|West Nile neuro man NEC +C1456260|T047|PT|066.49|ICD9CM|West Nile Fever with other complications|West Nile Fever with other complications +C1456260|T047|AB|066.49|ICD9CM|West Nile w complic NEC|West Nile w complic NEC +C0153074|T047|AB|066.8|ICD9CM|Arthropod virus NEC|Arthropod virus NEC +C0153074|T047|PT|066.8|ICD9CM|Other specified arthropod-borne viral diseases|Other specified arthropod-borne viral diseases +C0003723|T047|AB|066.9|ICD9CM|Arthropod virus NOS|Arthropod virus NOS +C0003723|T047|PT|066.9|ICD9CM|Arthropod-borne viral disease, unspecified|Arthropod-borne viral disease, unspecified +C0042721|T047|HT|070|ICD9CM|Viral hepatitis|Viral hepatitis +C0153111|T047|HT|070-079.99|ICD9CM|OTHER DISEASES DUE TO VIRUSES AND CHLAMYDIAE|OTHER DISEASES DUE TO VIRUSES AND CHLAMYDIAE +C0153075|T047|AB|070.0|ICD9CM|Hepatitis A with coma|Hepatitis A with coma +C0153075|T047|PT|070.0|ICD9CM|Viral hepatitis A with hepatic coma|Viral hepatitis A with hepatic coma +C1290810|T047|AB|070.1|ICD9CM|Hepatitis A w/o coma|Hepatitis A w/o coma +C1290810|T047|PT|070.1|ICD9CM|Viral hepatitis A without mention of hepatic coma|Viral hepatitis A without mention of hepatic coma +C0153076|T047|HT|070.2|ICD9CM|Viral hepatitis B with hepatic coma|Viral hepatitis B with hepatic coma +C0375000|T047|AB|070.20|ICD9CM|Hpt B acte coma wo dlta|Hpt B acte coma wo dlta +C0375000|T047|PT|070.20|ICD9CM|Viral hepatitis B with hepatic coma, acute or unspecified, without mention of hepatitis delta|Viral hepatitis B with hepatic coma, acute or unspecified, without mention of hepatitis delta +C0375001|T047|AB|070.21|ICD9CM|Hpt B acte coma w dlta|Hpt B acte coma w dlta +C0375001|T047|PT|070.21|ICD9CM|Viral hepatitis B with hepatic coma, acute or unspecified, with hepatitis delta|Viral hepatitis B with hepatic coma, acute or unspecified, with hepatitis delta +C0375002|T047|PT|070.22|ICD9CM|Chronic viral hepatitis B with hepatic coma without hepatitis delta|Chronic viral hepatitis B with hepatic coma without hepatitis delta +C0375002|T047|AB|070.22|ICD9CM|Hpt B chrn coma wo dlta|Hpt B chrn coma wo dlta +C0375003|T047|PT|070.23|ICD9CM|Chronic viral hepatitis B with hepatic coma with hepatitis delta|Chronic viral hepatitis B with hepatic coma with hepatitis delta +C0375003|T047|AB|070.23|ICD9CM|Hpt B chrn coma w dlta|Hpt B chrn coma w dlta +C0700211|T047|HT|070.3|ICD9CM|Viral hepatitis B without mention of hepatic coma|Viral hepatitis B without mention of hepatic coma +C0375004|T047|AB|070.30|ICD9CM|Hpt B acte wo cm wo dlta|Hpt B acte wo cm wo dlta +C0375005|T047|AB|070.31|ICD9CM|Hpt B acte wo cm w dlta|Hpt B acte wo cm w dlta +C0375005|T047|PT|070.31|ICD9CM|Viral hepatitis B without mention of hepatic coma, acute or unspecified, with hepatitis delta|Viral hepatitis B without mention of hepatic coma, acute or unspecified, with hepatitis delta +C0375006|T047|PT|070.32|ICD9CM|Chronic viral hepatitis B without mention of hepatic coma without mention of hepatitis delta|Chronic viral hepatitis B without mention of hepatic coma without mention of hepatitis delta +C0375006|T047|AB|070.32|ICD9CM|Hpt B chrn wo cm wo dlta|Hpt B chrn wo cm wo dlta +C0375007|T047|PT|070.33|ICD9CM|Chronic viral hepatitis B without mention of hepatic coma with hepatitis delta|Chronic viral hepatitis B without mention of hepatic coma with hepatitis delta +C0375007|T047|AB|070.33|ICD9CM|Hpt B chrn wo cm w dlta|Hpt B chrn wo cm w dlta +C0153081|T047|HT|070.4|ICD9CM|Other specified viral hepatitis with hepatic coma|Other specified viral hepatitis with hepatic coma +C1456261|T047|PT|070.41|ICD9CM|Acute hepatitis C with hepatic coma|Acute hepatitis C with hepatic coma +C1456261|T047|AB|070.41|ICD9CM|Hpt C acute w hepat Coma|Hpt C acute w hepat Coma +C0153083|T047|PT|070.42|ICD9CM|Hepatitis delta without mention of active hepatitis B disease with hepatic coma|Hepatitis delta without mention of active hepatitis B disease with hepatic coma +C0153083|T047|AB|070.42|ICD9CM|Hpt dlt wo b w hpt coma|Hpt dlt wo b w hpt coma +C0153084|T047|PT|070.43|ICD9CM|Hepatitis E with hepatic coma|Hepatitis E with hepatic coma +C0153084|T047|AB|070.43|ICD9CM|Hpt E w hepat Coma|Hpt E w hepat Coma +C0375009|T047|AB|070.44|ICD9CM|Chrnc hpt C w hepat Coma|Chrnc hpt C w hepat Coma +C0375009|T047|PT|070.44|ICD9CM|Chronic hepatitis C with hepatic coma|Chronic hepatitis C with hepatic coma +C0153081|T047|AB|070.49|ICD9CM|Oth vrl hepat w hpt coma|Oth vrl hepat w hpt coma +C0153081|T047|PT|070.49|ICD9CM|Other specified viral hepatitis with hepatic coma|Other specified viral hepatitis with hepatic coma +C0153085|T047|HT|070.5|ICD9CM|Other specified viral hepatitis without mention of hepatic coma|Other specified viral hepatitis without mention of hepatic coma +C1456262|T047|PT|070.51|ICD9CM|Acute hepatitis C without mention of hepatic coma|Acute hepatitis C without mention of hepatic coma +C1456262|T047|AB|070.51|ICD9CM|Hpt C acute wo hpat coma|Hpt C acute wo hpat coma +C0375011|T047|PT|070.52|ICD9CM|Hepatitis delta without mention of active hepatitis B disease or hepatic coma|Hepatitis delta without mention of active hepatitis B disease or hepatic coma +C0375011|T047|AB|070.52|ICD9CM|Hpt dlt wo b wo hpt coma|Hpt dlt wo b wo hpt coma +C0153088|T047|PT|070.53|ICD9CM|Hepatitis E without mention of hepatic coma|Hepatitis E without mention of hepatic coma +C0153088|T047|AB|070.53|ICD9CM|Hpt E wo hepat Coma|Hpt E wo hepat Coma +C0375012|T047|AB|070.54|ICD9CM|Chrnc hpt C wo hpat coma|Chrnc hpt C wo hpat coma +C0375012|T047|PT|070.54|ICD9CM|Chronic hepatitis C without mention of hepatic coma|Chronic hepatitis C without mention of hepatic coma +C0153085|T047|AB|070.59|ICD9CM|Oth vrl hpat wo hpt coma|Oth vrl hpat wo hpt coma +C0153085|T047|PT|070.59|ICD9CM|Other specified viral hepatitis without mention of hepatic coma|Other specified viral hepatitis without mention of hepatic coma +C0153089|T047|PT|070.6|ICD9CM|Unspecified viral hepatitis with hepatic coma|Unspecified viral hepatitis with hepatic coma +C0153089|T047|AB|070.6|ICD9CM|Viral hepat NOS w coma|Viral hepat NOS w coma +C0019196|T047|HT|070.7|ICD9CM|Unspecified viral hepatitis C|Unspecified viral hepatitis C +C1456263|T047|AB|070.70|ICD9CM|Hpt C w/o hepat coma NOS|Hpt C w/o hepat coma NOS +C1456263|T047|PT|070.70|ICD9CM|Unspecified viral hepatitis C without hepatic coma|Unspecified viral hepatitis C without hepatic coma +C1456265|T047|AB|070.71|ICD9CM|Hpt C w hepatic coma NOS|Hpt C w hepatic coma NOS +C1456265|T047|PT|070.71|ICD9CM|Unspecified viral hepatitis C with hepatic coma|Unspecified viral hepatitis C with hepatic coma +C0489954|T047|PT|070.9|ICD9CM|Unspecified viral hepatitis without mention of hepatic coma|Unspecified viral hepatitis without mention of hepatic coma +C0489954|T047|AB|070.9|ICD9CM|Viral hepat NOS w/o coma|Viral hepat NOS w/o coma +C0034494|T047|AB|071|ICD9CM|Rabies|Rabies +C0034494|T047|PT|071|ICD9CM|Rabies|Rabies +C0026780|T047|HT|072|ICD9CM|Mumps|Mumps +C0153091|T047|AB|072.0|ICD9CM|Mumps orchitis|Mumps orchitis +C0153091|T047|PT|072.0|ICD9CM|Mumps orchitis|Mumps orchitis +C0153092|T047|AB|072.1|ICD9CM|Mumps meningitis|Mumps meningitis +C0153092|T047|PT|072.1|ICD9CM|Mumps meningitis|Mumps meningitis +C0153093|T047|AB|072.2|ICD9CM|Mumps encephalitis|Mumps encephalitis +C0153093|T047|PT|072.2|ICD9CM|Mumps encephalitis|Mumps encephalitis +C0153094|T047|AB|072.3|ICD9CM|Mumps pancreatitis|Mumps pancreatitis +C0153094|T047|PT|072.3|ICD9CM|Mumps pancreatitis|Mumps pancreatitis +C0153095|T047|HT|072.7|ICD9CM|Mumps with other specified complications|Mumps with other specified complications +C0153096|T047|AB|072.71|ICD9CM|Mumps hepatitis|Mumps hepatitis +C0153096|T047|PT|072.71|ICD9CM|Mumps hepatitis|Mumps hepatitis +C0153097|T047|AB|072.72|ICD9CM|Mumps polyneuropathy|Mumps polyneuropathy +C0153097|T047|PT|072.72|ICD9CM|Mumps polyneuropathy|Mumps polyneuropathy +C0153095|T047|AB|072.79|ICD9CM|Mumps complication NEC|Mumps complication NEC +C0153095|T047|PT|072.79|ICD9CM|Other mumps with other specified complications|Other mumps with other specified complications +C0153098|T047|AB|072.8|ICD9CM|Mumps complication NOS|Mumps complication NOS +C0153098|T047|PT|072.8|ICD9CM|Mumps with unspecified complication|Mumps with unspecified complication +C1306848|T047|AB|072.9|ICD9CM|Mumps uncomplicated|Mumps uncomplicated +C1306848|T047|PT|072.9|ICD9CM|Mumps without mention of complication|Mumps without mention of complication +C0029291|T047|HT|073|ICD9CM|Ornithosis|Ornithosis +C0153099|T047|AB|073.0|ICD9CM|Ornithosis pneumonia|Ornithosis pneumonia +C0153099|T047|PT|073.0|ICD9CM|Ornithosis with pneumonia|Ornithosis with pneumonia +C0153100|T047|AB|073.7|ICD9CM|Ornithosis complicat NEC|Ornithosis complicat NEC +C0153100|T047|PT|073.7|ICD9CM|Ornithosis with other specified complications|Ornithosis with other specified complications +C0153101|T047|AB|073.8|ICD9CM|Ornithosis complicat NOS|Ornithosis complicat NOS +C0153101|T047|PT|073.8|ICD9CM|Ornithosis with unspecified complication|Ornithosis with unspecified complication +C0029291|T047|AB|073.9|ICD9CM|Ornithosis NOS|Ornithosis NOS +C0029291|T047|PT|073.9|ICD9CM|Ornithosis, unspecified|Ornithosis, unspecified +C0728910|T047|HT|074|ICD9CM|Specific diseases due to Coxsackie virus|Specific diseases due to Coxsackie virus +C0019338|T047|AB|074.0|ICD9CM|Herpangina|Herpangina +C0019338|T047|PT|074.0|ICD9CM|Herpangina|Herpangina +C0032238|T047|AB|074.1|ICD9CM|Epidemic pleurodynia|Epidemic pleurodynia +C0032238|T047|PT|074.1|ICD9CM|Epidemic pleurodynia|Epidemic pleurodynia +C0153103|T047|HT|074.2|ICD9CM|Coxsackie carditis|Coxsackie carditis +C0153103|T047|AB|074.20|ICD9CM|Coxsackie carditis NOS|Coxsackie carditis NOS +C0153103|T047|PT|074.20|ICD9CM|Coxsackie carditis, unspecified|Coxsackie carditis, unspecified +C0153104|T047|AB|074.21|ICD9CM|Coxsackie pericarditis|Coxsackie pericarditis +C0153104|T047|PT|074.21|ICD9CM|Coxsackie pericarditis|Coxsackie pericarditis +C0153105|T047|AB|074.22|ICD9CM|Coxsackie endocarditis|Coxsackie endocarditis +C0153105|T047|PT|074.22|ICD9CM|Coxsackie endocarditis|Coxsackie endocarditis +C0153106|T047|AB|074.23|ICD9CM|Coxsackie myocarditis|Coxsackie myocarditis +C0153106|T047|PT|074.23|ICD9CM|Coxsackie myocarditis|Coxsackie myocarditis +C0018572|T047|AB|074.3|ICD9CM|Hand, foot & mouth dis|Hand, foot & mouth dis +C0018572|T047|PT|074.3|ICD9CM|Hand, foot, and mouth disease|Hand, foot, and mouth disease +C0343653|T047|AB|074.8|ICD9CM|Coxsackie virus NEC|Coxsackie virus NEC +C0343653|T047|PT|074.8|ICD9CM|Other specified diseases due to Coxsackie virus|Other specified diseases due to Coxsackie virus +C0021345|T047|AB|075|ICD9CM|Infectious mononucleosis|Infectious mononucleosis +C0021345|T047|PT|075|ICD9CM|Infectious mononucleosis|Infectious mononucleosis +C0040592|T047|HT|076|ICD9CM|Trachoma|Trachoma +C0153107|T047|AB|076.0|ICD9CM|Trachoma, initial stage|Trachoma, initial stage +C0153107|T047|PT|076.0|ICD9CM|Trachoma, initial stage|Trachoma, initial stage +C0153108|T047|AB|076.1|ICD9CM|Trachoma, active stage|Trachoma, active stage +C0153108|T047|PT|076.1|ICD9CM|Trachoma, active stage|Trachoma, active stage +C0040592|T047|AB|076.9|ICD9CM|Trachoma NOS|Trachoma NOS +C0040592|T047|PT|076.9|ICD9CM|Trachoma, unspecified|Trachoma, unspecified +C0153109|T047|HT|077|ICD9CM|Other diseases of conjunctiva due to viruses and Chlamydiae|Other diseases of conjunctiva due to viruses and Chlamydiae +C0009770|T047|AB|077.0|ICD9CM|Inclusion conjunctivitis|Inclusion conjunctivitis +C0009770|T047|PT|077.0|ICD9CM|Inclusion conjunctivitis|Inclusion conjunctivitis +C0014493|T047|AB|077.1|ICD9CM|Epidem keratoconjunctiv|Epidem keratoconjunctiv +C0014493|T047|PT|077.1|ICD9CM|Epidemic keratoconjunctivitis|Epidemic keratoconjunctivitis +C0031351|T047|AB|077.2|ICD9CM|Pharyngoconjunct fever|Pharyngoconjunct fever +C0031351|T047|PT|077.2|ICD9CM|Pharyngoconjunctival fever|Pharyngoconjunctival fever +C0153110|T047|AB|077.3|ICD9CM|Adenoviral conjunct NEC|Adenoviral conjunct NEC +C0153110|T047|PT|077.3|ICD9CM|Other adenoviral conjunctivitis|Other adenoviral conjunctivitis +C0009765|T047|AB|077.4|ICD9CM|Epidem hem conjunctivit|Epidem hem conjunctivit +C0009765|T047|PT|077.4|ICD9CM|Epidemic hemorrhagic conjunctivitis|Epidemic hemorrhagic conjunctivitis +C0029871|T047|PT|077.8|ICD9CM|Other viral conjunctivitis|Other viral conjunctivitis +C0029871|T047|AB|077.8|ICD9CM|Viral conjunctivitis NEC|Viral conjunctivitis NEC +C0041792|T047|HT|077.9|ICD9CM|Unspecified diseases of conjunctiva due to viruses and Chlamydiae|Unspecified diseases of conjunctiva due to viruses and Chlamydiae +C0376110|T047|AB|077.98|ICD9CM|Unsp ds conjuc chlamydia|Unsp ds conjuc chlamydia +C0376110|T047|PT|077.98|ICD9CM|Unspecified diseases of conjunctiva due to chlamydiae|Unspecified diseases of conjunctiva due to chlamydiae +C0376111|T047|AB|077.99|ICD9CM|Unsp ds conjuc viruses|Unsp ds conjuc viruses +C0376111|T047|PT|077.99|ICD9CM|Unspecified diseases of conjunctiva due to viruses|Unspecified diseases of conjunctiva due to viruses +C0153111|T047|HT|078|ICD9CM|Other diseases due to viruses and Chlamydiae|Other diseases due to viruses and Chlamydiae +C0026393|T047|AB|078.0|ICD9CM|Molluscum contagiosum|Molluscum contagiosum +C0026393|T047|PT|078.0|ICD9CM|Molluscum contagiosum|Molluscum contagiosum +C0043037|T047|HT|078.1|ICD9CM|Viral warts|Viral warts +C0343642|T047|AB|078.10|ICD9CM|Viral warts NOS|Viral warts NOS +C0343642|T047|PT|078.10|ICD9CM|Viral warts, unspecified|Viral warts, unspecified +C0009663|T047|AB|078.11|ICD9CM|Condyloma acuminatum|Condyloma acuminatum +C0009663|T047|PT|078.11|ICD9CM|Condyloma acuminatum|Condyloma acuminatum +C0042548|T047|PT|078.12|ICD9CM|Plantar wart|Plantar wart +C0042548|T047|AB|078.12|ICD9CM|Plantar wart|Plantar wart +C0375013|T047|AB|078.19|ICD9CM|Oth specfd viral warts|Oth specfd viral warts +C0375013|T047|PT|078.19|ICD9CM|Other specified viral warts|Other specified viral warts +C0038992|T047|AB|078.2|ICD9CM|Sweating fever|Sweating fever +C0038992|T047|PT|078.2|ICD9CM|Sweating fever|Sweating fever +C0007361|T047|AB|078.3|ICD9CM|Cat-scratch disease|Cat-scratch disease +C0007361|T047|PT|078.3|ICD9CM|Cat-scratch disease|Cat-scratch disease +C0016514|T047|AB|078.4|ICD9CM|Foot & mouth disease|Foot & mouth disease +C0016514|T047|PT|078.4|ICD9CM|Foot and mouth disease|Foot and mouth disease +C0010823|T047|AB|078.5|ICD9CM|Cytomegaloviral disease|Cytomegaloviral disease +C0010823|T047|PT|078.5|ICD9CM|Cytomegaloviral disease|Cytomegaloviral disease +C0019101|T047|AB|078.6|ICD9CM|Hem nephrosonephritis|Hem nephrosonephritis +C0019101|T047|PT|078.6|ICD9CM|Hemorrhagic nephrosonephritis|Hemorrhagic nephrosonephritis +C0153112|T047|AB|078.7|ICD9CM|Arenaviral hem fever|Arenaviral hem fever +C0153112|T047|PT|078.7|ICD9CM|Arenaviral hemorrhagic fever|Arenaviral hemorrhagic fever +C0029767|T047|HT|078.8|ICD9CM|Other specified diseases due to viruses and Chlamydiae|Other specified diseases due to viruses and Chlamydiae +C0751908|T047|AB|078.81|ICD9CM|Epidemic vertigo|Epidemic vertigo +C0751908|T047|PT|078.81|ICD9CM|Epidemic vertigo|Epidemic vertigo +C0014498|T047|AB|078.82|ICD9CM|Epidemic vomiting synd|Epidemic vomiting synd +C0014498|T047|PT|078.82|ICD9CM|Epidemic vomiting syndrome|Epidemic vomiting syndrome +C0375014|T047|AB|078.88|ICD9CM|Oth spec dis chlamydiae|Oth spec dis chlamydiae +C0375014|T047|PT|078.88|ICD9CM|Other specified diseases due to chlamydiae|Other specified diseases due to chlamydiae +C0859831|T047|AB|078.89|ICD9CM|Oth spec dis viruses|Oth spec dis viruses +C0859831|T047|PT|078.89|ICD9CM|Other specified diseases due to viruses|Other specified diseases due to viruses +C0375026|T047|HT|079|ICD9CM|Viral and chlamydial infection in conditions classified elsewhere and of unspecified site|Viral and chlamydial infection in conditions classified elsewhere and of unspecified site +C0001485|T047|AB|079.0|ICD9CM|Adenovirus infect NOS|Adenovirus infect NOS +C0001485|T047|PT|079.0|ICD9CM|Adenovirus infection in conditions classified elsewhere and of unspecified site|Adenovirus infection in conditions classified elsewhere and of unspecified site +C0013515|T047|AB|079.1|ICD9CM|Echo virus infect NOS|Echo virus infect NOS +C0013515|T047|PT|079.1|ICD9CM|Echo virus infection in conditions classified elsewhere and of unspecified site|Echo virus infection in conditions classified elsewhere and of unspecified site +C0010244|T047|AB|079.2|ICD9CM|Coxsackie virus inf NOS|Coxsackie virus inf NOS +C0010244|T047|PT|079.2|ICD9CM|Coxsackie virus infection in conditions classified elsewhere and of unspecified site|Coxsackie virus infection in conditions classified elsewhere and of unspecified site +C0153115|T047|AB|079.3|ICD9CM|Rhinovirus infect NOS|Rhinovirus infect NOS +C0153115|T047|PT|079.3|ICD9CM|Rhinovirus infection in conditions classified elsewhere and of unspecified site|Rhinovirus infection in conditions classified elsewhere and of unspecified site +C0375016|T047|AB|079.4|ICD9CM|Human papillomavirus|Human papillomavirus +C0375016|T047|PT|079.4|ICD9CM|Human papillomavirus in conditions classified elsewhere and of unspecified site|Human papillomavirus in conditions classified elsewhere and of unspecified site +C0375018|T047|HT|079.5|ICD9CM|Retrovirus infection in conditions classified elsewhere and of unspecified site|Retrovirus infection in conditions classified elsewhere and of unspecified site +C0375018|T047|AB|079.50|ICD9CM|Retrovirus, unspecified|Retrovirus, unspecified +C0375018|T047|PT|079.50|ICD9CM|Retrovirus, unspecified|Retrovirus, unspecified +C0375019|T047|AB|079.51|ICD9CM|Htlv-1 infection oth dis|Htlv-1 infection oth dis +C0375019|T047|PT|079.51|ICD9CM|Human T-cell lymphotrophic virus, type I [HTLV-I]|Human T-cell lymphotrophic virus, type I [HTLV-I] +C0375020|T047|AB|079.52|ICD9CM|Htlv-ii infectn oth dis|Htlv-ii infectn oth dis +C0375020|T047|PT|079.52|ICD9CM|Human T-cell lymphotrophic virus, type II [HTLV-II]|Human T-cell lymphotrophic virus, type II [HTLV-II] +C0375021|T047|AB|079.53|ICD9CM|Hiv-2 infection oth dis|Hiv-2 infection oth dis +C0375021|T047|PT|079.53|ICD9CM|Human immunodeficiency virus, type 2 [HIV-2]|Human immunodeficiency virus, type 2 [HIV-2] +C0375022|T047|AB|079.59|ICD9CM|Oth specfied retrovirus|Oth specfied retrovirus +C0375022|T047|PT|079.59|ICD9CM|Other specified retrovirus|Other specified retrovirus +C0375023|T047|PT|079.6|ICD9CM|Respiratory syncytial virus (RSV)|Respiratory syncytial virus (RSV) +C0375023|T047|AB|079.6|ICD9CM|Resprtry syncytial virus|Resprtry syncytial virus +C0375024|T047|AB|079.81|ICD9CM|Hantavirus infection|Hantavirus infection +C0375024|T047|PT|079.81|ICD9CM|Hantavirus infection|Hantavirus infection +C1175175|T047|AB|079.82|ICD9CM|SARS assoc coronavirus|SARS assoc coronavirus +C1175175|T047|PT|079.82|ICD9CM|SARS-associated coronavirus|SARS-associated coronavirus +C1959635|T047|AB|079.83|ICD9CM|Parvovirus B19|Parvovirus B19 +C1959635|T047|PT|079.83|ICD9CM|Parvovirus B19|Parvovirus B19 +C0375025|T047|AB|079.88|ICD9CM|Oth spcf chlamydial infc|Oth spcf chlamydial infc +C0375025|T047|PT|079.88|ICD9CM|Other specified chlamydial infection|Other specified chlamydial infection +C0029842|T047|AB|079.89|ICD9CM|Oth specf viral infectn|Oth specf viral infectn +C0029842|T047|PT|079.89|ICD9CM|Other specified viral infection|Other specified viral infection +C0375027|T047|AB|079.98|ICD9CM|Chlamydial infection NOS|Chlamydial infection NOS +C0375027|T047|PT|079.98|ICD9CM|Unspecified chlamydial infection|Unspecified chlamydial infection +C0153114|T047|PT|079.99|ICD9CM|Unspecified viral infection|Unspecified viral infection +C0153114|T047|AB|079.99|ICD9CM|Viral infection NOS|Viral infection NOS +C0041473|T047|PT|080|ICD9CM|Louse-borne (epidemic) typhus|Louse-borne (epidemic) typhus +C0041473|T047|AB|080|ICD9CM|Louse-borne typhus|Louse-borne typhus +C0178242|T047|HT|080-088.99|ICD9CM|RICKETTSIOSES AND OTHER ARTHROPOD-BORNE DISEASES|RICKETTSIOSES AND OTHER ARTHROPOD-BORNE DISEASES +C0153116|T047|HT|081|ICD9CM|Other typhus|Other typhus +C0041472|T047|PT|081.0|ICD9CM|Murine (endemic) typhus|Murine (endemic) typhus +C0041472|T047|AB|081.0|ICD9CM|Murine typhus|Murine typhus +C0006181|T047|AB|081.1|ICD9CM|Brill's disease|Brill's disease +C0006181|T047|PT|081.1|ICD9CM|Brill's disease|Brill's disease +C0036472|T047|AB|081.2|ICD9CM|Scrub typhus|Scrub typhus +C0036472|T047|PT|081.2|ICD9CM|Scrub typhus|Scrub typhus +C0041471|T047|AB|081.9|ICD9CM|Typhus NOS|Typhus NOS +C0041471|T047|PT|081.9|ICD9CM|Typhus, unspecified|Typhus, unspecified +C0153117|T047|HT|082|ICD9CM|Tick-borne rickettsioses|Tick-borne rickettsioses +C0038041|T047|AB|082.0|ICD9CM|Spotted fevers|Spotted fevers +C0038041|T047|PT|082.0|ICD9CM|Spotted fevers|Spotted fevers +C0006060|T047|AB|082.1|ICD9CM|Boutonneuse fever|Boutonneuse fever +C0006060|T047|PT|082.1|ICD9CM|Boutonneuse fever|Boutonneuse fever +C0549160|T047|PT|082.2|ICD9CM|North Asian tick fever|North Asian tick fever +C0549160|T047|AB|082.2|ICD9CM|North asian tick fever|North asian tick fever +C2979888|T047|AB|082.3|ICD9CM|Queensland tick typhus|Queensland tick typhus +C2979888|T047|PT|082.3|ICD9CM|Queensland tick typhus|Queensland tick typhus +C0085399|T047|HT|082.4|ICD9CM|Ehrlichiosis|Ehrlichiosis +C0085399|T047|AB|082.40|ICD9CM|Ehrlichiosis NOS|Ehrlichiosis NOS +C0085399|T047|PT|082.40|ICD9CM|Ehrlichiosis, unspecified|Ehrlichiosis, unspecified +C1282983|T047|AB|082.41|ICD9CM|Ehrlichiosis chafeensis|Ehrlichiosis chafeensis +C1282983|T047|PT|082.41|ICD9CM|Ehrlichiosis chafeensis [E. chafeensis]|Ehrlichiosis chafeensis [E. chafeensis] +C0878688|T047|AB|082.49|ICD9CM|Ehrlichiosis NEC|Ehrlichiosis NEC +C0878688|T047|PT|082.49|ICD9CM|Other ehrlichiosis|Other ehrlichiosis +C0153118|T047|PT|082.8|ICD9CM|Other specified tick-borne rickettsioses|Other specified tick-borne rickettsioses +C0153118|T047|AB|082.8|ICD9CM|Tick-borne ricketts NEC|Tick-borne ricketts NEC +C0153117|T047|AB|082.9|ICD9CM|Tick-borne ricketts NOS|Tick-borne ricketts NOS +C0153117|T047|PT|082.9|ICD9CM|Tick-borne rickettsiosis, unspecified|Tick-borne rickettsiosis, unspecified +C0153119|T047|HT|083|ICD9CM|Other rickettsioses|Other rickettsioses +C0034362|T047|AB|083.0|ICD9CM|Q fever|Q fever +C0034362|T047|PT|083.0|ICD9CM|Q fever|Q fever +C0040830|T047|AB|083.1|ICD9CM|Trench fever|Trench fever +C0040830|T047|PT|083.1|ICD9CM|Trench fever|Trench fever +C0035597|T047|AB|083.2|ICD9CM|Rickettsialpox|Rickettsialpox +C0035597|T047|PT|083.2|ICD9CM|Rickettsialpox|Rickettsialpox +C0153120|T047|PT|083.8|ICD9CM|Other specified rickettsioses|Other specified rickettsioses +C0153120|T047|AB|083.8|ICD9CM|Rickettsioses NEC|Rickettsioses NEC +C0035585|T047|AB|083.9|ICD9CM|Rickettsiosis NOS|Rickettsiosis NOS +C0035585|T047|PT|083.9|ICD9CM|Rickettsiosis, unspecified|Rickettsiosis, unspecified +C0024530|T047|HT|084|ICD9CM|Malaria|Malaria +C0024535|T047|AB|084.0|ICD9CM|Falciparum malaria|Falciparum malaria +C0024535|T047|PT|084.0|ICD9CM|Falciparum malaria [malignant tertian]|Falciparum malaria [malignant tertian] +C0024537|T047|AB|084.1|ICD9CM|Vivax malaria|Vivax malaria +C0024537|T047|PT|084.1|ICD9CM|Vivax malaria [benign tertian]|Vivax malaria [benign tertian] +C0024536|T047|AB|084.2|ICD9CM|Quartan malaria|Quartan malaria +C0024536|T047|PT|084.2|ICD9CM|Quartan malaria|Quartan malaria +C0152072|T047|AB|084.3|ICD9CM|Ovale malaria|Ovale malaria +C0152072|T047|PT|084.3|ICD9CM|Ovale malaria|Ovale malaria +C0029661|T047|AB|084.4|ICD9CM|Malaria NEC|Malaria NEC +C0029661|T047|PT|084.4|ICD9CM|Other malaria|Other malaria +C0153121|T047|AB|084.5|ICD9CM|Mixed malaria|Mixed malaria +C0153121|T047|PT|084.5|ICD9CM|Mixed malaria|Mixed malaria +C0024530|T047|AB|084.6|ICD9CM|Malaria NOS|Malaria NOS +C0024530|T047|PT|084.6|ICD9CM|Malaria, unspecified|Malaria, unspecified +C0153122|T047|AB|084.7|ICD9CM|Induced malaria|Induced malaria +C0153122|T047|PT|084.7|ICD9CM|Induced malaria|Induced malaria +C0005681|T047|AB|084.8|ICD9CM|Blackwater fever|Blackwater fever +C0005681|T047|PT|084.8|ICD9CM|Blackwater fever|Blackwater fever +C0153123|T047|AB|084.9|ICD9CM|Malaria complicated NEC|Malaria complicated NEC +C0153123|T047|PT|084.9|ICD9CM|Other pernicious complications of malaria|Other pernicious complications of malaria +C0023281|T047|HT|085|ICD9CM|Leishmaniasis|Leishmaniasis +C0023290|T047|PT|085.0|ICD9CM|Visceral [kala-azar] leishmaniasis|Visceral [kala-azar] leishmaniasis +C0023290|T047|AB|085.0|ICD9CM|Visceral leishmaniasis|Visceral leishmaniasis +C0086541|T047|AB|085.1|ICD9CM|Cutan leishmanias urban|Cutan leishmanias urban +C0086541|T047|PT|085.1|ICD9CM|Cutaneous leishmaniasis, urban|Cutaneous leishmaniasis, urban +C0023285|T047|AB|085.2|ICD9CM|Cutan leishmanias asian|Cutan leishmanias asian +C0023285|T047|PT|085.2|ICD9CM|Cutaneous leishmaniasis, Asian desert|Cutaneous leishmaniasis, Asian desert +C0152074|T047|AB|085.3|ICD9CM|Cutan leishmanias ethiop|Cutan leishmanias ethiop +C0152074|T047|PT|085.3|ICD9CM|Cutaneous leishmaniasis, Ethiopian|Cutaneous leishmaniasis, Ethiopian +C3495436|T047|AB|085.4|ICD9CM|Cutan leishmanias amer|Cutan leishmanias amer +C3495436|T047|PT|085.4|ICD9CM|Cutaneous leishmaniasis, American|Cutaneous leishmaniasis, American +C1328252|T047|AB|085.5|ICD9CM|Mucocutan leishmaniasis|Mucocutan leishmaniasis +C1328252|T047|PT|085.5|ICD9CM|Mucocutaneous leishmaniasis, (American)|Mucocutaneous leishmaniasis, (American) +C0023281|T047|AB|085.9|ICD9CM|Leishmaniasis NOS|Leishmaniasis NOS +C0023281|T047|PT|085.9|ICD9CM|Leishmaniasis, unspecified|Leishmaniasis, unspecified +C0041227|T047|HT|086|ICD9CM|Trypanosomiasis|Trypanosomiasis +C0007930|T047|AB|086.0|ICD9CM|Chagas disease of heart|Chagas disease of heart +C0007930|T047|PT|086.0|ICD9CM|Chagas' disease with heart involvement|Chagas' disease with heart involvement +C0153125|T047|AB|086.1|ICD9CM|Chagas dis of oth organ|Chagas dis of oth organ +C0153125|T047|PT|086.1|ICD9CM|Chagas' disease with other organ involvement|Chagas' disease with other organ involvement +C0007932|T047|AB|086.2|ICD9CM|Chagas disease NOS|Chagas disease NOS +C0007932|T047|PT|086.2|ICD9CM|Chagas' disease without mention of organ involvement|Chagas' disease without mention of organ involvement +C0041232|T047|AB|086.3|ICD9CM|Gambian trypanosomiasis|Gambian trypanosomiasis +C0041232|T047|PT|086.3|ICD9CM|Gambian trypanosomiasis|Gambian trypanosomiasis +C0041233|T047|AB|086.4|ICD9CM|Rhodesian trypanosomias|Rhodesian trypanosomias +C0041233|T047|PT|086.4|ICD9CM|Rhodesian trypanosomiasis|Rhodesian trypanosomiasis +C0041228|T047|AB|086.5|ICD9CM|African trypanosoma NOS|African trypanosoma NOS +C0041228|T047|PT|086.5|ICD9CM|African trypanosomiasis, unspecified|African trypanosomiasis, unspecified +C0041227|T047|AB|086.9|ICD9CM|Trypanosomiasis NOS|Trypanosomiasis NOS +C0041227|T047|PT|086.9|ICD9CM|Trypanosomiasis, unspecified|Trypanosomiasis, unspecified +C0035021|T047|HT|087|ICD9CM|Relapsing fever|Relapsing fever +C0152061|T047|AB|087.0|ICD9CM|Louse-borne relaps fever|Louse-borne relaps fever +C0152061|T047|PT|087.0|ICD9CM|Relapsing fever, louse-borne|Relapsing fever, louse-borne +C0035022|T047|PT|087.1|ICD9CM|Relapsing fever, tick-borne|Relapsing fever, tick-borne +C0035022|T047|AB|087.1|ICD9CM|Tick-borne relaps fever|Tick-borne relaps fever +C0035021|T047|AB|087.9|ICD9CM|Relapsing fever NOS|Relapsing fever NOS +C0035021|T047|PT|087.9|ICD9CM|Relapsing fever, unspecified|Relapsing fever, unspecified +C0153126|T047|HT|088|ICD9CM|Other arthropod-borne diseases|Other arthropod-borne diseases +C0004771|T047|AB|088.0|ICD9CM|Bartonellosis|Bartonellosis +C0004771|T047|PT|088.0|ICD9CM|Bartonellosis|Bartonellosis +C0029747|T047|HT|088.8|ICD9CM|Other specified arthropod-borne diseases|Other specified arthropod-borne diseases +C0024198|T047|PT|088.81|ICD9CM|Lyme Disease|Lyme Disease +C0024198|T047|AB|088.81|ICD9CM|Lyme disease|Lyme disease +C0004576|T047|AB|088.82|ICD9CM|Babesiosis|Babesiosis +C0004576|T047|PT|088.82|ICD9CM|Babesiosis|Babesiosis +C0029747|T047|AB|088.89|ICD9CM|Oth arthropod-borne dis|Oth arthropod-borne dis +C0029747|T047|PT|088.89|ICD9CM|Other specified arthropod-borne diseases, other|Other specified arthropod-borne diseases, other +C0521829|T047|AB|088.9|ICD9CM|Arthropod-borne dis NOS|Arthropod-borne dis NOS +C0521829|T047|PT|088.9|ICD9CM|Arthropod-borne disease, unspecified|Arthropod-borne disease, unspecified +C0039131|T047|HT|090|ICD9CM|Congenital syphilis|Congenital syphilis +C0178243|T047|HT|090-099.99|ICD9CM|SYPHILIS AND OTHER VENEREAL DISEASES|SYPHILIS AND OTHER VENEREAL DISEASES +C0343666|T047|AB|090.0|ICD9CM|Early cong syph symptom|Early cong syph symptom +C0343666|T047|PT|090.0|ICD9CM|Early congenital syphilis, symptomatic|Early congenital syphilis, symptomatic +C0153129|T047|AB|090.1|ICD9CM|Early congen syph latent|Early congen syph latent +C0153129|T047|PT|090.1|ICD9CM|Early congenital syphilis, latent|Early congenital syphilis, latent +C0275859|T019|AB|090.2|ICD9CM|Early congen syph NOS|Early congen syph NOS +C0275859|T047|AB|090.2|ICD9CM|Early congen syph NOS|Early congen syph NOS +C0275859|T019|PT|090.2|ICD9CM|Early congenital syphilis, unspecified|Early congenital syphilis, unspecified +C0275859|T047|PT|090.2|ICD9CM|Early congenital syphilis, unspecified|Early congenital syphilis, unspecified +C2039668|T019|PT|090.3|ICD9CM|Syphilitic interstitial keratitis|Syphilitic interstitial keratitis +C2039668|T047|PT|090.3|ICD9CM|Syphilitic interstitial keratitis|Syphilitic interstitial keratitis +C2039668|T019|AB|090.3|ICD9CM|Syphilitic keratitis|Syphilitic keratitis +C2039668|T047|AB|090.3|ICD9CM|Syphilitic keratitis|Syphilitic keratitis +C0153132|T047|HT|090.4|ICD9CM|Juvenile neurosyphilis|Juvenile neurosyphilis +C0153132|T047|AB|090.40|ICD9CM|Juvenile neurosyph NOS|Juvenile neurosyph NOS +C0153132|T047|PT|090.40|ICD9CM|Juvenile neurosyphilis, unspecified|Juvenile neurosyphilis, unspecified +C0153133|T047|AB|090.41|ICD9CM|Congen syph encephalitis|Congen syph encephalitis +C0153133|T047|PT|090.41|ICD9CM|Congenital syphilitic encephalitis|Congenital syphilitic encephalitis +C0153134|T047|AB|090.42|ICD9CM|Congen syph meningitis|Congen syph meningitis +C0153134|T047|PT|090.42|ICD9CM|Congenital syphilitic meningitis|Congenital syphilitic meningitis +C0153135|T047|AB|090.49|ICD9CM|Juvenile neurosyph NEC|Juvenile neurosyph NEC +C0153135|T047|PT|090.49|ICD9CM|Other juvenile neurosyphilis|Other juvenile neurosyphilis +C0153136|T047|AB|090.5|ICD9CM|Late congen syph symptom|Late congen syph symptom +C0153136|T047|PT|090.5|ICD9CM|Other late congenital syphilis, symptomatic|Other late congenital syphilis, symptomatic +C0275874|T047|AB|090.6|ICD9CM|Late congen syph latent|Late congen syph latent +C0275874|T047|PT|090.6|ICD9CM|Late congenital syphilis, latent|Late congenital syphilis, latent +C0554634|T047|AB|090.7|ICD9CM|Late congen syph NOS|Late congen syph NOS +C0554634|T047|PT|090.7|ICD9CM|Late congenital syphilis, unspecified|Late congenital syphilis, unspecified +C0039131|T047|AB|090.9|ICD9CM|Congenital syphilis NOS|Congenital syphilis NOS +C0039131|T047|PT|090.9|ICD9CM|Congenital syphilis, unspecified|Congenital syphilis, unspecified +C0153139|T047|HT|091|ICD9CM|Early syphilis, symptomatic|Early syphilis, symptomatic +C0017418|T047|PT|091.0|ICD9CM|Genital syphilis (primary)|Genital syphilis (primary) +C0017418|T047|AB|091.0|ICD9CM|Primary genital syphilis|Primary genital syphilis +C0153140|T047|AB|091.1|ICD9CM|Primary anal syphilis|Primary anal syphilis +C0153140|T047|PT|091.1|ICD9CM|Primary anal syphilis|Primary anal syphilis +C0153141|T047|PT|091.2|ICD9CM|Other primary syphilis|Other primary syphilis +C0153141|T047|AB|091.2|ICD9CM|Primary syphilis NEC|Primary syphilis NEC +C0343677|T047|AB|091.3|ICD9CM|Secondary syph skin|Secondary syph skin +C0343677|T047|PT|091.3|ICD9CM|Secondary syphilis of skin or mucous membranes|Secondary syphilis of skin or mucous membranes +C0275834|T047|PT|091.4|ICD9CM|Adenopathy due to secondary syphilis|Adenopathy due to secondary syphilis +C0275834|T047|AB|091.4|ICD9CM|Syphilitic adenopathy|Syphilitic adenopathy +C0275836|T047|HT|091.5|ICD9CM|Uveitis due to secondary syphilis|Uveitis due to secondary syphilis +C0275836|T047|AB|091.50|ICD9CM|Syphilitic uveitis NOS|Syphilitic uveitis NOS +C0275836|T047|PT|091.50|ICD9CM|Syphilitic uveitis, unspecified|Syphilitic uveitis, unspecified +C0153145|T047|AB|091.51|ICD9CM|Syphilit chorioretinitis|Syphilit chorioretinitis +C0153145|T047|PT|091.51|ICD9CM|Syphilitic chorioretinitis (secondary)|Syphilitic chorioretinitis (secondary) +C0153146|T047|AB|091.52|ICD9CM|Syphilitic iridocyclitis|Syphilitic iridocyclitis +C0153146|T047|PT|091.52|ICD9CM|Syphilitic iridocyclitis (secondary)|Syphilitic iridocyclitis (secondary) +C0343676|T047|HT|091.6|ICD9CM|Secondary syphilis of viscera and bone|Secondary syphilis of viscera and bone +C0153148|T047|PT|091.61|ICD9CM|Secondary syphilitic periostitis|Secondary syphilitic periostitis +C0153148|T047|AB|091.61|ICD9CM|Syphilitic periostitis|Syphilitic periostitis +C0153149|T047|PT|091.62|ICD9CM|Secondary syphilitic hepatitis|Secondary syphilitic hepatitis +C0153149|T047|AB|091.62|ICD9CM|Syphilitic hepatitis|Syphilitic hepatitis +C0153150|T047|AB|091.69|ICD9CM|Second syph viscera NEC|Second syph viscera NEC +C0153150|T047|PT|091.69|ICD9CM|Secondary syphilis of other viscera|Secondary syphilis of other viscera +C0153151|T047|AB|091.7|ICD9CM|Second syphilis relapse|Second syphilis relapse +C0153151|T047|PT|091.7|ICD9CM|Secondary syphilis, relapse|Secondary syphilis, relapse +C0348147|T047|HT|091.8|ICD9CM|Other forms of secondary syphilis|Other forms of secondary syphilis +C0851315|T047|AB|091.81|ICD9CM|Acute syphil meningitis|Acute syphil meningitis +C0851315|T047|PT|091.81|ICD9CM|Acute syphilitic meningitis (secondary)|Acute syphilitic meningitis (secondary) +C0002181|T047|AB|091.82|ICD9CM|Syphilitic alopecia|Syphilitic alopecia +C0002181|T047|PT|091.82|ICD9CM|Syphilitic alopecia|Syphilitic alopecia +C0348147|T047|PT|091.89|ICD9CM|Other forms of secondary syphilis|Other forms of secondary syphilis +C0348147|T047|AB|091.89|ICD9CM|Secondary syphilis NEC|Secondary syphilis NEC +C0149985|T047|AB|091.9|ICD9CM|Secondary syphilis NOS|Secondary syphilis NOS +C0149985|T047|PT|091.9|ICD9CM|Unspecified secondary syphilis|Unspecified secondary syphilis +C0275842|T047|HT|092|ICD9CM|Early syphilis, latent|Early syphilis, latent +C0153156|T047|AB|092.0|ICD9CM|Early syph latent relaps|Early syph latent relaps +C0153156|T047|PT|092.0|ICD9CM|Early syphilis, latent, serological relapse after treatment|Early syphilis, latent, serological relapse after treatment +C0275842|T047|AB|092.9|ICD9CM|Early syphil latent NOS|Early syphil latent NOS +C0275842|T047|PT|092.9|ICD9CM|Early syphilis, latent, unspecified|Early syphilis, latent, unspecified +C0039130|T047|HT|093|ICD9CM|Cardiovascular syphilis|Cardiovascular syphilis +C0275844|T047|PT|093.0|ICD9CM|Aneurysm of aorta, specified as syphilitic|Aneurysm of aorta, specified as syphilitic +C0275844|T047|AB|093.0|ICD9CM|Aortic aneurysm, syphil|Aortic aneurysm, syphil +C0003511|T047|AB|093.1|ICD9CM|Syphilitic aortitis|Syphilitic aortitis +C0003511|T047|PT|093.1|ICD9CM|Syphilitic aortitis|Syphilitic aortitis +C0153158|T047|HT|093.2|ICD9CM|Syphilitic endocarditis|Syphilitic endocarditis +C0340334|T047|AB|093.20|ICD9CM|Syphil endocarditis NOS|Syphil endocarditis NOS +C0340334|T047|PT|093.20|ICD9CM|Syphilitic endocarditis of valve, unspecified|Syphilitic endocarditis of valve, unspecified +C0153160|T047|PT|093.21|ICD9CM|Syphilitic endocarditis of mitral valve|Syphilitic endocarditis of mitral valve +C0153160|T047|AB|093.21|ICD9CM|Syphilitic mitral valve|Syphilitic mitral valve +C0153161|T047|AB|093.22|ICD9CM|Syphilitic aortic valve|Syphilitic aortic valve +C0153161|T047|PT|093.22|ICD9CM|Syphilitic endocarditis of aortic valve|Syphilitic endocarditis of aortic valve +C0153162|T047|AB|093.23|ICD9CM|Syphil tricuspid valve|Syphil tricuspid valve +C0153162|T047|PT|093.23|ICD9CM|Syphilitic endocarditis of tricuspid valve|Syphilitic endocarditis of tricuspid valve +C0153163|T047|AB|093.24|ICD9CM|Syphil pulmonary valve|Syphil pulmonary valve +C0153163|T047|PT|093.24|ICD9CM|Syphilitic endocarditis of pulmonary valve|Syphilitic endocarditis of pulmonary valve +C0029751|T047|HT|093.8|ICD9CM|Other specified cardiovascular syphilis|Other specified cardiovascular syphilis +C0153164|T047|AB|093.81|ICD9CM|Syphilitic pericarditis|Syphilitic pericarditis +C0153164|T047|PT|093.81|ICD9CM|Syphilitic pericarditis|Syphilitic pericarditis +C0153165|T047|AB|093.82|ICD9CM|Syphilitic myocarditis|Syphilitic myocarditis +C0153165|T047|PT|093.82|ICD9CM|Syphilitic myocarditis|Syphilitic myocarditis +C0029751|T047|AB|093.89|ICD9CM|Cardiovascular syph NEC|Cardiovascular syph NEC +C0029751|T047|PT|093.89|ICD9CM|Other specified cardiovascular syphilis|Other specified cardiovascular syphilis +C0039130|T047|AB|093.9|ICD9CM|Cardiovascular syph NOS|Cardiovascular syph NOS +C0039130|T047|PT|093.9|ICD9CM|Cardiovascular syphilis, unspecified|Cardiovascular syphilis, unspecified +C0027927|T047|HT|094|ICD9CM|Neurosyphilis|Neurosyphilis +C0039223|T047|AB|094.0|ICD9CM|Tabes dorsalis|Tabes dorsalis +C0039223|T047|PT|094.0|ICD9CM|Tabes dorsalis|Tabes dorsalis +C0205858|T047|AB|094.1|ICD9CM|General paresis|General paresis +C0205858|T047|PT|094.1|ICD9CM|General paresis|General paresis +C0153166|T047|AB|094.2|ICD9CM|Syphilitic meningitis|Syphilitic meningitis +C0153166|T047|PT|094.2|ICD9CM|Syphilitic meningitis|Syphilitic meningitis +C0153167|T047|AB|094.3|ICD9CM|Asymptomat neurosyphilis|Asymptomat neurosyphilis +C0153167|T047|PT|094.3|ICD9CM|Asymptomatic neurosyphilis|Asymptomatic neurosyphilis +C0029817|T047|HT|094.8|ICD9CM|Other specified neurosyphilis|Other specified neurosyphilis +C0153168|T047|AB|094.81|ICD9CM|Syphilitic encephalitis|Syphilitic encephalitis +C0153168|T047|PT|094.81|ICD9CM|Syphilitic encephalitis|Syphilitic encephalitis +C0153169|T047|AB|094.82|ICD9CM|Syphilitic parkinsonism|Syphilitic parkinsonism +C0153169|T047|PT|094.82|ICD9CM|Syphilitic parkinsonism|Syphilitic parkinsonism +C0153170|T047|AB|094.83|ICD9CM|Syph dissem retinitis|Syph dissem retinitis +C0153170|T047|PT|094.83|ICD9CM|Syphilitic disseminated retinochoroiditis|Syphilitic disseminated retinochoroiditis +C0153171|T047|AB|094.84|ICD9CM|Syphilitic optic atrophy|Syphilitic optic atrophy +C0153171|T047|PT|094.84|ICD9CM|Syphilitic optic atrophy|Syphilitic optic atrophy +C0153172|T047|AB|094.85|ICD9CM|Syph retrobulb neuritis|Syph retrobulb neuritis +C0153172|T047|PT|094.85|ICD9CM|Syphilitic retrobulbar neuritis|Syphilitic retrobulbar neuritis +C0153173|T047|AB|094.86|ICD9CM|Syphil acoustic neuritis|Syphil acoustic neuritis +C0153173|T047|PT|094.86|ICD9CM|Syphilitic acoustic neuritis|Syphilitic acoustic neuritis +C0153174|T047|AB|094.87|ICD9CM|Syph rupt cereb aneurysm|Syph rupt cereb aneurysm +C0153174|T047|PT|094.87|ICD9CM|Syphilitic ruptured cerebral aneurysm|Syphilitic ruptured cerebral aneurysm +C0029817|T047|AB|094.89|ICD9CM|Neurosyphilis NEC|Neurosyphilis NEC +C0029817|T047|PT|094.89|ICD9CM|Other specified neurosyphilis|Other specified neurosyphilis +C0027927|T047|AB|094.9|ICD9CM|Neurosyphilis NOS|Neurosyphilis NOS +C0027927|T047|PT|094.9|ICD9CM|Neurosyphilis, unspecified|Neurosyphilis, unspecified +C0348149|T047|HT|095|ICD9CM|Other forms of late syphilis, with symptoms|Other forms of late syphilis, with symptoms +C0153176|T047|AB|095.0|ICD9CM|Syphilitic episcleritis|Syphilitic episcleritis +C0153176|T047|PT|095.0|ICD9CM|Syphilitic episcleritis|Syphilitic episcleritis +C0153177|T047|AB|095.1|ICD9CM|Syphilis of lung|Syphilis of lung +C0153177|T047|PT|095.1|ICD9CM|Syphilis of lung|Syphilis of lung +C0153178|T047|AB|095.2|ICD9CM|Syphilitic peritonitis|Syphilitic peritonitis +C0153178|T047|PT|095.2|ICD9CM|Syphilitic peritonitis|Syphilitic peritonitis +C0153179|T047|AB|095.3|ICD9CM|Syphilis of liver|Syphilis of liver +C0153179|T047|PT|095.3|ICD9CM|Syphilis of liver|Syphilis of liver +C0153180|T047|AB|095.4|ICD9CM|Syphilis of kidney|Syphilis of kidney +C0153180|T047|PT|095.4|ICD9CM|Syphilis of kidney|Syphilis of kidney +C0153181|T047|AB|095.5|ICD9CM|Syphilis of bone|Syphilis of bone +C0153181|T047|PT|095.5|ICD9CM|Syphilis of bone|Syphilis of bone +C0153182|T047|AB|095.6|ICD9CM|Syphilis of muscle|Syphilis of muscle +C0153182|T047|PT|095.6|ICD9CM|Syphilis of muscle|Syphilis of muscle +C0153183|T047|PT|095.7|ICD9CM|Syphilis of synovium, tendon, and bursa|Syphilis of synovium, tendon, and bursa +C0153183|T047|AB|095.7|ICD9CM|Syphilis of tendon/bursa|Syphilis of tendon/bursa +C0343689|T047|AB|095.8|ICD9CM|Late sympt syphilis NEC|Late sympt syphilis NEC +C0343689|T047|PT|095.8|ICD9CM|Other specified forms of late symptomatic syphilis|Other specified forms of late symptomatic syphilis +C0153185|T047|AB|095.9|ICD9CM|Late sympt syphilis NOS|Late sympt syphilis NOS +C0153185|T047|PT|095.9|ICD9CM|Late symptomatic syphilis, unspecified|Late symptomatic syphilis, unspecified +C1260915|T047|AB|096|ICD9CM|Late syphilis latent|Late syphilis latent +C1260915|T047|PT|096|ICD9CM|Late syphilis, latent|Late syphilis, latent +C0558995|T047|HT|097|ICD9CM|Other and unspecified syphilis|Other and unspecified syphilis +C0153188|T047|AB|097.0|ICD9CM|Late syphilis NOS|Late syphilis NOS +C0153188|T047|PT|097.0|ICD9CM|Late syphilis, unspecified|Late syphilis, unspecified +C0039133|T047|AB|097.1|ICD9CM|Latent syphilis NOS|Latent syphilis NOS +C0039133|T047|PT|097.1|ICD9CM|Latent syphilis, unspecified|Latent syphilis, unspecified +C0039128|T047|AB|097.9|ICD9CM|Syphilis NOS|Syphilis NOS +C0039128|T047|PT|097.9|ICD9CM|Syphilis, unspecified|Syphilis, unspecified +C0018081|T047|HT|098|ICD9CM|Gonococcal infections|Gonococcal infections +C0018074|T047|AB|098.0|ICD9CM|Acute gc infect lower gu|Acute gc infect lower gu +C0018074|T047|PT|098.0|ICD9CM|Gonococcal infection (acute) of lower genitourinary tract|Gonococcal infection (acute) of lower genitourinary tract +C0375028|T047|HT|098.1|ICD9CM|Gonococcal infection (acute) of upper genitourinary tract|Gonococcal infection (acute) of upper genitourinary tract +C0375028|T047|AB|098.10|ICD9CM|Gc (acute) upper gu NOS|Gc (acute) upper gu NOS +C0375028|T047|PT|098.10|ICD9CM|Gonococcal infection (acute) of upper genitourinary tract, site unspecified|Gonococcal infection (acute) of upper genitourinary tract, site unspecified +C0153191|T047|AB|098.11|ICD9CM|Gc cystitis (acute)|Gc cystitis (acute) +C0153191|T047|PT|098.11|ICD9CM|Gonococcal cystitis (acute)|Gonococcal cystitis (acute) +C0153192|T047|AB|098.12|ICD9CM|Gc prostatitis (acute)|Gc prostatitis (acute) +C0153192|T047|PT|098.12|ICD9CM|Gonococcal prostatitis (acute)|Gonococcal prostatitis (acute) +C0153193|T047|AB|098.13|ICD9CM|Gc orchitis (acute)|Gc orchitis (acute) +C0153193|T047|PT|098.13|ICD9CM|Gonococcal epididymo-orchitis (acute)|Gonococcal epididymo-orchitis (acute) +C0153194|T047|AB|098.14|ICD9CM|Gc sem vesiculit (acute)|Gc sem vesiculit (acute) +C0153194|T047|PT|098.14|ICD9CM|Gonococcal seminal vesiculitis (acute)|Gonococcal seminal vesiculitis (acute) +C0153195|T047|AB|098.15|ICD9CM|Gc cervicitis (acute)|Gc cervicitis (acute) +C0153195|T047|PT|098.15|ICD9CM|Gonococcal cervicitis (acute)|Gonococcal cervicitis (acute) +C0153196|T047|AB|098.16|ICD9CM|Gc endometritis (acute)|Gc endometritis (acute) +C0153196|T047|PT|098.16|ICD9CM|Gonococcal endometritis (acute)|Gonococcal endometritis (acute) +C0275654|T047|AB|098.17|ICD9CM|Acute gc salpingitis|Acute gc salpingitis +C0275654|T047|PT|098.17|ICD9CM|Gonococcal salpingitis, specified as acute|Gonococcal salpingitis, specified as acute +C0153198|T047|AB|098.19|ICD9CM|Gc (acute) upper gu NEC|Gc (acute) upper gu NEC +C0153198|T047|PT|098.19|ICD9CM|Other gonococcal infection (acute) of upper genitourinary tract|Other gonococcal infection (acute) of upper genitourinary tract +C0153199|T047|AB|098.2|ICD9CM|Chr gc infect lower gu|Chr gc infect lower gu +C0153199|T047|PT|098.2|ICD9CM|Gonococcal infection, chronic, of lower genitourinary tract|Gonococcal infection, chronic, of lower genitourinary tract +C0375029|T047|HT|098.3|ICD9CM|Gonococcal infection, chronic, of upper genitourinary tract|Gonococcal infection, chronic, of upper genitourinary tract +C0375029|T047|AB|098.30|ICD9CM|Chr gc upper gu NOS|Chr gc upper gu NOS +C0375029|T047|PT|098.30|ICD9CM|Chronic gonococcal infection of upper genitourinary tract, site unspecified|Chronic gonococcal infection of upper genitourinary tract, site unspecified +C0153202|T047|AB|098.31|ICD9CM|Gc cystitis, chronic|Gc cystitis, chronic +C0153202|T047|PT|098.31|ICD9CM|Gonococcal cystitis, chronic|Gonococcal cystitis, chronic +C0153203|T047|AB|098.32|ICD9CM|Gc prostatitis, chronic|Gc prostatitis, chronic +C0153203|T047|PT|098.32|ICD9CM|Gonococcal prostatitis, chronic|Gonococcal prostatitis, chronic +C0153204|T047|AB|098.33|ICD9CM|Gc orchitis, chronic|Gc orchitis, chronic +C0153204|T047|PT|098.33|ICD9CM|Gonococcal epididymo-orchitis, chronic|Gonococcal epididymo-orchitis, chronic +C0153205|T047|AB|098.34|ICD9CM|Gc sem vesiculitis, chr|Gc sem vesiculitis, chr +C0153205|T047|PT|098.34|ICD9CM|Gonococcal seminal vesiculitis, chronic|Gonococcal seminal vesiculitis, chronic +C0153206|T047|AB|098.35|ICD9CM|Gc cervicitis, chronic|Gc cervicitis, chronic +C0153206|T047|PT|098.35|ICD9CM|Gonococcal cervicitis, chronic|Gonococcal cervicitis, chronic +C0153207|T047|AB|098.36|ICD9CM|Gc endometritis, chronic|Gc endometritis, chronic +C0153207|T047|PT|098.36|ICD9CM|Gonococcal endometritis, chronic|Gonococcal endometritis, chronic +C0153208|T047|AB|098.37|ICD9CM|Gc salpingitis (chronic)|Gc salpingitis (chronic) +C0153208|T047|PT|098.37|ICD9CM|Gonococcal salpingitis (chronic)|Gonococcal salpingitis (chronic) +C0153209|T047|AB|098.39|ICD9CM|Chr gc upper gu NEC|Chr gc upper gu NEC +C0153209|T047|PT|098.39|ICD9CM|Other chronic gonococcal infection of upper genitourinary tract|Other chronic gonococcal infection of upper genitourinary tract +C0153210|T047|HT|098.4|ICD9CM|Gonococcal infection of eye|Gonococcal infection of eye +C0339166|T047|AB|098.40|ICD9CM|Gonococcal conjunctivit|Gonococcal conjunctivit +C0339166|T047|PT|098.40|ICD9CM|Gonococcal conjunctivitis (neonatorum)|Gonococcal conjunctivitis (neonatorum) +C0153212|T047|AB|098.41|ICD9CM|Gonococcal iridocyclitis|Gonococcal iridocyclitis +C0153212|T047|PT|098.41|ICD9CM|Gonococcal iridocyclitis|Gonococcal iridocyclitis +C0153213|T047|AB|098.42|ICD9CM|Gonococcal endophthalmia|Gonococcal endophthalmia +C0153213|T047|PT|098.42|ICD9CM|Gonococcal endophthalmia|Gonococcal endophthalmia +C0153214|T047|AB|098.43|ICD9CM|Gonococcal keratitis|Gonococcal keratitis +C0153214|T047|PT|098.43|ICD9CM|Gonococcal keratitis|Gonococcal keratitis +C0153215|T047|AB|098.49|ICD9CM|Gonococcal eye NEC|Gonococcal eye NEC +C0153215|T047|PT|098.49|ICD9CM|Other gonococcal infection of eye|Other gonococcal infection of eye +C0153216|T047|HT|098.5|ICD9CM|Gonococcal infection of joint|Gonococcal infection of joint +C0153216|T047|AB|098.50|ICD9CM|Gonococcal arthritis|Gonococcal arthritis +C0153216|T047|PT|098.50|ICD9CM|Gonococcal arthritis|Gonococcal arthritis +C0343714|T047|AB|098.51|ICD9CM|Gonococcal synovitis|Gonococcal synovitis +C0343714|T047|PT|098.51|ICD9CM|Gonococcal synovitis and tenosynovitis|Gonococcal synovitis and tenosynovitis +C0153218|T047|AB|098.52|ICD9CM|Gonococcal bursitis|Gonococcal bursitis +C0153218|T047|PT|098.52|ICD9CM|Gonococcal bursitis|Gonococcal bursitis +C0153219|T047|AB|098.53|ICD9CM|Gonococcal spondylitis|Gonococcal spondylitis +C0153219|T047|PT|098.53|ICD9CM|Gonococcal spondylitis|Gonococcal spondylitis +C0153220|T047|AB|098.59|ICD9CM|Gc infect joint NEC|Gc infect joint NEC +C0153220|T047|PT|098.59|ICD9CM|Other gonococcal infection of joint|Other gonococcal infection of joint +C0149966|T047|AB|098.6|ICD9CM|Gonococcal infec pharynx|Gonococcal infec pharynx +C0149966|T047|PT|098.6|ICD9CM|Gonococcal infection of pharynx|Gonococcal infection of pharynx +C0153222|T047|AB|098.7|ICD9CM|Gc infect anus & rectum|Gc infect anus & rectum +C0153222|T047|PT|098.7|ICD9CM|Gonococcal infection of anus and rectum|Gonococcal infection of anus and rectum +C0153223|T047|HT|098.8|ICD9CM|Gonococcal infection of other specified sites|Gonococcal infection of other specified sites +C0018075|T047|AB|098.81|ICD9CM|Gonococcal keratosis|Gonococcal keratosis +C0018075|T047|PT|098.81|ICD9CM|Gonococcal keratosis (blennorrhagica)|Gonococcal keratosis (blennorrhagica) +C0153225|T047|AB|098.82|ICD9CM|Gonococcal meningitis|Gonococcal meningitis +C0153225|T047|PT|098.82|ICD9CM|Gonococcal meningitis|Gonococcal meningitis +C0153226|T047|AB|098.83|ICD9CM|Gonococcal pericarditis|Gonococcal pericarditis +C0153226|T047|PT|098.83|ICD9CM|Gonococcal pericarditis|Gonococcal pericarditis +C0153227|T047|AB|098.84|ICD9CM|Gonococcal endocarditis|Gonococcal endocarditis +C0153227|T047|PT|098.84|ICD9CM|Gonococcal endocarditis|Gonococcal endocarditis +C0153228|T047|AB|098.85|ICD9CM|Gonococcal heart dis NEC|Gonococcal heart dis NEC +C0153228|T047|PT|098.85|ICD9CM|Other gonococcal heart disease|Other gonococcal heart disease +C0018077|T047|AB|098.86|ICD9CM|Gonococcal peritonitis|Gonococcal peritonitis +C0018077|T047|PT|098.86|ICD9CM|Gonococcal peritonitis|Gonococcal peritonitis +C0153223|T047|AB|098.89|ICD9CM|Gonococcal inf site NEC|Gonococcal inf site NEC +C0153223|T047|PT|098.89|ICD9CM|Gonococcal infection of other specified sites|Gonococcal infection of other specified sites +C0153229|T047|HT|099|ICD9CM|Other venereal diseases|Other venereal diseases +C0007947|T047|AB|099.0|ICD9CM|Chancroid|Chancroid +C0007947|T047|PT|099.0|ICD9CM|Chancroid|Chancroid +C0024286|T047|AB|099.1|ICD9CM|Lymphogranuloma venereum|Lymphogranuloma venereum +C0024286|T047|PT|099.1|ICD9CM|Lymphogranuloma venereum|Lymphogranuloma venereum +C0018190|T047|AB|099.2|ICD9CM|Granuloma inguinale|Granuloma inguinale +C0018190|T047|PT|099.2|ICD9CM|Granuloma inguinale|Granuloma inguinale +C0035012|T047|AB|099.3|ICD9CM|Reiter's disease|Reiter's disease +C0035012|T047|PT|099.3|ICD9CM|Reiter's disease|Reiter's disease +C1112700|T047|HT|099.4|ICD9CM|Other nongonococcal urethritis [NGU]|Other nongonococcal urethritis [NGU] +C0375031|T047|PT|099.40|ICD9CM|Other nongonococcal urethritis, unspecified|Other nongonococcal urethritis, unspecified +C0375031|T047|AB|099.40|ICD9CM|Unspcf nongnccl urethrts|Unspcf nongnccl urethrts +C1278807|T047|AB|099.41|ICD9CM|Chlmyd trachomatis ureth|Chlmyd trachomatis ureth +C1278807|T047|PT|099.41|ICD9CM|Other nongonococcal urethritis, chlamydia trachomatis|Other nongonococcal urethritis, chlamydia trachomatis +C0375033|T047|AB|099.49|ICD9CM|Nongc urth oth spf orgsm|Nongc urth oth spf orgsm +C0375033|T047|PT|099.49|ICD9CM|Other nongonococcal urethritis, other specified organism|Other nongonococcal urethritis, other specified organism +C0375034|T047|HT|099.5|ICD9CM|Other venereal diseases due to Chlamydia trachomatis|Other venereal diseases due to Chlamydia trachomatis +C0375035|T047|AB|099.50|ICD9CM|Oth VD chlm trch unsp st|Oth VD chlm trch unsp st +C0375035|T047|PT|099.50|ICD9CM|Other venereal diseases due to chlamydia trachomatis, unspecified site|Other venereal diseases due to chlamydia trachomatis, unspecified site +C0375036|T047|AB|099.51|ICD9CM|Oth VD chlm trch pharynx|Oth VD chlm trch pharynx +C0375036|T047|PT|099.51|ICD9CM|Other venereal diseases due to chlamydia trachomatis, pharynx|Other venereal diseases due to chlamydia trachomatis, pharynx +C0348903|T047|AB|099.52|ICD9CM|Oth VD chlm trch ans rct|Oth VD chlm trch ans rct +C0348903|T047|PT|099.52|ICD9CM|Other venereal diseases due to chlamydia trachomatis, anus and rectum|Other venereal diseases due to chlamydia trachomatis, anus and rectum +C0348904|T047|AB|099.53|ICD9CM|Oth VD chlm trch lowr gu|Oth VD chlm trch lowr gu +C0348904|T047|PT|099.53|ICD9CM|Other venereal diseases due to chlamydia trachomatis, lower genitourinary sites|Other venereal diseases due to chlamydia trachomatis, lower genitourinary sites +C0375039|T047|AB|099.54|ICD9CM|Oth VD chlm trch oth gu|Oth VD chlm trch oth gu +C0375039|T047|PT|099.54|ICD9CM|Other venereal diseases due to chlamydia trachomatis, other genitourinary sites|Other venereal diseases due to chlamydia trachomatis, other genitourinary sites +C0348157|T047|AB|099.55|ICD9CM|Ot VD chlm trch unspf gu|Ot VD chlm trch unspf gu +C0348157|T047|PT|099.55|ICD9CM|Other venereal diseases due to chlamydia trachomatis, unspecified genitourinary site|Other venereal diseases due to chlamydia trachomatis, unspecified genitourinary site +C0375041|T047|AB|099.56|ICD9CM|Ot VD chlm trch prtoneum|Ot VD chlm trch prtoneum +C0375041|T047|PT|099.56|ICD9CM|Other venereal diseases due to chlamydia trachomatis, peritoneum|Other venereal diseases due to chlamydia trachomatis, peritoneum +C0375042|T047|AB|099.59|ICD9CM|Oth VD chlm trch spcf st|Oth VD chlm trch spcf st +C0375042|T047|PT|099.59|ICD9CM|Other venereal diseases due to chlamydia trachomatis, other specified site|Other venereal diseases due to chlamydia trachomatis, other specified site +C0029840|T047|PT|099.8|ICD9CM|Other specified venereal diseases|Other specified venereal diseases +C0029840|T047|AB|099.8|ICD9CM|Venereal disease NEC|Venereal disease NEC +C0036916|T047|AB|099.9|ICD9CM|Venereal disease NOS|Venereal disease NOS +C0036916|T047|PT|099.9|ICD9CM|Venereal disease, unspecified|Venereal disease, unspecified +C0023364|T047|HT|100|ICD9CM|Leptospirosis|Leptospirosis +C0178244|T047|HT|100-104.99|ICD9CM|OTHER SPIROCHETAL DISEASES|OTHER SPIROCHETAL DISEASES +C0043102|T047|AB|100.0|ICD9CM|Leptospiros icterohem|Leptospiros icterohem +C0043102|T047|PT|100.0|ICD9CM|Leptospirosis icterohemorrhagica|Leptospirosis icterohemorrhagica +C0153231|T047|HT|100.8|ICD9CM|Other specified leptospiral infections|Other specified leptospiral infections +C0153232|T047|AB|100.81|ICD9CM|Leptospiral meningitis|Leptospiral meningitis +C0153232|T047|PT|100.81|ICD9CM|Leptospiral meningitis (aseptic)|Leptospiral meningitis (aseptic) +C0153231|T047|AB|100.89|ICD9CM|Leptospiral infect NEC|Leptospiral infect NEC +C0153231|T047|PT|100.89|ICD9CM|Other specified leptospiral infections|Other specified leptospiral infections +C0023364|T047|AB|100.9|ICD9CM|Leptospirosis NOS|Leptospirosis NOS +C0023364|T047|PT|100.9|ICD9CM|Leptospirosis, unspecified|Leptospirosis, unspecified +C1527368|T047|AB|101|ICD9CM|Vincent's angina|Vincent's angina +C1527368|T047|PT|101|ICD9CM|Vincent's angina|Vincent's angina +C0043388|T047|HT|102|ICD9CM|Yaws|Yaws +C0275990|T047|PT|102.0|ICD9CM|Initial lesions of yaws|Initial lesions of yaws +C0275990|T047|AB|102.0|ICD9CM|Initial lesions yaws|Initial lesions yaws +C0153234|T047|AB|102.1|ICD9CM|Multiple papillomata|Multiple papillomata +C0153234|T047|PT|102.1|ICD9CM|Multiple papillomata due to yaws and wet crab yaws|Multiple papillomata due to yaws and wet crab yaws +C0153235|T047|AB|102.2|ICD9CM|Early skin yaws NEC|Early skin yaws NEC +C0153235|T047|PT|102.2|ICD9CM|Other early skin lesions of yaws|Other early skin lesions of yaws +C0276001|T047|PT|102.3|ICD9CM|Hyperkeratosis due to yaws|Hyperkeratosis due to yaws +C0276001|T047|AB|102.3|ICD9CM|Hyperkeratosis of yaws|Hyperkeratosis of yaws +C0276007|T047|PT|102.4|ICD9CM|Gummata and ulcers due to yaws|Gummata and ulcers due to yaws +C0276007|T047|AB|102.4|ICD9CM|Gummata and ulcers, yaws|Gummata and ulcers, yaws +C0276009|T047|AB|102.5|ICD9CM|Gangosa|Gangosa +C0276009|T047|PT|102.5|ICD9CM|Gangosa|Gangosa +C0343834|T047|PT|102.6|ICD9CM|Bone and joint lesions due to yaws|Bone and joint lesions due to yaws +C0343834|T047|AB|102.6|ICD9CM|Yaws of bone & joint|Yaws of bone & joint +C0153239|T047|PT|102.7|ICD9CM|Other manifestations of yaws|Other manifestations of yaws +C0153239|T047|AB|102.7|ICD9CM|Yaws manifestations NEC|Yaws manifestations NEC +C0153240|T047|AB|102.8|ICD9CM|Latent yaws|Latent yaws +C0153240|T047|PT|102.8|ICD9CM|Latent yaws|Latent yaws +C0043388|T047|AB|102.9|ICD9CM|Yaws NOS|Yaws NOS +C0043388|T047|PT|102.9|ICD9CM|Yaws, unspecified|Yaws, unspecified +C0031946|T047|HT|103|ICD9CM|Pinta|Pinta +C0153241|T047|AB|103.0|ICD9CM|Pinta primary lesions|Pinta primary lesions +C0153241|T047|PT|103.0|ICD9CM|Primary lesions of pinta|Primary lesions of pinta +C0153242|T047|PT|103.1|ICD9CM|Intermediate lesions of pinta|Intermediate lesions of pinta +C0153242|T047|AB|103.1|ICD9CM|Pinta intermed lesions|Pinta intermed lesions +C0153243|T047|PT|103.2|ICD9CM|Late lesions of pinta|Late lesions of pinta +C0153243|T047|AB|103.2|ICD9CM|Pinta late lesions|Pinta late lesions +C0153244|T047|PT|103.3|ICD9CM|Mixed lesions of pinta|Mixed lesions of pinta +C0153244|T047|AB|103.3|ICD9CM|Pinta mixed lesions|Pinta mixed lesions +C0031946|T047|AB|103.9|ICD9CM|Pinta NOS|Pinta NOS +C0031946|T047|PT|103.9|ICD9CM|Pinta, unspecified|Pinta, unspecified +C0153245|T047|HT|104|ICD9CM|Other spirochetal infection|Other spirochetal infection +C3537179|T047|AB|104.0|ICD9CM|Nonvenereal endemic syph|Nonvenereal endemic syph +C3537179|T047|PT|104.0|ICD9CM|Nonvenereal endemic syphilis|Nonvenereal endemic syphilis +C0029830|T047|PT|104.8|ICD9CM|Other specified spirochetal infections|Other specified spirochetal infections +C0029830|T047|AB|104.8|ICD9CM|Spirochetal infect NEC|Spirochetal infect NEC +C0037974|T047|AB|104.9|ICD9CM|Spirochetal infect NOS|Spirochetal infect NOS +C0037974|T047|PT|104.9|ICD9CM|Spirochetal infection, unspecified|Spirochetal infection, unspecified +C0011636|T047|HT|110|ICD9CM|Dermatophytosis|Dermatophytosis +C0026946|T047|HT|110-118.99|ICD9CM|MYCOSES|MYCOSES +C0011640|T047|AB|110.0|ICD9CM|Dermatophyt scalp/beard|Dermatophyt scalp/beard +C0011640|T047|PT|110.0|ICD9CM|Dermatophytosis of scalp and beard|Dermatophytosis of scalp and beard +C4082762|T047|AB|110.1|ICD9CM|Dermatophytosis of nail|Dermatophytosis of nail +C4082762|T047|PT|110.1|ICD9CM|Dermatophytosis of nail|Dermatophytosis of nail +C0153246|T047|AB|110.2|ICD9CM|Dermatophytosis of hand|Dermatophytosis of hand +C0153246|T047|PT|110.2|ICD9CM|Dermatophytosis of hand|Dermatophytosis of hand +C0011638|T047|AB|110.3|ICD9CM|Dermatophytosis of groin|Dermatophytosis of groin +C0011638|T047|PT|110.3|ICD9CM|Dermatophytosis of groin and perianal area|Dermatophytosis of groin and perianal area +C0040259|T047|AB|110.4|ICD9CM|Dermatophytosis of foot|Dermatophytosis of foot +C0040259|T047|PT|110.4|ICD9CM|Dermatophytosis of foot|Dermatophytosis of foot +C0546826|T047|AB|110.5|ICD9CM|Dermatophytosis of body|Dermatophytosis of body +C0546826|T047|PT|110.5|ICD9CM|Dermatophytosis of the body|Dermatophytosis of the body +C1395264|T047|AB|110.6|ICD9CM|Deep dermatophytosis|Deep dermatophytosis +C1395264|T047|PT|110.6|ICD9CM|Deep seated dermatophytosis|Deep seated dermatophytosis +C0153248|T047|PT|110.8|ICD9CM|Dermatophytosis of other specified sites|Dermatophytosis of other specified sites +C0153248|T047|AB|110.8|ICD9CM|Dermatophytosis site NEC|Dermatophytosis site NEC +C0011636|T047|PT|110.9|ICD9CM|Dermatophytosis of unspecified site|Dermatophytosis of unspecified site +C0011636|T047|AB|110.9|ICD9CM|Dermatophytosis site NOS|Dermatophytosis site NOS +C0011630|T047|HT|111|ICD9CM|Dermatomycosis, other and unspecified|Dermatomycosis, other and unspecified +C0040262|T047|AB|111.0|ICD9CM|Pityriasis versicolor|Pityriasis versicolor +C0040262|T047|PT|111.0|ICD9CM|Pityriasis versicolor|Pityriasis versicolor +C0152067|T047|AB|111.1|ICD9CM|Tinea nigra|Tinea nigra +C0152067|T047|PT|111.1|ICD9CM|Tinea nigra|Tinea nigra +C0040249|T047|AB|111.2|ICD9CM|Tinea blanca|Tinea blanca +C0040249|T047|PT|111.2|ICD9CM|Tinea blanca|Tinea blanca +C0153249|T047|AB|111.3|ICD9CM|Black piedra|Black piedra +C0153249|T047|PT|111.3|ICD9CM|Black piedra|Black piedra +C0029763|T047|AB|111.8|ICD9CM|Dermatomycoses NEC|Dermatomycoses NEC +C0029763|T047|PT|111.8|ICD9CM|Other specified dermatomycoses|Other specified dermatomycoses +C0011630|T047|AB|111.9|ICD9CM|Dermatomycosis NOS|Dermatomycosis NOS +C0011630|T047|PT|111.9|ICD9CM|Dermatomycosis, unspecified|Dermatomycosis, unspecified +C0006840|T047|HT|112|ICD9CM|Candidiasis|Candidiasis +C0006849|T047|PT|112.0|ICD9CM|Candidiasis of mouth|Candidiasis of mouth +C0006849|T047|AB|112.0|ICD9CM|Thrush|Thrush +C0700345|T047|AB|112.1|ICD9CM|Candidal vulvovaginitis|Candidal vulvovaginitis +C0700345|T047|PT|112.1|ICD9CM|Candidiasis of vulva and vagina|Candidiasis of vulva and vagina +C0153250|T047|AB|112.2|ICD9CM|Candidias urogenital NEC|Candidias urogenital NEC +C0153250|T047|PT|112.2|ICD9CM|Candidiasis of other urogenital sites|Candidiasis of other urogenital sites +C0006842|T047|PT|112.3|ICD9CM|Candidiasis of skin and nails|Candidiasis of skin and nails +C0006842|T047|AB|112.3|ICD9CM|Cutaneous candidiasis|Cutaneous candidiasis +C0153251|T047|AB|112.4|ICD9CM|Candidiasis of lung|Candidiasis of lung +C0153251|T047|PT|112.4|ICD9CM|Candidiasis of lung|Candidiasis of lung +C0153252|T047|AB|112.5|ICD9CM|Disseminated candidiasis|Disseminated candidiasis +C0153252|T047|PT|112.5|ICD9CM|Disseminated candidiasis|Disseminated candidiasis +C0153253|T047|HT|112.8|ICD9CM|Candidiasis of other specified sites|Candidiasis of other specified sites +C0153254|T047|AB|112.81|ICD9CM|Candidal endocarditis|Candidal endocarditis +C0153254|T047|PT|112.81|ICD9CM|Candidal endocarditis|Candidal endocarditis +C0153255|T047|AB|112.82|ICD9CM|Candidal otitis externa|Candidal otitis externa +C0153255|T047|PT|112.82|ICD9CM|Candidal otitis externa|Candidal otitis externa +C0153256|T047|AB|112.83|ICD9CM|Candidal meningitis|Candidal meningitis +C0153256|T047|PT|112.83|ICD9CM|Candidal meningitis|Candidal meningitis +C0239295|T047|AB|112.84|ICD9CM|Candidal esophagitis|Candidal esophagitis +C0239295|T047|PT|112.84|ICD9CM|Candidal esophagitis|Candidal esophagitis +C0858895|T047|AB|112.85|ICD9CM|Candidal enteritis|Candidal enteritis +C0858895|T047|PT|112.85|ICD9CM|Candidal enteritis|Candidal enteritis +C3665466|T047|AB|112.89|ICD9CM|Candidiasis site NEC|Candidiasis site NEC +C3665466|T047|PT|112.89|ICD9CM|Other candidiasis of other specified sites|Other candidiasis of other specified sites +C0006840|T047|PT|112.9|ICD9CM|Candidiasis of unspecified site|Candidiasis of unspecified site +C0006840|T047|AB|112.9|ICD9CM|Candidiasis site NOS|Candidiasis site NOS +C0009186|T047|HT|114|ICD9CM|Coccidioidomycosis|Coccidioidomycosis +C0153257|T047|AB|114.0|ICD9CM|Primary coccidioidomycos|Primary coccidioidomycos +C0153257|T047|PT|114.0|ICD9CM|Primary coccidioidomycosis (pulmonary)|Primary coccidioidomycosis (pulmonary) +C0700644|T047|AB|114.1|ICD9CM|Prim cutan coccidioid|Prim cutan coccidioid +C0700644|T047|PT|114.1|ICD9CM|Primary extrapulmonary coccidioidomycosis|Primary extrapulmonary coccidioidomycosis +C0153259|T047|AB|114.2|ICD9CM|Coccidioidal meningitis|Coccidioidal meningitis +C0153259|T047|PT|114.2|ICD9CM|Coccidioidal meningitis|Coccidioidal meningitis +C0343891|T047|PT|114.3|ICD9CM|Other forms of progressive coccidioidomycosis|Other forms of progressive coccidioidomycosis +C0343891|T047|AB|114.3|ICD9CM|Progress coccidioid NEC|Progress coccidioid NEC +C0339963|T047|AB|114.4|ICD9CM|Ch pl coccidioidomycosis|Ch pl coccidioidomycosis +C0339963|T047|PT|114.4|ICD9CM|Chronic pulmonary coccidioidomycosis|Chronic pulmonary coccidioidomycosis +C0375046|T047|AB|114.5|ICD9CM|Pl cocidioidomycosis NOS|Pl cocidioidomycosis NOS +C0375046|T047|PT|114.5|ICD9CM|Pulmonary coccidioidomycosis, unspecified|Pulmonary coccidioidomycosis, unspecified +C0009186|T047|AB|114.9|ICD9CM|Coccidioidomycosis NOS|Coccidioidomycosis NOS +C0009186|T047|PT|114.9|ICD9CM|Coccidioidomycosis, unspecified|Coccidioidomycosis, unspecified +C0019655|T047|HT|115|ICD9CM|Histoplasmosis|Histoplasmosis +C0153261|T047|HT|115.0|ICD9CM|Infection by Histoplasma capsulatum|Infection by Histoplasma capsulatum +C0153262|T047|AB|115.00|ICD9CM|Histoplasma capsulat NOS|Histoplasma capsulat NOS +C0153262|T047|PT|115.00|ICD9CM|Infection by Histoplasma capsulatum, without mention of manifestation|Infection by Histoplasma capsulatum, without mention of manifestation +C0153263|T047|AB|115.01|ICD9CM|Histoplasm capsul mening|Histoplasm capsul mening +C0153263|T047|PT|115.01|ICD9CM|Infection by Histoplasma capsulatum, meningitis|Infection by Histoplasma capsulatum, meningitis +C0153264|T047|AB|115.02|ICD9CM|Histoplasm capsul retina|Histoplasm capsul retina +C0153264|T047|PT|115.02|ICD9CM|Infection by Histoplasma capsulatum, retinitis|Infection by Histoplasma capsulatum, retinitis +C0153265|T047|AB|115.03|ICD9CM|Histoplasm caps pericard|Histoplasm caps pericard +C0153265|T047|PT|115.03|ICD9CM|Infection by Histoplasma capsulatum, pericarditis|Infection by Histoplasma capsulatum, pericarditis +C0153266|T047|AB|115.04|ICD9CM|Histoplasm caps endocard|Histoplasm caps endocard +C0153266|T047|PT|115.04|ICD9CM|Infection by Histoplasma capsulatum, endocarditis|Infection by Histoplasma capsulatum, endocarditis +C1261318|T047|AB|115.05|ICD9CM|Histoplasm caps pneumon|Histoplasm caps pneumon +C1261318|T047|PT|115.05|ICD9CM|Infection by Histoplasma capsulatum, pneumonia|Infection by Histoplasma capsulatum, pneumonia +C0153268|T047|AB|115.09|ICD9CM|Histoplasma capsulat NEC|Histoplasma capsulat NEC +C0153268|T047|PT|115.09|ICD9CM|Infection by Histoplasma capsulatum, other|Infection by Histoplasma capsulatum, other +C0220977|T047|HT|115.1|ICD9CM|Infection by Histoplasma duboisii|Infection by Histoplasma duboisii +C0153270|T047|AB|115.10|ICD9CM|Histoplasma duboisii NOS|Histoplasma duboisii NOS +C0153270|T047|PT|115.10|ICD9CM|Infection by Histoplasma duboisii, without mention of manifestation|Infection by Histoplasma duboisii, without mention of manifestation +C0153271|T047|AB|115.11|ICD9CM|Histoplasm dubois mening|Histoplasm dubois mening +C0153271|T047|PT|115.11|ICD9CM|Infection by Histoplasma duboisii, meningitis|Infection by Histoplasma duboisii, meningitis +C0153272|T047|AB|115.12|ICD9CM|Histoplasm dubois retina|Histoplasm dubois retina +C0153272|T047|PT|115.12|ICD9CM|Infection by Histoplasma duboisii, retinitis|Infection by Histoplasma duboisii, retinitis +C0153273|T047|AB|115.13|ICD9CM|Histoplasm dub pericard|Histoplasm dub pericard +C0153273|T047|PT|115.13|ICD9CM|Infection by Histoplasma duboisii, pericarditis|Infection by Histoplasma duboisii, pericarditis +C0153274|T047|AB|115.14|ICD9CM|Histoplasm dub endocard|Histoplasm dub endocard +C0153274|T047|PT|115.14|ICD9CM|Infection by Histoplasma duboisii, endocarditis|Infection by Histoplasma duboisii, endocarditis +C0153275|T047|AB|115.15|ICD9CM|Histoplasm dub pneumonia|Histoplasm dub pneumonia +C0153275|T047|PT|115.15|ICD9CM|Infection by Histoplasma duboisii, pneumonia|Infection by Histoplasma duboisii, pneumonia +C0153276|T047|AB|115.19|ICD9CM|Histoplasma duboisii NEC|Histoplasma duboisii NEC +C0153276|T047|PT|115.19|ICD9CM|Infection by Histoplasma duboisii, other|Infection by Histoplasma duboisii, other +C0019655|T047|HT|115.9|ICD9CM|Histoplasmosis, unspecified|Histoplasmosis, unspecified +C0677640|T047|AB|115.90|ICD9CM|Histoplasmosis NOS|Histoplasmosis NOS +C0677640|T047|PT|115.90|ICD9CM|Histoplasmosis, unspecified, without mention of manifestation|Histoplasmosis, unspecified, without mention of manifestation +C0153277|T047|AB|115.91|ICD9CM|Histoplasmosis meningit|Histoplasmosis meningit +C0153277|T047|PT|115.91|ICD9CM|Histoplasmosis, unspecified, meningitis|Histoplasmosis, unspecified, meningitis +C0153278|T047|AB|115.92|ICD9CM|Histoplasmosis retinitis|Histoplasmosis retinitis +C0153278|T047|PT|115.92|ICD9CM|Histoplasmosis, unspecified, retinitis|Histoplasmosis, unspecified, retinitis +C0153279|T047|AB|115.93|ICD9CM|Histoplasmosis pericard|Histoplasmosis pericard +C0153279|T047|PT|115.93|ICD9CM|Histoplasmosis, unspecified, pericarditis|Histoplasmosis, unspecified, pericarditis +C0153266|T047|AB|115.94|ICD9CM|Histoplasmosis endocard|Histoplasmosis endocard +C0153266|T047|PT|115.94|ICD9CM|Histoplasmosis, unspecified, endocarditis|Histoplasmosis, unspecified, endocarditis +C0153281|T047|AB|115.95|ICD9CM|Histoplasmosis pneumonia|Histoplasmosis pneumonia +C0153281|T047|PT|115.95|ICD9CM|Histoplasmosis, unspecified, pneumonia|Histoplasmosis, unspecified, pneumonia +C0019657|T047|AB|115.99|ICD9CM|Histoplasmosis NEC|Histoplasmosis NEC +C0019657|T047|PT|115.99|ICD9CM|Histoplasmosis, unspecified, other|Histoplasmosis, unspecified, other +C0005716|T047|HT|116|ICD9CM|Blastomycotic infection|Blastomycotic infection +C0005716|T047|AB|116.0|ICD9CM|Blastomycosis|Blastomycosis +C0005716|T047|PT|116.0|ICD9CM|Blastomycosis|Blastomycosis +C0030409|T047|AB|116.1|ICD9CM|Paracoccidioidomycosis|Paracoccidioidomycosis +C0030409|T047|PT|116.1|ICD9CM|Paracoccidioidomycosis|Paracoccidioidomycosis +C0152066|T047|AB|116.2|ICD9CM|Lobomycosis|Lobomycosis +C0152066|T047|PT|116.2|ICD9CM|Lobomycosis|Lobomycosis +C0343846|T047|HT|117|ICD9CM|Other mycoses|Other mycoses +C0035469|T047|AB|117.0|ICD9CM|Rhinosporidiosis|Rhinosporidiosis +C0035469|T047|PT|117.0|ICD9CM|Rhinosporidiosis|Rhinosporidiosis +C0038034|T047|AB|117.1|ICD9CM|Sporotrichosis|Sporotrichosis +C0038034|T047|PT|117.1|ICD9CM|Sporotrichosis|Sporotrichosis +C0008582|T047|AB|117.2|ICD9CM|Chromoblastomycosis|Chromoblastomycosis +C0008582|T047|PT|117.2|ICD9CM|Chromoblastomycosis|Chromoblastomycosis +C0004030|T047|AB|117.3|ICD9CM|Aspergillosis|Aspergillosis +C0004030|T047|PT|117.3|ICD9CM|Aspergillosis|Aspergillosis +C2350621|T047|AB|117.4|ICD9CM|Mycotic mycetomas|Mycotic mycetomas +C2350621|T047|PT|117.4|ICD9CM|Mycotic mycetomas|Mycotic mycetomas +C0010414|T047|AB|117.5|ICD9CM|Cryptococcosis|Cryptococcosis +C0010414|T047|PT|117.5|ICD9CM|Cryptococcosis|Cryptococcosis +C0153285|T047|AB|117.6|ICD9CM|Allescheriosis|Allescheriosis +C0153285|T047|PT|117.6|ICD9CM|Allescheriosis [Petriellidosis]|Allescheriosis [Petriellidosis] +C0043541|T047|AB|117.7|ICD9CM|Zygomycosis|Zygomycosis +C0043541|T047|PT|117.7|ICD9CM|Zygomycosis [Phycomycosis or Mucormycosis]|Zygomycosis [Phycomycosis or Mucormycosis] +C0276721|T047|AB|117.8|ICD9CM|Dematiacious fungi inf|Dematiacious fungi inf +C0276721|T047|PT|117.8|ICD9CM|Infection by dematiacious fungi [Phaehyphomycosis]|Infection by dematiacious fungi [Phaehyphomycosis] +C0029511|T047|AB|117.9|ICD9CM|Mycoses NEC & NOS|Mycoses NEC & NOS +C0029511|T047|PT|117.9|ICD9CM|Other and unspecified mycoses|Other and unspecified mycoses +C0029119|T047|AB|118|ICD9CM|Opportunistic mycoses|Opportunistic mycoses +C0029119|T047|PT|118|ICD9CM|Opportunistic mycoses|Opportunistic mycoses +C0036323|T047|HT|120|ICD9CM|Schistosomiasis [bilharziasis]|Schistosomiasis [bilharziasis] +C0018889|T047|HT|120-129.99|ICD9CM|HELMINTHIASES|HELMINTHIASES +C0276926|T047|AB|120.0|ICD9CM|Schistosoma haematobium|Schistosoma haematobium +C0276926|T047|PT|120.0|ICD9CM|Schistosomiasis due to schistosoma haematobium|Schistosomiasis due to schistosoma haematobium +C0036330|T047|AB|120.1|ICD9CM|Schistosoma mansoni|Schistosoma mansoni +C0036330|T047|PT|120.1|ICD9CM|Schistosomiasis due to schistosoma mansoni|Schistosomiasis due to schistosoma mansoni +C0036329|T047|AB|120.2|ICD9CM|Schistosoma japonicum|Schistosoma japonicum +C0036329|T047|PT|120.2|ICD9CM|Schistosomiasis due to schistosoma japonicum|Schistosomiasis due to schistosoma japonicum +C0546996|T047|AB|120.3|ICD9CM|Cutaneous schistosoma|Cutaneous schistosoma +C0546996|T047|PT|120.3|ICD9CM|Cutaneous schistosomiasis|Cutaneous schistosomiasis +C0029827|T047|PT|120.8|ICD9CM|Other specified schistosomiasis|Other specified schistosomiasis +C0029827|T047|AB|120.8|ICD9CM|Schistosomiasis NEC|Schistosomiasis NEC +C0036323|T047|AB|120.9|ICD9CM|Schistosomiasis NOS|Schistosomiasis NOS +C0036323|T047|PT|120.9|ICD9CM|Schistosomiasis, unspecified|Schistosomiasis, unspecified +C0153288|T047|HT|121|ICD9CM|Other trematode infections|Other trematode infections +C0029106|T047|AB|121.0|ICD9CM|Opisthorchiasis|Opisthorchiasis +C0029106|T047|PT|121.0|ICD9CM|Opisthorchiasis|Opisthorchiasis +C0009021|T047|AB|121.1|ICD9CM|Clonorchiasis|Clonorchiasis +C0009021|T047|PT|121.1|ICD9CM|Clonorchiasis|Clonorchiasis +C0030424|T047|AB|121.2|ICD9CM|Paragonimiasis|Paragonimiasis +C0030424|T047|PT|121.2|ICD9CM|Paragonimiasis|Paragonimiasis +C0015652|T047|AB|121.3|ICD9CM|Fascioliasis|Fascioliasis +C0015652|T047|PT|121.3|ICD9CM|Fascioliasis|Fascioliasis +C0015656|T047|AB|121.4|ICD9CM|Fasciolopsiasis|Fasciolopsiasis +C0015656|T047|PT|121.4|ICD9CM|Fasciolopsiasis|Fasciolopsiasis +C0025530|T047|AB|121.5|ICD9CM|Metagonimiasis|Metagonimiasis +C0025530|T047|PT|121.5|ICD9CM|Metagonimiasis|Metagonimiasis +C0152071|T047|AB|121.6|ICD9CM|Heterophyiasis|Heterophyiasis +C0152071|T047|PT|121.6|ICD9CM|Heterophyiasis|Heterophyiasis +C0029833|T047|PT|121.8|ICD9CM|Other specified trematode infections|Other specified trematode infections +C0029833|T047|AB|121.8|ICD9CM|Trematode infection NEC|Trematode infection NEC +C0040820|T047|AB|121.9|ICD9CM|Trematode infection NOS|Trematode infection NOS +C0040820|T047|PT|121.9|ICD9CM|Trematode infection, unspecified|Trematode infection, unspecified +C0013502|T047|HT|122|ICD9CM|Echinococcosis|Echinococcosis +C0153289|T047|AB|122.0|ICD9CM|Echinococc granul liver|Echinococc granul liver +C0153289|T047|PT|122.0|ICD9CM|Echinococcus granulosus infection of liver|Echinococcus granulosus infection of liver +C0153290|T047|AB|122.1|ICD9CM|Echinococc granul lung|Echinococc granul lung +C0153290|T047|PT|122.1|ICD9CM|Echinococcus granulosus infection of lung|Echinococcus granulosus infection of lung +C0153291|T047|AB|122.2|ICD9CM|Echinococc gran thyroid|Echinococc gran thyroid +C0153291|T047|PT|122.2|ICD9CM|Echinococcus granulosus infection of thyroid|Echinococcus granulosus infection of thyroid +C0153292|T047|AB|122.3|ICD9CM|Echinococc granul NEC|Echinococc granul NEC +C0153292|T047|PT|122.3|ICD9CM|Echinococcus granulosus infection, other|Echinococcus granulosus infection, other +C0152068|T047|AB|122.4|ICD9CM|Echinococc granul NOS|Echinococc granul NOS +C0152068|T047|PT|122.4|ICD9CM|Echinococcus granulosus infection, unspecified|Echinococcus granulosus infection, unspecified +C0153293|T047|AB|122.5|ICD9CM|Echinococ multiloc liver|Echinococ multiloc liver +C0153293|T047|PT|122.5|ICD9CM|Echinococcus multilocularis infection of liver|Echinococcus multilocularis infection of liver +C0277056|T047|AB|122.6|ICD9CM|Echinococc multiloc NEC|Echinococc multiloc NEC +C0277056|T047|PT|122.6|ICD9CM|Echinococcus multilocularis infection, other|Echinococcus multilocularis infection, other +C0152069|T047|AB|122.7|ICD9CM|Echinococc multiloc NOS|Echinococc multiloc NOS +C0152069|T047|PT|122.7|ICD9CM|Echinococcus multilocularis infection, unspecified|Echinococcus multilocularis infection, unspecified +C0013504|T047|AB|122.8|ICD9CM|Echinococcosis NOS liver|Echinococcosis NOS liver +C0013504|T047|PT|122.8|ICD9CM|Echinococcosis, unspecified, of liver|Echinococcosis, unspecified, of liver +C0348276|T047|AB|122.9|ICD9CM|Echinococcosis NEC/NOS|Echinococcosis NEC/NOS +C0348276|T047|PT|122.9|ICD9CM|Echinococcosis, other and unspecified|Echinococcosis, other and unspecified +C0153296|T047|HT|123|ICD9CM|Other cestode infection|Other cestode infection +C0473878|T047|PT|123.0|ICD9CM|Taenia solium infection, intestinal form|Taenia solium infection, intestinal form +C0473878|T047|AB|123.0|ICD9CM|Taenia solium intestine|Taenia solium intestine +C0010678|T047|AB|123.1|ICD9CM|Cysticercosis|Cysticercosis +C0010678|T047|PT|123.1|ICD9CM|Cysticercosis|Cysticercosis +C0152073|T047|AB|123.2|ICD9CM|Taenia saginata infect|Taenia saginata infect +C0152073|T047|PT|123.2|ICD9CM|Taenia saginata infection|Taenia saginata infection +C0039254|T047|AB|123.3|ICD9CM|Taeniasis NOS|Taeniasis NOS +C0039254|T047|PT|123.3|ICD9CM|Taeniasis, unspecified|Taeniasis, unspecified +C0012561|T047|AB|123.4|ICD9CM|Diphyllobothrias intest|Diphyllobothrias intest +C0012561|T047|PT|123.4|ICD9CM|Diphyllobothriasis, intestinal|Diphyllobothriasis, intestinal +C0037753|T047|AB|123.5|ICD9CM|Sparganosis|Sparganosis +C0037753|T047|PT|123.5|ICD9CM|Sparganosis [larval diphyllobothriasis]|Sparganosis [larval diphyllobothriasis] +C0020413|T047|AB|123.6|ICD9CM|Hymenolepiasis|Hymenolepiasis +C0020413|T047|PT|123.6|ICD9CM|Hymenolepiasis|Hymenolepiasis +C0029754|T047|AB|123.8|ICD9CM|Cestode infection NEC|Cestode infection NEC +C0029754|T047|PT|123.8|ICD9CM|Other specified cestode infection|Other specified cestode infection +C0007894|T047|AB|123.9|ICD9CM|Cestode infection NOS|Cestode infection NOS +C0007894|T047|PT|123.9|ICD9CM|Cestode infection, unspecified|Cestode infection, unspecified +C0040896|T047|AB|124|ICD9CM|Trichinosis|Trichinosis +C0040896|T047|PT|124|ICD9CM|Trichinosis|Trichinosis +C0153298|T047|HT|125|ICD9CM|Filarial infection and dracontiasis|Filarial infection and dracontiasis +C0392663|T047|AB|125.0|ICD9CM|Bancroftian filariasis|Bancroftian filariasis +C0392663|T047|PT|125.0|ICD9CM|Bancroftian filariasis|Bancroftian filariasis +C0152070|T047|AB|125.1|ICD9CM|Malayan filariasis|Malayan filariasis +C0152070|T047|PT|125.1|ICD9CM|Malayan filariasis|Malayan filariasis +C0023968|T047|AB|125.2|ICD9CM|Loiasis|Loiasis +C0023968|T047|PT|125.2|ICD9CM|Loiasis|Loiasis +C0029001|T047|AB|125.3|ICD9CM|Onchocerciasis|Onchocerciasis +C0029001|T047|PT|125.3|ICD9CM|Onchocerciasis|Onchocerciasis +C0012517|T047|AB|125.4|ICD9CM|Dipetalonemiasis|Dipetalonemiasis +C0012517|T047|PT|125.4|ICD9CM|Dipetalonemiasis|Dipetalonemiasis +C0016089|T047|AB|125.5|ICD9CM|Mansonella ozzardi infec|Mansonella ozzardi infec +C0016089|T047|PT|125.5|ICD9CM|Mansonella ozzardi infection|Mansonella ozzardi infection +C0029796|T047|AB|125.6|ICD9CM|Filariasis NEC|Filariasis NEC +C0029796|T047|PT|125.6|ICD9CM|Other specified filariasis|Other specified filariasis +C0013100|T047|AB|125.7|ICD9CM|Dracontiasis|Dracontiasis +C0013100|T047|PT|125.7|ICD9CM|Dracontiasis|Dracontiasis +C0016085|T047|AB|125.9|ICD9CM|Filariasis NOS|Filariasis NOS +C0016085|T047|PT|125.9|ICD9CM|Unspecified filariasis|Unspecified filariasis +C0411279|T047|HT|126|ICD9CM|Ancylostomiasis and necatoriasis|Ancylostomiasis and necatoriasis +C1384687|T047|AB|126.0|ICD9CM|Ancylostoma duodenale|Ancylostoma duodenale +C1384687|T047|PT|126.0|ICD9CM|Ancylostomiasis due to ancylostoma duodenale|Ancylostomiasis due to ancylostoma duodenale +C0027529|T047|AB|126.1|ICD9CM|Necator Americanus|Necator Americanus +C0027529|T047|PT|126.1|ICD9CM|Necatoriasis due to necator americanus|Necatoriasis due to necator americanus +C0153299|T047|AB|126.2|ICD9CM|Ancylostoma braziliense|Ancylostoma braziliense +C0153299|T047|PT|126.2|ICD9CM|Ancylostomiasis due to ancylostoma braziliense|Ancylostomiasis due to ancylostoma braziliense +C0277120|T047|AB|126.3|ICD9CM|Ancylostoma ceylanicum|Ancylostoma ceylanicum +C0277120|T047|PT|126.3|ICD9CM|Ancylostomiasis due to ancylostoma ceylanicum|Ancylostomiasis due to ancylostoma ceylanicum +C0546827|T047|AB|126.8|ICD9CM|Ancylostoma NEC|Ancylostoma NEC +C0546827|T047|PT|126.8|ICD9CM|Other specified ancylostoma|Other specified ancylostoma +C0411279|T047|PT|126.9|ICD9CM|Ancylostomiasis and necatoriasis, unspecified|Ancylostomiasis and necatoriasis, unspecified +C0411279|T047|AB|126.9|ICD9CM|Ancylostomiasis NOS|Ancylostomiasis NOS +C0153302|T047|HT|127|ICD9CM|Other intestinal helminthiases|Other intestinal helminthiases +C0003950|T047|AB|127.0|ICD9CM|Ascariasis|Ascariasis +C0003950|T047|PT|127.0|ICD9CM|Ascariasis|Ascariasis +C0162576|T047|AB|127.1|ICD9CM|Anisakiasis|Anisakiasis +C0162576|T047|PT|127.1|ICD9CM|Anisakiasis|Anisakiasis +C0038463|T047|AB|127.2|ICD9CM|Strongyloidiasis|Strongyloidiasis +C0038463|T047|PT|127.2|ICD9CM|Strongyloidiasis|Strongyloidiasis +C0040954|T047|AB|127.3|ICD9CM|Trichuriasis|Trichuriasis +C0040954|T047|PT|127.3|ICD9CM|Trichuriasis|Trichuriasis +C0086227|T047|AB|127.4|ICD9CM|Enterobiasis|Enterobiasis +C0086227|T047|PT|127.4|ICD9CM|Enterobiasis|Enterobiasis +C0006897|T047|AB|127.5|ICD9CM|Capillariasis|Capillariasis +C0006897|T047|PT|127.5|ICD9CM|Capillariasis|Capillariasis +C0040948|T047|AB|127.6|ICD9CM|Trichostrongyliasis|Trichostrongyliasis +C0040948|T047|PT|127.6|ICD9CM|Trichostrongyliasis|Trichostrongyliasis +C0029808|T047|AB|127.7|ICD9CM|Intest helminthiasis NEC|Intest helminthiasis NEC +C0029808|T047|PT|127.7|ICD9CM|Other specified intestinal helminthiasis|Other specified intestinal helminthiasis +C0153303|T047|PT|127.8|ICD9CM|Mixed intestinal helminthiasis|Mixed intestinal helminthiasis +C0153303|T047|AB|127.8|ICD9CM|Mixed intestine helminth|Mixed intestine helminth +C0348287|T047|AB|127.9|ICD9CM|Intest helminthiasis NOS|Intest helminthiasis NOS +C0348287|T047|PT|127.9|ICD9CM|Intestinal helminthiasis, unspecified|Intestinal helminthiasis, unspecified +C0494126|T047|HT|128|ICD9CM|Other and unspecified helminthiases|Other and unspecified helminthiases +C0040553|T047|AB|128.0|ICD9CM|Toxocariasis|Toxocariasis +C0040553|T047|PT|128.0|ICD9CM|Toxocariasis|Toxocariasis +C0018013|T047|AB|128.1|ICD9CM|Gnathostomiasis|Gnathostomiasis +C0018013|T047|PT|128.1|ICD9CM|Gnathostomiasis|Gnathostomiasis +C0029803|T047|AB|128.8|ICD9CM|Helminthiasis NEC|Helminthiasis NEC +C0029803|T047|PT|128.8|ICD9CM|Other specified helminthiasis|Other specified helminthiasis +C0018889|T047|PT|128.9|ICD9CM|Helminth infection, unspecified|Helminth infection, unspecified +C0018889|T047|AB|128.9|ICD9CM|Helminthiasis NOS|Helminthiasis NOS +C0021832|T047|AB|129|ICD9CM|Intestin parasitism NOS|Intestin parasitism NOS +C0021832|T047|PT|129|ICD9CM|Intestinal parasitism, unspecified|Intestinal parasitism, unspecified +C0040558|T047|HT|130|ICD9CM|Toxoplasmosis|Toxoplasmosis +C0153325|T047|HT|130-136.99|ICD9CM|OTHER INFECTIOUS AND PARASITIC DISEASES|OTHER INFECTIOUS AND PARASITIC DISEASES +C0085315|T047|PT|130.0|ICD9CM|Meningoencephalitis due to toxoplasmosis|Meningoencephalitis due to toxoplasmosis +C0085315|T047|AB|130.0|ICD9CM|Toxoplasm meningoenceph|Toxoplasm meningoenceph +C0153307|T047|PT|130.1|ICD9CM|Conjunctivitis due to toxoplasmosis|Conjunctivitis due to toxoplasmosis +C0153307|T047|AB|130.1|ICD9CM|Toxoplasm conjunctivitis|Toxoplasm conjunctivitis +C0153308|T047|PT|130.2|ICD9CM|Chorioretinitis due to toxoplasmosis|Chorioretinitis due to toxoplasmosis +C0153308|T047|AB|130.2|ICD9CM|Toxoplasm chorioretinit|Toxoplasm chorioretinit +C0276804|T047|PT|130.3|ICD9CM|Myocarditis due to toxoplasmosis|Myocarditis due to toxoplasmosis +C0276804|T047|AB|130.3|ICD9CM|Toxoplasma myocarditis|Toxoplasma myocarditis +C0339950|T047|PT|130.4|ICD9CM|Pneumonitis due to toxoplasmosis|Pneumonitis due to toxoplasmosis +C0339950|T047|AB|130.4|ICD9CM|Toxoplasma pneumonitis|Toxoplasma pneumonitis +C0400895|T047|PT|130.5|ICD9CM|Hepatitis due to toxoplasmosis|Hepatitis due to toxoplasmosis +C0400895|T047|AB|130.5|ICD9CM|Toxoplasma hepatitis|Toxoplasma hepatitis +C0153312|T047|PT|130.7|ICD9CM|Toxoplasmosis of other specified sites|Toxoplasmosis of other specified sites +C0153312|T047|AB|130.7|ICD9CM|Toxoplasmosis site NEC|Toxoplasmosis site NEC +C0343816|T047|AB|130.8|ICD9CM|Multisystem toxoplasmos|Multisystem toxoplasmos +C0343816|T047|PT|130.8|ICD9CM|Multisystemic disseminated toxoplasmosis|Multisystemic disseminated toxoplasmosis +C0040558|T047|AB|130.9|ICD9CM|Toxoplasmosis NOS|Toxoplasmosis NOS +C0040558|T047|PT|130.9|ICD9CM|Toxoplasmosis, unspecified|Toxoplasmosis, unspecified +C0040921|T047|HT|131|ICD9CM|Trichomoniasis|Trichomoniasis +C0040928|T047|HT|131.0|ICD9CM|Urogenital trichomoniasis|Urogenital trichomoniasis +C0040928|T047|AB|131.00|ICD9CM|Urogenital trichomon NOS|Urogenital trichomon NOS +C0040928|T047|PT|131.00|ICD9CM|Urogenital trichomoniasis, unspecified|Urogenital trichomoniasis, unspecified +C2945558|T047|AB|131.01|ICD9CM|Trichomonal vaginitis|Trichomonal vaginitis +C2945558|T047|PT|131.01|ICD9CM|Trichomonal vulvovaginitis|Trichomonal vulvovaginitis +C0153314|T047|AB|131.02|ICD9CM|Trichomonal urethritis|Trichomonal urethritis +C0153314|T047|PT|131.02|ICD9CM|Trichomonal urethritis|Trichomonal urethritis +C0153315|T047|AB|131.03|ICD9CM|Trichomonal prostatitis|Trichomonal prostatitis +C0153315|T047|PT|131.03|ICD9CM|Trichomonal prostatitis|Trichomonal prostatitis +C0153316|T047|PT|131.09|ICD9CM|Other urogenital trichomoniasis|Other urogenital trichomoniasis +C0153316|T047|AB|131.09|ICD9CM|Urogenital trichomon NEC|Urogenital trichomon NEC +C0040926|T047|AB|131.8|ICD9CM|Trichomoniasis NEC|Trichomoniasis NEC +C0040926|T047|PT|131.8|ICD9CM|Trichomoniasis of other specified sites|Trichomoniasis of other specified sites +C0040921|T047|AB|131.9|ICD9CM|Trichomoniasis NOS|Trichomoniasis NOS +C0040921|T047|PT|131.9|ICD9CM|Trichomoniasis, unspecified|Trichomoniasis, unspecified +C0153317|T047|HT|132|ICD9CM|Pediculosis and phthirus infestation|Pediculosis and phthirus infestation +C0030757|T047|AB|132.0|ICD9CM|Pediculus capitis|Pediculus capitis +C0030757|T047|PT|132.0|ICD9CM|Pediculus capitis [head louse]|Pediculus capitis [head louse] +C0030758|T047|AB|132.1|ICD9CM|Pediculus corporis|Pediculus corporis +C0030758|T047|PT|132.1|ICD9CM|Pediculus corporis [body louse]|Pediculus corporis [body louse] +C0030759|T047|AB|132.2|ICD9CM|Phthirus pubis|Phthirus pubis +C0030759|T047|PT|132.2|ICD9CM|Phthirus pubis [pubic louse]|Phthirus pubis [pubic louse] +C0277351|T047|AB|132.3|ICD9CM|Mixed pedicul & phthirus|Mixed pedicul & phthirus +C0277351|T047|PT|132.3|ICD9CM|Mixed pediculosis infestation|Mixed pediculosis infestation +C0030756|T047|AB|132.9|ICD9CM|Pediculosis NOS|Pediculosis NOS +C0030756|T047|PT|132.9|ICD9CM|Pediculosis, unspecified|Pediculosis, unspecified +C0026229|T047|HT|133|ICD9CM|Acariasis|Acariasis +C0036262|T047|AB|133.0|ICD9CM|Scabies|Scabies +C0036262|T047|PT|133.0|ICD9CM|Scabies|Scabies +C0029482|T047|AB|133.8|ICD9CM|Acariasis NEC|Acariasis NEC +C0029482|T047|PT|133.8|ICD9CM|Other acariasis|Other acariasis +C0026229|T047|AB|133.9|ICD9CM|Acariasis NOS|Acariasis NOS +C0026229|T047|PT|133.9|ICD9CM|Acariasis, unspecified|Acariasis, unspecified +C0153322|T047|HT|134|ICD9CM|Other infestation|Other infestation +C0027030|T047|AB|134.0|ICD9CM|Myiasis|Myiasis +C0027030|T047|PT|134.0|ICD9CM|Myiasis|Myiasis +C0153323|T047|AB|134.1|ICD9CM|Arthropod infest NEC|Arthropod infest NEC +C0153323|T047|PT|134.1|ICD9CM|Other arthropod infestation|Other arthropod infestation +C0019575|T047|AB|134.2|ICD9CM|Hirudiniasis|Hirudiniasis +C0019575|T047|PT|134.2|ICD9CM|Hirudiniasis|Hirudiniasis +C0153324|T047|AB|134.8|ICD9CM|Infestation NEC|Infestation NEC +C0153324|T047|PT|134.8|ICD9CM|Other specified infestations|Other specified infestations +C0851341|T047|AB|134.9|ICD9CM|Infestation NOS|Infestation NOS +C0851341|T047|PT|134.9|ICD9CM|Infestation, unspecified|Infestation, unspecified +C0036202|T047|AB|135|ICD9CM|Sarcoidosis|Sarcoidosis +C0036202|T047|PT|135|ICD9CM|Sarcoidosis|Sarcoidosis +C0153325|T047|HT|136|ICD9CM|Other and unspecified infectious and parasitic diseases|Other and unspecified infectious and parasitic diseases +C0001860|T047|AB|136.0|ICD9CM|Ainhum|Ainhum +C0001860|T047|PT|136.0|ICD9CM|Ainhum|Ainhum +C0004943|T047|AB|136.1|ICD9CM|Behcet's syndrome|Behcet's syndrome +C0004943|T047|PT|136.1|ICD9CM|Behcet's syndrome|Behcet's syndrome +C0153326|T047|HT|136.2|ICD9CM|Specific infections by free-living amebae|Specific infections by free-living amebae +C2349230|T047|AB|136.21|ICD9CM|Infectn d/t acanthamoeba|Infectn d/t acanthamoeba +C2349230|T047|PT|136.21|ICD9CM|Specific infection due to acanthamoeba|Specific infection due to acanthamoeba +C2349231|T047|AB|136.29|ICD9CM|Infc free-liv amebae NEC|Infc free-liv amebae NEC +C2349231|T047|PT|136.29|ICD9CM|Other specific infections by free-living amebae|Other specific infections by free-living amebae +C1535939|T047|AB|136.3|ICD9CM|Pneumocystosis|Pneumocystosis +C1535939|T047|PT|136.3|ICD9CM|Pneumocystosis|Pneumocystosis +C0153327|T047|AB|136.4|ICD9CM|Psorospermiasis|Psorospermiasis +C0153327|T047|PT|136.4|ICD9CM|Psorospermiasis|Psorospermiasis +C0036231|T047|AB|136.5|ICD9CM|Sarcosporidiosis|Sarcosporidiosis +C0036231|T047|PT|136.5|ICD9CM|Sarcosporidiosis|Sarcosporidiosis +C0153328|T047|AB|136.8|ICD9CM|Infect/parasite dis NEC|Infect/parasite dis NEC +C0153328|T047|PT|136.8|ICD9CM|Other specified infectious and parasitic diseases|Other specified infectious and parasitic diseases +C0041849|T047|AB|136.9|ICD9CM|Infect/parasite dis NOS|Infect/parasite dis NOS +C0041849|T047|PT|136.9|ICD9CM|Unspecified infectious and parasitic diseases|Unspecified infectious and parasitic diseases +C0153329|T046|HT|137|ICD9CM|Late effects of tuberculosis|Late effects of tuberculosis +C0348296|T047|HT|137-139.99|ICD9CM|LATE EFFECTS OF INFECTIOUS AND PARASITIC DISEASES|LATE EFFECTS OF INFECTIOUS AND PARASITIC DISEASES +C0343413|T047|AB|137.0|ICD9CM|Late effect tb, resp/NOS|Late effect tb, resp/NOS +C0343413|T047|PT|137.0|ICD9CM|Late effects of respiratory or unspecified tuberculosis|Late effects of respiratory or unspecified tuberculosis +C0153331|T046|AB|137.1|ICD9CM|Late effect cns TB|Late effect cns TB +C0153331|T046|PT|137.1|ICD9CM|Late effects of central nervous system tuberculosis|Late effects of central nervous system tuberculosis +C0343422|T046|AB|137.2|ICD9CM|Late effect gu TB|Late effect gu TB +C0343422|T046|PT|137.2|ICD9CM|Late effects of genitourinary tuberculosis|Late effects of genitourinary tuberculosis +C0153333|T046|AB|137.3|ICD9CM|Late eff bone & joint TB|Late eff bone & joint TB +C0153333|T046|PT|137.3|ICD9CM|Late effects of tuberculosis of bones and joints|Late effects of tuberculosis of bones and joints +C0153334|T046|AB|137.4|ICD9CM|Late effect TB NEC|Late effect TB NEC +C0153334|T046|PT|137.4|ICD9CM|Late effects of tuberculosis of other specified organs|Late effects of tuberculosis of other specified organs +C0362050|T046|AB|138|ICD9CM|Late effect acute polio|Late effect acute polio +C0362050|T046|PT|138|ICD9CM|Late effects of acute poliomyelitis|Late effects of acute poliomyelitis +C0153336|T046|HT|139|ICD9CM|Late effects of other infectious and parasitic diseases|Late effects of other infectious and parasitic diseases +C0153337|T046|AB|139.0|ICD9CM|Late eff viral encephal|Late eff viral encephal +C0153337|T046|PT|139.0|ICD9CM|Late effects of viral encephalitis|Late effects of viral encephalitis +C0153338|T047|AB|139.1|ICD9CM|Late effect of trachoma|Late effect of trachoma +C0153338|T047|PT|139.1|ICD9CM|Late effects of trachoma|Late effects of trachoma +C0153336|T046|AB|139.8|ICD9CM|Late eff infect dis NEC|Late eff infect dis NEC +C0153336|T046|PT|139.8|ICD9CM|Late effects of other and unspecified infectious and parasitic diseases|Late effects of other and unspecified infectious and parasitic diseases +C0153340|T191|HT|140|ICD9CM|Malignant neoplasm of lip|Malignant neoplasm of lip +C0178247|T191|HT|140-149.99|ICD9CM|MALIGNANT NEOPLASM OF LIP, ORAL CAVITY, AND PHARYNX|MALIGNANT NEOPLASM OF LIP, ORAL CAVITY, AND PHARYNX +C0027651|T191|HT|140-239.99|ICD9CM|NEOPLASMS|NEOPLASMS +C0474962|T191|AB|140.0|ICD9CM|Mal neo upper vermilion|Mal neo upper vermilion +C0474962|T191|PT|140.0|ICD9CM|Malignant neoplasm of upper lip, vermilion border|Malignant neoplasm of upper lip, vermilion border +C0432520|T191|AB|140.1|ICD9CM|Mal neo lower vermilion|Mal neo lower vermilion +C0432520|T191|PT|140.1|ICD9CM|Malignant neoplasm of lower lip, vermilion border|Malignant neoplasm of lower lip, vermilion border +C0432579|T191|AB|140.3|ICD9CM|Mal neo upper lip, inner|Mal neo upper lip, inner +C0432579|T191|PT|140.3|ICD9CM|Malignant neoplasm of upper lip, inner aspect|Malignant neoplasm of upper lip, inner aspect +C0733940|T191|AB|140.4|ICD9CM|Mal neo lower lip, inner|Mal neo lower lip, inner +C0733940|T191|PT|140.4|ICD9CM|Malignant neoplasm of lower lip, inner aspect|Malignant neoplasm of lower lip, inner aspect +C0474971|T191|AB|140.5|ICD9CM|Mal neo lip, inner NOS|Mal neo lip, inner NOS +C0474971|T191|PT|140.5|ICD9CM|Malignant neoplasm of lip, unspecified, inner aspect|Malignant neoplasm of lip, unspecified, inner aspect +C0153346|T191|AB|140.6|ICD9CM|Mal neo lip, commissure|Mal neo lip, commissure +C0153346|T191|PT|140.6|ICD9CM|Malignant neoplasm of commissure of lip|Malignant neoplasm of commissure of lip +C0153347|T191|AB|140.8|ICD9CM|Mal neo lip NEC|Mal neo lip NEC +C0153347|T191|PT|140.8|ICD9CM|Malignant neoplasm of other sites of lip|Malignant neoplasm of other sites of lip +C0546836|T191|AB|140.9|ICD9CM|Mal neo lip/vermil NOS|Mal neo lip/vermil NOS +C0546836|T191|PT|140.9|ICD9CM|Malignant neoplasm of lip, unspecified, vermilion border|Malignant neoplasm of lip, unspecified, vermilion border +C0153349|T191|HT|141|ICD9CM|Malignant neoplasm of tongue|Malignant neoplasm of tongue +C0153350|T191|AB|141.0|ICD9CM|Mal neo tongue base|Mal neo tongue base +C0153350|T191|PT|141.0|ICD9CM|Malignant neoplasm of base of tongue|Malignant neoplasm of base of tongue +C0153351|T191|AB|141.1|ICD9CM|Mal neo dorsal tongue|Mal neo dorsal tongue +C0153351|T191|PT|141.1|ICD9CM|Malignant neoplasm of dorsal surface of tongue|Malignant neoplasm of dorsal surface of tongue +C0496755|T191|AB|141.2|ICD9CM|Mal neo tip/lat tongue|Mal neo tip/lat tongue +C0496755|T191|PT|141.2|ICD9CM|Malignant neoplasm of tip and lateral border of tongue|Malignant neoplasm of tip and lateral border of tongue +C0684333|T191|AB|141.3|ICD9CM|Mal neo ventral tongue|Mal neo ventral tongue +C0684333|T191|PT|141.3|ICD9CM|Malignant neoplasm of ventral surface of tongue|Malignant neoplasm of ventral surface of tongue +C0153354|T191|AB|141.4|ICD9CM|Mal neo ant 2/3 tongue|Mal neo ant 2/3 tongue +C0153354|T191|PT|141.4|ICD9CM|Malignant neoplasm of anterior two-thirds of tongue, part unspecified|Malignant neoplasm of anterior two-thirds of tongue, part unspecified +C0474963|T191|AB|141.5|ICD9CM|Mal neo tongue junction|Mal neo tongue junction +C0474963|T191|PT|141.5|ICD9CM|Malignant neoplasm of junctional zone of tongue|Malignant neoplasm of junctional zone of tongue +C0153356|T191|AB|141.6|ICD9CM|Mal neo lingual tonsil|Mal neo lingual tonsil +C0153356|T191|PT|141.6|ICD9CM|Malignant neoplasm of lingual tonsil|Malignant neoplasm of lingual tonsil +C0153357|T191|AB|141.8|ICD9CM|Malig neo tongue NEC|Malig neo tongue NEC +C0153357|T191|PT|141.8|ICD9CM|Malignant neoplasm of other sites of tongue|Malignant neoplasm of other sites of tongue +C0153349|T191|AB|141.9|ICD9CM|Malig neo tongue NOS|Malig neo tongue NOS +C0153349|T191|PT|141.9|ICD9CM|Malignant neoplasm of tongue, unspecified|Malignant neoplasm of tongue, unspecified +C0496763|T191|HT|142|ICD9CM|Malignant neoplasm of major salivary glands|Malignant neoplasm of major salivary glands +C0747273|T191|AB|142.0|ICD9CM|Malig neo parotid|Malig neo parotid +C0747273|T191|PT|142.0|ICD9CM|Malignant neoplasm of parotid gland|Malignant neoplasm of parotid gland +C0153360|T191|AB|142.1|ICD9CM|Malig neo submandibular|Malig neo submandibular +C0153360|T191|PT|142.1|ICD9CM|Malignant neoplasm of submandibular gland|Malignant neoplasm of submandibular gland +C0153361|T191|AB|142.2|ICD9CM|Malig neo sublingual|Malig neo sublingual +C0153361|T191|PT|142.2|ICD9CM|Malignant neoplasm of sublingual gland|Malignant neoplasm of sublingual gland +C0153362|T191|AB|142.8|ICD9CM|Mal neo maj salivary NEC|Mal neo maj salivary NEC +C0153362|T191|PT|142.8|ICD9CM|Malignant neoplasm of other major salivary glands|Malignant neoplasm of other major salivary glands +C0220636|T191|AB|142.9|ICD9CM|Mal neo salivary NOS|Mal neo salivary NOS +C0220636|T191|PT|142.9|ICD9CM|Malignant neoplasm of salivary gland, unspecified|Malignant neoplasm of salivary gland, unspecified +C0153364|T191|HT|143|ICD9CM|Malignant neoplasm of gum|Malignant neoplasm of gum +C0153365|T191|AB|143.0|ICD9CM|Malig neo upper gum|Malig neo upper gum +C0153365|T191|PT|143.0|ICD9CM|Malignant neoplasm of upper gum|Malignant neoplasm of upper gum +C0432581|T191|AB|143.1|ICD9CM|Malig neo lower gum|Malig neo lower gum +C0432581|T191|PT|143.1|ICD9CM|Malignant neoplasm of lower gum|Malignant neoplasm of lower gum +C0153367|T191|AB|143.8|ICD9CM|Malig neo gum NEC|Malig neo gum NEC +C0153367|T191|PT|143.8|ICD9CM|Malignant neoplasm of other sites of gum|Malignant neoplasm of other sites of gum +C0153364|T191|AB|143.9|ICD9CM|Malig neo gum NOS|Malig neo gum NOS +C0153364|T191|PT|143.9|ICD9CM|Malignant neoplasm of gum, unspecified|Malignant neoplasm of gum, unspecified +C0153368|T191|HT|144|ICD9CM|Malignant neoplasm of floor of mouth|Malignant neoplasm of floor of mouth +C0153369|T191|AB|144.0|ICD9CM|Mal neo ant floor mouth|Mal neo ant floor mouth +C0153369|T191|PT|144.0|ICD9CM|Malignant neoplasm of anterior portion of floor of mouth|Malignant neoplasm of anterior portion of floor of mouth +C0496758|T191|AB|144.1|ICD9CM|Mal neo lat floor mouth|Mal neo lat floor mouth +C0496758|T191|PT|144.1|ICD9CM|Malignant neoplasm of lateral portion of floor of mouth|Malignant neoplasm of lateral portion of floor of mouth +C0153371|T191|AB|144.8|ICD9CM|Mal neo mouth floor NEC|Mal neo mouth floor NEC +C0153371|T191|PT|144.8|ICD9CM|Malignant neoplasm of other sites of floor of mouth|Malignant neoplasm of other sites of floor of mouth +C0153368|T191|AB|144.9|ICD9CM|Mal neo mouth floor NOS|Mal neo mouth floor NOS +C0153368|T191|PT|144.9|ICD9CM|Malignant neoplasm of floor of mouth, part unspecified|Malignant neoplasm of floor of mouth, part unspecified +C0153372|T191|HT|145|ICD9CM|Malignant neoplasm of other and unspecified parts of mouth|Malignant neoplasm of other and unspecified parts of mouth +C0153373|T191|AB|145.0|ICD9CM|Mal neo cheek mucosa|Mal neo cheek mucosa +C0153373|T191|PT|145.0|ICD9CM|Malignant neoplasm of cheek mucosa|Malignant neoplasm of cheek mucosa +C0153374|T191|AB|145.1|ICD9CM|Mal neo mouth vestibule|Mal neo mouth vestibule +C0153374|T191|PT|145.1|ICD9CM|Malignant neoplasm of vestibule of mouth|Malignant neoplasm of vestibule of mouth +C0153375|T191|AB|145.2|ICD9CM|Malig neo hard palate|Malig neo hard palate +C0153375|T191|PT|145.2|ICD9CM|Malignant neoplasm of hard palate|Malignant neoplasm of hard palate +C0153376|T191|AB|145.3|ICD9CM|Malig neo soft palate|Malig neo soft palate +C0153376|T191|PT|145.3|ICD9CM|Malignant neoplasm of soft palate|Malignant neoplasm of soft palate +C0153377|T191|PT|145.4|ICD9CM|Malignant neoplasm of uvula|Malignant neoplasm of uvula +C0153377|T191|AB|145.4|ICD9CM|Malignant neoplasm uvula|Malignant neoplasm uvula +C0153378|T191|AB|145.5|ICD9CM|Malignant neo palate NOS|Malignant neo palate NOS +C0153378|T191|PT|145.5|ICD9CM|Malignant neoplasm of palate, unspecified|Malignant neoplasm of palate, unspecified +C0153379|T191|AB|145.6|ICD9CM|Malig neo retromolar|Malig neo retromolar +C0153379|T191|PT|145.6|ICD9CM|Malignant neoplasm of retromolar area|Malignant neoplasm of retromolar area +C0153380|T191|AB|145.8|ICD9CM|Malig neoplasm mouth NEC|Malig neoplasm mouth NEC +C0153380|T191|PT|145.8|ICD9CM|Malignant neoplasm of other specified parts of mouth|Malignant neoplasm of other specified parts of mouth +C0153381|T191|AB|145.9|ICD9CM|Malig neoplasm mouth NOS|Malig neoplasm mouth NOS +C0153381|T191|PT|145.9|ICD9CM|Malignant neoplasm of mouth, unspecified|Malignant neoplasm of mouth, unspecified +C0153382|T191|HT|146|ICD9CM|Malignant neoplasm of oropharynx|Malignant neoplasm of oropharynx +C0751560|T191|AB|146.0|ICD9CM|Malignant neopl tonsil|Malignant neopl tonsil +C0751560|T191|PT|146.0|ICD9CM|Malignant neoplasm of tonsil|Malignant neoplasm of tonsil +C0153384|T191|AB|146.1|ICD9CM|Mal neo tonsillar fossa|Mal neo tonsillar fossa +C0153384|T191|PT|146.1|ICD9CM|Malignant neoplasm of tonsillar fossa|Malignant neoplasm of tonsillar fossa +C0153385|T191|AB|146.2|ICD9CM|Mal neo tonsil pillars|Mal neo tonsil pillars +C0153385|T191|PT|146.2|ICD9CM|Malignant neoplasm of tonsillar pillars (anterior) (posterior)|Malignant neoplasm of tonsillar pillars (anterior) (posterior) +C0153386|T191|AB|146.3|ICD9CM|Malign neopl vallecula|Malign neopl vallecula +C0153386|T191|PT|146.3|ICD9CM|Malignant neoplasm of vallecula epiglottica|Malignant neoplasm of vallecula epiglottica +C0496765|T191|AB|146.4|ICD9CM|Mal neo ant epiglottis|Mal neo ant epiglottis +C0496765|T191|PT|146.4|ICD9CM|Malignant neoplasm of anterior aspect of epiglottis|Malignant neoplasm of anterior aspect of epiglottis +C0153388|T191|AB|146.5|ICD9CM|Mal neo epiglottis junct|Mal neo epiglottis junct +C0153388|T191|PT|146.5|ICD9CM|Malignant neoplasm of junctional region of oropharynx|Malignant neoplasm of junctional region of oropharynx +C0153389|T191|AB|146.6|ICD9CM|Mal neo lat oropharynx|Mal neo lat oropharynx +C0153389|T191|PT|146.6|ICD9CM|Malignant neoplasm of lateral wall of oropharynx|Malignant neoplasm of lateral wall of oropharynx +C0153390|T191|AB|146.7|ICD9CM|Mal neo post oropharynx|Mal neo post oropharynx +C0153390|T191|PT|146.7|ICD9CM|Malignant neoplasm of posterior wall of oropharynx|Malignant neoplasm of posterior wall of oropharynx +C0153391|T191|AB|146.8|ICD9CM|Mal neo oropharynx NEC|Mal neo oropharynx NEC +C0153391|T191|PT|146.8|ICD9CM|Malignant neoplasm of other specified sites of oropharynx|Malignant neoplasm of other specified sites of oropharynx +C0153382|T191|AB|146.9|ICD9CM|Malig neo oropharynx NOS|Malig neo oropharynx NOS +C0153382|T191|PT|146.9|ICD9CM|Malignant neoplasm of oropharynx, unspecified site|Malignant neoplasm of oropharynx, unspecified site +C0153392|T191|HT|147|ICD9CM|Malignant neoplasm of nasopharynx|Malignant neoplasm of nasopharynx +C0153393|T191|AB|147.0|ICD9CM|Mal neo super nasopharyn|Mal neo super nasopharyn +C0153393|T191|PT|147.0|ICD9CM|Malignant neoplasm of superior wall of nasopharynx|Malignant neoplasm of superior wall of nasopharynx +C0153394|T191|AB|147.1|ICD9CM|Mal neo post nasopharynx|Mal neo post nasopharynx +C0153394|T191|PT|147.1|ICD9CM|Malignant neoplasm of posterior wall of nasopharynx|Malignant neoplasm of posterior wall of nasopharynx +C0153395|T191|AB|147.2|ICD9CM|Mal neo lat nasopharynx|Mal neo lat nasopharynx +C0153395|T191|PT|147.2|ICD9CM|Malignant neoplasm of lateral wall of nasopharynx|Malignant neoplasm of lateral wall of nasopharynx +C0153396|T191|AB|147.3|ICD9CM|Mal neo ant nasopharynx|Mal neo ant nasopharynx +C0153396|T191|PT|147.3|ICD9CM|Malignant neoplasm of anterior wall of nasopharynx|Malignant neoplasm of anterior wall of nasopharynx +C0153397|T191|AB|147.8|ICD9CM|Mal neo nasopharynx NEC|Mal neo nasopharynx NEC +C0153397|T191|PT|147.8|ICD9CM|Malignant neoplasm of other specified sites of nasopharynx|Malignant neoplasm of other specified sites of nasopharynx +C0153392|T191|AB|147.9|ICD9CM|Mal neo nasopharynx NOS|Mal neo nasopharynx NOS +C0153392|T191|PT|147.9|ICD9CM|Malignant neoplasm of nasopharynx, unspecified site|Malignant neoplasm of nasopharynx, unspecified site +C0153398|T191|HT|148|ICD9CM|Malignant neoplasm of hypopharynx|Malignant neoplasm of hypopharynx +C0496769|T191|AB|148.0|ICD9CM|Mal neo postcricoid|Mal neo postcricoid +C0496769|T191|PT|148.0|ICD9CM|Malignant neoplasm of postcricoid region of hypopharynx|Malignant neoplasm of postcricoid region of hypopharynx +C0153400|T191|AB|148.1|ICD9CM|Mal neo pyriform sinus|Mal neo pyriform sinus +C0153400|T191|PT|148.1|ICD9CM|Malignant neoplasm of pyriform sinus|Malignant neoplasm of pyriform sinus +C0153401|T191|AB|148.2|ICD9CM|Mal neo aryepiglott fold|Mal neo aryepiglott fold +C0153401|T191|PT|148.2|ICD9CM|Malignant neoplasm of aryepiglottic fold, hypopharyngeal aspect|Malignant neoplasm of aryepiglottic fold, hypopharyngeal aspect +C0496770|T191|AB|148.3|ICD9CM|Mal neo post hypopharynx|Mal neo post hypopharynx +C0496770|T191|PT|148.3|ICD9CM|Malignant neoplasm of posterior hypopharyngeal wall|Malignant neoplasm of posterior hypopharyngeal wall +C0153403|T191|AB|148.8|ICD9CM|Mal neo hypopharynx NEC|Mal neo hypopharynx NEC +C0153403|T191|PT|148.8|ICD9CM|Malignant neoplasm of other specified sites of hypopharynx|Malignant neoplasm of other specified sites of hypopharynx +C0153398|T191|AB|148.9|ICD9CM|Mal neo hypopharynx NOS|Mal neo hypopharynx NOS +C0153398|T191|PT|148.9|ICD9CM|Malignant neoplasm of hypopharynx, unspecified site|Malignant neoplasm of hypopharynx, unspecified site +C0153404|T191|HT|149|ICD9CM|Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx|Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx +C0153405|T191|AB|149.0|ICD9CM|Mal neo pharynx NOS|Mal neo pharynx NOS +C0153405|T191|PT|149.0|ICD9CM|Malignant neoplasm of pharynx, unspecified|Malignant neoplasm of pharynx, unspecified +C0153406|T191|AB|149.1|ICD9CM|Mal neo waldeyer's ring|Mal neo waldeyer's ring +C0153406|T191|PT|149.1|ICD9CM|Malignant neoplasm of waldeyer's ring|Malignant neoplasm of waldeyer's ring +C0153407|T191|AB|149.8|ICD9CM|Mal neo oral/pharynx NEC|Mal neo oral/pharynx NEC +C0153407|T191|PT|149.8|ICD9CM|Malignant neoplasm of other sites within the lip and oral cavity|Malignant neoplasm of other sites within the lip and oral cavity +C0153408|T191|AB|149.9|ICD9CM|Mal neo orophryn ill-def|Mal neo orophryn ill-def +C0153408|T191|PT|149.9|ICD9CM|Malignant neoplasm of ill-defined sites within the lip and oral cavity|Malignant neoplasm of ill-defined sites within the lip and oral cavity +C0546837|T191|HT|150|ICD9CM|Malignant neoplasm of esophagus|Malignant neoplasm of esophagus +C0555264|T191|HT|150-159.99|ICD9CM|MALIGNANT NEOPLASM OF DIGESTIVE ORGANS AND PERITONEUM|MALIGNANT NEOPLASM OF DIGESTIVE ORGANS AND PERITONEUM +C0496773|T191|AB|150.0|ICD9CM|Mal neo cervical esophag|Mal neo cervical esophag +C0496773|T191|PT|150.0|ICD9CM|Malignant neoplasm of cervical esophagus|Malignant neoplasm of cervical esophagus +C0153411|T191|AB|150.1|ICD9CM|Mal neo thoracic esophag|Mal neo thoracic esophag +C0153411|T191|PT|150.1|ICD9CM|Malignant neoplasm of thoracic esophagus|Malignant neoplasm of thoracic esophagus +C0496775|T191|AB|150.2|ICD9CM|Mal neo abdomin esophag|Mal neo abdomin esophag +C0496775|T191|PT|150.2|ICD9CM|Malignant neoplasm of abdominal esophagus|Malignant neoplasm of abdominal esophagus +C0153413|T191|AB|150.3|ICD9CM|Mal neo upper 3rd esoph|Mal neo upper 3rd esoph +C0153413|T191|PT|150.3|ICD9CM|Malignant neoplasm of upper third of esophagus|Malignant neoplasm of upper third of esophagus +C0153414|T191|AB|150.4|ICD9CM|Mal neo middle 3rd esoph|Mal neo middle 3rd esoph +C0153414|T191|PT|150.4|ICD9CM|Malignant neoplasm of middle third of esophagus|Malignant neoplasm of middle third of esophagus +C0153415|T191|AB|150.5|ICD9CM|Mal neo lower 3rd esoph|Mal neo lower 3rd esoph +C0153415|T191|PT|150.5|ICD9CM|Malignant neoplasm of lower third of esophagus|Malignant neoplasm of lower third of esophagus +C0153416|T191|AB|150.8|ICD9CM|Mal neo esophagus NEC|Mal neo esophagus NEC +C0153416|T191|PT|150.8|ICD9CM|Malignant neoplasm of other specified part of esophagus|Malignant neoplasm of other specified part of esophagus +C0546837|T191|AB|150.9|ICD9CM|Mal neo esophagus NOS|Mal neo esophagus NOS +C0546837|T191|PT|150.9|ICD9CM|Malignant neoplasm of esophagus, unspecified site|Malignant neoplasm of esophagus, unspecified site +C0024623|T191|HT|151|ICD9CM|Malignant neoplasm of stomach|Malignant neoplasm of stomach +C0153417|T191|AB|151.0|ICD9CM|Mal neo stomach cardia|Mal neo stomach cardia +C0153417|T191|PT|151.0|ICD9CM|Malignant neoplasm of cardia|Malignant neoplasm of cardia +C0153418|T191|AB|151.1|ICD9CM|Malignant neo pylorus|Malignant neo pylorus +C0153418|T191|PT|151.1|ICD9CM|Malignant neoplasm of pylorus|Malignant neoplasm of pylorus +C0153419|T191|AB|151.2|ICD9CM|Mal neo pyloric antrum|Mal neo pyloric antrum +C0153419|T191|PT|151.2|ICD9CM|Malignant neoplasm of pyloric antrum|Malignant neoplasm of pyloric antrum +C0153420|T191|AB|151.3|ICD9CM|Mal neo stomach fundus|Mal neo stomach fundus +C0153420|T191|PT|151.3|ICD9CM|Malignant neoplasm of fundus of stomach|Malignant neoplasm of fundus of stomach +C0153421|T191|AB|151.4|ICD9CM|Mal neo stomach body|Mal neo stomach body +C0153421|T191|PT|151.4|ICD9CM|Malignant neoplasm of body of stomach|Malignant neoplasm of body of stomach +C0153422|T191|AB|151.5|ICD9CM|Mal neo stom lesser curv|Mal neo stom lesser curv +C0153422|T191|PT|151.5|ICD9CM|Malignant neoplasm of lesser curvature of stomach, unspecified|Malignant neoplasm of lesser curvature of stomach, unspecified +C0153423|T191|AB|151.6|ICD9CM|Mal neo stom great curv|Mal neo stom great curv +C0153423|T191|PT|151.6|ICD9CM|Malignant neoplasm of greater curvature of stomach, unspecified|Malignant neoplasm of greater curvature of stomach, unspecified +C0153424|T191|AB|151.8|ICD9CM|Malig neopl stomach NEC|Malig neopl stomach NEC +C0153424|T191|PT|151.8|ICD9CM|Malignant neoplasm of other specified sites of stomach|Malignant neoplasm of other specified sites of stomach +C0024623|T191|AB|151.9|ICD9CM|Malig neopl stomach NOS|Malig neopl stomach NOS +C0024623|T191|PT|151.9|ICD9CM|Malignant neoplasm of stomach, unspecified site|Malignant neoplasm of stomach, unspecified site +C1112753|T191|HT|152|ICD9CM|Malignant neoplasm of small intestine, including duodenum|Malignant neoplasm of small intestine, including duodenum +C0153426|T191|AB|152.0|ICD9CM|Malignant neopl duodenum|Malignant neopl duodenum +C0153426|T191|PT|152.0|ICD9CM|Malignant neoplasm of duodenum|Malignant neoplasm of duodenum +C0153427|T191|AB|152.1|ICD9CM|Malignant neopl jejunum|Malignant neopl jejunum +C0153427|T191|PT|152.1|ICD9CM|Malignant neoplasm of jejunum|Malignant neoplasm of jejunum +C0153428|T191|AB|152.2|ICD9CM|Malignant neoplasm ileum|Malignant neoplasm ileum +C0153428|T191|PT|152.2|ICD9CM|Malignant neoplasm of ileum|Malignant neoplasm of ileum +C0153429|T191|AB|152.3|ICD9CM|Mal neo meckel's divert|Mal neo meckel's divert +C0153429|T191|PT|152.3|ICD9CM|Malignant neoplasm of Meckel's diverticulum|Malignant neoplasm of Meckel's diverticulum +C0153430|T191|AB|152.8|ICD9CM|Mal neo small bowel NEC|Mal neo small bowel NEC +C0153430|T191|PT|152.8|ICD9CM|Malignant neoplasm of other specified sites of small intestine|Malignant neoplasm of other specified sites of small intestine +C0153425|T191|AB|152.9|ICD9CM|Mal neo small bowel NOS|Mal neo small bowel NOS +C0153425|T191|PT|152.9|ICD9CM|Malignant neoplasm of small intestine, unspecified site|Malignant neoplasm of small intestine, unspecified site +C0007102|T191|HT|153|ICD9CM|Malignant neoplasm of colon|Malignant neoplasm of colon +C0153433|T191|AB|153.0|ICD9CM|Mal neo hepatic flexure|Mal neo hepatic flexure +C0153433|T191|PT|153.0|ICD9CM|Malignant neoplasm of hepatic flexure|Malignant neoplasm of hepatic flexure +C0153434|T191|AB|153.1|ICD9CM|Mal neo transverse colon|Mal neo transverse colon +C0153434|T191|PT|153.1|ICD9CM|Malignant neoplasm of transverse colon|Malignant neoplasm of transverse colon +C0153435|T191|AB|153.2|ICD9CM|Mal neo descend colon|Mal neo descend colon +C0153435|T191|PT|153.2|ICD9CM|Malignant neoplasm of descending colon|Malignant neoplasm of descending colon +C0153436|T191|AB|153.3|ICD9CM|Mal neo sigmoid colon|Mal neo sigmoid colon +C0153436|T191|PT|153.3|ICD9CM|Malignant neoplasm of sigmoid colon|Malignant neoplasm of sigmoid colon +C0153437|T191|AB|153.4|ICD9CM|Malignant neoplasm cecum|Malignant neoplasm cecum +C0153437|T191|PT|153.4|ICD9CM|Malignant neoplasm of cecum|Malignant neoplasm of cecum +C0496779|T191|AB|153.5|ICD9CM|Malignant neo appendix|Malignant neo appendix +C0496779|T191|PT|153.5|ICD9CM|Malignant neoplasm of appendix vermiformis|Malignant neoplasm of appendix vermiformis +C0153439|T191|AB|153.6|ICD9CM|Malig neo ascend colon|Malig neo ascend colon +C0153439|T191|PT|153.6|ICD9CM|Malignant neoplasm of ascending colon|Malignant neoplasm of ascending colon +C0153440|T191|AB|153.7|ICD9CM|Mal neo splenic flexure|Mal neo splenic flexure +C0153440|T191|PT|153.7|ICD9CM|Malignant neoplasm of splenic flexure|Malignant neoplasm of splenic flexure +C0153441|T191|AB|153.8|ICD9CM|Malignant neo colon NEC|Malignant neo colon NEC +C0153441|T191|PT|153.8|ICD9CM|Malignant neoplasm of other specified sites of large intestine|Malignant neoplasm of other specified sites of large intestine +C0007102|T191|AB|153.9|ICD9CM|Malignant neo colon NOS|Malignant neo colon NOS +C0007102|T191|PT|153.9|ICD9CM|Malignant neoplasm of colon, unspecified site|Malignant neoplasm of colon, unspecified site +C0153442|T191|HT|154|ICD9CM|Malignant neoplasm of rectum, rectosigmoid junction, and anus|Malignant neoplasm of rectum, rectosigmoid junction, and anus +C0153443|T191|AB|154.0|ICD9CM|Mal neo rectosigmoid jct|Mal neo rectosigmoid jct +C0153443|T191|PT|154.0|ICD9CM|Malignant neoplasm of rectosigmoid junction|Malignant neoplasm of rectosigmoid junction +C0949022|T191|AB|154.1|ICD9CM|Malignant neopl rectum|Malignant neopl rectum +C0949022|T191|PT|154.1|ICD9CM|Malignant neoplasm of rectum|Malignant neoplasm of rectum +C0153445|T191|AB|154.2|ICD9CM|Malig neopl anal canal|Malig neopl anal canal +C0153445|T191|PT|154.2|ICD9CM|Malignant neoplasm of anal canal|Malignant neoplasm of anal canal +C0153446|T191|AB|154.3|ICD9CM|Malignant neo anus NOS|Malignant neo anus NOS +C0153446|T191|PT|154.3|ICD9CM|Malignant neoplasm of anus, unspecified site|Malignant neoplasm of anus, unspecified site +C0153447|T191|AB|154.8|ICD9CM|Mal neo rectum/anus NEC|Mal neo rectum/anus NEC +C0153447|T191|PT|154.8|ICD9CM|Malignant neoplasm of other sites of rectum, rectosigmoid junction, and anus|Malignant neoplasm of other sites of rectum, rectosigmoid junction, and anus +C0153448|T191|HT|155|ICD9CM|Malignant neoplasm of liver and intrahepatic bile ducts|Malignant neoplasm of liver and intrahepatic bile ducts +C0024620|T191|AB|155.0|ICD9CM|Mal neo liver, primary|Mal neo liver, primary +C0024620|T191|PT|155.0|ICD9CM|Malignant neoplasm of liver, primary|Malignant neoplasm of liver, primary +C0546835|T191|AB|155.1|ICD9CM|Mal neo intrahepat ducts|Mal neo intrahepat ducts +C0546835|T191|PT|155.1|ICD9CM|Malignant neoplasm of intrahepatic bile ducts|Malignant neoplasm of intrahepatic bile ducts +C0345904|T191|AB|155.2|ICD9CM|Malignant neo liver NOS|Malignant neo liver NOS +C0345904|T191|PT|155.2|ICD9CM|Malignant neoplasm of liver, not specified as primary or secondary|Malignant neoplasm of liver, not specified as primary or secondary +C1306605|T191|HT|156|ICD9CM|Malignant neoplasm of gallbladder and extrahepatic bile ducts|Malignant neoplasm of gallbladder and extrahepatic bile ducts +C0153452|T191|AB|156.0|ICD9CM|Malig neo gallbladder|Malig neo gallbladder +C0153452|T191|PT|156.0|ICD9CM|Malignant neoplasm of gallbladder|Malignant neoplasm of gallbladder +C0153453|T191|AB|156.1|ICD9CM|Mal neo extrahepat ducts|Mal neo extrahepat ducts +C0153453|T191|PT|156.1|ICD9CM|Malignant neoplasm of extrahepatic bile ducts|Malignant neoplasm of extrahepatic bile ducts +C0153454|T191|AB|156.2|ICD9CM|Mal neo ampulla of vater|Mal neo ampulla of vater +C0153454|T191|PT|156.2|ICD9CM|Malignant neoplasm of ampulla of vater|Malignant neoplasm of ampulla of vater +C0153455|T191|AB|156.8|ICD9CM|Malig neo biliary NEC|Malig neo biliary NEC +C0153455|T191|PT|156.8|ICD9CM|Malignant neoplasm of other specified sites of gallbladder and extrahepatic bile ducts|Malignant neoplasm of other specified sites of gallbladder and extrahepatic bile ducts +C0750952|T191|AB|156.9|ICD9CM|Malig neo biliary NOS|Malig neo biliary NOS +C0750952|T191|PT|156.9|ICD9CM|Malignant neoplasm of biliary tract, part unspecified site|Malignant neoplasm of biliary tract, part unspecified site +C0346647|T191|HT|157|ICD9CM|Malignant neoplasm of pancreas|Malignant neoplasm of pancreas +C0153458|T191|AB|157.0|ICD9CM|Mal neo pancreas head|Mal neo pancreas head +C0153458|T191|PT|157.0|ICD9CM|Malignant neoplasm of head of pancreas|Malignant neoplasm of head of pancreas +C0153459|T191|AB|157.1|ICD9CM|Mal neo pancreas body|Mal neo pancreas body +C0153459|T191|PT|157.1|ICD9CM|Malignant neoplasm of body of pancreas|Malignant neoplasm of body of pancreas +C0153460|T191|AB|157.2|ICD9CM|Mal neo pancreas tail|Mal neo pancreas tail +C0153460|T191|PT|157.2|ICD9CM|Malignant neoplasm of tail of pancreas|Malignant neoplasm of tail of pancreas +C0153461|T191|AB|157.3|ICD9CM|Mal neo pancreatic duct|Mal neo pancreatic duct +C0153461|T191|PT|157.3|ICD9CM|Malignant neoplasm of pancreatic duct|Malignant neoplasm of pancreatic duct +C1328479|T191|AB|157.4|ICD9CM|Mal neo islet langerhans|Mal neo islet langerhans +C1328479|T191|PT|157.4|ICD9CM|Malignant neoplasm of islets of langerhans|Malignant neoplasm of islets of langerhans +C0153463|T191|AB|157.8|ICD9CM|Malig neo pancreas NEC|Malig neo pancreas NEC +C0153463|T191|PT|157.8|ICD9CM|Malignant neoplasm of other specified sites of pancreas|Malignant neoplasm of other specified sites of pancreas +C0346647|T191|AB|157.9|ICD9CM|Malig neo pancreas NOS|Malig neo pancreas NOS +C0346647|T191|PT|157.9|ICD9CM|Malignant neoplasm of pancreas, part unspecified|Malignant neoplasm of pancreas, part unspecified +C0153464|T191|HT|158|ICD9CM|Malignant neoplasm of retroperitoneum and peritoneum|Malignant neoplasm of retroperitoneum and peritoneum +C0153465|T191|AB|158.0|ICD9CM|Mal neo retroperitoneum|Mal neo retroperitoneum +C0153465|T191|PT|158.0|ICD9CM|Malignant neoplasm of retroperitoneum|Malignant neoplasm of retroperitoneum +C0153466|T191|AB|158.8|ICD9CM|Mal neo peritoneum NEC|Mal neo peritoneum NEC +C0153466|T191|PT|158.8|ICD9CM|Malignant neoplasm of specified parts of peritoneum|Malignant neoplasm of specified parts of peritoneum +C0153467|T191|AB|158.9|ICD9CM|Mal neo peritoneum NOS|Mal neo peritoneum NOS +C0153467|T191|PT|158.9|ICD9CM|Malignant neoplasm of peritoneum, unspecified|Malignant neoplasm of peritoneum, unspecified +C0153468|T191|HT|159|ICD9CM|Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum|Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum +C0346627|T191|AB|159.0|ICD9CM|Malig neo intestine NOS|Malig neo intestine NOS +C0346627|T191|PT|159.0|ICD9CM|Malignant neoplasm of intestinal tract, part unspecified|Malignant neoplasm of intestinal tract, part unspecified +C0869278|T191|AB|159.1|ICD9CM|Malignant neo spleen NEC|Malignant neo spleen NEC +C0869278|T191|PT|159.1|ICD9CM|Malignant neoplasm of spleen, not elsewhere classified|Malignant neoplasm of spleen, not elsewhere classified +C0153471|T191|AB|159.8|ICD9CM|Mal neo gi/intra-abd NEC|Mal neo gi/intra-abd NEC +C0153471|T191|PT|159.8|ICD9CM|Malignant neoplasm of other sites of digestive system and intra-abdominal organs|Malignant neoplasm of other sites of digestive system and intra-abdominal organs +C0153472|T191|AB|159.9|ICD9CM|Mal neo GI tract ill-def|Mal neo GI tract ill-def +C0153472|T191|PT|159.9|ICD9CM|Malignant neoplasm of ill-defined sites within the digestive organs and peritoneum|Malignant neoplasm of ill-defined sites within the digestive organs and peritoneum +C0153473|T191|HT|160|ICD9CM|Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses|Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses +C0178249|T191|HT|160-165.99|ICD9CM|MALIGNANT NEOPLASM OF RESPIRATORY AND INTRATHORACIC ORGANS|MALIGNANT NEOPLASM OF RESPIRATORY AND INTRATHORACIC ORGANS +C0728864|T191|AB|160.0|ICD9CM|Mal neo nasal cavities|Mal neo nasal cavities +C0728864|T191|PT|160.0|ICD9CM|Malignant neoplasm of nasal cavities|Malignant neoplasm of nasal cavities +C0153475|T191|AB|160.1|ICD9CM|Malig neo middle ear|Malig neo middle ear +C0153475|T191|PT|160.1|ICD9CM|Malignant neoplasm of auditory tube, middle ear, and mastoid air cells|Malignant neoplasm of auditory tube, middle ear, and mastoid air cells +C0153476|T191|AB|160.2|ICD9CM|Mal neo maxillary sinus|Mal neo maxillary sinus +C0153476|T191|PT|160.2|ICD9CM|Malignant neoplasm of maxillary sinus|Malignant neoplasm of maxillary sinus +C0153477|T191|AB|160.3|ICD9CM|Mal neo ethmoidal sinus|Mal neo ethmoidal sinus +C0153477|T191|PT|160.3|ICD9CM|Malignant neoplasm of ethmoidal sinus|Malignant neoplasm of ethmoidal sinus +C0153478|T191|AB|160.4|ICD9CM|Malig neo frontal sinus|Malig neo frontal sinus +C0153478|T191|PT|160.4|ICD9CM|Malignant neoplasm of frontal sinus|Malignant neoplasm of frontal sinus +C0153479|T191|AB|160.5|ICD9CM|Mal neo sphenoid sinus|Mal neo sphenoid sinus +C0153479|T191|PT|160.5|ICD9CM|Malignant neoplasm of sphenoidal sinus|Malignant neoplasm of sphenoidal sinus +C0153480|T191|AB|160.8|ICD9CM|Mal neo access sinus NEC|Mal neo access sinus NEC +C0153480|T191|PT|160.8|ICD9CM|Malignant neoplasm of other accessory sinuses|Malignant neoplasm of other accessory sinuses +C0153474|T191|AB|160.9|ICD9CM|Mal neo access sinus NOS|Mal neo access sinus NOS +C0153474|T191|PT|160.9|ICD9CM|Malignant neoplasm of accessory sinus, unspecified|Malignant neoplasm of accessory sinus, unspecified +C0007107|T191|HT|161|ICD9CM|Malignant neoplasm of larynx|Malignant neoplasm of larynx +C0153483|T191|AB|161.0|ICD9CM|Malignant neo glottis|Malignant neo glottis +C0153483|T191|PT|161.0|ICD9CM|Malignant neoplasm of glottis|Malignant neoplasm of glottis +C0153484|T191|AB|161.1|ICD9CM|Malig neo supraglottis|Malig neo supraglottis +C0153484|T191|PT|161.1|ICD9CM|Malignant neoplasm of supraglottis|Malignant neoplasm of supraglottis +C0153485|T191|AB|161.2|ICD9CM|Malig neo subglottis|Malig neo subglottis +C0153485|T191|PT|161.2|ICD9CM|Malignant neoplasm of subglottis|Malignant neoplasm of subglottis +C0153486|T191|AB|161.3|ICD9CM|Mal neo cartilage larynx|Mal neo cartilage larynx +C0153486|T191|PT|161.3|ICD9CM|Malignant neoplasm of laryngeal cartilages|Malignant neoplasm of laryngeal cartilages +C0153487|T191|AB|161.8|ICD9CM|Malignant neo larynx NEC|Malignant neo larynx NEC +C0153487|T191|PT|161.8|ICD9CM|Malignant neoplasm of other specified sites of larynx|Malignant neoplasm of other specified sites of larynx +C0007107|T191|AB|161.9|ICD9CM|Malignant neo larynx NOS|Malignant neo larynx NOS +C0007107|T191|PT|161.9|ICD9CM|Malignant neoplasm of larynx, unspecified|Malignant neoplasm of larynx, unspecified +C0153488|T191|HT|162|ICD9CM|Malignant neoplasm of trachea, bronchus, and lung|Malignant neoplasm of trachea, bronchus, and lung +C0153489|T191|AB|162.0|ICD9CM|Malignant neo trachea|Malignant neo trachea +C0153489|T191|PT|162.0|ICD9CM|Malignant neoplasm of trachea|Malignant neoplasm of trachea +C0153490|T191|AB|162.2|ICD9CM|Malig neo main bronchus|Malig neo main bronchus +C0153490|T191|PT|162.2|ICD9CM|Malignant neoplasm of main bronchus|Malignant neoplasm of main bronchus +C0024624|T191|AB|162.3|ICD9CM|Mal neo upper lobe lung|Mal neo upper lobe lung +C0024624|T191|PT|162.3|ICD9CM|Malignant neoplasm of upper lobe, bronchus or lung|Malignant neoplasm of upper lobe, bronchus or lung +C0153491|T191|AB|162.4|ICD9CM|Mal neo middle lobe lung|Mal neo middle lobe lung +C0153491|T191|PT|162.4|ICD9CM|Malignant neoplasm of middle lobe, bronchus or lung|Malignant neoplasm of middle lobe, bronchus or lung +C0153492|T191|AB|162.5|ICD9CM|Mal neo lower lobe lung|Mal neo lower lobe lung +C0153492|T191|PT|162.5|ICD9CM|Malignant neoplasm of lower lobe, bronchus or lung|Malignant neoplasm of lower lobe, bronchus or lung +C0153493|T191|AB|162.8|ICD9CM|Mal neo bronch/lung NEC|Mal neo bronch/lung NEC +C0153493|T191|PT|162.8|ICD9CM|Malignant neoplasm of other parts of bronchus or lung|Malignant neoplasm of other parts of bronchus or lung +C0348343|T191|AB|162.9|ICD9CM|Mal neo bronch/lung NOS|Mal neo bronch/lung NOS +C0348343|T191|PT|162.9|ICD9CM|Malignant neoplasm of bronchus and lung, unspecified|Malignant neoplasm of bronchus and lung, unspecified +C0153494|T191|HT|163|ICD9CM|Malignant neoplasm of pleura|Malignant neoplasm of pleura +C2004481|T191|AB|163.0|ICD9CM|Mal neo parietal pleura|Mal neo parietal pleura +C2004481|T191|PT|163.0|ICD9CM|Malignant neoplasm of parietal pleura|Malignant neoplasm of parietal pleura +C2607950|T191|AB|163.1|ICD9CM|Mal neo visceral pleura|Mal neo visceral pleura +C2607950|T191|PT|163.1|ICD9CM|Malignant neoplasm of visceral pleura|Malignant neoplasm of visceral pleura +C0153497|T191|AB|163.8|ICD9CM|Malig neopl pleura NEC|Malig neopl pleura NEC +C0153497|T191|PT|163.8|ICD9CM|Malignant neoplasm of other specified sites of pleura|Malignant neoplasm of other specified sites of pleura +C0153494|T191|AB|163.9|ICD9CM|Malig neopl pleura NOS|Malig neopl pleura NOS +C0153494|T191|PT|163.9|ICD9CM|Malignant neoplasm of pleura, unspecified|Malignant neoplasm of pleura, unspecified +C0153498|T191|HT|164|ICD9CM|Malignant neoplasm of thymus, heart, and mediastinum|Malignant neoplasm of thymus, heart, and mediastinum +C0751552|T191|AB|164.0|ICD9CM|Malignant neopl thymus|Malignant neopl thymus +C0751552|T191|PT|164.0|ICD9CM|Malignant neoplasm of thymus|Malignant neoplasm of thymus +C0153500|T191|AB|164.1|ICD9CM|Malignant neopl heart|Malignant neopl heart +C0153500|T191|PT|164.1|ICD9CM|Malignant neoplasm of heart|Malignant neoplasm of heart +C0153501|T191|AB|164.2|ICD9CM|Mal neo ant mediastinum|Mal neo ant mediastinum +C0153501|T191|PT|164.2|ICD9CM|Malignant neoplasm of anterior mediastinum|Malignant neoplasm of anterior mediastinum +C0153502|T191|AB|164.3|ICD9CM|Mal neo post mediastinum|Mal neo post mediastinum +C0153502|T191|PT|164.3|ICD9CM|Malignant neoplasm of posterior mediastinum|Malignant neoplasm of posterior mediastinum +C0153503|T191|AB|164.8|ICD9CM|Mal neo mediastinum NEC|Mal neo mediastinum NEC +C0153503|T191|PT|164.8|ICD9CM|Malignant neoplasm of other parts of mediastinum|Malignant neoplasm of other parts of mediastinum +C0153504|T191|AB|164.9|ICD9CM|Mal neo mediastinum NOS|Mal neo mediastinum NOS +C0153504|T191|PT|164.9|ICD9CM|Malignant neoplasm of mediastinum, part unspecified|Malignant neoplasm of mediastinum, part unspecified +C0153506|T191|AB|165.0|ICD9CM|Mal neo upper resp NOS|Mal neo upper resp NOS +C0153506|T191|PT|165.0|ICD9CM|Malignant neoplasm of upper respiratory tract, part unspecified|Malignant neoplasm of upper respiratory tract, part unspecified +C0153507|T191|AB|165.8|ICD9CM|Mal neo thorax/resp NEC|Mal neo thorax/resp NEC +C0153507|T191|PT|165.8|ICD9CM|Malignant neoplasm of other sites within the respiratory system and intrathoracic organs|Malignant neoplasm of other sites within the respiratory system and intrathoracic organs +C0153508|T191|AB|165.9|ICD9CM|Mal neo resp system NOS|Mal neo resp system NOS +C0153508|T191|PT|165.9|ICD9CM|Malignant neoplasm of ill-defined sites within the respiratory system|Malignant neoplasm of ill-defined sites within the respiratory system +C0153509|T191|HT|170|ICD9CM|Malignant neoplasm of bone and articular cartilage|Malignant neoplasm of bone and articular cartilage +C0178250|T191|HT|170-176.99|ICD9CM|MALIGNANT NEOPLASM OF BONE, CONNECTIVE TISSUE, SKIN, AND BREAST|MALIGNANT NEOPLASM OF BONE, CONNECTIVE TISSUE, SKIN, AND BREAST +C0153510|T191|AB|170.0|ICD9CM|Mal neo skull/face bone|Mal neo skull/face bone +C0153510|T191|PT|170.0|ICD9CM|Malignant neoplasm of bones of skull and face, except mandible|Malignant neoplasm of bones of skull and face, except mandible +C0153511|T191|AB|170.1|ICD9CM|Malignant neo mandible|Malignant neo mandible +C0153511|T191|PT|170.1|ICD9CM|Malignant neoplasm of mandible|Malignant neoplasm of mandible +C0153512|T191|AB|170.2|ICD9CM|Malig neo vertebrae|Malig neo vertebrae +C0153512|T191|PT|170.2|ICD9CM|Malignant neoplasm of vertebral column, excluding sacrum and coccyx|Malignant neoplasm of vertebral column, excluding sacrum and coccyx +C0153513|T191|AB|170.3|ICD9CM|Mal neo ribs/stern/clav|Mal neo ribs/stern/clav +C0153513|T191|PT|170.3|ICD9CM|Malignant neoplasm of ribs, sternum, and clavicle|Malignant neoplasm of ribs, sternum, and clavicle +C0153514|T191|AB|170.4|ICD9CM|Mal neo long bones arm|Mal neo long bones arm +C0153514|T191|PT|170.4|ICD9CM|Malignant neoplasm of scapula and long bones of upper limb|Malignant neoplasm of scapula and long bones of upper limb +C0153515|T191|AB|170.5|ICD9CM|Mal neo bones wrist/hand|Mal neo bones wrist/hand +C0153515|T191|PT|170.5|ICD9CM|Malignant neoplasm of short bones of upper limb|Malignant neoplasm of short bones of upper limb +C0153516|T191|AB|170.6|ICD9CM|Mal neo pelvic girdle|Mal neo pelvic girdle +C0153516|T191|PT|170.6|ICD9CM|Malignant neoplasm of pelvic bones, sacrum, and coccyx|Malignant neoplasm of pelvic bones, sacrum, and coccyx +C0153517|T191|AB|170.7|ICD9CM|Mal neo long bones leg|Mal neo long bones leg +C0153517|T191|PT|170.7|ICD9CM|Malignant neoplasm of long bones of lower limb|Malignant neoplasm of long bones of lower limb +C0153518|T191|AB|170.8|ICD9CM|Mal neo bones ankle/foot|Mal neo bones ankle/foot +C0153518|T191|PT|170.8|ICD9CM|Malignant neoplasm of short bones of lower limb|Malignant neoplasm of short bones of lower limb +C0153509|T191|AB|170.9|ICD9CM|Malig neopl bone NOS|Malig neopl bone NOS +C0153509|T191|PT|170.9|ICD9CM|Malignant neoplasm of bone and articular cartilage, site unspecified|Malignant neoplasm of bone and articular cartilage, site unspecified +C0153519|T191|HT|171|ICD9CM|Malignant neoplasm of connective and other soft tissue|Malignant neoplasm of connective and other soft tissue +C0153520|T191|AB|171.0|ICD9CM|Mal neo soft tissue head|Mal neo soft tissue head +C0153520|T191|PT|171.0|ICD9CM|Malignant neoplasm of connective and other soft tissue of head, face, and neck|Malignant neoplasm of connective and other soft tissue of head, face, and neck +C0153521|T191|AB|171.2|ICD9CM|Mal neo soft tissue arm|Mal neo soft tissue arm +C0153521|T191|PT|171.2|ICD9CM|Malignant neoplasm of connective and other soft tissue of upper limb, including shoulder|Malignant neoplasm of connective and other soft tissue of upper limb, including shoulder +C0153522|T191|AB|171.3|ICD9CM|Mal neo soft tissue leg|Mal neo soft tissue leg +C0153522|T191|PT|171.3|ICD9CM|Malignant neoplasm of connective and other soft tissue of lower limb, including hip|Malignant neoplasm of connective and other soft tissue of lower limb, including hip +C0153523|T191|AB|171.4|ICD9CM|Mal neo soft tis thorax|Mal neo soft tis thorax +C0153523|T191|PT|171.4|ICD9CM|Malignant neoplasm of connective and other soft tissue of thorax|Malignant neoplasm of connective and other soft tissue of thorax +C0153524|T191|AB|171.5|ICD9CM|Mal neo soft tis abdomen|Mal neo soft tis abdomen +C0153524|T191|PT|171.5|ICD9CM|Malignant neoplasm of connective and other soft tissue of abdomen|Malignant neoplasm of connective and other soft tissue of abdomen +C0153525|T191|AB|171.6|ICD9CM|Mal neo soft tis pelvis|Mal neo soft tis pelvis +C0153525|T191|PT|171.6|ICD9CM|Malignant neoplasm of connective and other soft tissue of pelvis|Malignant neoplasm of connective and other soft tissue of pelvis +C0375065|T191|AB|171.7|ICD9CM|Mal neopl trunk NOS|Mal neopl trunk NOS +C0375065|T191|PT|171.7|ICD9CM|Malignant neoplasm of connective and other soft tissue of trunk, unspecified|Malignant neoplasm of connective and other soft tissue of trunk, unspecified +C0153527|T191|AB|171.8|ICD9CM|Mal neo soft tissue NEC|Mal neo soft tissue NEC +C0153527|T191|PT|171.8|ICD9CM|Malignant neoplasm of other specified sites of connective and other soft tissue|Malignant neoplasm of other specified sites of connective and other soft tissue +C0153519|T191|AB|171.9|ICD9CM|Mal neo soft tissue NOS|Mal neo soft tissue NOS +C0153519|T191|PT|171.9|ICD9CM|Malignant neoplasm of connective and other soft tissue, site unspecified|Malignant neoplasm of connective and other soft tissue, site unspecified +C0151779|T191|HT|172|ICD9CM|Malignant melanoma of skin|Malignant melanoma of skin +C0153529|T191|AB|172.0|ICD9CM|Malig melanoma lip|Malig melanoma lip +C0153529|T191|PT|172.0|ICD9CM|Malignant melanoma of skin of lip|Malignant melanoma of skin of lip +C3665588|T191|AB|172.1|ICD9CM|Malig melanoma eyelid|Malig melanoma eyelid +C3665588|T191|PT|172.1|ICD9CM|Malignant melanoma of skin of eyelid, including canthus|Malignant melanoma of skin of eyelid, including canthus +C0346773|T191|AB|172.2|ICD9CM|Malig melanoma ear|Malig melanoma ear +C0346773|T191|PT|172.2|ICD9CM|Malignant melanoma of skin of ear and external auditory canal|Malignant melanoma of skin of ear and external auditory canal +C0153532|T191|AB|172.3|ICD9CM|Mal melanom face NEC/NOS|Mal melanom face NEC/NOS +C0153532|T191|PT|172.3|ICD9CM|Malignant melanoma of skin of other and unspecified parts of face|Malignant melanoma of skin of other and unspecified parts of face +C0346782|T191|AB|172.4|ICD9CM|Mal melanoma scalp/neck|Mal melanoma scalp/neck +C0346782|T191|PT|172.4|ICD9CM|Malignant melanoma of skin of scalp and neck|Malignant melanoma of skin of scalp and neck +C1112782|T191|AB|172.5|ICD9CM|Malig melanoma trunk|Malig melanoma trunk +C1112782|T191|PT|172.5|ICD9CM|Malignant melanoma of skin of trunk, except scrotum|Malignant melanoma of skin of trunk, except scrotum +C1112533|T191|AB|172.6|ICD9CM|Malig melanoma arm|Malig melanoma arm +C1112533|T191|PT|172.6|ICD9CM|Malignant melanoma of skin of upper limb, including shoulder|Malignant melanoma of skin of upper limb, including shoulder +C1112532|T191|AB|172.7|ICD9CM|Malig melanoma leg|Malig melanoma leg +C1112532|T191|PT|172.7|ICD9CM|Malignant melanoma of skin of lower limb, including hip|Malignant melanoma of skin of lower limb, including hip +C0153537|T191|AB|172.8|ICD9CM|Malig melanoma skin NEC|Malig melanoma skin NEC +C0153537|T191|PT|172.8|ICD9CM|Malignant melanoma of other specified sites of skin|Malignant melanoma of other specified sites of skin +C0151779|T191|AB|172.9|ICD9CM|Malig melanoma skin NOS|Malig melanoma skin NOS +C0151779|T191|PT|172.9|ICD9CM|Melanoma of skin, site unspecified|Melanoma of skin, site unspecified +C3161362|T191|HT|173|ICD9CM|Other and unspecified malignant neoplasm of skin|Other and unspecified malignant neoplasm of skin +C0153539|T191|HT|173.0|ICD9CM|Other malignant neoplasm of skin of lip|Other malignant neoplasm of skin of lip +C3161037|T191|AB|173.00|ICD9CM|Malig neopl skin lip NOS|Malig neopl skin lip NOS +C3161037|T191|PT|173.00|ICD9CM|Unspecified malignant neoplasm of skin of lip|Unspecified malignant neoplasm of skin of lip +C1274259|T191|AB|173.01|ICD9CM|Basal cell ca skin lip|Basal cell ca skin lip +C1274259|T191|PT|173.01|ICD9CM|Basal cell carcinoma of skin of lip|Basal cell carcinoma of skin of lip +C3161038|T191|AB|173.02|ICD9CM|Squamous cell ca skn lip|Squamous cell ca skn lip +C3161038|T191|PT|173.02|ICD9CM|Squamous cell carcinoma of skin of lip|Squamous cell carcinoma of skin of lip +C3161039|T191|AB|173.09|ICD9CM|Malig neo skin lip NEC|Malig neo skin lip NEC +C3161039|T191|PT|173.09|ICD9CM|Other specified malignant neoplasm of skin of lip|Other specified malignant neoplasm of skin of lip +C3161363|T191|HT|173.1|ICD9CM|Other and unspecified malignant neoplasm of skin of eyelid, including canthus|Other and unspecified malignant neoplasm of skin of eyelid, including canthus +C3161040|T191|AB|173.10|ICD9CM|Mal neo eyelid/canth NOS|Mal neo eyelid/canth NOS +C3161040|T191|PT|173.10|ICD9CM|Unspecified malignant neoplasm of eyelid, including canthus|Unspecified malignant neoplasm of eyelid, including canthus +C3161041|T191|AB|173.11|ICD9CM|Basal cell ca lid/canth|Basal cell ca lid/canth +C3161041|T191|PT|173.11|ICD9CM|Basal cell carcinoma of eyelid, including canthus|Basal cell carcinoma of eyelid, including canthus +C3161042|T191|AB|173.12|ICD9CM|Squam cell ca lid/canth|Squam cell ca lid/canth +C3161042|T191|PT|173.12|ICD9CM|Squamous cell carcinoma of eyelid, including canthus|Squamous cell carcinoma of eyelid, including canthus +C3161043|T191|AB|173.19|ICD9CM|Mal neo eyelid/canth NEC|Mal neo eyelid/canth NEC +C3161043|T191|PT|173.19|ICD9CM|Other specified malignant neoplasm of eyelid, including canthus|Other specified malignant neoplasm of eyelid, including canthus +C3161364|T191|HT|173.2|ICD9CM|Other and unspecified malignant neoplasm of skin of ear and external auditory canal|Other and unspecified malignant neoplasm of skin of ear and external auditory canal +C3161044|T191|AB|173.20|ICD9CM|Malig neo skin ear NOS|Malig neo skin ear NOS +C3161044|T191|PT|173.20|ICD9CM|Unspecified malignant neoplasm of skin of ear and external auditory canal|Unspecified malignant neoplasm of skin of ear and external auditory canal +C3161045|T191|AB|173.21|ICD9CM|Basal cell ca skin ear|Basal cell ca skin ear +C3161045|T191|PT|173.21|ICD9CM|Basal cell carcinoma of skin of ear and external auditory canal|Basal cell carcinoma of skin of ear and external auditory canal +C3161046|T191|AB|173.22|ICD9CM|Squam cell ca skin ear|Squam cell ca skin ear +C3161046|T191|PT|173.22|ICD9CM|Squamous cell carcinoma of skin of ear and external auditory canal|Squamous cell carcinoma of skin of ear and external auditory canal +C3161047|T191|AB|173.29|ICD9CM|Neo skin ear/ex canl NEC|Neo skin ear/ex canl NEC +C3161047|T191|PT|173.29|ICD9CM|Other specified malignant neoplasm of skin of ear and external auditory canal|Other specified malignant neoplasm of skin of ear and external auditory canal +C3161365|T191|HT|173.3|ICD9CM|Other and unspecified malignant neoplasm of skin of other and unspecified parts of face|Other and unspecified malignant neoplasm of skin of other and unspecified parts of face +C3161048|T047|AB|173.30|ICD9CM|Mal neo skn face NEC/NOS|Mal neo skn face NEC/NOS +C3161048|T047|PT|173.30|ICD9CM|Unspecified malignant neoplasm of skin of other and unspecified parts of face|Unspecified malignant neoplasm of skin of other and unspecified parts of face +C3161049|T191|PT|173.31|ICD9CM|Basal cell carcinoma of skin of other and unspecified parts of face|Basal cell carcinoma of skin of other and unspecified parts of face +C3161049|T191|AB|173.31|ICD9CM|Bsl cel skn face NEC/NOS|Bsl cel skn face NEC/NOS +C3161050|T191|AB|173.32|ICD9CM|Sqm cel skn face NEC/NOS|Sqm cel skn face NEC/NOS +C3161050|T191|PT|173.32|ICD9CM|Squamous cell carcinoma of skin of other and unspecified parts of face|Squamous cell carcinoma of skin of other and unspecified parts of face +C3161048|T047|AB|173.39|ICD9CM|Mal neo skn face NEC/NOS|Mal neo skn face NEC/NOS +C3161048|T047|PT|173.39|ICD9CM|Other specified malignant neoplasm of skin of other and unspecified parts of face|Other specified malignant neoplasm of skin of other and unspecified parts of face +C3161366|T191|HT|173.4|ICD9CM|Other and unspecified malignant neoplasm of scalp and skin of neck|Other and unspecified malignant neoplasm of scalp and skin of neck +C3161051|T191|AB|173.40|ICD9CM|Mal neo sclp/skn nck NOS|Mal neo sclp/skn nck NOS +C3161051|T191|PT|173.40|ICD9CM|Unspecified malignant neoplasm of scalp and skin of neck|Unspecified malignant neoplasm of scalp and skin of neck +C3161052|T191|PT|173.41|ICD9CM|Basal cell carcinoma of scalp and skin of neck|Basal cell carcinoma of scalp and skin of neck +C3161052|T191|AB|173.41|ICD9CM|Bsl cell ca scalp/skn nk|Bsl cell ca scalp/skn nk +C3161053|T191|AB|173.42|ICD9CM|Sqam cell ca sclp/skn nk|Sqam cell ca sclp/skn nk +C3161053|T191|PT|173.42|ICD9CM|Squamous cell carcinoma of scalp and skin of neck|Squamous cell carcinoma of scalp and skin of neck +C3161054|T191|AB|173.49|ICD9CM|Mal neo sclp/skn nck NEC|Mal neo sclp/skn nck NEC +C3161054|T191|PT|173.49|ICD9CM|Other specified malignant neoplasm of scalp and skin of neck|Other specified malignant neoplasm of scalp and skin of neck +C3161367|T191|HT|173.5|ICD9CM|Other and unspecified malignant neoplasm of skin of trunk, except scrotum|Other and unspecified malignant neoplasm of skin of trunk, except scrotum +C3161055|T191|AB|173.50|ICD9CM|Malig neo skin trunk NOS|Malig neo skin trunk NOS +C3161055|T191|PT|173.50|ICD9CM|Unspecified malignant neoplasm of skin of trunk, except scrotum|Unspecified malignant neoplasm of skin of trunk, except scrotum +C3161056|T191|AB|173.51|ICD9CM|Basal cell ca skin trunk|Basal cell ca skin trunk +C3161056|T191|PT|173.51|ICD9CM|Basal cell carcinoma of skin of trunk, except scrotum|Basal cell carcinoma of skin of trunk, except scrotum +C3161057|T191|AB|173.52|ICD9CM|Squam cell ca skin trunk|Squam cell ca skin trunk +C3161057|T191|PT|173.52|ICD9CM|Squamous cell carcinoma of skin of trunk, except scrotum|Squamous cell carcinoma of skin of trunk, except scrotum +C3161058|T191|AB|173.59|ICD9CM|Malig neo skin trunk NEC|Malig neo skin trunk NEC +C3161058|T191|PT|173.59|ICD9CM|Other specified malignant neoplasm of skin of trunk, except scrotum|Other specified malignant neoplasm of skin of trunk, except scrotum +C3161368|T191|HT|173.6|ICD9CM|Other and unspecified malignant neoplasm of skin of upper limb, including shoulder|Other and unspecified malignant neoplasm of skin of upper limb, including shoulder +C2838014|T191|AB|173.60|ICD9CM|Mal neo skin up limb NOS|Mal neo skin up limb NOS +C2838014|T191|PT|173.60|ICD9CM|Unspecified malignant neoplasm of skin of upper limb, including shoulder|Unspecified malignant neoplasm of skin of upper limb, including shoulder +C3161059|T191|AB|173.61|ICD9CM|Basal cell ca skn up lmb|Basal cell ca skn up lmb +C3161059|T191|PT|173.61|ICD9CM|Basal cell carcinoma of skin of upper limb, including shoulder|Basal cell carcinoma of skin of upper limb, including shoulder +C3161060|T191|AB|173.62|ICD9CM|Squam cell ca skn up lmb|Squam cell ca skn up lmb +C3161060|T191|PT|173.62|ICD9CM|Squamous cell carcinoma of skin of upper limb, including shoulder|Squamous cell carcinoma of skin of upper limb, including shoulder +C3161061|T191|AB|173.69|ICD9CM|Malig neo skn up lmb NEC|Malig neo skn up lmb NEC +C3161061|T191|PT|173.69|ICD9CM|Other specified malignant neoplasm of skin of upper limb, including shoulder|Other specified malignant neoplasm of skin of upper limb, including shoulder +C3161369|T191|HT|173.7|ICD9CM|Other and unspecified malignant neoplasm of skin of lower limb, including hip|Other and unspecified malignant neoplasm of skin of lower limb, including hip +C2838017|T191|AB|173.70|ICD9CM|Mal neo skn low limb NOS|Mal neo skn low limb NOS +C2838017|T191|PT|173.70|ICD9CM|Unspecified malignant neoplasm of skin of lower limb, including hip|Unspecified malignant neoplasm of skin of lower limb, including hip +C3161062|T191|PT|173.71|ICD9CM|Basal cell carcinoma of skin of lower limb, including hip|Basal cell carcinoma of skin of lower limb, including hip +C3161062|T191|AB|173.71|ICD9CM|Basl cell ca skn low lmb|Basl cell ca skn low lmb +C3161063|T191|AB|173.72|ICD9CM|Sqam cell ca skn low lmb|Sqam cell ca skn low lmb +C3161063|T191|PT|173.72|ICD9CM|Squamous cell carcinoma of skin of lower limb, including hip|Squamous cell carcinoma of skin of lower limb, including hip +C3161064|T191|AB|173.79|ICD9CM|Mal neo skin low lmb NEC|Mal neo skin low lmb NEC +C3161064|T191|PT|173.79|ICD9CM|Other specified malignant neoplasm of skin of lower limb, including hip|Other specified malignant neoplasm of skin of lower limb, including hip +C3161370|T191|HT|173.8|ICD9CM|Other and unspecified malignant neoplasm of other specified sites of skin|Other and unspecified malignant neoplasm of other specified sites of skin +C3161065|T047|AB|173.80|ICD9CM|Mal neo skn site NEC/NOS|Mal neo skn site NEC/NOS +C3161065|T047|PT|173.80|ICD9CM|Unspecified malignant neoplasm of other specified sites of skin|Unspecified malignant neoplasm of other specified sites of skin +C3161066|T191|PT|173.81|ICD9CM|Basal cell carcinoma of other specified sites of skin|Basal cell carcinoma of other specified sites of skin +C3161066|T191|AB|173.81|ICD9CM|Bsl cell ca skn site NEC|Bsl cell ca skn site NEC +C3161067|T191|AB|173.82|ICD9CM|Sqm cell ca skn site NEC|Sqm cell ca skn site NEC +C3161067|T191|PT|173.82|ICD9CM|Squamous cell carcinoma of other specified sites of skin|Squamous cell carcinoma of other specified sites of skin +C3161068|T191|AB|173.89|ICD9CM|Oth mal neo skn site NEC|Oth mal neo skn site NEC +C3161068|T191|PT|173.89|ICD9CM|Other specified malignant neoplasm of other specified sites of skin|Other specified malignant neoplasm of other specified sites of skin +C3161371|T191|HT|173.9|ICD9CM|Other and unspecified malignant neoplasm of skin, site unspecified|Other and unspecified malignant neoplasm of skin, site unspecified +C3161069|T191|AB|173.90|ICD9CM|Malig neo skin site NOS|Malig neo skin site NOS +C3161069|T191|PT|173.90|ICD9CM|Unspecified malignant neoplasm of skin, site unspecified|Unspecified malignant neoplasm of skin, site unspecified +C3161070|T191|AB|173.91|ICD9CM|Basal cell ca skin NOS|Basal cell ca skin NOS +C3161070|T191|PT|173.91|ICD9CM|Basal cell carcinoma of skin, site unspecified|Basal cell carcinoma of skin, site unspecified +C3161071|T191|AB|173.92|ICD9CM|Squam cell ca skin NOS|Squam cell ca skin NOS +C3161071|T191|PT|173.92|ICD9CM|Squamous cell carcinoma of skin, site unspecified|Squamous cell carcinoma of skin, site unspecified +C3161065|T047|AB|173.99|ICD9CM|Oth mal neo skn site NOS|Oth mal neo skn site NOS +C3161065|T047|PT|173.99|ICD9CM|Other specified malignant neoplasm of skin, site unspecified|Other specified malignant neoplasm of skin, site unspecified +C0235653|T191|HT|174|ICD9CM|Malignant neoplasm of female breast|Malignant neoplasm of female breast +C0024621|T191|AB|174.0|ICD9CM|Malig neo nipple|Malig neo nipple +C0024621|T191|PT|174.0|ICD9CM|Malignant neoplasm of nipple and areola of female breast|Malignant neoplasm of nipple and areola of female breast +C0153549|T191|AB|174.1|ICD9CM|Mal neo breast-central|Mal neo breast-central +C0153549|T191|PT|174.1|ICD9CM|Malignant neoplasm of central portion of female breast|Malignant neoplasm of central portion of female breast +C0153550|T191|AB|174.2|ICD9CM|Mal neo breast up-inner|Mal neo breast up-inner +C0153550|T191|PT|174.2|ICD9CM|Malignant neoplasm of upper-inner quadrant of female breast|Malignant neoplasm of upper-inner quadrant of female breast +C0153551|T191|AB|174.3|ICD9CM|Mal neo breast low-inner|Mal neo breast low-inner +C0153551|T191|PT|174.3|ICD9CM|Malignant neoplasm of lower-inner quadrant of female breast|Malignant neoplasm of lower-inner quadrant of female breast +C0153552|T191|AB|174.4|ICD9CM|Mal neo breast up-outer|Mal neo breast up-outer +C0153552|T191|PT|174.4|ICD9CM|Malignant neoplasm of upper-outer quadrant of female breast|Malignant neoplasm of upper-outer quadrant of female breast +C0153553|T191|AB|174.5|ICD9CM|Mal neo breast low-outer|Mal neo breast low-outer +C0153553|T191|PT|174.5|ICD9CM|Malignant neoplasm of lower-outer quadrant of female breast|Malignant neoplasm of lower-outer quadrant of female breast +C0153554|T191|AB|174.6|ICD9CM|Mal neo breast-axillary|Mal neo breast-axillary +C0153554|T191|PT|174.6|ICD9CM|Malignant neoplasm of axillary tail of female breast|Malignant neoplasm of axillary tail of female breast +C0153555|T191|AB|174.8|ICD9CM|Malign neopl breast NEC|Malign neopl breast NEC +C0153555|T191|PT|174.8|ICD9CM|Malignant neoplasm of other specified sites of female breast|Malignant neoplasm of other specified sites of female breast +C0235653|T191|AB|174.9|ICD9CM|Malign neopl breast NOS|Malign neopl breast NOS +C0235653|T191|PT|174.9|ICD9CM|Malignant neoplasm of breast (female), unspecified|Malignant neoplasm of breast (female), unspecified +C0242787|T191|HT|175|ICD9CM|Malignant neoplasm of male breast|Malignant neoplasm of male breast +C0153558|T191|AB|175.0|ICD9CM|Mal neo male nipple|Mal neo male nipple +C0153558|T191|PT|175.0|ICD9CM|Malignant neoplasm of nipple and areola of male breast|Malignant neoplasm of nipple and areola of male breast +C0153559|T191|AB|175.9|ICD9CM|Mal neo male breast NEC|Mal neo male breast NEC +C0153559|T191|PT|175.9|ICD9CM|Malignant neoplasm of other and unspecified sites of male breast|Malignant neoplasm of other and unspecified sites of male breast +C0036220|T191|HT|176|ICD9CM|Kaposi's sarcoma|Kaposi's sarcoma +C0153560|T191|PT|176.0|ICD9CM|Kaposi's sarcoma, skin|Kaposi's sarcoma, skin +C0153560|T191|AB|176.0|ICD9CM|Skin - kaposi's sarcoma|Skin - kaposi's sarcoma +C0153561|T191|PT|176.1|ICD9CM|Kaposi's sarcoma, soft tissue|Kaposi's sarcoma, soft tissue +C0153561|T191|AB|176.1|ICD9CM|Sft tisue - kpsi's srcma|Sft tisue - kpsi's srcma +C0153562|T191|PT|176.2|ICD9CM|Kaposi's sarcoma, palate|Kaposi's sarcoma, palate +C0153562|T191|AB|176.2|ICD9CM|Palate - kpsi's sarcoma|Palate - kpsi's sarcoma +C0153563|T191|AB|176.3|ICD9CM|GI sites - kpsi's srcoma|GI sites - kpsi's srcoma +C0153563|T191|PT|176.3|ICD9CM|Kaposi's sarcoma, gastrointestinal sites|Kaposi's sarcoma, gastrointestinal sites +C0153564|T191|PT|176.4|ICD9CM|Kaposi's sarcoma, lung|Kaposi's sarcoma, lung +C0153564|T191|AB|176.4|ICD9CM|Lung - kaposi's sarcoma|Lung - kaposi's sarcoma +C0153565|T191|PT|176.5|ICD9CM|Kaposi's sarcoma, lymph nodes|Kaposi's sarcoma, lymph nodes +C0153565|T191|AB|176.5|ICD9CM|Lym nds - kpsi's sarcoma|Lym nds - kpsi's sarcoma +C0153566|T191|PT|176.8|ICD9CM|Kaposi's sarcoma, other specified sites|Kaposi's sarcoma, other specified sites +C0153566|T191|AB|176.8|ICD9CM|Spf sts - kpsi's sarcoma|Spf sts - kpsi's sarcoma +C0036220|T191|AB|176.9|ICD9CM|Kaposi's sarcoma NOS|Kaposi's sarcoma NOS +C0036220|T191|PT|176.9|ICD9CM|Kaposi's sarcoma, unspecified site|Kaposi's sarcoma, unspecified site +C0153567|T191|AB|179|ICD9CM|Malig neopl uterus NOS|Malig neopl uterus NOS +C0153567|T191|PT|179|ICD9CM|Malignant neoplasm of uterus, part unspecified|Malignant neoplasm of uterus, part unspecified +C0178251|T191|HT|179-189.99|ICD9CM|MALIGNANT NEOPLASM OF GENITOURINARY ORGANS|MALIGNANT NEOPLASM OF GENITOURINARY ORGANS +C0007847|T191|HT|180|ICD9CM|Malignant neoplasm of cervix uteri|Malignant neoplasm of cervix uteri +C0153569|T191|AB|180.0|ICD9CM|Malig neo endocervix|Malig neo endocervix +C0153569|T191|PT|180.0|ICD9CM|Malignant neoplasm of endocervix|Malignant neoplasm of endocervix +C0153570|T191|AB|180.1|ICD9CM|Malig neo exocervix|Malig neo exocervix +C0153570|T191|PT|180.1|ICD9CM|Malignant neoplasm of exocervix|Malignant neoplasm of exocervix +C0153571|T191|AB|180.8|ICD9CM|Malig neo cervix NEC|Malig neo cervix NEC +C0153571|T191|PT|180.8|ICD9CM|Malignant neoplasm of other specified sites of cervix|Malignant neoplasm of other specified sites of cervix +C0007847|T191|AB|180.9|ICD9CM|Mal neo cervix uteri NOS|Mal neo cervix uteri NOS +C0007847|T191|PT|180.9|ICD9CM|Malignant neoplasm of cervix uteri, unspecified site|Malignant neoplasm of cervix uteri, unspecified site +C0153572|T191|AB|181|ICD9CM|Malignant neopl placenta|Malignant neopl placenta +C0153572|T191|PT|181|ICD9CM|Malignant neoplasm of placenta|Malignant neoplasm of placenta +C0153574|T191|HT|182|ICD9CM|Malignant neoplasm of body of uterus|Malignant neoplasm of body of uterus +C1279258|T191|AB|182.0|ICD9CM|Malig neo corpus uteri|Malig neo corpus uteri +C1279258|T191|PT|182.0|ICD9CM|Malignant neoplasm of corpus uteri, except isthmus|Malignant neoplasm of corpus uteri, except isthmus +C0153575|T191|AB|182.1|ICD9CM|Mal neo uterine isthmus|Mal neo uterine isthmus +C0153575|T191|PT|182.1|ICD9CM|Malignant neoplasm of isthmus|Malignant neoplasm of isthmus +C0153576|T191|AB|182.8|ICD9CM|Mal neo body uterus NEC|Mal neo body uterus NEC +C0153576|T191|PT|182.8|ICD9CM|Malignant neoplasm of other specified sites of body of uterus|Malignant neoplasm of other specified sites of body of uterus +C0153577|T191|HT|183|ICD9CM|Malignant neoplasm of ovary and other uterine adnexa|Malignant neoplasm of ovary and other uterine adnexa +C1140680|T191|AB|183.0|ICD9CM|Malign neopl ovary|Malign neopl ovary +C1140680|T191|PT|183.0|ICD9CM|Malignant neoplasm of ovary|Malignant neoplasm of ovary +C0153579|T191|AB|183.2|ICD9CM|Mal neo fallopian tube|Mal neo fallopian tube +C0153579|T191|PT|183.2|ICD9CM|Malignant neoplasm of fallopian tube|Malignant neoplasm of fallopian tube +C0346866|T191|AB|183.3|ICD9CM|Mal neo broad ligament|Mal neo broad ligament +C0346866|T191|PT|183.3|ICD9CM|Malignant neoplasm of broad ligament of uterus|Malignant neoplasm of broad ligament of uterus +C0153581|T191|AB|183.4|ICD9CM|Malig neo parametrium|Malig neo parametrium +C0153581|T191|PT|183.4|ICD9CM|Malignant neoplasm of parametrium|Malignant neoplasm of parametrium +C0346867|T191|AB|183.5|ICD9CM|Mal neo round ligament|Mal neo round ligament +C0346867|T191|PT|183.5|ICD9CM|Malignant neoplasm of round ligament of uterus|Malignant neoplasm of round ligament of uterus +C0153583|T191|AB|183.8|ICD9CM|Mal neo adnexa NEC|Mal neo adnexa NEC +C0153583|T191|PT|183.8|ICD9CM|Malignant neoplasm of other specified sites of uterine adnexa|Malignant neoplasm of other specified sites of uterine adnexa +C0153584|T191|AB|183.9|ICD9CM|Mal neo adnexa NOS|Mal neo adnexa NOS +C0153584|T191|PT|183.9|ICD9CM|Malignant neoplasm of uterine adnexa, unspecified site|Malignant neoplasm of uterine adnexa, unspecified site +C0153585|T191|HT|184|ICD9CM|Malignant neoplasm of other and unspecified female genital organs|Malignant neoplasm of other and unspecified female genital organs +C0042237|T191|AB|184.0|ICD9CM|Malign neopl vagina|Malign neopl vagina +C0042237|T191|PT|184.0|ICD9CM|Malignant neoplasm of vagina|Malignant neoplasm of vagina +C0496814|T191|AB|184.1|ICD9CM|Mal neo labia majora|Mal neo labia majora +C0496814|T191|PT|184.1|ICD9CM|Malignant neoplasm of labia majora|Malignant neoplasm of labia majora +C0496815|T191|AB|184.2|ICD9CM|Mal neo labia minora|Mal neo labia minora +C0496815|T191|PT|184.2|ICD9CM|Malignant neoplasm of labia minora|Malignant neoplasm of labia minora +C0153589|T191|AB|184.3|ICD9CM|Malign neopl clitoris|Malign neopl clitoris +C0153589|T191|PT|184.3|ICD9CM|Malignant neoplasm of clitoris|Malignant neoplasm of clitoris +C0375071|T191|AB|184.4|ICD9CM|Malign neopl vulva NOS|Malign neopl vulva NOS +C0375071|T191|PT|184.4|ICD9CM|Malignant neoplasm of vulva, unspecified site|Malignant neoplasm of vulva, unspecified site +C0153591|T191|AB|184.8|ICD9CM|Mal neo female genit NEC|Mal neo female genit NEC +C0153591|T191|PT|184.8|ICD9CM|Malignant neoplasm of other specified sites of female genital organs|Malignant neoplasm of other specified sites of female genital organs +C0153592|T191|AB|184.9|ICD9CM|Mal neo female genit NOS|Mal neo female genit NOS +C0153592|T191|PT|184.9|ICD9CM|Malignant neoplasm of female genital organ, site unspecified|Malignant neoplasm of female genital organ, site unspecified +C0376358|T191|AB|185|ICD9CM|Malign neopl prostate|Malign neopl prostate +C0376358|T191|PT|185|ICD9CM|Malignant neoplasm of prostate|Malignant neoplasm of prostate +C0153594|T191|HT|186|ICD9CM|Malignant neoplasm of testis|Malignant neoplasm of testis +C0153595|T191|AB|186.0|ICD9CM|Mal neo undescend testis|Mal neo undescend testis +C0153595|T191|PT|186.0|ICD9CM|Malignant neoplasm of undescended testis|Malignant neoplasm of undescended testis +C0153596|T191|AB|186.9|ICD9CM|Malig neo testis NEC|Malig neo testis NEC +C0153596|T191|PT|186.9|ICD9CM|Malignant neoplasm of other and unspecified testis|Malignant neoplasm of other and unspecified testis +C0153597|T191|HT|187|ICD9CM|Malignant neoplasm of penis and other male genital organs|Malignant neoplasm of penis and other male genital organs +C0153598|T191|AB|187.1|ICD9CM|Malign neopl prepuce|Malign neopl prepuce +C0153598|T191|PT|187.1|ICD9CM|Malignant neoplasm of prepuce|Malignant neoplasm of prepuce +C0153599|T191|AB|187.2|ICD9CM|Malig neo glans penis|Malig neo glans penis +C0153599|T191|PT|187.2|ICD9CM|Malignant neoplasm of glans penis|Malignant neoplasm of glans penis +C0153600|T191|AB|187.3|ICD9CM|Malig neo penis body|Malig neo penis body +C0153600|T191|PT|187.3|ICD9CM|Malignant neoplasm of body of penis|Malignant neoplasm of body of penis +C0153601|T191|AB|187.4|ICD9CM|Malig neo penis NOS|Malig neo penis NOS +C0153601|T191|PT|187.4|ICD9CM|Malignant neoplasm of penis, part unspecified|Malignant neoplasm of penis, part unspecified +C0153602|T191|AB|187.5|ICD9CM|Malig neo epididymis|Malig neo epididymis +C0153602|T191|PT|187.5|ICD9CM|Malignant neoplasm of epididymis|Malignant neoplasm of epididymis +C0153603|T191|AB|187.6|ICD9CM|Mal neo spermatic cord|Mal neo spermatic cord +C0153603|T191|PT|187.6|ICD9CM|Malignant neoplasm of spermatic cord|Malignant neoplasm of spermatic cord +C0153604|T191|AB|187.7|ICD9CM|Malign neopl scrotum|Malign neopl scrotum +C0153604|T191|PT|187.7|ICD9CM|Malignant neoplasm of scrotum|Malignant neoplasm of scrotum +C0153605|T191|AB|187.8|ICD9CM|Mal neo male genital NEC|Mal neo male genital NEC +C0153605|T191|PT|187.8|ICD9CM|Malignant neoplasm of other specified sites of male genital organs|Malignant neoplasm of other specified sites of male genital organs +C0153606|T191|AB|187.9|ICD9CM|Mal neo male genital NOS|Mal neo male genital NOS +C0153606|T191|PT|187.9|ICD9CM|Malignant neoplasm of male genital organ, site unspecified|Malignant neoplasm of male genital organ, site unspecified +C0005684|T191|HT|188|ICD9CM|Malignant neoplasm of bladder|Malignant neoplasm of bladder +C0496826|T191|AB|188.0|ICD9CM|Mal neo bladder-trigone|Mal neo bladder-trigone +C0496826|T191|PT|188.0|ICD9CM|Malignant neoplasm of trigone of urinary bladder|Malignant neoplasm of trigone of urinary bladder +C0496827|T191|AB|188.1|ICD9CM|Mal neo bladder-dome|Mal neo bladder-dome +C0496827|T191|PT|188.1|ICD9CM|Malignant neoplasm of dome of urinary bladder|Malignant neoplasm of dome of urinary bladder +C0496828|T191|AB|188.2|ICD9CM|Mal neo bladder-lateral|Mal neo bladder-lateral +C0496828|T191|PT|188.2|ICD9CM|Malignant neoplasm of lateral wall of urinary bladder|Malignant neoplasm of lateral wall of urinary bladder +C0153611|T191|AB|188.3|ICD9CM|Mal neo bladder-anterior|Mal neo bladder-anterior +C0153611|T191|PT|188.3|ICD9CM|Malignant neoplasm of anterior wall of urinary bladder|Malignant neoplasm of anterior wall of urinary bladder +C0153612|T191|AB|188.4|ICD9CM|Mal neo bladder-post|Mal neo bladder-post +C0153612|T191|PT|188.4|ICD9CM|Malignant neoplasm of posterior wall of urinary bladder|Malignant neoplasm of posterior wall of urinary bladder +C0153613|T191|AB|188.5|ICD9CM|Mal neo bladder neck|Mal neo bladder neck +C0153613|T191|PT|188.5|ICD9CM|Malignant neoplasm of bladder neck|Malignant neoplasm of bladder neck +C0153614|T191|AB|188.6|ICD9CM|Mal neo ureteric orifice|Mal neo ureteric orifice +C0153614|T191|PT|188.6|ICD9CM|Malignant neoplasm of ureteric orifice|Malignant neoplasm of ureteric orifice +C0153615|T191|AB|188.7|ICD9CM|Malig neo urachus|Malig neo urachus +C0153615|T191|PT|188.7|ICD9CM|Malignant neoplasm of urachus|Malignant neoplasm of urachus +C0153616|T191|AB|188.8|ICD9CM|Malig neo bladder NEC|Malig neo bladder NEC +C0153616|T191|PT|188.8|ICD9CM|Malignant neoplasm of other specified sites of bladder|Malignant neoplasm of other specified sites of bladder +C0005684|T191|AB|188.9|ICD9CM|Malig neo bladder NOS|Malig neo bladder NOS +C0005684|T191|PT|188.9|ICD9CM|Malignant neoplasm of bladder, part unspecified|Malignant neoplasm of bladder, part unspecified +C0153617|T191|HT|189|ICD9CM|Malignant neoplasm of kidney and other and unspecified urinary organs|Malignant neoplasm of kidney and other and unspecified urinary organs +C0494158|T191|AB|189.0|ICD9CM|Malig neopl kidney|Malig neopl kidney +C0494158|T191|PT|189.0|ICD9CM|Malignant neoplasm of kidney, except pelvis|Malignant neoplasm of kidney, except pelvis +C0153618|T191|AB|189.1|ICD9CM|Malig neo renal pelvis|Malig neo renal pelvis +C0153618|T191|PT|189.1|ICD9CM|Malignant neoplasm of renal pelvis|Malignant neoplasm of renal pelvis +C0153619|T191|AB|189.2|ICD9CM|Malign neopl ureter|Malign neopl ureter +C0153619|T191|PT|189.2|ICD9CM|Malignant neoplasm of ureter|Malignant neoplasm of ureter +C0153620|T191|AB|189.3|ICD9CM|Malign neopl urethra|Malign neopl urethra +C0153620|T191|PT|189.3|ICD9CM|Malignant neoplasm of urethra|Malignant neoplasm of urethra +C0153621|T191|AB|189.4|ICD9CM|Mal neo paraurethral|Mal neo paraurethral +C0153621|T191|PT|189.4|ICD9CM|Malignant neoplasm of paraurethral glands|Malignant neoplasm of paraurethral glands +C0153622|T191|AB|189.8|ICD9CM|Mal neo urinary NEC|Mal neo urinary NEC +C0153622|T191|PT|189.8|ICD9CM|Malignant neoplasm of other specified sites of urinary organs|Malignant neoplasm of other specified sites of urinary organs +C0348371|T191|AB|189.9|ICD9CM|Mal neo urinary NOS|Mal neo urinary NOS +C0348371|T191|PT|189.9|ICD9CM|Malignant neoplasm of urinary organ, site unspecified|Malignant neoplasm of urinary organ, site unspecified +C0496836|T191|HT|190|ICD9CM|Malignant neoplasm of eye|Malignant neoplasm of eye +C0347071|T191|HT|190-199.99|ICD9CM|MALIGNANT NEOPLASM OF OTHER AND UNSPECIFIED SITES|MALIGNANT NEOPLASM OF OTHER AND UNSPECIFIED SITES +C0153625|T191|AB|190.0|ICD9CM|Malign neopl eyeball|Malign neopl eyeball +C0153625|T191|PT|190.0|ICD9CM|Malignant neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid|Malignant neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid +C0153626|T191|AB|190.1|ICD9CM|Malign neopl orbit|Malign neopl orbit +C0153626|T191|PT|190.1|ICD9CM|Malignant neoplasm of orbit|Malignant neoplasm of orbit +C0153627|T191|AB|190.2|ICD9CM|Mal neo lacrimal gland|Mal neo lacrimal gland +C0153627|T191|PT|190.2|ICD9CM|Malignant neoplasm of lacrimal gland|Malignant neoplasm of lacrimal gland +C0153628|T191|AB|190.3|ICD9CM|Mal neo conjunctiva|Mal neo conjunctiva +C0153628|T191|PT|190.3|ICD9CM|Malignant neoplasm of conjunctiva|Malignant neoplasm of conjunctiva +C0153629|T191|AB|190.4|ICD9CM|Malign neopl cornea|Malign neopl cornea +C0153629|T191|PT|190.4|ICD9CM|Malignant neoplasm of cornea|Malignant neoplasm of cornea +C0024622|T191|AB|190.5|ICD9CM|Malign neopl retina|Malign neopl retina +C0024622|T191|PT|190.5|ICD9CM|Malignant neoplasm of retina|Malignant neoplasm of retina +C0153630|T191|AB|190.6|ICD9CM|Malign neopl choroid|Malign neopl choroid +C0153630|T191|PT|190.6|ICD9CM|Malignant neoplasm of choroid|Malignant neoplasm of choroid +C0153631|T191|AB|190.7|ICD9CM|Mal neo lacrimal duct|Mal neo lacrimal duct +C0153631|T191|PT|190.7|ICD9CM|Malignant neoplasm of lacrimal duct|Malignant neoplasm of lacrimal duct +C0153632|T191|AB|190.8|ICD9CM|Malign neopl eye NEC|Malign neopl eye NEC +C0153632|T191|PT|190.8|ICD9CM|Malignant neoplasm of other specified sites of eye|Malignant neoplasm of other specified sites of eye +C0496836|T191|AB|190.9|ICD9CM|Malign neopl eye NOS|Malign neopl eye NOS +C0496836|T191|PT|190.9|ICD9CM|Malignant neoplasm of eye, part unspecified|Malignant neoplasm of eye, part unspecified +C0153633|T191|HT|191|ICD9CM|Malignant neoplasm of brain|Malignant neoplasm of brain +C0153634|T191|AB|191.0|ICD9CM|Malign neopl cerebrum|Malign neopl cerebrum +C0153634|T191|PT|191.0|ICD9CM|Malignant neoplasm of cerebrum, except lobes and ventricles|Malignant neoplasm of cerebrum, except lobes and ventricles +C0153635|T191|AB|191.1|ICD9CM|Malig neo frontal lobe|Malig neo frontal lobe +C0153635|T191|PT|191.1|ICD9CM|Malignant neoplasm of frontal lobe|Malignant neoplasm of frontal lobe +C0153636|T191|AB|191.2|ICD9CM|Mal neo temporal lobe|Mal neo temporal lobe +C0153636|T191|PT|191.2|ICD9CM|Malignant neoplasm of temporal lobe|Malignant neoplasm of temporal lobe +C0153637|T191|AB|191.3|ICD9CM|Mal neo parietal lobe|Mal neo parietal lobe +C0153637|T191|PT|191.3|ICD9CM|Malignant neoplasm of parietal lobe|Malignant neoplasm of parietal lobe +C0153638|T191|AB|191.4|ICD9CM|Mal neo occipital lobe|Mal neo occipital lobe +C0153638|T191|PT|191.4|ICD9CM|Malignant neoplasm of occipital lobe|Malignant neoplasm of occipital lobe +C0346906|T191|AB|191.5|ICD9CM|Mal neo cereb ventricle|Mal neo cereb ventricle +C0346906|T191|PT|191.5|ICD9CM|Malignant neoplasm of ventricles|Malignant neoplasm of ventricles +C0153640|T191|AB|191.6|ICD9CM|Mal neo cerebellum NOS|Mal neo cerebellum NOS +C0153640|T191|PT|191.6|ICD9CM|Malignant neoplasm of cerebellum nos|Malignant neoplasm of cerebellum nos +C0153641|T191|AB|191.7|ICD9CM|Mal neo brain stem|Mal neo brain stem +C0153641|T191|PT|191.7|ICD9CM|Malignant neoplasm of brain stem|Malignant neoplasm of brain stem +C0153642|T191|AB|191.8|ICD9CM|Malig neo brain NEC|Malig neo brain NEC +C0153642|T191|PT|191.8|ICD9CM|Malignant neoplasm of other parts of brain|Malignant neoplasm of other parts of brain +C0153633|T191|AB|191.9|ICD9CM|Malig neo brain NOS|Malig neo brain NOS +C0153633|T191|PT|191.9|ICD9CM|Malignant neoplasm of brain, unspecified|Malignant neoplasm of brain, unspecified +C0153643|T191|HT|192|ICD9CM|Malignant neoplasm of other and unspecified parts of nervous system|Malignant neoplasm of other and unspecified parts of nervous system +C0153644|T191|AB|192.0|ICD9CM|Mal neo cranial nerves|Mal neo cranial nerves +C0153644|T191|PT|192.0|ICD9CM|Malignant neoplasm of cranial nerves|Malignant neoplasm of cranial nerves +C0153645|T191|AB|192.1|ICD9CM|Mal neo cerebral mening|Mal neo cerebral mening +C0153645|T191|PT|192.1|ICD9CM|Malignant neoplasm of cerebral meninges|Malignant neoplasm of cerebral meninges +C0153646|T191|AB|192.2|ICD9CM|Mal neo spinal cord|Mal neo spinal cord +C0153646|T191|PT|192.2|ICD9CM|Malignant neoplasm of spinal cord|Malignant neoplasm of spinal cord +C0153647|T191|AB|192.3|ICD9CM|Mal neo spinal meninges|Mal neo spinal meninges +C0153647|T191|PT|192.3|ICD9CM|Malignant neoplasm of spinal meninges|Malignant neoplasm of spinal meninges +C0153648|T191|AB|192.8|ICD9CM|Mal neo nervous syst NEC|Mal neo nervous syst NEC +C0153648|T191|PT|192.8|ICD9CM|Malignant neoplasm of other specified sites of nervous system|Malignant neoplasm of other specified sites of nervous system +C0153643|T191|AB|192.9|ICD9CM|Mal neo nervous syst NOS|Mal neo nervous syst NOS +C0153643|T191|PT|192.9|ICD9CM|Malignant neoplasm of nervous system, part unspecified|Malignant neoplasm of nervous system, part unspecified +C0007115|T191|AB|193|ICD9CM|Malign neopl thyroid|Malign neopl thyroid +C0007115|T191|PT|193|ICD9CM|Malignant neoplasm of thyroid gland|Malignant neoplasm of thyroid gland +C0153651|T191|HT|194|ICD9CM|Malignant neoplasm of other endocrine glands and related structures|Malignant neoplasm of other endocrine glands and related structures +C0750887|T191|AB|194.0|ICD9CM|Malign neopl adrenal|Malign neopl adrenal +C0750887|T191|PT|194.0|ICD9CM|Malignant neoplasm of adrenal gland|Malignant neoplasm of adrenal gland +C0153653|T191|AB|194.1|ICD9CM|Malig neo parathyroid|Malig neo parathyroid +C0153653|T191|PT|194.1|ICD9CM|Malignant neoplasm of parathyroid gland|Malignant neoplasm of parathyroid gland +C0153654|T191|AB|194.3|ICD9CM|Malig neo pituitary|Malig neo pituitary +C0153654|T191|PT|194.3|ICD9CM|Malignant neoplasm of pituitary gland and craniopharyngeal duct|Malignant neoplasm of pituitary gland and craniopharyngeal duct +C0153655|T191|AB|194.4|ICD9CM|Malign neo pineal gland|Malign neo pineal gland +C0153655|T191|PT|194.4|ICD9CM|Malignant neoplasm of pineal gland|Malignant neoplasm of pineal gland +C0153656|T191|AB|194.5|ICD9CM|Mal neo carotid body|Mal neo carotid body +C0153656|T191|PT|194.5|ICD9CM|Malignant neoplasm of carotid body|Malignant neoplasm of carotid body +C0438413|T191|AB|194.6|ICD9CM|Mal neo paraganglia NEC|Mal neo paraganglia NEC +C0438413|T191|PT|194.6|ICD9CM|Malignant neoplasm of aortic body and other paraganglia|Malignant neoplasm of aortic body and other paraganglia +C0153651|T191|AB|194.8|ICD9CM|Mal neo endocrine NEC|Mal neo endocrine NEC +C0153651|T191|PT|194.8|ICD9CM|Malignant neoplasm of other endocrine glands and related structures|Malignant neoplasm of other endocrine glands and related structures +C0153658|T191|AB|194.9|ICD9CM|Mal neo endocrine NOS|Mal neo endocrine NOS +C0153658|T191|PT|194.9|ICD9CM|Malignant neoplasm of endocrine gland, site unspecified|Malignant neoplasm of endocrine gland, site unspecified +C0153659|T191|HT|195|ICD9CM|Malignant neoplasm of other and ill-defined sites|Malignant neoplasm of other and ill-defined sites +C0153660|T191|AB|195.0|ICD9CM|Mal neo head/face/neck|Mal neo head/face/neck +C0153660|T191|PT|195.0|ICD9CM|Malignant neoplasm of head, face, and neck|Malignant neoplasm of head, face, and neck +C0153661|T191|AB|195.1|ICD9CM|Malign neopl thorax|Malign neopl thorax +C0153661|T191|PT|195.1|ICD9CM|Malignant neoplasm of thorax|Malignant neoplasm of thorax +C0153662|T191|AB|195.2|ICD9CM|Malig neo abdomen|Malig neo abdomen +C0153662|T191|PT|195.2|ICD9CM|Malignant neoplasm of abdomen|Malignant neoplasm of abdomen +C0153663|T191|AB|195.3|ICD9CM|Malign neopl pelvis|Malign neopl pelvis +C0153663|T191|PT|195.3|ICD9CM|Malignant neoplasm of pelvis|Malignant neoplasm of pelvis +C0153664|T191|AB|195.4|ICD9CM|Malign neopl arm|Malign neopl arm +C0153664|T191|PT|195.4|ICD9CM|Malignant neoplasm of upper limb|Malignant neoplasm of upper limb +C0153665|T191|AB|195.5|ICD9CM|Malign neopl leg|Malign neopl leg +C0153665|T191|PT|195.5|ICD9CM|Malignant neoplasm of lower limb|Malignant neoplasm of lower limb +C0153666|T191|AB|195.8|ICD9CM|Malig neo site NEC|Malig neo site NEC +C0153666|T191|PT|195.8|ICD9CM|Malignant neoplasm of other specified sites|Malignant neoplasm of other specified sites +C0686619|T191|HT|196|ICD9CM|Secondary and unspecified malignant neoplasm of lymph nodes|Secondary and unspecified malignant neoplasm of lymph nodes +C0153668|T191|AB|196.0|ICD9CM|Mal neo lymph-head/neck|Mal neo lymph-head/neck +C0153668|T191|PT|196.0|ICD9CM|Secondary and unspecified malignant neoplasm of lymph nodes of head, face, and neck|Secondary and unspecified malignant neoplasm of lymph nodes of head, face, and neck +C0686645|T191|AB|196.1|ICD9CM|Mal neo lymph-intrathor|Mal neo lymph-intrathor +C0686645|T191|PT|196.1|ICD9CM|Secondary and unspecified malignant neoplasm of intrathoracic lymph nodes|Secondary and unspecified malignant neoplasm of intrathoracic lymph nodes +C0686655|T191|AB|196.2|ICD9CM|Mal neo lymph intra-abd|Mal neo lymph intra-abd +C0686655|T191|PT|196.2|ICD9CM|Secondary and unspecified malignant neoplasm of intra-abdominal lymph nodes|Secondary and unspecified malignant neoplasm of intra-abdominal lymph nodes +C0153671|T191|AB|196.3|ICD9CM|Mal neo lymph-axilla/arm|Mal neo lymph-axilla/arm +C0153671|T191|PT|196.3|ICD9CM|Secondary and unspecified malignant neoplasm of lymph nodes of axilla and upper limb|Secondary and unspecified malignant neoplasm of lymph nodes of axilla and upper limb +C0347055|T191|AB|196.5|ICD9CM|Mal neo lymph-inguin/leg|Mal neo lymph-inguin/leg +C0347055|T191|PT|196.5|ICD9CM|Secondary and unspecified malignant neoplasm of lymph nodes of inguinal region and lower limb|Secondary and unspecified malignant neoplasm of lymph nodes of inguinal region and lower limb +C0686689|T191|AB|196.6|ICD9CM|Mal neo lymph-intrapelv|Mal neo lymph-intrapelv +C0686689|T191|PT|196.6|ICD9CM|Secondary and unspecified malignant neoplasm of intrapelvic lymph nodes|Secondary and unspecified malignant neoplasm of intrapelvic lymph nodes +C0348382|T191|AB|196.8|ICD9CM|Mal neo lymph node-mult|Mal neo lymph node-mult +C0348382|T191|PT|196.8|ICD9CM|Secondary and unspecified malignant neoplasm of lymph nodes of multiple sites|Secondary and unspecified malignant neoplasm of lymph nodes of multiple sites +C0686619|T191|AB|196.9|ICD9CM|Mal neo lymph node NOS|Mal neo lymph node NOS +C0686619|T191|PT|196.9|ICD9CM|Secondary and unspecified malignant neoplasm of lymph nodes, site unspecified|Secondary and unspecified malignant neoplasm of lymph nodes, site unspecified +C0153675|T191|HT|197|ICD9CM|Secondary malignant neoplasm of respiratory and digestive systems|Secondary malignant neoplasm of respiratory and digestive systems +C0153676|T191|AB|197.0|ICD9CM|Secondary malig neo lung|Secondary malig neo lung +C0153676|T191|PT|197.0|ICD9CM|Secondary malignant neoplasm of lung|Secondary malignant neoplasm of lung +C0153677|T191|AB|197.1|ICD9CM|Sec mal neo mediastinum|Sec mal neo mediastinum +C0153677|T191|PT|197.1|ICD9CM|Secondary malignant neoplasm of mediastinum|Secondary malignant neoplasm of mediastinum +C0153678|T191|AB|197.2|ICD9CM|Second malig neo pleura|Second malig neo pleura +C0153678|T191|PT|197.2|ICD9CM|Secondary malignant neoplasm of pleura|Secondary malignant neoplasm of pleura +C2745961|T191|AB|197.3|ICD9CM|Sec malig neo resp NEC|Sec malig neo resp NEC +C2745961|T191|PT|197.3|ICD9CM|Secondary malignant neoplasm of other respiratory organs|Secondary malignant neoplasm of other respiratory organs +C0494164|T191|AB|197.4|ICD9CM|Sec malig neo sm bowel|Sec malig neo sm bowel +C0494164|T191|PT|197.4|ICD9CM|Secondary malignant neoplasm of small intestine including duodenum|Secondary malignant neoplasm of small intestine including duodenum +C0153681|T191|AB|197.5|ICD9CM|Sec malig neo lg bowel|Sec malig neo lg bowel +C0153681|T191|PT|197.5|ICD9CM|Secondary malignant neoplasm of large intestine and rectum|Secondary malignant neoplasm of large intestine and rectum +C0036528|T191|AB|197.6|ICD9CM|Sec mal neo peritoneum|Sec mal neo peritoneum +C0036528|T191|PT|197.6|ICD9CM|Secondary malignant neoplasm of retroperitoneum and peritoneum|Secondary malignant neoplasm of retroperitoneum and peritoneum +C0494165|T191|PT|197.7|ICD9CM|Malignant neoplasm of liver, secondary|Malignant neoplasm of liver, secondary +C0494165|T191|AB|197.7|ICD9CM|Second malig neo liver|Second malig neo liver +C0153683|T191|AB|197.8|ICD9CM|Sec mal neo GI NEC|Sec mal neo GI NEC +C0153683|T191|PT|197.8|ICD9CM|Secondary malignant neoplasm of other digestive organs and spleen|Secondary malignant neoplasm of other digestive organs and spleen +C0153684|T191|HT|198|ICD9CM|Secondary malignant neoplasm of other specified sites|Secondary malignant neoplasm of other specified sites +C0153685|T191|AB|198.0|ICD9CM|Second malig neo kidney|Second malig neo kidney +C0153685|T191|PT|198.0|ICD9CM|Secondary malignant neoplasm of kidney|Secondary malignant neoplasm of kidney +C2845968|T191|AB|198.1|ICD9CM|Sec malig neo urin NEC|Sec malig neo urin NEC +C2845968|T191|PT|198.1|ICD9CM|Secondary malignant neoplasm of other urinary organs|Secondary malignant neoplasm of other urinary organs +C0153687|T191|AB|198.2|ICD9CM|Secondary malig neo skin|Secondary malig neo skin +C0153687|T191|PT|198.2|ICD9CM|Secondary malignant neoplasm of skin|Secondary malignant neoplasm of skin +C0153688|T191|AB|198.3|ICD9CM|Sec mal neo brain/spine|Sec mal neo brain/spine +C0153688|T191|PT|198.3|ICD9CM|Secondary malignant neoplasm of brain and spinal cord|Secondary malignant neoplasm of brain and spinal cord +C0153689|T191|AB|198.4|ICD9CM|Sec malig neo nerve NEC|Sec malig neo nerve NEC +C0153689|T191|PT|198.4|ICD9CM|Secondary malignant neoplasm of other parts of nervous system|Secondary malignant neoplasm of other parts of nervous system +C0153690|T191|AB|198.5|ICD9CM|Secondary malig neo bone|Secondary malig neo bone +C0153690|T191|PT|198.5|ICD9CM|Secondary malignant neoplasm of bone and bone marrow|Secondary malignant neoplasm of bone and bone marrow +C3647143|T191|AB|198.6|ICD9CM|Second malig neo ovary|Second malig neo ovary +C3647143|T191|PT|198.6|ICD9CM|Secondary malignant neoplasm of ovary|Secondary malignant neoplasm of ovary +C0153691|T191|AB|198.7|ICD9CM|Second malig neo adrenal|Second malig neo adrenal +C0153691|T191|PT|198.7|ICD9CM|Secondary malignant neoplasm of adrenal gland|Secondary malignant neoplasm of adrenal gland +C0153684|T191|HT|198.8|ICD9CM|Secondary malignant neoplasm of other specified sites|Secondary malignant neoplasm of other specified sites +C0346993|T191|AB|198.81|ICD9CM|Second malig neo breast|Second malig neo breast +C0346993|T191|PT|198.81|ICD9CM|Secondary malignant neoplasm of breast|Secondary malignant neoplasm of breast +C0153693|T191|AB|198.82|ICD9CM|Second malig neo genital|Second malig neo genital +C0153693|T191|PT|198.82|ICD9CM|Secondary malignant neoplasm of genital organs|Secondary malignant neoplasm of genital organs +C0153684|T191|AB|198.89|ICD9CM|Secondary malig neo NEC|Secondary malig neo NEC +C0153684|T191|PT|198.89|ICD9CM|Secondary malignant neoplasm of other specified sites|Secondary malignant neoplasm of other specified sites +C0006826|T191|HT|199|ICD9CM|Malignant neoplasm without specification of site|Malignant neoplasm without specification of site +C0346957|T191|PT|199.0|ICD9CM|Disseminated malignant neoplasm without specification of site|Disseminated malignant neoplasm without specification of site +C0346957|T191|AB|199.0|ICD9CM|Malig neo disseminated|Malig neo disseminated +C0347071|T191|AB|199.1|ICD9CM|Malignant neoplasm NOS|Malignant neoplasm NOS +C0347071|T191|PT|199.1|ICD9CM|Other malignant neoplasm without specification of site|Other malignant neoplasm without specification of site +C2349259|T191|AB|199.2|ICD9CM|Malig neopl-transp organ|Malig neopl-transp organ +C2349259|T191|PT|199.2|ICD9CM|Malignant neoplasm associated with transplant organ|Malignant neoplasm associated with transplant organ +C1955727|T191|HT|200|ICD9CM|Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue|Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue +C0348393|T191|HT|200-208.99|ICD9CM|MALIGNANT NEOPLASM OF LYMPHATIC AND HEMATOPOIETIC TISSUE|MALIGNANT NEOPLASM OF LYMPHATIC AND HEMATOPOIETIC TISSUE +C0024302|T191|HT|200.0|ICD9CM|Reticulosarcoma|Reticulosarcoma +C0375075|T191|AB|200.00|ICD9CM|Retclsrc unsp xtrndl org|Retclsrc unsp xtrndl org +C0375075|T191|PT|200.00|ICD9CM|Reticulosarcoma, unspecified site, extranodal and solid organ sites|Reticulosarcoma, unspecified site, extranodal and solid organ sites +C0153696|T191|AB|200.01|ICD9CM|Reticulosarcoma head|Reticulosarcoma head +C0153696|T191|PT|200.01|ICD9CM|Reticulosarcoma, lymph nodes of head, face, and neck|Reticulosarcoma, lymph nodes of head, face, and neck +C0153697|T191|AB|200.02|ICD9CM|Reticulosarcoma thorax|Reticulosarcoma thorax +C0153697|T191|PT|200.02|ICD9CM|Reticulosarcoma, intrathoracic lymph nodes|Reticulosarcoma, intrathoracic lymph nodes +C0153698|T191|AB|200.03|ICD9CM|Reticulosarcoma abdom|Reticulosarcoma abdom +C0153698|T191|PT|200.03|ICD9CM|Reticulosarcoma, intra-abdominal lymph nodes|Reticulosarcoma, intra-abdominal lymph nodes +C0153699|T191|AB|200.04|ICD9CM|Reticulosarcoma axilla|Reticulosarcoma axilla +C0153699|T191|PT|200.04|ICD9CM|Reticulosarcoma, lymph nodes of axilla and upper limb|Reticulosarcoma, lymph nodes of axilla and upper limb +C0153700|T191|AB|200.05|ICD9CM|Reticulosarcoma inguin|Reticulosarcoma inguin +C0153700|T191|PT|200.05|ICD9CM|Reticulosarcoma, lymph nodes of inguinal region and lower limb|Reticulosarcoma, lymph nodes of inguinal region and lower limb +C0153701|T191|AB|200.06|ICD9CM|Reticulosarcoma pelvic|Reticulosarcoma pelvic +C0153701|T191|PT|200.06|ICD9CM|Reticulosarcoma, intrapelvic lymph nodes|Reticulosarcoma, intrapelvic lymph nodes +C0153702|T191|AB|200.07|ICD9CM|Reticulosarcoma spleen|Reticulosarcoma spleen +C0153702|T191|PT|200.07|ICD9CM|Reticulosarcoma, spleen|Reticulosarcoma, spleen +C0153703|T191|AB|200.08|ICD9CM|Reticulosarcoma mult|Reticulosarcoma mult +C0153703|T191|PT|200.08|ICD9CM|Reticulosarcoma, lymph nodes of multiple sites|Reticulosarcoma, lymph nodes of multiple sites +C3714542|T191|HT|200.1|ICD9CM|Lymphosarcoma|Lymphosarcoma +C0375076|T191|PT|200.10|ICD9CM|Lymphosarcoma, unspecified site, extranodal and solid organ sites|Lymphosarcoma, unspecified site, extranodal and solid organ sites +C0375076|T191|AB|200.10|ICD9CM|Lymphsrc unsp xtrndl org|Lymphsrc unsp xtrndl org +C0153704|T191|AB|200.11|ICD9CM|Lymphosarcoma head|Lymphosarcoma head +C0153704|T191|PT|200.11|ICD9CM|Lymphosarcoma, lymph nodes of head, face, and neck|Lymphosarcoma, lymph nodes of head, face, and neck +C0153705|T191|AB|200.12|ICD9CM|Lymphosarcoma thorax|Lymphosarcoma thorax +C0153705|T191|PT|200.12|ICD9CM|Lymphosarcoma, intrathoracic lymph nodes|Lymphosarcoma, intrathoracic lymph nodes +C0153706|T191|AB|200.13|ICD9CM|Lymphosarcoma abdom|Lymphosarcoma abdom +C0153706|T191|PT|200.13|ICD9CM|Lymphosarcoma, intra-abdominal lymph nodes|Lymphosarcoma, intra-abdominal lymph nodes +C0153707|T191|AB|200.14|ICD9CM|Lymphosarcoma axilla|Lymphosarcoma axilla +C0153707|T191|PT|200.14|ICD9CM|Lymphosarcoma, lymph nodes of axilla and upper limb|Lymphosarcoma, lymph nodes of axilla and upper limb +C0153708|T191|AB|200.15|ICD9CM|Lymphosarcoma inguin|Lymphosarcoma inguin +C0153708|T191|PT|200.15|ICD9CM|Lymphosarcoma, lymph nodes of inguinal region and lower limb|Lymphosarcoma, lymph nodes of inguinal region and lower limb +C0153709|T191|AB|200.16|ICD9CM|Lymphosarcoma pelvic|Lymphosarcoma pelvic +C0153709|T191|PT|200.16|ICD9CM|Lymphosarcoma, intrapelvic lymph nodes|Lymphosarcoma, intrapelvic lymph nodes +C0153710|T191|AB|200.17|ICD9CM|Lymphosarcoma spleen|Lymphosarcoma spleen +C0153710|T191|PT|200.17|ICD9CM|Lymphosarcoma, spleen|Lymphosarcoma, spleen +C0153711|T191|AB|200.18|ICD9CM|Lymphosarcoma mult|Lymphosarcoma mult +C0153711|T191|PT|200.18|ICD9CM|Lymphosarcoma, lymph nodes of multiple sites|Lymphosarcoma, lymph nodes of multiple sites +C0006413|T191|HT|200.2|ICD9CM|Burkitt's tumor or lymphoma|Burkitt's tumor or lymphoma +C0375077|T191|AB|200.20|ICD9CM|Brkt tmr unsp xtrndl org|Brkt tmr unsp xtrndl org +C0375077|T191|PT|200.20|ICD9CM|Burkitt's tumor or lymphoma, unspecified site, extranodal and solid organ sites|Burkitt's tumor or lymphoma, unspecified site, extranodal and solid organ sites +C0153712|T191|AB|200.21|ICD9CM|Burkitt's tumor head|Burkitt's tumor head +C0153712|T191|PT|200.21|ICD9CM|Burkitt's tumor or lymphoma, lymph nodes of head, face, and neck|Burkitt's tumor or lymphoma, lymph nodes of head, face, and neck +C0153713|T191|PT|200.22|ICD9CM|Burkitt's tumor or lymphoma, intrathoracic lymph nodes|Burkitt's tumor or lymphoma, intrathoracic lymph nodes +C0153713|T191|AB|200.22|ICD9CM|Burkitt's tumor thorax|Burkitt's tumor thorax +C0153714|T191|AB|200.23|ICD9CM|Burkitt's tumor abdom|Burkitt's tumor abdom +C0153714|T191|PT|200.23|ICD9CM|Burkitt's tumor or lymphoma, intra-abdominal lymph nodes|Burkitt's tumor or lymphoma, intra-abdominal lymph nodes +C0153715|T191|AB|200.24|ICD9CM|Burkitt's tumor axilla|Burkitt's tumor axilla +C0153715|T191|PT|200.24|ICD9CM|Burkitt's tumor or lymphoma, lymph nodes of axilla and upper limb|Burkitt's tumor or lymphoma, lymph nodes of axilla and upper limb +C0153716|T191|AB|200.25|ICD9CM|Burkitt's tumor inguin|Burkitt's tumor inguin +C0153716|T191|PT|200.25|ICD9CM|Burkitt's tumor or lymphoma, lymph nodes of inguinal region and lower limb|Burkitt's tumor or lymphoma, lymph nodes of inguinal region and lower limb +C0153717|T191|PT|200.26|ICD9CM|Burkitt's tumor or lymphoma, intrapelvic lymph nodes|Burkitt's tumor or lymphoma, intrapelvic lymph nodes +C0153717|T191|AB|200.26|ICD9CM|Burkitt's tumor pelvic|Burkitt's tumor pelvic +C0686546|T191|PT|200.27|ICD9CM|Burkitt's tumor or lymphoma, spleen|Burkitt's tumor or lymphoma, spleen +C0686546|T191|AB|200.27|ICD9CM|Burkitt's tumor spleen|Burkitt's tumor spleen +C0153719|T191|AB|200.28|ICD9CM|Burkitt's tumor mult|Burkitt's tumor mult +C0153719|T191|PT|200.28|ICD9CM|Burkitt's tumor or lymphoma, lymph nodes of multiple sites|Burkitt's tumor or lymphoma, lymph nodes of multiple sites +C1367654|T191|HT|200.3|ICD9CM|Marginal zone lymphoma|Marginal zone lymphoma +C1955681|T191|PT|200.30|ICD9CM|Marginal zone lymphoma, unspecified site, extranodal and solid organ sites|Marginal zone lymphoma, unspecified site, extranodal and solid organ sites +C1955681|T191|AB|200.30|ICD9CM|Margnl zone lym xtrndl|Margnl zone lym xtrndl +C1955682|T191|AB|200.31|ICD9CM|Margin zone lym head|Margin zone lym head +C1955682|T191|PT|200.31|ICD9CM|Marginal zone lymphoma, lymph nodes of head, face, and neck|Marginal zone lymphoma, lymph nodes of head, face, and neck +C1955683|T191|AB|200.32|ICD9CM|Margin zone lym thorax|Margin zone lym thorax +C1955683|T191|PT|200.32|ICD9CM|Marginal zone lymphoma, intrathoracic lymph nodes|Marginal zone lymphoma, intrathoracic lymph nodes +C1955684|T191|AB|200.33|ICD9CM|Margin zone lym abdom|Margin zone lym abdom +C1955684|T191|PT|200.33|ICD9CM|Marginal zone lymphoma, intraabdominal lymph nodes|Marginal zone lymphoma, intraabdominal lymph nodes +C1955685|T191|AB|200.34|ICD9CM|Margin zone lym axilla|Margin zone lym axilla +C1955685|T191|PT|200.34|ICD9CM|Marginal zone lymphoma, lymph nodes of axilla and upper limb|Marginal zone lymphoma, lymph nodes of axilla and upper limb +C1955686|T191|AB|200.35|ICD9CM|Margin zone lym inguin|Margin zone lym inguin +C1955686|T191|PT|200.35|ICD9CM|Marginal zone lymphoma, lymph nodes of inguinal region and lower limb|Marginal zone lymphoma, lymph nodes of inguinal region and lower limb +C1955687|T191|AB|200.36|ICD9CM|Margin zone lym pelvic|Margin zone lym pelvic +C1955687|T191|PT|200.36|ICD9CM|Marginal zone lymphoma, intrapelvic lymph nodes|Marginal zone lymphoma, intrapelvic lymph nodes +C0349632|T191|AB|200.37|ICD9CM|Margin zone lymph spleen|Margin zone lymph spleen +C0349632|T191|PT|200.37|ICD9CM|Marginal zone lymphoma, spleen|Marginal zone lymphoma, spleen +C1955689|T191|AB|200.38|ICD9CM|Margin zone lymph multip|Margin zone lymph multip +C1955689|T191|PT|200.38|ICD9CM|Marginal zone lymphoma, lymph nodes of multiple sites|Marginal zone lymphoma, lymph nodes of multiple sites +C4721414|T191|HT|200.4|ICD9CM|Mantle cell lymphoma|Mantle cell lymphoma +C1955691|T191|AB|200.40|ICD9CM|Mantle cell lym xtrrndl|Mantle cell lym xtrrndl +C1955691|T191|PT|200.40|ICD9CM|Mantle cell lymphoma, unspecified site, extranodal and solid organ sites|Mantle cell lymphoma, unspecified site, extranodal and solid organ sites +C2853895|T191|AB|200.41|ICD9CM|Mantle cell lymph head|Mantle cell lymph head +C2853895|T191|PT|200.41|ICD9CM|Mantle cell lymphoma, lymph nodes of head, face, and neck|Mantle cell lymphoma, lymph nodes of head, face, and neck +C2853896|T191|AB|200.42|ICD9CM|Mantle cell lymph thorax|Mantle cell lymph thorax +C2853896|T191|PT|200.42|ICD9CM|Mantle cell lymphoma, intrathoracic lymph nodes|Mantle cell lymphoma, intrathoracic lymph nodes +C2853897|T191|AB|200.43|ICD9CM|Mantle cell lymph abdom|Mantle cell lymph abdom +C2853897|T191|PT|200.43|ICD9CM|Mantle cell lymphoma, intra-abdominal lymph nodes|Mantle cell lymphoma, intra-abdominal lymph nodes +C2853898|T191|AB|200.44|ICD9CM|Mantle cell lymph axilla|Mantle cell lymph axilla +C2853898|T191|PT|200.44|ICD9CM|Mantle cell lymphoma, lymph nodes of axilla and upper limb|Mantle cell lymphoma, lymph nodes of axilla and upper limb +C2853899|T191|AB|200.45|ICD9CM|Mantle cell lymph inguin|Mantle cell lymph inguin +C2853899|T191|PT|200.45|ICD9CM|Mantle cell lymphoma, lymph nodes of inguinal region and lower limb|Mantle cell lymphoma, lymph nodes of inguinal region and lower limb +C2853900|T191|AB|200.46|ICD9CM|Mantle cell lymph pelvic|Mantle cell lymph pelvic +C2853900|T191|PT|200.46|ICD9CM|Mantle cell lymphoma, intrapelvic lymph nodes|Mantle cell lymphoma, intrapelvic lymph nodes +C2018777|T191|AB|200.47|ICD9CM|Mantle cell lymph spleen|Mantle cell lymph spleen +C2018777|T191|PT|200.47|ICD9CM|Mantle cell lymphoma, spleen|Mantle cell lymphoma, spleen +C2853901|T191|AB|200.48|ICD9CM|Mantle cell lymph multip|Mantle cell lymph multip +C2853901|T191|PT|200.48|ICD9CM|Mantle cell lymphoma, lymph nodes of multiple sites|Mantle cell lymphoma, lymph nodes of multiple sites +C0280803|T191|HT|200.5|ICD9CM|Primary central nervous system lymphoma|Primary central nervous system lymphoma +C1955700|T191|PT|200.50|ICD9CM|Primary central nervous system lymphoma, unspecified site, extranodal and solid organ sites|Primary central nervous system lymphoma, unspecified site, extranodal and solid organ sites +C1955700|T191|AB|200.50|ICD9CM|Primary CNS lymph xtrndl|Primary CNS lymph xtrndl +C1955701|T191|PT|200.51|ICD9CM|Primary central nervous system lymphoma, lymph nodes of head, face, and neck|Primary central nervous system lymphoma, lymph nodes of head, face, and neck +C1955701|T191|AB|200.51|ICD9CM|Primary CNS lymph head|Primary CNS lymph head +C1955702|T191|PT|200.52|ICD9CM|Primary central nervous system lymphoma, intrathoracic lymph nodes|Primary central nervous system lymphoma, intrathoracic lymph nodes +C1955702|T191|AB|200.52|ICD9CM|Primary CNS lymph thorax|Primary CNS lymph thorax +C1955703|T191|PT|200.53|ICD9CM|Primary central nervous system lymphoma, intra-abdominal lymph nodes|Primary central nervous system lymphoma, intra-abdominal lymph nodes +C1955703|T191|AB|200.53|ICD9CM|Primary CNS lymph abdom|Primary CNS lymph abdom +C1955704|T191|PT|200.54|ICD9CM|Primary central nervous system lymphoma, lymph nodes of axilla and upper limb|Primary central nervous system lymphoma, lymph nodes of axilla and upper limb +C1955704|T191|AB|200.54|ICD9CM|Primary CNS lymph axilla|Primary CNS lymph axilla +C1955705|T191|PT|200.55|ICD9CM|Primary central nervous system lymphoma, lymph nodes of inguinal region and lower limb|Primary central nervous system lymphoma, lymph nodes of inguinal region and lower limb +C1955705|T191|AB|200.55|ICD9CM|Primary CNS lym inguin|Primary CNS lym inguin +C1955706|T191|PT|200.56|ICD9CM|Primary central nervous system lymphoma, intrapelvic lymph nodes|Primary central nervous system lymphoma, intrapelvic lymph nodes +C1955706|T191|AB|200.56|ICD9CM|Primary CNS lymph pelvic|Primary CNS lymph pelvic +C1955707|T191|PT|200.57|ICD9CM|Primary central nervous system lymphoma, spleen|Primary central nervous system lymphoma, spleen +C1955707|T191|AB|200.57|ICD9CM|Primary CNS lymph spleen|Primary CNS lymph spleen +C1955708|T191|PT|200.58|ICD9CM|Primary central nervous system lymphoma, lymph nodes of multiple sites|Primary central nervous system lymphoma, lymph nodes of multiple sites +C1955708|T191|AB|200.58|ICD9CM|Primary CNS lymph multip|Primary CNS lymph multip +C0206180|T191|HT|200.6|ICD9CM|Anaplastic large cell lymphoma|Anaplastic large cell lymphoma +C1955709|T191|PT|200.60|ICD9CM|Anaplastic large cell lymphoma, unspecified site, extranodal and solid organ sites|Anaplastic large cell lymphoma, unspecified site, extranodal and solid organ sites +C1955709|T191|AB|200.60|ICD9CM|Anaplastic lymph xtrndl|Anaplastic lymph xtrndl +C1955710|T191|PT|200.61|ICD9CM|Anaplastic large cell lymphoma, lymph nodes of head, face, and neck|Anaplastic large cell lymphoma, lymph nodes of head, face, and neck +C1955710|T191|AB|200.61|ICD9CM|Anaplastic lymph head|Anaplastic lymph head +C1955711|T191|PT|200.62|ICD9CM|Anaplastic large cell lymphoma, intrathoracic lymph nodes|Anaplastic large cell lymphoma, intrathoracic lymph nodes +C1955711|T191|AB|200.62|ICD9CM|Anaplastic lymph thorax|Anaplastic lymph thorax +C1955712|T191|PT|200.63|ICD9CM|Anaplastic large cell lymphoma, intra-abdominal lymph nodes|Anaplastic large cell lymphoma, intra-abdominal lymph nodes +C1955712|T191|AB|200.63|ICD9CM|Anaplastic lymph abdom|Anaplastic lymph abdom +C1955713|T191|PT|200.64|ICD9CM|Anaplastic large cell lymphoma, lymph nodes of axilla and upper limb|Anaplastic large cell lymphoma, lymph nodes of axilla and upper limb +C1955713|T191|AB|200.64|ICD9CM|Anaplastic lymph axilla|Anaplastic lymph axilla +C1955714|T191|PT|200.65|ICD9CM|Anaplastic large cell lymphoma, lymph nodes of inguinal region and lower limb|Anaplastic large cell lymphoma, lymph nodes of inguinal region and lower limb +C1955714|T191|AB|200.65|ICD9CM|Anaplastic lymph inguin|Anaplastic lymph inguin +C1955715|T191|PT|200.66|ICD9CM|Anaplastic large cell lymphoma, intrapelvic lymph nodes|Anaplastic large cell lymphoma, intrapelvic lymph nodes +C1955715|T191|AB|200.66|ICD9CM|Anaplastic lymph pelvic|Anaplastic lymph pelvic +C2018768|T191|PT|200.67|ICD9CM|Anaplastic large cell lymphoma, spleen|Anaplastic large cell lymphoma, spleen +C2018768|T191|AB|200.67|ICD9CM|Anaplastic lymph spleen|Anaplastic lymph spleen +C1955717|T191|PT|200.68|ICD9CM|Anaplastic large cell lymphoma, lymph nodes of multiple sites|Anaplastic large cell lymphoma, lymph nodes of multiple sites +C1955717|T191|AB|200.68|ICD9CM|Anaplastic lymph multip|Anaplastic lymph multip +C0024302|T191|HT|200.7|ICD9CM|Large cell lymphoma|Large cell lymphoma +C1955718|T191|AB|200.70|ICD9CM|Large cell lymph xtrndl|Large cell lymph xtrndl +C1955718|T191|PT|200.70|ICD9CM|Large cell lymphoma, unspecified site, extranodal and solid organ sites|Large cell lymphoma, unspecified site, extranodal and solid organ sites +C1955719|T191|AB|200.71|ICD9CM|Large cell lymphoma head|Large cell lymphoma head +C1955719|T191|PT|200.71|ICD9CM|Large cell lymphoma, lymph nodes of head, face, and neck|Large cell lymphoma, lymph nodes of head, face, and neck +C1955720|T191|AB|200.72|ICD9CM|Large cell lymph thorax|Large cell lymph thorax +C1955720|T191|PT|200.72|ICD9CM|Large cell lymphoma, intrathoracic lymph nodes|Large cell lymphoma, intrathoracic lymph nodes +C1955721|T047|AB|200.73|ICD9CM|Large cell lymph abdom|Large cell lymph abdom +C1955721|T047|PT|200.73|ICD9CM|Large cell lymphoma, intra-abdominal lymph nodes|Large cell lymphoma, intra-abdominal lymph nodes +C1955722|T191|AB|200.74|ICD9CM|Large cell lymph axilla|Large cell lymph axilla +C1955722|T191|PT|200.74|ICD9CM|Large cell lymphoma, lymph nodes of axilla and upper limb|Large cell lymphoma, lymph nodes of axilla and upper limb +C1955723|T191|AB|200.75|ICD9CM|Large cell lymph inguin|Large cell lymph inguin +C1955723|T191|PT|200.75|ICD9CM|Large cell lymphoma, lymph nodes of inguinal region and lower limb|Large cell lymphoma, lymph nodes of inguinal region and lower limb +C2711042|T191|AB|200.76|ICD9CM|Large cell lymph pelvic|Large cell lymph pelvic +C2711042|T191|PT|200.76|ICD9CM|Large cell lymphoma, intrapelvic lymph nodes|Large cell lymphoma, intrapelvic lymph nodes +C1955725|T191|AB|200.77|ICD9CM|Large cell lymph spleen|Large cell lymph spleen +C1955725|T191|PT|200.77|ICD9CM|Large cell lymphoma, spleen|Large cell lymphoma, spleen +C1955726|T191|AB|200.78|ICD9CM|Large cell lymph multip|Large cell lymph multip +C1955726|T191|PT|200.78|ICD9CM|Large cell lymphoma, lymph nodes of multiple sites|Large cell lymphoma, lymph nodes of multiple sites +C0079955|T191|HT|200.8|ICD9CM|Other named variants of lymphosarcoma and reticulosarcoma|Other named variants of lymphosarcoma and reticulosarcoma +C0375078|T191|AB|200.80|ICD9CM|Oth varn unsp xtrndl org|Oth varn unsp xtrndl org +C0153720|T191|AB|200.81|ICD9CM|Mixed lymphosarc head|Mixed lymphosarc head +C0153720|T191|PT|200.81|ICD9CM|Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of head, face, and neck|Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of head, face, and neck +C0153721|T191|AB|200.82|ICD9CM|Mixed lymphosarc thorax|Mixed lymphosarc thorax +C0153721|T191|PT|200.82|ICD9CM|Other named variants of lymphosarcoma and reticulosarcoma,intrathoracic lymph nodes|Other named variants of lymphosarcoma and reticulosarcoma,intrathoracic lymph nodes +C0153722|T191|AB|200.83|ICD9CM|Mixed lymphosarc abdom|Mixed lymphosarc abdom +C0153722|T191|PT|200.83|ICD9CM|Other named variants of lymphosarcoma and reticulosarcoma, intra-abdominal lymph nodes|Other named variants of lymphosarcoma and reticulosarcoma, intra-abdominal lymph nodes +C0153723|T191|AB|200.84|ICD9CM|Mixed lymphosarc axilla|Mixed lymphosarc axilla +C0153723|T191|PT|200.84|ICD9CM|Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of axilla and upper limb|Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of axilla and upper limb +C0153724|T191|AB|200.85|ICD9CM|Mixed lymphosarc inguin|Mixed lymphosarc inguin +C0153725|T191|AB|200.86|ICD9CM|Mixed lymphosarc pelvic|Mixed lymphosarc pelvic +C0153725|T191|PT|200.86|ICD9CM|Other named variants of lymphosarcoma and reticulosarcoma, intrapelvic lymph nodes|Other named variants of lymphosarcoma and reticulosarcoma, intrapelvic lymph nodes +C0153726|T191|AB|200.87|ICD9CM|Mixed lymphosarc spleen|Mixed lymphosarc spleen +C0153726|T191|PT|200.87|ICD9CM|Other named variants of lymphosarcoma and reticulosarcoma, spleen|Other named variants of lymphosarcoma and reticulosarcoma, spleen +C0153727|T191|AB|200.88|ICD9CM|Mixed lymphosarc mult|Mixed lymphosarc mult +C0153727|T191|PT|200.88|ICD9CM|Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of multiple sites|Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of multiple sites +C0019829|T191|HT|201|ICD9CM|Hodgkin's disease|Hodgkin's disease +C0019829|T191|HT|201.0|ICD9CM|Hodgkin's paragranuloma|Hodgkin's paragranuloma +C0686560|T191|AB|201.00|ICD9CM|Hdgk prg unsp xtrndl org|Hdgk prg unsp xtrndl org +C0686560|T191|PT|201.00|ICD9CM|Hodgkin's paragranuloma, unspecified site, extranodal and solid organ sites|Hodgkin's paragranuloma, unspecified site, extranodal and solid organ sites +C0153728|T191|PT|201.01|ICD9CM|Hodgkin's paragranuloma, lymph nodes of head, face, and neck|Hodgkin's paragranuloma, lymph nodes of head, face, and neck +C0153728|T191|AB|201.01|ICD9CM|Hodgkins paragran head|Hodgkins paragran head +C0153729|T191|PT|201.02|ICD9CM|Hodgkin's paragranuloma, intrathoracic lymph nodes|Hodgkin's paragranuloma, intrathoracic lymph nodes +C0153729|T191|AB|201.02|ICD9CM|Hodgkins paragran thorax|Hodgkins paragran thorax +C0153730|T191|PT|201.03|ICD9CM|Hodgkin's paragranuloma, intra-abdominal lymph nodes|Hodgkin's paragranuloma, intra-abdominal lymph nodes +C0153730|T191|AB|201.03|ICD9CM|Hodgkins paragran abdom|Hodgkins paragran abdom +C0153731|T191|PT|201.04|ICD9CM|Hodgkin's paragranuloma, lymph nodes of axilla and upper limb|Hodgkin's paragranuloma, lymph nodes of axilla and upper limb +C0153731|T191|AB|201.04|ICD9CM|Hodgkins paragran axilla|Hodgkins paragran axilla +C0153732|T191|PT|201.05|ICD9CM|Hodgkin's paragranuloma, lymph nodes of inguinal region and lower limb|Hodgkin's paragranuloma, lymph nodes of inguinal region and lower limb +C0153732|T191|AB|201.05|ICD9CM|Hodgkins paragran inguin|Hodgkins paragran inguin +C0153733|T191|PT|201.06|ICD9CM|Hodgkin's paragranuloma, intrapelvic lymph nodes|Hodgkin's paragranuloma, intrapelvic lymph nodes +C0153733|T191|AB|201.06|ICD9CM|Hodgkins paragran pelvic|Hodgkins paragran pelvic +C0153734|T191|PT|201.07|ICD9CM|Hodgkin's paragranuloma, spleen|Hodgkin's paragranuloma, spleen +C0153734|T191|AB|201.07|ICD9CM|Hodgkins paragran spleen|Hodgkins paragran spleen +C0432534|T191|PT|201.08|ICD9CM|Hodgkin's paragranuloma, lymph nodes of multiple sites|Hodgkin's paragranuloma, lymph nodes of multiple sites +C0432534|T191|AB|201.08|ICD9CM|Hodgkins paragran mult|Hodgkins paragran mult +C0019829|T191|HT|201.1|ICD9CM|Hodgkin's granuloma|Hodgkin's granuloma +C0375080|T191|AB|201.10|ICD9CM|Hdgk grn unsp xtrndl org|Hdgk grn unsp xtrndl org +C0375080|T191|PT|201.10|ICD9CM|Hodgkin's granuloma, unspecified site, extranodal and solid organ sites|Hodgkin's granuloma, unspecified site, extranodal and solid organ sites +C0153736|T191|PT|201.11|ICD9CM|Hodgkin's granuloma, lymph nodes of head, face, and neck|Hodgkin's granuloma, lymph nodes of head, face, and neck +C0153736|T191|AB|201.11|ICD9CM|Hodgkins granulom head|Hodgkins granulom head +C0153737|T191|PT|201.12|ICD9CM|Hodgkin's granuloma, intrathoracic lymph nodes|Hodgkin's granuloma, intrathoracic lymph nodes +C0153737|T191|AB|201.12|ICD9CM|Hodgkins granulom thorax|Hodgkins granulom thorax +C0153738|T191|PT|201.13|ICD9CM|Hodgkin's granuloma, intra-abdominal lymph nodes|Hodgkin's granuloma, intra-abdominal lymph nodes +C0153738|T191|AB|201.13|ICD9CM|Hodgkins granulom abdom|Hodgkins granulom abdom +C0153739|T191|PT|201.14|ICD9CM|Hodgkin's granuloma, lymph nodes of axilla and upper limb|Hodgkin's granuloma, lymph nodes of axilla and upper limb +C0153739|T191|AB|201.14|ICD9CM|Hodgkins granulom axilla|Hodgkins granulom axilla +C0153740|T191|PT|201.15|ICD9CM|Hodgkin's granuloma, lymph nodes of inguinal region and lower limb|Hodgkin's granuloma, lymph nodes of inguinal region and lower limb +C0153740|T191|AB|201.15|ICD9CM|Hodgkins granulom inguin|Hodgkins granulom inguin +C0153741|T191|PT|201.16|ICD9CM|Hodgkin's granuloma, intrapelvic lymph nodes|Hodgkin's granuloma, intrapelvic lymph nodes +C0153741|T191|AB|201.16|ICD9CM|Hodgkins granulom pelvic|Hodgkins granulom pelvic +C0700143|T191|PT|201.17|ICD9CM|Hodgkin's granuloma, spleen|Hodgkin's granuloma, spleen +C0700143|T191|AB|201.17|ICD9CM|Hodgkins granulom spleen|Hodgkins granulom spleen +C0153742|T191|PT|201.18|ICD9CM|Hodgkin's granuloma, lymph nodes of multiple sites|Hodgkin's granuloma, lymph nodes of multiple sites +C0153742|T191|AB|201.18|ICD9CM|Hodgkins granulom mult|Hodgkins granulom mult +C0019829|T191|HT|201.2|ICD9CM|Hodgkin's sarcoma|Hodgkin's sarcoma +C0375081|T191|AB|201.20|ICD9CM|Hdgk src unsp xtrndl org|Hdgk src unsp xtrndl org +C0375081|T191|PT|201.20|ICD9CM|Hodgkin's sarcoma, unspecified site, extranodal and solid organ sites|Hodgkin's sarcoma, unspecified site, extranodal and solid organ sites +C0153744|T191|PT|201.21|ICD9CM|Hodgkin's sarcoma, lymph nodes of head, face, and neck|Hodgkin's sarcoma, lymph nodes of head, face, and neck +C0153744|T191|AB|201.21|ICD9CM|Hodgkins sarcoma head|Hodgkins sarcoma head +C0153745|T191|PT|201.22|ICD9CM|Hodgkin's sarcoma, intrathoracic lymph nodes|Hodgkin's sarcoma, intrathoracic lymph nodes +C0153745|T191|AB|201.22|ICD9CM|Hodgkins sarcoma thorax|Hodgkins sarcoma thorax +C0153746|T191|PT|201.23|ICD9CM|Hodgkin's sarcoma, intra-abdominal lymph nodes|Hodgkin's sarcoma, intra-abdominal lymph nodes +C0153746|T191|AB|201.23|ICD9CM|Hodgkins sarcoma abdom|Hodgkins sarcoma abdom +C0153747|T191|PT|201.24|ICD9CM|Hodgkin's sarcoma, lymph nodes of axilla and upper limb|Hodgkin's sarcoma, lymph nodes of axilla and upper limb +C0153747|T191|AB|201.24|ICD9CM|Hodgkins sarcoma axilla|Hodgkins sarcoma axilla +C0153748|T191|PT|201.25|ICD9CM|Hodgkin's sarcoma, lymph nodes of inguinal region and lower limb|Hodgkin's sarcoma, lymph nodes of inguinal region and lower limb +C0153748|T191|AB|201.25|ICD9CM|Hodgkins sarcoma inguin|Hodgkins sarcoma inguin +C0153749|T191|PT|201.26|ICD9CM|Hodgkin's sarcoma, intrapelvic lymph nodes|Hodgkin's sarcoma, intrapelvic lymph nodes +C0153749|T191|AB|201.26|ICD9CM|Hodgkins sarcoma pelvic|Hodgkins sarcoma pelvic +C0153750|T191|PT|201.27|ICD9CM|Hodgkin's sarcoma, spleen|Hodgkin's sarcoma, spleen +C0153750|T191|AB|201.27|ICD9CM|Hodgkins sarcoma spleen|Hodgkins sarcoma spleen +C0153751|T191|PT|201.28|ICD9CM|Hodgkin's sarcoma, lymph nodes of multiple sites|Hodgkin's sarcoma, lymph nodes of multiple sites +C0153751|T191|AB|201.28|ICD9CM|Hodgkins sarcoma mult|Hodgkins sarcoma mult +C1266194|T191|HT|201.4|ICD9CM|Hodgkin's disease, lymphocytic-histiocytic predominance|Hodgkin's disease, lymphocytic-histiocytic predominance +C0375082|T191|AB|201.40|ICD9CM|Lym-hst unsp xtrndl orgn|Lym-hst unsp xtrndl orgn +C0153752|T191|AB|201.41|ICD9CM|Hodg lymph-histio head|Hodg lymph-histio head +C0153752|T191|PT|201.41|ICD9CM|Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of head, face, and neck|Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of head, face, and neck +C0153753|T191|AB|201.42|ICD9CM|Hodg lymph-histio thorax|Hodg lymph-histio thorax +C0153753|T191|PT|201.42|ICD9CM|Hodgkin's disease, lymphocytic-histiocytic predominance, intrathoracic lymph nodes|Hodgkin's disease, lymphocytic-histiocytic predominance, intrathoracic lymph nodes +C0153754|T191|AB|201.43|ICD9CM|Hodg lymph-histio abdom|Hodg lymph-histio abdom +C0153754|T191|PT|201.43|ICD9CM|Hodgkin's disease, lymphocytic-histiocytic predominance, intra-abdominal lymph nodes|Hodgkin's disease, lymphocytic-histiocytic predominance, intra-abdominal lymph nodes +C0153755|T191|AB|201.44|ICD9CM|Hodg lymph-histio axilla|Hodg lymph-histio axilla +C0153755|T191|PT|201.44|ICD9CM|Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of axilla and upper limb|Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of axilla and upper limb +C0153756|T191|AB|201.45|ICD9CM|Hodg lymph-histio inguin|Hodg lymph-histio inguin +C0153757|T191|AB|201.46|ICD9CM|Hodg lymph-histio pelvic|Hodg lymph-histio pelvic +C0153757|T191|PT|201.46|ICD9CM|Hodgkin's disease, lymphocytic-histiocytic predominance, intrapelvic lymph nodes|Hodgkin's disease, lymphocytic-histiocytic predominance, intrapelvic lymph nodes +C0153758|T191|AB|201.47|ICD9CM|Hodg lymph-histio spleen|Hodg lymph-histio spleen +C0153758|T191|PT|201.47|ICD9CM|Hodgkin's disease, lymphocytic-histiocytic predominance, spleen|Hodgkin's disease, lymphocytic-histiocytic predominance, spleen +C0153759|T191|AB|201.48|ICD9CM|Hodg lymph-histio mult|Hodg lymph-histio mult +C0153759|T191|PT|201.48|ICD9CM|Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of multiple sites|Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of multiple sites +C0152268|T191|HT|201.5|ICD9CM|Hodgkin's disease, nodular sclerosis|Hodgkin's disease, nodular sclerosis +C0375083|T191|PT|201.50|ICD9CM|Hodgkin's disease, nodular sclerosis, unspecified site, extranodal and solid organ sites|Hodgkin's disease, nodular sclerosis, unspecified site, extranodal and solid organ sites +C0375083|T191|AB|201.50|ICD9CM|Ndr sclr unsp xtrndl org|Ndr sclr unsp xtrndl org +C0153760|T191|AB|201.51|ICD9CM|Hodg nodul sclero head|Hodg nodul sclero head +C0153760|T191|PT|201.51|ICD9CM|Hodgkin's disease, nodular sclerosis, lymph nodes of head, face, and neck|Hodgkin's disease, nodular sclerosis, lymph nodes of head, face, and neck +C0153761|T191|AB|201.52|ICD9CM|Hodg nodul sclero thorax|Hodg nodul sclero thorax +C0153761|T191|PT|201.52|ICD9CM|Hodgkin's disease, nodular sclerosis, intrathoracic lymph nodes|Hodgkin's disease, nodular sclerosis, intrathoracic lymph nodes +C0153762|T191|AB|201.53|ICD9CM|Hodg nodul sclero abdom|Hodg nodul sclero abdom +C0153762|T191|PT|201.53|ICD9CM|Hodgkin's disease, nodular sclerosis, intra-abdominal lymph nodes|Hodgkin's disease, nodular sclerosis, intra-abdominal lymph nodes +C0153763|T191|AB|201.54|ICD9CM|Hodg nodul sclero axilla|Hodg nodul sclero axilla +C0153763|T191|PT|201.54|ICD9CM|Hodgkin's disease, nodular sclerosis, lymph nodes of axilla and upper limb|Hodgkin's disease, nodular sclerosis, lymph nodes of axilla and upper limb +C0153764|T191|AB|201.55|ICD9CM|Hodg nodul sclero inguin|Hodg nodul sclero inguin +C0153764|T191|PT|201.55|ICD9CM|Hodgkin's disease, nodular sclerosis, lymph nodes of inguinal region and lower limb|Hodgkin's disease, nodular sclerosis, lymph nodes of inguinal region and lower limb +C0153765|T191|AB|201.56|ICD9CM|Hodg nodul sclero pelvic|Hodg nodul sclero pelvic +C0153765|T191|PT|201.56|ICD9CM|Hodgkin's disease, nodular sclerosis, intrapelvic lymph nodes|Hodgkin's disease, nodular sclerosis, intrapelvic lymph nodes +C0153766|T191|AB|201.57|ICD9CM|Hodg nodul sclero spleen|Hodg nodul sclero spleen +C0153766|T191|PT|201.57|ICD9CM|Hodgkin's disease, nodular sclerosis, spleen|Hodgkin's disease, nodular sclerosis, spleen +C0153767|T191|AB|201.58|ICD9CM|Hodg nodul sclero mult|Hodg nodul sclero mult +C0153767|T191|PT|201.58|ICD9CM|Hodgkin's disease, nodular sclerosis, lymph nodes of multiple sites|Hodgkin's disease, nodular sclerosis, lymph nodes of multiple sites +C0152266|T191|HT|201.6|ICD9CM|Hodgkin's disease, mixed cellularity|Hodgkin's disease, mixed cellularity +C0375084|T191|PT|201.60|ICD9CM|Hodgkin's disease, mixed cellularity, unspecified site, extranodal and solid organ sites|Hodgkin's disease, mixed cellularity, unspecified site, extranodal and solid organ sites +C0375084|T191|AB|201.60|ICD9CM|Mxd celr unsp xtrndl org|Mxd celr unsp xtrndl org +C0153768|T191|PT|201.61|ICD9CM|Hodgkin's disease, mixed cellularity, lymph nodes of head, face, and neck|Hodgkin's disease, mixed cellularity, lymph nodes of head, face, and neck +C0153768|T191|AB|201.61|ICD9CM|Hodgkins mix cell head|Hodgkins mix cell head +C0153769|T191|PT|201.62|ICD9CM|Hodgkin's disease, mixed cellularity, intrathoracic lymph nodes|Hodgkin's disease, mixed cellularity, intrathoracic lymph nodes +C0153769|T191|AB|201.62|ICD9CM|Hodgkins mix cell thorax|Hodgkins mix cell thorax +C0153770|T191|PT|201.63|ICD9CM|Hodgkin's disease, mixed cellularity, intra-abdominal lymph nodes|Hodgkin's disease, mixed cellularity, intra-abdominal lymph nodes +C0153770|T191|AB|201.63|ICD9CM|Hodgkins mix cell abdom|Hodgkins mix cell abdom +C0153771|T191|PT|201.64|ICD9CM|Hodgkin's disease, mixed cellularity, lymph nodes of axilla and upper limb|Hodgkin's disease, mixed cellularity, lymph nodes of axilla and upper limb +C0153771|T191|AB|201.64|ICD9CM|Hodgkins mix cell axilla|Hodgkins mix cell axilla +C0153772|T191|PT|201.65|ICD9CM|Hodgkin's disease, mixed cellularity, lymph nodes of inguinal region and lower limb|Hodgkin's disease, mixed cellularity, lymph nodes of inguinal region and lower limb +C0153772|T191|AB|201.65|ICD9CM|Hodgkins mix cell inguin|Hodgkins mix cell inguin +C0153773|T191|PT|201.66|ICD9CM|Hodgkin's disease, mixed cellularity, intrapelvic lymph nodes|Hodgkin's disease, mixed cellularity, intrapelvic lymph nodes +C0153773|T191|AB|201.66|ICD9CM|Hodgkins mix cell pelvic|Hodgkins mix cell pelvic +C0153774|T191|PT|201.67|ICD9CM|Hodgkin's disease, mixed cellularity, spleen|Hodgkin's disease, mixed cellularity, spleen +C0153774|T191|AB|201.67|ICD9CM|Hodgkins mix cell spleen|Hodgkins mix cell spleen +C0153775|T191|PT|201.68|ICD9CM|Hodgkin's disease, mixed cellularity, lymph nodes of multiple sites|Hodgkin's disease, mixed cellularity, lymph nodes of multiple sites +C0153775|T191|AB|201.68|ICD9CM|Hodgkins mix cell mult|Hodgkins mix cell mult +C0152267|T191|HT|201.7|ICD9CM|Hodgkin's disease, lymphocytic depletion|Hodgkin's disease, lymphocytic depletion +C0375085|T191|PT|201.70|ICD9CM|Hodgkin's disease, lymphocytic depletion, unspecified site, extranodal and solid organ sites|Hodgkin's disease, lymphocytic depletion, unspecified site, extranodal and solid organ sites +C0375085|T191|AB|201.70|ICD9CM|Lym dplt unsp xtrndl org|Lym dplt unsp xtrndl org +C0153776|T191|AB|201.71|ICD9CM|Hodg lymph deplet head|Hodg lymph deplet head +C0153776|T191|PT|201.71|ICD9CM|Hodgkin's disease, lymphocytic depletion, lymph nodes of head, face, and neck|Hodgkin's disease, lymphocytic depletion, lymph nodes of head, face, and neck +C0153777|T191|AB|201.72|ICD9CM|Hodg lymph deplet thorax|Hodg lymph deplet thorax +C0153777|T191|PT|201.72|ICD9CM|Hodgkin's disease, lymphocytic depletion, intrathoracic lymph nodes|Hodgkin's disease, lymphocytic depletion, intrathoracic lymph nodes +C0153778|T191|AB|201.73|ICD9CM|Hodg lymph deplet abdom|Hodg lymph deplet abdom +C0153778|T191|PT|201.73|ICD9CM|Hodgkin's disease, lymphocytic depletion, intra-abdominal lymph nodes|Hodgkin's disease, lymphocytic depletion, intra-abdominal lymph nodes +C0153779|T191|AB|201.74|ICD9CM|Hodg lymph deplet axilla|Hodg lymph deplet axilla +C0153779|T191|PT|201.74|ICD9CM|Hodgkin's disease, lymphocytic depletion, lymph nodes of axilla and upper limb|Hodgkin's disease, lymphocytic depletion, lymph nodes of axilla and upper limb +C0153780|T191|AB|201.75|ICD9CM|Hodg lymph deplet inguin|Hodg lymph deplet inguin +C0153780|T191|PT|201.75|ICD9CM|Hodgkin's disease, lymphocytic depletion, lymph nodes of inguinal region and lower limb|Hodgkin's disease, lymphocytic depletion, lymph nodes of inguinal region and lower limb +C0153781|T191|AB|201.76|ICD9CM|Hodg lymph deplet pelvic|Hodg lymph deplet pelvic +C0153781|T191|PT|201.76|ICD9CM|Hodgkin's disease, lymphocytic depletion, intrapelvic lymph nodes|Hodgkin's disease, lymphocytic depletion, intrapelvic lymph nodes +C0153782|T191|AB|201.77|ICD9CM|Hodg lymph deplet spleen|Hodg lymph deplet spleen +C0153782|T191|PT|201.77|ICD9CM|Hodgkin's disease, lymphocytic depletion, spleen|Hodgkin's disease, lymphocytic depletion, spleen +C0153783|T191|AB|201.78|ICD9CM|Hodg lymph deplet mult|Hodg lymph deplet mult +C0153783|T191|PT|201.78|ICD9CM|Hodgkin's disease, lymphocytic depletion, lymph nodes of multiple sites|Hodgkin's disease, lymphocytic depletion, lymph nodes of multiple sites +C0019829|T191|HT|201.9|ICD9CM|Hodgkin's disease, unspecified type|Hodgkin's disease, unspecified type +C0375086|T191|AB|201.90|ICD9CM|Hdgk dis unsp xtrndl org|Hdgk dis unsp xtrndl org +C0375086|T191|PT|201.90|ICD9CM|Hodgkin's disease, unspecified type, unspecified site, extranodal and solid organ sites|Hodgkin's disease, unspecified type, unspecified site, extranodal and solid organ sites +C0153785|T191|PT|201.91|ICD9CM|Hodgkin's disease, unspecified type, lymph nodes of head, face, and neck|Hodgkin's disease, unspecified type, lymph nodes of head, face, and neck +C0153785|T191|AB|201.91|ICD9CM|Hodgkins dis NOS head|Hodgkins dis NOS head +C0153786|T191|PT|201.92|ICD9CM|Hodgkin's disease, unspecified type, intrathoracic lymph nodes|Hodgkin's disease, unspecified type, intrathoracic lymph nodes +C0153786|T191|AB|201.92|ICD9CM|Hodgkins dis NOS thorax|Hodgkins dis NOS thorax +C1306638|T191|PT|201.93|ICD9CM|Hodgkin's disease, unspecified type, intra-abdominal lymph nodes|Hodgkin's disease, unspecified type, intra-abdominal lymph nodes +C1306638|T191|AB|201.93|ICD9CM|Hodgkins dis NOS abdom|Hodgkins dis NOS abdom +C0153788|T191|PT|201.94|ICD9CM|Hodgkin's disease, unspecified type, lymph nodes of axilla and upper limb|Hodgkin's disease, unspecified type, lymph nodes of axilla and upper limb +C0153788|T191|AB|201.94|ICD9CM|Hodgkins dis NOS axilla|Hodgkins dis NOS axilla +C0153789|T191|PT|201.95|ICD9CM|Hodgkin's disease, unspecified type, lymph nodes of inguinal region and lower limb|Hodgkin's disease, unspecified type, lymph nodes of inguinal region and lower limb +C0153789|T191|AB|201.95|ICD9CM|Hodgkins dis NOS inguin|Hodgkins dis NOS inguin +C0153790|T191|PT|201.96|ICD9CM|Hodgkin's disease, unspecified type, intrapelvic lymph nodes|Hodgkin's disease, unspecified type, intrapelvic lymph nodes +C0153790|T191|AB|201.96|ICD9CM|Hodgkins dis NOS pelvic|Hodgkins dis NOS pelvic +C0153791|T191|PT|201.97|ICD9CM|Hodgkin's disease, unspecified type, spleen|Hodgkin's disease, unspecified type, spleen +C0153791|T191|AB|201.97|ICD9CM|Hodgkins dis NOS spleen|Hodgkins dis NOS spleen +C0153792|T191|PT|201.98|ICD9CM|Hodgkin's disease, unspecified type, lymph nodes of multiple sites|Hodgkin's disease, unspecified type, lymph nodes of multiple sites +C0153792|T191|AB|201.98|ICD9CM|Hodgkins dis NOS mult|Hodgkins dis NOS mult +C0153793|T191|HT|202|ICD9CM|Other malignant neoplasms of lymphoid and histiocytic tissue|Other malignant neoplasms of lymphoid and histiocytic tissue +C0024301|T191|HT|202.0|ICD9CM|Nodular lymphoma|Nodular lymphoma +C0375087|T191|AB|202.00|ICD9CM|Ndlr lym unsp xtrndl org|Ndlr lym unsp xtrndl org +C0375087|T191|PT|202.00|ICD9CM|Nodular lymphoma, unspecified site, extranodal and solid organ sites|Nodular lymphoma, unspecified site, extranodal and solid organ sites +C0153794|T191|AB|202.01|ICD9CM|Nodular lymphoma head|Nodular lymphoma head +C0153794|T191|PT|202.01|ICD9CM|Nodular lymphoma, lymph nodes of head, face, and neck|Nodular lymphoma, lymph nodes of head, face, and neck +C0153795|T191|AB|202.02|ICD9CM|Nodular lymphoma thorax|Nodular lymphoma thorax +C0153795|T191|PT|202.02|ICD9CM|Nodular lymphoma, intrathoracic lymph nodes|Nodular lymphoma, intrathoracic lymph nodes +C0153796|T191|AB|202.03|ICD9CM|Nodular lymphoma abdom|Nodular lymphoma abdom +C0153796|T191|PT|202.03|ICD9CM|Nodular lymphoma, intra-abdominal lymph nodes|Nodular lymphoma, intra-abdominal lymph nodes +C0153797|T191|AB|202.04|ICD9CM|Nodular lymphoma axilla|Nodular lymphoma axilla +C0153797|T191|PT|202.04|ICD9CM|Nodular lymphoma, lymph nodes of axilla and upper limb|Nodular lymphoma, lymph nodes of axilla and upper limb +C0153798|T191|AB|202.05|ICD9CM|Nodular lymphoma inguin|Nodular lymphoma inguin +C0153798|T191|PT|202.05|ICD9CM|Nodular lymphoma, lymph nodes of inguinal region and lower limb|Nodular lymphoma, lymph nodes of inguinal region and lower limb +C0153799|T191|AB|202.06|ICD9CM|Nodular lymphoma pelvic|Nodular lymphoma pelvic +C0153799|T191|PT|202.06|ICD9CM|Nodular lymphoma, intrapelvic lymph nodes|Nodular lymphoma, intrapelvic lymph nodes +C0153800|T191|AB|202.07|ICD9CM|Nodular lymphoma spleen|Nodular lymphoma spleen +C0153800|T191|PT|202.07|ICD9CM|Nodular lymphoma, spleen|Nodular lymphoma, spleen +C0153801|T191|AB|202.08|ICD9CM|Nodular lymphoma mult|Nodular lymphoma mult +C0153801|T191|PT|202.08|ICD9CM|Nodular lymphoma, lymph nodes of multiple sites|Nodular lymphoma, lymph nodes of multiple sites +C0026948|T191|HT|202.1|ICD9CM|Mycosis fungoides|Mycosis fungoides +C0375088|T191|PT|202.10|ICD9CM|Mycosis fungoides, unspecified site, extranodal and solid organ sites|Mycosis fungoides, unspecified site, extranodal and solid organ sites +C0375088|T191|AB|202.10|ICD9CM|Mycs fng unsp xtrndl org|Mycs fng unsp xtrndl org +C0153802|T191|AB|202.11|ICD9CM|Mycosis fungoides head|Mycosis fungoides head +C0153802|T191|PT|202.11|ICD9CM|Mycosis fungoides, lymph nodes of head, face, and neck|Mycosis fungoides, lymph nodes of head, face, and neck +C0153803|T191|AB|202.12|ICD9CM|Mycosis fungoides thorax|Mycosis fungoides thorax +C0153803|T191|PT|202.12|ICD9CM|Mycosis fungoides, intrathoracic lymph nodes|Mycosis fungoides, intrathoracic lymph nodes +C0153804|T191|AB|202.13|ICD9CM|Mycosis fungoides abdom|Mycosis fungoides abdom +C0153804|T191|PT|202.13|ICD9CM|Mycosis fungoides, intra-abdominal lymph nodes|Mycosis fungoides, intra-abdominal lymph nodes +C0153805|T191|AB|202.14|ICD9CM|Mycosis fungoides axilla|Mycosis fungoides axilla +C0153805|T191|PT|202.14|ICD9CM|Mycosis fungoides, lymph nodes of axilla and upper limb|Mycosis fungoides, lymph nodes of axilla and upper limb +C0153806|T191|AB|202.15|ICD9CM|Mycosis fungoides inguin|Mycosis fungoides inguin +C0153806|T191|PT|202.15|ICD9CM|Mycosis fungoides, lymph nodes of inguinal region and lower limb|Mycosis fungoides, lymph nodes of inguinal region and lower limb +C0153807|T191|AB|202.16|ICD9CM|Mycosis fungoides pelvic|Mycosis fungoides pelvic +C0153807|T191|PT|202.16|ICD9CM|Mycosis fungoides, intrapelvic lymph nodes|Mycosis fungoides, intrapelvic lymph nodes +C0153808|T191|AB|202.17|ICD9CM|Mycosis fungoides spleen|Mycosis fungoides spleen +C0153808|T191|PT|202.17|ICD9CM|Mycosis fungoides, spleen|Mycosis fungoides, spleen +C0153809|T191|AB|202.18|ICD9CM|Mycosis fungoides mult|Mycosis fungoides mult +C0153809|T191|PT|202.18|ICD9CM|Mycosis fungoides, lymph nodes of multiple sites|Mycosis fungoides, lymph nodes of multiple sites +C0036920|T191|HT|202.2|ICD9CM|Sezary's disease|Sezary's disease +C0375089|T191|PT|202.20|ICD9CM|Sezary's disease, unspecified site, extranodal and solid organ sites|Sezary's disease, unspecified site, extranodal and solid organ sites +C0375089|T191|AB|202.20|ICD9CM|Szry dis unsp xtrndl org|Szry dis unsp xtrndl org +C0153810|T191|AB|202.21|ICD9CM|Sezary's disease head|Sezary's disease head +C0153810|T191|PT|202.21|ICD9CM|Sezary's disease, lymph nodes of head, face, and neck|Sezary's disease, lymph nodes of head, face, and neck +C0153811|T191|AB|202.22|ICD9CM|Sezary's disease thorax|Sezary's disease thorax +C0153811|T191|PT|202.22|ICD9CM|Sezary's disease, intrathoracic lymph nodes|Sezary's disease, intrathoracic lymph nodes +C0153812|T191|AB|202.23|ICD9CM|Sezary's disease abdom|Sezary's disease abdom +C0153812|T191|PT|202.23|ICD9CM|Sezary's disease, intra-abdominal lymph nodes|Sezary's disease, intra-abdominal lymph nodes +C0153813|T191|AB|202.24|ICD9CM|Sezary's disease axilla|Sezary's disease axilla +C0153813|T191|PT|202.24|ICD9CM|Sezary's disease, lymph nodes of axilla and upper limb|Sezary's disease, lymph nodes of axilla and upper limb +C0153814|T191|AB|202.25|ICD9CM|Sezary's disease inguin|Sezary's disease inguin +C0153814|T191|PT|202.25|ICD9CM|Sezary's disease, lymph nodes of inguinal region and lower limb|Sezary's disease, lymph nodes of inguinal region and lower limb +C0153815|T191|AB|202.26|ICD9CM|Sezary's disease pelvic|Sezary's disease pelvic +C0153815|T191|PT|202.26|ICD9CM|Sezary's disease, intrapelvic lymph nodes|Sezary's disease, intrapelvic lymph nodes +C0153816|T191|AB|202.27|ICD9CM|Sezary's disease spleen|Sezary's disease spleen +C0153816|T191|PT|202.27|ICD9CM|Sezary's disease, spleen|Sezary's disease, spleen +C0153817|T191|AB|202.28|ICD9CM|Sezary's disease mult|Sezary's disease mult +C0153817|T191|PT|202.28|ICD9CM|Sezary's disease, lymph nodes of multiple sites|Sezary's disease, lymph nodes of multiple sites +C0019623|T191|HT|202.3|ICD9CM|Malignant histiocytosis|Malignant histiocytosis +C0375090|T191|PT|202.30|ICD9CM|Malignant histiocytosis, unspecified site, extranodal and solid organ sites|Malignant histiocytosis, unspecified site, extranodal and solid organ sites +C0375090|T191|AB|202.30|ICD9CM|Mlg hist unsp xtrndl org|Mlg hist unsp xtrndl org +C0432538|T191|AB|202.31|ICD9CM|Mal histiocytosis head|Mal histiocytosis head +C0432538|T191|PT|202.31|ICD9CM|Malignant histiocytosis, lymph nodes of head, face, and neck|Malignant histiocytosis, lymph nodes of head, face, and neck +C0432539|T191|AB|202.32|ICD9CM|Mal histiocytosis thorax|Mal histiocytosis thorax +C0432539|T191|PT|202.32|ICD9CM|Malignant histiocytosis, intrathoracic lymph nodes|Malignant histiocytosis, intrathoracic lymph nodes +C0432540|T191|AB|202.33|ICD9CM|Mal histiocytosis abdom|Mal histiocytosis abdom +C0432540|T191|PT|202.33|ICD9CM|Malignant histiocytosis, intra-abdominal lymph nodes|Malignant histiocytosis, intra-abdominal lymph nodes +C0432541|T191|AB|202.34|ICD9CM|Mal histiocytosis axilla|Mal histiocytosis axilla +C0432541|T191|PT|202.34|ICD9CM|Malignant histiocytosis, lymph nodes of axilla and upper limb|Malignant histiocytosis, lymph nodes of axilla and upper limb +C0432542|T191|AB|202.35|ICD9CM|Mal histiocytosis inguin|Mal histiocytosis inguin +C0432542|T191|PT|202.35|ICD9CM|Malignant histiocytosis, lymph nodes of inguinal region and lower limb|Malignant histiocytosis, lymph nodes of inguinal region and lower limb +C0432543|T191|AB|202.36|ICD9CM|Mal histiocytosis pelvic|Mal histiocytosis pelvic +C0432543|T191|PT|202.36|ICD9CM|Malignant histiocytosis, intrapelvic lymph nodes|Malignant histiocytosis, intrapelvic lymph nodes +C0432544|T191|AB|202.37|ICD9CM|Mal histiocytosis spleen|Mal histiocytosis spleen +C0432544|T191|PT|202.37|ICD9CM|Malignant histiocytosis, spleen|Malignant histiocytosis, spleen +C0432545|T191|AB|202.38|ICD9CM|Mal histiocytosis mult|Mal histiocytosis mult +C0432545|T191|PT|202.38|ICD9CM|Malignant histiocytosis, lymph nodes of multiple sites|Malignant histiocytosis, lymph nodes of multiple sites +C0023443|T191|HT|202.4|ICD9CM|Leukemic reticuloendotheliosis|Leukemic reticuloendotheliosis +C0375091|T191|PT|202.40|ICD9CM|Leukemic reticuloendotheliosis, unspecified site, extranodal and solid organ sites|Leukemic reticuloendotheliosis, unspecified site, extranodal and solid organ sites +C0375091|T191|AB|202.40|ICD9CM|Lk rtctl unsp xtrndl org|Lk rtctl unsp xtrndl org +C0153826|T191|AB|202.41|ICD9CM|Hairy-cell leukem head|Hairy-cell leukem head +C0153826|T191|PT|202.41|ICD9CM|Leukemic reticuloendotheliosis, lymph nodes of head, face, and neck|Leukemic reticuloendotheliosis, lymph nodes of head, face, and neck +C0153827|T191|AB|202.42|ICD9CM|Hairy-cell leukem thorax|Hairy-cell leukem thorax +C0153827|T191|PT|202.42|ICD9CM|Leukemic reticuloendotheliosis, intrathoracic lymph nodes|Leukemic reticuloendotheliosis, intrathoracic lymph nodes +C0153828|T191|AB|202.43|ICD9CM|Hairy-cell leukem abdom|Hairy-cell leukem abdom +C0153828|T191|PT|202.43|ICD9CM|Leukemic reticuloendotheliosis, intra-abdominal lymph nodes|Leukemic reticuloendotheliosis, intra-abdominal lymph nodes +C0153829|T191|AB|202.44|ICD9CM|Hairy-cell leukem axilla|Hairy-cell leukem axilla +C0153829|T191|PT|202.44|ICD9CM|Leukemic reticuloendotheliosis, lymph nodes of axilla and upper arm|Leukemic reticuloendotheliosis, lymph nodes of axilla and upper arm +C0153830|T191|AB|202.45|ICD9CM|Hairy-cell leukem inguin|Hairy-cell leukem inguin +C0153830|T191|PT|202.45|ICD9CM|Leukemic reticuloendotheliosis, lymph nodes of inguinal region and lower limb|Leukemic reticuloendotheliosis, lymph nodes of inguinal region and lower limb +C0153831|T191|AB|202.46|ICD9CM|Hairy-cell leukem pelvic|Hairy-cell leukem pelvic +C0153831|T191|PT|202.46|ICD9CM|Leukemic reticuloendotheliosis, intrapelvic lymph nodes|Leukemic reticuloendotheliosis, intrapelvic lymph nodes +C0153832|T191|AB|202.47|ICD9CM|Hairy-cell leukem spleen|Hairy-cell leukem spleen +C0153832|T191|PT|202.47|ICD9CM|Leukemic reticuloendotheliosis, spleen|Leukemic reticuloendotheliosis, spleen +C0153833|T191|AB|202.48|ICD9CM|Hairy-cell leukem mult|Hairy-cell leukem mult +C0153833|T191|PT|202.48|ICD9CM|Leukemic reticuloendotheliosis, lymph nodes of multiple sites|Leukemic reticuloendotheliosis, lymph nodes of multiple sites +C0023381|T047|HT|202.5|ICD9CM|Letterer-Siwe disease|Letterer-Siwe disease +C0375092|T191|PT|202.50|ICD9CM|Letterer-siwe disease, unspecified site, extranodal and solid organ sites|Letterer-siwe disease, unspecified site, extranodal and solid organ sites +C0375092|T191|AB|202.50|ICD9CM|Ltr-siwe unsp xtrndl org|Ltr-siwe unsp xtrndl org +C0432547|T191|AB|202.51|ICD9CM|Letterer-siwe dis head|Letterer-siwe dis head +C0432547|T191|PT|202.51|ICD9CM|Letterer-siwe disease, lymph nodes of head, face, and neck|Letterer-siwe disease, lymph nodes of head, face, and neck +C0432548|T191|AB|202.52|ICD9CM|Letterer-siwe dis thorax|Letterer-siwe dis thorax +C0432548|T191|PT|202.52|ICD9CM|Letterer-siwe disease, intrathoracic lymph nodes|Letterer-siwe disease, intrathoracic lymph nodes +C0432549|T191|AB|202.53|ICD9CM|Letterer-siwe dis abdom|Letterer-siwe dis abdom +C0432549|T191|PT|202.53|ICD9CM|Letterer-siwe disease, intra-abdominal lymph nodes|Letterer-siwe disease, intra-abdominal lymph nodes +C0432550|T191|AB|202.54|ICD9CM|Letterer-siwe dis axilla|Letterer-siwe dis axilla +C0432550|T191|PT|202.54|ICD9CM|Letterer-siwe disease, lymph nodes of axilla and upper limb|Letterer-siwe disease, lymph nodes of axilla and upper limb +C0432551|T191|AB|202.55|ICD9CM|Letterer-siwe dis inguin|Letterer-siwe dis inguin +C0432551|T191|PT|202.55|ICD9CM|Letterer-siwe disease, lymph nodes of inguinal region and lower limb|Letterer-siwe disease, lymph nodes of inguinal region and lower limb +C0432552|T191|AB|202.56|ICD9CM|Letterer-siwe dis pelvic|Letterer-siwe dis pelvic +C0432552|T191|PT|202.56|ICD9CM|Letterer-siwe disease, intrapelvic lymph nodes|Letterer-siwe disease, intrapelvic lymph nodes +C0432553|T191|AB|202.57|ICD9CM|Letterer-siwe dis spleen|Letterer-siwe dis spleen +C0432553|T191|PT|202.57|ICD9CM|Letterer-siwe disease, spleen|Letterer-siwe disease, spleen +C0432554|T191|AB|202.58|ICD9CM|Letterer-siwe dis mult|Letterer-siwe dis mult +C0432554|T191|PT|202.58|ICD9CM|Letterer-siwe disease, lymph nodes of multiple sites|Letterer-siwe disease, lymph nodes of multiple sites +C0036221|T191|HT|202.6|ICD9CM|Malignant mast cell tumors|Malignant mast cell tumors +C0375093|T191|PT|202.60|ICD9CM|Malignant mast cell tumors, unspecified site, extranodal and solid organ sites|Malignant mast cell tumors, unspecified site, extranodal and solid organ sites +C0375093|T191|AB|202.60|ICD9CM|Mlg mast unsp xtrndl org|Mlg mast unsp xtrndl org +C0686574|T191|AB|202.61|ICD9CM|Mal mastocytosis head|Mal mastocytosis head +C0686574|T191|PT|202.61|ICD9CM|Malignant mast cell tumors, lymph nodes of head, face, and neck|Malignant mast cell tumors, lymph nodes of head, face, and neck +C0153843|T191|AB|202.62|ICD9CM|Mal mastocytosis thorax|Mal mastocytosis thorax +C0153843|T191|PT|202.62|ICD9CM|Malignant mast cell tumors, intrathoracic lymph nodes|Malignant mast cell tumors, intrathoracic lymph nodes +C0153844|T191|AB|202.63|ICD9CM|Mal mastocytosis abdom|Mal mastocytosis abdom +C0153844|T191|PT|202.63|ICD9CM|Malignant mast cell tumors, intra-abdominal lymph nodes|Malignant mast cell tumors, intra-abdominal lymph nodes +C0153845|T191|AB|202.64|ICD9CM|Mal mastocytosis axilla|Mal mastocytosis axilla +C0153845|T191|PT|202.64|ICD9CM|Malignant mast cell tumors, lymph nodes of axilla and upper limb|Malignant mast cell tumors, lymph nodes of axilla and upper limb +C0153846|T191|AB|202.65|ICD9CM|Mal mastocytosis inguin|Mal mastocytosis inguin +C0153846|T191|PT|202.65|ICD9CM|Malignant mast cell tumors, lymph nodes of inguinal region and lower limb|Malignant mast cell tumors, lymph nodes of inguinal region and lower limb +C0153847|T191|AB|202.66|ICD9CM|Mal mastocytosis pelvic|Mal mastocytosis pelvic +C0153847|T191|PT|202.66|ICD9CM|Malignant mast cell tumors, intrapelvic lymph nodes|Malignant mast cell tumors, intrapelvic lymph nodes +C0153848|T191|AB|202.67|ICD9CM|Mal mastocytosis spleen|Mal mastocytosis spleen +C0153848|T191|PT|202.67|ICD9CM|Malignant mast cell tumors, spleen|Malignant mast cell tumors, spleen +C0153849|T191|AB|202.68|ICD9CM|Mal mastocytosis mult|Mal mastocytosis mult +C0153849|T191|PT|202.68|ICD9CM|Malignant mast cell tumors, lymph nodes of multiple sites|Malignant mast cell tumors, lymph nodes of multiple sites +C0079774|T191|HT|202.7|ICD9CM|Peripheral T-cell lymphoma|Peripheral T-cell lymphoma +C1955728|T191|AB|202.70|ICD9CM|Periph T cell lym xtrndl|Periph T cell lym xtrndl +C1955728|T191|PT|202.70|ICD9CM|Peripheral T cell lymphoma, unspecified site, extranodal and solid organ sites|Peripheral T cell lymphoma, unspecified site, extranodal and solid organ sites +C3648017|T191|AB|202.71|ICD9CM|Periph T cell lymph head|Periph T cell lymph head +C3648017|T191|PT|202.71|ICD9CM|Peripheral T cell lymphoma, lymph nodes of head, face, and neck|Peripheral T cell lymphoma, lymph nodes of head, face, and neck +C1955730|T191|AB|202.72|ICD9CM|Periph T cell lym thorax|Periph T cell lym thorax +C1955730|T191|PT|202.72|ICD9CM|Peripheral T cell lymphoma, intrathoracic lymph nodes|Peripheral T cell lymphoma, intrathoracic lymph nodes +C3648015|T191|AB|202.73|ICD9CM|Periph T cell lym abdom|Periph T cell lym abdom +C3648015|T191|PT|202.73|ICD9CM|Peripheral T cell lymphoma, intra-abdominal lymph nodes|Peripheral T cell lymphoma, intra-abdominal lymph nodes +C3648018|T191|AB|202.74|ICD9CM|Periph T cell lym axilla|Periph T cell lym axilla +C3648018|T191|PT|202.74|ICD9CM|Peripheral T cell lymphoma, lymph nodes of axilla and upper limb|Peripheral T cell lymphoma, lymph nodes of axilla and upper limb +C3648016|T191|AB|202.75|ICD9CM|Periph T cell lym inguin|Periph T cell lym inguin +C3648016|T191|PT|202.75|ICD9CM|Peripheral T cell lymphoma, lymph nodes of inguinal region and lower limb|Peripheral T cell lymphoma, lymph nodes of inguinal region and lower limb +C3648014|T191|AB|202.76|ICD9CM|Periph T cell lym pelvic|Periph T cell lym pelvic +C3648014|T191|PT|202.76|ICD9CM|Peripheral T cell lymphoma, intrapelvic lymph nodes|Peripheral T cell lymphoma, intrapelvic lymph nodes +C1955735|T191|AB|202.77|ICD9CM|Periph T cell lym spleen|Periph T cell lym spleen +C1955735|T191|PT|202.77|ICD9CM|Peripheral T cell lymphoma, spleen|Peripheral T cell lymphoma, spleen +C3648012|T191|AB|202.78|ICD9CM|Periph T cell lym multip|Periph T cell lym multip +C3648012|T191|PT|202.78|ICD9CM|Peripheral T cell lymphoma, lymph nodes of multiple sites|Peripheral T cell lymphoma, lymph nodes of multiple sites +C0029662|T191|HT|202.8|ICD9CM|Other malignant lymphomas|Other malignant lymphomas +C0375094|T191|AB|202.80|ICD9CM|Oth lymp unsp xtrndl org|Oth lymp unsp xtrndl org +C0375094|T191|PT|202.80|ICD9CM|Other malignant lymphomas, unspecified site, extranodal and solid organ sites|Other malignant lymphomas, unspecified site, extranodal and solid organ sites +C0153850|T191|AB|202.81|ICD9CM|Lymphomas NEC head|Lymphomas NEC head +C0153850|T191|PT|202.81|ICD9CM|Other malignant lymphomas, lymph nodes of head, face, and neck|Other malignant lymphomas, lymph nodes of head, face, and neck +C0153851|T191|AB|202.82|ICD9CM|Lymphomas NEC thorax|Lymphomas NEC thorax +C0153851|T191|PT|202.82|ICD9CM|Other malignant lymphomas, intrathoracic lymph nodes|Other malignant lymphomas, intrathoracic lymph nodes +C0153852|T191|AB|202.83|ICD9CM|Lymphomas NEC abdom|Lymphomas NEC abdom +C0153852|T191|PT|202.83|ICD9CM|Other malignant lymphomas, intra-abdominal lymph nodes|Other malignant lymphomas, intra-abdominal lymph nodes +C0153853|T191|AB|202.84|ICD9CM|Lymphomas NEC axilla|Lymphomas NEC axilla +C0153853|T191|PT|202.84|ICD9CM|Other malignant lymphomas, lymph nodes of axilla and upper limb|Other malignant lymphomas, lymph nodes of axilla and upper limb +C0153854|T191|AB|202.85|ICD9CM|Lymphomas NEC inguin|Lymphomas NEC inguin +C0153854|T191|PT|202.85|ICD9CM|Other malignant lymphomas, lymph nodes of inguinal region and lower limb|Other malignant lymphomas, lymph nodes of inguinal region and lower limb +C0153855|T191|AB|202.86|ICD9CM|Lymphomas NEC pelvic|Lymphomas NEC pelvic +C0153855|T191|PT|202.86|ICD9CM|Other malignant lymphomas, intrapelvic lymph nodes|Other malignant lymphomas, intrapelvic lymph nodes +C0153856|T191|AB|202.87|ICD9CM|Lymphomas NEC spleen|Lymphomas NEC spleen +C0153856|T191|PT|202.87|ICD9CM|Other malignant lymphomas, spleen|Other malignant lymphomas, spleen +C0728903|T191|AB|202.88|ICD9CM|Lymphomas NEC mult|Lymphomas NEC mult +C0728903|T191|PT|202.88|ICD9CM|Other malignant lymphomas, lymph nodes of multiple sites|Other malignant lymphomas, lymph nodes of multiple sites +C0153858|T191|HT|202.9|ICD9CM|Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue|Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue +C0375095|T191|AB|202.90|ICD9CM|Unsp lym unsp xtrndl org|Unsp lym unsp xtrndl org +C0153859|T191|AB|202.91|ICD9CM|Lymphoid mal NEC head|Lymphoid mal NEC head +C0153860|T191|AB|202.92|ICD9CM|Lymphoid mal NEC thorax|Lymphoid mal NEC thorax +C0153861|T191|AB|202.93|ICD9CM|Lymphoid mal NEC abdom|Lymphoid mal NEC abdom +C0153862|T191|AB|202.94|ICD9CM|Lymphoid mal NEC axilla|Lymphoid mal NEC axilla +C0153863|T191|AB|202.95|ICD9CM|Lymphoid mal NEC inguin|Lymphoid mal NEC inguin +C0153864|T191|AB|202.96|ICD9CM|Lymphoid mal NEC pelvic|Lymphoid mal NEC pelvic +C0153865|T191|AB|202.97|ICD9CM|Lymphoid mal NEC spleen|Lymphoid mal NEC spleen +C0153865|T191|PT|202.97|ICD9CM|Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, spleen|Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, spleen +C0153866|T191|AB|202.98|ICD9CM|Lymphoid mal NEC mult|Lymphoid mal NEC mult +C0153867|T191|HT|203|ICD9CM|Multiple myeloma and immunoproliferative neoplasms|Multiple myeloma and immunoproliferative neoplasms +C0026764|T191|HT|203.0|ICD9CM|Multiple myeloma|Multiple myeloma +C2349260|T191|AB|203.00|ICD9CM|Mult mye w/o achv rmson|Mult mye w/o achv rmson +C2349260|T191|PT|203.00|ICD9CM|Multiple myeloma, without mention of having achieved remission|Multiple myeloma, without mention of having achieved remission +C0153869|T191|AB|203.01|ICD9CM|Mult myelm w remission|Mult myelm w remission +C0153869|T191|PT|203.01|ICD9CM|Multiple myeloma, in remission|Multiple myeloma, in remission +C2349261|T191|AB|203.02|ICD9CM|Mult myeloma in relapse|Mult myeloma in relapse +C2349261|T191|PT|203.02|ICD9CM|Multiple myeloma, in relapse|Multiple myeloma, in relapse +C0023484|T191|HT|203.1|ICD9CM|Plasma cell leukemia|Plasma cell leukemia +C2349262|T191|PT|203.10|ICD9CM|Plasma cell leukemia, without mention of having achieved remission|Plasma cell leukemia, without mention of having achieved remission +C2349262|T191|AB|203.10|ICD9CM|Pls cl leu w/o achv rmsn|Pls cl leu w/o achv rmsn +C0153871|T191|PT|203.11|ICD9CM|Plasma cell leukemia, in remission|Plasma cell leukemia, in remission +C0153871|T191|AB|203.11|ICD9CM|Plsm cell leuk w rmson|Plsm cell leuk w rmson +C2349263|T191|PT|203.12|ICD9CM|Plasma cell leukemia, in relapse|Plasma cell leukemia, in relapse +C2349263|T191|AB|203.12|ICD9CM|Plsm cel leuk in relapse|Plsm cel leuk in relapse +C0153872|T191|HT|203.8|ICD9CM|Other immunoproliferative neoplasms|Other immunoproliferative neoplasms +C2349264|T191|AB|203.80|ICD9CM|Oth imno npl wo ach rmsn|Oth imno npl wo ach rmsn +C2349264|T191|PT|203.80|ICD9CM|Other immunoproliferative neoplasms, without mention of having achieved remission|Other immunoproliferative neoplasms, without mention of having achieved remission +C0153874|T191|AB|203.81|ICD9CM|Oth imnprfl npl w rmsn|Oth imnprfl npl w rmsn +C0153874|T191|PT|203.81|ICD9CM|Other immunoproliferative neoplasms, in remission|Other immunoproliferative neoplasms, in remission +C2349265|T191|AB|203.82|ICD9CM|Oth imnprlf neo-relapse|Oth imnprlf neo-relapse +C2349265|T191|PT|203.82|ICD9CM|Other immunoproliferative neoplasms, in relapse|Other immunoproliferative neoplasms, in relapse +C0023448|T191|HT|204|ICD9CM|Lymphoid leukemia|Lymphoid leukemia +C0023449|T191|HT|204.0|ICD9CM|Lymphoid leukemia, acute|Lymphoid leukemia, acute +C2349266|T191|AB|204.00|ICD9CM|Ac lym leuk wo achv rmsn|Ac lym leuk wo achv rmsn +C2349266|T191|PT|204.00|ICD9CM|Acute lymphoid leukemia, without mention of having achieved remission|Acute lymphoid leukemia, without mention of having achieved remission +C0153876|T191|AB|204.01|ICD9CM|Act lym leuk w rmsion|Act lym leuk w rmsion +C0153876|T191|PT|204.01|ICD9CM|Acute lymphoid leukemia, in remission|Acute lymphoid leukemia, in remission +C2349267|T191|AB|204.02|ICD9CM|Act lymp leuk in relapse|Act lymp leuk in relapse +C2349267|T191|PT|204.02|ICD9CM|Acute lymphoid leukemia, in relapse|Acute lymphoid leukemia, in relapse +C0023434|T191|HT|204.1|ICD9CM|Lymphoid leukemia, chronic|Lymphoid leukemia, chronic +C2349268|T191|AB|204.10|ICD9CM|Ch lym leuk wo achv rmsn|Ch lym leuk wo achv rmsn +C2349268|T191|PT|204.10|ICD9CM|Chronic lymphoid leukemia, without mention of having achieved remission|Chronic lymphoid leukemia, without mention of having achieved remission +C0153878|T191|AB|204.11|ICD9CM|Chr lym leuk w rmsion|Chr lym leuk w rmsion +C0153878|T191|PT|204.11|ICD9CM|Chronic lymphoid leukemia, in remission|Chronic lymphoid leukemia, in remission +C0854802|T191|AB|204.12|ICD9CM|Chr lymp leuk in relapse|Chr lymp leuk in relapse +C0854802|T191|PT|204.12|ICD9CM|Chronic lymphoid leukemia, in relapse|Chronic lymphoid leukemia, in relapse +C0152271|T191|HT|204.2|ICD9CM|Lymphoid leukemia, subacute|Lymphoid leukemia, subacute +C2349269|T191|AB|204.20|ICD9CM|Sbac lym leu wo ach rmsn|Sbac lym leu wo ach rmsn +C2349269|T191|PT|204.20|ICD9CM|Subacute lymphoid leukemia, without mention of having achieved remission|Subacute lymphoid leukemia, without mention of having achieved remission +C0153880|T191|AB|204.21|ICD9CM|Sbac lym leuk w rmsion|Sbac lym leuk w rmsion +C0153880|T191|PT|204.21|ICD9CM|Subacute lymphoid leukemia, in remission|Subacute lymphoid leukemia, in remission +C2349270|T191|AB|204.22|ICD9CM|Sbac lym leuk in relapse|Sbac lym leuk in relapse +C2349270|T191|PT|204.22|ICD9CM|Subacute lymphoid leukemia, in relapse|Subacute lymphoid leukemia, in relapse +C0029660|T191|HT|204.8|ICD9CM|Other lymphoid leukemia|Other lymphoid leukemia +C2349271|T191|AB|204.80|ICD9CM|Oth lym leu wo achv rmsn|Oth lym leu wo achv rmsn +C2349271|T191|PT|204.80|ICD9CM|Other lymphoid leukemia, without mention of having achieved remission|Other lymphoid leukemia, without mention of having achieved remission +C0153882|T191|AB|204.81|ICD9CM|Oth lym leuk w rmsion|Oth lym leuk w rmsion +C0153882|T191|PT|204.81|ICD9CM|Other lymphoid leukemia, in remission|Other lymphoid leukemia, in remission +C2349272|T191|AB|204.82|ICD9CM|Oth lym leuk in relapse|Oth lym leuk in relapse +C2349272|T191|PT|204.82|ICD9CM|Other lymphoid leukemia, in relapse|Other lymphoid leukemia, in relapse +C0023448|T191|HT|204.9|ICD9CM|Unspecified lymphoid leukemia|Unspecified lymphoid leukemia +C2349273|T191|AB|204.90|ICD9CM|Uns lym leu wo ach rmsn|Uns lym leu wo ach rmsn +C2349273|T191|PT|204.90|ICD9CM|Unspecified lymphoid leukemia, without mention of having achieved remission|Unspecified lymphoid leukemia, without mention of having achieved remission +C0686597|T191|AB|204.91|ICD9CM|Uns lym leuk w rmsion|Uns lym leuk w rmsion +C0686597|T191|PT|204.91|ICD9CM|Unspecified lymphoid leukemia, in remission|Unspecified lymphoid leukemia, in remission +C2349274|T191|AB|204.92|ICD9CM|Lymp leuk NOS relapse|Lymp leuk NOS relapse +C2349274|T191|PT|204.92|ICD9CM|Unspecified lymphoid leukemia, in relapse|Unspecified lymphoid leukemia, in relapse +C0023470|T191|HT|205|ICD9CM|Myeloid leukemia|Myeloid leukemia +C0023467|T191|HT|205.0|ICD9CM|Myeloid leukemia, acute|Myeloid leukemia, acute +C2349275|T191|AB|205.00|ICD9CM|Ac myl leuk wo achv rmsn|Ac myl leuk wo achv rmsn +C2349275|T191|PT|205.00|ICD9CM|Acute myeloid leukemia, without mention of having achieved remission|Acute myeloid leukemia, without mention of having achieved remission +C0153886|T191|AB|205.01|ICD9CM|Act myl leuk w rmsion|Act myl leuk w rmsion +C0153886|T191|PT|205.01|ICD9CM|Acute myeloid leukemia, in remission|Acute myeloid leukemia, in remission +C2349276|T191|AB|205.02|ICD9CM|Act myel leuk in relapse|Act myel leuk in relapse +C2349276|T191|PT|205.02|ICD9CM|Acute myeloid leukemia, in relapse|Acute myeloid leukemia, in relapse +C0023473|T191|HT|205.1|ICD9CM|Myeloid leukemia, chronic|Myeloid leukemia, chronic +C2349277|T191|AB|205.10|ICD9CM|Ch myl leuk wo achv rmsn|Ch myl leuk wo achv rmsn +C2349277|T191|PT|205.10|ICD9CM|Chronic myeloid leukemia, without mention of having achieved remission|Chronic myeloid leukemia, without mention of having achieved remission +C0153888|T191|AB|205.11|ICD9CM|Chr myl leuk w rmsion|Chr myl leuk w rmsion +C0153888|T191|PT|205.11|ICD9CM|Chronic myeloid leukemia, in remission|Chronic myeloid leukemia, in remission +C1532368|T191|AB|205.12|ICD9CM|Chr myel leuk in relapse|Chr myel leuk in relapse +C1532368|T191|PT|205.12|ICD9CM|Chronic myeloid leukemia, in relapse|Chronic myeloid leukemia, in relapse +C1292772|T191|HT|205.2|ICD9CM|Myeloid leukemia, subacute|Myeloid leukemia, subacute +C2349278|T191|AB|205.20|ICD9CM|Sbac myl leu wo ach rmsn|Sbac myl leu wo ach rmsn +C2349278|T191|PT|205.20|ICD9CM|Subacute myeloid leukemia, without mention of having achieved remission|Subacute myeloid leukemia, without mention of having achieved remission +C0153890|T191|AB|205.21|ICD9CM|Sbac myl leuk w rmsion|Sbac myl leuk w rmsion +C0153890|T191|PT|205.21|ICD9CM|Subacute myeloid leukemia,in remission|Subacute myeloid leukemia,in remission +C2349279|T191|AB|205.22|ICD9CM|Sbac myl leuk in relapse|Sbac myl leuk in relapse +C2349279|T191|PT|205.22|ICD9CM|Subacute myeloid leukemia, in relapse|Subacute myeloid leukemia, in relapse +C4721505|T191|HT|205.3|ICD9CM|Myeloid sarcoma|Myeloid sarcoma +C2349280|T191|PT|205.30|ICD9CM|Myeloid sarcoma, without mention of having achieved remission|Myeloid sarcoma, without mention of having achieved remission +C2349280|T191|AB|205.30|ICD9CM|Myl sarcoma wo achv rmsn|Myl sarcoma wo achv rmsn +C0153892|T191|PT|205.31|ICD9CM|Myeloid sarcoma, in remission|Myeloid sarcoma, in remission +C0153892|T191|AB|205.31|ICD9CM|Myl srcoma w rmsion|Myl srcoma w rmsion +C2349281|T191|AB|205.32|ICD9CM|Myel sarcoma in relapse|Myel sarcoma in relapse +C2349281|T191|PT|205.32|ICD9CM|Myeloid sarcoma, in relapse|Myeloid sarcoma, in relapse +C0029670|T191|HT|205.8|ICD9CM|Other myeloid leukemia|Other myeloid leukemia +C2349282|T191|AB|205.80|ICD9CM|Oth my leuk wo achv rmsn|Oth my leuk wo achv rmsn +C2349282|T191|PT|205.80|ICD9CM|Other myeloid leukemia, without mention of having achieved remission|Other myeloid leukemia, without mention of having achieved remission +C0153894|T191|AB|205.81|ICD9CM|Oth myl leuk w rmsion|Oth myl leuk w rmsion +C0153894|T191|PT|205.81|ICD9CM|Other myeloid leukemia, in remission|Other myeloid leukemia, in remission +C2349283|T191|AB|205.82|ICD9CM|Oth myel leuk in relapse|Oth myel leuk in relapse +C2349283|T191|PT|205.82|ICD9CM|Other myeloid leukemia, in relapse|Other myeloid leukemia, in relapse +C0023470|T191|HT|205.9|ICD9CM|Unspecified myeloid leukemia|Unspecified myeloid leukemia +C2349284|T191|AB|205.90|ICD9CM|Uns my leu wo ach rmsn|Uns my leu wo ach rmsn +C2349284|T191|PT|205.90|ICD9CM|Unspecified myeloid leukemia, without mention of having achieved remission|Unspecified myeloid leukemia, without mention of having achieved remission +C0686593|T191|AB|205.91|ICD9CM|Uns myl leuk w rmsion|Uns myl leuk w rmsion +C0686593|T191|PT|205.91|ICD9CM|Unspecified myeloid leukemia, in remission|Unspecified myeloid leukemia, in remission +C2349285|T191|AB|205.92|ICD9CM|Myel leuk NOS in relapse|Myel leuk NOS in relapse +C2349285|T191|PT|205.92|ICD9CM|Unspecified myeloid leukemia, in relapse|Unspecified myeloid leukemia, in relapse +C0598894|T191|HT|206|ICD9CM|Monocytic leukemia|Monocytic leukemia +C0023465|T191|HT|206.0|ICD9CM|Monocytic leukemia, acute|Monocytic leukemia, acute +C2349286|T191|AB|206.00|ICD9CM|Ac mono leu wo achv rmsn|Ac mono leu wo achv rmsn +C2349286|T191|PT|206.00|ICD9CM|Acute monocytic leukemia, without mention of having achieved remission|Acute monocytic leukemia, without mention of having achieved remission +C0153898|T191|AB|206.01|ICD9CM|Act mono leuk w rmsion|Act mono leuk w rmsion +C0153898|T191|PT|206.01|ICD9CM|Acute monocytic leukemia,in remission|Acute monocytic leukemia,in remission +C2349287|T191|AB|206.02|ICD9CM|Act mono leuk in relapse|Act mono leuk in relapse +C2349287|T191|PT|206.02|ICD9CM|Acute monocytic leukemia, in relapse|Acute monocytic leukemia, in relapse +C0023466|T191|HT|206.1|ICD9CM|Monocytic leukemia, chronic|Monocytic leukemia, chronic +C2349288|T191|AB|206.10|ICD9CM|Ch mono leu wo achv rmsn|Ch mono leu wo achv rmsn +C2349288|T191|PT|206.10|ICD9CM|Chronic monocytic leukemia, without mention of having achieved remission|Chronic monocytic leukemia, without mention of having achieved remission +C0153900|T191|AB|206.11|ICD9CM|Chr mono leuk w rmsion|Chr mono leuk w rmsion +C0153900|T191|PT|206.11|ICD9CM|Chronic monocytic leukemia, in remission|Chronic monocytic leukemia, in remission +C2349289|T191|AB|206.12|ICD9CM|Chr mono leuk in relapse|Chr mono leuk in relapse +C2349289|T191|PT|206.12|ICD9CM|Chronic monocytic leukemia, in relapse|Chronic monocytic leukemia, in relapse +C0152275|T191|HT|206.2|ICD9CM|Monocytic leukemia, subacute|Monocytic leukemia, subacute +C2349290|T191|AB|206.20|ICD9CM|Sbac mno leu wo ach rmsn|Sbac mno leu wo ach rmsn +C2349290|T191|PT|206.20|ICD9CM|Subacute monocytic leukemia, without mention of having achieved remission|Subacute monocytic leukemia, without mention of having achieved remission +C0153902|T191|AB|206.21|ICD9CM|Sbac mono leuk w rmsion|Sbac mono leuk w rmsion +C0153902|T191|PT|206.21|ICD9CM|Subacute monocytic leukemia, in remission|Subacute monocytic leukemia, in remission +C2349291|T191|AB|206.22|ICD9CM|Sbac mono leu in relapse|Sbac mono leu in relapse +C2349291|T191|PT|206.22|ICD9CM|Subacute monocytic leukemia, in relapse|Subacute monocytic leukemia, in relapse +C0153903|T191|HT|206.8|ICD9CM|Other monocytic leukemia|Other monocytic leukemia +C2349292|T191|AB|206.80|ICD9CM|Ot mono leu wo achv rmsn|Ot mono leu wo achv rmsn +C2349292|T191|PT|206.80|ICD9CM|Other monocytic leukemia, without mention of having achieved remission|Other monocytic leukemia, without mention of having achieved remission +C0153905|T191|AB|206.81|ICD9CM|Oth mono leuk w rmsion|Oth mono leuk w rmsion +C0153905|T191|PT|206.81|ICD9CM|Other monocytic leukemia, in remission|Other monocytic leukemia, in remission +C2349293|T191|AB|206.82|ICD9CM|Oth mono leuk in relapse|Oth mono leuk in relapse +C2349293|T191|PT|206.82|ICD9CM|Other monocytic leukemia, in relapse|Other monocytic leukemia, in relapse +C0598894|T191|HT|206.9|ICD9CM|Unspecified monocytic leukemia|Unspecified monocytic leukemia +C2349294|T191|AB|206.90|ICD9CM|Uns mno leu wo ach rmsn|Uns mno leu wo ach rmsn +C2349294|T191|PT|206.90|ICD9CM|Unspecified monocytic leukemia, without mention of having achieved remission|Unspecified monocytic leukemia, without mention of having achieved remission +C0686595|T191|AB|206.91|ICD9CM|Uns mono leuk w rmsion|Uns mono leuk w rmsion +C0686595|T191|PT|206.91|ICD9CM|Unspecified monocytic leukemia, in remission|Unspecified monocytic leukemia, in remission +C2349295|T191|AB|206.92|ICD9CM|Mono leuk NOS relapse|Mono leuk NOS relapse +C2349295|T191|PT|206.92|ICD9CM|Unspecified monocytic leukemia, in relapse|Unspecified monocytic leukemia, in relapse +C0029812|T191|HT|207|ICD9CM|Other specified leukemia|Other specified leukemia +C0001317|T191|HT|207.0|ICD9CM|Acute erythremia and erythroleukemia|Acute erythremia and erythroleukemia +C2349296|T191|AB|207.00|ICD9CM|Ac erth/erlk wo ach rmsn|Ac erth/erlk wo ach rmsn +C2349296|T191|PT|207.00|ICD9CM|Acute erythremia and erythroleukemia, without mention of having achieved remission|Acute erythremia and erythroleukemia, without mention of having achieved remission +C0153910|T191|AB|207.01|ICD9CM|Act erth/erylk w rmson|Act erth/erylk w rmson +C0153910|T191|PT|207.01|ICD9CM|Acute erythremia and erythroleukemia, in remission|Acute erythremia and erythroleukemia, in remission +C2349297|T191|AB|207.02|ICD9CM|Ac erth/erylk in relapse|Ac erth/erylk in relapse +C2349297|T191|PT|207.02|ICD9CM|Acute erythremia and erythroleukemia, in relapse|Acute erythremia and erythroleukemia, in relapse +C0152272|T191|HT|207.1|ICD9CM|Chronic erythremia|Chronic erythremia +C2349298|T191|AB|207.10|ICD9CM|Chr erythrm w/o ach rmsn|Chr erythrm w/o ach rmsn +C2349298|T191|PT|207.10|ICD9CM|Chronic erythremia, without mention of having achieved remission|Chronic erythremia, without mention of having achieved remission +C0153912|T191|AB|207.11|ICD9CM|Chr erythrm w remision|Chr erythrm w remision +C0153912|T191|PT|207.11|ICD9CM|Chronic erythremia, in remission|Chronic erythremia, in remission +C2349299|T191|AB|207.12|ICD9CM|Chr erythrmia in relapse|Chr erythrmia in relapse +C2349299|T191|PT|207.12|ICD9CM|Chronic erythremia, in relapse|Chronic erythremia, in relapse +C0023462|T191|HT|207.2|ICD9CM|Megakaryocytic leukemia|Megakaryocytic leukemia +C2349300|T191|PT|207.20|ICD9CM|Megakaryocytic leukemia, without mention of having achieved remission|Megakaryocytic leukemia, without mention of having achieved remission +C2349300|T191|AB|207.20|ICD9CM|Mgkrcyt leuk wo ach rmsn|Mgkrcyt leuk wo ach rmsn +C0153914|T191|PT|207.21|ICD9CM|Megakaryocytic leukemia, in remission|Megakaryocytic leukemia, in remission +C0153914|T191|AB|207.21|ICD9CM|Mgkrycyt leuk w rmsion|Mgkrycyt leuk w rmsion +C2349301|T191|PT|207.22|ICD9CM|Megakaryocytic leukemia, in relapse|Megakaryocytic leukemia, in relapse +C2349301|T191|AB|207.22|ICD9CM|Mgkrycyt leuk in relapse|Mgkrycyt leuk in relapse +C0029812|T191|HT|207.8|ICD9CM|Other specified leukemia|Other specified leukemia +C2349302|T191|AB|207.80|ICD9CM|Oth leuk w/o achv rmsn|Oth leuk w/o achv rmsn +C2349302|T191|PT|207.80|ICD9CM|Other specified leukemia, without mention of having achieved remission|Other specified leukemia, without mention of having achieved remission +C0153916|T191|AB|207.81|ICD9CM|Oth spf leuk w remsion|Oth spf leuk w remsion +C0153916|T191|PT|207.81|ICD9CM|Other specified leukemia, in remission|Other specified leukemia, in remission +C2349303|T191|AB|207.82|ICD9CM|Oth spf leuk in relapse|Oth spf leuk in relapse +C2349303|T191|PT|207.82|ICD9CM|Other specified leukemia, in relapse|Other specified leukemia, in relapse +C0023418|T191|HT|208|ICD9CM|Leukemia of unspecified cell type|Leukemia of unspecified cell type +C0085669|T191|HT|208.0|ICD9CM|Leukemia of unspecified cell type, acute|Leukemia of unspecified cell type, acute +C2349304|T191|AB|208.00|ICD9CM|Ac leu un cl wo ach rmsn|Ac leu un cl wo ach rmsn +C2349304|T191|PT|208.00|ICD9CM|Acute leukemia of unspecified cell type, without mention of having achieved remission|Acute leukemia of unspecified cell type, without mention of having achieved remission +C0686586|T191|AB|208.01|ICD9CM|Act leuk uns cl w rmson|Act leuk uns cl w rmson +C0686586|T191|PT|208.01|ICD9CM|Acute leukemia of unspecified cell type, in remission|Acute leukemia of unspecified cell type, in remission +C2349305|T191|AB|208.02|ICD9CM|Ac leuk uns cl relapse|Ac leuk uns cl relapse +C2349305|T191|PT|208.02|ICD9CM|Acute leukemia of unspecified cell type, in relapse|Acute leukemia of unspecified cell type, in relapse +C1279296|T191|HT|208.1|ICD9CM|Leukemia of unspecified cell type, chronic|Leukemia of unspecified cell type, chronic +C2349306|T191|AB|208.10|ICD9CM|Ch leu un cl wo ach rmsn|Ch leu un cl wo ach rmsn +C2349306|T191|PT|208.10|ICD9CM|Chronic leukemia of unspecified cell type, without mention of having achieved remission|Chronic leukemia of unspecified cell type, without mention of having achieved remission +C0686589|T191|AB|208.11|ICD9CM|Chr leuk uns cl w rmson|Chr leuk uns cl w rmson +C0686589|T191|PT|208.11|ICD9CM|Chronic leukemia of unspecified cell type, in remission|Chronic leukemia of unspecified cell type, in remission +C2349307|T191|AB|208.12|ICD9CM|Ch leu uns cl in relapse|Ch leu uns cl in relapse +C2349307|T191|PT|208.12|ICD9CM|Chronic leukemia of unspecified cell type, in relapse|Chronic leukemia of unspecified cell type, in relapse +C0153924|T191|HT|208.2|ICD9CM|Leukemia of unspecified cell type, subacute|Leukemia of unspecified cell type, subacute +C2349308|T191|AB|208.20|ICD9CM|Sbc leu un cl wo ah rmsn|Sbc leu un cl wo ah rmsn +C2349308|T191|PT|208.20|ICD9CM|Subacute leukemia of unspecified cell type, without mention of having achieved remission|Subacute leukemia of unspecified cell type, without mention of having achieved remission +C0686591|T191|AB|208.21|ICD9CM|Sbac leuk uns cl w rmson|Sbac leuk uns cl w rmson +C0686591|T191|PT|208.21|ICD9CM|Subacute leukemia of unspecified cell type, in remission|Subacute leukemia of unspecified cell type, in remission +C2349309|T191|AB|208.22|ICD9CM|Sbac leu uns cl-relapse|Sbac leu uns cl-relapse +C2349309|T191|PT|208.22|ICD9CM|Subacute leukemia of unspecified cell type, in relapse|Subacute leukemia of unspecified cell type, in relapse +C0029655|T191|HT|208.8|ICD9CM|Other leukemia of unspecified cell type|Other leukemia of unspecified cell type +C2349310|T191|AB|208.80|ICD9CM|Ot leu un cl wo ach rmsn|Ot leu un cl wo ach rmsn +C2349310|T191|PT|208.80|ICD9CM|Other leukemia of unspecified cell type, without mention of having achieved remission|Other leukemia of unspecified cell type, without mention of having achieved remission +C0153928|T191|AB|208.81|ICD9CM|Oth leuk uns cl w rmson|Oth leuk uns cl w rmson +C0153928|T191|PT|208.81|ICD9CM|Other leukemia of unspecified cell type, in remission|Other leukemia of unspecified cell type, in remission +C2349311|T191|AB|208.82|ICD9CM|Oth leuk uns cl-relapse|Oth leuk uns cl-relapse +C2349311|T191|PT|208.82|ICD9CM|Other leukemia of unspecified cell type, in relapse|Other leukemia of unspecified cell type, in relapse +C0023418|T191|HT|208.9|ICD9CM|Unspecified leukemia|Unspecified leukemia +C2349312|T191|AB|208.90|ICD9CM|Leuk NOS w/o achv rmsn|Leuk NOS w/o achv rmsn +C2349312|T191|PT|208.90|ICD9CM|Unspecified leukemia, without mention of having achieved remission|Unspecified leukemia, without mention of having achieved remission +C0686584|T191|AB|208.91|ICD9CM|Leukemia NOS w remission|Leukemia NOS w remission +C0686584|T191|PT|208.91|ICD9CM|Unspecified leukemia, in remission|Unspecified leukemia, in remission +C0920028|T191|AB|208.92|ICD9CM|Leukemia NOS in relapse|Leukemia NOS in relapse +C0920028|T191|PT|208.92|ICD9CM|Unspecified leukemia, in relapse|Unspecified leukemia, in relapse +C0206754|T191|HT|209|ICD9CM|Neuroendocrine tumors|Neuroendocrine tumors +C0206754|T191|HT|209-209.99|ICD9CM|NEUROENDOCRINE TUMORS|NEUROENDOCRINE TUMORS +C2062527|T191|HT|209.0|ICD9CM|Malignant carcinoid tumors of the small intestine|Malignant carcinoid tumors of the small intestine +C2349313|T191|AB|209.00|ICD9CM|Mal crcnoid sm intst NOS|Mal crcnoid sm intst NOS +C2349313|T191|PT|209.00|ICD9CM|Malignant carcinoid tumor of the small intestine, unspecified portion|Malignant carcinoid tumor of the small intestine, unspecified portion +C2349314|T191|AB|209.01|ICD9CM|Malig carcinoid duodenum|Malig carcinoid duodenum +C2349314|T191|PT|209.01|ICD9CM|Malignant carcinoid tumor of the duodenum|Malignant carcinoid tumor of the duodenum +C2349315|T191|AB|209.02|ICD9CM|Malig carcinoid jejunum|Malig carcinoid jejunum +C2349315|T191|PT|209.02|ICD9CM|Malignant carcinoid tumor of the jejunum|Malignant carcinoid tumor of the jejunum +C2349316|T191|AB|209.03|ICD9CM|Malig carcinoid ileum|Malig carcinoid ileum +C2349316|T191|PT|209.03|ICD9CM|Malignant carcinoid tumor of the ileum|Malignant carcinoid tumor of the ileum +C2349324|T191|HT|209.1|ICD9CM|Malignant carcinoid tumors of the appendix, large intestine, and rectum|Malignant carcinoid tumors of the appendix, large intestine, and rectum +C2349317|T191|AB|209.10|ICD9CM|Mal crcnoid lg intst NOS|Mal crcnoid lg intst NOS +C2349317|T191|PT|209.10|ICD9CM|Malignant carcinoid tumor of the large intestine, unspecified portion|Malignant carcinoid tumor of the large intestine, unspecified portion +C2062529|T191|AB|209.11|ICD9CM|Malig carcinoid appendix|Malig carcinoid appendix +C2062529|T191|PT|209.11|ICD9CM|Malignant carcinoid tumor of the appendix|Malignant carcinoid tumor of the appendix +C2349319|T191|AB|209.12|ICD9CM|Malig carcinoid cecum|Malig carcinoid cecum +C2349319|T191|PT|209.12|ICD9CM|Malignant carcinoid tumor of the cecum|Malignant carcinoid tumor of the cecum +C2349320|T191|AB|209.13|ICD9CM|Mal crcnoid ascend colon|Mal crcnoid ascend colon +C2349320|T191|PT|209.13|ICD9CM|Malignant carcinoid tumor of the ascending colon|Malignant carcinoid tumor of the ascending colon +C2349321|T191|AB|209.14|ICD9CM|Mal crcnoid transv colon|Mal crcnoid transv colon +C2349321|T191|PT|209.14|ICD9CM|Malignant carcinoid tumor of the transverse colon|Malignant carcinoid tumor of the transverse colon +C2349322|T191|AB|209.15|ICD9CM|Mal carcinoid desc colon|Mal carcinoid desc colon +C2349322|T191|PT|209.15|ICD9CM|Malignant carcinoid tumor of the descending colon|Malignant carcinoid tumor of the descending colon +C2349323|T191|AB|209.16|ICD9CM|Mal carcinoid sig colon|Mal carcinoid sig colon +C2349323|T191|PT|209.16|ICD9CM|Malignant carcinoid tumor of the sigmoid colon|Malignant carcinoid tumor of the sigmoid colon +C2205119|T191|AB|209.17|ICD9CM|Malig carcinoid rectum|Malig carcinoid rectum +C2205119|T191|PT|209.17|ICD9CM|Malignant carcinoid tumor of the rectum|Malignant carcinoid tumor of the rectum +C2349332|T191|HT|209.2|ICD9CM|Malignant carcinoid tumors of other and unspecified sites|Malignant carcinoid tumors of other and unspecified sites +C2349325|T191|AB|209.20|ICD9CM|Mal crcnd prim site unkn|Mal crcnd prim site unkn +C2349325|T191|PT|209.20|ICD9CM|Malignant carcinoid tumor of unknown primary site|Malignant carcinoid tumor of unknown primary site +C2349326|T191|AB|209.21|ICD9CM|Mal carcinoid bronc/lung|Mal carcinoid bronc/lung +C2349326|T191|PT|209.21|ICD9CM|Malignant carcinoid tumor of the bronchus and lung|Malignant carcinoid tumor of the bronchus and lung +C1336746|T191|AB|209.22|ICD9CM|Malig carcinoid thymus|Malig carcinoid thymus +C1336746|T191|PT|209.22|ICD9CM|Malignant carcinoid tumor of the thymus|Malignant carcinoid tumor of the thymus +C2062573|T191|AB|209.23|ICD9CM|Malig carcinoid stomach|Malig carcinoid stomach +C2062573|T191|PT|209.23|ICD9CM|Malignant carcinoid tumor of the stomach|Malignant carcinoid tumor of the stomach +C2349327|T191|AB|209.24|ICD9CM|Malig carcinoid kidney|Malig carcinoid kidney +C2349327|T191|PT|209.24|ICD9CM|Malignant carcinoid tumor of the kidney|Malignant carcinoid tumor of the kidney +C2349328|T191|AB|209.25|ICD9CM|Mal carcnoid foregut NOS|Mal carcnoid foregut NOS +C2349328|T191|PT|209.25|ICD9CM|Malignant carcinoid tumor of foregut, not otherwise specified|Malignant carcinoid tumor of foregut, not otherwise specified +C2349329|T191|AB|209.26|ICD9CM|Mal carcinoid midgut NOS|Mal carcinoid midgut NOS +C2349329|T191|PT|209.26|ICD9CM|Malignant carcinoid tumor of midgut, not otherwise specified|Malignant carcinoid tumor of midgut, not otherwise specified +C2349330|T191|AB|209.27|ICD9CM|Mal carcnoid hindgut NOS|Mal carcnoid hindgut NOS +C2349330|T191|PT|209.27|ICD9CM|Malignant carcinoid tumor of hindgut, not otherwise specified|Malignant carcinoid tumor of hindgut, not otherwise specified +C2349331|T191|AB|209.29|ICD9CM|Malig carcinoid oth site|Malig carcinoid oth site +C2349331|T191|PT|209.29|ICD9CM|Malignant carcinoid tumor of other sites|Malignant carcinoid tumor of other sites +C2349335|T191|HT|209.3|ICD9CM|Malignant poorly differentiated neuroendocrine tumors|Malignant poorly differentiated neuroendocrine tumors +C2349333|T191|AB|209.30|ICD9CM|Malig neuroendo ca NOS|Malig neuroendo ca NOS +C2349333|T191|PT|209.30|ICD9CM|Malignant poorly differentiated neuroendocrine carcinoma, any site|Malignant poorly differentiated neuroendocrine carcinoma, any site +C2712672|T191|AB|209.31|ICD9CM|Merkel cell ca-face|Merkel cell ca-face +C2712672|T191|PT|209.31|ICD9CM|Merkel cell carcinoma of the face|Merkel cell carcinoma of the face +C2712692|T191|AB|209.32|ICD9CM|Merkel cell ca-sclp/neck|Merkel cell ca-sclp/neck +C2712692|T191|PT|209.32|ICD9CM|Merkel cell carcinoma of the scalp and neck|Merkel cell carcinoma of the scalp and neck +C4076715|T191|AB|209.33|ICD9CM|Merkel cell ca-up limb|Merkel cell ca-up limb +C4076715|T191|PT|209.33|ICD9CM|Merkel cell carcinoma of the upper limb|Merkel cell carcinoma of the upper limb +C4076723|T191|AB|209.34|ICD9CM|Merkel cell ca-low limb|Merkel cell ca-low limb +C4076723|T191|PT|209.34|ICD9CM|Merkel cell carcinoma of the lower limb|Merkel cell carcinoma of the lower limb +C2712728|T191|AB|209.35|ICD9CM|Merkel cell ca-trunk|Merkel cell ca-trunk +C2712728|T191|PT|209.35|ICD9CM|Merkel cell carcinoma of the trunk|Merkel cell carcinoma of the trunk +C2712734|T191|AB|209.36|ICD9CM|Merkel cell ca-oth sites|Merkel cell ca-oth sites +C2712734|T191|PT|209.36|ICD9CM|Merkel cell carcinoma of other sites|Merkel cell carcinoma of other sites +C2349340|T191|HT|209.4|ICD9CM|Benign carcinoid tumors of the small intestine|Benign carcinoid tumors of the small intestine +C2349336|T191|AB|209.40|ICD9CM|Ben crcnoid sm intst NOS|Ben crcnoid sm intst NOS +C2349336|T191|PT|209.40|ICD9CM|Benign carcinoid tumor of the small intestine, unspecified portion|Benign carcinoid tumor of the small intestine, unspecified portion +C2349337|T191|AB|209.41|ICD9CM|Ben carcinoid duodenum|Ben carcinoid duodenum +C2349337|T191|PT|209.41|ICD9CM|Benign carcinoid tumor of the duodenum|Benign carcinoid tumor of the duodenum +C2349338|T191|AB|209.42|ICD9CM|Benign carcinoid jejunum|Benign carcinoid jejunum +C2349338|T191|PT|209.42|ICD9CM|Benign carcinoid tumor of the jejunum|Benign carcinoid tumor of the jejunum +C2349339|T191|AB|209.43|ICD9CM|Benign carcinoid ileum|Benign carcinoid ileum +C2349339|T191|PT|209.43|ICD9CM|Benign carcinoid tumor of the ileum|Benign carcinoid tumor of the ileum +C2349349|T191|HT|209.5|ICD9CM|Benign carcinoid tumors of the appendix, large intestine, and rectum|Benign carcinoid tumors of the appendix, large intestine, and rectum +C2349341|T191|AB|209.50|ICD9CM|Ben crcnoid lg intst NOS|Ben crcnoid lg intst NOS +C2349341|T191|PT|209.50|ICD9CM|Benign carcinoid tumor of the large intestine, unspecified portion|Benign carcinoid tumor of the large intestine, unspecified portion +C2349342|T191|AB|209.51|ICD9CM|Ben carcinoid appendix|Ben carcinoid appendix +C2349342|T191|PT|209.51|ICD9CM|Benign carcinoid tumor of the appendix|Benign carcinoid tumor of the appendix +C2349343|T191|AB|209.52|ICD9CM|Benign carcinoid cecum|Benign carcinoid cecum +C2349343|T191|PT|209.52|ICD9CM|Benign carcinoid tumor of the cecum|Benign carcinoid tumor of the cecum +C2349344|T191|AB|209.53|ICD9CM|Ben carcinoid asc colon|Ben carcinoid asc colon +C2349344|T191|PT|209.53|ICD9CM|Benign carcinoid tumor of the ascending colon|Benign carcinoid tumor of the ascending colon +C2349345|T191|AB|209.54|ICD9CM|Ben crcinoid trans colon|Ben crcinoid trans colon +C2349345|T191|PT|209.54|ICD9CM|Benign carcinoid tumor of the transverse colon|Benign carcinoid tumor of the transverse colon +C2349346|T191|AB|209.55|ICD9CM|Ben carcinoid desc colon|Ben carcinoid desc colon +C2349346|T191|PT|209.55|ICD9CM|Benign carcinoid tumor of the descending colon|Benign carcinoid tumor of the descending colon +C2349347|T191|AB|209.56|ICD9CM|Ben carcinoid sig colon|Ben carcinoid sig colon +C2349347|T191|PT|209.56|ICD9CM|Benign carcinoid tumor of the sigmoid colon|Benign carcinoid tumor of the sigmoid colon +C2349348|T191|AB|209.57|ICD9CM|Benign carcinoid rectum|Benign carcinoid rectum +C2349348|T191|PT|209.57|ICD9CM|Benign carcinoid tumor of the rectum|Benign carcinoid tumor of the rectum +C2349359|T191|HT|209.6|ICD9CM|Benign carcinoid tumors of other and unspecified sites|Benign carcinoid tumors of other and unspecified sites +C2349350|T191|AB|209.60|ICD9CM|Ben crcnd prim site unkn|Ben crcnd prim site unkn +C2349350|T191|PT|209.60|ICD9CM|Benign carcinoid tumor of unknown primary site|Benign carcinoid tumor of unknown primary site +C2349351|T191|AB|209.61|ICD9CM|Ben carcinoid bronc/lung|Ben carcinoid bronc/lung +C2349351|T191|PT|209.61|ICD9CM|Benign carcinoid tumor of the bronchus and lung|Benign carcinoid tumor of the bronchus and lung +C2349352|T191|AB|209.62|ICD9CM|Benign carcinoid thymus|Benign carcinoid thymus +C2349352|T191|PT|209.62|ICD9CM|Benign carcinoid tumor of the thymus|Benign carcinoid tumor of the thymus +C2349353|T191|AB|209.63|ICD9CM|Benign carcinoid stomach|Benign carcinoid stomach +C2349353|T191|PT|209.63|ICD9CM|Benign carcinoid tumor of the stomach|Benign carcinoid tumor of the stomach +C2349354|T191|AB|209.64|ICD9CM|Benign carcinoid kidney|Benign carcinoid kidney +C2349354|T191|PT|209.64|ICD9CM|Benign carcinoid tumor of the kidney|Benign carcinoid tumor of the kidney +C2349355|T191|AB|209.65|ICD9CM|Ben crcinoid foregut NOS|Ben crcinoid foregut NOS +C2349355|T191|PT|209.65|ICD9CM|Benign carcinoid tumor of foregut, not otherwise specified|Benign carcinoid tumor of foregut, not otherwise specified +C2349356|T191|AB|209.66|ICD9CM|Ben crcinoid midgut NOS|Ben crcinoid midgut NOS +C2349356|T191|PT|209.66|ICD9CM|Benign carcinoid tumor of midgut, not otherwise specified|Benign carcinoid tumor of midgut, not otherwise specified +C2349357|T191|AB|209.67|ICD9CM|Ben crcnoid hindgut NOS|Ben crcnoid hindgut NOS +C2349357|T191|PT|209.67|ICD9CM|Benign carcinoid tumor of hindgut, not otherwise specified|Benign carcinoid tumor of hindgut, not otherwise specified +C2349358|T191|AB|209.69|ICD9CM|Bengn carcinoid oth site|Bengn carcinoid oth site +C2349358|T191|PT|209.69|ICD9CM|Benign carcinoid tumor of other sites|Benign carcinoid tumor of other sites +C2712917|T191|HT|209.7|ICD9CM|Secondary neuroendocrine tumors|Secondary neuroendocrine tumors +C2712749|T191|AB|209.70|ICD9CM|Sec neuroendo tumor NOS|Sec neuroendo tumor NOS +C2712749|T191|PT|209.70|ICD9CM|Secondary neuroendocrine tumor, unspecified site|Secondary neuroendocrine tumor, unspecified site +C2712873|T191|AB|209.71|ICD9CM|Sec neuroend tu dist lym|Sec neuroend tu dist lym +C2712873|T191|PT|209.71|ICD9CM|Secondary neuroendocrine tumor of distant lymph nodes|Secondary neuroendocrine tumor of distant lymph nodes +C2712885|T191|AB|209.72|ICD9CM|Sec neuroend tumor-liver|Sec neuroend tumor-liver +C2712885|T191|PT|209.72|ICD9CM|Secondary neuroendocrine tumor of liver|Secondary neuroendocrine tumor of liver +C2712897|T191|AB|209.73|ICD9CM|Sec neuroendo tumor-bone|Sec neuroendo tumor-bone +C2712897|T191|PT|209.73|ICD9CM|Secondary neuroendocrine tumor of bone|Secondary neuroendocrine tumor of bone +C2712904|T191|AB|209.74|ICD9CM|Sec neuroendo tu-periton|Sec neuroendo tu-periton +C2712904|T191|PT|209.74|ICD9CM|Secondary neuroendocrine tumor of peritoneum|Secondary neuroendocrine tumor of peritoneum +C2712933|T191|AB|209.75|ICD9CM|Secondary Merkel cell ca|Secondary Merkel cell ca +C2712933|T191|PT|209.75|ICD9CM|Secondary Merkel cell carcinoma|Secondary Merkel cell carcinoma +C2712796|T191|AB|209.79|ICD9CM|Sec neuroend tu oth site|Sec neuroend tu oth site +C2712796|T191|PT|209.79|ICD9CM|Secondary neuroendocrine tumor of other sites|Secondary neuroendocrine tumor of other sites +C0153931|T191|HT|210|ICD9CM|Benign neoplasm of lip, oral cavity, and pharynx|Benign neoplasm of lip, oral cavity, and pharynx +C0086692|T191|HT|210-229.99|ICD9CM|BENIGN NEOPLASMS|BENIGN NEOPLASMS +C0153932|T191|AB|210.0|ICD9CM|Benign neoplasm lip|Benign neoplasm lip +C0153932|T191|PT|210.0|ICD9CM|Benign neoplasm of lip|Benign neoplasm of lip +C0153933|T191|PT|210.1|ICD9CM|Benign neoplasm of tongue|Benign neoplasm of tongue +C0153933|T191|AB|210.1|ICD9CM|Benign neoplasm tongue|Benign neoplasm tongue +C0496858|T191|AB|210.2|ICD9CM|Ben neo major salivary|Ben neo major salivary +C0496858|T191|PT|210.2|ICD9CM|Benign neoplasm of major salivary glands|Benign neoplasm of major salivary glands +C0153934|T191|AB|210.3|ICD9CM|Benign neo mouth floor|Benign neo mouth floor +C0153934|T191|PT|210.3|ICD9CM|Benign neoplasm of floor of mouth|Benign neoplasm of floor of mouth +C0153935|T191|AB|210.4|ICD9CM|Benign neo mouth NEC/NOS|Benign neo mouth NEC/NOS +C0153935|T191|PT|210.4|ICD9CM|Benign neoplasm of other and unspecified parts of mouth|Benign neoplasm of other and unspecified parts of mouth +C0153936|T191|PT|210.5|ICD9CM|Benign neoplasm of tonsil|Benign neoplasm of tonsil +C0153936|T191|AB|210.5|ICD9CM|Benign neoplasm tonsil|Benign neoplasm tonsil +C0153937|T191|AB|210.6|ICD9CM|Benign neo oropharyn NEC|Benign neo oropharyn NEC +C0153937|T191|PT|210.6|ICD9CM|Benign neoplasm of other parts of oropharynx|Benign neoplasm of other parts of oropharynx +C0153938|T191|AB|210.7|ICD9CM|Benign neo nasopharynx|Benign neo nasopharynx +C0153938|T191|PT|210.7|ICD9CM|Benign neoplasm of nasopharynx|Benign neoplasm of nasopharynx +C0153939|T191|AB|210.8|ICD9CM|Benign neo hypopharynx|Benign neo hypopharynx +C0153939|T191|PT|210.8|ICD9CM|Benign neoplasm of hypopharynx|Benign neoplasm of hypopharynx +C0153940|T191|AB|210.9|ICD9CM|Benign neo pharynx NOS|Benign neo pharynx NOS +C0153940|T191|PT|210.9|ICD9CM|Benign neoplasm of pharynx, unspecified|Benign neoplasm of pharynx, unspecified +C0497538|T191|HT|211|ICD9CM|Benign neoplasm of other parts of digestive system|Benign neoplasm of other parts of digestive system +C0153942|T191|AB|211.0|ICD9CM|Benign neo esophagus|Benign neo esophagus +C0153942|T191|PT|211.0|ICD9CM|Benign neoplasm of esophagus|Benign neoplasm of esophagus +C0153943|T191|PT|211.1|ICD9CM|Benign neoplasm of stomach|Benign neoplasm of stomach +C0153943|T191|AB|211.1|ICD9CM|Benign neoplasm stomach|Benign neoplasm stomach +C0153944|T191|PT|211.2|ICD9CM|Benign neoplasm of duodenum, jejunum, and ileum|Benign neoplasm of duodenum, jejunum, and ileum +C0153944|T191|AB|211.2|ICD9CM|Benign neoplasm sm bowel|Benign neoplasm sm bowel +C0004991|T191|AB|211.3|ICD9CM|Benign neoplasm lg bowel|Benign neoplasm lg bowel +C0004991|T191|PT|211.3|ICD9CM|Benign neoplasm of colon|Benign neoplasm of colon +C0153945|T191|AB|211.4|ICD9CM|Benign neopl rectum/anus|Benign neopl rectum/anus +C0153945|T191|PT|211.4|ICD9CM|Benign neoplasm of rectum and anal canal|Benign neoplasm of rectum and anal canal +C0347277|T191|AB|211.5|ICD9CM|Ben neo liver/bile ducts|Ben neo liver/bile ducts +C0347277|T191|PT|211.5|ICD9CM|Benign neoplasm of liver and biliary passages|Benign neoplasm of liver and biliary passages +C0347924|T191|PT|211.6|ICD9CM|Benign neoplasm of pancreas, except islets of Langerhans|Benign neoplasm of pancreas, except islets of Langerhans +C0347924|T191|AB|211.6|ICD9CM|Benign neoplasm pancreas|Benign neoplasm pancreas +C0496872|T191|AB|211.7|ICD9CM|Ben neo islets langerhan|Ben neo islets langerhan +C0496872|T191|PT|211.7|ICD9CM|Benign neoplasm of islets of Langerhans|Benign neoplasm of islets of Langerhans +C0347406|T191|AB|211.8|ICD9CM|Ben neo peritoneum|Ben neo peritoneum +C0347406|T191|PT|211.8|ICD9CM|Benign neoplasm of retroperitoneum and peritoneum|Benign neoplasm of retroperitoneum and peritoneum +C0497538|T191|AB|211.9|ICD9CM|Ben neo GI tract NEC/NOS|Ben neo GI tract NEC/NOS +C0497538|T191|PT|211.9|ICD9CM|Benign neoplasm of other and unspecified site in the digestive system|Benign neoplasm of other and unspecified site in the digestive system +C0347243|T191|HT|212|ICD9CM|Benign neoplasm of respiratory and intrathoracic organs|Benign neoplasm of respiratory and intrathoracic organs +C0153951|T191|AB|212.0|ICD9CM|Ben neo nasal cav/sinus|Ben neo nasal cav/sinus +C0153951|T191|PT|212.0|ICD9CM|Benign neoplasm of nasal cavities, middle ear, and accessory sinuses|Benign neoplasm of nasal cavities, middle ear, and accessory sinuses +C0153952|T191|AB|212.1|ICD9CM|Benign neo larynx|Benign neo larynx +C0153952|T191|PT|212.1|ICD9CM|Benign neoplasm of larynx|Benign neoplasm of larynx +C0153953|T191|AB|212.2|ICD9CM|Benign neo trachea|Benign neo trachea +C0153953|T191|PT|212.2|ICD9CM|Benign neoplasm of trachea|Benign neoplasm of trachea +C0153954|T191|AB|212.3|ICD9CM|Benign neo bronchus/lung|Benign neo bronchus/lung +C0153954|T191|PT|212.3|ICD9CM|Benign neoplasm of bronchus and lung|Benign neoplasm of bronchus and lung +C0153955|T191|PT|212.4|ICD9CM|Benign neoplasm of pleura|Benign neoplasm of pleura +C0153955|T191|AB|212.4|ICD9CM|Benign neoplasm pleura|Benign neoplasm pleura +C0153956|T191|AB|212.5|ICD9CM|Benign neo mediastinum|Benign neo mediastinum +C0153956|T191|PT|212.5|ICD9CM|Benign neoplasm of mediastinum|Benign neoplasm of mediastinum +C0345975|T191|PT|212.6|ICD9CM|Benign neoplasm of thymus|Benign neoplasm of thymus +C0345975|T191|AB|212.6|ICD9CM|Benign neoplasm thymus|Benign neoplasm thymus +C0153957|T191|AB|212.7|ICD9CM|Benign neoplasm heart|Benign neoplasm heart +C0153957|T191|PT|212.7|ICD9CM|Benign neoplasm of heart|Benign neoplasm of heart +C0153958|T191|AB|212.8|ICD9CM|Benign neo resp sys NEC|Benign neo resp sys NEC +C0153958|T191|PT|212.8|ICD9CM|Benign neoplasm of other specified sites of respiratory and intrathoracic organs|Benign neoplasm of other specified sites of respiratory and intrathoracic organs +C0347243|T191|AB|212.9|ICD9CM|Benign neo resp sys NOS|Benign neo resp sys NOS +C0347243|T191|PT|212.9|ICD9CM|Benign neoplasm of respiratory and intrathoracic organs, site unspecified|Benign neoplasm of respiratory and intrathoracic organs, site unspecified +C0153959|T191|HT|213|ICD9CM|Benign neoplasm of bone and articular cartilage|Benign neoplasm of bone and articular cartilage +C0153960|T191|AB|213.0|ICD9CM|Ben neo skull/face bone|Ben neo skull/face bone +C0153960|T191|PT|213.0|ICD9CM|Benign neoplasm of bones of skull and face|Benign neoplasm of bones of skull and face +C0004994|T191|AB|213.1|ICD9CM|Ben neo lower jaw bone|Ben neo lower jaw bone +C0004994|T191|PT|213.1|ICD9CM|Benign neoplasm of lower jaw bone|Benign neoplasm of lower jaw bone +C0702197|T191|AB|213.2|ICD9CM|Benign neo vertebrae|Benign neo vertebrae +C0702197|T191|PT|213.2|ICD9CM|Benign neoplasm of vertebral column, excluding sacrum and coccyx|Benign neoplasm of vertebral column, excluding sacrum and coccyx +C0153962|T191|AB|213.3|ICD9CM|Ben neo ribs/stern/clav|Ben neo ribs/stern/clav +C0153962|T191|PT|213.3|ICD9CM|Benign neoplasm of ribs, sternum, and clavicle|Benign neoplasm of ribs, sternum, and clavicle +C0153963|T191|AB|213.4|ICD9CM|Ben neo long bones arm|Ben neo long bones arm +C0153963|T191|PT|213.4|ICD9CM|Benign neoplasm of scapula and long bones of upper limb|Benign neoplasm of scapula and long bones of upper limb +C0153964|T191|AB|213.5|ICD9CM|Ben neo bones wrist/hand|Ben neo bones wrist/hand +C0153964|T191|PT|213.5|ICD9CM|Benign neoplasm of short bones of upper limb|Benign neoplasm of short bones of upper limb +C0153965|T191|AB|213.6|ICD9CM|Benign neo pelvic girdle|Benign neo pelvic girdle +C0153965|T191|PT|213.6|ICD9CM|Benign neoplasm of pelvic bones, sacrum, and coccyx|Benign neoplasm of pelvic bones, sacrum, and coccyx +C0153966|T191|AB|213.7|ICD9CM|Ben neo long bones leg|Ben neo long bones leg +C0153966|T191|PT|213.7|ICD9CM|Benign neoplasm of long bones of lower limb|Benign neoplasm of long bones of lower limb +C0153967|T191|AB|213.8|ICD9CM|Ben neo bones ankle/foot|Ben neo bones ankle/foot +C0153967|T191|PT|213.8|ICD9CM|Benign neoplasm of short bones of lower limb|Benign neoplasm of short bones of lower limb +C0153959|T191|AB|213.9|ICD9CM|Benign neo bone NOS|Benign neo bone NOS +C0153959|T191|PT|213.9|ICD9CM|Benign neoplasm of bone and articular cartilage, site unspecified|Benign neoplasm of bone and articular cartilage, site unspecified +C0023798|T191|HT|214|ICD9CM|Lipoma|Lipoma +C0153968|T191|PT|214.0|ICD9CM|Lipoma of skin and subcutaneous tissue of face|Lipoma of skin and subcutaneous tissue of face +C0153968|T191|AB|214.0|ICD9CM|Lipoma skin face|Lipoma skin face +C0153969|T191|PT|214.1|ICD9CM|Lipoma of other skin and subcutaneous tissue|Lipoma of other skin and subcutaneous tissue +C0153969|T191|AB|214.1|ICD9CM|Lipoma skin NEC|Lipoma skin NEC +C0153970|T191|AB|214.2|ICD9CM|Lipoma intrathoracic|Lipoma intrathoracic +C0153970|T191|PT|214.2|ICD9CM|Lipoma of intrathoracic organs|Lipoma of intrathoracic organs +C0153971|T191|AB|214.3|ICD9CM|Lipoma intra-abdominal|Lipoma intra-abdominal +C0153971|T191|PT|214.3|ICD9CM|Lipoma of intra-abdominal organs|Lipoma of intra-abdominal organs +C0153972|T191|PT|214.4|ICD9CM|Lipoma of spermatic cord|Lipoma of spermatic cord +C0153972|T191|AB|214.4|ICD9CM|Lipoma spermatic cord|Lipoma spermatic cord +C0023800|T191|AB|214.8|ICD9CM|Lipoma NEC|Lipoma NEC +C0023800|T191|PT|214.8|ICD9CM|Lipoma of other specified sites|Lipoma of other specified sites +C0023798|T191|AB|214.9|ICD9CM|Lipoma NOS|Lipoma NOS +C0023798|T191|PT|214.9|ICD9CM|Lipoma, unspecified site|Lipoma, unspecified site +C0496876|T191|HT|215|ICD9CM|Other benign neoplasm of connective and other soft tissue|Other benign neoplasm of connective and other soft tissue +C0153974|T191|AB|215.0|ICD9CM|Ben neo soft tissue head|Ben neo soft tissue head +C0153974|T191|PT|215.0|ICD9CM|Other benign neoplasm of connective and other soft tissue of head, face, and neck|Other benign neoplasm of connective and other soft tissue of head, face, and neck +C0153975|T191|AB|215.2|ICD9CM|Ben neo soft tissue arm|Ben neo soft tissue arm +C0153975|T191|PT|215.2|ICD9CM|Other benign neoplasm of connective and other soft tissue of upper limb, including shoulder|Other benign neoplasm of connective and other soft tissue of upper limb, including shoulder +C0153976|T191|AB|215.3|ICD9CM|Ben neo soft tissue leg|Ben neo soft tissue leg +C0153976|T191|PT|215.3|ICD9CM|Other benign neoplasm of connective and other soft tissue of lower limb, including hip|Other benign neoplasm of connective and other soft tissue of lower limb, including hip +C0153977|T191|AB|215.4|ICD9CM|Ben neo soft tis thorax|Ben neo soft tis thorax +C0153977|T191|PT|215.4|ICD9CM|Other benign neoplasm of connective and other soft tissue of thorax|Other benign neoplasm of connective and other soft tissue of thorax +C0153978|T191|AB|215.5|ICD9CM|Ben neo soft tis abdomen|Ben neo soft tis abdomen +C0153978|T191|PT|215.5|ICD9CM|Other benign neoplasm of connective and other soft tissue of abdomen|Other benign neoplasm of connective and other soft tissue of abdomen +C0153979|T191|AB|215.6|ICD9CM|Ben neo soft tis pelvis|Ben neo soft tis pelvis +C0153979|T191|PT|215.6|ICD9CM|Other benign neoplasm of connective and other soft tissue of pelvis|Other benign neoplasm of connective and other soft tissue of pelvis +C0375098|T191|AB|215.7|ICD9CM|Benign neo trunk NOS|Benign neo trunk NOS +C0375098|T191|PT|215.7|ICD9CM|Other benign neoplasm of connective and other soft tissue of trunk, unspecified|Other benign neoplasm of connective and other soft tissue of trunk, unspecified +C0153981|T191|AB|215.8|ICD9CM|Ben neo soft tissue NEC|Ben neo soft tissue NEC +C0153981|T191|PT|215.8|ICD9CM|Other benign neoplasm of connective and other soft tissue of other specified sites|Other benign neoplasm of connective and other soft tissue of other specified sites +C0496876|T191|AB|215.9|ICD9CM|Ben neo soft tissue NOS|Ben neo soft tissue NOS +C0496876|T191|PT|215.9|ICD9CM|Other benign neoplasm of connective and other soft tissue, site unspecified|Other benign neoplasm of connective and other soft tissue, site unspecified +C0004998|T191|HT|216|ICD9CM|Benign neoplasm of skin|Benign neoplasm of skin +C0153982|T191|AB|216.0|ICD9CM|Benign neo skin lip|Benign neo skin lip +C0153982|T191|PT|216.0|ICD9CM|Benign neoplasm of skin of lip|Benign neoplasm of skin of lip +C0153983|T191|AB|216.1|ICD9CM|Benign neo skin eyelid|Benign neo skin eyelid +C0153983|T191|PT|216.1|ICD9CM|Benign neoplasm of eyelid, including canthus|Benign neoplasm of eyelid, including canthus +C0153984|T191|AB|216.2|ICD9CM|Benign neo skin ear|Benign neo skin ear +C0153984|T191|PT|216.2|ICD9CM|Benign neoplasm of ear and external auditory canal|Benign neoplasm of ear and external auditory canal +C0153985|T191|AB|216.3|ICD9CM|Benign neo skin face NEC|Benign neo skin face NEC +C0153985|T191|PT|216.3|ICD9CM|Benign neoplasm of skin of other and unspecified parts of face|Benign neoplasm of skin of other and unspecified parts of face +C0153986|T191|AB|216.4|ICD9CM|Ben neo scalp/skin neck|Ben neo scalp/skin neck +C0153986|T191|PT|216.4|ICD9CM|Benign neoplasm of scalp and skin of neck|Benign neoplasm of scalp and skin of neck +C0153987|T191|AB|216.5|ICD9CM|Benign neo skin trunk|Benign neo skin trunk +C0153987|T191|PT|216.5|ICD9CM|Benign neoplasm of skin of trunk, except scrotum|Benign neoplasm of skin of trunk, except scrotum +C0153988|T191|AB|216.6|ICD9CM|Benign neo skin arm|Benign neo skin arm +C0153988|T191|PT|216.6|ICD9CM|Benign neoplasm of skin of upper limb, including shoulder|Benign neoplasm of skin of upper limb, including shoulder +C0153989|T191|AB|216.7|ICD9CM|Benign neo skin leg|Benign neo skin leg +C0153989|T191|PT|216.7|ICD9CM|Benign neoplasm of skin of lower limb, including hip|Benign neoplasm of skin of lower limb, including hip +C0153990|T191|PT|216.8|ICD9CM|Benign neoplasm of other specified sites of skin|Benign neoplasm of other specified sites of skin +C0153990|T191|AB|216.8|ICD9CM|Benign neoplasm skin NEC|Benign neoplasm skin NEC +C0004998|T191|PT|216.9|ICD9CM|Benign neoplasm of skin, site unspecified|Benign neoplasm of skin, site unspecified +C0004998|T191|AB|216.9|ICD9CM|Benign neoplasm skin NOS|Benign neoplasm skin NOS +C0346156|T191|AB|217|ICD9CM|Benign neoplasm breast|Benign neoplasm breast +C0346156|T191|PT|217|ICD9CM|Benign neoplasm of breast|Benign neoplasm of breast +C0042133|T191|HT|218|ICD9CM|Uterine leiomyoma|Uterine leiomyoma +C0153993|T191|AB|218.0|ICD9CM|Submucous leiomyoma|Submucous leiomyoma +C0153993|T191|PT|218.0|ICD9CM|Submucous leiomyoma of uterus|Submucous leiomyoma of uterus +C0153994|T191|AB|218.1|ICD9CM|Intramural leiomyoma|Intramural leiomyoma +C0153994|T191|PT|218.1|ICD9CM|Intramural leiomyoma of uterus|Intramural leiomyoma of uterus +C0153995|T191|AB|218.2|ICD9CM|Subserous leiomyoma|Subserous leiomyoma +C0153995|T191|PT|218.2|ICD9CM|Subserous leiomyoma of uterus|Subserous leiomyoma of uterus +C0042133|T191|PT|218.9|ICD9CM|Leiomyoma of uterus, unspecified|Leiomyoma of uterus, unspecified +C0042133|T191|AB|218.9|ICD9CM|Uterine leiomyoma NOS|Uterine leiomyoma NOS +C0153996|T191|HT|219|ICD9CM|Other benign neoplasm of uterus|Other benign neoplasm of uterus +C0153997|T191|AB|219.0|ICD9CM|Benign neo cervix uteri|Benign neo cervix uteri +C0153997|T191|PT|219.0|ICD9CM|Benign neoplasm of cervix uteri|Benign neoplasm of cervix uteri +C0153998|T191|AB|219.1|ICD9CM|Benign neo corpus uteri|Benign neo corpus uteri +C0153998|T191|PT|219.1|ICD9CM|Benign neoplasm of corpus uteri|Benign neoplasm of corpus uteri +C0347491|T191|AB|219.8|ICD9CM|Benign neo uterus NEC|Benign neo uterus NEC +C0347491|T191|PT|219.8|ICD9CM|Benign neoplasm of other specified parts of uterus|Benign neoplasm of other specified parts of uterus +C0153999|T191|AB|219.9|ICD9CM|Benign neo uterus NOS|Benign neo uterus NOS +C0153999|T191|PT|219.9|ICD9CM|Benign neoplasm of uterus, part unspecified|Benign neoplasm of uterus, part unspecified +C0004997|T191|PT|220|ICD9CM|Benign neoplasm of ovary|Benign neoplasm of ovary +C0004997|T191|AB|220|ICD9CM|Benign neoplasm ovary|Benign neoplasm ovary +C0154000|T191|HT|221|ICD9CM|Benign neoplasm of other female genital organs|Benign neoplasm of other female genital organs +C0496889|T191|AB|221.0|ICD9CM|Ben neo fallopian tube|Ben neo fallopian tube +C0496889|T191|PT|221.0|ICD9CM|Benign neoplasm of fallopian tube and uterine ligaments|Benign neoplasm of fallopian tube and uterine ligaments +C0154002|T191|PT|221.1|ICD9CM|Benign neoplasm of vagina|Benign neoplasm of vagina +C0154002|T191|AB|221.1|ICD9CM|Benign neoplasm vagina|Benign neoplasm vagina +C0154003|T191|PT|221.2|ICD9CM|Benign neoplasm of vulva|Benign neoplasm of vulva +C0154003|T191|AB|221.2|ICD9CM|Benign neoplasm vulva|Benign neoplasm vulva +C0154004|T191|AB|221.8|ICD9CM|Ben neo fem genital NEC|Ben neo fem genital NEC +C0154004|T191|PT|221.8|ICD9CM|Benign neoplasm of other specified sites of female genital organs|Benign neoplasm of other specified sites of female genital organs +C0154005|T191|AB|221.9|ICD9CM|Ben neo fem genital NOS|Ben neo fem genital NOS +C0154005|T191|PT|221.9|ICD9CM|Benign neoplasm of female genital organ, site unspecified|Benign neoplasm of female genital organ, site unspecified +C0496891|T191|HT|222|ICD9CM|Benign neoplasm of male genital organs|Benign neoplasm of male genital organs +C0154007|T191|PT|222.0|ICD9CM|Benign neoplasm of testis|Benign neoplasm of testis +C0154007|T191|AB|222.0|ICD9CM|Benign neoplasm testis|Benign neoplasm testis +C0149627|T191|PT|222.1|ICD9CM|Benign neoplasm of penis|Benign neoplasm of penis +C0149627|T191|AB|222.1|ICD9CM|Benign neoplasm penis|Benign neoplasm penis +C0154009|T191|PT|222.2|ICD9CM|Benign neoplasm of prostate|Benign neoplasm of prostate +C0154009|T191|AB|222.2|ICD9CM|Benign neoplasm prostate|Benign neoplasm prostate +C0154010|T191|AB|222.3|ICD9CM|Benign neo epididymis|Benign neo epididymis +C0154010|T191|PT|222.3|ICD9CM|Benign neoplasm of epididymis|Benign neoplasm of epididymis +C0154011|T191|PT|222.4|ICD9CM|Benign neoplasm of scrotum|Benign neoplasm of scrotum +C0154011|T191|AB|222.4|ICD9CM|Benign neoplasm scrotum|Benign neoplasm scrotum +C0154012|T191|AB|222.8|ICD9CM|Ben neo male genital NEC|Ben neo male genital NEC +C0154012|T191|PT|222.8|ICD9CM|Benign neoplasm of other specified sites of male genital organs|Benign neoplasm of other specified sites of male genital organs +C0496891|T191|AB|222.9|ICD9CM|Ben neo male genital NOS|Ben neo male genital NOS +C0496891|T191|PT|222.9|ICD9CM|Benign neoplasm of male genital organ, site unspecified|Benign neoplasm of male genital organ, site unspecified +C0154013|T191|HT|223|ICD9CM|Benign neoplasm of kidney and other urinary organs|Benign neoplasm of kidney and other urinary organs +C0154014|T191|AB|223.0|ICD9CM|Benign neoplasm kidney|Benign neoplasm kidney +C0154014|T191|PT|223.0|ICD9CM|Benign neoplasm of kidney, except pelvis|Benign neoplasm of kidney, except pelvis +C0154015|T191|AB|223.1|ICD9CM|Benign neo renal pelvis|Benign neo renal pelvis +C0154015|T191|PT|223.1|ICD9CM|Benign neoplasm of renal pelvis|Benign neoplasm of renal pelvis +C0154016|T191|PT|223.2|ICD9CM|Benign neoplasm of ureter|Benign neoplasm of ureter +C0154016|T191|AB|223.2|ICD9CM|Benign neoplasm ureter|Benign neoplasm ureter +C0154017|T191|AB|223.3|ICD9CM|Benign neoplasm bladder|Benign neoplasm bladder +C0154017|T191|PT|223.3|ICD9CM|Benign neoplasm of bladder|Benign neoplasm of bladder +C0154018|T191|HT|223.8|ICD9CM|Benign neoplasm of other specified sites of urinary organs|Benign neoplasm of other specified sites of urinary organs +C0154019|T191|PT|223.81|ICD9CM|Benign neoplasm of urethra|Benign neoplasm of urethra +C0154019|T191|AB|223.81|ICD9CM|Benign neoplasm urethra|Benign neoplasm urethra +C0154018|T191|AB|223.89|ICD9CM|Benign neo urinary NEC|Benign neo urinary NEC +C0154018|T191|PT|223.89|ICD9CM|Benign neoplasm of other specified sites of urinary organs|Benign neoplasm of other specified sites of urinary organs +C0496893|T191|AB|223.9|ICD9CM|Benign neo urinary NOS|Benign neo urinary NOS +C0496893|T191|PT|223.9|ICD9CM|Benign neoplasm of urinary organ, site unspecified|Benign neoplasm of urinary organ, site unspecified +C0496897|T191|HT|224|ICD9CM|Benign neoplasm of eye|Benign neoplasm of eye +C0154022|T191|AB|224.0|ICD9CM|Benign neoplasm eyeball|Benign neoplasm eyeball +C0154022|T191|PT|224.0|ICD9CM|Benign neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid|Benign neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid +C0154023|T191|PT|224.1|ICD9CM|Benign neoplasm of orbit|Benign neoplasm of orbit +C0154023|T191|AB|224.1|ICD9CM|Benign neoplasm orbit|Benign neoplasm orbit +C0154024|T191|AB|224.2|ICD9CM|Ben neo lacrimal gland|Ben neo lacrimal gland +C0154024|T191|PT|224.2|ICD9CM|Benign neoplasm of lacrimal gland|Benign neoplasm of lacrimal gland +C0154025|T191|AB|224.3|ICD9CM|Benign neo conjunctiva|Benign neo conjunctiva +C0154025|T191|PT|224.3|ICD9CM|Benign neoplasm of conjunctiva|Benign neoplasm of conjunctiva +C0154026|T191|AB|224.4|ICD9CM|Benign neoplasm cornea|Benign neoplasm cornea +C0154026|T191|PT|224.4|ICD9CM|Benign neoplasm of cornea|Benign neoplasm of cornea +C0154027|T191|PT|224.5|ICD9CM|Benign neoplasm of retina|Benign neoplasm of retina +C0154027|T191|AB|224.5|ICD9CM|Benign neoplasm retina|Benign neoplasm retina +C0154028|T191|AB|224.6|ICD9CM|Benign neoplasm choroid|Benign neoplasm choroid +C0154028|T191|PT|224.6|ICD9CM|Benign neoplasm of choroid|Benign neoplasm of choroid +C0154029|T191|AB|224.7|ICD9CM|Ben neo lacrimal duct|Ben neo lacrimal duct +C0154029|T191|PT|224.7|ICD9CM|Benign neoplasm of lacrimal duct|Benign neoplasm of lacrimal duct +C0154030|T191|AB|224.8|ICD9CM|Benign neoplasm eye NEC|Benign neoplasm eye NEC +C0154030|T191|PT|224.8|ICD9CM|Benign neoplasm of other specified parts of eye|Benign neoplasm of other specified parts of eye +C0496897|T191|AB|224.9|ICD9CM|Benign neoplasm eye NOS|Benign neoplasm eye NOS +C0496897|T191|PT|224.9|ICD9CM|Benign neoplasm of eye, part unspecified|Benign neoplasm of eye, part unspecified +C0497550|T191|HT|225|ICD9CM|Benign neoplasm of brain and other parts of nervous system|Benign neoplasm of brain and other parts of nervous system +C0496899|T191|AB|225.0|ICD9CM|Benign neoplasm brain|Benign neoplasm brain +C0496899|T191|PT|225.0|ICD9CM|Benign neoplasm of brain|Benign neoplasm of brain +C0004992|T191|AB|225.1|ICD9CM|Benign neo cranial nerve|Benign neo cranial nerve +C0004992|T191|PT|225.1|ICD9CM|Benign neoplasm of cranial nerves|Benign neoplasm of cranial nerves +C0154033|T191|AB|225.2|ICD9CM|Ben neo cerebr meninges|Ben neo cerebr meninges +C0154033|T191|PT|225.2|ICD9CM|Benign neoplasm of cerebral meninges|Benign neoplasm of cerebral meninges +C0154034|T191|AB|225.3|ICD9CM|Benign neo spinal cord|Benign neo spinal cord +C0154034|T191|PT|225.3|ICD9CM|Benign neoplasm of spinal cord|Benign neoplasm of spinal cord +C0154035|T191|AB|225.4|ICD9CM|Ben neo spinal meninges|Ben neo spinal meninges +C0154035|T191|PT|225.4|ICD9CM|Benign neoplasm of spinal meninges|Benign neoplasm of spinal meninges +C0154036|T191|AB|225.8|ICD9CM|Benign neo nerv sys NEC|Benign neo nerv sys NEC +C0154036|T191|PT|225.8|ICD9CM|Benign neoplasm of other specified sites of nervous system|Benign neoplasm of other specified sites of nervous system +C0497550|T191|AB|225.9|ICD9CM|Benign neo nerv sys NOS|Benign neo nerv sys NOS +C0497550|T191|PT|225.9|ICD9CM|Benign neoplasm of nervous system, part unspecified|Benign neoplasm of nervous system, part unspecified +C0154038|T191|PT|226|ICD9CM|Benign neoplasm of thyroid glands|Benign neoplasm of thyroid glands +C0154038|T191|AB|226|ICD9CM|Benign neoplasm thyroid|Benign neoplasm thyroid +C0154039|T191|HT|227|ICD9CM|Benign neoplasm of other endocrine glands and related structures|Benign neoplasm of other endocrine glands and related structures +C0154040|T191|AB|227.0|ICD9CM|Benign neoplasm adrenal|Benign neoplasm adrenal +C0154040|T191|PT|227.0|ICD9CM|Benign neoplasm of adrenal gland|Benign neoplasm of adrenal gland +C0154041|T191|AB|227.1|ICD9CM|Benign neo parathyroid|Benign neo parathyroid +C0154041|T191|PT|227.1|ICD9CM|Benign neoplasm of parathyroid gland|Benign neoplasm of parathyroid gland +C0347525|T191|AB|227.3|ICD9CM|Benign neo pituitary|Benign neo pituitary +C0347525|T191|PT|227.3|ICD9CM|Benign neoplasm of pituitary gland and craniopharyngeal duct|Benign neoplasm of pituitary gland and craniopharyngeal duct +C0154043|T191|AB|227.4|ICD9CM|Ben neopl pineal gland|Ben neopl pineal gland +C0154043|T191|PT|227.4|ICD9CM|Benign neoplasm of pineal gland|Benign neoplasm of pineal gland +C0154044|T191|AB|227.5|ICD9CM|Benign neo carotid body|Benign neo carotid body +C0154044|T191|PT|227.5|ICD9CM|Benign neoplasm of carotid body|Benign neoplasm of carotid body +C0154045|T191|AB|227.6|ICD9CM|Ben neo paraganglia NEC|Ben neo paraganglia NEC +C0154045|T191|PT|227.6|ICD9CM|Benign neoplasm of aortic body and other paraganglia|Benign neoplasm of aortic body and other paraganglia +C0154039|T191|AB|227.8|ICD9CM|Benign neo endocrine NEC|Benign neo endocrine NEC +C0154039|T191|PT|227.8|ICD9CM|Benign neoplasm of other endocrine glands and related structures|Benign neoplasm of other endocrine glands and related structures +C0347524|T191|AB|227.9|ICD9CM|Benign neo endocrine NOS|Benign neo endocrine NOS +C0347524|T191|PT|227.9|ICD9CM|Benign neoplasm of endocrine gland, site unspecified|Benign neoplasm of endocrine gland, site unspecified +C0851225|T191|HT|228|ICD9CM|Hemangioma and lymphangioma, any site|Hemangioma and lymphangioma, any site +C0018916|T191|HT|228.0|ICD9CM|Hemangioma, any site|Hemangioma, any site +C0018916|T191|AB|228.00|ICD9CM|Hemangioma NOS|Hemangioma NOS +C0018916|T191|PT|228.00|ICD9CM|Hemangioma of unspecified site|Hemangioma of unspecified site +C0154049|T191|PT|228.01|ICD9CM|Hemangioma of skin and subcutaneous tissue|Hemangioma of skin and subcutaneous tissue +C0154049|T191|AB|228.01|ICD9CM|Hemangioma skin|Hemangioma skin +C0154050|T191|AB|228.02|ICD9CM|Hemangioma intracranial|Hemangioma intracranial +C0154050|T191|PT|228.02|ICD9CM|Hemangioma of intracranial structures|Hemangioma of intracranial structures +C0154051|T191|PT|228.03|ICD9CM|Hemangioma of retina|Hemangioma of retina +C0154051|T191|AB|228.03|ICD9CM|Hemangioma retina|Hemangioma retina +C0154052|T191|AB|228.04|ICD9CM|Hemangioma intra-abdom|Hemangioma intra-abdom +C0154052|T191|PT|228.04|ICD9CM|Hemangioma of intra-abdominal structures|Hemangioma of intra-abdominal structures +C0018918|T191|AB|228.09|ICD9CM|Hemangioma NEC|Hemangioma NEC +C0018918|T191|PT|228.09|ICD9CM|Hemangioma of other sites|Hemangioma of other sites +C0024221|T191|AB|228.1|ICD9CM|Lymphangioma, any site|Lymphangioma, any site +C0024221|T191|PT|228.1|ICD9CM|Lymphangioma, any site|Lymphangioma, any site +C0154053|T191|HT|229|ICD9CM|Benign neoplasm of other and unspecified sites|Benign neoplasm of other and unspecified sites +C0154054|T191|AB|229.0|ICD9CM|Benign neo lymph nodes|Benign neo lymph nodes +C0154054|T191|PT|229.0|ICD9CM|Benign neoplasm of lymph nodes|Benign neoplasm of lymph nodes +C0154055|T191|AB|229.8|ICD9CM|Benign neoplasm NEC|Benign neoplasm NEC +C0154055|T191|PT|229.8|ICD9CM|Benign neoplasm of other specified sites|Benign neoplasm of other specified sites +C0086692|T191|AB|229.9|ICD9CM|Benign neoplasm NOS|Benign neoplasm NOS +C0086692|T191|PT|229.9|ICD9CM|Benign neoplasm of unspecified site|Benign neoplasm of unspecified site +C0154057|T191|HT|230|ICD9CM|Carcinoma in situ of digestive organs|Carcinoma in situ of digestive organs +C0007099|T191|HT|230-234.99|ICD9CM|CARCINOMA IN SITU|CARCINOMA IN SITU +C0154058|T191|AB|230.0|ICD9CM|Ca in situ oral cav/phar|Ca in situ oral cav/phar +C0154058|T191|PT|230.0|ICD9CM|Carcinoma in situ of lip, oral cavity, and pharynx|Carcinoma in situ of lip, oral cavity, and pharynx +C0154059|T191|AB|230.1|ICD9CM|Ca in situ esophagus|Ca in situ esophagus +C0154059|T191|PT|230.1|ICD9CM|Carcinoma in situ of esophagus|Carcinoma in situ of esophagus +C0154060|T191|AB|230.2|ICD9CM|Ca in situ stomach|Ca in situ stomach +C0154060|T191|PT|230.2|ICD9CM|Carcinoma in situ of stomach|Carcinoma in situ of stomach +C0154061|T191|AB|230.3|ICD9CM|Ca in situ colon|Ca in situ colon +C0154061|T191|PT|230.3|ICD9CM|Carcinoma in situ of colon|Carcinoma in situ of colon +C0154062|T191|AB|230.4|ICD9CM|Ca in situ rectum|Ca in situ rectum +C0154062|T191|PT|230.4|ICD9CM|Carcinoma in situ of rectum|Carcinoma in situ of rectum +C2242854|T191|AB|230.5|ICD9CM|Ca in situ anal canal|Ca in situ anal canal +C2242854|T191|PT|230.5|ICD9CM|Carcinoma in situ of anal canal|Carcinoma in situ of anal canal +C0154064|T191|AB|230.6|ICD9CM|Ca in situ anus NOS|Ca in situ anus NOS +C0154064|T191|PT|230.6|ICD9CM|Carcinoma in situ of anus, unspecified|Carcinoma in situ of anus, unspecified +C0154065|T191|AB|230.7|ICD9CM|Ca in situ bowel NEC/NOS|Ca in situ bowel NEC/NOS +C0154065|T191|PT|230.7|ICD9CM|Carcinoma in situ of other and unspecified parts of intestine|Carcinoma in situ of other and unspecified parts of intestine +C0496854|T191|AB|230.8|ICD9CM|Ca in situ liver/biliary|Ca in situ liver/biliary +C0496854|T191|PT|230.8|ICD9CM|Carcinoma in situ of liver and biliary system|Carcinoma in situ of liver and biliary system +C0154067|T191|AB|230.9|ICD9CM|Ca in situ GI NEC/NOS|Ca in situ GI NEC/NOS +C0154067|T191|PT|230.9|ICD9CM|Carcinoma in situ of other and unspecified digestive organs|Carcinoma in situ of other and unspecified digestive organs +C0348402|T191|HT|231|ICD9CM|Carcinoma in situ of respiratory system|Carcinoma in situ of respiratory system +C0154069|T191|AB|231.0|ICD9CM|Ca in situ larynx|Ca in situ larynx +C0154069|T191|PT|231.0|ICD9CM|Carcinoma in situ of larynx|Carcinoma in situ of larynx +C0154070|T191|AB|231.1|ICD9CM|Ca in situ trachea|Ca in situ trachea +C0154070|T191|PT|231.1|ICD9CM|Carcinoma in situ of trachea|Carcinoma in situ of trachea +C0154071|T191|AB|231.2|ICD9CM|Ca in situ bronchus/lung|Ca in situ bronchus/lung +C0154071|T191|PT|231.2|ICD9CM|Carcinoma in situ of bronchus and lung|Carcinoma in situ of bronchus and lung +C0154072|T191|AB|231.8|ICD9CM|Ca in situ resp sys NEC|Ca in situ resp sys NEC +C0154072|T191|PT|231.8|ICD9CM|Carcinoma in situ of other specified parts of respiratory system|Carcinoma in situ of other specified parts of respiratory system +C0348402|T191|AB|231.9|ICD9CM|Ca in situ resp sys NOS|Ca in situ resp sys NOS +C0348402|T191|PT|231.9|ICD9CM|Carcinoma in situ of respiratory system, part unspecified|Carcinoma in situ of respiratory system, part unspecified +C0154073|T191|HT|232|ICD9CM|Carcinoma in situ of skin|Carcinoma in situ of skin +C0154074|T191|AB|232.0|ICD9CM|Ca in situ skin lip|Ca in situ skin lip +C0154074|T191|PT|232.0|ICD9CM|Carcinoma in situ of skin of lip|Carcinoma in situ of skin of lip +C0347138|T191|AB|232.1|ICD9CM|Ca in situ eyelid|Ca in situ eyelid +C0347138|T191|PT|232.1|ICD9CM|Carcinoma in situ of eyelid, including canthus|Carcinoma in situ of eyelid, including canthus +C0347139|T191|AB|232.2|ICD9CM|Ca in situ skin ear|Ca in situ skin ear +C0347139|T191|PT|232.2|ICD9CM|Carcinoma in situ of skin of ear and external auditory canal|Carcinoma in situ of skin of ear and external auditory canal +C0154077|T191|AB|232.3|ICD9CM|Ca in situ skin face NEC|Ca in situ skin face NEC +C0154077|T191|PT|232.3|ICD9CM|Carcinoma in situ of skin of other and unspecified parts of face|Carcinoma in situ of skin of other and unspecified parts of face +C0154078|T191|AB|232.4|ICD9CM|Ca in situ scalp|Ca in situ scalp +C0154078|T191|PT|232.4|ICD9CM|Carcinoma in situ of scalp and skin of neck|Carcinoma in situ of scalp and skin of neck +C0154079|T191|AB|232.5|ICD9CM|Ca in situ skin trunk|Ca in situ skin trunk +C0154079|T191|PT|232.5|ICD9CM|Carcinoma in situ of skin of trunk, except scrotum|Carcinoma in situ of skin of trunk, except scrotum +C0154080|T191|AB|232.6|ICD9CM|Ca in situ skin arm|Ca in situ skin arm +C0154080|T191|PT|232.6|ICD9CM|Carcinoma in situ of skin of upper limb, including shoulder|Carcinoma in situ of skin of upper limb, including shoulder +C0154081|T191|AB|232.7|ICD9CM|Ca in situ skin leg|Ca in situ skin leg +C0154081|T191|PT|232.7|ICD9CM|Carcinoma in situ of skin of lower limb, including hip|Carcinoma in situ of skin of lower limb, including hip +C0154082|T191|AB|232.8|ICD9CM|Ca in situ skin NEC|Ca in situ skin NEC +C0154082|T191|PT|232.8|ICD9CM|Carcinoma in situ of other specified sites of skin|Carcinoma in situ of other specified sites of skin +C0154073|T191|AB|232.9|ICD9CM|Ca in situ skin NOS|Ca in situ skin NOS +C0154073|T191|PT|232.9|ICD9CM|Carcinoma in situ of skin, site unspecified|Carcinoma in situ of skin, site unspecified +C0154083|T191|HT|233|ICD9CM|Carcinoma in situ of breast and genitourinary system|Carcinoma in situ of breast and genitourinary system +C0154084|T191|AB|233.0|ICD9CM|Ca in situ breast|Ca in situ breast +C0154084|T191|PT|233.0|ICD9CM|Carcinoma in situ of breast|Carcinoma in situ of breast +C0851140|T191|AB|233.1|ICD9CM|Ca in situ cervix uteri|Ca in situ cervix uteri +C0851140|T191|PT|233.1|ICD9CM|Carcinoma in situ of cervix uteri|Carcinoma in situ of cervix uteri +C0154086|T191|AB|233.2|ICD9CM|Ca in situ uterus NEC|Ca in situ uterus NEC +C0154086|T191|PT|233.2|ICD9CM|Carcinoma in situ of other and unspecified parts of uterus|Carcinoma in situ of other and unspecified parts of uterus +C0154087|T191|HT|233.3|ICD9CM|Carcinoma in situ of other and unspecified female genital organs|Carcinoma in situ of other and unspecified female genital organs +C1955737|T191|AB|233.30|ICD9CM|Ca in situ fem gen NOS|Ca in situ fem gen NOS +C1955737|T191|PT|233.30|ICD9CM|Carcinoma in situ, unspecified female genital organ|Carcinoma in situ, unspecified female genital organ +C0686277|T191|AB|233.31|ICD9CM|Carcinoma in situ vagina|Carcinoma in situ vagina +C0686277|T191|PT|233.31|ICD9CM|Carcinoma in situ, vagina|Carcinoma in situ, vagina +C0278729|T191|AB|233.32|ICD9CM|Carcinoma in situ vulva|Carcinoma in situ vulva +C0278729|T191|PT|233.32|ICD9CM|Carcinoma in situ, vulva|Carcinoma in situ, vulva +C1955739|T191|AB|233.39|ICD9CM|Ca in situ fem gen NEC|Ca in situ fem gen NEC +C1955739|T191|PT|233.39|ICD9CM|Carcinoma in situ, other female genital organ|Carcinoma in situ, other female genital organ +C0154088|T191|AB|233.4|ICD9CM|Ca in situ prostate|Ca in situ prostate +C0154088|T191|PT|233.4|ICD9CM|Carcinoma in situ of prostate|Carcinoma in situ of prostate +C0154089|T191|AB|233.5|ICD9CM|Ca in situ penis|Ca in situ penis +C0154089|T191|PT|233.5|ICD9CM|Carcinoma in situ of penis|Carcinoma in situ of penis +C0154090|T191|AB|233.6|ICD9CM|Ca in situ male gen NEC|Ca in situ male gen NEC +C0154090|T191|PT|233.6|ICD9CM|Carcinoma in situ of other and unspecified male genital organs|Carcinoma in situ of other and unspecified male genital organs +C0154091|T191|AB|233.7|ICD9CM|Ca in situ bladder|Ca in situ bladder +C0154091|T191|PT|233.7|ICD9CM|Carcinoma in situ of bladder|Carcinoma in situ of bladder +C0154092|T191|AB|233.9|ICD9CM|Ca in situ urinary NEC|Ca in situ urinary NEC +C0154092|T191|PT|233.9|ICD9CM|Carcinoma in situ of other and unspecified urinary organs|Carcinoma in situ of other and unspecified urinary organs +C0154093|T191|HT|234|ICD9CM|Carcinoma in situ of other and unspecified sites|Carcinoma in situ of other and unspecified sites +C0154094|T191|AB|234.0|ICD9CM|Ca in situ eye|Ca in situ eye +C0154094|T191|PT|234.0|ICD9CM|Carcinoma in situ of eye|Carcinoma in situ of eye +C0007100|T191|AB|234.8|ICD9CM|Ca in situ NEC|Ca in situ NEC +C0007100|T191|PT|234.8|ICD9CM|Carcinoma in situ of other specified sites|Carcinoma in situ of other specified sites +C0007099|T191|AB|234.9|ICD9CM|Ca in situ NOS|Ca in situ NOS +C0007099|T191|PT|234.9|ICD9CM|Carcinoma in situ, site unspecified|Carcinoma in situ, site unspecified +C0154095|T191|HT|235|ICD9CM|Neoplasm of uncertain behavior of digestive and respiratory systems|Neoplasm of uncertain behavior of digestive and respiratory systems +C0154129|T191|HT|235-238.99|ICD9CM|NEOPLASMS OF UNCERTAIN BEHAVIOR|NEOPLASMS OF UNCERTAIN BEHAVIOR +C0154096|T191|PT|235.0|ICD9CM|Neoplasm of uncertain behavior of major salivary glands|Neoplasm of uncertain behavior of major salivary glands +C0154096|T191|AB|235.0|ICD9CM|Unc behav neo salivary|Unc behav neo salivary +C0154097|T191|PT|235.1|ICD9CM|Neoplasm of uncertain behavior of lip, oral cavity, and pharynx|Neoplasm of uncertain behavior of lip, oral cavity, and pharynx +C0154097|T191|AB|235.1|ICD9CM|Unc behav neo oral/phar|Unc behav neo oral/phar +C0154098|T191|PT|235.2|ICD9CM|Neoplasm of uncertain behavior of stomach, intestines, and rectum|Neoplasm of uncertain behavior of stomach, intestines, and rectum +C0154098|T191|AB|235.2|ICD9CM|Unc behav neo intestine|Unc behav neo intestine +C0496909|T191|PT|235.3|ICD9CM|Neoplasm of uncertain behavior of liver and biliary passages|Neoplasm of uncertain behavior of liver and biliary passages +C0496909|T191|AB|235.3|ICD9CM|Unc behav neo liver|Unc behav neo liver +C0154100|T191|PT|235.4|ICD9CM|Neoplasm of uncertain behavior of retroperitoneum and peritoneum|Neoplasm of uncertain behavior of retroperitoneum and peritoneum +C0154100|T191|AB|235.4|ICD9CM|Unc behav neo peritoneum|Unc behav neo peritoneum +C0154101|T191|PT|235.5|ICD9CM|Neoplasm of uncertain behavior of other and unspecified digestive organs|Neoplasm of uncertain behavior of other and unspecified digestive organs +C0154101|T191|AB|235.5|ICD9CM|Unc behav neo GI NEC|Unc behav neo GI NEC +C0496912|T191|PT|235.6|ICD9CM|Neoplasm of uncertain behavior of larynx|Neoplasm of uncertain behavior of larynx +C0496912|T191|AB|235.6|ICD9CM|Unc behav neo larynx|Unc behav neo larynx +C0154103|T191|PT|235.7|ICD9CM|Neoplasm of uncertain behavior of trachea, bronchus, and lung|Neoplasm of uncertain behavior of trachea, bronchus, and lung +C0154103|T191|AB|235.7|ICD9CM|Unc behav neo lung|Unc behav neo lung +C0154104|T191|PT|235.8|ICD9CM|Neoplasm of uncertain behavior of pleura, thymus, and mediastinum|Neoplasm of uncertain behavior of pleura, thymus, and mediastinum +C0154104|T191|AB|235.8|ICD9CM|Unc behav neo pleura|Unc behav neo pleura +C0154105|T191|PT|235.9|ICD9CM|Neoplasm of uncertain behavior of other and unspecified respiratory organs|Neoplasm of uncertain behavior of other and unspecified respiratory organs +C0154105|T191|AB|235.9|ICD9CM|Unc behav neo resp NEC|Unc behav neo resp NEC +C0154106|T191|HT|236|ICD9CM|Neoplasm of uncertain behavior of genitourinary organs|Neoplasm of uncertain behavior of genitourinary organs +C0496919|T191|PT|236.0|ICD9CM|Neoplasm of uncertain behavior of uterus|Neoplasm of uncertain behavior of uterus +C0496919|T191|AB|236.0|ICD9CM|Uncert behav neo uterus|Uncert behav neo uterus +C0496921|T191|PT|236.1|ICD9CM|Neoplasm of uncertain behavior of placenta|Neoplasm of uncertain behavior of placenta +C0496921|T191|AB|236.1|ICD9CM|Unc behav neo placenta|Unc behav neo placenta +C0496920|T191|PT|236.2|ICD9CM|Neoplasm of uncertain behavior of ovary|Neoplasm of uncertain behavior of ovary +C0496920|T191|AB|236.2|ICD9CM|Unc behav neo ovary|Unc behav neo ovary +C2869595|T191|PT|236.3|ICD9CM|Neoplasm of uncertain behavior of other and unspecified female genital organs|Neoplasm of uncertain behavior of other and unspecified female genital organs +C2869595|T191|AB|236.3|ICD9CM|Unc behav neo female NEC|Unc behav neo female NEC +C0496924|T191|PT|236.4|ICD9CM|Neoplasm of uncertain behavior of testis|Neoplasm of uncertain behavior of testis +C0496924|T191|AB|236.4|ICD9CM|Unc behav neo testis|Unc behav neo testis +C0496923|T191|PT|236.5|ICD9CM|Neoplasm of uncertain behavior of prostate|Neoplasm of uncertain behavior of prostate +C0496923|T191|AB|236.5|ICD9CM|Unc behav neo prostate|Unc behav neo prostate +C2869603|T191|PT|236.6|ICD9CM|Neoplasm of uncertain behavior of other and unspecified male genital organs|Neoplasm of uncertain behavior of other and unspecified male genital organs +C2869603|T191|AB|236.6|ICD9CM|Unc behav neo male NEC|Unc behav neo male NEC +C0496930|T191|PT|236.7|ICD9CM|Neoplasm of uncertain behavior of bladder|Neoplasm of uncertain behavior of bladder +C0496930|T191|AB|236.7|ICD9CM|Unc behav neo bladder|Unc behav neo bladder +C0154113|T191|HT|236.9|ICD9CM|Neoplasm of uncertain behavior of other and unspecified urinary organs|Neoplasm of uncertain behavior of other and unspecified urinary organs +C0496932|T191|PT|236.90|ICD9CM|Neoplasm of uncertain behavior of urinary organ, unspecified|Neoplasm of uncertain behavior of urinary organ, unspecified +C0496932|T191|AB|236.90|ICD9CM|Unc behav neo urinar NOS|Unc behav neo urinar NOS +C0154115|T191|PT|236.91|ICD9CM|Neoplasm of uncertain behavior of kidney and ureter|Neoplasm of uncertain behavior of kidney and ureter +C0154115|T191|AB|236.91|ICD9CM|Unc behav neo kidney|Unc behav neo kidney +C2873698|T191|PT|236.99|ICD9CM|Neoplasm of uncertain behavior of other and unspecified urinary organs|Neoplasm of uncertain behavior of other and unspecified urinary organs +C2873698|T191|AB|236.99|ICD9CM|Unc behav neo urinar NEC|Unc behav neo urinar NEC +C0154116|T191|HT|237|ICD9CM|Neoplasm of uncertain behavior of endocrine glands and nervous system|Neoplasm of uncertain behavior of endocrine glands and nervous system +C0027636|T191|PT|237.0|ICD9CM|Neoplasm of uncertain behavior of pituitary gland and craniopharyngeal duct|Neoplasm of uncertain behavior of pituitary gland and craniopharyngeal duct +C0027636|T191|AB|237.0|ICD9CM|Unc behav neo pituitary|Unc behav neo pituitary +C0496946|T191|PT|237.1|ICD9CM|Neoplasm of uncertain behavior of pineal gland|Neoplasm of uncertain behavior of pineal gland +C0496946|T191|AB|237.1|ICD9CM|Unc behav neo pineal|Unc behav neo pineal +C0154117|T191|PT|237.2|ICD9CM|Neoplasm of uncertain behavior of adrenal gland|Neoplasm of uncertain behavior of adrenal gland +C0154117|T191|AB|237.2|ICD9CM|Unc behav neo adrenal|Unc behav neo adrenal +C0027634|T191|PT|237.3|ICD9CM|Neoplasm of uncertain behavior of paraganglia|Neoplasm of uncertain behavior of paraganglia +C0027634|T191|AB|237.3|ICD9CM|Unc behav neo paragang|Unc behav neo paragang +C0154118|T191|PT|237.4|ICD9CM|Neoplasm of uncertain behavior of other and unspecified endocrine glands|Neoplasm of uncertain behavior of other and unspecified endocrine glands +C0154118|T191|AB|237.4|ICD9CM|Uncer neo endocrine NEC|Uncer neo endocrine NEC +C0154119|T191|PT|237.5|ICD9CM|Neoplasm of uncertain behavior of brain and spinal cord|Neoplasm of uncertain behavior of brain and spinal cord +C0154119|T191|AB|237.5|ICD9CM|Unc beh neo brain/spinal|Unc beh neo brain/spinal +C0154120|T191|PT|237.6|ICD9CM|Neoplasm of uncertain behavior of meninges|Neoplasm of uncertain behavior of meninges +C0154120|T191|AB|237.6|ICD9CM|Unc behav neo meninges|Unc behav neo meninges +C0162678|T191|HT|237.7|ICD9CM|Neurofibromatosis|Neurofibromatosis +C0162678|T191|AB|237.70|ICD9CM|Neurofibromatosis NOS|Neurofibromatosis NOS +C0162678|T191|PT|237.70|ICD9CM|Neurofibromatosis, unspecified|Neurofibromatosis, unspecified +C0027831|T191|AB|237.71|ICD9CM|Neurofibromatosis type I|Neurofibromatosis type I +C0027831|T191|PT|237.71|ICD9CM|Neurofibromatosis, type 1 [von recklinghausen's disease]|Neurofibromatosis, type 1 [von recklinghausen's disease] +C0027832|T191|AB|237.72|ICD9CM|Neurofibromatosis typ II|Neurofibromatosis typ II +C0027832|T191|PT|237.72|ICD9CM|Neurofibromatosis, type 2 [acoustic neurofibromatosis]|Neurofibromatosis, type 2 [acoustic neurofibromatosis] +C1335929|T191|PT|237.73|ICD9CM|Schwannomatosis|Schwannomatosis +C1335929|T191|AB|237.73|ICD9CM|Schwannomatosis|Schwannomatosis +C2921012|T047|AB|237.79|ICD9CM|Neurofibromatosis NEC|Neurofibromatosis NEC +C2921012|T047|PT|237.79|ICD9CM|Other neurofibromatosis|Other neurofibromatosis +C0154123|T191|PT|237.9|ICD9CM|Neoplasm of uncertain behavior of other and unspecified parts of nervous system|Neoplasm of uncertain behavior of other and unspecified parts of nervous system +C0154123|T191|AB|237.9|ICD9CM|Unc beh neo nerv sys NEC|Unc beh neo nerv sys NEC +C0154124|T191|HT|238|ICD9CM|Neoplasm of uncertain behavior of other and unspecified sites and tissues|Neoplasm of uncertain behavior of other and unspecified sites and tissues +C0027630|T191|PT|238.0|ICD9CM|Neoplasm of uncertain behavior of bone and articular cartilage|Neoplasm of uncertain behavior of bone and articular cartilage +C0027630|T191|AB|238.0|ICD9CM|Unc behav neo bone|Unc behav neo bone +C0154125|T191|PT|238.1|ICD9CM|Neoplasm of uncertain behavior of connective and other soft tissue|Neoplasm of uncertain behavior of connective and other soft tissue +C0154125|T191|AB|238.1|ICD9CM|Unc behav neo soft tissu|Unc behav neo soft tissu +C0496955|T191|PT|238.2|ICD9CM|Neoplasm of uncertain behavior of skin|Neoplasm of uncertain behavior of skin +C0496955|T191|AB|238.2|ICD9CM|Unc behav neo skin|Unc behav neo skin +C0496956|T191|PT|238.3|ICD9CM|Neoplasm of uncertain behavior of breast|Neoplasm of uncertain behavior of breast +C0496956|T191|AB|238.3|ICD9CM|Unc behav neo breast|Unc behav neo breast +C0032463|T191|AB|238.4|ICD9CM|Polycythemia vera|Polycythemia vera +C0032463|T191|PT|238.4|ICD9CM|Polycythemia vera|Polycythemia vera +C0154127|T191|AB|238.5|ICD9CM|Mastocytoma NOS|Mastocytoma NOS +C0154127|T191|PT|238.5|ICD9CM|Neoplasm of uncertain behavior of histiocytic and mast cells|Neoplasm of uncertain behavior of histiocytic and mast cells +C0027638|T191|PT|238.6|ICD9CM|Neoplasm of uncertain behavior of plasma cells|Neoplasm of uncertain behavior of plasma cells +C0027638|T191|AB|238.6|ICD9CM|Plasmacytoma NOS|Plasmacytoma NOS +C0027632|T191|HT|238.7|ICD9CM|Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues|Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues +C0040028|T047|PT|238.71|ICD9CM|Essential thrombocythemia|Essential thrombocythemia +C0040028|T047|AB|238.71|ICD9CM|Essntial thrombocythemia|Essntial thrombocythemia +C1719305|T047|PT|238.72|ICD9CM|Low grade myelodysplastic syndrome lesions|Low grade myelodysplastic syndrome lesions +C1719305|T047|AB|238.72|ICD9CM|Low grde myelody syn les|Low grde myelody syn les +C1719308|T047|AB|238.73|ICD9CM|Hi grde myelodys syn les|Hi grde myelodys syn les +C1719308|T047|PT|238.73|ICD9CM|High grade myelodysplastic syndrome lesions|High grade myelodysplastic syndrome lesions +C1292779|T191|PT|238.74|ICD9CM|Myelodysplastic syndrome with 5q deletion|Myelodysplastic syndrome with 5q deletion +C1292779|T191|AB|238.74|ICD9CM|Myelodyspls syn w 5q del|Myelodyspls syn w 5q del +C3463824|T191|AB|238.75|ICD9CM|Myelodysplastic synd NOS|Myelodysplastic synd NOS +C3463824|T191|PT|238.75|ICD9CM|Myelodysplastic syndrome, unspecified|Myelodysplastic syndrome, unspecified +C0001815|T191|AB|238.76|ICD9CM|Myelofi w myelo metaplas|Myelofi w myelo metaplas +C0001815|T191|PT|238.76|ICD9CM|Myelofibrosis with myeloid metaplasia|Myelofibrosis with myeloid metaplasia +C0432487|T191|AB|238.77|ICD9CM|Post tp lymphprolif dis|Post tp lymphprolif dis +C0432487|T191|PT|238.77|ICD9CM|Post-transplant lymphoproliferative disorder (PTLD)|Post-transplant lymphoproliferative disorder (PTLD) +C1706492|T191|AB|238.79|ICD9CM|Lymph/hematpoitc tis NEC|Lymph/hematpoitc tis NEC +C1706492|T191|PT|238.79|ICD9CM|Other lymphatic and hematopoietic tissues|Other lymphatic and hematopoietic tissues +C2873733|T191|PT|238.8|ICD9CM|Neoplasm of uncertain behavior of other specified sites|Neoplasm of uncertain behavior of other specified sites +C2873733|T191|AB|238.8|ICD9CM|Uncert behavior neo NEC|Uncert behavior neo NEC +C0375110|T191|PT|238.9|ICD9CM|Neoplasm of uncertain behavior, site unspecified|Neoplasm of uncertain behavior, site unspecified +C0375110|T191|AB|238.9|ICD9CM|Uncert behavior neo NOS|Uncert behavior neo NOS +C3665668|T191|HT|239|ICD9CM|Neoplasms of unspecified nature|Neoplasms of unspecified nature +C3665668|T191|HT|239-239.99|ICD9CM|NEOPLASMS OF UNSPECIFIED NATURE|NEOPLASMS OF UNSPECIFIED NATURE +C0012243|T191|AB|239.0|ICD9CM|Digestive neoplasm NOS|Digestive neoplasm NOS +C0012243|T191|PT|239.0|ICD9CM|Neoplasm of unspecified nature of digestive system|Neoplasm of unspecified nature of digestive system +C0154131|T191|PT|239.1|ICD9CM|Neoplasm of unspecified nature of respiratory system|Neoplasm of unspecified nature of respiratory system +C0154131|T191|AB|239.1|ICD9CM|Respiratory neoplasm NOS|Respiratory neoplasm NOS +C0154132|T191|AB|239.2|ICD9CM|Bone/skin neoplasm NOS|Bone/skin neoplasm NOS +C0154132|T191|PT|239.2|ICD9CM|Neoplasm of unspecified nature of bone, soft tissue, and skin|Neoplasm of unspecified nature of bone, soft tissue, and skin +C0027641|T191|AB|239.3|ICD9CM|Breast neoplasm NOS|Breast neoplasm NOS +C0027641|T191|PT|239.3|ICD9CM|Neoplasm of unspecified nature of breast|Neoplasm of unspecified nature of breast +C0027639|T191|AB|239.4|ICD9CM|Bladder neoplasm NOS|Bladder neoplasm NOS +C0027639|T191|PT|239.4|ICD9CM|Neoplasm of unspecified nature of bladder|Neoplasm of unspecified nature of bladder +C0154133|T191|PT|239.5|ICD9CM|Neoplasm of unspecified nature of other genitourinary organs|Neoplasm of unspecified nature of other genitourinary organs +C0154133|T191|AB|239.5|ICD9CM|Other gu neoplasm NOS|Other gu neoplasm NOS +C0006118|T191|AB|239.6|ICD9CM|Brain neoplasm NOS|Brain neoplasm NOS +C0006118|T191|PT|239.6|ICD9CM|Neoplasm of unspecified nature of brain|Neoplasm of unspecified nature of brain +C0154134|T191|AB|239.7|ICD9CM|Endocrine/nerv neo NOS|Endocrine/nerv neo NOS +C0154134|T191|PT|239.7|ICD9CM|Neoplasm of unspecified nature of endocrine glands and other parts of nervous system|Neoplasm of unspecified nature of endocrine glands and other parts of nervous system +C0154135|T191|HT|239.8|ICD9CM|Neoplasm of unspecified nature of other specified sites|Neoplasm of unspecified nature of other specified sites +C2712911|T191|AB|239.81|ICD9CM|Neo retina/choroid NOS|Neo retina/choroid NOS +C2712911|T191|PT|239.81|ICD9CM|Neoplasms of unspecified nature, retina and choroid|Neoplasms of unspecified nature, retina and choroid +C0154135|T191|AB|239.89|ICD9CM|Neoplasm other sites NOS|Neoplasm other sites NOS +C0154135|T191|PT|239.89|ICD9CM|Neoplasms of unspecified nature, other specified sites|Neoplasms of unspecified nature, other specified sites +C0375111|T191|AB|239.9|ICD9CM|Neoplasm NOS|Neoplasm NOS +C0375111|T191|PT|239.9|ICD9CM|Neoplasm of unspecified nature, site unspecified|Neoplasm of unspecified nature, site unspecified +C0037158|T047|HT|240|ICD9CM|Simple and unspecified goiter|Simple and unspecified goiter +C0040128|T047|HT|240-246.99|ICD9CM|DISORDERS OF THYROID GLAND|DISORDERS OF THYROID GLAND +C0342105|T047|HT|240-279.99|ICD9CM|ENDOCRINE, NUTRITIONAL AND METABOLIC DISEASES, AND IMMUNITY DISORDERS|ENDOCRINE, NUTRITIONAL AND METABOLIC DISEASES, AND IMMUNITY DISORDERS +C0018022|T047|PT|240.0|ICD9CM|Goiter, specified as simple|Goiter, specified as simple +C0018022|T047|AB|240.0|ICD9CM|Simple goiter|Simple goiter +C0018021|T047|AB|240.9|ICD9CM|Goiter NOS|Goiter NOS +C0018021|T047|PT|240.9|ICD9CM|Goiter, unspecified|Goiter, unspecified +C1318500|T047|HT|241|ICD9CM|Nontoxic nodular goiter|Nontoxic nodular goiter +C0342115|T047|AB|241.0|ICD9CM|Nontox uninodular goiter|Nontox uninodular goiter +C0342115|T047|PT|241.0|ICD9CM|Nontoxic uninodular goiter|Nontoxic uninodular goiter +C0271761|T047|AB|241.1|ICD9CM|Nontox multinodul goiter|Nontox multinodul goiter +C0271761|T047|PT|241.1|ICD9CM|Nontoxic multinodular goiter|Nontoxic multinodular goiter +C1318500|T047|AB|241.9|ICD9CM|Nontox nodul goiter NOS|Nontox nodul goiter NOS +C1318500|T047|PT|241.9|ICD9CM|Unspecified nontoxic nodular goiter|Unspecified nontoxic nodular goiter +C0040156|T047|HT|242|ICD9CM|Thyrotoxicosis with or without goiter|Thyrotoxicosis with or without goiter +C0342122|T047|HT|242.0|ICD9CM|Toxic diffuse goiter|Toxic diffuse goiter +C0154138|T047|AB|242.00|ICD9CM|Tox dif goiter no crisis|Tox dif goiter no crisis +C0154138|T047|PT|242.00|ICD9CM|Toxic diffuse goiter without mention of thyrotoxic crisis or storm|Toxic diffuse goiter without mention of thyrotoxic crisis or storm +C0154139|T047|AB|242.01|ICD9CM|Tox dif goiter w crisis|Tox dif goiter w crisis +C0154139|T047|PT|242.01|ICD9CM|Toxic diffuse goiter with mention of thyrotoxic crisis or storm|Toxic diffuse goiter with mention of thyrotoxic crisis or storm +C0154141|T047|HT|242.1|ICD9CM|Toxic uninodular goiter|Toxic uninodular goiter +C0489955|T047|AB|242.10|ICD9CM|Tox uninod goit no cris|Tox uninod goit no cris +C0489955|T047|PT|242.10|ICD9CM|Toxic uninodular goiter without mention of thyrotoxic crisis or storm|Toxic uninodular goiter without mention of thyrotoxic crisis or storm +C0154142|T047|AB|242.11|ICD9CM|Tox uninod goit w crisis|Tox uninod goit w crisis +C0154142|T047|PT|242.11|ICD9CM|Toxic uninodular goiter with mention of thyrotoxic crisis or storm|Toxic uninodular goiter with mention of thyrotoxic crisis or storm +C0154143|T047|HT|242.2|ICD9CM|Toxic multinodular goiter|Toxic multinodular goiter +C0154144|T047|AB|242.20|ICD9CM|Tox multnod goit no cris|Tox multnod goit no cris +C0154144|T047|PT|242.20|ICD9CM|Toxic multinodular goiter without mention of thyrotoxic crisis or storm|Toxic multinodular goiter without mention of thyrotoxic crisis or storm +C0154145|T047|AB|242.21|ICD9CM|Tox multnod goit w cris|Tox multnod goit w cris +C0154145|T047|PT|242.21|ICD9CM|Toxic multinodular goiter with mention of thyrotoxic crisis or storm|Toxic multinodular goiter with mention of thyrotoxic crisis or storm +C0342127|T047|HT|242.3|ICD9CM|Toxic nodular goiter, unspecified type|Toxic nodular goiter, unspecified type +C0154146|T047|AB|242.30|ICD9CM|Tox nod goiter no crisis|Tox nod goiter no crisis +C0154146|T047|PT|242.30|ICD9CM|Toxic nodular goiter, unspecified type, without mention of thyrotoxic crisis or storm|Toxic nodular goiter, unspecified type, without mention of thyrotoxic crisis or storm +C0154147|T047|AB|242.31|ICD9CM|Tox nod goiter w crisis|Tox nod goiter w crisis +C0154147|T047|PT|242.31|ICD9CM|Toxic nodular goiter, unspecified type, with mention of thyrotoxic crisis or storm|Toxic nodular goiter, unspecified type, with mention of thyrotoxic crisis or storm +C0154148|T047|HT|242.4|ICD9CM|Thyrotoxicosis from ectopic thyroid nodule|Thyrotoxicosis from ectopic thyroid nodule +C0342132|T047|AB|242.40|ICD9CM|Thyrotox-ect nod no cris|Thyrotox-ect nod no cris +C0342132|T047|PT|242.40|ICD9CM|Thyrotoxicosis from ectopic thyroid nodule without mention of thyrotoxic crisis or storm|Thyrotoxicosis from ectopic thyroid nodule without mention of thyrotoxic crisis or storm +C0342133|T047|AB|242.41|ICD9CM|Thyrotox-ect nod w cris|Thyrotox-ect nod w cris +C0342133|T047|PT|242.41|ICD9CM|Thyrotoxicosis from ectopic thyroid nodule with mention of thyrotoxic crisis or storm|Thyrotoxicosis from ectopic thyroid nodule with mention of thyrotoxic crisis or storm +C0154151|T047|HT|242.8|ICD9CM|Thyrotoxicosis of other specified origin|Thyrotoxicosis of other specified origin +C0154152|T047|PT|242.80|ICD9CM|Thyrotoxicosis of other specified origin without mention of thyrotoxic crisis or storm|Thyrotoxicosis of other specified origin without mention of thyrotoxic crisis or storm +C0154152|T047|AB|242.80|ICD9CM|Thyrtox orig NEC no cris|Thyrtox orig NEC no cris +C0154153|T047|AB|242.81|ICD9CM|Thyrotox orig NEC w cris|Thyrotox orig NEC w cris +C0154153|T047|PT|242.81|ICD9CM|Thyrotoxicosis of other specified origin with mention of thyrotoxic crisis or storm|Thyrotoxicosis of other specified origin with mention of thyrotoxic crisis or storm +C0271763|T047|HT|242.9|ICD9CM|Thyrotoxicosis without mention of goiter or other cause|Thyrotoxicosis without mention of goiter or other cause +C0154154|T047|AB|242.90|ICD9CM|Thyrotox NOS no crisis|Thyrotox NOS no crisis +C0154155|T047|AB|242.91|ICD9CM|Thyrotox NOS w crisis|Thyrotox NOS w crisis +C0154155|T047|PT|242.91|ICD9CM|Thyrotoxicosis without mention of goiter or other cause, with mention of thyrotoxic crisis or storm|Thyrotoxicosis without mention of goiter or other cause, with mention of thyrotoxic crisis or storm +C0010308|T047|PT|243|ICD9CM|Congenital hypothyroidism|Congenital hypothyroidism +C0010308|T047|AB|243|ICD9CM|Congenital hypothyroidsm|Congenital hypothyroidsm +C0700502|T047|HT|244|ICD9CM|Acquired hypothyroidism|Acquired hypothyroidism +C0154157|T047|AB|244.0|ICD9CM|Postsurgical hypothyroid|Postsurgical hypothyroid +C0154157|T047|PT|244.0|ICD9CM|Postsurgical hypothyroidism|Postsurgical hypothyroidism +C0154158|T047|PT|244.1|ICD9CM|Other postablative hypothyroidism|Other postablative hypothyroidism +C0154158|T047|AB|244.1|ICD9CM|Postablat hypothyr NEC|Postablat hypothyr NEC +C0154159|T047|AB|244.2|ICD9CM|Iodine hypothyroidism|Iodine hypothyroidism +C0154159|T047|PT|244.2|ICD9CM|Iodine hypothyroidism|Iodine hypothyroidism +C0154160|T047|AB|244.3|ICD9CM|Iatrogen hypothyroid NEC|Iatrogen hypothyroid NEC +C0154160|T047|PT|244.3|ICD9CM|Other iatrogenic hypothyroidism|Other iatrogenic hypothyroidism +C0154161|T047|AB|244.8|ICD9CM|Acquired hypothyroid NEC|Acquired hypothyroid NEC +C0154161|T047|PT|244.8|ICD9CM|Other specified acquired hypothyroidism|Other specified acquired hypothyroidism +C0020676|T047|AB|244.9|ICD9CM|Hypothyroidism NOS|Hypothyroidism NOS +C0020676|T047|PT|244.9|ICD9CM|Unspecified acquired hypothyroidism|Unspecified acquired hypothyroidism +C0040147|T047|HT|245|ICD9CM|Thyroiditis|Thyroiditis +C0001360|T047|AB|245.0|ICD9CM|Acute thyroiditis|Acute thyroiditis +C0001360|T047|PT|245.0|ICD9CM|Acute thyroiditis|Acute thyroiditis +C0040149|T047|AB|245.1|ICD9CM|Subacute thyroiditis|Subacute thyroiditis +C0040149|T047|PT|245.1|ICD9CM|Subacute thyroiditis|Subacute thyroiditis +C0677607|T047|AB|245.2|ICD9CM|Chr lymphocyt thyroidit|Chr lymphocyt thyroidit +C0677607|T047|PT|245.2|ICD9CM|Chronic lymphocytic thyroiditis|Chronic lymphocytic thyroiditis +C3887878|T047|AB|245.3|ICD9CM|Chr fibrous thyroiditis|Chr fibrous thyroiditis +C3887878|T047|PT|245.3|ICD9CM|Chronic fibrous thyroiditis|Chronic fibrous thyroiditis +C0154163|T047|AB|245.4|ICD9CM|Iatrogenic thyroiditis|Iatrogenic thyroiditis +C0154163|T047|PT|245.4|ICD9CM|Iatrogenic thyroiditis|Iatrogenic thyroiditis +C0029495|T047|AB|245.8|ICD9CM|Chr thyroiditis NEC/NOS|Chr thyroiditis NEC/NOS +C0029495|T047|PT|245.8|ICD9CM|Other and unspecified chronic thyroiditis|Other and unspecified chronic thyroiditis +C0040147|T047|AB|245.9|ICD9CM|Thyroiditis NOS|Thyroiditis NOS +C0040147|T047|PT|245.9|ICD9CM|Thyroiditis, unspecified|Thyroiditis, unspecified +C0154164|T047|HT|246|ICD9CM|Other disorders of thyroid|Other disorders of thyroid +C0701822|T047|AB|246.0|ICD9CM|Dis thyrocalciton secret|Dis thyrocalciton secret +C0701822|T047|PT|246.0|ICD9CM|Disorders of thyrocalcitonin secretion|Disorders of thyrocalcitonin secretion +C0152077|T047|AB|246.1|ICD9CM|Dyshormonogenic goiter|Dyshormonogenic goiter +C0152077|T047|PT|246.1|ICD9CM|Dyshormonogenic goiter|Dyshormonogenic goiter +C0162299|T047|AB|246.2|ICD9CM|Cyst of thyroid|Cyst of thyroid +C0162299|T047|PT|246.2|ICD9CM|Cyst of thyroid|Cyst of thyroid +C0154166|T046|AB|246.3|ICD9CM|Hemorr/infarc thyroid|Hemorr/infarc thyroid +C0154166|T046|PT|246.3|ICD9CM|Hemorrhage and infarction of thyroid|Hemorrhage and infarction of thyroid +C0154167|T047|AB|246.8|ICD9CM|Disorders of thyroid NEC|Disorders of thyroid NEC +C0154167|T047|PT|246.8|ICD9CM|Other specified disorders of thyroid|Other specified disorders of thyroid +C0040128|T047|AB|246.9|ICD9CM|Disorder of thyroid NOS|Disorder of thyroid NOS +C0040128|T047|PT|246.9|ICD9CM|Unspecified disorder of thyroid|Unspecified disorder of thyroid +C0271640|T047|HT|249|ICD9CM|Secondary diabetes mellitus|Secondary diabetes mellitus +C0178257|T047|HT|249-259.99|ICD9CM|DISEASES OF OTHER ENDOCRINE GLANDS|DISEASES OF OTHER ENDOCRINE GLANDS +C2349363|T047|HT|249.0|ICD9CM|Secondary diabetes mellitus, without mention of complication|Secondary diabetes mellitus, without mention of complication +C2349361|T047|AB|249.00|ICD9CM|Sec DM wo cmp nt st uncn|Sec DM wo cmp nt st uncn +C2349362|T047|AB|249.01|ICD9CM|Sec DM wo comp uncontrld|Sec DM wo comp uncontrld +C2349362|T047|PT|249.01|ICD9CM|Secondary diabetes mellitus without mention of complication, uncontrolled|Secondary diabetes mellitus without mention of complication, uncontrolled +C2349367|T047|HT|249.1|ICD9CM|Secondary diabetes mellitus with ketoacidosis|Secondary diabetes mellitus with ketoacidosis +C2349365|T047|AB|249.10|ICD9CM|Sec DM keto nt st uncntr|Sec DM keto nt st uncntr +C2349365|T047|PT|249.10|ICD9CM|Secondary diabetes mellitus with ketoacidosis, not stated as uncontrolled, or unspecified|Secondary diabetes mellitus with ketoacidosis, not stated as uncontrolled, or unspecified +C2349366|T047|AB|249.11|ICD9CM|Sec DM ketoacd uncntrld|Sec DM ketoacd uncntrld +C2349366|T047|PT|249.11|ICD9CM|Secondary diabetes mellitus with ketoacidosis, uncontrolled|Secondary diabetes mellitus with ketoacidosis, uncontrolled +C2349372|T047|HT|249.2|ICD9CM|Secondary diabetes mellitus with hyperosmolarity|Secondary diabetes mellitus with hyperosmolarity +C2349370|T047|AB|249.20|ICD9CM|Sec DM hpros nt st uncnr|Sec DM hpros nt st uncnr +C2349370|T047|PT|249.20|ICD9CM|Secondary diabetes mellitus with hyperosmolarity, not stated as uncontrolled, or unspecified|Secondary diabetes mellitus with hyperosmolarity, not stated as uncontrolled, or unspecified +C2349371|T047|AB|249.21|ICD9CM|Sec DM hprosmlr uncntrld|Sec DM hprosmlr uncntrld +C2349371|T047|PT|249.21|ICD9CM|Secondary diabetes mellitus with hyperosmolarity, uncontrolled|Secondary diabetes mellitus with hyperosmolarity, uncontrolled +C2349376|T047|HT|249.3|ICD9CM|Secondary diabetes mellitus with other coma|Secondary diabetes mellitus with other coma +C2349374|T047|AB|249.30|ICD9CM|Sec DM ot cma nt st uncn|Sec DM ot cma nt st uncn +C2349374|T047|PT|249.30|ICD9CM|Secondary diabetes mellitus with other coma, not stated as uncontrolled, or unspecified|Secondary diabetes mellitus with other coma, not stated as uncontrolled, or unspecified +C2349375|T047|AB|249.31|ICD9CM|Sec DM oth coma uncntrld|Sec DM oth coma uncntrld +C2349375|T047|PT|249.31|ICD9CM|Secondary diabetes mellitus with other coma, uncontrolled|Secondary diabetes mellitus with other coma, uncontrolled +C2349382|T047|HT|249.4|ICD9CM|Secondary diabetes mellitus with renal manifestations|Secondary diabetes mellitus with renal manifestations +C2349380|T047|AB|249.40|ICD9CM|Sec DM renl nt st uncntr|Sec DM renl nt st uncntr +C2349380|T047|PT|249.40|ICD9CM|Secondary diabetes mellitus with renal manifestations, not stated as uncontrolled, or unspecified|Secondary diabetes mellitus with renal manifestations, not stated as uncontrolled, or unspecified +C2349381|T047|AB|249.41|ICD9CM|Sec DM renal uncontrld|Sec DM renal uncontrld +C2349381|T047|PT|249.41|ICD9CM|Secondary diabetes mellitus with renal manifestations, uncontrolled|Secondary diabetes mellitus with renal manifestations, uncontrolled +C2349385|T047|HT|249.5|ICD9CM|Secondary diabetes mellitus with ophthalmic manifestations|Secondary diabetes mellitus with ophthalmic manifestations +C2349383|T047|AB|249.50|ICD9CM|Sec DM ophth nt st uncn|Sec DM ophth nt st uncn +C2349384|T047|AB|249.51|ICD9CM|Sec DM ophth uncontrld|Sec DM ophth uncontrld +C2349384|T047|PT|249.51|ICD9CM|Secondary diabetes mellitus with ophthalmic manifestations, uncontrolled|Secondary diabetes mellitus with ophthalmic manifestations, uncontrolled +C2349388|T047|HT|249.6|ICD9CM|Secondary diabetes mellitus with neurological manifestations|Secondary diabetes mellitus with neurological manifestations +C2349386|T047|AB|249.60|ICD9CM|Sec DM neuro nt st uncn|Sec DM neuro nt st uncn +C2349387|T047|AB|249.61|ICD9CM|Sec DM neuro uncontrld|Sec DM neuro uncontrld +C2349387|T047|PT|249.61|ICD9CM|Secondary diabetes mellitus with neurological manifestations, uncontrolled|Secondary diabetes mellitus with neurological manifestations, uncontrolled +C2349391|T047|HT|249.7|ICD9CM|Secondary diabetes mellitus with peripheral circulatory disorders|Secondary diabetes mellitus with peripheral circulatory disorders +C2349389|T047|AB|249.70|ICD9CM|Sec DM circ nt st uncntr|Sec DM circ nt st uncntr +C2349390|T047|AB|249.71|ICD9CM|Sec DM circ uncontrld|Sec DM circ uncontrld +C2349390|T047|PT|249.71|ICD9CM|Secondary diabetes mellitus with peripheral circulatory disorders, uncontrolled|Secondary diabetes mellitus with peripheral circulatory disorders, uncontrolled +C2349394|T047|HT|249.8|ICD9CM|Secondary diabetes mellitus with other specified manifestations|Secondary diabetes mellitus with other specified manifestations +C2349392|T047|AB|249.80|ICD9CM|Sec DM oth nt st uncontr|Sec DM oth nt st uncontr +C2349393|T047|AB|249.81|ICD9CM|Sec DM other uncontrld|Sec DM other uncontrld +C2349393|T047|PT|249.81|ICD9CM|Secondary diabetes mellitus with other specified manifestations, uncontrolled|Secondary diabetes mellitus with other specified manifestations, uncontrolled +C2349399|T047|HT|249.9|ICD9CM|Secondary diabetes mellitus with unspecified complication|Secondary diabetes mellitus with unspecified complication +C2349397|T047|AB|249.90|ICD9CM|Sec DM unsp nt st uncon|Sec DM unsp nt st uncon +C2349398|T047|AB|249.91|ICD9CM|Sec DM unsp uncontrold|Sec DM unsp uncontrold +C2349398|T047|PT|249.91|ICD9CM|Secondary diabetes mellitus with unspecified complication, uncontrolled|Secondary diabetes mellitus with unspecified complication, uncontrolled +C0011849|T047|HT|250|ICD9CM|Diabetes mellitus|Diabetes mellitus +C0271635|T047|HT|250.0|ICD9CM|Diabetes mellitus without mention of complication|Diabetes mellitus without mention of complication +C0375113|T047|AB|250.00|ICD9CM|DMII wo cmp nt st uncntr|DMII wo cmp nt st uncntr +C0375114|T047|AB|250.01|ICD9CM|DMI wo cmp nt st uncntrl|DMI wo cmp nt st uncntrl +C0375115|T047|PT|250.02|ICD9CM|Diabetes mellitus without mention of complication, type II or unspecified type, uncontrolled|Diabetes mellitus without mention of complication, type II or unspecified type, uncontrolled +C0375115|T047|AB|250.02|ICD9CM|DMII wo cmp uncntrld|DMII wo cmp uncntrld +C0375116|T047|PT|250.03|ICD9CM|Diabetes mellitus without mention of complication, type I [juvenile type], uncontrolled|Diabetes mellitus without mention of complication, type I [juvenile type], uncontrolled +C0375116|T047|AB|250.03|ICD9CM|DMI wo cmp uncntrld|DMI wo cmp uncntrld +C0011880|T047|HT|250.1|ICD9CM|Diabetes with ketoacidosis|Diabetes with ketoacidosis +C0375117|T047|PT|250.10|ICD9CM|Diabetes with ketoacidosis, type II or unspecified type, not stated as uncontrolled|Diabetes with ketoacidosis, type II or unspecified type, not stated as uncontrolled +C0375117|T047|AB|250.10|ICD9CM|DMII keto nt st uncntrld|DMII keto nt st uncntrld +C0375118|T047|PT|250.11|ICD9CM|Diabetes with ketoacidosis, type I [juvenile type], not stated as uncontrolled|Diabetes with ketoacidosis, type I [juvenile type], not stated as uncontrolled +C0375118|T047|AB|250.11|ICD9CM|DMI keto nt st uncntrld|DMI keto nt st uncntrld +C0375119|T047|PT|250.12|ICD9CM|Diabetes with ketoacidosis, type II or unspecified type, uncontrolled|Diabetes with ketoacidosis, type II or unspecified type, uncontrolled +C0375119|T047|AB|250.12|ICD9CM|DMII ketoacd uncontrold|DMII ketoacd uncontrold +C0375120|T047|PT|250.13|ICD9CM|Diabetes with ketoacidosis, type I [juvenile type], uncontrolled|Diabetes with ketoacidosis, type I [juvenile type], uncontrolled +C0375120|T047|AB|250.13|ICD9CM|DMI ketoacd uncontrold|DMI ketoacd uncontrold +C0375121|T047|HT|250.2|ICD9CM|Diabetes mellitus with hyperosmolarity|Diabetes mellitus with hyperosmolarity +C0375122|T047|PT|250.20|ICD9CM|Diabetes with hyperosmolarity, type II or unspecified type, not stated as uncontrolled|Diabetes with hyperosmolarity, type II or unspecified type, not stated as uncontrolled +C0375122|T047|AB|250.20|ICD9CM|DMII hprsm nt st uncntrl|DMII hprsm nt st uncntrl +C0375123|T047|PT|250.21|ICD9CM|Diabetes with hyperosmolarity, type I [juvenile type], not stated as uncontrolled|Diabetes with hyperosmolarity, type I [juvenile type], not stated as uncontrolled +C0375123|T047|AB|250.21|ICD9CM|DMI hprsm nt st uncntrld|DMI hprsm nt st uncntrld +C0375124|T047|PT|250.22|ICD9CM|Diabetes with hyperosmolarity, type II or unspecified type, uncontrolled|Diabetes with hyperosmolarity, type II or unspecified type, uncontrolled +C0375124|T047|AB|250.22|ICD9CM|DMII hprosmlr uncontrold|DMII hprosmlr uncontrold +C0375125|T047|PT|250.23|ICD9CM|Diabetes with hyperosmolarity, type I [juvenile type], uncontrolled|Diabetes with hyperosmolarity, type I [juvenile type], uncontrolled +C0375125|T047|AB|250.23|ICD9CM|DMI hprosmlr uncontrold|DMI hprosmlr uncontrold +C0011870|T047|HT|250.3|ICD9CM|Diabetes with other coma|Diabetes with other coma +C0375126|T047|PT|250.30|ICD9CM|Diabetes with other coma, type II or unspecified type, not stated as uncontrolled|Diabetes with other coma, type II or unspecified type, not stated as uncontrolled +C0375126|T047|AB|250.30|ICD9CM|DMII o cm nt st uncntrld|DMII o cm nt st uncntrld +C0375127|T047|PT|250.31|ICD9CM|Diabetes with other coma, type I [juvenile type], not stated as uncontrolled|Diabetes with other coma, type I [juvenile type], not stated as uncontrolled +C0375127|T047|AB|250.31|ICD9CM|DMI o cm nt st uncntrld|DMI o cm nt st uncntrld +C0375128|T047|PT|250.32|ICD9CM|Diabetes with other coma, type II or unspecified type, uncontrolled|Diabetes with other coma, type II or unspecified type, uncontrolled +C0375128|T047|AB|250.32|ICD9CM|DMII oth coma uncontrold|DMII oth coma uncontrold +C0375129|T047|PT|250.33|ICD9CM|Diabetes with other coma, type I [juvenile type], uncontrolled|Diabetes with other coma, type I [juvenile type], uncontrolled +C0375129|T047|AB|250.33|ICD9CM|DMI oth coma uncontrold|DMI oth coma uncontrold +C0011881|T047|HT|250.4|ICD9CM|Diabetes with renal manifestations|Diabetes with renal manifestations +C0375130|T047|PT|250.40|ICD9CM|Diabetes with renal manifestations, type II or unspecified type, not stated as uncontrolled|Diabetes with renal manifestations, type II or unspecified type, not stated as uncontrolled +C0375130|T047|AB|250.40|ICD9CM|DMII renl nt st uncntrld|DMII renl nt st uncntrld +C0375131|T047|PT|250.41|ICD9CM|Diabetes with renal manifestations, type I [juvenile type], not stated as uncontrolled|Diabetes with renal manifestations, type I [juvenile type], not stated as uncontrolled +C0375131|T047|AB|250.41|ICD9CM|DMI renl nt st uncntrld|DMI renl nt st uncntrld +C0375132|T047|PT|250.42|ICD9CM|Diabetes with renal manifestations, type II or unspecified type, uncontrolled|Diabetes with renal manifestations, type II or unspecified type, uncontrolled +C0375132|T047|AB|250.42|ICD9CM|DMII renal uncntrld|DMII renal uncntrld +C0375133|T047|PT|250.43|ICD9CM|Diabetes with renal manifestations, type I [juvenile type], uncontrolled|Diabetes with renal manifestations, type I [juvenile type], uncontrolled +C0375133|T047|AB|250.43|ICD9CM|DMI renal uncntrld|DMI renal uncntrld +C0342245|T047|HT|250.5|ICD9CM|Diabetes with ophthalmic manifestations|Diabetes with ophthalmic manifestations +C0375134|T047|PT|250.50|ICD9CM|Diabetes with ophthalmic manifestations, type II or unspecified type, not stated as uncontrolled|Diabetes with ophthalmic manifestations, type II or unspecified type, not stated as uncontrolled +C0375134|T047|AB|250.50|ICD9CM|DMII ophth nt st uncntrl|DMII ophth nt st uncntrl +C0375135|T047|PT|250.51|ICD9CM|Diabetes with ophthalmic manifestations, type I [juvenile type], not stated as uncontrolled|Diabetes with ophthalmic manifestations, type I [juvenile type], not stated as uncontrolled +C0375135|T047|AB|250.51|ICD9CM|DMI ophth nt st uncntrld|DMI ophth nt st uncntrld +C0376128|T047|PT|250.52|ICD9CM|Diabetes with ophthalmic manifestations, type II or unspecified type, uncontrolled|Diabetes with ophthalmic manifestations, type II or unspecified type, uncontrolled +C0376128|T047|AB|250.52|ICD9CM|DMII ophth uncntrld|DMII ophth uncntrld +C0375136|T047|PT|250.53|ICD9CM|Diabetes with ophthalmic manifestations, type I [juvenile type], uncontrolled|Diabetes with ophthalmic manifestations, type I [juvenile type], uncontrolled +C0375136|T047|AB|250.53|ICD9CM|DMI ophth uncntrld|DMI ophth uncntrld +C0011882|T047|HT|250.6|ICD9CM|Diabetes with neurological manifestations|Diabetes with neurological manifestations +C0375137|T047|PT|250.60|ICD9CM|Diabetes with neurological manifestations, type II or unspecified type, not stated as uncontrolled|Diabetes with neurological manifestations, type II or unspecified type, not stated as uncontrolled +C0375137|T047|AB|250.60|ICD9CM|DMII neuro nt st uncntrl|DMII neuro nt st uncntrl +C0375138|T047|PT|250.61|ICD9CM|Diabetes with neurological manifestations, type I [juvenile type], not stated as uncontrolled|Diabetes with neurological manifestations, type I [juvenile type], not stated as uncontrolled +C0375138|T047|AB|250.61|ICD9CM|DMI neuro nt st uncntrld|DMI neuro nt st uncntrld +C0375139|T047|PT|250.62|ICD9CM|Diabetes with neurological manifestations, type II or unspecified type, uncontrolled|Diabetes with neurological manifestations, type II or unspecified type, uncontrolled +C0375139|T047|AB|250.62|ICD9CM|DMII neuro uncntrld|DMII neuro uncntrld +C0375140|T047|PT|250.63|ICD9CM|Diabetes with neurological manifestations, type I [juvenile type], uncontrolled|Diabetes with neurological manifestations, type I [juvenile type], uncontrolled +C0375140|T047|AB|250.63|ICD9CM|DMI neuro uncntrld|DMI neuro uncntrld +C0011871|T047|HT|250.7|ICD9CM|Diabetes with peripheral circulatory disorders|Diabetes with peripheral circulatory disorders +C0375141|T047|AB|250.70|ICD9CM|DMII circ nt st uncntrld|DMII circ nt st uncntrld +C0375142|T047|PT|250.71|ICD9CM|Diabetes with peripheral circulatory disorders, type I [juvenile type], not stated as uncontrolled|Diabetes with peripheral circulatory disorders, type I [juvenile type], not stated as uncontrolled +C0375142|T047|AB|250.71|ICD9CM|DMI circ nt st uncntrld|DMI circ nt st uncntrld +C0375143|T047|PT|250.72|ICD9CM|Diabetes with peripheral circulatory disorders, type II or unspecified type, uncontrolled|Diabetes with peripheral circulatory disorders, type II or unspecified type, uncontrolled +C0375143|T047|AB|250.72|ICD9CM|DMII circ uncntrld|DMII circ uncntrld +C0375144|T047|PT|250.73|ICD9CM|Diabetes with peripheral circulatory disorders, type I [juvenile type], uncontrolled|Diabetes with peripheral circulatory disorders, type I [juvenile type], uncontrolled +C0375144|T047|AB|250.73|ICD9CM|DMI circ uncntrld|DMI circ uncntrld +C0154183|T047|HT|250.8|ICD9CM|Diabetes with other specified manifestations|Diabetes with other specified manifestations +C0375145|T047|AB|250.80|ICD9CM|DMII oth nt st uncntrld|DMII oth nt st uncntrld +C0375146|T047|PT|250.81|ICD9CM|Diabetes with other specified manifestations, type I [juvenile type], not stated as uncontrolled|Diabetes with other specified manifestations, type I [juvenile type], not stated as uncontrolled +C0375146|T047|AB|250.81|ICD9CM|DMI oth nt st uncntrld|DMI oth nt st uncntrld +C0375147|T047|PT|250.82|ICD9CM|Diabetes with other specified manifestations, type II or unspecified type, uncontrolled|Diabetes with other specified manifestations, type II or unspecified type, uncontrolled +C0375147|T047|AB|250.82|ICD9CM|DMII oth uncntrld|DMII oth uncntrld +C0375148|T047|PT|250.83|ICD9CM|Diabetes with other specified manifestations, type I [juvenile type], uncontrolled|Diabetes with other specified manifestations, type I [juvenile type], uncontrolled +C0375148|T047|AB|250.83|ICD9CM|DMI oth uncntrld|DMI oth uncntrld +C0342257|T047|HT|250.9|ICD9CM|Diabetes with unspecified complication|Diabetes with unspecified complication +C0375149|T047|PT|250.90|ICD9CM|Diabetes with unspecified complication, type II or unspecified type, not stated as uncontrolled|Diabetes with unspecified complication, type II or unspecified type, not stated as uncontrolled +C0375149|T047|AB|250.90|ICD9CM|DMII unspf nt st uncntrl|DMII unspf nt st uncntrl +C0375150|T047|PT|250.91|ICD9CM|Diabetes with unspecified complication, type I [juvenile type], not stated as uncontrolled|Diabetes with unspecified complication, type I [juvenile type], not stated as uncontrolled +C0375150|T047|AB|250.91|ICD9CM|DMI unspf nt st uncntrld|DMI unspf nt st uncntrld +C0375151|T047|PT|250.92|ICD9CM|Diabetes with unspecified complication, type II or unspecified type, uncontrolled|Diabetes with unspecified complication, type II or unspecified type, uncontrolled +C0375151|T047|AB|250.92|ICD9CM|DMII unspf uncntrld|DMII unspf uncntrld +C0375152|T047|PT|250.93|ICD9CM|Diabetes with unspecified complication, type I [juvenile type], uncontrolled|Diabetes with unspecified complication, type I [juvenile type], uncontrolled +C0375152|T047|AB|250.93|ICD9CM|DMI unspf uncntrld|DMI unspf uncntrld +C0154189|T047|HT|251|ICD9CM|Other disorders of pancreatic internal secretion|Other disorders of pancreatic internal secretion +C0020617|T047|AB|251.0|ICD9CM|Hypoglycemic coma|Hypoglycemic coma +C0020617|T047|PT|251.0|ICD9CM|Hypoglycemic coma|Hypoglycemic coma +C0375153|T047|AB|251.1|ICD9CM|Oth spcf hypoglycemia|Oth spcf hypoglycemia +C0375153|T047|PT|251.1|ICD9CM|Other specified hypoglycemia|Other specified hypoglycemia +C0020615|T047|AB|251.2|ICD9CM|Hypoglycemia NOS|Hypoglycemia NOS +C0020615|T047|PT|251.2|ICD9CM|Hypoglycemia, unspecified|Hypoglycemia, unspecified +C0154190|T047|AB|251.3|ICD9CM|Postsurg hypoinsulinemia|Postsurg hypoinsulinemia +C0154190|T047|PT|251.3|ICD9CM|Postsurgical hypoinsulinemia|Postsurgical hypoinsulinemia +C0154191|T047|AB|251.4|ICD9CM|Abn secretion glucagon|Abn secretion glucagon +C0154191|T047|PT|251.4|ICD9CM|Abnormality of secretion of glucagon|Abnormality of secretion of glucagon +C0000774|T047|AB|251.5|ICD9CM|Abnorm secretion gastrin|Abnorm secretion gastrin +C0000774|T047|PT|251.5|ICD9CM|Abnormality of secretion of gastrin|Abnormality of secretion of gastrin +C0154192|T047|PT|251.8|ICD9CM|Other specified disorders of pancreatic internal secretion|Other specified disorders of pancreatic internal secretion +C0154192|T047|AB|251.8|ICD9CM|Pancreatic disorder NEC|Pancreatic disorder NEC +C1263961|T047|AB|251.9|ICD9CM|Pancreatic disorder NOS|Pancreatic disorder NOS +C1263961|T047|PT|251.9|ICD9CM|Unspecified disorder of pancreatic internal secretion|Unspecified disorder of pancreatic internal secretion +C0030517|T047|HT|252|ICD9CM|Disorders of parathyroid gland|Disorders of parathyroid gland +C0020502|T047|HT|252.0|ICD9CM|Hyperparathyroidism|Hyperparathyroidism +C0020502|T047|AB|252.00|ICD9CM|Hyperparathyroidism NOS|Hyperparathyroidism NOS +C0020502|T047|PT|252.00|ICD9CM|Hyperparathyroidism, unspecified|Hyperparathyroidism, unspecified +C0221002|T047|AB|252.01|ICD9CM|Primary hyperparathyroid|Primary hyperparathyroid +C0221002|T047|PT|252.01|ICD9CM|Primary hyperparathyroidism|Primary hyperparathyroidism +C1456268|T047|AB|252.02|ICD9CM|Sec hyprprthyrd nonrenal|Sec hyprprthyrd nonrenal +C1456268|T047|PT|252.02|ICD9CM|Secondary hyperparathyroidism, non-renal|Secondary hyperparathyroidism, non-renal +C0348455|T047|AB|252.08|ICD9CM|Hyperparathyroidism NEC|Hyperparathyroidism NEC +C0348455|T047|PT|252.08|ICD9CM|Other hyperparathyroidism|Other hyperparathyroidism +C0020626|T047|AB|252.1|ICD9CM|Hypoparathyroidism|Hypoparathyroidism +C0020626|T047|PT|252.1|ICD9CM|Hypoparathyroidism|Hypoparathyroidism +C0154195|T047|PT|252.8|ICD9CM|Other specified disorders of parathyroid gland|Other specified disorders of parathyroid gland +C0154195|T047|AB|252.8|ICD9CM|Parathyroid disorder NEC|Parathyroid disorder NEC +C0030517|T047|AB|252.9|ICD9CM|Parathyroid disorder NOS|Parathyroid disorder NOS +C0030517|T047|PT|252.9|ICD9CM|Unspecified disorder of parathyroid gland|Unspecified disorder of parathyroid gland +C0859058|T047|HT|253|ICD9CM|Disorders of the pituitary gland and its hypothalamic control|Disorders of the pituitary gland and its hypothalamic control +C0405578|T047|AB|253.0|ICD9CM|Acromegaly and gigantism|Acromegaly and gigantism +C0405578|T047|PT|253.0|ICD9CM|Acromegaly and gigantism|Acromegaly and gigantism +C0029493|T047|AB|253.1|ICD9CM|Ant pituit hyperfunc NEC|Ant pituit hyperfunc NEC +C0029493|T047|PT|253.1|ICD9CM|Other and unspecified anterior pituitary hyperfunction|Other and unspecified anterior pituitary hyperfunction +C0242343|T047|AB|253.2|ICD9CM|Panhypopituitarism|Panhypopituitarism +C0242343|T047|PT|253.2|ICD9CM|Panhypopituitarism|Panhypopituitarism +C0013338|T047|AB|253.3|ICD9CM|Pituitary dwarfism|Pituitary dwarfism +C0013338|T047|PT|253.3|ICD9CM|Pituitary dwarfism|Pituitary dwarfism +C0701162|T047|AB|253.4|ICD9CM|Anter pituitary dis NEC|Anter pituitary dis NEC +C0701162|T047|PT|253.4|ICD9CM|Other anterior pituitary disorders|Other anterior pituitary disorders +C0011848|T047|AB|253.5|ICD9CM|Diabetes insipidus|Diabetes insipidus +C0011848|T047|PT|253.5|ICD9CM|Diabetes insipidus|Diabetes insipidus +C0029593|T047|AB|253.6|ICD9CM|Neurohypophysis dis NEC|Neurohypophysis dis NEC +C0029593|T047|PT|253.6|ICD9CM|Other disorders of neurohypophysis|Other disorders of neurohypophysis +C0154198|T047|AB|253.7|ICD9CM|Iatrogenic pituitary dis|Iatrogenic pituitary dis +C0154198|T047|PT|253.7|ICD9CM|Iatrogenic pituitary disorders|Iatrogenic pituitary disorders +C0029597|T047|PT|253.8|ICD9CM|Other disorders of the pituitary and other syndromes of diencephalohypophyseal origin|Other disorders of the pituitary and other syndromes of diencephalohypophyseal origin +C0029597|T047|AB|253.8|ICD9CM|Pituitary disorder NEC|Pituitary disorder NEC +C0859058|T047|AB|253.9|ICD9CM|Pituitary disorder NOS|Pituitary disorder NOS +C0859058|T047|PT|253.9|ICD9CM|Unspecified disorder of the pituitary gland and its hypothalamic control|Unspecified disorder of the pituitary gland and its hypothalamic control +C0154199|T047|HT|254|ICD9CM|Diseases of thymus gland|Diseases of thymus gland +C3887666|T047|AB|254.0|ICD9CM|Persist hyperplas thymus|Persist hyperplas thymus +C3887666|T047|PT|254.0|ICD9CM|Persistent hyperplasia of thymus|Persistent hyperplasia of thymus +C0154200|T047|AB|254.1|ICD9CM|Abscess of thymus|Abscess of thymus +C0154200|T047|PT|254.1|ICD9CM|Abscess of thymus|Abscess of thymus +C0342565|T047|AB|254.8|ICD9CM|Diseases of thymus NEC|Diseases of thymus NEC +C0342565|T047|PT|254.8|ICD9CM|Other specified diseases of thymus gland|Other specified diseases of thymus gland +C0154199|T047|AB|254.9|ICD9CM|Disease of thymus NOS|Disease of thymus NOS +C0154199|T047|PT|254.9|ICD9CM|Unspecified disease of thymus gland|Unspecified disease of thymus gland +C0001621|T047|HT|255|ICD9CM|Disorders of adrenal glands|Disorders of adrenal glands +C0010481|T047|AB|255.0|ICD9CM|Cushing's syndrome|Cushing's syndrome +C0010481|T047|PT|255.0|ICD9CM|Cushing's syndrome|Cushing's syndrome +C0020428|T047|HT|255.1|ICD9CM|Hyperaldosteronism|Hyperaldosteronism +C0020428|T047|AB|255.10|ICD9CM|Hyperaldosteronism NOS|Hyperaldosteronism NOS +C0020428|T047|PT|255.10|ICD9CM|Hyperaldosteronism, unspecified|Hyperaldosteronism, unspecified +C1260386|T047|PT|255.11|ICD9CM|Glucocorticoid-remediable aldosteronism|Glucocorticoid-remediable aldosteronism +C1260386|T047|AB|255.11|ICD9CM|Glucrtcod-rem aldsternsm|Glucrtcod-rem aldsternsm +C1384514|T047|AB|255.12|ICD9CM|Conn's syndrome|Conn's syndrome +C1384514|T047|PT|255.12|ICD9CM|Conn's syndrome|Conn's syndrome +C0004775|T047|AB|255.13|ICD9CM|Bartter's syndrome|Bartter's syndrome +C0004775|T047|PT|255.13|ICD9CM|Bartter's syndrome|Bartter's syndrome +C1260387|T047|PT|255.14|ICD9CM|Other secondary aldosteronism|Other secondary aldosteronism +C1260387|T047|AB|255.14|ICD9CM|Secondry aldosternsm NEC|Secondry aldosternsm NEC +C0701163|T047|AB|255.2|ICD9CM|Adrenogenital disorders|Adrenogenital disorders +C0701163|T047|PT|255.2|ICD9CM|Adrenogenital disorders|Adrenogenital disorders +C0348461|T047|AB|255.3|ICD9CM|Corticoadren overact NEC|Corticoadren overact NEC +C0348461|T047|PT|255.3|ICD9CM|Other corticoadrenal overactivity|Other corticoadrenal overactivity +C0405580|T047|HT|255.4|ICD9CM|Corticoadrenal insufficiency|Corticoadrenal insufficiency +C1955741|T047|PT|255.41|ICD9CM|Glucocorticoid deficiency|Glucocorticoid deficiency +C1955741|T047|AB|255.41|ICD9CM|Glucocorticoid deficient|Glucocorticoid deficient +C1955743|T047|AB|255.42|ICD9CM|Mineralcorticoid defcnt|Mineralcorticoid defcnt +C1955743|T047|PT|255.42|ICD9CM|Mineralocorticoid deficiency|Mineralocorticoid deficiency +C0154205|T047|AB|255.5|ICD9CM|Adrenal hypofunction NEC|Adrenal hypofunction NEC +C0154205|T047|PT|255.5|ICD9CM|Other adrenal hypofunction|Other adrenal hypofunction +C0154206|T047|AB|255.6|ICD9CM|Medulloadrenal hyperfunc|Medulloadrenal hyperfunc +C0154206|T047|PT|255.6|ICD9CM|Medulloadrenal hyperfunction|Medulloadrenal hyperfunction +C0154207|T047|AB|255.8|ICD9CM|Adrenal disorder NEC|Adrenal disorder NEC +C0154207|T047|PT|255.8|ICD9CM|Other specified disorders of adrenal glands|Other specified disorders of adrenal glands +C0001621|T047|AB|255.9|ICD9CM|Adrenal disorder NOS|Adrenal disorder NOS +C0001621|T047|PT|255.9|ICD9CM|Unspecified disorder of adrenal glands|Unspecified disorder of adrenal glands +C0154208|T047|HT|256|ICD9CM|Ovarian dysfunction|Ovarian dysfunction +C0154209|T047|AB|256.0|ICD9CM|Hyperestrogenism|Hyperestrogenism +C0154209|T047|PT|256.0|ICD9CM|Hyperestrogenism|Hyperestrogenism +C0154210|T047|PT|256.1|ICD9CM|Other ovarian hyperfunction|Other ovarian hyperfunction +C0154210|T047|AB|256.1|ICD9CM|Ovarian hyperfunc NEC|Ovarian hyperfunc NEC +C0154211|T033|AB|256.2|ICD9CM|Postablativ ovarian fail|Postablativ ovarian fail +C0154211|T033|PT|256.2|ICD9CM|Postablative ovarian failure|Postablative ovarian failure +C0029697|T047|HT|256.3|ICD9CM|Other ovarian failure|Other ovarian failure +C0025322|T047|AB|256.31|ICD9CM|Premature menopause|Premature menopause +C0025322|T047|PT|256.31|ICD9CM|Premature menopause|Premature menopause +C0029697|T047|PT|256.39|ICD9CM|Other ovarian failure|Other ovarian failure +C0029697|T047|AB|256.39|ICD9CM|Ovarian failure NEC|Ovarian failure NEC +C0032460|T047|AB|256.4|ICD9CM|Polycystic ovaries|Polycystic ovaries +C0032460|T047|PT|256.4|ICD9CM|Polycystic ovaries|Polycystic ovaries +C0154212|T047|PT|256.8|ICD9CM|Other ovarian dysfunction|Other ovarian dysfunction +C0154212|T047|AB|256.8|ICD9CM|Ovarian dysfunction NEC|Ovarian dysfunction NEC +C0154208|T047|AB|256.9|ICD9CM|Ovarian dysfunction NOS|Ovarian dysfunction NOS +C0154208|T047|PT|256.9|ICD9CM|Unspecified ovarian dysfunction|Unspecified ovarian dysfunction +C0405581|T047|HT|257|ICD9CM|Testicular dysfunction|Testicular dysfunction +C0154215|T047|AB|257.0|ICD9CM|Testicular hyperfunction|Testicular hyperfunction +C0154215|T047|PT|257.0|ICD9CM|Testicular hyperfunction|Testicular hyperfunction +C0154216|T047|AB|257.1|ICD9CM|Postablat testic hypofun|Postablat testic hypofun +C0154216|T047|PT|257.1|ICD9CM|Postablative testicular hypofunction|Postablative testicular hypofunction +C0029858|T047|PT|257.2|ICD9CM|Other testicular hypofunction|Other testicular hypofunction +C0029858|T047|AB|257.2|ICD9CM|Testicular hypofunc NEC|Testicular hypofunc NEC +C0029857|T046|PT|257.8|ICD9CM|Other testicular dysfunction|Other testicular dysfunction +C0029857|T046|AB|257.8|ICD9CM|Testicular dysfunct NEC|Testicular dysfunct NEC +C0405581|T047|AB|257.9|ICD9CM|Testicular dysfunct NOS|Testicular dysfunct NOS +C0405581|T047|PT|257.9|ICD9CM|Unspecified testicular dysfunction|Unspecified testicular dysfunction +C0154218|T047|HT|258|ICD9CM|Polyglandular dysfunction and related disorders|Polyglandular dysfunction and related disorders +C0311355|T191|HT|258.0|ICD9CM|Polyglandular activity in multiple endocrine adenomatosis|Polyglandular activity in multiple endocrine adenomatosis +C0025267|T191|AB|258.01|ICD9CM|Mult endo neoplas type I|Mult endo neoplas type I +C0025267|T191|PT|258.01|ICD9CM|Multiple endocrine neoplasia [MEN] type I|Multiple endocrine neoplasia [MEN] type I +C0025268|T191|AB|258.02|ICD9CM|Mult endo neop type IIA|Mult endo neop type IIA +C0025268|T191|PT|258.02|ICD9CM|Multiple endocrine neoplasia [MEN] type IIA|Multiple endocrine neoplasia [MEN] type IIA +C0025269|T191|AB|258.03|ICD9CM|Mult endo neop type IIB|Mult endo neop type IIB +C0025269|T191|PT|258.03|ICD9CM|Multiple endocrine neoplasia [MEN] type IIB|Multiple endocrine neoplasia [MEN] type IIB +C0154220|T047|AB|258.1|ICD9CM|Comb endocr dysfunct NEC|Comb endocr dysfunct NEC +C0154220|T047|PT|258.1|ICD9CM|Other combinations of endocrine dysfunction|Other combinations of endocrine dysfunction +C0154221|T047|PT|258.8|ICD9CM|Other specified polyglandular dysfunction|Other specified polyglandular dysfunction +C0154221|T047|AB|258.8|ICD9CM|Polyglandul dysfunc NEC|Polyglandul dysfunc NEC +C0154222|T047|AB|258.9|ICD9CM|Polyglandul dysfunc NOS|Polyglandul dysfunc NOS +C0154222|T047|PT|258.9|ICD9CM|Polyglandular dysfunction, unspecified|Polyglandular dysfunction, unspecified +C0154223|T047|HT|259|ICD9CM|Other endocrine disorders|Other endocrine disorders +C0869499|T047|PT|259.0|ICD9CM|Delay in sexual development and puberty, not elsewhere classified|Delay in sexual development and puberty, not elsewhere classified +C0869499|T047|AB|259.0|ICD9CM|Delay sexual develop NEC|Delay sexual develop NEC +C0869515|T047|PT|259.1|ICD9CM|Precocious sexual development and puberty, not elsewhere classified|Precocious sexual development and puberty, not elsewhere classified +C0869515|T047|AB|259.1|ICD9CM|Sexual precocity NEC|Sexual precocity NEC +C0024586|T047|AB|259.2|ICD9CM|Carcinoid syndrome|Carcinoid syndrome +C0024586|T047|PT|259.2|ICD9CM|Carcinoid syndrome|Carcinoid syndrome +C0869496|T047|AB|259.3|ICD9CM|Ectopic hormone secr NEC|Ectopic hormone secr NEC +C0869496|T047|PT|259.3|ICD9CM|Ectopic hormone secretion, not elsewhere classified|Ectopic hormone secretion, not elsewhere classified +C0677577|T019|AB|259.4|ICD9CM|Dwarfism NEC|Dwarfism NEC +C0677577|T019|PT|259.4|ICD9CM|Dwarfism, not elsewhere classified|Dwarfism, not elsewhere classified +C0039585|T047|HT|259.5|ICD9CM|Androgen insensitivity syndrome|Androgen insensitivity syndrome +C2349400|T047|PT|259.50|ICD9CM|Androgen insensitivity, unspecified|Androgen insensitivity, unspecified +C2349400|T047|AB|259.50|ICD9CM|Androgen insensitvty NOS|Androgen insensitvty NOS +C0039585|T047|PT|259.51|ICD9CM|Androgen insensitivity syndrome|Androgen insensitivity syndrome +C0039585|T047|AB|259.51|ICD9CM|Androgen insensitvty syn|Androgen insensitvty syn +C0268301|T047|AB|259.52|ICD9CM|Part androgen insnsitvty|Part androgen insnsitvty +C0268301|T047|PT|259.52|ICD9CM|Partial androgen insensitivity|Partial androgen insensitivity +C0029793|T047|AB|259.8|ICD9CM|Endocrine disorders NEC|Endocrine disorders NEC +C0029793|T047|PT|259.8|ICD9CM|Other specified endocrine disorders|Other specified endocrine disorders +C0014130|T047|AB|259.9|ICD9CM|Endocrine disorder NOS|Endocrine disorder NOS +C0014130|T047|PT|259.9|ICD9CM|Unspecified endocrine disorder|Unspecified endocrine disorder +C0022806|T047|AB|260|ICD9CM|Kwashiorkor|Kwashiorkor +C0022806|T047|PT|260|ICD9CM|Kwashiorkor|Kwashiorkor +C4761312|T047|HT|260-269.99|ICD9CM|NUTRITIONAL DEFICIENCIES|NUTRITIONAL DEFICIENCIES +C0086588|T047|AB|261|ICD9CM|Nutritional marasmus|Nutritional marasmus +C0086588|T047|PT|261|ICD9CM|Nutritional marasmus|Nutritional marasmus +C0267981|T047|AB|262|ICD9CM|Oth severe malnutrition|Oth severe malnutrition +C0267981|T047|PT|262|ICD9CM|Other severe protein-calorie malnutrition|Other severe protein-calorie malnutrition +C0687762|T047|HT|263|ICD9CM|Other and unspecified protein-calorie malnutrition|Other and unspecified protein-calorie malnutrition +C0154227|T047|AB|263.0|ICD9CM|Malnutrition mod degree|Malnutrition mod degree +C0154227|T047|PT|263.0|ICD9CM|Malnutrition of moderate degree|Malnutrition of moderate degree +C0154228|T047|AB|263.1|ICD9CM|Malnutrition mild degree|Malnutrition mild degree +C0154228|T047|PT|263.1|ICD9CM|Malnutrition of mild degree|Malnutrition of mild degree +C0154229|T047|AB|263.2|ICD9CM|Arrest devel d/t malnutr|Arrest devel d/t malnutr +C0154229|T047|PT|263.2|ICD9CM|Arrested development following protein-calorie malnutrition|Arrested development following protein-calorie malnutrition +C0154230|T047|PT|263.8|ICD9CM|Other protein-calorie malnutrition|Other protein-calorie malnutrition +C0154230|T047|AB|263.8|ICD9CM|Protein-cal malnutr NEC|Protein-cal malnutr NEC +C0033677|T046|AB|263.9|ICD9CM|Protein-cal malnutr NOS|Protein-cal malnutr NOS +C0033677|T046|PT|263.9|ICD9CM|Unspecified protein-calorie malnutrition|Unspecified protein-calorie malnutrition +C0042842|T047|HT|264|ICD9CM|Vitamin A deficiency|Vitamin A deficiency +C0154231|T047|AB|264.0|ICD9CM|Vit A conjunctiv xerosis|Vit A conjunctiv xerosis +C0154231|T047|PT|264.0|ICD9CM|Vitamin A deficiency with conjunctival xerosis|Vitamin A deficiency with conjunctival xerosis +C0154232|T047|AB|264.1|ICD9CM|Vit A bitot's spot|Vit A bitot's spot +C0154232|T047|PT|264.1|ICD9CM|Vitamin A deficiency with conjunctival xerosis and Bitot's spot|Vitamin A deficiency with conjunctival xerosis and Bitot's spot +C0154233|T047|AB|264.2|ICD9CM|Vit A corneal xerosis|Vit A corneal xerosis +C0154233|T047|PT|264.2|ICD9CM|Vitamin A deficiency with corneal xerosis|Vitamin A deficiency with corneal xerosis +C0154234|T047|AB|264.3|ICD9CM|Vit A cornea ulcer/xeros|Vit A cornea ulcer/xeros +C0154234|T047|PT|264.3|ICD9CM|Vitamin A deficiency with corneal ulceration and xerosis|Vitamin A deficiency with corneal ulceration and xerosis +C0154235|T047|AB|264.4|ICD9CM|Vit A keratomalacia|Vit A keratomalacia +C0154235|T047|PT|264.4|ICD9CM|Vitamin A deficiency with keratomalacia|Vitamin A deficiency with keratomalacia +C0154236|T047|AB|264.5|ICD9CM|Vit A night blindness|Vit A night blindness +C0154236|T047|PT|264.5|ICD9CM|Vitamin A deficiency with night blindness|Vitamin A deficiency with night blindness +C0154237|T047|AB|264.6|ICD9CM|Vit A def w corneal scar|Vit A def w corneal scar +C0154237|T047|PT|264.6|ICD9CM|Vitamin A deficiency with xerophthalmic scars of cornea|Vitamin A deficiency with xerophthalmic scars of cornea +C0154238|T047|PT|264.7|ICD9CM|Other ocular manifestations of vitamin A deficiency|Other ocular manifestations of vitamin A deficiency +C0154238|T047|AB|264.7|ICD9CM|Vit A ocular defic NEC|Vit A ocular defic NEC +C0029665|T047|PT|264.8|ICD9CM|Other manifestations of vitamin A deficiency|Other manifestations of vitamin A deficiency +C0029665|T047|AB|264.8|ICD9CM|Vitamin A deficiency NEC|Vitamin A deficiency NEC +C0042842|T047|PT|264.9|ICD9CM|Unspecified vitamin A deficiency|Unspecified vitamin A deficiency +C0042842|T047|AB|264.9|ICD9CM|Vitamin A deficiency NOS|Vitamin A deficiency NOS +C0154239|T047|HT|265|ICD9CM|Thiamine and niacin deficiency states|Thiamine and niacin deficiency states +C0005122|T047|AB|265.0|ICD9CM|Beriberi|Beriberi +C0005122|T047|PT|265.0|ICD9CM|Beriberi|Beriberi +C0029510|T047|PT|265.1|ICD9CM|Other and unspecified manifestations of thiamine deficiency|Other and unspecified manifestations of thiamine deficiency +C0029510|T047|AB|265.1|ICD9CM|Thiamine defic NEC/NOS|Thiamine defic NEC/NOS +C0030783|T047|AB|265.2|ICD9CM|Pellagra|Pellagra +C0030783|T047|PT|265.2|ICD9CM|Pellagra|Pellagra +C0042850|T047|HT|266|ICD9CM|Deficiency of B-complex components|Deficiency of B-complex components +C0035528|T047|AB|266.0|ICD9CM|Ariboflavinosis|Ariboflavinosis +C0035528|T047|PT|266.0|ICD9CM|Ariboflavinosis|Ariboflavinosis +C0936215|T047|PT|266.1|ICD9CM|Vitamin B6 deficiency|Vitamin B6 deficiency +C0936215|T047|AB|266.1|ICD9CM|Vitamin b6 deficiency|Vitamin b6 deficiency +C0029523|T047|AB|266.2|ICD9CM|B-complex defic NEC|B-complex defic NEC +C0029523|T047|PT|266.2|ICD9CM|Other B-complex deficiencies|Other B-complex deficiencies +C0042850|T047|PT|266.9|ICD9CM|Unspecified vitamin B deficiency|Unspecified vitamin B deficiency +C0042850|T047|AB|266.9|ICD9CM|Vitamin b deficiency NOS|Vitamin b deficiency NOS +C0003969|T047|AB|267|ICD9CM|Ascorbic acid deficiency|Ascorbic acid deficiency +C0003969|T047|PT|267|ICD9CM|Ascorbic acid deficiency|Ascorbic acid deficiency +C0042870|T047|HT|268|ICD9CM|Vitamin D deficiency|Vitamin D deficiency +C0221468|T047|AB|268.0|ICD9CM|Rickets, active|Rickets, active +C0221468|T047|PT|268.0|ICD9CM|Rickets, active|Rickets, active +C0154240|T046|AB|268.1|ICD9CM|Rickets, late effect|Rickets, late effect +C0154240|T046|PT|268.1|ICD9CM|Rickets, late effect|Rickets, late effect +C0029442|T047|AB|268.2|ICD9CM|Osteomalacia NOS|Osteomalacia NOS +C0029442|T047|PT|268.2|ICD9CM|Osteomalacia, unspecified|Osteomalacia, unspecified +C0042870|T047|PT|268.9|ICD9CM|Unspecified vitamin D deficiency|Unspecified vitamin D deficiency +C0042870|T047|AB|268.9|ICD9CM|Vitamin D deficiency NOS|Vitamin D deficiency NOS +C0154241|T047|HT|269|ICD9CM|Other nutritional deficiencies|Other nutritional deficiencies +C0042880|T047|PT|269.0|ICD9CM|Deficiency of vitamin K|Deficiency of vitamin K +C0042880|T047|AB|269.0|ICD9CM|Deficiency of vitamin k|Deficiency of vitamin k +C0011157|T047|PT|269.1|ICD9CM|Deficiency of other vitamins|Deficiency of other vitamins +C0011157|T047|AB|269.1|ICD9CM|Vitamin Deficiency NEC|Vitamin Deficiency NEC +C1510471|T047|PT|269.2|ICD9CM|Unspecified vitamin deficiency|Unspecified vitamin deficiency +C1510471|T047|AB|269.2|ICD9CM|Vitamin Deficiency NOS|Vitamin Deficiency NOS +C0869423|T047|AB|269.3|ICD9CM|Mineral deficiency NEC|Mineral deficiency NEC +C0869423|T047|PT|269.3|ICD9CM|Mineral deficiency, not elsewhere classified|Mineral deficiency, not elsewhere classified +C0154241|T047|AB|269.8|ICD9CM|Nutrition deficiency NEC|Nutrition deficiency NEC +C0154241|T047|PT|269.8|ICD9CM|Other nutritional deficiency|Other nutritional deficiency +C4761312|T047|AB|269.9|ICD9CM|Nutrition deficiency NOS|Nutrition deficiency NOS +C4761312|T047|PT|269.9|ICD9CM|Unspecified nutritional deficiency|Unspecified nutritional deficiency +C0002514|T047|HT|270|ICD9CM|Disorders of amino-acid transport and metabolism|Disorders of amino-acid transport and metabolism +C0178259|T046|HT|270-279.99|ICD9CM|OTHER METABOLIC AND IMMUNITY DISORDERS|OTHER METABOLIC AND IMMUNITY DISORDERS +C0268641|T047|AB|270.0|ICD9CM|Amino-acid transport dis|Amino-acid transport dis +C0268641|T047|PT|270.0|ICD9CM|Disturbances of amino-acid transport|Disturbances of amino-acid transport +C0031485|T047|AB|270.1|ICD9CM|Phenylketonuria - pku|Phenylketonuria - pku +C0031485|T047|PT|270.1|ICD9CM|Phenylketonuria [PKU]|Phenylketonuria [PKU] +C0348483|T047|AB|270.2|ICD9CM|Arom amin-acid metab NEC|Arom amin-acid metab NEC +C0348483|T047|PT|270.2|ICD9CM|Other disturbances of aromatic amino-acid metabolism|Other disturbances of aromatic amino-acid metabolism +C0342712|T047|AB|270.3|ICD9CM|Bran-chain amin-acid dis|Bran-chain amin-acid dis +C0342712|T047|PT|270.3|ICD9CM|Disturbances of branched-chain amino-acid metabolism|Disturbances of branched-chain amino-acid metabolism +C0268613|T047|PT|270.4|ICD9CM|Disturbances of sulphur-bearing amino-acid metabolism|Disturbances of sulphur-bearing amino-acid metabolism +C0268613|T047|AB|270.4|ICD9CM|Sulph amino-acid met dis|Sulph amino-acid met dis +C0268512|T047|AB|270.5|ICD9CM|Dis histidine metabolism|Dis histidine metabolism +C0268512|T047|PT|270.5|ICD9CM|Disturbances of histidine metabolism|Disturbances of histidine metabolism +C0154246|T047|AB|270.6|ICD9CM|Dis urea cycle metabol|Dis urea cycle metabol +C0154246|T047|PT|270.6|ICD9CM|Disorders of urea cycle metabolism|Disorders of urea cycle metabolism +C0154247|T047|PT|270.7|ICD9CM|Other disturbances of straight-chain amino-acid metabolism|Other disturbances of straight-chain amino-acid metabolism +C0154247|T047|AB|270.7|ICD9CM|Straig amin-acid met NEC|Straig amin-acid met NEC +C0029774|T047|AB|270.8|ICD9CM|Dis amino-acid metab NEC|Dis amino-acid metab NEC +C0029774|T047|PT|270.8|ICD9CM|Other specified disorders of amino-acid metabolism|Other specified disorders of amino-acid metabolism +C0002514|T047|AB|270.9|ICD9CM|Dis amino-acid metab NOS|Dis amino-acid metab NOS +C0002514|T047|PT|270.9|ICD9CM|Unspecified disorder of amino-acid metabolism|Unspecified disorder of amino-acid metabolism +C0154249|T047|HT|271|ICD9CM|Disorders of carbohydrate transport and metabolism|Disorders of carbohydrate transport and metabolism +C0017919|T047|AB|271.0|ICD9CM|Glycogenosis|Glycogenosis +C0017919|T047|PT|271.0|ICD9CM|Glycogenosis|Glycogenosis +C0016952|T047|AB|271.1|ICD9CM|Galactosemia|Galactosemia +C0016952|T047|PT|271.1|ICD9CM|Galactosemia|Galactosemia +C0016751|T047|AB|271.2|ICD9CM|Hered fructose intoleran|Hered fructose intoleran +C0016751|T047|PT|271.2|ICD9CM|Hereditary fructose intolerance|Hereditary fructose intolerance +C0021830|T047|AB|271.3|ICD9CM|Disaccharidase def/malab|Disaccharidase def/malab +C0021830|T047|PT|271.3|ICD9CM|Intestinal disaccharidase deficiencies and disaccharide malabsorption|Intestinal disaccharidase deficiencies and disaccharide malabsorption +C0017980|T047|AB|271.4|ICD9CM|Renal glycosuria|Renal glycosuria +C0017980|T047|PT|271.4|ICD9CM|Renal glycosuria|Renal glycosuria +C0029777|T047|AB|271.8|ICD9CM|Dis carbohydr metab NEC|Dis carbohydr metab NEC +C0029777|T047|PT|271.8|ICD9CM|Other specified disorders of carbohydrate transport and metabolism|Other specified disorders of carbohydrate transport and metabolism +C0154249|T047|AB|271.9|ICD9CM|Dis carbohydr metab NOS|Dis carbohydr metab NOS +C0154249|T047|PT|271.9|ICD9CM|Unspecified disorder of carbohydrate transport and metabolism|Unspecified disorder of carbohydrate transport and metabolism +C0154251|T047|HT|272|ICD9CM|Disorders of lipoid metabolism|Disorders of lipoid metabolism +C0678189|T047|AB|272.0|ICD9CM|Pure hypercholesterolem|Pure hypercholesterolem +C0678189|T047|PT|272.0|ICD9CM|Pure hypercholesterolemia|Pure hypercholesterolemia +C0020480|T047|AB|272.1|ICD9CM|Pure hyperglyceridemia|Pure hyperglyceridemia +C0020480|T047|PT|272.1|ICD9CM|Pure hyperglyceridemia|Pure hyperglyceridemia +C2047520|T047|AB|272.2|ICD9CM|Mixed hyperlipidemia|Mixed hyperlipidemia +C2047520|T047|PT|272.2|ICD9CM|Mixed hyperlipidemia|Mixed hyperlipidemia +C0023817|T047|AB|272.3|ICD9CM|Hyperchylomicronemia|Hyperchylomicronemia +C0023817|T047|PT|272.3|ICD9CM|Hyperchylomicronemia|Hyperchylomicronemia +C0348494|T047|AB|272.4|ICD9CM|Hyperlipidemia NEC/NOS|Hyperlipidemia NEC/NOS +C0348494|T047|PT|272.4|ICD9CM|Other and unspecified hyperlipidemia|Other and unspecified hyperlipidemia +C0020623|T033|AB|272.5|ICD9CM|Lipoprotein deficiencies|Lipoprotein deficiencies +C0020623|T033|PT|272.5|ICD9CM|Lipoprotein deficiencies|Lipoprotein deficiencies +C0023787|T047|AB|272.6|ICD9CM|Lipodystrophy|Lipodystrophy +C0023787|T047|PT|272.6|ICD9CM|Lipodystrophy|Lipodystrophy +C0023794|T047|AB|272.7|ICD9CM|Lipidoses|Lipidoses +C0023794|T047|PT|272.7|ICD9CM|Lipidoses|Lipidoses +C0029591|T047|AB|272.8|ICD9CM|Lipoid metabol dis NEC|Lipoid metabol dis NEC +C0029591|T047|PT|272.8|ICD9CM|Other disorders of lipoid metabolism|Other disorders of lipoid metabolism +C0154251|T047|AB|272.9|ICD9CM|Lipoid metabol dis NOS|Lipoid metabol dis NOS +C0154251|T047|PT|272.9|ICD9CM|Unspecified disorder of lipoid metabolism|Unspecified disorder of lipoid metabolism +C3875058|T047|HT|273|ICD9CM|Disorders of plasma protein metabolism|Disorders of plasma protein metabolism +C0154254|T047|AB|273.0|ICD9CM|Polyclon hypergammaglobu|Polyclon hypergammaglobu +C0154254|T047|PT|273.0|ICD9CM|Polyclonal hypergammaglobulinemia|Polyclonal hypergammaglobulinemia +C0026471|T191|AB|273.1|ICD9CM|Monoclon paraproteinemia|Monoclon paraproteinemia +C0026471|T191|PT|273.1|ICD9CM|Monoclonal paraproteinemia|Monoclonal paraproteinemia +C0029698|T191|PT|273.2|ICD9CM|Other paraproteinemias|Other paraproteinemias +C0029698|T191|AB|273.2|ICD9CM|Paraproteinemia NEC|Paraproteinemia NEC +C0024419|T191|AB|273.3|ICD9CM|Macroglobulinemia|Macroglobulinemia +C0024419|T191|PT|273.3|ICD9CM|Macroglobulinemia|Macroglobulinemia +C0221757|T047|AB|273.4|ICD9CM|Alpha-1-antitrypsin def|Alpha-1-antitrypsin def +C0221757|T047|PT|273.4|ICD9CM|Alpha-1-antitrypsin deficiency|Alpha-1-antitrypsin deficiency +C0029594|T047|AB|273.8|ICD9CM|Dis plas protein met NEC|Dis plas protein met NEC +C0029594|T047|PT|273.8|ICD9CM|Other disorders of plasma protein metabolism|Other disorders of plasma protein metabolism +C3875058|T047|AB|273.9|ICD9CM|Dis plas protein met NOS|Dis plas protein met NOS +C3875058|T047|PT|273.9|ICD9CM|Unspecified disorder of plasma protein metabolism|Unspecified disorder of plasma protein metabolism +C0018099|T047|HT|274|ICD9CM|Gout|Gout +C0003868|T047|HT|274.0|ICD9CM|Gouty arthropathy|Gouty arthropathy +C0003868|T047|AB|274.00|ICD9CM|Gouty arthropathy NOS|Gouty arthropathy NOS +C0003868|T047|PT|274.00|ICD9CM|Gouty arthropathy, unspecified|Gouty arthropathy, unspecified +C0149896|T047|AB|274.01|ICD9CM|Acute gouty arthropathy|Acute gouty arthropathy +C0149896|T047|PT|274.01|ICD9CM|Acute gouty arthropathy|Acute gouty arthropathy +C2712886|T047|AB|274.02|ICD9CM|Chr gouty atrph wo tophi|Chr gouty atrph wo tophi +C2712886|T047|PT|274.02|ICD9CM|Chronic gouty arthropathy without mention of tophus (tophi)|Chronic gouty arthropathy without mention of tophus (tophi) +C2712899|T047|AB|274.03|ICD9CM|Chr gouty atroph w tophi|Chr gouty atroph w tophi +C2712899|T047|PT|274.03|ICD9CM|Chronic gouty arthropathy with tophus (tophi)|Chronic gouty arthropathy with tophus (tophi) +C0391820|T047|HT|274.1|ICD9CM|Gouty nephropathy|Gouty nephropathy +C0391820|T047|AB|274.10|ICD9CM|Gouty nephropathy NOS|Gouty nephropathy NOS +C0391820|T047|PT|274.10|ICD9CM|Gouty nephropathy, unspecified|Gouty nephropathy, unspecified +C0403719|T047|AB|274.11|ICD9CM|Uric acid nephrolithias|Uric acid nephrolithias +C0403719|T047|PT|274.11|ICD9CM|Uric acid nephrolithiasis|Uric acid nephrolithiasis +C0154256|T047|AB|274.19|ICD9CM|Gouty nephropathy NEC|Gouty nephropathy NEC +C0154256|T047|PT|274.19|ICD9CM|Other gouty nephropathy|Other gouty nephropathy +C0154257|T047|HT|274.8|ICD9CM|Gout with other specified manifestations|Gout with other specified manifestations +C0154258|T033|AB|274.81|ICD9CM|Gouty tophi of ear|Gouty tophi of ear +C0154258|T033|PT|274.81|ICD9CM|Gouty tophi of ear|Gouty tophi of ear +C0154259|T047|PT|274.82|ICD9CM|Gouty tophi of other sites, except ear|Gouty tophi of other sites, except ear +C0154259|T047|AB|274.82|ICD9CM|Gouty tophi site NEC|Gouty tophi site NEC +C0154257|T047|AB|274.89|ICD9CM|Gout w manifestation NEC|Gout w manifestation NEC +C0154257|T047|PT|274.89|ICD9CM|Gout with other specified manifestations|Gout with other specified manifestations +C0018099|T047|AB|274.9|ICD9CM|Gout NOS|Gout NOS +C0018099|T047|PT|274.9|ICD9CM|Gout, unspecified|Gout, unspecified +C0154260|T046|HT|275|ICD9CM|Disorders of mineral metabolism|Disorders of mineral metabolism +C0012715|T047|HT|275.0|ICD9CM|Disorders of iron metabolism|Disorders of iron metabolism +C0392514|T047|AB|275.01|ICD9CM|Heredit hemochromatosis|Heredit hemochromatosis +C0392514|T047|PT|275.01|ICD9CM|Hereditary hemochromatosis|Hereditary hemochromatosis +C2921014|T047|AB|275.02|ICD9CM|Hemochromatos-rbc trans|Hemochromatos-rbc trans +C2921014|T047|PT|275.02|ICD9CM|Hemochromatosis due to repeated red blood cell transfusions|Hemochromatosis due to repeated red blood cell transfusions +C2921018|T047|AB|275.03|ICD9CM|Hemochromatosis NEC|Hemochromatosis NEC +C2921018|T047|PT|275.03|ICD9CM|Other hemochromatosis|Other hemochromatosis +C2874299|T047|AB|275.09|ICD9CM|Disord iron metablsm NEC|Disord iron metablsm NEC +C2874299|T047|PT|275.09|ICD9CM|Other disorders of iron metabolism|Other disorders of iron metabolism +C0012714|T047|AB|275.1|ICD9CM|Dis copper metabolism|Dis copper metabolism +C0012714|T047|PT|275.1|ICD9CM|Disorders of copper metabolism|Disorders of copper metabolism +C0012716|T047|AB|275.2|ICD9CM|Dis magnesium metabolism|Dis magnesium metabolism +C0012716|T047|PT|275.2|ICD9CM|Disorders of magnesium metabolism|Disorders of magnesium metabolism +C0031707|T047|AB|275.3|ICD9CM|Dis phosphorus metabol|Dis phosphorus metabol +C0031707|T047|PT|275.3|ICD9CM|Disorders of phosphorus metabolism|Disorders of phosphorus metabolism +C0006705|T047|HT|275.4|ICD9CM|Disorders of calcium metabolism|Disorders of calcium metabolism +C0006705|T047|AB|275.40|ICD9CM|Dis calcium metablsm NOS|Dis calcium metablsm NOS +C0006705|T047|PT|275.40|ICD9CM|Unspecified disorder of calcium metabolism|Unspecified disorder of calcium metabolism +C0020598|T047|AB|275.41|ICD9CM|Hypocalcemia|Hypocalcemia +C0020598|T047|PT|275.41|ICD9CM|Hypocalcemia|Hypocalcemia +C0020437|T047|AB|275.42|ICD9CM|Hypercalcemia|Hypercalcemia +C0020437|T047|PT|275.42|ICD9CM|Hypercalcemia|Hypercalcemia +C0489982|T047|AB|275.49|ICD9CM|Dis calcium metablsm NEC|Dis calcium metablsm NEC +C0489982|T047|PT|275.49|ICD9CM|Other disorders of calcium metabolism|Other disorders of calcium metabolism +C0342635|T047|PT|275.5|ICD9CM|Hungry bone syndrome|Hungry bone syndrome +C0342635|T047|AB|275.5|ICD9CM|Hungry bone syndrome|Hungry bone syndrome +C0154261|T046|AB|275.8|ICD9CM|Dis mineral metabol NEC|Dis mineral metabol NEC +C0154261|T046|PT|275.8|ICD9CM|Other specified disorders of mineral metabolism|Other specified disorders of mineral metabolism +C0154260|T046|AB|275.9|ICD9CM|Dis mineral metabol NOS|Dis mineral metabol NOS +C0154260|T046|PT|275.9|ICD9CM|Unspecified disorder of mineral metabolism|Unspecified disorder of mineral metabolism +C0267994|T046|HT|276|ICD9CM|Disorders of fluid, electrolyte, and acid-base balance|Disorders of fluid, electrolyte, and acid-base balance +C0342580|T047|AB|276.0|ICD9CM|Hyperosmolality|Hyperosmolality +C0342580|T047|PT|276.0|ICD9CM|Hyperosmolality and/or hypernatremia|Hyperosmolality and/or hypernatremia +C0020645|T033|AB|276.1|ICD9CM|Hyposmolality|Hyposmolality +C0020645|T033|PT|276.1|ICD9CM|Hyposmolality and/or hyponatremia|Hyposmolality and/or hyponatremia +C0001122|T046|AB|276.2|ICD9CM|Acidosis|Acidosis +C0001122|T046|PT|276.2|ICD9CM|Acidosis|Acidosis +C0002063|T047|AB|276.3|ICD9CM|Alkalosis|Alkalosis +C0002063|T047|PT|276.3|ICD9CM|Alkalosis|Alkalosis +C0154264|T047|AB|276.4|ICD9CM|Mixed acid-base bal dis|Mixed acid-base bal dis +C0154264|T047|PT|276.4|ICD9CM|Mixed acid-base balance disorder|Mixed acid-base balance disorder +C0546884|T033|HT|276.5|ICD9CM|Volume depletion|Volume depletion +C0546884|T033|AB|276.50|ICD9CM|Volume depletion NOS|Volume depletion NOS +C0546884|T033|PT|276.50|ICD9CM|Volume depletion, unspecified|Volume depletion, unspecified +C0011175|T047|AB|276.51|ICD9CM|Dehydration|Dehydration +C0011175|T047|PT|276.51|ICD9CM|Dehydration|Dehydration +C0546884|T033|AB|276.52|ICD9CM|Hypovolemia|Hypovolemia +C0546884|T033|PT|276.52|ICD9CM|Hypovolemia|Hypovolemia +C0546817|T046|HT|276.6|ICD9CM|Fluid overload|Fluid overload +C2921022|T046|AB|276.61|ICD9CM|Transfsn w circ overload|Transfsn w circ overload +C2921022|T046|PT|276.61|ICD9CM|Transfusion associated circulatory overload|Transfusion associated circulatory overload +C2921023|T047|AB|276.69|ICD9CM|Fluid overload NEC|Fluid overload NEC +C2921023|T047|PT|276.69|ICD9CM|Other fluid overload|Other fluid overload +C0020461|T033|AB|276.7|ICD9CM|Hyperpotassemia|Hyperpotassemia +C0020461|T033|PT|276.7|ICD9CM|Hyperpotassemia|Hyperpotassemia +C0020621|T033|AB|276.8|ICD9CM|Hypopotassemia|Hypopotassemia +C0020621|T033|PT|276.8|ICD9CM|Hypopotassemia|Hypopotassemia +C0868890|T046|AB|276.9|ICD9CM|Electrolyt/fluid dis NEC|Electrolyt/fluid dis NEC +C0868890|T046|PT|276.9|ICD9CM|Electrolyte and fluid disorders not elsewhere classified|Electrolyte and fluid disorders not elsewhere classified +C0268329|T047|HT|277|ICD9CM|Other and unspecified disorders of metabolism|Other and unspecified disorders of metabolism +C0010674|T047|HT|277.0|ICD9CM|Cystic fibrosis|Cystic fibrosis +C0010676|T047|AB|277.00|ICD9CM|Cystic fibros w/o ileus|Cystic fibros w/o ileus +C0010676|T047|PT|277.00|ICD9CM|Cystic fibrosis without mention of meconium ileus|Cystic fibrosis without mention of meconium ileus +C0546982|T047|AB|277.01|ICD9CM|Cystic fibrosis w ileus|Cystic fibrosis w ileus +C0546982|T047|PT|277.01|ICD9CM|Cystic fibrosis with meconium ileus|Cystic fibrosis with meconium ileus +C0348815|T047|AB|277.02|ICD9CM|Cystic fibros w pul man|Cystic fibros w pul man +C0348815|T047|PT|277.02|ICD9CM|Cystic fibrosis with pulmonary manifestations|Cystic fibrosis with pulmonary manifestations +C1135187|T047|AB|277.03|ICD9CM|Cystic fibrosis w GI man|Cystic fibrosis w GI man +C1135187|T047|PT|277.03|ICD9CM|Cystic fibrosis with gastrointestinal manifestations|Cystic fibrosis with gastrointestinal manifestations +C0494350|T047|AB|277.09|ICD9CM|Cystic fibrosis NEC|Cystic fibrosis NEC +C0494350|T047|PT|277.09|ICD9CM|Cystic fibrosis with other manifestations|Cystic fibrosis with other manifestations +C0032708|T047|AB|277.1|ICD9CM|Dis porphyrin metabolism|Dis porphyrin metabolism +C0032708|T047|PT|277.1|ICD9CM|Disorders of porphyrin metabolism|Disorders of porphyrin metabolism +C0029595|T047|PT|277.2|ICD9CM|Other disorders of purine and pyrimidine metabolism|Other disorders of purine and pyrimidine metabolism +C0029595|T047|AB|277.2|ICD9CM|Purine/pyrimid dis NEC|Purine/pyrimid dis NEC +C0002726|T047|HT|277.3|ICD9CM|Amyloidosis|Amyloidosis +C0002726|T047|AB|277.30|ICD9CM|Amyloidosis NOS|Amyloidosis NOS +C0002726|T047|PT|277.30|ICD9CM|Amyloidosis, unspecified|Amyloidosis, unspecified +C0031069|T047|AB|277.31|ICD9CM|Fam Mediterranean fever|Fam Mediterranean fever +C0031069|T047|PT|277.31|ICD9CM|Familial Mediterranean fever|Familial Mediterranean fever +C0348499|T047|AB|277.39|ICD9CM|Amyloidosis NEC|Amyloidosis NEC +C0348499|T047|PT|277.39|ICD9CM|Other amyloidosis|Other amyloidosis +C0012711|T047|AB|277.4|ICD9CM|Dis bilirubin excretion|Dis bilirubin excretion +C0012711|T047|PT|277.4|ICD9CM|Disorders of bilirubin excretion|Disorders of bilirubin excretion +C0026703|T047|AB|277.5|ICD9CM|Mucopolysaccharidosis|Mucopolysaccharidosis +C0026703|T047|PT|277.5|ICD9CM|Mucopolysaccharidosis|Mucopolysaccharidosis +C0029570|T047|AB|277.6|ICD9CM|Defic circul enzyme NEC|Defic circul enzyme NEC +C0029570|T047|PT|277.6|ICD9CM|Other deficiencies of circulating enzymes|Other deficiencies of circulating enzymes +C0524620|T047|PT|277.7|ICD9CM|Dysmetabolic syndrome X|Dysmetabolic syndrome X +C0524620|T047|AB|277.7|ICD9CM|Dysmetabolic syndrome x|Dysmetabolic syndrome x +C0494362|T047|HT|277.8|ICD9CM|Other specified disorders of metabolism|Other specified disorders of metabolism +C0342788|T047|PT|277.81|ICD9CM|Primary carnitine deficiency|Primary carnitine deficiency +C0342788|T047|AB|277.81|ICD9CM|Primary carnitine defncy|Primary carnitine defncy +C3875374|T047|PT|277.82|ICD9CM|Carnitine deficiency due to inborn errors of metabolism|Carnitine deficiency due to inborn errors of metabolism +C3875374|T047|AB|277.82|ICD9CM|Crnitne def d/t nb met|Crnitne def d/t nb met +C1260391|T046|AB|277.83|ICD9CM|Iatrogenic carnitine def|Iatrogenic carnitine def +C1260391|T046|PT|277.83|ICD9CM|Iatrogenic carnitine deficiency|Iatrogenic carnitine deficiency +C1260392|T047|PT|277.84|ICD9CM|Other secondary carnitine deficiency|Other secondary carnitine deficiency +C1260392|T047|AB|277.84|ICD9CM|Sec carnitine defncy NEC|Sec carnitine defncy NEC +C1456270|T047|AB|277.85|ICD9CM|Disorders acid oxidation|Disorders acid oxidation +C1456270|T047|PT|277.85|ICD9CM|Disorders of fatty acid oxidation|Disorders of fatty acid oxidation +C0282528|T047|AB|277.86|ICD9CM|Peroxisomal disorders|Peroxisomal disorders +C0282528|T047|PT|277.86|ICD9CM|Peroxisomal disorders|Peroxisomal disorders +C1456275|T047|AB|277.87|ICD9CM|Dis mitochondrial metab|Dis mitochondrial metab +C1456275|T047|PT|277.87|ICD9CM|Disorders of mitochondrial metabolism|Disorders of mitochondrial metabolism +C0041364|T047|PT|277.88|ICD9CM|Tumor lysis syndrome|Tumor lysis syndrome +C0041364|T047|AB|277.88|ICD9CM|Tumor lysis syndrome|Tumor lysis syndrome +C0494362|T047|AB|277.89|ICD9CM|Metabolism disorder NEC|Metabolism disorder NEC +C0494362|T047|PT|277.89|ICD9CM|Other specified disorders of metabolism|Other specified disorders of metabolism +C0025517|T047|AB|277.9|ICD9CM|Metabolism disorder NOS|Metabolism disorder NOS +C0025517|T047|PT|277.9|ICD9CM|Unspecified disorder of metabolism|Unspecified disorder of metabolism +C1561827|T047|HT|278|ICD9CM|Overweight, obesity and other hyperalimentation|Overweight, obesity and other hyperalimentation +C1561826|T047|HT|278.0|ICD9CM|Overweight and obesity|Overweight and obesity +C0028754|T047|AB|278.00|ICD9CM|Obesity NOS|Obesity NOS +C0028754|T047|PT|278.00|ICD9CM|Obesity, unspecified|Obesity, unspecified +C0028756|T047|AB|278.01|ICD9CM|Morbid obesity|Morbid obesity +C0028756|T047|PT|278.01|ICD9CM|Morbid obesity|Morbid obesity +C0497406|T033|AB|278.02|ICD9CM|Overweight|Overweight +C0497406|T033|PT|278.02|ICD9CM|Overweight|Overweight +C0031880|T047|AB|278.03|ICD9CM|Obesity hypovent synd|Obesity hypovent synd +C0031880|T047|PT|278.03|ICD9CM|Obesity hypoventilation syndrome|Obesity hypoventilation syndrome +C0154270|T033|AB|278.1|ICD9CM|Localized adiposity|Localized adiposity +C0154270|T033|PT|278.1|ICD9CM|Localized adiposity|Localized adiposity +C0020579|T047|PT|278.2|ICD9CM|Hypervitaminosis A|Hypervitaminosis A +C0020579|T047|AB|278.2|ICD9CM|Hypervitaminosis a|Hypervitaminosis a +C0154271|T047|AB|278.3|ICD9CM|Hypercarotinemia|Hypercarotinemia +C0154271|T047|PT|278.3|ICD9CM|Hypercarotinemia|Hypercarotinemia +C1442839|T047|PT|278.4|ICD9CM|Hypervitaminosis D|Hypervitaminosis D +C1442839|T047|AB|278.4|ICD9CM|Hypervitaminosis d|Hypervitaminosis d +C0029635|T047|AB|278.8|ICD9CM|Other hyperalimentation|Other hyperalimentation +C0029635|T047|PT|278.8|ICD9CM|Other hyperalimentation|Other hyperalimentation +C0041806|T047|HT|279|ICD9CM|Disorders involving the immune mechanism|Disorders involving the immune mechanism +C0522274|T047|HT|279.0|ICD9CM|Deficiency of humoral immunity|Deficiency of humoral immunity +C0086438|T047|AB|279.00|ICD9CM|Hypogammaglobulinem NOS|Hypogammaglobulinem NOS +C0086438|T047|PT|279.00|ICD9CM|Hypogammaglobulinemia, unspecified|Hypogammaglobulinemia, unspecified +C4049006|T047|AB|279.01|ICD9CM|Selective iga immunodef|Selective iga immunodef +C4049006|T047|PT|279.01|ICD9CM|Selective IgA immunodeficiency|Selective IgA immunodeficiency +C0154275|T046|AB|279.02|ICD9CM|Selective IgM immunodef|Selective IgM immunodef +C0154275|T046|PT|279.02|ICD9CM|Selective IgM immunodeficiency|Selective IgM immunodeficiency +C0154276|T047|PT|279.03|ICD9CM|Other selective immunoglobulin deficiencies|Other selective immunoglobulin deficiencies +C0154276|T047|AB|279.03|ICD9CM|Selective ig defic NEC|Selective ig defic NEC +C1457897|T047|AB|279.04|ICD9CM|Cong hypogammaglobulinem|Cong hypogammaglobulinem +C1457897|T047|PT|279.04|ICD9CM|Congenital hypogammaglobulinemia|Congenital hypogammaglobulinemia +C0740331|T047|AB|279.05|ICD9CM|Immunodefic w hyper-igm|Immunodefic w hyper-igm +C0740331|T047|PT|279.05|ICD9CM|Immunodeficiency with increased IgM|Immunodeficiency with increased IgM +C0009447|T047|AB|279.06|ICD9CM|Common variabl immunodef|Common variabl immunodef +C0009447|T047|PT|279.06|ICD9CM|Common variable immunodeficiency|Common variable immunodeficiency +C0522274|T047|AB|279.09|ICD9CM|Humoral immunity def NEC|Humoral immunity def NEC +C0522274|T047|PT|279.09|ICD9CM|Other deficiency of humoral immunity|Other deficiency of humoral immunity +C1533651|T046|HT|279.1|ICD9CM|Deficiency of cell-mediated immunity|Deficiency of cell-mediated immunity +C1608262|T046|AB|279.10|ICD9CM|Immundef t-cell def NOS|Immundef t-cell def NOS +C1608262|T046|PT|279.10|ICD9CM|Immunodeficiency with predominant T-cell defect, unspecified|Immunodeficiency with predominant T-cell defect, unspecified +C0012236|T047|AB|279.11|ICD9CM|Digeorge's syndrome|Digeorge's syndrome +C0012236|T047|PT|279.11|ICD9CM|Digeorge's syndrome|Digeorge's syndrome +C0043194|T047|AB|279.12|ICD9CM|Wiskott-aldrich syndrome|Wiskott-aldrich syndrome +C0043194|T047|PT|279.12|ICD9CM|Wiskott-aldrich syndrome|Wiskott-aldrich syndrome +C0152094|T047|AB|279.13|ICD9CM|Nezelof's syndrome|Nezelof's syndrome +C0152094|T047|PT|279.13|ICD9CM|Nezelof's syndrome|Nezelof's syndrome +C0154282|T047|AB|279.19|ICD9CM|Defic cell immunity NOS|Defic cell immunity NOS +C0154282|T047|PT|279.19|ICD9CM|Other deficiency of cell-mediated immunity|Other deficiency of cell-mediated immunity +C0494261|T047|AB|279.2|ICD9CM|Combined immunity defic|Combined immunity defic +C0494261|T047|PT|279.2|ICD9CM|Combined immunity deficiency|Combined immunity deficiency +C0021051|T047|AB|279.3|ICD9CM|Immunity deficiency NOS|Immunity deficiency NOS +C0021051|T047|PT|279.3|ICD9CM|Unspecified immunity deficiency|Unspecified immunity deficiency +C0687719|T047|HT|279.4|ICD9CM|Autoimmune disease, not elsewhere classified|Autoimmune disease, not elsewhere classified +C1328840|T047|AB|279.41|ICD9CM|Autoimmun lymphprof synd|Autoimmun lymphprof synd +C1328840|T047|PT|279.41|ICD9CM|Autoimmune lymphoproliferative syndrome|Autoimmune lymphoproliferative syndrome +C0687719|T047|AB|279.49|ICD9CM|Autoimmune disease NEC|Autoimmune disease NEC +C0687719|T047|PT|279.49|ICD9CM|Autoimmune disease, not elsewhere classified|Autoimmune disease, not elsewhere classified +C0018133|T047|HT|279.5|ICD9CM|Graft-versus-host disease|Graft-versus-host disease +C0018133|T047|PT|279.50|ICD9CM|Graft-versus-host disease, unspecified|Graft-versus-host disease, unspecified +C0018133|T047|AB|279.50|ICD9CM|Graft-versus-host NOS|Graft-versus-host NOS +C0856825|T047|AB|279.51|ICD9CM|Ac graft-versus-host dis|Ac graft-versus-host dis +C0856825|T047|PT|279.51|ICD9CM|Acute graft-versus-host disease|Acute graft-versus-host disease +C0867389|T047|AB|279.52|ICD9CM|Chronc graft-vs-host dis|Chronc graft-vs-host dis +C0867389|T047|PT|279.52|ICD9CM|Chronic graft-versus-host disease|Chronic graft-versus-host disease +C2349403|T047|AB|279.53|ICD9CM|Ac on chrn grft-vs-host|Ac on chrn grft-vs-host +C2349403|T047|PT|279.53|ICD9CM|Acute on chronic graft-versus-host disease|Acute on chronic graft-versus-host disease +C0398672|T047|AB|279.8|ICD9CM|Immune mechanism dis NEC|Immune mechanism dis NEC +C0398672|T047|PT|279.8|ICD9CM|Other specified disorders involving the immune mechanism|Other specified disorders involving the immune mechanism +C0041806|T047|AB|279.9|ICD9CM|Immune mechanism dis NOS|Immune mechanism dis NOS +C0041806|T047|PT|279.9|ICD9CM|Unspecified disorder of immune mechanism|Unspecified disorder of immune mechanism +C0162316|T047|HT|280|ICD9CM|Iron deficiency anemias|Iron deficiency anemias +C0018939|T047|HT|280-289.99|ICD9CM|DISEASES OF THE BLOOD AND BLOOD-FORMING ORGANS|DISEASES OF THE BLOOD AND BLOOD-FORMING ORGANS +C0154286|T047|AB|280.0|ICD9CM|Chr blood loss anemia|Chr blood loss anemia +C0154286|T047|PT|280.0|ICD9CM|Iron deficiency anemia secondary to blood loss (chronic)|Iron deficiency anemia secondary to blood loss (chronic) +C0154287|T047|AB|280.1|ICD9CM|Iron def anemia dietary|Iron def anemia dietary +C0154287|T047|PT|280.1|ICD9CM|Iron deficiency anemia secondary to inadequate dietary iron intake|Iron deficiency anemia secondary to inadequate dietary iron intake +C0029810|T047|AB|280.8|ICD9CM|Iron defic anemia NEC|Iron defic anemia NEC +C0029810|T047|PT|280.8|ICD9CM|Other specified iron deficiency anemias|Other specified iron deficiency anemias +C0162316|T047|AB|280.9|ICD9CM|Iron defic anemia NOS|Iron defic anemia NOS +C0162316|T047|PT|280.9|ICD9CM|Iron deficiency anemia, unspecified|Iron deficiency anemia, unspecified +C0154288|T047|HT|281|ICD9CM|Other deficiency anemias|Other deficiency anemias +C0002892|T047|AB|281.0|ICD9CM|Pernicious anemia|Pernicious anemia +C0002892|T047|PT|281.0|ICD9CM|Pernicious anemia|Pernicious anemia +C0154289|T047|AB|281.1|ICD9CM|B12 defic anemia NEC|B12 defic anemia NEC +C0154289|T047|PT|281.1|ICD9CM|Other vitamin B12 deficiency anemia|Other vitamin B12 deficiency anemia +C0151482|T047|AB|281.2|ICD9CM|Folate-deficiency anemia|Folate-deficiency anemia +C0151482|T047|PT|281.2|ICD9CM|Folate-deficiency anemia|Folate-deficiency anemia +C0302367|T047|AB|281.3|ICD9CM|Megaloblastic anemia NEC|Megaloblastic anemia NEC +C0302367|T047|PT|281.3|ICD9CM|Other specified megaloblastic anemias not elsewhere classified|Other specified megaloblastic anemias not elsewhere classified +C0154290|T047|AB|281.4|ICD9CM|Protein defic anemia|Protein defic anemia +C0154290|T047|PT|281.4|ICD9CM|Protein-deficiency anemia|Protein-deficiency anemia +C0154291|T047|PT|281.8|ICD9CM|Anemia associated with other specified nutritional deficiency|Anemia associated with other specified nutritional deficiency +C0154291|T047|AB|281.8|ICD9CM|Nutritional anemia NEC|Nutritional anemia NEC +C0041782|T047|AB|281.9|ICD9CM|Deficiency anemia NOS|Deficiency anemia NOS +C0041782|T047|PT|281.9|ICD9CM|Unspecified deficiency anemia|Unspecified deficiency anemia +C0002881|T047|HT|282|ICD9CM|Hereditary hemolytic anemias|Hereditary hemolytic anemias +C0037889|T047|AB|282.0|ICD9CM|Hereditary spherocytosis|Hereditary spherocytosis +C0037889|T047|PT|282.0|ICD9CM|Hereditary spherocytosis|Hereditary spherocytosis +C0013902|T047|AB|282.1|ICD9CM|Heredit elliptocytosis|Heredit elliptocytosis +C0013902|T047|PT|282.1|ICD9CM|Hereditary elliptocytosis|Hereditary elliptocytosis +C0002899|T047|PT|282.2|ICD9CM|Anemias due to disorders of glutathione metabolism|Anemias due to disorders of glutathione metabolism +C0002899|T047|AB|282.2|ICD9CM|Glutathione dis anemia|Glutathione dis anemia +C0154292|T047|AB|282.3|ICD9CM|Enzyme defic anemia NEC|Enzyme defic anemia NEC +C0154292|T047|PT|282.3|ICD9CM|Other hemolytic anemias due to enzyme deficiency|Other hemolytic anemias due to enzyme deficiency +C0039730|T047|HT|282.4|ICD9CM|Thalassemias|Thalassemias +C0039730|T047|AB|282.40|ICD9CM|Thalassemia, unspecified|Thalassemia, unspecified +C0039730|T047|PT|282.40|ICD9CM|Thalassemia, unspecified|Thalassemia, unspecified +C1260393|T047|PT|282.41|ICD9CM|Sickle-cell thalassemia without crisis|Sickle-cell thalassemia without crisis +C1260393|T047|AB|282.41|ICD9CM|Thlasema Hb-S w/o crisis|Thlasema Hb-S w/o crisis +C1260395|T047|PT|282.42|ICD9CM|Sickle-cell thalassemia with crisis|Sickle-cell thalassemia with crisis +C1260395|T047|AB|282.42|ICD9CM|Thlassemia Hb-S w crisis|Thlassemia Hb-S w crisis +C0002312|T047|PT|282.43|ICD9CM|Alpha thalassemia|Alpha thalassemia +C0002312|T047|AB|282.43|ICD9CM|Alpha thalassemia|Alpha thalassemia +C0005283|T047|PT|282.44|ICD9CM|Beta thalassemia|Beta thalassemia +C0005283|T047|AB|282.44|ICD9CM|Beta thalassemia|Beta thalassemia +C0271985|T047|AB|282.45|ICD9CM|Delta-beta thalassemia|Delta-beta thalassemia +C0271985|T047|PT|282.45|ICD9CM|Delta-beta thalassemia|Delta-beta thalassemia +C0085578|T047|PT|282.46|ICD9CM|Thalassemia minor|Thalassemia minor +C0085578|T047|AB|282.46|ICD9CM|Thalassemia minor|Thalassemia minor +C0472777|T047|PT|282.47|ICD9CM|Hemoglobin E-beta thalassemia|Hemoglobin E-beta thalassemia +C0472777|T047|AB|282.47|ICD9CM|Hgb E-beta thalassemia|Hgb E-beta thalassemia +C0477306|T047|PT|282.49|ICD9CM|Other thalassemia|Other thalassemia +C0477306|T047|AB|282.49|ICD9CM|Thalassemia NEC|Thalassemia NEC +C0037054|T047|AB|282.5|ICD9CM|Sickle-cell trait|Sickle-cell trait +C0037054|T047|PT|282.5|ICD9CM|Sickle-cell trait|Sickle-cell trait +C0002895|T047|HT|282.6|ICD9CM|Sickle-cell disease|Sickle-cell disease +C0002895|T047|AB|282.60|ICD9CM|Sickle cell disease NOS|Sickle cell disease NOS +C0002895|T047|PT|282.60|ICD9CM|Sickle-cell disease, unspecified|Sickle-cell disease, unspecified +C0272078|T047|AB|282.61|ICD9CM|Hb-SS disease w/o crisis|Hb-SS disease w/o crisis +C0272078|T047|PT|282.61|ICD9CM|Hb-SS disease without crisis|Hb-SS disease without crisis +C0238425|T047|AB|282.62|ICD9CM|Hb-SS disease w crisis|Hb-SS disease w crisis +C0238425|T047|PT|282.62|ICD9CM|Hb-SS disease with crisis|Hb-SS disease with crisis +C0019034|T047|AB|282.63|ICD9CM|Hb-SS/hb-C dis w/o crsis|Hb-SS/hb-C dis w/o crsis +C0019034|T047|PT|282.63|ICD9CM|Sickle-cell/Hb-C disease without crisis|Sickle-cell/Hb-C disease without crisis +C1260398|T047|AB|282.64|ICD9CM|Hb-S/Hb-C dis w crisis|Hb-S/Hb-C dis w crisis +C1260398|T047|PT|282.64|ICD9CM|Sickle-cell/Hb-C disease with crisis|Sickle-cell/Hb-C disease with crisis +C1260401|T047|AB|282.68|ICD9CM|Hb-S dis w/o crisis NEC|Hb-S dis w/o crisis NEC +C1260401|T047|PT|282.68|ICD9CM|Other sickle-cell disease without crisis|Other sickle-cell disease without crisis +C1260673|T047|AB|282.69|ICD9CM|Hb-SS dis NEC w crisis|Hb-SS dis NEC w crisis +C1260673|T047|PT|282.69|ICD9CM|Other sickle-cell disease with crisis|Other sickle-cell disease with crisis +C0029632|T047|AB|282.7|ICD9CM|Hemoglobinopathies NEC|Hemoglobinopathies NEC +C0029632|T047|PT|282.7|ICD9CM|Other hemoglobinopathies|Other hemoglobinopathies +C0154296|T047|AB|282.8|ICD9CM|Hered hemolytic anem NEC|Hered hemolytic anem NEC +C0154296|T047|PT|282.8|ICD9CM|Other specified hereditary hemolytic anemias|Other specified hereditary hemolytic anemias +C0002881|T047|AB|282.9|ICD9CM|Hered hemolytic anem NOS|Hered hemolytic anem NOS +C0002881|T047|PT|282.9|ICD9CM|Hereditary hemolytic anemia, unspecified|Hereditary hemolytic anemia, unspecified +C0002879|T047|HT|283|ICD9CM|Acquired hemolytic anemias|Acquired hemolytic anemias +C0002880|T047|AB|283.0|ICD9CM|Autoimmun hemolytic anem|Autoimmun hemolytic anem +C0002880|T047|PT|283.0|ICD9CM|Autoimmune hemolytic anemias|Autoimmune hemolytic anemias +C0028283|T047|HT|283.1|ICD9CM|Non-autoimmune hemolytic anemias|Non-autoimmune hemolytic anemias +C0028283|T047|PT|283.10|ICD9CM|Non-autoimmune hemolytic anemia, unspecified|Non-autoimmune hemolytic anemia, unspecified +C0028283|T047|AB|283.10|ICD9CM|Nonauto hem anemia NOS|Nonauto hem anemia NOS +C0019061|T047|AB|283.11|ICD9CM|Hemolytic uremic synd|Hemolytic uremic synd +C0019061|T047|PT|283.11|ICD9CM|Hemolytic-uremic syndrome|Hemolytic-uremic syndrome +C0375155|T047|AB|283.19|ICD9CM|Oth nonauto hem anemia|Oth nonauto hem anemia +C0375155|T047|PT|283.19|ICD9CM|Other non-autoimmune hemolytic anemias|Other non-autoimmune hemolytic anemias +C0019049|T047|PT|283.2|ICD9CM|Hemoglobinuria due to hemolysis from external causes|Hemoglobinuria due to hemolysis from external causes +C0019049|T047|AB|283.2|ICD9CM|Hemolytic hemoglobinuria|Hemolytic hemoglobinuria +C0002879|T047|AB|283.9|ICD9CM|Acq hemolytic anemia NOS|Acq hemolytic anemia NOS +C0002879|T047|PT|283.9|ICD9CM|Acquired hemolytic anemia, unspecified|Acquired hemolytic anemia, unspecified +C1719323|T047|HT|284|ICD9CM|Aplastic anemia and other bone marrow failure syndromes|Aplastic anemia and other bone marrow failure syndromes +C0702159|T047|HT|284.0|ICD9CM|Constitutional aplastic anemia|Constitutional aplastic anemia +C1719319|T047|AB|284.01|ICD9CM|Constitution RBC aplasia|Constitution RBC aplasia +C1719319|T047|PT|284.01|ICD9CM|Constitutional red blood cell aplasia|Constitutional red blood cell aplasia +C1719322|T047|AB|284.09|ICD9CM|Const aplastc anemia NEC|Const aplastc anemia NEC +C1719322|T047|PT|284.09|ICD9CM|Other constitutional aplastic anemia|Other constitutional aplastic anemia +C0030312|T047|HT|284.1|ICD9CM|Pancytopenia|Pancytopenia +C3161073|T046|AB|284.11|ICD9CM|Antin chemo indcd pancyt|Antin chemo indcd pancyt +C3161073|T046|PT|284.11|ICD9CM|Antineoplastic chemotherapy induced pancytopenia|Antineoplastic chemotherapy induced pancytopenia +C3161074|T046|AB|284.12|ICD9CM|Oth drg indcd pancytopna|Oth drg indcd pancytopna +C3161074|T046|PT|284.12|ICD9CM|Other drug-induced pancytopenia|Other drug-induced pancytopenia +C3161075|T047|PT|284.19|ICD9CM|Other pancytopenia|Other pancytopenia +C3161075|T047|AB|284.19|ICD9CM|Other pancytopenia|Other pancytopenia +C0302112|T047|PT|284.2|ICD9CM|Myelophthisis|Myelophthisis +C0302112|T047|AB|284.2|ICD9CM|Myelophthisis|Myelophthisis +C0029745|T047|HT|284.8|ICD9CM|Other specified aplastic anemias|Other specified aplastic anemias +C0865240|T047|AB|284.81|ICD9CM|Red cell aplasia|Red cell aplasia +C0865240|T047|PT|284.81|ICD9CM|Red cell aplasia (acquired)(adult)(with thymoma)|Red cell aplasia (acquired)(adult)(with thymoma) +C1955746|T047|AB|284.89|ICD9CM|Aplastic anemias NEC|Aplastic anemias NEC +C1955746|T047|PT|284.89|ICD9CM|Other specified aplastic anemias|Other specified aplastic anemias +C0002874|T047|AB|284.9|ICD9CM|Aplastic anemia NOS|Aplastic anemia NOS +C0002874|T047|PT|284.9|ICD9CM|Aplastic anemia, unspecified|Aplastic anemia, unspecified +C0472702|T047|HT|285|ICD9CM|Other and unspecified anemias|Other and unspecified anemias +C0002896|T047|AB|285.0|ICD9CM|Sideroblastic anemia|Sideroblastic anemia +C0002896|T047|PT|285.0|ICD9CM|Sideroblastic anemia|Sideroblastic anemia +C0154298|T047|AB|285.1|ICD9CM|Ac posthemorrhag anemia|Ac posthemorrhag anemia +C0154298|T047|PT|285.1|ICD9CM|Acute posthemorrhagic anemia|Acute posthemorrhagic anemia +C0002873|T047|HT|285.2|ICD9CM|Anemia of chronic disease|Anemia of chronic disease +C1561828|T047|AB|285.21|ICD9CM|Anemia in chr kidney dis|Anemia in chr kidney dis +C1561828|T047|PT|285.21|ICD9CM|Anemia in chronic kidney disease|Anemia in chronic kidney disease +C0475534|T047|AB|285.22|ICD9CM|Anemia in neoplastic dis|Anemia in neoplastic dis +C0475534|T047|PT|285.22|ICD9CM|Anemia in neoplastic disease|Anemia in neoplastic disease +C1719324|T047|PT|285.29|ICD9CM|Anemia of other chronic disease|Anemia of other chronic disease +C1719324|T047|AB|285.29|ICD9CM|Anemia-other chronic dis|Anemia-other chronic dis +C2712646|T047|AB|285.3|ICD9CM|Anemia d/t antineo chemo|Anemia d/t antineo chemo +C2712646|T047|PT|285.3|ICD9CM|Antineoplastic chemotherapy induced anemia|Antineoplastic chemotherapy induced anemia +C0029744|T047|AB|285.8|ICD9CM|Anemia NEC|Anemia NEC +C0029744|T047|PT|285.8|ICD9CM|Other specified anemias|Other specified anemias +C0002871|T047|AB|285.9|ICD9CM|Anemia NOS|Anemia NOS +C0002871|T047|PT|285.9|ICD9CM|Anemia, unspecified|Anemia, unspecified +C0005779|T047|HT|286|ICD9CM|Coagulation defects|Coagulation defects +C0019069|T047|AB|286.0|ICD9CM|Cong factor viii diord|Cong factor viii diord +C0019069|T047|PT|286.0|ICD9CM|Congenital factor VIII disorder|Congenital factor VIII disorder +C0008533|T047|AB|286.1|ICD9CM|Cong factor IX disorder|Cong factor IX disorder +C0008533|T047|PT|286.1|ICD9CM|Congenital factor IX disorder|Congenital factor IX disorder +C0015523|T047|AB|286.2|ICD9CM|Cong factor xi disorder|Cong factor xi disorder +C0015523|T047|PT|286.2|ICD9CM|Congenital factor XI deficiency|Congenital factor XI deficiency +C0009699|T047|AB|286.3|ICD9CM|Cong def clot factor NEC|Cong def clot factor NEC +C0009699|T047|PT|286.3|ICD9CM|Congenital deficiency of other clotting factors|Congenital deficiency of other clotting factors +C0042974|T047|PT|286.4|ICD9CM|Von Willebrand's disease|Von Willebrand's disease +C0042974|T047|AB|286.4|ICD9CM|Von willebrand's disease|Von willebrand's disease +C3648917|T047|HT|286.5|ICD9CM|Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors|Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors +C1096116|T047|AB|286.52|ICD9CM|Acquired hemophilia|Acquired hemophilia +C1096116|T047|PT|286.52|ICD9CM|Acquired hemophilia|Acquired hemophilia +C3161076|T047|PT|286.53|ICD9CM|Antiphospholipid antibody with hemorrhagic disorder|Antiphospholipid antibody with hemorrhagic disorder +C3161076|T047|AB|286.53|ICD9CM|Antiphospholipid w hemor|Antiphospholipid w hemor +C3161077|T047|AB|286.59|ICD9CM|Ot hem d/t circ anticoag|Ot hem d/t circ anticoag +C3161077|T047|PT|286.59|ICD9CM|Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors|Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors +C0012739|T047|AB|286.6|ICD9CM|Defibrination syndrome|Defibrination syndrome +C0012739|T047|PT|286.6|ICD9CM|Defibrination syndrome|Defibrination syndrome +C0001169|T047|AB|286.7|ICD9CM|Acq coagul factor defic|Acq coagul factor defic +C0001169|T047|PT|286.7|ICD9CM|Acquired coagulation factor deficiency|Acquired coagulation factor deficiency +C0029496|T047|AB|286.9|ICD9CM|Coagulat defect NEC/NOS|Coagulat defect NEC/NOS +C0029496|T047|PT|286.9|ICD9CM|Other and unspecified coagulation defects|Other and unspecified coagulation defects +C0154300|T047|HT|287|ICD9CM|Purpura and other hemorrhagic conditions|Purpura and other hemorrhagic conditions +C0034152|T047|AB|287.0|ICD9CM|Allergic purpura|Allergic purpura +C0034152|T047|PT|287.0|ICD9CM|Allergic purpura|Allergic purpura +C0235604|T047|PT|287.1|ICD9CM|Qualitative platelet defects|Qualitative platelet defects +C0235604|T047|AB|287.1|ICD9CM|Thrombocytopathy|Thrombocytopathy +C0029678|T047|PT|287.2|ICD9CM|Other nonthrombocytopenic purpuras|Other nonthrombocytopenic purpuras +C0029678|T047|AB|287.2|ICD9CM|Purpura NOS|Purpura NOS +C0701157|T047|HT|287.3|ICD9CM|Primary thrombocytopenia|Primary thrombocytopenia +C1561830|T047|AB|287.30|ICD9CM|Prim thrombocytopen NOS|Prim thrombocytopen NOS +C1561830|T047|PT|287.30|ICD9CM|Primary thrombocytopenia,unspecified|Primary thrombocytopenia,unspecified +C0398650|T047|AB|287.31|ICD9CM|Immune thrombocyt purpra|Immune thrombocyt purpra +C0398650|T047|PT|287.31|ICD9CM|Immune thrombocytopenic purpura|Immune thrombocytopenic purpura +C0272126|T047|AB|287.32|ICD9CM|Evans' syndrome|Evans' syndrome +C0272126|T047|PT|287.32|ICD9CM|Evans' syndrome|Evans' syndrome +C1561831|T047|AB|287.33|ICD9CM|Cong/herid thromb purpra|Cong/herid thromb purpra +C1561831|T047|PT|287.33|ICD9CM|Congenital and hereditary thrombocytopenic purpura|Congenital and hereditary thrombocytopenic purpura +C0477317|T047|PT|287.39|ICD9CM|Other primary thrombocytopenia|Other primary thrombocytopenia +C0477317|T047|AB|287.39|ICD9CM|Prim thrombocytopen NEC|Prim thrombocytopen NEC +C0154301|T047|HT|287.4|ICD9CM|Secondary thrombocytopenia|Secondary thrombocytopenia +C0398648|T046|PT|287.41|ICD9CM|Posttransfusion purpura|Posttransfusion purpura +C0398648|T046|AB|287.41|ICD9CM|Posttransfusion purpura|Posttransfusion purpura +C2921026|T047|PT|287.49|ICD9CM|Other secondary thrombocytopenia|Other secondary thrombocytopenia +C2921026|T047|AB|287.49|ICD9CM|Sec thrombocytpenia NEC|Sec thrombocytpenia NEC +C0040034|T047|AB|287.5|ICD9CM|Thrombocytopenia NOS|Thrombocytopenia NOS +C0040034|T047|PT|287.5|ICD9CM|Thrombocytopenia, unspecified|Thrombocytopenia, unspecified +C0029804|T046|AB|287.8|ICD9CM|Hemorrhagic cond NEC|Hemorrhagic cond NEC +C0029804|T046|PT|287.8|ICD9CM|Other specified hemorrhagic conditions|Other specified hemorrhagic conditions +C0019087|T047|AB|287.9|ICD9CM|Hemorrhagic cond NOS|Hemorrhagic cond NOS +C0019087|T047|PT|287.9|ICD9CM|Unspecified hemorrhagic conditions|Unspecified hemorrhagic conditions +C0023510|T047|HT|288|ICD9CM|Diseases of white blood cells|Diseases of white blood cells +C0027947|T047|HT|288.0|ICD9CM|Neutropenia|Neutropenia +C0027947|T047|AB|288.00|ICD9CM|Neutropenia NOS|Neutropenia NOS +C0027947|T047|PT|288.00|ICD9CM|Neutropenia, unspecified|Neutropenia, unspecified +C0340970|T019|PT|288.01|ICD9CM|Congenital neutropenia|Congenital neutropenia +C0340970|T019|AB|288.01|ICD9CM|Congenital neutropenia|Congenital neutropenia +C0221023|T047|PT|288.02|ICD9CM|Cyclic neutropenia|Cyclic neutropenia +C0221023|T047|AB|288.02|ICD9CM|Cyclic neutropenia|Cyclic neutropenia +C0272178|T047|PT|288.03|ICD9CM|Drug induced neutropenia|Drug induced neutropenia +C0272178|T047|AB|288.03|ICD9CM|Drug induced neutropenia|Drug induced neutropenia +C0272181|T047|AB|288.04|ICD9CM|Neutropenia d/t infectn|Neutropenia d/t infectn +C0272181|T047|PT|288.04|ICD9CM|Neutropenia due to infection|Neutropenia due to infection +C2873812|T047|AB|288.09|ICD9CM|Neutropenia NEC|Neutropenia NEC +C2873812|T047|PT|288.09|ICD9CM|Other neutropenia|Other neutropenia +C0016808|T047|AB|288.1|ICD9CM|Function dis neutrophils|Function dis neutrophils +C0016808|T047|PT|288.1|ICD9CM|Functional disorders of polymorphonuclear neutrophils|Functional disorders of polymorphonuclear neutrophils +C0017377|T047|PT|288.2|ICD9CM|Genetic anomalies of leukocytes|Genetic anomalies of leukocytes +C0017377|T047|AB|288.2|ICD9CM|Genetic anomaly leukocyt|Genetic anomaly leukocyt +C0014457|T047|AB|288.3|ICD9CM|Eosinophilia|Eosinophilia +C0014457|T047|PT|288.3|ICD9CM|Eosinophilia|Eosinophilia +C3887558|T047|AB|288.4|ICD9CM|Hemophagocytic syndromes|Hemophagocytic syndromes +C3887558|T047|PT|288.4|ICD9CM|Hemophagocytic syndromes|Hemophagocytic syndromes +C0750394|T033|HT|288.5|ICD9CM|Decreased white blood cell count|Decreased white blood cell count +C0023530|T047|AB|288.50|ICD9CM|Leukocytopenia NOS|Leukocytopenia NOS +C0023530|T047|PT|288.50|ICD9CM|Leukocytopenia, unspecified|Leukocytopenia, unspecified +C0024312|T047|PT|288.51|ICD9CM|Lymphocytopenia|Lymphocytopenia +C0024312|T047|AB|288.51|ICD9CM|Lymphocytopenia|Lymphocytopenia +C1719330|T047|AB|288.59|ICD9CM|Decreased WBC count NEC|Decreased WBC count NEC +C1719330|T047|PT|288.59|ICD9CM|Other decreased white blood cell count|Other decreased white blood cell count +C0750426|T033|HT|288.6|ICD9CM|Elevated white blood cell count|Elevated white blood cell count +C0023518|T047|AB|288.60|ICD9CM|Leukocytosis NOS|Leukocytosis NOS +C0023518|T047|PT|288.60|ICD9CM|Leukocytosis, unspecified|Leukocytosis, unspecified +C1719337|T047|PT|288.61|ICD9CM|Lymphocytosis (symptomatic)|Lymphocytosis (symptomatic) +C1719337|T047|AB|288.61|ICD9CM|Lymphocytosis-symptomatc|Lymphocytosis-symptomatc +C0023501|T047|PT|288.62|ICD9CM|Leukemoid reaction|Leukemoid reaction +C0023501|T047|AB|288.62|ICD9CM|Leukemoid reaction|Leukemoid reaction +C1719340|T047|PT|288.63|ICD9CM|Monocytosis (symptomatic)|Monocytosis (symptomatic) +C1719340|T047|AB|288.63|ICD9CM|Monocytosis-symptomatic|Monocytosis-symptomatic +C0085663|T047|PT|288.64|ICD9CM|Plasmacytosis|Plasmacytosis +C0085663|T047|AB|288.64|ICD9CM|Plasmacytosis|Plasmacytosis +C0702266|T047|PT|288.65|ICD9CM|Basophilia|Basophilia +C0702266|T047|AB|288.65|ICD9CM|Basophilia|Basophilia +C0741439|T047|PT|288.66|ICD9CM|Bandemia|Bandemia +C0741439|T047|AB|288.66|ICD9CM|Bandemia|Bandemia +C1719341|T047|AB|288.69|ICD9CM|Elevated WBC count NEC|Elevated WBC count NEC +C1719341|T047|PT|288.69|ICD9CM|Other elevated white blood cell count|Other elevated white blood cell count +C0477318|T047|PT|288.8|ICD9CM|Other specified disease of white blood cells|Other specified disease of white blood cells +C0477318|T047|AB|288.8|ICD9CM|Wbc disease NEC|Wbc disease NEC +C0023510|T047|PT|288.9|ICD9CM|Unspecified disease of white blood cells|Unspecified disease of white blood cells +C0023510|T047|AB|288.9|ICD9CM|Wbc disease NOS|Wbc disease NOS +C0451639|T047|HT|289|ICD9CM|Other diseases of blood and blood-forming organs|Other diseases of blood and blood-forming organs +C1318533|T047|PT|289.0|ICD9CM|Polycythemia, secondary|Polycythemia, secondary +C1318533|T047|AB|289.0|ICD9CM|Secondary polycythemia|Secondary polycythemia +C0154304|T047|AB|289.1|ICD9CM|Chronic lymphadenitis|Chronic lymphadenitis +C0154304|T047|PT|289.1|ICD9CM|Chronic lymphadenitis|Chronic lymphadenitis +C0025469|T047|AB|289.2|ICD9CM|Mesenteric lymphadenitis|Mesenteric lymphadenitis +C0025469|T047|PT|289.2|ICD9CM|Nonspecific mesenteric lymphadenitis|Nonspecific mesenteric lymphadenitis +C0024207|T047|AB|289.3|ICD9CM|Lymphadenitis NOS|Lymphadenitis NOS +C0024207|T047|PT|289.3|ICD9CM|Lymphadenitis, unspecified, except mesenteric|Lymphadenitis, unspecified, except mesenteric +C0020532|T047|AB|289.4|ICD9CM|Hypersplenism|Hypersplenism +C0020532|T047|PT|289.4|ICD9CM|Hypersplenism|Hypersplenism +C0154305|T047|HT|289.5|ICD9CM|Other diseases of spleen|Other diseases of spleen +C0037997|T047|PT|289.50|ICD9CM|Disease of spleen, unspecified|Disease of spleen, unspecified +C0037997|T047|AB|289.50|ICD9CM|Spleen disease NOS|Spleen disease NOS +C0398661|T047|AB|289.51|ICD9CM|Chr congest splenomegaly|Chr congest splenomegaly +C0398661|T047|PT|289.51|ICD9CM|Chronic congestive splenomegaly|Chronic congestive splenomegaly +C1260402|T047|AB|289.52|ICD9CM|Splenic sequestration|Splenic sequestration +C1260402|T047|PT|289.52|ICD9CM|Splenic sequestration|Splenic sequestration +C0398580|T047|PT|289.53|ICD9CM|Neutropenic splenomegaly|Neutropenic splenomegaly +C0398580|T047|AB|289.53|ICD9CM|Neutropenic splenomegaly|Neutropenic splenomegaly +C0154305|T047|PT|289.59|ICD9CM|Other diseases of spleen|Other diseases of spleen +C0154305|T047|AB|289.59|ICD9CM|Spleen disease NEC|Spleen disease NEC +C0152264|T047|AB|289.6|ICD9CM|Familial polycythemia|Familial polycythemia +C0152264|T047|PT|289.6|ICD9CM|Familial polycythemia|Familial polycythemia +C0025637|T047|AB|289.7|ICD9CM|Methemoglobinemia|Methemoglobinemia +C0025637|T047|PT|289.7|ICD9CM|Methemoglobinemia|Methemoglobinemia +C0029768|T047|HT|289.8|ICD9CM|Other specified diseases of blood and blood-forming organs|Other specified diseases of blood and blood-forming organs +C1260404|T047|AB|289.81|ICD9CM|Prim hypercoagulable st|Prim hypercoagulable st +C1260404|T047|PT|289.81|ICD9CM|Primary hypercoagulable state|Primary hypercoagulable state +C1456282|T047|AB|289.82|ICD9CM|Sec hypercoagulable st|Sec hypercoagulable st +C1456282|T047|PT|289.82|ICD9CM|Secondary hypercoagulable state|Secondary hypercoagulable state +C0026987|T191|PT|289.83|ICD9CM|Myelofibrosis|Myelofibrosis +C0026987|T191|AB|289.83|ICD9CM|Myelofibrosis|Myelofibrosis +C0272285|T047|AB|289.84|ICD9CM|Heparin-indu thrombocyto|Heparin-indu thrombocyto +C0272285|T047|PT|289.84|ICD9CM|Heparin-induced thrombocytopenia (HIT)|Heparin-induced thrombocytopenia (HIT) +C0029768|T047|AB|289.89|ICD9CM|Blood diseases NEC|Blood diseases NEC +C0029768|T047|PT|289.89|ICD9CM|Other specified diseases of blood and blood-forming organs|Other specified diseases of blood and blood-forming organs +C0018939|T047|AB|289.9|ICD9CM|Blood disease NOS|Blood disease NOS +C0018939|T047|PT|289.9|ICD9CM|Unspecified diseases of blood and blood-forming organs|Unspecified diseases of blood and blood-forming organs +C0497327|T048|HT|290|ICD9CM|Dementias|Dementias +C0520473|T048|HT|290-294.99|ICD9CM|ORGANIC PSYCHOTIC CONDITIONS|ORGANIC PSYCHOTIC CONDITIONS +C0033975|T048|HT|290-299.99|ICD9CM|PSYCHOSES|PSYCHOSES +C3161379|T048|HT|290-319.99|ICD9CM|MENTAL, BEHAVIORAL AND NEURODEVELOPMENTAL DISORDERS|MENTAL, BEHAVIORAL AND NEURODEVELOPMENTAL DISORDERS +C3665587|T048|AB|290.0|ICD9CM|Senile dementia uncomp|Senile dementia uncomp +C3665587|T048|PT|290.0|ICD9CM|Senile dementia, uncomplicated|Senile dementia, uncomplicated +C0011265|T048|HT|290.1|ICD9CM|Presenile dementia|Presenile dementia +C0677545|T048|AB|290.10|ICD9CM|Presenile dementia|Presenile dementia +C0677545|T048|PT|290.10|ICD9CM|Presenile dementia, uncomplicated|Presenile dementia, uncomplicated +C0154309|T048|AB|290.11|ICD9CM|Presenile delirium|Presenile delirium +C0154309|T048|PT|290.11|ICD9CM|Presenile dementia with delirium|Presenile dementia with delirium +C0154310|T048|AB|290.12|ICD9CM|Presenile delusion|Presenile delusion +C0154310|T048|PT|290.12|ICD9CM|Presenile dementia with delusional features|Presenile dementia with delusional features +C0338629|T048|PT|290.13|ICD9CM|Presenile dementia with depressive features|Presenile dementia with depressive features +C0338629|T048|AB|290.13|ICD9CM|Presenile depression|Presenile depression +C0859643|T048|HT|290.2|ICD9CM|Senile dementia with delusional or depressive features|Senile dementia with delusional or depressive features +C1269750|T048|AB|290.20|ICD9CM|Senile delusion|Senile delusion +C1269750|T048|PT|290.20|ICD9CM|Senile dementia with delusional features|Senile dementia with delusional features +C0338631|T048|PT|290.21|ICD9CM|Senile dementia with depressive features|Senile dementia with depressive features +C0338631|T048|AB|290.21|ICD9CM|Senile depressive|Senile depressive +C0154315|T048|AB|290.3|ICD9CM|Senile delirium|Senile delirium +C0154315|T048|PT|290.3|ICD9CM|Senile dementia with delirium|Senile dementia with delirium +C0011269|T047|HT|290.4|ICD9CM|Vascular dementia|Vascular dementia +C0236650|T048|PT|290.40|ICD9CM|Vascular dementia, uncomplicated|Vascular dementia, uncomplicated +C0236650|T048|AB|290.40|ICD9CM|Vascular dementia,uncomp|Vascular dementia,uncomp +C0236651|T048|AB|290.41|ICD9CM|Vasc dementia w delirium|Vasc dementia w delirium +C0236651|T048|PT|290.41|ICD9CM|Vascular dementia, with delirium|Vascular dementia, with delirium +C0236652|T048|AB|290.42|ICD9CM|Vasc dementia w delusion|Vasc dementia w delusion +C0236652|T048|PT|290.42|ICD9CM|Vascular dementia, with delusions|Vascular dementia, with delusions +C0236653|T048|AB|290.43|ICD9CM|Vasc dementia w depressn|Vasc dementia w depressn +C0236653|T048|PT|290.43|ICD9CM|Vascular dementia, with depressed mood|Vascular dementia, with depressed mood +C0154319|T048|PT|290.8|ICD9CM|Other specified senile psychotic conditions|Other specified senile psychotic conditions +C0154319|T048|AB|290.8|ICD9CM|Senile psychosis NEC|Senile psychosis NEC +C1457889|T048|AB|290.9|ICD9CM|Senile psychot cond NOS|Senile psychot cond NOS +C1457889|T048|PT|290.9|ICD9CM|Unspecified senile psychotic condition|Unspecified senile psychotic condition +C1456285|T048|HT|291|ICD9CM|Alcohol-induced mental disorders|Alcohol-induced mental disorders +C0001957|T047|PT|291.0|ICD9CM|Alcohol withdrawal delirium|Alcohol withdrawal delirium +C0001957|T047|AB|291.0|ICD9CM|Delirium tremens|Delirium tremens +C0001940|T048|AB|291.1|ICD9CM|Alcohol amnestic disordr|Alcohol amnestic disordr +C0001940|T048|PT|291.1|ICD9CM|Alcohol-induced persisting amnestic disorder|Alcohol-induced persisting amnestic disorder +C0236656|T048|AB|291.2|ICD9CM|Alcohol persist dementia|Alcohol persist dementia +C0236656|T048|PT|291.2|ICD9CM|Alcohol-induced persisting dementia|Alcohol-induced persisting dementia +C0302369|T047|AB|291.3|ICD9CM|Alcoh psy dis w hallucin|Alcoh psy dis w hallucin +C0302369|T047|PT|291.3|ICD9CM|Alcohol-induced psychotic disorder with hallucinations|Alcohol-induced psychotic disorder with hallucinations +C0001950|T048|PT|291.4|ICD9CM|Idiosyncratic alcohol intoxication|Idiosyncratic alcohol intoxication +C0001950|T048|AB|291.4|ICD9CM|Pathologic alcohol intox|Pathologic alcohol intox +C0236658|T048|AB|291.5|ICD9CM|Alcoh psych dis w delus|Alcoh psych dis w delus +C0236658|T048|PT|291.5|ICD9CM|Alcohol-induced psychotic disorder with delusions|Alcohol-induced psychotic disorder with delusions +C1456283|T048|HT|291.8|ICD9CM|Other specified alcohol-induced mental disorders|Other specified alcohol-induced mental disorders +C0236663|T047|AB|291.81|ICD9CM|Alcohol withdrawal|Alcohol withdrawal +C0236663|T047|PT|291.81|ICD9CM|Alcohol withdrawal|Alcohol withdrawal +C0236662|T048|AB|291.82|ICD9CM|Alcoh induce sleep disor|Alcoh induce sleep disor +C0236662|T048|PT|291.82|ICD9CM|Alcohol induced sleep disorders|Alcohol induced sleep disorders +C1456283|T048|AB|291.89|ICD9CM|Alcohol mental disor NEC|Alcohol mental disor NEC +C1456283|T048|PT|291.89|ICD9CM|Other alcohol-induced mental disorders|Other alcohol-induced mental disorders +C0033936|T048|AB|291.9|ICD9CM|Alcohol mental disor NOS|Alcohol mental disor NOS +C0033936|T048|PT|291.9|ICD9CM|Unspecified alcohol-induced mental disorders|Unspecified alcohol-induced mental disorders +C0154330|T048|HT|292|ICD9CM|Drug-induced mental disorders|Drug-induced mental disorders +C0152128|T047|AB|292.0|ICD9CM|Drug withdrawal|Drug withdrawal +C0152128|T047|PT|292.0|ICD9CM|Drug withdrawal|Drug withdrawal +C0033937|T048|HT|292.1|ICD9CM|Drug-induced psychotic disorders|Drug-induced psychotic disorders +C1456286|T048|AB|292.11|ICD9CM|Drug psych disor w delus|Drug psych disor w delus +C1456286|T048|PT|292.11|ICD9CM|Drug-induced psychotic disorder with delusions|Drug-induced psychotic disorder with delusions +C1456732|T048|AB|292.12|ICD9CM|Drug psy dis w hallucin|Drug psy dis w hallucin +C1456732|T048|PT|292.12|ICD9CM|Drug-induced psychotic disorder with hallucinations|Drug-induced psychotic disorder with hallucinations +C0152129|T037|AB|292.2|ICD9CM|Pathologic drug intox|Pathologic drug intox +C0152129|T037|PT|292.2|ICD9CM|Pathological drug intoxication|Pathological drug intoxication +C0154325|T048|HT|292.8|ICD9CM|Other specified drug-induced mental disorders|Other specified drug-induced mental disorders +C0154326|T048|AB|292.81|ICD9CM|Drug-induced delirium|Drug-induced delirium +C0154326|T048|PT|292.81|ICD9CM|Drug-induced delirium|Drug-induced delirium +C1456288|T048|AB|292.82|ICD9CM|Drug persisting dementia|Drug persisting dementia +C1456288|T048|PT|292.82|ICD9CM|Drug-induced persisting dementia|Drug-induced persisting dementia +C1456289|T047|AB|292.83|ICD9CM|Drug persist amnestc dis|Drug persist amnestc dis +C1456289|T047|PT|292.83|ICD9CM|Drug-induced persisting amnestic disorder|Drug-induced persisting amnestic disorder +C1998428|T048|AB|292.84|ICD9CM|Drug-induced mood disord|Drug-induced mood disord +C1998428|T048|PT|292.84|ICD9CM|Drug-induced mood disorder|Drug-induced mood disorder +C1456292|T048|AB|292.85|ICD9CM|Drug induced sleep disor|Drug induced sleep disor +C1456292|T048|PT|292.85|ICD9CM|Drug induced sleep disorders|Drug induced sleep disorders +C0154325|T048|AB|292.89|ICD9CM|Drug mental disorder NEC|Drug mental disorder NEC +C0154325|T048|PT|292.89|ICD9CM|Other specified drug-induced mental disorders|Other specified drug-induced mental disorders +C0154330|T048|AB|292.9|ICD9CM|Drug mental disorder NOS|Drug mental disorder NOS +C0154330|T048|PT|292.9|ICD9CM|Unspecified drug-induced mental disorder|Unspecified drug-induced mental disorder +C1456303|T048|HT|293|ICD9CM|Transient mental disorders due to conditions classified elsewhere|Transient mental disorders due to conditions classified elsewhere +C1456296|T048|AB|293.0|ICD9CM|Delirium d/t other cond|Delirium d/t other cond +C1456296|T048|PT|293.0|ICD9CM|Delirium due to conditions classified elsewhere|Delirium due to conditions classified elsewhere +C0154333|T048|AB|293.1|ICD9CM|Subacute delirium|Subacute delirium +C0154333|T048|PT|293.1|ICD9CM|Subacute delirium|Subacute delirium +C1456301|T048|HT|293.8|ICD9CM|Other specified transient mental disorders due to conditions classified elsewhere|Other specified transient mental disorders due to conditions classified elsewhere +C1456297|T048|AB|293.81|ICD9CM|Psy dis w delus oth dis|Psy dis w delus oth dis +C1456297|T048|PT|293.81|ICD9CM|Psychotic disorder with delusions in conditions classified elsewhere|Psychotic disorder with delusions in conditions classified elsewhere +C0029226|T048|AB|293.82|ICD9CM|Psy dis w halluc oth dis|Psy dis w halluc oth dis +C0029226|T048|PT|293.82|ICD9CM|Psychotic disorder with hallucinations in conditions classified elsewhere|Psychotic disorder with hallucinations in conditions classified elsewhere +C1456298|T048|PT|293.83|ICD9CM|Mood disorder in conditions classified elsewhere|Mood disorder in conditions classified elsewhere +C1456298|T048|AB|293.83|ICD9CM|Mood disorder other dis|Mood disorder other dis +C1456299|T048|PT|293.84|ICD9CM|Anxiety disorder in conditions classified elsewhere|Anxiety disorder in conditions classified elsewhere +C1456299|T048|AB|293.84|ICD9CM|Anxiety disorder oth dis|Anxiety disorder oth dis +C0154334|T048|PT|293.89|ICD9CM|Other specified transient mental disorders due to conditions classified elsewhere, other|Other specified transient mental disorders due to conditions classified elsewhere, other +C0154334|T048|AB|293.89|ICD9CM|Transient mental dis NEC|Transient mental dis NEC +C1456302|T048|AB|293.9|ICD9CM|Transient mental dis NOS|Transient mental dis NOS +C1456302|T048|PT|293.9|ICD9CM|Unspecified transient mental disorder in conditions classified elsewhere|Unspecified transient mental disorder in conditions classified elsewhere +C0154336|T048|HT|294|ICD9CM|Persistent mental disorders due to conditions classified elsewhere|Persistent mental disorders due to conditions classified elsewhere +C0002625|T048|AB|294.0|ICD9CM|Amnestic disord oth dis|Amnestic disord oth dis +C0002625|T048|PT|294.0|ICD9CM|Amnestic disorder in conditions classified elsewhere|Amnestic disorder in conditions classified elsewhere +C0338632|T048|HT|294.1|ICD9CM|Dementia in conditions classified elsewhere|Dementia in conditions classified elsewhere +C0878691|T047|PT|294.10|ICD9CM|Dementia in conditions classified elsewhere without behavioral disturbance|Dementia in conditions classified elsewhere without behavioral disturbance +C0878691|T047|AB|294.10|ICD9CM|Dementia w/o behav dist|Dementia w/o behav dist +C0878692|T047|PT|294.11|ICD9CM|Dementia in conditions classified elsewhere with behavioral disturbance|Dementia in conditions classified elsewhere with behavioral disturbance +C0878692|T047|AB|294.11|ICD9CM|Dementia w behavior dist|Dementia w behavior dist +C0497327|T048|HT|294.2|ICD9CM|Dementia, unspecified|Dementia, unspecified +C3161078|T048|AB|294.20|ICD9CM|Demen NOS w/o behv dstrb|Demen NOS w/o behv dstrb +C3161078|T048|PT|294.20|ICD9CM|Dementia, unspecified, without behavioral disturbance|Dementia, unspecified, without behavioral disturbance +C3161079|T048|AB|294.21|ICD9CM|Demen NOS w behav distrb|Demen NOS w behav distrb +C3161079|T048|PT|294.21|ICD9CM|Dementia, unspecified, with behavioral disturbance|Dementia, unspecified, with behavioral disturbance +C0154338|T048|AB|294.8|ICD9CM|Mental disor NEC oth dis|Mental disor NEC oth dis +C0154338|T048|PT|294.8|ICD9CM|Other persistent mental disorders due to conditions classified elsewhere|Other persistent mental disorders due to conditions classified elsewhere +C1456428|T048|AB|294.9|ICD9CM|Mental disor NOS oth dis|Mental disor NOS oth dis +C1456428|T048|PT|294.9|ICD9CM|Unspecified persistent mental disorders due to conditions classified elsewhere|Unspecified persistent mental disorders due to conditions classified elsewhere +C0036341|T048|HT|295|ICD9CM|Schizophrenic disorders|Schizophrenic disorders +C0497333|T048|HT|295-299.99|ICD9CM|OTHER PSYCHOSES|OTHER PSYCHOSES +C0221520|T048|HT|295.0|ICD9CM|Simple type schizophrenia|Simple type schizophrenia +C0221520|T048|AB|295.00|ICD9CM|Simpl schizophren-unspec|Simpl schizophren-unspec +C0221520|T048|PT|295.00|ICD9CM|Simple type schizophrenia, unspecified|Simple type schizophrenia, unspecified +C0154339|T048|AB|295.01|ICD9CM|Simpl schizophren-subchr|Simpl schizophren-subchr +C0154339|T048|PT|295.01|ICD9CM|Simple type schizophrenia, subchronic|Simple type schizophrenia, subchronic +C0154340|T048|AB|295.02|ICD9CM|Simple schizophren-chr|Simple schizophren-chr +C0154340|T048|PT|295.02|ICD9CM|Simple type schizophrenia, chronic|Simple type schizophrenia, chronic +C0154341|T048|AB|295.03|ICD9CM|Simp schiz-subchr/exacer|Simp schiz-subchr/exacer +C0154341|T048|PT|295.03|ICD9CM|Simple type schizophrenia, subchronic with acute exacerbation|Simple type schizophrenia, subchronic with acute exacerbation +C0154342|T048|AB|295.04|ICD9CM|Simpl schizo-chr/exacerb|Simpl schizo-chr/exacerb +C0154342|T048|PT|295.04|ICD9CM|Simple type schizophrenia, chronic with acute exacerbation|Simple type schizophrenia, chronic with acute exacerbation +C0154343|T048|AB|295.05|ICD9CM|Simpl schizophren-remiss|Simpl schizophren-remiss +C0154343|T048|PT|295.05|ICD9CM|Simple type schizophrenia, in remission|Simple type schizophrenia, in remission +C0036347|T048|HT|295.1|ICD9CM|Disorganized type schizophrenia|Disorganized type schizophrenia +C0375157|T048|PT|295.10|ICD9CM|Disorganized type schizophrenia, unspecified|Disorganized type schizophrenia, unspecified +C0375157|T048|AB|295.10|ICD9CM|Hebephrenia-unspec|Hebephrenia-unspec +C0154344|T048|PT|295.11|ICD9CM|Disorganized type schizophrenia, subchronic|Disorganized type schizophrenia, subchronic +C0154344|T048|AB|295.11|ICD9CM|Hebephrenia-subchronic|Hebephrenia-subchronic +C0154345|T048|PT|295.12|ICD9CM|Disorganized type schizophrenia, chronic|Disorganized type schizophrenia, chronic +C0154345|T048|AB|295.12|ICD9CM|Hebephrenia-chronic|Hebephrenia-chronic +C0154346|T048|PT|295.13|ICD9CM|Disorganized type schizophrenia, subchronic with acute exacerbation|Disorganized type schizophrenia, subchronic with acute exacerbation +C0154346|T048|AB|295.13|ICD9CM|Hebephren-subchr/exacerb|Hebephren-subchr/exacerb +C0154347|T048|PT|295.14|ICD9CM|Disorganized type schizophrenia, chronic with acute exacerbation|Disorganized type schizophrenia, chronic with acute exacerbation +C0154347|T048|AB|295.14|ICD9CM|Hebephrenia-chr/exacerb|Hebephrenia-chr/exacerb +C0270395|T048|PT|295.15|ICD9CM|Disorganized type schizophrenia, in remission|Disorganized type schizophrenia, in remission +C0270395|T048|AB|295.15|ICD9CM|Hebephrenia-remission|Hebephrenia-remission +C0036344|T048|HT|295.2|ICD9CM|Catatonic type schizophrenia|Catatonic type schizophrenia +C0375158|T048|AB|295.20|ICD9CM|Catatonia-unspec|Catatonia-unspec +C0375158|T048|PT|295.20|ICD9CM|Catatonic type schizophrenia, unspecified|Catatonic type schizophrenia, unspecified +C0154349|T048|AB|295.21|ICD9CM|Catatonia-subchronic|Catatonia-subchronic +C0154349|T048|PT|295.21|ICD9CM|Catatonic type schizophrenia, subchronic|Catatonic type schizophrenia, subchronic +C0154350|T048|AB|295.22|ICD9CM|Catatonia-chronic|Catatonia-chronic +C0154350|T048|PT|295.22|ICD9CM|Catatonic type schizophrenia, chronic|Catatonic type schizophrenia, chronic +C0154351|T048|AB|295.23|ICD9CM|Catatonia-subchr/exacerb|Catatonia-subchr/exacerb +C0154351|T048|PT|295.23|ICD9CM|Catatonic type schizophrenia, subchronic with acute exacerbation|Catatonic type schizophrenia, subchronic with acute exacerbation +C0154352|T048|AB|295.24|ICD9CM|Catatonia-chr/exacerb|Catatonia-chr/exacerb +C0154352|T048|PT|295.24|ICD9CM|Catatonic type schizophrenia, chronic with acute exacerbation|Catatonic type schizophrenia, chronic with acute exacerbation +C0270390|T048|AB|295.25|ICD9CM|Catatonia-remission|Catatonia-remission +C0270390|T048|PT|295.25|ICD9CM|Catatonic type schizophrenia, in remission|Catatonic type schizophrenia, in remission +C0036349|T048|HT|295.3|ICD9CM|Paranoid type schizophrenia|Paranoid type schizophrenia +C0036349|T048|AB|295.30|ICD9CM|Paranoid schizo-unspec|Paranoid schizo-unspec +C0036349|T048|PT|295.30|ICD9CM|Paranoid type schizophrenia, unspecified|Paranoid type schizophrenia, unspecified +C0154354|T048|AB|295.31|ICD9CM|Paranoid schizo-subchr|Paranoid schizo-subchr +C0154354|T048|PT|295.31|ICD9CM|Paranoid type schizophrenia, subchronic|Paranoid type schizophrenia, subchronic +C0270398|T048|AB|295.32|ICD9CM|Paranoid schizo-chronic|Paranoid schizo-chronic +C0270398|T048|PT|295.32|ICD9CM|Paranoid type schizophrenia, chronic|Paranoid type schizophrenia, chronic +C0154356|T048|AB|295.33|ICD9CM|Paran schizo-subchr/exac|Paran schizo-subchr/exac +C0154356|T048|PT|295.33|ICD9CM|Paranoid type schizophrenia, subchronic with acute exacerbation|Paranoid type schizophrenia, subchronic with acute exacerbation +C0154357|T048|AB|295.34|ICD9CM|Paran schizo-chr/exacerb|Paran schizo-chr/exacerb +C0154357|T048|PT|295.34|ICD9CM|Paranoid type schizophrenia, chronic with acute exacerbation|Paranoid type schizophrenia, chronic with acute exacerbation +C0154358|T048|AB|295.35|ICD9CM|Paranoid schizo-remiss|Paranoid schizo-remiss +C0154358|T048|PT|295.35|ICD9CM|Paranoid type schizophrenia, in remission|Paranoid type schizophrenia, in remission +C0036358|T048|HT|295.4|ICD9CM|Schizophreniform disorder|Schizophreniform disorder +C0813173|T048|AB|295.40|ICD9CM|Schizophreniform dis NOS|Schizophreniform dis NOS +C0813173|T048|PT|295.40|ICD9CM|Schizophreniform disorder, unspecified|Schizophreniform disorder, unspecified +C0154360|T048|AB|295.41|ICD9CM|Schizophrenic dis-subchr|Schizophrenic dis-subchr +C0154360|T048|PT|295.41|ICD9CM|Schizophreniform disorder, subchronic|Schizophreniform disorder, subchronic +C0154361|T048|AB|295.42|ICD9CM|Schizophren dis-chronic|Schizophren dis-chronic +C0154361|T048|PT|295.42|ICD9CM|Schizophreniform disorder, chronic|Schizophreniform disorder, chronic +C0154362|T048|AB|295.43|ICD9CM|Schizo dis-subchr/exacer|Schizo dis-subchr/exacer +C0154362|T048|PT|295.43|ICD9CM|Schizophreniform disorder, subchronic with acute exacerbation|Schizophreniform disorder, subchronic with acute exacerbation +C0154363|T048|AB|295.44|ICD9CM|Schizophr dis-chr/exacer|Schizophr dis-chr/exacer +C0154363|T048|PT|295.44|ICD9CM|Schizophreniform disorder, chronic with acute exacerbation|Schizophreniform disorder, chronic with acute exacerbation +C0154364|T048|AB|295.45|ICD9CM|Schizophrenic dis-remiss|Schizophrenic dis-remiss +C0154364|T048|PT|295.45|ICD9CM|Schizophreniform disorder, in remission|Schizophreniform disorder, in remission +C0023105|T048|HT|295.5|ICD9CM|Latent schizophrenia|Latent schizophrenia +C0023105|T048|AB|295.50|ICD9CM|Latent schizophren-unsp|Latent schizophren-unsp +C0023105|T048|PT|295.50|ICD9CM|Latent schizophrenia, unspecified|Latent schizophrenia, unspecified +C0338810|T048|AB|295.51|ICD9CM|Lat schizophren-subchr|Lat schizophren-subchr +C0338810|T048|PT|295.51|ICD9CM|Latent schizophrenia, subchronic|Latent schizophrenia, subchronic +C0338811|T047|AB|295.52|ICD9CM|Latent schizophren-chr|Latent schizophren-chr +C0338811|T047|PT|295.52|ICD9CM|Latent schizophrenia, chronic|Latent schizophrenia, chronic +C0338812|T048|AB|295.53|ICD9CM|Lat schizo-subchr/exacer|Lat schizo-subchr/exacer +C0338812|T048|PT|295.53|ICD9CM|Latent schizophrenia, subchronic with acute exacerbation|Latent schizophrenia, subchronic with acute exacerbation +C0338813|T048|AB|295.54|ICD9CM|Latent schizo-chr/exacer|Latent schizo-chr/exacer +C0338813|T048|PT|295.54|ICD9CM|Latent schizophrenia, chronic with acute exacerbation|Latent schizophrenia, chronic with acute exacerbation +C0154369|T048|AB|295.55|ICD9CM|Lat schizophren-remiss|Lat schizophren-remiss +C0154369|T048|PT|295.55|ICD9CM|Latent schizophrenia, in remission|Latent schizophrenia, in remission +C0036351|T048|HT|295.6|ICD9CM|Residual type schizophrenic disorders|Residual type schizophrenic disorders +C0036351|T048|AB|295.60|ICD9CM|Schizophr dis resid NOS|Schizophr dis resid NOS +C0036351|T048|PT|295.60|ICD9CM|Schizophrenic disorders, residual type, unspecified|Schizophrenic disorders, residual type, unspecified +C0270406|T048|AB|295.61|ICD9CM|Schizoph dis resid-subch|Schizoph dis resid-subch +C0270406|T048|PT|295.61|ICD9CM|Schizophrenic disorders, residual type, subchronic|Schizophrenic disorders, residual type, subchronic +C0270408|T048|AB|295.62|ICD9CM|Schizophr dis resid-chr|Schizophr dis resid-chr +C0270408|T048|PT|295.62|ICD9CM|Schizophrenic disorders, residual type, chronic|Schizophrenic disorders, residual type, chronic +C0154372|T048|AB|295.63|ICD9CM|Schizo resid subchr/exac|Schizo resid subchr/exac +C0154372|T048|PT|295.63|ICD9CM|Schizophrenic disorders, residual type, subchronic with acute exacerbation|Schizophrenic disorders, residual type, subchronic with acute exacerbation +C0154373|T048|AB|295.64|ICD9CM|Schizoph resid-chro/exac|Schizoph resid-chro/exac +C0154373|T048|PT|295.64|ICD9CM|Schizophrenic disorders, residual type, chronic with acute exacerbation|Schizophrenic disorders, residual type, chronic with acute exacerbation +C0154374|T048|AB|295.65|ICD9CM|Schizoph dis resid-remis|Schizoph dis resid-remis +C0154374|T048|PT|295.65|ICD9CM|Schizophrenic disorders, residual type, in remission|Schizophrenic disorders, residual type, in remission +C0036337|T048|HT|295.7|ICD9CM|Schizoaffective disorder|Schizoaffective disorder +C0375162|T048|AB|295.70|ICD9CM|Schizoaffective dis NOS|Schizoaffective dis NOS +C0375162|T048|PT|295.70|ICD9CM|Schizoaffective disorder, unspecified|Schizoaffective disorder, unspecified +C0154375|T048|PT|295.71|ICD9CM|Schizoaffective disorder, subchronic|Schizoaffective disorder, subchronic +C0154375|T048|AB|295.71|ICD9CM|Schizoaffectv dis-subchr|Schizoaffectv dis-subchr +C0154376|T048|AB|295.72|ICD9CM|Schizoaffective dis-chr|Schizoaffective dis-chr +C0154376|T048|PT|295.72|ICD9CM|Schizoaffective disorder, chronic|Schizoaffective disorder, chronic +C0154377|T048|AB|295.73|ICD9CM|Schizoaff dis-subch/exac|Schizoaff dis-subch/exac +C0154377|T048|PT|295.73|ICD9CM|Schizoaffective disorder, subchronic with acute exacerbation|Schizoaffective disorder, subchronic with acute exacerbation +C0154378|T048|PT|295.74|ICD9CM|Schizoaffective disorder, chronic with acute exacerbation|Schizoaffective disorder, chronic with acute exacerbation +C0154378|T048|AB|295.74|ICD9CM|Schizoafftv dis-chr/exac|Schizoafftv dis-chr/exac +C0338828|T048|PT|295.75|ICD9CM|Schizoaffective disorder, in remission|Schizoaffective disorder, in remission +C0338828|T048|AB|295.75|ICD9CM|Schizoaffectve dis-remis|Schizoaffectve dis-remis +C0029838|T048|HT|295.8|ICD9CM|Other specified types of schizophrenia|Other specified types of schizophrenia +C0029838|T048|PT|295.80|ICD9CM|Other specified types of schizophrenia, unspecified|Other specified types of schizophrenia, unspecified +C0029838|T048|AB|295.80|ICD9CM|Schizophrenia NEC-unspec|Schizophrenia NEC-unspec +C0154380|T048|PT|295.81|ICD9CM|Other specified types of schizophrenia, subchronic|Other specified types of schizophrenia, subchronic +C0154380|T048|AB|295.81|ICD9CM|Schizophrenia NEC-subchr|Schizophrenia NEC-subchr +C0154381|T048|PT|295.82|ICD9CM|Other specified types of schizophrenia, chronic|Other specified types of schizophrenia, chronic +C0154381|T048|AB|295.82|ICD9CM|Schizophrenia NEC-chr|Schizophrenia NEC-chr +C0154382|T048|PT|295.83|ICD9CM|Other specified types of schizophrenia, subchronic with acute exacerbation|Other specified types of schizophrenia, subchronic with acute exacerbation +C0154382|T048|AB|295.83|ICD9CM|Schizo NEC-subchr/exacer|Schizo NEC-subchr/exacer +C0154383|T048|PT|295.84|ICD9CM|Other specified types of schizophrenia, chronic with acute exacerbation|Other specified types of schizophrenia, chronic with acute exacerbation +C0154383|T048|AB|295.84|ICD9CM|Schizo NEC-chr/exacerb|Schizo NEC-chr/exacerb +C0154384|T048|PT|295.85|ICD9CM|Other specified types of schizophrenia, in remission|Other specified types of schizophrenia, in remission +C0154384|T048|AB|295.85|ICD9CM|Schizophrenia NEC-remiss|Schizophrenia NEC-remiss +C0036341|T048|HT|295.9|ICD9CM|Unspecified schizophrenia|Unspecified schizophrenia +C0036341|T048|AB|295.90|ICD9CM|Schizophrenia NOS-unspec|Schizophrenia NOS-unspec +C0036341|T048|PT|295.90|ICD9CM|Unspecified schizophrenia, unspecified|Unspecified schizophrenia, unspecified +C0270381|T048|AB|295.91|ICD9CM|Schizophrenia NOS-subchr|Schizophrenia NOS-subchr +C0270381|T048|PT|295.91|ICD9CM|Unspecified schizophrenia, subchronic|Unspecified schizophrenia, subchronic +C0270403|T048|AB|295.92|ICD9CM|Schizophrenia NOS-chr|Schizophrenia NOS-chr +C0270403|T048|PT|295.92|ICD9CM|Unspecified schizophrenia, chronic|Unspecified schizophrenia, chronic +C0154387|T048|AB|295.93|ICD9CM|Schizo NOS-subchr/exacer|Schizo NOS-subchr/exacer +C0154387|T048|PT|295.93|ICD9CM|Unspecified schizophrenia, subchronic with acute exacerbation|Unspecified schizophrenia, subchronic with acute exacerbation +C0154388|T048|AB|295.94|ICD9CM|Schizo NOS-chr/exacerb|Schizo NOS-chr/exacerb +C0154388|T048|PT|295.94|ICD9CM|Unspecified schizophrenia, chronic with acute exacerbation|Unspecified schizophrenia, chronic with acute exacerbation +C0270384|T048|AB|295.95|ICD9CM|Schizophrenia NOS-remiss|Schizophrenia NOS-remiss +C0270384|T048|PT|295.95|ICD9CM|Unspecified schizophrenia, in remission|Unspecified schizophrenia, in remission +C1456434|T048|HT|296|ICD9CM|Episodic mood disorders|Episodic mood disorders +C0236756|T048|HT|296.0|ICD9CM|Bipolar I disorder, single manic episode|Bipolar I disorder, single manic episode +C0236756|T048|AB|296.00|ICD9CM|Bipol I single manic NOS|Bipol I single manic NOS +C0236756|T048|PT|296.00|ICD9CM|Bipolar I disorder, single manic episode, unspecified|Bipolar I disorder, single manic episode, unspecified +C0236757|T048|AB|296.01|ICD9CM|Bipol I single manc-mild|Bipol I single manc-mild +C0236757|T048|PT|296.01|ICD9CM|Bipolar I disorder, single manic episode, mild|Bipolar I disorder, single manic episode, mild +C0236758|T048|AB|296.02|ICD9CM|Bipol I single manic-mod|Bipol I single manic-mod +C0236758|T048|PT|296.02|ICD9CM|Bipolar I disorder, single manic episode, moderate|Bipolar I disorder, single manic episode, moderate +C0154392|T048|AB|296.03|ICD9CM|Bipol I sing-sev w/o psy|Bipol I sing-sev w/o psy +C0154392|T048|PT|296.03|ICD9CM|Bipolar I disorder, single manic episode, severe, without mention of psychotic behavior|Bipolar I disorder, single manic episode, severe, without mention of psychotic behavior +C0154393|T048|AB|296.04|ICD9CM|Bipo I sin man-sev w psy|Bipo I sin man-sev w psy +C0154393|T048|PT|296.04|ICD9CM|Bipolar I disorder, single manic episode, severe, specified as with psychotic behavior|Bipolar I disorder, single manic episode, severe, specified as with psychotic behavior +C0338843|T048|AB|296.05|ICD9CM|Bipol I sing man rem NOS|Bipol I sing man rem NOS +C0338843|T048|PT|296.05|ICD9CM|Bipolar I disorder, single manic episode, in partial or unspecified remission|Bipolar I disorder, single manic episode, in partial or unspecified remission +C0236762|T048|AB|296.06|ICD9CM|Bipol I single manic rem|Bipol I single manic rem +C0236762|T048|PT|296.06|ICD9CM|Bipolar I disorder, single manic episode, in full remission|Bipolar I disorder, single manic episode, in full remission +C0338832|T048|HT|296.1|ICD9CM|Manic disorder, recurrent episode|Manic disorder, recurrent episode +C0375164|T048|PT|296.10|ICD9CM|Manic affective disorder, recurrent episode, unspecified|Manic affective disorder, recurrent episode, unspecified +C0375164|T048|AB|296.10|ICD9CM|Recur manic dis-unspec|Recur manic dis-unspec +C0154397|T048|PT|296.11|ICD9CM|Manic affective disorder, recurrent episode, mild|Manic affective disorder, recurrent episode, mild +C0154397|T048|AB|296.11|ICD9CM|Recur manic dis-mild|Recur manic dis-mild +C0154398|T048|PT|296.12|ICD9CM|Manic affective disorder, recurrent episode, moderate|Manic affective disorder, recurrent episode, moderate +C0154398|T048|AB|296.12|ICD9CM|Recur manic dis-mod|Recur manic dis-mod +C0154399|T048|PT|296.13|ICD9CM|Manic affective disorder, recurrent episode, severe, without mention of psychotic behavior|Manic affective disorder, recurrent episode, severe, without mention of psychotic behavior +C0154399|T048|AB|296.13|ICD9CM|Recur manic dis-severe|Recur manic dis-severe +C0154400|T048|PT|296.14|ICD9CM|Manic affective disorder, recurrent episode, severe, specified as with psychotic behavior|Manic affective disorder, recurrent episode, severe, specified as with psychotic behavior +C0154400|T048|AB|296.14|ICD9CM|Recur manic-sev w psycho|Recur manic-sev w psycho +C0338838|T048|PT|296.15|ICD9CM|Manic affective disorder, recurrent episode, in partial or unspecified remission|Manic affective disorder, recurrent episode, in partial or unspecified remission +C0338838|T048|AB|296.15|ICD9CM|Recur manic-part remiss|Recur manic-part remiss +C0338839|T048|PT|296.16|ICD9CM|Manic affective disorder, recurrent episode, in full remission|Manic affective disorder, recurrent episode, in full remission +C0338839|T048|AB|296.16|ICD9CM|Recur manic-full remiss|Recur manic-full remiss +C0024517|T048|HT|296.2|ICD9CM|Major depressive disorder, single episode|Major depressive disorder, single episode +C0024517|T048|AB|296.20|ICD9CM|Depress psychosis-unspec|Depress psychosis-unspec +C0024517|T048|PT|296.20|ICD9CM|Major depressive affective disorder, single episode, unspecified|Major depressive affective disorder, single episode, unspecified +C0154403|T048|AB|296.21|ICD9CM|Depress psychosis-mild|Depress psychosis-mild +C0154403|T048|PT|296.21|ICD9CM|Major depressive affective disorder, single episode, mild|Major depressive affective disorder, single episode, mild +C0154404|T048|AB|296.22|ICD9CM|Depressive psychosis-mod|Depressive psychosis-mod +C0154404|T048|PT|296.22|ICD9CM|Major depressive affective disorder, single episode, moderate|Major depressive affective disorder, single episode, moderate +C0154405|T048|AB|296.23|ICD9CM|Depress psychosis-severe|Depress psychosis-severe +C0154405|T048|PT|296.23|ICD9CM|Major depressive affective disorder, single episode, severe, without mention of psychotic behavior|Major depressive affective disorder, single episode, severe, without mention of psychotic behavior +C0154406|T048|AB|296.24|ICD9CM|Depr psychos-sev w psych|Depr psychos-sev w psych +C0154406|T048|PT|296.24|ICD9CM|Major depressive affective disorder, single episode, severe, specified as with psychotic behavior|Major depressive affective disorder, single episode, severe, specified as with psychotic behavior +C0338886|T048|AB|296.25|ICD9CM|Depr psychos-part remiss|Depr psychos-part remiss +C0338886|T048|PT|296.25|ICD9CM|Major depressive affective disorder, single episode, in partial or unspecified remission|Major depressive affective disorder, single episode, in partial or unspecified remission +C0154408|T048|AB|296.26|ICD9CM|Depr psychos-full remiss|Depr psychos-full remiss +C0154408|T048|PT|296.26|ICD9CM|Major depressive affective disorder, single episode, in full remission|Major depressive affective disorder, single episode, in full remission +C0154409|T048|HT|296.3|ICD9CM|Major depressive disorder, recurrent episode|Major depressive disorder, recurrent episode +C0154409|T048|PT|296.30|ICD9CM|Major depressive affective disorder, recurrent episode, unspecified|Major depressive affective disorder, recurrent episode, unspecified +C0154409|T048|AB|296.30|ICD9CM|Recurr depr psychos-unsp|Recurr depr psychos-unsp +C3665435|T048|PT|296.31|ICD9CM|Major depressive affective disorder, recurrent episode, mild|Major depressive affective disorder, recurrent episode, mild +C3665435|T048|AB|296.31|ICD9CM|Recurr depr psychos-mild|Recurr depr psychos-mild +C0154411|T048|PT|296.32|ICD9CM|Major depressive affective disorder, recurrent episode, moderate|Major depressive affective disorder, recurrent episode, moderate +C0154411|T048|AB|296.32|ICD9CM|Recurr depr psychos-mod|Recurr depr psychos-mod +C0154412|T048|AB|296.33|ICD9CM|Recur depr psych-severe|Recur depr psych-severe +C0154413|T048|PT|296.34|ICD9CM|Major depressive affective disorder, recurrent episode, severe, specified as with psychotic behavior|Major depressive affective disorder, recurrent episode, severe, specified as with psychotic behavior +C0154413|T048|AB|296.34|ICD9CM|Rec depr psych-psychotic|Rec depr psych-psychotic +C0338893|T048|PT|296.35|ICD9CM|Major depressive affective disorder, recurrent episode, in partial or unspecified remission|Major depressive affective disorder, recurrent episode, in partial or unspecified remission +C0338893|T048|AB|296.35|ICD9CM|Recur depr psyc-part rem|Recur depr psyc-part rem +C3665667|T048|PT|296.36|ICD9CM|Major depressive affective disorder, recurrent episode, in full remission|Major depressive affective disorder, recurrent episode, in full remission +C3665667|T048|AB|296.36|ICD9CM|Recur depr psyc-full rem|Recur depr psyc-full rem +C1456304|T048|HT|296.4|ICD9CM|Bipolar I disorder, most recent episode (or current) manic|Bipolar I disorder, most recent episode (or current) manic +C0024713|T048|AB|296.40|ICD9CM|Bipol I currnt manic NOS|Bipol I currnt manic NOS +C0024713|T048|PT|296.40|ICD9CM|Bipolar I disorder, most recent episode (or current) manic, unspecified|Bipolar I disorder, most recent episode (or current) manic, unspecified +C0154417|T048|AB|296.41|ICD9CM|Bipol I curnt manic-mild|Bipol I curnt manic-mild +C0154417|T048|PT|296.41|ICD9CM|Bipolar I disorder, most recent episode (or current) manic, mild|Bipolar I disorder, most recent episode (or current) manic, mild +C0154418|T048|AB|296.42|ICD9CM|Bipol I currnt manic-mod|Bipol I currnt manic-mod +C0154418|T048|PT|296.42|ICD9CM|Bipolar I disorder, most recent episode (or current) manic, moderate|Bipolar I disorder, most recent episode (or current) manic, moderate +C0154419|T048|AB|296.43|ICD9CM|Bipol I manc-sev w/o psy|Bipol I manc-sev w/o psy +C0154420|T048|AB|296.44|ICD9CM|Bipol I manic-sev w psy|Bipol I manic-sev w psy +C0154421|T048|AB|296.45|ICD9CM|Bipol I cur man part rem|Bipol I cur man part rem +C0154421|T048|PT|296.45|ICD9CM|Bipolar I disorder, most recent episode (or current) manic, in partial or unspecified remission|Bipolar I disorder, most recent episode (or current) manic, in partial or unspecified remission +C0154422|T048|AB|296.46|ICD9CM|Bipol I cur man full rem|Bipol I cur man full rem +C0154422|T048|PT|296.46|ICD9CM|Bipolar I disorder, most recent episode (or current) manic, in full remission|Bipolar I disorder, most recent episode (or current) manic, in full remission +C1456305|T048|HT|296.5|ICD9CM|Bipolar I disorder, most recent episode (or current) depressed|Bipolar I disorder, most recent episode (or current) depressed +C0236773|T048|AB|296.50|ICD9CM|Bipol I cur depres NOS|Bipol I cur depres NOS +C0236773|T048|PT|296.50|ICD9CM|Bipolar I disorder, most recent episode (or current) depressed, unspecified|Bipolar I disorder, most recent episode (or current) depressed, unspecified +C0154424|T048|AB|296.51|ICD9CM|Bipol I cur depress-mild|Bipol I cur depress-mild +C0154424|T048|PT|296.51|ICD9CM|Bipolar I disorder, most recent episode (or current) depressed, mild|Bipolar I disorder, most recent episode (or current) depressed, mild +C0154425|T048|AB|296.52|ICD9CM|Bipol I cur depress-mod|Bipol I cur depress-mod +C0154425|T048|PT|296.52|ICD9CM|Bipolar I disorder, most recent episode (or current) depressed, moderate|Bipolar I disorder, most recent episode (or current) depressed, moderate +C0154426|T048|AB|296.53|ICD9CM|Bipol I curr dep w/o psy|Bipol I curr dep w/o psy +C0154427|T048|AB|296.54|ICD9CM|Bipol I currnt dep w psy|Bipol I currnt dep w psy +C0154428|T048|AB|296.55|ICD9CM|Bipol I cur dep rem NOS|Bipol I cur dep rem NOS +C0154428|T048|PT|296.55|ICD9CM|Bipolar I disorder, most recent episode (or current) depressed, in partial or unspecified remission|Bipolar I disorder, most recent episode (or current) depressed, in partial or unspecified remission +C0154429|T048|AB|296.56|ICD9CM|Bipol I currnt dep remis|Bipol I currnt dep remis +C0154429|T048|PT|296.56|ICD9CM|Bipolar I disorder, most recent episode (or current) depressed, in full remission|Bipolar I disorder, most recent episode (or current) depressed, in full remission +C1456306|T048|HT|296.6|ICD9CM|Bipolar I disorder, most recent episode (or current) mixed|Bipolar I disorder, most recent episode (or current) mixed +C0236780|T048|AB|296.60|ICD9CM|Bipol I currnt mixed NOS|Bipol I currnt mixed NOS +C0236780|T048|PT|296.60|ICD9CM|Bipolar I disorder, most recent episode (or current) mixed, unspecified|Bipolar I disorder, most recent episode (or current) mixed, unspecified +C2874891|T048|AB|296.61|ICD9CM|Bipol I currnt mix-mild|Bipol I currnt mix-mild +C2874891|T048|PT|296.61|ICD9CM|Bipolar I disorder, most recent episode (or current) mixed, mild|Bipolar I disorder, most recent episode (or current) mixed, mild +C2874892|T048|AB|296.62|ICD9CM|Bipol I currnt mixed-mod|Bipol I currnt mixed-mod +C2874892|T048|PT|296.62|ICD9CM|Bipolar I disorder, most recent episode (or current) mixed, moderate|Bipolar I disorder, most recent episode (or current) mixed, moderate +C0154432|T048|AB|296.63|ICD9CM|Bipol I cur mix w/o psy|Bipol I cur mix w/o psy +C0154433|T048|AB|296.64|ICD9CM|Bipol I cur mixed w psy|Bipol I cur mixed w psy +C0154434|T048|AB|296.65|ICD9CM|Bipol I cur mix-part rem|Bipol I cur mix-part rem +C0154434|T048|PT|296.65|ICD9CM|Bipolar I disorder, most recent episode (or current) mixed, in partial or unspecified remission|Bipolar I disorder, most recent episode (or current) mixed, in partial or unspecified remission +C0270434|T048|AB|296.66|ICD9CM|Bipol I cur mixed remiss|Bipol I cur mixed remiss +C0270434|T048|PT|296.66|ICD9CM|Bipolar I disorder, most recent episode (or current) mixed, in full remission|Bipolar I disorder, most recent episode (or current) mixed, in full remission +C1456307|T048|PT|296.7|ICD9CM|Bipolar I disorder, most recent episode (or current) unspecified|Bipolar I disorder, most recent episode (or current) unspecified +C1456307|T048|AB|296.7|ICD9CM|Bipolor I current NOS|Bipolor I current NOS +C1456309|T048|HT|296.8|ICD9CM|Other and unspecified bipolar disorders|Other and unspecified bipolar disorders +C0005586|T048|AB|296.80|ICD9CM|Bipolar disorder NOS|Bipolar disorder NOS +C0005586|T048|PT|296.80|ICD9CM|Bipolar disorder, unspecified|Bipolar disorder, unspecified +C0154436|T048|AB|296.81|ICD9CM|Atypical manic disorder|Atypical manic disorder +C0154436|T048|PT|296.81|ICD9CM|Atypical manic disorder|Atypical manic disorder +C0154437|T048|AB|296.82|ICD9CM|Atypical depressive dis|Atypical depressive dis +C0154437|T048|PT|296.82|ICD9CM|Atypical depressive disorder|Atypical depressive disorder +C1456308|T048|AB|296.89|ICD9CM|Bipolar disorder NEC|Bipolar disorder NEC +C1456308|T048|PT|296.89|ICD9CM|Other bipolar disorders|Other bipolar disorders +C1456311|T048|HT|296.9|ICD9CM|Other and unspecified episodic mood disorder|Other and unspecified episodic mood disorder +C1456434|T048|AB|296.90|ICD9CM|Episodic mood disord NOS|Episodic mood disord NOS +C1456434|T048|PT|296.90|ICD9CM|Unspecified episodic mood disorder|Unspecified episodic mood disorder +C1456310|T048|AB|296.99|ICD9CM|Episodic mood disord NEC|Episodic mood disord NEC +C1456310|T048|PT|296.99|ICD9CM|Other specified episodic mood disorder|Other specified episodic mood disorder +C1456783|T048|HT|297|ICD9CM|Paranoid states (Delusional disorders)|Paranoid states (Delusional disorders) +C0154440|T048|AB|297.0|ICD9CM|Paranoid state, simple|Paranoid state, simple +C0154440|T048|PT|297.0|ICD9CM|Paranoid state, simple|Paranoid state, simple +C0011251|T048|AB|297.1|ICD9CM|Delusional disorder|Delusional disorder +C0011251|T048|PT|297.1|ICD9CM|Delusional disorder|Delusional disorder +C0030484|T048|AB|297.2|ICD9CM|Paraphrenia|Paraphrenia +C0030484|T048|PT|297.2|ICD9CM|Paraphrenia|Paraphrenia +C0036939|T048|AB|297.3|ICD9CM|Shared psychotic disord|Shared psychotic disord +C0036939|T048|PT|297.3|ICD9CM|Shared psychotic disorder|Shared psychotic disorder +C0154441|T048|PT|297.8|ICD9CM|Other specified paranoid states|Other specified paranoid states +C0154441|T048|AB|297.8|ICD9CM|Paranoid states NEC|Paranoid states NEC +C1456786|T048|AB|297.9|ICD9CM|Paranoid state NOS|Paranoid state NOS +C1456786|T048|PT|297.9|ICD9CM|Unspecified paranoid state|Unspecified paranoid state +C0154442|T048|HT|298|ICD9CM|Other nonorganic psychoses|Other nonorganic psychoses +C3665340|T048|PT|298.0|ICD9CM|Depressive type psychosis|Depressive type psychosis +C3665340|T048|AB|298.0|ICD9CM|React depress psychosis|React depress psychosis +C0338930|T048|AB|298.1|ICD9CM|Excitativ type psychosis|Excitativ type psychosis +C0338930|T048|PT|298.1|ICD9CM|Excitative type psychosis|Excitative type psychosis +C0152124|T048|AB|298.2|ICD9CM|Reactive confusion|Reactive confusion +C0152124|T048|PT|298.2|ICD9CM|Reactive confusion|Reactive confusion +C0152125|T048|AB|298.3|ICD9CM|Acute paranoid reaction|Acute paranoid reaction +C0152125|T048|PT|298.3|ICD9CM|Acute paranoid reaction|Acute paranoid reaction +C0152126|T048|AB|298.4|ICD9CM|Psychogen paranoid psych|Psychogen paranoid psych +C0152126|T048|PT|298.4|ICD9CM|Psychogenic paranoid psychosis|Psychogenic paranoid psychosis +C0029516|T048|PT|298.8|ICD9CM|Other and unspecified reactive psychosis|Other and unspecified reactive psychosis +C0029516|T048|AB|298.8|ICD9CM|React psychosis NEC/NOS|React psychosis NEC/NOS +C0033975|T048|AB|298.9|ICD9CM|Psychosis NOS|Psychosis NOS +C0033975|T048|PT|298.9|ICD9CM|Unspecified psychosis|Unspecified psychosis +C0524528|T048|HT|299|ICD9CM|Pervasive developmental disorders|Pervasive developmental disorders +C0004352|T048|HT|299.0|ICD9CM|Autistic disorder|Autistic disorder +C0154446|T048|AB|299.00|ICD9CM|Autistic disord-current|Autistic disord-current +C0154446|T048|PT|299.00|ICD9CM|Autistic disorder, current or active state|Autistic disorder, current or active state +C0338984|T048|AB|299.01|ICD9CM|Autistic disord-residual|Autistic disord-residual +C0338984|T048|PT|299.01|ICD9CM|Autistic disorder, residual state|Autistic disorder, residual state +C0236791|T048|HT|299.1|ICD9CM|Childhood disintegrative disorder|Childhood disintegrative disorder +C0154448|T048|AB|299.10|ICD9CM|Childhd disintegr-active|Childhd disintegr-active +C0154448|T048|PT|299.10|ICD9CM|Childhood disintegrative disorder, current or active state|Childhood disintegrative disorder, current or active state +C0154449|T048|AB|299.11|ICD9CM|Childhd disintegr-resid|Childhd disintegr-resid +C0154449|T048|PT|299.11|ICD9CM|Childhood disintegrative disorder, residual state|Childhood disintegrative disorder, residual state +C1456313|T048|HT|299.8|ICD9CM|Other specified pervasive developmental disorders|Other specified pervasive developmental disorders +C0154451|T048|PT|299.80|ICD9CM|Other specified pervasive developmental disorders, current or active state|Other specified pervasive developmental disorders, current or active state +C0154451|T048|AB|299.80|ICD9CM|Pervasv dev dis-cur NEC|Pervasv dev dis-cur NEC +C0154452|T048|PT|299.81|ICD9CM|Other specified pervasive developmental disorders, residual state|Other specified pervasive developmental disorders, residual state +C0154452|T048|AB|299.81|ICD9CM|Pervasv dev dis-res NEC|Pervasv dev dis-res NEC +C0524528|T048|HT|299.9|ICD9CM|Unspecified pervasive developmental disorder|Unspecified pervasive developmental disorder +C0154453|T048|AB|299.90|ICD9CM|Pervasv dev dis-cur NOS|Pervasv dev dis-cur NOS +C0154453|T048|PT|299.90|ICD9CM|Unspecified pervasive developmental disorder, current or active state|Unspecified pervasive developmental disorder, current or active state +C0154454|T048|AB|299.91|ICD9CM|Pervasv dev dis-res NOS|Pervasv dev dis-res NOS +C0154454|T048|PT|299.91|ICD9CM|Unspecified pervasive developmental disorder, residual state|Unspecified pervasive developmental disorder, residual state +C1456316|T048|HT|300|ICD9CM|Anxiety, dissociative and somatoform disorders|Anxiety, dissociative and somatoform disorders +C0338608|T048|HT|300-316.99|ICD9CM|NEUROTIC DISORDERS, PERSONALITY DISORDERS, AND OTHER NONPSYCHOTIC MENTAL DISORDERS|NEUROTIC DISORDERS, PERSONALITY DISORDERS, AND OTHER NONPSYCHOTIC MENTAL DISORDERS +C0700613|T048|HT|300.0|ICD9CM|Anxiety states|Anxiety states +C0700613|T048|AB|300.00|ICD9CM|Anxiety state NOS|Anxiety state NOS +C0700613|T048|PT|300.00|ICD9CM|Anxiety state, unspecified|Anxiety state, unspecified +C0236794|T048|AB|300.01|ICD9CM|Panic dis w/o agorphobia|Panic dis w/o agorphobia +C0236794|T048|PT|300.01|ICD9CM|Panic disorder without agoraphobia|Panic disorder without agoraphobia +C0270549|T048|AB|300.02|ICD9CM|Generalized anxiety dis|Generalized anxiety dis +C0270549|T048|PT|300.02|ICD9CM|Generalized anxiety disorder|Generalized anxiety disorder +C0154455|T048|AB|300.09|ICD9CM|Anxiety state NEC|Anxiety state NEC +C0154455|T048|PT|300.09|ICD9CM|Other anxiety states|Other anxiety states +C1456314|T048|HT|300.1|ICD9CM|Dissociative, conversion and factitious disorders|Dissociative, conversion and factitious disorders +C0020701|T048|AB|300.10|ICD9CM|Hysteria NOS|Hysteria NOS +C0020701|T048|PT|300.10|ICD9CM|Hysteria, unspecified|Hysteria, unspecified +C0009946|T048|AB|300.11|ICD9CM|Conversion disorder|Conversion disorder +C0009946|T048|PT|300.11|ICD9CM|Conversion disorder|Conversion disorder +C0236795|T048|AB|300.12|ICD9CM|Dissociative amnesia|Dissociative amnesia +C0236795|T048|PT|300.12|ICD9CM|Dissociative amnesia|Dissociative amnesia +C0020703|T048|AB|300.13|ICD9CM|Dissociative fugue|Dissociative fugue +C0020703|T048|PT|300.13|ICD9CM|Dissociative fugue|Dissociative fugue +C0026773|T048|PT|300.14|ICD9CM|Dissociative identity disorder|Dissociative identity disorder +C0026773|T048|AB|300.14|ICD9CM|Dissociatve identity dis|Dissociatve identity dis +C0012746|T048|PT|300.15|ICD9CM|Dissociative disorder or reaction, unspecified|Dissociative disorder or reaction, unspecified +C0012746|T048|AB|300.15|ICD9CM|Dissociative react NOS|Dissociative react NOS +C0015481|T048|AB|300.16|ICD9CM|Factitious dis w symptom|Factitious dis w symptom +C0015481|T048|PT|300.16|ICD9CM|Factitious disorder with predominantly psychological signs and symptoms|Factitious disorder with predominantly psychological signs and symptoms +C0154456|T048|AB|300.19|ICD9CM|Factitious ill NEC/NOS|Factitious ill NEC/NOS +C0154456|T048|PT|300.19|ICD9CM|Other and unspecified factitious illness|Other and unspecified factitious illness +C0349231|T048|HT|300.2|ICD9CM|Phobic disorders|Phobic disorders +C0349231|T048|AB|300.20|ICD9CM|Phobia NOS|Phobia NOS +C0349231|T048|PT|300.20|ICD9CM|Phobia, unspecified|Phobia, unspecified +C0236800|T048|AB|300.21|ICD9CM|Agoraphobia w panic dis|Agoraphobia w panic dis +C0236800|T048|PT|300.21|ICD9CM|Agoraphobia with panic disorder|Agoraphobia with panic disorder +C0001819|T048|AB|300.22|ICD9CM|Agoraphobia w/o panic|Agoraphobia w/o panic +C0001819|T048|PT|300.22|ICD9CM|Agoraphobia without mention of panic attacks|Agoraphobia without mention of panic attacks +C0031572|T048|AB|300.23|ICD9CM|Social phobia|Social phobia +C0031572|T048|PT|300.23|ICD9CM|Social phobia|Social phobia +C1456315|T048|AB|300.29|ICD9CM|Isolated/spec phobia NEC|Isolated/spec phobia NEC +C1456315|T048|PT|300.29|ICD9CM|Other isolated or specific phobias|Other isolated or specific phobias +C0028768|T048|AB|300.3|ICD9CM|Obsessive-compulsive dis|Obsessive-compulsive dis +C0028768|T048|PT|300.3|ICD9CM|Obsessive-compulsive disorders|Obsessive-compulsive disorders +C0013415|T048|AB|300.4|ICD9CM|Dysthymic disorder|Dysthymic disorder +C0013415|T048|PT|300.4|ICD9CM|Dysthymic disorder|Dysthymic disorder +C0027804|T048|AB|300.5|ICD9CM|Neurasthenia|Neurasthenia +C0027804|T048|PT|300.5|ICD9CM|Neurasthenia|Neurasthenia +C0683416|T048|AB|300.6|ICD9CM|Depersonalization disord|Depersonalization disord +C0683416|T048|PT|300.6|ICD9CM|Depersonalization disorder|Depersonalization disorder +C0020604|T048|AB|300.7|ICD9CM|Hypochondriasis|Hypochondriasis +C0020604|T048|PT|300.7|ICD9CM|Hypochondriasis|Hypochondriasis +C0037650|T048|HT|300.8|ICD9CM|Somatoform disorders|Somatoform disorders +C0520482|T048|AB|300.81|ICD9CM|Somatization disorder|Somatization disorder +C0520482|T048|PT|300.81|ICD9CM|Somatization disorder|Somatization disorder +C0041672|T048|AB|300.82|ICD9CM|Undiff somatoform disrdr|Undiff somatoform disrdr +C0041672|T048|PT|300.82|ICD9CM|Undifferentiated somatoform disorder|Undifferentiated somatoform disorder +C0349249|T048|PT|300.89|ICD9CM|Other somatoform disorders|Other somatoform disorders +C0349249|T048|AB|300.89|ICD9CM|Somatoform disorders NEC|Somatoform disorders NEC +C0041857|T048|AB|300.9|ICD9CM|Nonpsychotic disord NOS|Nonpsychotic disord NOS +C0041857|T048|PT|300.9|ICD9CM|Unspecified nonpsychotic mental disorder|Unspecified nonpsychotic mental disorder +C0031212|T048|HT|301|ICD9CM|Personality disorders|Personality disorders +C0030477|T048|AB|301.0|ICD9CM|Paranoid personality|Paranoid personality +C0030477|T048|PT|301.0|ICD9CM|Paranoid personality disorder|Paranoid personality disorder +C0010598|T048|HT|301.1|ICD9CM|Affective personality disorder|Affective personality disorder +C0010598|T048|AB|301.10|ICD9CM|Affectiv personality NOS|Affectiv personality NOS +C0010598|T048|PT|301.10|ICD9CM|Affective personality disorder, unspecified|Affective personality disorder, unspecified +C0154459|T048|AB|301.11|ICD9CM|Chronic hypomanic person|Chronic hypomanic person +C0154459|T048|PT|301.11|ICD9CM|Chronic hypomanic personality disorder|Chronic hypomanic personality disorder +C3665457|T048|AB|301.12|ICD9CM|Chr depressive person|Chr depressive person +C3665457|T048|PT|301.12|ICD9CM|Chronic depressive personality disorder|Chronic depressive personality disorder +C0010598|T048|AB|301.13|ICD9CM|Cyclothymic disorder|Cyclothymic disorder +C0010598|T048|PT|301.13|ICD9CM|Cyclothymic disorder|Cyclothymic disorder +C0036339|T048|HT|301.2|ICD9CM|Schizoid personality disorder|Schizoid personality disorder +C0036339|T048|PT|301.20|ICD9CM|Schizoid personality disorder, unspecified|Schizoid personality disorder, unspecified +C0036339|T048|AB|301.20|ICD9CM|Schizoid personality NOS|Schizoid personality NOS +C0338969|T048|AB|301.21|ICD9CM|Introverted personality|Introverted personality +C0338969|T048|PT|301.21|ICD9CM|Introverted personality|Introverted personality +C0036363|T048|AB|301.22|ICD9CM|Schizotypal person dis|Schizotypal person dis +C0036363|T048|PT|301.22|ICD9CM|Schizotypal personality disorder|Schizotypal personality disorder +C0152183|T048|AB|301.3|ICD9CM|Explosive personality|Explosive personality +C0152183|T048|PT|301.3|ICD9CM|Explosive personality disorder|Explosive personality disorder +C0009595|T048|AB|301.4|ICD9CM|Obsessive-compulsive dis|Obsessive-compulsive dis +C0009595|T048|PT|301.4|ICD9CM|Obsessive-compulsive personality disorder|Obsessive-compulsive personality disorder +C0019681|T048|HT|301.5|ICD9CM|Histrionic personality disorder|Histrionic personality disorder +C0019681|T048|AB|301.50|ICD9CM|Histrionic person NOS|Histrionic person NOS +C0019681|T048|PT|301.50|ICD9CM|Histrionic personality disorder, unspecified|Histrionic personality disorder, unspecified +C0008682|T048|AB|301.51|ICD9CM|Chr factitious illness|Chr factitious illness +C0008682|T048|PT|301.51|ICD9CM|Chronic factitious illness with physical symptoms|Chronic factitious illness with physical symptoms +C0029633|T048|AB|301.59|ICD9CM|Histrionic person NEC|Histrionic person NEC +C0029633|T048|PT|301.59|ICD9CM|Other histrionic personality disorder|Other histrionic personality disorder +C0011548|T048|AB|301.6|ICD9CM|Dependent personality|Dependent personality +C0011548|T048|PT|301.6|ICD9CM|Dependent personality disorder|Dependent personality disorder +C0003431|T048|AB|301.7|ICD9CM|Antisocial personality|Antisocial personality +C0003431|T048|PT|301.7|ICD9CM|Antisocial personality disorder|Antisocial personality disorder +C0029707|T048|HT|301.8|ICD9CM|Other personality disorders|Other personality disorders +C0027402|T048|AB|301.81|ICD9CM|Narcissistic personality|Narcissistic personality +C0027402|T048|PT|301.81|ICD9CM|Narcissistic personality disorder|Narcissistic personality disorder +C0004444|T048|AB|301.82|ICD9CM|Avoidant personality dis|Avoidant personality dis +C0004444|T048|PT|301.82|ICD9CM|Avoidant personality disorder|Avoidant personality disorder +C0006012|T048|AB|301.83|ICD9CM|Borderline personality|Borderline personality +C0006012|T048|PT|301.83|ICD9CM|Borderline personality disorder|Borderline personality disorder +C0030631|T048|AB|301.84|ICD9CM|Passive-aggressiv person|Passive-aggressiv person +C0030631|T048|PT|301.84|ICD9CM|Passive-aggressive personality|Passive-aggressive personality +C0029707|T048|PT|301.89|ICD9CM|Other personality disorders|Other personality disorders +C0029707|T048|AB|301.89|ICD9CM|Personality disorder NEC|Personality disorder NEC +C0031212|T048|AB|301.9|ICD9CM|Personality disorder NOS|Personality disorder NOS +C0031212|T048|PT|301.9|ICD9CM|Unspecified personality disorder|Unspecified personality disorder +C0236989|T048|HT|302|ICD9CM|Sexual and gender identity disorders|Sexual and gender identity disorders +C0233880|T048|AB|302.0|ICD9CM|Ego-dystonic sex orient|Ego-dystonic sex orient +C0233880|T048|PT|302.0|ICD9CM|Ego-dystonic sexual orientation|Ego-dystonic sexual orientation +C0152186|T048|AB|302.1|ICD9CM|Zoophilia|Zoophilia +C0152186|T048|PT|302.1|ICD9CM|Zoophilia|Zoophilia +C0030764|T048|AB|302.2|ICD9CM|Pedophilia|Pedophilia +C0030764|T048|PT|302.2|ICD9CM|Pedophilia|Pedophilia +C0015269|T048|AB|302.4|ICD9CM|Exhibitionism|Exhibitionism +C0015269|T048|PT|302.4|ICD9CM|Exhibitionism|Exhibitionism +C0236802|T048|PT|302.6|ICD9CM|Gender identity disorder in children|Gender identity disorder in children +C0236802|T048|AB|302.6|ICD9CM|Gendr identity dis-child|Gendr identity dis-child +C3714744|T048|HT|302.7|ICD9CM|Psychosexual dysfunction|Psychosexual dysfunction +C3714744|T048|AB|302.70|ICD9CM|Psychosexual dysfunc NOS|Psychosexual dysfunc NOS +C3714744|T048|PT|302.70|ICD9CM|Psychosexual dysfunction, unspecified|Psychosexual dysfunction, unspecified +C0020594|T048|AB|302.71|ICD9CM|Hypoactive sex desire|Hypoactive sex desire +C0020594|T048|PT|302.71|ICD9CM|Hypoactive sexual desire disorder|Hypoactive sexual desire disorder +C0033950|T048|AB|302.72|ICD9CM|Inhibited sex excitement|Inhibited sex excitement +C0033950|T048|PT|302.72|ICD9CM|Psychosexual dysfunction with inhibited sexual excitement|Psychosexual dysfunction with inhibited sexual excitement +C0033948|T048|AB|302.73|ICD9CM|Female orgasmic disorder|Female orgasmic disorder +C0033948|T048|PT|302.73|ICD9CM|Female orgasmic disorder|Female orgasmic disorder +C1456319|T048|AB|302.74|ICD9CM|Male orgasmic disorder|Male orgasmic disorder +C1456319|T048|PT|302.74|ICD9CM|Male orgasmic disorder|Male orgasmic disorder +C0033038|T048|AB|302.75|ICD9CM|Premature ejaculation|Premature ejaculation +C0033038|T048|PT|302.75|ICD9CM|Premature ejaculation|Premature ejaculation +C0154466|T048|PT|302.76|ICD9CM|Dyspareunia, psychogenic|Dyspareunia, psychogenic +C0154466|T048|AB|302.76|ICD9CM|Dyspareunia,psychogenic|Dyspareunia,psychogenic +C0033951|T048|AB|302.79|ICD9CM|Psychosexual dysfunc NEC|Psychosexual dysfunc NEC +C0033951|T048|PT|302.79|ICD9CM|Psychosexual dysfunction with other specified psychosexual dysfunctions|Psychosexual dysfunction with other specified psychosexual dysfunctions +C0029825|T048|HT|302.8|ICD9CM|Other specified psychosexual disorders|Other specified psychosexual disorders +C0015957|T048|AB|302.81|ICD9CM|Fetishism|Fetishism +C0015957|T048|PT|302.81|ICD9CM|Fetishism|Fetishism +C0042979|T048|AB|302.82|ICD9CM|Voyeurism|Voyeurism +C0042979|T048|PT|302.82|ICD9CM|Voyeurism|Voyeurism +C0036908|T048|AB|302.83|ICD9CM|Sexual masochism|Sexual masochism +C0036908|T048|PT|302.83|ICD9CM|Sexual masochism|Sexual masochism +C0036913|T048|AB|302.84|ICD9CM|Sexual sadism|Sexual sadism +C0036913|T048|PT|302.84|ICD9CM|Sexual sadism|Sexual sadism +C0154467|T048|AB|302.85|ICD9CM|Gend iden dis,adol/adult|Gend iden dis,adol/adult +C0154467|T048|PT|302.85|ICD9CM|Gender identity disorder in adolescents or adults|Gender identity disorder in adolescents or adults +C0029825|T048|PT|302.89|ICD9CM|Other specified psychosexual disorders|Other specified psychosexual disorders +C0029825|T048|AB|302.89|ICD9CM|Psychosexual dis NEC|Psychosexual dis NEC +C0033953|T048|AB|302.9|ICD9CM|Psychosexual dis NOS|Psychosexual dis NOS +C0033953|T048|PT|302.9|ICD9CM|Unspecified psychosexual disorder|Unspecified psychosexual disorder +C0001973|T048|HT|303|ICD9CM|Alcohol dependence syndrome|Alcohol dependence syndrome +C0394996|T048|HT|303.0|ICD9CM|Acute alcoholic intoxication|Acute alcoholic intoxication +C0812429|T048|AB|303.00|ICD9CM|Ac alcohol intox-unspec|Ac alcohol intox-unspec +C0812429|T048|PT|303.00|ICD9CM|Acute alcoholic intoxication in alcoholism, unspecified|Acute alcoholic intoxication in alcoholism, unspecified +C0338787|T048|AB|303.01|ICD9CM|Ac alcohol intox-contin|Ac alcohol intox-contin +C0338787|T048|PT|303.01|ICD9CM|Acute alcoholic intoxication in alcoholism, continuous|Acute alcoholic intoxication in alcoholism, continuous +C0338788|T048|AB|303.02|ICD9CM|Ac alcohol intox-episod|Ac alcohol intox-episod +C0338788|T048|PT|303.02|ICD9CM|Acute alcoholic intoxication in alcoholism, episodic|Acute alcoholic intoxication in alcoholism, episodic +C0154473|T048|AB|303.03|ICD9CM|Ac alcohol intox-remiss|Ac alcohol intox-remiss +C0154473|T048|PT|303.03|ICD9CM|Acute alcoholic intoxication in alcoholism, in remission|Acute alcoholic intoxication in alcoholism, in remission +C0154474|T048|HT|303.9|ICD9CM|Other and unspecified alcohol dependence|Other and unspecified alcohol dependence +C0154474|T048|AB|303.90|ICD9CM|Alcoh dep NEC/NOS-unspec|Alcoh dep NEC/NOS-unspec +C0154474|T048|PT|303.90|ICD9CM|Other and unspecified alcohol dependence, unspecified|Other and unspecified alcohol dependence, unspecified +C0154475|T048|AB|303.91|ICD9CM|Alcoh dep NEC/NOS-contin|Alcoh dep NEC/NOS-contin +C0154475|T048|PT|303.91|ICD9CM|Other and unspecified alcohol dependence, continuous|Other and unspecified alcohol dependence, continuous +C0154476|T048|AB|303.92|ICD9CM|Alcoh dep NEC/NOS-episod|Alcoh dep NEC/NOS-episod +C0154476|T048|PT|303.92|ICD9CM|Other and unspecified alcohol dependence, episodic|Other and unspecified alcohol dependence, episodic +C0154477|T048|AB|303.93|ICD9CM|Alcoh dep NEC/NOS-remiss|Alcoh dep NEC/NOS-remiss +C0154477|T048|PT|303.93|ICD9CM|Other and unspecified alcohol dependence, in remission|Other and unspecified alcohol dependence, in remission +C1510472|T048|HT|304|ICD9CM|Drug dependence|Drug dependence +C0524662|T048|HT|304.0|ICD9CM|Opioid type dependence|Opioid type dependence +C0524662|T048|AB|304.00|ICD9CM|Opioid dependence-unspec|Opioid dependence-unspec +C0524662|T048|PT|304.00|ICD9CM|Opioid type dependence, unspecified|Opioid type dependence, unspecified +C0154478|T048|AB|304.01|ICD9CM|Opioid dependence-contin|Opioid dependence-contin +C0154478|T048|PT|304.01|ICD9CM|Opioid type dependence, continuous|Opioid type dependence, continuous +C0154479|T048|AB|304.02|ICD9CM|Opioid dependence-episod|Opioid dependence-episod +C0154479|T048|PT|304.02|ICD9CM|Opioid type dependence, episodic|Opioid type dependence, episodic +C0154480|T048|AB|304.03|ICD9CM|Opioid dependence-remiss|Opioid dependence-remiss +C0154480|T048|PT|304.03|ICD9CM|Opioid type dependence, in remission|Opioid type dependence, in remission +C0036552|T048|HT|304.1|ICD9CM|Sedative, hypnotic or anxiolytic dependence|Sedative, hypnotic or anxiolytic dependence +C0375172|T048|AB|304.10|ICD9CM|Sed,hyp,anxiolyt dep-NOS|Sed,hyp,anxiolyt dep-NOS +C0375172|T048|PT|304.10|ICD9CM|Sedative, hypnotic or anxiolytic dependence, unspecified|Sedative, hypnotic or anxiolytic dependence, unspecified +C0154482|T048|AB|304.11|ICD9CM|Sed,hyp,anxiolyt dep-con|Sed,hyp,anxiolyt dep-con +C0154482|T048|PT|304.11|ICD9CM|Sedative, hypnotic or anxiolytic dependence, continuous|Sedative, hypnotic or anxiolytic dependence, continuous +C0154483|T048|AB|304.12|ICD9CM|Sed,hyp,anxiolyt dep-epi|Sed,hyp,anxiolyt dep-epi +C0154483|T048|PT|304.12|ICD9CM|Sedative, hypnotic or anxiolytic dependence, episodic|Sedative, hypnotic or anxiolytic dependence, episodic +C2874528|T048|AB|304.13|ICD9CM|Sed,hyp,anxiolyt dep-rem|Sed,hyp,anxiolyt dep-rem +C2874528|T048|PT|304.13|ICD9CM|Sedative, hypnotic or anxiolytic dependence, in remission|Sedative, hypnotic or anxiolytic dependence, in remission +C0600427|T048|HT|304.2|ICD9CM|Cocaine dependence|Cocaine dependence +C0600427|T048|AB|304.20|ICD9CM|Cocaine depend-unspec|Cocaine depend-unspec +C0600427|T048|PT|304.20|ICD9CM|Cocaine dependence, unspecified|Cocaine dependence, unspecified +C0338762|T048|AB|304.21|ICD9CM|Cocaine depend-contin|Cocaine depend-contin +C0338762|T048|PT|304.21|ICD9CM|Cocaine dependence, continuous|Cocaine dependence, continuous +C0338763|T048|AB|304.22|ICD9CM|Cocaine depend-episodic|Cocaine depend-episodic +C0338763|T048|PT|304.22|ICD9CM|Cocaine dependence, episodic|Cocaine dependence, episodic +C0154487|T048|AB|304.23|ICD9CM|Cocaine depend-remiss|Cocaine depend-remiss +C0154487|T048|PT|304.23|ICD9CM|Cocaine dependence, in remission|Cocaine dependence, in remission +C0006870|T048|HT|304.3|ICD9CM|Cannabis dependence|Cannabis dependence +C0375174|T048|AB|304.30|ICD9CM|Cannabis depend-unspec|Cannabis depend-unspec +C0375174|T048|PT|304.30|ICD9CM|Cannabis dependence, unspecified|Cannabis dependence, unspecified +C0338757|T048|AB|304.31|ICD9CM|Cannabis depend-contin|Cannabis depend-contin +C0338757|T048|PT|304.31|ICD9CM|Cannabis dependence, continuous|Cannabis dependence, continuous +C0338758|T048|AB|304.32|ICD9CM|Cannabis depend-episodic|Cannabis depend-episodic +C0338758|T048|PT|304.32|ICD9CM|Cannabis dependence, episodic|Cannabis dependence, episodic +C0154490|T047|AB|304.33|ICD9CM|Cannabis depend-remiss|Cannabis depend-remiss +C0154490|T047|PT|304.33|ICD9CM|Cannabis dependence, in remission|Cannabis dependence, in remission +C0375175|T048|HT|304.4|ICD9CM|Amphetamine and other psychostimulant dependence|Amphetamine and other psychostimulant dependence +C0375175|T048|AB|304.40|ICD9CM|Amphetamin depend-unspec|Amphetamin depend-unspec +C0375175|T048|PT|304.40|ICD9CM|Amphetamine and other psychostimulant dependence, unspecified|Amphetamine and other psychostimulant dependence, unspecified +C0154492|T048|AB|304.41|ICD9CM|Amphetamin depend-contin|Amphetamin depend-contin +C0154492|T048|PT|304.41|ICD9CM|Amphetamine and other psychostimulant dependence, continuous|Amphetamine and other psychostimulant dependence, continuous +C0154493|T048|AB|304.42|ICD9CM|Amphetamin depend-episod|Amphetamin depend-episod +C0154493|T048|PT|304.42|ICD9CM|Amphetamine and other psychostimulant dependence, episodic|Amphetamine and other psychostimulant dependence, episodic +C0154494|T048|AB|304.43|ICD9CM|Amphetamin depend-remiss|Amphetamin depend-remiss +C0154494|T048|PT|304.43|ICD9CM|Amphetamine and other psychostimulant dependence, in remission|Amphetamine and other psychostimulant dependence, in remission +C0018528|T048|HT|304.5|ICD9CM|Hallucinogen dependence|Hallucinogen dependence +C0018528|T048|AB|304.50|ICD9CM|Hallucinogen dep-unspec|Hallucinogen dep-unspec +C0018528|T048|PT|304.50|ICD9CM|Hallucinogen dependence, unspecified|Hallucinogen dependence, unspecified +C0338749|T048|AB|304.51|ICD9CM|Hallucinogen dep-contin|Hallucinogen dep-contin +C0338749|T048|PT|304.51|ICD9CM|Hallucinogen dependence, continuous|Hallucinogen dependence, continuous +C0338750|T048|AB|304.52|ICD9CM|Hallucinogen dep-episod|Hallucinogen dep-episod +C0338750|T048|PT|304.52|ICD9CM|Hallucinogen dependence, episodic|Hallucinogen dependence, episodic +C0154497|T047|AB|304.53|ICD9CM|Hallucinogen dep-remiss|Hallucinogen dep-remiss +C0154497|T047|PT|304.53|ICD9CM|Hallucinogen dependence, in remission|Hallucinogen dependence, in remission +C0029792|T048|HT|304.6|ICD9CM|Other specified drug dependence|Other specified drug dependence +C0029792|T048|AB|304.60|ICD9CM|Drug depend NEC-unspec|Drug depend NEC-unspec +C0029792|T048|PT|304.60|ICD9CM|Other specified drug dependence, unspecified|Other specified drug dependence, unspecified +C0338738|T048|AB|304.61|ICD9CM|Drug depend NEC-contin|Drug depend NEC-contin +C0338738|T048|PT|304.61|ICD9CM|Other specified drug dependence, continuous|Other specified drug dependence, continuous +C0338739|T048|AB|304.62|ICD9CM|Drug depend NEC-episodic|Drug depend NEC-episodic +C0338739|T048|PT|304.62|ICD9CM|Other specified drug dependence, episodic|Other specified drug dependence, episodic +C0154500|T048|AB|304.63|ICD9CM|Drug depend NEC-in rem|Drug depend NEC-in rem +C0154500|T048|PT|304.63|ICD9CM|Other specified drug dependence, in remission|Other specified drug dependence, in remission +C0154501|T048|HT|304.7|ICD9CM|Combinations of opioid type drug with any other drug dependence|Combinations of opioid type drug with any other drug dependence +C0375176|T048|PT|304.70|ICD9CM|Combinations of opioid type drug with any other drug dependence, unspecified|Combinations of opioid type drug with any other drug dependence, unspecified +C0375176|T048|AB|304.70|ICD9CM|Opioid/other dep-unspec|Opioid/other dep-unspec +C0154502|T048|PT|304.71|ICD9CM|Combinations of opioid type drug with any other drug dependence, continuous|Combinations of opioid type drug with any other drug dependence, continuous +C0154502|T048|AB|304.71|ICD9CM|Opioid/other dep-contin|Opioid/other dep-contin +C0154503|T048|PT|304.72|ICD9CM|Combinations of opioid type drug with any other drug dependence, episodic|Combinations of opioid type drug with any other drug dependence, episodic +C0154503|T048|AB|304.72|ICD9CM|Opioid/other dep-episod|Opioid/other dep-episod +C0154504|T048|PT|304.73|ICD9CM|Combinations of opioid type drug with any other drug dependence, in remission|Combinations of opioid type drug with any other drug dependence, in remission +C0154504|T048|AB|304.73|ICD9CM|Opioid/other dep-remiss|Opioid/other dep-remiss +C0154505|T048|HT|304.8|ICD9CM|Combinations of drug dependence excluding opioid type drug|Combinations of drug dependence excluding opioid type drug +C0375177|T048|AB|304.80|ICD9CM|Comb drug dep NEC-unspec|Comb drug dep NEC-unspec +C0375177|T048|PT|304.80|ICD9CM|Combinations of drug dependence excluding opioid type drug, unspecified|Combinations of drug dependence excluding opioid type drug, unspecified +C0154506|T048|AB|304.81|ICD9CM|Comb drug dep NEC-contin|Comb drug dep NEC-contin +C0154506|T048|PT|304.81|ICD9CM|Combinations of drug dependence excluding opioid type drug, continuous|Combinations of drug dependence excluding opioid type drug, continuous +C0154507|T048|AB|304.82|ICD9CM|Comb drug dep NEC-episod|Comb drug dep NEC-episod +C0154507|T048|PT|304.82|ICD9CM|Combinations of drug dependence excluding opioid type drug, episodic|Combinations of drug dependence excluding opioid type drug, episodic +C0154508|T048|AB|304.83|ICD9CM|Comb drug dep NEC-remiss|Comb drug dep NEC-remiss +C0154508|T048|PT|304.83|ICD9CM|Combinations of drug dependence excluding opioid type drug, in remission|Combinations of drug dependence excluding opioid type drug, in remission +C1510472|T048|HT|304.9|ICD9CM|Unspecified drug dependence|Unspecified drug dependence +C0375178|T048|AB|304.90|ICD9CM|Drug depend NOS-unspec|Drug depend NOS-unspec +C0375178|T048|PT|304.90|ICD9CM|Unspecified drug dependence, unspecified|Unspecified drug dependence, unspecified +C0154509|T048|AB|304.91|ICD9CM|Drug depend NOS-contin|Drug depend NOS-contin +C0154509|T048|PT|304.91|ICD9CM|Unspecified drug dependence, continuous|Unspecified drug dependence, continuous +C0154510|T048|AB|304.92|ICD9CM|Drug depend NOS-episodic|Drug depend NOS-episodic +C0154510|T048|PT|304.92|ICD9CM|Unspecified drug dependence, episodic|Unspecified drug dependence, episodic +C0154511|T048|AB|304.93|ICD9CM|Drug depend NOS-remiss|Drug depend NOS-remiss +C0154511|T048|PT|304.93|ICD9CM|Unspecified drug dependence, in remission|Unspecified drug dependence, in remission +C3665497|T048|HT|305|ICD9CM|Nondependent abuse of drugs|Nondependent abuse of drugs +C0085762|T048|HT|305.0|ICD9CM|Alcohol abuse|Alcohol abuse +C0085762|T048|AB|305.00|ICD9CM|Alcohol abuse-unspec|Alcohol abuse-unspec +C0085762|T048|PT|305.00|ICD9CM|Alcohol abuse, unspecified|Alcohol abuse, unspecified +C1812624|T048|AB|305.01|ICD9CM|Alcohol abuse-continuous|Alcohol abuse-continuous +C1812624|T048|PT|305.01|ICD9CM|Alcohol abuse, continuous|Alcohol abuse, continuous +C0154515|T048|AB|305.02|ICD9CM|Alcohol abuse-episodic|Alcohol abuse-episodic +C0154515|T048|PT|305.02|ICD9CM|Alcohol abuse, episodic|Alcohol abuse, episodic +C0154516|T048|AB|305.03|ICD9CM|Alcohol abuse-in remiss|Alcohol abuse-in remiss +C0154516|T048|PT|305.03|ICD9CM|Alcohol abuse, in remission|Alcohol abuse, in remission +C0040336|T048|AB|305.1|ICD9CM|Tobacco use disorder|Tobacco use disorder +C0040336|T048|PT|305.1|ICD9CM|Tobacco use disorder|Tobacco use disorder +C0006868|T048|HT|305.2|ICD9CM|Cannabis abuse|Cannabis abuse +C0375179|T048|AB|305.20|ICD9CM|Cannabis abuse-unspec|Cannabis abuse-unspec +C0375179|T048|PT|305.20|ICD9CM|Cannabis abuse, unspecified|Cannabis abuse, unspecified +C0154520|T048|AB|305.21|ICD9CM|Cannabis abuse-contin|Cannabis abuse-contin +C0154520|T048|PT|305.21|ICD9CM|Cannabis abuse, continuous|Cannabis abuse, continuous +C0154521|T048|AB|305.22|ICD9CM|Cannabis abuse-episodic|Cannabis abuse-episodic +C0154521|T048|PT|305.22|ICD9CM|Cannabis abuse, episodic|Cannabis abuse, episodic +C0154522|T048|AB|305.23|ICD9CM|Cannabis abuse-in remiss|Cannabis abuse-in remiss +C0154522|T048|PT|305.23|ICD9CM|Cannabis abuse, in remission|Cannabis abuse, in remission +C0018526|T048|HT|305.3|ICD9CM|Hallucinogen abuse|Hallucinogen abuse +C0375180|T048|AB|305.30|ICD9CM|Hallucinog abuse-unspec|Hallucinog abuse-unspec +C0375180|T048|PT|305.30|ICD9CM|Hallucinogen abuse, unspecified|Hallucinogen abuse, unspecified +C0154523|T048|AB|305.31|ICD9CM|Hallucinog abuse-contin|Hallucinog abuse-contin +C0154523|T048|PT|305.31|ICD9CM|Hallucinogen abuse, continuous|Hallucinogen abuse, continuous +C0154524|T048|AB|305.32|ICD9CM|Hallucinog abuse-episod|Hallucinog abuse-episod +C0154524|T048|PT|305.32|ICD9CM|Hallucinogen abuse, episodic|Hallucinogen abuse, episodic +C0154525|T048|AB|305.33|ICD9CM|Hallucinog abuse-remiss|Hallucinog abuse-remiss +C0154525|T048|PT|305.33|ICD9CM|Hallucinogen abuse, in remission|Hallucinogen abuse, in remission +C0036550|T048|HT|305.4|ICD9CM|Sedative, hypnotic or anxiolytic abuse|Sedative, hypnotic or anxiolytic abuse +C0375181|T048|AB|305.40|ICD9CM|Sed,hyp,anxiolytc ab-NOS|Sed,hyp,anxiolytc ab-NOS +C0375181|T048|PT|305.40|ICD9CM|Sedative, hypnotic or anxiolytic abuse, unspecified|Sedative, hypnotic or anxiolytic abuse, unspecified +C0154527|T048|AB|305.41|ICD9CM|Sed,hyp,anxiolytc ab-con|Sed,hyp,anxiolytc ab-con +C0154527|T048|PT|305.41|ICD9CM|Sedative, hypnotic or anxiolytic abuse, continuous|Sedative, hypnotic or anxiolytic abuse, continuous +C0154528|T048|AB|305.42|ICD9CM|Sed,hyp,anxiolytc ab-epi|Sed,hyp,anxiolytc ab-epi +C0154528|T048|PT|305.42|ICD9CM|Sedative, hypnotic or anxiolytic abuse, episodic|Sedative, hypnotic or anxiolytic abuse, episodic +C0154529|T048|AB|305.43|ICD9CM|Sed,hyp,anxiolytc ab-rem|Sed,hyp,anxiolytc ab-rem +C0154529|T048|PT|305.43|ICD9CM|Sedative, hypnotic or anxiolytic abuse, in remission|Sedative, hypnotic or anxiolytic abuse, in remission +C0029095|T048|HT|305.5|ICD9CM|Opioid abuse|Opioid abuse +C0375182|T048|AB|305.50|ICD9CM|Opioid abuse-unspec|Opioid abuse-unspec +C0375182|T048|PT|305.50|ICD9CM|Opioid abuse, unspecified|Opioid abuse, unspecified +C0154530|T048|AB|305.51|ICD9CM|Opioid abuse-continuous|Opioid abuse-continuous +C0154530|T048|PT|305.51|ICD9CM|Opioid abuse, continuous|Opioid abuse, continuous +C0154531|T048|AB|305.52|ICD9CM|Opioid abuse-episodic|Opioid abuse-episodic +C0154531|T048|PT|305.52|ICD9CM|Opioid abuse, episodic|Opioid abuse, episodic +C0154532|T048|AB|305.53|ICD9CM|Opioid abuse-in remiss|Opioid abuse-in remiss +C0154532|T048|PT|305.53|ICD9CM|Opioid abuse, in remission|Opioid abuse, in remission +C0009171|T048|HT|305.6|ICD9CM|Cocaine abuse|Cocaine abuse +C0009171|T048|AB|305.60|ICD9CM|Cocaine abuse-unspec|Cocaine abuse-unspec +C0009171|T048|PT|305.60|ICD9CM|Cocaine abuse, unspecified|Cocaine abuse, unspecified +C0154533|T048|AB|305.61|ICD9CM|Cocaine abuse-continuous|Cocaine abuse-continuous +C0154533|T048|PT|305.61|ICD9CM|Cocaine abuse, continuous|Cocaine abuse, continuous +C0154534|T048|AB|305.62|ICD9CM|Cocaine abuse-episodic|Cocaine abuse-episodic +C0154534|T048|PT|305.62|ICD9CM|Cocaine abuse, episodic|Cocaine abuse, episodic +C0154535|T048|AB|305.63|ICD9CM|Cocaine abuse-in remiss|Cocaine abuse-in remiss +C0154535|T048|PT|305.63|ICD9CM|Cocaine abuse, in remission|Cocaine abuse, in remission +C0154536|T048|HT|305.7|ICD9CM|Amphetamine or related acting sympathomimetic abuse|Amphetamine or related acting sympathomimetic abuse +C0375184|T048|AB|305.70|ICD9CM|Amphetamine abuse-unspec|Amphetamine abuse-unspec +C0375184|T048|PT|305.70|ICD9CM|Amphetamine or related acting sympathomimetic abuse, unspecified|Amphetamine or related acting sympathomimetic abuse, unspecified +C0154537|T048|AB|305.71|ICD9CM|Amphetamine abuse-contin|Amphetamine abuse-contin +C0154537|T048|PT|305.71|ICD9CM|Amphetamine or related acting sympathomimetic abuse, continuous|Amphetamine or related acting sympathomimetic abuse, continuous +C0154538|T048|AB|305.72|ICD9CM|Amphetamine abuse-episod|Amphetamine abuse-episod +C0154538|T048|PT|305.72|ICD9CM|Amphetamine or related acting sympathomimetic abuse, episodic|Amphetamine or related acting sympathomimetic abuse, episodic +C0154539|T048|AB|305.73|ICD9CM|Amphetamine abuse-remiss|Amphetamine abuse-remiss +C0154539|T048|PT|305.73|ICD9CM|Amphetamine or related acting sympathomimetic abuse, in remission|Amphetamine or related acting sympathomimetic abuse, in remission +C0154540|T048|HT|305.8|ICD9CM|Antidepressant type abuse|Antidepressant type abuse +C0375185|T048|AB|305.80|ICD9CM|Antidepress abuse-unspec|Antidepress abuse-unspec +C0375185|T048|PT|305.80|ICD9CM|Antidepressant type abuse, unspecified|Antidepressant type abuse, unspecified +C0154541|T048|AB|305.81|ICD9CM|Antidepress abuse-contin|Antidepress abuse-contin +C0154541|T048|PT|305.81|ICD9CM|Antidepressant type abuse, continuous|Antidepressant type abuse, continuous +C0154542|T048|AB|305.82|ICD9CM|Antidepress abuse-episod|Antidepress abuse-episod +C0154542|T048|PT|305.82|ICD9CM|Antidepressant type abuse, episodic|Antidepressant type abuse, episodic +C0154543|T048|AB|305.83|ICD9CM|Antidepress abuse-remiss|Antidepress abuse-remiss +C0154543|T048|PT|305.83|ICD9CM|Antidepressant type abuse, in remission|Antidepressant type abuse, in remission +C0154544|T048|HT|305.9|ICD9CM|Other, mixed, or unspecified drug abuse|Other, mixed, or unspecified drug abuse +C0154544|T048|AB|305.90|ICD9CM|Drug abuse NEC-unspec|Drug abuse NEC-unspec +C0154544|T048|PT|305.90|ICD9CM|Other, mixed, or unspecified drug abuse, unspecified|Other, mixed, or unspecified drug abuse, unspecified +C0154545|T048|AB|305.91|ICD9CM|Drug abuse NEC-contin|Drug abuse NEC-contin +C0154545|T048|PT|305.91|ICD9CM|Other, mixed, or unspecified drug abuse, continuous|Other, mixed, or unspecified drug abuse, continuous +C0154546|T048|AB|305.92|ICD9CM|Drug abuse NEC-episodic|Drug abuse NEC-episodic +C0154546|T048|PT|305.92|ICD9CM|Other, mixed, or unspecified drug abuse, episodic|Other, mixed, or unspecified drug abuse, episodic +C0154547|T048|AB|305.93|ICD9CM|Drug abuse NEC-in remiss|Drug abuse NEC-in remiss +C0154547|T048|PT|305.93|ICD9CM|Other, mixed, or unspecified drug abuse, in remission|Other, mixed, or unspecified drug abuse, in remission +C0154548|T047|HT|306|ICD9CM|Physiological malfunction arising from mental factors|Physiological malfunction arising from mental factors +C0154549|T048|PT|306.0|ICD9CM|Musculoskeletal malfunction arising from mental factors|Musculoskeletal malfunction arising from mental factors +C0154549|T048|AB|306.0|ICD9CM|Psychogen musculskel dis|Psychogen musculskel dis +C0338945|T048|AB|306.1|ICD9CM|Psychogenic respir dis|Psychogenic respir dis +C0338945|T048|PT|306.1|ICD9CM|Respiratory malfunction arising from mental factors|Respiratory malfunction arising from mental factors +C0027821|T047|PT|306.2|ICD9CM|Cardiovascular malfunction arising from mental factors|Cardiovascular malfunction arising from mental factors +C0027821|T047|AB|306.2|ICD9CM|Psychogen cardiovasc dis|Psychogen cardiovasc dis +C0154551|T048|AB|306.3|ICD9CM|Psychogenic skin disease|Psychogenic skin disease +C0154551|T048|PT|306.3|ICD9CM|Skin disorder arising from mental factors|Skin disorder arising from mental factors +C0017183|T048|PT|306.4|ICD9CM|Gastrointestinal malfunction arising from mental factors|Gastrointestinal malfunction arising from mental factors +C0017183|T048|AB|306.4|ICD9CM|Psychogenic GI disease|Psychogenic GI disease +C0154552|T047|HT|306.5|ICD9CM|Genitourinary malfunction arising from mental factors|Genitourinary malfunction arising from mental factors +C0837158|T048|PT|306.50|ICD9CM|Psychogenic genitourinary malfunction, unspecified|Psychogenic genitourinary malfunction, unspecified +C0837158|T048|AB|306.50|ICD9CM|Psychogenic gu dis NOS|Psychogenic gu dis NOS +C0042266|T048|AB|306.51|ICD9CM|Psychogenic vaginismus|Psychogenic vaginismus +C0042266|T048|PT|306.51|ICD9CM|Psychogenic vaginismus|Psychogenic vaginismus +C0154555|T048|AB|306.52|ICD9CM|Psychogenic dysmenorrhea|Psychogenic dysmenorrhea +C0154555|T048|PT|306.52|ICD9CM|Psychogenic dysmenorrhea|Psychogenic dysmenorrhea +C0232857|T184|AB|306.53|ICD9CM|Psychogenic dysuria|Psychogenic dysuria +C0232857|T184|PT|306.53|ICD9CM|Psychogenic dysuria|Psychogenic dysuria +C0154557|T047|PT|306.59|ICD9CM|Other genitourinary malfunction arising from mental factors|Other genitourinary malfunction arising from mental factors +C0154557|T047|AB|306.59|ICD9CM|Psychogenic gu dis NEC|Psychogenic gu dis NEC +C0154558|T047|PT|306.6|ICD9CM|Endocrine disorder arising from mental factors|Endocrine disorder arising from mental factors +C0154558|T047|AB|306.6|ICD9CM|Psychogen endocrine dis|Psychogen endocrine dis +C0154559|T047|PT|306.7|ICD9CM|Disorder of organs of special sense arising from mental factors|Disorder of organs of special sense arising from mental factors +C0154559|T047|AB|306.7|ICD9CM|Psychogenic sensory dis|Psychogenic sensory dis +C0029824|T048|PT|306.8|ICD9CM|Other specified psychophysiological malfunction|Other specified psychophysiological malfunction +C0029824|T048|AB|306.8|ICD9CM|Psychogenic disorder NEC|Psychogenic disorder NEC +C0041876|T048|AB|306.9|ICD9CM|Psychogenic disorder NOS|Psychogenic disorder NOS +C0041876|T048|PT|306.9|ICD9CM|Unspecified psychophysiological malfunction|Unspecified psychophysiological malfunction +C0302370|T047|HT|307|ICD9CM|Special symptoms or syndromes, not elsewhere classified|Special symptoms or syndromes, not elsewhere classified +C2921027|T048|AB|307.0|ICD9CM|Adult onset flncy disord|Adult onset flncy disord +C2921027|T048|PT|307.0|ICD9CM|Adult onset fluency disorder|Adult onset fluency disorder +C0003125|T048|AB|307.1|ICD9CM|Anorexia nervosa|Anorexia nervosa +C0003125|T048|PT|307.1|ICD9CM|Anorexia nervosa|Anorexia nervosa +C0040188|T048|HT|307.2|ICD9CM|Tics|Tics +C0040188|T048|AB|307.20|ICD9CM|Tic disorder NOS|Tic disorder NOS +C0040188|T048|PT|307.20|ICD9CM|Tic disorder, unspecified|Tic disorder, unspecified +C0040702|T048|AB|307.21|ICD9CM|Transient tic disorder|Transient tic disorder +C0040702|T048|PT|307.21|ICD9CM|Transient tic disorder|Transient tic disorder +C0008701|T048|AB|307.22|ICD9CM|Chr motor/vocal tic dis|Chr motor/vocal tic dis +C0008701|T048|PT|307.22|ICD9CM|Chronic motor or vocal tic disorder|Chronic motor or vocal tic disorder +C0040517|T047|AB|307.23|ICD9CM|Tourette's disorder|Tourette's disorder +C0040517|T047|PT|307.23|ICD9CM|Tourette's disorder|Tourette's disorder +C0038273|T048|AB|307.3|ICD9CM|Stereotypic movement dis|Stereotypic movement dis +C0038273|T048|PT|307.3|ICD9CM|Stereotypic movement disorder|Stereotypic movement disorder +C0154564|T048|HT|307.4|ICD9CM|Specific disorders of sleep of nonorganic origin|Specific disorders of sleep of nonorganic origin +C0154565|T048|AB|307.40|ICD9CM|Nonorganic sleep dis NOS|Nonorganic sleep dis NOS +C0154565|T048|PT|307.40|ICD9CM|Nonorganic sleep disorder, unspecified|Nonorganic sleep disorder, unspecified +C0154566|T048|PT|307.41|ICD9CM|Transient disorder of initiating or maintaining sleep|Transient disorder of initiating or maintaining sleep +C0154566|T048|AB|307.41|ICD9CM|Transient insomnia|Transient insomnia +C0868777|T048|PT|307.42|ICD9CM|Persistent disorder of initiating or maintaining sleep|Persistent disorder of initiating or maintaining sleep +C0868777|T048|AB|307.42|ICD9CM|Persistent insomnia|Persistent insomnia +C0154568|T048|PT|307.43|ICD9CM|Transient disorder of initiating or maintaining wakefulness|Transient disorder of initiating or maintaining wakefulness +C0154568|T048|AB|307.43|ICD9CM|Transient hypersomnia|Transient hypersomnia +C0154569|T048|PT|307.44|ICD9CM|Persistent disorder of initiating or maintaining wakefulness|Persistent disorder of initiating or maintaining wakefulness +C0154569|T048|AB|307.44|ICD9CM|Persistent hypersomnia|Persistent hypersomnia +C1561844|T048|PT|307.45|ICD9CM|Circadian rhythm sleep disorder of nonorganic origin|Circadian rhythm sleep disorder of nonorganic origin +C1561844|T048|AB|307.45|ICD9CM|Nonorganic circadian rhy|Nonorganic circadian rhy +C0752294|T047|AB|307.46|ICD9CM|Sleep arousal disorder|Sleep arousal disorder +C0752294|T047|PT|307.46|ICD9CM|Sleep arousal disorder|Sleep arousal disorder +C0154571|T048|PT|307.47|ICD9CM|Other dysfunctions of sleep stages or arousal from sleep|Other dysfunctions of sleep stages or arousal from sleep +C0154571|T048|AB|307.47|ICD9CM|Sleep stage dysfunc NEC|Sleep stage dysfunc NEC +C0154572|T048|AB|307.48|ICD9CM|Repetit sleep intrusion|Repetit sleep intrusion +C0154572|T048|PT|307.48|ICD9CM|Repetitive intrusions of sleep|Repetitive intrusions of sleep +C0154573|T048|AB|307.49|ICD9CM|Nonorganic sleep dis NEC|Nonorganic sleep dis NEC +C0154573|T048|PT|307.49|ICD9CM|Other specific disorders of sleep of nonorganic origin|Other specific disorders of sleep of nonorganic origin +C0029587|T048|HT|307.5|ICD9CM|Other and unspecified disorders of eating|Other and unspecified disorders of eating +C0013473|T048|AB|307.50|ICD9CM|Eating disorder NOS|Eating disorder NOS +C0013473|T048|PT|307.50|ICD9CM|Eating disorder, unspecified|Eating disorder, unspecified +C2267227|T048|AB|307.51|ICD9CM|Bulimia nervosa|Bulimia nervosa +C2267227|T048|PT|307.51|ICD9CM|Bulimia nervosa|Bulimia nervosa +C0031873|T048|AB|307.52|ICD9CM|Pica|Pica +C0031873|T048|PT|307.52|ICD9CM|Pica|Pica +C0154575|T048|AB|307.53|ICD9CM|Rumination disorder|Rumination disorder +C0154575|T048|PT|307.53|ICD9CM|Rumination disorder|Rumination disorder +C0233757|T048|AB|307.54|ICD9CM|Psychogenic vomiting|Psychogenic vomiting +C0233757|T048|PT|307.54|ICD9CM|Psychogenic vomiting|Psychogenic vomiting +C0029587|T048|AB|307.59|ICD9CM|Eating disorder NEC|Eating disorder NEC +C0029587|T048|PT|307.59|ICD9CM|Other disorders of eating|Other disorders of eating +C0014394|T047|AB|307.6|ICD9CM|Enuresis|Enuresis +C0014394|T047|PT|307.6|ICD9CM|Enuresis|Enuresis +C0014089|T048|AB|307.7|ICD9CM|Encopresis|Encopresis +C0014089|T048|PT|307.7|ICD9CM|Encopresis|Encopresis +C1456322|T048|HT|307.8|ICD9CM|Pain disorders related to psychological factors|Pain disorders related to psychological factors +C0152174|T048|AB|307.80|ICD9CM|Psychogenic pain NOS|Psychogenic pain NOS +C0152174|T048|PT|307.80|ICD9CM|Psychogenic pain, site unspecified|Psychogenic pain, site unspecified +C0033893|T047|AB|307.81|ICD9CM|Tension headache|Tension headache +C0033893|T047|PT|307.81|ICD9CM|Tension headache|Tension headache +C1456321|T048|PT|307.89|ICD9CM|Other pain disorders related to psychological factors|Other pain disorders related to psychological factors +C1456321|T048|AB|307.89|ICD9CM|Psychogenic pain NEC|Psychogenic pain NEC +C0302371|T048|PT|307.9|ICD9CM|Other and unspecified special symptoms or syndromes, not elsewhere classified|Other and unspecified special symptoms or syndromes, not elsewhere classified +C0302371|T048|AB|307.9|ICD9CM|Special symptom NEC/NOS|Special symptom NEC/NOS +C0236816|T048|HT|308|ICD9CM|Acute reaction to stress|Acute reaction to stress +C0154578|T048|PT|308.0|ICD9CM|Predominant disturbance of emotions|Predominant disturbance of emotions +C0154578|T048|AB|308.0|ICD9CM|Stress react, emotional|Stress react, emotional +C0154579|T048|PT|308.1|ICD9CM|Predominant disturbance of consciousness|Predominant disturbance of consciousness +C0154579|T048|AB|308.1|ICD9CM|Stress reaction, fugue|Stress reaction, fugue +C0154580|T048|PT|308.2|ICD9CM|Predominant psychomotor disturbance|Predominant psychomotor disturbance +C0154580|T048|AB|308.2|ICD9CM|Stress react, psychomot|Stress react, psychomot +C0029488|T048|AB|308.3|ICD9CM|Acute stress react NEC|Acute stress react NEC +C0029488|T048|PT|308.3|ICD9CM|Other acute reactions to stress|Other acute reactions to stress +C0154581|T048|PT|308.4|ICD9CM|Mixed disorders as reaction to stress|Mixed disorders as reaction to stress +C0154581|T048|AB|308.4|ICD9CM|Stress react, mixed dis|Stress react, mixed dis +C0236816|T048|AB|308.9|ICD9CM|Acute stress react NOS|Acute stress react NOS +C0236816|T048|PT|308.9|ICD9CM|Unspecified acute reaction to stress|Unspecified acute reaction to stress +C0040701|T048|HT|309|ICD9CM|Adjustment reaction|Adjustment reaction +C0001539|T048|PT|309.0|ICD9CM|Adjustment disorder with depressed mood|Adjustment disorder with depressed mood +C0001539|T048|AB|309.0|ICD9CM|Adjustmnt dis w depressn|Adjustmnt dis w depressn +C0154583|T048|AB|309.1|ICD9CM|Prolong depressive react|Prolong depressive react +C0154583|T048|PT|309.1|ICD9CM|Prolonged depressive reaction|Prolonged depressive reaction +C0154584|T048|HT|309.2|ICD9CM|Adjustment reaction with predominant disturbance of other emotions|Adjustment reaction with predominant disturbance of other emotions +C0003477|T048|AB|309.21|ICD9CM|Separation anxiety|Separation anxiety +C0003477|T048|PT|309.21|ICD9CM|Separation anxiety disorder|Separation anxiety disorder +C0154585|T048|AB|309.22|ICD9CM|Emancipation disorder|Emancipation disorder +C0154585|T048|PT|309.22|ICD9CM|Emancipation disorder of adolescence and early adult life|Emancipation disorder of adolescence and early adult life +C0154586|T048|AB|309.23|ICD9CM|Academic/work inhibition|Academic/work inhibition +C0154586|T048|PT|309.23|ICD9CM|Specific academic or work inhibition|Specific academic or work inhibition +C0154587|T048|AB|309.24|ICD9CM|Adjustment dis w anxiety|Adjustment dis w anxiety +C0154587|T048|PT|309.24|ICD9CM|Adjustment disorder with anxiety|Adjustment disorder with anxiety +C0154588|T048|AB|309.28|ICD9CM|Adjust dis w anxiety/dep|Adjust dis w anxiety/dep +C0154588|T048|PT|309.28|ICD9CM|Adjustment disorder with mixed anxiety and depressed mood|Adjustment disorder with mixed anxiety and depressed mood +C0154589|T048|AB|309.29|ICD9CM|Adj react-emotion NEC|Adj react-emotion NEC +C0154589|T048|PT|309.29|ICD9CM|Other adjustment reactions with predominant disturbance of other emotions|Other adjustment reactions with predominant disturbance of other emotions +C0001540|T048|AB|309.3|ICD9CM|Adjust disor/dis conduct|Adjust disor/dis conduct +C0001540|T048|PT|309.3|ICD9CM|Adjustment disorder with disturbance of conduct|Adjustment disorder with disturbance of conduct +C0001541|T048|AB|309.4|ICD9CM|Adj dis-emotion/conduct|Adj dis-emotion/conduct +C0001541|T048|PT|309.4|ICD9CM|Adjustment disorder with mixed disturbance of emotions and conduct|Adjustment disorder with mixed disturbance of emotions and conduct +C0154592|T048|HT|309.8|ICD9CM|Other specified adjustment reactions|Other specified adjustment reactions +C0038436|T048|AB|309.81|ICD9CM|Posttraumatic stress dis|Posttraumatic stress dis +C0038436|T048|PT|309.81|ICD9CM|Posttraumatic stress disorder|Posttraumatic stress disorder +C0154594|T048|AB|309.82|ICD9CM|Adjust react-phys sympt|Adjust react-phys sympt +C0154594|T048|PT|309.82|ICD9CM|Adjustment reaction with physical symptoms|Adjustment reaction with physical symptoms +C0154595|T048|AB|309.83|ICD9CM|Adjust react-withdrawal|Adjust react-withdrawal +C0154595|T048|PT|309.83|ICD9CM|Adjustment reaction with withdrawal|Adjustment reaction with withdrawal +C0154592|T048|AB|309.89|ICD9CM|Adjustment reaction NEC|Adjustment reaction NEC +C0154592|T048|PT|309.89|ICD9CM|Other specified adjustment reactions|Other specified adjustment reactions +C0040701|T048|AB|309.9|ICD9CM|Adjustment reaction NOS|Adjustment reaction NOS +C0040701|T048|PT|309.9|ICD9CM|Unspecified adjustment reaction|Unspecified adjustment reaction +C1456324|T048|HT|310|ICD9CM|Specific nonpsychotic mental disorders due to brain damage|Specific nonpsychotic mental disorders due to brain damage +C0549117|T047|AB|310.0|ICD9CM|Frontal lobe syndrome|Frontal lobe syndrome +C0549117|T047|PT|310.0|ICD9CM|Frontal lobe syndrome|Frontal lobe syndrome +C1456323|T048|PT|310.1|ICD9CM|Personality change due to conditions classified elsewhere|Personality change due to conditions classified elsewhere +C1456323|T048|AB|310.1|ICD9CM|Personality chg oth dis|Personality chg oth dis +C0546983|T047|AB|310.2|ICD9CM|Postconcussion syndrome|Postconcussion syndrome +C0546983|T047|PT|310.2|ICD9CM|Postconcussion syndrome|Postconcussion syndrome +C0154598|T048|HT|310.8|ICD9CM|Other specified nonpsychotic mental disorders following organic brain damage|Other specified nonpsychotic mental disorders following organic brain damage +C2316460|T048|AB|310.81|ICD9CM|Pseudobulbar affect|Pseudobulbar affect +C2316460|T048|PT|310.81|ICD9CM|Pseudobulbar affect|Pseudobulbar affect +C0154598|T048|AB|310.89|ICD9CM|Nonpsych mntl disord NEC|Nonpsych mntl disord NEC +C0154598|T048|PT|310.89|ICD9CM|Other specified nonpsychotic mental disorders following organic brain damage|Other specified nonpsychotic mental disorders following organic brain damage +C0041862|T048|AB|310.9|ICD9CM|Nonpsychot brain syn NOS|Nonpsychot brain syn NOS +C0041862|T048|PT|310.9|ICD9CM|Unspecified nonpsychotic mental disorder following organic brain damage|Unspecified nonpsychotic mental disorder following organic brain damage +C0868892|T048|AB|311|ICD9CM|Depressive disorder NEC|Depressive disorder NEC +C0868892|T048|PT|311|ICD9CM|Depressive disorder, not elsewhere classified|Depressive disorder, not elsewhere classified +C0869273|T048|HT|312|ICD9CM|Disturbance of conduct, not elsewhere classified|Disturbance of conduct, not elsewhere classified +C0041665|T048|HT|312.0|ICD9CM|Undersocialized conduct disorder, aggressive type|Undersocialized conduct disorder, aggressive type +C0375189|T048|PT|312.00|ICD9CM|Undersocialized conduct disorder, aggressive type, unspecified|Undersocialized conduct disorder, aggressive type, unspecified +C0375189|T048|AB|312.00|ICD9CM|Unsocial aggress-unspec|Unsocial aggress-unspec +C0154600|T048|PT|312.01|ICD9CM|Undersocialized conduct disorder, aggressive type, mild|Undersocialized conduct disorder, aggressive type, mild +C0154600|T048|AB|312.01|ICD9CM|Unsocial aggression-mild|Unsocial aggression-mild +C0154601|T048|PT|312.02|ICD9CM|Undersocialized conduct disorder, aggressive type, moderate|Undersocialized conduct disorder, aggressive type, moderate +C0154601|T048|AB|312.02|ICD9CM|Unsocial aggression-mod|Unsocial aggression-mod +C0154602|T048|PT|312.03|ICD9CM|Undersocialized conduct disorder, aggressive type, severe|Undersocialized conduct disorder, aggressive type, severe +C0154602|T048|AB|312.03|ICD9CM|Unsocial aggress-severe|Unsocial aggress-severe +C0154603|T048|HT|312.1|ICD9CM|Undersocialized conduct disorder, unaggressive type|Undersocialized conduct disorder, unaggressive type +C0375190|T048|PT|312.10|ICD9CM|Undersocialized conduct disorder, unaggressive type, unspecified|Undersocialized conduct disorder, unaggressive type, unspecified +C0375190|T048|AB|312.10|ICD9CM|Unsocial unaggress-unsp|Unsocial unaggress-unsp +C0154604|T048|PT|312.11|ICD9CM|Undersocialized conduct disorder, unaggressive type, mild|Undersocialized conduct disorder, unaggressive type, mild +C0154604|T048|AB|312.11|ICD9CM|Unsocial unaggress-mild|Unsocial unaggress-mild +C0154605|T048|PT|312.12|ICD9CM|Undersocialized conduct disorder, unaggressive type, moderate|Undersocialized conduct disorder, unaggressive type, moderate +C0154605|T048|AB|312.12|ICD9CM|Unsocial unaggress-mod|Unsocial unaggress-mod +C0154606|T048|PT|312.13|ICD9CM|Undersocialized conduct disorder, unaggressive type, severe|Undersocialized conduct disorder, unaggressive type, severe +C0154606|T048|AB|312.13|ICD9CM|Unsocial unaggr-severe|Unsocial unaggr-severe +C0037448|T048|HT|312.2|ICD9CM|Socialized conduct disorder|Socialized conduct disorder +C0037448|T048|AB|312.20|ICD9CM|Social conduct dis-unsp|Social conduct dis-unsp +C0037448|T048|PT|312.20|ICD9CM|Socialized conduct disorder, unspecified|Socialized conduct disorder, unspecified +C2231357|T048|AB|312.21|ICD9CM|Social conduct dis-mild|Social conduct dis-mild +C2231357|T048|PT|312.21|ICD9CM|Socialized conduct disorder, mild|Socialized conduct disorder, mild +C2197988|T048|AB|312.22|ICD9CM|Social conduct dis-mod|Social conduct dis-mod +C2197988|T048|PT|312.22|ICD9CM|Socialized conduct disorder, moderate|Socialized conduct disorder, moderate +C2231358|T048|AB|312.23|ICD9CM|Social conduct dis-sev|Social conduct dis-sev +C2231358|T048|PT|312.23|ICD9CM|Socialized conduct disorder, severe|Socialized conduct disorder, severe +C0868739|T048|HT|312.3|ICD9CM|Disorders of impulse control, not elsewhere classified|Disorders of impulse control, not elsewhere classified +C0021122|T048|AB|312.30|ICD9CM|Impulse control dis NOS|Impulse control dis NOS +C0021122|T048|PT|312.30|ICD9CM|Impulse control disorder, unspecified|Impulse control disorder, unspecified +C0030662|T048|AB|312.31|ICD9CM|Pathological gambling|Pathological gambling +C0030662|T048|PT|312.31|ICD9CM|Pathological gambling|Pathological gambling +C0022734|T048|AB|312.32|ICD9CM|Kleptomania|Kleptomania +C0022734|T048|PT|312.32|ICD9CM|Kleptomania|Kleptomania +C0016142|T048|AB|312.33|ICD9CM|Pyromania|Pyromania +C0016142|T048|PT|312.33|ICD9CM|Pyromania|Pyromania +C0021776|T048|AB|312.34|ICD9CM|Intermitt explosive dis|Intermitt explosive dis +C0021776|T048|PT|312.34|ICD9CM|Intermittent explosive disorder|Intermittent explosive disorder +C0154610|T048|AB|312.35|ICD9CM|Isolated explosive dis|Isolated explosive dis +C0154610|T048|PT|312.35|ICD9CM|Isolated explosive disorder|Isolated explosive disorder +C0029588|T048|AB|312.39|ICD9CM|Impulse control dis NEC|Impulse control dis NEC +C0029588|T048|PT|312.39|ICD9CM|Other disorders of impulse control|Other disorders of impulse control +C0494432|T048|AB|312.4|ICD9CM|Mix dis conduct/emotion|Mix dis conduct/emotion +C0494432|T048|PT|312.4|ICD9CM|Mixed disturbance of conduct and emotions|Mixed disturbance of conduct and emotions +C0302373|T048|HT|312.8|ICD9CM|Other specified disturbances of conduct, not elsewhere classified|Other specified disturbances of conduct, not elsewhere classified +C0339005|T048|AB|312.81|ICD9CM|Cndct dsrdr chldhd onst|Cndct dsrdr chldhd onst +C0339005|T048|PT|312.81|ICD9CM|Conduct disorder, childhood onset type|Conduct disorder, childhood onset type +C0375192|T048|AB|312.82|ICD9CM|Cndct dsrdr adlscnt onst|Cndct dsrdr adlscnt onst +C0375192|T048|PT|312.82|ICD9CM|Conduct disorder, adolescent onset type|Conduct disorder, adolescent onset type +C0375193|T048|AB|312.89|ICD9CM|Other conduct disorder|Other conduct disorder +C0375193|T048|PT|312.89|ICD9CM|Other conduct disorder|Other conduct disorder +C0149654|T048|AB|312.9|ICD9CM|Conduct disturbance NOS|Conduct disturbance NOS +C0149654|T048|PT|312.9|ICD9CM|Unspecified disturbance of conduct|Unspecified disturbance of conduct +C0154613|T048|HT|313|ICD9CM|Disturbance of emotions specific to childhood and adolescence|Disturbance of emotions specific to childhood and adolescence +C0270307|T048|AB|313.0|ICD9CM|Overanxious disorder|Overanxious disorder +C0270307|T048|PT|313.0|ICD9CM|Overanxious disorder specific to childhood and adolescence|Overanxious disorder specific to childhood and adolescence +C0154614|T048|AB|313.1|ICD9CM|Misery & unhappiness dis|Misery & unhappiness dis +C0154614|T048|PT|313.1|ICD9CM|Misery and unhappiness disorder specific to childhood and adolescence|Misery and unhappiness disorder specific to childhood and adolescence +C0154615|T048|HT|313.2|ICD9CM|Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence|Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence +C0154616|T048|PT|313.21|ICD9CM|Shyness disorder of childhood|Shyness disorder of childhood +C0154616|T048|AB|313.21|ICD9CM|Shyness disorder-child|Shyness disorder-child +C0546819|T048|AB|313.22|ICD9CM|Introverted dis-child|Introverted dis-child +C0546819|T048|PT|313.22|ICD9CM|Introverted disorder of childhood|Introverted disorder of childhood +C1456326|T048|AB|313.23|ICD9CM|Selective mutism|Selective mutism +C1456326|T048|PT|313.23|ICD9CM|Selective mutism|Selective mutism +C0154618|T048|AB|313.3|ICD9CM|Relationship problems|Relationship problems +C0154618|T048|PT|313.3|ICD9CM|Relationship problems specific to childhood and adolescence|Relationship problems specific to childhood and adolescence +C0154619|T048|HT|313.8|ICD9CM|Other or mixed emotional disturbances of childhood or adolescence|Other or mixed emotional disturbances of childhood or adolescence +C0029121|T048|AB|313.81|ICD9CM|Opposition defiant disor|Opposition defiant disor +C0029121|T048|PT|313.81|ICD9CM|Oppositional defiant disorder|Oppositional defiant disorder +C0020795|T048|AB|313.82|ICD9CM|Identity disorder|Identity disorder +C0020795|T048|PT|313.82|ICD9CM|Identity disorder of childhood or adolescence|Identity disorder of childhood or adolescence +C0154621|T048|PT|313.83|ICD9CM|Academic underachievement disorder of childhood or adolescence|Academic underachievement disorder of childhood or adolescence +C0154621|T048|AB|313.83|ICD9CM|Academic underachievment|Academic underachievment +C0154622|T048|AB|313.89|ICD9CM|Emotional dis child NEC|Emotional dis child NEC +C0154622|T048|PT|313.89|ICD9CM|Other emotional disturbances of childhood or adolescence|Other emotional disturbances of childhood or adolescence +C0154623|T048|AB|313.9|ICD9CM|Emotional dis child NOS|Emotional dis child NOS +C0154623|T048|PT|313.9|ICD9CM|Unspecified emotional disturbance of childhood or adolescence|Unspecified emotional disturbance of childhood or adolescence +C1263846|T048|HT|314|ICD9CM|Hyperkinetic syndrome of childhood|Hyperkinetic syndrome of childhood +C0004269|T047|HT|314.0|ICD9CM|Attention deficit disorder of childhood|Attention deficit disorder of childhood +C0339002|T048|PT|314.00|ICD9CM|Attention deficit disorder without mention of hyperactivity|Attention deficit disorder without mention of hyperactivity +C0339002|T048|AB|314.00|ICD9CM|Attn defic nonhyperact|Attn defic nonhyperact +C1263846|T048|PT|314.01|ICD9CM|Attention deficit disorder with hyperactivity|Attention deficit disorder with hyperactivity +C1263846|T048|AB|314.01|ICD9CM|Attn deficit w hyperact|Attn deficit w hyperact +C0154627|T048|PT|314.1|ICD9CM|Hyperkinesis with developmental delay|Hyperkinesis with developmental delay +C0154627|T048|AB|314.1|ICD9CM|Hyperkinet w devel delay|Hyperkinet w devel delay +C0154628|T048|AB|314.2|ICD9CM|Hyperkinetic conduct dis|Hyperkinetic conduct dis +C0154628|T048|PT|314.2|ICD9CM|Hyperkinetic conduct disorder|Hyperkinetic conduct disorder +C0154629|T048|AB|314.8|ICD9CM|Other hyperkinetic synd|Other hyperkinetic synd +C0154629|T048|PT|314.8|ICD9CM|Other specified manifestations of hyperkinetic syndrome|Other specified manifestations of hyperkinetic syndrome +C1263846|T048|AB|314.9|ICD9CM|Hyperkinetic synd NOS|Hyperkinetic synd NOS +C1263846|T048|PT|314.9|ICD9CM|Unspecified hyperkinetic syndrome|Unspecified hyperkinetic syndrome +C0037785|T048|HT|315|ICD9CM|Specific delays in development|Specific delays in development +C0920296|T048|HT|315.0|ICD9CM|Developmental reading disorder|Developmental reading disorder +C0920296|T048|PT|315.00|ICD9CM|Developmental reading disorder, unspecified|Developmental reading disorder, unspecified +C0920296|T048|AB|315.00|ICD9CM|Reading disorder NOS|Reading disorder NOS +C0002018|T048|AB|315.01|ICD9CM|Alexia|Alexia +C0002018|T048|PT|315.01|ICD9CM|Alexia|Alexia +C0920296|T048|AB|315.02|ICD9CM|Developmental dyslexia|Developmental dyslexia +C0920296|T048|PT|315.02|ICD9CM|Developmental dyslexia|Developmental dyslexia +C0154631|T048|PT|315.09|ICD9CM|Other specific developmental reading disorder|Other specific developmental reading disorder +C0154631|T048|AB|315.09|ICD9CM|Reading disorder NEC|Reading disorder NEC +C1411876|T048|AB|315.1|ICD9CM|Mathematics disorder|Mathematics disorder +C1411876|T048|PT|315.1|ICD9CM|Mathematics disorder|Mathematics disorder +C0338982|T048|AB|315.2|ICD9CM|Oth learning difficulty|Oth learning difficulty +C0338982|T048|PT|315.2|ICD9CM|Other specific developmental learning difficulties|Other specific developmental learning difficulties +C0154632|T048|HT|315.3|ICD9CM|Developmental speech or language disorder|Developmental speech or language disorder +C0236826|T048|AB|315.31|ICD9CM|Expressive language dis|Expressive language dis +C0236826|T048|PT|315.31|ICD9CM|Expressive language disorder|Expressive language disorder +C0236827|T048|PT|315.32|ICD9CM|Mixed receptive-expressive language disorder|Mixed receptive-expressive language disorder +C0236827|T048|AB|315.32|ICD9CM|Recp-expres language dis|Recp-expres language dis +C1955750|T048|PT|315.34|ICD9CM|Speech and language developmental delay due to hearing loss|Speech and language developmental delay due to hearing loss +C1955750|T048|AB|315.34|ICD9CM|Speech del d/t hear loss|Speech del d/t hear loss +C2921028|T048|PT|315.35|ICD9CM|Childhood onset fluency disorder|Childhood onset fluency disorder +C2921028|T048|AB|315.35|ICD9CM|Chldhd onset flncy disor|Chldhd onset flncy disor +C0154633|T048|PT|315.39|ICD9CM|Other developmental speech or language disorder|Other developmental speech or language disorder +C0154633|T048|AB|315.39|ICD9CM|Speech/language dis NEC|Speech/language dis NEC +C0011757|T048|AB|315.4|ICD9CM|Devel coordination dis|Devel coordination dis +C0011757|T048|PT|315.4|ICD9CM|Developmental coordination disorder|Developmental coordination disorder +C0154634|T048|AB|315.5|ICD9CM|Mixed development dis|Mixed development dis +C0154634|T048|PT|315.5|ICD9CM|Mixed development disorder|Mixed development disorder +C0154635|T048|AB|315.8|ICD9CM|Development delays NEC|Development delays NEC +C0154635|T048|PT|315.8|ICD9CM|Other specified delays in development|Other specified delays in development +C0424605|T048|AB|315.9|ICD9CM|Development delay NOS|Development delay NOS +C0424605|T048|PT|315.9|ICD9CM|Unspecified delay in development|Unspecified delay in development +C0154637|T048|AB|316|ICD9CM|Psychic factor w oth dis|Psychic factor w oth dis +C0154637|T048|PT|316|ICD9CM|Psychic factors associated with diseases classified elsewhere|Psychic factors associated with diseases classified elsewhere +C0026106|T048|AB|317|ICD9CM|Mild intellect disabilty|Mild intellect disabilty +C0026106|T048|PT|317|ICD9CM|Mild intellectual disabilities|Mild intellectual disabilities +C3714756|T048|HT|317-319.99|ICD9CM|INTELLECTUAL DISABILITIES|INTELLECTUAL DISABILITIES +C3161382|T048|HT|318|ICD9CM|Other specified intellectual disabilities|Other specified intellectual disabilities +C0026351|T048|AB|318.0|ICD9CM|Mod intellect disability|Mod intellect disability +C0026351|T048|PT|318.0|ICD9CM|Moderate intellectual disabilities|Moderate intellectual disabilities +C0036857|T048|AB|318.1|ICD9CM|Sev intellect disability|Sev intellect disability +C0036857|T048|PT|318.1|ICD9CM|Severe intellectual disabilities|Severe intellectual disabilities +C3161330|T048|AB|318.2|ICD9CM|Profnd intellct disablty|Profnd intellct disablty +C3161330|T048|PT|318.2|ICD9CM|Profound intellectual disabilities|Profound intellectual disabilities +C3161331|T048|AB|319|ICD9CM|Intellect disability NOS|Intellect disability NOS +C3161331|T048|PT|319|ICD9CM|Unspecified intellectual disabilities|Unspecified intellectual disabilities +C0085437|T047|HT|320|ICD9CM|Bacterial meningitis|Bacterial meningitis +C0178264|T047|HT|320-326.99|ICD9CM|INFLAMMATORY DISEASES OF THE CENTRAL NERVOUS SYSTEM|INFLAMMATORY DISEASES OF THE CENTRAL NERVOUS SYSTEM +C0338381|T047|HT|320-389.99|ICD9CM|DISEASES OF THE NERVOUS SYSTEM AND SENSE ORGANS|DISEASES OF THE NERVOUS SYSTEM AND SENSE ORGANS +C0025292|T047|AB|320.0|ICD9CM|Hemophilus meningitis|Hemophilus meningitis +C0025292|T047|PT|320.0|ICD9CM|Hemophilus meningitis|Hemophilus meningitis +C0025295|T047|AB|320.1|ICD9CM|Pneumococcal meningitis|Pneumococcal meningitis +C0025295|T047|PT|320.1|ICD9CM|Pneumococcal meningitis|Pneumococcal meningitis +C0154639|T047|AB|320.2|ICD9CM|Streptococcal meningitis|Streptococcal meningitis +C0154639|T047|PT|320.2|ICD9CM|Streptococcal meningitis|Streptococcal meningitis +C0154640|T047|AB|320.3|ICD9CM|Staphylococc meningitis|Staphylococc meningitis +C0154640|T047|PT|320.3|ICD9CM|Staphylococcal meningitis|Staphylococcal meningitis +C0154641|T047|AB|320.7|ICD9CM|Mening in oth bact dis|Mening in oth bact dis +C0154641|T047|PT|320.7|ICD9CM|Meningitis in other bacterial diseases classified elsewhere|Meningitis in other bacterial diseases classified elsewhere +C0154642|T047|HT|320.8|ICD9CM|Meningitis due to other specified bacteria|Meningitis due to other specified bacteria +C0375197|T047|AB|320.81|ICD9CM|Anaerobic meningitis|Anaerobic meningitis +C0375197|T047|PT|320.81|ICD9CM|Anaerobic meningitis|Anaerobic meningitis +C0375198|T047|PT|320.82|ICD9CM|Meningitis due to gram-negative bacteria, not elsewhere classified|Meningitis due to gram-negative bacteria, not elsewhere classified +C0375198|T047|AB|320.82|ICD9CM|Mningts gram-neg bct NEC|Mningts gram-neg bct NEC +C0154642|T047|PT|320.89|ICD9CM|Meningitis due to other specified bacteria|Meningitis due to other specified bacteria +C0154642|T047|AB|320.89|ICD9CM|Meningitis oth spcf bact|Meningitis oth spcf bact +C0085437|T047|AB|320.9|ICD9CM|Bacterial meningitis NOS|Bacterial meningitis NOS +C0085437|T047|PT|320.9|ICD9CM|Meningitis due to unspecified bacterium|Meningitis due to unspecified bacterium +C0154644|T047|HT|321|ICD9CM|Meningitis due to other organisms|Meningitis due to other organisms +C0085436|T047|AB|321.0|ICD9CM|Cryptococcal meningitis|Cryptococcal meningitis +C0085436|T047|PT|321.0|ICD9CM|Cryptococcal meningitis|Cryptococcal meningitis +C0154645|T047|AB|321.1|ICD9CM|Mening in oth fungal dis|Mening in oth fungal dis +C0154645|T047|PT|321.1|ICD9CM|Meningitis in other fungal diseases|Meningitis in other fungal diseases +C0868783|T047|AB|321.2|ICD9CM|Mening in oth viral dis|Mening in oth viral dis +C0868783|T047|PT|321.2|ICD9CM|Meningitis due to viruses not elsewhere classified|Meningitis due to viruses not elsewhere classified +C0795686|T047|PT|321.3|ICD9CM|Meningitis due to trypanosomiasis|Meningitis due to trypanosomiasis +C0795686|T047|AB|321.3|ICD9CM|Trypanosomiasis meningit|Trypanosomiasis meningit +C0154648|T047|AB|321.4|ICD9CM|Meningit d/t sarcoidosis|Meningit d/t sarcoidosis +C0154648|T047|PT|321.4|ICD9CM|Meningitis in sarcoidosis|Meningitis in sarcoidosis +C0154649|T047|AB|321.8|ICD9CM|Mening in oth nonbac dis|Mening in oth nonbac dis +C0154649|T047|PT|321.8|ICD9CM|Meningitis due to other nonbacterial organisms classified elsewhere|Meningitis due to other nonbacterial organisms classified elsewhere +C0025289|T047|HT|322|ICD9CM|Meningitis of unspecified cause|Meningitis of unspecified cause +C0154651|T047|AB|322.0|ICD9CM|Nonpyogenic meningitis|Nonpyogenic meningitis +C0154651|T047|PT|322.0|ICD9CM|Nonpyogenic meningitis|Nonpyogenic meningitis +C0154652|T047|AB|322.1|ICD9CM|Eosinophilic meningitis|Eosinophilic meningitis +C0154652|T047|PT|322.1|ICD9CM|Eosinophilic meningitis|Eosinophilic meningitis +C0154653|T047|AB|322.2|ICD9CM|Chronic meningitis|Chronic meningitis +C0154653|T047|PT|322.2|ICD9CM|Chronic meningitis|Chronic meningitis +C0025289|T047|AB|322.9|ICD9CM|Meningitis NOS|Meningitis NOS +C0025289|T047|PT|322.9|ICD9CM|Meningitis, unspecified|Meningitis, unspecified +C0014058|T047|HT|323|ICD9CM|Encephalitis, myelitis, and encephalomyelitis|Encephalitis, myelitis, and encephalomyelitis +C0477341|T047|HT|323.0|ICD9CM|Encephalitis, myelitis, and encephalomyelitis in viral diseases classified elsewhere|Encephalitis, myelitis, and encephalomyelitis in viral diseases classified elsewhere +C1719346|T047|AB|323.01|ICD9CM|Enceph/encephmye oth dis|Enceph/encephmye oth dis +C1719346|T047|PT|323.01|ICD9CM|Encephalitis and encephalomyelitis in viral diseases classified elsewhere|Encephalitis and encephalomyelitis in viral diseases classified elsewhere +C1719347|T047|PT|323.02|ICD9CM|Myelitis in viral diseases classified elsewhere|Myelitis in viral diseases classified elsewhere +C1719347|T047|AB|323.02|ICD9CM|Myelitis-oth viral dis|Myelitis-oth viral dis +C1719348|T047|PT|323.1|ICD9CM|Encephalitis, myelitis, and encephalomyelitis in rickettsial diseases classified elsewhere|Encephalitis, myelitis, and encephalomyelitis in rickettsial diseases classified elsewhere +C1719348|T047|AB|323.1|ICD9CM|Rickettsial encephalitis|Rickettsial encephalitis +C1719349|T047|PT|323.2|ICD9CM|Encephalitis, myelitis, and encephalomyelitis in protozoal diseases classified elsewhere|Encephalitis, myelitis, and encephalomyelitis in protozoal diseases classified elsewhere +C1719349|T047|AB|323.2|ICD9CM|Protozoal encephalitis|Protozoal encephalitis +C1719352|T047|HT|323.4|ICD9CM|Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere|Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere +C1719350|T047|AB|323.41|ICD9CM|Ot encph/mye ot inf else|Ot encph/mye ot inf else +C1719350|T047|PT|323.41|ICD9CM|Other encephalitis and encephalomyelitis due to other infections classified elsewhere|Other encephalitis and encephalomyelitis due to other infections classified elsewhere +C1719351|T047|AB|323.42|ICD9CM|Oth myelitis ot inf else|Oth myelitis ot inf else +C1719351|T047|PT|323.42|ICD9CM|Other myelitis due to other infections classified elsewhere|Other myelitis due to other infections classified elsewhere +C1719358|T046|HT|323.5|ICD9CM|Encephalitis, myelitis, and encephalomyelitis following immunization procedures|Encephalitis, myelitis, and encephalomyelitis following immunization procedures +C1719353|T046|AB|323.51|ICD9CM|Enceph/myel folwg immune|Enceph/myel folwg immune +C1719353|T046|PT|323.51|ICD9CM|Encephalitis and encephalomyelitis following immunization procedures|Encephalitis and encephalomyelitis following immunization procedures +C1997588|T047|PT|323.52|ICD9CM|Myelitis following immunization procedures|Myelitis following immunization procedures +C1997588|T047|AB|323.52|ICD9CM|Myelitis follwg immune|Myelitis follwg immune +C1719361|T047|HT|323.6|ICD9CM|Postinfectious encephalitis, myelitis, and encephalomyelitis|Postinfectious encephalitis, myelitis, and encephalomyelitis +C1719722|T047|AB|323.61|ICD9CM|Inf ac dis encephalomyel|Inf ac dis encephalomyel +C1719722|T047|PT|323.61|ICD9CM|Infectious acute disseminated encephalomyelitis (ADEM)|Infectious acute disseminated encephalomyelitis (ADEM) +C1719360|T047|PT|323.62|ICD9CM|Other postinfectious encephalitis and encephalomyelitis|Other postinfectious encephalitis and encephalomyelitis +C1719360|T047|AB|323.62|ICD9CM|Postinf encephalitis NEC|Postinf encephalitis NEC +C0751343|T047|AB|323.63|ICD9CM|Postinfectious myelitis|Postinfectious myelitis +C0751343|T047|PT|323.63|ICD9CM|Postinfectious myelitis|Postinfectious myelitis +C1719364|T037|HT|323.7|ICD9CM|Toxic encephalitis, myelitis, and encephalomyelitis|Toxic encephalitis, myelitis, and encephalomyelitis +C1719362|T047|PT|323.71|ICD9CM|Toxic encephalitis and encephalomyelitis|Toxic encephalitis and encephalomyelitis +C1719362|T047|AB|323.71|ICD9CM|Toxic encph & encephlomy|Toxic encph & encephlomy +C2316057|T047|PT|323.72|ICD9CM|Toxic myelitis|Toxic myelitis +C2316057|T047|AB|323.72|ICD9CM|Toxic myelitis|Toxic myelitis +C1719368|T047|HT|323.8|ICD9CM|Other causes of encephalitis, myelitis, and encephalomyelitis|Other causes of encephalitis, myelitis, and encephalomyelitis +C1719365|T047|AB|323.81|ICD9CM|Enceph & encephlalo NEC|Enceph & encephlalo NEC +C1719365|T047|PT|323.81|ICD9CM|Other causes of encephalitis and encephalomyelitis|Other causes of encephalitis and encephalomyelitis +C1719367|T047|AB|323.82|ICD9CM|Myelitis cause NEC|Myelitis cause NEC +C1719367|T047|PT|323.82|ICD9CM|Other causes of myelitis|Other causes of myelitis +C1719369|T033|AB|323.9|ICD9CM|Encephalitis NOS|Encephalitis NOS +C1719369|T033|PT|323.9|ICD9CM|Unspecified causes of encephalitis, myelitis, and encephalomyelitis|Unspecified causes of encephalitis, myelitis, and encephalomyelitis +C0154660|T047|HT|324|ICD9CM|Intracranial and intraspinal abscess|Intracranial and intraspinal abscess +C0021874|T047|AB|324.0|ICD9CM|Intracranial abscess|Intracranial abscess +C0021874|T047|PT|324.0|ICD9CM|Intracranial abscess|Intracranial abscess +C0154661|T020|AB|324.1|ICD9CM|Intraspinal abscess|Intraspinal abscess +C0154661|T020|PT|324.1|ICD9CM|Intraspinal abscess|Intraspinal abscess +C0154660|T047|AB|324.9|ICD9CM|Cns abscess NOS|Cns abscess NOS +C0154660|T047|PT|324.9|ICD9CM|Intracranial and intraspinal abscess of unspecified site|Intracranial and intraspinal abscess of unspecified site +C0154662|T047|PT|325|ICD9CM|Phlebitis and thrombophlebitis of intracranial venous sinuses|Phlebitis and thrombophlebitis of intracranial venous sinuses +C0154662|T047|AB|325|ICD9CM|Phlebitis intrcran sinus|Phlebitis intrcran sinus +C0154663|T047|AB|326|ICD9CM|Late eff cns abscess|Late eff cns abscess +C0154663|T047|PT|326|ICD9CM|Late effects of intracranial abscess or pyogenic infection|Late effects of intracranial abscess or pyogenic infection +C1561892|T047|HT|327|ICD9CM|Organic sleep disorders|Organic sleep disorders +C1561892|T047|HT|327-327.99|ICD9CM|ORGANIC SLEEP DISORDERS|ORGANIC SLEEP DISORDERS +C1561852|T047|HT|327.0|ICD9CM|Organic disorders of initiating and maintaining sleep [Organic insomnia]|Organic disorders of initiating and maintaining sleep [Organic insomnia] +C0021607|T048|AB|327.00|ICD9CM|Organic insomnia NOS|Organic insomnia NOS +C0021607|T048|PT|327.00|ICD9CM|Organic insomnia, unspecified|Organic insomnia, unspecified +C1561849|T047|PT|327.01|ICD9CM|Insomnia due to medical condition classified elsewhere|Insomnia due to medical condition classified elsewhere +C1561849|T047|AB|327.01|ICD9CM|Insomnia in other dis|Insomnia in other dis +C1561850|T048|AB|327.02|ICD9CM|Insomnia dt mental disor|Insomnia dt mental disor +C1561850|T048|PT|327.02|ICD9CM|Insomnia due to mental disorder|Insomnia due to mental disorder +C1561851|T047|AB|327.09|ICD9CM|Organic insomnia NEC|Organic insomnia NEC +C1561851|T047|PT|327.09|ICD9CM|Other organic insomnia|Other organic insomnia +C1561860|T047|HT|327.1|ICD9CM|Organic disorder of excessive somnolence [Organic hypersomnia]|Organic disorder of excessive somnolence [Organic hypersomnia] +C0270543|T047|AB|327.10|ICD9CM|Organic hypersomnia NOS|Organic hypersomnia NOS +C0270543|T047|PT|327.10|ICD9CM|Organic hypersomnia, unspecified|Organic hypersomnia, unspecified +C2711059|T047|AB|327.11|ICD9CM|Idio hypersom-long sleep|Idio hypersom-long sleep +C2711059|T047|PT|327.11|ICD9CM|Idiopathic hypersomnia with long sleep time|Idiopathic hypersomnia with long sleep time +C1561855|T047|AB|327.12|ICD9CM|Idio hypersom-no lng slp|Idio hypersom-no lng slp +C1561855|T047|PT|327.12|ICD9CM|Idiopathic hypersomnia without long sleep time|Idiopathic hypersomnia without long sleep time +C0751226|T047|AB|327.13|ICD9CM|Recurrent hypersomnia|Recurrent hypersomnia +C0751226|T047|PT|327.13|ICD9CM|Recurrent hypersomnia|Recurrent hypersomnia +C1561857|T047|PT|327.14|ICD9CM|Hypersomnia due to medical condition classified elsewhere|Hypersomnia due to medical condition classified elsewhere +C1561857|T047|AB|327.14|ICD9CM|Hypersomnia in other dis|Hypersomnia in other dis +C1561858|T048|AB|327.15|ICD9CM|Hypersom dt mental disor|Hypersom dt mental disor +C1561858|T048|PT|327.15|ICD9CM|Hypersomnia due to mental disorder|Hypersomnia due to mental disorder +C1561859|T047|AB|327.19|ICD9CM|Organic hypersomnia NEC|Organic hypersomnia NEC +C1561859|T047|PT|327.19|ICD9CM|Other organic hypersomnia|Other organic hypersomnia +C1561861|T047|HT|327.2|ICD9CM|Organic sleep apnea|Organic sleep apnea +C1561861|T047|AB|327.20|ICD9CM|Organic sleep apnea NOS|Organic sleep apnea NOS +C1561861|T047|PT|327.20|ICD9CM|Organic sleep apnea, unspecified|Organic sleep apnea, unspecified +C0751762|T047|AB|327.21|ICD9CM|Prim central sleep apnea|Prim central sleep apnea +C0751762|T047|PT|327.21|ICD9CM|Primary central sleep apnea|Primary central sleep apnea +C1561862|T047|AB|327.22|ICD9CM|High altitude breathing|High altitude breathing +C1561862|T047|PT|327.22|ICD9CM|High altitude periodic breathing|High altitude periodic breathing +C0520679|T047|AB|327.23|ICD9CM|Obstructive sleep apnea|Obstructive sleep apnea +C0520679|T047|PT|327.23|ICD9CM|Obstructive sleep apnea (adult)(pediatric)|Obstructive sleep apnea (adult)(pediatric) +C2711232|T047|AB|327.24|ICD9CM|Idiopath sleep hypovent|Idiopath sleep hypovent +C2711232|T047|PT|327.24|ICD9CM|Idiopathic sleep related non-obstructive alveolar hypoventilation|Idiopathic sleep related non-obstructive alveolar hypoventilation +C1561866|T047|AB|327.25|ICD9CM|Cong cntrl hypovent synd|Cong cntrl hypovent synd +C1561866|T047|PT|327.25|ICD9CM|Congenital central alveolar hypoventilation syndrome|Congenital central alveolar hypoventilation syndrome +C1561867|T047|AB|327.26|ICD9CM|Sleep hypovent oth dis|Sleep hypovent oth dis +C1561867|T047|PT|327.26|ICD9CM|Sleep related hypoventilation/hypoxemia in conditions classifiable elsewhere|Sleep related hypoventilation/hypoxemia in conditions classifiable elsewhere +C1561868|T047|PT|327.27|ICD9CM|Central sleep apnea in conditions classified elsewhere|Central sleep apnea in conditions classified elsewhere +C1561868|T047|AB|327.27|ICD9CM|Cntrl sleep apnea ot dis|Cntrl sleep apnea ot dis +C1561869|T047|AB|327.29|ICD9CM|Organic sleep apnea NEC|Organic sleep apnea NEC +C1561869|T047|PT|327.29|ICD9CM|Other organic sleep apnea|Other organic sleep apnea +C0877792|T046|HT|327.3|ICD9CM|Circadian rhythm sleep disorder|Circadian rhythm sleep disorder +C1561871|T047|AB|327.30|ICD9CM|Circadian rhym sleep NOS|Circadian rhym sleep NOS +C1561871|T047|PT|327.30|ICD9CM|Circadian rhythm sleep disorder, unspecified|Circadian rhythm sleep disorder, unspecified +C0393770|T047|AB|327.31|ICD9CM|Circadian rhy-delay slp|Circadian rhy-delay slp +C0393770|T047|PT|327.31|ICD9CM|Circadian rhythm sleep disorder, delayed sleep phase type|Circadian rhythm sleep disorder, delayed sleep phase type +C0751758|T047|AB|327.32|ICD9CM|Circadian rhy-advc sleep|Circadian rhy-advc sleep +C0751758|T047|PT|327.32|ICD9CM|Circadian rhythm sleep disorder, advanced sleep phase type|Circadian rhythm sleep disorder, advanced sleep phase type +C1561874|T047|AB|327.33|ICD9CM|Circadian rhym-irreg slp|Circadian rhym-irreg slp +C1561874|T047|PT|327.33|ICD9CM|Circadian rhythm sleep disorder, irregular sleep-wake type|Circadian rhythm sleep disorder, irregular sleep-wake type +C0393772|T033|AB|327.34|ICD9CM|Circadian rhym-free run|Circadian rhym-free run +C0393772|T033|PT|327.34|ICD9CM|Circadian rhythm sleep disorder, free-running type|Circadian rhythm sleep disorder, free-running type +C0231311|T047|PT|327.35|ICD9CM|Circadian rhythm sleep disorder, jet lag type|Circadian rhythm sleep disorder, jet lag type +C0231311|T047|AB|327.35|ICD9CM|Circadian rhythm-jetlag|Circadian rhythm-jetlag +C0393773|T047|AB|327.36|ICD9CM|Circadian rhy-shift work|Circadian rhy-shift work +C0393773|T047|PT|327.36|ICD9CM|Circadian rhythm sleep disorder, shift work type|Circadian rhythm sleep disorder, shift work type +C1561878|T047|AB|327.37|ICD9CM|Circadian rhym oth dis|Circadian rhym oth dis +C1561878|T047|PT|327.37|ICD9CM|Circadian rhythm sleep disorder in conditions classified elsewhere|Circadian rhythm sleep disorder in conditions classified elsewhere +C1561879|T047|AB|327.39|ICD9CM|Circadian rhym sleep NEC|Circadian rhym sleep NEC +C1561879|T047|PT|327.39|ICD9CM|Other circadian rhythm sleep disorder|Other circadian rhythm sleep disorder +C1561882|T047|HT|327.4|ICD9CM|Organic parasomnia|Organic parasomnia +C1561882|T047|AB|327.40|ICD9CM|Organic parasomnia NOS|Organic parasomnia NOS +C1561882|T047|PT|327.40|ICD9CM|Organic parasomnia, unspecified|Organic parasomnia, unspecified +C0752295|T048|AB|327.41|ICD9CM|Confusional arousals|Confusional arousals +C0752295|T048|PT|327.41|ICD9CM|Confusional arousals|Confusional arousals +C0751772|T048|AB|327.42|ICD9CM|REM sleep behavior dis|REM sleep behavior dis +C0751772|T048|PT|327.42|ICD9CM|REM sleep behavior disorder|REM sleep behavior disorder +C1561883|T046|PT|327.43|ICD9CM|Recurrent isolated sleep paralysis|Recurrent isolated sleep paralysis +C1561883|T046|AB|327.43|ICD9CM|Recurrnt sleep paralysis|Recurrnt sleep paralysis +C3693456|T047|PT|327.44|ICD9CM|Parasomnia in conditions classified elsewhere|Parasomnia in conditions classified elsewhere +C3693456|T047|AB|327.44|ICD9CM|Parasomnia oth diseases|Parasomnia oth diseases +C1561885|T047|AB|327.49|ICD9CM|Organic parasomnia NEC|Organic parasomnia NEC +C1561885|T047|PT|327.49|ICD9CM|Other organic parasomnia|Other organic parasomnia +C1561890|T047|HT|327.5|ICD9CM|Organic sleep related movement disorders|Organic sleep related movement disorders +C0751774|T047|AB|327.51|ICD9CM|Periodic limb movement|Periodic limb movement +C0751774|T047|PT|327.51|ICD9CM|Periodic limb movement disorder|Periodic limb movement disorder +C1561888|T047|AB|327.52|ICD9CM|Sleep related leg cramps|Sleep related leg cramps +C1561888|T047|PT|327.52|ICD9CM|Sleep related leg cramps|Sleep related leg cramps +C0393774|T047|AB|327.53|ICD9CM|Sleep related bruxism|Sleep related bruxism +C0393774|T047|PT|327.53|ICD9CM|Sleep related bruxism|Sleep related bruxism +C1561889|T047|AB|327.59|ICD9CM|Organic sleep movemt NEC|Organic sleep movemt NEC +C1561889|T047|PT|327.59|ICD9CM|Other organic sleep related movement disorders|Other organic sleep related movement disorders +C1561891|T047|PT|327.8|ICD9CM|Other organic sleep disorders|Other organic sleep disorders +C1561891|T047|AB|327.8|ICD9CM|Sleep organic disord NEC|Sleep organic disord NEC +C0154664|T047|HT|330|ICD9CM|Cerebral degenerations usually manifest in childhood|Cerebral degenerations usually manifest in childhood +C1444208|T047|HT|330-337.99|ICD9CM|HEREDITARY AND DEGENERATIVE DISEASES OF THE CENTRAL NERVOUS SYSTEM|HEREDITARY AND DEGENERATIVE DISEASES OF THE CENTRAL NERVOUS SYSTEM +C0023520|T047|AB|330.0|ICD9CM|Leukodystrophy|Leukodystrophy +C0023520|T047|PT|330.0|ICD9CM|Leukodystrophy|Leukodystrophy +C0007788|T047|AB|330.1|ICD9CM|Cerebral lipidoses|Cerebral lipidoses +C0007788|T047|PT|330.1|ICD9CM|Cerebral lipidoses|Cerebral lipidoses +C1689951|T047|AB|330.2|ICD9CM|Cereb degen in lipidosis|Cereb degen in lipidosis +C1689951|T047|PT|330.2|ICD9CM|Cerebral degeneration in generalized lipidoses|Cerebral degeneration in generalized lipidoses +C0154666|T047|AB|330.3|ICD9CM|Cerb deg chld in oth dis|Cerb deg chld in oth dis +C0154666|T047|PT|330.3|ICD9CM|Cerebral degeneration of childhood in other diseases classified elsewhere|Cerebral degeneration of childhood in other diseases classified elsewhere +C0029753|T047|AB|330.8|ICD9CM|Cereb degen in child NEC|Cereb degen in child NEC +C0029753|T047|PT|330.8|ICD9CM|Other specified cerebral degenerations in childhood|Other specified cerebral degenerations in childhood +C0154667|T047|AB|330.9|ICD9CM|Cereb degen in child NOS|Cereb degen in child NOS +C0154667|T047|PT|330.9|ICD9CM|Unspecified cerebral degeneration in childhood|Unspecified cerebral degeneration in childhood +C0154668|T047|HT|331|ICD9CM|Other cerebral degenerations|Other cerebral degenerations +C0002395|T047|AB|331.0|ICD9CM|Alzheimer's disease|Alzheimer's disease +C0002395|T047|PT|331.0|ICD9CM|Alzheimer's disease|Alzheimer's disease +C0338451|T047|HT|331.1|ICD9CM|Frontotemporal dementia|Frontotemporal dementia +C0236642|T047|AB|331.11|ICD9CM|Pick's disease|Pick's disease +C0236642|T047|PT|331.11|ICD9CM|Pick's disease|Pick's disease +C1260406|T047|AB|331.19|ICD9CM|Frontotemp dementia NEC|Frontotemp dementia NEC +C1260406|T047|PT|331.19|ICD9CM|Other frontotemporal dementia|Other frontotemporal dementia +C0154669|T047|AB|331.2|ICD9CM|Senile degenerat brain|Senile degenerat brain +C0154669|T047|PT|331.2|ICD9CM|Senile degeneration of brain|Senile degeneration of brain +C0009451|T047|AB|331.3|ICD9CM|Communicat hydrocephalus|Communicat hydrocephalus +C0009451|T047|PT|331.3|ICD9CM|Communicating hydrocephalus|Communicating hydrocephalus +C0549423|T047|AB|331.4|ICD9CM|Obstructiv hydrocephalus|Obstructiv hydrocephalus +C0549423|T047|PT|331.4|ICD9CM|Obstructive hydrocephalus|Obstructive hydrocephalus +C1955760|T047|PT|331.5|ICD9CM|Idiopathic normal pressure hydrocephalus (INPH)|Idiopathic normal pressure hydrocephalus (INPH) +C1955760|T047|AB|331.5|ICD9CM|Norml pressure hydroceph|Norml pressure hydroceph +C0393570|T047|PT|331.6|ICD9CM|Corticobasal degeneration|Corticobasal degeneration +C0393570|T047|AB|331.6|ICD9CM|Corticobasal degneration|Corticobasal degneration +C0393647|T047|AB|331.7|ICD9CM|Cereb degen in oth dis|Cereb degen in oth dis +C0393647|T047|PT|331.7|ICD9CM|Cerebral degeneration in diseases classified elsewhere|Cerebral degeneration in diseases classified elsewhere +C0154668|T047|HT|331.8|ICD9CM|Other cerebral degeneration|Other cerebral degeneration +C0035400|T047|AB|331.81|ICD9CM|Reye's syndrome|Reye's syndrome +C0035400|T047|PT|331.81|ICD9CM|Reye's syndrome|Reye's syndrome +C0752347|T047|AB|331.82|ICD9CM|Dementia w Lewy bodies|Dementia w Lewy bodies +C0752347|T047|PT|331.82|ICD9CM|Dementia with lewy bodies|Dementia with lewy bodies +C1719378|T047|AB|331.83|ICD9CM|Mild cognitive impairemt|Mild cognitive impairemt +C1719378|T047|PT|331.83|ICD9CM|Mild cognitive impairment, so stated|Mild cognitive impairment, so stated +C0154668|T047|AB|331.89|ICD9CM|Cereb degeneration NEC|Cereb degeneration NEC +C0154668|T047|PT|331.89|ICD9CM|Other cerebral degeneration|Other cerebral degeneration +C0154671|T047|AB|331.9|ICD9CM|Cereb degeneration NOS|Cereb degeneration NOS +C0154671|T047|PT|331.9|ICD9CM|Cerebral degeneration, unspecified|Cerebral degeneration, unspecified +C0030567|T047|HT|332|ICD9CM|Parkinson's disease|Parkinson's disease +C0030567|T047|AB|332.0|ICD9CM|Paralysis agitans|Paralysis agitans +C0030567|T047|PT|332.0|ICD9CM|Paralysis agitans|Paralysis agitans +C0030569|T047|AB|332.1|ICD9CM|Secondary parkinsonism|Secondary parkinsonism +C0030569|T047|PT|332.1|ICD9CM|Secondary parkinsonism|Secondary parkinsonism +C0154678|T047|HT|333|ICD9CM|Other extrapyramidal disease and abnormal movement disorders|Other extrapyramidal disease and abnormal movement disorders +C0029571|T047|AB|333.0|ICD9CM|Degen basal ganglia NEC|Degen basal ganglia NEC +C0029571|T047|PT|333.0|ICD9CM|Other degenerative diseases of the basal ganglia|Other degenerative diseases of the basal ganglia +C1961111|T184|PT|333.1|ICD9CM|Essential and other specified forms of tremor|Essential and other specified forms of tremor +C1961111|T184|AB|333.1|ICD9CM|Tremor NEC|Tremor NEC +C0027066|T184|AB|333.2|ICD9CM|Myoclonus|Myoclonus +C0027066|T184|PT|333.2|ICD9CM|Myoclonus|Myoclonus +C0702141|T046|AB|333.3|ICD9CM|Tics of organic origin|Tics of organic origin +C0702141|T046|PT|333.3|ICD9CM|Tics of organic origin|Tics of organic origin +C0020179|T047|AB|333.4|ICD9CM|Huntington's chorea|Huntington's chorea +C0020179|T047|PT|333.4|ICD9CM|Huntington's chorea|Huntington's chorea +C0029542|T046|AB|333.5|ICD9CM|Chorea NEC|Chorea NEC +C0029542|T046|PT|333.5|ICD9CM|Other choreas|Other choreas +C0013423|T047|PT|333.6|ICD9CM|Genetic torsion dystonia|Genetic torsion dystonia +C0013423|T047|AB|333.6|ICD9CM|Genetic torsion dystonia|Genetic torsion dystonia +C1719382|T047|HT|333.7|ICD9CM|Acquired torsion dystonia|Acquired torsion dystonia +C0270742|T047|PT|333.71|ICD9CM|Athetoid cerebral palsy|Athetoid cerebral palsy +C0270742|T047|AB|333.71|ICD9CM|Athetoid cerebral palsy|Athetoid cerebral palsy +C0393596|T046|AB|333.72|ICD9CM|Acute dystonia d/t drugs|Acute dystonia d/t drugs +C0393596|T046|PT|333.72|ICD9CM|Acute dystonia due to drugs|Acute dystonia due to drugs +C1719381|T047|AB|333.79|ICD9CM|Acq torsion dystonia NEC|Acq torsion dystonia NEC +C1719381|T047|PT|333.79|ICD9CM|Other acquired torsion dystonia|Other acquired torsion dystonia +C0154675|T047|HT|333.8|ICD9CM|Fragments of torsion dystonia|Fragments of torsion dystonia +C0005747|T047|AB|333.81|ICD9CM|Blepharospasm|Blepharospasm +C0005747|T047|PT|333.81|ICD9CM|Blepharospasm|Blepharospasm +C0152115|T047|AB|333.82|ICD9CM|Orofacial dyskinesia|Orofacial dyskinesia +C0152115|T047|PT|333.82|ICD9CM|Orofacial dyskinesia|Orofacial dyskinesia +C0152116|T184|AB|333.83|ICD9CM|Spasmodic torticollis|Spasmodic torticollis +C0152116|T184|PT|333.83|ICD9CM|Spasmodic torticollis|Spasmodic torticollis +C0154676|T047|AB|333.84|ICD9CM|Organic writers' cramp|Organic writers' cramp +C0154676|T047|PT|333.84|ICD9CM|Organic writers' cramp|Organic writers' cramp +C3662039|T047|AB|333.85|ICD9CM|Subac dyskinesa d/t drug|Subac dyskinesa d/t drug +C3662039|T047|PT|333.85|ICD9CM|Subacute dyskinesia due to drugs|Subacute dyskinesia due to drugs +C0154677|T047|AB|333.89|ICD9CM|Fragm torsion dyston NEC|Fragm torsion dyston NEC +C0154677|T047|PT|333.89|ICD9CM|Other fragments of torsion dystonia|Other fragments of torsion dystonia +C0154678|T047|HT|333.9|ICD9CM|Other and unspecified extrapyramidal diseases and abnormal movement disorders|Other and unspecified extrapyramidal diseases and abnormal movement disorders +C0477355|T047|AB|333.90|ICD9CM|Extrapyramidal dis NOS|Extrapyramidal dis NOS +C0477355|T047|PT|333.90|ICD9CM|Unspecified extrapyramidal disease and abnormal movement disorder|Unspecified extrapyramidal disease and abnormal movement disorder +C0085292|T047|AB|333.91|ICD9CM|Stiff-man syndrome|Stiff-man syndrome +C0085292|T047|PT|333.91|ICD9CM|Stiff-man syndrome|Stiff-man syndrome +C0027849|T047|AB|333.92|ICD9CM|Neuroleptic malgnt synd|Neuroleptic malgnt synd +C0027849|T047|PT|333.92|ICD9CM|Neuroleptic malignant syndrome|Neuroleptic malignant syndrome +C0375200|T047|PT|333.93|ICD9CM|Benign shuddering attacks|Benign shuddering attacks +C0375200|T047|AB|333.93|ICD9CM|Bnign shuddering attacks|Bnign shuddering attacks +C0035258|T047|AB|333.94|ICD9CM|Restless legs syndrome|Restless legs syndrome +C0035258|T047|PT|333.94|ICD9CM|Restless legs syndrome (RLS)|Restless legs syndrome (RLS) +C0154678|T047|AB|333.99|ICD9CM|Extrapyramidal dis NEC|Extrapyramidal dis NEC +C0154678|T047|PT|333.99|ICD9CM|Other extrapyramidal diseases and abnormal movement disorders|Other extrapyramidal diseases and abnormal movement disorders +C0037952|T047|HT|334|ICD9CM|Spinocerebellar disease|Spinocerebellar disease +C0016719|T047|AB|334.0|ICD9CM|Friedreich's ataxia|Friedreich's ataxia +C0016719|T047|PT|334.0|ICD9CM|Friedreich's ataxia|Friedreich's ataxia +C0037773|T047|AB|334.1|ICD9CM|Hered spastic paraplegia|Hered spastic paraplegia +C0037773|T047|PT|334.1|ICD9CM|Hereditary spastic paraplegia|Hereditary spastic paraplegia +C0033132|T047|AB|334.2|ICD9CM|Primary cerebellar degen|Primary cerebellar degen +C0033132|T047|PT|334.2|ICD9CM|Primary cerebellar degeneration|Primary cerebellar degeneration +C0029534|T047|AB|334.3|ICD9CM|Cerebellar ataxia NEC|Cerebellar ataxia NEC +C0029534|T047|PT|334.3|ICD9CM|Other cerebellar ataxia|Other cerebellar ataxia +C0393517|T047|AB|334.4|ICD9CM|Cerebel atax in oth dis|Cerebel atax in oth dis +C0393517|T047|PT|334.4|ICD9CM|Cerebellar ataxia in diseases classified elsewhere|Cerebellar ataxia in diseases classified elsewhere +C0029849|T047|PT|334.8|ICD9CM|Other spinocerebellar diseases|Other spinocerebellar diseases +C0029849|T047|AB|334.8|ICD9CM|Spinocerebellar dis NEC|Spinocerebellar dis NEC +C0037952|T047|AB|334.9|ICD9CM|Spinocerebellar dis NOS|Spinocerebellar dis NOS +C0037952|T047|PT|334.9|ICD9CM|Spinocerebellar disease, unspecified|Spinocerebellar disease, unspecified +C0154681|T047|HT|335|ICD9CM|Anterior horn cell disease|Anterior horn cell disease +C0043116|T047|PT|335.0|ICD9CM|Werdnig-Hoffmann disease|Werdnig-Hoffmann disease +C0043116|T047|AB|335.0|ICD9CM|Werdnig-hoffmann disease|Werdnig-hoffmann disease +C0026847|T047|HT|335.1|ICD9CM|Spinal muscular atrophy|Spinal muscular atrophy +C0026847|T047|AB|335.10|ICD9CM|Spinal muscl atrophy NOS|Spinal muscl atrophy NOS +C0026847|T047|PT|335.10|ICD9CM|Spinal muscular atrophy, unspecified|Spinal muscular atrophy, unspecified +C0152109|T047|AB|335.11|ICD9CM|Kugelberg-welander dis|Kugelberg-welander dis +C0152109|T047|PT|335.11|ICD9CM|Kugelberg-Welander disease|Kugelberg-Welander disease +C0029848|T047|PT|335.19|ICD9CM|Other spinal muscular atrophy|Other spinal muscular atrophy +C0029848|T047|AB|335.19|ICD9CM|Spinal muscl atrophy NEC|Spinal muscl atrophy NEC +C0085084|T047|HT|335.2|ICD9CM|Motor neuron disease|Motor neuron disease +C0002736|T047|PT|335.20|ICD9CM|Amyotrophic lateral sclerosis|Amyotrophic lateral sclerosis +C0002736|T047|AB|335.20|ICD9CM|Amyotrophic sclerosis|Amyotrophic sclerosis +C0917981|T047|AB|335.21|ICD9CM|Prog muscular atrophy|Prog muscular atrophy +C0917981|T047|PT|335.21|ICD9CM|Progressive muscular atrophy|Progressive muscular atrophy +C0030442|T047|AB|335.22|ICD9CM|Progressive bulbar palsy|Progressive bulbar palsy +C0030442|T047|PT|335.22|ICD9CM|Progressive bulbar palsy|Progressive bulbar palsy +C0033790|T047|AB|335.23|ICD9CM|Pseudobulbar palsy|Pseudobulbar palsy +C0033790|T047|PT|335.23|ICD9CM|Pseudobulbar palsy|Pseudobulbar palsy +C0154682|T047|AB|335.24|ICD9CM|Prim lateral sclerosis|Prim lateral sclerosis +C0154682|T047|PT|335.24|ICD9CM|Primary lateral sclerosis|Primary lateral sclerosis +C0154683|T047|AB|335.29|ICD9CM|Motor neuron disease NEC|Motor neuron disease NEC +C0154683|T047|PT|335.29|ICD9CM|Other motor neuron disease|Other motor neuron disease +C0154684|T047|AB|335.8|ICD9CM|Ant horn cell dis NEC|Ant horn cell dis NEC +C0154684|T047|PT|335.8|ICD9CM|Other anterior horn cell diseases|Other anterior horn cell diseases +C0154681|T047|AB|335.9|ICD9CM|Ant horn cell dis NOS|Ant horn cell dis NOS +C0154681|T047|PT|335.9|ICD9CM|Anterior horn cell disease, unspecified|Anterior horn cell disease, unspecified +C0154688|T047|HT|336|ICD9CM|Other diseases of spinal cord|Other diseases of spinal cord +C0039145|T047|AB|336.0|ICD9CM|Syringomyelia|Syringomyelia +C0039145|T047|PT|336.0|ICD9CM|Syringomyelia and syringobulbia|Syringomyelia and syringobulbia +C0154685|T047|AB|336.1|ICD9CM|Vascular myelopathies|Vascular myelopathies +C0154685|T047|PT|336.1|ICD9CM|Vascular myelopathies|Vascular myelopathies +C0154686|T047|AB|336.2|ICD9CM|Comb deg cord in oth dis|Comb deg cord in oth dis +C0154686|T047|PT|336.2|ICD9CM|Subacute combined degeneration of spinal cord in diseases classified elsewhere|Subacute combined degeneration of spinal cord in diseases classified elsewhere +C0154687|T047|AB|336.3|ICD9CM|Myelopathy in oth dis|Myelopathy in oth dis +C0154687|T047|PT|336.3|ICD9CM|Myelopathy in other diseases classified elsewhere|Myelopathy in other diseases classified elsewhere +C1961841|T047|AB|336.8|ICD9CM|Myelopathy NEC|Myelopathy NEC +C1961841|T047|PT|336.8|ICD9CM|Other myelopathy|Other myelopathy +C0037928|T047|AB|336.9|ICD9CM|Spinal cord disease NOS|Spinal cord disease NOS +C0037928|T047|PT|336.9|ICD9CM|Unspecified disease of spinal cord|Unspecified disease of spinal cord +C1145628|T047|HT|337|ICD9CM|Disorders of the autonomic nervous system|Disorders of the autonomic nervous system +C0154690|T047|HT|337.0|ICD9CM|Idiopathic peripheral autonomic neuropathy|Idiopathic peripheral autonomic neuropathy +C2349410|T047|AB|337.00|ICD9CM|Idio perph auto neur NOS|Idio perph auto neur NOS +C2349410|T047|PT|337.00|ICD9CM|Idiopathic peripheral autonomic neuropathy, unspecified|Idiopathic peripheral autonomic neuropathy, unspecified +C0221046|T047|PT|337.01|ICD9CM|Carotid sinus syndrome|Carotid sinus syndrome +C0221046|T047|AB|337.01|ICD9CM|Carotid sinus syndrome|Carotid sinus syndrome +C2349411|T047|AB|337.09|ICD9CM|Idio perph auto neur NEC|Idio perph auto neur NEC +C2349411|T047|PT|337.09|ICD9CM|Other idiopathic peripheral autonomic neuropathy|Other idiopathic peripheral autonomic neuropathy +C0154691|T047|AB|337.1|ICD9CM|Aut neuropthy in oth dis|Aut neuropthy in oth dis +C0154691|T047|PT|337.1|ICD9CM|Peripheral autonomic neuropathy in disorders classified elsewhere|Peripheral autonomic neuropathy in disorders classified elsewhere +C0034931|T047|HT|337.2|ICD9CM|Reflex sympathetic dystrophy|Reflex sympathetic dystrophy +C0034931|T047|PT|337.20|ICD9CM|Reflex sympathetic dystrophy, unspecified|Reflex sympathetic dystrophy, unspecified +C0034931|T047|AB|337.20|ICD9CM|Unsp rflx sympth dystrph|Unsp rflx sympth dystrph +C4040007|T047|PT|337.21|ICD9CM|Reflex sympathetic dystrophy of the upper limb|Reflex sympathetic dystrophy of the upper limb +C4040007|T047|AB|337.21|ICD9CM|Rflx sym dystrph up limb|Rflx sym dystrph up limb +C0745890|T047|PT|337.22|ICD9CM|Reflex sympathetic dystrophy of the lower limb|Reflex sympathetic dystrophy of the lower limb +C0745890|T047|AB|337.22|ICD9CM|Rflx sym dystrph lwr lmb|Rflx sym dystrph lwr lmb +C0375204|T047|PT|337.29|ICD9CM|Reflex sympathetic dystrophy of other specified site|Reflex sympathetic dystrophy of other specified site +C0375204|T047|AB|337.29|ICD9CM|Rflx sym dystrph oth st|Rflx sym dystrph oth st +C0238015|T047|AB|337.3|ICD9CM|Autonomic dysreflexia|Autonomic dysreflexia +C0238015|T047|PT|337.3|ICD9CM|Autonomic dysreflexia|Autonomic dysreflexia +C1145628|T047|AB|337.9|ICD9CM|Autonomic nerve dis NEC|Autonomic nerve dis NEC +C1145628|T047|PT|337.9|ICD9CM|Unspecified disorder of autonomic nervous system|Unspecified disorder of autonomic nervous system +C0995154|T184|HT|338|ICD9CM|Pain, not elsewhere classified|Pain, not elsewhere classified +C0030193|T184|HT|338-338.99|ICD9CM|PAIN|PAIN +C1536114|T047|PT|338.0|ICD9CM|Central pain syndrome|Central pain syndrome +C1536114|T047|AB|338.0|ICD9CM|Central pain syndrome|Central pain syndrome +C0184567|T184|HT|338.1|ICD9CM|Acute pain|Acute pain +C1719389|T047|PT|338.11|ICD9CM|Acute pain due to trauma|Acute pain due to trauma +C1719389|T047|AB|338.11|ICD9CM|Acute pain due to trauma|Acute pain due to trauma +C1719390|T047|AB|338.12|ICD9CM|Acute post-thoracot pain|Acute post-thoracot pain +C1719390|T047|PT|338.12|ICD9CM|Acute post-thoracotomy pain|Acute post-thoracotomy pain +C1719392|T047|AB|338.18|ICD9CM|Acute postop pain NEC|Acute postop pain NEC +C1719392|T047|PT|338.18|ICD9CM|Other acute postoperative pain|Other acute postoperative pain +C1719723|T047|AB|338.19|ICD9CM|Acute pain NEC|Acute pain NEC +C1719723|T047|PT|338.19|ICD9CM|Other acute pain|Other acute pain +C0150055|T184|HT|338.2|ICD9CM|Chronic pain|Chronic pain +C1719393|T047|AB|338.21|ICD9CM|Chronc pain d/t trauma|Chronc pain d/t trauma +C1719393|T047|PT|338.21|ICD9CM|Chronic pain due to trauma|Chronic pain due to trauma +C1719710|T047|AB|338.22|ICD9CM|Chron post-thoracot pain|Chron post-thoracot pain +C1719710|T047|PT|338.22|ICD9CM|Chronic post-thoracotomy pain|Chronic post-thoracotomy pain +C1719394|T047|AB|338.28|ICD9CM|Chronic postop pain NEC|Chronic postop pain NEC +C1719394|T047|PT|338.28|ICD9CM|Other chronic postoperative pain|Other chronic postoperative pain +C0478148|T184|AB|338.29|ICD9CM|Chronic pain NEC|Chronic pain NEC +C0478148|T184|PT|338.29|ICD9CM|Other chronic pain|Other chronic pain +C1719395|T047|AB|338.3|ICD9CM|Neoplasm related pain|Neoplasm related pain +C1719395|T047|PT|338.3|ICD9CM|Neoplasm related pain (acute) (chronic)|Neoplasm related pain (acute) (chronic) +C1298685|T047|PT|338.4|ICD9CM|Chronic pain syndrome|Chronic pain syndrome +C1298685|T047|AB|338.4|ICD9CM|Chronic pain syndrome|Chronic pain syndrome +C0494479|T047|HT|339|ICD9CM|Other headache syndromes|Other headache syndromes +C0494479|T047|HT|339-339.99|ICD9CM|OTHER HEADACHE SYNDROMES|OTHER HEADACHE SYNDROMES +C2349419|T047|HT|339.0|ICD9CM|Cluster headaches and other trigeminal autonomic cephalgias|Cluster headaches and other trigeminal autonomic cephalgias +C0009088|T047|AB|339.00|ICD9CM|Cluster headache syn NOS|Cluster headache syn NOS +C0009088|T047|PT|339.00|ICD9CM|Cluster headache syndrome, unspecified|Cluster headache syndrome, unspecified +C0393739|T047|AB|339.01|ICD9CM|Episodc cluster headache|Episodc cluster headache +C0393739|T047|PT|339.01|ICD9CM|Episodic cluster headache|Episodic cluster headache +C0009088|T047|PT|339.02|ICD9CM|Chronic cluster headache|Chronic cluster headache +C0009088|T047|AB|339.02|ICD9CM|Chronic cluster headache|Chronic cluster headache +C1565171|T047|AB|339.03|ICD9CM|Episdc paroxyml hemicran|Episdc paroxyml hemicran +C1565171|T047|PT|339.03|ICD9CM|Episodic paroxysmal hemicrania|Episodic paroxysmal hemicrania +C0393743|T047|AB|339.04|ICD9CM|Chr paroxysml hemicrania|Chr paroxysml hemicrania +C0393743|T047|PT|339.04|ICD9CM|Chronic paroxysmal hemicrania|Chronic paroxysmal hemicrania +C2349417|T047|PT|339.05|ICD9CM|Short lasting unilateral neuralgiform headache with conjunctival injection and tearing|Short lasting unilateral neuralgiform headache with conjunctival injection and tearing +C2349417|T047|AB|339.05|ICD9CM|Shrt lst uni nral hdache|Shrt lst uni nral hdache +C2349418|T047|PT|339.09|ICD9CM|Other trigeminal autonomic cephalgias|Other trigeminal autonomic cephalgias +C2349418|T047|AB|339.09|ICD9CM|Trigem autonmc cephl NEC|Trigem autonmc cephl NEC +C0033893|T047|HT|339.1|ICD9CM|Tension type headache|Tension type headache +C0033893|T047|AB|339.10|ICD9CM|Tension headache NOS|Tension headache NOS +C0033893|T047|PT|339.10|ICD9CM|Tension type headache, unspecified|Tension type headache, unspecified +C0393737|T047|AB|339.11|ICD9CM|Episdic tension headache|Episdic tension headache +C0393737|T047|PT|339.11|ICD9CM|Episodic tension type headache|Episodic tension type headache +C0393738|T047|AB|339.12|ICD9CM|Chronic tension headache|Chronic tension headache +C0393738|T047|PT|339.12|ICD9CM|Chronic tension type headache|Chronic tension type headache +C0032816|T046|HT|339.2|ICD9CM|Post-traumatic headache|Post-traumatic headache +C0032816|T046|AB|339.20|ICD9CM|Post-trauma headache NOS|Post-trauma headache NOS +C0032816|T046|PT|339.20|ICD9CM|Post-traumatic headache, unspecified|Post-traumatic headache, unspecified +C2349421|T047|AB|339.21|ICD9CM|Ac post-trauma headache|Ac post-trauma headache +C2349421|T047|PT|339.21|ICD9CM|Acute post-traumatic headache|Acute post-traumatic headache +C0393745|T047|AB|339.22|ICD9CM|Chr post-trauma headache|Chr post-trauma headache +C0393745|T047|PT|339.22|ICD9CM|Chronic post-traumatic headache|Chronic post-traumatic headache +C2349422|T047|AB|339.3|ICD9CM|Drug induce headache NEC|Drug induce headache NEC +C2349422|T047|PT|339.3|ICD9CM|Drug induced headache, not elsewhere classified|Drug induced headache, not elsewhere classified +C2349428|T047|HT|339.4|ICD9CM|Complicated headache syndromes|Complicated headache syndromes +C2349425|T047|PT|339.41|ICD9CM|Hemicrania continua|Hemicrania continua +C2349425|T047|AB|339.41|ICD9CM|Hemicrania continua|Hemicrania continua +C2349426|T047|AB|339.42|ICD9CM|New daily pers headache|New daily pers headache +C2349426|T047|PT|339.42|ICD9CM|New daily persistent headache|New daily persistent headache +C0521668|T047|AB|339.43|ICD9CM|Prim thnderclap headache|Prim thnderclap headache +C0521668|T047|PT|339.43|ICD9CM|Primary thunderclap headache|Primary thunderclap headache +C2349427|T047|AB|339.44|ICD9CM|Comp headache synd NEC|Comp headache synd NEC +C2349427|T047|PT|339.44|ICD9CM|Other complicated headache syndrome|Other complicated headache syndrome +C0477374|T047|HT|339.8|ICD9CM|Other specified headache syndromes|Other specified headache syndromes +C0752150|T047|PT|339.81|ICD9CM|Hypnic headache|Hypnic headache +C0752150|T047|AB|339.81|ICD9CM|Hypnic headache|Hypnic headache +C0393754|T184|PT|339.82|ICD9CM|Headache associated with sexual activity|Headache associated with sexual activity +C0393754|T184|AB|339.82|ICD9CM|Headache w sex activity|Headache w sex activity +C0751185|T047|PT|339.83|ICD9CM|Primary cough headache|Primary cough headache +C0751185|T047|AB|339.83|ICD9CM|Primary cough headache|Primary cough headache +C0522253|T047|AB|339.84|ICD9CM|Prim exertion headache|Prim exertion headache +C0522253|T047|PT|339.84|ICD9CM|Primary exertional headache|Primary exertional headache +C0751191|T033|AB|339.85|ICD9CM|Prim stabbing headache|Prim stabbing headache +C0751191|T033|PT|339.85|ICD9CM|Primary stabbing headache|Primary stabbing headache +C0494479|T047|AB|339.89|ICD9CM|Headache syndrome NEC|Headache syndrome NEC +C0494479|T047|PT|339.89|ICD9CM|Other headache syndromes|Other headache syndromes +C0026769|T047|AB|340|ICD9CM|Multiple sclerosis|Multiple sclerosis +C0026769|T047|PT|340|ICD9CM|Multiple sclerosis|Multiple sclerosis +C0178266|T047|HT|340-349.99|ICD9CM|OTHER DISORDERS OF THE CENTRAL NERVOUS SYSTEM|OTHER DISORDERS OF THE CENTRAL NERVOUS SYSTEM +C0154692|T047|HT|341|ICD9CM|Other demyelinating diseases of central nervous system|Other demyelinating diseases of central nervous system +C0027873|T047|AB|341.0|ICD9CM|Neuromyelitis optica|Neuromyelitis optica +C0027873|T047|PT|341.0|ICD9CM|Neuromyelitis optica|Neuromyelitis optica +C0007795|T047|AB|341.1|ICD9CM|Schilder's disease|Schilder's disease +C0007795|T047|PT|341.1|ICD9CM|Schilder's disease|Schilder's disease +C0270627|T047|HT|341.2|ICD9CM|Acute (transverse) myelitis|Acute (transverse) myelitis +C0270627|T047|PT|341.20|ICD9CM|Acute (transverse) myelitis NOS|Acute (transverse) myelitis NOS +C0270627|T047|AB|341.20|ICD9CM|Acute myelitis NOS|Acute myelitis NOS +C1719403|T047|PT|341.21|ICD9CM|Acute (transverse) myelitis in conditions classified elsewhere|Acute (transverse) myelitis in conditions classified elsewhere +C1719403|T047|AB|341.21|ICD9CM|Acute myelitis oth cond|Acute myelitis oth cond +C1719404|T047|AB|341.22|ICD9CM|Idiopathc trans myelitis|Idiopathc trans myelitis +C1719404|T047|PT|341.22|ICD9CM|Idiopathic transverse myelitis|Idiopathic transverse myelitis +C0154692|T047|AB|341.8|ICD9CM|Cns demyelination NEC|Cns demyelination NEC +C0154692|T047|PT|341.8|ICD9CM|Other demyelinating diseases of central nervous system|Other demyelinating diseases of central nervous system +C0011302|T047|AB|341.9|ICD9CM|Cns demyelination NOS|Cns demyelination NOS +C0011302|T047|PT|341.9|ICD9CM|Demyelinating disease of central nervous system, unspecified|Demyelinating disease of central nervous system, unspecified +C0375206|T047|HT|342|ICD9CM|Hemiplegia and hemiparesis|Hemiplegia and hemiparesis +C0154693|T184|HT|342.0|ICD9CM|Flaccid hemiplegia|Flaccid hemiplegia +C0154693|T184|PT|342.00|ICD9CM|Flaccid hemiplegia and hemiparesis affecting unspecified side|Flaccid hemiplegia and hemiparesis affecting unspecified side +C0154693|T184|AB|342.00|ICD9CM|Flccd hmiplga unspf side|Flccd hmiplga unspf side +C0375208|T184|PT|342.01|ICD9CM|Flaccid hemiplegia and hemiparesis affecting dominant side|Flaccid hemiplegia and hemiparesis affecting dominant side +C0375208|T184|AB|342.01|ICD9CM|Flccd hmiplga domnt side|Flccd hmiplga domnt side +C0375209|T184|PT|342.02|ICD9CM|Flaccid hemiplegia and hemiparesis affecting nondominant side|Flaccid hemiplegia and hemiparesis affecting nondominant side +C0375209|T184|AB|342.02|ICD9CM|Flccd hmiplg nondmnt sde|Flccd hmiplg nondmnt sde +C0154694|T047|HT|342.1|ICD9CM|Spastic hemiplegia|Spastic hemiplegia +C0154694|T047|PT|342.10|ICD9CM|Spastic hemiplegia and hemiparesis affecting unspecified side|Spastic hemiplegia and hemiparesis affecting unspecified side +C0154694|T047|AB|342.10|ICD9CM|Spstc hmiplga unspf side|Spstc hmiplga unspf side +C0375211|T184|PT|342.11|ICD9CM|Spastic hemiplegia and hemiparesis affecting dominant side|Spastic hemiplegia and hemiparesis affecting dominant side +C0375211|T184|AB|342.11|ICD9CM|Spstc hmiplga domnt side|Spstc hmiplga domnt side +C0375212|T184|PT|342.12|ICD9CM|Spastic hemiplegia and hemiparesis affecting nondominant side|Spastic hemiplegia and hemiparesis affecting nondominant side +C0375212|T184|AB|342.12|ICD9CM|Spstc hmiplg nondmnt sde|Spstc hmiplg nondmnt sde +C0375213|T184|HT|342.8|ICD9CM|Other specified hemiplegia|Other specified hemiplegia +C0375214|T184|AB|342.80|ICD9CM|Ot sp hmiplga unspf side|Ot sp hmiplga unspf side +C0375214|T184|PT|342.80|ICD9CM|Other specified hemiplegia and hemiparesis affecting unspecified side|Other specified hemiplegia and hemiparesis affecting unspecified side +C0375215|T184|AB|342.81|ICD9CM|Ot sp hmiplga domnt side|Ot sp hmiplga domnt side +C0375215|T184|PT|342.81|ICD9CM|Other specified hemiplegia and hemiparesis affecting dominant side|Other specified hemiplegia and hemiparesis affecting dominant side +C0375216|T184|AB|342.82|ICD9CM|Ot sp hmiplg nondmnt sde|Ot sp hmiplg nondmnt sde +C0375216|T184|PT|342.82|ICD9CM|Other specified hemiplegia and hemiparesis affecting nondominant side|Other specified hemiplegia and hemiparesis affecting nondominant side +C0018991|T184|HT|342.9|ICD9CM|Hemiplegia, unspecified|Hemiplegia, unspecified +C0375218|T184|PT|342.90|ICD9CM|Hemiplegia, unspecified, affecting unspecified side|Hemiplegia, unspecified, affecting unspecified side +C0375218|T184|AB|342.90|ICD9CM|Unsp hemiplga unspf side|Unsp hemiplga unspf side +C0375219|T184|PT|342.91|ICD9CM|Hemiplegia, unspecified, affecting dominant side|Hemiplegia, unspecified, affecting dominant side +C0375219|T184|AB|342.91|ICD9CM|Unsp hemiplga domnt side|Unsp hemiplga domnt side +C0375220|T184|PT|342.92|ICD9CM|Hemiplegia, unspecified, affecting nondominant side|Hemiplegia, unspecified, affecting nondominant side +C0375220|T184|AB|342.92|ICD9CM|Unsp hmiplga nondmnt sde|Unsp hmiplga nondmnt sde +C0392549|T047|HT|343|ICD9CM|Infantile cerebral palsy|Infantile cerebral palsy +C0154695|T047|AB|343.0|ICD9CM|Congenital diplegia|Congenital diplegia +C0154695|T047|PT|343.0|ICD9CM|Congenital diplegia|Congenital diplegia +C0270805|T019|AB|343.1|ICD9CM|Congenital hemiplegia|Congenital hemiplegia +C0270805|T047|AB|343.1|ICD9CM|Congenital hemiplegia|Congenital hemiplegia +C0270805|T019|PT|343.1|ICD9CM|Congenital hemiplegia|Congenital hemiplegia +C0270805|T047|PT|343.1|ICD9CM|Congenital hemiplegia|Congenital hemiplegia +C0154697|T019|AB|343.2|ICD9CM|Congenital quadriplegia|Congenital quadriplegia +C0154697|T047|AB|343.2|ICD9CM|Congenital quadriplegia|Congenital quadriplegia +C0154697|T019|PT|343.2|ICD9CM|Congenital quadriplegia|Congenital quadriplegia +C0154697|T047|PT|343.2|ICD9CM|Congenital quadriplegia|Congenital quadriplegia +C0154698|T047|AB|343.3|ICD9CM|Congenital monoplegia|Congenital monoplegia +C0154698|T047|PT|343.3|ICD9CM|Congenital monoplegia|Congenital monoplegia +C0392550|T047|AB|343.4|ICD9CM|Infantile hemiplegia|Infantile hemiplegia +C0392550|T047|PT|343.4|ICD9CM|Infantile hemiplegia|Infantile hemiplegia +C0029806|T047|AB|343.8|ICD9CM|Cerebral palsy NEC|Cerebral palsy NEC +C0029806|T047|PT|343.8|ICD9CM|Other specified infantile cerebral palsy|Other specified infantile cerebral palsy +C0392549|T047|AB|343.9|ICD9CM|Cerebral palsy NOS|Cerebral palsy NOS +C0392549|T047|PT|343.9|ICD9CM|Infantile cerebral palsy, unspecified|Infantile cerebral palsy, unspecified +C0154700|T047|HT|344|ICD9CM|Other paralytic syndromes|Other paralytic syndromes +C0375221|T047|HT|344.0|ICD9CM|Quadriplegia and quadriparesis|Quadriplegia and quadriparesis +C0034372|T047|AB|344.00|ICD9CM|Quadriplegia, unspecifd|Quadriplegia, unspecifd +C0034372|T047|PT|344.00|ICD9CM|Quadriplegia, unspecified|Quadriplegia, unspecified +C0376129|T047|PT|344.01|ICD9CM|Quadriplegia, C1-C4, complete|Quadriplegia, C1-C4, complete +C0376129|T047|AB|344.01|ICD9CM|Quadrplg c1-c4, complete|Quadrplg c1-c4, complete +C0376130|T047|PT|344.02|ICD9CM|Quadriplegia, C1-C4, incomplete|Quadriplegia, C1-C4, incomplete +C0376130|T047|AB|344.02|ICD9CM|Quadrplg c1-c4, incomplt|Quadrplg c1-c4, incomplt +C0376131|T047|PT|344.03|ICD9CM|Quadriplegia, C5-C7, complete|Quadriplegia, C5-C7, complete +C0376131|T047|AB|344.03|ICD9CM|Quadrplg c5-c7, complete|Quadrplg c5-c7, complete +C0376132|T047|PT|344.04|ICD9CM|Quadriplegia, C5-C7, incomplete|Quadriplegia, C5-C7, incomplete +C0376132|T047|AB|344.04|ICD9CM|Quadrplg c5-c7, incomplt|Quadrplg c5-c7, incomplt +C0375223|T184|AB|344.09|ICD9CM|Other quadriplegia|Other quadriplegia +C0375223|T184|PT|344.09|ICD9CM|Other quadriplegia|Other quadriplegia +C0030486|T047|PT|344.1|ICD9CM|Paraplegia|Paraplegia +C0030486|T047|AB|344.1|ICD9CM|Paraplegia NOS|Paraplegia NOS +C0154701|T047|AB|344.2|ICD9CM|Diplegia of upper limbs|Diplegia of upper limbs +C0154701|T047|PT|344.2|ICD9CM|Diplegia of upper limbs|Diplegia of upper limbs +C0154702|T047|HT|344.3|ICD9CM|Monoplegia of lower limb|Monoplegia of lower limb +C0375224|T184|PT|344.30|ICD9CM|Monoplegia of lower limb affecting unspecified side|Monoplegia of lower limb affecting unspecified side +C0375224|T184|AB|344.30|ICD9CM|Monplga lwr lmb unsp sde|Monplga lwr lmb unsp sde +C0375225|T047|PT|344.31|ICD9CM|Monoplegia of lower limb affecting dominant side|Monoplegia of lower limb affecting dominant side +C0375225|T047|AB|344.31|ICD9CM|Monplga lwr lmb dmnt sde|Monplga lwr lmb dmnt sde +C0859832|T184|AB|344.32|ICD9CM|Mnplg lwr lmb nondmnt sd|Mnplg lwr lmb nondmnt sd +C0859832|T184|PT|344.32|ICD9CM|Monoplegia of lower limb affecting nondominant side|Monoplegia of lower limb affecting nondominant side +C0154703|T047|HT|344.4|ICD9CM|Monoplegia of upper limb|Monoplegia of upper limb +C0154703|T047|PT|344.40|ICD9CM|Monoplegia of upper limb affecting unspecified side|Monoplegia of upper limb affecting unspecified side +C0154703|T047|AB|344.40|ICD9CM|Monplga upr lmb unsp sde|Monplga upr lmb unsp sde +C0375228|T047|PT|344.41|ICD9CM|Monoplegia of upper limb affecting dominant side|Monoplegia of upper limb affecting dominant side +C0375228|T047|AB|344.41|ICD9CM|Monplga upr lmb dmnt sde|Monplga upr lmb dmnt sde +C0375229|T184|AB|344.42|ICD9CM|Mnplg upr lmb nondmnt sd|Mnplg upr lmb nondmnt sd +C0375229|T184|PT|344.42|ICD9CM|Monoplegia of upper limb affecting nondominant sde|Monoplegia of upper limb affecting nondominant sde +C0085622|T047|AB|344.5|ICD9CM|Monoplegia NOS|Monoplegia NOS +C0085622|T047|PT|344.5|ICD9CM|Unspecified monoplegia|Unspecified monoplegia +C0392548|T047|HT|344.6|ICD9CM|Cauda equina syndrome|Cauda equina syndrome +C0270799|T047|AB|344.60|ICD9CM|Cauda equina synd NOS|Cauda equina synd NOS +C0270799|T047|PT|344.60|ICD9CM|Cauda equina syndrome without mention of neurogenic bladder|Cauda equina syndrome without mention of neurogenic bladder +C0007459|T047|PT|344.61|ICD9CM|Cauda equina syndrome with neurogenic bladder|Cauda equina syndrome with neurogenic bladder +C0007459|T047|AB|344.61|ICD9CM|Neurogenic bladder|Neurogenic bladder +C0154706|T047|HT|344.8|ICD9CM|Other specified paralytic syndromes|Other specified paralytic syndromes +C0023944|T047|AB|344.81|ICD9CM|Locked-in state|Locked-in state +C0023944|T047|PT|344.81|ICD9CM|Locked-in state|Locked-in state +C0154706|T047|AB|344.89|ICD9CM|Oth spcf paralytic synd|Oth spcf paralytic synd +C0154706|T047|PT|344.89|ICD9CM|Other specified paralytic syndrome|Other specified paralytic syndrome +C0522224|T033|AB|344.9|ICD9CM|Paralysis NOS|Paralysis NOS +C0522224|T033|PT|344.9|ICD9CM|Paralysis, unspecified|Paralysis, unspecified +C1719410|T047|HT|345|ICD9CM|Epilepsy and recurrent seizures|Epilepsy and recurrent seizures +C0017332|T047|HT|345.0|ICD9CM|Generalized nonconvulsive epilepsy|Generalized nonconvulsive epilepsy +C0154707|T047|AB|345.00|ICD9CM|Gen noncv ep w/o intr ep|Gen noncv ep w/o intr ep +C0154707|T047|PT|345.00|ICD9CM|Generalized nonconvulsive epilepsy, without mention of intractable epilepsy|Generalized nonconvulsive epilepsy, without mention of intractable epilepsy +C1112693|T047|AB|345.01|ICD9CM|Gen nonconv ep w intr ep|Gen nonconv ep w intr ep +C1112693|T047|PT|345.01|ICD9CM|Generalized nonconvulsive epilepsy, with intractable epilepsy|Generalized nonconvulsive epilepsy, with intractable epilepsy +C0311334|T047|HT|345.1|ICD9CM|Generalized convulsive epilepsy|Generalized convulsive epilepsy +C0154709|T047|AB|345.10|ICD9CM|Gen cnv epil w/o intr ep|Gen cnv epil w/o intr ep +C0154709|T047|PT|345.10|ICD9CM|Generalized convulsive epilepsy, without mention of intractable epilepsy|Generalized convulsive epilepsy, without mention of intractable epilepsy +C0154710|T047|AB|345.11|ICD9CM|Gen cnv epil w intr epil|Gen cnv epil w intr epil +C0154710|T047|PT|345.11|ICD9CM|Generalized convulsive epilepsy, with intractable epilepsy|Generalized convulsive epilepsy, with intractable epilepsy +C0270823|T047|AB|345.2|ICD9CM|Petit mal status|Petit mal status +C0270823|T047|PT|345.2|ICD9CM|Petit mal status|Petit mal status +C0311335|T047|AB|345.3|ICD9CM|Grand mal status|Grand mal status +C0311335|T047|PT|345.3|ICD9CM|Grand mal status|Grand mal status +C1306246|T047|AB|345.40|ICD9CM|Psymotr epil w/o int epi|Psymotr epil w/o int epi +C0154713|T047|AB|345.41|ICD9CM|Psymotr epil w intr epil|Psymotr epil w intr epil +C1719407|T047|HT|345.5|ICD9CM|Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures|Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures +C0154714|T047|AB|345.50|ICD9CM|Part epil w/o intr epil|Part epil w/o intr epil +C0154712|T047|AB|345.51|ICD9CM|Part epil w intr epil|Part epil w intr epil +C0037769|T047|HT|345.6|ICD9CM|Infantile spasms|Infantile spasms +C0154715|T046|AB|345.60|ICD9CM|Inf spasm w/o intr epil|Inf spasm w/o intr epil +C0154715|T046|PT|345.60|ICD9CM|Infantile spasms, without mention of intractable epilepsy|Infantile spasms, without mention of intractable epilepsy +C0154716|T046|AB|345.61|ICD9CM|Inf spasm w intract epil|Inf spasm w intract epil +C0154716|T046|PT|345.61|ICD9CM|Infantile spasms, with intractable epilepsy|Infantile spasms, with intractable epilepsy +C0085543|T047|HT|345.7|ICD9CM|Epilepsia partialis continua|Epilepsia partialis continua +C0154717|T047|AB|345.70|ICD9CM|Epil par cont w/o int ep|Epil par cont w/o int ep +C0154717|T047|PT|345.70|ICD9CM|Epilepsia partialis continua, without mention of intractable epilepsy|Epilepsia partialis continua, without mention of intractable epilepsy +C0154718|T047|AB|345.71|ICD9CM|Epil par cont w intr epi|Epil par cont w intr epi +C0154718|T047|PT|345.71|ICD9CM|Epilepsia partialis continua, with intractable epilepsy|Epilepsia partialis continua, with intractable epilepsy +C1719409|T047|HT|345.8|ICD9CM|Other forms of epilepsy and recurrent seizures|Other forms of epilepsy and recurrent seizures +C0154719|T047|AB|345.80|ICD9CM|Epilep NEC w/o intr epil|Epilep NEC w/o intr epil +C0154719|T047|PT|345.80|ICD9CM|Other forms of epilepsy and recurrent seizures, without mention of intractable epilepsy|Other forms of epilepsy and recurrent seizures, without mention of intractable epilepsy +C0154720|T047|AB|345.81|ICD9CM|Epilepsy NEC w intr epil|Epilepsy NEC w intr epil +C0154720|T047|PT|345.81|ICD9CM|Other forms of epilepsy and recurrent seizures, with intractable epilepsy|Other forms of epilepsy and recurrent seizures, with intractable epilepsy +C0014544|T047|HT|345.9|ICD9CM|Epilepsy, unspecified|Epilepsy, unspecified +C0154721|T047|AB|345.90|ICD9CM|Epilep NOS w/o intr epil|Epilep NOS w/o intr epil +C0154721|T047|PT|345.90|ICD9CM|Epilepsy, unspecified, without mention of intractable epilepsy|Epilepsy, unspecified, without mention of intractable epilepsy +C0154722|T047|AB|345.91|ICD9CM|Epilepsy NOS w intr epil|Epilepsy NOS w intr epil +C0154722|T047|PT|345.91|ICD9CM|Epilepsy, unspecified, with intractable epilepsy|Epilepsy, unspecified, with intractable epilepsy +C0149931|T047|HT|346|ICD9CM|Migraine|Migraine +C0154723|T047|HT|346.0|ICD9CM|Migraine with aura|Migraine with aura +C2349432|T047|AB|346.00|ICD9CM|Mgrn w aura wo ntrc mgrn|Mgrn w aura wo ntrc mgrn +C2349432|T047|PT|346.00|ICD9CM|Migraine with aura, without mention of intractable migraine without mention of status migrainosus|Migraine with aura, without mention of intractable migraine without mention of status migrainosus +C2349433|T047|AB|346.01|ICD9CM|Mgrn w aura w ntrc mgrn|Mgrn w aura w ntrc mgrn +C2349433|T047|PT|346.01|ICD9CM|Migraine with aura, with intractable migraine, so stated, without mention of status migrainosus|Migraine with aura, with intractable migraine, so stated, without mention of status migrainosus +C2349434|T047|AB|346.02|ICD9CM|Mgrn w aur wo ntrc mgrn|Mgrn w aur wo ntrc mgrn +C2349434|T047|PT|346.02|ICD9CM|Migraine with aura, without mention of intractable migraine with status migrainosus|Migraine with aura, without mention of intractable migraine with status migrainosus +C2349435|T047|AB|346.03|ICD9CM|Mgrn w aura w ntrc mgrn|Mgrn w aura w ntrc mgrn +C2349435|T047|PT|346.03|ICD9CM|Migraine with aura, with intractable migraine, so stated, with status migrainosus|Migraine with aura, with intractable migraine, so stated, with status migrainosus +C0338480|T047|HT|346.1|ICD9CM|Migraine without aura|Migraine without aura +C2349438|T047|AB|346.10|ICD9CM|Mgrn wo aura wo ntrc mgr|Mgrn wo aura wo ntrc mgr +C2349438|T047|PT|346.10|ICD9CM|Migraine without aura, without mention of intractable migraine without mention of status migrainosus|Migraine without aura, without mention of intractable migraine without mention of status migrainosus +C2349439|T047|AB|346.11|ICD9CM|Mgrn wo aura w ntrc mgrn|Mgrn wo aura w ntrc mgrn +C2349439|T047|PT|346.11|ICD9CM|Migraine without aura, with intractable migraine, so stated, without mention of status migrainosus|Migraine without aura, with intractable migraine, so stated, without mention of status migrainosus +C2349440|T047|AB|346.12|ICD9CM|Mgrn wo aura wo ntrc mgr|Mgrn wo aura wo ntrc mgr +C2349440|T047|PT|346.12|ICD9CM|Migraine without aura, without mention of intractable migraine with status migrainosus|Migraine without aura, without mention of intractable migraine with status migrainosus +C2349441|T047|AB|346.13|ICD9CM|Mgrn wo aura w ntrc mgrn|Mgrn wo aura w ntrc mgrn +C2349441|T047|PT|346.13|ICD9CM|Migraine without aura, with intractable migraine, so stated, with status migrainosus|Migraine without aura, with intractable migraine, so stated, with status migrainosus +C2349446|T047|HT|346.2|ICD9CM|Variants of migraine, not elsewhere classified|Variants of migraine, not elsewhere classified +C2349442|T047|AB|346.20|ICD9CM|Vrnt mgrn wo ntr mgr NEC|Vrnt mgrn wo ntr mgr NEC +C2349443|T047|AB|346.21|ICD9CM|Vrnt mgrn w ntrc mgr NEC|Vrnt mgrn w ntrc mgr NEC +C2349444|T047|AB|346.22|ICD9CM|Var mgr NEC wo ntc mgr|Var mgr NEC wo ntc mgr +C2349445|T047|AB|346.23|ICD9CM|Var mgrn NEC w ntrc mgr|Var mgrn NEC w ntrc mgr +C0270862|T047|HT|346.3|ICD9CM|Hemiplegic migraine|Hemiplegic migraine +C2349449|T047|PT|346.30|ICD9CM|Hemiplegic migraine, without mention of intractable migraine without mention of status migrainosus|Hemiplegic migraine, without mention of intractable migraine without mention of status migrainosus +C2349449|T047|AB|346.30|ICD9CM|Hmplg mgr wo ntrc wo st|Hmplg mgr wo ntrc wo st +C2349450|T047|PT|346.31|ICD9CM|Hemiplegic migraine, with intractable migraine, so stated, without mention of status migrainosus|Hemiplegic migraine, with intractable migraine, so stated, without mention of status migrainosus +C2349450|T047|AB|346.31|ICD9CM|Hmplg mgrn w ntrc wo st|Hmplg mgrn w ntrc wo st +C2349451|T047|PT|346.32|ICD9CM|Hemiplegic migraine, without mention of intractable migraine with status migrainosus|Hemiplegic migraine, without mention of intractable migraine with status migrainosus +C2349451|T047|AB|346.32|ICD9CM|Hemplg mgr wo ntrc w st|Hemplg mgr wo ntrc w st +C2349452|T047|PT|346.33|ICD9CM|Hemiplegic migraine, with intractable migraine, so stated, with status migrainosus|Hemiplegic migraine, with intractable migraine, so stated, with status migrainosus +C2349452|T047|AB|346.33|ICD9CM|Hmplg mgrn w ntrc w st|Hmplg mgrn w ntrc w st +C0269226|T046|HT|346.4|ICD9CM|Menstrual migraine|Menstrual migraine +C2349455|T047|AB|346.40|ICD9CM|Menst mgr wo ntrc wo st|Menst mgr wo ntrc wo st +C2349455|T047|PT|346.40|ICD9CM|Menstrual migraine, without mention of intractable migraine without mention of status migrainosus|Menstrual migraine, without mention of intractable migraine without mention of status migrainosus +C2349456|T047|AB|346.41|ICD9CM|Menstl mgrn w ntrc wo st|Menstl mgrn w ntrc wo st +C2349456|T047|PT|346.41|ICD9CM|Menstrual migraine, with intractable migraine, so stated, without mention of status migrainosus|Menstrual migraine, with intractable migraine, so stated, without mention of status migrainosus +C2349457|T047|AB|346.42|ICD9CM|Menstl mgr wo ntrc w st|Menstl mgr wo ntrc w st +C2349457|T047|PT|346.42|ICD9CM|Menstrual migraine, without mention of intractable migraine with status migrainosus|Menstrual migraine, without mention of intractable migraine with status migrainosus +C2349458|T047|AB|346.43|ICD9CM|Menstl mgrn w ntrc w st|Menstl mgrn w ntrc w st +C2349458|T047|PT|346.43|ICD9CM|Menstrual migraine, with intractable migraine, so stated, with status migrainosus|Menstrual migraine, with intractable migraine, so stated, with status migrainosus +C2349465|T046|HT|346.5|ICD9CM|Persistent migraine aura without cerebral infarction|Persistent migraine aura without cerebral infarction +C2349461|T047|AB|346.50|ICD9CM|Prst aura wo inf/ntr/st|Prst aura wo inf/ntr/st +C2349462|T047|AB|346.51|ICD9CM|Prs ara w ntr wo inf/st|Prs ara w ntr wo inf/st +C2349463|T047|AB|346.52|ICD9CM|Prs ara wo inf/ntr w st|Prs ara wo inf/ntr w st +C2349464|T047|AB|346.53|ICD9CM|Prs ara wo inf w ntr/st|Prs ara wo inf w ntr/st +C2349471|T047|HT|346.6|ICD9CM|Persistent migraine aura with cerebral infarction|Persistent migraine aura with cerebral infarction +C2349467|T047|AB|346.60|ICD9CM|Prs ara w inf wo ntr/st|Prs ara w inf wo ntr/st +C2349468|T047|AB|346.61|ICD9CM|Prs ara w/inf/ntr wo st|Prs ara w/inf/ntr wo st +C2349469|T047|AB|346.62|ICD9CM|Prs ara wo ntr w inf/st|Prs ara wo ntr w inf/st +C2349470|T047|AB|346.63|ICD9CM|Prst ara w inf w ntr/st|Prst ara w inf w ntr/st +C2349476|T047|HT|346.7|ICD9CM|Chronic migraine without aura|Chronic migraine without aura +C2349472|T047|AB|346.70|ICD9CM|Ch mgr wo ar wo nt wo st|Ch mgr wo ar wo nt wo st +C2349473|T047|AB|346.71|ICD9CM|Ch mgr wo ara w nt wo st|Ch mgr wo ara w nt wo st +C2349474|T047|AB|346.72|ICD9CM|Ch mgr wo ara wo nt w st|Ch mgr wo ara wo nt w st +C2349474|T047|PT|346.72|ICD9CM|Chronic migraine without aura, without mention of intractable migraine with status migrainosus|Chronic migraine without aura, without mention of intractable migraine with status migrainosus +C2349475|T047|AB|346.73|ICD9CM|Ch mgr wo ara w ntr w st|Ch mgr wo ara w ntr w st +C2349475|T047|PT|346.73|ICD9CM|Chronic migraine without aura, with intractable migraine, so stated, with status migrainosus|Chronic migraine without aura, with intractable migraine, so stated, with status migrainosus +C0477373|T047|HT|346.8|ICD9CM|Other forms of migraine|Other forms of migraine +C2362836|T047|AB|346.80|ICD9CM|Othr migrne wo ntrc mgrn|Othr migrne wo ntrc mgrn +C2349478|T047|PT|346.81|ICD9CM|Other forms of migraine, with intractable migraine, so stated, without mention of status migrainosus|Other forms of migraine, with intractable migraine, so stated, without mention of status migrainosus +C2349478|T047|AB|346.81|ICD9CM|Othr migrne w ntrc mgrne|Othr migrne w ntrc mgrne +C2349479|T047|AB|346.82|ICD9CM|Oth mgr wo ntrc w st mgr|Oth mgr wo ntrc w st mgr +C2349479|T047|PT|346.82|ICD9CM|Other forms of migraine, without mention of intractable migraine with status migrainosus|Other forms of migraine, without mention of intractable migraine with status migrainosus +C2349480|T047|AB|346.83|ICD9CM|Oth mgr w ntrc w st mgr|Oth mgr w ntrc w st mgr +C2349480|T047|PT|346.83|ICD9CM|Other forms of migraine, with intractable migraine, so stated, with status migrainosus|Other forms of migraine, with intractable migraine, so stated, with status migrainosus +C0149931|T047|HT|346.9|ICD9CM|Migraine, unspecified|Migraine, unspecified +C0375239|T047|PT|346.90|ICD9CM|Migraine, unspecified, without mention of intractable migraine without mention of status migrainosus|Migraine, unspecified, without mention of intractable migraine without mention of status migrainosus +C0375239|T047|AB|346.90|ICD9CM|Migrne unsp wo ntrc mgrn|Migrne unsp wo ntrc mgrn +C0375240|T047|AB|346.91|ICD9CM|Mgrn unsp w ntrc mgr std|Mgrn unsp w ntrc mgr std +C0375240|T047|PT|346.91|ICD9CM|Migraine, unspecified, with intractable migraine, so stated, without mention of status migrainosus|Migraine, unspecified, with intractable migraine, so stated, without mention of status migrainosus +C2349481|T047|AB|346.92|ICD9CM|Mgr NOS wo ntrc w st mgr|Mgr NOS wo ntrc w st mgr +C2349481|T047|PT|346.92|ICD9CM|Migraine, unspecified, without mention of intractable migraine with status migrainosus|Migraine, unspecified, without mention of intractable migraine with status migrainosus +C2349482|T047|AB|346.93|ICD9CM|Mgrn NOS w ntrc w st mgr|Mgrn NOS w ntrc w st mgr +C2349482|T047|PT|346.93|ICD9CM|Migraine, unspecified, with intractable migraine, so stated, with status migrainosus|Migraine, unspecified, with intractable migraine, so stated, with status migrainosus +C0751362|T047|HT|347|ICD9CM|Cataplexy and narcolepsy|Cataplexy and narcolepsy +C0027404|T047|HT|347.0|ICD9CM|Narcolepsy|Narcolepsy +C1456240|T047|AB|347.00|ICD9CM|Narcolepsy w/o cataplexy|Narcolepsy w/o cataplexy +C1456240|T047|PT|347.00|ICD9CM|Narcolepsy, without cataplexy|Narcolepsy, without cataplexy +C0751362|T047|AB|347.01|ICD9CM|Narcolepsy w cataplexy|Narcolepsy w cataplexy +C0751362|T047|PT|347.01|ICD9CM|Narcolepsy, with cataplexy|Narcolepsy, with cataplexy +C1456243|T047|HT|347.1|ICD9CM|Narcolepsy in conditions classified elsewhere|Narcolepsy in conditions classified elsewhere +C1456241|T047|AB|347.10|ICD9CM|Narclpsy w/o cat oth dis|Narclpsy w/o cat oth dis +C1456241|T047|PT|347.10|ICD9CM|Narcolepsy in conditions classified elsewhere, without cataplexy|Narcolepsy in conditions classified elsewhere, without cataplexy +C1456242|T047|PT|347.11|ICD9CM|Narcolepsy in conditions classified elsewhere, with cataplexy|Narcolepsy in conditions classified elsewhere, with cataplexy +C1456242|T047|AB|347.11|ICD9CM|Narcolepsy w cat oth dis|Narcolepsy w cat oth dis +C0029551|T047|HT|348|ICD9CM|Other conditions of brain|Other conditions of brain +C0154724|T047|AB|348.0|ICD9CM|Cerebral cysts|Cerebral cysts +C0154724|T047|PT|348.0|ICD9CM|Cerebral cysts|Cerebral cysts +C0003132|T046|AB|348.1|ICD9CM|Anoxic brain damage|Anoxic brain damage +C0003132|T046|PT|348.1|ICD9CM|Anoxic brain damage|Anoxic brain damage +C0033845|T047|PT|348.2|ICD9CM|Benign intracranial hypertension|Benign intracranial hypertension +C0033845|T047|AB|348.2|ICD9CM|Pseudotumor cerebri|Pseudotumor cerebri +C0085584|T047|HT|348.3|ICD9CM|Encephalopathy, not elsewhere classified|Encephalopathy, not elsewhere classified +C0085584|T047|AB|348.30|ICD9CM|Encephalopathy NOS|Encephalopathy NOS +C0085584|T047|PT|348.30|ICD9CM|Encephalopathy, unspecified|Encephalopathy, unspecified +C0006112|T047|AB|348.31|ICD9CM|Metabolic encephalopathy|Metabolic encephalopathy +C0006112|T047|PT|348.31|ICD9CM|Metabolic encephalopathy|Metabolic encephalopathy +C1260408|T047|AB|348.39|ICD9CM|Encephalopathy NEC|Encephalopathy NEC +C1260408|T047|PT|348.39|ICD9CM|Other encephalopathy|Other encephalopathy +C0009592|T047|AB|348.4|ICD9CM|Compression of brain|Compression of brain +C0009592|T047|PT|348.4|ICD9CM|Compression of brain|Compression of brain +C0006114|T046|AB|348.5|ICD9CM|Cerebral edema|Cerebral edema +C0006114|T046|PT|348.5|ICD9CM|Cerebral edema|Cerebral edema +C0029551|T047|HT|348.8|ICD9CM|Other conditions of brain|Other conditions of brain +C2712987|T047|AB|348.81|ICD9CM|Temporal sclerosis|Temporal sclerosis +C2712987|T047|PT|348.81|ICD9CM|Temporal sclerosis|Temporal sclerosis +C0006110|T046|AB|348.82|ICD9CM|Brain death|Brain death +C0006110|T046|PT|348.82|ICD9CM|Brain death|Brain death +C2712887|T047|AB|348.89|ICD9CM|Brain conditions NEC|Brain conditions NEC +C2712887|T047|PT|348.89|ICD9CM|Other conditions of brain|Other conditions of brain +C0006111|T047|AB|348.9|ICD9CM|Brain condition NOS|Brain condition NOS +C0006111|T047|PT|348.9|ICD9CM|Unspecified condition of brain|Unspecified condition of brain +C0154725|T047|HT|349|ICD9CM|Other and unspecified disorders of the nervous system|Other and unspecified disorders of the nervous system +C0701795|T033|AB|349.0|ICD9CM|Lumbar puncture reaction|Lumbar puncture reaction +C0701795|T033|PT|349.0|ICD9CM|Reaction to spinal or lumbar puncture|Reaction to spinal or lumbar puncture +C0154727|T047|AB|349.1|ICD9CM|Complication cns device|Complication cns device +C0154727|T047|PT|349.1|ICD9CM|Nervous system complications from surgically implanted device|Nervous system complications from surgically implanted device +C0795685|T047|AB|349.2|ICD9CM|Disorder of meninges NEC|Disorder of meninges NEC +C0795685|T047|PT|349.2|ICD9CM|Disorders of meninges, not elsewhere classified|Disorders of meninges, not elsewhere classified +C1504340|T037|HT|349.3|ICD9CM|Dural tear|Dural tear +C2349483|T037|AB|349.31|ICD9CM|Accid punc/op lac dura|Accid punc/op lac dura +C2349483|T037|PT|349.31|ICD9CM|Accidental puncture or laceration of dura during a procedure|Accidental puncture or laceration of dura during a procedure +C2349485|T047|AB|349.39|ICD9CM|Dural tear NEC|Dural tear NEC +C2349485|T047|PT|349.39|ICD9CM|Other dural tear|Other dural tear +C0029784|T047|HT|349.8|ICD9CM|Other specified disorders of nervous system|Other specified disorders of nervous system +C0007815|T047|PT|349.81|ICD9CM|Cerebrospinal fluid rhinorrhea|Cerebrospinal fluid rhinorrhea +C0007815|T047|AB|349.81|ICD9CM|Cerebrospinal rhinorrhea|Cerebrospinal rhinorrhea +C0149504|T037|AB|349.82|ICD9CM|Toxic encephalopathy|Toxic encephalopathy +C0149504|T037|PT|349.82|ICD9CM|Toxic encephalopathy|Toxic encephalopathy +C0029784|T047|AB|349.89|ICD9CM|Cns disorder NEC|Cns disorder NEC +C0029784|T047|PT|349.89|ICD9CM|Other specified disorders of nervous system|Other specified disorders of nervous system +C0027765|T047|AB|349.9|ICD9CM|Cns disorder NOS|Cns disorder NOS +C0027765|T047|PT|349.9|ICD9CM|Unspecified disorders of nervous system|Unspecified disorders of nervous system +C0152177|T047|HT|350|ICD9CM|Trigeminal nerve disorders|Trigeminal nerve disorders +C4721453|T047|HT|350-359.99|ICD9CM|DISORDERS OF THE PERIPHERAL NERVOUS SYSTEM|DISORDERS OF THE PERIPHERAL NERVOUS SYSTEM +C0040997|T047|AB|350.1|ICD9CM|Trigeminal neuralgia|Trigeminal neuralgia +C0040997|T047|PT|350.1|ICD9CM|Trigeminal neuralgia|Trigeminal neuralgia +C0154729|T184|AB|350.2|ICD9CM|Atypical face pain|Atypical face pain +C0154729|T184|PT|350.2|ICD9CM|Atypical face pain|Atypical face pain +C0029834|T047|PT|350.8|ICD9CM|Other specified trigeminal nerve disorders|Other specified trigeminal nerve disorders +C0029834|T047|AB|350.8|ICD9CM|Trigeminal nerve dis NEC|Trigeminal nerve dis NEC +C0152177|T047|AB|350.9|ICD9CM|Trigeminal nerve dis NOS|Trigeminal nerve dis NOS +C0152177|T047|PT|350.9|ICD9CM|Trigeminal nerve disorder, unspecified|Trigeminal nerve disorder, unspecified +C0015464|T047|HT|351|ICD9CM|Facial nerve disorders|Facial nerve disorders +C0376175|T047|AB|351.0|ICD9CM|Bell's palsy|Bell's palsy +C0376175|T047|PT|351.0|ICD9CM|Bell's palsy|Bell's palsy +C0017407|T047|AB|351.1|ICD9CM|Geniculate ganglionitis|Geniculate ganglionitis +C0017407|T047|PT|351.1|ICD9CM|Geniculate ganglionitis|Geniculate ganglionitis +C0029616|T047|AB|351.8|ICD9CM|Facial nerve dis NEC|Facial nerve dis NEC +C0029616|T047|PT|351.8|ICD9CM|Other facial nerve disorders|Other facial nerve disorders +C0015464|T047|AB|351.9|ICD9CM|Facial nerve dis NOS|Facial nerve dis NOS +C0015464|T047|PT|351.9|ICD9CM|Facial nerve disorder, unspecified|Facial nerve disorder, unspecified +C0154730|T047|HT|352|ICD9CM|Disorders of other cranial nerves|Disorders of other cranial nerves +C0751937|T047|PT|352.0|ICD9CM|Disorders of olfactory (1st) nerve|Disorders of olfactory (1st) nerve +C0751937|T047|AB|352.0|ICD9CM|Olfactory nerve disorder|Olfactory nerve disorder +C0154731|T047|AB|352.1|ICD9CM|Glossopharyng neuralgia|Glossopharyng neuralgia +C0154731|T047|PT|352.1|ICD9CM|Glossopharyngeal neuralgia|Glossopharyngeal neuralgia +C0393797|T047|AB|352.2|ICD9CM|Glossophar nerve dis NEC|Glossophar nerve dis NEC +C0393797|T047|PT|352.2|ICD9CM|Other disorders of glossopharyngeal [9th] nerve|Other disorders of glossopharyngeal [9th] nerve +C0152179|T047|PT|352.3|ICD9CM|Disorders of pneumogastric [10th] nerve|Disorders of pneumogastric [10th] nerve +C0152179|T047|AB|352.3|ICD9CM|Pneumogastric nerve dis|Pneumogastric nerve dis +C0152180|T047|AB|352.4|ICD9CM|Accessory nerve disorder|Accessory nerve disorder +C0152180|T047|PT|352.4|ICD9CM|Disorders of accessory [11th] nerve|Disorders of accessory [11th] nerve +C0152181|T047|PT|352.5|ICD9CM|Disorders of hypoglossal [12th] nerve|Disorders of hypoglossal [12th] nerve +C0152181|T047|AB|352.5|ICD9CM|Hypoglossal nerve dis|Hypoglossal nerve dis +C0154733|T047|AB|352.6|ICD9CM|Mult cranial nerve palsy|Mult cranial nerve palsy +C0154733|T047|PT|352.6|ICD9CM|Multiple cranial nerve palsies|Multiple cranial nerve palsies +C0010266|T047|AB|352.9|ICD9CM|Cranial nerve dis NOS|Cranial nerve dis NOS +C0010266|T047|PT|352.9|ICD9CM|Unspecified disorder of cranial nerves|Unspecified disorder of cranial nerves +C0270890|T047|HT|353|ICD9CM|Nerve root and plexus disorders|Nerve root and plexus disorders +C0006091|T047|AB|353.0|ICD9CM|Brachial plexus lesions|Brachial plexus lesions +C0006091|T047|PT|353.0|ICD9CM|Brachial plexus lesions|Brachial plexus lesions +C0154735|T047|AB|353.1|ICD9CM|Lumbosacral plex lesion|Lumbosacral plex lesion +C0154735|T047|PT|353.1|ICD9CM|Lumbosacral plexus lesions|Lumbosacral plexus lesions +C0869208|T047|AB|353.2|ICD9CM|Cervical root lesion NEC|Cervical root lesion NEC +C0869208|T047|PT|353.2|ICD9CM|Cervical root lesions, not elsewhere classified|Cervical root lesions, not elsewhere classified +C0868842|T047|AB|353.3|ICD9CM|Thoracic root lesion NEC|Thoracic root lesion NEC +C0868842|T047|PT|353.3|ICD9CM|Thoracic root lesions, not elsewhere classified|Thoracic root lesions, not elsewhere classified +C0869447|T047|PT|353.4|ICD9CM|Lumbosacral root lesions, not elsewhere classified|Lumbosacral root lesions, not elsewhere classified +C0869447|T047|AB|353.4|ICD9CM|Lumbsacral root les NEC|Lumbsacral root les NEC +C1510479|T047|AB|353.5|ICD9CM|Neuralgic amyotrophy|Neuralgic amyotrophy +C1510479|T047|PT|353.5|ICD9CM|Neuralgic amyotrophy|Neuralgic amyotrophy +C0031315|T047|AB|353.6|ICD9CM|Phantom limb (syndrome)|Phantom limb (syndrome) +C0031315|T047|PT|353.6|ICD9CM|Phantom limb (syndrome)|Phantom limb (syndrome) +C0154739|T047|AB|353.8|ICD9CM|Nerv root/plexus dis NEC|Nerv root/plexus dis NEC +C0154739|T047|PT|353.8|ICD9CM|Other nerve root and plexus disorders|Other nerve root and plexus disorders +C0270890|T047|AB|353.9|ICD9CM|Nerv root/plexus dis NOS|Nerv root/plexus dis NOS +C0270890|T047|PT|353.9|ICD9CM|Unspecified nerve root and plexus disorder|Unspecified nerve root and plexus disorder +C0154741|T047|HT|354|ICD9CM|Mononeuritis of upper limb and mononeuritis multiplex|Mononeuritis of upper limb and mononeuritis multiplex +C0007286|T047|AB|354.0|ICD9CM|Carpal tunnel syndrome|Carpal tunnel syndrome +C0007286|T047|PT|354.0|ICD9CM|Carpal tunnel syndrome|Carpal tunnel syndrome +C0154742|T046|AB|354.1|ICD9CM|Median nerve lesion NEC|Median nerve lesion NEC +C0154742|T046|PT|354.1|ICD9CM|Other lesion of median nerve|Other lesion of median nerve +C1288279|T047|PT|354.2|ICD9CM|Lesion of ulnar nerve|Lesion of ulnar nerve +C1288279|T047|AB|354.2|ICD9CM|Ulnar nerve lesion|Ulnar nerve lesion +C0154744|T047|PT|354.3|ICD9CM|Lesion of radial nerve|Lesion of radial nerve +C0154744|T047|AB|354.3|ICD9CM|Radial nerve lesion|Radial nerve lesion +C1443291|T047|PT|354.4|ICD9CM|Causalgia of upper limb|Causalgia of upper limb +C1443291|T047|AB|354.4|ICD9CM|Causalgia upper limb|Causalgia upper limb +C0151295|T047|AB|354.5|ICD9CM|Mononeuritis multiplex|Mononeuritis multiplex +C0151295|T047|PT|354.5|ICD9CM|Mononeuritis multiplex|Mononeuritis multiplex +C0154745|T047|AB|354.8|ICD9CM|Mononeuritis arm NEC|Mononeuritis arm NEC +C0154745|T047|PT|354.8|ICD9CM|Other mononeuritis of upper limb|Other mononeuritis of upper limb +C0154746|T047|AB|354.9|ICD9CM|Mononeuritis arm NOS|Mononeuritis arm NOS +C0154746|T047|PT|354.9|ICD9CM|Mononeuritis of upper limb, unspecified|Mononeuritis of upper limb, unspecified +C0154747|T047|HT|355|ICD9CM|Mononeuritis of lower limb|Mononeuritis of lower limb +C0154748|T047|PT|355.0|ICD9CM|Lesion of sciatic nerve|Lesion of sciatic nerve +C0154748|T047|AB|355.0|ICD9CM|Sciatic nerve lesion|Sciatic nerve lesion +C0152110|T047|AB|355.1|ICD9CM|Meralgia paresthetica|Meralgia paresthetica +C0152110|T047|PT|355.1|ICD9CM|Meralgia paresthetica|Meralgia paresthetica +C0154749|T047|AB|355.2|ICD9CM|Femoral nerve lesion NEC|Femoral nerve lesion NEC +C0154749|T047|PT|355.2|ICD9CM|Other lesion of femoral nerve|Other lesion of femoral nerve +C0270909|T047|AB|355.3|ICD9CM|Lat popliteal nerve les|Lat popliteal nerve les +C0270909|T047|PT|355.3|ICD9CM|Lesion of lateral popliteal nerve|Lesion of lateral popliteal nerve +C1302325|T047|PT|355.4|ICD9CM|Lesion of medial popliteal nerve|Lesion of medial popliteal nerve +C1302325|T047|AB|355.4|ICD9CM|Med popliteal nerve les|Med popliteal nerve les +C0039319|T047|AB|355.5|ICD9CM|Tarsal tunnel syndrome|Tarsal tunnel syndrome +C0039319|T047|PT|355.5|ICD9CM|Tarsal tunnel syndrome|Tarsal tunnel syndrome +C0154752|T047|PT|355.6|ICD9CM|Lesion of plantar nerve|Lesion of plantar nerve +C0154752|T047|AB|355.6|ICD9CM|Plantar nerve lesion|Plantar nerve lesion +C0154753|T047|HT|355.7|ICD9CM|Other mononeuritis of lower limb|Other mononeuritis of lower limb +C0375242|T047|AB|355.71|ICD9CM|Causalgia lower limb|Causalgia lower limb +C0375242|T047|PT|355.71|ICD9CM|Causalgia of lower limb|Causalgia of lower limb +C0154753|T047|AB|355.79|ICD9CM|Oth mononeur lower limb|Oth mononeur lower limb +C0154753|T047|PT|355.79|ICD9CM|Other mononeuritis of lower limb|Other mononeuritis of lower limb +C0154747|T047|AB|355.8|ICD9CM|Mononeuritis leg NOS|Mononeuritis leg NOS +C0154747|T047|PT|355.8|ICD9CM|Mononeuritis of lower limb, unspecified|Mononeuritis of lower limb, unspecified +C0235880|T047|AB|355.9|ICD9CM|Mononeuritis NOS|Mononeuritis NOS +C0235880|T047|PT|355.9|ICD9CM|Mononeuritis of unspecified site|Mononeuritis of unspecified site +C0154754|T047|HT|356|ICD9CM|Hereditary and idiopathic peripheral neuropathy|Hereditary and idiopathic peripheral neuropathy +C0392553|T047|AB|356.0|ICD9CM|Hered periph neuropathy|Hered periph neuropathy +C0392553|T047|PT|356.0|ICD9CM|Hereditary peripheral neuropathy|Hereditary peripheral neuropathy +C0007959|T047|AB|356.1|ICD9CM|Peroneal muscle atrophy|Peroneal muscle atrophy +C0007959|T047|PT|356.1|ICD9CM|Peroneal muscular atrophy|Peroneal muscular atrophy +C0699739|T047|AB|356.2|ICD9CM|Hered sensory neuropathy|Hered sensory neuropathy +C0699739|T047|PT|356.2|ICD9CM|Hereditary sensory neuropathy|Hereditary sensory neuropathy +C0034960|T047|AB|356.3|ICD9CM|Refsum's disease|Refsum's disease +C0034960|T047|PT|356.3|ICD9CM|Refsum's disease|Refsum's disease +C0154756|T047|AB|356.4|ICD9CM|Idio prog polyneuropathy|Idio prog polyneuropathy +C0154756|T047|PT|356.4|ICD9CM|Idiopathic progressive polyneuropathy|Idiopathic progressive polyneuropathy +C0154757|T047|AB|356.8|ICD9CM|Idio periph neurpthy NEC|Idio periph neurpthy NEC +C0154757|T047|PT|356.8|ICD9CM|Other specified idiopathic peripheral neuropathy|Other specified idiopathic peripheral neuropathy +C0859673|T047|AB|356.9|ICD9CM|Idio periph neurpthy NOS|Idio periph neurpthy NOS +C0859673|T047|PT|356.9|ICD9CM|Unspecified hereditary and idiopathic peripheral neuropathy|Unspecified hereditary and idiopathic peripheral neuropathy +C0154758|T046|HT|357|ICD9CM|Inflammatory and toxic neuropathy|Inflammatory and toxic neuropathy +C3542501|T047|AB|357.0|ICD9CM|Ac infect polyneuritis|Ac infect polyneuritis +C3542501|T047|PT|357.0|ICD9CM|Acute infective polyneuritis|Acute infective polyneuritis +C0154759|T047|AB|357.1|ICD9CM|Neurpthy in col vasc dis|Neurpthy in col vasc dis +C0154759|T047|PT|357.1|ICD9CM|Polyneuropathy in collagen vascular disease|Polyneuropathy in collagen vascular disease +C0271680|T047|AB|357.2|ICD9CM|Neuropathy in diabetes|Neuropathy in diabetes +C0271680|T047|PT|357.2|ICD9CM|Polyneuropathy in diabetes|Polyneuropathy in diabetes +C0270932|T047|AB|357.3|ICD9CM|Neuropathy in malig dis|Neuropathy in malig dis +C0270932|T047|PT|357.3|ICD9CM|Polyneuropathy in malignant disease|Polyneuropathy in malignant disease +C0154761|T047|AB|357.4|ICD9CM|Neuropathy in other dis|Neuropathy in other dis +C0154761|T047|PT|357.4|ICD9CM|Polyneuropathy in other diseases classified elsewhere|Polyneuropathy in other diseases classified elsewhere +C0085677|T047|AB|357.5|ICD9CM|Alcoholic polyneuropathy|Alcoholic polyneuropathy +C0085677|T047|PT|357.5|ICD9CM|Alcoholic polyneuropathy|Alcoholic polyneuropathy +C0154762|T047|AB|357.6|ICD9CM|Neuropathy due to drugs|Neuropathy due to drugs +C0154762|T047|PT|357.6|ICD9CM|Polyneuropathy due to drugs|Polyneuropathy due to drugs +C0154763|T047|AB|357.7|ICD9CM|Neurpthy toxic agent NEC|Neurpthy toxic agent NEC +C0154763|T047|PT|357.7|ICD9CM|Polyneuropathy due to other toxic agents|Polyneuropathy due to other toxic agents +C0154764|T047|HT|357.8|ICD9CM|Other inflammatory and toxic neuropathies|Other inflammatory and toxic neuropathies +C0393819|T047|AB|357.81|ICD9CM|Chr inflam polyneuritis|Chr inflam polyneuritis +C0393819|T047|PT|357.81|ICD9CM|Chronic inflammatory demyelinating polyneuritis|Chronic inflammatory demyelinating polyneuritis +C0393851|T047|AB|357.82|ICD9CM|Crit illness neuropathy|Crit illness neuropathy +C0393851|T047|PT|357.82|ICD9CM|Critical illness polyneuropathy|Critical illness polyneuropathy +C0154764|T047|AB|357.89|ICD9CM|Inflam/tox neuropthy NEC|Inflam/tox neuropthy NEC +C0154764|T047|PT|357.89|ICD9CM|Other inflammatory and toxic neuropathy|Other inflammatory and toxic neuropathy +C0154758|T046|AB|357.9|ICD9CM|Inflam/tox neuropthy NOS|Inflam/tox neuropthy NOS +C0154758|T046|PT|357.9|ICD9CM|Unspecified inflammatory and toxic neuropathy|Unspecified inflammatory and toxic neuropathy +C0027868|T047|HT|358|ICD9CM|Myoneural disorders|Myoneural disorders +C0026896|T047|HT|358.0|ICD9CM|Myasthenia gravis|Myasthenia gravis +C1260409|T047|PT|358.00|ICD9CM|Myasthenia gravis without (acute) exacerbation|Myasthenia gravis without (acute) exacerbation +C1260409|T047|AB|358.00|ICD9CM|Mysthna grvs w/o ac exac|Mysthna grvs w/o ac exac +C0270942|T047|PT|358.01|ICD9CM|Myasthenia gravis with (acute) exacerbation|Myasthenia gravis with (acute) exacerbation +C0270942|T047|AB|358.01|ICD9CM|Myasthna gravs w ac exac|Myasthna gravs w ac exac +C0026897|T047|AB|358.1|ICD9CM|Myasthenia in oth dis|Myasthenia in oth dis +C0026897|T047|PT|358.1|ICD9CM|Myasthenic syndromes in diseases classified elsewhere|Myasthenic syndromes in diseases classified elsewhere +C0393939|T047|AB|358.2|ICD9CM|Toxic myoneural disorder|Toxic myoneural disorder +C0393939|T047|PT|358.2|ICD9CM|Toxic myoneural disorders|Toxic myoneural disorders +C0022972|T047|HT|358.3|ICD9CM|Lambert-Eaton syndrome|Lambert-Eaton syndrome +C3161080|T047|AB|358.30|ICD9CM|Lambert-Eaton synd NOS|Lambert-Eaton synd NOS +C3161080|T047|PT|358.30|ICD9CM|Lambert-Eaton syndrome, unspecified|Lambert-Eaton syndrome, unspecified +C3161081|T047|AB|358.31|ICD9CM|Lambert-Eaton synd neopl|Lambert-Eaton synd neopl +C3161081|T047|PT|358.31|ICD9CM|Lambert-Eaton syndrome in neoplastic disease|Lambert-Eaton syndrome in neoplastic disease +C3161082|T047|AB|358.39|ICD9CM|Lambert-Eaton syn ot dis|Lambert-Eaton syn ot dis +C3161082|T047|PT|358.39|ICD9CM|Lambert-Eaton syndrome in other diseases classified elsewhere|Lambert-Eaton syndrome in other diseases classified elsewhere +C0029816|T047|AB|358.8|ICD9CM|Myoneural disorders NEC|Myoneural disorders NEC +C0029816|T047|PT|358.8|ICD9CM|Other specified myoneural disorders|Other specified myoneural disorders +C0027868|T047|AB|358.9|ICD9CM|Myoneural disorders NOS|Myoneural disorders NOS +C0027868|T047|PT|358.9|ICD9CM|Myoneural disorders, unspecified|Myoneural disorders, unspecified +C0026849|T047|HT|359|ICD9CM|Muscular dystrophies and other myopathies|Muscular dystrophies and other myopathies +C2937300|T019|AB|359.0|ICD9CM|Cong hered musc dystrphy|Cong hered musc dystrphy +C2937300|T047|AB|359.0|ICD9CM|Cong hered musc dystrphy|Cong hered musc dystrphy +C2937300|T019|PT|359.0|ICD9CM|Congenital hereditary muscular dystrophy|Congenital hereditary muscular dystrophy +C2937300|T047|PT|359.0|ICD9CM|Congenital hereditary muscular dystrophy|Congenital hereditary muscular dystrophy +C4551827|T047|AB|359.1|ICD9CM|Hered prog musc dystrphy|Hered prog musc dystrphy +C4551827|T047|PT|359.1|ICD9CM|Hereditary progressive muscular dystrophy|Hereditary progressive muscular dystrophy +C0553604|T047|HT|359.2|ICD9CM|Myotonic disorders|Myotonic disorders +C0027126|T047|AB|359.21|ICD9CM|Myotonic musclr dystrphy|Myotonic musclr dystrphy +C0027126|T047|PT|359.21|ICD9CM|Myotonic muscular dystrophy|Myotonic muscular dystrophy +C0027127|T047|PT|359.22|ICD9CM|Myotonia congenita|Myotonia congenita +C0027127|T047|AB|359.22|ICD9CM|Myotonia congenita|Myotonia congenita +C0036391|T047|PT|359.23|ICD9CM|Myotonic chondrodystrophy|Myotonic chondrodystrophy +C0036391|T047|AB|359.23|ICD9CM|Myotonic chondrodystrphy|Myotonic chondrodystrphy +C1404542|T046|AB|359.24|ICD9CM|Drug induced myotonia|Drug induced myotonia +C1404542|T046|PT|359.24|ICD9CM|Drug- induced myotonia|Drug- induced myotonia +C0410224|T047|AB|359.29|ICD9CM|Myotonic disorder NEC|Myotonic disorder NEC +C0410224|T047|PT|359.29|ICD9CM|Other specified myotonic disorder|Other specified myotonic disorder +C1279412|T047|PT|359.3|ICD9CM|Periodic paralysis|Periodic paralysis +C1279412|T047|AB|359.3|ICD9CM|Periodic paralysis|Periodic paralysis +C0154769|T047|AB|359.4|ICD9CM|Toxic myopathy|Toxic myopathy +C0154769|T047|PT|359.4|ICD9CM|Toxic myopathy|Toxic myopathy +C0154770|T047|AB|359.5|ICD9CM|Myopathy in endocrin dis|Myopathy in endocrin dis +C0154770|T047|PT|359.5|ICD9CM|Myopathy in endocrine diseases classified elsewhere|Myopathy in endocrine diseases classified elsewhere +C0154771|T047|AB|359.6|ICD9CM|Infl myopathy in oth dis|Infl myopathy in oth dis +C0154771|T047|PT|359.6|ICD9CM|Symptomatic inflammatory myopathy in diseases classified elsewhere|Symptomatic inflammatory myopathy in diseases classified elsewhere +C2712761|T047|HT|359.7|ICD9CM|Inflammatory and immune myopathies, NEC|Inflammatory and immune myopathies, NEC +C0238190|T047|AB|359.71|ICD9CM|Inclusion body myositis|Inclusion body myositis +C0238190|T047|PT|359.71|ICD9CM|Inclusion body myositis|Inclusion body myositis +C2712808|T047|AB|359.79|ICD9CM|Inflm/immune myopath NEC|Inflm/immune myopath NEC +C2712808|T047|PT|359.79|ICD9CM|Other inflammatory and immune myopathies, NEC|Other inflammatory and immune myopathies, NEC +C0546839|T047|HT|359.8|ICD9CM|Other myopathies|Other myopathies +C1135188|T047|PT|359.81|ICD9CM|Critical illness myopathy|Critical illness myopathy +C1135188|T047|AB|359.81|ICD9CM|Critical illness myopthy|Critical illness myopthy +C0546839|T047|AB|359.89|ICD9CM|Myopathies NEC|Myopathies NEC +C0546839|T047|PT|359.89|ICD9CM|Other myopathies|Other myopathies +C0026848|T047|AB|359.9|ICD9CM|Myopathy NOS|Myopathy NOS +C0026848|T047|PT|359.9|ICD9CM|Myopathy, unspecified|Myopathy, unspecified +C0015397|T047|HT|360|ICD9CM|Disorders of the globe|Disorders of the globe +C1314803|T047|HT|360-379.99|ICD9CM|DISORDERS OF THE EYE AND ADNEXA|DISORDERS OF THE EYE AND ADNEXA +C0259800|T047|HT|360.0|ICD9CM|Purulent endophthalmitis|Purulent endophthalmitis +C0259800|T047|AB|360.00|ICD9CM|Purulent endophthalm NOS|Purulent endophthalm NOS +C0259800|T047|PT|360.00|ICD9CM|Purulent endophthalmitis, unspecified|Purulent endophthalmitis, unspecified +C0154773|T047|AB|360.01|ICD9CM|Acute endophthalmitis|Acute endophthalmitis +C0154773|T047|PT|360.01|ICD9CM|Acute endophthalmitis|Acute endophthalmitis +C0030332|T047|AB|360.02|ICD9CM|Panophthalmitis|Panophthalmitis +C0030332|T047|PT|360.02|ICD9CM|Panophthalmitis|Panophthalmitis +C0154774|T047|AB|360.03|ICD9CM|Chronic endophthalmitis|Chronic endophthalmitis +C0154774|T047|PT|360.03|ICD9CM|Chronic endophthalmitis|Chronic endophthalmitis +C0042904|T047|AB|360.04|ICD9CM|Vitreous abscess|Vitreous abscess +C0042904|T047|PT|360.04|ICD9CM|Vitreous abscess|Vitreous abscess +C0029610|T047|HT|360.1|ICD9CM|Other endophthalmitis|Other endophthalmitis +C0029077|T047|AB|360.11|ICD9CM|Sympathetic uveitis|Sympathetic uveitis +C0029077|T047|PT|360.11|ICD9CM|Sympathetic uveitis|Sympathetic uveitis +C0030343|T047|AB|360.12|ICD9CM|Panuveitis|Panuveitis +C0030343|T047|PT|360.12|ICD9CM|Panuveitis|Panuveitis +C0014238|T047|AB|360.13|ICD9CM|Parasitic endophthal NOS|Parasitic endophthal NOS +C0014238|T047|PT|360.13|ICD9CM|Parasitic endophthalmitis NOS|Parasitic endophthalmitis NOS +C0154775|T047|AB|360.14|ICD9CM|Ophthalmia nodosa|Ophthalmia nodosa +C0154775|T047|PT|360.14|ICD9CM|Ophthalmia nodosa|Ophthalmia nodosa +C0029610|T047|AB|360.19|ICD9CM|Endophthalmitis NEC|Endophthalmitis NEC +C0029610|T047|PT|360.19|ICD9CM|Other endophthalmitis|Other endophthalmitis +C0154777|T047|HT|360.2|ICD9CM|Degenerative disorders of globe|Degenerative disorders of globe +C0154777|T047|AB|360.20|ICD9CM|Degenerat globe dis NOS|Degenerat globe dis NOS +C0154777|T047|PT|360.20|ICD9CM|Degenerative disorder of globe, unspecified|Degenerative disorder of globe, unspecified +C0154778|T047|PT|360.21|ICD9CM|Progressive high (degenerative) myopia|Progressive high (degenerative) myopia +C0154778|T047|AB|360.21|ICD9CM|Progressive high myopia|Progressive high myopia +C0271001|T047|AB|360.23|ICD9CM|Siderosis|Siderosis +C0271001|T047|PT|360.23|ICD9CM|Siderosis of globe|Siderosis of globe +C0339034|T047|PT|360.24|ICD9CM|Other metallosis of globe|Other metallosis of globe +C0339034|T047|AB|360.24|ICD9CM|Other metallosis, eye|Other metallosis, eye +C0154780|T047|AB|360.29|ICD9CM|Degenerative globe NEC|Degenerative globe NEC +C0154780|T047|PT|360.29|ICD9CM|Other degenerative disorders of globe|Other degenerative disorders of globe +C0028841|T047|HT|360.3|ICD9CM|Hypotony of eye|Hypotony of eye +C0028841|T047|AB|360.30|ICD9CM|Hypotony NOS, eye|Hypotony NOS, eye +C0028841|T047|PT|360.30|ICD9CM|Hypotony of eye, unspecified|Hypotony of eye, unspecified +C0154782|T047|AB|360.31|ICD9CM|Primary hypotony|Primary hypotony +C0154782|T047|PT|360.31|ICD9CM|Primary hypotony of eye|Primary hypotony of eye +C0154783|T190|AB|360.32|ICD9CM|Hypotony due to fistula|Hypotony due to fistula +C0154783|T190|PT|360.32|ICD9CM|Ocular fistula causing hypotony|Ocular fistula causing hypotony +C0154784|T047|PT|360.33|ICD9CM|Hypotony associated with other ocular disorders|Hypotony associated with other ocular disorders +C0154784|T047|AB|360.33|ICD9CM|Hypotony w eye dis NEC|Hypotony w eye dis NEC +C0271004|T190|AB|360.34|ICD9CM|Flat anterior chamber|Flat anterior chamber +C0271004|T190|PT|360.34|ICD9CM|Flat anterior chamber of eye|Flat anterior chamber of eye +C0154777|T047|HT|360.4|ICD9CM|Degenerated conditions of globe|Degenerated conditions of globe +C0154777|T047|PT|360.40|ICD9CM|Degenerated globe or eye, unspecified|Degenerated globe or eye, unspecified +C0154777|T047|AB|360.40|ICD9CM|Degeneration of eye NOS|Degeneration of eye NOS +C0154788|T047|AB|360.41|ICD9CM|Blind hypotensive eye|Blind hypotensive eye +C0154788|T047|PT|360.41|ICD9CM|Blind hypotensive eye|Blind hypotensive eye +C0154789|T047|AB|360.42|ICD9CM|Blind hypertensive eye|Blind hypertensive eye +C0154789|T047|PT|360.42|ICD9CM|Blind hypertensive eye|Blind hypertensive eye +C1576412|T046|AB|360.43|ICD9CM|Hemophthalmos|Hemophthalmos +C1576412|T046|PT|360.43|ICD9CM|Hemophthalmos, except current injury|Hemophthalmos, except current injury +C0152458|T047|AB|360.44|ICD9CM|Leucocoria|Leucocoria +C0152458|T047|PT|360.44|ICD9CM|Leucocoria|Leucocoria +C0271008|T046|HT|360.5|ICD9CM|Retained (old) intraocular foreign body, magnetic|Retained (old) intraocular foreign body, magnetic +C0271008|T046|PT|360.50|ICD9CM|Foreign body, magnetic, intraocular, unspecified|Foreign body, magnetic, intraocular, unspecified +C0271008|T046|AB|360.50|ICD9CM|Old magnet fb, eye NOS|Old magnet fb, eye NOS +C0154792|T047|PT|360.51|ICD9CM|Foreign body, magnetic, in anterior chamber of eye|Foreign body, magnetic, in anterior chamber of eye +C0154792|T047|AB|360.51|ICD9CM|Old magnet fb, ant chamb|Old magnet fb, ant chamb +C0154793|T047|PT|360.52|ICD9CM|Foreign body, magnetic, in iris or ciliary body|Foreign body, magnetic, in iris or ciliary body +C0154793|T047|AB|360.52|ICD9CM|Old magnet fb, iris|Old magnet fb, iris +C0154794|T037|PT|360.53|ICD9CM|Foreign body, magnetic, in lens|Foreign body, magnetic, in lens +C0154794|T037|AB|360.53|ICD9CM|Old magnet fb, lens|Old magnet fb, lens +C0154795|T037|PT|360.54|ICD9CM|Foreign body, magnetic, in vitreous|Foreign body, magnetic, in vitreous +C0154795|T037|AB|360.54|ICD9CM|Old magnet fb, vitreous|Old magnet fb, vitreous +C0154796|T047|PT|360.55|ICD9CM|Foreign body, magnetic, in posterior wall|Foreign body, magnetic, in posterior wall +C0154796|T047|AB|360.55|ICD9CM|Old magnet fb, post wall|Old magnet fb, post wall +C0154797|T047|PT|360.59|ICD9CM|Intraocular foreign body, magnetic, in other or multiple sites|Intraocular foreign body, magnetic, in other or multiple sites +C0154797|T047|AB|360.59|ICD9CM|Old magnet fb, eye NEC|Old magnet fb, eye NEC +C0271015|T046|HT|360.6|ICD9CM|Retained (old) intraocular foreign body, nonmagnetic|Retained (old) intraocular foreign body, nonmagnetic +C0015401|T037|PT|360.60|ICD9CM|Foreign body, intraocular, unspecified|Foreign body, intraocular, unspecified +C0015401|T037|AB|360.60|ICD9CM|Intraocular FB NOS|Intraocular FB NOS +C0154799|T037|AB|360.61|ICD9CM|FB in anterior chamber|FB in anterior chamber +C0154799|T037|PT|360.61|ICD9CM|Foreign body in anterior chamber|Foreign body in anterior chamber +C0154800|T047|AB|360.62|ICD9CM|FB in iris or ciliary|FB in iris or ciliary +C0154800|T047|PT|360.62|ICD9CM|Foreign body in iris or ciliary body|Foreign body in iris or ciliary body +C0154801|T037|AB|360.63|ICD9CM|Foreign body in lens|Foreign body in lens +C0154801|T037|PT|360.63|ICD9CM|Foreign body in lens|Foreign body in lens +C0154802|T037|AB|360.64|ICD9CM|Foreign body in vitreous|Foreign body in vitreous +C0154802|T037|PT|360.64|ICD9CM|Foreign body in vitreous|Foreign body in vitreous +C0154803|T037|AB|360.65|ICD9CM|FB in posterior wall|FB in posterior wall +C0154803|T037|PT|360.65|ICD9CM|Foreign body in posterior wall of eye|Foreign body in posterior wall of eye +C0154804|T047|AB|360.69|ICD9CM|Intraocular FB NEC|Intraocular FB NEC +C0154804|T047|PT|360.69|ICD9CM|Intraocular foreign body in other or multiple sites|Intraocular foreign body in other or multiple sites +C0154805|T047|HT|360.8|ICD9CM|Other disorders of globe|Other disorders of globe +C0154806|T047|AB|360.81|ICD9CM|Luxation of globe|Luxation of globe +C0154806|T047|PT|360.81|ICD9CM|Luxation of globe|Luxation of globe +C0154805|T047|AB|360.89|ICD9CM|Disorder of globe NEC|Disorder of globe NEC +C0154805|T047|PT|360.89|ICD9CM|Other disorders of globe|Other disorders of globe +C0015397|T047|AB|360.9|ICD9CM|Disorder of globe NOS|Disorder of globe NOS +C0015397|T047|PT|360.9|ICD9CM|Unspecified disorder of globe|Unspecified disorder of globe +C1533659|T047|HT|361|ICD9CM|Retinal detachments and defects|Retinal detachments and defects +C0154808|T047|HT|361.0|ICD9CM|Retinal detachment with retinal defect|Retinal detachment with retinal defect +C0154808|T047|AB|361.00|ICD9CM|Detachmnt w defect NOS|Detachmnt w defect NOS +C0154808|T047|PT|361.00|ICD9CM|Retinal detachment with retinal defect, unspecified|Retinal detachment with retinal defect, unspecified +C0154809|T047|AB|361.01|ICD9CM|Part detach-singl defec|Part detach-singl defec +C0154809|T047|PT|361.01|ICD9CM|Recent retinal detachment, partial, with single defect|Recent retinal detachment, partial, with single defect +C0154810|T047|AB|361.02|ICD9CM|Part detach-mult defect|Part detach-mult defect +C0154810|T047|PT|361.02|ICD9CM|Recent retinal detachment, partial, with multiple defects|Recent retinal detachment, partial, with multiple defects +C0154811|T047|AB|361.03|ICD9CM|Part detach-giant tear|Part detach-giant tear +C0154811|T047|PT|361.03|ICD9CM|Recent retinal detachment, partial, with giant tear|Recent retinal detachment, partial, with giant tear +C0154812|T047|AB|361.04|ICD9CM|Part detach-dialysis|Part detach-dialysis +C0154812|T047|PT|361.04|ICD9CM|Recent retinal detachment, partial, with retinal dialysis|Recent retinal detachment, partial, with retinal dialysis +C0154813|T047|AB|361.05|ICD9CM|Recent detachment, total|Recent detachment, total +C0154813|T047|PT|361.05|ICD9CM|Recent retinal detachment, total or subtotal|Recent retinal detachment, total or subtotal +C0154814|T047|AB|361.06|ICD9CM|Old detachment, partial|Old detachment, partial +C0154814|T047|PT|361.06|ICD9CM|Old retinal detachment, partial|Old retinal detachment, partial +C0154815|T047|AB|361.07|ICD9CM|Old detachment, total|Old detachment, total +C0154815|T047|PT|361.07|ICD9CM|Old retinal detachment, total or subtotal|Old retinal detachment, total or subtotal +C0154816|T020|HT|361.1|ICD9CM|Retinoschisis and retinal cysts|Retinoschisis and retinal cysts +C0152439|T047|AB|361.10|ICD9CM|Retinoschisis NOS|Retinoschisis NOS +C0152439|T047|PT|361.10|ICD9CM|Retinoschisis, unspecified|Retinoschisis, unspecified +C0154817|T047|AB|361.11|ICD9CM|Flat retinoschisis|Flat retinoschisis +C0154817|T047|PT|361.11|ICD9CM|Flat retinoschisis|Flat retinoschisis +C0344289|T047|AB|361.12|ICD9CM|Bullous retinoschisis|Bullous retinoschisis +C0344289|T047|PT|361.12|ICD9CM|Bullous retinoschisis|Bullous retinoschisis +C0154819|T047|AB|361.13|ICD9CM|Primary retinal cysts|Primary retinal cysts +C0154819|T047|PT|361.13|ICD9CM|Primary retinal cysts|Primary retinal cysts +C0154820|T047|AB|361.14|ICD9CM|Secondary retinal cysts|Secondary retinal cysts +C0154820|T047|PT|361.14|ICD9CM|Secondary retinal cysts|Secondary retinal cysts +C0154821|T047|PT|361.19|ICD9CM|Other retinoschisis and retinal cysts|Other retinoschisis and retinal cysts +C0154821|T047|AB|361.19|ICD9CM|Retinoshisis or cyst NEC|Retinoshisis or cyst NEC +C0154822|T047|AB|361.2|ICD9CM|Serous retina detachment|Serous retina detachment +C0154822|T047|PT|361.2|ICD9CM|Serous retinal detachment|Serous retinal detachment +C0700508|T047|HT|361.3|ICD9CM|Retinal defects without detachment|Retinal defects without detachment +C0154823|T190|AB|361.30|ICD9CM|Retinal defect NOS|Retinal defect NOS +C0154823|T190|PT|361.30|ICD9CM|Retinal defect, unspecified|Retinal defect, unspecified +C0154825|T047|AB|361.31|ICD9CM|Round hole of retina|Round hole of retina +C0154825|T047|PT|361.31|ICD9CM|Round hole of retina without detachment|Round hole of retina without detachment +C0154826|T047|AB|361.32|ICD9CM|Horseshoe tear of retina|Horseshoe tear of retina +C0154826|T047|PT|361.32|ICD9CM|Horseshoe tear of retina without detachment|Horseshoe tear of retina without detachment +C0154827|T047|AB|361.33|ICD9CM|Mult defects of retina|Mult defects of retina +C0154827|T047|PT|361.33|ICD9CM|Multiple defects of retina without detachment|Multiple defects of retina without detachment +C0339440|T020|HT|361.8|ICD9CM|Other forms of retinal detachment|Other forms of retinal detachment +C0154828|T046|AB|361.81|ICD9CM|Retinal traction detach|Retinal traction detach +C0154828|T046|PT|361.81|ICD9CM|Traction detachment of retina|Traction detachment of retina +C0339440|T020|PT|361.89|ICD9CM|Other forms of retinal detachment|Other forms of retinal detachment +C0339440|T020|AB|361.89|ICD9CM|Retinal detachment NEC|Retinal detachment NEC +C0035305|T047|AB|361.9|ICD9CM|Retinal detachment NOS|Retinal detachment NOS +C0035305|T047|PT|361.9|ICD9CM|Unspecified retinal detachment|Unspecified retinal detachment +C0339438|T047|HT|362|ICD9CM|Other retinal disorders|Other retinal disorders +C0011884|T047|HT|362.0|ICD9CM|Diabetic retinopathy|Diabetic retinopathy +C0004606|T047|PT|362.01|ICD9CM|Background diabetic retinopathy|Background diabetic retinopathy +C0004606|T047|AB|362.01|ICD9CM|Diabetic retinopathy NOS|Diabetic retinopathy NOS +C0154830|T047|AB|362.02|ICD9CM|Prolif diab retinopathy|Prolif diab retinopathy +C0154830|T047|PT|362.02|ICD9CM|Proliferative diabetic retinopathy|Proliferative diabetic retinopathy +C0004606|T047|AB|362.03|ICD9CM|Nonprolf db retnoph NOS|Nonprolf db retnoph NOS +C0004606|T047|PT|362.03|ICD9CM|Nonproliferative diabetic retinopathy NOS|Nonproliferative diabetic retinopathy NOS +C0730276|T047|AB|362.04|ICD9CM|Mild nonprolf db retnoph|Mild nonprolf db retnoph +C0730276|T047|PT|362.04|ICD9CM|Mild nonproliferative diabetic retinopathy|Mild nonproliferative diabetic retinopathy +C0730277|T047|AB|362.05|ICD9CM|Mod nonprolf db retinoph|Mod nonprolf db retinoph +C0730277|T047|PT|362.05|ICD9CM|Moderate nonproliferative diabetic retinopathy|Moderate nonproliferative diabetic retinopathy +C0730278|T047|AB|362.06|ICD9CM|Sev nonprolf db retinoph|Sev nonprolf db retinoph +C0730278|T047|PT|362.06|ICD9CM|Severe nonproliferative diabetic retinopathy|Severe nonproliferative diabetic retinopathy +C0730285|T047|AB|362.07|ICD9CM|Diabetic macular edema|Diabetic macular edema +C0730285|T047|PT|362.07|ICD9CM|Diabetic macular edema|Diabetic macular edema +C0154831|T047|HT|362.1|ICD9CM|Other background retinopathy and retinal vascular changes|Other background retinopathy and retinal vascular changes +C0004608|T047|AB|362.10|ICD9CM|Backgrnd retinopathy NOS|Backgrnd retinopathy NOS +C0004608|T047|PT|362.10|ICD9CM|Background retinopathy, unspecified|Background retinopathy, unspecified +C0152132|T047|AB|362.11|ICD9CM|Hypertensive retinopathy|Hypertensive retinopathy +C0152132|T047|PT|362.11|ICD9CM|Hypertensive retinopathy|Hypertensive retinopathy +C0154832|T047|AB|362.12|ICD9CM|Exudative retinopathy|Exudative retinopathy +C0154832|T047|PT|362.12|ICD9CM|Exudative retinopathy|Exudative retinopathy +C1363843|T047|PT|362.13|ICD9CM|Changes in vascular appearance of retina|Changes in vascular appearance of retina +C1363843|T047|AB|362.13|ICD9CM|Retinal vascular changes|Retinal vascular changes +C0154834|T047|AB|362.14|ICD9CM|Retina microaneurysm NOS|Retina microaneurysm NOS +C0154834|T047|PT|362.14|ICD9CM|Retinal microaneurysms NOS|Retinal microaneurysms NOS +C0154835|T047|AB|362.15|ICD9CM|Retinal telangiectasia|Retinal telangiectasia +C0154835|T047|PT|362.15|ICD9CM|Retinal telangiectasia|Retinal telangiectasia +C0035320|T046|AB|362.16|ICD9CM|Retinal neovascular NOS|Retinal neovascular NOS +C0035320|T046|PT|362.16|ICD9CM|Retinal neovascularization NOS|Retinal neovascularization NOS +C0154836|T047|PT|362.17|ICD9CM|Other intraretinal microvascular abnormalities|Other intraretinal microvascular abnormalities +C0154836|T047|AB|362.17|ICD9CM|Retinal varices|Retinal varices +C0152026|T047|AB|362.18|ICD9CM|Retinal vasculitis|Retinal vasculitis +C0152026|T047|PT|362.18|ICD9CM|Retinal vasculitis|Retinal vasculitis +C0154837|T047|HT|362.2|ICD9CM|Other proliferative retinopathy|Other proliferative retinopathy +C0035344|T047|PT|362.20|ICD9CM|Retinopathy of prematurity, unspecified|Retinopathy of prematurity, unspecified +C0035344|T047|AB|362.20|ICD9CM|Retinoph prematurity NOS|Retinoph prematurity NOS +C0035344|T047|AB|362.21|ICD9CM|Retrolental fibroplasia|Retrolental fibroplasia +C0035344|T047|PT|362.21|ICD9CM|Retrolental fibroplasia|Retrolental fibroplasia +C3812410|T047|PT|362.22|ICD9CM|Retinopathy of prematurity, stage 0|Retinopathy of prematurity, stage 0 +C3812410|T047|AB|362.22|ICD9CM|Retinoph prematr,stage 0|Retinoph prematr,stage 0 +C1443381|T047|PT|362.23|ICD9CM|Retinopathy of prematurity, stage 1|Retinopathy of prematurity, stage 1 +C1443381|T047|AB|362.23|ICD9CM|Retinoph prematr,stage 1|Retinoph prematr,stage 1 +C1443382|T047|PT|362.24|ICD9CM|Retinopathy of prematurity, stage 2|Retinopathy of prematurity, stage 2 +C1443382|T047|AB|362.24|ICD9CM|Retinoph prematr,stage 2|Retinoph prematr,stage 2 +C1443383|T047|PT|362.25|ICD9CM|Retinopathy of prematurity, stage 3|Retinopathy of prematurity, stage 3 +C1443383|T047|AB|362.25|ICD9CM|Retinoph prematr,stage 3|Retinoph prematr,stage 3 +C1443384|T047|PT|362.26|ICD9CM|Retinopathy of prematurity, stage 4|Retinopathy of prematurity, stage 4 +C1443384|T047|AB|362.26|ICD9CM|Retinoph prematr.stage 4|Retinoph prematr.stage 4 +C1443385|T047|PT|362.27|ICD9CM|Retinopathy of prematurity, stage 5|Retinopathy of prematurity, stage 5 +C1443385|T047|AB|362.27|ICD9CM|Retinoph prematr,stage 5|Retinoph prematr,stage 5 +C0154838|T047|PT|362.29|ICD9CM|Other nondiabetic proliferative retinopathy|Other nondiabetic proliferative retinopathy +C0154838|T047|AB|362.29|ICD9CM|Prolif retinopathy NEC|Prolif retinopathy NEC +C0035326|T047|HT|362.3|ICD9CM|Retinal vascular occlusion|Retinal vascular occlusion +C0035326|T047|AB|362.30|ICD9CM|Retinal vasc occlus NOS|Retinal vasc occlus NOS +C0035326|T047|PT|362.30|ICD9CM|Retinal vascular occlusion, unspecified|Retinal vascular occlusion, unspecified +C0007688|T047|AB|362.31|ICD9CM|Cent retina artery occlu|Cent retina artery occlu +C0007688|T047|PT|362.31|ICD9CM|Central retinal artery occlusion|Central retinal artery occlusion +C0006123|T047|AB|362.32|ICD9CM|Arterial branch occlus|Arterial branch occlus +C0006123|T047|PT|362.32|ICD9CM|Retinal arterial branch occlusion|Retinal arterial branch occlusion +C0154839|T047|AB|362.33|ICD9CM|Part arterial occlusion|Part arterial occlusion +C0154839|T047|PT|362.33|ICD9CM|Partial retinal arterial occlusion|Partial retinal arterial occlusion +C0154840|T047|AB|362.34|ICD9CM|Transient arterial occlu|Transient arterial occlu +C0154840|T047|PT|362.34|ICD9CM|Transient retinal arterial occlusion|Transient retinal arterial occlusion +C0154841|T047|AB|362.35|ICD9CM|Cent retinal vein occlus|Cent retinal vein occlus +C0154841|T047|PT|362.35|ICD9CM|Central retinal vein occlusion|Central retinal vein occlusion +C0154842|T047|PT|362.36|ICD9CM|Venous tributary (branch) occlusion|Venous tributary (branch) occlusion +C0154842|T047|AB|362.36|ICD9CM|Venous tributary occlus|Venous tributary occlus +C0154843|T046|AB|362.37|ICD9CM|Retina venous engorgemnt|Retina venous engorgemnt +C0154843|T046|PT|362.37|ICD9CM|Venous engorgement|Venous engorgement +C0154844|T020|HT|362.4|ICD9CM|Separation of retinal layers|Separation of retinal layers +C0154844|T020|AB|362.40|ICD9CM|Retina layer separat NOS|Retina layer separat NOS +C0154844|T020|PT|362.40|ICD9CM|Retinal layer separation, unspecified|Retinal layer separation, unspecified +C0730328|T047|AB|362.41|ICD9CM|Cent serous retinopathy|Cent serous retinopathy +C0730328|T047|PT|362.41|ICD9CM|Central serous retinopathy|Central serous retinopathy +C0154845|T047|AB|362.42|ICD9CM|Serous detach pigm epith|Serous detach pigm epith +C0154845|T047|PT|362.42|ICD9CM|Serous detachment of retinal pigment epithelium|Serous detachment of retinal pigment epithelium +C0154846|T046|AB|362.43|ICD9CM|Hem detach pigmnt epith|Hem detach pigmnt epith +C0154846|T046|PT|362.43|ICD9CM|Hemorrhagic detachment of retinal pigment epithelium|Hemorrhagic detachment of retinal pigment epithelium +C0339436|T047|HT|362.5|ICD9CM|Degeneration of macula and posterior pole of retina|Degeneration of macula and posterior pole of retina +C0242383|T047|PT|362.50|ICD9CM|Macular degeneration (senile), unspecified|Macular degeneration (senile), unspecified +C0242383|T047|AB|362.50|ICD9CM|Macular degeneration NOS|Macular degeneration NOS +C0271083|T020|AB|362.51|ICD9CM|Nonexudat macular degen|Nonexudat macular degen +C0271083|T020|PT|362.51|ICD9CM|Nonexudative senile macular degeneration|Nonexudative senile macular degeneration +C0271084|T047|AB|362.52|ICD9CM|Exudative macular degen|Exudative macular degen +C0271084|T047|PT|362.52|ICD9CM|Exudative senile macular degeneration|Exudative senile macular degeneration +C0154850|T047|AB|362.53|ICD9CM|Cystoid macular degen|Cystoid macular degen +C0154850|T047|PT|362.53|ICD9CM|Cystoid macular degeneration|Cystoid macular degeneration +C1261331|T047|AB|362.54|ICD9CM|Macular cyst or hole|Macular cyst or hole +C1261331|T047|PT|362.54|ICD9CM|Macular cyst, hole, or pseudohole|Macular cyst, hole, or pseudohole +C0271086|T047|AB|362.55|ICD9CM|Toxic maculopathy|Toxic maculopathy +C0271086|T047|PT|362.55|ICD9CM|Toxic maculopathy|Toxic maculopathy +C0339543|T020|AB|362.56|ICD9CM|Macular puckering|Macular puckering +C0339543|T020|PT|362.56|ICD9CM|Macular puckering|Macular puckering +C0035312|T047|AB|362.57|ICD9CM|Drusen (degenerative)|Drusen (degenerative) +C0035312|T047|PT|362.57|ICD9CM|Drusen (degenerative)|Drusen (degenerative) +C1320640|T047|HT|362.6|ICD9CM|Peripheral retinal degenerations|Peripheral retinal degenerations +C1320640|T047|AB|362.60|ICD9CM|Periph retina degen NOS|Periph retina degen NOS +C1320640|T047|PT|362.60|ICD9CM|Peripheral retinal degeneration, unspecified|Peripheral retinal degeneration, unspecified +C0154854|T047|AB|362.61|ICD9CM|Paving stone degenerat|Paving stone degenerat +C0154854|T047|PT|362.61|ICD9CM|Paving stone degeneration|Paving stone degeneration +C0154855|T047|AB|362.62|ICD9CM|Microcystoid degenerat|Microcystoid degenerat +C0154855|T047|PT|362.62|ICD9CM|Microcystoid degeneration|Microcystoid degeneration +C0154856|T047|AB|362.63|ICD9CM|Lattice degeneration|Lattice degeneration +C0154856|T047|PT|362.63|ICD9CM|Lattice degeneration|Lattice degeneration +C0154857|T047|AB|362.64|ICD9CM|Senile reticular degen|Senile reticular degen +C0154857|T047|PT|362.64|ICD9CM|Senile reticular degeneration|Senile reticular degeneration +C0154858|T047|PT|362.65|ICD9CM|Secondary pigmentary degeneration|Secondary pigmentary degeneration +C0154858|T047|AB|362.65|ICD9CM|Secondry pigment degen|Secondry pigment degen +C0154859|T047|AB|362.66|ICD9CM|Sec vitreoretina degen|Sec vitreoretina degen +C0154859|T047|PT|362.66|ICD9CM|Secondary vitreoretinal degenerations|Secondary vitreoretinal degenerations +C0154860|T047|HT|362.7|ICD9CM|Hereditary retinal dystrophies|Hereditary retinal dystrophies +C0154860|T047|AB|362.70|ICD9CM|Hered retin dystrphy NOS|Hered retin dystrphy NOS +C0154860|T047|PT|362.70|ICD9CM|Hereditary retinal dystrophy, unspecified|Hereditary retinal dystrophy, unspecified +C0154861|T047|AB|362.71|ICD9CM|Ret dystrph in lipidoses|Ret dystrph in lipidoses +C0154861|T047|PT|362.71|ICD9CM|Retinal dystrophy in systemic or cerebroretinal lipidoses|Retinal dystrophy in systemic or cerebroretinal lipidoses +C0154862|T047|AB|362.72|ICD9CM|Ret dystrph in syst dis|Ret dystrph in syst dis +C0154862|T047|PT|362.72|ICD9CM|Retinal dystrophy in other systemic disorders and syndromes|Retinal dystrophy in other systemic disorders and syndromes +C0154863|T047|PT|362.73|ICD9CM|Vitreoretinal dystrophies|Vitreoretinal dystrophies +C0154863|T047|AB|362.73|ICD9CM|Vitreoretinal dystrophy|Vitreoretinal dystrophy +C4551633|T047|AB|362.74|ICD9CM|Pigment retina dystrophy|Pigment retina dystrophy +C4551633|T047|PT|362.74|ICD9CM|Pigmentary retinal dystrophy|Pigmentary retinal dystrophy +C0154864|T047|PT|362.75|ICD9CM|Other dystrophies primarily involving the sensory retina|Other dystrophies primarily involving the sensory retina +C0154864|T047|AB|362.75|ICD9CM|Sensory retina dystrophy|Sensory retina dystrophy +C0154865|T047|PT|362.76|ICD9CM|Dystrophies primarily involving the retinal pigment epithelium|Dystrophies primarily involving the retinal pigment epithelium +C0154865|T047|AB|362.76|ICD9CM|Vitelliform dystrophy|Vitelliform dystrophy +C0154866|T047|AB|362.77|ICD9CM|Bruch membrane dystrophy|Bruch membrane dystrophy +C0154866|T047|PT|362.77|ICD9CM|Dystrophies primarily involving Bruch's membrane|Dystrophies primarily involving Bruch's membrane +C0339438|T047|HT|362.8|ICD9CM|Other retinal disorders|Other retinal disorders +C0035317|T047|AB|362.81|ICD9CM|Retinal hemorrhage|Retinal hemorrhage +C0035317|T047|PT|362.81|ICD9CM|Retinal hemorrhage|Retinal hemorrhage +C0154867|T047|AB|362.82|ICD9CM|Retina exudates/deposits|Retina exudates/deposits +C0154867|T047|PT|362.82|ICD9CM|Retinal exudates and deposits|Retinal exudates and deposits +C0242420|T046|AB|362.83|ICD9CM|Retinal edema|Retinal edema +C0242420|T046|PT|362.83|ICD9CM|Retinal edema|Retinal edema +C0162291|T046|AB|362.84|ICD9CM|Retinal ischemia|Retinal ischemia +C0162291|T046|PT|362.84|ICD9CM|Retinal ischemia|Retinal ischemia +C0474334|T047|AB|362.85|ICD9CM|Retinal nerv fiber defec|Retinal nerv fiber defec +C0474334|T047|PT|362.85|ICD9CM|Retinal nerve fiber bundle defects|Retinal nerve fiber bundle defects +C0339438|T047|PT|362.89|ICD9CM|Other retinal disorders|Other retinal disorders +C0339438|T047|AB|362.89|ICD9CM|Retinal disorders NEC|Retinal disorders NEC +C0035309|T047|AB|362.9|ICD9CM|Retinal disorder NOS|Retinal disorder NOS +C0035309|T047|PT|362.9|ICD9CM|Unspecified retinal disorder|Unspecified retinal disorder +C0008511|T047|HT|363|ICD9CM|Chorioretinal inflammations, scars, and other disorders of choroid|Chorioretinal inflammations, scars, and other disorders of choroid +C0154870|T047|HT|363.0|ICD9CM|Focal chorioretinitis and focal retinochoroiditis|Focal chorioretinitis and focal retinochoroiditis +C0154870|T047|AB|363.00|ICD9CM|Focal chorioretinit NOS|Focal chorioretinit NOS +C0154870|T047|PT|363.00|ICD9CM|Focal chorioretinitis, unspecified|Focal chorioretinitis, unspecified +C0154871|T047|PT|363.01|ICD9CM|Focal choroiditis and chorioretinitis, juxtapapillary|Focal choroiditis and chorioretinitis, juxtapapillary +C0154871|T047|AB|363.01|ICD9CM|Juxtapap foc choroiditis|Juxtapap foc choroiditis +C0154872|T047|AB|363.03|ICD9CM|Foc choroiditis post NEC|Foc choroiditis post NEC +C0154872|T047|PT|363.03|ICD9CM|Focal choroiditis and chorioretinitis of other posterior pole|Focal choroiditis and chorioretinitis of other posterior pole +C0339394|T047|PT|363.04|ICD9CM|Focal choroiditis and chorioretinitis, peripheral|Focal choroiditis and chorioretinitis, peripheral +C0339394|T047|AB|363.04|ICD9CM|Periph focal choroiditis|Periph focal choroiditis +C3665438|T047|PT|363.05|ICD9CM|Focal retinitis and retinochoroiditis, juxtapapillary|Focal retinitis and retinochoroiditis, juxtapapillary +C3665438|T047|AB|363.05|ICD9CM|Juxtapap focal retinitis|Juxtapap focal retinitis +C0154875|T047|PT|363.06|ICD9CM|Focal retinitis and retinochoroiditis, macular or paramacular|Focal retinitis and retinochoroiditis, macular or paramacular +C0154875|T047|AB|363.06|ICD9CM|Macular focal retinitis|Macular focal retinitis +C0154876|T047|AB|363.07|ICD9CM|Foc retinitis post NEC|Foc retinitis post NEC +C0154876|T047|PT|363.07|ICD9CM|Focal retinitis and retinochoroiditis of other posterior pole|Focal retinitis and retinochoroiditis of other posterior pole +C0154877|T047|PT|363.08|ICD9CM|Focal retinitis and retinochoroiditis, peripheral|Focal retinitis and retinochoroiditis, peripheral +C0154877|T047|AB|363.08|ICD9CM|Periph focal retinitis|Periph focal retinitis +C0154879|T047|HT|363.1|ICD9CM|Disseminated chorioretinitis and disseminated retinochoroiditis|Disseminated chorioretinitis and disseminated retinochoroiditis +C0154879|T047|AB|363.10|ICD9CM|Dissem chorioretinit NOS|Dissem chorioretinit NOS +C0154879|T047|PT|363.10|ICD9CM|Disseminated chorioretinitis, unspecified|Disseminated chorioretinitis, unspecified +C0154880|T047|AB|363.11|ICD9CM|Dissem choroiditis, post|Dissem choroiditis, post +C0154880|T047|PT|363.11|ICD9CM|Disseminated choroiditis and chorioretinitis, posterior pole|Disseminated choroiditis and chorioretinitis, posterior pole +C0154881|T047|PT|363.12|ICD9CM|Disseminated choroiditis and chorioretinitis, peripheral|Disseminated choroiditis and chorioretinitis, peripheral +C0154881|T047|AB|363.12|ICD9CM|Periph disem choroiditis|Periph disem choroiditis +C0154882|T047|PT|363.13|ICD9CM|Disseminated choroiditis and chorioretinitis, generalized|Disseminated choroiditis and chorioretinitis, generalized +C0154882|T047|AB|363.13|ICD9CM|Gen dissem choroiditis|Gen dissem choroiditis +C0154883|T047|PT|363.14|ICD9CM|Disseminated retinitis and retinochoroiditis, metastatic|Disseminated retinitis and retinochoroiditis, metastatic +C0154883|T047|AB|363.14|ICD9CM|Metastat dissem retinit|Metastat dissem retinit +C0154884|T047|PT|363.15|ICD9CM|Disseminated retinitis and retinochoroiditis, pigment epitheliopathy|Disseminated retinitis and retinochoroiditis, pigment epitheliopathy +C0154884|T047|AB|363.15|ICD9CM|Pigment epitheliopathy|Pigment epitheliopathy +C2239106|T047|HT|363.2|ICD9CM|Other and unspecified forms of chorioretinitis and retinochoroiditis|Other and unspecified forms of chorioretinitis and retinochoroiditis +C0008513|T047|AB|363.20|ICD9CM|Chorioretinitis NOS|Chorioretinitis NOS +C0008513|T047|PT|363.20|ICD9CM|Chorioretinitis, unspecified|Chorioretinitis, unspecified +C0030593|T047|AB|363.21|ICD9CM|Pars planitis|Pars planitis +C0030593|T047|PT|363.21|ICD9CM|Pars planitis|Pars planitis +C0042170|T047|AB|363.22|ICD9CM|Harada's disease|Harada's disease +C0042170|T047|PT|363.22|ICD9CM|Harada's disease|Harada's disease +C0008512|T020|HT|363.3|ICD9CM|Chorioretinal scars|Chorioretinal scars +C0008512|T020|AB|363.30|ICD9CM|Chorioretinal scar NOS|Chorioretinal scar NOS +C0008512|T020|PT|363.30|ICD9CM|Chorioretinal scar, unspecified|Chorioretinal scar, unspecified +C0152131|T047|AB|363.31|ICD9CM|Solar retinopathy|Solar retinopathy +C0152131|T047|PT|363.31|ICD9CM|Solar retinopathy|Solar retinopathy +C0339418|T020|AB|363.32|ICD9CM|Macular scars NEC|Macular scars NEC +C0339418|T020|PT|363.32|ICD9CM|Other macular scars|Other macular scars +C0339419|T020|PT|363.33|ICD9CM|Other scars of posterior pole|Other scars of posterior pole +C0339419|T020|AB|363.33|ICD9CM|Posterior pole scar NEC|Posterior pole scar NEC +C0154888|T047|AB|363.34|ICD9CM|Peripheral retinal scars|Peripheral retinal scars +C0154888|T047|PT|363.34|ICD9CM|Peripheral scars|Peripheral scars +C0154889|T047|AB|363.35|ICD9CM|Disseminated retina scar|Disseminated retina scar +C0154889|T047|PT|363.35|ICD9CM|Disseminated scars|Disseminated scars +C0344297|T047|HT|363.4|ICD9CM|Choroidal degenerations|Choroidal degenerations +C0344297|T047|AB|363.40|ICD9CM|Choroidal degen NOS|Choroidal degen NOS +C0344297|T047|PT|363.40|ICD9CM|Choroidal degeneration, unspecified|Choroidal degeneration, unspecified +C0154891|T047|PT|363.41|ICD9CM|Senile atrophy of choroid|Senile atrophy of choroid +C0154891|T047|AB|363.41|ICD9CM|Senile atrophy, choroid|Senile atrophy, choroid +C0154892|T047|PT|363.42|ICD9CM|Diffuse secondary atrophy of choroid|Diffuse secondary atrophy of choroid +C0154892|T047|AB|363.42|ICD9CM|Difus sec atroph choroid|Difus sec atroph choroid +C0002983|T047|PT|363.43|ICD9CM|Angioid streaks of choroid|Angioid streaks of choroid +C0002983|T047|AB|363.43|ICD9CM|Angioid streaks, choroid|Angioid streaks, choroid +C0154893|T047|HT|363.5|ICD9CM|Hereditary choroidal dystrophies|Hereditary choroidal dystrophies +C0154893|T047|AB|363.50|ICD9CM|Hered choroid atroph NOS|Hered choroid atroph NOS +C0154893|T047|PT|363.50|ICD9CM|Hereditary choroidal dystrophy or atrophy, unspecified|Hereditary choroidal dystrophy or atrophy, unspecified +C0154895|T047|PT|363.51|ICD9CM|Circumpapillary dystrophy of choroid, partial|Circumpapillary dystrophy of choroid, partial +C0154895|T047|AB|363.51|ICD9CM|Prt circmpap choroid dys|Prt circmpap choroid dys +C0154896|T047|PT|363.52|ICD9CM|Circumpapillary dystrophy of choroid, total|Circumpapillary dystrophy of choroid, total +C0154896|T047|AB|363.52|ICD9CM|Tot circmpap choroid dys|Tot circmpap choroid dys +C0339427|T047|PT|363.53|ICD9CM|Central dystrophy of choroid, partial|Central dystrophy of choroid, partial +C0339427|T047|AB|363.53|ICD9CM|Part cent choroid dystr|Part cent choroid dystr +C0154898|T047|PT|363.54|ICD9CM|Central choroidal atrophy, total|Central choroidal atrophy, total +C0154898|T047|AB|363.54|ICD9CM|Tot cent choroid atrophy|Tot cent choroid atrophy +C0008525|T047|AB|363.55|ICD9CM|Choroideremia|Choroideremia +C0008525|T047|PT|363.55|ICD9CM|Choroideremia|Choroideremia +C0154899|T047|PT|363.56|ICD9CM|Other diffuse or generalized dystrophy of choroid, partial|Other diffuse or generalized dystrophy of choroid, partial +C0154899|T047|AB|363.56|ICD9CM|Prt gen choroid dyst NEC|Prt gen choroid dyst NEC +C0154900|T047|PT|363.57|ICD9CM|Other diffuse or generalized dystrophy of choroid, total|Other diffuse or generalized dystrophy of choroid, total +C0154900|T047|AB|363.57|ICD9CM|Tot gen choroid dyst NEC|Tot gen choroid dyst NEC +C0154901|T046|HT|363.6|ICD9CM|Choroidal hemorrhage and rupture|Choroidal hemorrhage and rupture +C0008522|T046|AB|363.61|ICD9CM|Choroidal hemorrhage NOS|Choroidal hemorrhage NOS +C0008522|T046|PT|363.61|ICD9CM|Choroidal hemorrhage, unspecified|Choroidal hemorrhage, unspecified +C0154902|T047|AB|363.62|ICD9CM|Expulsive choroid hemorr|Expulsive choroid hemorr +C0154902|T047|PT|363.62|ICD9CM|Expulsive choroidal hemorrhage|Expulsive choroidal hemorrhage +C0154903|T047|AB|363.63|ICD9CM|Choroidal rupture|Choroidal rupture +C0154903|T047|PT|363.63|ICD9CM|Choroidal rupture|Choroidal rupture +C0162279|T020|HT|363.7|ICD9CM|Choroidal detachment|Choroidal detachment +C0162279|T020|AB|363.70|ICD9CM|Choroidal detachment NOS|Choroidal detachment NOS +C0162279|T020|PT|363.70|ICD9CM|Choroidal detachment, unspecified|Choroidal detachment, unspecified +C0154904|T047|AB|363.71|ICD9CM|Serous choroid detachmnt|Serous choroid detachmnt +C0154904|T047|PT|363.71|ICD9CM|Serous choroidal detachment|Serous choroidal detachment +C0154905|T047|AB|363.72|ICD9CM|Hemorr choroid detachmnt|Hemorr choroid detachmnt +C0154905|T047|PT|363.72|ICD9CM|Hemorrhagic choroidal detachment|Hemorrhagic choroidal detachment +C0154906|T047|AB|363.8|ICD9CM|Disorders of choroid NEC|Disorders of choroid NEC +C0154906|T047|PT|363.8|ICD9CM|Other disorders of choroid|Other disorders of choroid +C0008521|T047|AB|363.9|ICD9CM|Choroidal disorder NOS|Choroidal disorder NOS +C0008521|T047|PT|363.9|ICD9CM|Unspecified disorder of choroid|Unspecified disorder of choroid +C0154907|T047|HT|364|ICD9CM|Disorders of iris and ciliary body|Disorders of iris and ciliary body +C0154908|T047|HT|364.0|ICD9CM|Acute and subacute iridocyclitis|Acute and subacute iridocyclitis +C0154908|T047|PT|364.00|ICD9CM|Acute and subacute iridocyclitis, unspecified|Acute and subacute iridocyclitis, unspecified +C0154908|T047|AB|364.00|ICD9CM|Acute iridocyclitis NOS|Acute iridocyclitis NOS +C0154909|T047|AB|364.01|ICD9CM|Primary iridocyclitis|Primary iridocyclitis +C0154909|T047|PT|364.01|ICD9CM|Primary iridocyclitis|Primary iridocyclitis +C0154910|T047|AB|364.02|ICD9CM|Recurrent iridocyclitis|Recurrent iridocyclitis +C0154910|T047|PT|364.02|ICD9CM|Recurrent iridocyclitis|Recurrent iridocyclitis +C0154911|T047|PT|364.03|ICD9CM|Secondary iridocyclitis, infectious|Secondary iridocyclitis, infectious +C0154911|T047|AB|364.03|ICD9CM|Secondry iritis, infect|Secondry iritis, infect +C2937264|T047|AB|364.04|ICD9CM|Second iritis, noninfec|Second iritis, noninfec +C2937264|T047|PT|364.04|ICD9CM|Secondary iridocyclitis, noninfectious|Secondary iridocyclitis, noninfectious +C0020641|T047|AB|364.05|ICD9CM|Hypopyon|Hypopyon +C0020641|T047|PT|364.05|ICD9CM|Hypopyon|Hypopyon +C1510449|T047|HT|364.1|ICD9CM|Chronic iridocyclitis|Chronic iridocyclitis +C1510449|T047|AB|364.10|ICD9CM|Chr iridocyclitis NOS|Chr iridocyclitis NOS +C1510449|T047|PT|364.10|ICD9CM|Chronic iridocyclitis, unspecified|Chronic iridocyclitis, unspecified +C0339319|T047|AB|364.11|ICD9CM|Chr iridocyl in oth dis|Chr iridocyl in oth dis +C0339319|T047|PT|364.11|ICD9CM|Chronic iridocyclitis in diseases classified elsewhere|Chronic iridocyclitis in diseases classified elsewhere +C0007832|T047|HT|364.2|ICD9CM|Certain types of iridocyclitis|Certain types of iridocyclitis +C0016782|T047|AB|364.21|ICD9CM|Fuch hetrochrom cyclitis|Fuch hetrochrom cyclitis +C0016782|T047|PT|364.21|ICD9CM|Fuchs' heterochromic cyclitis|Fuchs' heterochromic cyclitis +C0152138|T047|AB|364.22|ICD9CM|Glaucomatocyclit crises|Glaucomatocyclit crises +C0152138|T047|PT|364.22|ICD9CM|Glaucomatocyclitic crises|Glaucomatocyclitic crises +C0339320|T047|AB|364.23|ICD9CM|Lens-induced iridocyclit|Lens-induced iridocyclit +C0339320|T047|PT|364.23|ICD9CM|Lens-induced iridocyclitis|Lens-induced iridocyclitis +C0042170|T047|AB|364.24|ICD9CM|Vogt-koyanagi syndrome|Vogt-koyanagi syndrome +C0042170|T047|PT|364.24|ICD9CM|Vogt-koyanagi syndrome|Vogt-koyanagi syndrome +C0022073|T047|AB|364.3|ICD9CM|Iridocyclitis NOS|Iridocyclitis NOS +C0022073|T047|PT|364.3|ICD9CM|Unspecified iridocyclitis|Unspecified iridocyclitis +C0154915|T047|HT|364.4|ICD9CM|Vascular disorders of iris and ciliary body|Vascular disorders of iris and ciliary body +C0020582|T047|AB|364.41|ICD9CM|Hyphema|Hyphema +C0020582|T047|PT|364.41|ICD9CM|Hyphema of iris and ciliary body|Hyphema of iris and ciliary body +C0154916|T047|AB|364.42|ICD9CM|Rubeosis iridis|Rubeosis iridis +C0154916|T047|PT|364.42|ICD9CM|Rubeosis iridis|Rubeosis iridis +C0154917|T020|HT|364.5|ICD9CM|Degenerations of iris and ciliary body|Degenerations of iris and ciliary body +C0271111|T047|PT|364.51|ICD9CM|Essential or progressive iris atrophy|Essential or progressive iris atrophy +C0271111|T047|AB|364.51|ICD9CM|Progressive iris atrophy|Progressive iris atrophy +C0154919|T047|AB|364.52|ICD9CM|Iridoschisis|Iridoschisis +C0154919|T047|PT|364.52|ICD9CM|Iridoschisis|Iridoschisis +C0154920|T033|AB|364.53|ICD9CM|Pigment iris degenerat|Pigment iris degenerat +C0154920|T033|PT|364.53|ICD9CM|Pigmentary iris degeneration|Pigmentary iris degeneration +C0154921|T047|PT|364.54|ICD9CM|Degeneration of pupillary margin|Degeneration of pupillary margin +C0154921|T047|AB|364.54|ICD9CM|Pupillary margin degen|Pupillary margin degen +C0154922|T047|AB|364.55|ICD9CM|Miotic cyst pupil margin|Miotic cyst pupil margin +C0154922|T047|PT|364.55|ICD9CM|Miotic cysts of pupillary margin|Miotic cysts of pupillary margin +C0154923|T020|AB|364.56|ICD9CM|Degen chamber angle|Degen chamber angle +C0154923|T020|PT|364.56|ICD9CM|Degenerative changes of chamber angle|Degenerative changes of chamber angle +C0154924|T047|AB|364.57|ICD9CM|Degen ciliary body|Degen ciliary body +C0154924|T047|PT|364.57|ICD9CM|Degenerative changes of ciliary body|Degenerative changes of ciliary body +C0154925|T047|AB|364.59|ICD9CM|Iris atrophy NEC|Iris atrophy NEC +C0154925|T047|PT|364.59|ICD9CM|Other iris atrophy|Other iris atrophy +C0154926|T047|HT|364.6|ICD9CM|Cysts of iris, ciliary body, and anterior chamber|Cysts of iris, ciliary body, and anterior chamber +C0154927|T047|AB|364.60|ICD9CM|Idiopathic cysts|Idiopathic cysts +C0154927|T047|PT|364.60|ICD9CM|Idiopathic cysts of iris, ciliary body, and anterior chamber|Idiopathic cysts of iris, ciliary body, and anterior chamber +C0271128|T047|AB|364.61|ICD9CM|Implantation cysts|Implantation cysts +C0271128|T047|PT|364.61|ICD9CM|Implantation cysts of iris, ciliary body, and anterior chamber|Implantation cysts of iris, ciliary body, and anterior chamber +C0154929|T047|AB|364.62|ICD9CM|Exud cyst iris/ant chamb|Exud cyst iris/ant chamb +C0154929|T047|PT|364.62|ICD9CM|Exudative cysts of iris or anterior chamber|Exudative cysts of iris or anterior chamber +C0154930|T047|PT|364.63|ICD9CM|Primary cyst of pars plana|Primary cyst of pars plana +C0154930|T047|AB|364.63|ICD9CM|Primary cyst pars plana|Primary cyst pars plana +C0154931|T047|AB|364.64|ICD9CM|Exudat cyst pars plana|Exudat cyst pars plana +C0154931|T047|PT|364.64|ICD9CM|Exudative cyst of pars plana|Exudative cyst of pars plana +C0154932|T047|HT|364.7|ICD9CM|Adhesions and disruptions of iris and ciliary body|Adhesions and disruptions of iris and ciliary body +C0154933|T047|AB|364.70|ICD9CM|Adhesions of iris NOS|Adhesions of iris NOS +C0154933|T047|PT|364.70|ICD9CM|Adhesions of iris, unspecified|Adhesions of iris, unspecified +C0152253|T047|AB|364.71|ICD9CM|Posterior synechiae|Posterior synechiae +C0152253|T047|PT|364.71|ICD9CM|Posterior synechiae of iris|Posterior synechiae of iris +C0152252|T047|AB|364.72|ICD9CM|Anterior synechiae|Anterior synechiae +C0152252|T047|PT|364.72|ICD9CM|Anterior synechiae of iris|Anterior synechiae of iris +C0154934|T047|AB|364.73|ICD9CM|Goniosynechiae|Goniosynechiae +C0154934|T047|PT|364.73|ICD9CM|Goniosynechiae|Goniosynechiae +C0154935|T047|PT|364.74|ICD9CM|Adhesions and disruptions of pupillary membranes|Adhesions and disruptions of pupillary membranes +C0154935|T047|AB|364.74|ICD9CM|Pupillary membranes|Pupillary membranes +C0154936|T033|AB|364.75|ICD9CM|Pupillary abnormalities|Pupillary abnormalities +C0154936|T033|PT|364.75|ICD9CM|Pupillary abnormalities|Pupillary abnormalities +C0152246|T047|AB|364.76|ICD9CM|Iridodialysis|Iridodialysis +C0152246|T047|PT|364.76|ICD9CM|Iridodialysis|Iridodialysis +C0154937|T046|PT|364.77|ICD9CM|Recession of chamber angle of eye|Recession of chamber angle of eye +C0154937|T046|AB|364.77|ICD9CM|Recession, chamber angle|Recession, chamber angle +C0339308|T047|HT|364.8|ICD9CM|Other disorders of iris and ciliary body|Other disorders of iris and ciliary body +C1735601|T046|PT|364.81|ICD9CM|Floppy iris syndrome|Floppy iris syndrome +C1735601|T046|AB|364.81|ICD9CM|Floppy iris syndrome|Floppy iris syndrome +C1321345|T047|PT|364.82|ICD9CM|Plateau iris syndrome|Plateau iris syndrome +C1321345|T047|AB|364.82|ICD9CM|Plateau iris syndrome|Plateau iris syndrome +C0348538|T047|AB|364.89|ICD9CM|Iris/ciliary disord NEC|Iris/ciliary disord NEC +C0348538|T047|PT|364.89|ICD9CM|Other disorders of iris and ciliary body|Other disorders of iris and ciliary body +C0154907|T047|AB|364.9|ICD9CM|Iris/ciliary dis NOS|Iris/ciliary dis NOS +C0154907|T047|PT|364.9|ICD9CM|Unspecified disorder of iris and ciliary body|Unspecified disorder of iris and ciliary body +C0017601|T047|HT|365|ICD9CM|Glaucoma|Glaucoma +C1533674|T047|HT|365.0|ICD9CM|Borderline glaucoma [glaucoma suspect]|Borderline glaucoma [glaucoma suspect] +C0549470|T047|AB|365.00|ICD9CM|Preglaucoma NOS|Preglaucoma NOS +C0549470|T047|PT|365.00|ICD9CM|Preglaucoma, unspecified|Preglaucoma, unspecified +C3264152|T047|PT|365.01|ICD9CM|Open angle with borderline findings, low risk|Open angle with borderline findings, low risk +C3264152|T047|AB|365.01|ICD9CM|Opn angl brderln lo risk|Opn angl brderln lo risk +C0154941|T047|AB|365.02|ICD9CM|Anatomical narrow angle|Anatomical narrow angle +C0154941|T047|PT|365.02|ICD9CM|Anatomical narrow angle borderline glaucoma|Anatomical narrow angle borderline glaucoma +C0339572|T047|AB|365.03|ICD9CM|Steroid responders|Steroid responders +C0339572|T047|PT|365.03|ICD9CM|Steroid responders borderline glaucoma|Steroid responders borderline glaucoma +C0028840|T047|AB|365.04|ICD9CM|Ocular hypertension|Ocular hypertension +C0028840|T047|PT|365.04|ICD9CM|Ocular hypertension|Ocular hypertension +C3161083|T047|PT|365.05|ICD9CM|Open angle with borderline findings, high risk|Open angle with borderline findings, high risk +C3161083|T047|AB|365.05|ICD9CM|Opn ang w brdrlne hi rsk|Opn ang w brdrlne hi rsk +C3161084|T047|AB|365.06|ICD9CM|Prim angle clos w/o dmg|Prim angle clos w/o dmg +C3161084|T047|PT|365.06|ICD9CM|Primary angle closure without glaucoma damage|Primary angle closure without glaucoma damage +C0017612|T047|HT|365.1|ICD9CM|Open-angle glaucoma|Open-angle glaucoma +C0017612|T047|AB|365.10|ICD9CM|Open-angle glaucoma NOS|Open-angle glaucoma NOS +C0017612|T047|PT|365.10|ICD9CM|Open-angle glaucoma, unspecified|Open-angle glaucoma, unspecified +C0339573|T047|AB|365.11|ICD9CM|Prim open angle glaucoma|Prim open angle glaucoma +C0339573|T047|PT|365.11|ICD9CM|Primary open angle glaucoma|Primary open angle glaucoma +C0152136|T047|AB|365.12|ICD9CM|Low tension glaucoma|Low tension glaucoma +C0152136|T047|PT|365.12|ICD9CM|Low tension open-angle glaucoma|Low tension open-angle glaucoma +C0017612|T047|AB|365.13|ICD9CM|Pigmentary glaucoma|Pigmentary glaucoma +C0017612|T047|PT|365.13|ICD9CM|Pigmentary open-angle glaucoma|Pigmentary open-angle glaucoma +C2981140|T047|AB|365.14|ICD9CM|Glaucoma of childhood|Glaucoma of childhood +C2981140|T047|PT|365.14|ICD9CM|Glaucoma of childhood|Glaucoma of childhood +C0154944|T047|AB|365.15|ICD9CM|Residual opn ang glaucma|Residual opn ang glaucma +C0154944|T047|PT|365.15|ICD9CM|Residual stage of open angle glaucoma|Residual stage of open angle glaucoma +C0017606|T047|HT|365.2|ICD9CM|Primary angle-closure glaucoma|Primary angle-closure glaucoma +C0017606|T047|AB|365.20|ICD9CM|Prim angl-clos glauc NOS|Prim angl-clos glauc NOS +C0017606|T047|PT|365.20|ICD9CM|Primary angle-closure glaucoma, unspecified|Primary angle-closure glaucoma, unspecified +C0154945|T047|AB|365.21|ICD9CM|Intermit angl-clos glauc|Intermit angl-clos glauc +C0154945|T047|PT|365.21|ICD9CM|Intermittent angle-closure glaucoma|Intermittent angle-closure glaucoma +C0154946|T047|AB|365.22|ICD9CM|Acute angl-clos glaucoma|Acute angl-clos glaucoma +C0154946|T047|PT|365.22|ICD9CM|Acute angle-closure glaucoma|Acute angle-closure glaucoma +C0154947|T047|AB|365.23|ICD9CM|Chr angle-clos glaucoma|Chr angle-clos glaucoma +C0154947|T047|PT|365.23|ICD9CM|Chronic angle-closure glaucoma|Chronic angle-closure glaucoma +C0154948|T047|AB|365.24|ICD9CM|Residual angl-clos glauc|Residual angl-clos glauc +C0154948|T047|PT|365.24|ICD9CM|Residual stage of angle-closure glaucoma|Residual stage of angle-closure glaucoma +C0339578|T047|HT|365.3|ICD9CM|Corticosteroid-induced glaucoma|Corticosteroid-induced glaucoma +C0339579|T047|PT|365.31|ICD9CM|Corticosteroid-induced glaucoma, glaucomatous stage|Corticosteroid-induced glaucoma, glaucomatous stage +C0339579|T047|AB|365.31|ICD9CM|Glauc stage-ster induced|Glauc stage-ster induced +C0339580|T047|PT|365.32|ICD9CM|Corticosteroid-induced glaucoma, residual stage|Corticosteroid-induced glaucoma, residual stage +C0339580|T047|AB|365.32|ICD9CM|Glauc resid-ster induced|Glauc resid-ster induced +C0154952|T047|HT|365.4|ICD9CM|Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes|Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes +C0154953|T047|AB|365.41|ICD9CM|Glauc w chamb angle anom|Glauc w chamb angle anom +C0154953|T047|PT|365.41|ICD9CM|Glaucoma associated with chamber angle anomalies|Glaucoma associated with chamber angle anomalies +C0154954|T047|PT|365.42|ICD9CM|Glaucoma associated with anomalies of iris|Glaucoma associated with anomalies of iris +C0154954|T047|AB|365.42|ICD9CM|Glaucoma w iris anomaly|Glaucoma w iris anomaly +C0154955|T047|AB|365.43|ICD9CM|Glauc w ant seg anom NEC|Glauc w ant seg anom NEC +C0154955|T047|PT|365.43|ICD9CM|Glaucoma associated with other anterior segment anomalies|Glaucoma associated with other anterior segment anomalies +C0154956|T047|PT|365.44|ICD9CM|Glaucoma associated with systemic syndromes|Glaucoma associated with systemic syndromes +C0154956|T047|AB|365.44|ICD9CM|Glaucoma w systemic synd|Glaucoma w systemic synd +C0271142|T047|HT|365.5|ICD9CM|Glaucoma associated with disorders of the lens|Glaucoma associated with disorders of the lens +C0152137|T047|AB|365.51|ICD9CM|Phacolytic glaucoma|Phacolytic glaucoma +C0152137|T047|PT|365.51|ICD9CM|Phacolytic glaucoma|Phacolytic glaucoma +C0206368|T047|AB|365.52|ICD9CM|Pseudoexfoliat glaucoma|Pseudoexfoliat glaucoma +C0206368|T047|PT|365.52|ICD9CM|Pseudoexfoliation glaucoma|Pseudoexfoliation glaucoma +C0154959|T047|PT|365.59|ICD9CM|Glaucoma associated with other lens disorders|Glaucoma associated with other lens disorders +C0154959|T047|AB|365.59|ICD9CM|Glaucoma w lens dis NEC|Glaucoma w lens dis NEC +C0154960|T047|HT|365.6|ICD9CM|Glaucoma associated with other ocular disorders|Glaucoma associated with other ocular disorders +C0154961|T047|AB|365.60|ICD9CM|Glauc w ocular dis NOS|Glauc w ocular dis NOS +C0154961|T047|PT|365.60|ICD9CM|Glaucoma associated with unspecified ocular disorder|Glaucoma associated with unspecified ocular disorder +C0339598|T047|AB|365.61|ICD9CM|Glauc w pupillary block|Glauc w pupillary block +C0339598|T047|PT|365.61|ICD9CM|Glaucoma associated with pupillary block|Glaucoma associated with pupillary block +C0339593|T047|PT|365.62|ICD9CM|Glaucoma associated with ocular inflammations|Glaucoma associated with ocular inflammations +C0339593|T047|AB|365.62|ICD9CM|Glaucoma w ocular inflam|Glaucoma w ocular inflam +C0154964|T047|PT|365.63|ICD9CM|Glaucoma associated with vascular disorders|Glaucoma associated with vascular disorders +C0154964|T047|AB|365.63|ICD9CM|Glaucoma w vascular dis|Glaucoma w vascular dis +C0154965|T047|PT|365.64|ICD9CM|Glaucoma associated with tumors or cysts|Glaucoma associated with tumors or cysts +C0154965|T047|AB|365.64|ICD9CM|Glaucoma w tumor or cyst|Glaucoma w tumor or cyst +C0339594|T047|PT|365.65|ICD9CM|Glaucoma associated with ocular trauma|Glaucoma associated with ocular trauma +C0339594|T047|AB|365.65|ICD9CM|Glaucoma w ocular trauma|Glaucoma w ocular trauma +C3161085|T033|HT|365.7|ICD9CM|Glaucoma stage|Glaucoma stage +C3161085|T033|AB|365.70|ICD9CM|Glaucoma stage NOS|Glaucoma stage NOS +C3161085|T033|PT|365.70|ICD9CM|Glaucoma stage, unspecified|Glaucoma stage, unspecified +C3161086|T033|AB|365.71|ICD9CM|Mild stage glaucoma|Mild stage glaucoma +C3161086|T033|PT|365.71|ICD9CM|Mild stage glaucoma|Mild stage glaucoma +C3161087|T033|AB|365.72|ICD9CM|Moderate stage glaucoma|Moderate stage glaucoma +C3161087|T033|PT|365.72|ICD9CM|Moderate stage glaucoma|Moderate stage glaucoma +C3161088|T033|AB|365.73|ICD9CM|Severe stage glaucoma|Severe stage glaucoma +C3161088|T033|PT|365.73|ICD9CM|Severe stage glaucoma|Severe stage glaucoma +C3161089|T047|AB|365.74|ICD9CM|Indeterm stage glaucoma|Indeterm stage glaucoma +C3161089|T047|PT|365.74|ICD9CM|Indeterminate stage glaucoma|Indeterminate stage glaucoma +C0029802|T047|HT|365.8|ICD9CM|Other specified forms of glaucoma|Other specified forms of glaucoma +C0154968|T047|AB|365.81|ICD9CM|Hypersecretion glaucoma|Hypersecretion glaucoma +C0154968|T047|PT|365.81|ICD9CM|Hypersecretion glaucoma|Hypersecretion glaucoma +C0339596|T047|AB|365.82|ICD9CM|Glauc w inc episcl press|Glauc w inc episcl press +C0339596|T047|PT|365.82|ICD9CM|Glaucoma with increased episcleral venous pressure|Glaucoma with increased episcleral venous pressure +C1135189|T047|AB|365.83|ICD9CM|Aqueous misdirection|Aqueous misdirection +C1135189|T047|PT|365.83|ICD9CM|Aqueous misdirection|Aqueous misdirection +C0029802|T047|AB|365.89|ICD9CM|Glaucoma NEC|Glaucoma NEC +C0029802|T047|PT|365.89|ICD9CM|Other specified glaucoma|Other specified glaucoma +C0017601|T047|AB|365.9|ICD9CM|Glaucoma NOS|Glaucoma NOS +C0017601|T047|PT|365.9|ICD9CM|Unspecified glaucoma|Unspecified glaucoma +C0086543|T020|HT|366|ICD9CM|Cataract|Cataract +C0154970|T047|HT|366.0|ICD9CM|Infantile, juvenile, and presenile cataract|Infantile, juvenile, and presenile cataract +C2607928|T020|AB|366.00|ICD9CM|Nonsenile cataract NOS|Nonsenile cataract NOS +C2607928|T020|PT|366.00|ICD9CM|Nonsenile cataract, unspecified|Nonsenile cataract, unspecified +C1112690|T020|AB|366.01|ICD9CM|Ant subcaps pol cataract|Ant subcaps pol cataract +C1112690|T020|PT|366.01|ICD9CM|Anterior subcapsular polar cataract|Anterior subcapsular polar cataract +C1112781|T020|AB|366.02|ICD9CM|Post subcaps pol catarct|Post subcaps pol catarct +C1112781|T020|PT|366.02|ICD9CM|Posterior subcapsular polar cataract|Posterior subcapsular polar cataract +C0154974|T047|AB|366.03|ICD9CM|Cortical cataract|Cortical cataract +C0154974|T047|PT|366.03|ICD9CM|Cortical, lamellar, or zonular cataract|Cortical, lamellar, or zonular cataract +C1112705|T047|AB|366.04|ICD9CM|Nuclear cataract|Nuclear cataract +C1112705|T047|PT|366.04|ICD9CM|Nuclear cataract|Nuclear cataract +C0154976|T020|AB|366.09|ICD9CM|Nonsenile cataract NEC|Nonsenile cataract NEC +C0154976|T020|PT|366.09|ICD9CM|Other and combined forms of nonsenile cataract|Other and combined forms of nonsenile cataract +C0036646|T020|HT|366.1|ICD9CM|Senile cataract|Senile cataract +C0036646|T020|AB|366.10|ICD9CM|Senile cataract NOS|Senile cataract NOS +C0036646|T020|PT|366.10|ICD9CM|Senile cataract, unspecified|Senile cataract, unspecified +C0311341|T047|AB|366.11|ICD9CM|Pseudoexfol lens capsule|Pseudoexfol lens capsule +C0311341|T047|PT|366.11|ICD9CM|Pseudoexfoliation of lens capsule|Pseudoexfoliation of lens capsule +C2939157|T047|AB|366.12|ICD9CM|Incipient cataract|Incipient cataract +C2939157|T047|PT|366.12|ICD9CM|Incipient senile cataract|Incipient senile cataract +C0154978|T047|AB|366.13|ICD9CM|Ant subcaps senile catar|Ant subcaps senile catar +C0154978|T047|PT|366.13|ICD9CM|Anterior subcapsular polar senile cataract|Anterior subcapsular polar senile cataract +C0154979|T047|AB|366.14|ICD9CM|Post subcap senile catar|Post subcap senile catar +C0154979|T047|PT|366.14|ICD9CM|Posterior subcapsular polar senile cataract|Posterior subcapsular polar senile cataract +C0154980|T047|AB|366.15|ICD9CM|Cortical senile cataract|Cortical senile cataract +C0154980|T047|PT|366.15|ICD9CM|Cortical senile cataract|Cortical senile cataract +C0271166|T020|AB|366.16|ICD9CM|Senile nuclear cataract|Senile nuclear cataract +C0271166|T020|PT|366.16|ICD9CM|Senile nuclear sclerosis|Senile nuclear sclerosis +C3665439|T020|AB|366.17|ICD9CM|Mature cataract|Mature cataract +C3665439|T020|PT|366.17|ICD9CM|Total or mature cataract|Total or mature cataract +C0152258|T047|AB|366.18|ICD9CM|Hypermature cataract|Hypermature cataract +C0152258|T047|PT|366.18|ICD9CM|Hypermature cataract|Hypermature cataract +C0154982|T020|PT|366.19|ICD9CM|Other and combined forms of senile cataract|Other and combined forms of senile cataract +C0154982|T020|AB|366.19|ICD9CM|Senile cataract NEC|Senile cataract NEC +C0154983|T037|HT|366.2|ICD9CM|Traumatic cataract|Traumatic cataract +C0154983|T037|AB|366.20|ICD9CM|Traumatic cataract NOS|Traumatic cataract NOS +C0154983|T037|PT|366.20|ICD9CM|Traumatic cataract, unspecified|Traumatic cataract, unspecified +C0154984|T037|AB|366.21|ICD9CM|Local traumatic opacity|Local traumatic opacity +C0154984|T037|PT|366.21|ICD9CM|Localized traumatic opacities|Localized traumatic opacities +C0154985|T037|AB|366.22|ICD9CM|Total traumatic cataract|Total traumatic cataract +C0154985|T037|PT|366.22|ICD9CM|Total traumatic cataract|Total traumatic cataract +C0154986|T037|AB|366.23|ICD9CM|Part resolv traum catar|Part resolv traum catar +C0154986|T037|PT|366.23|ICD9CM|Partially resolved traumatic cataract|Partially resolved traumatic cataract +C0152259|T047|HT|366.3|ICD9CM|Cataract secondary to ocular disorders|Cataract secondary to ocular disorders +C4721766|T047|AB|366.30|ICD9CM|Cataracta complicata NOS|Cataracta complicata NOS +C4721766|T047|PT|366.30|ICD9CM|Cataracta complicata, unspecified|Cataracta complicata, unspecified +C0154989|T047|AB|366.31|ICD9CM|Glaucomatous flecks|Glaucomatous flecks +C0154989|T047|PT|366.31|ICD9CM|Glaucomatous flecks (subcapsular)|Glaucomatous flecks (subcapsular) +C0154990|T047|AB|366.32|ICD9CM|Cataract in inflam dis|Cataract in inflam dis +C0154990|T047|PT|366.32|ICD9CM|Cataract in inflammatory ocular disorders|Cataract in inflammatory ocular disorders +C0271172|T020|AB|366.33|ICD9CM|Cataract w neovasculizat|Cataract w neovasculizat +C0271172|T020|PT|366.33|ICD9CM|Cataract with neovascularization|Cataract with neovascularization +C0154992|T047|AB|366.34|ICD9CM|Cataract in degen dis|Cataract in degen dis +C0154992|T047|PT|366.34|ICD9CM|Cataract in degenerative ocular disorders|Cataract in degenerative ocular disorders +C0154994|T047|HT|366.4|ICD9CM|Cataract associated with other disorders|Cataract associated with other disorders +C0011876|T047|AB|366.41|ICD9CM|Diabetic cataract|Diabetic cataract +C0011876|T047|PT|366.41|ICD9CM|Diabetic cataract|Diabetic cataract +C0039613|T047|AB|366.42|ICD9CM|Tetanic cataract|Tetanic cataract +C0039613|T047|PT|366.42|ICD9CM|Tetanic cataract|Tetanic cataract +C0027128|T047|AB|366.43|ICD9CM|Myotonic cataract|Myotonic cataract +C0027128|T047|PT|366.43|ICD9CM|Myotonic cataract|Myotonic cataract +C0154994|T047|PT|366.44|ICD9CM|Cataract associated with other syndromes|Cataract associated with other syndromes +C0154994|T047|AB|366.44|ICD9CM|Cataract w syndrome NEC|Cataract w syndrome NEC +C0154995|T037|AB|366.45|ICD9CM|Toxic cataract|Toxic cataract +C0154995|T037|PT|366.45|ICD9CM|Toxic cataract|Toxic cataract +C0154996|T020|PT|366.46|ICD9CM|Cataract associated with radiation and other physical influences|Cataract associated with radiation and other physical influences +C0154996|T020|AB|366.46|ICD9CM|Cataract w radiation|Cataract w radiation +C1306068|T047|HT|366.5|ICD9CM|After-cataract|After-cataract +C1306068|T047|AB|366.50|ICD9CM|After-cataract NOS|After-cataract NOS +C1306068|T047|PT|366.50|ICD9CM|After-cataract, unspecified|After-cataract, unspecified +C0152260|T033|AB|366.51|ICD9CM|Soemmering's ring|Soemmering's ring +C0152260|T033|PT|366.51|ICD9CM|Soemmering's ring|Soemmering's ring +C0154997|T020|AB|366.52|ICD9CM|After-cataract NEC|After-cataract NEC +C0154997|T020|PT|366.52|ICD9CM|Other after-cataract, not obscuring vision|Other after-cataract, not obscuring vision +C0154998|T020|PT|366.53|ICD9CM|After-cataract, obscuring vision|After-cataract, obscuring vision +C0154998|T020|AB|366.53|ICD9CM|Aftr-catar obscur vision|Aftr-catar obscur vision +C0029531|T047|AB|366.8|ICD9CM|Cataract NEC|Cataract NEC +C0029531|T047|PT|366.8|ICD9CM|Other cataract|Other cataract +C0086543|T020|AB|366.9|ICD9CM|Cataract NOS|Cataract NOS +C0086543|T020|PT|366.9|ICD9CM|Unspecified cataract|Unspecified cataract +C0339670|T047|HT|367|ICD9CM|Disorders of refraction and accommodation|Disorders of refraction and accommodation +C0020490|T047|AB|367.0|ICD9CM|Hypermetropia|Hypermetropia +C0020490|T047|PT|367.0|ICD9CM|Hypermetropia|Hypermetropia +C0027092|T047|AB|367.1|ICD9CM|Myopia|Myopia +C0027092|T047|PT|367.1|ICD9CM|Myopia|Myopia +C0004106|T047|HT|367.2|ICD9CM|Astigmatism|Astigmatism +C0004106|T047|AB|367.20|ICD9CM|Astigmatism NOS|Astigmatism NOS +C0004106|T047|PT|367.20|ICD9CM|Astigmatism, unspecified|Astigmatism, unspecified +C0152193|T047|AB|367.21|ICD9CM|Regular astigmatism|Regular astigmatism +C0152193|T047|PT|367.21|ICD9CM|Regular astigmatism|Regular astigmatism +C0152194|T047|AB|367.22|ICD9CM|Irregular astigmatism|Irregular astigmatism +C0152194|T047|PT|367.22|ICD9CM|Irregular astigmatism|Irregular astigmatism +C0154999|T047|HT|367.3|ICD9CM|Anisometropia and aniseikonia|Anisometropia and aniseikonia +C0003081|T047|AB|367.31|ICD9CM|Anisometropia|Anisometropia +C0003081|T047|PT|367.31|ICD9CM|Anisometropia|Anisometropia +C0003078|T184|AB|367.32|ICD9CM|Aniseikonia|Aniseikonia +C0003078|T184|PT|367.32|ICD9CM|Aniseikonia|Aniseikonia +C0033075|T047|AB|367.4|ICD9CM|Presbyopia|Presbyopia +C0033075|T047|PT|367.4|ICD9CM|Presbyopia|Presbyopia +C0152198|T047|HT|367.5|ICD9CM|Disorders of accommodation|Disorders of accommodation +C0235238|T047|AB|367.51|ICD9CM|Paresis of accommodation|Paresis of accommodation +C0235238|T047|PT|367.51|ICD9CM|Paresis of accommodation|Paresis of accommodation +C0152197|T047|AB|367.52|ICD9CM|Tot intern ophthalmopleg|Tot intern ophthalmopleg +C0152197|T047|PT|367.52|ICD9CM|Total or complete internal ophthalmoplegia|Total or complete internal ophthalmoplegia +C0152196|T047|AB|367.53|ICD9CM|Spasm of accommodation|Spasm of accommodation +C0152196|T047|PT|367.53|ICD9CM|Spasm of accommodation|Spasm of accommodation +C0029596|T047|HT|367.8|ICD9CM|Other disorders of refraction and accommodation|Other disorders of refraction and accommodation +C0155000|T047|AB|367.81|ICD9CM|Transient refract change|Transient refract change +C0155000|T047|PT|367.81|ICD9CM|Transient refractive change|Transient refractive change +C0029596|T047|PT|367.89|ICD9CM|Other disorders of refraction and accommodation|Other disorders of refraction and accommodation +C0029596|T047|AB|367.89|ICD9CM|Refraction disorder NEC|Refraction disorder NEC +C0339670|T047|AB|367.9|ICD9CM|Refraction disorder NOS|Refraction disorder NOS +C0339670|T047|PT|367.9|ICD9CM|Unspecified disorder of refraction and accommodation|Unspecified disorder of refraction and accommodation +C0547030|T033|HT|368|ICD9CM|Visual disturbances|Visual disturbances +C0152187|T020|HT|368.0|ICD9CM|Amblyopia ex anopsia|Amblyopia ex anopsia +C0002418|T047|AB|368.00|ICD9CM|Amblyopia NOS|Amblyopia NOS +C0002418|T047|PT|368.00|ICD9CM|Amblyopia, unspecified|Amblyopia, unspecified +C0750903|T047|AB|368.01|ICD9CM|Strabismic amblyopia|Strabismic amblyopia +C0750903|T047|PT|368.01|ICD9CM|Strabismic amblyopia|Strabismic amblyopia +C0152189|T047|AB|368.02|ICD9CM|Deprivation amblyopia|Deprivation amblyopia +C0152189|T047|PT|368.02|ICD9CM|Deprivation amblyopia|Deprivation amblyopia +C0152190|T047|AB|368.03|ICD9CM|Refractive amblyopia|Refractive amblyopia +C0152190|T047|PT|368.03|ICD9CM|Refractive amblyopia|Refractive amblyopia +C0155001|T184|HT|368.1|ICD9CM|Subjective visual disturbances|Subjective visual disturbances +C0155001|T184|AB|368.10|ICD9CM|Subj visual disturb NOS|Subj visual disturb NOS +C0155001|T184|PT|368.10|ICD9CM|Subjective visual disturbance, unspecified|Subjective visual disturbance, unspecified +C0155002|T184|AB|368.11|ICD9CM|Sudden visual loss|Sudden visual loss +C0155002|T184|PT|368.11|ICD9CM|Sudden visual loss|Sudden visual loss +C0155003|T046|AB|368.12|ICD9CM|Transient visual loss|Transient visual loss +C0155003|T046|PT|368.12|ICD9CM|Transient visual loss|Transient visual loss +C0042818|T184|AB|368.13|ICD9CM|Visual discomfort|Visual discomfort +C0042818|T184|PT|368.13|ICD9CM|Visual discomfort|Visual discomfort +C0155004|T184|AB|368.14|ICD9CM|Distortion of shape/size|Distortion of shape/size +C0155004|T184|PT|368.14|ICD9CM|Visual distortions of shape and size|Visual distortions of shape and size +C0155005|T047|PT|368.15|ICD9CM|Other visual distortions and entoptic phenomena|Other visual distortions and entoptic phenomena +C0155005|T047|AB|368.15|ICD9CM|Visual distortions NEC|Visual distortions NEC +C0155006|T047|AB|368.16|ICD9CM|Psychophysic visual dist|Psychophysic visual dist +C0155006|T047|PT|368.16|ICD9CM|Psychophysical visual disturbances|Psychophysical visual disturbances +C0012569|T033|AB|368.2|ICD9CM|Diplopia|Diplopia +C0012569|T033|PT|368.2|ICD9CM|Diplopia|Diplopia +C0155007|T047|HT|368.3|ICD9CM|Other disorders of binocular vision|Other disorders of binocular vision +C0005461|T047|AB|368.30|ICD9CM|Binocular vision dis NOS|Binocular vision dis NOS +C0005461|T047|PT|368.30|ICD9CM|Binocular vision disorder, unspecified|Binocular vision disorder, unspecified +C0221103|T046|AB|368.31|ICD9CM|Binocular vis suppress|Binocular vis suppress +C0221103|T046|PT|368.31|ICD9CM|Suppression of binocular vision|Suppression of binocular vision +C0155008|T047|PT|368.32|ICD9CM|Simultaneous visual perception without fusion|Simultaneous visual perception without fusion +C0155008|T047|AB|368.32|ICD9CM|Visual percept w/o fusn|Visual percept w/o fusn +C0155009|T047|AB|368.33|ICD9CM|Fusion w def stereopsis|Fusion w def stereopsis +C0155009|T047|PT|368.33|ICD9CM|Fusion with defective stereopsis|Fusion with defective stereopsis +C0155010|T047|AB|368.34|ICD9CM|Abn retina correspond|Abn retina correspond +C0155010|T047|PT|368.34|ICD9CM|Abnormal retinal correspondence|Abnormal retinal correspondence +C3887875|T033|HT|368.4|ICD9CM|Visual field defects|Visual field defects +C3887875|T033|AB|368.40|ICD9CM|Visual field defect NOS|Visual field defect NOS +C3887875|T033|PT|368.40|ICD9CM|Visual field defect, unspecified|Visual field defect, unspecified +C0152191|T033|AB|368.41|ICD9CM|Central scotoma|Central scotoma +C0152191|T033|PT|368.41|ICD9CM|Scotoma involving central area|Scotoma involving central area +C0152192|T033|AB|368.42|ICD9CM|Scotoma of blind spot|Scotoma of blind spot +C0152192|T033|PT|368.42|ICD9CM|Scotoma of blind spot area|Scotoma of blind spot area +C3839935|T033|AB|368.43|ICD9CM|Sector or arcuate defect|Sector or arcuate defect +C3839935|T033|PT|368.43|ICD9CM|Sector or arcuate visual field defects|Sector or arcuate visual field defects +C0029657|T047|PT|368.44|ICD9CM|Other localized visual field defect|Other localized visual field defect +C0029657|T047|AB|368.44|ICD9CM|Visual field defect NEC|Visual field defect NEC +C0155012|T047|AB|368.45|ICD9CM|Gen visual contraction|Gen visual contraction +C0155012|T047|PT|368.45|ICD9CM|Generalized visual field contraction or constriction|Generalized visual field contraction or constriction +C0271202|T047|PT|368.46|ICD9CM|Homonymous bilateral field defects|Homonymous bilateral field defects +C0271202|T047|AB|368.46|ICD9CM|Homonymous hemianopsia|Homonymous hemianopsia +C0271207|T033|PT|368.47|ICD9CM|Heteronymous bilateral field defects|Heteronymous bilateral field defects +C0271207|T033|AB|368.47|ICD9CM|Heteronymous hemianopsia|Heteronymous hemianopsia +C0242225|T047|HT|368.5|ICD9CM|Color vision deficiencies|Color vision deficiencies +C0155015|T047|AB|368.51|ICD9CM|Protan defect|Protan defect +C0155015|T047|PT|368.51|ICD9CM|Protan defect|Protan defect +C0155016|T047|AB|368.52|ICD9CM|Deutan defect|Deutan defect +C0155016|T047|PT|368.52|ICD9CM|Deutan defect|Deutan defect +C0155017|T047|AB|368.53|ICD9CM|Tritan defect|Tritan defect +C0155017|T047|PT|368.53|ICD9CM|Tritan defect|Tritan defect +C0152200|T047|AB|368.54|ICD9CM|Achromatopsia|Achromatopsia +C0152200|T047|PT|368.54|ICD9CM|Achromatopsia|Achromatopsia +C0155018|T047|AB|368.55|ICD9CM|Acq color deficiency|Acq color deficiency +C0155018|T047|PT|368.55|ICD9CM|Acquired color vision deficiencies|Acquired color vision deficiencies +C0029548|T047|AB|368.59|ICD9CM|Color deficiency NEC|Color deficiency NEC +C0029548|T047|PT|368.59|ICD9CM|Other color vision deficiencies|Other color vision deficiencies +C0028077|T047|HT|368.6|ICD9CM|Night blindness|Night blindness +C0028077|T047|AB|368.60|ICD9CM|Night blindness NOS|Night blindness NOS +C0028077|T047|PT|368.60|ICD9CM|Night blindness, unspecified|Night blindness, unspecified +C1306122|T047|AB|368.61|ICD9CM|Congen night blindness|Congen night blindness +C1306122|T047|PT|368.61|ICD9CM|Congenital night blindness|Congenital night blindness +C0152202|T020|AB|368.62|ICD9CM|Acquired night blindness|Acquired night blindness +C0152202|T020|PT|368.62|ICD9CM|Acquired night blindness|Acquired night blindness +C0155019|T047|AB|368.63|ICD9CM|Abn dark adaptat curve|Abn dark adaptat curve +C0155019|T047|PT|368.63|ICD9CM|Abnormal dark adaptation curve|Abnormal dark adaptation curve +C0029672|T047|AB|368.69|ICD9CM|Night blindness NEC|Night blindness NEC +C0029672|T047|PT|368.69|ICD9CM|Other night blindness|Other night blindness +C0029844|T184|PT|368.8|ICD9CM|Other specified visual disturbances|Other specified visual disturbances +C0029844|T184|AB|368.8|ICD9CM|Visual disturbances NEC|Visual disturbances NEC +C0547030|T033|PT|368.9|ICD9CM|Unspecified visual disturbance|Unspecified visual disturbance +C0547030|T033|AB|368.9|ICD9CM|Visual disturbance NOS|Visual disturbance NOS +C0155020|T047|HT|369|ICD9CM|Blindness and low vision|Blindness and low vision +C0155021|T047|HT|369.0|ICD9CM|Profound vision impairment, both eyes|Profound vision impairment, both eyes +C1879328|T047|AB|369.00|ICD9CM|Both eyes blind-who def|Both eyes blind-who def +C1879328|T047|PT|369.00|ICD9CM|Profound impairment, both eyes, impairment level not further specified|Profound impairment, both eyes, impairment level not further specified +C0155022|T047|PT|369.01|ICD9CM|Better eye: total vision impairment; lesser eye: total vision impairment|Better eye: total vision impairment; lesser eye: total vision impairment +C0155022|T047|AB|369.01|ICD9CM|Tot impairment-both eyes|Tot impairment-both eyes +C0521709|T047|PT|369.02|ICD9CM|Better eye: near-total vision impairment; lesser eye: not further specified|Better eye: near-total vision impairment; lesser eye: not further specified +C0521709|T047|AB|369.02|ICD9CM|One eye-near tot/oth-NOS|One eye-near tot/oth-NOS +C0392558|T047|PT|369.03|ICD9CM|Better eye: near-total vision impairment; lesser eye: total vision impairment|Better eye: near-total vision impairment; lesser eye: total vision impairment +C0392558|T047|AB|369.03|ICD9CM|One eye-near tot/oth-tot|One eye-near tot/oth-tot +C0271220|T033|PT|369.04|ICD9CM|Better eye: near-total vision impairment; lesser eye: near-total vision impairment|Better eye: near-total vision impairment; lesser eye: near-total vision impairment +C0271220|T033|AB|369.04|ICD9CM|Near-tot impair-both eye|Near-tot impair-both eye +C0392559|T047|PT|369.05|ICD9CM|Better eye: profound vision impairment; lesser eye: not further specified|Better eye: profound vision impairment; lesser eye: not further specified +C0392559|T047|AB|369.05|ICD9CM|One eye-profound/oth-NOS|One eye-profound/oth-NOS +C0392560|T033|PT|369.06|ICD9CM|Better eye: profound vision impairment; lesser eye: total vision impairment|Better eye: profound vision impairment; lesser eye: total vision impairment +C0392560|T033|AB|369.06|ICD9CM|One eye-profound/oth-tot|One eye-profound/oth-tot +C0392561|T047|PT|369.07|ICD9CM|Better eye: profound vision impairment; lesser eye: near-total vision impairment|Better eye: profound vision impairment; lesser eye: near-total vision impairment +C0392561|T047|AB|369.07|ICD9CM|One eye-prfnd/oth-nr tot|One eye-prfnd/oth-nr tot +C0271224|T047|PT|369.08|ICD9CM|Better eye: profound vision impairment; lesser eye: profound vision impairment|Better eye: profound vision impairment; lesser eye: profound vision impairment +C0271224|T047|AB|369.08|ICD9CM|Profound impair both eye|Profound impair both eye +C0339701|T047|HT|369.1|ICD9CM|Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye|Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye +C0271225|T047|AB|369.10|ICD9CM|Blindness/low vision|Blindness/low vision +C0271225|T047|PT|369.10|ICD9CM|Moderate or severe impairment, better eye, impairment level not further specified|Moderate or severe impairment, better eye, impairment level not further specified +C0392562|T047|AB|369.11|ICD9CM|1 eye-sev/oth-blind NOS|1 eye-sev/oth-blind NOS +C0392562|T047|PT|369.11|ICD9CM|Better eye: severe vision impairment; lesser eye: blind, not further specified|Better eye: severe vision impairment; lesser eye: blind, not further specified +C0392563|T033|PT|369.12|ICD9CM|Better eye: severe vision impairment; lesser eye: total vision impairment|Better eye: severe vision impairment; lesser eye: total vision impairment +C0392563|T033|AB|369.12|ICD9CM|One eye-severe/oth-total|One eye-severe/oth-total +C0392564|T033|PT|369.13|ICD9CM|Better eye: severe vision impairment; lesser eye: near-total vision impairment|Better eye: severe vision impairment; lesser eye: near-total vision impairment +C0392564|T033|AB|369.13|ICD9CM|One eye-sev/oth-near tot|One eye-sev/oth-near tot +C0392565|T033|PT|369.14|ICD9CM|Better eye: severe vision impairment; lesser eye: profound vision impairment|Better eye: severe vision impairment; lesser eye: profound vision impairment +C0392565|T033|AB|369.14|ICD9CM|One eye-sev/oth-prfnd|One eye-sev/oth-prfnd +C0392566|T033|PT|369.15|ICD9CM|Better eye: moderate vision impairment; lesser eye: blind, not further specified|Better eye: moderate vision impairment; lesser eye: blind, not further specified +C0392566|T033|AB|369.15|ICD9CM|One eye-mod/oth-blind|One eye-mod/oth-blind +C0392567|T033|PT|369.16|ICD9CM|Better eye: moderate vision impairment; lesser eye: total vision impairment|Better eye: moderate vision impairment; lesser eye: total vision impairment +C0392567|T033|AB|369.16|ICD9CM|One eye-moderate/oth-tot|One eye-moderate/oth-tot +C0392568|T033|PT|369.17|ICD9CM|Better eye: moderate vision impairment; lesser eye: near-total vision impairment|Better eye: moderate vision impairment; lesser eye: near-total vision impairment +C0392568|T033|AB|369.17|ICD9CM|One eye-mod/oth-near tot|One eye-mod/oth-near tot +C0392569|T033|PT|369.18|ICD9CM|Better eye: moderate vision impairment; lesser eye: profound vision impairment|Better eye: moderate vision impairment; lesser eye: profound vision impairment +C0392569|T033|AB|369.18|ICD9CM|One eye-mod/oth-profound|One eye-mod/oth-profound +C0155040|T047|HT|369.2|ICD9CM|Moderate or severe vision impairment, both eyes|Moderate or severe vision impairment, both eyes +C0271234|T047|AB|369.20|ICD9CM|Low vision, 2 eyes NOS|Low vision, 2 eyes NOS +C0271234|T047|PT|369.20|ICD9CM|Moderate or severe impairment, both eyes, impairment level not further specified|Moderate or severe impairment, both eyes, impairment level not further specified +C0392570|T033|PT|369.21|ICD9CM|Better eye: severe vision impairment; lesser eye; impairment not further specified|Better eye: severe vision impairment; lesser eye; impairment not further specified +C0392570|T033|AB|369.21|ICD9CM|One eye-severe/oth-NOS|One eye-severe/oth-NOS +C0271236|T033|PT|369.22|ICD9CM|Better eye: severe vision impairment; lesser eye: severe vision impairment|Better eye: severe vision impairment; lesser eye: severe vision impairment +C0271236|T033|AB|369.22|ICD9CM|Severe impair-both eyes|Severe impair-both eyes +C0392571|T047|PT|369.23|ICD9CM|Better eye: moderate vision impairment; lesser eye: impairment not further specified|Better eye: moderate vision impairment; lesser eye: impairment not further specified +C0392571|T047|AB|369.23|ICD9CM|One eye-moderate/oth-NOS|One eye-moderate/oth-NOS +C0392572|T033|PT|369.24|ICD9CM|Better eye: moderate vision impairment; lesser eye: severe vision impairment|Better eye: moderate vision impairment; lesser eye: severe vision impairment +C0392572|T033|AB|369.24|ICD9CM|One eye-moderate/oth-sev|One eye-moderate/oth-sev +C0271239|T033|PT|369.25|ICD9CM|Better eye: moderate vision impairment; lesser eye: moderate vision impairment|Better eye: moderate vision impairment; lesser eye: moderate vision impairment +C0271239|T033|AB|369.25|ICD9CM|Moderate impair-both eye|Moderate impair-both eye +C0155047|T184|AB|369.3|ICD9CM|Blindness NOS, both eyes|Blindness NOS, both eyes +C0155047|T184|PT|369.3|ICD9CM|Unqualified visual loss, both eyes|Unqualified visual loss, both eyes +C0339711|T033|AB|369.4|ICD9CM|Legal blindness-usa def|Legal blindness-usa def +C0339711|T033|PT|369.4|ICD9CM|Legal blindness, as defined in U.S.A.|Legal blindness, as defined in U.S.A. +C0155049|T047|HT|369.6|ICD9CM|Profound vision impairment, one eye|Profound vision impairment, one eye +C0392578|T033|AB|369.60|ICD9CM|Blindness, one eye|Blindness, one eye +C0392578|T033|PT|369.60|ICD9CM|Profound impairment, one eye, impairment level not further specified|Profound impairment, one eye, impairment level not further specified +C0521710|T033|AB|369.61|ICD9CM|One eye-total/oth-unknwn|One eye-total/oth-unknwn +C0521710|T033|PT|369.61|ICD9CM|One eye: total vision impairment; other eye: not specified|One eye: total vision impairment; other eye: not specified +C0392573|T033|AB|369.62|ICD9CM|One eye-tot/oth-near nor|One eye-tot/oth-near nor +C0392573|T033|PT|369.62|ICD9CM|One eye: total vision impairment; other eye: near-normal vision|One eye: total vision impairment; other eye: near-normal vision +C0392574|T033|AB|369.63|ICD9CM|One eye-total/oth-normal|One eye-total/oth-normal +C0392574|T033|PT|369.63|ICD9CM|One eye: total vision impairment; other eye: normal vision|One eye: total vision impairment; other eye: normal vision +C0392575|T033|AB|369.64|ICD9CM|One eye-near tot/oth-NOS|One eye-near tot/oth-NOS +C0392575|T033|PT|369.64|ICD9CM|One eye: near-total vision impairment; other eye: vision not specified|One eye: near-total vision impairment; other eye: vision not specified +C0392576|T033|AB|369.65|ICD9CM|Near-tot imp/near-normal|Near-tot imp/near-normal +C0392576|T033|PT|369.65|ICD9CM|One eye: near-total vision impairment; other eye: near-normal vision|One eye: near-total vision impairment; other eye: near-normal vision +C0392577|T033|AB|369.66|ICD9CM|Near-total impair/normal|Near-total impair/normal +C0392577|T033|PT|369.66|ICD9CM|One eye: near-total vision impairment; other eye: normal vision|One eye: near-total vision impairment; other eye: normal vision +C0392578|T033|AB|369.67|ICD9CM|One eye-prfound/oth-unkn|One eye-prfound/oth-unkn +C0392578|T033|PT|369.67|ICD9CM|One eye: profound vision impairment; other eye: vision not specified|One eye: profound vision impairment; other eye: vision not specified +C0392579|T033|PT|369.68|ICD9CM|One eye: profound vision impairment; other eye: near-normal vision|One eye: profound vision impairment; other eye: near-normal vision +C0392579|T033|AB|369.68|ICD9CM|Profnd impair/near norm|Profnd impair/near norm +C0392580|T033|PT|369.69|ICD9CM|One eye: profound vision impairment; other eye: normal vision|One eye: profound vision impairment; other eye: normal vision +C0392580|T033|AB|369.69|ICD9CM|Profound impair/normal|Profound impair/normal +C0155058|T047|HT|369.7|ICD9CM|Moderate or severe vision impairment, one eye|Moderate or severe vision impairment, one eye +C0520728|T047|AB|369.70|ICD9CM|Low vision, one eye|Low vision, one eye +C0520728|T047|PT|369.70|ICD9CM|Moderate or severe impairment, one eye, impairment level not further specified|Moderate or severe impairment, one eye, impairment level not further specified +C0392581|T033|AB|369.71|ICD9CM|One eye-severe/oth-unknw|One eye-severe/oth-unknw +C0392581|T033|PT|369.71|ICD9CM|One eye: severe vision impairment; other eye: vision not specified|One eye: severe vision impairment; other eye: vision not specified +C0392582|T033|AB|369.72|ICD9CM|One eye-sev/oth-nr norm|One eye-sev/oth-nr norm +C0392582|T033|PT|369.72|ICD9CM|One eye: severe vision impairment; other eye: near-normal vision|One eye: severe vision impairment; other eye: near-normal vision +C0392583|T033|AB|369.73|ICD9CM|One eye-severe/oth-norm|One eye-severe/oth-norm +C0392583|T033|PT|369.73|ICD9CM|One eye: severe vision impairment; other eye: normal vision|One eye: severe vision impairment; other eye: normal vision +C0392584|T033|AB|369.74|ICD9CM|One eye-mod/other-unknwn|One eye-mod/other-unknwn +C0392584|T033|PT|369.74|ICD9CM|One eye: moderate vision impairment; other eye: vision not specified|One eye: moderate vision impairment; other eye: vision not specified +C0392585|T033|AB|369.75|ICD9CM|One eye-mod/oth-nr norm|One eye-mod/oth-nr norm +C0392585|T033|PT|369.75|ICD9CM|One eye: moderate vision impairment; other eye: near-normal vision|One eye: moderate vision impairment; other eye: near-normal vision +C0392586|T033|AB|369.76|ICD9CM|One eye-mod/oth normal|One eye-mod/oth normal +C0392586|T033|PT|369.76|ICD9CM|One eye: moderate vision impairment; other eye: normal vision|One eye: moderate vision impairment; other eye: normal vision +C0155066|T184|PT|369.8|ICD9CM|Unqualified visual loss, one eye|Unqualified visual loss, one eye +C0155066|T184|AB|369.8|ICD9CM|Visual loss, one eye NOS|Visual loss, one eye NOS +C3665346|T184|PT|369.9|ICD9CM|Unspecified visual loss|Unspecified visual loss +C3665346|T184|AB|369.9|ICD9CM|Visual loss NOS|Visual loss NOS +C0022568|T047|HT|370|ICD9CM|Keratitis|Keratitis +C0010043|T047|HT|370.0|ICD9CM|Corneal ulcer|Corneal ulcer +C0010043|T047|AB|370.00|ICD9CM|Corneal ulcer NOS|Corneal ulcer NOS +C0010043|T047|PT|370.00|ICD9CM|Corneal ulcer, unspecified|Corneal ulcer, unspecified +C0155067|T047|AB|370.01|ICD9CM|Marginal corneal ulcer|Marginal corneal ulcer +C0155067|T047|PT|370.01|ICD9CM|Marginal corneal ulcer|Marginal corneal ulcer +C0155068|T047|AB|370.02|ICD9CM|Ring corneal ulcer|Ring corneal ulcer +C0155068|T047|PT|370.02|ICD9CM|Ring corneal ulcer|Ring corneal ulcer +C0155069|T047|AB|370.03|ICD9CM|Central corneal ulcer|Central corneal ulcer +C0155069|T047|PT|370.03|ICD9CM|Central corneal ulcer|Central corneal ulcer +C0155070|T047|AB|370.04|ICD9CM|Hypopyon ulcer|Hypopyon ulcer +C0155070|T047|PT|370.04|ICD9CM|Hypopyon ulcer|Hypopyon ulcer +C0155071|T047|AB|370.05|ICD9CM|Mycotic corneal ulcer|Mycotic corneal ulcer +C0155071|T047|PT|370.05|ICD9CM|Mycotic corneal ulcer|Mycotic corneal ulcer +C0151844|T047|AB|370.06|ICD9CM|Perforated corneal ulcer|Perforated corneal ulcer +C0151844|T047|PT|370.06|ICD9CM|Perforated corneal ulcer|Perforated corneal ulcer +C0155072|T047|AB|370.07|ICD9CM|Mooren's ulcer|Mooren's ulcer +C0155072|T047|PT|370.07|ICD9CM|Mooren's ulcer|Mooren's ulcer +C0155073|T047|HT|370.2|ICD9CM|Superficial keratitis without conjunctivitis|Superficial keratitis without conjunctivitis +C0155074|T047|AB|370.20|ICD9CM|Superfic keratitis NOS|Superfic keratitis NOS +C0155074|T047|PT|370.20|ICD9CM|Superficial keratitis, unspecified|Superficial keratitis, unspecified +C0259799|T047|AB|370.21|ICD9CM|Punctate keratitis|Punctate keratitis +C0259799|T047|PT|370.21|ICD9CM|Punctate keratitis|Punctate keratitis +C0155076|T047|AB|370.22|ICD9CM|Macular keratitis|Macular keratitis +C0155076|T047|PT|370.22|ICD9CM|Macular keratitis|Macular keratitis +C0155077|T047|AB|370.23|ICD9CM|Filamentary keratitis|Filamentary keratitis +C0155077|T047|PT|370.23|ICD9CM|Filamentary keratitis|Filamentary keratitis +C0155078|T047|AB|370.24|ICD9CM|Photokeratitis|Photokeratitis +C0155078|T047|PT|370.24|ICD9CM|Photokeratitis|Photokeratitis +C0155079|T047|HT|370.3|ICD9CM|Certain types of keratoconjunctivitis|Certain types of keratoconjunctivitis +C0155080|T047|AB|370.31|ICD9CM|Phlycten keratoconjunct|Phlycten keratoconjunct +C0155080|T047|PT|370.31|ICD9CM|Phlyctenular keratoconjunctivitis|Phlyctenular keratoconjunctivitis +C0155081|T047|PT|370.32|ICD9CM|Limbar and corneal involvement in vernal conjunctivitis|Limbar and corneal involvement in vernal conjunctivitis +C0155081|T047|AB|370.32|ICD9CM|Limbar keratoconjunctiv|Limbar keratoconjunctiv +C0155082|T047|AB|370.33|ICD9CM|Keratoconjunctivit sicca|Keratoconjunctivit sicca +C0155082|T047|PT|370.33|ICD9CM|Keratoconjunctivitis sicca, not specified as Sjogren's|Keratoconjunctivitis sicca, not specified as Sjogren's +C0339295|T047|PT|370.34|ICD9CM|Exposure keratoconjunctivitis|Exposure keratoconjunctivitis +C0339295|T047|AB|370.34|ICD9CM|Expsure keratoconjunctiv|Expsure keratoconjunctiv +C0155084|T047|AB|370.35|ICD9CM|Neurotroph keratoconjunc|Neurotroph keratoconjunc +C0155084|T047|PT|370.35|ICD9CM|Neurotrophic keratoconjunctivitis|Neurotrophic keratoconjunctivitis +C0155085|T047|HT|370.4|ICD9CM|Other and unspecified keratoconjunctivitis|Other and unspecified keratoconjunctivitis +C0022573|T047|AB|370.40|ICD9CM|Keratoconjunctivitis NOS|Keratoconjunctivitis NOS +C0022573|T047|PT|370.40|ICD9CM|Keratoconjunctivitis, unspecified|Keratoconjunctivitis, unspecified +C0155086|T047|AB|370.44|ICD9CM|Keratitis in exanthema|Keratitis in exanthema +C0155086|T047|PT|370.44|ICD9CM|Keratitis or keratoconjunctivitis in exanthema|Keratitis or keratoconjunctivitis in exanthema +C0029650|T047|AB|370.49|ICD9CM|Keratoconjunctivitis NEC|Keratoconjunctivitis NEC +C0029650|T047|PT|370.49|ICD9CM|Other keratoconjunctivitis|Other keratoconjunctivitis +C0155087|T047|HT|370.5|ICD9CM|Interstitial and deep keratitis|Interstitial and deep keratitis +C0155088|T047|AB|370.50|ICD9CM|Interstit keratitis NOS|Interstit keratitis NOS +C0155088|T047|PT|370.50|ICD9CM|Interstitial keratitis, unspecified|Interstitial keratitis, unspecified +C0155089|T047|AB|370.52|ICD9CM|Diffus interstit keratit|Diffus interstit keratit +C0155089|T047|PT|370.52|ICD9CM|Diffuse interstitial keratitis|Diffuse interstitial keratitis +C0155090|T047|AB|370.54|ICD9CM|Sclerosing keratitis|Sclerosing keratitis +C0155090|T047|PT|370.54|ICD9CM|Sclerosing keratitis|Sclerosing keratitis +C0155091|T047|AB|370.55|ICD9CM|Corneal abscess|Corneal abscess +C0155091|T047|PT|370.55|ICD9CM|Corneal abscess|Corneal abscess +C0155092|T047|AB|370.59|ICD9CM|Interstit keratitis NEC|Interstit keratitis NEC +C0155092|T047|PT|370.59|ICD9CM|Other interstitial and deep keratitis|Other interstitial and deep keratitis +C0085109|T047|HT|370.6|ICD9CM|Corneal neovascularization|Corneal neovascularization +C0085109|T047|AB|370.60|ICD9CM|Cornea neovasculariz NOS|Cornea neovasculariz NOS +C0085109|T047|PT|370.60|ICD9CM|Corneal neovascularization, unspecified|Corneal neovascularization, unspecified +C0155093|T047|AB|370.61|ICD9CM|Local vasculariza cornea|Local vasculariza cornea +C0155093|T047|PT|370.61|ICD9CM|Localized vascularization of cornea|Localized vascularization of cornea +C0155094|T047|AB|370.62|ICD9CM|Corneal pannus|Corneal pannus +C0155094|T047|PT|370.62|ICD9CM|Pannus (corneal)|Pannus (corneal) +C0155095|T047|AB|370.63|ICD9CM|Deep vasculariza cornea|Deep vasculariza cornea +C0155095|T047|PT|370.63|ICD9CM|Deep vascularization of cornea|Deep vascularization of cornea +C0155096|T190|AB|370.64|ICD9CM|Corneal ghost vessels|Corneal ghost vessels +C0155096|T190|PT|370.64|ICD9CM|Ghost vessels (corneal)|Ghost vessels (corneal) +C0348526|T047|AB|370.8|ICD9CM|Keratitis NEC|Keratitis NEC +C0348526|T047|PT|370.8|ICD9CM|Other forms of keratitis|Other forms of keratitis +C0022568|T047|AB|370.9|ICD9CM|Keratitis NOS|Keratitis NOS +C0022568|T047|PT|370.9|ICD9CM|Unspecified keratitis|Unspecified keratitis +C0155097|T047|HT|371|ICD9CM|Corneal opacity and other disorders of cornea|Corneal opacity and other disorders of cornea +C0155098|T020|HT|371.0|ICD9CM|Corneal scars and opacities|Corneal scars and opacities +C0010038|T033|AB|371.00|ICD9CM|Corneal opacity NOS|Corneal opacity NOS +C0010038|T033|PT|371.00|ICD9CM|Corneal opacity, unspecified|Corneal opacity, unspecified +C0155099|T033|AB|371.01|ICD9CM|Minor opacity of cornea|Minor opacity of cornea +C0155099|T033|PT|371.01|ICD9CM|Minor opacity of cornea|Minor opacity of cornea +C0155100|T033|AB|371.02|ICD9CM|Periph opacity of cornea|Periph opacity of cornea +C0155100|T033|PT|371.02|ICD9CM|Peripheral opacity of cornea|Peripheral opacity of cornea +C0007686|T033|PT|371.03|ICD9CM|Central opacity of cornea|Central opacity of cornea +C0007686|T033|AB|371.03|ICD9CM|Central opacity, cornea|Central opacity, cornea +C0271275|T033|AB|371.04|ICD9CM|Adherent leucoma|Adherent leucoma +C0271275|T033|PT|371.04|ICD9CM|Adherent leucoma|Adherent leucoma +C0155102|T047|AB|371.05|ICD9CM|Phthisical cornea|Phthisical cornea +C0155102|T047|PT|371.05|ICD9CM|Phthisical cornea|Phthisical cornea +C0339249|T033|HT|371.1|ICD9CM|Corneal pigmentations and deposits|Corneal pigmentations and deposits +C0162281|T047|AB|371.10|ICD9CM|Corneal deposit NOS|Corneal deposit NOS +C0162281|T047|PT|371.10|ICD9CM|Corneal deposit, unspecified|Corneal deposit, unspecified +C0155104|T047|AB|371.11|ICD9CM|Ant cornea pigmentation|Ant cornea pigmentation +C0155104|T047|PT|371.11|ICD9CM|Anterior corneal pigmentations|Anterior corneal pigmentations +C0155105|T047|AB|371.12|ICD9CM|Stromal cornea pigment|Stromal cornea pigment +C0155105|T047|PT|371.12|ICD9CM|Stromal corneal pigmentations|Stromal corneal pigmentations +C0155106|T047|AB|371.13|ICD9CM|Post cornea pigmentation|Post cornea pigmentation +C0155106|T047|PT|371.13|ICD9CM|Posterior corneal pigmentations|Posterior corneal pigmentations +C0152457|T047|PT|371.14|ICD9CM|Kayser-Fleischer ring|Kayser-Fleischer ring +C0152457|T047|AB|371.14|ICD9CM|Kayser-fleischer ring|Kayser-fleischer ring +C0155107|T047|AB|371.15|ICD9CM|Oth deposit w metab dis|Oth deposit w metab dis +C0155107|T047|PT|371.15|ICD9CM|Other corneal deposits associated with metabolic disorders|Other corneal deposits associated with metabolic disorders +C0155108|T047|AB|371.16|ICD9CM|Argentous cornea deposit|Argentous cornea deposit +C0155108|T047|PT|371.16|ICD9CM|Argentous corneal deposits|Argentous corneal deposits +C0010037|T046|HT|371.2|ICD9CM|Corneal edema|Corneal edema +C0010037|T046|AB|371.20|ICD9CM|Corneal edema NOS|Corneal edema NOS +C0010037|T046|PT|371.20|ICD9CM|Corneal edema, unspecified|Corneal edema, unspecified +C0155109|T047|AB|371.21|ICD9CM|Idiopathic corneal edema|Idiopathic corneal edema +C0155109|T047|PT|371.21|ICD9CM|Idiopathic corneal edema|Idiopathic corneal edema +C0155110|T047|AB|371.22|ICD9CM|Secondary corneal edema|Secondary corneal edema +C0155110|T047|PT|371.22|ICD9CM|Secondary corneal edema|Secondary corneal edema +C0155111|T047|AB|371.23|ICD9CM|Bullous keratopathy|Bullous keratopathy +C0155111|T047|PT|371.23|ICD9CM|Bullous keratopathy|Bullous keratopathy +C0474442|T047|PT|371.24|ICD9CM|Corneal edema due to wearing of contact lenses|Corneal edema due to wearing of contact lenses +C0474442|T047|AB|371.24|ICD9CM|Edema d/t contact lens|Edema d/t contact lens +C0155114|T020|HT|371.3|ICD9CM|Changes of corneal membranes|Changes of corneal membranes +C0155114|T020|AB|371.30|ICD9CM|Cornea memb change NOS|Cornea memb change NOS +C0155114|T020|PT|371.30|ICD9CM|Corneal membrane change, unspecified|Corneal membrane change, unspecified +C0155115|T047|AB|371.31|ICD9CM|Fold of bowman membrane|Fold of bowman membrane +C0155115|T047|PT|371.31|ICD9CM|Folds and rupture of bowman's membrane|Folds and rupture of bowman's membrane +C0155116|T190|AB|371.32|ICD9CM|Fold in descemet membran|Fold in descemet membran +C0155116|T190|PT|371.32|ICD9CM|Folds in descemet's membrane|Folds in descemet's membrane +C0155117|T020|AB|371.33|ICD9CM|Rupture descemet membran|Rupture descemet membran +C0155117|T020|PT|371.33|ICD9CM|Rupture in descemet's membrane|Rupture in descemet's membrane +C0155118|T047|HT|371.4|ICD9CM|Corneal degenerations|Corneal degenerations +C0155118|T047|AB|371.40|ICD9CM|Corneal degeneration NOS|Corneal degeneration NOS +C0155118|T047|PT|371.40|ICD9CM|Corneal degeneration, unspecified|Corneal degeneration, unspecified +C0036647|T020|AB|371.41|ICD9CM|Senile corneal changes|Senile corneal changes +C0036647|T020|PT|371.41|ICD9CM|Senile corneal changes|Senile corneal changes +C0155119|T047|AB|371.42|ICD9CM|Recurrent cornea erosion|Recurrent cornea erosion +C0155119|T047|PT|371.42|ICD9CM|Recurrent erosion of cornea|Recurrent erosion of cornea +C0155120|T047|AB|371.43|ICD9CM|Band-shaped keratopathy|Band-shaped keratopathy +C0155120|T047|PT|371.43|ICD9CM|Band-shaped keratopathy|Band-shaped keratopathy +C0155121|T047|AB|371.44|ICD9CM|Calcer cornea degen NEC|Calcer cornea degen NEC +C0155121|T047|PT|371.44|ICD9CM|Other calcerous degenerations of cornea|Other calcerous degenerations of cornea +C0152455|T047|AB|371.45|ICD9CM|Keratomalacia NOS|Keratomalacia NOS +C0152455|T047|PT|371.45|ICD9CM|Keratomalacia NOS|Keratomalacia NOS +C0155122|T047|AB|371.46|ICD9CM|Nodular cornea degen|Nodular cornea degen +C0155122|T047|PT|371.46|ICD9CM|Nodular degeneration of cornea|Nodular degeneration of cornea +C0155123|T047|AB|371.48|ICD9CM|Peripheral cornea degen|Peripheral cornea degen +C0155123|T047|PT|371.48|ICD9CM|Peripheral degenerations of cornea|Peripheral degenerations of cornea +C0155124|T047|AB|371.49|ICD9CM|Cornea degeneration NEC|Cornea degeneration NEC +C0155124|T047|PT|371.49|ICD9CM|Other corneal degenerations|Other corneal degenerations +C0010035|T047|HT|371.5|ICD9CM|Hereditary corneal dystrophies|Hereditary corneal dystrophies +C0010035|T047|AB|371.50|ICD9CM|Corneal dystrophy NOS|Corneal dystrophy NOS +C0010035|T047|PT|371.50|ICD9CM|Hereditary corneal dystrophy, unspecified|Hereditary corneal dystrophy, unspecified +C0339277|T019|AB|371.51|ICD9CM|Juv epith cornea dystrph|Juv epith cornea dystrph +C0339277|T019|PT|371.51|ICD9CM|Juvenile epithelial corneal dystrophy|Juvenile epithelial corneal dystrophy +C0155126|T047|AB|371.52|ICD9CM|Ant cornea dystrophy NEC|Ant cornea dystrophy NEC +C0155126|T047|PT|371.52|ICD9CM|Other anterior corneal dystrophies|Other anterior corneal dystrophies +C0018179|T047|AB|371.53|ICD9CM|Granular cornea dystrphy|Granular cornea dystrphy +C0018179|T047|PT|371.53|ICD9CM|Granular corneal dystrophy|Granular corneal dystrophy +C0155127|T047|AB|371.54|ICD9CM|Lattice cornea dystrophy|Lattice cornea dystrophy +C0155127|T047|PT|371.54|ICD9CM|Lattice corneal dystrophy|Lattice corneal dystrophy +C0024439|T047|AB|371.55|ICD9CM|Macular cornea dystrophy|Macular cornea dystrophy +C0024439|T047|PT|371.55|ICD9CM|Macular corneal dystrophy|Macular corneal dystrophy +C0155128|T047|PT|371.56|ICD9CM|Other stromal corneal dystrophies|Other stromal corneal dystrophies +C0155128|T047|AB|371.56|ICD9CM|Strom cornea dystrph NEC|Strom cornea dystrph NEC +C0544008|T047|AB|371.57|ICD9CM|Endothel cornea dystrphy|Endothel cornea dystrphy +C0544008|T047|PT|371.57|ICD9CM|Endothelial corneal dystrophy|Endothelial corneal dystrophy +C0155130|T047|PT|371.58|ICD9CM|Other posterior corneal dystrophies|Other posterior corneal dystrophies +C0155130|T047|AB|371.58|ICD9CM|Post cornea dystrphy NEC|Post cornea dystrphy NEC +C0022578|T047|HT|371.6|ICD9CM|Keratoconus|Keratoconus +C0022578|T047|AB|371.60|ICD9CM|Keratoconus NOS|Keratoconus NOS +C0022578|T047|PT|371.60|ICD9CM|Keratoconus, unspecified|Keratoconus, unspecified +C0155131|T047|AB|371.61|ICD9CM|Keratoconus, stable|Keratoconus, stable +C0155131|T047|PT|371.61|ICD9CM|Keratoconus, stable condition|Keratoconus, stable condition +C0339286|T047|AB|371.62|ICD9CM|Keratoconus, ac hydrops|Keratoconus, ac hydrops +C0339286|T047|PT|371.62|ICD9CM|Keratoconus, acute hydrops|Keratoconus, acute hydrops +C0155133|T190|HT|371.7|ICD9CM|Other corneal deformities|Other corneal deformities +C0339212|T190|AB|371.70|ICD9CM|Corneal deformity NOS|Corneal deformity NOS +C0339212|T190|PT|371.70|ICD9CM|Corneal deformity, unspecified|Corneal deformity, unspecified +C0155135|T047|AB|371.71|ICD9CM|Corneal ectasia|Corneal ectasia +C0155135|T047|PT|371.71|ICD9CM|Corneal ectasia|Corneal ectasia +C0155136|T190|AB|371.72|ICD9CM|Descemetocele|Descemetocele +C0155136|T190|PT|371.72|ICD9CM|Descemetocele|Descemetocele +C0152440|T047|AB|371.73|ICD9CM|Corneal staphyloma|Corneal staphyloma +C0152440|T047|PT|371.73|ICD9CM|Corneal staphyloma|Corneal staphyloma +C0155137|T047|HT|371.8|ICD9CM|Other corneal disorders|Other corneal disorders +C0155138|T047|AB|371.81|ICD9CM|Corneal anesthesia|Corneal anesthesia +C0155138|T047|PT|371.81|ICD9CM|Corneal anesthesia and hypoesthesia|Corneal anesthesia and hypoesthesia +C0375253|T020|PT|371.82|ICD9CM|Corneal disorder due to contact lens|Corneal disorder due to contact lens +C0375253|T020|AB|371.82|ICD9CM|Corneal dsdr contct lens|Corneal dsdr contct lens +C0155137|T047|AB|371.89|ICD9CM|Corneal disorder NEC|Corneal disorder NEC +C0155137|T047|PT|371.89|ICD9CM|Other corneal disorders|Other corneal disorders +C0010034|T047|AB|371.9|ICD9CM|Corneal disorder NOS|Corneal disorder NOS +C0010034|T047|PT|371.9|ICD9CM|Unspecified corneal disorder|Unspecified corneal disorder +C0009759|T047|HT|372|ICD9CM|Disorders of conjunctiva|Disorders of conjunctiva +C0155141|T047|HT|372.0|ICD9CM|Acute conjunctivitis|Acute conjunctivitis +C0155141|T047|AB|372.00|ICD9CM|Acute conjunctivitis NOS|Acute conjunctivitis NOS +C0155141|T047|PT|372.00|ICD9CM|Acute conjunctivitis, unspecified|Acute conjunctivitis, unspecified +C0155142|T047|AB|372.01|ICD9CM|Serous conjunctivitis|Serous conjunctivitis +C0155142|T047|PT|372.01|ICD9CM|Serous conjunctivitis, except viral|Serous conjunctivitis, except viral +C0155143|T047|AB|372.02|ICD9CM|Ac follic conjunctivitis|Ac follic conjunctivitis +C0155143|T047|PT|372.02|ICD9CM|Acute follicular conjunctivitis|Acute follicular conjunctivitis +C0029668|T047|AB|372.03|ICD9CM|Mucopur conjunctivit NEC|Mucopur conjunctivit NEC +C0029668|T047|PT|372.03|ICD9CM|Other mucopurulent conjunctivitis|Other mucopurulent conjunctivitis +C0155144|T047|AB|372.04|ICD9CM|Pseudomemb conjunctivit|Pseudomemb conjunctivit +C0155144|T047|PT|372.04|ICD9CM|Pseudomembranous conjunctivitis|Pseudomembranous conjunctivitis +C0001309|T047|AB|372.05|ICD9CM|Ac atopic conjunctivitis|Ac atopic conjunctivitis +C0001309|T047|PT|372.05|ICD9CM|Acute atopic conjunctivitis|Acute atopic conjunctivitis +C2712777|T047|AB|372.06|ICD9CM|Ac chem conjunctivitis|Ac chem conjunctivitis +C2712777|T047|PT|372.06|ICD9CM|Acute chemical conjunctivitis|Acute chemical conjunctivitis +C0155145|T047|HT|372.1|ICD9CM|Chronic conjunctivitis|Chronic conjunctivitis +C0155145|T047|AB|372.10|ICD9CM|Chr conjunctivitis NOS|Chr conjunctivitis NOS +C0155145|T047|PT|372.10|ICD9CM|Chronic conjunctivitis, unspecified|Chronic conjunctivitis, unspecified +C0155146|T047|AB|372.11|ICD9CM|Simpl chr conjunctivitis|Simpl chr conjunctivitis +C0155146|T047|PT|372.11|ICD9CM|Simple chronic conjunctivitis|Simple chronic conjunctivitis +C0155147|T047|AB|372.12|ICD9CM|Chr follic conjunctivit|Chr follic conjunctivit +C0155147|T047|PT|372.12|ICD9CM|Chronic follicular conjunctivitis|Chronic follicular conjunctivitis +C0009773|T047|AB|372.13|ICD9CM|Vernal conjunctivitis|Vernal conjunctivitis +C0009773|T047|PT|372.13|ICD9CM|Vernal conjunctivitis|Vernal conjunctivitis +C0029543|T047|AB|372.14|ICD9CM|Chr allrg conjunctiv NEC|Chr allrg conjunctiv NEC +C0029543|T047|PT|372.14|ICD9CM|Other chronic allergic conjunctivitis|Other chronic allergic conjunctivitis +C0155148|T047|AB|372.15|ICD9CM|Parasitic conjunctivitis|Parasitic conjunctivitis +C0155148|T047|PT|372.15|ICD9CM|Parasitic conjunctivitis|Parasitic conjunctivitis +C0005743|T047|HT|372.2|ICD9CM|Blepharoconjunctivitis|Blepharoconjunctivitis +C0005743|T047|AB|372.20|ICD9CM|Blepharoconjunctivit NOS|Blepharoconjunctivit NOS +C0005743|T047|PT|372.20|ICD9CM|Blepharoconjunctivitis, unspecified|Blepharoconjunctivitis, unspecified +C0155149|T047|AB|372.21|ICD9CM|Angular blepharoconjunct|Angular blepharoconjunct +C0155149|T047|PT|372.21|ICD9CM|Angular blepharoconjunctivitis|Angular blepharoconjunctivitis +C0155150|T047|AB|372.22|ICD9CM|Contact blepharoconjunct|Contact blepharoconjunct +C0155150|T047|PT|372.22|ICD9CM|Contact blepharoconjunctivitis|Contact blepharoconjunctivitis +C0029560|T047|HT|372.3|ICD9CM|Other and unspecified conjunctivitis|Other and unspecified conjunctivitis +C0009763|T047|AB|372.30|ICD9CM|Conjunctivitis NOS|Conjunctivitis NOS +C0009763|T047|PT|372.30|ICD9CM|Conjunctivitis, unspecified|Conjunctivitis, unspecified +C0155152|T047|AB|372.31|ICD9CM|Rosacea conjunctivitis|Rosacea conjunctivitis +C0155152|T047|PT|372.31|ICD9CM|Rosacea conjunctivitis|Rosacea conjunctivitis +C0155153|T047|PT|372.33|ICD9CM|Conjunctivitis in mucocutaneous disease|Conjunctivitis in mucocutaneous disease +C0155153|T047|AB|372.33|ICD9CM|Mucocutan dis conjunctiv|Mucocutan dis conjunctiv +C1328333|T047|PT|372.34|ICD9CM|Pingueculitis|Pingueculitis +C1328333|T047|AB|372.34|ICD9CM|Pingueculitis|Pingueculitis +C0029560|T047|AB|372.39|ICD9CM|Conjunctivitis NEC|Conjunctivitis NEC +C0029560|T047|PT|372.39|ICD9CM|Other conjunctivitis|Other conjunctivitis +C4520843|T047|HT|372.4|ICD9CM|Pterygium|Pterygium +C4520843|T047|AB|372.40|ICD9CM|Pterygium NOS|Pterygium NOS +C4520843|T047|PT|372.40|ICD9CM|Pterygium, unspecified|Pterygium, unspecified +C0155154|T047|AB|372.41|ICD9CM|Periph station pterygium|Periph station pterygium +C0155154|T047|PT|372.41|ICD9CM|Peripheral pterygium, stationary|Peripheral pterygium, stationary +C0155155|T047|AB|372.42|ICD9CM|Periph progess pterygium|Periph progess pterygium +C0155155|T047|PT|372.42|ICD9CM|Peripheral pterygium, progressive|Peripheral pterygium, progressive +C0155156|T047|AB|372.43|ICD9CM|Central pterygium|Central pterygium +C0155156|T047|PT|372.43|ICD9CM|Central pterygium|Central pterygium +C0155157|T047|AB|372.44|ICD9CM|Double pterygium|Double pterygium +C0155157|T047|PT|372.44|ICD9CM|Double pterygium|Double pterygium +C0155158|T047|AB|372.45|ICD9CM|Recurrent pterygium|Recurrent pterygium +C0155158|T047|PT|372.45|ICD9CM|Recurrent pterygium|Recurrent pterygium +C0155159|T020|HT|372.5|ICD9CM|Conjunctival degenerations and deposits|Conjunctival degenerations and deposits +C0155160|T047|AB|372.50|ICD9CM|Conjunctival degen NOS|Conjunctival degen NOS +C0155160|T047|PT|372.50|ICD9CM|Conjunctival degeneration, unspecified|Conjunctival degeneration, unspecified +C0152255|T047|AB|372.51|ICD9CM|Pinguecula|Pinguecula +C0152255|T047|PT|372.51|ICD9CM|Pinguecula|Pinguecula +C0155161|T047|AB|372.52|ICD9CM|Pseudopterygium|Pseudopterygium +C0155161|T047|PT|372.52|ICD9CM|Pseudopterygium|Pseudopterygium +C3665609|T047|AB|372.53|ICD9CM|Conjunctival xerosis|Conjunctival xerosis +C3665609|T047|PT|372.53|ICD9CM|Conjunctival xerosis|Conjunctival xerosis +C0155162|T020|AB|372.54|ICD9CM|Conjunctival concretions|Conjunctival concretions +C0155162|T020|PT|372.54|ICD9CM|Conjunctival concretions|Conjunctival concretions +C0155163|T047|AB|372.55|ICD9CM|Conjunctiva pigmentation|Conjunctiva pigmentation +C0155163|T047|PT|372.55|ICD9CM|Conjunctival pigmentations|Conjunctival pigmentations +C0162280|T047|AB|372.56|ICD9CM|Conjunctival deposits|Conjunctival deposits +C0162280|T047|PT|372.56|ICD9CM|Conjunctival deposits|Conjunctival deposits +C0155164|T020|HT|372.6|ICD9CM|Conjunctival scars|Conjunctival scars +C0155165|T047|AB|372.61|ICD9CM|Granuloma of conjunctiva|Granuloma of conjunctiva +C0155165|T047|PT|372.61|ICD9CM|Granuloma of conjunctiva|Granuloma of conjunctiva +C0155166|T047|AB|372.62|ICD9CM|Local conjunctiva adhes|Local conjunctiva adhes +C0155166|T047|PT|372.62|ICD9CM|Localized adhesions and strands of conjunctiva|Localized adhesions and strands of conjunctiva +C0152454|T046|AB|372.63|ICD9CM|Symblepharon|Symblepharon +C0152454|T046|PT|372.63|ICD9CM|Symblepharon|Symblepharon +C0155164|T020|AB|372.64|ICD9CM|Scarring of conjunctiva|Scarring of conjunctiva +C0155164|T020|PT|372.64|ICD9CM|Scarring of conjunctiva|Scarring of conjunctiva +C0155168|T047|HT|372.7|ICD9CM|Conjunctival vascular disorders and cysts|Conjunctival vascular disorders and cysts +C1761613|T033|AB|372.71|ICD9CM|Hyperemia of conjunctiva|Hyperemia of conjunctiva +C1761613|T033|PT|372.71|ICD9CM|Hyperemia of conjunctiva|Hyperemia of conjunctiva +C0009760|T046|AB|372.72|ICD9CM|Conjunctival hemorrhage|Conjunctival hemorrhage +C0009760|T046|PT|372.72|ICD9CM|Conjunctival hemorrhage|Conjunctival hemorrhage +C0151601|T046|AB|372.73|ICD9CM|Conjunctival edema|Conjunctival edema +C0151601|T046|PT|372.73|ICD9CM|Conjunctival edema|Conjunctival edema +C0042370|T190|AB|372.74|ICD9CM|Conjunctiva vasc anomaly|Conjunctiva vasc anomaly +C0042370|T190|PT|372.74|ICD9CM|Vascular abnormalities of conjunctiva|Vascular abnormalities of conjunctiva +C0155170|T047|AB|372.75|ICD9CM|Conjunctival cysts|Conjunctival cysts +C0155170|T047|PT|372.75|ICD9CM|Conjunctival cysts|Conjunctival cysts +C0155171|T047|HT|372.8|ICD9CM|Other disorders of conjunctiva|Other disorders of conjunctiva +C0878693|T047|AB|372.81|ICD9CM|Conjunctivochalasis|Conjunctivochalasis +C0878693|T047|PT|372.81|ICD9CM|Conjunctivochalasis|Conjunctivochalasis +C0155171|T047|AB|372.89|ICD9CM|Conjunctiva disorder NEC|Conjunctiva disorder NEC +C0155171|T047|PT|372.89|ICD9CM|Other disorders of conjunctiva|Other disorders of conjunctiva +C0009759|T047|AB|372.9|ICD9CM|Conjunctiva disorder NOS|Conjunctiva disorder NOS +C0009759|T047|PT|372.9|ICD9CM|Unspecified disorder of conjunctiva|Unspecified disorder of conjunctiva +C1812623|T047|HT|373|ICD9CM|Inflammation of eyelids|Inflammation of eyelids +C0005741|T047|HT|373.0|ICD9CM|Blepharitis|Blepharitis +C0005741|T047|AB|373.00|ICD9CM|Blepharitis NOS|Blepharitis NOS +C0005741|T047|PT|373.00|ICD9CM|Blepharitis, unspecified|Blepharitis, unspecified +C0155173|T047|AB|373.01|ICD9CM|Ulcerative blepharitis|Ulcerative blepharitis +C0155173|T047|PT|373.01|ICD9CM|Ulcerative blepharitis|Ulcerative blepharitis +C0155174|T047|AB|373.02|ICD9CM|Squamous blepharitis|Squamous blepharitis +C0155174|T047|PT|373.02|ICD9CM|Squamous blepharitis|Squamous blepharitis +C0019918|T047|HT|373.1|ICD9CM|Hordeolum and other deep inflammation of eyelid|Hordeolum and other deep inflammation of eyelid +C0019919|T047|AB|373.11|ICD9CM|Hordeolum externum|Hordeolum externum +C0019919|T047|PT|373.11|ICD9CM|Hordeolum externum|Hordeolum externum +C0085690|T047|AB|373.12|ICD9CM|Hordeolum internum|Hordeolum internum +C0085690|T047|PT|373.12|ICD9CM|Hordeolum internum|Hordeolum internum +C0155175|T047|AB|373.13|ICD9CM|Abscess of eyelid|Abscess of eyelid +C0155175|T047|PT|373.13|ICD9CM|Abscess of eyelid|Abscess of eyelid +C0007933|T047|AB|373.2|ICD9CM|Chalazion|Chalazion +C0007933|T047|PT|373.2|ICD9CM|Chalazion|Chalazion +C0155176|T047|HT|373.3|ICD9CM|Noninfectious dermatoses of eyelid|Noninfectious dermatoses of eyelid +C0155177|T047|AB|373.31|ICD9CM|Eczem dermatitis eyelid|Eczem dermatitis eyelid +C0155177|T047|PT|373.31|ICD9CM|Eczematous dermatitis of eyelid|Eczematous dermatitis of eyelid +C0155178|T047|PT|373.32|ICD9CM|Contact and allergic dermatitis of eyelid|Contact and allergic dermatitis of eyelid +C0155178|T047|AB|373.32|ICD9CM|Contact dermatit eyelid|Contact dermatit eyelid +C0155179|T047|AB|373.33|ICD9CM|Xeroderma of eyelid|Xeroderma of eyelid +C0155179|T047|PT|373.33|ICD9CM|Xeroderma of eyelid|Xeroderma of eyelid +C0155180|T047|AB|373.34|ICD9CM|Disc lup erythematos lid|Disc lup erythematos lid +C0155180|T047|PT|373.34|ICD9CM|Discoid lupus erythematosus of eyelid|Discoid lupus erythematosus of eyelid +C0155181|T047|AB|373.4|ICD9CM|Infect derm lid w deform|Infect derm lid w deform +C0155181|T047|PT|373.4|ICD9CM|Infective dermatitis of eyelid of types resulting in deformity|Infective dermatitis of eyelid of types resulting in deformity +C0155182|T047|AB|373.5|ICD9CM|Infec dermatitis lid NEC|Infec dermatitis lid NEC +C0155182|T047|PT|373.5|ICD9CM|Other infective dermatitis of eyelid|Other infective dermatitis of eyelid +C0155183|T047|AB|373.6|ICD9CM|Parasitic infest eyelid|Parasitic infest eyelid +C0155183|T047|PT|373.6|ICD9CM|Parasitic infestation of eyelid|Parasitic infestation of eyelid +C0155184|T047|AB|373.8|ICD9CM|Inflammation eyelid NEC|Inflammation eyelid NEC +C0155184|T047|PT|373.8|ICD9CM|Other inflammations of eyelids|Other inflammations of eyelids +C0005741|T047|AB|373.9|ICD9CM|Inflammation eyelid NOS|Inflammation eyelid NOS +C0005741|T047|PT|373.9|ICD9CM|Unspecified inflammation of eyelid|Unspecified inflammation of eyelid +C0155186|T047|HT|374|ICD9CM|Other disorders of eyelids|Other disorders of eyelids +C0339058|T047|HT|374.0|ICD9CM|Entropion and trichiasis of eyelid|Entropion and trichiasis of eyelid +C0014390|T047|AB|374.00|ICD9CM|Entropion NOS|Entropion NOS +C0014390|T047|PT|374.00|ICD9CM|Entropion, unspecified|Entropion, unspecified +C0155188|T047|AB|374.01|ICD9CM|Senile entropion|Senile entropion +C0155188|T047|PT|374.01|ICD9CM|Senile entropion|Senile entropion +C0155189|T047|AB|374.02|ICD9CM|Mechanical entropion|Mechanical entropion +C0155189|T047|PT|374.02|ICD9CM|Mechanical entropion|Mechanical entropion +C0155190|T047|AB|374.03|ICD9CM|Spastic entropion|Spastic entropion +C0155190|T047|PT|374.03|ICD9CM|Spastic entropion|Spastic entropion +C0155191|T047|AB|374.04|ICD9CM|Cicatricial entropion|Cicatricial entropion +C0155191|T047|PT|374.04|ICD9CM|Cicatricial entropion|Cicatricial entropion +C0271311|T047|PT|374.05|ICD9CM|Trichiasis of eyelid without entropion|Trichiasis of eyelid without entropion +C0271311|T047|AB|374.05|ICD9CM|Trichiasis w/o entropion|Trichiasis w/o entropion +C0013592|T047|HT|374.1|ICD9CM|Ectropion|Ectropion +C0013592|T047|AB|374.10|ICD9CM|Ectropion NOS|Ectropion NOS +C0013592|T047|PT|374.10|ICD9CM|Ectropion, unspecified|Ectropion, unspecified +C0155193|T047|AB|374.11|ICD9CM|Senile ectropion|Senile ectropion +C0155193|T047|PT|374.11|ICD9CM|Senile ectropion|Senile ectropion +C0155194|T047|AB|374.12|ICD9CM|Mechanical ectropion|Mechanical ectropion +C0155194|T047|PT|374.12|ICD9CM|Mechanical ectropion|Mechanical ectropion +C0155195|T047|AB|374.13|ICD9CM|Spastic ectropion|Spastic ectropion +C0155195|T047|PT|374.13|ICD9CM|Spastic ectropion|Spastic ectropion +C0155196|T047|AB|374.14|ICD9CM|Cicatricial ectropion|Cicatricial ectropion +C0155196|T047|PT|374.14|ICD9CM|Cicatricial ectropion|Cicatricial ectropion +C0152226|T047|HT|374.2|ICD9CM|Lagophthalmos|Lagophthalmos +C0152226|T047|AB|374.20|ICD9CM|Lagophthalmos NOS|Lagophthalmos NOS +C0152226|T047|PT|374.20|ICD9CM|Lagophthalmos, unspecified|Lagophthalmos, unspecified +C0155197|T047|AB|374.21|ICD9CM|Paralytic lagophthalmos|Paralytic lagophthalmos +C0155197|T047|PT|374.21|ICD9CM|Paralytic lagophthalmos|Paralytic lagophthalmos +C0155198|T047|AB|374.22|ICD9CM|Mechanical lagophthalmos|Mechanical lagophthalmos +C0155198|T047|PT|374.22|ICD9CM|Mechanical lagophthalmos|Mechanical lagophthalmos +C0155199|T047|AB|374.23|ICD9CM|Cicatricial lagophthalm|Cicatricial lagophthalm +C0155199|T047|PT|374.23|ICD9CM|Cicatricial lagophthalmos|Cicatricial lagophthalmos +C0005745|T047|HT|374.3|ICD9CM|Ptosis of eyelid|Ptosis of eyelid +C0005745|T047|AB|374.30|ICD9CM|Ptosis of eyelid NOS|Ptosis of eyelid NOS +C0005745|T047|PT|374.30|ICD9CM|Ptosis of eyelid, unspecified|Ptosis of eyelid, unspecified +C0392587|T033|AB|374.31|ICD9CM|Paralytic ptosis|Paralytic ptosis +C0392587|T033|PT|374.31|ICD9CM|Paralytic ptosis|Paralytic ptosis +C0155201|T046|AB|374.32|ICD9CM|Myogenic ptosis|Myogenic ptosis +C0155201|T046|PT|374.32|ICD9CM|Myogenic ptosis|Myogenic ptosis +C0155202|T020|AB|374.33|ICD9CM|Mechanical ptosis|Mechanical ptosis +C0155202|T020|PT|374.33|ICD9CM|Mechanical ptosis|Mechanical ptosis +C0005742|T047|AB|374.34|ICD9CM|Blepharochalasis|Blepharochalasis +C0005742|T047|PT|374.34|ICD9CM|Blepharochalasis|Blepharochalasis +C0155203|T047|HT|374.4|ICD9CM|Other disorders affecting eyelid function|Other disorders affecting eyelid function +C0155204|T184|AB|374.41|ICD9CM|Lid retraction or lag|Lid retraction or lag +C0155204|T184|PT|374.41|ICD9CM|Lid retraction or lag|Lid retraction or lag +C0266521|T047|AB|374.43|ICD9CM|Abnorm innervation synd|Abnorm innervation synd +C0266521|T047|PT|374.43|ICD9CM|Abnormal innervation syndrome of eyelid|Abnormal innervation syndrome of eyelid +C0155206|T047|PT|374.44|ICD9CM|Sensory disorders of eyelid|Sensory disorders of eyelid +C0155206|T047|AB|374.44|ICD9CM|Sensory disorders, lid|Sensory disorders, lid +C0155207|T047|PT|374.45|ICD9CM|Other sensorimotor disorders of eyelid|Other sensorimotor disorders of eyelid +C0155207|T047|AB|374.45|ICD9CM|Sensormotr disor lid NEC|Sensormotr disor lid NEC +C0005744|T019|AB|374.46|ICD9CM|Blepharophimosis|Blepharophimosis +C0005744|T019|PT|374.46|ICD9CM|Blepharophimosis|Blepharophimosis +C0155208|T046|HT|374.5|ICD9CM|Degenerative disorders of eyelid and periocular area|Degenerative disorders of eyelid and periocular area +C0155209|T047|AB|374.50|ICD9CM|Degen disorder NOS, lid|Degen disorder NOS, lid +C0155209|T047|PT|374.50|ICD9CM|Degenerative disorder of eyelid, unspecified|Degenerative disorder of eyelid, unspecified +C0155210|T047|AB|374.51|ICD9CM|Xanthelasma|Xanthelasma +C0155210|T047|PT|374.51|ICD9CM|Xanthelasma of eyelid|Xanthelasma of eyelid +C0155211|T047|AB|374.52|ICD9CM|Hyperpigmentation lid|Hyperpigmentation lid +C0155211|T047|PT|374.52|ICD9CM|Hyperpigmentation of eyelid|Hyperpigmentation of eyelid +C0155212|T047|AB|374.53|ICD9CM|Hypopigmentation lid|Hypopigmentation lid +C0155212|T047|PT|374.53|ICD9CM|Hypopigmentation of eyelid|Hypopigmentation of eyelid +C0155213|T047|AB|374.54|ICD9CM|Hypertrichosis of eyelid|Hypertrichosis of eyelid +C0155213|T047|PT|374.54|ICD9CM|Hypertrichosis of eyelid|Hypertrichosis of eyelid +C0155214|T047|AB|374.55|ICD9CM|Hypotrichosis of eyelid|Hypotrichosis of eyelid +C0155214|T047|PT|374.55|ICD9CM|Hypotrichosis of eyelid|Hypotrichosis of eyelid +C0155215|T047|AB|374.56|ICD9CM|Degen dis eyelid NEC|Degen dis eyelid NEC +C0155215|T047|PT|374.56|ICD9CM|Other degenerative disorders of skin affecting eyelid|Other degenerative disorders of skin affecting eyelid +C0155186|T047|HT|374.8|ICD9CM|Other disorders of eyelid|Other disorders of eyelid +C0155216|T046|AB|374.81|ICD9CM|Hemorrhage of eyelid|Hemorrhage of eyelid +C0155216|T046|PT|374.81|ICD9CM|Hemorrhage of eyelid|Hemorrhage of eyelid +C0162285|T046|AB|374.82|ICD9CM|Edema of eyelid|Edema of eyelid +C0162285|T046|PT|374.82|ICD9CM|Edema of eyelid|Edema of eyelid +C0155217|T047|AB|374.83|ICD9CM|Elephantiasis of eyelid|Elephantiasis of eyelid +C0155217|T047|PT|374.83|ICD9CM|Elephantiasis of eyelid|Elephantiasis of eyelid +C0155218|T047|AB|374.84|ICD9CM|Cysts of eyelids|Cysts of eyelids +C0155218|T047|PT|374.84|ICD9CM|Cysts of eyelids|Cysts of eyelids +C0155219|T190|PT|374.85|ICD9CM|Vascular anomalies of eyelid|Vascular anomalies of eyelid +C0155219|T190|AB|374.85|ICD9CM|Vascular anomaly, eyelid|Vascular anomaly, eyelid +C0339097|T047|AB|374.86|ICD9CM|Old foreign body, eyelid|Old foreign body, eyelid +C0339097|T047|PT|374.86|ICD9CM|Retained foreign body of eyelid|Retained foreign body of eyelid +C0423124|T033|AB|374.87|ICD9CM|Dermatochalasis|Dermatochalasis +C0423124|T033|PT|374.87|ICD9CM|Dermatochalasis|Dermatochalasis +C0155186|T047|AB|374.89|ICD9CM|Disorders of eyelid NEC|Disorders of eyelid NEC +C0155186|T047|PT|374.89|ICD9CM|Other disorders of eyelid|Other disorders of eyelid +C0015423|T047|AB|374.9|ICD9CM|Disorder of eyelid NOS|Disorder of eyelid NOS +C0015423|T047|PT|374.9|ICD9CM|Unspecified disorder of eyelid|Unspecified disorder of eyelid +C0022904|T047|HT|375|ICD9CM|Disorders of lacrimal system|Disorders of lacrimal system +C0155223|T047|HT|375.0|ICD9CM|Dacryoadenitis|Dacryoadenitis +C0155223|T047|AB|375.00|ICD9CM|Dacryoadenitis NOS|Dacryoadenitis NOS +C0155223|T047|PT|375.00|ICD9CM|Dacryoadenitis, unspecified|Dacryoadenitis, unspecified +C0149505|T047|AB|375.01|ICD9CM|Acute dacryoadenitis|Acute dacryoadenitis +C0149505|T047|PT|375.01|ICD9CM|Acute dacryoadenitis|Acute dacryoadenitis +C0155224|T047|AB|375.02|ICD9CM|Chronic dacryoadenitis|Chronic dacryoadenitis +C0155224|T047|PT|375.02|ICD9CM|Chronic dacryoadenitis|Chronic dacryoadenitis +C1300133|T047|AB|375.03|ICD9CM|Ch enlargmnt lacrim glnd|Ch enlargmnt lacrim glnd +C1300133|T047|PT|375.03|ICD9CM|Chronic enlargement of lacrimal gland|Chronic enlargement of lacrimal gland +C0155226|T047|HT|375.1|ICD9CM|Other disorders of lacrimal gland|Other disorders of lacrimal gland +C0155227|T184|AB|375.11|ICD9CM|Dacryops|Dacryops +C0155227|T184|PT|375.11|ICD9CM|Dacryops|Dacryops +C0155228|T047|AB|375.12|ICD9CM|Lacrimal gland cyst NEC|Lacrimal gland cyst NEC +C0155228|T047|PT|375.12|ICD9CM|Other lacrimal cysts and cystic degeneration|Other lacrimal cysts and cystic degeneration +C0155229|T047|AB|375.13|ICD9CM|Primary lacrimal atrophy|Primary lacrimal atrophy +C0155229|T047|PT|375.13|ICD9CM|Primary lacrimal atrophy|Primary lacrimal atrophy +C0339121|T020|AB|375.14|ICD9CM|Secondary lacrim atrophy|Secondary lacrim atrophy +C0339121|T020|PT|375.14|ICD9CM|Secondary lacrimal atrophy|Secondary lacrimal atrophy +C0043349|T047|AB|375.15|ICD9CM|Tear film insuffic NOS|Tear film insuffic NOS +C0043349|T047|PT|375.15|ICD9CM|Tear film insufficiency, unspecified|Tear film insufficiency, unspecified +C0155231|T047|PT|375.16|ICD9CM|Dislocation of lacrimal gland|Dislocation of lacrimal gland +C0155231|T047|AB|375.16|ICD9CM|Lacrimal gland dislocat|Lacrimal gland dislocat +C0152227|T047|HT|375.2|ICD9CM|Epiphora|Epiphora +C0152227|T047|AB|375.20|ICD9CM|Epiphora NOS|Epiphora NOS +C0152227|T047|PT|375.20|ICD9CM|Epiphora, unspecified as to cause|Epiphora, unspecified as to cause +C0155233|T047|AB|375.21|ICD9CM|Epiphora d/t excess tear|Epiphora d/t excess tear +C0155233|T047|PT|375.21|ICD9CM|Epiphora due to excess lacrimation|Epiphora due to excess lacrimation +C0155234|T047|AB|375.22|ICD9CM|Epiphora d/t insuf drain|Epiphora d/t insuf drain +C0155234|T047|PT|375.22|ICD9CM|Epiphora due to insufficient drainage|Epiphora due to insufficient drainage +C0339129|T047|HT|375.3|ICD9CM|Acute and unspecified inflammation of lacrimal passages|Acute and unspecified inflammation of lacrimal passages +C0010930|T047|AB|375.30|ICD9CM|Dacryocystitis NOS|Dacryocystitis NOS +C0010930|T047|PT|375.30|ICD9CM|Dacryocystitis, unspecified|Dacryocystitis, unspecified +C0339130|T047|AB|375.31|ICD9CM|Acute canaliculitis|Acute canaliculitis +C0339130|T047|PT|375.31|ICD9CM|Acute canaliculitis, lacrimal|Acute canaliculitis, lacrimal +C0155237|T047|AB|375.32|ICD9CM|Acute dacryocystitis|Acute dacryocystitis +C0155237|T047|PT|375.32|ICD9CM|Acute dacryocystitis|Acute dacryocystitis +C0155238|T047|AB|375.33|ICD9CM|Phlegmon dacryocystitis|Phlegmon dacryocystitis +C0155238|T047|PT|375.33|ICD9CM|Phlegmonous dacryocystitis|Phlegmonous dacryocystitis +C0155239|T047|HT|375.4|ICD9CM|Chronic inflammation of lacrimal passages|Chronic inflammation of lacrimal passages +C0155240|T047|AB|375.41|ICD9CM|Chronic canaliculitis|Chronic canaliculitis +C0155240|T047|PT|375.41|ICD9CM|Chronic canaliculitis|Chronic canaliculitis +C0149506|T047|AB|375.42|ICD9CM|Chronic dacryocystitis|Chronic dacryocystitis +C0149506|T047|PT|375.42|ICD9CM|Chronic dacryocystitis|Chronic dacryocystitis +C0155241|T047|AB|375.43|ICD9CM|Lacrimal mucocele|Lacrimal mucocele +C0155241|T047|PT|375.43|ICD9CM|Lacrimal mucocele|Lacrimal mucocele +C0155242|T047|HT|375.5|ICD9CM|Stenosis and insufficiency of lacrimal passages|Stenosis and insufficiency of lacrimal passages +C0155242|T190|HT|375.5|ICD9CM|Stenosis and insufficiency of lacrimal passages|Stenosis and insufficiency of lacrimal passages +C0155243|T047|PT|375.51|ICD9CM|Eversion of lacrimal punctum|Eversion of lacrimal punctum +C0155243|T047|AB|375.51|ICD9CM|Lacriml punctum eversion|Lacriml punctum eversion +C0155244|T047|AB|375.52|ICD9CM|Lacriml punctum stenosis|Lacriml punctum stenosis +C0155244|T047|PT|375.52|ICD9CM|Stenosis of lacrimal punctum|Stenosis of lacrimal punctum +C0155245|T190|AB|375.53|ICD9CM|Lacrim canalic stenosis|Lacrim canalic stenosis +C0155245|T190|PT|375.53|ICD9CM|Stenosis of lacrimal canaliculi|Stenosis of lacrimal canaliculi +C0155246|T190|AB|375.54|ICD9CM|Lacrimal sac stenosis|Lacrimal sac stenosis +C0155246|T190|PT|375.54|ICD9CM|Stenosis of lacrimal sac|Stenosis of lacrimal sac +C2745960|T047|AB|375.55|ICD9CM|Neonatal nasolacrml obst|Neonatal nasolacrml obst +C2745960|T047|PT|375.55|ICD9CM|Obstruction of nasolacrimal duct, neonatal|Obstruction of nasolacrimal duct, neonatal +C0155248|T020|AB|375.56|ICD9CM|Acq nasolacrml stenosis|Acq nasolacrml stenosis +C0155248|T020|PT|375.56|ICD9CM|Stenosis of nasolacrimal duct, acquired|Stenosis of nasolacrimal duct, acquired +C0155249|T047|AB|375.57|ICD9CM|Dacryolith|Dacryolith +C0155249|T047|PT|375.57|ICD9CM|Dacryolith|Dacryolith +C0155250|T020|HT|375.6|ICD9CM|Other changes of lacrimal passages|Other changes of lacrimal passages +C0155251|T190|AB|375.61|ICD9CM|Lacrimal fistula|Lacrimal fistula +C0155251|T190|PT|375.61|ICD9CM|Lacrimal fistula|Lacrimal fistula +C0155250|T020|AB|375.69|ICD9CM|Lacrim passge change NEC|Lacrim passge change NEC +C0155250|T020|PT|375.69|ICD9CM|Other changes of lacrimal passages|Other changes of lacrimal passages +C0155252|T047|HT|375.8|ICD9CM|Other disorders of lacrimal system|Other disorders of lacrimal system +C0155253|T047|PT|375.81|ICD9CM|Granuloma of lacrimal passages|Granuloma of lacrimal passages +C0155253|T047|AB|375.81|ICD9CM|Lacrim passage granuloma|Lacrim passage granuloma +C0155252|T047|AB|375.89|ICD9CM|Lacrimal syst dis NEC|Lacrimal syst dis NEC +C0155252|T047|PT|375.89|ICD9CM|Other disorders of lacrimal system|Other disorders of lacrimal system +C0022904|T047|AB|375.9|ICD9CM|Lacrimal syst dis NOS|Lacrimal syst dis NOS +C0022904|T047|PT|375.9|ICD9CM|Unspecified disorder of lacrimal system|Unspecified disorder of lacrimal system +C0029182|T047|HT|376|ICD9CM|Disorders of the orbit|Disorders of the orbit +C0155256|T033|HT|376.0|ICD9CM|Acute inflammation of orbit|Acute inflammation of orbit +C0155256|T033|AB|376.00|ICD9CM|Acute inflam NOS, orbit|Acute inflam NOS, orbit +C0155256|T033|PT|376.00|ICD9CM|Acute inflammation of orbit, unspecified|Acute inflammation of orbit, unspecified +C0149507|T047|AB|376.01|ICD9CM|Orbital cellulitis|Orbital cellulitis +C0149507|T047|PT|376.01|ICD9CM|Orbital cellulitis|Orbital cellulitis +C0155257|T047|AB|376.02|ICD9CM|Orbital periostitis|Orbital periostitis +C0155257|T047|PT|376.02|ICD9CM|Orbital periostitis|Orbital periostitis +C0155258|T047|AB|376.03|ICD9CM|Orbital osteomyelitis|Orbital osteomyelitis +C0155258|T047|PT|376.03|ICD9CM|Orbital osteomyelitis|Orbital osteomyelitis +C0155259|T047|AB|376.04|ICD9CM|Orbital tenonitis|Orbital tenonitis +C0155259|T047|PT|376.04|ICD9CM|Orbital tenonitis|Orbital tenonitis +C0155261|T047|HT|376.1|ICD9CM|Chronic inflammatory disorders of orbit|Chronic inflammatory disorders of orbit +C0155261|T047|AB|376.10|ICD9CM|Chr inflam NOS, orbit|Chr inflam NOS, orbit +C0155261|T047|PT|376.10|ICD9CM|Chronic inflammation of orbit, unspecified|Chronic inflammation of orbit, unspecified +C0155262|T047|AB|376.11|ICD9CM|Orbital granuloma|Orbital granuloma +C0155262|T047|PT|376.11|ICD9CM|Orbital granuloma|Orbital granuloma +C2350476|T047|AB|376.12|ICD9CM|Orbital myositis|Orbital myositis +C2350476|T047|PT|376.12|ICD9CM|Orbital myositis|Orbital myositis +C0155263|T047|AB|376.13|ICD9CM|Parasite infest, orbit|Parasite infest, orbit +C0155263|T047|PT|376.13|ICD9CM|Parasitic infestation of orbit|Parasitic infestation of orbit +C0155264|T047|HT|376.2|ICD9CM|Endocrine exophthalmos|Endocrine exophthalmos +C0155265|T047|AB|376.21|ICD9CM|Thyrotoxic exophthalmos|Thyrotoxic exophthalmos +C0155265|T047|PT|376.21|ICD9CM|Thyrotoxic exophthalmos|Thyrotoxic exophthalmos +C0152135|T047|AB|376.22|ICD9CM|Exophthalm ophthalmopleg|Exophthalm ophthalmopleg +C0152135|T047|PT|376.22|ICD9CM|Exophthalmic ophthalmoplegia|Exophthalmic ophthalmoplegia +C0155266|T047|HT|376.3|ICD9CM|Other exophthalmic conditions|Other exophthalmic conditions +C0015300|T047|AB|376.30|ICD9CM|Exophthalmos NOS|Exophthalmos NOS +C0015300|T047|PT|376.30|ICD9CM|Exophthalmos, unspecified|Exophthalmos, unspecified +C0155267|T047|AB|376.31|ICD9CM|Constant exophthalmos|Constant exophthalmos +C0155267|T047|PT|376.31|ICD9CM|Constant exophthalmos|Constant exophthalmos +C0155268|T046|AB|376.32|ICD9CM|Orbital hemorrhage|Orbital hemorrhage +C0155268|T046|PT|376.32|ICD9CM|Orbital hemorrhage|Orbital hemorrhage +C0424813|T046|AB|376.33|ICD9CM|Orbital edema|Orbital edema +C0424813|T046|PT|376.33|ICD9CM|Orbital edema or congestion|Orbital edema or congestion +C0155270|T047|PT|376.34|ICD9CM|Intermittent exophthalmos|Intermittent exophthalmos +C0155270|T047|AB|376.34|ICD9CM|Intermittnt exophthalmos|Intermittnt exophthalmos +C0155271|T047|AB|376.35|ICD9CM|Pulsating exophthalmos|Pulsating exophthalmos +C0155271|T047|PT|376.35|ICD9CM|Pulsating exophthalmos|Pulsating exophthalmos +C0155272|T047|PT|376.36|ICD9CM|Lateral displacement of globe|Lateral displacement of globe +C0155272|T047|AB|376.36|ICD9CM|Lateral globe displacmnt|Lateral globe displacmnt +C0162019|T190|HT|376.4|ICD9CM|Deformity of orbit|Deformity of orbit +C0162019|T190|AB|376.40|ICD9CM|Deformity of orbit NOS|Deformity of orbit NOS +C0162019|T190|PT|376.40|ICD9CM|Deformity of orbit, unspecified|Deformity of orbit, unspecified +C0020534|T033|AB|376.41|ICD9CM|Hypertelorism of orbit|Hypertelorism of orbit +C0020534|T033|PT|376.41|ICD9CM|Hypertelorism of orbit|Hypertelorism of orbit +C0155275|T047|AB|376.42|ICD9CM|Exostosis of orbit|Exostosis of orbit +C0155275|T047|PT|376.42|ICD9CM|Exostosis of orbit|Exostosis of orbit +C0155276|T020|PT|376.43|ICD9CM|Local deformities of orbit due to bone disease|Local deformities of orbit due to bone disease +C0155276|T020|AB|376.43|ICD9CM|Orbt deform d/t bone dis|Orbt deform d/t bone dis +C0155277|T190|AB|376.44|ICD9CM|Craniofacial-orbit defor|Craniofacial-orbit defor +C0155277|T190|PT|376.44|ICD9CM|Orbital deformities associated with craniofacial deformities|Orbital deformities associated with craniofacial deformities +C0155278|T046|AB|376.45|ICD9CM|Atrophy of orbit|Atrophy of orbit +C0155278|T046|PT|376.45|ICD9CM|Atrophy of orbit|Atrophy of orbit +C0155279|T047|AB|376.46|ICD9CM|Enlargement of orbit|Enlargement of orbit +C0155279|T047|PT|376.46|ICD9CM|Enlargement of orbit|Enlargement of orbit +C0155280|T020|PT|376.47|ICD9CM|Deformity of orbit due to trauma or surgery|Deformity of orbit due to trauma or surgery +C0155280|T020|AB|376.47|ICD9CM|Orbit deform d/t trauma|Orbit deform d/t trauma +C0014306|T047|HT|376.5|ICD9CM|Enophthalmos|Enophthalmos +C0014306|T047|AB|376.50|ICD9CM|Enophthalmos NOS|Enophthalmos NOS +C0014306|T047|PT|376.50|ICD9CM|Enophthalmos, unspecified as to cause|Enophthalmos, unspecified as to cause +C0155281|T047|AB|376.51|ICD9CM|Enophth d/t orbit atrphy|Enophth d/t orbit atrphy +C0155281|T047|PT|376.51|ICD9CM|Enophthalmos due to atrophy of orbital tissue|Enophthalmos due to atrophy of orbital tissue +C0155282|T020|AB|376.52|ICD9CM|Enophthalmos d/t trauma|Enophthalmos d/t trauma +C0155282|T020|PT|376.52|ICD9CM|Enophthalmos due to trauma or surgery|Enophthalmos due to trauma or surgery +C0155283|T020|AB|376.6|ICD9CM|Old foreign body, orbit|Old foreign body, orbit +C0155283|T020|PT|376.6|ICD9CM|Retained (old) foreign body following penetrating wound of orbit|Retained (old) foreign body following penetrating wound of orbit +C0155284|T047|HT|376.8|ICD9CM|Other orbital disorders|Other orbital disorders +C0155285|T047|AB|376.81|ICD9CM|Orbital cysts|Orbital cysts +C0155285|T047|PT|376.81|ICD9CM|Orbital cysts|Orbital cysts +C0155286|T047|AB|376.82|ICD9CM|Extraocul muscl myopathy|Extraocul muscl myopathy +C0155286|T047|PT|376.82|ICD9CM|Myopathy of extraocular muscles|Myopathy of extraocular muscles +C2609444|T047|AB|376.89|ICD9CM|Orbital disorders NEC|Orbital disorders NEC +C2609444|T047|PT|376.89|ICD9CM|Other orbital disorders|Other orbital disorders +C0029182|T047|AB|376.9|ICD9CM|Orbital disorder NOS|Orbital disorder NOS +C0029182|T047|PT|376.9|ICD9CM|Unspecified disorder of orbit|Unspecified disorder of orbit +C1533675|T047|HT|377|ICD9CM|Disorders of optic nerve and visual pathways|Disorders of optic nerve and visual pathways +C0030353|T047|HT|377.0|ICD9CM|Papilledema|Papilledema +C0030353|T047|AB|377.00|ICD9CM|Papilledema NOS|Papilledema NOS +C0030353|T047|PT|377.00|ICD9CM|Papilledema, unspecified|Papilledema, unspecified +C0155288|T047|PT|377.01|ICD9CM|Papilledema associated with increased intracranial pressure|Papilledema associated with increased intracranial pressure +C0155288|T047|AB|377.01|ICD9CM|Papilledema w incr press|Papilledema w incr press +C1827466|T047|PT|377.02|ICD9CM|Papilledema associated with decreased ocular pressure|Papilledema associated with decreased ocular pressure +C1827466|T047|AB|377.02|ICD9CM|Papilledema w decr press|Papilledema w decr press +C0155290|T047|PT|377.03|ICD9CM|Papilledema associated with retinal disorder|Papilledema associated with retinal disorder +C0155290|T047|AB|377.03|ICD9CM|Papilledema w retina dis|Papilledema w retina dis +C0152112|T047|PT|377.04|ICD9CM|Foster-Kennedy syndrome|Foster-Kennedy syndrome +C0152112|T047|AB|377.04|ICD9CM|Foster-kennedy syndrome|Foster-kennedy syndrome +C0029124|T047|HT|377.1|ICD9CM|Optic atrophy|Optic atrophy +C0029124|T047|AB|377.10|ICD9CM|Optic atrophy NOS|Optic atrophy NOS +C0029124|T047|PT|377.10|ICD9CM|Optic atrophy, unspecified|Optic atrophy, unspecified +C0155291|T047|AB|377.11|ICD9CM|Primary optic atrophy|Primary optic atrophy +C0155291|T047|PT|377.11|ICD9CM|Primary optic atrophy|Primary optic atrophy +C0155292|T047|AB|377.12|ICD9CM|Postinflam optic atrophy|Postinflam optic atrophy +C0155292|T047|PT|377.12|ICD9CM|Postinflammatory optic atrophy|Postinflammatory optic atrophy +C0155293|T047|PT|377.13|ICD9CM|Optic atrophy associated with retinal dystrophies|Optic atrophy associated with retinal dystrophies +C0155293|T047|AB|377.13|ICD9CM|Optic atrph w retin dyst|Optic atrph w retin dyst +C0271342|T047|AB|377.14|ICD9CM|Cupping of optic disc|Cupping of optic disc +C0271342|T047|PT|377.14|ICD9CM|Glaucomatous atrophy [cupping] of optic disc|Glaucomatous atrophy [cupping] of optic disc +C0155295|T047|AB|377.15|ICD9CM|Partial optic atrophy|Partial optic atrophy +C0155295|T047|PT|377.15|ICD9CM|Partial optic atrophy|Partial optic atrophy +C0029125|T047|AB|377.16|ICD9CM|Hereditary optic atrophy|Hereditary optic atrophy +C0029125|T047|PT|377.16|ICD9CM|Hereditary optic atrophy|Hereditary optic atrophy +C0155296|T047|HT|377.2|ICD9CM|Other disorders of optic disc|Other disorders of optic disc +C0029128|T047|AB|377.21|ICD9CM|Drusen of optic disc|Drusen of optic disc +C0029128|T047|PT|377.21|ICD9CM|Drusen of optic disc|Drusen of optic disc +C0155298|T047|AB|377.22|ICD9CM|Crater-like hole op disc|Crater-like hole op disc +C0155298|T047|PT|377.22|ICD9CM|Crater-like holes of optic disc|Crater-like holes of optic disc +C0155299|T047|AB|377.23|ICD9CM|Coloboma of optic disc|Coloboma of optic disc +C0155299|T047|PT|377.23|ICD9CM|Coloboma of optic disc|Coloboma of optic disc +C0155300|T047|AB|377.24|ICD9CM|Pseudopapilledema|Pseudopapilledema +C0155300|T047|PT|377.24|ICD9CM|Pseudopapilledema|Pseudopapilledema +C0029134|T047|HT|377.3|ICD9CM|Optic neuritis|Optic neuritis +C0029134|T047|AB|377.30|ICD9CM|Optic neuritis NOS|Optic neuritis NOS +C0029134|T047|PT|377.30|ICD9CM|Optic neuritis, unspecified|Optic neuritis, unspecified +C0030353|T047|AB|377.31|ICD9CM|Optic papillitis|Optic papillitis +C0030353|T047|PT|377.31|ICD9CM|Optic papillitis|Optic papillitis +C0155301|T047|AB|377.32|ICD9CM|Retrobulbar neuritis|Retrobulbar neuritis +C0155301|T047|PT|377.32|ICD9CM|Retrobulbar neuritis (acute)|Retrobulbar neuritis (acute) +C0155302|T047|AB|377.33|ICD9CM|Nutrition optc neuropthy|Nutrition optc neuropthy +C0155302|T047|PT|377.33|ICD9CM|Nutritional optic neuropathy|Nutritional optic neuropathy +C0155303|T047|AB|377.34|ICD9CM|Toxic optic neuropathy|Toxic optic neuropathy +C0155303|T047|PT|377.34|ICD9CM|Toxic optic neuropathy|Toxic optic neuropathy +C0029681|T047|AB|377.39|ICD9CM|Optic neuritis NEC|Optic neuritis NEC +C0029681|T047|PT|377.39|ICD9CM|Other optic neuritis|Other optic neuritis +C0155304|T047|HT|377.4|ICD9CM|Other disorders of optic nerve|Other disorders of optic nerve +C0155305|T047|PT|377.41|ICD9CM|Ischemic optic neuropathy|Ischemic optic neuropathy +C0155305|T047|AB|377.41|ICD9CM|Ischemic optic neuropthy|Ischemic optic neuropthy +C0155306|T046|PT|377.42|ICD9CM|Hemorrhage in optic nerve sheaths|Hemorrhage in optic nerve sheaths +C0155306|T046|AB|377.42|ICD9CM|Optic nerve sheath hemor|Optic nerve sheath hemor +C0338502|T047|PT|377.43|ICD9CM|Optic nerve hypoplasia|Optic nerve hypoplasia +C0338502|T047|AB|377.43|ICD9CM|Optic nerve hypoplasia|Optic nerve hypoplasia +C0155304|T047|AB|377.49|ICD9CM|Optic nerve disorder NEC|Optic nerve disorder NEC +C0155304|T047|PT|377.49|ICD9CM|Other disorders of optic nerve|Other disorders of optic nerve +C0155307|T047|HT|377.5|ICD9CM|Disorders of optic chiasm|Disorders of optic chiasm +C0155308|T047|PT|377.51|ICD9CM|Disorders of optic chiasm associated with pituitary neoplasms and disorders|Disorders of optic chiasm associated with pituitary neoplasms and disorders +C0155308|T047|AB|377.51|ICD9CM|Opt chiasm w pituit dis|Opt chiasm w pituit dis +C2004477|T047|PT|377.52|ICD9CM|Disorders of optic chiasm associated with other neoplasms|Disorders of optic chiasm associated with other neoplasms +C2004477|T047|AB|377.52|ICD9CM|Opt chiasm dis/neopl NEC|Opt chiasm dis/neopl NEC +C3665440|T047|PT|377.53|ICD9CM|Disorders of optic chiasm associated with vascular disorders|Disorders of optic chiasm associated with vascular disorders +C3665440|T047|AB|377.53|ICD9CM|Opt chiasm w vascul dis|Opt chiasm w vascul dis +C0155311|T047|PT|377.54|ICD9CM|Disorders of optic chiasm associated with inflammatory disorders|Disorders of optic chiasm associated with inflammatory disorders +C0155311|T047|AB|377.54|ICD9CM|Op chiasm dis w infl dis|Op chiasm dis w infl dis +C0155312|T047|HT|377.6|ICD9CM|Disorders of other visual pathways|Disorders of other visual pathways +C0155313|T047|PT|377.61|ICD9CM|Disorders of other visual pathways associated with neoplasms|Disorders of other visual pathways associated with neoplasms +C0155313|T047|AB|377.61|ICD9CM|Vis path dis w neoplasms|Vis path dis w neoplasms +C0155314|T047|PT|377.62|ICD9CM|Disorders of other visual pathways associated with vascular disorders|Disorders of other visual pathways associated with vascular disorders +C0155314|T047|AB|377.62|ICD9CM|Vis path dis w vasc dis|Vis path dis w vasc dis +C0155315|T047|PT|377.63|ICD9CM|Disorders of other visual pathways associated with inflammatory disorders|Disorders of other visual pathways associated with inflammatory disorders +C0155315|T047|AB|377.63|ICD9CM|Vis path dis w infl dis|Vis path dis w infl dis +C0234398|T047|HT|377.7|ICD9CM|Disorders of visual cortex|Disorders of visual cortex +C3665441|T047|PT|377.71|ICD9CM|Disorders of visual cortex associated with neoplasms|Disorders of visual cortex associated with neoplasms +C3665441|T047|AB|377.71|ICD9CM|Vis cortx dis w neoplasm|Vis cortx dis w neoplasm +C3665442|T047|PT|377.72|ICD9CM|Disorders of visual cortex associated with vascular disorders|Disorders of visual cortex associated with vascular disorders +C3665442|T047|AB|377.72|ICD9CM|Vis cortx dis w vasc dis|Vis cortx dis w vasc dis +C3665443|T047|PT|377.73|ICD9CM|Disorders of visual cortex associated with inflammatory disorders|Disorders of visual cortex associated with inflammatory disorders +C3665443|T047|AB|377.73|ICD9CM|Vis cortex dis w inflam|Vis cortex dis w inflam +C0155320|T047|AB|377.75|ICD9CM|Cortical blindness|Cortical blindness +C0155320|T047|PT|377.75|ICD9CM|Cortical blindness|Cortical blindness +C1533675|T047|AB|377.9|ICD9CM|Optic nerve disorder NOS|Optic nerve disorder NOS +C1533675|T047|PT|377.9|ICD9CM|Unspecified disorder of optic nerve and visual pathways|Unspecified disorder of optic nerve and visual pathways +C0038380|T047|HT|378|ICD9CM|Strabismus and other disorders of binocular eye movements|Strabismus and other disorders of binocular eye movements +C0014877|T047|HT|378.0|ICD9CM|Esotropia|Esotropia +C0014877|T047|AB|378.00|ICD9CM|Esotropia NOS|Esotropia NOS +C0014877|T047|PT|378.00|ICD9CM|Esotropia, unspecified|Esotropia, unspecified +C0152204|T047|AB|378.01|ICD9CM|Monocular esotropia|Monocular esotropia +C0152204|T047|PT|378.01|ICD9CM|Monocular esotropia|Monocular esotropia +C0155322|T047|AB|378.02|ICD9CM|Monoc esotrop w a pattrn|Monoc esotrop w a pattrn +C0155322|T047|PT|378.02|ICD9CM|Monocular esotropia with A pattern|Monocular esotropia with A pattern +C0155323|T047|AB|378.03|ICD9CM|Monoc esotrop w v pattrn|Monoc esotrop w v pattrn +C0155323|T047|PT|378.03|ICD9CM|Monocular esotropia with V pattern|Monocular esotropia with V pattern +C0155324|T047|AB|378.04|ICD9CM|Monoc esotrop w x/y pat|Monoc esotrop w x/y pat +C0155324|T047|PT|378.04|ICD9CM|Monocular esotropia with other noncomitancies|Monocular esotropia with other noncomitancies +C0152205|T047|AB|378.05|ICD9CM|Alternating esotropia|Alternating esotropia +C0152205|T047|PT|378.05|ICD9CM|Alternating esotropia|Alternating esotropia +C0155325|T047|AB|378.06|ICD9CM|Alt esotropia w a pattrn|Alt esotropia w a pattrn +C0155325|T047|PT|378.06|ICD9CM|Alternating esotropia with A pattern|Alternating esotropia with A pattern +C0155326|T047|AB|378.07|ICD9CM|Alt esotropia w v pattrn|Alt esotropia w v pattrn +C0155326|T047|PT|378.07|ICD9CM|Alternating esotropia with V pattern|Alternating esotropia with V pattern +C0155327|T047|AB|378.08|ICD9CM|Alt esotrop w x/y pattrn|Alt esotrop w x/y pattrn +C0155327|T047|PT|378.08|ICD9CM|Alternating esotropia with other noncomitancies|Alternating esotropia with other noncomitancies +C0015310|T047|HT|378.1|ICD9CM|Exotropia|Exotropia +C0015310|T047|AB|378.10|ICD9CM|Exotropia NOS|Exotropia NOS +C0015310|T047|PT|378.10|ICD9CM|Exotropia, unspecified|Exotropia, unspecified +C0152206|T047|AB|378.11|ICD9CM|Monocular exotropia|Monocular exotropia +C0152206|T047|PT|378.11|ICD9CM|Monocular exotropia|Monocular exotropia +C0155328|T047|AB|378.12|ICD9CM|Monoc exotrop w a pattrn|Monoc exotrop w a pattrn +C0155328|T047|PT|378.12|ICD9CM|Monocular exotropia with A pattern|Monocular exotropia with A pattern +C0155329|T047|AB|378.13|ICD9CM|Monoc exotrop w v pattrn|Monoc exotrop w v pattrn +C0155329|T047|PT|378.13|ICD9CM|Monocular exotropia with V pattern|Monocular exotropia with V pattern +C0155330|T047|AB|378.14|ICD9CM|Monoc exotrop w x/y pat|Monoc exotrop w x/y pat +C0155330|T047|PT|378.14|ICD9CM|Monocular exotropia with other noncomitancies|Monocular exotropia with other noncomitancies +C0152207|T047|AB|378.15|ICD9CM|Alternating exotropia|Alternating exotropia +C0152207|T047|PT|378.15|ICD9CM|Alternating exotropia|Alternating exotropia +C0155331|T047|AB|378.16|ICD9CM|Alt exotropia w a pattrn|Alt exotropia w a pattrn +C0155331|T047|PT|378.16|ICD9CM|Alternating exotropia with A pattern|Alternating exotropia with A pattern +C0155332|T047|AB|378.17|ICD9CM|Alt exotropia w v pattrn|Alt exotropia w v pattrn +C0155332|T047|PT|378.17|ICD9CM|Alternating exotropia with V pattern|Alternating exotropia with V pattern +C0155333|T047|AB|378.18|ICD9CM|Alt exotrop w x/y pattrn|Alt exotrop w x/y pattrn +C0155333|T047|PT|378.18|ICD9CM|Alternating exotropia with other noncomitancies|Alternating exotropia with other noncomitancies +C0152210|T047|HT|378.2|ICD9CM|Intermittent heterotropia|Intermittent heterotropia +C0152210|T047|AB|378.20|ICD9CM|Intermit heterotrop NOS|Intermit heterotrop NOS +C0152210|T047|PT|378.20|ICD9CM|Intermittent heterotropia, unspecified|Intermittent heterotropia, unspecified +C0152211|T047|AB|378.21|ICD9CM|Intermit monoc esotropia|Intermit monoc esotropia +C0152211|T047|PT|378.21|ICD9CM|Intermittent esotropia, monocular|Intermittent esotropia, monocular +C0152212|T047|AB|378.22|ICD9CM|Intermit altrn esotropia|Intermit altrn esotropia +C0152212|T047|PT|378.22|ICD9CM|Intermittent esotropia, alternating|Intermittent esotropia, alternating +C0152213|T047|AB|378.23|ICD9CM|Intermit monoc exotropia|Intermit monoc exotropia +C0152213|T047|PT|378.23|ICD9CM|Intermittent exotropia, monocular|Intermittent exotropia, monocular +C0152214|T047|AB|378.24|ICD9CM|Intermit altrn exotropia|Intermit altrn exotropia +C0152214|T047|PT|378.24|ICD9CM|Intermittent exotropia, alternating|Intermittent exotropia, alternating +C0155334|T047|HT|378.3|ICD9CM|Other and unspecified heterotropia|Other and unspecified heterotropia +C0038379|T047|AB|378.30|ICD9CM|Heterotropia NOS|Heterotropia NOS +C0038379|T047|PT|378.30|ICD9CM|Heterotropia, unspecified|Heterotropia, unspecified +C0020575|T047|AB|378.31|ICD9CM|Hypertropia|Hypertropia +C0020575|T047|PT|378.31|ICD9CM|Hypertropia|Hypertropia +C0152208|T047|AB|378.32|ICD9CM|Hypotropia|Hypotropia +C0152208|T047|PT|378.32|ICD9CM|Hypotropia|Hypotropia +C0152209|T047|AB|378.33|ICD9CM|Cyclotropia|Cyclotropia +C0152209|T047|PT|378.33|ICD9CM|Cyclotropia|Cyclotropia +C0339611|T047|AB|378.34|ICD9CM|Monofixation syndrome|Monofixation syndrome +C0339611|T047|PT|378.34|ICD9CM|Monofixation syndrome|Monofixation syndrome +C0155336|T047|PT|378.35|ICD9CM|Accommodative component in esotropia|Accommodative component in esotropia +C0155336|T047|AB|378.35|ICD9CM|Accommodative esotropia|Accommodative esotropia +C4721400|T047|HT|378.4|ICD9CM|Heterophoria|Heterophoria +C4721400|T047|AB|378.40|ICD9CM|Heterophoria NOS|Heterophoria NOS +C4721400|T047|PT|378.40|ICD9CM|Heterophoria, unspecified|Heterophoria, unspecified +C0152216|T047|AB|378.41|ICD9CM|Esophoria|Esophoria +C0152216|T047|PT|378.41|ICD9CM|Esophoria|Esophoria +C0152217|T047|AB|378.42|ICD9CM|Exophoria|Exophoria +C0152217|T047|PT|378.42|ICD9CM|Exophoria|Exophoria +C0152218|T047|AB|378.43|ICD9CM|Vertical heterophoria|Vertical heterophoria +C0152218|T047|PT|378.43|ICD9CM|Vertical heterophoria|Vertical heterophoria +C0152219|T047|AB|378.44|ICD9CM|Cyclophoria|Cyclophoria +C0152219|T047|PT|378.44|ICD9CM|Cyclophoria|Cyclophoria +C0152220|T047|AB|378.45|ICD9CM|Alternating hyperphoria|Alternating hyperphoria +C0152220|T047|PT|378.45|ICD9CM|Alternating hyperphoria|Alternating hyperphoria +C0152221|T047|HT|378.5|ICD9CM|Paralytic strabismus|Paralytic strabismus +C0152221|T047|AB|378.50|ICD9CM|Paralytic strabismus NOS|Paralytic strabismus NOS +C0152221|T047|PT|378.50|ICD9CM|Paralytic strabismus, unspecified|Paralytic strabismus, unspecified +C0271370|T047|AB|378.51|ICD9CM|Partial third nerv palsy|Partial third nerv palsy +C0271370|T047|PT|378.51|ICD9CM|Third or oculomotor nerve palsy, partial|Third or oculomotor nerve palsy, partial +C0271371|T047|PT|378.52|ICD9CM|Third or oculomotor nerve palsy, total|Third or oculomotor nerve palsy, total +C0271371|T047|AB|378.52|ICD9CM|Total third nerve palsy|Total third nerve palsy +C0271375|T047|AB|378.53|ICD9CM|Fourth nerve palsy|Fourth nerve palsy +C0271375|T047|PT|378.53|ICD9CM|Fourth or trochlear nerve palsy|Fourth or trochlear nerve palsy +C4551519|T047|AB|378.54|ICD9CM|Sixth nerve palsy|Sixth nerve palsy +C4551519|T047|PT|378.54|ICD9CM|Sixth or abducens nerve palsy|Sixth or abducens nerve palsy +C0162292|T047|AB|378.55|ICD9CM|External ophthalmoplegia|External ophthalmoplegia +C0162292|T047|PT|378.55|ICD9CM|External ophthalmoplegia|External ophthalmoplegia +C0155338|T047|AB|378.56|ICD9CM|Total ophthalmoplegia|Total ophthalmoplegia +C0155338|T047|PT|378.56|ICD9CM|Total ophthalmoplegia|Total ophthalmoplegia +C0152223|T047|HT|378.6|ICD9CM|Mechanical strabismus|Mechanical strabismus +C0152223|T047|AB|378.60|ICD9CM|Mechanical strabism NOS|Mechanical strabism NOS +C0152223|T047|PT|378.60|ICD9CM|Mechanical strabismus, unspecified|Mechanical strabismus, unspecified +C0155339|T047|PT|378.61|ICD9CM|Brown's (tendon) sheath syndrome|Brown's (tendon) sheath syndrome +C0155339|T047|AB|378.61|ICD9CM|Brown's sheath syndrome|Brown's sheath syndrome +C0155340|T047|AB|378.62|ICD9CM|Mech strab d/t muscl dis|Mech strab d/t muscl dis +C0155340|T047|PT|378.62|ICD9CM|Mechanical strabismus from other musculofascial disorders|Mechanical strabismus from other musculofascial disorders +C0155341|T047|PT|378.63|ICD9CM|Limited duction associated with other conditions|Limited duction associated with other conditions +C0155341|T047|AB|378.63|ICD9CM|Mech strab w oth conditn|Mech strab w oth conditn +C0029831|T047|HT|378.7|ICD9CM|Other specified strabismus|Other specified strabismus +C0013261|T047|AB|378.71|ICD9CM|Duane's syndrome|Duane's syndrome +C0013261|T047|PT|378.71|ICD9CM|Duane's syndrome|Duane's syndrome +C0162674|T047|AB|378.72|ICD9CM|Prog ext ophthalmoplegia|Prog ext ophthalmoplegia +C0162674|T047|PT|378.72|ICD9CM|Progressive external ophthalmoplegia|Progressive external ophthalmoplegia +C0155342|T047|AB|378.73|ICD9CM|Neuromuscle dis strabism|Neuromuscle dis strabism +C0155342|T047|PT|378.73|ICD9CM|Strabismus in other neuromuscular disorders|Strabismus in other neuromuscular disorders +C0155343|T047|HT|378.8|ICD9CM|Other disorders of binocular eye movements|Other disorders of binocular eye movements +C0702143|T047|AB|378.81|ICD9CM|Palsy of conjugate gaze|Palsy of conjugate gaze +C0702143|T047|PT|378.81|ICD9CM|Palsy of conjugate gaze|Palsy of conjugate gaze +C0155344|T184|AB|378.82|ICD9CM|Spasm of conjugate gaze|Spasm of conjugate gaze +C0155344|T184|PT|378.82|ICD9CM|Spasm of conjugate gaze|Spasm of conjugate gaze +C0155345|T047|AB|378.83|ICD9CM|Convergenc insufficiency|Convergenc insufficiency +C0155345|T047|PT|378.83|ICD9CM|Convergence insufficiency or palsy|Convergence insufficiency or palsy +C0155346|T047|AB|378.84|ICD9CM|Convergence excess|Convergence excess +C0155346|T047|PT|378.84|ICD9CM|Convergence excess or spasm|Convergence excess or spasm +C0155347|T184|AB|378.85|ICD9CM|Anomalies of divergence|Anomalies of divergence +C0155347|T184|PT|378.85|ICD9CM|Anomalies of divergence|Anomalies of divergence +C0152134|T047|AB|378.86|ICD9CM|Internucl ophthalmopleg|Internucl ophthalmopleg +C0152134|T047|PT|378.86|ICD9CM|Internuclear ophthalmoplegia|Internuclear ophthalmoplegia +C0733455|T047|PT|378.87|ICD9CM|Other dissociated deviation of eye movements|Other dissociated deviation of eye movements +C0733455|T047|AB|378.87|ICD9CM|Skew deviation, eye|Skew deviation, eye +C0028850|T047|AB|378.9|ICD9CM|Eye movemnt disorder NOS|Eye movemnt disorder NOS +C0028850|T047|PT|378.9|ICD9CM|Unspecified disorder of eye movements|Unspecified disorder of eye movements +C0497217|T047|HT|379|ICD9CM|Other disorders of eye|Other disorders of eye +C1971635|T047|HT|379.0|ICD9CM|Scleritis and episcleritis|Scleritis and episcleritis +C0036416|T047|AB|379.00|ICD9CM|Scleritis NOS|Scleritis NOS +C0036416|T047|PT|379.00|ICD9CM|Scleritis, unspecified|Scleritis, unspecified +C0155351|T047|AB|379.01|ICD9CM|Episclerit periodic fugx|Episclerit periodic fugx +C0155351|T047|PT|379.01|ICD9CM|Episcleritis periodica fugax|Episcleritis periodica fugax +C0155352|T047|AB|379.02|ICD9CM|Nodular episcleritis|Nodular episcleritis +C0155352|T047|PT|379.02|ICD9CM|Nodular episcleritis|Nodular episcleritis +C0155353|T047|AB|379.03|ICD9CM|Anterior scleritis|Anterior scleritis +C0155353|T047|PT|379.03|ICD9CM|Anterior scleritis|Anterior scleritis +C0155354|T047|AB|379.04|ICD9CM|Scleromalacia perforans|Scleromalacia perforans +C0155354|T047|PT|379.04|ICD9CM|Scleromalacia perforans|Scleromalacia perforans +C0155355|T047|AB|379.05|ICD9CM|Scleritis w cornea invol|Scleritis w cornea invol +C0155355|T047|PT|379.05|ICD9CM|Scleritis with corneal involvement|Scleritis with corneal involvement +C0155356|T047|AB|379.06|ICD9CM|Brawny scleritis|Brawny scleritis +C0155356|T047|PT|379.06|ICD9CM|Brawny scleritis|Brawny scleritis +C0155357|T047|AB|379.07|ICD9CM|Posterior scleritis|Posterior scleritis +C0155357|T047|PT|379.07|ICD9CM|Posterior scleritis|Posterior scleritis +C0029734|T047|PT|379.09|ICD9CM|Other scleritis and episcleritis|Other scleritis and episcleritis +C0029734|T047|AB|379.09|ICD9CM|Scleritis NEC|Scleritis NEC +C0155358|T047|HT|379.1|ICD9CM|Other disorders of sclera|Other disorders of sclera +C0155359|T047|AB|379.11|ICD9CM|Scleral ectasia|Scleral ectasia +C0155359|T047|PT|379.11|ICD9CM|Scleral ectasia|Scleral ectasia +C0155360|T047|AB|379.12|ICD9CM|Staphyloma posticum|Staphyloma posticum +C0155360|T047|PT|379.12|ICD9CM|Staphyloma posticum|Staphyloma posticum +C0155361|T047|AB|379.13|ICD9CM|Equatorial staphyloma|Equatorial staphyloma +C0155361|T047|PT|379.13|ICD9CM|Equatorial staphyloma|Equatorial staphyloma +C0155362|T047|PT|379.14|ICD9CM|Anterior staphyloma, localized|Anterior staphyloma, localized +C0155362|T047|AB|379.14|ICD9CM|Local anterior staphylma|Local anterior staphylma +C0155363|T047|AB|379.15|ICD9CM|Ring staphyloma|Ring staphyloma +C0155363|T047|PT|379.15|ICD9CM|Ring staphyloma|Ring staphyloma +C0155364|T047|PT|379.16|ICD9CM|Other degenerative disorders of sclera|Other degenerative disorders of sclera +C0155364|T047|AB|379.16|ICD9CM|Scleral degen dis NEC|Scleral degen dis NEC +C0155358|T047|AB|379.19|ICD9CM|Disorder of sclera NEC|Disorder of sclera NEC +C0155358|T047|PT|379.19|ICD9CM|Other disorders of sclera|Other disorders of sclera +C0155365|T047|HT|379.2|ICD9CM|Disorders of vitreous body|Disorders of vitreous body +C0155366|T047|AB|379.21|ICD9CM|Vitreous degeneration|Vitreous degeneration +C0155366|T047|PT|379.21|ICD9CM|Vitreous degeneration|Vitreous degeneration +C0155367|T047|AB|379.22|ICD9CM|Crystal deposit vitreous|Crystal deposit vitreous +C0155367|T047|PT|379.22|ICD9CM|Crystalline deposits in vitreous|Crystalline deposits in vitreous +C0042909|T046|AB|379.23|ICD9CM|Vitreous hemorrhage|Vitreous hemorrhage +C0042909|T046|PT|379.23|ICD9CM|Vitreous hemorrhage|Vitreous hemorrhage +C0029872|T047|PT|379.24|ICD9CM|Other vitreous opacities|Other vitreous opacities +C0029872|T047|AB|379.24|ICD9CM|Vitreous opacities NEC|Vitreous opacities NEC +C0155368|T047|AB|379.25|ICD9CM|Vitreous membranes|Vitreous membranes +C0155368|T047|PT|379.25|ICD9CM|Vitreous membranes and strands|Vitreous membranes and strands +C0155369|T190|AB|379.26|ICD9CM|Vitreous prolapse|Vitreous prolapse +C0155369|T190|PT|379.26|ICD9CM|Vitreous prolapse|Vitreous prolapse +C2748203|T190|PT|379.27|ICD9CM|Vitreomacular adhesion|Vitreomacular adhesion +C2748203|T190|AB|379.27|ICD9CM|Vitreomacular adhesion|Vitreomacular adhesion +C0155370|T047|PT|379.29|ICD9CM|Other disorders of vitreous|Other disorders of vitreous +C0155370|T047|AB|379.29|ICD9CM|Vitreous disorders NEC|Vitreous disorders NEC +C0155371|T047|HT|379.3|ICD9CM|Aphakia and other disorders of lens|Aphakia and other disorders of lens +C0003534|T190|AB|379.31|ICD9CM|Aphakia|Aphakia +C0003534|T190|PT|379.31|ICD9CM|Aphakia|Aphakia +C0023316|T047|AB|379.32|ICD9CM|Subluxation of lens|Subluxation of lens +C0023316|T047|PT|379.32|ICD9CM|Subluxation of lens|Subluxation of lens +C0155372|T047|AB|379.33|ICD9CM|Ant dislocation of lens|Ant dislocation of lens +C0155372|T047|PT|379.33|ICD9CM|Anterior dislocation of lens|Anterior dislocation of lens +C0155373|T047|AB|379.34|ICD9CM|Post dislocation of lens|Post dislocation of lens +C0155373|T047|PT|379.34|ICD9CM|Posterior dislocation of lens|Posterior dislocation of lens +C0029590|T047|AB|379.39|ICD9CM|Disorders of lens NEC|Disorders of lens NEC +C0029590|T047|PT|379.39|ICD9CM|Other disorders of lens|Other disorders of lens +C0917967|T033|HT|379.4|ICD9CM|Anomalies of pupillary function|Anomalies of pupillary function +C0917967|T033|AB|379.40|ICD9CM|Abn pupil function NOS|Abn pupil function NOS +C0917967|T033|PT|379.40|ICD9CM|Abnormal pupillary function, unspecified|Abnormal pupillary function, unspecified +C0003079|T033|AB|379.41|ICD9CM|Anisocoria|Anisocoria +C0003079|T033|PT|379.41|ICD9CM|Anisocoria|Anisocoria +C0026205|T047|PT|379.42|ICD9CM|Miosis (persistent), not due to miotics|Miosis (persistent), not due to miotics +C0026205|T047|AB|379.42|ICD9CM|Miosis not d/t miotics|Miosis not d/t miotics +C0026962|T046|PT|379.43|ICD9CM|Mydriasis (persistent), not due to mydriatics|Mydriasis (persistent), not due to mydriatics +C0026962|T046|AB|379.43|ICD9CM|Mydriasis not d/t mydrtc|Mydriasis not d/t mydrtc +C0155375|T047|AB|379.45|ICD9CM|Argyll robertson pupil|Argyll robertson pupil +C0155375|T047|PT|379.45|ICD9CM|Argyll Robertson pupil, atypical|Argyll Robertson pupil, atypical +C0040416|T184|AB|379.46|ICD9CM|Tonic pupillary reaction|Tonic pupillary reaction +C0040416|T184|PT|379.46|ICD9CM|Tonic pupillary reaction|Tonic pupillary reaction +C0155376|T047|PT|379.49|ICD9CM|Other anomalies of pupillary function|Other anomalies of pupillary function +C0155376|T047|AB|379.49|ICD9CM|Pupil funct anomaly NEC|Pupil funct anomaly NEC +C0339666|T033|HT|379.5|ICD9CM|Nystagmus and other irregular eye movements|Nystagmus and other irregular eye movements +C0028738|T047|AB|379.50|ICD9CM|Nystagmus NOS|Nystagmus NOS +C0028738|T047|PT|379.50|ICD9CM|Nystagmus, unspecified|Nystagmus, unspecified +C0700501|T019|AB|379.51|ICD9CM|Congenital nystagmus|Congenital nystagmus +C0700501|T019|PT|379.51|ICD9CM|Congenital nystagmus|Congenital nystagmus +C0152225|T047|AB|379.52|ICD9CM|Latent nystagmus|Latent nystagmus +C0152225|T047|PT|379.52|ICD9CM|Latent nystagmus|Latent nystagmus +C0271384|T047|PT|379.53|ICD9CM|Visual deprivation nystagmus|Visual deprivation nystagmus +C0271384|T047|AB|379.53|ICD9CM|Visual deprivatn nystagm|Visual deprivatn nystagm +C0155379|T047|AB|379.54|ICD9CM|Nystagms w vestibulr dis|Nystagms w vestibulr dis +C0155379|T047|PT|379.54|ICD9CM|Nystagmus associated with disorders of the vestibular system|Nystagmus associated with disorders of the vestibular system +C0155380|T047|AB|379.55|ICD9CM|Dissociated nystagmus|Dissociated nystagmus +C0155380|T047|PT|379.55|ICD9CM|Dissociated nystagmus|Dissociated nystagmus +C0029620|T047|AB|379.56|ICD9CM|Nystagmus NEC|Nystagmus NEC +C0029620|T047|PT|379.56|ICD9CM|Other forms of nystagmus|Other forms of nystagmus +C0595983|T033|PT|379.57|ICD9CM|Deficiencies of saccadic eye movements|Deficiencies of saccadic eye movements +C0595983|T033|AB|379.57|ICD9CM|Saccadic eye movmnt def|Saccadic eye movmnt def +C0155382|T184|PT|379.58|ICD9CM|Deficiencies of smooth pursuit movements|Deficiencies of smooth pursuit movements +C0155382|T184|AB|379.58|ICD9CM|Smooth pursuit mvmnt def|Smooth pursuit mvmnt def +C0155383|T047|AB|379.59|ICD9CM|Irregular eye mvmnts NEC|Irregular eye mvmnts NEC +C0155383|T047|PT|379.59|ICD9CM|Other irregularities of eye movements|Other irregularities of eye movements +C1719449|T046|HT|379.6|ICD9CM|Inflammation (infection) of postprocedural bleb|Inflammation (infection) of postprocedural bleb +C1719445|T047|AB|379.60|ICD9CM|Inflam postproc bleb NOS|Inflam postproc bleb NOS +C1719445|T047|PT|379.60|ICD9CM|Inflammation (infection) of postprocedural bleb, unspecified|Inflammation (infection) of postprocedural bleb, unspecified +C1719446|T047|AB|379.61|ICD9CM|Inflam postproc bleb, 1|Inflam postproc bleb, 1 +C1719446|T047|PT|379.61|ICD9CM|Inflammation (infection) of postprocedural bleb, stage 1|Inflammation (infection) of postprocedural bleb, stage 1 +C1719447|T047|AB|379.62|ICD9CM|Inflam postproc bleb, 2|Inflam postproc bleb, 2 +C1719447|T047|PT|379.62|ICD9CM|Inflammation (infection) of postprocedural bleb, stage 2|Inflammation (infection) of postprocedural bleb, stage 2 +C1719448|T047|AB|379.63|ICD9CM|Inflam postproc bleb, 3|Inflam postproc bleb, 3 +C1719448|T047|PT|379.63|ICD9CM|Inflammation (infection) of postprocedural bleb, stage 3|Inflammation (infection) of postprocedural bleb, stage 3 +C0155384|T047|AB|379.8|ICD9CM|Eye disorders NEC|Eye disorders NEC +C0155384|T047|PT|379.8|ICD9CM|Other specified disorders of eye and adnexa|Other specified disorders of eye and adnexa +C1314803|T047|HT|379.9|ICD9CM|Unspecified disorder of eye and adnexa|Unspecified disorder of eye and adnexa +C0015397|T047|PT|379.90|ICD9CM|Disorder of eye, unspecified|Disorder of eye, unspecified +C0015397|T047|AB|379.90|ICD9CM|Eye disorder NOS|Eye disorder NOS +C0030197|T184|AB|379.91|ICD9CM|Pain in or around eye|Pain in or around eye +C0030197|T184|PT|379.91|ICD9CM|Pain in or around eye|Pain in or around eye +C0155386|T047|AB|379.92|ICD9CM|Swelling or mass of eye|Swelling or mass of eye +C0155386|T047|PT|379.92|ICD9CM|Swelling or mass of eye|Swelling or mass of eye +C0034915|T184|PT|379.93|ICD9CM|Redness or discharge of eye|Redness or discharge of eye +C0034915|T184|AB|379.93|ICD9CM|Redness/discharge of eye|Redness/discharge of eye +C0155387|T047|AB|379.99|ICD9CM|Ill-defined eye dis NEC|Ill-defined eye dis NEC +C0155387|T047|PT|379.99|ICD9CM|Other ill-defined disorders of eye|Other ill-defined disorders of eye +C0155388|T047|HT|380|ICD9CM|Disorders of external ear|Disorders of external ear +C0178269|T047|HT|380-389.99|ICD9CM|DISEASES OF THE EAR AND MASTOID PROCESS|DISEASES OF THE EAR AND MASTOID PROCESS +C0155389|T047|HT|380.0|ICD9CM|Perichondritis and chondritis of pinna|Perichondritis and chondritis of pinna +C0155389|T047|PT|380.00|ICD9CM|Perichondritis of pinna, unspecified|Perichondritis of pinna, unspecified +C0155389|T047|AB|380.00|ICD9CM|Perichondritis pinna NOS|Perichondritis pinna NOS +C0155390|T047|AB|380.01|ICD9CM|Ac perichondritis pinna|Ac perichondritis pinna +C0155390|T047|PT|380.01|ICD9CM|Acute perichondritis of pinna|Acute perichondritis of pinna +C0155391|T047|AB|380.02|ICD9CM|Chr perichondritis pinna|Chr perichondritis pinna +C0155391|T047|PT|380.02|ICD9CM|Chronic perichondritis of pinna|Chronic perichondritis of pinna +C0741305|T046|AB|380.03|ICD9CM|Chondritis of pinna|Chondritis of pinna +C0741305|T046|PT|380.03|ICD9CM|Chondritis of pinna|Chondritis of pinna +C0021355|T047|HT|380.1|ICD9CM|Infective otitis externa|Infective otitis externa +C0021355|T047|AB|380.10|ICD9CM|Infec otitis externa NOS|Infec otitis externa NOS +C0021355|T047|PT|380.10|ICD9CM|Infective otitis externa, unspecified|Infective otitis externa, unspecified +C0155392|T047|AB|380.11|ICD9CM|Acute infection of pinna|Acute infection of pinna +C0155392|T047|PT|380.11|ICD9CM|Acute infection of pinna|Acute infection of pinna +C0155393|T047|AB|380.12|ICD9CM|Acute swimmers' ear|Acute swimmers' ear +C0155393|T047|PT|380.12|ICD9CM|Acute swimmers' ear|Acute swimmers' ear +C0155394|T047|AB|380.13|ICD9CM|Ac infect extern ear NEC|Ac infect extern ear NEC +C0155394|T047|PT|380.13|ICD9CM|Other acute infections of external ear|Other acute infections of external ear +C0155395|T047|AB|380.14|ICD9CM|Malignant otitis externa|Malignant otitis externa +C0155395|T047|PT|380.14|ICD9CM|Malignant otitis externa|Malignant otitis externa +C0155396|T047|AB|380.15|ICD9CM|Chr mycot otitis externa|Chr mycot otitis externa +C0155396|T047|PT|380.15|ICD9CM|Chronic mycotic otitis externa|Chronic mycotic otitis externa +C0155397|T047|AB|380.16|ICD9CM|Chr inf otit externa NEC|Chr inf otit externa NEC +C0155397|T047|PT|380.16|ICD9CM|Other chronic infective otitis externa|Other chronic infective otitis externa +C0029695|T047|HT|380.2|ICD9CM|Other otitis externa|Other otitis externa +C0155398|T047|AB|380.21|ICD9CM|Cholesteatoma extern ear|Cholesteatoma extern ear +C0155398|T047|PT|380.21|ICD9CM|Cholesteatoma of external ear|Cholesteatoma of external ear +C0155399|T047|AB|380.22|ICD9CM|Acute otitis externa NEC|Acute otitis externa NEC +C0155399|T047|PT|380.22|ICD9CM|Other acute otitis externa|Other acute otitis externa +C0155400|T047|AB|380.23|ICD9CM|Chr otitis externa NEC|Chr otitis externa NEC +C0155400|T047|PT|380.23|ICD9CM|Other chronic otitis externa|Other chronic otitis externa +C0494553|T047|HT|380.3|ICD9CM|Noninfectious disorders of pinna|Noninfectious disorders of pinna +C0155402|T047|AB|380.30|ICD9CM|Disorder of pinna NOS|Disorder of pinna NOS +C0155402|T047|PT|380.30|ICD9CM|Disorder of pinna, unspecified|Disorder of pinna, unspecified +C0271413|T046|AB|380.31|ICD9CM|Hematoma auricle/pinna|Hematoma auricle/pinna +C0271413|T046|PT|380.31|ICD9CM|Hematoma of auricle or pinna|Hematoma of auricle or pinna +C0001170|T020|AB|380.32|ICD9CM|Acq deform auricle/pinna|Acq deform auricle/pinna +C0001170|T020|PT|380.32|ICD9CM|Acquired deformities of auricle or pinna|Acquired deformities of auricle or pinna +C0155404|T047|AB|380.39|ICD9CM|Noninfect dis pinna NEC|Noninfect dis pinna NEC +C0155404|T047|PT|380.39|ICD9CM|Other noninfectious disorders of pinna|Other noninfectious disorders of pinna +C0021092|T033|AB|380.4|ICD9CM|Impacted cerumen|Impacted cerumen +C0021092|T033|PT|380.4|ICD9CM|Impacted cerumen|Impacted cerumen +C0155405|T047|HT|380.5|ICD9CM|Acquired stenosis of external ear canal|Acquired stenosis of external ear canal +C0155405|T047|AB|380.50|ICD9CM|Acq stenos ear canal NOS|Acq stenos ear canal NOS +C0155405|T047|PT|380.50|ICD9CM|Acquired stenosis of external ear canal, unspecified as to cause|Acquired stenosis of external ear canal, unspecified as to cause +C0395839|T020|PT|380.51|ICD9CM|Acquired stenosis of external ear canal secondary to trauma|Acquired stenosis of external ear canal secondary to trauma +C0395839|T020|AB|380.51|ICD9CM|Stenosis ear d/t trauma|Stenosis ear d/t trauma +C0395841|T020|PT|380.52|ICD9CM|Acquired stenosis of external ear canal secondary to surgery|Acquired stenosis of external ear canal secondary to surgery +C0395841|T020|AB|380.52|ICD9CM|Stenosis ear d/t surgery|Stenosis ear d/t surgery +C0395842|T020|PT|380.53|ICD9CM|Acquired stenosis of external ear canal secondary to inflammation|Acquired stenosis of external ear canal secondary to inflammation +C0395842|T020|AB|380.53|ICD9CM|Stenosis ear d/t inflam|Stenosis ear d/t inflam +C0155410|T047|HT|380.8|ICD9CM|Other disorders of external ear|Other disorders of external ear +C0155411|T047|AB|380.81|ICD9CM|Exostosis ext ear canal|Exostosis ext ear canal +C0155411|T047|PT|380.81|ICD9CM|Exostosis of external ear canal|Exostosis of external ear canal +C0155410|T047|AB|380.89|ICD9CM|Dis external ear NEC|Dis external ear NEC +C0155410|T047|PT|380.89|ICD9CM|Other disorders of external ear|Other disorders of external ear +C0155388|T047|AB|380.9|ICD9CM|Dis external ear NOS|Dis external ear NOS +C0155388|T047|PT|380.9|ICD9CM|Unspecified disorder of external ear|Unspecified disorder of external ear +C0155413|T047|HT|381|ICD9CM|Nonsuppurative otitis media and Eustachian tube disorders|Nonsuppurative otitis media and Eustachian tube disorders +C0271432|T047|HT|381.0|ICD9CM|Acute nonsuppurative otitis media|Acute nonsuppurative otitis media +C0271432|T047|AB|381.00|ICD9CM|Ac nonsup otitis med NOS|Ac nonsup otitis med NOS +C0271432|T047|PT|381.00|ICD9CM|Acute nonsuppurative otitis media, unspecified|Acute nonsuppurative otitis media, unspecified +C0155415|T047|AB|381.01|ICD9CM|Ac serous otitis media|Ac serous otitis media +C0155415|T047|PT|381.01|ICD9CM|Acute serous otitis media|Acute serous otitis media +C0395863|T047|AB|381.02|ICD9CM|Ac mucoid otitis media|Ac mucoid otitis media +C0395863|T047|PT|381.02|ICD9CM|Acute mucoid otitis media|Acute mucoid otitis media +C0395865|T047|AB|381.03|ICD9CM|Ac sanguin otitis media|Ac sanguin otitis media +C0395865|T047|PT|381.03|ICD9CM|Acute sanguinous otitis media|Acute sanguinous otitis media +C0155418|T047|AB|381.04|ICD9CM|Ac allergic serous OM|Ac allergic serous OM +C0155418|T047|PT|381.04|ICD9CM|Acute allergic serous otitis media|Acute allergic serous otitis media +C0155419|T047|AB|381.05|ICD9CM|Ac allergic mucoid OM|Ac allergic mucoid OM +C0155419|T047|PT|381.05|ICD9CM|Acute allergic mucoid otitis media|Acute allergic mucoid otitis media +C0155420|T047|AB|381.06|ICD9CM|Ac allerg sanguinous OM|Ac allerg sanguinous OM +C0155420|T047|PT|381.06|ICD9CM|Acute allergic sanguinous otitis media|Acute allergic sanguinous otitis media +C0155421|T047|HT|381.1|ICD9CM|Chronic serous otitis media|Chronic serous otitis media +C0155422|T047|AB|381.10|ICD9CM|Chr serous OM simp/NOS|Chr serous OM simp/NOS +C0155422|T047|PT|381.10|ICD9CM|Chronic serous otitis media, simple or unspecified|Chronic serous otitis media, simple or unspecified +C0155423|T047|AB|381.19|ICD9CM|Chr serous OM NEC|Chr serous OM NEC +C0155423|T047|PT|381.19|ICD9CM|Other chronic serous otitis media|Other chronic serous otitis media +C1455742|T047|HT|381.2|ICD9CM|Chronic mucoid otitis media|Chronic mucoid otitis media +C1455742|T047|AB|381.20|ICD9CM|Chr mucoid OM simp/NOS|Chr mucoid OM simp/NOS +C1455742|T047|PT|381.20|ICD9CM|Chronic mucoid otitis media, simple or unspecified|Chronic mucoid otitis media, simple or unspecified +C0155426|T047|AB|381.29|ICD9CM|Chr mucoid OM NEC|Chr mucoid OM NEC +C0155426|T047|PT|381.29|ICD9CM|Other chronic mucoid otitis media|Other chronic mucoid otitis media +C0155427|T047|AB|381.3|ICD9CM|Chr nonsup OM NOS/NEC|Chr nonsup OM NOS/NEC +C0155427|T047|PT|381.3|ICD9CM|Other and unspecified chronic nonsuppurative otitis media|Other and unspecified chronic nonsuppurative otitis media +C0271446|T047|AB|381.4|ICD9CM|Nonsupp otitis media NOS|Nonsupp otitis media NOS +C0271446|T047|PT|381.4|ICD9CM|Nonsuppurative otitis media, not specified as acute or chronic|Nonsuppurative otitis media, not specified as acute or chronic +C0155428|T047|HT|381.5|ICD9CM|Eustachian salpingitis|Eustachian salpingitis +C0155428|T047|AB|381.50|ICD9CM|Eustachian salping NOS|Eustachian salping NOS +C0155428|T047|PT|381.50|ICD9CM|Eustachian salpingitis, unspecified|Eustachian salpingitis, unspecified +C0155429|T047|AB|381.51|ICD9CM|Ac eustachian salping|Ac eustachian salping +C0155429|T047|PT|381.51|ICD9CM|Acute Eustachian salpingitis|Acute Eustachian salpingitis +C0155430|T047|AB|381.52|ICD9CM|Chr eustachian salping|Chr eustachian salping +C0155430|T047|PT|381.52|ICD9CM|Chronic Eustachian salpingitis|Chronic Eustachian salpingitis +C0149508|T033|HT|381.6|ICD9CM|Obstruction of Eustachian tube|Obstruction of Eustachian tube +C0149508|T033|AB|381.60|ICD9CM|Obstr eustach tube NOS|Obstr eustach tube NOS +C0149508|T033|PT|381.60|ICD9CM|Obstruction of Eustachian tube, unspecified|Obstruction of Eustachian tube, unspecified +C0155431|T047|AB|381.61|ICD9CM|Osseous eustachian obstr|Osseous eustachian obstr +C0155431|T047|PT|381.61|ICD9CM|Osseous obstruction of Eustachian tube|Osseous obstruction of Eustachian tube +C0271471|T047|PT|381.62|ICD9CM|Intrinsic cartilagenous obstruction of Eustachian tube|Intrinsic cartilagenous obstruction of Eustachian tube +C0271471|T047|AB|381.62|ICD9CM|Intrinsic eustach obstr|Intrinsic eustach obstr +C0155433|T047|PT|381.63|ICD9CM|Extrinsic cartilagenous obstruction of Eustachian tube|Extrinsic cartilagenous obstruction of Eustachian tube +C0155433|T047|AB|381.63|ICD9CM|Extrinsic eustach obstr|Extrinsic eustach obstr +C0155434|T047|AB|381.7|ICD9CM|Patulous eustachian tube|Patulous eustachian tube +C0155434|T047|PT|381.7|ICD9CM|Patulous Eustachian tube|Patulous Eustachian tube +C0155435|T047|HT|381.8|ICD9CM|Other disorders of Eustachian tube|Other disorders of Eustachian tube +C0271468|T047|AB|381.81|ICD9CM|Dysfunct eustachian tube|Dysfunct eustachian tube +C0271468|T047|PT|381.81|ICD9CM|Dysfunction of Eustachian tube|Dysfunction of Eustachian tube +C0155435|T047|AB|381.89|ICD9CM|Eustachian tube dis NEC|Eustachian tube dis NEC +C0155435|T047|PT|381.89|ICD9CM|Other disorders of Eustachian tube|Other disorders of Eustachian tube +C0271468|T047|AB|381.9|ICD9CM|Eustachian tube dis NOS|Eustachian tube dis NOS +C0271468|T047|PT|381.9|ICD9CM|Unspecified Eustachian tube disorder|Unspecified Eustachian tube disorder +C0029888|T047|HT|382|ICD9CM|Suppurative and unspecified otitis media|Suppurative and unspecified otitis media +C0271431|T047|HT|382.0|ICD9CM|Acute suppurative otitis media|Acute suppurative otitis media +C0395861|T047|AB|382.00|ICD9CM|Ac supp otitis media NOS|Ac supp otitis media NOS +C0395861|T047|PT|382.00|ICD9CM|Acute suppurative otitis media without spontaneous rupture of eardrum|Acute suppurative otitis media without spontaneous rupture of eardrum +C0395862|T047|AB|382.01|ICD9CM|Ac supp OM w drum rupt|Ac supp OM w drum rupt +C0395862|T047|PT|382.01|ICD9CM|Acute suppurative otitis media with spontaneous rupture of eardrum|Acute suppurative otitis media with spontaneous rupture of eardrum +C0155439|T047|AB|382.02|ICD9CM|Ac supp OM in oth dis|Ac supp OM in oth dis +C0155439|T047|PT|382.02|ICD9CM|Acute suppurative otitis media in diseases classified elsewhere|Acute suppurative otitis media in diseases classified elsewhere +C0155440|T047|AB|382.1|ICD9CM|Chr tubotympan suppur OM|Chr tubotympan suppur OM +C0155440|T047|PT|382.1|ICD9CM|Chronic tubotympanic suppurative otitis media|Chronic tubotympanic suppurative otitis media +C0155441|T047|AB|382.2|ICD9CM|Chr atticoantral sup OM|Chr atticoantral sup OM +C0155441|T047|PT|382.2|ICD9CM|Chronic atticoantral suppurative otitis media|Chronic atticoantral suppurative otitis media +C0271454|T047|AB|382.3|ICD9CM|Chr sup otitis media NOS|Chr sup otitis media NOS +C0271454|T047|PT|382.3|ICD9CM|Unspecified chronic suppurative otitis media|Unspecified chronic suppurative otitis media +C0029888|T047|AB|382.4|ICD9CM|Suppur otitis media NOS|Suppur otitis media NOS +C0029888|T047|PT|382.4|ICD9CM|Unspecified suppurative otitis media|Unspecified suppurative otitis media +C0029882|T047|AB|382.9|ICD9CM|Otitis media NOS|Otitis media NOS +C0029882|T047|PT|382.9|ICD9CM|Unspecified otitis media|Unspecified otitis media +C0155442|T047|HT|383|ICD9CM|Mastoiditis and related conditions|Mastoiditis and related conditions +C0701825|T047|HT|383.0|ICD9CM|Acute mastoiditis|Acute mastoiditis +C0795702|T047|AB|383.00|ICD9CM|Ac mastoiditis w/o compl|Ac mastoiditis w/o compl +C0795702|T047|PT|383.00|ICD9CM|Acute mastoiditis without complications|Acute mastoiditis without complications +C0155445|T047|AB|383.01|ICD9CM|Subperi mastoid abscess|Subperi mastoid abscess +C0155445|T047|PT|383.01|ICD9CM|Subperiosteal abscess of mastoid|Subperiosteal abscess of mastoid +C0155446|T047|AB|383.02|ICD9CM|Ac mastoiditis-compl NEC|Ac mastoiditis-compl NEC +C0155446|T047|PT|383.02|ICD9CM|Acute mastoiditis with other complications|Acute mastoiditis with other complications +C0155447|T047|AB|383.1|ICD9CM|Chronic mastoiditis|Chronic mastoiditis +C0155447|T047|PT|383.1|ICD9CM|Chronic mastoiditis|Chronic mastoiditis +C0155448|T047|HT|383.2|ICD9CM|Petrositis|Petrositis +C0155448|T047|AB|383.20|ICD9CM|Petrositis NOS|Petrositis NOS +C0155448|T047|PT|383.20|ICD9CM|Petrositis, unspecified|Petrositis, unspecified +C0155449|T047|AB|383.21|ICD9CM|Acute petrositis|Acute petrositis +C0155449|T047|PT|383.21|ICD9CM|Acute petrositis|Acute petrositis +C0155450|T047|AB|383.22|ICD9CM|Chronic petrositis|Chronic petrositis +C0155450|T047|PT|383.22|ICD9CM|Chronic petrositis|Chronic petrositis +C0155452|T046|HT|383.3|ICD9CM|Complications following mastoidectomy|Complications following mastoidectomy +C0155452|T046|AB|383.30|ICD9CM|Postmastoid compl NOS|Postmastoid compl NOS +C0155452|T046|PT|383.30|ICD9CM|Postmastoidectomy complication, unspecified|Postmastoidectomy complication, unspecified +C0155453|T047|PT|383.31|ICD9CM|Mucosal cyst of postmastoidectomy cavity|Mucosal cyst of postmastoidectomy cavity +C0155453|T047|AB|383.31|ICD9CM|Postmastoid mucosal cyst|Postmastoid mucosal cyst +C0155454|T047|AB|383.32|ICD9CM|Postmastoid cholesteatma|Postmastoid cholesteatma +C0155454|T047|PT|383.32|ICD9CM|Recurrent cholesteatoma of postmastoidectomy cavity|Recurrent cholesteatoma of postmastoidectomy cavity +C0155455|T046|PT|383.33|ICD9CM|Granulations of postmastoidectomy cavity|Granulations of postmastoidectomy cavity +C0155455|T046|AB|383.33|ICD9CM|Postmastoid granulations|Postmastoid granulations +C0155456|T047|HT|383.8|ICD9CM|Other disorders of mastoid|Other disorders of mastoid +C0395905|T020|AB|383.81|ICD9CM|Postauricular fistula|Postauricular fistula +C0395905|T020|PT|383.81|ICD9CM|Postauricular fistula|Postauricular fistula +C0155456|T047|AB|383.89|ICD9CM|Disorders of mastoid NEC|Disorders of mastoid NEC +C0155456|T047|PT|383.89|ICD9CM|Other disorders of mastoid|Other disorders of mastoid +C0024904|T047|AB|383.9|ICD9CM|Mastoiditis NOS|Mastoiditis NOS +C0024904|T047|PT|383.9|ICD9CM|Unspecified mastoiditis|Unspecified mastoiditis +C0155458|T047|HT|384|ICD9CM|Other disorders of tympanic membrane|Other disorders of tympanic membrane +C0155459|T047|HT|384.0|ICD9CM|Acute myringitis without mention of otitis media|Acute myringitis without mention of otitis media +C0155460|T047|AB|384.00|ICD9CM|Acute myringitis NOS|Acute myringitis NOS +C0155460|T047|PT|384.00|ICD9CM|Acute myringitis, unspecified|Acute myringitis, unspecified +C0155461|T047|AB|384.01|ICD9CM|Bullous myringitis|Bullous myringitis +C0155461|T047|PT|384.01|ICD9CM|Bullous myringitis|Bullous myringitis +C0155462|T047|AB|384.09|ICD9CM|Acute myringitis NEC|Acute myringitis NEC +C0155462|T047|PT|384.09|ICD9CM|Other acute myringitis without mention of otitis media|Other acute myringitis without mention of otitis media +C0395849|T047|AB|384.1|ICD9CM|Chronic myringitis|Chronic myringitis +C0395849|T047|PT|384.1|ICD9CM|Chronic myringitis without mention of otitis media|Chronic myringitis without mention of otitis media +C0206504|T037|HT|384.2|ICD9CM|Perforation of tympanic membrane|Perforation of tympanic membrane +C0206504|T037|AB|384.20|ICD9CM|Perforat tympan memb NOS|Perforat tympan memb NOS +C0206504|T037|PT|384.20|ICD9CM|Perforation of tympanic membrane, unspecified|Perforation of tympanic membrane, unspecified +C0155464|T020|AB|384.21|ICD9CM|Cent perf tympanic memb|Cent perf tympanic memb +C0155464|T020|PT|384.21|ICD9CM|Central perforation of tympanic membrane|Central perforation of tympanic membrane +C0155465|T033|AB|384.22|ICD9CM|Attic perf tympanic memb|Attic perf tympanic memb +C0155465|T033|PT|384.22|ICD9CM|Attic perforation of tympanic membrane|Attic perforation of tympanic membrane +C0155466|T047|AB|384.23|ICD9CM|Marginal perf tymp NEC|Marginal perf tymp NEC +C0155466|T047|PT|384.23|ICD9CM|Other marginal perforation of tympanic membrane|Other marginal perforation of tympanic membrane +C0155467|T047|AB|384.24|ICD9CM|Mult perf tympanic memb|Mult perf tympanic memb +C0155467|T047|PT|384.24|ICD9CM|Multiple perforations of tympanic membrane|Multiple perforations of tympanic membrane +C0155468|T047|AB|384.25|ICD9CM|Total perf tympanic memb|Total perf tympanic memb +C0155468|T047|PT|384.25|ICD9CM|Total perforation of tympanic membrane|Total perforation of tympanic membrane +C0155469|T047|HT|384.8|ICD9CM|Other specified disorders of tympanic membrane|Other specified disorders of tympanic membrane +C0155470|T047|AB|384.81|ICD9CM|Atrophic flaccid tympan|Atrophic flaccid tympan +C0155470|T047|PT|384.81|ICD9CM|Atrophic flaccid tympanic membrane|Atrophic flaccid tympanic membrane +C0155471|T047|AB|384.82|ICD9CM|Atrophic nonflaccid tymp|Atrophic nonflaccid tymp +C0155471|T047|PT|384.82|ICD9CM|Atrophic nonflaccid tympanic membrane|Atrophic nonflaccid tympanic membrane +C0041825|T047|AB|384.9|ICD9CM|Dis tympanic memb NOS|Dis tympanic memb NOS +C0041825|T047|PT|384.9|ICD9CM|Unspecified disorder of tympanic membrane|Unspecified disorder of tympanic membrane +C0155472|T047|HT|385|ICD9CM|Other disorders of middle ear and mastoid|Other disorders of middle ear and mastoid +C0395887|T047|HT|385.0|ICD9CM|Tympanosclerosis|Tympanosclerosis +C0395887|T047|AB|385.00|ICD9CM|Tympanosclerosis NOS|Tympanosclerosis NOS +C0395887|T047|PT|385.00|ICD9CM|Tympanosclerosis, unspecified as to involvement|Tympanosclerosis, unspecified as to involvement +C0395888|T047|AB|385.01|ICD9CM|Tympanoscl-tympanic memb|Tympanoscl-tympanic memb +C0395888|T047|PT|385.01|ICD9CM|Tympanosclerosis involving tympanic membrane only|Tympanosclerosis involving tympanic membrane only +C0395889|T047|PT|385.02|ICD9CM|Tympanosclerosis involving tympanic membrane and ear ossicles|Tympanosclerosis involving tympanic membrane and ear ossicles +C0395889|T047|AB|385.02|ICD9CM|Tympnoscler-tymp/ossicle|Tympnoscler-tymp/ossicle +C0395890|T047|AB|385.03|ICD9CM|Tympanoscler-all parts|Tympanoscler-all parts +C0395890|T047|PT|385.03|ICD9CM|Tympanosclerosis involving tympanic membrane, ear ossicles, and middle ear|Tympanosclerosis involving tympanic membrane, ear ossicles, and middle ear +C0155477|T047|PT|385.09|ICD9CM|Tympanosclerosis involving other combination of structures|Tympanosclerosis involving other combination of structures +C0155477|T047|AB|385.09|ICD9CM|Tympnsclr-oth site comb|Tympnsclr-oth site comb +C0155478|T047|HT|385.1|ICD9CM|Adhesive middle ear disease|Adhesive middle ear disease +C0155478|T047|AB|385.10|ICD9CM|Adhesive mid ear dis NOS|Adhesive mid ear dis NOS +C0155478|T047|PT|385.10|ICD9CM|Adhesive middle ear disease, unspecified as to involvement|Adhesive middle ear disease, unspecified as to involvement +C0155480|T047|AB|385.11|ICD9CM|Adhesion tympanum-incus|Adhesion tympanum-incus +C0155480|T047|PT|385.11|ICD9CM|Adhesions of drum head to incus|Adhesions of drum head to incus +C0155481|T047|AB|385.12|ICD9CM|Adhesion tympanum-stapes|Adhesion tympanum-stapes +C0155481|T047|PT|385.12|ICD9CM|Adhesions of drum head to stapes|Adhesions of drum head to stapes +C0155482|T047|AB|385.13|ICD9CM|Adhesion tymp-promontor|Adhesion tymp-promontor +C0155482|T047|PT|385.13|ICD9CM|Adhesions of drum head to promontorium|Adhesions of drum head to promontorium +C0155483|T047|AB|385.19|ICD9CM|Adhesive mid ear dis NEC|Adhesive mid ear dis NEC +C0155483|T047|PT|385.19|ICD9CM|Other middle ear adhesions and combinations|Other middle ear adhesions and combinations +C0155484|T020|HT|385.2|ICD9CM|Other acquired abnormality of ear ossicles|Other acquired abnormality of ear ossicles +C0584793|T033|AB|385.21|ICD9CM|Ankylosis malleus|Ankylosis malleus +C0584793|T033|PT|385.21|ICD9CM|Impaired mobility of malleus|Impaired mobility of malleus +C0155486|T047|AB|385.22|ICD9CM|Ankylosis ear ossicl NEC|Ankylosis ear ossicl NEC +C0155486|T047|PT|385.22|ICD9CM|Impaired mobility of other ear ossicles|Impaired mobility of other ear ossicles +C0155487|T020|PT|385.23|ICD9CM|Discontinuity or dislocation of ear ossicles|Discontinuity or dislocation of ear ossicles +C0155487|T020|AB|385.23|ICD9CM|Dislocation ear ossicle|Dislocation ear ossicle +C0155488|T047|AB|385.24|ICD9CM|Partial loss ear ossicle|Partial loss ear ossicle +C0155488|T047|PT|385.24|ICD9CM|Partial loss or necrosis of ear ossicles|Partial loss or necrosis of ear ossicles +C0008374|T047|HT|385.3|ICD9CM|Cholesteatoma of middle ear and mastoid|Cholesteatoma of middle ear and mastoid +C0008373|T047|AB|385.30|ICD9CM|Cholesteatoma NOS|Cholesteatoma NOS +C0008373|T047|PT|385.30|ICD9CM|Cholesteatoma, unspecified|Cholesteatoma, unspecified +C0155489|T047|AB|385.31|ICD9CM|Cholesteatoma of attic|Cholesteatoma of attic +C0155489|T047|PT|385.31|ICD9CM|Cholesteatoma of attic|Cholesteatoma of attic +C0155490|T047|AB|385.32|ICD9CM|Cholesteatoma middle ear|Cholesteatoma middle ear +C0155490|T047|PT|385.32|ICD9CM|Cholesteatoma of middle ear|Cholesteatoma of middle ear +C0008374|T047|PT|385.33|ICD9CM|Cholesteatoma of middle ear and mastoid|Cholesteatoma of middle ear and mastoid +C0008374|T047|AB|385.33|ICD9CM|Cholestma mid ear/mstoid|Cholestma mid ear/mstoid +C0155491|T047|AB|385.35|ICD9CM|Diffuse cholesteatosis|Diffuse cholesteatosis +C0155491|T047|PT|385.35|ICD9CM|Diffuse cholesteatosis of middle ear and mastoid|Diffuse cholesteatosis of middle ear and mastoid +C0155472|T047|HT|385.8|ICD9CM|Other disorders of middle ear and mastoid|Other disorders of middle ear and mastoid +C0155492|T047|AB|385.82|ICD9CM|Cholesterin granuloma|Cholesterin granuloma +C0155492|T047|PT|385.82|ICD9CM|Cholesterin granuloma of middle ear and mastoid|Cholesterin granuloma of middle ear and mastoid +C0155493|T047|AB|385.83|ICD9CM|Foreign body middle ear|Foreign body middle ear +C0155493|T047|PT|385.83|ICD9CM|Retained foreign body of middle ear|Retained foreign body of middle ear +C0155472|T047|AB|385.89|ICD9CM|Dis mid ear/mastoid NEC|Dis mid ear/mastoid NEC +C0155472|T047|PT|385.89|ICD9CM|Other disorders of middle ear and mastoid|Other disorders of middle ear and mastoid +C0155494|T047|AB|385.9|ICD9CM|Dis mid ear/mastoid NOS|Dis mid ear/mastoid NOS +C0155494|T047|PT|385.9|ICD9CM|Unspecified disorder of middle ear and mastoid|Unspecified disorder of middle ear and mastoid +C0155523|T047|HT|386|ICD9CM|Vertiginous syndromes and other disorders of vestibular system|Vertiginous syndromes and other disorders of vestibular system +C0025281|T047|HT|386.0|ICD9CM|Meniere's disease|Meniere's disease +C0025281|T047|AB|386.00|ICD9CM|Meniere's disease NOS|Meniere's disease NOS +C0025281|T047|PT|386.00|ICD9CM|Ménière's disease, unspecified|Ménière's disease, unspecified +C0155496|T047|PT|386.01|ICD9CM|Active Ménière's disease, cochleovestibular|Active Ménière's disease, cochleovestibular +C0155496|T047|AB|386.01|ICD9CM|Actv Meniere,cochlvestib|Actv Meniere,cochlvestib +C0155497|T047|AB|386.02|ICD9CM|Active Meniere, cochlear|Active Meniere, cochlear +C0155497|T047|PT|386.02|ICD9CM|Active Ménière's disease, cochlear|Active Ménière's disease, cochlear +C0155498|T047|PT|386.03|ICD9CM|Active Ménière's disease, vestibular|Active Ménière's disease, vestibular +C0155498|T047|AB|386.03|ICD9CM|Actv Meniere, vestibular|Actv Meniere, vestibular +C0155499|T047|AB|386.04|ICD9CM|Inactive Meniere's dis|Inactive Meniere's dis +C0155499|T047|PT|386.04|ICD9CM|Inactive Ménière's disease|Inactive Ménière's disease +C0029706|T047|HT|386.1|ICD9CM|Other and unspecified peripheral vertigo|Other and unspecified peripheral vertigo +C0155501|T047|AB|386.10|ICD9CM|Peripheral vertigo NOS|Peripheral vertigo NOS +C0155501|T047|PT|386.10|ICD9CM|Peripheral vertigo, unspecified|Peripheral vertigo, unspecified +C0155502|T047|PT|386.11|ICD9CM|Benign paroxysmal positional vertigo|Benign paroxysmal positional vertigo +C0155502|T047|AB|386.11|ICD9CM|Benign parxysmal vertigo|Benign parxysmal vertigo +C0751908|T047|AB|386.12|ICD9CM|Vestibular neuronitis|Vestibular neuronitis +C0751908|T047|PT|386.12|ICD9CM|Vestibular neuronitis|Vestibular neuronitis +C0029706|T047|PT|386.19|ICD9CM|Other peripheral vertigo|Other peripheral vertigo +C0029706|T047|AB|386.19|ICD9CM|Peripheral vertigo NEC|Peripheral vertigo NEC +C0155503|T047|AB|386.2|ICD9CM|Central origin vertigo|Central origin vertigo +C0155503|T047|PT|386.2|ICD9CM|Vertigo of central origin|Vertigo of central origin +C0022893|T047|HT|386.3|ICD9CM|Labyrinthitis|Labyrinthitis +C0022893|T047|AB|386.30|ICD9CM|Labyrinthitis NOS|Labyrinthitis NOS +C0022893|T047|PT|386.30|ICD9CM|Labyrinthitis, unspecified|Labyrinthitis, unspecified +C0155504|T047|AB|386.31|ICD9CM|Serous labyrinthitis|Serous labyrinthitis +C0155504|T047|PT|386.31|ICD9CM|Serous labyrinthitis|Serous labyrinthitis +C0155505|T047|AB|386.32|ICD9CM|Circumscri labyrinthitis|Circumscri labyrinthitis +C0155505|T047|PT|386.32|ICD9CM|Circumscribed labyrinthitis|Circumscribed labyrinthitis +C0155506|T047|AB|386.33|ICD9CM|Suppurativ labyrinthitis|Suppurativ labyrinthitis +C0155506|T047|PT|386.33|ICD9CM|Suppurative labyrinthitis|Suppurative labyrinthitis +C0155507|T047|AB|386.34|ICD9CM|Toxic labyrinthitis|Toxic labyrinthitis +C0155507|T047|PT|386.34|ICD9CM|Toxic labyrinthitis|Toxic labyrinthitis +C0155508|T047|AB|386.35|ICD9CM|Viral labyrinthitis|Viral labyrinthitis +C0155508|T047|PT|386.35|ICD9CM|Viral labyrinthitis|Viral labyrinthitis +C0155509|T190|HT|386.4|ICD9CM|Labyrinthine fistula|Labyrinthine fistula +C0155509|T190|AB|386.40|ICD9CM|Labyrinthine fistula NOS|Labyrinthine fistula NOS +C0155509|T190|PT|386.40|ICD9CM|Labyrinthine fistula, unspecified|Labyrinthine fistula, unspecified +C0339781|T020|AB|386.41|ICD9CM|Round window fistula|Round window fistula +C0339781|T020|PT|386.41|ICD9CM|Round window fistula|Round window fistula +C0339782|T020|AB|386.42|ICD9CM|Oval window fistula|Oval window fistula +C0339782|T020|PT|386.42|ICD9CM|Oval window fistula|Oval window fistula +C0155512|T190|AB|386.43|ICD9CM|Semicircul canal fistula|Semicircul canal fistula +C0155512|T190|PT|386.43|ICD9CM|Semicircular canal fistula|Semicircular canal fistula +C0155513|T190|AB|386.48|ICD9CM|Labyrinth fistula comb|Labyrinth fistula comb +C0155513|T190|PT|386.48|ICD9CM|Labyrinthine fistula of combined sites|Labyrinthine fistula of combined sites +C0155514|T047|HT|386.5|ICD9CM|Labyrinthine dysfunction|Labyrinthine dysfunction +C0155514|T047|AB|386.50|ICD9CM|Labyrinthine dysfunc NOS|Labyrinthine dysfunc NOS +C0155514|T047|PT|386.50|ICD9CM|Labyrinthine dysfunction, unspecified|Labyrinthine dysfunction, unspecified +C0155515|T047|PT|386.51|ICD9CM|Hyperactive labyrinth, unilateral|Hyperactive labyrinth, unilateral +C0155515|T047|AB|386.51|ICD9CM|Hypract labyrinth unilat|Hypract labyrinth unilat +C0155516|T047|AB|386.52|ICD9CM|Hyperact labyrinth bilat|Hyperact labyrinth bilat +C0155516|T047|PT|386.52|ICD9CM|Hyperactive labyrinth, bilateral|Hyperactive labyrinth, bilateral +C0155517|T047|AB|386.53|ICD9CM|Hypoact labyrinth unilat|Hypoact labyrinth unilat +C0155517|T047|PT|386.53|ICD9CM|Hypoactive labyrinth, unilateral|Hypoactive labyrinth, unilateral +C0155518|T047|AB|386.54|ICD9CM|Hypoact labyrinth bilat|Hypoact labyrinth bilat +C0155518|T047|PT|386.54|ICD9CM|Hypoactive labyrinth, bilateral|Hypoactive labyrinth, bilateral +C0155519|T047|AB|386.55|ICD9CM|Loss labyrn react unilat|Loss labyrn react unilat +C0155519|T047|PT|386.55|ICD9CM|Loss of labyrinthine reactivity, unilateral|Loss of labyrinthine reactivity, unilateral +C0155520|T047|AB|386.56|ICD9CM|Loss labyrin react bilat|Loss labyrin react bilat +C0155520|T047|PT|386.56|ICD9CM|Loss of labyrinthine reactivity, bilateral|Loss of labyrinthine reactivity, bilateral +C0155521|T047|AB|386.58|ICD9CM|Labyrinthine dysfunc NEC|Labyrinthine dysfunc NEC +C0155521|T047|PT|386.58|ICD9CM|Other forms and combinations of labyrinthine dysfunction|Other forms and combinations of labyrinthine dysfunction +C0155522|T047|AB|386.8|ICD9CM|Disorders labyrinth NEC|Disorders labyrinth NEC +C0155522|T047|PT|386.8|ICD9CM|Other disorders of labyrinth|Other disorders of labyrinth +C0155523|T047|PT|386.9|ICD9CM|Unspecified vertiginous syndromes and labyrinthine disorders|Unspecified vertiginous syndromes and labyrinthine disorders +C0155523|T047|AB|386.9|ICD9CM|Vertiginous synd NOS|Vertiginous synd NOS +C0029899|T047|HT|387|ICD9CM|Otosclerosis|Otosclerosis +C0155524|T047|AB|387.0|ICD9CM|Otoscler-oval wnd nonobl|Otoscler-oval wnd nonobl +C0155524|T047|PT|387.0|ICD9CM|Otosclerosis involving oval window, nonobliterative|Otosclerosis involving oval window, nonobliterative +C0155525|T047|AB|387.1|ICD9CM|Otoscler-oval wndw oblit|Otoscler-oval wndw oblit +C0155525|T047|PT|387.1|ICD9CM|Otosclerosis involving oval window, obliterative|Otosclerosis involving oval window, obliterative +C0155526|T020|AB|387.2|ICD9CM|Cochlear otosclerosis|Cochlear otosclerosis +C0155526|T020|PT|387.2|ICD9CM|Cochlear otosclerosis|Cochlear otosclerosis +C0029696|T047|PT|387.8|ICD9CM|Other otosclerosis|Other otosclerosis +C0029696|T047|AB|387.8|ICD9CM|Otosclerosis NEC|Otosclerosis NEC +C0029899|T047|AB|387.9|ICD9CM|Otosclerosis NOS|Otosclerosis NOS +C0029899|T047|PT|387.9|ICD9CM|Otosclerosis, unspecified|Otosclerosis, unspecified +C0155527|T047|HT|388|ICD9CM|Other disorders of ear|Other disorders of ear +C0155528|T047|HT|388.0|ICD9CM|Degenerative and vascular disorders of ear|Degenerative and vascular disorders of ear +C0155528|T047|AB|388.00|ICD9CM|Degen/vascul dis ear NOS|Degen/vascul dis ear NOS +C0155528|T047|PT|388.00|ICD9CM|Degenerative and vascular disorders, unspecified|Degenerative and vascular disorders, unspecified +C0033074|T046|AB|388.01|ICD9CM|Presbyacusis|Presbyacusis +C0033074|T046|PT|388.01|ICD9CM|Presbyacusis|Presbyacusis +C0155530|T046|AB|388.02|ICD9CM|Trans ischemic deafness|Trans ischemic deafness +C0155530|T046|PT|388.02|ICD9CM|Transient ischemic deafness|Transient ischemic deafness +C0155531|T037|HT|388.1|ICD9CM|Noise effects on inner ear|Noise effects on inner ear +C0155531|T037|AB|388.10|ICD9CM|Noise effect-ear/NOS|Noise effect-ear/NOS +C0155531|T037|PT|388.10|ICD9CM|Noise effects on inner ear, unspecified|Noise effects on inner ear, unspecified +C0155532|T037|AB|388.11|ICD9CM|Acoustic trauma|Acoustic trauma +C0155532|T037|PT|388.11|ICD9CM|Acoustic trauma (explosive) to ear|Acoustic trauma (explosive) to ear +C0018781|T037|AB|388.12|ICD9CM|Hearing loss d/t noise|Hearing loss d/t noise +C0018781|T037|PT|388.12|ICD9CM|Noise-induced hearing loss|Noise-induced hearing loss +C0011057|T033|AB|388.2|ICD9CM|Sudden hearing loss NOS|Sudden hearing loss NOS +C0011057|T033|PT|388.2|ICD9CM|Sudden hearing loss, unspecified|Sudden hearing loss, unspecified +C0040264|T047|HT|388.3|ICD9CM|Tinnitus|Tinnitus +C0040264|T047|AB|388.30|ICD9CM|Tinnitus NOS|Tinnitus NOS +C0040264|T047|PT|388.30|ICD9CM|Tinnitus, unspecified|Tinnitus, unspecified +C0155533|T184|AB|388.31|ICD9CM|Subjective tinnitus|Subjective tinnitus +C0155533|T184|PT|388.31|ICD9CM|Subjective tinnitus|Subjective tinnitus +C0155534|T184|AB|388.32|ICD9CM|Objective tinnitus|Objective tinnitus +C0155534|T184|PT|388.32|ICD9CM|Objective tinnitus|Objective tinnitus +C0155535|T033|HT|388.4|ICD9CM|Other abnormal auditory perception|Other abnormal auditory perception +C0375257|T046|AB|388.40|ICD9CM|Abn auditory percept NOS|Abn auditory percept NOS +C0375257|T046|PT|388.40|ICD9CM|Abnormal auditory perception, unspecified|Abnormal auditory perception, unspecified +C0152228|T184|AB|388.41|ICD9CM|Diplacusis|Diplacusis +C0152228|T184|PT|388.41|ICD9CM|Diplacusis|Diplacusis +C0034880|T184|AB|388.42|ICD9CM|Hyperacusis|Hyperacusis +C0034880|T184|PT|388.42|ICD9CM|Hyperacusis|Hyperacusis +C0155537|T047|AB|388.43|ICD9CM|Impairm auditory discrim|Impairm auditory discrim +C0155537|T047|PT|388.43|ICD9CM|Impairment of auditory discrimination|Impairment of auditory discrimination +C0271510|T047|AB|388.44|ICD9CM|Auditory recruitment|Auditory recruitment +C0271510|T047|PT|388.44|ICD9CM|Auditory recruitment|Auditory recruitment +C1955771|T047|AB|388.45|ICD9CM|Acq auditory process dis|Acq auditory process dis +C1955771|T047|PT|388.45|ICD9CM|Acquired auditory processing disorder|Acquired auditory processing disorder +C0001163|T047|AB|388.5|ICD9CM|Acoustic nerve disorders|Acoustic nerve disorders +C0001163|T047|PT|388.5|ICD9CM|Disorders of acoustic nerve|Disorders of acoustic nerve +C0155540|T033|HT|388.6|ICD9CM|Otorrhea|Otorrhea +C0155540|T033|AB|388.60|ICD9CM|Otorrhea NOS|Otorrhea NOS +C0155540|T033|PT|388.60|ICD9CM|Otorrhea, unspecified|Otorrhea, unspecified +C0007814|T047|AB|388.61|ICD9CM|Cerebrosp fluid otorrhea|Cerebrosp fluid otorrhea +C0007814|T047|PT|388.61|ICD9CM|Cerebrospinal fluid otorrhea|Cerebrospinal fluid otorrhea +C0155541|T047|PT|388.69|ICD9CM|Other otorrhea|Other otorrhea +C0155541|T047|AB|388.69|ICD9CM|Otorrhea NEC|Otorrhea NEC +C0013456|T184|HT|388.7|ICD9CM|Otalgia|Otalgia +C0013456|T184|AB|388.70|ICD9CM|Otalgia NOS|Otalgia NOS +C0013456|T184|PT|388.70|ICD9CM|Otalgia, unspecified|Otalgia, unspecified +C0155542|T184|AB|388.71|ICD9CM|Otogenic pain|Otogenic pain +C0155542|T184|PT|388.71|ICD9CM|Otogenic pain|Otogenic pain +C0271411|T184|PT|388.72|ICD9CM|Referred otogenic pain|Referred otogenic pain +C0271411|T184|AB|388.72|ICD9CM|Referred pain of ear|Referred pain of ear +C0155527|T047|AB|388.8|ICD9CM|Disorders of ear NEC|Disorders of ear NEC +C0155527|T047|PT|388.8|ICD9CM|Other disorders of ear|Other disorders of ear +C0013447|T047|AB|388.9|ICD9CM|Disorder of ear NOS|Disorder of ear NOS +C0013447|T047|PT|388.9|ICD9CM|Unspecified disorder of ear|Unspecified disorder of ear +C1384666|T047|HT|389|ICD9CM|Hearing loss|Hearing loss +C0018777|T047|HT|389.0|ICD9CM|Conductive hearing loss|Conductive hearing loss +C0018777|T047|AB|389.00|ICD9CM|Conduct hearing loss NOS|Conduct hearing loss NOS +C0018777|T047|PT|389.00|ICD9CM|Conductive hearing loss, unspecified|Conductive hearing loss, unspecified +C0155544|T047|AB|389.01|ICD9CM|Conduc hear loss ext ear|Conduc hear loss ext ear +C0155544|T047|PT|389.01|ICD9CM|Conductive hearing loss, external ear|Conductive hearing loss, external ear +C0155545|T047|AB|389.02|ICD9CM|Conduct hear loss tympan|Conduct hear loss tympan +C0155545|T047|PT|389.02|ICD9CM|Conductive hearing loss, tympanic membrane|Conductive hearing loss, tympanic membrane +C0155546|T047|AB|389.03|ICD9CM|Conduc hear loss mid ear|Conduc hear loss mid ear +C0155546|T047|PT|389.03|ICD9CM|Conductive hearing loss, middle ear|Conductive hearing loss, middle ear +C0155547|T047|AB|389.04|ICD9CM|Cond hear loss inner ear|Cond hear loss inner ear +C0155547|T047|PT|389.04|ICD9CM|Conductive hearing loss, inner ear|Conductive hearing loss, inner ear +C1955772|T047|AB|389.05|ICD9CM|Condctv hear loss,unilat|Condctv hear loss,unilat +C1955772|T047|PT|389.05|ICD9CM|Conductive hearing loss, unilateral|Conductive hearing loss, unilateral +C0452136|T047|AB|389.06|ICD9CM|Condctv hear loss, bilat|Condctv hear loss, bilat +C0452136|T047|PT|389.06|ICD9CM|Conductive hearing loss, bilateral|Conductive hearing loss, bilateral +C0155548|T047|AB|389.08|ICD9CM|Cond hear loss comb type|Cond hear loss comb type +C0155548|T047|PT|389.08|ICD9CM|Conductive hearing loss of combined types|Conductive hearing loss of combined types +C0018784|T047|HT|389.1|ICD9CM|Sensorineural hearing loss|Sensorineural hearing loss +C0018784|T047|PT|389.10|ICD9CM|Sensorineural hearing loss, unspecified|Sensorineural hearing loss, unspecified +C0018784|T047|AB|389.10|ICD9CM|Sensorneur hear loss NOS|Sensorneur hear loss NOS +C1719452|T047|PT|389.11|ICD9CM|Sensory hearing loss, bilateral|Sensory hearing loss, bilateral +C1719452|T047|AB|389.11|ICD9CM|Sensry hearng loss,bilat|Sensry hearng loss,bilat +C2315695|T047|PT|389.12|ICD9CM|Neural hearing loss, bilateral|Neural hearing loss, bilateral +C2315695|T047|AB|389.12|ICD9CM|Neural hearng loss,bilat|Neural hearng loss,bilat +C1955773|T047|AB|389.13|ICD9CM|Neural hear loss, unilat|Neural hear loss, unilat +C1955773|T047|PT|389.13|ICD9CM|Neural hearing loss, unilateral|Neural hearing loss, unilateral +C0018776|T047|AB|389.14|ICD9CM|Central hearing loss|Central hearing loss +C0018776|T047|PT|389.14|ICD9CM|Central hearing loss|Central hearing loss +C0744667|T033|PT|389.15|ICD9CM|Sensorineural hearing loss, unilateral|Sensorineural hearing loss, unilateral +C0744667|T033|AB|389.15|ICD9CM|Sensorneur hear loss uni|Sensorneur hear loss uni +C1719455|T047|AB|389.16|ICD9CM|Sensoneur hear loss asym|Sensoneur hear loss asym +C1719455|T047|PT|389.16|ICD9CM|Sensorineural hearing loss, asymmetrical|Sensorineural hearing loss, asymmetrical +C1955774|T047|AB|389.17|ICD9CM|Sensory hear loss,unilat|Sensory hear loss,unilat +C1955774|T047|PT|389.17|ICD9CM|Sensory hearing loss, unilateral|Sensory hearing loss, unilateral +C0452138|T047|AB|389.18|ICD9CM|Sensonrl hear loss,bilat|Sensonrl hear loss,bilat +C0452138|T047|PT|389.18|ICD9CM|Sensorineural hearing loss, bilateral|Sensorineural hearing loss, bilateral +C0155552|T047|HT|389.2|ICD9CM|Mixed conductive and sensorineural hearing loss|Mixed conductive and sensorineural hearing loss +C0155552|T047|AB|389.20|ICD9CM|Mixed hearing loss NOS|Mixed hearing loss NOS +C0155552|T047|PT|389.20|ICD9CM|Mixed hearing loss, unspecified|Mixed hearing loss, unspecified +C1955775|T047|PT|389.21|ICD9CM|Mixed hearing loss, unilateral|Mixed hearing loss, unilateral +C1955775|T047|AB|389.21|ICD9CM|Mixed hearing loss,unilt|Mixed hearing loss,unilt +C0452153|T047|PT|389.22|ICD9CM|Mixed hearing loss, bilateral|Mixed hearing loss, bilateral +C0452153|T047|AB|389.22|ICD9CM|Mixed hearing loss,bilat|Mixed hearing loss,bilat +C1955777|T047|AB|389.7|ICD9CM|Deaf, nonspeaking NEC|Deaf, nonspeaking NEC +C1955777|T047|PT|389.7|ICD9CM|Deaf, nonspeaking, not elsewhere classifiable|Deaf, nonspeaking, not elsewhere classifiable +C0477458|T047|AB|389.8|ICD9CM|Hearing loss NEC|Hearing loss NEC +C0477458|T047|PT|389.8|ICD9CM|Other specified forms of hearing loss|Other specified forms of hearing loss +C1384666|T047|AB|389.9|ICD9CM|Hearing loss NOS|Hearing loss NOS +C1384666|T047|PT|389.9|ICD9CM|Unspecified hearing loss|Unspecified hearing loss +C0264743|T047|AB|390|ICD9CM|Rheum fev w/o hrt involv|Rheum fev w/o hrt involv +C0264743|T047|PT|390|ICD9CM|Rheumatic fever without mention of heart involvement|Rheumatic fever without mention of heart involvement +C0035436|T047|HT|390-392.99|ICD9CM|ACUTE RHEUMATIC FEVER|ACUTE RHEUMATIC FEVER +C0728936|T047|HT|390-459.99|ICD9CM|DISEASES OF THE CIRCULATORY SYSTEM|DISEASES OF THE CIRCULATORY SYSTEM +C3536892|T047|HT|391|ICD9CM|Rheumatic fever with heart involvement|Rheumatic fever with heart involvement +C0155555|T047|AB|391.0|ICD9CM|Acute rheumatic pericard|Acute rheumatic pericard +C0155555|T047|PT|391.0|ICD9CM|Acute rheumatic pericarditis|Acute rheumatic pericarditis +C0155556|T047|AB|391.1|ICD9CM|Acute rheumatic endocard|Acute rheumatic endocard +C0155556|T047|PT|391.1|ICD9CM|Acute rheumatic endocarditis|Acute rheumatic endocarditis +C0155557|T047|AB|391.2|ICD9CM|Ac rheumatic myocarditis|Ac rheumatic myocarditis +C0155557|T047|PT|391.2|ICD9CM|Acute rheumatic myocarditis|Acute rheumatic myocarditis +C0155558|T047|AB|391.8|ICD9CM|Ac rheumat hrt dis NEC|Ac rheumat hrt dis NEC +C0155558|T047|PT|391.8|ICD9CM|Other acute rheumatic heart disease|Other acute rheumatic heart disease +C0035440|T047|AB|391.9|ICD9CM|Ac rheumat hrt dis NOS|Ac rheumat hrt dis NOS +C0035440|T047|PT|391.9|ICD9CM|Acute rheumatic heart disease, unspecified|Acute rheumatic heart disease, unspecified +C0152113|T047|HT|392|ICD9CM|Rheumatic chorea|Rheumatic chorea +C0155559|T047|AB|392.0|ICD9CM|Rheum chorea w hrt invol|Rheum chorea w hrt invol +C0155559|T047|PT|392.0|ICD9CM|Rheumatic chorea with heart involvement|Rheumatic chorea with heart involvement +C0489958|T047|AB|392.9|ICD9CM|Rheumatic chorea NOS|Rheumatic chorea NOS +C0489958|T047|PT|392.9|ICD9CM|Rheumatic chorea without mention of heart involvement|Rheumatic chorea without mention of heart involvement +C0155561|T047|AB|393|ICD9CM|Chr rheumatic pericard|Chr rheumatic pericard +C0155561|T047|PT|393|ICD9CM|Chronic rheumatic pericarditis|Chronic rheumatic pericarditis +C0175708|T047|HT|393-398.99|ICD9CM|CHRONIC RHEUMATIC HEART DISEASE|CHRONIC RHEUMATIC HEART DISEASE +C0264765|T047|HT|394|ICD9CM|Diseases of mitral valve|Diseases of mitral valve +C0264766|T047|AB|394.0|ICD9CM|Mitral stenosis|Mitral stenosis +C0264766|T047|PT|394.0|ICD9CM|Mitral stenosis|Mitral stenosis +C0155563|T047|AB|394.1|ICD9CM|Rheumatic mitral insuff|Rheumatic mitral insuff +C0155563|T047|PT|394.1|ICD9CM|Rheumatic mitral insufficiency|Rheumatic mitral insufficiency +C0264767|T047|AB|394.2|ICD9CM|Mitral stenosis w insuff|Mitral stenosis w insuff +C0264767|T047|PT|394.2|ICD9CM|Mitral stenosis with insufficiency|Mitral stenosis with insufficiency +C0348579|T047|AB|394.9|ICD9CM|Mitral valve dis NEC/NOS|Mitral valve dis NEC/NOS +C0348579|T047|PT|394.9|ICD9CM|Other and unspecified mitral valve diseases|Other and unspecified mitral valve diseases +C1260873|T047|HT|395|ICD9CM|Diseases of aortic valve|Diseases of aortic valve +C0155567|T047|AB|395.0|ICD9CM|Rheumat aortic stenosis|Rheumat aortic stenosis +C0155567|T047|PT|395.0|ICD9CM|Rheumatic aortic stenosis|Rheumatic aortic stenosis +C0155568|T047|AB|395.1|ICD9CM|Rheumatic aortic insuff|Rheumatic aortic insuff +C0155568|T047|PT|395.1|ICD9CM|Rheumatic aortic insufficiency|Rheumatic aortic insufficiency +C0155569|T047|AB|395.2|ICD9CM|Rheum aortic sten/insuff|Rheum aortic sten/insuff +C0155569|T047|PT|395.2|ICD9CM|Rheumatic aortic stenosis with insufficiency|Rheumatic aortic stenosis with insufficiency +C0155570|T047|PT|395.9|ICD9CM|Other and unspecified rheumatic aortic diseases|Other and unspecified rheumatic aortic diseases +C0155570|T047|AB|395.9|ICD9CM|Rheum aortic dis NEC/NOS|Rheum aortic dis NEC/NOS +C0375259|T047|HT|396|ICD9CM|Diseases of mitral and aortic valves|Diseases of mitral and aortic valves +C0155572|T047|PT|396.0|ICD9CM|Mitral valve stenosis and aortic valve stenosis|Mitral valve stenosis and aortic valve stenosis +C0155572|T047|AB|396.0|ICD9CM|Mitral/aortic stenosis|Mitral/aortic stenosis +C0264772|T047|AB|396.1|ICD9CM|Mitral stenos/aort insuf|Mitral stenos/aort insuf +C0264772|T047|PT|396.1|ICD9CM|Mitral valve stenosis and aortic valve insufficiency|Mitral valve stenosis and aortic valve insufficiency +C1306822|T047|AB|396.2|ICD9CM|Mitral insuf/aort stenos|Mitral insuf/aort stenos +C1306822|T047|PT|396.2|ICD9CM|Mitral valve insufficiency and aortic valve stenosis|Mitral valve insufficiency and aortic valve stenosis +C0264774|T047|PT|396.3|ICD9CM|Mitral valve insufficiency and aortic valve insufficiency|Mitral valve insufficiency and aortic valve insufficiency +C0264774|T047|AB|396.3|ICD9CM|Mitral/aortic val insuff|Mitral/aortic val insuff +C0155576|T047|AB|396.8|ICD9CM|Mitr/aortic mult involv|Mitr/aortic mult involv +C0155576|T047|PT|396.8|ICD9CM|Multiple involvement of mitral and aortic valves|Multiple involvement of mitral and aortic valves +C0375259|T047|PT|396.9|ICD9CM|Mitral and aortic valve diseases, unspecified|Mitral and aortic valve diseases, unspecified +C0375259|T047|AB|396.9|ICD9CM|Mitral/aortic v dis NOS|Mitral/aortic v dis NOS +C0155578|T047|HT|397|ICD9CM|Diseases of other endocardial structures|Diseases of other endocardial structures +C0264776|T047|PT|397.0|ICD9CM|Diseases of tricuspid valve|Diseases of tricuspid valve +C0264776|T047|AB|397.0|ICD9CM|Tricuspid valve disease|Tricuspid valve disease +C0155579|T047|AB|397.1|ICD9CM|Rheum pulmon valve dis|Rheum pulmon valve dis +C0155579|T047|PT|397.1|ICD9CM|Rheumatic diseases of pulmonary valve|Rheumatic diseases of pulmonary valve +C0264764|T047|AB|397.9|ICD9CM|Rheum endocarditis NOS|Rheum endocarditis NOS +C0264764|T047|PT|397.9|ICD9CM|Rheumatic diseases of endocardium, valve unspecified|Rheumatic diseases of endocardium, valve unspecified +C0029730|T047|HT|398|ICD9CM|Other rheumatic heart disease|Other rheumatic heart disease +C0489959|T020|AB|398.0|ICD9CM|Rheumatic myocarditis|Rheumatic myocarditis +C0489959|T020|PT|398.0|ICD9CM|Rheumatic myocarditis|Rheumatic myocarditis +C0029730|T047|HT|398.9|ICD9CM|Other and unspecified rheumatic heart diseases|Other and unspecified rheumatic heart diseases +C0035439|T047|AB|398.90|ICD9CM|Rheumatic heart dis NOS|Rheumatic heart dis NOS +C0035439|T047|PT|398.90|ICD9CM|Rheumatic heart disease, unspecified|Rheumatic heart disease, unspecified +C0155582|T047|AB|398.91|ICD9CM|Rheumatic heart failure|Rheumatic heart failure +C0155582|T047|PT|398.91|ICD9CM|Rheumatic heart failure (congestive)|Rheumatic heart failure (congestive) +C0029730|T047|PT|398.99|ICD9CM|Other rheumatic heart diseases|Other rheumatic heart diseases +C0029730|T047|AB|398.99|ICD9CM|Rheumatic heart dis NEC|Rheumatic heart dis NEC +C0085580|T047|HT|401|ICD9CM|Essential hypertension|Essential hypertension +C0020538|T047|HT|401-405.99|ICD9CM|HYPERTENSIVE DISEASE|HYPERTENSIVE DISEASE +C0024588|T047|PT|401.0|ICD9CM|Malignant essential hypertension|Malignant essential hypertension +C0024588|T047|AB|401.0|ICD9CM|Malignant hypertension|Malignant hypertension +C0155583|T047|PT|401.1|ICD9CM|Benign essential hypertension|Benign essential hypertension +C0155583|T047|AB|401.1|ICD9CM|Benign hypertension|Benign hypertension +C0085580|T047|AB|401.9|ICD9CM|Hypertension NOS|Hypertension NOS +C0085580|T047|PT|401.9|ICD9CM|Unspecified essential hypertension|Unspecified essential hypertension +C0152105|T047|HT|402|ICD9CM|Hypertensive heart disease|Hypertensive heart disease +C0155584|T047|HT|402.0|ICD9CM|Malignant hypertensive heart disease|Malignant hypertensive heart disease +C1135328|T047|AB|402.00|ICD9CM|Mal hyp ht dis w/o hf|Mal hyp ht dis w/o hf +C1135328|T047|PT|402.00|ICD9CM|Malignant hypertensive heart disease without heart failure|Malignant hypertensive heart disease without heart failure +C1135329|T047|AB|402.01|ICD9CM|Mal hypert hrt dis w hf|Mal hypert hrt dis w hf +C1135329|T047|PT|402.01|ICD9CM|Malignant hypertensive heart disease with heart failure|Malignant hypertensive heart disease with heart failure +C0155587|T047|HT|402.1|ICD9CM|Benign hypertensive heart disease|Benign hypertensive heart disease +C1135330|T047|AB|402.10|ICD9CM|Benign hyp ht dis w/o hf|Benign hyp ht dis w/o hf +C1135330|T047|PT|402.10|ICD9CM|Benign hypertensive heart disease without heart failure|Benign hypertensive heart disease without heart failure +C1135331|T047|AB|402.11|ICD9CM|Benign hyp ht dis w hf|Benign hyp ht dis w hf +C1135331|T047|PT|402.11|ICD9CM|Benign hypertensive heart disease with heart failure|Benign hypertensive heart disease with heart failure +C0152105|T047|HT|402.9|ICD9CM|Unspecified hypertensive heart disease|Unspecified hypertensive heart disease +C1135332|T047|AB|402.90|ICD9CM|Hyp hrt dis NOS w/o hf|Hyp hrt dis NOS w/o hf +C1135332|T047|PT|402.90|ICD9CM|Unspecified hypertensive heart disease without heart failure|Unspecified hypertensive heart disease without heart failure +C1135333|T047|AB|402.91|ICD9CM|Hyp ht dis NOS w ht fail|Hyp ht dis NOS w ht fail +C1135333|T047|PT|402.91|ICD9CM|Unspecified hypertensive heart disease with heart failure|Unspecified hypertensive heart disease with heart failure +C3695318|T047|HT|403|ICD9CM|Hypertensive chronic kidney disease|Hypertensive chronic kidney disease +C1719462|T047|HT|403.0|ICD9CM|Hypertensive chronic kidney disease, malignant|Hypertensive chronic kidney disease, malignant +C1719460|T047|AB|403.00|ICD9CM|Mal hy kid w cr kid I-IV|Mal hy kid w cr kid I-IV +C1719461|T047|AB|403.01|ICD9CM|Mal hyp kid w cr kid V|Mal hyp kid w cr kid V +C0155596|T047|HT|403.1|ICD9CM|Hypertensive renal disease, benign|Hypertensive renal disease, benign +C0155596|T047|AB|403.10|ICD9CM|Ben hy kid w cr kid I-IV|Ben hy kid w cr kid I-IV +C0155598|T047|AB|403.11|ICD9CM|Ben hyp kid w cr kid V|Ben hyp kid w cr kid V +C0848548|T047|HT|403.9|ICD9CM|Hypertensive renal disease, unspecified|Hypertensive renal disease, unspecified +C0494574|T047|AB|403.90|ICD9CM|Hy kid NOS w cr kid I-IV|Hy kid NOS w cr kid I-IV +C0348860|T047|AB|403.91|ICD9CM|Hyp kid NOS w cr kid V|Hyp kid NOS w cr kid V +C1719469|T047|HT|404|ICD9CM|Hypertensive heart and chronic kidney disease|Hypertensive heart and chronic kidney disease +C1719468|T047|HT|404.0|ICD9CM|Hypertensive heart and chronic kidney disease, malignant|Hypertensive heart and chronic kidney disease, malignant +C1719464|T047|AB|404.00|ICD9CM|Mal hy ht/kd I-IV w/o hf|Mal hy ht/kd I-IV w/o hf +C1719465|T047|AB|404.01|ICD9CM|Mal hyp ht/kd I-IV w hf|Mal hyp ht/kd I-IV w hf +C1719466|T047|AB|404.02|ICD9CM|Mal hy ht/kd st V w/o hf|Mal hy ht/kd st V w/o hf +C1719467|T047|AB|404.03|ICD9CM|Mal hyp ht/kd stg V w hf|Mal hyp ht/kd stg V w hf +C0155607|T047|HT|404.1|ICD9CM|Hypertensive heart and renal disease, benign|Hypertensive heart and renal disease, benign +C0155608|T047|AB|404.10|ICD9CM|Ben hy ht/kd I-IV w/o hf|Ben hy ht/kd I-IV w/o hf +C0155609|T047|AB|404.11|ICD9CM|Ben hyp ht/kd I-IV w hf|Ben hyp ht/kd I-IV w hf +C0155610|T047|AB|404.12|ICD9CM|Ben hy ht/kd st V w/o hf|Ben hy ht/kd st V w/o hf +C0155611|T047|AB|404.13|ICD9CM|Ben hyp ht/kd stg V w hf|Ben hyp ht/kd stg V w hf +C0155601|T047|HT|404.9|ICD9CM|Hypertensive heart and renal disease, unspecified|Hypertensive heart and renal disease, unspecified +C0155612|T047|AB|404.90|ICD9CM|Hy ht/kd NOS I-IV w/o hf|Hy ht/kd NOS I-IV w/o hf +C3665458|T047|AB|404.91|ICD9CM|Hyp ht/kd NOS I-IV w hf|Hyp ht/kd NOS I-IV w hf +C0348879|T047|AB|404.92|ICD9CM|Hy ht/kd NOS st V w/o hf|Hy ht/kd NOS st V w/o hf +C0494576|T047|AB|404.93|ICD9CM|Hyp ht/kd NOS st V w hf|Hyp ht/kd NOS st V w hf +C0155616|T047|HT|405|ICD9CM|Secondary hypertension|Secondary hypertension +C0155617|T047|HT|405.0|ICD9CM|Malignant secondary hypertension|Malignant secondary hypertension +C0264643|T047|AB|405.01|ICD9CM|Mal renovasc hypertens|Mal renovasc hypertens +C0264643|T047|PT|405.01|ICD9CM|Malignant renovascular hypertension|Malignant renovascular hypertension +C0155619|T047|AB|405.09|ICD9CM|Mal second hyperten NEC|Mal second hyperten NEC +C0155619|T047|PT|405.09|ICD9CM|Other malignant secondary hypertension|Other malignant secondary hypertension +C0155620|T047|HT|405.1|ICD9CM|Benign secondary hypertension|Benign secondary hypertension +C0155621|T047|AB|405.11|ICD9CM|Benign renovasc hyperten|Benign renovasc hyperten +C0155621|T047|PT|405.11|ICD9CM|Benign renovascular hypertension|Benign renovascular hypertension +C0155622|T047|AB|405.19|ICD9CM|Benign second hypert NEC|Benign second hypert NEC +C0155622|T047|PT|405.19|ICD9CM|Other benign secondary hypertension|Other benign secondary hypertension +C0155616|T047|HT|405.9|ICD9CM|Unspecified secondary hypertension|Unspecified secondary hypertension +C0155624|T047|AB|405.91|ICD9CM|Renovasc hypertension|Renovasc hypertension +C0155624|T047|PT|405.91|ICD9CM|Unspecified renovascular hypertension|Unspecified renovascular hypertension +C0348586|T047|PT|405.99|ICD9CM|Other unspecified secondary hypertension|Other unspecified secondary hypertension +C0348586|T047|AB|405.99|ICD9CM|Second hypertension NEC|Second hypertension NEC +C0155626|T047|HT|410|ICD9CM|Acute myocardial infarction|Acute myocardial infarction +C0151744|T047|HT|410-414.99|ICD9CM|ISCHEMIC HEART DISEASE|ISCHEMIC HEART DISEASE +C0155627|T047|HT|410.0|ICD9CM|Acute myocardial infarction, of anterolateral wall|Acute myocardial infarction, of anterolateral wall +C0155628|T047|PT|410.00|ICD9CM|Acute myocardial infarction of anterolateral wall, episode of care unspecified|Acute myocardial infarction of anterolateral wall, episode of care unspecified +C0155628|T047|AB|410.00|ICD9CM|AMI anterolateral,unspec|AMI anterolateral,unspec +C0155629|T047|PT|410.01|ICD9CM|Acute myocardial infarction of anterolateral wall, initial episode of care|Acute myocardial infarction of anterolateral wall, initial episode of care +C0155629|T047|AB|410.01|ICD9CM|AMI anterolateral, init|AMI anterolateral, init +C0155630|T047|PT|410.02|ICD9CM|Acute myocardial infarction of anterolateral wall, subsequent episode of care|Acute myocardial infarction of anterolateral wall, subsequent episode of care +C0155630|T047|AB|410.02|ICD9CM|AMI anterolateral,subseq|AMI anterolateral,subseq +C0155631|T047|HT|410.1|ICD9CM|Acute myocardial infarction, of other anterior wall|Acute myocardial infarction, of other anterior wall +C0155632|T047|PT|410.10|ICD9CM|Acute myocardial infarction of other anterior wall, episode of care unspecified|Acute myocardial infarction of other anterior wall, episode of care unspecified +C0155632|T047|AB|410.10|ICD9CM|AMI anterior wall,unspec|AMI anterior wall,unspec +C0155633|T047|PT|410.11|ICD9CM|Acute myocardial infarction of other anterior wall, initial episode of care|Acute myocardial infarction of other anterior wall, initial episode of care +C0155633|T047|AB|410.11|ICD9CM|AMI anterior wall, init|AMI anterior wall, init +C0155634|T047|PT|410.12|ICD9CM|Acute myocardial infarction of other anterior wall, subsequent episode of care|Acute myocardial infarction of other anterior wall, subsequent episode of care +C0155634|T047|AB|410.12|ICD9CM|AMI anterior wall,subseq|AMI anterior wall,subseq +C0340308|T047|HT|410.2|ICD9CM|Acute myocardial infarction, of inferolateral wall|Acute myocardial infarction, of inferolateral wall +C0155636|T047|PT|410.20|ICD9CM|Acute myocardial infarction of inferolateral wall, episode of care unspecified|Acute myocardial infarction of inferolateral wall, episode of care unspecified +C0155636|T047|AB|410.20|ICD9CM|AMI inferolateral,unspec|AMI inferolateral,unspec +C0155637|T047|PT|410.21|ICD9CM|Acute myocardial infarction of inferolateral wall, initial episode of care|Acute myocardial infarction of inferolateral wall, initial episode of care +C0155637|T047|AB|410.21|ICD9CM|AMI inferolateral, init|AMI inferolateral, init +C0155638|T047|PT|410.22|ICD9CM|Acute myocardial infarction of inferolateral wall, subsequent episode of care|Acute myocardial infarction of inferolateral wall, subsequent episode of care +C0155638|T047|AB|410.22|ICD9CM|AMI inferolateral,subseq|AMI inferolateral,subseq +C0340304|T047|HT|410.3|ICD9CM|Acute myocardial infarction, of inferoposterior wall|Acute myocardial infarction, of inferoposterior wall +C0155640|T047|PT|410.30|ICD9CM|Acute myocardial infarction of inferoposterior wall, episode of care unspecified|Acute myocardial infarction of inferoposterior wall, episode of care unspecified +C0155640|T047|AB|410.30|ICD9CM|AMI inferopost, unspec|AMI inferopost, unspec +C0155641|T047|PT|410.31|ICD9CM|Acute myocardial infarction of inferoposterior wall, initial episode of care|Acute myocardial infarction of inferoposterior wall, initial episode of care +C0155641|T047|AB|410.31|ICD9CM|AMI inferopost, initial|AMI inferopost, initial +C0155642|T047|PT|410.32|ICD9CM|Acute myocardial infarction of inferoposterior wall, subsequent episode of care|Acute myocardial infarction of inferoposterior wall, subsequent episode of care +C0155642|T047|AB|410.32|ICD9CM|AMI inferopost, subseq|AMI inferopost, subseq +C0155643|T047|HT|410.4|ICD9CM|Acute myocardial infarction, of other inferior wall|Acute myocardial infarction, of other inferior wall +C0155644|T047|PT|410.40|ICD9CM|Acute myocardial infarction of other inferior wall, episode of care unspecified|Acute myocardial infarction of other inferior wall, episode of care unspecified +C0155644|T047|AB|410.40|ICD9CM|AMI inferior wall,unspec|AMI inferior wall,unspec +C0155645|T047|PT|410.41|ICD9CM|Acute myocardial infarction of other inferior wall, initial episode of care|Acute myocardial infarction of other inferior wall, initial episode of care +C0155645|T047|AB|410.41|ICD9CM|AMI inferior wall, init|AMI inferior wall, init +C0155646|T047|PT|410.42|ICD9CM|Acute myocardial infarction of other inferior wall, subsequent episode of care|Acute myocardial infarction of other inferior wall, subsequent episode of care +C0155646|T047|AB|410.42|ICD9CM|AMI inferior wall,subseq|AMI inferior wall,subseq +C0155647|T047|HT|410.5|ICD9CM|Acute myocardial infarction, of other lateral wall|Acute myocardial infarction, of other lateral wall +C0155648|T047|PT|410.50|ICD9CM|Acute myocardial infarction of other lateral wall, episode of care unspecified|Acute myocardial infarction of other lateral wall, episode of care unspecified +C0155648|T047|AB|410.50|ICD9CM|AMI lateral NEC, unspec|AMI lateral NEC, unspec +C0155649|T047|PT|410.51|ICD9CM|Acute myocardial infarction of other lateral wall, initial episode of care|Acute myocardial infarction of other lateral wall, initial episode of care +C0155649|T047|AB|410.51|ICD9CM|AMI lateral NEC, initial|AMI lateral NEC, initial +C0155650|T047|PT|410.52|ICD9CM|Acute myocardial infarction of other lateral wall, subsequent episode of care|Acute myocardial infarction of other lateral wall, subsequent episode of care +C0155650|T047|AB|410.52|ICD9CM|AMI lateral NEC, subseq|AMI lateral NEC, subseq +C0264706|T047|HT|410.6|ICD9CM|Acute myocardial infarction, true posterior wall infarction|Acute myocardial infarction, true posterior wall infarction +C0155652|T047|AB|410.60|ICD9CM|True post infarct,unspec|True post infarct,unspec +C0155652|T047|PT|410.60|ICD9CM|True posterior wall infarction, episode of care unspecified|True posterior wall infarction, episode of care unspecified +C0155653|T047|AB|410.61|ICD9CM|True post infarct, init|True post infarct, init +C0155653|T047|PT|410.61|ICD9CM|True posterior wall infarction, initial episode of care|True posterior wall infarction, initial episode of care +C0155654|T047|AB|410.62|ICD9CM|True post infarct,subseq|True post infarct,subseq +C0155654|T047|PT|410.62|ICD9CM|True posterior wall infarction, subsequent episode of care|True posterior wall infarction, subsequent episode of care +C0155655|T047|HT|410.7|ICD9CM|Acute myocardial infarction, subendocardial infarction|Acute myocardial infarction, subendocardial infarction +C0494580|T047|AB|410.70|ICD9CM|Subendo infarct, unspec|Subendo infarct, unspec +C0494580|T047|PT|410.70|ICD9CM|Subendocardial infarction, episode of care unspecified|Subendocardial infarction, episode of care unspecified +C0155657|T047|AB|410.71|ICD9CM|Subendo infarct, initial|Subendo infarct, initial +C0155657|T047|PT|410.71|ICD9CM|Subendocardial infarction, initial episode of care|Subendocardial infarction, initial episode of care +C0155658|T047|AB|410.72|ICD9CM|Subendo infarct, subseq|Subendo infarct, subseq +C0155658|T047|PT|410.72|ICD9CM|Subendocardial infarction, subsequent episode of care|Subendocardial infarction, subsequent episode of care +C0155659|T047|HT|410.8|ICD9CM|Acute myocardial infarction, of other specified sites|Acute myocardial infarction, of other specified sites +C0155660|T047|PT|410.80|ICD9CM|Acute myocardial infarction of other specified sites, episode of care unspecified|Acute myocardial infarction of other specified sites, episode of care unspecified +C0155660|T047|AB|410.80|ICD9CM|AMI NEC, unspecified|AMI NEC, unspecified +C0155661|T047|PT|410.81|ICD9CM|Acute myocardial infarction of other specified sites, initial episode of care|Acute myocardial infarction of other specified sites, initial episode of care +C0155661|T047|AB|410.81|ICD9CM|AMI NEC, initial|AMI NEC, initial +C0155662|T047|PT|410.82|ICD9CM|Acute myocardial infarction of other specified sites, subsequent episode of care|Acute myocardial infarction of other specified sites, subsequent episode of care +C0155662|T047|AB|410.82|ICD9CM|AMI NEC, subsequent|AMI NEC, subsequent +C0155626|T047|HT|410.9|ICD9CM|Acute myocardial infarction, unspecified site|Acute myocardial infarction, unspecified site +C0155626|T047|PT|410.90|ICD9CM|Acute myocardial infarction of unspecified site, episode of care unspecified|Acute myocardial infarction of unspecified site, episode of care unspecified +C0155626|T047|AB|410.90|ICD9CM|AMI NOS, unspecified|AMI NOS, unspecified +C0155664|T047|PT|410.91|ICD9CM|Acute myocardial infarction of unspecified site, initial episode of care|Acute myocardial infarction of unspecified site, initial episode of care +C0155664|T047|AB|410.91|ICD9CM|AMI NOS, initial|AMI NOS, initial +C0155665|T047|PT|410.92|ICD9CM|Acute myocardial infarction of unspecified site, subsequent episode of care|Acute myocardial infarction of unspecified site, subsequent episode of care +C0155665|T047|AB|410.92|ICD9CM|AMI NOS, subsequent|AMI NOS, subsequent +C0340283|T047|HT|411|ICD9CM|Other acute and subacute forms of ischemic heart disease|Other acute and subacute forms of ischemic heart disease +C0152107|T047|AB|411.0|ICD9CM|Post MI syndrome|Post MI syndrome +C0152107|T047|PT|411.0|ICD9CM|Postmyocardial infarction syndrome|Postmyocardial infarction syndrome +C0002965|T047|AB|411.1|ICD9CM|Intermed coronary synd|Intermed coronary synd +C0002965|T047|PT|411.1|ICD9CM|Intermediate coronary syndrome|Intermediate coronary syndrome +C0340283|T047|HT|411.8|ICD9CM|Other acute and subacute forms of ischemic heart disease|Other acute and subacute forms of ischemic heart disease +C0949167|T047|AB|411.81|ICD9CM|Acute cor occlsn w/o MI|Acute cor occlsn w/o MI +C0949167|T047|PT|411.81|ICD9CM|Acute coronary occlusion without myocardial infarction|Acute coronary occlusion without myocardial infarction +C0340283|T047|AB|411.89|ICD9CM|Ac ischemic hrt dis NEC|Ac ischemic hrt dis NEC +C0340283|T047|PT|411.89|ICD9CM|Other acute and subacute forms of ischemic heart disease, other|Other acute and subacute forms of ischemic heart disease, other +C0155668|T047|AB|412|ICD9CM|Old myocardial infarct|Old myocardial infarct +C0155668|T047|PT|412|ICD9CM|Old myocardial infarction|Old myocardial infarction +C0002962|T184|HT|413|ICD9CM|Angina pectoris|Angina pectoris +C0152172|T047|AB|413.0|ICD9CM|Angina decubitus|Angina decubitus +C0152172|T047|PT|413.0|ICD9CM|Angina decubitus|Angina decubitus +C0002963|T047|AB|413.1|ICD9CM|Prinzmetal angina|Prinzmetal angina +C0002963|T047|PT|413.1|ICD9CM|Prinzmetal angina|Prinzmetal angina +C0348588|T184|AB|413.9|ICD9CM|Angina pectoris NEC/NOS|Angina pectoris NEC/NOS +C0348588|T184|PT|413.9|ICD9CM|Other and unspecified angina pectoris|Other and unspecified angina pectoris +C0155669|T047|HT|414|ICD9CM|Other forms of chronic ischemic heart disease|Other forms of chronic ischemic heart disease +C0010054|T047|HT|414.0|ICD9CM|Coronary atherosclerosis|Coronary atherosclerosis +C0837133|T047|AB|414.00|ICD9CM|Cor ath unsp vsl ntv/gft|Cor ath unsp vsl ntv/gft +C0837133|T047|PT|414.00|ICD9CM|Coronary atherosclerosis of unspecified type of vessel, native or graft|Coronary atherosclerosis of unspecified type of vessel, native or graft +C0837134|T047|PT|414.01|ICD9CM|Coronary atherosclerosis of native coronary artery|Coronary atherosclerosis of native coronary artery +C0837134|T047|AB|414.01|ICD9CM|Crnry athrscl natve vssl|Crnry athrscl natve vssl +C0837135|T047|PT|414.02|ICD9CM|Coronary atherosclerosis of autologous vein bypass graft|Coronary atherosclerosis of autologous vein bypass graft +C0837135|T047|AB|414.02|ICD9CM|Crn ath atlg vn bps grft|Crn ath atlg vn bps grft +C0837136|T047|PT|414.03|ICD9CM|Coronary atherosclerosis of nonautologous biological bypass graft|Coronary atherosclerosis of nonautologous biological bypass graft +C0837136|T047|AB|414.03|ICD9CM|Crn ath nonatlg blg grft|Crn ath nonatlg blg grft +C0375264|T047|AB|414.04|ICD9CM|Cor ath artry bypas grft|Cor ath artry bypas grft +C0375264|T047|PT|414.04|ICD9CM|Coronary atherosclerosis of artery bypass graft|Coronary atherosclerosis of artery bypass graft +C0375265|T047|AB|414.05|ICD9CM|Cor ath bypass graft NOS|Cor ath bypass graft NOS +C0375265|T047|PT|414.05|ICD9CM|Coronary atherosclerosis of unspecified bypass graft|Coronary atherosclerosis of unspecified bypass graft +C1135190|T047|AB|414.06|ICD9CM|Cor ath natv art tp hrt|Cor ath natv art tp hrt +C1135190|T047|PT|414.06|ICD9CM|Coronary atherosclerosis of native coronary artery of transplanted heart|Coronary atherosclerosis of native coronary artery of transplanted heart +C1456095|T047|AB|414.07|ICD9CM|Cor ath bps graft tp hrt|Cor ath bps graft tp hrt +C1456095|T047|PT|414.07|ICD9CM|Coronary atherosclerosis of bypass graft (artery) (vein) of transplanted heart|Coronary atherosclerosis of bypass graft (artery) (vein) of transplanted heart +C1135334|T047|HT|414.1|ICD9CM|Aneurysm and dissection of heart|Aneurysm and dissection of heart +C1541919|T047|AB|414.10|ICD9CM|Aneurysm of heart|Aneurysm of heart +C1541919|T047|PT|414.10|ICD9CM|Aneurysm of heart (wall)|Aneurysm of heart (wall) +C0010051|T047|AB|414.11|ICD9CM|Aneurysm coronary vessel|Aneurysm coronary vessel +C0010051|T047|PT|414.11|ICD9CM|Aneurysm of coronary vessels|Aneurysm of coronary vessels +C0340648|T047|AB|414.12|ICD9CM|Dissection cor artery|Dissection cor artery +C0340648|T047|PT|414.12|ICD9CM|Dissection of coronary artery|Dissection of coronary artery +C0029519|T047|AB|414.19|ICD9CM|Aneurysm of heart NEC|Aneurysm of heart NEC +C0029519|T047|PT|414.19|ICD9CM|Other aneurysm of heart|Other aneurysm of heart +C1955779|T047|AB|414.2|ICD9CM|Chr tot occlus cor artry|Chr tot occlus cor artry +C1955779|T047|PT|414.2|ICD9CM|Chronic total occlusion of coronary artery|Chronic total occlusion of coronary artery +C2349509|T047|AB|414.3|ICD9CM|Cor ath d/t lpd rch plaq|Cor ath d/t lpd rch plaq +C2349509|T047|PT|414.3|ICD9CM|Coronary atherosclerosis due to lipid rich plaque|Coronary atherosclerosis due to lipid rich plaque +C3161090|T047|AB|414.4|ICD9CM|Cor ath d/t calc cor lsn|Cor ath d/t calc cor lsn +C3161090|T047|PT|414.4|ICD9CM|Coronary atherosclerosis due to calcified coronary lesion|Coronary atherosclerosis due to calcified coronary lesion +C0155670|T047|AB|414.8|ICD9CM|Chr ischemic hrt dis NEC|Chr ischemic hrt dis NEC +C0155670|T047|PT|414.8|ICD9CM|Other specified forms of chronic ischemic heart disease|Other specified forms of chronic ischemic heart disease +C0264694|T047|AB|414.9|ICD9CM|Chr ischemic hrt dis NOS|Chr ischemic hrt dis NOS +C0264694|T047|PT|414.9|ICD9CM|Chronic ischemic heart disease, unspecified|Chronic ischemic heart disease, unspecified +C0155671|T047|HT|415|ICD9CM|Acute pulmonary heart disease|Acute pulmonary heart disease +C0178272|T047|HT|415-417.99|ICD9CM|DISEASES OF PULMONARY CIRCULATION|DISEASES OF PULMONARY CIRCULATION +C0155672|T047|AB|415.0|ICD9CM|Acute cor pulmonale|Acute cor pulmonale +C0155672|T047|PT|415.0|ICD9CM|Acute cor pulmonale|Acute cor pulmonale +C0034066|T047|HT|415.1|ICD9CM|Pulmonary embolism and infarction|Pulmonary embolism and infarction +C2711829|T047|AB|415.11|ICD9CM|Iatrogen pulm emb/infarc|Iatrogen pulm emb/infarc +C2711829|T047|PT|415.11|ICD9CM|Iatrogenic pulmonary embolism and infarction|Iatrogenic pulmonary embolism and infarction +C1955781|T046|PT|415.12|ICD9CM|Septic pulmonary embolism|Septic pulmonary embolism +C1955781|T046|AB|415.12|ICD9CM|Septic pulmonary embolsm|Septic pulmonary embolsm +C3161091|T047|AB|415.13|ICD9CM|Saddle embol pulmon art|Saddle embol pulmon art +C3161091|T047|PT|415.13|ICD9CM|Saddle embolus of pulmonary artery|Saddle embolus of pulmonary artery +C0375267|T047|PT|415.19|ICD9CM|Other pulmonary embolism and infarction|Other pulmonary embolism and infarction +C0375267|T047|AB|415.19|ICD9CM|Pulm embol/infarct NEC|Pulm embol/infarct NEC +C0238074|T047|HT|416|ICD9CM|Chronic pulmonary heart disease|Chronic pulmonary heart disease +C0152171|T047|AB|416.0|ICD9CM|Prim pulm hypertension|Prim pulm hypertension +C0152171|T047|PT|416.0|ICD9CM|Primary pulmonary hypertension|Primary pulmonary hypertension +C0152102|T047|AB|416.1|ICD9CM|Kyphoscoliotic heart dis|Kyphoscoliotic heart dis +C0152102|T047|PT|416.1|ICD9CM|Kyphoscoliotic heart disease|Kyphoscoliotic heart disease +C0856722|T046|AB|416.2|ICD9CM|Chr pulmonary embolism|Chr pulmonary embolism +C0856722|T046|PT|416.2|ICD9CM|Chronic pulmonary embolism|Chronic pulmonary embolism +C0155673|T047|AB|416.8|ICD9CM|Chr pulmon heart dis NEC|Chr pulmon heart dis NEC +C0155673|T047|PT|416.8|ICD9CM|Other chronic pulmonary heart diseases|Other chronic pulmonary heart diseases +C0238074|T047|AB|416.9|ICD9CM|Chr pulmon heart dis NOS|Chr pulmon heart dis NOS +C0238074|T047|PT|416.9|ICD9CM|Chronic pulmonary heart disease, unspecified|Chronic pulmonary heart disease, unspecified +C0155674|T047|HT|417|ICD9CM|Other diseases of pulmonary circulation|Other diseases of pulmonary circulation +C0155675|T047|AB|417.0|ICD9CM|Arterioven fistu pul ves|Arterioven fistu pul ves +C0155675|T047|PT|417.0|ICD9CM|Arteriovenous fistula of pulmonary vessels|Arteriovenous fistula of pulmonary vessels +C0155676|T046|PT|417.1|ICD9CM|Aneurysm of pulmonary artery|Aneurysm of pulmonary artery +C0155676|T046|AB|417.1|ICD9CM|Pulmon artery aneurysm|Pulmon artery aneurysm +C0155677|T047|PT|417.8|ICD9CM|Other specified diseases of pulmonary circulation|Other specified diseases of pulmonary circulation +C0155677|T047|AB|417.8|ICD9CM|Pulmon circulat dis NEC|Pulmon circulat dis NEC +C0178272|T047|AB|417.9|ICD9CM|Pulmon circulat dis NOS|Pulmon circulat dis NOS +C0178272|T047|PT|417.9|ICD9CM|Unspecified disease of pulmonary circulation|Unspecified disease of pulmonary circulation +C0155679|T047|HT|420|ICD9CM|Acute pericarditis|Acute pericarditis +C0178273|T047|HT|420-429.99|ICD9CM|OTHER FORMS OF HEART DISEASE|OTHER FORMS OF HEART DISEASE +C0340443|T047|AB|420.0|ICD9CM|Ac pericardit in oth dis|Ac pericardit in oth dis +C0340443|T047|PT|420.0|ICD9CM|Acute pericarditis in diseases classified elsewhere|Acute pericarditis in diseases classified elsewhere +C0155680|T047|HT|420.9|ICD9CM|Other and unspecified acute pericarditis|Other and unspecified acute pericarditis +C0155679|T047|AB|420.90|ICD9CM|Acute pericarditis NOS|Acute pericarditis NOS +C0155679|T047|PT|420.90|ICD9CM|Acute pericarditis, unspecified|Acute pericarditis, unspecified +C0155681|T047|AB|420.91|ICD9CM|Ac idiopath pericarditis|Ac idiopath pericarditis +C0155681|T047|PT|420.91|ICD9CM|Acute idiopathic pericarditis|Acute idiopathic pericarditis +C0348597|T047|AB|420.99|ICD9CM|Acute pericarditis NEC|Acute pericarditis NEC +C0348597|T047|PT|420.99|ICD9CM|Other acute pericarditis|Other acute pericarditis +C0155683|T047|HT|421|ICD9CM|Acute and subacute endocarditis|Acute and subacute endocarditis +C0553977|T047|AB|421.0|ICD9CM|Ac/subac bact endocard|Ac/subac bact endocard +C0553977|T047|PT|421.0|ICD9CM|Acute and subacute bacterial endocarditis|Acute and subacute bacterial endocarditis +C0340348|T047|AB|421.1|ICD9CM|Ac endocardit in oth dis|Ac endocardit in oth dis +C0340348|T047|PT|421.1|ICD9CM|Acute and subacute infective endocarditis in diseases classified elsewhere|Acute and subacute infective endocarditis in diseases classified elsewhere +C0375268|T047|AB|421.9|ICD9CM|Ac/subac endocardit NOS|Ac/subac endocardit NOS +C0375268|T047|PT|421.9|ICD9CM|Acute endocarditis, unspecified|Acute endocarditis, unspecified +C0155686|T047|HT|422|ICD9CM|Acute myocarditis|Acute myocarditis +C0155687|T047|AB|422.0|ICD9CM|Ac myocardit in oth dis|Ac myocardit in oth dis +C0155687|T047|PT|422.0|ICD9CM|Acute myocarditis in diseases classified elsewhere|Acute myocarditis in diseases classified elsewhere +C0155692|T047|HT|422.9|ICD9CM|Other and unspecified acute myocarditis|Other and unspecified acute myocarditis +C0155686|T047|AB|422.90|ICD9CM|Acute myocarditis NOS|Acute myocarditis NOS +C0155686|T047|PT|422.90|ICD9CM|Acute myocarditis, unspecified|Acute myocarditis, unspecified +C0155689|T047|AB|422.91|ICD9CM|Idiopathic myocarditis|Idiopathic myocarditis +C0155689|T047|PT|422.91|ICD9CM|Idiopathic myocarditis|Idiopathic myocarditis +C0155690|T047|AB|422.92|ICD9CM|Septic myocarditis|Septic myocarditis +C0155690|T047|PT|422.92|ICD9CM|Septic myocarditis|Septic myocarditis +C0155691|T047|AB|422.93|ICD9CM|Toxic myocarditis|Toxic myocarditis +C0155691|T047|PT|422.93|ICD9CM|Toxic myocarditis|Toxic myocarditis +C0155692|T047|AB|422.99|ICD9CM|Acute myocarditis NEC|Acute myocarditis NEC +C0155692|T047|PT|422.99|ICD9CM|Other acute myocarditis|Other acute myocarditis +C0340442|T047|HT|423|ICD9CM|Other diseases of pericardium|Other diseases of pericardium +C0019064|T046|AB|423.0|ICD9CM|Hemopericardium|Hemopericardium +C0019064|T046|PT|423.0|ICD9CM|Hemopericardium|Hemopericardium +C0152452|T047|AB|423.1|ICD9CM|Adhesive pericarditis|Adhesive pericarditis +C0152452|T047|PT|423.1|ICD9CM|Adhesive pericarditis|Adhesive pericarditis +C0031048|T047|AB|423.2|ICD9CM|Constrictiv pericarditis|Constrictiv pericarditis +C0031048|T047|PT|423.2|ICD9CM|Constrictive pericarditis|Constrictive pericarditis +C0007177|T047|PT|423.3|ICD9CM|Cardiac tamponade|Cardiac tamponade +C0007177|T047|AB|423.3|ICD9CM|Cardiac tamponade|Cardiac tamponade +C0155694|T047|PT|423.8|ICD9CM|Other specified diseases of pericardium|Other specified diseases of pericardium +C0155694|T047|AB|423.8|ICD9CM|Pericardial disease NEC|Pericardial disease NEC +C0265122|T047|AB|423.9|ICD9CM|Pericardial disease NOS|Pericardial disease NOS +C0265122|T047|PT|423.9|ICD9CM|Unspecified disease of pericardium|Unspecified disease of pericardium +C0155695|T047|HT|424|ICD9CM|Other diseases of endocardium|Other diseases of endocardium +C0026265|T047|AB|424.0|ICD9CM|Mitral valve disorder|Mitral valve disorder +C0026265|T047|PT|424.0|ICD9CM|Mitral valve disorders|Mitral valve disorders +C1260873|T047|AB|424.1|ICD9CM|Aortic valve disorder|Aortic valve disorder +C1260873|T047|PT|424.1|ICD9CM|Aortic valve disorders|Aortic valve disorders +C0701168|T047|AB|424.2|ICD9CM|Nonrheum tricusp val dis|Nonrheum tricusp val dis +C0701168|T047|PT|424.2|ICD9CM|Tricuspid valve disorders, specified as nonrheumatic|Tricuspid valve disorders, specified as nonrheumatic +C0034087|T047|AB|424.3|ICD9CM|Pulmonary valve disorder|Pulmonary valve disorder +C0034087|T047|PT|424.3|ICD9CM|Pulmonary valve disorders|Pulmonary valve disorders +C0264865|T047|HT|424.9|ICD9CM|Endocarditis, valve unspecified|Endocarditis, valve unspecified +C0264865|T047|AB|424.90|ICD9CM|Endocarditis NOS|Endocarditis NOS +C0264865|T047|PT|424.90|ICD9CM|Endocarditis, valve unspecified, unspecified cause|Endocarditis, valve unspecified, unspecified cause +C0340345|T047|PT|424.91|ICD9CM|Endocarditis in diseases classified elsewhere|Endocarditis in diseases classified elsewhere +C0340345|T047|AB|424.91|ICD9CM|Endocarditis in oth dis|Endocarditis in oth dis +C0029609|T047|AB|424.99|ICD9CM|Endocarditis NEC|Endocarditis NEC +C0029609|T047|PT|424.99|ICD9CM|Other endocarditis, valve unspecified|Other endocarditis, valve unspecified +C0878544|T047|HT|425|ICD9CM|Cardiomyopathy|Cardiomyopathy +C0553980|T046|AB|425.0|ICD9CM|Endomyocardial fibrosis|Endomyocardial fibrosis +C0553980|T046|PT|425.0|ICD9CM|Endomyocardial fibrosis|Endomyocardial fibrosis +C0007194|T047|HT|425.1|ICD9CM|Hypertrophic cardiomyopathy|Hypertrophic cardiomyopathy +C4551472|T047|PT|425.11|ICD9CM|Hypertrophic obstructive cardiomyopathy|Hypertrophic obstructive cardiomyopathy +C4551472|T047|AB|425.11|ICD9CM|Hyprtrophc obst cardiomy|Hyprtrophc obst cardiomy +C0348615|T047|AB|425.18|ICD9CM|Oth hyprtrophic cardiomy|Oth hyprtrophic cardiomy +C0348615|T047|PT|425.18|ICD9CM|Other hypertrophic cardiomyopathy|Other hypertrophic cardiomyopathy +C1959600|T047|AB|425.2|ICD9CM|Obsc afric cardiomyopath|Obsc afric cardiomyopath +C1959600|T047|PT|425.2|ICD9CM|Obscure cardiomyopathy of Africa|Obscure cardiomyopathy of Africa +C0014117|T047|AB|425.3|ICD9CM|Endocard fibroelastosis|Endocard fibroelastosis +C0014117|T047|PT|425.3|ICD9CM|Endocardial fibroelastosis|Endocardial fibroelastosis +C0340419|T047|PT|425.4|ICD9CM|Other primary cardiomyopathies|Other primary cardiomyopathies +C0340419|T047|AB|425.4|ICD9CM|Prim cardiomyopathy NEC|Prim cardiomyopathy NEC +C0007192|T047|AB|425.5|ICD9CM|Alcoholic cardiomyopathy|Alcoholic cardiomyopathy +C0007192|T047|PT|425.5|ICD9CM|Alcoholic cardiomyopathy|Alcoholic cardiomyopathy +C0340422|T047|AB|425.7|ICD9CM|Metabolic cardiomyopathy|Metabolic cardiomyopathy +C0340422|T047|PT|425.7|ICD9CM|Nutritional and metabolic cardiomyopathy|Nutritional and metabolic cardiomyopathy +C0155699|T047|AB|425.8|ICD9CM|Cardiomyopath in oth dis|Cardiomyopath in oth dis +C0155699|T047|PT|425.8|ICD9CM|Cardiomyopathy in other diseases classified elsewhere|Cardiomyopathy in other diseases classified elsewhere +C0036529|T047|AB|425.9|ICD9CM|Second cardiomyopath NOS|Second cardiomyopath NOS +C0036529|T047|PT|425.9|ICD9CM|Secondary cardiomyopathy, unspecified|Secondary cardiomyopathy, unspecified +C0264886|T047|HT|426|ICD9CM|Conduction disorders|Conduction disorders +C0151517|T047|AB|426.0|ICD9CM|Atriovent block complete|Atriovent block complete +C0151517|T047|PT|426.0|ICD9CM|Atrioventricular block, complete|Atrioventricular block, complete +C0348621|T046|HT|426.1|ICD9CM|Atrioventricular block, other and unspecified|Atrioventricular block, other and unspecified +C0004245|T047|AB|426.10|ICD9CM|Atriovent block NOS|Atriovent block NOS +C0004245|T047|PT|426.10|ICD9CM|Atrioventricular block, unspecified|Atrioventricular block, unspecified +C0085614|T047|AB|426.11|ICD9CM|Atriovent block-1st degr|Atriovent block-1st degr +C0085614|T047|PT|426.11|ICD9CM|First degree atrioventricular block|First degree atrioventricular block +C0155700|T047|AB|426.12|ICD9CM|Atrioven block-mobitz ii|Atrioven block-mobitz ii +C0155700|T047|PT|426.12|ICD9CM|Mobitz (type) II atrioventricular block|Mobitz (type) II atrioventricular block +C0549211|T047|AB|426.13|ICD9CM|Av block-2nd degree NEC|Av block-2nd degree NEC +C0549211|T047|PT|426.13|ICD9CM|Other second degree atrioventricular block|Other second degree atrioventricular block +C0155702|T047|AB|426.2|ICD9CM|Left bb hemiblock|Left bb hemiblock +C0155702|T047|PT|426.2|ICD9CM|Left bundle branch hemiblock|Left bundle branch hemiblock +C0155703|T047|AB|426.3|ICD9CM|Left bb block NEC|Left bb block NEC +C0155703|T047|PT|426.3|ICD9CM|Other left bundle branch block|Other left bundle branch block +C0085615|T047|PT|426.4|ICD9CM|Right bundle branch block|Right bundle branch block +C0085615|T047|AB|426.4|ICD9CM|Rt bundle branch block|Rt bundle branch block +C0677586|T046|HT|426.5|ICD9CM|Bundle branch block, other and unspecified|Bundle branch block, other and unspecified +C0006384|T047|AB|426.50|ICD9CM|Bundle branch block NOS|Bundle branch block NOS +C0006384|T047|PT|426.50|ICD9CM|Bundle branch block, unspecified|Bundle branch block, unspecified +C0155704|T047|PT|426.51|ICD9CM|Right bundle branch block and left posterior fascicular block|Right bundle branch block and left posterior fascicular block +C0155704|T047|AB|426.51|ICD9CM|Rt bbb/lft post fasc blk|Rt bbb/lft post fasc blk +C0155705|T047|PT|426.52|ICD9CM|Right bundle branch block and left anterior fascicular block|Right bundle branch block and left anterior fascicular block +C0155705|T047|AB|426.52|ICD9CM|Rt bbb/lft ant fasc blk|Rt bbb/lft ant fasc blk +C0155706|T046|AB|426.53|ICD9CM|Bilat bb block NEC|Bilat bb block NEC +C0155706|T046|PT|426.53|ICD9CM|Other bilateral bundle branch block|Other bilateral bundle branch block +C0155707|T047|AB|426.54|ICD9CM|Trifascicular block|Trifascicular block +C0155707|T047|PT|426.54|ICD9CM|Trifascicular block|Trifascicular block +C0029630|T046|AB|426.6|ICD9CM|Other heart block|Other heart block +C0029630|T046|PT|426.6|ICD9CM|Other heart block|Other heart block +C0392470|T047|PT|426.7|ICD9CM|Anomalous atrioventricular excitation|Anomalous atrioventricular excitation +C0392470|T047|AB|426.7|ICD9CM|Anomalous av excitation|Anomalous av excitation +C0155708|T046|HT|426.8|ICD9CM|Other specified conduction disorders|Other specified conduction disorders +C0024054|T047|AB|426.81|ICD9CM|Lown-ganong-levine synd|Lown-ganong-levine synd +C0024054|T047|PT|426.81|ICD9CM|Lown-Ganong-Levine syndrome|Lown-Ganong-Levine syndrome +C0023976|T047|AB|426.82|ICD9CM|Long QT syndrome|Long QT syndrome +C0023976|T047|PT|426.82|ICD9CM|Long QT syndrome|Long QT syndrome +C0155708|T046|AB|426.89|ICD9CM|Conduction disorder NEC|Conduction disorder NEC +C0155708|T046|PT|426.89|ICD9CM|Other specified conduction disorders|Other specified conduction disorders +C0264886|T047|AB|426.9|ICD9CM|Conduction disorder NOS|Conduction disorder NOS +C0264886|T047|PT|426.9|ICD9CM|Conduction disorder, unspecified|Conduction disorder, unspecified +C0003811|T047|HT|427|ICD9CM|Cardiac dysrhythmias|Cardiac dysrhythmias +C0030590|T047|AB|427.0|ICD9CM|Parox atrial tachycardia|Parox atrial tachycardia +C0030590|T047|PT|427.0|ICD9CM|Paroxysmal supraventricular tachycardia|Paroxysmal supraventricular tachycardia +C0030591|T047|AB|427.1|ICD9CM|Parox ventric tachycard|Parox ventric tachycard +C0030591|T047|PT|427.1|ICD9CM|Paroxysmal ventricular tachycardia|Paroxysmal ventricular tachycardia +C0039236|T047|AB|427.2|ICD9CM|Parox tachycardia NOS|Parox tachycardia NOS +C0039236|T047|PT|427.2|ICD9CM|Paroxysmal tachycardia, unspecified|Paroxysmal tachycardia, unspecified +C0155709|T046|HT|427.3|ICD9CM|Atrial fibrillation and flutter|Atrial fibrillation and flutter +C0004238|T047|AB|427.31|ICD9CM|Atrial fibrillation|Atrial fibrillation +C0004238|T047|PT|427.31|ICD9CM|Atrial fibrillation|Atrial fibrillation +C0004239|T046|AB|427.32|ICD9CM|Atrial flutter|Atrial flutter +C0004239|T046|PT|427.32|ICD9CM|Atrial flutter|Atrial flutter +C0155710|T046|HT|427.4|ICD9CM|Ventricular fibrillation and flutter|Ventricular fibrillation and flutter +C0042510|T047|AB|427.41|ICD9CM|Ventricular fibrillation|Ventricular fibrillation +C0042510|T047|PT|427.41|ICD9CM|Ventricular fibrillation|Ventricular fibrillation +C0152173|T047|AB|427.42|ICD9CM|Ventricular flutter|Ventricular flutter +C0152173|T047|PT|427.42|ICD9CM|Ventricular flutter|Ventricular flutter +C0018790|T047|AB|427.5|ICD9CM|Cardiac arrest|Cardiac arrest +C0018790|T047|PT|427.5|ICD9CM|Cardiac arrest|Cardiac arrest +C0340464|T047|HT|427.6|ICD9CM|Premature beats|Premature beats +C0340464|T047|AB|427.60|ICD9CM|Premature beats NOS|Premature beats NOS +C0340464|T047|PT|427.60|ICD9CM|Premature beats, unspecified|Premature beats, unspecified +C0033036|T047|AB|427.61|ICD9CM|Atrial premature beats|Atrial premature beats +C0033036|T047|PT|427.61|ICD9CM|Supraventricular premature beats|Supraventricular premature beats +C0029712|T046|PT|427.69|ICD9CM|Other premature beats|Other premature beats +C0029712|T046|AB|427.69|ICD9CM|Premature beats NEC|Premature beats NEC +C0348626|T047|HT|427.8|ICD9CM|Other specified cardiac dysrhythmias|Other specified cardiac dysrhythmias +C0428908|T047|AB|427.81|ICD9CM|Sinoatrial node dysfunct|Sinoatrial node dysfunct +C0428908|T047|PT|427.81|ICD9CM|Sinoatrial node dysfunction|Sinoatrial node dysfunction +C0348626|T047|AB|427.89|ICD9CM|Cardiac dysrhythmias NEC|Cardiac dysrhythmias NEC +C0348626|T047|PT|427.89|ICD9CM|Other specified cardiac dysrhythmias|Other specified cardiac dysrhythmias +C0003811|T047|AB|427.9|ICD9CM|Cardiac dysrhythmia NOS|Cardiac dysrhythmia NOS +C0003811|T047|PT|427.9|ICD9CM|Cardiac dysrhythmia, unspecified|Cardiac dysrhythmia, unspecified +C0018801|T047|HT|428|ICD9CM|Heart failure|Heart failure +C0018802|T047|AB|428.0|ICD9CM|CHF NOS|CHF NOS +C0018802|T047|PT|428.0|ICD9CM|Congestive heart failure, unspecified|Congestive heart failure, unspecified +C0023212|T047|AB|428.1|ICD9CM|Left heart failure|Left heart failure +C0023212|T047|PT|428.1|ICD9CM|Left heart failure|Left heart failure +C1135191|T047|HT|428.2|ICD9CM|Systolic heart failure|Systolic heart failure +C1135191|T047|PT|428.20|ICD9CM|Systolic heart failure, unspecified|Systolic heart failure, unspecified +C1135191|T047|AB|428.20|ICD9CM|Systolic hrt failure NOS|Systolic hrt failure NOS +C2732748|T047|AB|428.21|ICD9CM|Ac systolic hrt failure|Ac systolic hrt failure +C2732748|T047|PT|428.21|ICD9CM|Acute systolic heart failure|Acute systolic heart failure +C1135194|T047|AB|428.22|ICD9CM|Chr systolic hrt failure|Chr systolic hrt failure +C1135194|T047|PT|428.22|ICD9CM|Chronic systolic heart failure|Chronic systolic heart failure +C2733492|T047|AB|428.23|ICD9CM|Ac on chr syst hrt fail|Ac on chr syst hrt fail +C2733492|T047|PT|428.23|ICD9CM|Acute on chronic systolic heart failure|Acute on chronic systolic heart failure +C1135196|T047|HT|428.3|ICD9CM|Diastolic heart failure|Diastolic heart failure +C1135196|T047|AB|428.30|ICD9CM|Diastolc hrt failure NOS|Diastolc hrt failure NOS +C1135196|T047|PT|428.30|ICD9CM|Diastolic heart failure, unspecified|Diastolic heart failure, unspecified +C2732951|T047|AB|428.31|ICD9CM|Ac diastolic hrt failure|Ac diastolic hrt failure +C2732951|T047|PT|428.31|ICD9CM|Acute diastolic heart failure|Acute diastolic heart failure +C2711480|T047|AB|428.32|ICD9CM|Chr diastolic hrt fail|Chr diastolic hrt fail +C2711480|T047|PT|428.32|ICD9CM|Chronic diastolic heart failure|Chronic diastolic heart failure +C2732749|T047|AB|428.33|ICD9CM|Ac on chr diast hrt fail|Ac on chr diast hrt fail +C2732749|T047|PT|428.33|ICD9CM|Acute on chronic diastolic heart failure|Acute on chronic diastolic heart failure +C2882273|T047|HT|428.4|ICD9CM|Combined systolic and diastolic heart failure|Combined systolic and diastolic heart failure +C2882273|T047|PT|428.40|ICD9CM|Combined systolic and diastolic heart failure, unspecified|Combined systolic and diastolic heart failure, unspecified +C2882273|T047|AB|428.40|ICD9CM|Syst/diast hrt fail NOS|Syst/diast hrt fail NOS +C2882274|T047|AB|428.41|ICD9CM|Ac syst/diastol hrt fail|Ac syst/diastol hrt fail +C2882274|T047|PT|428.41|ICD9CM|Acute combined systolic and diastolic heart failure|Acute combined systolic and diastolic heart failure +C2882275|T047|AB|428.42|ICD9CM|Chr syst/diastl hrt fail|Chr syst/diastl hrt fail +C2882275|T047|PT|428.42|ICD9CM|Chronic combined systolic and diastolic heart failure|Chronic combined systolic and diastolic heart failure +C2882276|T047|AB|428.43|ICD9CM|Ac/chr syst/dia hrt fail|Ac/chr syst/dia hrt fail +C2882276|T047|PT|428.43|ICD9CM|Acute on chronic combined systolic and diastolic heart failure|Acute on chronic combined systolic and diastolic heart failure +C0018801|T047|AB|428.9|ICD9CM|Heart failure NOS|Heart failure NOS +C0018801|T047|PT|428.9|ICD9CM|Heart failure, unspecified|Heart failure, unspecified +C0155711|T046|HT|429|ICD9CM|Ill-defined descriptions and complications of heart disease|Ill-defined descriptions and complications of heart disease +C0027059|T047|AB|429.0|ICD9CM|Myocarditis NOS|Myocarditis NOS +C0027059|T047|PT|429.0|ICD9CM|Myocarditis, unspecified|Myocarditis, unspecified +C0027046|T046|AB|429.1|ICD9CM|Myocardial degeneration|Myocardial degeneration +C0027046|T046|PT|429.1|ICD9CM|Myocardial degeneration|Myocardial degeneration +C0007222|T047|AB|429.2|ICD9CM|Ascvd|Ascvd +C0007222|T047|PT|429.2|ICD9CM|Cardiovascular disease, unspecified|Cardiovascular disease, unspecified +C0018800|T033|AB|429.3|ICD9CM|Cardiomegaly|Cardiomegaly +C0018800|T033|PT|429.3|ICD9CM|Cardiomegaly|Cardiomegaly +C0016809|T046|PT|429.4|ICD9CM|Functional disturbances following cardiac surgery|Functional disturbances following cardiac surgery +C0016809|T046|AB|429.4|ICD9CM|Hrt dis postcardiac surg|Hrt dis postcardiac surg +C0155712|T046|AB|429.5|ICD9CM|Chordae tendinae rupture|Chordae tendinae rupture +C0155712|T046|PT|429.5|ICD9CM|Rupture of chordae tendineae|Rupture of chordae tendineae +C0155713|T046|AB|429.6|ICD9CM|Papillary muscle rupture|Papillary muscle rupture +C0155713|T046|PT|429.6|ICD9CM|Rupture of papillary muscle|Rupture of papillary muscle +C0302375|T047|HT|429.7|ICD9CM|Certain sequelae of myocardial infarction, not elsewhere classified|Certain sequelae of myocardial infarction, not elsewhere classified +C0376115|T047|AB|429.71|ICD9CM|Acq cardiac septl defect|Acq cardiac septl defect +C0376115|T047|PT|429.71|ICD9CM|Acquired cardiac septal defect|Acquired cardiac septal defect +C0302376|T047|PT|429.79|ICD9CM|Certain sequelae of myocardial infarction, not elsewhere classified, other|Certain sequelae of myocardial infarction, not elsewhere classified, other +C0302376|T047|AB|429.79|ICD9CM|Other sequelae of MI NEC|Other sequelae of MI NEC +C0155717|T047|HT|429.8|ICD9CM|Other ill-defined heart diseases|Other ill-defined heart diseases +C0155718|T047|PT|429.81|ICD9CM|Other disorders of papillary muscle|Other disorders of papillary muscle +C0155718|T047|AB|429.81|ICD9CM|Papillary muscle dis NEC|Papillary muscle dis NEC +C0242407|T047|AB|429.82|ICD9CM|Hyperkinetic heart dis|Hyperkinetic heart dis +C0242407|T047|PT|429.82|ICD9CM|Hyperkinetic heart disease|Hyperkinetic heart disease +C1739395|T047|PT|429.83|ICD9CM|Takotsubo syndrome|Takotsubo syndrome +C1739395|T047|AB|429.83|ICD9CM|Takotsubo syndrome|Takotsubo syndrome +C0155717|T047|AB|429.89|ICD9CM|Ill-defined hrt dis NEC|Ill-defined hrt dis NEC +C0155717|T047|PT|429.89|ICD9CM|Other ill-defined heart diseases|Other ill-defined heart diseases +C0018799|T047|AB|429.9|ICD9CM|Heart disease NOS|Heart disease NOS +C0018799|T047|PT|429.9|ICD9CM|Heart disease, unspecified|Heart disease, unspecified +C0038525|T047|AB|430|ICD9CM|Subarachnoid hemorrhage|Subarachnoid hemorrhage +C0038525|T047|PT|430|ICD9CM|Subarachnoid hemorrhage|Subarachnoid hemorrhage +C0007820|T047|HT|430-438.99|ICD9CM|CEREBROVASCULAR DISEASE|CEREBROVASCULAR DISEASE +C2937358|T046|AB|431|ICD9CM|Intracerebral hemorrhage|Intracerebral hemorrhage +C2937358|T046|PT|431|ICD9CM|Intracerebral hemorrhage|Intracerebral hemorrhage +C0155719|T046|HT|432|ICD9CM|Other and unspecified intracranial hemorrhage|Other and unspecified intracranial hemorrhage +C1318552|T047|AB|432.0|ICD9CM|Nontraum extradural hem|Nontraum extradural hem +C1318552|T047|PT|432.0|ICD9CM|Nontraumatic extradural hemorrhage|Nontraumatic extradural hemorrhage +C0018946|T046|AB|432.1|ICD9CM|Subdural hemorrhage|Subdural hemorrhage +C0018946|T046|PT|432.1|ICD9CM|Subdural hemorrhage|Subdural hemorrhage +C0151699|T046|AB|432.9|ICD9CM|Intracranial hemorr NOS|Intracranial hemorr NOS +C0151699|T046|PT|432.9|ICD9CM|Unspecified intracranial hemorrhage|Unspecified intracranial hemorrhage +C0155727|T047|HT|433|ICD9CM|Occlusion and stenosis of precerebral arteries|Occlusion and stenosis of precerebral arteries +C0265098|T190|HT|433.0|ICD9CM|Occlusion and stenosis of basilar artery|Occlusion and stenosis of basilar artery +C0375273|T047|PT|433.00|ICD9CM|Occlusion and stenosis of basilar artery without mention of cerebral infarction|Occlusion and stenosis of basilar artery without mention of cerebral infarction +C0375273|T047|AB|433.00|ICD9CM|Ocl bslr art wo infrct|Ocl bslr art wo infrct +C0375274|T047|PT|433.01|ICD9CM|Occlusion and stenosis of basilar artery with cerebral infarction|Occlusion and stenosis of basilar artery with cerebral infarction +C0375274|T047|AB|433.01|ICD9CM|Ocl bslr art w infrct|Ocl bslr art w infrct +C0600126|T046|HT|433.1|ICD9CM|Occlusion and stenosis of carotid artery|Occlusion and stenosis of carotid artery +C0375275|T047|PT|433.10|ICD9CM|Occlusion and stenosis of carotid artery without mention of cerebral infarction|Occlusion and stenosis of carotid artery without mention of cerebral infarction +C0375275|T047|AB|433.10|ICD9CM|Ocl crtd art wo infrct|Ocl crtd art wo infrct +C0375276|T047|PT|433.11|ICD9CM|Occlusion and stenosis of carotid artery with cerebral infarction|Occlusion and stenosis of carotid artery with cerebral infarction +C0375276|T047|AB|433.11|ICD9CM|Ocl crtd art w infrct|Ocl crtd art w infrct +C0155724|T046|HT|433.2|ICD9CM|Occlusion and stenosis of vertebral artery|Occlusion and stenosis of vertebral artery +C0375277|T047|PT|433.20|ICD9CM|Occlusion and stenosis of vertebral artery without mention of cerebral infarction|Occlusion and stenosis of vertebral artery without mention of cerebral infarction +C0375277|T047|AB|433.20|ICD9CM|Ocl vrtb art wo infrct|Ocl vrtb art wo infrct +C0375278|T047|PT|433.21|ICD9CM|Occlusion and stenosis of vertebral artery with cerebral infarction|Occlusion and stenosis of vertebral artery with cerebral infarction +C0375278|T047|AB|433.21|ICD9CM|Ocl vrtb art w infrct|Ocl vrtb art w infrct +C0155725|T047|HT|433.3|ICD9CM|Occlusion and stenosis of multiple and bilateral precerebral arteries|Occlusion and stenosis of multiple and bilateral precerebral arteries +C0375279|T047|AB|433.30|ICD9CM|Ocl mlt bi art wo infrct|Ocl mlt bi art wo infrct +C0375280|T047|PT|433.31|ICD9CM|Occlusion and stenosis of multiple and bilateral precerebral arteries with cerebral infarction|Occlusion and stenosis of multiple and bilateral precerebral arteries with cerebral infarction +C0375280|T047|AB|433.31|ICD9CM|Ocl mlt bi art w infrct|Ocl mlt bi art w infrct +C0155726|T047|HT|433.8|ICD9CM|Occlusion and stenosis of other specified precerebral artery|Occlusion and stenosis of other specified precerebral artery +C0375281|T047|PT|433.80|ICD9CM|Occlusion and stenosis of other specified precerebral artery without mention of cerebral infarction|Occlusion and stenosis of other specified precerebral artery without mention of cerebral infarction +C0375281|T047|AB|433.80|ICD9CM|Ocl spcf art wo infrct|Ocl spcf art wo infrct +C0375282|T047|PT|433.81|ICD9CM|Occlusion and stenosis of other specified precerebral artery with cerebral infarction|Occlusion and stenosis of other specified precerebral artery with cerebral infarction +C0375282|T047|AB|433.81|ICD9CM|Ocl spcf art w infrct|Ocl spcf art w infrct +C0155727|T047|HT|433.9|ICD9CM|Occlusion and stenosis of unspecified precerebral artery|Occlusion and stenosis of unspecified precerebral artery +C0375283|T047|PT|433.90|ICD9CM|Occlusion and stenosis of unspecified precerebral artery without mention of cerebral infarction|Occlusion and stenosis of unspecified precerebral artery without mention of cerebral infarction +C0375283|T047|AB|433.90|ICD9CM|Ocl art NOS wo infrct|Ocl art NOS wo infrct +C0375284|T047|PT|433.91|ICD9CM|Occlusion and stenosis of unspecified precerebral artery with cerebral infarction|Occlusion and stenosis of unspecified precerebral artery with cerebral infarction +C0375284|T047|AB|433.91|ICD9CM|Ocl art NOS w infrct|Ocl art NOS w infrct +C0028790|T020|HT|434|ICD9CM|Occlusion of cerebral arteries|Occlusion of cerebral arteries +C0079102|T047|HT|434.0|ICD9CM|Cerebral thrombosis|Cerebral thrombosis +C0375285|T047|PT|434.00|ICD9CM|Cerebral thrombosis without mention of cerebral infarction|Cerebral thrombosis without mention of cerebral infarction +C0375285|T047|AB|434.00|ICD9CM|Crbl thrmbs wo infrct|Crbl thrmbs wo infrct +C0375286|T047|PT|434.01|ICD9CM|Cerebral thrombosis with cerebral infarction|Cerebral thrombosis with cerebral infarction +C0375286|T047|AB|434.01|ICD9CM|Crbl thrmbs w infrct|Crbl thrmbs w infrct +C0007780|T047|HT|434.1|ICD9CM|Cerebral embolism|Cerebral embolism +C0375287|T047|PT|434.10|ICD9CM|Cerebral embolism without mention of cerebral infarction|Cerebral embolism without mention of cerebral infarction +C0375287|T047|AB|434.10|ICD9CM|Crbl emblsm wo infrct|Crbl emblsm wo infrct +C0375288|T047|PT|434.11|ICD9CM|Cerebral embolism with cerebral infarction|Cerebral embolism with cerebral infarction +C0375288|T047|AB|434.11|ICD9CM|Crbl emblsm w infrct|Crbl emblsm w infrct +C0028790|T020|HT|434.9|ICD9CM|Cerebral artery occlusion, unspecified|Cerebral artery occlusion, unspecified +C0375290|T047|PT|434.90|ICD9CM|Cerebral artery occlusion, unspecified without mention of cerebral infarction|Cerebral artery occlusion, unspecified without mention of cerebral infarction +C0375290|T047|AB|434.90|ICD9CM|Crbl art oc NOS wo infrc|Crbl art oc NOS wo infrc +C0375291|T047|PT|434.91|ICD9CM|Cerebral artery occlusion, unspecified with cerebral infarction|Cerebral artery occlusion, unspecified with cerebral infarction +C0375291|T047|AB|434.91|ICD9CM|Crbl art ocl NOS w infrc|Crbl art ocl NOS w infrc +C0917805|T047|HT|435|ICD9CM|Transient cerebral ischemia|Transient cerebral ischemia +C0004812|T047|AB|435.0|ICD9CM|Basilar artery syndrome|Basilar artery syndrome +C0004812|T047|PT|435.0|ICD9CM|Basilar artery syndrome|Basilar artery syndrome +C2931914|T047|AB|435.1|ICD9CM|Vertebral artery syndrom|Vertebral artery syndrom +C2931914|T047|PT|435.1|ICD9CM|Vertebral artery syndrome|Vertebral artery syndrome +C0038531|T047|AB|435.2|ICD9CM|Subclavian steal syndrom|Subclavian steal syndrom +C0038531|T047|PT|435.2|ICD9CM|Subclavian steal syndrome|Subclavian steal syndrome +C0042568|T047|AB|435.3|ICD9CM|Vertbrobaslr artery synd|Vertbrobaslr artery synd +C0042568|T047|PT|435.3|ICD9CM|Vertebrobasilar artery syndrome|Vertebrobasilar artery syndrome +C0155728|T047|PT|435.8|ICD9CM|Other specified transient cerebral ischemias|Other specified transient cerebral ischemias +C0155728|T047|AB|435.8|ICD9CM|Trans cereb ischemia NEC|Trans cereb ischemia NEC +C0917805|T047|AB|435.9|ICD9CM|Trans cereb ischemia NOS|Trans cereb ischemia NOS +C0917805|T047|PT|435.9|ICD9CM|Unspecified transient cerebral ischemia|Unspecified transient cerebral ischemia +C0001365|T047|PT|436|ICD9CM|Acute, but ill-defined, cerebrovascular disease|Acute, but ill-defined, cerebrovascular disease +C0001365|T047|AB|436|ICD9CM|Cva|Cva +C0155729|T047|HT|437|ICD9CM|Other and ill-defined cerebrovascular disease|Other and ill-defined cerebrovascular disease +C0007775|T047|AB|437.0|ICD9CM|Cerebral atherosclerosis|Cerebral atherosclerosis +C0007775|T047|PT|437.0|ICD9CM|Cerebral atherosclerosis|Cerebral atherosclerosis +C0029626|T047|AB|437.1|ICD9CM|Ac cerebrovasc insuf NOS|Ac cerebrovasc insuf NOS +C0029626|T047|PT|437.1|ICD9CM|Other generalized ischemic cerebrovascular disease|Other generalized ischemic cerebrovascular disease +C0151620|T047|AB|437.2|ICD9CM|Hypertens encephalopathy|Hypertens encephalopathy +C0151620|T047|PT|437.2|ICD9CM|Hypertensive encephalopathy|Hypertensive encephalopathy +C0155730|T190|PT|437.3|ICD9CM|Cerebral aneurysm, nonruptured|Cerebral aneurysm, nonruptured +C0155730|T190|AB|437.3|ICD9CM|Nonrupt cerebral aneurym|Nonrupt cerebral aneurym +C0007773|T047|AB|437.4|ICD9CM|Cerebral arteritis|Cerebral arteritis +C0007773|T047|PT|437.4|ICD9CM|Cerebral arteritis|Cerebral arteritis +C0026654|T047|AB|437.5|ICD9CM|Moyamoya disease|Moyamoya disease +C0026654|T047|PT|437.5|ICD9CM|Moyamoya disease|Moyamoya disease +C0155731|T047|AB|437.6|ICD9CM|Nonpyogen thrombos sinus|Nonpyogen thrombos sinus +C0155731|T047|PT|437.6|ICD9CM|Nonpyogenic thrombosis of intracranial venous sinus|Nonpyogenic thrombosis of intracranial venous sinus +C0338591|T048|AB|437.7|ICD9CM|Transient global amnesia|Transient global amnesia +C0338591|T048|PT|437.7|ICD9CM|Transient global amnesia|Transient global amnesia +C0155729|T047|AB|437.8|ICD9CM|Cerebrovasc disease NEC|Cerebrovasc disease NEC +C0155729|T047|PT|437.8|ICD9CM|Other ill-defined cerebrovascular disease|Other ill-defined cerebrovascular disease +C0007820|T047|AB|437.9|ICD9CM|Cerebrovasc disease NOS|Cerebrovasc disease NOS +C0007820|T047|PT|437.9|ICD9CM|Unspecified cerebrovascular disease|Unspecified cerebrovascular disease +C0155732|T046|HT|438|ICD9CM|Late effects of cerebrovascular disease|Late effects of cerebrovascular disease +C0489983|T046|AB|438.0|ICD9CM|Late ef CV dis-cognf def|Late ef CV dis-cognf def +C0489983|T046|PT|438.0|ICD9CM|Late effects of cerebrovascular disease, cognitive deficits|Late effects of cerebrovascular disease, cognitive deficits +C0489984|T046|HT|438.1|ICD9CM|Speech and language deficits as late effect of cerebrovascular disease|Speech and language deficits as late effect of cerebrovascular disease +C0489984|T046|AB|438.10|ICD9CM|Late ef-spch/lng def NOS|Late ef-spch/lng def NOS +C0489984|T046|PT|438.10|ICD9CM|Late effects of cerebrovascular disease, speech and language deficit, unspecified|Late effects of cerebrovascular disease, speech and language deficit, unspecified +C0489985|T046|AB|438.11|ICD9CM|Late eff CV dis-aphasia|Late eff CV dis-aphasia +C0489985|T046|PT|438.11|ICD9CM|Late effects of cerebrovascular disease, aphasia|Late effects of cerebrovascular disease, aphasia +C0489986|T046|AB|438.12|ICD9CM|Late eff CV dis-dysphsia|Late eff CV dis-dysphsia +C0489986|T046|PT|438.12|ICD9CM|Late effects of cerebrovascular disease, dysphasia|Late effects of cerebrovascular disease, dysphasia +C0013362|T048|AB|438.13|ICD9CM|Late eff CV-dysarthria|Late eff CV-dysarthria +C0013362|T048|PT|438.13|ICD9CM|Late effects of cerebrovascular disease, dysarthria|Late effects of cerebrovascular disease, dysarthria +C0454533|T047|AB|438.14|ICD9CM|Late eff CV-fluency dis|Late eff CV-fluency dis +C0454533|T047|PT|438.14|ICD9CM|Late effects of cerebrovascular disease, fluency disorder|Late effects of cerebrovascular disease, fluency disorder +C0489987|T047|AB|438.19|ICD9CM|Late ef-spch/lang df NEC|Late ef-spch/lang df NEC +C0489987|T047|PT|438.19|ICD9CM|Late effects of cerebrovascular disease, other speech and language deficits|Late effects of cerebrovascular disease, other speech and language deficits +C0489988|T047|HT|438.2|ICD9CM|Hemiplegia/hemiparesis as late effect of cerebrovascular disease|Hemiplegia/hemiparesis as late effect of cerebrovascular disease +C0489989|T047|AB|438.20|ICD9CM|Late ef-hemplga side NOS|Late ef-hemplga side NOS +C0489989|T047|PT|438.20|ICD9CM|Late effects of cerebrovascular disease, hemiplegia affecting unspecified side|Late effects of cerebrovascular disease, hemiplegia affecting unspecified side +C0489990|T046|AB|438.21|ICD9CM|Late ef-hemplga dom side|Late ef-hemplga dom side +C0489990|T046|PT|438.21|ICD9CM|Late effects of cerebrovascular disease, hemiplegia affecting dominant side|Late effects of cerebrovascular disease, hemiplegia affecting dominant side +C0489991|T046|AB|438.22|ICD9CM|Late ef-hemiplga non-dom|Late ef-hemiplga non-dom +C0489991|T046|PT|438.22|ICD9CM|Late effects of cerebrovascular disease, hemiplegia affecting nondominant side|Late effects of cerebrovascular disease, hemiplegia affecting nondominant side +C0489992|T046|HT|438.3|ICD9CM|Monoplegia of upper limb as late effect of cerebrovascular disease|Monoplegia of upper limb as late effect of cerebrovascular disease +C0489993|T047|AB|438.30|ICD9CM|Late ef-mplga up lmb NOS|Late ef-mplga up lmb NOS +C0489993|T047|PT|438.30|ICD9CM|Late effects of cerebrovascular disease, monoplegia of upper limb affecting unspecified side|Late effects of cerebrovascular disease, monoplegia of upper limb affecting unspecified side +C0489994|T046|AB|438.31|ICD9CM|Late ef-mplga up lmb dom|Late ef-mplga up lmb dom +C0489994|T046|PT|438.31|ICD9CM|Late effects of cerebrovascular disease, monoplegia of upper limb affecting dominant side|Late effects of cerebrovascular disease, monoplegia of upper limb affecting dominant side +C0489995|T046|PT|438.32|ICD9CM|Late effects of cerebrovascular disease, monoplegia of upper limb affecting nondominant side|Late effects of cerebrovascular disease, monoplegia of upper limb affecting nondominant side +C0489995|T046|AB|438.32|ICD9CM|Lt ef-mplga uplmb nondom|Lt ef-mplga uplmb nondom +C0489996|T046|HT|438.4|ICD9CM|Monoplegia of lower limb as late effect of cerebrovascular disease|Monoplegia of lower limb as late effect of cerebrovascular disease +C0489997|T047|PT|438.40|ICD9CM|Late effects of cerebrovascular disease, monoplegia of lower limb affecting unspecified side|Late effects of cerebrovascular disease, monoplegia of lower limb affecting unspecified side +C0489997|T047|AB|438.40|ICD9CM|Lte ef-mplga low lmb NOS|Lte ef-mplga low lmb NOS +C0489998|T046|PT|438.41|ICD9CM|Late effects of cerebrovascular disease, monoplegia of lower limb affecting dominant side|Late effects of cerebrovascular disease, monoplegia of lower limb affecting dominant side +C0489998|T046|AB|438.41|ICD9CM|Lte ef-mplga low lmb dom|Lte ef-mplga low lmb dom +C0489999|T046|PT|438.42|ICD9CM|Late effects of cerebrovascular disease, monoplegia of lower limb affecting nondominant side|Late effects of cerebrovascular disease, monoplegia of lower limb affecting nondominant side +C0489999|T046|AB|438.42|ICD9CM|Lt ef-mplga lowlmb nondm|Lt ef-mplga lowlmb nondm +C0490000|T047|HT|438.5|ICD9CM|Other paralytic syndrome as late effect of cerebrovascular disease|Other paralytic syndrome as late effect of cerebrovascular disease +C0490001|T047|PT|438.50|ICD9CM|Late effects of cerebrovascular disease, other paralytic syndrome affecting unspecified side|Late effects of cerebrovascular disease, other paralytic syndrome affecting unspecified side +C0490001|T047|AB|438.50|ICD9CM|Lt ef oth paral side NOS|Lt ef oth paral side NOS +C0490002|T047|PT|438.51|ICD9CM|Late effects of cerebrovascular disease, other paralytic syndrome affecting dominant side|Late effects of cerebrovascular disease, other paralytic syndrome affecting dominant side +C0490002|T047|AB|438.51|ICD9CM|Lt ef oth paral dom side|Lt ef oth paral dom side +C0490003|T047|PT|438.52|ICD9CM|Late effects of cerebrovascular disease, other paralytic syndrome affecting nondominant side|Late effects of cerebrovascular disease, other paralytic syndrome affecting nondominant side +C0490003|T047|AB|438.52|ICD9CM|Lt ef oth parals non-dom|Lt ef oth parals non-dom +C0695232|T047|PT|438.53|ICD9CM|Late effects of cerebrovascular disease, other paralytic syndrome, bilateral|Late effects of cerebrovascular disease, other paralytic syndrome, bilateral +C0695232|T047|AB|438.53|ICD9CM|Lt ef oth parals-bilat|Lt ef oth parals-bilat +C1135206|T046|AB|438.6|ICD9CM|Alteration of sensations|Alteration of sensations +C1135206|T046|PT|438.6|ICD9CM|Late effects of cerebrovascular disease, alterations of sensations|Late effects of cerebrovascular disease, alterations of sensations +C3665387|T046|AB|438.7|ICD9CM|Disturbances of vision|Disturbances of vision +C3665387|T046|PT|438.7|ICD9CM|Late effects of cerebrovascular disease, disturbances of vision|Late effects of cerebrovascular disease, disturbances of vision +C0490004|T046|HT|438.8|ICD9CM|Other late effects of cerebrovascular disease|Other late effects of cerebrovascular disease +C0490005|T046|AB|438.81|ICD9CM|Late eff CV dis-apraxia|Late eff CV dis-apraxia +C0490005|T046|PT|438.81|ICD9CM|Other late effects of cerebrovascular disease, apraxia|Other late effects of cerebrovascular disease, apraxia +C0490006|T046|AB|438.82|ICD9CM|Late ef CV dis dysphagia|Late ef CV dis dysphagia +C0490006|T046|PT|438.82|ICD9CM|Other late effects of cerebrovascular disease, dysphagia|Other late effects of cerebrovascular disease, dysphagia +C0427055|T047|AB|438.83|ICD9CM|Facial weakness|Facial weakness +C0427055|T047|PT|438.83|ICD9CM|Other late effects of cerebrovascular disease, facial weakness|Other late effects of cerebrovascular disease, facial weakness +C1135207|T046|AB|438.84|ICD9CM|Ataxia|Ataxia +C1135207|T046|PT|438.84|ICD9CM|Other late effects of cerebrovascular disease, ataxia|Other late effects of cerebrovascular disease, ataxia +C1135208|T047|PT|438.85|ICD9CM|Other late effects of cerebrovascular disease, vertigo|Other late effects of cerebrovascular disease, vertigo +C1135208|T047|AB|438.85|ICD9CM|Vertigo|Vertigo +C0490004|T046|AB|438.89|ICD9CM|Late effect CV dis NEC|Late effect CV dis NEC +C0490004|T046|PT|438.89|ICD9CM|Other late effects of cerebrovascular disease|Other late effects of cerebrovascular disease +C0155732|T046|AB|438.9|ICD9CM|Late effect CV dis NOS|Late effect CV dis NOS +C0155732|T046|PT|438.9|ICD9CM|Unspecified late effects of cerebrovascular disease|Unspecified late effects of cerebrovascular disease +C0004153|T047|HT|440|ICD9CM|Atherosclerosis|Atherosclerosis +C0178274|T047|HT|440-449.99|ICD9CM|DISEASES OF ARTERIES, ARTERIOLES, AND CAPILLARIES|DISEASES OF ARTERIES, ARTERIOLES, AND CAPILLARIES +C0155733|T047|AB|440.0|ICD9CM|Aortic atherosclerosis|Aortic atherosclerosis +C0155733|T047|PT|440.0|ICD9CM|Atherosclerosis of aorta|Atherosclerosis of aorta +C0155734|T047|PT|440.1|ICD9CM|Atherosclerosis of renal artery|Atherosclerosis of renal artery +C0155734|T047|AB|440.1|ICD9CM|Renal artery atheroscler|Renal artery atheroscler +C3495604|T047|HT|440.2|ICD9CM|Atherosclerosis of native arteries of the extremities|Atherosclerosis of native arteries of the extremities +C0375294|T047|PT|440.20|ICD9CM|Atherosclerosis of native arteries of the extremities, unspecified|Atherosclerosis of native arteries of the extremities, unspecified +C0375294|T047|AB|440.20|ICD9CM|Athscl extrm ntv art NOS|Athscl extrm ntv art NOS +C0375295|T047|AB|440.21|ICD9CM|Ath ext ntv at w claudct|Ath ext ntv at w claudct +C0375295|T047|PT|440.21|ICD9CM|Atherosclerosis of native arteries of the extremities with intermittent claudication|Atherosclerosis of native arteries of the extremities with intermittent claudication +C2882703|T047|AB|440.22|ICD9CM|Ath ext ntv at w rst pn|Ath ext ntv at w rst pn +C2882703|T047|PT|440.22|ICD9CM|Atherosclerosis of native arteries of the extremities with rest pain|Atherosclerosis of native arteries of the extremities with rest pain +C0375297|T047|AB|440.23|ICD9CM|Ath ext ntv art ulcrtion|Ath ext ntv art ulcrtion +C0375297|T047|PT|440.23|ICD9CM|Atherosclerosis of native arteries of the extremities with ulceration|Atherosclerosis of native arteries of the extremities with ulceration +C0375298|T047|AB|440.24|ICD9CM|Ath ext ntv art gngrene|Ath ext ntv art gngrene +C0375298|T047|PT|440.24|ICD9CM|Atherosclerosis of native arteries of the extremities with gangrene|Atherosclerosis of native arteries of the extremities with gangrene +C0375299|T047|AB|440.29|ICD9CM|Athrsc extrm ntv art oth|Athrsc extrm ntv art oth +C0375299|T047|PT|440.29|ICD9CM|Other atherosclerosis of native arteries of the extremities|Other atherosclerosis of native arteries of the extremities +C0375300|T047|HT|440.3|ICD9CM|Of bypass graft of the extremities|Of bypass graft of the extremities +C0375301|T047|PT|440.30|ICD9CM|Atherosclerosis of unspecified bypass graft of the extremities|Atherosclerosis of unspecified bypass graft of the extremities +C0375301|T047|AB|440.30|ICD9CM|Athscl extrm bps gft NOS|Athscl extrm bps gft NOS +C0375302|T047|AB|440.31|ICD9CM|Ath ext autologs bps gft|Ath ext autologs bps gft +C0375302|T047|PT|440.31|ICD9CM|Atherosclerosis of autologous vein bypass graft of the extremities|Atherosclerosis of autologous vein bypass graft of the extremities +C1112691|T047|AB|440.32|ICD9CM|Ath ext nonautlg bps gft|Ath ext nonautlg bps gft +C1112691|T047|PT|440.32|ICD9CM|Atherosclerosis of nonautologous biological bypass graft of the extremities|Atherosclerosis of nonautologous biological bypass graft of the extremities +C1955783|T047|AB|440.4|ICD9CM|Chr tot occl art extrem|Chr tot occl art extrem +C1955783|T047|PT|440.4|ICD9CM|Chronic total occlusion of artery of the extremities|Chronic total occlusion of artery of the extremities +C0004155|T047|AB|440.8|ICD9CM|Atherosclerosis NEC|Atherosclerosis NEC +C0004155|T047|PT|440.8|ICD9CM|Atherosclerosis of other specified arteries|Atherosclerosis of other specified arteries +C0017327|T047|AB|440.9|ICD9CM|Atherosclerosis NOS|Atherosclerosis NOS +C0017327|T047|PT|440.9|ICD9CM|Generalized and unspecified atherosclerosis|Generalized and unspecified atherosclerosis +C1812607|T047|HT|441|ICD9CM|Aortic aneurysm and dissection|Aortic aneurysm and dissection +C0012736|T047|HT|441.0|ICD9CM|Dissecting aneurysm of aorta|Dissecting aneurysm of aorta +C0340643|T047|PT|441.00|ICD9CM|Dissection of aorta, unspecified site|Dissection of aorta, unspecified site +C0340643|T047|AB|441.00|ICD9CM|Dsct of aorta unsp site|Dsct of aorta unsp site +C0729233|T047|PT|441.01|ICD9CM|Dissection of aorta, thoracic|Dissection of aorta, thoracic +C0729233|T047|AB|441.01|ICD9CM|Dsct of thoracic aorta|Dsct of thoracic aorta +C0302465|T047|PT|441.02|ICD9CM|Dissection of aorta, abdominal|Dissection of aorta, abdominal +C0302465|T047|AB|441.02|ICD9CM|Dsct of abdominal aorta|Dsct of abdominal aorta +C0375305|T047|PT|441.03|ICD9CM|Dissection of aorta, thoracoabdominal|Dissection of aorta, thoracoabdominal +C0375305|T047|AB|441.03|ICD9CM|Dsct of thoracoabd aorta|Dsct of thoracoabd aorta +C0265010|T047|AB|441.1|ICD9CM|Ruptur thoracic aneurysm|Ruptur thoracic aneurysm +C0265010|T047|PT|441.1|ICD9CM|Thoracic aneurysm, ruptured|Thoracic aneurysm, ruptured +C3251816|T020|PT|441.2|ICD9CM|Thoracic aneurysm without mention of rupture|Thoracic aneurysm without mention of rupture +C3251816|T020|AB|441.2|ICD9CM|Thoracic aortic aneurysm|Thoracic aortic aneurysm +C0265012|T047|PT|441.3|ICD9CM|Abdominal aneurysm, ruptured|Abdominal aneurysm, ruptured +C0265012|T047|AB|441.3|ICD9CM|Rupt abd aortic aneurysm|Rupt abd aortic aneurysm +C0265011|T020|AB|441.4|ICD9CM|Abdom aortic aneurysm|Abdom aortic aneurysm +C0265011|T020|PT|441.4|ICD9CM|Abdominal aneurysm without mention of rupture|Abdominal aneurysm without mention of rupture +C0741160|T047|PT|441.5|ICD9CM|Aortic aneurysm of unspecified site, ruptured|Aortic aneurysm of unspecified site, ruptured +C0741160|T047|AB|441.5|ICD9CM|Rupt aortic aneurysm NOS|Rupt aortic aneurysm NOS +C1305122|T047|AB|441.6|ICD9CM|Thoracoabd aneurysm rupt|Thoracoabd aneurysm rupt +C1305122|T047|PT|441.6|ICD9CM|Thoracoabdominal aneurysm, ruptured|Thoracoabdominal aneurysm, ruptured +C0375306|T020|PT|441.7|ICD9CM|Thoracoabdominal aneurysm, without mention of rupture|Thoracoabdominal aneurysm, without mention of rupture +C0375306|T020|AB|441.7|ICD9CM|Thracabd anurysm wo rupt|Thracabd anurysm wo rupt +C0340629|T047|AB|441.9|ICD9CM|Aortic aneurysm NOS|Aortic aneurysm NOS +C0340629|T047|PT|441.9|ICD9CM|Aortic aneurysm of unspecified site without mention of rupture|Aortic aneurysm of unspecified site without mention of rupture +C0155740|T190|HT|442|ICD9CM|Other aneurysm|Other aneurysm +C0155741|T190|PT|442.0|ICD9CM|Aneurysm of artery of upper extremity|Aneurysm of artery of upper extremity +C0155741|T190|AB|442.0|ICD9CM|Upper extremity aneurysm|Upper extremity aneurysm +C0155742|T190|PT|442.1|ICD9CM|Aneurysm of renal artery|Aneurysm of renal artery +C0155742|T190|AB|442.1|ICD9CM|Renal artery aneurysm|Renal artery aneurysm +C0162870|T190|PT|442.2|ICD9CM|Aneurysm of iliac artery|Aneurysm of iliac artery +C0162870|T190|AB|442.2|ICD9CM|Iliac artery aneurysm|Iliac artery aneurysm +C0155744|T190|PT|442.3|ICD9CM|Aneurysm of artery of lower extremity|Aneurysm of artery of lower extremity +C0155744|T190|AB|442.3|ICD9CM|Lower extremity aneurysm|Lower extremity aneurysm +C0002945|T190|HT|442.8|ICD9CM|Aneurysm of other specified artery|Aneurysm of other specified artery +C0155745|T190|PT|442.81|ICD9CM|Aneurysm of artery of neck|Aneurysm of artery of neck +C0155745|T190|AB|442.81|ICD9CM|Aneurysm of neck|Aneurysm of neck +C0155746|T047|PT|442.82|ICD9CM|Aneurysm of subclavian artery|Aneurysm of subclavian artery +C0155746|T047|AB|442.82|ICD9CM|Subclavian aneurysm|Subclavian aneurysm +C0155747|T047|PT|442.83|ICD9CM|Aneurysm of splenic artery|Aneurysm of splenic artery +C0155747|T047|AB|442.83|ICD9CM|Splenic artery aneurysm|Splenic artery aneurysm +C0155748|T020|PT|442.84|ICD9CM|Aneurysm of other visceral artery|Aneurysm of other visceral artery +C0155748|T020|AB|442.84|ICD9CM|Visceral aneurysm NEC|Visceral aneurysm NEC +C0002946|T033|AB|442.89|ICD9CM|Aneurysm NEC|Aneurysm NEC +C0002946|T033|PT|442.89|ICD9CM|Aneurysm of other specified artery|Aneurysm of other specified artery +C0002940|T046|AB|442.9|ICD9CM|Aneurysm NOS|Aneurysm NOS +C0002940|T046|PT|442.9|ICD9CM|Aneurysm of unspecified site|Aneurysm of unspecified site +C0553983|T047|HT|443|ICD9CM|Other peripheral vascular disease|Other peripheral vascular disease +C0034735|T047|AB|443.0|ICD9CM|Raynaud's syndrome|Raynaud's syndrome +C0034735|T047|PT|443.0|ICD9CM|Raynaud's syndrome|Raynaud's syndrome +C0040021|T047|AB|443.1|ICD9CM|Thromboangiit obliterans|Thromboangiit obliterans +C0040021|T047|PT|443.1|ICD9CM|Thromboangiitis obliterans [Buerger's disease]|Thromboangiitis obliterans [Buerger's disease] +C1135209|T047|HT|443.2|ICD9CM|Other arterial dissection|Other arterial dissection +C0338585|T047|AB|443.21|ICD9CM|Dissect carotid artery|Dissect carotid artery +C0338585|T047|PT|443.21|ICD9CM|Dissection of carotid artery|Dissection of carotid artery +C0340649|T047|AB|443.22|ICD9CM|Dissection iliac artery|Dissection iliac artery +C0340649|T047|PT|443.22|ICD9CM|Dissection of iliac artery|Dissection of iliac artery +C0919563|T047|PT|443.23|ICD9CM|Dissection of renal artery|Dissection of renal artery +C0919563|T047|AB|443.23|ICD9CM|Dissection renal artery|Dissection renal artery +C0338586|T047|AB|443.24|ICD9CM|Dissect vertebral artery|Dissect vertebral artery +C0338586|T047|PT|443.24|ICD9CM|Dissection of vertebral artery|Dissection of vertebral artery +C1135210|T047|AB|443.29|ICD9CM|Dissection artery NEC|Dissection artery NEC +C1135210|T047|PT|443.29|ICD9CM|Dissection of other artery|Dissection of other artery +C0029822|T047|HT|443.8|ICD9CM|Other specified peripheral vascular diseases|Other specified peripheral vascular diseases +C0031115|T047|AB|443.81|ICD9CM|Angiopathy in other dis|Angiopathy in other dis +C0031115|T047|PT|443.81|ICD9CM|Peripheral angiopathy in diseases classified elsewhere|Peripheral angiopathy in diseases classified elsewhere +C0014804|T047|AB|443.82|ICD9CM|Erythromelalgia|Erythromelalgia +C0014804|T047|PT|443.82|ICD9CM|Erythromelalgia|Erythromelalgia +C0553983|T047|PT|443.89|ICD9CM|Other specified peripheral vascular diseases|Other specified peripheral vascular diseases +C0553983|T047|AB|443.89|ICD9CM|Periph vascular dis NEC|Periph vascular dis NEC +C0085096|T047|AB|443.9|ICD9CM|Periph vascular dis NOS|Periph vascular dis NOS +C0085096|T047|PT|443.9|ICD9CM|Peripheral vascular disease, unspecified|Peripheral vascular disease, unspecified +C0155749|T046|HT|444|ICD9CM|Arterial embolism and thrombosis|Arterial embolism and thrombosis +C0013923|T046|HT|444.0|ICD9CM|Embolism and thrombosis of abdominal aorta|Embolism and thrombosis of abdominal aorta +C0023370|T047|AB|444.01|ICD9CM|Saddle embolus abd aorta|Saddle embolus abd aorta +C0023370|T047|PT|444.01|ICD9CM|Saddle embolus of abdominal aorta|Saddle embolus of abdominal aorta +C3161092|T047|AB|444.09|ICD9CM|Ot art emb/thrm abd aort|Ot art emb/thrm abd aort +C3161092|T047|PT|444.09|ICD9CM|Other arterial embolism and thrombosis of abdominal aorta|Other arterial embolism and thrombosis of abdominal aorta +C0155750|T046|PT|444.1|ICD9CM|Embolism and thrombosis of thoracic aorta|Embolism and thrombosis of thoracic aorta +C0155750|T046|AB|444.1|ICD9CM|Thoracic aortic embolism|Thoracic aortic embolism +C0340579|T046|HT|444.2|ICD9CM|Embolism and thrombosis of arteries of the extremities|Embolism and thrombosis of arteries of the extremities +C0494620|T046|PT|444.21|ICD9CM|Arterial embolism and thrombosis of upper extremity|Arterial embolism and thrombosis of upper extremity +C0494620|T046|AB|444.21|ICD9CM|Upper extremity embolism|Upper extremity embolism +C0340589|T046|PT|444.22|ICD9CM|Arterial embolism and thrombosis of lower extremity|Arterial embolism and thrombosis of lower extremity +C0340589|T046|AB|444.22|ICD9CM|Lower extremity embolism|Lower extremity embolism +C0155754|T047|HT|444.8|ICD9CM|Embolism and thrombosis of other specified artery|Embolism and thrombosis of other specified artery +C0155755|T046|PT|444.81|ICD9CM|Embolism and thrombosis of iliac artery|Embolism and thrombosis of iliac artery +C0155755|T046|AB|444.81|ICD9CM|Iliac artery embolism|Iliac artery embolism +C0348650|T047|AB|444.89|ICD9CM|Arterial embolism NEC|Arterial embolism NEC +C0348650|T047|PT|444.89|ICD9CM|Embolism and thrombosis of other specified artery|Embolism and thrombosis of other specified artery +C0013924|T046|AB|444.9|ICD9CM|Arterial embolism NOS|Arterial embolism NOS +C0013924|T046|PT|444.9|ICD9CM|Embolism and thrombosis of unspecified artery|Embolism and thrombosis of unspecified artery +C0149649|T047|HT|445|ICD9CM|Atheroembolism|Atheroembolism +C1135211|T047|HT|445.0|ICD9CM|Atheroembolism Of extremities|Atheroembolism Of extremities +C1135212|T047|PT|445.01|ICD9CM|Atheroembolism of upper extremity|Atheroembolism of upper extremity +C1135212|T047|AB|445.01|ICD9CM|Atheroembolism,upper ext|Atheroembolism,upper ext +C1135213|T047|PT|445.02|ICD9CM|Atheroembolism of lower extremity|Atheroembolism of lower extremity +C1135213|T047|AB|445.02|ICD9CM|Atheroembolism,lower ext|Atheroembolism,lower ext +C1135216|T047|HT|445.8|ICD9CM|Atheroembolism of other sites|Atheroembolism of other sites +C0268792|T047|PT|445.81|ICD9CM|Atheroembolism of kidney|Atheroembolism of kidney +C0268792|T047|AB|445.81|ICD9CM|Atheroembolism, kidney|Atheroembolism, kidney +C1135216|T047|PT|445.89|ICD9CM|Atheroembolism of other site|Atheroembolism of other site +C1135216|T047|AB|445.89|ICD9CM|Atheroembolism, site NEC|Atheroembolism, site NEC +C0155757|T047|HT|446|ICD9CM|Polyarteritis nodosa and allied conditions|Polyarteritis nodosa and allied conditions +C0031036|T047|AB|446.0|ICD9CM|Polyarteritis nodosa|Polyarteritis nodosa +C0031036|T047|PT|446.0|ICD9CM|Polyarteritis nodosa|Polyarteritis nodosa +C0026691|T047|PT|446.1|ICD9CM|Acute febrile mucocutaneous lymph node syndrome [MCLS]|Acute febrile mucocutaneous lymph node syndrome [MCLS] +C0026691|T047|AB|446.1|ICD9CM|Mucocutan lymph node syn|Mucocutan lymph node syn +C0151436|T047|HT|446.2|ICD9CM|Hypersensitivity angiitis|Hypersensitivity angiitis +C0151436|T047|AB|446.20|ICD9CM|Hypersensit angiitis NOS|Hypersensit angiitis NOS +C0151436|T047|PT|446.20|ICD9CM|Hypersensitivity angiitis, unspecified|Hypersensitivity angiitis, unspecified +C0403529|T047|AB|446.21|ICD9CM|Goodpasture's syndrome|Goodpasture's syndrome +C0403529|T047|PT|446.21|ICD9CM|Goodpasture's syndrome|Goodpasture's syndrome +C0155758|T047|AB|446.29|ICD9CM|Hypersensit angiitis NEC|Hypersensit angiitis NEC +C0155758|T047|PT|446.29|ICD9CM|Other specified hypersensitivity angiitis|Other specified hypersensitivity angiitis +C0018197|T191|AB|446.3|ICD9CM|Lethal midline granuloma|Lethal midline granuloma +C0018197|T191|PT|446.3|ICD9CM|Lethal midline granuloma|Lethal midline granuloma +C3495801|T047|AB|446.4|ICD9CM|Wegener's granulomatosis|Wegener's granulomatosis +C3495801|T047|PT|446.4|ICD9CM|Wegener's granulomatosis|Wegener's granulomatosis +C0039483|T047|AB|446.5|ICD9CM|Giant cell arteritis|Giant cell arteritis +C0039483|T047|PT|446.5|ICD9CM|Giant cell arteritis|Giant cell arteritis +C2717961|T047|AB|446.6|ICD9CM|Thrombot microangiopathy|Thrombot microangiopathy +C2717961|T047|PT|446.6|ICD9CM|Thrombotic microangiopathy|Thrombotic microangiopathy +C0039263|T047|AB|446.7|ICD9CM|Takayasu's disease|Takayasu's disease +C0039263|T047|PT|446.7|ICD9CM|Takayasu's disease|Takayasu's disease +C0155759|T047|HT|447|ICD9CM|Other disorders of arteries and arterioles|Other disorders of arteries and arterioles +C1541850|T020|AB|447.0|ICD9CM|Acq arterioven fistula|Acq arterioven fistula +C1541850|T020|PT|447.0|ICD9CM|Arteriovenous fistula, acquired|Arteriovenous fistula, acquired +C0038449|T046|AB|447.1|ICD9CM|Stricture of artery|Stricture of artery +C0038449|T046|PT|447.1|ICD9CM|Stricture of artery|Stricture of artery +C0155760|T047|AB|447.2|ICD9CM|Rupture of artery|Rupture of artery +C0155760|T047|PT|447.2|ICD9CM|Rupture of artery|Rupture of artery +C0155761|T047|PT|447.3|ICD9CM|Hyperplasia of renal artery|Hyperplasia of renal artery +C0155761|T047|AB|447.3|ICD9CM|Renal artery hyperplasia|Renal artery hyperplasia +C1861783|T047|AB|447.4|ICD9CM|Celiac art compress syn|Celiac art compress syn +C1861783|T047|PT|447.4|ICD9CM|Celiac artery compression syndrome|Celiac artery compression syndrome +C0155762|T047|AB|447.5|ICD9CM|Necrosis of artery|Necrosis of artery +C0155762|T047|PT|447.5|ICD9CM|Necrosis of artery|Necrosis of artery +C0003860|T046|AB|447.6|ICD9CM|Arteritis NOS|Arteritis NOS +C0003860|T046|PT|447.6|ICD9CM|Arteritis, unspecified|Arteritis, unspecified +C0265004|T047|HT|447.7|ICD9CM|Aortic ectasia|Aortic ectasia +C2921068|T047|AB|447.70|ICD9CM|Aortic ectasia, site NOS|Aortic ectasia, site NOS +C2921068|T047|PT|447.70|ICD9CM|Aortic ectasia, unspecified site|Aortic ectasia, unspecified site +C2921069|T047|AB|447.71|ICD9CM|Thoracic aortic ectasia|Thoracic aortic ectasia +C2921069|T047|PT|447.71|ICD9CM|Thoracic aortic ectasia|Thoracic aortic ectasia +C2921070|T047|AB|447.72|ICD9CM|Abdominal aortic ectasia|Abdominal aortic ectasia +C2921070|T047|PT|447.72|ICD9CM|Abdominal aortic ectasia|Abdominal aortic ectasia +C2921071|T047|AB|447.73|ICD9CM|Thoracoabd aortc ectasia|Thoracoabd aortc ectasia +C2921071|T047|PT|447.73|ICD9CM|Thoracoabdominal aortic ectasia|Thoracoabdominal aortic ectasia +C0155763|T047|AB|447.8|ICD9CM|Arterial disease NEC|Arterial disease NEC +C0155763|T047|PT|447.8|ICD9CM|Other specified disorders of arteries and arterioles|Other specified disorders of arteries and arterioles +C0155764|T047|AB|447.9|ICD9CM|Arterial disease NOS|Arterial disease NOS +C0155764|T047|PT|447.9|ICD9CM|Unspecified disorders of arteries and arterioles|Unspecified disorders of arteries and arterioles +C0155765|T047|HT|448|ICD9CM|Disease of capillaries|Disease of capillaries +C0039445|T047|AB|448.0|ICD9CM|Heredit hemorr telangiec|Heredit hemorr telangiec +C0039445|T047|PT|448.0|ICD9CM|Hereditary hemorrhagic telangiectasia|Hereditary hemorrhagic telangiectasia +C0265027|T047|AB|448.1|ICD9CM|Nevus, non-neoplastic|Nevus, non-neoplastic +C0265027|T047|PT|448.1|ICD9CM|Nevus, non-neoplastic|Nevus, non-neoplastic +C0348651|T047|AB|448.9|ICD9CM|Capillary dis NEC/NOS|Capillary dis NEC/NOS +C0348651|T047|PT|448.9|ICD9CM|Other and unspecified capillary diseases|Other and unspecified capillary diseases +C1955786|T046|PT|449|ICD9CM|Septic arterial embolism|Septic arterial embolism +C1955786|T046|AB|449|ICD9CM|Septic arterial embolism|Septic arterial embolism +C1367972|T047|HT|451|ICD9CM|Phlebitis and thrombophlebitis|Phlebitis and thrombophlebitis +C0340270|T047|HT|451-459.99|ICD9CM|DISEASES OF VEINS AND LYMPHATICS, AND OTHER DISEASES OF CIRCULATORY SYSTEM|DISEASES OF VEINS AND LYMPHATICS, AND OTHER DISEASES OF CIRCULATORY SYSTEM +C0265057|T047|PT|451.0|ICD9CM|Phlebitis and thrombophlebitis of superficial vessels of lower extremities|Phlebitis and thrombophlebitis of superficial vessels of lower extremities +C0265057|T047|AB|451.0|ICD9CM|Superfic phlebitis-leg|Superfic phlebitis-leg +C0340711|T047|HT|451.1|ICD9CM|Phlebitis and thrombophlebitis of deep vessels of lower extremities|Phlebitis and thrombophlebitis of deep vessels of lower extremities +C0265066|T047|AB|451.11|ICD9CM|Femoral vein phlebitis|Femoral vein phlebitis +C0265066|T047|PT|451.11|ICD9CM|Phlebitis and thrombophlebitis of femoral vein (deep) (superficial)|Phlebitis and thrombophlebitis of femoral vein (deep) (superficial) +C0155770|T047|AB|451.19|ICD9CM|Deep phlebitis-leg NEC|Deep phlebitis-leg NEC +C0155770|T047|PT|451.19|ICD9CM|Phlebitis and thrombophlebitis of deep veins of lower extremities, other|Phlebitis and thrombophlebitis of deep veins of lower extremities, other +C0340712|T047|PT|451.2|ICD9CM|Phlebitis and thrombophlebitis of lower extremities, unspecified|Phlebitis and thrombophlebitis of lower extremities, unspecified +C0340712|T047|AB|451.2|ICD9CM|Thrombophlebitis leg NOS|Thrombophlebitis leg NOS +C0340692|T047|HT|451.8|ICD9CM|Phlebitis and thrombophlebitis of other sites|Phlebitis and thrombophlebitis of other sites +C0155772|T047|AB|451.81|ICD9CM|Iliac thrombophlebitis|Iliac thrombophlebitis +C0155772|T047|PT|451.81|ICD9CM|Phlebitis and thrombophlebitis of iliac vein|Phlebitis and thrombophlebitis of iliac vein +C0375311|T047|AB|451.82|ICD9CM|Phlbts sprfc vn up extrm|Phlbts sprfc vn up extrm +C0375311|T047|PT|451.82|ICD9CM|Phlebitis and thrombophlebitis of superficial veins of upper extremities|Phlebitis and thrombophlebitis of superficial veins of upper extremities +C0375312|T047|AB|451.83|ICD9CM|Phlbts deep vn up extrm|Phlbts deep vn up extrm +C0375312|T047|PT|451.83|ICD9CM|Phlebitis and thrombophlebitis of deep veins of upper extremities|Phlebitis and thrombophlebitis of deep veins of upper extremities +C0375313|T047|AB|451.84|ICD9CM|Phlbts vn NOS up extrm|Phlbts vn NOS up extrm +C0375313|T047|PT|451.84|ICD9CM|Phlebitis and thrombophlebitis of upper extremities, unspecified|Phlebitis and thrombophlebitis of upper extremities, unspecified +C0340692|T047|PT|451.89|ICD9CM|Phlebitis and thrombophlebitis of other sites|Phlebitis and thrombophlebitis of other sites +C0340692|T047|AB|451.89|ICD9CM|Thrombophlebitis NEC|Thrombophlebitis NEC +C1367972|T047|PT|451.9|ICD9CM|Phlebitis and thrombophlebitis of unspecified site|Phlebitis and thrombophlebitis of unspecified site +C1367972|T047|AB|451.9|ICD9CM|Thrombophlebitis NOS|Thrombophlebitis NOS +C0155773|T047|AB|452|ICD9CM|Portal vein thrombosis|Portal vein thrombosis +C0155773|T047|PT|452|ICD9CM|Portal vein thrombosis|Portal vein thrombosis +C0155774|T047|HT|453|ICD9CM|Other venous embolism and thrombosis|Other venous embolism and thrombosis +C0856761|T047|AB|453.0|ICD9CM|Budd-chiari syndrome|Budd-chiari syndrome +C0856761|T047|PT|453.0|ICD9CM|Budd-chiari syndrome|Budd-chiari syndrome +C0152250|T047|AB|453.1|ICD9CM|Thrombophlebitis migrans|Thrombophlebitis migrans +C0152250|T047|PT|453.1|ICD9CM|Thrombophlebitis migrans|Thrombophlebitis migrans +C2712843|T046|AB|453.2|ICD9CM|Oth inf vena cava thromb|Oth inf vena cava thromb +C2712843|T046|PT|453.2|ICD9CM|Other venous embolism and thrombosis of inferior vena cava|Other venous embolism and thrombosis of inferior vena cava +C0155776|T046|PT|453.3|ICD9CM|Other venous embolism and thrombosis of renal vein|Other venous embolism and thrombosis of renal vein +C0155776|T046|AB|453.3|ICD9CM|Renal vein thrombosis|Renal vein thrombosis +C2712859|T046|HT|453.4|ICD9CM|Acute venous embolism and thrombosis of deep vessels of lower extremity|Acute venous embolism and thrombosis of deep vessels of lower extremity +C2712629|T046|AB|453.40|ICD9CM|Ac DVT/embl low ext NOS|Ac DVT/embl low ext NOS +C2712629|T046|PT|453.40|ICD9CM|Acute venous embolism and thrombosis of unspecified deep vessels of lower extremity|Acute venous embolism and thrombosis of unspecified deep vessels of lower extremity +C2712619|T046|AB|453.41|ICD9CM|Ac DVT/emb prox low ext|Ac DVT/emb prox low ext +C2712619|T046|PT|453.41|ICD9CM|Acute venous embolism and thrombosis of deep vessels of proximal lower extremity|Acute venous embolism and thrombosis of deep vessels of proximal lower extremity +C2712631|T046|AB|453.42|ICD9CM|Ac DVT/emb distl low ext|Ac DVT/emb distl low ext +C2712631|T046|PT|453.42|ICD9CM|Acute venous embolism and thrombosis of deep vessels of distal lower extremity|Acute venous embolism and thrombosis of deep vessels of distal lower extremity +C2712872|T046|HT|453.5|ICD9CM|Chronic venous embolism and thrombosis of deep vessels of lower extremity|Chronic venous embolism and thrombosis of deep vessels of lower extremity +C2712815|T046|AB|453.50|ICD9CM|Ch DVT/embl low ext NOS|Ch DVT/embl low ext NOS +C2712815|T046|PT|453.50|ICD9CM|Chronic venous embolism and thrombosis of unspecified deep vessels of lower extremity|Chronic venous embolism and thrombosis of unspecified deep vessels of lower extremity +C2712828|T046|AB|453.51|ICD9CM|Ch DVT/embl prox low ext|Ch DVT/embl prox low ext +C2712828|T046|PT|453.51|ICD9CM|Chronic venous embolism and thrombosis of deep vessels of proximal lower extremity|Chronic venous embolism and thrombosis of deep vessels of proximal lower extremity +C2712817|T046|AB|453.52|ICD9CM|Ch DVT/embl dstl low ext|Ch DVT/embl dstl low ext +C2712817|T046|PT|453.52|ICD9CM|Chronic venous embolism and thrombosis of deep vessels of distal lower extremity|Chronic venous embolism and thrombosis of deep vessels of distal lower extremity +C2712884|T046|AB|453.6|ICD9CM|Embl suprfcl ves low ext|Embl suprfcl ves low ext +C2712884|T046|PT|453.6|ICD9CM|Venous embolism and thrombosis of superficial vessels of lower extremity|Venous embolism and thrombosis of superficial vessels of lower extremity +C2712896|T046|HT|453.7|ICD9CM|Chronic venous embolism and thrombosis of other specified vessels|Chronic venous embolism and thrombosis of other specified vessels +C2712938|T046|AB|453.71|ICD9CM|Ch emblsm suprfcl up ext|Ch emblsm suprfcl up ext +C2712938|T046|PT|453.71|ICD9CM|Chronic venous embolism and thrombosis of superficial veins of upper extremity|Chronic venous embolism and thrombosis of superficial veins of upper extremity +C2712948|T046|AB|453.72|ICD9CM|Ch DVT/embl up ext|Ch DVT/embl up ext +C2712948|T046|PT|453.72|ICD9CM|Chronic venous embolism and thrombosis of deep veins of upper extremity|Chronic venous embolism and thrombosis of deep veins of upper extremity +C2712966|T046|AB|453.73|ICD9CM|Ch emblsm up ext NOS|Ch emblsm up ext NOS +C2712966|T046|PT|453.73|ICD9CM|Chronic venous embolism and thrombosis of upper extremity, unspecified|Chronic venous embolism and thrombosis of upper extremity, unspecified +C2712953|T046|AB|453.74|ICD9CM|Ch emblsm axillary veins|Ch emblsm axillary veins +C2712953|T046|PT|453.74|ICD9CM|Chronic venous embolism and thrombosis of axillary veins|Chronic venous embolism and thrombosis of axillary veins +C2712755|T046|AB|453.75|ICD9CM|Ch emblsm subclav veins|Ch emblsm subclav veins +C2712755|T046|PT|453.75|ICD9CM|Chronic venous embolism and thrombosis of subclavian veins|Chronic venous embolism and thrombosis of subclavian veins +C2712765|T046|AB|453.76|ICD9CM|Ch embl internl jug vein|Ch embl internl jug vein +C2712765|T046|PT|453.76|ICD9CM|Chronic venous embolism and thrombosis of internal jugular veins|Chronic venous embolism and thrombosis of internal jugular veins +C2712794|T046|AB|453.77|ICD9CM|Ch embl thorac vein NEC|Ch embl thorac vein NEC +C2712794|T046|PT|453.77|ICD9CM|Chronic venous embolism and thrombosis of other thoracic veins|Chronic venous embolism and thrombosis of other thoracic veins +C2712814|T046|AB|453.79|ICD9CM|Ch emblsm veins NEC|Ch emblsm veins NEC +C2712814|T046|PT|453.79|ICD9CM|Chronic venous embolism and thrombosis of other specified veins|Chronic venous embolism and thrombosis of other specified veins +C2712996|T046|HT|453.8|ICD9CM|Acute venous embolism and thrombosis of other specified veins|Acute venous embolism and thrombosis of other specified veins +C2712822|T046|AB|453.81|ICD9CM|Ac embl suprfcl up ext|Ac embl suprfcl up ext +C2712822|T046|PT|453.81|ICD9CM|Acute venous embolism and thrombosis of superficial veins of upper extremity|Acute venous embolism and thrombosis of superficial veins of upper extremity +C2712834|T046|AB|453.82|ICD9CM|Ac DVT/embl up ext|Ac DVT/embl up ext +C2712834|T046|PT|453.82|ICD9CM|Acute venous embolism and thrombosis of deep veins of upper extremity|Acute venous embolism and thrombosis of deep veins of upper extremity +C2712845|T046|AB|453.83|ICD9CM|Ac emblsm up ext NOS|Ac emblsm up ext NOS +C2712845|T046|PT|453.83|ICD9CM|Acute venous embolism and thrombosis of upper extremity, unspecified|Acute venous embolism and thrombosis of upper extremity, unspecified +C2712855|T046|AB|453.84|ICD9CM|Ac emblsm axillary veins|Ac emblsm axillary veins +C2712855|T046|PT|453.84|ICD9CM|Acute venous embolism and thrombosis of axillary veins|Acute venous embolism and thrombosis of axillary veins +C2712847|T046|AB|453.85|ICD9CM|Ac embl subclav veins|Ac embl subclav veins +C2712847|T046|PT|453.85|ICD9CM|Acute venous embolism and thrombosis of subclavian veins|Acute venous embolism and thrombosis of subclavian veins +C2712858|T046|AB|453.86|ICD9CM|Ac embl internl jug vein|Ac embl internl jug vein +C2712858|T046|PT|453.86|ICD9CM|Acute venous embolism and thrombosis of internal jugular veins|Acute venous embolism and thrombosis of internal jugular veins +C2712704|T046|AB|453.87|ICD9CM|Ac embl thorac vein NEC|Ac embl thorac vein NEC +C2712704|T046|PT|453.87|ICD9CM|Acute venous embolism and thrombosis of other thoracic veins|Acute venous embolism and thrombosis of other thoracic veins +C2712736|T046|AB|453.89|ICD9CM|Ac embolism veins NEC|Ac embolism veins NEC +C2712736|T046|PT|453.89|ICD9CM|Acute venous embolism and thrombosis of other specified veins|Acute venous embolism and thrombosis of other specified veins +C0040038|T046|PT|453.9|ICD9CM|Other venous embolism and thrombosis of unspecified site|Other venous embolism and thrombosis of unspecified site +C0040038|T046|AB|453.9|ICD9CM|Venous thrombosis NOS|Venous thrombosis NOS +C0155778|T047|HT|454|ICD9CM|Varicose veins of lower extremities|Varicose veins of lower extremities +C0553570|T047|AB|454.0|ICD9CM|Leg varicosity w ulcer|Leg varicosity w ulcer +C0553570|T047|PT|454.0|ICD9CM|Varicose veins of lower extremities with ulcer|Varicose veins of lower extremities with ulcer +C0042347|T047|AB|454.1|ICD9CM|Leg varicosity w inflam|Leg varicosity w inflam +C0042347|T047|PT|454.1|ICD9CM|Varicose veins of lower extremities with inflammation|Varicose veins of lower extremities with inflammation +C0155779|T047|AB|454.2|ICD9CM|Varicos leg ulcer/inflam|Varicos leg ulcer/inflam +C0155779|T047|PT|454.2|ICD9CM|Varicose veins of lower extremities with ulcer and inflammation|Varicose veins of lower extremities with ulcer and inflammation +C1135217|T047|AB|454.8|ICD9CM|Varic vein leg,comp NEC|Varic vein leg,comp NEC +C1135217|T047|PT|454.8|ICD9CM|Varicose veins of lower extremities with other complications|Varicose veins of lower extremities with other complications +C1135335|T047|AB|454.9|ICD9CM|Asympt varicose veins|Asympt varicose veins +C1135335|T047|PT|454.9|ICD9CM|Asymptomatic varicose veins|Asymptomatic varicose veins +C0019112|T047|HT|455|ICD9CM|Hemorrhoids|Hemorrhoids +C0265035|T047|AB|455.0|ICD9CM|Int hemorrhoid w/o compl|Int hemorrhoid w/o compl +C0265035|T047|PT|455.0|ICD9CM|Internal hemorrhoids without mention of complication|Internal hemorrhoids without mention of complication +C0155781|T047|AB|455.1|ICD9CM|Int thrombos hemorrhoid|Int thrombos hemorrhoid +C0155781|T047|PT|455.1|ICD9CM|Internal thrombosed hemorrhoids|Internal thrombosed hemorrhoids +C0155782|T047|AB|455.2|ICD9CM|Int hemrrhoid w comp NEC|Int hemrrhoid w comp NEC +C0155782|T047|PT|455.2|ICD9CM|Internal hemorrhoids with other complication|Internal hemorrhoids with other complication +C0265041|T047|AB|455.3|ICD9CM|Ext hemorrhoid w/o compl|Ext hemorrhoid w/o compl +C0265041|T047|PT|455.3|ICD9CM|External hemorrhoids without mention of complication|External hemorrhoids without mention of complication +C0155784|T020|AB|455.4|ICD9CM|Ext thrombos hemorrhoid|Ext thrombos hemorrhoid +C0155784|T020|PT|455.4|ICD9CM|External thrombosed hemorrhoids|External thrombosed hemorrhoids +C0155785|T047|AB|455.5|ICD9CM|Ext hemrrhoid w comp NEC|Ext hemrrhoid w comp NEC +C0155785|T047|PT|455.5|ICD9CM|External hemorrhoids with other complication|External hemorrhoids with other complication +C0041844|T020|AB|455.6|ICD9CM|Hemorrhoids NOS|Hemorrhoids NOS +C0041844|T020|PT|455.6|ICD9CM|Unspecified hemorrhoids without mention of complication|Unspecified hemorrhoids without mention of complication +C0235326|T047|AB|455.7|ICD9CM|Thrombos hemorrhoids NOS|Thrombos hemorrhoids NOS +C0235326|T047|PT|455.7|ICD9CM|Unspecified thrombosed hemorrhoids|Unspecified thrombosed hemorrhoids +C0155787|T046|AB|455.8|ICD9CM|Hemrrhoid NOS w comp NEC|Hemrrhoid NOS w comp NEC +C0155787|T046|PT|455.8|ICD9CM|Unspecified hemorrhoids with other complication|Unspecified hemorrhoids with other complication +C0155788|T190|AB|455.9|ICD9CM|Residual hemorrhoid tags|Residual hemorrhoid tags +C0155788|T190|PT|455.9|ICD9CM|Residual hemorrhoidal skin tags|Residual hemorrhoidal skin tags +C0155797|T047|HT|456|ICD9CM|Varicose veins of other sites|Varicose veins of other sites +C0155789|T047|AB|456.0|ICD9CM|Esophag varices w bleed|Esophag varices w bleed +C0155789|T047|PT|456.0|ICD9CM|Esophageal varices with bleeding|Esophageal varices with bleeding +C0267092|T047|AB|456.1|ICD9CM|Esoph varices w/o bleed|Esoph varices w/o bleed +C0267092|T047|PT|456.1|ICD9CM|Esophageal varices without mention of bleeding|Esophageal varices without mention of bleeding +C0155791|T047|HT|456.2|ICD9CM|Esophageal varices in diseases classified elsewhere|Esophageal varices in diseases classified elsewhere +C0155792|T047|AB|456.20|ICD9CM|Bleed esoph var oth dis|Bleed esoph var oth dis +C0155792|T047|PT|456.20|ICD9CM|Esophageal varices in diseases classified elsewhere, with bleeding|Esophageal varices in diseases classified elsewhere, with bleeding +C0155793|T047|AB|456.21|ICD9CM|Esoph varice oth dis NOS|Esoph varice oth dis NOS +C0155793|T047|PT|456.21|ICD9CM|Esophageal varices in diseases classified elsewhere, without mention of bleeding|Esophageal varices in diseases classified elsewhere, without mention of bleeding +C0155794|T020|AB|456.3|ICD9CM|Sublingual varices|Sublingual varices +C0155794|T020|PT|456.3|ICD9CM|Sublingual varices|Sublingual varices +C0042341|T047|AB|456.4|ICD9CM|Scrotal varices|Scrotal varices +C0042341|T047|PT|456.4|ICD9CM|Scrotal varices|Scrotal varices +C0155795|T047|AB|456.5|ICD9CM|Pelvic varices|Pelvic varices +C0155795|T047|PT|456.5|ICD9CM|Pelvic varices|Pelvic varices +C0155796|T047|AB|456.6|ICD9CM|Vulval varices|Vulval varices +C0155796|T047|PT|456.6|ICD9CM|Vulval varices|Vulval varices +C0155797|T047|AB|456.8|ICD9CM|Varices of other sites|Varices of other sites +C0155797|T047|PT|456.8|ICD9CM|Varices of other sites|Varices of other sites +C0155799|T047|HT|457|ICD9CM|Noninfectious disorders of lymphatic channels|Noninfectious disorders of lymphatic channels +C0472692|T047|AB|457.0|ICD9CM|Postmastect lymphedema|Postmastect lymphedema +C0472692|T047|PT|457.0|ICD9CM|Postmastectomy lymphedema syndrome|Postmastectomy lymphedema syndrome +C0029659|T046|AB|457.1|ICD9CM|Other lymphedema|Other lymphedema +C0029659|T046|PT|457.1|ICD9CM|Other lymphedema|Other lymphedema +C0024225|T047|AB|457.2|ICD9CM|Lymphangitis|Lymphangitis +C0024225|T047|PT|457.2|ICD9CM|Lymphangitis|Lymphangitis +C0029673|T047|AB|457.8|ICD9CM|Noninfect lymph dis NEC|Noninfect lymph dis NEC +C0029673|T047|PT|457.8|ICD9CM|Other noninfectious disorders of lymphatic channels|Other noninfectious disorders of lymphatic channels +C0155799|T047|AB|457.9|ICD9CM|Noninfect lymph dis NOS|Noninfect lymph dis NOS +C0155799|T047|PT|457.9|ICD9CM|Unspecified noninfectious disorder of lymphatic channels|Unspecified noninfectious disorder of lymphatic channels +C0020649|T033|HT|458|ICD9CM|Hypotension|Hypotension +C0020651|T047|AB|458.0|ICD9CM|Orthostatic hypotension|Orthostatic hypotension +C0020651|T047|PT|458.0|ICD9CM|Orthostatic hypotension|Orthostatic hypotension +C0155800|T047|AB|458.1|ICD9CM|Chronic hypotension|Chronic hypotension +C0155800|T047|PT|458.1|ICD9CM|Chronic hypotension|Chronic hypotension +C0375314|T047|HT|458.2|ICD9CM|Iatrogenic hypotension|Iatrogenic hypotension +C1260413|T046|AB|458.21|ICD9CM|Hemododialysis hypotensn|Hemododialysis hypotensn +C1260413|T046|PT|458.21|ICD9CM|Hypotension of hemodialysis|Hypotension of hemodialysis +C1260414|T046|AB|458.29|ICD9CM|Iatrogenc hypotnsion NEC|Iatrogenc hypotnsion NEC +C1260414|T046|PT|458.29|ICD9CM|Other iatrogenic hypotension|Other iatrogenic hypotension +C0490007|T047|AB|458.8|ICD9CM|Hypotension NEC|Hypotension NEC +C0490007|T047|PT|458.8|ICD9CM|Other specified hypotension|Other specified hypotension +C0020649|T033|AB|458.9|ICD9CM|Hypotension NOS|Hypotension NOS +C0020649|T033|PT|458.9|ICD9CM|Hypotension, unspecified|Hypotension, unspecified +C0348668|T047|HT|459|ICD9CM|Other disorders of circulatory system|Other disorders of circulatory system +C0019080|T046|AB|459.0|ICD9CM|Hemorrhage NOS|Hemorrhage NOS +C0019080|T046|PT|459.0|ICD9CM|Hemorrhage, unspecified|Hemorrhage, unspecified +C0032807|T047|HT|459.1|ICD9CM|Postphlebitic syndrome|Postphlebitic syndrome +C1135218|T047|AB|459.10|ICD9CM|Postphlbtc synd w/o comp|Postphlbtc synd w/o comp +C1135218|T047|PT|459.10|ICD9CM|Postphlebetic syndrome without complications|Postphlebetic syndrome without complications +C1135219|T047|PT|459.11|ICD9CM|Postphlebetic syndrome with ulcer|Postphlebetic syndrome with ulcer +C1135219|T047|AB|459.11|ICD9CM|Postphlebtc synd w ulcer|Postphlebtc synd w ulcer +C1135220|T047|PT|459.12|ICD9CM|Postphlebetic syndrome with inflammation|Postphlebetic syndrome with inflammation +C1135220|T047|AB|459.12|ICD9CM|Postphlebtc syn w inflam|Postphlebtc syn w inflam +C1135221|T047|AB|459.13|ICD9CM|Postphl syn w ulc&inflam|Postphl syn w ulc&inflam +C1135221|T047|PT|459.13|ICD9CM|Postphlebetic syndrome with ulcer and inflammation|Postphlebetic syndrome with ulcer and inflammation +C1135222|T047|AB|459.19|ICD9CM|Postphleb synd comp NEC|Postphleb synd comp NEC +C1135222|T047|PT|459.19|ICD9CM|Postphlebetic syndrome with other complication|Postphlebetic syndrome with other complication +C0155802|T020|AB|459.2|ICD9CM|Compression of vein|Compression of vein +C0155802|T020|PT|459.2|ICD9CM|Compression of vein|Compression of vein +C1135223|T047|HT|459.3|ICD9CM|Chronic venous hypertension (idiopathic)|Chronic venous hypertension (idiopathic) +C1135224|T047|AB|459.30|ICD9CM|Chr venous hypr w/o comp|Chr venous hypr w/o comp +C1135224|T047|PT|459.30|ICD9CM|Chronic venous hypertension without complications|Chronic venous hypertension without complications +C1135225|T047|AB|459.31|ICD9CM|Chr venous hyper w ulcer|Chr venous hyper w ulcer +C1135225|T047|PT|459.31|ICD9CM|Chronic venous hypertension with ulcer|Chronic venous hypertension with ulcer +C1135226|T047|AB|459.32|ICD9CM|Chr venous hypr w inflam|Chr venous hypr w inflam +C1135226|T047|PT|459.32|ICD9CM|Chronic venous hypertension with inflammation|Chronic venous hypertension with inflammation +C1135227|T047|AB|459.33|ICD9CM|Chr ven hyp w ulc&inflam|Chr ven hyp w ulc&inflam +C1135227|T047|PT|459.33|ICD9CM|Chronic venous hypertension with ulcer and inflammation|Chronic venous hypertension with ulcer and inflammation +C1135228|T047|AB|459.39|ICD9CM|Chr venous hyp comp NEC|Chr venous hyp comp NEC +C1135228|T047|PT|459.39|ICD9CM|Chronic venous hypertension with other complication|Chronic venous hypertension with other complication +C0155803|T047|HT|459.8|ICD9CM|Other specified disorders of circulatory system|Other specified disorders of circulatory system +C0042485|T047|PT|459.81|ICD9CM|Venous (peripheral) insufficiency, unspecified|Venous (peripheral) insufficiency, unspecified +C0042485|T047|AB|459.81|ICD9CM|Venous insufficiency NOS|Venous insufficiency NOS +C0155803|T047|AB|459.89|ICD9CM|Circulatory disease NEC|Circulatory disease NEC +C0155803|T047|PT|459.89|ICD9CM|Other specified disorders of circulatory system|Other specified disorders of circulatory system +C0728936|T047|AB|459.9|ICD9CM|Circulatory disease NOS|Circulatory disease NOS +C0728936|T047|PT|459.9|ICD9CM|Unspecified circulatory system disorder|Unspecified circulatory system disorder +C0009443|T047|AB|460|ICD9CM|Acute nasopharyngitis|Acute nasopharyngitis +C0009443|T047|PT|460|ICD9CM|Acute nasopharyngitis [common cold]|Acute nasopharyngitis [common cold] +C0339901|T047|HT|460-466.99|ICD9CM|ACUTE RESPIRATORY INFECTIONS|ACUTE RESPIRATORY INFECTIONS +C0035204|T047|HT|460-519.99|ICD9CM|DISEASES OF THE RESPIRATORY SYSTEM|DISEASES OF THE RESPIRATORY SYSTEM +C0149512|T047|HT|461|ICD9CM|Acute sinusitis|Acute sinusitis +C0155804|T047|AB|461.0|ICD9CM|Ac maxillary sinusitis|Ac maxillary sinusitis +C0155804|T047|PT|461.0|ICD9CM|Acute maxillary sinusitis|Acute maxillary sinusitis +C0155805|T047|AB|461.1|ICD9CM|Ac frontal sinusitis|Ac frontal sinusitis +C0155805|T047|PT|461.1|ICD9CM|Acute frontal sinusitis|Acute frontal sinusitis +C0155806|T047|AB|461.2|ICD9CM|Ac ethmoidal sinusitis|Ac ethmoidal sinusitis +C0155806|T047|PT|461.2|ICD9CM|Acute ethmoidal sinusitis|Acute ethmoidal sinusitis +C0155807|T047|AB|461.3|ICD9CM|Ac sphenoidal sinusitis|Ac sphenoidal sinusitis +C0155807|T047|PT|461.3|ICD9CM|Acute sphenoidal sinusitis|Acute sphenoidal sinusitis +C0155808|T047|AB|461.8|ICD9CM|Other acute sinusitis|Other acute sinusitis +C0155808|T047|PT|461.8|ICD9CM|Other acute sinusitis|Other acute sinusitis +C0149512|T047|AB|461.9|ICD9CM|Acute sinusitis NOS|Acute sinusitis NOS +C0149512|T047|PT|461.9|ICD9CM|Acute sinusitis, unspecified|Acute sinusitis, unspecified +C0001344|T047|AB|462|ICD9CM|Acute pharyngitis|Acute pharyngitis +C0001344|T047|PT|462|ICD9CM|Acute pharyngitis|Acute pharyngitis +C0001361|T047|AB|463|ICD9CM|Acute tonsillitis|Acute tonsillitis +C0001361|T047|PT|463|ICD9CM|Acute tonsillitis|Acute tonsillitis +C0155811|T047|HT|464|ICD9CM|Acute laryngitis and tracheitis|Acute laryngitis and tracheitis +C0001327|T047|HT|464.0|ICD9CM|Acute laryngitis|Acute laryngitis +C0949122|T047|AB|464.00|ICD9CM|Ac laryngitis w/o obst|Ac laryngitis w/o obst +C0949122|T047|PT|464.00|ICD9CM|Acute laryngitis without mention of obstruction|Acute laryngitis without mention of obstruction +C0949123|T047|AB|464.01|ICD9CM|Ac laryngitis w obstruct|Ac laryngitis w obstruct +C0949123|T047|PT|464.01|ICD9CM|Acute laryngitis with obstruction|Acute laryngitis with obstruction +C0149513|T047|HT|464.1|ICD9CM|Acute tracheitis|Acute tracheitis +C0339877|T047|AB|464.10|ICD9CM|Ac tracheitis no obstruc|Ac tracheitis no obstruc +C0339877|T047|PT|464.10|ICD9CM|Acute tracheitis without mention of obstruction|Acute tracheitis without mention of obstruction +C0155810|T047|AB|464.11|ICD9CM|Ac tracheitis w obstruct|Ac tracheitis w obstruct +C0155810|T047|PT|464.11|ICD9CM|Acute tracheitis with obstruction|Acute tracheitis with obstruction +C0155811|T047|HT|464.2|ICD9CM|Acute laryngotracheitis|Acute laryngotracheitis +C0339876|T047|AB|464.20|ICD9CM|Ac laryngotrach no obstr|Ac laryngotrach no obstr +C0339876|T047|PT|464.20|ICD9CM|Acute laryngotracheitis without mention of obstruction|Acute laryngotracheitis without mention of obstruction +C0155813|T047|AB|464.21|ICD9CM|Ac laryngotrach w obstr|Ac laryngotrach w obstr +C0155813|T047|PT|464.21|ICD9CM|Acute laryngotracheitis with obstruction|Acute laryngotracheitis with obstruction +C0155814|T047|HT|464.3|ICD9CM|Acute epiglottitis|Acute epiglottitis +C0396041|T047|AB|464.30|ICD9CM|Ac epiglottitis no obstr|Ac epiglottitis no obstr +C0396041|T047|PT|464.30|ICD9CM|Acute epiglottitis without mention of obstruction|Acute epiglottitis without mention of obstruction +C0155815|T047|AB|464.31|ICD9CM|Ac epiglottitis w obstr|Ac epiglottitis w obstr +C0155815|T047|PT|464.31|ICD9CM|Acute epiglottitis with obstruction|Acute epiglottitis with obstruction +C0010380|T047|AB|464.4|ICD9CM|Croup|Croup +C0010380|T047|PT|464.4|ICD9CM|Croup|Croup +C0749165|T047|HT|464.5|ICD9CM|Supraglottitis, unspecified|Supraglottitis, unspecified +C2887377|T047|AB|464.50|ICD9CM|Supraglottis w/o obs NOS|Supraglottis w/o obs NOS +C2887377|T047|PT|464.50|ICD9CM|Supraglottitis unspecified, without obstruction|Supraglottitis unspecified, without obstruction +C0949126|T047|AB|464.51|ICD9CM|Supraglottis w obstr NOS|Supraglottis w obstr NOS +C0949126|T047|PT|464.51|ICD9CM|Supraglottitis unspecified, with obstruction|Supraglottitis unspecified, with obstruction +C0155816|T047|HT|465|ICD9CM|Acute upper respiratory infections of multiple or unspecified sites|Acute upper respiratory infections of multiple or unspecified sites +C0155817|T047|AB|465.0|ICD9CM|Acute laryngopharyngitis|Acute laryngopharyngitis +C0155817|T047|PT|465.0|ICD9CM|Acute laryngopharyngitis|Acute laryngopharyngitis +C0155818|T047|PT|465.8|ICD9CM|Acute upper respiratory infections of other multiple sites|Acute upper respiratory infections of other multiple sites +C0155818|T047|AB|465.8|ICD9CM|Acute uri mult sites NEC|Acute uri mult sites NEC +C0264222|T047|PT|465.9|ICD9CM|Acute upper respiratory infections of unspecified site|Acute upper respiratory infections of unspecified site +C0264222|T047|AB|465.9|ICD9CM|Acute uri NOS|Acute uri NOS +C0155820|T047|HT|466|ICD9CM|Acute bronchitis and bronchiolitis|Acute bronchitis and bronchiolitis +C0149514|T047|AB|466.0|ICD9CM|Acute bronchitis|Acute bronchitis +C0149514|T047|PT|466.0|ICD9CM|Acute bronchitis|Acute bronchitis +C0001311|T047|HT|466.1|ICD9CM|Acute bronchiolitis|Acute bronchiolitis +C0348799|T047|AB|466.11|ICD9CM|Acu broncholitis d/t RSV|Acu broncholitis d/t RSV +C0348799|T047|PT|466.11|ICD9CM|Acute bronchiolitis due to respiratory syncytial virus (RSV)|Acute bronchiolitis due to respiratory syncytial virus (RSV) +C0375319|T047|AB|466.19|ICD9CM|Acu brnchlts d/t oth org|Acu brnchlts d/t oth org +C0375319|T047|PT|466.19|ICD9CM|Acute bronchiolitis due to other infectious organisms|Acute bronchiolitis due to other infectious organisms +C0549397|T033|AB|470|ICD9CM|Deviated nasal septum|Deviated nasal septum +C0549397|T033|PT|470|ICD9CM|Deviated nasal septum|Deviated nasal septum +C0155839|T047|HT|470-478.99|ICD9CM|OTHER DISEASES OF THE UPPER RESPIRATORY TRACT|OTHER DISEASES OF THE UPPER RESPIRATORY TRACT +C0027430|T047|HT|471|ICD9CM|Nasal polyps|Nasal polyps +C0027430|T047|AB|471.0|ICD9CM|Polyp of nasal cavity|Polyp of nasal cavity +C0027430|T047|PT|471.0|ICD9CM|Polyp of nasal cavity|Polyp of nasal cavity +C0155822|T047|AB|471.1|ICD9CM|Polypoid sinus degen|Polypoid sinus degen +C0155822|T047|PT|471.1|ICD9CM|Polypoid sinus degeneration|Polypoid sinus degeneration +C0155823|T047|AB|471.8|ICD9CM|Nasal sinus polyp NEC|Nasal sinus polyp NEC +C0155823|T047|PT|471.8|ICD9CM|Other polyp of sinus|Other polyp of sinus +C0027430|T047|AB|471.9|ICD9CM|Nasal polyp NOS|Nasal polyp NOS +C0027430|T047|PT|471.9|ICD9CM|Unspecified nasal polyp|Unspecified nasal polyp +C0155824|T047|HT|472|ICD9CM|Chronic pharyngitis and nasopharyngitis|Chronic pharyngitis and nasopharyngitis +C0008711|T047|AB|472.0|ICD9CM|Chronic rhinitis|Chronic rhinitis +C0008711|T047|PT|472.0|ICD9CM|Chronic rhinitis|Chronic rhinitis +C0155825|T047|AB|472.1|ICD9CM|Chronic pharyngitis|Chronic pharyngitis +C0155825|T047|PT|472.1|ICD9CM|Chronic pharyngitis|Chronic pharyngitis +C0155826|T047|AB|472.2|ICD9CM|Chronic nasopharyngitis|Chronic nasopharyngitis +C0155826|T047|PT|472.2|ICD9CM|Chronic nasopharyngitis|Chronic nasopharyngitis +C0149516|T047|HT|473|ICD9CM|Chronic sinusitis|Chronic sinusitis +C0008698|T047|AB|473.0|ICD9CM|Chr maxillary sinusitis|Chr maxillary sinusitis +C0008698|T047|PT|473.0|ICD9CM|Chronic maxillary sinusitis|Chronic maxillary sinusitis +C0008683|T047|AB|473.1|ICD9CM|Chr frontal sinusitis|Chr frontal sinusitis +C0008683|T047|PT|473.1|ICD9CM|Chronic frontal sinusitis|Chronic frontal sinusitis +C0008681|T047|AB|473.2|ICD9CM|Chr ethmoidal sinusitis|Chr ethmoidal sinusitis +C0008681|T047|PT|473.2|ICD9CM|Chronic ethmoidal sinusitis|Chronic ethmoidal sinusitis +C0008712|T047|AB|473.3|ICD9CM|Chr sphenoidal sinusitis|Chr sphenoidal sinusitis +C0008712|T047|PT|473.3|ICD9CM|Chronic sphenoidal sinusitis|Chronic sphenoidal sinusitis +C0395986|T047|AB|473.8|ICD9CM|Chronic sinusitis NEC|Chronic sinusitis NEC +C0395986|T047|PT|473.8|ICD9CM|Other chronic sinusitis|Other chronic sinusitis +C0149516|T047|AB|473.9|ICD9CM|Chronic sinusitis NOS|Chronic sinusitis NOS +C0149516|T047|PT|473.9|ICD9CM|Unspecified sinusitis (chronic)|Unspecified sinusitis (chronic) +C0155828|T047|HT|474|ICD9CM|Chronic disease of tonsils and adenoids|Chronic disease of tonsils and adenoids +C0490040|T047|HT|474.0|ICD9CM|Chronic tonsillitis and adenoiditis|Chronic tonsillitis and adenoiditis +C0149517|T047|AB|474.00|ICD9CM|Chronic tonsillitis|Chronic tonsillitis +C0149517|T047|PT|474.00|ICD9CM|Chronic tonsillitis|Chronic tonsillitis +C0396023|T047|AB|474.01|ICD9CM|Chronic adenoiditis|Chronic adenoiditis +C0396023|T047|PT|474.01|ICD9CM|Chronic adenoiditis|Chronic adenoiditis +C0490040|T047|PT|474.02|ICD9CM|Chronic tonsillitis and adenoiditis|Chronic tonsillitis and adenoiditis +C0490040|T047|AB|474.02|ICD9CM|Chronic tonsils&adenoids|Chronic tonsils&adenoids +C0155829|T047|HT|474.1|ICD9CM|Hypertrophy of tonsils and adenoids|Hypertrophy of tonsils and adenoids +C0155829|T047|PT|474.10|ICD9CM|Hypertrophy of tonsil with adenoids|Hypertrophy of tonsil with adenoids +C0155829|T047|AB|474.10|ICD9CM|Hypertrophy T and A|Hypertrophy T and A +C0155831|T047|PT|474.11|ICD9CM|Hypertrophy of tonsils alone|Hypertrophy of tonsils alone +C0155831|T047|AB|474.11|ICD9CM|Hypertrophy tonsils|Hypertrophy tonsils +C0149825|T047|AB|474.12|ICD9CM|Hypertrophy adenoids|Hypertrophy adenoids +C0149825|T047|PT|474.12|ICD9CM|Hypertrophy of adenoids alone|Hypertrophy of adenoids alone +C0155833|T047|AB|474.2|ICD9CM|Adenoid vegetations|Adenoid vegetations +C0155833|T047|PT|474.2|ICD9CM|Adenoid vegetations|Adenoid vegetations +C0155834|T047|AB|474.8|ICD9CM|Chr T & A dis NEC|Chr T & A dis NEC +C0155834|T047|PT|474.8|ICD9CM|Other chronic disease of tonsils and adenoids|Other chronic disease of tonsils and adenoids +C0155828|T047|AB|474.9|ICD9CM|Chr T & A dis NOS|Chr T & A dis NOS +C0155828|T047|PT|474.9|ICD9CM|Unspecified chronic disease of tonsils and adenoids|Unspecified chronic disease of tonsils and adenoids +C0031157|T047|AB|475|ICD9CM|Peritonsillar abscess|Peritonsillar abscess +C0031157|T047|PT|475|ICD9CM|Peritonsillar abscess|Peritonsillar abscess +C0155835|T047|HT|476|ICD9CM|Chronic laryngitis and laryngotracheitis|Chronic laryngitis and laryngotracheitis +C0155836|T047|AB|476.0|ICD9CM|Chronic laryngitis|Chronic laryngitis +C0155836|T047|PT|476.0|ICD9CM|Chronic laryngitis|Chronic laryngitis +C0155837|T047|AB|476.1|ICD9CM|Chr laryngotracheitis|Chr laryngotracheitis +C0155837|T047|PT|476.1|ICD9CM|Chronic laryngotracheitis|Chronic laryngotracheitis +C2607914|T047|HT|477|ICD9CM|Allergic rhinitis|Allergic rhinitis +C0018621|T047|PT|477.0|ICD9CM|Allergic rhinitis due to pollen|Allergic rhinitis due to pollen +C0018621|T047|AB|477.0|ICD9CM|Rhinitis due to pollen|Rhinitis due to pollen +C0878694|T047|PT|477.1|ICD9CM|Allergic rhinitis due to food|Allergic rhinitis due to food +C0878694|T047|AB|477.1|ICD9CM|Allergic rhinitis-food|Allergic rhinitis-food +C1456066|T047|AB|477.2|ICD9CM|Allerg rhinitis-cat/dog|Allerg rhinitis-cat/dog +C1456066|T047|PT|477.2|ICD9CM|Allergic rhinitis due to animal (cat) (dog) hair and dander|Allergic rhinitis due to animal (cat) (dog) hair and dander +C2712343|T047|PT|477.8|ICD9CM|Allergic rhinitis due to other allergen|Allergic rhinitis due to other allergen +C2712343|T047|AB|477.8|ICD9CM|Allergic rhinitis NEC|Allergic rhinitis NEC +C2607914|T047|AB|477.9|ICD9CM|Allergic rhinitis NOS|Allergic rhinitis NOS +C2607914|T047|PT|477.9|ICD9CM|Allergic rhinitis, cause unspecified|Allergic rhinitis, cause unspecified +C0155839|T047|HT|478|ICD9CM|Other diseases of upper respiratory tract|Other diseases of upper respiratory tract +C0155840|T047|PT|478.0|ICD9CM|Hypertrophy of nasal turbinates|Hypertrophy of nasal turbinates +C0155840|T047|AB|478.0|ICD9CM|Hypertrph nasal turbinat|Hypertrph nasal turbinat +C0029581|T047|HT|478.1|ICD9CM|Other diseases of nasal cavity and sinuses|Other diseases of nasal cavity and sinuses +C0235963|T047|AB|478.11|ICD9CM|Nasal mucositis (ulcer)|Nasal mucositis (ulcer) +C0235963|T047|PT|478.11|ICD9CM|Nasal mucositis (ulcerative)|Nasal mucositis (ulcerative) +C0029581|T047|AB|478.19|ICD9CM|Nasal & sinus dis NEC|Nasal & sinus dis NEC +C0029581|T047|PT|478.19|ICD9CM|Other disease of nasal cavity and sinuses|Other disease of nasal cavity and sinuses +C0795699|T047|HT|478.2|ICD9CM|Other diseases of pharynx, not elsewhere classified|Other diseases of pharynx, not elsewhere classified +C0031345|T047|AB|478.20|ICD9CM|Disease of pharynx NOS|Disease of pharynx NOS +C0031345|T047|PT|478.20|ICD9CM|Unspecified disease of pharynx|Unspecified disease of pharynx +C0155841|T047|AB|478.21|ICD9CM|Cellulitis of pharynx|Cellulitis of pharynx +C0155841|T047|PT|478.21|ICD9CM|Cellulitis of pharynx or nasopharynx|Cellulitis of pharynx or nasopharynx +C0155842|T047|AB|478.22|ICD9CM|Parapharyngeal abscess|Parapharyngeal abscess +C0155842|T047|PT|478.22|ICD9CM|Parapharyngeal abscess|Parapharyngeal abscess +C0155843|T047|AB|478.24|ICD9CM|Retropharyngeal abscess|Retropharyngeal abscess +C0155843|T047|PT|478.24|ICD9CM|Retropharyngeal abscess|Retropharyngeal abscess +C0155844|T047|PT|478.25|ICD9CM|Edema of pharynx or nasopharynx|Edema of pharynx or nasopharynx +C0155844|T047|AB|478.25|ICD9CM|Edema pharynx/nasopharyx|Edema pharynx/nasopharyx +C0155845|T047|PT|478.26|ICD9CM|Cyst of pharynx or nasopharynx|Cyst of pharynx or nasopharynx +C0155845|T047|AB|478.26|ICD9CM|Cyst pharynx/nasopharynx|Cyst pharynx/nasopharynx +C0795699|T047|AB|478.29|ICD9CM|Disease of pharynx NEC|Disease of pharynx NEC +C0795699|T047|PT|478.29|ICD9CM|Other diseases of pharynx, not elsewhere classified|Other diseases of pharynx, not elsewhere classified +C0494657|T047|HT|478.3|ICD9CM|Paralysis of vocal cords or larynx|Paralysis of vocal cords or larynx +C0042928|T047|PT|478.30|ICD9CM|Paralysis of vocal cords or larynx, unspecified|Paralysis of vocal cords or larynx, unspecified +C0042928|T047|AB|478.30|ICD9CM|Vocal cord paralysis NOS|Vocal cord paralysis NOS +C0155847|T047|PT|478.31|ICD9CM|Unilateral paralysis of vocal cords or larynx, partial|Unilateral paralysis of vocal cords or larynx, partial +C0155847|T047|AB|478.31|ICD9CM|Vocal paral unilat part|Vocal paral unilat part +C0155848|T047|PT|478.32|ICD9CM|Unilateral paralysis of vocal cords or larynx, complete|Unilateral paralysis of vocal cords or larynx, complete +C0155848|T047|AB|478.32|ICD9CM|Vocal paral unilat total|Vocal paral unilat total +C0155849|T047|PT|478.33|ICD9CM|Bilateral paralysis of vocal cords or larynx, partial|Bilateral paralysis of vocal cords or larynx, partial +C0155849|T047|AB|478.33|ICD9CM|Vocal paral bilat part|Vocal paral bilat part +C0155850|T047|PT|478.34|ICD9CM|Bilateral paralysis of vocal cords or larynx, complete|Bilateral paralysis of vocal cords or larynx, complete +C0155850|T047|AB|478.34|ICD9CM|Vocal paral bilat total|Vocal paral bilat total +C0155851|T047|PT|478.4|ICD9CM|Polyp of vocal cord or larynx|Polyp of vocal cord or larynx +C0155851|T047|AB|478.4|ICD9CM|Vocal cord/larynx polyp|Vocal cord/larynx polyp +C0155852|T047|PT|478.5|ICD9CM|Other diseases of vocal cords|Other diseases of vocal cords +C0155852|T047|AB|478.5|ICD9CM|Vocal cord disease NEC|Vocal cord disease NEC +C0023052|T046|AB|478.6|ICD9CM|Edema of larynx|Edema of larynx +C0023052|T046|PT|478.6|ICD9CM|Edema of larynx|Edema of larynx +C1561612|T047|HT|478.7|ICD9CM|Other diseases of larynx, not elsewhere classified|Other diseases of larynx, not elsewhere classified +C0023051|T047|AB|478.70|ICD9CM|Disease of larynx NOS|Disease of larynx NOS +C0023051|T047|PT|478.70|ICD9CM|Unspecified disease of larynx|Unspecified disease of larynx +C0155853|T047|PT|478.71|ICD9CM|Cellulitis and perichondritis of larynx|Cellulitis and perichondritis of larynx +C0155853|T047|AB|478.71|ICD9CM|Laryngeal cellulitis|Laryngeal cellulitis +C0023075|T047|AB|478.74|ICD9CM|Stenosis of larynx|Stenosis of larynx +C0023075|T047|PT|478.74|ICD9CM|Stenosis of larynx|Stenosis of larynx +C0023066|T047|AB|478.75|ICD9CM|Laryngeal spasm|Laryngeal spasm +C0023066|T047|PT|478.75|ICD9CM|Laryngeal spasm|Laryngeal spasm +C1561612|T047|AB|478.79|ICD9CM|Disease of larynx NEC|Disease of larynx NEC +C1561612|T047|PT|478.79|ICD9CM|Other diseases of larynx, not elsewhere classified|Other diseases of larynx, not elsewhere classified +C0375321|T047|PT|478.8|ICD9CM|Upper respiratory tract hypersensitivity reaction, site unspecified|Upper respiratory tract hypersensitivity reaction, site unspecified +C0375321|T047|AB|478.8|ICD9CM|Urt hypersens react NOS|Urt hypersens react NOS +C0155839|T047|PT|478.9|ICD9CM|Other and unspecified diseases of upper respiratory tract|Other and unspecified diseases of upper respiratory tract +C0155839|T047|AB|478.9|ICD9CM|Upper resp dis NEC/NOS|Upper resp dis NEC/NOS +C0032310|T047|HT|480|ICD9CM|Viral pneumonia|Viral pneumonia +C0155870|T047|HT|480-488.99|ICD9CM|PNEUMONIA AND INFLUENZA|PNEUMONIA AND INFLUENZA +C0276156|T047|AB|480.0|ICD9CM|Adenoviral pneumonia|Adenoviral pneumonia +C0276156|T047|PT|480.0|ICD9CM|Pneumonia due to adenovirus|Pneumonia due to adenovirus +C0152413|T047|PT|480.1|ICD9CM|Pneumonia due to respiratory syncytial virus|Pneumonia due to respiratory syncytial virus +C0152413|T047|AB|480.1|ICD9CM|Resp syncyt viral pneum|Resp syncyt viral pneum +C0276333|T047|AB|480.2|ICD9CM|Parinfluenza viral pneum|Parinfluenza viral pneum +C0276333|T047|PT|480.2|ICD9CM|Pneumonia due to parainfluenza virus|Pneumonia due to parainfluenza virus +C1260415|T047|AB|480.3|ICD9CM|Pneumonia due to SARS|Pneumonia due to SARS +C1260415|T047|PT|480.3|ICD9CM|Pneumonia due to SARS-associated coronavirus|Pneumonia due to SARS-associated coronavirus +C0302377|T047|PT|480.8|ICD9CM|Pneumonia due to other virus not elsewhere classified|Pneumonia due to other virus not elsewhere classified +C0302377|T047|AB|480.8|ICD9CM|Viral pneumonia NEC|Viral pneumonia NEC +C0032310|T047|AB|480.9|ICD9CM|Viral pneumonia NOS|Viral pneumonia NOS +C0032310|T047|PT|480.9|ICD9CM|Viral pneumonia, unspecified|Viral pneumonia, unspecified +C0155862|T047|AB|481|ICD9CM|Pneumococcal pneumonia|Pneumococcal pneumonia +C0155862|T047|PT|481|ICD9CM|Pneumococcal pneumonia [Streptococcus pneumoniae pneumonia]|Pneumococcal pneumonia [Streptococcus pneumoniae pneumonia] +C0155858|T047|HT|482|ICD9CM|Other bacterial pneumonia|Other bacterial pneumonia +C0519030|T047|AB|482.0|ICD9CM|K. pneumoniae pneumonia|K. pneumoniae pneumonia +C0519030|T047|PT|482.0|ICD9CM|Pneumonia due to Klebsiella pneumoniae|Pneumonia due to Klebsiella pneumoniae +C0155860|T047|PT|482.1|ICD9CM|Pneumonia due to Pseudomonas|Pneumonia due to Pseudomonas +C0155860|T047|AB|482.1|ICD9CM|Pseudomonal pneumonia|Pseudomonal pneumonia +C0276026|T047|AB|482.2|ICD9CM|H.influenzae pneumonia|H.influenzae pneumonia +C0276026|T047|PT|482.2|ICD9CM|Pneumonia due to Hemophilus influenzae [H. influenzae]|Pneumonia due to Hemophilus influenzae [H. influenzae] +C0155862|T047|HT|482.3|ICD9CM|Pneumonia due to Streptococcus|Pneumonia due to Streptococcus +C0155862|T047|PT|482.30|ICD9CM|Pneumonia due to Streptococcus, unspecified|Pneumonia due to Streptococcus, unspecified +C0155862|T047|AB|482.30|ICD9CM|Streptococcal pneumn NOS|Streptococcal pneumn NOS +C0375324|T047|PT|482.31|ICD9CM|Pneumonia due to Streptococcus, group A|Pneumonia due to Streptococcus, group A +C0375324|T047|AB|482.31|ICD9CM|Pneumonia strptococcus a|Pneumonia strptococcus a +C0348801|T047|PT|482.32|ICD9CM|Pneumonia due to Streptococcus, group B|Pneumonia due to Streptococcus, group B +C0348801|T047|AB|482.32|ICD9CM|Pneumonia strptococcus b|Pneumonia strptococcus b +C0375326|T047|PT|482.39|ICD9CM|Pneumonia due to other Streptococcus|Pneumonia due to other Streptococcus +C0375326|T047|AB|482.39|ICD9CM|Pneumonia oth strep|Pneumonia oth strep +C0032308|T047|HT|482.4|ICD9CM|Pneumonia due to Staphylococcus|Pneumonia due to Staphylococcus +C0032308|T047|PT|482.40|ICD9CM|Pneumonia due to Staphylococcus, unspecified|Pneumonia due to Staphylococcus, unspecified +C0032308|T047|AB|482.40|ICD9CM|Staphylococcal pneu NOS|Staphylococcal pneu NOS +C2349529|T047|AB|482.41|ICD9CM|Meth sus pneum d/t Staph|Meth sus pneum d/t Staph +C2349529|T047|PT|482.41|ICD9CM|Methicillin susceptible pneumonia due to Staphylococcus aureus|Methicillin susceptible pneumonia due to Staphylococcus aureus +C1142536|T047|AB|482.42|ICD9CM|Meth res pneu d/t Staph|Meth res pneu d/t Staph +C1142536|T047|PT|482.42|ICD9CM|Methicillin resistant pneumonia due to Staphylococcus aureus|Methicillin resistant pneumonia due to Staphylococcus aureus +C0695234|T047|PT|482.49|ICD9CM|Other Staphylococcus pneumonia|Other Staphylococcus pneumonia +C0695234|T047|AB|482.49|ICD9CM|Staph pneumonia NEC|Staph pneumonia NEC +C0032286|T047|HT|482.8|ICD9CM|Pneumonia due to other specified bacteria|Pneumonia due to other specified bacteria +C0375327|T047|AB|482.81|ICD9CM|Pneumonia anaerobes|Pneumonia anaerobes +C0375327|T047|PT|482.81|ICD9CM|Pneumonia due to anaerobes|Pneumonia due to anaerobes +C0276089|T047|PT|482.82|ICD9CM|Pneumonia due to escherichia coli [E. coli]|Pneumonia due to escherichia coli [E. coli] +C0276089|T047|AB|482.82|ICD9CM|Pneumonia e coli|Pneumonia e coli +C0854248|T047|AB|482.83|ICD9CM|Pneumo oth grm-neg bact|Pneumo oth grm-neg bact +C0854248|T047|PT|482.83|ICD9CM|Pneumonia due to other gram-negative bacteria|Pneumonia due to other gram-negative bacteria +C0023241|T047|AB|482.84|ICD9CM|Legionnaires' disease|Legionnaires' disease +C0023241|T047|PT|482.84|ICD9CM|Pneumonia due to Legionnaires' disease|Pneumonia due to Legionnaires' disease +C0032286|T047|PT|482.89|ICD9CM|Pneumonia due to other specified bacteria|Pneumonia due to other specified bacteria +C0032286|T047|AB|482.89|ICD9CM|Pneumonia oth spcf bact|Pneumonia oth spcf bact +C0004626|T047|AB|482.9|ICD9CM|Bacterial pneumonia NOS|Bacterial pneumonia NOS +C0004626|T047|PT|482.9|ICD9CM|Bacterial pneumonia, unspecified|Bacterial pneumonia, unspecified +C0032287|T047|HT|483|ICD9CM|Pneumonia due to other specified organism|Pneumonia due to other specified organism +C0032302|T047|AB|483.0|ICD9CM|Pneu mycplsm pneumoniae|Pneu mycplsm pneumoniae +C0032302|T047|PT|483.0|ICD9CM|Pneumonia due to mycoplasma pneumoniae|Pneumonia due to mycoplasma pneumoniae +C0339959|T047|AB|483.1|ICD9CM|Pneumonia d/t chlamydia|Pneumonia d/t chlamydia +C0339959|T047|PT|483.1|ICD9CM|Pneumonia due to chlamydia|Pneumonia due to chlamydia +C0032287|T047|AB|483.8|ICD9CM|Pneumon oth spec orgnsm|Pneumon oth spec orgnsm +C0032287|T047|PT|483.8|ICD9CM|Pneumonia due to other specified organism|Pneumonia due to other specified organism +C0155863|T047|HT|484|ICD9CM|Pneumonia in infectious diseases classified elsewhere|Pneumonia in infectious diseases classified elsewhere +C0276253|T047|AB|484.1|ICD9CM|Pneum w cytomeg incl dis|Pneum w cytomeg incl dis +C0276253|T047|PT|484.1|ICD9CM|Pneumonia in cytomegalic inclusion disease|Pneumonia in cytomegalic inclusion disease +C0155865|T047|AB|484.3|ICD9CM|Pneumonia in whoop cough|Pneumonia in whoop cough +C0155865|T047|PT|484.3|ICD9CM|Pneumonia in whooping cough|Pneumonia in whooping cough +C0155866|T047|AB|484.5|ICD9CM|Pneumonia in anthrax|Pneumonia in anthrax +C0155866|T047|PT|484.5|ICD9CM|Pneumonia in anthrax|Pneumonia in anthrax +C0155867|T047|AB|484.6|ICD9CM|Pneum in aspergillosis|Pneum in aspergillosis +C0155867|T047|PT|484.6|ICD9CM|Pneumonia in aspergillosis|Pneumonia in aspergillosis +C0155868|T047|AB|484.7|ICD9CM|Pneum in oth sys mycoses|Pneum in oth sys mycoses +C0155868|T047|PT|484.7|ICD9CM|Pneumonia in other systemic mycoses|Pneumonia in other systemic mycoses +C0155869|T047|AB|484.8|ICD9CM|Pneum in infect dis NEC|Pneum in infect dis NEC +C0155869|T047|PT|484.8|ICD9CM|Pneumonia in other infectious diseases classified elsewhere|Pneumonia in other infectious diseases classified elsewhere +C0006285|T047|AB|485|ICD9CM|Bronchopneumonia org NOS|Bronchopneumonia org NOS +C0006285|T047|PT|485|ICD9CM|Bronchopneumonia, organism unspecified|Bronchopneumonia, organism unspecified +C0339951|T047|AB|486|ICD9CM|Pneumonia, organism NOS|Pneumonia, organism NOS +C0339951|T047|PT|486|ICD9CM|Pneumonia, organism unspecified|Pneumonia, organism unspecified +C0021400|T047|HT|487|ICD9CM|Influenza|Influenza +C0155870|T047|AB|487.0|ICD9CM|Influenza with pneumonia|Influenza with pneumonia +C0155870|T047|PT|487.0|ICD9CM|Influenza with pneumonia|Influenza with pneumonia +C0021414|T047|AB|487.1|ICD9CM|Flu w resp manifest NEC|Flu w resp manifest NEC +C0021414|T047|PT|487.1|ICD9CM|Influenza with other respiratory manifestations|Influenza with other respiratory manifestations +C0155871|T047|AB|487.8|ICD9CM|Flu w manifestation NEC|Flu w manifestation NEC +C0155871|T047|PT|487.8|ICD9CM|Influenza with other manifestations|Influenza with other manifestations +C2712970|T047|HT|488|ICD9CM|Influenza due to certain identified influenza viruses|Influenza due to certain identified influenza viruses +C2712881|T047|HT|488.0|ICD9CM|Influenza due to identified avian influenza virus|Influenza due to identified avian influenza virus +C2921085|T047|AB|488.01|ICD9CM|Flu dt iden avian w pneu|Flu dt iden avian w pneu +C2921085|T047|PT|488.01|ICD9CM|Influenza due to identified avian influenza virus with pneumonia|Influenza due to identified avian influenza virus with pneumonia +C2921090|T047|AB|488.02|ICD9CM|Flu dt avian w oth resp|Flu dt avian w oth resp +C2921090|T047|PT|488.02|ICD9CM|Influenza due to identified avian influenza virus with other respiratory manifestations|Influenza due to identified avian influenza virus with other respiratory manifestations +C2887385|T047|AB|488.09|ICD9CM|Flu dt avian manfest NEC|Flu dt avian manfest NEC +C2887385|T047|PT|488.09|ICD9CM|Influenza due to identified avian influenza virus with other manifestations|Influenza due to identified avian influenza virus with other manifestations +C3161430|T047|HT|488.1|ICD9CM|Influenza due to identified 2009 H1N1 influenza virus|Influenza due to identified 2009 H1N1 influenza virus +C3161333|T047|AB|488.11|ICD9CM|Flu dt 2009 H1N1 w pneu|Flu dt 2009 H1N1 w pneu +C3161333|T047|PT|488.11|ICD9CM|Influenza due to identified 2009 H1N1 influenza virus with pneumonia|Influenza due to identified 2009 H1N1 influenza virus with pneumonia +C3161334|T047|AB|488.12|ICD9CM|Flu-2009 H1N1 w oth resp|Flu-2009 H1N1 w oth resp +C3161334|T047|PT|488.12|ICD9CM|Influenza due to identified 2009 H1N1 influenza virus with other respiratory manifestations|Influenza due to identified 2009 H1N1 influenza virus with other respiratory manifestations +C2887395|T047|AB|488.19|ICD9CM|Flu-2009 H1N1 w oth man|Flu-2009 H1N1 w oth man +C2887395|T047|PT|488.19|ICD9CM|Influenza due to identified 2009 H1N1 influenza virus with other manifestations|Influenza due to identified 2009 H1N1 influenza virus with other manifestations +C3161252|T047|HT|488.8|ICD9CM|Influenza due to novel influenza A|Influenza due to novel influenza A +C3161093|T047|AB|488.81|ICD9CM|Flu dt nvl A vrs w pneu|Flu dt nvl A vrs w pneu +C3161093|T047|PT|488.81|ICD9CM|Influenza due to identified novel influenza A virus with pneumonia|Influenza due to identified novel influenza A virus with pneumonia +C3161094|T047|AB|488.82|ICD9CM|Flu dt nvl A w oth resp|Flu dt nvl A w oth resp +C3161094|T047|PT|488.82|ICD9CM|Influenza due to identified novel influenza A virus with other respiratory manifestations|Influenza due to identified novel influenza A virus with other respiratory manifestations +C3161095|T047|AB|488.89|ICD9CM|Flu dt novel A w oth man|Flu dt novel A w oth man +C3161095|T047|PT|488.89|ICD9CM|Influenza due to identified novel influenza A virus with other manifestations|Influenza due to identified novel influenza A virus with other manifestations +C0006277|T047|AB|490|ICD9CM|Bronchitis NOS|Bronchitis NOS +C0006277|T047|PT|490|ICD9CM|Bronchitis, not specified as acute or chronic|Bronchitis, not specified as acute or chronic +C0178278|T047|HT|490-496.99|ICD9CM|CHRONIC OBSTRUCTIVE PULMONARY DISEASE AND ALLIED CONDITIONS|CHRONIC OBSTRUCTIVE PULMONARY DISEASE AND ALLIED CONDITIONS +C0008677|T047|HT|491|ICD9CM|Chronic bronchitis|Chronic bronchitis +C0155872|T047|AB|491.0|ICD9CM|Simple chr bronchitis|Simple chr bronchitis +C0155872|T047|PT|491.0|ICD9CM|Simple chronic bronchitis|Simple chronic bronchitis +C0155873|T047|AB|491.1|ICD9CM|Mucopurul chr bronchitis|Mucopurul chr bronchitis +C0155873|T047|PT|491.1|ICD9CM|Mucopurulent chronic bronchitis|Mucopurulent chronic bronchitis +C0155874|T047|HT|491.2|ICD9CM|Obstructive chronic bronchitis|Obstructive chronic bronchitis +C0155875|T047|AB|491.20|ICD9CM|Obst chr bronc w/o exac|Obst chr bronc w/o exac +C0155875|T047|PT|491.20|ICD9CM|Obstructive chronic bronchitis without exacerbation|Obstructive chronic bronchitis without exacerbation +C4041147|T047|AB|491.21|ICD9CM|Obs chr bronc w(ac) exac|Obs chr bronc w(ac) exac +C4041147|T047|PT|491.21|ICD9CM|Obstructive chronic bronchitis with (acute) exacerbation|Obstructive chronic bronchitis with (acute) exacerbation +C1456131|T047|AB|491.22|ICD9CM|Obs chr bronc w ac bronc|Obs chr bronc w ac bronc +C1456131|T047|PT|491.22|ICD9CM|Obstructive chronic bronchitis with acute bronchitis|Obstructive chronic bronchitis with acute bronchitis +C0029544|T047|AB|491.8|ICD9CM|Chronic bronchitis NEC|Chronic bronchitis NEC +C0029544|T047|PT|491.8|ICD9CM|Other chronic bronchitis|Other chronic bronchitis +C0008677|T047|AB|491.9|ICD9CM|Chronic bronchitis NOS|Chronic bronchitis NOS +C0008677|T047|PT|491.9|ICD9CM|Unspecified chronic bronchitis|Unspecified chronic bronchitis +C0034067|T047|HT|492|ICD9CM|Emphysema|Emphysema +C0152242|T033|AB|492.0|ICD9CM|Emphysematous bleb|Emphysematous bleb +C0152242|T033|PT|492.0|ICD9CM|Emphysematous bleb|Emphysematous bleb +C0029607|T047|AB|492.8|ICD9CM|Emphysema NEC|Emphysema NEC +C0029607|T047|PT|492.8|ICD9CM|Other emphysema|Other emphysema +C0004096|T047|HT|493|ICD9CM|Asthma|Asthma +C0155877|T047|HT|493.0|ICD9CM|Extrinsic asthma|Extrinsic asthma +C0155878|T047|AB|493.00|ICD9CM|Extrinsic asthma NOS|Extrinsic asthma NOS +C0155878|T047|PT|493.00|ICD9CM|Extrinsic asthma, unspecified|Extrinsic asthma, unspecified +C0155879|T047|AB|493.01|ICD9CM|Ext asthma w status asth|Ext asthma w status asth +C0155879|T047|PT|493.01|ICD9CM|Extrinsic asthma with status asthmaticus|Extrinsic asthma with status asthmaticus +C1176339|T047|AB|493.02|ICD9CM|Ext asthma w(acute) exac|Ext asthma w(acute) exac +C1176339|T047|PT|493.02|ICD9CM|Extrinsic asthma with (acute) exacerbation|Extrinsic asthma with (acute) exacerbation +C0155880|T047|HT|493.1|ICD9CM|Intrinsic asthma|Intrinsic asthma +C0155881|T047|AB|493.10|ICD9CM|Intrinsic asthma NOS|Intrinsic asthma NOS +C0155881|T047|PT|493.10|ICD9CM|Intrinsic asthma, unspecified|Intrinsic asthma, unspecified +C0155882|T047|AB|493.11|ICD9CM|Int asthma w status asth|Int asthma w status asth +C0155882|T047|PT|493.11|ICD9CM|Intrinsic asthma with status asthmaticus|Intrinsic asthma with status asthmaticus +C1176340|T047|AB|493.12|ICD9CM|Int asthma w (ac) exac|Int asthma w (ac) exac +C1176340|T047|PT|493.12|ICD9CM|Intrinsic asthma with (acute) exacerbation|Intrinsic asthma with (acute) exacerbation +C0155883|T047|HT|493.2|ICD9CM|Chronic obstructive asthma|Chronic obstructive asthma +C0375333|T047|AB|493.20|ICD9CM|Chronic obst asthma NOS|Chronic obst asthma NOS +C0375333|T047|PT|493.20|ICD9CM|Chronic obstructive asthma, unspecified|Chronic obstructive asthma, unspecified +C0375334|T047|AB|493.21|ICD9CM|Ch ob asthma w stat asth|Ch ob asthma w stat asth +C0375334|T047|PT|493.21|ICD9CM|Chronic obstructive asthma with status asthmaticus|Chronic obstructive asthma with status asthmaticus +C1176341|T047|AB|493.22|ICD9CM|Ch obst asth w (ac) exac|Ch obst asth w (ac) exac +C1176341|T047|PT|493.22|ICD9CM|Chronic obstructive asthma with (acute) exacerbation|Chronic obstructive asthma with (acute) exacerbation +C1260416|T047|HT|493.8|ICD9CM|Other forms of asthma|Other forms of asthma +C0015263|T047|PT|493.81|ICD9CM|Exercise induced bronchospasm|Exercise induced bronchospasm +C0015263|T047|AB|493.81|ICD9CM|Exercse ind bronchospasm|Exercse ind bronchospasm +C0694548|T047|AB|493.82|ICD9CM|Cough variant asthma|Cough variant asthma +C0694548|T047|PT|493.82|ICD9CM|Cough variant asthma|Cough variant asthma +C0004096|T047|HT|493.9|ICD9CM|Asthma, unspecified|Asthma, unspecified +C0155886|T047|AB|493.90|ICD9CM|Asthma NOS|Asthma NOS +C0155886|T047|PT|493.90|ICD9CM|Asthma, unspecified type, unspecified|Asthma, unspecified type, unspecified +C0038218|T047|AB|493.91|ICD9CM|Asthma w status asthmat|Asthma w status asthmat +C0038218|T047|PT|493.91|ICD9CM|Asthma, unspecified type, with status asthmaticus|Asthma, unspecified type, with status asthmaticus +C1176342|T047|AB|493.92|ICD9CM|Asthma NOS w (ac) exac|Asthma NOS w (ac) exac +C1176342|T047|PT|493.92|ICD9CM|Asthma, unspecified type, with (acute) exacerbation|Asthma, unspecified type, with (acute) exacerbation +C0006267|T047|HT|494|ICD9CM|Bronchiectasis|Bronchiectasis +C0878695|T047|AB|494.0|ICD9CM|Bronchiectas w/o ac exac|Bronchiectas w/o ac exac +C0878695|T047|PT|494.0|ICD9CM|Bronchiectasis without acute exacerbation|Bronchiectasis without acute exacerbation +C0878696|T047|AB|494.1|ICD9CM|Bronchiectasis w ac exac|Bronchiectasis w ac exac +C0878696|T047|PT|494.1|ICD9CM|Bronchiectasis with acute exacerbation|Bronchiectasis with acute exacerbation +C0002390|T047|HT|495|ICD9CM|Extrinsic allergic alveolitis|Extrinsic allergic alveolitis +C0015634|T047|AB|495.0|ICD9CM|Farmers' lung|Farmers' lung +C0015634|T047|PT|495.0|ICD9CM|Farmers' lung|Farmers' lung +C0004681|T047|AB|495.1|ICD9CM|Bagassosis|Bagassosis +C0004681|T047|PT|495.1|ICD9CM|Bagassosis|Bagassosis +C0005592|T047|AB|495.2|ICD9CM|Bird-fanciers' lung|Bird-fanciers' lung +C0005592|T047|PT|495.2|ICD9CM|Bird-fanciers' lung|Bird-fanciers' lung +C0152108|T047|AB|495.3|ICD9CM|Suberosis|Suberosis +C0152108|T047|PT|495.3|ICD9CM|Suberosis|Suberosis +C0155888|T047|AB|495.4|ICD9CM|Malt workers' lung|Malt workers' lung +C0155888|T047|PT|495.4|ICD9CM|Malt workers' lung|Malt workers' lung +C0155889|T047|AB|495.5|ICD9CM|Mushroom workers' lung|Mushroom workers' lung +C0155889|T047|PT|495.5|ICD9CM|Mushroom workers' lung|Mushroom workers' lung +C0155890|T047|AB|495.6|ICD9CM|Mapl bark-stripprs' lung|Mapl bark-stripprs' lung +C0155890|T047|PT|495.6|ICD9CM|Maple bark-strippers' lung|Maple bark-strippers' lung +C0155891|T047|AB|495.7|ICD9CM|"ventilation" pneumonit|"ventilation" pneumonit +C0155891|T047|PT|495.7|ICD9CM|"Ventilation" pneumonitis|"Ventilation" pneumonitis +C0155892|T047|AB|495.8|ICD9CM|Allerg alveol/pneum NEC|Allerg alveol/pneum NEC +C0155892|T047|PT|495.8|ICD9CM|Other specified allergic alveolitis and pneumonitis|Other specified allergic alveolitis and pneumonitis +C0002390|T047|AB|495.9|ICD9CM|Allerg alveol/pneum NOS|Allerg alveol/pneum NOS +C0002390|T047|PT|495.9|ICD9CM|Unspecified allergic alveolitis and pneumonitis|Unspecified allergic alveolitis and pneumonitis +C0302378|T047|AB|496|ICD9CM|Chr airway obstruct NEC|Chr airway obstruct NEC +C0302378|T047|PT|496|ICD9CM|Chronic airway obstruction, not elsewhere classified|Chronic airway obstruction, not elsewhere classified +C0003165|T047|AB|500|ICD9CM|Coal workers' pneumocon|Coal workers' pneumocon +C0003165|T047|PT|500|ICD9CM|Coal workers' pneumoconiosis|Coal workers' pneumoconiosis +C0178279|T047|HT|500-508.99|ICD9CM|PNEUMOCONIOSES AND OTHER LUNG DISEASES DUE TO EXTERNAL AGENTS|PNEUMOCONIOSES AND OTHER LUNG DISEASES DUE TO EXTERNAL AGENTS +C0003949|T047|AB|501|ICD9CM|Asbestosis|Asbestosis +C0003949|T047|PT|501|ICD9CM|Asbestosis|Asbestosis +C0037116|T047|PT|502|ICD9CM|Pneumoconiosis due to other silica or silicates|Pneumoconiosis due to other silica or silicates +C0037116|T047|AB|502|ICD9CM|Silica pneumocon NEC|Silica pneumocon NEC +C0032274|T047|AB|503|ICD9CM|Inorg dust pneumocon NEC|Inorg dust pneumocon NEC +C0032274|T047|PT|503|ICD9CM|Pneumoconiosis due to other inorganic dust|Pneumoconiosis due to other inorganic dust +C0032318|T047|AB|504|ICD9CM|Dust pneumonopathy NEC|Dust pneumonopathy NEC +C0032318|T047|PT|504|ICD9CM|Pneumonopathy due to inhalation of other dust|Pneumonopathy due to inhalation of other dust +C0032273|T047|AB|505|ICD9CM|Pneumoconiosis NOS|Pneumoconiosis NOS +C0032273|T047|PT|505|ICD9CM|Pneumoconiosis, unspecified|Pneumoconiosis, unspecified +C0155893|T047|HT|506|ICD9CM|Respiratory conditions due to chemical fumes and vapors|Respiratory conditions due to chemical fumes and vapors +C0155894|T047|PT|506.0|ICD9CM|Bronchitis and pneumonitis due to fumes and vapors|Bronchitis and pneumonitis due to fumes and vapors +C0155894|T047|AB|506.0|ICD9CM|Fum/vapor bronc/pneumon|Fum/vapor bronc/pneumon +C0155895|T047|PT|506.1|ICD9CM|Acute pulmonary edema due to fumes and vapors|Acute pulmonary edema due to fumes and vapors +C0155895|T047|AB|506.1|ICD9CM|Fum/vapor ac pulm edema|Fum/vapor ac pulm edema +C0155896|T047|AB|506.2|ICD9CM|Fum/vapor up resp inflam|Fum/vapor up resp inflam +C0155896|T047|PT|506.2|ICD9CM|Upper respiratory inflammation due to fumes and vapors|Upper respiratory inflammation due to fumes and vapors +C0155897|T047|AB|506.3|ICD9CM|Fum/vap ac resp cond NEC|Fum/vap ac resp cond NEC +C0155897|T047|PT|506.3|ICD9CM|Other acute and subacute respiratory conditions due to fumes and vapors|Other acute and subacute respiratory conditions due to fumes and vapors +C0155898|T047|PT|506.4|ICD9CM|Chronic respiratory conditions due to fumes and vapors|Chronic respiratory conditions due to fumes and vapors +C0155898|T047|AB|506.4|ICD9CM|Fum/vapor chr resp cond|Fum/vapor chr resp cond +C0041881|T047|AB|506.9|ICD9CM|Fum/vapor resp cond NOS|Fum/vapor resp cond NOS +C0041881|T047|PT|506.9|ICD9CM|Unspecified respiratory conditions due to fumes and vapors|Unspecified respiratory conditions due to fumes and vapors +C0155899|T047|HT|507|ICD9CM|Pneumonitis due to solids and liquids|Pneumonitis due to solids and liquids +C0260334|T047|AB|507.0|ICD9CM|Food/vomit pneumonitis|Food/vomit pneumonitis +C0260334|T047|PT|507.0|ICD9CM|Pneumonitis due to inhalation of food or vomitus|Pneumonitis due to inhalation of food or vomitus +C0494675|T047|AB|507.1|ICD9CM|Oil/essence pneumonitis|Oil/essence pneumonitis +C0494675|T047|PT|507.1|ICD9CM|Pneumonitis due to inhalation of oils and essences|Pneumonitis due to inhalation of oils and essences +C0155900|T047|PT|507.8|ICD9CM|Pneumonitis due to other solids and liquids|Pneumonitis due to other solids and liquids +C0155900|T047|AB|507.8|ICD9CM|Solid/liq pneumonit NEC|Solid/liq pneumonit NEC +C0155901|T046|HT|508|ICD9CM|Respiratory conditions due to other and unspecified external agents|Respiratory conditions due to other and unspecified external agents +C0155902|T046|AB|508.0|ICD9CM|Ac pul manif d/t radiat|Ac pul manif d/t radiat +C0155902|T046|PT|508.0|ICD9CM|Acute pulmonary manifestations due to radiation|Acute pulmonary manifestations due to radiation +C0155903|T046|AB|508.1|ICD9CM|Chr pul manif d/t radiat|Chr pul manif d/t radiat +C0155903|T046|PT|508.1|ICD9CM|Chronic and other pulmonary manifestations due to radiation|Chronic and other pulmonary manifestations due to radiation +C3161096|T047|AB|508.2|ICD9CM|Resp cond dt smoke inhal|Resp cond dt smoke inhal +C3161096|T047|PT|508.2|ICD9CM|Respiratory conditions due to smoke inhalation|Respiratory conditions due to smoke inhalation +C0155904|T047|AB|508.8|ICD9CM|Resp cond: ext agent NEC|Resp cond: ext agent NEC +C0155904|T047|PT|508.8|ICD9CM|Respiratory conditions due to other specified external agents|Respiratory conditions due to other specified external agents +C0155905|T047|AB|508.9|ICD9CM|Resp cond: ext agent NOS|Resp cond: ext agent NOS +C0155905|T047|PT|508.9|ICD9CM|Respiratory conditions due to unspecified external agent|Respiratory conditions due to unspecified external agent +C0014009|T047|HT|510|ICD9CM|Empyema|Empyema +C0029582|T047|HT|510-519.99|ICD9CM|OTHER DISEASES OF RESPIRATORY SYSTEM|OTHER DISEASES OF RESPIRATORY SYSTEM +C0740253|T047|AB|510.0|ICD9CM|Empyema with fistula|Empyema with fistula +C0740253|T047|PT|510.0|ICD9CM|Empyema with fistula|Empyema with fistula +C0730032|T047|AB|510.9|ICD9CM|Empyema w/o fistula|Empyema w/o fistula +C0730032|T047|PT|510.9|ICD9CM|Empyema without mention of fistula|Empyema without mention of fistula +C0032231|T047|HT|511|ICD9CM|Pleurisy|Pleurisy +C0032232|T047|AB|511.0|ICD9CM|Pleurisy w/o effus or TB|Pleurisy w/o effus or TB +C0032232|T047|PT|511.0|ICD9CM|Pleurisy without mention of effusion or current tuberculosis|Pleurisy without mention of effusion or current tuberculosis +C0155906|T047|AB|511.1|ICD9CM|Bact pleur/effus not TB|Bact pleur/effus not TB +C0155906|T047|PT|511.1|ICD9CM|Pleurisy with effusion, with mention of a bacterial cause other than tuberculosis|Pleurisy with effusion, with mention of a bacterial cause other than tuberculosis +C0029799|T047|HT|511.8|ICD9CM|Other specified forms of pleural effusion, except tuberculous|Other specified forms of pleural effusion, except tuberculous +C0080032|T047|PT|511.81|ICD9CM|Malignant pleural effusion|Malignant pleural effusion +C0080032|T047|AB|511.81|ICD9CM|Malignant pleural effusn|Malignant pleural effusn +C2349532|T047|AB|511.89|ICD9CM|Effusion NEC exc tb|Effusion NEC exc tb +C2349532|T047|PT|511.89|ICD9CM|Other specified forms of effusion, except tuberculous|Other specified forms of effusion, except tuberculous +C0032227|T047|AB|511.9|ICD9CM|Pleural effusion NOS|Pleural effusion NOS +C0032227|T047|PT|511.9|ICD9CM|Unspecified pleural effusion|Unspecified pleural effusion +C3161433|T047|HT|512|ICD9CM|Pneumothorax and air leak|Pneumothorax and air leak +C0155907|T047|AB|512.0|ICD9CM|Spont tens pneumothorax|Spont tens pneumothorax +C0155907|T047|PT|512.0|ICD9CM|Spontaneous tension pneumothorax|Spontaneous tension pneumothorax +C0375336|T047|AB|512.1|ICD9CM|Iatrogenic pneumothorax|Iatrogenic pneumothorax +C0375336|T047|PT|512.1|ICD9CM|Iatrogenic pneumothorax|Iatrogenic pneumothorax +C3161097|T046|AB|512.2|ICD9CM|Postoperative air leak|Postoperative air leak +C3161097|T046|PT|512.2|ICD9CM|Postoperative air leak|Postoperative air leak +C3161434|T047|HT|512.8|ICD9CM|Other pneumothorax and air leak|Other pneumothorax and air leak +C1868193|T047|AB|512.81|ICD9CM|Prim spont pneumothorax|Prim spont pneumothorax +C1868193|T047|PT|512.81|ICD9CM|Primary spontaneous pneumothorax|Primary spontaneous pneumothorax +C3161098|T047|AB|512.82|ICD9CM|Sec spont pneumothorax|Sec spont pneumothorax +C3161098|T047|PT|512.82|ICD9CM|Secondary spontaneous pneumothorax|Secondary spontaneous pneumothorax +C0264557|T047|AB|512.83|ICD9CM|Chronic pneumothorax|Chronic pneumothorax +C0264557|T047|PT|512.83|ICD9CM|Chronic pneumothorax|Chronic pneumothorax +C3161099|T033|AB|512.84|ICD9CM|Other air leak|Other air leak +C3161099|T033|PT|512.84|ICD9CM|Other air leak|Other air leak +C0348708|T047|AB|512.89|ICD9CM|Other pneumothorax|Other pneumothorax +C0348708|T047|PT|512.89|ICD9CM|Other pneumothorax|Other pneumothorax +C0155908|T047|HT|513|ICD9CM|Abscess of lung and mediastinum|Abscess of lung and mediastinum +C0024110|T047|AB|513.0|ICD9CM|Abscess of lung|Abscess of lung +C0024110|T047|PT|513.0|ICD9CM|Abscess of lung|Abscess of lung +C0155909|T047|AB|513.1|ICD9CM|Abscess of mediastinum|Abscess of mediastinum +C0155909|T047|PT|513.1|ICD9CM|Abscess of mediastinum|Abscess of mediastinum +C0155910|T047|AB|514|ICD9CM|Pulm congest/hypostasis|Pulm congest/hypostasis +C0155910|T047|PT|514|ICD9CM|Pulmonary congestion and hypostasis|Pulmonary congestion and hypostasis +C0175999|T047|AB|515|ICD9CM|Postinflam pulm fibrosis|Postinflam pulm fibrosis +C0175999|T047|PT|515|ICD9CM|Postinflammatory pulmonary fibrosis|Postinflammatory pulmonary fibrosis +C0859814|T047|HT|516|ICD9CM|Other alveolar and parietoalveolar pneumonopathy|Other alveolar and parietoalveolar pneumonopathy +C0034050|T047|AB|516.0|ICD9CM|Pul alveolar proteinosis|Pul alveolar proteinosis +C0034050|T047|PT|516.0|ICD9CM|Pulmonary alveolar proteinosis|Pulmonary alveolar proteinosis +C0020807|T047|AB|516.1|ICD9CM|Idio pulm hemosiderosis|Idio pulm hemosiderosis +C0020807|T047|PT|516.1|ICD9CM|Idiopathic pulmonary hemosiderosis|Idiopathic pulmonary hemosiderosis +C0155912|T047|AB|516.2|ICD9CM|Pulm alveolar microlith|Pulm alveolar microlith +C0155912|T047|PT|516.2|ICD9CM|Pulmonary alveolar microlithiasis|Pulmonary alveolar microlithiasis +C2350236|T047|HT|516.3|ICD9CM|Idiopathic interstitial pneumonia|Idiopathic interstitial pneumonia +C3161100|T046|AB|516.30|ICD9CM|Idiopath inters pneu NOS|Idiopath inters pneu NOS +C3161100|T046|PT|516.30|ICD9CM|Idiopathic interstitial pneumonia, not otherwise specified|Idiopathic interstitial pneumonia, not otherwise specified +C1800706|T047|AB|516.31|ICD9CM|Idiopath pulmon fibrosis|Idiopath pulmon fibrosis +C1800706|T047|PT|516.31|ICD9CM|Idiopathic pulmonary fibrosis|Idiopathic pulmonary fibrosis +C3161102|T047|AB|516.32|ICD9CM|Idio non-spec inter pneu|Idio non-spec inter pneu +C3161102|T047|PT|516.32|ICD9CM|Idiopathic non-specific interstitial pneumonitis|Idiopathic non-specific interstitial pneumonitis +C1279945|T047|AB|516.33|ICD9CM|Acute interstitial pneum|Acute interstitial pneum +C1279945|T047|PT|516.33|ICD9CM|Acute interstitial pneumonitis|Acute interstitial pneumonitis +C0238378|T047|AB|516.34|ICD9CM|Resp brncio interst lung|Resp brncio interst lung +C0238378|T047|PT|516.34|ICD9CM|Respiratory bronchiolitis interstitial lung disease|Respiratory bronchiolitis interstitial lung disease +C3161103|T047|PT|516.35|ICD9CM|Idiopathic lymphoid interstitial pneumonia|Idiopathic lymphoid interstitial pneumonia +C3161103|T047|AB|516.35|ICD9CM|Idiopth lym interst pneu|Idiopth lym interst pneu +C0242770|T047|AB|516.36|ICD9CM|Cryptogenic organiz pneu|Cryptogenic organiz pneu +C0242770|T047|PT|516.36|ICD9CM|Cryptogenic organizing pneumonia|Cryptogenic organizing pneumonia +C0238378|T047|PT|516.37|ICD9CM|Desquamative interstitial pneumonia|Desquamative interstitial pneumonia +C0238378|T047|AB|516.37|ICD9CM|Desquamatv interst pneu|Desquamatv interst pneu +C0751674|T191|PT|516.4|ICD9CM|Lymphangioleiomyomatosis|Lymphangioleiomyomatosis +C0751674|T191|AB|516.4|ICD9CM|Lymphangioleiomyomatosis|Lymphangioleiomyomatosis +C3161104|T047|AB|516.5|ICD9CM|Adlt pul Langs cell hist|Adlt pul Langs cell hist +C3161104|T047|PT|516.5|ICD9CM|Adult pulmonary Langerhans cell histiocytosis|Adult pulmonary Langerhans cell histiocytosis +C3161253|T047|HT|516.6|ICD9CM|Interstitial lung diseases of childhood|Interstitial lung diseases of childhood +C3161105|T047|AB|516.61|ICD9CM|Neuroend cell hyprpl inf|Neuroend cell hyprpl inf +C3161105|T047|PT|516.61|ICD9CM|Neuroendocrine cell hyperplasia of infancy|Neuroendocrine cell hyperplasia of infancy +C3161106|T047|AB|516.62|ICD9CM|Pulm interstitl glycogen|Pulm interstitl glycogen +C3161106|T047|PT|516.62|ICD9CM|Pulmonary interstitial glycogenosis|Pulmonary interstitial glycogenosis +C3161107|T047|AB|516.63|ICD9CM|Surfactant mutation lung|Surfactant mutation lung +C3161107|T047|PT|516.63|ICD9CM|Surfactant mutations of the lung|Surfactant mutations of the lung +C3161108|T047|AB|516.64|ICD9CM|Alv cap dysp w vn misaln|Alv cap dysp w vn misaln +C3161108|T047|PT|516.64|ICD9CM|Alveolar capillary dysplasia with vein misalignment|Alveolar capillary dysplasia with vein misalignment +C3161109|T047|AB|516.69|ICD9CM|Oth intrst lung dis chld|Oth intrst lung dis chld +C3161109|T047|PT|516.69|ICD9CM|Other interstitial lung diseases of childhood|Other interstitial lung diseases of childhood +C0155913|T047|AB|516.8|ICD9CM|Alveol pneumonopathy NEC|Alveol pneumonopathy NEC +C0155913|T047|PT|516.8|ICD9CM|Other specified alveolar and parietoalveolar pneumonopathies|Other specified alveolar and parietoalveolar pneumonopathies +C0155914|T047|AB|516.9|ICD9CM|Alveol pneumonopathy NOS|Alveol pneumonopathy NOS +C0155914|T047|PT|516.9|ICD9CM|Unspecified alveolar and parietoalveolar pneumonopathy|Unspecified alveolar and parietoalveolar pneumonopathy +C0155915|T047|HT|517|ICD9CM|Lung involvement in conditions classified elsewhere|Lung involvement in conditions classified elsewhere +C0152450|T047|AB|517.1|ICD9CM|Rheumatic pneumonia|Rheumatic pneumonia +C0152450|T047|PT|517.1|ICD9CM|Rheumatic pneumonia|Rheumatic pneumonia +C0339904|T047|PT|517.2|ICD9CM|Lung involvement in systemic sclerosis|Lung involvement in systemic sclerosis +C0339904|T047|AB|517.2|ICD9CM|Syst sclerosis lung dis|Syst sclerosis lung dis +C0742343|T047|AB|517.3|ICD9CM|Acute chest syndrome|Acute chest syndrome +C0742343|T047|PT|517.3|ICD9CM|Acute chest syndrome|Acute chest syndrome +C0155917|T047|AB|517.8|ICD9CM|Lung involv in oth dis|Lung involv in oth dis +C0155917|T047|PT|517.8|ICD9CM|Lung involvement in other diseases classified elsewhere|Lung involvement in other diseases classified elsewhere +C0348712|T047|HT|518|ICD9CM|Other diseases of lung|Other diseases of lung +C0004144|T046|AB|518.0|ICD9CM|Pulmonary collapse|Pulmonary collapse +C0004144|T046|PT|518.0|ICD9CM|Pulmonary collapse|Pulmonary collapse +C1370824|T047|AB|518.1|ICD9CM|Interstitial emphysema|Interstitial emphysema +C1370824|T047|PT|518.1|ICD9CM|Interstitial emphysema|Interstitial emphysema +C0155918|T047|AB|518.2|ICD9CM|Compensatory emphysema|Compensatory emphysema +C0155918|T047|PT|518.2|ICD9CM|Compensatory emphysema|Compensatory emphysema +C0034068|T047|AB|518.3|ICD9CM|Pulmonary eosinophilia|Pulmonary eosinophilia +C0034068|T047|PT|518.3|ICD9CM|Pulmonary eosinophilia|Pulmonary eosinophilia +C0155919|T047|PT|518.4|ICD9CM|Acute edema of lung, unspecified|Acute edema of lung, unspecified +C0155919|T047|AB|518.4|ICD9CM|Acute lung edema NOS|Acute lung edema NOS +C0034076|T047|HT|518.5|ICD9CM|Pulmonary insufficiency following trauma and surgery|Pulmonary insufficiency following trauma and surgery +C3161110|T047|AB|518.51|ICD9CM|Ac resp flr fol trma/srg|Ac resp flr fol trma/srg +C3161110|T047|PT|518.51|ICD9CM|Acute respiratory failure following trauma and surgery|Acute respiratory failure following trauma and surgery +C3161111|T046|AB|518.52|ICD9CM|Ot pul insuf fol trm/srg|Ot pul insuf fol trm/srg +C3161111|T046|PT|518.52|ICD9CM|Other pulmonary insufficiency, not elsewhere classified, following trauma and surgery|Other pulmonary insufficiency, not elsewhere classified, following trauma and surgery +C3161112|T047|AB|518.53|ICD9CM|Ac/chr rsp flr fol tr/sg|Ac/chr rsp flr fol tr/sg +C3161112|T047|PT|518.53|ICD9CM|Acute and chronic respiratory failure following trauma and surgery|Acute and chronic respiratory failure following trauma and surgery +C0004031|T047|PT|518.6|ICD9CM|Allergic bronchopulmonary aspergillosis|Allergic bronchopulmonary aspergillosis +C0004031|T047|AB|518.6|ICD9CM|Alrgc brncpul asprglosis|Alrgc brncpul asprglosis +C0948343|T047|AB|518.7|ICD9CM|Transfsn rel ac lung inj|Transfsn rel ac lung inj +C0948343|T047|PT|518.7|ICD9CM|Transfusion related acute lung injury (TRALI)|Transfusion related acute lung injury (TRALI) +C0348712|T047|HT|518.8|ICD9CM|Other diseases of lung|Other diseases of lung +C0264490|T047|PT|518.81|ICD9CM|Acute respiratory failure|Acute respiratory failure +C0264490|T047|AB|518.81|ICD9CM|Acute respiratry failure|Acute respiratry failure +C0302379|T047|AB|518.82|ICD9CM|Other pulmonary insuff|Other pulmonary insuff +C0302379|T047|PT|518.82|ICD9CM|Other pulmonary insufficiency, not elsewhere classified|Other pulmonary insufficiency, not elsewhere classified +C0264492|T047|AB|518.83|ICD9CM|Chronic respiratory fail|Chronic respiratory fail +C0264492|T047|PT|518.83|ICD9CM|Chronic respiratory failure|Chronic respiratory failure +C0264491|T047|AB|518.84|ICD9CM|Acute & chronc resp fail|Acute & chronc resp fail +C0264491|T047|PT|518.84|ICD9CM|Acute and chronic respiratory failure|Acute and chronic respiratory failure +C0029579|T047|PT|518.89|ICD9CM|Other diseases of lung, not elsewhere classified|Other diseases of lung, not elsewhere classified +C0029579|T047|AB|518.89|ICD9CM|Other lung disease NEC|Other lung disease NEC +C0029582|T047|HT|519|ICD9CM|Other diseases of respiratory system|Other diseases of respiratory system +C0155921|T046|HT|519.0|ICD9CM|Tracheostomy complications|Tracheostomy complications +C0155921|T046|AB|519.00|ICD9CM|Tracheostomy comp NOS|Tracheostomy comp NOS +C0155921|T046|PT|519.00|ICD9CM|Tracheostomy complication, unspecified|Tracheostomy complication, unspecified +C0695236|T047|PT|519.01|ICD9CM|Infection of tracheostomy|Infection of tracheostomy +C0695236|T047|AB|519.01|ICD9CM|Tracheostomy infection|Tracheostomy infection +C0695237|T046|PT|519.02|ICD9CM|Mechanical complication of tracheostomy|Mechanical complication of tracheostomy +C0695237|T046|AB|519.02|ICD9CM|Tracheostomy - mech comp|Tracheostomy - mech comp +C0695238|T046|PT|519.09|ICD9CM|Other tracheostomy complications|Other tracheostomy complications +C0695238|T046|AB|519.09|ICD9CM|Tracheostomy comp NEC|Tracheostomy comp NEC +C0869292|T047|HT|519.1|ICD9CM|Other diseases of trachea and bronchus, not elsewhere classified|Other diseases of trachea and bronchus, not elsewhere classified +C0741804|T047|PT|519.11|ICD9CM|Acute bronchospasm|Acute bronchospasm +C0741804|T047|AB|519.11|ICD9CM|Acute bronchospasm|Acute bronchospasm +C1719483|T047|PT|519.19|ICD9CM|Other diseases of trachea and bronchus|Other diseases of trachea and bronchus +C1719483|T047|AB|519.19|ICD9CM|Trachea & bronch dis NEC|Trachea & bronch dis NEC +C0025064|T047|AB|519.2|ICD9CM|Mediastinitis|Mediastinitis +C0025064|T047|PT|519.2|ICD9CM|Mediastinitis|Mediastinitis +C0869275|T047|AB|519.3|ICD9CM|Mediastinum disease NEC|Mediastinum disease NEC +C0869275|T047|PT|519.3|ICD9CM|Other diseases of mediastinum, not elsewhere classified|Other diseases of mediastinum, not elsewhere classified +C0152097|T047|AB|519.4|ICD9CM|Disorders of diaphragm|Disorders of diaphragm +C0152097|T047|PT|519.4|ICD9CM|Disorders of diaphragm|Disorders of diaphragm +C0869452|T047|PT|519.8|ICD9CM|Other diseases of respiratory system, not elsewhere classified|Other diseases of respiratory system, not elsewhere classified +C0869452|T047|AB|519.8|ICD9CM|Resp system disease NEC|Resp system disease NEC +C0035204|T047|AB|519.9|ICD9CM|Resp system disease NOS|Resp system disease NOS +C0035204|T047|PT|519.9|ICD9CM|Unspecified disease of respiratory system|Unspecified disease of respiratory system +C0155922|T047|HT|520|ICD9CM|Disorders of tooth development and eruption|Disorders of tooth development and eruption +C0348717|T047|HT|520-529.99|ICD9CM|DISEASES OF ORAL CAVITY, SALIVARY GLANDS, AND JAWS|DISEASES OF ORAL CAVITY, SALIVARY GLANDS, AND JAWS +C0012242|T047|HT|520-579.99|ICD9CM|DISEASES OF THE DIGESTIVE SYSTEM|DISEASES OF THE DIGESTIVE SYSTEM +C0399352|T019|AB|520.0|ICD9CM|Anodontia|Anodontia +C0399352|T019|PT|520.0|ICD9CM|Anodontia|Anodontia +C0040457|T033|AB|520.1|ICD9CM|Supernumerary teeth|Supernumerary teeth +C0040457|T033|PT|520.1|ICD9CM|Supernumerary teeth|Supernumerary teeth +C0000770|T190|AB|520.2|ICD9CM|Abnormal tooth size/form|Abnormal tooth size/form +C0000770|T190|PT|520.2|ICD9CM|Abnormalities of size and form of teeth|Abnormalities of size and form of teeth +C0026618|T047|AB|520.3|ICD9CM|Mottled teeth|Mottled teeth +C0026618|T047|PT|520.3|ICD9CM|Mottled teeth|Mottled teeth +C3495540|T047|PT|520.4|ICD9CM|Disturbances of tooth formation|Disturbances of tooth formation +C3495540|T047|AB|520.4|ICD9CM|Tooth formation disturb|Tooth formation disturb +C0868848|T019|AB|520.5|ICD9CM|Heredit tooth struct NEC|Heredit tooth struct NEC +C0868848|T019|PT|520.5|ICD9CM|Hereditary disturbances in tooth structure, not elsewhere classified|Hereditary disturbances in tooth structure, not elsewhere classified +C0012767|T047|PT|520.6|ICD9CM|Disturbances in tooth eruption|Disturbances in tooth eruption +C0012767|T047|AB|520.6|ICD9CM|Tooth eruption disturb|Tooth eruption disturb +C0039437|T033|AB|520.7|ICD9CM|Teething syndrome|Teething syndrome +C0039437|T033|PT|520.7|ICD9CM|Teething syndrome|Teething syndrome +C0155924|T047|PT|520.8|ICD9CM|Other specified disorders of tooth development and eruption|Other specified disorders of tooth development and eruption +C0155924|T047|AB|520.8|ICD9CM|Tooth devel/erup dis NEC|Tooth devel/erup dis NEC +C0155922|T047|AB|520.9|ICD9CM|Tooth devel/erup dis NOS|Tooth devel/erup dis NOS +C0155922|T047|PT|520.9|ICD9CM|Unspecified disorder of tooth development and eruption|Unspecified disorder of tooth development and eruption +C0155926|T047|HT|521|ICD9CM|Diseases of hard tissues of teeth|Diseases of hard tissues of teeth +C0011334|T047|HT|521.0|ICD9CM|Dental caries|Dental caries +C0011334|T047|AB|521.00|ICD9CM|Dental caries NOS|Dental caries NOS +C0011334|T047|PT|521.00|ICD9CM|Dental caries, unspecified|Dental caries, unspecified +C0266853|T047|AB|521.01|ICD9CM|Dental caries - enamel|Dental caries - enamel +C0266853|T047|PT|521.01|ICD9CM|Dental caries limited to enamel|Dental caries limited to enamel +C0266846|T047|AB|521.02|ICD9CM|Dental caries - dentine|Dental caries - dentine +C0266846|T047|PT|521.02|ICD9CM|Dental caries extending into dentine|Dental caries extending into dentine +C0399396|T047|AB|521.03|ICD9CM|Dental caries - pulp|Dental caries - pulp +C0399396|T047|PT|521.03|ICD9CM|Dental caries extending into pulp|Dental caries extending into pulp +C0266848|T047|PT|521.04|ICD9CM|Arrested dental caries|Arrested dental caries +C0266848|T047|AB|521.04|ICD9CM|Dental caries - arrested|Dental caries - arrested +C0341004|T047|AB|521.05|ICD9CM|Odontoclasia|Odontoclasia +C0341004|T047|PT|521.05|ICD9CM|Odontoclasia|Odontoclasia +C1456144|T047|PT|521.06|ICD9CM|Dental caries pit and fissure|Dental caries pit and fissure +C1456144|T047|AB|521.06|ICD9CM|Dentl caries-pit/fissure|Dentl caries-pit/fissure +C1456145|T047|PT|521.07|ICD9CM|Dental caries of smooth surface|Dental caries of smooth surface +C1456145|T047|AB|521.07|ICD9CM|Dentl caries-smooth surf|Dentl caries-smooth surf +C0162644|T047|PT|521.08|ICD9CM|Dental caries of root surface|Dental caries of root surface +C0162644|T047|AB|521.08|ICD9CM|Dental caries-root surf|Dental caries-root surf +C0348719|T047|AB|521.09|ICD9CM|Dental caries NEC|Dental caries NEC +C0348719|T047|PT|521.09|ICD9CM|Other dental caries|Other dental caries +C1456153|T047|HT|521.1|ICD9CM|Excessive dental attrition [approximal wear] [occlusal wear]|Excessive dental attrition [approximal wear] [occlusal wear] +C1456147|T047|AB|521.10|ICD9CM|Excessive attrition NOS|Excessive attrition NOS +C1456147|T047|PT|521.10|ICD9CM|Excessive attrition, unspecified|Excessive attrition, unspecified +C1456148|T047|AB|521.11|ICD9CM|Excess attrition-enamel|Excess attrition-enamel +C1456148|T047|PT|521.11|ICD9CM|Excessive attrition, limited to enamel|Excessive attrition, limited to enamel +C1456149|T047|AB|521.12|ICD9CM|Excess attrition-dentine|Excess attrition-dentine +C1456149|T047|PT|521.12|ICD9CM|Excessive attrition, extending into dentine|Excessive attrition, extending into dentine +C1456150|T047|AB|521.13|ICD9CM|Excessive attrition-pulp|Excessive attrition-pulp +C1456150|T047|PT|521.13|ICD9CM|Excessive attrition, extending into pulp|Excessive attrition, extending into pulp +C1456151|T047|AB|521.14|ICD9CM|Excess attrition-local|Excess attrition-local +C1456151|T047|PT|521.14|ICD9CM|Excessive attrition, localized|Excessive attrition, localized +C1456152|T047|AB|521.15|ICD9CM|Excess attrition-general|Excess attrition-general +C1456152|T047|PT|521.15|ICD9CM|Excessive attrition, generalized|Excessive attrition, generalized +C0040428|T046|HT|521.2|ICD9CM|Abrasion of teeth|Abrasion of teeth +C1302752|T037|AB|521.20|ICD9CM|Abrasion NOS|Abrasion NOS +C1302752|T037|PT|521.20|ICD9CM|Abrasion, unspecified|Abrasion, unspecified +C1456155|T047|AB|521.21|ICD9CM|Abrasion-enamel|Abrasion-enamel +C1456155|T047|PT|521.21|ICD9CM|Abrasion, limited to enamel|Abrasion, limited to enamel +C1456156|T047|AB|521.22|ICD9CM|Abrasion-dentine|Abrasion-dentine +C1456156|T047|PT|521.22|ICD9CM|Abrasion, extending into dentine|Abrasion, extending into dentine +C1456157|T047|AB|521.23|ICD9CM|Abrasion-pulp|Abrasion-pulp +C1456157|T047|PT|521.23|ICD9CM|Abrasion, extending into pulp|Abrasion, extending into pulp +C1456158|T047|AB|521.24|ICD9CM|Abrasion-localized|Abrasion-localized +C1456158|T047|PT|521.24|ICD9CM|Abrasion, localized|Abrasion, localized +C1456159|T047|AB|521.25|ICD9CM|Abrasion-generalized|Abrasion-generalized +C1456159|T047|PT|521.25|ICD9CM|Abrasion, generalized|Abrasion, generalized +C0040436|T047|HT|521.3|ICD9CM|Erosion of teeth|Erosion of teeth +C1456160|T047|AB|521.30|ICD9CM|Erosion NOS|Erosion NOS +C1456160|T047|PT|521.30|ICD9CM|Erosion, unspecified|Erosion, unspecified +C1456161|T047|AB|521.31|ICD9CM|Erosion-enamel|Erosion-enamel +C1456161|T047|PT|521.31|ICD9CM|Erosion, limited to enamel|Erosion, limited to enamel +C1456162|T047|AB|521.32|ICD9CM|Erosion-dentine|Erosion-dentine +C1456162|T047|PT|521.32|ICD9CM|Erosion, extending into dentine|Erosion, extending into dentine +C1456163|T047|AB|521.33|ICD9CM|Erosion-pulp|Erosion-pulp +C1456163|T047|PT|521.33|ICD9CM|Erosion, extending into pulp|Erosion, extending into pulp +C1456164|T047|AB|521.34|ICD9CM|Erosion-localized|Erosion-localized +C1456164|T047|PT|521.34|ICD9CM|Erosion, localized|Erosion, localized +C1456165|T047|AB|521.35|ICD9CM|Erosion-generalized|Erosion-generalized +C1456165|T047|PT|521.35|ICD9CM|Erosion, generalized|Erosion, generalized +C0040451|T047|HT|521.4|ICD9CM|Pathological tooth resorption|Pathological tooth resorption +C1456166|T047|AB|521.40|ICD9CM|Path resorption NOS|Path resorption NOS +C1456166|T047|PT|521.40|ICD9CM|Pathological resorption, unspecified|Pathological resorption, unspecified +C1456167|T047|AB|521.41|ICD9CM|Path resorption-internal|Path resorption-internal +C1456167|T047|PT|521.41|ICD9CM|Pathological resorption, internal|Pathological resorption, internal +C0266878|T047|AB|521.42|ICD9CM|Path resorption-external|Path resorption-external +C0266878|T047|PT|521.42|ICD9CM|Pathological resorption, external|Pathological resorption, external +C1456169|T047|PT|521.49|ICD9CM|Other pathological resorption|Other pathological resorption +C1456169|T047|AB|521.49|ICD9CM|Path resorption NEC|Path resorption NEC +C0020441|T047|AB|521.5|ICD9CM|Hypercementosis|Hypercementosis +C0020441|T047|PT|521.5|ICD9CM|Hypercementosis|Hypercementosis +C0155930|T047|AB|521.6|ICD9CM|Ankylosis of teeth|Ankylosis of teeth +C0155930|T047|PT|521.6|ICD9CM|Ankylosis of teeth|Ankylosis of teeth +C1456170|T047|AB|521.7|ICD9CM|Intrin posteruptv color|Intrin posteruptv color +C1456170|T047|PT|521.7|ICD9CM|Intrinsic posteruptive color changes|Intrinsic posteruptive color changes +C0029770|T047|HT|521.8|ICD9CM|Other specified diseases of hard tissues of teeth|Other specified diseases of hard tissues of teeth +C0010261|T033|PT|521.81|ICD9CM|Cracked tooth|Cracked tooth +C0010261|T033|AB|521.81|ICD9CM|Cracked tooth|Cracked tooth +C0029770|T047|AB|521.89|ICD9CM|Dis hard tiss teeth NEC|Dis hard tiss teeth NEC +C0029770|T047|PT|521.89|ICD9CM|Other specific diseases of hard tissues of teeth|Other specific diseases of hard tissues of teeth +C0155926|T047|AB|521.9|ICD9CM|Hard tiss dis teeth NOS|Hard tiss dis teeth NOS +C0155926|T047|PT|521.9|ICD9CM|Unspecified disease of hard tissues of teeth|Unspecified disease of hard tissues of teeth +C0155933|T047|HT|522|ICD9CM|Diseases of pulp and periapical tissues|Diseases of pulp and periapical tissues +C0034103|T047|AB|522.0|ICD9CM|Pulpitis|Pulpitis +C0034103|T047|PT|522.0|ICD9CM|Pulpitis|Pulpitis +C0011407|T047|PT|522.1|ICD9CM|Necrosis of the pulp|Necrosis of the pulp +C0011407|T047|AB|522.1|ICD9CM|Necrosis of tooth pulp|Necrosis of tooth pulp +C0034100|T047|PT|522.2|ICD9CM|Pulp degeneration|Pulp degeneration +C0034100|T047|AB|522.2|ICD9CM|Tooth pulp degeneration|Tooth pulp degeneration +C0399408|T047|AB|522.3|ICD9CM|Abn hard tiss-tooth pulp|Abn hard tiss-tooth pulp +C0399408|T047|PT|522.3|ICD9CM|Abnormal hard tissue formation in pulp|Abnormal hard tissue formation in pulp +C0155934|T047|AB|522.4|ICD9CM|Ac apical periodontitis|Ac apical periodontitis +C0155934|T047|PT|522.4|ICD9CM|Acute apical periodontitis of pulpal origin|Acute apical periodontitis of pulpal origin +C0399424|T047|AB|522.5|ICD9CM|Periapical abscess|Periapical abscess +C0399424|T047|PT|522.5|ICD9CM|Periapical abscess without sinus|Periapical abscess without sinus +C0392492|T047|AB|522.6|ICD9CM|Chr apical periodontitis|Chr apical periodontitis +C0392492|T047|PT|522.6|ICD9CM|Chronic apical periodontitis|Chronic apical periodontitis +C0266909|T047|AB|522.7|ICD9CM|Periapical absc w sinus|Periapical absc w sinus +C0266909|T047|PT|522.7|ICD9CM|Periapical abscess with sinus|Periapical abscess with sinus +C0034543|T047|AB|522.8|ICD9CM|Radicular cyst|Radicular cyst +C0034543|T047|PT|522.8|ICD9CM|Radicular cyst|Radicular cyst +C0155935|T047|PT|522.9|ICD9CM|Other and unspecified diseases of pulp and periapical tissues|Other and unspecified diseases of pulp and periapical tissues +C0155935|T047|AB|522.9|ICD9CM|Pulp/periapical dis NEC|Pulp/periapical dis NEC +C0155936|T047|HT|523|ICD9CM|Gingival and periodontal diseases|Gingival and periodontal diseases +C0155937|T047|HT|523.0|ICD9CM|Acute gingivitis|Acute gingivitis +C1719490|T047|AB|523.00|ICD9CM|Acute gingititis, plaque|Acute gingititis, plaque +C1719490|T047|PT|523.00|ICD9CM|Acute gingivitis, plaque induced|Acute gingivitis, plaque induced +C1719491|T047|AB|523.01|ICD9CM|Ac gingivitis,nonplaque|Ac gingivitis,nonplaque +C1719491|T047|PT|523.01|ICD9CM|Acute gingivitis, non-plaque induced|Acute gingivitis, non-plaque induced +C0008684|T047|HT|523.1|ICD9CM|Chronic gingivitis|Chronic gingivitis +C1719717|T047|AB|523.10|ICD9CM|Chronc gingititis,plaque|Chronc gingititis,plaque +C1719717|T047|PT|523.10|ICD9CM|Chronic gingivitis, plaque induced|Chronic gingivitis, plaque induced +C1719492|T047|AB|523.11|ICD9CM|Chr gingivitis-nonplaque|Chr gingivitis-nonplaque +C1719492|T047|PT|523.11|ICD9CM|Chronic gingivitis, non-plaque induced|Chronic gingivitis, non-plaque induced +C0017572|T047|HT|523.2|ICD9CM|Gingival recession|Gingival recession +C0017572|T047|AB|523.20|ICD9CM|Gingival recession NOS|Gingival recession NOS +C0017572|T047|PT|523.20|ICD9CM|Gingival recession, unspecified|Gingival recession, unspecified +C1456171|T047|AB|523.21|ICD9CM|Gingival recess-minimal|Gingival recess-minimal +C1456171|T047|PT|523.21|ICD9CM|Gingival recession, minimal|Gingival recession, minimal +C1456172|T047|AB|523.22|ICD9CM|Gingival recess-moderate|Gingival recess-moderate +C1456172|T047|PT|523.22|ICD9CM|Gingival recession, moderate|Gingival recession, moderate +C1456173|T047|AB|523.23|ICD9CM|Gingival recess-severe|Gingival recess-severe +C1456173|T047|PT|523.23|ICD9CM|Gingival recession, severe|Gingival recession, severe +C0266916|T047|AB|523.24|ICD9CM|Gingival recession-local|Gingival recession-local +C0266916|T047|PT|523.24|ICD9CM|Gingival recession, localized|Gingival recession, localized +C0266915|T047|AB|523.25|ICD9CM|Gingival recess-general|Gingival recess-general +C0266915|T047|PT|523.25|ICD9CM|Gingival recession, generalized|Gingival recession, generalized +C0001342|T047|HT|523.3|ICD9CM|Aggressive and acute periodontitis|Aggressive and acute periodontitis +C1719493|T047|AB|523.30|ICD9CM|Aggres periodontitis NOS|Aggres periodontitis NOS +C1719493|T047|PT|523.30|ICD9CM|Aggressive periodontitis, unspecified|Aggressive periodontitis, unspecified +C1719494|T047|AB|523.31|ICD9CM|Aggres periodontitis,loc|Aggres periodontitis,loc +C1719494|T047|PT|523.31|ICD9CM|Aggressive periodontitis, localized|Aggressive periodontitis, localized +C1719495|T047|AB|523.32|ICD9CM|Aggres periodontitis,gen|Aggres periodontitis,gen +C1719495|T047|PT|523.32|ICD9CM|Aggressive periodontitis, generalized|Aggressive periodontitis, generalized +C0001342|T047|PT|523.33|ICD9CM|Acute periodontitis|Acute periodontitis +C0001342|T047|AB|523.33|ICD9CM|Acute periodontitis|Acute periodontitis +C0266929|T047|HT|523.4|ICD9CM|Chronic periodontitis|Chronic periodontitis +C0266929|T047|AB|523.40|ICD9CM|Chronc periodontitis NOS|Chronc periodontitis NOS +C0266929|T047|PT|523.40|ICD9CM|Chronic periodontitis, unspecified|Chronic periodontitis, unspecified +C1719497|T047|AB|523.41|ICD9CM|Chr periodontitis, local|Chr periodontitis, local +C1719497|T047|PT|523.41|ICD9CM|Chronic periodontitis, localized|Chronic periodontitis, localized +C1719498|T047|AB|523.42|ICD9CM|Chron periodontitis,gen|Chron periodontitis,gen +C1719498|T047|PT|523.42|ICD9CM|Chronic periodontitis, generalized|Chronic periodontitis, generalized +C0600298|T047|AB|523.5|ICD9CM|Periodontosis|Periodontosis +C0600298|T047|PT|523.5|ICD9CM|Periodontosis|Periodontosis +C0011346|T047|AB|523.6|ICD9CM|Accretions on teeth|Accretions on teeth +C0011346|T047|PT|523.6|ICD9CM|Accretions on teeth|Accretions on teeth +C0029821|T047|PT|523.8|ICD9CM|Other specified periodontal diseases|Other specified periodontal diseases +C0029821|T047|AB|523.8|ICD9CM|Periodontal disease NEC|Periodontal disease NEC +C0155936|T047|AB|523.9|ICD9CM|Gingiv/periodont dis NOS|Gingiv/periodont dis NOS +C0155936|T047|PT|523.9|ICD9CM|Unspecified gingival and periodontal disease|Unspecified gingival and periodontal disease +C0155938|T019|HT|524|ICD9CM|Dentofacial anomalies, including malocclusion|Dentofacial anomalies, including malocclusion +C0024508|T019|HT|524.0|ICD9CM|Major anomalies of jaw size|Major anomalies of jaw size +C0024508|T019|PT|524.00|ICD9CM|Major anomalies of jaw size, unspecified anomaly|Major anomalies of jaw size, unspecified anomaly +C0024508|T019|AB|524.00|ICD9CM|Unspcf anomaly jaw size|Unspcf anomaly jaw size +C2227090|T033|PT|524.01|ICD9CM|Major anomalies of jaw size, maxillary hyperplasia|Major anomalies of jaw size, maxillary hyperplasia +C2227090|T033|AB|524.01|ICD9CM|Maxillary hyperplasia|Maxillary hyperplasia +C0302501|T190|PT|524.02|ICD9CM|Major anomalies of jaw size, mandibular hyperplasia|Major anomalies of jaw size, mandibular hyperplasia +C0302501|T190|AB|524.02|ICD9CM|Mandibular hyperplasia|Mandibular hyperplasia +C0240310|T019|PT|524.03|ICD9CM|Major anomalies of jaw size, maxillary hypoplasia|Major anomalies of jaw size, maxillary hypoplasia +C0240310|T019|AB|524.03|ICD9CM|Maxillary hypoplasia|Maxillary hypoplasia +C4024589|T190|PT|524.04|ICD9CM|Major anomalies of jaw size, mandibular hypoplasia|Major anomalies of jaw size, mandibular hypoplasia +C4024589|T190|AB|524.04|ICD9CM|Mandibular hypoplasia|Mandibular hypoplasia +C0341029|T190|AB|524.05|ICD9CM|Macrogenia|Macrogenia +C0341029|T190|PT|524.05|ICD9CM|Major anomalies of jaw size, macrogenia|Major anomalies of jaw size, macrogenia +C0341030|T190|PT|524.06|ICD9CM|Major anomalies of jaw size, microgenia|Major anomalies of jaw size, microgenia +C0341030|T190|AB|524.06|ICD9CM|Microgenia|Microgenia +C1456175|T047|PT|524.07|ICD9CM|Excessive tuberosity of jaw|Excessive tuberosity of jaw +C1456175|T047|AB|524.07|ICD9CM|Excessive tuberosity-jaw|Excessive tuberosity-jaw +C0375340|T019|PT|524.09|ICD9CM|Major anomalies of jaw size, other specified anomaly|Major anomalies of jaw size, other specified anomaly +C0375340|T019|AB|524.09|ICD9CM|Oth spcf anmly jaw size|Oth spcf anmly jaw size +C0003110|T190|HT|524.1|ICD9CM|Anomalies of relationship of jaw to cranial base|Anomalies of relationship of jaw to cranial base +C0003110|T190|PT|524.10|ICD9CM|Anomalies of relationship of jaw to cranial base, unspecified anomaly|Anomalies of relationship of jaw to cranial base, unspecified anomaly +C0003110|T190|AB|524.10|ICD9CM|Unspcf anm jaw cranl bse|Unspcf anm jaw cranl bse +C0399519|T033|PT|524.11|ICD9CM|Anomalies of relationship of jaw to cranial base, maxillary asymmetry|Anomalies of relationship of jaw to cranial base, maxillary asymmetry +C0399519|T033|AB|524.11|ICD9CM|Maxillary asymmetry|Maxillary asymmetry +C0375343|T190|PT|524.12|ICD9CM|Anomalies of relationship of jaw to cranial base, other jaw asymmetry|Anomalies of relationship of jaw to cranial base, other jaw asymmetry +C0375343|T190|AB|524.12|ICD9CM|Other jaw asymmetry|Other jaw asymmetry +C0375344|T190|PT|524.19|ICD9CM|Anomalies of relationship of jaw to cranial base, other specified anomaly|Anomalies of relationship of jaw to cranial base, other specified anomaly +C0375344|T190|AB|524.19|ICD9CM|Spcfd anom jaw cranl bse|Spcfd anom jaw cranl bse +C0155939|T190|HT|524.2|ICD9CM|Anomalies of dental arch relationship|Anomalies of dental arch relationship +C0155939|T190|AB|524.20|ICD9CM|Anomaly dental arch NOS|Anomaly dental arch NOS +C0155939|T190|PT|524.20|ICD9CM|Unspecified anomaly of dental arch relationship|Unspecified anomaly of dental arch relationship +C0399523|T047|AB|524.21|ICD9CM|Malocc- Angle's class I|Malocc- Angle's class I +C0399523|T047|PT|524.21|ICD9CM|Malocclusion, Angle's class I|Malocclusion, Angle's class I +C3714535|T190|AB|524.22|ICD9CM|Malocc-Angle's class II|Malocc-Angle's class II +C3714535|T190|PT|524.22|ICD9CM|Malocclusion, Angle's class II|Malocclusion, Angle's class II +C0399526|T019|AB|524.23|ICD9CM|Malocc-Angle's class III|Malocc-Angle's class III +C0399526|T019|PT|524.23|ICD9CM|Malocclusion, Angle's class III|Malocclusion, Angle's class III +C1456180|T033|PT|524.24|ICD9CM|Open anterior occlusal relationship|Open anterior occlusal relationship +C1456180|T033|AB|524.24|ICD9CM|Open anterior occlusion|Open anterior occlusion +C1456181|T033|PT|524.25|ICD9CM|Open posterior occlusal relationship|Open posterior occlusal relationship +C1456181|T033|AB|524.25|ICD9CM|Open posterior occlusion|Open posterior occlusion +C1456182|T047|AB|524.26|ICD9CM|Excess horizontl overlap|Excess horizontl overlap +C1456182|T047|PT|524.26|ICD9CM|Excessive horizontal overlap|Excessive horizontal overlap +C1456183|T047|AB|524.27|ICD9CM|Reverse articulation|Reverse articulation +C1456183|T190|AB|524.27|ICD9CM|Reverse articulation|Reverse articulation +C1456183|T047|PT|524.27|ICD9CM|Reverse articulation|Reverse articulation +C1456183|T190|PT|524.27|ICD9CM|Reverse articulation|Reverse articulation +C1456186|T047|AB|524.28|ICD9CM|Anom interarch distance|Anom interarch distance +C1456186|T047|PT|524.28|ICD9CM|Anomalies of interarch distance|Anomalies of interarch distance +C1456189|T047|AB|524.29|ICD9CM|Anomaly dental arch NEC|Anomaly dental arch NEC +C1456189|T047|PT|524.29|ICD9CM|Other anomalies of dental arch relationship|Other anomalies of dental arch relationship +C1456201|T190|HT|524.3|ICD9CM|Anomalies of tooth position of fully erupted teeth|Anomalies of tooth position of fully erupted teeth +C0155940|T190|AB|524.30|ICD9CM|Tooth position anom NOS|Tooth position anom NOS +C0155940|T190|PT|524.30|ICD9CM|Unspecified anomaly of tooth position|Unspecified anomaly of tooth position +C0040433|T033|AB|524.31|ICD9CM|Crowding of teeth|Crowding of teeth +C0040433|T033|PT|524.31|ICD9CM|Crowding of teeth|Crowding of teeth +C1456191|T047|PT|524.32|ICD9CM|Excessive spacing of teeth|Excessive spacing of teeth +C1456191|T047|AB|524.32|ICD9CM|Excessive spacing-teeth|Excessive spacing-teeth +C1456192|T190|PT|524.33|ICD9CM|Horizontal displacement of teeth|Horizontal displacement of teeth +C1456192|T190|AB|524.33|ICD9CM|Horizontl displace-teeth|Horizontl displace-teeth +C1456194|T190|AB|524.34|ICD9CM|Vertical displace-teeth|Vertical displace-teeth +C1456194|T190|PT|524.34|ICD9CM|Vertical displacement of teeth|Vertical displacement of teeth +C0266071|T019|AB|524.35|ICD9CM|Rotation of teeth|Rotation of teeth +C0266071|T019|PT|524.35|ICD9CM|Rotation of tooth/teeth|Rotation of tooth/teeth +C1456197|T047|AB|524.36|ICD9CM|Insuf interocclusl-teeth|Insuf interocclusl-teeth +C1456197|T047|PT|524.36|ICD9CM|Insufficient interocclusal distance of teeth (ridge)|Insufficient interocclusal distance of teeth (ridge) +C1456198|T190|AB|524.37|ICD9CM|Exces interocclusl-teeth|Exces interocclusl-teeth +C1456198|T190|PT|524.37|ICD9CM|Excessive interocclusal distance of teeth|Excessive interocclusal distance of teeth +C1456200|T047|PT|524.39|ICD9CM|Other anomalies of tooth position|Other anomalies of tooth position +C1456200|T047|AB|524.39|ICD9CM|Tooth position anom NEC|Tooth position anom NEC +C0024636|T190|AB|524.4|ICD9CM|Malocclusion NOS|Malocclusion NOS +C0024636|T190|PT|524.4|ICD9CM|Malocclusion, unspecified|Malocclusion, unspecified +C0266932|T190|HT|524.5|ICD9CM|Dentofacial functional abnormalities|Dentofacial functional abnormalities +C0266932|T190|AB|524.50|ICD9CM|Dentofac funct abnor NOS|Dentofac funct abnor NOS +C0266932|T190|PT|524.50|ICD9CM|Dentofacial functional abnormality, unspecified|Dentofacial functional abnormality, unspecified +C0266933|T047|AB|524.51|ICD9CM|Abnormal jaw closure|Abnormal jaw closure +C0266933|T047|PT|524.51|ICD9CM|Abnormal jaw closure|Abnormal jaw closure +C0521590|T033|PT|524.52|ICD9CM|Limited mandibular range of motion|Limited mandibular range of motion +C0521590|T033|AB|524.52|ICD9CM|Limited mandibular ROM|Limited mandibular ROM +C1456203|T047|AB|524.53|ICD9CM|Dev open/close mandible|Dev open/close mandible +C1456203|T047|PT|524.53|ICD9CM|Deviation in opening and closing of the mandible|Deviation in opening and closing of the mandible +C1291056|T190|AB|524.54|ICD9CM|Insuff anterior guidance|Insuff anterior guidance +C1291056|T190|PT|524.54|ICD9CM|Insufficient anterior guidance|Insufficient anterior guidance +C1456205|T047|AB|524.55|ICD9CM|Centric occl intrcsp dis|Centric occl intrcsp dis +C1456205|T047|PT|524.55|ICD9CM|Centric occlusion maximum intercuspation discrepancy|Centric occlusion maximum intercuspation discrepancy +C2895155|T190|PT|524.56|ICD9CM|Non-working side interference|Non-working side interference +C2895155|T190|AB|524.56|ICD9CM|Nonwork side interfrnce|Nonwork side interfrnce +C1456207|T033|PT|524.57|ICD9CM|Lack of posterior occlusal support|Lack of posterior occlusal support +C1456207|T033|AB|524.57|ICD9CM|Lack post occlsl support|Lack post occlsl support +C1456208|T047|AB|524.59|ICD9CM|Dentofac funct abnor NEC|Dentofac funct abnor NEC +C1456208|T047|PT|524.59|ICD9CM|Other dentofacial functional abnormalities|Other dentofacial functional abnormalities +C0039494|T047|HT|524.6|ICD9CM|Temporomandibular joint disorders|Temporomandibular joint disorders +C0039494|T047|PT|524.60|ICD9CM|Temporomandibular joint disorders, unspecified|Temporomandibular joint disorders, unspecified +C0039494|T047|AB|524.60|ICD9CM|TMJ disorders NOS|TMJ disorders NOS +C0155942|T047|AB|524.61|ICD9CM|Adhesns/ankylosis - TMJ|Adhesns/ankylosis - TMJ +C0155942|T047|PT|524.61|ICD9CM|Temporomandibular joint disorders, adhesions and ankylosis (bony or fibrous)|Temporomandibular joint disorders, adhesions and ankylosis (bony or fibrous) +C0155943|T047|AB|524.62|ICD9CM|Arthralgia TMJ|Arthralgia TMJ +C0155943|T047|PT|524.62|ICD9CM|Temporomandibular joint disorders, arthralgia of temporomandibular joint|Temporomandibular joint disorders, arthralgia of temporomandibular joint +C0685925|T047|AB|524.63|ICD9CM|Articular disc disorder|Articular disc disorder +C0685925|T047|PT|524.63|ICD9CM|Temporomandibular joint disorders, articular disc disorder (reducing or non-reducing)|Temporomandibular joint disorders, articular disc disorder (reducing or non-reducing) +C1456213|T047|PT|524.64|ICD9CM|Temporomandibular joint sounds on opening and/or closing the jaw|Temporomandibular joint sounds on opening and/or closing the jaw +C1456213|T047|AB|524.64|ICD9CM|TMJ sounds opn/close jaw|TMJ sounds opn/close jaw +C0155945|T047|AB|524.69|ICD9CM|Other specf TMJ disordrs|Other specf TMJ disordrs +C0155945|T047|PT|524.69|ICD9CM|Other specified temporomandibular joint disorders|Other specified temporomandibular joint disorders +C0375346|T190|HT|524.7|ICD9CM|Dental alveolar anomalies|Dental alveolar anomalies +C0375346|T190|PT|524.70|ICD9CM|Dental alveolar anomalies, unspecified alveolar anomaly|Dental alveolar anomalies, unspecified alveolar anomaly +C0375346|T190|AB|524.70|ICD9CM|Unspf dent alvelr anmaly|Unspf dent alvelr anmaly +C0375347|T190|AB|524.71|ICD9CM|Alveolar maxil hyprplsia|Alveolar maxil hyprplsia +C0375347|T190|PT|524.71|ICD9CM|Alveolar maxillary hyperplasia|Alveolar maxillary hyperplasia +C0375348|T190|AB|524.72|ICD9CM|Alveolar mandib hyprplas|Alveolar mandib hyprplas +C0375348|T190|PT|524.72|ICD9CM|Alveolar mandibular hyperplasia|Alveolar mandibular hyperplasia +C0375349|T190|AB|524.73|ICD9CM|Alveolar maxil hypoplsia|Alveolar maxil hypoplsia +C0375349|T190|PT|524.73|ICD9CM|Alveolar maxillary hypoplasia|Alveolar maxillary hypoplasia +C0375350|T190|AB|524.74|ICD9CM|Alveolar mandb hypoplsia|Alveolar mandb hypoplsia +C0375350|T190|PT|524.74|ICD9CM|Alveolar mandibular hypoplasia|Alveolar mandibular hypoplasia +C1456214|T047|AB|524.75|ICD9CM|Vertical displace teeth|Vertical displace teeth +C1456214|T047|PT|524.75|ICD9CM|Vertical displacement of alveolus and teeth|Vertical displacement of alveolus and teeth +C1456216|T033|AB|524.76|ICD9CM|Occlusal plane deviation|Occlusal plane deviation +C1456216|T033|PT|524.76|ICD9CM|Occlusal plane deviation|Occlusal plane deviation +C0859118|T190|AB|524.79|ICD9CM|Oth spcf alveolar anmaly|Oth spcf alveolar anmaly +C0859118|T190|PT|524.79|ICD9CM|Other specified alveolar anomaly|Other specified alveolar anomaly +C0155946|T047|HT|524.8|ICD9CM|Other specified dentofacial anomalies|Other specified dentofacial anomalies +C1456217|T047|AB|524.81|ICD9CM|Anterior soft tiss impg|Anterior soft tiss impg +C1456217|T047|PT|524.81|ICD9CM|Anterior soft tissue impingement|Anterior soft tissue impingement +C1456218|T047|AB|524.82|ICD9CM|Posterior soft tiss impg|Posterior soft tiss impg +C1456218|T047|PT|524.82|ICD9CM|Posterior soft tissue impingement|Posterior soft tissue impingement +C0155946|T047|AB|524.89|ICD9CM|Dentofacial anomaly NEC|Dentofacial anomaly NEC +C0155946|T047|PT|524.89|ICD9CM|Other specified dentofacial anomalies|Other specified dentofacial anomalies +C0155947|T190|AB|524.9|ICD9CM|Dentofacial anomaly NOS|Dentofacial anomaly NOS +C0155947|T190|PT|524.9|ICD9CM|Unspecified dentofacial anomalies|Unspecified dentofacial anomalies +C0155948|T047|HT|525|ICD9CM|Other diseases and conditions of the teeth and supporting structures|Other diseases and conditions of the teeth and supporting structures +C0155949|T047|AB|525.0|ICD9CM|Exfoliation of teeth|Exfoliation of teeth +C0155949|T047|PT|525.0|ICD9CM|Exfoliation of teeth due to systemic causes|Exfoliation of teeth due to systemic causes +C1168590|T047|HT|525.1|ICD9CM|Loss of teeth due to trauma, extraction, or periodontal disease|Loss of teeth due to trauma, extraction, or periodontal disease +C0080233|T020|AB|525.10|ICD9CM|Acq absence of teeth NOS|Acq absence of teeth NOS +C0080233|T020|PT|525.10|ICD9CM|Acquired absence of teeth, unspecified|Acquired absence of teeth, unspecified +C0949130|T047|AB|525.11|ICD9CM|Loss of teeth d/t trauma|Loss of teeth d/t trauma +C0949130|T047|PT|525.11|ICD9CM|Loss of teeth due to trauma|Loss of teeth due to trauma +C0949131|T047|PT|525.12|ICD9CM|Loss of teeth due to periodontal disease|Loss of teeth due to periodontal disease +C0949131|T047|AB|525.12|ICD9CM|Loss teeth d/t peri dis|Loss teeth d/t peri dis +C0949132|T047|AB|525.13|ICD9CM|Loss of teeth d/t caries|Loss of teeth d/t caries +C0949132|T047|PT|525.13|ICD9CM|Loss of teeth due to caries|Loss of teeth due to caries +C0949133|T047|AB|525.19|ICD9CM|Loss of teeth NEC|Loss of teeth NEC +C0949133|T047|PT|525.19|ICD9CM|Other loss of teeth|Other loss of teeth +C0155951|T047|HT|525.2|ICD9CM|Atrophy of edentulous alveolar ridge|Atrophy of edentulous alveolar ridge +C1456219|T047|AB|525.20|ICD9CM|Atrophy alvlar ridge NOS|Atrophy alvlar ridge NOS +C1456219|T047|PT|525.20|ICD9CM|Unspecified atrophy of edentulous alveolar ridge|Unspecified atrophy of edentulous alveolar ridge +C1456221|T047|AB|525.21|ICD9CM|Atrophy mandible-minimal|Atrophy mandible-minimal +C1456221|T047|PT|525.21|ICD9CM|Minimal atrophy of the mandible|Minimal atrophy of the mandible +C1456222|T047|AB|525.22|ICD9CM|Atrophy mandible-modrate|Atrophy mandible-modrate +C1456222|T047|PT|525.22|ICD9CM|Moderate atrophy of the mandible|Moderate atrophy of the mandible +C1456223|T047|AB|525.23|ICD9CM|Atrophy mandible-severe|Atrophy mandible-severe +C1456223|T047|PT|525.23|ICD9CM|Severe atrophy of the mandible|Severe atrophy of the mandible +C1456224|T047|AB|525.24|ICD9CM|Atrophy maxilla-minimal|Atrophy maxilla-minimal +C1456224|T047|PT|525.24|ICD9CM|Minimal atrophy of the maxilla|Minimal atrophy of the maxilla +C1456225|T047|AB|525.25|ICD9CM|Atrophy maxilla-moderate|Atrophy maxilla-moderate +C1456225|T047|PT|525.25|ICD9CM|Moderate atrophy of the maxilla|Moderate atrophy of the maxilla +C1456226|T047|AB|525.26|ICD9CM|Atrophy maxilla-severe|Atrophy maxilla-severe +C1456226|T047|PT|525.26|ICD9CM|Severe atrophy of the maxilla|Severe atrophy of the maxilla +C0155952|T047|AB|525.3|ICD9CM|Retained dental root|Retained dental root +C0155952|T047|PT|525.3|ICD9CM|Retained dental root|Retained dental root +C1561613|T047|HT|525.4|ICD9CM|Complete edentulism|Complete edentulism +C1561613|T047|AB|525.40|ICD9CM|Complete edentulism NOS|Complete edentulism NOS +C1561613|T047|PT|525.40|ICD9CM|Complete edentulism, unspecified|Complete edentulism, unspecified +C1561614|T047|AB|525.41|ICD9CM|Comp edentulism,class I|Comp edentulism,class I +C1561614|T047|PT|525.41|ICD9CM|Complete edentulism, class I|Complete edentulism, class I +C1561615|T047|AB|525.42|ICD9CM|Comp edentulism,class II|Comp edentulism,class II +C1561615|T047|PT|525.42|ICD9CM|Complete edentulism, class II|Complete edentulism, class II +C1561616|T047|AB|525.43|ICD9CM|Comp edentulsm,class III|Comp edentulsm,class III +C1561616|T047|PT|525.43|ICD9CM|Complete edentulism, class III|Complete edentulism, class III +C1561617|T047|AB|525.44|ICD9CM|Comp edentulism,class IV|Comp edentulism,class IV +C1561617|T047|PT|525.44|ICD9CM|Complete edentulism, class IV|Complete edentulism, class IV +C1561619|T047|HT|525.5|ICD9CM|Partial edentulism|Partial edentulism +C1561619|T047|AB|525.50|ICD9CM|Partial edentulism NOS|Partial edentulism NOS +C1561619|T047|PT|525.50|ICD9CM|Partial edentulism, unspecified|Partial edentulism, unspecified +C1561620|T047|AB|525.51|ICD9CM|Part edentulism,class I|Part edentulism,class I +C1561620|T047|PT|525.51|ICD9CM|Partial edentulism, class I|Partial edentulism, class I +C1561621|T047|AB|525.52|ICD9CM|Part edentulism,class II|Part edentulism,class II +C1561621|T047|PT|525.52|ICD9CM|Partial edentulism, class II|Partial edentulism, class II +C1561622|T047|AB|525.53|ICD9CM|Part edentulsm,class III|Part edentulsm,class III +C1561622|T047|PT|525.53|ICD9CM|Partial edentulism, class III|Partial edentulism, class III +C1561623|T047|AB|525.54|ICD9CM|Part edentulism,class IV|Part edentulism,class IV +C1561623|T047|PT|525.54|ICD9CM|Partial edentulism, class IV|Partial edentulism, class IV +C1719519|T033|HT|525.6|ICD9CM|Unsatisfactory restoration of tooth|Unsatisfactory restoration of tooth +C1719507|T033|AB|525.60|ICD9CM|Unsat restore tooth NOS|Unsat restore tooth NOS +C1719507|T033|PT|525.60|ICD9CM|Unspecified unsatisfactory restoration of tooth|Unspecified unsatisfactory restoration of tooth +C1290744|T047|AB|525.61|ICD9CM|Open restoration margins|Open restoration margins +C1290744|T047|PT|525.61|ICD9CM|Open restoration margins|Open restoration margins +C2188200|T047|AB|525.62|ICD9CM|Overhang dental restore|Overhang dental restore +C2188200|T047|PT|525.62|ICD9CM|Unrepairable overhanging of dental restorative materials|Unrepairable overhanging of dental restorative materials +C1719512|T047|PT|525.63|ICD9CM|Fractured dental restorative material without loss of material|Fractured dental restorative material without loss of material +C1719512|T047|AB|525.63|ICD9CM|Fx dental mat w/o loss|Fx dental mat w/o loss +C1719513|T046|PT|525.64|ICD9CM|Fractured dental restorative material with loss of material|Fractured dental restorative material with loss of material +C1719513|T046|AB|525.64|ICD9CM|Fx dentl material w loss|Fx dentl material w loss +C1719514|T047|PT|525.65|ICD9CM|Contour of existing restoration of tooth biologically incompatible with oral health|Contour of existing restoration of tooth biologically incompatible with oral health +C1719514|T047|AB|525.65|ICD9CM|Contour restore tooth|Contour restore tooth +C1719719|T046|AB|525.66|ICD9CM|Allergy dental res mat|Allergy dental res mat +C1719719|T046|PT|525.66|ICD9CM|Allergy to existing dental restorative material|Allergy to existing dental restorative material +C1719517|T046|PT|525.67|ICD9CM|Poor aesthetics of existing restoration|Poor aesthetics of existing restoration +C1719517|T046|AB|525.67|ICD9CM|Poor aesthetics restore|Poor aesthetics restore +C1719518|T033|PT|525.69|ICD9CM|Other unsatisfactory restoration of existing tooth|Other unsatisfactory restoration of existing tooth +C1719518|T033|AB|525.69|ICD9CM|Unsat restore tooth NEC|Unsat restore tooth NEC +C1955812|T046|HT|525.7|ICD9CM|Endosseous dental implant failure|Endosseous dental implant failure +C2711774|T046|AB|525.71|ICD9CM|Osseo fail dental implnt|Osseo fail dental implnt +C2711774|T046|PT|525.71|ICD9CM|Osseointegration failure of dental implant|Osseointegration failure of dental implant +C1955799|T046|AB|525.72|ICD9CM|Post-osse biol fail impl|Post-osse biol fail impl +C1955799|T046|PT|525.72|ICD9CM|Post-osseointegration biological failure of dental implant|Post-osseointegration biological failure of dental implant +C1955807|T046|AB|525.73|ICD9CM|Post-osse mech fail impl|Post-osse mech fail impl +C1955807|T046|PT|525.73|ICD9CM|Post-osseointegration mechanical failure of dental implant|Post-osseointegration mechanical failure of dental implant +C1955810|T047|AB|525.79|ICD9CM|Endos dentl imp fail NEC|Endos dentl imp fail NEC +C1955810|T047|PT|525.79|ICD9CM|Other endosseous dental implant failure|Other endosseous dental implant failure +C0029790|T047|AB|525.8|ICD9CM|Dental disorder NEC|Dental disorder NEC +C0029790|T047|PT|525.8|ICD9CM|Other specified disorders of the teeth and supporting structures|Other specified disorders of the teeth and supporting structures +C1704330|T047|AB|525.9|ICD9CM|Dental disorder NOS|Dental disorder NOS +C1704330|T047|PT|525.9|ICD9CM|Unspecified disorder of the teeth and supporting structures|Unspecified disorder of the teeth and supporting structures +C0022362|T047|HT|526|ICD9CM|Diseases of the jaws|Diseases of the jaws +C2939144|T047|AB|526.0|ICD9CM|Devel odontogenic cysts|Devel odontogenic cysts +C2939144|T047|PT|526.0|ICD9CM|Developmental odontogenic cysts|Developmental odontogenic cysts +C0341039|T047|AB|526.1|ICD9CM|Fissural cysts of jaw|Fissural cysts of jaw +C0341039|T047|PT|526.1|ICD9CM|Fissural cysts of jaw|Fissural cysts of jaw +C0029569|T047|AB|526.2|ICD9CM|Cysts of jaws NEC|Cysts of jaws NEC +C0029569|T047|PT|526.2|ICD9CM|Other cysts of jaws|Other cysts of jaws +C0162375|T047|AB|526.3|ICD9CM|Cent giant cell granulom|Cent giant cell granulom +C0162375|T047|PT|526.3|ICD9CM|Central giant cell (reparative) granuloma|Central giant cell (reparative) granuloma +C0155954|T047|AB|526.4|ICD9CM|Inflammation of jaw|Inflammation of jaw +C0155954|T047|PT|526.4|ICD9CM|Inflammatory conditions of jaw|Inflammatory conditions of jaw +C0013240|T047|AB|526.5|ICD9CM|Alveolitis of jaw|Alveolitis of jaw +C0013240|T047|PT|526.5|ICD9CM|Alveolitis of jaw|Alveolitis of jaw +C1719524|T046|HT|526.6|ICD9CM|Periradicular pathology associated with previous endodontic treatment|Periradicular pathology associated with previous endodontic treatment +C1719521|T046|AB|526.61|ICD9CM|Perfor root canal space|Perfor root canal space +C1719521|T046|PT|526.61|ICD9CM|Perforation of root canal space|Perforation of root canal space +C1719522|T047|PT|526.62|ICD9CM|Endodontic overfill|Endodontic overfill +C1719522|T047|AB|526.62|ICD9CM|Endodontic overfill|Endodontic overfill +C1719523|T047|PT|526.63|ICD9CM|Endodontic underfill|Endodontic underfill +C1719523|T047|AB|526.63|ICD9CM|Endodontic underfill|Endodontic underfill +C1719713|T046|PT|526.69|ICD9CM|Other periradicular pathology associated with previous endodontic treatment|Other periradicular pathology associated with previous endodontic treatment +C1719713|T046|AB|526.69|ICD9CM|Periradicular path NEC|Periradicular path NEC +C0029772|T047|HT|526.8|ICD9CM|Other specified diseases of the jaws|Other specified diseases of the jaws +C0155955|T047|AB|526.81|ICD9CM|Exostosis of jaw|Exostosis of jaw +C0155955|T047|PT|526.81|ICD9CM|Exostosis of jaw|Exostosis of jaw +C0029772|T047|AB|526.89|ICD9CM|Jaw disease NEC|Jaw disease NEC +C0029772|T047|PT|526.89|ICD9CM|Other specified diseases of the jaws|Other specified diseases of the jaws +C0022362|T047|AB|526.9|ICD9CM|Jaw disease NOS|Jaw disease NOS +C0022362|T047|PT|526.9|ICD9CM|Unspecified disease of the jaws|Unspecified disease of the jaws +C0036093|T047|HT|527|ICD9CM|Diseases of the salivary glands|Diseases of the salivary glands +C0155956|T020|PT|527.0|ICD9CM|Atrophy of salivary gland|Atrophy of salivary gland +C0155956|T020|AB|527.0|ICD9CM|Salivary gland atrophy|Salivary gland atrophy +C0020569|T046|PT|527.1|ICD9CM|Hypertrophy of salivary gland|Hypertrophy of salivary gland +C0020569|T046|AB|527.1|ICD9CM|Salivary glnd hyprtrophy|Salivary glnd hyprtrophy +C0037023|T047|AB|527.2|ICD9CM|Sialoadenitis|Sialoadenitis +C0037023|T047|PT|527.2|ICD9CM|Sialoadenitis|Sialoadenitis +C0155957|T047|PT|527.3|ICD9CM|Abscess of salivary gland|Abscess of salivary gland +C0155957|T047|AB|527.3|ICD9CM|Salivary gland abscess|Salivary gland abscess +C0036094|T190|PT|527.4|ICD9CM|Fistula of salivary gland|Fistula of salivary gland +C0036094|T190|AB|527.4|ICD9CM|Salivary gland fistula|Salivary gland fistula +C0036091|T047|AB|527.5|ICD9CM|Sialolithiasis|Sialolithiasis +C0036091|T047|PT|527.5|ICD9CM|Sialolithiasis|Sialolithiasis +C0026686|T047|PT|527.6|ICD9CM|Mucocele of salivary gland|Mucocele of salivary gland +C0026686|T047|AB|527.6|ICD9CM|Salivary gland mucocele|Salivary gland mucocele +C0012765|T046|PT|527.7|ICD9CM|Disturbance of salivary secretion|Disturbance of salivary secretion +C0012765|T046|AB|527.7|ICD9CM|Salivary secretion dis|Salivary secretion dis +C0029773|T047|PT|527.8|ICD9CM|Other specified diseases of the salivary glands|Other specified diseases of the salivary glands +C0029773|T047|AB|527.8|ICD9CM|Salivary gland dis NEC|Salivary gland dis NEC +C0036093|T047|AB|527.9|ICD9CM|Salivary gland dis NOS|Salivary gland dis NOS +C0036093|T047|PT|527.9|ICD9CM|Unspecified disease of the salivary glands|Unspecified disease of the salivary glands +C0155958|T047|HT|528|ICD9CM|Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue|Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue +C1719528|T047|HT|528.0|ICD9CM|Stomatitis and mucositis (ulcerative)|Stomatitis and mucositis (ulcerative) +C1719714|T047|PT|528.00|ICD9CM|Stomatitis and mucositis, unspecified|Stomatitis and mucositis, unspecified +C1719714|T047|AB|528.00|ICD9CM|Stomatitis/mucositis NOS|Stomatitis/mucositis NOS +C1719526|T047|PT|528.01|ICD9CM|Mucositis (ulcerative) due to antineoplastic therapy|Mucositis (ulcerative) due to antineoplastic therapy +C1719526|T047|AB|528.01|ICD9CM|Mucosits d/t antineo rx|Mucosits d/t antineo rx +C1719527|T047|PT|528.02|ICD9CM|Mucositis (ulcerative) due to other drugs|Mucositis (ulcerative) due to other drugs +C1719527|T047|AB|528.02|ICD9CM|Mucositis d/t drugs NEC|Mucositis d/t drugs NEC +C1719528|T047|PT|528.09|ICD9CM|Other stomatitis and mucositis (ulcerative)|Other stomatitis and mucositis (ulcerative) +C1719528|T047|AB|528.09|ICD9CM|Stomatits & mucosits NEC|Stomatits & mucosits NEC +C0028271|T047|AB|528.1|ICD9CM|Cancrum oris|Cancrum oris +C0028271|T047|PT|528.1|ICD9CM|Cancrum oris|Cancrum oris +C0038363|T047|AB|528.2|ICD9CM|Oral aphthae|Oral aphthae +C0038363|T047|PT|528.2|ICD9CM|Oral aphthae|Oral aphthae +C0007643|T047|PT|528.3|ICD9CM|Cellulitis and abscess of oral soft tissues|Cellulitis and abscess of oral soft tissues +C0007643|T047|AB|528.3|ICD9CM|Cellulitis/abscess mouth|Cellulitis/abscess mouth +C0155959|T047|PT|528.4|ICD9CM|Cysts of oral soft tissues|Cysts of oral soft tissues +C0155959|T047|AB|528.4|ICD9CM|Oral soft tissue cyst|Oral soft tissue cyst +C0023760|T047|AB|528.5|ICD9CM|Diseases of lips|Diseases of lips +C0023760|T047|PT|528.5|ICD9CM|Diseases of lips|Diseases of lips +C1112530|T047|PT|528.6|ICD9CM|Leukoplakia of oral mucosa, including tongue|Leukoplakia of oral mucosa, including tongue +C1112530|T047|AB|528.6|ICD9CM|Leukoplakia oral mucosa|Leukoplakia oral mucosa +C0155961|T047|HT|528.7|ICD9CM|Other disturbances of oral epithelium, including tongue|Other disturbances of oral epithelium, including tongue +C1456227|T047|AB|528.71|ICD9CM|Keratin ridge mucosa-min|Keratin ridge mucosa-min +C1456227|T047|PT|528.71|ICD9CM|Minimal keratinized residual ridge mucosa|Minimal keratinized residual ridge mucosa +C1456228|T047|PT|528.72|ICD9CM|Excessive keratinized residual ridge mucosa|Excessive keratinized residual ridge mucosa +C1456228|T047|AB|528.72|ICD9CM|Keratin ridge muc-excess|Keratin ridge muc-excess +C0155961|T047|AB|528.79|ICD9CM|Dist oral epithelium NEC|Dist oral epithelium NEC +C0155961|T047|PT|528.79|ICD9CM|Other disturbances of oral epithelium, including tongue|Other disturbances of oral epithelium, including tongue +C0029171|T047|AB|528.8|ICD9CM|Oral submucosal fibrosis|Oral submucosal fibrosis +C0029171|T047|PT|528.8|ICD9CM|Oral submucosal fibrosis, including of tongue|Oral submucosal fibrosis, including of tongue +C0029498|T047|AB|528.9|ICD9CM|Oral soft tissue dis NEC|Oral soft tissue dis NEC +C0029498|T047|PT|528.9|ICD9CM|Other and unspecified diseases of the oral soft tissues|Other and unspecified diseases of the oral soft tissues +C0155962|T047|HT|529|ICD9CM|Diseases and other conditions of the tongue|Diseases and other conditions of the tongue +C0017675|T047|AB|529.0|ICD9CM|Glossitis|Glossitis +C0017675|T047|PT|529.0|ICD9CM|Glossitis|Glossitis +C0017677|T047|AB|529.1|ICD9CM|Geographic tongue|Geographic tongue +C0017677|T047|PT|529.1|ICD9CM|Geographic tongue|Geographic tongue +C0155963|T019|AB|529.2|ICD9CM|Med rhomboid glossitis|Med rhomboid glossitis +C0155963|T019|PT|529.2|ICD9CM|Median rhomboid glossitis|Median rhomboid glossitis +C0392494|T047|AB|529.3|ICD9CM|Hypertroph tongue papill|Hypertroph tongue papill +C0392494|T047|PT|529.3|ICD9CM|Hypertrophy of tongue papillae|Hypertrophy of tongue papillae +C0155964|T047|PT|529.4|ICD9CM|Atrophy of tongue papillae|Atrophy of tongue papillae +C0155964|T047|AB|529.4|ICD9CM|Atrophy tongue papillae|Atrophy tongue papillae +C0040412|T047|AB|529.5|ICD9CM|Plicated tongue|Plicated tongue +C0040412|T047|PT|529.5|ICD9CM|Plicated tongue|Plicated tongue +C0017672|T184|AB|529.6|ICD9CM|Glossodynia|Glossodynia +C0017672|T184|PT|529.6|ICD9CM|Glossodynia|Glossodynia +C0155965|T047|PT|529.8|ICD9CM|Other specified conditions of the tongue|Other specified conditions of the tongue +C0155965|T047|AB|529.8|ICD9CM|Tongue disorder NEC|Tongue disorder NEC +C0040409|T047|AB|529.9|ICD9CM|Tongue disorder NOS|Tongue disorder NOS +C0040409|T047|PT|529.9|ICD9CM|Unspecified condition of the tongue|Unspecified condition of the tongue +C0014852|T047|HT|530|ICD9CM|Diseases of esophagus|Diseases of esophagus +C0178281|T047|HT|530-539.99|ICD9CM|DISEASES OF ESOPHAGUS, STOMACH, AND DUODENUM|DISEASES OF ESOPHAGUS, STOMACH, AND DUODENUM +C0014848|T047|AB|530.0|ICD9CM|Achalasia & cardiospasm|Achalasia & cardiospasm +C0014848|T047|PT|530.0|ICD9CM|Achalasia and cardiospasm|Achalasia and cardiospasm +C0014868|T047|HT|530.1|ICD9CM|Esophagitis|Esophagitis +C0014868|T047|AB|530.10|ICD9CM|Esophagitis, unspecified|Esophagitis, unspecified +C0014868|T047|PT|530.10|ICD9CM|Esophagitis, unspecified|Esophagitis, unspecified +C0014869|T047|AB|530.11|ICD9CM|Reflux esophagitis|Reflux esophagitis +C0014869|T047|PT|530.11|ICD9CM|Reflux esophagitis|Reflux esophagitis +C0149882|T047|AB|530.12|ICD9CM|Acute esophagitis|Acute esophagitis +C0149882|T047|PT|530.12|ICD9CM|Acute esophagitis|Acute esophagitis +C0341106|T047|PT|530.13|ICD9CM|Eosinophilic esophagitis|Eosinophilic esophagitis +C0341106|T047|AB|530.13|ICD9CM|Eosinophilic esophagitis|Eosinophilic esophagitis +C0375352|T047|AB|530.19|ICD9CM|Other esophagitis|Other esophagitis +C0375352|T047|PT|530.19|ICD9CM|Other esophagitis|Other esophagitis +C0151970|T047|HT|530.2|ICD9CM|Ulcer of esophagus|Ulcer of esophagus +C1260417|T047|AB|530.20|ICD9CM|Ulc esophagus w/o bleed|Ulc esophagus w/o bleed +C1260417|T047|PT|530.20|ICD9CM|Ulcer of esophagus without bleeding|Ulcer of esophagus without bleeding +C0236127|T047|AB|530.21|ICD9CM|Ulcer esophagus w bleed|Ulcer esophagus w bleed +C0236127|T047|PT|530.21|ICD9CM|Ulcer of esophagus with bleeding|Ulcer of esophagus with bleeding +C4551650|T047|AB|530.3|ICD9CM|Esophageal stricture|Esophageal stricture +C4551650|T047|PT|530.3|ICD9CM|Stricture and stenosis of esophagus|Stricture and stenosis of esophagus +C0014860|T046|AB|530.4|ICD9CM|Perforation of esophagus|Perforation of esophagus +C0014860|T046|PT|530.4|ICD9CM|Perforation of esophagus|Perforation of esophagus +C0014858|T047|AB|530.5|ICD9CM|Dyskinesia of esophagus|Dyskinesia of esophagus +C0014858|T047|PT|530.5|ICD9CM|Dyskinesia of esophagus|Dyskinesia of esophagus +C0155966|T020|AB|530.6|ICD9CM|Acq esophag diverticulum|Acq esophag diverticulum +C0155966|T020|PT|530.6|ICD9CM|Diverticulum of esophagus, acquired|Diverticulum of esophagus, acquired +C0024633|T047|PT|530.7|ICD9CM|Gastroesophageal laceration-hemorrhage syndrome|Gastroesophageal laceration-hemorrhage syndrome +C0024633|T047|AB|530.7|ICD9CM|Mallory-weiss syndrome|Mallory-weiss syndrome +C0348727|T047|HT|530.8|ICD9CM|Other specified disorders of esophagus|Other specified disorders of esophagus +C0017168|T047|AB|530.81|ICD9CM|Esophageal reflux|Esophageal reflux +C0017168|T047|PT|530.81|ICD9CM|Esophageal reflux|Esophageal reflux +C0239293|T046|AB|530.82|ICD9CM|Esophageal hemorrhage|Esophageal hemorrhage +C0239293|T046|PT|530.82|ICD9CM|Esophageal hemorrhage|Esophageal hemorrhage +C0267095|T191|AB|530.83|ICD9CM|Esophageal leukoplakia|Esophageal leukoplakia +C0267095|T191|PT|530.83|ICD9CM|Esophageal leukoplakia|Esophageal leukoplakia +C0040588|T190|PT|530.84|ICD9CM|Tracheoesophageal fistula|Tracheoesophageal fistula +C0040588|T190|AB|530.84|ICD9CM|Tracheoesophageal fstula|Tracheoesophageal fstula +C0004763|T047|AB|530.85|ICD9CM|Barrett's esophagus|Barrett's esophagus +C0004763|T047|PT|530.85|ICD9CM|Barrett's esophagus|Barrett's esophagus +C1456233|T046|AB|530.86|ICD9CM|Esophagostomy infection|Esophagostomy infection +C1456233|T046|PT|530.86|ICD9CM|Infection of esophagostomy|Infection of esophagostomy +C1456234|T046|AB|530.87|ICD9CM|Mech comp esophagostomy|Mech comp esophagostomy +C1456234|T046|PT|530.87|ICD9CM|Mechanical complication of esophagostomy|Mechanical complication of esophagostomy +C0348727|T047|AB|530.89|ICD9CM|Other dsrders esophagus|Other dsrders esophagus +C0348727|T047|PT|530.89|ICD9CM|Other specified disorders of esophagus|Other specified disorders of esophagus +C0014852|T047|AB|530.9|ICD9CM|Esophageal disorder NOS|Esophageal disorder NOS +C0014852|T047|PT|530.9|ICD9CM|Unspecified disorder of esophagus|Unspecified disorder of esophagus +C0038358|T047|HT|531|ICD9CM|Gastric ulcer|Gastric ulcer +C0155967|T047|HT|531.0|ICD9CM|Acute gastric ulcer with hemorrhage|Acute gastric ulcer with hemorrhage +C0155968|T047|AB|531.00|ICD9CM|Ac stomach ulcer w hem|Ac stomach ulcer w hem +C0155968|T047|PT|531.00|ICD9CM|Acute gastric ulcer with hemorrhage, without mention of obstruction|Acute gastric ulcer with hemorrhage, without mention of obstruction +C0155969|T047|AB|531.01|ICD9CM|Ac stomac ulc w hem-obst|Ac stomac ulc w hem-obst +C0155969|T047|PT|531.01|ICD9CM|Acute gastric ulcer with hemorrhage, with obstruction|Acute gastric ulcer with hemorrhage, with obstruction +C0155970|T047|HT|531.1|ICD9CM|Acute gastric ulcer with perforation|Acute gastric ulcer with perforation +C0155971|T047|AB|531.10|ICD9CM|Ac stomach ulcer w perf|Ac stomach ulcer w perf +C0155971|T047|PT|531.10|ICD9CM|Acute gastric ulcer with perforation, without mention of obstruction|Acute gastric ulcer with perforation, without mention of obstruction +C0155972|T047|AB|531.11|ICD9CM|Ac stom ulc w perf-obst|Ac stom ulc w perf-obst +C0155972|T047|PT|531.11|ICD9CM|Acute gastric ulcer with perforation, with obstruction|Acute gastric ulcer with perforation, with obstruction +C0155973|T047|HT|531.2|ICD9CM|Acute gastric ulcer with hemorrhage and perforation|Acute gastric ulcer with hemorrhage and perforation +C0267123|T047|AB|531.20|ICD9CM|Ac stomac ulc w hem/perf|Ac stomac ulc w hem/perf +C0267123|T047|PT|531.20|ICD9CM|Acute gastric ulcer with hemorrhage and perforation, without mention of obstruction|Acute gastric ulcer with hemorrhage and perforation, without mention of obstruction +C0155975|T047|AB|531.21|ICD9CM|Ac stom ulc hem/perf-obs|Ac stom ulc hem/perf-obs +C0155975|T047|PT|531.21|ICD9CM|Acute gastric ulcer with hemorrhage and perforation, with obstruction|Acute gastric ulcer with hemorrhage and perforation, with obstruction +C0267124|T047|HT|531.3|ICD9CM|Acute gastric ulcer without mention of hemorrhage or perforation|Acute gastric ulcer without mention of hemorrhage or perforation +C0267125|T047|PT|531.30|ICD9CM|Acute gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction|Acute gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction +C0267125|T047|AB|531.30|ICD9CM|Acute stomach ulcer NOS|Acute stomach ulcer NOS +C0155978|T047|AB|531.31|ICD9CM|Ac stomach ulc NOS-obstr|Ac stomach ulc NOS-obstr +C0155978|T047|PT|531.31|ICD9CM|Acute gastric ulcer without mention of hemorrhage or perforation, with obstruction|Acute gastric ulcer without mention of hemorrhage or perforation, with obstruction +C0155979|T047|HT|531.4|ICD9CM|Chronic or unspecified gastric ulcer with hemorrhage|Chronic or unspecified gastric ulcer with hemorrhage +C0155980|T047|AB|531.40|ICD9CM|Chr stomach ulc w hem|Chr stomach ulc w hem +C0155980|T047|PT|531.40|ICD9CM|Chronic or unspecified gastric ulcer with hemorrhage, without mention of obstruction|Chronic or unspecified gastric ulcer with hemorrhage, without mention of obstruction +C0155981|T047|AB|531.41|ICD9CM|Chr stom ulc w hem-obstr|Chr stom ulc w hem-obstr +C0155981|T047|PT|531.41|ICD9CM|Chronic or unspecified gastric ulcer with hemorrhage, with obstruction|Chronic or unspecified gastric ulcer with hemorrhage, with obstruction +C0155982|T047|HT|531.5|ICD9CM|Chronic or unspecified gastric ulcer with perforation|Chronic or unspecified gastric ulcer with perforation +C0155983|T047|AB|531.50|ICD9CM|Chr stomach ulcer w perf|Chr stomach ulcer w perf +C0155983|T047|PT|531.50|ICD9CM|Chronic or unspecified gastric ulcer with perforation, without mention of obstruction|Chronic or unspecified gastric ulcer with perforation, without mention of obstruction +C0155984|T047|AB|531.51|ICD9CM|Chr stom ulc w perf-obst|Chr stom ulc w perf-obst +C0155984|T047|PT|531.51|ICD9CM|Chronic or unspecified gastric ulcer with perforation, with obstruction|Chronic or unspecified gastric ulcer with perforation, with obstruction +C0494723|T047|HT|531.6|ICD9CM|Chronic or unspecified gastric ulcer with hemorrhage and perforation|Chronic or unspecified gastric ulcer with hemorrhage and perforation +C0155986|T047|AB|531.60|ICD9CM|Chr stomach ulc hem/perf|Chr stomach ulc hem/perf +C0155986|T047|PT|531.60|ICD9CM|Chronic or unspecified gastric ulcer with hemorrhage and perforation, without mention of obstruction|Chronic or unspecified gastric ulcer with hemorrhage and perforation, without mention of obstruction +C0155987|T047|AB|531.61|ICD9CM|Chr stom ulc hem/perf-ob|Chr stom ulc hem/perf-ob +C0155987|T047|PT|531.61|ICD9CM|Chronic or unspecified gastric ulcer with hemorrhage and perforation, with obstruction|Chronic or unspecified gastric ulcer with hemorrhage and perforation, with obstruction +C0267136|T047|HT|531.7|ICD9CM|Chronic gastric ulcer without mention of hemorrhage or perforation|Chronic gastric ulcer without mention of hemorrhage or perforation +C0155989|T047|AB|531.70|ICD9CM|Chr stomach ulcer NOS|Chr stomach ulcer NOS +C0155989|T047|PT|531.70|ICD9CM|Chronic gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction|Chronic gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction +C0267138|T047|AB|531.71|ICD9CM|Chr stomach ulc NOS-obst|Chr stomach ulc NOS-obst +C0267138|T047|PT|531.71|ICD9CM|Chronic gastric ulcer without mention of hemorrhage or perforation, with obstruction|Chronic gastric ulcer without mention of hemorrhage or perforation, with obstruction +C0400806|T047|HT|531.9|ICD9CM|Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation|Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation +C0400806|T047|AB|531.90|ICD9CM|Stomach ulcer NOS|Stomach ulcer NOS +C0155991|T047|AB|531.91|ICD9CM|Stomach ulcer NOS-obstr|Stomach ulcer NOS-obstr +C0013295|T047|HT|532|ICD9CM|Duodenal ulcer|Duodenal ulcer +C0155992|T047|HT|532.0|ICD9CM|Acute duodenal ulcer with hemorrhage|Acute duodenal ulcer with hemorrhage +C0155993|T047|AB|532.00|ICD9CM|Ac duodenal ulcer w hem|Ac duodenal ulcer w hem +C0155993|T047|PT|532.00|ICD9CM|Acute duodenal ulcer with hemorrhage, without mention of obstruction|Acute duodenal ulcer with hemorrhage, without mention of obstruction +C0155994|T047|AB|532.01|ICD9CM|Ac duoden ulc w hem-obst|Ac duoden ulc w hem-obst +C0155994|T047|PT|532.01|ICD9CM|Acute duodenal ulcer with hemorrhage, with obstruction|Acute duodenal ulcer with hemorrhage, with obstruction +C0155995|T047|HT|532.1|ICD9CM|Acute duodenal ulcer with perforation|Acute duodenal ulcer with perforation +C0267262|T047|AB|532.10|ICD9CM|Ac duodenal ulcer w perf|Ac duodenal ulcer w perf +C0267262|T047|PT|532.10|ICD9CM|Acute duodenal ulcer with perforation, without mention of obstruction|Acute duodenal ulcer with perforation, without mention of obstruction +C0155997|T047|AB|532.11|ICD9CM|Ac duoden ulc perf-obstr|Ac duoden ulc perf-obstr +C0155997|T047|PT|532.11|ICD9CM|Acute duodenal ulcer with perforation, with obstruction|Acute duodenal ulcer with perforation, with obstruction +C0155998|T047|HT|532.2|ICD9CM|Acute duodenal ulcer with hemorrhage and perforation|Acute duodenal ulcer with hemorrhage and perforation +C0155999|T047|AB|532.20|ICD9CM|Ac duoden ulc w hem/perf|Ac duoden ulc w hem/perf +C0155999|T047|PT|532.20|ICD9CM|Acute duodenal ulcer with hemorrhage and perforation, without mention of obstruction|Acute duodenal ulcer with hemorrhage and perforation, without mention of obstruction +C0156000|T047|AB|532.21|ICD9CM|Ac duod ulc hem/perf-obs|Ac duod ulc hem/perf-obs +C0156000|T047|PT|532.21|ICD9CM|Acute duodenal ulcer with hemorrhage and perforation, with obstruction|Acute duodenal ulcer with hemorrhage and perforation, with obstruction +C0156001|T047|HT|532.3|ICD9CM|Acute duodenal ulcer without mention of hemorrhage or perforation|Acute duodenal ulcer without mention of hemorrhage or perforation +C0156002|T047|AB|532.30|ICD9CM|Acute duodenal ulcer NOS|Acute duodenal ulcer NOS +C0156002|T047|PT|532.30|ICD9CM|Acute duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction|Acute duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction +C0156003|T047|AB|532.31|ICD9CM|Ac duodenal ulc NOS-obst|Ac duodenal ulc NOS-obst +C0156003|T047|PT|532.31|ICD9CM|Acute duodenal ulcer without mention of hemorrhage or perforation, with obstruction|Acute duodenal ulcer without mention of hemorrhage or perforation, with obstruction +C0156004|T047|HT|532.4|ICD9CM|Chronic or unspecified duodenal ulcer with hemorrhage|Chronic or unspecified duodenal ulcer with hemorrhage +C0156005|T047|AB|532.40|ICD9CM|Chr duoden ulcer w hem|Chr duoden ulcer w hem +C0156005|T047|PT|532.40|ICD9CM|Chronic or unspecified duodenal ulcer with hemorrhage, without mention of obstruction|Chronic or unspecified duodenal ulcer with hemorrhage, without mention of obstruction +C0156006|T047|AB|532.41|ICD9CM|Chr duoden ulc hem-obstr|Chr duoden ulc hem-obstr +C0156006|T047|PT|532.41|ICD9CM|Chronic or unspecified duodenal ulcer with hemorrhage, with obstruction|Chronic or unspecified duodenal ulcer with hemorrhage, with obstruction +C0391983|T047|HT|532.5|ICD9CM|Chronic or unspecified duodenal ulcer with perforation|Chronic or unspecified duodenal ulcer with perforation +C0156008|T047|AB|532.50|ICD9CM|Chr duoden ulcer w perf|Chr duoden ulcer w perf +C0156008|T047|PT|532.50|ICD9CM|Chronic or unspecified duodenal ulcer with perforation, without mention of obstruction|Chronic or unspecified duodenal ulcer with perforation, without mention of obstruction +C0156009|T047|AB|532.51|ICD9CM|Chr duoden ulc perf-obst|Chr duoden ulc perf-obst +C0156009|T047|PT|532.51|ICD9CM|Chronic or unspecified duodenal ulcer with perforation, with obstruction|Chronic or unspecified duodenal ulcer with perforation, with obstruction +C0494726|T047|HT|532.6|ICD9CM|Chronic or unspecified duodenal ulcer with hemorrhage and perforation|Chronic or unspecified duodenal ulcer with hemorrhage and perforation +C0156011|T047|AB|532.60|ICD9CM|Chr duoden ulc hem/perf|Chr duoden ulc hem/perf +C0156012|T047|AB|532.61|ICD9CM|Chr duod ulc hem/perf-ob|Chr duod ulc hem/perf-ob +C0156012|T047|PT|532.61|ICD9CM|Chronic or unspecified duodenal ulcer with hemorrhage and perforation, with obstruction|Chronic or unspecified duodenal ulcer with hemorrhage and perforation, with obstruction +C0267282|T047|HT|532.7|ICD9CM|Chronic duodenal ulcer without mention of hemorrhage or perforation|Chronic duodenal ulcer without mention of hemorrhage or perforation +C0156014|T047|AB|532.70|ICD9CM|Chr duodenal ulcer NOS|Chr duodenal ulcer NOS +C0156014|T047|PT|532.70|ICD9CM|Chronic duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction|Chronic duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction +C0156015|T047|AB|532.71|ICD9CM|Chr duoden ulc NOS-obstr|Chr duoden ulc NOS-obstr +C0156015|T047|PT|532.71|ICD9CM|Chronic duodenal ulcer without mention of hemorrhage or perforation, with obstruction|Chronic duodenal ulcer without mention of hemorrhage or perforation, with obstruction +C0391984|T047|HT|532.9|ICD9CM|Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation|Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation +C0489962|T047|AB|532.90|ICD9CM|Duodenal ulcer NOS|Duodenal ulcer NOS +C0156016|T047|AB|532.91|ICD9CM|Duodenal ulcer NOS-obstr|Duodenal ulcer NOS-obstr +C0030920|T047|HT|533|ICD9CM|Peptic ulcer, site unspecified|Peptic ulcer, site unspecified +C0267288|T047|HT|533.0|ICD9CM|Acute peptic ulcer of unspecified site with hemorrhage|Acute peptic ulcer of unspecified site with hemorrhage +C0267288|T047|AB|533.00|ICD9CM|Ac peptic ulcer w hemorr|Ac peptic ulcer w hemorr +C0267288|T047|PT|533.00|ICD9CM|Acute peptic ulcer of unspecified site with hemorrhage, without mention of obstruction|Acute peptic ulcer of unspecified site with hemorrhage, without mention of obstruction +C0156019|T047|AB|533.01|ICD9CM|Ac peptic ulc w hem-obst|Ac peptic ulc w hem-obst +C0156019|T047|PT|533.01|ICD9CM|Acute peptic ulcer of unspecified site with hemorrhage, with obstruction|Acute peptic ulcer of unspecified site with hemorrhage, with obstruction +C0267291|T047|HT|533.1|ICD9CM|Acute peptic ulcer of unspecified site with perforation|Acute peptic ulcer of unspecified site with perforation +C1442967|T047|AB|533.10|ICD9CM|Ac peptic ulcer w perfor|Ac peptic ulcer w perfor +C1442967|T047|PT|533.10|ICD9CM|Acute peptic ulcer of unspecified site with perforation, without mention of obstruction|Acute peptic ulcer of unspecified site with perforation, without mention of obstruction +C0156022|T047|AB|533.11|ICD9CM|Ac peptic ulc w perf-obs|Ac peptic ulc w perf-obs +C0156022|T047|PT|533.11|ICD9CM|Acute peptic ulcer of unspecified site with perforation, with obstruction|Acute peptic ulcer of unspecified site with perforation, with obstruction +C0267294|T047|HT|533.2|ICD9CM|Acute peptic ulcer of unspecified site with hemorrhage and perforation|Acute peptic ulcer of unspecified site with hemorrhage and perforation +C0156024|T047|AB|533.20|ICD9CM|Ac peptic ulc w hem/perf|Ac peptic ulc w hem/perf +C0156025|T047|AB|533.21|ICD9CM|Ac pept ulc hem/perf-obs|Ac pept ulc hem/perf-obs +C0156025|T047|PT|533.21|ICD9CM|Acute peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction|Acute peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction +C0392499|T047|HT|533.3|ICD9CM|Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation|Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation +C0267298|T047|AB|533.30|ICD9CM|Acute peptic ulcer NOS|Acute peptic ulcer NOS +C0156024|T047|AB|533.31|ICD9CM|Ac peptic ulcer NOS-obst|Ac peptic ulcer NOS-obst +C0494730|T047|HT|533.4|ICD9CM|Chronic or unspecified peptic ulcer of unspecified site with hemorrhage|Chronic or unspecified peptic ulcer of unspecified site with hemorrhage +C0156029|T047|AB|533.40|ICD9CM|Chr peptic ulcer w hem|Chr peptic ulcer w hem +C0156030|T047|AB|533.41|ICD9CM|Chr peptic ulc w hem-obs|Chr peptic ulc w hem-obs +C0156030|T047|PT|533.41|ICD9CM|Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, with obstruction|Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, with obstruction +C0494731|T047|HT|533.5|ICD9CM|Chronic or unspecified peptic ulcer of unspecified site with perforation|Chronic or unspecified peptic ulcer of unspecified site with perforation +C0156032|T047|AB|533.50|ICD9CM|Chr peptic ulcer w perf|Chr peptic ulcer w perf +C0156033|T047|AB|533.51|ICD9CM|Chr peptic ulc perf-obst|Chr peptic ulc perf-obst +C0156033|T047|PT|533.51|ICD9CM|Chronic or unspecified peptic ulcer of unspecified site with perforation, with obstruction|Chronic or unspecified peptic ulcer of unspecified site with perforation, with obstruction +C0494732|T047|HT|533.6|ICD9CM|Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation|Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation +C0156035|T047|AB|533.60|ICD9CM|Chr pept ulc w hem/perf|Chr pept ulc w hem/perf +C0156036|T047|AB|533.61|ICD9CM|Chr pept ulc hem/perf-ob|Chr pept ulc hem/perf-ob +C1279396|T047|HT|533.7|ICD9CM|Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation|Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation +C1961834|T047|AB|533.70|ICD9CM|Chronic peptic ulcer NOS|Chronic peptic ulcer NOS +C0156039|T047|AB|533.71|ICD9CM|Chr peptic ulcer NOS-obs|Chr peptic ulcer NOS-obs +C0030924|T020|AB|533.90|ICD9CM|Peptic ulcer NOS|Peptic ulcer NOS +C0156040|T047|AB|533.91|ICD9CM|Peptic ulcer NOS-obstruc|Peptic ulcer NOS-obstruc +C1384631|T020|HT|534|ICD9CM|Gastrojejunal ulcer|Gastrojejunal ulcer +C0156042|T047|HT|534.0|ICD9CM|Acute gastrojejunal ulcer with hemorrhage|Acute gastrojejunal ulcer with hemorrhage +C0156043|T047|AB|534.00|ICD9CM|Ac marginal ulcer w hem|Ac marginal ulcer w hem +C0156043|T047|PT|534.00|ICD9CM|Acute gastrojejunal ulcer with hemorrhage, without mention of obstruction|Acute gastrojejunal ulcer with hemorrhage, without mention of obstruction +C0156044|T047|AB|534.01|ICD9CM|Ac margin ulc w hem-obst|Ac margin ulc w hem-obst +C0156044|T047|PT|534.01|ICD9CM|Acute gastrojejunal ulcer, with hemorrhage, with obstruction|Acute gastrojejunal ulcer, with hemorrhage, with obstruction +C0156045|T047|HT|534.1|ICD9CM|Acute gastrojejunal ulcer with perforation|Acute gastrojejunal ulcer with perforation +C0156046|T047|AB|534.10|ICD9CM|Ac marginal ulcer w perf|Ac marginal ulcer w perf +C0156046|T047|PT|534.10|ICD9CM|Acute gastrojejunal ulcer with perforation, without mention of obstruction|Acute gastrojejunal ulcer with perforation, without mention of obstruction +C0156047|T047|AB|534.11|ICD9CM|Ac margin ulc w perf-obs|Ac margin ulc w perf-obs +C0156047|T047|PT|534.11|ICD9CM|Acute gastrojejunal ulcer with perforation, with obstruction|Acute gastrojejunal ulcer with perforation, with obstruction +C0156048|T047|HT|534.2|ICD9CM|Acute gastrojejunal ulcer with hemorrhage and perforation|Acute gastrojejunal ulcer with hemorrhage and perforation +C0156049|T047|AB|534.20|ICD9CM|Ac margin ulc w hem/perf|Ac margin ulc w hem/perf +C0156049|T047|PT|534.20|ICD9CM|Acute gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction|Acute gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction +C0156050|T047|AB|534.21|ICD9CM|Ac marg ulc hem/perf-obs|Ac marg ulc hem/perf-obs +C0156050|T047|PT|534.21|ICD9CM|Acute gastrojejunal ulcer with hemorrhage and perforation, with obstruction|Acute gastrojejunal ulcer with hemorrhage and perforation, with obstruction +C0392501|T020|HT|534.3|ICD9CM|Acute gastrojejunal ulcer without mention of hemorrhage or perforation|Acute gastrojejunal ulcer without mention of hemorrhage or perforation +C0267326|T020|AB|534.30|ICD9CM|Ac marginal ulcer NOS|Ac marginal ulcer NOS +C0156053|T047|AB|534.31|ICD9CM|Ac marginal ulc NOS-obst|Ac marginal ulc NOS-obst +C0156053|T047|PT|534.31|ICD9CM|Acute gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction|Acute gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction +C0156054|T047|HT|534.4|ICD9CM|Chronic or unspecified gastrojejunal ulcer with hemorrhage|Chronic or unspecified gastrojejunal ulcer with hemorrhage +C0156055|T047|AB|534.40|ICD9CM|Chr marginal ulcer w hem|Chr marginal ulcer w hem +C0156055|T047|PT|534.40|ICD9CM|Chronic or unspecified gastrojejunal ulcer with hemorrhage, without mention of obstruction|Chronic or unspecified gastrojejunal ulcer with hemorrhage, without mention of obstruction +C0156056|T047|AB|534.41|ICD9CM|Chr margin ulc w hem-obs|Chr margin ulc w hem-obs +C0156056|T047|PT|534.41|ICD9CM|Chronic or unspecified gastrojejunal ulcer, with hemorrhage, with obstruction|Chronic or unspecified gastrojejunal ulcer, with hemorrhage, with obstruction +C0156057|T047|HT|534.5|ICD9CM|Chronic or unspecified gastrojejunal ulcer with perforation|Chronic or unspecified gastrojejunal ulcer with perforation +C0156058|T047|AB|534.50|ICD9CM|Chr marginal ulc w perf|Chr marginal ulc w perf +C0156058|T047|PT|534.50|ICD9CM|Chronic or unspecified gastrojejunal ulcer with perforation, without mention of obstruction|Chronic or unspecified gastrojejunal ulcer with perforation, without mention of obstruction +C0156059|T047|AB|534.51|ICD9CM|Chr margin ulc perf-obst|Chr margin ulc perf-obst +C0156059|T047|PT|534.51|ICD9CM|Chronic or unspecified gastrojejunal ulcer with perforation, with obstruction|Chronic or unspecified gastrojejunal ulcer with perforation, with obstruction +C0494735|T047|HT|534.6|ICD9CM|Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation|Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation +C0156061|T047|AB|534.60|ICD9CM|Chr margin ulc hem/perf|Chr margin ulc hem/perf +C0156062|T047|AB|534.61|ICD9CM|Chr marg ulc hem/perf-ob|Chr marg ulc hem/perf-ob +C0156062|T047|PT|534.61|ICD9CM|Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, with obstruction|Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, with obstruction +C0392502|T020|HT|534.7|ICD9CM|Chronic gastrojejunal ulcer without mention of hemorrhage or perforation|Chronic gastrojejunal ulcer without mention of hemorrhage or perforation +C0267347|T020|AB|534.70|ICD9CM|Chr marginal ulcer NOS|Chr marginal ulcer NOS +C0156065|T047|AB|534.71|ICD9CM|Chr marginal ulc NOS-obs|Chr marginal ulc NOS-obs +C0156065|T047|PT|534.71|ICD9CM|Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction|Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction +C0494736|T047|HT|534.9|ICD9CM|Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation|Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation +C0156067|T047|AB|534.90|ICD9CM|Gastrojejunal ulcer NOS|Gastrojejunal ulcer NOS +C0156068|T047|AB|534.91|ICD9CM|Gastrojejun ulc NOS-obst|Gastrojejun ulc NOS-obst +C0267166|T047|HT|535|ICD9CM|Gastritis and duodenitis|Gastritis and duodenitis +C0149518|T047|HT|535.0|ICD9CM|Acute gastritis|Acute gastritis +C0156070|T047|PT|535.00|ICD9CM|Acute gastritis, without mention of hemorrhage|Acute gastritis, without mention of hemorrhage +C0156070|T047|AB|535.00|ICD9CM|Acute gastrtis w/o hmrhg|Acute gastrtis w/o hmrhg +C2243087|T047|AB|535.01|ICD9CM|Acute gastritis w hmrhg|Acute gastritis w hmrhg +C2243087|T047|PT|535.01|ICD9CM|Acute gastritis, with hemorrhage|Acute gastritis, with hemorrhage +C0017154|T047|HT|535.1|ICD9CM|Atrophic gastritis|Atrophic gastritis +C0156072|T047|PT|535.10|ICD9CM|Atrophic gastritis, without mention of hemorrhage|Atrophic gastritis, without mention of hemorrhage +C0156072|T047|AB|535.10|ICD9CM|Atrph gastrtis w/o hmrhg|Atrph gastrtis w/o hmrhg +C0156073|T047|PT|535.11|ICD9CM|Atrophic gastritis, with hemorrhage|Atrophic gastritis, with hemorrhage +C0156073|T047|AB|535.11|ICD9CM|Atrph gastritis w hmrhg|Atrph gastritis w hmrhg +C0017155|T047|HT|535.2|ICD9CM|Gastric mucosal hypertrophy|Gastric mucosal hypertrophy +C0156074|T047|PT|535.20|ICD9CM|Gastric mucosal hypertrophy, without mention of hemorrhage|Gastric mucosal hypertrophy, without mention of hemorrhage +C0156074|T047|AB|535.20|ICD9CM|Gstr mcsl hyprt w/o hmrg|Gstr mcsl hyprt w/o hmrg +C0156075|T047|PT|535.21|ICD9CM|Gastric mucosal hypertrophy, with hemorrhage|Gastric mucosal hypertrophy, with hemorrhage +C0156075|T047|AB|535.21|ICD9CM|Gstr mcsl hyprt w hmrg|Gstr mcsl hyprt w hmrg +C0156076|T047|HT|535.3|ICD9CM|Alcoholic gastritis|Alcoholic gastritis +C0156077|T047|AB|535.30|ICD9CM|Alchl gastrtis w/o hmrhg|Alchl gastrtis w/o hmrhg +C0156077|T047|PT|535.30|ICD9CM|Alcoholic gastritis, without mention of hemorrhage|Alcoholic gastritis, without mention of hemorrhage +C0156078|T047|AB|535.31|ICD9CM|Alchl gstritis w hmrhg|Alchl gstritis w hmrhg +C0156078|T047|PT|535.31|ICD9CM|Alcoholic gastritis, with hemorrhage|Alcoholic gastritis, with hemorrhage +C0029800|T047|HT|535.4|ICD9CM|Other specified gastritis|Other specified gastritis +C0156079|T047|AB|535.40|ICD9CM|Oth spf gstrt w/o hmrhg|Oth spf gstrt w/o hmrhg +C0156079|T047|PT|535.40|ICD9CM|Other specified gastritis, without mention of hemorrhage|Other specified gastritis, without mention of hemorrhage +C0156080|T047|AB|535.41|ICD9CM|Oth spf gastrt w hmrhg|Oth spf gastrt w hmrhg +C0156080|T047|PT|535.41|ICD9CM|Other specified gastritis, with hemorrhage|Other specified gastritis, with hemorrhage +C0041841|T047|HT|535.5|ICD9CM|Unspecified gastritis and gastroduodenitis|Unspecified gastritis and gastroduodenitis +C0156081|T047|AB|535.50|ICD9CM|Gstr/ddnts NOS w/o hmrhg|Gstr/ddnts NOS w/o hmrhg +C0156081|T047|PT|535.50|ICD9CM|Unspecified gastritis and gastroduodenitis, without mention of hemorrhage|Unspecified gastritis and gastroduodenitis, without mention of hemorrhage +C0156082|T047|AB|535.51|ICD9CM|Gstr/ddnts NOS w hmrhg|Gstr/ddnts NOS w hmrhg +C0156082|T047|PT|535.51|ICD9CM|Unspecified gastritis and gastroduodenitis, with hemorrhage|Unspecified gastritis and gastroduodenitis, with hemorrhage +C0013298|T047|HT|535.6|ICD9CM|Duodenitis|Duodenitis +C0156083|T047|AB|535.60|ICD9CM|Duodenitis w/o hmrhg|Duodenitis w/o hmrhg +C0156083|T047|PT|535.60|ICD9CM|Duodenitis, without mention of hemorrhage|Duodenitis, without mention of hemorrhage +C0341245|T047|AB|535.61|ICD9CM|Duodenitis w hmrhg|Duodenitis w hmrhg +C0341245|T047|PT|535.61|ICD9CM|Duodenitis, with hemorrhage|Duodenitis, with hemorrhage +C0267154|T047|HT|535.7|ICD9CM|Eosinophilic gastritis|Eosinophilic gastritis +C2349565|T047|AB|535.70|ICD9CM|Eosinophil gastrt wo hem|Eosinophil gastrt wo hem +C2349565|T047|PT|535.70|ICD9CM|Eosinophilic gastritis, without mention of hemorrhage|Eosinophilic gastritis, without mention of hemorrhage +C2349566|T047|AB|535.71|ICD9CM|Eosinophilc gastrt w hem|Eosinophilc gastrt w hem +C2349566|T047|PT|535.71|ICD9CM|Eosinophilic gastritis, with hemorrhage|Eosinophilic gastritis, with hemorrhage +C0156084|T047|HT|536|ICD9CM|Disorders of function of stomach|Disorders of function of stomach +C0001075|T046|AB|536.0|ICD9CM|Achlorhydria|Achlorhydria +C0001075|T046|PT|536.0|ICD9CM|Achlorhydria|Achlorhydria +C0149823|T033|AB|536.1|ICD9CM|Ac dilation of stomach|Ac dilation of stomach +C0149823|T033|PT|536.1|ICD9CM|Acute dilatation of stomach|Acute dilatation of stomach +C0152165|T184|AB|536.2|ICD9CM|Persistent vomiting|Persistent vomiting +C0152165|T184|PT|536.2|ICD9CM|Persistent vomiting|Persistent vomiting +C0152020|T047|AB|536.3|ICD9CM|Gastroparesis|Gastroparesis +C0152020|T047|PT|536.3|ICD9CM|Gastroparesis|Gastroparesis +C0587245|T046|HT|536.4|ICD9CM|Gastrostomy complications|Gastrostomy complications +C0587245|T046|AB|536.40|ICD9CM|Gastrostomy comp NOS|Gastrostomy comp NOS +C0587245|T046|PT|536.40|ICD9CM|Gastrostomy complication, unspecified|Gastrostomy complication, unspecified +C0695239|T047|AB|536.41|ICD9CM|Gastrostomy infection|Gastrostomy infection +C0695239|T047|PT|536.41|ICD9CM|Infection of gastrostomy|Infection of gastrostomy +C0695240|T046|AB|536.42|ICD9CM|Gastrostomy comp - mech|Gastrostomy comp - mech +C0695240|T046|PT|536.42|ICD9CM|Mechanical complication of gastrostomy|Mechanical complication of gastrostomy +C0695241|T046|AB|536.49|ICD9CM|Gastrostomy comp NEC|Gastrostomy comp NEC +C0695241|T046|PT|536.49|ICD9CM|Other gastrostomy complications|Other gastrostomy complications +C0013396|T047|PT|536.8|ICD9CM|Dyspepsia and other specified disorders of function of stomach|Dyspepsia and other specified disorders of function of stomach +C0013396|T047|AB|536.8|ICD9CM|Stomach function dis NEC|Stomach function dis NEC +C0156084|T047|AB|536.9|ICD9CM|Stomach function dis NOS|Stomach function dis NOS +C0156084|T047|PT|536.9|ICD9CM|Unspecified functional disorder of stomach|Unspecified functional disorder of stomach +C0156086|T047|HT|537|ICD9CM|Other disorders of stomach and duodenum|Other disorders of stomach and duodenum +C0700588|T020|AB|537.0|ICD9CM|Acq pyloric stenosis|Acq pyloric stenosis +C0700588|T020|PT|537.0|ICD9CM|Acquired hypertrophic pyloric stenosis|Acquired hypertrophic pyloric stenosis +C0038355|T190|AB|537.1|ICD9CM|Gastric diverticulum|Gastric diverticulum +C0038355|T190|PT|537.1|ICD9CM|Gastric diverticulum|Gastric diverticulum +C0156087|T047|AB|537.2|ICD9CM|Chronic duodenal ileus|Chronic duodenal ileus +C0156087|T047|PT|537.2|ICD9CM|Chronic duodenal ileus|Chronic duodenal ileus +C0029679|T047|AB|537.3|ICD9CM|Duodenal obstruction NEC|Duodenal obstruction NEC +C0029679|T047|PT|537.3|ICD9CM|Other obstruction of duodenum|Other obstruction of duodenum +C0267180|T190|PT|537.4|ICD9CM|Fistula of stomach or duodenum|Fistula of stomach or duodenum +C0267180|T190|AB|537.4|ICD9CM|Gastric/duodenal fistula|Gastric/duodenal fistula +C0156088|T190|AB|537.5|ICD9CM|Gastroptosis|Gastroptosis +C0156088|T190|PT|537.5|ICD9CM|Gastroptosis|Gastroptosis +C0267183|T047|PT|537.6|ICD9CM|Hourglass stricture or stenosis of stomach|Hourglass stricture or stenosis of stomach +C0267183|T047|AB|537.6|ICD9CM|Hourglass stricture stom|Hourglass stricture stom +C0348731|T047|HT|537.8|ICD9CM|Other specified disorders of stomach and duodenum|Other specified disorders of stomach and duodenum +C0152163|T047|AB|537.81|ICD9CM|Pylorospasm|Pylorospasm +C0152163|T047|PT|537.81|ICD9CM|Pylorospasm|Pylorospasm +C0156090|T047|AB|537.82|ICD9CM|Angio stm/dudn w/o hmrhg|Angio stm/dudn w/o hmrhg +C0156090|T047|PT|537.82|ICD9CM|Angiodysplasia of stomach and duodenum without mention of hemorrhage|Angiodysplasia of stomach and duodenum without mention of hemorrhage +C0156091|T047|AB|537.83|ICD9CM|Angio stm/dudn w hmrhg|Angio stm/dudn w hmrhg +C0156091|T047|PT|537.83|ICD9CM|Angiodysplasia of stomach and duodenum with hemorrhage|Angiodysplasia of stomach and duodenum with hemorrhage +C1135229|T047|AB|537.84|ICD9CM|Dieulafoy les,stom&duod|Dieulafoy les,stom&duod +C1135229|T047|PT|537.84|ICD9CM|Dieulafoy lesion (hemorrhagic) of stomach and duodenum|Dieulafoy lesion (hemorrhagic) of stomach and duodenum +C0348731|T047|AB|537.89|ICD9CM|Gastroduodenal dis NEC|Gastroduodenal dis NEC +C0348731|T047|PT|537.89|ICD9CM|Other specified disorders of stomach and duodenum|Other specified disorders of stomach and duodenum +C0494741|T047|AB|537.9|ICD9CM|Gastroduodenal dis NOS|Gastroduodenal dis NOS +C0494741|T047|PT|537.9|ICD9CM|Unspecified disorder of stomach and duodenum|Unspecified disorder of stomach and duodenum +C3874327|T047|PT|538|ICD9CM|Gastrointestinal mucositis (ulcerative)|Gastrointestinal mucositis (ulcerative) +C3874327|T047|AB|538|ICD9CM|GI mucositis (ulceratve)|GI mucositis (ulceratve) +C3161254|T046|HT|539|ICD9CM|Complications of bariatric procedures|Complications of bariatric procedures +C3161255|T046|HT|539.0|ICD9CM|Complications of gastric band procedure|Complications of gastric band procedure +C3161113|T046|AB|539.01|ICD9CM|Inf d/t gastrc band proc|Inf d/t gastrc band proc +C3161113|T046|PT|539.01|ICD9CM|Infection due to gastric band procedure|Infection due to gastric band procedure +C3161114|T046|AB|539.09|ICD9CM|Oth cmp gastrc band proc|Oth cmp gastrc band proc +C3161114|T046|PT|539.09|ICD9CM|Other complications of gastric band procedure|Other complications of gastric band procedure +C3161256|T046|HT|539.8|ICD9CM|Complications of other bariatric procedure|Complications of other bariatric procedure +C3161115|T046|AB|539.81|ICD9CM|Inf d/t ot bariatrc proc|Inf d/t ot bariatrc proc +C3161115|T046|PT|539.81|ICD9CM|Infection due to other bariatric procedure|Infection due to other bariatric procedure +C3161116|T046|AB|539.89|ICD9CM|Ot comp ot bariatrc proc|Ot comp ot bariatrc proc +C3161116|T046|PT|539.89|ICD9CM|Other complications of other bariatric procedure|Other complications of other bariatric procedure +C0085693|T047|HT|540|ICD9CM|Acute appendicitis|Acute appendicitis +C0003615|T047|HT|540-543.99|ICD9CM|APPENDICITIS|APPENDICITIS +C0156092|T047|AB|540.0|ICD9CM|Ac append w peritonitis|Ac append w peritonitis +C0156092|T047|PT|540.0|ICD9CM|Acute appendicitis with generalized peritonitis|Acute appendicitis with generalized peritonitis +C0156093|T047|AB|540.1|ICD9CM|Abscess of appendix|Abscess of appendix +C0156093|T047|PT|540.1|ICD9CM|Acute appendicitis with peritoneal abscess|Acute appendicitis with peritoneal abscess +C0156094|T047|AB|540.9|ICD9CM|Acute appendicitis NOS|Acute appendicitis NOS +C0156094|T047|PT|540.9|ICD9CM|Acute appendicitis without mention of peritonitis|Acute appendicitis without mention of peritonitis +C0003615|T047|AB|541|ICD9CM|Appendicitis NOS|Appendicitis NOS +C0003615|T047|PT|541|ICD9CM|Appendicitis, unqualified|Appendicitis, unqualified +C0156095|T047|AB|542|ICD9CM|Other appendicitis|Other appendicitis +C0156095|T047|PT|542|ICD9CM|Other appendicitis|Other appendicitis +C0156098|T047|HT|543|ICD9CM|Other diseases of appendix|Other diseases of appendix +C1384587|T046|AB|543.0|ICD9CM|Hyperplasia of appendix|Hyperplasia of appendix +C1384587|T046|PT|543.0|ICD9CM|Hyperplasia of appendix (lymphoid)|Hyperplasia of appendix (lymphoid) +C0156098|T047|AB|543.9|ICD9CM|Diseases of appendix NEC|Diseases of appendix NEC +C0156098|T047|PT|543.9|ICD9CM|Other and unspecified diseases of appendix|Other and unspecified diseases of appendix +C0019294|T190|HT|550|ICD9CM|Inguinal hernia|Inguinal hernia +C0178282|T190|HT|550-553.99|ICD9CM|HERNIA OF ABDOMINAL CAVITY|HERNIA OF ABDOMINAL CAVITY +C0156099|T047|HT|550.0|ICD9CM|Inguinal hernia, with gangrene|Inguinal hernia, with gangrene +C0156100|T020|PT|550.00|ICD9CM|Inguinal hernia, with gangrene, unilateral or unspecified (not specified as recurrent)|Inguinal hernia, with gangrene, unilateral or unspecified (not specified as recurrent) +C0156100|T020|AB|550.00|ICD9CM|Unilat ing hernia w gang|Unilat ing hernia w gang +C0156101|T020|PT|550.01|ICD9CM|Inguinal hernia, with gangrene, unilateral or unspecified, recurrent|Inguinal hernia, with gangrene, unilateral or unspecified, recurrent +C0156101|T020|AB|550.01|ICD9CM|Recur unil ing hern-gang|Recur unil ing hern-gang +C0375354|T020|AB|550.02|ICD9CM|Bilat ing hernia w gang|Bilat ing hernia w gang +C0375354|T020|PT|550.02|ICD9CM|Inguinal hernia, with gangrene, bilateral (not specified as recurrent)|Inguinal hernia, with gangrene, bilateral (not specified as recurrent) +C0156103|T047|PT|550.03|ICD9CM|Inguinal hernia, with gangrene, bilateral, recurrent|Inguinal hernia, with gangrene, bilateral, recurrent +C0156103|T047|AB|550.03|ICD9CM|Recur bil ing hern-gang|Recur bil ing hern-gang +C0156104|T020|HT|550.1|ICD9CM|Inguinal hernia, with obstruction, without mention of gangrene|Inguinal hernia, with obstruction, without mention of gangrene +C0554123|T020|AB|550.10|ICD9CM|Unilat ing hernia w obst|Unilat ing hernia w obst +C0156106|T020|PT|550.11|ICD9CM|Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified,recurrent|Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified,recurrent +C0156106|T020|AB|550.11|ICD9CM|Recur unil ing hern-obst|Recur unil ing hern-obst +C0401080|T020|AB|550.12|ICD9CM|Bilat ing hernia w obst|Bilat ing hernia w obst +C0554121|T020|PT|550.13|ICD9CM|Inguinal hernia, with obstruction, without mention of gangrene, bilateral, recurrent|Inguinal hernia, with obstruction, without mention of gangrene, bilateral, recurrent +C0554121|T020|AB|550.13|ICD9CM|Recur bil ing hern-obstr|Recur bil ing hern-obstr +C0021447|T190|HT|550.9|ICD9CM|Inguinal hernia, without mention of obstruction or gangrene|Inguinal hernia, without mention of obstruction or gangrene +C0156109|T020|AB|550.90|ICD9CM|Unilat inguinal hernia|Unilat inguinal hernia +C0156110|T020|PT|550.91|ICD9CM|Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified, recurrent|Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified, recurrent +C0156110|T020|AB|550.91|ICD9CM|Recur unilat inguin hern|Recur unilat inguin hern +C0156111|T020|AB|550.92|ICD9CM|Bilat inguinal hernia|Bilat inguinal hernia +C0156111|T020|PT|550.92|ICD9CM|Inguinal hernia, without mention of obstruction or gangrene, bilateral (not specified as recurrent)|Inguinal hernia, without mention of obstruction or gangrene, bilateral (not specified as recurrent) +C0156112|T020|PT|550.93|ICD9CM|Inguinal hernia, without mention of obstruction or gangrene, bilateral, recurrent|Inguinal hernia, without mention of obstruction or gangrene, bilateral, recurrent +C0156112|T020|AB|550.93|ICD9CM|Recur bilat inguin hern|Recur bilat inguin hern +C0156113|T020|HT|551|ICD9CM|Other hernia of abdominal cavity, with gangrene|Other hernia of abdominal cavity, with gangrene +C0156114|T047|HT|551.0|ICD9CM|Femoral hernia with gangrene|Femoral hernia with gangrene +C0156115|T020|PT|551.00|ICD9CM|Femoral hernia with gangrene, unilateral or unspecified (not specified as recurrent)|Femoral hernia with gangrene, unilateral or unspecified (not specified as recurrent) +C0156115|T020|AB|551.00|ICD9CM|Unil femoral hern w gang|Unil femoral hern w gang +C0156116|T020|PT|551.01|ICD9CM|Femoral hernia with gangrene, unilateral or unspecified, recurrent|Femoral hernia with gangrene, unilateral or unspecified, recurrent +C0156116|T020|AB|551.01|ICD9CM|Rec unil fem hern w gang|Rec unil fem hern w gang +C0156117|T020|AB|551.02|ICD9CM|Bilat fem hern w gang|Bilat fem hern w gang +C0156117|T020|PT|551.02|ICD9CM|Femoral hernia with gangrene, bilateral (not specified as recurrent)|Femoral hernia with gangrene, bilateral (not specified as recurrent) +C0156118|T047|PT|551.03|ICD9CM|Femoral hernia with gangrene, bilateral, recurrent|Femoral hernia with gangrene, bilateral, recurrent +C0156118|T047|AB|551.03|ICD9CM|Recur bil fem hern-gang|Recur bil fem hern-gang +C0156119|T047|AB|551.1|ICD9CM|Umbilical hernia w gangr|Umbilical hernia w gangr +C0156119|T047|PT|551.1|ICD9CM|Umbilical hernia with gangrene|Umbilical hernia with gangrene +C0156120|T047|HT|551.2|ICD9CM|Ventral hernia with gangrene|Ventral hernia with gangrene +C0156120|T047|AB|551.20|ICD9CM|Gangr ventral hernia NOS|Gangr ventral hernia NOS +C0156120|T047|PT|551.20|ICD9CM|Ventral hernia, unspecified, with gangrene|Ventral hernia, unspecified, with gangrene +C0156122|T047|AB|551.21|ICD9CM|Gangr incisional hernia|Gangr incisional hernia +C0156122|T047|PT|551.21|ICD9CM|Incisional ventral hernia, with gangrene|Incisional ventral hernia, with gangrene +C0156123|T020|AB|551.29|ICD9CM|Gang ventral hernia NEC|Gang ventral hernia NEC +C0156123|T020|PT|551.29|ICD9CM|Other ventral hernia with gangrene|Other ventral hernia with gangrene +C0156124|T047|AB|551.3|ICD9CM|Diaphragm hernia w gangr|Diaphragm hernia w gangr +C0156124|T047|PT|551.3|ICD9CM|Diaphragmatic hernia with gangrene|Diaphragmatic hernia with gangrene +C0156125|T020|PT|551.8|ICD9CM|Hernia of other specified sites, with gangrene|Hernia of other specified sites, with gangrene +C0156125|T020|AB|551.8|ICD9CM|Hernia, site NEC w gangr|Hernia, site NEC w gangr +C0267667|T047|PT|551.9|ICD9CM|Hernia of unspecified site, with gangrene|Hernia of unspecified site, with gangrene +C0267667|T047|AB|551.9|ICD9CM|Hernia, site NOS w gangr|Hernia, site NOS w gangr +C0156127|T020|HT|552|ICD9CM|Other hernia of abdominal cavity, with obstruction, but without mention of gangrene|Other hernia of abdominal cavity, with obstruction, but without mention of gangrene +C0156128|T020|HT|552.0|ICD9CM|Femoral hernia with obstruction|Femoral hernia with obstruction +C0156129|T020|PT|552.00|ICD9CM|Femoral hernia with obstruction, unilateral or unspecified (not specified as recurrent)|Femoral hernia with obstruction, unilateral or unspecified (not specified as recurrent) +C0156129|T020|AB|552.00|ICD9CM|Unil femoral hern w obst|Unil femoral hern w obst +C0156130|T020|PT|552.01|ICD9CM|Femoral hernia with obstruction, unilateral or unspecified, recurrent|Femoral hernia with obstruction, unilateral or unspecified, recurrent +C0156130|T020|AB|552.01|ICD9CM|Rec unil fem hern w obst|Rec unil fem hern w obst +C0156131|T020|AB|552.02|ICD9CM|Bil femoral hern w obstr|Bil femoral hern w obstr +C0156131|T020|PT|552.02|ICD9CM|Femoral hernia with obstruction, bilateral (not specified as recurrent)|Femoral hernia with obstruction, bilateral (not specified as recurrent) +C3665334|T190|PT|552.03|ICD9CM|Femoral hernia with obstruction, bilateral, recurrent|Femoral hernia with obstruction, bilateral, recurrent +C3665334|T190|AB|552.03|ICD9CM|Rec bil fem hern w obstr|Rec bil fem hern w obstr +C0156133|T020|AB|552.1|ICD9CM|Umbilical hernia w obstr|Umbilical hernia w obstr +C0156133|T020|PT|552.1|ICD9CM|Umbilical hernia with obstruction|Umbilical hernia with obstruction +C1532669|T020|HT|552.2|ICD9CM|Ventral hernia with obstruction|Ventral hernia with obstruction +C1532669|T020|AB|552.20|ICD9CM|Obstr ventral hernia NOS|Obstr ventral hernia NOS +C1532669|T020|PT|552.20|ICD9CM|Ventral, unspecified, hernia with obstruction|Ventral, unspecified, hernia with obstruction +C1442980|T020|PT|552.21|ICD9CM|Incisional ventral hernia with obstruction|Incisional ventral hernia with obstruction +C1442980|T020|AB|552.21|ICD9CM|Obstr incisional hernia|Obstr incisional hernia +C0156137|T020|AB|552.29|ICD9CM|Obstr ventral hernia NEC|Obstr ventral hernia NEC +C0156137|T020|PT|552.29|ICD9CM|Other ventral hernia with obstruction|Other ventral hernia with obstruction +C0700510|T020|AB|552.3|ICD9CM|Diaphragm hernia w obstr|Diaphragm hernia w obstr +C0700510|T020|PT|552.3|ICD9CM|Diaphragmatic hernia with obstruction|Diaphragmatic hernia with obstruction +C0156139|T020|PT|552.8|ICD9CM|Hernia of other specified sites, with obstruction|Hernia of other specified sites, with obstruction +C0156139|T020|AB|552.8|ICD9CM|Hernia, site NEC w obstr|Hernia, site NEC w obstr +C0156140|T020|PT|552.9|ICD9CM|Hernia of unspecified site, with obstruction|Hernia of unspecified site, with obstruction +C0156140|T020|AB|552.9|ICD9CM|Hernia, site NOS w obstr|Hernia, site NOS w obstr +C0156141|T020|HT|553|ICD9CM|Other hernia of abdominal cavity without mention of obstruction or gangrene|Other hernia of abdominal cavity without mention of obstruction or gangrene +C0520569|T020|HT|553.0|ICD9CM|Femoral hernia without mention of obstruction or gangrene|Femoral hernia without mention of obstruction or gangrene +C0041688|T020|AB|553.00|ICD9CM|Unilat femoral hernia|Unilat femoral hernia +C0156142|T020|PT|553.01|ICD9CM|Femoral hernia without mention of obstruction or gangrene, unilateral or unspecified, recurrent|Femoral hernia without mention of obstruction or gangrene, unilateral or unspecified, recurrent +C0156142|T020|AB|553.01|ICD9CM|Recur unil femoral hern|Recur unil femoral hern +C0401094|T020|AB|553.02|ICD9CM|Bilateral femoral hernia|Bilateral femoral hernia +C0401094|T020|PT|553.02|ICD9CM|Femoral hernia without mention of obstruction or gangrene, bilateral (not specified as recurrent)|Femoral hernia without mention of obstruction or gangrene, bilateral (not specified as recurrent) +C0156144|T020|PT|553.03|ICD9CM|Femoral hernia without mention of obstruction or gangrene, bilateral,recurrent|Femoral hernia without mention of obstruction or gangrene, bilateral,recurrent +C0156144|T020|AB|553.03|ICD9CM|Recur bilat femoral hern|Recur bilat femoral hern +C0041636|T020|AB|553.1|ICD9CM|Umbilical hernia|Umbilical hernia +C0041636|T020|PT|553.1|ICD9CM|Umbilical hernia without mention of obstruction or gangrene|Umbilical hernia without mention of obstruction or gangrene +C0042505|T020|HT|553.2|ICD9CM|Ventral hernia without mention of obstruction or gangrene|Ventral hernia without mention of obstruction or gangrene +C0041893|T020|AB|553.20|ICD9CM|Ventral hernia NOS|Ventral hernia NOS +C0041893|T020|PT|553.20|ICD9CM|Ventral, unspecified, hernia without mention of obstruction or gangrene|Ventral, unspecified, hernia without mention of obstruction or gangrene +C0156145|T020|AB|553.21|ICD9CM|Incisional hernia|Incisional hernia +C0156145|T020|PT|553.21|ICD9CM|Incisional hernia without mention of obstruction or gangrene|Incisional hernia without mention of obstruction or gangrene +C0029870|T020|PT|553.29|ICD9CM|Other ventral hernia without mention of obstruction or gangrene|Other ventral hernia without mention of obstruction or gangrene +C0029870|T020|AB|553.29|ICD9CM|Ventral hernia NEC|Ventral hernia NEC +C0494752|T047|AB|553.3|ICD9CM|Diaphragmatic hernia|Diaphragmatic hernia +C0494752|T047|PT|553.3|ICD9CM|Diaphragmatic hernia without mention of obstruction or gangrene|Diaphragmatic hernia without mention of obstruction or gangrene +C0019275|T190|AB|553.8|ICD9CM|Hernia NEC|Hernia NEC +C0019275|T190|PT|553.8|ICD9CM|Hernia of other specified sites without mention of obstruction or gangrene|Hernia of other specified sites without mention of obstruction or gangrene +C0019275|T190|AB|553.9|ICD9CM|Hernia NOS|Hernia NOS +C0019275|T190|PT|553.9|ICD9CM|Hernia of unspecified site without mention of obstruction or gangrene|Hernia of unspecified site without mention of obstruction or gangrene +C0678202|T047|HT|555|ICD9CM|Regional enteritis|Regional enteritis +C0178283|T047|HT|555-558.99|ICD9CM|NONINFECTIOUS ENTERITIS AND COLITIS|NONINFECTIOUS ENTERITIS AND COLITIS +C0156146|T047|AB|555.0|ICD9CM|Reg enteritis, sm intest|Reg enteritis, sm intest +C0156146|T047|PT|555.0|ICD9CM|Regional enteritis of small intestine|Regional enteritis of small intestine +C0156147|T047|AB|555.1|ICD9CM|Reg enteritis, lg intest|Reg enteritis, lg intest +C0156147|T047|PT|555.1|ICD9CM|Regional enteritis of large intestine|Regional enteritis of large intestine +C0267383|T047|AB|555.2|ICD9CM|Reg enterit sm/lg intest|Reg enterit sm/lg intest +C0267383|T047|PT|555.2|ICD9CM|Regional enteritis of small intestine with large intestine|Regional enteritis of small intestine with large intestine +C0678202|T047|AB|555.9|ICD9CM|Regional enteritis NOS|Regional enteritis NOS +C0678202|T047|PT|555.9|ICD9CM|Regional enteritis of unspecified site|Regional enteritis of unspecified site +C0009324|T047|HT|556|ICD9CM|Ulcerative colitis|Ulcerative colitis +C0267388|T047|PT|556.0|ICD9CM|Ulcerative (chronic) enterocolitis|Ulcerative (chronic) enterocolitis +C0267388|T047|AB|556.0|ICD9CM|Ulcerative enterocolitis|Ulcerative enterocolitis +C0267389|T047|PT|556.1|ICD9CM|Ulcerative (chronic) ileocolitis|Ulcerative (chronic) ileocolitis +C0267389|T047|AB|556.1|ICD9CM|Ulcerative ileocolitis|Ulcerative ileocolitis +C2937222|T047|PT|556.2|ICD9CM|Ulcerative (chronic) proctitis|Ulcerative (chronic) proctitis +C2937222|T047|AB|556.2|ICD9CM|Ulcerative proctitis|Ulcerative proctitis +C0267390|T047|PT|556.3|ICD9CM|Ulcerative (chronic) proctosigmoiditis|Ulcerative (chronic) proctosigmoiditis +C0267390|T047|AB|556.3|ICD9CM|Ulcertve prctosigmoidtis|Ulcertve prctosigmoidtis +C0267392|T047|AB|556.4|ICD9CM|Pseudopolyposis colon|Pseudopolyposis colon +C0267392|T047|PT|556.4|ICD9CM|Pseudopolyposis of colon|Pseudopolyposis of colon +C0375359|T047|PT|556.5|ICD9CM|Left-sided ulcerative (chronic) colitis|Left-sided ulcerative (chronic) colitis +C0375359|T047|AB|556.5|ICD9CM|Lftsded ulcertve colitis|Lftsded ulcertve colitis +C0375360|T047|PT|556.6|ICD9CM|Universal ulcerative (chronic) colitis|Universal ulcerative (chronic) colitis +C0375360|T047|AB|556.6|ICD9CM|Univrsl ulcertve colitis|Univrsl ulcertve colitis +C0348737|T047|AB|556.8|ICD9CM|Other ulcerative colitis|Other ulcerative colitis +C0348737|T047|PT|556.8|ICD9CM|Other ulcerative colitis|Other ulcerative colitis +C0009324|T047|PT|556.9|ICD9CM|Ulcerative colitis, unspecified|Ulcerative colitis, unspecified +C0009324|T047|AB|556.9|ICD9CM|Ulceratve colitis unspcf|Ulceratve colitis unspcf +C2004435|T047|HT|557|ICD9CM|Vascular insufficiency of intestine|Vascular insufficiency of intestine +C0001363|T047|AB|557.0|ICD9CM|Ac vasc insuff intestine|Ac vasc insuff intestine +C0001363|T047|PT|557.0|ICD9CM|Acute vascular insufficiency of intestine|Acute vascular insufficiency of intestine +C0311262|T047|AB|557.1|ICD9CM|Chr vasc insuff intest|Chr vasc insuff intest +C0311262|T047|PT|557.1|ICD9CM|Chronic vascular insufficiency of intestine|Chronic vascular insufficiency of intestine +C2004435|T047|PT|557.9|ICD9CM|Unspecified vascular insufficiency of intestine|Unspecified vascular insufficiency of intestine +C2004435|T047|AB|557.9|ICD9CM|Vasc insuff intest NOS|Vasc insuff intest NOS +C0029512|T047|HT|558|ICD9CM|Other and unspecified noninfectious gastroenteritis and colitis|Other and unspecified noninfectious gastroenteritis and colitis +C0156153|T047|PT|558.1|ICD9CM|Gastroenteritis and colitis due to radiation|Gastroenteritis and colitis due to radiation +C0156153|T047|AB|558.1|ICD9CM|Radiation gastroenterit|Radiation gastroenterit +C0156154|T047|AB|558.2|ICD9CM|Toxic gastroenteritis|Toxic gastroenteritis +C0156154|T047|PT|558.2|ICD9CM|Toxic gastroenteritis and colitis|Toxic gastroenteritis and colitis +C0401143|T047|PT|558.3|ICD9CM|Allergic gastroenteritis and colitis|Allergic gastroenteritis and colitis +C0401143|T047|AB|558.3|ICD9CM|Allrgic gastro & colitis|Allrgic gastro & colitis +C2349567|T047|HT|558.4|ICD9CM|Eosinophilic gastroenteritis and colitis|Eosinophilic gastroenteritis and colitis +C1262481|T047|AB|558.41|ICD9CM|Eosinophilic gastroent|Eosinophilic gastroent +C1262481|T047|PT|558.41|ICD9CM|Eosinophilic gastroenteritis|Eosinophilic gastroenteritis +C0267448|T047|PT|558.42|ICD9CM|Eosinophilic colitis|Eosinophilic colitis +C0267448|T047|AB|558.42|ICD9CM|Eosinophilic colitis|Eosinophilic colitis +C0029512|T047|AB|558.9|ICD9CM|Noninf gastroenterit NEC|Noninf gastroenterit NEC +C0029512|T047|PT|558.9|ICD9CM|Other and unspecified noninfectious gastroenteritis and colitis|Other and unspecified noninfectious gastroenteritis and colitis +C0021844|T020|HT|560|ICD9CM|Intestinal obstruction without mention of hernia|Intestinal obstruction without mention of hernia +C0178284|T047|HT|560-569.99|ICD9CM|OTHER DISEASES OF INTESTINES AND PERITONEUM|OTHER DISEASES OF INTESTINES AND PERITONEUM +C0021933|T047|AB|560.0|ICD9CM|Intussusception|Intussusception +C0021933|T047|PT|560.0|ICD9CM|Intussusception|Intussusception +C0030446|T047|AB|560.1|ICD9CM|Paralytic ileus|Paralytic ileus +C0030446|T047|PT|560.1|ICD9CM|Paralytic ileus|Paralytic ileus +C0042961|T047|PT|560.2|ICD9CM|Volvulus|Volvulus +C0042961|T047|AB|560.2|ICD9CM|Volvulus of intestine|Volvulus of intestine +C0392503|T033|HT|560.3|ICD9CM|Impaction of intestine|Impaction of intestine +C0392503|T033|AB|560.30|ICD9CM|Impaction intestine NOS|Impaction intestine NOS +C0392503|T033|PT|560.30|ICD9CM|Impaction of intestine, unspecified|Impaction of intestine, unspecified +C0156156|T047|AB|560.31|ICD9CM|Gallstone ileus|Gallstone ileus +C0156156|T047|PT|560.31|ICD9CM|Gallstone ileus|Gallstone ileus +C0015734|T033|PT|560.32|ICD9CM|Fecal impaction|Fecal impaction +C0015734|T033|AB|560.32|ICD9CM|Fecal impaction|Fecal impaction +C0029640|T047|AB|560.39|ICD9CM|Impaction intestine NEC|Impaction intestine NEC +C0029640|T047|PT|560.39|ICD9CM|Other impaction of intestine|Other impaction of intestine +C0156157|T047|HT|560.8|ICD9CM|Other specified intestinal obstruction|Other specified intestinal obstruction +C0156158|T047|AB|560.81|ICD9CM|Intestinal adhes w obstr|Intestinal adhes w obstr +C0156158|T047|PT|560.81|ICD9CM|Intestinal or peritoneal adhesions with obstruction (postoperative) (postinfection)|Intestinal or peritoneal adhesions with obstruction (postoperative) (postinfection) +C0156157|T047|AB|560.89|ICD9CM|Intestinal obstruct NEC|Intestinal obstruct NEC +C0156157|T047|PT|560.89|ICD9CM|Other specified intestinal obstruction|Other specified intestinal obstruction +C0021843|T047|AB|560.9|ICD9CM|Intestinal obstruct NOS|Intestinal obstruct NOS +C0021843|T047|PT|560.9|ICD9CM|Unspecified intestinal obstruction|Unspecified intestinal obstruction +C1510475|T047|HT|562|ICD9CM|Diverticula of intestine|Diverticula of intestine +C0267498|T047|HT|562.0|ICD9CM|Diverticula of small intestine|Diverticula of small intestine +C0156162|T047|PT|562.00|ICD9CM|Diverticulosis of small intestine (without mention of hemorrhage)|Diverticulosis of small intestine (without mention of hemorrhage) +C0156162|T047|AB|562.00|ICD9CM|Dvrtclo sml int w/o hmrg|Dvrtclo sml int w/o hmrg +C0156163|T047|PT|562.01|ICD9CM|Diverticulitis of small intestine (without mention of hemorrhage)|Diverticulitis of small intestine (without mention of hemorrhage) +C0156163|T047|AB|562.01|ICD9CM|Dvrtcli sml int w/o hmrg|Dvrtcli sml int w/o hmrg +C4038618|T047|PT|562.02|ICD9CM|Diverticulosis of small intestine with hemorrhage|Diverticulosis of small intestine with hemorrhage +C4038618|T047|AB|562.02|ICD9CM|Dvrtclo sml int w hmrhg|Dvrtclo sml int w hmrhg +C0156165|T047|PT|562.03|ICD9CM|Diverticulitis of small intestine with hemorrhage|Diverticulitis of small intestine with hemorrhage +C0156165|T047|AB|562.03|ICD9CM|Dvrtcli sml int w hmrhg|Dvrtcli sml int w hmrhg +C0012811|T190|HT|562.1|ICD9CM|Diverticula of colon|Diverticula of colon +C0156166|T047|PT|562.10|ICD9CM|Diverticulosis of colon (without mention of hemorrhage)|Diverticulosis of colon (without mention of hemorrhage) +C0156166|T047|AB|562.10|ICD9CM|Dvrtclo colon w/o hmrhg|Dvrtclo colon w/o hmrhg +C0156167|T047|PT|562.11|ICD9CM|Diverticulitis of colon (without mention of hemorrhage)|Diverticulitis of colon (without mention of hemorrhage) +C0156167|T047|AB|562.11|ICD9CM|Dvrtcli colon w/o hmrhg|Dvrtcli colon w/o hmrhg +C0156168|T047|PT|562.12|ICD9CM|Diverticulosis of colon with hemorrhage|Diverticulosis of colon with hemorrhage +C0156168|T047|AB|562.12|ICD9CM|Dvrtclo colon w hmrhg|Dvrtclo colon w hmrhg +C0544793|T047|PT|562.13|ICD9CM|Diverticulitis of colon with hemorrhage|Diverticulitis of colon with hemorrhage +C0544793|T047|AB|562.13|ICD9CM|Dvrtcli colon w hmrhg|Dvrtcli colon w hmrhg +C0302382|T047|HT|564|ICD9CM|Functional digestive disorders, not elsewhere classified|Functional digestive disorders, not elsewhere classified +C0009806|T184|HT|564.0|ICD9CM|Constipation|Constipation +C0009806|T184|AB|564.00|ICD9CM|Constipation NOS|Constipation NOS +C0009806|T184|PT|564.00|ICD9CM|Constipation, unspecified|Constipation, unspecified +C0729262|T033|PT|564.01|ICD9CM|Slow transit constipation|Slow transit constipation +C0729262|T033|AB|564.01|ICD9CM|Slow transt constipation|Slow transt constipation +C0949134|T047|AB|564.02|ICD9CM|Outlet dysfnc constption|Outlet dysfnc constption +C0949134|T047|PT|564.02|ICD9CM|Outlet dysfunction constipation|Outlet dysfunction constipation +C0949135|T047|AB|564.09|ICD9CM|Constipation NEC|Constipation NEC +C0949135|T047|PT|564.09|ICD9CM|Other constipation|Other constipation +C0022104|T047|AB|564.1|ICD9CM|Irritable bowel syndrome|Irritable bowel syndrome +C0022104|T047|PT|564.1|ICD9CM|Irritable bowel syndrome|Irritable bowel syndrome +C0032763|T047|AB|564.2|ICD9CM|Postgastric surgery synd|Postgastric surgery synd +C0032763|T047|PT|564.2|ICD9CM|Postgastric surgery syndromes|Postgastric surgery syndromes +C0156171|T184|PT|564.3|ICD9CM|Vomiting following gastrointestinal surgery|Vomiting following gastrointestinal surgery +C0156171|T184|AB|564.3|ICD9CM|Vomiting post-gi surgery|Vomiting post-gi surgery +C0156172|T047|PT|564.4|ICD9CM|Other postoperative functional disorders|Other postoperative functional disorders +C0156172|T047|AB|564.4|ICD9CM|Postop GI funct dis NEC|Postop GI funct dis NEC +C0156173|T047|AB|564.5|ICD9CM|Functional diarrhea|Functional diarrhea +C0156173|T047|PT|564.5|ICD9CM|Functional diarrhea|Functional diarrhea +C0152167|T047|AB|564.6|ICD9CM|Anal spasm|Anal spasm +C0152167|T047|PT|564.6|ICD9CM|Anal spasm|Anal spasm +C0235904|T047|AB|564.7|ICD9CM|Megacolon NEC|Megacolon NEC +C0235904|T047|PT|564.7|ICD9CM|Megacolon, other than Hirschsprung's|Megacolon, other than Hirschsprung's +C0494776|T047|HT|564.8|ICD9CM|Other specified functional disorders of intestine|Other specified functional disorders of intestine +C0695242|T047|AB|564.81|ICD9CM|Neurogenic bowel|Neurogenic bowel +C0695242|T047|PT|564.81|ICD9CM|Neurogenic bowel|Neurogenic bowel +C0341089|T047|AB|564.89|ICD9CM|Funct dis intestine NEC|Funct dis intestine NEC +C0341089|T047|PT|564.89|ICD9CM|Other functional disorders of intestine|Other functional disorders of intestine +C0016807|T047|AB|564.9|ICD9CM|Funct dis intestine NOS|Funct dis intestine NOS +C0016807|T047|PT|564.9|ICD9CM|Unspecified functional disorder of intestine|Unspecified functional disorder of intestine +C0156175|T190|HT|565|ICD9CM|Anal fissure and fistula|Anal fissure and fistula +C0016167|T047|AB|565.0|ICD9CM|Anal fissure|Anal fissure +C0016167|T047|PT|565.0|ICD9CM|Anal fissure|Anal fissure +C0205929|T020|AB|565.1|ICD9CM|Anal fistula|Anal fistula +C0205929|T020|PT|565.1|ICD9CM|Anal fistula|Anal fistula +C0267567|T047|PT|566|ICD9CM|Abscess of anal and rectal regions|Abscess of anal and rectal regions +C0267567|T047|AB|566|ICD9CM|Anal & rectal abscess|Anal & rectal abscess +C1561637|T047|HT|567|ICD9CM|Peritonitis and retroperitoneal infections|Peritonitis and retroperitoneal infections +C0156177|T047|AB|567.0|ICD9CM|Peritonitis in infec dis|Peritonitis in infec dis +C0156177|T047|PT|567.0|ICD9CM|Peritonitis in infectious diseases classified elsewhere|Peritonitis in infectious diseases classified elsewhere +C0156178|T047|AB|567.1|ICD9CM|Pneumococcal peritonitis|Pneumococcal peritonitis +C0156178|T047|PT|567.1|ICD9CM|Pneumococcal peritonitis|Pneumococcal peritonitis +C0156179|T047|HT|567.2|ICD9CM|Other suppurative peritonitis|Other suppurative peritonitis +C0267751|T047|AB|567.21|ICD9CM|Peritonitis (acute) gen|Peritonitis (acute) gen +C0267751|T047|PT|567.21|ICD9CM|Peritonitis (acute) generalized|Peritonitis (acute) generalized +C0267756|T047|AB|567.22|ICD9CM|Peritoneal abscess|Peritoneal abscess +C0267756|T047|PT|567.22|ICD9CM|Peritoneal abscess|Peritoneal abscess +C0275551|T047|AB|567.23|ICD9CM|Spontan bact peritonitis|Spontan bact peritonitis +C0275551|T047|PT|567.23|ICD9CM|Spontaneous bacterial peritonitis|Spontaneous bacterial peritonitis +C0156179|T047|PT|567.29|ICD9CM|Other suppurative peritonitis|Other suppurative peritonitis +C0156179|T047|AB|567.29|ICD9CM|Suppurat peritonitis NEC|Suppurat peritonitis NEC +C0920049|T047|HT|567.3|ICD9CM|Retroperitoneal infections|Retroperitoneal infections +C0085222|T047|AB|567.31|ICD9CM|Psoas muscle abscess|Psoas muscle abscess +C0085222|T047|PT|567.31|ICD9CM|Psoas muscle abscess|Psoas muscle abscess +C1561633|T046|PT|567.38|ICD9CM|Other retroperitoneal abscess|Other retroperitoneal abscess +C1561633|T046|AB|567.38|ICD9CM|Retroperiton abscess NEC|Retroperiton abscess NEC +C1561634|T047|PT|567.39|ICD9CM|Other retroperitoneal infections|Other retroperitoneal infections +C1561634|T047|AB|567.39|ICD9CM|Retroperiton infect NEC|Retroperiton infect NEC +C0029823|T047|HT|567.8|ICD9CM|Other specified peritonitis|Other specified peritonitis +C0267768|T047|AB|567.81|ICD9CM|Choleperitonitis|Choleperitonitis +C0267768|T047|PT|567.81|ICD9CM|Choleperitonitis|Choleperitonitis +C0267770|T047|AB|567.82|ICD9CM|Sclerosing mesenteritis|Sclerosing mesenteritis +C0267770|T047|PT|567.82|ICD9CM|Sclerosing mesenteritis|Sclerosing mesenteritis +C0029823|T047|PT|567.89|ICD9CM|Other specified peritonitis|Other specified peritonitis +C0029823|T047|AB|567.89|ICD9CM|Peritonitis NEC|Peritonitis NEC +C0031154|T046|AB|567.9|ICD9CM|Peritonitis NOS|Peritonitis NOS +C0031154|T046|PT|567.9|ICD9CM|Unspecified peritonitis|Unspecified peritonitis +C0156180|T047|HT|568|ICD9CM|Other disorders of peritoneum|Other disorders of peritoneum +C0375362|T047|AB|568.0|ICD9CM|Peritoneal adhesions|Peritoneal adhesions +C0375362|T047|PT|568.0|ICD9CM|Peritoneal adhesions (postoperative) (postinfection)|Peritoneal adhesions (postoperative) (postinfection) +C0029786|T047|HT|568.8|ICD9CM|Other specified disorders of peritoneum|Other specified disorders of peritoneum +C0019066|T046|AB|568.81|ICD9CM|Hemoperitoneum|Hemoperitoneum +C0019066|T046|PT|568.81|ICD9CM|Hemoperitoneum (nontraumatic)|Hemoperitoneum (nontraumatic) +C0031144|T047|AB|568.82|ICD9CM|Peritoneal effusion|Peritoneal effusion +C0031144|T047|PT|568.82|ICD9CM|Peritoneal effusion (chronic)|Peritoneal effusion (chronic) +C0029786|T047|PT|568.89|ICD9CM|Other specified disorders of peritoneum|Other specified disorders of peritoneum +C0029786|T047|AB|568.89|ICD9CM|Peritoneal disorder NEC|Peritoneal disorder NEC +C0031142|T047|AB|568.9|ICD9CM|Peritoneal disorder NOS|Peritoneal disorder NOS +C0031142|T047|PT|568.9|ICD9CM|Unspecified disorder of peritoneum|Unspecified disorder of peritoneum +C0156182|T047|HT|569|ICD9CM|Other disorders of intestine|Other disorders of intestine +C0002753|T020|AB|569.0|ICD9CM|Anal & rectal polyp|Anal & rectal polyp +C0002753|T020|PT|569.0|ICD9CM|Anal and rectal polyp|Anal and rectal polyp +C0034888|T047|AB|569.1|ICD9CM|Rectal prolapse|Rectal prolapse +C0034888|T047|PT|569.1|ICD9CM|Rectal prolapse|Rectal prolapse +C0156183|T190|AB|569.2|ICD9CM|Rectal & anal stenosis|Rectal & anal stenosis +C0156183|T190|PT|569.2|ICD9CM|Stenosis of rectum and anus|Stenosis of rectum and anus +C0019081|T046|PT|569.3|ICD9CM|Hemorrhage of rectum and anus|Hemorrhage of rectum and anus +C0019081|T046|AB|569.3|ICD9CM|Rectal & anal hemorrhage|Rectal & anal hemorrhage +C0348742|T047|HT|569.4|ICD9CM|Other specified disorders of rectum and anus|Other specified disorders of rectum and anus +C0400832|T047|AB|569.41|ICD9CM|Rectal & anal ulcer|Rectal & anal ulcer +C0400832|T047|PT|569.41|ICD9CM|Ulcer of anus and rectum|Ulcer of anus and rectum +C0002758|T184|AB|569.42|ICD9CM|Anal or rectal pain|Anal or rectal pain +C0002758|T184|PT|569.42|ICD9CM|Anal or rectal pain|Anal or rectal pain +C1955814|T047|PT|569.43|ICD9CM|Anal sphincter tear (healed) (old)|Anal sphincter tear (healed) (old) +C1955814|T047|AB|569.43|ICD9CM|Anal sphincter tear-old|Anal sphincter tear-old +C0347129|T191|PT|569.44|ICD9CM|Dysplasia of anus|Dysplasia of anus +C0347129|T191|AB|569.44|ICD9CM|Dysplasia of anus|Dysplasia of anus +C0348742|T047|PT|569.49|ICD9CM|Other specified disorders of rectum and anus|Other specified disorders of rectum and anus +C0348742|T047|AB|569.49|ICD9CM|Rectal & anal dis NEC|Rectal & anal dis NEC +C0156185|T047|PT|569.5|ICD9CM|Abscess of intestine|Abscess of intestine +C0156185|T047|AB|569.5|ICD9CM|Intestinal abscess|Intestinal abscess +C0156186|T046|HT|569.6|ICD9CM|Colostomy and enterostomy complications|Colostomy and enterostomy complications +C0156186|T046|PT|569.60|ICD9CM|Colostomy and enterostomy complication, unspecified|Colostomy and enterostomy complication, unspecified +C0156186|T046|AB|569.60|ICD9CM|Colstomy/enter comp NOS|Colstomy/enter comp NOS +C0375363|T047|AB|569.61|ICD9CM|Colosty/enterost infectn|Colosty/enterost infectn +C0375363|T047|PT|569.61|ICD9CM|Infection of colostomy or enterostomy|Infection of colostomy or enterostomy +C0695243|T046|AB|569.62|ICD9CM|Colosty/enter comp-mech|Colosty/enter comp-mech +C0695243|T046|PT|569.62|ICD9CM|Mechanical complication of colostomy and enterostomy|Mechanical complication of colostomy and enterostomy +C0375364|T047|AB|569.69|ICD9CM|Colstmy/enteros comp NEC|Colstmy/enteros comp NEC +C0375364|T047|PT|569.69|ICD9CM|Other colostomy and enterostomy complication|Other colostomy and enterostomy complication +C2712967|T046|HT|569.7|ICD9CM|Complications of intestinal pouch|Complications of intestinal pouch +C0376620|T047|AB|569.71|ICD9CM|Pouchitis|Pouchitis +C0376620|T047|PT|569.71|ICD9CM|Pouchitis|Pouchitis +C2712860|T046|AB|569.79|ICD9CM|Comp intest pouch NEC|Comp intest pouch NEC +C2712860|T046|PT|569.79|ICD9CM|Other complications of intestinal pouch|Other complications of intestinal pouch +C0348743|T047|HT|569.8|ICD9CM|Other specified disorders of intestine|Other specified disorders of intestine +C0016171|T190|PT|569.81|ICD9CM|Fistula of intestine, excluding rectum and anus|Fistula of intestine, excluding rectum and anus +C0016171|T190|AB|569.81|ICD9CM|Intestinal fistula|Intestinal fistula +C0151971|T047|AB|569.82|ICD9CM|Ulceration of intestine|Ulceration of intestine +C0151971|T047|PT|569.82|ICD9CM|Ulceration of intestine|Ulceration of intestine +C0021845|T047|AB|569.83|ICD9CM|Perforation of intestine|Perforation of intestine +C0021845|T047|PT|569.83|ICD9CM|Perforation of intestine|Perforation of intestine +C0267367|T047|AB|569.84|ICD9CM|Angio intes w/o hmrhg|Angio intes w/o hmrhg +C0267367|T047|PT|569.84|ICD9CM|Angiodysplasia of intestine (without mention of hemorrhage)|Angiodysplasia of intestine (without mention of hemorrhage) +C0156188|T047|AB|569.85|ICD9CM|Angio intes w hmrhg|Angio intes w hmrhg +C0156188|T047|PT|569.85|ICD9CM|Angiodysplasia of intestine with hemorrhage|Angiodysplasia of intestine with hemorrhage +C2183395|T047|AB|569.86|ICD9CM|Dieulafoy les, intestine|Dieulafoy les, intestine +C2183395|T047|PT|569.86|ICD9CM|Dieulafoy lesion (hemorrhagic) of intestine|Dieulafoy lesion (hemorrhagic) of intestine +C3874311|T047|PT|569.87|ICD9CM|Vomiting of fecal matter|Vomiting of fecal matter +C3874311|T047|AB|569.87|ICD9CM|Vomiting of fecal matter|Vomiting of fecal matter +C0348743|T047|AB|569.89|ICD9CM|Intestinal disorders NEC|Intestinal disorders NEC +C0348743|T047|PT|569.89|ICD9CM|Other specified disorders of intestine|Other specified disorders of intestine +C0021831|T047|AB|569.9|ICD9CM|Intestinal disorder NOS|Intestinal disorder NOS +C0021831|T047|PT|569.9|ICD9CM|Unspecified disorder of intestine|Unspecified disorder of intestine +C0001308|T047|PT|570|ICD9CM|Acute and subacute necrosis of liver|Acute and subacute necrosis of liver +C0001308|T047|AB|570|ICD9CM|Acute necrosis of liver|Acute necrosis of liver +C0178285|T047|HT|570-579.99|ICD9CM|OTHER DISEASES OF DIGESTIVE SYSTEM|OTHER DISEASES OF DIGESTIVE SYSTEM +C0156189|T047|HT|571|ICD9CM|Chronic liver disease and cirrhosis|Chronic liver disease and cirrhosis +C0015696|T047|AB|571.0|ICD9CM|Alcoholic fatty liver|Alcoholic fatty liver +C0015696|T047|PT|571.0|ICD9CM|Alcoholic fatty liver|Alcoholic fatty liver +C0001306|T047|AB|571.1|ICD9CM|Ac alcoholic hepatitis|Ac alcoholic hepatitis +C0001306|T047|PT|571.1|ICD9CM|Acute alcoholic hepatitis|Acute alcoholic hepatitis +C0023891|T047|AB|571.2|ICD9CM|Alcohol cirrhosis liver|Alcohol cirrhosis liver +C0023891|T047|PT|571.2|ICD9CM|Alcoholic cirrhosis of liver|Alcoholic cirrhosis of liver +C1442981|T047|AB|571.3|ICD9CM|Alcohol liver damage NOS|Alcohol liver damage NOS +C1442981|T047|PT|571.3|ICD9CM|Alcoholic liver damage, unspecified|Alcoholic liver damage, unspecified +C0019189|T047|HT|571.4|ICD9CM|Chronic hepatitis|Chronic hepatitis +C0019189|T047|AB|571.40|ICD9CM|Chronic hepatitis NOS|Chronic hepatitis NOS +C0019189|T047|PT|571.40|ICD9CM|Chronic hepatitis, unspecified|Chronic hepatitis, unspecified +C0149519|T047|AB|571.41|ICD9CM|Chr persistent hepatitis|Chr persistent hepatitis +C0149519|T047|PT|571.41|ICD9CM|Chronic persistent hepatitis|Chronic persistent hepatitis +C0241910|T047|AB|571.42|ICD9CM|Autoimmune hepatitis|Autoimmune hepatitis +C0241910|T047|PT|571.42|ICD9CM|Autoimmune hepatitis|Autoimmune hepatitis +C0029545|T047|AB|571.49|ICD9CM|Chronic hepatitis NEC|Chronic hepatitis NEC +C0029545|T047|PT|571.49|ICD9CM|Other chronic hepatitis|Other chronic hepatitis +C0008827|T047|AB|571.5|ICD9CM|Cirrhosis of liver NOS|Cirrhosis of liver NOS +C0008827|T047|PT|571.5|ICD9CM|Cirrhosis of liver without mention of alcohol|Cirrhosis of liver without mention of alcohol +C0023892|T047|AB|571.6|ICD9CM|Biliary cirrhosis|Biliary cirrhosis +C0023892|T047|PT|571.6|ICD9CM|Biliary cirrhosis|Biliary cirrhosis +C0029546|T047|AB|571.8|ICD9CM|Chronic liver dis NEC|Chronic liver dis NEC +C0029546|T047|PT|571.8|ICD9CM|Other chronic nonalcoholic liver disease|Other chronic nonalcoholic liver disease +C0687718|T047|AB|571.9|ICD9CM|Chronic liver dis NOS|Chronic liver dis NOS +C0687718|T047|PT|571.9|ICD9CM|Unspecified chronic liver disease without mention of alcohol|Unspecified chronic liver disease without mention of alcohol +C0156191|T047|HT|572|ICD9CM|Liver abscess and sequelae of chronic liver disease|Liver abscess and sequelae of chronic liver disease +C0023885|T047|AB|572.0|ICD9CM|Abscess of liver|Abscess of liver +C0023885|T047|PT|572.0|ICD9CM|Abscess of liver|Abscess of liver +C0156192|T047|AB|572.1|ICD9CM|Portal pyemia|Portal pyemia +C0156192|T047|PT|572.1|ICD9CM|Portal pyemia|Portal pyemia +C0019151|T047|PT|572.2|ICD9CM|Hepatic encephalopathy|Hepatic encephalopathy +C0019151|T047|AB|572.2|ICD9CM|Hepatic encephalopathy|Hepatic encephalopathy +C0020541|T047|AB|572.3|ICD9CM|Portal hypertension|Portal hypertension +C0020541|T047|PT|572.3|ICD9CM|Portal hypertension|Portal hypertension +C0019212|T047|AB|572.4|ICD9CM|Hepatorenal syndrome|Hepatorenal syndrome +C0019212|T047|PT|572.4|ICD9CM|Hepatorenal syndrome|Hepatorenal syndrome +C0156193|T047|AB|572.8|ICD9CM|Oth sequela, chr liv dis|Oth sequela, chr liv dis +C0156193|T047|PT|572.8|ICD9CM|Other sequelae of chronic liver disease|Other sequelae of chronic liver disease +C0156194|T047|HT|573|ICD9CM|Other disorders of liver|Other disorders of liver +C0156195|T047|AB|573.0|ICD9CM|Chr passiv congest liver|Chr passiv congest liver +C0156195|T047|PT|573.0|ICD9CM|Chronic passive congestion of liver|Chronic passive congestion of liver +C0156196|T047|AB|573.1|ICD9CM|Hepatitis in viral dis|Hepatitis in viral dis +C0156196|T047|PT|573.1|ICD9CM|Hepatitis in viral diseases classified elsewhere|Hepatitis in viral diseases classified elsewhere +C0156197|T047|AB|573.2|ICD9CM|Hepatitis in oth inf dis|Hepatitis in oth inf dis +C0156197|T047|PT|573.2|ICD9CM|Hepatitis in other infectious diseases classified elsewhere|Hepatitis in other infectious diseases classified elsewhere +C0019158|T047|AB|573.3|ICD9CM|Hepatitis NOS|Hepatitis NOS +C0019158|T047|PT|573.3|ICD9CM|Hepatitis, unspecified|Hepatitis, unspecified +C0151731|T047|AB|573.4|ICD9CM|Hepatic infarction|Hepatic infarction +C0151731|T047|PT|573.4|ICD9CM|Hepatic infarction|Hepatic infarction +C0600452|T047|PT|573.5|ICD9CM|Hepatopulmonary syndrome|Hepatopulmonary syndrome +C0600452|T047|AB|573.5|ICD9CM|Hepatopulmonary syndrome|Hepatopulmonary syndrome +C0348751|T047|AB|573.8|ICD9CM|Liver disorders NEC|Liver disorders NEC +C0348751|T047|PT|573.8|ICD9CM|Other specified disorders of liver|Other specified disorders of liver +C0023895|T047|AB|573.9|ICD9CM|Liver disorder NOS|Liver disorder NOS +C0023895|T047|PT|573.9|ICD9CM|Unspecified disorder of liver|Unspecified disorder of liver +C0008350|T047|HT|574|ICD9CM|Cholelithiasis|Cholelithiasis +C0156199|T047|HT|574.0|ICD9CM|Calculus of gallbladder with acute cholecystitis|Calculus of gallbladder with acute cholecystitis +C0400985|T047|PT|574.00|ICD9CM|Calculus of gallbladder with acute cholecystitis, without mention of obstruction|Calculus of gallbladder with acute cholecystitis, without mention of obstruction +C0400985|T047|AB|574.00|ICD9CM|Cholelith w ac cholecyst|Cholelith w ac cholecyst +C0156201|T047|PT|574.01|ICD9CM|Calculus of gallbladder with acute cholecystitis, with obstruction|Calculus of gallbladder with acute cholecystitis, with obstruction +C0156201|T047|AB|574.01|ICD9CM|Cholelith/ac gb inf-obst|Cholelith/ac gb inf-obst +C0156202|T047|HT|574.1|ICD9CM|Calculus of gallbladder with other cholecystitis|Calculus of gallbladder with other cholecystitis +C0156203|T047|PT|574.10|ICD9CM|Calculus of gallbladder with other cholecystitis, without mention of obstruction|Calculus of gallbladder with other cholecystitis, without mention of obstruction +C0156203|T047|AB|574.10|ICD9CM|Cholelith w cholecys NEC|Cholelith w cholecys NEC +C0156204|T047|PT|574.11|ICD9CM|Calculus of gallbladder with other cholecystitis, with obstruction|Calculus of gallbladder with other cholecystitis, with obstruction +C0156204|T047|AB|574.11|ICD9CM|Cholelith/gb inf NEC-obs|Cholelith/gb inf NEC-obs +C0006741|T047|HT|574.2|ICD9CM|Calculus of gallbladder without mention of cholecystitis|Calculus of gallbladder without mention of cholecystitis +C0006742|T047|PT|574.20|ICD9CM|Calculus of gallbladder without mention of cholecystitis, without mention of obstruction|Calculus of gallbladder without mention of cholecystitis, without mention of obstruction +C0006742|T047|AB|574.20|ICD9CM|Cholelithiasis NOS|Cholelithiasis NOS +C0156205|T047|PT|574.21|ICD9CM|Calculus of gallbladder without mention of cholecystitis, with obstruction|Calculus of gallbladder without mention of cholecystitis, with obstruction +C0156205|T047|AB|574.21|ICD9CM|Cholelithias NOS w obstr|Cholelithias NOS w obstr +C0156206|T047|HT|574.3|ICD9CM|Calculus of bile duct with acute cholecystitis|Calculus of bile duct with acute cholecystitis +C0156207|T047|PT|574.30|ICD9CM|Calculus of bile duct with acute cholecystitis, without mention of obstruction|Calculus of bile duct with acute cholecystitis, without mention of obstruction +C0156207|T047|AB|574.30|ICD9CM|Choledocholith/ac gb inf|Choledocholith/ac gb inf +C0156208|T047|PT|574.31|ICD9CM|Calculus of bile duct with acute cholecystitis, with obstruction|Calculus of bile duct with acute cholecystitis, with obstruction +C0156208|T047|AB|574.31|ICD9CM|Choledochlith/ac gb-obst|Choledochlith/ac gb-obst +C0156209|T047|HT|574.4|ICD9CM|Calculus of bile duct with other cholecystitis|Calculus of bile duct with other cholecystitis +C0156210|T047|PT|574.40|ICD9CM|Calculus of bile duct with other cholecystitis, without mention of obstruction|Calculus of bile duct with other cholecystitis, without mention of obstruction +C0156210|T047|AB|574.40|ICD9CM|Choledochlith/gb inf NEC|Choledochlith/gb inf NEC +C0156211|T047|PT|574.41|ICD9CM|Calculus of bile duct with other cholecystitis, with obstruction|Calculus of bile duct with other cholecystitis, with obstruction +C0156211|T047|AB|574.41|ICD9CM|Choledochlith/gb NEC-obs|Choledochlith/gb NEC-obs +C0006739|T047|HT|574.5|ICD9CM|Calculus of bile duct without mention of cholecystitis|Calculus of bile duct without mention of cholecystitis +C0156212|T047|PT|574.50|ICD9CM|Calculus of bile duct without mention of cholecystitis, without mention of obstruction|Calculus of bile duct without mention of cholecystitis, without mention of obstruction +C0156212|T047|AB|574.50|ICD9CM|Choledocholithiasis NOS|Choledocholithiasis NOS +C0375365|T047|HT|574.6|ICD9CM|Calculus of gallbladder and bile duct with acute cholecystitis|Calculus of gallbladder and bile duct with acute cholecystitis +C0375366|T047|PT|574.60|ICD9CM|Calculus of gallbladder and bile duct with acute cholecystitis, without mention of obstruction|Calculus of gallbladder and bile duct with acute cholecystitis, without mention of obstruction +C0375366|T047|AB|574.60|ICD9CM|Gall&bil cal w/ac w/o ob|Gall&bil cal w/ac w/o ob +C0375367|T047|PT|574.61|ICD9CM|Calculus of gallbladder and bile duct with acute cholecystitis, with obstruction|Calculus of gallbladder and bile duct with acute cholecystitis, with obstruction +C0375367|T047|AB|574.61|ICD9CM|Gall&bil cal w/ac w obs|Gall&bil cal w/ac w obs +C0375368|T047|HT|574.7|ICD9CM|Calculus of gallbladder and bile duct with other cholecystitis|Calculus of gallbladder and bile duct with other cholecystitis +C0375369|T047|PT|574.70|ICD9CM|Calculus of gallbladder and bile duct with other cholecystitis, without mention of obstruction|Calculus of gallbladder and bile duct with other cholecystitis, without mention of obstruction +C0375369|T047|AB|574.70|ICD9CM|Gal&bil cal w/oth w/o ob|Gal&bil cal w/oth w/o ob +C0375370|T047|PT|574.71|ICD9CM|Calculus of gallbladder and bile duct with other cholecystitis, with obstruction|Calculus of gallbladder and bile duct with other cholecystitis, with obstruction +C0375370|T047|AB|574.71|ICD9CM|Gall&bil cal w/oth w obs|Gall&bil cal w/oth w obs +C0375371|T047|HT|574.8|ICD9CM|Calculus of gallbladder and bile duct with acute and chronic cholecystitis|Calculus of gallbladder and bile duct with acute and chronic cholecystitis +C0375372|T047|AB|574.80|ICD9CM|Gal&bil cal w/ac&chr w/o|Gal&bil cal w/ac&chr w/o +C0375373|T047|PT|574.81|ICD9CM|Calculus of gallbladder and bile duct with acute and chronic cholecystitis, with obstruction|Calculus of gallbladder and bile duct with acute and chronic cholecystitis, with obstruction +C0375373|T047|AB|574.81|ICD9CM|Gal&bil cal w/ac&ch w ob|Gal&bil cal w/ac&ch w ob +C0375374|T047|HT|574.9|ICD9CM|Calculus of gallbladder and bile duct without cholecystitis|Calculus of gallbladder and bile duct without cholecystitis +C0375375|T047|PT|574.90|ICD9CM|Calculus of gallbladder and bile duct without cholecystitis, without mention of obstruction|Calculus of gallbladder and bile duct without cholecystitis, without mention of obstruction +C0375375|T047|AB|574.90|ICD9CM|Gall&bil cal w/o cho w/o|Gall&bil cal w/o cho w/o +C0375376|T047|PT|574.91|ICD9CM|Calculus of gallbladder and bile duct without cholecystitis, with obstruction|Calculus of gallbladder and bile duct without cholecystitis, with obstruction +C0375376|T047|AB|574.91|ICD9CM|Gall&bil cal w/o ch w ob|Gall&bil cal w/o ch w ob +C0156213|T047|HT|575|ICD9CM|Other disorders of gallbladder|Other disorders of gallbladder +C0149520|T047|AB|575.0|ICD9CM|Acute cholecystitis|Acute cholecystitis +C0149520|T047|PT|575.0|ICD9CM|Acute cholecystitis|Acute cholecystitis +C0029539|T047|HT|575.1|ICD9CM|Other cholecystitis|Other cholecystitis +C0008325|T047|AB|575.10|ICD9CM|Cholecystitis NOS|Cholecystitis NOS +C0008325|T047|PT|575.10|ICD9CM|Cholecystitis, unspecified|Cholecystitis, unspecified +C0085694|T047|AB|575.11|ICD9CM|Chronic cholecystitis|Chronic cholecystitis +C0085694|T047|PT|575.11|ICD9CM|Chronic cholecystitis|Chronic cholecystitis +C0302472|T047|AB|575.12|ICD9CM|Acte & chr cholecystitis|Acte & chr cholecystitis +C0302472|T047|PT|575.12|ICD9CM|Acute and chronic cholecystitis|Acute and chronic cholecystitis +C0156214|T047|AB|575.2|ICD9CM|Obstruction gallbladder|Obstruction gallbladder +C0156214|T047|PT|575.2|ICD9CM|Obstruction of gallbladder|Obstruction of gallbladder +C0152445|T047|AB|575.3|ICD9CM|Hydrops of gallbladder|Hydrops of gallbladder +C0152445|T047|PT|575.3|ICD9CM|Hydrops of gallbladder|Hydrops of gallbladder +C0156215|T037|AB|575.4|ICD9CM|Perforation gallbladder|Perforation gallbladder +C0156215|T037|PT|575.4|ICD9CM|Perforation of gallbladder|Perforation of gallbladder +C0156216|T190|AB|575.5|ICD9CM|Fistula of gallbladder|Fistula of gallbladder +C0156216|T190|PT|575.5|ICD9CM|Fistula of gallbladder|Fistula of gallbladder +C0152456|T047|PT|575.6|ICD9CM|Cholesterolosis of gallbladder|Cholesterolosis of gallbladder +C0152456|T047|AB|575.6|ICD9CM|Gb cholesterolosis|Gb cholesterolosis +C0348758|T047|AB|575.8|ICD9CM|Dis of gallbladder NEC|Dis of gallbladder NEC +C0348758|T047|PT|575.8|ICD9CM|Other specified disorders of gallbladder|Other specified disorders of gallbladder +C0016977|T047|AB|575.9|ICD9CM|Dis of gallbladder NOS|Dis of gallbladder NOS +C0016977|T047|PT|575.9|ICD9CM|Unspecified disorder of gallbladder|Unspecified disorder of gallbladder +C0156217|T047|HT|576|ICD9CM|Other disorders of biliary tract|Other disorders of biliary tract +C0152099|T047|AB|576.0|ICD9CM|Postcholecystectomy synd|Postcholecystectomy synd +C0152099|T047|PT|576.0|ICD9CM|Postcholecystectomy syndrome|Postcholecystectomy syndrome +C0008311|T047|AB|576.1|ICD9CM|Cholangitis|Cholangitis +C0008311|T047|PT|576.1|ICD9CM|Cholangitis|Cholangitis +C0008370|T047|AB|576.2|ICD9CM|Obstruction of bile duct|Obstruction of bile duct +C0008370|T047|PT|576.2|ICD9CM|Obstruction of bile duct|Obstruction of bile duct +C0156218|T047|AB|576.3|ICD9CM|Perforation of bile duct|Perforation of bile duct +C0156218|T047|PT|576.3|ICD9CM|Perforation of bile duct|Perforation of bile duct +C0005417|T046|AB|576.4|ICD9CM|Fistula of bile duct|Fistula of bile duct +C0005417|T046|PT|576.4|ICD9CM|Fistula of bile duct|Fistula of bile duct +C0152168|T046|PT|576.5|ICD9CM|Spasm of sphincter of Oddi|Spasm of sphincter of Oddi +C0152168|T046|AB|576.5|ICD9CM|Spasm sphincter of oddi|Spasm sphincter of oddi +C0348759|T047|AB|576.8|ICD9CM|Dis of biliary tract NEC|Dis of biliary tract NEC +C0348759|T047|PT|576.8|ICD9CM|Other specified disorders of biliary tract|Other specified disorders of biliary tract +C0005424|T047|AB|576.9|ICD9CM|Dis of biliary tract NOS|Dis of biliary tract NOS +C0005424|T047|PT|576.9|ICD9CM|Unspecified disorder of biliary tract|Unspecified disorder of biliary tract +C0030286|T047|HT|577|ICD9CM|Diseases of pancreas|Diseases of pancreas +C0001339|T047|AB|577.0|ICD9CM|Acute pancreatitis|Acute pancreatitis +C0001339|T047|PT|577.0|ICD9CM|Acute pancreatitis|Acute pancreatitis +C0149521|T047|AB|577.1|ICD9CM|Chronic pancreatitis|Chronic pancreatitis +C0149521|T047|PT|577.1|ICD9CM|Chronic pancreatitis|Chronic pancreatitis +C0010623|T190|PT|577.2|ICD9CM|Cyst and pseudocyst of pancreas|Cyst and pseudocyst of pancreas +C0010623|T190|AB|577.2|ICD9CM|Pancreat cyst/pseudocyst|Pancreat cyst/pseudocyst +C0029771|T047|PT|577.8|ICD9CM|Other specified diseases of pancreas|Other specified diseases of pancreas +C0029771|T047|AB|577.8|ICD9CM|Pancreatic disease NEC|Pancreatic disease NEC +C0030286|T047|AB|577.9|ICD9CM|Pancreatic disease NOS|Pancreatic disease NOS +C0030286|T047|PT|577.9|ICD9CM|Unspecified disease of pancreas|Unspecified disease of pancreas +C0017181|T046|HT|578|ICD9CM|Gastrointestinal hemorrhage|Gastrointestinal hemorrhage +C0018926|T184|AB|578.0|ICD9CM|Hematemesis|Hematemesis +C0018926|T184|PT|578.0|ICD9CM|Hematemesis|Hematemesis +C1321898|T184|AB|578.1|ICD9CM|Blood in stool|Blood in stool +C1321898|T184|PT|578.1|ICD9CM|Blood in stool|Blood in stool +C0017181|T046|AB|578.9|ICD9CM|Gastrointest hemorr NOS|Gastrointest hemorr NOS +C0017181|T046|PT|578.9|ICD9CM|Hemorrhage of gastrointestinal tract, unspecified|Hemorrhage of gastrointestinal tract, unspecified +C0024523|T047|HT|579|ICD9CM|Intestinal malabsorption|Intestinal malabsorption +C0007570|T047|AB|579.0|ICD9CM|Celiac disease|Celiac disease +C0007570|T047|PT|579.0|ICD9CM|Celiac disease|Celiac disease +C0038054|T047|AB|579.1|ICD9CM|Tropical sprue|Tropical sprue +C0038054|T047|PT|579.1|ICD9CM|Tropical sprue|Tropical sprue +C0005750|T047|AB|579.2|ICD9CM|Blind loop syndrome|Blind loop syndrome +C0005750|T047|PT|579.2|ICD9CM|Blind loop syndrome|Blind loop syndrome +C0029515|T033|AB|579.3|ICD9CM|Intest postop nonabsorb|Intest postop nonabsorb +C0029515|T033|PT|579.3|ICD9CM|Other and unspecified postsurgical nonabsorption|Other and unspecified postsurgical nonabsorption +C0152166|T047|AB|579.4|ICD9CM|Pancreatic steatorrhea|Pancreatic steatorrhea +C0152166|T047|PT|579.4|ICD9CM|Pancreatic steatorrhea|Pancreatic steatorrhea +C0029809|T047|AB|579.8|ICD9CM|Intest malabsorption NEC|Intest malabsorption NEC +C0029809|T047|PT|579.8|ICD9CM|Other specified intestinal malabsorption|Other specified intestinal malabsorption +C0024523|T047|AB|579.9|ICD9CM|Intest malabsorption NOS|Intest malabsorption NOS +C0024523|T047|PT|579.9|ICD9CM|Unspecified intestinal malabsorption|Unspecified intestinal malabsorption +C0156221|T047|HT|580|ICD9CM|Acute glomerulonephritis|Acute glomerulonephritis +C0178287|T047|HT|580-589.99|ICD9CM|NEPHRITIS, NEPHROTIC SYNDROME, AND NEPHROSIS|NEPHRITIS, NEPHROTIC SYNDROME, AND NEPHROSIS +C0080276|T047|HT|580-629.99|ICD9CM|DISEASES OF THE GENITOURINARY SYSTEM|DISEASES OF THE GENITOURINARY SYSTEM +C0341692|T047|AB|580.0|ICD9CM|Ac proliferat nephritis|Ac proliferat nephritis +C0341692|T047|PT|580.0|ICD9CM|Acute glomerulonephritis with lesion of proliferative glomerulonephritis|Acute glomerulonephritis with lesion of proliferative glomerulonephritis +C0156223|T047|AB|580.4|ICD9CM|Ac rapidly progr nephrit|Ac rapidly progr nephrit +C0156223|T047|PT|580.4|ICD9CM|Acute glomerulonephritis with lesion of rapidly progressive glomerulonephritis|Acute glomerulonephritis with lesion of rapidly progressive glomerulonephritis +C0156224|T047|HT|580.8|ICD9CM|Acute glomerulonephritis with other specified pathological lesion in kidney|Acute glomerulonephritis with other specified pathological lesion in kidney +C0156225|T047|AB|580.81|ICD9CM|Ac nephritis in oth dis|Ac nephritis in oth dis +C0156225|T047|PT|580.81|ICD9CM|Acute glomerulonephritis in diseases classified elsewhere|Acute glomerulonephritis in diseases classified elsewhere +C0156224|T047|PT|580.89|ICD9CM|Acute glomerulonephritis with other specified pathological lesion in kidney|Acute glomerulonephritis with other specified pathological lesion in kidney +C0156224|T047|AB|580.89|ICD9CM|Acute nephritis NEC|Acute nephritis NEC +C0156226|T047|PT|580.9|ICD9CM|Acute glomerulonephritis with unspecified pathological lesion in kidney|Acute glomerulonephritis with unspecified pathological lesion in kidney +C0156226|T047|AB|580.9|ICD9CM|Acute nephritis NOS|Acute nephritis NOS +C0027726|T047|HT|581|ICD9CM|Nephrotic syndrome|Nephrotic syndrome +C0156227|T047|AB|581.0|ICD9CM|Nephrotic syn, prolifer|Nephrotic syn, prolifer +C0156227|T047|PT|581.0|ICD9CM|Nephrotic syndrome with lesion of proliferative glomerulonephritis|Nephrotic syndrome with lesion of proliferative glomerulonephritis +C0156228|T047|AB|581.1|ICD9CM|Epimembranous nephritis|Epimembranous nephritis +C0156228|T047|PT|581.1|ICD9CM|Nephrotic syndrome with lesion of membranous glomerulonephritis|Nephrotic syndrome with lesion of membranous glomerulonephritis +C0156229|T047|AB|581.2|ICD9CM|Membranoprolif nephrosis|Membranoprolif nephrosis +C0156229|T047|PT|581.2|ICD9CM|Nephrotic syndrome with lesion of membranoproliferative glomerulonephritis|Nephrotic syndrome with lesion of membranoproliferative glomerulonephritis +C1704321|T047|AB|581.3|ICD9CM|Minimal change nephrosis|Minimal change nephrosis +C1704321|T047|PT|581.3|ICD9CM|Nephrotic syndrome with lesion of minimal change glomerulonephritis|Nephrotic syndrome with lesion of minimal change glomerulonephritis +C0027729|T047|HT|581.8|ICD9CM|Nephrotic syndrome with other specified pathological lesion in kidney|Nephrotic syndrome with other specified pathological lesion in kidney +C0156230|T047|AB|581.81|ICD9CM|Nephrotic syn in oth dis|Nephrotic syn in oth dis +C0156230|T047|PT|581.81|ICD9CM|Nephrotic syndrome in diseases classified elsewhere|Nephrotic syndrome in diseases classified elsewhere +C0027729|T047|AB|581.89|ICD9CM|Nephrotic syndrome NEC|Nephrotic syndrome NEC +C0027729|T047|PT|581.89|ICD9CM|Nephrotic syndrome with other specified pathological lesion in kidney|Nephrotic syndrome with other specified pathological lesion in kidney +C0027730|T047|AB|581.9|ICD9CM|Nephrotic syndrome NOS|Nephrotic syndrome NOS +C0027730|T047|PT|581.9|ICD9CM|Nephrotic syndrome with unspecified pathological lesion in kidney|Nephrotic syndrome with unspecified pathological lesion in kidney +C0152451|T047|HT|582|ICD9CM|Chronic glomerulonephritis|Chronic glomerulonephritis +C0156231|T047|AB|582.0|ICD9CM|Chr proliferat nephritis|Chr proliferat nephritis +C0156231|T047|PT|582.0|ICD9CM|Chronic glomerulonephritis with lesion of proliferative glomerulonephritis|Chronic glomerulonephritis with lesion of proliferative glomerulonephritis +C0008686|T047|AB|582.1|ICD9CM|Chr membranous nephritis|Chr membranous nephritis +C0008686|T047|PT|582.1|ICD9CM|Chronic glomerulonephritis with lesion of membranous glomerulonephritis|Chronic glomerulonephritis with lesion of membranous glomerulonephritis +C0008685|T047|AB|582.2|ICD9CM|Chr membranoprolif nephr|Chr membranoprolif nephr +C0008685|T047|PT|582.2|ICD9CM|Chronic glomerulonephritis with lesion of membranoproliferative glomerulonephritis|Chronic glomerulonephritis with lesion of membranoproliferative glomerulonephritis +C0341694|T047|AB|582.4|ICD9CM|Chr rapid progr nephrit|Chr rapid progr nephrit +C0341694|T047|PT|582.4|ICD9CM|Chronic glomerulonephritis with lesion of rapidly progressive glomerulonephritis|Chronic glomerulonephritis with lesion of rapidly progressive glomerulonephritis +C0156233|T047|HT|582.8|ICD9CM|Chronic glomerulonephritis with other specified pathological lesion in kidney|Chronic glomerulonephritis with other specified pathological lesion in kidney +C0156234|T047|AB|582.81|ICD9CM|Chr nephritis in oth dis|Chr nephritis in oth dis +C0156234|T047|PT|582.81|ICD9CM|Chronic glomerulonephritis in diseases classified elsewhere|Chronic glomerulonephritis in diseases classified elsewhere +C0156233|T047|PT|582.89|ICD9CM|Chronic glomerulonephritis with other specified pathological lesion in kidney|Chronic glomerulonephritis with other specified pathological lesion in kidney +C0156233|T047|AB|582.89|ICD9CM|Chronic nephritis NEC|Chronic nephritis NEC +C0156235|T047|PT|582.9|ICD9CM|Chronic glomerulonephritis with unspecified pathological lesion in kidney|Chronic glomerulonephritis with unspecified pathological lesion in kidney +C0156235|T047|AB|582.9|ICD9CM|Chronic nephritis NOS|Chronic nephritis NOS +C0027698|T047|HT|583|ICD9CM|Nephritis and nephropathy, not specified as acute or chronic|Nephritis and nephropathy, not specified as acute or chronic +C0156236|T047|AB|583.0|ICD9CM|Proliferat nephritis NOS|Proliferat nephritis NOS +C0027701|T047|AB|583.1|ICD9CM|Membranous nephritis NOS|Membranous nephritis NOS +C0027700|T047|AB|583.2|ICD9CM|Membranoprolif nephr NOS|Membranoprolif nephr NOS +C0156237|T047|AB|583.4|ICD9CM|Rapidly prog nephrit NOS|Rapidly prog nephrit NOS +C0156238|T047|PT|583.6|ICD9CM|Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal cortical necrosis|Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal cortical necrosis +C0156238|T047|AB|583.6|ICD9CM|Renal cort necrosis NOS|Renal cort necrosis NOS +C0156239|T047|AB|583.7|ICD9CM|Nephr NOS/medull necros|Nephr NOS/medull necros +C0027699|T047|PT|583.81|ICD9CM|Nephritis and nephropathy, not specified as acute or chronic, in diseases classified elsewhere|Nephritis and nephropathy, not specified as acute or chronic, in diseases classified elsewhere +C0027699|T047|AB|583.81|ICD9CM|Nephritis NOS in oth dis|Nephritis NOS in oth dis +C0027702|T047|AB|583.89|ICD9CM|Nephritis NEC|Nephritis NEC +C0027703|T047|AB|583.9|ICD9CM|Nephritis NOS|Nephritis NOS +C0022660|T047|HT|584|ICD9CM|Acute kidney failure|Acute kidney failure +C2712977|T047|AB|584.5|ICD9CM|Ac kidny fail, tubr necr|Ac kidny fail, tubr necr +C2712977|T047|PT|584.5|ICD9CM|Acute kidney failure with lesion of tubular necrosis|Acute kidney failure with lesion of tubular necrosis +C2712983|T047|AB|584.6|ICD9CM|Ac kidny fail, cort necr|Ac kidny fail, cort necr +C2712983|T047|PT|584.6|ICD9CM|Acute kidney failure with lesion of renal cortical necrosis|Acute kidney failure with lesion of renal cortical necrosis +C2712745|T047|AB|584.7|ICD9CM|Ac kidny fail, medu necr|Ac kidny fail, medu necr +C2712745|T047|PT|584.7|ICD9CM|Acute kidney failure with lesion of renal medullary [papillary] necrosis|Acute kidney failure with lesion of renal medullary [papillary] necrosis +C2712988|T047|AB|584.8|ICD9CM|Acute kidney failure NEC|Acute kidney failure NEC +C2712988|T047|PT|584.8|ICD9CM|Acute kidney failure with other specified pathological lesion in kidney|Acute kidney failure with other specified pathological lesion in kidney +C0022660|T047|AB|584.9|ICD9CM|Acute kidney failure NOS|Acute kidney failure NOS +C0022660|T047|PT|584.9|ICD9CM|Acute kidney failure, unspecified|Acute kidney failure, unspecified +C1561643|T047|HT|585|ICD9CM|Chronic kidney disease (CKD)|Chronic kidney disease (CKD) +C1561638|T047|AB|585.1|ICD9CM|Chro kidney dis stage I|Chro kidney dis stage I +C1561638|T047|PT|585.1|ICD9CM|Chronic kidney disease, Stage I|Chronic kidney disease, Stage I +C1561639|T047|AB|585.2|ICD9CM|Chro kidney dis stage II|Chro kidney dis stage II +C1561639|T047|PT|585.2|ICD9CM|Chronic kidney disease, Stage II (mild)|Chronic kidney disease, Stage II (mild) +C1561640|T047|AB|585.3|ICD9CM|Chr kidney dis stage III|Chr kidney dis stage III +C1561640|T047|PT|585.3|ICD9CM|Chronic kidney disease, Stage III (moderate)|Chronic kidney disease, Stage III (moderate) +C1561641|T047|AB|585.4|ICD9CM|Chr kidney dis stage IV|Chr kidney dis stage IV +C1561641|T047|PT|585.4|ICD9CM|Chronic kidney disease, Stage IV (severe)|Chronic kidney disease, Stage IV (severe) +C1561642|T047|AB|585.5|ICD9CM|Chron kidney dis stage V|Chron kidney dis stage V +C1561642|T047|PT|585.5|ICD9CM|Chronic kidney disease, Stage V|Chronic kidney disease, Stage V +C0022661|T047|AB|585.6|ICD9CM|End stage renal disease|End stage renal disease +C0022661|T047|PT|585.6|ICD9CM|End stage renal disease|End stage renal disease +C1561643|T047|AB|585.9|ICD9CM|Chronic kidney dis NOS|Chronic kidney dis NOS +C1561643|T047|PT|585.9|ICD9CM|Chronic kidney disease, unspecified|Chronic kidney disease, unspecified +C0035078|T047|AB|586|ICD9CM|Renal failure NOS|Renal failure NOS +C0035078|T047|PT|586|ICD9CM|Renal failure, unspecified|Renal failure, unspecified +C0027719|T047|AB|587|ICD9CM|Renal sclerosis NOS|Renal sclerosis NOS +C0027719|T047|PT|587|ICD9CM|Renal sclerosis, unspecified|Renal sclerosis, unspecified +C0341677|T047|HT|588|ICD9CM|Disorders resulting from impaired renal function|Disorders resulting from impaired renal function +C0035086|T047|AB|588.0|ICD9CM|Renal osteodystrophy|Renal osteodystrophy +C0035086|T047|PT|588.0|ICD9CM|Renal osteodystrophy|Renal osteodystrophy +C0162283|T047|AB|588.1|ICD9CM|Nephrogen diabetes insip|Nephrogen diabetes insip +C0162283|T047|PT|588.1|ICD9CM|Nephrogenic diabetes insipidus|Nephrogenic diabetes insipidus +C0029791|T047|HT|588.8|ICD9CM|Other specified disorders resulting from impaired renal function|Other specified disorders resulting from impaired renal function +C0271847|T047|AB|588.81|ICD9CM|Sec hyperparathyrd-renal|Sec hyperparathyrd-renal +C0271847|T047|PT|588.81|ICD9CM|Secondary hyperparathyroidism (of renal origin)|Secondary hyperparathyroidism (of renal origin) +C0029791|T047|AB|588.89|ICD9CM|Impair ren funct dis NEC|Impair ren funct dis NEC +C0029791|T047|PT|588.89|ICD9CM|Other specified disorders resulting from impaired renal function|Other specified disorders resulting from impaired renal function +C0341677|T047|AB|588.9|ICD9CM|Impaired renal funct NOS|Impaired renal funct NOS +C0341677|T047|PT|588.9|ICD9CM|Unspecified disorder resulting from impaired renal function|Unspecified disorder resulting from impaired renal function +C0156247|T033|HT|589|ICD9CM|Small kidney of unknown cause|Small kidney of unknown cause +C0156245|T019|AB|589.0|ICD9CM|Unilateral small kidney|Unilateral small kidney +C0156245|T019|PT|589.0|ICD9CM|Unilateral small kidney|Unilateral small kidney +C0156246|T190|AB|589.1|ICD9CM|Bilateral small kidneys|Bilateral small kidneys +C0156246|T190|PT|589.1|ICD9CM|Bilateral small kidneys|Bilateral small kidneys +C0156247|T033|AB|589.9|ICD9CM|Small kidney NOS|Small kidney NOS +C0156247|T033|PT|589.9|ICD9CM|Small kidney, unspecified|Small kidney, unspecified +C0021313|T047|HT|590|ICD9CM|Infections of kidney|Infections of kidney +C0178288|T047|HT|590-599.99|ICD9CM|OTHER DISEASES OF URINARY SYSTEM|OTHER DISEASES OF URINARY SYSTEM +C0085697|T047|HT|590.0|ICD9CM|Chronic pyelonephritis|Chronic pyelonephritis +C0156249|T047|AB|590.00|ICD9CM|Chr pyelonephritis NOS|Chr pyelonephritis NOS +C0156249|T047|PT|590.00|ICD9CM|Chronic pyelonephritis without lesion of renal medullary necrosis|Chronic pyelonephritis without lesion of renal medullary necrosis +C0156250|T047|AB|590.01|ICD9CM|Chr pyeloneph w med necr|Chr pyeloneph w med necr +C0156250|T047|PT|590.01|ICD9CM|Chronic pyelonephritis with lesion of renal medullary necrosis|Chronic pyelonephritis with lesion of renal medullary necrosis +C0520575|T047|HT|590.1|ICD9CM|Acute pyelonephritis|Acute pyelonephritis +C0156251|T047|AB|590.10|ICD9CM|Ac pyelonephritis NOS|Ac pyelonephritis NOS +C0156251|T047|PT|590.10|ICD9CM|Acute pyelonephritis without lesion of renal medullary necrosis|Acute pyelonephritis without lesion of renal medullary necrosis +C0156252|T047|AB|590.11|ICD9CM|Ac pyelonephr w med necr|Ac pyelonephr w med necr +C0156252|T047|PT|590.11|ICD9CM|Acute pyelonephritis with lesion of renal medullary necrosis|Acute pyelonephritis with lesion of renal medullary necrosis +C0156253|T047|PT|590.2|ICD9CM|Renal and perinephric abscess|Renal and perinephric abscess +C0156253|T047|AB|590.2|ICD9CM|Renal/perirenal abscess|Renal/perirenal abscess +C0156254|T047|AB|590.3|ICD9CM|Pyeloureteritis cystica|Pyeloureteritis cystica +C0156254|T047|PT|590.3|ICD9CM|Pyeloureteritis cystica|Pyeloureteritis cystica +C0156255|T047|HT|590.8|ICD9CM|Other pyelonephritis or pyonephrosis, not specified as acute or chronic|Other pyelonephritis or pyonephrosis, not specified as acute or chronic +C0034186|T047|AB|590.80|ICD9CM|Pyelonephritis NOS|Pyelonephritis NOS +C0034186|T047|PT|590.80|ICD9CM|Pyelonephritis, unspecified|Pyelonephritis, unspecified +C0156256|T047|PT|590.81|ICD9CM|Pyelitis or pyelonephritis in diseases classified elsewhere|Pyelitis or pyelonephritis in diseases classified elsewhere +C0156256|T047|AB|590.81|ICD9CM|Pyelonephrit in oth dis|Pyelonephrit in oth dis +C0021313|T047|AB|590.9|ICD9CM|Infection of kidney NOS|Infection of kidney NOS +C0021313|T047|PT|590.9|ICD9CM|Infection of kidney, unspecified|Infection of kidney, unspecified +C0020295|T047|AB|591|ICD9CM|Hydronephrosis|Hydronephrosis +C0020295|T047|PT|591|ICD9CM|Hydronephrosis|Hydronephrosis +C0156257|T047|HT|592|ICD9CM|Calculus of kidney and ureter|Calculus of kidney and ureter +C0022650|T047|AB|592.0|ICD9CM|Calculus of kidney|Calculus of kidney +C0022650|T047|PT|592.0|ICD9CM|Calculus of kidney|Calculus of kidney +C0041952|T047|AB|592.1|ICD9CM|Calculus of ureter|Calculus of ureter +C0041952|T047|PT|592.1|ICD9CM|Calculus of ureter|Calculus of ureter +C4759702|T047|AB|592.9|ICD9CM|Urinary calculus NOS|Urinary calculus NOS +C4759702|T047|PT|592.9|ICD9CM|Urinary calculus, unspecified|Urinary calculus, unspecified +C0156258|T047|HT|593|ICD9CM|Other disorders of kidney and ureter|Other disorders of kidney and ureter +C1384594|T047|AB|593.0|ICD9CM|Nephroptosis|Nephroptosis +C1384594|T047|PT|593.0|ICD9CM|Nephroptosis|Nephroptosis +C0156259|T047|AB|593.1|ICD9CM|Hypertrophy of kidney|Hypertrophy of kidney +C0156259|T047|PT|593.1|ICD9CM|Hypertrophy of kidney|Hypertrophy of kidney +C0268799|T047|AB|593.2|ICD9CM|Cyst of kidney, acquired|Cyst of kidney, acquired +C0268799|T047|PT|593.2|ICD9CM|Cyst of kidney, acquired|Cyst of kidney, acquired +C0156261|T020|AB|593.3|ICD9CM|Stricture of ureter|Stricture of ureter +C0156261|T020|PT|593.3|ICD9CM|Stricture or kinking of ureter|Stricture or kinking of ureter +C0029866|T190|PT|593.4|ICD9CM|Other ureteric obstruction|Other ureteric obstruction +C0029866|T190|AB|593.4|ICD9CM|Ureteric obstruction NEC|Ureteric obstruction NEC +C0521620|T190|AB|593.5|ICD9CM|Hydroureter|Hydroureter +C0521620|T190|PT|593.5|ICD9CM|Hydroureter|Hydroureter +C0232867|T047|AB|593.6|ICD9CM|Postural proteinuria|Postural proteinuria +C0232867|T047|PT|593.6|ICD9CM|Postural proteinuria|Postural proteinuria +C0042580|T047|HT|593.7|ICD9CM|Vesicoureteral reflux|Vesicoureteral reflux +C0490048|T047|AB|593.70|ICD9CM|Vescouretrl rflux unspcf|Vescouretrl rflux unspcf +C0490048|T047|PT|593.70|ICD9CM|Vesicoureteral reflux unspecified or without reflux nephropathy|Vesicoureteral reflux unspecified or without reflux nephropathy +C0375377|T047|PT|593.71|ICD9CM|Vesicoureteral reflux with reflux nephropathy, unilateral|Vesicoureteral reflux with reflux nephropathy, unilateral +C0375377|T047|AB|593.71|ICD9CM|Vscurt rflx npht uniltrl|Vscurt rflx npht uniltrl +C0375378|T047|PT|593.72|ICD9CM|Vesicoureteral reflux with reflux nephropathy, bilateral|Vesicoureteral reflux with reflux nephropathy, bilateral +C0375378|T047|AB|593.72|ICD9CM|Vscourtl rflx npht bltrl|Vscourtl rflx npht bltrl +C0375379|T047|PT|593.73|ICD9CM|Other vesicoureteral reflux with reflux nephropathy NOS|Other vesicoureteral reflux with reflux nephropathy NOS +C0375379|T047|AB|593.73|ICD9CM|Vscourtl rflx w npht NOS|Vscourtl rflx w npht NOS +C0029781|T047|HT|593.8|ICD9CM|Other specified disorders of kidney and ureter|Other specified disorders of kidney and ureter +C0268790|T047|AB|593.81|ICD9CM|Renal vascular disorder|Renal vascular disorder +C0268790|T047|PT|593.81|ICD9CM|Vascular disorders of kidney|Vascular disorders of kidney +C0156263|T020|AB|593.82|ICD9CM|Ureteral fistula|Ureteral fistula +C0156263|T020|PT|593.82|ICD9CM|Ureteral fistula|Ureteral fistula +C0029781|T047|PT|593.89|ICD9CM|Other specified disorders of kidney and ureter|Other specified disorders of kidney and ureter +C0029781|T047|AB|593.89|ICD9CM|Renal & ureteral dis NEC|Renal & ureteral dis NEC +C0268701|T047|AB|593.9|ICD9CM|Renal & ureteral dis NOS|Renal & ureteral dis NOS +C0268701|T047|PT|593.9|ICD9CM|Unspecified disorder of kidney and ureter|Unspecified disorder of kidney and ureter +C0156264|T047|HT|594|ICD9CM|Calculus of lower urinary tract|Calculus of lower urinary tract +C0156265|T047|AB|594.0|ICD9CM|Blad diverticulum calcul|Blad diverticulum calcul +C0156265|T047|PT|594.0|ICD9CM|Calculus in diverticulum of bladder|Calculus in diverticulum of bladder +C1961101|T047|AB|594.1|ICD9CM|Bladder calculus NEC|Bladder calculus NEC +C1961101|T047|PT|594.1|ICD9CM|Other calculus in bladder|Other calculus in bladder +C0162301|T047|PT|594.2|ICD9CM|Calculus in urethra|Calculus in urethra +C0162301|T047|AB|594.2|ICD9CM|Urethral calculus|Urethral calculus +C0156266|T047|AB|594.8|ICD9CM|Lower urin calcul NEC|Lower urin calcul NEC +C0156266|T047|PT|594.8|ICD9CM|Other lower urinary tract calculus|Other lower urinary tract calculus +C0156264|T047|PT|594.9|ICD9CM|Calculus of lower urinary tract, unspecified|Calculus of lower urinary tract, unspecified +C0156264|T047|AB|594.9|ICD9CM|Lower urin calcul NOS|Lower urin calcul NOS +C0010692|T047|HT|595|ICD9CM|Cystitis|Cystitis +C0149523|T047|AB|595.0|ICD9CM|Acute cystitis|Acute cystitis +C0149523|T047|PT|595.0|ICD9CM|Acute cystitis|Acute cystitis +C0600040|T047|AB|595.1|ICD9CM|Chr interstit cystitis|Chr interstit cystitis +C0600040|T047|PT|595.1|ICD9CM|Chronic interstitial cystitis|Chronic interstitial cystitis +C0156268|T047|AB|595.2|ICD9CM|Chronic cystitis NEC|Chronic cystitis NEC +C0156268|T047|PT|595.2|ICD9CM|Other chronic cystitis|Other chronic cystitis +C1261278|T047|AB|595.3|ICD9CM|Trigonitis|Trigonitis +C1261278|T047|PT|595.3|ICD9CM|Trigonitis|Trigonitis +C0156269|T047|PT|595.4|ICD9CM|Cystitis in diseases classified elsewhere|Cystitis in diseases classified elsewhere +C0156269|T047|AB|595.4|ICD9CM|Cystitis in oth dis|Cystitis in oth dis +C0029836|T047|HT|595.8|ICD9CM|Other specified types of cystitis|Other specified types of cystitis +C0152262|T047|AB|595.81|ICD9CM|Cystitis cystica|Cystitis cystica +C0152262|T047|PT|595.81|ICD9CM|Cystitis cystica|Cystitis cystica +C0156270|T047|AB|595.82|ICD9CM|Irradiation cystitis|Irradiation cystitis +C0156270|T047|PT|595.82|ICD9CM|Irradiation cystitis|Irradiation cystitis +C0029836|T047|AB|595.89|ICD9CM|Cystitis NEC|Cystitis NEC +C0029836|T047|PT|595.89|ICD9CM|Other specified types of cystitis|Other specified types of cystitis +C0010692|T047|AB|595.9|ICD9CM|Cystitis NOS|Cystitis NOS +C0010692|T047|PT|595.9|ICD9CM|Cystitis, unspecified|Cystitis, unspecified +C0156271|T047|HT|596|ICD9CM|Other disorders of bladder|Other disorders of bladder +C0005694|T047|AB|596.0|ICD9CM|Bladder neck obstruction|Bladder neck obstruction +C0005694|T047|PT|596.0|ICD9CM|Bladder neck obstruction|Bladder neck obstruction +C0156272|T047|AB|596.1|ICD9CM|Intestinovesical fistula|Intestinovesical fistula +C0156272|T047|PT|596.1|ICD9CM|Intestinovesical fistula|Intestinovesical fistula +C0868850|T190|AB|596.2|ICD9CM|Vesical fistula NEC|Vesical fistula NEC +C0868850|T190|PT|596.2|ICD9CM|Vesical fistula, not elsewhere classified|Vesical fistula, not elsewhere classified +C0156273|T020|AB|596.3|ICD9CM|Diverticulum of bladder|Diverticulum of bladder +C0156273|T020|PT|596.3|ICD9CM|Diverticulum of bladder|Diverticulum of bladder +C0403645|T033|AB|596.4|ICD9CM|Atony of bladder|Atony of bladder +C0403645|T033|PT|596.4|ICD9CM|Atony of bladder|Atony of bladder +C0156274|T046|HT|596.5|ICD9CM|Other functional disorders of bladder|Other functional disorders of bladder +C0878773|T047|AB|596.51|ICD9CM|Hypertonicity of bladder|Hypertonicity of bladder +C0878773|T047|PT|596.51|ICD9CM|Hypertonicity of bladder|Hypertonicity of bladder +C0489967|T047|AB|596.52|ICD9CM|Low bladder compliance|Low bladder compliance +C0489967|T047|PT|596.52|ICD9CM|Low bladder compliance|Low bladder compliance +C0235093|T033|AB|596.53|ICD9CM|Paralysis of bladder|Paralysis of bladder +C0235093|T033|PT|596.53|ICD9CM|Paralysis of bladder|Paralysis of bladder +C0005697|T047|AB|596.54|ICD9CM|Neurogenic bladder NOS|Neurogenic bladder NOS +C0005697|T047|PT|596.54|ICD9CM|Neurogenic bladder NOS|Neurogenic bladder NOS +C0341747|T047|PT|596.55|ICD9CM|Detrusor sphincter dyssynergia|Detrusor sphincter dyssynergia +C0341747|T047|AB|596.55|ICD9CM|Detrusr sphinc dyssnrgia|Detrusr sphinc dyssnrgia +C0156274|T046|AB|596.59|ICD9CM|Oth func dsdr bladder|Oth func dsdr bladder +C0156274|T046|PT|596.59|ICD9CM|Other functional disorder of bladder|Other functional disorder of bladder +C0156275|T047|AB|596.6|ICD9CM|Bladder rupt, nontraum|Bladder rupt, nontraum +C0156275|T047|PT|596.6|ICD9CM|Rupture of bladder, nontraumatic|Rupture of bladder, nontraumatic +C0156276|T046|AB|596.7|ICD9CM|Bladder wall hemorrhage|Bladder wall hemorrhage +C0156276|T046|PT|596.7|ICD9CM|Hemorrhage into bladder wall|Hemorrhage into bladder wall +C0029776|T047|HT|596.8|ICD9CM|Other specified disorders of bladder|Other specified disorders of bladder +C2903163|T046|AB|596.81|ICD9CM|Infection of cystostomy|Infection of cystostomy +C2903163|T046|PT|596.81|ICD9CM|Infection of cystostomy|Infection of cystostomy +C3161117|T046|AB|596.82|ICD9CM|Mech comp of cystostomy|Mech comp of cystostomy +C3161117|T046|PT|596.82|ICD9CM|Mechanical complication of cystostomy|Mechanical complication of cystostomy +C2903164|T046|AB|596.83|ICD9CM|Other comp of cystostomy|Other comp of cystostomy +C2903164|T046|PT|596.83|ICD9CM|Other complication of cystostomy|Other complication of cystostomy +C0029776|T047|AB|596.89|ICD9CM|Disorders of bladder NEC|Disorders of bladder NEC +C0029776|T047|PT|596.89|ICD9CM|Other specified disorders of bladder|Other specified disorders of bladder +C0005686|T047|AB|596.9|ICD9CM|Bladder disorder NOS|Bladder disorder NOS +C0005686|T047|PT|596.9|ICD9CM|Unspecified disorder of bladder|Unspecified disorder of bladder +C0156277|T047|HT|597|ICD9CM|Urethritis, not sexually transmitted, and urethral syndrome|Urethritis, not sexually transmitted, and urethral syndrome +C0156278|T047|AB|597.0|ICD9CM|Urethral abscess|Urethral abscess +C0156278|T047|PT|597.0|ICD9CM|Urethral abscess|Urethral abscess +C0029867|T047|HT|597.8|ICD9CM|Other urethritis|Other urethritis +C0311389|T047|AB|597.80|ICD9CM|Urethritis NOS|Urethritis NOS +C0311389|T047|PT|597.80|ICD9CM|Urethritis, unspecified|Urethritis, unspecified +C0156279|T047|AB|597.81|ICD9CM|Urethral syndrome NOS|Urethral syndrome NOS +C0156279|T047|PT|597.81|ICD9CM|Urethral syndrome NOS|Urethral syndrome NOS +C0029867|T047|PT|597.89|ICD9CM|Other urethritis|Other urethritis +C0029867|T047|AB|597.89|ICD9CM|Urethritis NEC|Urethritis NEC +C4551691|T047|HT|598|ICD9CM|Urethral stricture|Urethral stricture +C0403696|T020|HT|598.0|ICD9CM|Urethral stricture due to infection|Urethral stricture due to infection +C0403696|T020|AB|598.00|ICD9CM|Urethr strict:infect NOS|Urethr strict:infect NOS +C0403696|T020|PT|598.00|ICD9CM|Urethral stricture due to unspecified infection|Urethral stricture due to unspecified infection +C0156282|T020|AB|598.01|ICD9CM|Ureth strict:oth infect|Ureth strict:oth infect +C0156282|T020|PT|598.01|ICD9CM|Urethral stricture due to infective diseases classified elsewhere|Urethral stricture due to infective diseases classified elsewhere +C0403698|T037|AB|598.1|ICD9CM|Traum urethral stricture|Traum urethral stricture +C0403698|T037|PT|598.1|ICD9CM|Traumatic urethral stricture|Traumatic urethral stricture +C0156284|T020|AB|598.2|ICD9CM|Postop urethral strictur|Postop urethral strictur +C0156284|T020|PT|598.2|ICD9CM|Postoperative urethral stricture|Postoperative urethral stricture +C0029752|T047|PT|598.8|ICD9CM|Other specified causes of urethral stricture|Other specified causes of urethral stricture +C0029752|T047|AB|598.8|ICD9CM|Urethral stricture NEC|Urethral stricture NEC +C4551691|T047|AB|598.9|ICD9CM|Urethral stricture NOS|Urethral stricture NOS +C4551691|T047|PT|598.9|ICD9CM|Urethral stricture, unspecified|Urethral stricture, unspecified +C0546812|T047|HT|599|ICD9CM|Other disorders of urethra and urinary tract|Other disorders of urethra and urinary tract +C0042029|T047|AB|599.0|ICD9CM|Urin tract infection NOS|Urin tract infection NOS +C0042029|T047|PT|599.0|ICD9CM|Urinary tract infection, site not specified|Urinary tract infection, site not specified +C0041970|T190|AB|599.1|ICD9CM|Urethral fistula|Urethral fistula +C0041970|T190|PT|599.1|ICD9CM|Urethral fistula|Urethral fistula +C0152443|T047|AB|599.2|ICD9CM|Urethral diverticulum|Urethral diverticulum +C0152443|T047|PT|599.2|ICD9CM|Urethral diverticulum|Urethral diverticulum +C0152247|T020|AB|599.3|ICD9CM|Urethral caruncle|Urethral caruncle +C0152247|T020|PT|599.3|ICD9CM|Urethral caruncle|Urethral caruncle +C0156286|T020|AB|599.4|ICD9CM|Urethral false passage|Urethral false passage +C0156286|T020|PT|599.4|ICD9CM|Urethral false passage|Urethral false passage +C0156287|T047|AB|599.5|ICD9CM|Prolapse urethral mucosa|Prolapse urethral mucosa +C0156287|T047|PT|599.5|ICD9CM|Prolapsed urethral mucosa|Prolapsed urethral mucosa +C0178879|T047|HT|599.6|ICD9CM|Urinary obstruction|Urinary obstruction +C0178879|T047|AB|599.60|ICD9CM|Urinary obstruction NOS|Urinary obstruction NOS +C0178879|T047|PT|599.60|ICD9CM|Urinary obstruction, unspecified|Urinary obstruction, unspecified +C1561646|T047|AB|599.69|ICD9CM|Urinary obstruction NEC|Urinary obstruction NEC +C1561646|T047|PT|599.69|ICD9CM|Urinary obstruction, not elsewhere classified|Urinary obstruction, not elsewhere classified +C0018965|T047|HT|599.7|ICD9CM|Hematuria|Hematuria +C0018965|T047|AB|599.70|ICD9CM|Hematuria NOS|Hematuria NOS +C0018965|T047|PT|599.70|ICD9CM|Hematuria, unspecified|Hematuria, unspecified +C0473237|T033|PT|599.71|ICD9CM|Gross hematuria|Gross hematuria +C0473237|T033|AB|599.71|ICD9CM|Gross hematuria|Gross hematuria +C0239937|T033|PT|599.72|ICD9CM|Microscopic hematuria|Microscopic hematuria +C0239937|T033|AB|599.72|ICD9CM|Microscopic hematuria|Microscopic hematuria +C0156288|T047|HT|599.8|ICD9CM|Other specified disorders of urethra and urinary tract|Other specified disorders of urethra and urinary tract +C0375380|T046|AB|599.81|ICD9CM|Urethral hypermobility|Urethral hypermobility +C0375380|T046|PT|599.81|ICD9CM|Urethral hypermobility|Urethral hypermobility +C0375381|T047|AB|599.82|ICD9CM|Intrinsc sphnctr dficncy|Intrinsc sphnctr dficncy +C0375381|T047|PT|599.82|ICD9CM|Intrinsic (urethral) sphincter deficiency [ISD]|Intrinsic (urethral) sphincter deficiency [ISD] +C0344436|T046|AB|599.83|ICD9CM|Urethral instability|Urethral instability +C0344436|T046|PT|599.83|ICD9CM|Urethral instability|Urethral instability +C0348769|T047|AB|599.84|ICD9CM|Oth spcf dsdr urethra|Oth spcf dsdr urethra +C0348769|T047|PT|599.84|ICD9CM|Other specified disorders of urethra|Other specified disorders of urethra +C0477758|T047|AB|599.89|ICD9CM|Oth spcf dsdr urnry trct|Oth spcf dsdr urnry trct +C0477758|T047|PT|599.89|ICD9CM|Other specified disorders of urinary tract|Other specified disorders of urinary tract +C0042075|T047|PT|599.9|ICD9CM|Unspecified disorder of urethra and urinary tract|Unspecified disorder of urethra and urinary tract +C0042075|T047|AB|599.9|ICD9CM|Urinary tract dis NOS|Urinary tract dis NOS +C2937421|T047|HT|600|ICD9CM|Hyperplasia of prostate|Hyperplasia of prostate +C0017412|T047|HT|600-608.99|ICD9CM|DISEASES OF MALE GENITAL ORGANS|DISEASES OF MALE GENITAL ORGANS +C0005001|T046|HT|600.0|ICD9CM|Hypertrophy (benign) of prostate|Hypertrophy (benign) of prostate +C1719538|T047|AB|600.00|ICD9CM|BPH w/o urinary obs/LUTS|BPH w/o urinary obs/LUTS +C1260419|T047|AB|600.01|ICD9CM|BPH w urinary obs/LUTS|BPH w urinary obs/LUTS +C0748012|T047|HT|600.1|ICD9CM|Nodular prostate|Nodular prostate +C1260421|T047|AB|600.10|ICD9CM|Nod prostate w/o ur obst|Nod prostate w/o ur obst +C1260421|T047|PT|600.10|ICD9CM|Nodular prostate without urinary obstruction|Nodular prostate without urinary obstruction +C1260422|T047|AB|600.11|ICD9CM|Nod prostate w ur obst|Nod prostate w ur obst +C1260422|T047|PT|600.11|ICD9CM|Nodular prostate with urinary obstruction|Nodular prostate with urinary obstruction +C0878697|T047|HT|600.2|ICD9CM|Benign localized hyperplasia of prostate|Benign localized hyperplasia of prostate +C1719539|T047|AB|600.20|ICD9CM|BPH loc w/o ur obs/LUTS|BPH loc w/o ur obs/LUTS +C1260424|T047|AB|600.21|ICD9CM|BPH loc w urin obs/LUTS|BPH loc w urin obs/LUTS +C1443972|T047|AB|600.3|ICD9CM|Cyst of prostate|Cyst of prostate +C1443972|T047|PT|600.3|ICD9CM|Cyst of prostate|Cyst of prostate +C2937421|T047|HT|600.9|ICD9CM|Hyperplasia of prostate, unspecified|Hyperplasia of prostate, unspecified +C1719540|T047|AB|600.90|ICD9CM|BPH NOS w/o ur obs/LUTS|BPH NOS w/o ur obs/LUTS +C1260426|T047|AB|600.91|ICD9CM|BPH NOS w ur obs/LUTS|BPH NOS w ur obs/LUTS +C0033581|T047|HT|601|ICD9CM|Inflammatory diseases of prostate|Inflammatory diseases of prostate +C0149524|T047|AB|601.0|ICD9CM|Acute prostatitis|Acute prostatitis +C0149524|T047|PT|601.0|ICD9CM|Acute prostatitis|Acute prostatitis +C0085696|T047|AB|601.1|ICD9CM|Chronic prostatitis|Chronic prostatitis +C0085696|T047|PT|601.1|ICD9CM|Chronic prostatitis|Chronic prostatitis +C0156290|T047|AB|601.2|ICD9CM|Abscess of prostate|Abscess of prostate +C0156290|T047|PT|601.2|ICD9CM|Abscess of prostate|Abscess of prostate +C0156291|T047|AB|601.3|ICD9CM|Prostatocystitis|Prostatocystitis +C0156291|T047|PT|601.3|ICD9CM|Prostatocystitis|Prostatocystitis +C1621349|T047|PT|601.4|ICD9CM|Prostatitis in diseases classified elsewhere|Prostatitis in diseases classified elsewhere +C1621349|T047|AB|601.4|ICD9CM|Prostatitis in oth dis|Prostatitis in oth dis +C0268882|T047|PT|601.8|ICD9CM|Other specified inflammatory diseases of prostate|Other specified inflammatory diseases of prostate +C0268882|T047|AB|601.8|ICD9CM|Prostatic inflam dis NEC|Prostatic inflam dis NEC +C0033581|T047|AB|601.9|ICD9CM|Prostatitis NOS|Prostatitis NOS +C0033581|T047|PT|601.9|ICD9CM|Prostatitis, unspecified|Prostatitis, unspecified +C0156294|T047|HT|602|ICD9CM|Other disorders of prostate|Other disorders of prostate +C0149525|T047|AB|602.0|ICD9CM|Calculus of prostate|Calculus of prostate +C0149525|T047|PT|602.0|ICD9CM|Calculus of prostate|Calculus of prostate +C0156295|T046|PT|602.1|ICD9CM|Congestion or hemorrhage of prostate|Congestion or hemorrhage of prostate +C0156295|T046|AB|602.1|ICD9CM|Prostatic congest/hemorr|Prostatic congest/hemorr +C0156296|T047|AB|602.2|ICD9CM|Atrophy of prostate|Atrophy of prostate +C0156296|T047|PT|602.2|ICD9CM|Atrophy of prostate|Atrophy of prostate +C0949136|T047|AB|602.3|ICD9CM|Dysplasia of prostate|Dysplasia of prostate +C0949136|T047|PT|602.3|ICD9CM|Dysplasia of prostate|Dysplasia of prostate +C0156297|T047|PT|602.8|ICD9CM|Other specified disorders of prostate|Other specified disorders of prostate +C0156297|T047|AB|602.8|ICD9CM|Prostatic disorders NEC|Prostatic disorders NEC +C0033575|T047|AB|602.9|ICD9CM|Prostatic disorder NOS|Prostatic disorder NOS +C0033575|T047|PT|602.9|ICD9CM|Unspecified disorder of prostate|Unspecified disorder of prostate +C1720771|T019|HT|603|ICD9CM|Hydrocele|Hydrocele +C0156299|T046|AB|603.0|ICD9CM|Encysted hydrocele|Encysted hydrocele +C0156299|T046|PT|603.0|ICD9CM|Encysted hydrocele|Encysted hydrocele +C0156300|T047|AB|603.1|ICD9CM|Infected hydrocele|Infected hydrocele +C0156300|T047|PT|603.1|ICD9CM|Infected hydrocele|Infected hydrocele +C0029837|T047|AB|603.8|ICD9CM|Hydrocele NEC|Hydrocele NEC +C0029837|T047|PT|603.8|ICD9CM|Other specified types of hydrocele|Other specified types of hydrocele +C1720771|T019|AB|603.9|ICD9CM|Hydrocele NOS|Hydrocele NOS +C1720771|T019|PT|603.9|ICD9CM|Hydrocele, unspecified|Hydrocele, unspecified +C0149881|T047|HT|604|ICD9CM|Orchitis and epididymitis|Orchitis and epididymitis +C0156301|T047|AB|604.0|ICD9CM|Orchitis with abscess|Orchitis with abscess +C0156301|T047|PT|604.0|ICD9CM|Orchitis, epididymitis, and epididymo-orchitis, with abscess|Orchitis, epididymitis, and epididymo-orchitis, with abscess +C0156302|T047|HT|604.9|ICD9CM|Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess|Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess +C0149881|T047|PT|604.90|ICD9CM|Orchitis and epididymitis, unspecified|Orchitis and epididymitis, unspecified +C0149881|T047|AB|604.90|ICD9CM|Orchitis/epididymit NOS|Orchitis/epididymit NOS +C0156303|T047|PT|604.91|ICD9CM|Orchitis and epididymitis in diseases classified elsewhere|Orchitis and epididymitis in diseases classified elsewhere +C0156303|T047|AB|604.91|ICD9CM|Orchitis in oth disease|Orchitis in oth disease +C0156302|T047|AB|604.99|ICD9CM|Orchitis/epididymit NEC|Orchitis/epididymit NEC +C0156302|T047|PT|604.99|ICD9CM|Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess|Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess +C0034919|T047|AB|605|ICD9CM|Redun prepuce & phimosis|Redun prepuce & phimosis +C0034919|T047|PT|605|ICD9CM|Redundant prepuce and phimosis|Redundant prepuce and phimosis +C0021364|T047|HT|606|ICD9CM|Infertility, male|Infertility, male +C0004509|T047|AB|606.0|ICD9CM|Azoospermia|Azoospermia +C0004509|T047|PT|606.0|ICD9CM|Azoospermia|Azoospermia +C0028960|T047|AB|606.1|ICD9CM|Oligospermia|Oligospermia +C0028960|T047|PT|606.1|ICD9CM|Oligospermia|Oligospermia +C0021360|T047|PT|606.8|ICD9CM|Infertility due to extratesticular causes|Infertility due to extratesticular causes +C0021360|T047|AB|606.8|ICD9CM|Male infertility NEC|Male infertility NEC +C0021364|T047|AB|606.9|ICD9CM|Male infertility NOS|Male infertility NOS +C0021364|T047|PT|606.9|ICD9CM|Male infertility, unspecified|Male infertility, unspecified +C0030846|T047|HT|607|ICD9CM|Disorders of penis|Disorders of penis +C0022782|T047|AB|607.0|ICD9CM|Leukoplakia of penis|Leukoplakia of penis +C0022782|T047|PT|607.0|ICD9CM|Leukoplakia of penis|Leukoplakia of penis +C0004691|T047|AB|607.1|ICD9CM|Balanoposthitis|Balanoposthitis +C0004691|T047|PT|607.1|ICD9CM|Balanoposthitis|Balanoposthitis +C0156306|T047|AB|607.2|ICD9CM|Inflam dis, penis NEC|Inflam dis, penis NEC +C0156306|T047|PT|607.2|ICD9CM|Other inflammatory disorders of penis|Other inflammatory disorders of penis +C0033117|T047|AB|607.3|ICD9CM|Priapism|Priapism +C0033117|T047|PT|607.3|ICD9CM|Priapism|Priapism +C0029785|T047|HT|607.8|ICD9CM|Other specified disorders of penis|Other specified disorders of penis +C0152460|T047|AB|607.81|ICD9CM|Balanitis xerotica oblit|Balanitis xerotica oblit +C0152460|T047|PT|607.81|ICD9CM|Balanitis xerotica obliterans|Balanitis xerotica obliterans +C0156307|T047|AB|607.82|ICD9CM|Vascular disorder, penis|Vascular disorder, penis +C0156307|T047|PT|607.82|ICD9CM|Vascular disorders of penis|Vascular disorders of penis +C0156308|T046|AB|607.83|ICD9CM|Edema of penis|Edema of penis +C0156308|T046|PT|607.83|ICD9CM|Edema of penis|Edema of penis +C0156309|T046|PT|607.84|ICD9CM|Impotence of organic origin|Impotence of organic origin +C0156309|T046|AB|607.84|ICD9CM|Impotence, organic orign|Impotence, organic orign +C0030848|T047|AB|607.85|ICD9CM|Peyronie's disease|Peyronie's disease +C0030848|T047|PT|607.85|ICD9CM|Peyronie's disease|Peyronie's disease +C0029785|T047|AB|607.89|ICD9CM|Disorder of penis NEC|Disorder of penis NEC +C0029785|T047|PT|607.89|ICD9CM|Other specified disorders of penis|Other specified disorders of penis +C0030846|T047|AB|607.9|ICD9CM|Disorder of penis NOS|Disorder of penis NOS +C0030846|T047|PT|607.9|ICD9CM|Unspecified disorder of penis|Unspecified disorder of penis +C0156311|T047|HT|608|ICD9CM|Other disorders of male genital organs|Other disorders of male genital organs +C0042588|T047|AB|608.0|ICD9CM|Seminal vesiculitis|Seminal vesiculitis +C0042588|T047|PT|608.0|ICD9CM|Seminal vesiculitis|Seminal vesiculitis +C0037859|T047|AB|608.1|ICD9CM|Spermatocele|Spermatocele +C0037859|T047|PT|608.1|ICD9CM|Spermatocele|Spermatocele +C0037856|T047|HT|608.2|ICD9CM|Torsion of testis|Torsion of testis +C0037856|T047|AB|608.20|ICD9CM|Torsion of testis NOS|Torsion of testis NOS +C0037856|T047|PT|608.20|ICD9CM|Torsion of testis, unspecified|Torsion of testis, unspecified +C1719541|T046|AB|608.21|ICD9CM|Extravag tors sperm cord|Extravag tors sperm cord +C1719541|T046|PT|608.21|ICD9CM|Extravaginal torsion of spermatic cord|Extravaginal torsion of spermatic cord +C1719542|T047|AB|608.22|ICD9CM|Intravag tors sperm cord|Intravag tors sperm cord +C1719542|T047|PT|608.22|ICD9CM|Intravaginal torsion of spermatic cord|Intravaginal torsion of spermatic cord +C0392531|T190|AB|608.23|ICD9CM|Torsion appendix testis|Torsion appendix testis +C0392531|T190|PT|608.23|ICD9CM|Torsion of appendix testis|Torsion of appendix testis +C1997777|T047|AB|608.24|ICD9CM|Torsion appy epididymis|Torsion appy epididymis +C1997777|T047|PT|608.24|ICD9CM|Torsion of appendix epididymis|Torsion of appendix epididymis +C0156312|T047|AB|608.3|ICD9CM|Atrophy of testis|Atrophy of testis +C0156312|T047|PT|608.3|ICD9CM|Atrophy of testis|Atrophy of testis +C0156313|T047|AB|608.4|ICD9CM|Male gen inflam dis NEC|Male gen inflam dis NEC +C0156313|T047|PT|608.4|ICD9CM|Other inflammatory disorders of male genital organs|Other inflammatory disorders of male genital organs +C0029782|T047|HT|608.8|ICD9CM|Other specified disorders of male genital organs|Other specified disorders of male genital organs +C0156314|T047|PT|608.81|ICD9CM|Disorders of male genital organs in diseases classified elsewhere|Disorders of male genital organs in diseases classified elsewhere +C0156314|T047|AB|608.81|ICD9CM|Male gen dis in oth dis|Male gen dis in oth dis +C0149707|T033|AB|608.82|ICD9CM|Hematospermia|Hematospermia +C0149707|T033|PT|608.82|ICD9CM|Hematospermia|Hematospermia +C0042374|T047|AB|608.83|ICD9CM|Male gen vascul dis NEC|Male gen vascul dis NEC +C0042374|T047|PT|608.83|ICD9CM|Vascular disorders of male genital organs|Vascular disorders of male genital organs +C0156315|T047|PT|608.84|ICD9CM|Chylocele of tunica vaginalis|Chylocele of tunica vaginalis +C0156315|T047|AB|608.84|ICD9CM|Chylocele, tunic vaginal|Chylocele, tunic vaginal +C0156316|T190|PT|608.85|ICD9CM|Stricture of male genital organs|Stricture of male genital organs +C0156316|T190|AB|608.85|ICD9CM|Stricture, male gen orgn|Stricture, male gen orgn +C0156317|T184|PT|608.86|ICD9CM|Edema of male genital organs|Edema of male genital organs +C0156317|T184|AB|608.86|ICD9CM|Edema, male genital orgn|Edema, male genital orgn +C0403673|T046|AB|608.87|ICD9CM|Retrograde ejaculation|Retrograde ejaculation +C0403673|T046|PT|608.87|ICD9CM|Retrograde ejaculation|Retrograde ejaculation +C0029782|T047|AB|608.89|ICD9CM|Male genital dis NEC|Male genital dis NEC +C0029782|T047|PT|608.89|ICD9CM|Other specified disorders of male genital organs|Other specified disorders of male genital organs +C0017412|T047|AB|608.9|ICD9CM|Male genital dis NOS|Male genital dis NOS +C0017412|T047|PT|608.9|ICD9CM|Unspecified disorder of male genital organs|Unspecified disorder of male genital organs +C1305934|T046|HT|610|ICD9CM|Benign mammary dysplasias|Benign mammary dysplasias +C0006145|T047|HT|610-612.99|ICD9CM|DISORDERS OF BREAST|DISORDERS OF BREAST +C0037619|T190|AB|610.0|ICD9CM|Solitary cyst of breast|Solitary cyst of breast +C0037619|T190|PT|610.0|ICD9CM|Solitary cyst of breast|Solitary cyst of breast +C0016034|T047|AB|610.1|ICD9CM|Diffus cystic mastopathy|Diffus cystic mastopathy +C0016034|T047|PT|610.1|ICD9CM|Diffuse cystic mastopathy|Diffuse cystic mastopathy +C1305875|T047|AB|610.2|ICD9CM|Fibroadenosis of breast|Fibroadenosis of breast +C1305875|T047|PT|610.2|ICD9CM|Fibroadenosis of breast|Fibroadenosis of breast +C0156318|T047|AB|610.3|ICD9CM|Fibrosclerosis of breast|Fibrosclerosis of breast +C0156318|T047|PT|610.3|ICD9CM|Fibrosclerosis of breast|Fibrosclerosis of breast +C0152442|T047|AB|610.4|ICD9CM|Mammary duct ectasia|Mammary duct ectasia +C0152442|T047|PT|610.4|ICD9CM|Mammary duct ectasia|Mammary duct ectasia +C0156319|T047|AB|610.8|ICD9CM|Benign mamm dysplas NEC|Benign mamm dysplas NEC +C0156319|T047|PT|610.8|ICD9CM|Other specified benign mammary dysplasias|Other specified benign mammary dysplasias +C1305934|T046|AB|610.9|ICD9CM|Benign mamm dysplas NOS|Benign mamm dysplas NOS +C1305934|T046|PT|610.9|ICD9CM|Benign mammary dysplasia, unspecified|Benign mammary dysplasia, unspecified +C0156320|T047|HT|611|ICD9CM|Other disorders of breast|Other disorders of breast +C3495439|T047|AB|611.0|ICD9CM|Inflam disease of breast|Inflam disease of breast +C3495439|T047|PT|611.0|ICD9CM|Inflammatory disease of breast|Inflammatory disease of breast +C0020565|T046|AB|611.1|ICD9CM|Hypertrophy of breast|Hypertrophy of breast +C0020565|T046|PT|611.1|ICD9CM|Hypertrophy of breast|Hypertrophy of breast +C0152453|T033|AB|611.2|ICD9CM|Fissure of nipple|Fissure of nipple +C0152453|T033|PT|611.2|ICD9CM|Fissure of nipple|Fissure of nipple +C0156321|T047|AB|611.3|ICD9CM|Fat necrosis of breast|Fat necrosis of breast +C0156321|T047|PT|611.3|ICD9CM|Fat necrosis of breast|Fat necrosis of breast +C0151511|T020|AB|611.4|ICD9CM|Atrophy of breast|Atrophy of breast +C0151511|T020|PT|611.4|ICD9CM|Atrophy of breast|Atrophy of breast +C0152243|T020|AB|611.5|ICD9CM|Galactocele|Galactocele +C0152243|T020|PT|611.5|ICD9CM|Galactocele|Galactocele +C0235660|T047|PT|611.6|ICD9CM|Galactorrhea not associated with childbirth|Galactorrhea not associated with childbirth +C0235660|T047|AB|611.6|ICD9CM|Galactorrhea-nonobstet|Galactorrhea-nonobstet +C0156323|T184|HT|611.7|ICD9CM|Signs and symptoms in breast|Signs and symptoms in breast +C0024902|T184|AB|611.71|ICD9CM|Mastodynia|Mastodynia +C0024902|T184|PT|611.71|ICD9CM|Mastodynia|Mastodynia +C0024103|T033|AB|611.72|ICD9CM|Lump or mass in breast|Lump or mass in breast +C0024103|T033|PT|611.72|ICD9CM|Lump or mass in breast|Lump or mass in breast +C0156324|T184|PT|611.79|ICD9CM|Other signs and symptoms in breast|Other signs and symptoms in breast +C0156324|T184|AB|611.79|ICD9CM|Symptoms in breast NEC|Symptoms in breast NEC +C0156325|T047|HT|611.8|ICD9CM|Other specified disorders of breast|Other specified disorders of breast +C2233848|T033|PT|611.81|ICD9CM|Ptosis of breast|Ptosis of breast +C2233848|T033|AB|611.81|ICD9CM|Ptosis of breast|Ptosis of breast +C0266013|T019|PT|611.82|ICD9CM|Hypoplasia of breast|Hypoplasia of breast +C0266013|T019|AB|611.82|ICD9CM|Hypoplasia of breast|Hypoplasia of breast +C2349571|T047|AB|611.83|ICD9CM|Capslr contrctr brst imp|Capslr contrctr brst imp +C2349571|T047|PT|611.83|ICD9CM|Capsular contracture of breast implant|Capsular contracture of breast implant +C0156325|T047|AB|611.89|ICD9CM|Disorders breast NEC|Disorders breast NEC +C0156325|T047|PT|611.89|ICD9CM|Other specified disorders of breast|Other specified disorders of breast +C0006145|T047|AB|611.9|ICD9CM|Breast disorder NOS|Breast disorder NOS +C0006145|T047|PT|611.9|ICD9CM|Unspecified breast disorder|Unspecified breast disorder +C2349581|T047|HT|612|ICD9CM|Deformity and disproportion of reconstructed breast|Deformity and disproportion of reconstructed breast +C2349574|T047|PT|612.0|ICD9CM|Deformity of reconstructed breast|Deformity of reconstructed breast +C2349574|T047|AB|612.0|ICD9CM|Deformity reconst breast|Deformity reconst breast +C2349578|T047|PT|612.1|ICD9CM|Disproportion of reconstructed breast|Disproportion of reconstructed breast +C2349578|T047|AB|612.1|ICD9CM|Disproportn reconst brst|Disproportn reconst brst +C0156326|T047|HT|614|ICD9CM|Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum|Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum +C0242172|T047|HT|614-616.99|ICD9CM|INFLAMMATORY DISEASE OF FEMALE PELVIC ORGANS|INFLAMMATORY DISEASE OF FEMALE PELVIC ORGANS +C0156327|T047|AB|614.0|ICD9CM|Ac salpingo-oophoritis|Ac salpingo-oophoritis +C0156327|T047|PT|614.0|ICD9CM|Acute salpingitis and oophoritis|Acute salpingitis and oophoritis +C0156328|T047|AB|614.1|ICD9CM|Chr salpingo-oophoritis|Chr salpingo-oophoritis +C0156328|T047|PT|614.1|ICD9CM|Chronic salpingitis and oophoritis|Chronic salpingitis and oophoritis +C0036133|T047|PT|614.2|ICD9CM|Salpingitis and oophoritis not specified as acute, subacute, or chronic|Salpingitis and oophoritis not specified as acute, subacute, or chronic +C0036133|T047|AB|614.2|ICD9CM|Salpingo-oophoritis NOS|Salpingo-oophoritis NOS +C0156329|T047|AB|614.3|ICD9CM|Acute parametritis|Acute parametritis +C0156329|T047|PT|614.3|ICD9CM|Acute parametritis and pelvic cellulitis|Acute parametritis and pelvic cellulitis +C0404458|T047|PT|614.4|ICD9CM|Chronic or unspecified parametritis and pelvic cellulitis|Chronic or unspecified parametritis and pelvic cellulitis +C0404458|T047|AB|614.4|ICD9CM|Chronic parametritis|Chronic parametritis +C0269032|T047|AB|614.5|ICD9CM|Ac pelv peritonitis-fem|Ac pelv peritonitis-fem +C0269032|T047|PT|614.5|ICD9CM|Acute or unspecified pelvic peritonitis, female|Acute or unspecified pelvic peritonitis, female +C0375384|T020|AB|614.6|ICD9CM|Fem pelvic periton adhes|Fem pelvic periton adhes +C0375384|T020|PT|614.6|ICD9CM|Pelvic peritoneal adhesions, female (postoperative) (postinfection)|Pelvic peritoneal adhesions, female (postoperative) (postinfection) +C0156332|T047|AB|614.7|ICD9CM|Chr pelv periton NEC-fem|Chr pelv periton NEC-fem +C0156332|T047|PT|614.7|ICD9CM|Other chronic pelvic peritonitis, female|Other chronic pelvic peritonitis, female +C0029807|T047|AB|614.8|ICD9CM|Fem pelv inflam dis NEC|Fem pelv inflam dis NEC +C0029807|T047|PT|614.8|ICD9CM|Other specified inflammatory disease of female pelvic organs and tissues|Other specified inflammatory disease of female pelvic organs and tissues +C0242172|T047|AB|614.9|ICD9CM|Fem pelv inflam dis NOS|Fem pelv inflam dis NOS +C0242172|T047|PT|614.9|ICD9CM|Unspecified inflammatory disease of female pelvic organs and tissues|Unspecified inflammatory disease of female pelvic organs and tissues +C0156333|T047|HT|615|ICD9CM|Inflammatory diseases of uterus, except cervix|Inflammatory diseases of uterus, except cervix +C0156334|T047|AB|615.0|ICD9CM|Ac uterine inflammation|Ac uterine inflammation +C0156334|T047|PT|615.0|ICD9CM|Acute inflammatory diseases of uterus, except cervix|Acute inflammatory diseases of uterus, except cervix +C0156335|T047|AB|615.1|ICD9CM|Chr uterine inflammation|Chr uterine inflammation +C0156335|T047|PT|615.1|ICD9CM|Chronic inflammatory diseases of uterus, except cervix|Chronic inflammatory diseases of uterus, except cervix +C0269047|T047|PT|615.9|ICD9CM|Unspecified inflammatory disease of uterus|Unspecified inflammatory disease of uterus +C0269047|T047|AB|615.9|ICD9CM|Uterine inflam dis NOS|Uterine inflam dis NOS +C0156342|T047|HT|616|ICD9CM|Inflammatory disease of cervix, vagina, and vulva|Inflammatory disease of cervix, vagina, and vulva +C0007861|T047|AB|616.0|ICD9CM|Cervicitis|Cervicitis +C0007861|T047|PT|616.0|ICD9CM|Cervicitis and endocervicitis|Cervicitis and endocervicitis +C0042268|T047|HT|616.1|ICD9CM|Vaginitis and vulvovaginitis|Vaginitis and vulvovaginitis +C0042268|T047|PT|616.10|ICD9CM|Vaginitis and vulvovaginitis, unspecified|Vaginitis and vulvovaginitis, unspecified +C0042268|T047|AB|616.10|ICD9CM|Vaginitis NOS|Vaginitis NOS +C0156337|T047|PT|616.11|ICD9CM|Vaginitis and vulvovaginitis in diseases classified elsewhere|Vaginitis and vulvovaginitis in diseases classified elsewhere +C0156337|T047|AB|616.11|ICD9CM|Vaginitis in oth disease|Vaginitis in oth disease +C0004767|T047|AB|616.2|ICD9CM|Bartholin's gland cyst|Bartholin's gland cyst +C0004767|T047|PT|616.2|ICD9CM|Cyst of Bartholin's gland|Cyst of Bartholin's gland +C0004766|T046|PT|616.3|ICD9CM|Abscess of Bartholin's gland|Abscess of Bartholin's gland +C0004766|T046|AB|616.3|ICD9CM|Bartholin's glnd abscess|Bartholin's glnd abscess +C0156338|T047|AB|616.4|ICD9CM|Abscess of vulva NEC|Abscess of vulva NEC +C0156338|T047|PT|616.4|ICD9CM|Other abscess of vulva|Other abscess of vulva +C0156339|T047|HT|616.5|ICD9CM|Ulceration of vulva|Ulceration of vulva +C0156339|T047|AB|616.50|ICD9CM|Ulceration of vulva NOS|Ulceration of vulva NOS +C0156339|T047|PT|616.50|ICD9CM|Ulceration of vulva, unspecified|Ulceration of vulva, unspecified +C0156340|T047|PT|616.51|ICD9CM|Ulceration of vulva in diseases classified elsewhere|Ulceration of vulva in diseases classified elsewhere +C0156340|T047|AB|616.51|ICD9CM|Vulvar ulcer in oth dis|Vulvar ulcer in oth dis +C0156341|T047|HT|616.8|ICD9CM|Other specified inflammatory diseases of cervix, vagina, and vulva|Other specified inflammatory diseases of cervix, vagina, and vulva +C1719543|T047|PT|616.81|ICD9CM|Mucositis (ulcerative) of cervix, vagina, and vulva|Mucositis (ulcerative) of cervix, vagina, and vulva +C1719543|T047|AB|616.81|ICD9CM|Mucositis cerv,vag,vulva|Mucositis cerv,vag,vulva +C1719544|T047|AB|616.89|ICD9CM|Inflm cerv,vag,vulva NEC|Inflm cerv,vag,vulva NEC +C1719544|T047|PT|616.89|ICD9CM|Other inflammatory disease of cervix, vagina and vulva|Other inflammatory disease of cervix, vagina and vulva +C0156342|T047|AB|616.9|ICD9CM|Female gen inflam NOS|Female gen inflam NOS +C0156342|T047|PT|616.9|ICD9CM|Unspecified inflammatory disease of cervix, vagina, and vulva|Unspecified inflammatory disease of cervix, vagina, and vulva +C0014175|T047|HT|617|ICD9CM|Endometriosis|Endometriosis +C0178291|T047|HT|617-629.99|ICD9CM|OTHER DISORDERS OF FEMALE GENITAL TRACT|OTHER DISORDERS OF FEMALE GENITAL TRACT +C0341858|T047|PT|617.0|ICD9CM|Endometriosis of uterus|Endometriosis of uterus +C0341858|T047|AB|617.0|ICD9CM|Uterine endometriosis|Uterine endometriosis +C0156344|T047|PT|617.1|ICD9CM|Endometriosis of ovary|Endometriosis of ovary +C0156344|T047|AB|617.1|ICD9CM|Ovarian endometriosis|Ovarian endometriosis +C0014177|T047|PT|617.2|ICD9CM|Endometriosis of fallopian tube|Endometriosis of fallopian tube +C0014177|T047|AB|617.2|ICD9CM|Tubal endometriosis|Tubal endometriosis +C0156345|T047|PT|617.3|ICD9CM|Endometriosis of pelvic peritoneum|Endometriosis of pelvic peritoneum +C0156345|T047|AB|617.3|ICD9CM|Pelv perit endometriosis|Pelv perit endometriosis +C0156346|T047|PT|617.4|ICD9CM|Endometriosis of rectovaginal septum and vagina|Endometriosis of rectovaginal septum and vagina +C0156346|T047|AB|617.4|ICD9CM|Vaginal endometriosis|Vaginal endometriosis +C0156347|T047|PT|617.5|ICD9CM|Endometriosis of intestine|Endometriosis of intestine +C0156347|T047|AB|617.5|ICD9CM|Intestinal endometriosis|Intestinal endometriosis +C0156348|T047|AB|617.6|ICD9CM|Endometriosis in scar|Endometriosis in scar +C0156348|T047|PT|617.6|ICD9CM|Endometriosis in scar of skin|Endometriosis in scar of skin +C0014178|T047|AB|617.8|ICD9CM|Endometriosis NEC|Endometriosis NEC +C0014178|T047|PT|617.8|ICD9CM|Endometriosis of other specified sites|Endometriosis of other specified sites +C0014175|T047|AB|617.9|ICD9CM|Endometriosis NOS|Endometriosis NOS +C0014175|T047|PT|617.9|ICD9CM|Endometriosis, site unspecified|Endometriosis, site unspecified +C0156349|T047|HT|618|ICD9CM|Genital prolapse|Genital prolapse +C0156350|T020|HT|618.0|ICD9CM|Prolapse of vaginal walls without mention of uterine prolapse|Prolapse of vaginal walls without mention of uterine prolapse +C1456247|T047|PT|618.00|ICD9CM|Unspecified prolapse of vaginal walls|Unspecified prolapse of vaginal walls +C1456247|T047|AB|618.00|ICD9CM|Vaginal wall prolpse NOS|Vaginal wall prolpse NOS +C1456248|T047|AB|618.01|ICD9CM|Cystocele, midline|Cystocele, midline +C1456248|T047|PT|618.01|ICD9CM|Cystocele, midline|Cystocele, midline +C2711750|T047|AB|618.02|ICD9CM|Cystocele, lateral|Cystocele, lateral +C2711750|T047|PT|618.02|ICD9CM|Cystocele, lateral|Cystocele, lateral +C0238502|T047|AB|618.03|ICD9CM|Urethrocele|Urethrocele +C0238502|T047|PT|618.03|ICD9CM|Urethrocele|Urethrocele +C0149771|T020|AB|618.04|ICD9CM|Rectocele|Rectocele +C0149771|T020|PT|618.04|ICD9CM|Rectocele|Rectocele +C1456251|T047|AB|618.05|ICD9CM|Perineocele|Perineocele +C1456251|T047|PT|618.05|ICD9CM|Perineocele|Perineocele +C1456252|T047|AB|618.09|ICD9CM|Cystourethrocele|Cystourethrocele +C1456252|T047|PT|618.09|ICD9CM|Other prolapse of vaginal walls without mention of uterine prolapse|Other prolapse of vaginal walls without mention of uterine prolapse +C0553716|T020|AB|618.1|ICD9CM|Uterine prolapse|Uterine prolapse +C0553716|T020|PT|618.1|ICD9CM|Uterine prolapse without mention of vaginal wall prolapse|Uterine prolapse without mention of vaginal wall prolapse +C0156351|T020|AB|618.2|ICD9CM|Uterovag prolaps-incompl|Uterovag prolaps-incompl +C0156351|T020|PT|618.2|ICD9CM|Uterovaginal prolapse, incomplete|Uterovaginal prolapse, incomplete +C0392530|T020|AB|618.3|ICD9CM|Uterovag prolaps-complet|Uterovag prolaps-complet +C0392530|T020|PT|618.3|ICD9CM|Uterovaginal prolapse, complete|Uterovaginal prolapse, complete +C0156353|T020|PT|618.4|ICD9CM|Uterovaginal prolapse, unspecified|Uterovaginal prolapse, unspecified +C0156353|T020|AB|618.4|ICD9CM|Utervaginal prolapse NOS|Utervaginal prolapse NOS +C0156354|T020|AB|618.5|ICD9CM|Postop vaginal prolapse|Postop vaginal prolapse +C0156354|T020|PT|618.5|ICD9CM|Prolapse of vaginal vault after hysterectomy|Prolapse of vaginal vault after hysterectomy +C0205792|T190|AB|618.6|ICD9CM|Vaginal enterocele|Vaginal enterocele +C0205792|T190|PT|618.6|ICD9CM|Vaginal enterocele, congenital or acquired|Vaginal enterocele, congenital or acquired +C0156355|T037|AB|618.7|ICD9CM|Old lacer pelvic muscle|Old lacer pelvic muscle +C0156355|T037|PT|618.7|ICD9CM|Old laceration of muscles of pelvic floor|Old laceration of muscles of pelvic floor +C0029801|T047|HT|618.8|ICD9CM|Other specified genital prolapse|Other specified genital prolapse +C1456253|T047|PT|618.81|ICD9CM|Incompetence or weakening of pubocervical tissue|Incompetence or weakening of pubocervical tissue +C1456253|T047|AB|618.81|ICD9CM|Incomptnce pubocerv tiss|Incomptnce pubocerv tiss +C1456254|T047|PT|618.82|ICD9CM|Incompetence or weakening of rectovaginal tissue|Incompetence or weakening of rectovaginal tissue +C1456254|T047|AB|618.82|ICD9CM|Incomptnce rectovag tiss|Incomptnce rectovag tiss +C1456255|T047|AB|618.83|ICD9CM|Pelvic muscle wasting|Pelvic muscle wasting +C1456255|T047|PT|618.83|ICD9CM|Pelvic muscle wasting|Pelvic muscle wasting +C1719546|T020|PT|618.84|ICD9CM|Cervical stump prolapse|Cervical stump prolapse +C1719546|T020|AB|618.84|ICD9CM|Cervical stump prolapse|Cervical stump prolapse +C0029801|T047|AB|618.89|ICD9CM|Genital prolapse NEC|Genital prolapse NEC +C0029801|T047|PT|618.89|ICD9CM|Other specified genital prolapse|Other specified genital prolapse +C0156356|T020|AB|618.9|ICD9CM|Genital prolapse NOS|Genital prolapse NOS +C0156356|T020|PT|618.9|ICD9CM|Unspecified genital prolapse|Unspecified genital prolapse +C0156357|T190|HT|619|ICD9CM|Fistula involving female genital tract|Fistula involving female genital tract +C0042033|T047|AB|619.0|ICD9CM|Urin-genital fistul, fem|Urin-genital fistul, fem +C0042033|T047|PT|619.0|ICD9CM|Urinary-genital tract fistula, female|Urinary-genital tract fistula, female +C0012246|T190|AB|619.1|ICD9CM|Digest-genit fistul, fem|Digest-genit fistul, fem +C0012246|T190|PT|619.1|ICD9CM|Digestive-genital tract fistula, female|Digestive-genital tract fistula, female +C0156358|T020|PT|619.2|ICD9CM|Genital tract-skin fistula, female|Genital tract-skin fistula, female +C0156358|T020|AB|619.2|ICD9CM|Genital-skin fistul, fem|Genital-skin fistul, fem +C0029797|T190|AB|619.8|ICD9CM|Fem genital fistula NEC|Fem genital fistula NEC +C0029797|T190|PT|619.8|ICD9CM|Other specified fistulas involving female genital tract|Other specified fistulas involving female genital tract +C0269131|T190|AB|619.9|ICD9CM|Fem genital fistula NOS|Fem genital fistula NOS +C0269131|T190|PT|619.9|ICD9CM|Unspecified fistula involving female genital tract|Unspecified fistula involving female genital tract +C0156367|T047|HT|620|ICD9CM|Noninflammatory disorders of ovary, fallopian tube, and broad ligament|Noninflammatory disorders of ovary, fallopian tube, and broad ligament +C0016429|T047|AB|620.0|ICD9CM|Follicular cyst of ovary|Follicular cyst of ovary +C0016429|T047|PT|620.0|ICD9CM|Follicular cyst of ovary|Follicular cyst of ovary +C0156361|T047|AB|620.1|ICD9CM|Corpus luteum cyst|Corpus luteum cyst +C0156361|T047|PT|620.1|ICD9CM|Corpus luteum cyst or hematoma|Corpus luteum cyst or hematoma +C0029513|T020|PT|620.2|ICD9CM|Other and unspecified ovarian cyst|Other and unspecified ovarian cyst +C0029513|T020|AB|620.2|ICD9CM|Ovarian cyst NEC/NOS|Ovarian cyst NEC/NOS +C0156362|T020|AB|620.3|ICD9CM|Acq atrophy ovary & tube|Acq atrophy ovary & tube +C0156362|T020|PT|620.3|ICD9CM|Acquired atrophy of ovary and fallopian tube|Acquired atrophy of ovary and fallopian tube +C0495094|T020|AB|620.4|ICD9CM|Prolapse of ovary & tube|Prolapse of ovary & tube +C0495094|T020|PT|620.4|ICD9CM|Prolapse or hernia of ovary and fallopian tube|Prolapse or hernia of ovary and fallopian tube +C0156364|T190|AB|620.5|ICD9CM|Torsion of ovary or tube|Torsion of ovary or tube +C0156364|T190|PT|620.5|ICD9CM|Torsion of ovary, ovarian pedicle, or fallopian tube|Torsion of ovary, ovarian pedicle, or fallopian tube +C0152079|T047|AB|620.6|ICD9CM|Broad ligament lacer syn|Broad ligament lacer syn +C0152079|T047|PT|620.6|ICD9CM|Broad ligament laceration syndrome|Broad ligament laceration syndrome +C0156365|T046|AB|620.7|ICD9CM|Broad ligament hematoma|Broad ligament hematoma +C0156365|T046|PT|620.7|ICD9CM|Hematoma of broad ligament|Hematoma of broad ligament +C0156366|T047|AB|620.8|ICD9CM|Noninfl dis ova/adnx NEC|Noninfl dis ova/adnx NEC +C0156366|T047|PT|620.8|ICD9CM|Other noninflammatory disorders of ovary, fallopian tube, and broad ligament|Other noninflammatory disorders of ovary, fallopian tube, and broad ligament +C0156367|T047|AB|620.9|ICD9CM|Noninfl dis ova/adnx NOS|Noninfl dis ova/adnx NOS +C0156367|T047|PT|620.9|ICD9CM|Unspecified noninflammatory disorder of ovary, fallopian tube, and broad ligament|Unspecified noninflammatory disorder of ovary, fallopian tube, and broad ligament +C0868853|T047|HT|621|ICD9CM|Disorders of uterus, not elsewhere classified|Disorders of uterus, not elsewhere classified +C0156369|T191|AB|621.0|ICD9CM|Polyp of corpus uteri|Polyp of corpus uteri +C0156369|T191|PT|621.0|ICD9CM|Polyp of corpus uteri|Polyp of corpus uteri +C0156370|T047|AB|621.1|ICD9CM|Chr uterine subinvolutn|Chr uterine subinvolutn +C0156370|T047|PT|621.1|ICD9CM|Chronic subinvolution of uterus|Chronic subinvolution of uterus +C0156371|T033|AB|621.2|ICD9CM|Hypertrophy of uterus|Hypertrophy of uterus +C0156371|T033|PT|621.2|ICD9CM|Hypertrophy of uterus|Hypertrophy of uterus +C0014173|T047|HT|621.3|ICD9CM|Endometrial hyperplasia|Endometrial hyperplasia +C0014173|T047|AB|621.30|ICD9CM|Endometrial hyperpla NOS|Endometrial hyperpla NOS +C0014173|T047|PT|621.30|ICD9CM|Endometrial hyperplasia, unspecified|Endometrial hyperplasia, unspecified +C1335967|T046|AB|621.31|ICD9CM|Simp endo hyper w/o atyp|Simp endo hyper w/o atyp +C1335967|T046|PT|621.31|ICD9CM|Simple endometrial hyperplasia without atypia|Simple endometrial hyperplasia without atypia +C1333139|T046|AB|621.32|ICD9CM|Comp endo hyper w/o atyp|Comp endo hyper w/o atyp +C1333139|T046|PT|621.32|ICD9CM|Complex endometrial hyperplasia without atypia|Complex endometrial hyperplasia without atypia +C0349579|T047|AB|621.33|ICD9CM|Endomet hyperpla w atyp|Endomet hyperpla w atyp +C0349579|T047|PT|621.33|ICD9CM|Endometrial hyperplasia with atypia|Endometrial hyperplasia with atypia +C2712711|T047|AB|621.34|ICD9CM|Ben endomet hyperplasia|Ben endomet hyperplasia +C2712711|T047|PT|621.34|ICD9CM|Benign endometrial hyperplasia|Benign endometrial hyperplasia +C1333394|T191|AB|621.35|ICD9CM|Endomet intraepithl neop|Endomet intraepithl neop +C1333394|T191|PT|621.35|ICD9CM|Endometrial intraepithelial neoplasia [EIN]|Endometrial intraepithelial neoplasia [EIN] +C0018948|T046|AB|621.4|ICD9CM|Hematometra|Hematometra +C0018948|T046|PT|621.4|ICD9CM|Hematometra|Hematometra +C1704274|T047|AB|621.5|ICD9CM|Intrauterine synechiae|Intrauterine synechiae +C1704274|T047|PT|621.5|ICD9CM|Intrauterine synechiae|Intrauterine synechiae +C0156373|T033|AB|621.6|ICD9CM|Malposition of uterus|Malposition of uterus +C0156373|T033|PT|621.6|ICD9CM|Malposition of uterus|Malposition of uterus +C0156374|T047|AB|621.7|ICD9CM|Chr inversion of uterus|Chr inversion of uterus +C0156374|T047|PT|621.7|ICD9CM|Chronic inversion of uterus|Chronic inversion of uterus +C0302384|T047|AB|621.8|ICD9CM|Disorders of uterus NEC|Disorders of uterus NEC +C0302384|T047|PT|621.8|ICD9CM|Other specified disorders of uterus, not elsewhere classified|Other specified disorders of uterus, not elsewhere classified +C0042131|T047|AB|621.9|ICD9CM|Disorder of uterus NOS|Disorder of uterus NOS +C0042131|T047|PT|621.9|ICD9CM|Unspecified disorder of uterus|Unspecified disorder of uterus +C0156377|T047|HT|622|ICD9CM|Noninflammatory disorders of cervix|Noninflammatory disorders of cervix +C0014719|T020|PT|622.0|ICD9CM|Erosion and ectropion of cervix|Erosion and ectropion of cervix +C0014719|T020|AB|622.0|ICD9CM|Erosion/ectropion cervix|Erosion/ectropion cervix +C0007868|T047|HT|622.1|ICD9CM|Dysplasia of cervix (uteri)|Dysplasia of cervix (uteri) +C0007868|T047|AB|622.10|ICD9CM|Dysplasia of cervix NOS|Dysplasia of cervix NOS +C0007868|T047|PT|622.10|ICD9CM|Dysplasia of cervix, unspecified|Dysplasia of cervix, unspecified +C0349458|T191|AB|622.11|ICD9CM|Mild dysplasia of cervix|Mild dysplasia of cervix +C0349458|T191|PT|622.11|ICD9CM|Mild dysplasia of cervix|Mild dysplasia of cervix +C0349459|T191|AB|622.12|ICD9CM|Mod dysplasia of cervix|Mod dysplasia of cervix +C0349459|T191|PT|622.12|ICD9CM|Moderate dysplasia of cervix|Moderate dysplasia of cervix +C0269194|T191|AB|622.2|ICD9CM|Leukoplakia of cervix|Leukoplakia of cervix +C0269194|T191|PT|622.2|ICD9CM|Leukoplakia of cervix (uteri)|Leukoplakia of cervix (uteri) +C0156379|T037|AB|622.3|ICD9CM|Old laceration of cervix|Old laceration of cervix +C0156379|T037|PT|622.3|ICD9CM|Old laceration of cervix|Old laceration of cervix +C0156380|T190|PT|622.4|ICD9CM|Stricture and stenosis of cervix|Stricture and stenosis of cervix +C0156380|T190|AB|622.4|ICD9CM|Stricture of cervix|Stricture of cervix +C0007871|T046|AB|622.5|ICD9CM|Incompetence of cervix|Incompetence of cervix +C0007871|T046|PT|622.5|ICD9CM|Incompetence of cervix|Incompetence of cervix +C0020561|T047|AB|622.6|ICD9CM|Hypertrophic elong cervx|Hypertrophic elong cervx +C0020561|T047|PT|622.6|ICD9CM|Hypertrophic elongation of cervix|Hypertrophic elongation of cervix +C0026725|T191|AB|622.7|ICD9CM|Mucous polyp of cervix|Mucous polyp of cervix +C0026725|T191|PT|622.7|ICD9CM|Mucous polyp of cervix|Mucous polyp of cervix +C0477784|T047|AB|622.8|ICD9CM|Noninflam dis cervix NEC|Noninflam dis cervix NEC +C0477784|T047|PT|622.8|ICD9CM|Other specified noninflammatory disorders of cervix|Other specified noninflammatory disorders of cervix +C0156377|T047|AB|622.9|ICD9CM|Noninflam dis cervix NOS|Noninflam dis cervix NOS +C0156377|T047|PT|622.9|ICD9CM|Unspecified noninflammatory disorder of cervix|Unspecified noninflammatory disorder of cervix +C0156383|T047|HT|623|ICD9CM|Noninflammatory disorders of vagina|Noninflammatory disorders of vagina +C0156384|T046|AB|623.0|ICD9CM|Dysplasia of vagina|Dysplasia of vagina +C0156384|T046|PT|623.0|ICD9CM|Dysplasia of vagina|Dysplasia of vagina +C0156385|T191|AB|623.1|ICD9CM|Leukoplakia of vagina|Leukoplakia of vagina +C0156385|T191|PT|623.1|ICD9CM|Leukoplakia of vagina|Leukoplakia of vagina +C0156386|T190|AB|623.2|ICD9CM|Stricture of vagina|Stricture of vagina +C0156386|T190|PT|623.2|ICD9CM|Stricture or atresia of vagina|Stricture or atresia of vagina +C0156387|T190|AB|623.3|ICD9CM|Tight hymenal ring|Tight hymenal ring +C0156387|T190|PT|623.3|ICD9CM|Tight hymenal ring|Tight hymenal ring +C0156388|T033|AB|623.4|ICD9CM|Old vaginal laceration|Old vaginal laceration +C0156388|T033|PT|623.4|ICD9CM|Old vaginal laceration|Old vaginal laceration +C0023534|T047|PT|623.5|ICD9CM|Leukorrhea, not specified as infective|Leukorrhea, not specified as infective +C0023534|T047|AB|623.5|ICD9CM|Noninfect vag leukorrhea|Noninfect vag leukorrhea +C0156389|T046|AB|623.6|ICD9CM|Vaginal hematoma|Vaginal hematoma +C0156389|T046|PT|623.6|ICD9CM|Vaginal hematoma|Vaginal hematoma +C0156390|T191|AB|623.7|ICD9CM|Polyp of vagina|Polyp of vagina +C0156390|T191|PT|623.7|ICD9CM|Polyp of vagina|Polyp of vagina +C0029819|T047|AB|623.8|ICD9CM|Noninflam dis vagina NEC|Noninflam dis vagina NEC +C0029819|T047|PT|623.8|ICD9CM|Other specified noninflammatory disorders of vagina|Other specified noninflammatory disorders of vagina +C0156383|T047|AB|623.9|ICD9CM|Noninflam dis vagina NOS|Noninflam dis vagina NOS +C0156383|T047|PT|623.9|ICD9CM|Unspecified noninflammatory disorder of vagina|Unspecified noninflammatory disorder of vagina +C0156400|T047|HT|624|ICD9CM|Noninflammatory disorders of vulva and perineum|Noninflammatory disorders of vulva and perineum +C0013426|T047|HT|624.0|ICD9CM|Dystrophy of vulva|Dystrophy of vulva +C0495106|T191|AB|624.01|ICD9CM|Vulvar intraeph neopl I|Vulvar intraeph neopl I +C0495106|T191|PT|624.01|ICD9CM|Vulvar intraepithelial neoplasia I [VIN I]|Vulvar intraepithelial neoplasia I [VIN I] +C0495107|T191|PT|624.02|ICD9CM|Vulvar intraepithelial neoplasia II [VIN II]|Vulvar intraepithelial neoplasia II [VIN II] +C0495107|T191|AB|624.02|ICD9CM|Vulvr intraepth neopl II|Vulvr intraepth neopl II +C1955816|T047|AB|624.09|ICD9CM|Dystrophy of vulva NEC|Dystrophy of vulva NEC +C1955816|T047|PT|624.09|ICD9CM|Other dystrophy of vulva|Other dystrophy of vulva +C0156393|T047|AB|624.1|ICD9CM|Atrophy of vulva|Atrophy of vulva +C0156393|T047|PT|624.1|ICD9CM|Atrophy of vulva|Atrophy of vulva +C0156394|T047|AB|624.2|ICD9CM|Hypertrophy of clitoris|Hypertrophy of clitoris +C0156394|T047|PT|624.2|ICD9CM|Hypertrophy of clitoris|Hypertrophy of clitoris +C0404531|T046|AB|624.3|ICD9CM|Hypertrophy of labia|Hypertrophy of labia +C0404531|T046|PT|624.3|ICD9CM|Hypertrophy of labia|Hypertrophy of labia +C0269223|T037|AB|624.4|ICD9CM|Old laceration of vulva|Old laceration of vulva +C0269223|T037|PT|624.4|ICD9CM|Old laceration or scarring of vulva|Old laceration or scarring of vulva +C0156397|T046|AB|624.5|ICD9CM|Hematoma of vulva|Hematoma of vulva +C0156397|T046|PT|624.5|ICD9CM|Hematoma of vulva|Hematoma of vulva +C0156398|T047|AB|624.6|ICD9CM|Polyp of labia and vulva|Polyp of labia and vulva +C0156398|T047|PT|624.6|ICD9CM|Polyp of labia and vulva|Polyp of labia and vulva +C0156399|T047|AB|624.8|ICD9CM|Noninflam dis vulva NEC|Noninflam dis vulva NEC +C0156399|T047|PT|624.8|ICD9CM|Other specified noninflammatory disorders of vulva and perineum|Other specified noninflammatory disorders of vulva and perineum +C0156400|T047|AB|624.9|ICD9CM|Noninflam dis vulva NOS|Noninflam dis vulva NOS +C0156400|T047|PT|624.9|ICD9CM|Unspecified noninflammatory disorder of vulva and perineum|Unspecified noninflammatory disorder of vulva and perineum +C0156401|T184|HT|625|ICD9CM|Pain and other symptoms associated with female genital organs|Pain and other symptoms associated with female genital organs +C0013394|T047|AB|625.0|ICD9CM|Dyspareunia|Dyspareunia +C0013394|T047|PT|625.0|ICD9CM|Dyspareunia|Dyspareunia +C2004487|T047|AB|625.1|ICD9CM|Vaginismus|Vaginismus +C2004487|T047|PT|625.1|ICD9CM|Vaginismus|Vaginismus +C0152149|T184|AB|625.2|ICD9CM|Mittelschmerz|Mittelschmerz +C0152149|T184|PT|625.2|ICD9CM|Mittelschmerz|Mittelschmerz +C0013390|T047|AB|625.3|ICD9CM|Dysmenorrhea|Dysmenorrhea +C0013390|T047|PT|625.3|ICD9CM|Dysmenorrhea|Dysmenorrhea +C0376356|T047|AB|625.4|ICD9CM|Premenstrual tension|Premenstrual tension +C0376356|T047|PT|625.4|ICD9CM|Premenstrual tension syndromes|Premenstrual tension syndromes +C0152078|T047|AB|625.5|ICD9CM|Pelvic congestion synd|Pelvic congestion synd +C0152078|T047|PT|625.5|ICD9CM|Pelvic congestion syndrome|Pelvic congestion syndrome +C0038437|T047|AB|625.6|ICD9CM|Fem stress incontinence|Fem stress incontinence +C0038437|T047|PT|625.6|ICD9CM|Stress incontinence, female|Stress incontinence, female +C0406670|T047|HT|625.7|ICD9CM|Vulvodynia|Vulvodynia +C0406670|T047|AB|625.70|ICD9CM|Vulvodynia NOS|Vulvodynia NOS +C0406670|T047|PT|625.70|ICD9CM|Vulvodynia, unspecified|Vulvodynia, unspecified +C0269084|T047|PT|625.71|ICD9CM|Vulvar vestibulitis|Vulvar vestibulitis +C0269084|T047|AB|625.71|ICD9CM|Vulvar vestibulitis|Vulvar vestibulitis +C2349583|T047|PT|625.79|ICD9CM|Other vulvodynia|Other vulvodynia +C2349583|T047|AB|625.79|ICD9CM|Other vulvodynia|Other vulvodynia +C0156402|T184|AB|625.8|ICD9CM|Fem genital symptoms NEC|Fem genital symptoms NEC +C0156402|T184|PT|625.8|ICD9CM|Other specified symptoms associated with female genital organs|Other specified symptoms associated with female genital organs +C0041889|T184|AB|625.9|ICD9CM|Fem genital symptoms NOS|Fem genital symptoms NOS +C0041889|T184|PT|625.9|ICD9CM|Unspecified symptom associated with female genital organs|Unspecified symptom associated with female genital organs +C0041827|T047|HT|626|ICD9CM|Disorders of menstruation and other abnormal bleeding from female genital tract|Disorders of menstruation and other abnormal bleeding from female genital tract +C0002453|T033|AB|626.0|ICD9CM|Absence of menstruation|Absence of menstruation +C0002453|T033|PT|626.0|ICD9CM|Absence of menstruation|Absence of menstruation +C0404550|T033|AB|626.1|ICD9CM|Scanty menstruation|Scanty menstruation +C0404550|T033|PT|626.1|ICD9CM|Scanty or infrequent menstruation|Scanty or infrequent menstruation +C0341863|T046|AB|626.2|ICD9CM|Excessive menstruation|Excessive menstruation +C0341863|T046|PT|626.2|ICD9CM|Excessive or frequent menstruation|Excessive or frequent menstruation +C0156403|T046|AB|626.3|ICD9CM|Pubertal menorrhagia|Pubertal menorrhagia +C0156403|T046|PT|626.3|ICD9CM|Puberty bleeding|Puberty bleeding +C0156404|T033|PT|626.4|ICD9CM|Irregular menstrual cycle|Irregular menstrual cycle +C0156404|T033|AB|626.4|ICD9CM|Irregular menstruation|Irregular menstruation +C0156405|T184|AB|626.5|ICD9CM|Ovulation bleeding|Ovulation bleeding +C0156405|T184|PT|626.5|ICD9CM|Ovulation bleeding|Ovulation bleeding +C0025874|T046|AB|626.6|ICD9CM|Metrorrhagia|Metrorrhagia +C0025874|T046|PT|626.6|ICD9CM|Metrorrhagia|Metrorrhagia +C0156406|T046|AB|626.7|ICD9CM|Postcoital bleeding|Postcoital bleeding +C0156406|T046|PT|626.7|ICD9CM|Postcoital bleeding|Postcoital bleeding +C0029592|T033|AB|626.8|ICD9CM|Menstrual disorder NEC|Menstrual disorder NEC +C0029592|T033|PT|626.8|ICD9CM|Other disorders of menstruation and other abnormal bleeding from female genital tract|Other disorders of menstruation and other abnormal bleeding from female genital tract +C0041827|T047|AB|626.9|ICD9CM|Menstrual disorder NOS|Menstrual disorder NOS +C0041827|T047|PT|626.9|ICD9CM|Unspecified disorders of menstruation and other abnormal bleeding from female genital tract|Unspecified disorders of menstruation and other abnormal bleeding from female genital tract +C0156407|T047|HT|627|ICD9CM|Menopausal and postmenopausal disorders|Menopausal and postmenopausal disorders +C0156408|T046|PT|627.0|ICD9CM|Premenopausal menorrhagia|Premenopausal menorrhagia +C0156408|T046|AB|627.0|ICD9CM|Premenopause menorrhagia|Premenopause menorrhagia +C0032776|T046|AB|627.1|ICD9CM|Postmenopausal bleeding|Postmenopausal bleeding +C0032776|T046|PT|627.1|ICD9CM|Postmenopausal bleeding|Postmenopausal bleeding +C1135336|T047|AB|627.2|ICD9CM|Sympt fem climact state|Sympt fem climact state +C1135336|T047|PT|627.2|ICD9CM|Symptomatic menopausal or female climacteric states|Symptomatic menopausal or female climacteric states +C0156409|T047|AB|627.3|ICD9CM|Atrophic vaginitis|Atrophic vaginitis +C0156409|T047|PT|627.3|ICD9CM|Postmenopausal atrophic vaginitis|Postmenopausal atrophic vaginitis +C1135337|T047|AB|627.4|ICD9CM|Sympt state w artif meno|Sympt state w artif meno +C1135337|T047|PT|627.4|ICD9CM|Symptomatic states associated with artificial menopause|Symptomatic states associated with artificial menopause +C0156411|T047|AB|627.8|ICD9CM|Menopausal disorder NEC|Menopausal disorder NEC +C0156411|T047|PT|627.8|ICD9CM|Other specified menopausal and postmenopausal disorders|Other specified menopausal and postmenopausal disorders +C0156407|T047|AB|627.9|ICD9CM|Menopausal disorder NOS|Menopausal disorder NOS +C0156407|T047|PT|627.9|ICD9CM|Unspecified menopausal and postmenopausal disorder|Unspecified menopausal and postmenopausal disorder +C0021361|T046|HT|628|ICD9CM|Infertility, female|Infertility, female +C0404572|T047|AB|628.0|ICD9CM|Infertility-anovulation|Infertility-anovulation +C0404572|T047|PT|628.0|ICD9CM|Infertility, female, associated with anovulation|Infertility, female, associated with anovulation +C0156414|T047|AB|628.1|ICD9CM|Infertil-pituitary orig|Infertil-pituitary orig +C0156414|T047|PT|628.1|ICD9CM|Infertility, female, of pituitary-hypothalamic origin|Infertility, female, of pituitary-hypothalamic origin +C0156415|T047|AB|628.2|ICD9CM|Infertility-tubal origin|Infertility-tubal origin +C0156415|T047|PT|628.2|ICD9CM|Infertility, female, of tubal origin|Infertility, female, of tubal origin +C0156416|T046|AB|628.3|ICD9CM|Infertility-uterine orig|Infertility-uterine orig +C0156416|T046|PT|628.3|ICD9CM|Infertility, female, of uterine origin|Infertility, female, of uterine origin +C0156417|T047|AB|628.4|ICD9CM|Infertil-cervical orig|Infertil-cervical orig +C0156417|T047|PT|628.4|ICD9CM|Infertility, female, of cervical or vaginal origin|Infertility, female, of cervical or vaginal origin +C0021362|T033|AB|628.8|ICD9CM|Female infertility NEC|Female infertility NEC +C0021362|T033|PT|628.8|ICD9CM|Infertility, female, of other specified origin|Infertility, female, of other specified origin +C0021361|T046|AB|628.9|ICD9CM|Female infertility NOS|Female infertility NOS +C0021361|T046|PT|628.9|ICD9CM|Infertility, female, of unspecified origin|Infertility, female, of unspecified origin +C0156418|T047|HT|629|ICD9CM|Other disorders of female genital organs|Other disorders of female genital organs +C0869280|T047|AB|629.0|ICD9CM|Hematocele, female NEC|Hematocele, female NEC +C0869280|T047|PT|629.0|ICD9CM|Hematocele, female, not elsewhere classified|Hematocele, female, not elsewhere classified +C0156420|T190|AB|629.1|ICD9CM|Hydrocele canal nuck-fem|Hydrocele canal nuck-fem +C0156420|T190|PT|629.1|ICD9CM|Hydrocele, canal of nuck|Hydrocele, canal of nuck +C0744374|T033|HT|629.2|ICD9CM|Female genital mutilation status|Female genital mutilation status +C0744374|T033|PT|629.20|ICD9CM|Female genital mutilation status, unspecified|Female genital mutilation status, unspecified +C0744374|T033|AB|629.20|ICD9CM|Genital mutilation NOS|Genital mutilation NOS +C1456059|T047|PT|629.21|ICD9CM|Female genital mutilation Type I status|Female genital mutilation Type I status +C1456059|T047|AB|629.21|ICD9CM|Genital mutilatn type I|Genital mutilatn type I +C1456061|T047|PT|629.22|ICD9CM|Female genital mutilation Type II status|Female genital mutilation Type II status +C1456061|T047|AB|629.22|ICD9CM|Genital mutilatn type II|Genital mutilatn type II +C1456063|T047|PT|629.23|ICD9CM|Female genital mutilation Type III status|Female genital mutilation Type III status +C1456063|T047|AB|629.23|ICD9CM|Genital muilatn type III|Genital muilatn type III +C1719551|T033|AB|629.29|ICD9CM|Fem genital mutilate NEC|Fem genital mutilate NEC +C1719551|T033|PT|629.29|ICD9CM|Other female genital mutilation status|Other female genital mutilation status +C3161257|T046|HT|629.3|ICD9CM|Complication of implanted vaginal mesh and other prosthetic materials|Complication of implanted vaginal mesh and other prosthetic materials +C3161118|T046|AB|629.31|ICD9CM|Eros imp vag mesh in tis|Eros imp vag mesh in tis +C3161118|T046|PT|629.31|ICD9CM|Erosion of implanted vaginal mesh and other prosthetic materials to surrounding organ or tissue|Erosion of implanted vaginal mesh and other prosthetic materials to surrounding organ or tissue +C3161119|T046|AB|629.32|ICD9CM|Exp imp vag mesh-vagina|Exp imp vag mesh-vagina +C3161119|T046|PT|629.32|ICD9CM|Exposure of implanted vaginal mesh and other prosthetic materials into vagina|Exposure of implanted vaginal mesh and other prosthetic materials into vagina +C0156421|T047|HT|629.8|ICD9CM|Other specified disorders of female genital organs|Other specified disorders of female genital organs +C2921105|T046|AB|629.81|ICD9CM|Rec preg loss wo cur prg|Rec preg loss wo cur prg +C2921105|T046|PT|629.81|ICD9CM|Recurrent pregnancy loss without current pregnancy|Recurrent pregnancy loss without current pregnancy +C0156421|T047|AB|629.89|ICD9CM|Female genital disor NEC|Female genital disor NEC +C0156421|T047|PT|629.89|ICD9CM|Other specified disorders of female genital organs|Other specified disorders of female genital organs +C0017411|T047|AB|629.9|ICD9CM|Female genital dis NOS|Female genital dis NOS +C0017411|T047|PT|629.9|ICD9CM|Unspecified disorder of female genital organs|Unspecified disorder of female genital organs +C0020217|T191|AB|630|ICD9CM|Hydatidiform mole|Hydatidiform mole +C0020217|T191|PT|630|ICD9CM|Hydatidiform mole|Hydatidiform mole +C0178293|T047|HT|630-633.99|ICD9CM|ECTOPIC AND MOLAR PREGNANCY|ECTOPIC AND MOLAR PREGNANCY +C0178292|T046|HT|630-679.99|ICD9CM|COMPLICATIONS OF PREGNANCY, CHILDBIRTH, AND THE PUERPERIUM|COMPLICATIONS OF PREGNANCY, CHILDBIRTH, AND THE PUERPERIUM +C0156422|T047|HT|631|ICD9CM|Other abnormal product of conception|Other abnormal product of conception +C3161120|T033|AB|631.0|ICD9CM|Inapp chg hCG early preg|Inapp chg hCG early preg +C3161120|T033|PT|631.0|ICD9CM|Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy|Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy +C0156422|T047|AB|631.8|ICD9CM|Oth abn prod conception|Oth abn prod conception +C0156422|T047|PT|631.8|ICD9CM|Other abnormal products of conception|Other abnormal products of conception +C0000814|T047|AB|632|ICD9CM|Missed abortion|Missed abortion +C0000814|T047|PT|632|ICD9CM|Missed abortion|Missed abortion +C0032987|T046|HT|633|ICD9CM|Ectopic pregnancy|Ectopic pregnancy +C0032984|T046|HT|633.0|ICD9CM|Abdominal pregnancy|Abdominal pregnancy +C1135231|T046|AB|633.00|ICD9CM|Abd preg w/o intrau preg|Abd preg w/o intrau preg +C1135231|T046|PT|633.00|ICD9CM|Abdominal pregnancy without intrauterine pregnancy|Abdominal pregnancy without intrauterine pregnancy +C1135232|T046|AB|633.01|ICD9CM|Abd preg w intraut preg|Abd preg w intraut preg +C1135232|T046|PT|633.01|ICD9CM|Abdominal pregnancy with intrauterine pregnancy|Abdominal pregnancy with intrauterine pregnancy +C0032994|T046|HT|633.1|ICD9CM|Tubal pregnancy|Tubal pregnancy +C1135233|T046|AB|633.10|ICD9CM|Tubal preg w/o intra prg|Tubal preg w/o intra prg +C1135233|T046|PT|633.10|ICD9CM|Tubal pregnancy without intrauterine pregnancy|Tubal pregnancy without intrauterine pregnancy +C1135234|T046|AB|633.11|ICD9CM|Tubal preg w intra preg|Tubal preg w intra preg +C1135234|T046|PT|633.11|ICD9CM|Tubal pregnancy with intrauterine pregnancy|Tubal pregnancy with intrauterine pregnancy +C0032991|T046|HT|633.2|ICD9CM|Ovarian pregnancy|Ovarian pregnancy +C1135235|T046|PT|633.20|ICD9CM|Ovarian pregnancy without intrauterine pregnancy|Ovarian pregnancy without intrauterine pregnancy +C1135235|T046|AB|633.20|ICD9CM|Ovarn preg w/o intra prg|Ovarn preg w/o intra prg +C1135236|T046|AB|633.21|ICD9CM|Ovarian preg w intra prg|Ovarian preg w intra prg +C1135236|T046|PT|633.21|ICD9CM|Ovarian pregnancy with intrauterine pregnancy|Ovarian pregnancy with intrauterine pregnancy +C0029604|T046|HT|633.8|ICD9CM|Other ectopic pregnancy|Other ectopic pregnancy +C1135237|T047|AB|633.80|ICD9CM|Ect preg NEC w/o int prg|Ect preg NEC w/o int prg +C1135237|T047|PT|633.80|ICD9CM|Other ectopic pregnancy without intrauterine pregnancy|Other ectopic pregnancy without intrauterine pregnancy +C1135238|T047|AB|633.81|ICD9CM|Ectpc prg NEC w int preg|Ectpc prg NEC w int preg +C1135238|T047|PT|633.81|ICD9CM|Other ectopic pregnancy with intrauterine pregnancy|Other ectopic pregnancy with intrauterine pregnancy +C0032987|T046|HT|633.9|ICD9CM|Unspecified ectopic pregnancy|Unspecified ectopic pregnancy +C1135239|T046|AB|633.90|ICD9CM|Ect preg NOS w/o int prg|Ect preg NOS w/o int prg +C1135239|T046|PT|633.90|ICD9CM|Unspecified ectopic pregnancy without intrauterine pregnancy|Unspecified ectopic pregnancy without intrauterine pregnancy +C1135240|T046|AB|633.91|ICD9CM|Ectp preg NOS w int preg|Ectp preg NOS w int preg +C1135240|T046|PT|633.91|ICD9CM|Unspecified ectopic pregnancy with intrauterine pregnancy|Unspecified ectopic pregnancy with intrauterine pregnancy +C0000786|T046|HT|634|ICD9CM|Spontaneous abortion|Spontaneous abortion +C0178294|T047|HT|634-639.99|ICD9CM|OTHER PREGNANCY WITH ABORTIVE OUTCOME|OTHER PREGNANCY WITH ABORTIVE OUTCOME +C0156424|T047|HT|634.0|ICD9CM|Spontaneous abortion complicated by genital tract and pelvic infection|Spontaneous abortion complicated by genital tract and pelvic infection +C0156424|T047|AB|634.00|ICD9CM|Spon abor w pel inf-unsp|Spon abor w pel inf-unsp +C0156424|T047|PT|634.00|ICD9CM|Spontaneous abortion, complicated by genital tract and pelvic infection, unspecified|Spontaneous abortion, complicated by genital tract and pelvic infection, unspecified +C0156425|T047|AB|634.01|ICD9CM|Spon abor w pelv inf-inc|Spon abor w pelv inf-inc +C0156425|T047|PT|634.01|ICD9CM|Spontaneous abortion, complicated by genital tract and pelvic infection, incomplete|Spontaneous abortion, complicated by genital tract and pelvic infection, incomplete +C0156426|T047|AB|634.02|ICD9CM|Spon abor w pel inf-comp|Spon abor w pel inf-comp +C0156426|T047|PT|634.02|ICD9CM|Spontaneous abortion, complicated by genital tract and pelvic infection, complete|Spontaneous abortion, complicated by genital tract and pelvic infection, complete +C0156427|T046|HT|634.1|ICD9CM|Spontaneous abortion complicated by delayed or excessive hemorrhage|Spontaneous abortion complicated by delayed or excessive hemorrhage +C0156428|T047|AB|634.10|ICD9CM|Spon abort w hemorr-unsp|Spon abort w hemorr-unsp +C0156428|T047|PT|634.10|ICD9CM|Spontaneous abortion, complicated by delayed or excessive hemorrhage, unspecified|Spontaneous abortion, complicated by delayed or excessive hemorrhage, unspecified +C0156429|T046|AB|634.11|ICD9CM|Spon abort w hemorr-inc|Spon abort w hemorr-inc +C0156429|T046|PT|634.11|ICD9CM|Spontaneous abortion, complicated by delayed or excessive hemorrhage, incomplete|Spontaneous abortion, complicated by delayed or excessive hemorrhage, incomplete +C0156430|T047|AB|634.12|ICD9CM|Spon abort w hemorr-comp|Spon abort w hemorr-comp +C0156430|T047|PT|634.12|ICD9CM|Spontaneous abortion, complicated by delayed or excessive hemorrhage, complete|Spontaneous abortion, complicated by delayed or excessive hemorrhage, complete +C0269403|T047|HT|634.2|ICD9CM|Spontaneous abortion complicated by damage to pelvic organs or tissues|Spontaneous abortion complicated by damage to pelvic organs or tissues +C0269403|T047|AB|634.20|ICD9CM|Spon ab w pel damag-unsp|Spon ab w pel damag-unsp +C0269403|T047|PT|634.20|ICD9CM|Spontaneous abortion, complicated by damage to pelvic organs or tissues, unspecified|Spontaneous abortion, complicated by damage to pelvic organs or tissues, unspecified +C0156433|T037|AB|634.21|ICD9CM|Spon ab w pelv damag-inc|Spon ab w pelv damag-inc +C0156433|T037|PT|634.21|ICD9CM|Spontaneous abortion, complicated by damage to pelvic organs or tissues, incomplete|Spontaneous abortion, complicated by damage to pelvic organs or tissues, incomplete +C0156434|T037|AB|634.22|ICD9CM|Spon ab w pel damag-comp|Spon ab w pel damag-comp +C0156434|T037|PT|634.22|ICD9CM|Spontaneous abortion, complicated by damage to pelvic organs or tissues, complete|Spontaneous abortion, complicated by damage to pelvic organs or tissues, complete +C0156435|T047|HT|634.3|ICD9CM|Spontaneous abortion complicated by renal failure|Spontaneous abortion complicated by renal failure +C0156436|T047|AB|634.30|ICD9CM|Spon ab w ren fail-unsp|Spon ab w ren fail-unsp +C0156436|T047|PT|634.30|ICD9CM|Spontaneous abortion, complicated by renal failure, unspecified|Spontaneous abortion, complicated by renal failure, unspecified +C0404922|T047|AB|634.31|ICD9CM|Spon ab w ren fail-inc|Spon ab w ren fail-inc +C0404922|T047|PT|634.31|ICD9CM|Spontaneous abortion, complicated by renal failure, incomplete|Spontaneous abortion, complicated by renal failure, incomplete +C0404905|T046|AB|634.32|ICD9CM|Spon ab w ren fail-comp|Spon ab w ren fail-comp +C0404905|T046|PT|634.32|ICD9CM|Spontaneous abortion, complicated by renal failure, complete|Spontaneous abortion, complicated by renal failure, complete +C0156439|T047|HT|634.4|ICD9CM|Spontaneous abortion complicated by metabolic disorder|Spontaneous abortion complicated by metabolic disorder +C0156439|T047|AB|634.40|ICD9CM|Spon ab w metab dis-unsp|Spon ab w metab dis-unsp +C0156439|T047|PT|634.40|ICD9CM|Spontaneous abortion, complicated by metabolic disorder, unspecified|Spontaneous abortion, complicated by metabolic disorder, unspecified +C0404921|T046|AB|634.41|ICD9CM|Spon ab w metab dis-inc|Spon ab w metab dis-inc +C0404921|T046|PT|634.41|ICD9CM|Spontaneous abortion, complicated by metabolic disorder, incomplete|Spontaneous abortion, complicated by metabolic disorder, incomplete +C0156442|T047|AB|634.42|ICD9CM|Spon ab w metab dis-comp|Spon ab w metab dis-comp +C0156442|T047|PT|634.42|ICD9CM|Spontaneous abortion, complicated by metabolic disorder, complete|Spontaneous abortion, complicated by metabolic disorder, complete +C0156443|T047|HT|634.5|ICD9CM|Spontaneous abortion complicated by shock|Spontaneous abortion complicated by shock +C0156444|T047|AB|634.50|ICD9CM|Spon abort w shock-unsp|Spon abort w shock-unsp +C0156444|T047|PT|634.50|ICD9CM|Spontaneous abortion, complicated by shock, unspecified|Spontaneous abortion, complicated by shock, unspecified +C0156445|T047|AB|634.51|ICD9CM|Spon abort w shock-inc|Spon abort w shock-inc +C0156445|T047|PT|634.51|ICD9CM|Spontaneous abortion, complicated by shock, incomplete|Spontaneous abortion, complicated by shock, incomplete +C0404903|T046|AB|634.52|ICD9CM|Spon abort w shock-comp|Spon abort w shock-comp +C0404903|T046|PT|634.52|ICD9CM|Spontaneous abortion, complicated by shock, complete|Spontaneous abortion, complicated by shock, complete +C0156447|T047|HT|634.6|ICD9CM|Spontaneous abortion complicated by embolism|Spontaneous abortion complicated by embolism +C0156448|T047|AB|634.60|ICD9CM|Spon abort w embol-unsp|Spon abort w embol-unsp +C0156448|T047|PT|634.60|ICD9CM|Spontaneous abortion, complicated by embolism, unspecified|Spontaneous abortion, complicated by embolism, unspecified +C0404919|T046|AB|634.61|ICD9CM|Spon abort w embol-inc|Spon abort w embol-inc +C0404919|T046|PT|634.61|ICD9CM|Spontaneous abortion, complicated by embolism, incomplete|Spontaneous abortion, complicated by embolism, incomplete +C0404902|T046|AB|634.62|ICD9CM|Spon abort w embol-comp|Spon abort w embol-comp +C0404902|T046|PT|634.62|ICD9CM|Spontaneous abortion, complicated by embolism, complete|Spontaneous abortion, complicated by embolism, complete +C0156452|T047|HT|634.7|ICD9CM|Spontaneous abortion with other specified complications|Spontaneous abortion with other specified complications +C0156452|T047|AB|634.70|ICD9CM|Spon ab w compl NEC-unsp|Spon ab w compl NEC-unsp +C0156452|T047|PT|634.70|ICD9CM|Spontaneous abortion, with other specified complications, unspecified|Spontaneous abortion, with other specified complications, unspecified +C0156453|T047|AB|634.71|ICD9CM|Spon ab w compl NEC-inc|Spon ab w compl NEC-inc +C0156453|T047|PT|634.71|ICD9CM|Spontaneous abortion, with other specified complications, incomplete|Spontaneous abortion, with other specified complications, incomplete +C0156454|T047|AB|634.72|ICD9CM|Spon ab w compl NEC-comp|Spon ab w compl NEC-comp +C0156454|T047|PT|634.72|ICD9CM|Spontaneous abortion, with other specified complications, complete|Spontaneous abortion, with other specified complications, complete +C0156456|T046|HT|634.8|ICD9CM|Spontaneous abortion with unspecified complication|Spontaneous abortion with unspecified complication +C0156456|T046|AB|634.80|ICD9CM|Spon ab w compl NOS-unsp|Spon ab w compl NOS-unsp +C0156456|T046|PT|634.80|ICD9CM|Spontaneous abortion, with unspecified complication, unspecified|Spontaneous abortion, with unspecified complication, unspecified +C0156457|T046|AB|634.81|ICD9CM|Spon ab w compl NOS-inc|Spon ab w compl NOS-inc +C0156457|T046|PT|634.81|ICD9CM|Spontaneous abortion, with unspecified complication, incomplete|Spontaneous abortion, with unspecified complication, incomplete +C0156458|T047|AB|634.82|ICD9CM|Spon ab w compl NOS-comp|Spon ab w compl NOS-comp +C0156458|T047|PT|634.82|ICD9CM|Spontaneous abortion, with unspecified complication, complete|Spontaneous abortion, with unspecified complication, complete +C0156459|T046|HT|634.9|ICD9CM|Spontaneous abortion without mention of complication|Spontaneous abortion without mention of complication +C0156459|T046|AB|634.90|ICD9CM|Spon abort uncompl-unsp|Spon abort uncompl-unsp +C0156459|T046|PT|634.90|ICD9CM|Spontaneous abortion, without mention of complication, unspecified|Spontaneous abortion, without mention of complication, unspecified +C0729205|T046|AB|634.91|ICD9CM|Spon abort uncompl-inc|Spon abort uncompl-inc +C0729205|T046|PT|634.91|ICD9CM|Spontaneous abortion, without mention of complication, incomplete|Spontaneous abortion, without mention of complication, incomplete +C0156461|T047|AB|634.92|ICD9CM|Spon abort uncompl-comp|Spon abort uncompl-comp +C0156461|T047|PT|634.92|ICD9CM|Spontaneous abortion, without mention of complication, complete|Spontaneous abortion, without mention of complication, complete +C1456876|T033|HT|635|ICD9CM|Legally induced abortion|Legally induced abortion +C0156464|T047|HT|635.0|ICD9CM|Legally induced abortion complicated by genital tract and pelvic infection|Legally induced abortion complicated by genital tract and pelvic infection +C0156464|T047|AB|635.00|ICD9CM|Leg abor w pelv inf-unsp|Leg abor w pelv inf-unsp +C0156464|T047|PT|635.00|ICD9CM|Legally induced abortion, complicated by genital tract and pelvic infection, unspecified|Legally induced abortion, complicated by genital tract and pelvic infection, unspecified +C0156465|T046|AB|635.01|ICD9CM|Leg abor w pelv inf-inc|Leg abor w pelv inf-inc +C0156465|T046|PT|635.01|ICD9CM|Legally induced abortion, complicated by genital tract and pelvic infection, incomplete|Legally induced abortion, complicated by genital tract and pelvic infection, incomplete +C0156466|T046|AB|635.02|ICD9CM|Leg abor w pelv inf-comp|Leg abor w pelv inf-comp +C0156466|T046|PT|635.02|ICD9CM|Legally induced abortion, complicated by genital tract and pelvic infection, complete|Legally induced abortion, complicated by genital tract and pelvic infection, complete +C0269450|T046|HT|635.1|ICD9CM|Legally induced abortion complicated by delayed or excessive hemorrhage|Legally induced abortion complicated by delayed or excessive hemorrhage +C0269450|T046|AB|635.10|ICD9CM|Legal abor w hemorr-unsp|Legal abor w hemorr-unsp +C0269450|T046|PT|635.10|ICD9CM|Legally induced abortion, complicated by delayed or excessive hemorrhage, unspecified|Legally induced abortion, complicated by delayed or excessive hemorrhage, unspecified +C0156469|T046|AB|635.11|ICD9CM|Legal abort w hemorr-inc|Legal abort w hemorr-inc +C0156469|T046|PT|635.11|ICD9CM|Legally induced abortion, complicated by delayed or excessive hemorrhage, incomplete|Legally induced abortion, complicated by delayed or excessive hemorrhage, incomplete +C0156470|T046|AB|635.12|ICD9CM|Legal abor w hemorr-comp|Legal abor w hemorr-comp +C0156470|T046|PT|635.12|ICD9CM|Legally induced abortion, complicated by delayed or excessive hemorrhage, complete|Legally induced abortion, complicated by delayed or excessive hemorrhage, complete +C0156472|T046|HT|635.2|ICD9CM|Legally induced abortion complicated by damage to pelvic organs or tissues|Legally induced abortion complicated by damage to pelvic organs or tissues +C0156472|T046|AB|635.20|ICD9CM|Leg ab w pelv damag-unsp|Leg ab w pelv damag-unsp +C0156472|T046|PT|635.20|ICD9CM|Legally induced abortion, complicated by damage to pelvic organs or tissues, unspecified|Legally induced abortion, complicated by damage to pelvic organs or tissues, unspecified +C0156473|T046|AB|635.21|ICD9CM|Leg ab w pelv damag-inc|Leg ab w pelv damag-inc +C0156473|T046|PT|635.21|ICD9CM|Legally induced abortion, complicated by damage to pelvic organs or tissues, incomplete|Legally induced abortion, complicated by damage to pelvic organs or tissues, incomplete +C0156474|T037|AB|635.22|ICD9CM|Leg ab w pelv damag-comp|Leg ab w pelv damag-comp +C0156474|T037|PT|635.22|ICD9CM|Legally induced abortion, complicated by damage to pelvic organs or tissues, complete|Legally induced abortion, complicated by damage to pelvic organs or tissues, complete +C0269469|T046|HT|635.3|ICD9CM|Legally induced abortion complicated by renal failure|Legally induced abortion complicated by renal failure +C0269469|T046|AB|635.30|ICD9CM|Leg abor w ren fail-unsp|Leg abor w ren fail-unsp +C0269469|T046|PT|635.30|ICD9CM|Legally induced abortion, complicated by renal failure,unspecified|Legally induced abortion, complicated by renal failure,unspecified +C0156477|T046|AB|635.31|ICD9CM|Leg abor w ren fail-inc|Leg abor w ren fail-inc +C0156477|T046|PT|635.31|ICD9CM|Legally induced abortion, complicated by renal failure, incomplete|Legally induced abortion, complicated by renal failure, incomplete +C0156478|T046|AB|635.32|ICD9CM|Leg abor w ren fail-comp|Leg abor w ren fail-comp +C0156478|T046|PT|635.32|ICD9CM|Legally induced abortion, complicated by renal failure, complete|Legally induced abortion, complicated by renal failure, complete +C0269474|T046|HT|635.4|ICD9CM|Legally induced abortion complicated by metabolic disorder|Legally induced abortion complicated by metabolic disorder +C0269474|T046|AB|635.40|ICD9CM|Leg ab w metab dis-unsp|Leg ab w metab dis-unsp +C0269474|T046|PT|635.40|ICD9CM|Legally induced abortion, complicated by metabolic disorder, unspecified|Legally induced abortion, complicated by metabolic disorder, unspecified +C0156481|T046|AB|635.41|ICD9CM|Leg ab w metab dis-inc|Leg ab w metab dis-inc +C0156481|T046|PT|635.41|ICD9CM|Legally induced abortion, complicated by metabolic disorder, incomplete|Legally induced abortion, complicated by metabolic disorder, incomplete +C0156482|T046|AB|635.42|ICD9CM|Leg ab w metab dis-comp|Leg ab w metab dis-comp +C0156482|T046|PT|635.42|ICD9CM|Legally induced abortion, complicated by metabolic disorder, complete|Legally induced abortion, complicated by metabolic disorder, complete +C0269476|T046|HT|635.5|ICD9CM|Legally induced abortion complicated by shock|Legally induced abortion complicated by shock +C0269476|T046|AB|635.50|ICD9CM|Legal abort w shock-unsp|Legal abort w shock-unsp +C0269476|T046|PT|635.50|ICD9CM|Legally induced abortion, complicated by shock, unspecified|Legally induced abortion, complicated by shock, unspecified +C0156485|T046|AB|635.51|ICD9CM|Legal abort w shock-inc|Legal abort w shock-inc +C0156485|T046|PT|635.51|ICD9CM|Legally induced abortion, complicated by shock, incomplete|Legally induced abortion, complicated by shock, incomplete +C0156486|T046|AB|635.52|ICD9CM|Legal abort w shock-comp|Legal abort w shock-comp +C0156486|T046|PT|635.52|ICD9CM|Legally induced abortion, complicated by shock, complete|Legally induced abortion, complicated by shock, complete +C0269479|T046|HT|635.6|ICD9CM|Legally induced abortion complicated by embolism|Legally induced abortion complicated by embolism +C0269479|T046|AB|635.60|ICD9CM|Legal abort w embol-unsp|Legal abort w embol-unsp +C0269479|T046|PT|635.60|ICD9CM|Legally induced abortion, complicated by embolism, unspecified|Legally induced abortion, complicated by embolism, unspecified +C0156489|T046|AB|635.61|ICD9CM|Legal abort w embol-inc|Legal abort w embol-inc +C0156489|T046|PT|635.61|ICD9CM|Legally induced abortion, complicated by embolism, incomplete|Legally induced abortion, complicated by embolism, incomplete +C0156490|T046|AB|635.62|ICD9CM|Legal abort w embol-comp|Legal abort w embol-comp +C0156490|T046|PT|635.62|ICD9CM|Legally induced abortion, complicated by embolism, complete|Legally induced abortion, complicated by embolism, complete +C0156492|T046|HT|635.7|ICD9CM|Legally induced abortion with other specified complications|Legally induced abortion with other specified complications +C0156492|T046|AB|635.70|ICD9CM|Leg ab w compl NEC-unsp|Leg ab w compl NEC-unsp +C0156492|T046|PT|635.70|ICD9CM|Legally induced abortion, with other specified complications, unspecified|Legally induced abortion, with other specified complications, unspecified +C0156493|T046|AB|635.71|ICD9CM|Leg ab w compl NEC-inc|Leg ab w compl NEC-inc +C0156493|T046|PT|635.71|ICD9CM|Legally induced abortion, with other specified complications, incomplete|Legally induced abortion, with other specified complications, incomplete +C0156494|T046|AB|635.72|ICD9CM|Leg ab w compl NEC-comp|Leg ab w compl NEC-comp +C0156494|T046|PT|635.72|ICD9CM|Legally induced abortion, with other specified complications, complete|Legally induced abortion, with other specified complications, complete +C0269441|T046|HT|635.8|ICD9CM|Legally induced abortion with unspecified complication|Legally induced abortion with unspecified complication +C0269441|T046|AB|635.80|ICD9CM|Leg ab w compl NOS-unsp|Leg ab w compl NOS-unsp +C0269441|T046|PT|635.80|ICD9CM|Legally induced abortion, with unspecified complication, unspecified|Legally induced abortion, with unspecified complication, unspecified +C0600042|T046|AB|635.81|ICD9CM|Leg ab w compl NOS-inc|Leg ab w compl NOS-inc +C0600042|T046|PT|635.81|ICD9CM|Legally induced abortion, with unspecified complication, incomplete|Legally induced abortion, with unspecified complication, incomplete +C0156498|T046|AB|635.82|ICD9CM|Leg ab w compl NOS-comp|Leg ab w compl NOS-comp +C0156498|T046|PT|635.82|ICD9CM|Legally induced abortion, with unspecified complication, complete|Legally induced abortion, with unspecified complication, complete +C0156499|T033|HT|635.9|ICD9CM|Legally induced abortion without mention of complication|Legally induced abortion without mention of complication +C0156499|T033|AB|635.90|ICD9CM|Legal abort uncompl-unsp|Legal abort uncompl-unsp +C0156499|T033|PT|635.90|ICD9CM|Legally induced abortion, without mention of complication, unspecified|Legally induced abortion, without mention of complication, unspecified +C0600043|T046|AB|635.91|ICD9CM|Legal abort uncompl-inc|Legal abort uncompl-inc +C0600043|T046|PT|635.91|ICD9CM|Legally induced abortion, without mention of complication, incomplete|Legally induced abortion, without mention of complication, incomplete +C1261319|T047|AB|635.92|ICD9CM|Legal abort uncompl-comp|Legal abort uncompl-comp +C1261319|T047|PT|635.92|ICD9CM|Legally induced abortion, without mention of complication, complete|Legally induced abortion, without mention of complication, complete +C0000804|T033|HT|636|ICD9CM|Illegally induced abortion|Illegally induced abortion +C0156504|T046|HT|636.0|ICD9CM|Illegally induced abortion complicated by genital tract and pelvic infection|Illegally induced abortion complicated by genital tract and pelvic infection +C0156504|T046|AB|636.00|ICD9CM|Illeg ab w pelv inf-unsp|Illeg ab w pelv inf-unsp +C0156504|T046|PT|636.00|ICD9CM|Illegally induced abortion, complicated by genital tract and pelvic infection, unspecified|Illegally induced abortion, complicated by genital tract and pelvic infection, unspecified +C0156505|T046|AB|636.01|ICD9CM|Illeg ab w pelv inf-inc|Illeg ab w pelv inf-inc +C0156505|T046|PT|636.01|ICD9CM|Illegally induced abortion, complicated by genital tract and pelvic infection, incomplete|Illegally induced abortion, complicated by genital tract and pelvic infection, incomplete +C0156506|T037|AB|636.02|ICD9CM|Illeg ab w pelv inf-comp|Illeg ab w pelv inf-comp +C0156506|T037|PT|636.02|ICD9CM|Illegally induced abortion, complicated by genital tract and pelvic infection, complete|Illegally induced abortion, complicated by genital tract and pelvic infection, complete +C0269505|T033|HT|636.1|ICD9CM|Illegally induced abortion complicated by delayed or excessive hemorrhage|Illegally induced abortion complicated by delayed or excessive hemorrhage +C0269505|T033|AB|636.10|ICD9CM|Illeg ab w hemorr-unspec|Illeg ab w hemorr-unspec +C0269505|T033|PT|636.10|ICD9CM|Illegally induced abortion, complicated by delayed or excessive hemorrhage, unspecified|Illegally induced abortion, complicated by delayed or excessive hemorrhage, unspecified +C0156509|T047|AB|636.11|ICD9CM|Illeg ab w hemorr-inc|Illeg ab w hemorr-inc +C0156509|T047|PT|636.11|ICD9CM|Illegally induced abortion, complicated by delayed or excessive hemorrhage, incomplete|Illegally induced abortion, complicated by delayed or excessive hemorrhage, incomplete +C0156510|T047|AB|636.12|ICD9CM|Illeg ab w hemorr-comp|Illeg ab w hemorr-comp +C0156510|T047|PT|636.12|ICD9CM|Illegally induced abortion, complicated by delayed or excessive hemorrhage, complete|Illegally induced abortion, complicated by delayed or excessive hemorrhage, complete +C0269509|T046|HT|636.2|ICD9CM|Illegally induced abortion complicated by damage to pelvic organs or tissue|Illegally induced abortion complicated by damage to pelvic organs or tissue +C0269509|T046|AB|636.20|ICD9CM|Illeg ab w pel damg-unsp|Illeg ab w pel damg-unsp +C0269509|T046|PT|636.20|ICD9CM|Illegally induced abortion, complicated by damage to pelvic organs or tissues, unspecified|Illegally induced abortion, complicated by damage to pelvic organs or tissues, unspecified +C0156513|T037|AB|636.21|ICD9CM|Illeg ab w pel damag-inc|Illeg ab w pel damag-inc +C0156513|T037|PT|636.21|ICD9CM|Illegally induced abortion, complicated by damage to pelvic organs or tissues, incomplete|Illegally induced abortion, complicated by damage to pelvic organs or tissues, incomplete +C0156514|T037|AB|636.22|ICD9CM|Illeg ab w pel damg-comp|Illeg ab w pel damg-comp +C0156514|T037|PT|636.22|ICD9CM|Illegally induced abortion, complicated by damage to pelvic organs or tissues, complete|Illegally induced abortion, complicated by damage to pelvic organs or tissues, complete +C0269524|T046|HT|636.3|ICD9CM|Illegally induced abortion complicated by renal failure|Illegally induced abortion complicated by renal failure +C0269524|T046|AB|636.30|ICD9CM|Illeg ab w ren fail-unsp|Illeg ab w ren fail-unsp +C0269524|T046|PT|636.30|ICD9CM|Illegally induced abortion, complicated by renal failure, unspecified|Illegally induced abortion, complicated by renal failure, unspecified +C0156517|T047|AB|636.31|ICD9CM|Illeg ab w ren fail-inc|Illeg ab w ren fail-inc +C0156517|T047|PT|636.31|ICD9CM|Illegally induced abortion, complicated by renal failure, incomplete|Illegally induced abortion, complicated by renal failure, incomplete +C0156518|T047|AB|636.32|ICD9CM|Illeg ab w ren fail-comp|Illeg ab w ren fail-comp +C0156518|T047|PT|636.32|ICD9CM|Illegally induced abortion, complicated by renal failure, complete|Illegally induced abortion, complicated by renal failure, complete +C0269529|T046|HT|636.4|ICD9CM|Illegally induced abortion complicated by metabolic disorder|Illegally induced abortion complicated by metabolic disorder +C0269529|T046|AB|636.40|ICD9CM|Illeg ab w met dis-unsp|Illeg ab w met dis-unsp +C0269529|T046|PT|636.40|ICD9CM|Illegally induced abortion, complicated by metabolic disorder, unspecified|Illegally induced abortion, complicated by metabolic disorder, unspecified +C0156521|T047|AB|636.41|ICD9CM|Illeg ab w metab dis-inc|Illeg ab w metab dis-inc +C0156521|T047|PT|636.41|ICD9CM|Illegally induced abortion, complicated by metabolic disorder, incomplete|Illegally induced abortion, complicated by metabolic disorder, incomplete +C0156522|T047|AB|636.42|ICD9CM|Illeg ab w met dis-comp|Illeg ab w met dis-comp +C0156522|T047|PT|636.42|ICD9CM|Illegally induced abortion, complicated by metabolic disorder, complete|Illegally induced abortion, complicated by metabolic disorder, complete +C0269531|T046|HT|636.5|ICD9CM|Illegally induced abortion complicated by shock|Illegally induced abortion complicated by shock +C0269531|T046|AB|636.50|ICD9CM|Illeg abort w shock-unsp|Illeg abort w shock-unsp +C0269531|T046|PT|636.50|ICD9CM|Illegally induced abortion, complicated by shock, unspecified|Illegally induced abortion, complicated by shock, unspecified +C0156525|T037|AB|636.51|ICD9CM|Illeg abort w shock-inc|Illeg abort w shock-inc +C0156525|T037|PT|636.51|ICD9CM|Illegally induced abortion, complicated by shock, incomplete|Illegally induced abortion, complicated by shock, incomplete +C0156526|T037|AB|636.52|ICD9CM|Illeg abort w shock-comp|Illeg abort w shock-comp +C0156526|T037|PT|636.52|ICD9CM|Illegally induced abortion, complicated by shock, complete|Illegally induced abortion, complicated by shock, complete +C0269534|T046|HT|636.6|ICD9CM|Illegally induced abortion complicated by embolism|Illegally induced abortion complicated by embolism +C0269534|T046|AB|636.60|ICD9CM|Illeg ab w embolism-unsp|Illeg ab w embolism-unsp +C0269534|T046|PT|636.60|ICD9CM|Illegally induced abortion, complicated by embolism, unspecified|Illegally induced abortion, complicated by embolism, unspecified +C0156529|T037|AB|636.61|ICD9CM|Illeg ab w embolism-inc|Illeg ab w embolism-inc +C0156529|T037|PT|636.61|ICD9CM|Illegally induced abortion, complicated by embolism, incomplete|Illegally induced abortion, complicated by embolism, incomplete +C0156530|T037|AB|636.62|ICD9CM|Illeg ab w embolism-comp|Illeg ab w embolism-comp +C0156530|T037|PT|636.62|ICD9CM|Illegally induced abortion, complicated by embolism, complete|Illegally induced abortion, complicated by embolism, complete +C0156532|T046|HT|636.7|ICD9CM|Illegally induced abortion with other specified complications|Illegally induced abortion with other specified complications +C0156532|T046|PT|636.70|ICD9CM|Illegally induced abortion, with other specified complications, unspecified|Illegally induced abortion, with other specified complications, unspecified +C0156532|T046|AB|636.70|ICD9CM|Illg ab w compl NEC-unsp|Illg ab w compl NEC-unsp +C0156533|T046|AB|636.71|ICD9CM|Illeg ab w compl NEC-inc|Illeg ab w compl NEC-inc +C0156533|T046|PT|636.71|ICD9CM|Illegally induced abortion, with other specified complications, incomplete|Illegally induced abortion, with other specified complications, incomplete +C0156534|T046|PT|636.72|ICD9CM|Illegally induced abortion, with other specified complications, complete|Illegally induced abortion, with other specified complications, complete +C0156534|T046|AB|636.72|ICD9CM|Illg ab w compl NEC-comp|Illg ab w compl NEC-comp +C0269496|T046|HT|636.8|ICD9CM|Illegally induced abortion with unspecified complication|Illegally induced abortion with unspecified complication +C0269496|T046|PT|636.80|ICD9CM|Illegally induced abortion, with unspecified complication, unspecified|Illegally induced abortion, with unspecified complication, unspecified +C0269496|T046|AB|636.80|ICD9CM|Illg ab w compl NOS-unsp|Illg ab w compl NOS-unsp +C0156537|T037|AB|636.81|ICD9CM|Illeg ab w compl NOS-inc|Illeg ab w compl NOS-inc +C0156537|T037|PT|636.81|ICD9CM|Illegally induced abortion, with unspecified complication, incomplete|Illegally induced abortion, with unspecified complication, incomplete +C0156538|T037|PT|636.82|ICD9CM|Illegally induced abortion, with unspecified complication, complete|Illegally induced abortion, with unspecified complication, complete +C0156538|T037|AB|636.82|ICD9CM|Illg ab w compl NOS-comp|Illg ab w compl NOS-comp +C0260335|T046|HT|636.9|ICD9CM|Illegally induced abortion without mention of complication|Illegally induced abortion without mention of complication +C0260335|T046|AB|636.90|ICD9CM|Illeg abort uncompl-unsp|Illeg abort uncompl-unsp +C0260335|T046|PT|636.90|ICD9CM|Illegally induced abortion, without mention of complication, unspecified|Illegally induced abortion, without mention of complication, unspecified +C0156541|T037|AB|636.91|ICD9CM|Illeg abort uncompl-inc|Illeg abort uncompl-inc +C0156541|T037|PT|636.91|ICD9CM|Illegally induced abortion, without mention of complication, incomplete|Illegally induced abortion, without mention of complication, incomplete +C0156542|T046|AB|636.92|ICD9CM|Illeg abort uncompl-comp|Illeg abort uncompl-comp +C0156542|T046|PT|636.92|ICD9CM|Illegally induced abortion, without mention of complication, complete|Illegally induced abortion, without mention of complication, complete +C0156543|T033|HT|637|ICD9CM|Unspecified abortion|Unspecified abortion +C0156545|T046|HT|637.0|ICD9CM|Unspecified abortion complicated by genital tract and pelvic infection|Unspecified abortion complicated by genital tract and pelvic infection +C0156545|T046|AB|637.00|ICD9CM|Abort NOS w pel inf-unsp|Abort NOS w pel inf-unsp +C0156545|T046|PT|637.00|ICD9CM|Unspecified abortion, complicated by genital tract and pelvic infection, unspecified|Unspecified abortion, complicated by genital tract and pelvic infection, unspecified +C0156546|T047|AB|637.01|ICD9CM|Abort NOS w pel inf-inc|Abort NOS w pel inf-inc +C0156546|T047|PT|637.01|ICD9CM|Unspecified abortion, complicated by genital tract and pelvic infection, incomplete|Unspecified abortion, complicated by genital tract and pelvic infection, incomplete +C0156547|T037|AB|637.02|ICD9CM|Abort NOS w pel inf-comp|Abort NOS w pel inf-comp +C0156547|T037|PT|637.02|ICD9CM|Unspecified abortion, complicated by genital tract and pelvic infection, complete|Unspecified abortion, complicated by genital tract and pelvic infection, complete +C0156548|T033|HT|637.1|ICD9CM|Unspecified abortion complicated by delayed or excessive hemorrhage|Unspecified abortion complicated by delayed or excessive hemorrhage +C0156548|T033|AB|637.10|ICD9CM|Abort NOS w hemorr-unsp|Abort NOS w hemorr-unsp +C0156548|T033|PT|637.10|ICD9CM|Unspecified abortion, complicated by delayed or excessive hemorrhage, unspecified|Unspecified abortion, complicated by delayed or excessive hemorrhage, unspecified +C0156550|T046|AB|637.11|ICD9CM|Abort NOS w hemorr-inc|Abort NOS w hemorr-inc +C0156550|T046|PT|637.11|ICD9CM|Unspecified abortion, complicated by delayed or excessive hemorrhage, incomplete|Unspecified abortion, complicated by delayed or excessive hemorrhage, incomplete +C0156551|T037|AB|637.12|ICD9CM|Abort NOS w hemorr-comp|Abort NOS w hemorr-comp +C0156551|T037|PT|637.12|ICD9CM|Unspecified abortion, complicated by delayed or excessive hemorrhage, complete|Unspecified abortion, complicated by delayed or excessive hemorrhage, complete +C1263817|T037|HT|637.2|ICD9CM|Unspecified abortion complicated by damage to pelvic organs or tissues|Unspecified abortion complicated by damage to pelvic organs or tissues +C1263817|T037|AB|637.20|ICD9CM|Ab NOS w pelv damag-unsp|Ab NOS w pelv damag-unsp +C1263817|T037|PT|637.20|ICD9CM|Unspecified abortion, complicated by damage to pelvic organs or tissues, unspecified|Unspecified abortion, complicated by damage to pelvic organs or tissues, unspecified +C0156554|T037|AB|637.21|ICD9CM|Ab NOS w pelv damag-inc|Ab NOS w pelv damag-inc +C0156554|T037|PT|637.21|ICD9CM|Unspecified abortion, complicated by damage to pelvic organs or tissues, incomplete|Unspecified abortion, complicated by damage to pelvic organs or tissues, incomplete +C0156555|T037|AB|637.22|ICD9CM|Ab NOS w pelv damag-comp|Ab NOS w pelv damag-comp +C0156555|T037|PT|637.22|ICD9CM|Unspecified abortion, complicated by damage to pelvic organs or tissues, complete|Unspecified abortion, complicated by damage to pelvic organs or tissues, complete +C0156556|T046|HT|637.3|ICD9CM|Unspecified abortion complicated by renal failure|Unspecified abortion complicated by renal failure +C0156556|T046|AB|637.30|ICD9CM|Ab NOS w renal fail-unsp|Ab NOS w renal fail-unsp +C0156556|T046|PT|637.30|ICD9CM|Unspecified abortion, complicated by renal failure, unspecified|Unspecified abortion, complicated by renal failure, unspecified +C0156558|T037|AB|637.31|ICD9CM|Ab NOS w renal fail-inc|Ab NOS w renal fail-inc +C0156558|T037|PT|637.31|ICD9CM|Unspecified abortion, complicated by renal failure, incomplete|Unspecified abortion, complicated by renal failure, incomplete +C0156559|T037|AB|637.32|ICD9CM|Ab NOS w renal fail-comp|Ab NOS w renal fail-comp +C0156559|T037|PT|637.32|ICD9CM|Unspecified abortion, complicated by renal failure, complete|Unspecified abortion, complicated by renal failure, complete +C0156560|T047|HT|637.4|ICD9CM|Unspecified abortion complicated by metabolic disorder|Unspecified abortion complicated by metabolic disorder +C0156561|T037|AB|637.40|ICD9CM|Ab NOS w metab dis-unsp|Ab NOS w metab dis-unsp +C0156561|T037|PT|637.40|ICD9CM|Unspecified abortion, complicated by metabolic disorder, unspecified|Unspecified abortion, complicated by metabolic disorder, unspecified +C0156562|T037|AB|637.41|ICD9CM|Ab NOS w metab dis-inc|Ab NOS w metab dis-inc +C0156562|T037|PT|637.41|ICD9CM|Unspecified abortion, complicated by metabolic disorder, incomplete|Unspecified abortion, complicated by metabolic disorder, incomplete +C0156563|T037|AB|637.42|ICD9CM|Ab NOS w metab dis-comp|Ab NOS w metab dis-comp +C0156563|T037|PT|637.42|ICD9CM|Unspecified abortion, complicated by metabolic disorder, complete|Unspecified abortion, complicated by metabolic disorder, complete +C0156564|T046|HT|637.5|ICD9CM|Unspecified abortion complicated by shock|Unspecified abortion complicated by shock +C0156564|T046|AB|637.50|ICD9CM|Abort NOS w shock-unsp|Abort NOS w shock-unsp +C0156564|T046|PT|637.50|ICD9CM|Unspecified abortion, complicated by shock, unspecified|Unspecified abortion, complicated by shock, unspecified +C0156566|T037|AB|637.51|ICD9CM|Abort NOS w shock-inc|Abort NOS w shock-inc +C0156566|T037|PT|637.51|ICD9CM|Unspecified abortion, complicated by shock, incomplete|Unspecified abortion, complicated by shock, incomplete +C0156567|T037|AB|637.52|ICD9CM|Abort NOS w shock-comp|Abort NOS w shock-comp +C0156567|T037|PT|637.52|ICD9CM|Unspecified abortion, complicated by shock, complete|Unspecified abortion, complicated by shock, complete +C0156568|T047|HT|637.6|ICD9CM|Unspecified abortion complicated by embolism|Unspecified abortion complicated by embolism +C0156568|T047|AB|637.60|ICD9CM|Ab NOS w embolism-unsp|Ab NOS w embolism-unsp +C0156568|T047|PT|637.60|ICD9CM|Unspecified abortion, complicated by embolism, unspecified|Unspecified abortion, complicated by embolism, unspecified +C0156570|T047|AB|637.61|ICD9CM|Ab NOS w embolism-inc|Ab NOS w embolism-inc +C0156570|T047|PT|637.61|ICD9CM|Unspecified abortion, complicated by embolism, incomplete|Unspecified abortion, complicated by embolism, incomplete +C0156571|T037|AB|637.62|ICD9CM|Ab NOS w embolism-comp|Ab NOS w embolism-comp +C0156571|T037|PT|637.62|ICD9CM|Unspecified abortion, complicated by embolism, complete|Unspecified abortion, complicated by embolism, complete +C0156572|T046|HT|637.7|ICD9CM|Unspecified abortion with other specified complications|Unspecified abortion with other specified complications +C0156573|T037|AB|637.70|ICD9CM|Ab NOS w compl NEC-unsp|Ab NOS w compl NEC-unsp +C0156573|T037|PT|637.70|ICD9CM|Unspecified abortion, with other specified complications, unspecified|Unspecified abortion, with other specified complications, unspecified +C0156574|T046|AB|637.71|ICD9CM|Ab NOS w compl NEC-inc|Ab NOS w compl NEC-inc +C0156574|T046|PT|637.71|ICD9CM|Unspecified abortion, with other specified complications, incomplete|Unspecified abortion, with other specified complications, incomplete +C0156575|T046|AB|637.72|ICD9CM|Ab NOS w compl NEC-comp|Ab NOS w compl NEC-comp +C0156575|T046|PT|637.72|ICD9CM|Unspecified abortion, with other specified complications, complete|Unspecified abortion, with other specified complications, complete +C1299558|T046|HT|637.8|ICD9CM|Unspecified abortion with unspecified complication|Unspecified abortion with unspecified complication +C1299558|T046|AB|637.80|ICD9CM|Ab NOS w compl NOS-unsp|Ab NOS w compl NOS-unsp +C1299558|T046|PT|637.80|ICD9CM|Unspecified abortion, with unspecified complication, unspecified|Unspecified abortion, with unspecified complication, unspecified +C0156578|T046|AB|637.81|ICD9CM|Ab NOS w compl NOS-inc|Ab NOS w compl NOS-inc +C0156578|T046|PT|637.81|ICD9CM|Unspecified abortion, with unspecified complication, incomplete|Unspecified abortion, with unspecified complication, incomplete +C0156579|T046|AB|637.82|ICD9CM|Ab NOS w compl NOS-comp|Ab NOS w compl NOS-comp +C0156579|T046|PT|637.82|ICD9CM|Unspecified abortion, with unspecified complication, complete|Unspecified abortion, with unspecified complication, complete +C0156580|T046|HT|637.9|ICD9CM|Unspecified abortion without mention of complication|Unspecified abortion without mention of complication +C0156580|T046|AB|637.90|ICD9CM|Ab NOS uncomplicat-unsp|Ab NOS uncomplicat-unsp +C0156580|T046|PT|637.90|ICD9CM|Unspecified abortion, without mention of complication, unspecified|Unspecified abortion, without mention of complication, unspecified +C0156581|T037|AB|637.91|ICD9CM|Ab NOS uncomplicat-inc|Ab NOS uncomplicat-inc +C0156581|T037|PT|637.91|ICD9CM|Unspecified abortion, without mention of complication, incomplete|Unspecified abortion, without mention of complication, incomplete +C0156582|T037|AB|637.92|ICD9CM|Ab NOS uncomplicat-comp|Ab NOS uncomplicat-comp +C0156582|T037|PT|637.92|ICD9CM|Unspecified abortion, without mention of complication, complete|Unspecified abortion, without mention of complication, complete +C0392536|T046|HT|638|ICD9CM|Failed attempted abortion|Failed attempted abortion +C0156584|T037|AB|638.0|ICD9CM|Attem abort w pelvic inf|Attem abort w pelvic inf +C0156584|T037|PT|638.0|ICD9CM|Failed attempted abortion complicated by genital tract and pelvic infection|Failed attempted abortion complicated by genital tract and pelvic infection +C0156585|T046|AB|638.1|ICD9CM|Attem abort w hemorrhage|Attem abort w hemorrhage +C0156585|T046|PT|638.1|ICD9CM|Failed attempted abortion complicated by delayed or excessive hemorrhage|Failed attempted abortion complicated by delayed or excessive hemorrhage +C0269561|T037|AB|638.2|ICD9CM|Attem abort w pelv damag|Attem abort w pelv damag +C0269561|T037|PT|638.2|ICD9CM|Failed attempted abortion complicated by damage to pelvic organs or tissues|Failed attempted abortion complicated by damage to pelvic organs or tissues +C0156587|T046|AB|638.3|ICD9CM|Attem abort w renal fail|Attem abort w renal fail +C0156587|T046|PT|638.3|ICD9CM|Failed attempted abortion complicated by renal failure|Failed attempted abortion complicated by renal failure +C0156588|T047|AB|638.4|ICD9CM|Attem abor w metabol dis|Attem abor w metabol dis +C0156588|T047|PT|638.4|ICD9CM|Failed attempted abortion complicated by metabolic disorder|Failed attempted abortion complicated by metabolic disorder +C0156589|T046|AB|638.5|ICD9CM|Attem abortion w shock|Attem abortion w shock +C0156589|T046|PT|638.5|ICD9CM|Failed attempted abortion complicated by shock|Failed attempted abortion complicated by shock +C0156590|T046|AB|638.6|ICD9CM|Attemp abort w embolism|Attemp abort w embolism +C0156590|T046|PT|638.6|ICD9CM|Failed attempted abortion complicated by embolism|Failed attempted abortion complicated by embolism +C0156591|T046|AB|638.7|ICD9CM|Attemp abort w compl NEC|Attemp abort w compl NEC +C0156591|T046|PT|638.7|ICD9CM|Failed attempted abortion with other specified complications|Failed attempted abortion with other specified complications +C0156592|T046|AB|638.8|ICD9CM|Attemp abort w compl NOS|Attemp abort w compl NOS +C0156592|T046|PT|638.8|ICD9CM|Failed attempted abortion with unspecified complication|Failed attempted abortion with unspecified complication +C0269549|T046|AB|638.9|ICD9CM|Attempted abort uncompl|Attempted abort uncompl +C0269549|T046|PT|638.9|ICD9CM|Failed attempted abortion without mention of complication|Failed attempted abortion without mention of complication +C0477810|T046|HT|639|ICD9CM|Complications following abortion or ectopic and molar pregnancies|Complications following abortion or ectopic and molar pregnancies +C0269294|T046|PT|639.0|ICD9CM|Genital tract and pelvic infection following abortion or ectopic and molar pregnancies|Genital tract and pelvic infection following abortion or ectopic and molar pregnancies +C0269294|T046|AB|639.0|ICD9CM|Postabortion gu infect|Postabortion gu infect +C0495168|T046|PT|639.1|ICD9CM|Delayed or excessive hemorrhage following abortion or ectopic and molar pregnancies|Delayed or excessive hemorrhage following abortion or ectopic and molar pregnancies +C0495168|T046|AB|639.1|ICD9CM|Postabortion hemorrhage|Postabortion hemorrhage +C0495173|T037|PT|639.2|ICD9CM|Damage to pelvic organs and tissues following abortion or ectopic and molar pregnancies|Damage to pelvic organs and tissues following abortion or ectopic and molar pregnancies +C0495173|T037|AB|639.2|ICD9CM|Postabort pelvic damage|Postabort pelvic damage +C2712637|T046|PT|639.3|ICD9CM|Kidney failure following abortion and ectopic and molar pregnancies|Kidney failure following abortion and ectopic and molar pregnancies +C2712637|T046|AB|639.3|ICD9CM|Postabort kidney failure|Postabort kidney failure +C0495172|T046|PT|639.4|ICD9CM|Metabolic disorders following abortion or ectopic and molar pregnancies|Metabolic disorders following abortion or ectopic and molar pregnancies +C0495172|T046|AB|639.4|ICD9CM|Postabort metabolic dis|Postabort metabolic dis +C0495170|T046|AB|639.5|ICD9CM|Postabortion shock|Postabortion shock +C0495170|T046|PT|639.5|ICD9CM|Shock following abortion or ectopic and molar pregnancies|Shock following abortion or ectopic and molar pregnancies +C0495169|T046|PT|639.6|ICD9CM|Embolism following abortion or ectopic and molar pregnancies|Embolism following abortion or ectopic and molar pregnancies +C0495169|T046|AB|639.6|ICD9CM|Postabortion embolism|Postabortion embolism +C0156602|T047|PT|639.8|ICD9CM|Other specified complications following abortion or ectopic and molar pregnancy|Other specified complications following abortion or ectopic and molar pregnancy +C0156602|T047|AB|639.8|ICD9CM|Postabortion compl NEC|Postabortion compl NEC +C0477810|T046|AB|639.9|ICD9CM|Postabortion compl NOS|Postabortion compl NOS +C0477810|T046|PT|639.9|ICD9CM|Unspecified complication following abortion or ectopic and molar pregnancy|Unspecified complication following abortion or ectopic and molar pregnancy +C0156604|T046|HT|640|ICD9CM|Hemorrhage in early pregnancy|Hemorrhage in early pregnancy +C0178295|T046|HT|640-649.99|ICD9CM|COMPLICATIONS MAINLY RELATED TO PREGNANCY|COMPLICATIONS MAINLY RELATED TO PREGNANCY +C0000821|T046|HT|640.0|ICD9CM|Threatened abortion|Threatened abortion +C0156605|T047|AB|640.00|ICD9CM|Threatened abort-unspec|Threatened abort-unspec +C0156605|T047|PT|640.00|ICD9CM|Threatened abortion, unspecified as to episode of care or not applicable|Threatened abortion, unspecified as to episode of care or not applicable +C0156606|T046|AB|640.01|ICD9CM|Threatened abort-deliver|Threatened abort-deliver +C0156606|T046|PT|640.01|ICD9CM|Threatened abortion, delivered, with or without mention of antepartum condition|Threatened abortion, delivered, with or without mention of antepartum condition +C0000821|T046|AB|640.03|ICD9CM|Threaten abort-antepart|Threaten abort-antepart +C0000821|T046|PT|640.03|ICD9CM|Threatened abortion, antepartum condition or complication|Threatened abortion, antepartum condition or complication +C0156608|T046|HT|640.8|ICD9CM|Other specified hemorrhage in early pregnancy|Other specified hemorrhage in early pregnancy +C0156609|T046|AB|640.80|ICD9CM|Hem early preg NEC-unsp|Hem early preg NEC-unsp +C0156609|T046|PT|640.80|ICD9CM|Other specified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable|Other specified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable +C0156610|T047|AB|640.81|ICD9CM|Hem early preg NEC-deliv|Hem early preg NEC-deliv +C0269607|T046|AB|640.83|ICD9CM|Hem early pg NEC-antepar|Hem early pg NEC-antepar +C0269607|T046|PT|640.83|ICD9CM|Other specified hemorrhage in early pregnancy, antepartum condition or complication|Other specified hemorrhage in early pregnancy, antepartum condition or complication +C0156604|T046|HT|640.9|ICD9CM|Unspecified hemorrhage in early pregnancy|Unspecified hemorrhage in early pregnancy +C0156613|T046|AB|640.90|ICD9CM|Hemorr early preg-unspec|Hemorr early preg-unspec +C0156613|T046|PT|640.90|ICD9CM|Unspecified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable|Unspecified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable +C0156614|T047|AB|640.91|ICD9CM|Hem early preg-delivered|Hem early preg-delivered +C0269599|T046|AB|640.93|ICD9CM|Hem early preg-antepart|Hem early preg-antepart +C0269599|T046|PT|640.93|ICD9CM|Unspecified hemorrhage in early pregnancy, antepartum condition or complication|Unspecified hemorrhage in early pregnancy, antepartum condition or complication +C0156616|T046|HT|641|ICD9CM|Antepartum hemorrhage, abruptio placentae, and placenta previa|Antepartum hemorrhage, abruptio placentae, and placenta previa +C0156617|T046|HT|641.0|ICD9CM|Placenta previa without hemorrhage|Placenta previa without hemorrhage +C0156618|T047|PT|641.00|ICD9CM|Placenta previa without hemorrhage, unspecified as to episode of care or not applicable|Placenta previa without hemorrhage, unspecified as to episode of care or not applicable +C0156618|T047|AB|641.00|ICD9CM|Placenta previa-unspec|Placenta previa-unspec +C0156619|T047|PT|641.01|ICD9CM|Placenta previa without hemorrhage, delivered, with or without mention of antepartum condition|Placenta previa without hemorrhage, delivered, with or without mention of antepartum condition +C0156619|T047|AB|641.01|ICD9CM|Placenta previa-deliver|Placenta previa-deliver +C0156620|T047|PT|641.03|ICD9CM|Placenta previa without hemorrhage, antepartum condition or complication|Placenta previa without hemorrhage, antepartum condition or complication +C0156620|T047|AB|641.03|ICD9CM|Placenta previa-antepart|Placenta previa-antepart +C0156621|T046|HT|641.1|ICD9CM|Hemorrhage from placenta previa|Hemorrhage from placenta previa +C0156621|T046|PT|641.10|ICD9CM|Hemorrhage from placenta previa, unspecified as to episode of care or not applicable|Hemorrhage from placenta previa, unspecified as to episode of care or not applicable +C0156621|T046|AB|641.10|ICD9CM|Placenta prev hem-unspec|Placenta prev hem-unspec +C0156623|T047|PT|641.11|ICD9CM|Hemorrhage from placenta previa, delivered, with or without mention of antepartum condition|Hemorrhage from placenta previa, delivered, with or without mention of antepartum condition +C0156623|T047|AB|641.11|ICD9CM|Placenta prev hem-deliv|Placenta prev hem-deliv +C0156624|T047|PT|641.13|ICD9CM|Hemorrhage from placenta previa, antepartum condition or complication|Hemorrhage from placenta previa, antepartum condition or complication +C0156624|T047|AB|641.13|ICD9CM|Placen prev hem-antepart|Placen prev hem-antepart +C0000832|T046|HT|641.2|ICD9CM|Premature separation of placenta|Premature separation of placenta +C0000832|T046|AB|641.20|ICD9CM|Prem separ placen-unspec|Prem separ placen-unspec +C0000832|T046|PT|641.20|ICD9CM|Premature separation of placenta, unspecified as to episode of care or not applicable|Premature separation of placenta, unspecified as to episode of care or not applicable +C0156626|T047|AB|641.21|ICD9CM|Prem separ placen-deliv|Prem separ placen-deliv +C0156626|T047|PT|641.21|ICD9CM|Premature separation of placenta, delivered, with or without mention of antepartum condition|Premature separation of placenta, delivered, with or without mention of antepartum condition +C0156627|T047|AB|641.23|ICD9CM|Prem separ plac-antepart|Prem separ plac-antepart +C0156627|T047|PT|641.23|ICD9CM|Premature separation of placenta, antepartum condition or complication|Premature separation of placenta, antepartum condition or complication +C0156631|T046|HT|641.3|ICD9CM|Antepartum hemorrhage associated with coagulation defects|Antepartum hemorrhage associated with coagulation defects +C0156629|T047|AB|641.30|ICD9CM|Coag def hemorr-unspec|Coag def hemorr-unspec +C0156630|T047|AB|641.31|ICD9CM|Coag def hemorr-deliver|Coag def hemorr-deliver +C0156631|T046|PT|641.33|ICD9CM|Antepartum hemorrhage associated with coagulation defects, antepartum condition or complication|Antepartum hemorrhage associated with coagulation defects, antepartum condition or complication +C0156631|T046|AB|641.33|ICD9CM|Coag def hemorr-antepart|Coag def hemorr-antepart +C0156635|T046|HT|641.8|ICD9CM|Other antepartum hemorrhage|Other antepartum hemorrhage +C0156633|T046|AB|641.80|ICD9CM|Antepart hem NEC-unspec|Antepart hem NEC-unspec +C0156633|T046|PT|641.80|ICD9CM|Other antepartum hemorrhage, unspecified as to episode of care or not applicable|Other antepartum hemorrhage, unspecified as to episode of care or not applicable +C0156634|T047|AB|641.81|ICD9CM|Antepartum hem NEC-deliv|Antepartum hem NEC-deliv +C0156634|T047|PT|641.81|ICD9CM|Other antepartum hemorrhage, delivered, with or without mention of antepartum condition|Other antepartum hemorrhage, delivered, with or without mention of antepartum condition +C0156635|T046|AB|641.83|ICD9CM|Antepart hem NEC-antepar|Antepart hem NEC-antepar +C0156635|T046|PT|641.83|ICD9CM|Other antepartum hemorrhage, antepartum condition or complication|Other antepartum hemorrhage, antepartum condition or complication +C0269608|T046|HT|641.9|ICD9CM|Unspecified antepartum hemorrhage|Unspecified antepartum hemorrhage +C0156637|T046|AB|641.90|ICD9CM|Antepart hem NOS-unspec|Antepart hem NOS-unspec +C0156637|T046|PT|641.90|ICD9CM|Unspecified antepartum hemorrhage, unspecified as to episode of care or not applicable|Unspecified antepartum hemorrhage, unspecified as to episode of care or not applicable +C0156638|T047|AB|641.91|ICD9CM|Antepartum hem NOS-deliv|Antepartum hem NOS-deliv +C0156638|T047|PT|641.91|ICD9CM|Unspecified antepartum hemorrhage, delivered, with or without mention of antepartum condition|Unspecified antepartum hemorrhage, delivered, with or without mention of antepartum condition +C0269608|T046|AB|641.93|ICD9CM|Antepart hem NOS-antepar|Antepart hem NOS-antepar +C0269608|T046|PT|641.93|ICD9CM|Unspecified antepartum hemorrhage, antepartum condition or complication|Unspecified antepartum hemorrhage, antepartum condition or complication +C0341909|T047|HT|642|ICD9CM|Hypertension complicating pregnancy, childbirth, and the puerperium|Hypertension complicating pregnancy, childbirth, and the puerperium +C0341930|T047|HT|642.0|ICD9CM|Benign essential hypertension complicating pregnancy, childbirth, and the puerperium|Benign essential hypertension complicating pregnancy, childbirth, and the puerperium +C0156642|T047|AB|642.00|ICD9CM|Essen hyperten preg-unsp|Essen hyperten preg-unsp +C0156643|T047|AB|642.01|ICD9CM|Essen hyperten-delivered|Essen hyperten-delivered +C0156644|T047|AB|642.02|ICD9CM|Essen hyperten-del w p/p|Essen hyperten-del w p/p +C0156645|T047|AB|642.03|ICD9CM|Essen hyperten-antepart|Essen hyperten-antepart +C0156646|T047|AB|642.04|ICD9CM|Essen hyperten-postpart|Essen hyperten-postpart +C0156647|T047|HT|642.1|ICD9CM|Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium|Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium +C0156648|T047|AB|642.10|ICD9CM|Renal hyperten preg-unsp|Renal hyperten preg-unsp +C0156649|T047|AB|642.11|ICD9CM|Renal hyperten pg-deliv|Renal hyperten pg-deliv +C0156650|T047|AB|642.12|ICD9CM|Renal hyperten-del p/p|Renal hyperten-del p/p +C0156651|T047|AB|642.13|ICD9CM|Renal hyperten-antepart|Renal hyperten-antepart +C0156652|T047|AB|642.14|ICD9CM|Renal hyperten-postpart|Renal hyperten-postpart +C0156653|T047|HT|642.2|ICD9CM|Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium|Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium +C0156654|T047|AB|642.20|ICD9CM|Old hyperten preg-unspec|Old hyperten preg-unspec +C0156655|T047|AB|642.21|ICD9CM|Old hyperten NEC-deliver|Old hyperten NEC-deliver +C0156656|T047|AB|642.22|ICD9CM|Old hyperten-deliv w p/p|Old hyperten-deliv w p/p +C0156657|T047|AB|642.23|ICD9CM|Old hyperten NEC-antepar|Old hyperten NEC-antepar +C0156658|T047|AB|642.24|ICD9CM|Old hyperten NEC-postpar|Old hyperten NEC-postpar +C0341934|T046|HT|642.3|ICD9CM|Transient hypertension of pregnancy|Transient hypertension of pregnancy +C0156659|T047|AB|642.30|ICD9CM|Trans hyperten preg-unsp|Trans hyperten preg-unsp +C0156659|T047|PT|642.30|ICD9CM|Transient hypertension of pregnancy, unspecified as to episode of care or not applicable|Transient hypertension of pregnancy, unspecified as to episode of care or not applicable +C0156660|T047|AB|642.31|ICD9CM|Trans hyperten-delivered|Trans hyperten-delivered +C0156660|T047|PT|642.31|ICD9CM|Transient hypertension of pregnancy, delivered , with or without mention of antepartum condition|Transient hypertension of pregnancy, delivered , with or without mention of antepartum condition +C0156661|T047|AB|642.32|ICD9CM|Trans hyperten-del w p/p|Trans hyperten-del w p/p +C0156661|T047|PT|642.32|ICD9CM|Transient hypertension of pregnancy, delivered, with mention of postpartum complication|Transient hypertension of pregnancy, delivered, with mention of postpartum complication +C0156662|T047|AB|642.33|ICD9CM|Trans hyperten-antepart|Trans hyperten-antepart +C0156662|T047|PT|642.33|ICD9CM|Transient hypertension of pregnancy, antepartum condition or complication|Transient hypertension of pregnancy, antepartum condition or complication +C0156663|T047|AB|642.34|ICD9CM|Trans hyperten-postpart|Trans hyperten-postpart +C0156663|T047|PT|642.34|ICD9CM|Transient hypertension of pregnancy, postpartum condition or complication|Transient hypertension of pregnancy, postpartum condition or complication +C0269658|T046|HT|642.4|ICD9CM|Mild or unspecified pre-eclampsia|Mild or unspecified pre-eclampsia +C0156664|T047|PT|642.40|ICD9CM|Mild or unspecified pre-eclampsia, unspecified as to episode of care or not applicable|Mild or unspecified pre-eclampsia, unspecified as to episode of care or not applicable +C0156664|T047|AB|642.40|ICD9CM|Mild/NOS preeclamp-unsp|Mild/NOS preeclamp-unsp +C0156665|T047|PT|642.41|ICD9CM|Mild or unspecified pre-eclampsia, delivered, with or without mention of antepartum condition|Mild or unspecified pre-eclampsia, delivered, with or without mention of antepartum condition +C0156665|T047|AB|642.41|ICD9CM|Mild/NOS preeclamp-deliv|Mild/NOS preeclamp-deliv +C0156666|T047|PT|642.42|ICD9CM|Mild or unspecified pre-eclampsia, delivered, with mention of postpartum complication|Mild or unspecified pre-eclampsia, delivered, with mention of postpartum complication +C0156666|T047|AB|642.42|ICD9CM|Mild preeclamp-del w p/p|Mild preeclamp-del w p/p +C0156667|T047|PT|642.43|ICD9CM|Mild or unspecified pre-eclampsia, antepartum condition or complication|Mild or unspecified pre-eclampsia, antepartum condition or complication +C0156667|T047|AB|642.43|ICD9CM|Mild/NOS preeclamp-antep|Mild/NOS preeclamp-antep +C0156668|T047|PT|642.44|ICD9CM|Mild or unspecified pre-eclampsia, postpartum condition or complication|Mild or unspecified pre-eclampsia, postpartum condition or complication +C0156668|T047|AB|642.44|ICD9CM|Mild/NOS preeclamp-p/p|Mild/NOS preeclamp-p/p +C0341950|T046|HT|642.5|ICD9CM|Severe pre-eclampsia|Severe pre-eclampsia +C0156669|T047|PT|642.50|ICD9CM|Severe pre-eclampsia, unspecified as to episode of care or not applicable|Severe pre-eclampsia, unspecified as to episode of care or not applicable +C0156669|T047|AB|642.50|ICD9CM|Severe preeclamp-unspec|Severe preeclamp-unspec +C0156670|T047|PT|642.51|ICD9CM|Severe pre-eclampsia, delivered, with or without mention of antepartum condition|Severe pre-eclampsia, delivered, with or without mention of antepartum condition +C0156670|T047|AB|642.51|ICD9CM|Severe preeclamp-deliver|Severe preeclamp-deliver +C0156671|T047|AB|642.52|ICD9CM|Sev preeclamp-del w p/p|Sev preeclamp-del w p/p +C0156671|T047|PT|642.52|ICD9CM|Severe pre-eclampsia, delivered, with mention of postpartum complication|Severe pre-eclampsia, delivered, with mention of postpartum complication +C0156672|T047|AB|642.53|ICD9CM|Sev preeclamp-antepartum|Sev preeclamp-antepartum +C0156672|T047|PT|642.53|ICD9CM|Severe pre-eclampsia, antepartum condition or complication|Severe pre-eclampsia, antepartum condition or complication +C0156673|T047|AB|642.54|ICD9CM|Sev preeclamp-postpartum|Sev preeclamp-postpartum +C0156673|T047|PT|642.54|ICD9CM|Severe pre-eclampsia, postpartum condition or complication|Severe pre-eclampsia, postpartum condition or complication +C0260338|T047|HT|642.6|ICD9CM|Eclampsia complicating pregnancy, childbirth or the puerperium|Eclampsia complicating pregnancy, childbirth or the puerperium +C0156674|T047|AB|642.60|ICD9CM|Eclampsia-unspecified|Eclampsia-unspecified +C0156674|T047|PT|642.60|ICD9CM|Eclampsia, unspecified as to episode of care or not applicable|Eclampsia, unspecified as to episode of care or not applicable +C0156675|T047|AB|642.61|ICD9CM|Eclampsia-delivered|Eclampsia-delivered +C0156675|T047|PT|642.61|ICD9CM|Eclampsia, delivered, with or without mention of antepartum condition|Eclampsia, delivered, with or without mention of antepartum condition +C0156676|T047|AB|642.62|ICD9CM|Eclampsia-deliv w p/p|Eclampsia-deliv w p/p +C0156676|T047|PT|642.62|ICD9CM|Eclampsia, delivered, with mention of postpartum complication|Eclampsia, delivered, with mention of postpartum complication +C0156677|T046|AB|642.63|ICD9CM|Eclampsia-antepartum|Eclampsia-antepartum +C0156677|T046|PT|642.63|ICD9CM|Eclampsia, antepartum condition or complication|Eclampsia, antepartum condition or complication +C0156678|T047|AB|642.64|ICD9CM|Eclampsia-postpartum|Eclampsia-postpartum +C0156678|T047|PT|642.64|ICD9CM|Eclampsia, postpartum condition or complication|Eclampsia, postpartum condition or complication +C0156679|T047|HT|642.7|ICD9CM|Pre-eclampsia or eclampsia superimposed on pre-existing hypertension|Pre-eclampsia or eclampsia superimposed on pre-existing hypertension +C0156680|T047|AB|642.70|ICD9CM|Tox w old hyperten-unsp|Tox w old hyperten-unsp +C0156681|T047|AB|642.71|ICD9CM|Tox w old hyperten-deliv|Tox w old hyperten-deliv +C0156682|T047|AB|642.72|ICD9CM|Tox w old hyp-del w p/p|Tox w old hyp-del w p/p +C0156683|T047|AB|642.73|ICD9CM|Tox w old hyper-antepart|Tox w old hyper-antepart +C0156684|T047|AB|642.74|ICD9CM|Tox w old hyper-postpart|Tox w old hyper-postpart +C1261262|T047|HT|642.9|ICD9CM|Unspecified hypertension complicating pregnancy, childbirth, or the puerperium|Unspecified hypertension complicating pregnancy, childbirth, or the puerperium +C0156686|T047|AB|642.90|ICD9CM|Hyperten preg NOS-unspec|Hyperten preg NOS-unspec +C0156687|T047|AB|642.91|ICD9CM|Hypertens NOS-delivered|Hypertens NOS-delivered +C0156688|T047|AB|642.92|ICD9CM|Hypertens NOS-del w p/p|Hypertens NOS-del w p/p +C0156689|T047|AB|642.93|ICD9CM|Hypertens NOS-antepartum|Hypertens NOS-antepartum +C0156690|T047|AB|642.94|ICD9CM|Hypertens NOS-postpartum|Hypertens NOS-postpartum +C0020450|T184|HT|643|ICD9CM|Excessive vomiting in pregnancy|Excessive vomiting in pregnancy +C0020451|T047|HT|643.0|ICD9CM|Mild hyperemesis gravidarum|Mild hyperemesis gravidarum +C0156692|T047|AB|643.00|ICD9CM|Mild hyperem grav-unspec|Mild hyperem grav-unspec +C0156692|T047|PT|643.00|ICD9CM|Mild hyperemesis gravidarum, unspecified as to episode of care or not applicable|Mild hyperemesis gravidarum, unspecified as to episode of care or not applicable +C0156693|T047|AB|643.01|ICD9CM|Mild hyperem grav-deliv|Mild hyperem grav-deliv +C0156693|T047|PT|643.01|ICD9CM|Mild hyperemesis gravidarum, delivered, with or without mention of antepartum condition|Mild hyperemesis gravidarum, delivered, with or without mention of antepartum condition +C0156694|T047|PT|643.03|ICD9CM|Mild hyperemesis gravidarum, antepartum condition or complication|Mild hyperemesis gravidarum, antepartum condition or complication +C0156694|T047|AB|643.03|ICD9CM|Mild hyperemesis-antepar|Mild hyperemesis-antepar +C0405080|T047|HT|643.1|ICD9CM|Hyperemesis gravidarum with metabolic disturbance|Hyperemesis gravidarum with metabolic disturbance +C0156696|T047|AB|643.10|ICD9CM|Hyperem w metab dis-unsp|Hyperem w metab dis-unsp +C0156697|T047|AB|643.11|ICD9CM|Hyperem w metab dis-del|Hyperem w metab dis-del +C0156698|T047|AB|643.13|ICD9CM|Hyperem w metab-antepart|Hyperem w metab-antepart +C0156698|T047|PT|643.13|ICD9CM|Hyperemesis gravidarum with metabolic disturbance, antepartum condition or complication|Hyperemesis gravidarum with metabolic disturbance, antepartum condition or complication +C0156699|T046|HT|643.2|ICD9CM|Late vomiting of pregnancy|Late vomiting of pregnancy +C0156700|T047|AB|643.20|ICD9CM|Late vomit of preg-unsp|Late vomit of preg-unsp +C0156700|T047|PT|643.20|ICD9CM|Late vomiting of pregnancy, unspecified as to episode of care or not applicable|Late vomiting of pregnancy, unspecified as to episode of care or not applicable +C0156701|T184|AB|643.21|ICD9CM|Late vomit of preg-deliv|Late vomit of preg-deliv +C0156701|T184|PT|643.21|ICD9CM|Late vomiting of pregnancy, delivered, with or without mention of antepartum condition|Late vomiting of pregnancy, delivered, with or without mention of antepartum condition +C0156702|T047|AB|643.23|ICD9CM|Late vomit preg-antepart|Late vomit preg-antepart +C0156702|T047|PT|643.23|ICD9CM|Late vomiting of pregnancy, antepartum condition or complication|Late vomiting of pregnancy, antepartum condition or complication +C0156703|T184|HT|643.8|ICD9CM|Other vomiting complicating pregnancy|Other vomiting complicating pregnancy +C0156704|T047|PT|643.80|ICD9CM|Other vomiting complicating pregnancy, unspecified as to episode of care or not applicable|Other vomiting complicating pregnancy, unspecified as to episode of care or not applicable +C0156704|T047|AB|643.80|ICD9CM|Vomit compl preg-unspec|Vomit compl preg-unspec +C0156705|T047|PT|643.81|ICD9CM|Other vomiting complicating pregnancy, delivered, with or without mention of antepartum condition|Other vomiting complicating pregnancy, delivered, with or without mention of antepartum condition +C0156705|T047|AB|643.81|ICD9CM|Vomit compl preg-deliver|Vomit compl preg-deliver +C0156706|T047|PT|643.83|ICD9CM|Other vomiting complicating pregnancy, antepartum condition or complication|Other vomiting complicating pregnancy, antepartum condition or complication +C0156706|T047|AB|643.83|ICD9CM|Vomit compl preg-antepar|Vomit compl preg-antepar +C0269661|T046|HT|643.9|ICD9CM|Unspecified vomiting of pregnancy|Unspecified vomiting of pregnancy +C0156708|T047|PT|643.90|ICD9CM|Unspecified vomiting of pregnancy, unspecified as to episode of care or not applicable|Unspecified vomiting of pregnancy, unspecified as to episode of care or not applicable +C0156708|T047|AB|643.90|ICD9CM|Vomit of preg NOS-unspec|Vomit of preg NOS-unspec +C0156709|T184|PT|643.91|ICD9CM|Unspecified vomiting of pregnancy, delivered, with or without mention of antepartum condition|Unspecified vomiting of pregnancy, delivered, with or without mention of antepartum condition +C0156709|T184|AB|643.91|ICD9CM|Vomit of preg NOS-deliv|Vomit of preg NOS-deliv +C0156710|T047|PT|643.93|ICD9CM|Unspecified vomiting of pregnancy, antepartum condition or complication|Unspecified vomiting of pregnancy, antepartum condition or complication +C0156710|T047|AB|643.93|ICD9CM|Vomit of pg NOS-antepart|Vomit of pg NOS-antepart +C0156711|T046|HT|644|ICD9CM|Early or threatened labor|Early or threatened labor +C0473390|T046|HT|644.0|ICD9CM|Threatened premature labor|Threatened premature labor +C0156713|T047|AB|644.00|ICD9CM|Threat prem labor-unspec|Threat prem labor-unspec +C0156713|T047|PT|644.00|ICD9CM|Threatened premature labor, unspecified as to episode of care or not applicable|Threatened premature labor, unspecified as to episode of care or not applicable +C0156714|T047|PT|644.03|ICD9CM|Threatened premature labor, antepartum condition or complication|Threatened premature labor, antepartum condition or complication +C0156714|T047|AB|644.03|ICD9CM|Thrt prem labor-antepart|Thrt prem labor-antepart +C0473388|T046|HT|644.1|ICD9CM|Other threatened labor|Other threatened labor +C0156716|T046|PT|644.10|ICD9CM|Other threatened labor, unspecified as to episode of care or not applicable|Other threatened labor, unspecified as to episode of care or not applicable +C0156716|T046|AB|644.10|ICD9CM|Threat labor NEC-unspec|Threat labor NEC-unspec +C0156717|T047|PT|644.13|ICD9CM|Other threatened labor, antepartum condition or complication|Other threatened labor, antepartum condition or complication +C0156717|T047|AB|644.13|ICD9CM|Threat labor NEC-antepar|Threat labor NEC-antepar +C0151526|T046|HT|644.2|ICD9CM|Early onset of delivery|Early onset of delivery +C0156718|T047|AB|644.20|ICD9CM|Early onset deliv-unspec|Early onset deliv-unspec +C0156718|T047|PT|644.20|ICD9CM|Early onset of delivery, unspecified as to episode of care or not applicable|Early onset of delivery, unspecified as to episode of care or not applicable +C0156719|T047|AB|644.21|ICD9CM|Early onset delivery-del|Early onset delivery-del +C0156719|T047|PT|644.21|ICD9CM|Early onset of delivery, delivered, with or without mention of antepartum condition|Early onset of delivery, delivered, with or without mention of antepartum condition +C0878751|T046|HT|645|ICD9CM|Late pregnancy|Late pregnancy +C0032993|T046|HT|645.1|ICD9CM|Post term pregnancy|Post term pregnancy +C1176343|T047|AB|645.10|ICD9CM|Post term preg-unsp|Post term preg-unsp +C1176343|T047|PT|645.10|ICD9CM|Post term pregnancy, unspecified as to episode of care or not applicable|Post term pregnancy, unspecified as to episode of care or not applicable +C1176344|T047|AB|645.11|ICD9CM|Post term preg-del|Post term preg-del +C1176344|T047|PT|645.11|ICD9CM|Post term pregnancy, delivered, with or without mention of antepartum condition|Post term pregnancy, delivered, with or without mention of antepartum condition +C1176345|T047|AB|645.13|ICD9CM|Post term preg-antepar|Post term preg-antepar +C1176345|T047|PT|645.13|ICD9CM|Post term pregnancy, antepartum condition or complication|Post term pregnancy, antepartum condition or complication +C0032993|T046|HT|645.2|ICD9CM|Prolonged pregnancy|Prolonged pregnancy +C1176346|T047|AB|645.20|ICD9CM|Prolonged preg-unsp|Prolonged preg-unsp +C1176346|T047|PT|645.20|ICD9CM|Prolonged pregnancy, unspecified as to episode of care or not applicable|Prolonged pregnancy, unspecified as to episode of care or not applicable +C1176347|T047|AB|645.21|ICD9CM|Prolonged preg-del|Prolonged preg-del +C1176347|T047|PT|645.21|ICD9CM|Prolonged pregnancy, delivered, with or without mention of antepartum condition|Prolonged pregnancy, delivered, with or without mention of antepartum condition +C1176348|T047|AB|645.23|ICD9CM|Prolonged preg-antepar|Prolonged preg-antepar +C1176348|T047|PT|645.23|ICD9CM|Prolonged pregnancy, antepartum condition or complication|Prolonged pregnancy, antepartum condition or complication +C0869265|T046|HT|646|ICD9CM|Other complications of pregnancy, not elsewhere classified|Other complications of pregnancy, not elsewhere classified +C0156724|T019|HT|646.0|ICD9CM|Papyraceous fetus|Papyraceous fetus +C0156725|T047|AB|646.00|ICD9CM|Papyraceous fetus-unspec|Papyraceous fetus-unspec +C0156725|T047|PT|646.00|ICD9CM|Papyraceous fetus, unspecified as to episode of care or not applicable|Papyraceous fetus, unspecified as to episode of care or not applicable +C0156726|T047|AB|646.01|ICD9CM|Papyraceous fetus-deliv|Papyraceous fetus-deliv +C0156726|T047|PT|646.01|ICD9CM|Papyraceous fetus, delivered, with or without mention of antepartum condition|Papyraceous fetus, delivered, with or without mention of antepartum condition +C0156727|T047|AB|646.03|ICD9CM|Papyraceous fet-antepar|Papyraceous fet-antepar +C0156727|T047|PT|646.03|ICD9CM|Papyraceous fetus, antepartum condition or complication|Papyraceous fetus, antepartum condition or complication +C0156728|T046|HT|646.1|ICD9CM|Edema or excessive weight gain in pregnancy, without mention of hypertension|Edema or excessive weight gain in pregnancy, without mention of hypertension +C0156729|T047|AB|646.10|ICD9CM|Edema in preg-unspec|Edema in preg-unspec +C0156730|T047|AB|646.11|ICD9CM|Edema in preg-delivered|Edema in preg-delivered +C0473384|T184|AB|646.12|ICD9CM|Edema in preg-del w p/p|Edema in preg-del w p/p +C0815336|T184|AB|646.13|ICD9CM|Edema in preg-antepartum|Edema in preg-antepartum +C0156733|T047|AB|646.14|ICD9CM|Edema in preg-postpartum|Edema in preg-postpartum +C0269673|T047|HT|646.2|ICD9CM|Unspecified renal disease in pregnancy, without mention of hypertension|Unspecified renal disease in pregnancy, without mention of hypertension +C0156738|T047|AB|646.20|ICD9CM|Renal dis preg NOS-unsp|Renal dis preg NOS-unsp +C0156736|T047|AB|646.21|ICD9CM|Renal dis NOS-delivered|Renal dis NOS-delivered +C0156737|T047|AB|646.22|ICD9CM|Renal dis NOS-del w p/p|Renal dis NOS-del w p/p +C0156738|T047|AB|646.23|ICD9CM|Renal dis NOS-antepartum|Renal dis NOS-antepartum +C0156739|T047|AB|646.24|ICD9CM|Renal dis NOS-postpartum|Renal dis NOS-postpartum +C2921106|T046|HT|646.3|ICD9CM|Recurrent pregnancy loss|Recurrent pregnancy loss +C0156741|T047|AB|646.30|ICD9CM|Recur preg loss-unspec|Recur preg loss-unspec +C0156741|T047|PT|646.30|ICD9CM|Recurrent pregnancy loss, unspecified as to episode of care or not applicable|Recurrent pregnancy loss, unspecified as to episode of care or not applicable +C0156742|T047|AB|646.31|ICD9CM|Recurnt preg loss-deliv|Recurnt preg loss-deliv +C0156742|T047|PT|646.31|ICD9CM|Recurrent pregnancy loss, delivered, with or without mention of antepartum condition|Recurrent pregnancy loss, delivered, with or without mention of antepartum condition +C0156743|T047|AB|646.33|ICD9CM|Recurnt preg loss-antep|Recurnt preg loss-antep +C0156743|T047|PT|646.33|ICD9CM|Recurrent pregnancy loss, antepartum condition or complication|Recurrent pregnancy loss, antepartum condition or complication +C0405072|T047|HT|646.4|ICD9CM|Peripheral neuritis in pregnancy|Peripheral neuritis in pregnancy +C0156745|T047|AB|646.40|ICD9CM|Neuritis of preg-unspec|Neuritis of preg-unspec +C0156745|T047|PT|646.40|ICD9CM|Peripheral neuritis in pregnancy, unspecified as to episode of care or not applicable|Peripheral neuritis in pregnancy, unspecified as to episode of care or not applicable +C0156746|T047|AB|646.41|ICD9CM|Neuritis-delivered|Neuritis-delivered +C0156746|T047|PT|646.41|ICD9CM|Peripheral neuritis in pregnancy, delivered, with or without mention of antepartum condition|Peripheral neuritis in pregnancy, delivered, with or without mention of antepartum condition +C0156747|T047|AB|646.42|ICD9CM|Neuritis-delivered w p/p|Neuritis-delivered w p/p +C0156747|T047|PT|646.42|ICD9CM|Peripheral neuritis in pregnancy, delivered, with mention of postpartum complication|Peripheral neuritis in pregnancy, delivered, with mention of postpartum complication +C0405072|T047|AB|646.43|ICD9CM|Neuritis of preg-antepar|Neuritis of preg-antepar +C0405072|T047|PT|646.43|ICD9CM|Peripheral neuritis in pregnancy, antepartum condition or complication|Peripheral neuritis in pregnancy, antepartum condition or complication +C0156749|T047|AB|646.44|ICD9CM|Neuritis of preg-postpar|Neuritis of preg-postpar +C0156749|T047|PT|646.44|ICD9CM|Peripheral neuritis in pregnancy, postpartum condition or complication|Peripheral neuritis in pregnancy, postpartum condition or complication +C0156750|T047|HT|646.5|ICD9CM|Asymptomatic bacteriuria in pregnancy|Asymptomatic bacteriuria in pregnancy +C0156750|T047|PT|646.50|ICD9CM|Asymptomatic bacteriuria in pregnancy, unspecified as to episode of care or not applicable|Asymptomatic bacteriuria in pregnancy, unspecified as to episode of care or not applicable +C0156750|T047|AB|646.50|ICD9CM|Bacteriuria preg-unspec|Bacteriuria preg-unspec +C0156752|T047|AB|646.51|ICD9CM|Asym bacteriuria-deliver|Asym bacteriuria-deliver +C0156752|T047|PT|646.51|ICD9CM|Asymptomatic bacteriuria in pregnancy, delivered, with or without mention of antepartum condition|Asymptomatic bacteriuria in pregnancy, delivered, with or without mention of antepartum condition +C0156753|T047|AB|646.52|ICD9CM|Asy bacteruria-del w p/p|Asy bacteruria-del w p/p +C0156753|T047|PT|646.52|ICD9CM|Asymptomatic bacteriuria in pregnancy, delivered, with mention of postpartum complication|Asymptomatic bacteriuria in pregnancy, delivered, with mention of postpartum complication +C0156750|T047|AB|646.53|ICD9CM|Asy bacteriuria-antepart|Asy bacteriuria-antepart +C0156750|T047|PT|646.53|ICD9CM|Asymptomatic bacteriuria in pregnancy, antepartum condition or complication|Asymptomatic bacteriuria in pregnancy, antepartum condition or complication +C0156755|T047|AB|646.54|ICD9CM|Asy bacteriuria-postpart|Asy bacteriuria-postpart +C0156755|T047|PT|646.54|ICD9CM|Asymptomatic bacteriuria in pregnancy, postpartum condition or complication|Asymptomatic bacteriuria in pregnancy, postpartum condition or complication +C0156756|T046|HT|646.6|ICD9CM|Infections of genitourinary tract in pregnancy|Infections of genitourinary tract in pregnancy +C0156756|T046|AB|646.60|ICD9CM|Gu infect in preg-unspec|Gu infect in preg-unspec +C0156756|T046|PT|646.60|ICD9CM|Infections of genitourinary tract in pregnancy, unspecified as to episode of care or not applicable|Infections of genitourinary tract in pregnancy, unspecified as to episode of care or not applicable +C0156758|T047|AB|646.61|ICD9CM|Gu infection-delivered|Gu infection-delivered +C0156759|T047|AB|646.62|ICD9CM|Gu infection-deliv w p/p|Gu infection-deliv w p/p +C0156759|T047|PT|646.62|ICD9CM|Infections of genitourinary tract in pregnancy, delivered, with mention of postpartum complication|Infections of genitourinary tract in pregnancy, delivered, with mention of postpartum complication +C0156756|T046|AB|646.63|ICD9CM|Gu infection-antepartum|Gu infection-antepartum +C0156756|T046|PT|646.63|ICD9CM|Infections of genitourinary tract in pregnancy, antepartum condition or complication|Infections of genitourinary tract in pregnancy, antepartum condition or complication +C0156761|T047|AB|646.64|ICD9CM|Gu infection-postpartum|Gu infection-postpartum +C0156761|T047|PT|646.64|ICD9CM|Infections of genitourinary tract in pregnancy, postpartum condition or complication|Infections of genitourinary tract in pregnancy, postpartum condition or complication +C3161439|T047|HT|646.7|ICD9CM|Liver and biliary tract disorders in pregnancy|Liver and biliary tract disorders in pregnancy +C0156762|T046|PT|646.70|ICD9CM|Liver and biliary tract disorders in pregnancy, unspecified as to episode of care or not applicable|Liver and biliary tract disorders in pregnancy, unspecified as to episode of care or not applicable +C0156762|T046|AB|646.70|ICD9CM|Liver/bil trct disr-unsp|Liver/bil trct disr-unsp +C0400932|T047|AB|646.71|ICD9CM|Liver/bil trct disr-del|Liver/bil trct disr-del +C0156762|T046|PT|646.73|ICD9CM|Liver and biliary tract disorders in pregnancy, antepartum condition or complication|Liver and biliary tract disorders in pregnancy, antepartum condition or complication +C0156762|T046|AB|646.73|ICD9CM|Liver/bil trct disr-ante|Liver/bil trct disr-ante +C0156769|T046|HT|646.8|ICD9CM|Other specified complications of pregnancy|Other specified complications of pregnancy +C0156769|T046|PT|646.80|ICD9CM|Other specified complications of pregnancy, unspecified as to episode of care or not applicable|Other specified complications of pregnancy, unspecified as to episode of care or not applicable +C0156769|T046|AB|646.80|ICD9CM|Preg compl NEC-unspec|Preg compl NEC-unspec +C0156767|T047|AB|646.81|ICD9CM|Preg compl NEC-delivered|Preg compl NEC-delivered +C0156768|T047|PT|646.82|ICD9CM|Other specified complications of pregnancy, delivered, with mention of postpartum complication|Other specified complications of pregnancy, delivered, with mention of postpartum complication +C0156768|T047|AB|646.82|ICD9CM|Preg compl NEC-del w p/p|Preg compl NEC-del w p/p +C0156769|T046|PT|646.83|ICD9CM|Other specified complications of pregnancy, antepartum condition or complication|Other specified complications of pregnancy, antepartum condition or complication +C0156769|T046|AB|646.83|ICD9CM|Preg compl NEC-antepart|Preg compl NEC-antepart +C0156770|T046|PT|646.84|ICD9CM|Other specified complications of pregnancy, postpartum condition or complication|Other specified complications of pregnancy, postpartum condition or complication +C0156770|T046|AB|646.84|ICD9CM|Preg compl NEC-postpart|Preg compl NEC-postpart +C0032962|T046|HT|646.9|ICD9CM|Unspecified complication of pregnancy|Unspecified complication of pregnancy +C0156771|T047|AB|646.90|ICD9CM|Preg compl NOS-unspec|Preg compl NOS-unspec +C0156771|T047|PT|646.90|ICD9CM|Unspecified complication of pregnancy, unspecified as to episode of care or not applicable|Unspecified complication of pregnancy, unspecified as to episode of care or not applicable +C0156772|T047|AB|646.91|ICD9CM|Preg compl NOS-delivered|Preg compl NOS-delivered +C0156772|T047|PT|646.91|ICD9CM|Unspecified complication of pregnancy, delivered, with or without mention of antepartum condition|Unspecified complication of pregnancy, delivered, with or without mention of antepartum condition +C0156773|T047|AB|646.93|ICD9CM|Preg compl NOS-antepart|Preg compl NOS-antepart +C0156773|T047|PT|646.93|ICD9CM|Unspecified complication of pregnancy, antepartum condition or complication|Unspecified complication of pregnancy, antepartum condition or complication +C0275820|T047|HT|647.0|ICD9CM|Syphilis complicating pregnancy, childbirth, or the puerperium|Syphilis complicating pregnancy, childbirth, or the puerperium +C0156776|T047|AB|647.00|ICD9CM|Syphilis in preg-unspec|Syphilis in preg-unspec +C0156777|T047|AB|647.01|ICD9CM|Syphilis-delivered|Syphilis-delivered +C0156778|T047|AB|647.02|ICD9CM|Syphilis-delivered w p/p|Syphilis-delivered w p/p +C0747833|T047|AB|647.03|ICD9CM|Syphilis-antepartum|Syphilis-antepartum +C0156780|T047|AB|647.04|ICD9CM|Syphilis-postpartum|Syphilis-postpartum +C0275667|T047|HT|647.1|ICD9CM|Gonorrhea complicating pregnancy, childbirth, or the puerperium|Gonorrhea complicating pregnancy, childbirth, or the puerperium +C0156782|T047|AB|647.10|ICD9CM|Gonorrhea in preg-unspec|Gonorrhea in preg-unspec +C0156783|T047|AB|647.11|ICD9CM|Gonorrhea-delivered|Gonorrhea-delivered +C0156784|T047|AB|647.12|ICD9CM|Gonorrhea-deliver w p/p|Gonorrhea-deliver w p/p +C0747817|T047|AB|647.13|ICD9CM|Gonorrhea-antepartum|Gonorrhea-antepartum +C0473333|T033|AB|647.14|ICD9CM|Gonorrhea-postpartum|Gonorrhea-postpartum +C0495308|T047|HT|647.2|ICD9CM|Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium|Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium +C0156788|T047|AB|647.20|ICD9CM|Other VD in preg-unspec|Other VD in preg-unspec +C0490049|T047|AB|647.21|ICD9CM|Other vd-delivered|Other vd-delivered +C0490050|T047|AB|647.22|ICD9CM|Other vd-delivered w p/p|Other vd-delivered w p/p +C0375389|T047|AB|647.23|ICD9CM|Other vd-antepartum|Other vd-antepartum +C0375390|T047|AB|647.24|ICD9CM|Other vd-postpartum|Other vd-postpartum +C1533626|T046|HT|647.3|ICD9CM|Tuberculosis complicating pregnancy, childbirth, or the puerperium|Tuberculosis complicating pregnancy, childbirth, or the puerperium +C0156794|T047|AB|647.30|ICD9CM|TB in preg-unspecified|TB in preg-unspecified +C0156795|T047|AB|647.31|ICD9CM|Tuberculosis-delivered|Tuberculosis-delivered +C0156796|T047|AB|647.32|ICD9CM|Tuberculosis-deliv w p/p|Tuberculosis-deliv w p/p +C0156797|T047|AB|647.33|ICD9CM|Tuberculosis-antepartum|Tuberculosis-antepartum +C0156798|T047|AB|647.34|ICD9CM|Tuberculosis-postpartum|Tuberculosis-postpartum +C0156799|T047|HT|647.4|ICD9CM|Malaria complicating pregnancy, childbirth, or the puerperium|Malaria complicating pregnancy, childbirth, or the puerperium +C0156800|T047|AB|647.40|ICD9CM|Malaria in preg-unspec|Malaria in preg-unspec +C0156800|T047|PT|647.40|ICD9CM|Malaria in the mother, unspecified as to episode of care or not applicable|Malaria in the mother, unspecified as to episode of care or not applicable +C0156801|T047|PT|647.41|ICD9CM|Malaria in the mother, delivered, with or without mention of antepartum condition|Malaria in the mother, delivered, with or without mention of antepartum condition +C0156801|T047|AB|647.41|ICD9CM|Malaria-delivered|Malaria-delivered +C0156802|T047|PT|647.42|ICD9CM|Malaria in the mother, delivered, with mention of postpartum complication|Malaria in the mother, delivered, with mention of postpartum complication +C0156802|T047|AB|647.42|ICD9CM|Malaria-delivered w p/p|Malaria-delivered w p/p +C0747820|T047|PT|647.43|ICD9CM|Malaria in the mother, antepartum condition or complication|Malaria in the mother, antepartum condition or complication +C0747820|T047|AB|647.43|ICD9CM|Malaria-antepartum|Malaria-antepartum +C0156804|T047|PT|647.44|ICD9CM|Malaria in the mother, postpartum condition or complication|Malaria in the mother, postpartum condition or complication +C0156804|T047|AB|647.44|ICD9CM|Malaria-postpartum|Malaria-postpartum +C0156805|T047|HT|647.5|ICD9CM|Rubella complicating pregnancy, childbirth, or the puerperium|Rubella complicating pregnancy, childbirth, or the puerperium +C0276306|T047|AB|647.50|ICD9CM|Rubella in preg-unspec|Rubella in preg-unspec +C0276306|T047|PT|647.50|ICD9CM|Rubella in the mother, unspecified as to episode of care or not applicable|Rubella in the mother, unspecified as to episode of care or not applicable +C0156807|T047|PT|647.51|ICD9CM|Rubella in the mother, delivered, with or without mention of antepartum condition|Rubella in the mother, delivered, with or without mention of antepartum condition +C0156807|T047|AB|647.51|ICD9CM|Rubella-delivered|Rubella-delivered +C0156808|T047|PT|647.52|ICD9CM|Rubella in the mother, delivered, with mention of postpartum complication|Rubella in the mother, delivered, with mention of postpartum complication +C0156808|T047|AB|647.52|ICD9CM|Rubella-delivered w p/p|Rubella-delivered w p/p +C0156809|T047|PT|647.53|ICD9CM|Rubella in the mother, antepartum condition or complication|Rubella in the mother, antepartum condition or complication +C0156809|T047|AB|647.53|ICD9CM|Rubella-antepartum|Rubella-antepartum +C0156810|T047|PT|647.54|ICD9CM|Rubella in the mother, postpartum condition or complication|Rubella in the mother, postpartum condition or complication +C0156810|T047|AB|647.54|ICD9CM|Rubella-postpartum|Rubella-postpartum +C0477876|T047|HT|647.6|ICD9CM|Other viral diseases complicating pregnancy, childbirth, or the puerperium|Other viral diseases complicating pregnancy, childbirth, or the puerperium +C0156812|T047|AB|647.60|ICD9CM|Oth virus in preg-unspec|Oth virus in preg-unspec +C0156812|T047|PT|647.60|ICD9CM|Other viral diseases in the mother, unspecified as to episode of care or not applicable|Other viral diseases in the mother, unspecified as to episode of care or not applicable +C0156813|T047|AB|647.61|ICD9CM|Oth viral dis-delivered|Oth viral dis-delivered +C0156813|T047|PT|647.61|ICD9CM|Other viral diseases in the mother, delivered, with or without mention of antepartum condition|Other viral diseases in the mother, delivered, with or without mention of antepartum condition +C0156814|T047|AB|647.62|ICD9CM|Oth viral dis-del w p/p|Oth viral dis-del w p/p +C0156814|T047|PT|647.62|ICD9CM|Other viral diseases in the mother, delivered, with mention of postpartum complication|Other viral diseases in the mother, delivered, with mention of postpartum complication +C0156815|T047|AB|647.63|ICD9CM|Oth viral dis-antepartum|Oth viral dis-antepartum +C0156815|T047|PT|647.63|ICD9CM|Other viral diseases in the mother, antepartum condition or complication|Other viral diseases in the mother, antepartum condition or complication +C0156816|T047|AB|647.64|ICD9CM|Oth viral dis-postpartum|Oth viral dis-postpartum +C0156816|T047|PT|647.64|ICD9CM|Other viral diseases in the mother, postpartum condition or complication|Other viral diseases in the mother, postpartum condition or complication +C0156818|T047|AB|647.80|ICD9CM|Inf dis in preg NEC-unsp|Inf dis in preg NEC-unsp +C0156819|T047|AB|647.81|ICD9CM|Infect dis NEC-delivered|Infect dis NEC-delivered +C0156820|T047|AB|647.82|ICD9CM|Infect dis NEC-del w p/p|Infect dis NEC-del w p/p +C0156821|T047|AB|647.83|ICD9CM|Infect dis NEC-antepart|Infect dis NEC-antepart +C0156821|T047|PT|647.83|ICD9CM|Other specified infectious and parasitic diseases of mother, antepartum condition or complication|Other specified infectious and parasitic diseases of mother, antepartum condition or complication +C0156822|T047|AB|647.84|ICD9CM|Infect dis NEC-postpart|Infect dis NEC-postpart +C0156822|T047|PT|647.84|ICD9CM|Other specified infectious and parasitic diseases of mother, postpartum condition or complication|Other specified infectious and parasitic diseases of mother, postpartum condition or complication +C0156823|T047|HT|647.9|ICD9CM|Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium|Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium +C0156824|T047|AB|647.90|ICD9CM|Infect in preg NOS-unsp|Infect in preg NOS-unsp +C0156824|T047|PT|647.90|ICD9CM|Unspecified infection or infestation of mother, unspecified as to episode of care or not applicable|Unspecified infection or infestation of mother, unspecified as to episode of care or not applicable +C0156825|T047|AB|647.91|ICD9CM|Infect NOS-delivered|Infect NOS-delivered +C0156826|T047|AB|647.92|ICD9CM|Infect NOS-deliver w p/p|Infect NOS-deliver w p/p +C0156826|T047|PT|647.92|ICD9CM|Unspecified infection or infestation of mother, delivered, with mention of postpartum complication|Unspecified infection or infestation of mother, delivered, with mention of postpartum complication +C0156827|T047|AB|647.93|ICD9CM|Infect NOS-antepartum|Infect NOS-antepartum +C0156827|T047|PT|647.93|ICD9CM|Unspecified infection or infestation of mother, antepartum condition or complication|Unspecified infection or infestation of mother, antepartum condition or complication +C0156828|T047|AB|647.94|ICD9CM|Infect NOS-postpartum|Infect NOS-postpartum +C0156828|T047|PT|647.94|ICD9CM|Unspecified infection or infestation of mother, postpartum condition or complication|Unspecified infection or infestation of mother, postpartum condition or complication +C0341893|T047|HT|648.0|ICD9CM|Diabetes mellitus complicating pregnancy, childbirth, or the puerperium|Diabetes mellitus complicating pregnancy, childbirth, or the puerperium +C0341893|T047|AB|648.00|ICD9CM|Diabetes in preg-unspec|Diabetes in preg-unspec +C0341897|T047|AB|648.01|ICD9CM|Diabetes-delivered|Diabetes-delivered +C0341896|T047|AB|648.02|ICD9CM|Diabetes-delivered w p/p|Diabetes-delivered w p/p +C0032969|T047|AB|648.03|ICD9CM|Diabetes-antepartum|Diabetes-antepartum +C0341894|T047|AB|648.04|ICD9CM|Diabetes-postpartum|Diabetes-postpartum +C0269683|T047|HT|648.1|ICD9CM|Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium|Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium +C0156837|T047|AB|648.10|ICD9CM|Thyroid dysfun preg-unsp|Thyroid dysfun preg-unsp +C0156837|T047|PT|648.10|ICD9CM|Thyroid dysfunction of mother, unspecified as to episode of care or not applicable|Thyroid dysfunction of mother, unspecified as to episode of care or not applicable +C0156838|T047|AB|648.11|ICD9CM|Thyroid dysfunc-deliver|Thyroid dysfunc-deliver +C0156838|T047|PT|648.11|ICD9CM|Thyroid dysfunction of mother, delivered, with or without mention of antepartum condition|Thyroid dysfunction of mother, delivered, with or without mention of antepartum condition +C0156839|T047|AB|648.12|ICD9CM|Thyroid dysfun-del w p/p|Thyroid dysfun-del w p/p +C0156839|T047|PT|648.12|ICD9CM|Thyroid dysfunction of mother, delivered, with mention of postpartum complication|Thyroid dysfunction of mother, delivered, with mention of postpartum complication +C0747834|T047|AB|648.13|ICD9CM|Thyroid dysfunc-antepart|Thyroid dysfunc-antepart +C0747834|T047|PT|648.13|ICD9CM|Thyroid dysfunction of mother, antepartum condition or complication|Thyroid dysfunction of mother, antepartum condition or complication +C0156841|T047|AB|648.14|ICD9CM|Thyroid dysfunc-postpart|Thyroid dysfunc-postpart +C0156841|T047|PT|648.14|ICD9CM|Thyroid dysfunction of mother, postpartum condition or complication|Thyroid dysfunction of mother, postpartum condition or complication +C0269684|T047|HT|648.2|ICD9CM|Anemia complicating pregnancy, childbirth, or the puerperium|Anemia complicating pregnancy, childbirth, or the puerperium +C0269684|T047|AB|648.20|ICD9CM|Anemia in preg-unspec|Anemia in preg-unspec +C0269684|T047|PT|648.20|ICD9CM|Anemia of mother, unspecified as to episode of care or not applicable|Anemia of mother, unspecified as to episode of care or not applicable +C0156844|T047|PT|648.21|ICD9CM|Anemia of mother, delivered, with or without mention of antepartum condition|Anemia of mother, delivered, with or without mention of antepartum condition +C0156844|T047|AB|648.21|ICD9CM|Anemia-delivered|Anemia-delivered +C0156845|T047|PT|648.22|ICD9CM|Anemia of mother, delivered, with mention of postpartum complication|Anemia of mother, delivered, with mention of postpartum complication +C0156845|T047|AB|648.22|ICD9CM|Anemia-delivered w p/p|Anemia-delivered w p/p +C0271930|T047|PT|648.23|ICD9CM|Anemia of mother, antepartum condition or complication|Anemia of mother, antepartum condition or complication +C0271930|T047|AB|648.23|ICD9CM|Anemia-antepartum|Anemia-antepartum +C0156847|T047|PT|648.24|ICD9CM|Anemia of mother, postpartum condition or complication|Anemia of mother, postpartum condition or complication +C0156847|T047|AB|648.24|ICD9CM|Anemia-postpartum|Anemia-postpartum +C0269685|T048|HT|648.3|ICD9CM|Drug dependence complicating pregnancy, childbirth, or the puerperium|Drug dependence complicating pregnancy, childbirth, or the puerperium +C0269685|T048|AB|648.30|ICD9CM|Drug depend preg-unspec|Drug depend preg-unspec +C0269685|T048|PT|648.30|ICD9CM|Drug dependence of mother, unspecified as to episode of care or not applicable|Drug dependence of mother, unspecified as to episode of care or not applicable +C0156850|T048|PT|648.31|ICD9CM|Drug dependence of mother, delivered, with or without mention of antepartum condition|Drug dependence of mother, delivered, with or without mention of antepartum condition +C0156850|T048|AB|648.31|ICD9CM|Drug dependence-deliver|Drug dependence-deliver +C0156851|T048|AB|648.32|ICD9CM|Drug dependen-del w p/p|Drug dependen-del w p/p +C0156851|T048|PT|648.32|ICD9CM|Drug dependence of mother, delivered, with mention of postpartum complication|Drug dependence of mother, delivered, with mention of postpartum complication +C0156852|T048|PT|648.33|ICD9CM|Drug dependence of mother, antepartum condition or complication|Drug dependence of mother, antepartum condition or complication +C0156852|T048|AB|648.33|ICD9CM|Drug dependence-antepart|Drug dependence-antepart +C0156853|T048|PT|648.34|ICD9CM|Drug dependence of mother, postpartum condition or complication|Drug dependence of mother, postpartum condition or complication +C0156853|T048|AB|648.34|ICD9CM|Drug dependence-postpart|Drug dependence-postpart +C0156854|T048|HT|648.4|ICD9CM|Mental disorders complicating pregnancy, childbirth, or the puerperium|Mental disorders complicating pregnancy, childbirth, or the puerperium +C0156855|T048|AB|648.40|ICD9CM|Mental dis preg-unspec|Mental dis preg-unspec +C0156855|T048|PT|648.40|ICD9CM|Mental disorders of mother, unspecified as to episode of care or not applicable|Mental disorders of mother, unspecified as to episode of care or not applicable +C0156856|T048|AB|648.41|ICD9CM|Mental disorder-deliver|Mental disorder-deliver +C0156856|T048|PT|648.41|ICD9CM|Mental disorders of mother, delivered, with or without mention of antepartum condition|Mental disorders of mother, delivered, with or without mention of antepartum condition +C0156857|T048|AB|648.42|ICD9CM|Mental dis-deliv w p/p|Mental dis-deliv w p/p +C0156857|T048|PT|648.42|ICD9CM|Mental disorders of mother, delivered, with mention of postpartum complication|Mental disorders of mother, delivered, with mention of postpartum complication +C0156858|T048|AB|648.43|ICD9CM|Mental disorder-antepart|Mental disorder-antepart +C0156858|T048|PT|648.43|ICD9CM|Mental disorders of mother, antepartum condition or complication|Mental disorders of mother, antepartum condition or complication +C0156859|T048|AB|648.44|ICD9CM|Mental disorder-postpart|Mental disorder-postpart +C0156859|T048|PT|648.44|ICD9CM|Mental disorders of mother, postpartum condition or complication|Mental disorders of mother, postpartum condition or complication +C0156860|T047|HT|648.5|ICD9CM|Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium|Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium +C0156861|T047|AB|648.50|ICD9CM|Congen CV dis preg-unsp|Congen CV dis preg-unsp +C0156861|T047|PT|648.50|ICD9CM|Congenital cardiovascular disorders of mother, unspecified as to episode of care or not applicable|Congenital cardiovascular disorders of mother, unspecified as to episode of care or not applicable +C0156862|T047|AB|648.51|ICD9CM|Congen CV dis-delivered|Congen CV dis-delivered +C0156863|T047|AB|648.52|ICD9CM|Congen CV dis-del w p/p|Congen CV dis-del w p/p +C0156863|T047|PT|648.52|ICD9CM|Congenital cardiovascular disorders of mother, delivered, with mention of postpartum complication|Congenital cardiovascular disorders of mother, delivered, with mention of postpartum complication +C0156864|T047|AB|648.53|ICD9CM|Congen CV dis-antepartum|Congen CV dis-antepartum +C0156864|T047|PT|648.53|ICD9CM|Congenital cardiovascular disorders of mother, antepartum condition or complication|Congenital cardiovascular disorders of mother, antepartum condition or complication +C0156865|T047|AB|648.54|ICD9CM|Congen CV dis-postpartum|Congen CV dis-postpartum +C0156865|T047|PT|648.54|ICD9CM|Congenital cardiovascular disorders of mother, postpartum condition or complication|Congenital cardiovascular disorders of mother, postpartum condition or complication +C0156866|T047|HT|648.6|ICD9CM|Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium|Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium +C0156867|T047|AB|648.60|ICD9CM|CV dis NEC preg-unspec|CV dis NEC preg-unspec +C0156867|T047|PT|648.60|ICD9CM|Other cardiovascular diseases of mother, unspecified as to episode of care or not applicable|Other cardiovascular diseases of mother, unspecified as to episode of care or not applicable +C0156868|T047|AB|648.61|ICD9CM|CV dis NEC preg-deliver|CV dis NEC preg-deliver +C0156868|T047|PT|648.61|ICD9CM|Other cardiovascular diseases of mother, delivered, with or without mention of antepartum condition|Other cardiovascular diseases of mother, delivered, with or without mention of antepartum condition +C0156869|T047|AB|648.62|ICD9CM|CV dis NEC-deliver w p/p|CV dis NEC-deliver w p/p +C0156869|T047|PT|648.62|ICD9CM|Other cardiovascular diseases of mother, delivered, with mention of postpartum complication|Other cardiovascular diseases of mother, delivered, with mention of postpartum complication +C0156870|T047|AB|648.63|ICD9CM|CV dis NEC-antepartum|CV dis NEC-antepartum +C0156870|T047|PT|648.63|ICD9CM|Other cardiovascular diseases of mother, antepartum condition or complication|Other cardiovascular diseases of mother, antepartum condition or complication +C0156871|T047|AB|648.64|ICD9CM|CV dis NEC-postpartum|CV dis NEC-postpartum +C0156871|T047|PT|648.64|ICD9CM|Other cardiovascular diseases of mother, postpartum condition or complication|Other cardiovascular diseases of mother, postpartum condition or complication +C0156873|T047|AB|648.70|ICD9CM|Bone disord in preg-unsp|Bone disord in preg-unsp +C0156874|T047|AB|648.71|ICD9CM|Bone disorder-delivered|Bone disorder-delivered +C0156875|T047|AB|648.72|ICD9CM|Bone disorder-del w p/p|Bone disorder-del w p/p +C0156876|T047|AB|648.73|ICD9CM|Bone disorder-antepartum|Bone disorder-antepartum +C0156877|T047|AB|648.74|ICD9CM|Bone disorder-postpartum|Bone disorder-postpartum +C0156878|T047|HT|648.8|ICD9CM|Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium|Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium +C0156879|T047|AB|648.80|ICD9CM|Abn glucose in preg-unsp|Abn glucose in preg-unsp +C0156879|T047|PT|648.80|ICD9CM|Abnormal glucose tolerance of mother, unspecified as to episode of care or not applicable|Abnormal glucose tolerance of mother, unspecified as to episode of care or not applicable +C0156880|T047|AB|648.81|ICD9CM|Abn glucose toler-deliv|Abn glucose toler-deliv +C0156880|T047|PT|648.81|ICD9CM|Abnormal glucose tolerance of mother, delivered, with or without mention of antepartum condition|Abnormal glucose tolerance of mother, delivered, with or without mention of antepartum condition +C0156881|T046|AB|648.82|ICD9CM|Abn glucose-deliv w p/p|Abn glucose-deliv w p/p +C0156881|T046|PT|648.82|ICD9CM|Abnormal glucose tolerance of mother, delivered, with mention of postpartum complication|Abnormal glucose tolerance of mother, delivered, with mention of postpartum complication +C0156882|T047|AB|648.83|ICD9CM|Abn glucose-antepartum|Abn glucose-antepartum +C0156882|T047|PT|648.83|ICD9CM|Abnormal glucose tolerance of mother, antepartum condition or complication|Abnormal glucose tolerance of mother, antepartum condition or complication +C0156883|T047|AB|648.84|ICD9CM|Abn glucose-postpartum|Abn glucose-postpartum +C0156883|T047|PT|648.84|ICD9CM|Abnormal glucose tolerance of mother, postpartum condition or complication|Abnormal glucose tolerance of mother, postpartum condition or complication +C0156884|T047|HT|648.9|ICD9CM|Other current conditions complicating pregnancy, childbirth, or the puerperium|Other current conditions complicating pregnancy, childbirth, or the puerperium +C0156885|T047|AB|648.90|ICD9CM|Oth curr cond preg-unsp|Oth curr cond preg-unsp +C0156886|T047|AB|648.91|ICD9CM|Oth curr cond-delivered|Oth curr cond-delivered +C0156887|T047|AB|648.92|ICD9CM|Oth curr cond-del w p/p|Oth curr cond-del w p/p +C0156888|T047|AB|648.93|ICD9CM|Oth curr cond-antepartum|Oth curr cond-antepartum +C0156888|T047|PT|648.93|ICD9CM|Other current conditions classifiable elsewhere of mother, antepartum condition or complication|Other current conditions classifiable elsewhere of mother, antepartum condition or complication +C0156889|T047|AB|648.94|ICD9CM|Oth curr cond-postpartum|Oth curr cond-postpartum +C0156889|T047|PT|648.94|ICD9CM|Other current conditions classifiable elsewhere of mother, postpartum condition or complication|Other current conditions classifiable elsewhere of mother, postpartum condition or complication +C1719602|T047|HT|649|ICD9CM|Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium|Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium +C1719563|T047|HT|649.0|ICD9CM|Tobacco use disorder complicating pregnancy, childbirth, or the puerperium|Tobacco use disorder complicating pregnancy, childbirth, or the puerperium +C1719558|T047|AB|649.00|ICD9CM|Tobacco use disord-unsp|Tobacco use disord-unsp +C1719559|T047|AB|649.01|ICD9CM|Tobacco use disor-delliv|Tobacco use disor-delliv +C1719560|T047|AB|649.02|ICD9CM|Tobacco use dis-del-p/p|Tobacco use dis-del-p/p +C1719561|T047|AB|649.03|ICD9CM|Tobacco use dis-antepart|Tobacco use dis-antepart +C1719562|T047|AB|649.04|ICD9CM|Tobacco use dis-postpart|Tobacco use dis-postpart +C1719570|T047|HT|649.1|ICD9CM|Obesity complicating pregnancy, childbirth, or the puerperium|Obesity complicating pregnancy, childbirth, or the puerperium +C1719565|T047|AB|649.10|ICD9CM|Obesity-unspecified|Obesity-unspecified +C1719566|T047|AB|649.11|ICD9CM|Obesity-delivered|Obesity-delivered +C1719567|T047|AB|649.12|ICD9CM|Obesity-delivered w p/p|Obesity-delivered w p/p +C1719568|T047|PT|649.13|ICD9CM|Obesity complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication|Obesity complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication +C1719568|T047|AB|649.13|ICD9CM|Obesity-antepartum|Obesity-antepartum +C1719569|T047|PT|649.14|ICD9CM|Obesity complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication|Obesity complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication +C1719569|T047|AB|649.14|ICD9CM|Obesity-postpartum|Obesity-postpartum +C1719576|T046|HT|649.2|ICD9CM|Bariatric surgery status complicating pregnancy, childbirth, or the puerperium|Bariatric surgery status complicating pregnancy, childbirth, or the puerperium +C1719571|T033|AB|649.20|ICD9CM|Bariatric surg stat-unsp|Bariatric surg stat-unsp +C1719572|T033|AB|649.21|ICD9CM|Bariatric surg stat-del|Bariatric surg stat-del +C1719573|T033|AB|649.22|ICD9CM|Bariatric surg-del w p/p|Bariatric surg-del w p/p +C1719574|T033|AB|649.23|ICD9CM|Bariatrc surg stat-antep|Bariatrc surg stat-antep +C1719575|T033|AB|649.24|ICD9CM|Bariatrc surg stat w p/p|Bariatrc surg stat w p/p +C1719585|T047|HT|649.3|ICD9CM|Coagulation defects complicating pregnancy, childbirth, or the puerperium|Coagulation defects complicating pregnancy, childbirth, or the puerperium +C1719580|T047|AB|649.30|ICD9CM|Coagulation def-unspec|Coagulation def-unspec +C1719581|T047|AB|649.31|ICD9CM|Coagulation def-deliv|Coagulation def-deliv +C1719582|T047|AB|649.32|ICD9CM|Coagulatn def-del w p/p|Coagulatn def-del w p/p +C1719583|T047|AB|649.33|ICD9CM|Coagulation def-antepart|Coagulation def-antepart +C1719584|T047|AB|649.34|ICD9CM|Coagulation def-postpart|Coagulation def-postpart +C1719591|T047|HT|649.4|ICD9CM|Epilepsy complicating pregnancy, childbirth, or the puerperium|Epilepsy complicating pregnancy, childbirth, or the puerperium +C1719586|T047|AB|649.40|ICD9CM|Epilepsy-unspecified|Epilepsy-unspecified +C1719587|T047|AB|649.41|ICD9CM|Epilepsy-delivered|Epilepsy-delivered +C1719588|T047|AB|649.42|ICD9CM|Epilepsy-delivered w p/p|Epilepsy-delivered w p/p +C1719589|T047|PT|649.43|ICD9CM|Epilepsy complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication|Epilepsy complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication +C1719589|T047|AB|649.43|ICD9CM|Epilepsy-antepartum|Epilepsy-antepartum +C1719590|T047|PT|649.44|ICD9CM|Epilepsy complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication|Epilepsy complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication +C1719590|T047|AB|649.44|ICD9CM|Epilepsy-postpartum|Epilepsy-postpartum +C1719595|T046|HT|649.5|ICD9CM|Spotting complicating pregnancy|Spotting complicating pregnancy +C1719592|T047|PT|649.50|ICD9CM|Spotting complicating pregnancy, unspecified as to episode of care or not applicable|Spotting complicating pregnancy, unspecified as to episode of care or not applicable +C1719592|T047|AB|649.50|ICD9CM|Spotting-unspecified|Spotting-unspecified +C1719593|T047|PT|649.51|ICD9CM|Spotting complicating pregnancy, delivered, with or without mention of antepartum condition|Spotting complicating pregnancy, delivered, with or without mention of antepartum condition +C1719593|T047|AB|649.51|ICD9CM|Spotting-delivered|Spotting-delivered +C1719594|T047|PT|649.53|ICD9CM|Spotting complicating pregnancy, antepartum condition or complication|Spotting complicating pregnancy, antepartum condition or complication +C1719594|T047|AB|649.53|ICD9CM|Spotting-antepartum|Spotting-antepartum +C1719601|T033|HT|649.6|ICD9CM|Uterine size date discrepancy|Uterine size date discrepancy +C1719596|T033|PT|649.60|ICD9CM|Uterine size date discrepancy, unspecified as to episode of care or not applicable|Uterine size date discrepancy, unspecified as to episode of care or not applicable +C1719596|T033|AB|649.60|ICD9CM|Uterine size descrp-unsp|Uterine size descrp-unsp +C1719597|T033|PT|649.61|ICD9CM|Uterine size date discrepancy, delivered, with or without mention of antepartum condition|Uterine size date discrepancy, delivered, with or without mention of antepartum condition +C1719597|T033|AB|649.61|ICD9CM|Uterine size descrep-del|Uterine size descrep-del +C1719598|T033|PT|649.62|ICD9CM|Uterine size date discrepancy, delivered, with mention of postpartum complication|Uterine size date discrepancy, delivered, with mention of postpartum complication +C1719598|T033|AB|649.62|ICD9CM|Uterine size-del w p/p|Uterine size-del w p/p +C1719599|T033|PT|649.63|ICD9CM|Uterine size date discrepancy, antepartum condition or complication|Uterine size date discrepancy, antepartum condition or complication +C1719599|T033|AB|649.63|ICD9CM|Uterine size des-antepar|Uterine size des-antepar +C1719600|T033|PT|649.64|ICD9CM|Uterine size date discrepancy, postpartum condition or complication|Uterine size date discrepancy, postpartum condition or complication +C1719600|T033|AB|649.64|ICD9CM|Uterine size descrep-p/p|Uterine size descrep-p/p +C2349587|T046|HT|649.7|ICD9CM|Cervical shortening|Cervical shortening +C2349584|T046|AB|649.70|ICD9CM|Cervical shortening-unsp|Cervical shortening-unsp +C2349584|T046|PT|649.70|ICD9CM|Cervical shortening, unspecified as to episode of care or not applicable|Cervical shortening, unspecified as to episode of care or not applicable +C2349585|T046|AB|649.71|ICD9CM|Cervical shortening-del|Cervical shortening-del +C2349585|T046|PT|649.71|ICD9CM|Cervical shortening, delivered, with or without mention of antepartum condition|Cervical shortening, delivered, with or without mention of antepartum condition +C2349586|T046|AB|649.73|ICD9CM|Cervical shortening-ante|Cervical shortening-ante +C2349586|T046|PT|649.73|ICD9CM|Cervical shortening, antepartum condition or complication|Cervical shortening, antepartum condition or complication +C3161121|T033|AB|649.81|ICD9CM|Spon labr w plan C/S-del|Spon labr w plan C/S-del +C3161122|T033|AB|649.82|ICD9CM|Lbr w plan C/S-del w p/p|Lbr w plan C/S-del w p/p +C1384485|T033|AB|650|ICD9CM|Normal delivery|Normal delivery +C1384485|T033|PT|650|ICD9CM|Normal delivery|Normal delivery +C0032989|T033|HT|651|ICD9CM|Multiple gestation|Multiple gestation +C0152150|T033|HT|651.0|ICD9CM|Twin pregnancy|Twin pregnancy +C0156893|T033|AB|651.01|ICD9CM|Twin pregnancy-delivered|Twin pregnancy-delivered +C0156893|T033|PT|651.01|ICD9CM|Twin pregnancy, delivered, with or without mention of antepartum condition|Twin pregnancy, delivered, with or without mention of antepartum condition +C0156894|T047|AB|651.03|ICD9CM|Twin pregnancy-antepart|Twin pregnancy-antepart +C0156894|T047|PT|651.03|ICD9CM|Twin pregnancy, antepartum condition or complication|Twin pregnancy, antepartum condition or complication +C0152151|T046|HT|651.1|ICD9CM|Triplet pregnancy|Triplet pregnancy +C0156896|T033|AB|651.11|ICD9CM|Triplet pregnancy-deliv|Triplet pregnancy-deliv +C0156896|T033|PT|651.11|ICD9CM|Triplet pregnancy, delivered, with or without mention of antepartum condition|Triplet pregnancy, delivered, with or without mention of antepartum condition +C0156897|T047|AB|651.13|ICD9CM|Triplet preg-antepartum|Triplet preg-antepartum +C0156897|T047|PT|651.13|ICD9CM|Triplet pregnancy, antepartum condition or complication|Triplet pregnancy, antepartum condition or complication +C0152152|T046|HT|651.2|ICD9CM|Quadruplet pregnancy|Quadruplet pregnancy +C0156899|T033|AB|651.21|ICD9CM|Quadruplet preg-deliver|Quadruplet preg-deliver +C0156899|T033|PT|651.21|ICD9CM|Quadruplet pregnancy, delivered, with or without mention of antepartum condition|Quadruplet pregnancy, delivered, with or without mention of antepartum condition +C0156900|T047|AB|651.23|ICD9CM|Quadruplet preg-antepart|Quadruplet preg-antepart +C0156900|T047|PT|651.23|ICD9CM|Quadruplet pregnancy, antepartum condition or complication|Quadruplet pregnancy, antepartum condition or complication +C0156901|T046|HT|651.3|ICD9CM|Twin pregnancy with fetal loss and retention of one fetus|Twin pregnancy with fetal loss and retention of one fetus +C0156902|T047|AB|651.30|ICD9CM|Twins w fetal loss-unsp|Twins w fetal loss-unsp +C0156903|T047|AB|651.31|ICD9CM|Twins w fetal loss-del|Twins w fetal loss-del +C0156904|T047|PT|651.33|ICD9CM|Twin pregnancy with fetal loss and retention of one fetus, antepartum condition or complication|Twin pregnancy with fetal loss and retention of one fetus, antepartum condition or complication +C0156904|T047|AB|651.33|ICD9CM|Twins w fetal loss-ante|Twins w fetal loss-ante +C0156905|T046|HT|651.4|ICD9CM|Triplet pregnancy with fetal loss and retention of one or more fetus (es)|Triplet pregnancy with fetal loss and retention of one or more fetus (es) +C0156906|T047|AB|651.40|ICD9CM|Triplets w fet loss-unsp|Triplets w fet loss-unsp +C0156907|T047|AB|651.41|ICD9CM|Triplets w fet loss-del|Triplets w fet loss-del +C0156908|T047|AB|651.43|ICD9CM|Triplets w fet loss-ante|Triplets w fet loss-ante +C0156909|T046|HT|651.5|ICD9CM|Quadruplet pregnancy with fetal loss and retention of one or more fetus(es)|Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) +C0156910|T047|AB|651.50|ICD9CM|Quads w fetal loss-unsp|Quads w fetal loss-unsp +C0156911|T047|AB|651.51|ICD9CM|Quads w fetal loss-del|Quads w fetal loss-del +C0156912|T047|AB|651.53|ICD9CM|Quads w fetal loss-ante|Quads w fetal loss-ante +C0156913|T047|HT|651.6|ICD9CM|Other multiple pregnancy with fetal loss and retention of one or more fetus(es)|Other multiple pregnancy with fetal loss and retention of one or more fetus(es) +C0156914|T047|AB|651.60|ICD9CM|Mult ges w fet loss-unsp|Mult ges w fet loss-unsp +C0156915|T047|AB|651.61|ICD9CM|Mult ges w fet loss-del|Mult ges w fet loss-del +C0156916|T047|AB|651.63|ICD9CM|Mult ges w fet loss-ante|Mult ges w fet loss-ante +C1561650|T033|HT|651.7|ICD9CM|Multiple gestation following (elective) fetal reduction|Multiple gestation following (elective) fetal reduction +C1561647|T033|AB|651.70|ICD9CM|Mul gest-fet reduct unsp|Mul gest-fet reduct unsp +C1561648|T033|AB|651.71|ICD9CM|Mult gest-fet reduct del|Mult gest-fet reduct del +C1561649|T033|AB|651.73|ICD9CM|Mul gest-fet reduct ante|Mul gest-fet reduct ante +C1561649|T033|PT|651.73|ICD9CM|Multiple gestation following (elective) fetal reduction, antepartum condition or complication|Multiple gestation following (elective) fetal reduction, antepartum condition or complication +C0156917|T033|HT|651.8|ICD9CM|Other specified multiple gestation|Other specified multiple gestation +C0032989|T033|HT|651.9|ICD9CM|Unspecified multiple gestation|Unspecified multiple gestation +C0032989|T033|AB|651.90|ICD9CM|Multi gestat NOS-unspec|Multi gestat NOS-unspec +C0032989|T033|PT|651.90|ICD9CM|Unspecified multiple gestation, unspecified as to episode of care or not applicable|Unspecified multiple gestation, unspecified as to episode of care or not applicable +C0156923|T046|AB|651.93|ICD9CM|Multi gest NOS-antepart|Multi gest NOS-antepart +C0156923|T046|PT|651.93|ICD9CM|Unspecified multiple gestation, antepartum condition or complication|Unspecified multiple gestation, antepartum condition or complication +C0156924|T033|HT|652|ICD9CM|Malposition and malpresentation of fetus|Malposition and malpresentation of fetus +C0426066|T033|HT|652.0|ICD9CM|Unstable lie of fetus|Unstable lie of fetus +C0156926|T047|AB|652.00|ICD9CM|Unstable lie-unspecified|Unstable lie-unspecified +C0156926|T047|PT|652.00|ICD9CM|Unstable lie, unspecified as to episode of care or not applicable|Unstable lie, unspecified as to episode of care or not applicable +C0156927|T033|AB|652.01|ICD9CM|Unstable lie-delivered|Unstable lie-delivered +C0156927|T033|PT|652.01|ICD9CM|Unstable lie, delivered, with or without mention of antepartum condition|Unstable lie, delivered, with or without mention of antepartum condition +C0156928|T047|AB|652.03|ICD9CM|Unstable lie-antepartum|Unstable lie-antepartum +C0156928|T047|PT|652.03|ICD9CM|Unstable lie, antepartum condition or complication|Unstable lie, antepartum condition or complication +C0156929|T047|HT|652.1|ICD9CM|Breech or other malpresentation successfully converted to cephalic presentation|Breech or other malpresentation successfully converted to cephalic presentation +C0156930|T047|AB|652.10|ICD9CM|Cephalic vers NOS-unspec|Cephalic vers NOS-unspec +C0156931|T047|AB|652.11|ICD9CM|Cephalic vers NOS-deliv|Cephalic vers NOS-deliv +C0156932|T047|AB|652.13|ICD9CM|Cephal vers NOS-antepart|Cephal vers NOS-antepart +C0156933|T047|AB|652.20|ICD9CM|Breech presentat-unspec|Breech presentat-unspec +C0156933|T047|PT|652.20|ICD9CM|Breech presentation without mention of version, unspecified as to episode of care or not applicable|Breech presentation without mention of version, unspecified as to episode of care or not applicable +C0156934|T047|AB|652.21|ICD9CM|Breech presentat-deliver|Breech presentat-deliver +C0156935|T047|AB|652.23|ICD9CM|Breech present-antepart|Breech present-antepart +C0156935|T047|PT|652.23|ICD9CM|Breech presentation without mention of version, antepartum condition or complication|Breech presentation without mention of version, antepartum condition or complication +C0156936|T033|HT|652.3|ICD9CM|Transverse or oblique presentation of fetus|Transverse or oblique presentation of fetus +C0375391|T033|AB|652.30|ICD9CM|Transv/obliq lie-unspec|Transv/obliq lie-unspec +C0375391|T033|PT|652.30|ICD9CM|Transverse or oblique presentation, unspecified as to episode of care or not applicable|Transverse or oblique presentation, unspecified as to episode of care or not applicable +C0375392|T033|AB|652.31|ICD9CM|Transver/obliq lie-deliv|Transver/obliq lie-deliv +C0375392|T033|PT|652.31|ICD9CM|Transverse or oblique presentation, delivered, with or without mention of antepartum condition|Transverse or oblique presentation, delivered, with or without mention of antepartum condition +C0375393|T033|AB|652.33|ICD9CM|Transv/obliq lie-antepar|Transv/obliq lie-antepar +C0375393|T033|PT|652.33|ICD9CM|Transverse or oblique presentation, antepartum condition or complication|Transverse or oblique presentation, antepartum condition or complication +C0156940|T033|HT|652.4|ICD9CM|Face or brow presentation of fetus|Face or brow presentation of fetus +C0156941|T033|PT|652.40|ICD9CM|Face or brow presentation, unspecified as to episode of care or not applicable|Face or brow presentation, unspecified as to episode of care or not applicable +C0156941|T033|AB|652.40|ICD9CM|Face/brow present-unspec|Face/brow present-unspec +C0156942|T033|PT|652.41|ICD9CM|Face or brow presentation, delivered, with or without mention of antepartum condition|Face or brow presentation, delivered, with or without mention of antepartum condition +C0156942|T033|AB|652.41|ICD9CM|Face/brow present-deliv|Face/brow present-deliv +C0156943|T033|PT|652.43|ICD9CM|Face or brow presentation, antepartum condition or complication|Face or brow presentation, antepartum condition or complication +C0156943|T033|AB|652.43|ICD9CM|Face/brow pres-antepart|Face/brow pres-antepart +C0426187|T033|HT|652.5|ICD9CM|High fetal head at term|High fetal head at term +C0156945|T047|AB|652.50|ICD9CM|High head at term-unspec|High head at term-unspec +C0156945|T047|PT|652.50|ICD9CM|High head at term, unspecified as to episode of care or not applicable|High head at term, unspecified as to episode of care or not applicable +C0156946|T033|AB|652.51|ICD9CM|High head at term-deliv|High head at term-deliv +C0156946|T033|PT|652.51|ICD9CM|High head at term, delivered, with or without mention of antepartum condition|High head at term, delivered, with or without mention of antepartum condition +C0156947|T047|PT|652.53|ICD9CM|High head at term, antepartum condition or complication|High head at term, antepartum condition or complication +C0156947|T047|AB|652.53|ICD9CM|High head term-antepart|High head term-antepart +C0156948|T047|HT|652.6|ICD9CM|Multiple gestation with malpresentation of one fetus or more|Multiple gestation with malpresentation of one fetus or more +C0156949|T047|AB|652.60|ICD9CM|Mult gest malpresen-unsp|Mult gest malpresen-unsp +C0156950|T047|AB|652.61|ICD9CM|Mult gest malpres-deliv|Mult gest malpres-deliv +C0156951|T047|AB|652.63|ICD9CM|Mult ges malpres-antepar|Mult ges malpres-antepar +C0156951|T047|PT|652.63|ICD9CM|Multiple gestation with malpresentation of one fetus or more, antepartum condtion or complication|Multiple gestation with malpresentation of one fetus or more, antepartum condtion or complication +C0269709|T046|HT|652.7|ICD9CM|Prolapsed arm of fetus|Prolapsed arm of fetus +C0156953|T047|PT|652.70|ICD9CM|Prolapsed arm of fetus, unspecified as to episode of care or not applicable|Prolapsed arm of fetus, unspecified as to episode of care or not applicable +C0156953|T047|AB|652.70|ICD9CM|Prolapsed arm-unspec|Prolapsed arm-unspec +C0156954|T047|PT|652.71|ICD9CM|Prolapsed arm of fetus, delivered, with or without mention of antepartum condition|Prolapsed arm of fetus, delivered, with or without mention of antepartum condition +C0156954|T047|AB|652.71|ICD9CM|Prolapsed arm-delivered|Prolapsed arm-delivered +C0156955|T047|PT|652.73|ICD9CM|Prolapsed arm of fetus, antepartum condition or complication|Prolapsed arm of fetus, antepartum condition or complication +C0156955|T047|AB|652.73|ICD9CM|Prolapsed arm-antepart|Prolapsed arm-antepart +C0156956|T047|HT|652.8|ICD9CM|Other specified malposition or malpresentation of fetus|Other specified malposition or malpresentation of fetus +C0156957|T047|AB|652.80|ICD9CM|Malposition NEC-unspec|Malposition NEC-unspec +C0156957|T047|PT|652.80|ICD9CM|Other specified malposition or malpresentation, unspecified as to episode of care or not applicable|Other specified malposition or malpresentation, unspecified as to episode of care or not applicable +C0156958|T047|AB|652.81|ICD9CM|Malposition NEC-deliver|Malposition NEC-deliver +C0156959|T047|AB|652.83|ICD9CM|Malposition NEC-antepart|Malposition NEC-antepart +C0156959|T047|PT|652.83|ICD9CM|Other specified malposition or malpresentation, antepartum condition or complication|Other specified malposition or malpresentation, antepartum condition or complication +C0156924|T033|HT|652.9|ICD9CM|Unspecified malposition or malpresentation of fetus|Unspecified malposition or malpresentation of fetus +C0156961|T047|AB|652.90|ICD9CM|Malposition NOS-unspec|Malposition NOS-unspec +C0156961|T047|PT|652.90|ICD9CM|Unspecified malposition or malpresentation, unspecified as to episode of care or not applicable|Unspecified malposition or malpresentation, unspecified as to episode of care or not applicable +C0156962|T047|AB|652.91|ICD9CM|Malposition NOS-deliver|Malposition NOS-deliver +C0156963|T047|AB|652.93|ICD9CM|Malposition NOS-antepart|Malposition NOS-antepart +C0156963|T047|PT|652.93|ICD9CM|Unspecified malposition or malpresentation, antepartum condition or complication|Unspecified malposition or malpresentation, antepartum condition or complication +C0156964|T046|HT|653|ICD9CM|Disproportion in pregnancy, labor, and delivery|Disproportion in pregnancy, labor, and delivery +C0269713|T046|HT|653.0|ICD9CM|Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery|Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery +C0156966|T020|AB|653.00|ICD9CM|Pelvic deform NOS-unspec|Pelvic deform NOS-unspec +C0156967|T020|AB|653.01|ICD9CM|Pelvic deform NOS-deliv|Pelvic deform NOS-deliv +C0156968|T020|PT|653.03|ICD9CM|Major abnormality of bony pelvis, not further specified, antepartum condition or complication|Major abnormality of bony pelvis, not further specified, antepartum condition or complication +C0156968|T020|AB|653.03|ICD9CM|Pelv deform NOS-antepart|Pelv deform NOS-antepart +C0156969|T020|HT|653.1|ICD9CM|Generally contracted pelvis in pregnancy, labor, and delivery|Generally contracted pelvis in pregnancy, labor, and delivery +C0156970|T020|AB|653.10|ICD9CM|Contract pelv NOS-unspec|Contract pelv NOS-unspec +C0156970|T020|PT|653.10|ICD9CM|Generally contracted pelvis, unspecified as to episode of care or not applicable|Generally contracted pelvis, unspecified as to episode of care or not applicable +C0156971|T033|AB|653.11|ICD9CM|Contract pelv NOS-deliv|Contract pelv NOS-deliv +C0156971|T033|PT|653.11|ICD9CM|Generally contracted pelvis, delivered, with or without mention of antepartum condition|Generally contracted pelvis, delivered, with or without mention of antepartum condition +C0156972|T020|AB|653.13|ICD9CM|Contrac pelv NOS-antepar|Contrac pelv NOS-antepar +C0156972|T020|PT|653.13|ICD9CM|Generally contracted pelvis, antepartum condition or complication|Generally contracted pelvis, antepartum condition or complication +C0156973|T020|HT|653.2|ICD9CM|Inlet contraction of pelvis in pregnancy, labor, and delivery|Inlet contraction of pelvis in pregnancy, labor, and delivery +C0156974|T020|PT|653.20|ICD9CM|Inlet contraction of pelvis, unspecified as to episode of care or not applicable|Inlet contraction of pelvis, unspecified as to episode of care or not applicable +C0156974|T020|AB|653.20|ICD9CM|Inlet contraction-unspec|Inlet contraction-unspec +C0156975|T190|PT|653.21|ICD9CM|Inlet contraction of pelvis, delivered, with or without mention of antepartum condition|Inlet contraction of pelvis, delivered, with or without mention of antepartum condition +C0156975|T190|AB|653.21|ICD9CM|Inlet contraction-deliv|Inlet contraction-deliv +C0156976|T020|AB|653.23|ICD9CM|Inlet contract-antepart|Inlet contract-antepart +C0156976|T020|PT|653.23|ICD9CM|Inlet contraction of pelvis, antepartum condition or complication|Inlet contraction of pelvis, antepartum condition or complication +C0156977|T046|HT|653.3|ICD9CM|Outlet contraction of pelvis in pregnancy, labor, and delivery|Outlet contraction of pelvis in pregnancy, labor, and delivery +C0156978|T020|PT|653.30|ICD9CM|Outlet contraction of pelvis, unspecified as to episode of care or not applicable|Outlet contraction of pelvis, unspecified as to episode of care or not applicable +C0156978|T020|AB|653.30|ICD9CM|Outlet contraction-unsp|Outlet contraction-unsp +C0156979|T190|PT|653.31|ICD9CM|Outlet contraction of pelvis, delivered, with or without mention of antepartum condition|Outlet contraction of pelvis, delivered, with or without mention of antepartum condition +C0156979|T190|AB|653.31|ICD9CM|Outlet contraction-deliv|Outlet contraction-deliv +C0156980|T020|AB|653.33|ICD9CM|Outlet contract-antepart|Outlet contract-antepart +C0156980|T020|PT|653.33|ICD9CM|Outlet contraction of pelvis, antepartum condition or complication|Outlet contraction of pelvis, antepartum condition or complication +C0085988|T033|HT|653.4|ICD9CM|Fetopelvic disproportion|Fetopelvic disproportion +C1142293|T047|AB|653.40|ICD9CM|Fetopelv disprop-unspec|Fetopelv disprop-unspec +C1142293|T047|PT|653.40|ICD9CM|Fetopelvic disproportion, unspecified as to episode of care or not applicable|Fetopelvic disproportion, unspecified as to episode of care or not applicable +C0156982|T047|AB|653.41|ICD9CM|Fetopelv dispropor-deliv|Fetopelv dispropor-deliv +C0156982|T047|PT|653.41|ICD9CM|Fetopelvic disproportion, delivered, with or without mention of antepartum condition|Fetopelvic disproportion, delivered, with or without mention of antepartum condition +C1142292|T046|AB|653.43|ICD9CM|Fetopel disprop-antepart|Fetopel disprop-antepart +C1142292|T046|PT|653.43|ICD9CM|Fetopelvic disproportion, antepartum condition or complication|Fetopelvic disproportion, antepartum condition or complication +C0156984|T033|HT|653.5|ICD9CM|Unusually large fetus causing disproportion|Unusually large fetus causing disproportion +C0156985|T047|AB|653.50|ICD9CM|Fetal disprop NOS-unspec|Fetal disprop NOS-unspec +C0156985|T047|PT|653.50|ICD9CM|Unusually large fetus causing disproportion, unspecified as to episode of care or not applicable|Unusually large fetus causing disproportion, unspecified as to episode of care or not applicable +C0156986|T047|AB|653.51|ICD9CM|Fetal disprop NOS-deliv|Fetal disprop NOS-deliv +C0156987|T047|AB|653.53|ICD9CM|Fetal dispro NOS-antepar|Fetal dispro NOS-antepar +C0156987|T047|PT|653.53|ICD9CM|Unusually large fetus causing disproportion, antepartum condition or complication|Unusually large fetus causing disproportion, antepartum condition or complication +C0405012|T190|HT|653.6|ICD9CM|Hydrocephalic fetus causing disproportion|Hydrocephalic fetus causing disproportion +C0156989|T047|AB|653.60|ICD9CM|Hydrocephal fetus-unspec|Hydrocephal fetus-unspec +C0156989|T047|PT|653.60|ICD9CM|Hydrocephalic fetus causing disproportion, unspecified as to episode of care or not applicable|Hydrocephalic fetus causing disproportion, unspecified as to episode of care or not applicable +C0156990|T047|AB|653.61|ICD9CM|Hydroceph fetus-deliver|Hydroceph fetus-deliver +C0156991|T047|AB|653.63|ICD9CM|Hydroceph fetus-antepart|Hydroceph fetus-antepart +C0156991|T047|PT|653.63|ICD9CM|Hydrocephalic fetus causing disproportion, antepartum condition or complication|Hydrocephalic fetus causing disproportion, antepartum condition or complication +C0405011|T190|HT|653.7|ICD9CM|Other fetal abnormality causing disproportion|Other fetal abnormality causing disproportion +C0156993|T047|AB|653.70|ICD9CM|Oth abn fet disprop-unsp|Oth abn fet disprop-unsp +C0156993|T047|PT|653.70|ICD9CM|Other fetal abnormality causing disproportion, unspecified as to episode of care or not applicable|Other fetal abnormality causing disproportion, unspecified as to episode of care or not applicable +C0156994|T019|AB|653.71|ICD9CM|Oth abn fet dispro-deliv|Oth abn fet dispro-deliv +C0156995|T047|AB|653.73|ICD9CM|Oth abn fet dispro-antep|Oth abn fet dispro-antep +C0156995|T047|PT|653.73|ICD9CM|Other fetal abnormality causing disproportion, antepartum condition or complication|Other fetal abnormality causing disproportion, antepartum condition or complication +C0156996|T046|HT|653.8|ICD9CM|Disproportion of other origin in pregnancy, labor, and delivery|Disproportion of other origin in pregnancy, labor, and delivery +C0156997|T047|AB|653.80|ICD9CM|Disproportion NEC-unspec|Disproportion NEC-unspec +C0156997|T047|PT|653.80|ICD9CM|Disproportion of other origin, unspecified as to episode of care or not applicable|Disproportion of other origin, unspecified as to episode of care or not applicable +C0156998|T047|AB|653.81|ICD9CM|Disproportion NEC-deliv|Disproportion NEC-deliv +C0156998|T047|PT|653.81|ICD9CM|Disproportion of other origin, delivered, with or without mention of antepartum condition|Disproportion of other origin, delivered, with or without mention of antepartum condition +C0156999|T047|AB|653.83|ICD9CM|Dispropor NEC-antepartum|Dispropor NEC-antepartum +C0156999|T047|PT|653.83|ICD9CM|Disproportion of other origin, antepartum condition or complication|Disproportion of other origin, antepartum condition or complication +C0157000|T046|HT|653.9|ICD9CM|Unspecified disproportion in pregnancy, labor, and delivery|Unspecified disproportion in pregnancy, labor, and delivery +C0157001|T047|AB|653.90|ICD9CM|Disproportion NOS-unspec|Disproportion NOS-unspec +C0157001|T047|PT|653.90|ICD9CM|Unspecified disproportion, unspecified as to episode of care or not applicable|Unspecified disproportion, unspecified as to episode of care or not applicable +C0157002|T047|AB|653.91|ICD9CM|Disproportion NOS-deliv|Disproportion NOS-deliv +C0157002|T047|PT|653.91|ICD9CM|Unspecified disproportion, delivered, with or without mention of antepartum condition|Unspecified disproportion, delivered, with or without mention of antepartum condition +C0157003|T047|AB|653.93|ICD9CM|Dispropor NOS-antepartum|Dispropor NOS-antepartum +C0157003|T047|PT|653.93|ICD9CM|Unspecified disproportion, antepartum condition or complication|Unspecified disproportion, antepartum condition or complication +C0157005|T047|HT|654.0|ICD9CM|Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium|Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium +C0157006|T019|AB|654.00|ICD9CM|Cong abn uter preg-unsp|Cong abn uter preg-unsp +C0157006|T019|PT|654.00|ICD9CM|Congenital abnormalities of uterus, unspecified as to episode of care or not applicable|Congenital abnormalities of uterus, unspecified as to episode of care or not applicable +C0157007|T019|AB|654.01|ICD9CM|Congen abn uterus-deliv|Congen abn uterus-deliv +C0157007|T019|PT|654.01|ICD9CM|Congenital abnormalities of uterus, delivered, with or without mention of antepartum condition|Congenital abnormalities of uterus, delivered, with or without mention of antepartum condition +C0157008|T047|AB|654.02|ICD9CM|Cong abn uter-del w p/p|Cong abn uter-del w p/p +C0157008|T047|PT|654.02|ICD9CM|Congenital abnormalities of uterus, delivered, with mention of postpartum complication|Congenital abnormalities of uterus, delivered, with mention of postpartum complication +C0157009|T019|AB|654.03|ICD9CM|Congen abn uter-antepart|Congen abn uter-antepart +C0157009|T047|AB|654.03|ICD9CM|Congen abn uter-antepart|Congen abn uter-antepart +C0157009|T019|PT|654.03|ICD9CM|Congenital abnormalities of uterus, antepartum condition or complication|Congenital abnormalities of uterus, antepartum condition or complication +C0157009|T047|PT|654.03|ICD9CM|Congenital abnormalities of uterus, antepartum condition or complication|Congenital abnormalities of uterus, antepartum condition or complication +C0157010|T047|AB|654.04|ICD9CM|Congen abn uter-postpart|Congen abn uter-postpart +C0157010|T047|PT|654.04|ICD9CM|Congenital abnormalities of uterus, postpartum condition or complication|Congenital abnormalities of uterus, postpartum condition or complication +C0157011|T191|HT|654.1|ICD9CM|Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium|Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium +C0157012|T191|PT|654.10|ICD9CM|Tumors of body of uterus, unspecified as to episode of care or not applicable|Tumors of body of uterus, unspecified as to episode of care or not applicable +C0157012|T191|AB|654.10|ICD9CM|Uter tumor in preg-unsp|Uter tumor in preg-unsp +C0157013|T191|PT|654.11|ICD9CM|Tumors of body of uterus, delivered, with or without mention of antepartum condition|Tumors of body of uterus, delivered, with or without mention of antepartum condition +C0157013|T191|AB|654.11|ICD9CM|Uterine tumor-delivered|Uterine tumor-delivered +C0157014|T191|PT|654.12|ICD9CM|Tumors of body of uterus, delivered, with mention of postpartum complication|Tumors of body of uterus, delivered, with mention of postpartum complication +C0157014|T191|AB|654.12|ICD9CM|Uterine tumor-del w p/p|Uterine tumor-del w p/p +C0157015|T191|PT|654.13|ICD9CM|Tumors of body of uterus, antepartum condition or complication|Tumors of body of uterus, antepartum condition or complication +C0157015|T191|AB|654.13|ICD9CM|Uterine tumor-antepartum|Uterine tumor-antepartum +C0157016|T191|PT|654.14|ICD9CM|Tumors of body of uterus, postpartum condition or complication|Tumors of body of uterus, postpartum condition or complication +C0157016|T191|AB|654.14|ICD9CM|Uterine tumor-postpartum|Uterine tumor-postpartum +C0375394|T033|HT|654.2|ICD9CM|Previous cesarean section complicating pregnancy or childbirth|Previous cesarean section complicating pregnancy or childbirth +C0157018|T033|AB|654.20|ICD9CM|Prev c-delivery unspec|Prev c-delivery unspec +C0157018|T033|PT|654.20|ICD9CM|Previous cesarean delivery, unspecified as to episode of care or not applicable|Previous cesarean delivery, unspecified as to episode of care or not applicable +C0375395|T033|AB|654.21|ICD9CM|Prev c-delivery-delivrd|Prev c-delivery-delivrd +C0375395|T033|PT|654.21|ICD9CM|Previous cesarean delivery, delivered, with or without mention of antepartum condition|Previous cesarean delivery, delivered, with or without mention of antepartum condition +C0157020|T033|AB|654.23|ICD9CM|Prev c-delivery-antepart|Prev c-delivery-antepart +C0157020|T033|PT|654.23|ICD9CM|Previous cesarean delivery, antepartum condition or complication|Previous cesarean delivery, antepartum condition or complication +C0404709|T047|HT|654.3|ICD9CM|Retroverted and incarcerated gravid uterus|Retroverted and incarcerated gravid uterus +C0157022|T047|AB|654.30|ICD9CM|Retrovert uterus-unspec|Retrovert uterus-unspec +C0157022|T047|PT|654.30|ICD9CM|Retroverted and incarcerated gravid uterus, unspecified as to episode of care or not applicable|Retroverted and incarcerated gravid uterus, unspecified as to episode of care or not applicable +C0157023|T047|AB|654.31|ICD9CM|Retrovert uterus-deliver|Retrovert uterus-deliver +C0157023|T047|PT|654.31|ICD9CM|Retroverted and incarcerated gravid uterus, delivered, with mention of antepartum condition|Retroverted and incarcerated gravid uterus, delivered, with mention of antepartum condition +C0157024|T047|AB|654.32|ICD9CM|Retrovert uter-del w p/p|Retrovert uter-del w p/p +C0157024|T047|PT|654.32|ICD9CM|Retroverted and incarcerated gravid uterus, delivered, with mention of postpartum complication|Retroverted and incarcerated gravid uterus, delivered, with mention of postpartum complication +C0157025|T047|AB|654.33|ICD9CM|Retrovert uter-antepart|Retrovert uter-antepart +C0157025|T047|PT|654.33|ICD9CM|Retroverted and incarcerated gravid uterus, antepartum condition or complication|Retroverted and incarcerated gravid uterus, antepartum condition or complication +C0157026|T047|AB|654.34|ICD9CM|Retrovert uter-postpart|Retrovert uter-postpart +C0157026|T047|PT|654.34|ICD9CM|Retroverted and incarcerated gravid uterus, postpartum condition or complication|Retroverted and incarcerated gravid uterus, postpartum condition or complication +C0859820|T047|HT|654.4|ICD9CM|Other abnormalities in shape or position of gravid uterus and of neighboring structures|Other abnormalities in shape or position of gravid uterus and of neighboring structures +C0157028|T047|AB|654.40|ICD9CM|Abn grav uterus NEC-unsp|Abn grav uterus NEC-unsp +C0157029|T047|AB|654.41|ICD9CM|Abn uterus NEC-delivered|Abn uterus NEC-delivered +C0157030|T047|AB|654.42|ICD9CM|Abn uterus NEC-del w p/p|Abn uterus NEC-del w p/p +C0157031|T047|AB|654.43|ICD9CM|Abn uterus NEC-antepart|Abn uterus NEC-antepart +C0157032|T047|AB|654.44|ICD9CM|Abn uterus NEC-postpart|Abn uterus NEC-postpart +C0157033|T020|HT|654.5|ICD9CM|Cervical incompetence complicating pregnancy, childbirth, or the puerperium|Cervical incompetence complicating pregnancy, childbirth, or the puerperium +C0157034|T047|AB|654.50|ICD9CM|Cerv incompet preg-unsp|Cerv incompet preg-unsp +C0157034|T047|PT|654.50|ICD9CM|Cervical incompetence, unspecified as to episode of care or not applicable|Cervical incompetence, unspecified as to episode of care or not applicable +C0157035|T046|AB|654.51|ICD9CM|Cervical incompet-deliv|Cervical incompet-deliv +C0157035|T046|PT|654.51|ICD9CM|Cervical incompetence, delivered, with or without mention of antepartum condition|Cervical incompetence, delivered, with or without mention of antepartum condition +C0157036|T047|AB|654.52|ICD9CM|Cerv incompet-del w p/p|Cerv incompet-del w p/p +C0157036|T047|PT|654.52|ICD9CM|Cervical incompetence, delivered, with mention of postpartum complication|Cervical incompetence, delivered, with mention of postpartum complication +C0157037|T047|AB|654.53|ICD9CM|Cerv incompet-antepartum|Cerv incompet-antepartum +C0157037|T047|PT|654.53|ICD9CM|Cervical incompetence, antepartum condition or complication|Cervical incompetence, antepartum condition or complication +C0157038|T047|AB|654.54|ICD9CM|Cerv incompet-postpartum|Cerv incompet-postpartum +C0157038|T047|PT|654.54|ICD9CM|Cervical incompetence, postpartum condition or complication|Cervical incompetence, postpartum condition or complication +C0157040|T047|AB|654.60|ICD9CM|Abn cervix NEC preg-unsp|Abn cervix NEC preg-unsp +C0157041|T047|AB|654.61|ICD9CM|Abn cervix NEC-delivered|Abn cervix NEC-delivered +C0157042|T047|AB|654.62|ICD9CM|Abn cervix NEC-del w p/p|Abn cervix NEC-del w p/p +C0157043|T047|AB|654.63|ICD9CM|Abn cervix NEC-antepart|Abn cervix NEC-antepart +C0157043|T047|PT|654.63|ICD9CM|Other congenital or acquired abnormality of cervix, antepartum condition or complication|Other congenital or acquired abnormality of cervix, antepartum condition or complication +C0157044|T047|AB|654.64|ICD9CM|Abn cervix NEC-postpart|Abn cervix NEC-postpart +C0157044|T047|PT|654.64|ICD9CM|Other congenital or acquired abnormality of cervix, postpartum condition or complication|Other congenital or acquired abnormality of cervix, postpartum condition or complication +C0157045|T047|HT|654.7|ICD9CM|Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium|Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium +C0157046|T047|AB|654.70|ICD9CM|Abn vagina in preg-unsp|Abn vagina in preg-unsp +C0157046|T047|PT|654.70|ICD9CM|Congenital or acquired abnormality of vagina, unspecified as to episode of care or not applicable|Congenital or acquired abnormality of vagina, unspecified as to episode of care or not applicable +C0157047|T047|AB|654.71|ICD9CM|Abnorm vagina-delivered|Abnorm vagina-delivered +C0157048|T047|AB|654.72|ICD9CM|Abnorm vagina-del w p/p|Abnorm vagina-del w p/p +C0157048|T047|PT|654.72|ICD9CM|Congenital or acquired abnormality of vagina, delivered, with mention of postpartum complication|Congenital or acquired abnormality of vagina, delivered, with mention of postpartum complication +C0157049|T047|AB|654.73|ICD9CM|Abnorm vagina-antepartum|Abnorm vagina-antepartum +C0157049|T047|PT|654.73|ICD9CM|Congenital or acquired abnormality of vagina, antepartum condition or complication|Congenital or acquired abnormality of vagina, antepartum condition or complication +C0157050|T047|AB|654.74|ICD9CM|Abnorm vagina-postpartum|Abnorm vagina-postpartum +C0157050|T047|PT|654.74|ICD9CM|Congenital or acquired abnormality of vagina, postpartum condition or complication|Congenital or acquired abnormality of vagina, postpartum condition or complication +C0157051|T047|HT|654.8|ICD9CM|Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium|Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium +C0157052|T047|AB|654.80|ICD9CM|Abn vulva in preg-unspec|Abn vulva in preg-unspec +C0157052|T047|PT|654.80|ICD9CM|Congenital or acquired abnormality of vulva, unspecified as to episode of care or not applicable|Congenital or acquired abnormality of vulva, unspecified as to episode of care or not applicable +C0157053|T047|AB|654.81|ICD9CM|Abnormal vulva-delivered|Abnormal vulva-delivered +C0157054|T047|AB|654.82|ICD9CM|Abnormal vulva-del w p/p|Abnormal vulva-del w p/p +C0157054|T047|PT|654.82|ICD9CM|Congenital or acquired abnormality of vulva, delivered, with mention of postpartum complication|Congenital or acquired abnormality of vulva, delivered, with mention of postpartum complication +C0157055|T047|AB|654.83|ICD9CM|Abnormal vulva-antepart|Abnormal vulva-antepart +C0157055|T047|PT|654.83|ICD9CM|Congenital or acquired abnormality of vulva, antepartum condition or complication|Congenital or acquired abnormality of vulva, antepartum condition or complication +C0157056|T047|AB|654.84|ICD9CM|Abnormal vulva-postpart|Abnormal vulva-postpart +C0157056|T047|PT|654.84|ICD9CM|Congenital or acquired abnormality of vulva, postpartum condition or complication|Congenital or acquired abnormality of vulva, postpartum condition or complication +C0157058|T190|AB|654.90|ICD9CM|Abn pel NEC in preg-unsp|Abn pel NEC in preg-unsp +C0157059|T190|AB|654.91|ICD9CM|Abn pelv org NEC-deliver|Abn pelv org NEC-deliver +C0157060|T190|AB|654.92|ICD9CM|Abn pelv NEC-deliv w p/p|Abn pelv NEC-deliv w p/p +C0157061|T190|AB|654.93|ICD9CM|Abn pelv org NEC-antepar|Abn pelv org NEC-antepar +C0157062|T190|AB|654.94|ICD9CM|Abn pelv org NEC-postpar|Abn pelv org NEC-postpar +C0157063|T046|HT|655|ICD9CM|Known or suspected fetal abnormality affecting management of mother|Known or suspected fetal abnormality affecting management of mother +C0157064|T033|HT|655.0|ICD9CM|Central nervous system malformation in fetus affecting management of mother|Central nervous system malformation in fetus affecting management of mother +C0157065|T033|PT|655.00|ICD9CM|Central nervous system malformation in fetus, unspecified as to episode of care or not applicable|Central nervous system malformation in fetus, unspecified as to episode of care or not applicable +C0157065|T033|AB|655.00|ICD9CM|Fetal cns malform-unspec|Fetal cns malform-unspec +C0157066|T019|AB|655.01|ICD9CM|Fetal cns malform-deliv|Fetal cns malform-deliv +C0157066|T047|AB|655.01|ICD9CM|Fetal cns malform-deliv|Fetal cns malform-deliv +C0157067|T033|PT|655.03|ICD9CM|Central nervous system malformation in fetus, antepartum condition or complication|Central nervous system malformation in fetus, antepartum condition or complication +C0157067|T033|AB|655.03|ICD9CM|Fetal cns malfor-antepar|Fetal cns malfor-antepar +C0157068|T047|HT|655.1|ICD9CM|Chromosomal abnormality in fetus affecting management of mother|Chromosomal abnormality in fetus affecting management of mother +C0157069|T033|AB|655.10|ICD9CM|Fetal chromos abn-unspec|Fetal chromos abn-unspec +C0157070|T033|AB|655.11|ICD9CM|Fetal chromoso abn-deliv|Fetal chromoso abn-deliv +C0157071|T033|AB|655.13|ICD9CM|Fet chromo abn-antepart|Fet chromo abn-antepart +C0157072|T047|HT|655.2|ICD9CM|Hereditary disease in family possibly affecting fetus, affecting management of mother|Hereditary disease in family possibly affecting fetus, affecting management of mother +C0157073|T047|AB|655.20|ICD9CM|Famil heredit dis-unspec|Famil heredit dis-unspec +C0157074|T047|AB|655.21|ICD9CM|Famil heredit dis-deliv|Famil heredit dis-deliv +C0157075|T047|AB|655.23|ICD9CM|Famil hered dis-antepart|Famil hered dis-antepart +C0157076|T047|HT|655.3|ICD9CM|Suspected damage to fetus from viral disease in the mother, affecting management of mother|Suspected damage to fetus from viral disease in the mother, affecting management of mother +C0157077|T047|AB|655.30|ICD9CM|Fet damg d/t virus-unsp|Fet damg d/t virus-unsp +C0157078|T047|AB|655.31|ICD9CM|Fet damg d/t virus-deliv|Fet damg d/t virus-deliv +C0157079|T047|AB|655.33|ICD9CM|Fet damg d/t virus-antep|Fet damg d/t virus-antep +C0157080|T047|HT|655.4|ICD9CM|Suspected damage to fetus from other disease in the mother, affecting management of mother|Suspected damage to fetus from other disease in the mother, affecting management of mother +C0157081|T047|AB|655.40|ICD9CM|Fet damg d/t dis-unspec|Fet damg d/t dis-unspec +C0157082|T047|AB|655.41|ICD9CM|Fet damg d/t dis-deliver|Fet damg d/t dis-deliver +C0157083|T047|AB|655.43|ICD9CM|Fet damg d/t dis-antepar|Fet damg d/t dis-antepar +C0157084|T037|HT|655.5|ICD9CM|Suspected damage to fetus from drugs, affecting management of mother|Suspected damage to fetus from drugs, affecting management of mother +C0157085|T047|AB|655.50|ICD9CM|Fetal damg d/t drug-unsp|Fetal damg d/t drug-unsp +C0157086|T047|AB|655.51|ICD9CM|Fet damag d/t drug-deliv|Fet damag d/t drug-deliv +C0157087|T047|AB|655.53|ICD9CM|Fet damg d/t drug-antepa|Fet damg d/t drug-antepa +C0157088|T037|HT|655.6|ICD9CM|Suspected damage to fetus from radiation, affecting management of mother|Suspected damage to fetus from radiation, affecting management of mother +C0157089|T037|AB|655.60|ICD9CM|Radiat fetal damag-unsp|Radiat fetal damag-unsp +C0157090|T047|AB|655.61|ICD9CM|Radiat fetal damag-deliv|Radiat fetal damag-deliv +C0157090|T047|PT|655.61|ICD9CM|Suspected damage to fetus from radiation, affecting management of mother, delivered,|Suspected damage to fetus from radiation, affecting management of mother, delivered, +C0157091|T037|AB|655.63|ICD9CM|Radiat fet damag-antepar|Radiat fet damag-antepar +C0490008|T046|HT|655.7|ICD9CM|Decreased fetal movements, affecting management of mother|Decreased fetal movements, affecting management of mother +C0695214|T046|AB|655.70|ICD9CM|Decrease fetl movmt unsp|Decrease fetl movmt unsp +C0695214|T046|PT|655.70|ICD9CM|Decreased fetal movements, affecting management of mother, unspecified as to episode of care|Decreased fetal movements, affecting management of mother, unspecified as to episode of care +C0695215|T046|AB|655.71|ICD9CM|Decrease fetal movmt del|Decrease fetal movmt del +C0695216|T046|AB|655.73|ICD9CM|Dec fetal movmt antepart|Dec fetal movmt antepart +C0695216|T046|PT|655.73|ICD9CM|Decreased fetal movements, affecting management of mother, antepartum condition or complication|Decreased fetal movements, affecting management of mother, antepartum condition or complication +C0869483|T047|HT|655.8|ICD9CM|Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother|Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother +C0157093|T047|AB|655.80|ICD9CM|Fetal abnorm NEC-unspec|Fetal abnorm NEC-unspec +C0157094|T047|AB|655.81|ICD9CM|Fetal abnorm NEC-deliver|Fetal abnorm NEC-deliver +C0157095|T047|AB|655.83|ICD9CM|Fetal abnorm NEC-antepar|Fetal abnorm NEC-antepar +C0157063|T046|HT|655.9|ICD9CM|Unspecified, known or suspected fetal abnormality affecting management of mother|Unspecified, known or suspected fetal abnormality affecting management of mother +C0157097|T047|AB|655.90|ICD9CM|Fetal abnorm NOS-unspec|Fetal abnorm NOS-unspec +C0157098|T047|AB|655.91|ICD9CM|Fetal abnorm NOS-deliver|Fetal abnorm NOS-deliver +C0157099|T047|AB|655.93|ICD9CM|Fetal abnorm NOS-antepar|Fetal abnorm NOS-antepar +C2349589|T047|HT|656|ICD9CM|Other known or suspected fetal and placental problems affecting management of mother|Other known or suspected fetal and placental problems affecting management of mother +C0157101|T046|HT|656.0|ICD9CM|Fetal-maternal hemorrhage affecting management of mother|Fetal-maternal hemorrhage affecting management of mother +C0015959|T046|AB|656.00|ICD9CM|Fetal-maternal hem-unsp|Fetal-maternal hem-unsp +C0015959|T046|PT|656.00|ICD9CM|Fetal-maternal hemorrhage, unspecified as to episode of care or not applicable|Fetal-maternal hemorrhage, unspecified as to episode of care or not applicable +C0157103|T047|AB|656.01|ICD9CM|Fetal-maternal hem-deliv|Fetal-maternal hem-deliv +C0157103|T047|PT|656.01|ICD9CM|Fetal-maternal hemorrhage, delivered, with or without mention of antepartum condition|Fetal-maternal hemorrhage, delivered, with or without mention of antepartum condition +C0157104|T047|AB|656.03|ICD9CM|Fetal-matern hem-antepar|Fetal-matern hem-antepar +C0157104|T047|PT|656.03|ICD9CM|Fetal-maternal hemorrhage, antepartum condition or complication|Fetal-maternal hemorrhage, antepartum condition or complication +C0035428|T033|HT|656.1|ICD9CM|Rhesus isoimmunization affecting management of mother|Rhesus isoimmunization affecting management of mother +C0157105|T047|AB|656.10|ICD9CM|Rh isoimmunization-unsp|Rh isoimmunization-unsp +C0157105|T047|PT|656.10|ICD9CM|Rhesus isoimmunization, unspecified as to episode of care or not applicable|Rhesus isoimmunization, unspecified as to episode of care or not applicable +C0157106|T047|AB|656.11|ICD9CM|Rh isoimmunizat-deliver|Rh isoimmunizat-deliver +C0157106|T047|PT|656.11|ICD9CM|Rhesus isoimmunization, delivered, with or without mention of antepartum condition|Rhesus isoimmunization, delivered, with or without mention of antepartum condition +C0157107|T047|AB|656.13|ICD9CM|Rh isoimmunizat-antepart|Rh isoimmunizat-antepart +C0157107|T047|PT|656.13|ICD9CM|Rhesus isoimmunization, antepartum condition or complication|Rhesus isoimmunization, antepartum condition or complication +C0157109|T047|AB|656.20|ICD9CM|Abo isoimmunization-unsp|Abo isoimmunization-unsp +C0157110|T047|AB|656.21|ICD9CM|Abo isoimmunizat-deliver|Abo isoimmunizat-deliver +C0157111|T047|AB|656.23|ICD9CM|Abo isoimmunizat-antepar|Abo isoimmunizat-antepar +C0015931|T047|HT|656.3|ICD9CM|Fetal distress affecting management of mother|Fetal distress affecting management of mother +C0157112|T033|AB|656.30|ICD9CM|Fetal distress-unspec|Fetal distress-unspec +C0157112|T033|PT|656.30|ICD9CM|Fetal distress, affecting management of mother, unspecified as to episode of care or not applicable|Fetal distress, affecting management of mother, unspecified as to episode of care or not applicable +C0157113|T047|AB|656.31|ICD9CM|Fetal distress-delivered|Fetal distress-delivered +C0157114|T047|AB|656.33|ICD9CM|Fetal distress-antepart|Fetal distress-antepart +C0157114|T047|PT|656.33|ICD9CM|Fetal distress, affecting management of mother, antepartum condition or complication|Fetal distress, affecting management of mother, antepartum condition or complication +C0269792|T033|HT|656.4|ICD9CM|Intrauterine death affecting management of mother|Intrauterine death affecting management of mother +C0157116|T047|AB|656.40|ICD9CM|Intrauterine death-unsp|Intrauterine death-unsp +C0157117|T047|AB|656.41|ICD9CM|Intrauter death-deliver|Intrauter death-deliver +C0157118|T047|AB|656.43|ICD9CM|Intrauter death-antepart|Intrauter death-antepart +C0157118|T047|PT|656.43|ICD9CM|Intrauterine death, affecting management of mother, antepartum condition or complication|Intrauterine death, affecting management of mother, antepartum condition or complication +C0157119|T033|HT|656.5|ICD9CM|Poor fetal growth affecting management of mother|Poor fetal growth affecting management of mother +C0157120|T033|AB|656.50|ICD9CM|Poor fetal growth-unspec|Poor fetal growth-unspec +C0157121|T033|AB|656.51|ICD9CM|Poor fetal growth-deliv|Poor fetal growth-deliv +C0157122|T047|PT|656.53|ICD9CM|Poor fetal growth, affecting management of mother, antepartum condition or complication|Poor fetal growth, affecting management of mother, antepartum condition or complication +C0157122|T047|AB|656.53|ICD9CM|Poor fetal grth-antepart|Poor fetal grth-antepart +C0157123|T046|HT|656.6|ICD9CM|Excessive fetal growth affecting management of mother|Excessive fetal growth affecting management of mother +C0157124|T046|AB|656.60|ICD9CM|Excess fetal grth-unspec|Excess fetal grth-unspec +C0157125|T046|AB|656.61|ICD9CM|Excess fetal grth-deliv|Excess fetal grth-deliv +C0157126|T046|AB|656.63|ICD9CM|Excess fet grth-antepart|Excess fet grth-antepart +C0157126|T046|PT|656.63|ICD9CM|Excessive fetal growth, affecting management of mother, antepartum condition or complication|Excessive fetal growth, affecting management of mother, antepartum condition or complication +C0477835|T046|HT|656.7|ICD9CM|Other placental conditions affecting management of mother|Other placental conditions affecting management of mother +C0157127|T047|AB|656.70|ICD9CM|Oth placent cond-unspec|Oth placent cond-unspec +C0157128|T047|AB|656.71|ICD9CM|Oth placent cond-deliver|Oth placent cond-deliver +C0157129|T047|AB|656.73|ICD9CM|Oth placent cond-antepar|Oth placent cond-antepar +C0157129|T047|PT|656.73|ICD9CM|Other placental conditions, affecting management of mother, antepartum condition or complication|Other placental conditions, affecting management of mother, antepartum condition or complication +C0157130|T047|HT|656.8|ICD9CM|Other specified fetal and placental problems affecting management of mother|Other specified fetal and placental problems affecting management of mother +C0157131|T047|AB|656.80|ICD9CM|Fet/plac prob NEC-unspec|Fet/plac prob NEC-unspec +C0157132|T047|AB|656.81|ICD9CM|Fet/plac prob NEC-deliv|Fet/plac prob NEC-deliv +C0157133|T047|AB|656.83|ICD9CM|Fet/plac prob NEC-antepa|Fet/plac prob NEC-antepa +C0157134|T047|HT|656.9|ICD9CM|Unspecified fetal and placental problem affecting management of mother|Unspecified fetal and placental problem affecting management of mother +C0157135|T047|AB|656.90|ICD9CM|Fet/plac prob NOS-unspec|Fet/plac prob NOS-unspec +C0157136|T047|AB|656.91|ICD9CM|Fet/plac prob NOS-deliv|Fet/plac prob NOS-deliv +C0157137|T047|AB|656.93|ICD9CM|Fet/plac prob NOS-antepa|Fet/plac prob NOS-antepa +C0020224|T046|HT|657|ICD9CM|Polyhydramnios|Polyhydramnios +C0020224|T046|HT|657.0|ICD9CM|Polyhydramnios|Polyhydramnios +C1812620|T047|AB|657.00|ICD9CM|Polyhydramnios-unspec|Polyhydramnios-unspec +C1812620|T047|PT|657.00|ICD9CM|Polyhydramnios, unspecified as to episode of care or not applicable|Polyhydramnios, unspecified as to episode of care or not applicable +C0375434|T047|AB|657.01|ICD9CM|Polyhydramnios-delivered|Polyhydramnios-delivered +C0375434|T047|PT|657.01|ICD9CM|Polyhydramnios, delivered, with or without mention of antepartum condition|Polyhydramnios, delivered, with or without mention of antepartum condition +C0375436|T046|AB|657.03|ICD9CM|Polyhydramnios-antepart|Polyhydramnios-antepart +C0375436|T046|PT|657.03|ICD9CM|Polyhydramnios, antepartum condition or complication|Polyhydramnios, antepartum condition or complication +C0029715|T047|HT|658|ICD9CM|Other problems associated with amniotic cavity and membranes|Other problems associated with amniotic cavity and membranes +C0079924|T046|HT|658.0|ICD9CM|Oligohydramnios|Oligohydramnios +C0157141|T047|AB|658.00|ICD9CM|Oligohydramnios-unspec|Oligohydramnios-unspec +C0157141|T047|PT|658.00|ICD9CM|Oligohydramnios, unspecified as to episode of care or not applicable|Oligohydramnios, unspecified as to episode of care or not applicable +C0157142|T046|AB|658.01|ICD9CM|Oligohydramnios-deliver|Oligohydramnios-deliver +C0157142|T046|PT|658.01|ICD9CM|Oligohydramnios, delivered, with or without mention of antepartum condition|Oligohydramnios, delivered, with or without mention of antepartum condition +C0157143|T047|AB|658.03|ICD9CM|Oligohydramnios-antepar|Oligohydramnios-antepar +C0157143|T047|PT|658.03|ICD9CM|Oligohydramnios, antepartum condition or complication|Oligohydramnios, antepartum condition or complication +C0015944|T046|HT|658.1|ICD9CM|Premature rupture of membranes|Premature rupture of membranes +C0157145|T047|AB|658.10|ICD9CM|Prem rupt membran-unspec|Prem rupt membran-unspec +C0157145|T047|PT|658.10|ICD9CM|Premature rupture of membranes, unspecified as to episode of care or not applicable|Premature rupture of membranes, unspecified as to episode of care or not applicable +C0157146|T046|AB|658.11|ICD9CM|Prem rupt membran-deliv|Prem rupt membran-deliv +C0157146|T046|PT|658.11|ICD9CM|Premature rupture of membranes, delivered, with or without mention of antepartum condition|Premature rupture of membranes, delivered, with or without mention of antepartum condition +C0157147|T046|AB|658.13|ICD9CM|Prem rupt memb-antepart|Prem rupt memb-antepart +C0157147|T046|PT|658.13|ICD9CM|Premature rupture of membranes, antepartum condition or complication|Premature rupture of membranes, antepartum condition or complication +C0495246|T046|HT|658.2|ICD9CM|Delayed delivery after spontaneous or unspecified rupture of membranes|Delayed delivery after spontaneous or unspecified rupture of membranes +C0157149|T047|AB|658.20|ICD9CM|Prolong rupt memb-unspec|Prolong rupt memb-unspec +C0157150|T047|AB|658.21|ICD9CM|Prolong rupt memb-deliv|Prolong rupt memb-deliv +C0157151|T047|AB|658.23|ICD9CM|Prolong rup memb-antepar|Prolong rup memb-antepar +C0157152|T046|HT|658.3|ICD9CM|Delayed delivery after artificial rupture of membranes|Delayed delivery after artificial rupture of membranes +C0157153|T047|AB|658.30|ICD9CM|Artific rupt membr-unsp|Artific rupt membr-unsp +C0157154|T047|AB|658.31|ICD9CM|Artific rupt membr-deliv|Artific rupt membr-deliv +C0157155|T047|AB|658.33|ICD9CM|Artif rupt memb-antepart|Artif rupt memb-antepart +C0157155|T047|PT|658.33|ICD9CM|Delayed delivery after artificial rupture of membranes, antepartum condition or complication|Delayed delivery after artificial rupture of membranes, antepartum condition or complication +C0002631|T047|HT|658.4|ICD9CM|Infection of amniotic cavity|Infection of amniotic cavity +C0002631|T047|AB|658.40|ICD9CM|Amniotic infection-unsp|Amniotic infection-unsp +C0002631|T047|PT|658.40|ICD9CM|Infection of amniotic cavity, unspecified as to episode of care or not applicable|Infection of amniotic cavity, unspecified as to episode of care or not applicable +C0157157|T046|AB|658.41|ICD9CM|Amniotic infection-deliv|Amniotic infection-deliv +C0157157|T046|PT|658.41|ICD9CM|Infection of amniotic cavity, delivered, with or without mention of antepartum condition|Infection of amniotic cavity, delivered, with or without mention of antepartum condition +C0157158|T047|AB|658.43|ICD9CM|Amniotic infect-antepart|Amniotic infect-antepart +C0157158|T047|PT|658.43|ICD9CM|Infection of amniotic cavity, antepartum condition or complication|Infection of amniotic cavity, antepartum condition or complication +C0029715|T047|HT|658.8|ICD9CM|Other problems associated with amniotic cavity and membranes|Other problems associated with amniotic cavity and membranes +C0157159|T047|AB|658.80|ICD9CM|Amniotic prob NEC-unspec|Amniotic prob NEC-unspec +C0157160|T047|AB|658.81|ICD9CM|Amniotic prob NEC-deliv|Amniotic prob NEC-deliv +C0157161|T047|AB|658.83|ICD9CM|Amnion prob NEC-antepart|Amnion prob NEC-antepart +C0157161|T047|PT|658.83|ICD9CM|Other problems associated with amniotic cavity and membranes, antepartum|Other problems associated with amniotic cavity and membranes, antepartum +C0405034|T047|HT|658.9|ICD9CM|Unspecified problem associated with amniotic cavity and membranes|Unspecified problem associated with amniotic cavity and membranes +C0405037|T033|AB|658.90|ICD9CM|Amniotic prob NOS-unspec|Amniotic prob NOS-unspec +C2114658|T047|AB|658.91|ICD9CM|Amniotic prob NOS-deliv|Amniotic prob NOS-deliv +C0157165|T047|AB|658.93|ICD9CM|Amnion prob NOS-antepart|Amnion prob NOS-antepart +C0302388|T047|HT|659|ICD9CM|Other indications for care or intervention related to labor and delivery, not elsewhere classified|Other indications for care or intervention related to labor and delivery, not elsewhere classified +C0269807|T046|HT|659.0|ICD9CM|Failed mechanical induction of labor|Failed mechanical induction of labor +C0157168|T047|AB|659.00|ICD9CM|Fail mechan induct-unsp|Fail mechan induct-unsp +C0157168|T047|PT|659.00|ICD9CM|Failed mechanical induction of labor, unspecified as to episode of care or not applicable|Failed mechanical induction of labor, unspecified as to episode of care or not applicable +C0157169|T033|AB|659.01|ICD9CM|Fail mech induct-deliver|Fail mech induct-deliver +C0157169|T033|PT|659.01|ICD9CM|Failed mechanical induction of labor, delivered, with or without mention of antepartum condition|Failed mechanical induction of labor, delivered, with or without mention of antepartum condition +C0157170|T047|AB|659.03|ICD9CM|Fail mech induct-antepar|Fail mech induct-antepar +C0157170|T047|PT|659.03|ICD9CM|Failed mechanical induction of labor, antepartum condition or complication|Failed mechanical induction of labor, antepartum condition or complication +C0405189|T046|HT|659.1|ICD9CM|Failed medical or unspecified induction of labor|Failed medical or unspecified induction of labor +C0157172|T047|AB|659.10|ICD9CM|Fail induction NOS-unsp|Fail induction NOS-unsp +C0157173|T047|AB|659.11|ICD9CM|Fail induction NOS-deliv|Fail induction NOS-deliv +C0157174|T047|AB|659.13|ICD9CM|Fail induct NOS-antepart|Fail induct NOS-antepart +C0157174|T047|PT|659.13|ICD9CM|Failed medical or unspecified induction of labor, antepartum condition or complication|Failed medical or unspecified induction of labor, antepartum condition or complication +C0341973|T046|HT|659.2|ICD9CM|Maternal pyrexia during labor, unspecified|Maternal pyrexia during labor, unspecified +C0157176|T047|PT|659.20|ICD9CM|Maternal pyrexia during labor, unspecified, unspecified as to episode of care or not applicable|Maternal pyrexia during labor, unspecified, unspecified as to episode of care or not applicable +C0157176|T047|AB|659.20|ICD9CM|Pyrexia in labor-unspec|Pyrexia in labor-unspec +C0157177|T047|AB|659.21|ICD9CM|Pyrexia in labor-deliver|Pyrexia in labor-deliver +C0157178|T047|PT|659.23|ICD9CM|Maternal pyrexia during labor, unspecified, antepartum condition or complication|Maternal pyrexia during labor, unspecified, antepartum condition or complication +C0157178|T047|AB|659.23|ICD9CM|Pyrexia in labor-antepar|Pyrexia in labor-antepar +C0157179|T046|HT|659.3|ICD9CM|Generalized infection during labor|Generalized infection during labor +C0157180|T047|PT|659.30|ICD9CM|Generalized infection during labor, unspecified as to episode of care or not applicable|Generalized infection during labor, unspecified as to episode of care or not applicable +C0157180|T047|AB|659.30|ICD9CM|Septicemia in labor-unsp|Septicemia in labor-unsp +C0157181|T047|PT|659.31|ICD9CM|Generalized infection during labor, delivered, with or without mention of antepartum condition|Generalized infection during labor, delivered, with or without mention of antepartum condition +C0157181|T047|AB|659.31|ICD9CM|Septicem in labor-deliv|Septicem in labor-deliv +C0157182|T047|PT|659.33|ICD9CM|Generalized infection during labor, antepartum condition or complication|Generalized infection during labor, antepartum condition or complication +C0157182|T047|AB|659.33|ICD9CM|Septicem in labor-antepa|Septicem in labor-antepa +C0157183|T033|HT|659.4|ICD9CM|Grand multiparity, with current pregnancy|Grand multiparity, with current pregnancy +C0157184|T033|AB|659.40|ICD9CM|Grand multiparity-unspec|Grand multiparity-unspec +C0157184|T033|PT|659.40|ICD9CM|Grand multiparity, unspecified as to episode of care or not applicable|Grand multiparity, unspecified as to episode of care or not applicable +C0157185|T033|AB|659.41|ICD9CM|Grand multiparity-deliv|Grand multiparity-deliv +C0157185|T033|PT|659.41|ICD9CM|Grand multiparity, delivered, with or without mention of antepartum condition|Grand multiparity, delivered, with or without mention of antepartum condition +C0157186|T033|AB|659.43|ICD9CM|Grand multiparity-antepa|Grand multiparity-antepa +C0157186|T033|PT|659.43|ICD9CM|Grand multiparity, antepartum condition or complication|Grand multiparity, antepartum condition or complication +C0157187|T033|HT|659.5|ICD9CM|Elderly primigravida|Elderly primigravida +C0157189|T033|AB|659.51|ICD9CM|Elderly primigravida-del|Elderly primigravida-del +C0157189|T033|PT|659.51|ICD9CM|Elderly primigravida, delivered, with or without mention of antepartum condition|Elderly primigravida, delivered, with or without mention of antepartum condition +C0695245|T046|HT|659.7|ICD9CM|Abnormality in fetal heart rate or rhythm|Abnormality in fetal heart rate or rhythm +C0695246|T046|AB|659.70|ICD9CM|Abn ftl hrt rate/rhy-uns|Abn ftl hrt rate/rhy-uns +C0695246|T046|PT|659.70|ICD9CM|Abnormality in fetal heart rate or rhythm, unspecified as to episode of care or not applicable|Abnormality in fetal heart rate or rhythm, unspecified as to episode of care or not applicable +C0695247|T046|AB|659.71|ICD9CM|Abn ftl hrt rate/rhy-del|Abn ftl hrt rate/rhy-del +C0695248|T046|AB|659.73|ICD9CM|Abn ftl hrt rate/rhy-ant|Abn ftl hrt rate/rhy-ant +C0695248|T046|PT|659.73|ICD9CM|Abnormality in fetal heart rate or rhythm, antepartum condition or complication|Abnormality in fetal heart rate or rhythm, antepartum condition or complication +C0157191|T033|HT|659.8|ICD9CM|Other specified indications for care or intervention related to labor and delivery|Other specified indications for care or intervention related to labor and delivery +C0157192|T033|AB|659.80|ICD9CM|Complic labor NEC-unsp|Complic labor NEC-unsp +C0157193|T047|AB|659.81|ICD9CM|Complic labor NEC-deliv|Complic labor NEC-deliv +C0157194|T047|AB|659.83|ICD9CM|Compl labor NEC-antepart|Compl labor NEC-antepart +C0157195|T033|HT|659.9|ICD9CM|Unspecified indication for care or intervention related to labor and delivery|Unspecified indication for care or intervention related to labor and delivery +C0157196|T033|AB|659.90|ICD9CM|Complic labor NOS-unsp|Complic labor NOS-unsp +C0157197|T047|AB|659.91|ICD9CM|Complic labor NOS-deliv|Complic labor NOS-deliv +C0157198|T047|AB|659.93|ICD9CM|Compl labor NOS-antepart|Compl labor NOS-antepart +C0152156|T046|HT|660|ICD9CM|Obstructed labor|Obstructed labor +C0178297|T047|HT|660-669.99|ICD9CM|COMPLICATIONS OCCURRING MAINLY IN THE COURSE OF LABOR AND DELIVERY|COMPLICATIONS OCCURRING MAINLY IN THE COURSE OF LABOR AND DELIVERY +C0157199|T046|HT|660.0|ICD9CM|Obstruction caused by malposition of fetus at onset of labor|Obstruction caused by malposition of fetus at onset of labor +C0157200|T046|AB|660.00|ICD9CM|Obstruct/fet malpos-unsp|Obstruct/fet malpos-unsp +C0157201|T046|AB|660.01|ICD9CM|Obstruc/fet malpos-deliv|Obstruc/fet malpos-deliv +C0157202|T046|AB|660.03|ICD9CM|Obstruc/fet malpos-antep|Obstruc/fet malpos-antep +C0157202|T046|PT|660.03|ICD9CM|Obstruction caused by malposition of fetus at onset of labor, antepartum condition or complication|Obstruction caused by malposition of fetus at onset of labor, antepartum condition or complication +C0157203|T033|HT|660.1|ICD9CM|Obstruction by bony pelvis during labor|Obstruction by bony pelvis during labor +C0157204|T047|AB|660.10|ICD9CM|Bony pelv obstruc-unspec|Bony pelv obstruc-unspec +C0157204|T047|PT|660.10|ICD9CM|Obstruction by bony pelvis during labor, unspecified as to episode of care or not applicable|Obstruction by bony pelvis during labor, unspecified as to episode of care or not applicable +C0157205|T047|AB|660.11|ICD9CM|Bony pelv obstruct-deliv|Bony pelv obstruct-deliv +C0157205|T047|PT|660.11|ICD9CM|Obstruction by bony pelvis during labor, delivered, with or without mention of antepartum condition|Obstruction by bony pelvis during labor, delivered, with or without mention of antepartum condition +C0157206|T047|AB|660.13|ICD9CM|Bony pelv obstruc-antepa|Bony pelv obstruc-antepa +C0157206|T047|PT|660.13|ICD9CM|Obstruction by bony pelvis during labor, antepartum condition or complication|Obstruction by bony pelvis during labor, antepartum condition or complication +C0157207|T033|HT|660.2|ICD9CM|Obstruction by abnormal pelvic soft tissues during labor|Obstruction by abnormal pelvic soft tissues during labor +C0157208|T046|AB|660.20|ICD9CM|Abn pelv tiss obstr-unsp|Abn pelv tiss obstr-unsp +C0157209|T047|AB|660.21|ICD9CM|Abn pelv tis obstr-deliv|Abn pelv tis obstr-deliv +C0157210|T047|AB|660.23|ICD9CM|Abn pelv tis obstr-antep|Abn pelv tis obstr-antep +C0157210|T047|PT|660.23|ICD9CM|Obstruction by abnormal pelvic soft tissues during labor, antepartum condition or complication|Obstruction by abnormal pelvic soft tissues during labor, antepartum condition or complication +C0157211|T047|HT|660.3|ICD9CM|Deep transverse arrest and persistent occipitoposterior position during labor and delivery|Deep transverse arrest and persistent occipitoposterior position during labor and delivery +C0157212|T033|AB|660.30|ICD9CM|Persist occipitpost-unsp|Persist occipitpost-unsp +C0157213|T047|AB|660.31|ICD9CM|Persist occiptpost-deliv|Persist occiptpost-deliv +C0157214|T047|AB|660.33|ICD9CM|Persist occiptpost-antep|Persist occiptpost-antep +C0269825|T046|HT|660.4|ICD9CM|Shoulder (girdle) dystocia during labor and delivery|Shoulder (girdle) dystocia during labor and delivery +C0157216|T033|PT|660.40|ICD9CM|Shoulder (girdle) dystocia, unspecified as to episode of care or not applicable|Shoulder (girdle) dystocia, unspecified as to episode of care or not applicable +C0157216|T033|AB|660.40|ICD9CM|Shoulder dystocia-unspec|Shoulder dystocia-unspec +C0748659|T047|PT|660.41|ICD9CM|Shoulder (girdle) dystocia, delivered, with or without mention of antepartum condition|Shoulder (girdle) dystocia, delivered, with or without mention of antepartum condition +C0748659|T047|AB|660.41|ICD9CM|Shoulder dystocia-deliv|Shoulder dystocia-deliv +C0157218|T033|PT|660.43|ICD9CM|Shoulder (girdle) dystocia, antepartum condition or complication|Shoulder (girdle) dystocia, antepartum condition or complication +C0157218|T033|AB|660.43|ICD9CM|Shoulder dystocia-antepa|Shoulder dystocia-antepa +C0405185|T033|HT|660.5|ICD9CM|Locked twins|Locked twins +C0157220|T047|AB|660.50|ICD9CM|Locked twins-unspecified|Locked twins-unspecified +C0157220|T047|PT|660.50|ICD9CM|Locked twins, unspecified as to episode of care or not applicable|Locked twins, unspecified as to episode of care or not applicable +C0157221|T047|AB|660.51|ICD9CM|Locked twins-delivered|Locked twins-delivered +C0157221|T047|PT|660.51|ICD9CM|Locked twins, delivered, with or without mention of antepartum condition|Locked twins, delivered, with or without mention of antepartum condition +C0157222|T047|AB|660.53|ICD9CM|Locked twins-antepartum|Locked twins-antepartum +C0157222|T047|PT|660.53|ICD9CM|Locked twins, antepartum condition or complication|Locked twins, antepartum condition or complication +C0157223|T046|HT|660.6|ICD9CM|Failed trial of labor, unspecified|Failed trial of labor, unspecified +C0157224|T033|AB|660.60|ICD9CM|Fail trial lab NOS-unsp|Fail trial lab NOS-unsp +C0157224|T033|PT|660.60|ICD9CM|Unspecified failed trial of labor, unspecified as to episode of care or not applicable|Unspecified failed trial of labor, unspecified as to episode of care or not applicable +C0157225|T047|AB|660.61|ICD9CM|Fail trial lab NOS-deliv|Fail trial lab NOS-deliv +C0157225|T047|PT|660.61|ICD9CM|Unspecified failed trial of labor, delivered, with or without mention of antepartum condition|Unspecified failed trial of labor, delivered, with or without mention of antepartum condition +C0157226|T047|AB|660.63|ICD9CM|Fail trial lab NOS-antep|Fail trial lab NOS-antep +C0157226|T047|PT|660.63|ICD9CM|Unspecified failed trial of labor, antepartum condition or complication|Unspecified failed trial of labor, antepartum condition or complication +C0495263|T046|HT|660.7|ICD9CM|Failed forceps or vacuum extractor, unspecified|Failed forceps or vacuum extractor, unspecified +C0157228|T047|AB|660.70|ICD9CM|Failed forcep NOS-unspec|Failed forcep NOS-unspec +C0157228|T047|PT|660.70|ICD9CM|Failed forceps or vacuum extractor, unspecified, unspecified as to episode of care or not applicable|Failed forceps or vacuum extractor, unspecified, unspecified as to episode of care or not applicable +C0157229|T047|AB|660.71|ICD9CM|Failed forceps NOS-deliv|Failed forceps NOS-deliv +C0157230|T047|AB|660.73|ICD9CM|Fail forceps NOS-antepar|Fail forceps NOS-antepar +C0157230|T047|PT|660.73|ICD9CM|Failed forceps or vacuum extractor, unspecified, antepartum condition or complication|Failed forceps or vacuum extractor, unspecified, antepartum condition or complication +C0157231|T033|HT|660.8|ICD9CM|Other causes of obstructed labor|Other causes of obstructed labor +C0157232|T047|AB|660.80|ICD9CM|Obstruc labor NEC-unspec|Obstruc labor NEC-unspec +C0157232|T047|PT|660.80|ICD9CM|Other causes of obstructed labor, unspecified as to episode of care or not applicable|Other causes of obstructed labor, unspecified as to episode of care or not applicable +C0157233|T047|AB|660.81|ICD9CM|Obstruct labor NEC-deliv|Obstruct labor NEC-deliv +C0157233|T047|PT|660.81|ICD9CM|Other causes of obstructed labor, delivered, with or without mention of antepartum condition|Other causes of obstructed labor, delivered, with or without mention of antepartum condition +C0157234|T047|AB|660.83|ICD9CM|Obstruc labor NEC-antepa|Obstruc labor NEC-antepa +C0157234|T047|PT|660.83|ICD9CM|Other causes of obstructed labor, antepartum condition or complication|Other causes of obstructed labor, antepartum condition or complication +C0152156|T046|HT|660.9|ICD9CM|Unspecified obstructed labor|Unspecified obstructed labor +C0157235|T047|AB|660.90|ICD9CM|Obstruc labor NOS-unspec|Obstruc labor NOS-unspec +C0157235|T047|PT|660.90|ICD9CM|Unspecified obstructed labor, unspecified as to episode of care or not applicable|Unspecified obstructed labor, unspecified as to episode of care or not applicable +C0157236|T047|AB|660.91|ICD9CM|Obstruct labor NOS-deliv|Obstruct labor NOS-deliv +C0157236|T047|PT|660.91|ICD9CM|Unspecified obstructed labor, delivered, with or without mention of antepartum condition|Unspecified obstructed labor, delivered, with or without mention of antepartum condition +C0157237|T047|AB|660.93|ICD9CM|Obstruc labor NOS-antepa|Obstruc labor NOS-antepa +C0157237|T047|PT|660.93|ICD9CM|Unspecified obstructed labor, antepartum condition or complication|Unspecified obstructed labor, antepartum condition or complication +C0473462|T046|HT|661|ICD9CM|Abnormality of forces of labor|Abnormality of forces of labor +C0152159|T047|HT|661.0|ICD9CM|Primary uterine inertia|Primary uterine inertia +C0157239|T047|AB|661.00|ICD9CM|Prim uterine inert-unsp|Prim uterine inert-unsp +C0157239|T047|PT|661.00|ICD9CM|Primary uterine inertia, unspecified as to episode of care or not applicable|Primary uterine inertia, unspecified as to episode of care or not applicable +C0157240|T046|AB|661.01|ICD9CM|Prim uterine inert-deliv|Prim uterine inert-deliv +C0157240|T046|PT|661.01|ICD9CM|Primary uterine inertia, delivered, with or without mention of antepartum condition|Primary uterine inertia, delivered, with or without mention of antepartum condition +C0157241|T047|AB|661.03|ICD9CM|Prim uter inert-antepart|Prim uter inert-antepart +C0157241|T047|PT|661.03|ICD9CM|Primary uterine inertia, antepartum condition or complication|Primary uterine inertia, antepartum condition or complication +C0405169|T046|HT|661.1|ICD9CM|Secondary uterine inertia|Secondary uterine inertia +C0157242|T047|AB|661.10|ICD9CM|Sec uterine inert-unspec|Sec uterine inert-unspec +C0157242|T047|PT|661.10|ICD9CM|Secondary uterine inertia, unspecified as to episode of care or not applicable|Secondary uterine inertia, unspecified as to episode of care or not applicable +C0157243|T047|AB|661.11|ICD9CM|Sec uterine inert-deliv|Sec uterine inert-deliv +C0157243|T047|PT|661.11|ICD9CM|Secondary uterine inertia, delivered, with or without mention of antepartum condition|Secondary uterine inertia, delivered, with or without mention of antepartum condition +C0157244|T047|AB|661.13|ICD9CM|Sec uterine inert-antepa|Sec uterine inert-antepa +C0157244|T047|PT|661.13|ICD9CM|Secondary uterine inertia, antepartum condition or complication|Secondary uterine inertia, antepartum condition or complication +C0477838|T046|HT|661.2|ICD9CM|Other and unspecified uterine inertia|Other and unspecified uterine inertia +C0477838|T046|PT|661.20|ICD9CM|Other and unspecified uterine inertia, unspecified as to episode of care or not applicable|Other and unspecified uterine inertia, unspecified as to episode of care or not applicable +C0477838|T046|AB|661.20|ICD9CM|Uterine inertia NEC-unsp|Uterine inertia NEC-unsp +C0157246|T047|PT|661.21|ICD9CM|Other and unspecified uterine inertia, delivered, with or without mention of antepartum condition|Other and unspecified uterine inertia, delivered, with or without mention of antepartum condition +C0157246|T047|AB|661.21|ICD9CM|Uterine inert NEC-deliv|Uterine inert NEC-deliv +C0157247|T047|PT|661.23|ICD9CM|Other and unspecified uterine inertia, antepartum condition or complication|Other and unspecified uterine inertia, antepartum condition or complication +C0157247|T047|AB|661.23|ICD9CM|Uterine inert NEC-antepa|Uterine inert NEC-antepa +C0473472|T046|HT|661.3|ICD9CM|Precipitate labor|Precipitate labor +C0157248|T047|AB|661.30|ICD9CM|Precipitate labor-unspec|Precipitate labor-unspec +C0157248|T047|PT|661.30|ICD9CM|Precipitate labor, unspecified as to episode of care or not applicable|Precipitate labor, unspecified as to episode of care or not applicable +C0157249|T047|AB|661.31|ICD9CM|Precipitate labor-deliv|Precipitate labor-deliv +C0157249|T047|PT|661.31|ICD9CM|Precipitate labor, delivered, with or without mention of antepartum condition|Precipitate labor, delivered, with or without mention of antepartum condition +C0157250|T047|AB|661.33|ICD9CM|Precipitate labor-antepa|Precipitate labor-antepa +C0157250|T047|PT|661.33|ICD9CM|Precipitate labor, antepartum condition or complication|Precipitate labor, antepartum condition or complication +C0495255|T046|HT|661.4|ICD9CM|Hypertonic, incoordinate, or prolonged uterine contractions|Hypertonic, incoordinate, or prolonged uterine contractions +C0157252|T047|AB|661.40|ICD9CM|Uter dystocia NOS-unspec|Uter dystocia NOS-unspec +C0157253|T047|AB|661.41|ICD9CM|Uter dystocia NOS-deliv|Uter dystocia NOS-deliv +C0157254|T047|PT|661.43|ICD9CM|Hypertonic, incoordinate, or prolonged uterine contractions, antepartum condition or complication|Hypertonic, incoordinate, or prolonged uterine contractions, antepartum condition or complication +C0157254|T047|AB|661.43|ICD9CM|Uter dystocia NOS-antepa|Uter dystocia NOS-antepa +C0013418|T046|HT|661.9|ICD9CM|Unspecified abnormality of labor|Unspecified abnormality of labor +C0157256|T047|AB|661.90|ICD9CM|Abnormal labor NOS-unsp|Abnormal labor NOS-unsp +C0157256|T047|PT|661.90|ICD9CM|Unspecified abnormality of labor, unspecified as to episode of care or not applicable|Unspecified abnormality of labor, unspecified as to episode of care or not applicable +C0473461|T046|AB|661.91|ICD9CM|Abnormal labor NOS-deliv|Abnormal labor NOS-deliv +C0473461|T046|PT|661.91|ICD9CM|Unspecified abnormality of labor, delivered, with or without mention of antepartum condition|Unspecified abnormality of labor, delivered, with or without mention of antepartum condition +C0157258|T047|AB|661.93|ICD9CM|Abnorm labor NOS-antepar|Abnorm labor NOS-antepar +C0157258|T047|PT|661.93|ICD9CM|Unspecified abnormality of labor, antepartum condition or complication|Unspecified abnormality of labor, antepartum condition or complication +C0152154|T046|HT|662|ICD9CM|Long labor|Long labor +C0157259|T046|HT|662.0|ICD9CM|Prolonged first stage of labor|Prolonged first stage of labor +C0157260|T047|AB|662.00|ICD9CM|Prolonged 1st stage-unsp|Prolonged 1st stage-unsp +C0157260|T047|PT|662.00|ICD9CM|Prolonged first stage of labor, unspecified as to episode of care or not applicable|Prolonged first stage of labor, unspecified as to episode of care or not applicable +C0157261|T047|AB|662.01|ICD9CM|Prolong 1st stage-deliv|Prolong 1st stage-deliv +C0157261|T047|PT|662.01|ICD9CM|Prolonged first stage of labor, delivered, with or without mention of antepartum condition|Prolonged first stage of labor, delivered, with or without mention of antepartum condition +C0157262|T047|AB|662.03|ICD9CM|Prolong 1st stage-antepa|Prolong 1st stage-antepa +C0157262|T047|PT|662.03|ICD9CM|Prolonged first stage of labor, antepartum condition or complication|Prolonged first stage of labor, antepartum condition or complication +C0152154|T046|HT|662.1|ICD9CM|Prolonged labor, unspecified|Prolonged labor, unspecified +C0157263|T047|AB|662.10|ICD9CM|Prolonged labor NOS-unsp|Prolonged labor NOS-unsp +C0157263|T047|PT|662.10|ICD9CM|Unspecified prolonged labor, unspecified as to episode of care or not applicable|Unspecified prolonged labor, unspecified as to episode of care or not applicable +C0157264|T047|AB|662.11|ICD9CM|Prolong labor NOS-deliv|Prolong labor NOS-deliv +C0157264|T047|PT|662.11|ICD9CM|Unspecified prolonged labor, delivered, with or without mention of antepartum condition|Unspecified prolonged labor, delivered, with or without mention of antepartum condition +C0157265|T047|AB|662.13|ICD9CM|Prolong labor NOS-antepa|Prolong labor NOS-antepa +C0157265|T047|PT|662.13|ICD9CM|Unspecified prolonged labor, antepartum condition or complication|Unspecified prolonged labor, antepartum condition or complication +C0157266|T046|HT|662.2|ICD9CM|Prolonged second stage of labor|Prolonged second stage of labor +C0157267|T047|AB|662.20|ICD9CM|Prolonged 2nd stage-unsp|Prolonged 2nd stage-unsp +C0157267|T047|PT|662.20|ICD9CM|Prolonged second stage of labor, unspecified as to episode of care or not applicable|Prolonged second stage of labor, unspecified as to episode of care or not applicable +C0157268|T047|AB|662.21|ICD9CM|Prolong 2nd stage-deliv|Prolong 2nd stage-deliv +C0157268|T047|PT|662.21|ICD9CM|Prolonged second stage of labor, delivered, with or without mention of antepartum condition|Prolonged second stage of labor, delivered, with or without mention of antepartum condition +C0157269|T047|AB|662.23|ICD9CM|Prolong 2nd stage-antepa|Prolong 2nd stage-antepa +C0157269|T047|PT|662.23|ICD9CM|Prolonged second stage of labor, antepartum condition or complication|Prolonged second stage of labor, antepartum condition or complication +C0157270|T046|HT|662.3|ICD9CM|Delayed delivery of second twin, triplet, etc.|Delayed delivery of second twin, triplet, etc. +C0157271|T047|AB|662.30|ICD9CM|Delay del 2nd twin-unsp|Delay del 2nd twin-unsp +C0157271|T047|PT|662.30|ICD9CM|Delayed delivery of second twin, triplet, etc., unspecified as to episode of care or not applicable|Delayed delivery of second twin, triplet, etc., unspecified as to episode of care or not applicable +C0157272|T047|AB|662.31|ICD9CM|Delay del 2nd twin-deliv|Delay del 2nd twin-deliv +C0157270|T046|AB|662.33|ICD9CM|Delay del 2 twin-antepar|Delay del 2 twin-antepar +C0157270|T046|PT|662.33|ICD9CM|Delayed delivery of second twin, triplet, etc., antepartum condition or complication|Delayed delivery of second twin, triplet, etc., antepartum condition or complication +C0157307|T046|HT|663|ICD9CM|Umbilical cord complications during labor and delivery|Umbilical cord complications during labor and delivery +C0157275|T046|HT|663.0|ICD9CM|Prolapse of cord complicating labor and delivery|Prolapse of cord complicating labor and delivery +C0157275|T046|AB|663.00|ICD9CM|Cord prolapse-unspec|Cord prolapse-unspec +C0157277|T047|AB|663.01|ICD9CM|Cord prolapse-delivered|Cord prolapse-delivered +C0157278|T047|AB|663.03|ICD9CM|Cord prolapse-antepartum|Cord prolapse-antepartum +C0157278|T047|PT|663.03|ICD9CM|Prolapse of cord complicating labor and delivery, antepartum condition or complication|Prolapse of cord complicating labor and delivery, antepartum condition or complication +C0566742|T046|HT|663.1|ICD9CM|Cord around neck, with compression, complicating labor and delivery|Cord around neck, with compression, complicating labor and delivery +C0157280|T047|AB|663.10|ICD9CM|Cord around neck-unspec|Cord around neck-unspec +C0157281|T046|AB|663.11|ICD9CM|Cord around neck-deliver|Cord around neck-deliver +C0157282|T046|AB|663.13|ICD9CM|Cord around neck-antepar|Cord around neck-antepar +C0157283|T046|HT|663.2|ICD9CM|Other and unspecified cord entanglement, with compression, complicating labor and delivery|Other and unspecified cord entanglement, with compression, complicating labor and delivery +C0157284|T047|AB|663.20|ICD9CM|Cord compress NEC-unspec|Cord compress NEC-unspec +C0157285|T047|AB|663.21|ICD9CM|Cord compress NEC-deliv|Cord compress NEC-deliv +C0157286|T047|AB|663.23|ICD9CM|Cord compres NEC-antepar|Cord compres NEC-antepar +C0157288|T047|AB|663.30|ICD9CM|Cord entangle NEC-unspec|Cord entangle NEC-unspec +C0157289|T047|AB|663.31|ICD9CM|Cord entangle NEC-deliv|Cord entangle NEC-deliv +C0157290|T047|AB|663.33|ICD9CM|Cord entangl NEC-antepar|Cord entangl NEC-antepar +C0157291|T047|HT|663.4|ICD9CM|Short cord complicating labor and delivery|Short cord complicating labor and delivery +C0157292|T047|PT|663.40|ICD9CM|Short cord complicating labor and delivery, unspecified as to episode of care or not applicable|Short cord complicating labor and delivery, unspecified as to episode of care or not applicable +C0157292|T047|AB|663.40|ICD9CM|Short cord-unspecified|Short cord-unspecified +C0157293|T047|AB|663.41|ICD9CM|Short cord-delivered|Short cord-delivered +C0157294|T047|PT|663.43|ICD9CM|Short cord complicating labor and delivery, antepartum condition or complication|Short cord complicating labor and delivery, antepartum condition or complication +C0157294|T047|AB|663.43|ICD9CM|Short cord-antepartum|Short cord-antepartum +C0495270|T047|HT|663.5|ICD9CM|Vasa previa complicating labor and delivery|Vasa previa complicating labor and delivery +C0495270|T047|PT|663.50|ICD9CM|Vasa previa complicating labor and delivery, unspecified as to episode of care or not applicable|Vasa previa complicating labor and delivery, unspecified as to episode of care or not applicable +C0495270|T047|AB|663.50|ICD9CM|Vasa previa-unspecified|Vasa previa-unspecified +C0157297|T047|AB|663.51|ICD9CM|Vasa previa-delivered|Vasa previa-delivered +C0269852|T190|PT|663.53|ICD9CM|Vasa previa complicating labor and delivery, antepartum condition or complication|Vasa previa complicating labor and delivery, antepartum condition or complication +C0269852|T190|AB|663.53|ICD9CM|Vasa previa-antepartum|Vasa previa-antepartum +C0157299|T047|HT|663.6|ICD9CM|Vascular lesions of cord complicating labor and delivery|Vascular lesions of cord complicating labor and delivery +C0157300|T047|AB|663.60|ICD9CM|Vasc lesion cord-unspec|Vasc lesion cord-unspec +C0157301|T047|AB|663.61|ICD9CM|Vasc lesion cord-deliver|Vasc lesion cord-deliver +C0157302|T047|AB|663.63|ICD9CM|Vasc lesion cord-antepar|Vasc lesion cord-antepar +C0157302|T047|PT|663.63|ICD9CM|Vascular lesions of cord complicating labor and delivery, antepartum condition or complication|Vascular lesions of cord complicating labor and delivery, antepartum condition or complication +C0157303|T046|HT|663.8|ICD9CM|Other umbilical cord complications during labor and delivery|Other umbilical cord complications during labor and delivery +C0157304|T047|AB|663.80|ICD9CM|Cord complicat NEC-unsp|Cord complicat NEC-unsp +C0157305|T047|AB|663.81|ICD9CM|Cord complicat NEC-deliv|Cord complicat NEC-deliv +C0157306|T047|AB|663.83|ICD9CM|Cord compl NEC-antepart|Cord compl NEC-antepart +C0157307|T046|HT|663.9|ICD9CM|Unspecified umbilical cord complication during labor and delivery|Unspecified umbilical cord complication during labor and delivery +C0157308|T047|AB|663.90|ICD9CM|Cord complicat NOS-unsp|Cord complicat NOS-unsp +C0157309|T047|AB|663.91|ICD9CM|Cord complicat NOS-deliv|Cord complicat NOS-deliv +C0157310|T046|AB|663.93|ICD9CM|Cord compl NOS-antepart|Cord compl NOS-antepart +C0157311|T037|HT|664|ICD9CM|Trauma to perineum and vulva during delivery|Trauma to perineum and vulva during delivery +C0269863|T037|HT|664.0|ICD9CM|First-degree perineal laceration during delivery|First-degree perineal laceration during delivery +C0157313|T037|AB|664.00|ICD9CM|Del w 1 deg lacerat-unsp|Del w 1 deg lacerat-unsp +C0157313|T037|PT|664.00|ICD9CM|First-degree perineal laceration, unspecified as to episode of care or not applicable|First-degree perineal laceration, unspecified as to episode of care or not applicable +C1812626|T037|AB|664.01|ICD9CM|Del w 1 deg lacerat-del|Del w 1 deg lacerat-del +C1812626|T037|PT|664.01|ICD9CM|First-degree perineal laceration, delivered, with or without mention of antepartum condition|First-degree perineal laceration, delivered, with or without mention of antepartum condition +C0157315|T037|AB|664.04|ICD9CM|Del w 1 deg lac-postpart|Del w 1 deg lac-postpart +C0157315|T037|PT|664.04|ICD9CM|First-degree perineal laceration, postpartum condition or complication|First-degree perineal laceration, postpartum condition or complication +C0269870|T037|HT|664.1|ICD9CM|Second-degree perineal laceration during delivery|Second-degree perineal laceration during delivery +C0157317|T037|AB|664.10|ICD9CM|Del w 2 deg lacerat-unsp|Del w 2 deg lacerat-unsp +C0157317|T037|PT|664.10|ICD9CM|Second-degree perineal laceration, unspecified as to episode of care or not applicable|Second-degree perineal laceration, unspecified as to episode of care or not applicable +C0269870|T037|AB|664.11|ICD9CM|Del w 2 deg lacerat-del|Del w 2 deg lacerat-del +C0269870|T037|PT|664.11|ICD9CM|Second-degree perineal laceration, delivered, with or without mention of antepartum condition|Second-degree perineal laceration, delivered, with or without mention of antepartum condition +C0490051|T037|AB|664.14|ICD9CM|Del w 2 deg lac-postpart|Del w 2 deg lac-postpart +C0490051|T037|PT|664.14|ICD9CM|Second-degree perineal laceration, postpartum condition or complication|Second-degree perineal laceration, postpartum condition or complication +C0269874|T037|HT|664.2|ICD9CM|Third-degree perineal laceration during delivery|Third-degree perineal laceration during delivery +C0157321|T037|AB|664.20|ICD9CM|Del w 3 deg lacerat-unsp|Del w 3 deg lacerat-unsp +C0157321|T037|PT|664.20|ICD9CM|Third-degree perineal laceration, unspecified as to episode of care or not applicable|Third-degree perineal laceration, unspecified as to episode of care or not applicable +C0269874|T037|AB|664.21|ICD9CM|Del w 3 deg lacerat-del|Del w 3 deg lacerat-del +C0269874|T037|PT|664.21|ICD9CM|Third-degree perineal laceration, delivered, with or without mention of antepartum condition|Third-degree perineal laceration, delivered, with or without mention of antepartum condition +C0157323|T037|AB|664.24|ICD9CM|Del w 3 deg lac-postpart|Del w 3 deg lac-postpart +C0157323|T037|PT|664.24|ICD9CM|Third-degree perineal laceration, postpartum condition or complication|Third-degree perineal laceration, postpartum condition or complication +C1275806|T033|HT|664.3|ICD9CM|Fourth-degree perineal laceration during delivery|Fourth-degree perineal laceration during delivery +C0157325|T037|AB|664.30|ICD9CM|Del w 4 deg lacerat-unsp|Del w 4 deg lacerat-unsp +C0157325|T037|PT|664.30|ICD9CM|Fourth-degree perineal laceration, unspecified as to episode of care or not applicable|Fourth-degree perineal laceration, unspecified as to episode of care or not applicable +C1275806|T033|AB|664.31|ICD9CM|Del w 4 deg lacerat-del|Del w 4 deg lacerat-del +C1275806|T033|PT|664.31|ICD9CM|Fourth-degree perineal laceration, delivered, with or without mention of antepartum condition|Fourth-degree perineal laceration, delivered, with or without mention of antepartum condition +C0157327|T037|AB|664.34|ICD9CM|Del w 4 deg lac-postpart|Del w 4 deg lac-postpart +C0157327|T037|PT|664.34|ICD9CM|Fourth-degree perineal laceration, postpartum condition or complication|Fourth-degree perineal laceration, postpartum condition or complication +C0269859|T037|HT|664.4|ICD9CM|Unspecified perineal laceration during delivery|Unspecified perineal laceration during delivery +C0157329|T047|AB|664.40|ICD9CM|Ob perineal lac NOS-unsp|Ob perineal lac NOS-unsp +C0157329|T047|PT|664.40|ICD9CM|Unspecified perineal laceration, unspecified as to episode of care or not applicable|Unspecified perineal laceration, unspecified as to episode of care or not applicable +C0269859|T037|AB|664.41|ICD9CM|Ob perineal lac NOS-del|Ob perineal lac NOS-del +C0269859|T037|PT|664.41|ICD9CM|Unspecified perineal laceration, delivered, with or without mention of antepartum condition|Unspecified perineal laceration, delivered, with or without mention of antepartum condition +C0157331|T037|AB|664.44|ICD9CM|Perineal lac NOS-postpar|Perineal lac NOS-postpar +C0157331|T037|PT|664.44|ICD9CM|Unspecified perineal laceration, postpartum condition or complication|Unspecified perineal laceration, postpartum condition or complication +C0157332|T037|HT|664.5|ICD9CM|Vulvar and perineal hematoma during delivery|Vulvar and perineal hematoma during delivery +C0157333|T047|AB|664.50|ICD9CM|Ob perineal hematom-unsp|Ob perineal hematom-unsp +C0157333|T047|PT|664.50|ICD9CM|Vulvar and perineal hematoma, unspecified as to episode of care or not applicable|Vulvar and perineal hematoma, unspecified as to episode of care or not applicable +C0157334|T047|AB|664.51|ICD9CM|Ob perineal hematoma-del|Ob perineal hematoma-del +C0157334|T047|PT|664.51|ICD9CM|Vulvar and perineal hematoma, delivered, with or without mention of antepartum condition|Vulvar and perineal hematoma, delivered, with or without mention of antepartum condition +C0157335|T047|AB|664.54|ICD9CM|Perin hematoma-postpart|Perin hematoma-postpart +C0157335|T047|PT|664.54|ICD9CM|Vulvar and perineal hematoma, postpartum condition or complication|Vulvar and perineal hematoma, postpartum condition or complication +C1955493|T047|HT|664.6|ICD9CM|Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration|Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration +C1955490|T047|AB|664.60|ICD9CM|Anal sphincter tear NOS|Anal sphincter tear NOS +C1955491|T047|AB|664.61|ICD9CM|Anal sphincter tear-del|Anal sphincter tear-del +C1955492|T047|AB|664.64|ICD9CM|Anal sphinctr tear w p/p|Anal sphinctr tear w p/p +C0157336|T037|HT|664.8|ICD9CM|Other specified trauma to perineum and vulva during delivery|Other specified trauma to perineum and vulva during delivery +C0157337|T037|AB|664.80|ICD9CM|Ob perin traum NEC-unsp|Ob perin traum NEC-unsp +C0157337|T037|PT|664.80|ICD9CM|Other specified trauma to perineum and vulva, unspecified as to episode of care or not applicable|Other specified trauma to perineum and vulva, unspecified as to episode of care or not applicable +C0157338|T037|AB|664.81|ICD9CM|Ob perineal trau NEC-del|Ob perineal trau NEC-del +C0157339|T037|PT|664.84|ICD9CM|Other specified trauma to perineum and vulva, postpartum condition or complication|Other specified trauma to perineum and vulva, postpartum condition or complication +C0157339|T037|AB|664.84|ICD9CM|Perin traum NEC-postpart|Perin traum NEC-postpart +C0157340|T037|HT|664.9|ICD9CM|Unspecified trauma to perineum and vulva during delivery|Unspecified trauma to perineum and vulva during delivery +C0157341|T037|AB|664.90|ICD9CM|Ob perin traum NOS-unsp|Ob perin traum NOS-unsp +C0157341|T037|PT|664.90|ICD9CM|Unspecified trauma to perineum and vulva, unspecified as to episode of care or not applicable|Unspecified trauma to perineum and vulva, unspecified as to episode of care or not applicable +C0157342|T037|AB|664.91|ICD9CM|Ob perineal trau NOS-del|Ob perineal trau NOS-del +C0157342|T037|PT|664.91|ICD9CM|Unspecified trauma to perineum and vulva, delivered, with or without mention of antepartum condition|Unspecified trauma to perineum and vulva, delivered, with or without mention of antepartum condition +C0157343|T037|AB|664.94|ICD9CM|Perin traum NOS-postpart|Perin traum NOS-postpart +C0157343|T037|PT|664.94|ICD9CM|Unspecified trauma to perineum and vulva, postpartum condition or complication|Unspecified trauma to perineum and vulva, postpartum condition or complication +C0157344|T037|HT|665|ICD9CM|Other obstetrical trauma|Other obstetrical trauma +C0157345|T037|HT|665.0|ICD9CM|Rupture of uterus before onset of labor|Rupture of uterus before onset of labor +C0157346|T047|AB|665.00|ICD9CM|Prelabor rupt uter-unsp|Prelabor rupt uter-unsp +C0157346|T047|PT|665.00|ICD9CM|Rupture of uterus before onset of labor, unspecified as to episode of care or not applicable|Rupture of uterus before onset of labor, unspecified as to episode of care or not applicable +C0157347|T046|AB|665.01|ICD9CM|Prelabor rupt uterus-del|Prelabor rupt uterus-del +C0157347|T046|PT|665.01|ICD9CM|Rupture of uterus before onset of labor, delivered, with or without mention of antepartum condition|Rupture of uterus before onset of labor, delivered, with or without mention of antepartum condition +C1812625|T047|AB|665.03|ICD9CM|Prelab rupt uter-antepar|Prelab rupt uter-antepar +C1812625|T047|PT|665.03|ICD9CM|Rupture of uterus before onset of labor, antepartum condition or complication|Rupture of uterus before onset of labor, antepartum condition or complication +C3812903|T046|HT|665.1|ICD9CM|Rupture of uterus during labor|Rupture of uterus during labor +C0157350|T037|PT|665.10|ICD9CM|Rupture of uterus during labor, unspecified as to episode of care or not applicable|Rupture of uterus during labor, unspecified as to episode of care or not applicable +C0157350|T037|AB|665.10|ICD9CM|Rupture uterus NOS-unsp|Rupture uterus NOS-unsp +C0157351|T037|PT|665.11|ICD9CM|Rupture of uterus during labor, delivered, with or without mention of antepartum condition|Rupture of uterus during labor, delivered, with or without mention of antepartum condition +C0157351|T037|AB|665.11|ICD9CM|Rupture uterus NOS-deliv|Rupture uterus NOS-deliv +C0162482|T046|HT|665.2|ICD9CM|Obstetrical inversion of uterus|Obstetrical inversion of uterus +C0157355|T047|AB|665.20|ICD9CM|Inversion of uterus-unsp|Inversion of uterus-unsp +C0157355|T047|PT|665.20|ICD9CM|Inversion of uterus, unspecified as to episode of care or not applicable|Inversion of uterus, unspecified as to episode of care or not applicable +C0157356|T047|AB|665.22|ICD9CM|Invers uterus-del w p/p|Invers uterus-del w p/p +C0157356|T047|PT|665.22|ICD9CM|Inversion of uterus, delivered, with mention of postpartum complication|Inversion of uterus, delivered, with mention of postpartum complication +C0157357|T046|AB|665.24|ICD9CM|Invers uterus-postpart|Invers uterus-postpart +C0157357|T046|PT|665.24|ICD9CM|Inversion of uterus, postpartum condition or complication|Inversion of uterus, postpartum condition or complication +C0157358|T037|HT|665.3|ICD9CM|Obstetrical laceration of cervix|Obstetrical laceration of cervix +C0157359|T047|AB|665.30|ICD9CM|Lacerat of cervix-unspec|Lacerat of cervix-unspec +C0157359|T047|PT|665.30|ICD9CM|Laceration of cervix, unspecified as to episode of care or not applicable|Laceration of cervix, unspecified as to episode of care or not applicable +C0157358|T037|AB|665.31|ICD9CM|Lacerat of cervix-deliv|Lacerat of cervix-deliv +C0157358|T037|PT|665.31|ICD9CM|Laceration of cervix, delivered, with or without mention of antepartum condition|Laceration of cervix, delivered, with or without mention of antepartum condition +C0157361|T047|AB|665.34|ICD9CM|Lacer of cervix-postpart|Lacer of cervix-postpart +C0157361|T047|PT|665.34|ICD9CM|Laceration of cervix, postpartum condition or complication|Laceration of cervix, postpartum condition or complication +C0157362|T037|HT|665.4|ICD9CM|High vaginal laceration during and after labor|High vaginal laceration during and after labor +C0157363|T047|AB|665.40|ICD9CM|High vaginal lacer-unsp|High vaginal lacer-unsp +C0157363|T047|PT|665.40|ICD9CM|High vaginal laceration, unspecified as to episode of care or not applicable|High vaginal laceration, unspecified as to episode of care or not applicable +C0157364|T037|AB|665.41|ICD9CM|High vaginal lacer-deliv|High vaginal lacer-deliv +C0157364|T037|PT|665.41|ICD9CM|High vaginal laceration, delivered, with or without mention of antepartum condition|High vaginal laceration, delivered, with or without mention of antepartum condition +C0157365|T037|AB|665.44|ICD9CM|High vaginal lac-postpar|High vaginal lac-postpar +C0157365|T037|PT|665.44|ICD9CM|High vaginal laceration, postpartum condition or complication|High vaginal laceration, postpartum condition or complication +C0157366|T037|HT|665.5|ICD9CM|Other obstetrical injury to pelvic organs|Other obstetrical injury to pelvic organs +C0157367|T037|AB|665.50|ICD9CM|Ob inj pelv org NEC-unsp|Ob inj pelv org NEC-unsp +C0157367|T037|PT|665.50|ICD9CM|Other injury to pelvic organs, unspecified as to episode of care or not applicable|Other injury to pelvic organs, unspecified as to episode of care or not applicable +C0157368|T037|AB|665.51|ICD9CM|Ob inj pelv org NEC-del|Ob inj pelv org NEC-del +C0157368|T037|PT|665.51|ICD9CM|Other injury to pelvic organs, delivered, with or without mention of antepartum condition|Other injury to pelvic organs, delivered, with or without mention of antepartum condition +C0157369|T037|AB|665.54|ICD9CM|Inj pelv org NEC-postpar|Inj pelv org NEC-postpar +C0157369|T037|PT|665.54|ICD9CM|Other injury to pelvic organs, postpartum condition or complication|Other injury to pelvic organs, postpartum condition or complication +C0269891|T037|HT|665.6|ICD9CM|Obstetrical damage to pelvic joints and ligaments|Obstetrical damage to pelvic joints and ligaments +C0157371|T037|PT|665.60|ICD9CM|Damage to pelvic joints and ligaments, unspecified as to episode of care or not applicable|Damage to pelvic joints and ligaments, unspecified as to episode of care or not applicable +C0157371|T037|AB|665.60|ICD9CM|Damage to pelvic jt-unsp|Damage to pelvic jt-unsp +C0269891|T037|PT|665.61|ICD9CM|Damage to pelvic joints and ligaments, delivered, with or without mention of antepartum condition|Damage to pelvic joints and ligaments, delivered, with or without mention of antepartum condition +C0269891|T037|AB|665.61|ICD9CM|Damage to pelvic jt-del|Damage to pelvic jt-del +C0157373|T037|AB|665.64|ICD9CM|Damage pelvic jt-postpar|Damage pelvic jt-postpar +C0157373|T037|PT|665.64|ICD9CM|Damage to pelvic joints and ligaments, postpartum condition or complication|Damage to pelvic joints and ligaments, postpartum condition or complication +C0269895|T046|HT|665.7|ICD9CM|Obstetrical pelvic hematoma|Obstetrical pelvic hematoma +C0157375|T047|AB|665.70|ICD9CM|Ob pelvic hematoma-unsp|Ob pelvic hematoma-unsp +C0157375|T047|PT|665.70|ICD9CM|Pelvic hematoma, unspecified as to episode of care or not applicable|Pelvic hematoma, unspecified as to episode of care or not applicable +C0269895|T046|AB|665.71|ICD9CM|Ob pelvic hematoma-deliv|Ob pelvic hematoma-deliv +C0269895|T046|PT|665.71|ICD9CM|Pelvic hematoma, delivered, with or without mention of antepartum condition|Pelvic hematoma, delivered, with or without mention of antepartum condition +C0157377|T047|AB|665.72|ICD9CM|Pelvic hematom-del w pp|Pelvic hematom-del w pp +C0157377|T047|PT|665.72|ICD9CM|Pelvic hematoma, delivered with mention of postpartum complication|Pelvic hematoma, delivered with mention of postpartum complication +C0157378|T047|AB|665.74|ICD9CM|Pelvic hematoma-postpart|Pelvic hematoma-postpart +C0157378|T047|PT|665.74|ICD9CM|Pelvic hematoma, postpartum condition or complication|Pelvic hematoma, postpartum condition or complication +C0157379|T037|HT|665.8|ICD9CM|Other specified obstetrical trauma|Other specified obstetrical trauma +C0157380|T037|AB|665.80|ICD9CM|Ob trauma NEC-unspec|Ob trauma NEC-unspec +C0157380|T037|PT|665.80|ICD9CM|Other specified obstetrical trauma, unspecified as to episode of care or not applicable|Other specified obstetrical trauma, unspecified as to episode of care or not applicable +C0157381|T037|AB|665.81|ICD9CM|Ob trauma NEC-delivered|Ob trauma NEC-delivered +C0157381|T037|PT|665.81|ICD9CM|Other specified obstetrical trauma, delivered, with or without mention of antepartum condition|Other specified obstetrical trauma, delivered, with or without mention of antepartum condition +C0157382|T037|AB|665.82|ICD9CM|Ob trauma NEC-del w p/p|Ob trauma NEC-del w p/p +C0157382|T037|PT|665.82|ICD9CM|Other specified obstetrical trauma, delivered, with mention of postpartum complication|Other specified obstetrical trauma, delivered, with mention of postpartum complication +C0157383|T037|AB|665.83|ICD9CM|Ob trauma NEC-antepartum|Ob trauma NEC-antepartum +C0157383|T037|PT|665.83|ICD9CM|Other specified obstetrical trauma, antepartum condition or complication|Other specified obstetrical trauma, antepartum condition or complication +C0157384|T037|AB|665.84|ICD9CM|Ob trauma NEC-postpartum|Ob trauma NEC-postpartum +C0157384|T037|PT|665.84|ICD9CM|Other specified obstetrical trauma, postpartum condition or complication|Other specified obstetrical trauma, postpartum condition or complication +C0269858|T037|HT|665.9|ICD9CM|Unspecified obstetrical trauma|Unspecified obstetrical trauma +C0157386|T037|AB|665.90|ICD9CM|Ob trauma NOS-unspec|Ob trauma NOS-unspec +C0157386|T037|PT|665.90|ICD9CM|Unspecified obstetrical trauma, unspecified as to episode of care or not applicable|Unspecified obstetrical trauma, unspecified as to episode of care or not applicable +C0157387|T037|AB|665.91|ICD9CM|Ob trauma NOS-delivered|Ob trauma NOS-delivered +C0157387|T037|PT|665.91|ICD9CM|Unspecified obstetrical trauma, delivered, with or without mention of antepartum condition|Unspecified obstetrical trauma, delivered, with or without mention of antepartum condition +C0157388|T037|AB|665.92|ICD9CM|Ob trauma NOS-del w p/p|Ob trauma NOS-del w p/p +C0157388|T037|PT|665.92|ICD9CM|Unspecified obstetrical trauma, delivered, with mention of postpartum complication|Unspecified obstetrical trauma, delivered, with mention of postpartum complication +C0157389|T037|AB|665.93|ICD9CM|Ob trauma NOS-antepartum|Ob trauma NOS-antepartum +C0157389|T037|PT|665.93|ICD9CM|Unspecified obstetrical trauma, antepartum condition or complication|Unspecified obstetrical trauma, antepartum condition or complication +C0157390|T037|AB|665.94|ICD9CM|Ob trauma NOS-postpartum|Ob trauma NOS-postpartum +C0157390|T037|PT|665.94|ICD9CM|Unspecified obstetrical trauma, postpartum condition or complication|Unspecified obstetrical trauma, postpartum condition or complication +C0032797|T046|HT|666|ICD9CM|Postpartum hemorrhage|Postpartum hemorrhage +C0269898|T046|HT|666.0|ICD9CM|Third-stage postpartum hemorrhage|Third-stage postpartum hemorrhage +C0157392|T037|AB|666.00|ICD9CM|Third-stage hem-unspec|Third-stage hem-unspec +C0157392|T037|PT|666.00|ICD9CM|Third-stage postpartum hemorrhage, unspecified as to episode of care or not applicable|Third-stage postpartum hemorrhage, unspecified as to episode of care or not applicable +C0157393|T046|PT|666.02|ICD9CM|Third-stage postpartum hemorrhage, delivered, with mention of postpartum complication|Third-stage postpartum hemorrhage, delivered, with mention of postpartum complication +C0157393|T046|AB|666.02|ICD9CM|Thrd-stage hem-del w p/p|Thrd-stage hem-del w p/p +C0269898|T046|AB|666.04|ICD9CM|Third-stage hem-postpart|Third-stage hem-postpart +C0269898|T046|PT|666.04|ICD9CM|Third-stage postpartum hemorrhage, postpartum condition or complication|Third-stage postpartum hemorrhage, postpartum condition or complication +C0220887|T046|HT|666.1|ICD9CM|Other immediate postpartum hemorrhage|Other immediate postpartum hemorrhage +C0157394|T046|PT|666.10|ICD9CM|Other immediate postpartum hemorrhage, unspecified as to episode of care or not applicable|Other immediate postpartum hemorrhage, unspecified as to episode of care or not applicable +C0157394|T046|AB|666.10|ICD9CM|Postpartum hem NEC-unsp|Postpartum hem NEC-unsp +C0157395|T046|PT|666.12|ICD9CM|Other immediate postpartum hemorrhage, delivered, with mention of postpartum complication|Other immediate postpartum hemorrhage, delivered, with mention of postpartum complication +C0157395|T046|AB|666.12|ICD9CM|Postpa hem NEC-del w p/p|Postpa hem NEC-del w p/p +C0220887|T046|PT|666.14|ICD9CM|Other immediate postpartum hemorrhage, postpartum condition or complication|Other immediate postpartum hemorrhage, postpartum condition or complication +C0220887|T046|AB|666.14|ICD9CM|Postpart hem NEC-postpar|Postpart hem NEC-postpar +C0473508|T046|HT|666.2|ICD9CM|Delayed and secondary postpartum hemorrhage|Delayed and secondary postpartum hemorrhage +C0473508|T046|AB|666.20|ICD9CM|Delay p/part hem-unspec|Delay p/part hem-unspec +C0473508|T046|PT|666.20|ICD9CM|Delayed and secondary postpartum hemorrhage, unspecified as to episode of care or not applicable|Delayed and secondary postpartum hemorrhage, unspecified as to episode of care or not applicable +C0157398|T047|AB|666.22|ICD9CM|Delay p/p hem-del w p/p|Delay p/p hem-del w p/p +C0157398|T047|PT|666.22|ICD9CM|Delayed and secondary postpartum hemorrhage, delivered, with mention of postpartum complication|Delayed and secondary postpartum hemorrhage, delivered, with mention of postpartum complication +C0473508|T046|AB|666.24|ICD9CM|Delay p/part hem-postpar|Delay p/part hem-postpar +C0473508|T046|PT|666.24|ICD9CM|Delayed and secondary postpartum hemorrhage, postpartum condition or complication|Delayed and secondary postpartum hemorrhage, postpartum condition or complication +C0157403|T047|HT|666.3|ICD9CM|Postpartum coagulation defects|Postpartum coagulation defects +C0157401|T047|AB|666.30|ICD9CM|Postpart coagul def-unsp|Postpart coagul def-unsp +C0157401|T047|PT|666.30|ICD9CM|Postpartum coagulation defects, unspecified as to episode of care or not applicable|Postpartum coagulation defects, unspecified as to episode of care or not applicable +C0157402|T047|AB|666.32|ICD9CM|P/p coag def-del w p/p|P/p coag def-del w p/p +C0157402|T047|PT|666.32|ICD9CM|Postpartum coagulation defects, delivered, with mention of postpartum complication|Postpartum coagulation defects, delivered, with mention of postpartum complication +C0157403|T047|AB|666.34|ICD9CM|Postpart coag def-postpa|Postpart coag def-postpa +C0157403|T047|PT|666.34|ICD9CM|Postpartum coagulation defects, postpartum condition or complication|Postpartum coagulation defects, postpartum condition or complication +C0157404|T046|HT|667|ICD9CM|Retained placenta or membranes, without hemorrhage|Retained placenta or membranes, without hemorrhage +C0269905|T046|HT|667.0|ICD9CM|Retained placenta without hemorrhage|Retained placenta without hemorrhage +C0157405|T047|AB|667.00|ICD9CM|Retain placenta NOS-unsp|Retain placenta NOS-unsp +C0157405|T047|PT|667.00|ICD9CM|Retained placenta without hemorrhage, unspecified as to episode of care or not applicable|Retained placenta without hemorrhage, unspecified as to episode of care or not applicable +C0157406|T047|PT|667.02|ICD9CM|Retained placenta without hemorrhage, delivered, with mention of postpartum complication|Retained placenta without hemorrhage, delivered, with mention of postpartum complication +C0157406|T047|AB|667.02|ICD9CM|Retnd plac NOS-del w p/p|Retnd plac NOS-del w p/p +C0157407|T047|AB|667.04|ICD9CM|Retain plac NOS-postpart|Retain plac NOS-postpart +C0157407|T047|PT|667.04|ICD9CM|Retained placenta without hemorrhage, postpartum condition or complication|Retained placenta without hemorrhage, postpartum condition or complication +C0157408|T046|HT|667.1|ICD9CM|Retained portions of placenta or membranes, without hemorrhage|Retained portions of placenta or membranes, without hemorrhage +C0157409|T047|AB|667.10|ICD9CM|Retain prod concept-unsp|Retain prod concept-unsp +C0157410|T047|AB|667.12|ICD9CM|Ret prod conc-del w p/p|Ret prod conc-del w p/p +C0157411|T047|AB|667.14|ICD9CM|Ret prod concept-postpar|Ret prod concept-postpar +C0157411|T047|PT|667.14|ICD9CM|Retained portions of placenta or membranes, without hemorrhage, postpartum condition or complication|Retained portions of placenta or membranes, without hemorrhage, postpartum condition or complication +C0157412|T046|HT|668|ICD9CM|Complications of the administration of anesthetic or other sedation in labor and delivery|Complications of the administration of anesthetic or other sedation in labor and delivery +C0157413|T037|HT|668.0|ICD9CM|Pulmonary complications of anesthesia or other sedation in labor and delivery|Pulmonary complications of anesthesia or other sedation in labor and delivery +C0157414|T047|AB|668.00|ICD9CM|Pulm compl in del-unspec|Pulm compl in del-unspec +C0157415|T047|AB|668.01|ICD9CM|Pulm compl in del-deliv|Pulm compl in del-deliv +C0157416|T047|AB|668.02|ICD9CM|Pulm complic-del w p/p|Pulm complic-del w p/p +C0157417|T047|AB|668.03|ICD9CM|Pulm complicat-antepart|Pulm complicat-antepart +C0157418|T047|AB|668.04|ICD9CM|Pulm complicat-postpart|Pulm complicat-postpart +C0269916|T046|HT|668.1|ICD9CM|Cardiac complications of anesthesia or other sedation in labor and delivery|Cardiac complications of anesthesia or other sedation in labor and delivery +C0157420|T047|AB|668.10|ICD9CM|Heart compl in del-unsp|Heart compl in del-unsp +C0157421|T047|AB|668.11|ICD9CM|Heart compl in del-deliv|Heart compl in del-deliv +C0157422|T047|AB|668.12|ICD9CM|Heart compl-del w p/p|Heart compl-del w p/p +C0157423|T047|AB|668.13|ICD9CM|Heart complic-antepart|Heart complic-antepart +C0157424|T047|AB|668.14|ICD9CM|Heart complic-postpart|Heart complic-postpart +C0157425|T046|HT|668.2|ICD9CM|Central nervous system complications of anesthesia or other sedation in labor and delivery|Central nervous system complications of anesthesia or other sedation in labor and delivery +C0157426|T037|AB|668.20|ICD9CM|Cns compl labor/del-unsp|Cns compl labor/del-unsp +C0157427|T047|AB|668.21|ICD9CM|Cns compl lab/del-deliv|Cns compl lab/del-deliv +C0157428|T037|AB|668.22|ICD9CM|Cns complic-del w p/p|Cns complic-del w p/p +C0157429|T047|AB|668.23|ICD9CM|Cns compl in del-antepar|Cns compl in del-antepar +C0157430|T047|AB|668.24|ICD9CM|Cns compl in del-postpar|Cns compl in del-postpar +C0157431|T046|HT|668.8|ICD9CM|Other complications of anesthesia or other sedation in labor and delivery|Other complications of anesthesia or other sedation in labor and delivery +C0157432|T037|AB|668.80|ICD9CM|Anesth comp del NEC-unsp|Anesth comp del NEC-unsp +C0157436|T037|AB|668.81|ICD9CM|Anesth compl NEC-deliver|Anesth compl NEC-deliver +C0157434|T037|AB|668.82|ICD9CM|Anesth compl NEC-del p/p|Anesth compl NEC-del p/p +C0157435|T037|AB|668.83|ICD9CM|Anesth compl antepartum|Anesth compl antepartum +C0157436|T037|AB|668.84|ICD9CM|Anesth compl-postpartum|Anesth compl-postpartum +C0157437|T033|HT|668.9|ICD9CM|Unspecified complication of anesthesia or other sedation in labor and delivery|Unspecified complication of anesthesia or other sedation in labor and delivery +C0157438|T037|AB|668.90|ICD9CM|Anesth comp del NOS-unsp|Anesth comp del NOS-unsp +C0157439|T037|AB|668.91|ICD9CM|Anesth compl NOS-deliver|Anesth compl NOS-deliver +C0157440|T037|AB|668.92|ICD9CM|Anesth compl NOS-del p/p|Anesth compl NOS-del p/p +C0157441|T037|AB|668.93|ICD9CM|Anesth compl-antepartum|Anesth compl-antepartum +C0157442|T037|AB|668.94|ICD9CM|Anesth compl-postpartum|Anesth compl-postpartum +C0868755|T046|HT|669|ICD9CM|Other complications of labor and delivery, not elsewhere classified|Other complications of labor and delivery, not elsewhere classified +C0473485|T046|HT|669.0|ICD9CM|Maternal distress|Maternal distress +C0157445|T047|AB|669.00|ICD9CM|Maternal distress-unspec|Maternal distress-unspec +C0157446|T047|AB|669.01|ICD9CM|Maternal distress-deliv|Maternal distress-deliv +C0157447|T047|AB|669.02|ICD9CM|Matern distres-del w p/p|Matern distres-del w p/p +C0157448|T047|AB|669.03|ICD9CM|Matern distress-antepar|Matern distress-antepar +C0157448|T047|PT|669.03|ICD9CM|Maternal distress complicating labor and delivery, antepartum condition or complication|Maternal distress complicating labor and delivery, antepartum condition or complication +C0157449|T047|AB|669.04|ICD9CM|Matern distress-postpart|Matern distress-postpart +C0157449|T047|PT|669.04|ICD9CM|Maternal distress complicating labor and delivery, postpartum condition or complication|Maternal distress complicating labor and delivery, postpartum condition or complication +C0157450|T046|HT|669.1|ICD9CM|Shock during or following labor and delivery|Shock during or following labor and delivery +C0157451|T047|AB|669.10|ICD9CM|Obstetric shock-unspec|Obstetric shock-unspec +C0157451|T047|PT|669.10|ICD9CM|Shock during or following labor and delivery, unspecified as to episode of care or not applicable|Shock during or following labor and delivery, unspecified as to episode of care or not applicable +C0157452|T047|AB|669.11|ICD9CM|Obstetric shock-deliver|Obstetric shock-deliver +C0157453|T047|AB|669.12|ICD9CM|Obstet shock-deliv w p/p|Obstet shock-deliv w p/p +C0157453|T047|PT|669.12|ICD9CM|Shock during or following labor and delivery, delivered, with mention of postpartum complication|Shock during or following labor and delivery, delivered, with mention of postpartum complication +C0157454|T047|AB|669.13|ICD9CM|Obstetric shock-antepar|Obstetric shock-antepar +C0157454|T047|PT|669.13|ICD9CM|Shock during or following labor and delivery, antepartum condition or complication|Shock during or following labor and delivery, antepartum condition or complication +C0157455|T047|AB|669.14|ICD9CM|Obstetric shock-postpart|Obstetric shock-postpart +C0157455|T047|PT|669.14|ICD9CM|Shock during or following labor and delivery, postpartum condition or complication|Shock during or following labor and delivery, postpartum condition or complication +C0341966|T046|HT|669.2|ICD9CM|Maternal hypotension syndrome|Maternal hypotension syndrome +C0157456|T047|AB|669.20|ICD9CM|Matern hypotens syn-unsp|Matern hypotens syn-unsp +C0157456|T047|PT|669.20|ICD9CM|Maternal hypotension syndrome, unspecified as to episode of care or not applicable|Maternal hypotension syndrome, unspecified as to episode of care or not applicable +C0157457|T047|AB|669.21|ICD9CM|Matern hypoten syn-deliv|Matern hypoten syn-deliv +C0157457|T047|PT|669.21|ICD9CM|Maternal hypotension syndrome, delivered, with or without mention of antepartum condition|Maternal hypotension syndrome, delivered, with or without mention of antepartum condition +C0157458|T047|AB|669.22|ICD9CM|Matern hypoten-del w p/p|Matern hypoten-del w p/p +C0157458|T047|PT|669.22|ICD9CM|Maternal hypotension syndrome, delivered, with mention of postpartum complication|Maternal hypotension syndrome, delivered, with mention of postpartum complication +C0157459|T047|AB|669.23|ICD9CM|Matern hypotens-antepar|Matern hypotens-antepar +C0157459|T047|PT|669.23|ICD9CM|Maternal hypotension syndrome, antepartum condition or complication|Maternal hypotension syndrome, antepartum condition or complication +C0157460|T047|AB|669.24|ICD9CM|Matern hypotens-postpart|Matern hypotens-postpart +C0157460|T047|PT|669.24|ICD9CM|Maternal hypotension syndrome, postpartum condition or complication|Maternal hypotension syndrome, postpartum condition or complication +C2712851|T046|HT|669.3|ICD9CM|Acute kidney failure following labor and delivery|Acute kidney failure following labor and delivery +C0157462|T047|AB|669.30|ICD9CM|Ac kidny fail w del-unsp|Ac kidny fail w del-unsp +C0157463|T047|AB|669.32|ICD9CM|Ac kidney fail-del w p/p|Ac kidney fail-del w p/p +C0157464|T047|AB|669.34|ICD9CM|Ac kidney fail-postpart|Ac kidney fail-postpart +C0157464|T047|PT|669.34|ICD9CM|Acute kidney failure following labor and delivery, postpartum condition or complication|Acute kidney failure following labor and delivery, postpartum condition or complication +C0157465|T046|HT|669.4|ICD9CM|Other complications of obstetrical surgery and procedures|Other complications of obstetrical surgery and procedures +C0157466|T047|AB|669.40|ICD9CM|Oth ob surg compl-unspec|Oth ob surg compl-unspec +C0157467|T037|AB|669.41|ICD9CM|Oth ob compl-delivered|Oth ob compl-delivered +C0157468|T037|AB|669.42|ICD9CM|Oth ob compl-deliv w p/p|Oth ob compl-deliv w p/p +C0375475|T047|AB|669.43|ICD9CM|Complc ob surg anteprtm|Complc ob surg anteprtm +C0375475|T047|PT|669.43|ICD9CM|Other complications of obstetrical surgery and procedures, antepartum condition or complication|Other complications of obstetrical surgery and procedures, antepartum condition or complication +C0157469|T047|AB|669.44|ICD9CM|Oth ob surg compl-postpa|Oth ob surg compl-postpa +C0157469|T047|PT|669.44|ICD9CM|Other complications of obstetrical surgery and procedures, postpartum condition or complication|Other complications of obstetrical surgery and procedures, postpartum condition or complication +C0157443|T046|HT|669.8|ICD9CM|Other complications of labor and delivery|Other complications of labor and delivery +C0157479|T047|AB|669.80|ICD9CM|Compl lab/deliv NEC-unsp|Compl lab/deliv NEC-unsp +C0157479|T047|PT|669.80|ICD9CM|Other complications of labor and delivery, unspecified as to episode of care or not applicable|Other complications of labor and delivery, unspecified as to episode of care or not applicable +C0157480|T033|AB|669.81|ICD9CM|Comp lab/deliv NEC-deliv|Comp lab/deliv NEC-deliv +C0157481|T047|AB|669.82|ICD9CM|Compl del NEC-del w p/p|Compl del NEC-del w p/p +C0157481|T047|PT|669.82|ICD9CM|Other complications of labor and delivery, delivered, with mention of postpartum complication|Other complications of labor and delivery, delivered, with mention of postpartum complication +C0157482|T047|AB|669.83|ICD9CM|Compl deliv NEC-antepar|Compl deliv NEC-antepar +C0157482|T047|PT|669.83|ICD9CM|Other complications of labor and delivery, antepartum condition or complication|Other complications of labor and delivery, antepartum condition or complication +C0157483|T047|AB|669.84|ICD9CM|Compl deliv NEC-postpart|Compl deliv NEC-postpart +C0157483|T047|PT|669.84|ICD9CM|Other complications of labor and delivery, postpartum condition or complication|Other complications of labor and delivery, postpartum condition or complication +C0269815|T046|HT|669.9|ICD9CM|Unspecified complication of labor and delivery|Unspecified complication of labor and delivery +C0157484|T047|AB|669.90|ICD9CM|Compl lab/deliv NOS-unsp|Compl lab/deliv NOS-unsp +C0157484|T047|PT|669.90|ICD9CM|Unspecified complication of labor and delivery, unspecified as to episode of care or not applicable|Unspecified complication of labor and delivery, unspecified as to episode of care or not applicable +C0157485|T033|AB|669.91|ICD9CM|Comp lab/deliv NOS-deliv|Comp lab/deliv NOS-deliv +C0157486|T033|AB|669.92|ICD9CM|Compl del NOS-del w p/p|Compl del NOS-del w p/p +C0157486|T033|PT|669.92|ICD9CM|Unspecified complication of labor and delivery, delivered, with mention of postpartum complication|Unspecified complication of labor and delivery, delivered, with mention of postpartum complication +C0157487|T047|AB|669.93|ICD9CM|Compl deliv NOS-antepar|Compl deliv NOS-antepar +C0157487|T047|PT|669.93|ICD9CM|Unspecified complication of labor and delivery, antepartum condition or complication|Unspecified complication of labor and delivery, antepartum condition or complication +C0157488|T047|AB|669.94|ICD9CM|Compl deliv NOS-postpart|Compl deliv NOS-postpart +C0157488|T047|PT|669.94|ICD9CM|Unspecified complication of labor and delivery, postpartum condition or complication|Unspecified complication of labor and delivery, postpartum condition or complication +C0157489|T046|HT|670|ICD9CM|Major puerperal infection|Major puerperal infection +C0161972|T046|HT|670-677.99|ICD9CM|COMPLICATIONS OF THE PUERPERIUM|COMPLICATIONS OF THE PUERPERIUM +C0157489|T046|HT|670.0|ICD9CM|Major puerperal infection, unspecified|Major puerperal infection, unspecified +C0375476|T047|AB|670.00|ICD9CM|Maj puerp inf NOS-unsp|Maj puerp inf NOS-unsp +C0375476|T047|PT|670.00|ICD9CM|Major puerperal infection, unspecified as to episode of care or not applicable|Major puerperal infection, unspecified as to episode of care or not applicable +C0157491|T047|AB|670.02|ICD9CM|Maj puer inf NOS-del p/p|Maj puer inf NOS-del p/p +C0157491|T047|PT|670.02|ICD9CM|Major puerperal infection, delivered, with mention of postpartum complication|Major puerperal infection, delivered, with mention of postpartum complication +C0375477|T046|AB|670.04|ICD9CM|Major puerp inf NOS-p/p|Major puerp inf NOS-p/p +C0375477|T046|PT|670.04|ICD9CM|Major puerperal infection, postpartum condition or complication|Major puerperal infection, postpartum condition or complication +C0269932|T047|HT|670.1|ICD9CM|Puerperal endometritis|Puerperal endometritis +C2712345|T046|AB|670.10|ICD9CM|Puerp endometritis-unsp|Puerp endometritis-unsp +C2712345|T046|PT|670.10|ICD9CM|Puerperal endometritis, unspecified as to episode of care or not applicable|Puerperal endometritis, unspecified as to episode of care or not applicable +C2712346|T046|AB|670.12|ICD9CM|Puerp endomet del w p/p|Puerp endomet del w p/p +C2712346|T046|PT|670.12|ICD9CM|Puerperal endometritis, delivered, with mention of postpartum complication|Puerperal endometritis, delivered, with mention of postpartum complication +C2712347|T046|AB|670.14|ICD9CM|Puerp endomet-postpart|Puerp endomet-postpart +C2712347|T046|PT|670.14|ICD9CM|Puerperal endometritis, postpartum condition or complication|Puerperal endometritis, postpartum condition or complication +C0269936|T047|HT|670.2|ICD9CM|Puerperal sepsis|Puerperal sepsis +C2712348|T046|AB|670.20|ICD9CM|Puerperal sepsis-unsp|Puerperal sepsis-unsp +C2712348|T046|PT|670.20|ICD9CM|Puerperal sepsis, unspecified as to episode of care or not applicable|Puerperal sepsis, unspecified as to episode of care or not applicable +C2712349|T046|PT|670.22|ICD9CM|Puerperal sepsis, delivered, with mention of postpartum complication|Puerperal sepsis, delivered, with mention of postpartum complication +C2712349|T046|AB|670.22|ICD9CM|Puerprl sepsis-del w p/p|Puerprl sepsis-del w p/p +C2712350|T046|PT|670.24|ICD9CM|Puerperal sepsis, postpartum condition or complication|Puerperal sepsis, postpartum condition or complication +C2712350|T046|AB|670.24|ICD9CM|Puerperl sepsis-postpart|Puerperl sepsis-postpart +C2712615|T047|HT|670.3|ICD9CM|Puerperal septic thrombophlebitis|Puerperal septic thrombophlebitis +C2712351|T046|AB|670.30|ICD9CM|Puerp septc thromb-unsp|Puerp septc thromb-unsp +C2712351|T046|PT|670.30|ICD9CM|Puerperal septic thrombophlebitis, unspecified as to episode of care or not applicable|Puerperal septic thrombophlebitis, unspecified as to episode of care or not applicable +C2712352|T046|AB|670.32|ICD9CM|Prp sptc thrmb-del w p/p|Prp sptc thrmb-del w p/p +C2712352|T046|PT|670.32|ICD9CM|Puerperal septic thrombophlebitis, delivered, with mention of postpartum complication|Puerperal septic thrombophlebitis, delivered, with mention of postpartum complication +C2712353|T046|AB|670.34|ICD9CM|Prp septc thrmb-postpart|Prp septc thrmb-postpart +C2712353|T046|PT|670.34|ICD9CM|Puerperal septic thrombophlebitis, postpartum condition or complication|Puerperal septic thrombophlebitis, postpartum condition or complication +C2712902|T046|HT|670.8|ICD9CM|Other major puerperal infection|Other major puerperal infection +C2712354|T046|AB|670.80|ICD9CM|Maj prp infec NEC-unspec|Maj prp infec NEC-unspec +C2712354|T046|PT|670.80|ICD9CM|Other major puerperal infection, unspecified as to episode of care or not applicable|Other major puerperal infection, unspecified as to episode of care or not applicable +C2712355|T046|AB|670.82|ICD9CM|Maj prp inf NEC-dl w p/p|Maj prp inf NEC-dl w p/p +C2712355|T046|PT|670.82|ICD9CM|Other major puerperal infection, delivered, with mention of postpartum complication|Other major puerperal infection, delivered, with mention of postpartum complication +C2712356|T046|AB|670.84|ICD9CM|Maj puerp infec NEC-p/p|Maj puerp infec NEC-p/p +C2712356|T046|PT|670.84|ICD9CM|Other major puerperal infection, postpartum condition or complication|Other major puerperal infection, postpartum condition or complication +C0269945|T046|HT|671|ICD9CM|Venous complications in pregnancy and the puerperium|Venous complications in pregnancy and the puerperium +C0342068|T046|HT|671.0|ICD9CM|Varicose veins of legs in pregnancy and the puerperium|Varicose veins of legs in pregnancy and the puerperium +C0157495|T020|AB|671.00|ICD9CM|Varic vein leg preg-unsp|Varic vein leg preg-unsp +C0157496|T020|AB|671.01|ICD9CM|Varicose vein leg-deliv|Varicose vein leg-deliv +C0157497|T047|AB|671.02|ICD9CM|Varic vein leg-del w p/p|Varic vein leg-del w p/p +C0157498|T047|AB|671.03|ICD9CM|Varic vein leg-antepart|Varic vein leg-antepart +C0157499|T047|AB|671.04|ICD9CM|Varic vein leg-postpart|Varic vein leg-postpart +C2004479|T047|HT|671.1|ICD9CM|Varicose veins of vulva and perineum in pregnancy and the puerperium|Varicose veins of vulva and perineum in pregnancy and the puerperium +C0157501|T047|AB|671.10|ICD9CM|Varic vulva preg-unspec|Varic vulva preg-unspec +C0157502|T020|AB|671.11|ICD9CM|Varicose vulva-delivered|Varicose vulva-delivered +C0157503|T020|AB|671.12|ICD9CM|Varicose vulva-del w p/p|Varicose vulva-del w p/p +C0157504|T020|AB|671.13|ICD9CM|Varicose vulva-antepart|Varicose vulva-antepart +C0157505|T020|AB|671.14|ICD9CM|Varicose vulva-postpart|Varicose vulva-postpart +C0269951|T046|HT|671.2|ICD9CM|Superficial thrombophlebitis in pregnancy and the puerperium|Superficial thrombophlebitis in pregnancy and the puerperium +C0269951|T046|AB|671.20|ICD9CM|Thrombophleb preg-unspec|Thrombophleb preg-unspec +C0157508|T047|AB|671.21|ICD9CM|Thrombophlebitis-deliver|Thrombophlebitis-deliver +C0157509|T047|AB|671.22|ICD9CM|Thrombophleb-deliv w p/p|Thrombophleb-deliv w p/p +C0342054|T046|AB|671.23|ICD9CM|Thrombophlebit-antepart|Thrombophlebit-antepart +C0495289|T047|AB|671.24|ICD9CM|Thrombophlebit-postpart|Thrombophlebit-postpart +C0342044|T046|HT|671.3|ICD9CM|Deep phlebothrombosis, antepartum|Deep phlebothrombosis, antepartum +C0342044|T046|PT|671.30|ICD9CM|Deep phlebothrombosis, antepartum, unspecified as to episode of care or not applicable|Deep phlebothrombosis, antepartum, unspecified as to episode of care or not applicable +C0342044|T046|AB|671.30|ICD9CM|Deep thromb antepar-unsp|Deep thromb antepar-unsp +C0157514|T047|PT|671.31|ICD9CM|Deep phlebothrombosis, antepartum, delivered, with or without mention of antepartum condition|Deep phlebothrombosis, antepartum, delivered, with or without mention of antepartum condition +C0157514|T047|AB|671.31|ICD9CM|Deep throm antepar-deliv|Deep throm antepar-deliv +C0342044|T046|PT|671.33|ICD9CM|Deep phlebothrombosis, antepartum, antepartum condition or complication|Deep phlebothrombosis, antepartum, antepartum condition or complication +C0342044|T046|AB|671.33|ICD9CM|Deep vein thromb-antepar|Deep vein thromb-antepar +C0342039|T047|HT|671.4|ICD9CM|Deep phlebothrombosis, postpartum|Deep phlebothrombosis, postpartum +C0157516|T047|PT|671.40|ICD9CM|Deep phlebothrombosis, postpartum, unspecified as to episode of care or not applicable|Deep phlebothrombosis, postpartum, unspecified as to episode of care or not applicable +C0157516|T047|AB|671.40|ICD9CM|Deep thromb postpar-unsp|Deep thromb postpar-unsp +C0157517|T047|PT|671.42|ICD9CM|Deep phlebothrombosis, postpartum, delivered, with mention of postpartum complication|Deep phlebothrombosis, postpartum, delivered, with mention of postpartum complication +C0157517|T047|AB|671.42|ICD9CM|Thromb postpar-del w p/p|Thromb postpar-del w p/p +C0342039|T047|PT|671.44|ICD9CM|Deep phlebothrombosis, postpartum, postpartum condition or complication|Deep phlebothrombosis, postpartum, postpartum condition or complication +C0342039|T047|AB|671.44|ICD9CM|Deep vein thromb-postpar|Deep vein thromb-postpar +C0342038|T047|HT|671.5|ICD9CM|Other phlebitis and thrombosis in pregnancy and the puerperium|Other phlebitis and thrombosis in pregnancy and the puerperium +C0157519|T047|AB|671.50|ICD9CM|Thrombosis NEC preg-unsp|Thrombosis NEC preg-unsp +C0157520|T047|AB|671.51|ICD9CM|Thrombosis NEC-delivered|Thrombosis NEC-delivered +C0157521|T047|AB|671.52|ICD9CM|Thromb NEC-deliv w p/p|Thromb NEC-deliv w p/p +C0157522|T047|AB|671.53|ICD9CM|Thrombosis NEC-antepart|Thrombosis NEC-antepart +C0157523|T047|AB|671.54|ICD9CM|Thrombosis NEC-postpart|Thrombosis NEC-postpart +C0157524|T046|HT|671.8|ICD9CM|Other venous complications in pregnancy and the puerperium|Other venous complications in pregnancy and the puerperium +C0157525|T047|AB|671.80|ICD9CM|Ven compl preg NEC-unsp|Ven compl preg NEC-unsp +C0157526|T047|AB|671.81|ICD9CM|Venous compl NEC-deliver|Venous compl NEC-deliver +C0157527|T047|AB|671.82|ICD9CM|Ven comp NEC-deliv w p/p|Ven comp NEC-deliv w p/p +C0477814|T046|PT|671.83|ICD9CM|Other venous complications of pregnancy and the puerperium, antepartum condition or complication|Other venous complications of pregnancy and the puerperium, antepartum condition or complication +C0477814|T046|AB|671.83|ICD9CM|Venous compl NEC-antepar|Venous compl NEC-antepar +C0477869|T047|PT|671.84|ICD9CM|Other venous complications of pregnancy and the puerperium, postpartum condition or complication|Other venous complications of pregnancy and the puerperium, postpartum condition or complication +C0477869|T047|AB|671.84|ICD9CM|Venous compl NEC-postpar|Venous compl NEC-postpar +C0269945|T046|HT|671.9|ICD9CM|Unspecified venous complication in pregnancy and the puerperium|Unspecified venous complication in pregnancy and the puerperium +C0269945|T046|AB|671.90|ICD9CM|Ven compl preg NOS-unsp|Ven compl preg NOS-unsp +C0157532|T047|AB|671.91|ICD9CM|Venous compl NOS-deliver|Venous compl NOS-deliver +C0157533|T047|AB|671.92|ICD9CM|Ven comp NOS-deliv w p/p|Ven comp NOS-deliv w p/p +C0495184|T046|AB|671.93|ICD9CM|Venous compl NOS-antepar|Venous compl NOS-antepar +C0157535|T046|AB|671.94|ICD9CM|Venous compl NOS-postpar|Venous compl NOS-postpar +C0157536|T184|HT|672|ICD9CM|Pyrexia of unknown origin during the puerperium|Pyrexia of unknown origin during the puerperium +C0157536|T184|HT|672.0|ICD9CM|Pyrexia of unknown origin during the puerperium|Pyrexia of unknown origin during the puerperium +C1812621|T047|AB|672.00|ICD9CM|Puerperal pyrexia-unspec|Puerperal pyrexia-unspec +C1812621|T047|PT|672.00|ICD9CM|Pyrexia of unknown origin during the puerperium, unspecified as to episode of care or not applicable|Pyrexia of unknown origin during the puerperium, unspecified as to episode of care or not applicable +C0375478|T184|AB|672.02|ICD9CM|Puerp pyrexia-del w p/p|Puerp pyrexia-del w p/p +C0375478|T184|PT|672.02|ICD9CM|Pyrexia of unknown origin during the puerperium, delivered, with mention of postpartum complication|Pyrexia of unknown origin during the puerperium, delivered, with mention of postpartum complication +C0375479|T184|AB|672.04|ICD9CM|Puerp pyrexia-postpartum|Puerp pyrexia-postpartum +C0375479|T184|PT|672.04|ICD9CM|Pyrexia of unknown origin during the puerperium, postpartum condition or complication|Pyrexia of unknown origin during the puerperium, postpartum condition or complication +C0157540|T046|HT|673|ICD9CM|Obstetrical pulmonary embolism|Obstetrical pulmonary embolism +C0157541|T046|HT|673.0|ICD9CM|Obstetrical air embolism|Obstetrical air embolism +C0157542|T047|AB|673.00|ICD9CM|Ob air embolism-unspec|Ob air embolism-unspec +C0157542|T047|PT|673.00|ICD9CM|Obstetrical air embolism, unspecified as to episode of care or not applicable|Obstetrical air embolism, unspecified as to episode of care or not applicable +C0157543|T047|AB|673.01|ICD9CM|Ob air embolism-deliver|Ob air embolism-deliver +C0157543|T047|PT|673.01|ICD9CM|Obstetrical air embolism, delivered, with or without mention of antepartum condition|Obstetrical air embolism, delivered, with or without mention of antepartum condition +C0157544|T047|AB|673.02|ICD9CM|Ob air embol-deliv w p/p|Ob air embol-deliv w p/p +C0157544|T047|PT|673.02|ICD9CM|Obstetrical air embolism, delivered, with mention of postpartum complication|Obstetrical air embolism, delivered, with mention of postpartum complication +C0157545|T047|AB|673.03|ICD9CM|Ob air embolism-antepart|Ob air embolism-antepart +C0157545|T047|PT|673.03|ICD9CM|Obstetrical air embolism, antepartum condition or complication|Obstetrical air embolism, antepartum condition or complication +C0157546|T047|AB|673.04|ICD9CM|Ob air embolism-postpart|Ob air embolism-postpart +C0157546|T047|PT|673.04|ICD9CM|Obstetrical air embolism, postpartum condition or complication|Obstetrical air embolism, postpartum condition or complication +C0013927|T047|HT|673.1|ICD9CM|Amniotic fluid embolism|Amniotic fluid embolism +C0013927|T047|AB|673.10|ICD9CM|Amniotic embolism-unspec|Amniotic embolism-unspec +C0013927|T047|PT|673.10|ICD9CM|Amniotic fluid embolism, unspecified as to episode of care or not applicable|Amniotic fluid embolism, unspecified as to episode of care or not applicable +C0157548|T020|AB|673.11|ICD9CM|Amniotic embolism-deliv|Amniotic embolism-deliv +C0157548|T020|PT|673.11|ICD9CM|Amniotic fluid embolism, delivered, with or without mention of antepartum condition|Amniotic fluid embolism, delivered, with or without mention of antepartum condition +C0157549|T047|AB|673.12|ICD9CM|Amniot embol-deliv w p/p|Amniot embol-deliv w p/p +C0157549|T047|PT|673.12|ICD9CM|Amniotic fluid embolism, delivered, with mention of postpartum complication|Amniotic fluid embolism, delivered, with mention of postpartum complication +C0157550|T047|AB|673.13|ICD9CM|Amniotic embol-antepart|Amniotic embol-antepart +C0157550|T047|PT|673.13|ICD9CM|Amniotic fluid embolism, antepartum condition or complication|Amniotic fluid embolism, antepartum condition or complication +C0157551|T047|AB|673.14|ICD9CM|Amniotic embol-postpart|Amniotic embol-postpart +C0157551|T047|PT|673.14|ICD9CM|Amniotic fluid embolism, postpartum condition or complication|Amniotic fluid embolism, postpartum condition or complication +C0157552|T046|HT|673.2|ICD9CM|Obstetrical blood-clot embolism|Obstetrical blood-clot embolism +C0157552|T046|AB|673.20|ICD9CM|Ob pulm embol NOS-unspec|Ob pulm embol NOS-unspec +C0157552|T046|PT|673.20|ICD9CM|Obstetrical blood-clot embolism, unspecified as to episode of care or not applicable|Obstetrical blood-clot embolism, unspecified as to episode of care or not applicable +C0157554|T047|PT|673.21|ICD9CM|Obstetrical blood-clot embolism, delivered, with or without mention of antepartum condition|Obstetrical blood-clot embolism, delivered, with or without mention of antepartum condition +C0157554|T047|AB|673.21|ICD9CM|Pulm embol NOS-delivered|Pulm embol NOS-delivered +C0157555|T047|PT|673.22|ICD9CM|Obstetrical blood-clot embolism, delivered, with mention of postpartum complication|Obstetrical blood-clot embolism, delivered, with mention of postpartum complication +C0157555|T047|AB|673.22|ICD9CM|Pulm embol NOS-del w p/p|Pulm embol NOS-del w p/p +C0157556|T047|PT|673.23|ICD9CM|Obstetrical blood-clot embolism, antepartum condition or complication|Obstetrical blood-clot embolism, antepartum condition or complication +C0157556|T047|AB|673.23|ICD9CM|Pulm embol NOS-antepart|Pulm embol NOS-antepart +C0157557|T047|PT|673.24|ICD9CM|Obstetrical blood-clot embolism, postpartum condition or complication|Obstetrical blood-clot embolism, postpartum condition or complication +C0157557|T047|AB|673.24|ICD9CM|Pulm embol NOS-postpart|Pulm embol NOS-postpart +C0269959|T046|HT|673.3|ICD9CM|Obstetrical pyemic and septic embolism|Obstetrical pyemic and septic embolism +C0269959|T046|AB|673.30|ICD9CM|Ob pyemic embol-unspec|Ob pyemic embol-unspec +C0269959|T046|PT|673.30|ICD9CM|Obstetrical pyemic and septic embolism, unspecified as to episode of care or not applicable|Obstetrical pyemic and septic embolism, unspecified as to episode of care or not applicable +C0157560|T047|AB|673.31|ICD9CM|Ob pyemic embol-deliver|Ob pyemic embol-deliver +C0157560|T047|PT|673.31|ICD9CM|Obstetrical pyemic and septic embolism, delivered, with or without mention of antepartum condition|Obstetrical pyemic and septic embolism, delivered, with or without mention of antepartum condition +C0157561|T047|AB|673.32|ICD9CM|Ob pyem embol-del w p/p|Ob pyem embol-del w p/p +C0157561|T047|PT|673.32|ICD9CM|Obstetrical pyemic and septic embolism, delivered, with mention of postpartum complication|Obstetrical pyemic and septic embolism, delivered, with mention of postpartum complication +C0157562|T047|AB|673.33|ICD9CM|Ob pyemic embol-antepart|Ob pyemic embol-antepart +C0157562|T047|PT|673.33|ICD9CM|Obstetrical pyemic and septic embolism, antepartum condition or complication|Obstetrical pyemic and septic embolism, antepartum condition or complication +C0157563|T047|AB|673.34|ICD9CM|Ob pyemic embol-postpart|Ob pyemic embol-postpart +C0157563|T047|PT|673.34|ICD9CM|Obstetrical pyemic and septic embolism, postpartum condition or complication|Obstetrical pyemic and septic embolism, postpartum condition or complication +C0157564|T047|HT|673.8|ICD9CM|Other obstetrical pulmonary embolism|Other obstetrical pulmonary embolism +C0157565|T047|AB|673.80|ICD9CM|Ob pulmon embol NEC-unsp|Ob pulmon embol NEC-unsp +C0157565|T047|PT|673.80|ICD9CM|Other obstetrical pulmonary embolism, unspecified as to episode of care or not applicable|Other obstetrical pulmonary embolism, unspecified as to episode of care or not applicable +C0157566|T047|PT|673.81|ICD9CM|Other obstetrical pulmonary embolism, delivered, with or without mention of antepartum condition|Other obstetrical pulmonary embolism, delivered, with or without mention of antepartum condition +C0157566|T047|AB|673.81|ICD9CM|Pulmon embol NEC-deliver|Pulmon embol NEC-deliver +C0157567|T047|PT|673.82|ICD9CM|Other obstetrical pulmonary embolism, delivered, with mention of postpartum complication|Other obstetrical pulmonary embolism, delivered, with mention of postpartum complication +C0157567|T047|AB|673.82|ICD9CM|Pulm embol NEC-del w p/p|Pulm embol NEC-del w p/p +C0157568|T047|PT|673.83|ICD9CM|Other obstetrical pulmonary embolism, antepartum condition or complication|Other obstetrical pulmonary embolism, antepartum condition or complication +C0157568|T047|AB|673.83|ICD9CM|Pulmon embol NEC-antepar|Pulmon embol NEC-antepar +C0157569|T047|PT|673.84|ICD9CM|Other obstetrical pulmonary embolism, postpartum condition or complication|Other obstetrical pulmonary embolism, postpartum condition or complication +C0157569|T047|AB|673.84|ICD9CM|Pulmon embol NEC-postpar|Pulmon embol NEC-postpar +C0868855|T046|HT|674|ICD9CM|Other and unspecified complications of the puerperium, not elsewhere classified|Other and unspecified complications of the puerperium, not elsewhere classified +C0157571|T046|HT|674.0|ICD9CM|Cerebrovascular disorders in the puerperium|Cerebrovascular disorders in the puerperium +C0157572|T047|PT|674.00|ICD9CM|Cerebrovascular disorders in the puerperium, unspecified as to episode of care or not applicable|Cerebrovascular disorders in the puerperium, unspecified as to episode of care or not applicable +C0157572|T047|AB|674.00|ICD9CM|Puerp cerebvasc dis-unsp|Puerp cerebvasc dis-unsp +C0157573|T047|AB|674.01|ICD9CM|Puerp cerebvas dis-deliv|Puerp cerebvas dis-deliv +C0157574|T047|PT|674.02|ICD9CM|Cerebrovascular disorders in the puerperium, delivered, with mention of postpartum complication|Cerebrovascular disorders in the puerperium, delivered, with mention of postpartum complication +C0157574|T047|AB|674.02|ICD9CM|Cerebvas dis-deliv w p/p|Cerebvas dis-deliv w p/p +C0157575|T047|AB|674.03|ICD9CM|Cerebrovasc dis-antepart|Cerebrovasc dis-antepart +C0157575|T047|PT|674.03|ICD9CM|Cerebrovascular disorders in the puerperium, antepartum condition or complication|Cerebrovascular disorders in the puerperium, antepartum condition or complication +C1812627|T047|AB|674.04|ICD9CM|Cerebrovasc dis-postpart|Cerebrovasc dis-postpart +C1812627|T047|PT|674.04|ICD9CM|Cerebrovascular disorders in the puerperium, postpartum condition or complication|Cerebrovascular disorders in the puerperium, postpartum condition or complication +C3665608|T046|HT|674.1|ICD9CM|Disruption of cesarean wound|Disruption of cesarean wound +C0157578|T037|AB|674.10|ICD9CM|Disrupt c-sect wnd-unsp|Disrupt c-sect wnd-unsp +C0157578|T037|PT|674.10|ICD9CM|Disruption of cesarean wound, unspecified as to episode of care or not applicable|Disruption of cesarean wound, unspecified as to episode of care or not applicable +C0157579|T037|AB|674.12|ICD9CM|Disrupt c-sect-del w p/p|Disrupt c-sect-del w p/p +C0157579|T037|PT|674.12|ICD9CM|Disruption of cesarean wound, delivered, with mention of postpartum complication|Disruption of cesarean wound, delivered, with mention of postpartum complication +C1318514|T046|AB|674.14|ICD9CM|Disrupt c-sect-postpart|Disrupt c-sect-postpart +C1318514|T046|PT|674.14|ICD9CM|Disruption of cesarean wound, postpartum condition or complication|Disruption of cesarean wound, postpartum condition or complication +C3537063|T037|HT|674.2|ICD9CM|Disruption of obstetrical perineal wound|Disruption of obstetrical perineal wound +C0157582|T037|AB|674.20|ICD9CM|Disrupt perineum-unspec|Disrupt perineum-unspec +C0157582|T037|PT|674.20|ICD9CM|Disruption of perineal wound, unspecified as to episode of care or not applicable|Disruption of perineal wound, unspecified as to episode of care or not applicable +C0157583|T037|AB|674.22|ICD9CM|Disrupt perin-del w p/p|Disrupt perin-del w p/p +C0157583|T037|PT|674.22|ICD9CM|Disruption of perineal wound, delivered, with mention of postpartum complication|Disruption of perineal wound, delivered, with mention of postpartum complication +C3537063|T037|AB|674.24|ICD9CM|Disrupt perineum-postpar|Disrupt perineum-postpar +C3537063|T037|PT|674.24|ICD9CM|Disruption of perineal wound, postpartum condition or complication|Disruption of perineal wound, postpartum condition or complication +C0157585|T046|HT|674.3|ICD9CM|Other complications of obstetrical surgical wounds|Other complications of obstetrical surgical wounds +C0157586|T037|AB|674.30|ICD9CM|Ob surg compl NEC-unspec|Ob surg compl NEC-unspec +C0157587|T037|AB|674.32|ICD9CM|Ob surg compl-del w p/p|Ob surg compl-del w p/p +C0157588|T037|AB|674.34|ICD9CM|Ob surg comp NEC-postpar|Ob surg comp NEC-postpar +C0157588|T037|PT|674.34|ICD9CM|Other complications of obstetrical surgical wounds, postpartum condition or complication|Other complications of obstetrical surgical wounds, postpartum condition or complication +C0152437|T047|HT|674.4|ICD9CM|Placental polyp|Placental polyp +C0157589|T191|AB|674.40|ICD9CM|Placental polyp-unspec|Placental polyp-unspec +C0157589|T191|PT|674.40|ICD9CM|Placental polyp, unspecified as to episode of care or not applicable|Placental polyp, unspecified as to episode of care or not applicable +C0157590|T191|AB|674.42|ICD9CM|Placent polyp-del w p/p|Placent polyp-del w p/p +C0157590|T191|PT|674.42|ICD9CM|Placental polyp, delivered, with mention of postpartum complication|Placental polyp, delivered, with mention of postpartum complication +C0157591|T191|AB|674.44|ICD9CM|Placental polyp-postpart|Placental polyp-postpart +C0157591|T191|PT|674.44|ICD9CM|Placental polyp, postpartum condition or complication|Placental polyp, postpartum condition or complication +C0877208|T046|HT|674.5|ICD9CM|Peripartum cardiomyopathy|Peripartum cardiomyopathy +C1260427|T047|AB|674.50|ICD9CM|Peripart cardiomy-unspec|Peripart cardiomy-unspec +C1260427|T047|PT|674.50|ICD9CM|Peripartum cardiomyopathy, unspecified as to episode of care or not applicable|Peripartum cardiomyopathy, unspecified as to episode of care or not applicable +C1260428|T047|AB|674.51|ICD9CM|Peripartum cardiomy-del|Peripartum cardiomy-del +C1260428|T047|PT|674.51|ICD9CM|Peripartum cardiomyopathy, delivered, with or without mention of antepartum condition|Peripartum cardiomyopathy, delivered, with or without mention of antepartum condition +C1260429|T047|AB|674.52|ICD9CM|Peripart card del w p/p|Peripart card del w p/p +C1260429|T047|PT|674.52|ICD9CM|Peripartum cardiomyopathy, delivered, with mention of postpartum condition|Peripartum cardiomyopathy, delivered, with mention of postpartum condition +C1260430|T047|AB|674.53|ICD9CM|Peripartum card-antepart|Peripartum card-antepart +C1260430|T047|PT|674.53|ICD9CM|Peripartum cardiomyopathy, antepartum condition or complication|Peripartum cardiomyopathy, antepartum condition or complication +C1260431|T047|AB|674.54|ICD9CM|Peripartum card-postpart|Peripartum card-postpart +C1260431|T047|PT|674.54|ICD9CM|Peripartum cardiomyopathy, postpartum condition or complication|Peripartum cardiomyopathy, postpartum condition or complication +C0157592|T046|HT|674.8|ICD9CM|Other complications of the puerperium|Other complications of the puerperium +C2733633|T046|PT|674.80|ICD9CM|Other complications of puerperium, unspecified as to episode of care or not applicable|Other complications of puerperium, unspecified as to episode of care or not applicable +C2733633|T046|AB|674.80|ICD9CM|Puerp compl NEC-unspec|Puerp compl NEC-unspec +C0157594|T047|PT|674.82|ICD9CM|Other complications of puerperium, delivered, with mention of postpartum complication|Other complications of puerperium, delivered, with mention of postpartum complication +C0157594|T047|AB|674.82|ICD9CM|Puerp comp NEC-del w p/p|Puerp comp NEC-del w p/p +C2733634|T046|PT|674.84|ICD9CM|Other complications of puerperium, postpartum condition or complication|Other complications of puerperium, postpartum condition or complication +C2733634|T046|AB|674.84|ICD9CM|Puerp compl NEC-postpart|Puerp compl NEC-postpart +C0161972|T046|HT|674.9|ICD9CM|Unspecified complications of the puerperium|Unspecified complications of the puerperium +C0161972|T046|AB|674.90|ICD9CM|Puerp compl NOS-unspec|Puerp compl NOS-unspec +C0161972|T046|PT|674.90|ICD9CM|Unspecified complications of puerperium, unspecified as to episode of care or not applicable|Unspecified complications of puerperium, unspecified as to episode of care or not applicable +C0157597|T047|AB|674.92|ICD9CM|Puerp comp NOS-del w p/p|Puerp comp NOS-del w p/p +C0157597|T047|PT|674.92|ICD9CM|Unspecified complications of puerperium, delivered, with mention of postpartum complication|Unspecified complications of puerperium, delivered, with mention of postpartum complication +C0161972|T046|AB|674.94|ICD9CM|Puerp compl NOS-postpart|Puerp compl NOS-postpart +C0161972|T046|PT|674.94|ICD9CM|Unspecified complications of puerperium, postpartum condition or complication|Unspecified complications of puerperium, postpartum condition or complication +C0157623|T047|HT|675|ICD9CM|Infections of the breast and nipple associated with childbirth|Infections of the breast and nipple associated with childbirth +C0269979|T047|HT|675.0|ICD9CM|Infections of nipple associated with childbirth|Infections of nipple associated with childbirth +C0157600|T047|AB|675.00|ICD9CM|Infect nipple preg-unsp|Infect nipple preg-unsp +C0157600|T047|PT|675.00|ICD9CM|Infections of nipple associated with childbirth, unspecified as to episode of care or not applicable|Infections of nipple associated with childbirth, unspecified as to episode of care or not applicable +C0157601|T047|AB|675.01|ICD9CM|Infect nipple-delivered|Infect nipple-delivered +C0157602|T047|AB|675.02|ICD9CM|Infect nipple-del w p/p|Infect nipple-del w p/p +C0157602|T047|PT|675.02|ICD9CM|Infections of nipple associated with childbirth, delivered, with mention of postpartum complication|Infections of nipple associated with childbirth, delivered, with mention of postpartum complication +C0157603|T047|AB|675.03|ICD9CM|Infect nipple-antepartum|Infect nipple-antepartum +C0157603|T047|PT|675.03|ICD9CM|Infections of nipple associated with childbirth, antepartum condition or complication|Infections of nipple associated with childbirth, antepartum condition or complication +C0157604|T047|AB|675.04|ICD9CM|Infect nipple-postpartum|Infect nipple-postpartum +C0157604|T047|PT|675.04|ICD9CM|Infections of nipple associated with childbirth, postpartum condition or complication|Infections of nipple associated with childbirth, postpartum condition or complication +C0269981|T047|HT|675.1|ICD9CM|Abscess of breast associated with childbirth|Abscess of breast associated with childbirth +C0157606|T047|PT|675.10|ICD9CM|Abscess of breast associated with childbirth, unspecified as to episode of care or not applicable|Abscess of breast associated with childbirth, unspecified as to episode of care or not applicable +C0157606|T047|AB|675.10|ICD9CM|Breast abscess preg-unsp|Breast abscess preg-unsp +C0157607|T047|AB|675.11|ICD9CM|Breast abscess-delivered|Breast abscess-delivered +C0157608|T046|PT|675.12|ICD9CM|Abscess of breast associated with childbirth, delivered, with mention of postpartum complication|Abscess of breast associated with childbirth, delivered, with mention of postpartum complication +C0157608|T046|AB|675.12|ICD9CM|Breast abscess-del w p/p|Breast abscess-del w p/p +C0741646|T047|PT|675.13|ICD9CM|Abscess of breast associated with childbirth, antepartum condition or complication|Abscess of breast associated with childbirth, antepartum condition or complication +C0741646|T047|AB|675.13|ICD9CM|Breast abscess-antepart|Breast abscess-antepart +C0405309|T047|PT|675.14|ICD9CM|Abscess of breast associated with childbirth, postpartum condition or complication|Abscess of breast associated with childbirth, postpartum condition or complication +C0405309|T047|AB|675.14|ICD9CM|Breast abscess-postpart|Breast abscess-postpart +C0157611|T047|HT|675.2|ICD9CM|Nonpurulent mastitis associated with childbirth|Nonpurulent mastitis associated with childbirth +C0157612|T047|AB|675.20|ICD9CM|Mastitis in preg-unspec|Mastitis in preg-unspec +C0157612|T047|PT|675.20|ICD9CM|Nonpurulent mastitis associated with childbirth, unspecified as to episode of care or not applicable|Nonpurulent mastitis associated with childbirth, unspecified as to episode of care or not applicable +C0157613|T047|AB|675.21|ICD9CM|Mastitis-delivered|Mastitis-delivered +C0157614|T047|AB|675.22|ICD9CM|Mastitis-deliv w p/p|Mastitis-deliv w p/p +C0157614|T047|PT|675.22|ICD9CM|Nonpurulent mastitis associated with childbirth, delivered, with mention of postpartum complication|Nonpurulent mastitis associated with childbirth, delivered, with mention of postpartum complication +C1112795|T047|AB|675.23|ICD9CM|Mastitis-antepartum|Mastitis-antepartum +C1112795|T047|PT|675.23|ICD9CM|Nonpurulent mastitis associated with childbirth, antepartum condition or complication|Nonpurulent mastitis associated with childbirth, antepartum condition or complication +C1112702|T047|AB|675.24|ICD9CM|Mastitis-postpartum|Mastitis-postpartum +C1112702|T047|PT|675.24|ICD9CM|Nonpurulent mastitis associated with childbirth, postpartum condition or complication|Nonpurulent mastitis associated with childbirth, postpartum condition or complication +C0157617|T047|HT|675.8|ICD9CM|Other specified infections of the breast and nipple associated with childbirth|Other specified infections of the breast and nipple associated with childbirth +C0157618|T047|AB|675.80|ICD9CM|Breast inf preg NEC-unsp|Breast inf preg NEC-unsp +C0157619|T047|AB|675.81|ICD9CM|Breast infect NEC-deliv|Breast infect NEC-deliv +C0157620|T047|AB|675.82|ICD9CM|Breast inf NEC-del w p/p|Breast inf NEC-del w p/p +C0157621|T047|AB|675.83|ICD9CM|Breast inf NEC-antepart|Breast inf NEC-antepart +C0157622|T047|AB|675.84|ICD9CM|Breast inf NEC-postpart|Breast inf NEC-postpart +C0157623|T047|HT|675.9|ICD9CM|Unspecified infection of the breast and nipple associated with childbirth|Unspecified infection of the breast and nipple associated with childbirth +C0157624|T047|AB|675.90|ICD9CM|Breast inf preg NOS-unsp|Breast inf preg NOS-unsp +C0157625|T047|AB|675.91|ICD9CM|Breast infect NOS-deliv|Breast infect NOS-deliv +C0157626|T047|AB|675.92|ICD9CM|Breast inf NOS-del w p/p|Breast inf NOS-del w p/p +C0157627|T047|AB|675.93|ICD9CM|Breast inf NOS-antepart|Breast inf NOS-antepart +C0157628|T047|AB|675.94|ICD9CM|Breast inf NOS-postpart|Breast inf NOS-postpart +C0157629|T047|HT|676|ICD9CM|Other disorders of the breast associated with childbirth and disorders of lactation|Other disorders of the breast associated with childbirth and disorders of lactation +C0157630|T020|HT|676.0|ICD9CM|Retracted nipple associated with childbirth|Retracted nipple associated with childbirth +C0157631|T020|AB|676.00|ICD9CM|Retract nipple preg-unsp|Retract nipple preg-unsp +C0157631|T020|PT|676.00|ICD9CM|Retracted nipple associated with childbirth, unspecified as to episode of care or not applicable|Retracted nipple associated with childbirth, unspecified as to episode of care or not applicable +C0157632|T020|AB|676.01|ICD9CM|Retracted nipple-deliver|Retracted nipple-deliver +C0157633|T020|AB|676.02|ICD9CM|Retract nipple-del w p/p|Retract nipple-del w p/p +C0157633|T020|PT|676.02|ICD9CM|Retracted nipple associated with childbirth, delivered, with mention of postpartum complication|Retracted nipple associated with childbirth, delivered, with mention of postpartum complication +C0157634|T020|AB|676.03|ICD9CM|Retract nipple-antepart|Retract nipple-antepart +C0157634|T020|PT|676.03|ICD9CM|Retracted nipple associated with childbirth, antepartum condition or complication|Retracted nipple associated with childbirth, antepartum condition or complication +C0157635|T020|AB|676.04|ICD9CM|Retract nipple-postpart|Retract nipple-postpart +C0157635|T020|PT|676.04|ICD9CM|Retracted nipple associated with childbirth, postpartum condition or complication|Retracted nipple associated with childbirth, postpartum condition or complication +C0157636|T046|HT|676.1|ICD9CM|Cracked nipple associated with childbirth|Cracked nipple associated with childbirth +C0157637|T047|PT|676.10|ICD9CM|Cracked nipple associated with childbirth, unspecified as to episode of care or not applicable|Cracked nipple associated with childbirth, unspecified as to episode of care or not applicable +C0157637|T047|AB|676.10|ICD9CM|Cracked nipple preg-unsp|Cracked nipple preg-unsp +C0157638|T047|AB|676.11|ICD9CM|Cracked nipple-delivered|Cracked nipple-delivered +C0157639|T047|PT|676.12|ICD9CM|Cracked nipple associated with childbirth, delivered, with mention of postpartum complication|Cracked nipple associated with childbirth, delivered, with mention of postpartum complication +C0157639|T047|AB|676.12|ICD9CM|Cracked nipple-del w p/p|Cracked nipple-del w p/p +C0157640|T047|PT|676.13|ICD9CM|Cracked nipple associated with childbirth, antepartum condition or complication|Cracked nipple associated with childbirth, antepartum condition or complication +C0157640|T047|AB|676.13|ICD9CM|Cracked nipple-antepart|Cracked nipple-antepart +C0157641|T047|PT|676.14|ICD9CM|Cracked nipple associated with childbirth, postpartum condition or complication|Cracked nipple associated with childbirth, postpartum condition or complication +C0157641|T047|AB|676.14|ICD9CM|Cracked nipple-postpart|Cracked nipple-postpart +C0157642|T046|HT|676.2|ICD9CM|Engorgement of breasts associated with childbirth|Engorgement of breasts associated with childbirth +C0157643|T047|AB|676.20|ICD9CM|Breast engorge-unspec|Breast engorge-unspec +C0157644|T047|AB|676.21|ICD9CM|Breast engorge-delivered|Breast engorge-delivered +C0157645|T047|AB|676.22|ICD9CM|Breast engorge-del w p/p|Breast engorge-del w p/p +C0157646|T047|AB|676.23|ICD9CM|Breast engorge-antepart|Breast engorge-antepart +C0157646|T047|PT|676.23|ICD9CM|Engorgement of breasts associated with childbirth, antepartum condition or complication|Engorgement of breasts associated with childbirth, antepartum condition or complication +C0157647|T047|AB|676.24|ICD9CM|Breast engorge-postpart|Breast engorge-postpart +C0157647|T047|PT|676.24|ICD9CM|Engorgement of breasts associated with childbirth, postpartum condition or complication|Engorgement of breasts associated with childbirth, postpartum condition or complication +C0157648|T047|HT|676.3|ICD9CM|Other and unspecified disorder of breast associated with childbirth|Other and unspecified disorder of breast associated with childbirth +C0157649|T047|AB|676.30|ICD9CM|Breast dis preg NEC-unsp|Breast dis preg NEC-unsp +C0157650|T047|AB|676.31|ICD9CM|Breast dis NEC-delivered|Breast dis NEC-delivered +C0157651|T047|AB|676.32|ICD9CM|Breast dis NEC-del w p/p|Breast dis NEC-del w p/p +C0157652|T047|AB|676.33|ICD9CM|Breast dis NEC-antepart|Breast dis NEC-antepart +C0157653|T047|AB|676.34|ICD9CM|Breast dis NEC-postpart|Breast dis NEC-postpart +C0152158|T046|HT|676.4|ICD9CM|Failure of lactation|Failure of lactation +C0152158|T046|PT|676.40|ICD9CM|Failure of lactation, unspecified as to episode of care or not applicable|Failure of lactation, unspecified as to episode of care or not applicable +C0152158|T046|AB|676.40|ICD9CM|Lactation fail-unspec|Lactation fail-unspec +C0157655|T033|PT|676.41|ICD9CM|Failure of lactation, delivered, with or without mention of antepartum condition|Failure of lactation, delivered, with or without mention of antepartum condition +C0157655|T033|AB|676.41|ICD9CM|Lactation fail-delivered|Lactation fail-delivered +C0157656|T046|PT|676.42|ICD9CM|Failure of lactation, delivered, with mention of postpartum complication|Failure of lactation, delivered, with mention of postpartum complication +C0157656|T046|AB|676.42|ICD9CM|Lactation fail-del w p/p|Lactation fail-del w p/p +C0157657|T046|PT|676.43|ICD9CM|Failure of lactation, antepartum condition or complication|Failure of lactation, antepartum condition or complication +C0157657|T046|AB|676.43|ICD9CM|Lactation fail-antepart|Lactation fail-antepart +C0157656|T046|PT|676.44|ICD9CM|Failure of lactation, postpartum condition or complication|Failure of lactation, postpartum condition or complication +C0157656|T046|AB|676.44|ICD9CM|Lactation fail-postpart|Lactation fail-postpart +C0269993|T047|HT|676.5|ICD9CM|Suppressed lactation|Suppressed lactation +C0269993|T047|AB|676.50|ICD9CM|Suppr lactation-unspec|Suppr lactation-unspec +C0269993|T047|PT|676.50|ICD9CM|Suppressed lactation, unspecified as to episode of care or not applicable|Suppressed lactation, unspecified as to episode of care or not applicable +C0157660|T047|AB|676.51|ICD9CM|Suppr lactation-deliver|Suppr lactation-deliver +C0157660|T047|PT|676.51|ICD9CM|Suppressed lactation, delivered, with or without mention of antepartum condition|Suppressed lactation, delivered, with or without mention of antepartum condition +C0157661|T047|AB|676.52|ICD9CM|Suppr lactat-del w p/p|Suppr lactat-del w p/p +C0157661|T047|PT|676.52|ICD9CM|Suppressed lactation, delivered, with mention of postpartum complication|Suppressed lactation, delivered, with mention of postpartum complication +C0157662|T047|AB|676.53|ICD9CM|Suppr lactation-antepar|Suppr lactation-antepar +C0157662|T047|PT|676.53|ICD9CM|Suppressed lactation, antepartum condition or complication|Suppressed lactation, antepartum condition or complication +C0157661|T047|AB|676.54|ICD9CM|Suppr lactation-postpart|Suppr lactation-postpart +C0157661|T047|PT|676.54|ICD9CM|Suppressed lactation, postpartum condition or complication|Suppressed lactation, postpartum condition or complication +C0269995|T047|HT|676.6|ICD9CM|Galactorrhea|Galactorrhea +C0269995|T047|PT|676.60|ICD9CM|Galactorrhea associated with childbirth, unspecified as to episode of care or not applicable|Galactorrhea associated with childbirth, unspecified as to episode of care or not applicable +C0269995|T047|AB|676.60|ICD9CM|Galactorrhea preg-unspec|Galactorrhea preg-unspec +C0157665|T047|PT|676.61|ICD9CM|Galactorrhea associated with childbirth, delivered, with or without mention of antepartum condition|Galactorrhea associated with childbirth, delivered, with or without mention of antepartum condition +C0157665|T047|AB|676.61|ICD9CM|Galactorrhea-delivered|Galactorrhea-delivered +C0157666|T047|PT|676.62|ICD9CM|Galactorrhea associated with childbirth, delivered, with mention of postpartum complication|Galactorrhea associated with childbirth, delivered, with mention of postpartum complication +C0157666|T047|AB|676.62|ICD9CM|Galactorrhea-del w p/p|Galactorrhea-del w p/p +C0157667|T047|PT|676.63|ICD9CM|Galactorrhea associated with childbirth, antepartum condition or complication|Galactorrhea associated with childbirth, antepartum condition or complication +C0157667|T047|AB|676.63|ICD9CM|Galactorrhea-antepartum|Galactorrhea-antepartum +C0157668|T047|PT|676.64|ICD9CM|Galactorrhea associated with childbirth, postpartum condition or complication|Galactorrhea associated with childbirth, postpartum condition or complication +C0157668|T047|AB|676.64|ICD9CM|Galactorrhea-postpartum|Galactorrhea-postpartum +C0157669|T047|HT|676.8|ICD9CM|Other disorders of lactation|Other disorders of lactation +C0157669|T047|AB|676.80|ICD9CM|Lactation dis NEC-unspec|Lactation dis NEC-unspec +C0157669|T047|PT|676.80|ICD9CM|Other disorders of lactation, unspecified as to episode of care or not applicable|Other disorders of lactation, unspecified as to episode of care or not applicable +C0157671|T047|AB|676.81|ICD9CM|Lactation dis NEC-deliv|Lactation dis NEC-deliv +C0157671|T047|PT|676.81|ICD9CM|Other disorders of lactation, delivered, with or without mention of antepartum condition|Other disorders of lactation, delivered, with or without mention of antepartum condition +C0157672|T047|AB|676.82|ICD9CM|Lactat dis NEC-del w p/p|Lactat dis NEC-del w p/p +C0157672|T047|PT|676.82|ICD9CM|Other disorders of lactation, delivered, with mention of postpartum complication|Other disorders of lactation, delivered, with mention of postpartum complication +C0157673|T047|AB|676.83|ICD9CM|Lactat dis NEC-antepart|Lactat dis NEC-antepart +C0157673|T047|PT|676.83|ICD9CM|Other disorders of lactation, antepartum condition or complication|Other disorders of lactation, antepartum condition or complication +C0157672|T047|AB|676.84|ICD9CM|Lactat dis NEC-postpart|Lactat dis NEC-postpart +C0157672|T047|PT|676.84|ICD9CM|Other disorders of lactation, postpartum condition or complication|Other disorders of lactation, postpartum condition or complication +C0022927|T047|HT|676.9|ICD9CM|Unspecified disorder of lactation|Unspecified disorder of lactation +C0022927|T047|AB|676.90|ICD9CM|Lactation dis NOS-unspec|Lactation dis NOS-unspec +C0022927|T047|PT|676.90|ICD9CM|Unspecified disorder of lactation, unspecified as to episode of care or not applicable|Unspecified disorder of lactation, unspecified as to episode of care or not applicable +C0157676|T047|AB|676.91|ICD9CM|Lactation dis NOS-deliv|Lactation dis NOS-deliv +C0157676|T047|PT|676.91|ICD9CM|Unspecified disorder of lactation, delivered, with or without mention of antepartum condition|Unspecified disorder of lactation, delivered, with or without mention of antepartum condition +C0157677|T047|AB|676.92|ICD9CM|Lactat dis NOS-del w p/p|Lactat dis NOS-del w p/p +C0157677|T047|PT|676.92|ICD9CM|Unspecified disorder of lactation, delivered, with mention of postpartum complication|Unspecified disorder of lactation, delivered, with mention of postpartum complication +C0157678|T047|AB|676.93|ICD9CM|Lactat dis NOS-antepart|Lactat dis NOS-antepart +C0157678|T047|PT|676.93|ICD9CM|Unspecified disorder of lactation, antepartum condition or complication|Unspecified disorder of lactation, antepartum condition or complication +C0157679|T047|AB|676.94|ICD9CM|Lactat dis NOS-postpart|Lactat dis NOS-postpart +C0157679|T047|PT|676.94|ICD9CM|Unspecified disorder of lactation, postpartum condition or complication|Unspecified disorder of lactation, postpartum condition or complication +C0375480|T047|AB|677|ICD9CM|Late effct cmplcatn preg|Late effct cmplcatn preg +C0375480|T047|PT|677|ICD9CM|Late effect of complication of pregnancy, childbirth, and the puerperium|Late effect of complication of pregnancy, childbirth, and the puerperium +C2349601|T033|HT|678|ICD9CM|Other fetal conditions|Other fetal conditions +C2349590|T033|HT|678-679.99|ICD9CM|OTHER MATERNAL AND FETAL COMPLICATIONS|OTHER MATERNAL AND FETAL COMPLICATIONS +C2349594|T046|HT|678.0|ICD9CM|Fetal hematologic conditions|Fetal hematologic conditions +C2349591|T046|PT|678.00|ICD9CM|Fetal hematologic conditions, unspecified as to episode of care or not applicable|Fetal hematologic conditions, unspecified as to episode of care or not applicable +C2349591|T046|AB|678.00|ICD9CM|Fetal hematologic-unspec|Fetal hematologic-unspec +C2349592|T046|PT|678.01|ICD9CM|Fetal hematologic conditions, delivered, with or without mention of antepartum condition|Fetal hematologic conditions, delivered, with or without mention of antepartum condition +C2349592|T046|AB|678.01|ICD9CM|Fetal hematologic-deliv|Fetal hematologic-deliv +C2349593|T046|PT|678.03|ICD9CM|Fetal hematologic conditions, antepartum condition or complication|Fetal hematologic conditions, antepartum condition or complication +C2349593|T046|AB|678.03|ICD9CM|Fetal hematologic-ante|Fetal hematologic-ante +C2349600|T046|HT|678.1|ICD9CM|Fetal conjoined twins|Fetal conjoined twins +C2349597|T046|AB|678.10|ICD9CM|Fetal conjoin twins-unsp|Fetal conjoin twins-unsp +C2349597|T046|PT|678.10|ICD9CM|Fetal conjoined twins, unspecified as to episode of care or not applicable|Fetal conjoined twins, unspecified as to episode of care or not applicable +C2349598|T046|AB|678.11|ICD9CM|Fetal conjoin twins-del|Fetal conjoin twins-del +C2349598|T046|PT|678.11|ICD9CM|Fetal conjoined twins, delivered, with or without mention of antepartum condition|Fetal conjoined twins, delivered, with or without mention of antepartum condition +C2349599|T046|AB|678.13|ICD9CM|Fetal conjoin twins-ante|Fetal conjoin twins-ante +C2349599|T046|PT|678.13|ICD9CM|Fetal conjoined twins, antepartum condition or complication|Fetal conjoined twins, antepartum condition or complication +C2349615|T046|HT|679|ICD9CM|Complications of in utero procedures|Complications of in utero procedures +C2349607|T046|HT|679.0|ICD9CM|Maternal complications from in utero procedure|Maternal complications from in utero procedure +C2349602|T046|AB|679.00|ICD9CM|Mat comp in utero-unsp|Mat comp in utero-unsp +C2349602|T046|PT|679.00|ICD9CM|Maternal complications from in utero procedure, unspecified as to episode of care or not applicable|Maternal complications from in utero procedure, unspecified as to episode of care or not applicable +C2349603|T046|AB|679.01|ICD9CM|Mat comp in utero-del|Mat comp in utero-del +C2349604|T046|AB|679.02|ICD9CM|Mat comp in utro-del-p/p|Mat comp in utro-del-p/p +C2349604|T046|PT|679.02|ICD9CM|Maternal complications from in utero procedure, delivered, with mention of postpartum complication|Maternal complications from in utero procedure, delivered, with mention of postpartum complication +C2349605|T046|AB|679.03|ICD9CM|Mat comp in utero-ante|Mat comp in utero-ante +C2349605|T046|PT|679.03|ICD9CM|Maternal complications from in utero procedure, antepartum condition or complication|Maternal complications from in utero procedure, antepartum condition or complication +C2349606|T046|AB|679.04|ICD9CM|Mat comp in utero-p/p|Mat comp in utero-p/p +C2349606|T046|PT|679.04|ICD9CM|Maternal complications from in utero procedure, postpartum condition or complication|Maternal complications from in utero procedure, postpartum condition or complication +C2349613|T046|HT|679.1|ICD9CM|Fetal complications from in utero procedure|Fetal complications from in utero procedure +C2349608|T046|AB|679.10|ICD9CM|Fetal comp in utero-unsp|Fetal comp in utero-unsp +C2349608|T046|PT|679.10|ICD9CM|Fetal complications from in utero procedure, unspecified as to episode of care or not applicable|Fetal complications from in utero procedure, unspecified as to episode of care or not applicable +C2349609|T046|AB|679.11|ICD9CM|Fetal comp in utero-del|Fetal comp in utero-del +C2349610|T046|PT|679.12|ICD9CM|Fetal complications from in utero procedure, delivered, with mention of postpartum complication|Fetal complications from in utero procedure, delivered, with mention of postpartum complication +C2349610|T046|AB|679.12|ICD9CM|Ftl cmp in utro-del-p/p|Ftl cmp in utro-del-p/p +C2349611|T046|AB|679.13|ICD9CM|Fetal comp in utero-ante|Fetal comp in utero-ante +C2349611|T046|PT|679.13|ICD9CM|Fetal complications from in utero procedure, antepartum condition or complication|Fetal complications from in utero procedure, antepartum condition or complication +C2349612|T046|AB|679.14|ICD9CM|Fetal comp in utero-p/p|Fetal comp in utero-p/p +C2349612|T046|PT|679.14|ICD9CM|Fetal complications from in utero procedure, postpartum condition or complication|Fetal complications from in utero procedure, postpartum condition or complication +C0157680|T047|HT|680|ICD9CM|Carbuncle and furuncle|Carbuncle and furuncle +C0037278|T047|HT|680-686.99|ICD9CM|INFECTIONS OF SKIN AND SUBCUTANEOUS TISSUE|INFECTIONS OF SKIN AND SUBCUTANEOUS TISSUE +C0178298|T047|HT|680-709.99|ICD9CM|DISEASES OF THE SKIN AND SUBCUTANEOUS TISSUE|DISEASES OF THE SKIN AND SUBCUTANEOUS TISSUE +C0157681|T047|PT|680.0|ICD9CM|Carbuncle and furuncle of face|Carbuncle and furuncle of face +C0157681|T047|AB|680.0|ICD9CM|Carbuncle of face|Carbuncle of face +C0157682|T047|PT|680.1|ICD9CM|Carbuncle and furuncle of neck|Carbuncle and furuncle of neck +C0157682|T047|AB|680.1|ICD9CM|Carbuncle of neck|Carbuncle of neck +C0157683|T047|PT|680.2|ICD9CM|Carbuncle and furuncle of trunk|Carbuncle and furuncle of trunk +C0157683|T047|AB|680.2|ICD9CM|Carbuncle of trunk|Carbuncle of trunk +C0157684|T047|PT|680.3|ICD9CM|Carbuncle and furuncle of upper arm and forearm|Carbuncle and furuncle of upper arm and forearm +C0157684|T047|AB|680.3|ICD9CM|Carbuncle of arm|Carbuncle of arm +C0157685|T047|PT|680.4|ICD9CM|Carbuncle and furuncle of hand|Carbuncle and furuncle of hand +C0157685|T047|AB|680.4|ICD9CM|Carbuncle of hand|Carbuncle of hand +C0157686|T047|PT|680.5|ICD9CM|Carbuncle and furuncle of buttock|Carbuncle and furuncle of buttock +C0157686|T047|AB|680.5|ICD9CM|Carbuncle of buttock|Carbuncle of buttock +C0157687|T047|PT|680.6|ICD9CM|Carbuncle and furuncle of leg, except foot|Carbuncle and furuncle of leg, except foot +C0157687|T047|AB|680.6|ICD9CM|Carbuncle of leg|Carbuncle of leg +C0157688|T047|PT|680.7|ICD9CM|Carbuncle and furuncle of foot|Carbuncle and furuncle of foot +C0157688|T047|AB|680.7|ICD9CM|Carbuncle of foot|Carbuncle of foot +C0157689|T047|PT|680.8|ICD9CM|Carbuncle and furuncle of other specified sites|Carbuncle and furuncle of other specified sites +C0157689|T047|AB|680.8|ICD9CM|Carbuncle, site NEC|Carbuncle, site NEC +C0007079|T047|PT|680.9|ICD9CM|Carbuncle and furuncle of unspecified site|Carbuncle and furuncle of unspecified site +C0007079|T047|AB|680.9|ICD9CM|Carbuncle NOS|Carbuncle NOS +C0157690|T047|HT|681|ICD9CM|Cellulitis and abscess of finger and toe|Cellulitis and abscess of finger and toe +C0157691|T047|HT|681.0|ICD9CM|Cellulitis and abscess of finger|Cellulitis and abscess of finger +C0157691|T047|PT|681.00|ICD9CM|Cellulitis and abscess of finger, unspecified|Cellulitis and abscess of finger, unspecified +C0157691|T047|AB|681.00|ICD9CM|Cellulitis, finger NOS|Cellulitis, finger NOS +C0152448|T046|AB|681.01|ICD9CM|Felon|Felon +C0152448|T046|PT|681.01|ICD9CM|Felon|Felon +C0157692|T047|PT|681.02|ICD9CM|Onychia and paronychia of finger|Onychia and paronychia of finger +C0157692|T047|AB|681.02|ICD9CM|Onychia of finger|Onychia of finger +C0157693|T047|HT|681.1|ICD9CM|Cellulitis and abscess of toe|Cellulitis and abscess of toe +C0157693|T047|PT|681.10|ICD9CM|Cellulitis and abscess of toe, unspecified|Cellulitis and abscess of toe, unspecified +C0157693|T047|AB|681.10|ICD9CM|Cellulitis, toe NOS|Cellulitis, toe NOS +C0157694|T047|PT|681.11|ICD9CM|Onychia and paronychia of toe|Onychia and paronychia of toe +C0157694|T047|AB|681.11|ICD9CM|Onychia of toe|Onychia of toe +C0007644|T047|PT|681.9|ICD9CM|Cellulitis and abscess of unspecified digit|Cellulitis and abscess of unspecified digit +C0007644|T047|AB|681.9|ICD9CM|Cellulitis of digit NOS|Cellulitis of digit NOS +C0157695|T047|HT|682|ICD9CM|Other cellulitis and abscess|Other cellulitis and abscess +C0157696|T047|PT|682.0|ICD9CM|Cellulitis and abscess of face|Cellulitis and abscess of face +C0157696|T047|AB|682.0|ICD9CM|Cellulitis of face|Cellulitis of face +C0157697|T047|PT|682.1|ICD9CM|Cellulitis and abscess of neck|Cellulitis and abscess of neck +C0157697|T047|AB|682.1|ICD9CM|Cellulitis of neck|Cellulitis of neck +C0157698|T047|PT|682.2|ICD9CM|Cellulitis and abscess of trunk|Cellulitis and abscess of trunk +C0157698|T047|AB|682.2|ICD9CM|Cellulitis of trunk|Cellulitis of trunk +C0157699|T047|PT|682.3|ICD9CM|Cellulitis and abscess of upper arm and forearm|Cellulitis and abscess of upper arm and forearm +C0157699|T047|AB|682.3|ICD9CM|Cellulitis of arm|Cellulitis of arm +C0406078|T047|PT|682.4|ICD9CM|Cellulitis and abscess of hand, except fingers and thumb|Cellulitis and abscess of hand, except fingers and thumb +C0406078|T047|AB|682.4|ICD9CM|Cellulitis of hand|Cellulitis of hand +C0157701|T047|PT|682.5|ICD9CM|Cellulitis and abscess of buttock|Cellulitis and abscess of buttock +C0157701|T047|AB|682.5|ICD9CM|Cellulitis of buttock|Cellulitis of buttock +C0157702|T047|PT|682.6|ICD9CM|Cellulitis and abscess of leg, except foot|Cellulitis and abscess of leg, except foot +C0157702|T047|AB|682.6|ICD9CM|Cellulitis of leg|Cellulitis of leg +C0406089|T047|PT|682.7|ICD9CM|Cellulitis and abscess of foot, except toes|Cellulitis and abscess of foot, except toes +C0406089|T047|AB|682.7|ICD9CM|Cellulitis of foot|Cellulitis of foot +C0157704|T047|PT|682.8|ICD9CM|Cellulitis and abscess of other specified sites|Cellulitis and abscess of other specified sites +C0157704|T047|AB|682.8|ICD9CM|Cellulitis, site NEC|Cellulitis, site NEC +C0007645|T047|PT|682.9|ICD9CM|Cellulitis and abscess of unspecified sites|Cellulitis and abscess of unspecified sites +C0007645|T047|AB|682.9|ICD9CM|Cellulitis NOS|Cellulitis NOS +C0157705|T047|AB|683|ICD9CM|Acute lymphadenitis|Acute lymphadenitis +C0157705|T047|PT|683|ICD9CM|Acute lymphadenitis|Acute lymphadenitis +C0021099|T047|AB|684|ICD9CM|Impetigo|Impetigo +C0021099|T047|PT|684|ICD9CM|Impetigo|Impetigo +C0031925|T047|HT|685|ICD9CM|Pilonidal cyst|Pilonidal cyst +C3537055|T046|AB|685.0|ICD9CM|Pilonidal cyst w abscess|Pilonidal cyst w abscess +C3537055|T046|PT|685.0|ICD9CM|Pilonidal cyst with abscess|Pilonidal cyst with abscess +C0520556|T190|AB|685.1|ICD9CM|Pilonidal cyst w/o absc|Pilonidal cyst w/o absc +C0520556|T190|PT|685.1|ICD9CM|Pilonidal cyst without mention of abscess|Pilonidal cyst without mention of abscess +C0157707|T047|HT|686|ICD9CM|Other local infections of skin and subcutaneous tissue|Other local infections of skin and subcutaneous tissue +C0034212|T047|HT|686.0|ICD9CM|Pyoderma|Pyoderma +C0034212|T047|AB|686.00|ICD9CM|Pyoderma NOS|Pyoderma NOS +C0034212|T047|PT|686.00|ICD9CM|Pyoderma, unspecified|Pyoderma, unspecified +C0085652|T047|AB|686.01|ICD9CM|Pyoderma gangrenosum|Pyoderma gangrenosum +C0085652|T047|PT|686.01|ICD9CM|Pyoderma gangrenosum|Pyoderma gangrenosum +C0490009|T047|PT|686.09|ICD9CM|Other pyoderma|Other pyoderma +C0490009|T047|AB|686.09|ICD9CM|Pyoderma NEC|Pyoderma NEC +C0034214|T046|AB|686.1|ICD9CM|Pyogenic granuloma|Pyogenic granuloma +C0034214|T046|PT|686.1|ICD9CM|Pyogenic granuloma of skin and subcutaneous tissue|Pyogenic granuloma of skin and subcutaneous tissue +C0029813|T046|AB|686.8|ICD9CM|Local skin infection NEC|Local skin infection NEC +C0029813|T046|PT|686.8|ICD9CM|Other specified local infections of skin and subcutaneous tissue|Other specified local infections of skin and subcutaneous tissue +C0406047|T047|AB|686.9|ICD9CM|Local skin infection NOS|Local skin infection NOS +C0406047|T047|PT|686.9|ICD9CM|Unspecified local infection of skin and subcutaneous tissue|Unspecified local infection of skin and subcutaneous tissue +C0014747|T047|HT|690|ICD9CM|Erythematosquamous dermatosis|Erythematosquamous dermatosis +C0178300|T047|HT|690-698.99|ICD9CM|OTHER INFLAMMATORY CONDITIONS OF SKIN AND SUBCUTANEOUS TISSUE|OTHER INFLAMMATORY CONDITIONS OF SKIN AND SUBCUTANEOUS TISSUE +C0036508|T047|HT|690.1|ICD9CM|Seborrheic dermatitis|Seborrheic dermatitis +C0036508|T047|PT|690.10|ICD9CM|Seborrheic dermatitis, unspecified|Seborrheic dermatitis, unspecified +C0036508|T047|AB|690.10|ICD9CM|Sebrrheic dermatitis NOS|Sebrrheic dermatitis NOS +C0221244|T047|AB|690.11|ICD9CM|Seborrhea capitis|Seborrhea capitis +C0221244|T047|PT|690.11|ICD9CM|Seborrhea capitis|Seborrhea capitis +C0343047|T047|AB|690.12|ICD9CM|Sbrheic infantl drmtitis|Sbrheic infantl drmtitis +C0343047|T047|PT|690.12|ICD9CM|Seborrheic infantile dermatitis|Seborrheic infantile dermatitis +C0348768|T047|PT|690.18|ICD9CM|Other seborrheic dermatitis|Other seborrheic dermatitis +C0348768|T047|AB|690.18|ICD9CM|Sebrrheic dermatitis NEC|Sebrrheic dermatitis NEC +C0375481|T047|AB|690.8|ICD9CM|Erythmtsquamous derm NEC|Erythmtsquamous derm NEC +C0375481|T047|PT|690.8|ICD9CM|Other erythematosquamous dermatosis|Other erythematosquamous dermatosis +C0004187|T047|HT|691|ICD9CM|Atopic dermatitis and related conditions|Atopic dermatitis and related conditions +C0011974|T047|AB|691.0|ICD9CM|Diaper or napkin rash|Diaper or napkin rash +C0011974|T047|PT|691.0|ICD9CM|Diaper or napkin rash|Diaper or napkin rash +C0494831|T047|AB|691.8|ICD9CM|Other atopic dermatitis|Other atopic dermatitis +C0494831|T047|PT|691.8|ICD9CM|Other atopic dermatitis and related conditions|Other atopic dermatitis and related conditions +C0009833|T047|HT|692|ICD9CM|Contact dermatitis and other eczema|Contact dermatitis and other eczema +C0157708|T047|PT|692.0|ICD9CM|Contact dermatitis and other eczema due to detergents|Contact dermatitis and other eczema due to detergents +C0157708|T047|AB|692.0|ICD9CM|Detergent dermatitis|Detergent dermatitis +C0157709|T047|PT|692.1|ICD9CM|Contact dermatitis and other eczema due to oils and greases|Contact dermatitis and other eczema due to oils and greases +C0157709|T047|AB|692.1|ICD9CM|Oil & grease dermatitis|Oil & grease dermatitis +C0157710|T047|PT|692.2|ICD9CM|Contact dermatitis and other eczema due to solvents|Contact dermatitis and other eczema due to solvents +C0157710|T047|AB|692.2|ICD9CM|Solvent dermatitis|Solvent dermatitis +C0157711|T047|PT|692.3|ICD9CM|Contact dermatitis and other eczema due to drugs and medicines in contact with skin|Contact dermatitis and other eczema due to drugs and medicines in contact with skin +C0157711|T047|AB|692.3|ICD9CM|Topical med dermatitis|Topical med dermatitis +C0157712|T047|AB|692.4|ICD9CM|Chemical dermatitis NEC|Chemical dermatitis NEC +C0157712|T047|PT|692.4|ICD9CM|Contact dermatitis and other eczema due to other chemical products|Contact dermatitis and other eczema due to other chemical products +C0157713|T047|PT|692.5|ICD9CM|Contact dermatitis and other eczema due to food in contact with skin|Contact dermatitis and other eczema due to food in contact with skin +C0157713|T047|AB|692.5|ICD9CM|Topical food dermatitis|Topical food dermatitis +C0157714|T047|PT|692.6|ICD9CM|Contact dermatitis and other eczema due to plants [except food]|Contact dermatitis and other eczema due to plants [except food] +C0157714|T047|AB|692.6|ICD9CM|Dermatitis due to plant|Dermatitis due to plant +C0157715|T037|HT|692.7|ICD9CM|Contact dermatitis and other eczema due to solar radiation|Contact dermatitis and other eczema due to solar radiation +C0263292|T047|AB|692.70|ICD9CM|Solar dermatitis NOS|Solar dermatitis NOS +C0263292|T047|PT|692.70|ICD9CM|Unspecified dermatitis due to sun|Unspecified dermatitis due to sun +C0038814|T037|AB|692.71|ICD9CM|Sunburn|Sunburn +C0038814|T037|PT|692.71|ICD9CM|Sunburn|Sunburn +C0375482|T047|AB|692.72|ICD9CM|Act drmtitis solar rdiat|Act drmtitis solar rdiat +C0375482|T047|PT|692.72|ICD9CM|Acute dermatitis due to solar radiation|Acute dermatitis due to solar radiation +C0375483|T047|PT|692.73|ICD9CM|Actinic reticuloid and actinic granuloma|Actinic reticuloid and actinic granuloma +C0375483|T047|AB|692.73|ICD9CM|Actnc retic actnc grnlma|Actnc retic actnc grnlma +C0375484|T047|AB|692.74|ICD9CM|Oth chr drmtit solar rad|Oth chr drmtit solar rad +C0375484|T047|PT|692.74|ICD9CM|Other chronic dermatitis due to solar radiation|Other chronic dermatitis due to solar radiation +C0265970|T047|AB|692.75|ICD9CM|Dis sup actnc porokrtsis|Dis sup actnc porokrtsis +C0265970|T047|PT|692.75|ICD9CM|Disseminated superficial actinic porokeratosis (DSAP)|Disseminated superficial actinic porokeratosis (DSAP) +C0451998|T037|AB|692.76|ICD9CM|2nd degree sunburn|2nd degree sunburn +C0451998|T037|PT|692.76|ICD9CM|Sunburn of second degree|Sunburn of second degree +C0452001|T037|AB|692.77|ICD9CM|3rd degree sunburn|3rd degree sunburn +C0452001|T037|PT|692.77|ICD9CM|Sunburn of third degree|Sunburn of third degree +C0375485|T047|AB|692.79|ICD9CM|Oth dermatitis solar rad|Oth dermatitis solar rad +C0375485|T047|PT|692.79|ICD9CM|Other dermatitis due to solar radiation|Other dermatitis due to solar radiation +C0009834|T047|HT|692.8|ICD9CM|Contact dermatitis and other eczema due to other specified agents|Contact dermatitis and other eczema due to other specified agents +C0263296|T047|AB|692.81|ICD9CM|Cosmetic dermatitis|Cosmetic dermatitis +C0263296|T047|PT|692.81|ICD9CM|Dermatitis due to cosmetics|Dermatitis due to cosmetics +C0375486|T047|PT|692.82|ICD9CM|Dermatitis due to other radiation|Dermatitis due to other radiation +C0375486|T047|AB|692.82|ICD9CM|Dermatitis oth radiation|Dermatitis oth radiation +C0263304|T047|PT|692.83|ICD9CM|Dermatitis due to metals|Dermatitis due to metals +C0263304|T047|AB|692.83|ICD9CM|Dermatitis metals|Dermatitis metals +C1456114|T047|PT|692.84|ICD9CM|Contact dermatitis and other eczema due to animal (cat) (dog) dander|Contact dermatitis and other eczema due to animal (cat) (dog) dander +C1456114|T047|AB|692.84|ICD9CM|Contact drmatitis-animal|Contact drmatitis-animal +C0009834|T047|PT|692.89|ICD9CM|Contact dermatitis and other eczema due to other specified agents|Contact dermatitis and other eczema due to other specified agents +C0009834|T047|AB|692.89|ICD9CM|Dermatitis NEC|Dermatitis NEC +C0375487|T047|PT|692.9|ICD9CM|Contact dermatitis and other eczema, unspecified cause|Contact dermatitis and other eczema, unspecified cause +C0375487|T047|AB|692.9|ICD9CM|Dermatitis NOS|Dermatitis NOS +C0157718|T047|HT|693|ICD9CM|Dermatitis due to substances taken internally|Dermatitis due to substances taken internally +C0011604|T046|PT|693.0|ICD9CM|Dermatitis due to drugs and medicines taken internally|Dermatitis due to drugs and medicines taken internally +C0011604|T046|AB|693.0|ICD9CM|Drug dermatitis NOS|Drug dermatitis NOS +C0494843|T047|AB|693.1|ICD9CM|Dermat d/t food ingest|Dermat d/t food ingest +C0494843|T047|PT|693.1|ICD9CM|Dermatitis due to food taken internally|Dermatitis due to food taken internally +C0157719|T046|AB|693.8|ICD9CM|Dermat d/t int agent NEC|Dermat d/t int agent NEC +C0157719|T046|PT|693.8|ICD9CM|Dermatitis due to other specified substances taken internally|Dermatitis due to other specified substances taken internally +C0157718|T047|AB|693.9|ICD9CM|Dermat d/t int agent NOS|Dermat d/t int agent NOS +C0157718|T047|PT|693.9|ICD9CM|Dermatitis due to unspecified substance taken internally|Dermatitis due to unspecified substance taken internally +C0085932|T047|HT|694|ICD9CM|Bullous dermatoses|Bullous dermatoses +C0011608|T047|AB|694.0|ICD9CM|Dermatitis herpetiformis|Dermatitis herpetiformis +C0011608|T047|PT|694.0|ICD9CM|Dermatitis herpetiformis|Dermatitis herpetiformis +C0600336|T047|AB|694.1|ICD9CM|Subcorneal pust dermatos|Subcorneal pust dermatos +C0600336|T047|PT|694.1|ICD9CM|Subcorneal pustular dermatosis|Subcorneal pustular dermatosis +C0152092|T047|AB|694.2|ICD9CM|Juven dermat herpetiform|Juven dermat herpetiform +C0152092|T047|PT|694.2|ICD9CM|Juvenile dermatitis herpetiformis|Juvenile dermatitis herpetiformis +C1314968|T047|AB|694.3|ICD9CM|Impetigo herpetiformis|Impetigo herpetiformis +C1314968|T047|PT|694.3|ICD9CM|Impetigo herpetiformis|Impetigo herpetiformis +C0030807|T047|AB|694.4|ICD9CM|Pemphigus|Pemphigus +C0030807|T047|PT|694.4|ICD9CM|Pemphigus|Pemphigus +C0030805|T047|AB|694.5|ICD9CM|Pemphigoid|Pemphigoid +C0030805|T047|PT|694.5|ICD9CM|Pemphigoid|Pemphigoid +C0030804|T047|HT|694.6|ICD9CM|Benign mucous membrane pemphigoid|Benign mucous membrane pemphigoid +C1367974|T047|PT|694.60|ICD9CM|Benign mucous membrane pemphigoid without mention of ocular involvement|Benign mucous membrane pemphigoid without mention of ocular involvement +C1367974|T047|AB|694.60|ICD9CM|Bn mucous memb pemph NOS|Bn mucous memb pemph NOS +C0157721|T047|PT|694.61|ICD9CM|Benign mucous membrane pemphigoid with ocular involvement|Benign mucous membrane pemphigoid with ocular involvement +C0157721|T047|AB|694.61|ICD9CM|Ocular pemphigus|Ocular pemphigus +C0079957|T047|AB|694.8|ICD9CM|Bullous dermatoses NEC|Bullous dermatoses NEC +C0079957|T047|PT|694.8|ICD9CM|Other specified bullous dermatoses|Other specified bullous dermatoses +C0085932|T047|AB|694.9|ICD9CM|Bullous dermatoses NOS|Bullous dermatoses NOS +C0085932|T047|PT|694.9|ICD9CM|Unspecified bullous dermatoses|Unspecified bullous dermatoses +C0041834|T047|HT|695|ICD9CM|Erythematous conditions|Erythematous conditions +C0152251|T047|AB|695.0|ICD9CM|Toxic erythema|Toxic erythema +C0152251|T047|PT|695.0|ICD9CM|Toxic erythema|Toxic erythema +C0014742|T047|HT|695.1|ICD9CM|Erythema multiforme|Erythema multiforme +C0014742|T047|AB|695.10|ICD9CM|Erythema multiforme NOS|Erythema multiforme NOS +C0014742|T047|PT|695.10|ICD9CM|Erythema multiforme, unspecified|Erythema multiforme, unspecified +C0857751|T047|PT|695.11|ICD9CM|Erythema multiforme minor|Erythema multiforme minor +C0857751|T047|AB|695.11|ICD9CM|Erythma multiforme minor|Erythma multiforme minor +C3241919|T047|AB|695.12|ICD9CM|Erythema multiforme maj|Erythema multiforme maj +C3241919|T047|PT|695.12|ICD9CM|Erythema multiforme major|Erythema multiforme major +C0038325|T047|PT|695.13|ICD9CM|Stevens-Johnson syndrome|Stevens-Johnson syndrome +C0038325|T047|AB|695.13|ICD9CM|Stevens-Johnson syndrome|Stevens-Johnson syndrome +C2349616|T047|PT|695.14|ICD9CM|Stevens-Johnson syndrome-toxic epidermal necrolysis overlap syndrome|Stevens-Johnson syndrome-toxic epidermal necrolysis overlap syndrome +C2349616|T047|AB|695.14|ICD9CM|Stevens-Johnson-TEN syn|Stevens-Johnson-TEN syn +C0014518|T047|PT|695.15|ICD9CM|Toxic epidermal necrolysis|Toxic epidermal necrolysis +C0014518|T047|AB|695.15|ICD9CM|Toxic epidrml necrolysis|Toxic epidrml necrolysis +C0477492|T047|AB|695.19|ICD9CM|Erythema multiforme NEC|Erythema multiforme NEC +C0477492|T047|PT|695.19|ICD9CM|Other erythema multiforme|Other erythema multiforme +C0014743|T047|AB|695.2|ICD9CM|Erythema nodosum|Erythema nodosum +C0014743|T047|PT|695.2|ICD9CM|Erythema nodosum|Erythema nodosum +C0035854|T047|AB|695.3|ICD9CM|Rosacea|Rosacea +C0035854|T047|PT|695.3|ICD9CM|Rosacea|Rosacea +C0409974|T047|AB|695.4|ICD9CM|Lupus erythematosus|Lupus erythematosus +C0409974|T047|PT|695.4|ICD9CM|Lupus erythematosus|Lupus erythematosus +C2349629|T047|HT|695.5|ICD9CM|Exfoliation due to erythematous conditions according to extent of body surface involved|Exfoliation due to erythematous conditions according to extent of body surface involved +C2349618|T047|AB|695.50|ICD9CM|Exfol d/t eryth <10% bdy|Exfol d/t eryth <10% bdy +C2349618|T047|PT|695.50|ICD9CM|Exfoliation due to erythematous condition involving less than 10 percent of body surface|Exfoliation due to erythematous condition involving less than 10 percent of body surface +C2349620|T047|AB|695.51|ICD9CM|Exfl d/t eryth 10-19 bdy|Exfl d/t eryth 10-19 bdy +C2349620|T047|PT|695.51|ICD9CM|Exfoliation due to erythematous condition involving 10-19 percent of body surface|Exfoliation due to erythematous condition involving 10-19 percent of body surface +C2349621|T047|AB|695.52|ICD9CM|Exfl d/t eryth 20-29 bdy|Exfl d/t eryth 20-29 bdy +C2349621|T047|PT|695.52|ICD9CM|Exfoliation due to erythematous condition involving 20-29 percent of body surface|Exfoliation due to erythematous condition involving 20-29 percent of body surface +C2349622|T047|AB|695.53|ICD9CM|Exfl d/t eryth 30-39 bdy|Exfl d/t eryth 30-39 bdy +C2349622|T047|PT|695.53|ICD9CM|Exfoliation due to erythematous condition involving 30-39 percent of body surface|Exfoliation due to erythematous condition involving 30-39 percent of body surface +C2349623|T047|AB|695.54|ICD9CM|Exfl d/t eryth 40-49 bdy|Exfl d/t eryth 40-49 bdy +C2349623|T047|PT|695.54|ICD9CM|Exfoliation due to erythematous condition involving 40-49 percent of body surface|Exfoliation due to erythematous condition involving 40-49 percent of body surface +C2349624|T047|AB|695.55|ICD9CM|Exfl d/t eryth 50-59 bdy|Exfl d/t eryth 50-59 bdy +C2349624|T047|PT|695.55|ICD9CM|Exfoliation due to erythematous condition involving 50-59 percent of body surface|Exfoliation due to erythematous condition involving 50-59 percent of body surface +C2349625|T047|AB|695.56|ICD9CM|Exfl d/t eryth 60-69 bdy|Exfl d/t eryth 60-69 bdy +C2349625|T047|PT|695.56|ICD9CM|Exfoliation due to erythematous condition involving 60-69 percent of body surface|Exfoliation due to erythematous condition involving 60-69 percent of body surface +C2349626|T047|AB|695.57|ICD9CM|Exfl d/t eryth 70-79 bdy|Exfl d/t eryth 70-79 bdy +C2349626|T047|PT|695.57|ICD9CM|Exfoliation due to erythematous condition involving 70-79 percent of body surface|Exfoliation due to erythematous condition involving 70-79 percent of body surface +C2349627|T047|AB|695.58|ICD9CM|Exfl d/t eryth 80-89 bdy|Exfl d/t eryth 80-89 bdy +C2349627|T047|PT|695.58|ICD9CM|Exfoliation due to erythematous condition involving 80-89 percent of body surface|Exfoliation due to erythematous condition involving 80-89 percent of body surface +C2349628|T047|AB|695.59|ICD9CM|Exfl d/t eryth >=90% bdy|Exfl d/t eryth >=90% bdy +C2349628|T047|PT|695.59|ICD9CM|Exfoliation due to erythematous condition involving 90 percent or more of body surface|Exfoliation due to erythematous condition involving 90 percent or more of body surface +C0029794|T047|HT|695.8|ICD9CM|Other specified erythematous conditions|Other specified erythematous conditions +C0038165|T047|AB|695.81|ICD9CM|Ritter's disease|Ritter's disease +C0038165|T047|PT|695.81|ICD9CM|Ritter's disease|Ritter's disease +C0029794|T047|AB|695.89|ICD9CM|Erythematous cond NEC|Erythematous cond NEC +C0029794|T047|PT|695.89|ICD9CM|Other specified erythematous conditions|Other specified erythematous conditions +C0041834|T047|AB|695.9|ICD9CM|Erythematous cond NOS|Erythematous cond NOS +C0041834|T047|PT|695.9|ICD9CM|Unspecified erythematous condition|Unspecified erythematous condition +C0157723|T047|HT|696|ICD9CM|Psoriasis and similar disorders|Psoriasis and similar disorders +C0003872|T047|AB|696.0|ICD9CM|Psoriatic arthropathy|Psoriatic arthropathy +C0003872|T047|PT|696.0|ICD9CM|Psoriatic arthropathy|Psoriatic arthropathy +C0490052|T047|AB|696.1|ICD9CM|Other psoriasis|Other psoriasis +C0490052|T047|PT|696.1|ICD9CM|Other psoriasis|Other psoriasis +C0030491|T047|AB|696.2|ICD9CM|Parapsoriasis|Parapsoriasis +C0030491|T047|PT|696.2|ICD9CM|Parapsoriasis|Parapsoriasis +C0032026|T047|AB|696.3|ICD9CM|Pityriasis rosea|Pityriasis rosea +C0032026|T047|PT|696.3|ICD9CM|Pityriasis rosea|Pityriasis rosea +C0032027|T047|AB|696.4|ICD9CM|Pityriasis rubra pilaris|Pityriasis rubra pilaris +C0032027|T047|PT|696.4|ICD9CM|Pityriasis rubra pilaris|Pityriasis rubra pilaris +C0029514|T047|PT|696.5|ICD9CM|Other and unspecified pityriasis|Other and unspecified pityriasis +C0029514|T047|AB|696.5|ICD9CM|Pityriasis NEC & NOS|Pityriasis NEC & NOS +C0029717|T047|PT|696.8|ICD9CM|Other psoriasis and similar disorders|Other psoriasis and similar disorders +C0029717|T047|AB|696.8|ICD9CM|Psorias related dis NEC|Psorias related dis NEC +C0023643|T047|HT|697|ICD9CM|Lichen|Lichen +C0023646|T047|AB|697.0|ICD9CM|Lichen planus|Lichen planus +C0023646|T047|PT|697.0|ICD9CM|Lichen planus|Lichen planus +C0162849|T047|AB|697.1|ICD9CM|Lichen nitidus|Lichen nitidus +C0162849|T047|PT|697.1|ICD9CM|Lichen nitidus|Lichen nitidus +C0868870|T047|AB|697.8|ICD9CM|Lichen NEC|Lichen NEC +C0868870|T047|PT|697.8|ICD9CM|Other lichen, not elsewhere classified|Other lichen, not elsewhere classified +C0023643|T047|AB|697.9|ICD9CM|Lichen NOS|Lichen NOS +C0023643|T047|PT|697.9|ICD9CM|Lichen, unspecified|Lichen, unspecified +C0157724|T184|HT|698|ICD9CM|Pruritus and related conditions|Pruritus and related conditions +C0033775|T184|AB|698.0|ICD9CM|Pruritus ani|Pruritus ani +C0033775|T184|PT|698.0|ICD9CM|Pruritus ani|Pruritus ani +C0033777|T184|PT|698.1|ICD9CM|Pruritus of genital organs|Pruritus of genital organs +C0033777|T184|AB|698.1|ICD9CM|Pruritus of genitalia|Pruritus of genitalia +C0033771|T047|AB|698.2|ICD9CM|Prurigo|Prurigo +C0033771|T047|PT|698.2|ICD9CM|Prurigo|Prurigo +C0023654|T047|AB|698.3|ICD9CM|Lichenification|Lichenification +C0023654|T047|PT|698.3|ICD9CM|Lichenification and lichen simplex chronicus|Lichenification and lichen simplex chronicus +C1274184|T047|AB|698.4|ICD9CM|Dermatitis factitia|Dermatitis factitia +C1274184|T047|PT|698.4|ICD9CM|Dermatitis factitia [artefacta]|Dermatitis factitia [artefacta] +C0157725|T184|PT|698.8|ICD9CM|Other specified pruritic conditions|Other specified pruritic conditions +C0157725|T184|AB|698.8|ICD9CM|Pruritic conditions NEC|Pruritic conditions NEC +C0033774|T033|AB|698.9|ICD9CM|Pruritic disorder NOS|Pruritic disorder NOS +C0033774|T033|PT|698.9|ICD9CM|Unspecified pruritic disorder|Unspecified pruritic disorder +C0157726|T020|AB|700|ICD9CM|Corns and callosities|Corns and callosities +C0157726|T020|PT|700|ICD9CM|Corns and callosities|Corns and callosities +C0178301|T047|HT|700-709.99|ICD9CM|OTHER DISEASES OF SKIN AND SUBCUTANEOUS TISSUE|OTHER DISEASES OF SKIN AND SUBCUTANEOUS TISSUE +C0157727|T046|HT|701|ICD9CM|Other hypertrophic and atrophic conditions of skin|Other hypertrophic and atrophic conditions of skin +C0036420|T047|AB|701.0|ICD9CM|Circumscribe scleroderma|Circumscribe scleroderma +C0036420|T047|PT|701.0|ICD9CM|Circumscribed scleroderma|Circumscribed scleroderma +C0022581|T020|AB|701.1|ICD9CM|Keratoderma, acquired|Keratoderma, acquired +C0022581|T020|PT|701.1|ICD9CM|Keratoderma, acquired|Keratoderma, acquired +C0392440|T020|AB|701.2|ICD9CM|Acq acanthosis nigricans|Acq acanthosis nigricans +C0392440|T020|PT|701.2|ICD9CM|Acquired acanthosis nigricans|Acquired acanthosis nigricans +C0152459|T020|AB|701.3|ICD9CM|Striae atrophicae|Striae atrophicae +C0152459|T020|PT|701.3|ICD9CM|Striae atrophicae|Striae atrophicae +C0022548|T020|AB|701.4|ICD9CM|Keloid scar|Keloid scar +C0022548|T020|PT|701.4|ICD9CM|Keloid scar|Keloid scar +C0157729|T047|AB|701.5|ICD9CM|Abnormal granulation NEC|Abnormal granulation NEC +C0157729|T047|PT|701.5|ICD9CM|Other abnormal granulation tissue|Other abnormal granulation tissue +C0029805|T047|PT|701.8|ICD9CM|Other specified hypertrophic and atrophic conditions of skin|Other specified hypertrophic and atrophic conditions of skin +C0029805|T047|AB|701.8|ICD9CM|Skin hypertro/atroph NEC|Skin hypertro/atroph NEC +C0041847|T047|AB|701.9|ICD9CM|Skin hypertro/atroph NOS|Skin hypertro/atroph NOS +C0041847|T047|PT|701.9|ICD9CM|Unspecified hypertrophic and atrophic conditions of skin|Unspecified hypertrophic and atrophic conditions of skin +C0029574|T047|HT|702|ICD9CM|Other dermatoses|Other dermatoses +C0022602|T191|AB|702.0|ICD9CM|Actinic keratosis|Actinic keratosis +C0022602|T191|PT|702.0|ICD9CM|Actinic keratosis|Actinic keratosis +C0022603|T191|HT|702.1|ICD9CM|Seborrheic keratosis|Seborrheic keratosis +C0376117|T191|AB|702.11|ICD9CM|Inflamed sbrheic keratos|Inflamed sbrheic keratos +C0376117|T191|PT|702.11|ICD9CM|Inflamed seborrheic keratosis|Inflamed seborrheic keratosis +C0375488|T047|AB|702.19|ICD9CM|Other sborheic keratosis|Other sborheic keratosis +C0375488|T047|PT|702.19|ICD9CM|Other seborrheic keratosis|Other seborrheic keratosis +C0157730|T047|AB|702.8|ICD9CM|Other specf dermatoses|Other specf dermatoses +C0157730|T047|PT|702.8|ICD9CM|Other specified dermatoses|Other specified dermatoses +C0027339|T047|HT|703|ICD9CM|Diseases of nail|Diseases of nail +C0027343|T033|AB|703.0|ICD9CM|Ingrowing nail|Ingrowing nail +C0027343|T033|PT|703.0|ICD9CM|Ingrowing nail|Ingrowing nail +C0157731|T047|AB|703.8|ICD9CM|Diseases of nail NEC|Diseases of nail NEC +C0157731|T047|PT|703.8|ICD9CM|Other specified diseases of nail|Other specified diseases of nail +C0027339|T047|AB|703.9|ICD9CM|Disease of nail NOS|Disease of nail NOS +C0027339|T047|PT|703.9|ICD9CM|Unspecified disease of nail|Unspecified disease of nail +C0554472|T047|HT|704|ICD9CM|Diseases of hair and hair follicles|Diseases of hair and hair follicles +C0002170|T047|HT|704.0|ICD9CM|Alopecia|Alopecia +C0002170|T047|AB|704.00|ICD9CM|Alopecia NOS|Alopecia NOS +C0002170|T047|PT|704.00|ICD9CM|Alopecia, unspecified|Alopecia, unspecified +C0002171|T047|AB|704.01|ICD9CM|Alopecia areata|Alopecia areata +C0002171|T047|PT|704.01|ICD9CM|Alopecia areata|Alopecia areata +C0263518|T047|AB|704.02|ICD9CM|Telogen effluvium|Telogen effluvium +C0263518|T047|PT|704.02|ICD9CM|Telogen effluvium|Telogen effluvium +C0029489|T047|AB|704.09|ICD9CM|Alopecia NEC|Alopecia NEC +C0029489|T047|PT|704.09|ICD9CM|Other alopecia|Other alopecia +C0019572|T033|AB|704.1|ICD9CM|Hirsutism|Hirsutism +C0019572|T033|PT|704.1|ICD9CM|Hirsutism|Hirsutism +C0157733|T033|AB|704.2|ICD9CM|Abnormalities of hair|Abnormalities of hair +C0157733|T033|PT|704.2|ICD9CM|Abnormalities of the hair|Abnormalities of the hair +C0157734|T033|AB|704.3|ICD9CM|Variations in hair color|Variations in hair color +C0157734|T033|PT|704.3|ICD9CM|Variations in hair color|Variations in hair color +C3161259|T047|HT|704.4|ICD9CM|Pilar and trichilemmal cysts|Pilar and trichilemmal cysts +C0086809|T190|PT|704.41|ICD9CM|Pilar cyst|Pilar cyst +C0086809|T190|AB|704.41|ICD9CM|Pilar cyst|Pilar cyst +C2266788|T047|AB|704.42|ICD9CM|Trichilemmal cyst|Trichilemmal cyst +C2266788|T047|PT|704.42|ICD9CM|Trichilemmal cyst|Trichilemmal cyst +C0029769|T047|AB|704.8|ICD9CM|Hair diseases NEC|Hair diseases NEC +C0029769|T047|PT|704.8|ICD9CM|Other specified diseases of hair and hair follicles|Other specified diseases of hair and hair follicles +C0554472|T047|AB|704.9|ICD9CM|Hair disease NOS|Hair disease NOS +C0554472|T047|PT|704.9|ICD9CM|Unspecified disease of hair and hair follicles|Unspecified disease of hair and hair follicles +C0038986|T047|HT|705|ICD9CM|Disorders of sweat glands|Disorders of sweat glands +C0003028|T047|AB|705.0|ICD9CM|Anhidrosis|Anhidrosis +C0003028|T047|PT|705.0|ICD9CM|Anhidrosis|Anhidrosis +C0162423|T047|AB|705.1|ICD9CM|Prickly heat|Prickly heat +C0162423|T047|PT|705.1|ICD9CM|Prickly heat|Prickly heat +C0476475|T033|HT|705.2|ICD9CM|Focal hyperhidrosis|Focal hyperhidrosis +C1456132|T047|PT|705.21|ICD9CM|Primary focal hyperhidrosis|Primary focal hyperhidrosis +C1456132|T047|AB|705.21|ICD9CM|Primary focal hyprhidros|Primary focal hyprhidros +C1456136|T047|AB|705.22|ICD9CM|Sec focal hyperhidrosis|Sec focal hyperhidrosis +C1456136|T047|PT|705.22|ICD9CM|Secondary focal hyperhidrosis|Secondary focal hyperhidrosis +C0157735|T047|HT|705.8|ICD9CM|Other specified disorders of sweat glands|Other specified disorders of sweat glands +C0032633|T047|AB|705.81|ICD9CM|Dyshidrosis|Dyshidrosis +C0032633|T047|PT|705.81|ICD9CM|Dyshidrosis|Dyshidrosis +C0016632|T047|AB|705.82|ICD9CM|Fox-fordyce disease|Fox-fordyce disease +C0016632|T047|PT|705.82|ICD9CM|Fox-Fordyce disease|Fox-Fordyce disease +C0085160|T047|AB|705.83|ICD9CM|Hidradenitis|Hidradenitis +C0085160|T047|PT|705.83|ICD9CM|Hidradenitis|Hidradenitis +C0157735|T047|PT|705.89|ICD9CM|Other specified disorders of sweat glands|Other specified disorders of sweat glands +C0157735|T047|AB|705.89|ICD9CM|Sweat gland disorder NEC|Sweat gland disorder NEC +C0038986|T047|AB|705.9|ICD9CM|Sweat gland disorder NOS|Sweat gland disorder NOS +C0038986|T047|PT|705.9|ICD9CM|Unspecified disorder of sweat glands|Unspecified disorder of sweat glands +C0036502|T047|HT|706|ICD9CM|Diseases of sebaceous glands|Diseases of sebaceous glands +C0152249|T047|AB|706.0|ICD9CM|Acne varioliformis|Acne varioliformis +C0152249|T047|PT|706.0|ICD9CM|Acne varioliformis|Acne varioliformis +C0029485|T047|AB|706.1|ICD9CM|Acne NEC|Acne NEC +C0029485|T047|PT|706.1|ICD9CM|Other acne|Other acne +C0014511|T190|AB|706.2|ICD9CM|Sebaceous cyst|Sebaceous cyst +C0014511|T190|PT|706.2|ICD9CM|Sebaceous cyst|Sebaceous cyst +C0036508|T047|AB|706.3|ICD9CM|Seborrhea|Seborrhea +C0036508|T047|PT|706.3|ICD9CM|Seborrhea|Seborrhea +C0157736|T047|PT|706.8|ICD9CM|Other specified diseases of sebaceous glands|Other specified diseases of sebaceous glands +C0157736|T047|AB|706.8|ICD9CM|Sebaceous gland dis NEC|Sebaceous gland dis NEC +C0036502|T047|AB|706.9|ICD9CM|Sebaceous gland dis NOS|Sebaceous gland dis NOS +C0036502|T047|PT|706.9|ICD9CM|Unspecified disease of sebaceous glands|Unspecified disease of sebaceous glands +C0157738|T047|HT|707|ICD9CM|Chronic ulcer of skin|Chronic ulcer of skin +C0011127|T047|HT|707.0|ICD9CM|Pressure ulcer|Pressure ulcer +C0011127|T047|AB|707.00|ICD9CM|Pressure ulcer, site NOS|Pressure ulcer, site NOS +C0011127|T047|PT|707.00|ICD9CM|Pressure ulcer, unspecified site|Pressure ulcer, unspecified site +C0558156|T047|AB|707.01|ICD9CM|Pressure ulcer, elbow|Pressure ulcer, elbow +C0558156|T047|PT|707.01|ICD9CM|Pressure ulcer, elbow|Pressure ulcer, elbow +C1456139|T046|PT|707.02|ICD9CM|Pressure ulcer, upper back|Pressure ulcer, upper back +C1456139|T046|AB|707.02|ICD9CM|Pressure ulcer, upr back|Pressure ulcer, upr back +C1456141|T047|AB|707.03|ICD9CM|Pressure ulcer, low back|Pressure ulcer, low back +C1456141|T047|PT|707.03|ICD9CM|Pressure ulcer, lower back|Pressure ulcer, lower back +C0577712|T046|AB|707.04|ICD9CM|Pressure ulcer, hip|Pressure ulcer, hip +C0577712|T046|PT|707.04|ICD9CM|Pressure ulcer, hip|Pressure ulcer, hip +C0558160|T047|AB|707.05|ICD9CM|Pressure ulcer, buttock|Pressure ulcer, buttock +C0558160|T047|PT|707.05|ICD9CM|Pressure ulcer, buttock|Pressure ulcer, buttock +C0577713|T047|AB|707.06|ICD9CM|Pressure ulcer, ankle|Pressure ulcer, ankle +C0577713|T047|PT|707.06|ICD9CM|Pressure ulcer, ankle|Pressure ulcer, ankle +C0558158|T047|AB|707.07|ICD9CM|Pressure ulcer, heel|Pressure ulcer, heel +C0558158|T047|PT|707.07|ICD9CM|Pressure ulcer, heel|Pressure ulcer, heel +C1456142|T047|PT|707.09|ICD9CM|Pressure ulcer, other site|Pressure ulcer, other site +C1456142|T047|AB|707.09|ICD9CM|Pressure ulcer, site NEC|Pressure ulcer, site NEC +C2349630|T047|HT|707.1|ICD9CM|Ulcer of lower limbs, except pressure ulcer|Ulcer of lower limbs, except pressure ulcer +C0878700|T047|AB|707.10|ICD9CM|Ulcer of lower limb NOS|Ulcer of lower limb NOS +C0878700|T047|PT|707.10|ICD9CM|Ulcer of lower limb, unspecified|Ulcer of lower limb, unspecified +C0878701|T047|AB|707.11|ICD9CM|Ulcer of thigh|Ulcer of thigh +C0878701|T047|PT|707.11|ICD9CM|Ulcer of thigh|Ulcer of thigh +C0577719|T047|AB|707.12|ICD9CM|Ulcer of calf|Ulcer of calf +C0577719|T047|PT|707.12|ICD9CM|Ulcer of calf|Ulcer of calf +C0741085|T047|AB|707.13|ICD9CM|Ulcer of ankle|Ulcer of ankle +C0741085|T047|PT|707.13|ICD9CM|Ulcer of ankle|Ulcer of ankle +C0878702|T047|AB|707.14|ICD9CM|Ulcer of heel & midfoot|Ulcer of heel & midfoot +C0878702|T047|PT|707.14|ICD9CM|Ulcer of heel and midfoot|Ulcer of heel and midfoot +C0878703|T047|PT|707.15|ICD9CM|Ulcer of other part of foot|Ulcer of other part of foot +C0878703|T047|AB|707.15|ICD9CM|Ulcer other part of foot|Ulcer other part of foot +C0878704|T047|PT|707.19|ICD9CM|Ulcer of other part of lower limb|Ulcer of other part of lower limb +C0878704|T047|AB|707.19|ICD9CM|Ulcer oth part low limb|Ulcer oth part low limb +C1718233|T033|HT|707.2|ICD9CM|Pressure ulcer stages|Pressure ulcer stages +C2349631|T047|PT|707.20|ICD9CM|Pressure ulcer, unspecified stage|Pressure ulcer, unspecified stage +C2349631|T047|AB|707.20|ICD9CM|Pressure ulcer,stage NOS|Pressure ulcer,stage NOS +C1720599|T047|AB|707.21|ICD9CM|Pressure ulcer, stage I|Pressure ulcer, stage I +C1720599|T047|PT|707.21|ICD9CM|Pressure ulcer, stage I|Pressure ulcer, stage I +C1720518|T047|AB|707.22|ICD9CM|Pressure ulcer, stage II|Pressure ulcer, stage II +C1720518|T047|PT|707.22|ICD9CM|Pressure ulcer, stage II|Pressure ulcer, stage II +C1719811|T047|PT|707.23|ICD9CM|Pressure ulcer, stage III|Pressure ulcer, stage III +C1719811|T047|AB|707.23|ICD9CM|Pressure ulcer,stage III|Pressure ulcer,stage III +C1719910|T047|AB|707.24|ICD9CM|Pressure ulcer, stage IV|Pressure ulcer, stage IV +C1719910|T047|PT|707.24|ICD9CM|Pressure ulcer, stage IV|Pressure ulcer, stage IV +C2368027|T047|PT|707.25|ICD9CM|Pressure ulcer, unstageable|Pressure ulcer, unstageable +C2368027|T047|AB|707.25|ICD9CM|Pressure ulcer,unstagebl|Pressure ulcer,unstagebl +C0157740|T047|AB|707.8|ICD9CM|Chronic skin ulcer NEC|Chronic skin ulcer NEC +C0157740|T047|PT|707.8|ICD9CM|Chronic ulcer of other specified sites|Chronic ulcer of other specified sites +C0333297|T047|AB|707.9|ICD9CM|Chronic skin ulcer NOS|Chronic skin ulcer NOS +C0333297|T047|PT|707.9|ICD9CM|Chronic ulcer of unspecified site|Chronic ulcer of unspecified site +C0042109|T047|HT|708|ICD9CM|Urticaria|Urticaria +C0149526|T047|AB|708.0|ICD9CM|Allergic urticaria|Allergic urticaria +C0149526|T047|PT|708.0|ICD9CM|Allergic urticaria|Allergic urticaria +C0157741|T047|AB|708.1|ICD9CM|Idiopathic urticaria|Idiopathic urticaria +C0157741|T047|PT|708.1|ICD9CM|Idiopathic urticaria|Idiopathic urticaria +C0157742|T037|PT|708.2|ICD9CM|Urticaria due to cold and heat|Urticaria due to cold and heat +C0157742|T037|AB|708.2|ICD9CM|Urticaria from cold/heat|Urticaria from cold/heat +C0343065|T047|AB|708.3|ICD9CM|Dermatographic urticaria|Dermatographic urticaria +C0343065|T047|PT|708.3|ICD9CM|Dermatographic urticaria|Dermatographic urticaria +C0157743|T047|AB|708.4|ICD9CM|Vibratory urticaria|Vibratory urticaria +C0157743|T047|PT|708.4|ICD9CM|Vibratory urticaria|Vibratory urticaria +C0152230|T047|AB|708.5|ICD9CM|Cholinergic urticaria|Cholinergic urticaria +C0152230|T047|PT|708.5|ICD9CM|Cholinergic urticaria|Cholinergic urticaria +C0029839|T047|PT|708.8|ICD9CM|Other specified urticaria|Other specified urticaria +C0029839|T047|AB|708.8|ICD9CM|Urticaria NEC|Urticaria NEC +C0042109|T047|AB|708.9|ICD9CM|Urticaria NOS|Urticaria NOS +C0042109|T047|PT|708.9|ICD9CM|Urticaria, unspecified|Urticaria, unspecified +C0178301|T047|HT|709|ICD9CM|Other disorders of skin and subcutaneous tissue|Other disorders of skin and subcutaneous tissue +C0151907|T033|HT|709.0|ICD9CM|Dyschromia|Dyschromia +C0151907|T033|AB|709.00|ICD9CM|Dyschromia, unspecified|Dyschromia, unspecified +C0151907|T033|PT|709.00|ICD9CM|Dyschromia, unspecified|Dyschromia, unspecified +C0042900|T047|AB|709.01|ICD9CM|Vitiligo|Vitiligo +C0042900|T047|PT|709.01|ICD9CM|Vitiligo|Vitiligo +C0375489|T047|AB|709.09|ICD9CM|Other dyschromia|Other dyschromia +C0375489|T047|PT|709.09|ICD9CM|Other dyschromia|Other dyschromia +C0162819|T047|AB|709.1|ICD9CM|Vascular disord of skin|Vascular disord of skin +C0162819|T047|PT|709.1|ICD9CM|Vascular disorders of skin|Vascular disorders of skin +C0036278|T020|AB|709.2|ICD9CM|Scar & fibrosis of skin|Scar & fibrosis of skin +C0036278|T020|PT|709.2|ICD9CM|Scar conditions and fibrosis of skin|Scar conditions and fibrosis of skin +C0342981|T047|AB|709.3|ICD9CM|Degenerative skin disord|Degenerative skin disord +C0342981|T047|PT|709.3|ICD9CM|Degenerative skin disorders|Degenerative skin disorders +C0157746|T047|AB|709.4|ICD9CM|Foreign body granul-skin|Foreign body granul-skin +C0157746|T047|PT|709.4|ICD9CM|Foreign body granuloma of skin and subcutaneous tissue|Foreign body granuloma of skin and subcutaneous tissue +C0029788|T047|PT|709.8|ICD9CM|Other specified disorders of skin|Other specified disorders of skin +C0029788|T047|AB|709.8|ICD9CM|Skin disorders NEC|Skin disorders NEC +C0178298|T047|AB|709.9|ICD9CM|Skin disorder NOS|Skin disorder NOS +C0178298|T047|PT|709.9|ICD9CM|Unspecified disorder of skin and subcutaneous tissue|Unspecified disorder of skin and subcutaneous tissue +C0041785|T047|HT|710|ICD9CM|Diffuse diseases of connective tissue|Diffuse diseases of connective tissue +C0178303|T047|HT|710-719.99|ICD9CM|ARTHROPATHIES AND RELATED DISORDERS|ARTHROPATHIES AND RELATED DISORDERS +C0263660|T047|HT|710-739.99|ICD9CM|DISEASES OF THE MUSCULOSKELETAL SYSTEM AND CONNECTIVE TISSUE|DISEASES OF THE MUSCULOSKELETAL SYSTEM AND CONNECTIVE TISSUE +C0024141|T047|AB|710.0|ICD9CM|Syst lupus erythematosus|Syst lupus erythematosus +C0024141|T047|PT|710.0|ICD9CM|Systemic lupus erythematosus|Systemic lupus erythematosus +C0036421|T047|AB|710.1|ICD9CM|Systemic sclerosis|Systemic sclerosis +C0036421|T047|PT|710.1|ICD9CM|Systemic sclerosis|Systemic sclerosis +C0086981|T047|AB|710.2|ICD9CM|Sicca syndrome|Sicca syndrome +C0086981|T047|PT|710.2|ICD9CM|Sicca syndrome|Sicca syndrome +C0011633|T047|AB|710.3|ICD9CM|Dermatomyositis|Dermatomyositis +C0011633|T047|PT|710.3|ICD9CM|Dermatomyositis|Dermatomyositis +C0085655|T047|AB|710.4|ICD9CM|Polymyositis|Polymyositis +C0085655|T047|PT|710.4|ICD9CM|Polymyositis|Polymyositis +C0085179|T047|AB|710.5|ICD9CM|Eosinophilia myalgia snd|Eosinophilia myalgia snd +C0085179|T047|PT|710.5|ICD9CM|Eosinophilia myalgia syndrome|Eosinophilia myalgia syndrome +C0157748|T047|AB|710.8|ICD9CM|Diff connect tis dis NEC|Diff connect tis dis NEC +C0157748|T047|PT|710.8|ICD9CM|Other specified diffuse diseases of connective tissue|Other specified diffuse diseases of connective tissue +C0041785|T047|AB|710.9|ICD9CM|Diff connect tis dis NOS|Diff connect tis dis NOS +C0041785|T047|PT|710.9|ICD9CM|Unspecified diffuse connective tissue disease|Unspecified diffuse connective tissue disease +C0157749|T047|HT|711|ICD9CM|Arthropathy associated with infections|Arthropathy associated with infections +C0003869|T047|HT|711.0|ICD9CM|Pyogenic arthritis|Pyogenic arthritis +C0343175|T047|AB|711.00|ICD9CM|Pyogen arthritis-unspec|Pyogen arthritis-unspec +C0343175|T047|PT|711.00|ICD9CM|Pyogenic arthritis, site unspecified|Pyogenic arthritis, site unspecified +C0263681|T047|AB|711.01|ICD9CM|Pyogen arthritis-shlder|Pyogen arthritis-shlder +C0263681|T047|PT|711.01|ICD9CM|Pyogenic arthritis, shoulder region|Pyogenic arthritis, shoulder region +C0263682|T047|AB|711.02|ICD9CM|Pyogen arthritis-up/arm|Pyogen arthritis-up/arm +C0263682|T047|PT|711.02|ICD9CM|Pyogenic arthritis, upper arm|Pyogenic arthritis, upper arm +C0263683|T047|AB|711.03|ICD9CM|Pyogen arthritis-forearm|Pyogen arthritis-forearm +C0263683|T047|PT|711.03|ICD9CM|Pyogenic arthritis, forearm|Pyogenic arthritis, forearm +C0263684|T047|AB|711.04|ICD9CM|Pyogen arthritis-hand|Pyogen arthritis-hand +C0263684|T047|PT|711.04|ICD9CM|Pyogenic arthritis, hand|Pyogenic arthritis, hand +C0409544|T047|AB|711.05|ICD9CM|Pyogen arthritis-pelvis|Pyogen arthritis-pelvis +C0409544|T047|PT|711.05|ICD9CM|Pyogenic arthritis, pelvic region and thigh|Pyogenic arthritis, pelvic region and thigh +C0263687|T047|AB|711.06|ICD9CM|Pyogen arthritis-l/leg|Pyogen arthritis-l/leg +C0263687|T047|PT|711.06|ICD9CM|Pyogenic arthritis, lower leg|Pyogenic arthritis, lower leg +C0157756|T047|AB|711.07|ICD9CM|Pyogen arthritis-ankle|Pyogen arthritis-ankle +C0157756|T047|PT|711.07|ICD9CM|Pyogenic arthritis, ankle and foot|Pyogenic arthritis, ankle and foot +C0409540|T047|AB|711.08|ICD9CM|Pyogen arthritis NEC|Pyogen arthritis NEC +C0409540|T047|PT|711.08|ICD9CM|Pyogenic arthritis, other specified sites|Pyogenic arthritis, other specified sites +C0263690|T047|AB|711.09|ICD9CM|Pyogen arthritis-mult|Pyogen arthritis-mult +C0263690|T047|PT|711.09|ICD9CM|Pyogenic arthritis, multiple sites|Pyogenic arthritis, multiple sites +C0157760|T047|HT|711.1|ICD9CM|Arthropathy associated with Reiter's disease and nonspecific urethritis|Arthropathy associated with Reiter's disease and nonspecific urethritis +C0157760|T047|PT|711.10|ICD9CM|Arthropathy associated with Reiter's disease and nonspecific urethritis, site unspecified|Arthropathy associated with Reiter's disease and nonspecific urethritis, site unspecified +C0157760|T047|AB|711.10|ICD9CM|Reiter arthritis-unspec|Reiter arthritis-unspec +C0157761|T047|PT|711.11|ICD9CM|Arthropathy associated with Reiter's disease and nonspecific urethritis, shoulder region|Arthropathy associated with Reiter's disease and nonspecific urethritis, shoulder region +C0157761|T047|AB|711.11|ICD9CM|Reiter arthritis-shlder|Reiter arthritis-shlder +C0157762|T047|PT|711.12|ICD9CM|Arthropathy associated with Reiter's disease and nonspecific urethritis, upper arm|Arthropathy associated with Reiter's disease and nonspecific urethritis, upper arm +C0157762|T047|AB|711.12|ICD9CM|Reiter arthritis-up/arm|Reiter arthritis-up/arm +C0157763|T047|PT|711.13|ICD9CM|Arthropathy associated with Reiter's disease and nonspecific urethritis, forearm|Arthropathy associated with Reiter's disease and nonspecific urethritis, forearm +C0157763|T047|AB|711.13|ICD9CM|Reiter arthritis-forearm|Reiter arthritis-forearm +C0157764|T047|PT|711.14|ICD9CM|Arthropathy associated with Reiter's disease and nonspecific urethritis, hand|Arthropathy associated with Reiter's disease and nonspecific urethritis, hand +C0157764|T047|AB|711.14|ICD9CM|Reiter arthritis-hand|Reiter arthritis-hand +C0157765|T047|PT|711.15|ICD9CM|Arthropathy associated with Reiter's disease and nonspecific urethritis, pelvic region and thigh|Arthropathy associated with Reiter's disease and nonspecific urethritis, pelvic region and thigh +C0157765|T047|AB|711.15|ICD9CM|Reiter arthritis-pelvis|Reiter arthritis-pelvis +C0157766|T047|PT|711.16|ICD9CM|Arthropathy associated with Reiter's disease and nonspecific urethritis, lower leg|Arthropathy associated with Reiter's disease and nonspecific urethritis, lower leg +C0157766|T047|AB|711.16|ICD9CM|Reiter arthritis-l/leg|Reiter arthritis-l/leg +C0157767|T047|PT|711.17|ICD9CM|Arthropathy associated with Reiter's disease and nonspecific urethritis, ankle and foot|Arthropathy associated with Reiter's disease and nonspecific urethritis, ankle and foot +C0157767|T047|AB|711.17|ICD9CM|Reiter arthritis-ankle|Reiter arthritis-ankle +C0157768|T047|PT|711.18|ICD9CM|Arthropathy associated with Reiter's disease and nonspecific urethritis, other specified sites|Arthropathy associated with Reiter's disease and nonspecific urethritis, other specified sites +C0157768|T047|AB|711.18|ICD9CM|Reiter arthritis NEC|Reiter arthritis NEC +C0157769|T047|PT|711.19|ICD9CM|Arthropathy associated with Reiter's disease and nonspecific urethritis, multiple sites|Arthropathy associated with Reiter's disease and nonspecific urethritis, multiple sites +C0157769|T047|AB|711.19|ICD9CM|Reiter arthritis-mult|Reiter arthritis-mult +C0157770|T047|HT|711.2|ICD9CM|Arthropathy in Behcet's syndrome|Arthropathy in Behcet's syndrome +C0157770|T047|PT|711.20|ICD9CM|Arthropathy in Behcet's syndrome, site unspecified|Arthropathy in Behcet's syndrome, site unspecified +C0157770|T047|AB|711.20|ICD9CM|Behcet arthritis-unspec|Behcet arthritis-unspec +C0409692|T047|PT|711.21|ICD9CM|Arthropathy in Behcet's syndrome, shoulder region|Arthropathy in Behcet's syndrome, shoulder region +C0409692|T047|AB|711.21|ICD9CM|Behcet arthritis-shlder|Behcet arthritis-shlder +C0409691|T047|PT|711.22|ICD9CM|Arthropathy in Behcet's syndrome, upper arm|Arthropathy in Behcet's syndrome, upper arm +C0409691|T047|AB|711.22|ICD9CM|Behcet arthritis-up/arm|Behcet arthritis-up/arm +C0409690|T047|PT|711.23|ICD9CM|Arthropathy in Behcet's syndrome, forearm|Arthropathy in Behcet's syndrome, forearm +C0409690|T047|AB|711.23|ICD9CM|Behcet arthritis-forearm|Behcet arthritis-forearm +C0409689|T047|PT|711.24|ICD9CM|Arthropathy in Behcet's syndrome, hand|Arthropathy in Behcet's syndrome, hand +C0409689|T047|AB|711.24|ICD9CM|Behcet arthritis-hand|Behcet arthritis-hand +C0409688|T047|PT|711.25|ICD9CM|Arthropathy in Behcet's syndrome, pelvic region and thigh|Arthropathy in Behcet's syndrome, pelvic region and thigh +C0409688|T047|AB|711.25|ICD9CM|Behcet arthritis-pelvis|Behcet arthritis-pelvis +C0409687|T047|PT|711.26|ICD9CM|Arthropathy in Behcet's syndrome, lower leg|Arthropathy in Behcet's syndrome, lower leg +C0409687|T047|AB|711.26|ICD9CM|Behcet arthritis-l/leg|Behcet arthritis-l/leg +C0409686|T047|PT|711.27|ICD9CM|Arthropathy in Behcet's syndrome, ankle and foot|Arthropathy in Behcet's syndrome, ankle and foot +C0409686|T047|AB|711.27|ICD9CM|Behcet arthritis-ankle|Behcet arthritis-ankle +C0409684|T047|PT|711.28|ICD9CM|Arthropathy in Behcet's syndrome, other specified sites|Arthropathy in Behcet's syndrome, other specified sites +C0409684|T047|AB|711.28|ICD9CM|Behcet arthritis NEC|Behcet arthritis NEC +C0409685|T047|PT|711.29|ICD9CM|Arthropathy in Behcet's syndrome, multiple sites|Arthropathy in Behcet's syndrome, multiple sites +C0409685|T047|AB|711.29|ICD9CM|Behcet arthritis-mult|Behcet arthritis-mult +C0152085|T046|HT|711.3|ICD9CM|Postdysenteric arthropathy|Postdysenteric arthropathy +C0152085|T046|AB|711.30|ICD9CM|Dysenter arthrit-unspec|Dysenter arthrit-unspec +C0152085|T046|PT|711.30|ICD9CM|Postdysenteric arthropathy, site unspecified|Postdysenteric arthropathy, site unspecified +C0837419|T047|AB|711.31|ICD9CM|Dysenter arthrit-shlder|Dysenter arthrit-shlder +C0837419|T047|PT|711.31|ICD9CM|Postdysenteric arthropathy, shoulder region|Postdysenteric arthropathy, shoulder region +C0837420|T047|AB|711.32|ICD9CM|Dysenter arthrit-up/arm|Dysenter arthrit-up/arm +C0837420|T047|PT|711.32|ICD9CM|Postdysenteric arthropathy, upper arm|Postdysenteric arthropathy, upper arm +C0837421|T047|AB|711.33|ICD9CM|Dysenter arthrit-forearm|Dysenter arthrit-forearm +C0837421|T047|PT|711.33|ICD9CM|Postdysenteric arthropathy, forearm|Postdysenteric arthropathy, forearm +C0837422|T046|AB|711.34|ICD9CM|Dysenter arthrit-hand|Dysenter arthrit-hand +C0837422|T046|PT|711.34|ICD9CM|Postdysenteric arthropathy, hand|Postdysenteric arthropathy, hand +C0837423|T047|AB|711.35|ICD9CM|Dysenter arthrit-pelvis|Dysenter arthrit-pelvis +C0837423|T047|PT|711.35|ICD9CM|Postdysenteric arthropathy, pelvic region and thigh|Postdysenteric arthropathy, pelvic region and thigh +C0837424|T047|AB|711.36|ICD9CM|Dysenter arthrit-l/leg|Dysenter arthrit-l/leg +C0837424|T047|PT|711.36|ICD9CM|Postdysenteric arthropathy, lower leg|Postdysenteric arthropathy, lower leg +C0837425|T046|AB|711.37|ICD9CM|Dysenter arthrit-ankle|Dysenter arthrit-ankle +C0837425|T046|PT|711.37|ICD9CM|Postdysenteric arthropathy, ankle and foot|Postdysenteric arthropathy, ankle and foot +C0157787|T047|AB|711.38|ICD9CM|Dysenter arthrit NEC|Dysenter arthrit NEC +C0157787|T047|PT|711.38|ICD9CM|Postdysenteric arthropathy, other specified sites|Postdysenteric arthropathy, other specified sites +C0837418|T046|AB|711.39|ICD9CM|Dysenter arthrit-mult|Dysenter arthrit-mult +C0837418|T046|PT|711.39|ICD9CM|Postdysenteric arthropathy, multiple sites|Postdysenteric arthropathy, multiple sites +C0157790|T047|HT|711.4|ICD9CM|Arthropathy associated with other bacterial diseases|Arthropathy associated with other bacterial diseases +C0157790|T047|PT|711.40|ICD9CM|Arthropathy associated with other bacterial diseases, site unspecified|Arthropathy associated with other bacterial diseases, site unspecified +C0157790|T047|AB|711.40|ICD9CM|Bact arthritis-unspec|Bact arthritis-unspec +C0409539|T047|PT|711.41|ICD9CM|Arthropathy associated with other bacterial diseases, shoulder region|Arthropathy associated with other bacterial diseases, shoulder region +C0409539|T047|AB|711.41|ICD9CM|Bact arthritis-shlder|Bact arthritis-shlder +C0409538|T047|PT|711.42|ICD9CM|Arthropathy associated with other bacterial diseases, upper arm|Arthropathy associated with other bacterial diseases, upper arm +C0409538|T047|AB|711.42|ICD9CM|Bact arthritis-up/arm|Bact arthritis-up/arm +C0409537|T047|PT|711.43|ICD9CM|Arthropathy associated with other bacterial diseases, forearm|Arthropathy associated with other bacterial diseases, forearm +C0409537|T047|AB|711.43|ICD9CM|Bact arthritis-forearm|Bact arthritis-forearm +C0409536|T047|PT|711.44|ICD9CM|Arthropathy associated with other bacterial diseases, hand|Arthropathy associated with other bacterial diseases, hand +C0409536|T047|AB|711.44|ICD9CM|Bact arthritis-hand|Bact arthritis-hand +C0409535|T047|PT|711.45|ICD9CM|Arthropathy associated with other bacterial diseases, pelvic region and thigh|Arthropathy associated with other bacterial diseases, pelvic region and thigh +C0409535|T047|AB|711.45|ICD9CM|Bact arthritis-pelvis|Bact arthritis-pelvis +C0409534|T047|PT|711.46|ICD9CM|Arthropathy associated with other bacterial diseases, lower leg|Arthropathy associated with other bacterial diseases, lower leg +C0409534|T047|AB|711.46|ICD9CM|Bact arthritis-l/leg|Bact arthritis-l/leg +C0409533|T047|PT|711.47|ICD9CM|Arthropathy associated with other bacterial diseases, ankle and foot|Arthropathy associated with other bacterial diseases, ankle and foot +C0409533|T047|AB|711.47|ICD9CM|Bact arthritis-ankle|Bact arthritis-ankle +C0409531|T047|PT|711.48|ICD9CM|Arthropathy associated with other bacterial diseases, other specified sites|Arthropathy associated with other bacterial diseases, other specified sites +C0409531|T047|AB|711.48|ICD9CM|Bact arthritis NEC|Bact arthritis NEC +C0409532|T047|PT|711.49|ICD9CM|Arthropathy associated with other bacterial diseases, multiple sites|Arthropathy associated with other bacterial diseases, multiple sites +C0409532|T047|AB|711.49|ICD9CM|Bact arthritis-mult|Bact arthritis-mult +C0157801|T047|HT|711.5|ICD9CM|Arthropathy associated with other viral diseases|Arthropathy associated with other viral diseases +C0157801|T047|PT|711.50|ICD9CM|Arthropathy associated with other viral diseases, site unspecified|Arthropathy associated with other viral diseases, site unspecified +C0157801|T047|AB|711.50|ICD9CM|Viral arthritis-unspec|Viral arthritis-unspec +C0409556|T047|PT|711.51|ICD9CM|Arthropathy associated with other viral diseases, shoulder region|Arthropathy associated with other viral diseases, shoulder region +C0409556|T047|AB|711.51|ICD9CM|Viral arthritis-shlder|Viral arthritis-shlder +C0409555|T047|PT|711.52|ICD9CM|Arthropathy associated with other viral diseases, upper arm|Arthropathy associated with other viral diseases, upper arm +C0409555|T047|AB|711.52|ICD9CM|Viral arthritis-up/arm|Viral arthritis-up/arm +C0409554|T047|PT|711.53|ICD9CM|Arthropathy associated with other viral diseases, forearm|Arthropathy associated with other viral diseases, forearm +C0409554|T047|AB|711.53|ICD9CM|Viral arthritis-forearm|Viral arthritis-forearm +C0157805|T047|PT|711.54|ICD9CM|Arthropathy associated with other viral diseases, hand|Arthropathy associated with other viral diseases, hand +C0157805|T047|AB|711.54|ICD9CM|Viral arthritis-hand|Viral arthritis-hand +C0409552|T047|PT|711.55|ICD9CM|Arthropathy associated with other viral diseases, pelvic region and thigh|Arthropathy associated with other viral diseases, pelvic region and thigh +C0409552|T047|AB|711.55|ICD9CM|Viral arthritis-pelvis|Viral arthritis-pelvis +C0409551|T047|PT|711.56|ICD9CM|Arthropathy associated with other viral diseases, lower leg|Arthropathy associated with other viral diseases, lower leg +C0409551|T047|AB|711.56|ICD9CM|Viral arthritis-l/leg|Viral arthritis-l/leg +C0409550|T047|PT|711.57|ICD9CM|Arthropathy associated with other viral diseases, ankle and foot|Arthropathy associated with other viral diseases, ankle and foot +C0409550|T047|AB|711.57|ICD9CM|Viral arthritis-ankle|Viral arthritis-ankle +C0409548|T047|PT|711.58|ICD9CM|Arthropathy associated with other viral diseases, other specified sites|Arthropathy associated with other viral diseases, other specified sites +C0409548|T047|AB|711.58|ICD9CM|Viral arthritis NEC|Viral arthritis NEC +C0409549|T047|PT|711.59|ICD9CM|Arthropathy associated with other viral diseases, multiple sites|Arthropathy associated with other viral diseases, multiple sites +C0409549|T047|AB|711.59|ICD9CM|Viral arthritis-mult|Viral arthritis-mult +C0869528|T047|HT|711.6|ICD9CM|Arthropathy associated with mycoses|Arthropathy associated with mycoses +C0869528|T047|PT|711.60|ICD9CM|Arthropathy associated with mycoses, site unspecified|Arthropathy associated with mycoses, site unspecified +C0869528|T047|AB|711.60|ICD9CM|Mycotic arthritis-unspec|Mycotic arthritis-unspec +C0409567|T047|PT|711.61|ICD9CM|Arthropathy associated with mycoses, shoulder region|Arthropathy associated with mycoses, shoulder region +C0409567|T047|AB|711.61|ICD9CM|Mycotic arthritis-shlder|Mycotic arthritis-shlder +C0409566|T047|PT|711.62|ICD9CM|Arthropathy associated with mycoses, upper arm|Arthropathy associated with mycoses, upper arm +C0409566|T047|AB|711.62|ICD9CM|Mycotic arthritis-up/arm|Mycotic arthritis-up/arm +C0409565|T047|PT|711.63|ICD9CM|Arthropathy associated with mycoses, forearm|Arthropathy associated with mycoses, forearm +C0409565|T047|AB|711.63|ICD9CM|Mycotic arthrit-forearm|Mycotic arthrit-forearm +C0409564|T047|PT|711.64|ICD9CM|Arthropathy associated with mycoses, hand|Arthropathy associated with mycoses, hand +C0409564|T047|AB|711.64|ICD9CM|Mycotic arthritis-hand|Mycotic arthritis-hand +C0409563|T047|PT|711.65|ICD9CM|Arthropathy associated with mycoses, pelvic region and thigh|Arthropathy associated with mycoses, pelvic region and thigh +C0409563|T047|AB|711.65|ICD9CM|Mycotic arthritis-pelvis|Mycotic arthritis-pelvis +C0409562|T047|PT|711.66|ICD9CM|Arthropathy associated with mycoses, lower leg|Arthropathy associated with mycoses, lower leg +C0409562|T047|AB|711.66|ICD9CM|Mycotic arthritis-l/leg|Mycotic arthritis-l/leg +C0409561|T047|PT|711.67|ICD9CM|Arthropathy associated with mycoses, ankle and foot|Arthropathy associated with mycoses, ankle and foot +C0409561|T047|AB|711.67|ICD9CM|Mycotic arthritis-ankle|Mycotic arthritis-ankle +C0409559|T047|PT|711.68|ICD9CM|Arthropathy associated with mycoses, other specified sites|Arthropathy associated with mycoses, other specified sites +C0409559|T047|AB|711.68|ICD9CM|Mycotic arthritis NEC|Mycotic arthritis NEC +C0157821|T047|PT|711.69|ICD9CM|Arthropathy associated with mycoses, involving multiple sites|Arthropathy associated with mycoses, involving multiple sites +C0157821|T047|AB|711.69|ICD9CM|Mycotic arthritis-mult|Mycotic arthritis-mult +C0157822|T047|HT|711.7|ICD9CM|Arthropathy associated with helminthiasis|Arthropathy associated with helminthiasis +C0409569|T047|PT|711.70|ICD9CM|Arthropathy associated with helminthiasis, site unspecified|Arthropathy associated with helminthiasis, site unspecified +C0409569|T047|AB|711.70|ICD9CM|Helminth arthrit-unspec|Helminth arthrit-unspec +C0157824|T047|PT|711.71|ICD9CM|Arthropathy associated with helminthiasis, shoulder region|Arthropathy associated with helminthiasis, shoulder region +C0157824|T047|AB|711.71|ICD9CM|Helminth arthrit-shlder|Helminth arthrit-shlder +C0409577|T047|PT|711.72|ICD9CM|Arthropathy associated with helminthiasis, upper arm|Arthropathy associated with helminthiasis, upper arm +C0409577|T047|AB|711.72|ICD9CM|Helminth arthrit-up/arm|Helminth arthrit-up/arm +C0409576|T047|PT|711.73|ICD9CM|Arthropathy associated with helminthiasis, forearm|Arthropathy associated with helminthiasis, forearm +C0409576|T047|AB|711.73|ICD9CM|Helminth arthrit-forearm|Helminth arthrit-forearm +C0409575|T047|PT|711.74|ICD9CM|Arthropathy associated with helminthiasis, hand|Arthropathy associated with helminthiasis, hand +C0409575|T047|AB|711.74|ICD9CM|Helminth arthrit-hand|Helminth arthrit-hand +C0409574|T047|PT|711.75|ICD9CM|Arthropathy associated with helminthiasis, pelvic region and thigh|Arthropathy associated with helminthiasis, pelvic region and thigh +C0409574|T047|AB|711.75|ICD9CM|Helminth arthrit-pelvis|Helminth arthrit-pelvis +C0409573|T047|PT|711.76|ICD9CM|Arthropathy associated with helminthiasis, lower leg|Arthropathy associated with helminthiasis, lower leg +C0409573|T047|AB|711.76|ICD9CM|Helminth arthrit-l/leg|Helminth arthrit-l/leg +C0409572|T047|PT|711.77|ICD9CM|Arthropathy associated with helminthiasis, ankle and foot|Arthropathy associated with helminthiasis, ankle and foot +C0409572|T047|AB|711.77|ICD9CM|Helminth arthrit-ankle|Helminth arthrit-ankle +C0409570|T047|PT|711.78|ICD9CM|Arthropathy associated with helminthiasis, other specified sites|Arthropathy associated with helminthiasis, other specified sites +C0409570|T047|AB|711.78|ICD9CM|Helminth arthrit NEC|Helminth arthrit NEC +C0409571|T047|PT|711.79|ICD9CM|Arthropathy associated with helminthiasis, multiple sites|Arthropathy associated with helminthiasis, multiple sites +C0409571|T047|AB|711.79|ICD9CM|Helminth arthrit-mult|Helminth arthrit-mult +C0157833|T047|HT|711.8|ICD9CM|Arthropathy associated with other infectious and parasitic diseases|Arthropathy associated with other infectious and parasitic diseases +C0157833|T047|PT|711.80|ICD9CM|Arthropathy associated with other infectious and parasitic diseases, site unspecified|Arthropathy associated with other infectious and parasitic diseases, site unspecified +C0157833|T047|AB|711.80|ICD9CM|Inf arthritis NEC-unspec|Inf arthritis NEC-unspec +C0157834|T047|PT|711.81|ICD9CM|Arthropathy associated with other infectious and parasitic diseases, shoulder region|Arthropathy associated with other infectious and parasitic diseases, shoulder region +C0157834|T047|AB|711.81|ICD9CM|Inf arthritis NEC-shlder|Inf arthritis NEC-shlder +C0157835|T047|PT|711.82|ICD9CM|Arthropathy associated with other infectious and parasitic diseases, upper arm|Arthropathy associated with other infectious and parasitic diseases, upper arm +C0157835|T047|AB|711.82|ICD9CM|Inf arthritis NEC-up/arm|Inf arthritis NEC-up/arm +C0157836|T047|PT|711.83|ICD9CM|Arthropathy associated with other infectious and parasitic diseases, forearm|Arthropathy associated with other infectious and parasitic diseases, forearm +C0157836|T047|AB|711.83|ICD9CM|Inf arthrit NEC-forearm|Inf arthrit NEC-forearm +C0157837|T047|PT|711.84|ICD9CM|Arthropathy associated with other infectious and parasitic diseases, hand|Arthropathy associated with other infectious and parasitic diseases, hand +C0157837|T047|AB|711.84|ICD9CM|Inf arthritis NEC-hand|Inf arthritis NEC-hand +C0157838|T047|PT|711.85|ICD9CM|Arthropathy associated with other infectious and parasitic diseases, pelvic region and thigh|Arthropathy associated with other infectious and parasitic diseases, pelvic region and thigh +C0157838|T047|AB|711.85|ICD9CM|Inf arthritis NEC-pelvis|Inf arthritis NEC-pelvis +C0157839|T047|PT|711.86|ICD9CM|Arthropathy associated with other infectious and parasitic diseases, lower leg|Arthropathy associated with other infectious and parasitic diseases, lower leg +C0157839|T047|AB|711.86|ICD9CM|Inf arthritis NEC-l/leg|Inf arthritis NEC-l/leg +C0157840|T047|PT|711.87|ICD9CM|Arthropathy associated with other infectious and parasitic diseases, ankle and foot|Arthropathy associated with other infectious and parasitic diseases, ankle and foot +C0157840|T047|AB|711.87|ICD9CM|Inf arthritis NEC-ankle|Inf arthritis NEC-ankle +C0157841|T047|PT|711.88|ICD9CM|Arthropathy associated with other infectious and parasitic diseases, other specified sites|Arthropathy associated with other infectious and parasitic diseases, other specified sites +C0157841|T047|AB|711.88|ICD9CM|Inf arthrit NEC-oth site|Inf arthrit NEC-oth site +C0157842|T047|PT|711.89|ICD9CM|Arthropathy associated with other infectious and parasitic diseases, multiple sites|Arthropathy associated with other infectious and parasitic diseases, multiple sites +C0157842|T047|AB|711.89|ICD9CM|Inf arthritis NEC-mult|Inf arthritis NEC-mult +C0003869|T047|HT|711.9|ICD9CM|Unspecified infective arthritis|Unspecified infective arthritis +C0003869|T047|AB|711.90|ICD9CM|Inf arthritis NOS-unspec|Inf arthritis NOS-unspec +C0003869|T047|PT|711.90|ICD9CM|Unspecified infective arthritis, site unspecified|Unspecified infective arthritis, site unspecified +C0157843|T047|AB|711.91|ICD9CM|Inf arthritis NOS-shlder|Inf arthritis NOS-shlder +C0157843|T047|PT|711.91|ICD9CM|Unspecified infective arthritis, shoulder region|Unspecified infective arthritis, shoulder region +C0157844|T047|AB|711.92|ICD9CM|Inf arthritis NOS-up/arm|Inf arthritis NOS-up/arm +C0157844|T047|PT|711.92|ICD9CM|Unspecified infective arthritis, upper arm|Unspecified infective arthritis, upper arm +C0157845|T047|AB|711.93|ICD9CM|Inf arthrit NOS-forearm|Inf arthrit NOS-forearm +C0157845|T047|PT|711.93|ICD9CM|Unspecified infective arthritis, forearm|Unspecified infective arthritis, forearm +C0157846|T047|AB|711.94|ICD9CM|Inf arthrit NOS-hand|Inf arthrit NOS-hand +C0157846|T047|PT|711.94|ICD9CM|Unspecified infective arthritis, hand|Unspecified infective arthritis, hand +C0157847|T047|AB|711.95|ICD9CM|Inf arthrit NOS-pelvis|Inf arthrit NOS-pelvis +C0157847|T047|PT|711.95|ICD9CM|Unspecified infective arthritis, pelvic region and thigh|Unspecified infective arthritis, pelvic region and thigh +C0157848|T047|AB|711.96|ICD9CM|Inf arthrit NOS-l/leg|Inf arthrit NOS-l/leg +C0157848|T047|PT|711.96|ICD9CM|Unspecified infective arthritis, lower leg|Unspecified infective arthritis, lower leg +C0157849|T047|AB|711.97|ICD9CM|Inf arthrit NOS-ankle|Inf arthrit NOS-ankle +C0157849|T047|PT|711.97|ICD9CM|Unspecified infective arthritis, ankle and foot|Unspecified infective arthritis, ankle and foot +C0157850|T047|AB|711.98|ICD9CM|Inf arthrit NOS-oth site|Inf arthrit NOS-oth site +C0157850|T047|PT|711.98|ICD9CM|Unspecified infective arthritis, other specified sites|Unspecified infective arthritis, other specified sites +C0157851|T047|AB|711.99|ICD9CM|Inf arthritis NOS-mult|Inf arthritis NOS-mult +C0157851|T047|PT|711.99|ICD9CM|Unspecified infective arthritis, multiple sites|Unspecified infective arthritis, multiple sites +C0152087|T047|HT|712|ICD9CM|Crystal arthropathies|Crystal arthropathies +C0157852|T047|HT|712.1|ICD9CM|Chondrocalcinosis due to dicalcium phosphate crystals|Chondrocalcinosis due to dicalcium phosphate crystals +C0409882|T047|PT|712.10|ICD9CM|Chondrocalcinosis, due to dicalcium phosphate crystals, site unspecified|Chondrocalcinosis, due to dicalcium phosphate crystals, site unspecified +C0409882|T047|AB|712.10|ICD9CM|Dicalc phos cryst-unspec|Dicalc phos cryst-unspec +C0409881|T047|PT|712.11|ICD9CM|Chondrocalcinosis, due to dicalcium phosphate crystals, shoulder region|Chondrocalcinosis, due to dicalcium phosphate crystals, shoulder region +C0409881|T047|AB|712.11|ICD9CM|Dicalc phos cryst-shlder|Dicalc phos cryst-shlder +C0409880|T047|PT|712.12|ICD9CM|Chondrocalcinosis, due to dicalcium phosphate crystals, upper arm|Chondrocalcinosis, due to dicalcium phosphate crystals, upper arm +C0409880|T047|AB|712.12|ICD9CM|Dicalc phos cryst-up/arm|Dicalc phos cryst-up/arm +C0409879|T047|PT|712.13|ICD9CM|Chondrocalcinosis, due to dicalcium phosphate crystals, forearm|Chondrocalcinosis, due to dicalcium phosphate crystals, forearm +C0409879|T047|AB|712.13|ICD9CM|Dicalc phos crys-forearm|Dicalc phos crys-forearm +C0409878|T047|PT|712.14|ICD9CM|Chondrocalcinosis, due to dicalcium phosphate crystals, hand|Chondrocalcinosis, due to dicalcium phosphate crystals, hand +C0409878|T047|AB|712.14|ICD9CM|Dicalc phos cryst-hand|Dicalc phos cryst-hand +C0409877|T047|PT|712.15|ICD9CM|Chondrocalcinosis, due to dicalcium phosphate crystals, pelvic region and thigh|Chondrocalcinosis, due to dicalcium phosphate crystals, pelvic region and thigh +C0409877|T047|AB|712.15|ICD9CM|Dicalc phos cryst-pelvis|Dicalc phos cryst-pelvis +C0409876|T047|PT|712.16|ICD9CM|Chondrocalcinosis, due to dicalcium phosphate crystals, lower leg|Chondrocalcinosis, due to dicalcium phosphate crystals, lower leg +C0409876|T047|AB|712.16|ICD9CM|Dicalc phos cryst-l/leg|Dicalc phos cryst-l/leg +C0409875|T047|PT|712.17|ICD9CM|Chondrocalcinosis, due to dicalcium phosphate crystals, ankle and foot|Chondrocalcinosis, due to dicalcium phosphate crystals, ankle and foot +C0409875|T047|AB|712.17|ICD9CM|Dicalc phos cryst-ankle|Dicalc phos cryst-ankle +C0409873|T047|PT|712.18|ICD9CM|Chondrocalcinosis, due to dicalcium phosphate crystals, other specified sites|Chondrocalcinosis, due to dicalcium phosphate crystals, other specified sites +C0409873|T047|AB|712.18|ICD9CM|Dicalc phos cry-site NEC|Dicalc phos cry-site NEC +C0409874|T047|PT|712.19|ICD9CM|Chondrocalcinosis, due to dicalcium phosphate crystals, multiple sites|Chondrocalcinosis, due to dicalcium phosphate crystals, multiple sites +C0409874|T047|AB|712.19|ICD9CM|Dicalc phos cryst-mult|Dicalc phos cryst-mult +C0553730|T047|HT|712.2|ICD9CM|Chondrocalcinosis due to pyrophosphate crystals|Chondrocalcinosis due to pyrophosphate crystals +C0553730|T047|PT|712.20|ICD9CM|Chondrocalcinosis, due to pyrophosphate crystals, site unspecified|Chondrocalcinosis, due to pyrophosphate crystals, site unspecified +C0553730|T047|AB|712.20|ICD9CM|Pyrophosph cryst-unspec|Pyrophosph cryst-unspec +C0409871|T047|PT|712.21|ICD9CM|Chondrocalcinosis, due to pyrophosphate crystals, shoulder region|Chondrocalcinosis, due to pyrophosphate crystals, shoulder region +C0409871|T047|AB|712.21|ICD9CM|Pyrophosph cryst-shlder|Pyrophosph cryst-shlder +C0409870|T047|PT|712.22|ICD9CM|Chondrocalcinosis, due to pyrophosphate crystals, upper arm|Chondrocalcinosis, due to pyrophosphate crystals, upper arm +C0409870|T047|AB|712.22|ICD9CM|Pyrophosph cryst-up/arm|Pyrophosph cryst-up/arm +C0409869|T047|PT|712.23|ICD9CM|Chondrocalcinosis, due to pyrophosphate crystals, forearm|Chondrocalcinosis, due to pyrophosphate crystals, forearm +C0409869|T047|AB|712.23|ICD9CM|Pyrophosph cryst-forearm|Pyrophosph cryst-forearm +C0409868|T047|PT|712.24|ICD9CM|Chondrocalcinosis, due to pyrophosphate crystals, hand|Chondrocalcinosis, due to pyrophosphate crystals, hand +C0409868|T047|AB|712.24|ICD9CM|Pyrophosph cryst-hand|Pyrophosph cryst-hand +C0409867|T047|PT|712.25|ICD9CM|Chondrocalcinosis, due to pyrophosphate crystals, pelvic region and thigh|Chondrocalcinosis, due to pyrophosphate crystals, pelvic region and thigh +C0409867|T047|AB|712.25|ICD9CM|Pyrophosph cryst-pelvis|Pyrophosph cryst-pelvis +C0409865|T047|PT|712.26|ICD9CM|Chondrocalcinosis, due to pyrophosphate crystals, lower leg|Chondrocalcinosis, due to pyrophosphate crystals, lower leg +C0409865|T047|AB|712.26|ICD9CM|Pyrophosph cryst-l/leg|Pyrophosph cryst-l/leg +C0409864|T047|PT|712.27|ICD9CM|Chondrocalcinosis, due to pyrophosphate crystals, ankle and foot|Chondrocalcinosis, due to pyrophosphate crystals, ankle and foot +C0409864|T047|AB|712.27|ICD9CM|Pyrophosph cryst-ankle|Pyrophosph cryst-ankle +C0409862|T047|PT|712.28|ICD9CM|Chondrocalcinosis, due to pyrophosphate crystals, other specified sites|Chondrocalcinosis, due to pyrophosphate crystals, other specified sites +C0409862|T047|AB|712.28|ICD9CM|Pyrophos cryst-site NEC|Pyrophos cryst-site NEC +C0409863|T047|PT|712.29|ICD9CM|Chondrocalcinosis, due to pyrophosphate crystals, multiple sites|Chondrocalcinosis, due to pyrophosphate crystals, multiple sites +C0409863|T047|AB|712.29|ICD9CM|Pyrophos cryst-mult|Pyrophos cryst-mult +C0553730|T047|HT|712.3|ICD9CM|Chondrocalcinosis, cause unspecified|Chondrocalcinosis, cause unspecified +C0157874|T047|AB|712.30|ICD9CM|Chondrocalcin NOS-unspec|Chondrocalcin NOS-unspec +C0157874|T047|PT|712.30|ICD9CM|Chondrocalcinosis, unspecified, site unspecified|Chondrocalcinosis, unspecified, site unspecified +C0409894|T047|AB|712.31|ICD9CM|Chondrocalcin NOS-shlder|Chondrocalcin NOS-shlder +C0409894|T047|PT|712.31|ICD9CM|Chondrocalcinosis, unspecified, shoulder region|Chondrocalcinosis, unspecified, shoulder region +C0409893|T047|AB|712.32|ICD9CM|Chondrocalcin NOS-up/arm|Chondrocalcin NOS-up/arm +C0409893|T047|PT|712.32|ICD9CM|Chondrocalcinosis, unspecified, upper arm|Chondrocalcinosis, unspecified, upper arm +C0409892|T047|AB|712.33|ICD9CM|Chondrocalc NOS-forearm|Chondrocalc NOS-forearm +C0409892|T047|PT|712.33|ICD9CM|Chondrocalcinosis, unspecified, forearm|Chondrocalcinosis, unspecified, forearm +C0409891|T047|AB|712.34|ICD9CM|Chondrocalcin NOS-hand|Chondrocalcin NOS-hand +C0409891|T047|PT|712.34|ICD9CM|Chondrocalcinosis, unspecified, hand|Chondrocalcinosis, unspecified, hand +C0409890|T047|AB|712.35|ICD9CM|Chondrocalcin NOS-pelvis|Chondrocalcin NOS-pelvis +C0409890|T047|PT|712.35|ICD9CM|Chondrocalcinosis, unspecified, pelvic region and thigh|Chondrocalcinosis, unspecified, pelvic region and thigh +C0409889|T047|AB|712.36|ICD9CM|Chondrocalcin NOS-l/leg|Chondrocalcin NOS-l/leg +C0409889|T047|PT|712.36|ICD9CM|Chondrocalcinosis, unspecified, lower leg|Chondrocalcinosis, unspecified, lower leg +C0409888|T047|AB|712.37|ICD9CM|Chondrocalcin NOS-ankle|Chondrocalcin NOS-ankle +C0409888|T047|PT|712.37|ICD9CM|Chondrocalcinosis, unspecified, ankle and foot|Chondrocalcinosis, unspecified, ankle and foot +C0409886|T047|AB|712.38|ICD9CM|Chondrocalc NOS-oth site|Chondrocalc NOS-oth site +C0409886|T047|PT|712.38|ICD9CM|Chondrocalcinosis, unspecified, other specified sites|Chondrocalcinosis, unspecified, other specified sites +C0409887|T047|AB|712.39|ICD9CM|Chondrocalcin NOS-mult|Chondrocalcin NOS-mult +C0409887|T047|PT|712.39|ICD9CM|Chondrocalcinosis, unspecified, multiple sites|Chondrocalcinosis, unspecified, multiple sites +C0157884|T047|HT|712.8|ICD9CM|Other specified crystal arthropathies|Other specified crystal arthropathies +C0157884|T047|AB|712.80|ICD9CM|Cryst arthrop NEC-unspec|Cryst arthrop NEC-unspec +C0157884|T047|PT|712.80|ICD9CM|Other specified crystal arthropathies, site unspecified|Other specified crystal arthropathies, site unspecified +C0837882|T047|AB|712.81|ICD9CM|Cryst arthrop NEC-shlder|Cryst arthrop NEC-shlder +C0837882|T047|PT|712.81|ICD9CM|Other specified crystal arthropathies, shoulder region|Other specified crystal arthropathies, shoulder region +C0837883|T047|AB|712.82|ICD9CM|Cryst arthrop NEC-up/arm|Cryst arthrop NEC-up/arm +C0837883|T047|PT|712.82|ICD9CM|Other specified crystal arthropathies, upper arm|Other specified crystal arthropathies, upper arm +C0837884|T047|AB|712.83|ICD9CM|Crys arthrop NEC-forearm|Crys arthrop NEC-forearm +C0837884|T047|PT|712.83|ICD9CM|Other specified crystal arthropathies, forearm|Other specified crystal arthropathies, forearm +C0837885|T047|AB|712.84|ICD9CM|Cryst arthrop NEC-hand|Cryst arthrop NEC-hand +C0837885|T047|PT|712.84|ICD9CM|Other specified crystal arthropathies, hand|Other specified crystal arthropathies, hand +C0837886|T047|AB|712.85|ICD9CM|Cryst arthrop NEC-pelvis|Cryst arthrop NEC-pelvis +C0837886|T047|PT|712.85|ICD9CM|Other specified crystal arthropathies, pelvic region and thigh|Other specified crystal arthropathies, pelvic region and thigh +C0837887|T047|AB|712.86|ICD9CM|Cryst arthrop NEC-l/leg|Cryst arthrop NEC-l/leg +C0837887|T047|PT|712.86|ICD9CM|Other specified crystal arthropathies, lower leg|Other specified crystal arthropathies, lower leg +C0837888|T047|AB|712.87|ICD9CM|Cryst arthrop NEC-ankle|Cryst arthrop NEC-ankle +C0837888|T047|PT|712.87|ICD9CM|Other specified crystal arthropathies, ankle and foot|Other specified crystal arthropathies, ankle and foot +C0157892|T047|AB|712.88|ICD9CM|Cry arthrop NEC-oth site|Cry arthrop NEC-oth site +C0157892|T047|PT|712.88|ICD9CM|Other specified crystal arthropathies, other specified sites|Other specified crystal arthropathies, other specified sites +C0837881|T047|AB|712.89|ICD9CM|Cryst arthrop NEC-mult|Cryst arthrop NEC-mult +C0837881|T047|PT|712.89|ICD9CM|Other specified crystal arthropathies, multiple sites|Other specified crystal arthropathies, multiple sites +C0152087|T047|HT|712.9|ICD9CM|Unspecified crystal arthropathy|Unspecified crystal arthropathy +C0152087|T047|AB|712.90|ICD9CM|Cryst arthrop NOS-unspec|Cryst arthrop NOS-unspec +C0152087|T047|PT|712.90|ICD9CM|Unspecified crystal arthropathy, site unspecified|Unspecified crystal arthropathy, site unspecified +C0263708|T047|AB|712.91|ICD9CM|Cryst arthrop NOS-shldr|Cryst arthrop NOS-shldr +C0263708|T047|PT|712.91|ICD9CM|Unspecified crystal arthropathy, shoulder region|Unspecified crystal arthropathy, shoulder region +C0263709|T047|AB|712.92|ICD9CM|Cryst arthrop NOS-up/arm|Cryst arthrop NOS-up/arm +C0263709|T047|PT|712.92|ICD9CM|Unspecified crystal arthropathy, upper arm|Unspecified crystal arthropathy, upper arm +C0263710|T047|AB|712.93|ICD9CM|Crys arthrop NOS-forearm|Crys arthrop NOS-forearm +C0263710|T047|PT|712.93|ICD9CM|Unspecified crystal arthropathy, forearm|Unspecified crystal arthropathy, forearm +C0263711|T047|AB|712.94|ICD9CM|Cryst arthrop NOS-hand|Cryst arthrop NOS-hand +C0263711|T047|PT|712.94|ICD9CM|Unspecified crystal arthropathy, hand|Unspecified crystal arthropathy, hand +C0409843|T047|AB|712.95|ICD9CM|Cryst arthrop NOS-pelvis|Cryst arthrop NOS-pelvis +C0409843|T047|PT|712.95|ICD9CM|Unspecified crystal arthropathy, pelvic region and thigh|Unspecified crystal arthropathy, pelvic region and thigh +C0263714|T047|AB|712.96|ICD9CM|Cryst arthrop NOS-l/leg|Cryst arthrop NOS-l/leg +C0263714|T047|PT|712.96|ICD9CM|Unspecified crystal arthropathy, lower leg|Unspecified crystal arthropathy, lower leg +C0263715|T047|AB|712.97|ICD9CM|Cryst arthrop NOS-ankle|Cryst arthrop NOS-ankle +C0263715|T047|PT|712.97|ICD9CM|Unspecified crystal arthropathy, ankle and foot|Unspecified crystal arthropathy, ankle and foot +C0263716|T047|AB|712.98|ICD9CM|Cry arthrop NOS-oth site|Cry arthrop NOS-oth site +C0263716|T047|PT|712.98|ICD9CM|Unspecified crystal arthropathy, other specified sites|Unspecified crystal arthropathy, other specified sites +C0263717|T047|AB|712.99|ICD9CM|Cryst arthrop NOS-mult|Cryst arthrop NOS-mult +C0263717|T047|PT|712.99|ICD9CM|Unspecified crystal arthropathy, multiple sites|Unspecified crystal arthropathy, multiple sites +C0157904|T047|HT|713|ICD9CM|Arthropathy associated with other disorders classified elsewhere|Arthropathy associated with other disorders classified elsewhere +C0409729|T047|AB|713.0|ICD9CM|Arthrop w endocr/met dis|Arthrop w endocr/met dis +C0409729|T047|PT|713.0|ICD9CM|Arthropathy associated with other endocrine and metabolic disorders|Arthropathy associated with other endocrine and metabolic disorders +C0263723|T047|AB|713.1|ICD9CM|Arthrop w noninf GI dis|Arthrop w noninf GI dis +C0263723|T047|PT|713.1|ICD9CM|Arthropathy associated with gastrointestinal conditions other than infections|Arthropathy associated with gastrointestinal conditions other than infections +C0263724|T047|AB|713.2|ICD9CM|Arthropath w hematol dis|Arthropath w hematol dis +C0263724|T047|PT|713.2|ICD9CM|Arthropathy associated with hematological disorders|Arthropathy associated with hematological disorders +C0263726|T047|PT|713.3|ICD9CM|Arthropathy associated with dermatological disorders|Arthropathy associated with dermatological disorders +C0263726|T047|AB|713.3|ICD9CM|Arthropathy w skin dis|Arthropathy w skin dis +C0263727|T047|PT|713.4|ICD9CM|Arthropathy associated with respiratory disorders|Arthropathy associated with respiratory disorders +C0263727|T047|AB|713.4|ICD9CM|Arthropathy w resp dis|Arthropathy w resp dis +C0003892|T047|PT|713.5|ICD9CM|Arthropathy associated with neurological disorders|Arthropathy associated with neurological disorders +C0003892|T047|AB|713.5|ICD9CM|Arthropathy w nerve dis|Arthropathy w nerve dis +C0263730|T047|AB|713.6|ICD9CM|Arthrop w hypersen react|Arthrop w hypersen react +C0263730|T047|PT|713.6|ICD9CM|Arthropathy associated with hypersensitivity reaction|Arthropathy associated with hypersensitivity reaction +C0157911|T047|AB|713.7|ICD9CM|Arthrop w system dis NEC|Arthrop w system dis NEC +C0157911|T047|PT|713.7|ICD9CM|Other general diseases with articular involvement|Other general diseases with articular involvement +C0263732|T047|AB|713.8|ICD9CM|Arthrop w oth dis NEC|Arthrop w oth dis NEC +C0263732|T047|PT|713.8|ICD9CM|Arthropathy associated with other conditions classifiable elsewhere|Arthropathy associated with other conditions classifiable elsewhere +C0157913|T047|HT|714|ICD9CM|Rheumatoid arthritis and other inflammatory polyarthropathies|Rheumatoid arthritis and other inflammatory polyarthropathies +C0003873|T047|AB|714.0|ICD9CM|Rheumatoid arthritis|Rheumatoid arthritis +C0003873|T047|PT|714.0|ICD9CM|Rheumatoid arthritis|Rheumatoid arthritis +C0015773|T047|AB|714.1|ICD9CM|Felty's syndrome|Felty's syndrome +C0015773|T047|PT|714.1|ICD9CM|Felty's syndrome|Felty's syndrome +C0157914|T047|PT|714.2|ICD9CM|Other rheumatoid arthritis with visceral or systemic involvement|Other rheumatoid arthritis with visceral or systemic involvement +C0157914|T047|AB|714.2|ICD9CM|Syst rheum arthritis NEC|Syst rheum arthritis NEC +C0409667|T047|HT|714.3|ICD9CM|Juvenile chronic polyarthritis|Juvenile chronic polyarthritis +C0837691|T047|AB|714.30|ICD9CM|Juv rheum arthritis NOS|Juv rheum arthritis NOS +C0837691|T047|PT|714.30|ICD9CM|Polyarticular juvenile rheumatoid arthritis, chronic or unspecified|Polyarticular juvenile rheumatoid arthritis, chronic or unspecified +C0157916|T047|AB|714.31|ICD9CM|Polyart juv rheum arthr|Polyart juv rheum arthr +C0157916|T047|PT|714.31|ICD9CM|Polyarticular juvenile rheumatoid arthritis, acute|Polyarticular juvenile rheumatoid arthritis, acute +C0157917|T047|AB|714.32|ICD9CM|Pauciart juv rheum arthr|Pauciart juv rheum arthr +C0157917|T047|PT|714.32|ICD9CM|Pauciarticular juvenile rheumatoid arthritis|Pauciarticular juvenile rheumatoid arthritis +C0157918|T047|AB|714.33|ICD9CM|Monoart juv rheum arthr|Monoart juv rheum arthr +C0157918|T047|PT|714.33|ICD9CM|Monoarticular juvenile rheumatoid arthritis|Monoarticular juvenile rheumatoid arthritis +C0152084|T047|AB|714.4|ICD9CM|Chr postrheum arthritis|Chr postrheum arthritis +C0152084|T047|PT|714.4|ICD9CM|Chronic postrheumatic arthropathy|Chronic postrheumatic arthropathy +C0157919|T047|HT|714.8|ICD9CM|Other specified inflammatory polyarthropathies|Other specified inflammatory polyarthropathies +C0994344|T047|AB|714.81|ICD9CM|Rheumatoid lung|Rheumatoid lung +C0994344|T047|PT|714.81|ICD9CM|Rheumatoid lung|Rheumatoid lung +C0157919|T047|AB|714.89|ICD9CM|Inflamm polyarthrop NEC|Inflamm polyarthrop NEC +C0157919|T047|PT|714.89|ICD9CM|Other specified inflammatory polyarthropathies|Other specified inflammatory polyarthropathies +C0162323|T047|AB|714.9|ICD9CM|Inflamm polyarthrop NOS|Inflamm polyarthrop NOS +C0162323|T047|PT|714.9|ICD9CM|Unspecified inflammatory polyarthropathy|Unspecified inflammatory polyarthropathy +C0263742|T047|HT|715|ICD9CM|Osteoarthrosis and allied disorders|Osteoarthrosis and allied disorders +C1384584|T047|HT|715.0|ICD9CM|Osteoarthrosis, generalized|Osteoarthrosis, generalized +C0157923|T047|AB|715.00|ICD9CM|General osteoarthrosis|General osteoarthrosis +C0157923|T047|PT|715.00|ICD9CM|Osteoarthrosis, generalized, site unspecified|Osteoarthrosis, generalized, site unspecified +C0157924|T047|AB|715.04|ICD9CM|Gen osteoarthros-hand|Gen osteoarthros-hand +C0157924|T047|PT|715.04|ICD9CM|Osteoarthrosis, generalized, hand|Osteoarthrosis, generalized, hand +C1384584|T047|AB|715.09|ICD9CM|General osteoarthrosis|General osteoarthrosis +C1384584|T047|PT|715.09|ICD9CM|Osteoarthrosis, generalized, multiple sites|Osteoarthrosis, generalized, multiple sites +C0157926|T047|HT|715.1|ICD9CM|Osteoarthrosis, localized, primary|Osteoarthrosis, localized, primary +C0157926|T047|AB|715.10|ICD9CM|Loc prim osteoart-unspec|Loc prim osteoart-unspec +C0157926|T047|PT|715.10|ICD9CM|Osteoarthrosis, localized, primary, site unspecified|Osteoarthrosis, localized, primary, site unspecified +C0263752|T047|AB|715.11|ICD9CM|Loc prim osteoart-shlder|Loc prim osteoart-shlder +C0263752|T047|PT|715.11|ICD9CM|Osteoarthrosis, localized, primary, shoulder region|Osteoarthrosis, localized, primary, shoulder region +C0263753|T047|AB|715.12|ICD9CM|Loc prim osteoart-up/arm|Loc prim osteoart-up/arm +C0263753|T047|PT|715.12|ICD9CM|Osteoarthrosis, localized, primary, upper arm|Osteoarthrosis, localized, primary, upper arm +C0263754|T047|AB|715.13|ICD9CM|Loc prim osteoart-forarm|Loc prim osteoart-forarm +C0263754|T047|PT|715.13|ICD9CM|Osteoarthrosis, localized, primary, forearm|Osteoarthrosis, localized, primary, forearm +C0263755|T047|AB|715.14|ICD9CM|Loc prim osteoarth-hand|Loc prim osteoarth-hand +C0263755|T047|PT|715.14|ICD9CM|Osteoarthrosis, localized, primary, hand|Osteoarthrosis, localized, primary, hand +C0473748|T047|AB|715.15|ICD9CM|Loc prim osteoart-pelvis|Loc prim osteoart-pelvis +C0473748|T047|PT|715.15|ICD9CM|Osteoarthrosis, localized, primary, pelvic region and thigh|Osteoarthrosis, localized, primary, pelvic region and thigh +C0263758|T047|AB|715.16|ICD9CM|Loc prim osteoart-l/leg|Loc prim osteoart-l/leg +C0263758|T047|PT|715.16|ICD9CM|Osteoarthrosis, localized, primary, lower leg|Osteoarthrosis, localized, primary, lower leg +C0263759|T047|AB|715.17|ICD9CM|Loc prim osteoarth-ankle|Loc prim osteoarth-ankle +C0263759|T047|PT|715.17|ICD9CM|Osteoarthrosis, localized, primary, ankle and foot|Osteoarthrosis, localized, primary, ankle and foot +C0701814|T047|AB|715.18|ICD9CM|Loc prim osteoarthr NEC|Loc prim osteoarthr NEC +C0701814|T047|PT|715.18|ICD9CM|Osteoarthrosis, localized, primary, other specified sites|Osteoarthrosis, localized, primary, other specified sites +C0473754|T047|HT|715.2|ICD9CM|Osteoarthrosis, localized, secondary|Osteoarthrosis, localized, secondary +C0157937|T047|AB|715.20|ICD9CM|Loc 2nd osteoarth-unspec|Loc 2nd osteoarth-unspec +C0157937|T047|PT|715.20|ICD9CM|Osteoarthrosis, localized, secondary, site unspecified|Osteoarthrosis, localized, secondary, site unspecified +C0157938|T047|AB|715.21|ICD9CM|Loc 2nd osteoarth-shlder|Loc 2nd osteoarth-shlder +C0157938|T047|PT|715.21|ICD9CM|Osteoarthrosis, localized, secondary, shoulder region|Osteoarthrosis, localized, secondary, shoulder region +C0157939|T047|AB|715.22|ICD9CM|Loc 2nd osteoarth-up/arm|Loc 2nd osteoarth-up/arm +C0157939|T047|PT|715.22|ICD9CM|Osteoarthrosis, localized, secondary, upper arm|Osteoarthrosis, localized, secondary, upper arm +C0157940|T047|AB|715.23|ICD9CM|Loc 2nd osteoart-forearm|Loc 2nd osteoart-forearm +C0157940|T047|PT|715.23|ICD9CM|Osteoarthrosis, localized, secondary, forearm|Osteoarthrosis, localized, secondary, forearm +C0157941|T047|AB|715.24|ICD9CM|Loc 2nd osteoarthro-hand|Loc 2nd osteoarthro-hand +C0157941|T047|PT|715.24|ICD9CM|Osteoarthrosis, localized, secondary, hand|Osteoarthrosis, localized, secondary, hand +C0157942|T047|AB|715.25|ICD9CM|Loc 2nd osteoarth-pelvis|Loc 2nd osteoarth-pelvis +C0157942|T047|PT|715.25|ICD9CM|Osteoarthrosis, localized, secondary, pelvic region and thigh|Osteoarthrosis, localized, secondary, pelvic region and thigh +C0157943|T047|AB|715.26|ICD9CM|Loc 2nd osteoarthr-l/leg|Loc 2nd osteoarthr-l/leg +C0157943|T047|PT|715.26|ICD9CM|Osteoarthrosis, localized, secondary, lower leg|Osteoarthrosis, localized, secondary, lower leg +C0157944|T047|AB|715.27|ICD9CM|Loc 2nd osteoarthr-ankle|Loc 2nd osteoarthr-ankle +C0157944|T047|PT|715.27|ICD9CM|Osteoarthrosis, localized, secondary, ankle and foot|Osteoarthrosis, localized, secondary, ankle and foot +C0157945|T047|AB|715.28|ICD9CM|Loc 2nd osteoarthros NEC|Loc 2nd osteoarthros NEC +C0157945|T047|PT|715.28|ICD9CM|Osteoarthrosis, localized, secondary, other specified sites|Osteoarthrosis, localized, secondary, other specified sites +C0157946|T047|HT|715.3|ICD9CM|Osteoarthrosis, localized, not specified whether primary or secondary|Osteoarthrosis, localized, not specified whether primary or secondary +C0157947|T047|AB|715.30|ICD9CM|Loc osteoarth NOS-unspec|Loc osteoarth NOS-unspec +C0157947|T047|PT|715.30|ICD9CM|Osteoarthrosis, localized, not specified whether primary or secondary, site unspecified|Osteoarthrosis, localized, not specified whether primary or secondary, site unspecified +C0157948|T047|AB|715.31|ICD9CM|Loc osteoarth NOS-shlder|Loc osteoarth NOS-shlder +C0157948|T047|PT|715.31|ICD9CM|Osteoarthrosis, localized, not specified whether primary or secondary, shoulder region|Osteoarthrosis, localized, not specified whether primary or secondary, shoulder region +C0157949|T047|AB|715.32|ICD9CM|Loc osteoarth NOS-up/arm|Loc osteoarth NOS-up/arm +C0157949|T047|PT|715.32|ICD9CM|Osteoarthrosis, localized, not specified whether primary or secondary, upper arm|Osteoarthrosis, localized, not specified whether primary or secondary, upper arm +C0157950|T047|AB|715.33|ICD9CM|Loc osteoart NOS-forearm|Loc osteoart NOS-forearm +C0157950|T047|PT|715.33|ICD9CM|Osteoarthrosis, localized, not specified whether primary or secondary, forearm|Osteoarthrosis, localized, not specified whether primary or secondary, forearm +C0157951|T047|AB|715.34|ICD9CM|Loc osteoarth NOS-hand|Loc osteoarth NOS-hand +C0157951|T047|PT|715.34|ICD9CM|Osteoarthrosis, localized, not specified whether primary or secondary, hand|Osteoarthrosis, localized, not specified whether primary or secondary, hand +C0157952|T047|AB|715.35|ICD9CM|Loc osteoarth NOS-pelvis|Loc osteoarth NOS-pelvis +C0157952|T047|PT|715.35|ICD9CM|Osteoarthrosis, localized, not specified whether primary or secondary, pelvic region and thigh|Osteoarthrosis, localized, not specified whether primary or secondary, pelvic region and thigh +C0157953|T047|AB|715.36|ICD9CM|Loc osteoarth NOS-l/leg|Loc osteoarth NOS-l/leg +C0157953|T047|PT|715.36|ICD9CM|Osteoarthrosis, localized, not specified whether primary or secondary, lower leg|Osteoarthrosis, localized, not specified whether primary or secondary, lower leg +C0157954|T047|AB|715.37|ICD9CM|Loc osteoarth NOS-ankle|Loc osteoarth NOS-ankle +C0157954|T047|PT|715.37|ICD9CM|Osteoarthrosis, localized, not specified whether primary or secondary, ankle and foot|Osteoarthrosis, localized, not specified whether primary or secondary, ankle and foot +C0157955|T047|AB|715.38|ICD9CM|Loc osteoar NOS-site NEC|Loc osteoar NOS-site NEC +C0157955|T047|PT|715.38|ICD9CM|Osteoarthrosis, localized, not specified whether primary or secondary, other specified sites|Osteoarthrosis, localized, not specified whether primary or secondary, other specified sites +C0263774|T047|HT|715.8|ICD9CM|Osteoarthrosis involving or with mention of more than one site, but not specified as generalized|Osteoarthrosis involving or with mention of more than one site, but not specified as generalized +C0157957|T047|AB|715.80|ICD9CM|Osteoarthrosis-mult site|Osteoarthrosis-mult site +C0157958|T047|AB|715.89|ICD9CM|Osteoarthrosis-mult site|Osteoarthrosis-mult site +C0029408|T047|HT|715.9|ICD9CM|Osteoarthrosis, unspecified whether generalized or localized|Osteoarthrosis, unspecified whether generalized or localized +C0157959|T047|AB|715.90|ICD9CM|Osteoarthros NOS-unspec|Osteoarthros NOS-unspec +C0157959|T047|PT|715.90|ICD9CM|Osteoarthrosis, unspecified whether generalized or localized, site unspecified|Osteoarthrosis, unspecified whether generalized or localized, site unspecified +C0157960|T047|AB|715.91|ICD9CM|Osteoarthros NOS-shlder|Osteoarthros NOS-shlder +C0157960|T047|PT|715.91|ICD9CM|Osteoarthrosis, unspecified whether generalized or localized, shoulder region|Osteoarthrosis, unspecified whether generalized or localized, shoulder region +C0157961|T047|AB|715.92|ICD9CM|Osteoarthros NOS-up/arm|Osteoarthros NOS-up/arm +C0157961|T047|PT|715.92|ICD9CM|Osteoarthrosis, unspecified whether generalized or localized, upper arm|Osteoarthrosis, unspecified whether generalized or localized, upper arm +C0157962|T047|AB|715.93|ICD9CM|Osteoarthros NOS-forearm|Osteoarthros NOS-forearm +C0157962|T047|PT|715.93|ICD9CM|Osteoarthrosis, unspecified whether generalized or localized, forearm|Osteoarthrosis, unspecified whether generalized or localized, forearm +C0157963|T047|AB|715.94|ICD9CM|Osteoarthros NOS-hand|Osteoarthros NOS-hand +C0157963|T047|PT|715.94|ICD9CM|Osteoarthrosis, unspecified whether generalized or localized, hand|Osteoarthrosis, unspecified whether generalized or localized, hand +C0157964|T047|AB|715.95|ICD9CM|Osteoarthros NOS-pelvis|Osteoarthros NOS-pelvis +C0157964|T047|PT|715.95|ICD9CM|Osteoarthrosis, unspecified whether generalized or localized, pelvic region and thigh|Osteoarthrosis, unspecified whether generalized or localized, pelvic region and thigh +C0157965|T047|AB|715.96|ICD9CM|Osteoarthros NOS-l/leg|Osteoarthros NOS-l/leg +C0157965|T047|PT|715.96|ICD9CM|Osteoarthrosis, unspecified whether generalized or localized, lower leg|Osteoarthrosis, unspecified whether generalized or localized, lower leg +C0157966|T047|AB|715.97|ICD9CM|Osteoarthros NOS-ankle|Osteoarthros NOS-ankle +C0157966|T047|PT|715.97|ICD9CM|Osteoarthrosis, unspecified whether generalized or localized, ankle and foot|Osteoarthrosis, unspecified whether generalized or localized, ankle and foot +C0157967|T047|AB|715.98|ICD9CM|Osteoarthro NOS-oth site|Osteoarthro NOS-oth site +C0157967|T047|PT|715.98|ICD9CM|Osteoarthrosis, unspecified whether generalized or localized, other specified sites|Osteoarthrosis, unspecified whether generalized or localized, other specified sites +C1442831|T047|HT|716|ICD9CM|Other and unspecified arthropathies|Other and unspecified arthropathies +C2745963|T047|HT|716.0|ICD9CM|Kaschin-Beck disease|Kaschin-Beck disease +C2745963|T047|AB|716.00|ICD9CM|Kaschin-beck dis-unspec|Kaschin-beck dis-unspec +C2745963|T047|PT|716.00|ICD9CM|Kaschin-Beck disease, site unspecified|Kaschin-Beck disease, site unspecified +C0157969|T047|AB|716.01|ICD9CM|Kaschin-beck dis-shlder|Kaschin-beck dis-shlder +C0157969|T047|PT|716.01|ICD9CM|Kaschin-Beck disease, shoulder region|Kaschin-Beck disease, shoulder region +C0157970|T047|AB|716.02|ICD9CM|Kaschin-beck dis-up/arm|Kaschin-beck dis-up/arm +C0157970|T047|PT|716.02|ICD9CM|Kaschin-Beck disease, upper arm|Kaschin-Beck disease, upper arm +C0157971|T047|AB|716.03|ICD9CM|Kaschin-beck dis-forearm|Kaschin-beck dis-forearm +C0157971|T047|PT|716.03|ICD9CM|Kaschin-Beck disease, forearm|Kaschin-Beck disease, forearm +C0157972|T047|AB|716.04|ICD9CM|Kaschin-beck dis-hand|Kaschin-beck dis-hand +C0157972|T047|PT|716.04|ICD9CM|Kaschin-Beck disease, hand|Kaschin-Beck disease, hand +C0409970|T047|AB|716.05|ICD9CM|Kaschin-beck dis-pelvis|Kaschin-beck dis-pelvis +C0409970|T047|PT|716.05|ICD9CM|Kaschin-Beck disease, pelvic region and thigh|Kaschin-Beck disease, pelvic region and thigh +C0157974|T047|AB|716.06|ICD9CM|Kaschin-beck dis-l/leg|Kaschin-beck dis-l/leg +C0157974|T047|PT|716.06|ICD9CM|Kaschin-Beck disease, lower leg|Kaschin-Beck disease, lower leg +C0409969|T047|AB|716.07|ICD9CM|Kaschin-beck dis-ankle|Kaschin-beck dis-ankle +C0409969|T047|PT|716.07|ICD9CM|Kaschin-Beck disease, ankle and foot|Kaschin-Beck disease, ankle and foot +C0409968|T047|AB|716.08|ICD9CM|Kaschin-beck dis NEC|Kaschin-beck dis NEC +C0409968|T047|PT|716.08|ICD9CM|Kaschin-Beck disease, other specified sites|Kaschin-Beck disease, other specified sites +C0157977|T047|AB|716.09|ICD9CM|Kaschin-beck dis-mult|Kaschin-beck dis-mult +C0157977|T047|PT|716.09|ICD9CM|Kaschin-Beck disease, multiple sites|Kaschin-Beck disease, multiple sites +C0152086|T037|HT|716.1|ICD9CM|Traumatic arthropathy|Traumatic arthropathy +C0152086|T037|AB|716.10|ICD9CM|Traum arthropathy-unspec|Traum arthropathy-unspec +C0152086|T037|PT|716.10|ICD9CM|Traumatic arthropathy, site unspecified|Traumatic arthropathy, site unspecified +C0409760|T037|AB|716.11|ICD9CM|Traum arthropathy-shlder|Traum arthropathy-shlder +C0409760|T037|PT|716.11|ICD9CM|Traumatic arthropathy, shoulder region|Traumatic arthropathy, shoulder region +C0409759|T037|AB|716.12|ICD9CM|Traum arthropathy-up/arm|Traum arthropathy-up/arm +C0409759|T037|PT|716.12|ICD9CM|Traumatic arthropathy, upper arm|Traumatic arthropathy, upper arm +C0409758|T037|AB|716.13|ICD9CM|Traum arthropath-forearm|Traum arthropath-forearm +C0409758|T037|PT|716.13|ICD9CM|Traumatic arthropathy, forearm|Traumatic arthropathy, forearm +C0409757|T037|AB|716.14|ICD9CM|Traum arthropathy-hand|Traum arthropathy-hand +C0409757|T037|PT|716.14|ICD9CM|Traumatic arthropathy, hand|Traumatic arthropathy, hand +C0409756|T047|AB|716.15|ICD9CM|Traum arthropathy-pelvis|Traum arthropathy-pelvis +C0409756|T047|PT|716.15|ICD9CM|Traumatic arthropathy, pelvic region and thigh|Traumatic arthropathy, pelvic region and thigh +C0409755|T037|AB|716.16|ICD9CM|Traum arthropathy-l/leg|Traum arthropathy-l/leg +C0409755|T037|PT|716.16|ICD9CM|Traumatic arthropathy, lower leg|Traumatic arthropathy, lower leg +C0409754|T037|AB|716.17|ICD9CM|Traum arthropathy-ankle|Traum arthropathy-ankle +C0409754|T037|PT|716.17|ICD9CM|Traumatic arthropathy, ankle and foot|Traumatic arthropathy, ankle and foot +C0409753|T037|AB|716.18|ICD9CM|Traum arthropathy NEC|Traum arthropathy NEC +C0409753|T037|PT|716.18|ICD9CM|Traumatic arthropathy, other specified sites|Traumatic arthropathy, other specified sites +C0409752|T037|AB|716.19|ICD9CM|Traum arthropathy-mult|Traum arthropathy-mult +C0409752|T037|PT|716.19|ICD9CM|Traumatic arthropathy, multiple sites|Traumatic arthropathy, multiple sites +C0157987|T047|HT|716.2|ICD9CM|Allergic arthritis|Allergic arthritis +C0157987|T047|AB|716.20|ICD9CM|Allerg arthritis-unspec|Allerg arthritis-unspec +C0157987|T047|PT|716.20|ICD9CM|Allergic arthritis, site unspecified|Allergic arthritis, site unspecified +C0409260|T047|AB|716.21|ICD9CM|Allerg arthritis-shlder|Allerg arthritis-shlder +C0409260|T047|PT|716.21|ICD9CM|Allergic arthritis, shoulder region|Allergic arthritis, shoulder region +C0409259|T047|AB|716.22|ICD9CM|Allerg arthritis-up/arm|Allerg arthritis-up/arm +C0409259|T047|PT|716.22|ICD9CM|Allergic arthritis, upper arm|Allergic arthritis, upper arm +C0409258|T047|AB|716.23|ICD9CM|Allerg arthritis-forearm|Allerg arthritis-forearm +C0409258|T047|PT|716.23|ICD9CM|Allergic arthritis, forearm|Allergic arthritis, forearm +C0409257|T047|AB|716.24|ICD9CM|Allerg arthritis-hand|Allerg arthritis-hand +C0409257|T047|PT|716.24|ICD9CM|Allergic arthritis, hand|Allergic arthritis, hand +C0409256|T047|AB|716.25|ICD9CM|Allerg arthritis-pelvis|Allerg arthritis-pelvis +C0409256|T047|PT|716.25|ICD9CM|Allergic arthritis, pelvic region and thigh|Allergic arthritis, pelvic region and thigh +C0409255|T047|AB|716.26|ICD9CM|Allerg arthritis-l/leg|Allerg arthritis-l/leg +C0409255|T047|PT|716.26|ICD9CM|Allergic arthritis, lower leg|Allergic arthritis, lower leg +C0409254|T047|AB|716.27|ICD9CM|Allerg arthritis-ankle|Allerg arthritis-ankle +C0409254|T047|PT|716.27|ICD9CM|Allergic arthritis, ankle and foot|Allergic arthritis, ankle and foot +C0409253|T047|AB|716.28|ICD9CM|Allerg arthritis NEC|Allerg arthritis NEC +C0409253|T047|PT|716.28|ICD9CM|Allergic arthritis, other specified sites|Allergic arthritis, other specified sites +C0409252|T047|AB|716.29|ICD9CM|Allerg arthritis-mult|Allerg arthritis-mult +C0409252|T047|PT|716.29|ICD9CM|Allergic arthritis, multiple sites|Allergic arthritis, multiple sites +C0157997|T047|HT|716.3|ICD9CM|Climacteric arthritis|Climacteric arthritis +C0157997|T047|AB|716.30|ICD9CM|Climact arthritis-unspec|Climact arthritis-unspec +C0157997|T047|PT|716.30|ICD9CM|Climacteric arthritis, site unspecified|Climacteric arthritis, site unspecified +C0409251|T047|AB|716.31|ICD9CM|Climact arthritis-shlder|Climact arthritis-shlder +C0409251|T047|PT|716.31|ICD9CM|Climacteric arthritis, shoulder region|Climacteric arthritis, shoulder region +C0409250|T047|AB|716.32|ICD9CM|Climact arthritis-up/arm|Climact arthritis-up/arm +C0409250|T047|PT|716.32|ICD9CM|Climacteric arthritis, upper arm|Climacteric arthritis, upper arm +C0409249|T047|AB|716.33|ICD9CM|Climact arthrit-forearm|Climact arthrit-forearm +C0409249|T047|PT|716.33|ICD9CM|Climacteric arthritis, forearm|Climacteric arthritis, forearm +C0409248|T047|AB|716.34|ICD9CM|Climact arthritis-hand|Climact arthritis-hand +C0409248|T047|PT|716.34|ICD9CM|Climacteric arthritis, hand|Climacteric arthritis, hand +C0409247|T047|AB|716.35|ICD9CM|Climact arthritis-pelvis|Climact arthritis-pelvis +C0409247|T047|PT|716.35|ICD9CM|Climacteric arthritis, pelvic region and thigh|Climacteric arthritis, pelvic region and thigh +C0409246|T047|AB|716.36|ICD9CM|Climact arthritis-l/leg|Climact arthritis-l/leg +C0409246|T047|PT|716.36|ICD9CM|Climacteric arthritis, lower leg|Climacteric arthritis, lower leg +C0158004|T047|AB|716.37|ICD9CM|Climact arthritis-ankle|Climact arthritis-ankle +C0158004|T047|PT|716.37|ICD9CM|Climacteric arthritis, ankle and foot|Climacteric arthritis, ankle and foot +C0409244|T047|AB|716.38|ICD9CM|Climact arthritis NEC|Climact arthritis NEC +C0409244|T047|PT|716.38|ICD9CM|Climacteric arthritis, other specified sites|Climacteric arthritis, other specified sites +C0409243|T047|AB|716.39|ICD9CM|Climact arthritis-mult|Climact arthritis-mult +C0409243|T047|PT|716.39|ICD9CM|Climacteric arthritis, multiple sites|Climacteric arthritis, multiple sites +C0152083|T047|HT|716.4|ICD9CM|Transient arthropathy|Transient arthropathy +C0152083|T047|AB|716.40|ICD9CM|Trans arthropathy-unspec|Trans arthropathy-unspec +C0152083|T047|PT|716.40|ICD9CM|Transient arthropathy, site unspecified|Transient arthropathy, site unspecified +C0158007|T047|AB|716.41|ICD9CM|Trans arthropathy-shlder|Trans arthropathy-shlder +C0158007|T047|PT|716.41|ICD9CM|Transient arthropathy, shoulder region|Transient arthropathy, shoulder region +C0409816|T047|AB|716.42|ICD9CM|Trans arthropathy-up/arm|Trans arthropathy-up/arm +C0409816|T047|PT|716.42|ICD9CM|Transient arthropathy, upper arm|Transient arthropathy, upper arm +C0409815|T047|AB|716.43|ICD9CM|Trans arthropath-forearm|Trans arthropath-forearm +C0409815|T047|PT|716.43|ICD9CM|Transient arthropathy, forearm|Transient arthropathy, forearm +C0409814|T047|AB|716.44|ICD9CM|Trans arthropathy-hand|Trans arthropathy-hand +C0409814|T047|PT|716.44|ICD9CM|Transient arthropathy, hand|Transient arthropathy, hand +C0409813|T047|AB|716.45|ICD9CM|Trans arthropathy-pelvis|Trans arthropathy-pelvis +C0409813|T047|PT|716.45|ICD9CM|Transient arthropathy, pelvic region and thigh|Transient arthropathy, pelvic region and thigh +C0409812|T047|AB|716.46|ICD9CM|Trans arthropathy-l/leg|Trans arthropathy-l/leg +C0409812|T047|PT|716.46|ICD9CM|Transient arthropathy, lower leg|Transient arthropathy, lower leg +C0409811|T047|AB|716.47|ICD9CM|Trans arthropathy-ankle|Trans arthropathy-ankle +C0409811|T047|PT|716.47|ICD9CM|Transient arthropathy, ankle and foot|Transient arthropathy, ankle and foot +C0409810|T047|AB|716.48|ICD9CM|Trans arthropathy NEC|Trans arthropathy NEC +C0409810|T047|PT|716.48|ICD9CM|Transient arthropathy, other specified sites|Transient arthropathy, other specified sites +C0409809|T047|AB|716.49|ICD9CM|Trans arthropathy-mult|Trans arthropathy-mult +C0409809|T047|PT|716.49|ICD9CM|Transient arthropathy, multiple sites|Transient arthropathy, multiple sites +C1692323|T047|HT|716.5|ICD9CM|Unspecified polyarthropathy or polyarthritis|Unspecified polyarthropathy or polyarthritis +C1692323|T047|AB|716.50|ICD9CM|Polyarthritis NOS-unspec|Polyarthritis NOS-unspec +C1692323|T047|PT|716.50|ICD9CM|Unspecified polyarthropathy or polyarthritis, site unspecified|Unspecified polyarthropathy or polyarthritis, site unspecified +C0158017|T047|AB|716.51|ICD9CM|Polyarthritis NOS-shlder|Polyarthritis NOS-shlder +C0158017|T047|PT|716.51|ICD9CM|Unspecified polyarthropathy or polyarthritis, shoulder region|Unspecified polyarthropathy or polyarthritis, shoulder region +C0158018|T047|AB|716.52|ICD9CM|Polyarthritis NOS-up/arm|Polyarthritis NOS-up/arm +C0158018|T047|PT|716.52|ICD9CM|Unspecified polyarthropathy or polyarthritis, upper arm|Unspecified polyarthropathy or polyarthritis, upper arm +C0158019|T047|AB|716.53|ICD9CM|Polyarthrit NOS-forearm|Polyarthrit NOS-forearm +C0158019|T047|PT|716.53|ICD9CM|Unspecified polyarthropathy or polyarthritis, forearm|Unspecified polyarthropathy or polyarthritis, forearm +C0158020|T047|AB|716.54|ICD9CM|Polyarthritis NOS-hand|Polyarthritis NOS-hand +C0158020|T047|PT|716.54|ICD9CM|Unspecified polyarthropathy or polyarthritis, hand|Unspecified polyarthropathy or polyarthritis, hand +C0158021|T047|AB|716.55|ICD9CM|Polyarthritis NOS-pelvis|Polyarthritis NOS-pelvis +C0158021|T047|PT|716.55|ICD9CM|Unspecified polyarthropathy or polyarthritis, pelvic region and thigh|Unspecified polyarthropathy or polyarthritis, pelvic region and thigh +C0158022|T047|AB|716.56|ICD9CM|Polyarthritis NOS-l/leg|Polyarthritis NOS-l/leg +C0158022|T047|PT|716.56|ICD9CM|Unspecified polyarthropathy or polyarthritis, lower leg|Unspecified polyarthropathy or polyarthritis, lower leg +C0158023|T047|AB|716.57|ICD9CM|Polyarthritis NOS-ankle|Polyarthritis NOS-ankle +C0158023|T047|PT|716.57|ICD9CM|Unspecified polyarthropathy or polyarthritis, ankle and foot|Unspecified polyarthropathy or polyarthritis, ankle and foot +C0158024|T047|AB|716.58|ICD9CM|Polyarthrit NOS-oth site|Polyarthrit NOS-oth site +C0158024|T047|PT|716.58|ICD9CM|Unspecified polyarthropathy or polyarthritis, other specified sites|Unspecified polyarthropathy or polyarthritis, other specified sites +C0546840|T047|AB|716.59|ICD9CM|Polyarthritis NOS-mult|Polyarthritis NOS-mult +C0546840|T047|PT|716.59|ICD9CM|Unspecified polyarthropathy or polyarthritis, multiple sites|Unspecified polyarthropathy or polyarthritis, multiple sites +C0158026|T047|HT|716.6|ICD9CM|Unspecified monoarthritis|Unspecified monoarthritis +C0158026|T047|AB|716.60|ICD9CM|Monoarthritis NOS-unspec|Monoarthritis NOS-unspec +C0158026|T047|PT|716.60|ICD9CM|Unspecified monoarthritis, site unspecified|Unspecified monoarthritis, site unspecified +C0409232|T047|AB|716.61|ICD9CM|Monoarthritis NOS-shlder|Monoarthritis NOS-shlder +C0409232|T047|PT|716.61|ICD9CM|Unspecified monoarthritis, shoulder region|Unspecified monoarthritis, shoulder region +C0409231|T047|AB|716.62|ICD9CM|Monoarthritis NOS-up/arm|Monoarthritis NOS-up/arm +C0409231|T047|PT|716.62|ICD9CM|Unspecified monoarthritis, upper arm|Unspecified monoarthritis, upper arm +C0409230|T047|AB|716.63|ICD9CM|Monoarthrit NOS-forearm|Monoarthrit NOS-forearm +C0409230|T047|PT|716.63|ICD9CM|Unspecified monoarthritis, forearm|Unspecified monoarthritis, forearm +C0409229|T047|AB|716.64|ICD9CM|Monoarthritis NOS-hand|Monoarthritis NOS-hand +C0409229|T047|PT|716.64|ICD9CM|Unspecified monoarthritis, hand|Unspecified monoarthritis, hand +C0409228|T047|AB|716.65|ICD9CM|Monoarthritis NOS-pelvis|Monoarthritis NOS-pelvis +C0409228|T047|PT|716.65|ICD9CM|Unspecified monoarthritis, pelvic region and thigh|Unspecified monoarthritis, pelvic region and thigh +C0409227|T047|AB|716.66|ICD9CM|Monoarthritis NOS-l/leg|Monoarthritis NOS-l/leg +C0409227|T047|PT|716.66|ICD9CM|Unspecified monoarthritis, lower leg|Unspecified monoarthritis, lower leg +C0409226|T047|AB|716.67|ICD9CM|Monoarthritis NOS-ankle|Monoarthritis NOS-ankle +C0409226|T047|PT|716.67|ICD9CM|Unspecified monoarthritis, ankle and foot|Unspecified monoarthritis, ankle and foot +C0409225|T047|AB|716.68|ICD9CM|Monoarthrit NOS-oth site|Monoarthrit NOS-oth site +C0409225|T047|PT|716.68|ICD9CM|Unspecified monoarthritis, other specified sites|Unspecified monoarthritis, other specified sites +C0029746|T047|HT|716.8|ICD9CM|Other specified arthropathy|Other specified arthropathy +C0869062|T047|AB|716.80|ICD9CM|Arthropathy NEC-unspec|Arthropathy NEC-unspec +C0869062|T047|PT|716.80|ICD9CM|Other specified arthropathy, site unspecified|Other specified arthropathy, site unspecified +C0409223|T047|AB|716.81|ICD9CM|Arthropathy NEC-shlder|Arthropathy NEC-shlder +C0409223|T047|PT|716.81|ICD9CM|Other specified arthropathy, shoulder region|Other specified arthropathy, shoulder region +C0409222|T047|AB|716.82|ICD9CM|Arthropathy NEC-up/arm|Arthropathy NEC-up/arm +C0409222|T047|PT|716.82|ICD9CM|Other specified arthropathy, upper arm|Other specified arthropathy, upper arm +C0409221|T047|AB|716.83|ICD9CM|Arthropathy NEC-forearm|Arthropathy NEC-forearm +C0409221|T047|PT|716.83|ICD9CM|Other specified arthropathy, forearm|Other specified arthropathy, forearm +C0409220|T047|AB|716.84|ICD9CM|Arthropathy NEC-hand|Arthropathy NEC-hand +C0409220|T047|PT|716.84|ICD9CM|Other specified arthropathy, hand|Other specified arthropathy, hand +C0409219|T047|AB|716.85|ICD9CM|Arthropathy NEC-pelvis|Arthropathy NEC-pelvis +C0409219|T047|PT|716.85|ICD9CM|Other specified arthropathy, pelvic region and thigh|Other specified arthropathy, pelvic region and thigh +C0409218|T047|AB|716.86|ICD9CM|Arthropathy NEC-l/leg|Arthropathy NEC-l/leg +C0409218|T047|PT|716.86|ICD9CM|Other specified arthropathy, lower leg|Other specified arthropathy, lower leg +C0409217|T047|AB|716.87|ICD9CM|Arthropathy NEC-ankle|Arthropathy NEC-ankle +C0409217|T047|PT|716.87|ICD9CM|Other specified arthropathy, ankle and foot|Other specified arthropathy, ankle and foot +C0409216|T047|AB|716.88|ICD9CM|Arthropathy NEC-oth site|Arthropathy NEC-oth site +C0409216|T047|PT|716.88|ICD9CM|Other specified arthropathy, other specified sites|Other specified arthropathy, other specified sites +C0409215|T047|AB|716.89|ICD9CM|Arthropathy NEC-mult|Arthropathy NEC-mult +C0409215|T047|PT|716.89|ICD9CM|Other specified arthropathy, multiple sites|Other specified arthropathy, multiple sites +C0022408|T047|HT|716.9|ICD9CM|Arthropathy, unspecified|Arthropathy, unspecified +C0022408|T047|AB|716.90|ICD9CM|Arthropathy NOS-unspec|Arthropathy NOS-unspec +C0022408|T047|PT|716.90|ICD9CM|Arthropathy, unspecified, site unspecified|Arthropathy, unspecified, site unspecified +C0158044|T047|AB|716.91|ICD9CM|Arthropathy NOS-shlder|Arthropathy NOS-shlder +C0158044|T047|PT|716.91|ICD9CM|Arthropathy, unspecified, shoulder region|Arthropathy, unspecified, shoulder region +C0158045|T047|AB|716.92|ICD9CM|Arthropathy NOS-up/arm|Arthropathy NOS-up/arm +C0158045|T047|PT|716.92|ICD9CM|Arthropathy, unspecified, upper arm|Arthropathy, unspecified, upper arm +C0409209|T047|AB|716.93|ICD9CM|Arthropathy NOS-forearm|Arthropathy NOS-forearm +C0409209|T047|PT|716.93|ICD9CM|Arthropathy, unspecified, forearm|Arthropathy, unspecified, forearm +C0158234|T047|AB|716.94|ICD9CM|Arthropathy NOS-hand|Arthropathy NOS-hand +C0158234|T047|PT|716.94|ICD9CM|Arthropathy, unspecified, hand|Arthropathy, unspecified, hand +C0158048|T047|AB|716.95|ICD9CM|Arthropathy NOS-pelvis|Arthropathy NOS-pelvis +C0158048|T047|PT|716.95|ICD9CM|Arthropathy, unspecified, pelvic region and thigh|Arthropathy, unspecified, pelvic region and thigh +C0158049|T047|AB|716.96|ICD9CM|Arthropathy NOS-l/leg|Arthropathy NOS-l/leg +C0158049|T047|PT|716.96|ICD9CM|Arthropathy, unspecified, lower leg|Arthropathy, unspecified, lower leg +C0158050|T047|AB|716.97|ICD9CM|Arthropathy NOS-ankle|Arthropathy NOS-ankle +C0158050|T047|PT|716.97|ICD9CM|Arthropathy, unspecified, ankle and foot|Arthropathy, unspecified, ankle and foot +C0158051|T047|AB|716.98|ICD9CM|Arthropathy NOS-oth site|Arthropathy NOS-oth site +C0158051|T047|PT|716.98|ICD9CM|Arthropathy, unspecified, other specified sites|Arthropathy, unspecified, other specified sites +C0158052|T047|AB|716.99|ICD9CM|Arthropathy NOS-mult|Arthropathy NOS-mult +C0158052|T047|PT|716.99|ICD9CM|Arthropathy, unspecified, multiple sites|Arthropathy, unspecified, multiple sites +C0158053|T047|HT|717|ICD9CM|Internal derangement of knee|Internal derangement of knee +C0158054|T033|PT|717.0|ICD9CM|Old bucket handle tear of medial meniscus|Old bucket handle tear of medial meniscus +C0158054|T033|AB|717.0|ICD9CM|Old bucket tear med men|Old bucket tear med men +C0158055|T037|AB|717.1|ICD9CM|Derang ant med meniscus|Derang ant med meniscus +C0158055|T037|PT|717.1|ICD9CM|Derangement of anterior horn of medial meniscus|Derangement of anterior horn of medial meniscus +C0158056|T037|AB|717.2|ICD9CM|Derang post med meniscus|Derang post med meniscus +C0158056|T037|PT|717.2|ICD9CM|Derangement of posterior horn of medial meniscus|Derangement of posterior horn of medial meniscus +C0158057|T190|AB|717.3|ICD9CM|Derang med meniscus NEC|Derang med meniscus NEC +C0158057|T190|PT|717.3|ICD9CM|Other and unspecified derangement of medial meniscus|Other and unspecified derangement of medial meniscus +C0158058|T037|HT|717.4|ICD9CM|Derangement of lateral meniscus|Derangement of lateral meniscus +C0158058|T037|AB|717.40|ICD9CM|Derang lat meniscus NOS|Derang lat meniscus NOS +C0158058|T037|PT|717.40|ICD9CM|Derangement of lateral meniscus, unspecified|Derangement of lateral meniscus, unspecified +C0434992|T037|PT|717.41|ICD9CM|Bucket handle tear of lateral meniscus|Bucket handle tear of lateral meniscus +C0434992|T037|AB|717.41|ICD9CM|Old bucket tear lat men|Old bucket tear lat men +C0158060|T037|AB|717.42|ICD9CM|Derange ant lat meniscus|Derange ant lat meniscus +C0158060|T037|PT|717.42|ICD9CM|Derangement of anterior horn of lateral meniscus|Derangement of anterior horn of lateral meniscus +C0158061|T037|AB|717.43|ICD9CM|Derang post lat meniscus|Derang post lat meniscus +C0158061|T037|PT|717.43|ICD9CM|Derangement of posterior horn of lateral meniscus|Derangement of posterior horn of lateral meniscus +C0158062|T037|AB|717.49|ICD9CM|Derang lat meniscus NEC|Derang lat meniscus NEC +C0158062|T037|PT|717.49|ICD9CM|Other derangement of lateral meniscus|Other derangement of lateral meniscus +C0868743|T190|AB|717.5|ICD9CM|Derangement meniscus NEC|Derangement meniscus NEC +C0868743|T190|PT|717.5|ICD9CM|Derangement of meniscus, not elsewhere classified|Derangement of meniscus, not elsewhere classified +C0343161|T020|AB|717.6|ICD9CM|Loose body in knee|Loose body in knee +C0343161|T020|PT|717.6|ICD9CM|Loose body in knee|Loose body in knee +C0008475|T047|PT|717.7|ICD9CM|Chondromalacia of patella|Chondromalacia of patella +C0008475|T047|AB|717.7|ICD9CM|Chondromalacia patellae|Chondromalacia patellae +C0158065|T047|HT|717.8|ICD9CM|Other internal derangement of knee|Other internal derangement of knee +C0158066|T037|AB|717.81|ICD9CM|Old disrupt lat collat|Old disrupt lat collat +C0158066|T037|PT|717.81|ICD9CM|Old disruption of lateral collateral ligament|Old disruption of lateral collateral ligament +C0158067|T037|AB|717.82|ICD9CM|Old disrupt med collat|Old disrupt med collat +C0158067|T037|PT|717.82|ICD9CM|Old disruption of medial collateral ligament|Old disruption of medial collateral ligament +C0158068|T037|AB|717.83|ICD9CM|Old disrupt ant cruciate|Old disrupt ant cruciate +C0158068|T037|PT|717.83|ICD9CM|Old disruption of anterior cruciate ligament|Old disruption of anterior cruciate ligament +C0158069|T037|AB|717.84|ICD9CM|Old disrupt post cruciat|Old disrupt post cruciat +C0158069|T037|PT|717.84|ICD9CM|Old disruption of posterior cruciate ligament|Old disruption of posterior cruciate ligament +C0158070|T037|AB|717.85|ICD9CM|Old disrupt knee lig NEC|Old disrupt knee lig NEC +C0158070|T037|PT|717.85|ICD9CM|Old disruption of other ligaments of knee|Old disruption of other ligaments of knee +C0158065|T047|AB|717.89|ICD9CM|Int derangement knee NEC|Int derangement knee NEC +C0158065|T047|PT|717.89|ICD9CM|Other internal derangement of knee|Other internal derangement of knee +C0158053|T047|AB|717.9|ICD9CM|Int derangement knee NOS|Int derangement knee NOS +C0158053|T047|PT|717.9|ICD9CM|Unspecified internal derangement of knee|Unspecified internal derangement of knee +C0158072|T037|HT|718|ICD9CM|Other derangement of joint|Other derangement of joint +C0158073|T047|HT|718.0|ICD9CM|Articular cartilage disorder|Articular cartilage disorder +C0158073|T047|AB|718.00|ICD9CM|Artic cartil dis-unspec|Artic cartil dis-unspec +C0158073|T047|PT|718.00|ICD9CM|Articular cartilage disorder, site unspecified|Articular cartilage disorder, site unspecified +C0263793|T047|AB|718.01|ICD9CM|Artic cartil dis-shlder|Artic cartil dis-shlder +C0263793|T047|PT|718.01|ICD9CM|Articular cartilage disorder, shoulder region|Articular cartilage disorder, shoulder region +C0263794|T047|AB|718.02|ICD9CM|Artic cartil dis-up/arm|Artic cartil dis-up/arm +C0263794|T047|PT|718.02|ICD9CM|Articular cartilage disorder, upper arm|Articular cartilage disorder, upper arm +C0263795|T047|AB|718.03|ICD9CM|Artic cartil dis-forearm|Artic cartil dis-forearm +C0263795|T047|PT|718.03|ICD9CM|Articular cartilage disorder, forearm|Articular cartilage disorder, forearm +C0158077|T047|AB|718.04|ICD9CM|Artic cartil dis-hand|Artic cartil dis-hand +C0158077|T047|PT|718.04|ICD9CM|Articular cartilage disorder, hand|Articular cartilage disorder, hand +C0410332|T047|AB|718.05|ICD9CM|Artic cartil dis-pelvis|Artic cartil dis-pelvis +C0410332|T047|PT|718.05|ICD9CM|Articular cartilage disorder, pelvic region and thigh|Articular cartilage disorder, pelvic region and thigh +C0263799|T047|AB|718.07|ICD9CM|Artic cartil dis-ankle|Artic cartil dis-ankle +C0263799|T047|PT|718.07|ICD9CM|Articular cartilage disorder, ankle and foot|Articular cartilage disorder, ankle and foot +C0410331|T047|AB|718.08|ICD9CM|Artic cartil dis-jt NEC|Artic cartil dis-jt NEC +C0410331|T047|PT|718.08|ICD9CM|Articular cartilage disorder, other specified sites|Articular cartilage disorder, other specified sites +C0263801|T047|AB|718.09|ICD9CM|Artic cartil dis-mult jt|Artic cartil dis-mult jt +C0263801|T047|PT|718.09|ICD9CM|Articular cartilage disorder, multiple sites|Articular cartilage disorder, multiple sites +C0022411|T020|HT|718.1|ICD9CM|Loose body in joint|Loose body in joint +C0022411|T020|PT|718.10|ICD9CM|Loose body in joint, site unspecified|Loose body in joint, site unspecified +C0022411|T020|AB|718.10|ICD9CM|Loose body-unspec|Loose body-unspec +C0158082|T020|PT|718.11|ICD9CM|Loose body in joint, shoulder region|Loose body in joint, shoulder region +C0158082|T020|AB|718.11|ICD9CM|Loose body-shlder|Loose body-shlder +C0158083|T020|PT|718.12|ICD9CM|Loose body in joint, upper arm|Loose body in joint, upper arm +C0158083|T020|AB|718.12|ICD9CM|Loose body-up/arm|Loose body-up/arm +C0158084|T020|PT|718.13|ICD9CM|Loose body in joint, forearm|Loose body in joint, forearm +C0158084|T020|AB|718.13|ICD9CM|Loose body-forearm|Loose body-forearm +C0158085|T020|PT|718.14|ICD9CM|Loose body in joint, hand|Loose body in joint, hand +C0158085|T020|AB|718.14|ICD9CM|Loose body-hand|Loose body-hand +C0158086|T020|PT|718.15|ICD9CM|Loose body in joint, pelvic region and thigh|Loose body in joint, pelvic region and thigh +C0158086|T020|AB|718.15|ICD9CM|Loose body-pelvis|Loose body-pelvis +C0158087|T020|PT|718.17|ICD9CM|Loose body in joint, ankle and foot|Loose body in joint, ankle and foot +C0158087|T020|AB|718.17|ICD9CM|Loose body-ankle|Loose body-ankle +C0023988|T020|PT|718.18|ICD9CM|Loose body in joint, other specified sites|Loose body in joint, other specified sites +C0023988|T020|AB|718.18|ICD9CM|Loose body-joint NEC|Loose body-joint NEC +C0158088|T020|PT|718.19|ICD9CM|Loose body in joint, multiple sites|Loose body in joint, multiple sites +C0158088|T020|AB|718.19|ICD9CM|Loose body-mult joints|Loose body-mult joints +C0158090|T046|HT|718.2|ICD9CM|Pathological dislocation|Pathological dislocation +C0158090|T046|AB|718.20|ICD9CM|Pathol dislocat-unspec|Pathol dislocat-unspec +C0158090|T046|PT|718.20|ICD9CM|Pathological dislocation of joint, site unspecified|Pathological dislocation of joint, site unspecified +C0158091|T020|AB|718.21|ICD9CM|Pathol dislocat-shlder|Pathol dislocat-shlder +C0158091|T020|PT|718.21|ICD9CM|Pathological dislocation of joint, shoulder region|Pathological dislocation of joint, shoulder region +C0263805|T047|AB|718.22|ICD9CM|Pathol dislocat-up/arm|Pathol dislocat-up/arm +C0263805|T047|PT|718.22|ICD9CM|Pathological dislocation of joint, upper arm|Pathological dislocation of joint, upper arm +C0263806|T047|AB|718.23|ICD9CM|Pathol dislocat-forearm|Pathol dislocat-forearm +C0263806|T047|PT|718.23|ICD9CM|Pathological dislocation of joint, forearm|Pathological dislocation of joint, forearm +C0158094|T046|AB|718.24|ICD9CM|Pathol dislocat-hand|Pathol dislocat-hand +C0158094|T046|PT|718.24|ICD9CM|Pathological dislocation of joint, hand|Pathological dislocation of joint, hand +C0158095|T047|AB|718.25|ICD9CM|Pathol dislocat-pelvis|Pathol dislocat-pelvis +C0158095|T047|PT|718.25|ICD9CM|Pathological dislocation of joint, pelvic region and thigh|Pathological dislocation of joint, pelvic region and thigh +C0263809|T047|AB|718.26|ICD9CM|Pathol dislocat-l/leg|Pathol dislocat-l/leg +C0263809|T047|PT|718.26|ICD9CM|Pathological dislocation of joint, lower leg|Pathological dislocation of joint, lower leg +C0263810|T046|AB|718.27|ICD9CM|Pathol dislocat-ankle|Pathol dislocat-ankle +C0263810|T046|PT|718.27|ICD9CM|Pathological dislocation of joint, ankle and foot|Pathological dislocation of joint, ankle and foot +C0158098|T047|AB|718.28|ICD9CM|Pathol dislocat-jt NEC|Pathol dislocat-jt NEC +C0158098|T047|PT|718.28|ICD9CM|Pathological dislocation of joint, other specified sites|Pathological dislocation of joint, other specified sites +C0263812|T046|AB|718.29|ICD9CM|Pathol dislocat-mult jts|Pathol dislocat-mult jts +C0263812|T046|PT|718.29|ICD9CM|Pathological dislocation of joint, multiple sites|Pathological dislocation of joint, multiple sites +C0158100|T037|HT|718.3|ICD9CM|Recurrent dislocation of joint|Recurrent dislocation of joint +C0158100|T037|AB|718.30|ICD9CM|Recur dislocat-unspec|Recur dislocat-unspec +C0158100|T037|PT|718.30|ICD9CM|Recurrent dislocation of joint, site unspecified|Recurrent dislocation of joint, site unspecified +C0409415|T037|AB|718.31|ICD9CM|Recur dislocat-shlder|Recur dislocat-shlder +C0409415|T037|PT|718.31|ICD9CM|Recurrent dislocation of joint, shoulder region|Recurrent dislocation of joint, shoulder region +C0263814|T037|AB|718.32|ICD9CM|Recur dislocat-up/arm|Recur dislocat-up/arm +C0263814|T037|PT|718.32|ICD9CM|Recurrent dislocation of joint, upper arm|Recurrent dislocation of joint, upper arm +C0263815|T037|AB|718.33|ICD9CM|Recur dislocat-forearm|Recur dislocat-forearm +C0263815|T037|PT|718.33|ICD9CM|Recurrent dislocation of joint, forearm|Recurrent dislocation of joint, forearm +C0263816|T037|AB|718.34|ICD9CM|Recur dislocat-hand|Recur dislocat-hand +C0263816|T037|PT|718.34|ICD9CM|Recurrent dislocation of joint, hand|Recurrent dislocation of joint, hand +C0158105|T046|AB|718.35|ICD9CM|Recur dislocat-pelvis|Recur dislocat-pelvis +C0158105|T046|PT|718.35|ICD9CM|Recurrent dislocation of joint, pelvic region and thigh|Recurrent dislocation of joint, pelvic region and thigh +C0263819|T037|AB|718.36|ICD9CM|Recur dislocat-l/leg|Recur dislocat-l/leg +C0263819|T037|PT|718.36|ICD9CM|Recurrent dislocation of joint, lower leg|Recurrent dislocation of joint, lower leg +C0263820|T046|AB|718.37|ICD9CM|Recur dislocat-ankle|Recur dislocat-ankle +C0263820|T046|PT|718.37|ICD9CM|Recurrent dislocation of joint, ankle and foot|Recurrent dislocation of joint, ankle and foot +C0158108|T037|AB|718.38|ICD9CM|Recur dislocat-jt NEC|Recur dislocat-jt NEC +C0158108|T037|PT|718.38|ICD9CM|Recurrent dislocation of joint, other specified sites|Recurrent dislocation of joint, other specified sites +C0263822|T037|AB|718.39|ICD9CM|Recur dislocat-mult jts|Recur dislocat-mult jts +C0263822|T037|PT|718.39|ICD9CM|Recurrent dislocation of joint, multiple sites|Recurrent dislocation of joint, multiple sites +C0009918|T190|HT|718.4|ICD9CM|Contracture of joint|Contracture of joint +C0009918|T190|PT|718.40|ICD9CM|Contracture of joint, site unspecified|Contracture of joint, site unspecified +C0009918|T190|AB|718.40|ICD9CM|Jt contracture-unspec|Jt contracture-unspec +C0158110|T020|PT|718.41|ICD9CM|Contracture of joint, shoulder region|Contracture of joint, shoulder region +C0158110|T020|AB|718.41|ICD9CM|Jt contracture-shlder|Jt contracture-shlder +C0158111|T020|PT|718.42|ICD9CM|Contracture of joint, upper arm|Contracture of joint, upper arm +C0158111|T020|AB|718.42|ICD9CM|Jt contracture-up/arm|Jt contracture-up/arm +C0158112|T190|PT|718.43|ICD9CM|Contracture of joint, forearm|Contracture of joint, forearm +C0158112|T190|AB|718.43|ICD9CM|Jt contracture-forearm|Jt contracture-forearm +C0158113|T190|PT|718.44|ICD9CM|Contracture of joint, hand|Contracture of joint, hand +C0158113|T190|AB|718.44|ICD9CM|Jt contracture-hand|Jt contracture-hand +C1306306|T047|PT|718.45|ICD9CM|Contracture of joint, pelvic region and thigh|Contracture of joint, pelvic region and thigh +C1306306|T047|AB|718.45|ICD9CM|Jt contracture-pelvis|Jt contracture-pelvis +C0158115|T020|PT|718.46|ICD9CM|Contracture of joint, lower leg|Contracture of joint, lower leg +C0158115|T020|AB|718.46|ICD9CM|Jt contracture-l/leg|Jt contracture-l/leg +C1963664|T020|PT|718.47|ICD9CM|Contracture of joint, ankle and foot|Contracture of joint, ankle and foot +C1963664|T020|AB|718.47|ICD9CM|Jt contracture-ankle|Jt contracture-ankle +C0158117|T020|PT|718.48|ICD9CM|Contracture of joint, other specified sites|Contracture of joint, other specified sites +C0158117|T020|AB|718.48|ICD9CM|Jt contracture-jt NEC|Jt contracture-jt NEC +C0158118|T020|PT|718.49|ICD9CM|Contracture of joint, multiple sites|Contracture of joint, multiple sites +C0158118|T020|AB|718.49|ICD9CM|Jt contracture-mult jts|Jt contracture-mult jts +C0003090|T046|HT|718.5|ICD9CM|Ankylosis of joint|Ankylosis of joint +C0003090|T046|PT|718.50|ICD9CM|Ankylosis of joint, site unspecified|Ankylosis of joint, site unspecified +C0003090|T046|AB|718.50|ICD9CM|Ankylosis-unspec|Ankylosis-unspec +C0158119|T020|PT|718.51|ICD9CM|Ankylosis of joint, shoulder region|Ankylosis of joint, shoulder region +C0158119|T020|AB|718.51|ICD9CM|Ankylosis-shoulder|Ankylosis-shoulder +C0158120|T020|PT|718.52|ICD9CM|Ankylosis of joint, upper arm|Ankylosis of joint, upper arm +C0158120|T020|AB|718.52|ICD9CM|Ankylosis-upper/arm|Ankylosis-upper/arm +C0158121|T020|PT|718.53|ICD9CM|Ankylosis of joint, forearm|Ankylosis of joint, forearm +C0158121|T020|AB|718.53|ICD9CM|Ankylosis-forearm|Ankylosis-forearm +C0158122|T020|PT|718.54|ICD9CM|Ankylosis of joint, hand|Ankylosis of joint, hand +C0158122|T020|AB|718.54|ICD9CM|Ankylosis-hand|Ankylosis-hand +C0158123|T047|PT|718.55|ICD9CM|Ankylosis of joint, pelvic region and thigh|Ankylosis of joint, pelvic region and thigh +C0158123|T047|AB|718.55|ICD9CM|Ankylosis-pelvis|Ankylosis-pelvis +C0158124|T020|PT|718.56|ICD9CM|Ankylosis of joint, lower leg|Ankylosis of joint, lower leg +C0158124|T020|AB|718.56|ICD9CM|Ankylosis-lower/leg|Ankylosis-lower/leg +C1963544|T020|PT|718.57|ICD9CM|Ankylosis of joint, ankle and foot|Ankylosis of joint, ankle and foot +C1963544|T020|AB|718.57|ICD9CM|Ankylosis-ankle|Ankylosis-ankle +C0158126|T047|PT|718.58|ICD9CM|Ankylosis of joint, other specified sites|Ankylosis of joint, other specified sites +C0158126|T047|AB|718.58|ICD9CM|Ankylosis-joint NEC|Ankylosis-joint NEC +C0158127|T047|PT|718.59|ICD9CM|Ankylosis of joint, multiple sites|Ankylosis of joint, multiple sites +C0158127|T047|AB|718.59|ICD9CM|Ankylosis-mult joints|Ankylosis-mult joints +C0158128|T047|HT|718.6|ICD9CM|Unspecified intrapelvic protrusion of acetabulum|Unspecified intrapelvic protrusion of acetabulum +C0158129|T047|AB|718.65|ICD9CM|Protrusio acetabuli NOS|Protrusio acetabuli NOS +C0158129|T047|PT|718.65|ICD9CM|Unspecified intrapelvic protrusion of acetabulum, pelvic region and thigh|Unspecified intrapelvic protrusion of acetabulum, pelvic region and thigh +C1145757|T047|HT|718.7|ICD9CM|Developmental dislocation of joint|Developmental dislocation of joint +C1176349|T047|AB|718.70|ICD9CM|Dev dislocat jt site NOS|Dev dislocat jt site NOS +C1176349|T047|PT|718.70|ICD9CM|Developmental dislocation of joint, site unspecified|Developmental dislocation of joint, site unspecified +C1176350|T047|AB|718.71|ICD9CM|Dev dislocat joint-shldr|Dev dislocat joint-shldr +C1176350|T047|PT|718.71|ICD9CM|Developmental dislocation of joint, shoulder region|Developmental dislocation of joint, shoulder region +C1176351|T047|AB|718.72|ICD9CM|Dev dislocat jt-up/arm|Dev dislocat jt-up/arm +C1176351|T047|PT|718.72|ICD9CM|Developmental dislocation of joint, upper arm|Developmental dislocation of joint, upper arm +C1176352|T047|AB|718.73|ICD9CM|Dev dislocat jt-forearm|Dev dislocat jt-forearm +C1176352|T047|PT|718.73|ICD9CM|Developmental dislocation of joint, forearm|Developmental dislocation of joint, forearm +C1176353|T047|AB|718.74|ICD9CM|Dev dislocat joint-hand|Dev dislocat joint-hand +C1176353|T047|PT|718.74|ICD9CM|Developmental dislocation of joint, hand|Developmental dislocation of joint, hand +C1176354|T047|AB|718.75|ICD9CM|Dev dis jt-pelvic/thigh|Dev dis jt-pelvic/thigh +C1176354|T047|PT|718.75|ICD9CM|Developmental dislocation of joint, pelvic region and thigh|Developmental dislocation of joint, pelvic region and thigh +C1176355|T047|AB|718.76|ICD9CM|Dev disloc jt-lower leg|Dev disloc jt-lower leg +C1176355|T047|PT|718.76|ICD9CM|Developmental dislocation of joint, lower leg|Developmental dislocation of joint, lower leg +C1176356|T047|AB|718.77|ICD9CM|Dev disloc jt-ankle/foot|Dev disloc jt-ankle/foot +C1176356|T047|PT|718.77|ICD9CM|Developmental dislocation of joint, ankle and foot|Developmental dislocation of joint, ankle and foot +C1176357|T047|AB|718.78|ICD9CM|Dev disloc jt-site NEC|Dev disloc jt-site NEC +C1176357|T047|PT|718.78|ICD9CM|Developmental dislocation of joint, other specified sites|Developmental dislocation of joint, other specified sites +C1176358|T047|AB|718.79|ICD9CM|Dev disloc jt-mult sites|Dev disloc jt-mult sites +C1176358|T047|PT|718.79|ICD9CM|Developmental dislocation of joint, multiple sites|Developmental dislocation of joint, multiple sites +C0869063|T047|HT|718.8|ICD9CM|Other joint derangement, not elsewhere classified|Other joint derangement, not elsewhere classified +C0869063|T047|AB|718.80|ICD9CM|Jt derangmnt NEC-unsp jt|Jt derangmnt NEC-unsp jt +C0869063|T047|PT|718.80|ICD9CM|Other joint derangement, not elsewhere classified, site unspecified|Other joint derangement, not elsewhere classified, site unspecified +C0869296|T190|AB|718.81|ICD9CM|Jt derangment NEC-shlder|Jt derangment NEC-shlder +C0869296|T190|PT|718.81|ICD9CM|Other joint derangement, not elsewhere classified, shoulder region|Other joint derangement, not elsewhere classified, shoulder region +C0869298|T190|AB|718.82|ICD9CM|Jt derangment NEC-up/arm|Jt derangment NEC-up/arm +C0869298|T190|PT|718.82|ICD9CM|Other joint derangement, not elsewhere classified, upper arm|Other joint derangement, not elsewhere classified, upper arm +C0869300|T190|AB|718.83|ICD9CM|Jt derangmnt NEC-forearm|Jt derangmnt NEC-forearm +C0869300|T190|PT|718.83|ICD9CM|Other joint derangement, not elsewhere classified, forearm|Other joint derangement, not elsewhere classified, forearm +C0869426|T190|AB|718.84|ICD9CM|Jt derangement NEC-hand|Jt derangement NEC-hand +C0869426|T190|PT|718.84|ICD9CM|Other joint derangement, not elsewhere classified, hand|Other joint derangement, not elsewhere classified, hand +C0869428|T190|AB|718.85|ICD9CM|Jt derangment NEC-pelvis|Jt derangment NEC-pelvis +C0869428|T190|PT|718.85|ICD9CM|Other joint derangement, not elsewhere classified, pelvic region and thigh|Other joint derangement, not elsewhere classified, pelvic region and thigh +C0869430|T190|AB|718.86|ICD9CM|Jt derangement NEC-l/leg|Jt derangement NEC-l/leg +C0869430|T190|PT|718.86|ICD9CM|Other joint derangement, not elsewhere classified, lower leg|Other joint derangement, not elsewhere classified, lower leg +C0869432|T190|AB|718.87|ICD9CM|Jt derangement NEC-ankle|Jt derangement NEC-ankle +C0869432|T190|PT|718.87|ICD9CM|Other joint derangement, not elsewhere classified, ankle and foot|Other joint derangement, not elsewhere classified, ankle and foot +C0869434|T190|AB|718.88|ICD9CM|Jt derangment NEC-oth jt|Jt derangment NEC-oth jt +C0869434|T190|PT|718.88|ICD9CM|Other joint derangement, not elsewhere classified, other specified sites|Other joint derangement, not elsewhere classified, other specified sites +C0869436|T190|AB|718.89|ICD9CM|Jt derangement NEC-mult|Jt derangement NEC-mult +C0869436|T190|PT|718.89|ICD9CM|Other joint derangement, not elsewhere classified, multiple sites|Other joint derangement, not elsewhere classified, multiple sites +C0158140|T047|HT|718.9|ICD9CM|Unspecified derangement of joint|Unspecified derangement of joint +C0158140|T047|AB|718.90|ICD9CM|Jt derangmnt NOS-unsp jt|Jt derangmnt NOS-unsp jt +C0158140|T047|PT|718.90|ICD9CM|Unspecified derangement of joint, site unspecified|Unspecified derangement of joint, site unspecified +C0409278|T190|AB|718.91|ICD9CM|Jt derangment NOS-shlder|Jt derangment NOS-shlder +C0409278|T190|PT|718.91|ICD9CM|Unspecified derangement of joint, shoulder region|Unspecified derangement of joint, shoulder region +C0409277|T190|AB|718.92|ICD9CM|Jt derangment NOS-up/arm|Jt derangment NOS-up/arm +C0409277|T190|PT|718.92|ICD9CM|Unspecified derangement of joint, upper arm|Unspecified derangement of joint, upper arm +C0409276|T190|AB|718.93|ICD9CM|Jt derangmnt NOS-forearm|Jt derangmnt NOS-forearm +C0409276|T190|PT|718.93|ICD9CM|Unspecified derangement of joint, forearm|Unspecified derangement of joint, forearm +C0409275|T047|AB|718.94|ICD9CM|Jt derangement NOS-hand|Jt derangement NOS-hand +C0409275|T047|PT|718.94|ICD9CM|Unspecified derangement of joint, hand|Unspecified derangement of joint, hand +C0409274|T190|AB|718.95|ICD9CM|Jt derangment NOS-pelvis|Jt derangment NOS-pelvis +C0409274|T190|PT|718.95|ICD9CM|Unspecified derangement of joint, pelvic region and thigh|Unspecified derangement of joint, pelvic region and thigh +C0409273|T047|AB|718.97|ICD9CM|Jt derangement NOS-ankle|Jt derangement NOS-ankle +C0409273|T047|PT|718.97|ICD9CM|Unspecified derangement of joint, ankle and foot|Unspecified derangement of joint, ankle and foot +C0409272|T190|AB|718.98|ICD9CM|Jt derangment NOS-oth jt|Jt derangment NOS-oth jt +C0409272|T190|PT|718.98|ICD9CM|Unspecified derangement of joint, other specified sites|Unspecified derangement of joint, other specified sites +C0409271|T047|AB|718.99|ICD9CM|Jt derangement NOS-mult|Jt derangement NOS-mult +C0409271|T047|PT|718.99|ICD9CM|Unspecified derangement of joint, multiple sites|Unspecified derangement of joint, multiple sites +C1442831|T047|HT|719|ICD9CM|Other and unspecified disorders of joint|Other and unspecified disorders of joint +C1253936|T046|HT|719.0|ICD9CM|Effusion of joint|Effusion of joint +C1253936|T046|PT|719.00|ICD9CM|Effusion of joint, site unspecified|Effusion of joint, site unspecified +C1253936|T046|AB|719.00|ICD9CM|Joint effusion-unspec|Joint effusion-unspec +C0158150|T046|PT|719.01|ICD9CM|Effusion of joint, shoulder region|Effusion of joint, shoulder region +C0158150|T046|AB|719.01|ICD9CM|Joint effusion-shlder|Joint effusion-shlder +C0158151|T046|PT|719.02|ICD9CM|Effusion of joint, upper arm|Effusion of joint, upper arm +C0158151|T046|AB|719.02|ICD9CM|Joint effusion-up/arm|Joint effusion-up/arm +C0158152|T046|PT|719.03|ICD9CM|Effusion of joint, forearm|Effusion of joint, forearm +C0158152|T046|AB|719.03|ICD9CM|Joint effusion-forearm|Joint effusion-forearm +C0158153|T046|PT|719.04|ICD9CM|Effusion of joint, hand|Effusion of joint, hand +C0158153|T046|AB|719.04|ICD9CM|Joint effusion-hand|Joint effusion-hand +C0554588|T046|PT|719.05|ICD9CM|Effusion of joint, pelvic region and thigh|Effusion of joint, pelvic region and thigh +C0554588|T046|AB|719.05|ICD9CM|Joint effusion-pelvis|Joint effusion-pelvis +C0158155|T046|PT|719.06|ICD9CM|Effusion of joint, lower leg|Effusion of joint, lower leg +C0158155|T046|AB|719.06|ICD9CM|Joint effusion-l/leg|Joint effusion-l/leg +C0158156|T046|PT|719.07|ICD9CM|Effusion of joint, ankle and foot|Effusion of joint, ankle and foot +C0158156|T046|AB|719.07|ICD9CM|Joint effusion-ankle|Joint effusion-ankle +C0158157|T184|PT|719.08|ICD9CM|Effusion of joint, other specified sites|Effusion of joint, other specified sites +C0158157|T184|AB|719.08|ICD9CM|Joint effusion-jt NEC|Joint effusion-jt NEC +C0158158|T046|PT|719.09|ICD9CM|Effusion of joint, multiple sites|Effusion of joint, multiple sites +C0158158|T046|AB|719.09|ICD9CM|Joint effusion-mult jts|Joint effusion-mult jts +C0018924|T046|HT|719.1|ICD9CM|Hemarthrosis|Hemarthrosis +C0018924|T046|AB|719.10|ICD9CM|Hemarthrosis-unspec|Hemarthrosis-unspec +C0018924|T046|PT|719.10|ICD9CM|Hemarthrosis, site unspecified|Hemarthrosis, site unspecified +C0158159|T047|AB|719.11|ICD9CM|Hemarthrosis-shlder|Hemarthrosis-shlder +C0158159|T047|PT|719.11|ICD9CM|Hemarthrosis, shoulder region|Hemarthrosis, shoulder region +C0263836|T047|AB|719.12|ICD9CM|Hemarthrosis-up/arm|Hemarthrosis-up/arm +C0263836|T047|PT|719.12|ICD9CM|Hemarthrosis, upper arm|Hemarthrosis, upper arm +C0263837|T047|AB|719.13|ICD9CM|Hemarthrosis-forearm|Hemarthrosis-forearm +C0263837|T047|PT|719.13|ICD9CM|Hemarthrosis, forearm|Hemarthrosis, forearm +C0158162|T047|AB|719.14|ICD9CM|Hemarthrosis-hand|Hemarthrosis-hand +C0158162|T047|PT|719.14|ICD9CM|Hemarthrosis, hand|Hemarthrosis, hand +C0263838|T046|AB|719.15|ICD9CM|Hemarthrosis-pelvis|Hemarthrosis-pelvis +C0263838|T046|PT|719.15|ICD9CM|Hemarthrosis, pelvic region and thigh|Hemarthrosis, pelvic region and thigh +C0263840|T047|AB|719.16|ICD9CM|Hemarthrosis-l/leg|Hemarthrosis-l/leg +C0263840|T047|PT|719.16|ICD9CM|Hemarthrosis, lower leg|Hemarthrosis, lower leg +C0263841|T033|AB|719.17|ICD9CM|Hemarthrosis-ankle|Hemarthrosis-ankle +C0263841|T033|PT|719.17|ICD9CM|Hemarthrosis, ankle and foot|Hemarthrosis, ankle and foot +C0473719|T046|AB|719.18|ICD9CM|Hemarthrosis-jt NEC|Hemarthrosis-jt NEC +C0473719|T046|PT|719.18|ICD9CM|Hemarthrosis, other specified sites|Hemarthrosis, other specified sites +C0158167|T046|AB|719.19|ICD9CM|Hemarthrosis-mult jts|Hemarthrosis-mult jts +C0158167|T046|PT|719.19|ICD9CM|Hemarthrosis, multiple sites|Hemarthrosis, multiple sites +C0158168|T047|HT|719.2|ICD9CM|Villonodular synovitis|Villonodular synovitis +C0158168|T047|AB|719.20|ICD9CM|Villonod synovit-unspec|Villonod synovit-unspec +C0158168|T047|PT|719.20|ICD9CM|Villonodular synovitis, site unspecified|Villonodular synovitis, site unspecified +C0158169|T047|AB|719.21|ICD9CM|Villonod synovit-shlder|Villonod synovit-shlder +C0158169|T047|PT|719.21|ICD9CM|Villonodular synovitis, shoulder region|Villonodular synovitis, shoulder region +C0409787|T047|AB|719.22|ICD9CM|Villonod synovit-up/arm|Villonod synovit-up/arm +C0409787|T047|PT|719.22|ICD9CM|Villonodular synovitis, upper arm|Villonodular synovitis, upper arm +C0409784|T047|AB|719.23|ICD9CM|Villonod synovit-forearm|Villonod synovit-forearm +C0409784|T047|PT|719.23|ICD9CM|Villonodular synovitis, forearm|Villonodular synovitis, forearm +C0409780|T191|AB|719.24|ICD9CM|Villonod synovit-hand|Villonod synovit-hand +C0409780|T191|PT|719.24|ICD9CM|Villonodular synovitis, hand|Villonodular synovitis, hand +C0409775|T047|AB|719.25|ICD9CM|Villonod synovit-pelvis|Villonod synovit-pelvis +C0409775|T047|PT|719.25|ICD9CM|Villonodular synovitis, pelvic region and thigh|Villonodular synovitis, pelvic region and thigh +C0409774|T047|AB|719.26|ICD9CM|Villonod synovit-l/leg|Villonod synovit-l/leg +C0409774|T047|PT|719.26|ICD9CM|Villonodular synovitis, lower leg|Villonodular synovitis, lower leg +C0158175|T047|AB|719.27|ICD9CM|Villonod synovit-ankle|Villonod synovit-ankle +C0158175|T047|PT|719.27|ICD9CM|Villonodular synovitis, ankle and foot|Villonodular synovitis, ankle and foot +C0409765|T047|AB|719.28|ICD9CM|Villonod synovit-jt NEC|Villonod synovit-jt NEC +C0409765|T047|PT|719.28|ICD9CM|Villonodular synovitis, other specified sites|Villonodular synovitis, other specified sites +C0837909|T191|AB|719.29|ICD9CM|Villonod synovit-mult jt|Villonod synovit-mult jt +C0837909|T191|PT|719.29|ICD9CM|Villonodular synovitis, multiple sites|Villonodular synovitis, multiple sites +C0085574|T047|HT|719.3|ICD9CM|Palindromic rheumatism|Palindromic rheumatism +C0085574|T047|AB|719.30|ICD9CM|Palindrom rheum-unspec|Palindrom rheum-unspec +C0085574|T047|PT|719.30|ICD9CM|Palindromic rheumatism, site unspecified|Palindromic rheumatism, site unspecified +C0158178|T046|AB|719.31|ICD9CM|Palindrom rheum-shlder|Palindrom rheum-shlder +C0158178|T046|PT|719.31|ICD9CM|Palindromic rheumatism, shoulder region|Palindromic rheumatism, shoulder region +C0409663|T047|AB|719.32|ICD9CM|Palindrom rheum-up/arm|Palindrom rheum-up/arm +C0409663|T047|PT|719.32|ICD9CM|Palindromic rheumatism, upper arm|Palindromic rheumatism, upper arm +C0409662|T047|AB|719.33|ICD9CM|Palindrom rheum-forearm|Palindrom rheum-forearm +C0409662|T047|PT|719.33|ICD9CM|Palindromic rheumatism, forearm|Palindromic rheumatism, forearm +C0158181|T047|AB|719.34|ICD9CM|Palindrom rheum-hand|Palindrom rheum-hand +C0158181|T047|PT|719.34|ICD9CM|Palindromic rheumatism, hand|Palindromic rheumatism, hand +C0409661|T047|AB|719.35|ICD9CM|Palindrom rheum-pelvis|Palindrom rheum-pelvis +C0409661|T047|PT|719.35|ICD9CM|Palindromic rheumatism, pelvic region and thigh|Palindromic rheumatism, pelvic region and thigh +C0409660|T047|AB|719.36|ICD9CM|Palindrom rheum-l/leg|Palindrom rheum-l/leg +C0409660|T047|PT|719.36|ICD9CM|Palindromic rheumatism, lower leg|Palindromic rheumatism, lower leg +C0409659|T047|AB|719.37|ICD9CM|Palindrom rheum-ankle|Palindrom rheum-ankle +C0409659|T047|PT|719.37|ICD9CM|Palindromic rheumatism, ankle and foot|Palindromic rheumatism, ankle and foot +C0409658|T047|AB|719.38|ICD9CM|Palindrom rheum-jt NEC|Palindrom rheum-jt NEC +C0409658|T047|PT|719.38|ICD9CM|Palindromic rheumatism, other specified sites|Palindromic rheumatism, other specified sites +C0158186|T047|AB|719.39|ICD9CM|Palindrom rheum-mult jts|Palindrom rheum-mult jts +C0158186|T047|PT|719.39|ICD9CM|Palindromic rheumatism, multiple sites|Palindromic rheumatism, multiple sites +C0003862|T184|HT|719.4|ICD9CM|Pain in joint|Pain in joint +C0003862|T184|AB|719.40|ICD9CM|Joint pain-unspec|Joint pain-unspec +C0003862|T184|PT|719.40|ICD9CM|Pain in joint, site unspecified|Pain in joint, site unspecified +C0838222|T184|AB|719.41|ICD9CM|Joint pain-shlder|Joint pain-shlder +C0838222|T184|PT|719.41|ICD9CM|Pain in joint, shoulder region|Pain in joint, shoulder region +C0838223|T184|AB|719.42|ICD9CM|Joint pain-up/arm|Joint pain-up/arm +C0838223|T184|PT|719.42|ICD9CM|Pain in joint, upper arm|Pain in joint, upper arm +C0838224|T184|AB|719.43|ICD9CM|Joint pain-forearm|Joint pain-forearm +C0838224|T184|PT|719.43|ICD9CM|Pain in joint, forearm|Pain in joint, forearm +C0423665|T184|AB|719.44|ICD9CM|Joint pain-hand|Joint pain-hand +C0423665|T184|PT|719.44|ICD9CM|Pain in joint, hand|Pain in joint, hand +C0838226|T184|AB|719.45|ICD9CM|Joint pain-pelvis|Joint pain-pelvis +C0838226|T184|PT|719.45|ICD9CM|Pain in joint, pelvic region and thigh|Pain in joint, pelvic region and thigh +C0838227|T184|AB|719.46|ICD9CM|Joint pain-l/leg|Joint pain-l/leg +C0838227|T184|PT|719.46|ICD9CM|Pain in joint, lower leg|Pain in joint, lower leg +C2919460|T184|AB|719.47|ICD9CM|Joint pain-ankle|Joint pain-ankle +C2919460|T184|PT|719.47|ICD9CM|Pain in joint, ankle and foot|Pain in joint, ankle and foot +C0158194|T184|AB|719.48|ICD9CM|Joint pain-jt NEC|Joint pain-jt NEC +C0158194|T184|PT|719.48|ICD9CM|Pain in joint, other specified sites|Pain in joint, other specified sites +C0162296|T047|AB|719.49|ICD9CM|Joint pain-mult jts|Joint pain-mult jts +C0162296|T047|PT|719.49|ICD9CM|Pain in joint, multiple sites|Pain in joint, multiple sites +C0869450|T184|HT|719.5|ICD9CM|Stiffness of joint, not elsewhere classified|Stiffness of joint, not elsewhere classified +C0158195|T047|AB|719.50|ICD9CM|Jt stiffness NEC-unspec|Jt stiffness NEC-unspec +C0158195|T047|PT|719.50|ICD9CM|Stiffness of joint, not elsewhere classified, site unspecified|Stiffness of joint, not elsewhere classified, site unspecified +C0158196|T047|AB|719.51|ICD9CM|Jt stiffness NEC-shlder|Jt stiffness NEC-shlder +C0158196|T047|PT|719.51|ICD9CM|Stiffness of joint, not elsewhere classified, shoulder region|Stiffness of joint, not elsewhere classified, shoulder region +C0158197|T047|AB|719.52|ICD9CM|Jt stiffness NEC-up/arm|Jt stiffness NEC-up/arm +C0158197|T047|PT|719.52|ICD9CM|Stiffness of joint, not elsewhere classified, upper arm|Stiffness of joint, not elsewhere classified, upper arm +C0158198|T047|AB|719.53|ICD9CM|Jt stiffnes NEC-forearm|Jt stiffnes NEC-forearm +C0158198|T047|PT|719.53|ICD9CM|Stiffness of joint, not elsewhere classified, forearm|Stiffness of joint, not elsewhere classified, forearm +C0158199|T047|AB|719.54|ICD9CM|Jt stiffness NEC-hand|Jt stiffness NEC-hand +C0158199|T047|PT|719.54|ICD9CM|Stiffness of joint, not elsewhere classified, hand|Stiffness of joint, not elsewhere classified, hand +C0158200|T047|AB|719.55|ICD9CM|Jt stiffness NEC-pelvis|Jt stiffness NEC-pelvis +C0158200|T047|PT|719.55|ICD9CM|Stiffness of joint, not elsewhere classified, pelvic region and thigh|Stiffness of joint, not elsewhere classified, pelvic region and thigh +C0158201|T047|AB|719.56|ICD9CM|Jt stiffness NEC-l/leg|Jt stiffness NEC-l/leg +C0158201|T047|PT|719.56|ICD9CM|Stiffness of joint, not elsewhere classified, lower leg|Stiffness of joint, not elsewhere classified, lower leg +C0158202|T047|AB|719.57|ICD9CM|Jt stiffness NEC-ankle|Jt stiffness NEC-ankle +C0158202|T047|PT|719.57|ICD9CM|Stiffness of joint, not elsewhere classified, ankle and foot|Stiffness of joint, not elsewhere classified, ankle and foot +C0158203|T047|AB|719.58|ICD9CM|Jt stiffness NEC-oth jt|Jt stiffness NEC-oth jt +C0158203|T047|PT|719.58|ICD9CM|Stiffness of joint, not elsewhere classified, other specified sites|Stiffness of joint, not elsewhere classified, other specified sites +C0158204|T047|AB|719.59|ICD9CM|Jt stiffness NEC-mult jt|Jt stiffness NEC-mult jt +C0158204|T047|PT|719.59|ICD9CM|Stiffness of joint, not elsewhere classified, multiple sites|Stiffness of joint, not elsewhere classified, multiple sites +C0158205|T184|HT|719.6|ICD9CM|Other symptoms referable to joint|Other symptoms referable to joint +C0375492|T184|AB|719.60|ICD9CM|Joint sympt NEC-unsp jt|Joint sympt NEC-unsp jt +C0375492|T184|PT|719.60|ICD9CM|Other symptoms referable to joint, site unspecified|Other symptoms referable to joint, site unspecified +C0158206|T184|AB|719.61|ICD9CM|Joint symptom NEC-shlder|Joint symptom NEC-shlder +C0158206|T184|PT|719.61|ICD9CM|Other symptoms referable to joint, shoulder region|Other symptoms referable to joint, shoulder region +C0158207|T184|AB|719.62|ICD9CM|Joint symptom NEC-up/arm|Joint symptom NEC-up/arm +C0158207|T184|PT|719.62|ICD9CM|Other symptoms referable to joint, upper arm|Other symptoms referable to joint, upper arm +C0158208|T184|AB|719.63|ICD9CM|Joint sympt NEC-forearm|Joint sympt NEC-forearm +C0158208|T184|PT|719.63|ICD9CM|Other symptoms referable to joint, forearm|Other symptoms referable to joint, forearm +C0158209|T184|AB|719.64|ICD9CM|Joint symptom NEC-hand|Joint symptom NEC-hand +C0158209|T184|PT|719.64|ICD9CM|Other symptoms referable to joint, hand|Other symptoms referable to joint, hand +C0158210|T184|AB|719.65|ICD9CM|Joint symptom NEC-pelvis|Joint symptom NEC-pelvis +C0158210|T184|PT|719.65|ICD9CM|Other symptoms referable to joint, pelvic region and thigh|Other symptoms referable to joint, pelvic region and thigh +C0158211|T184|AB|719.66|ICD9CM|Joint symptom NEC-l/leg|Joint symptom NEC-l/leg +C0158211|T184|PT|719.66|ICD9CM|Other symptoms referable to joint, lower leg|Other symptoms referable to joint, lower leg +C0158212|T184|AB|719.67|ICD9CM|Joint symptom NEC-ankle|Joint symptom NEC-ankle +C0158212|T184|PT|719.67|ICD9CM|Other symptoms referable to joint, ankle and foot|Other symptoms referable to joint, ankle and foot +C0158213|T184|AB|719.68|ICD9CM|Joint symptom NEC-oth jt|Joint symptom NEC-oth jt +C0158213|T184|PT|719.68|ICD9CM|Other symptoms referable to joint, other specified sites|Other symptoms referable to joint, other specified sites +C0158214|T184|AB|719.69|ICD9CM|Joint sympt NEC-mult jts|Joint sympt NEC-mult jts +C0158214|T184|PT|719.69|ICD9CM|Other symptoms referable to joint, multiple sites|Other symptoms referable to joint, multiple sites +C0311394|T033|AB|719.7|ICD9CM|Difficulty in walking|Difficulty in walking +C0311394|T033|PT|719.7|ICD9CM|Difficulty in walking|Difficulty in walking +C0029746|T047|HT|719.8|ICD9CM|Other specified disorders of joint|Other specified disorders of joint +C0869062|T047|AB|719.80|ICD9CM|Joint dis NEC-unspec|Joint dis NEC-unspec +C0869062|T047|PT|719.80|ICD9CM|Other specified disorders of joint, site unspecified|Other specified disorders of joint, site unspecified +C0158222|T047|AB|719.81|ICD9CM|Joint dis NEC-shlder|Joint dis NEC-shlder +C0158222|T047|PT|719.81|ICD9CM|Other specified disorders of joint, shoulder region|Other specified disorders of joint, shoulder region +C0158223|T047|AB|719.82|ICD9CM|Joint dis NEC-up/arm|Joint dis NEC-up/arm +C0158223|T047|PT|719.82|ICD9CM|Other specified disorders of joint, upper arm|Other specified disorders of joint, upper arm +C0158224|T047|AB|719.83|ICD9CM|Joint dis NEC-forearm|Joint dis NEC-forearm +C0158224|T047|PT|719.83|ICD9CM|Other specified disorders of joint, forearm|Other specified disorders of joint, forearm +C0158225|T047|AB|719.84|ICD9CM|Joint dis NEC-hand|Joint dis NEC-hand +C0158225|T047|PT|719.84|ICD9CM|Other specified disorders of joint, hand|Other specified disorders of joint, hand +C0158226|T047|AB|719.85|ICD9CM|Joint dis NEC-pelvis|Joint dis NEC-pelvis +C0158226|T047|PT|719.85|ICD9CM|Other specified disorders of joint, pelvic region and thigh|Other specified disorders of joint, pelvic region and thigh +C0158227|T047|AB|719.86|ICD9CM|Joint dis NEC-l/leg|Joint dis NEC-l/leg +C0158227|T047|PT|719.86|ICD9CM|Other specified disorders of joint, lower leg|Other specified disorders of joint, lower leg +C0158228|T047|AB|719.87|ICD9CM|Joint dis NEC-ankle|Joint dis NEC-ankle +C0158228|T047|PT|719.87|ICD9CM|Other specified disorders of joint, ankle and foot|Other specified disorders of joint, ankle and foot +C0158229|T047|AB|719.88|ICD9CM|Joint dis NEC-oth jt|Joint dis NEC-oth jt +C0158229|T047|PT|719.88|ICD9CM|Other specified disorders of joint, other specified sites|Other specified disorders of joint, other specified sites +C0158230|T047|AB|719.89|ICD9CM|Joint dis NEC-mult jts|Joint dis NEC-mult jts +C0158230|T047|PT|719.89|ICD9CM|Other specified disorders of joint, multiple sites|Other specified disorders of joint, multiple sites +C0022408|T047|HT|719.9|ICD9CM|Unspecified disorder of joint|Unspecified disorder of joint +C0022408|T047|AB|719.90|ICD9CM|Joint dis NOS-unspec jt|Joint dis NOS-unspec jt +C0022408|T047|PT|719.90|ICD9CM|Unspecified disorder of joint, site unspecified|Unspecified disorder of joint, site unspecified +C0158231|T047|AB|719.91|ICD9CM|Joint dis NOS-shlder|Joint dis NOS-shlder +C0158231|T047|PT|719.91|ICD9CM|Unspecified disorder of joint, shoulder region|Unspecified disorder of joint, shoulder region +C0158232|T047|AB|719.92|ICD9CM|Joint dis NOS-up/arm|Joint dis NOS-up/arm +C0158232|T047|PT|719.92|ICD9CM|Unspecified disorder of joint, upper arm|Unspecified disorder of joint, upper arm +C0158233|T047|AB|719.93|ICD9CM|Joint dis NOS-forearm|Joint dis NOS-forearm +C0158233|T047|PT|719.93|ICD9CM|Unspecified disorder of joint, forearm|Unspecified disorder of joint, forearm +C0158234|T047|AB|719.94|ICD9CM|Joint dis NOS-hand|Joint dis NOS-hand +C0158234|T047|PT|719.94|ICD9CM|Unspecified disorder of joint, hand|Unspecified disorder of joint, hand +C0158235|T047|AB|719.95|ICD9CM|Joint dis NOS-pelvis|Joint dis NOS-pelvis +C0158235|T047|PT|719.95|ICD9CM|Unspecified disorder of joint, pelvic region and thigh|Unspecified disorder of joint, pelvic region and thigh +C0158236|T047|AB|719.96|ICD9CM|Joint dis NOS-l/leg|Joint dis NOS-l/leg +C0158236|T047|PT|719.96|ICD9CM|Unspecified disorder of joint, lower leg|Unspecified disorder of joint, lower leg +C0409264|T047|AB|719.97|ICD9CM|Joint dis NOS-ankle|Joint dis NOS-ankle +C0409264|T047|PT|719.97|ICD9CM|Unspecified disorder of joint, ankle and foot|Unspecified disorder of joint, ankle and foot +C0489969|T047|AB|719.98|ICD9CM|Joint dis NOS-oth jt|Joint dis NOS-oth jt +C0489969|T047|PT|719.98|ICD9CM|Unspecified disorder of joint, other specified sites|Unspecified disorder of joint, other specified sites +C0158239|T047|AB|719.99|ICD9CM|Joint dis NOS-mult jts|Joint dis NOS-mult jts +C0158239|T047|PT|719.99|ICD9CM|Unspecified disorder of joint, multiple sites|Unspecified disorder of joint, multiple sites +C0003089|T047|HT|720|ICD9CM|Ankylosing spondylitis and other inflammatory spondylopathies|Ankylosing spondylitis and other inflammatory spondylopathies +C3241938|T047|HT|720-724.99|ICD9CM|DORSOPATHIES|DORSOPATHIES +C0038013|T047|AB|720.0|ICD9CM|Ankylosing spondylitis|Ankylosing spondylitis +C0038013|T047|PT|720.0|ICD9CM|Ankylosing spondylitis|Ankylosing spondylitis +C0152090|T047|AB|720.1|ICD9CM|Spinal enthesopathy|Spinal enthesopathy +C0152090|T047|PT|720.1|ICD9CM|Spinal enthesopathy|Spinal enthesopathy +C0868862|T047|AB|720.2|ICD9CM|Sacroiliitis NEC|Sacroiliitis NEC +C0868862|T047|PT|720.2|ICD9CM|Sacroiliitis, not elsewhere classified|Sacroiliitis, not elsewhere classified +C0029644|T047|HT|720.8|ICD9CM|Other inflammatory spondylopathies|Other inflammatory spondylopathies +C0021396|T047|PT|720.81|ICD9CM|Inflammatory spondylopathies in diseases classified elsewhere|Inflammatory spondylopathies in diseases classified elsewhere +C0021396|T047|AB|720.81|ICD9CM|Spondylopathy in oth dis|Spondylopathy in oth dis +C0029644|T047|AB|720.89|ICD9CM|Inflam spondylopathy NEC|Inflam spondylopathy NEC +C0029644|T047|PT|720.89|ICD9CM|Other inflammatory spondylopathies|Other inflammatory spondylopathies +C0038012|T047|AB|720.9|ICD9CM|Inflam spondylopathy NOS|Inflam spondylopathy NOS +C0038012|T047|PT|720.9|ICD9CM|Unspecified inflammatory spondylopathy|Unspecified inflammatory spondylopathy +C0158240|T047|HT|721|ICD9CM|Spondylosis and allied disorders|Spondylosis and allied disorders +C0158241|T047|AB|721.0|ICD9CM|Cervical spondylosis|Cervical spondylosis +C0158241|T047|PT|721.0|ICD9CM|Cervical spondylosis without myelopathy|Cervical spondylosis without myelopathy +C0158242|T047|AB|721.1|ICD9CM|Cerv spondyl w myelopath|Cerv spondyl w myelopath +C0158242|T047|PT|721.1|ICD9CM|Cervical spondylosis with myelopathy|Cervical spondylosis with myelopathy +C0158243|T047|AB|721.2|ICD9CM|Thoracic spondylosis|Thoracic spondylosis +C0158243|T047|PT|721.2|ICD9CM|Thoracic spondylosis without myelopathy|Thoracic spondylosis without myelopathy +C0158244|T047|AB|721.3|ICD9CM|Lumbosacral spondylosis|Lumbosacral spondylosis +C0158244|T047|PT|721.3|ICD9CM|Lumbosacral spondylosis without myelopathy|Lumbosacral spondylosis without myelopathy +C0158245|T047|HT|721.4|ICD9CM|Thoracic or lumbar spondylosis with myelopathy|Thoracic or lumbar spondylosis with myelopathy +C0158246|T047|AB|721.41|ICD9CM|Spond compr thor sp cord|Spond compr thor sp cord +C0158246|T047|PT|721.41|ICD9CM|Spondylosis with myelopathy, thoracic region|Spondylosis with myelopathy, thoracic region +C0158247|T047|AB|721.42|ICD9CM|Spond compr lumb sp cord|Spond compr lumb sp cord +C0158247|T047|PT|721.42|ICD9CM|Spondylosis with myelopathy, lumbar region|Spondylosis with myelopathy, lumbar region +C0158248|T047|AB|721.5|ICD9CM|Kissing spine|Kissing spine +C0158248|T047|PT|721.5|ICD9CM|Kissing spine|Kissing spine +C0020498|T047|AB|721.6|ICD9CM|Ankyl vert hyperostosis|Ankyl vert hyperostosis +C0020498|T047|PT|721.6|ICD9CM|Ankylosing vertebral hyperostosis|Ankylosing vertebral hyperostosis +C0152088|T047|AB|721.7|ICD9CM|Traumatic spondylopathy|Traumatic spondylopathy +C0152088|T047|PT|721.7|ICD9CM|Traumatic spondylopathy|Traumatic spondylopathy +C0158249|T047|PT|721.8|ICD9CM|Other allied disorders of spine|Other allied disorders of spine +C0158249|T047|AB|721.8|ICD9CM|Spinal disorders NEC|Spinal disorders NEC +C0038019|T047|HT|721.9|ICD9CM|Spondylosis of unspecified site|Spondylosis of unspecified site +C0263851|T047|AB|721.90|ICD9CM|Spondylos NOS w/o myelop|Spondylos NOS w/o myelop +C0263851|T047|PT|721.90|ICD9CM|Spondylosis of unspecified site, without mention of myelopathy|Spondylosis of unspecified site, without mention of myelopathy +C0263853|T047|AB|721.91|ICD9CM|Spondylosis NOS w myelop|Spondylosis NOS w myelop +C0263853|T047|PT|721.91|ICD9CM|Spondylosis of unspecified site, with myelopathy|Spondylosis of unspecified site, with myelopathy +C0158252|T047|HT|722|ICD9CM|Intervertebral disc disorders|Intervertebral disc disorders +C0158253|T047|AB|722.0|ICD9CM|Cervical disc displacmnt|Cervical disc displacmnt +C0158253|T047|PT|722.0|ICD9CM|Displacement of cervical intervertebral disc without myelopathy|Displacement of cervical intervertebral disc without myelopathy +C0158254|T047|HT|722.1|ICD9CM|Displacement of thoracic or lumbar intervertebral disc without myelopathy|Displacement of thoracic or lumbar intervertebral disc without myelopathy +C0158255|T047|PT|722.10|ICD9CM|Displacement of lumbar intervertebral disc without myelopathy|Displacement of lumbar intervertebral disc without myelopathy +C0158255|T047|AB|722.10|ICD9CM|Lumbar disc displacement|Lumbar disc displacement +C0158256|T047|PT|722.11|ICD9CM|Displacement of thoracic intervertebral disc without myelopathy|Displacement of thoracic intervertebral disc without myelopathy +C0158256|T047|AB|722.11|ICD9CM|Thoracic disc displacmnt|Thoracic disc displacmnt +C1328971|T047|AB|722.2|ICD9CM|Disc displacement NOS|Disc displacement NOS +C1328971|T047|PT|722.2|ICD9CM|Displacement of intervertebral disc, site unspecified, without myelopathy|Displacement of intervertebral disc, site unspecified, without myelopathy +C0410632|T047|HT|722.3|ICD9CM|Schmorl's nodes|Schmorl's nodes +C0410632|T047|AB|722.30|ICD9CM|Schmorl's nodes NOS|Schmorl's nodes NOS +C0410632|T047|PT|722.30|ICD9CM|Schmorl's nodes, unspecified region|Schmorl's nodes, unspecified region +C0158259|T047|PT|722.31|ICD9CM|Schmorl's nodes, thoracic region|Schmorl's nodes, thoracic region +C0158259|T047|AB|722.31|ICD9CM|Schmorls node-thoracic|Schmorls node-thoracic +C0158260|T047|PT|722.32|ICD9CM|Schmorl's nodes, lumbar region|Schmorl's nodes, lumbar region +C0158260|T047|AB|722.32|ICD9CM|Schmorls node-lumbar|Schmorls node-lumbar +C0158261|T047|PT|722.39|ICD9CM|Schmorl's nodes, other region|Schmorl's nodes, other region +C0158261|T047|AB|722.39|ICD9CM|Schmorls node-region NEC|Schmorls node-region NEC +C0158262|T047|AB|722.4|ICD9CM|Cervical disc degen|Cervical disc degen +C0158262|T047|PT|722.4|ICD9CM|Degeneration of cervical intervertebral disc|Degeneration of cervical intervertebral disc +C0158263|T047|HT|722.5|ICD9CM|Degeneration of thoracic or lumbar intervertebral disc|Degeneration of thoracic or lumbar intervertebral disc +C0158264|T047|PT|722.51|ICD9CM|Degeneration of thoracic or thoracolumbar intervertebral disc|Degeneration of thoracic or thoracolumbar intervertebral disc +C0158264|T047|AB|722.51|ICD9CM|Thoracic disc degen|Thoracic disc degen +C0158265|T047|PT|722.52|ICD9CM|Degeneration of lumbar or lumbosacral intervertebral disc|Degeneration of lumbar or lumbosacral intervertebral disc +C0158265|T047|AB|722.52|ICD9CM|Lumb/lumbosac disc degen|Lumb/lumbosac disc degen +C0158266|T047|PT|722.6|ICD9CM|Degeneration of intervertebral disc, site unspecified|Degeneration of intervertebral disc, site unspecified +C0158266|T047|AB|722.6|ICD9CM|Disc degeneration NOS|Disc degeneration NOS +C0158267|T047|HT|722.7|ICD9CM|Intervertebral disc disorder with myelopathy|Intervertebral disc disorder with myelopathy +C0375497|T047|AB|722.70|ICD9CM|Disc dis w myelopath NOS|Disc dis w myelopath NOS +C0375497|T047|PT|722.70|ICD9CM|Intervertebral disc disorder with myelopathy, unspecified region|Intervertebral disc disorder with myelopathy, unspecified region +C0158268|T047|AB|722.71|ICD9CM|Cerv disc dis w myelopat|Cerv disc dis w myelopat +C0158268|T047|PT|722.71|ICD9CM|Intervertebral disc disorder with myelopathy, cervical region|Intervertebral disc disorder with myelopathy, cervical region +C0158269|T047|PT|722.72|ICD9CM|Intervertebral disc disorder with myelopathy, thoracic region|Intervertebral disc disorder with myelopathy, thoracic region +C0158269|T047|AB|722.72|ICD9CM|Thor disc dis w myelopat|Thor disc dis w myelopat +C0158270|T047|PT|722.73|ICD9CM|Intervertebral disc disorder with myelopathy, lumbar region|Intervertebral disc disorder with myelopathy, lumbar region +C0158270|T047|AB|722.73|ICD9CM|Lumb disc dis w myelopat|Lumb disc dis w myelopat +C0152089|T047|HT|722.8|ICD9CM|Postlaminectomy syndrome|Postlaminectomy syndrome +C0152089|T047|AB|722.80|ICD9CM|Postlaminectomy synd NOS|Postlaminectomy synd NOS +C0152089|T047|PT|722.80|ICD9CM|Postlaminectomy syndrome, unspecified region|Postlaminectomy syndrome, unspecified region +C0158272|T047|AB|722.81|ICD9CM|Postlaminect synd-cerv|Postlaminect synd-cerv +C0158272|T047|PT|722.81|ICD9CM|Postlaminectomy syndrome, cervical region|Postlaminectomy syndrome, cervical region +C0158273|T047|AB|722.82|ICD9CM|Postlaminect synd-thorac|Postlaminect synd-thorac +C0158273|T047|PT|722.82|ICD9CM|Postlaminectomy syndrome, thoracic region|Postlaminectomy syndrome, thoracic region +C0158274|T047|AB|722.83|ICD9CM|Postlaminect synd-lumbar|Postlaminect synd-lumbar +C0158274|T047|PT|722.83|ICD9CM|Postlaminectomy syndrome, lumbar region|Postlaminectomy syndrome, lumbar region +C0158275|T047|HT|722.9|ICD9CM|Other and unspecified disc disorder|Other and unspecified disc disorder +C0029497|T047|AB|722.90|ICD9CM|Disc dis NEC/NOS-unspec|Disc dis NEC/NOS-unspec +C0029497|T047|PT|722.90|ICD9CM|Other and unspecified disc disorder, unspecified region|Other and unspecified disc disorder, unspecified region +C0158276|T047|AB|722.91|ICD9CM|Disc dis NEC/NOS-cerv|Disc dis NEC/NOS-cerv +C0158276|T047|PT|722.91|ICD9CM|Other and unspecified disc disorder, cervical region|Other and unspecified disc disorder, cervical region +C0158277|T047|AB|722.92|ICD9CM|Disc dis NEC/NOS-thorac|Disc dis NEC/NOS-thorac +C0158277|T047|PT|722.92|ICD9CM|Other and unspecified disc disorder, thoracic region|Other and unspecified disc disorder, thoracic region +C0158278|T047|AB|722.93|ICD9CM|Disc dis NEC/NOS-lumbar|Disc dis NEC/NOS-lumbar +C0158278|T047|PT|722.93|ICD9CM|Other and unspecified disc disorder, lumbar region|Other and unspecified disc disorder, lumbar region +C0158279|T047|HT|723|ICD9CM|Other disorders of cervical region|Other disorders of cervical region +C0158280|T047|AB|723.0|ICD9CM|Cervical spinal stenosis|Cervical spinal stenosis +C0158280|T047|PT|723.0|ICD9CM|Spinal stenosis in cervical region|Spinal stenosis in cervical region +C0007859|T184|AB|723.1|ICD9CM|Cervicalgia|Cervicalgia +C0007859|T184|PT|723.1|ICD9CM|Cervicalgia|Cervicalgia +C2355645|T047|AB|723.2|ICD9CM|Cervicocranial syndrome|Cervicocranial syndrome +C2355645|T047|PT|723.2|ICD9CM|Cervicocranial syndrome|Cervicocranial syndrome +C0158281|T047|AB|723.3|ICD9CM|Cervicobrachial syndrome|Cervicobrachial syndrome +C0158281|T047|PT|723.3|ICD9CM|Cervicobrachial syndrome (diffuse)|Cervicobrachial syndrome (diffuse) +C1442952|T047|AB|723.4|ICD9CM|Brachial neuritis NOS|Brachial neuritis NOS +C1442952|T047|PT|723.4|ICD9CM|Brachial neuritis or radiculitis NOS|Brachial neuritis or radiculitis NOS +C0040485|T184|AB|723.5|ICD9CM|Torticollis NOS|Torticollis NOS +C0040485|T184|PT|723.5|ICD9CM|Torticollis, unspecified|Torticollis, unspecified +C0263013|T047|AB|723.6|ICD9CM|Panniculitis of neck|Panniculitis of neck +C0263013|T047|PT|723.6|ICD9CM|Panniculitis specified as affecting neck|Panniculitis specified as affecting neck +C0699899|T046|AB|723.7|ICD9CM|Ossification cerv lig|Ossification cerv lig +C0699899|T046|PT|723.7|ICD9CM|Ossification of posterior longitudinal ligament in cervical region|Ossification of posterior longitudinal ligament in cervical region +C0158284|T047|AB|723.8|ICD9CM|Cervical syndrome NEC|Cervical syndrome NEC +C0158284|T047|PT|723.8|ICD9CM|Other syndromes affecting cervical region|Other syndromes affecting cervical region +C0158285|T047|AB|723.9|ICD9CM|Neck disorder/sympt NOS|Neck disorder/sympt NOS +C0158285|T047|PT|723.9|ICD9CM|Unspecified musculoskeletal disorders and symptoms referable to neck|Unspecified musculoskeletal disorders and symptoms referable to neck +C0158298|T047|HT|724|ICD9CM|Other and unspecified disorders of back|Other and unspecified disorders of back +C0037947|T190|HT|724.0|ICD9CM|Spinal stenosis, other than cervical|Spinal stenosis, other than cervical +C0037944|T020|AB|724.00|ICD9CM|Spinal stenosis NOS|Spinal stenosis NOS +C0037944|T020|PT|724.00|ICD9CM|Spinal stenosis, unspecified region|Spinal stenosis, unspecified region +C0158287|T047|AB|724.01|ICD9CM|Spinal stenosis-thoracic|Spinal stenosis-thoracic +C0158287|T047|PT|724.01|ICD9CM|Spinal stenosis, thoracic region|Spinal stenosis, thoracic region +C2921108|T047|AB|724.02|ICD9CM|Spin sten,lumbr wo claud|Spin sten,lumbr wo claud +C2921108|T047|PT|724.02|ICD9CM|Spinal stenosis, lumbar region, without neurogenic claudication|Spinal stenosis, lumbar region, without neurogenic claudication +C2921109|T047|AB|724.03|ICD9CM|Spin sten,lumbr w claud|Spin sten,lumbr w claud +C2921109|T047|PT|724.03|ICD9CM|Spinal stenosis, lumbar region, with neurogenic claudication|Spinal stenosis, lumbar region, with neurogenic claudication +C0158289|T190|AB|724.09|ICD9CM|Spinal stenosis-oth site|Spinal stenosis-oth site +C0158289|T190|PT|724.09|ICD9CM|Spinal stenosis, other region|Spinal stenosis, other region +C0677061|T184|AB|724.1|ICD9CM|Pain in thoracic spine|Pain in thoracic spine +C0677061|T184|PT|724.1|ICD9CM|Pain in thoracic spine|Pain in thoracic spine +C0024031|T184|AB|724.2|ICD9CM|Lumbago|Lumbago +C0024031|T184|PT|724.2|ICD9CM|Lumbago|Lumbago +C0036396|T184|AB|724.3|ICD9CM|Sciatica|Sciatica +C0036396|T184|PT|724.3|ICD9CM|Sciatica|Sciatica +C0158291|T047|AB|724.4|ICD9CM|Lumbosacral neuritis NOS|Lumbosacral neuritis NOS +C0158291|T047|PT|724.4|ICD9CM|Thoracic or lumbosacral neuritis or radiculitis, unspecified|Thoracic or lumbosacral neuritis or radiculitis, unspecified +C0004604|T184|AB|724.5|ICD9CM|Backache NOS|Backache NOS +C0004604|T184|PT|724.5|ICD9CM|Backache, unspecified|Backache, unspecified +C0158292|T047|AB|724.6|ICD9CM|Disorders of sacrum|Disorders of sacrum +C0158292|T047|PT|724.6|ICD9CM|Disorders of sacrum|Disorders of sacrum +C0158293|T047|HT|724.7|ICD9CM|Disorders of coccyx|Disorders of coccyx +C0158293|T047|AB|724.70|ICD9CM|Disorder of coccyx NOS|Disorder of coccyx NOS +C0158293|T047|PT|724.70|ICD9CM|Unspecified disorder of coccyx|Unspecified disorder of coccyx +C0158295|T047|AB|724.71|ICD9CM|Hypermobility of coccyx|Hypermobility of coccyx +C0158295|T047|PT|724.71|ICD9CM|Hypermobility of coccyx|Hypermobility of coccyx +C0158296|T047|AB|724.79|ICD9CM|Disorder of coccyx NEC|Disorder of coccyx NEC +C0158296|T047|PT|724.79|ICD9CM|Other disorders of coccyx|Other disorders of coccyx +C0158297|T184|AB|724.8|ICD9CM|Other back symptoms|Other back symptoms +C0158297|T184|PT|724.8|ICD9CM|Other symptoms referable to back|Other symptoms referable to back +C0158298|T047|AB|724.9|ICD9CM|Back disorder NOS|Back disorder NOS +C0158298|T047|PT|724.9|ICD9CM|Other unspecified back disorders|Other unspecified back disorders +C0032533|T047|AB|725|ICD9CM|Polymyalgia rheumatica|Polymyalgia rheumatica +C0032533|T047|PT|725|ICD9CM|Polymyalgia rheumatica|Polymyalgia rheumatica +C0178305|T047|HT|725-729.99|ICD9CM|RHEUMATISM, EXCLUDING THE BACK|RHEUMATISM, EXCLUDING THE BACK +C1442902|T047|HT|726|ICD9CM|Peripheral enthesopathies and allied syndromes|Peripheral enthesopathies and allied syndromes +C0311223|T047|AB|726.0|ICD9CM|Adhesive capsulit shlder|Adhesive capsulit shlder +C0311223|T047|PT|726.0|ICD9CM|Adhesive capsulitis of shoulder|Adhesive capsulitis of shoulder +C0158301|T047|HT|726.1|ICD9CM|Rotator cuff syndrome of shoulder and allied disorders|Rotator cuff syndrome of shoulder and allied disorders +C0158302|T047|PT|726.10|ICD9CM|Disorders of bursae and tendons in shoulder region, unspecified|Disorders of bursae and tendons in shoulder region, unspecified +C0158302|T047|AB|726.10|ICD9CM|Rotator cuff synd NOS|Rotator cuff synd NOS +C0158303|T047|AB|726.11|ICD9CM|Calcif tendinitis shlder|Calcif tendinitis shlder +C0158303|T047|PT|726.11|ICD9CM|Calcifying tendinitis of shoulder|Calcifying tendinitis of shoulder +C0158304|T047|AB|726.12|ICD9CM|Bicipital tenosynovitis|Bicipital tenosynovitis +C0158304|T047|PT|726.12|ICD9CM|Bicipital tenosynovitis|Bicipital tenosynovitis +C3161123|T037|PT|726.13|ICD9CM|Partial tear of rotator cuff|Partial tear of rotator cuff +C3161123|T037|AB|726.13|ICD9CM|Partial tear rotatr cuff|Partial tear rotatr cuff +C0158305|T047|PT|726.19|ICD9CM|Other specified disorders of bursae and tendons in shoulder region|Other specified disorders of bursae and tendons in shoulder region +C0158305|T047|AB|726.19|ICD9CM|Rotator cuff dis NEC|Rotator cuff dis NEC +C0869438|T047|PT|726.2|ICD9CM|Other affections of shoulder region, not elsewhere classified|Other affections of shoulder region, not elsewhere classified +C0869438|T047|AB|726.2|ICD9CM|Shoulder region dis NEC|Shoulder region dis NEC +C0158307|T046|HT|726.3|ICD9CM|Enthesopathy of elbow region|Enthesopathy of elbow region +C0158307|T046|AB|726.30|ICD9CM|Elbow enthesopathy NOS|Elbow enthesopathy NOS +C0158307|T046|PT|726.30|ICD9CM|Enthesopathy of elbow, unspecified|Enthesopathy of elbow, unspecified +C0158309|T020|AB|726.31|ICD9CM|Medial epicondylitis|Medial epicondylitis +C0158309|T020|PT|726.31|ICD9CM|Medial epicondylitis|Medial epicondylitis +C0039516|T047|AB|726.32|ICD9CM|Lateral epicondylitis|Lateral epicondylitis +C0039516|T047|PT|726.32|ICD9CM|Lateral epicondylitis|Lateral epicondylitis +C0263962|T047|AB|726.33|ICD9CM|Olecranon bursitis|Olecranon bursitis +C0263962|T047|PT|726.33|ICD9CM|Olecranon bursitis|Olecranon bursitis +C0158310|T047|AB|726.39|ICD9CM|Elbow enthesopathy NEC|Elbow enthesopathy NEC +C0158310|T047|PT|726.39|ICD9CM|Other enthesopathy of elbow region|Other enthesopathy of elbow region +C0158311|T047|AB|726.4|ICD9CM|Enthesopathy of wrist|Enthesopathy of wrist +C0158311|T047|PT|726.4|ICD9CM|Enthesopathy of wrist and carpus|Enthesopathy of wrist and carpus +C0158312|T047|AB|726.5|ICD9CM|Enthesopathy of hip|Enthesopathy of hip +C0158312|T047|PT|726.5|ICD9CM|Enthesopathy of hip region|Enthesopathy of hip region +C0158313|T047|HT|726.6|ICD9CM|Enthesopathy of knee|Enthesopathy of knee +C0158313|T047|AB|726.60|ICD9CM|Enthesopathy of knee NOS|Enthesopathy of knee NOS +C0158313|T047|PT|726.60|ICD9CM|Enthesopathy of knee, unspecified|Enthesopathy of knee, unspecified +C0158314|T047|AB|726.61|ICD9CM|Pes anserinus tendinitis|Pes anserinus tendinitis +C0158314|T047|PT|726.61|ICD9CM|Pes anserinus tendinitis or bursitis|Pes anserinus tendinitis or bursitis +C0158315|T047|AB|726.62|ICD9CM|Tibial coll lig bursitis|Tibial coll lig bursitis +C0158315|T047|PT|726.62|ICD9CM|Tibial collateral ligament bursitis|Tibial collateral ligament bursitis +C0158316|T047|AB|726.63|ICD9CM|Fibula coll lig bursitis|Fibula coll lig bursitis +C0158316|T047|PT|726.63|ICD9CM|Fibular collateral ligament bursitis|Fibular collateral ligament bursitis +C0158317|T047|AB|726.64|ICD9CM|Patellar tendinitis|Patellar tendinitis +C0158317|T047|PT|726.64|ICD9CM|Patellar tendinitis|Patellar tendinitis +C0851258|T047|AB|726.65|ICD9CM|Prepatellar bursitis|Prepatellar bursitis +C0851258|T047|PT|726.65|ICD9CM|Prepatellar bursitis|Prepatellar bursitis +C0158318|T047|AB|726.69|ICD9CM|Enthesopathy of knee NEC|Enthesopathy of knee NEC +C0158318|T047|PT|726.69|ICD9CM|Other enthesopathy of knee|Other enthesopathy of knee +C0158319|T047|HT|726.7|ICD9CM|Enthesopathy of ankle and tarsus|Enthesopathy of ankle and tarsus +C0158319|T047|AB|726.70|ICD9CM|Ankle enthesopathy NOS|Ankle enthesopathy NOS +C0158319|T047|PT|726.70|ICD9CM|Enthesopathy of ankle and tarsus, unspecified|Enthesopathy of ankle and tarsus, unspecified +C0263933|T047|PT|726.71|ICD9CM|Achilles bursitis or tendinitis|Achilles bursitis or tendinitis +C0263933|T047|AB|726.71|ICD9CM|Achilles tendinitis|Achilles tendinitis +C0158321|T047|AB|726.72|ICD9CM|Tibialis tendinitis|Tibialis tendinitis +C0158321|T047|PT|726.72|ICD9CM|Tibialis tendinitis|Tibialis tendinitis +C0158322|T047|AB|726.73|ICD9CM|Calcaneal spur|Calcaneal spur +C0158322|T047|PT|726.73|ICD9CM|Calcaneal spur|Calcaneal spur +C0158323|T047|AB|726.79|ICD9CM|Ankle enthesopathy NEC|Ankle enthesopathy NEC +C0158323|T047|PT|726.79|ICD9CM|Other enthesopathy of ankle and tarsus|Other enthesopathy of ankle and tarsus +C0158324|T047|PT|726.8|ICD9CM|Other peripheral enthesopathies|Other peripheral enthesopathies +C0158324|T047|AB|726.8|ICD9CM|Periph enthesopathy NEC|Periph enthesopathy NEC +C0242490|T047|HT|726.9|ICD9CM|Unspecified enthesopathy|Unspecified enthesopathy +C0242490|T047|PT|726.90|ICD9CM|Enthesopathy of unspecified site|Enthesopathy of unspecified site +C0242490|T047|AB|726.90|ICD9CM|Enthesopathy, site NOS|Enthesopathy, site NOS +C1442903|T047|PT|726.91|ICD9CM|Exostosis of unspecified site|Exostosis of unspecified site +C1442903|T047|AB|726.91|ICD9CM|Exostosis, site NOS|Exostosis, site NOS +C0158326|T047|HT|727|ICD9CM|Other disorders of synovium, tendon, and bursa|Other disorders of synovium, tendon, and bursa +C0039104|T047|HT|727.0|ICD9CM|Synovitis and tenosynovitis|Synovitis and tenosynovitis +C0039104|T047|PT|727.00|ICD9CM|Synovitis and tenosynovitis, unspecified|Synovitis and tenosynovitis, unspecified +C0039104|T047|AB|727.00|ICD9CM|Synovitis NOS|Synovitis NOS +C0158327|T047|PT|727.01|ICD9CM|Synovitis and tenosynovitis in diseases classified elsewhere|Synovitis and tenosynovitis in diseases classified elsewhere +C0158327|T047|AB|727.01|ICD9CM|Synovitis in oth dis|Synovitis in oth dis +C1318543|T191|PT|727.02|ICD9CM|Giant cell tumor of tendon sheath|Giant cell tumor of tendon sheath +C1318543|T191|AB|727.02|ICD9CM|Giant cell tumor tendon|Giant cell tumor tendon +C3887597|T020|AB|727.03|ICD9CM|Trigger finger|Trigger finger +C3887597|T020|PT|727.03|ICD9CM|Trigger finger (acquired)|Trigger finger (acquired) +C0149870|T047|AB|727.04|ICD9CM|Radial styloid tenosynov|Radial styloid tenosynov +C0149870|T047|PT|727.04|ICD9CM|Radial styloid tenosynovitis|Radial styloid tenosynovitis +C2004376|T047|PT|727.05|ICD9CM|Other tenosynovitis of hand and wrist|Other tenosynovitis of hand and wrist +C2004376|T047|AB|727.05|ICD9CM|Tenosynov hand/wrist NEC|Tenosynov hand/wrist NEC +C0158331|T047|AB|727.06|ICD9CM|Tenosynovitis foot/ankle|Tenosynovitis foot/ankle +C0158331|T047|PT|727.06|ICD9CM|Tenosynovitis of foot and ankle|Tenosynovitis of foot and ankle +C0029856|T047|PT|727.09|ICD9CM|Other synovitis and tenosynovitis|Other synovitis and tenosynovitis +C0029856|T047|AB|727.09|ICD9CM|Synovitis NEC|Synovitis NEC +C0006386|T020|AB|727.1|ICD9CM|Bunion|Bunion +C0006386|T020|PT|727.1|ICD9CM|Bunion|Bunion +C0158332|T047|AB|727.2|ICD9CM|Occupational bursitis|Occupational bursitis +C0158332|T047|PT|727.2|ICD9CM|Specific bursitides often of occupational origin|Specific bursitides often of occupational origin +C0029528|T047|AB|727.3|ICD9CM|Bursitis NEC|Bursitis NEC +C0029528|T047|PT|727.3|ICD9CM|Other bursitis|Other bursitis +C0349693|T047|HT|727.4|ICD9CM|Ganglion and cyst of synovium, tendon, and bursa|Ganglion and cyst of synovium, tendon, and bursa +C0085648|T047|AB|727.40|ICD9CM|Synovial cyst NOS|Synovial cyst NOS +C0085648|T047|PT|727.40|ICD9CM|Synovial cyst, unspecified|Synovial cyst, unspecified +C0158334|T047|AB|727.41|ICD9CM|Ganglion of joint|Ganglion of joint +C0158334|T047|PT|727.41|ICD9CM|Ganglion of joint|Ganglion of joint +C0158335|T020|AB|727.42|ICD9CM|Ganglion of tendon|Ganglion of tendon +C0158335|T020|PT|727.42|ICD9CM|Ganglion of tendon sheath|Ganglion of tendon sheath +C1258666|T047|AB|727.43|ICD9CM|Ganglion NOS|Ganglion NOS +C1258666|T047|PT|727.43|ICD9CM|Ganglion, unspecified|Ganglion, unspecified +C0158336|T047|AB|727.49|ICD9CM|Bursal cyst NEC|Bursal cyst NEC +C0158336|T047|PT|727.49|ICD9CM|Other ganglion and cyst of synovium, tendon, and bursa|Other ganglion and cyst of synovium, tendon, and bursa +C0158337|T046|HT|727.5|ICD9CM|Rupture of synovium|Rupture of synovium +C0158337|T046|AB|727.50|ICD9CM|Rupture of synovium NOS|Rupture of synovium NOS +C0158337|T046|PT|727.50|ICD9CM|Rupture of synovium, unspecified|Rupture of synovium, unspecified +C0032650|T020|AB|727.51|ICD9CM|Popliteal synovial cyst|Popliteal synovial cyst +C0032650|T020|PT|727.51|ICD9CM|Synovial cyst of popliteal space|Synovial cyst of popliteal space +C0158338|T047|PT|727.59|ICD9CM|Other rupture of synovium|Other rupture of synovium +C0158338|T047|AB|727.59|ICD9CM|Rupture of synovium NEC|Rupture of synovium NEC +C0158339|T047|HT|727.6|ICD9CM|Rupture of tendon, nontraumatic|Rupture of tendon, nontraumatic +C0158339|T047|AB|727.60|ICD9CM|Nontraum tendon rupt NOS|Nontraum tendon rupt NOS +C0158339|T047|PT|727.60|ICD9CM|Nontraumatic rupture of unspecified tendon|Nontraumatic rupture of unspecified tendon +C0410017|T037|PT|727.61|ICD9CM|Complete rupture of rotator cuff|Complete rupture of rotator cuff +C0410017|T037|AB|727.61|ICD9CM|Rotator cuff rupture|Rotator cuff rupture +C0158342|T037|AB|727.62|ICD9CM|Biceps tendon rupture|Biceps tendon rupture +C0158342|T037|PT|727.62|ICD9CM|Nontraumatic rupture of tendons of biceps (long head)|Nontraumatic rupture of tendons of biceps (long head) +C4076694|T046|PT|727.63|ICD9CM|Nontraumatic rupture of extensor tendons of hand and wrist|Nontraumatic rupture of extensor tendons of hand and wrist +C4076694|T046|AB|727.63|ICD9CM|Rupt exten tendon hand|Rupt exten tendon hand +C0158344|T047|PT|727.64|ICD9CM|Nontraumatic rupture of flexor tendons of hand and wrist|Nontraumatic rupture of flexor tendons of hand and wrist +C0158344|T047|AB|727.64|ICD9CM|Rupt flexor tendon hand|Rupt flexor tendon hand +C0158345|T037|PT|727.65|ICD9CM|Nontraumatic rupture of quadriceps tendon|Nontraumatic rupture of quadriceps tendon +C0158345|T037|AB|727.65|ICD9CM|Rupture quadricep tendon|Rupture quadricep tendon +C0158346|T037|PT|727.66|ICD9CM|Nontraumatic rupture of patellar tendon|Nontraumatic rupture of patellar tendon +C0158346|T037|AB|727.66|ICD9CM|Rupture patellar tendon|Rupture patellar tendon +C0158347|T037|PT|727.67|ICD9CM|Nontraumatic rupture of achilles tendon|Nontraumatic rupture of achilles tendon +C0158347|T037|AB|727.67|ICD9CM|Rupture achilles tendon|Rupture achilles tendon +C0158348|T047|PT|727.68|ICD9CM|Nontraumatic rupture of other tendons of foot and ankle|Nontraumatic rupture of other tendons of foot and ankle +C0158348|T047|AB|727.68|ICD9CM|Rupture tendon foot NEC|Rupture tendon foot NEC +C0158349|T047|AB|727.69|ICD9CM|Nontraum tendon rupt NEC|Nontraum tendon rupt NEC +C0158349|T047|PT|727.69|ICD9CM|Nontraumatic rupture of other tendon|Nontraumatic rupture of other tendon +C0158326|T047|HT|727.8|ICD9CM|Other disorders of synovium, tendon, and bursa|Other disorders of synovium, tendon, and bursa +C0158350|T046|AB|727.81|ICD9CM|Contracture of tendon|Contracture of tendon +C0158350|T046|PT|727.81|ICD9CM|Contracture of tendon (sheath)|Contracture of tendon (sheath) +C0006690|T033|AB|727.82|ICD9CM|Calcium deposit tendon|Calcium deposit tendon +C0006690|T033|PT|727.82|ICD9CM|Calcium deposits in tendon and bursa|Calcium deposits in tendon and bursa +C0878705|T047|AB|727.83|ICD9CM|Plica syndrome|Plica syndrome +C0878705|T047|PT|727.83|ICD9CM|Plica syndrome|Plica syndrome +C0158326|T047|PT|727.89|ICD9CM|Other disorders of synovium, tendon, and bursa|Other disorders of synovium, tendon, and bursa +C0158326|T047|AB|727.89|ICD9CM|Synov/tend/bursa dis NEC|Synov/tend/bursa dis NEC +C0158351|T047|AB|727.9|ICD9CM|Synov/tend/bursa dis NOS|Synov/tend/bursa dis NOS +C0158351|T047|PT|727.9|ICD9CM|Unspecified disorder of synovium, tendon, and bursa|Unspecified disorder of synovium, tendon, and bursa +C0158352|T047|HT|728|ICD9CM|Disorders of muscle, ligament, and fascia|Disorders of muscle, ligament, and fascia +C0158353|T047|AB|728.0|ICD9CM|Infective myositis|Infective myositis +C0158353|T047|PT|728.0|ICD9CM|Infective myositis|Infective myositis +C0343251|T047|HT|728.1|ICD9CM|Muscular calcification and ossification|Muscular calcification and ossification +C0158355|T047|PT|728.10|ICD9CM|Calcification and ossification, unspecified|Calcification and ossification, unspecified +C0158355|T047|AB|728.10|ICD9CM|Muscular calcificat NOS|Muscular calcificat NOS +C0016037|T047|AB|728.11|ICD9CM|Prog myositis ossificans|Prog myositis ossificans +C0016037|T047|PT|728.11|ICD9CM|Progressive myositis ossificans|Progressive myositis ossificans +C0040798|T047|AB|728.12|ICD9CM|Traum myositis ossifican|Traum myositis ossifican +C0040798|T047|PT|728.12|ICD9CM|Traumatic myositis ossificans|Traumatic myositis ossificans +C0158357|T046|AB|728.13|ICD9CM|Postop heterotopic calc|Postop heterotopic calc +C0158357|T046|PT|728.13|ICD9CM|Postoperative heterotopic calcification|Postoperative heterotopic calcification +C0158358|T047|AB|728.19|ICD9CM|Muscular calcificat NEC|Muscular calcificat NEC +C0158358|T047|PT|728.19|ICD9CM|Other muscular calcification and ossification|Other muscular calcification and ossification +C0868752|T046|AB|728.2|ICD9CM|Musc disuse atrophy NEC|Musc disuse atrophy NEC +C0868752|T046|PT|728.2|ICD9CM|Muscular wasting and disuse atrophy, not elsewhere classified|Muscular wasting and disuse atrophy, not elsewhere classified +C0029741|T047|AB|728.3|ICD9CM|Muscle disorders NEC|Muscle disorders NEC +C0029741|T047|PT|728.3|ICD9CM|Other specific muscle disorders|Other specific muscle disorders +C0158359|T046|AB|728.4|ICD9CM|Laxity of ligament|Laxity of ligament +C0158359|T046|PT|728.4|ICD9CM|Laxity of ligament|Laxity of ligament +C0152093|T047|AB|728.5|ICD9CM|Hypermobility syndrome|Hypermobility syndrome +C0152093|T047|PT|728.5|ICD9CM|Hypermobility syndrome|Hypermobility syndrome +C0013312|T047|AB|728.6|ICD9CM|Contracted palmar fascia|Contracted palmar fascia +C0013312|T047|PT|728.6|ICD9CM|Contracture of palmar fascia|Contracture of palmar fascia +C0079954|T047|HT|728.7|ICD9CM|Other fibromatoses of muscle, ligament, and fascia|Other fibromatoses of muscle, ligament, and fascia +C0158360|T047|PT|728.71|ICD9CM|Plantar fascial fibromatosis|Plantar fascial fibromatosis +C0158360|T047|AB|728.71|ICD9CM|Plantar fibromatosis|Plantar fibromatosis +C0079954|T047|AB|728.79|ICD9CM|Fibromatoses NEC|Fibromatoses NEC +C0079954|T047|PT|728.79|ICD9CM|Other fibromatoses of muscle, ligament, and fascia|Other fibromatoses of muscle, ligament, and fascia +C0158361|T047|HT|728.8|ICD9CM|Other disorders of muscle, ligament, and fascia|Other disorders of muscle, ligament, and fascia +C0158362|T047|AB|728.81|ICD9CM|Interstitial myositis|Interstitial myositis +C0158362|T047|PT|728.81|ICD9CM|Interstitial myositis|Interstitial myositis +C0016545|T047|AB|728.82|ICD9CM|FB granuloma of muscle|FB granuloma of muscle +C0016545|T047|PT|728.82|ICD9CM|Foreign body granuloma of muscle|Foreign body granuloma of muscle +C0158363|T037|AB|728.83|ICD9CM|Nontraum muscle rupture|Nontraum muscle rupture +C0158363|T037|PT|728.83|ICD9CM|Rupture of muscle, nontraumatic|Rupture of muscle, nontraumatic +C0158364|T190|AB|728.84|ICD9CM|Diastasis of muscle|Diastasis of muscle +C0158364|T190|PT|728.84|ICD9CM|Diastasis of muscle|Diastasis of muscle +C0037763|T184|AB|728.85|ICD9CM|Spasm of muscle|Spasm of muscle +C0037763|T184|PT|728.85|ICD9CM|Spasm of muscle|Spasm of muscle +C0238124|T047|AB|728.86|ICD9CM|Necrotizing fasciitis|Necrotizing fasciitis +C0238124|T047|PT|728.86|ICD9CM|Necrotizing fasciitis|Necrotizing fasciitis +C0746674|T184|PT|728.87|ICD9CM|Muscle weakness (generalized)|Muscle weakness (generalized) +C0746674|T184|AB|728.87|ICD9CM|Muscle weakness-general|Muscle weakness-general +C0035410|T046|AB|728.88|ICD9CM|Rhabdomyolysis|Rhabdomyolysis +C0035410|T046|PT|728.88|ICD9CM|Rhabdomyolysis|Rhabdomyolysis +C0158361|T047|AB|728.89|ICD9CM|Muscle/ligament dis NEC|Muscle/ligament dis NEC +C0158361|T047|PT|728.89|ICD9CM|Other disorders of muscle, ligament, and fascia|Other disorders of muscle, ligament, and fascia +C0158352|T047|AB|728.9|ICD9CM|Muscle/ligament dis NOS|Muscle/ligament dis NOS +C0158352|T047|PT|728.9|ICD9CM|Unspecified disorder of muscle, ligament, and fascia|Unspecified disorder of muscle, ligament, and fascia +C0158370|T047|HT|729|ICD9CM|Other disorders of soft tissues|Other disorders of soft tissues +C0035445|T047|AB|729.0|ICD9CM|Rheumatism NOS|Rheumatism NOS +C0035445|T047|PT|729.0|ICD9CM|Rheumatism, unspecified and fibrositis|Rheumatism, unspecified and fibrositis +C0026893|T047|AB|729.1|ICD9CM|Myalgia and myositis NOS|Myalgia and myositis NOS +C0026893|T047|PT|729.1|ICD9CM|Myalgia and myositis, unspecified|Myalgia and myositis, unspecified +C0347894|T047|PT|729.2|ICD9CM|Neuralgia, neuritis, and radiculitis, unspecified|Neuralgia, neuritis, and radiculitis, unspecified +C0347894|T047|AB|729.2|ICD9CM|Neuralgia/neuritis NOS|Neuralgia/neuritis NOS +C0030326|T047|HT|729.3|ICD9CM|Panniculitis, unspecified|Panniculitis, unspecified +C0030326|T047|AB|729.30|ICD9CM|Panniculitis, unsp site|Panniculitis, unsp site +C0030326|T047|PT|729.30|ICD9CM|Panniculitis, unspecified site|Panniculitis, unspecified site +C0158366|T033|AB|729.31|ICD9CM|Hypertrophy of fat pad|Hypertrophy of fat pad +C0158366|T033|PT|729.31|ICD9CM|Hypertrophy of fat pad, knee|Hypertrophy of fat pad, knee +C0158367|T047|PT|729.39|ICD9CM|Panniculitis, other site|Panniculitis, other site +C0158367|T047|AB|729.39|ICD9CM|Panniculitis, site NEC|Panniculitis, site NEC +C0015645|T047|AB|729.4|ICD9CM|Fasciitis NOS|Fasciitis NOS +C0015645|T047|PT|729.4|ICD9CM|Fasciitis, unspecified|Fasciitis, unspecified +C0030196|T184|AB|729.5|ICD9CM|Pain in limb|Pain in limb +C0030196|T184|PT|729.5|ICD9CM|Pain in limb|Pain in limb +C0158368|T020|AB|729.6|ICD9CM|Old FB in soft tissue|Old FB in soft tissue +C0158368|T020|PT|729.6|ICD9CM|Residual foreign body in soft tissue|Residual foreign body in soft tissue +C1719623|T047|HT|729.7|ICD9CM|Nontraumatic compartment syndrome|Nontraumatic compartment syndrome +C1719618|T047|AB|729.71|ICD9CM|Nontraum comp syn-up ext|Nontraum comp syn-up ext +C1719618|T047|PT|729.71|ICD9CM|Nontraumatic compartment syndrome of upper extremity|Nontraumatic compartment syndrome of upper extremity +C1719620|T047|AB|729.72|ICD9CM|Nontraum comp syn-low ex|Nontraum comp syn-low ex +C1719620|T047|PT|729.72|ICD9CM|Nontraumatic compartment syndrome of lower extremity|Nontraumatic compartment syndrome of lower extremity +C1719621|T047|AB|729.73|ICD9CM|Nontrauma comp syn-abd|Nontrauma comp syn-abd +C1719621|T047|PT|729.73|ICD9CM|Nontraumatic compartment syndrome of abdomen|Nontraumatic compartment syndrome of abdomen +C1719622|T047|AB|729.79|ICD9CM|Nontrauma comp syn NEC|Nontrauma comp syn NEC +C1719622|T047|PT|729.79|ICD9CM|Nontraumatic compartment syndrome of other sites|Nontraumatic compartment syndrome of other sites +C0029669|T184|HT|729.8|ICD9CM|Other musculoskeletal symptoms referable to limbs|Other musculoskeletal symptoms referable to limbs +C0158369|T184|AB|729.81|ICD9CM|Swelling of limb|Swelling of limb +C0158369|T184|PT|729.81|ICD9CM|Swelling of limb|Swelling of limb +C0010263|T184|AB|729.82|ICD9CM|Cramp in limb|Cramp in limb +C0010263|T184|PT|729.82|ICD9CM|Cramp of limb|Cramp of limb +C0029669|T184|AB|729.89|ICD9CM|Muscskel sympt limb NEC|Muscskel sympt limb NEC +C0029669|T184|PT|729.89|ICD9CM|Other musculoskeletal symptoms referable to limbs|Other musculoskeletal symptoms referable to limbs +C0158370|T047|HT|729.9|ICD9CM|Other and unspecified disorders of soft tissue|Other and unspecified disorders of soft tissue +C0263978|T047|PT|729.90|ICD9CM|Disorders of soft tissue, unspecified|Disorders of soft tissue, unspecified +C0263978|T047|AB|729.90|ICD9CM|Soft tissue disord NOS|Soft tissue disord NOS +C2349647|T047|AB|729.91|ICD9CM|Post-traumatic seroma|Post-traumatic seroma +C2349647|T047|PT|729.91|ICD9CM|Post-traumatic seroma|Post-traumatic seroma +C2349648|T047|AB|729.92|ICD9CM|Nontrauma hema soft tiss|Nontrauma hema soft tiss +C2349648|T047|PT|729.92|ICD9CM|Nontraumatic hematoma of soft tissue|Nontraumatic hematoma of soft tissue +C0158370|T047|PT|729.99|ICD9CM|Other disorders of soft tissue|Other disorders of soft tissue +C0158370|T047|AB|729.99|ICD9CM|Soft tissue disorder NEC|Soft tissue disorder NEC +C0195720|T033|AB|73.3|ICD9CM|Failed forceps|Failed forceps +C0195720|T033|PT|73.3|ICD9CM|Failed forceps|Failed forceps +C0343139|T047|HT|730|ICD9CM|Osteomyelitis, periostitis, and other infections involving bone|Osteomyelitis, periostitis, and other infections involving bone +C0178306|T047|HT|730-739.99|ICD9CM|OSTEOPATHIES, CHONDROPATHIES, AND ACQUIRED MUSCULOSKELETAL DEFORMITIES|OSTEOPATHIES, CHONDROPATHIES, AND ACQUIRED MUSCULOSKELETAL DEFORMITIES +C0158371|T047|HT|730.0|ICD9CM|Acute osteomyelitis|Acute osteomyelitis +C0158371|T047|AB|730.00|ICD9CM|Ac osteomyelitis-unspec|Ac osteomyelitis-unspec +C0158371|T047|PT|730.00|ICD9CM|Acute osteomyelitis, site unspecified|Acute osteomyelitis, site unspecified +C0158372|T047|AB|730.01|ICD9CM|Ac osteomyelitis-shlder|Ac osteomyelitis-shlder +C0158372|T047|PT|730.01|ICD9CM|Acute osteomyelitis, shoulder region|Acute osteomyelitis, shoulder region +C0158373|T047|AB|730.02|ICD9CM|Ac osteomyelitis-up/arm|Ac osteomyelitis-up/arm +C0158373|T047|PT|730.02|ICD9CM|Acute osteomyelitis, upper arm|Acute osteomyelitis, upper arm +C0158374|T047|AB|730.03|ICD9CM|Ac osteomyelitis-forearm|Ac osteomyelitis-forearm +C0158374|T047|PT|730.03|ICD9CM|Acute osteomyelitis, forearm|Acute osteomyelitis, forearm +C0158375|T047|AB|730.04|ICD9CM|Ac osteomyelitis-hand|Ac osteomyelitis-hand +C0158375|T047|PT|730.04|ICD9CM|Acute osteomyelitis, hand|Acute osteomyelitis, hand +C1963552|T047|AB|730.05|ICD9CM|Ac osteomyelitis-pelvis|Ac osteomyelitis-pelvis +C1963552|T047|PT|730.05|ICD9CM|Acute osteomyelitis, pelvic region and thigh|Acute osteomyelitis, pelvic region and thigh +C0158377|T047|AB|730.06|ICD9CM|Ac osteomyelitis-l/leg|Ac osteomyelitis-l/leg +C0158377|T047|PT|730.06|ICD9CM|Acute osteomyelitis, lower leg|Acute osteomyelitis, lower leg +C0264039|T047|AB|730.07|ICD9CM|Ac osteomyelitis-ankle|Ac osteomyelitis-ankle +C0264039|T047|PT|730.07|ICD9CM|Acute osteomyelitis, ankle and foot|Acute osteomyelitis, ankle and foot +C0410385|T047|AB|730.08|ICD9CM|Ac osteomyelitis NEC|Ac osteomyelitis NEC +C0410385|T047|PT|730.08|ICD9CM|Acute osteomyelitis, other specified sites|Acute osteomyelitis, other specified sites +C0158380|T047|AB|730.09|ICD9CM|Ac osteomyelitis-mult|Ac osteomyelitis-mult +C0158380|T047|PT|730.09|ICD9CM|Acute osteomyelitis, multiple sites|Acute osteomyelitis, multiple sites +C0008707|T047|HT|730.1|ICD9CM|Chronic osteomyelitis|Chronic osteomyelitis +C0008707|T047|AB|730.10|ICD9CM|Chr osteomyelitis-unsp|Chr osteomyelitis-unsp +C0008707|T047|PT|730.10|ICD9CM|Chronic osteomyelitis, site unspecified|Chronic osteomyelitis, site unspecified +C0158381|T047|AB|730.11|ICD9CM|Chr osteomyelit-shlder|Chr osteomyelit-shlder +C0158381|T047|PT|730.11|ICD9CM|Chronic osteomyelitis, shoulder region|Chronic osteomyelitis, shoulder region +C0158382|T047|AB|730.12|ICD9CM|Chr osteomyelit-up/arm|Chr osteomyelit-up/arm +C0158382|T047|PT|730.12|ICD9CM|Chronic osteomyelitis, upper arm|Chronic osteomyelitis, upper arm +C0158383|T047|AB|730.13|ICD9CM|Chr osteomyelit-forearm|Chr osteomyelit-forearm +C0158383|T047|PT|730.13|ICD9CM|Chronic osteomyelitis, forearm|Chronic osteomyelitis, forearm +C0158384|T047|AB|730.14|ICD9CM|Chr osteomyelit-hand|Chr osteomyelit-hand +C0158384|T047|PT|730.14|ICD9CM|Chronic osteomyelitis, hand|Chronic osteomyelitis, hand +C0410420|T047|AB|730.15|ICD9CM|Chr osteomyelit-pelvis|Chr osteomyelit-pelvis +C0410420|T047|PT|730.15|ICD9CM|Chronic osteomyelitis, pelvic region and thigh|Chronic osteomyelitis, pelvic region and thigh +C0158386|T047|AB|730.16|ICD9CM|Chr osteomyelit-l/leg|Chr osteomyelit-l/leg +C0158386|T047|PT|730.16|ICD9CM|Chronic osteomyelitis, lower leg|Chronic osteomyelitis, lower leg +C0264049|T047|AB|730.17|ICD9CM|Chr osteomyelit-ankle|Chr osteomyelit-ankle +C0264049|T047|PT|730.17|ICD9CM|Chronic osteomyelitis, ankle and foot|Chronic osteomyelitis, ankle and foot +C0410417|T047|AB|730.18|ICD9CM|Chr osteomyelit NEC|Chr osteomyelit NEC +C0410417|T047|PT|730.18|ICD9CM|Chronic osteomyelitis, other specified sites|Chronic osteomyelitis, other specified sites +C0264051|T047|AB|730.19|ICD9CM|Chr osteomyelit-mult|Chr osteomyelit-mult +C0264051|T047|PT|730.19|ICD9CM|Chronic osteomyelitis, multiple sites|Chronic osteomyelitis, multiple sites +C0029443|T047|HT|730.2|ICD9CM|Unspecified osteomyelitis|Unspecified osteomyelitis +C0029443|T047|AB|730.20|ICD9CM|Osteomyelitis NOS-unspec|Osteomyelitis NOS-unspec +C0029443|T047|PT|730.20|ICD9CM|Unspecified osteomyelitis, site unspecified|Unspecified osteomyelitis, site unspecified +C0264022|T047|AB|730.21|ICD9CM|Osteomyelitis NOS-shlder|Osteomyelitis NOS-shlder +C0264022|T047|PT|730.21|ICD9CM|Unspecified osteomyelitis, shoulder region|Unspecified osteomyelitis, shoulder region +C0264023|T047|AB|730.22|ICD9CM|Osteomyelitis NOS-up/arm|Osteomyelitis NOS-up/arm +C0264023|T047|PT|730.22|ICD9CM|Unspecified osteomyelitis, upper arm|Unspecified osteomyelitis, upper arm +C0264024|T047|AB|730.23|ICD9CM|Osteomyelit NOS-forearm|Osteomyelit NOS-forearm +C0264024|T047|PT|730.23|ICD9CM|Unspecified osteomyelitis, forearm|Unspecified osteomyelitis, forearm +C0264025|T047|AB|730.24|ICD9CM|Osteomyelitis NOS-hand|Osteomyelitis NOS-hand +C0264025|T047|PT|730.24|ICD9CM|Unspecified osteomyelitis, hand|Unspecified osteomyelitis, hand +C0158434|T047|AB|730.25|ICD9CM|Osteomyelitis NOS-pelvis|Osteomyelitis NOS-pelvis +C0158434|T047|PT|730.25|ICD9CM|Unspecified osteomyelitis, pelvic region and thigh|Unspecified osteomyelitis, pelvic region and thigh +C0158395|T047|AB|730.26|ICD9CM|Osteomyelitis NOS-l/leg|Osteomyelitis NOS-l/leg +C0158395|T047|PT|730.26|ICD9CM|Unspecified osteomyelitis, lower leg|Unspecified osteomyelitis, lower leg +C0158396|T047|AB|730.27|ICD9CM|Osteomyelitis NOS-ankle|Osteomyelitis NOS-ankle +C0158396|T047|PT|730.27|ICD9CM|Unspecified osteomyelitis, ankle and foot|Unspecified osteomyelitis, ankle and foot +C0410376|T047|AB|730.28|ICD9CM|Osteomyelit NOS-oth site|Osteomyelit NOS-oth site +C0410376|T047|PT|730.28|ICD9CM|Unspecified osteomyelitis, other specified sites|Unspecified osteomyelitis, other specified sites +C0264031|T047|AB|730.29|ICD9CM|Osteomyelitis NOS-mult|Osteomyelitis NOS-mult +C0264031|T047|PT|730.29|ICD9CM|Unspecified osteomyelitis, multiple sites|Unspecified osteomyelitis, multiple sites +C0264069|T047|HT|730.3|ICD9CM|Periostitis without mention of osteomyelitis|Periostitis without mention of osteomyelitis +C0410437|T047|AB|730.30|ICD9CM|Periostitis-unspec|Periostitis-unspec +C0410437|T047|PT|730.30|ICD9CM|Periostitis, without mention of osteomyelitis, site unspecified|Periostitis, without mention of osteomyelitis, site unspecified +C0410436|T047|AB|730.31|ICD9CM|Periostitis-shlder|Periostitis-shlder +C0410436|T047|PT|730.31|ICD9CM|Periostitis, without mention of osteomyelitis, shoulder region|Periostitis, without mention of osteomyelitis, shoulder region +C0158401|T047|AB|730.32|ICD9CM|Periostitis-up/arm|Periostitis-up/arm +C0158401|T047|PT|730.32|ICD9CM|Periostitis, without mention of osteomyelitis, upper arm|Periostitis, without mention of osteomyelitis, upper arm +C0158402|T047|AB|730.33|ICD9CM|Periostitis-forearm|Periostitis-forearm +C0158402|T047|PT|730.33|ICD9CM|Periostitis, without mention of osteomyelitis, forearm|Periostitis, without mention of osteomyelitis, forearm +C0158403|T047|AB|730.34|ICD9CM|Periostitis-hand|Periostitis-hand +C0158403|T047|PT|730.34|ICD9CM|Periostitis, without mention of osteomyelitis, hand|Periostitis, without mention of osteomyelitis, hand +C0410435|T047|AB|730.35|ICD9CM|Periostitis-pelvis|Periostitis-pelvis +C0410435|T047|PT|730.35|ICD9CM|Periostitis, without mention of osteomyelitis, pelvic region and thigh|Periostitis, without mention of osteomyelitis, pelvic region and thigh +C0158405|T047|AB|730.36|ICD9CM|Periostitis-l/leg|Periostitis-l/leg +C0158405|T047|PT|730.36|ICD9CM|Periostitis, without mention of osteomyelitis, lower leg|Periostitis, without mention of osteomyelitis, lower leg +C0158406|T047|AB|730.37|ICD9CM|Periostitis-ankle|Periostitis-ankle +C0158406|T047|PT|730.37|ICD9CM|Periostitis, without mention of osteomyelitis, ankle and foot|Periostitis, without mention of osteomyelitis, ankle and foot +C0410434|T047|AB|730.38|ICD9CM|Periostitis NEC|Periostitis NEC +C0410434|T047|PT|730.38|ICD9CM|Periostitis, without mention of osteomyelitis, other specified sites|Periostitis, without mention of osteomyelitis, other specified sites +C0158407|T047|AB|730.39|ICD9CM|Periostitis-mult|Periostitis-mult +C0158407|T047|PT|730.39|ICD9CM|Periostitis, without mention of osteomyelitis, multiple sites|Periostitis, without mention of osteomyelitis, multiple sites +C0158408|T047|HT|730.7|ICD9CM|Osteopathy resulting from poliomyelitis|Osteopathy resulting from poliomyelitis +C0158408|T047|PT|730.70|ICD9CM|Osteopathy resulting from poliomyelitis, site unspecified|Osteopathy resulting from poliomyelitis, site unspecified +C0158408|T047|AB|730.70|ICD9CM|Polio osteopathy-unspec|Polio osteopathy-unspec +C0410326|T047|PT|730.71|ICD9CM|Osteopathy resulting from poliomyelitis, shoulder region|Osteopathy resulting from poliomyelitis, shoulder region +C0410326|T047|AB|730.71|ICD9CM|Polio osteopathy-shlder|Polio osteopathy-shlder +C0410325|T047|PT|730.72|ICD9CM|Osteopathy resulting from poliomyelitis, upper arm|Osteopathy resulting from poliomyelitis, upper arm +C0410325|T047|AB|730.72|ICD9CM|Polio osteopathy-up/arm|Polio osteopathy-up/arm +C0410324|T047|PT|730.73|ICD9CM|Osteopathy resulting from poliomyelitis, forearm|Osteopathy resulting from poliomyelitis, forearm +C0410324|T047|AB|730.73|ICD9CM|Polio osteopathy-forearm|Polio osteopathy-forearm +C0410323|T047|PT|730.74|ICD9CM|Osteopathy resulting from poliomyelitis, hand|Osteopathy resulting from poliomyelitis, hand +C0410323|T047|AB|730.74|ICD9CM|Polio osteopathy-hand|Polio osteopathy-hand +C0410322|T047|PT|730.75|ICD9CM|Osteopathy resulting from poliomyelitis, pelvic region and thigh|Osteopathy resulting from poliomyelitis, pelvic region and thigh +C0410322|T047|AB|730.75|ICD9CM|Polio osteopathy-pelvis|Polio osteopathy-pelvis +C0410321|T047|PT|730.76|ICD9CM|Osteopathy resulting from poliomyelitis, lower leg|Osteopathy resulting from poliomyelitis, lower leg +C0410321|T047|AB|730.76|ICD9CM|Polio osteopathy-l/leg|Polio osteopathy-l/leg +C0410320|T047|PT|730.77|ICD9CM|Osteopathy resulting from poliomyelitis, ankle and foot|Osteopathy resulting from poliomyelitis, ankle and foot +C0410320|T047|AB|730.77|ICD9CM|Polio osteopathy-ankle|Polio osteopathy-ankle +C0410319|T047|PT|730.78|ICD9CM|Osteopathy resulting from poliomyelitis, other specified sites|Osteopathy resulting from poliomyelitis, other specified sites +C0410319|T047|AB|730.78|ICD9CM|Polio osteopathy NEC|Polio osteopathy NEC +C0410318|T047|PT|730.79|ICD9CM|Osteopathy resulting from poliomyelitis, multiple sites|Osteopathy resulting from poliomyelitis, multiple sites +C0410318|T047|AB|730.79|ICD9CM|Polio osteopathy-mult|Polio osteopathy-mult +C0264070|T047|HT|730.8|ICD9CM|Other infections involving bone in disease classified elsewhere|Other infections involving bone in disease classified elsewhere +C0264070|T047|AB|730.80|ICD9CM|Bone infect NEC-unspec|Bone infect NEC-unspec +C0264070|T047|PT|730.80|ICD9CM|Other infections involving bone in diseases classified elsewhere, site unspecified|Other infections involving bone in diseases classified elsewhere, site unspecified +C0158420|T047|AB|730.81|ICD9CM|Bone infect NEC-shlder|Bone infect NEC-shlder +C0158420|T047|PT|730.81|ICD9CM|Other infections involving bone in diseases classified elsewhere, shoulder region|Other infections involving bone in diseases classified elsewhere, shoulder region +C0158421|T047|AB|730.82|ICD9CM|Bone infect NEC-up/arm|Bone infect NEC-up/arm +C0158421|T047|PT|730.82|ICD9CM|Other infections involving bone in diseases classified elsewhere, upper arm|Other infections involving bone in diseases classified elsewhere, upper arm +C0158422|T047|AB|730.83|ICD9CM|Bone infect NEC-forearm|Bone infect NEC-forearm +C0158422|T047|PT|730.83|ICD9CM|Other infections involving bone in diseases classified elsewhere, forearm|Other infections involving bone in diseases classified elsewhere, forearm +C0158423|T047|AB|730.84|ICD9CM|Bone infect NEC-hand|Bone infect NEC-hand +C0158423|T047|PT|730.84|ICD9CM|Other infections involving bone in diseases classified elsewhere, hand|Other infections involving bone in diseases classified elsewhere, hand +C0158424|T047|AB|730.85|ICD9CM|Bone infect NEC-pelvis|Bone infect NEC-pelvis +C0158424|T047|PT|730.85|ICD9CM|Other infections involving bone in diseases classified elsewhere, pelvic region and thigh|Other infections involving bone in diseases classified elsewhere, pelvic region and thigh +C0158425|T047|AB|730.86|ICD9CM|Bone infect NEC-l/leg|Bone infect NEC-l/leg +C0158425|T047|PT|730.86|ICD9CM|Other infections involving bone in diseases classified elsewhere, lower leg|Other infections involving bone in diseases classified elsewhere, lower leg +C0158426|T047|AB|730.87|ICD9CM|Bone infect NEC-ankle|Bone infect NEC-ankle +C0158426|T047|PT|730.87|ICD9CM|Other infections involving bone in diseases classified elsewhere, ankle and foot|Other infections involving bone in diseases classified elsewhere, ankle and foot +C0158427|T047|AB|730.88|ICD9CM|Bone infect NEC-oth site|Bone infect NEC-oth site +C0158427|T047|PT|730.88|ICD9CM|Other infections involving bone in diseases classified elsewhere, other specified sites|Other infections involving bone in diseases classified elsewhere, other specified sites +C0158428|T047|AB|730.89|ICD9CM|Bone infect NEC-mult|Bone infect NEC-mult +C0158428|T047|PT|730.89|ICD9CM|Other infections involving bone in diseases classified elsewhere, multiple sites|Other infections involving bone in diseases classified elsewhere, multiple sites +C2242472|T047|HT|730.9|ICD9CM|Unspecified infection of bone|Unspecified infection of bone +C2242472|T047|AB|730.90|ICD9CM|Bone infec NOS-unsp site|Bone infec NOS-unsp site +C2242472|T047|PT|730.90|ICD9CM|Unspecified infection of bone, site unspecified|Unspecified infection of bone, site unspecified +C0264022|T047|AB|730.91|ICD9CM|Bone infect NOS-shlder|Bone infect NOS-shlder +C0264022|T047|PT|730.91|ICD9CM|Unspecified infection of bone, shoulder region|Unspecified infection of bone, shoulder region +C0264023|T047|AB|730.92|ICD9CM|Bone infect NOS-up/arm|Bone infect NOS-up/arm +C0264023|T047|PT|730.92|ICD9CM|Unspecified infection of bone, upper arm|Unspecified infection of bone, upper arm +C0264024|T047|AB|730.93|ICD9CM|Bone infect NOS-forearm|Bone infect NOS-forearm +C0264024|T047|PT|730.93|ICD9CM|Unspecified infection of bone, forearm|Unspecified infection of bone, forearm +C2242475|T047|AB|730.94|ICD9CM|Bone infect NOS-hand|Bone infect NOS-hand +C2242475|T047|PT|730.94|ICD9CM|Unspecified infection of bone, hand|Unspecified infection of bone, hand +C0158434|T047|AB|730.95|ICD9CM|Bone infect NOS-pelvis|Bone infect NOS-pelvis +C0158434|T047|PT|730.95|ICD9CM|Unspecified infection of bone, pelvic region and thigh|Unspecified infection of bone, pelvic region and thigh +C0264028|T047|AB|730.96|ICD9CM|Bone infect NOS-l/leg|Bone infect NOS-l/leg +C0264028|T047|PT|730.96|ICD9CM|Unspecified infection of bone, lower leg|Unspecified infection of bone, lower leg +C0264029|T047|AB|730.97|ICD9CM|Bone infect NOS-ankle|Bone infect NOS-ankle +C0264029|T047|PT|730.97|ICD9CM|Unspecified infection of bone, ankle and foot|Unspecified infection of bone, ankle and foot +C0158437|T047|AB|730.98|ICD9CM|Bone infect NOS-oth site|Bone infect NOS-oth site +C0158437|T047|PT|730.98|ICD9CM|Unspecified infection of bone, other specified sites|Unspecified infection of bone, other specified sites +C0158438|T047|AB|730.99|ICD9CM|Bone infect NOS-mult|Bone infect NOS-mult +C0158438|T047|PT|730.99|ICD9CM|Unspecified infection of bone, multiple sites|Unspecified infection of bone, multiple sites +C0029402|T047|HT|731|ICD9CM|Osteitis deformans and osteopathies associated with other disorders classified elsewhere|Osteitis deformans and osteopathies associated with other disorders classified elsewhere +C0029403|T047|AB|731.0|ICD9CM|Osteitis deformans NOS|Osteitis deformans NOS +C0029403|T047|PT|731.0|ICD9CM|Osteitis deformans without mention of bone tumor|Osteitis deformans without mention of bone tumor +C0158439|T047|AB|731.1|ICD9CM|Osteitis def in oth dis|Osteitis def in oth dis +C0158439|T047|PT|731.1|ICD9CM|Osteitis deformans in diseases classified elsewhere|Osteitis deformans in diseases classified elsewhere +C0029412|T047|AB|731.2|ICD9CM|Hypertroph osteoarthrop|Hypertroph osteoarthrop +C0029412|T047|PT|731.2|ICD9CM|Hypertrophic pulmonary osteoarthropathy|Hypertrophic pulmonary osteoarthropathy +C1719624|T047|AB|731.3|ICD9CM|Major osseous defects|Major osseous defects +C1719624|T047|PT|731.3|ICD9CM|Major osseous defects|Major osseous defects +C0158440|T047|AB|731.8|ICD9CM|Bone involv in oth dis|Bone involv in oth dis +C0158440|T047|PT|731.8|ICD9CM|Other bone involvement in diseases classified elsewhere|Other bone involvement in diseases classified elsewhere +C0152091|T047|HT|732|ICD9CM|Osteochondropathies|Osteochondropathies +C0036310|T047|AB|732.0|ICD9CM|Juv osteochondros spine|Juv osteochondros spine +C0036310|T047|PT|732.0|ICD9CM|Juvenile osteochondrosis of spine|Juvenile osteochondrosis of spine +C0410502|T047|AB|732.1|ICD9CM|Juv osteochondros pelvis|Juv osteochondros pelvis +C0410502|T047|PT|732.1|ICD9CM|Juvenile osteochondrosis of hip and pelvis|Juvenile osteochondrosis of hip and pelvis +C0158441|T037|AB|732.2|ICD9CM|Femoral epiphysiolysis|Femoral epiphysiolysis +C0158441|T037|PT|732.2|ICD9CM|Nontraumatic slipped upper femoral epiphysis|Nontraumatic slipped upper femoral epiphysis +C0158442|T047|AB|732.3|ICD9CM|Juv osteochondrosis arm|Juv osteochondrosis arm +C0158442|T047|PT|732.3|ICD9CM|Juvenile osteochondrosis of upper extremity|Juvenile osteochondrosis of upper extremity +C1282912|T047|AB|732.4|ICD9CM|Juv osteochondrosis leg|Juv osteochondrosis leg +C1282912|T047|PT|732.4|ICD9CM|Juvenile osteochondrosis of lower extremity, excluding foot|Juvenile osteochondrosis of lower extremity, excluding foot +C0158444|T047|AB|732.5|ICD9CM|Juv osteochondrosis foot|Juv osteochondrosis foot +C0158444|T047|PT|732.5|ICD9CM|Juvenile osteochondrosis of foot|Juvenile osteochondrosis of foot +C0158445|T047|AB|732.6|ICD9CM|Juv osteochondrosis NEC|Juv osteochondrosis NEC +C0158445|T047|PT|732.6|ICD9CM|Other juvenile osteochondrosis|Other juvenile osteochondrosis +C0029421|T047|AB|732.7|ICD9CM|Osteochondrit dissecans|Osteochondrit dissecans +C0029421|T047|PT|732.7|ICD9CM|Osteochondritis dissecans|Osteochondritis dissecans +C0451640|T047|AB|732.8|ICD9CM|Osteochondropathy NEC|Osteochondropathy NEC +C0451640|T047|PT|732.8|ICD9CM|Other specified forms of osteochondropathy|Other specified forms of osteochondropathy +C0152091|T047|AB|732.9|ICD9CM|Osteochondropathy NOS|Osteochondropathy NOS +C0152091|T047|PT|732.9|ICD9CM|Unspecified osteochondropathy|Unspecified osteochondropathy +C0029586|T047|HT|733|ICD9CM|Other disorders of bone and cartilage|Other disorders of bone and cartilage +C0029456|T047|HT|733.0|ICD9CM|Osteoporosis|Osteoporosis +C0029456|T047|AB|733.00|ICD9CM|Osteoporosis NOS|Osteoporosis NOS +C0029456|T047|PT|733.00|ICD9CM|Osteoporosis, unspecified|Osteoporosis, unspecified +C0029459|T047|AB|733.01|ICD9CM|Senile osteoporosis|Senile osteoporosis +C0029459|T047|PT|733.01|ICD9CM|Senile osteoporosis|Senile osteoporosis +C0158447|T047|AB|733.02|ICD9CM|Idiopathic osteoporosis|Idiopathic osteoporosis +C0158447|T047|PT|733.02|ICD9CM|Idiopathic osteoporosis|Idiopathic osteoporosis +C0152256|T047|AB|733.03|ICD9CM|Disuse osteoporosis|Disuse osteoporosis +C0152256|T047|PT|733.03|ICD9CM|Disuse osteoporosis|Disuse osteoporosis +C0029694|T047|AB|733.09|ICD9CM|Osteoporosis NEC|Osteoporosis NEC +C0029694|T047|PT|733.09|ICD9CM|Other osteoporosis|Other osteoporosis +C0016663|T046|HT|733.1|ICD9CM|Pathologic fracture|Pathologic fracture +C0016663|T046|AB|733.10|ICD9CM|Path fx unspecified site|Path fx unspecified site +C0016663|T046|PT|733.10|ICD9CM|Pathologic fracture, unspecified site|Pathologic fracture, unspecified site +C0375504|T046|AB|733.11|ICD9CM|Path fx humerus|Path fx humerus +C0375504|T046|PT|733.11|ICD9CM|Pathologic fracture of humerus|Pathologic fracture of humerus +C0375505|T046|AB|733.12|ICD9CM|Path fx dstl radius ulna|Path fx dstl radius ulna +C0375505|T046|PT|733.12|ICD9CM|Pathologic fracture of distal radius and ulna|Pathologic fracture of distal radius and ulna +C0302491|T046|AB|733.13|ICD9CM|Path fx vertebrae|Path fx vertebrae +C0302491|T046|PT|733.13|ICD9CM|Pathologic fracture of vertebrae|Pathologic fracture of vertebrae +C1443978|T046|AB|733.14|ICD9CM|Path fx neck of femur|Path fx neck of femur +C1443978|T046|PT|733.14|ICD9CM|Pathologic fracture of neck of femur|Pathologic fracture of neck of femur +C0375507|T046|AB|733.15|ICD9CM|Path fx oth spcf prt fmr|Path fx oth spcf prt fmr +C0375507|T046|PT|733.15|ICD9CM|Pathologic fracture of other specified part of femur|Pathologic fracture of other specified part of femur +C0375508|T046|AB|733.16|ICD9CM|Path fx tibia fibula|Path fx tibia fibula +C0375508|T046|PT|733.16|ICD9CM|Pathologic fracture of tibia or fibula|Pathologic fracture of tibia or fibula +C0375509|T046|AB|733.19|ICD9CM|Path fx oth specif site|Path fx oth specif site +C0375509|T046|PT|733.19|ICD9CM|Pathologic fracture of other specified site|Pathologic fracture of other specified site +C0005937|T190|HT|733.2|ICD9CM|Cyst of bone|Cyst of bone +C0005937|T190|PT|733.20|ICD9CM|Cyst of bone (localized), unspecified|Cyst of bone (localized), unspecified +C0005937|T190|AB|733.20|ICD9CM|Cyst of bone NOS|Cyst of bone NOS +C0005937|T190|AB|733.21|ICD9CM|Solitary bone cyst|Solitary bone cyst +C0005937|T190|PT|733.21|ICD9CM|Solitary bone cyst|Solitary bone cyst +C0152244|T047|AB|733.22|ICD9CM|Aneurysmal bone cyst|Aneurysmal bone cyst +C0152244|T047|PT|733.22|ICD9CM|Aneurysmal bone cyst|Aneurysmal bone cyst +C0029525|T047|AB|733.29|ICD9CM|Bone cyst NEC|Bone cyst NEC +C0029525|T047|PT|733.29|ICD9CM|Other bone cyst|Other bone cyst +C0020496|T047|AB|733.3|ICD9CM|Hyperostosis of skull|Hyperostosis of skull +C0020496|T047|PT|733.3|ICD9CM|Hyperostosis of skull|Hyperostosis of skull +C0520474|T046|HT|733.4|ICD9CM|Aseptic necrosis of bone|Aseptic necrosis of bone +C0520474|T046|AB|733.40|ICD9CM|Asept necrosis bone NOS|Asept necrosis bone NOS +C0520474|T046|PT|733.40|ICD9CM|Aseptic necrosis of bone, site unspecified|Aseptic necrosis of bone, site unspecified +C0158449|T047|AB|733.41|ICD9CM|Aseptic necrosis humerus|Aseptic necrosis humerus +C0158449|T047|PT|733.41|ICD9CM|Aseptic necrosis of head of humerus|Aseptic necrosis of head of humerus +C0003977|T047|AB|733.42|ICD9CM|Aseptic necrosis femur|Aseptic necrosis femur +C0003977|T047|PT|733.42|ICD9CM|Aseptic necrosis of head and neck of femur|Aseptic necrosis of head and neck of femur +C0158450|T047|AB|733.43|ICD9CM|Asept necro femur condyl|Asept necro femur condyl +C0158450|T047|PT|733.43|ICD9CM|Aseptic necrosis of medial femoral condyle|Aseptic necrosis of medial femoral condyle +C0158451|T047|PT|733.44|ICD9CM|Aseptic necrosis of talus|Aseptic necrosis of talus +C0158451|T047|AB|733.44|ICD9CM|Aseptic necrosis talus|Aseptic necrosis talus +C1611734|T047|PT|733.45|ICD9CM|Aseptic necrosis of bone, jaw|Aseptic necrosis of bone, jaw +C1611734|T047|AB|733.45|ICD9CM|Aseptic necrosis of jaw|Aseptic necrosis of jaw +C0158452|T047|AB|733.49|ICD9CM|Asept necrosis bone NEC|Asept necrosis bone NEC +C0158452|T047|PT|733.49|ICD9CM|Aseptic necrosis of bone, other|Aseptic necrosis of bone, other +C0152263|T047|AB|733.5|ICD9CM|Osteitis condensans|Osteitis condensans +C0152263|T047|PT|733.5|ICD9CM|Osteitis condensans|Osteitis condensans +C0040213|T047|AB|733.6|ICD9CM|Tietze's disease|Tietze's disease +C0040213|T047|PT|733.6|ICD9CM|Tietze's disease|Tietze's disease +C0205930|T047|AB|733.7|ICD9CM|Algoneurodystrophy|Algoneurodystrophy +C0205930|T047|PT|733.7|ICD9CM|Algoneurodystrophy|Algoneurodystrophy +C0158453|T046|HT|733.8|ICD9CM|Malunion and nonunion of fracture|Malunion and nonunion of fracture +C0158454|T046|AB|733.81|ICD9CM|Malunion of fracture|Malunion of fracture +C0158454|T046|PT|733.81|ICD9CM|Malunion of fracture|Malunion of fracture +C0016665|T046|AB|733.82|ICD9CM|Nonunion of fracture|Nonunion of fracture +C0016665|T046|PT|733.82|ICD9CM|Nonunion of fracture|Nonunion of fracture +C0029586|T047|HT|733.9|ICD9CM|Other and unspecified disorders of bone and cartilage|Other and unspecified disorders of bone and cartilage +C0152091|T047|AB|733.90|ICD9CM|Bone & cartilage dis NOS|Bone & cartilage dis NOS +C0152091|T047|PT|733.90|ICD9CM|Disorder of bone and cartilage, unspecified|Disorder of bone and cartilage, unspecified +C0158456|T047|PT|733.91|ICD9CM|Arrest of bone development or growth|Arrest of bone development or growth +C0158456|T047|AB|733.91|ICD9CM|Arrest of bone growth|Arrest of bone growth +C0085700|T047|AB|733.92|ICD9CM|Chondromalacia|Chondromalacia +C0085700|T047|PT|733.92|ICD9CM|Chondromalacia|Chondromalacia +C0949138|T047|PT|733.93|ICD9CM|Stress fracture of tibia or fibula|Stress fracture of tibia or fibula +C0949138|T047|AB|733.93|ICD9CM|Stress fx tibia/fibula|Stress fx tibia/fibula +C0949139|T047|PT|733.94|ICD9CM|Stress fracture of the metatarsals|Stress fracture of the metatarsals +C0949139|T047|AB|733.94|ICD9CM|Stress fx metatarsals|Stress fx metatarsals +C0949140|T047|AB|733.95|ICD9CM|Stress fracture bone NEC|Stress fracture bone NEC +C0949140|T047|PT|733.95|ICD9CM|Stress fracture of other bone|Stress fracture of other bone +C2349651|T046|PT|733.96|ICD9CM|Stress fracture of femoral neck|Stress fracture of femoral neck +C2349651|T046|AB|733.96|ICD9CM|Stress fx femoral neck|Stress fx femoral neck +C2349653|T047|PT|733.97|ICD9CM|Stress fracture of shaft of femur|Stress fracture of shaft of femur +C2349653|T047|AB|733.97|ICD9CM|Stress fx shaft femur|Stress fx shaft femur +C2317110|T037|PT|733.98|ICD9CM|Stress fracture of pelvis|Stress fracture of pelvis +C2317110|T037|AB|733.98|ICD9CM|Stress fx pelvis|Stress fx pelvis +C0029586|T047|AB|733.99|ICD9CM|Bone & cartilage dis NEC|Bone & cartilage dis NEC +C0029586|T047|PT|733.99|ICD9CM|Other disorders of bone and cartilage|Other disorders of bone and cartilage +C0264133|T020|AB|734|ICD9CM|Flat foot|Flat foot +C0264133|T020|PT|734|ICD9CM|Flat foot|Flat foot +C0158457|T020|HT|735|ICD9CM|Acquired deformities of toe|Acquired deformities of toe +C0158458|T020|AB|735.0|ICD9CM|Hallux valgus|Hallux valgus +C0158458|T020|PT|735.0|ICD9CM|Hallux valgus (acquired)|Hallux valgus (acquired) +C0866710|T020|AB|735.1|ICD9CM|Hallux varus|Hallux varus +C0866710|T020|PT|735.1|ICD9CM|Hallux varus (acquired)|Hallux varus (acquired) +C0264134|T047|AB|735.2|ICD9CM|Hallux rigidus|Hallux rigidus +C0264134|T047|PT|735.2|ICD9CM|Hallux rigidus|Hallux rigidus +C0410779|T020|AB|735.3|ICD9CM|Hallux malleus|Hallux malleus +C0410779|T020|PT|735.3|ICD9CM|Hallux malleus|Hallux malleus +C0477572|T020|AB|735.4|ICD9CM|Other hammer toe|Other hammer toe +C0477572|T020|PT|735.4|ICD9CM|Other hammer toe (acquired)|Other hammer toe (acquired) +C0158461|T020|AB|735.5|ICD9CM|Claw toe|Claw toe +C0158461|T020|PT|735.5|ICD9CM|Claw toe (acquired)|Claw toe (acquired) +C0477573|T020|AB|735.8|ICD9CM|Acq deformity of toe NEC|Acq deformity of toe NEC +C0477573|T020|PT|735.8|ICD9CM|Other acquired deformities of toe|Other acquired deformities of toe +C0158457|T020|AB|735.9|ICD9CM|Acq deformity of toe NOS|Acq deformity of toe NOS +C0158457|T020|PT|735.9|ICD9CM|Unspecified acquired deformity of toe|Unspecified acquired deformity of toe +C0158463|T020|HT|736|ICD9CM|Other acquired deformities of limbs|Other acquired deformities of limbs +C0158464|T020|HT|736.0|ICD9CM|Acquired deformities of forearm, excluding fingers|Acquired deformities of forearm, excluding fingers +C0041784|T190|AB|736.00|ICD9CM|Forearm deformity NOS|Forearm deformity NOS +C0041784|T190|PT|736.00|ICD9CM|Unspecified deformity of forearm, excluding fingers|Unspecified deformity of forearm, excluding fingers +C0158465|T020|AB|736.01|ICD9CM|Cubitus valgus|Cubitus valgus +C0158465|T020|PT|736.01|ICD9CM|Cubitus valgus (acquired)|Cubitus valgus (acquired) +C0158466|T020|AB|736.02|ICD9CM|Cubitus varus|Cubitus varus +C0158466|T020|PT|736.02|ICD9CM|Cubitus varus (acquired)|Cubitus varus (acquired) +C0158467|T020|PT|736.03|ICD9CM|Valgus deformity of wrist (acquired)|Valgus deformity of wrist (acquired) +C0158467|T020|AB|736.03|ICD9CM|Valgus deformity wrist|Valgus deformity wrist +C0158468|T020|PT|736.04|ICD9CM|Varus deformity of wrist (acquired)|Varus deformity of wrist (acquired) +C0158468|T020|AB|736.04|ICD9CM|Varus deformity wrist|Varus deformity wrist +C0231666|T033|AB|736.05|ICD9CM|Wrist drop|Wrist drop +C0231666|T033|PT|736.05|ICD9CM|Wrist drop (acquired)|Wrist drop (acquired) +C0158470|T020|AB|736.06|ICD9CM|Claw hand|Claw hand +C0158470|T020|PT|736.06|ICD9CM|Claw hand (acquired)|Claw hand (acquired) +C0158471|T020|AB|736.07|ICD9CM|Club hand, acquired|Club hand, acquired +C0158471|T020|PT|736.07|ICD9CM|Club hand, acquired|Club hand, acquired +C0158472|T020|AB|736.09|ICD9CM|Forearm deformity NEC|Forearm deformity NEC +C0158472|T020|PT|736.09|ICD9CM|Other acquired deformities of forearm, excluding fingers|Other acquired deformities of forearm, excluding fingers +C0158473|T020|AB|736.1|ICD9CM|Mallet finger|Mallet finger +C0158473|T020|PT|736.1|ICD9CM|Mallet finger|Mallet finger +C0158474|T020|HT|736.2|ICD9CM|Other acquired deformities of finger|Other acquired deformities of finger +C0410740|T020|AB|736.20|ICD9CM|Acq finger deformity NOS|Acq finger deformity NOS +C0410740|T020|PT|736.20|ICD9CM|Unspecified deformity of finger|Unspecified deformity of finger +C0158476|T020|AB|736.21|ICD9CM|Boutonniere deformity|Boutonniere deformity +C0158476|T020|PT|736.21|ICD9CM|Boutonniere deformity|Boutonniere deformity +C0158477|T020|AB|736.22|ICD9CM|Swan-neck deformity|Swan-neck deformity +C0158477|T020|PT|736.22|ICD9CM|Swan-neck deformity|Swan-neck deformity +C0158474|T020|AB|736.29|ICD9CM|Acq finger deformity NEC|Acq finger deformity NEC +C0158474|T020|PT|736.29|ICD9CM|Other acquired deformities of finger|Other acquired deformities of finger +C0158478|T020|HT|736.3|ICD9CM|Acquired deformities of hip|Acquired deformities of hip +C0158478|T020|AB|736.30|ICD9CM|Acq hip deformity NOS|Acq hip deformity NOS +C0158478|T020|PT|736.30|ICD9CM|Unspecified acquired deformity of hip|Unspecified acquired deformity of hip +C0158480|T020|AB|736.31|ICD9CM|Coxa valga|Coxa valga +C0158480|T020|PT|736.31|ICD9CM|Coxa valga (acquired)|Coxa valga (acquired) +C0158481|T020|AB|736.32|ICD9CM|Coxa vara|Coxa vara +C0158481|T020|PT|736.32|ICD9CM|Coxa vara (acquired)|Coxa vara (acquired) +C0158482|T020|AB|736.39|ICD9CM|Acq hip deformity NEC|Acq hip deformity NEC +C0158482|T020|PT|736.39|ICD9CM|Other acquired deformities of hip|Other acquired deformities of hip +C0158483|T020|HT|736.4|ICD9CM|Genu valgum or varum (acquired)|Genu valgum or varum (acquired) +C0158484|T020|AB|736.41|ICD9CM|Genu valgum|Genu valgum +C0158484|T020|PT|736.41|ICD9CM|Genu valgum (acquired)|Genu valgum (acquired) +C0158485|T020|AB|736.42|ICD9CM|Genu varum|Genu varum +C0158485|T020|PT|736.42|ICD9CM|Genu varum (acquired)|Genu varum (acquired) +C0158486|T020|AB|736.5|ICD9CM|Genu recurvatum|Genu recurvatum +C0158486|T020|PT|736.5|ICD9CM|Genu recurvatum (acquired)|Genu recurvatum (acquired) +C0158487|T020|AB|736.6|ICD9CM|Acq knee deformity NEC|Acq knee deformity NEC +C0158487|T020|PT|736.6|ICD9CM|Other acquired deformities of knee|Other acquired deformities of knee +C0158488|T020|HT|736.7|ICD9CM|Other acquired deformities of ankle and foot|Other acquired deformities of ankle and foot +C0264150|T020|AB|736.70|ICD9CM|Acq ankle-foot def NOS|Acq ankle-foot def NOS +C0264150|T020|PT|736.70|ICD9CM|Unspecified deformity of ankle and foot, acquired|Unspecified deformity of ankle and foot, acquired +C0158489|T020|AB|736.71|ICD9CM|Acq equinovarus|Acq equinovarus +C0158489|T020|PT|736.71|ICD9CM|Acquired equinovarus deformity|Acquired equinovarus deformity +C0158490|T020|AB|736.72|ICD9CM|Acq equinus deformity|Acq equinus deformity +C0158490|T020|PT|736.72|ICD9CM|Equinus deformity of foot, acquired|Equinus deformity of foot, acquired +C2239098|T047|AB|736.73|ICD9CM|Cavus deformity of foot|Cavus deformity of foot +C2239098|T047|PT|736.73|ICD9CM|Cavus deformity of foot, acquired|Cavus deformity of foot, acquired +C0158461|T020|AB|736.74|ICD9CM|Claw foot, acquired|Claw foot, acquired +C0158461|T020|PT|736.74|ICD9CM|Claw foot, acquired|Claw foot, acquired +C0158493|T020|AB|736.75|ICD9CM|Acq cavovarus deformity|Acq cavovarus deformity +C0158493|T020|PT|736.75|ICD9CM|Cavovarus deformity of foot, acquired|Cavovarus deformity of foot, acquired +C0158494|T020|AB|736.76|ICD9CM|Calcaneus deformity NEC|Calcaneus deformity NEC +C0158494|T020|PT|736.76|ICD9CM|Other acquired calcaneus deformity|Other acquired calcaneus deformity +C0158488|T020|AB|736.79|ICD9CM|Acq ankle-foot def NEC|Acq ankle-foot def NEC +C0158488|T020|PT|736.79|ICD9CM|Other acquired deformities of ankle and foot|Other acquired deformities of ankle and foot +C0158495|T020|HT|736.8|ICD9CM|Acquired deformities of other parts of limbs|Acquired deformities of other parts of limbs +C0264156|T020|AB|736.81|ICD9CM|Unequal leg length|Unequal leg length +C0264156|T020|PT|736.81|ICD9CM|Unequal leg length (acquired)|Unequal leg length (acquired) +C0029486|T020|AB|736.89|ICD9CM|Oth acq limb deformity|Oth acq limb deformity +C0029486|T020|PT|736.89|ICD9CM|Other acquired deformity of other parts of limb|Other acquired deformity of other parts of limb +C0264155|T020|AB|736.9|ICD9CM|Acq limb deformity NOS|Acq limb deformity NOS +C0264155|T020|PT|736.9|ICD9CM|Acquired deformity of limb, site unspecified|Acquired deformity of limb, site unspecified +C0037932|T033|HT|737|ICD9CM|Curvature of spine|Curvature of spine +C0158497|T020|AB|737.0|ICD9CM|Adoles postural kyphosis|Adoles postural kyphosis +C0158497|T020|PT|737.0|ICD9CM|Adolescent postural kyphosis|Adolescent postural kyphosis +C0022822|T020|HT|737.1|ICD9CM|Kyphosis (acquired)|Kyphosis (acquired) +C0022823|T020|PT|737.10|ICD9CM|Kyphosis (acquired) (postural)|Kyphosis (acquired) (postural) +C0022823|T020|AB|737.10|ICD9CM|Kyphosis NOS|Kyphosis NOS +C0158498|T046|PT|737.11|ICD9CM|Kyphosis due to radiation|Kyphosis due to radiation +C0158498|T046|AB|737.11|ICD9CM|Radiation kyphosis|Radiation kyphosis +C0158499|T020|PT|737.12|ICD9CM|Kyphosis, postlaminectomy|Kyphosis, postlaminectomy +C0158499|T020|AB|737.12|ICD9CM|Postlaminectomy kyphosis|Postlaminectomy kyphosis +C0029653|T020|AB|737.19|ICD9CM|Kyphosis NEC|Kyphosis NEC +C0029653|T020|PT|737.19|ICD9CM|Other kyphosis (acquired)|Other kyphosis (acquired) +C0024004|T020|HT|737.2|ICD9CM|Lordosis (acquired)|Lordosis (acquired) +C0024005|T020|PT|737.20|ICD9CM|Lordosis (acquired) (postural)|Lordosis (acquired) (postural) +C0024005|T020|AB|737.20|ICD9CM|Lordosis NOS|Lordosis NOS +C0158500|T020|PT|737.21|ICD9CM|Lordosis, postlaminectomy|Lordosis, postlaminectomy +C0158500|T020|AB|737.21|ICD9CM|Postlaminectomy lordosis|Postlaminectomy lordosis +C0158501|T020|AB|737.22|ICD9CM|Oth postsurgery lordosis|Oth postsurgery lordosis +C0158501|T020|PT|737.22|ICD9CM|Other postsurgical lordosis|Other postsurgical lordosis +C0029658|T020|AB|737.29|ICD9CM|Lordosis NEC|Lordosis NEC +C0029658|T020|PT|737.29|ICD9CM|Other lordosis (acquired)|Other lordosis (acquired) +C0022820|T190|HT|737.3|ICD9CM|Kyphoscoliosis and scoliosis|Kyphoscoliosis and scoliosis +C0036440|T190|AB|737.30|ICD9CM|Idiopathic scoliosis|Idiopathic scoliosis +C0036440|T190|PT|737.30|ICD9CM|Scoliosis [and kyphoscoliosis], idiopathic|Scoliosis [and kyphoscoliosis], idiopathic +C0158502|T020|AB|737.31|ICD9CM|Resolv idiopath scolios|Resolv idiopath scolios +C0158502|T020|PT|737.31|ICD9CM|Resolving infantile idiopathic scoliosis|Resolving infantile idiopathic scoliosis +C0158503|T047|AB|737.32|ICD9CM|Progr idiopath scoliosis|Progr idiopath scoliosis +C0158503|T047|PT|737.32|ICD9CM|Progressive infantile idiopathic scoliosis|Progressive infantile idiopathic scoliosis +C0158504|T046|AB|737.33|ICD9CM|Radiation scoliosis|Radiation scoliosis +C0158504|T046|PT|737.33|ICD9CM|Scoliosis due to radiation|Scoliosis due to radiation +C0158505|T047|AB|737.34|ICD9CM|Thoracogenic scoliosis|Thoracogenic scoliosis +C0158505|T047|PT|737.34|ICD9CM|Thoracogenic scoliosis|Thoracogenic scoliosis +C0029652|T047|PT|737.39|ICD9CM|Other kyphoscoliosis and scoliosis|Other kyphoscoliosis and scoliosis +C0029652|T047|AB|737.39|ICD9CM|Scoliosis NEC|Scoliosis NEC +C0158506|T190|HT|737.4|ICD9CM|Curvature of spine associated with other conditions|Curvature of spine associated with other conditions +C0158506|T190|PT|737.40|ICD9CM|Curvature of spine, unspecified, associated with other conditions|Curvature of spine, unspecified, associated with other conditions +C0158506|T190|AB|737.40|ICD9CM|Spin curv NOS in oth dis|Spin curv NOS in oth dis +C0158507|T047|PT|737.41|ICD9CM|Kyphosis associated with other conditions|Kyphosis associated with other conditions +C0158507|T047|AB|737.41|ICD9CM|Kyphosis in oth dis|Kyphosis in oth dis +C0158508|T047|PT|737.42|ICD9CM|Lordosis associated with other conditions|Lordosis associated with other conditions +C0158508|T047|AB|737.42|ICD9CM|Lordosis in oth dis|Lordosis in oth dis +C0158509|T047|PT|737.43|ICD9CM|Scoliosis associated with other conditions|Scoliosis associated with other conditions +C0158509|T047|AB|737.43|ICD9CM|Scoliosis in oth dis|Scoliosis in oth dis +C0410693|T020|AB|737.8|ICD9CM|Curvature of spine NEC|Curvature of spine NEC +C0410693|T020|PT|737.8|ICD9CM|Other curvatures of spine|Other curvatures of spine +C0158506|T190|AB|737.9|ICD9CM|Curvature of spine NOS|Curvature of spine NOS +C0158506|T190|PT|737.9|ICD9CM|Unspecified curvature of spine|Unspecified curvature of spine +C0158510|T020|HT|738|ICD9CM|Other acquired musculoskeletal deformity|Other acquired musculoskeletal deformity +C0028431|T020|AB|738.0|ICD9CM|Acq nose deformity|Acq nose deformity +C0028431|T020|PT|738.0|ICD9CM|Acquired deformity of nose|Acquired deformity of nose +C0158511|T020|HT|738.1|ICD9CM|Other acquired deformity of head|Other acquired deformity of head +C1290220|T020|PT|738.10|ICD9CM|Unspecified acquired deformity of head|Unspecified acquired deformity of head +C1290220|T020|AB|738.10|ICD9CM|Unspf acq deformity head|Unspf acq deformity head +C4082244|T047|AB|738.11|ICD9CM|Zygomatic hyperplasia|Zygomatic hyperplasia +C4082244|T047|PT|738.11|ICD9CM|Zygomatic hyperplasia|Zygomatic hyperplasia +C0375512|T020|AB|738.12|ICD9CM|Zygomatic hypoplasia|Zygomatic hypoplasia +C0375512|T020|PT|738.12|ICD9CM|Zygomatic hypoplasia|Zygomatic hypoplasia +C0375513|T020|AB|738.19|ICD9CM|Oth spcf deformity head|Oth spcf deformity head +C0375513|T020|PT|738.19|ICD9CM|Other specified acquired deformity of head|Other specified acquired deformity of head +C0158512|T020|AB|738.2|ICD9CM|Acq neck deformity|Acq neck deformity +C0158512|T020|PT|738.2|ICD9CM|Acquired deformity of neck|Acquired deformity of neck +C0001171|T020|AB|738.3|ICD9CM|Acq chest deformity|Acq chest deformity +C0001171|T020|PT|738.3|ICD9CM|Acquired deformity of chest and rib|Acquired deformity of chest and rib +C2242765|T020|AB|738.4|ICD9CM|Acq spondylolisthesis|Acq spondylolisthesis +C2242765|T020|PT|738.4|ICD9CM|Acquired spondylolisthesis|Acquired spondylolisthesis +C0158514|T020|AB|738.5|ICD9CM|Other acq back deformity|Other acq back deformity +C0158514|T020|PT|738.5|ICD9CM|Other acquired deformity of back or spine|Other acquired deformity of back or spine +C0158515|T020|AB|738.6|ICD9CM|Acq pelvic deformity|Acq pelvic deformity +C0158515|T020|PT|738.6|ICD9CM|Acquired deformity of pelvis|Acquired deformity of pelvis +C0158516|T020|AB|738.7|ICD9CM|Cauliflower ear|Cauliflower ear +C0158516|T020|PT|738.7|ICD9CM|Cauliflower ear|Cauliflower ear +C0158517|T020|AB|738.8|ICD9CM|Acq deformity NEC|Acq deformity NEC +C0158517|T020|PT|738.8|ICD9CM|Acquired deformity of other specified site|Acquired deformity of other specified site +C0264132|T020|AB|738.9|ICD9CM|Acq deformity NOS|Acq deformity NOS +C0264132|T020|PT|738.9|ICD9CM|Acquired deformity of unspecified site|Acquired deformity of unspecified site +C0869269|T047|HT|739|ICD9CM|Nonallopathic lesions, not elsewhere classified|Nonallopathic lesions, not elsewhere classified +C0877720|T047|PT|739.0|ICD9CM|Nonallopathic lesions, head region|Nonallopathic lesions, head region +C0877720|T047|AB|739.0|ICD9CM|Somat dys head region|Somat dys head region +C0877722|T047|PT|739.1|ICD9CM|Nonallopathic lesions, cervical region|Nonallopathic lesions, cervical region +C0877722|T047|AB|739.1|ICD9CM|Somat dysfunc cervic reg|Somat dysfunc cervic reg +C0877724|T047|PT|739.2|ICD9CM|Nonallopathic lesions, thoracic region|Nonallopathic lesions, thoracic region +C0877724|T047|AB|739.2|ICD9CM|Somat dysfunc thorac reg|Somat dysfunc thorac reg +C0877726|T047|PT|739.3|ICD9CM|Nonallopathic lesions, lumbar region|Nonallopathic lesions, lumbar region +C0877726|T047|AB|739.3|ICD9CM|Somat dysfunc lumbar reg|Somat dysfunc lumbar reg +C0877728|T047|PT|739.4|ICD9CM|Nonallopathic lesions, sacral region|Nonallopathic lesions, sacral region +C0877728|T047|AB|739.4|ICD9CM|Somat dysfunc sacral reg|Somat dysfunc sacral reg +C0877730|T047|PT|739.5|ICD9CM|Nonallopathic lesions, pelvic region|Nonallopathic lesions, pelvic region +C0877730|T047|AB|739.5|ICD9CM|Somat dysfunc pelvic reg|Somat dysfunc pelvic reg +C0877732|T047|PT|739.6|ICD9CM|Nonallopathic lesions, lower extremities|Nonallopathic lesions, lower extremities +C0877732|T047|AB|739.6|ICD9CM|Somat dysfunc lower extr|Somat dysfunc lower extr +C0877734|T047|PT|739.7|ICD9CM|Nonallopathic lesions, upper extremities|Nonallopathic lesions, upper extremities +C0877734|T047|AB|739.7|ICD9CM|Somat dysfunc upper extr|Somat dysfunc upper extr +C0877736|T047|PT|739.8|ICD9CM|Nonallopathic lesions, rib cage|Nonallopathic lesions, rib cage +C0877736|T047|AB|739.8|ICD9CM|Somat dysfunc rib cage|Somat dysfunc rib cage +C0302396|T047|PT|739.9|ICD9CM|Nonallopathic lesions, abdomen and other sites|Nonallopathic lesions, abdomen and other sites +C0302396|T047|AB|739.9|ICD9CM|Somatic dysfunction NEC|Somatic dysfunction NEC +C0158530|T019|HT|740|ICD9CM|Anencephalus and similar anomalies|Anencephalus and similar anomalies +C0000768|T019|HT|740-759.99|ICD9CM|CONGENITAL ANOMALIES|CONGENITAL ANOMALIES +C0002902|T019|AB|740.0|ICD9CM|Anencephalus|Anencephalus +C0002902|T019|PT|740.0|ICD9CM|Anencephalus|Anencephalus +C0152426|T019|AB|740.1|ICD9CM|Craniorachischisis|Craniorachischisis +C0152426|T019|PT|740.1|ICD9CM|Craniorachischisis|Craniorachischisis +C0152234|T019|AB|740.2|ICD9CM|Iniencephaly|Iniencephaly +C0152234|T019|PT|740.2|ICD9CM|Iniencephaly|Iniencephaly +C0080178|T019|HT|741|ICD9CM|Spina bifida|Spina bifida +C0477973|T019|HT|741.0|ICD9CM|Spina bifida with hydrocephalus|Spina bifida with hydrocephalus +C0477973|T019|AB|741.00|ICD9CM|Spin bif w hydroceph NOS|Spin bif w hydroceph NOS +C0477973|T019|PT|741.00|ICD9CM|Spina bifida with hydrocephalus, unspecified region|Spina bifida with hydrocephalus, unspecified region +C0431321|T019|AB|741.01|ICD9CM|Spin bif w hydrceph-cerv|Spin bif w hydrceph-cerv +C0431321|T019|PT|741.01|ICD9CM|Spina bifida with hydrocephalus, cervical region|Spina bifida with hydrocephalus, cervical region +C0431320|T019|AB|741.02|ICD9CM|Spin bif w hydrceph-dors|Spin bif w hydrceph-dors +C0431320|T019|PT|741.02|ICD9CM|Spina bifida with hydrocephalus, dorsal (thoracic) region|Spina bifida with hydrocephalus, dorsal (thoracic) region +C0431319|T019|AB|741.03|ICD9CM|Spin bif w hydrceph-lumb|Spin bif w hydrceph-lumb +C0431319|T019|PT|741.03|ICD9CM|Spina bifida with hydrocephalus, lumbar region|Spina bifida with hydrocephalus, lumbar region +C0158534|T019|HT|741.9|ICD9CM|Spina bifida without mention of hydrocephalus|Spina bifida without mention of hydrocephalus +C0158534|T019|AB|741.90|ICD9CM|Spina bifida|Spina bifida +C0158534|T019|PT|741.90|ICD9CM|Spina bifida without mention of hydrocephalus, unspecified region|Spina bifida without mention of hydrocephalus, unspecified region +C0158535|T019|PT|741.91|ICD9CM|Spina bifida without mention of hydrocephalus, cervical region|Spina bifida without mention of hydrocephalus, cervical region +C0158535|T019|AB|741.91|ICD9CM|Spina bifida-cerv|Spina bifida-cerv +C0158536|T019|PT|741.92|ICD9CM|Spina bifida without mention of hydrocephalus, dorsal (thoracic) region|Spina bifida without mention of hydrocephalus, dorsal (thoracic) region +C0158536|T019|AB|741.92|ICD9CM|Spina bifida-dorsal|Spina bifida-dorsal +C0158537|T019|PT|741.93|ICD9CM|Spina bifida without mention of hydrocephalus, lumbar region|Spina bifida without mention of hydrocephalus, lumbar region +C0158537|T019|AB|741.93|ICD9CM|Spina bifida-lumbar|Spina bifida-lumbar +C0158538|T019|HT|742|ICD9CM|Other congenital anomalies of nervous system|Other congenital anomalies of nervous system +C4551722|T019|AB|742.0|ICD9CM|Encephalocele|Encephalocele +C4551722|T019|PT|742.0|ICD9CM|Encephalocele|Encephalocele +C0025958|T019|AB|742.1|ICD9CM|Microcephalus|Microcephalus +C0025958|T019|PT|742.1|ICD9CM|Microcephalus|Microcephalus +C0079157|T019|PT|742.2|ICD9CM|Congenital reduction deformities of brain|Congenital reduction deformities of brain +C0079157|T019|AB|742.2|ICD9CM|Reduction deform, brain|Reduction deform, brain +C0020256|T019|AB|742.3|ICD9CM|Congenital hydrocephalus|Congenital hydrocephalus +C0020256|T019|PT|742.3|ICD9CM|Congenital hydrocephalus|Congenital hydrocephalus +C0477972|T019|AB|742.4|ICD9CM|Brain anomaly NEC|Brain anomaly NEC +C0477972|T019|PT|742.4|ICD9CM|Other specified congenital anomalies of brain|Other specified congenital anomalies of brain +C0477975|T019|HT|742.5|ICD9CM|Other specified congenital anomalies of spinal cord|Other specified congenital anomalies of spinal cord +C0011999|T019|AB|742.51|ICD9CM|Diastematomyelia|Diastematomyelia +C0011999|T019|PT|742.51|ICD9CM|Diastematomyelia|Diastematomyelia +C0152444|T047|AB|742.53|ICD9CM|Hydromyelia|Hydromyelia +C0152444|T047|PT|742.53|ICD9CM|Hydromyelia|Hydromyelia +C0477975|T019|PT|742.59|ICD9CM|Other specified congenital anomalies of spinal cord|Other specified congenital anomalies of spinal cord +C0477975|T019|AB|742.59|ICD9CM|Spinal cord anomaly NEC|Spinal cord anomaly NEC +C0477976|T019|AB|742.8|ICD9CM|Nervous system anom NEC|Nervous system anom NEC +C0477976|T019|PT|742.8|ICD9CM|Other specified congenital anomalies of nervous system|Other specified congenital anomalies of nervous system +C0497552|T019|AB|742.9|ICD9CM|Nervous system anom NOS|Nervous system anom NOS +C0497552|T019|PT|742.9|ICD9CM|Unspecified congenital anomaly of brain, spinal cord, and nervous system|Unspecified congenital anomaly of brain, spinal cord, and nervous system +C0015393|T019|HT|743|ICD9CM|Congenital anomalies of eye|Congenital anomalies of eye +C0003119|T019|HT|743.0|ICD9CM|Anophthalmos|Anophthalmos +C0003119|T019|AB|743.00|ICD9CM|Clinic anophthalmos NOS|Clinic anophthalmos NOS +C0003119|T019|PT|743.00|ICD9CM|Clinical anophthalmos, unspecified|Clinical anophthalmos, unspecified +C0158543|T019|AB|743.03|ICD9CM|Congen cystic eyeball|Congen cystic eyeball +C0158543|T019|PT|743.03|ICD9CM|Cystic eyeball, congenital|Cystic eyeball, congenital +C0311249|T019|AB|743.06|ICD9CM|Cryptophthalmos|Cryptophthalmos +C0311249|T019|PT|743.06|ICD9CM|Cryptophthalmos|Cryptophthalmos +C0026010|T019|HT|743.1|ICD9CM|Microphthalmos|Microphthalmos +C0026010|T019|AB|743.10|ICD9CM|Microphthalmos NOS|Microphthalmos NOS +C0026010|T019|PT|743.10|ICD9CM|Microphthalmos, unspecified|Microphthalmos, unspecified +C0026010|T019|AB|743.11|ICD9CM|Simple microphthalmos|Simple microphthalmos +C0026010|T019|PT|743.11|ICD9CM|Simple microphthalmos|Simple microphthalmos +C0158545|T019|AB|743.12|ICD9CM|Microphth w oth eye anom|Microphth w oth eye anom +C0158545|T019|PT|743.12|ICD9CM|Microphthalmos associated with other anomalies of eye and adnexa|Microphthalmos associated with other anomalies of eye and adnexa +C4551507|T019|HT|743.2|ICD9CM|Buphthalmos|Buphthalmos +C4551507|T019|AB|743.20|ICD9CM|Buphthalmos NOS|Buphthalmos NOS +C4551507|T019|PT|743.20|ICD9CM|Buphthalmos, unspecified|Buphthalmos, unspecified +C0311251|T019|AB|743.21|ICD9CM|Simple buphthalmos|Simple buphthalmos +C0311251|T019|PT|743.21|ICD9CM|Simple buphthalmos|Simple buphthalmos +C0158547|T019|AB|743.22|ICD9CM|Buphthal w oth eye anom|Buphthal w oth eye anom +C0158547|T019|PT|743.22|ICD9CM|Buphthalmos associated with other ocular anomalies|Buphthalmos associated with other ocular anomalies +C0158548|T019|HT|743.3|ICD9CM|Congenital cataract and lens anomalies|Congenital cataract and lens anomalies +C0009691|T019|AB|743.30|ICD9CM|Congenital cataract NOS|Congenital cataract NOS +C0009691|T019|PT|743.30|ICD9CM|Congenital cataract, unspecified|Congenital cataract, unspecified +C0158549|T019|AB|743.31|ICD9CM|Capsular cataract|Capsular cataract +C0158549|T019|PT|743.31|ICD9CM|Congenital capsular and subcapsular cataract|Congenital capsular and subcapsular cataract +C0489970|T019|PT|743.32|ICD9CM|Congenital cortical and zonular cataract|Congenital cortical and zonular cataract +C0489970|T019|AB|743.32|ICD9CM|Cortical/zonular catarac|Cortical/zonular catarac +C0158551|T019|PT|743.33|ICD9CM|Congenital nuclear cataract|Congenital nuclear cataract +C0158551|T019|AB|743.33|ICD9CM|Nuclear cataract|Nuclear cataract +C0158552|T019|AB|743.34|ICD9CM|Cong tot/subtot cataract|Cong tot/subtot cataract +C0158552|T019|PT|743.34|ICD9CM|Total and subtotal cataract, congenital|Total and subtotal cataract, congenital +C0152422|T019|AB|743.35|ICD9CM|Congenital aphakia|Congenital aphakia +C0152422|T019|PT|743.35|ICD9CM|Congenital aphakia|Congenital aphakia +C0158553|T019|AB|743.36|ICD9CM|Anomalies of lens shape|Anomalies of lens shape +C0158553|T019|PT|743.36|ICD9CM|Congenital anomalies of lens shape|Congenital anomalies of lens shape +C0013581|T019|PT|743.37|ICD9CM|Congenital ectopic lens|Congenital ectopic lens +C0013581|T019|AB|743.37|ICD9CM|Congenital ectopic lens|Congenital ectopic lens +C0158554|T019|AB|743.39|ICD9CM|Cong catar/lens anom NEC|Cong catar/lens anom NEC +C0158554|T019|PT|743.39|ICD9CM|Other congenital cataract and lens anomalies|Other congenital cataract and lens anomalies +C0158555|T019|HT|743.4|ICD9CM|Coloboma and other anomalies of anterior segment|Coloboma and other anomalies of anterior segment +C0344528|T019|AB|743.41|ICD9CM|Anom corneal size/shape|Anom corneal size/shape +C0344528|T019|PT|743.41|ICD9CM|Congenital anomalies of corneal size and shape|Congenital anomalies of corneal size and shape +C0158557|T019|AB|743.42|ICD9CM|Cong cornea opac aff vis|Cong cornea opac aff vis +C0158557|T019|PT|743.42|ICD9CM|Corneal opacities, interfering with vision, congenital|Corneal opacities, interfering with vision, congenital +C0158558|T019|AB|743.43|ICD9CM|Cong corneal opacit NEC|Cong corneal opacit NEC +C0158558|T019|PT|743.43|ICD9CM|Other corneal opacities, congenital|Other corneal opacities, congenital +C0701146|T019|AB|743.44|ICD9CM|Anom anter chamber-eye|Anom anter chamber-eye +C0701146|T019|PT|743.44|ICD9CM|Specified congenital anomalies of anterior chamber, chamber angle, and related structures|Specified congenital anomalies of anterior chamber, chamber angle, and related structures +C0003076|T019|AB|743.45|ICD9CM|Aniridia|Aniridia +C0003076|T019|PT|743.45|ICD9CM|Aniridia|Aniridia +C0158560|T047|AB|743.46|ICD9CM|Anom iris & cil body NEC|Anom iris & cil body NEC +C0158560|T047|PT|743.46|ICD9CM|Other specified congenital anomalies of iris and ciliary body|Other specified congenital anomalies of iris and ciliary body +C0344538|T019|AB|743.47|ICD9CM|Anomalies of sclera|Anomalies of sclera +C0344538|T019|PT|743.47|ICD9CM|Specified congenital anomalies of sclera|Specified congenital anomalies of sclera +C0158562|T019|AB|743.48|ICD9CM|Mult anom anter seg-eye|Mult anom anter seg-eye +C0158562|T019|PT|743.48|ICD9CM|Multiple and combined congenital anomalies of anterior segment|Multiple and combined congenital anomalies of anterior segment +C0029552|T019|AB|743.49|ICD9CM|Anom anter seg NEC-eye|Anom anter seg NEC-eye +C0029552|T019|PT|743.49|ICD9CM|Other congenital anomalies of anterior segment|Other congenital anomalies of anterior segment +C0439001|T019|HT|743.5|ICD9CM|Congenital anomalies of posterior segment|Congenital anomalies of posterior segment +C0158564|T019|AB|743.51|ICD9CM|Vitreous anomalies|Vitreous anomalies +C0158564|T019|PT|743.51|ICD9CM|Vitreous anomalies|Vitreous anomalies +C0240896|T019|AB|743.52|ICD9CM|Fundus coloboma|Fundus coloboma +C0240896|T019|PT|743.52|ICD9CM|Fundus coloboma|Fundus coloboma +C0158566|T047|PT|743.53|ICD9CM|Chorioretinal degeneration, congenital|Chorioretinal degeneration, congenital +C0158566|T047|AB|743.53|ICD9CM|Cong chorioretinal degen|Cong chorioretinal degen +C0158567|T019|AB|743.54|ICD9CM|Cong fold/cyst post eye|Cong fold/cyst post eye +C0158567|T019|PT|743.54|ICD9CM|Congenital folds and cysts of posterior segment|Congenital folds and cysts of posterior segment +C0158568|T047|AB|743.55|ICD9CM|Cong macular change-eye|Cong macular change-eye +C0158568|T047|PT|743.55|ICD9CM|Congenital macular changes|Congenital macular changes +C0029729|T047|AB|743.56|ICD9CM|Cong retinal changes NEC|Cong retinal changes NEC +C0029729|T047|PT|743.56|ICD9CM|Other retinal changes, congenital|Other retinal changes, congenital +C0344553|T019|AB|743.57|ICD9CM|Optic disc anomalies|Optic disc anomalies +C0344553|T019|PT|743.57|ICD9CM|Specified congenital anomalies of optic disc|Specified congenital anomalies of optic disc +C1961121|T019|AB|743.58|ICD9CM|Vascular anom post eye|Vascular anom post eye +C1961121|T019|PT|743.58|ICD9CM|Vascular anomalies|Vascular anomalies +C0158571|T019|PT|743.59|ICD9CM|Other congenital anomalies of posterior segment|Other congenital anomalies of posterior segment +C0158571|T019|AB|743.59|ICD9CM|Post segmnt anom NEC-eye|Post segmnt anom NEC-eye +C0158572|T019|HT|743.6|ICD9CM|Congenital anomalies of eyelids, lacrimal system, and orbit|Congenital anomalies of eyelids, lacrimal system, and orbit +C0266573|T019|AB|743.61|ICD9CM|Congenital ptosis|Congenital ptosis +C0266573|T019|PT|743.61|ICD9CM|Congenital ptosis|Congenital ptosis +C0266572|T019|PT|743.62|ICD9CM|Congenital deformities of eyelids|Congenital deformities of eyelids +C0266572|T019|AB|743.62|ICD9CM|Congenital eyelid deform|Congenital eyelid deform +C0158575|T019|PT|743.63|ICD9CM|Other specified congenital anomalies of eyelid|Other specified congenital anomalies of eyelid +C0158575|T019|AB|743.63|ICD9CM|Spec anom of eyelid NEC|Spec anom of eyelid NEC +C0158576|T019|AB|743.64|ICD9CM|Spec lacrimal gland anom|Spec lacrimal gland anom +C0158576|T019|PT|743.64|ICD9CM|Specified congenital anomalies of lacrimal gland|Specified congenital anomalies of lacrimal gland +C0158577|T019|AB|743.65|ICD9CM|Spec lacrimal pass anom|Spec lacrimal pass anom +C0158577|T019|PT|743.65|ICD9CM|Specified congenital anomalies of lacrimal passages|Specified congenital anomalies of lacrimal passages +C0266587|T019|AB|743.66|ICD9CM|Spec anomaly of orbit|Spec anomaly of orbit +C0266587|T019|PT|743.66|ICD9CM|Specified congenital anomalies of orbit|Specified congenital anomalies of orbit +C0158579|T047|AB|743.69|ICD9CM|Anom eyelid/lacr/orb NEC|Anom eyelid/lacr/orb NEC +C0158579|T047|PT|743.69|ICD9CM|Other congenital anomalies of eyelids, lacrimal system, and orbit|Other congenital anomalies of eyelids, lacrimal system, and orbit +C0477986|T019|AB|743.8|ICD9CM|Eye anomalies NEC|Eye anomalies NEC +C0477986|T019|PT|743.8|ICD9CM|Other specified anomalies of eye|Other specified anomalies of eye +C0015393|T019|AB|743.9|ICD9CM|Eye anomaly NOS|Eye anomaly NOS +C0015393|T019|PT|743.9|ICD9CM|Unspecified anomaly of eye|Unspecified anomaly of eye +C0158581|T019|HT|744|ICD9CM|Congenital anomalies of ear, face, and neck|Congenital anomalies of ear, face, and neck +C0266592|T019|HT|744.0|ICD9CM|Congenital anomalies of ear causing impairment of hearing|Congenital anomalies of ear causing impairment of hearing +C0266592|T019|AB|744.00|ICD9CM|Ear anom NOS/impair hear|Ear anom NOS/impair hear +C0266592|T019|PT|744.00|ICD9CM|Unspecified anomaly of ear with impairment of hearing|Unspecified anomaly of ear with impairment of hearing +C0702139|T019|PT|744.01|ICD9CM|Absence of external ear|Absence of external ear +C0702139|T019|AB|744.01|ICD9CM|Cong absence ext ear|Cong absence ext ear +C0431467|T019|AB|744.02|ICD9CM|Ex ear anm NEC-impr hear|Ex ear anm NEC-impr hear +C0431467|T019|PT|744.02|ICD9CM|Other anomalies of external ear with impairment of hearing|Other anomalies of external ear with impairment of hearing +C0431468|T019|PT|744.03|ICD9CM|Anomaly of middle ear, except ossicles|Anomaly of middle ear, except ossicles +C0431468|T019|AB|744.03|ICD9CM|Middle ear anomaly NEC|Middle ear anomaly NEC +C0158587|T019|AB|744.04|ICD9CM|Anomalies ear ossicles|Anomalies ear ossicles +C0158587|T019|PT|744.04|ICD9CM|Anomalies of ear ossicles|Anomalies of ear ossicles +C0685874|T019|AB|744.05|ICD9CM|Anomalies of inner ear|Anomalies of inner ear +C0685874|T019|PT|744.05|ICD9CM|Anomalies of inner ear|Anomalies of inner ear +C0158589|T019|AB|744.09|ICD9CM|Ear anom NEC/impair hear|Ear anom NEC/impair hear +C0158589|T019|PT|744.09|ICD9CM|Other anomalies of ear causing impairment of hearing|Other anomalies of ear causing impairment of hearing +C0266611|T019|AB|744.1|ICD9CM|Accessory auricle|Accessory auricle +C0266611|T019|PT|744.1|ICD9CM|Accessory auricle|Accessory auricle +C0477990|T019|HT|744.2|ICD9CM|Other specified congenital anomalies of ear|Other specified congenital anomalies of ear +C0158591|T019|PT|744.21|ICD9CM|Absence of ear lobe, congenital|Absence of ear lobe, congenital +C0158591|T019|AB|744.21|ICD9CM|Cong absence of ear lobe|Cong absence of ear lobe +C0152421|T019|AB|744.22|ICD9CM|Macrotia|Macrotia +C0152421|T019|PT|744.22|ICD9CM|Macrotia|Macrotia +C0152423|T019|AB|744.23|ICD9CM|Microtia|Microtia +C0152423|T019|PT|744.23|ICD9CM|Microtia|Microtia +C0158592|T019|AB|744.24|ICD9CM|Eustachian tube anom NEC|Eustachian tube anom NEC +C0158592|T019|PT|744.24|ICD9CM|Specified anomalies of Eustachian tube|Specified anomalies of Eustachian tube +C0431479|T019|AB|744.29|ICD9CM|Ear anomalies NEC|Ear anomalies NEC +C0431479|T019|PT|744.29|ICD9CM|Other specified anomalies of ear|Other specified anomalies of ear +C0266589|T019|AB|744.3|ICD9CM|Ear anomaly NOS|Ear anomaly NOS +C0266589|T019|PT|744.3|ICD9CM|Unspecified anomaly of ear|Unspecified anomaly of ear +C0158595|T047|HT|744.4|ICD9CM|Branchial cleft cyst or fistula; preauricular sinus|Branchial cleft cyst or fistula; preauricular sinus +C0344572|T047|AB|744.41|ICD9CM|Branch cleft sinus/fistu|Branch cleft sinus/fistu +C0344572|T047|PT|744.41|ICD9CM|Branchial cleft sinus or fistula|Branchial cleft sinus or fistula +C0006131|T019|AB|744.42|ICD9CM|Branchial cleft cyst|Branchial cleft cyst +C0006131|T019|PT|744.42|ICD9CM|Branchial cleft cyst|Branchial cleft cyst +C2363280|T019|AB|744.43|ICD9CM|Cervical auricle|Cervical auricle +C2363280|T019|PT|744.43|ICD9CM|Cervical auricle|Cervical auricle +C0158598|T047|PT|744.46|ICD9CM|Preauricular sinus or fistula|Preauricular sinus or fistula +C0158598|T047|AB|744.46|ICD9CM|Preauricular sinus/fistu|Preauricular sinus/fistu +C0158599|T047|AB|744.47|ICD9CM|Preauricular cyst|Preauricular cyst +C0158599|T047|PT|744.47|ICD9CM|Preauricular cyst|Preauricular cyst +C0431491|T047|AB|744.49|ICD9CM|Branchial cleft anom NEC|Branchial cleft anom NEC +C0431491|T047|PT|744.49|ICD9CM|Other branchial cleft cyst or fistula; preauricular sinus|Other branchial cleft cyst or fistula; preauricular sinus +C0221217|T019|AB|744.5|ICD9CM|Webbing of neck|Webbing of neck +C0221217|T019|PT|744.5|ICD9CM|Webbing of neck|Webbing of neck +C0477992|T019|HT|744.8|ICD9CM|Other specified congenital anomalies of face and neck|Other specified congenital anomalies of face and neck +C0266094|T019|AB|744.81|ICD9CM|Macrocheilia|Macrocheilia +C0266094|T019|PT|744.81|ICD9CM|Macrocheilia|Macrocheilia +C0266095|T019|AB|744.82|ICD9CM|Microcheilia|Microcheilia +C0266095|T019|PT|744.82|ICD9CM|Microcheilia|Microcheilia +C0024433|T019|AB|744.83|ICD9CM|Macrostomia|Macrostomia +C0024433|T019|PT|744.83|ICD9CM|Macrostomia|Macrostomia +C0026034|T019|AB|744.84|ICD9CM|Microstomia|Microstomia +C0026034|T019|PT|744.84|ICD9CM|Microstomia|Microstomia +C0477992|T019|AB|744.89|ICD9CM|Cong face/neck anom NEC|Cong face/neck anom NEC +C0477992|T019|PT|744.89|ICD9CM|Other specified congenital anomalies of face and neck|Other specified congenital anomalies of face and neck +C0869095|T019|AB|744.9|ICD9CM|Cong face/neck anom NOS|Cong face/neck anom NOS +C0869095|T019|PT|744.9|ICD9CM|Unspecified congenital anomalies of face and neck|Unspecified congenital anomalies of face and neck +C0158606|T019|HT|745|ICD9CM|Bulbus cordis anomalies and anomalies of cardiac septal closure|Bulbus cordis anomalies and anomalies of cardiac septal closure +C0041207|T019|AB|745.0|ICD9CM|Common truncus|Common truncus +C0041207|T019|PT|745.0|ICD9CM|Common truncus|Common truncus +C0040761|T019|HT|745.1|ICD9CM|Transposition of great vessels|Transposition of great vessels +C0040761|T019|AB|745.10|ICD9CM|Compl transpos great ves|Compl transpos great ves +C0040761|T019|PT|745.10|ICD9CM|Complete transposition of great vessels|Complete transposition of great vessels +C0013069|T019|PT|745.11|ICD9CM|Double outlet right ventricle|Double outlet right ventricle +C0013069|T019|AB|745.11|ICD9CM|Double outlet rt ventric|Double outlet rt ventric +C0344616|T019|AB|745.12|ICD9CM|Correct transpos grt ves|Correct transpos grt ves +C0344616|T019|PT|745.12|ICD9CM|Corrected transposition of great vessels|Corrected transposition of great vessels +C0158608|T019|PT|745.19|ICD9CM|Other transposition of great vessels|Other transposition of great vessels +C0158608|T019|AB|745.19|ICD9CM|Transpos great vess NEC|Transpos great vess NEC +C0039685|T019|AB|745.2|ICD9CM|Tetralogy of fallot|Tetralogy of fallot +C0039685|T019|PT|745.2|ICD9CM|Tetralogy of fallot|Tetralogy of fallot +C0152424|T019|AB|745.3|ICD9CM|Common ventricle|Common ventricle +C0152424|T019|PT|745.3|ICD9CM|Common ventricle|Common ventricle +C0018818|T019|AB|745.4|ICD9CM|Ventricular sept defect|Ventricular sept defect +C0018818|T019|PT|745.4|ICD9CM|Ventricular septal defect|Ventricular septal defect +C0344724|T019|PT|745.5|ICD9CM|Ostium secundum type atrial septal defect|Ostium secundum type atrial septal defect +C0344724|T019|AB|745.5|ICD9CM|Secundum atrial sept def|Secundum atrial sept def +C0014116|T019|HT|745.6|ICD9CM|Endocardial cushion defects|Endocardial cushion defects +C0014116|T019|AB|745.60|ICD9CM|Endocard cushion def NOS|Endocard cushion def NOS +C0014116|T019|PT|745.60|ICD9CM|Endocardial cushion defect, unspecified type|Endocardial cushion defect, unspecified type +C0031192|T019|AB|745.61|ICD9CM|Ostium primum defect|Ostium primum defect +C0031192|T019|PT|745.61|ICD9CM|Ostium primum defect|Ostium primum defect +C0029608|T019|AB|745.69|ICD9CM|Endocard cushion def NEC|Endocard cushion def NEC +C0029608|T019|PT|745.69|ICD9CM|Other endocardial cushion defects|Other endocardial cushion defects +C0152238|T019|AB|745.7|ICD9CM|Cor biloculare|Cor biloculare +C0152238|T047|AB|745.7|ICD9CM|Cor biloculare|Cor biloculare +C0152238|T019|PT|745.7|ICD9CM|Cor biloculare|Cor biloculare +C0152238|T047|PT|745.7|ICD9CM|Cor biloculare|Cor biloculare +C0158609|T019|PT|745.8|ICD9CM|Other bulbus cordis anomalies and anomalies of cardiac septal closure|Other bulbus cordis anomalies and anomalies of cardiac septal closure +C0158609|T019|AB|745.8|ICD9CM|Septal closure anom NEC|Septal closure anom NEC +C0158610|T019|AB|745.9|ICD9CM|Septal closure anom NOS|Septal closure anom NOS +C0158610|T019|PT|745.9|ICD9CM|Unspecified defect of septal closure|Unspecified defect of septal closure +C0158611|T019|HT|746|ICD9CM|Other congenital anomalies of heart|Other congenital anomalies of heart +C0265830|T019|HT|746.0|ICD9CM|Anomalies of pulmonary valve, congenital|Anomalies of pulmonary valve, congenital +C0265830|T019|PT|746.00|ICD9CM|Congenital pulmonary valve anomaly, unspecified|Congenital pulmonary valve anomaly, unspecified +C0265830|T019|AB|746.00|ICD9CM|Pulmonary valve anom NOS|Pulmonary valve anom NOS +C0242855|T047|PT|746.01|ICD9CM|Atresia of pulmonary valve, congenital|Atresia of pulmonary valve, congenital +C0242855|T047|AB|746.01|ICD9CM|Cong pulmon valv atresia|Cong pulmon valv atresia +C0162164|T019|AB|746.02|ICD9CM|Cong pulmon valve stenos|Cong pulmon valve stenos +C0162164|T019|PT|746.02|ICD9CM|Stenosis of pulmonary valve, congenital|Stenosis of pulmonary valve, congenital +C0477996|T019|PT|746.09|ICD9CM|Other congenital anomalies of pulmonary valve|Other congenital anomalies of pulmonary valve +C0477996|T019|AB|746.09|ICD9CM|Pulmonary valve anom NEC|Pulmonary valve anom NEC +C0158616|T019|AB|746.1|ICD9CM|Cong tricusp atres/sten|Cong tricusp atres/sten +C0158616|T019|PT|746.1|ICD9CM|Tricuspid atresia and stenosis, congenital|Tricuspid atresia and stenosis, congenital +C0013481|T019|AB|746.2|ICD9CM|Ebstein's anomaly|Ebstein's anomaly +C0013481|T019|PT|746.2|ICD9CM|Ebstein's anomaly|Ebstein's anomaly +C0152417|T019|AB|746.3|ICD9CM|Cong aorta valv stenosis|Cong aorta valv stenosis +C0152417|T019|PT|746.3|ICD9CM|Congenital stenosis of aortic valve|Congenital stenosis of aortic valve +C0158617|T047|AB|746.4|ICD9CM|Cong aorta valv insuffic|Cong aorta valv insuffic +C0158617|T047|PT|746.4|ICD9CM|Congenital insufficiency of aortic valve|Congenital insufficiency of aortic valve +C0158618|T019|AB|746.5|ICD9CM|Congen mitral stenosis|Congen mitral stenosis +C0158618|T019|PT|746.5|ICD9CM|Congenital mitral stenosis|Congenital mitral stenosis +C0158619|T019|AB|746.6|ICD9CM|Cong mitral insufficienc|Cong mitral insufficienc +C0158619|T047|AB|746.6|ICD9CM|Cong mitral insufficienc|Cong mitral insufficienc +C0158619|T019|PT|746.6|ICD9CM|Congenital mitral insufficiency|Congenital mitral insufficiency +C0158619|T047|PT|746.6|ICD9CM|Congenital mitral insufficiency|Congenital mitral insufficiency +C0152101|T047|AB|746.7|ICD9CM|Hypoplas left heart synd|Hypoplas left heart synd +C0152101|T047|PT|746.7|ICD9CM|Hypoplastic left heart syndrome|Hypoplastic left heart syndrome +C0477999|T019|HT|746.8|ICD9CM|Other specified congenital anomalies of heart|Other specified congenital anomalies of heart +C0158621|T019|AB|746.81|ICD9CM|Cong subaortic stenosis|Cong subaortic stenosis +C0158621|T019|PT|746.81|ICD9CM|Subaortic stenosis|Subaortic stenosis +C0009995|T019|AB|746.82|ICD9CM|Cor triatriatum|Cor triatriatum +C0009995|T019|PT|746.82|ICD9CM|Cor triatriatum|Cor triatriatum +C0034084|T046|AB|746.83|ICD9CM|Infundib pulmon stenosis|Infundib pulmon stenosis +C0034084|T046|PT|746.83|ICD9CM|Infundibular pulmonic stenosis|Infundibular pulmonic stenosis +C0869419|T019|AB|746.84|ICD9CM|Obstruct heart anom NEC|Obstruct heart anom NEC +C0869419|T019|PT|746.84|ICD9CM|Obstructive anomalies of heart, not elsewhere classified|Obstructive anomalies of heart, not elsewhere classified +C0158623|T019|AB|746.85|ICD9CM|Coronary artery anomaly|Coronary artery anomaly +C0158623|T019|PT|746.85|ICD9CM|Coronary artery anomaly|Coronary artery anomaly +C0149530|T019|AB|746.86|ICD9CM|Congenital heart block|Congenital heart block +C0149530|T047|AB|746.86|ICD9CM|Congenital heart block|Congenital heart block +C0149530|T019|PT|746.86|ICD9CM|Congenital heart block|Congenital heart block +C0149530|T047|PT|746.86|ICD9CM|Congenital heart block|Congenital heart block +C0024649|T019|AB|746.87|ICD9CM|Malposition of heart|Malposition of heart +C0024649|T019|PT|746.87|ICD9CM|Malposition of heart and cardiac apex|Malposition of heart and cardiac apex +C0477999|T019|AB|746.89|ICD9CM|Cong heart anomaly NEC|Cong heart anomaly NEC +C0477999|T019|PT|746.89|ICD9CM|Other specified congenital anomalies of heart|Other specified congenital anomalies of heart +C0018798|T019|AB|746.9|ICD9CM|Cong heart anomaly NOS|Cong heart anomaly NOS +C0018798|T019|PT|746.9|ICD9CM|Unspecified congenital anomaly of heart|Unspecified congenital anomaly of heart +C0158625|T019|HT|747|ICD9CM|Other congenital anomalies of circulatory system|Other congenital anomalies of circulatory system +C0013274|T019|AB|747.0|ICD9CM|Patent ductus arteriosus|Patent ductus arteriosus +C0013274|T019|PT|747.0|ICD9CM|Patent ductus arteriosus|Patent ductus arteriosus +C0003492|T019|HT|747.1|ICD9CM|Coarctation of aorta|Coarctation of aorta +C0003492|T019|AB|747.10|ICD9CM|Coarctation of aorta|Coarctation of aorta +C0003492|T019|PT|747.10|ICD9CM|Coarctation of aorta (preductal) (postductal)|Coarctation of aorta (preductal) (postductal) +C0152419|T019|AB|747.11|ICD9CM|Interrupt of aortic arch|Interrupt of aortic arch +C0152419|T019|PT|747.11|ICD9CM|Interruption of aortic arch|Interruption of aortic arch +C0478000|T019|HT|747.2|ICD9CM|Other congenital anomalies of aorta|Other congenital anomalies of aorta +C0302467|T019|PT|747.20|ICD9CM|Anomaly of aorta, unspecified|Anomaly of aorta, unspecified +C0302467|T019|AB|747.20|ICD9CM|Cong anom of aorta NOS|Cong anom of aorta NOS +C0158629|T019|AB|747.21|ICD9CM|Anomalies of aortic arch|Anomalies of aortic arch +C0158629|T019|PT|747.21|ICD9CM|Anomalies of aortic arch|Anomalies of aortic arch +C0345010|T019|AB|747.22|ICD9CM|Aortic atresia/stenosis|Aortic atresia/stenosis +C0345010|T019|PT|747.22|ICD9CM|Atresia and stenosis of aorta|Atresia and stenosis of aorta +C0478000|T019|AB|747.29|ICD9CM|Cong anom of aorta NEC|Cong anom of aorta NEC +C0478000|T019|PT|747.29|ICD9CM|Other anomalies of aorta|Other anomalies of aorta +C0009681|T019|HT|747.3|ICD9CM|Anomalies of pulmonary artery, congenital|Anomalies of pulmonary artery, congenital +C3161124|T019|AB|747.31|ICD9CM|Pulmon art coarct/atres|Pulmon art coarct/atres +C3161124|T019|PT|747.31|ICD9CM|Pulmonary artery coarctation and atresia|Pulmonary artery coarctation and atresia +C0241790|T019|PT|747.32|ICD9CM|Pulmonary arteriovenous malformation|Pulmonary arteriovenous malformation +C0241790|T019|AB|747.32|ICD9CM|Pulmonary AV malformatn|Pulmonary AV malformatn +C3161125|T019|AB|747.39|ICD9CM|Oth anom pul artery/circ|Oth anom pul artery/circ +C3161125|T019|PT|747.39|ICD9CM|Other anomalies of pulmonary artery and pulmonary circulation|Other anomalies of pulmonary artery and pulmonary circulation +C0158632|T019|HT|747.4|ICD9CM|Anomalies of great veins, congenital|Anomalies of great veins, congenital +C0158632|T019|PT|747.40|ICD9CM|Anomaly of great veins, unspecified|Anomaly of great veins, unspecified +C0158632|T019|AB|747.40|ICD9CM|Great vein anomaly NOS|Great vein anomaly NOS +C4551903|T047|AB|747.41|ICD9CM|Tot anom pulm ven connec|Tot anom pulm ven connec +C4551903|T047|PT|747.41|ICD9CM|Total anomalous pulmonary venous connection|Total anomalous pulmonary venous connection +C0158634|T019|AB|747.42|ICD9CM|Part anom pulm ven conn|Part anom pulm ven conn +C0158634|T019|PT|747.42|ICD9CM|Partial anomalous pulmonary venous connection|Partial anomalous pulmonary venous connection +C0029520|T019|AB|747.49|ICD9CM|Great vein anomaly NEC|Great vein anomaly NEC +C0029520|T019|PT|747.49|ICD9CM|Other anomalies of great veins|Other anomalies of great veins +C0158635|T019|PT|747.5|ICD9CM|Absence or hypoplasia of umbilical artery|Absence or hypoplasia of umbilical artery +C0158635|T019|AB|747.5|ICD9CM|Umbilical artery absence|Umbilical artery absence +C1963536|T019|HT|747.6|ICD9CM|Other congenital anomalies of peripheral vascular system|Other congenital anomalies of peripheral vascular system +C0340797|T019|PT|747.60|ICD9CM|Anomaly of the peripheral vascular system, unspecified site|Anomaly of the peripheral vascular system, unspecified site +C0340797|T019|AB|747.60|ICD9CM|Unsp prpherl vasc anomal|Unsp prpherl vasc anomal +C0375518|T019|PT|747.61|ICD9CM|Gastrointestinal vessel anomaly|Gastrointestinal vessel anomaly +C0375518|T019|AB|747.61|ICD9CM|Gstrontest vesl anomaly|Gstrontest vesl anomaly +C0302468|T019|AB|747.62|ICD9CM|Renal vessel anomaly|Renal vessel anomaly +C0302468|T019|PT|747.62|ICD9CM|Renal vessel anomaly|Renal vessel anomaly +C0375519|T019|PT|747.63|ICD9CM|Upper limb vessel anomaly|Upper limb vessel anomaly +C0375519|T019|AB|747.63|ICD9CM|Upr limb vessel anomaly|Upr limb vessel anomaly +C0375520|T019|PT|747.64|ICD9CM|Lower limb vessel anomaly|Lower limb vessel anomaly +C0375520|T019|AB|747.64|ICD9CM|Lwr limb vessel anomaly|Lwr limb vessel anomaly +C0375521|T019|PT|747.69|ICD9CM|Anomalies of other specified sites of peripheral vascular system|Anomalies of other specified sites of peripheral vascular system +C0375521|T019|AB|747.69|ICD9CM|Oth spcf prph vscl anoml|Oth spcf prph vscl anoml +C0478008|T019|HT|747.8|ICD9CM|Other specified congenital anomalies of circulatory system|Other specified congenital anomalies of circulatory system +C0158638|T019|PT|747.81|ICD9CM|Anomalies of cerebrovascular system|Anomalies of cerebrovascular system +C0158638|T019|AB|747.81|ICD9CM|Cerebrovascular anomaly|Cerebrovascular anomaly +C0375522|T019|AB|747.82|ICD9CM|Spinal vessel anomaly|Spinal vessel anomaly +C0375522|T019|PT|747.82|ICD9CM|Spinal vessel anomaly|Spinal vessel anomaly +C0031190|T047|AB|747.83|ICD9CM|Persistent fetal circ|Persistent fetal circ +C0031190|T047|PT|747.83|ICD9CM|Persistent fetal circulation|Persistent fetal circulation +C0478008|T019|AB|747.89|ICD9CM|Circulatory anomaly NEC|Circulatory anomaly NEC +C0478008|T019|PT|747.89|ICD9CM|Other specified anomalies of circulatory system|Other specified anomalies of circulatory system +C0478013|T019|AB|747.9|ICD9CM|Circulatory anomaly NOS|Circulatory anomaly NOS +C0478013|T019|PT|747.9|ICD9CM|Unspecified anomaly of circulatory system|Unspecified anomaly of circulatory system +C0035238|T019|HT|748|ICD9CM|Anomalies of respiratory system, congenital|Anomalies of respiratory system, congenital +C0008297|T019|AB|748.0|ICD9CM|Choanal atresia|Choanal atresia +C0008297|T019|PT|748.0|ICD9CM|Choanal atresia|Choanal atresia +C0478014|T019|AB|748.1|ICD9CM|Nose anomaly NEC|Nose anomaly NEC +C0478014|T019|PT|748.1|ICD9CM|Other anomalies of nose|Other anomalies of nose +C0281890|T047|AB|748.2|ICD9CM|Laryngeal web|Laryngeal web +C0281890|T047|PT|748.2|ICD9CM|Web of larynx|Web of larynx +C0431510|T019|AB|748.3|ICD9CM|Laryngotrach anomaly NEC|Laryngotrach anomaly NEC +C0431510|T019|PT|748.3|ICD9CM|Other anomalies of larynx, trachea, and bronchus|Other anomalies of larynx, trachea, and bronchus +C0158641|T019|AB|748.4|ICD9CM|Congenital cystic lung|Congenital cystic lung +C0158641|T019|PT|748.4|ICD9CM|Congenital cystic lung|Congenital cystic lung +C0438699|T019|AB|748.5|ICD9CM|Agenesis of lung|Agenesis of lung +C0438699|T019|PT|748.5|ICD9CM|Agenesis, hypoplasia, and dysplasia of lung|Agenesis, hypoplasia, and dysplasia of lung +C0478018|T019|HT|748.6|ICD9CM|Congenital other anomalies of lung|Congenital other anomalies of lung +C0158644|T019|PT|748.60|ICD9CM|Anomaly of lung, unspecified|Anomaly of lung, unspecified +C0158644|T019|AB|748.60|ICD9CM|Lung anomaly NOS|Lung anomaly NOS +C0152239|T019|AB|748.61|ICD9CM|Congen bronchiectasis|Congen bronchiectasis +C0152239|T047|AB|748.61|ICD9CM|Congen bronchiectasis|Congen bronchiectasis +C0152239|T019|PT|748.61|ICD9CM|Congenital bronchiectasis|Congenital bronchiectasis +C0152239|T047|PT|748.61|ICD9CM|Congenital bronchiectasis|Congenital bronchiectasis +C0478018|T019|AB|748.69|ICD9CM|Lung anomaly NEC|Lung anomaly NEC +C0478018|T019|PT|748.69|ICD9CM|Other congenital anomalies of lung|Other congenital anomalies of lung +C0478019|T019|PT|748.8|ICD9CM|Other specified anomalies of respiratory system|Other specified anomalies of respiratory system +C0478019|T019|AB|748.8|ICD9CM|Respiratory anomaly NEC|Respiratory anomaly NEC +C0035238|T019|AB|748.9|ICD9CM|Respiratory anomaly NOS|Respiratory anomaly NOS +C0035238|T019|PT|748.9|ICD9CM|Unspecified anomaly of respiratory system|Unspecified anomaly of respiratory system +C0158646|T019|HT|749|ICD9CM|Cleft palate and cleft lip|Cleft palate and cleft lip +C0008925|T019|HT|749.0|ICD9CM|Cleft palate|Cleft palate +C0008925|T019|AB|749.00|ICD9CM|Cleft palate NOS|Cleft palate NOS +C0008925|T019|PT|749.00|ICD9CM|Cleft palate, unspecified|Cleft palate, unspecified +C0158647|T019|PT|749.01|ICD9CM|Cleft palate, unilateral, complete|Cleft palate, unilateral, complete +C0158647|T019|AB|749.01|ICD9CM|Unilat cleft palate-comp|Unilat cleft palate-comp +C0158648|T019|PT|749.02|ICD9CM|Cleft palate, unilateral, incomplete|Cleft palate, unilateral, incomplete +C0158648|T019|AB|749.02|ICD9CM|Unilat cleft palate-inc|Unilat cleft palate-inc +C0158649|T019|AB|749.03|ICD9CM|Bilat cleft palate-compl|Bilat cleft palate-compl +C0158649|T019|PT|749.03|ICD9CM|Cleft palate, bilateral, complete|Cleft palate, bilateral, complete +C0158650|T019|AB|749.04|ICD9CM|Bilat cleft palate-inc|Bilat cleft palate-inc +C0158650|T019|PT|749.04|ICD9CM|Cleft palate, bilateral, incomplete|Cleft palate, bilateral, incomplete +C0008924|T019|HT|749.1|ICD9CM|Cleft lip|Cleft lip +C0008924|T019|AB|749.10|ICD9CM|Cleft lip NOS|Cleft lip NOS +C0008924|T019|PT|749.10|ICD9CM|Cleft lip, unspecified|Cleft lip, unspecified +C0158651|T019|PT|749.11|ICD9CM|Cleft lip, unilateral, complete|Cleft lip, unilateral, complete +C0158651|T019|AB|749.11|ICD9CM|Unilat cleft lip-compl|Unilat cleft lip-compl +C0158652|T019|PT|749.12|ICD9CM|Cleft lip, unilateral, incomplete|Cleft lip, unilateral, incomplete +C0158652|T019|AB|749.12|ICD9CM|Unilat cleft lip-imcompl|Unilat cleft lip-imcompl +C0158653|T019|AB|749.13|ICD9CM|Bilat cleft lip-complete|Bilat cleft lip-complete +C0158653|T019|PT|749.13|ICD9CM|Cleft lip, bilateral, complete|Cleft lip, bilateral, complete +C0158654|T019|AB|749.14|ICD9CM|Bilat cleft lip-incompl|Bilat cleft lip-incompl +C0158654|T019|PT|749.14|ICD9CM|Cleft lip, bilateral, incomplete|Cleft lip, bilateral, incomplete +C0158646|T019|HT|749.2|ICD9CM|Cleft palate with cleft lip|Cleft palate with cleft lip +C0158646|T019|AB|749.20|ICD9CM|Cleft palate & lip NOS|Cleft palate & lip NOS +C0158646|T019|PT|749.20|ICD9CM|Cleft palate with cleft lip, unspecified|Cleft palate with cleft lip, unspecified +C0158655|T019|PT|749.21|ICD9CM|Cleft palate with cleft lip, unilateral, complete|Cleft palate with cleft lip, unilateral, complete +C0158655|T019|AB|749.21|ICD9CM|Unil cleft palat/lip-com|Unil cleft palat/lip-com +C0158656|T019|PT|749.22|ICD9CM|Cleft palate with cleft lip, unilateral, incomplete|Cleft palate with cleft lip, unilateral, incomplete +C0158656|T019|AB|749.22|ICD9CM|Unil cleft palat/lip-inc|Unil cleft palat/lip-inc +C0158657|T019|AB|749.23|ICD9CM|Bilat clft palat/lip-com|Bilat clft palat/lip-com +C0158657|T019|PT|749.23|ICD9CM|Cleft palate with cleft lip, bilateral, complete|Cleft palate with cleft lip, bilateral, complete +C0158658|T019|AB|749.24|ICD9CM|Bilat clft palat/lip-inc|Bilat clft palat/lip-inc +C0158658|T019|PT|749.24|ICD9CM|Cleft palate with cleft lip, bilateral, incomplete|Cleft palate with cleft lip, bilateral, incomplete +C0158659|T019|AB|749.25|ICD9CM|Cleft palate & lip NEC|Cleft palate & lip NEC +C0158659|T019|PT|749.25|ICD9CM|Other combinations of cleft palate with cleft lip|Other combinations of cleft palate with cleft lip +C2910173|T019|HT|750|ICD9CM|Other congenital anomalies of upper alimentary tract|Other congenital anomalies of upper alimentary tract +C0152415|T019|AB|750.0|ICD9CM|Tongue tie|Tongue tie +C0152415|T019|PT|750.0|ICD9CM|Tongue tie|Tongue tie +C0478024|T019|HT|750.1|ICD9CM|Other congenital anomalies of tongue|Other congenital anomalies of tongue +C0158662|T019|PT|750.10|ICD9CM|Congenital anomaly of tongue, unspecified|Congenital anomaly of tongue, unspecified +C0158662|T019|AB|750.10|ICD9CM|Tongue anomaly NOS|Tongue anomaly NOS +C0158663|T019|AB|750.11|ICD9CM|Aglossia|Aglossia +C0158663|T019|PT|750.11|ICD9CM|Aglossia|Aglossia +C0158664|T019|AB|750.12|ICD9CM|Cong adhesions of tongue|Cong adhesions of tongue +C0158664|T019|PT|750.12|ICD9CM|Congenital adhesions of tongue|Congenital adhesions of tongue +C2349953|T019|AB|750.13|ICD9CM|Cong fissure of tongue|Cong fissure of tongue +C2349953|T019|PT|750.13|ICD9CM|Fissure of tongue|Fissure of tongue +C0009677|T019|AB|750.15|ICD9CM|Cong macroglossia|Cong macroglossia +C0009677|T019|PT|750.15|ICD9CM|Macroglossia|Macroglossia +C0025988|T019|AB|750.16|ICD9CM|Microglossia|Microglossia +C0025988|T019|PT|750.16|ICD9CM|Microglossia|Microglossia +C0478024|T019|PT|750.19|ICD9CM|Other congenital anomalies of tongue|Other congenital anomalies of tongue +C0478024|T019|AB|750.19|ICD9CM|Tongue anomaly NEC|Tongue anomaly NEC +C0431553|T019|HT|750.2|ICD9CM|Other specified congenital anomalies of mouth and pharynx|Other specified congenital anomalies of mouth and pharynx +C0158667|T019|PT|750.21|ICD9CM|Absence of salivary gland|Absence of salivary gland +C0158667|T019|AB|750.21|ICD9CM|Salivary gland absence|Salivary gland absence +C0152429|T019|AB|750.22|ICD9CM|Accessory salivary gland|Accessory salivary gland +C0152429|T019|PT|750.22|ICD9CM|Accessory salivary gland|Accessory salivary gland +C0266118|T019|PT|750.23|ICD9CM|Atresia, salivary duct|Atresia, salivary duct +C0266118|T019|AB|750.23|ICD9CM|Cong atresia, saliv duct|Cong atresia, saliv duct +C0158669|T019|AB|750.24|ICD9CM|Cong salivary fistula|Cong salivary fistula +C0158669|T019|PT|750.24|ICD9CM|Congenital fistula of salivary gland|Congenital fistula of salivary gland +C0158670|T019|PT|750.25|ICD9CM|Congenital fistula of lip|Congenital fistula of lip +C0158670|T019|AB|750.25|ICD9CM|Congenital lip fistula|Congenital lip fistula +C0158671|T019|AB|750.26|ICD9CM|Mouth anomaly NEC|Mouth anomaly NEC +C0158671|T019|PT|750.26|ICD9CM|Other specified anomalies of mouth|Other specified anomalies of mouth +C0392485|T019|AB|750.27|ICD9CM|Diverticulum of pharynx|Diverticulum of pharynx +C0392485|T019|PT|750.27|ICD9CM|Diverticulum of pharynx|Diverticulum of pharynx +C0158673|T019|PT|750.29|ICD9CM|Other specified anomalies of pharynx|Other specified anomalies of pharynx +C0158673|T019|AB|750.29|ICD9CM|Pharyngeal anomaly NEC|Pharyngeal anomaly NEC +C0009733|T019|AB|750.3|ICD9CM|Cong esoph fistula/atres|Cong esoph fistula/atres +C0009733|T019|PT|750.3|ICD9CM|Tracheoesophageal fistula, esophageal atresia and stenosis|Tracheoesophageal fistula, esophageal atresia and stenosis +C0029758|T019|AB|750.4|ICD9CM|Esophageal anomaly NEC|Esophageal anomaly NEC +C0029758|T019|PT|750.4|ICD9CM|Other specified anomalies of esophagus|Other specified anomalies of esophagus +C0700639|T019|AB|750.5|ICD9CM|Cong pyloric stenosis|Cong pyloric stenosis +C0700639|T019|PT|750.5|ICD9CM|Congenital hypertrophic pyloric stenosis|Congenital hypertrophic pyloric stenosis +C0158674|T019|AB|750.6|ICD9CM|Congenital hiatus hernia|Congenital hiatus hernia +C0158674|T019|PT|750.6|ICD9CM|Congenital hiatus hernia|Congenital hiatus hernia +C2004369|T190|AB|750.7|ICD9CM|Gastric anomaly NEC|Gastric anomaly NEC +C2004369|T190|PT|750.7|ICD9CM|Other specified anomalies of stomach|Other specified anomalies of stomach +C0266021|T019|PT|750.8|ICD9CM|Other specified anomalies of upper alimentary tract|Other specified anomalies of upper alimentary tract +C0266021|T019|AB|750.8|ICD9CM|Upper GI anomaly NEC|Upper GI anomaly NEC +C2004465|T019|PT|750.9|ICD9CM|Unspecified anomaly of upper alimentary tract|Unspecified anomaly of upper alimentary tract +C2004465|T019|AB|750.9|ICD9CM|Upper GI anomaly NOS|Upper GI anomaly NOS +C0158678|T019|HT|751|ICD9CM|Other congenital anomalies of digestive system|Other congenital anomalies of digestive system +C0025037|T019|AB|751.0|ICD9CM|Meckel's diverticulum|Meckel's diverticulum +C0025037|T019|PT|751.0|ICD9CM|Meckel's diverticulum|Meckel's diverticulum +C1261176|T019|PT|751.1|ICD9CM|Atresia and stenosis of small intestine|Atresia and stenosis of small intestine +C1261176|T019|AB|751.1|ICD9CM|Atresia small intestine|Atresia small intestine +C0345205|T019|PT|751.2|ICD9CM|Atresia and stenosis of large intestine, rectum, and anal canal|Atresia and stenosis of large intestine, rectum, and anal canal +C0345205|T019|AB|751.2|ICD9CM|Atresia large intestine|Atresia large intestine +C0019570|T019|AB|751.3|ICD9CM|Hirschsprung's disease|Hirschsprung's disease +C0019570|T047|AB|751.3|ICD9CM|Hirschsprung's disease|Hirschsprung's disease +C0019570|T019|PT|751.3|ICD9CM|Hirschsprung's disease and other congenital functional disorders of colon|Hirschsprung's disease and other congenital functional disorders of colon +C0019570|T047|PT|751.3|ICD9CM|Hirschsprung's disease and other congenital functional disorders of colon|Hirschsprung's disease and other congenital functional disorders of colon +C0158679|T019|PT|751.4|ICD9CM|Anomalies of intestinal fixation|Anomalies of intestinal fixation +C0158679|T019|AB|751.4|ICD9CM|Intestinal fixation anom|Intestinal fixation anom +C0555219|T019|AB|751.5|ICD9CM|Intestinal anomaly NEC|Intestinal anomaly NEC +C0555219|T019|PT|751.5|ICD9CM|Other anomalies of intestine|Other anomalies of intestine +C0158681|T019|HT|751.6|ICD9CM|Anomalies of gallbladder, bile ducts, and liver|Anomalies of gallbladder, bile ducts, and liver +C1456424|T019|AB|751.60|ICD9CM|Biliary & liver anom NOS|Biliary & liver anom NOS +C1456424|T019|PT|751.60|ICD9CM|Unspecified anomaly of gallbladder, bile ducts, and liver|Unspecified anomaly of gallbladder, bile ducts, and liver +C0005411|T019|AB|751.61|ICD9CM|Biliary atresia|Biliary atresia +C0005411|T019|PT|751.61|ICD9CM|Biliary atresia|Biliary atresia +C4551631|T047|AB|751.62|ICD9CM|Cong cystic liver dis|Cong cystic liver dis +C4551631|T047|PT|751.62|ICD9CM|Congenital cystic disease of liver|Congenital cystic disease of liver +C0029554|T019|AB|751.69|ICD9CM|Biliary & liver anom NEC|Biliary & liver anom NEC +C0029554|T019|PT|751.69|ICD9CM|Other anomalies of gallbladder, bile ducts, and liver|Other anomalies of gallbladder, bile ducts, and liver +C0158684|T019|PT|751.7|ICD9CM|Anomalies of pancreas|Anomalies of pancreas +C0158684|T019|AB|751.7|ICD9CM|Pancreas anomalies|Pancreas anomalies +C0478039|T019|AB|751.8|ICD9CM|Anom digestive syst NEC|Anom digestive syst NEC +C0478039|T019|PT|751.8|ICD9CM|Other specified anomalies of digestive system|Other specified anomalies of digestive system +C0266015|T019|AB|751.9|ICD9CM|Anom digestive syst NOS|Anom digestive syst NOS +C0266015|T019|PT|751.9|ICD9CM|Unspecified anomaly of digestive system|Unspecified anomaly of digestive system +C0158687|T019|HT|752|ICD9CM|Congenital anomalies of genital organs|Congenital anomalies of genital organs +C0158688|T019|AB|752.0|ICD9CM|Anomalies of ovaries|Anomalies of ovaries +C0158688|T019|PT|752.0|ICD9CM|Anomalies of ovaries|Anomalies of ovaries +C0158689|T019|HT|752.1|ICD9CM|Anomalies of fallopian tubes and broad ligaments, congenital|Anomalies of fallopian tubes and broad ligaments, congenital +C0158689|T019|AB|752.10|ICD9CM|Tubal/broad lig anom NOS|Tubal/broad lig anom NOS +C0158689|T019|PT|752.10|ICD9CM|Unspecified anomaly of fallopian tubes and broad ligaments|Unspecified anomaly of fallopian tubes and broad ligaments +C0013946|T019|AB|752.11|ICD9CM|Embryonic cyst of adnexa|Embryonic cyst of adnexa +C0013946|T019|PT|752.11|ICD9CM|Embryonic cyst of fallopian tubes and broad ligaments|Embryonic cyst of fallopian tubes and broad ligaments +C0478043|T019|PT|752.19|ICD9CM|Other anomalies of fallopian tubes and broad ligaments|Other anomalies of fallopian tubes and broad ligaments +C0478043|T019|AB|752.19|ICD9CM|Tubal/broad lig anom NEC|Tubal/broad lig anom NEC +C0152240|T019|AB|752.2|ICD9CM|Doubling of uterus|Doubling of uterus +C0152240|T019|PT|752.2|ICD9CM|Doubling of uterus|Doubling of uterus +C0431635|T019|HT|752.3|ICD9CM|Other congenital anomalies of uterus|Other congenital anomalies of uterus +C0266384|T019|AB|752.31|ICD9CM|Agenesis of uterus|Agenesis of uterus +C0266384|T019|PT|752.31|ICD9CM|Agenesis of uterus|Agenesis of uterus +C0266399|T019|PT|752.32|ICD9CM|Hypoplasia of uterus|Hypoplasia of uterus +C0266399|T019|AB|752.32|ICD9CM|Hypoplasia of uterus|Hypoplasia of uterus +C0266389|T019|PT|752.33|ICD9CM|Unicornuate uterus|Unicornuate uterus +C0266389|T019|AB|752.33|ICD9CM|Unicornuate uterus|Unicornuate uterus +C0266387|T019|PT|752.34|ICD9CM|Bicornuate uterus|Bicornuate uterus +C0266387|T019|AB|752.34|ICD9CM|Bicornuate uterus|Bicornuate uterus +C0152240|T019|AB|752.35|ICD9CM|Septate uterus|Septate uterus +C0152240|T019|PT|752.35|ICD9CM|Septate uterus|Septate uterus +C0266385|T019|AB|752.36|ICD9CM|Arcuate uterus|Arcuate uterus +C0266385|T019|PT|752.36|ICD9CM|Arcuate uterus|Arcuate uterus +C0431635|T019|AB|752.39|ICD9CM|Anomalies of uterus NEC|Anomalies of uterus NEC +C0431635|T019|PT|752.39|ICD9CM|Other anomalies of uterus|Other anomalies of uterus +C0158694|T019|HT|752.4|ICD9CM|Anomalies of cervix, vagina, and external female genitalia, congenital|Anomalies of cervix, vagina, and external female genitalia, congenital +C0158694|T019|AB|752.40|ICD9CM|Cervix/fem gen anom NOS|Cervix/fem gen anom NOS +C0158694|T019|PT|752.40|ICD9CM|Unspecified anomaly of cervix, vagina, and external female genitalia|Unspecified anomaly of cervix, vagina, and external female genitalia +C0158695|T019|AB|752.41|ICD9CM|Embryon cyst fem gen NEC|Embryon cyst fem gen NEC +C0158695|T019|PT|752.41|ICD9CM|Embryonic cyst of cervix, vagina, and external female genitalia|Embryonic cyst of cervix, vagina, and external female genitalia +C0152436|T019|AB|752.42|ICD9CM|Imperforate hymen|Imperforate hymen +C0152436|T019|PT|752.42|ICD9CM|Imperforate hymen|Imperforate hymen +C0266404|T019|PT|752.43|ICD9CM|Cervical agenesis|Cervical agenesis +C0266404|T019|AB|752.43|ICD9CM|Cervical agenesis|Cervical agenesis +C2921116|T019|PT|752.44|ICD9CM|Cervical duplication|Cervical duplication +C2921116|T019|AB|752.44|ICD9CM|Cervical duplication|Cervical duplication +C1261251|T019|PT|752.45|ICD9CM|Vaginal agenesis|Vaginal agenesis +C1261251|T019|AB|752.45|ICD9CM|Vaginal agenesis|Vaginal agenesis +C1856006|T033|AB|752.46|ICD9CM|Transv vaginal septum|Transv vaginal septum +C1856006|T033|PT|752.46|ICD9CM|Transverse vaginal septum|Transverse vaginal septum +C1841680|T033|AB|752.47|ICD9CM|Longitud vaginal septum|Longitud vaginal septum +C1841680|T033|PT|752.47|ICD9CM|Longitudinal vaginal septum|Longitudinal vaginal septum +C0029553|T019|AB|752.49|ICD9CM|Cervix/fem gen anom NEC|Cervix/fem gen anom NEC +C0029553|T019|PT|752.49|ICD9CM|Other anomalies of cervix, vagina, and external female genitalia|Other anomalies of cervix, vagina, and external female genitalia +C0520578|T019|HT|752.5|ICD9CM|Undescended and retractile testicle|Undescended and retractile testicle +C0010417|T019|AB|752.51|ICD9CM|Undescended testis|Undescended testis +C0010417|T019|PT|752.51|ICD9CM|Undescended testis|Undescended testis +C0520578|T019|AB|752.52|ICD9CM|Retractile testis|Retractile testis +C0520578|T019|PT|752.52|ICD9CM|Retractile testis|Retractile testis +C0375526|T019|HT|752.6|ICD9CM|Hypospadias and epispadias and other penile anomalies|Hypospadias and epispadias and other penile anomalies +C1691215|T019|AB|752.61|ICD9CM|Hypospadias|Hypospadias +C1691215|T019|PT|752.61|ICD9CM|Hypospadias|Hypospadias +C0563449|T019|AB|752.62|ICD9CM|Epispadias|Epispadias +C0563449|T019|PT|752.62|ICD9CM|Epispadias|Epispadias +C0266436|T019|AB|752.63|ICD9CM|Congenital chordee|Congenital chordee +C0266436|T019|PT|752.63|ICD9CM|Congenital chordee|Congenital chordee +C4551492|T019|AB|752.64|ICD9CM|Micropenis|Micropenis +C4551492|T019|PT|752.64|ICD9CM|Micropenis|Micropenis +C0431668|T019|AB|752.65|ICD9CM|Hidden penis|Hidden penis +C0431668|T019|PT|752.65|ICD9CM|Hidden penis|Hidden penis +C0375528|T019|PT|752.69|ICD9CM|Other penile anomalies|Other penile anomalies +C0375528|T019|AB|752.69|ICD9CM|Penile anomalies NEC|Penile anomalies NEC +C0021193|T019|AB|752.7|ICD9CM|Indeterminate sex|Indeterminate sex +C0021193|T019|PT|752.7|ICD9CM|Indeterminate sex and pseudohermaphroditism|Indeterminate sex and pseudohermaphroditism +C0431614|T019|HT|752.8|ICD9CM|Other specified congenital anomalies of genital organs|Other specified congenital anomalies of genital organs +C1260432|T019|AB|752.81|ICD9CM|Scrotal transposition|Scrotal transposition +C1260432|T019|PT|752.81|ICD9CM|Scrotal transposition|Scrotal transposition +C0431614|T019|AB|752.89|ICD9CM|Genital organ anom NEC|Genital organ anom NEC +C0431614|T019|PT|752.89|ICD9CM|Other specified anomalies of genital organs|Other specified anomalies of genital organs +C0158687|T019|AB|752.9|ICD9CM|Genital organ anom NOS|Genital organ anom NOS +C0158687|T019|PT|752.9|ICD9CM|Unspecified anomaly of genital organs|Unspecified anomaly of genital organs +C0158698|T019|HT|753|ICD9CM|Congenital anomalies of urinary system|Congenital anomalies of urinary system +C0158699|T019|AB|753.0|ICD9CM|Renal agenesis|Renal agenesis +C0158699|T019|PT|753.0|ICD9CM|Renal agenesis and dysgenesis|Renal agenesis and dysgenesis +C0311245|T019|HT|753.1|ICD9CM|Cystic kidney disease|Cystic kidney disease +C0311245|T047|HT|753.1|ICD9CM|Cystic kidney disease|Cystic kidney disease +C0311245|T019|AB|753.10|ICD9CM|Cystic kidney diseas NOS|Cystic kidney diseas NOS +C0311245|T047|AB|753.10|ICD9CM|Cystic kidney diseas NOS|Cystic kidney diseas NOS +C0311245|T019|PT|753.10|ICD9CM|Cystic kidney disease, unspecified|Cystic kidney disease, unspecified +C0311245|T047|PT|753.10|ICD9CM|Cystic kidney disease, unspecified|Cystic kidney disease, unspecified +C3854304|T019|AB|753.11|ICD9CM|Congenital renal cyst|Congenital renal cyst +C3854304|T019|PT|753.11|ICD9CM|Congenital single renal cyst|Congenital single renal cyst +C0022680|T047|AB|753.12|ICD9CM|Polycystic kidney NOS|Polycystic kidney NOS +C0022680|T047|PT|753.12|ICD9CM|Polycystic kidney, unspecified type|Polycystic kidney, unspecified type +C0085413|T047|AB|753.13|ICD9CM|Polycyst kid-autosom dom|Polycyst kid-autosom dom +C0085413|T047|PT|753.13|ICD9CM|Polycystic kidney, autosomal dominant|Polycystic kidney, autosomal dominant +C0085548|T047|AB|753.14|ICD9CM|Polycyst kid-autosom rec|Polycyst kid-autosom rec +C0085548|T047|PT|753.14|ICD9CM|Polycystic kidney, autosomal recessive|Polycystic kidney, autosomal recessive +C3536714|T019|AB|753.15|ICD9CM|Renal dysplasia|Renal dysplasia +C3536714|T019|PT|753.15|ICD9CM|Renal dysplasia|Renal dysplasia +C2939174|T047|AB|753.16|ICD9CM|Medullary cystic kidney|Medullary cystic kidney +C2939174|T047|PT|753.16|ICD9CM|Medullary cystic kidney|Medullary cystic kidney +C0022681|T019|AB|753.17|ICD9CM|Medullary sponge kidney|Medullary sponge kidney +C0022681|T047|AB|753.17|ICD9CM|Medullary sponge kidney|Medullary sponge kidney +C0022681|T019|PT|753.17|ICD9CM|Medullary sponge kidney|Medullary sponge kidney +C0022681|T047|PT|753.17|ICD9CM|Medullary sponge kidney|Medullary sponge kidney +C0431705|T019|AB|753.19|ICD9CM|Cystic kidney diseas NEC|Cystic kidney diseas NEC +C0431705|T047|AB|753.19|ICD9CM|Cystic kidney diseas NEC|Cystic kidney diseas NEC +C0431705|T019|PT|753.19|ICD9CM|Other specified cystic kidney disease|Other specified cystic kidney disease +C0431705|T047|PT|753.19|ICD9CM|Other specified cystic kidney disease|Other specified cystic kidney disease +C0431681|T019|HT|753.2|ICD9CM|Obstructive defects of renal pelvis and ureter, congenital|Obstructive defects of renal pelvis and ureter, congenital +C0431681|T019|AB|753.20|ICD9CM|Obs dfct ren plv&urt NOS|Obs dfct ren plv&urt NOS +C0431681|T019|PT|753.20|ICD9CM|Unspecified obstructive defect of renal pelvis and ureter|Unspecified obstructive defect of renal pelvis and ureter +C0375530|T019|AB|753.21|ICD9CM|Congen obst urtroplv jnc|Congen obst urtroplv jnc +C0375530|T019|PT|753.21|ICD9CM|Congenital obstruction of ureteropelvic junction|Congenital obstruction of ureteropelvic junction +C0266332|T019|AB|753.22|ICD9CM|Cong obst ureteroves jnc|Cong obst ureteroves jnc +C0266332|T019|PT|753.22|ICD9CM|Congenital obstruction of ureterovesical junction|Congenital obstruction of ureterovesical junction +C0474873|T019|AB|753.23|ICD9CM|Congenital ureterocele|Congenital ureterocele +C0474873|T019|PT|753.23|ICD9CM|Congenital ureterocele|Congenital ureterocele +C0478056|T019|AB|753.29|ICD9CM|Obst def ren plv&urt NEC|Obst def ren plv&urt NEC +C0478056|T019|PT|753.29|ICD9CM|Other obstructive defects of renal pelvis and ureter|Other obstructive defects of renal pelvis and ureter +C0478058|T019|AB|753.3|ICD9CM|Kidney anomaly NEC|Kidney anomaly NEC +C0478058|T019|PT|753.3|ICD9CM|Other specified anomalies of kidney|Other specified anomalies of kidney +C0431725|T019|PT|753.4|ICD9CM|Other specified anomalies of ureter|Other specified anomalies of ureter +C0431725|T019|AB|753.4|ICD9CM|Ureteral anomaly NEC|Ureteral anomaly NEC +C0005689|T047|AB|753.5|ICD9CM|Bladder exstrophy|Bladder exstrophy +C0005689|T047|PT|753.5|ICD9CM|Exstrophy of urinary bladder|Exstrophy of urinary bladder +C1305964|T019|PT|753.6|ICD9CM|Atresia and stenosis of urethra and bladder neck|Atresia and stenosis of urethra and bladder neck +C1305964|T019|AB|753.6|ICD9CM|Congen urethral stenosis|Congen urethral stenosis +C0431741|T019|AB|753.7|ICD9CM|Anomalies of urachus|Anomalies of urachus +C0431741|T019|PT|753.7|ICD9CM|Anomalies of urachus|Anomalies of urachus +C0158707|T019|AB|753.8|ICD9CM|Cystourethral anom NEC|Cystourethral anom NEC +C0158707|T019|PT|753.8|ICD9CM|Other specified anomalies of bladder and urethra|Other specified anomalies of bladder and urethra +C0158698|T019|PT|753.9|ICD9CM|Unspecified anomaly of urinary system|Unspecified anomaly of urinary system +C0158698|T019|AB|753.9|ICD9CM|Urinary anomaly NOS|Urinary anomaly NOS +C0158709|T019|HT|754|ICD9CM|Certain congenital musculoskeletal deformities|Certain congenital musculoskeletal deformities +C0432068|T019|AB|754.0|ICD9CM|Cong skull/face/jaw def|Cong skull/face/jaw def +C0432068|T019|PT|754.0|ICD9CM|Congenital musculoskeletal deformities of skull, face, and jaw|Congenital musculoskeletal deformities of skull, face, and jaw +C0345380|T019|PT|754.1|ICD9CM|Congenital musculoskeletal deformities of sternocleidomastoid muscle|Congenital musculoskeletal deformities of sternocleidomastoid muscle +C0345380|T019|AB|754.1|ICD9CM|Congenital torticollis|Congenital torticollis +C0158712|T019|AB|754.2|ICD9CM|Cong postural deformity|Cong postural deformity +C0158712|T019|PT|754.2|ICD9CM|Congenital musculoskeletal deformities of spine|Congenital musculoskeletal deformities of spine +C0019555|T019|HT|754.3|ICD9CM|Congenital dislocation of hip|Congenital dislocation of hip +C0009702|T019|AB|754.30|ICD9CM|Cong hip disloc, unilat|Cong hip disloc, unilat +C0009702|T019|PT|754.30|ICD9CM|Congenital dislocation of hip, unilateral|Congenital dislocation of hip, unilateral +C0158713|T019|AB|754.31|ICD9CM|Congen hip disloc, bilat|Congen hip disloc, bilat +C0158713|T019|PT|754.31|ICD9CM|Congenital dislocation of hip, bilateral|Congenital dislocation of hip, bilateral +C1261276|T019|AB|754.32|ICD9CM|Cong hip sublux, unilat|Cong hip sublux, unilat +C1261276|T019|PT|754.32|ICD9CM|Congenital subluxation of hip, unilateral|Congenital subluxation of hip, unilateral +C0158715|T019|AB|754.33|ICD9CM|Cong hip sublux, bilat|Cong hip sublux, bilat +C0158715|T019|PT|754.33|ICD9CM|Congenital subluxation of hip, bilateral|Congenital subluxation of hip, bilateral +C0158716|T019|AB|754.35|ICD9CM|Cong hip disloc w sublux|Cong hip disloc w sublux +C0158716|T019|PT|754.35|ICD9CM|Congenital dislocation of one hip with subluxation of other hip|Congenital dislocation of one hip with subluxation of other hip +C0431946|T019|HT|754.4|ICD9CM|Congenital genu recurvatum and bowing of long bones of leg|Congenital genu recurvatum and bowing of long bones of leg +C0152235|T019|AB|754.40|ICD9CM|Cong genu recurvatum|Cong genu recurvatum +C0152235|T019|PT|754.40|ICD9CM|Genu recurvatum|Genu recurvatum +C0158718|T019|AB|754.41|ICD9CM|Cong knee dislocation|Cong knee dislocation +C0158718|T019|PT|754.41|ICD9CM|Congenital dislocation of knee (with genu recurvatum)|Congenital dislocation of knee (with genu recurvatum) +C0158719|T019|AB|754.42|ICD9CM|Congen bowing of femur|Congen bowing of femur +C0158719|T019|PT|754.42|ICD9CM|Congenital bowing of femur|Congenital bowing of femur +C0158720|T019|AB|754.43|ICD9CM|Cong bowing tibia/fibula|Cong bowing tibia/fibula +C0158720|T019|PT|754.43|ICD9CM|Congenital bowing of tibia and fibula|Congenital bowing of tibia and fibula +C0152432|T019|AB|754.44|ICD9CM|Cong bowing leg NOS|Cong bowing leg NOS +C0152432|T019|PT|754.44|ICD9CM|Congenital bowing of unspecified long bones of leg|Congenital bowing of unspecified long bones of leg +C0158722|T019|HT|754.5|ICD9CM|Varus deformities of feet, congenital|Varus deformities of feet, congenital +C0158722|T019|AB|754.50|ICD9CM|Talipes varus|Talipes varus +C0158722|T019|PT|754.50|ICD9CM|Talipes varus|Talipes varus +C0009081|T019|AB|754.51|ICD9CM|Talipes equinovarus|Talipes equinovarus +C0009081|T019|PT|754.51|ICD9CM|Talipes equinovarus|Talipes equinovarus +C0265649|T019|AB|754.52|ICD9CM|Metatarsus primus varus|Metatarsus primus varus +C0265649|T019|PT|754.52|ICD9CM|Metatarsus primus varus|Metatarsus primus varus +C0265647|T019|AB|754.53|ICD9CM|Metatarsus varus|Metatarsus varus +C0265647|T019|PT|754.53|ICD9CM|Metatarsus varus|Metatarsus varus +C0158725|T019|AB|754.59|ICD9CM|Cong varus foot def NEC|Cong varus foot def NEC +C0158725|T019|PT|754.59|ICD9CM|Other varus deformities of feet|Other varus deformities of feet +C0158726|T019|HT|754.6|ICD9CM|Valgus deformities of feet, congenital|Valgus deformities of feet, congenital +C0152236|T019|AB|754.60|ICD9CM|Talipes valgus|Talipes valgus +C0152236|T019|PT|754.60|ICD9CM|Talipes valgus|Talipes valgus +C0392477|T019|AB|754.61|ICD9CM|Congenital pes planus|Congenital pes planus +C0392477|T019|PT|754.61|ICD9CM|Congenital pes planus|Congenital pes planus +C4551629|T019|PT|754.62|ICD9CM|Talipes calcaneovalgus|Talipes calcaneovalgus +C4551629|T019|AB|754.62|ICD9CM|Talipes calcaneovalgus|Talipes calcaneovalgus +C0158728|T019|AB|754.69|ICD9CM|Cong valgus foot def NEC|Cong valgus foot def NEC +C0158728|T019|PT|754.69|ICD9CM|Other valgus deformities of feet|Other valgus deformities of feet +C0158729|T019|HT|754.7|ICD9CM|Other congenital deformities of feet|Other congenital deformities of feet +C1301937|T019|AB|754.70|ICD9CM|Talipes NOS|Talipes NOS +C1301937|T019|PT|754.70|ICD9CM|Talipes, unspecified|Talipes, unspecified +C0728829|T019|AB|754.71|ICD9CM|Talipes cavus|Talipes cavus +C0728829|T019|PT|754.71|ICD9CM|Talipes cavus|Talipes cavus +C0158729|T019|AB|754.79|ICD9CM|Cong foot deform NEC|Cong foot deform NEC +C0158729|T019|PT|754.79|ICD9CM|Other deformities of feet|Other deformities of feet +C0158730|T019|HT|754.8|ICD9CM|Other specified nonteratogenic anomalies|Other specified nonteratogenic anomalies +C0016842|T019|AB|754.81|ICD9CM|Pectus excavatum|Pectus excavatum +C0016842|T019|PT|754.81|ICD9CM|Pectus excavatum|Pectus excavatum +C0158731|T019|AB|754.82|ICD9CM|Pectus carinatum|Pectus carinatum +C0158731|T019|PT|754.82|ICD9CM|Pectus carinatum|Pectus carinatum +C0158730|T019|AB|754.89|ICD9CM|Nonteratogenic anom NEC|Nonteratogenic anom NEC +C0158730|T019|PT|754.89|ICD9CM|Other specified nonteratogenic anomalies|Other specified nonteratogenic anomalies +C0158732|T019|HT|755|ICD9CM|Other congenital anomalies of limbs|Other congenital anomalies of limbs +C0152427|T019|HT|755.0|ICD9CM|Polydactyly|Polydactyly +C0152427|T019|AB|755.00|ICD9CM|Polydactyly NOS|Polydactyly NOS +C0152427|T019|PT|755.00|ICD9CM|Polydactyly, unspecified digits|Polydactyly, unspecified digits +C0158733|T019|PT|755.01|ICD9CM|Polydactyly of fingers|Polydactyly of fingers +C0158733|T019|AB|755.01|ICD9CM|Polydactyly, fingers|Polydactyly, fingers +C0158734|T019|PT|755.02|ICD9CM|Polydactyly of toes|Polydactyly of toes +C0158734|T019|AB|755.02|ICD9CM|Polydactyly, toes|Polydactyly, toes +C0039075|T019|HT|755.1|ICD9CM|Syndactyly|Syndactyly +C0265553|T019|PT|755.10|ICD9CM|Syndactyly of multiple and unspecified sites|Syndactyly of multiple and unspecified sites +C0265553|T019|AB|755.10|ICD9CM|Syndactyly, multiple/NOS|Syndactyly, multiple/NOS +C0221352|T019|AB|755.11|ICD9CM|Syndactyl fing-no fusion|Syndactyl fing-no fusion +C0221352|T019|PT|755.11|ICD9CM|Syndactyly of fingers without fusion of bone|Syndactyly of fingers without fusion of bone +C0158736|T019|AB|755.12|ICD9CM|Syndactyl fing w fusion|Syndactyl fing w fusion +C0158736|T019|PT|755.12|ICD9CM|Syndactyly of fingers with fusion of bone|Syndactyly of fingers with fusion of bone +C0345377|T019|AB|755.13|ICD9CM|Syndactyl toe-no fusion|Syndactyl toe-no fusion +C0345377|T019|PT|755.13|ICD9CM|Syndactyly of toes without fusion of bone|Syndactyly of toes without fusion of bone +C0158738|T019|AB|755.14|ICD9CM|Syndactyl toe w fusion|Syndactyl toe w fusion +C0158738|T019|PT|755.14|ICD9CM|Syndactyly of toes with fusion of bone|Syndactyly of toes with fusion of bone +C0265566|T019|HT|755.2|ICD9CM|Reduction deformities of upper limb, congenital|Reduction deformities of upper limb, congenital +C0265566|T019|AB|755.20|ICD9CM|Reduc deform up limb NOS|Reduc deform up limb NOS +C0265566|T019|PT|755.20|ICD9CM|Unspecified reduction deformity of upper limb|Unspecified reduction deformity of upper limb +C0431826|T019|AB|755.21|ICD9CM|Transverse defic arm|Transverse defic arm +C0431826|T019|PT|755.21|ICD9CM|Transverse deficiency of upper limb|Transverse deficiency of upper limb +C0375533|T019|AB|755.22|ICD9CM|Longitud defic arm NEC|Longitud defic arm NEC +C0375533|T019|PT|755.22|ICD9CM|Longitudinal deficiency of upper limb, not elsewhere classified|Longitudinal deficiency of upper limb, not elsewhere classified +C0158743|T019|AB|755.23|ICD9CM|Combin longit defic arm|Combin longit defic arm +C0158743|T019|PT|755.23|ICD9CM|Longitudinal deficiency, combined, involving humerus, radius, and ulna (complete or incomplete)|Longitudinal deficiency, combined, involving humerus, radius, and ulna (complete or incomplete) +C0158744|T019|AB|755.24|ICD9CM|Longitudin defic humerus|Longitudin defic humerus +C0158745|T019|AB|755.25|ICD9CM|Longitud defic radioulna|Longitud defic radioulna +C0158746|T019|AB|755.26|ICD9CM|Longitud defic radius|Longitud defic radius +C0158747|T019|AB|755.27|ICD9CM|Longitudinal defic ulna|Longitudinal defic ulna +C0158748|T019|AB|755.28|ICD9CM|Longitudinal defic hand|Longitudinal defic hand +C0490053|T019|AB|755.29|ICD9CM|Longitud defic phalanges|Longitud defic phalanges +C0490053|T019|PT|755.29|ICD9CM|Longitudinal deficiency, phalanges, complete or partial|Longitudinal deficiency, phalanges, complete or partial +C0265618|T019|HT|755.3|ICD9CM|Reduction deformities of lower limb, congenital|Reduction deformities of lower limb, congenital +C0265618|T019|AB|755.30|ICD9CM|Reduction deform leg NOS|Reduction deform leg NOS +C0265618|T019|PT|755.30|ICD9CM|Unspecified reduction deformity of lower limb|Unspecified reduction deformity of lower limb +C0158752|T019|AB|755.31|ICD9CM|Transverse defic leg|Transverse defic leg +C0158752|T019|PT|755.31|ICD9CM|Transverse deficiency of lower limb|Transverse deficiency of lower limb +C0375534|T190|AB|755.32|ICD9CM|Longitudin defic leg NEC|Longitudin defic leg NEC +C0375534|T190|PT|755.32|ICD9CM|Longitudinal deficiency of lower limb, not elsewhere classified|Longitudinal deficiency of lower limb, not elsewhere classified +C0158754|T019|AB|755.33|ICD9CM|Comb longitudin def leg|Comb longitudin def leg +C0158754|T019|PT|755.33|ICD9CM|Longitudinal deficiency, combined, involving femur, tibia, and fibula (complete or incomplete)|Longitudinal deficiency, combined, involving femur, tibia, and fibula (complete or incomplete) +C0158755|T019|AB|755.34|ICD9CM|Longitudinal defic femur|Longitudinal defic femur +C0158756|T019|AB|755.35|ICD9CM|Tibiofibula longit defic|Tibiofibula longit defic +C0158757|T019|AB|755.36|ICD9CM|Longitudinal defic tibia|Longitudinal defic tibia +C0158758|T019|AB|755.37|ICD9CM|Longitudin defic fibula|Longitudin defic fibula +C0158759|T019|AB|755.38|ICD9CM|Longitudinal defic foot|Longitudinal defic foot +C0490054|T019|AB|755.39|ICD9CM|Longitud defic phalanges|Longitud defic phalanges +C0490054|T019|PT|755.39|ICD9CM|Longitudinal deficiency, phalanges, complete or partial|Longitudinal deficiency, phalanges, complete or partial +C0265547|T019|AB|755.4|ICD9CM|Reduct deform limb NOS|Reduct deform limb NOS +C0265547|T019|PT|755.4|ICD9CM|Reduction deformities, unspecified limb|Reduction deformities, unspecified limb +C0478070|T019|HT|755.5|ICD9CM|Other congenital anomalies of upper limb, including shoulder girdle|Other congenital anomalies of upper limb, including shoulder girdle +C0749794|T019|PT|755.50|ICD9CM|Unspecified anomaly of upper limb|Unspecified anomaly of upper limb +C0749794|T019|AB|755.50|ICD9CM|Upper limb anomaly NOS|Upper limb anomaly NOS +C0158760|T019|AB|755.51|ICD9CM|Cong deformity-clavicle|Cong deformity-clavicle +C0158760|T019|PT|755.51|ICD9CM|Congenital deformity of clavicle|Congenital deformity of clavicle +C0152438|T019|AB|755.52|ICD9CM|Cong elevation-scapula|Cong elevation-scapula +C0152438|T019|PT|755.52|ICD9CM|Congenital elevation of scapula|Congenital elevation of scapula +C0158761|T019|AB|755.53|ICD9CM|Radioulnar synostosis|Radioulnar synostosis +C0158761|T019|PT|755.53|ICD9CM|Radioulnar synostosis|Radioulnar synostosis +C0152441|T019|AB|755.54|ICD9CM|Madelung's deformity|Madelung's deformity +C0152441|T019|PT|755.54|ICD9CM|Madelung's deformity|Madelung's deformity +C1510455|T019|AB|755.55|ICD9CM|Acrocephalosyndactyly|Acrocephalosyndactyly +C1510455|T019|PT|755.55|ICD9CM|Acrocephalosyndactyly|Acrocephalosyndactyly +C0265609|T019|AB|755.56|ICD9CM|Accessory carpal bones|Accessory carpal bones +C0265609|T019|PT|755.56|ICD9CM|Accessory carpal bones|Accessory carpal bones +C0158763|T019|AB|755.57|ICD9CM|Macrodactylia (fingers)|Macrodactylia (fingers) +C0158763|T019|PT|755.57|ICD9CM|Macrodactylia (fingers)|Macrodactylia (fingers) +C0265554|T019|PT|755.58|ICD9CM|Cleft hand, congenital|Cleft hand, congenital +C0265554|T019|AB|755.58|ICD9CM|Congenital cleft hand|Congenital cleft hand +C0478070|T019|PT|755.59|ICD9CM|Other anomalies of upper limb, including shoulder girdle|Other anomalies of upper limb, including shoulder girdle +C0478070|T019|AB|755.59|ICD9CM|Upper limb anomaly NEC|Upper limb anomaly NEC +C0478071|T019|HT|755.6|ICD9CM|Other congenital anomalies of lower limb, including pelvic girdle|Other congenital anomalies of lower limb, including pelvic girdle +C0431943|T019|AB|755.60|ICD9CM|Lower limb anomaly NOS|Lower limb anomaly NOS +C0431943|T019|PT|755.60|ICD9CM|Unspecified anomaly of lower limb|Unspecified anomaly of lower limb +C0152430|T019|AB|755.61|ICD9CM|Congenital coxa valga|Congenital coxa valga +C0152430|T019|PT|755.61|ICD9CM|Coxa valga, congenital|Coxa valga, congenital +C0152431|T019|AB|755.62|ICD9CM|Congenital coxa vara|Congenital coxa vara +C0152431|T019|PT|755.62|ICD9CM|Coxa vara, congenital|Coxa vara, congenital +C0029557|T019|AB|755.63|ICD9CM|Cong hip deformity NEC|Cong hip deformity NEC +C0029557|T019|PT|755.63|ICD9CM|Other congenital deformity of hip (joint)|Other congenital deformity of hip (joint) +C0158767|T019|AB|755.64|ICD9CM|Cong knee deformity|Cong knee deformity +C0158767|T019|PT|755.64|ICD9CM|Congenital deformity of knee (joint)|Congenital deformity of knee (joint) +C0158768|T019|AB|755.65|ICD9CM|Macrodactylia of toes|Macrodactylia of toes +C0158768|T019|PT|755.65|ICD9CM|Macrodactylia of toes|Macrodactylia of toes +C0432018|T019|AB|755.66|ICD9CM|Anomalies of toes NEC|Anomalies of toes NEC +C0432018|T019|PT|755.66|ICD9CM|Other anomalies of toes|Other anomalies of toes +C0868868|T019|AB|755.67|ICD9CM|Anomalies of foot NEC|Anomalies of foot NEC +C0868868|T019|PT|755.67|ICD9CM|Anomalies of foot, not elsewhere classified|Anomalies of foot, not elsewhere classified +C0478071|T019|AB|755.69|ICD9CM|Lower limb anomaly NEC|Lower limb anomaly NEC +C0478071|T019|PT|755.69|ICD9CM|Other anomalies of lower limb, including pelvic girdle|Other anomalies of lower limb, including pelvic girdle +C2733636|T019|AB|755.8|ICD9CM|Congen limb anomaly NEC|Congen limb anomaly NEC +C2733636|T019|PT|755.8|ICD9CM|Other specified anomalies of unspecified limb|Other specified anomalies of unspecified limb +C0206762|T019|AB|755.9|ICD9CM|Congen limb anomaly NOS|Congen limb anomaly NOS +C0206762|T019|PT|755.9|ICD9CM|Unspecified anomaly of unspecified limb|Unspecified anomaly of unspecified limb +C0158773|T019|HT|756|ICD9CM|Other congenital musculoskeletal anomalies|Other congenital musculoskeletal anomalies +C0495615|T019|AB|756.0|ICD9CM|Anomal skull/face bones|Anomal skull/face bones +C0495615|T019|PT|756.0|ICD9CM|Anomalies of skull and face bones|Anomalies of skull and face bones +C0158775|T019|HT|756.1|ICD9CM|Anomalies of spine, congenital|Anomalies of spine, congenital +C0158775|T019|AB|756.10|ICD9CM|Anomaly of spine NOS|Anomaly of spine NOS +C0158775|T019|PT|756.10|ICD9CM|Anomaly of spine, unspecified|Anomaly of spine, unspecified +C0432162|T019|AB|756.11|ICD9CM|Lumbosacr spondylolysis|Lumbosacr spondylolysis +C0432162|T019|PT|756.11|ICD9CM|Spondylolysis, lumbosacral region|Spondylolysis, lumbosacral region +C0038017|T019|AB|756.12|ICD9CM|Spondylolisthesis|Spondylolisthesis +C0038017|T019|PT|756.12|ICD9CM|Spondylolisthesis|Spondylolisthesis +C0158776|T019|PT|756.13|ICD9CM|Absence of vertebra, congenital|Absence of vertebra, congenital +C0158776|T019|AB|756.13|ICD9CM|Cong absence of vertebra|Cong absence of vertebra +C0265677|T019|AB|756.14|ICD9CM|Hemivertebra|Hemivertebra +C0265677|T019|PT|756.14|ICD9CM|Hemivertebra|Hemivertebra +C0265678|T019|AB|756.15|ICD9CM|Congen fusion of spine|Congen fusion of spine +C0265678|T019|PT|756.15|ICD9CM|Fusion of spine (vertebra), congenital|Fusion of spine (vertebra), congenital +C0022738|T047|PT|756.16|ICD9CM|Klippel-Feil syndrome|Klippel-Feil syndrome +C0022738|T047|AB|756.16|ICD9CM|Klippel-feil syndrome|Klippel-feil syndrome +C0080174|T019|AB|756.17|ICD9CM|Spina bifida occulta|Spina bifida occulta +C0080174|T019|PT|756.17|ICD9CM|Spina bifida occulta|Spina bifida occulta +C0432138|T019|AB|756.19|ICD9CM|Anomaly of spine NEC|Anomaly of spine NEC +C0432138|T019|PT|756.19|ICD9CM|Other anomalies of spine|Other anomalies of spine +C0158779|T019|AB|756.2|ICD9CM|Cervical rib|Cervical rib +C0158779|T019|PT|756.2|ICD9CM|Cervical rib|Cervical rib +C0432133|T019|PT|756.3|ICD9CM|Other anomalies of ribs and sternum|Other anomalies of ribs and sternum +C0432133|T019|AB|756.3|ICD9CM|Rib & sternum anomal NEC|Rib & sternum anomal NEC +C0008449|T047|AB|756.4|ICD9CM|Chondrodystrophy|Chondrodystrophy +C0008449|T047|PT|756.4|ICD9CM|Chondrodystrophy|Chondrodystrophy +C0375536|T019|HT|756.5|ICD9CM|Congenital osteodystrophies|Congenital osteodystrophies +C0375536|T047|HT|756.5|ICD9CM|Congenital osteodystrophies|Congenital osteodystrophies +C0375536|T019|PT|756.50|ICD9CM|Congenital osteodystrophy, unspecified|Congenital osteodystrophy, unspecified +C0375536|T047|PT|756.50|ICD9CM|Congenital osteodystrophy, unspecified|Congenital osteodystrophy, unspecified +C0375536|T019|AB|756.50|ICD9CM|Osteodystrophy NOS|Osteodystrophy NOS +C0375536|T047|AB|756.50|ICD9CM|Osteodystrophy NOS|Osteodystrophy NOS +C0029434|T047|AB|756.51|ICD9CM|Osteogenesis imperfecta|Osteogenesis imperfecta +C0029434|T047|PT|756.51|ICD9CM|Osteogenesis imperfecta|Osteogenesis imperfecta +C0029454|T047|AB|756.52|ICD9CM|Osteopetrosis|Osteopetrosis +C0029454|T047|PT|756.52|ICD9CM|Osteopetrosis|Osteopetrosis +C0029455|T047|AB|756.53|ICD9CM|Osteopoikilosis|Osteopoikilosis +C0029455|T047|PT|756.53|ICD9CM|Osteopoikilosis|Osteopoikilosis +C0016065|T019|AB|756.54|ICD9CM|Polyostotic fibros dyspl|Polyostotic fibros dyspl +C0016065|T019|PT|756.54|ICD9CM|Polyostotic fibrous dysplasia of bone|Polyostotic fibrous dysplasia of bone +C0013903|T047|AB|756.55|ICD9CM|Chondroectoderm dysplas|Chondroectoderm dysplas +C0013903|T047|PT|756.55|ICD9CM|Chondroectodermal dysplasia|Chondroectodermal dysplasia +C0026760|T019|AB|756.56|ICD9CM|Mult epiphyseal dysplas|Mult epiphyseal dysplas +C0026760|T019|PT|756.56|ICD9CM|Multiple epiphyseal dysplasia|Multiple epiphyseal dysplasia +C0029559|T019|AB|756.59|ICD9CM|Osteodystrophy NEC|Osteodystrophy NEC +C0029559|T019|PT|756.59|ICD9CM|Other osteodystrophies|Other osteodystrophies +C0158782|T019|AB|756.6|ICD9CM|Anomalies of diaphragm|Anomalies of diaphragm +C0158782|T019|PT|756.6|ICD9CM|Anomalies of diaphragm|Anomalies of diaphragm +C0009680|T019|HT|756.7|ICD9CM|Anomalies of abdominal wall, congenital|Anomalies of abdominal wall, congenital +C0009680|T019|PT|756.70|ICD9CM|Anomaly of abdominal wall, unspecified|Anomaly of abdominal wall, unspecified +C0009680|T019|AB|756.70|ICD9CM|Congn anoml abd wall NOS|Congn anoml abd wall NOS +C0033770|T047|AB|756.71|ICD9CM|Prune belly syndrome|Prune belly syndrome +C0033770|T047|PT|756.71|ICD9CM|Prune belly syndrome|Prune belly syndrome +C0795690|T019|PT|756.72|ICD9CM|Omphalocele|Omphalocele +C0795690|T019|AB|756.72|ICD9CM|Omphalocele|Omphalocele +C0265706|T047|AB|756.73|ICD9CM|Gastroschisis|Gastroschisis +C0265706|T047|PT|756.73|ICD9CM|Gastroschisis|Gastroschisis +C0490010|T019|AB|756.79|ICD9CM|Congn anoml abd wall NEC|Congn anoml abd wall NEC +C0490010|T019|PT|756.79|ICD9CM|Other congenital anomalies of abdominal wall|Other congenital anomalies of abdominal wall +C0029759|T019|HT|756.8|ICD9CM|Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue|Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue +C0439002|T019|PT|756.81|ICD9CM|Absence of muscle and tendon|Absence of muscle and tendon +C0439002|T019|AB|756.81|ICD9CM|Absence of muscle/tendon|Absence of muscle/tendon +C0158784|T019|AB|756.82|ICD9CM|Accessory muscle|Accessory muscle +C0158784|T019|PT|756.82|ICD9CM|Accessory muscle|Accessory muscle +C0013720|T047|PT|756.83|ICD9CM|Ehlers-Danlos syndrome|Ehlers-Danlos syndrome +C0013720|T047|AB|756.83|ICD9CM|Ehlers-danlos syndrome|Ehlers-danlos syndrome +C0029759|T019|PT|756.89|ICD9CM|Other specified anomalies of muscle, tendon, fascia, and connective tissue|Other specified anomalies of muscle, tendon, fascia, and connective tissue +C0029759|T019|AB|756.89|ICD9CM|Soft tissue anomaly NEC|Soft tissue anomaly NEC +C0478080|T019|AB|756.9|ICD9CM|Musculoskel anom NEC/NOS|Musculoskel anom NEC/NOS +C0478080|T019|PT|756.9|ICD9CM|Other and unspecified anomalies of musculoskeletal system|Other and unspecified anomalies of musculoskeletal system +C3536895|T019|HT|757|ICD9CM|Congenital anomalies of the integument|Congenital anomalies of the integument +C1313885|T047|AB|757.0|ICD9CM|Hereditary edema of legs|Hereditary edema of legs +C1313885|T047|PT|757.0|ICD9CM|Hereditary edema of legs|Hereditary edema of legs +C0020758|T047|AB|757.1|ICD9CM|Ichthyosis congenita|Ichthyosis congenita +C0020758|T047|PT|757.1|ICD9CM|Ichthyosis congenita|Ichthyosis congenita +C0432333|T019|AB|757.2|ICD9CM|Dermatoglyphic anomalies|Dermatoglyphic anomalies +C0432333|T019|PT|757.2|ICD9CM|Dermatoglyphic anomalies|Dermatoglyphic anomalies +C2363246|T019|HT|757.3|ICD9CM|Other specified congenital anomalies of skin|Other specified congenital anomalies of skin +C0013575|T047|AB|757.31|ICD9CM|Cong ectodermal dysplas|Cong ectodermal dysplas +C0013575|T047|PT|757.31|ICD9CM|Congenital ectodermal dysplasia|Congenital ectodermal dysplasia +C0265973|T019|AB|757.32|ICD9CM|Vascular hamartomas|Vascular hamartomas +C0265973|T019|PT|757.32|ICD9CM|Vascular hamartomas|Vascular hamartomas +C0009726|T019|AB|757.33|ICD9CM|Cong skin pigment anomal|Cong skin pigment anomal +C0009726|T019|PT|757.33|ICD9CM|Congenital pigmentary anomalies of skin|Congenital pigmentary anomalies of skin +C2363246|T019|PT|757.39|ICD9CM|Other specified anomalies of skin|Other specified anomalies of skin +C2363246|T019|AB|757.39|ICD9CM|Skin anomaly NEC|Skin anomaly NEC +C0432340|T019|AB|757.4|ICD9CM|Hair anomalies NEC|Hair anomalies NEC +C0432340|T019|PT|757.4|ICD9CM|Specified anomalies of hair|Specified anomalies of hair +C0432351|T019|AB|757.5|ICD9CM|Nail anomalies NEC|Nail anomalies NEC +C0432351|T019|PT|757.5|ICD9CM|Specified anomalies of nails|Specified anomalies of nails +C0432354|T019|AB|757.6|ICD9CM|Cong breast anomaly NEC|Cong breast anomaly NEC +C0432354|T019|PT|757.6|ICD9CM|Specified congenital anomalies of breast|Specified congenital anomalies of breast +C0478090|T019|AB|757.8|ICD9CM|Oth integument anomalies|Oth integument anomalies +C0478090|T019|PT|757.8|ICD9CM|Other specified anomalies of the integument|Other specified anomalies of the integument +C3536895|T019|AB|757.9|ICD9CM|Integument anomaly NOS|Integument anomaly NOS +C3536895|T019|PT|757.9|ICD9CM|Unspecified congenital anomaly of the integument|Unspecified congenital anomaly of the integument +C0008626|T019|HT|758|ICD9CM|Chromosomal anomalies|Chromosomal anomalies +C0013080|T047|AB|758.0|ICD9CM|Down's syndrome|Down's syndrome +C0013080|T047|PT|758.0|ICD9CM|Down's syndrome|Down's syndrome +C0152095|T047|AB|758.1|ICD9CM|Patau's syndrome|Patau's syndrome +C0152095|T047|PT|758.1|ICD9CM|Patau's syndrome|Patau's syndrome +C0152096|T047|AB|758.2|ICD9CM|Edwards' syndrome|Edwards' syndrome +C0152096|T047|PT|758.2|ICD9CM|Edwards' syndrome|Edwards' syndrome +C0004402|T047|HT|758.3|ICD9CM|Autosomal deletion syndromes|Autosomal deletion syndromes +C0010314|T047|AB|758.31|ICD9CM|Cri-du-chat syndrome|Cri-du-chat syndrome +C0010314|T047|PT|758.31|ICD9CM|Cri-du-chat syndrome|Cri-du-chat syndrome +C0220704|T047|AB|758.32|ICD9CM|Velo-cardio-facial synd|Velo-cardio-facial synd +C0220704|T047|PT|758.32|ICD9CM|Velo-cardio-facial syndrome|Velo-cardio-facial syndrome +C2910371|T047|AB|758.33|ICD9CM|Microdeletions NEC|Microdeletions NEC +C2910371|T047|PT|758.33|ICD9CM|Other microdeletions|Other microdeletions +C0478100|T046|AB|758.39|ICD9CM|Autosomal deletions NEC|Autosomal deletions NEC +C0478100|T046|PT|758.39|ICD9CM|Other autosomal deletions|Other autosomal deletions +C0029549|T047|AB|758.5|ICD9CM|Autosomal anomalies NEC|Autosomal anomalies NEC +C0029549|T047|PT|758.5|ICD9CM|Other conditions due to autosomal anomalies|Other conditions due to autosomal anomalies +C0018051|T019|AB|758.6|ICD9CM|Gonadal dysgenesis|Gonadal dysgenesis +C0018051|T019|PT|758.6|ICD9CM|Gonadal dysgenesis|Gonadal dysgenesis +C0022735|T047|AB|758.7|ICD9CM|Klinefelter's syndrome|Klinefelter's syndrome +C0022735|T047|PT|758.7|ICD9CM|Klinefelter's syndrome|Klinefelter's syndrome +C1305927|T047|HT|758.8|ICD9CM|Other conditions due to chromosome anomalies|Other conditions due to chromosome anomalies +C0029550|T019|AB|758.81|ICD9CM|Oth cond due to sex chrm|Oth cond due to sex chrm +C0029550|T019|PT|758.81|ICD9CM|Other conditions due to sex chromosome anomalies|Other conditions due to sex chromosome anomalies +C1305927|T047|AB|758.89|ICD9CM|Oth con d/t chrm anm NEC|Oth con d/t chrm anm NEC +C1305927|T047|PT|758.89|ICD9CM|Other conditions due to chromosome anomalies|Other conditions due to chromosome anomalies +C0008626|T019|AB|758.9|ICD9CM|Chromosome anomaly NOS|Chromosome anomaly NOS +C0008626|T019|PT|758.9|ICD9CM|Conditions due to anomaly of unspecified chromosome|Conditions due to anomaly of unspecified chromosome +C0158795|T019|HT|759|ICD9CM|Other and unspecified congenital anomalies|Other and unspecified congenital anomalies +C0700587|T019|AB|759.0|ICD9CM|Anomalies of spleen|Anomalies of spleen +C0700587|T019|PT|759.0|ICD9CM|Anomalies of spleen|Anomalies of spleen +C0158797|T019|AB|759.1|ICD9CM|Adrenal gland anomaly|Adrenal gland anomaly +C0158797|T019|PT|759.1|ICD9CM|Anomalies of adrenal gland|Anomalies of adrenal gland +C0432378|T019|PT|759.2|ICD9CM|Anomalies of other endocrine glands|Anomalies of other endocrine glands +C0432378|T019|AB|759.2|ICD9CM|Endocrine anomaly NEC|Endocrine anomaly NEC +C0037221|T019|AB|759.3|ICD9CM|Situs inversus|Situs inversus +C0037221|T019|PT|759.3|ICD9CM|Situs inversus|Situs inversus +C0041428|T019|AB|759.4|ICD9CM|Conjoined twins|Conjoined twins +C0041428|T019|PT|759.4|ICD9CM|Conjoined twins|Conjoined twins +C0041341|T191|AB|759.5|ICD9CM|Tuberous sclerosis|Tuberous sclerosis +C0041341|T191|PT|759.5|ICD9CM|Tuberous sclerosis|Tuberous sclerosis +C0302397|T019|AB|759.6|ICD9CM|Hamartoses NEC|Hamartoses NEC +C0302397|T019|PT|759.6|ICD9CM|Other hamartoses, not elsewhere classified|Other hamartoses, not elsewhere classified +C0026758|T019|AB|759.7|ICD9CM|Mult congen anomal NEC|Mult congen anomal NEC +C0026758|T019|PT|759.7|ICD9CM|Multiple congenital anomalies, so described|Multiple congenital anomalies, so described +C0478095|T019|HT|759.8|ICD9CM|Other specified anomalies|Other specified anomalies +C0032897|T047|PT|759.81|ICD9CM|Prader-Willi syndrome|Prader-Willi syndrome +C0032897|T047|AB|759.81|ICD9CM|Prader-willi syndrome|Prader-willi syndrome +C0024796|T047|AB|759.82|ICD9CM|Marfan syndrome|Marfan syndrome +C0024796|T047|PT|759.82|ICD9CM|Marfan syndrome|Marfan syndrome +C0016667|T047|PT|759.83|ICD9CM|Fragile X syndrome|Fragile X syndrome +C0016667|T047|AB|759.83|ICD9CM|Fragile x syndrome|Fragile x syndrome +C0478095|T019|PT|759.89|ICD9CM|Other specified congenital anomalies|Other specified congenital anomalies +C0478095|T019|AB|759.89|ICD9CM|Specfied cong anomal NEC|Specfied cong anomal NEC +C0000768|T019|AB|759.9|ICD9CM|Congenital anomaly NOS|Congenital anomaly NOS +C0000768|T019|PT|759.9|ICD9CM|Congenital anomaly, unspecified|Congenital anomaly, unspecified +C0158799|T047|HT|760|ICD9CM|Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy|Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy +C0178307|T047|HT|760-779.99|ICD9CM|CERTAIN CONDITIONS ORIGINATING IN THE PERINATAL PERIOD|CERTAIN CONDITIONS ORIGINATING IN THE PERINATAL PERIOD +C0411176|T047|AB|760.0|ICD9CM|Matern hyperten aff NB|Matern hyperten aff NB +C0411176|T047|PT|760.0|ICD9CM|Maternal hypertensive disorders affecting fetus or newborn|Maternal hypertensive disorders affecting fetus or newborn +C0158801|T047|AB|760.1|ICD9CM|Matern urine dis aff NB|Matern urine dis aff NB +C0158801|T047|PT|760.1|ICD9CM|Maternal renal and urinary tract diseases affecting fetus or newborn|Maternal renal and urinary tract diseases affecting fetus or newborn +C0411178|T046|AB|760.2|ICD9CM|Maternal infec aff NB|Maternal infec aff NB +C0411178|T046|PT|760.2|ICD9CM|Maternal infections affecting fetus or newborn|Maternal infections affecting fetus or newborn +C0158803|T047|AB|760.3|ICD9CM|Matern cardioresp aff NB|Matern cardioresp aff NB +C0158803|T047|PT|760.3|ICD9CM|Other chronic maternal circulatory and respiratory diseases affecting fetus or newborn|Other chronic maternal circulatory and respiratory diseases affecting fetus or newborn +C0158804|T047|AB|760.4|ICD9CM|Matern nutrit dis aff NB|Matern nutrit dis aff NB +C0158804|T047|PT|760.4|ICD9CM|Maternal nutritional disorders affecting fetus or newborn|Maternal nutritional disorders affecting fetus or newborn +C0158805|T037|AB|760.5|ICD9CM|Maternal injury aff NB|Maternal injury aff NB +C0158805|T037|PT|760.5|ICD9CM|Maternal injury affecting fetus or newborn|Maternal injury affecting fetus or newborn +C2349661|T033|HT|760.6|ICD9CM|Surgical operation on mother and fetus|Surgical operation on mother and fetus +C2349657|T033|AB|760.61|ICD9CM|Amniocentesis affect NB|Amniocentesis affect NB +C2349657|T033|PT|760.61|ICD9CM|Newborn affected by amniocentesis|Newborn affected by amniocentesis +C2349658|T047|AB|760.62|ICD9CM|In utero proc NEC aff NB|In utero proc NEC aff NB +C2349658|T047|PT|760.62|ICD9CM|Newborn affected by other in utero procedure|Newborn affected by other in utero procedure +C2349659|T047|AB|760.63|ICD9CM|Mat surg dur preg aff NB|Mat surg dur preg aff NB +C2349659|T047|PT|760.63|ICD9CM|Newborn affected by other surgical operations on mother during pregnancy|Newborn affected by other surgical operations on mother during pregnancy +C2349660|T033|PT|760.64|ICD9CM|Newborn affected by previous surgical procedure on mother not associated with pregnancy|Newborn affected by previous surgical procedure on mother not associated with pregnancy +C2349660|T033|AB|760.64|ICD9CM|Prev matern surg aff NB|Prev matern surg aff NB +C0859825|T047|HT|760.7|ICD9CM|Noxious influences affecting fetus or newborn via placenta or breast milk|Noxious influences affecting fetus or newborn via placenta or breast milk +C0158808|T047|AB|760.70|ICD9CM|Nox sub NOS aff NB/fetus|Nox sub NOS aff NB/fetus +C0158808|T047|PT|760.70|ICD9CM|Unspecified noxious substance affecting fetus or newborn via placenta or breast milk|Unspecified noxious substance affecting fetus or newborn via placenta or breast milk +C1542327|T033|PT|760.71|ICD9CM|Alcohol affecting fetus or newborn via placenta or breast milk|Alcohol affecting fetus or newborn via placenta or breast milk +C1542327|T033|AB|760.71|ICD9CM|Maternl alc aff NB/fetus|Maternl alc aff NB/fetus +C0158809|T047|AB|760.72|ICD9CM|Matern narc aff NB/fetus|Matern narc aff NB/fetus +C0158809|T047|PT|760.72|ICD9CM|Narcotics affecting fetus or newborn via placenta or breast milk|Narcotics affecting fetus or newborn via placenta or breast milk +C0158810|T033|PT|760.73|ICD9CM|Hallucinogenic agents affecting fetus or newborn via placenta or breast milk|Hallucinogenic agents affecting fetus or newborn via placenta or breast milk +C0158810|T033|AB|760.73|ICD9CM|Matern halluc af NB/fet|Matern halluc af NB/fet +C0158811|T047|PT|760.74|ICD9CM|Anti-infectives affecting fetus or newborn via placenta or breast milk|Anti-infectives affecting fetus or newborn via placenta or breast milk +C0158811|T047|AB|760.74|ICD9CM|Mat anti-inf aff NB/fet|Mat anti-inf aff NB/fet +C0158812|T047|PT|760.75|ICD9CM|Cocaine affecting fetus or newborn via placenta or breast milk|Cocaine affecting fetus or newborn via placenta or breast milk +C0158812|T047|AB|760.75|ICD9CM|Mat cocaine aff NB/fet|Mat cocaine aff NB/fet +C0375539|T047|PT|760.76|ICD9CM|Diethylstilbestrol [DES] affecting fetus or newborn via placenta or breast milk|Diethylstilbestrol [DES] affecting fetus or newborn via placenta or breast milk +C0375539|T047|AB|760.76|ICD9CM|Maternal DES af NB/fetus|Maternal DES af NB/fetus +C1561781|T046|PT|760.77|ICD9CM|Anticonvulsants affecting fetus or newborn via placenta or breast milk|Anticonvulsants affecting fetus or newborn via placenta or breast milk +C1561781|T046|AB|760.77|ICD9CM|Mat anticonv aff NB/fet|Mat anticonv aff NB/fet +C1561786|T046|PT|760.78|ICD9CM|Antimetabolic agents affecting fetus or newborn via placenta or breast milk|Antimetabolic agents affecting fetus or newborn via placenta or breast milk +C1561786|T046|AB|760.78|ICD9CM|Mat antimetabol aff NB|Mat antimetabol aff NB +C0158813|T047|AB|760.79|ICD9CM|Nox sub NEC aff NB/fetus|Nox sub NEC aff NB/fetus +C0158813|T047|PT|760.79|ICD9CM|Other noxious influences affecting fetus or newborn via placenta or breast milk|Other noxious influences affecting fetus or newborn via placenta or breast milk +C0158814|T047|AB|760.8|ICD9CM|Maternal cond NEC aff NB|Maternal cond NEC aff NB +C0158814|T047|PT|760.8|ICD9CM|Other specified maternal conditions affecting fetus or newborn|Other specified maternal conditions affecting fetus or newborn +C0411175|T047|AB|760.9|ICD9CM|Maternal cond NOS aff NB|Maternal cond NOS aff NB +C0411175|T047|PT|760.9|ICD9CM|Unspecified maternal condition affecting fetus or newborn|Unspecified maternal condition affecting fetus or newborn +C0158816|T046|HT|761|ICD9CM|Fetus or newborn affected by maternal complications of pregnancy|Fetus or newborn affected by maternal complications of pregnancy +C0158817|T046|PT|761.0|ICD9CM|Incompetent cervix affecting fetus or newborn|Incompetent cervix affecting fetus or newborn +C0158817|T046|AB|761.0|ICD9CM|Incompetnt cervix aff NB|Incompetnt cervix aff NB +C0411160|T046|AB|761.1|ICD9CM|Premat rupt memb aff NB|Premat rupt memb aff NB +C0411160|T046|PT|761.1|ICD9CM|Premature rupture of membranes affecting fetus or newborn|Premature rupture of membranes affecting fetus or newborn +C0158819|T046|AB|761.2|ICD9CM|Oligohydramnios aff NB|Oligohydramnios aff NB +C0158819|T046|PT|761.2|ICD9CM|Oligohydramnios affecting fetus or newborn|Oligohydramnios affecting fetus or newborn +C0158820|T046|AB|761.3|ICD9CM|Polyhydramnios aff NB|Polyhydramnios aff NB +C0158820|T046|PT|761.3|ICD9CM|Polyhydramnios affecting fetus or newborn|Polyhydramnios affecting fetus or newborn +C0411164|T046|AB|761.4|ICD9CM|Ectopic pregnancy aff NB|Ectopic pregnancy aff NB +C0411164|T046|PT|761.4|ICD9CM|Ectopic pregnancy affecting fetus or newborn|Ectopic pregnancy affecting fetus or newborn +C0411169|T046|AB|761.5|ICD9CM|Mult pregnancy aff NB|Mult pregnancy aff NB +C0411169|T046|PT|761.5|ICD9CM|Multiple pregnancy affecting fetus or newborn|Multiple pregnancy affecting fetus or newborn +C0158823|T046|AB|761.6|ICD9CM|Maternal death aff NB|Maternal death aff NB +C0158823|T046|PT|761.6|ICD9CM|Maternal death affecting fetus or newborn|Maternal death affecting fetus or newborn +C0473867|T046|AB|761.7|ICD9CM|Antepart malpres aff NB|Antepart malpres aff NB +C0473867|T046|PT|761.7|ICD9CM|Malpresentation before labor affecting fetus or newborn|Malpresentation before labor affecting fetus or newborn +C0158825|T047|AB|761.8|ICD9CM|Matern compl NEC aff NB|Matern compl NEC aff NB +C0158825|T047|PT|761.8|ICD9CM|Other specified maternal complications of pregnancy affecting fetus or newborn|Other specified maternal complications of pregnancy affecting fetus or newborn +C0158816|T046|AB|761.9|ICD9CM|Matern compl NOS aff NB|Matern compl NOS aff NB +C0158816|T046|PT|761.9|ICD9CM|Unspecified maternal complication of pregnancy affecting fetus or newborn|Unspecified maternal complication of pregnancy affecting fetus or newborn +C0270025|T046|HT|762|ICD9CM|Fetus or newborn affected by complications of placenta, cord, and membranes|Fetus or newborn affected by complications of placenta, cord, and membranes +C3662231|T033|AB|762.0|ICD9CM|Placenta previa aff NB|Placenta previa aff NB +C3662231|T033|PT|762.0|ICD9CM|Placenta previa affecting fetus or newborn|Placenta previa affecting fetus or newborn +C0158829|T033|PT|762.1|ICD9CM|Other forms of placental separation and hemorrhage affecting fetus or newborn|Other forms of placental separation and hemorrhage affecting fetus or newborn +C0158829|T033|AB|762.1|ICD9CM|Placenta hem NEC aff NB|Placenta hem NEC aff NB +C0477887|T046|AB|762.2|ICD9CM|Abn plac NEC/NOS aff NB|Abn plac NEC/NOS aff NB +C0158831|T046|AB|762.3|ICD9CM|Placent transfusion syn|Placent transfusion syn +C0158831|T046|PT|762.3|ICD9CM|Placental transfusion syndromes affecting fetus or newborn|Placental transfusion syndromes affecting fetus or newborn +C0158832|T046|AB|762.4|ICD9CM|Prolapsed cord aff NB|Prolapsed cord aff NB +C0158832|T046|PT|762.4|ICD9CM|Prolapsed umbilical cord affecting fetus or newborn|Prolapsed umbilical cord affecting fetus or newborn +C0477888|T047|AB|762.5|ICD9CM|Oth umbil cord compress|Oth umbil cord compress +C0477888|T047|PT|762.5|ICD9CM|Other compression of umbilical cord affecting fetus or newborn|Other compression of umbilical cord affecting fetus or newborn +C0477889|T047|PT|762.6|ICD9CM|Other and unspecified conditions of umbilical cord affecting fetus or newborn|Other and unspecified conditions of umbilical cord affecting fetus or newborn +C0477889|T047|AB|762.6|ICD9CM|Umbil cond NEC aff NB|Umbil cond NEC aff NB +C0158835|T046|AB|762.7|ICD9CM|Chorioamnionitis aff NB|Chorioamnionitis aff NB +C0158835|T046|PT|762.7|ICD9CM|Chorioamnionitis affecting fetus or newborn|Chorioamnionitis affecting fetus or newborn +C0158836|T047|AB|762.8|ICD9CM|Abn amnion NEC aff NB|Abn amnion NEC aff NB +C0158836|T047|PT|762.8|ICD9CM|Other specified abnormalities of chorion and amnion affecting fetus or newborn|Other specified abnormalities of chorion and amnion affecting fetus or newborn +C0158837|T047|AB|762.9|ICD9CM|Abn amnion NOS aff NB|Abn amnion NOS aff NB +C0158837|T047|PT|762.9|ICD9CM|Unspecified abnormality of chorion and amnion affecting fetus or newborn|Unspecified abnormality of chorion and amnion affecting fetus or newborn +C0473833|T046|HT|763|ICD9CM|Fetus or newborn affected by other complications of labor and delivery|Fetus or newborn affected by other complications of labor and delivery +C0158839|T047|AB|763.0|ICD9CM|Breech del/extrac aff NB|Breech del/extrac aff NB +C0158839|T047|PT|763.0|ICD9CM|Breech delivery and extraction affecting fetus or newborn|Breech delivery and extraction affecting fetus or newborn +C0477891|T047|AB|763.1|ICD9CM|Malpos/dispro NEC aff NB|Malpos/dispro NEC aff NB +C0158841|T046|AB|763.2|ICD9CM|Forceps delivery aff NB|Forceps delivery aff NB +C0158841|T046|PT|763.2|ICD9CM|Forceps delivery affecting fetus or newborn|Forceps delivery affecting fetus or newborn +C0158842|T033|PT|763.3|ICD9CM|Delivery by vacuum extractor affecting fetus or newborn|Delivery by vacuum extractor affecting fetus or newborn +C0158842|T033|AB|763.3|ICD9CM|Vacuum extrac del aff NB|Vacuum extrac del aff NB +C0158843|T033|AB|763.4|ICD9CM|Cesarean delivery aff NB|Cesarean delivery aff NB +C0158843|T033|PT|763.4|ICD9CM|Cesarean delivery affecting fetus or newborn|Cesarean delivery affecting fetus or newborn +C0495351|T046|AB|763.5|ICD9CM|Mat anesth/analg aff NB|Mat anesth/analg aff NB +C0495351|T046|PT|763.5|ICD9CM|Maternal anesthesia and analgesia affecting fetus or newborn|Maternal anesthesia and analgesia affecting fetus or newborn +C0158845|T046|AB|763.6|ICD9CM|Precipitate del aff NB|Precipitate del aff NB +C0158845|T046|PT|763.6|ICD9CM|Precipitate delivery affecting fetus or newborn|Precipitate delivery affecting fetus or newborn +C0158846|T033|AB|763.7|ICD9CM|Abn uterine contr aff NB|Abn uterine contr aff NB +C0158846|T033|PT|763.7|ICD9CM|Abnormal uterine contractions affecting fetus or newborn|Abnormal uterine contractions affecting fetus or newborn +C0270067|T033|HT|763.8|ICD9CM|Other specified complications of labor and delivery affecting fetus or newborn|Other specified complications of labor and delivery affecting fetus or newborn +C0695249|T046|AB|763.81|ICD9CM|Ab ftl hrt rt/rh b/f lab|Ab ftl hrt rt/rh b/f lab +C0695249|T046|PT|763.81|ICD9CM|Abnormality in fetal heart rate or rhythm before the onset of labor|Abnormality in fetal heart rate or rhythm before the onset of labor +C0695250|T046|AB|763.82|ICD9CM|Ab ftl hrt rt/rh dur lab|Ab ftl hrt rt/rh dur lab +C0695250|T046|PT|763.82|ICD9CM|Abnormality in fetal heart rate or rhythm during labor|Abnormality in fetal heart rate or rhythm during labor +C0695251|T046|AB|763.83|ICD9CM|Ab ftl hrt rt/rhy NOS|Ab ftl hrt rt/rhy NOS +C0695251|T046|PT|763.83|ICD9CM|Abnormality in fetal heart rate or rhythm, unspecified as to time of onset|Abnormality in fetal heart rate or rhythm, unspecified as to time of onset +C1561790|T046|AB|763.84|ICD9CM|Meconium dur del aff NB|Meconium dur del aff NB +C1561790|T046|PT|763.84|ICD9CM|Meconium passage during delivery|Meconium passage during delivery +C0270067|T033|AB|763.89|ICD9CM|Compl del NEC aff NB|Compl del NEC aff NB +C0270067|T033|PT|763.89|ICD9CM|Other specified complications of labor and delivery affecting fetus or newborn|Other specified complications of labor and delivery affecting fetus or newborn +C0495350|T033|AB|763.9|ICD9CM|Compl deliv NOS aff NB|Compl deliv NOS aff NB +C0495350|T033|PT|763.9|ICD9CM|Unspecified complication of labor and delivery affecting fetus or newborn|Unspecified complication of labor and delivery affecting fetus or newborn +C0158849|T033|HT|764|ICD9CM|Slow fetal growth and fetal malnutrition|Slow fetal growth and fetal malnutrition +C0178309|T046|HT|764-779.99|ICD9CM|OTHER CONDITIONS ORIGINATING IN THE PERINATAL PERIOD|OTHER CONDITIONS ORIGINATING IN THE PERINATAL PERIOD +C1313876|T033|HT|764.0|ICD9CM|"Light-for-dates" without mention of fetal malnutrition|"Light-for-dates" without mention of fetal malnutrition +C0158851|T047|PT|764.00|ICD9CM|"Light-for-dates" without mention of fetal malnutrition, unspecified [weight]|"Light-for-dates" without mention of fetal malnutrition, unspecified [weight] +C0158851|T047|AB|764.00|ICD9CM|Light-for-dates wtNOS|Light-for-dates wtNOS +C0158852|T047|PT|764.01|ICD9CM|"Light-for-dates" without mention of fetal malnutrition, less than 500 grams|"Light-for-dates" without mention of fetal malnutrition, less than 500 grams +C0158852|T047|AB|764.01|ICD9CM|Light-for-dates <500g|Light-for-dates <500g +C0158853|T047|PT|764.02|ICD9CM|"Light-for-dates" without mention of fetal malnutrition, 500-749 grams|"Light-for-dates" without mention of fetal malnutrition, 500-749 grams +C0158853|T047|AB|764.02|ICD9CM|Lt-for-dates 500-749g|Lt-for-dates 500-749g +C0158854|T047|PT|764.03|ICD9CM|"Light-for-dates" without mention of fetal malnutrition, 750-999 grams|"Light-for-dates" without mention of fetal malnutrition, 750-999 grams +C0158854|T047|AB|764.03|ICD9CM|Lt-for-dates 750-999g|Lt-for-dates 750-999g +C0158855|T047|PT|764.04|ICD9CM|"Light-for-dates" without mention of fetal malnutrition, 1,000- 1,249 grams|"Light-for-dates" without mention of fetal malnutrition, 1,000- 1,249 grams +C0158855|T047|AB|764.04|ICD9CM|Lt-for-dates 1000-1249g|Lt-for-dates 1000-1249g +C0158856|T047|PT|764.05|ICD9CM|"Light-for-dates"without mention of fetal malnutrition, 1,250- 1,499 grams|"Light-for-dates"without mention of fetal malnutrition, 1,250- 1,499 grams +C0158856|T047|AB|764.05|ICD9CM|Lt-for-dates 1250-1499g|Lt-for-dates 1250-1499g +C0158857|T047|PT|764.06|ICD9CM|"Light-for-dates" without mention of fetal malnutrition, 1,500- 1,749 grams|"Light-for-dates" without mention of fetal malnutrition, 1,500- 1,749 grams +C0158857|T047|AB|764.06|ICD9CM|Lt-for-dates 1500-1749g|Lt-for-dates 1500-1749g +C0158858|T047|PT|764.07|ICD9CM|"Light-for-dates" without mention of fetal malnutrition, 1,750- 1,999 grams|"Light-for-dates" without mention of fetal malnutrition, 1,750- 1,999 grams +C0158858|T047|AB|764.07|ICD9CM|Lt-for-dates 1750-1999g|Lt-for-dates 1750-1999g +C0158859|T047|PT|764.08|ICD9CM|"Light-for-dates" without mention of fetal malnutrition, 2,000- 2,499 grams|"Light-for-dates" without mention of fetal malnutrition, 2,000- 2,499 grams +C0158859|T047|AB|764.08|ICD9CM|Lt-for-dates 2000-2499g|Lt-for-dates 2000-2499g +C0158860|T047|PT|764.09|ICD9CM|"Light-for-dates" without mention of fetal malnutrition, 2,500 grams and over|"Light-for-dates" without mention of fetal malnutrition, 2,500 grams and over +C0158860|T047|AB|764.09|ICD9CM|Lt-for-dates 2500+g|Lt-for-dates 2500+g +C0158861|T047|HT|764.1|ICD9CM|"Light-for-dates" with signs of fetal malnutrition|"Light-for-dates" with signs of fetal malnutrition +C0158862|T047|PT|764.10|ICD9CM|"Light-for-dates" with signs of fetal malnutrition, unspecified [weight]|"Light-for-dates" with signs of fetal malnutrition, unspecified [weight] +C0158862|T047|AB|764.10|ICD9CM|Lt-for-date w/mal wtNOS|Lt-for-date w/mal wtNOS +C0158863|T047|PT|764.11|ICD9CM|"Light-for-dates" with signs of fetal malnutrition, less than 500 grams|"Light-for-dates" with signs of fetal malnutrition, less than 500 grams +C0158863|T047|AB|764.11|ICD9CM|Lt-for-date w/mal <500g|Lt-for-date w/mal <500g +C0158864|T047|PT|764.12|ICD9CM|"Light-for-dates"with signs of fetal malnutrition, 500-749 grams|"Light-for-dates"with signs of fetal malnutrition, 500-749 grams +C0158864|T047|AB|764.12|ICD9CM|Lt-date w/mal 500-749g|Lt-date w/mal 500-749g +C0158865|T047|PT|764.13|ICD9CM|"Light-for-dates" with signs of fetal malnutrition, 750-999 grams|"Light-for-dates" with signs of fetal malnutrition, 750-999 grams +C0158865|T047|AB|764.13|ICD9CM|Lt-date w/mal 750-999g|Lt-date w/mal 750-999g +C0158866|T047|PT|764.14|ICD9CM|"Light-for-dates" with signs of fetal malnutrition, 1,000-1,249 grams|"Light-for-dates" with signs of fetal malnutrition, 1,000-1,249 grams +C0158866|T047|AB|764.14|ICD9CM|Lt-date w/mal 1000-1249g|Lt-date w/mal 1000-1249g +C0158867|T047|PT|764.15|ICD9CM|"Light-for-dates" with signs of fetal malnutrition, 1,250-1,499 grams|"Light-for-dates" with signs of fetal malnutrition, 1,250-1,499 grams +C0158867|T047|AB|764.15|ICD9CM|Lt-date w/mal 1250-1499g|Lt-date w/mal 1250-1499g +C0158868|T047|PT|764.16|ICD9CM|"Light-for-dates" with signs of fetal malnutrition, 1,500-1,749 grams|"Light-for-dates" with signs of fetal malnutrition, 1,500-1,749 grams +C0158868|T047|AB|764.16|ICD9CM|Lt-date w/mal 1500-1749g|Lt-date w/mal 1500-1749g +C0158869|T047|PT|764.17|ICD9CM|"Light-for-dates" with signs of fetal malnutrition, 1,750-1,999 grams|"Light-for-dates" with signs of fetal malnutrition, 1,750-1,999 grams +C0158869|T047|AB|764.17|ICD9CM|Lt-date w/mal 1750-1999g|Lt-date w/mal 1750-1999g +C0158870|T047|PT|764.18|ICD9CM|"Light-for-dates"with signs of fetal malnutrition, 2,000-2,499 grams|"Light-for-dates"with signs of fetal malnutrition, 2,000-2,499 grams +C0158870|T047|AB|764.18|ICD9CM|Lt-date w/mal 2000-2499g|Lt-date w/mal 2000-2499g +C0158871|T047|PT|764.19|ICD9CM|"Light-for-dates"with signs of fetal malnutrition, 2,500 grams and over|"Light-for-dates"with signs of fetal malnutrition, 2,500 grams and over +C0158871|T047|AB|764.19|ICD9CM|Lt-for-date w/mal 2500+g|Lt-for-date w/mal 2500+g +C1510504|T047|HT|764.2|ICD9CM|Fetal malnutrition without mention of "light-for-dates"|Fetal malnutrition without mention of "light-for-dates" +C0158872|T047|PT|764.20|ICD9CM|Fetal malnutrition without mention of "light-for-dates", unspecified [weight]|Fetal malnutrition without mention of "light-for-dates", unspecified [weight] +C0158872|T047|AB|764.20|ICD9CM|Fetal malnutrition wtNOS|Fetal malnutrition wtNOS +C0158873|T047|AB|764.21|ICD9CM|Fetal malnutrition <500g|Fetal malnutrition <500g +C0158873|T047|PT|764.21|ICD9CM|Fetal malnutrition without mention of "light-for-dates", less than 500 grams|Fetal malnutrition without mention of "light-for-dates", less than 500 grams +C0158874|T047|AB|764.22|ICD9CM|Fetal malnutr 500-749g|Fetal malnutr 500-749g +C0158874|T047|PT|764.22|ICD9CM|Fetal malnutrition without mention of "light-for-dates", 500-749 grams|Fetal malnutrition without mention of "light-for-dates", 500-749 grams +C0158875|T047|AB|764.23|ICD9CM|Fetal mal 750-999g|Fetal mal 750-999g +C0158875|T047|PT|764.23|ICD9CM|Fetal malnutrition without mention of "light-for-dates", 750-999 grams|Fetal malnutrition without mention of "light-for-dates", 750-999 grams +C0158876|T047|AB|764.24|ICD9CM|Fetal mal 1000-1249g|Fetal mal 1000-1249g +C0158876|T047|PT|764.24|ICD9CM|Fetal malnutrition without mention of "light-for-dates", 1,000-1,249 grams|Fetal malnutrition without mention of "light-for-dates", 1,000-1,249 grams +C0158877|T047|AB|764.25|ICD9CM|Fetal mal 1250-1499g|Fetal mal 1250-1499g +C0158877|T047|PT|764.25|ICD9CM|Fetal malnutrition without mention of "light-for-dates", 1,250-1,499 grams|Fetal malnutrition without mention of "light-for-dates", 1,250-1,499 grams +C0158878|T047|AB|764.26|ICD9CM|Fetal mal 1500-1749g|Fetal mal 1500-1749g +C0158878|T047|PT|764.26|ICD9CM|Fetal malnutrition without mention of "light-for-dates", 1,500-1,749 grams|Fetal malnutrition without mention of "light-for-dates", 1,500-1,749 grams +C0158879|T047|AB|764.27|ICD9CM|Fetal malnutr 1750-1999g|Fetal malnutr 1750-1999g +C0158879|T047|PT|764.27|ICD9CM|Fetal malnutrition without mention of "light-for-dates", 1,750-1,999 grams|Fetal malnutrition without mention of "light-for-dates", 1,750-1,999 grams +C0158880|T047|AB|764.28|ICD9CM|Fetal malnutr 2000-2499g|Fetal malnutr 2000-2499g +C0158880|T047|PT|764.28|ICD9CM|Fetal malnutrition without mention of "light-for-dates", 2,000-2,499 grams|Fetal malnutrition without mention of "light-for-dates", 2,000-2,499 grams +C0158881|T047|AB|764.29|ICD9CM|Fetal malnutr 2500+g|Fetal malnutr 2500+g +C0158881|T047|PT|764.29|ICD9CM|Fetal malnutrition without mention of "light-for-dates", 2,500 grams and over|Fetal malnutrition without mention of "light-for-dates", 2,500 grams and over +C0015934|T047|HT|764.9|ICD9CM|Fetal growth retardation, unspecified|Fetal growth retardation, unspecified +C0015934|T047|AB|764.90|ICD9CM|Fet growth retard wtNOS|Fet growth retard wtNOS +C0015934|T047|PT|764.90|ICD9CM|Fetal growth retardation, unspecified, unspecified [weight]|Fetal growth retardation, unspecified, unspecified [weight] +C0158883|T047|AB|764.91|ICD9CM|Fet growth retard <500g|Fet growth retard <500g +C0158883|T047|PT|764.91|ICD9CM|Fetal growth retardation, unspecified, less than 500 grams|Fetal growth retardation, unspecified, less than 500 grams +C0158884|T047|AB|764.92|ICD9CM|Fet growth ret 500-749g|Fet growth ret 500-749g +C0158884|T047|PT|764.92|ICD9CM|Fetal growth retardation, unspecified, 500-749 grams|Fetal growth retardation, unspecified, 500-749 grams +C0158885|T047|AB|764.93|ICD9CM|Fet growth ret 750-999g|Fet growth ret 750-999g +C0158885|T047|PT|764.93|ICD9CM|Fetal growth retardation, unspecified, 750-999 grams|Fetal growth retardation, unspecified, 750-999 grams +C0158886|T047|AB|764.94|ICD9CM|Fet grwth ret 1000-1249g|Fet grwth ret 1000-1249g +C0158886|T047|PT|764.94|ICD9CM|Fetal growth retardation, unspecified, 1,000-1,249 grams|Fetal growth retardation, unspecified, 1,000-1,249 grams +C0158887|T047|AB|764.95|ICD9CM|Fet grwth ret 1250-1499g|Fet grwth ret 1250-1499g +C0158887|T047|PT|764.95|ICD9CM|Fetal growth retardation, unspecified, 1,250-1,499 grams|Fetal growth retardation, unspecified, 1,250-1,499 grams +C0158888|T047|AB|764.96|ICD9CM|Fet grwth ret 1500-1749g|Fet grwth ret 1500-1749g +C0158888|T047|PT|764.96|ICD9CM|Fetal growth retardation, unspecified, 1,500-1,749 grams|Fetal growth retardation, unspecified, 1,500-1,749 grams +C0158889|T047|AB|764.97|ICD9CM|Fet grwth ret 1750-1999g|Fet grwth ret 1750-1999g +C0158889|T047|PT|764.97|ICD9CM|Fetal growth retardation, unspecified, 1,750-1,999 grams|Fetal growth retardation, unspecified, 1,750-1,999 grams +C0158890|T047|AB|764.98|ICD9CM|Fet grwth ret 2000-2499g|Fet grwth ret 2000-2499g +C0158890|T047|PT|764.98|ICD9CM|Fetal growth retardation, unspecified, 2,000-2,499 grams|Fetal growth retardation, unspecified, 2,000-2,499 grams +C0158891|T047|AB|764.99|ICD9CM|Fet growth ret 2500+g|Fet growth ret 2500+g +C0158891|T047|PT|764.99|ICD9CM|Fetal growth retardation, unspecified, 2,500 grams and over|Fetal growth retardation, unspecified, 2,500 grams and over +C0158892|T047|HT|765|ICD9CM|Disorders relating to short gestation and unspecified low birthweight|Disorders relating to short gestation and unspecified low birthweight +C0270078|T047|HT|765.0|ICD9CM|Extreme immaturity|Extreme immaturity +C0158894|T047|AB|765.00|ICD9CM|Extreme immatur wtNOS|Extreme immatur wtNOS +C0158894|T047|PT|765.00|ICD9CM|Extreme immaturity, unspecified [weight]|Extreme immaturity, unspecified [weight] +C0158895|T047|AB|765.01|ICD9CM|Extreme immatur <500g|Extreme immatur <500g +C0158895|T047|PT|765.01|ICD9CM|Extreme immaturity, less than 500 grams|Extreme immaturity, less than 500 grams +C0158896|T047|AB|765.02|ICD9CM|Extreme immatur 500-749g|Extreme immatur 500-749g +C0158896|T047|PT|765.02|ICD9CM|Extreme immaturity, 500-749 grams|Extreme immaturity, 500-749 grams +C0158897|T047|AB|765.03|ICD9CM|Extreme immatur 750-999g|Extreme immatur 750-999g +C0158897|T047|PT|765.03|ICD9CM|Extreme immaturity, 750-999 grams|Extreme immaturity, 750-999 grams +C0158898|T047|AB|765.04|ICD9CM|Extreme immat 1000-1249g|Extreme immat 1000-1249g +C0158898|T047|PT|765.04|ICD9CM|Extreme immaturity, 1,000-1,249 grams|Extreme immaturity, 1,000-1,249 grams +C0158899|T047|AB|765.05|ICD9CM|Extreme immat 1250-1499g|Extreme immat 1250-1499g +C0158899|T047|PT|765.05|ICD9CM|Extreme immaturity, 1,250-1,499 grams|Extreme immaturity, 1,250-1,499 grams +C0158900|T047|AB|765.06|ICD9CM|Extreme immat 1500-1749g|Extreme immat 1500-1749g +C0158900|T047|PT|765.06|ICD9CM|Extreme immaturity, 1,500-1,749 grams|Extreme immaturity, 1,500-1,749 grams +C0158901|T047|AB|765.07|ICD9CM|Extreme immat 1750-1999g|Extreme immat 1750-1999g +C0158901|T047|PT|765.07|ICD9CM|Extreme immaturity, 1,750-1,999 grams|Extreme immaturity, 1,750-1,999 grams +C0158902|T047|AB|765.08|ICD9CM|Extreme immat 2000-2499g|Extreme immat 2000-2499g +C0158902|T047|PT|765.08|ICD9CM|Extreme immaturity, 2,000-2,499 grams|Extreme immaturity, 2,000-2,499 grams +C0158903|T047|AB|765.09|ICD9CM|Extreme immat 2500+g|Extreme immat 2500+g +C0158903|T047|PT|765.09|ICD9CM|Extreme immaturity, 2,500 grams and over|Extreme immaturity, 2,500 grams and over +C0029713|T047|HT|765.1|ICD9CM|Other preterm infants|Other preterm infants +C0029713|T047|PT|765.10|ICD9CM|Other preterm infants, unspecified [weight]|Other preterm infants, unspecified [weight] +C0029713|T047|AB|765.10|ICD9CM|Preterm infant NEC wtNOS|Preterm infant NEC wtNOS +C1135241|T033|HT|765.2|ICD9CM|Weeks of gestation|Weeks of gestation +C1135241|T033|PT|765.20|ICD9CM|Unspecified weeks of gestation|Unspecified weeks of gestation +C1135241|T033|AB|765.20|ICD9CM|Weeks of gestation NOS|Weeks of gestation NOS +C0730521|T033|AB|765.21|ICD9CM|<24 comp wks gestation|<24 comp wks gestation +C0730521|T033|PT|765.21|ICD9CM|Less than 24 completed weeks of gestation|Less than 24 completed weeks of gestation +C0730522|T033|AB|765.22|ICD9CM|24 comp weeks gestation|24 comp weeks gestation +C0730522|T033|PT|765.22|ICD9CM|24 completed weeks of gestation|24 completed weeks of gestation +C1135242|T033|AB|765.23|ICD9CM|25-26 comp wks gestation|25-26 comp wks gestation +C1135242|T033|PT|765.23|ICD9CM|25-26 completed weeks of gestation|25-26 completed weeks of gestation +C1135243|T033|AB|765.24|ICD9CM|27-28 comp wks gestation|27-28 comp wks gestation +C1135243|T033|PT|765.24|ICD9CM|27-28 completed weeks of gestation|27-28 completed weeks of gestation +C1135244|T033|AB|765.25|ICD9CM|29-30 comp wks gestation|29-30 comp wks gestation +C1135244|T033|PT|765.25|ICD9CM|29-30 completed weeks of gestation|29-30 completed weeks of gestation +C1135245|T037|AB|765.26|ICD9CM|31-32 comp wks gestation|31-32 comp wks gestation +C1135245|T037|PT|765.26|ICD9CM|31-32 completed weeks of gestation|31-32 completed weeks of gestation +C1135246|T033|AB|765.27|ICD9CM|33-34 comp wks gestation|33-34 comp wks gestation +C1135246|T033|PT|765.27|ICD9CM|33-34 completed weeks of gestation|33-34 completed weeks of gestation +C1135247|T033|AB|765.28|ICD9CM|35-36 comp wks gestation|35-36 comp wks gestation +C1135247|T033|PT|765.28|ICD9CM|35-36 completed weeks of gestation|35-36 completed weeks of gestation +C1135248|T047|PT|765.29|ICD9CM|37 or more completed weeks of gestation|37 or more completed weeks of gestation +C1135248|T047|AB|765.29|ICD9CM|37+ comp wks gestation|37+ comp wks gestation +C0158914|T047|HT|766|ICD9CM|Disorders relating to long gestation and high birthweight|Disorders relating to long gestation and high birthweight +C2242834|T033|AB|766.0|ICD9CM|Exceptionally large baby|Exceptionally large baby +C2242834|T033|PT|766.0|ICD9CM|Exceptionally large baby|Exceptionally large baby +C0477897|T047|AB|766.1|ICD9CM|Heavy-for-date infan NEC|Heavy-for-date infan NEC +C0477897|T047|PT|766.1|ICD9CM|Other "heavy-for-dates" infants|Other "heavy-for-dates" infants +C0158917|T047|HT|766.2|ICD9CM|Late infant, not "heavy-for-dates"|Late infant, not "heavy-for-dates" +C2909960|T046|AB|766.22|ICD9CM|Prolong gestation-infant|Prolong gestation-infant +C2909960|T046|PT|766.22|ICD9CM|Prolonged gestation of infant|Prolonged gestation of infant +C0005604|T037|HT|767|ICD9CM|Birth trauma|Birth trauma +C0836917|T046|AB|767.0|ICD9CM|Cerebral hem at birth|Cerebral hem at birth +C0836917|T046|PT|767.0|ICD9CM|Subdural and cerebral hemorrhage|Subdural and cerebral hemorrhage +C0270089|T037|HT|767.1|ICD9CM|Injuries to scalp due to birth trauma|Injuries to scalp due to birth trauma +C0270092|T046|AB|767.11|ICD9CM|Epicranial subapo hemorr|Epicranial subapo hemorr +C0270092|T046|PT|767.11|ICD9CM|Epicranial subaponeurotic hemorrhage (massive)|Epicranial subaponeurotic hemorrhage (massive) +C1260437|T037|AB|767.19|ICD9CM|Injuries to scalp NEC|Injuries to scalp NEC +C1260437|T037|PT|767.19|ICD9CM|Other injuries to scalp|Other injuries to scalp +C0270094|T037|AB|767.2|ICD9CM|Clavicle fx at birth|Clavicle fx at birth +C0270094|T037|PT|767.2|ICD9CM|Fracture of clavicle due to birth trauma|Fracture of clavicle due to birth trauma +C0700643|T037|AB|767.3|ICD9CM|Bone injury NEC at birth|Bone injury NEC at birth +C0700643|T037|PT|767.3|ICD9CM|Other injuries to skeleton due to birth trauma|Other injuries to skeleton due to birth trauma +C0411063|T037|PT|767.4|ICD9CM|Injury to spine and spinal cord due to birth trauma|Injury to spine and spinal cord due to birth trauma +C0411063|T037|AB|767.4|ICD9CM|Spinal cord inj at birth|Spinal cord inj at birth +C0270103|T037|AB|767.5|ICD9CM|Facial nerve inj-birth|Facial nerve inj-birth +C0270103|T037|PT|767.5|ICD9CM|Facial nerve injury due to birth trauma|Facial nerve injury due to birth trauma +C0270105|T037|AB|767.6|ICD9CM|Brach plexus inj-birth|Brach plexus inj-birth +C0270105|T037|PT|767.6|ICD9CM|Injury to brachial plexus due to birth trauma|Injury to brachial plexus due to birth trauma +C0158925|T037|AB|767.7|ICD9CM|Nerve inj NEC at birth|Nerve inj NEC at birth +C0158925|T037|PT|767.7|ICD9CM|Other cranial and peripheral nerve injuries due to birth trauma|Other cranial and peripheral nerve injuries due to birth trauma +C0477903|T037|AB|767.8|ICD9CM|Birth trauma NEC|Birth trauma NEC +C0477903|T037|PT|767.8|ICD9CM|Other specified birth trauma|Other specified birth trauma +C0005604|T037|AB|767.9|ICD9CM|Birth trauma NOS|Birth trauma NOS +C0005604|T037|PT|767.9|ICD9CM|Birth trauma, unspecified|Birth trauma, unspecified +C2003945|T047|HT|768|ICD9CM|Intrauterine hypoxia and birth asphyxia|Intrauterine hypoxia and birth asphyxia +C0270131|T046|PT|768.0|ICD9CM|Fetal death from asphyxia or anoxia before onset of labor or at unspecified time|Fetal death from asphyxia or anoxia before onset of labor or at unspecified time +C0270131|T046|AB|768.0|ICD9CM|Fetal death-anoxia NOS|Fetal death-anoxia NOS +C0158928|T046|AB|768.1|ICD9CM|Fet death-anoxia dur lab|Fet death-anoxia dur lab +C0158928|T046|PT|768.1|ICD9CM|Fetal death from asphyxia or anoxia during labor|Fetal death from asphyxia or anoxia during labor +C0158929|T046|AB|768.2|ICD9CM|Fet distress befor labor|Fet distress befor labor +C0158929|T046|PT|768.2|ICD9CM|Fetal distress before onset of labor, in liveborn infant|Fetal distress before onset of labor, in liveborn infant +C1719625|T046|PT|768.3|ICD9CM|Fetal distress first noted during labor and delivery, in liveborn infant|Fetal distress first noted during labor and delivery, in liveborn infant +C1719625|T046|AB|768.3|ICD9CM|Fetal distrs dur lab/del|Fetal distrs dur lab/del +C0270124|T047|AB|768.4|ICD9CM|Fetal distress NOS|Fetal distress NOS +C0270124|T047|PT|768.4|ICD9CM|Fetal distress, unspecified as to time of onset, in liveborn infant|Fetal distress, unspecified as to time of onset, in liveborn infant +C0158931|T046|AB|768.5|ICD9CM|Severe birth asphyxia|Severe birth asphyxia +C0158931|T046|PT|768.5|ICD9CM|Severe birth asphyxia|Severe birth asphyxia +C0456089|T046|PT|768.6|ICD9CM|Mild or moderate birth asphyxia|Mild or moderate birth asphyxia +C0456089|T046|AB|768.6|ICD9CM|Mild/mod birth asphyxia|Mild/mod birth asphyxia +C0752304|T047|HT|768.7|ICD9CM|Hypoxic-ischemic encephalopathy (HIE)|Hypoxic-ischemic encephalopathy (HIE) +C0752304|T047|AB|768.70|ICD9CM|Hypoxc-ischem enceph NOS|Hypoxc-ischem enceph NOS +C0752304|T047|PT|768.70|ICD9CM|Hypoxic-ischemic encephalopathy, unspecified|Hypoxic-ischemic encephalopathy, unspecified +C2712358|T047|AB|768.71|ICD9CM|Mild hypox-ischem enceph|Mild hypox-ischem enceph +C2712358|T047|PT|768.71|ICD9CM|Mild hypoxic-ischemic encephalopathy|Mild hypoxic-ischemic encephalopathy +C2712359|T047|AB|768.72|ICD9CM|Mod hypox-ischem enceph|Mod hypox-ischem enceph +C2712359|T047|PT|768.72|ICD9CM|Moderate hypoxic-ischemic encephalopathy|Moderate hypoxic-ischemic encephalopathy +C2712360|T047|AB|768.73|ICD9CM|Sev hypox-ischem enceph|Sev hypox-ischem enceph +C2712360|T047|PT|768.73|ICD9CM|Severe hypoxic-ischemic encephalopathy|Severe hypoxic-ischemic encephalopathy +C0004045|T047|AB|768.9|ICD9CM|Birth asphyxia NOS|Birth asphyxia NOS +C0004045|T047|PT|768.9|ICD9CM|Unspecified severity of birth asphyxia in liveborn infant|Unspecified severity of birth asphyxia in liveborn infant +C0035220|T047|AB|769|ICD9CM|Respiratory distress syn|Respiratory distress syn +C0035220|T047|PT|769|ICD9CM|Respiratory distress syndrome in newborn|Respiratory distress syndrome in newborn +C0158934|T047|HT|770|ICD9CM|Other respiratory conditions of fetus and newborn|Other respiratory conditions of fetus and newborn +C0158935|T047|AB|770.0|ICD9CM|Congenital pneumonia|Congenital pneumonia +C0158935|T047|PT|770.0|ICD9CM|Congenital pneumonia|Congenital pneumonia +C1561805|T046|HT|770.1|ICD9CM|Fetal and newborn aspiration|Fetal and newborn aspiration +C1561791|T046|AB|770.10|ICD9CM|Fetal & newborn asp NOS|Fetal & newborn asp NOS +C1561791|T046|PT|770.10|ICD9CM|Fetal and newborn aspiration, unspecified|Fetal and newborn aspiration, unspecified +C1561792|T046|AB|770.11|ICD9CM|Meconium asp wo resp sym|Meconium asp wo resp sym +C1561792|T046|PT|770.11|ICD9CM|Meconium aspiration without respiratory symptoms|Meconium aspiration without respiratory symptoms +C1561793|T046|AB|770.12|ICD9CM|Meconium asp w resp symp|Meconium asp w resp symp +C1561793|T046|PT|770.12|ICD9CM|Meconium aspiration with respiratory symptoms|Meconium aspiration with respiratory symptoms +C1561794|T046|AB|770.13|ICD9CM|Amniotc asp w/o resp sym|Amniotc asp w/o resp sym +C1561794|T046|PT|770.13|ICD9CM|Aspiration of clear amniotic fluid without respiratory symptoms|Aspiration of clear amniotic fluid without respiratory symptoms +C1561796|T046|AB|770.14|ICD9CM|Amniotic asp w resp sym|Amniotic asp w resp sym +C1561796|T046|PT|770.14|ICD9CM|Aspiration of clear amniotic fluid with respiratory symptoms|Aspiration of clear amniotic fluid with respiratory symptoms +C1561799|T046|PT|770.15|ICD9CM|Aspiration of blood without respiratory symptoms|Aspiration of blood without respiratory symptoms +C1561799|T046|AB|770.15|ICD9CM|Blood asp w/o resp sympt|Blood asp w/o resp sympt +C1561800|T046|PT|770.16|ICD9CM|Aspiration of blood with respiratory symptoms|Aspiration of blood with respiratory symptoms +C1561800|T046|AB|770.16|ICD9CM|Blood asp w resp sympt|Blood asp w resp sympt +C1561801|T046|AB|770.17|ICD9CM|NB asp w/o resp symp NEC|NB asp w/o resp symp NEC +C1561801|T046|PT|770.17|ICD9CM|Other fetal and newborn aspiration without respiratory symptoms|Other fetal and newborn aspiration without respiratory symptoms +C1561802|T046|AB|770.18|ICD9CM|NB asp w resp symp NEC|NB asp w resp symp NEC +C1561802|T046|PT|770.18|ICD9CM|Other fetal and newborn aspiration with respiratory symptoms|Other fetal and newborn aspiration with respiratory symptoms +C0158936|T047|PT|770.2|ICD9CM|Interstitial emphysema and related conditions|Interstitial emphysema and related conditions +C0158936|T047|AB|770.2|ICD9CM|NB interstit emphysema|NB interstit emphysema +C0475713|T046|AB|770.3|ICD9CM|NB pulmonary hemorrhage|NB pulmonary hemorrhage +C0475713|T046|PT|770.3|ICD9CM|Pulmonary hemorrhage|Pulmonary hemorrhage +C0270163|T046|AB|770.4|ICD9CM|Primary atelectasis|Primary atelectasis +C0270163|T046|PT|770.4|ICD9CM|Primary atelectasis|Primary atelectasis +C0158939|T047|AB|770.5|ICD9CM|NB atelectasis NEC/NOS|NB atelectasis NEC/NOS +C0158939|T047|PT|770.5|ICD9CM|Other and unspecified atelectasis|Other and unspecified atelectasis +C0158940|T047|AB|770.6|ICD9CM|NB transitory tachypnea|NB transitory tachypnea +C0158940|T047|PT|770.6|ICD9CM|Transitory tachypnea of newborn|Transitory tachypnea of newborn +C0456017|T047|PT|770.7|ICD9CM|Chronic respiratory disease arising in the perinatal period|Chronic respiratory disease arising in the perinatal period +C0456017|T047|AB|770.7|ICD9CM|Perinatal chr resp dis|Perinatal chr resp dis +C0158942|T047|HT|770.8|ICD9CM|Other newborn respiratory problems|Other newborn respiratory problems +C2316590|T047|AB|770.81|ICD9CM|Primary apnea of newborn|Primary apnea of newborn +C2316590|T047|PT|770.81|ICD9CM|Primary apnea of newborn|Primary apnea of newborn +C0477914|T046|AB|770.82|ICD9CM|Other apnea of newborn|Other apnea of newborn +C0477914|T046|PT|770.82|ICD9CM|Other apnea of newborn|Other apnea of newborn +C0270148|T047|AB|770.83|ICD9CM|Cyanotic attack, newborn|Cyanotic attack, newborn +C0270148|T047|PT|770.83|ICD9CM|Cyanotic attacks of newborn|Cyanotic attacks of newborn +C0521648|T047|AB|770.84|ICD9CM|Resp failure of newborn|Resp failure of newborn +C0521648|T047|PT|770.84|ICD9CM|Respiratory failure of newborn|Respiratory failure of newborn +C1561806|T046|PT|770.85|ICD9CM|Aspiration of postnatal stomach contents without respiratory symptoms|Aspiration of postnatal stomach contents without respiratory symptoms +C1561806|T046|AB|770.85|ICD9CM|Stomch cont asp w/o resp|Stomch cont asp w/o resp +C1561808|T046|PT|770.86|ICD9CM|Aspiration of postnatal stomach contents with respiratory symptoms|Aspiration of postnatal stomach contents with respiratory symptoms +C1561808|T046|AB|770.86|ICD9CM|Stomach cont asp w resp|Stomach cont asp w resp +C0235065|T046|AB|770.87|ICD9CM|NB respiratory arrest|NB respiratory arrest +C0235065|T046|PT|770.87|ICD9CM|Respiratory arrest of newborn|Respiratory arrest of newborn +C2316692|T047|PT|770.88|ICD9CM|Hypoxemia of newborn|Hypoxemia of newborn +C2316692|T047|AB|770.88|ICD9CM|NB hypoxia|NB hypoxia +C1135250|T047|PT|770.89|ICD9CM|Other respiratory problems after birth|Other respiratory problems after birth +C1135250|T047|AB|770.89|ICD9CM|Resp prob after brth NEC|Resp prob after brth NEC +C0270146|T047|AB|770.9|ICD9CM|NB respiratory cond NOS|NB respiratory cond NOS +C0270146|T047|PT|770.9|ICD9CM|Unspecified respiratory condition of fetus and newborn|Unspecified respiratory condition of fetus and newborn +C0158944|T047|HT|771|ICD9CM|Infections specific to the perinatal period|Infections specific to the perinatal period +C0035921|T047|AB|771.0|ICD9CM|Congenital rubella|Congenital rubella +C0035921|T047|PT|771.0|ICD9CM|Congenital rubella|Congenital rubella +C0158945|T047|AB|771.1|ICD9CM|Cong cytomegalovirus inf|Cong cytomegalovirus inf +C0158945|T047|PT|771.1|ICD9CM|Congenital cytomegalovirus infection|Congenital cytomegalovirus infection +C0158946|T047|AB|771.2|ICD9CM|Congenital infec NEC|Congenital infec NEC +C0158946|T047|PT|771.2|ICD9CM|Other congenital infections specific to the perinatal period|Other congenital infections specific to the perinatal period +C0343312|T047|AB|771.3|ICD9CM|Tetanus neonatorum|Tetanus neonatorum +C0343312|T047|PT|771.3|ICD9CM|Tetanus neonatorum|Tetanus neonatorum +C0158947|T047|AB|771.4|ICD9CM|Omphalitis of newborn|Omphalitis of newborn +C0158947|T047|PT|771.4|ICD9CM|Omphalitis of the newborn|Omphalitis of the newborn +C0158948|T047|AB|771.5|ICD9CM|Neonatal infec mastitis|Neonatal infec mastitis +C0158948|T047|PT|771.5|ICD9CM|Neonatal infective mastitis|Neonatal infective mastitis +C0027611|T047|AB|771.6|ICD9CM|Neonatal conjunctivitis|Neonatal conjunctivitis +C0027611|T047|PT|771.6|ICD9CM|Neonatal conjunctivitis and dacryocystitis|Neonatal conjunctivitis and dacryocystitis +C0276682|T047|AB|771.7|ICD9CM|Neonatal candida infect|Neonatal candida infect +C0276682|T047|PT|771.7|ICD9CM|Neonatal Candida infection|Neonatal Candida infection +C0158950|T046|HT|771.8|ICD9CM|Other infection specific to the perinatal period|Other infection specific to the perinatal period +C1135251|T047|AB|771.81|ICD9CM|NB septicemia [sepsis]|NB septicemia [sepsis] +C1135251|T047|PT|771.81|ICD9CM|Septicemia [sepsis] of newborn|Septicemia [sepsis] of newborn +C0235815|T047|AB|771.82|ICD9CM|NB urinary tract infectn|NB urinary tract infectn +C0235815|T047|PT|771.82|ICD9CM|Urinary tract infection of newborn|Urinary tract infection of newborn +C1135253|T047|AB|771.83|ICD9CM|Bacteremia of newborn|Bacteremia of newborn +C1135253|T047|PT|771.83|ICD9CM|Bacteremia of newborn|Bacteremia of newborn +C0158950|T046|PT|771.89|ICD9CM|Other infections specific to the perinatal period|Other infections specific to the perinatal period +C0158950|T046|AB|771.89|ICD9CM|Perinatal infection NEC|Perinatal infection NEC +C0473800|T046|HT|772|ICD9CM|Fetal and neonatal hemorrhage|Fetal and neonatal hemorrhage +C0158951|T046|PT|772.0|ICD9CM|Fetal blood loss|Fetal blood loss +C0158951|T046|AB|772.0|ICD9CM|NB fetal blood loss NEC|NB fetal blood loss NEC +C0270191|T046|HT|772.1|ICD9CM|Intraventricular hemorrhage of fetus or newborn|Intraventricular hemorrhage of fetus or newborn +C0949141|T047|PT|772.10|ICD9CM|Intraventricular hemorrhage unspecified grade|Intraventricular hemorrhage unspecified grade +C0949141|T047|AB|772.10|ICD9CM|NB intraven hem NOS|NB intraven hem NOS +C0949142|T047|PT|772.11|ICD9CM|Intraventricular hemorrhage, grade I|Intraventricular hemorrhage, grade I +C0949142|T047|AB|772.11|ICD9CM|NB intraven hem,grade i|NB intraven hem,grade i +C0949143|T047|PT|772.12|ICD9CM|Intraventricular hemorrhage, grade II|Intraventricular hemorrhage, grade II +C0949143|T047|AB|772.12|ICD9CM|NB intraven hem,grade ii|NB intraven hem,grade ii +C0949144|T047|PT|772.13|ICD9CM|Intraventricular hemorrhage, grade III|Intraventricular hemorrhage, grade III +C0949144|T047|AB|772.13|ICD9CM|NB intravn hem,grade iii|NB intravn hem,grade iii +C0949145|T047|PT|772.14|ICD9CM|Intraventricular hemorrhage, grade IV|Intraventricular hemorrhage, grade IV +C0949145|T047|AB|772.14|ICD9CM|NB intraven hem,grade iv|NB intraven hem,grade iv +C0854172|T046|AB|772.2|ICD9CM|NB subarachnoid hemorr|NB subarachnoid hemorr +C0854172|T046|PT|772.2|ICD9CM|Subarachnoid hemorrhage of fetus or newborn|Subarachnoid hemorrhage of fetus or newborn +C0473789|T046|AB|772.3|ICD9CM|Post-birth umbil hemorr|Post-birth umbil hemorr +C0473789|T046|PT|772.3|ICD9CM|Umbilical hemorrhage after birth|Umbilical hemorrhage after birth +C0158956|T047|PT|772.4|ICD9CM|Gastrointestinal hemorrhage of fetus or newborn|Gastrointestinal hemorrhage of fetus or newborn +C0158956|T047|AB|772.4|ICD9CM|NB GI hemorrhage|NB GI hemorrhage +C0158957|T046|PT|772.5|ICD9CM|Adrenal hemorrhage of fetus or newborn|Adrenal hemorrhage of fetus or newborn +C0158957|T046|AB|772.5|ICD9CM|NB adrenal hemorrhage|NB adrenal hemorrhage +C1390180|T046|PT|772.6|ICD9CM|Cutaneous hemorrhage of fetus or newborn|Cutaneous hemorrhage of fetus or newborn +C1390180|T046|AB|772.6|ICD9CM|NB cutaneous hemorrhage|NB cutaneous hemorrhage +C0158959|T046|AB|772.8|ICD9CM|Neonatal hemorrhage NEC|Neonatal hemorrhage NEC +C0158959|T046|PT|772.8|ICD9CM|Other specified hemorrhage of fetus or newborn|Other specified hemorrhage of fetus or newborn +C0270183|T046|AB|772.9|ICD9CM|Neonatal hemorrhage NOS|Neonatal hemorrhage NOS +C0270183|T046|PT|772.9|ICD9CM|Unspecified hemorrhage of newborn|Unspecified hemorrhage of newborn +C0014761|T047|HT|773|ICD9CM|Hemolytic disease of fetus or newborn, due to isoimmunization|Hemolytic disease of fetus or newborn, due to isoimmunization +C0158962|T047|PT|773.0|ICD9CM|Hemolytic disease of fetus or newborn due to Rh isoimmunization|Hemolytic disease of fetus or newborn due to Rh isoimmunization +C0158962|T047|AB|773.0|ICD9CM|NB hemolyt dis:rh isoimm|NB hemolyt dis:rh isoimm +C0270202|T047|PT|773.1|ICD9CM|Hemolytic disease of fetus or newborn due to ABO isoimmunization|Hemolytic disease of fetus or newborn due to ABO isoimmunization +C0270202|T047|AB|773.1|ICD9CM|NB hemolyt dis-abo isoim|NB hemolyt dis-abo isoim +C0014761|T047|PT|773.2|ICD9CM|Hemolytic disease of fetus or newborn due to other and unspecified isoimmunization|Hemolytic disease of fetus or newborn due to other and unspecified isoimmunization +C0014761|T047|AB|773.2|ICD9CM|NB hemolyt dis-isoim NEC|NB hemolyt dis-isoim NEC +C0455990|T047|PT|773.3|ICD9CM|Hydrops fetalis due to isoimmunization|Hydrops fetalis due to isoimmunization +C0455990|T047|AB|773.3|ICD9CM|Hydrops fetalis:isoimm|Hydrops fetalis:isoimm +C0270204|T047|PT|773.4|ICD9CM|Kernicterus of fetus or newborn due to isoimmunization|Kernicterus of fetus or newborn due to isoimmunization +C0270204|T047|AB|773.4|ICD9CM|NB kernicterus:isoimmun|NB kernicterus:isoimmun +C0158967|T047|PT|773.5|ICD9CM|Late anemia of fetus or newborn due to isoimmunization|Late anemia of fetus or newborn due to isoimmunization +C0158967|T047|AB|773.5|ICD9CM|NB late anemia:isoimmun|NB late anemia:isoimmun +C0158968|T046|HT|774|ICD9CM|Other perinatal jaundice|Other perinatal jaundice +C0158969|T047|AB|774.0|ICD9CM|Perinat jaund-hered anem|Perinat jaund-hered anem +C0158969|T047|PT|774.0|ICD9CM|Perinatal jaundice from hereditary hemolytic anemias|Perinatal jaundice from hereditary hemolytic anemias +C0701144|T047|AB|774.1|ICD9CM|Perinat jaund:hemolysis|Perinat jaund:hemolysis +C0701144|T047|PT|774.1|ICD9CM|Perinatal jaundice from other excessive hemolysis|Perinatal jaundice from other excessive hemolysis +C0158971|T046|AB|774.2|ICD9CM|Neonat jaund preterm del|Neonat jaund preterm del +C0158971|T046|PT|774.2|ICD9CM|Neonatal jaundice associated with preterm delivery|Neonatal jaundice associated with preterm delivery +C0158972|T047|HT|774.3|ICD9CM|Neonatal jaundice due to delayed conjugation from other causes|Neonatal jaundice due to delayed conjugation from other causes +C0375543|T046|AB|774.30|ICD9CM|Delay conjugat jaund NOS|Delay conjugat jaund NOS +C0375543|T046|PT|774.30|ICD9CM|Neonatal jaundice due to delayed conjugation, cause unspecified|Neonatal jaundice due to delayed conjugation, cause unspecified +C0158974|T047|AB|774.31|ICD9CM|Neonat jaund in oth dis|Neonat jaund in oth dis +C0158974|T047|PT|774.31|ICD9CM|Neonatal jaundice due to delayed conjugation in diseases classified elsewhere|Neonatal jaundice due to delayed conjugation in diseases classified elsewhere +C0158975|T046|AB|774.39|ICD9CM|Delay conjugat jaund NEC|Delay conjugat jaund NEC +C0158975|T046|PT|774.39|ICD9CM|Other neonatal jaundice due to delayed conjugation from other causes|Other neonatal jaundice due to delayed conjugation from other causes +C0158976|T047|AB|774.4|ICD9CM|Fetal/neonatal hepatitis|Fetal/neonatal hepatitis +C0158976|T047|PT|774.4|ICD9CM|Perinatal jaundice due to hepatocellular damage|Perinatal jaundice due to hepatocellular damage +C0158977|T047|PT|774.5|ICD9CM|Perinatal jaundice from other causes|Perinatal jaundice from other causes +C0158977|T047|AB|774.5|ICD9CM|Perinatal jaundice NEC|Perinatal jaundice NEC +C0270206|T047|AB|774.6|ICD9CM|Fetal/neonatal jaund NOS|Fetal/neonatal jaund NOS +C0270206|T047|PT|774.6|ICD9CM|Unspecified fetal and neonatal jaundice|Unspecified fetal and neonatal jaundice +C0158978|T047|PT|774.7|ICD9CM|Kernicterus of fetus or newborn not due to isoimmunization|Kernicterus of fetus or newborn not due to isoimmunization +C0158978|T047|AB|774.7|ICD9CM|NB kernicterus|NB kernicterus +C0158979|T047|HT|775|ICD9CM|Endocrine and metabolic disturbances specific to the fetus and newborn|Endocrine and metabolic disturbances specific to the fetus and newborn +C0270221|T047|AB|775.0|ICD9CM|Infant diabet mother syn|Infant diabet mother syn +C0270221|T047|PT|775.0|ICD9CM|Syndrome of "infant of a diabetic mother"|Syndrome of "infant of a diabetic mother" +C0158981|T047|AB|775.1|ICD9CM|Neonat diabetes mellitus|Neonat diabetes mellitus +C0158981|T047|PT|775.1|ICD9CM|Neonatal diabetes mellitus|Neonatal diabetes mellitus +C0158982|T047|AB|775.2|ICD9CM|Neonat myasthenia gravis|Neonat myasthenia gravis +C0158982|T047|PT|775.2|ICD9CM|Neonatal myasthenia gravis|Neonatal myasthenia gravis +C0158983|T047|AB|775.3|ICD9CM|Neonatal thyrotoxicosis|Neonatal thyrotoxicosis +C0158983|T047|PT|775.3|ICD9CM|Neonatal thyrotoxicosis|Neonatal thyrotoxicosis +C0158984|T047|AB|775.4|ICD9CM|Hypocalcem/hypomagnes NB|Hypocalcem/hypomagnes NB +C0158984|T047|PT|775.4|ICD9CM|Hypocalcemia and hypomagnesemia of newborn|Hypocalcemia and hypomagnesemia of newborn +C0495447|T047|AB|775.5|ICD9CM|Neonatal dehydration|Neonatal dehydration +C0495447|T047|PT|775.5|ICD9CM|Other transitory neonatal electrolyte disturbances|Other transitory neonatal electrolyte disturbances +C0158986|T047|AB|775.6|ICD9CM|Neonatal hypoglycemia|Neonatal hypoglycemia +C0158986|T047|PT|775.6|ICD9CM|Neonatal hypoglycemia|Neonatal hypoglycemia +C0158987|T033|AB|775.7|ICD9CM|Late metab acidosis NB|Late metab acidosis NB +C0158987|T033|PT|775.7|ICD9CM|Late metabolic acidosis of newborn|Late metabolic acidosis of newborn +C1719633|T047|HT|775.8|ICD9CM|Other neonatal endocrine and metabolic disturbances|Other neonatal endocrine and metabolic disturbances +C1719629|T047|AB|775.81|ICD9CM|NB acidosis NEC|NB acidosis NEC +C1719629|T047|PT|775.81|ICD9CM|Other acidosis of newborn|Other acidosis of newborn +C1719633|T047|AB|775.89|ICD9CM|Neonat endo/met dis NEC|Neonat endo/met dis NEC +C1719633|T047|PT|775.89|ICD9CM|Other neonatal endocrine and metabolic disturbances|Other neonatal endocrine and metabolic disturbances +C0158989|T047|AB|775.9|ICD9CM|Transient met dis NB NOS|Transient met dis NB NOS +C0158989|T047|PT|775.9|ICD9CM|Unspecified endocrine and metabolic disturbances specific to the fetus and newborn|Unspecified endocrine and metabolic disturbances specific to the fetus and newborn +C1285368|T047|HT|776|ICD9CM|Hematological disorders of newborn|Hematological disorders of newborn +C0019088|T047|PT|776.0|ICD9CM|Hemorrhagic disease of newborn|Hemorrhagic disease of newborn +C0019088|T047|AB|776.0|ICD9CM|NB hemorrhagic disease|NB hemorrhagic disease +C0158991|T047|AB|776.1|ICD9CM|Neonatal thrombocytopen|Neonatal thrombocytopen +C0158991|T047|PT|776.1|ICD9CM|Transient neonatal thrombocytopenia|Transient neonatal thrombocytopenia +C0158992|T047|AB|776.2|ICD9CM|Dissem intravasc coag NB|Dissem intravasc coag NB +C0158992|T047|PT|776.2|ICD9CM|Disseminated intravascular coagulation in newborn|Disseminated intravascular coagulation in newborn +C0158993|T047|AB|776.3|ICD9CM|Oth neonatal coag dis|Oth neonatal coag dis +C0158993|T047|PT|776.3|ICD9CM|Other transient neonatal disorders of coagulation|Other transient neonatal disorders of coagulation +C0272153|T047|AB|776.4|ICD9CM|Polycythemia neonatorum|Polycythemia neonatorum +C0272153|T047|PT|776.4|ICD9CM|Polycythemia neonatorum|Polycythemia neonatorum +C0158995|T047|AB|776.5|ICD9CM|Congenital anemia|Congenital anemia +C0158995|T047|PT|776.5|ICD9CM|Congenital anemia|Congenital anemia +C0158996|T047|AB|776.6|ICD9CM|Anemia of prematurity|Anemia of prematurity +C0158996|T047|PT|776.6|ICD9CM|Anemia of prematurity|Anemia of prematurity +C0158997|T047|AB|776.7|ICD9CM|Neonatal neutropenia|Neonatal neutropenia +C0158997|T047|PT|776.7|ICD9CM|Transient neonatal neutropenia|Transient neonatal neutropenia +C0158998|T047|PT|776.8|ICD9CM|Other specified transient hematological disorders of fetus or newborn|Other specified transient hematological disorders of fetus or newborn +C0158998|T047|AB|776.8|ICD9CM|Transient hemat dis NEC|Transient hemat dis NEC +C0158999|T047|AB|776.9|ICD9CM|NB hematological dis NOS|NB hematological dis NOS +C0158999|T047|PT|776.9|ICD9CM|Unspecified hematological disorder specific to newborn|Unspecified hematological disorder specific to newborn +C0159000|T047|HT|777|ICD9CM|Perinatal disorders of digestive system|Perinatal disorders of digestive system +C0270246|T047|AB|777.1|ICD9CM|Meconium obstruction|Meconium obstruction +C0270246|T047|PT|777.1|ICD9CM|Meconium obstruction in fetus or newborn|Meconium obstruction in fetus or newborn +C0400853|T047|AB|777.2|ICD9CM|Intest obst-inspiss milk|Intest obst-inspiss milk +C0400853|T047|PT|777.2|ICD9CM|Intestinal obstruction in newborn due to inspissated milk|Intestinal obstruction in newborn due to inspissated milk +C0270249|T046|PT|777.3|ICD9CM|Hematemesis and melena of newborn due to swallowed maternal blood|Hematemesis and melena of newborn due to swallowed maternal blood +C0270249|T046|AB|777.3|ICD9CM|Swallowed blood syndrome|Swallowed blood syndrome +C0159004|T020|AB|777.4|ICD9CM|Transitory ileus of NB|Transitory ileus of NB +C0159004|T020|PT|777.4|ICD9CM|Transitory ileus of newborn|Transitory ileus of newborn +C2349669|T047|HT|777.5|ICD9CM|Necrotizing enterocolitis in newborn|Necrotizing enterocolitis in newborn +C2349662|T047|AB|777.50|ICD9CM|Nec enterocoltis NB NOS|Nec enterocoltis NB NOS +C2349662|T047|PT|777.50|ICD9CM|Necrotizing enterocolitis in newborn, unspecified|Necrotizing enterocolitis in newborn, unspecified +C2910076|T047|PT|777.51|ICD9CM|Stage I necrotizing enterocolitis in newborn|Stage I necrotizing enterocolitis in newborn +C2910076|T047|AB|777.51|ICD9CM|Stg I nec enterocol NB|Stg I nec enterocol NB +C2910077|T047|PT|777.52|ICD9CM|Stage II necrotizing enterocolitis in newborn|Stage II necrotizing enterocolitis in newborn +C2910077|T047|AB|777.52|ICD9CM|Stg II nec enterocol NB|Stg II nec enterocol NB +C2910078|T047|PT|777.53|ICD9CM|Stage III necrotizing enterocolitis in newborn|Stage III necrotizing enterocolitis in newborn +C2910078|T047|AB|777.53|ICD9CM|Stg III nec enterocol NB|Stg III nec enterocol NB +C0159006|T047|AB|777.6|ICD9CM|Perinatal intest perfor|Perinatal intest perfor +C0159006|T047|PT|777.6|ICD9CM|Perinatal intestinal perforation|Perinatal intestinal perforation +C0159007|T047|PT|777.8|ICD9CM|Other specified perinatal disorders of digestive system|Other specified perinatal disorders of digestive system +C0159007|T047|AB|777.8|ICD9CM|Perinat GI sys dis NEC|Perinat GI sys dis NEC +C0159000|T047|AB|777.9|ICD9CM|Perinat GI sys dis NOS|Perinat GI sys dis NOS +C0159000|T047|PT|777.9|ICD9CM|Unspecified perinatal disorder of digestive system|Unspecified perinatal disorder of digestive system +C0159009|T046|HT|778|ICD9CM|Conditions involving the integument and temperature regulation of fetus and newborn|Conditions involving the integument and temperature regulation of fetus and newborn +C0455988|T047|AB|778.0|ICD9CM|Hydrops fetalis no isoim|Hydrops fetalis no isoim +C0455988|T047|PT|778.0|ICD9CM|Hydrops fetalis not due to isoimmunization|Hydrops fetalis not due to isoimmunization +C0036415|T019|AB|778.1|ICD9CM|Sclerema neonatorum|Sclerema neonatorum +C0036415|T019|PT|778.1|ICD9CM|Sclerema neonatorum|Sclerema neonatorum +C0159011|T047|PT|778.2|ICD9CM|Cold injury syndrome of newborn|Cold injury syndrome of newborn +C0159011|T047|AB|778.2|ICD9CM|NB cold injury syndrome|NB cold injury syndrome +C0159012|T046|AB|778.3|ICD9CM|NB hypothermia NEC|NB hypothermia NEC +C0159012|T046|PT|778.3|ICD9CM|Other hypothermia of newborn|Other hypothermia of newborn +C0159013|T047|AB|778.4|ICD9CM|NB temp regulat dis NEC|NB temp regulat dis NEC +C0159013|T047|PT|778.4|ICD9CM|Other disturbances of temperature regulation of newborn|Other disturbances of temperature regulation of newborn +C0159014|T046|AB|778.5|ICD9CM|Edema of newborn NEC/NOS|Edema of newborn NEC/NOS +C0159014|T046|PT|778.5|ICD9CM|Other and unspecified edema of newborn|Other and unspecified edema of newborn +C0159015|T019|AB|778.6|ICD9CM|Congenital hydrocele|Congenital hydrocele +C0159015|T019|PT|778.6|ICD9CM|Congenital hydrocele|Congenital hydrocele +C1449721|T047|PT|778.7|ICD9CM|Breast engorgement in newborn|Breast engorgement in newborn +C1449721|T047|AB|778.7|ICD9CM|NB breast engorgement|NB breast engorgement +C0477961|T047|AB|778.8|ICD9CM|NB integument cond NEC|NB integument cond NEC +C0477961|T047|PT|778.8|ICD9CM|Other specified conditions involving the integument of fetus and newborn|Other specified conditions involving the integument of fetus and newborn +C0159018|T047|AB|778.9|ICD9CM|NB integument cond NOS|NB integument cond NOS +C0159018|T047|PT|778.9|ICD9CM|Unspecified condition involving the integument and temperature regulation of fetus and newborn|Unspecified condition involving the integument and temperature regulation of fetus and newborn +C0159019|T047|HT|779|ICD9CM|Other and ill-defined conditions originating in the perinatal period|Other and ill-defined conditions originating in the perinatal period +C0159020|T047|AB|779.0|ICD9CM|Convulsions in newborn|Convulsions in newborn +C0159020|T047|PT|779.0|ICD9CM|Convulsions in newborn|Convulsions in newborn +C0159021|T047|AB|779.1|ICD9CM|NB cereb irrit NEC/NOS|NB cereb irrit NEC/NOS +C0159021|T047|PT|779.1|ICD9CM|Other and unspecified cerebral irritability in newborn|Other and unspecified cerebral irritability in newborn +C0159022|T047|PT|779.2|ICD9CM|Cerebral depression, coma, and other abnormal cerebral signs in fetus or newborn|Cerebral depression, coma, and other abnormal cerebral signs in fetus or newborn +C0159022|T047|AB|779.2|ICD9CM|Cns dysfunction syn NB|Cns dysfunction syn NB +C2712941|T047|HT|779.3|ICD9CM|Disorder of stomach function and feeding problems in newborn|Disorder of stomach function and feeding problems in newborn +C0159023|T033|PT|779.31|ICD9CM|Feeding problems in newborn|Feeding problems in newborn +C0159023|T033|AB|779.31|ICD9CM|NB feeding problems|NB feeding problems +C2712362|T184|PT|779.32|ICD9CM|Bilious vomiting in newborn|Bilious vomiting in newborn +C2712362|T184|AB|779.32|ICD9CM|NB bilious vomiting|NB bilious vomiting +C2712363|T047|AB|779.33|ICD9CM|NB other vomiting|NB other vomiting +C2712363|T047|PT|779.33|ICD9CM|Other vomiting in newborn|Other vomiting in newborn +C2712364|T047|PT|779.34|ICD9CM|Failure to thrive in newborn|Failure to thrive in newborn +C2712364|T047|AB|779.34|ICD9CM|NB failure to thrive|NB failure to thrive +C0270275|T037|PT|779.4|ICD9CM|Drug reactions and intoxications specific to newborn|Drug reactions and intoxications specific to newborn +C0270275|T037|AB|779.4|ICD9CM|NB drug reaction/intoxic|NB drug reaction/intoxic +C0027609|T047|PT|779.5|ICD9CM|Drug withdrawal syndrome in newborn|Drug withdrawal syndrome in newborn +C0027609|T047|AB|779.5|ICD9CM|NB drug withdrawal syndr|NB drug withdrawal syndr +C1704300|T033|AB|779.6|ICD9CM|Termination of pregnancy|Termination of pregnancy +C1704300|T033|PT|779.6|ICD9CM|Termination of pregnancy (fetus)|Termination of pregnancy (fetus) +C0023529|T047|AB|779.7|ICD9CM|Perivent leukomalacia|Perivent leukomalacia +C0023529|T047|PT|779.7|ICD9CM|Periventricular leukomalacia|Periventricular leukomalacia +C0159027|T047|HT|779.8|ICD9CM|Other specified conditions originating in the perinatal period|Other specified conditions originating in the perinatal period +C1112488|T046|AB|779.81|ICD9CM|Neonatal bradycardia|Neonatal bradycardia +C1112488|T046|PT|779.81|ICD9CM|Neonatal bradycardia|Neonatal bradycardia +C0877308|T046|AB|779.82|ICD9CM|Neonatal tachycardia|Neonatal tachycardia +C0877308|T046|PT|779.82|ICD9CM|Neonatal tachycardia|Neonatal tachycardia +C1260438|T046|AB|779.83|ICD9CM|Delay separate umbl cord|Delay separate umbl cord +C1260438|T046|PT|779.83|ICD9CM|Delayed separation of umbilical cord|Delayed separation of umbilical cord +C1112318|T046|AB|779.84|ICD9CM|Meconium staining|Meconium staining +C1112318|T046|PT|779.84|ICD9CM|Meconium staining|Meconium staining +C1410098|T046|PT|779.85|ICD9CM|Cardiac arrest of newborn|Cardiac arrest of newborn +C1410098|T046|AB|779.85|ICD9CM|NB cardiac arrest|NB cardiac arrest +C0159027|T047|PT|779.89|ICD9CM|Other specified conditions originating in the perinatal period|Other specified conditions originating in the perinatal period +C0159027|T047|AB|779.89|ICD9CM|Perinatal condition NEC|Perinatal condition NEC +C0270075|T047|AB|779.9|ICD9CM|Perinatal condition NOS|Perinatal condition NOS +C0270075|T047|PT|779.9|ICD9CM|Unspecified condition originating in the perinatal period|Unspecified condition originating in the perinatal period +C0159028|T184|HT|780|ICD9CM|General symptoms|General symptoms +C1457887|T184|HT|780-789.99|ICD9CM|SYMPTOMS|SYMPTOMS +C0178310|T184|HT|780-799.99|ICD9CM|SYMPTOMS, SIGNS, AND ILL-DEFINED CONDITIONS|SYMPTOMS, SIGNS, AND ILL-DEFINED CONDITIONS +C0234428|T033|HT|780.0|ICD9CM|Alteration of consciousness|Alteration of consciousness +C0009421|T047|AB|780.01|ICD9CM|Coma|Coma +C0009421|T047|PT|780.01|ICD9CM|Coma|Coma +C0221539|T184|AB|780.02|ICD9CM|Trans alter awareness|Trans alter awareness +C0221539|T184|PT|780.02|ICD9CM|Transient alteration of awareness|Transient alteration of awareness +C0242670|T047|PT|780.03|ICD9CM|Persistent vegetative state|Persistent vegetative state +C0242670|T047|AB|780.03|ICD9CM|Persistent vegtv state|Persistent vegtv state +C0221540|T184|AB|780.09|ICD9CM|Other alter consciousnes|Other alter consciousnes +C0221540|T184|PT|780.09|ICD9CM|Other alteration of consciousness|Other alteration of consciousness +C0018524|T048|AB|780.1|ICD9CM|Hallucinations|Hallucinations +C0018524|T048|PT|780.1|ICD9CM|Hallucinations|Hallucinations +C0039070|T184|AB|780.2|ICD9CM|Syncope and collapse|Syncope and collapse +C0039070|T184|PT|780.2|ICD9CM|Syncope and collapse|Syncope and collapse +C4048158|T184|HT|780.3|ICD9CM|Convulsions|Convulsions +C0009952|T047|PT|780.31|ICD9CM|Febrile convulsions (simple), unspecified|Febrile convulsions (simple), unspecified +C0009952|T047|AB|780.31|ICD9CM|Febrile convulsions NOS|Febrile convulsions NOS +C0751057|T047|PT|780.32|ICD9CM|Complex febrile convulsions|Complex febrile convulsions +C0751057|T047|AB|780.32|ICD9CM|Complx febrile convulsns|Complx febrile convulsns +C2921125|T047|PT|780.33|ICD9CM|Post traumatic seizures|Post traumatic seizures +C2921125|T047|AB|780.33|ICD9CM|Post traumatic seizures|Post traumatic seizures +C0490011|T184|AB|780.39|ICD9CM|Convulsions NEC|Convulsions NEC +C0490011|T184|PT|780.39|ICD9CM|Other convulsions|Other convulsions +C0476206|T184|AB|780.4|ICD9CM|Dizziness and giddiness|Dizziness and giddiness +C0476206|T184|PT|780.4|ICD9CM|Dizziness and giddiness|Dizziness and giddiness +C0037317|T184|HT|780.5|ICD9CM|Sleep disturbances|Sleep disturbances +C0037317|T184|AB|780.50|ICD9CM|Sleep disturbance NOS|Sleep disturbance NOS +C0037317|T184|PT|780.50|ICD9CM|Sleep disturbance, unspecified|Sleep disturbance, unspecified +C1561813|T184|AB|780.51|ICD9CM|Insomn w sleep apnea NOS|Insomn w sleep apnea NOS +C1561813|T184|PT|780.51|ICD9CM|Insomnia with sleep apnea, unspecified|Insomnia with sleep apnea, unspecified +C0917801|T184|AB|780.52|ICD9CM|Insomnia NOS|Insomnia NOS +C0917801|T184|PT|780.52|ICD9CM|Insomnia, unspecified|Insomnia, unspecified +C1561815|T184|AB|780.53|ICD9CM|Hypersom w slp apnea NOS|Hypersom w slp apnea NOS +C1561815|T184|PT|780.53|ICD9CM|Hypersomnia with sleep apnea, unspecified|Hypersomnia with sleep apnea, unspecified +C0917799|T047|AB|780.54|ICD9CM|Hypersomnia NOS|Hypersomnia NOS +C0917799|T047|PT|780.54|ICD9CM|Hypersomnia, unspecified|Hypersomnia, unspecified +C1561817|T184|PT|780.55|ICD9CM|Disruption of 24 hour sleep wake cycle, unspecified|Disruption of 24 hour sleep wake cycle, unspecified +C1561817|T184|AB|780.55|ICD9CM|Irreg sleep-wake rhy NOS|Irreg sleep-wake rhy NOS +C0013373|T048|PT|780.56|ICD9CM|Dysfunctions associated with sleep stages or arousal from sleep|Dysfunctions associated with sleep stages or arousal from sleep +C0013373|T048|AB|780.56|ICD9CM|Sleep stage dysfunctions|Sleep stage dysfunctions +C0037315|T047|AB|780.57|ICD9CM|Sleep apnea NOS|Sleep apnea NOS +C0037315|T047|PT|780.57|ICD9CM|Unspecified sleep apnea|Unspecified sleep apnea +C1561818|T047|AB|780.58|ICD9CM|Sleep rel move disor NOS|Sleep rel move disor NOS +C1561818|T047|PT|780.58|ICD9CM|Sleep related movement disorder, unspecified|Sleep related movement disorder, unspecified +C1962929|T047|PT|780.59|ICD9CM|Other sleep disturbances|Other sleep disturbances +C1962929|T047|AB|780.59|ICD9CM|Sleep disturbances NEC|Sleep disturbances NEC +C2349675|T184|HT|780.6|ICD9CM|Fever and other physiologic disturbances of temperature regulation|Fever and other physiologic disturbances of temperature regulation +C0015967|T184|AB|780.60|ICD9CM|Fever NOS|Fever NOS +C0015967|T184|PT|780.60|ICD9CM|Fever, unspecified|Fever, unspecified +C2349670|T047|AB|780.61|ICD9CM|Fever in other diseases|Fever in other diseases +C2349670|T047|PT|780.61|ICD9CM|Fever presenting with conditions classified elsewhere|Fever presenting with conditions classified elsewhere +C2349671|T046|PT|780.62|ICD9CM|Postprocedural fever|Postprocedural fever +C2349671|T046|AB|780.62|ICD9CM|Postprocedural fever|Postprocedural fever +C2349672|T046|PT|780.63|ICD9CM|Postvaccination fever|Postvaccination fever +C2349672|T046|AB|780.63|ICD9CM|Postvaccination fever|Postvaccination fever +C2349674|T184|PT|780.64|ICD9CM|Chills (without fever)|Chills (without fever) +C2349674|T184|AB|780.64|ICD9CM|Chills (without fever)|Chills (without fever) +C3542020|T033|PT|780.65|ICD9CM|Hypothermia not associated with low environmental temperature|Hypothermia not associated with low environmental temperature +C3542020|T033|AB|780.65|ICD9CM|Hypothrm-wo low env tmp|Hypothrm-wo low env tmp +C1739123|T046|AB|780.66|ICD9CM|Feb nonhemo transf react|Feb nonhemo transf react +C1739123|T046|PT|780.66|ICD9CM|Febrile nonhemolytic transfusion reaction|Febrile nonhemolytic transfusion reaction +C0024528|T184|HT|780.7|ICD9CM|Malaise and fatigue|Malaise and fatigue +C0015674|T047|AB|780.71|ICD9CM|Chronic fatigue syndrome|Chronic fatigue syndrome +C0015674|T047|PT|780.71|ICD9CM|Chronic fatigue syndrome|Chronic fatigue syndrome +C3543852|T047|PT|780.72|ICD9CM|Functional quadriplegia|Functional quadriplegia +C3543852|T047|AB|780.72|ICD9CM|Functional quadriplegia|Functional quadriplegia +C0695252|T184|AB|780.79|ICD9CM|Malaise and fatigue NEC|Malaise and fatigue NEC +C0695252|T184|PT|780.79|ICD9CM|Other malaise and fatigue|Other malaise and fatigue +C0476476|T033|AB|780.8|ICD9CM|Generalizd hyperhidrosis|Generalizd hyperhidrosis +C0476476|T033|PT|780.8|ICD9CM|Generalized hyperhidrosis|Generalized hyperhidrosis +C0029625|T184|HT|780.9|ICD9CM|Other general symptoms|Other general symptoms +C1135254|T047|PT|780.91|ICD9CM|Fussy infant (baby)|Fussy infant (baby) +C1135254|T047|AB|780.91|ICD9CM|Fussy infant/baby|Fussy infant/baby +C0497134|T033|AB|780.92|ICD9CM|Excess cry infant/baby|Excess cry infant/baby +C0497134|T033|PT|780.92|ICD9CM|Excessive crying of infant (baby)|Excessive crying of infant (baby) +C0751295|T184|AB|780.93|ICD9CM|Memory loss|Memory loss +C0751295|T184|PT|780.93|ICD9CM|Memory loss|Memory loss +C0239233|T184|AB|780.94|ICD9CM|Early satiety|Early satiety +C0239233|T184|PT|780.94|ICD9CM|Early satiety|Early satiety +C1719639|T033|PT|780.95|ICD9CM|Excessive crying of child, adolescent, or adult|Excessive crying of child, adolescent, or adult +C1719639|T033|AB|780.95|ICD9CM|Excs cry chld,adol,adult|Excs cry chld,adol,adult +C0281856|T184|PT|780.96|ICD9CM|Generalized pain|Generalized pain +C0281856|T184|AB|780.96|ICD9CM|Generalized pain|Generalized pain +C0278061|T048|PT|780.97|ICD9CM|Altered mental status|Altered mental status +C0278061|T048|AB|780.97|ICD9CM|Altered mental status|Altered mental status +C0029625|T184|AB|780.99|ICD9CM|Other general symptoms|Other general symptoms +C0029625|T184|PT|780.99|ICD9CM|Other general symptoms|Other general symptoms +C0159033|T184|HT|781|ICD9CM|Symptoms involving nervous and musculoskeletal systems|Symptoms involving nervous and musculoskeletal systems +C0392702|T047|AB|781.0|ICD9CM|Abn involun movement NEC|Abn involun movement NEC +C0392702|T047|PT|781.0|ICD9CM|Abnormal involuntary movements|Abnormal involuntary movements +C0495689|T033|PT|781.1|ICD9CM|Disturbances of sensation of smell and taste|Disturbances of sensation of smell and taste +C0495689|T033|AB|781.1|ICD9CM|Smell & taste disturb|Smell & taste disturb +C0575081|T033|AB|781.2|ICD9CM|Abnormality of gait|Abnormality of gait +C0575081|T033|PT|781.2|ICD9CM|Abnormality of gait|Abnormality of gait +C0520966|T033|AB|781.3|ICD9CM|Lack of coordination|Lack of coordination +C0520966|T033|PT|781.3|ICD9CM|Lack of coordination|Lack of coordination +C0159034|T184|AB|781.4|ICD9CM|Transient limb paralysis|Transient limb paralysis +C0159034|T184|PT|781.4|ICD9CM|Transient paralysis of limb|Transient paralysis of limb +C0009080|T190|AB|781.5|ICD9CM|Clubbing of fingers|Clubbing of fingers +C0009080|T190|PT|781.5|ICD9CM|Clubbing of fingers|Clubbing of fingers +C0025287|T184|AB|781.6|ICD9CM|Meningismus|Meningismus +C0025287|T184|PT|781.6|ICD9CM|Meningismus|Meningismus +C0039621|T033|AB|781.7|ICD9CM|Tetany|Tetany +C0039621|T033|PT|781.7|ICD9CM|Tetany|Tetany +C0840927|T047|AB|781.8|ICD9CM|Neurologic neglect syndr|Neurologic neglect syndr +C0840927|T047|PT|781.8|ICD9CM|Neurologic neglect syndrome|Neurologic neglect syndrome +C0159036|T184|HT|781.9|ICD9CM|Other symptoms involving nervous and musculoskeletal systems|Other symptoms involving nervous and musculoskeletal systems +C0424641|T033|AB|781.91|ICD9CM|Loss of height|Loss of height +C0424641|T033|PT|781.91|ICD9CM|Loss of height|Loss of height +C0231471|T033|AB|781.92|ICD9CM|Abnormal posture|Abnormal posture +C0231471|T033|PT|781.92|ICD9CM|Abnormal posture|Abnormal posture +C0028856|T047|AB|781.93|ICD9CM|Ocular torticollis|Ocular torticollis +C0028856|T047|PT|781.93|ICD9CM|Ocular torticollis|Ocular torticollis +C0427055|T047|AB|781.94|ICD9CM|Facial weakness|Facial weakness +C0427055|T047|PT|781.94|ICD9CM|Facial weakness|Facial weakness +C0159036|T184|AB|781.99|ICD9CM|Nerve/musculskel sym NEC|Nerve/musculskel sym NEC +C0159036|T184|PT|781.99|ICD9CM|Other symptoms involving nervous and musculoskeletal systems|Other symptoms involving nervous and musculoskeletal systems +C0159037|T184|HT|782|ICD9CM|Symptoms involving skin and other integumentary tissue|Symptoms involving skin and other integumentary tissue +C0012766|T184|PT|782.0|ICD9CM|Disturbance of skin sensation|Disturbance of skin sensation +C0012766|T184|AB|782.0|ICD9CM|Skin sensation disturb|Skin sensation disturb +C0015230|T184|AB|782.1|ICD9CM|Nonspecif skin erupt NEC|Nonspecif skin erupt NEC +C0015230|T184|PT|782.1|ICD9CM|Rash and other nonspecific skin eruption|Rash and other nonspecific skin eruption +C0476228|T184|AB|782.2|ICD9CM|Local suprficial swellng|Local suprficial swellng +C0476228|T184|PT|782.2|ICD9CM|Localized superficial swelling, mass, or lump|Localized superficial swelling, mass, or lump +C0013604|T046|AB|782.3|ICD9CM|Edema|Edema +C0013604|T046|PT|782.3|ICD9CM|Edema|Edema +C0476232|T184|AB|782.4|ICD9CM|Jaundice NOS|Jaundice NOS +C0476232|T184|PT|782.4|ICD9CM|Jaundice, unspecified, not of newborn|Jaundice, unspecified, not of newborn +C0010520|T184|AB|782.5|ICD9CM|Cyanosis|Cyanosis +C0010520|T184|PT|782.5|ICD9CM|Cyanosis|Cyanosis +C0159038|T184|HT|782.6|ICD9CM|Pallor and flushing|Pallor and flushing +C0030232|T033|AB|782.61|ICD9CM|Pallor|Pallor +C0030232|T033|PT|782.61|ICD9CM|Pallor|Pallor +C0016382|T184|AB|782.62|ICD9CM|Flushing|Flushing +C0016382|T184|PT|782.62|ICD9CM|Flushing|Flushing +C0159039|T046|AB|782.7|ICD9CM|Spontaneous ecchymoses|Spontaneous ecchymoses +C0159039|T046|PT|782.7|ICD9CM|Spontaneous ecchymoses|Spontaneous ecchymoses +C0159040|T184|AB|782.8|ICD9CM|Changes in skin texture|Changes in skin texture +C0159040|T184|PT|782.8|ICD9CM|Changes in skin texture|Changes in skin texture +C0159037|T184|AB|782.9|ICD9CM|Integument tiss symp NEC|Integument tiss symp NEC +C0159037|T184|PT|782.9|ICD9CM|Other symptoms involving skin and integumentary tissues|Other symptoms involving skin and integumentary tissues +C0476235|T184|HT|783|ICD9CM|Symptoms concerning nutrition, metabolism, and development|Symptoms concerning nutrition, metabolism, and development +C0003123|T047|AB|783.0|ICD9CM|Anorexia|Anorexia +C0003123|T047|PT|783.0|ICD9CM|Anorexia|Anorexia +C0332544|T184|AB|783.1|ICD9CM|Abnormal weight gain|Abnormal weight gain +C0332544|T184|PT|783.1|ICD9CM|Abnormal weight gain|Abnormal weight gain +C0878752|T184|HT|783.2|ICD9CM|Abnormal loss of weight and underweight|Abnormal loss of weight and underweight +C1262477|T033|AB|783.21|ICD9CM|Abnormal loss of weight|Abnormal loss of weight +C1262477|T033|PT|783.21|ICD9CM|Loss of weight|Loss of weight +C0041667|T033|AB|783.22|ICD9CM|Underweight|Underweight +C0041667|T033|PT|783.22|ICD9CM|Underweight|Underweight +C0699815|T033|PT|783.3|ICD9CM|Feeding difficulties and mismanagement|Feeding difficulties and mismanagement +C0699815|T033|AB|783.3|ICD9CM|Feeding problem|Feeding problem +C0878753|T184|HT|783.4|ICD9CM|Lack of expected normal physiological development in childhood|Lack of expected normal physiological development in childhood +C0878706|T184|AB|783.40|ICD9CM|Lack norm physio dev NOS|Lack norm physio dev NOS +C0878706|T184|PT|783.40|ICD9CM|Lack of normal physiological development, unspecified|Lack of normal physiological development, unspecified +C0015544|T047|PT|783.41|ICD9CM|Failure to thrive|Failure to thrive +C0015544|T047|AB|783.41|ICD9CM|Failure to thrive-child|Failure to thrive-child +C0476241|T033|AB|783.42|ICD9CM|Delayed milestones|Delayed milestones +C0476241|T033|PT|783.42|ICD9CM|Delayed milestones|Delayed milestones +C0349588|T033|AB|783.43|ICD9CM|Short stature|Short stature +C0349588|T033|PT|783.43|ICD9CM|Short stature|Short stature +C0085602|T184|AB|783.5|ICD9CM|Polydipsia|Polydipsia +C0085602|T184|PT|783.5|ICD9CM|Polydipsia|Polydipsia +C0020505|T033|AB|783.6|ICD9CM|Polyphagia|Polyphagia +C0020505|T033|PT|783.6|ICD9CM|Polyphagia|Polyphagia +C1998978|T047|PT|783.7|ICD9CM|Adult failure to thrive|Adult failure to thrive +C1998978|T047|AB|783.7|ICD9CM|Failure to thrive-adult|Failure to thrive-adult +C0159043|T184|AB|783.9|ICD9CM|Nutr/metab/devel sym NEC|Nutr/metab/devel sym NEC +C0159043|T184|PT|783.9|ICD9CM|Other symptoms concerning nutrition, metabolism, and development|Other symptoms concerning nutrition, metabolism, and development +C0476247|T184|HT|784|ICD9CM|Symptoms involving head and neck|Symptoms involving head and neck +C0018681|T184|AB|784.0|ICD9CM|Headache|Headache +C0018681|T184|PT|784.0|ICD9CM|Headache|Headache +C0242429|T184|AB|784.1|ICD9CM|Throat pain|Throat pain +C0242429|T184|PT|784.1|ICD9CM|Throat pain|Throat pain +C0159045|T184|AB|784.2|ICD9CM|Swelling in head & neck|Swelling in head & neck +C0159045|T184|PT|784.2|ICD9CM|Swelling, mass, or lump in head and neck|Swelling, mass, or lump in head and neck +C0003537|T048|AB|784.3|ICD9CM|Aphasia|Aphasia +C0003537|T048|PT|784.3|ICD9CM|Aphasia|Aphasia +C2712707|T046|HT|784.4|ICD9CM|Voice and resonance disorders|Voice and resonance disorders +C2712365|T046|PT|784.40|ICD9CM|Voice and resonance disorder, unspecified|Voice and resonance disorder, unspecified +C2712365|T046|AB|784.40|ICD9CM|Voice/resonance dis NOS|Voice/resonance dis NOS +C0003564|T184|AB|784.41|ICD9CM|Aphonia|Aphonia +C0003564|T184|PT|784.41|ICD9CM|Aphonia|Aphonia +C1527344|T048|AB|784.42|ICD9CM|Dysphonia|Dysphonia +C1527344|T048|PT|784.42|ICD9CM|Dysphonia|Dysphonia +C0264614|T047|PT|784.43|ICD9CM|Hypernasality|Hypernasality +C0264614|T047|AB|784.43|ICD9CM|Hypernasality|Hypernasality +C0264618|T047|AB|784.44|ICD9CM|Hyponasality|Hyponasality +C0264618|T047|PT|784.44|ICD9CM|Hyponasality|Hyponasality +C2712366|T184|PT|784.49|ICD9CM|Other voice and resonance disorders|Other voice and resonance disorders +C2712366|T184|AB|784.49|ICD9CM|Voice/resonance dis NEC|Voice/resonance dis NEC +C0478144|T184|HT|784.5|ICD9CM|Other speech disturbance|Other speech disturbance +C0013362|T048|PT|784.51|ICD9CM|Dysarthria|Dysarthria +C0013362|T048|AB|784.51|ICD9CM|Dysarthria|Dysarthria +C2921127|T047|AB|784.52|ICD9CM|Flncy dsord cond elsewhr|Flncy dsord cond elsewhr +C2921127|T047|PT|784.52|ICD9CM|Fluency disorder in conditions classified elsewhere|Fluency disorder in conditions classified elsewhere +C2712367|T184|PT|784.59|ICD9CM|Other speech disturbance|Other speech disturbance +C2712367|T184|AB|784.59|ICD9CM|Speech disturbance NEC|Speech disturbance NEC +C0478145|T184|HT|784.6|ICD9CM|Other symbolic dysfunction|Other symbolic dysfunction +C0159047|T048|AB|784.60|ICD9CM|Symbolic dysfunction NOS|Symbolic dysfunction NOS +C0159047|T048|PT|784.60|ICD9CM|Symbolic dysfunction, unspecified|Symbolic dysfunction, unspecified +C0002019|T048|AB|784.61|ICD9CM|Alexia and dyslexia|Alexia and dyslexia +C0002019|T048|PT|784.61|ICD9CM|Alexia and dyslexia|Alexia and dyslexia +C0478145|T184|PT|784.69|ICD9CM|Other symbolic dysfunction|Other symbolic dysfunction +C0478145|T184|AB|784.69|ICD9CM|Symbolic dysfunction NEC|Symbolic dysfunction NEC +C0014591|T046|AB|784.7|ICD9CM|Epistaxis|Epistaxis +C0014591|T046|PT|784.7|ICD9CM|Epistaxis|Epistaxis +C0576995|T046|AB|784.8|ICD9CM|Hemorrhage from throat|Hemorrhage from throat +C0576995|T046|PT|784.8|ICD9CM|Hemorrhage from throat|Hemorrhage from throat +C0029855|T184|HT|784.9|ICD9CM|Other symptoms involving head and neck|Other symptoms involving head and neck +C0032781|T184|PT|784.91|ICD9CM|Postnasal drip|Postnasal drip +C0032781|T184|AB|784.91|ICD9CM|Postnasal drip|Postnasal drip +C0236000|T184|PT|784.92|ICD9CM|Jaw pain|Jaw pain +C0236000|T184|AB|784.92|ICD9CM|Jaw pain|Jaw pain +C0029855|T184|AB|784.99|ICD9CM|Head & neck symptoms NEC|Head & neck symptoms NEC +C0029855|T184|PT|784.99|ICD9CM|Other symptoms involving head and neck|Other symptoms involving head and neck +C0159049|T184|HT|785|ICD9CM|Symptoms involving cardiovascular system|Symptoms involving cardiovascular system +C0039231|T033|AB|785.0|ICD9CM|Tachycardia NOS|Tachycardia NOS +C0039231|T033|PT|785.0|ICD9CM|Tachycardia, unspecified|Tachycardia, unspecified +C0030252|T033|AB|785.1|ICD9CM|Palpitations|Palpitations +C0030252|T033|PT|785.1|ICD9CM|Palpitations|Palpitations +C0375546|T184|AB|785.2|ICD9CM|Cardiac murmurs NEC|Cardiac murmurs NEC +C0375546|T184|PT|785.2|ICD9CM|Undiagnosed cardiac murmurs|Undiagnosed cardiac murmurs +C0159050|T033|AB|785.3|ICD9CM|Abnorm heart sounds NEC|Abnorm heart sounds NEC +C0159050|T033|PT|785.3|ICD9CM|Other abnormal heart sounds|Other abnormal heart sounds +C0017086|T047|AB|785.4|ICD9CM|Gangrene|Gangrene +C0017086|T047|PT|785.4|ICD9CM|Gangrene|Gangrene +C0159051|T184|HT|785.5|ICD9CM|Shock without mention of trauma|Shock without mention of trauma +C0036974|T046|AB|785.50|ICD9CM|Shock NOS|Shock NOS +C0036974|T046|PT|785.50|ICD9CM|Shock, unspecified|Shock, unspecified +C0036980|T046|AB|785.51|ICD9CM|Cardiogenic shock|Cardiogenic shock +C0036980|T046|PT|785.51|ICD9CM|Cardiogenic shock|Cardiogenic shock +C0036983|T046|AB|785.52|ICD9CM|Septic shock|Septic shock +C0036983|T046|PT|785.52|ICD9CM|Septic shock|Septic shock +C0029737|T046|PT|785.59|ICD9CM|Other shock without mention of trauma|Other shock without mention of trauma +C0029737|T046|AB|785.59|ICD9CM|Shock w/o trauma NEC|Shock w/o trauma NEC +C4282165|T033|AB|785.6|ICD9CM|Enlargement lymph nodes|Enlargement lymph nodes +C4282165|T033|PT|785.6|ICD9CM|Enlargement of lymph nodes|Enlargement of lymph nodes +C0029854|T184|AB|785.9|ICD9CM|Cardiovas sys symp NEC|Cardiovas sys symp NEC +C0029854|T184|PT|785.9|ICD9CM|Other symptoms involving cardiovascular system|Other symptoms involving cardiovascular system +C0476271|T184|HT|786|ICD9CM|Symptoms involving respiratory system and other chest symptoms|Symptoms involving respiratory system and other chest symptoms +C0159053|T033|HT|786.0|ICD9CM|Dyspnea and respiratory abnormalities|Dyspnea and respiratory abnormalities +C1260922|T033|AB|786.00|ICD9CM|Respiratory abnorm NOS|Respiratory abnorm NOS +C1260922|T033|PT|786.00|ICD9CM|Respiratory abnormality, unspecified|Respiratory abnormality, unspecified +C0020578|T033|AB|786.01|ICD9CM|Hyperventilation|Hyperventilation +C0020578|T033|PT|786.01|ICD9CM|Hyperventilation|Hyperventilation +C0085619|T033|AB|786.02|ICD9CM|Orthopnea|Orthopnea +C0085619|T033|PT|786.02|ICD9CM|Orthopnea|Orthopnea +C0003578|T184|AB|786.03|ICD9CM|Apnea|Apnea +C0003578|T184|PT|786.03|ICD9CM|Apnea|Apnea +C0008039|T184|PT|786.04|ICD9CM|Cheyne-Stokes respiration|Cheyne-Stokes respiration +C0008039|T184|AB|786.04|ICD9CM|Cheyne-stokes respiratn|Cheyne-stokes respiratn +C0013404|T184|AB|786.05|ICD9CM|Shortness of breath|Shortness of breath +C0013404|T184|PT|786.05|ICD9CM|Shortness of breath|Shortness of breath +C0231835|T033|AB|786.06|ICD9CM|Tachypnea|Tachypnea +C0231835|T033|PT|786.06|ICD9CM|Tachypnea|Tachypnea +C0043144|T184|AB|786.07|ICD9CM|Wheezing|Wheezing +C0043144|T184|PT|786.07|ICD9CM|Wheezing|Wheezing +C0029601|T046|PT|786.09|ICD9CM|Other respiratory abnormalities|Other respiratory abnormalities +C0029601|T046|AB|786.09|ICD9CM|Respiratory abnorm NEC|Respiratory abnorm NEC +C0038450|T184|AB|786.1|ICD9CM|Stridor|Stridor +C0038450|T184|PT|786.1|ICD9CM|Stridor|Stridor +C0010200|T184|AB|786.2|ICD9CM|Cough|Cough +C0010200|T184|PT|786.2|ICD9CM|Cough|Cough +C0019079|T184|HT|786.3|ICD9CM|Hemoptysis|Hemoptysis +C0019079|T184|AB|786.30|ICD9CM|Hemoptysis NOS|Hemoptysis NOS +C0019079|T184|PT|786.30|ICD9CM|Hemoptysis, unspecified|Hemoptysis, unspecified +C2921130|T046|AB|786.31|ICD9CM|Ac idio pul hemrg infant|Ac idio pul hemrg infant +C2921130|T046|PT|786.31|ICD9CM|Acute idiopathic pulmonary hemorrhage in infants [AIPHI]|Acute idiopathic pulmonary hemorrhage in infants [AIPHI] +C2921131|T184|AB|786.39|ICD9CM|Hemoptysis NEC|Hemoptysis NEC +C2921131|T184|PT|786.39|ICD9CM|Other hemoptysis|Other hemoptysis +C0159054|T033|AB|786.4|ICD9CM|Abnormal sputum|Abnormal sputum +C0159054|T033|PT|786.4|ICD9CM|Abnormal sputum|Abnormal sputum +C0008031|T184|HT|786.5|ICD9CM|Chest pain|Chest pain +C0008031|T184|AB|786.50|ICD9CM|Chest pain NOS|Chest pain NOS +C0008031|T184|PT|786.50|ICD9CM|Chest pain, unspecified|Chest pain, unspecified +C0232286|T184|AB|786.51|ICD9CM|Precordial pain|Precordial pain +C0232286|T184|PT|786.51|ICD9CM|Precordial pain|Precordial pain +C0423729|T184|AB|786.52|ICD9CM|Painful respiration|Painful respiration +C0423729|T184|PT|786.52|ICD9CM|Painful respiration|Painful respiration +C0029537|T184|AB|786.59|ICD9CM|Chest pain NEC|Chest pain NEC +C0029537|T184|PT|786.59|ICD9CM|Other chest pain|Other chest pain +C0159055|T184|AB|786.6|ICD9CM|Chest swelling/mass/lump|Chest swelling/mass/lump +C0159055|T184|PT|786.6|ICD9CM|Swelling, mass, or lump in chest|Swelling, mass, or lump in chest +C0159056|T184|AB|786.7|ICD9CM|Abnormal chest sounds|Abnormal chest sounds +C0159056|T184|PT|786.7|ICD9CM|Abnormal chest sounds|Abnormal chest sounds +C0019521|T033|AB|786.8|ICD9CM|Hiccough|Hiccough +C0019521|T033|PT|786.8|ICD9CM|Hiccough|Hiccough +C0159057|T184|PT|786.9|ICD9CM|Other symptoms involving respiratory system and chest|Other symptoms involving respiratory system and chest +C0159057|T184|AB|786.9|ICD9CM|Resp sys/chest symp NEC|Resp sys/chest symp NEC +C0159058|T184|HT|787|ICD9CM|Symptoms involving digestive system|Symptoms involving digestive system +C0027498|T184|HT|787.0|ICD9CM|Nausea and vomiting|Nausea and vomiting +C0027498|T184|AB|787.01|ICD9CM|Nausea with vomiting|Nausea with vomiting +C0027498|T184|PT|787.01|ICD9CM|Nausea with vomiting|Nausea with vomiting +C0375548|T033|AB|787.02|ICD9CM|Nausea alone|Nausea alone +C0375548|T033|PT|787.02|ICD9CM|Nausea alone|Nausea alone +C0728950|T184|AB|787.03|ICD9CM|Vomiting alone|Vomiting alone +C0728950|T184|PT|787.03|ICD9CM|Vomiting alone|Vomiting alone +C0232599|T033|AB|787.04|ICD9CM|Bilious emesis|Bilious emesis +C0232599|T033|PT|787.04|ICD9CM|Bilious emesis|Bilious emesis +C0018834|T184|AB|787.1|ICD9CM|Heartburn|Heartburn +C0018834|T184|PT|787.1|ICD9CM|Heartburn|Heartburn +C0011168|T047|HT|787.2|ICD9CM|Dysphagia|Dysphagia +C0011168|T047|AB|787.20|ICD9CM|Dysphagia NOS|Dysphagia NOS +C0011168|T047|PT|787.20|ICD9CM|Dysphagia, unspecified|Dysphagia, unspecified +C2315800|T047|PT|787.21|ICD9CM|Dysphagia, oral phase|Dysphagia, oral phase +C2315800|T047|AB|787.21|ICD9CM|Dysphagia, oral phase|Dysphagia, oral phase +C0267071|T047|AB|787.22|ICD9CM|Dysphagia, oropharyngeal|Dysphagia, oropharyngeal +C0267071|T047|PT|787.22|ICD9CM|Dysphagia, oropharyngeal phase|Dysphagia, oropharyngeal phase +C1955516|T184|AB|787.23|ICD9CM|Dysphagia, pharyngeal|Dysphagia, pharyngeal +C1955516|T184|PT|787.23|ICD9CM|Dysphagia, pharyngeal phase|Dysphagia, pharyngeal phase +C1955517|T184|PT|787.24|ICD9CM|Dysphagia, pharyngoesophageal phase|Dysphagia, pharyngoesophageal phase +C1955517|T184|AB|787.24|ICD9CM|Dysphagia,pharyngoesoph|Dysphagia,pharyngoesoph +C1955518|T047|AB|787.29|ICD9CM|Dysphagia NEC|Dysphagia NEC +C1955518|T047|PT|787.29|ICD9CM|Other dysphagia|Other dysphagia +C0016205|T184|AB|787.3|ICD9CM|Flatul/eructat/gas pain|Flatul/eructat/gas pain +C0016205|T184|PT|787.3|ICD9CM|Flatulence, eructation, and gas pain|Flatulence, eructation, and gas pain +C0159059|T033|AB|787.4|ICD9CM|Visible peristalsis|Visible peristalsis +C0159059|T033|PT|787.4|ICD9CM|Visible peristalsis|Visible peristalsis +C0159060|T033|AB|787.5|ICD9CM|Abnormal bowel sounds|Abnormal bowel sounds +C0159060|T033|PT|787.5|ICD9CM|Abnormal bowel sounds|Abnormal bowel sounds +C0015732|T047|HT|787.6|ICD9CM|Incontinence of feces|Incontinence of feces +C2921132|T184|PT|787.60|ICD9CM|Full incontinence of feces|Full incontinence of feces +C2921132|T184|AB|787.60|ICD9CM|Full incontinence-feces|Full incontinence-feces +C0239167|T033|AB|787.61|ICD9CM|Incomplete defecation|Incomplete defecation +C0239167|T033|PT|787.61|ICD9CM|Incomplete defecation|Incomplete defecation +C4759678|T184|PT|787.62|ICD9CM|Fecal smearing|Fecal smearing +C4759678|T184|AB|787.62|ICD9CM|Fecal smearing|Fecal smearing +C0426636|T184|PT|787.63|ICD9CM|Fecal urgency|Fecal urgency +C0426636|T184|AB|787.63|ICD9CM|Fecal urgency|Fecal urgency +C0162287|T033|AB|787.7|ICD9CM|Abnormal feces|Abnormal feces +C0162287|T033|PT|787.7|ICD9CM|Abnormal feces|Abnormal feces +C0159061|T184|HT|787.9|ICD9CM|Other symptoms involving digestive system|Other symptoms involving digestive system +C0011991|T184|AB|787.91|ICD9CM|Diarrhea|Diarrhea +C0011991|T184|PT|787.91|ICD9CM|Diarrhea|Diarrhea +C0159061|T184|AB|787.99|ICD9CM|Digestve syst symptm NEC|Digestve syst symptm NEC +C0159061|T184|PT|787.99|ICD9CM|Other symptoms involving digestive system|Other symptoms involving digestive system +C0476293|T184|HT|788|ICD9CM|Symptoms involving urinary system|Symptoms involving urinary system +C0152169|T184|AB|788.0|ICD9CM|Renal colic|Renal colic +C0152169|T184|PT|788.0|ICD9CM|Renal colic|Renal colic +C0013428|T184|AB|788.1|ICD9CM|Dysuria|Dysuria +C0013428|T184|PT|788.1|ICD9CM|Dysuria|Dysuria +C0080274|T033|HT|788.2|ICD9CM|Retention of urine|Retention of urine +C0080274|T033|PT|788.20|ICD9CM|Retention of urine, unspecified|Retention of urine, unspecified +C0080274|T033|AB|788.20|ICD9CM|Retention urine NOS|Retention urine NOS +C0344365|T184|AB|788.21|ICD9CM|Incmplet bldder emptying|Incmplet bldder emptying +C0344365|T184|PT|788.21|ICD9CM|Incomplete bladder emptying|Incomplete bladder emptying +C0375549|T046|AB|788.29|ICD9CM|Oth spcf retention urine|Oth spcf retention urine +C0375549|T046|PT|788.29|ICD9CM|Other specified retention of urine|Other specified retention of urine +C0042024|T046|HT|788.3|ICD9CM|Urinary incontinence|Urinary incontinence +C0042024|T046|AB|788.30|ICD9CM|Urinary incontinence NOS|Urinary incontinence NOS +C0042024|T046|PT|788.30|ICD9CM|Urinary incontinence, unspecified|Urinary incontinence, unspecified +C0150045|T033|AB|788.31|ICD9CM|Urge incontinence|Urge incontinence +C0150045|T033|PT|788.31|ICD9CM|Urge incontinence|Urge incontinence +C0302505|T046|AB|788.32|ICD9CM|Stress incontinence male|Stress incontinence male +C0302505|T046|PT|788.32|ICD9CM|Stress incontinence, male|Stress incontinence, male +C0869256|T184|AB|788.33|ICD9CM|Mixed incontinence|Mixed incontinence +C0869256|T184|PT|788.33|ICD9CM|Mixed incontinence (male) (female)|Mixed incontinence (male) (female) +C0375551|T046|PT|788.34|ICD9CM|Incontinence without sensory awareness|Incontinence without sensory awareness +C0375551|T046|AB|788.34|ICD9CM|Incontnce wo sensr aware|Incontnce wo sensr aware +C0375552|T184|AB|788.35|ICD9CM|Post-void dribbling|Post-void dribbling +C0375552|T184|PT|788.35|ICD9CM|Post-void dribbling|Post-void dribbling +C0270327|T048|AB|788.36|ICD9CM|Nocturnal enuresis|Nocturnal enuresis +C0270327|T048|PT|788.36|ICD9CM|Nocturnal enuresis|Nocturnal enuresis +C0375553|T184|AB|788.37|ICD9CM|Continuous leakage|Continuous leakage +C0375553|T184|PT|788.37|ICD9CM|Continuous leakage|Continuous leakage +C0312413|T033|AB|788.38|ICD9CM|Overflow incontinence|Overflow incontinence +C0312413|T033|PT|788.38|ICD9CM|Overflow incontinence|Overflow incontinence +C0375554|T046|AB|788.39|ICD9CM|Oth urinry incontinence|Oth urinry incontinence +C0375554|T046|PT|788.39|ICD9CM|Other urinary incontinence|Other urinary incontinence +C0016708|T184|HT|788.4|ICD9CM|Frequency of urination and polyuria|Frequency of urination and polyuria +C0042023|T033|AB|788.41|ICD9CM|Urinary frequency|Urinary frequency +C0042023|T033|PT|788.41|ICD9CM|Urinary frequency|Urinary frequency +C0032617|T184|AB|788.42|ICD9CM|Polyuria|Polyuria +C0032617|T184|PT|788.42|ICD9CM|Polyuria|Polyuria +C0028734|T047|AB|788.43|ICD9CM|Nocturia|Nocturia +C0028734|T047|PT|788.43|ICD9CM|Nocturia|Nocturia +C0028962|T184|AB|788.5|ICD9CM|Oliguria & anuria|Oliguria & anuria +C0028962|T184|PT|788.5|ICD9CM|Oliguria and anuria|Oliguria and anuria +C0159063|T184|HT|788.6|ICD9CM|Other abnormality of urination|Other abnormality of urination +C0232855|T184|PT|788.61|ICD9CM|Splitting of urinary stream|Splitting of urinary stream +C0232855|T184|AB|788.61|ICD9CM|Splitting urinary stream|Splitting urinary stream +C0232854|T184|PT|788.62|ICD9CM|Slowing of urinary stream|Slowing of urinary stream +C0232854|T184|AB|788.62|ICD9CM|Slowing urinary stream|Slowing urinary stream +C0085606|T184|AB|788.63|ICD9CM|Urgency of urination|Urgency of urination +C0085606|T184|PT|788.63|ICD9CM|Urgency of urination|Urgency of urination +C0152032|T184|PT|788.64|ICD9CM|Urinary hesitancy|Urinary hesitancy +C0152032|T184|AB|788.64|ICD9CM|Urinary hesitancy|Urinary hesitancy +C0426365|T033|PT|788.65|ICD9CM|Straining on urination|Straining on urination +C0426365|T033|AB|788.65|ICD9CM|Straining on urination|Straining on urination +C0159063|T184|AB|788.69|ICD9CM|Oth abnormalt urination|Oth abnormalt urination +C0159063|T184|PT|788.69|ICD9CM|Other abnormality of urination|Other abnormality of urination +C0152447|T184|AB|788.7|ICD9CM|Urethral discharge|Urethral discharge +C0152447|T184|PT|788.7|ICD9CM|Urethral discharge|Urethral discharge +C0152245|T046|AB|788.8|ICD9CM|Extravasation of urine|Extravasation of urine +C0152245|T046|PT|788.8|ICD9CM|Extravasation of urine|Extravasation of urine +C0159064|T184|HT|788.9|ICD9CM|Other symptoms involving urinary system|Other symptoms involving urinary system +C0150042|T033|AB|788.91|ICD9CM|Fnctnl urinary incontnce|Fnctnl urinary incontnce +C0150042|T033|PT|788.91|ICD9CM|Functional urinary incontinence|Functional urinary incontinence +C0159064|T184|AB|788.99|ICD9CM|Oth symptm urinary systm|Oth symptm urinary systm +C0159064|T184|PT|788.99|ICD9CM|Other symptoms involving urinary system|Other symptoms involving urinary system +C0159065|T184|HT|789|ICD9CM|Other symptoms involving abdomen and pelvis|Other symptoms involving abdomen and pelvis +C0000737|T184|HT|789.0|ICD9CM|Abdominal pain|Abdominal pain +C0000737|T184|AB|789.00|ICD9CM|Abdmnal pain unspcf site|Abdmnal pain unspcf site +C0000737|T184|PT|789.00|ICD9CM|Abdominal pain, unspecified site|Abdominal pain, unspecified site +C0235299|T184|AB|789.01|ICD9CM|Abdmnal pain rt upr quad|Abdmnal pain rt upr quad +C0235299|T184|PT|789.01|ICD9CM|Abdominal pain, right upper quadrant|Abdominal pain, right upper quadrant +C0238552|T184|AB|789.02|ICD9CM|Abdmnal pain lft up quad|Abdmnal pain lft up quad +C0238552|T184|PT|789.02|ICD9CM|Abdominal pain, left upper quadrant|Abdominal pain, left upper quadrant +C0694551|T184|AB|789.03|ICD9CM|Abdmnal pain rt lwr quad|Abdmnal pain rt lwr quad +C0694551|T184|PT|789.03|ICD9CM|Abdominal pain, right lower quadrant|Abdominal pain, right lower quadrant +C0238551|T184|AB|789.04|ICD9CM|Abdmnal pain lt lwr quad|Abdmnal pain lt lwr quad +C0238551|T184|PT|789.04|ICD9CM|Abdominal pain, left lower quadrant|Abdominal pain, left lower quadrant +C1096624|T033|AB|789.05|ICD9CM|Abdmnal pain periumbilic|Abdmnal pain periumbilic +C1096624|T033|PT|789.05|ICD9CM|Abdominal pain, periumbilic|Abdominal pain, periumbilic +C0232493|T184|AB|789.06|ICD9CM|Abdmnal pain epigastric|Abdmnal pain epigastric +C0232493|T184|PT|789.06|ICD9CM|Abdominal pain, epigastric|Abdominal pain, epigastric +C0344304|T184|AB|789.07|ICD9CM|Abdmnal pain generalized|Abdmnal pain generalized +C0344304|T184|PT|789.07|ICD9CM|Abdominal pain, generalized|Abdominal pain, generalized +C0375555|T184|AB|789.09|ICD9CM|Abdmnal pain oth spcf st|Abdmnal pain oth spcf st +C0375555|T184|PT|789.09|ICD9CM|Abdominal pain, other specified site|Abdominal pain, other specified site +C0019209|T033|AB|789.1|ICD9CM|Hepatomegaly|Hepatomegaly +C0019209|T033|PT|789.1|ICD9CM|Hepatomegaly|Hepatomegaly +C0038002|T033|AB|789.2|ICD9CM|Splenomegaly|Splenomegaly +C0038002|T033|PT|789.2|ICD9CM|Splenomegaly|Splenomegaly +C0476310|T184|HT|789.3|ICD9CM|Abdominal or pelvic swelling, mass, or lump|Abdominal or pelvic swelling, mass, or lump +C0375556|T184|AB|789.30|ICD9CM|Abdmnal mass unspcf site|Abdmnal mass unspcf site +C0375556|T184|PT|789.30|ICD9CM|Abdominal or pelvic swelling, mass, or lump, unspecified site|Abdominal or pelvic swelling, mass, or lump, unspecified site +C0375557|T184|AB|789.31|ICD9CM|Abdmnal mass rt upr quad|Abdmnal mass rt upr quad +C0375557|T184|PT|789.31|ICD9CM|Abdominal or pelvic swelling, mass, or lump, right upper quadrant|Abdominal or pelvic swelling, mass, or lump, right upper quadrant +C0375558|T184|AB|789.32|ICD9CM|Abdmnal mass lft up quad|Abdmnal mass lft up quad +C0375558|T184|PT|789.32|ICD9CM|Abdominal or pelvic swelling, mass, or lump, left upper quadrant|Abdominal or pelvic swelling, mass, or lump, left upper quadrant +C0375559|T184|AB|789.33|ICD9CM|Abdmnal mass rt lwr quad|Abdmnal mass rt lwr quad +C0375559|T184|PT|789.33|ICD9CM|Abdominal or pelvic swelling, mass, or lump, right lower quadrant|Abdominal or pelvic swelling, mass, or lump, right lower quadrant +C0375560|T184|AB|789.34|ICD9CM|Abdmnal mass lt lwr quad|Abdmnal mass lt lwr quad +C0375560|T184|PT|789.34|ICD9CM|Abdominal or pelvic swelling, mass, or lump, left lower quadrant|Abdominal or pelvic swelling, mass, or lump, left lower quadrant +C0375561|T184|AB|789.35|ICD9CM|Abdmnal mass periumbilic|Abdmnal mass periumbilic +C0375561|T184|PT|789.35|ICD9CM|Abdominal or pelvic swelling, mass, or lump, periumbilic|Abdominal or pelvic swelling, mass, or lump, periumbilic +C0375562|T184|AB|789.36|ICD9CM|Abdmnal mass epigastric|Abdmnal mass epigastric +C0375562|T184|PT|789.36|ICD9CM|Abdominal or pelvic swelling, mass, or lump, epigastric|Abdominal or pelvic swelling, mass, or lump, epigastric +C0375563|T184|AB|789.37|ICD9CM|Abdmnal mass generalized|Abdmnal mass generalized +C0375563|T184|PT|789.37|ICD9CM|Abdominal or pelvic swelling, mass, or lump, generalized|Abdominal or pelvic swelling, mass, or lump, generalized +C0375564|T184|AB|789.39|ICD9CM|Abdmnal mass oth spcf st|Abdmnal mass oth spcf st +C0375564|T184|PT|789.39|ICD9CM|Abdominal or pelvic swelling, mass, or lump, other specified site|Abdominal or pelvic swelling, mass, or lump, other specified site +C0159066|T184|HT|789.4|ICD9CM|Abdominal rigidity|Abdominal rigidity +C0159066|T184|AB|789.40|ICD9CM|Abdmnal rgdt unspcf site|Abdmnal rgdt unspcf site +C0159066|T184|PT|789.40|ICD9CM|Abdominal rigidity, unspecified site|Abdominal rigidity, unspecified site +C0375565|T184|AB|789.41|ICD9CM|Abdmnal rgdt rt upr quad|Abdmnal rgdt rt upr quad +C0375565|T184|PT|789.41|ICD9CM|Abdominal rigidity, right upper quadrant|Abdominal rigidity, right upper quadrant +C2585165|T184|AB|789.42|ICD9CM|Abdmnal rgdt lft up quad|Abdmnal rgdt lft up quad +C2585165|T184|PT|789.42|ICD9CM|Abdominal rigidity, left upper quadrant|Abdominal rigidity, left upper quadrant +C2585545|T184|AB|789.43|ICD9CM|Abdmnal rgdt rt lwr quad|Abdmnal rgdt rt lwr quad +C2585545|T184|PT|789.43|ICD9CM|Abdominal rigidity, right lower quadrant|Abdominal rigidity, right lower quadrant +C2585546|T184|AB|789.44|ICD9CM|Abdmnal rgdt lt lwr quad|Abdmnal rgdt lt lwr quad +C2585546|T184|PT|789.44|ICD9CM|Abdominal rigidity, left lower quadrant|Abdominal rigidity, left lower quadrant +C2127287|T033|AB|789.45|ICD9CM|Abdmnal rgdt periumbilic|Abdmnal rgdt periumbilic +C2127287|T033|PT|789.45|ICD9CM|Abdominal rigidity, periumbilic|Abdominal rigidity, periumbilic +C0375570|T184|AB|789.46|ICD9CM|Abdmnal rgdt epigastric|Abdmnal rgdt epigastric +C0375570|T184|PT|789.46|ICD9CM|Abdominal rigidity, epigastric|Abdominal rigidity, epigastric +C0375571|T184|AB|789.47|ICD9CM|Abdmnal rgdt generalized|Abdmnal rgdt generalized +C0375571|T184|PT|789.47|ICD9CM|Abdominal rigidity, generalized|Abdominal rigidity, generalized +C0375572|T184|AB|789.49|ICD9CM|Abdmnal rgdt oth spcf st|Abdmnal rgdt oth spcf st +C0375572|T184|PT|789.49|ICD9CM|Abdominal rigidity, other specified site|Abdominal rigidity, other specified site +C0003962|T047|HT|789.5|ICD9CM|Ascites|Ascites +C0220656|T191|PT|789.51|ICD9CM|Malignant ascites|Malignant ascites +C0220656|T191|AB|789.51|ICD9CM|Malignant ascites|Malignant ascites +C1955521|T047|AB|789.59|ICD9CM|Ascites NEC|Ascites NEC +C1955521|T047|PT|789.59|ICD9CM|Other ascites|Other ascites +C0232498|T184|HT|789.6|ICD9CM|Abdominal tenderness|Abdominal tenderness +C0232498|T184|AB|789.60|ICD9CM|Abdmnal tndr unspcf site|Abdmnal tndr unspcf site +C0232498|T184|PT|789.60|ICD9CM|Abdominal tenderness, unspecified site|Abdominal tenderness, unspecified site +C0238571|T184|AB|789.61|ICD9CM|Abdmnal tndr rt upr quad|Abdmnal tndr rt upr quad +C0238571|T184|PT|789.61|ICD9CM|Abdominal tenderness, right upper quadrant|Abdominal tenderness, right upper quadrant +C0238566|T184|AB|789.62|ICD9CM|Abdmnal tndr lft up quad|Abdmnal tndr lft up quad +C0238566|T184|PT|789.62|ICD9CM|Abdominal tenderness, left upper quadrant|Abdominal tenderness, left upper quadrant +C0238570|T184|AB|789.63|ICD9CM|Abdmnal tndr rt lwr quad|Abdmnal tndr rt lwr quad +C0238570|T184|PT|789.63|ICD9CM|Abdominal tenderness, right lower quadrant|Abdominal tenderness, right lower quadrant +C2585306|T184|AB|789.64|ICD9CM|Abdmnal tndr lt lwr quad|Abdmnal tndr lt lwr quad +C2585306|T184|PT|789.64|ICD9CM|Abdominal tenderness, left lower quadrant|Abdominal tenderness, left lower quadrant +C0375573|T184|AB|789.65|ICD9CM|Abdmnal tndr periumbilic|Abdmnal tndr periumbilic +C0375573|T184|PT|789.65|ICD9CM|Abdominal tenderness, periumbilic|Abdominal tenderness, periumbilic +C0239280|T184|AB|789.66|ICD9CM|Abdmnal tndr epigastric|Abdmnal tndr epigastric +C0239280|T184|PT|789.66|ICD9CM|Abdominal tenderness, epigastric|Abdominal tenderness, epigastric +C0302540|T184|AB|789.67|ICD9CM|Abdmnal tndr generalized|Abdmnal tndr generalized +C0302540|T184|PT|789.67|ICD9CM|Abdominal tenderness, generalized|Abdominal tenderness, generalized +C0375574|T184|AB|789.69|ICD9CM|Abdmnal tndr oth spcf st|Abdmnal tndr oth spcf st +C0375574|T184|PT|789.69|ICD9CM|Abdominal tenderness, other specified site|Abdominal tenderness, other specified site +C0232488|T033|PT|789.7|ICD9CM|Colic|Colic +C0232488|T033|AB|789.7|ICD9CM|Colic|Colic +C0159065|T184|AB|789.9|ICD9CM|Abdomen/pelvis symp NEC|Abdomen/pelvis symp NEC +C0159065|T184|PT|789.9|ICD9CM|Other symptoms involving abdomen and pelvis|Other symptoms involving abdomen and pelvis +C0476319|T033|HT|790|ICD9CM|Nonspecific findings on examination of blood|Nonspecific findings on examination of blood +C2004518|T033|HT|790-796.99|ICD9CM|NONSPECIFIC ABNORMAL FINDINGS|NONSPECIFIC ABNORMAL FINDINGS +C0391870|T033|HT|790.0|ICD9CM|Abnormality of red blood cells|Abnormality of red blood cells +C0878707|T184|AB|790.01|ICD9CM|Drop, hematocrit, precip|Drop, hematocrit, precip +C0878707|T184|PT|790.01|ICD9CM|Precipitous drop in hematocrit|Precipitous drop in hematocrit +C0878708|T033|AB|790.09|ICD9CM|Abnormal RBC NEC|Abnormal RBC NEC +C0878708|T033|PT|790.09|ICD9CM|Other abnormality of red blood cells|Other abnormality of red blood cells +C0151632|T033|AB|790.1|ICD9CM|Elevated sediment rate|Elevated sediment rate +C0151632|T033|PT|790.1|ICD9CM|Elevated sedimentation rate|Elevated sedimentation rate +C0580546|T033|HT|790.2|ICD9CM|Abnormal glucose|Abnormal glucose +C1272092|T033|AB|790.21|ICD9CM|Impaired fasting glucose|Impaired fasting glucose +C1272092|T033|PT|790.21|ICD9CM|Impaired fasting glucose|Impaired fasting glucose +C2830475|T033|PT|790.22|ICD9CM|Impaired glucose tolerance test (oral)|Impaired glucose tolerance test (oral) +C2830475|T033|AB|790.22|ICD9CM|Impaired oral glucse tol|Impaired oral glucse tol +C1260443|T033|AB|790.29|ICD9CM|Abnormal glucose NEC|Abnormal glucose NEC +C1260443|T033|PT|790.29|ICD9CM|Other abnormal glucose|Other abnormal glucose +C0159070|T033|AB|790.3|ICD9CM|Excess blood-alcohol lev|Excess blood-alcohol lev +C0159070|T033|PT|790.3|ICD9CM|Excessive blood level of alcohol|Excessive blood level of alcohol +C0159071|T033|AB|790.4|ICD9CM|Elev transaminase/ldh|Elev transaminase/ldh +C0159071|T033|PT|790.4|ICD9CM|Nonspecific elevation of levels of transaminase or lactic acid dehydrogenase [LDH]|Nonspecific elevation of levels of transaminase or lactic acid dehydrogenase [LDH] +C0159072|T046|AB|790.5|ICD9CM|Abn serum enzy level NEC|Abn serum enzy level NEC +C0159072|T046|PT|790.5|ICD9CM|Other nonspecific abnormal serum enzyme levels|Other nonspecific abnormal serum enzyme levels +C0029481|T046|AB|790.6|ICD9CM|Abn blood chemistry NEC|Abn blood chemistry NEC +C0029481|T046|PT|790.6|ICD9CM|Other abnormal blood chemistry|Other abnormal blood chemistry +C0004610|T047|AB|790.7|ICD9CM|Bacteremia|Bacteremia +C0004610|T047|PT|790.7|ICD9CM|Bacteremia|Bacteremia +C0042749|T047|AB|790.8|ICD9CM|Viremia NOS|Viremia NOS +C0042749|T047|PT|790.8|ICD9CM|Viremia, unspecified|Viremia, unspecified +C0159073|T033|HT|790.9|ICD9CM|Other nonspecific findings on examination of blood|Other nonspecific findings on examination of blood +C0375575|T033|PT|790.91|ICD9CM|Abnormal arterial blood gases|Abnormal arterial blood gases +C0375575|T033|AB|790.91|ICD9CM|Abnrml art blood gases|Abnrml art blood gases +C0375576|T033|PT|790.92|ICD9CM|Abnormal coagulation profile|Abnormal coagulation profile +C0375576|T033|AB|790.92|ICD9CM|Abnrml coagultion prfile|Abnrml coagultion prfile +C0178415|T033|PT|790.93|ICD9CM|Elevated prostate specific antigen [PSA]|Elevated prostate specific antigen [PSA] +C0178415|T033|AB|790.93|ICD9CM|Elvtd prstate spcf antgn|Elvtd prstate spcf antgn +C0015190|T047|AB|790.94|ICD9CM|Euthyroid sick syndrome|Euthyroid sick syndrome +C0015190|T047|PT|790.94|ICD9CM|Euthyroid sick syndrome|Euthyroid sick syndrome +C1455884|T033|AB|790.95|ICD9CM|Elev C-reactive protein|Elev C-reactive protein +C1455884|T033|PT|790.95|ICD9CM|Elevated C-reactive protein (CRP)|Elevated C-reactive protein (CRP) +C0159073|T033|AB|790.99|ICD9CM|Oth nspcf finding blood|Oth nspcf finding blood +C0159073|T033|PT|790.99|ICD9CM|Other nonspecific findings on examination of blood|Other nonspecific findings on examination of blood +C0476338|T033|HT|791|ICD9CM|Nonspecific findings on examination of urine|Nonspecific findings on examination of urine +C0033687|T033|AB|791.0|ICD9CM|Proteinuria|Proteinuria +C0033687|T033|PT|791.0|ICD9CM|Proteinuria|Proteinuria +C0159075|T184|AB|791.1|ICD9CM|Chyluria|Chyluria +C0159075|T184|PT|791.1|ICD9CM|Chyluria|Chyluria +C0019048|T033|AB|791.2|ICD9CM|Hemoglobinuria|Hemoglobinuria +C0019048|T033|PT|791.2|ICD9CM|Hemoglobinuria|Hemoglobinuria +C0027080|T033|AB|791.3|ICD9CM|Myoglobinuria|Myoglobinuria +C0027080|T033|PT|791.3|ICD9CM|Myoglobinuria|Myoglobinuria +C0159076|T033|AB|791.4|ICD9CM|Biliuria|Biliuria +C0159076|T033|PT|791.4|ICD9CM|Biliuria|Biliuria +C0017979|T033|AB|791.5|ICD9CM|Glycosuria|Glycosuria +C0017979|T033|PT|791.5|ICD9CM|Glycosuria|Glycosuria +C0162275|T047|AB|791.6|ICD9CM|Acetonuria|Acetonuria +C0162275|T047|PT|791.6|ICD9CM|Acetonuria|Acetonuria +C0159077|T033|AB|791.7|ICD9CM|Oth cells/casts in urine|Oth cells/casts in urine +C0159077|T033|PT|791.7|ICD9CM|Other cells and casts in urine|Other cells and casts in urine +C0159078|T033|AB|791.9|ICD9CM|Abn urine findings NEC|Abn urine findings NEC +C0159078|T033|PT|791.9|ICD9CM|Other nonspecific findings on examination of urine|Other nonspecific findings on examination of urine +C0159079|T033|HT|792|ICD9CM|Nonspecific abnormal findings in other body substances|Nonspecific abnormal findings in other body substances +C0151583|T033|AB|792.0|ICD9CM|Abn fnd-cerebrospinal fl|Abn fnd-cerebrospinal fl +C0151583|T033|PT|792.0|ICD9CM|Nonspecific abnormal findings in cerebrospinal fluid|Nonspecific abnormal findings in cerebrospinal fluid +C0476346|T033|AB|792.1|ICD9CM|Abn find-stool contents|Abn find-stool contents +C0476346|T033|PT|792.1|ICD9CM|Nonspecific abnormal findings in stool contents|Nonspecific abnormal findings in stool contents +C0235756|T033|AB|792.2|ICD9CM|Abn findings-semen|Abn findings-semen +C0235756|T033|PT|792.2|ICD9CM|Nonspecific abnormal findings in semen|Nonspecific abnormal findings in semen +C0266781|T033|AB|792.3|ICD9CM|Abn find-amniotic fluid|Abn find-amniotic fluid +C0266781|T033|PT|792.3|ICD9CM|Nonspecific abnormal findings in amniotic fluid|Nonspecific abnormal findings in amniotic fluid +C0159084|T033|AB|792.4|ICD9CM|Abn findings-saliva|Abn findings-saliva +C0159084|T033|PT|792.4|ICD9CM|Nonspecific abnormal findings in saliva|Nonspecific abnormal findings in saliva +C0878709|T184|PT|792.5|ICD9CM|Cloudy (hemodialysis) (peritoneal) dialysis effluent|Cloudy (hemodialysis) (peritoneal) dialysis effluent +C0878709|T184|AB|792.5|ICD9CM|Cloudy dialysis effluent|Cloudy dialysis effluent +C0159079|T033|AB|792.9|ICD9CM|Abn find-body subst NEC|Abn find-body subst NEC +C0159079|T033|PT|792.9|ICD9CM|Other nonspecific abnormal findings in body substances|Other nonspecific abnormal findings in body substances +C0159085|T033|HT|793|ICD9CM|Nonspecific (abnormal) findings on radiological and other examination of body structure|Nonspecific (abnormal) findings on radiological and other examination of body structure +C0476359|T033|AB|793.0|ICD9CM|Nonsp abn fd-skull/head|Nonsp abn fd-skull/head +C0476359|T033|PT|793.0|ICD9CM|Nonspecific (abnormal) findings on radiological and other examination of skull and head|Nonspecific (abnormal) findings on radiological and other examination of skull and head +C0476365|T033|HT|793.1|ICD9CM|Nonspecific abnormal findings on radiological and other examination of lung field|Nonspecific abnormal findings on radiological and other examination of lung field +C2350019|T191|PT|793.11|ICD9CM|Solitary pulmonary nodule|Solitary pulmonary nodule +C2350019|T191|AB|793.11|ICD9CM|Solitary pulmonry nodule|Solitary pulmonry nodule +C3161126|T033|AB|793.19|ICD9CM|Ot nonsp ab fnd lung fld|Ot nonsp ab fnd lung fld +C3161126|T033|PT|793.19|ICD9CM|Other nonspecific abnormal finding of lung field|Other nonspecific abnormal finding of lung field +C0159088|T033|AB|793.2|ICD9CM|Nonsp abn intrathor NEC|Nonsp abn intrathor NEC +C0159088|T033|PT|793.2|ICD9CM|Nonspecific (abnormal) findings on radiological and other examination of other intrathoracic organs|Nonspecific (abnormal) findings on radiological and other examination of other intrathoracic organs +C0159089|T033|AB|793.3|ICD9CM|Nonsp abn fd-bilry tract|Nonsp abn fd-bilry tract +C0159089|T033|PT|793.3|ICD9CM|Nonspecific (abnormal) findings on radiological and other examination of biliary tract|Nonspecific (abnormal) findings on radiological and other examination of biliary tract +C0159090|T033|AB|793.4|ICD9CM|Nonsp abn find-gi tract|Nonsp abn find-gi tract +C0159090|T033|PT|793.4|ICD9CM|Nonspecific (abnormal) findings on radiological and other examination of gastrointestinal tract|Nonspecific (abnormal) findings on radiological and other examination of gastrointestinal tract +C0476376|T033|AB|793.5|ICD9CM|Nonsp abn find-gu organs|Nonsp abn find-gu organs +C0476376|T033|PT|793.5|ICD9CM|Nonspecific (abnormal) findings on radiological and other examination of genitourinary organs|Nonspecific (abnormal) findings on radiological and other examination of genitourinary organs +C0159092|T033|AB|793.6|ICD9CM|Nonsp abn fnd-abdom area|Nonsp abn fnd-abdom area +C0159093|T033|AB|793.7|ICD9CM|Nonsp abn find-ms system|Nonsp abn find-ms system +C0159093|T033|PT|793.7|ICD9CM|Nonspecific (abnormal) findings on radiological and other examination of musculoskeletal system|Nonspecific (abnormal) findings on radiological and other examination of musculoskeletal system +C0159094|T033|HT|793.8|ICD9CM|Nonspecific abnormal findings on radiological and other examination of breast|Nonspecific abnormal findings on radiological and other examination of breast +C0949146|T047|AB|793.80|ICD9CM|Ab mammogram NOS|Ab mammogram NOS +C0949146|T047|PT|793.80|ICD9CM|Abnormal mammogram, unspecified|Abnormal mammogram, unspecified +C2830589|T033|AB|793.81|ICD9CM|Mammographic microcalcif|Mammographic microcalcif +C2830589|T033|PT|793.81|ICD9CM|Mammographic microcalcification|Mammographic microcalcification +C2712369|T033|PT|793.82|ICD9CM|Inconclusive mammogram|Inconclusive mammogram +C2712369|T033|AB|793.82|ICD9CM|Inconclusive mammogram|Inconclusive mammogram +C0949148|T047|AB|793.89|ICD9CM|Abn finding-breast NEC|Abn finding-breast NEC +C0949148|T047|PT|793.89|ICD9CM|Other (abnormal) findings on radiological examination of breast|Other (abnormal) findings on radiological examination of breast +C0028315|T033|HT|793.9|ICD9CM|Nonspecific abnormal findings on radiological and other examination of other sites of body|Nonspecific abnormal findings on radiological and other examination of other sites of body +C1719644|T033|AB|793.91|ICD9CM|Image test incon d/t fat|Image test incon d/t fat +C1719644|T033|PT|793.91|ICD9CM|Image test inconclusive due to excess body fat|Image test inconclusive due to excess body fat +C1719645|T033|AB|793.99|ICD9CM|Nonsp abn find-body NEC|Nonsp abn find-body NEC +C1719645|T033|PT|793.99|ICD9CM|Other nonspecific (abnormal) findings on radiological and other examinations of body structure|Other nonspecific (abnormal) findings on radiological and other examinations of body structure +C0476388|T033|HT|794|ICD9CM|Nonspecific abnormal results of function studies|Nonspecific abnormal results of function studies +C0476389|T033|HT|794.0|ICD9CM|Nonspecific abnormal results of function study of brain and central nervous system|Nonspecific abnormal results of function study of brain and central nervous system +C0476389|T033|AB|794.00|ICD9CM|Abn cns funct study NOS|Abn cns funct study NOS +C0476389|T033|PT|794.00|ICD9CM|Abnormal function study of brain and central nervous system, unspecified|Abnormal function study of brain and central nervous system, unspecified +C0476391|T033|AB|794.01|ICD9CM|Abnorm echoencephalogram|Abnorm echoencephalogram +C0476391|T033|PT|794.01|ICD9CM|Nonspecific abnormal echoencephalogram|Nonspecific abnormal echoencephalogram +C0159099|T033|AB|794.02|ICD9CM|Abn electroencephalogram|Abn electroencephalogram +C0159099|T033|PT|794.02|ICD9CM|Nonspecific abnormal electroencephalogram [EEG]|Nonspecific abnormal electroencephalogram [EEG] +C0159100|T033|AB|794.09|ICD9CM|Abn cns funct study NEC|Abn cns funct study NEC +C0159100|T033|PT|794.09|ICD9CM|Other nonspecific abnormal results of function study of brain and central nervous system|Other nonspecific abnormal results of function study of brain and central nervous system +C0495795|T033|HT|794.1|ICD9CM|Nonspecific abnormal results of function study of peripheral nervous system and special senses|Nonspecific abnormal results of function study of peripheral nervous system and special senses +C0159102|T033|AB|794.10|ICD9CM|Abn stimul response NOS|Abn stimul response NOS +C0159102|T033|PT|794.10|ICD9CM|Nonspecific abnormal response to nerve stimulation, unspecified|Nonspecific abnormal response to nerve stimulation, unspecified +C0476396|T033|AB|794.11|ICD9CM|Abn retinal funct study|Abn retinal funct study +C0476396|T033|PT|794.11|ICD9CM|Nonspecific abnormal retinal function studies|Nonspecific abnormal retinal function studies +C0159104|T033|AB|794.12|ICD9CM|Abnorm electro-oculogram|Abnorm electro-oculogram +C0159104|T033|PT|794.12|ICD9CM|Nonspecific abnormal electro-oculogram [EOG]|Nonspecific abnormal electro-oculogram [EOG] +C0522214|T033|AB|794.13|ICD9CM|Abnormal vep|Abnormal vep +C0522214|T033|PT|794.13|ICD9CM|Nonspecific abnormal visually evoked potential|Nonspecific abnormal visually evoked potential +C0159106|T033|AB|794.14|ICD9CM|Abn oculomotor studies|Abn oculomotor studies +C0159106|T033|PT|794.14|ICD9CM|Nonspecific abnormal oculomotor studies|Nonspecific abnormal oculomotor studies +C0159107|T033|AB|794.15|ICD9CM|Abn auditory funct study|Abn auditory funct study +C0159107|T033|PT|794.15|ICD9CM|Nonspecific abnormal auditory function studies|Nonspecific abnormal auditory function studies +C0476402|T033|AB|794.16|ICD9CM|Abn vestibular func stud|Abn vestibular func stud +C0476402|T033|PT|794.16|ICD9CM|Nonspecific abnormal vestibular function studies|Nonspecific abnormal vestibular function studies +C0476403|T033|AB|794.17|ICD9CM|Abnorm electromyogram|Abnorm electromyogram +C0476403|T033|PT|794.17|ICD9CM|Nonspecific abnormal electromyogram [EMG]|Nonspecific abnormal electromyogram [EMG] +C0159110|T033|AB|794.19|ICD9CM|Abn periph nerv stud NEC|Abn periph nerv stud NEC +C0159110|T033|PT|794.19|ICD9CM|Other nonspecific abnormal results of function study of peripheral nervous system and special senses|Other nonspecific abnormal results of function study of peripheral nervous system and special senses +C0476405|T033|AB|794.2|ICD9CM|Abn pulmonary func study|Abn pulmonary func study +C0476405|T033|PT|794.2|ICD9CM|Nonspecific abnormal results of pulmonary function study|Nonspecific abnormal results of pulmonary function study +C0476409|T033|HT|794.3|ICD9CM|Nonspecific abnormal results of function study, cardiovascular|Nonspecific abnormal results of function study, cardiovascular +C0476409|T033|AB|794.30|ICD9CM|Abn cardiovasc study NOS|Abn cardiovasc study NOS +C0476409|T033|PT|794.30|ICD9CM|Abnormal cardiovascular function study, unspecified|Abnormal cardiovascular function study, unspecified +C0236140|T033|AB|794.31|ICD9CM|Abnorm electrocardiogram|Abnorm electrocardiogram +C0236140|T033|PT|794.31|ICD9CM|Nonspecific abnormal electrocardiogram [ECG] [EKG]|Nonspecific abnormal electrocardiogram [ECG] [EKG] +C2711989|T033|AB|794.39|ICD9CM|Abn cardiovasc study NEC|Abn cardiovasc study NEC +C2711989|T033|PT|794.39|ICD9CM|Other nonspecific abnormal results of function study of cardiovascular system|Other nonspecific abnormal results of function study of cardiovascular system +C0236151|T033|AB|794.4|ICD9CM|Abn kidney funct study|Abn kidney funct study +C0236151|T033|PT|794.4|ICD9CM|Nonspecific abnormal results of function study of kidney|Nonspecific abnormal results of function study of kidney +C0476414|T033|AB|794.5|ICD9CM|Abn thyroid funct study|Abn thyroid funct study +C0476414|T033|PT|794.5|ICD9CM|Nonspecific abnormal results of function study of thyroid|Nonspecific abnormal results of function study of thyroid +C0159117|T033|AB|794.6|ICD9CM|Abn endocrine study NEC|Abn endocrine study NEC +C0159117|T033|PT|794.6|ICD9CM|Nonspecific abnormal results of other endocrine function study|Nonspecific abnormal results of other endocrine function study +C0159118|T033|AB|794.7|ICD9CM|Abn basal metabol study|Abn basal metabol study +C0159118|T033|PT|794.7|ICD9CM|Nonspecific abnormal results of function study of basal metabolism|Nonspecific abnormal results of function study of basal metabolism +C0151766|T033|AB|794.8|ICD9CM|Abn liver function study|Abn liver function study +C0151766|T033|PT|794.8|ICD9CM|Nonspecific abnormal results of function study of liver|Nonspecific abnormal results of function study of liver +C0159120|T033|AB|794.9|ICD9CM|Abn function study NEC|Abn function study NEC +C0159120|T033|PT|794.9|ICD9CM|Nonspecific abnormal results of other specified function study|Nonspecific abnormal results of other specified function study +C1455902|T033|HT|795|ICD9CM|Other and nonspecific abnormal cytological, histological, immunological and DNA test findings|Other and nonspecific abnormal cytological, histological, immunological and DNA test findings +C1455899|T033|HT|795.0|ICD9CM|Abnormal Papanicolaou smear of cervix and cervical HPV|Abnormal Papanicolaou smear of cervix and cervical HPV +C1455885|T033|AB|795.00|ICD9CM|Abn glandular pap smear|Abn glandular pap smear +C1455885|T033|PT|795.00|ICD9CM|Abnormal glandular Papanicolaou smear of cervix|Abnormal glandular Papanicolaou smear of cervix +C1455889|T033|AB|795.01|ICD9CM|Pap smear (ASC-US)|Pap smear (ASC-US) +C1455889|T033|PT|795.01|ICD9CM|Papanicolaou smear of cervix with atypical squamous cells of undetermined significance (ASC-US)|Papanicolaou smear of cervix with atypical squamous cells of undetermined significance (ASC-US) +C1455890|T033|AB|795.02|ICD9CM|Pap smear (ASC-H)|Pap smear (ASC-H) +C1455891|T033|AB|795.03|ICD9CM|Pap smear cervix w LGSIL|Pap smear cervix w LGSIL +C1455891|T033|PT|795.03|ICD9CM|Papanicolaou smear of cervix with low grade squamous intraepithelial lesion (LGSIL)|Papanicolaou smear of cervix with low grade squamous intraepithelial lesion (LGSIL) +C1455892|T033|AB|795.04|ICD9CM|Pap smear cervix w HGSIL|Pap smear cervix w HGSIL +C1455892|T033|PT|795.04|ICD9CM|Papanicolaou smear of cervix with high grade squamous intraepithelial lesion (HGSIL)|Papanicolaou smear of cervix with high grade squamous intraepithelial lesion (HGSIL) +C1455894|T033|AB|795.05|ICD9CM|Cervical (HPV) DNA pos|Cervical (HPV) DNA pos +C1455894|T033|PT|795.05|ICD9CM|Cervical high risk human papillomavirus (HPV) DNA test positive|Cervical high risk human papillomavirus (HPV) DNA test positive +C1719648|T033|AB|795.06|ICD9CM|Pap smr cytol evid malig|Pap smr cytol evid malig +C1719648|T033|PT|795.06|ICD9CM|Papanicolaou smear of cervix with cytologic evidence of malignancy|Papanicolaou smear of cervix with cytologic evidence of malignancy +C2349680|T033|AB|795.07|ICD9CM|Sat cerv smr-no trnsfrm|Sat cerv smr-no trnsfrm +C2349680|T033|PT|795.07|ICD9CM|Satisfactory cervical smear but lacking transformation zone|Satisfactory cervical smear but lacking transformation zone +C2349681|T033|AB|795.08|ICD9CM|Unsat cerv cytlogy smear|Unsat cerv cytlogy smear +C2349681|T033|PT|795.08|ICD9CM|Unsatisfactory cervical cytology smear|Unsatisfactory cervical cytology smear +C1455897|T047|AB|795.09|ICD9CM|Abn pap cervix HPV NEC|Abn pap cervix HPV NEC +C1455897|T047|PT|795.09|ICD9CM|Other abnormal Papanicolaou smear of cervix and cervical HPV|Other abnormal Papanicolaou smear of cervix and cervical HPV +C2349696|T033|HT|795.1|ICD9CM|Abnormal Papanicolaou smear of vagina and vaginal HPV|Abnormal Papanicolaou smear of vagina and vaginal HPV +C2349683|T033|AB|795.10|ICD9CM|Abn gland pap smr vagina|Abn gland pap smr vagina +C2349683|T033|PT|795.10|ICD9CM|Abnormal glandular Papanicolaou smear of vagina|Abnormal glandular Papanicolaou smear of vagina +C2349685|T033|AB|795.11|ICD9CM|Pap smear vag w ASC-US|Pap smear vag w ASC-US +C2349685|T033|PT|795.11|ICD9CM|Papanicolaou smear of vagina with atypical squamous cells of undetermined significance (ASC-US)|Papanicolaou smear of vagina with atypical squamous cells of undetermined significance (ASC-US) +C2349686|T033|AB|795.12|ICD9CM|Pap smear vagina w ASC-H|Pap smear vagina w ASC-H +C2349687|T033|AB|795.13|ICD9CM|Pap smear vagina w LGSIL|Pap smear vagina w LGSIL +C2349687|T033|PT|795.13|ICD9CM|Papanicolaou smear of vagina with low grade squamous intraepithelial lesion (LGSIL)|Papanicolaou smear of vagina with low grade squamous intraepithelial lesion (LGSIL) +C2349688|T033|AB|795.14|ICD9CM|Pap smear vagina w HGSIL|Pap smear vagina w HGSIL +C2349688|T033|PT|795.14|ICD9CM|Papanicolaou smear of vagina with high grade squamous intraepithelial lesion (HGSIL)|Papanicolaou smear of vagina with high grade squamous intraepithelial lesion (HGSIL) +C2349689|T033|AB|795.15|ICD9CM|Vag hi risk HPV-DNA pos|Vag hi risk HPV-DNA pos +C2349689|T033|PT|795.15|ICD9CM|Vaginal high risk human papillomavirus (HPV) DNA test positive|Vaginal high risk human papillomavirus (HPV) DNA test positive +C2349690|T033|AB|795.16|ICD9CM|Pap smr vag-cytol malig|Pap smr vag-cytol malig +C2349690|T033|PT|795.16|ICD9CM|Papanicolaou smear of vagina with cytologic evidence of malignancy|Papanicolaou smear of vagina with cytologic evidence of malignancy +C2830555|T033|PT|795.18|ICD9CM|Unsatisfactory vaginal cytology smear|Unsatisfactory vaginal cytology smear +C2830555|T033|AB|795.18|ICD9CM|Vaginl cytol smr unsatis|Vaginl cytol smr unsatis +C2349693|T033|AB|795.19|ICD9CM|Oth abn Pap smr vag/HPV|Oth abn Pap smr vag/HPV +C2349693|T033|PT|795.19|ICD9CM|Other abnormal Papanicolaou smear of vagina and vaginal HPV|Other abnormal Papanicolaou smear of vagina and vaginal HPV +C0476431|T033|AB|795.2|ICD9CM|Abn chromosomal analysis|Abn chromosomal analysis +C0476431|T033|PT|795.2|ICD9CM|Nonspecific abnormal findings on chromosomal analysis|Nonspecific abnormal findings on chromosomal analysis +C0159125|T033|HT|795.3|ICD9CM|Nonspecific positive culture findings|Nonspecific positive culture findings +C1135260|T047|AB|795.31|ICD9CM|Nonsp postv find-anthrax|Nonsp postv find-anthrax +C1135260|T047|PT|795.31|ICD9CM|Nonspecific positive findings for anthrax|Nonspecific positive findings for anthrax +C1135261|T047|AB|795.39|ICD9CM|Nonsp positive cult NEC|Nonsp positive cult NEC +C1135261|T047|PT|795.39|ICD9CM|Other nonspecific positive culture findings|Other nonspecific positive culture findings +C0159126|T033|AB|795.4|ICD9CM|Abn histologic find NEC|Abn histologic find NEC +C0159126|T033|PT|795.4|ICD9CM|Other nonspecific abnormal histological findings|Other nonspecific abnormal histological findings +C3161127|T033|HT|795.5|ICD9CM|Nonspecific reaction to tuberculin skin test without active tuberculosis|Nonspecific reaction to tuberculin skin test without active tuberculosis +C3161127|T033|AB|795.51|ICD9CM|Nonsp rea skn test wo tb|Nonsp rea skn test wo tb +C3161127|T033|PT|795.51|ICD9CM|Nonspecific reaction to tuberculin skin test without active tuberculosis|Nonspecific reaction to tuberculin skin test without active tuberculosis +C3161128|T033|AB|795.52|ICD9CM|Nonsp rea gma interferon|Nonsp rea gma interferon +C0159128|T033|AB|795.6|ICD9CM|False pos sero test-syph|False pos sero test-syph +C0159128|T033|PT|795.6|ICD9CM|False positive serological test for syphilis|False positive serological test for syphilis +C0375580|T033|HT|795.7|ICD9CM|Other nonspecific immunological findings|Other nonspecific immunological findings +C0375580|T033|AB|795.79|ICD9CM|Oth unspcf nspf imun fnd|Oth unspcf nspf imun fnd +C0375580|T033|PT|795.79|ICD9CM|Other and unspecified nonspecific immunological findings|Other and unspecified nonspecific immunological findings +C1719651|T033|HT|795.8|ICD9CM|Abnormal tumor markers|Abnormal tumor markers +C1719649|T033|AB|795.81|ICD9CM|Elev ca-embryoic antigen|Elev ca-embryoic antigen +C1719649|T033|PT|795.81|ICD9CM|Elevated carcinoembryonic antigen [CEA]|Elevated carcinoembryonic antigen [CEA] +C0238875|T033|AB|795.82|ICD9CM|Elev ca antigen 125|Elev ca antigen 125 +C0238875|T033|PT|795.82|ICD9CM|Elevated cancer antigen 125 [CA 125]|Elevated cancer antigen 125 [CA 125] +C1719650|T033|AB|795.89|ICD9CM|Abnorml tumor marker NEC|Abnorml tumor marker NEC +C1719650|T033|PT|795.89|ICD9CM|Other abnormal tumor markers|Other abnormal tumor markers +C0159131|T033|HT|796|ICD9CM|Other nonspecific abnormal findings|Other nonspecific abnormal findings +C0159132|T033|AB|796.0|ICD9CM|Abn toxicologic finding|Abn toxicologic finding +C0159132|T033|PT|796.0|ICD9CM|Nonspecific abnormal toxicological findings|Nonspecific abnormal toxicological findings +C0034933|T033|AB|796.1|ICD9CM|Abnormal reflex|Abnormal reflex +C0034933|T033|PT|796.1|ICD9CM|Abnormal reflex|Abnormal reflex +C0392682|T033|AB|796.2|ICD9CM|Elev bl pres w/o hypertn|Elev bl pres w/o hypertn +C0392682|T033|PT|796.2|ICD9CM|Elevated blood pressure reading without diagnosis of hypertension|Elevated blood pressure reading without diagnosis of hypertension +C0476454|T033|AB|796.3|ICD9CM|Low blood press reading|Low blood press reading +C0476454|T033|PT|796.3|ICD9CM|Nonspecific low blood pressure reading|Nonspecific low blood pressure reading +C0159135|T033|AB|796.4|ICD9CM|Abn clinical finding NEC|Abn clinical finding NEC +C0159135|T033|PT|796.4|ICD9CM|Other abnormal clinical findings|Other abnormal clinical findings +C0490012|T033|AB|796.5|ICD9CM|Abn find antenatl screen|Abn find antenatl screen +C0490012|T033|PT|796.5|ICD9CM|Abnormal finding on antenatal screening|Abnormal finding on antenatal screening +C1455903|T033|AB|796.6|ICD9CM|Abnorm neonate screening|Abnorm neonate screening +C1455903|T033|PT|796.6|ICD9CM|Abnormal findings on neonatal screening|Abnormal findings on neonatal screening +C2349713|T033|HT|796.7|ICD9CM|Abnormal cytologic smear of anus and anal HPV|Abnormal cytologic smear of anus and anal HPV +C2349699|T033|AB|796.70|ICD9CM|Abn gland pap smear anus|Abn gland pap smear anus +C2349699|T033|PT|796.70|ICD9CM|Abnormal glandular Papanicolaou smear of anus|Abnormal glandular Papanicolaou smear of anus +C2349701|T033|AB|796.71|ICD9CM|Pap smear anus w ASC-US|Pap smear anus w ASC-US +C2349701|T033|PT|796.71|ICD9CM|Papanicolaou smear of anus with atypical squamous cells of undetermined significance (ASC-US)|Papanicolaou smear of anus with atypical squamous cells of undetermined significance (ASC-US) +C2349702|T033|AB|796.72|ICD9CM|Pap smear anus w ASC-H|Pap smear anus w ASC-H +C2349703|T033|AB|796.73|ICD9CM|Pap smear anus w LGSIL|Pap smear anus w LGSIL +C2349703|T033|PT|796.73|ICD9CM|Papanicolaou smear of anus with low grade squamous intraepithelial lesion (LGSIL)|Papanicolaou smear of anus with low grade squamous intraepithelial lesion (LGSIL) +C2349704|T033|AB|796.74|ICD9CM|Pap smear anus w HGSIL|Pap smear anus w HGSIL +C2349704|T033|PT|796.74|ICD9CM|Papanicolaou smear of anus with high grade squamous intraepithelial lesion (HGSIL)|Papanicolaou smear of anus with high grade squamous intraepithelial lesion (HGSIL) +C2349705|T033|AB|796.75|ICD9CM|Anal hi risk HPV-DNA pos|Anal hi risk HPV-DNA pos +C2349705|T033|PT|796.75|ICD9CM|Anal high risk human papillomavirus (HPV) DNA test positive|Anal high risk human papillomavirus (HPV) DNA test positive +C2349706|T033|AB|796.76|ICD9CM|Pap smr anus-cytol malig|Pap smr anus-cytol malig +C2349706|T033|PT|796.76|ICD9CM|Papanicolaou smear of anus with cytologic evidence of malignancy|Papanicolaou smear of anus with cytologic evidence of malignancy +C2349707|T033|AB|796.77|ICD9CM|Sat anal smr-no trnsfrm|Sat anal smr-no trnsfrm +C2349707|T033|PT|796.77|ICD9CM|Satisfactory anal smear but lacking transformation zone|Satisfactory anal smear but lacking transformation zone +C2349708|T033|AB|796.78|ICD9CM|Anal cytolgy smr unsatis|Anal cytolgy smr unsatis +C2349708|T033|PT|796.78|ICD9CM|Unsatisfactory anal cytology smear|Unsatisfactory anal cytology smear +C2349710|T033|AB|796.79|ICD9CM|Oth abn Pap smr anus/HPV|Oth abn Pap smr anus/HPV +C2349710|T033|PT|796.79|ICD9CM|Other abnormal Papanicolaou smear of anus and anal HPV|Other abnormal Papanicolaou smear of anus and anal HPV +C0159131|T033|AB|796.9|ICD9CM|Abnormal findings NEC|Abnormal findings NEC +C0159131|T033|PT|796.9|ICD9CM|Other nonspecific abnormal findings|Other nonspecific abnormal findings +C0036654|T048|AB|797|ICD9CM|Senility w/o psychosis|Senility w/o psychosis +C0036654|T048|PT|797|ICD9CM|Senility without mention of psychosis|Senility without mention of psychosis +C0362047|T033|HT|797-799.99|ICD9CM|ILL-DEFINED AND UNKNOWN CAUSES OF MORBIDITY AND MORTALITY|ILL-DEFINED AND UNKNOWN CAUSES OF MORBIDITY AND MORTALITY +C0520806|T033|HT|798|ICD9CM|Sudden death, cause unknown|Sudden death, cause unknown +C0038644|T047|AB|798.0|ICD9CM|Sudden infant death synd|Sudden infant death synd +C0038644|T047|PT|798.0|ICD9CM|Sudden infant death syndrome|Sudden infant death syndrome +C0021614|T046|AB|798.1|ICD9CM|Instantaneous death|Instantaneous death +C0021614|T046|PT|798.1|ICD9CM|Instantaneous death|Instantaneous death +C0277590|T033|PT|798.2|ICD9CM|Death occurring in less than 24 hours from onset of symptoms, not otherwise explained|Death occurring in less than 24 hours from onset of symptoms, not otherwise explained +C0277590|T033|AB|798.2|ICD9CM|Death within 24 hr sympt|Death within 24 hr sympt +C0152229|T033|AB|798.9|ICD9CM|Unattended death|Unattended death +C0152229|T033|PT|798.9|ICD9CM|Unattended death|Unattended death +C0159138|T033|HT|799|ICD9CM|Other ill-defined and unknown causes of morbidity and mortality|Other ill-defined and unknown causes of morbidity and mortality +C1561822|T046|HT|799.0|ICD9CM|Asphyxia and hypoxemia|Asphyxia and hypoxemia +C0004044|T046|AB|799.01|ICD9CM|Asphyxia|Asphyxia +C0004044|T046|PT|799.01|ICD9CM|Asphyxia|Asphyxia +C0700292|T033|PT|799.02|ICD9CM|Hypoxemia|Hypoxemia +C0700292|T033|AB|799.02|ICD9CM|Hypoxemia|Hypoxemia +C0162297|T046|AB|799.1|ICD9CM|Respiratory arrest|Respiratory arrest +C0162297|T046|PT|799.1|ICD9CM|Respiratory arrest|Respiratory arrest +C0495691|T184|HT|799.2|ICD9CM|Signs and symptoms involving emotional state|Signs and symptoms involving emotional state +C0027769|T184|AB|799.21|ICD9CM|Nervousness|Nervousness +C0027769|T184|PT|799.21|ICD9CM|Nervousness|Nervousness +C0022107|T033|AB|799.22|ICD9CM|Irritability|Irritability +C0022107|T033|PT|799.22|ICD9CM|Irritability|Irritability +C0564567|T048|AB|799.23|ICD9CM|Impulsiveness|Impulsiveness +C0564567|T048|PT|799.23|ICD9CM|Impulsiveness|Impulsiveness +C0085633|T048|AB|799.24|ICD9CM|Emotional lability|Emotional lability +C0085633|T048|PT|799.24|ICD9CM|Emotional lability|Emotional lability +C0476478|T184|AB|799.25|ICD9CM|Demoralization & apathy|Demoralization & apathy +C0476478|T184|PT|799.25|ICD9CM|Demoralization and apathy|Demoralization and apathy +C0478140|T184|AB|799.29|ICD9CM|Emotional state sym NEC|Emotional state sym NEC +C0478140|T184|PT|799.29|ICD9CM|Other signs and symptoms involving emotional state|Other signs and symptoms involving emotional state +C3714552|T184|AB|799.3|ICD9CM|Debility NOS|Debility NOS +C3714552|T184|PT|799.3|ICD9CM|Debility, unspecified|Debility, unspecified +C0006625|T184|AB|799.4|ICD9CM|Cachexia|Cachexia +C0006625|T184|PT|799.4|ICD9CM|Cachexia|Cachexia +C2921135|T184|HT|799.5|ICD9CM|Signs and symptoms involving cognition|Signs and symptoms involving cognition +C2921136|T184|PT|799.51|ICD9CM|Attention or concentration deficit|Attention or concentration deficit +C2921136|T184|AB|799.51|ICD9CM|Attn/concentrate deficit|Attn/concentrate deficit +C2921137|T184|AB|799.52|ICD9CM|Cog communicate deficit|Cog communicate deficit +C2921137|T184|PT|799.52|ICD9CM|Cognitive communication deficit|Cognitive communication deficit +C2921138|T184|AB|799.53|ICD9CM|Visuospatial deficit|Visuospatial deficit +C2921138|T184|PT|799.53|ICD9CM|Visuospatial deficit|Visuospatial deficit +C2921139|T033|PT|799.54|ICD9CM|Psychomotor deficit|Psychomotor deficit +C2921139|T033|AB|799.54|ICD9CM|Psychomotor deficit|Psychomotor deficit +C2921140|T184|PT|799.55|ICD9CM|Frontal lobe and executive function deficit|Frontal lobe and executive function deficit +C2921140|T184|AB|799.55|ICD9CM|Frontal lobe deficit|Frontal lobe deficit +C2921141|T184|AB|799.59|ICD9CM|Cognition sign/sympt NEC|Cognition sign/sympt NEC +C2921141|T184|PT|799.59|ICD9CM|Other signs and symptoms involving cognition|Other signs and symptoms involving cognition +C0277538|T046|HT|799.8|ICD9CM|Other ill-defined conditions|Other ill-defined conditions +C0011124|T033|AB|799.81|ICD9CM|Decreased libido|Decreased libido +C0011124|T033|PT|799.81|ICD9CM|Decreased libido|Decreased libido +C2712370|T047|AB|799.82|ICD9CM|Appar life threat-infant|Appar life threat-infant +C2712370|T047|PT|799.82|ICD9CM|Apparent life threatening event in infant|Apparent life threatening event in infant +C0277538|T046|AB|799.89|ICD9CM|Ill-define condition NEC|Ill-define condition NEC +C0277538|T046|PT|799.89|ICD9CM|Other ill-defined conditions|Other ill-defined conditions +C0476465|T033|PT|799.9|ICD9CM|Other unknown and unspecified cause of morbidity and mortality|Other unknown and unspecified cause of morbidity and mortality +C0476465|T033|AB|799.9|ICD9CM|Unkn cause morb/mort NEC|Unkn cause morb/mort NEC +C0159139|T037|HT|800|ICD9CM|Fracture of vault of skull|Fracture of vault of skull +C0037304|T037|HT|800-804.99|ICD9CM|FRACTURE OF SKULL|FRACTURE OF SKULL +C0016658|T037|HT|800-829.99|ICD9CM|FRACTURES|FRACTURES +C0178314|T037|HT|800-999.99|ICD9CM|INJURY AND POISONING|INJURY AND POISONING +C0159140|T037|HT|800.0|ICD9CM|Closed fracture of vault of skull without mention of intracranial injury|Closed fracture of vault of skull without mention of intracranial injury +C0159141|T037|AB|800.00|ICD9CM|Closed skull vault fx|Closed skull vault fx +C0159142|T037|AB|800.01|ICD9CM|Cl skull vlt fx w/o coma|Cl skull vlt fx w/o coma +C0159143|T037|AB|800.02|ICD9CM|Cl skull vlt fx-brf coma|Cl skull vlt fx-brf coma +C0159144|T037|AB|800.03|ICD9CM|Cl skull vlt fx-mod coma|Cl skull vlt fx-mod coma +C0159145|T037|AB|800.04|ICD9CM|Cl skl vlt fx-proln coma|Cl skl vlt fx-proln coma +C0159146|T037|AB|800.05|ICD9CM|Cl skul vlt fx-deep coma|Cl skul vlt fx-deep coma +C0159147|T037|AB|800.06|ICD9CM|Cl skull vlt fx-coma NOS|Cl skull vlt fx-coma NOS +C0159148|T037|AB|800.09|ICD9CM|Cl skl vlt fx-concus NOS|Cl skl vlt fx-concus NOS +C0159149|T037|HT|800.1|ICD9CM|Closed fracture of vault of skull with cerebral laceration and contusion|Closed fracture of vault of skull with cerebral laceration and contusion +C0159150|T037|AB|800.10|ICD9CM|Cl skl vlt fx/cerebr lac|Cl skl vlt fx/cerebr lac +C0159151|T037|AB|800.11|ICD9CM|Cl skull vlt fx w/o coma|Cl skull vlt fx w/o coma +C0159152|T037|AB|800.12|ICD9CM|Cl skull vlt fx-brf coma|Cl skull vlt fx-brf coma +C0159153|T037|AB|800.13|ICD9CM|Cl skull vlt fx-mod coma|Cl skull vlt fx-mod coma +C0159154|T037|AB|800.14|ICD9CM|Cl skl vlt fx-proln coma|Cl skl vlt fx-proln coma +C0159155|T037|AB|800.15|ICD9CM|Cl skul vlt fx-deep coma|Cl skul vlt fx-deep coma +C0159156|T037|AB|800.16|ICD9CM|Cl skull vlt fx-coma NOS|Cl skull vlt fx-coma NOS +C0375581|T037|AB|800.19|ICD9CM|Cl skl vlt fx-concus NOS|Cl skl vlt fx-concus NOS +C0159158|T037|HT|800.2|ICD9CM|Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage|Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage +C0159159|T037|AB|800.20|ICD9CM|Cl skl vlt fx/mening hem|Cl skl vlt fx/mening hem +C0159160|T037|AB|800.21|ICD9CM|Cl skull vlt fx w/o coma|Cl skull vlt fx w/o coma +C0159161|T037|AB|800.22|ICD9CM|Cl skull vlt fx-brf coma|Cl skull vlt fx-brf coma +C0159162|T037|AB|800.23|ICD9CM|Cl skull vlt fx-mod coma|Cl skull vlt fx-mod coma +C0159163|T037|AB|800.24|ICD9CM|Cl skl vlt fx-proln coma|Cl skl vlt fx-proln coma +C0159164|T037|AB|800.25|ICD9CM|Cl skul vlt fx-deep coma|Cl skul vlt fx-deep coma +C0159165|T037|AB|800.26|ICD9CM|Cl skull vlt fx-coma NOS|Cl skull vlt fx-coma NOS +C0375582|T037|AB|800.29|ICD9CM|Cl skl vlt fx-concus NOS|Cl skl vlt fx-concus NOS +C0159167|T037|HT|800.3|ICD9CM|Closed fracture of vault of skull with other and unspecified intracranial hemorrhage|Closed fracture of vault of skull with other and unspecified intracranial hemorrhage +C0159168|T037|AB|800.30|ICD9CM|Cl skull vlt fx/hem NEC|Cl skull vlt fx/hem NEC +C0159169|T037|AB|800.31|ICD9CM|Cl skull vlt fx w/o coma|Cl skull vlt fx w/o coma +C0159170|T037|AB|800.32|ICD9CM|Cl skull vlt fx-brf coma|Cl skull vlt fx-brf coma +C0159171|T037|AB|800.33|ICD9CM|Cl skull vlt fx-mod coma|Cl skull vlt fx-mod coma +C0159172|T037|AB|800.34|ICD9CM|Cl skl vlt fx-proln coma|Cl skl vlt fx-proln coma +C0159173|T037|AB|800.35|ICD9CM|Cl skul vlt fx-deep coma|Cl skul vlt fx-deep coma +C0159174|T037|AB|800.36|ICD9CM|Cl skull vlt fx-coma NOS|Cl skull vlt fx-coma NOS +C0375583|T037|AB|800.39|ICD9CM|Cl skl vlt fx-concus NOS|Cl skl vlt fx-concus NOS +C0159176|T037|HT|800.4|ICD9CM|Closed fracture of vault of skull with intracranial injury of other and unspecified nature|Closed fracture of vault of skull with intracranial injury of other and unspecified nature +C0159177|T037|AB|800.40|ICD9CM|Cl skl vlt fx/br inj NEC|Cl skl vlt fx/br inj NEC +C0159178|T037|AB|800.41|ICD9CM|Cl skull vlt fx w/o coma|Cl skull vlt fx w/o coma +C0159179|T037|AB|800.42|ICD9CM|Cl skull vlt fx-brf coma|Cl skull vlt fx-brf coma +C0159180|T037|AB|800.43|ICD9CM|Cl skull vlt fx-mod coma|Cl skull vlt fx-mod coma +C0159181|T037|AB|800.44|ICD9CM|Cl skl vlt fx-proln coma|Cl skl vlt fx-proln coma +C0159182|T037|AB|800.45|ICD9CM|Cl skul vlt fx-deep coma|Cl skul vlt fx-deep coma +C0159183|T037|AB|800.46|ICD9CM|Cl skull vlt fx-coma NOS|Cl skull vlt fx-coma NOS +C0159184|T037|AB|800.49|ICD9CM|Cl skl vlt fx-concus NOS|Cl skl vlt fx-concus NOS +C0159185|T037|HT|800.5|ICD9CM|Open fracture of vault of skull without mention of intracranial injury|Open fracture of vault of skull without mention of intracranial injury +C0159186|T037|AB|800.50|ICD9CM|Opn skull vault fracture|Opn skull vault fracture +C0159187|T037|AB|800.51|ICD9CM|Opn skul vlt fx w/o coma|Opn skul vlt fx w/o coma +C0159188|T037|AB|800.52|ICD9CM|Opn skul vlt fx-brf coma|Opn skul vlt fx-brf coma +C0159189|T037|AB|800.53|ICD9CM|Opn skul vlt fx-mod coma|Opn skul vlt fx-mod coma +C0159190|T037|AB|800.54|ICD9CM|Opn skl vlt fx-proln com|Opn skl vlt fx-proln com +C0159191|T037|AB|800.55|ICD9CM|Opn skl vlt fx-deep coma|Opn skl vlt fx-deep coma +C0159192|T037|AB|800.56|ICD9CM|Opn skul vlt fx-coma NOS|Opn skul vlt fx-coma NOS +C0159193|T037|AB|800.59|ICD9CM|Op skl vlt fx-concus NOS|Op skl vlt fx-concus NOS +C0159193|T037|PT|800.59|ICD9CM|Open fracture of vault of skull without mention of intracranial injury, with concussion, unspecified|Open fracture of vault of skull without mention of intracranial injury, with concussion, unspecified +C0159194|T037|HT|800.6|ICD9CM|Open fracture of vault of skull with cerebral laceration and contusion|Open fracture of vault of skull with cerebral laceration and contusion +C0159195|T037|AB|800.60|ICD9CM|Opn skl vlt fx/cereb lac|Opn skl vlt fx/cereb lac +C0159196|T037|AB|800.61|ICD9CM|Opn skul vlt fx w/o coma|Opn skul vlt fx w/o coma +C0159197|T037|AB|800.62|ICD9CM|Opn skul vlt fx-brf coma|Opn skul vlt fx-brf coma +C0159198|T037|AB|800.63|ICD9CM|Opn skul vlt fx-mod coma|Opn skul vlt fx-mod coma +C0159199|T037|AB|800.64|ICD9CM|Opn skl vlt fx-proln com|Opn skl vlt fx-proln com +C0159200|T037|AB|800.65|ICD9CM|Opn skl vlt fx-deep coma|Opn skl vlt fx-deep coma +C0159201|T037|AB|800.66|ICD9CM|Opn skul vlt fx-coma NOS|Opn skul vlt fx-coma NOS +C0375585|T037|AB|800.69|ICD9CM|Op skl vlt fx-concus NOS|Op skl vlt fx-concus NOS +C0375585|T037|PT|800.69|ICD9CM|Open fracture of vault of skull with cerebral laceration and contusion, with concussion, unspecified|Open fracture of vault of skull with cerebral laceration and contusion, with concussion, unspecified +C0159203|T037|HT|800.7|ICD9CM|Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage|Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage +C0159204|T037|AB|800.70|ICD9CM|Opn skl vlt fx/menin hem|Opn skl vlt fx/menin hem +C0159205|T037|AB|800.71|ICD9CM|Opn skul vlt fx w/o coma|Opn skul vlt fx w/o coma +C0159206|T037|AB|800.72|ICD9CM|Opn skul vlt fx-brf coma|Opn skul vlt fx-brf coma +C0159207|T037|AB|800.73|ICD9CM|Opn skul vlt fx-mod coma|Opn skul vlt fx-mod coma +C0159208|T037|AB|800.74|ICD9CM|Opn skl vlt fx-proln com|Opn skl vlt fx-proln com +C0159209|T037|AB|800.75|ICD9CM|Opn skl vlt fx-deep coma|Opn skl vlt fx-deep coma +C0159210|T037|AB|800.76|ICD9CM|Opn skul vlt fx-coma NOS|Opn skul vlt fx-coma NOS +C0375586|T037|AB|800.79|ICD9CM|Op skl vlt fx-concus NOS|Op skl vlt fx-concus NOS +C0159212|T037|HT|800.8|ICD9CM|Open fracture of vault of skull with other and unspecified intracranial hemorrhage|Open fracture of vault of skull with other and unspecified intracranial hemorrhage +C0159213|T037|AB|800.80|ICD9CM|Opn skull vlt fx/hem NEC|Opn skull vlt fx/hem NEC +C0159214|T037|AB|800.81|ICD9CM|Opn skul vlt fx w/o coma|Opn skul vlt fx w/o coma +C0159215|T037|AB|800.82|ICD9CM|Opn skul vlt fx-brf coma|Opn skul vlt fx-brf coma +C0159216|T037|AB|800.83|ICD9CM|Opn skul vlt fx-mod coma|Opn skul vlt fx-mod coma +C0159217|T037|AB|800.84|ICD9CM|Opn skl vlt fx-proln com|Opn skl vlt fx-proln com +C0159218|T037|AB|800.85|ICD9CM|Opn skl vlt fx-deep coma|Opn skl vlt fx-deep coma +C0159219|T037|AB|800.86|ICD9CM|Opn skul vlt fx-coma NOS|Opn skul vlt fx-coma NOS +C0375587|T037|AB|800.89|ICD9CM|Op skl vlt fx-concus NOS|Op skl vlt fx-concus NOS +C0159221|T037|HT|800.9|ICD9CM|Open fracture of vault of skull with intracranial injury of other and unspecified nature|Open fracture of vault of skull with intracranial injury of other and unspecified nature +C0159222|T037|AB|800.90|ICD9CM|Op skl vlt fx/br inj NEC|Op skl vlt fx/br inj NEC +C0159223|T037|AB|800.91|ICD9CM|Opn skul vlt fx w/o coma|Opn skul vlt fx w/o coma +C0159224|T037|AB|800.92|ICD9CM|Opn skul vlt fx-brf coma|Opn skul vlt fx-brf coma +C0159225|T037|AB|800.93|ICD9CM|Opn skul vlt fx-mod coma|Opn skul vlt fx-mod coma +C0159226|T037|AB|800.94|ICD9CM|Opn skl vlt fx-proln com|Opn skl vlt fx-proln com +C0159227|T037|AB|800.95|ICD9CM|Op skul vlt fx-deep coma|Op skul vlt fx-deep coma +C0159228|T037|AB|800.96|ICD9CM|Opn skul vlt fx-coma NOS|Opn skul vlt fx-coma NOS +C0159229|T037|AB|800.99|ICD9CM|Op skl vlt fx-concus NOS|Op skl vlt fx-concus NOS +C0748830|T037|HT|801|ICD9CM|Fracture of base of skull|Fracture of base of skull +C0435271|T037|HT|801.0|ICD9CM|Closed fracture of base of skull without mention of intracranial injury|Closed fracture of base of skull without mention of intracranial injury +C0159232|T037|AB|801.00|ICD9CM|Clos skull base fracture|Clos skull base fracture +C0159233|T037|AB|801.01|ICD9CM|Cl skul base fx w/o coma|Cl skul base fx w/o coma +C0159234|T037|AB|801.02|ICD9CM|Cl skul base fx-brf coma|Cl skul base fx-brf coma +C0159235|T037|AB|801.03|ICD9CM|Cl skul base fx-mod coma|Cl skul base fx-mod coma +C0159236|T037|AB|801.04|ICD9CM|Cl skl base fx-prol coma|Cl skl base fx-prol coma +C0159237|T037|AB|801.05|ICD9CM|Cl skl base fx-deep coma|Cl skl base fx-deep coma +C0159238|T037|AB|801.06|ICD9CM|Cl skul base fx-coma NOS|Cl skul base fx-coma NOS +C0159239|T037|AB|801.09|ICD9CM|Cl skull base fx-concuss|Cl skull base fx-concuss +C0159240|T037|HT|801.1|ICD9CM|Closed fracture of base of skull with cerebral laceration and contusion|Closed fracture of base of skull with cerebral laceration and contusion +C0159241|T037|AB|801.10|ICD9CM|Cl skl base fx/cereb lac|Cl skl base fx/cereb lac +C0159242|T037|AB|801.11|ICD9CM|Cl skul base fx w/o coma|Cl skul base fx w/o coma +C0159243|T037|AB|801.12|ICD9CM|Cl skul base fx-brf coma|Cl skul base fx-brf coma +C0159244|T037|AB|801.13|ICD9CM|Cl skul base fx-mod coma|Cl skul base fx-mod coma +C0159245|T037|AB|801.14|ICD9CM|Cl skl base fx-prol coma|Cl skl base fx-prol coma +C0159246|T037|AB|801.15|ICD9CM|Cl skl base fx-deep coma|Cl skl base fx-deep coma +C0159247|T037|AB|801.16|ICD9CM|Cl skul base fx-coma NOS|Cl skul base fx-coma NOS +C0375589|T037|AB|801.19|ICD9CM|Cl skull base fx-concuss|Cl skull base fx-concuss +C0159249|T037|HT|801.2|ICD9CM|Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage|Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage +C0159250|T037|AB|801.20|ICD9CM|Cl skl base fx/menin hem|Cl skl base fx/menin hem +C0159251|T037|AB|801.21|ICD9CM|Cl skul base fx w/o coma|Cl skul base fx w/o coma +C0159252|T037|AB|801.22|ICD9CM|Cl skul base fx/brf coma|Cl skul base fx/brf coma +C0159253|T037|AB|801.23|ICD9CM|Cl skul base fx-mod coma|Cl skul base fx-mod coma +C0159254|T037|AB|801.24|ICD9CM|Cl skl base fx-prol coma|Cl skl base fx-prol coma +C0159255|T037|AB|801.25|ICD9CM|Cl skl base fx-deep coma|Cl skl base fx-deep coma +C0159256|T037|AB|801.26|ICD9CM|Cl skul base fx-coma NOS|Cl skul base fx-coma NOS +C0375590|T037|AB|801.29|ICD9CM|Cl skull base fx-concuss|Cl skull base fx-concuss +C0159258|T037|HT|801.3|ICD9CM|Closed fracture of base of skull with other and unspecified intracranial hemorrhage|Closed fracture of base of skull with other and unspecified intracranial hemorrhage +C0159259|T037|AB|801.30|ICD9CM|Cl skull base fx/hem NEC|Cl skull base fx/hem NEC +C0159260|T037|AB|801.31|ICD9CM|Cl skul base fx w/o coma|Cl skul base fx w/o coma +C0159261|T037|AB|801.32|ICD9CM|Cl skul base fx-brf coma|Cl skul base fx-brf coma +C0159262|T037|AB|801.33|ICD9CM|Cl skul base fx-mod coma|Cl skul base fx-mod coma +C0159263|T037|AB|801.34|ICD9CM|Cl skl base fx-prol coma|Cl skl base fx-prol coma +C0159264|T037|AB|801.35|ICD9CM|Cl skl base fx-deep coma|Cl skl base fx-deep coma +C0159265|T037|AB|801.36|ICD9CM|Cl skul base fx-coma NOS|Cl skul base fx-coma NOS +C0375591|T037|AB|801.39|ICD9CM|Cl skull base fx-concuss|Cl skull base fx-concuss +C0159267|T037|HT|801.4|ICD9CM|Closed fracture of base of skull with intracranial injury of other and unspecified nature|Closed fracture of base of skull with intracranial injury of other and unspecified nature +C0159268|T037|AB|801.40|ICD9CM|Cl sk base fx/br inj NEC|Cl sk base fx/br inj NEC +C0159269|T037|AB|801.41|ICD9CM|Cl skul base fx w/o coma|Cl skul base fx w/o coma +C0159270|T037|AB|801.42|ICD9CM|Cl skul base fx-brf coma|Cl skul base fx-brf coma +C0159271|T037|AB|801.43|ICD9CM|Cl skul base fx-mod coma|Cl skul base fx-mod coma +C0159272|T037|AB|801.44|ICD9CM|Cl skl base fx-prol coma|Cl skl base fx-prol coma +C0159273|T037|AB|801.45|ICD9CM|Cl skl base fx-deep coma|Cl skl base fx-deep coma +C0159274|T037|AB|801.46|ICD9CM|Cl skul base fx-coma NOS|Cl skul base fx-coma NOS +C0159275|T037|AB|801.49|ICD9CM|Cl skull base fx-concuss|Cl skull base fx-concuss +C0159276|T037|HT|801.5|ICD9CM|Open fracture of base of skull without mention of intracranial injury|Open fracture of base of skull without mention of intracranial injury +C0159277|T037|AB|801.50|ICD9CM|Open skull base fracture|Open skull base fracture +C0159278|T037|PT|801.51|ICD9CM|Open fracture of base of skull without mention of intracranial injury, with no loss of consciousness|Open fracture of base of skull without mention of intracranial injury, with no loss of consciousness +C0159278|T037|AB|801.51|ICD9CM|Opn skl base fx w/o coma|Opn skl base fx w/o coma +C0159279|T037|AB|801.52|ICD9CM|Opn skl base fx-brf coma|Opn skl base fx-brf coma +C0159280|T037|AB|801.53|ICD9CM|Opn skl base fx-mod coma|Opn skl base fx-mod coma +C0159281|T037|AB|801.54|ICD9CM|Op skl base fx-prol coma|Op skl base fx-prol coma +C0159282|T037|AB|801.55|ICD9CM|Op skl base fx-deep coma|Op skl base fx-deep coma +C0159283|T037|AB|801.56|ICD9CM|Opn skl base fx-coma NOS|Opn skl base fx-coma NOS +C0159284|T037|PT|801.59|ICD9CM|Open fracture of base of skull without mention of intracranial injury, with concussion, unspecified|Open fracture of base of skull without mention of intracranial injury, with concussion, unspecified +C0159284|T037|AB|801.59|ICD9CM|Opn skul base fx-concuss|Opn skul base fx-concuss +C0159285|T037|HT|801.6|ICD9CM|Open fracture of base of skull with cerebral laceration and contusion|Open fracture of base of skull with cerebral laceration and contusion +C0159286|T037|AB|801.60|ICD9CM|Op skl base fx/cereb lac|Op skl base fx/cereb lac +C0159287|T037|PT|801.61|ICD9CM|Open fracture of base of skull with cerebral laceration and contusion, with no loss of consciousness|Open fracture of base of skull with cerebral laceration and contusion, with no loss of consciousness +C0159287|T037|AB|801.61|ICD9CM|Opn skl base fx w/o coma|Opn skl base fx w/o coma +C0159288|T037|AB|801.62|ICD9CM|Opn skl base fx-brf coma|Opn skl base fx-brf coma +C0159289|T037|AB|801.63|ICD9CM|Opn skl base fx-mod coma|Opn skl base fx-mod coma +C0159290|T037|AB|801.64|ICD9CM|Op skl base fx-prol coma|Op skl base fx-prol coma +C0159291|T037|AB|801.65|ICD9CM|Op skl base fx-deep coma|Op skl base fx-deep coma +C0159292|T037|AB|801.66|ICD9CM|Opn skl base fx-coma NOS|Opn skl base fx-coma NOS +C0375593|T037|PT|801.69|ICD9CM|Open fracture of base of skull with cerebral laceration and contusion, with concussion, unspecified|Open fracture of base of skull with cerebral laceration and contusion, with concussion, unspecified +C0375593|T037|AB|801.69|ICD9CM|Opn skul base fx-concuss|Opn skul base fx-concuss +C0159294|T037|HT|801.7|ICD9CM|Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage|Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage +C0159295|T037|AB|801.70|ICD9CM|Op skl base fx/menin hem|Op skl base fx/menin hem +C0159296|T037|AB|801.71|ICD9CM|Opn skl base fx w/o coma|Opn skl base fx w/o coma +C0159297|T037|AB|801.72|ICD9CM|Opn skl base fx-brf coma|Opn skl base fx-brf coma +C0159298|T037|AB|801.73|ICD9CM|Opn skl base fx-mod coma|Opn skl base fx-mod coma +C0159299|T037|AB|801.74|ICD9CM|Op skl base fx-prol coma|Op skl base fx-prol coma +C0159300|T037|AB|801.75|ICD9CM|Op skl base fx-deep coma|Op skl base fx-deep coma +C0159301|T037|AB|801.76|ICD9CM|Opn skl base fx-coma NOS|Opn skl base fx-coma NOS +C0375594|T037|AB|801.79|ICD9CM|Opn skul base fx-concuss|Opn skul base fx-concuss +C0159303|T037|HT|801.8|ICD9CM|Open fracture of base of skull with other and unspecified intracranial hemorrhage|Open fracture of base of skull with other and unspecified intracranial hemorrhage +C0159304|T037|AB|801.80|ICD9CM|Opn skul base fx/hem NEC|Opn skul base fx/hem NEC +C0159305|T037|AB|801.81|ICD9CM|Opn skl base fx w/o coma|Opn skl base fx w/o coma +C0159306|T037|AB|801.82|ICD9CM|Opn skl base fx-brf coma|Opn skl base fx-brf coma +C0159307|T037|AB|801.83|ICD9CM|Opn skl base fx-mod coma|Opn skl base fx-mod coma +C0159308|T037|AB|801.84|ICD9CM|Op skl base fx-prol coma|Op skl base fx-prol coma +C0159309|T037|AB|801.85|ICD9CM|Op skl base fx-deep coma|Op skl base fx-deep coma +C0159310|T037|AB|801.86|ICD9CM|Opn skl base fx-coma NOS|Opn skl base fx-coma NOS +C0375595|T037|AB|801.89|ICD9CM|Opn skul base fx-concuss|Opn skul base fx-concuss +C0159312|T037|HT|801.9|ICD9CM|Open fracture of base of skull with intracranial injury of other and unspecified nature|Open fracture of base of skull with intracranial injury of other and unspecified nature +C0159313|T037|AB|801.90|ICD9CM|Op sk base fx/br inj NEC|Op sk base fx/br inj NEC +C0159314|T037|AB|801.91|ICD9CM|Op skul base fx w/o coma|Op skul base fx w/o coma +C0159315|T037|AB|801.92|ICD9CM|Opn skl base fx-brf coma|Opn skl base fx-brf coma +C0159316|T037|AB|801.93|ICD9CM|Opn skl base fx-mod coma|Opn skl base fx-mod coma +C0159317|T037|AB|801.94|ICD9CM|Op skl base fx-prol coma|Op skl base fx-prol coma +C0159318|T037|AB|801.95|ICD9CM|Op skl base fx-deep coma|Op skl base fx-deep coma +C0159319|T037|AB|801.96|ICD9CM|Opn skl base fx-coma NOS|Opn skl base fx-coma NOS +C0159320|T037|AB|801.99|ICD9CM|Opn skul base fx-concuss|Opn skul base fx-concuss +C0159321|T037|HT|802|ICD9CM|Fracture of face bones|Fracture of face bones +C0159322|T037|PT|802.0|ICD9CM|Closed fracture of nasal bones|Closed fracture of nasal bones +C0159322|T037|AB|802.0|ICD9CM|Nasal bone fx-closed|Nasal bone fx-closed +C0159323|T037|AB|802.1|ICD9CM|Nasal bone fx-open|Nasal bone fx-open +C0159323|T037|PT|802.1|ICD9CM|Open fracture of nasal bones|Open fracture of nasal bones +C0159324|T037|HT|802.2|ICD9CM|Mandible closed fracture|Mandible closed fracture +C0159324|T037|PT|802.20|ICD9CM|Closed fracture of mandible, unspecified site|Closed fracture of mandible, unspecified site +C0159324|T037|AB|802.20|ICD9CM|Mandible fx NOS-closed|Mandible fx NOS-closed +C0159325|T037|PT|802.21|ICD9CM|Closed fracture of mandible, condylar process|Closed fracture of mandible, condylar process +C0159325|T037|AB|802.21|ICD9CM|Fx condyl proc mandib-cl|Fx condyl proc mandib-cl +C0272468|T037|PT|802.22|ICD9CM|Closed fracture of mandible, subcondylar|Closed fracture of mandible, subcondylar +C0272468|T037|AB|802.22|ICD9CM|Subcondylar fx mandib-cl|Subcondylar fx mandib-cl +C0159327|T037|PT|802.23|ICD9CM|Closed fracture of mandible, coronoid process|Closed fracture of mandible, coronoid process +C0159327|T037|AB|802.23|ICD9CM|Fx coron proc mandib-cl|Fx coron proc mandib-cl +C0272469|T037|PT|802.24|ICD9CM|Closed fracture of mandible, ramus, unspecified|Closed fracture of mandible, ramus, unspecified +C0272469|T037|AB|802.24|ICD9CM|Fx ramus NOS-closed|Fx ramus NOS-closed +C0435334|T037|PT|802.25|ICD9CM|Closed fracture of mandible, angle of jaw|Closed fracture of mandible, angle of jaw +C0435334|T037|AB|802.25|ICD9CM|Fx angle of jaw-closed|Fx angle of jaw-closed +C0159330|T037|PT|802.26|ICD9CM|Closed fracture of mandible, symphysis of body|Closed fracture of mandible, symphysis of body +C0159330|T037|AB|802.26|ICD9CM|Fx symphy mandib body-cl|Fx symphy mandib body-cl +C0159331|T037|PT|802.27|ICD9CM|Closed fracture of mandible, alveolar border of body|Closed fracture of mandible, alveolar border of body +C0159331|T037|AB|802.27|ICD9CM|Fx alveolar bord mand-cl|Fx alveolar bord mand-cl +C0435335|T037|PT|802.28|ICD9CM|Closed fracture of mandible, body, other and unspecified|Closed fracture of mandible, body, other and unspecified +C0435335|T037|AB|802.28|ICD9CM|Fx mandible body NEC-cl|Fx mandible body NEC-cl +C0159333|T037|PT|802.29|ICD9CM|Closed fracture of mandible, multiple sites|Closed fracture of mandible, multiple sites +C0159333|T037|AB|802.29|ICD9CM|Mult fx mandible-closed|Mult fx mandible-closed +C0159334|T037|HT|802.3|ICD9CM|Mandible open fracture|Mandible open fracture +C0159334|T037|AB|802.30|ICD9CM|Mandible fx NOS-open|Mandible fx NOS-open +C0159334|T037|PT|802.30|ICD9CM|Open fracture of mandible, unspecified site|Open fracture of mandible, unspecified site +C0159336|T037|AB|802.31|ICD9CM|Fx condyl proc mand-open|Fx condyl proc mand-open +C0159336|T037|PT|802.31|ICD9CM|Open fracture of mandible, condylar process|Open fracture of mandible, condylar process +C0272471|T037|PT|802.32|ICD9CM|Open fracture of mandible, subcondylar|Open fracture of mandible, subcondylar +C0272471|T037|AB|802.32|ICD9CM|Subcondyl fx mandib-open|Subcondyl fx mandib-open +C0159338|T037|AB|802.33|ICD9CM|Fx coron proc mandib-opn|Fx coron proc mandib-opn +C0159338|T037|PT|802.33|ICD9CM|Open fracture of mandible, coronoid process|Open fracture of mandible, coronoid process +C0272472|T037|AB|802.34|ICD9CM|Fx ramus NOS-open|Fx ramus NOS-open +C0272472|T037|PT|802.34|ICD9CM|Open fracture of mandible, ramus, unspecified|Open fracture of mandible, ramus, unspecified +C0435337|T037|AB|802.35|ICD9CM|Fx angle of jaw-open|Fx angle of jaw-open +C0435337|T037|PT|802.35|ICD9CM|Open fracture of mandible, angle of jaw|Open fracture of mandible, angle of jaw +C0159341|T037|AB|802.36|ICD9CM|Fx symphy mandib bdy-opn|Fx symphy mandib bdy-opn +C0159341|T037|PT|802.36|ICD9CM|Open fracture of mandible, symphysis of body|Open fracture of mandible, symphysis of body +C0159342|T037|AB|802.37|ICD9CM|Fx alv bord mand bdy-opn|Fx alv bord mand bdy-opn +C0159342|T037|PT|802.37|ICD9CM|Open fracture of mandible, alveolar border of body|Open fracture of mandible, alveolar border of body +C0435338|T037|AB|802.38|ICD9CM|Fx mandible body NEC-opn|Fx mandible body NEC-opn +C0435338|T037|PT|802.38|ICD9CM|Open fracture of mandible, body, other and unspecified|Open fracture of mandible, body, other and unspecified +C0159344|T037|AB|802.39|ICD9CM|Mult fx mandible-open|Mult fx mandible-open +C0159344|T037|PT|802.39|ICD9CM|Open fracture of mandible, multiple sites|Open fracture of mandible, multiple sites +C0009045|T037|PT|802.4|ICD9CM|Closed fracture of malar and maxillary bones|Closed fracture of malar and maxillary bones +C0009045|T037|AB|802.4|ICD9CM|Fx malar/maxillary-close|Fx malar/maxillary-close +C0159345|T037|AB|802.5|ICD9CM|Fx malar/maxillary-open|Fx malar/maxillary-open +C0159345|T037|PT|802.5|ICD9CM|Open fracture of malar and maxillary bones|Open fracture of malar and maxillary bones +C0339150|T037|PT|802.6|ICD9CM|Closed fracture of orbital floor (blow-out)|Closed fracture of orbital floor (blow-out) +C0339150|T037|AB|802.6|ICD9CM|Fx orbital floor-closed|Fx orbital floor-closed +C0339151|T037|AB|802.7|ICD9CM|Fx orbital floor-open|Fx orbital floor-open +C0339151|T037|PT|802.7|ICD9CM|Open fracture of orbital floor (blow-out)|Open fracture of orbital floor (blow-out) +C0159348|T037|PT|802.8|ICD9CM|Closed fracture of other facial bones|Closed fracture of other facial bones +C0159348|T037|AB|802.8|ICD9CM|Fx facial bone NEC-close|Fx facial bone NEC-close +C0159349|T037|AB|802.9|ICD9CM|Fx facial bone NEC-open|Fx facial bone NEC-open +C0159349|T037|PT|802.9|ICD9CM|Open fracture of other facial bones|Open fracture of other facial bones +C0159350|T037|HT|803|ICD9CM|Other and unqualified skull fractures|Other and unqualified skull fractures +C0029547|T037|HT|803.0|ICD9CM|Other closed skull fracture without mention of intracranial injury|Other closed skull fracture without mention of intracranial injury +C0159351|T037|AB|803.00|ICD9CM|Close skull fracture NEC|Close skull fracture NEC +C0159352|T037|AB|803.01|ICD9CM|Cl skull fx NEC w/o coma|Cl skull fx NEC w/o coma +C0159352|T037|PT|803.01|ICD9CM|Other closed skull fracture without mention of intracranial injury, with no loss of consciousness|Other closed skull fracture without mention of intracranial injury, with no loss of consciousness +C0159353|T037|AB|803.02|ICD9CM|Cl skull fx NEC-brf coma|Cl skull fx NEC-brf coma +C0159354|T037|AB|803.03|ICD9CM|Cl skull fx NEC-mod coma|Cl skull fx NEC-mod coma +C0159355|T037|AB|803.04|ICD9CM|Cl skl fx NEC-proln coma|Cl skl fx NEC-proln coma +C0159356|T037|AB|803.05|ICD9CM|Cl skul fx NEC-deep coma|Cl skul fx NEC-deep coma +C0159357|T037|AB|803.06|ICD9CM|Cl skull fx NEC-coma NOS|Cl skull fx NEC-coma NOS +C0159358|T037|AB|803.09|ICD9CM|Cl skull fx NEC-concuss|Cl skull fx NEC-concuss +C0159358|T037|PT|803.09|ICD9CM|Other closed skull fracture without mention of intracranial injury, with concussion, unspecified|Other closed skull fracture without mention of intracranial injury, with concussion, unspecified +C0159359|T037|HT|803.1|ICD9CM|Other closed skull fracture with cerebral laceration and contusion|Other closed skull fracture with cerebral laceration and contusion +C0159360|T037|AB|803.10|ICD9CM|Cl skl fx NEC/cerebr lac|Cl skl fx NEC/cerebr lac +C0159361|T037|AB|803.11|ICD9CM|Cl skull fx NEC w/o coma|Cl skull fx NEC w/o coma +C0159361|T037|PT|803.11|ICD9CM|Other closed skull fracture with cerebral laceration and contusion, with no loss of consciousness|Other closed skull fracture with cerebral laceration and contusion, with no loss of consciousness +C0159362|T037|AB|803.12|ICD9CM|Cl skull fx NEC-brf coma|Cl skull fx NEC-brf coma +C0159363|T037|AB|803.13|ICD9CM|Cl skull fx NEC-mod coma|Cl skull fx NEC-mod coma +C0159364|T037|AB|803.14|ICD9CM|Cl skl fx NEC-proln coma|Cl skl fx NEC-proln coma +C0159365|T037|AB|803.15|ICD9CM|Cl skul fx NEC-deep coma|Cl skul fx NEC-deep coma +C0159366|T037|AB|803.16|ICD9CM|Cl skull fx NEC-coma NOS|Cl skull fx NEC-coma NOS +C0375598|T037|AB|803.19|ICD9CM|Cl skull fx NEC-concuss|Cl skull fx NEC-concuss +C0375598|T037|PT|803.19|ICD9CM|Other closed skull fracture with cerebral laceration and contusion, with concussion, unspecified|Other closed skull fracture with cerebral laceration and contusion, with concussion, unspecified +C0159368|T037|HT|803.2|ICD9CM|Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage|Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage +C0159369|T037|AB|803.20|ICD9CM|Cl skl fx NEC/mening hem|Cl skl fx NEC/mening hem +C0159370|T037|AB|803.21|ICD9CM|Cl skull fx NEC w/o coma|Cl skull fx NEC w/o coma +C0159371|T037|AB|803.22|ICD9CM|Cl skull fx NEC-brf coma|Cl skull fx NEC-brf coma +C0159372|T037|AB|803.23|ICD9CM|Cl skull fx NEC-mod coma|Cl skull fx NEC-mod coma +C0159373|T037|AB|803.24|ICD9CM|Cl skl fx NEC-proln coma|Cl skl fx NEC-proln coma +C0159374|T037|AB|803.25|ICD9CM|Cl skul fx NEC-deep coma|Cl skul fx NEC-deep coma +C0159375|T037|AB|803.26|ICD9CM|Cl skull fx NEC-coma NOS|Cl skull fx NEC-coma NOS +C0375599|T037|AB|803.29|ICD9CM|Cl skull fx NEC-concuss|Cl skull fx NEC-concuss +C0159377|T037|HT|803.3|ICD9CM|Closed skull fracture with other and unspecified intracranial hemorrhage|Closed skull fracture with other and unspecified intracranial hemorrhage +C0159378|T037|AB|803.30|ICD9CM|Cl skull fx NEC/hem NEC|Cl skull fx NEC/hem NEC +C0159379|T037|AB|803.31|ICD9CM|Cl skull fx NEC w/o coma|Cl skull fx NEC w/o coma +C0159380|T037|AB|803.32|ICD9CM|Cl skull fx NEC-brf coma|Cl skull fx NEC-brf coma +C0159381|T037|AB|803.33|ICD9CM|Cl skull fx NEC-mod coma|Cl skull fx NEC-mod coma +C0159382|T037|AB|803.34|ICD9CM|Cl skl fx NEC-proln coma|Cl skl fx NEC-proln coma +C0159383|T037|AB|803.35|ICD9CM|Cl skul fx NEC-deep coma|Cl skul fx NEC-deep coma +C0159384|T037|AB|803.36|ICD9CM|Cl skull fx NEC-coma NOS|Cl skull fx NEC-coma NOS +C0375600|T037|AB|803.39|ICD9CM|Cl skull fx NEC-concuss|Cl skull fx NEC-concuss +C0159386|T037|HT|803.4|ICD9CM|Other closed skull fracture with intracranial injury of other and unspecified nature|Other closed skull fracture with intracranial injury of other and unspecified nature +C0159387|T037|AB|803.40|ICD9CM|Cl skl fx NEC/br inj NEC|Cl skl fx NEC/br inj NEC +C0159388|T037|AB|803.41|ICD9CM|Cl skull fx NEC w/o coma|Cl skull fx NEC w/o coma +C0159389|T037|AB|803.42|ICD9CM|Cl skull fx NEC-brf coma|Cl skull fx NEC-brf coma +C0159390|T037|AB|803.43|ICD9CM|Cl skull fx NEC-mod coma|Cl skull fx NEC-mod coma +C0159391|T037|AB|803.44|ICD9CM|Cl skl fx NEC-proln coma|Cl skl fx NEC-proln coma +C0159392|T037|AB|803.45|ICD9CM|Cl skul fx NEC-deep coma|Cl skul fx NEC-deep coma +C0159393|T037|AB|803.46|ICD9CM|Cl skull fx NEC-coma NOS|Cl skull fx NEC-coma NOS +C0159394|T037|AB|803.49|ICD9CM|Cl skull fx NEC-concuss|Cl skull fx NEC-concuss +C0159395|T037|HT|803.5|ICD9CM|Other open skull fracture without mention of intracranial injury|Other open skull fracture without mention of intracranial injury +C0159396|T037|AB|803.50|ICD9CM|Open skull fracture NEC|Open skull fracture NEC +C0159396|T037|PT|803.50|ICD9CM|Other open skull fracture without mention of injury, unspecified state of consciousness|Other open skull fracture without mention of injury, unspecified state of consciousness +C0159397|T037|AB|803.51|ICD9CM|Opn skul fx NEC w/o coma|Opn skul fx NEC w/o coma +C0159397|T037|PT|803.51|ICD9CM|Other open skull fracture without mention of intracranial injury, with no loss of consciousness|Other open skull fracture without mention of intracranial injury, with no loss of consciousness +C0159398|T037|AB|803.52|ICD9CM|Opn skul fx NEC-brf coma|Opn skul fx NEC-brf coma +C0159399|T037|AB|803.53|ICD9CM|Opn skul fx NEC-mod coma|Opn skul fx NEC-mod coma +C0159400|T037|AB|803.54|ICD9CM|Opn skl fx NEC-prol coma|Opn skl fx NEC-prol coma +C0159401|T037|AB|803.55|ICD9CM|Opn skl fx NEC-deep coma|Opn skl fx NEC-deep coma +C0159402|T037|AB|803.56|ICD9CM|Opn skul fx NEC-coma NOS|Opn skul fx NEC-coma NOS +C0159403|T037|AB|803.59|ICD9CM|Opn skull fx NEC-concuss|Opn skull fx NEC-concuss +C0159403|T037|PT|803.59|ICD9CM|Other open skull fracture without mention of intracranial injury, with concussion, unspecified|Other open skull fracture without mention of intracranial injury, with concussion, unspecified +C0159404|T037|HT|803.6|ICD9CM|Other open skull fracture with cerebral laceration and contusion|Other open skull fracture with cerebral laceration and contusion +C0159405|T037|AB|803.60|ICD9CM|Opn skl fx NEC/cereb lac|Opn skl fx NEC/cereb lac +C0159405|T037|PT|803.60|ICD9CM|Other open skull fracture with cerebral laceration and contusion, unspecified state of consciousness|Other open skull fracture with cerebral laceration and contusion, unspecified state of consciousness +C0159406|T037|AB|803.61|ICD9CM|Opn skul fx NEC w/o coma|Opn skul fx NEC w/o coma +C0159406|T037|PT|803.61|ICD9CM|Other open skull fracture with cerebral laceration and contusion, with no loss of consciousness|Other open skull fracture with cerebral laceration and contusion, with no loss of consciousness +C0159407|T037|AB|803.62|ICD9CM|Opn skul fx NEC-brf coma|Opn skul fx NEC-brf coma +C0159408|T037|AB|803.63|ICD9CM|Opn skul fx NEC-mod coma|Opn skul fx NEC-mod coma +C0159409|T037|AB|803.64|ICD9CM|Opn skl fx NEC-proln com|Opn skl fx NEC-proln com +C0159410|T037|AB|803.65|ICD9CM|Opn skl fx NEC-deep coma|Opn skl fx NEC-deep coma +C0159411|T037|AB|803.66|ICD9CM|Opn skul fx NEC-coma NOS|Opn skul fx NEC-coma NOS +C0375603|T037|AB|803.69|ICD9CM|Opn skull fx NEC-concuss|Opn skull fx NEC-concuss +C0375603|T037|PT|803.69|ICD9CM|Other open skull fracture with cerebral laceration and contusion, with concussion, unspecified|Other open skull fracture with cerebral laceration and contusion, with concussion, unspecified +C0159413|T037|HT|803.7|ICD9CM|Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage|Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage +C0159414|T037|AB|803.70|ICD9CM|Opn skl fx NEC/menin hem|Opn skl fx NEC/menin hem +C0159415|T037|AB|803.71|ICD9CM|Opn skul fx NEC w/o coma|Opn skul fx NEC w/o coma +C0159416|T037|AB|803.72|ICD9CM|Opn skul fx NEC-brf coma|Opn skul fx NEC-brf coma +C0159417|T037|AB|803.73|ICD9CM|Opn skul fx NEC-mod coma|Opn skul fx NEC-mod coma +C0159418|T037|AB|803.74|ICD9CM|Opn skl fx NEC-prol coma|Opn skl fx NEC-prol coma +C0159419|T037|AB|803.75|ICD9CM|Opn skl fx NEC-deep coma|Opn skl fx NEC-deep coma +C0159420|T037|AB|803.76|ICD9CM|Opn skul fx NEC-coma NOS|Opn skul fx NEC-coma NOS +C0375604|T037|AB|803.79|ICD9CM|Opn skull fx NEC-concuss|Opn skull fx NEC-concuss +C0159422|T037|HT|803.8|ICD9CM|Other open skull fracture with other and unspecified intracranial hemorrhage|Other open skull fracture with other and unspecified intracranial hemorrhage +C0159423|T037|AB|803.80|ICD9CM|Opn skull fx NEC/hem NEC|Opn skull fx NEC/hem NEC +C0159424|T037|AB|803.81|ICD9CM|Opn skul fx NEC w/o coma|Opn skul fx NEC w/o coma +C0159425|T037|AB|803.82|ICD9CM|Opn skul fx NEC-brf coma|Opn skul fx NEC-brf coma +C0159426|T037|AB|803.83|ICD9CM|Opn skul fx NEC-mod coma|Opn skul fx NEC-mod coma +C0159427|T037|AB|803.84|ICD9CM|Opn skl fx NEC-prol coma|Opn skl fx NEC-prol coma +C0159428|T037|AB|803.85|ICD9CM|Opn skl fx NEC-deep coma|Opn skl fx NEC-deep coma +C0159429|T037|AB|803.86|ICD9CM|Opn skul fx NEC-coma NOS|Opn skul fx NEC-coma NOS +C0375605|T037|AB|803.89|ICD9CM|Opn skull fx NEC-concuss|Opn skull fx NEC-concuss +C0159431|T037|HT|803.9|ICD9CM|Other open skull fracture with intracranial injury of other and unspecified nature|Other open skull fracture with intracranial injury of other and unspecified nature +C0159432|T037|AB|803.90|ICD9CM|Op skl fx NEC/br inj NEC|Op skl fx NEC/br inj NEC +C0159433|T037|AB|803.91|ICD9CM|Opn skul fx NEC w/o coma|Opn skul fx NEC w/o coma +C0159434|T037|AB|803.92|ICD9CM|Opn skul fx NEC-brf coma|Opn skul fx NEC-brf coma +C0159435|T037|AB|803.93|ICD9CM|Opn skul fx NEC-mod coma|Opn skul fx NEC-mod coma +C0159436|T037|AB|803.94|ICD9CM|Opn skl fx NEC-prol coma|Opn skl fx NEC-prol coma +C0159437|T037|AB|803.95|ICD9CM|Opn skl fx NEC-deep coma|Opn skl fx NEC-deep coma +C0159438|T037|AB|803.96|ICD9CM|Opn skul fx NEC-coma NOS|Opn skul fx NEC-coma NOS +C0159439|T037|AB|803.99|ICD9CM|Opn skull fx NEC-concuss|Opn skull fx NEC-concuss +C0159440|T037|HT|804|ICD9CM|Multiple fractures involving skull or face with other bones|Multiple fractures involving skull or face with other bones +C0159441|T037|HT|804.0|ICD9CM|Closed fractures involving skull or face with other bones, without mention of intracranial injury|Closed fractures involving skull or face with other bones, without mention of intracranial injury +C0159442|T037|AB|804.00|ICD9CM|Cl skul fx w oth bone fx|Cl skul fx w oth bone fx +C0159443|T037|AB|804.01|ICD9CM|Cl skl w oth fx w/o coma|Cl skl w oth fx w/o coma +C0159444|T037|AB|804.02|ICD9CM|Cl skl w oth fx-brf coma|Cl skl w oth fx-brf coma +C0159445|T037|AB|804.03|ICD9CM|Cl skl w oth fx-mod coma|Cl skl w oth fx-mod coma +C0159446|T037|AB|804.04|ICD9CM|Cl skl/oth fx-proln coma|Cl skl/oth fx-proln coma +C0159447|T037|AB|804.05|ICD9CM|Cl skul/oth fx-deep coma|Cl skul/oth fx-deep coma +C0159448|T037|AB|804.06|ICD9CM|Cl skl w oth fx-coma NOS|Cl skl w oth fx-coma NOS +C0159449|T037|AB|804.09|ICD9CM|Cl skul w oth fx-concuss|Cl skul w oth fx-concuss +C0159450|T037|HT|804.1|ICD9CM|Closed fractures involving skull or face with other bones, with cerebral laceration and contusion|Closed fractures involving skull or face with other bones, with cerebral laceration and contusion +C0159451|T037|AB|804.10|ICD9CM|Cl sk w oth fx/cereb lac|Cl sk w oth fx/cereb lac +C0159452|T037|AB|804.11|ICD9CM|Cl skl w oth fx w/o coma|Cl skl w oth fx w/o coma +C0159453|T037|AB|804.12|ICD9CM|Cl skl w oth fx-brf coma|Cl skl w oth fx-brf coma +C0159454|T037|AB|804.13|ICD9CM|Cl skl w oth fx-mod coma|Cl skl w oth fx-mod coma +C0159455|T037|AB|804.14|ICD9CM|Cl skl/oth fx-proln coma|Cl skl/oth fx-proln coma +C0159456|T037|AB|804.15|ICD9CM|Cl skul/oth fx-deep coma|Cl skul/oth fx-deep coma +C0159457|T037|AB|804.16|ICD9CM|Cl skl w oth fx-coma NOS|Cl skl w oth fx-coma NOS +C0375608|T037|AB|804.19|ICD9CM|Cl skul w oth fx-concuss|Cl skul w oth fx-concuss +C0159460|T037|AB|804.20|ICD9CM|Cl skl/oth fx/mening hem|Cl skl/oth fx/mening hem +C0159461|T037|AB|804.21|ICD9CM|Cl skl w oth fx w/o coma|Cl skl w oth fx w/o coma +C0159462|T037|AB|804.22|ICD9CM|Cl skl w oth fx-brf coma|Cl skl w oth fx-brf coma +C0159463|T037|AB|804.23|ICD9CM|Cl skl w oth fx-mod coma|Cl skl w oth fx-mod coma +C0159464|T037|AB|804.24|ICD9CM|Cl skl/oth fx-proln coma|Cl skl/oth fx-proln coma +C0159465|T037|AB|804.25|ICD9CM|Cl skul/oth fx-deep coma|Cl skul/oth fx-deep coma +C0159466|T037|AB|804.26|ICD9CM|Cl skl w oth fx-coma NOS|Cl skl w oth fx-coma NOS +C0375609|T037|AB|804.29|ICD9CM|Cl skul w oth fx-concuss|Cl skul w oth fx-concuss +C0159469|T037|AB|804.30|ICD9CM|Cl skul w oth fx/hem NEC|Cl skul w oth fx/hem NEC +C0159470|T037|AB|804.31|ICD9CM|Cl skl w oth fx w/o coma|Cl skl w oth fx w/o coma +C0159471|T037|AB|804.32|ICD9CM|Cl skl w oth fx-brf coma|Cl skl w oth fx-brf coma +C0159472|T037|AB|804.33|ICD9CM|Cl skl w oth fx-mod coma|Cl skl w oth fx-mod coma +C0159473|T037|AB|804.34|ICD9CM|Cl skl/oth fx-proln coma|Cl skl/oth fx-proln coma +C0159474|T037|AB|804.35|ICD9CM|Cl skul/oth fx-deep coma|Cl skul/oth fx-deep coma +C0159475|T037|AB|804.36|ICD9CM|Cl skl w oth fx-coma NOS|Cl skl w oth fx-coma NOS +C0375610|T037|AB|804.39|ICD9CM|Cl skul w oth fx-concuss|Cl skul w oth fx-concuss +C0159478|T037|AB|804.40|ICD9CM|Cl skl/oth fx/br inj NEC|Cl skl/oth fx/br inj NEC +C0159479|T037|AB|804.41|ICD9CM|Cl skl w oth fx w/o coma|Cl skl w oth fx w/o coma +C0159480|T037|AB|804.42|ICD9CM|Cl skl w oth fx-brf coma|Cl skl w oth fx-brf coma +C0159481|T037|AB|804.43|ICD9CM|Cl skl w oth fx-mod coma|Cl skl w oth fx-mod coma +C0159482|T037|AB|804.44|ICD9CM|Cl skl/oth fx-proln coma|Cl skl/oth fx-proln coma +C0159483|T037|AB|804.45|ICD9CM|Cl skul/oth fx-deep coma|Cl skul/oth fx-deep coma +C0159484|T037|AB|804.46|ICD9CM|Cl skl w oth fx-coma NOS|Cl skl w oth fx-coma NOS +C0159485|T037|AB|804.49|ICD9CM|Cl skul w oth fx-concuss|Cl skul w oth fx-concuss +C0159486|T037|HT|804.5|ICD9CM|Open fractures involving skull or face with other bones, without mention of intracranial injury|Open fractures involving skull or face with other bones, without mention of intracranial injury +C0159487|T037|AB|804.50|ICD9CM|Opn skull fx/oth bone fx|Opn skull fx/oth bone fx +C0159488|T037|AB|804.51|ICD9CM|Opn skul/oth fx w/o coma|Opn skul/oth fx w/o coma +C0159489|T037|AB|804.52|ICD9CM|Opn skul/oth fx-brf coma|Opn skul/oth fx-brf coma +C0159490|T037|AB|804.53|ICD9CM|Opn skul/oth fx-mod coma|Opn skul/oth fx-mod coma +C0159491|T037|AB|804.54|ICD9CM|Opn skl/oth fx-prol coma|Opn skl/oth fx-prol coma +C0159492|T037|AB|804.55|ICD9CM|Opn skl/oth fx-deep coma|Opn skl/oth fx-deep coma +C0159493|T037|AB|804.56|ICD9CM|Opn skul/oth fx-coma NOS|Opn skul/oth fx-coma NOS +C0159494|T037|AB|804.59|ICD9CM|Opn skull/oth fx-concuss|Opn skull/oth fx-concuss +C0159495|T037|HT|804.6|ICD9CM|Open fractures involving skull or face with other bones, with cerebral laceration and contusion|Open fractures involving skull or face with other bones, with cerebral laceration and contusion +C0159496|T037|AB|804.60|ICD9CM|Opn skl/oth fx/cereb lac|Opn skl/oth fx/cereb lac +C0159497|T037|AB|804.61|ICD9CM|Opn skul/oth fx w/o coma|Opn skul/oth fx w/o coma +C0159498|T037|AB|804.62|ICD9CM|Opn skul/oth fx-brf coma|Opn skul/oth fx-brf coma +C0159499|T037|AB|804.63|ICD9CM|Opn skul/oth fx-mod coma|Opn skul/oth fx-mod coma +C0159500|T037|AB|804.64|ICD9CM|Opn skl/oth fx-prol coma|Opn skl/oth fx-prol coma +C0159501|T037|AB|804.65|ICD9CM|Opn skl/oth fx-deep coma|Opn skl/oth fx-deep coma +C0159502|T037|AB|804.66|ICD9CM|Opn skul/oth fx-coma NOS|Opn skul/oth fx-coma NOS +C0375613|T037|AB|804.69|ICD9CM|Opn skull/oth fx-concuss|Opn skull/oth fx-concuss +C0159505|T037|AB|804.70|ICD9CM|Opn skl/oth fx/menin hem|Opn skl/oth fx/menin hem +C0159506|T037|AB|804.71|ICD9CM|Opn skul/oth fx w/o coma|Opn skul/oth fx w/o coma +C0159507|T037|AB|804.72|ICD9CM|Opn skul/oth fx-brf coma|Opn skul/oth fx-brf coma +C0159508|T037|AB|804.73|ICD9CM|Opn skul/oth fx-mod coma|Opn skul/oth fx-mod coma +C0159509|T037|AB|804.74|ICD9CM|Opn skl/oth fx-prol coma|Opn skl/oth fx-prol coma +C0159510|T037|AB|804.75|ICD9CM|Opn skl/oth fx-deep coma|Opn skl/oth fx-deep coma +C0159511|T037|AB|804.76|ICD9CM|Opn skul/oth fx-coma NOS|Opn skul/oth fx-coma NOS +C0375614|T037|AB|804.79|ICD9CM|Opn skull/oth fx-concuss|Opn skull/oth fx-concuss +C0159514|T037|AB|804.80|ICD9CM|Opn skl w oth fx/hem NEC|Opn skl w oth fx/hem NEC +C0159515|T037|AB|804.81|ICD9CM|Opn skul/oth fx w/o coma|Opn skul/oth fx w/o coma +C0159516|T037|AB|804.82|ICD9CM|Opn skul/oth fx-brf coma|Opn skul/oth fx-brf coma +C0159517|T037|AB|804.83|ICD9CM|Opn skul/oth fx-mod coma|Opn skul/oth fx-mod coma +C0159518|T037|AB|804.84|ICD9CM|Opn skl/oth fx-prol coma|Opn skl/oth fx-prol coma +C0159519|T037|AB|804.85|ICD9CM|Opn skl/oth fx-deep coma|Opn skl/oth fx-deep coma +C0159520|T037|AB|804.86|ICD9CM|Opn skul/oth fx-coma NOS|Opn skul/oth fx-coma NOS +C0375615|T037|AB|804.89|ICD9CM|Opn skull/oth fx-concuss|Opn skull/oth fx-concuss +C0159523|T037|AB|804.90|ICD9CM|Op skl/oth fx/br inj NEC|Op skl/oth fx/br inj NEC +C0159524|T037|AB|804.91|ICD9CM|Opn skul/oth fx w/o coma|Opn skul/oth fx w/o coma +C0159525|T037|AB|804.92|ICD9CM|Opn skul/oth fx-brf coma|Opn skul/oth fx-brf coma +C0159526|T037|AB|804.93|ICD9CM|Opn skul/oth fx-mod coma|Opn skul/oth fx-mod coma +C0159527|T037|AB|804.94|ICD9CM|Opn skl/oth fx-prol coma|Opn skl/oth fx-prol coma +C0159528|T037|AB|804.95|ICD9CM|Opn skl/oth fx-deep coma|Opn skl/oth fx-deep coma +C0159529|T037|AB|804.96|ICD9CM|Opn skul/oth fx-coma NOS|Opn skul/oth fx-coma NOS +C0159530|T037|AB|804.99|ICD9CM|Opn skull/oth fx-concuss|Opn skull/oth fx-concuss +C0559043|T037|HT|805|ICD9CM|Fracture of vertebral column without mention of spinal cord injury|Fracture of vertebral column without mention of spinal cord injury +C0178315|T037|HT|805-809.99|ICD9CM|FRACTURE OF NECK AND TRUNK|FRACTURE OF NECK AND TRUNK +C0859693|T037|HT|805.0|ICD9CM|Closed fracture of cervical vertebra without mention of spinal cord injury|Closed fracture of cervical vertebra without mention of spinal cord injury +C0375617|T037|PT|805.00|ICD9CM|Closed fracture of cervical vertebra, unspecified level|Closed fracture of cervical vertebra, unspecified level +C0375617|T037|AB|805.00|ICD9CM|Fx cervical vert NOS-cl|Fx cervical vert NOS-cl +C0159533|T037|PT|805.01|ICD9CM|Closed fracture of first cervical vertebra|Closed fracture of first cervical vertebra +C0159533|T037|AB|805.01|ICD9CM|Fx c1 vertebra-closed|Fx c1 vertebra-closed +C0159534|T037|PT|805.02|ICD9CM|Closed fracture of second cervical vertebra|Closed fracture of second cervical vertebra +C0159534|T037|AB|805.02|ICD9CM|Fx c2 vertebra-closed|Fx c2 vertebra-closed +C0159535|T037|PT|805.03|ICD9CM|Closed fracture of third cervical vertebra|Closed fracture of third cervical vertebra +C0159535|T037|AB|805.03|ICD9CM|Fx c3 vertebra-closed|Fx c3 vertebra-closed +C0159536|T037|PT|805.04|ICD9CM|Closed fracture of fourth cervical vertebra|Closed fracture of fourth cervical vertebra +C0159536|T037|AB|805.04|ICD9CM|Fx c4 vertebra-closed|Fx c4 vertebra-closed +C0159537|T037|PT|805.05|ICD9CM|Closed fracture of fifth cervical vertebra|Closed fracture of fifth cervical vertebra +C0159537|T037|AB|805.05|ICD9CM|Fx c5 vertebra-closed|Fx c5 vertebra-closed +C0159538|T037|PT|805.06|ICD9CM|Closed fracture of sixth cervical vertebra|Closed fracture of sixth cervical vertebra +C0159538|T037|AB|805.06|ICD9CM|Fx c6 vertebra-closed|Fx c6 vertebra-closed +C0159539|T037|PT|805.07|ICD9CM|Closed fracture of seventh cervical vertebra|Closed fracture of seventh cervical vertebra +C0159539|T037|AB|805.07|ICD9CM|Fx c7 vertebra-closed|Fx c7 vertebra-closed +C0159540|T037|PT|805.08|ICD9CM|Closed fracture of multiple cervical vertebrae|Closed fracture of multiple cervical vertebrae +C0159540|T037|AB|805.08|ICD9CM|Fx mult cervical vert-cl|Fx mult cervical vert-cl +C0859694|T037|HT|805.1|ICD9CM|Open fracture of cervical vertebra without mention of spinal cord injury|Open fracture of cervical vertebra without mention of spinal cord injury +C0375618|T037|AB|805.10|ICD9CM|Fx cervical vert NOS-opn|Fx cervical vert NOS-opn +C0375618|T037|PT|805.10|ICD9CM|Open fracture of cervical vertebra, unspecified level|Open fracture of cervical vertebra, unspecified level +C0159543|T037|AB|805.11|ICD9CM|Fx c1 vertebra-open|Fx c1 vertebra-open +C0159543|T037|PT|805.11|ICD9CM|Open fracture of first cervical vertebra|Open fracture of first cervical vertebra +C0159544|T037|AB|805.12|ICD9CM|Fx c2 vertebra-open|Fx c2 vertebra-open +C0159544|T037|PT|805.12|ICD9CM|Open fracture of second cervical vertebra|Open fracture of second cervical vertebra +C0159545|T037|AB|805.13|ICD9CM|Fx c3 vertebra-open|Fx c3 vertebra-open +C0159545|T037|PT|805.13|ICD9CM|Open fracture of third cervical vertebra|Open fracture of third cervical vertebra +C0159546|T037|AB|805.14|ICD9CM|Fx c4 vertebra-open|Fx c4 vertebra-open +C0159546|T037|PT|805.14|ICD9CM|Open fracture of fourth cervical vertebra|Open fracture of fourth cervical vertebra +C0159547|T037|AB|805.15|ICD9CM|Fx c5 vertebra-open|Fx c5 vertebra-open +C0159547|T037|PT|805.15|ICD9CM|Open fracture of fifth cervical vertebra|Open fracture of fifth cervical vertebra +C0159548|T037|AB|805.16|ICD9CM|Fx c6 vertebra-open|Fx c6 vertebra-open +C0159548|T037|PT|805.16|ICD9CM|Open fracture of sixth cervical vertebra|Open fracture of sixth cervical vertebra +C0159549|T037|AB|805.17|ICD9CM|Fx c7 vertebra-open|Fx c7 vertebra-open +C0159549|T037|PT|805.17|ICD9CM|Open fracture of seventh cervical vertebra|Open fracture of seventh cervical vertebra +C0159550|T037|AB|805.18|ICD9CM|Fx mlt cervical vert-opn|Fx mlt cervical vert-opn +C0159550|T037|PT|805.18|ICD9CM|Open fracture of multiple cervical vertebrae|Open fracture of multiple cervical vertebrae +C0159551|T037|PT|805.2|ICD9CM|Closed fracture of dorsal [thoracic] vertebra without mention of spinal cord injury|Closed fracture of dorsal [thoracic] vertebra without mention of spinal cord injury +C0159551|T037|AB|805.2|ICD9CM|Fx dorsal vertebra-close|Fx dorsal vertebra-close +C0159552|T037|AB|805.3|ICD9CM|Fx dorsal vertebra-open|Fx dorsal vertebra-open +C0159552|T037|PT|805.3|ICD9CM|Open fracture of dorsal [thoracic] vertebra without mention of spinal cord injury|Open fracture of dorsal [thoracic] vertebra without mention of spinal cord injury +C0859697|T037|PT|805.4|ICD9CM|Closed fracture of lumbar vertebra without mention of spinal cord injury|Closed fracture of lumbar vertebra without mention of spinal cord injury +C0859697|T037|AB|805.4|ICD9CM|Fx lumbar vertebra-close|Fx lumbar vertebra-close +C0859698|T037|AB|805.5|ICD9CM|Fx lumbar vertebra-open|Fx lumbar vertebra-open +C0859698|T037|PT|805.5|ICD9CM|Open fracture of lumbar vertebra without mention of spinal cord injury|Open fracture of lumbar vertebra without mention of spinal cord injury +C0159555|T037|PT|805.6|ICD9CM|Closed fracture of sacrum and coccyx without mention of spinal cord injury|Closed fracture of sacrum and coccyx without mention of spinal cord injury +C0159555|T037|AB|805.6|ICD9CM|Fx sacrum/coccyx-closed|Fx sacrum/coccyx-closed +C0159556|T037|AB|805.7|ICD9CM|Fx sacrum/coccyx-open|Fx sacrum/coccyx-open +C0159556|T037|PT|805.7|ICD9CM|Open fracture of sacrum and coccyx without mention of spinal cord injury|Open fracture of sacrum and coccyx without mention of spinal cord injury +C0009048|T037|PT|805.8|ICD9CM|Closed fracture of unspecified vertebral column without mention of spinal cord injury|Closed fracture of unspecified vertebral column without mention of spinal cord injury +C0009048|T037|AB|805.8|ICD9CM|Vertebral fx NOS-closed|Vertebral fx NOS-closed +C0159557|T037|PT|805.9|ICD9CM|Open fracture of unspecified vertebral column without mention of spinal cord injury|Open fracture of unspecified vertebral column without mention of spinal cord injury +C0159557|T037|AB|805.9|ICD9CM|Vertebral fx NOS-open|Vertebral fx NOS-open +C0435349|T037|HT|806|ICD9CM|Fracture of vertebral column with spinal cord injury|Fracture of vertebral column with spinal cord injury +C0859703|T037|HT|806.0|ICD9CM|Closed fracture of cervical vertebra with spinal cord injury|Closed fracture of cervical vertebra with spinal cord injury +C0159560|T037|AB|806.00|ICD9CM|C1-c4 fx-cl/cord inj NOS|C1-c4 fx-cl/cord inj NOS +C0159560|T037|PT|806.00|ICD9CM|Closed fracture of C1-C4 level with unspecified spinal cord injury|Closed fracture of C1-C4 level with unspecified spinal cord injury +C0435397|T037|AB|806.01|ICD9CM|C1-c4 fx-cl/com cord les|C1-c4 fx-cl/com cord les +C0435397|T037|PT|806.01|ICD9CM|Closed fracture of C1-C4 level with complete lesion of cord|Closed fracture of C1-C4 level with complete lesion of cord +C0159562|T037|AB|806.02|ICD9CM|C1-c4 fx-cl/ant cord syn|C1-c4 fx-cl/ant cord syn +C0159562|T037|PT|806.02|ICD9CM|Closed fracture of C1-C4 level with anterior cord syndrome|Closed fracture of C1-C4 level with anterior cord syndrome +C0159563|T037|AB|806.03|ICD9CM|C1-c4 fx-cl/cen cord syn|C1-c4 fx-cl/cen cord syn +C0159563|T037|PT|806.03|ICD9CM|Closed fracture of C1-C4 level with central cord syndrome|Closed fracture of C1-C4 level with central cord syndrome +C0159564|T037|AB|806.04|ICD9CM|C1-c4 fx-cl/cord inj NEC|C1-c4 fx-cl/cord inj NEC +C0159564|T037|PT|806.04|ICD9CM|Closed fracture of C1-C4 level with other specified spinal cord injury|Closed fracture of C1-C4 level with other specified spinal cord injury +C0159565|T037|AB|806.05|ICD9CM|C5-c7 fx-cl/cord inj NOS|C5-c7 fx-cl/cord inj NOS +C0159565|T037|PT|806.05|ICD9CM|Closed fracture of C5-C7 level with unspecified spinal cord injury|Closed fracture of C5-C7 level with unspecified spinal cord injury +C0435403|T037|AB|806.06|ICD9CM|C5-c7 fx-cl/com cord les|C5-c7 fx-cl/com cord les +C0435403|T037|PT|806.06|ICD9CM|Closed fracture of C5-C7 level with complete lesion of cord|Closed fracture of C5-C7 level with complete lesion of cord +C0159567|T037|AB|806.07|ICD9CM|C5-c7 fx-cl/ant cord syn|C5-c7 fx-cl/ant cord syn +C0159567|T037|PT|806.07|ICD9CM|Closed fracture of C5-C7 level with anterior cord syndrome|Closed fracture of C5-C7 level with anterior cord syndrome +C0159568|T037|AB|806.08|ICD9CM|C5-c7 fx-cl/cen cord syn|C5-c7 fx-cl/cen cord syn +C0159568|T037|PT|806.08|ICD9CM|Closed fracture of C5-C7 level with central cord syndrome|Closed fracture of C5-C7 level with central cord syndrome +C0159569|T037|AB|806.09|ICD9CM|C5-c7 fx-cl/cord inj NEC|C5-c7 fx-cl/cord inj NEC +C0159569|T037|PT|806.09|ICD9CM|Closed fracture of C5-C7 level with other specified spinal cord injury|Closed fracture of C5-C7 level with other specified spinal cord injury +C0859704|T037|HT|806.1|ICD9CM|Open fracture of cervical vertebra with spinal cord injury|Open fracture of cervical vertebra with spinal cord injury +C0159571|T037|AB|806.10|ICD9CM|C1-c4 fx-op/cord inj NOS|C1-c4 fx-op/cord inj NOS +C0159571|T037|PT|806.10|ICD9CM|Open fracture of C1-C4 level with unspecified spinal cord injury|Open fracture of C1-C4 level with unspecified spinal cord injury +C0435410|T037|AB|806.11|ICD9CM|C1-c4 fx-op/com cord les|C1-c4 fx-op/com cord les +C0435410|T037|PT|806.11|ICD9CM|Open fracture of C1-C4 level with complete lesion of cord|Open fracture of C1-C4 level with complete lesion of cord +C0159573|T037|AB|806.12|ICD9CM|C1-c4 fx-op/ant cord syn|C1-c4 fx-op/ant cord syn +C0159573|T037|PT|806.12|ICD9CM|Open fracture of C1-C4 level with anterior cord syndrome|Open fracture of C1-C4 level with anterior cord syndrome +C0159574|T037|AB|806.13|ICD9CM|C1-c4 fx-op/cen cord syn|C1-c4 fx-op/cen cord syn +C0159574|T037|PT|806.13|ICD9CM|Open fracture of C1-C4 level with central cord syndrome|Open fracture of C1-C4 level with central cord syndrome +C0159575|T037|AB|806.14|ICD9CM|C1-c4 fx-op/cord inj NEC|C1-c4 fx-op/cord inj NEC +C0159575|T037|PT|806.14|ICD9CM|Open fracture of C1-C4 level with other specified spinal cord injury|Open fracture of C1-C4 level with other specified spinal cord injury +C0159576|T037|AB|806.15|ICD9CM|C5-c7 fx-op/cord inj NOS|C5-c7 fx-op/cord inj NOS +C0159576|T037|PT|806.15|ICD9CM|Open fracture of C5-C7 level with unspecified spinal cord injury|Open fracture of C5-C7 level with unspecified spinal cord injury +C0435416|T037|AB|806.16|ICD9CM|C5-c7 fx-op/com cord les|C5-c7 fx-op/com cord les +C0435416|T037|PT|806.16|ICD9CM|Open fracture of C5-C7 level with complete lesion of cord|Open fracture of C5-C7 level with complete lesion of cord +C0159578|T037|AB|806.17|ICD9CM|C5-c7 fx-op/ant cord syn|C5-c7 fx-op/ant cord syn +C0159578|T037|PT|806.17|ICD9CM|Open fracture of C5-C7 level with anterior cord syndrome|Open fracture of C5-C7 level with anterior cord syndrome +C0159579|T037|AB|806.18|ICD9CM|C5-c7 fx-op/cen cord syn|C5-c7 fx-op/cen cord syn +C0159579|T037|PT|806.18|ICD9CM|Open fracture of C5-C7 level with central cord syndrome|Open fracture of C5-C7 level with central cord syndrome +C0159580|T037|AB|806.19|ICD9CM|C5-c7 fx-op/cord inj NEC|C5-c7 fx-op/cord inj NEC +C0159580|T037|PT|806.19|ICD9CM|Open fracture of C5-C7 level with other specified spinal cord injury|Open fracture of C5-C7 level with other specified spinal cord injury +C0859705|T037|HT|806.2|ICD9CM|Closed fracture of dorsal vertebra with spinal cord injury|Closed fracture of dorsal vertebra with spinal cord injury +C0159582|T037|PT|806.20|ICD9CM|Closed fracture of T1-T6 level with unspecified spinal cord injury|Closed fracture of T1-T6 level with unspecified spinal cord injury +C0159582|T037|AB|806.20|ICD9CM|T1-t6 fx-cl/cord inj NOS|T1-t6 fx-cl/cord inj NOS +C0435439|T037|PT|806.21|ICD9CM|Closed fracture of T1-T6 level with complete lesion of cord|Closed fracture of T1-T6 level with complete lesion of cord +C0435439|T037|AB|806.21|ICD9CM|T1-t6 fx-cl/com cord les|T1-t6 fx-cl/com cord les +C0159584|T037|PT|806.22|ICD9CM|Closed fracture of T1-T6 level with anterior cord syndrome|Closed fracture of T1-T6 level with anterior cord syndrome +C0159584|T037|AB|806.22|ICD9CM|T1-t6 fx-cl/ant cord syn|T1-t6 fx-cl/ant cord syn +C0159585|T037|PT|806.23|ICD9CM|Closed fracture of T1-T6 level with central cord syndrome|Closed fracture of T1-T6 level with central cord syndrome +C0159585|T037|AB|806.23|ICD9CM|T1-t6 fx-cl/cen cord syn|T1-t6 fx-cl/cen cord syn +C0159586|T037|PT|806.24|ICD9CM|Closed fracture of T1-T6 level with other specified spinal cord injury|Closed fracture of T1-T6 level with other specified spinal cord injury +C0159586|T037|AB|806.24|ICD9CM|T1-t6 fx-cl/cord inj NEC|T1-t6 fx-cl/cord inj NEC +C0159587|T037|PT|806.25|ICD9CM|Closed fracture of T7-T12 level with unspecified spinal cord injury|Closed fracture of T7-T12 level with unspecified spinal cord injury +C0159587|T037|AB|806.25|ICD9CM|T7-t12 fx-cl/crd inj NOS|T7-t12 fx-cl/crd inj NOS +C0435445|T037|PT|806.26|ICD9CM|Closed fracture of T7-T12 level with complete lesion of cord|Closed fracture of T7-T12 level with complete lesion of cord +C0435445|T037|AB|806.26|ICD9CM|T7-t12 fx-cl/com crd les|T7-t12 fx-cl/com crd les +C0159589|T037|PT|806.27|ICD9CM|Closed fracture of T7-T12 level with anterior cord syndrome|Closed fracture of T7-T12 level with anterior cord syndrome +C0159589|T037|AB|806.27|ICD9CM|T7-t12 fx-cl/ant crd syn|T7-t12 fx-cl/ant crd syn +C0159590|T037|PT|806.28|ICD9CM|Closed fracture of T7-T12 level with central cord syndrome|Closed fracture of T7-T12 level with central cord syndrome +C0159590|T037|AB|806.28|ICD9CM|T7-t12 fx-cl/cen crd syn|T7-t12 fx-cl/cen crd syn +C0159591|T037|PT|806.29|ICD9CM|Closed fracture of T7-T12 level with other specified spinal cord injury|Closed fracture of T7-T12 level with other specified spinal cord injury +C0159591|T037|AB|806.29|ICD9CM|T7-t12 fx-cl/crd inj NEC|T7-t12 fx-cl/crd inj NEC +C0859706|T037|HT|806.3|ICD9CM|Open fracture of dorsal vertebra with spinal cord injury|Open fracture of dorsal vertebra with spinal cord injury +C0159593|T037|PT|806.30|ICD9CM|Open fracture of T1-T6 level with unspecified spinal cord injury|Open fracture of T1-T6 level with unspecified spinal cord injury +C0159593|T037|AB|806.30|ICD9CM|T1-t6 fx-op/cord inj NOS|T1-t6 fx-op/cord inj NOS +C0435452|T037|PT|806.31|ICD9CM|Open fracture of T1-T6 level with complete lesion of cord|Open fracture of T1-T6 level with complete lesion of cord +C0435452|T037|AB|806.31|ICD9CM|T1-t6 fx-op/com cord les|T1-t6 fx-op/com cord les +C0159595|T037|PT|806.32|ICD9CM|Open fracture of T1-T6 level with anterior cord syndrome|Open fracture of T1-T6 level with anterior cord syndrome +C0159595|T037|AB|806.32|ICD9CM|T1-t6 fx-op/ant cord syn|T1-t6 fx-op/ant cord syn +C0159596|T037|PT|806.33|ICD9CM|Open fracture of T1-T6 level with central cord syndrome|Open fracture of T1-T6 level with central cord syndrome +C0159596|T037|AB|806.33|ICD9CM|T1-t6 fx-op/cen cord syn|T1-t6 fx-op/cen cord syn +C0159597|T037|PT|806.34|ICD9CM|Open fracture of T1-T6 level with other specified spinal cord injury|Open fracture of T1-T6 level with other specified spinal cord injury +C0159597|T037|AB|806.34|ICD9CM|T1-t6 fx-op/cord inj NEC|T1-t6 fx-op/cord inj NEC +C0159598|T037|PT|806.35|ICD9CM|Open fracture of T7-T12 level with unspecified spinal cord injury|Open fracture of T7-T12 level with unspecified spinal cord injury +C0159598|T037|AB|806.35|ICD9CM|T7-t12 fx-op/crd inj NOS|T7-t12 fx-op/crd inj NOS +C0435457|T037|PT|806.36|ICD9CM|Open fracture of T7-T12 level with complete lesion of cord|Open fracture of T7-T12 level with complete lesion of cord +C0435457|T037|AB|806.36|ICD9CM|T7-t12 fx-op/com crd les|T7-t12 fx-op/com crd les +C0159600|T037|PT|806.37|ICD9CM|Open fracture of T7-T12 level with anterior cord syndrome|Open fracture of T7-T12 level with anterior cord syndrome +C0159600|T037|AB|806.37|ICD9CM|T7-t12 fx-op/ant crd syn|T7-t12 fx-op/ant crd syn +C0159601|T037|PT|806.38|ICD9CM|Open fracture of T7-T12 level with central cord syndrome|Open fracture of T7-T12 level with central cord syndrome +C0159601|T037|AB|806.38|ICD9CM|T7-t12 fx-op/cen crd syn|T7-t12 fx-op/cen crd syn +C0159602|T037|PT|806.39|ICD9CM|Open fracture of T7-T12 level with other specified spinal cord injury|Open fracture of T7-T12 level with other specified spinal cord injury +C0159602|T037|AB|806.39|ICD9CM|T7-t12 fx-op/crd inj NEC|T7-t12 fx-op/crd inj NEC +C3665459|T037|AB|806.4|ICD9CM|Cl lumbar fx w cord inj|Cl lumbar fx w cord inj +C3665459|T037|PT|806.4|ICD9CM|Closed fracture of lumbar spine with spinal cord injury|Closed fracture of lumbar spine with spinal cord injury +C0435484|T037|PT|806.5|ICD9CM|Open fracture of lumbar spine with spinal cord injury|Open fracture of lumbar spine with spinal cord injury +C0435484|T037|AB|806.5|ICD9CM|Opn lumbar fx w cord inj|Opn lumbar fx w cord inj +C0159606|T037|HT|806.6|ICD9CM|Closed fracture of sacrum and coccyx with spinal cord injury|Closed fracture of sacrum and coccyx with spinal cord injury +C0159606|T037|PT|806.60|ICD9CM|Closed fracture of sacrum and coccyx with unspecified spinal cord injury|Closed fracture of sacrum and coccyx with unspecified spinal cord injury +C0159606|T037|AB|806.60|ICD9CM|Fx sacrum-cl/crd inj NOS|Fx sacrum-cl/crd inj NOS +C0159607|T037|PT|806.61|ICD9CM|Closed fracture of sacrum and coccyx with complete cauda equina lesion|Closed fracture of sacrum and coccyx with complete cauda equina lesion +C0159607|T037|AB|806.61|ICD9CM|Fx sacr-cl/cauda equ les|Fx sacr-cl/cauda equ les +C0159608|T037|PT|806.62|ICD9CM|Closed fracture of sacrum and coccyx with other cauda equina injury|Closed fracture of sacrum and coccyx with other cauda equina injury +C0159608|T037|AB|806.62|ICD9CM|Fx sacr-cl/cauda inj NEC|Fx sacr-cl/cauda inj NEC +C0159609|T037|PT|806.69|ICD9CM|Closed fracture of sacrum and coccyx with other spinal cord injury|Closed fracture of sacrum and coccyx with other spinal cord injury +C0159609|T037|AB|806.69|ICD9CM|Fx sacrum-cl/crd inj NEC|Fx sacrum-cl/crd inj NEC +C0159611|T037|HT|806.7|ICD9CM|Open fracture of sacrum and coccyx with spinal cord injury|Open fracture of sacrum and coccyx with spinal cord injury +C0159611|T037|AB|806.70|ICD9CM|Fx sacrum-op/crd inj NOS|Fx sacrum-op/crd inj NOS +C0159611|T037|PT|806.70|ICD9CM|Open fracture of sacrum and coccyx with unspecified spinal cord injury|Open fracture of sacrum and coccyx with unspecified spinal cord injury +C0159612|T037|AB|806.71|ICD9CM|Fx sacr-op/cauda equ les|Fx sacr-op/cauda equ les +C0159612|T037|PT|806.71|ICD9CM|Open fracture of sacrum and coccyx with complete cauda equina lesion|Open fracture of sacrum and coccyx with complete cauda equina lesion +C0159613|T037|AB|806.72|ICD9CM|Fx sacr-op/cauda inj NEC|Fx sacr-op/cauda inj NEC +C0159613|T037|PT|806.72|ICD9CM|Open fracture of sacrum and coccyx with other cauda equina injury|Open fracture of sacrum and coccyx with other cauda equina injury +C0159614|T037|AB|806.79|ICD9CM|Fx sacrum-op/crd inj NEC|Fx sacrum-op/crd inj NEC +C0159614|T037|PT|806.79|ICD9CM|Open fracture of sacrum and coccyx with other spinal cord injury|Open fracture of sacrum and coccyx with other spinal cord injury +C0159615|T037|PT|806.8|ICD9CM|Closed fracture of unspecified vertebral column with spinal cord injury|Closed fracture of unspecified vertebral column with spinal cord injury +C0159615|T037|AB|806.8|ICD9CM|Vert fx NOS-cl w crd inj|Vert fx NOS-cl w crd inj +C0159616|T037|PT|806.9|ICD9CM|Open fracture of unspecified vertebral column with spinal cord injury|Open fracture of unspecified vertebral column with spinal cord injury +C0159616|T037|AB|806.9|ICD9CM|Vert fx NOS-op w crd inj|Vert fx NOS-op w crd inj +C0159617|T037|HT|807|ICD9CM|Fracture of rib(s), sternum, larynx, and trachea|Fracture of rib(s), sternum, larynx, and trachea +C0435750|T037|HT|807.0|ICD9CM|Closed fracture of rib(s)|Closed fracture of rib(s) +C0435750|T037|PT|807.00|ICD9CM|Closed fracture of rib(s), unspecified|Closed fracture of rib(s), unspecified +C0435750|T037|AB|807.00|ICD9CM|Fracture rib NOS-closed|Fracture rib NOS-closed +C0159618|T037|PT|807.01|ICD9CM|Closed fracture of one rib|Closed fracture of one rib +C0159618|T037|AB|807.01|ICD9CM|Fracture one rib-closed|Fracture one rib-closed +C0159619|T037|PT|807.02|ICD9CM|Closed fracture of two ribs|Closed fracture of two ribs +C0159619|T037|AB|807.02|ICD9CM|Fracture two ribs-closed|Fracture two ribs-closed +C0159620|T037|PT|807.03|ICD9CM|Closed fracture of three ribs|Closed fracture of three ribs +C0159620|T037|AB|807.03|ICD9CM|Fracture three ribs-clos|Fracture three ribs-clos +C0159621|T037|PT|807.04|ICD9CM|Closed fracture of four ribs|Closed fracture of four ribs +C0159621|T037|AB|807.04|ICD9CM|Fracture four ribs-close|Fracture four ribs-close +C0159622|T037|PT|807.05|ICD9CM|Closed fracture of five ribs|Closed fracture of five ribs +C0159622|T037|AB|807.05|ICD9CM|Fracture five ribs-close|Fracture five ribs-close +C0159623|T037|PT|807.06|ICD9CM|Closed fracture of six ribs|Closed fracture of six ribs +C0159623|T037|AB|807.06|ICD9CM|Fracture six ribs-closed|Fracture six ribs-closed +C0159624|T037|PT|807.07|ICD9CM|Closed fracture of seven ribs|Closed fracture of seven ribs +C0159624|T037|AB|807.07|ICD9CM|Fracture seven ribs-clos|Fracture seven ribs-clos +C0159625|T037|PT|807.08|ICD9CM|Closed fracture of eight or more ribs|Closed fracture of eight or more ribs +C0159625|T037|AB|807.08|ICD9CM|Fx eight/more rib-closed|Fx eight/more rib-closed +C0159626|T037|PT|807.09|ICD9CM|Closed fracture of multiple ribs, unspecified|Closed fracture of multiple ribs, unspecified +C0159626|T037|AB|807.09|ICD9CM|Fx mult ribs NOS-closed|Fx mult ribs NOS-closed +C0435751|T037|HT|807.1|ICD9CM|Open fracture of rib(s)|Open fracture of rib(s) +C0435751|T037|AB|807.10|ICD9CM|Fracture rib NOS-open|Fracture rib NOS-open +C0435751|T037|PT|807.10|ICD9CM|Open fracture of rib(s), unspecified|Open fracture of rib(s), unspecified +C0159628|T037|AB|807.11|ICD9CM|Fracture one rib-open|Fracture one rib-open +C0159628|T037|PT|807.11|ICD9CM|Open fracture of one rib|Open fracture of one rib +C0159629|T037|AB|807.12|ICD9CM|Fracture two ribs-open|Fracture two ribs-open +C0159629|T037|PT|807.12|ICD9CM|Open fracture of two ribs|Open fracture of two ribs +C0159630|T037|AB|807.13|ICD9CM|Fracture three ribs-open|Fracture three ribs-open +C0159630|T037|PT|807.13|ICD9CM|Open fracture of three ribs|Open fracture of three ribs +C0159631|T037|AB|807.14|ICD9CM|Fracture four ribs-open|Fracture four ribs-open +C0159631|T037|PT|807.14|ICD9CM|Open fracture of four ribs|Open fracture of four ribs +C0159632|T037|AB|807.15|ICD9CM|Fracture five ribs-open|Fracture five ribs-open +C0159632|T037|PT|807.15|ICD9CM|Open fracture of five ribs|Open fracture of five ribs +C0159633|T037|AB|807.16|ICD9CM|Fracture six ribs-open|Fracture six ribs-open +C0159633|T037|PT|807.16|ICD9CM|Open fracture of six ribs|Open fracture of six ribs +C0159634|T037|AB|807.17|ICD9CM|Fracture seven ribs-open|Fracture seven ribs-open +C0159634|T037|PT|807.17|ICD9CM|Open fracture of seven ribs|Open fracture of seven ribs +C0159635|T037|AB|807.18|ICD9CM|Fx eight/more ribs-open|Fx eight/more ribs-open +C0159635|T037|PT|807.18|ICD9CM|Open fracture of eight or more ribs|Open fracture of eight or more ribs +C0159636|T037|AB|807.19|ICD9CM|Fx mult ribs NOS-open|Fx mult ribs NOS-open +C0159636|T037|PT|807.19|ICD9CM|Open fracture of multiple ribs, unspecified|Open fracture of multiple ribs, unspecified +C0159637|T037|PT|807.2|ICD9CM|Closed fracture of sternum|Closed fracture of sternum +C0159637|T037|AB|807.2|ICD9CM|Fracture of sternum-clos|Fracture of sternum-clos +C0159638|T037|AB|807.3|ICD9CM|Fracture of sternum-open|Fracture of sternum-open +C0159638|T037|PT|807.3|ICD9CM|Open fracture of sternum|Open fracture of sternum +C0016196|T037|AB|807.4|ICD9CM|Flail chest|Flail chest +C0016196|T037|PT|807.4|ICD9CM|Flail chest|Flail chest +C0159639|T037|PT|807.5|ICD9CM|Closed fracture of larynx and trachea|Closed fracture of larynx and trachea +C0159639|T037|AB|807.5|ICD9CM|Fx larynx/trachea-closed|Fx larynx/trachea-closed +C0159640|T037|AB|807.6|ICD9CM|Fx larynx/trachea-open|Fx larynx/trachea-open +C0159640|T037|PT|807.6|ICD9CM|Open fracture of larynx and trachea|Open fracture of larynx and trachea +C0149531|T037|HT|808|ICD9CM|Fracture of pelvis|Fracture of pelvis +C0159641|T037|PT|808.0|ICD9CM|Closed fracture of acetabulum|Closed fracture of acetabulum +C0159641|T037|AB|808.0|ICD9CM|Fracture acetabulum-clos|Fracture acetabulum-clos +C0159642|T037|AB|808.1|ICD9CM|Fracture acetabulum-open|Fracture acetabulum-open +C0159642|T037|PT|808.1|ICD9CM|Open fracture of acetabulum|Open fracture of acetabulum +C0159643|T037|PT|808.2|ICD9CM|Closed fracture of pubis|Closed fracture of pubis +C0159643|T037|AB|808.2|ICD9CM|Fracture of pubis-closed|Fracture of pubis-closed +C0159644|T037|AB|808.3|ICD9CM|Fracture of pubis-open|Fracture of pubis-open +C0159644|T037|PT|808.3|ICD9CM|Open fracture of pubis|Open fracture of pubis +C0159645|T037|HT|808.4|ICD9CM|Closed fracture of other specified part of pelvis|Closed fracture of other specified part of pelvis +C0159646|T037|PT|808.41|ICD9CM|Closed fracture of ilium|Closed fracture of ilium +C0159646|T037|AB|808.41|ICD9CM|Fracture of ilium-closed|Fracture of ilium-closed +C0159647|T037|PT|808.42|ICD9CM|Closed fracture of ischium|Closed fracture of ischium +C0159647|T037|AB|808.42|ICD9CM|Fracture ischium-closed|Fracture ischium-closed +C0272580|T037|PT|808.43|ICD9CM|Multiple closed pelvic fractures with disruption of pelvic circle|Multiple closed pelvic fractures with disruption of pelvic circle +C0272580|T037|AB|808.43|ICD9CM|Pelv fx-clos/pelv disrup|Pelv fx-clos/pelv disrup +C3161129|T037|PT|808.44|ICD9CM|Multiple closed pelvic fractures without disruption of pelvic circle|Multiple closed pelvic fractures without disruption of pelvic circle +C3161129|T037|AB|808.44|ICD9CM|Pelv fx-cl w/o plv disrp|Pelv fx-cl w/o plv disrp +C0159645|T037|PT|808.49|ICD9CM|Closed fracture of other specified part of pelvis|Closed fracture of other specified part of pelvis +C0159645|T037|AB|808.49|ICD9CM|Pelvic fracture NEC-clos|Pelvic fracture NEC-clos +C0159649|T037|HT|808.5|ICD9CM|Open fracture of other specified part of pelvis|Open fracture of other specified part of pelvis +C0435771|T037|AB|808.51|ICD9CM|Fracture of ilium-open|Fracture of ilium-open +C0435771|T037|PT|808.51|ICD9CM|Open fracture of ilium|Open fracture of ilium +C0159651|T037|AB|808.52|ICD9CM|Fracture of ischium-open|Fracture of ischium-open +C0159651|T037|PT|808.52|ICD9CM|Open fracture of ischium|Open fracture of ischium +C0272582|T037|PT|808.53|ICD9CM|Multiple open pelvic fractures with disruption of pelvic circle|Multiple open pelvic fractures with disruption of pelvic circle +C0272582|T037|AB|808.53|ICD9CM|Pelv fx-open/pelv disrup|Pelv fx-open/pelv disrup +C3161130|T037|PT|808.54|ICD9CM|Multiple open pelvic fractures without disruption of pelvic circle|Multiple open pelvic fractures without disruption of pelvic circle +C3161130|T037|AB|808.54|ICD9CM|Pelv fx-opn w/o pelv dis|Pelv fx-opn w/o pelv dis +C0159649|T037|PT|808.59|ICD9CM|Open fracture of other specified part of pelvis|Open fracture of other specified part of pelvis +C0159649|T037|AB|808.59|ICD9CM|Pelvic fracture NEC-open|Pelvic fracture NEC-open +C0272576|T037|PT|808.8|ICD9CM|Closed unspecified fracture of pelvis|Closed unspecified fracture of pelvis +C0272576|T037|AB|808.8|ICD9CM|Pelvic fracture NOS-clos|Pelvic fracture NOS-clos +C0272577|T037|PT|808.9|ICD9CM|Open unspecified fracture of pelvis|Open unspecified fracture of pelvis +C0272577|T037|AB|808.9|ICD9CM|Pelvic fracture NOS-open|Pelvic fracture NOS-open +C0159655|T037|HT|809|ICD9CM|Ill-defined fractures of bones of trunk|Ill-defined fractures of bones of trunk +C0159656|T037|PT|809.0|ICD9CM|Fracture of bones of trunk, closed|Fracture of bones of trunk, closed +C0159656|T037|AB|809.0|ICD9CM|Fracture trunk bone-clos|Fracture trunk bone-clos +C0159657|T037|PT|809.1|ICD9CM|Fracture of bones of trunk, open|Fracture of bones of trunk, open +C0159657|T037|AB|809.1|ICD9CM|Fracture trunk bone-open|Fracture trunk bone-open +C0159658|T037|HT|810|ICD9CM|Fracture of clavicle|Fracture of clavicle +C0178316|T037|HT|810-819.99|ICD9CM|FRACTURE OF UPPER LIMB|FRACTURE OF UPPER LIMB +C0159659|T037|HT|810.0|ICD9CM|Closed fracture of clavicle|Closed fracture of clavicle +C0159659|T037|PT|810.00|ICD9CM|Closed fracture of clavicle, unspecified part|Closed fracture of clavicle, unspecified part +C0159659|T037|AB|810.00|ICD9CM|Fx clavicle NOS-closed|Fx clavicle NOS-closed +C0435521|T037|PT|810.01|ICD9CM|Closed fracture of sternal end of clavicle|Closed fracture of sternal end of clavicle +C0435521|T037|AB|810.01|ICD9CM|Fx clavicl, stern end-cl|Fx clavicl, stern end-cl +C0159661|T037|PT|810.02|ICD9CM|Closed fracture of shaft of clavicle|Closed fracture of shaft of clavicle +C0159661|T037|AB|810.02|ICD9CM|Fx clavicle shaft-closed|Fx clavicle shaft-closed +C0435522|T037|PT|810.03|ICD9CM|Closed fracture of acromial end of clavicle|Closed fracture of acromial end of clavicle +C0435522|T037|AB|810.03|ICD9CM|Fx clavicl, acrom end-cl|Fx clavicl, acrom end-cl +C0159663|T037|HT|810.1|ICD9CM|Open fracture of clavicle|Open fracture of clavicle +C0159663|T037|AB|810.10|ICD9CM|Fx clavicle NOS-open|Fx clavicle NOS-open +C0159663|T037|PT|810.10|ICD9CM|Open fracture of clavicle, unspecified part|Open fracture of clavicle, unspecified part +C0435523|T037|AB|810.11|ICD9CM|Fx clavic, stern end-opn|Fx clavic, stern end-opn +C0435523|T037|PT|810.11|ICD9CM|Open fracture of sternal end of clavicle|Open fracture of sternal end of clavicle +C0159665|T037|AB|810.12|ICD9CM|Fx clavicle shaft-open|Fx clavicle shaft-open +C0159665|T037|PT|810.12|ICD9CM|Open fracture of shaft of clavicle|Open fracture of shaft of clavicle +C0435524|T037|AB|810.13|ICD9CM|Fx clavic, acrom end-opn|Fx clavic, acrom end-opn +C0435524|T037|PT|810.13|ICD9CM|Open fracture of acromial end of clavicle|Open fracture of acromial end of clavicle +C0159667|T037|HT|811|ICD9CM|Fracture of scapula|Fracture of scapula +C0159668|T037|HT|811.0|ICD9CM|Closed fracture of scapula|Closed fracture of scapula +C0159668|T037|PT|811.00|ICD9CM|Closed fracture of scapula, unspecified part|Closed fracture of scapula, unspecified part +C0159668|T037|AB|811.00|ICD9CM|Fx scapula NOS-closed|Fx scapula NOS-closed +C0159669|T037|PT|811.01|ICD9CM|Closed fracture of acromial process of scapula|Closed fracture of acromial process of scapula +C0159669|T037|AB|811.01|ICD9CM|Fx scapul, acrom proc-cl|Fx scapul, acrom proc-cl +C0435525|T037|PT|811.02|ICD9CM|Closed fracture of coracoid process of scapula|Closed fracture of coracoid process of scapula +C0435525|T037|AB|811.02|ICD9CM|Fx scapul, corac proc-cl|Fx scapul, corac proc-cl +C0159671|T037|PT|811.03|ICD9CM|Closed fracture of glenoid cavity and neck of scapula|Closed fracture of glenoid cavity and neck of scapula +C0159671|T037|AB|811.03|ICD9CM|Fx scap, glen cav/nck-cl|Fx scap, glen cav/nck-cl +C0159672|T037|PT|811.09|ICD9CM|Closed fracture of scapula, other|Closed fracture of scapula, other +C0159672|T037|AB|811.09|ICD9CM|Fx scapula NEC-closed|Fx scapula NEC-closed +C0159673|T037|HT|811.1|ICD9CM|Open fracture of scapula|Open fracture of scapula +C0159673|T037|AB|811.10|ICD9CM|Fx scapula NOS-open|Fx scapula NOS-open +C0159673|T037|PT|811.10|ICD9CM|Open fracture of scapula, unspecified part|Open fracture of scapula, unspecified part +C0159674|T037|AB|811.11|ICD9CM|Fx scapul, acrom proc-op|Fx scapul, acrom proc-op +C0159674|T037|PT|811.11|ICD9CM|Open fracture of acromial process of scapula|Open fracture of acromial process of scapula +C0159675|T037|AB|811.12|ICD9CM|Fx scapul, corac proc-op|Fx scapul, corac proc-op +C0159675|T037|PT|811.12|ICD9CM|Open fracture of coracoid process|Open fracture of coracoid process +C1306154|T037|AB|811.13|ICD9CM|Fx scap, glen cav/nck-op|Fx scap, glen cav/nck-op +C1306154|T037|PT|811.13|ICD9CM|Open fracture of glenoid cavity and neck of scapula|Open fracture of glenoid cavity and neck of scapula +C0159677|T037|AB|811.19|ICD9CM|Fx scapula NEC-open|Fx scapula NEC-open +C0159677|T037|PT|811.19|ICD9CM|Open fracture of scapula, other|Open fracture of scapula, other +C0020162|T037|HT|812|ICD9CM|Fracture of humerus|Fracture of humerus +C0159678|T037|HT|812.0|ICD9CM|Fracture of upper end of humerus, closed|Fracture of upper end of humerus, closed +C0159679|T037|PT|812.00|ICD9CM|Closed fracture of unspecified part of upper end of humerus|Closed fracture of unspecified part of upper end of humerus +C0159679|T037|AB|812.00|ICD9CM|Fx up end humerus NOS-cl|Fx up end humerus NOS-cl +C0159680|T037|PT|812.01|ICD9CM|Closed fracture of surgical neck of humerus|Closed fracture of surgical neck of humerus +C0159680|T037|AB|812.01|ICD9CM|Fx surg nck humerus-clos|Fx surg nck humerus-clos +C0435532|T037|PT|812.02|ICD9CM|Closed fracture of anatomical neck of humerus|Closed fracture of anatomical neck of humerus +C0435532|T037|AB|812.02|ICD9CM|Fx anatom nck humerus-cl|Fx anatom nck humerus-cl +C0435533|T037|PT|812.03|ICD9CM|Closed fracture of greater tuberosity of humerus|Closed fracture of greater tuberosity of humerus +C0435533|T037|AB|812.03|ICD9CM|Fx gr tuberos humerus-cl|Fx gr tuberos humerus-cl +C0159683|T037|AB|812.09|ICD9CM|Fx upper humerus NEC-cl|Fx upper humerus NEC-cl +C0159683|T037|PT|812.09|ICD9CM|Other closed fracture of upper end of humerus|Other closed fracture of upper end of humerus +C0159684|T037|HT|812.1|ICD9CM|Fracture of upper end of humerus, open|Fracture of upper end of humerus, open +C0159685|T037|AB|812.10|ICD9CM|Fx upper humerus NOS-opn|Fx upper humerus NOS-opn +C0159685|T037|PT|812.10|ICD9CM|Open fracture of unspecified part of upper end of humerus|Open fracture of unspecified part of upper end of humerus +C0159686|T037|AB|812.11|ICD9CM|Fx surg neck humerus-opn|Fx surg neck humerus-opn +C0159686|T037|PT|812.11|ICD9CM|Open fracture of surgical neck of humerus|Open fracture of surgical neck of humerus +C0435539|T037|AB|812.12|ICD9CM|Fx anat neck humerus-opn|Fx anat neck humerus-opn +C0435539|T037|PT|812.12|ICD9CM|Open fracture of anatomical neck of humerus|Open fracture of anatomical neck of humerus +C0435540|T037|AB|812.13|ICD9CM|Fx gr tuberos humer-open|Fx gr tuberos humer-open +C0435540|T037|PT|812.13|ICD9CM|Open fracture of greater tuberosity of humerus|Open fracture of greater tuberosity of humerus +C0159689|T037|AB|812.19|ICD9CM|Fx upper humerus NEC-opn|Fx upper humerus NEC-opn +C0159689|T037|PT|812.19|ICD9CM|Other open fracture of upper end of humerus|Other open fracture of upper end of humerus +C0159690|T037|HT|812.2|ICD9CM|Closed fracture of shaft or unspecified part of humerus|Closed fracture of shaft or unspecified part of humerus +C0272609|T037|PT|812.20|ICD9CM|Closed fracture of unspecified part of humerus|Closed fracture of unspecified part of humerus +C0272609|T037|AB|812.20|ICD9CM|Fx humerus NOS-closed|Fx humerus NOS-closed +C0159692|T037|PT|812.21|ICD9CM|Closed fracture of shaft of humerus|Closed fracture of shaft of humerus +C0159692|T037|AB|812.21|ICD9CM|Fx humerus shaft-closed|Fx humerus shaft-closed +C0159693|T037|HT|812.3|ICD9CM|Fracture of shaft or unspecified part of humerus, open|Fracture of shaft or unspecified part of humerus, open +C0272610|T037|AB|812.30|ICD9CM|Fx humerus NOS-open|Fx humerus NOS-open +C0272610|T037|PT|812.30|ICD9CM|Open fracture of unspecified part of humerus|Open fracture of unspecified part of humerus +C0159695|T037|AB|812.31|ICD9CM|Fx humerus shaft-open|Fx humerus shaft-open +C0159695|T037|PT|812.31|ICD9CM|Open fracture of shaft of humerus|Open fracture of shaft of humerus +C0555330|T037|HT|812.4|ICD9CM|Fracture of lower end of humerus, closed|Fracture of lower end of humerus, closed +C0555330|T037|PT|812.40|ICD9CM|Closed fracture of unspecified part of lower end of humerus|Closed fracture of unspecified part of lower end of humerus +C0555330|T037|AB|812.40|ICD9CM|Fx lower humerus NOS-cl|Fx lower humerus NOS-cl +C0435569|T037|PT|812.41|ICD9CM|Closed supracondylar fracture of humerus|Closed supracondylar fracture of humerus +C0435569|T037|AB|812.41|ICD9CM|Suprcondyl fx humerus-cl|Suprcondyl fx humerus-cl +C0435552|T037|PT|812.42|ICD9CM|Closed fracture of lateral condyle of humerus|Closed fracture of lateral condyle of humerus +C0435552|T037|AB|812.42|ICD9CM|Fx humer, lat condyl-cl|Fx humer, lat condyl-cl +C0435553|T037|PT|812.43|ICD9CM|Closed fracture of medial condyle of humerus|Closed fracture of medial condyle of humerus +C0435553|T037|AB|812.43|ICD9CM|Fx humer, med condyl-cl|Fx humer, med condyl-cl +C0159701|T037|PT|812.44|ICD9CM|Closed fracture of unspecified condyle(s) of humerus|Closed fracture of unspecified condyle(s) of humerus +C0159701|T037|AB|812.44|ICD9CM|Fx humer, condyl NOS-cl|Fx humer, condyl NOS-cl +C0159702|T037|AB|812.49|ICD9CM|Fx lower humerus NEC-cl|Fx lower humerus NEC-cl +C0159702|T037|PT|812.49|ICD9CM|Other closed fracture of lower end of humerus|Other closed fracture of lower end of humerus +C0555332|T037|HT|812.5|ICD9CM|Fracture of lower end of humerus, open|Fracture of lower end of humerus, open +C0555332|T037|AB|812.50|ICD9CM|Fx lower humer NOS-open|Fx lower humer NOS-open +C0555332|T037|PT|812.50|ICD9CM|Open fracture of unspecified part of lower end of humerus|Open fracture of unspecified part of lower end of humerus +C0435570|T037|PT|812.51|ICD9CM|Open supracondylar fracture of humerus|Open supracondylar fracture of humerus +C0435570|T037|AB|812.51|ICD9CM|Supracondyl fx humer-opn|Supracondyl fx humer-opn +C0435563|T037|AB|812.52|ICD9CM|Fx humer, lat condyl-opn|Fx humer, lat condyl-opn +C0435563|T037|PT|812.52|ICD9CM|Open fracture of lateral condyle of humerus|Open fracture of lateral condyle of humerus +C0435564|T037|AB|812.53|ICD9CM|Fx humer, med condyl-opn|Fx humer, med condyl-opn +C0435564|T037|PT|812.53|ICD9CM|Open fracture of medial condyle of humerus|Open fracture of medial condyle of humerus +C0159708|T037|AB|812.54|ICD9CM|Fx humer, condyl NOS-opn|Fx humer, condyl NOS-opn +C0159708|T037|PT|812.54|ICD9CM|Open fracture of unspecified condyle(s) of humerus|Open fracture of unspecified condyle(s) of humerus +C0159709|T037|AB|812.59|ICD9CM|Fx lower humer NEC-open|Fx lower humer NEC-open +C0159709|T037|PT|812.59|ICD9CM|Other open fracture of lower end of humerus|Other open fracture of lower end of humerus +C0159710|T037|HT|813|ICD9CM|Fracture of radius and ulna|Fracture of radius and ulna +C0435623|T037|HT|813.0|ICD9CM|Fracture of upper end of radius and ulna, closed|Fracture of upper end of radius and ulna, closed +C0375623|T037|PT|813.00|ICD9CM|Closed fracture of upper end of forearm, unspecified|Closed fracture of upper end of forearm, unspecified +C0375623|T037|AB|813.00|ICD9CM|Fx upper forearm NOS-cl|Fx upper forearm NOS-cl +C0159713|T037|PT|813.01|ICD9CM|Closed fracture of olecranon process of ulna|Closed fracture of olecranon process of ulna +C0159713|T037|AB|813.01|ICD9CM|Fx olecran proc ulna-cl|Fx olecran proc ulna-cl +C0435603|T037|PT|813.02|ICD9CM|Closed fracture of coronoid process of ulna|Closed fracture of coronoid process of ulna +C0435603|T037|AB|813.02|ICD9CM|Fx coronoid proc ulna-cl|Fx coronoid proc ulna-cl +C0026509|T037|PT|813.03|ICD9CM|Closed Monteggia's fracture|Closed Monteggia's fracture +C0026509|T037|AB|813.03|ICD9CM|Monteggia's fx-closed|Monteggia's fx-closed +C0159715|T037|AB|813.04|ICD9CM|Fx upper ulna NEC/NOS-cl|Fx upper ulna NEC/NOS-cl +C0159715|T037|PT|813.04|ICD9CM|Other and unspecified closed fractures of proximal end of ulna (alone)|Other and unspecified closed fractures of proximal end of ulna (alone) +C0159716|T037|PT|813.05|ICD9CM|Closed fracture of head of radius|Closed fracture of head of radius +C0159716|T037|AB|813.05|ICD9CM|Fx radius head-closed|Fx radius head-closed +C0159717|T037|PT|813.06|ICD9CM|Closed fracture of neck of radius|Closed fracture of neck of radius +C0159717|T037|AB|813.06|ICD9CM|Fx radius neck-closed|Fx radius neck-closed +C0159718|T037|AB|813.07|ICD9CM|Fx up radius NEC/NOS-cl|Fx up radius NEC/NOS-cl +C0159718|T037|PT|813.07|ICD9CM|Other and unspecified closed fractures of proximal end of radius (alone)|Other and unspecified closed fractures of proximal end of radius (alone) +C0435623|T037|PT|813.08|ICD9CM|Closed fracture of radius with ulna, upper end [any part]|Closed fracture of radius with ulna, upper end [any part] +C0435623|T037|AB|813.08|ICD9CM|Fx up radius w ulna-clos|Fx up radius w ulna-clos +C0159720|T037|HT|813.1|ICD9CM|Fracture of upper end of radius and ulna, open|Fracture of upper end of radius and ulna, open +C0375624|T037|AB|813.10|ICD9CM|Fx upper forearm NOS-opn|Fx upper forearm NOS-opn +C0375624|T037|PT|813.10|ICD9CM|Open fracture of upper end of forearm, unspecified|Open fracture of upper end of forearm, unspecified +C0159722|T037|AB|813.11|ICD9CM|Fx olecran proc ulna-opn|Fx olecran proc ulna-opn +C0159722|T037|PT|813.11|ICD9CM|Open fracture of olecranon process of ulna|Open fracture of olecranon process of ulna +C0159723|T037|AB|813.12|ICD9CM|Fx coronoid pro ulna-opn|Fx coronoid pro ulna-opn +C0159723|T037|PT|813.12|ICD9CM|Open fracture of coronoid process of ulna|Open fracture of coronoid process of ulna +C0159724|T037|AB|813.13|ICD9CM|Monteggia's fx-open|Monteggia's fx-open +C0159724|T037|PT|813.13|ICD9CM|Open Monteggia's fracture|Open Monteggia's fracture +C0159725|T037|AB|813.14|ICD9CM|Fx up ulna NEC/NOS-open|Fx up ulna NEC/NOS-open +C0159725|T037|PT|813.14|ICD9CM|Other and unspecified open fractures of proximal end of ulna (alone)|Other and unspecified open fractures of proximal end of ulna (alone) +C0159726|T037|AB|813.15|ICD9CM|Fx radius head-open|Fx radius head-open +C0159726|T037|PT|813.15|ICD9CM|Open fracture of head of radius|Open fracture of head of radius +C0159727|T037|AB|813.16|ICD9CM|Fx radius neck-open|Fx radius neck-open +C0159727|T037|PT|813.16|ICD9CM|Open fracture of neck of radius|Open fracture of neck of radius +C0159728|T037|AB|813.17|ICD9CM|Fx up radius NEC/NOS-opn|Fx up radius NEC/NOS-opn +C0159728|T037|PT|813.17|ICD9CM|Other and unspecified open fractures of proximal end of radius (alone)|Other and unspecified open fractures of proximal end of radius (alone) +C0159720|T037|AB|813.18|ICD9CM|Fx up radius w ulna-open|Fx up radius w ulna-open +C0159720|T037|PT|813.18|ICD9CM|Open fracture of radius with ulna, upper end (any part)|Open fracture of radius with ulna, upper end (any part) +C0159730|T037|HT|813.2|ICD9CM|Fracture of shaft of radius and ulna, closed|Fracture of shaft of radius and ulna, closed +C0159731|T037|PT|813.20|ICD9CM|Closed fracture of shaft of radius or ulna, unspecified|Closed fracture of shaft of radius or ulna, unspecified +C0159731|T037|AB|813.20|ICD9CM|Fx shaft forearm NOS-cl|Fx shaft forearm NOS-cl +C0272638|T037|PT|813.21|ICD9CM|Closed fracture of shaft of radius (alone)|Closed fracture of shaft of radius (alone) +C0272638|T037|AB|813.21|ICD9CM|Fx radius shaft-closed|Fx radius shaft-closed +C0159733|T037|PT|813.22|ICD9CM|Closed fracture of shaft of ulna (alone)|Closed fracture of shaft of ulna (alone) +C0159733|T037|AB|813.22|ICD9CM|Fx ulna shaft-closed|Fx ulna shaft-closed +C0159730|T037|PT|813.23|ICD9CM|Closed fracture of shaft of radius with ulna|Closed fracture of shaft of radius with ulna +C0159730|T037|AB|813.23|ICD9CM|Fx shaft rad w ulna-clos|Fx shaft rad w ulna-clos +C0159734|T037|HT|813.3|ICD9CM|Fracture of shaft of radius and ulna, open|Fracture of shaft of radius and ulna, open +C0159735|T037|AB|813.30|ICD9CM|Fx shaft forearm NOS-opn|Fx shaft forearm NOS-opn +C0159735|T037|PT|813.30|ICD9CM|Open fracture of shaft of radius or ulna, unspecified|Open fracture of shaft of radius or ulna, unspecified +C0272641|T037|AB|813.31|ICD9CM|Fx radius shaft-open|Fx radius shaft-open +C0272641|T037|PT|813.31|ICD9CM|Open fracture of shaft of radius (alone)|Open fracture of shaft of radius (alone) +C0159737|T037|AB|813.32|ICD9CM|Fx ulna shaft-open|Fx ulna shaft-open +C0159737|T037|PT|813.32|ICD9CM|Open fracture of shaft of ulna (alone)|Open fracture of shaft of ulna (alone) +C0159734|T037|AB|813.33|ICD9CM|Fx shaft rad w ulna-open|Fx shaft rad w ulna-open +C0159734|T037|PT|813.33|ICD9CM|Open fracture of shaft of radius with ulna|Open fracture of shaft of radius with ulna +C0159738|T037|HT|813.4|ICD9CM|Fracture of lower end of radius and ulna, closed|Fracture of lower end of radius and ulna, closed +C0159739|T037|PT|813.40|ICD9CM|Closed fracture of lower end of forearm, unspecified|Closed fracture of lower end of forearm, unspecified +C0159739|T037|AB|813.40|ICD9CM|Fx lower forearm NOS-cl|Fx lower forearm NOS-cl +C0009354|T037|PT|813.41|ICD9CM|Closed Colles' fracture|Closed Colles' fracture +C0009354|T037|AB|813.41|ICD9CM|Colles' fracture-closed|Colles' fracture-closed +C0159740|T037|AB|813.42|ICD9CM|Fx distal radius NEC-cl|Fx distal radius NEC-cl +C0159740|T037|PT|813.42|ICD9CM|Other closed fractures of distal end of radius (alone)|Other closed fractures of distal end of radius (alone) +C0272647|T037|PT|813.43|ICD9CM|Closed fracture of distal end of ulna (alone)|Closed fracture of distal end of ulna (alone) +C0272647|T037|AB|813.43|ICD9CM|Fx distal ulna-closed|Fx distal ulna-closed +C0159738|T037|PT|813.44|ICD9CM|Closed fracture of lower end of radius with ulna|Closed fracture of lower end of radius with ulna +C0159738|T037|AB|813.44|ICD9CM|Fx low radius w ulna-cl|Fx low radius w ulna-cl +C2712371|T037|PT|813.45|ICD9CM|Torus fracture of radius (alone)|Torus fracture of radius (alone) +C2712371|T037|AB|813.45|ICD9CM|Torus fx radius-cl/alone|Torus fx radius-cl/alone +C2712372|T037|PT|813.46|ICD9CM|Torus fracture of ulna (alone)|Torus fracture of ulna (alone) +C2712372|T037|AB|813.46|ICD9CM|Torus fx ulna-closed|Torus fx ulna-closed +C2712373|T037|PT|813.47|ICD9CM|Torus fracture of radius and ulna|Torus fracture of radius and ulna +C2712373|T037|AB|813.47|ICD9CM|Torus fx radius/ulna-clo|Torus fx radius/ulna-clo +C0159742|T037|HT|813.5|ICD9CM|Fracture of lower end of radius and ulna, open|Fracture of lower end of radius and ulna, open +C0159743|T037|AB|813.50|ICD9CM|Fx lower forearm NOS-opn|Fx lower forearm NOS-opn +C0159743|T037|PT|813.50|ICD9CM|Open fracture of lower end of forearm, unspecified|Open fracture of lower end of forearm, unspecified +C0159744|T037|AB|813.51|ICD9CM|Colles' fracture-open|Colles' fracture-open +C0159744|T037|PT|813.51|ICD9CM|Open Colles' fracture|Open Colles' fracture +C0159745|T037|AB|813.52|ICD9CM|Fx distal radius NEC-opn|Fx distal radius NEC-opn +C0159745|T037|PT|813.52|ICD9CM|Other open fractures of distal end of radius (alone)|Other open fractures of distal end of radius (alone) +C0159746|T037|AB|813.53|ICD9CM|Fx distal ulna-open|Fx distal ulna-open +C0159746|T037|PT|813.53|ICD9CM|Open fracture of distal end of ulna (alone)|Open fracture of distal end of ulna (alone) +C0159742|T037|AB|813.54|ICD9CM|Fx low radius w ulna-opn|Fx low radius w ulna-opn +C0159742|T037|PT|813.54|ICD9CM|Open fracture of lower end of radius with ulna|Open fracture of lower end of radius with ulna +C0159747|T037|HT|813.8|ICD9CM|Fracture of unspecified part of radius with ulna, closed|Fracture of unspecified part of radius with ulna, closed +C0159748|T037|PT|813.80|ICD9CM|Closed fracture of unspecified part of forearm|Closed fracture of unspecified part of forearm +C0159748|T037|AB|813.80|ICD9CM|Fx forearm NOS-closed|Fx forearm NOS-closed +C0016652|T037|PT|813.81|ICD9CM|Closed fracture of unspecified part of radius (alone)|Closed fracture of unspecified part of radius (alone) +C0016652|T037|AB|813.81|ICD9CM|Fx radius NOS-closed|Fx radius NOS-closed +C0016653|T037|PT|813.82|ICD9CM|Closed fracture of unspecified part of ulna (alone)|Closed fracture of unspecified part of ulna (alone) +C0016653|T037|AB|813.82|ICD9CM|Fracture ulna NOS-closed|Fracture ulna NOS-closed +C0159747|T037|PT|813.83|ICD9CM|Closed fracture of unspecified part of radius with ulna|Closed fracture of unspecified part of radius with ulna +C0159747|T037|AB|813.83|ICD9CM|Fx radius w ulna NOS-cl|Fx radius w ulna NOS-cl +C0159749|T037|HT|813.9|ICD9CM|Fracture of unspecified part of radius with ulna, open|Fracture of unspecified part of radius with ulna, open +C0159750|T037|AB|813.90|ICD9CM|Fx forearm NOS-open|Fx forearm NOS-open +C0159750|T037|PT|813.90|ICD9CM|Open fracture of unspecified part of forearm|Open fracture of unspecified part of forearm +C0159751|T037|AB|813.91|ICD9CM|Fracture radius NOS-open|Fracture radius NOS-open +C0159751|T037|PT|813.91|ICD9CM|Open fracture of unspecified part of radius (alone)|Open fracture of unspecified part of radius (alone) +C0159752|T037|AB|813.92|ICD9CM|Fracture ulna NOS-open|Fracture ulna NOS-open +C0159752|T037|PT|813.92|ICD9CM|Open fracture of unspecified part of ulna (alone)|Open fracture of unspecified part of ulna (alone) +C0159749|T037|AB|813.93|ICD9CM|Fx radius w ulna NOS-opn|Fx radius w ulna NOS-opn +C0159749|T037|PT|813.93|ICD9CM|Open fracture of unspecified part of radius with ulna|Open fracture of unspecified part of radius with ulna +C0016644|T037|HT|814|ICD9CM|Fracture of carpal bone(s)|Fracture of carpal bone(s) +C0009044|T037|HT|814.0|ICD9CM|Closed fractures of carpal bones|Closed fractures of carpal bones +C0009044|T037|PT|814.00|ICD9CM|Closed fracture of carpal bone, unspecified|Closed fracture of carpal bone, unspecified +C0009044|T037|AB|814.00|ICD9CM|Fx carpal bone NOS-close|Fx carpal bone NOS-close +C0435644|T037|PT|814.01|ICD9CM|Closed fracture of navicular [scaphoid] bone of wrist|Closed fracture of navicular [scaphoid] bone of wrist +C0435644|T037|AB|814.01|ICD9CM|Fx navicular, wrist-clos|Fx navicular, wrist-clos +C0435633|T037|PT|814.02|ICD9CM|Closed fracture of lunate [semilunar] bone of wrist|Closed fracture of lunate [semilunar] bone of wrist +C0435633|T037|AB|814.02|ICD9CM|Fx lunate, wrist-closed|Fx lunate, wrist-closed +C0272665|T037|PT|814.03|ICD9CM|Closed fracture of triquetral [cuneiform] bone of wrist|Closed fracture of triquetral [cuneiform] bone of wrist +C0272665|T037|AB|814.03|ICD9CM|Fx triquetral, wrist-cl|Fx triquetral, wrist-cl +C0159758|T037|PT|814.04|ICD9CM|Closed fracture of pisiform bone of wrist|Closed fracture of pisiform bone of wrist +C0159758|T037|AB|814.04|ICD9CM|Fx pisiform-closed|Fx pisiform-closed +C0272666|T037|PT|814.05|ICD9CM|Closed fracture of trapezium bone [larger multangular] of wrist|Closed fracture of trapezium bone [larger multangular] of wrist +C0272666|T037|AB|814.05|ICD9CM|Fx trapezium bone-closed|Fx trapezium bone-closed +C0435634|T037|PT|814.06|ICD9CM|Closed fracture of trapezoid bone [smaller multangular] of wrist|Closed fracture of trapezoid bone [smaller multangular] of wrist +C0435634|T037|AB|814.06|ICD9CM|Fx trapezoid bone-closed|Fx trapezoid bone-closed +C0272668|T037|PT|814.07|ICD9CM|Closed fracture of capitate bone [os magnum] of wrist|Closed fracture of capitate bone [os magnum] of wrist +C0272668|T037|AB|814.07|ICD9CM|Fx capitate bone-closed|Fx capitate bone-closed +C0272669|T037|PT|814.08|ICD9CM|Closed fracture of hamate [unciform] bone of wrist|Closed fracture of hamate [unciform] bone of wrist +C0272669|T037|AB|814.08|ICD9CM|Fx hamate bone-closed|Fx hamate bone-closed +C0159763|T037|PT|814.09|ICD9CM|Closed fracture of other bone of wrist|Closed fracture of other bone of wrist +C0159763|T037|AB|814.09|ICD9CM|Fx carpal bone NEC-close|Fx carpal bone NEC-close +C0159765|T037|HT|814.1|ICD9CM|Open fractures of carpal bones|Open fractures of carpal bones +C0159765|T037|AB|814.10|ICD9CM|Fx carpal bone NOS-open|Fx carpal bone NOS-open +C0159765|T037|PT|814.10|ICD9CM|Open fracture of carpal bone, unspecified|Open fracture of carpal bone, unspecified +C0435650|T037|AB|814.11|ICD9CM|Fx navicular, wrist-open|Fx navicular, wrist-open +C0435650|T037|PT|814.11|ICD9CM|Open fracture of navicular [scaphoid] bone of wrist|Open fracture of navicular [scaphoid] bone of wrist +C0435638|T037|AB|814.12|ICD9CM|Fx lunate, wrist-open|Fx lunate, wrist-open +C0435638|T037|PT|814.12|ICD9CM|Open fracture of lunate [semilunar] bone of wrist|Open fracture of lunate [semilunar] bone of wrist +C0272672|T037|AB|814.13|ICD9CM|Fx triquetral, wrist-opn|Fx triquetral, wrist-opn +C0272672|T037|PT|814.13|ICD9CM|Open fracture of triquetral [cuneiform] bone of wrist|Open fracture of triquetral [cuneiform] bone of wrist +C0159769|T037|AB|814.14|ICD9CM|Fx pisiform-open|Fx pisiform-open +C0159769|T037|PT|814.14|ICD9CM|Open fracture of pisiform bone of wrist|Open fracture of pisiform bone of wrist +C0272673|T037|AB|814.15|ICD9CM|Fx trapezium bone-open|Fx trapezium bone-open +C0272673|T037|PT|814.15|ICD9CM|Open fracture of trapezium bone [larger multangular] of wrist|Open fracture of trapezium bone [larger multangular] of wrist +C0435639|T037|AB|814.16|ICD9CM|Fx trapezoid bone-open|Fx trapezoid bone-open +C0435639|T037|PT|814.16|ICD9CM|Open fracture of trapezoid bone [smaller multangular] of wrist|Open fracture of trapezoid bone [smaller multangular] of wrist +C0272675|T037|AB|814.17|ICD9CM|Fx capitate bone-open|Fx capitate bone-open +C0272675|T037|PT|814.17|ICD9CM|Open fracture of capitate bone [os magnum] of wrist|Open fracture of capitate bone [os magnum] of wrist +C0272676|T037|AB|814.18|ICD9CM|Fx hamate bone-open|Fx hamate bone-open +C0272676|T037|PT|814.18|ICD9CM|Open fracture of hamate [unciform] bone of wrist|Open fracture of hamate [unciform] bone of wrist +C0159774|T037|AB|814.19|ICD9CM|Fx carpal bone NEC-open|Fx carpal bone NEC-open +C0159774|T037|PT|814.19|ICD9CM|Open fracture of other bone of wrist|Open fracture of other bone of wrist +C0272677|T037|HT|815|ICD9CM|Fracture of metacarpal bone(s)|Fracture of metacarpal bone(s) +C0159776|T037|HT|815.0|ICD9CM|Closed fracture of metacarpal bones|Closed fracture of metacarpal bones +C0159776|T037|PT|815.00|ICD9CM|Closed fracture of metacarpal bone(s), site unspecified|Closed fracture of metacarpal bone(s), site unspecified +C0159776|T037|AB|815.00|ICD9CM|Fx metacarpal NOS-closed|Fx metacarpal NOS-closed +C0272684|T037|PT|815.01|ICD9CM|Closed fracture of base of thumb [first] metacarpal|Closed fracture of base of thumb [first] metacarpal +C0272684|T037|AB|815.01|ICD9CM|Fx 1st metacarp base-cl|Fx 1st metacarp base-cl +C0272686|T037|PT|815.02|ICD9CM|Closed fracture of base of other metacarpal bone(s)|Closed fracture of base of other metacarpal bone(s) +C0272686|T037|AB|815.02|ICD9CM|Fx metacarp base NEC-cl|Fx metacarp base NEC-cl +C0272687|T037|PT|815.03|ICD9CM|Closed fracture of shaft of metacarpal bone(s)|Closed fracture of shaft of metacarpal bone(s) +C0272687|T037|AB|815.03|ICD9CM|Fx metacarpal shaft-clos|Fx metacarpal shaft-clos +C0272688|T037|PT|815.04|ICD9CM|Closed fracture of neck of metacarpal bone(s)|Closed fracture of neck of metacarpal bone(s) +C0272688|T037|AB|815.04|ICD9CM|Fx metacarpal neck-close|Fx metacarpal neck-close +C0435669|T037|PT|815.09|ICD9CM|Closed fracture of multiple sites of metacarpus|Closed fracture of multiple sites of metacarpus +C0435669|T037|AB|815.09|ICD9CM|Mult fx metacarpus-close|Mult fx metacarpus-close +C0159783|T037|HT|815.1|ICD9CM|Open fracture of metacarpal bones|Open fracture of metacarpal bones +C0159783|T037|AB|815.10|ICD9CM|Fx metacarpal NOS-open|Fx metacarpal NOS-open +C0159783|T037|PT|815.10|ICD9CM|Open fracture of metacarpal bone(s), site unspecified|Open fracture of metacarpal bone(s), site unspecified +C0272689|T037|AB|815.11|ICD9CM|Fx 1st metacarp base-opn|Fx 1st metacarp base-opn +C0272689|T037|PT|815.11|ICD9CM|Open fracture of base of thumb [first] metacarpal|Open fracture of base of thumb [first] metacarpal +C0272691|T037|AB|815.12|ICD9CM|Fx metacarp base NEC-opn|Fx metacarp base NEC-opn +C0272691|T037|PT|815.12|ICD9CM|Open fracture of base of other metacarpal bone(s)|Open fracture of base of other metacarpal bone(s) +C0272692|T037|AB|815.13|ICD9CM|Fx metacarpal shaft-open|Fx metacarpal shaft-open +C0272692|T037|PT|815.13|ICD9CM|Open fracture of shaft of metacarpal bone(s)|Open fracture of shaft of metacarpal bone(s) +C0272693|T037|AB|815.14|ICD9CM|Fx metacarpal neck-open|Fx metacarpal neck-open +C0272693|T037|PT|815.14|ICD9CM|Open fracture of neck of metacarpal bone(s)|Open fracture of neck of metacarpal bone(s) +C0435656|T037|AB|815.19|ICD9CM|Mult fx metacarpus-open|Mult fx metacarpus-open +C0435656|T037|PT|815.19|ICD9CM|Open fracture of multiple sites of metacarpus|Open fracture of multiple sites of metacarpus +C0159790|T037|HT|816|ICD9CM|Fracture of one or more phalanges of hand|Fracture of one or more phalanges of hand +C0159791|T037|HT|816.0|ICD9CM|Closed fracture of one or more phalanges of hand|Closed fracture of one or more phalanges of hand +C0159791|T037|PT|816.00|ICD9CM|Closed fracture of phalanx or phalanges of hand, unspecified|Closed fracture of phalanx or phalanges of hand, unspecified +C0159791|T037|AB|816.00|ICD9CM|Fx phalanx, hand NOS-cl|Fx phalanx, hand NOS-cl +C0159793|T037|PT|816.01|ICD9CM|Closed fracture of middle or proximal phalanx or phalanges of hand|Closed fracture of middle or proximal phalanx or phalanges of hand +C0159793|T037|AB|816.01|ICD9CM|Fx mid/prx phal, hand-cl|Fx mid/prx phal, hand-cl +C0159794|T037|PT|816.02|ICD9CM|Closed fracture of distal phalanx or phalanges of hand|Closed fracture of distal phalanx or phalanges of hand +C0159794|T037|AB|816.02|ICD9CM|Fx dist phalanx, hand-cl|Fx dist phalanx, hand-cl +C0159795|T037|PT|816.03|ICD9CM|Closed fracture of multiple sites of phalanx or phalanges of hand|Closed fracture of multiple sites of phalanx or phalanges of hand +C0159795|T037|AB|816.03|ICD9CM|Fx mult phalan, hand-cl|Fx mult phalan, hand-cl +C0159796|T037|HT|816.1|ICD9CM|Open fracture of one or more phalanges of hand|Open fracture of one or more phalanges of hand +C0159796|T037|AB|816.10|ICD9CM|Fx phalanx, hand NOS-opn|Fx phalanx, hand NOS-opn +C0159796|T037|PT|816.10|ICD9CM|Open fracture of phalanx or phalanges of hand, unspecified|Open fracture of phalanx or phalanges of hand, unspecified +C0159798|T037|AB|816.11|ICD9CM|Fx mid/prx phal, hand-op|Fx mid/prx phal, hand-op +C0159798|T037|PT|816.11|ICD9CM|Open fracture of middle or proximal phalanx or phalanges of hand|Open fracture of middle or proximal phalanx or phalanges of hand +C0159799|T037|AB|816.12|ICD9CM|Fx distal phal, hand-opn|Fx distal phal, hand-opn +C0159799|T037|PT|816.12|ICD9CM|Open fracture of distal phalanx or phalanges of hand|Open fracture of distal phalanx or phalanges of hand +C0159800|T037|AB|816.13|ICD9CM|Fx mult phalan, hand-opn|Fx mult phalan, hand-opn +C0159800|T037|PT|816.13|ICD9CM|Open fracture of multiple sites of phalanx or phalanges of hand|Open fracture of multiple sites of phalanx or phalanges of hand +C0159801|T037|HT|817|ICD9CM|Multiple fractures of hand bones|Multiple fractures of hand bones +C0159802|T037|PT|817.0|ICD9CM|Multiple closed fractures of hand bones|Multiple closed fractures of hand bones +C0159802|T037|AB|817.0|ICD9CM|Multiple fx hand-closed|Multiple fx hand-closed +C0159803|T037|AB|817.1|ICD9CM|Multiple fx hand-open|Multiple fx hand-open +C0159803|T037|PT|817.1|ICD9CM|Multiple open fractures of hand bones|Multiple open fractures of hand bones +C0159804|T037|HT|818|ICD9CM|Ill-defined fractures of upper limb|Ill-defined fractures of upper limb +C0159805|T037|AB|818.0|ICD9CM|Fx arm mult/NOS-closed|Fx arm mult/NOS-closed +C0159805|T037|PT|818.0|ICD9CM|Ill-defined closed fractures of upper limb|Ill-defined closed fractures of upper limb +C0159806|T037|AB|818.1|ICD9CM|Fx arm mult/NOS-open|Fx arm mult/NOS-open +C0159806|T037|PT|818.1|ICD9CM|Ill-defined open fractures of upper limb|Ill-defined open fractures of upper limb +C0159807|T037|HT|819|ICD9CM|Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum|Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum +C0159808|T037|AB|819.0|ICD9CM|Fx arms w rib/sternum-cl|Fx arms w rib/sternum-cl +C0159808|T037|PT|819.0|ICD9CM|Multiple closed fractures involving both upper limbs, and upper limb with rib(s) and sternum|Multiple closed fractures involving both upper limbs, and upper limb with rib(s) and sternum +C0159809|T037|AB|819.1|ICD9CM|Fx arms w rib/stern-open|Fx arms w rib/stern-open +C0159809|T037|PT|819.1|ICD9CM|Multiple open fractures involving both upper limbs, and upper limb with rib(s) and sternum|Multiple open fractures involving both upper limbs, and upper limb with rib(s) and sternum +C0015806|T037|HT|820|ICD9CM|Fracture of neck of femur|Fracture of neck of femur +C1542178|T037|HT|820-829.99|ICD9CM|FRACTURE OF LOWER LIMB|FRACTURE OF LOWER LIMB +C0159810|T037|HT|820.0|ICD9CM|Transcervical fracture, closed|Transcervical fracture, closed +C0159811|T037|PT|820.00|ICD9CM|Closed fracture of intracapsular section of neck of femur, unspecified|Closed fracture of intracapsular section of neck of femur, unspecified +C0159811|T037|AB|820.00|ICD9CM|Fx femur intrcaps NOS-cl|Fx femur intrcaps NOS-cl +C0159812|T037|PT|820.01|ICD9CM|Closed fracture of epiphysis (separation) (upper) of neck of femur|Closed fracture of epiphysis (separation) (upper) of neck of femur +C0159812|T037|AB|820.01|ICD9CM|Fx up femur epiphy-clos|Fx up femur epiphy-clos +C0159813|T037|PT|820.02|ICD9CM|Closed fracture of midcervical section of neck of femur|Closed fracture of midcervical section of neck of femur +C0159813|T037|AB|820.02|ICD9CM|Fx femur, midcervic-clos|Fx femur, midcervic-clos +C0159814|T037|PT|820.03|ICD9CM|Closed fracture of base of neck of femur|Closed fracture of base of neck of femur +C0159814|T037|AB|820.03|ICD9CM|Fx base femoral nck-clos|Fx base femoral nck-clos +C0159815|T037|AB|820.09|ICD9CM|Fx femur intrcaps NEC-cl|Fx femur intrcaps NEC-cl +C0159815|T037|PT|820.09|ICD9CM|Other closed transcervical fracture of neck of femur|Other closed transcervical fracture of neck of femur +C0159816|T037|HT|820.1|ICD9CM|Transcervical fracture, open|Transcervical fracture, open +C0159817|T037|AB|820.10|ICD9CM|Fx femur intrcap NOS-opn|Fx femur intrcap NOS-opn +C0159817|T037|PT|820.10|ICD9CM|Open fracture of intracapsular section of neck of femur, unspecified|Open fracture of intracapsular section of neck of femur, unspecified +C0159818|T037|AB|820.11|ICD9CM|Fx up femur epiphy-open|Fx up femur epiphy-open +C0159818|T037|PT|820.11|ICD9CM|Open fracture of epiphysis (separation) (upper) of neck of femur|Open fracture of epiphysis (separation) (upper) of neck of femur +C0159819|T037|AB|820.12|ICD9CM|Fx femur, midcervic-open|Fx femur, midcervic-open +C0159819|T037|PT|820.12|ICD9CM|Open fracture of midcervical section of neck of femur|Open fracture of midcervical section of neck of femur +C0159820|T037|AB|820.13|ICD9CM|Fx base femoral nck-open|Fx base femoral nck-open +C0159820|T037|PT|820.13|ICD9CM|Open fracture of base of neck of femur|Open fracture of base of neck of femur +C0159821|T037|AB|820.19|ICD9CM|Fx femur intrcap NEC-opn|Fx femur intrcap NEC-opn +C0159821|T037|PT|820.19|ICD9CM|Other open transcervical fracture of neck of femur|Other open transcervical fracture of neck of femur +C0159822|T037|HT|820.2|ICD9CM|Pertrochanteric fracture of femur, closed|Pertrochanteric fracture of femur, closed +C0159823|T037|PT|820.20|ICD9CM|Closed fracture of trochanteric section of neck of femur|Closed fracture of trochanteric section of neck of femur +C0159823|T037|AB|820.20|ICD9CM|Trochanteric fx NOS-clos|Trochanteric fx NOS-clos +C0159824|T037|PT|820.21|ICD9CM|Closed fracture of intertrochanteric section of neck of femur|Closed fracture of intertrochanteric section of neck of femur +C0159824|T037|AB|820.21|ICD9CM|Intertrochanteric fx-cl|Intertrochanteric fx-cl +C0435830|T037|PT|820.22|ICD9CM|Closed fracture of subtrochanteric section of neck of femur|Closed fracture of subtrochanteric section of neck of femur +C0435830|T037|AB|820.22|ICD9CM|Subtrochanteric fx-close|Subtrochanteric fx-close +C0159826|T037|HT|820.3|ICD9CM|Pertrochanteric fracture of femur, open|Pertrochanteric fracture of femur, open +C0159827|T037|PT|820.30|ICD9CM|Open fracture of trochanteric section of neck of femur, unspecified|Open fracture of trochanteric section of neck of femur, unspecified +C0159827|T037|AB|820.30|ICD9CM|Trochanteric fx NOS-open|Trochanteric fx NOS-open +C0159828|T037|AB|820.31|ICD9CM|Intertrochanteric fx-opn|Intertrochanteric fx-opn +C0159828|T037|PT|820.31|ICD9CM|Open fracture of intertrochanteric section of neck of femur|Open fracture of intertrochanteric section of neck of femur +C0435834|T037|PT|820.32|ICD9CM|Open fracture of subtrochanteric section of neck of femur|Open fracture of subtrochanteric section of neck of femur +C0435834|T037|AB|820.32|ICD9CM|Subtrochanteric fx-open|Subtrochanteric fx-open +C0272751|T037|PT|820.8|ICD9CM|Closed fracture of unspecified part of neck of femur|Closed fracture of unspecified part of neck of femur +C0272751|T037|AB|820.8|ICD9CM|Fx neck of femur NOS-cl|Fx neck of femur NOS-cl +C0272752|T037|AB|820.9|ICD9CM|Fx neck of femur NOS-opn|Fx neck of femur NOS-opn +C0272752|T037|PT|820.9|ICD9CM|Open fracture of unspecified part of neck of femur|Open fracture of unspecified part of neck of femur +C0159831|T037|HT|821|ICD9CM|Fracture of other and unspecified parts of femur|Fracture of other and unspecified parts of femur +C0159832|T037|HT|821.0|ICD9CM|Fracture of shaft or unspecified part of femur, closed|Fracture of shaft or unspecified part of femur, closed +C0272729|T037|PT|821.00|ICD9CM|Closed fracture of unspecified part of femur|Closed fracture of unspecified part of femur +C0272729|T037|AB|821.00|ICD9CM|Fx femur NOS-closed|Fx femur NOS-closed +C0159833|T037|PT|821.01|ICD9CM|Closed fracture of shaft of femur|Closed fracture of shaft of femur +C0159833|T037|AB|821.01|ICD9CM|Fx femur shaft-closed|Fx femur shaft-closed +C0159834|T037|HT|821.1|ICD9CM|Fracture of shaft or unspecified part of femur, open|Fracture of shaft or unspecified part of femur, open +C0159835|T037|AB|821.10|ICD9CM|Fx femur NOS-open|Fx femur NOS-open +C0159835|T037|PT|821.10|ICD9CM|Open fracture of unspecified part of femur|Open fracture of unspecified part of femur +C0159836|T037|AB|821.11|ICD9CM|Fx femur shaft-open|Fx femur shaft-open +C0159836|T037|PT|821.11|ICD9CM|Open fracture of shaft of femur|Open fracture of shaft of femur +C0159837|T037|HT|821.2|ICD9CM|Fracture of lower end of femur, closed|Fracture of lower end of femur, closed +C0159838|T037|PT|821.20|ICD9CM|Closed fracture of lower end of femur, unspecified part|Closed fracture of lower end of femur, unspecified part +C0159838|T037|AB|821.20|ICD9CM|Fx low end femur NOS-cl|Fx low end femur NOS-cl +C0272754|T037|PT|821.21|ICD9CM|Closed fracture of condyle, femoral|Closed fracture of condyle, femoral +C0272754|T037|AB|821.21|ICD9CM|Fx femoral condyle-close|Fx femoral condyle-close +C0159840|T037|PT|821.22|ICD9CM|Closed fracture of epiphysis, lower (separation) of femur|Closed fracture of epiphysis, lower (separation) of femur +C0159840|T037|AB|821.22|ICD9CM|Fx low femur epiphy-clos|Fx low femur epiphy-clos +C0435844|T037|PT|821.23|ICD9CM|Closed supracondylar fracture of femur|Closed supracondylar fracture of femur +C0435844|T037|AB|821.23|ICD9CM|Supracondyl fx femur-cl|Supracondyl fx femur-cl +C0159842|T037|AB|821.29|ICD9CM|Fx low end femur NEC-cl|Fx low end femur NEC-cl +C0159842|T037|PT|821.29|ICD9CM|Other closed fracture of lower end of femur|Other closed fracture of lower end of femur +C0159843|T037|HT|821.3|ICD9CM|Fracture of lower end of femur, open|Fracture of lower end of femur, open +C0159844|T037|AB|821.30|ICD9CM|Fx low end femur NOS-opn|Fx low end femur NOS-opn +C0159844|T037|PT|821.30|ICD9CM|Open fracture of lower end of femur, unspecified part|Open fracture of lower end of femur, unspecified part +C0272757|T037|AB|821.31|ICD9CM|Fx femoral condyle-open|Fx femoral condyle-open +C0272757|T037|PT|821.31|ICD9CM|Open fracture of condyle, femoral|Open fracture of condyle, femoral +C0159846|T037|AB|821.32|ICD9CM|Fx low femur epiphy-open|Fx low femur epiphy-open +C0159846|T037|PT|821.32|ICD9CM|Open fracture of epiphysis. Lower (separation) of femur|Open fracture of epiphysis. Lower (separation) of femur +C0435845|T037|PT|821.33|ICD9CM|Open supracondylar fracture of femur|Open supracondylar fracture of femur +C0435845|T037|AB|821.33|ICD9CM|Supracondyl fx femur-opn|Supracondyl fx femur-opn +C0159848|T037|AB|821.39|ICD9CM|Fx low end femur NEC-opn|Fx low end femur NEC-opn +C0159848|T037|PT|821.39|ICD9CM|Other open fracture of lower end of femur|Other open fracture of lower end of femur +C0159849|T037|HT|822|ICD9CM|Fracture of patella|Fracture of patella +C0159850|T037|PT|822.0|ICD9CM|Closed fracture of patella|Closed fracture of patella +C0159850|T037|AB|822.0|ICD9CM|Fracture patella-closed|Fracture patella-closed +C0159851|T037|AB|822.1|ICD9CM|Fracture patella-open|Fracture patella-open +C0159851|T037|PT|822.1|ICD9CM|Open fracture of patella|Open fracture of patella +C0159852|T037|HT|823|ICD9CM|Fracture of tibia and fibula|Fracture of tibia and fibula +C0435903|T037|HT|823.0|ICD9CM|Fracture of upper end of tibia and fibula, closed|Fracture of upper end of tibia and fibula, closed +C0159854|T037|PT|823.00|ICD9CM|Closed fracture of upper end of tibia alone|Closed fracture of upper end of tibia alone +C0159854|T037|AB|823.00|ICD9CM|Fx upper end tibia-close|Fx upper end tibia-close +C0435898|T037|PT|823.01|ICD9CM|Closed fracture of upper end of fibula alone|Closed fracture of upper end of fibula alone +C0435898|T037|AB|823.01|ICD9CM|Fx upper end fibula-clos|Fx upper end fibula-clos +C0435903|T037|PT|823.02|ICD9CM|Closed fracture of upper end of fibula with tibia|Closed fracture of upper end of fibula with tibia +C0435903|T037|AB|823.02|ICD9CM|Fx up tibia w fibula-cl|Fx up tibia w fibula-cl +C0435905|T037|HT|823.1|ICD9CM|Fracture of upper end of tibia and fibula, open|Fracture of upper end of tibia and fibula, open +C0159858|T037|AB|823.10|ICD9CM|Fx upper end tibia-open|Fx upper end tibia-open +C0159858|T037|PT|823.10|ICD9CM|Open fracture of upper end of tibia alone|Open fracture of upper end of tibia alone +C0435876|T037|AB|823.11|ICD9CM|Fx upper end fibula-open|Fx upper end fibula-open +C0435876|T037|PT|823.11|ICD9CM|Open fracture of upper end of fibula alone|Open fracture of upper end of fibula alone +C0435905|T037|AB|823.12|ICD9CM|Fx up tibia w fibula-opn|Fx up tibia w fibula-opn +C0435905|T037|PT|823.12|ICD9CM|Open fracture of upper end of fibula with tibia|Open fracture of upper end of fibula with tibia +C0159864|T037|HT|823.2|ICD9CM|Fracture of shaft of tibia and fibula, closed|Fracture of shaft of tibia and fibula, closed +C0159862|T037|PT|823.20|ICD9CM|Closed fracture of shaft of tibia alone|Closed fracture of shaft of tibia alone +C0159862|T037|AB|823.20|ICD9CM|Fx shaft tibia-closed|Fx shaft tibia-closed +C0159863|T037|PT|823.21|ICD9CM|Closed fracture of shaft of fibula alone|Closed fracture of shaft of fibula alone +C0159863|T037|AB|823.21|ICD9CM|Fx shaft fibula-closed|Fx shaft fibula-closed +C0159864|T037|PT|823.22|ICD9CM|Closed fracture of shaft of fibula with tibia|Closed fracture of shaft of fibula with tibia +C0159864|T037|AB|823.22|ICD9CM|Fx shaft fib w tib-clos|Fx shaft fib w tib-clos +C0159868|T037|HT|823.3|ICD9CM|Fracture of shaft of tibia and fibula, open|Fracture of shaft of tibia and fibula, open +C0159866|T037|AB|823.30|ICD9CM|Fx tibia shaft-open|Fx tibia shaft-open +C0159866|T037|PT|823.30|ICD9CM|Open fracture of shaft of tibia alone|Open fracture of shaft of tibia alone +C0159867|T037|AB|823.31|ICD9CM|Fx fibula shaft-open|Fx fibula shaft-open +C0159867|T037|PT|823.31|ICD9CM|Open fracture of shaft of fibula alone|Open fracture of shaft of fibula alone +C0159868|T037|AB|823.32|ICD9CM|Fx shaft tibia w fib-opn|Fx shaft tibia w fib-opn +C0159868|T037|PT|823.32|ICD9CM|Open fracture of shaft of fibula with tibia|Open fracture of shaft of fibula with tibia +C1146542|T037|HT|823.4|ICD9CM|Torus fracture|Torus fracture +C1176359|T037|AB|823.40|ICD9CM|Torus fracture of tibia|Torus fracture of tibia +C1176359|T037|PT|823.40|ICD9CM|Torus fracture, tibia alone|Torus fracture, tibia alone +C1176360|T037|AB|823.41|ICD9CM|Torus fracture of fibula|Torus fracture of fibula +C1176360|T037|PT|823.41|ICD9CM|Torus fracture, fibula alone|Torus fracture, fibula alone +C1176361|T037|PT|823.42|ICD9CM|Torus fracture, fibula with tibia|Torus fracture, fibula with tibia +C1176361|T037|AB|823.42|ICD9CM|Torus fx tibia/fibula|Torus fx tibia/fibula +C0555347|T037|HT|823.8|ICD9CM|Fracture of unspecified part of tibia and fibula, closed|Fracture of unspecified part of tibia and fibula, closed +C0159870|T037|PT|823.80|ICD9CM|Closed fracture of unspecified part of tibia alone|Closed fracture of unspecified part of tibia alone +C0159870|T037|AB|823.80|ICD9CM|Fx tibia NOS-closed|Fx tibia NOS-closed +C0159871|T037|PT|823.81|ICD9CM|Closed fracture of unspecified part of fibula alone|Closed fracture of unspecified part of fibula alone +C0159871|T037|AB|823.81|ICD9CM|Fx fibula NOS-closed|Fx fibula NOS-closed +C0555347|T037|PT|823.82|ICD9CM|Closed fracture of unspecified part of fibula with tibia|Closed fracture of unspecified part of fibula with tibia +C0555347|T037|AB|823.82|ICD9CM|Fx tibia w fibula NOS-cl|Fx tibia w fibula NOS-cl +C0159876|T037|HT|823.9|ICD9CM|Fracture of unspecified part of tibia and fibula, open|Fracture of unspecified part of tibia and fibula, open +C0159874|T037|AB|823.90|ICD9CM|Fx tibia NOS-open|Fx tibia NOS-open +C0159874|T037|PT|823.90|ICD9CM|Open fracture of unspecified part of tibia alone|Open fracture of unspecified part of tibia alone +C0159875|T037|AB|823.91|ICD9CM|Fx fibula NOS-open|Fx fibula NOS-open +C0159875|T037|PT|823.91|ICD9CM|Open fracture of unspecified part of fibula alone|Open fracture of unspecified part of fibula alone +C0159876|T037|AB|823.92|ICD9CM|Fx tibia w fib NOS-open|Fx tibia w fib NOS-open +C0159876|T037|PT|823.92|ICD9CM|Open fracture of unspecified part of fibula with tibia|Open fracture of unspecified part of fibula with tibia +C0159877|T037|HT|824|ICD9CM|Fracture of ankle|Fracture of ankle +C0435890|T037|PT|824.0|ICD9CM|Fracture of medial malleolus, closed|Fracture of medial malleolus, closed +C0435890|T037|AB|824.0|ICD9CM|Fx medial malleolus-clos|Fx medial malleolus-clos +C0435891|T037|PT|824.1|ICD9CM|Fracture of medial malleolus, open|Fracture of medial malleolus, open +C0435891|T037|AB|824.1|ICD9CM|Fx medial malleolus-open|Fx medial malleolus-open +C0435892|T037|PT|824.2|ICD9CM|Fracture of lateral malleolus, closed|Fracture of lateral malleolus, closed +C0435892|T037|AB|824.2|ICD9CM|Fx lateral malleolus-cl|Fx lateral malleolus-cl +C0435900|T037|PT|824.3|ICD9CM|Fracture of lateral malleolus, open|Fracture of lateral malleolus, open +C0435900|T037|AB|824.3|ICD9CM|Fx lateral malleolus-opn|Fx lateral malleolus-opn +C0392611|T037|PT|824.4|ICD9CM|Bimalleolar fracture, closed|Bimalleolar fracture, closed +C0392611|T037|AB|824.4|ICD9CM|Fx bimalleolar-closed|Fx bimalleolar-closed +C0159882|T037|PT|824.5|ICD9CM|Bimalleolar fracture, open|Bimalleolar fracture, open +C0159882|T037|AB|824.5|ICD9CM|Fx bimalleolar-open|Fx bimalleolar-open +C0159883|T037|AB|824.6|ICD9CM|Fx trimalleolar-closed|Fx trimalleolar-closed +C0159883|T037|PT|824.6|ICD9CM|Trimalleolar fracture, closed|Trimalleolar fracture, closed +C0159884|T037|AB|824.7|ICD9CM|Fx trimalleolar-open|Fx trimalleolar-open +C0159884|T037|PT|824.7|ICD9CM|Trimalleolar fracture, open|Trimalleolar fracture, open +C0272769|T037|AB|824.8|ICD9CM|Fx ankle NOS-closed|Fx ankle NOS-closed +C0272769|T037|PT|824.8|ICD9CM|Unspecified fracture of ankle, closed|Unspecified fracture of ankle, closed +C0272770|T037|AB|824.9|ICD9CM|Fx ankle NOS-open|Fx ankle NOS-open +C0272770|T037|PT|824.9|ICD9CM|Unspecified fracture of ankle, open|Unspecified fracture of ankle, open +C1963546|T037|HT|825|ICD9CM|Fracture of one or more tarsal and metatarsal bones|Fracture of one or more tarsal and metatarsal bones +C0159888|T037|AB|825.0|ICD9CM|Fracture calcaneus-close|Fracture calcaneus-close +C0159888|T037|PT|825.0|ICD9CM|Fracture of calcaneus, closed|Fracture of calcaneus, closed +C0159889|T037|AB|825.1|ICD9CM|Fracture calcaneus-open|Fracture calcaneus-open +C0159889|T037|PT|825.1|ICD9CM|Fracture of calcaneus, open|Fracture of calcaneus, open +C0159890|T037|HT|825.2|ICD9CM|Fracture of other tarsal and metatarsal bones, closed|Fracture of other tarsal and metatarsal bones, closed +C0272776|T037|PT|825.20|ICD9CM|Closed fracture of unspecified bone(s) of foot [except toes]|Closed fracture of unspecified bone(s) of foot [except toes] +C0272776|T037|AB|825.20|ICD9CM|Fx foot bone NOS-closed|Fx foot bone NOS-closed +C0159892|T037|PT|825.21|ICD9CM|Closed fracture of astragalus|Closed fracture of astragalus +C0159892|T037|AB|825.21|ICD9CM|Fx astragalus-closed|Fx astragalus-closed +C0435940|T037|PT|825.22|ICD9CM|Closed fracture of navicular [scaphoid], foot|Closed fracture of navicular [scaphoid], foot +C0435940|T037|AB|825.22|ICD9CM|Fx navicular, foot-clos|Fx navicular, foot-clos +C0347815|T037|PT|825.23|ICD9CM|Closed fracture of cuboid|Closed fracture of cuboid +C0347815|T037|AB|825.23|ICD9CM|Fx cuboid-closed|Fx cuboid-closed +C0435924|T037|PT|825.24|ICD9CM|Closed fracture of cuneiform, foot|Closed fracture of cuneiform, foot +C0435924|T037|AB|825.24|ICD9CM|Fx cuneiform, foot-clos|Fx cuneiform, foot-clos +C0435944|T037|PT|825.25|ICD9CM|Closed fracture of metatarsal bone(s)|Closed fracture of metatarsal bone(s) +C0435944|T037|AB|825.25|ICD9CM|Fx metatarsal-closed|Fx metatarsal-closed +C0159890|T037|AB|825.29|ICD9CM|Fx foot bone NEC-closed|Fx foot bone NEC-closed +C0159890|T037|PT|825.29|ICD9CM|Other closed fracture of tarsal and metatarsal bones|Other closed fracture of tarsal and metatarsal bones +C0159904|T037|HT|825.3|ICD9CM|Fracture of other tarsal and metatarsal bones, open|Fracture of other tarsal and metatarsal bones, open +C0272778|T037|AB|825.30|ICD9CM|Fx foot bone NOS-open|Fx foot bone NOS-open +C0272778|T037|PT|825.30|ICD9CM|Open fracture of unspecified bone(s) of foot [except toes]|Open fracture of unspecified bone(s) of foot [except toes] +C0159899|T037|AB|825.31|ICD9CM|Fx astragalus-open|Fx astragalus-open +C0159899|T037|PT|825.31|ICD9CM|Open fracture of astragalus|Open fracture of astragalus +C0435941|T037|AB|825.32|ICD9CM|Fx navicular, foot-open|Fx navicular, foot-open +C0435941|T037|PT|825.32|ICD9CM|Open fracture of navicular [scaphoid], foot|Open fracture of navicular [scaphoid], foot +C0347816|T037|AB|825.33|ICD9CM|Fx cuboid-open|Fx cuboid-open +C0347816|T037|PT|825.33|ICD9CM|Open fracture of cuboid|Open fracture of cuboid +C0435920|T037|AB|825.34|ICD9CM|Fx cuneiform, foot-open|Fx cuneiform, foot-open +C0435920|T037|PT|825.34|ICD9CM|Open fracture of cuneiform, foot|Open fracture of cuneiform, foot +C0435950|T037|AB|825.35|ICD9CM|Fx metatarsal-open|Fx metatarsal-open +C0435950|T037|PT|825.35|ICD9CM|Open fracture of metatarsal bone(s)|Open fracture of metatarsal bone(s) +C0159904|T037|AB|825.39|ICD9CM|Fx foot bone NEC-open|Fx foot bone NEC-open +C0159904|T037|PT|825.39|ICD9CM|Other open fracture of tarsal and metatarsal bones|Other open fracture of tarsal and metatarsal bones +C0159905|T037|HT|826|ICD9CM|Fracture of one or more phalanges of foot|Fracture of one or more phalanges of foot +C0159906|T037|PT|826.0|ICD9CM|Closed fracture of one or more phalanges of foot|Closed fracture of one or more phalanges of foot +C0159906|T037|AB|826.0|ICD9CM|Fx phalanx, foot-closed|Fx phalanx, foot-closed +C0159907|T037|AB|826.1|ICD9CM|Fx phalanx, foot-open|Fx phalanx, foot-open +C0159907|T037|PT|826.1|ICD9CM|Open fracture of one or more phalanges of foot|Open fracture of one or more phalanges of foot +C0159908|T037|HT|827|ICD9CM|Other, multiple, and ill-defined fractures of lower limb|Other, multiple, and ill-defined fractures of lower limb +C0159909|T037|AB|827.0|ICD9CM|Fx lower limb NEC-closed|Fx lower limb NEC-closed +C0159909|T037|PT|827.0|ICD9CM|Other, multiple and ill-defined fractures of lower limb, closed|Other, multiple and ill-defined fractures of lower limb, closed +C0159910|T037|AB|827.1|ICD9CM|Fx lower limb NEC-open|Fx lower limb NEC-open +C0159910|T037|PT|827.1|ICD9CM|Other, multiple and ill-defined fractures of lower limb, open|Other, multiple and ill-defined fractures of lower limb, open +C0159912|T037|AB|828.0|ICD9CM|Fx legs w arm/rib-closed|Fx legs w arm/rib-closed +C0159913|T037|AB|828.1|ICD9CM|Fx legs w arm/rib-open|Fx legs w arm/rib-open +C0016658|T037|HT|829|ICD9CM|Fracture of unspecified bones|Fracture of unspecified bones +C0016659|T037|AB|829.0|ICD9CM|Fracture NOS-closed|Fracture NOS-closed +C0016659|T037|PT|829.0|ICD9CM|Fracture of unspecified bone, closed|Fracture of unspecified bone, closed +C0016662|T037|AB|829.1|ICD9CM|Fracture NOS-open|Fracture NOS-open +C0016662|T037|PT|829.1|ICD9CM|Fracture of unspecified bone, open|Fracture of unspecified bone, open +C0159914|T037|HT|830|ICD9CM|Dislocation of jaw|Dislocation of jaw +C0012691|T037|HT|830-839.99|ICD9CM|DISLOCATION|DISLOCATION +C0159915|T037|PT|830.0|ICD9CM|Closed dislocation of jaw|Closed dislocation of jaw +C0159915|T037|AB|830.0|ICD9CM|Dislocation jaw-closed|Dislocation jaw-closed +C0159916|T037|AB|830.1|ICD9CM|Dislocation jaw-open|Dislocation jaw-open +C0159916|T037|PT|830.1|ICD9CM|Open dislocation of jaw|Open dislocation of jaw +C0037005|T037|HT|831|ICD9CM|Dislocation of shoulder|Dislocation of shoulder +C0434579|T037|HT|831.0|ICD9CM|Closed dislocation of shoulder|Closed dislocation of shoulder +C0375625|T037|PT|831.00|ICD9CM|Closed dislocation of shoulder, unspecified|Closed dislocation of shoulder, unspecified +C0375625|T037|AB|831.00|ICD9CM|Disloc shoulder NOS-clos|Disloc shoulder NOS-clos +C0159917|T037|AB|831.01|ICD9CM|Ant disloc humerus-close|Ant disloc humerus-close +C0159917|T037|PT|831.01|ICD9CM|Closed anterior dislocation of humerus|Closed anterior dislocation of humerus +C0159918|T037|PT|831.02|ICD9CM|Closed posterior dislocation of humerus|Closed posterior dislocation of humerus +C0159918|T037|AB|831.02|ICD9CM|Post disloc humerus-clos|Post disloc humerus-clos +C0159919|T037|PT|831.03|ICD9CM|Closed inferior dislocation of humerus|Closed inferior dislocation of humerus +C0159919|T037|AB|831.03|ICD9CM|Infer disloc humerus-cl|Infer disloc humerus-cl +C0159920|T037|PT|831.04|ICD9CM|Closed dislocation of acromioclavicular (joint)|Closed dislocation of acromioclavicular (joint) +C0159920|T037|AB|831.04|ICD9CM|Disloc acromioclavic-cl|Disloc acromioclavic-cl +C0159921|T037|PT|831.09|ICD9CM|Closed dislocation of shoulder, other|Closed dislocation of shoulder, other +C0159921|T037|AB|831.09|ICD9CM|Disloc shoulder NEC-clos|Disloc shoulder NEC-clos +C0434583|T037|HT|831.1|ICD9CM|Open dislocation of shoulder|Open dislocation of shoulder +C0375626|T037|AB|831.10|ICD9CM|Disloc shoulder NOS-open|Disloc shoulder NOS-open +C0375626|T037|PT|831.10|ICD9CM|Open dislocation of shoulder, unspecified|Open dislocation of shoulder, unspecified +C0434585|T037|AB|831.11|ICD9CM|Ant disloc humerus-open|Ant disloc humerus-open +C0434585|T037|PT|831.11|ICD9CM|Open anterior dislocation of humerus|Open anterior dislocation of humerus +C1444204|T037|PT|831.12|ICD9CM|Open posterior dislocation of humerus|Open posterior dislocation of humerus +C1444204|T037|AB|831.12|ICD9CM|Post disloc humerus-open|Post disloc humerus-open +C0434587|T037|AB|831.13|ICD9CM|Infer disloc humerus-opn|Infer disloc humerus-opn +C0434587|T037|PT|831.13|ICD9CM|Open inferior dislocation of humerus|Open inferior dislocation of humerus +C0159926|T037|AB|831.14|ICD9CM|Disloc acromioclavic-opn|Disloc acromioclavic-opn +C0159926|T037|PT|831.14|ICD9CM|Open dislocation of acromioclavicular (joint)|Open dislocation of acromioclavicular (joint) +C0159927|T037|AB|831.19|ICD9CM|Disloc shoulder NEC-open|Disloc shoulder NEC-open +C0159927|T037|PT|831.19|ICD9CM|Open dislocation of shoulder, other|Open dislocation of shoulder, other +C2720437|T037|HT|832|ICD9CM|Dislocation of elbow|Dislocation of elbow +C0434599|T037|HT|832.0|ICD9CM|Closed dislocation of elbow|Closed dislocation of elbow +C0375627|T037|PT|832.00|ICD9CM|Closed dislocation of elbow, unspecified|Closed dislocation of elbow, unspecified +C0375627|T037|AB|832.00|ICD9CM|Dislocat elbow NOS-close|Dislocat elbow NOS-close +C0159930|T037|AB|832.01|ICD9CM|Ant disloc elbow-closed|Ant disloc elbow-closed +C0159930|T037|PT|832.01|ICD9CM|Closed anterior dislocation of elbow|Closed anterior dislocation of elbow +C0159931|T037|PT|832.02|ICD9CM|Closed posterior dislocation of elbow|Closed posterior dislocation of elbow +C0159931|T037|AB|832.02|ICD9CM|Post disloc elbow-closed|Post disloc elbow-closed +C0159932|T037|PT|832.03|ICD9CM|Closed medial dislocation of elbow|Closed medial dislocation of elbow +C0159932|T037|AB|832.03|ICD9CM|Med disloc elbow-closed|Med disloc elbow-closed +C0159933|T037|PT|832.04|ICD9CM|Closed lateral dislocation of elbow|Closed lateral dislocation of elbow +C0159933|T037|AB|832.04|ICD9CM|Lat disloc elbow-closed|Lat disloc elbow-closed +C0159934|T037|PT|832.09|ICD9CM|Closed dislocation of elbow, other|Closed dislocation of elbow, other +C0159934|T037|AB|832.09|ICD9CM|Dislocat elbow NEC-close|Dislocat elbow NEC-close +C0434608|T037|HT|832.1|ICD9CM|Open dislocation of elbow|Open dislocation of elbow +C0434608|T037|AB|832.10|ICD9CM|Dislocat elbow NOS-open|Dislocat elbow NOS-open +C0434608|T037|PT|832.10|ICD9CM|Open dislocation of elbow, unspecified|Open dislocation of elbow, unspecified +C0434601|T037|AB|832.11|ICD9CM|Ant disloc elbow-open|Ant disloc elbow-open +C0434601|T037|PT|832.11|ICD9CM|Open anterior dislocation of elbow|Open anterior dislocation of elbow +C0434602|T037|PT|832.12|ICD9CM|Open posterior dislocation of elbow|Open posterior dislocation of elbow +C0434602|T037|AB|832.12|ICD9CM|Post disloc elbow-open|Post disloc elbow-open +C0434603|T037|AB|832.13|ICD9CM|Med disloc elbow-open|Med disloc elbow-open +C0434603|T037|PT|832.13|ICD9CM|Open medial dislocation of elbow|Open medial dislocation of elbow +C0434604|T037|AB|832.14|ICD9CM|Lat dislocat elbow-open|Lat dislocat elbow-open +C0434604|T037|PT|832.14|ICD9CM|Open lateral dislocation of elbow|Open lateral dislocation of elbow +C0159940|T037|AB|832.19|ICD9CM|Dislocat elbow NEC-open|Dislocat elbow NEC-open +C0159940|T037|PT|832.19|ICD9CM|Open dislocation of elbow, other|Open dislocation of elbow, other +C0149977|T037|AB|832.2|ICD9CM|Nursemaid's elbow|Nursemaid's elbow +C0149977|T037|PT|832.2|ICD9CM|Nursemaid's elbow|Nursemaid's elbow +C0159941|T037|HT|833|ICD9CM|Dislocation of wrist|Dislocation of wrist +C0159942|T037|HT|833.0|ICD9CM|Closed dislocation of wrist|Closed dislocation of wrist +C0159942|T037|PT|833.00|ICD9CM|Closed dislocation of wrist, unspecified part|Closed dislocation of wrist, unspecified part +C0159942|T037|AB|833.00|ICD9CM|Disloc wrist NOS-closed|Disloc wrist NOS-closed +C0159943|T037|PT|833.01|ICD9CM|Closed dislocation of radioulnar (joint), distal|Closed dislocation of radioulnar (joint), distal +C0159943|T037|AB|833.01|ICD9CM|Disloc dist radiouln-cl|Disloc dist radiouln-cl +C0159944|T037|PT|833.02|ICD9CM|Closed dislocation of radiocarpal (joint)|Closed dislocation of radiocarpal (joint) +C0159944|T037|AB|833.02|ICD9CM|Disloc radiocarpal-clos|Disloc radiocarpal-clos +C0159945|T037|PT|833.03|ICD9CM|Closed dislocation of midcarpal (joint)|Closed dislocation of midcarpal (joint) +C0159945|T037|AB|833.03|ICD9CM|Disloca midcarpal-closed|Disloca midcarpal-closed +C0159946|T037|PT|833.04|ICD9CM|Closed dislocation of carpometacarpal (joint)|Closed dislocation of carpometacarpal (joint) +C0159946|T037|AB|833.04|ICD9CM|Disloc carpometacarp-cl|Disloc carpometacarp-cl +C0159947|T037|PT|833.05|ICD9CM|Closed dislocation of metacarpal (bone), proximal end|Closed dislocation of metacarpal (bone), proximal end +C0159947|T037|AB|833.05|ICD9CM|Disloc metacarpal-closed|Disloc metacarpal-closed +C0159948|T037|PT|833.09|ICD9CM|Closed dislocation of wrist, other|Closed dislocation of wrist, other +C0159948|T037|AB|833.09|ICD9CM|Disloc wrist NEC-closed|Disloc wrist NEC-closed +C0434619|T037|HT|833.1|ICD9CM|Open dislocation of wrist|Open dislocation of wrist +C0375629|T037|AB|833.10|ICD9CM|Dislocat wrist NOS-open|Dislocat wrist NOS-open +C0375629|T037|PT|833.10|ICD9CM|Open dislocation of wrist, unspecified part|Open dislocation of wrist, unspecified part +C0159950|T037|AB|833.11|ICD9CM|Disloc dist radiouln-opn|Disloc dist radiouln-opn +C0159950|T037|PT|833.11|ICD9CM|Open dislocation of radioulnar (joint), distal|Open dislocation of radioulnar (joint), distal +C0159951|T037|AB|833.12|ICD9CM|Disloc radiocarpal-open|Disloc radiocarpal-open +C0159951|T037|PT|833.12|ICD9CM|Open dislocation of radiocarpal (joint)|Open dislocation of radiocarpal (joint) +C0159952|T037|AB|833.13|ICD9CM|Dislocat midcarpal-open|Dislocat midcarpal-open +C0159952|T037|PT|833.13|ICD9CM|Open dislocation of midcarpal (joint)|Open dislocation of midcarpal (joint) +C0159953|T037|AB|833.14|ICD9CM|Disloc carpometacarp-opn|Disloc carpometacarp-opn +C0159953|T037|PT|833.14|ICD9CM|Open dislocation of carpometacarpal (joint)|Open dislocation of carpometacarpal (joint) +C0272826|T037|AB|833.15|ICD9CM|Dislocat metacarpal-open|Dislocat metacarpal-open +C0272826|T037|PT|833.15|ICD9CM|Open dislocation of metacarpal (bone), proximal end|Open dislocation of metacarpal (bone), proximal end +C0159955|T037|AB|833.19|ICD9CM|Dislocat wrist NEC-open|Dislocat wrist NEC-open +C0159955|T037|PT|833.19|ICD9CM|Open dislocation of wrist, other|Open dislocation of wrist, other +C0159956|T037|HT|834|ICD9CM|Dislocation of finger|Dislocation of finger +C0159957|T037|HT|834.0|ICD9CM|Closed dislocation of finger|Closed dislocation of finger +C0375630|T037|PT|834.00|ICD9CM|Closed dislocation of finger, unspecified part|Closed dislocation of finger, unspecified part +C0375630|T037|AB|834.00|ICD9CM|Disl finger NOS-closed|Disl finger NOS-closed +C0272828|T037|PT|834.01|ICD9CM|Closed dislocation of metacarpophalangeal (joint)|Closed dislocation of metacarpophalangeal (joint) +C0272828|T037|AB|834.01|ICD9CM|Disloc metacarpophaln-cl|Disloc metacarpophaln-cl +C1264275|T037|PT|834.02|ICD9CM|Closed dislocation of interphalangeal (joint), hand|Closed dislocation of interphalangeal (joint), hand +C1264275|T037|AB|834.02|ICD9CM|Disl interphaln hand-cl|Disl interphaln hand-cl +C0159960|T037|HT|834.1|ICD9CM|Open dislocation of finger|Open dislocation of finger +C0375631|T037|AB|834.10|ICD9CM|Disloc finger NOS-open|Disloc finger NOS-open +C0375631|T037|PT|834.10|ICD9CM|Open dislocation of finger, unspecified part|Open dislocation of finger, unspecified part +C0159961|T037|AB|834.11|ICD9CM|Disl metacarpophalan-opn|Disl metacarpophalan-opn +C0159961|T037|PT|834.11|ICD9CM|Open dislocation of metacarpophalangeal (joint)|Open dislocation of metacarpophalangeal (joint) +C0159962|T037|AB|834.12|ICD9CM|Disl interphaln hand-opn|Disl interphaln hand-opn +C0159962|T037|PT|834.12|ICD9CM|Open dislocation interphalangeal (joint), hand|Open dislocation interphalangeal (joint), hand +C0019554|T037|HT|835|ICD9CM|Dislocation of hip|Dislocation of hip +C0009041|T037|HT|835.0|ICD9CM|Closed dislocation of hip|Closed dislocation of hip +C0375632|T037|PT|835.00|ICD9CM|Closed dislocation of hip, unspecified site|Closed dislocation of hip, unspecified site +C0375632|T037|AB|835.00|ICD9CM|Dislocat hip NOS-closed|Dislocat hip NOS-closed +C0159963|T037|PT|835.01|ICD9CM|Closed posterior dislocation of hip|Closed posterior dislocation of hip +C0159963|T037|AB|835.01|ICD9CM|Posterior disloc hip-cl|Posterior disloc hip-cl +C0159964|T037|PT|835.02|ICD9CM|Closed obturator dislocation of hip|Closed obturator dislocation of hip +C0159964|T037|AB|835.02|ICD9CM|Obturator disloc hip-cl|Obturator disloc hip-cl +C0159965|T037|AB|835.03|ICD9CM|Ant disloc hip NEC-clos|Ant disloc hip NEC-clos +C0159965|T037|PT|835.03|ICD9CM|Other closed anterior dislocation of hip|Other closed anterior dislocation of hip +C0434666|T037|HT|835.1|ICD9CM|Open dislocation of hip|Open dislocation of hip +C0375633|T037|AB|835.10|ICD9CM|Dislocation hip NOS-open|Dislocation hip NOS-open +C0375633|T037|PT|835.10|ICD9CM|Open dislocation of hip, unspecified site|Open dislocation of hip, unspecified site +C0434663|T037|PT|835.11|ICD9CM|Open posterior dislocation of hip|Open posterior dislocation of hip +C0434663|T037|AB|835.11|ICD9CM|Posterior disloc hip-opn|Posterior disloc hip-opn +C0159968|T037|AB|835.12|ICD9CM|Obturator disloc hip-opn|Obturator disloc hip-opn +C0159968|T037|PT|835.12|ICD9CM|Open obturator dislocation of hip|Open obturator dislocation of hip +C0159969|T037|AB|835.13|ICD9CM|Ant disloc hip NEC-open|Ant disloc hip NEC-open +C0159969|T037|PT|835.13|ICD9CM|Other open anterior dislocation of hip|Other open anterior dislocation of hip +C0159970|T037|HT|836|ICD9CM|Dislocation of knee|Dislocation of knee +C1281729|T037|AB|836.0|ICD9CM|Tear med menisc knee-cur|Tear med menisc knee-cur +C1281729|T037|PT|836.0|ICD9CM|Tear of medial cartilage or meniscus of knee, current|Tear of medial cartilage or meniscus of knee, current +C1281794|T037|AB|836.1|ICD9CM|Tear lat menisc knee-cur|Tear lat menisc knee-cur +C1281794|T037|PT|836.1|ICD9CM|Tear of lateral cartilage or meniscus of knee, current|Tear of lateral cartilage or meniscus of knee, current +C0159973|T037|PT|836.2|ICD9CM|Other tear of cartilage or meniscus of knee, current|Other tear of cartilage or meniscus of knee, current +C0159973|T037|AB|836.2|ICD9CM|Tear meniscus NEC-curren|Tear meniscus NEC-curren +C0434685|T037|AB|836.3|ICD9CM|Dislocat patella-closed|Dislocat patella-closed +C0434685|T037|PT|836.3|ICD9CM|Dislocation of patella, closed|Dislocation of patella, closed +C0159975|T037|PT|836.4|ICD9CM|Dislocation of patella, open|Dislocation of patella, open +C0159975|T037|AB|836.4|ICD9CM|Dislocation patella-open|Dislocation patella-open +C0159976|T037|HT|836.5|ICD9CM|Other dislocation of knee, closed|Other dislocation of knee, closed +C0375634|T037|AB|836.50|ICD9CM|Dislocat knee NOS-closed|Dislocat knee NOS-closed +C0375634|T037|PT|836.50|ICD9CM|Dislocation of knee, unspecified, closed|Dislocation of knee, unspecified, closed +C0159978|T037|AB|836.51|ICD9CM|Ant disloc prox tibia-cl|Ant disloc prox tibia-cl +C0159978|T037|PT|836.51|ICD9CM|Anterior dislocation of tibia, proximal end, closed|Anterior dislocation of tibia, proximal end, closed +C0159979|T037|AB|836.52|ICD9CM|Post disl prox tibia-cl|Post disl prox tibia-cl +C0159979|T037|PT|836.52|ICD9CM|Posterior dislocation of tibia, proximal end, closed|Posterior dislocation of tibia, proximal end, closed +C0159980|T037|AB|836.53|ICD9CM|Med disloc prox tibia-cl|Med disloc prox tibia-cl +C0159980|T037|PT|836.53|ICD9CM|Medial dislocation of tibia, proximal end, closed|Medial dislocation of tibia, proximal end, closed +C0159981|T037|AB|836.54|ICD9CM|Lat disloc prox tibia-cl|Lat disloc prox tibia-cl +C0159981|T037|PT|836.54|ICD9CM|Lateral dislocation of tibia, proximal end, closed|Lateral dislocation of tibia, proximal end, closed +C0159976|T037|AB|836.59|ICD9CM|Dislocat knee NEC-closed|Dislocat knee NEC-closed +C0159976|T037|PT|836.59|ICD9CM|Other dislocation of knee, closed|Other dislocation of knee, closed +C0159982|T037|HT|836.6|ICD9CM|Other dislocation of knee, open|Other dislocation of knee, open +C0272842|T037|AB|836.60|ICD9CM|Dislocat knee NOS-open|Dislocat knee NOS-open +C0272842|T037|PT|836.60|ICD9CM|Dislocation of knee, unspecified, open|Dislocation of knee, unspecified, open +C0159984|T037|AB|836.61|ICD9CM|Ant disl prox tibia-open|Ant disl prox tibia-open +C0159984|T037|PT|836.61|ICD9CM|Anterior dislocation of tibia, proximal end, open|Anterior dislocation of tibia, proximal end, open +C0159985|T037|AB|836.62|ICD9CM|Post disl prox tibia-opn|Post disl prox tibia-opn +C0159985|T037|PT|836.62|ICD9CM|Posterior dislocation of tibia, proximal end, open|Posterior dislocation of tibia, proximal end, open +C0159986|T037|AB|836.63|ICD9CM|Med disl prox tibia-open|Med disl prox tibia-open +C0159986|T037|PT|836.63|ICD9CM|Medial dislocation of tibia, proximal end, open|Medial dislocation of tibia, proximal end, open +C0159987|T037|AB|836.64|ICD9CM|Lat disl prox tibia-open|Lat disl prox tibia-open +C0159987|T037|PT|836.64|ICD9CM|Lateral dislocation of tibia, proximal end, open|Lateral dislocation of tibia, proximal end, open +C0159982|T037|AB|836.69|ICD9CM|Dislocat knee NEC-open|Dislocat knee NEC-open +C0159982|T037|PT|836.69|ICD9CM|Other dislocation of knee, open|Other dislocation of knee, open +C0434691|T037|HT|837|ICD9CM|Dislocation of ankle|Dislocation of ankle +C0434692|T037|PT|837.0|ICD9CM|Closed dislocation of ankle|Closed dislocation of ankle +C0434692|T037|AB|837.0|ICD9CM|Dislocation ankle-closed|Dislocation ankle-closed +C0159990|T037|AB|837.1|ICD9CM|Dislocation ankle-open|Dislocation ankle-open +C0159990|T037|PT|837.1|ICD9CM|Open dislocation of ankle|Open dislocation of ankle +C0434694|T037|HT|838|ICD9CM|Dislocation of foot|Dislocation of foot +C0434696|T037|HT|838.0|ICD9CM|Closed dislocation of foot|Closed dislocation of foot +C0375635|T037|PT|838.00|ICD9CM|Closed dislocation of foot, unspecified|Closed dislocation of foot, unspecified +C0375635|T037|AB|838.00|ICD9CM|Dislocat foot NOS-closed|Dislocat foot NOS-closed +C0159993|T037|PT|838.01|ICD9CM|Closed dislocation of tarsal (bone), joint unspecified|Closed dislocation of tarsal (bone), joint unspecified +C0159993|T037|AB|838.01|ICD9CM|Disloc tarsal NOS-closed|Disloc tarsal NOS-closed +C0159994|T037|PT|838.02|ICD9CM|Closed dislocation of midtarsal (joint)|Closed dislocation of midtarsal (joint) +C0159994|T037|AB|838.02|ICD9CM|Disloc midtarsal-closed|Disloc midtarsal-closed +C0159995|T037|PT|838.03|ICD9CM|Closed dislocation of tarsometatarsal (joint)|Closed dislocation of tarsometatarsal (joint) +C0159995|T037|AB|838.03|ICD9CM|Disloc tarsometatars-cl|Disloc tarsometatars-cl +C0159996|T037|PT|838.04|ICD9CM|Closed dislocation of metatarsal (bone), joint unspecified|Closed dislocation of metatarsal (bone), joint unspecified +C0159996|T037|AB|838.04|ICD9CM|Disloc metatarsal NOS-cl|Disloc metatarsal NOS-cl +C0159997|T037|PT|838.05|ICD9CM|Closed dislocation of metatarsophalangeal (joint)|Closed dislocation of metatarsophalangeal (joint) +C0159997|T037|AB|838.05|ICD9CM|Disl metatarsophalang-cl|Disl metatarsophalang-cl +C0159998|T037|PT|838.06|ICD9CM|Closed dislocation of interphalangeal (joint), foot|Closed dislocation of interphalangeal (joint), foot +C0159998|T037|AB|838.06|ICD9CM|Disl interphalan foot-cl|Disl interphalan foot-cl +C0159999|T037|PT|838.09|ICD9CM|Closed dislocation of foot, other|Closed dislocation of foot, other +C0159999|T037|AB|838.09|ICD9CM|Dislocat foot NEC-closed|Dislocat foot NEC-closed +C0434707|T037|HT|838.1|ICD9CM|Open dislocation of foot|Open dislocation of foot +C0375636|T037|AB|838.10|ICD9CM|Dislocat foot NOS-open|Dislocat foot NOS-open +C0375636|T037|PT|838.10|ICD9CM|Open dislocation of foot, unspecified|Open dislocation of foot, unspecified +C0160001|T037|AB|838.11|ICD9CM|Disloc tarsal NOS-open|Disloc tarsal NOS-open +C0160001|T037|PT|838.11|ICD9CM|Open dislocation of tarsal (bone), joint unspecified|Open dislocation of tarsal (bone), joint unspecified +C0434715|T037|AB|838.12|ICD9CM|Disloc midtarsal-open|Disloc midtarsal-open +C0434715|T037|PT|838.12|ICD9CM|Open dislocation of midtarsal (joint)|Open dislocation of midtarsal (joint) +C0434714|T037|AB|838.13|ICD9CM|Disl tarsometatarsal-opn|Disl tarsometatarsal-opn +C0434714|T037|PT|838.13|ICD9CM|Open dislocation of tarsometatarsal (joint)|Open dislocation of tarsometatarsal (joint) +C0160004|T037|AB|838.14|ICD9CM|Disl metatarsal NOS-open|Disl metatarsal NOS-open +C0160004|T037|PT|838.14|ICD9CM|Open dislocation of metatarsal (bone), joint unspecified|Open dislocation of metatarsal (bone), joint unspecified +C0160005|T037|AB|838.15|ICD9CM|Disloc metatarsophal-opn|Disloc metatarsophal-opn +C0160005|T037|PT|838.15|ICD9CM|Open dislocation of metatarsophalangeal (joint)|Open dislocation of metatarsophalangeal (joint) +C0160006|T037|AB|838.16|ICD9CM|Dis interphalan foot-opn|Dis interphalan foot-opn +C0160006|T037|PT|838.16|ICD9CM|Open dislocation of interphalangeal (joint), foot|Open dislocation of interphalangeal (joint), foot +C0160007|T037|AB|838.19|ICD9CM|Dislocat foot NEC-open|Dislocat foot NEC-open +C0160007|T037|PT|838.19|ICD9CM|Open dislocation of foot, other|Open dislocation of foot, other +C0029876|T037|HT|839|ICD9CM|Other, multiple, and ill-defined dislocations|Other, multiple, and ill-defined dislocations +C0160008|T037|HT|839.0|ICD9CM|Closed dislocation, cervical vertebra|Closed dislocation, cervical vertebra +C0160008|T037|PT|839.00|ICD9CM|Closed dislocation, cervical vertebra, unspecified|Closed dislocation, cervical vertebra, unspecified +C0160008|T037|AB|839.00|ICD9CM|Disloc cerv vert NOS-cl|Disloc cerv vert NOS-cl +C0160009|T037|PT|839.01|ICD9CM|Closed dislocation, first cervical vertebra|Closed dislocation, first cervical vertebra +C0160009|T037|AB|839.01|ICD9CM|Disloc 1st cerv vert-cl|Disloc 1st cerv vert-cl +C0160010|T037|PT|839.02|ICD9CM|Closed dislocation, second cervical vertebra|Closed dislocation, second cervical vertebra +C0160010|T037|AB|839.02|ICD9CM|Disloc 2nd cerv vert-cl|Disloc 2nd cerv vert-cl +C0160011|T037|PT|839.03|ICD9CM|Closed dislocation, third cervical vertebra|Closed dislocation, third cervical vertebra +C0160011|T037|AB|839.03|ICD9CM|Disloc 3rd cerv vert-cl|Disloc 3rd cerv vert-cl +C0160012|T037|PT|839.04|ICD9CM|Closed dislocation, fourth cervical vertebra|Closed dislocation, fourth cervical vertebra +C0160012|T037|AB|839.04|ICD9CM|Disloc 4th cerv vert-cl|Disloc 4th cerv vert-cl +C0160013|T037|PT|839.05|ICD9CM|Closed dislocation, fifth cervical vertebra|Closed dislocation, fifth cervical vertebra +C0160013|T037|AB|839.05|ICD9CM|Disloc 5th cerv vert-cl|Disloc 5th cerv vert-cl +C0160014|T037|PT|839.06|ICD9CM|Closed dislocation, sixth cervical vertebra|Closed dislocation, sixth cervical vertebra +C0160014|T037|AB|839.06|ICD9CM|Disloc 6th cerv vert-cl|Disloc 6th cerv vert-cl +C0160015|T037|PT|839.07|ICD9CM|Closed dislocation, seventh cervical vertebra|Closed dislocation, seventh cervical vertebra +C0160015|T037|AB|839.07|ICD9CM|Disloc 7th cerv vert-cl|Disloc 7th cerv vert-cl +C0160016|T037|PT|839.08|ICD9CM|Closed dislocation, multiple cervical vertebrae|Closed dislocation, multiple cervical vertebrae +C0160016|T037|AB|839.08|ICD9CM|Disloc mult cerv vert-cl|Disloc mult cerv vert-cl +C0160017|T037|HT|839.1|ICD9CM|Open dislocation, cervical vertebra|Open dislocation, cervical vertebra +C0160017|T037|AB|839.10|ICD9CM|Disloc cerv vert NOS-opn|Disloc cerv vert NOS-opn +C0160017|T037|PT|839.10|ICD9CM|Open dislocation, cervical vertebra, unspecified|Open dislocation, cervical vertebra, unspecified +C0160018|T037|AB|839.11|ICD9CM|Disloc lst cerv vert-opn|Disloc lst cerv vert-opn +C0160018|T037|PT|839.11|ICD9CM|Open dislocation, first cervical vertebra|Open dislocation, first cervical vertebra +C0160019|T037|AB|839.12|ICD9CM|Disloc 2nd cerv vert-opn|Disloc 2nd cerv vert-opn +C0160019|T037|PT|839.12|ICD9CM|Open dislocation, second cervical vertebra|Open dislocation, second cervical vertebra +C0160020|T037|AB|839.13|ICD9CM|Disloc 3rd cerv vert-opn|Disloc 3rd cerv vert-opn +C0160020|T037|PT|839.13|ICD9CM|Open dislocation, third cervical vertebra|Open dislocation, third cervical vertebra +C0160021|T037|AB|839.14|ICD9CM|Disloc 4th cerv vert-opn|Disloc 4th cerv vert-opn +C0160021|T037|PT|839.14|ICD9CM|Open dislocation, fourth cervical vertebra|Open dislocation, fourth cervical vertebra +C0160022|T037|AB|839.15|ICD9CM|Disloc 5th cerv vert-opn|Disloc 5th cerv vert-opn +C0160022|T037|PT|839.15|ICD9CM|Open dislocation, fifth cervical vertebra|Open dislocation, fifth cervical vertebra +C0160023|T037|AB|839.16|ICD9CM|Disloc 6th cerv vert-opn|Disloc 6th cerv vert-opn +C0160023|T037|PT|839.16|ICD9CM|Open dislocation, sixth cervical vertebra|Open dislocation, sixth cervical vertebra +C0160024|T037|AB|839.17|ICD9CM|Disloc 7th cerv vert-opn|Disloc 7th cerv vert-opn +C0160024|T037|PT|839.17|ICD9CM|Open dislocation, seventh cervical vertebra|Open dislocation, seventh cervical vertebra +C0160025|T037|AB|839.18|ICD9CM|Disloc mlt cerv vert-opn|Disloc mlt cerv vert-opn +C0160025|T037|PT|839.18|ICD9CM|Open dislocation, multiple cervical vertebrae|Open dislocation, multiple cervical vertebrae +C0160026|T037|HT|839.2|ICD9CM|Closed dislocation, thoracic and lumbar vertebra|Closed dislocation, thoracic and lumbar vertebra +C0160027|T037|PT|839.20|ICD9CM|Closed dislocation, lumbar vertebra|Closed dislocation, lumbar vertebra +C0160027|T037|AB|839.20|ICD9CM|Dislocat lumbar vert-cl|Dislocat lumbar vert-cl +C0160028|T037|PT|839.21|ICD9CM|Closed dislocation, thoracic vertebra|Closed dislocation, thoracic vertebra +C0160028|T037|AB|839.21|ICD9CM|Disloc thoracic vert-cl|Disloc thoracic vert-cl +C0160029|T037|HT|839.3|ICD9CM|Open dislocation, thoracic and lumbar vertebra|Open dislocation, thoracic and lumbar vertebra +C0160030|T037|AB|839.30|ICD9CM|Dislocat lumbar vert-opn|Dislocat lumbar vert-opn +C0160030|T037|PT|839.30|ICD9CM|Open dislocation, lumbar vertebra|Open dislocation, lumbar vertebra +C0160031|T037|AB|839.31|ICD9CM|Disloc thoracic vert-opn|Disloc thoracic vert-opn +C0160031|T037|PT|839.31|ICD9CM|Open dislocation, thoracic vertebra|Open dislocation, thoracic vertebra +C0160032|T037|HT|839.4|ICD9CM|Closed dislocation, other vertebra|Closed dislocation, other vertebra +C0160033|T037|PT|839.40|ICD9CM|Closed dislocation, vertebra, unspecified site|Closed dislocation, vertebra, unspecified site +C0160033|T037|AB|839.40|ICD9CM|Dislocat vertebra NOS-cl|Dislocat vertebra NOS-cl +C0160034|T037|PT|839.41|ICD9CM|Closed dislocation, coccyx|Closed dislocation, coccyx +C0160034|T037|AB|839.41|ICD9CM|Dislocat coccyx-closed|Dislocat coccyx-closed +C0160035|T037|PT|839.42|ICD9CM|Closed dislocation, sacrum|Closed dislocation, sacrum +C0160035|T037|AB|839.42|ICD9CM|Dislocat sacrum-closed|Dislocat sacrum-closed +C0160032|T037|PT|839.49|ICD9CM|Closed dislocation, vertebra, other|Closed dislocation, vertebra, other +C0160032|T037|AB|839.49|ICD9CM|Dislocat vertebra NEC-cl|Dislocat vertebra NEC-cl +C0160036|T037|HT|839.5|ICD9CM|Open dislocation, other vertebra|Open dislocation, other vertebra +C0160037|T037|AB|839.50|ICD9CM|Disloc vertebra NOS-open|Disloc vertebra NOS-open +C0160037|T037|PT|839.50|ICD9CM|Open dislocation, vertebra, unspecified site|Open dislocation, vertebra, unspecified site +C0160038|T037|AB|839.51|ICD9CM|Dislocat coccyx-open|Dislocat coccyx-open +C0160038|T037|PT|839.51|ICD9CM|Open dislocation, coccyx|Open dislocation, coccyx +C0160039|T037|AB|839.52|ICD9CM|Dislocat sacrum-open|Dislocat sacrum-open +C0160039|T037|PT|839.52|ICD9CM|Open dislocation, sacrum|Open dislocation, sacrum +C0160036|T037|AB|839.59|ICD9CM|Disloc vertebra NEC-open|Disloc vertebra NEC-open +C0160036|T037|PT|839.59|ICD9CM|Open dislocation, vertebra,other|Open dislocation, vertebra,other +C0160040|T037|HT|839.6|ICD9CM|Closed dislocation, other location|Closed dislocation, other location +C0160041|T037|PT|839.61|ICD9CM|Closed dislocation, sternum|Closed dislocation, sternum +C0160041|T037|AB|839.61|ICD9CM|Dislocat sternum-closed|Dislocat sternum-closed +C0160040|T037|PT|839.69|ICD9CM|Closed dislocation, other location|Closed dislocation, other location +C0160040|T037|AB|839.69|ICD9CM|Dislocat site NEC-closed|Dislocat site NEC-closed +C0160042|T037|HT|839.7|ICD9CM|Open dislocation, other location|Open dislocation, other location +C0160043|T037|AB|839.71|ICD9CM|Dislocation sternum-open|Dislocation sternum-open +C0160043|T037|PT|839.71|ICD9CM|Open dislocation, sternum|Open dislocation, sternum +C0160042|T037|AB|839.79|ICD9CM|Dislocat site NEC-open|Dislocat site NEC-open +C0160042|T037|PT|839.79|ICD9CM|Open dislocation, other location|Open dislocation, other location +C0009043|T037|PT|839.8|ICD9CM|Closed dislocation, multiple and ill-defined sites|Closed dislocation, multiple and ill-defined sites +C0009043|T037|AB|839.8|ICD9CM|Dislocation NEC-closed|Dislocation NEC-closed +C0160044|T037|AB|839.9|ICD9CM|Dislocation NEC-open|Dislocation NEC-open +C0160044|T037|PT|839.9|ICD9CM|Open dislocation, multiple and ill-defined sites|Open dislocation, multiple and ill-defined sites +C0160045|T037|HT|840|ICD9CM|Sprains and strains of shoulder and upper arm|Sprains and strains of shoulder and upper arm +C0038048|T037|HT|840-848.99|ICD9CM|SPRAINS AND STRAINS OF JOINTS AND ADJACENT MUSCLES|SPRAINS AND STRAINS OF JOINTS AND ADJACENT MUSCLES +C0272870|T037|PT|840.0|ICD9CM|Acromioclavicular (joint) (ligament) sprain|Acromioclavicular (joint) (ligament) sprain +C0272870|T037|AB|840.0|ICD9CM|Sprain acromioclavicular|Sprain acromioclavicular +C0160047|T037|PT|840.1|ICD9CM|Coracoclavicular (ligament) sprain|Coracoclavicular (ligament) sprain +C0160047|T037|AB|840.1|ICD9CM|Sprain coracoclavicular|Sprain coracoclavicular +C0435003|T037|PT|840.2|ICD9CM|Coracohumeral (ligament) sprain|Coracohumeral (ligament) sprain +C0435003|T037|AB|840.2|ICD9CM|Sprain coracohumeral|Sprain coracohumeral +C1306110|T037|PT|840.3|ICD9CM|Infraspinatus (muscle) (tendon) sprain|Infraspinatus (muscle) (tendon) sprain +C1306110|T037|AB|840.3|ICD9CM|Sprain infraspinatus|Sprain infraspinatus +C0434322|T037|PT|840.4|ICD9CM|Rotator cuff (capsule) sprain|Rotator cuff (capsule) sprain +C0434322|T037|AB|840.4|ICD9CM|Sprain rotator cuff|Sprain rotator cuff +C0160051|T037|AB|840.5|ICD9CM|Sprain subscapularis|Sprain subscapularis +C0160051|T037|PT|840.5|ICD9CM|Subscapularis (muscle) sprain|Subscapularis (muscle) sprain +C0749173|T037|AB|840.6|ICD9CM|Sprain supraspinatus|Sprain supraspinatus +C0749173|T037|PT|840.6|ICD9CM|Supraspinatus (muscle) (tendon) sprain|Supraspinatus (muscle) (tendon) sprain +C0949149|T037|AB|840.7|ICD9CM|Sup glenoid labrm lesion|Sup glenoid labrm lesion +C0949149|T037|PT|840.7|ICD9CM|Superior glenoid labrum lesion|Superior glenoid labrum lesion +C0160053|T037|AB|840.8|ICD9CM|Sprain shoulder/arm NEC|Sprain shoulder/arm NEC +C0160053|T037|PT|840.8|ICD9CM|Sprains and strains of other specified sites of shoulder and upper arm|Sprains and strains of other specified sites of shoulder and upper arm +C0160054|T037|AB|840.9|ICD9CM|Sprain shoulder/arm NOS|Sprain shoulder/arm NOS +C0160054|T037|PT|840.9|ICD9CM|Sprains and strains of unspecified site of shoulder and upper arm|Sprains and strains of unspecified site of shoulder and upper arm +C0160055|T037|HT|841|ICD9CM|Sprains and strains of elbow and forearm|Sprains and strains of elbow and forearm +C0160056|T037|PT|841.0|ICD9CM|Radial collateral ligament sprain|Radial collateral ligament sprain +C0160056|T037|AB|841.0|ICD9CM|Sprain radial collat lig|Sprain radial collat lig +C0160057|T037|AB|841.1|ICD9CM|Sprain ulnar collat lig|Sprain ulnar collat lig +C0160057|T037|PT|841.1|ICD9CM|Ulnar collateral ligament sprain|Ulnar collateral ligament sprain +C0160058|T037|PT|841.2|ICD9CM|Radiohumeral (joint) sprain|Radiohumeral (joint) sprain +C0160058|T037|AB|841.2|ICD9CM|Sprain radiohumeral|Sprain radiohumeral +C0160059|T037|AB|841.3|ICD9CM|Sprain ulnohumeral|Sprain ulnohumeral +C0160059|T037|PT|841.3|ICD9CM|Ulnohumeral (joint) sprain|Ulnohumeral (joint) sprain +C0160060|T037|AB|841.8|ICD9CM|Sprain elbow/forearm NEC|Sprain elbow/forearm NEC +C0160060|T037|PT|841.8|ICD9CM|Sprains and strains of other specified sites of elbow and forearm|Sprains and strains of other specified sites of elbow and forearm +C0160061|T037|AB|841.9|ICD9CM|Sprain elbow/forearm NOS|Sprain elbow/forearm NOS +C0160061|T037|PT|841.9|ICD9CM|Sprains and strains of unspecified site of elbow and forearm|Sprains and strains of unspecified site of elbow and forearm +C0160062|T037|HT|842|ICD9CM|Sprains and strains of wrist and hand|Sprains and strains of wrist and hand +C0160063|T037|HT|842.0|ICD9CM|Wrist sprain|Wrist sprain +C0160063|T037|AB|842.00|ICD9CM|Sprain of wrist NOS|Sprain of wrist NOS +C0160063|T037|PT|842.00|ICD9CM|Sprain of wrist, unspecified site|Sprain of wrist, unspecified site +C0272880|T037|AB|842.01|ICD9CM|Sprain carpal|Sprain carpal +C0272880|T037|PT|842.01|ICD9CM|Sprain of carpal (joint) of wrist|Sprain of carpal (joint) of wrist +C0272881|T037|PT|842.02|ICD9CM|Sprain of radiocarpal (joint) (ligament) of wrist|Sprain of radiocarpal (joint) (ligament) of wrist +C0272881|T037|AB|842.02|ICD9CM|Sprain radiocarpal|Sprain radiocarpal +C0160067|T037|PT|842.09|ICD9CM|Other sprains and strains of wrist|Other sprains and strains of wrist +C0160067|T037|AB|842.09|ICD9CM|Sprain of wrist NEC|Sprain of wrist NEC +C0160068|T037|HT|842.1|ICD9CM|Hand sprain|Hand sprain +C0160068|T037|AB|842.10|ICD9CM|Sprain of hand NOS|Sprain of hand NOS +C0160068|T037|PT|842.10|ICD9CM|Sprain of hand, unspecified site|Sprain of hand, unspecified site +C0160070|T037|AB|842.11|ICD9CM|Sprain carpometacarpal|Sprain carpometacarpal +C0160070|T037|PT|842.11|ICD9CM|Sprain of carpometacarpal (joint) of hand|Sprain of carpometacarpal (joint) of hand +C0160071|T037|AB|842.12|ICD9CM|Sprain metacarpophalang|Sprain metacarpophalang +C0160071|T037|PT|842.12|ICD9CM|Sprain of metacarpophalangeal (joint) of hand|Sprain of metacarpophalangeal (joint) of hand +C0160072|T037|AB|842.13|ICD9CM|Sprain interphalangeal|Sprain interphalangeal +C0160072|T037|PT|842.13|ICD9CM|Sprain of interphalangeal (joint) of hand|Sprain of interphalangeal (joint) of hand +C0160073|T037|PT|842.19|ICD9CM|Other sprains and strains of hand|Other sprains and strains of hand +C0160073|T037|AB|842.19|ICD9CM|Sprain of hand NEC|Sprain of hand NEC +C0160074|T037|HT|843|ICD9CM|Sprains and strains of hip and thigh|Sprains and strains of hip and thigh +C0160075|T037|PT|843.0|ICD9CM|Iliofemoral (ligament) sprain|Iliofemoral (ligament) sprain +C0160075|T037|AB|843.0|ICD9CM|Sprain iliofemoral|Sprain iliofemoral +C0434483|T037|PT|843.1|ICD9CM|Ischiocapsular (ligament) sprain|Ischiocapsular (ligament) sprain +C0434483|T037|AB|843.1|ICD9CM|Sprain ischiocapsular|Sprain ischiocapsular +C0160077|T037|AB|843.8|ICD9CM|Sprain hip & thigh NEC|Sprain hip & thigh NEC +C0160077|T037|PT|843.8|ICD9CM|Sprains and strains of other specified sites of hip and thigh|Sprains and strains of other specified sites of hip and thigh +C0160078|T037|AB|843.9|ICD9CM|Sprain hip & thigh NOS|Sprain hip & thigh NOS +C0160078|T037|PT|843.9|ICD9CM|Sprains and strains of unspecified site of hip and thigh|Sprains and strains of unspecified site of hip and thigh +C0160079|T037|HT|844|ICD9CM|Sprains and strains of knee and leg|Sprains and strains of knee and leg +C0160080|T037|AB|844.0|ICD9CM|Sprain lateral coll lig|Sprain lateral coll lig +C0160080|T037|PT|844.0|ICD9CM|Sprain of lateral collateral ligament of knee|Sprain of lateral collateral ligament of knee +C0160081|T037|AB|844.1|ICD9CM|Sprain medial collat lig|Sprain medial collat lig +C0160081|T037|PT|844.1|ICD9CM|Sprain of medial collateral ligament of knee|Sprain of medial collateral ligament of knee +C0160082|T037|AB|844.2|ICD9CM|Sprain cruciate lig knee|Sprain cruciate lig knee +C0160082|T037|PT|844.2|ICD9CM|Sprain of cruciate ligament of knee|Sprain of cruciate ligament of knee +C0435018|T037|PT|844.3|ICD9CM|Sprain of tibiofibular (joint) (ligament) superior, of knee|Sprain of tibiofibular (joint) (ligament) superior, of knee +C0435018|T037|AB|844.3|ICD9CM|Sprain super tibiofibula|Sprain super tibiofibula +C0160084|T037|AB|844.8|ICD9CM|Sprain of knee & leg NEC|Sprain of knee & leg NEC +C0160084|T037|PT|844.8|ICD9CM|Sprains and strains of other specified sites of knee and leg|Sprains and strains of other specified sites of knee and leg +C0160085|T037|AB|844.9|ICD9CM|Sprain of knee & leg NOS|Sprain of knee & leg NOS +C0160085|T037|PT|844.9|ICD9CM|Sprains and strains of unspecified site of knee and leg|Sprains and strains of unspecified site of knee and leg +C0160086|T037|HT|845|ICD9CM|Sprains and strains of ankle and foot|Sprains and strains of ankle and foot +C0160087|T037|HT|845.0|ICD9CM|Ankle sprain|Ankle sprain +C0160087|T037|AB|845.00|ICD9CM|Sprain of ankle NOS|Sprain of ankle NOS +C0160087|T037|PT|845.00|ICD9CM|Sprain of ankle, unspecified site|Sprain of ankle, unspecified site +C0160089|T037|AB|845.01|ICD9CM|Sprain of ankle deltoid|Sprain of ankle deltoid +C0160089|T037|PT|845.01|ICD9CM|Sprain of deltoid (ligament), ankle|Sprain of deltoid (ligament), ankle +C0160090|T037|AB|845.02|ICD9CM|Sprain calcaneofibular|Sprain calcaneofibular +C0160090|T037|PT|845.02|ICD9CM|Sprain of calcaneofibular (ligament) of ankle|Sprain of calcaneofibular (ligament) of ankle +C0160091|T037|AB|845.03|ICD9CM|Sprain distal tibiofibul|Sprain distal tibiofibul +C0160091|T037|PT|845.03|ICD9CM|Sprain of tibiofibular (ligament), distal of ankle|Sprain of tibiofibular (ligament), distal of ankle +C0160092|T037|PT|845.09|ICD9CM|Other sprains and strains of ankle|Other sprains and strains of ankle +C0160092|T037|AB|845.09|ICD9CM|Sprain of ankle NEC|Sprain of ankle NEC +C0160093|T037|HT|845.1|ICD9CM|Foot sprain|Foot sprain +C0160094|T037|AB|845.10|ICD9CM|Sprain of foot NOS|Sprain of foot NOS +C0160094|T037|PT|845.10|ICD9CM|Sprain of foot, unspecified site|Sprain of foot, unspecified site +C0272905|T037|PT|845.11|ICD9CM|Sprain of tarsometatarsal (joint) (ligament) of foot|Sprain of tarsometatarsal (joint) (ligament) of foot +C0272905|T037|AB|845.11|ICD9CM|Sprain tarsometatarsal|Sprain tarsometatarsal +C0160096|T037|AB|845.12|ICD9CM|Sprain metatarsophalang|Sprain metatarsophalang +C0160096|T037|PT|845.12|ICD9CM|Sprain of metatarsophalangeal (joint) of foot|Sprain of metatarsophalangeal (joint) of foot +C0160097|T037|AB|845.13|ICD9CM|Sprain interphalang toe|Sprain interphalang toe +C0160097|T037|PT|845.13|ICD9CM|Sprain of interphalangeal (joint), toe|Sprain of interphalangeal (joint), toe +C0160098|T037|PT|845.19|ICD9CM|Other sprain of foot|Other sprain of foot +C0160098|T037|AB|845.19|ICD9CM|Sprain of foot NEC|Sprain of foot NEC +C0160099|T037|HT|846|ICD9CM|Sprains and strains of sacroiliac region|Sprains and strains of sacroiliac region +C0272914|T037|AB|846.0|ICD9CM|Sprain lumbosacral|Sprain lumbosacral +C0272914|T037|PT|846.0|ICD9CM|Sprain of lumbosacral (joint) (ligament)|Sprain of lumbosacral (joint) (ligament) +C0434473|T037|PT|846.1|ICD9CM|Sprain of sacroiliac ligament|Sprain of sacroiliac ligament +C0434473|T037|AB|846.1|ICD9CM|Sprain sacroiliac|Sprain sacroiliac +C0160102|T037|PT|846.2|ICD9CM|Sprain of sacrospinatus (ligament)|Sprain of sacrospinatus (ligament) +C0160102|T037|AB|846.2|ICD9CM|Sprain sacrospinatus|Sprain sacrospinatus +C0160103|T037|PT|846.3|ICD9CM|Sprain of sacrotuberous (ligament)|Sprain of sacrotuberous (ligament) +C0160103|T037|AB|846.3|ICD9CM|Sprain sacrotuberous|Sprain sacrotuberous +C0160104|T037|PT|846.8|ICD9CM|Sprain of other specified sites of sacroiliac region|Sprain of other specified sites of sacroiliac region +C0160104|T037|AB|846.8|ICD9CM|Sprain sacroiliac NEC|Sprain sacroiliac NEC +C0160105|T037|PT|846.9|ICD9CM|Sprain of unspecified site of sacroiliac region|Sprain of unspecified site of sacroiliac region +C0160105|T037|AB|846.9|ICD9CM|Sprain sacroiliac NOS|Sprain sacroiliac NOS +C0160106|T037|HT|847|ICD9CM|Sprains and strains of other and unspecified parts of back|Sprains and strains of other and unspecified parts of back +C0027535|T037|AB|847.0|ICD9CM|Sprain of neck|Sprain of neck +C0027535|T037|PT|847.0|ICD9CM|Sprain of neck|Sprain of neck +C0160107|T037|PT|847.1|ICD9CM|Sprain of thoracic|Sprain of thoracic +C0160107|T037|AB|847.1|ICD9CM|Sprain thoracic region|Sprain thoracic region +C0160108|T037|AB|847.2|ICD9CM|Sprain lumbar region|Sprain lumbar region +C0160108|T037|PT|847.2|ICD9CM|Sprain of lumbar|Sprain of lumbar +C0160109|T037|AB|847.3|ICD9CM|Sprain of sacrum|Sprain of sacrum +C0160109|T037|PT|847.3|ICD9CM|Sprain of sacrum|Sprain of sacrum +C0160110|T037|AB|847.4|ICD9CM|Sprain of coccyx|Sprain of coccyx +C0160110|T037|PT|847.4|ICD9CM|Sprain of coccyx|Sprain of coccyx +C0160111|T037|AB|847.9|ICD9CM|Sprain of back NOS|Sprain of back NOS +C0160111|T037|PT|847.9|ICD9CM|Sprain of unspecified site of back|Sprain of unspecified site of back +C0029490|T037|HT|848|ICD9CM|Other and ill-defined sprains and strains|Other and ill-defined sprains and strains +C0160112|T037|AB|848.0|ICD9CM|Sprain of nasal septum|Sprain of nasal septum +C0160112|T037|PT|848.0|ICD9CM|Sprain of septal cartilage of nose|Sprain of septal cartilage of nose +C0160113|T037|AB|848.1|ICD9CM|Sprain of jaw|Sprain of jaw +C0160113|T037|PT|848.1|ICD9CM|Sprain of jaw|Sprain of jaw +C0160114|T037|AB|848.2|ICD9CM|Sprain of thyroid region|Sprain of thyroid region +C0160114|T037|PT|848.2|ICD9CM|Sprain of thyroid region|Sprain of thyroid region +C0160115|T037|AB|848.3|ICD9CM|Sprain of ribs|Sprain of ribs +C0160115|T037|PT|848.3|ICD9CM|Sprain of ribs|Sprain of ribs +C0434411|T037|HT|848.4|ICD9CM|Sternum sprain|Sternum sprain +C0434411|T037|AB|848.40|ICD9CM|Sprain of sternum NOS|Sprain of sternum NOS +C0434411|T037|PT|848.40|ICD9CM|Sprain of sternum, unspecified site|Sprain of sternum, unspecified site +C0272920|T037|PT|848.41|ICD9CM|Sprain of sternoclavicular (joint) (ligament)|Sprain of sternoclavicular (joint) (ligament) +C0272920|T037|AB|848.41|ICD9CM|Sprain sternoclavicular|Sprain sternoclavicular +C0160118|T037|AB|848.42|ICD9CM|Sprain chondrosternal|Sprain chondrosternal +C0160118|T037|PT|848.42|ICD9CM|Sprain of chondrosternal (joint)|Sprain of chondrosternal (joint) +C0160119|T037|AB|848.49|ICD9CM|Sprain of sternum NEC|Sprain of sternum NEC +C0160119|T037|PT|848.49|ICD9CM|Sprain of sternum, other|Sprain of sternum, other +C0435019|T037|PT|848.5|ICD9CM|Sprain of pelvic|Sprain of pelvic +C0435019|T037|AB|848.5|ICD9CM|Sprain of pelvis|Sprain of pelvis +C0029829|T037|PT|848.8|ICD9CM|Other specified sites of sprains and strains|Other specified sites of sprains and strains +C0029829|T037|AB|848.8|ICD9CM|Sprain NEC|Sprain NEC +C0041887|T037|AB|848.9|ICD9CM|Sprain NOS|Sprain NOS +C0041887|T037|PT|848.9|ICD9CM|Unspecified site of sprain and strain|Unspecified site of sprain and strain +C0006107|T037|HT|850|ICD9CM|Concussion|Concussion +C0178319|T037|HT|850-854.99|ICD9CM|INTRACRANIAL INJURY, EXCLUDING THOSE WITH SKULL FRACTURE|INTRACRANIAL INJURY, EXCLUDING THOSE WITH SKULL FRACTURE +C0160121|T037|AB|850.0|ICD9CM|Concussion w/o coma|Concussion w/o coma +C0160121|T037|PT|850.0|ICD9CM|Concussion with no loss of consciousness|Concussion with no loss of consciousness +C0160122|T037|HT|850.1|ICD9CM|Concussion with brief loss of consciousness|Concussion with brief loss of consciousness +C1260444|T037|AB|850.11|ICD9CM|Concus-brief coma <31 mn|Concus-brief coma <31 mn +C1260444|T037|PT|850.11|ICD9CM|Concussion, with loss of consciousness of 30 minutes or less|Concussion, with loss of consciousness of 30 minutes or less +C1260445|T037|AB|850.12|ICD9CM|Concus-brf coma 31-59 mn|Concus-brf coma 31-59 mn +C1260445|T037|PT|850.12|ICD9CM|Concussion, with loss of consciousness from 31 to 59 minutes|Concussion, with loss of consciousness from 31 to 59 minutes +C0160123|T037|PT|850.2|ICD9CM|Concussion with moderate loss of consciousness|Concussion with moderate loss of consciousness +C0160123|T037|AB|850.2|ICD9CM|Concussion-moderate coma|Concussion-moderate coma +C0160124|T037|PT|850.3|ICD9CM|Concussion with prolonged loss of consciousness and return to pre-existing conscious level|Concussion with prolonged loss of consciousness and return to pre-existing conscious level +C0160124|T037|AB|850.3|ICD9CM|Concussion-prolong coma|Concussion-prolong coma +C0160125|T037|PT|850.4|ICD9CM|Concussion with prolonged loss of consciousness, without return to pre-existing conscious level|Concussion with prolonged loss of consciousness, without return to pre-existing conscious level +C0160125|T037|AB|850.4|ICD9CM|Concussion-deep coma|Concussion-deep coma +C0160126|T037|AB|850.5|ICD9CM|Concussion w coma NOS|Concussion w coma NOS +C0160126|T037|PT|850.5|ICD9CM|Concussion with loss of consciousness of unspecified duration|Concussion with loss of consciousness of unspecified duration +C0006107|T037|AB|850.9|ICD9CM|Concussion NOS|Concussion NOS +C0006107|T037|PT|850.9|ICD9CM|Concussion, unspecified|Concussion, unspecified +C0160127|T037|HT|851|ICD9CM|Cerebral laceration and contusion|Cerebral laceration and contusion +C0160128|T037|HT|851.0|ICD9CM|Cortex (cerebral) contusion without mention of open intracranial wound|Cortex (cerebral) contusion without mention of open intracranial wound +C0433815|T037|AB|851.00|ICD9CM|Cerebral cortx contusion|Cerebral cortx contusion +C0433816|T037|AB|851.01|ICD9CM|Cortex contusion-no coma|Cortex contusion-no coma +C0160131|T037|AB|851.02|ICD9CM|Cortex contus-brief coma|Cortex contus-brief coma +C0272955|T037|AB|851.03|ICD9CM|Cortex contus-mod coma|Cortex contus-mod coma +C0160133|T037|AB|851.04|ICD9CM|Cortx contus-prolng coma|Cortx contus-prolng coma +C0160134|T037|AB|851.05|ICD9CM|Cortex contus-deep coma|Cortex contus-deep coma +C0433821|T037|AB|851.06|ICD9CM|Cortex contus-coma NOS|Cortex contus-coma NOS +C0695217|T037|PT|851.09|ICD9CM|Cortex (cerebral) contusion without mention of open intracranial wound, with concussion, unspecified|Cortex (cerebral) contusion without mention of open intracranial wound, with concussion, unspecified +C0695217|T037|AB|851.09|ICD9CM|Cortex contus-concus NOS|Cortex contus-concus NOS +C0160137|T037|HT|851.1|ICD9CM|Cortex (cerebral) contusion with open intracranial wound|Cortex (cerebral) contusion with open intracranial wound +C0160138|T037|PT|851.10|ICD9CM|Cortex (cerebral) contusion with open intracranial wound, unspecified state of consciousness|Cortex (cerebral) contusion with open intracranial wound, unspecified state of consciousness +C0160138|T037|AB|851.10|ICD9CM|Cortex contusion/opn wnd|Cortex contusion/opn wnd +C0272961|T037|PT|851.11|ICD9CM|Cortex (cerebral) contusion with open intracranial wound, with no loss of consciousness|Cortex (cerebral) contusion with open intracranial wound, with no loss of consciousness +C0272961|T037|AB|851.11|ICD9CM|Opn cortx contus-no coma|Opn cortx contus-no coma +C0160140|T037|AB|851.12|ICD9CM|Opn cort contus-brf coma|Opn cort contus-brf coma +C0160141|T037|AB|851.13|ICD9CM|Opn cort contus-mod coma|Opn cort contus-mod coma +C0160142|T037|AB|851.14|ICD9CM|Opn cort contu-prol coma|Opn cort contu-prol coma +C0160143|T037|AB|851.15|ICD9CM|Opn cort contu-deep coma|Opn cort contu-deep coma +C0272966|T037|AB|851.16|ICD9CM|Opn cort contus-coma NOS|Opn cort contus-coma NOS +C0272967|T037|PT|851.19|ICD9CM|Cortex (cerebral) contusion with open intracranial wound, with concussion, unspecified|Cortex (cerebral) contusion with open intracranial wound, with concussion, unspecified +C0272967|T037|AB|851.19|ICD9CM|Opn cortx contus-concuss|Opn cortx contus-concuss +C0433846|T037|HT|851.2|ICD9CM|Cortex (cerebral) laceration without mention of open intracranial wound|Cortex (cerebral) laceration without mention of open intracranial wound +C0433847|T037|AB|851.20|ICD9CM|Cerebral cortex lacerat|Cerebral cortex lacerat +C0433848|T037|AB|851.21|ICD9CM|Cortex lacerat w/o coma|Cortex lacerat w/o coma +C0160149|T037|AB|851.22|ICD9CM|Cortex lacera-brief coma|Cortex lacera-brief coma +C0160150|T037|AB|851.23|ICD9CM|Cortex lacerat-mod coma|Cortex lacerat-mod coma +C0160151|T037|AB|851.24|ICD9CM|Cortex lacerat-prol coma|Cortex lacerat-prol coma +C0160152|T037|AB|851.25|ICD9CM|Cortex lacerat-deep coma|Cortex lacerat-deep coma +C0433853|T037|AB|851.26|ICD9CM|Cortex lacerat-coma NOS|Cortex lacerat-coma NOS +C0433854|T037|AB|851.29|ICD9CM|Cortex lacerat-concuss|Cortex lacerat-concuss +C0272977|T037|HT|851.3|ICD9CM|Cortex (cerebral) laceration with open intracranial wound|Cortex (cerebral) laceration with open intracranial wound +C0272978|T037|PT|851.30|ICD9CM|Cortex (cerebral) laceration with open intracranial wound, unspecified state of consciousness|Cortex (cerebral) laceration with open intracranial wound, unspecified state of consciousness +C0272978|T037|AB|851.30|ICD9CM|Cortex lacer w opn wound|Cortex lacer w opn wound +C0272979|T037|PT|851.31|ICD9CM|Cortex (cerebral) laceration with open intracranial wound, with no loss of consciousness|Cortex (cerebral) laceration with open intracranial wound, with no loss of consciousness +C0272979|T037|AB|851.31|ICD9CM|Opn cortex lacer-no coma|Opn cortex lacer-no coma +C0160158|T037|AB|851.32|ICD9CM|Opn cortx lac-brief coma|Opn cortx lac-brief coma +C0160159|T037|AB|851.33|ICD9CM|Opn cortx lacer-mod coma|Opn cortx lacer-mod coma +C0160160|T037|AB|851.34|ICD9CM|Opn cortx lac-proln coma|Opn cortx lac-proln coma +C0433845|T037|AB|851.35|ICD9CM|Opn cortex lac-deep coma|Opn cortex lac-deep coma +C0272984|T037|AB|851.36|ICD9CM|Opn cortx lacer-coma NOS|Opn cortx lacer-coma NOS +C0272985|T037|PT|851.39|ICD9CM|Cortex (cerebral) laceration with open intracranial wound, with concussion, unspecified|Cortex (cerebral) laceration with open intracranial wound, with concussion, unspecified +C0272985|T037|AB|851.39|ICD9CM|Opn cortx lacer-concuss|Opn cortx lacer-concuss +C0160164|T037|HT|851.4|ICD9CM|Cerebellar or brain stem contusion without mention of open intracranial wound|Cerebellar or brain stem contusion without mention of open intracranial wound +C0160165|T037|AB|851.40|ICD9CM|Cerebel/brain stm contus|Cerebel/brain stm contus +C0160166|T037|AB|851.41|ICD9CM|Cerebell contus w/o coma|Cerebell contus w/o coma +C0160167|T037|AB|851.42|ICD9CM|Cerebell contus-brf coma|Cerebell contus-brf coma +C0160168|T037|AB|851.43|ICD9CM|Cerebell contus-mod coma|Cerebell contus-mod coma +C0160169|T037|AB|851.44|ICD9CM|Cerebel contus-prol coma|Cerebel contus-prol coma +C0160170|T037|AB|851.45|ICD9CM|Cerebel contus-deep coma|Cerebel contus-deep coma +C0160171|T037|AB|851.46|ICD9CM|Cerebell contus-coma NOS|Cerebell contus-coma NOS +C0695221|T037|AB|851.49|ICD9CM|Cerebell contus-concuss|Cerebell contus-concuss +C0160173|T037|HT|851.5|ICD9CM|Cerebellar or brain stem contusion with open intracranial wound|Cerebellar or brain stem contusion with open intracranial wound +C0160174|T037|AB|851.50|ICD9CM|Cerebel contus w opn wnd|Cerebel contus w opn wnd +C0160174|T037|PT|851.50|ICD9CM|Cerebellar or brain stem contusion with open intracranial wound, unspecified state of consciousness|Cerebellar or brain stem contusion with open intracranial wound, unspecified state of consciousness +C0160175|T037|PT|851.51|ICD9CM|Cerebellar or brain stem contusion with open intracranial wound, with no loss of consciousness|Cerebellar or brain stem contusion with open intracranial wound, with no loss of consciousness +C0160175|T037|AB|851.51|ICD9CM|Opn cerebe cont w/o coma|Opn cerebe cont w/o coma +C0160176|T037|AB|851.52|ICD9CM|Opn cerebe cont-brf coma|Opn cerebe cont-brf coma +C0160177|T037|AB|851.53|ICD9CM|Opn cerebe cont-mod coma|Opn cerebe cont-mod coma +C0160178|T037|AB|851.54|ICD9CM|Opn cerebe cont-prol com|Opn cerebe cont-prol com +C0160179|T037|AB|851.55|ICD9CM|Opn cerebe cont-deep com|Opn cerebe cont-deep com +C0160180|T037|AB|851.56|ICD9CM|Opn cerebe cont-coma NOS|Opn cerebe cont-coma NOS +C0695222|T037|PT|851.59|ICD9CM|Cerebellar or brain stem contusion with open intracranial wound, with concussion, unspecified|Cerebellar or brain stem contusion with open intracranial wound, with concussion, unspecified +C0695222|T037|AB|851.59|ICD9CM|Opn cerebel cont-concuss|Opn cerebel cont-concuss +C0160182|T037|HT|851.6|ICD9CM|Cerebellar or brain stem laceration without mention of open intracranial wound|Cerebellar or brain stem laceration without mention of open intracranial wound +C0160183|T037|AB|851.60|ICD9CM|Cerebel/brain stem lacer|Cerebel/brain stem lacer +C0160184|T037|AB|851.61|ICD9CM|Cerebel lacerat w/o coma|Cerebel lacerat w/o coma +C0160185|T037|AB|851.62|ICD9CM|Cerebel lacer-brief coma|Cerebel lacer-brief coma +C0160186|T037|AB|851.63|ICD9CM|Cerebel lacerat-mod coma|Cerebel lacerat-mod coma +C0160187|T037|AB|851.64|ICD9CM|Cerebel lacer-proln coma|Cerebel lacer-proln coma +C0160188|T037|AB|851.65|ICD9CM|Cerebell lacer-deep coma|Cerebell lacer-deep coma +C0160189|T037|AB|851.66|ICD9CM|Cerebel lacerat-coma NOS|Cerebel lacerat-coma NOS +C0695223|T037|AB|851.69|ICD9CM|Cerebel lacer-concussion|Cerebel lacer-concussion +C0160191|T037|HT|851.7|ICD9CM|Cerebellar or brain stem laceration with open intracranial wound|Cerebellar or brain stem laceration with open intracranial wound +C0160192|T037|AB|851.70|ICD9CM|Cerebel lacer w open wnd|Cerebel lacer w open wnd +C0160192|T037|PT|851.70|ICD9CM|Cerebellar or brain stem laceration with open intracranial wound, unspecified state of consciousness|Cerebellar or brain stem laceration with open intracranial wound, unspecified state of consciousness +C0160193|T037|PT|851.71|ICD9CM|Cerebellar or brain stem laceration with open intracranial wound, with no loss of consciousness|Cerebellar or brain stem laceration with open intracranial wound, with no loss of consciousness +C0160193|T037|AB|851.71|ICD9CM|Opn cerebel lac w/o coma|Opn cerebel lac w/o coma +C0160194|T037|AB|851.72|ICD9CM|Opn cerebel lac-brf coma|Opn cerebel lac-brf coma +C0160195|T037|AB|851.73|ICD9CM|Opn cerebel lac-mod coma|Opn cerebel lac-mod coma +C0160196|T037|AB|851.74|ICD9CM|Opn cerebe lac-prol coma|Opn cerebe lac-prol coma +C0160197|T037|AB|851.75|ICD9CM|Opn cerebe lac-deep coma|Opn cerebe lac-deep coma +C0160198|T037|AB|851.76|ICD9CM|Opn cerebel lac-coma NOS|Opn cerebel lac-coma NOS +C0695224|T037|PT|851.79|ICD9CM|Cerebellar or brain stem laceration with open intracranial wound, with concussion, unspecified|Cerebellar or brain stem laceration with open intracranial wound, with concussion, unspecified +C0695224|T037|AB|851.79|ICD9CM|Opn cerebell lac-concuss|Opn cerebell lac-concuss +C0160200|T037|HT|851.8|ICD9CM|Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound|Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound +C0160201|T037|AB|851.80|ICD9CM|Brain laceration NEC|Brain laceration NEC +C0160202|T037|AB|851.81|ICD9CM|Brain lacer NEC w/o coma|Brain lacer NEC w/o coma +C0160203|T037|AB|851.82|ICD9CM|Brain lac NEC-brief coma|Brain lac NEC-brief coma +C0160204|T037|AB|851.83|ICD9CM|Brain lacer NEC-mod coma|Brain lacer NEC-mod coma +C0160205|T037|AB|851.84|ICD9CM|Brain lac NEC-proln coma|Brain lac NEC-proln coma +C0160206|T037|AB|851.85|ICD9CM|Brain lac NEC-deep coma|Brain lac NEC-deep coma +C0160207|T037|AB|851.86|ICD9CM|Brain lacer NEC-coma NOS|Brain lacer NEC-coma NOS +C0695225|T037|AB|851.89|ICD9CM|Brain lacer NEC-concuss|Brain lacer NEC-concuss +C0160209|T037|HT|851.9|ICD9CM|Other and unspecified cerebral laceration and contusion, with open intracranial wound|Other and unspecified cerebral laceration and contusion, with open intracranial wound +C0160210|T037|AB|851.90|ICD9CM|Brain lac NEC w open wnd|Brain lac NEC w open wnd +C0160211|T037|AB|851.91|ICD9CM|Opn brain lacer w/o coma|Opn brain lacer w/o coma +C0160212|T037|AB|851.92|ICD9CM|Opn brain lac-brief coma|Opn brain lac-brief coma +C0160213|T037|AB|851.93|ICD9CM|Opn brain lacer-mod coma|Opn brain lacer-mod coma +C0160214|T037|AB|851.94|ICD9CM|Opn brain lac-proln coma|Opn brain lac-proln coma +C0160215|T037|AB|851.95|ICD9CM|Open brain lac-deep coma|Open brain lac-deep coma +C0160216|T037|AB|851.96|ICD9CM|Opn brain lacer-coma NOS|Opn brain lacer-coma NOS +C0695226|T037|AB|851.99|ICD9CM|Open brain lacer-concuss|Open brain lacer-concuss +C0160218|T046|HT|852|ICD9CM|Subarachnoid, subdural, and extradural hemorrhage, following injury|Subarachnoid, subdural, and extradural hemorrhage, following injury +C0160219|T046|HT|852.0|ICD9CM|Subarachnoid hemorrhage following injury without mention of open intracranial wound|Subarachnoid hemorrhage following injury without mention of open intracranial wound +C0160220|T037|AB|852.00|ICD9CM|Traum subarachnoid hem|Traum subarachnoid hem +C0160221|T037|AB|852.01|ICD9CM|Subarachnoid hem-no coma|Subarachnoid hem-no coma +C0160222|T037|AB|852.02|ICD9CM|Subarach hem-brief coma|Subarach hem-brief coma +C0160223|T037|AB|852.03|ICD9CM|Subarach hem-mod coma|Subarach hem-mod coma +C0160224|T037|AB|852.04|ICD9CM|Subarach hem-prolng coma|Subarach hem-prolng coma +C0160225|T037|AB|852.05|ICD9CM|Subarach hem-deep coma|Subarach hem-deep coma +C0160226|T037|AB|852.06|ICD9CM|Subarach hem-coma NOS|Subarach hem-coma NOS +C0160227|T037|AB|852.09|ICD9CM|Subarach hem-concussion|Subarach hem-concussion +C0160228|T037|HT|852.1|ICD9CM|Subarachnoid hemorrhage following injury with open intracranial wound|Subarachnoid hemorrhage following injury with open intracranial wound +C0160229|T037|AB|852.10|ICD9CM|Subarach hem w opn wound|Subarach hem w opn wound +C0160230|T037|AB|852.11|ICD9CM|Opn subarach hem-no coma|Opn subarach hem-no coma +C0160230|T037|PT|852.11|ICD9CM|Subarachnoid hemorrhage following injury with open intracranial wound, with no loss of consciousness|Subarachnoid hemorrhage following injury with open intracranial wound, with no loss of consciousness +C0160231|T037|AB|852.12|ICD9CM|Op subarach hem-brf coma|Op subarach hem-brf coma +C0160232|T037|AB|852.13|ICD9CM|Op subarach hem-mod coma|Op subarach hem-mod coma +C0160233|T037|AB|852.14|ICD9CM|Op subarach hem-prol com|Op subarach hem-prol com +C0160234|T037|AB|852.15|ICD9CM|Op subarach hem-deep com|Op subarach hem-deep com +C0160235|T037|AB|852.16|ICD9CM|Op subarach hem-coma NOS|Op subarach hem-coma NOS +C0273088|T037|AB|852.19|ICD9CM|Opn subarach hem-concuss|Opn subarach hem-concuss +C0273088|T037|PT|852.19|ICD9CM|Subarachnoid hemorrhage following injury with open intracranial wound, with concussion, unspecified|Subarachnoid hemorrhage following injury with open intracranial wound, with concussion, unspecified +C0160237|T046|HT|852.2|ICD9CM|Subdural hemorrhage following injury without mention of open intracranial wound|Subdural hemorrhage following injury without mention of open intracranial wound +C0160238|T037|AB|852.20|ICD9CM|Traumatic subdural hem|Traumatic subdural hem +C0160239|T037|AB|852.21|ICD9CM|Subdural hem w/o coma|Subdural hem w/o coma +C0160240|T037|AB|852.22|ICD9CM|Subdural hem-brief coma|Subdural hem-brief coma +C0160241|T037|AB|852.23|ICD9CM|Subdural hemorr-mod coma|Subdural hemorr-mod coma +C0160242|T037|AB|852.24|ICD9CM|Subdural hem-prolng coma|Subdural hem-prolng coma +C0160243|T037|AB|852.25|ICD9CM|Subdural hem-deep coma|Subdural hem-deep coma +C0160244|T037|AB|852.26|ICD9CM|Subdural hemorr-coma NOS|Subdural hemorr-coma NOS +C0160245|T037|AB|852.29|ICD9CM|Subdural hem-concussion|Subdural hem-concussion +C0160246|T037|HT|852.3|ICD9CM|Subdural hemorrhage following injury, with open intracranial wound|Subdural hemorrhage following injury, with open intracranial wound +C0160247|T037|AB|852.30|ICD9CM|Subdural hem w opn wound|Subdural hem w opn wound +C0160248|T046|AB|852.31|ICD9CM|Open subdur hem w/o coma|Open subdur hem w/o coma +C0160248|T046|PT|852.31|ICD9CM|Subdural hemorrhage following injury with open intracranial wound, with no loss of consciousness|Subdural hemorrhage following injury with open intracranial wound, with no loss of consciousness +C0160249|T037|AB|852.32|ICD9CM|Opn subdur hem-brf coma|Opn subdur hem-brf coma +C0160250|T037|AB|852.33|ICD9CM|Opn subdur hem-mod coma|Opn subdur hem-mod coma +C0160251|T037|AB|852.34|ICD9CM|Opn subdur hem-prol coma|Opn subdur hem-prol coma +C0160252|T037|AB|852.35|ICD9CM|Opn subdur hem-deep coma|Opn subdur hem-deep coma +C0160253|T037|AB|852.36|ICD9CM|Opn subdur hem-coma NOS|Opn subdur hem-coma NOS +C0273097|T037|AB|852.39|ICD9CM|Opn subdur hem-concuss|Opn subdur hem-concuss +C0273097|T037|PT|852.39|ICD9CM|Subdural hemorrhage following injury with open intracranial wound, with concussion, unspecified|Subdural hemorrhage following injury with open intracranial wound, with concussion, unspecified +C0160255|T037|HT|852.4|ICD9CM|Extradural hemorrhage following injury without mention of open intracranial wound|Extradural hemorrhage following injury without mention of open intracranial wound +C0273099|T037|AB|852.40|ICD9CM|Traumatic extradural hem|Traumatic extradural hem +C0273100|T037|AB|852.41|ICD9CM|Extradural hem w/o coma|Extradural hem w/o coma +C0160258|T037|AB|852.42|ICD9CM|Extradur hem-brief coma|Extradur hem-brief coma +C0160259|T037|AB|852.43|ICD9CM|Extradural hem-mod coma|Extradural hem-mod coma +C0160260|T037|AB|852.44|ICD9CM|Extradur hem-proln coma|Extradur hem-proln coma +C0273104|T037|AB|852.45|ICD9CM|Extradural hem-deep coma|Extradural hem-deep coma +C0273104|T037|AB|852.46|ICD9CM|Extradural hem-coma NOS|Extradural hem-coma NOS +C0160263|T037|AB|852.49|ICD9CM|Extadural hem-concuss|Extadural hem-concuss +C0160264|T037|HT|852.5|ICD9CM|Extradural hemorrhage following injury with open intracranial wound|Extradural hemorrhage following injury with open intracranial wound +C0160265|T037|AB|852.50|ICD9CM|Extradural hem w opn wnd|Extradural hem w opn wnd +C0160266|T037|AB|852.51|ICD9CM|Extradural hemor-no coma|Extradural hemor-no coma +C0160266|T037|PT|852.51|ICD9CM|Extradural hemorrhage following injury with open intracranial wound, with no loss of consciousness|Extradural hemorrhage following injury with open intracranial wound, with no loss of consciousness +C0160267|T037|AB|852.52|ICD9CM|Extradur hem-brief coma|Extradur hem-brief coma +C0160268|T037|AB|852.53|ICD9CM|Extradural hem-mod coma|Extradural hem-mod coma +C0160269|T037|AB|852.54|ICD9CM|Extradur hem-proln coma|Extradur hem-proln coma +C0160270|T037|AB|852.55|ICD9CM|Extradur hem-deep coma|Extradur hem-deep coma +C0160271|T037|AB|852.56|ICD9CM|Extradural hem-coma NOS|Extradural hem-coma NOS +C0273106|T037|AB|852.59|ICD9CM|Extradural hem-concuss|Extradural hem-concuss +C0273106|T037|PT|852.59|ICD9CM|Extradural hemorrhage following injury with open intracranial wound, with concussion, unspecified|Extradural hemorrhage following injury with open intracranial wound, with concussion, unspecified +C0160273|T046|HT|853|ICD9CM|Other and unspecified intracranial hemorrhage following injury|Other and unspecified intracranial hemorrhage following injury +C0160275|T037|AB|853.00|ICD9CM|Traumatic brain hem NEC|Traumatic brain hem NEC +C0160276|T037|AB|853.01|ICD9CM|Brain hem NEC w/o coma|Brain hem NEC w/o coma +C0160277|T037|AB|853.02|ICD9CM|Brain hem NEC-brief coma|Brain hem NEC-brief coma +C0160278|T037|AB|853.03|ICD9CM|Brain hem NEC-mod coma|Brain hem NEC-mod coma +C0160279|T037|AB|853.04|ICD9CM|Brain hem NEC-proln coma|Brain hem NEC-proln coma +C0160280|T037|AB|853.05|ICD9CM|Brain hem NEC-deep coma|Brain hem NEC-deep coma +C0160281|T037|AB|853.06|ICD9CM|Brain hem NEC-coma NOS|Brain hem NEC-coma NOS +C0475036|T047|AB|853.09|ICD9CM|Brain hem NEC-concussion|Brain hem NEC-concussion +C0160283|T046|HT|853.1|ICD9CM|Other and unspecified intracranial hemorrhage following injury with open intracranial wound|Other and unspecified intracranial hemorrhage following injury with open intracranial wound +C0160284|T037|AB|853.10|ICD9CM|Brain hem NEC w opn wnd|Brain hem NEC w opn wnd +C0160285|T037|AB|853.11|ICD9CM|Brain hem opn w/o coma|Brain hem opn w/o coma +C0160286|T037|AB|853.12|ICD9CM|Brain hem opn-brf coma|Brain hem opn-brf coma +C0160287|T037|AB|853.13|ICD9CM|Brain hem open-mod coma|Brain hem open-mod coma +C0160288|T037|AB|853.14|ICD9CM|Brain hem opn-proln coma|Brain hem opn-proln coma +C0160289|T037|AB|853.15|ICD9CM|Brain hem open-deep coma|Brain hem open-deep coma +C0160290|T037|AB|853.16|ICD9CM|Brain hem open-coma NOS|Brain hem open-coma NOS +C0475045|T037|AB|853.19|ICD9CM|Brain hem opn-concussion|Brain hem opn-concussion +C0160292|T037|HT|854|ICD9CM|Intracranial injury of other and unspecified nature|Intracranial injury of other and unspecified nature +C0021878|T037|HT|854.0|ICD9CM|Intracranial injury of other and unspecified nature without mention of open intracranial wound|Intracranial injury of other and unspecified nature without mention of open intracranial wound +C0021879|T037|AB|854.00|ICD9CM|Brain injury NEC|Brain injury NEC +C0160293|T037|AB|854.01|ICD9CM|Brain injury NEC-no coma|Brain injury NEC-no coma +C0160294|T037|AB|854.02|ICD9CM|Brain inj NEC-brief coma|Brain inj NEC-brief coma +C0160295|T037|AB|854.03|ICD9CM|Brain inj NEC-mod coma|Brain inj NEC-mod coma +C0160296|T037|AB|854.04|ICD9CM|Brain inj NEC-proln coma|Brain inj NEC-proln coma +C0160297|T037|AB|854.05|ICD9CM|Brain inj NEC-deep coma|Brain inj NEC-deep coma +C0160298|T037|AB|854.06|ICD9CM|Brain inj NEC-coma NOS|Brain inj NEC-coma NOS +C0160299|T037|AB|854.09|ICD9CM|Brain inj NEC-concussion|Brain inj NEC-concussion +C0160300|T037|HT|854.1|ICD9CM|Intracranial injury of other and unspecified nature with open intracranial wound|Intracranial injury of other and unspecified nature with open intracranial wound +C0160301|T037|AB|854.10|ICD9CM|Brain injury w opn wnd|Brain injury w opn wnd +C0160302|T037|AB|854.11|ICD9CM|Opn brain inj w/o coma|Opn brain inj w/o coma +C0160303|T037|AB|854.12|ICD9CM|Opn brain inj-brief coma|Opn brain inj-brief coma +C0160304|T037|AB|854.13|ICD9CM|Opn brain inj-mod coma|Opn brain inj-mod coma +C0160305|T037|AB|854.14|ICD9CM|Opn brain inj-proln coma|Opn brain inj-proln coma +C0160306|T037|AB|854.15|ICD9CM|Opn brain inj-deep coma|Opn brain inj-deep coma +C0160307|T037|AB|854.16|ICD9CM|Open brain inj-coma NOS|Open brain inj-coma NOS +C0160308|T037|AB|854.19|ICD9CM|Opn brain inj-concussion|Opn brain inj-concussion +C0340008|T037|HT|860|ICD9CM|Traumatic pneumothorax and hemothorax|Traumatic pneumothorax and hemothorax +C0376106|T037|HT|860-869.99|ICD9CM|INTERNAL INJURY OF THORAX, ABDOMEN, AND PELVIS|INTERNAL INJURY OF THORAX, ABDOMEN, AND PELVIS +C0347620|T037|AB|860.0|ICD9CM|Traum pneumothorax-close|Traum pneumothorax-close +C0347620|T037|PT|860.0|ICD9CM|Traumatic pneumothorax without mention of open wound into thorax|Traumatic pneumothorax without mention of open wound into thorax +C0347619|T037|AB|860.1|ICD9CM|Traum pneumothorax-open|Traum pneumothorax-open +C0347619|T037|PT|860.1|ICD9CM|Traumatic pneumothorax with open wound into thorax|Traumatic pneumothorax with open wound into thorax +C0160312|T037|AB|860.2|ICD9CM|Traum hemothorax-closed|Traum hemothorax-closed +C0160312|T037|PT|860.2|ICD9CM|Traumatic hemothorax without mention of open wound into thorax|Traumatic hemothorax without mention of open wound into thorax +C0347621|T037|AB|860.3|ICD9CM|Traum hemothorax-open|Traum hemothorax-open +C0347621|T037|PT|860.3|ICD9CM|Traumatic hemothorax with open wound into thorax|Traumatic hemothorax with open wound into thorax +C0347624|T047|AB|860.4|ICD9CM|Traum pneumohemothor-cl|Traum pneumohemothor-cl +C0347624|T047|PT|860.4|ICD9CM|Traumatic pneumohemothorax without mention of open wound into thorax|Traumatic pneumohemothorax without mention of open wound into thorax +C0347623|T047|AB|860.5|ICD9CM|Traum pneumohemothor-opn|Traum pneumohemothor-opn +C0347623|T047|PT|860.5|ICD9CM|Traumatic pneumohemothorax with open wound into thorax|Traumatic pneumohemothorax with open wound into thorax +C0160316|T037|HT|861|ICD9CM|Injury to heart and lung|Injury to heart and lung +C0160318|T037|HT|861.0|ICD9CM|Heart injury, without mention of open wound into thorax|Heart injury, without mention of open wound into thorax +C0160318|T037|AB|861.00|ICD9CM|Heart injury NOS-closed|Heart injury NOS-closed +C0160318|T037|PT|861.00|ICD9CM|Unspecified injury of heart without mention of open wound into thorax|Unspecified injury of heart without mention of open wound into thorax +C0160319|T037|PT|861.01|ICD9CM|Contusion of heart without mention of open wound into thorax|Contusion of heart without mention of open wound into thorax +C0160319|T037|AB|861.01|ICD9CM|Heart contusion-closed|Heart contusion-closed +C0160320|T037|AB|861.02|ICD9CM|Heart laceration-closed|Heart laceration-closed +C0160321|T037|AB|861.03|ICD9CM|Heart chamber lacerat-cl|Heart chamber lacerat-cl +C0160321|T037|PT|861.03|ICD9CM|Laceration of heart with penetration of heart chambers without mention of open wound into thorax|Laceration of heart with penetration of heart chambers without mention of open wound into thorax +C0160323|T037|HT|861.1|ICD9CM|Heart injury, with open wound into thorax|Heart injury, with open wound into thorax +C0160323|T037|AB|861.10|ICD9CM|Heart injury NOS-open|Heart injury NOS-open +C0160323|T037|PT|861.10|ICD9CM|Unspecified injury of heart with open wound into thorax|Unspecified injury of heart with open wound into thorax +C0160324|T037|PT|861.11|ICD9CM|Contusion of heart with open wound into thorax|Contusion of heart with open wound into thorax +C0160324|T037|AB|861.11|ICD9CM|Heart contusion-open|Heart contusion-open +C0160325|T037|AB|861.12|ICD9CM|Heart laceration-open|Heart laceration-open +C0160325|T037|PT|861.12|ICD9CM|Laceration of heart without penetration of heart chambers, with open wound into thorax|Laceration of heart without penetration of heart chambers, with open wound into thorax +C0160326|T037|AB|861.13|ICD9CM|Heart chamber lacer-opn|Heart chamber lacer-opn +C0160326|T037|PT|861.13|ICD9CM|Laceration of heart with penetration of heart chambers with open wound into thorax|Laceration of heart with penetration of heart chambers with open wound into thorax +C0160328|T037|HT|861.2|ICD9CM|Lung injury, without mention of open wound into thorax|Lung injury, without mention of open wound into thorax +C0160328|T037|AB|861.20|ICD9CM|Lung injury NOS-closed|Lung injury NOS-closed +C0160328|T037|PT|861.20|ICD9CM|Unspecified injury of lung without mention of open wound into thorax|Unspecified injury of lung without mention of open wound into thorax +C0160329|T037|PT|861.21|ICD9CM|Contusion of lung without mention of open wound into thorax|Contusion of lung without mention of open wound into thorax +C0160329|T037|AB|861.21|ICD9CM|Lung contusion-closed|Lung contusion-closed +C0160330|T037|PT|861.22|ICD9CM|Laceration of lung without mention of open wound into thorax|Laceration of lung without mention of open wound into thorax +C0160330|T037|AB|861.22|ICD9CM|Lung laceration-closed|Lung laceration-closed +C0160332|T037|HT|861.3|ICD9CM|Lung injury, with open wound into thorax|Lung injury, with open wound into thorax +C0160332|T037|AB|861.30|ICD9CM|Lung injury NOS-open|Lung injury NOS-open +C0160332|T037|PT|861.30|ICD9CM|Unspecified injury of lung with open wound into thorax|Unspecified injury of lung with open wound into thorax +C0160333|T037|PT|861.31|ICD9CM|Contusion of lung with open wound into thorax|Contusion of lung with open wound into thorax +C0160333|T037|AB|861.31|ICD9CM|Lung contusion-open|Lung contusion-open +C0160334|T037|PT|861.32|ICD9CM|Laceration of lung with open wound into thorax|Laceration of lung with open wound into thorax +C0160334|T037|AB|861.32|ICD9CM|Lung laceration-open|Lung laceration-open +C0160335|T037|HT|862|ICD9CM|Injury to other and unspecified intrathoracic organs|Injury to other and unspecified intrathoracic organs +C0021505|T037|AB|862.0|ICD9CM|Diaphragm injury-closed|Diaphragm injury-closed +C0021505|T037|PT|862.0|ICD9CM|Injury to diaphragm, without mention of open wound into cavity|Injury to diaphragm, without mention of open wound into cavity +C0160336|T037|AB|862.1|ICD9CM|Diaphragm injury-open|Diaphragm injury-open +C0160336|T037|PT|862.1|ICD9CM|Injury to diaphragm, with open wound into cavity|Injury to diaphragm, with open wound into cavity +C0160337|T037|HT|862.2|ICD9CM|Injury to other specified intrathoracic organs without mention of open wound into cavity|Injury to other specified intrathoracic organs without mention of open wound into cavity +C0160338|T037|AB|862.21|ICD9CM|Bronchus injury-closed|Bronchus injury-closed +C0160338|T037|PT|862.21|ICD9CM|Injury to bronchus without mention of open wound into cavity|Injury to bronchus without mention of open wound into cavity +C1318512|T037|AB|862.22|ICD9CM|Esophagus injury-closed|Esophagus injury-closed +C1318512|T037|PT|862.22|ICD9CM|Injury to esophagus without mention of open wound into cavity|Injury to esophagus without mention of open wound into cavity +C0160337|T037|PT|862.29|ICD9CM|Injury to other specified intrathoracic organs without mention of open wound into cavity|Injury to other specified intrathoracic organs without mention of open wound into cavity +C0160337|T037|AB|862.29|ICD9CM|Intrathoracic inj NEC-cl|Intrathoracic inj NEC-cl +C0160340|T037|HT|862.3|ICD9CM|Injury to other specified intrathoracic organs with open wound into cavity|Injury to other specified intrathoracic organs with open wound into cavity +C0160341|T037|AB|862.31|ICD9CM|Bronchus injury-open|Bronchus injury-open +C0160341|T037|PT|862.31|ICD9CM|Injury to bronchus with open wound into cavity|Injury to bronchus with open wound into cavity +C0160342|T037|AB|862.32|ICD9CM|Esophagus injury-open|Esophagus injury-open +C0160342|T037|PT|862.32|ICD9CM|Injury to esophagus with open wound into cavity|Injury to esophagus with open wound into cavity +C0160340|T037|PT|862.39|ICD9CM|Injury to other specified intrathoracic organs with open wound into cavity|Injury to other specified intrathoracic organs with open wound into cavity +C0160340|T037|AB|862.39|ICD9CM|Intrathorac inj NEC-open|Intrathorac inj NEC-open +C0160343|T037|PT|862.8|ICD9CM|Injury to multiple and unspecified intrathoracic organs, without mention of open wound into cavity|Injury to multiple and unspecified intrathoracic organs, without mention of open wound into cavity +C0160343|T037|AB|862.8|ICD9CM|Intrathoracic inj NOS-cl|Intrathoracic inj NOS-cl +C0273127|T037|PT|862.9|ICD9CM|Injury to multiple and unspecified intrathoracic organs, with open wound into cavity|Injury to multiple and unspecified intrathoracic organs, with open wound into cavity +C0273127|T037|AB|862.9|ICD9CM|Intrathorac inj NOS-open|Intrathorac inj NOS-open +C0160345|T037|HT|863|ICD9CM|Injury to gastrointestinal tract|Injury to gastrointestinal tract +C0160346|T037|PT|863.0|ICD9CM|Injury to stomach, without mention of open wound into cavity|Injury to stomach, without mention of open wound into cavity +C0160346|T037|AB|863.0|ICD9CM|Stomach injury-closed|Stomach injury-closed +C0160347|T037|PT|863.1|ICD9CM|Injury to stomach, with open wound into cavity|Injury to stomach, with open wound into cavity +C0160347|T037|AB|863.1|ICD9CM|Stomach injury-open|Stomach injury-open +C0160348|T037|HT|863.2|ICD9CM|Injury to small intestine without mention of open wound into cavity|Injury to small intestine without mention of open wound into cavity +C0160349|T037|PT|863.20|ICD9CM|Injury to small intestine, unspecified site, without open wound into cavity|Injury to small intestine, unspecified site, without open wound into cavity +C0160349|T037|AB|863.20|ICD9CM|Small intest inj NOS-cl|Small intest inj NOS-cl +C0160350|T037|AB|863.21|ICD9CM|Duodenum injury-closed|Duodenum injury-closed +C0160350|T037|PT|863.21|ICD9CM|Injury to duodenum, without open wound into cavity|Injury to duodenum, without open wound into cavity +C0160351|T037|PT|863.29|ICD9CM|Other injury to small intestine, without mention of open wound into cavity|Other injury to small intestine, without mention of open wound into cavity +C0160351|T037|AB|863.29|ICD9CM|Small intest inj NEC-cl|Small intest inj NEC-cl +C0160352|T037|HT|863.3|ICD9CM|Injury to small intestine with open wound into cavity|Injury to small intestine with open wound into cavity +C0160353|T037|PT|863.30|ICD9CM|Injury to small intestine, unspecified site, with open wound into cavity|Injury to small intestine, unspecified site, with open wound into cavity +C0160353|T037|AB|863.30|ICD9CM|Small intest inj NOS-opn|Small intest inj NOS-opn +C0160354|T037|AB|863.31|ICD9CM|Duodenum injury-open|Duodenum injury-open +C0160354|T037|PT|863.31|ICD9CM|Injury to duodenum, with open wound into cavity|Injury to duodenum, with open wound into cavity +C0160355|T037|PT|863.39|ICD9CM|Other injury to small intestine, with open wound into cavity|Other injury to small intestine, with open wound into cavity +C0160355|T037|AB|863.39|ICD9CM|Small intest inj NEC-opn|Small intest inj NEC-opn +C0160356|T037|HT|863.4|ICD9CM|Injury to colon or rectum without mention of open wound into cavity|Injury to colon or rectum without mention of open wound into cavity +C0160357|T037|AB|863.40|ICD9CM|Colon injury NOS-closed|Colon injury NOS-closed +C0160357|T037|PT|863.40|ICD9CM|Injury to colon, unspecified site, without mention of open wound into cavity|Injury to colon, unspecified site, without mention of open wound into cavity +C0160358|T037|AB|863.41|ICD9CM|Ascending colon inj-clos|Ascending colon inj-clos +C0160358|T037|PT|863.41|ICD9CM|Injury to ascending [right] colon, without mention of open wound into cavity|Injury to ascending [right] colon, without mention of open wound into cavity +C0160359|T037|PT|863.42|ICD9CM|Injury to transverse colon, without mention of open wound into cavity|Injury to transverse colon, without mention of open wound into cavity +C0160359|T037|AB|863.42|ICD9CM|Transverse colon inj-cl|Transverse colon inj-cl +C0160360|T037|AB|863.43|ICD9CM|Descending colon inj-cl|Descending colon inj-cl +C0160360|T037|PT|863.43|ICD9CM|Injury to descending [left] colon, without mention of open wound into cavity|Injury to descending [left] colon, without mention of open wound into cavity +C0160361|T037|PT|863.44|ICD9CM|Injury to sigmoid colon, without mention of open wound into cavity|Injury to sigmoid colon, without mention of open wound into cavity +C0160361|T037|AB|863.44|ICD9CM|Sigmoid colon inj-closed|Sigmoid colon inj-closed +C0160362|T037|PT|863.45|ICD9CM|Injury to rectum, without mention of open wound into cavity|Injury to rectum, without mention of open wound into cavity +C0160362|T037|AB|863.45|ICD9CM|Rectum injury-closed|Rectum injury-closed +C0160363|T037|AB|863.46|ICD9CM|Colon inj mult site-clos|Colon inj mult site-clos +C0160363|T037|PT|863.46|ICD9CM|Injury to multiple sites in colon and rectum, without mention of open wound into cavity|Injury to multiple sites in colon and rectum, without mention of open wound into cavity +C0434062|T037|AB|863.49|ICD9CM|Colon injury NEC-closed|Colon injury NEC-closed +C0434062|T037|PT|863.49|ICD9CM|Other injury to colon or rectum, without mention of open wound into cavity|Other injury to colon or rectum, without mention of open wound into cavity +C0160365|T037|HT|863.5|ICD9CM|Injury to colon or rectum with open wound into cavity|Injury to colon or rectum with open wound into cavity +C0160366|T037|AB|863.50|ICD9CM|Colon injury NOS-open|Colon injury NOS-open +C0160366|T037|PT|863.50|ICD9CM|Injury to colon, unspecified site, with open wound into cavity|Injury to colon, unspecified site, with open wound into cavity +C0160367|T037|AB|863.51|ICD9CM|Ascending colon inj-open|Ascending colon inj-open +C0160367|T037|PT|863.51|ICD9CM|Injury to ascending [right] colon, with open wound into cavity|Injury to ascending [right] colon, with open wound into cavity +C0160368|T037|PT|863.52|ICD9CM|Injury to transverse colon, with open wound into cavity|Injury to transverse colon, with open wound into cavity +C0160368|T037|AB|863.52|ICD9CM|Transverse colon inj-opn|Transverse colon inj-opn +C0160369|T037|AB|863.53|ICD9CM|Descending colon inj-opn|Descending colon inj-opn +C0160369|T037|PT|863.53|ICD9CM|Injury to descending [left] colon, with open wound into cavity|Injury to descending [left] colon, with open wound into cavity +C0160370|T037|PT|863.54|ICD9CM|Injury to sigmoid colon, with open wound into cavity|Injury to sigmoid colon, with open wound into cavity +C0160370|T037|AB|863.54|ICD9CM|Sigmoid colon inj-open|Sigmoid colon inj-open +C0160371|T037|PT|863.55|ICD9CM|Injury to rectum, with open wound into cavity|Injury to rectum, with open wound into cavity +C0160371|T037|AB|863.55|ICD9CM|Rectum injury-open|Rectum injury-open +C0160372|T037|AB|863.56|ICD9CM|Colon inj mult site-open|Colon inj mult site-open +C0160372|T037|PT|863.56|ICD9CM|Injury to multiple sites in colon and rectum, with open wound into cavity|Injury to multiple sites in colon and rectum, with open wound into cavity +C0434058|T037|AB|863.59|ICD9CM|Colon injury NEC-open|Colon injury NEC-open +C0434058|T037|PT|863.59|ICD9CM|Other injury to colon or rectum, with open wound into cavity|Other injury to colon or rectum, with open wound into cavity +C0160374|T037|HT|863.8|ICD9CM|Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity|Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity +C0160375|T037|AB|863.80|ICD9CM|GI injury NOS-closed|GI injury NOS-closed +C0160375|T037|PT|863.80|ICD9CM|Injury to gastrointestinal tract, unspecified site, without mention of open wound into cavity|Injury to gastrointestinal tract, unspecified site, without mention of open wound into cavity +C0273164|T037|PT|863.81|ICD9CM|Injury to pancreas, head, without mention of open wound into cavity|Injury to pancreas, head, without mention of open wound into cavity +C0273164|T037|AB|863.81|ICD9CM|Pancreas, head inj-close|Pancreas, head inj-close +C0160377|T037|PT|863.82|ICD9CM|Injury to pancreas, body, without mention of open wound into cavity|Injury to pancreas, body, without mention of open wound into cavity +C0160377|T037|AB|863.82|ICD9CM|Pancreas, body inj-close|Pancreas, body inj-close +C0160378|T037|PT|863.83|ICD9CM|Injury to pancreas, tail, without mention of open wound into cavity|Injury to pancreas, tail, without mention of open wound into cavity +C0160378|T037|AB|863.83|ICD9CM|Pancreas, tail inj-close|Pancreas, tail inj-close +C0160379|T037|PT|863.84|ICD9CM|Injury to pancreas, multiple and unspecified sites, without mention of open wound into cavity|Injury to pancreas, multiple and unspecified sites, without mention of open wound into cavity +C0160379|T037|AB|863.84|ICD9CM|Pancreas injury NOS-clos|Pancreas injury NOS-clos +C0160380|T037|AB|863.85|ICD9CM|Appendix injury-closed|Appendix injury-closed +C0160380|T037|PT|863.85|ICD9CM|Injury to appendix, without mention of open wound into cavity|Injury to appendix, without mention of open wound into cavity +C0160381|T037|AB|863.89|ICD9CM|GI injury NEC-closed|GI injury NEC-closed +C0160381|T037|PT|863.89|ICD9CM|Injury to other gastrointestinal sites, without mention of open wound into cavity|Injury to other gastrointestinal sites, without mention of open wound into cavity +C0160389|T037|HT|863.9|ICD9CM|Injury to other and unspecified gastrointestinal sites, with open wound into cavity|Injury to other and unspecified gastrointestinal sites, with open wound into cavity +C0160383|T037|AB|863.90|ICD9CM|GI injury NOS-open|GI injury NOS-open +C0160383|T037|PT|863.90|ICD9CM|Injury to gastrointestinal tract, unspecified site, with open wound into cavity|Injury to gastrointestinal tract, unspecified site, with open wound into cavity +C0160384|T037|PT|863.91|ICD9CM|Injury to pancreas, head, with open wound into cavity|Injury to pancreas, head, with open wound into cavity +C0160384|T037|AB|863.91|ICD9CM|Pancreas, head inj-open|Pancreas, head inj-open +C0160385|T037|PT|863.92|ICD9CM|Injury to pancreas, body, with open wound into cavity|Injury to pancreas, body, with open wound into cavity +C0160385|T037|AB|863.92|ICD9CM|Pancreas, body inj-open|Pancreas, body inj-open +C0160386|T037|PT|863.93|ICD9CM|Injury to pancreas, tail, with open wound into cavity|Injury to pancreas, tail, with open wound into cavity +C0160386|T037|AB|863.93|ICD9CM|Pancreas, tail inj-open|Pancreas, tail inj-open +C0160387|T037|PT|863.94|ICD9CM|Injury to pancreas, multiple and unspecified sites, with open wound into cavity|Injury to pancreas, multiple and unspecified sites, with open wound into cavity +C0160387|T037|AB|863.94|ICD9CM|Pancreas injury NOS-open|Pancreas injury NOS-open +C0160388|T037|AB|863.95|ICD9CM|Appendix injury-open|Appendix injury-open +C0160388|T037|PT|863.95|ICD9CM|Injury to appendix, with open wound into cavity|Injury to appendix, with open wound into cavity +C0160389|T037|AB|863.99|ICD9CM|GI injury NEC-open|GI injury NEC-open +C0160389|T037|PT|863.99|ICD9CM|Injury to other gastrointestinal sites, with open wound into cavity|Injury to other gastrointestinal sites, with open wound into cavity +C0160390|T037|HT|864|ICD9CM|Injury to liver|Injury to liver +C0160392|T037|HT|864.0|ICD9CM|Injury to liver without mention of open wound into cavity|Injury to liver without mention of open wound into cavity +C0160392|T037|PT|864.00|ICD9CM|Injury to liver without mention of open wound into cavity, unspecified injury|Injury to liver without mention of open wound into cavity, unspecified injury +C0160392|T037|AB|864.00|ICD9CM|Liver injury NOS-closed|Liver injury NOS-closed +C0160393|T037|PT|864.01|ICD9CM|Injury to liver without mention of open wound into cavity, hematoma and contusion|Injury to liver without mention of open wound into cavity, hematoma and contusion +C0160393|T037|AB|864.01|ICD9CM|Liver hematoma/contusion|Liver hematoma/contusion +C0160394|T037|PT|864.02|ICD9CM|Injury to liver without mention of open wound into cavity, laceration, minor|Injury to liver without mention of open wound into cavity, laceration, minor +C0160394|T037|AB|864.02|ICD9CM|Liver laceration, minor|Liver laceration, minor +C0273175|T037|PT|864.03|ICD9CM|Injury to liver without mention of open wound into cavity, laceration, moderate|Injury to liver without mention of open wound into cavity, laceration, moderate +C0273175|T037|AB|864.03|ICD9CM|Liver laceration, mod|Liver laceration, mod +C0160396|T037|PT|864.04|ICD9CM|Injury to liver without mention of open wound into cavity, laceration, major|Injury to liver without mention of open wound into cavity, laceration, major +C0160396|T037|AB|864.04|ICD9CM|Liver laceration, major|Liver laceration, major +C0375639|T037|PT|864.05|ICD9CM|Injury to liver without mention of open wound into cavity laceration, unspecified|Injury to liver without mention of open wound into cavity laceration, unspecified +C0375639|T037|AB|864.05|ICD9CM|Liver lacerat unspcf cls|Liver lacerat unspcf cls +C0160397|T037|AB|864.09|ICD9CM|Liver injury NEC-closed|Liver injury NEC-closed +C0160397|T037|PT|864.09|ICD9CM|Other injury to liver without mention of open wound into cavity|Other injury to liver without mention of open wound into cavity +C0160399|T037|HT|864.1|ICD9CM|Injury to liver with open wound into cavity|Injury to liver with open wound into cavity +C0160399|T037|PT|864.10|ICD9CM|Injury to liver with open wound into cavity, unspecified injury|Injury to liver with open wound into cavity, unspecified injury +C0160399|T037|AB|864.10|ICD9CM|Liver injury NOS-open|Liver injury NOS-open +C0160400|T037|PT|864.11|ICD9CM|Injury to liver with open wound into cavity, hematoma and contusion|Injury to liver with open wound into cavity, hematoma and contusion +C0160400|T037|AB|864.11|ICD9CM|Liver hematom/contus-opn|Liver hematom/contus-opn +C0160401|T037|PT|864.12|ICD9CM|Injury to liver with open wound into cavity, laceration, minor|Injury to liver with open wound into cavity, laceration, minor +C0160401|T037|AB|864.12|ICD9CM|Liver lacerat, minor-opn|Liver lacerat, minor-opn +C0160402|T037|PT|864.13|ICD9CM|Injury to liver with open wound into cavity, laceration, moderate|Injury to liver with open wound into cavity, laceration, moderate +C0160402|T037|AB|864.13|ICD9CM|Liver lacerat, mod-open|Liver lacerat, mod-open +C0273182|T037|PT|864.14|ICD9CM|Injury to liver with open wound into cavity, laceration, major|Injury to liver with open wound into cavity, laceration, major +C0273182|T037|AB|864.14|ICD9CM|Liver lacerat, major-opn|Liver lacerat, major-opn +C0859268|T037|PT|864.15|ICD9CM|Injury to liver with open wound into cavity, laceration, unspecified|Injury to liver with open wound into cavity, laceration, unspecified +C0859268|T037|AB|864.15|ICD9CM|Liver lacerat unspcf opn|Liver lacerat unspcf opn +C0160404|T037|AB|864.19|ICD9CM|Liver injury NEC-open|Liver injury NEC-open +C0160404|T037|PT|864.19|ICD9CM|Other injury to liver with open wound into cavity|Other injury to liver with open wound into cavity +C0160405|T037|HT|865|ICD9CM|Injury to spleen|Injury to spleen +C0160407|T037|HT|865.0|ICD9CM|Injury to spleen without mention of open wound into cavity|Injury to spleen without mention of open wound into cavity +C0160407|T037|PT|865.00|ICD9CM|Injury to spleen without mention of open wound into cavity, unspecified injury|Injury to spleen without mention of open wound into cavity, unspecified injury +C0160407|T037|AB|865.00|ICD9CM|Spleen injury NOS-closed|Spleen injury NOS-closed +C0160408|T046|PT|865.01|ICD9CM|Injury to spleen without mention of open wound into cavity, hematoma without rupture of capsule|Injury to spleen without mention of open wound into cavity, hematoma without rupture of capsule +C0160408|T046|AB|865.01|ICD9CM|Spleen hematoma-closed|Spleen hematoma-closed +C0160409|T037|AB|865.02|ICD9CM|Spleen capsular tear|Spleen capsular tear +C0160410|T037|PT|865.03|ICD9CM|Injury to spleen without mention of open wound into cavity, laceration extending into parenchyma|Injury to spleen without mention of open wound into cavity, laceration extending into parenchyma +C0160410|T037|AB|865.03|ICD9CM|Spleen parenchyma lacer|Spleen parenchyma lacer +C0160411|T037|PT|865.04|ICD9CM|Injury to spleen without mention of open wound into cavity, massive parenchymal disruption|Injury to spleen without mention of open wound into cavity, massive parenchymal disruption +C0160411|T037|AB|865.04|ICD9CM|Spleen disruption-clos|Spleen disruption-clos +C0160412|T037|PT|865.09|ICD9CM|Other injury into spleen without mention of open wound into cavity|Other injury into spleen without mention of open wound into cavity +C0160412|T037|AB|865.09|ICD9CM|Spleen injury NEC-closed|Spleen injury NEC-closed +C0160414|T037|HT|865.1|ICD9CM|Injury to spleen with open wound into cavity|Injury to spleen with open wound into cavity +C0160414|T037|PT|865.10|ICD9CM|Injury to spleen with open wound into cavity, unspecified injury|Injury to spleen with open wound into cavity, unspecified injury +C0160414|T037|AB|865.10|ICD9CM|Spleen injury NOS-open|Spleen injury NOS-open +C0160415|T037|PT|865.11|ICD9CM|Injury to spleen with open wound into cavity, hematoma without rupture of capsule|Injury to spleen with open wound into cavity, hematoma without rupture of capsule +C0160415|T037|AB|865.11|ICD9CM|Spleen hematoma-open|Spleen hematoma-open +C0160416|T037|PT|865.12|ICD9CM|Injury to spleen with open wound into cavity, capsular tears, without major disruption of parenchyma|Injury to spleen with open wound into cavity, capsular tears, without major disruption of parenchyma +C0160416|T037|AB|865.12|ICD9CM|Spleen capsular tear-opn|Spleen capsular tear-opn +C0160417|T037|PT|865.13|ICD9CM|Injury to spleen with open wound into cavity, laceration extending into parenchyma|Injury to spleen with open wound into cavity, laceration extending into parenchyma +C0160417|T037|AB|865.13|ICD9CM|Spleen parnchym lac-opn|Spleen parnchym lac-opn +C0160418|T037|PT|865.14|ICD9CM|Injury to spleen with open wound into cavity, massive parenchyma disruption|Injury to spleen with open wound into cavity, massive parenchyma disruption +C0160418|T037|AB|865.14|ICD9CM|Spleen disruption-open|Spleen disruption-open +C0160419|T037|PT|865.19|ICD9CM|Other injury to spleen with open wound into cavity|Other injury to spleen with open wound into cavity +C0160419|T037|AB|865.19|ICD9CM|Spleen injury NEC-open|Spleen injury NEC-open +C0160420|T037|HT|866|ICD9CM|Injury to kidney|Injury to kidney +C0160422|T037|HT|866.0|ICD9CM|Injury to kidney without mention of open wound into cavity|Injury to kidney without mention of open wound into cavity +C0160422|T037|PT|866.00|ICD9CM|Injury to kidney without mention of open wound into cavity, unspecified injury|Injury to kidney without mention of open wound into cavity, unspecified injury +C0160422|T037|AB|866.00|ICD9CM|Kidney injury NOS-closed|Kidney injury NOS-closed +C0160423|T037|PT|866.01|ICD9CM|Injury to kidney without mention of open wound into cavity, hematoma without rupture of capsule|Injury to kidney without mention of open wound into cavity, hematoma without rupture of capsule +C0160423|T037|AB|866.01|ICD9CM|Kidney hematoma-closed|Kidney hematoma-closed +C0160424|T037|PT|866.02|ICD9CM|Injury to kidney without mention of open wound into cavity, laceration|Injury to kidney without mention of open wound into cavity, laceration +C0160424|T037|AB|866.02|ICD9CM|Kidney laceration-closed|Kidney laceration-closed +C0273197|T037|PT|866.03|ICD9CM|Injury to kidney without mention of open wound into cavity, complete disruption of kidney parenchyma|Injury to kidney without mention of open wound into cavity, complete disruption of kidney parenchyma +C0273197|T037|AB|866.03|ICD9CM|Kidney disruption-closed|Kidney disruption-closed +C0160427|T037|HT|866.1|ICD9CM|Injury to kidney with open wound into cavity|Injury to kidney with open wound into cavity +C0160427|T037|PT|866.10|ICD9CM|Injury to kidney with open wound into cavity, unspecified injury|Injury to kidney with open wound into cavity, unspecified injury +C0160427|T037|AB|866.10|ICD9CM|Kidney injury NOS-open|Kidney injury NOS-open +C0160428|T037|PT|866.11|ICD9CM|Injury to kidney with open wound into cavity, hematoma without rupture of capsule|Injury to kidney with open wound into cavity, hematoma without rupture of capsule +C0160428|T037|AB|866.11|ICD9CM|Kidney hematoma-open|Kidney hematoma-open +C0160429|T037|PT|866.12|ICD9CM|Injury to kidney with open wound into cavity, laceration|Injury to kidney with open wound into cavity, laceration +C0160429|T037|AB|866.12|ICD9CM|Kidney laceration-open|Kidney laceration-open +C0160430|T037|PT|866.13|ICD9CM|Injury to kidney with open wound into cavity, complete disruption of kidney parenchyma|Injury to kidney with open wound into cavity, complete disruption of kidney parenchyma +C0160430|T037|AB|866.13|ICD9CM|Kidney disruption-open|Kidney disruption-open +C0478263|T037|HT|867|ICD9CM|Injury to pelvic organs|Injury to pelvic organs +C0160432|T037|AB|867.0|ICD9CM|Bladder/urethra inj-clos|Bladder/urethra inj-clos +C0160432|T037|PT|867.0|ICD9CM|Injury to bladder and urethra, without mention of open wound into cavity|Injury to bladder and urethra, without mention of open wound into cavity +C0160433|T037|AB|867.1|ICD9CM|Bladder/urethra inj-open|Bladder/urethra inj-open +C0160433|T037|PT|867.1|ICD9CM|Injury to bladder and urethra, with open wound into cavity|Injury to bladder and urethra, with open wound into cavity +C0160434|T037|PT|867.2|ICD9CM|Injury to ureter, without mention of open wound into cavity|Injury to ureter, without mention of open wound into cavity +C0160434|T037|AB|867.2|ICD9CM|Ureter injury-closed|Ureter injury-closed +C0160435|T037|PT|867.3|ICD9CM|Injury to ureter, with open wound into cavity|Injury to ureter, with open wound into cavity +C0160435|T037|AB|867.3|ICD9CM|Ureter injury-open|Ureter injury-open +C0160436|T037|PT|867.4|ICD9CM|Injury to uterus, without mention of open wound into cavity|Injury to uterus, without mention of open wound into cavity +C0160436|T037|AB|867.4|ICD9CM|Uterus injury-closed|Uterus injury-closed +C0160437|T037|PT|867.5|ICD9CM|Injury to uterus, with open wound into cavity|Injury to uterus, with open wound into cavity +C0160437|T037|AB|867.5|ICD9CM|Uterus injury-open|Uterus injury-open +C0160438|T037|PT|867.6|ICD9CM|Injury to other specified pelvic organs, without mention of open wound into cavity|Injury to other specified pelvic organs, without mention of open wound into cavity +C0160438|T037|AB|867.6|ICD9CM|Pelvic organ inj NEC-cl|Pelvic organ inj NEC-cl +C0160439|T037|PT|867.7|ICD9CM|Injury to other specified pelvic organs, with open wound into cavity|Injury to other specified pelvic organs, with open wound into cavity +C0160439|T037|AB|867.7|ICD9CM|Pelvic organ inj NEC-opn|Pelvic organ inj NEC-opn +C0160440|T037|PT|867.8|ICD9CM|Injury to unspecified pelvic organ, without mention of open wound into cavity|Injury to unspecified pelvic organ, without mention of open wound into cavity +C0160440|T037|AB|867.8|ICD9CM|Pelvic organ inj NOS-cl|Pelvic organ inj NOS-cl +C0160441|T037|PT|867.9|ICD9CM|Injury to unspecified pelvic organ, with open wound into cavity|Injury to unspecified pelvic organ, with open wound into cavity +C0160441|T037|AB|867.9|ICD9CM|Pelvic organ inj NOS-opn|Pelvic organ inj NOS-opn +C3495413|T037|HT|868|ICD9CM|Injury to other intra-abdominal organs|Injury to other intra-abdominal organs +C0160443|T037|HT|868.0|ICD9CM|Injury to other intra-abdominal organs without mention of open wound into cavity|Injury to other intra-abdominal organs without mention of open wound into cavity +C0160444|T037|AB|868.00|ICD9CM|Intra-abdom inj NOS-clos|Intra-abdom inj NOS-clos +C0160445|T037|AB|868.01|ICD9CM|Adrenal gland injury-cl|Adrenal gland injury-cl +C0160445|T037|PT|868.01|ICD9CM|Injury to other intra-abdominal organs without mention of open wound into cavity, adrenal gland|Injury to other intra-abdominal organs without mention of open wound into cavity, adrenal gland +C0160446|T037|AB|868.02|ICD9CM|Biliary tract injury-cl|Biliary tract injury-cl +C0160447|T037|PT|868.03|ICD9CM|Injury to other intra-abdominal organs without mention of open wound into cavity, peritoneum|Injury to other intra-abdominal organs without mention of open wound into cavity, peritoneum +C0160447|T037|AB|868.03|ICD9CM|Peritoneum injury-closed|Peritoneum injury-closed +C0160448|T037|PT|868.04|ICD9CM|Injury to other intra-abdominal organs without mention of open wound into cavity, retroperitoneum|Injury to other intra-abdominal organs without mention of open wound into cavity, retroperitoneum +C0160448|T037|AB|868.04|ICD9CM|Retroperitoneum inj-cl|Retroperitoneum inj-cl +C0160449|T037|PT|868.09|ICD9CM|Injury to other and multiple intra-abdominal organs without mention of open wound into cavity|Injury to other and multiple intra-abdominal organs without mention of open wound into cavity +C0160449|T037|AB|868.09|ICD9CM|Intra-abdom inj NEC-clos|Intra-abdom inj NEC-clos +C0160450|T037|HT|868.1|ICD9CM|Injury to other intra-abdominal organs with open wound into cavity|Injury to other intra-abdominal organs with open wound into cavity +C0160451|T037|AB|868.10|ICD9CM|Intra-abdom inj NOS-open|Intra-abdom inj NOS-open +C0160452|T037|AB|868.11|ICD9CM|Adrenal gland injury-opn|Adrenal gland injury-opn +C0160452|T037|PT|868.11|ICD9CM|Injury to other intra-abdominal organs with open wound into cavity, adrenal gland|Injury to other intra-abdominal organs with open wound into cavity, adrenal gland +C0160453|T037|AB|868.12|ICD9CM|Biliary tract injury-opn|Biliary tract injury-opn +C0160453|T037|PT|868.12|ICD9CM|Injury to other intra-abdominal organs with open wound into cavity, bile duct and gallbladder|Injury to other intra-abdominal organs with open wound into cavity, bile duct and gallbladder +C0160454|T037|PT|868.13|ICD9CM|Injury to other intra-abdominal organs with open wound into cavity, peritoneum|Injury to other intra-abdominal organs with open wound into cavity, peritoneum +C0160454|T037|AB|868.13|ICD9CM|Peritoneum injury-open|Peritoneum injury-open +C0160455|T037|PT|868.14|ICD9CM|Injury to other intra-abdominal organs with open wound into cavity, retroperitoneum|Injury to other intra-abdominal organs with open wound into cavity, retroperitoneum +C0160455|T037|AB|868.14|ICD9CM|Retroperitoneum inj-open|Retroperitoneum inj-open +C0160456|T037|PT|868.19|ICD9CM|Injury to other and multiple intra-abdominal organs, with open wound into cavity|Injury to other and multiple intra-abdominal organs, with open wound into cavity +C0160456|T037|AB|868.19|ICD9CM|Intra-abdom inj NEC-open|Intra-abdom inj NEC-open +C0160457|T037|HT|869|ICD9CM|Internal injury to unspecified or ill-defined organs|Internal injury to unspecified or ill-defined organs +C0021779|T037|AB|869.0|ICD9CM|Internal inj NOS-closed|Internal inj NOS-closed +C0021779|T037|PT|869.0|ICD9CM|Internal injury to unspecified or ill-defined organs without mention of open wound into cavity|Internal injury to unspecified or ill-defined organs without mention of open wound into cavity +C0160458|T037|AB|869.1|ICD9CM|Internal injury NOS-open|Internal injury NOS-open +C0160458|T037|PT|869.1|ICD9CM|Internal injury to unspecified or ill-defined organs with open wound into cavity|Internal injury to unspecified or ill-defined organs with open wound into cavity +C0160459|T037|HT|870|ICD9CM|Open wound of ocular adnexa|Open wound of ocular adnexa +C0178321|T037|HT|870-879.99|ICD9CM|OPEN WOUND OF HEAD, NECK, AND TRUNK|OPEN WOUND OF HEAD, NECK, AND TRUNK +C0332798|T037|HT|870-897.99|ICD9CM|OPEN WOUNDS|OPEN WOUNDS +C0160460|T037|AB|870.0|ICD9CM|Lac eyelid skn/perioculr|Lac eyelid skn/perioculr +C0160460|T037|PT|870.0|ICD9CM|Laceration of skin of eyelid and periocular area|Laceration of skin of eyelid and periocular area +C0433980|T037|AB|870.1|ICD9CM|Full-thicknes lac eyelid|Full-thicknes lac eyelid +C0433980|T037|PT|870.1|ICD9CM|Laceration of eyelid, full-thickness, not involving lacrimal passages|Laceration of eyelid, full-thickness, not involving lacrimal passages +C0433981|T037|AB|870.2|ICD9CM|Lac eyelid inv lacrm pas|Lac eyelid inv lacrm pas +C0433981|T037|PT|870.2|ICD9CM|Laceration of eyelid involving lacrimal passages|Laceration of eyelid involving lacrimal passages +C0273244|T037|AB|870.3|ICD9CM|Penetr wnd orbit w/o FB|Penetr wnd orbit w/o FB +C0273244|T037|PT|870.3|ICD9CM|Penetrating wound of orbit, without mention of foreign body|Penetrating wound of orbit, without mention of foreign body +C0160464|T037|AB|870.4|ICD9CM|Penetrat wnd orbit w FB|Penetrat wnd orbit w FB +C0160464|T037|PT|870.4|ICD9CM|Penetrating wound of orbit with foreign body|Penetrating wound of orbit with foreign body +C0160465|T037|AB|870.8|ICD9CM|Opn wnd ocular adnex NEC|Opn wnd ocular adnex NEC +C0160465|T037|PT|870.8|ICD9CM|Other specified open wounds of ocular adnexa|Other specified open wounds of ocular adnexa +C0160466|T037|AB|870.9|ICD9CM|Opn wnd ocular adnex NOS|Opn wnd ocular adnex NOS +C0160466|T037|PT|870.9|ICD9CM|Unspecified open wound of ocular adnexa|Unspecified open wound of ocular adnexa +C0160474|T037|HT|871|ICD9CM|Open wound of eyeball|Open wound of eyeball +C0433976|T037|AB|871.0|ICD9CM|Ocular lac w/o prolapse|Ocular lac w/o prolapse +C0433976|T037|PT|871.0|ICD9CM|Ocular laceration without prolapse of intraocular tissue|Ocular laceration without prolapse of intraocular tissue +C0160468|T037|AB|871.1|ICD9CM|Ocular lacera w prolapse|Ocular lacera w prolapse +C0160468|T037|PT|871.1|ICD9CM|Ocular laceration with prolapse or exposure of intraocular tissue|Ocular laceration with prolapse or exposure of intraocular tissue +C0160469|T037|AB|871.2|ICD9CM|Rupture eye w tissu loss|Rupture eye w tissu loss +C0160469|T037|PT|871.2|ICD9CM|Rupture of eye with partial loss of intraocular tissue|Rupture of eye with partial loss of intraocular tissue +C0004445|T037|AB|871.3|ICD9CM|Avulsion of eye|Avulsion of eye +C0004445|T037|PT|871.3|ICD9CM|Avulsion of eye|Avulsion of eye +C0160470|T037|AB|871.4|ICD9CM|Laceration of eye NOS|Laceration of eye NOS +C0160470|T037|PT|871.4|ICD9CM|Unspecified laceration of eye|Unspecified laceration of eye +C0160471|T037|AB|871.5|ICD9CM|Penetrat magnet FB eye|Penetrat magnet FB eye +C0160471|T037|PT|871.5|ICD9CM|Penetration of eyeball with magnetic foreign body|Penetration of eyeball with magnetic foreign body +C0160472|T037|AB|871.6|ICD9CM|Penetrat FB NEC eye|Penetrat FB NEC eye +C0160472|T037|PT|871.6|ICD9CM|Penetration of eyeball with (nonmagnetic) foreign body|Penetration of eyeball with (nonmagnetic) foreign body +C0015409|T037|AB|871.7|ICD9CM|Ocular penetration NOS|Ocular penetration NOS +C0015409|T037|PT|871.7|ICD9CM|Unspecified ocular penetration|Unspecified ocular penetration +C0160474|T037|AB|871.9|ICD9CM|Opn wound of eyeball NOS|Opn wound of eyeball NOS +C0160474|T037|PT|871.9|ICD9CM|Unspecified open wound of eyeball|Unspecified open wound of eyeball +C0160475|T037|HT|872|ICD9CM|Open wound of ear|Open wound of ear +C0160476|T037|HT|872.0|ICD9CM|Open wound of external ear, without mention of complication|Open wound of external ear, without mention of complication +C0375641|T037|PT|872.00|ICD9CM|Open wound of external ear, unspecified site, without mention of complication|Open wound of external ear, unspecified site, without mention of complication +C0375641|T037|AB|872.00|ICD9CM|Opn wound extern ear NOS|Opn wound extern ear NOS +C0273248|T037|AB|872.01|ICD9CM|Open wound of auricle|Open wound of auricle +C0273248|T037|PT|872.01|ICD9CM|Open wound of auricle, ear, without mention of complication|Open wound of auricle, ear, without mention of complication +C0375643|T037|PT|872.02|ICD9CM|Open wound of auditory canal, without mention of complication|Open wound of auditory canal, without mention of complication +C0375643|T037|AB|872.02|ICD9CM|Opn wound auditory canal|Opn wound auditory canal +C0273251|T037|HT|872.1|ICD9CM|Open wound of external ear, complicated|Open wound of external ear, complicated +C0160481|T037|PT|872.10|ICD9CM|Open wound of external ear, unspecified site, complicated|Open wound of external ear, unspecified site, complicated +C0160481|T037|AB|872.10|ICD9CM|Opn wnd ex ear NOS-compl|Opn wnd ex ear NOS-compl +C0160482|T037|AB|872.11|ICD9CM|Open wound auricle-compl|Open wound auricle-compl +C0160482|T037|PT|872.11|ICD9CM|Open wound of auricle, ear, complicated|Open wound of auricle, ear, complicated +C0160483|T037|AB|872.12|ICD9CM|Open wnd aud canal-compl|Open wnd aud canal-compl +C0160483|T037|PT|872.12|ICD9CM|Open wound of auditory canal, complicated|Open wound of auditory canal, complicated +C0160484|T037|HT|872.6|ICD9CM|Open wound of other specified parts of ear, without mention of complication|Open wound of other specified parts of ear, without mention of complication +C0273253|T037|AB|872.61|ICD9CM|Open wound of ear drum|Open wound of ear drum +C0273253|T037|PT|872.61|ICD9CM|Open wound of ear drum, without mention of complication|Open wound of ear drum, without mention of complication +C0273254|T037|AB|872.62|ICD9CM|Open wound of ossicles|Open wound of ossicles +C0273254|T037|PT|872.62|ICD9CM|Open wound of ossicles, without mention of complication|Open wound of ossicles, without mention of complication +C0375646|T037|AB|872.63|ICD9CM|Open wnd eustachian tube|Open wnd eustachian tube +C0375646|T037|PT|872.63|ICD9CM|Open wound of eustachian tube, without mention of complication|Open wound of eustachian tube, without mention of complication +C0273256|T037|AB|872.64|ICD9CM|Open wound of cochlea|Open wound of cochlea +C0273256|T037|PT|872.64|ICD9CM|Open wound of cochlea, without mention of complication|Open wound of cochlea, without mention of complication +C0490055|T037|AB|872.69|ICD9CM|Open wound of ear NEC|Open wound of ear NEC +C0490055|T037|PT|872.69|ICD9CM|Open wound of other and multiple sites of ear, without mention of complication|Open wound of other and multiple sites of ear, without mention of complication +C0160489|T037|HT|872.7|ICD9CM|Open wound of other specified parts of ear, complicated|Open wound of other specified parts of ear, complicated +C0160490|T037|AB|872.71|ICD9CM|Open wnd ear drum-compl|Open wnd ear drum-compl +C0160490|T037|PT|872.71|ICD9CM|Open wound of ear drum, complicated|Open wound of ear drum, complicated +C0160491|T037|AB|872.72|ICD9CM|Open wnd ossicles-compl|Open wnd ossicles-compl +C0160491|T037|PT|872.72|ICD9CM|Open wound of ossicles, complicated|Open wound of ossicles, complicated +C0160492|T037|PT|872.73|ICD9CM|Open wound of eustachian tube, complicated|Open wound of eustachian tube, complicated +C0160492|T037|AB|872.73|ICD9CM|Opn wnd eustach tb-compl|Opn wnd eustach tb-compl +C0160493|T037|AB|872.74|ICD9CM|Open wound cochlea-compl|Open wound cochlea-compl +C0160493|T037|PT|872.74|ICD9CM|Open wound of cochlea, complicated|Open wound of cochlea, complicated +C0490056|T037|AB|872.79|ICD9CM|Open wound ear NEC-compl|Open wound ear NEC-compl +C0490056|T037|PT|872.79|ICD9CM|Open wound of other and multiple sites of ear, complicated|Open wound of other and multiple sites of ear, complicated +C0160475|T037|AB|872.8|ICD9CM|Open wound of ear NOS|Open wound of ear NOS +C0160475|T037|PT|872.8|ICD9CM|Open wound of ear, part unspecified, without mention of complication|Open wound of ear, part unspecified, without mention of complication +C0273250|T037|AB|872.9|ICD9CM|Open wound ear NOS-compl|Open wound ear NOS-compl +C0273250|T037|PT|872.9|ICD9CM|Open wound of ear, part unspecified, complicated|Open wound of ear, part unspecified, complicated +C0160496|T037|HT|873|ICD9CM|Other open wound of head|Other open wound of head +C0273259|T037|AB|873.0|ICD9CM|Open wound of scalp|Open wound of scalp +C0273259|T037|PT|873.0|ICD9CM|Open wound of scalp, without mention of complication|Open wound of scalp, without mention of complication +C0160498|T037|PT|873.1|ICD9CM|Open wound of scalp, complicated|Open wound of scalp, complicated +C0160498|T037|AB|873.1|ICD9CM|Open wound scalp-compl|Open wound scalp-compl +C0273260|T037|HT|873.2|ICD9CM|Open wound of nose, without mention of complication|Open wound of nose, without mention of complication +C0273260|T037|AB|873.20|ICD9CM|Open wound of nose NOS|Open wound of nose NOS +C0273260|T037|PT|873.20|ICD9CM|Open wound of nose, unspecified site, without mention of complication|Open wound of nose, unspecified site, without mention of complication +C0375650|T037|AB|873.21|ICD9CM|Open wound nasal septum|Open wound nasal septum +C0375650|T037|PT|873.21|ICD9CM|Open wound of nasal septum, without mention of complication|Open wound of nasal septum, without mention of complication +C0160502|T037|AB|873.22|ICD9CM|Open wound nasal cavity|Open wound nasal cavity +C0160502|T037|PT|873.22|ICD9CM|Open wound of nasal cavity, without mention of complication|Open wound of nasal cavity, without mention of complication +C0160503|T037|AB|873.23|ICD9CM|Open wound nasal sinus|Open wound nasal sinus +C0160503|T037|PT|873.23|ICD9CM|Open wound of nasal sinus, without mention of complication|Open wound of nasal sinus, without mention of complication +C0375653|T037|AB|873.29|ICD9CM|Mult open wound nose|Mult open wound nose +C0375653|T037|PT|873.29|ICD9CM|Open wound of multiple sites of nose, without mention of complication|Open wound of multiple sites of nose, without mention of complication +C0160505|T037|HT|873.3|ICD9CM|Open wound of nose, complicated|Open wound of nose, complicated +C0160505|T037|AB|873.30|ICD9CM|Open wnd nose NOS-compl|Open wnd nose NOS-compl +C0160505|T037|PT|873.30|ICD9CM|Open wound of nose, unspecified site, complicated|Open wound of nose, unspecified site, complicated +C0160507|T037|PT|873.31|ICD9CM|Open wound of nasal septum, complicated|Open wound of nasal septum, complicated +C0160507|T037|AB|873.31|ICD9CM|Opn wnd nas septum-compl|Opn wnd nas septum-compl +C0160508|T037|AB|873.32|ICD9CM|Open wnd nasal cav-compl|Open wnd nasal cav-compl +C0160508|T037|PT|873.32|ICD9CM|Open wound of nasal cavity, complicated|Open wound of nasal cavity, complicated +C0160509|T037|AB|873.33|ICD9CM|Open wnd nas sinus-compl|Open wnd nas sinus-compl +C0160509|T037|PT|873.33|ICD9CM|Open wound of nasal sinus, complicated|Open wound of nasal sinus, complicated +C0273237|T037|AB|873.39|ICD9CM|Mult open wnd nose-compl|Mult open wnd nose-compl +C0273237|T037|PT|873.39|ICD9CM|Open wound of multiple sites of nose, complicated|Open wound of multiple sites of nose, complicated +C0160511|T037|HT|873.4|ICD9CM|Open wound of face, without mention of complication|Open wound of face, without mention of complication +C0375654|T037|AB|873.40|ICD9CM|Open wound of face NOS|Open wound of face NOS +C0375654|T037|PT|873.40|ICD9CM|Open wound of face, unspecified site, without mention of complication|Open wound of face, unspecified site, without mention of complication +C0273267|T037|AB|873.41|ICD9CM|Open wound of cheek|Open wound of cheek +C0273267|T037|PT|873.41|ICD9CM|Open wound of cheek, without mention of complication|Open wound of cheek, without mention of complication +C0273268|T037|AB|873.42|ICD9CM|Open wound of forehead|Open wound of forehead +C0273268|T037|PT|873.42|ICD9CM|Open wound of forehead, without mention of complication|Open wound of forehead, without mention of complication +C0273270|T037|AB|873.43|ICD9CM|Open wound of lip|Open wound of lip +C0273270|T037|PT|873.43|ICD9CM|Open wound of lip, without mention of complication|Open wound of lip, without mention of complication +C0273271|T037|AB|873.44|ICD9CM|Open wound of jaw|Open wound of jaw +C0273271|T037|PT|873.44|ICD9CM|Open wound of jaw, without mention of complication|Open wound of jaw, without mention of complication +C0490057|T037|AB|873.49|ICD9CM|Open wound of face NEC|Open wound of face NEC +C0490057|T037|PT|873.49|ICD9CM|Open wound of other and multiple sites of face, without mention of complication|Open wound of other and multiple sites of face, without mention of complication +C0160517|T037|HT|873.5|ICD9CM|Open wound of face, complicated|Open wound of face, complicated +C0160517|T037|AB|873.50|ICD9CM|Open wnd face NOS-compl|Open wnd face NOS-compl +C0160517|T037|PT|873.50|ICD9CM|Open wound of face, unspecified site, complicated|Open wound of face, unspecified site, complicated +C0160519|T037|AB|873.51|ICD9CM|Open wound cheek-compl|Open wound cheek-compl +C0160519|T037|PT|873.51|ICD9CM|Open wound of cheek, complicated|Open wound of cheek, complicated +C0160520|T037|AB|873.52|ICD9CM|Open wnd forehead-compl|Open wnd forehead-compl +C0160520|T037|PT|873.52|ICD9CM|Open wound of forehead, complicated|Open wound of forehead, complicated +C0160521|T037|AB|873.53|ICD9CM|Open wound lip-complicat|Open wound lip-complicat +C0160521|T037|PT|873.53|ICD9CM|Open wound of lip, complicated|Open wound of lip, complicated +C0160522|T037|AB|873.54|ICD9CM|Open wound jaw-complicat|Open wound jaw-complicat +C0160522|T037|PT|873.54|ICD9CM|Open wound of jaw, complicated|Open wound of jaw, complicated +C0490058|T037|AB|873.59|ICD9CM|Open wnd face NEC-compl|Open wnd face NEC-compl +C0490058|T037|PT|873.59|ICD9CM|Open wound of other and multiple sites of face, complicated|Open wound of other and multiple sites of face, complicated +C0160523|T037|HT|873.6|ICD9CM|Open wound of internal structures of mouth, without mention of complication|Open wound of internal structures of mouth, without mention of complication +C0375659|T037|AB|873.60|ICD9CM|Open wound of mouth NOS|Open wound of mouth NOS +C0375659|T037|PT|873.60|ICD9CM|Open wound of mouth, unspecified site, without mention of complication|Open wound of mouth, unspecified site, without mention of complication +C0273276|T037|AB|873.61|ICD9CM|Open wound buccal mucosa|Open wound buccal mucosa +C0273276|T037|PT|873.61|ICD9CM|Open wound of buccal mucosa, without mention of complication|Open wound of buccal mucosa, without mention of complication +C0273277|T037|AB|873.62|ICD9CM|Open wound of gum|Open wound of gum +C0273277|T037|PT|873.62|ICD9CM|Open wound of gum (alveolar process), without mention of complication|Open wound of gum (alveolar process), without mention of complication +C0375662|T037|AB|873.63|ICD9CM|Broken tooth-uncomplic|Broken tooth-uncomplic +C0375662|T037|PT|873.63|ICD9CM|Open wound of tooth (broken) (fractured) (due to trauma), without mention of complication|Open wound of tooth (broken) (fractured) (due to trauma), without mention of complication +C0375663|T037|PT|873.64|ICD9CM|Open wound of tongue and floor of mouth, without mention of complication|Open wound of tongue and floor of mouth, without mention of complication +C0375663|T037|AB|873.64|ICD9CM|Opn wnd tongue/mouth flr|Opn wnd tongue/mouth flr +C0273282|T037|AB|873.65|ICD9CM|Open wound of palate|Open wound of palate +C0273282|T037|PT|873.65|ICD9CM|Open wound of palate, without mention of complication|Open wound of palate, without mention of complication +C0490059|T037|AB|873.69|ICD9CM|Open wound mouth NEC|Open wound mouth NEC +C0490059|T037|PT|873.69|ICD9CM|Open wound of other and multiple sites of mouth, without mention of complication|Open wound of other and multiple sites of mouth, without mention of complication +C0160529|T037|HT|873.7|ICD9CM|Open wound of internal structure of mouth, complicated|Open wound of internal structure of mouth, complicated +C0273284|T037|AB|873.70|ICD9CM|Open wnd mouth NOS-compl|Open wnd mouth NOS-compl +C0273284|T037|PT|873.70|ICD9CM|Open wound of mouth, unspecified site, complicated|Open wound of mouth, unspecified site, complicated +C0160531|T037|PT|873.71|ICD9CM|Open wound of buccal mucosa, complicated|Open wound of buccal mucosa, complicated +C0160531|T037|AB|873.71|ICD9CM|Opn wnd buc mucosa-compl|Opn wnd buc mucosa-compl +C0273286|T037|AB|873.72|ICD9CM|Open wound gum-compl|Open wound gum-compl +C0273286|T037|PT|873.72|ICD9CM|Open wound of gum (alveolar process), complicated|Open wound of gum (alveolar process), complicated +C0160533|T037|AB|873.73|ICD9CM|Broken tooth-complicated|Broken tooth-complicated +C0160533|T037|PT|873.73|ICD9CM|Open wound of tooth (broken) (fractured) (due to trauma), complicated|Open wound of tooth (broken) (fractured) (due to trauma), complicated +C0160534|T037|PT|873.74|ICD9CM|Open wound of tongue and floor of mouth, complicated|Open wound of tongue and floor of mouth, complicated +C0160534|T037|AB|873.74|ICD9CM|Open wound tongue-compl|Open wound tongue-compl +C0160535|T037|PT|873.75|ICD9CM|Open wound of palate, complicated|Open wound of palate, complicated +C0160535|T037|AB|873.75|ICD9CM|Open wound palate-compl|Open wound palate-compl +C0490060|T037|AB|873.79|ICD9CM|Open wnd mouth NOS-compl|Open wnd mouth NOS-compl +C0490060|T037|PT|873.79|ICD9CM|Open wound of other and multiple sites of mouth, complicated|Open wound of other and multiple sites of mouth, complicated +C0160536|T037|AB|873.8|ICD9CM|Open wound of head NEC|Open wound of head NEC +C0160536|T037|PT|873.8|ICD9CM|Other and unspecified open wound of head without mention of complication|Other and unspecified open wound of head without mention of complication +C0160537|T037|AB|873.9|ICD9CM|Open wnd head NEC-compl|Open wnd head NEC-compl +C0160537|T037|PT|873.9|ICD9CM|Other and unspecified open wound of head, complicated|Other and unspecified open wound of head, complicated +C0160538|T037|HT|874|ICD9CM|Open wound of neck|Open wound of neck +C0160539|T037|HT|874.0|ICD9CM|Open wound of larynx and trachea, without mention of complication|Open wound of larynx and trachea, without mention of complication +C0160539|T037|PT|874.00|ICD9CM|Open wound of larynx with trachea, without mention of complication|Open wound of larynx with trachea, without mention of complication +C0160539|T037|AB|874.00|ICD9CM|Opn wnd larynx w trachea|Opn wnd larynx w trachea +C0273300|T037|AB|874.01|ICD9CM|Open wound of larynx|Open wound of larynx +C0273300|T037|PT|874.01|ICD9CM|Open wound of larynx, without mention of complication|Open wound of larynx, without mention of complication +C0273301|T037|AB|874.02|ICD9CM|Open wound of trachea|Open wound of trachea +C0273301|T037|PT|874.02|ICD9CM|Open wound of trachea, without mention of complication|Open wound of trachea, without mention of complication +C0160543|T037|HT|874.1|ICD9CM|Open wound of larynx and trachea, complicated|Open wound of larynx and trachea, complicated +C0160543|T037|PT|874.10|ICD9CM|Open wound of larynx with trachea, complicated|Open wound of larynx with trachea, complicated +C0160543|T037|AB|874.10|ICD9CM|Opn wnd lary w trac-comp|Opn wnd lary w trac-comp +C0160544|T037|AB|874.11|ICD9CM|Open wound larynx-compl|Open wound larynx-compl +C0160544|T037|PT|874.11|ICD9CM|Open wound of larynx, complicated|Open wound of larynx, complicated +C0160545|T037|PT|874.12|ICD9CM|Open wound of trachea, complicated|Open wound of trachea, complicated +C0160545|T037|AB|874.12|ICD9CM|Open wound trachea-compl|Open wound trachea-compl +C0273302|T037|PT|874.2|ICD9CM|Open wound of thyroid gland, without mention of complication|Open wound of thyroid gland, without mention of complication +C0273302|T037|AB|874.2|ICD9CM|Open wound thyroid gland|Open wound thyroid gland +C0160547|T037|PT|874.3|ICD9CM|Open wound of thyroid gland, complicated|Open wound of thyroid gland, complicated +C0160547|T037|AB|874.3|ICD9CM|Open wound thyroid-compl|Open wound thyroid-compl +C0273292|T037|AB|874.4|ICD9CM|Open wound of pharynx|Open wound of pharynx +C0273292|T037|PT|874.4|ICD9CM|Open wound of pharynx, without mention of complication|Open wound of pharynx, without mention of complication +C0160549|T037|PT|874.5|ICD9CM|Open wound of pharynx, complicated|Open wound of pharynx, complicated +C0160549|T037|AB|874.5|ICD9CM|Open wound pharynx-compl|Open wound pharynx-compl +C0160550|T037|AB|874.8|ICD9CM|Open wound of neck NEC|Open wound of neck NEC +C0160550|T037|PT|874.8|ICD9CM|Open wound of other and unspecified parts of neck, without mention of complication|Open wound of other and unspecified parts of neck, without mention of complication +C0160551|T037|PT|874.9|ICD9CM|Open wound of other and unspecified parts of neck, complicated|Open wound of other and unspecified parts of neck, complicated +C0160551|T037|AB|874.9|ICD9CM|Opn wound neck NEC-compl|Opn wound neck NEC-compl +C0160552|T037|HT|875|ICD9CM|Open wound of chest (wall)|Open wound of chest (wall) +C0273313|T037|AB|875.0|ICD9CM|Open wound of chest|Open wound of chest +C0273313|T037|PT|875.0|ICD9CM|Open wound of chest (wall), without mention of complication|Open wound of chest (wall), without mention of complication +C0273314|T037|AB|875.1|ICD9CM|Open wound chest-compl|Open wound chest-compl +C0273314|T037|PT|875.1|ICD9CM|Open wound of chest (wall), complicated|Open wound of chest (wall), complicated +C0160555|T037|HT|876|ICD9CM|Open wound of back|Open wound of back +C0273315|T037|AB|876.0|ICD9CM|Open wound of back|Open wound of back +C0273315|T037|PT|876.0|ICD9CM|Open wound of back, without mention of complication|Open wound of back, without mention of complication +C0160557|T037|AB|876.1|ICD9CM|Open wound back-compl|Open wound back-compl +C0160557|T037|PT|876.1|ICD9CM|Open wound of back, complicated|Open wound of back, complicated +C0160558|T037|HT|877|ICD9CM|Open wound of buttock|Open wound of buttock +C0273318|T037|AB|877.0|ICD9CM|Open wound of buttock|Open wound of buttock +C0273318|T037|PT|877.0|ICD9CM|Open wound of buttock, without mention of complication|Open wound of buttock, without mention of complication +C0160560|T037|AB|877.1|ICD9CM|Open wound buttock-compl|Open wound buttock-compl +C0160560|T037|PT|877.1|ICD9CM|Open wound of buttock, complicated|Open wound of buttock, complicated +C0160561|T037|HT|878|ICD9CM|Open wound of genital organs (external), including traumatic amputation|Open wound of genital organs (external), including traumatic amputation +C0160562|T037|AB|878.0|ICD9CM|Open wound of penis|Open wound of penis +C0160562|T037|PT|878.0|ICD9CM|Open wound of penis, without mention of complication|Open wound of penis, without mention of complication +C0160563|T037|PT|878.1|ICD9CM|Open wound of penis, complicated|Open wound of penis, complicated +C0160563|T037|AB|878.1|ICD9CM|Open wound penis-compl|Open wound penis-compl +C0434143|T037|PT|878.2|ICD9CM|Open wound of scrotum and testes, without mention of complication|Open wound of scrotum and testes, without mention of complication +C0434143|T037|AB|878.2|ICD9CM|Opn wound scrotum/testes|Opn wound scrotum/testes +C0160565|T037|PT|878.3|ICD9CM|Open wound of scrotum and testes, complicated|Open wound of scrotum and testes, complicated +C0160565|T037|AB|878.3|ICD9CM|Opn wnd scrot/test-compl|Opn wnd scrot/test-compl +C0273329|T037|AB|878.4|ICD9CM|Open wound of vulva|Open wound of vulva +C0273329|T037|PT|878.4|ICD9CM|Open wound of vulva, without mention of complication|Open wound of vulva, without mention of complication +C0160567|T037|PT|878.5|ICD9CM|Open wound of vulva, complicated|Open wound of vulva, complicated +C0160567|T037|AB|878.5|ICD9CM|Open wound vulva-compl|Open wound vulva-compl +C0273330|T037|AB|878.6|ICD9CM|Open wound of vagina|Open wound of vagina +C0273330|T037|PT|878.6|ICD9CM|Open wound of vagina, without mention of complication|Open wound of vagina, without mention of complication +C0160569|T037|PT|878.7|ICD9CM|Open wound of vagina, complicated|Open wound of vagina, complicated +C0160569|T037|AB|878.7|ICD9CM|Open wound vagina-compl|Open wound vagina-compl +C0160570|T037|AB|878.8|ICD9CM|Open wound genital NEC|Open wound genital NEC +C0160571|T037|PT|878.9|ICD9CM|Open wound of other and unspecified parts of genital organs (external), complicated|Open wound of other and unspecified parts of genital organs (external), complicated +C0160571|T037|AB|878.9|ICD9CM|Opn wnd genital NEC-comp|Opn wnd genital NEC-comp +C0160572|T037|HT|879|ICD9CM|Open wound of other and unspecified sites, except limbs|Open wound of other and unspecified sites, except limbs +C0347564|T037|AB|879.0|ICD9CM|Open wound of breast|Open wound of breast +C0347564|T037|PT|879.0|ICD9CM|Open wound of breast, without mention of complication|Open wound of breast, without mention of complication +C0160574|T037|AB|879.1|ICD9CM|Open wound breast-compl|Open wound breast-compl +C0160574|T037|PT|879.1|ICD9CM|Open wound of breast, complicated|Open wound of breast, complicated +C0160575|T037|PT|879.2|ICD9CM|Open wound of abdominal wall, anterior, without mention of complication|Open wound of abdominal wall, anterior, without mention of complication +C0160575|T037|AB|879.2|ICD9CM|Opn wnd anterior abdomen|Opn wnd anterior abdomen +C0160576|T037|PT|879.3|ICD9CM|Open wound of abdominal wall, anterior, complicated|Open wound of abdominal wall, anterior, complicated +C0160576|T037|AB|879.3|ICD9CM|Opn wnd ant abdomen-comp|Opn wnd ant abdomen-comp +C0160577|T037|PT|879.4|ICD9CM|Open wound of abdominal wall, lateral, without mention of complication|Open wound of abdominal wall, lateral, without mention of complication +C0160577|T037|AB|879.4|ICD9CM|Opn wnd lateral abdomen|Opn wnd lateral abdomen +C0160578|T037|PT|879.5|ICD9CM|Open wound of abdominal wall, lateral, complicated|Open wound of abdominal wall, lateral, complicated +C0160578|T037|AB|879.5|ICD9CM|Opn wnd lat abdomen-comp|Opn wnd lat abdomen-comp +C0160579|T037|PT|879.6|ICD9CM|Open wound of other and unspecified parts of trunk, without mention of complication|Open wound of other and unspecified parts of trunk, without mention of complication +C0160579|T037|AB|879.6|ICD9CM|Open wound of trunk NEC|Open wound of trunk NEC +C0160580|T037|AB|879.7|ICD9CM|Open wnd trunk NEC-compl|Open wnd trunk NEC-compl +C0160580|T037|PT|879.7|ICD9CM|Open wound of other and unspecified parts of trunk, complicated|Open wound of other and unspecified parts of trunk, complicated +C0273236|T037|AB|879.8|ICD9CM|Open wound site NOS|Open wound site NOS +C0273236|T037|PT|879.8|ICD9CM|Open wound(s) (multiple) of unspecified site(s), without mention of complication|Open wound(s) (multiple) of unspecified site(s), without mention of complication +C0273237|T037|PT|879.9|ICD9CM|Open wound(s) (multiple) of unspecified site(s), complicated|Open wound(s) (multiple) of unspecified site(s), complicated +C0273237|T037|AB|879.9|ICD9CM|Opn wound site NOS-compl|Opn wound site NOS-compl +C0432959|T037|HT|880|ICD9CM|Open wound of shoulder and upper arm|Open wound of shoulder and upper arm +C0178322|T037|HT|880-887.99|ICD9CM|OPEN WOUND OF UPPER LIMB|OPEN WOUND OF UPPER LIMB +C0160584|T037|HT|880.0|ICD9CM|Open wound of shoulder and upper arm, without mention of complication|Open wound of shoulder and upper arm, without mention of complication +C0273354|T037|AB|880.00|ICD9CM|Open wound of shoulder|Open wound of shoulder +C0273354|T037|PT|880.00|ICD9CM|Open wound of shoulder region, without mention of complication|Open wound of shoulder region, without mention of complication +C0160586|T037|AB|880.01|ICD9CM|Open wound of scapula|Open wound of scapula +C0160586|T037|PT|880.01|ICD9CM|Open wound of scapular region, without mention of complication|Open wound of scapular region, without mention of complication +C0160587|T037|AB|880.02|ICD9CM|Open wound of axilla|Open wound of axilla +C0160587|T037|PT|880.02|ICD9CM|Open wound of axillary region, without mention of complication|Open wound of axillary region, without mention of complication +C0160588|T037|AB|880.03|ICD9CM|Open wound of upper arm|Open wound of upper arm +C0160588|T037|PT|880.03|ICD9CM|Open wound of upper arm, without mention of complication|Open wound of upper arm, without mention of complication +C0495858|T037|AB|880.09|ICD9CM|Mult open wound shoulder|Mult open wound shoulder +C0495858|T037|PT|880.09|ICD9CM|Open wound of multiple sites of shoulder and upper arm, without mention of complication|Open wound of multiple sites of shoulder and upper arm, without mention of complication +C0160590|T037|HT|880.1|ICD9CM|Open wound of shoulder and upper arm, complicated|Open wound of shoulder and upper arm, complicated +C0160591|T037|AB|880.10|ICD9CM|Open wnd shoulder-compl|Open wnd shoulder-compl +C0160591|T037|PT|880.10|ICD9CM|Open wound of shoulder region, complicated|Open wound of shoulder region, complicated +C0160592|T037|PT|880.11|ICD9CM|Open wound of scapular region, complicated|Open wound of scapular region, complicated +C0160592|T037|AB|880.11|ICD9CM|Open wound scapula-compl|Open wound scapula-compl +C0160593|T037|AB|880.12|ICD9CM|Open wound axilla-compl|Open wound axilla-compl +C0160593|T037|PT|880.12|ICD9CM|Open wound of axillary region, complicated|Open wound of axillary region, complicated +C0160594|T037|AB|880.13|ICD9CM|Open wnd upper arm-compl|Open wnd upper arm-compl +C0160594|T037|PT|880.13|ICD9CM|Open wound of upper arm, complicated|Open wound of upper arm, complicated +C0160595|T037|AB|880.19|ICD9CM|Mult opn wnd should-comp|Mult opn wnd should-comp +C0160595|T037|PT|880.19|ICD9CM|Open wound of multiple sites of shoulder and upper arm, complicated|Open wound of multiple sites of shoulder and upper arm, complicated +C0160596|T037|HT|880.2|ICD9CM|Open wound of shoulder and upper arm, with tendon involvement|Open wound of shoulder and upper arm, with tendon involvement +C0160597|T037|PT|880.20|ICD9CM|Open wound of shoulder region, with tendon involvement|Open wound of shoulder region, with tendon involvement +C0160597|T037|AB|880.20|ICD9CM|Opn wnd shouldr w tendon|Opn wnd shouldr w tendon +C0160598|T037|PT|880.21|ICD9CM|Open wound of scapular region, with tendon involvement|Open wound of scapular region, with tendon involvement +C0160598|T037|AB|880.21|ICD9CM|Opn wnd scapula w tendon|Opn wnd scapula w tendon +C0160599|T037|AB|880.22|ICD9CM|Open wnd axilla w tendon|Open wnd axilla w tendon +C0160599|T037|PT|880.22|ICD9CM|Open wound of axillary region, with tendon involvement|Open wound of axillary region, with tendon involvement +C0160600|T037|AB|880.23|ICD9CM|Open wnd up arm w tendon|Open wnd up arm w tendon +C0160600|T037|PT|880.23|ICD9CM|Open wound of upper arm, with tendon involvement|Open wound of upper arm, with tendon involvement +C0160601|T037|AB|880.29|ICD9CM|Mlt opn wnd shldr w tend|Mlt opn wnd shldr w tend +C0160601|T037|PT|880.29|ICD9CM|Open wound of multiple sites of shoulder and upper arm, with tendon involvement|Open wound of multiple sites of shoulder and upper arm, with tendon involvement +C0160602|T037|HT|881|ICD9CM|Open wound of elbow, forearm, and wrist|Open wound of elbow, forearm, and wrist +C0160603|T037|HT|881.0|ICD9CM|Open wound of elbow, forearm, and wrist, without mention of complication|Open wound of elbow, forearm, and wrist, without mention of complication +C0160604|T037|AB|881.00|ICD9CM|Open wound of forearm|Open wound of forearm +C0160604|T037|PT|881.00|ICD9CM|Open wound of forearm, without mention of complication|Open wound of forearm, without mention of complication +C0160605|T037|AB|881.01|ICD9CM|Open wound of elbow|Open wound of elbow +C0160605|T037|PT|881.01|ICD9CM|Open wound of elbow, without mention of complication|Open wound of elbow, without mention of complication +C0160606|T037|AB|881.02|ICD9CM|Open wound of wrist|Open wound of wrist +C0160606|T037|PT|881.02|ICD9CM|Open wound of wrist, without mention of complication|Open wound of wrist, without mention of complication +C0160607|T037|HT|881.1|ICD9CM|Open wound of elbow, forearm, and wrist, complicated|Open wound of elbow, forearm, and wrist, complicated +C0160608|T037|AB|881.10|ICD9CM|Open wound forearm-compl|Open wound forearm-compl +C0160608|T037|PT|881.10|ICD9CM|Open wound of forearm, complicated|Open wound of forearm, complicated +C0160609|T037|AB|881.11|ICD9CM|Open wound elbow-complic|Open wound elbow-complic +C0160609|T037|PT|881.11|ICD9CM|Open wound of elbow, complicated|Open wound of elbow, complicated +C0160610|T037|PT|881.12|ICD9CM|Open wound of wrist, complicated|Open wound of wrist, complicated +C0160610|T037|AB|881.12|ICD9CM|Open wound wrist-complic|Open wound wrist-complic +C0160611|T037|HT|881.2|ICD9CM|Open wound of elbow, forearm, and wrist, with tendon involvement|Open wound of elbow, forearm, and wrist, with tendon involvement +C0160612|T037|AB|881.20|ICD9CM|Open wnd forearm w tendn|Open wnd forearm w tendn +C0160612|T037|PT|881.20|ICD9CM|Open wound of forearm, with tendon involvement|Open wound of forearm, with tendon involvement +C0160613|T037|PT|881.21|ICD9CM|Open wound of elbow, with tendon involvement|Open wound of elbow, with tendon involvement +C0160613|T037|AB|881.21|ICD9CM|Opn wound elbow w tendon|Opn wound elbow w tendon +C0160614|T037|PT|881.22|ICD9CM|Open wound of wrist, with tendon involvement|Open wound of wrist, with tendon involvement +C0160614|T037|AB|881.22|ICD9CM|Opn wound wrist w tendon|Opn wound wrist w tendon +C0160615|T037|HT|882|ICD9CM|Open wound of hand except finger(s) alone|Open wound of hand except finger(s) alone +C0160616|T037|AB|882.0|ICD9CM|Open wound of hand|Open wound of hand +C0160616|T037|PT|882.0|ICD9CM|Open wound of hand except finger(s) alone, without mention of complication|Open wound of hand except finger(s) alone, without mention of complication +C0160617|T037|PT|882.1|ICD9CM|Open wound of hand except finger(s) alone, complicated|Open wound of hand except finger(s) alone, complicated +C0160617|T037|AB|882.1|ICD9CM|Opn wound hand-complicat|Opn wound hand-complicat +C0160618|T037|AB|882.2|ICD9CM|Open wound hand w tendon|Open wound hand w tendon +C0160618|T037|PT|882.2|ICD9CM|Open wound of hand except finger(s) alone, with tendon involvement|Open wound of hand except finger(s) alone, with tendon involvement +C0555295|T037|HT|883|ICD9CM|Open wound of finger(s)|Open wound of finger(s) +C0273365|T037|AB|883.0|ICD9CM|Open wound of finger|Open wound of finger +C0273365|T037|PT|883.0|ICD9CM|Open wound of finger(s), without mention of complication|Open wound of finger(s), without mention of complication +C0160621|T037|AB|883.1|ICD9CM|Open wound finger-compl|Open wound finger-compl +C0160621|T037|PT|883.1|ICD9CM|Open wound of finger(s), complicated|Open wound of finger(s), complicated +C0160622|T037|AB|883.2|ICD9CM|Open wnd finger w tendon|Open wnd finger w tendon +C0160622|T037|PT|883.2|ICD9CM|Open wound of finger(s), with tendon involvement|Open wound of finger(s), with tendon involvement +C1744615|T037|HT|884|ICD9CM|Multiple and unspecified open wound of upper limb|Multiple and unspecified open wound of upper limb +C0160623|T037|PT|884.0|ICD9CM|Multiple and unspecified open wound of upper limb, without mention of complication|Multiple and unspecified open wound of upper limb, without mention of complication +C0160623|T037|AB|884.0|ICD9CM|Open wound arm mult/NOS|Open wound arm mult/NOS +C0160625|T037|PT|884.1|ICD9CM|Multiple and unspecified open wound of upper limb, complicated|Multiple and unspecified open wound of upper limb, complicated +C0160625|T037|AB|884.1|ICD9CM|Open wound arm NOS-compl|Open wound arm NOS-compl +C0160626|T037|PT|884.2|ICD9CM|Multiple and unspecified open wound of upper limb, with tendon involvement|Multiple and unspecified open wound of upper limb, with tendon involvement +C0160626|T037|AB|884.2|ICD9CM|Opn wnd arm NOS w tendon|Opn wnd arm NOS w tendon +C0160627|T037|HT|885|ICD9CM|Traumatic amputation of thumb (complete) (partial)|Traumatic amputation of thumb (complete) (partial) +C0433638|T037|AB|885.0|ICD9CM|Amputation thumb|Amputation thumb +C0433638|T037|PT|885.0|ICD9CM|Traumatic amputation of thumb (complete)(partial), without mention of complication|Traumatic amputation of thumb (complete)(partial), without mention of complication +C0160629|T037|AB|885.1|ICD9CM|Amputation thumb-compl|Amputation thumb-compl +C0160629|T037|PT|885.1|ICD9CM|Traumatic amputation of thumb (complete)(partial), complicated|Traumatic amputation of thumb (complete)(partial), complicated +C0160630|T037|HT|886|ICD9CM|Traumatic amputation of other finger(s) (complete) (partial)|Traumatic amputation of other finger(s) (complete) (partial) +C0160631|T037|AB|886.0|ICD9CM|Amputation finger|Amputation finger +C0160631|T037|PT|886.0|ICD9CM|Traumatic amputation of other finger(s) (complete) (partial), without mention of complication|Traumatic amputation of other finger(s) (complete) (partial), without mention of complication +C0160632|T037|AB|886.1|ICD9CM|Amputation finger-compl|Amputation finger-compl +C0160632|T037|PT|886.1|ICD9CM|Traumatic amputation of other finger(s) (complete) (partial), complicated|Traumatic amputation of other finger(s) (complete) (partial), complicated +C0160633|T037|HT|887|ICD9CM|Traumatic amputation of arm and hand (complete) (partial)|Traumatic amputation of arm and hand (complete) (partial) +C0160634|T037|AB|887.0|ICD9CM|Amput below elb, unilat|Amput below elb, unilat +C0273389|T037|AB|887.1|ICD9CM|Amp below elb, unil-comp|Amp below elb, unil-comp +C0273389|T037|PT|887.1|ICD9CM|Traumatic amputation of arm and hand (complete) (partial), unilateral, below elbow, complicated|Traumatic amputation of arm and hand (complete) (partial), unilateral, below elbow, complicated +C0160636|T037|AB|887.2|ICD9CM|Amput abv elbow, unilat|Amput abv elbow, unilat +C0273387|T037|AB|887.3|ICD9CM|Amput abv elb, unil-comp|Amput abv elb, unil-comp +C0160638|T037|AB|887.4|ICD9CM|Amputat arm, unilat NOS|Amputat arm, unilat NOS +C0160639|T037|AB|887.5|ICD9CM|Amput arm, unil NOS-comp|Amput arm, unil NOS-comp +C0160640|T037|AB|887.6|ICD9CM|Amputation arm, bilat|Amputation arm, bilat +C0160641|T037|AB|887.7|ICD9CM|Amputat arm, bilat-compl|Amputat arm, bilat-compl +C0160641|T037|PT|887.7|ICD9CM|Traumatic amputation of arm and hand (complete) (partial), bilateral [any level], complicated|Traumatic amputation of arm and hand (complete) (partial), bilateral [any level], complicated +C0160643|T037|HT|890|ICD9CM|Open wound of hip and thigh|Open wound of hip and thigh +C0178323|T037|HT|890-897.99|ICD9CM|OPEN WOUND OF LOWER LIMB|OPEN WOUND OF LOWER LIMB +C1279573|T037|PT|890.0|ICD9CM|Open wound of hip and thigh, without mention of complication|Open wound of hip and thigh, without mention of complication +C1279573|T037|AB|890.0|ICD9CM|Open wound of hip/thigh|Open wound of hip/thigh +C0160644|T037|AB|890.1|ICD9CM|Open wnd hip/thigh-compl|Open wnd hip/thigh-compl +C0160644|T037|PT|890.1|ICD9CM|Open wound of hip and thigh, complicated|Open wound of hip and thigh, complicated +C0160645|T037|PT|890.2|ICD9CM|Open wound of hip and thigh, with tendon involvement|Open wound of hip and thigh, with tendon involvement +C0160645|T037|AB|890.2|ICD9CM|Opn wnd hip/thigh w tend|Opn wnd hip/thigh w tend +C1744616|T037|HT|891|ICD9CM|Open wound of knee, leg [except thigh], and ankle|Open wound of knee, leg [except thigh], and ankle +C0160647|T037|AB|891.0|ICD9CM|Open wnd knee/leg/ankle|Open wnd knee/leg/ankle +C0160647|T037|PT|891.0|ICD9CM|Open wound of knee, leg [except thigh], and ankle, without mention of complication|Open wound of knee, leg [except thigh], and ankle, without mention of complication +C0160648|T037|AB|891.1|ICD9CM|Open wnd knee/leg-compl|Open wnd knee/leg-compl +C0160648|T037|PT|891.1|ICD9CM|Open wound of knee, leg [except thigh], and ankle, complicated|Open wound of knee, leg [except thigh], and ankle, complicated +C0160649|T037|PT|891.2|ICD9CM|Open wound of knee, leg [except thigh], and ankle, with tendon involvement|Open wound of knee, leg [except thigh], and ankle, with tendon involvement +C0160649|T037|AB|891.2|ICD9CM|Opn wnd knee/leg w tendn|Opn wnd knee/leg w tendn +C0160650|T037|HT|892|ICD9CM|Open wound of foot except toe(s) alone|Open wound of foot except toe(s) alone +C0160651|T037|AB|892.0|ICD9CM|Open wound of foot|Open wound of foot +C0160651|T037|PT|892.0|ICD9CM|Open wound of foot except toe(s) alone, without mention of complication|Open wound of foot except toe(s) alone, without mention of complication +C0160652|T037|AB|892.1|ICD9CM|Open wound foot-compl|Open wound foot-compl +C0160652|T037|PT|892.1|ICD9CM|Open wound of foot except toe(s) alone, complicated|Open wound of foot except toe(s) alone, complicated +C0160653|T037|AB|892.2|ICD9CM|Open wound foot w tendon|Open wound foot w tendon +C0160653|T037|PT|892.2|ICD9CM|Open wound of foot except toe(s) alone, with tendon involvement|Open wound of foot except toe(s) alone, with tendon involvement +C0562512|T037|HT|893|ICD9CM|Open wound of toe(s)|Open wound of toe(s) +C0160655|T037|AB|893.0|ICD9CM|Open wound of toe|Open wound of toe +C0160655|T037|PT|893.0|ICD9CM|Open wound of toe(s), without mention of complication|Open wound of toe(s), without mention of complication +C0273412|T037|PT|893.1|ICD9CM|Open wound of toe(s), complicated|Open wound of toe(s), complicated +C0273412|T037|AB|893.1|ICD9CM|Open wound toe-compl|Open wound toe-compl +C0273413|T037|PT|893.2|ICD9CM|Open wound of toe(s), with tendon involvement|Open wound of toe(s), with tendon involvement +C0273413|T037|AB|893.2|ICD9CM|Open wound toe w tendon|Open wound toe w tendon +C0160658|T037|HT|894|ICD9CM|Multiple and unspecified open wound of lower limb|Multiple and unspecified open wound of lower limb +C1812613|T037|PT|894.0|ICD9CM|Multiple and unspecified open wound of lower limb, without mention of complication|Multiple and unspecified open wound of lower limb, without mention of complication +C1812613|T037|AB|894.0|ICD9CM|Open wound of leg NEC|Open wound of leg NEC +C0160660|T037|PT|894.1|ICD9CM|Multiple and unspecified open wound of lower limb, complicated|Multiple and unspecified open wound of lower limb, complicated +C0160660|T037|AB|894.1|ICD9CM|Open wound leg NEC-compl|Open wound leg NEC-compl +C0160661|T037|PT|894.2|ICD9CM|Multiple and unspecified open wound of lower limb, with tendon involvement|Multiple and unspecified open wound of lower limb, with tendon involvement +C0160661|T037|AB|894.2|ICD9CM|Opn wnd leg NEC w tendon|Opn wnd leg NEC w tendon +C1744632|T037|HT|895|ICD9CM|Traumatic amputation of toe(s) (complete) (partial)|Traumatic amputation of toe(s) (complete) (partial) +C0160662|T037|AB|895.0|ICD9CM|Amputation toe|Amputation toe +C0160662|T037|PT|895.0|ICD9CM|Traumatic amputation of toe(s) (complete) (partial), without mention of complication|Traumatic amputation of toe(s) (complete) (partial), without mention of complication +C0433625|T037|AB|895.1|ICD9CM|Amputation toe-complicat|Amputation toe-complicat +C0433625|T037|PT|895.1|ICD9CM|Traumatic amputation of toe(s) (complete) (partial), complicated|Traumatic amputation of toe(s) (complete) (partial), complicated +C0160665|T037|HT|896|ICD9CM|Traumatic amputation of foot (complete) (partial)|Traumatic amputation of foot (complete) (partial) +C1366330|T037|AB|896.0|ICD9CM|Amputation foot, unilat|Amputation foot, unilat +C1366330|T037|PT|896.0|ICD9CM|Traumatic amputation of foot (complete) (partial), unilateral, without mention of complication|Traumatic amputation of foot (complete) (partial), unilateral, without mention of complication +C0273417|T037|AB|896.1|ICD9CM|Amput foot, unilat-compl|Amput foot, unilat-compl +C0273417|T037|PT|896.1|ICD9CM|Traumatic amputation of foot (complete) (partial), unilateral, complicated|Traumatic amputation of foot (complete) (partial), unilateral, complicated +C0160668|T037|AB|896.2|ICD9CM|Amputation foot, bilat|Amputation foot, bilat +C0160668|T037|PT|896.2|ICD9CM|Traumatic amputation of foot (complete) (partial), bilateral, without mention of complication|Traumatic amputation of foot (complete) (partial), bilateral, without mention of complication +C0273419|T037|AB|896.3|ICD9CM|Amputat foot, bilat-comp|Amputat foot, bilat-comp +C0273419|T037|PT|896.3|ICD9CM|Traumatic amputation of foot (complete) (partial), bilateral, complicated|Traumatic amputation of foot (complete) (partial), bilateral, complicated +C0160675|T037|HT|897|ICD9CM|Traumatic amputation of leg(s) (complete) (partial)|Traumatic amputation of leg(s) (complete) (partial) +C0160671|T037|AB|897.0|ICD9CM|Amput below knee, unilat|Amput below knee, unilat +C0160672|T037|AB|897.1|ICD9CM|Amputat bk, unilat-compl|Amputat bk, unilat-compl +C0160672|T037|PT|897.1|ICD9CM|Traumatic amputation of leg(s) (complete) (partial), unilateral, below knee, complicated|Traumatic amputation of leg(s) (complete) (partial), unilateral, below knee, complicated +C0160673|T037|AB|897.2|ICD9CM|Amput above knee, unilat|Amput above knee, unilat +C0160674|T037|AB|897.3|ICD9CM|Amput abv kn, unil-compl|Amput abv kn, unil-compl +C0160674|T037|PT|897.3|ICD9CM|Traumatic amputation of leg(s) (complete) (partial), unilateral, at or above knee, complicated|Traumatic amputation of leg(s) (complete) (partial), unilateral, at or above knee, complicated +C0478347|T037|AB|897.4|ICD9CM|Amputat leg, unilat NOS|Amputat leg, unilat NOS +C0160676|T037|AB|897.5|ICD9CM|Amput leg, unil NOS-comp|Amput leg, unil NOS-comp +C0160676|T037|PT|897.5|ICD9CM|Traumatic amputation of leg(s) (complete) (partial), unilateral, level not specified, complicated|Traumatic amputation of leg(s) (complete) (partial), unilateral, level not specified, complicated +C0160677|T037|AB|897.6|ICD9CM|Amputation leg, bilat|Amputation leg, bilat +C0160678|T037|AB|897.7|ICD9CM|Amputat leg, bilat-compl|Amputat leg, bilat-compl +C0160678|T037|PT|897.7|ICD9CM|Traumatic amputation of leg(s) (complete) (partial), bilateral [any level], complicated|Traumatic amputation of leg(s) (complete) (partial), bilateral [any level], complicated +C0160679|T037|HT|900|ICD9CM|Injury to blood vessels of head and neck|Injury to blood vessels of head and neck +C0178324|T037|HT|900-904.99|ICD9CM|INJURY TO BLOOD VESSELS|INJURY TO BLOOD VESSELS +C0160680|T037|HT|900.0|ICD9CM|Injury to carotid artery|Injury to carotid artery +C0160680|T037|AB|900.00|ICD9CM|Injur carotid artery NOS|Injur carotid artery NOS +C0160680|T037|PT|900.00|ICD9CM|Injury to carotid artery, unspecified|Injury to carotid artery, unspecified +C0160681|T037|AB|900.01|ICD9CM|Inj common carotid arter|Inj common carotid arter +C0160681|T037|PT|900.01|ICD9CM|Injury to common carotid artery|Injury to common carotid artery +C0160682|T037|AB|900.02|ICD9CM|Inj external carotid art|Inj external carotid art +C0160682|T037|PT|900.02|ICD9CM|Injury to external carotid artery|Injury to external carotid artery +C0160683|T037|AB|900.03|ICD9CM|Inj internal carotid art|Inj internal carotid art +C0160683|T037|PT|900.03|ICD9CM|Injury to internal carotid artery|Injury to internal carotid artery +C0160684|T037|AB|900.1|ICD9CM|Inj internl jugular vein|Inj internl jugular vein +C0160684|T037|PT|900.1|ICD9CM|Injury to internal jugular vein|Injury to internal jugular vein +C0160685|T037|HT|900.8|ICD9CM|Injury to other specified blood vessels of head and neck|Injury to other specified blood vessels of head and neck +C0160686|T037|AB|900.81|ICD9CM|Inj extern jugular vein|Inj extern jugular vein +C0160686|T037|PT|900.81|ICD9CM|Injury to external jugular vein|Injury to external jugular vein +C0160687|T037|AB|900.82|ICD9CM|Inj mlt head/neck vessel|Inj mlt head/neck vessel +C0160687|T037|PT|900.82|ICD9CM|Injury to multiple blood vessels of head and neck|Injury to multiple blood vessels of head and neck +C0160685|T037|AB|900.89|ICD9CM|Inj head/neck vessel NEC|Inj head/neck vessel NEC +C0160685|T037|PT|900.89|ICD9CM|Injury to other specified blood vessels of head and neck|Injury to other specified blood vessels of head and neck +C0160679|T037|AB|900.9|ICD9CM|Inj head/neck vessel NOS|Inj head/neck vessel NOS +C0160679|T037|PT|900.9|ICD9CM|Injury to unspecified blood vessel of head and neck|Injury to unspecified blood vessel of head and neck +C0160689|T037|HT|901|ICD9CM|Injury to blood vessels of thorax|Injury to blood vessels of thorax +C0160690|T037|AB|901.0|ICD9CM|Injury thoracic aorta|Injury thoracic aorta +C0160690|T037|PT|901.0|ICD9CM|Injury to thoracic aorta|Injury to thoracic aorta +C0495833|T037|AB|901.1|ICD9CM|Inj innomin/subclav art|Inj innomin/subclav art +C0495833|T037|PT|901.1|ICD9CM|Injury to innominate and subclavian arteries|Injury to innominate and subclavian arteries +C0160692|T037|AB|901.2|ICD9CM|Inj superior vena cava|Inj superior vena cava +C0160692|T037|PT|901.2|ICD9CM|Injury to superior vena cava|Injury to superior vena cava +C0160693|T037|AB|901.3|ICD9CM|Inj innomin/subclav vein|Inj innomin/subclav vein +C0160693|T037|PT|901.3|ICD9CM|Injury to innominate and subclavian veins|Injury to innominate and subclavian veins +C0273454|T037|HT|901.4|ICD9CM|Injury to pulmonary blood vessels|Injury to pulmonary blood vessels +C0273454|T037|AB|901.40|ICD9CM|Inj pulmonary vessel NOS|Inj pulmonary vessel NOS +C0273454|T037|PT|901.40|ICD9CM|Injury to pulmonary vessel(s), unspecified|Injury to pulmonary vessel(s), unspecified +C0160696|T037|AB|901.41|ICD9CM|Injury pulmonary artery|Injury pulmonary artery +C0160696|T037|PT|901.41|ICD9CM|Injury to pulmonary artery|Injury to pulmonary artery +C0160697|T037|AB|901.42|ICD9CM|Injury pulmonary vein|Injury pulmonary vein +C0160697|T037|PT|901.42|ICD9CM|Injury to pulmonary vein|Injury to pulmonary vein +C0160698|T037|HT|901.8|ICD9CM|Injury to other specified blood vessels of thorax|Injury to other specified blood vessels of thorax +C0392044|T037|AB|901.81|ICD9CM|Inj intercostal art/vein|Inj intercostal art/vein +C0392044|T037|PT|901.81|ICD9CM|Injury to intercostal artery or vein|Injury to intercostal artery or vein +C0160700|T037|AB|901.82|ICD9CM|Inj int mammary art/vein|Inj int mammary art/vein +C0160700|T037|PT|901.82|ICD9CM|Injury to internal mammary artery or vein|Injury to internal mammary artery or vein +C0160701|T037|AB|901.83|ICD9CM|Inj mult thoracic vessel|Inj mult thoracic vessel +C0160701|T037|PT|901.83|ICD9CM|Injury to multiple blood vessels of thorax|Injury to multiple blood vessels of thorax +C0160698|T037|AB|901.89|ICD9CM|Inj thoracic vessel NEC|Inj thoracic vessel NEC +C0160698|T037|PT|901.89|ICD9CM|Injury to other specified blood vessels of thorax|Injury to other specified blood vessels of thorax +C0160689|T037|AB|901.9|ICD9CM|Inj thoracic vessel NOS|Inj thoracic vessel NOS +C0160689|T037|PT|901.9|ICD9CM|Injury to unspecified blood vessel of thorax|Injury to unspecified blood vessel of thorax +C0160703|T037|HT|902|ICD9CM|Injury to blood vessels of abdomen and pelvis|Injury to blood vessels of abdomen and pelvis +C0160704|T037|AB|902.0|ICD9CM|Injury abdominal aorta|Injury abdominal aorta +C0160704|T037|PT|902.0|ICD9CM|Injury to abdominal aorta|Injury to abdominal aorta +C0160705|T037|HT|902.1|ICD9CM|Injury to inferior vena cava|Injury to inferior vena cava +C0160705|T037|AB|902.10|ICD9CM|Inj infer vena cava NOS|Inj infer vena cava NOS +C0160705|T037|PT|902.10|ICD9CM|Injury to inferior vena cava, unspecified|Injury to inferior vena cava, unspecified +C0160706|T037|AB|902.11|ICD9CM|Injury hepatic veins|Injury hepatic veins +C0160706|T037|PT|902.11|ICD9CM|Injury to hepatic veins|Injury to hepatic veins +C0160707|T037|AB|902.19|ICD9CM|Inj infer vena cava NEC|Inj infer vena cava NEC +C0160707|T037|PT|902.19|ICD9CM|Injury to inferior vena cava, other|Injury to inferior vena cava, other +C0160708|T037|HT|902.2|ICD9CM|Injury to celiac and mesenteric arteries|Injury to celiac and mesenteric arteries +C0160708|T037|AB|902.20|ICD9CM|Inj celiac/mesen art NOS|Inj celiac/mesen art NOS +C0160708|T037|PT|902.20|ICD9CM|Injury to celiac and mesenteric arteries, unspecified|Injury to celiac and mesenteric arteries, unspecified +C0160709|T037|AB|902.21|ICD9CM|Injury gastric artery|Injury gastric artery +C0160709|T037|PT|902.21|ICD9CM|Injury to gastric artery|Injury to gastric artery +C0160710|T037|AB|902.22|ICD9CM|Injury hepatic artery|Injury hepatic artery +C0160710|T037|PT|902.22|ICD9CM|Injury to hepatic artery|Injury to hepatic artery +C0160711|T037|AB|902.23|ICD9CM|Injury splenic artery|Injury splenic artery +C0160711|T037|PT|902.23|ICD9CM|Injury to splenic artery|Injury to splenic artery +C0160712|T037|AB|902.24|ICD9CM|Injury celiac axis NEC|Injury celiac axis NEC +C0160712|T037|PT|902.24|ICD9CM|Injury to other specified branches of celiac axis|Injury to other specified branches of celiac axis +C0273463|T037|AB|902.25|ICD9CM|Inj super mesenteric art|Inj super mesenteric art +C0273463|T037|PT|902.25|ICD9CM|Injury to superior mesenteric artery (trunk)|Injury to superior mesenteric artery (trunk) +C0160714|T037|AB|902.26|ICD9CM|Inj brnch sup mesent art|Inj brnch sup mesent art +C0160714|T037|PT|902.26|ICD9CM|Injury to primary branches of superior mesenteric artery|Injury to primary branches of superior mesenteric artery +C0160715|T037|AB|902.27|ICD9CM|Inj infer mesenteric art|Inj infer mesenteric art +C0160715|T037|PT|902.27|ICD9CM|Injury to inferior mesenteric artery|Injury to inferior mesenteric artery +C0160716|T037|AB|902.29|ICD9CM|Inj mesenteric vess NEC|Inj mesenteric vess NEC +C0160716|T037|PT|902.29|ICD9CM|Injury to celiac and mesenteric arteries, other|Injury to celiac and mesenteric arteries, other +C0160717|T037|HT|902.3|ICD9CM|Injury to portal and splenic veins|Injury to portal and splenic veins +C0160718|T037|AB|902.31|ICD9CM|Inj superior mesent vein|Inj superior mesent vein +C0160718|T037|PT|902.31|ICD9CM|Injury to superior mesenteric vein and primary subdivisions|Injury to superior mesenteric vein and primary subdivisions +C0160719|T037|AB|902.32|ICD9CM|Inj inferior mesent vein|Inj inferior mesent vein +C0160719|T037|PT|902.32|ICD9CM|Injury to inferior mesenteric vein|Injury to inferior mesenteric vein +C0160720|T037|AB|902.33|ICD9CM|Injury portal vein|Injury portal vein +C0160720|T037|PT|902.33|ICD9CM|Injury to portal vein|Injury to portal vein +C0160721|T037|AB|902.34|ICD9CM|Injury splenic vein|Injury splenic vein +C0160721|T037|PT|902.34|ICD9CM|Injury to splenic vein|Injury to splenic vein +C0160722|T037|AB|902.39|ICD9CM|Inj port/splen vess NEC|Inj port/splen vess NEC +C0160722|T037|PT|902.39|ICD9CM|Injury to portal and splenic veins, other|Injury to portal and splenic veins, other +C0160723|T037|HT|902.4|ICD9CM|Injury to renal blood vessels|Injury to renal blood vessels +C0160723|T037|AB|902.40|ICD9CM|Injury renal vessel NOS|Injury renal vessel NOS +C0160723|T037|PT|902.40|ICD9CM|Injury to renal vessel(s), unspecified|Injury to renal vessel(s), unspecified +C0160725|T037|AB|902.41|ICD9CM|Injury renal artery|Injury renal artery +C0160725|T037|PT|902.41|ICD9CM|Injury to renal artery|Injury to renal artery +C0160726|T037|AB|902.42|ICD9CM|Injury renal vein|Injury renal vein +C0160726|T037|PT|902.42|ICD9CM|Injury to renal vein|Injury to renal vein +C0160727|T037|AB|902.49|ICD9CM|Injury renal vessel NEC|Injury renal vessel NEC +C0160727|T037|PT|902.49|ICD9CM|Injury to renal blood vessels, other|Injury to renal blood vessels, other +C0160728|T037|HT|902.5|ICD9CM|Injury to iliac blood vessels|Injury to iliac blood vessels +C0160728|T037|AB|902.50|ICD9CM|Injury iliac vessel NOS|Injury iliac vessel NOS +C0160728|T037|PT|902.50|ICD9CM|Injury to iliac vessel(s), unspecified|Injury to iliac vessel(s), unspecified +C0160730|T037|AB|902.51|ICD9CM|Inj hypogastric artery|Inj hypogastric artery +C0160730|T037|PT|902.51|ICD9CM|Injury to hypogastric artery|Injury to hypogastric artery +C0160731|T037|AB|902.52|ICD9CM|Injury hypogastric vein|Injury hypogastric vein +C0160731|T037|PT|902.52|ICD9CM|Injury to hypogastric vein|Injury to hypogastric vein +C0160732|T037|AB|902.53|ICD9CM|Injury iliac artery|Injury iliac artery +C0160732|T037|PT|902.53|ICD9CM|Injury to iliac artery|Injury to iliac artery +C0160733|T037|AB|902.54|ICD9CM|Injury iliac vein|Injury iliac vein +C0160733|T037|PT|902.54|ICD9CM|Injury to iliac vein|Injury to iliac vein +C0160734|T037|PT|902.55|ICD9CM|Injury to uterine artery|Injury to uterine artery +C0160734|T037|AB|902.55|ICD9CM|Injury uterine artery|Injury uterine artery +C0160735|T037|PT|902.56|ICD9CM|Injury to uterine vein|Injury to uterine vein +C0160735|T037|AB|902.56|ICD9CM|Injury uterine vein|Injury uterine vein +C0160736|T037|AB|902.59|ICD9CM|Injury iliac vessel NEC|Injury iliac vessel NEC +C0160736|T037|PT|902.59|ICD9CM|Injury to iliac blood vessels, other|Injury to iliac blood vessels, other +C0160737|T037|HT|902.8|ICD9CM|Injury to other specified blood vessels of abdomen and pelvis|Injury to other specified blood vessels of abdomen and pelvis +C0160738|T037|AB|902.81|ICD9CM|Injury ovarian artery|Injury ovarian artery +C0160738|T037|PT|902.81|ICD9CM|Injury to ovarian artery|Injury to ovarian artery +C0160739|T037|AB|902.82|ICD9CM|Injury ovarian vein|Injury ovarian vein +C0160739|T037|PT|902.82|ICD9CM|Injury to ovarian vein|Injury to ovarian vein +C0160740|T037|AB|902.87|ICD9CM|Inj mult abd/pelv vessel|Inj mult abd/pelv vessel +C0160740|T037|PT|902.87|ICD9CM|Injury to multiple blood vessels of abdomen and pelvis|Injury to multiple blood vessels of abdomen and pelvis +C0160737|T037|AB|902.89|ICD9CM|Inj abdominal vessel NEC|Inj abdominal vessel NEC +C0160737|T037|PT|902.89|ICD9CM|Injury to other specified blood vessels of abdomen and pelvis|Injury to other specified blood vessels of abdomen and pelvis +C0160703|T037|AB|902.9|ICD9CM|Inj abdominal vessel NOS|Inj abdominal vessel NOS +C0160703|T037|PT|902.9|ICD9CM|Injury to unspecified blood vessel of abdomen and pelvis|Injury to unspecified blood vessel of abdomen and pelvis +C0160742|T037|HT|903|ICD9CM|Injury to blood vessels of upper extremity|Injury to blood vessels of upper extremity +C0273471|T037|HT|903.0|ICD9CM|Injury to axillary blood vessels|Injury to axillary blood vessels +C0273471|T037|AB|903.00|ICD9CM|Inj axillary vessel NOS|Inj axillary vessel NOS +C0273471|T037|PT|903.00|ICD9CM|Injury to axillary vessel(s), unspecified|Injury to axillary vessel(s), unspecified +C0160745|T037|AB|903.01|ICD9CM|Injury axillary artery|Injury axillary artery +C0160745|T037|PT|903.01|ICD9CM|Injury to axillary artery|Injury to axillary artery +C0160746|T037|AB|903.02|ICD9CM|Injury axillary vein|Injury axillary vein +C0160746|T037|PT|903.02|ICD9CM|Injury to axillary vein|Injury to axillary vein +C0434195|T037|AB|903.1|ICD9CM|Injury brachial vessels|Injury brachial vessels +C0434195|T037|PT|903.1|ICD9CM|Injury to brachial blood vessels|Injury to brachial blood vessels +C0160748|T037|AB|903.2|ICD9CM|Injury radial vessels|Injury radial vessels +C0160748|T037|PT|903.2|ICD9CM|Injury to radial blood vessels|Injury to radial blood vessels +C0160749|T037|PT|903.3|ICD9CM|Injury to ulnar blood vessels|Injury to ulnar blood vessels +C0160749|T037|AB|903.3|ICD9CM|Injury ulnar vessels|Injury ulnar vessels +C0160750|T037|AB|903.4|ICD9CM|Injury palmar artery|Injury palmar artery +C0160750|T037|PT|903.4|ICD9CM|Injury to palmar artery|Injury to palmar artery +C0160751|T037|AB|903.5|ICD9CM|Injury finger vessels|Injury finger vessels +C0160751|T037|PT|903.5|ICD9CM|Injury to digital blood vessels|Injury to digital blood vessels +C0160752|T037|AB|903.8|ICD9CM|Injury arm vessels NEC|Injury arm vessels NEC +C0160752|T037|PT|903.8|ICD9CM|Injury to other specified blood vessels of upper extremity|Injury to other specified blood vessels of upper extremity +C0160742|T037|AB|903.9|ICD9CM|Injury arm vessel NOS|Injury arm vessel NOS +C0160742|T037|PT|903.9|ICD9CM|Injury to unspecified blood vessel of upper extremity|Injury to unspecified blood vessel of upper extremity +C0160754|T037|HT|904|ICD9CM|Injury to blood vessels of lower extremity and unspecified sites|Injury to blood vessels of lower extremity and unspecified sites +C0160755|T037|AB|904.0|ICD9CM|Inj common femoral arter|Inj common femoral arter +C0160755|T037|PT|904.0|ICD9CM|Injury to common femoral artery|Injury to common femoral artery +C0160756|T037|AB|904.1|ICD9CM|Inj superfic femoral art|Inj superfic femoral art +C0160756|T037|PT|904.1|ICD9CM|Injury to superficial femoral artery|Injury to superficial femoral artery +C0160757|T037|AB|904.2|ICD9CM|Injury femoral vein|Injury femoral vein +C0160757|T037|PT|904.2|ICD9CM|Injury to femoral veins|Injury to femoral veins +C0160758|T037|AB|904.3|ICD9CM|Injury saphenous vein|Injury saphenous vein +C0160758|T037|PT|904.3|ICD9CM|Injury to saphenous veins|Injury to saphenous veins +C0273480|T037|HT|904.4|ICD9CM|Injury to popliteal blood vessels|Injury to popliteal blood vessels +C0273480|T037|AB|904.40|ICD9CM|Inj popliteal vessel NOS|Inj popliteal vessel NOS +C0273480|T037|PT|904.40|ICD9CM|Injury to popliteal vessel(s), unspecified|Injury to popliteal vessel(s), unspecified +C0160761|T037|AB|904.41|ICD9CM|Injury popliteal artery|Injury popliteal artery +C0160761|T037|PT|904.41|ICD9CM|Injury to popliteal artery|Injury to popliteal artery +C0160762|T037|AB|904.42|ICD9CM|Injury popliteal vein|Injury popliteal vein +C0160762|T037|PT|904.42|ICD9CM|Injury to popliteal vein|Injury to popliteal vein +C0160763|T037|HT|904.5|ICD9CM|Injury to tibial blood vessels|Injury to tibial blood vessels +C0160763|T037|AB|904.50|ICD9CM|Injury tibial vessel NOS|Injury tibial vessel NOS +C0160763|T037|PT|904.50|ICD9CM|Injury to tibial vessel(s), unspecified|Injury to tibial vessel(s), unspecified +C0160765|T037|AB|904.51|ICD9CM|Inj anter tibial artery|Inj anter tibial artery +C0160765|T037|PT|904.51|ICD9CM|Injury to anterior tibial artery|Injury to anterior tibial artery +C0160766|T037|AB|904.52|ICD9CM|Inj anterior tibial vein|Inj anterior tibial vein +C0160766|T037|PT|904.52|ICD9CM|Injury to anterior tibial vein|Injury to anterior tibial vein +C0160767|T037|AB|904.53|ICD9CM|Inj post tibial artery|Inj post tibial artery +C0160767|T037|PT|904.53|ICD9CM|Injury to posterior tibial artery|Injury to posterior tibial artery +C0160768|T037|AB|904.54|ICD9CM|Inj post tibial vein|Inj post tibial vein +C0160768|T037|PT|904.54|ICD9CM|Injury to posterior tibial vein|Injury to posterior tibial vein +C0160769|T037|AB|904.6|ICD9CM|Inj deep plantar vessel|Inj deep plantar vessel +C0160769|T037|PT|904.6|ICD9CM|Injury to deep plantar blood vessels|Injury to deep plantar blood vessels +C0160770|T037|AB|904.7|ICD9CM|Injury leg vessels NEC|Injury leg vessels NEC +C0160770|T037|PT|904.7|ICD9CM|Injury to other specified blood vessels of lower extremity|Injury to other specified blood vessels of lower extremity +C0273478|T037|AB|904.8|ICD9CM|Injury leg vessel NOS|Injury leg vessel NOS +C0273478|T037|PT|904.8|ICD9CM|Injury to unspecified blood vessel of lower extremity|Injury to unspecified blood vessel of lower extremity +C0178324|T037|AB|904.9|ICD9CM|Blood vessel injury NOS|Blood vessel injury NOS +C0178324|T037|PT|904.9|ICD9CM|Injury to blood vessels of unspecified site|Injury to blood vessels of unspecified site +C0160773|T046|HT|905|ICD9CM|Late effects of musculoskeletal and connective tissue injuries|Late effects of musculoskeletal and connective tissue injuries +C0178325|T037|HT|905-909.99|ICD9CM|LATE EFFECTS OF INJURIES, POISONINGS, TOXIC EFFECTS, AND OTHER EXTERNAL CAUSES|LATE EFFECTS OF INJURIES, POISONINGS, TOXIC EFFECTS, AND OTHER EXTERNAL CAUSES +C0160774|T046|AB|905.0|ICD9CM|Late effec skull/face fx|Late effec skull/face fx +C0160774|T046|PT|905.0|ICD9CM|Late effect of fracture of skull and face bones|Late effect of fracture of skull and face bones +C1331611|T046|AB|905.1|ICD9CM|Late eff spine/trunk fx|Late eff spine/trunk fx +C1331611|T046|PT|905.1|ICD9CM|Late effect of fracture of spine and trunk without mention of spinal cord lesion|Late effect of fracture of spine and trunk without mention of spinal cord lesion +C0436099|T046|AB|905.2|ICD9CM|Late effect arm fx|Late effect arm fx +C0436099|T046|PT|905.2|ICD9CM|Late effect of fracture of upper extremities|Late effect of fracture of upper extremities +C0160777|T046|AB|905.3|ICD9CM|Late eff femoral neck fx|Late eff femoral neck fx +C0160777|T046|PT|905.3|ICD9CM|Late effect of fracture of neck of femur|Late effect of fracture of neck of femur +C0160778|T046|AB|905.4|ICD9CM|Late effect leg fx|Late effect leg fx +C0160778|T046|PT|905.4|ICD9CM|Late effect of fracture of lower extremities|Late effect of fracture of lower extremities +C0160779|T046|AB|905.5|ICD9CM|Late effect fracture NEC|Late effect fracture NEC +C0160779|T046|PT|905.5|ICD9CM|Late effect of fracture of multiple and unspecified bones|Late effect of fracture of multiple and unspecified bones +C0160780|T046|AB|905.6|ICD9CM|Late effect dislocation|Late effect dislocation +C0160780|T046|PT|905.6|ICD9CM|Late effect of dislocation|Late effect of dislocation +C0160781|T037|AB|905.7|ICD9CM|Late effec sprain/strain|Late effec sprain/strain +C0160781|T037|PT|905.7|ICD9CM|Late effect of sprain and strain without mention of tendon injury|Late effect of sprain and strain without mention of tendon injury +C0160782|T046|AB|905.8|ICD9CM|Late effec tendon injury|Late effec tendon injury +C0160782|T046|PT|905.8|ICD9CM|Late effect of tendon injury|Late effect of tendon injury +C0160783|T046|AB|905.9|ICD9CM|Late eff traumat amputat|Late eff traumat amputat +C0160783|T046|PT|905.9|ICD9CM|Late effect of traumatic amputation|Late effect of traumatic amputation +C0160784|T046|HT|906|ICD9CM|Late effects of injuries to skin and subcutaneous tissues|Late effects of injuries to skin and subcutaneous tissues +C0160785|T046|PT|906.0|ICD9CM|Late effect of open wound of head, neck, and trunk|Late effect of open wound of head, neck, and trunk +C0160785|T046|AB|906.0|ICD9CM|Lt eff opn wnd head/trnk|Lt eff opn wnd head/trnk +C0160786|T037|AB|906.1|ICD9CM|Late eff open wnd extrem|Late eff open wnd extrem +C0160786|T037|PT|906.1|ICD9CM|Late effect of open wound of extremities without mention of tendon injury|Late effect of open wound of extremities without mention of tendon injury +C0160787|T046|AB|906.2|ICD9CM|Late eff superficial inj|Late eff superficial inj +C0160787|T046|PT|906.2|ICD9CM|Late effect of superficial injury|Late effect of superficial injury +C0160788|T046|AB|906.3|ICD9CM|Late effect of contusion|Late effect of contusion +C0160788|T046|PT|906.3|ICD9CM|Late effect of contusion|Late effect of contusion +C0274276|T046|AB|906.4|ICD9CM|Late effect of crushing|Late effect of crushing +C0274276|T046|PT|906.4|ICD9CM|Late effect of crushing|Late effect of crushing +C0160790|T046|AB|906.5|ICD9CM|Late eff head/neck burn|Late eff head/neck burn +C0160790|T046|PT|906.5|ICD9CM|Late effect of burn of eye, face, head, and neck|Late effect of burn of eye, face, head, and neck +C0160791|T046|AB|906.6|ICD9CM|Late eff wrist/hand burn|Late eff wrist/hand burn +C0160791|T046|PT|906.6|ICD9CM|Late effect of burn of wrist and hand|Late effect of burn of wrist and hand +C0160792|T046|AB|906.7|ICD9CM|Late eff burn extrem NEC|Late eff burn extrem NEC +C0160792|T046|PT|906.7|ICD9CM|Late effect of burn of other extremities|Late effect of burn of other extremities +C0160793|T037|AB|906.8|ICD9CM|Late effect of burns NEC|Late effect of burns NEC +C0160793|T037|PT|906.8|ICD9CM|Late effect of burns of other specified sites|Late effect of burns of other specified sites +C0160794|T046|AB|906.9|ICD9CM|Late effect of burn NOS|Late effect of burn NOS +C0160794|T046|PT|906.9|ICD9CM|Late effect of burn of unspecified site|Late effect of burn of unspecified site +C0160795|T046|HT|907|ICD9CM|Late effects of injuries to the nervous system|Late effects of injuries to the nervous system +C0274278|T037|PT|907.0|ICD9CM|Late effect of intracranial injury without mention of skull fracture|Late effect of intracranial injury without mention of skull fracture +C0274278|T037|AB|907.0|ICD9CM|Lt eff intracranial inj|Lt eff intracranial inj +C0160796|T046|AB|907.1|ICD9CM|Late eff cran nerve inj|Late eff cran nerve inj +C0160796|T046|PT|907.1|ICD9CM|Late effect of injury to cranial nerve|Late effect of injury to cranial nerve +C0160797|T046|AB|907.2|ICD9CM|Late eff spinal cord inj|Late eff spinal cord inj +C0160797|T046|PT|907.2|ICD9CM|Late effect of spinal cord injury|Late effect of spinal cord injury +C0160798|T047|PT|907.3|ICD9CM|Late effect of injury to nerve root(s), spinal plexus(es), and other nerves of trunk|Late effect of injury to nerve root(s), spinal plexus(es), and other nerves of trunk +C0160798|T047|AB|907.3|ICD9CM|Lt eff nerv inj trnk NEC|Lt eff nerv inj trnk NEC +C0160799|T046|PT|907.4|ICD9CM|Late effect of injury to peripheral nerve of shoulder girdle and upper limb|Late effect of injury to peripheral nerve of shoulder girdle and upper limb +C0160799|T046|AB|907.4|ICD9CM|Lt eff nerv inj shld/arm|Lt eff nerv inj shld/arm +C0160800|T046|PT|907.5|ICD9CM|Late effect of injury to peripheral nerve of pelvic girdle and lower limb|Late effect of injury to peripheral nerve of pelvic girdle and lower limb +C0160800|T046|AB|907.5|ICD9CM|Lt eff nerv inj pelv/leg|Lt eff nerv inj pelv/leg +C0160801|T037|AB|907.9|ICD9CM|Late eff nerve inj NEC|Late eff nerve inj NEC +C0160801|T037|PT|907.9|ICD9CM|Late effect of injury to other and unspecified nerve|Late effect of injury to other and unspecified nerve +C0160802|T046|HT|908|ICD9CM|Late effects of other and unspecified injuries|Late effects of other and unspecified injuries +C0160803|T046|AB|908.0|ICD9CM|Late eff int injur chest|Late eff int injur chest +C0160803|T046|PT|908.0|ICD9CM|Late effect of internal injury to chest|Late effect of internal injury to chest +C0859827|T046|AB|908.1|ICD9CM|Late eff int inj abdomen|Late eff int inj abdomen +C0859827|T046|PT|908.1|ICD9CM|Late effect of internal injury to intra-abdominal organs|Late effect of internal injury to intra-abdominal organs +C0160805|T037|AB|908.2|ICD9CM|Late eff int injury NEC|Late eff int injury NEC +C0160805|T037|PT|908.2|ICD9CM|Late effect of internal injury to other internal organs|Late effect of internal injury to other internal organs +C0160806|T046|AB|908.3|ICD9CM|Late eff inj periph vess|Late eff inj periph vess +C0160806|T046|PT|908.3|ICD9CM|Late effect of injury to blood vessel of head, neck, and extremities|Late effect of injury to blood vessel of head, neck, and extremities +C0160807|T046|PT|908.4|ICD9CM|Late effect of injury to blood vessel of thorax, abdomen, and pelvis|Late effect of injury to blood vessel of thorax, abdomen, and pelvis +C0160807|T046|AB|908.4|ICD9CM|Lt eff inj thor/abd vess|Lt eff inj thor/abd vess +C0160808|T046|AB|908.5|ICD9CM|Late eff FB in orifice|Late eff FB in orifice +C0160808|T046|PT|908.5|ICD9CM|Late effect of foreign body in orifice|Late effect of foreign body in orifice +C0160809|T046|AB|908.6|ICD9CM|Late eff complic trauma|Late eff complic trauma +C0160809|T046|PT|908.6|ICD9CM|Late effect of certain complications of trauma|Late effect of certain complications of trauma +C1313863|T046|AB|908.9|ICD9CM|Late effect injury NOS|Late effect injury NOS +C1313863|T046|PT|908.9|ICD9CM|Late effect of unspecified injury|Late effect of unspecified injury +C0436115|T037|HT|909|ICD9CM|Late effects of other and unspecified external causes|Late effects of other and unspecified external causes +C0496180|T046|AB|909.0|ICD9CM|Late eff drug poisoning|Late eff drug poisoning +C0496180|T046|PT|909.0|ICD9CM|Late effect of poisoning due to drug, medicinal or biological substance|Late effect of poisoning due to drug, medicinal or biological substance +C0436114|T046|AB|909.1|ICD9CM|Late eff nonmed substanc|Late eff nonmed substanc +C0436114|T046|PT|909.1|ICD9CM|Late effect of toxic effects of nonmedical substances|Late effect of toxic effects of nonmedical substances +C0160814|T046|AB|909.2|ICD9CM|Late effect of radiation|Late effect of radiation +C0160814|T046|PT|909.2|ICD9CM|Late effect of radiation|Late effect of radiation +C3665468|T046|AB|909.3|ICD9CM|Late eff surg/med compl|Late eff surg/med compl +C3665468|T046|PT|909.3|ICD9CM|Late effect of complications of surgical and medical care|Late effect of complications of surgical and medical care +C0160816|T037|AB|909.4|ICD9CM|Late eff cert ext cause|Late eff cert ext cause +C0160816|T037|PT|909.4|ICD9CM|Late effect of certain other external causes|Late effect of certain other external causes +C0375668|T037|PT|909.5|ICD9CM|Late effect of adverse effect of drug, medicinal or biological substance|Late effect of adverse effect of drug, medicinal or biological substance +C0375668|T037|AB|909.5|ICD9CM|Lte efct advrs efct drug|Lte efct advrs efct drug +C2240395|T037|AB|909.9|ICD9CM|Late eff exter cause NEC|Late eff exter cause NEC +C2240395|T037|PT|909.9|ICD9CM|Late effect of other and unspecified external causes|Late effect of other and unspecified external causes +C0160818|T037|HT|910|ICD9CM|Superficial injury of face, neck, and scalp except eye|Superficial injury of face, neck, and scalp except eye +C0332671|T037|HT|910-919.99|ICD9CM|SUPERFICIAL INJURY|SUPERFICIAL INJURY +C0160819|T037|AB|910.0|ICD9CM|Abrasion head|Abrasion head +C0160819|T037|PT|910.0|ICD9CM|Abrasion or friction burn of face, neck, and scalp except eye, without mention of infection|Abrasion or friction burn of face, neck, and scalp except eye, without mention of infection +C0160820|T037|AB|910.1|ICD9CM|Abrasion head-infected|Abrasion head-infected +C0160820|T037|PT|910.1|ICD9CM|Abrasion or friction burn of face, neck, and scalp except eye, infected|Abrasion or friction burn of face, neck, and scalp except eye, infected +C0160821|T037|AB|910.2|ICD9CM|Blister head|Blister head +C0160821|T037|PT|910.2|ICD9CM|Blister of face, neck, and scalp except eye, without mention of infection|Blister of face, neck, and scalp except eye, without mention of infection +C0160822|T046|AB|910.3|ICD9CM|Blister head-infected|Blister head-infected +C0160822|T046|PT|910.3|ICD9CM|Blister of face, neck, and scalp except eye, infected|Blister of face, neck, and scalp except eye, infected +C0160823|T037|AB|910.4|ICD9CM|Insect bite head|Insect bite head +C0160823|T037|PT|910.4|ICD9CM|Insect bite, nonvenomous of face, neck, and scalp except eye, without mention of infection|Insect bite, nonvenomous of face, neck, and scalp except eye, without mention of infection +C0160824|T037|AB|910.5|ICD9CM|Insect bite head-infect|Insect bite head-infect +C0160824|T037|PT|910.5|ICD9CM|Insect bite, nonvenomous of face, neck, and scalp except eye, infected|Insect bite, nonvenomous of face, neck, and scalp except eye, infected +C0160825|T037|AB|910.6|ICD9CM|Foreign body head|Foreign body head +C0160826|T037|AB|910.7|ICD9CM|Foreign body head-infect|Foreign body head-infect +C0160827|T037|PT|910.8|ICD9CM|Other and unspecified superficial injury of face, neck, and scalp, without mention of infection|Other and unspecified superficial injury of face, neck, and scalp, without mention of infection +C0160827|T037|AB|910.8|ICD9CM|Superfic inj head NEC|Superfic inj head NEC +C0160828|T037|PT|910.9|ICD9CM|Other and unspecified superficial injury of face, neck, and scalp, infected|Other and unspecified superficial injury of face, neck, and scalp, infected +C0160828|T037|AB|910.9|ICD9CM|Superf inj head NEC-inf|Superf inj head NEC-inf +C0160829|T037|HT|911|ICD9CM|Superficial injury of trunk|Superficial injury of trunk +C0160830|T037|PT|911.0|ICD9CM|Abrasion or friction burn of trunk, without mention of infection|Abrasion or friction burn of trunk, without mention of infection +C0160830|T037|AB|911.0|ICD9CM|Abrasion trunk|Abrasion trunk +C0160831|T037|PT|911.1|ICD9CM|Abrasion or friction burn of trunk, infected|Abrasion or friction burn of trunk, infected +C0160831|T037|AB|911.1|ICD9CM|Abrasion trunk-infected|Abrasion trunk-infected +C0160832|T037|PT|911.2|ICD9CM|Blister of trunk, without mention of infection|Blister of trunk, without mention of infection +C0160832|T037|AB|911.2|ICD9CM|Blister trunk|Blister trunk +C0160833|T037|PT|911.3|ICD9CM|Blister of trunk, infected|Blister of trunk, infected +C0160833|T037|AB|911.3|ICD9CM|Blister trunk-infected|Blister trunk-infected +C0273631|T037|AB|911.4|ICD9CM|Insect bite trunk|Insect bite trunk +C0273631|T037|PT|911.4|ICD9CM|Insect bite, nonvenomous of trunk, without mention of infection|Insect bite, nonvenomous of trunk, without mention of infection +C0273632|T037|AB|911.5|ICD9CM|Insect bite trunk-infec|Insect bite trunk-infec +C0273632|T037|PT|911.5|ICD9CM|Insect bite, nonvenomous of trunk, infected|Insect bite, nonvenomous of trunk, infected +C0160836|T037|AB|911.6|ICD9CM|Foreign body trunk|Foreign body trunk +C0160837|T037|AB|911.7|ICD9CM|Foreign body trunk-infec|Foreign body trunk-infec +C0160837|T037|PT|911.7|ICD9CM|Superficial foreign body (splinter) of trunk, without major open wound, infected|Superficial foreign body (splinter) of trunk, without major open wound, infected +C0840764|T037|PT|911.8|ICD9CM|Other and unspecified superficial injury of trunk, without mention of infection|Other and unspecified superficial injury of trunk, without mention of infection +C0840764|T037|AB|911.8|ICD9CM|Superfic inj trunk NEC|Superfic inj trunk NEC +C0160839|T037|PT|911.9|ICD9CM|Other and unspecified superficial injury of trunk, infected|Other and unspecified superficial injury of trunk, infected +C0160839|T037|AB|911.9|ICD9CM|Superf inj trnk NEC-inf|Superf inj trnk NEC-inf +C0160840|T037|HT|912|ICD9CM|Superficial injury of shoulder and upper arm|Superficial injury of shoulder and upper arm +C0160841|T037|PT|912.0|ICD9CM|Abrasion or friction burn of shoulder and upper arm, without mention of infection|Abrasion or friction burn of shoulder and upper arm, without mention of infection +C0160841|T037|AB|912.0|ICD9CM|Abrasion shoulder/arm|Abrasion shoulder/arm +C0160842|T037|PT|912.1|ICD9CM|Abrasion or friction burn of shoulder and upper arm, infected|Abrasion or friction burn of shoulder and upper arm, infected +C0160842|T037|AB|912.1|ICD9CM|Abrasion shldr/arm-infec|Abrasion shldr/arm-infec +C0160843|T037|PT|912.2|ICD9CM|Blister of shoulder and upper arm, without mention of infection|Blister of shoulder and upper arm, without mention of infection +C0160843|T037|AB|912.2|ICD9CM|Blister shoulder & arm|Blister shoulder & arm +C0160844|T037|PT|912.3|ICD9CM|Blister of shoulder and upper arm, infected|Blister of shoulder and upper arm, infected +C0160844|T037|AB|912.3|ICD9CM|Blister shoulder/arm-inf|Blister shoulder/arm-inf +C0160845|T037|AB|912.4|ICD9CM|Insect bite shoulder/arm|Insect bite shoulder/arm +C0160845|T037|PT|912.4|ICD9CM|Insect bite, nonvenomous of shoulder and upper arm, without mention of infection|Insect bite, nonvenomous of shoulder and upper arm, without mention of infection +C0160846|T037|AB|912.5|ICD9CM|Insect bite shld/arm-inf|Insect bite shld/arm-inf +C0160846|T037|PT|912.5|ICD9CM|Insect bite, nonvenomous of shoulder and upper arm, infected|Insect bite, nonvenomous of shoulder and upper arm, infected +C0160847|T037|AB|912.6|ICD9CM|Foreign body shouldr/arm|Foreign body shouldr/arm +C0160848|T037|AB|912.7|ICD9CM|FB shoulder/arm-infect|FB shoulder/arm-infect +C0160848|T037|PT|912.7|ICD9CM|Superficial foreign body (splinter) of shoulder and upper arm, without major open wound, infected|Superficial foreign body (splinter) of shoulder and upper arm, without major open wound, infected +C0478269|T037|PT|912.8|ICD9CM|Other and unspecified superficial injury of shoulder and upper arm, without mention of infection|Other and unspecified superficial injury of shoulder and upper arm, without mention of infection +C0478269|T037|AB|912.8|ICD9CM|Superf inj shldr/arm NEC|Superf inj shldr/arm NEC +C0160850|T037|PT|912.9|ICD9CM|Other and unspecified superficial injury of shoulder and upper arm, infected|Other and unspecified superficial injury of shoulder and upper arm, infected +C0160850|T037|AB|912.9|ICD9CM|Superf inj shldr NEC-inf|Superf inj shldr NEC-inf +C0160851|T037|HT|913|ICD9CM|Superficial injury of elbow, forearm, and wrist|Superficial injury of elbow, forearm, and wrist +C0160852|T037|AB|913.0|ICD9CM|Abrasion forearm|Abrasion forearm +C0160852|T037|PT|913.0|ICD9CM|Abrasion or friction burn of elbow, forearm, and wrist, without mention of infection|Abrasion or friction burn of elbow, forearm, and wrist, without mention of infection +C0160853|T037|AB|913.1|ICD9CM|Abrasion forearm-infect|Abrasion forearm-infect +C0160853|T037|PT|913.1|ICD9CM|Abrasion or friction burn of elbow, forearm, and wrist, infected|Abrasion or friction burn of elbow, forearm, and wrist, infected +C0160854|T037|AB|913.2|ICD9CM|Blister forearm|Blister forearm +C0160854|T037|PT|913.2|ICD9CM|Blister of elbow, forearm, and wrist, without mention of infection|Blister of elbow, forearm, and wrist, without mention of infection +C0160855|T037|AB|913.3|ICD9CM|Blister forearm-infected|Blister forearm-infected +C0160855|T037|PT|913.3|ICD9CM|Blister of elbow, forearm, and wrist, infected|Blister of elbow, forearm, and wrist, infected +C0160856|T037|AB|913.4|ICD9CM|Insect bite forearm|Insect bite forearm +C0160856|T037|PT|913.4|ICD9CM|Insect bite, nonvenomous of elbow, forearm, and wrist, without mention of infection|Insect bite, nonvenomous of elbow, forearm, and wrist, without mention of infection +C0160857|T037|AB|913.5|ICD9CM|Insect bite forearm-inf|Insect bite forearm-inf +C0160857|T037|PT|913.5|ICD9CM|Insect bite, nonvenomous, of elbow, forearm, and wrist, infected|Insect bite, nonvenomous, of elbow, forearm, and wrist, infected +C0160858|T037|AB|913.6|ICD9CM|Foreign body forearm|Foreign body forearm +C0160859|T037|AB|913.7|ICD9CM|Foreign body forearm-inf|Foreign body forearm-inf +C0160859|T037|PT|913.7|ICD9CM|Superficial foreign body (splinter) of elbow, forearm, and wrist, without major open wound, infected|Superficial foreign body (splinter) of elbow, forearm, and wrist, without major open wound, infected +C0160860|T037|PT|913.8|ICD9CM|Other and unspecified superficial injury of elbow, forearm, and wrist, without mention of infection|Other and unspecified superficial injury of elbow, forearm, and wrist, without mention of infection +C0160860|T037|AB|913.8|ICD9CM|Superf inj forearm NEC|Superf inj forearm NEC +C0160861|T037|PT|913.9|ICD9CM|Other and unspecified superficial injury of elbow, forearm, and wrist, infected|Other and unspecified superficial injury of elbow, forearm, and wrist, infected +C0160861|T037|AB|913.9|ICD9CM|Suprf inj forarm NEC-inf|Suprf inj forarm NEC-inf +C0432721|T037|HT|914|ICD9CM|Superficial injury of hand(s) except finger(s) alone|Superficial injury of hand(s) except finger(s) alone +C0160863|T037|AB|914.0|ICD9CM|Abrasion hand|Abrasion hand +C0160863|T037|PT|914.0|ICD9CM|Abrasion or friction burn of hand(s) except finger(s) alone, without mention of infection|Abrasion or friction burn of hand(s) except finger(s) alone, without mention of infection +C0160864|T037|AB|914.1|ICD9CM|Abrasion hand-infected|Abrasion hand-infected +C0160864|T037|PT|914.1|ICD9CM|Abrasion or friction burn of hand(s) except finger(s) alone, infected|Abrasion or friction burn of hand(s) except finger(s) alone, infected +C0160865|T037|AB|914.2|ICD9CM|Blister hand|Blister hand +C0160865|T037|PT|914.2|ICD9CM|Blister of hand(s) except finger(s) alone, without mention of infection|Blister of hand(s) except finger(s) alone, without mention of infection +C0160866|T037|AB|914.3|ICD9CM|Blister hand-infected|Blister hand-infected +C0160866|T037|PT|914.3|ICD9CM|Blister of hand(s) except finger(s) alone, infected|Blister of hand(s) except finger(s) alone, infected +C0160867|T037|AB|914.4|ICD9CM|Insect bite hand|Insect bite hand +C0160867|T037|PT|914.4|ICD9CM|Insect bite, nonvenomous, of hand(s) except finger(s) alone, without mention of infection|Insect bite, nonvenomous, of hand(s) except finger(s) alone, without mention of infection +C0160868|T037|AB|914.5|ICD9CM|Insect bite hand-infect|Insect bite hand-infect +C0160868|T037|PT|914.5|ICD9CM|Insect bite, nonvenomous, of hand(s) except finger(s) alone, infected|Insect bite, nonvenomous, of hand(s) except finger(s) alone, infected +C0160869|T037|AB|914.6|ICD9CM|Foreign body hand|Foreign body hand +C0160870|T037|AB|914.7|ICD9CM|Foreign body hand-infect|Foreign body hand-infect +C0160871|T037|AB|914.8|ICD9CM|Superficial inj hand NEC|Superficial inj hand NEC +C0160872|T037|PT|914.9|ICD9CM|Other and unspecified superficial injury of hand(s) except finger(s) alone, infected|Other and unspecified superficial injury of hand(s) except finger(s) alone, infected +C0160872|T037|AB|914.9|ICD9CM|Superf inj hand NEC-inf|Superf inj hand NEC-inf +C0558421|T037|HT|915|ICD9CM|Superficial injury of finger(s)|Superficial injury of finger(s) +C0273867|T037|AB|915.0|ICD9CM|Abrasion finger|Abrasion finger +C0273867|T037|PT|915.0|ICD9CM|Abrasion or friction burn of finger(s), without mention of infection|Abrasion or friction burn of finger(s), without mention of infection +C0160875|T037|AB|915.1|ICD9CM|Abrasion finger-infected|Abrasion finger-infected +C0160875|T037|PT|915.1|ICD9CM|Abrasion or friction burn of finger(s), infected|Abrasion or friction burn of finger(s), infected +C0160876|T037|AB|915.2|ICD9CM|Blister finger|Blister finger +C0160876|T037|PT|915.2|ICD9CM|Blister of finger(s), without mention of infection|Blister of finger(s), without mention of infection +C0160877|T037|AB|915.3|ICD9CM|Blister finger-infected|Blister finger-infected +C0160877|T037|PT|915.3|ICD9CM|Blister of finger(s), infected|Blister of finger(s), infected +C0273869|T037|AB|915.4|ICD9CM|Insect bite finger|Insect bite finger +C0273869|T037|PT|915.4|ICD9CM|Insect bite, nonvenomous, of finger(s), without mention of infection|Insect bite, nonvenomous, of finger(s), without mention of infection +C0160879|T037|AB|915.5|ICD9CM|Insect bite finger-infec|Insect bite finger-infec +C0160879|T037|PT|915.5|ICD9CM|Insect bite, nonvenomous of finger(s), infected|Insect bite, nonvenomous of finger(s), infected +C0160880|T037|AB|915.6|ICD9CM|Foreign body finger|Foreign body finger +C0160881|T037|AB|915.7|ICD9CM|Foreign body finger-inf|Foreign body finger-inf +C0160881|T037|PT|915.7|ICD9CM|Superficial foreign body (splinter) of finger(s), without major open wound, infected|Superficial foreign body (splinter) of finger(s), without major open wound, infected +C0160882|T037|PT|915.8|ICD9CM|Other and unspecified superficial injury of fingers without mention of infection|Other and unspecified superficial injury of fingers without mention of infection +C0160882|T037|AB|915.8|ICD9CM|Superfic inj finger-NEC|Superfic inj finger-NEC +C0160883|T037|PT|915.9|ICD9CM|Other and unspecified superficial injury of fingers, infected|Other and unspecified superficial injury of fingers, infected +C0160883|T037|AB|915.9|ICD9CM|Suprf inj finger NEC-inf|Suprf inj finger NEC-inf +C0160884|T037|HT|916|ICD9CM|Superficial injury of hip, thigh, leg, and ankle|Superficial injury of hip, thigh, leg, and ankle +C0160885|T037|AB|916.0|ICD9CM|Abrasion hip & leg|Abrasion hip & leg +C0160885|T037|PT|916.0|ICD9CM|Abrasion or friction burn of hip, thigh, leg, and ankle, without mention of infection|Abrasion or friction burn of hip, thigh, leg, and ankle, without mention of infection +C0160886|T037|AB|916.1|ICD9CM|Abrasion hip/leg-infect|Abrasion hip/leg-infect +C0160886|T037|PT|916.1|ICD9CM|Abrasion or friction burn of hip, thigh, leg, and ankle, infected|Abrasion or friction burn of hip, thigh, leg, and ankle, infected +C0160887|T037|AB|916.2|ICD9CM|Blister hip & leg|Blister hip & leg +C0160887|T037|PT|916.2|ICD9CM|Blister of hip, thigh, leg, and ankle, without mention of infection|Blister of hip, thigh, leg, and ankle, without mention of infection +C0160888|T037|AB|916.3|ICD9CM|Blister hip & leg-infect|Blister hip & leg-infect +C0160888|T037|PT|916.3|ICD9CM|Blister of hip, thigh, leg, and ankle, infected|Blister of hip, thigh, leg, and ankle, infected +C0160889|T037|AB|916.4|ICD9CM|Insect bite hip & leg|Insect bite hip & leg +C0160889|T037|PT|916.4|ICD9CM|Insect bite, nonvenomous, of hip, thigh, leg, and ankle, without mention of infection|Insect bite, nonvenomous, of hip, thigh, leg, and ankle, without mention of infection +C0160890|T037|AB|916.5|ICD9CM|Insect bite hip/leg-inf|Insect bite hip/leg-inf +C0160890|T037|PT|916.5|ICD9CM|Insect bite, nonvenomous of hip, thigh, leg, and ankle, infected|Insect bite, nonvenomous of hip, thigh, leg, and ankle, infected +C0160891|T037|AB|916.6|ICD9CM|Foreign body hip/leg|Foreign body hip/leg +C0160892|T037|AB|916.7|ICD9CM|Foreign bdy hip/leg-inf|Foreign bdy hip/leg-inf +C0160893|T037|PT|916.8|ICD9CM|Other and unspecified superficial injury of hip, thigh, leg, and ankle, without mention of infection|Other and unspecified superficial injury of hip, thigh, leg, and ankle, without mention of infection +C0160893|T037|AB|916.8|ICD9CM|Superfic inj hip/leg NEC|Superfic inj hip/leg NEC +C0160894|T037|PT|916.9|ICD9CM|Other and unspecified superficial injury of hip, thigh, leg, and ankle, infected|Other and unspecified superficial injury of hip, thigh, leg, and ankle, infected +C0160894|T037|AB|916.9|ICD9CM|Superf inj leg NEC-infec|Superf inj leg NEC-infec +C0160895|T037|HT|917|ICD9CM|Superficial injury of foot and toe(s)|Superficial injury of foot and toe(s) +C0432869|T037|AB|917.0|ICD9CM|Abrasion foot & toe|Abrasion foot & toe +C0432869|T037|PT|917.0|ICD9CM|Abrasion or friction burn of foot and toe(s), without mention of infection|Abrasion or friction burn of foot and toe(s), without mention of infection +C0432873|T037|AB|917.1|ICD9CM|Abrasion foot/toe-infec|Abrasion foot/toe-infec +C0432873|T037|PT|917.1|ICD9CM|Abrasion or friction burn of foot and toe(s), infected|Abrasion or friction burn of foot and toe(s), infected +C0432918|T037|AB|917.2|ICD9CM|Blister foot & toe|Blister foot & toe +C0432918|T037|PT|917.2|ICD9CM|Blister of foot and toe(s), without mention of infection|Blister of foot and toe(s), without mention of infection +C0432922|T037|AB|917.3|ICD9CM|Blister foot & toe-infec|Blister foot & toe-infec +C0432922|T037|PT|917.3|ICD9CM|Blister of foot and toe(s), infected|Blister of foot and toe(s), infected +C0433039|T037|AB|917.4|ICD9CM|Insect bite foot/toe|Insect bite foot/toe +C0433039|T037|PT|917.4|ICD9CM|Insect bite, nonvenomous, of foot and toe(s), without mention of infection|Insect bite, nonvenomous, of foot and toe(s), without mention of infection +C0433050|T037|AB|917.5|ICD9CM|Insect bite foot/toe-inf|Insect bite foot/toe-inf +C0433050|T037|PT|917.5|ICD9CM|Insect bite, nonvenomous, of foot and toe(s), infected|Insect bite, nonvenomous, of foot and toe(s), infected +C0160902|T037|AB|917.6|ICD9CM|Foreign body foot & toe|Foreign body foot & toe +C0160903|T037|AB|917.7|ICD9CM|Foreign bdy foot/toe-inf|Foreign bdy foot/toe-inf +C0160903|T037|PT|917.7|ICD9CM|Superficial foreign body (splinter) of foot and toe(s), without major open wound, infected|Superficial foreign body (splinter) of foot and toe(s), without major open wound, infected +C0160904|T037|PT|917.8|ICD9CM|Other and unspecified superficial injury of foot and toes, without mention of infection|Other and unspecified superficial injury of foot and toes, without mention of infection +C0160904|T037|AB|917.8|ICD9CM|Superf inj foot/toe NEC|Superf inj foot/toe NEC +C0160905|T037|PT|917.9|ICD9CM|Other and unspecified superficial injury of foot and toes, infected|Other and unspecified superficial injury of foot and toes, infected +C0160905|T037|AB|917.9|ICD9CM|Superf inj foot NEC-inf|Superf inj foot NEC-inf +C0160906|T037|HT|918|ICD9CM|Superficial injury of eye and adnexa|Superficial injury of eye and adnexa +C0160907|T037|AB|918.0|ICD9CM|Superfic inj periocular|Superfic inj periocular +C0160907|T037|PT|918.0|ICD9CM|Superficial injury of eyelids and periocular area|Superficial injury of eyelids and periocular area +C0038824|T037|AB|918.1|ICD9CM|Superficial inj cornea|Superficial inj cornea +C0038824|T037|PT|918.1|ICD9CM|Superficial injury of cornea|Superficial injury of cornea +C0160908|T037|AB|918.2|ICD9CM|Superfic inj conjunctiva|Superfic inj conjunctiva +C0160908|T037|PT|918.2|ICD9CM|Superficial injury of conjunctiva|Superficial injury of conjunctiva +C0160909|T037|PT|918.9|ICD9CM|Other and unspecified superficial injuries of eye|Other and unspecified superficial injuries of eye +C0160909|T037|AB|918.9|ICD9CM|Superficial inj eye NEC|Superficial inj eye NEC +C0160910|T037|HT|919|ICD9CM|Superficial injury of other, multiple, and unspecified sites|Superficial injury of other, multiple, and unspecified sites +C0000827|T037|AB|919.0|ICD9CM|Abrasion NEC|Abrasion NEC +C0000827|T037|PT|919.0|ICD9CM|Abrasion or friction burn of other, multiple, and unspecified sites, without mention of infection|Abrasion or friction burn of other, multiple, and unspecified sites, without mention of infection +C0160911|T037|AB|919.1|ICD9CM|Abrasion NEC-infected|Abrasion NEC-infected +C0160911|T037|PT|919.1|ICD9CM|Abrasion or friction burn of other, multiple, and unspecified sites, infected|Abrasion or friction burn of other, multiple, and unspecified sites, infected +C0005761|T037|AB|919.2|ICD9CM|Blister NEC|Blister NEC +C0005761|T037|PT|919.2|ICD9CM|Blister of other, multiple, and unspecified sites, without mention of infection|Blister of other, multiple, and unspecified sites, without mention of infection +C0160912|T037|AB|919.3|ICD9CM|Blister NEC-infected|Blister NEC-infected +C0160912|T037|PT|919.3|ICD9CM|Blister of other, multiple, and unspecified sites, infected|Blister of other, multiple, and unspecified sites, infected +C0021567|T037|AB|919.4|ICD9CM|Insect bite NEC|Insect bite NEC +C0021567|T037|PT|919.4|ICD9CM|Insect bite, nonvenomous, of other, multiple, and unspecified sites, without mention of infection|Insect bite, nonvenomous, of other, multiple, and unspecified sites, without mention of infection +C0160913|T037|AB|919.5|ICD9CM|Insect bite NEC-infected|Insect bite NEC-infected +C0160913|T037|PT|919.5|ICD9CM|Insect bite, nonvenomous, of other, multiple, and unspecified sites, infected|Insect bite, nonvenomous, of other, multiple, and unspecified sites, infected +C0160914|T037|AB|919.6|ICD9CM|Superfic foreign bdy NEC|Superfic foreign bdy NEC +C0160915|T037|AB|919.7|ICD9CM|Superficial FB NEC-infec|Superficial FB NEC-infec +C0160916|T037|AB|919.8|ICD9CM|Superficial injury NEC|Superficial injury NEC +C0160917|T037|PT|919.9|ICD9CM|Other and unspecified superficial injury of other, multiple, and unspecified sites, infected|Other and unspecified superficial injury of other, multiple, and unspecified sites, infected +C0160917|T037|AB|919.9|ICD9CM|Superfic inj NEC-infect|Superfic inj NEC-infect +C0160918|T037|AB|920|ICD9CM|Contusion face/scalp/nck|Contusion face/scalp/nck +C0160918|T037|PT|920|ICD9CM|Contusion of face, scalp, and neck except eye(s)|Contusion of face, scalp, and neck except eye(s) +C0178327|T037|HT|920-924.99|ICD9CM|CONTUSION WITH INTACT SKIN SURFACE|CONTUSION WITH INTACT SKIN SURFACE +C0160919|T037|HT|921|ICD9CM|Contusion of eye and adnexa|Contusion of eye and adnexa +C1442861|T033|AB|921.0|ICD9CM|Black eye NOS|Black eye NOS +C1442861|T033|PT|921.0|ICD9CM|Black eye, not otherwise specified|Black eye, not otherwise specified +C0160920|T037|PT|921.1|ICD9CM|Contusion of eyelids and periocular area|Contusion of eyelids and periocular area +C0160920|T037|AB|921.1|ICD9CM|Contusion periocular|Contusion periocular +C0160921|T037|PT|921.2|ICD9CM|Contusion of orbital tissues|Contusion of orbital tissues +C0160921|T037|AB|921.2|ICD9CM|Contusion orbital tissue|Contusion orbital tissue +C2939443|T037|AB|921.3|ICD9CM|Contusion of eyeball|Contusion of eyeball +C2939443|T037|PT|921.3|ICD9CM|Contusion of eyeball|Contusion of eyeball +C0438624|T037|AB|921.9|ICD9CM|Contusion of eye NOS|Contusion of eye NOS +C0438624|T037|PT|921.9|ICD9CM|Unspecified contusion of eye|Unspecified contusion of eye +C0160923|T037|HT|922|ICD9CM|Contusion of trunk|Contusion of trunk +C0160924|T037|AB|922.0|ICD9CM|Contusion of breast|Contusion of breast +C0160924|T037|PT|922.0|ICD9CM|Contusion of breast|Contusion of breast +C0160925|T037|AB|922.1|ICD9CM|Contusion of chest wall|Contusion of chest wall +C0160925|T037|PT|922.1|ICD9CM|Contusion of chest wall|Contusion of chest wall +C0160926|T037|AB|922.2|ICD9CM|Contusion abdominal wall|Contusion abdominal wall +C0160926|T037|PT|922.2|ICD9CM|Contusion of abdominal wall|Contusion of abdominal wall +C0160927|T037|HT|922.3|ICD9CM|Contusion of back|Contusion of back +C0160927|T037|AB|922.31|ICD9CM|Back contusion|Back contusion +C0160927|T037|PT|922.31|ICD9CM|Contusion of back|Contusion of back +C0274220|T037|AB|922.32|ICD9CM|Buttock contusion|Buttock contusion +C0274220|T037|PT|922.32|ICD9CM|Contusion of buttock|Contusion of buttock +C0274221|T037|PT|922.33|ICD9CM|Contusion of interscapular region|Contusion of interscapular region +C0274221|T037|AB|922.33|ICD9CM|Interscplr reg contusion|Interscplr reg contusion +C0160928|T037|AB|922.4|ICD9CM|Contusion genital organs|Contusion genital organs +C0160928|T037|PT|922.4|ICD9CM|Contusion of genital organs|Contusion of genital organs +C0160929|T037|PT|922.8|ICD9CM|Contusion of multiple sites of trunk|Contusion of multiple sites of trunk +C0160929|T037|AB|922.8|ICD9CM|Multiple contusion trunk|Multiple contusion trunk +C0160923|T037|PT|922.9|ICD9CM|Contusion of unspecified part of trunk|Contusion of unspecified part of trunk +C0160923|T037|AB|922.9|ICD9CM|Contusion trunk NOS|Contusion trunk NOS +C0160931|T037|HT|923|ICD9CM|Contusion of upper limb|Contusion of upper limb +C0160932|T037|HT|923.0|ICD9CM|Contusion of shoulder and upper arm|Contusion of shoulder and upper arm +C0160933|T037|PT|923.00|ICD9CM|Contusion of shoulder region|Contusion of shoulder region +C0160933|T037|AB|923.00|ICD9CM|Contusion shoulder reg|Contusion shoulder reg +C0160934|T037|PT|923.01|ICD9CM|Contusion of scapular region|Contusion of scapular region +C0160934|T037|AB|923.01|ICD9CM|Contusion scapul region|Contusion scapul region +C0160935|T037|AB|923.02|ICD9CM|Contusion axillary reg|Contusion axillary reg +C0160935|T037|PT|923.02|ICD9CM|Contusion of axillary region|Contusion of axillary region +C0160936|T037|AB|923.03|ICD9CM|Contusion of upper arm|Contusion of upper arm +C0160936|T037|PT|923.03|ICD9CM|Contusion of upper arm|Contusion of upper arm +C0160937|T037|PT|923.09|ICD9CM|Contusion of multiple sites of shoulder and upper arm|Contusion of multiple sites of shoulder and upper arm +C0160937|T037|AB|923.09|ICD9CM|Contusion shoulder & arm|Contusion shoulder & arm +C0160938|T037|HT|923.1|ICD9CM|Contusion of elbow and forearm|Contusion of elbow and forearm +C0432762|T037|AB|923.10|ICD9CM|Contusion of forearm|Contusion of forearm +C0432762|T037|PT|923.10|ICD9CM|Contusion of forearm|Contusion of forearm +C0432763|T037|AB|923.11|ICD9CM|Contusion of elbow|Contusion of elbow +C0432763|T037|PT|923.11|ICD9CM|Contusion of elbow|Contusion of elbow +C0160941|T037|HT|923.2|ICD9CM|Contusion of wrist and hand(s), except finger(s) alone|Contusion of wrist and hand(s), except finger(s) alone +C0432769|T037|AB|923.20|ICD9CM|Contusion of hand(s)|Contusion of hand(s) +C0432769|T037|PT|923.20|ICD9CM|Contusion of hand(s)|Contusion of hand(s) +C0160943|T037|AB|923.21|ICD9CM|Contusion of wrist|Contusion of wrist +C0160943|T037|PT|923.21|ICD9CM|Contusion of wrist|Contusion of wrist +C0432773|T037|AB|923.3|ICD9CM|Contusion of finger|Contusion of finger +C0432773|T037|PT|923.3|ICD9CM|Contusion of finger|Contusion of finger +C0160945|T037|PT|923.8|ICD9CM|Contusion of multiple sites of upper limb|Contusion of multiple sites of upper limb +C0160945|T037|AB|923.8|ICD9CM|Multiple contusion arm|Multiple contusion arm +C0160931|T037|PT|923.9|ICD9CM|Contusion of unspecified part of upper limb|Contusion of unspecified part of upper limb +C0160931|T037|AB|923.9|ICD9CM|Contusion upper limb NOS|Contusion upper limb NOS +C0160947|T037|HT|924|ICD9CM|Contusion of lower limb and of other and unspecified sites|Contusion of lower limb and of other and unspecified sites +C0160948|T037|HT|924.0|ICD9CM|Contusion of hip and thigh|Contusion of hip and thigh +C0160949|T037|AB|924.00|ICD9CM|Contusion of thigh|Contusion of thigh +C0160949|T037|PT|924.00|ICD9CM|Contusion of thigh|Contusion of thigh +C0160950|T037|AB|924.01|ICD9CM|Contusion of hip|Contusion of hip +C0160950|T037|PT|924.01|ICD9CM|Contusion of hip|Contusion of hip +C0160951|T037|HT|924.1|ICD9CM|Contusion of knee and lower leg|Contusion of knee and lower leg +C0160952|T037|AB|924.10|ICD9CM|Contusion of lower leg|Contusion of lower leg +C0160952|T037|PT|924.10|ICD9CM|Contusion of lower leg|Contusion of lower leg +C0160953|T037|AB|924.11|ICD9CM|Contusion of knee|Contusion of knee +C0160953|T037|PT|924.11|ICD9CM|Contusion of knee|Contusion of knee +C0274237|T037|HT|924.2|ICD9CM|Contusion of ankle and foot, excluding toe(s)|Contusion of ankle and foot, excluding toe(s) +C0160955|T033|AB|924.20|ICD9CM|Contusion of foot|Contusion of foot +C0160955|T033|PT|924.20|ICD9CM|Contusion of foot|Contusion of foot +C0160956|T037|AB|924.21|ICD9CM|Contusion of ankle|Contusion of ankle +C0160956|T037|PT|924.21|ICD9CM|Contusion of ankle|Contusion of ankle +C0160957|T037|AB|924.3|ICD9CM|Contusion of toe|Contusion of toe +C0160957|T037|PT|924.3|ICD9CM|Contusion of toe|Contusion of toe +C0160958|T037|PT|924.4|ICD9CM|Contusion of multiple sites of lower limb|Contusion of multiple sites of lower limb +C0160958|T037|AB|924.4|ICD9CM|Multiple contusion leg|Multiple contusion leg +C0274236|T037|AB|924.5|ICD9CM|Contusion leg NOS|Contusion leg NOS +C0274236|T037|PT|924.5|ICD9CM|Contusion of unspecified part of lower limb|Contusion of unspecified part of lower limb +C0160960|T037|PT|924.8|ICD9CM|Contusion of multiple sites, not elsewhere classified|Contusion of multiple sites, not elsewhere classified +C0160960|T037|AB|924.8|ICD9CM|Multiple contusions NEC|Multiple contusions NEC +C0009938|T037|AB|924.9|ICD9CM|Contusion NOS|Contusion NOS +C0009938|T037|PT|924.9|ICD9CM|Contusion of unspecified site|Contusion of unspecified site +C0160961|T037|HT|925|ICD9CM|Crushing injury of face, scalp, and neck|Crushing injury of face, scalp, and neck +C0332679|T037|HT|925-929.99|ICD9CM|CRUSHING INJURY|CRUSHING INJURY +C0375669|T037|AB|925.1|ICD9CM|Crush inj face scalp|Crush inj face scalp +C0375669|T037|PT|925.1|ICD9CM|Crushing injury of face and scalp|Crushing injury of face and scalp +C0273433|T037|AB|925.2|ICD9CM|Crush inj neck|Crush inj neck +C0273433|T037|PT|925.2|ICD9CM|Crushing injury of neck|Crushing injury of neck +C0160962|T037|HT|926|ICD9CM|Crushing injury of trunk|Crushing injury of trunk +C0160963|T037|AB|926.0|ICD9CM|Crush inj ext genitalia|Crush inj ext genitalia +C0160963|T037|PT|926.0|ICD9CM|Crushing injury of external genitalia|Crushing injury of external genitalia +C0160964|T037|HT|926.1|ICD9CM|Crushing injury of other specified sites of trunk|Crushing injury of other specified sites of trunk +C0160965|T037|AB|926.11|ICD9CM|Crushing injury back|Crushing injury back +C0160965|T037|PT|926.11|ICD9CM|Crushing injury of back|Crushing injury of back +C0160966|T037|AB|926.12|ICD9CM|Crushing injury buttock|Crushing injury buttock +C0160966|T037|PT|926.12|ICD9CM|Crushing injury of buttock|Crushing injury of buttock +C0160964|T037|AB|926.19|ICD9CM|Crushing inj trunk NEC|Crushing inj trunk NEC +C0160964|T037|PT|926.19|ICD9CM|Crushing injury of other specified sites of trunk|Crushing injury of other specified sites of trunk +C0160967|T037|PT|926.8|ICD9CM|Crushing injury of multiple sites of trunk|Crushing injury of multiple sites of trunk +C0160967|T037|AB|926.8|ICD9CM|Mult crushing inj trunk|Mult crushing inj trunk +C0160962|T037|AB|926.9|ICD9CM|Crushing inj trunk NOS|Crushing inj trunk NOS +C0160962|T037|PT|926.9|ICD9CM|Crushing injury of unspecified site of trunk|Crushing injury of unspecified site of trunk +C0160969|T037|HT|927|ICD9CM|Crushing injury of upper limb|Crushing injury of upper limb +C0160970|T037|HT|927.0|ICD9CM|Crushing injury of shoulder and upper arm|Crushing injury of shoulder and upper arm +C0160971|T037|AB|927.00|ICD9CM|Crush inj shoulder reg|Crush inj shoulder reg +C0160971|T037|PT|927.00|ICD9CM|Crushing injury of shoulder region|Crushing injury of shoulder region +C0160972|T037|AB|927.01|ICD9CM|Crush inj scapul region|Crush inj scapul region +C0160972|T037|PT|927.01|ICD9CM|Crushing injury of scapular region|Crushing injury of scapular region +C0160973|T037|AB|927.02|ICD9CM|Crush inj axillary reg|Crush inj axillary reg +C0160973|T037|PT|927.02|ICD9CM|Crushing injury of axillary region|Crushing injury of axillary region +C0160974|T037|AB|927.03|ICD9CM|Crushing inj upper arm|Crushing inj upper arm +C0160974|T037|PT|927.03|ICD9CM|Crushing injury of upper arm|Crushing injury of upper arm +C0160975|T037|AB|927.09|ICD9CM|Crush inj shoulder & arm|Crush inj shoulder & arm +C0160975|T037|PT|927.09|ICD9CM|Crushing injury of multiple sites of upper arm|Crushing injury of multiple sites of upper arm +C0160976|T037|HT|927.1|ICD9CM|Crushing injury of elbow and forearm|Crushing injury of elbow and forearm +C0160977|T037|AB|927.10|ICD9CM|Crushing injury forearm|Crushing injury forearm +C0160977|T037|PT|927.10|ICD9CM|Crushing injury of forearm|Crushing injury of forearm +C0160978|T037|AB|927.11|ICD9CM|Crushing injury elbow|Crushing injury elbow +C0160978|T037|PT|927.11|ICD9CM|Crushing injury of elbow|Crushing injury of elbow +C0160979|T037|HT|927.2|ICD9CM|Crushing injury of wrist and hand(s), except finger(s) alone|Crushing injury of wrist and hand(s), except finger(s) alone +C0273444|T037|AB|927.20|ICD9CM|Crushing injury of hand|Crushing injury of hand +C0273444|T037|PT|927.20|ICD9CM|Crushing injury of hand(s)|Crushing injury of hand(s) +C0160981|T037|AB|927.21|ICD9CM|Crushing injury of wrist|Crushing injury of wrist +C0160981|T037|PT|927.21|ICD9CM|Crushing injury of wrist|Crushing injury of wrist +C0273445|T037|AB|927.3|ICD9CM|Crushing injury finger|Crushing injury finger +C0273445|T037|PT|927.3|ICD9CM|Crushing injury of finger(s)|Crushing injury of finger(s) +C0160983|T037|PT|927.8|ICD9CM|Crushing injury of multiple sites of upper limb|Crushing injury of multiple sites of upper limb +C0160983|T037|AB|927.8|ICD9CM|Mult crushing injury arm|Mult crushing injury arm +C0160969|T037|AB|927.9|ICD9CM|Crushing injury arm NOS|Crushing injury arm NOS +C0160969|T037|PT|927.9|ICD9CM|Crushing injury of unspecified site of upper limb|Crushing injury of unspecified site of upper limb +C0160985|T037|HT|928|ICD9CM|Crushing injury of lower limb|Crushing injury of lower limb +C0160986|T037|HT|928.0|ICD9CM|Crushing injury of hip and thigh|Crushing injury of hip and thigh +C0160987|T037|PT|928.00|ICD9CM|Crushing injury of thigh|Crushing injury of thigh +C0160987|T037|AB|928.00|ICD9CM|Crushing injury thigh|Crushing injury thigh +C0160988|T037|AB|928.01|ICD9CM|Crushing injury hip|Crushing injury hip +C0160988|T037|PT|928.01|ICD9CM|Crushing injury of hip|Crushing injury of hip +C0160989|T037|HT|928.1|ICD9CM|Crushing injury of knee and lower leg|Crushing injury of knee and lower leg +C0160990|T037|AB|928.10|ICD9CM|Crushing inj lower leg|Crushing inj lower leg +C0160990|T037|PT|928.10|ICD9CM|Crushing injury of lower leg|Crushing injury of lower leg +C0160991|T037|AB|928.11|ICD9CM|Crushing injury knee|Crushing injury knee +C0160991|T037|PT|928.11|ICD9CM|Crushing injury of knee|Crushing injury of knee +C0160992|T037|HT|928.2|ICD9CM|Crushing injury of ankle and foot, excluding toe(s) alone|Crushing injury of ankle and foot, excluding toe(s) alone +C0160993|T037|AB|928.20|ICD9CM|Crushing injury foot|Crushing injury foot +C0160993|T037|PT|928.20|ICD9CM|Crushing injury of foot|Crushing injury of foot +C0160994|T037|AB|928.21|ICD9CM|Crushing injury ankle|Crushing injury ankle +C0160994|T037|PT|928.21|ICD9CM|Crushing injury of ankle|Crushing injury of ankle +C0273448|T037|PT|928.3|ICD9CM|Crushing injury of toe(s)|Crushing injury of toe(s) +C0273448|T037|AB|928.3|ICD9CM|Crushing injury toe|Crushing injury toe +C0160996|T037|PT|928.8|ICD9CM|Crushing injury of multiple sites of lower limb|Crushing injury of multiple sites of lower limb +C0160996|T037|AB|928.8|ICD9CM|Mult crushing injury leg|Mult crushing injury leg +C0160985|T037|AB|928.9|ICD9CM|Crushing injury leg NOS|Crushing injury leg NOS +C0160985|T037|PT|928.9|ICD9CM|Crushing injury of unspecified site of lower limb|Crushing injury of unspecified site of lower limb +C0451984|T037|HT|929|ICD9CM|Crushing injury of multiple and unspecified sites|Crushing injury of multiple and unspecified sites +C0868762|T037|AB|929.0|ICD9CM|Crush inj mult site NEC|Crush inj mult site NEC +C0868762|T037|PT|929.0|ICD9CM|Crushing injury of multiple sites, not elsewhere classified|Crushing injury of multiple sites, not elsewhere classified +C0332679|T037|AB|929.9|ICD9CM|Crushing injury NOS|Crushing injury NOS +C0332679|T037|PT|929.9|ICD9CM|Crushing injury of unspecified site|Crushing injury of unspecified site +C0161001|T037|HT|930|ICD9CM|Foreign body on external eye|Foreign body on external eye +C0178329|T037|HT|930-939.99|ICD9CM|EFFECTS OF FOREIGN BODY ENTERING THROUGH ORIFICE|EFFECTS OF FOREIGN BODY ENTERING THROUGH ORIFICE +C0161002|T037|AB|930.0|ICD9CM|Corneal foreign body|Corneal foreign body +C0161002|T037|PT|930.0|ICD9CM|Corneal foreign body|Corneal foreign body +C0161003|T037|AB|930.1|ICD9CM|FB in conjunctival sac|FB in conjunctival sac +C0161003|T037|PT|930.1|ICD9CM|Foreign body in conjunctival sac|Foreign body in conjunctival sac +C0161004|T037|AB|930.2|ICD9CM|FB in lacrimal punctum|FB in lacrimal punctum +C0161004|T037|PT|930.2|ICD9CM|Foreign body in lacrimal punctum|Foreign body in lacrimal punctum +C0161005|T037|AB|930.8|ICD9CM|Foreign bdy ext eye NEC|Foreign bdy ext eye NEC +C0161005|T037|PT|930.8|ICD9CM|Foreign body in other and combined sites on external eye|Foreign body in other and combined sites on external eye +C0161001|T037|AB|930.9|ICD9CM|Foreign bdy ext eye NOS|Foreign bdy ext eye NOS +C0161001|T037|PT|930.9|ICD9CM|Foreign body in unspecified site on external eye|Foreign body in unspecified site on external eye +C0161007|T037|AB|931|ICD9CM|Foreign body in ear|Foreign body in ear +C0161007|T037|PT|931|ICD9CM|Foreign body in ear|Foreign body in ear +C0161008|T033|AB|932|ICD9CM|Foreign body in nose|Foreign body in nose +C0161008|T033|PT|932|ICD9CM|Foreign body in nose|Foreign body in nose +C0161009|T037|HT|933|ICD9CM|Foreign body in pharynx and larynx|Foreign body in pharynx and larynx +C0161010|T037|AB|933.0|ICD9CM|Foreign body in pharynx|Foreign body in pharynx +C0161010|T037|PT|933.0|ICD9CM|Foreign body in pharynx|Foreign body in pharynx +C0161011|T037|AB|933.1|ICD9CM|Foreign body in larynx|Foreign body in larynx +C0161011|T037|PT|933.1|ICD9CM|Foreign body in larynx|Foreign body in larynx +C0686705|T037|HT|934|ICD9CM|Foreign body in trachea, bronchus, and lung|Foreign body in trachea, bronchus, and lung +C0161013|T037|AB|934.0|ICD9CM|Foreign body in trachea|Foreign body in trachea +C0161013|T037|PT|934.0|ICD9CM|Foreign body in trachea|Foreign body in trachea +C0161014|T037|AB|934.1|ICD9CM|Foreign body bronchus|Foreign body bronchus +C0161014|T037|PT|934.1|ICD9CM|Foreign body in main bronchus|Foreign body in main bronchus +C0161015|T037|AB|934.8|ICD9CM|FB trach/bronch/lung NEC|FB trach/bronch/lung NEC +C0161015|T037|PT|934.8|ICD9CM|Foreign body in other specified parts bronchus and lung|Foreign body in other specified parts bronchus and lung +C0161016|T037|AB|934.9|ICD9CM|FB respiratory tree NOS|FB respiratory tree NOS +C0161016|T037|PT|934.9|ICD9CM|Foreign body in respiratory tree, unspecified|Foreign body in respiratory tree, unspecified +C0161017|T037|HT|935|ICD9CM|Foreign body in mouth, esophagus, and stomach|Foreign body in mouth, esophagus, and stomach +C0161018|T037|AB|935.0|ICD9CM|Foreign body in mouth|Foreign body in mouth +C0161018|T037|PT|935.0|ICD9CM|Foreign body in mouth|Foreign body in mouth +C0149532|T037|AB|935.1|ICD9CM|Foreign body esophagus|Foreign body esophagus +C0149532|T037|PT|935.1|ICD9CM|Foreign body in esophagus|Foreign body in esophagus +C0161019|T037|AB|935.2|ICD9CM|Foreign body in stomach|Foreign body in stomach +C0161019|T037|PT|935.2|ICD9CM|Foreign body in stomach|Foreign body in stomach +C0161020|T033|AB|936|ICD9CM|FB in intestine & colon|FB in intestine & colon +C0161020|T033|PT|936|ICD9CM|Foreign body in intestine and colon|Foreign body in intestine and colon +C0161021|T037|AB|937|ICD9CM|Foreign body anus/rectum|Foreign body anus/rectum +C0161021|T037|PT|937|ICD9CM|Foreign body in anus and rectum|Foreign body in anus and rectum +C0016546|T037|AB|938|ICD9CM|Foreign body GI NOS|Foreign body GI NOS +C0016546|T037|PT|938|ICD9CM|Foreign body in digestive system, unspecified|Foreign body in digestive system, unspecified +C0161022|T037|HT|939|ICD9CM|Foreign body in genitourinary tract|Foreign body in genitourinary tract +C0161023|T037|AB|939.0|ICD9CM|FB bladder & urethra|FB bladder & urethra +C0161023|T037|PT|939.0|ICD9CM|Foreign body in bladder and urethra|Foreign body in bladder and urethra +C0433686|T037|PT|939.1|ICD9CM|Foreign body in uterus, any part|Foreign body in uterus, any part +C0433686|T037|AB|939.1|ICD9CM|Foreign body uterus|Foreign body uterus +C0161025|T037|AB|939.2|ICD9CM|Foreign bdy vulva/vagina|Foreign bdy vulva/vagina +C0161025|T037|PT|939.2|ICD9CM|Foreign body in vulva and vagina|Foreign body in vulva and vagina +C0161026|T037|PT|939.3|ICD9CM|Foreign body in penis|Foreign body in penis +C0161026|T037|AB|939.3|ICD9CM|Foreign body penis|Foreign body penis +C0161022|T037|AB|939.9|ICD9CM|Foreign bdy gu tract NOS|Foreign bdy gu tract NOS +C0161022|T037|PT|939.9|ICD9CM|Foreign body in unspecified site in genitourinary tract|Foreign body in unspecified site in genitourinary tract +C0273934|T037|HT|940|ICD9CM|Burn confined to eye and adnexa|Burn confined to eye and adnexa +C0006434|T037|HT|940-949.99|ICD9CM|BURNS|BURNS +C1306015|T037|PT|940.0|ICD9CM|Chemical burn of eyelids and periocular area|Chemical burn of eyelids and periocular area +C1306015|T037|AB|940.0|ICD9CM|Chemical burn periocular|Chemical burn periocular +C0161029|T037|AB|940.1|ICD9CM|Burn periocular area NEC|Burn periocular area NEC +C0161029|T037|PT|940.1|ICD9CM|Other burns of eyelids and periocular area|Other burns of eyelids and periocular area +C0161030|T037|AB|940.2|ICD9CM|Alkal burn cornea/conjun|Alkal burn cornea/conjun +C0161030|T037|PT|940.2|ICD9CM|Alkaline chemical burn of cornea and conjunctival sac|Alkaline chemical burn of cornea and conjunctival sac +C0161031|T037|AB|940.3|ICD9CM|Acid burn cornea/conjunc|Acid burn cornea/conjunc +C0161031|T037|PT|940.3|ICD9CM|Acid chemical burn of cornea and conjunctival sac|Acid chemical burn of cornea and conjunctival sac +C3665446|T037|AB|940.4|ICD9CM|Burn cornea/conjunct NEC|Burn cornea/conjunct NEC +C3665446|T037|PT|940.4|ICD9CM|Other burn of cornea and conjunctival sac|Other burn of cornea and conjunctival sac +C0161033|T037|AB|940.5|ICD9CM|Burn w eyeball destruct|Burn w eyeball destruct +C0161033|T037|PT|940.5|ICD9CM|Burn with resulting rupture and destruction of eyeball|Burn with resulting rupture and destruction of eyeball +C0273934|T037|AB|940.9|ICD9CM|Burn eye & adnexa NOS|Burn eye & adnexa NOS +C0273934|T037|PT|940.9|ICD9CM|Unspecified burn of eye and adnexa|Unspecified burn of eye and adnexa +C2004482|T037|HT|941|ICD9CM|Burn of face, head, and neck|Burn of face, head, and neck +C0496029|T037|HT|941.0|ICD9CM|Burn of face, head, and neck, unspecified degree|Burn of face, head, and neck, unspecified degree +C0273940|T037|AB|941.00|ICD9CM|Burn NOS head-unspec|Burn NOS head-unspec +C0273940|T037|PT|941.00|ICD9CM|Burn of unspecified degree of face and head, unspecified site|Burn of unspecified degree of face and head, unspecified site +C0161036|T037|AB|941.01|ICD9CM|Burn NOS ear|Burn NOS ear +C0161036|T037|PT|941.01|ICD9CM|Burn of unspecified degree of ear [any part]|Burn of unspecified degree of ear [any part] +C0006421|T037|AB|941.02|ICD9CM|Burn NOS eye|Burn NOS eye +C0006421|T037|PT|941.02|ICD9CM|Burn of unspecified degree of eye (with other parts of face, head, and neck)|Burn of unspecified degree of eye (with other parts of face, head, and neck) +C0161037|T037|AB|941.03|ICD9CM|Burn NOS lip|Burn NOS lip +C0161037|T037|PT|941.03|ICD9CM|Burn of unspecified degree of lip(s)|Burn of unspecified degree of lip(s) +C0161038|T037|AB|941.04|ICD9CM|Burn NOS chin|Burn NOS chin +C0161038|T037|PT|941.04|ICD9CM|Burn of unspecified degree of chin|Burn of unspecified degree of chin +C0869240|T037|AB|941.05|ICD9CM|Burn NOS nose|Burn NOS nose +C0869240|T037|PT|941.05|ICD9CM|Burn of unspecified degree of nose (septum)|Burn of unspecified degree of nose (septum) +C0273970|T037|AB|941.06|ICD9CM|Burn NOS scalp|Burn NOS scalp +C0273970|T037|PT|941.06|ICD9CM|Burn of unspecified degree of scalp [any part]|Burn of unspecified degree of scalp [any part] +C0161041|T037|AB|941.07|ICD9CM|Burn NOS face NEC|Burn NOS face NEC +C0161041|T037|PT|941.07|ICD9CM|Burn of unspecified degree of forehead and cheek|Burn of unspecified degree of forehead and cheek +C0273982|T037|AB|941.08|ICD9CM|Burn NOS neck|Burn NOS neck +C0273982|T037|PT|941.08|ICD9CM|Burn of unspecified degree of neck|Burn of unspecified degree of neck +C0161043|T037|AB|941.09|ICD9CM|Burn NOS head-mult|Burn NOS head-mult +C0161043|T037|PT|941.09|ICD9CM|Burn of unspecified degree of multiple sites [except with eye] of face, head, and neck|Burn of unspecified degree of multiple sites [except with eye] of face, head, and neck +C0161044|T037|HT|941.1|ICD9CM|Erythema due to burn [first degree] of face, head, and neck|Erythema due to burn [first degree] of face, head, and neck +C0273941|T037|AB|941.10|ICD9CM|1st deg burn head NOS|1st deg burn head NOS +C0273941|T037|PT|941.10|ICD9CM|Erythema [first degree] of face and head, unspecified site|Erythema [first degree] of face and head, unspecified site +C0161046|T037|AB|941.11|ICD9CM|1st deg burn ear|1st deg burn ear +C0161046|T037|PT|941.11|ICD9CM|Erythema [first degree] of ear [any part]|Erythema [first degree] of ear [any part] +C0161047|T037|AB|941.12|ICD9CM|1st deg burn eye|1st deg burn eye +C0161047|T037|PT|941.12|ICD9CM|Erythema [first degree] of eye (with other parts face, head, and neck)|Erythema [first degree] of eye (with other parts face, head, and neck) +C0161048|T037|AB|941.13|ICD9CM|1st deg burn lip|1st deg burn lip +C0161048|T037|PT|941.13|ICD9CM|Erythema [first degree] of lip(s)|Erythema [first degree] of lip(s) +C0433307|T037|AB|941.14|ICD9CM|1st deg burn chin|1st deg burn chin +C0433307|T037|PT|941.14|ICD9CM|Erythema [first degree] of chin|Erythema [first degree] of chin +C0161050|T037|AB|941.15|ICD9CM|1st deg burn nose|1st deg burn nose +C0161050|T037|PT|941.15|ICD9CM|Erythema [first degree] of nose (septum)|Erythema [first degree] of nose (septum) +C0375673|T037|AB|941.16|ICD9CM|1st deg burn scalp|1st deg burn scalp +C0375673|T037|PT|941.16|ICD9CM|Erythema [first degree] of scalp [any part]|Erythema [first degree] of scalp [any part] +C0161052|T037|AB|941.17|ICD9CM|1st deg burn face NEC|1st deg burn face NEC +C0161052|T037|PT|941.17|ICD9CM|Erythema [first degree] of forehead and cheek|Erythema [first degree] of forehead and cheek +C0161053|T037|AB|941.18|ICD9CM|1st deg burn neck|1st deg burn neck +C0161053|T037|PT|941.18|ICD9CM|Erythema [first degree] of neck|Erythema [first degree] of neck +C0161054|T037|AB|941.19|ICD9CM|1st deg burn head-mult|1st deg burn head-mult +C0161054|T037|PT|941.19|ICD9CM|Erythema [first degree] of multiple sites [except with eye] of face, head, and neck|Erythema [first degree] of multiple sites [except with eye] of face, head, and neck +C0161055|T037|HT|941.2|ICD9CM|Blisters with epidermal loss due to burn [second degree] of face, head, and neck|Blisters with epidermal loss due to burn [second degree] of face, head, and neck +C0375674|T037|AB|941.20|ICD9CM|2nd deg burn head NOS|2nd deg burn head NOS +C0375674|T037|PT|941.20|ICD9CM|Blisters, epidermal loss [second degree] of face and head, unspecified site|Blisters, epidermal loss [second degree] of face and head, unspecified site +C0273948|T037|AB|941.21|ICD9CM|2nd deg burn ear|2nd deg burn ear +C0273948|T037|PT|941.21|ICD9CM|Blisters, epidermal loss [second degree] of ear [any part]|Blisters, epidermal loss [second degree] of ear [any part] +C0161058|T037|AB|941.22|ICD9CM|2nd deg burn eye|2nd deg burn eye +C0161058|T037|PT|941.22|ICD9CM|Blisters, epidermal loss [second degree] of eye (with other parts of face, head, and neck)|Blisters, epidermal loss [second degree] of eye (with other parts of face, head, and neck) +C0161059|T037|AB|941.23|ICD9CM|2nd deg burn lip|2nd deg burn lip +C0161059|T037|PT|941.23|ICD9CM|Blisters, epidermal loss [second degree] of lip(s)|Blisters, epidermal loss [second degree] of lip(s) +C0161060|T037|AB|941.24|ICD9CM|2nd deg burn chin|2nd deg burn chin +C0161060|T037|PT|941.24|ICD9CM|Blisters, epidermal loss [second degree] of chin|Blisters, epidermal loss [second degree] of chin +C0161061|T037|AB|941.25|ICD9CM|2nd deg burn nose|2nd deg burn nose +C0161061|T037|PT|941.25|ICD9CM|Blisters, epidermal loss [second degree] of nose (septum)|Blisters, epidermal loss [second degree] of nose (septum) +C0161062|T037|AB|941.26|ICD9CM|2nd deg burn scalp|2nd deg burn scalp +C0161062|T037|PT|941.26|ICD9CM|Blisters, epidermal loss [second degree] of scalp [any part]|Blisters, epidermal loss [second degree] of scalp [any part] +C0161063|T037|AB|941.27|ICD9CM|2nd deg burn face NEC|2nd deg burn face NEC +C0161063|T037|PT|941.27|ICD9CM|Blisters, epidermal loss [second degree] of forehead and cheek|Blisters, epidermal loss [second degree] of forehead and cheek +C0161064|T037|AB|941.28|ICD9CM|2nd deg burn neck|2nd deg burn neck +C0161064|T037|PT|941.28|ICD9CM|Blisters, epidermal loss [second degree] of neck|Blisters, epidermal loss [second degree] of neck +C0161065|T037|AB|941.29|ICD9CM|2nd deg burn head-mult|2nd deg burn head-mult +C0161065|T037|PT|941.29|ICD9CM|Blisters, epidermal loss [second degree] of multiple sites [except with eye] of face, head, and neck|Blisters, epidermal loss [second degree] of multiple sites [except with eye] of face, head, and neck +C0161066|T037|HT|941.3|ICD9CM|Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck|Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck +C0161067|T037|AB|941.30|ICD9CM|3rd deg burn head NOS|3rd deg burn head NOS +C0161067|T037|PT|941.30|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of face and head, unspecified site|Full-thickness skin loss [third degree, not otherwise specified] of face and head, unspecified site +C0161068|T037|AB|941.31|ICD9CM|3rd deg burn ear|3rd deg burn ear +C0161068|T037|PT|941.31|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of ear [any part]|Full-thickness skin loss [third degree, not otherwise specified] of ear [any part] +C0161069|T037|AB|941.32|ICD9CM|3rd deg burn eye|3rd deg burn eye +C0161070|T037|AB|941.33|ICD9CM|3rd deg burn lip|3rd deg burn lip +C0161070|T037|PT|941.33|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of lip(s)|Full-thickness skin loss [third degree, not otherwise specified] of lip(s) +C0161071|T037|AB|941.34|ICD9CM|3rd deg burn chin|3rd deg burn chin +C0161071|T037|PT|941.34|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of chin|Full-thickness skin loss [third degree, not otherwise specified] of chin +C0161072|T037|AB|941.35|ICD9CM|3rd deg burn nose|3rd deg burn nose +C0161072|T037|PT|941.35|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of nose (septum)|Full-thickness skin loss [third degree, not otherwise specified] of nose (septum) +C0161073|T037|AB|941.36|ICD9CM|3rd deg burn scalp|3rd deg burn scalp +C0161073|T037|PT|941.36|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of scalp [any part]|Full-thickness skin loss [third degree, not otherwise specified] of scalp [any part] +C0161074|T037|AB|941.37|ICD9CM|3rd deg burn face NEC|3rd deg burn face NEC +C0161074|T037|PT|941.37|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of forehead and cheek|Full-thickness skin loss [third degree, not otherwise specified] of forehead and cheek +C0161075|T037|AB|941.38|ICD9CM|3rd deg burn neck|3rd deg burn neck +C0161075|T037|PT|941.38|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of neck|Full-thickness skin loss [third degree, not otherwise specified] of neck +C0161076|T037|AB|941.39|ICD9CM|3rd deg burn head-mult|3rd deg burn head-mult +C0161078|T037|AB|941.40|ICD9CM|Deep 3 deg burn head NOS|Deep 3 deg burn head NOS +C0161079|T037|AB|941.41|ICD9CM|Deep 3rd deg burn ear|Deep 3rd deg burn ear +C0161080|T037|AB|941.42|ICD9CM|Deep 3rd deg burn eye|Deep 3rd deg burn eye +C0161081|T037|AB|941.43|ICD9CM|Deep 3rd deg burn lip|Deep 3rd deg burn lip +C0161082|T037|AB|941.44|ICD9CM|Deep 3rd deg burn chin|Deep 3rd deg burn chin +C0161083|T037|AB|941.45|ICD9CM|Deep 3rd deg burn nose|Deep 3rd deg burn nose +C0161084|T037|AB|941.46|ICD9CM|Deep 3rd deg burn scalp|Deep 3rd deg burn scalp +C0161085|T037|AB|941.47|ICD9CM|Deep 3rd burn face NEC|Deep 3rd burn face NEC +C0161086|T037|AB|941.48|ICD9CM|Deep 3rd deg burn neck|Deep 3rd deg burn neck +C0161087|T037|AB|941.49|ICD9CM|Deep 3 deg brn head-mult|Deep 3 deg brn head-mult +C0161089|T037|AB|941.50|ICD9CM|3rd burn w loss-head NOS|3rd burn w loss-head NOS +C0161090|T037|AB|941.51|ICD9CM|3rd deg burn w loss-ear|3rd deg burn w loss-ear +C0161090|T037|PT|941.51|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ear [any part]|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ear [any part] +C0161091|T037|AB|941.52|ICD9CM|3rd deg burn w loss-eye|3rd deg burn w loss-eye +C0161092|T037|AB|941.53|ICD9CM|3rd deg burn w loss-lip|3rd deg burn w loss-lip +C0161092|T037|PT|941.53|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lip(s)|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lip(s) +C0161093|T037|AB|941.54|ICD9CM|3rd deg burn w loss-chin|3rd deg burn w loss-chin +C0161093|T037|PT|941.54|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of chin|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of chin +C0161094|T037|AB|941.55|ICD9CM|3rd deg burn w loss-nose|3rd deg burn w loss-nose +C0161094|T037|PT|941.55|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of nose (septum)|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of nose (septum) +C0161095|T037|AB|941.56|ICD9CM|3rd deg brn w loss-scalp|3rd deg brn w loss-scalp +C0161096|T037|AB|941.57|ICD9CM|3rd burn w loss-face NEC|3rd burn w loss-face NEC +C0161097|T037|AB|941.58|ICD9CM|3rd deg burn w loss-neck|3rd deg burn w loss-neck +C0161097|T037|PT|941.58|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of neck|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of neck +C0161098|T037|AB|941.59|ICD9CM|3rd brn w loss-head mult|3rd brn w loss-head mult +C0161099|T037|HT|942|ICD9CM|Burn of trunk|Burn of trunk +C1812614|T037|HT|942.0|ICD9CM|Burn of trunk, unspecified degree|Burn of trunk, unspecified degree +C1812615|T037|AB|942.00|ICD9CM|Burn NOS trunk-unspec|Burn NOS trunk-unspec +C1812615|T037|PT|942.00|ICD9CM|Burn of unspecified degree of trunk, unspecified site|Burn of unspecified degree of trunk, unspecified site +C0273993|T037|AB|942.01|ICD9CM|Burn NOS breast|Burn NOS breast +C0273993|T037|PT|942.01|ICD9CM|Burn of unspecified degree of breast|Burn of unspecified degree of breast +C0840791|T037|AB|942.02|ICD9CM|Burn NOS chest wall|Burn NOS chest wall +C0840791|T037|PT|942.02|ICD9CM|Burn of unspecified degree of chest wall, excluding breast and nipple|Burn of unspecified degree of chest wall, excluding breast and nipple +C0274005|T037|AB|942.03|ICD9CM|Burn NOS abdominal wall|Burn NOS abdominal wall +C0274005|T037|PT|942.03|ICD9CM|Burn of unspecified degree of abdominal wall|Burn of unspecified degree of abdominal wall +C0274011|T037|AB|942.04|ICD9CM|Burn NOS back|Burn NOS back +C0274011|T037|PT|942.04|ICD9CM|Burn of unspecified degree of back [any part]|Burn of unspecified degree of back [any part] +C0161105|T037|AB|942.05|ICD9CM|Burn NOS genitalia|Burn NOS genitalia +C0161105|T037|PT|942.05|ICD9CM|Burn of unspecified degree of genitalia|Burn of unspecified degree of genitalia +C0161106|T037|AB|942.09|ICD9CM|Burn NOS trunk NEC|Burn NOS trunk NEC +C0161106|T037|PT|942.09|ICD9CM|Burn of unspecified degree of other and multiple sites of trunk|Burn of unspecified degree of other and multiple sites of trunk +C0161107|T037|HT|942.1|ICD9CM|Erythema due to burn [first degree] of trunk|Erythema due to burn [first degree] of trunk +C0840795|T037|AB|942.10|ICD9CM|1st deg burn trunk NOS|1st deg burn trunk NOS +C0840795|T037|PT|942.10|ICD9CM|Erythema [first degree] of trunk, unspecified site|Erythema [first degree] of trunk, unspecified site +C0161109|T037|AB|942.11|ICD9CM|1st deg burn breast|1st deg burn breast +C0161109|T037|PT|942.11|ICD9CM|Erythema [first degree] of breast|Erythema [first degree] of breast +C0161110|T037|AB|942.12|ICD9CM|1st deg burn chest wall|1st deg burn chest wall +C0161110|T037|PT|942.12|ICD9CM|Erythema [first degree] of chest wall, excluding breast and nipple|Erythema [first degree] of chest wall, excluding breast and nipple +C0840797|T037|AB|942.13|ICD9CM|1st deg burn abdomn wall|1st deg burn abdomn wall +C0840797|T037|PT|942.13|ICD9CM|Erythema [first degree] of abdominal wall|Erythema [first degree] of abdominal wall +C0840798|T037|AB|942.14|ICD9CM|1st deg burn back|1st deg burn back +C0840798|T037|PT|942.14|ICD9CM|Erythema [first degree] of back [any part]|Erythema [first degree] of back [any part] +C0161113|T037|AB|942.15|ICD9CM|1st deg burn genitalia|1st deg burn genitalia +C0161113|T037|PT|942.15|ICD9CM|Erythema [first degree] of genitalia|Erythema [first degree] of genitalia +C0161114|T037|AB|942.19|ICD9CM|1st deg burn trunk NEC|1st deg burn trunk NEC +C0161114|T037|PT|942.19|ICD9CM|Erythema [first degree] of other and multiple sites of trunk|Erythema [first degree] of other and multiple sites of trunk +C0433353|T037|HT|942.2|ICD9CM|Blisters with epidermal loss due to burn [second degree] of trunk|Blisters with epidermal loss due to burn [second degree] of trunk +C0840801|T037|AB|942.20|ICD9CM|2nd deg burn trunk NOS|2nd deg burn trunk NOS +C0840801|T037|PT|942.20|ICD9CM|Blisters, epidermal loss [second degree] of trunk, unspecified site|Blisters, epidermal loss [second degree] of trunk, unspecified site +C0840802|T037|AB|942.21|ICD9CM|2nd deg burn breast|2nd deg burn breast +C0840802|T037|PT|942.21|ICD9CM|Blisters, epidermal loss [second degree] of breast|Blisters, epidermal loss [second degree] of breast +C0161118|T037|AB|942.22|ICD9CM|2nd deg burn chest wall|2nd deg burn chest wall +C0161118|T037|PT|942.22|ICD9CM|Blisters, epidermal loss [second degree] of chest wall, excluding breast and nipple|Blisters, epidermal loss [second degree] of chest wall, excluding breast and nipple +C0840804|T037|AB|942.23|ICD9CM|2nd deg burn abdomn wall|2nd deg burn abdomn wall +C0840804|T037|PT|942.23|ICD9CM|Blisters, epidermal loss [second degree] of abdominal wall|Blisters, epidermal loss [second degree] of abdominal wall +C0840805|T037|AB|942.24|ICD9CM|2nd deg burn back|2nd deg burn back +C0840805|T037|PT|942.24|ICD9CM|Blisters, epidermal loss [second degree] of back [any part]|Blisters, epidermal loss [second degree] of back [any part] +C0161121|T037|AB|942.25|ICD9CM|2nd deg burn genitalia|2nd deg burn genitalia +C0161121|T037|PT|942.25|ICD9CM|Blisters, epidermal loss [second degree] of genitalia|Blisters, epidermal loss [second degree] of genitalia +C0161122|T037|AB|942.29|ICD9CM|2nd deg burn trunk NEC|2nd deg burn trunk NEC +C0161122|T037|PT|942.29|ICD9CM|Blisters, epidermal loss [second degree] of other and multiple sites of trunk|Blisters, epidermal loss [second degree] of other and multiple sites of trunk +C0161123|T037|HT|942.3|ICD9CM|Full-thickness skin loss due to burn [third degree NOS] of trunk|Full-thickness skin loss due to burn [third degree NOS] of trunk +C0840808|T037|AB|942.30|ICD9CM|3rd deg burn trunk NOS|3rd deg burn trunk NOS +C0840808|T037|PT|942.30|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of trunk, unspecified site|Full-thickness skin loss [third degree, not otherwise specified] of trunk, unspecified site +C0433480|T037|AB|942.31|ICD9CM|3rd deg burn breast|3rd deg burn breast +C0433480|T037|PT|942.31|ICD9CM|Full-thickness skin loss [third degree,not otherwise specified] of breast|Full-thickness skin loss [third degree,not otherwise specified] of breast +C0161126|T037|AB|942.32|ICD9CM|3rd deg burn chest wall|3rd deg burn chest wall +C0433482|T037|AB|942.33|ICD9CM|3rd deg burn abdomn wall|3rd deg burn abdomn wall +C0433482|T037|PT|942.33|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of abdominal wall|Full-thickness skin loss [third degree, not otherwise specified] of abdominal wall +C0840810|T037|AB|942.34|ICD9CM|3rd deg burn back|3rd deg burn back +C0840810|T037|PT|942.34|ICD9CM|Full-thickness skin loss [third degree,not otherwise specified] of back [any part]|Full-thickness skin loss [third degree,not otherwise specified] of back [any part] +C0161129|T037|AB|942.35|ICD9CM|3rd deg burn genitalia|3rd deg burn genitalia +C0161129|T037|PT|942.35|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of genitalia|Full-thickness skin loss [third degree, not otherwise specified] of genitalia +C0161130|T037|AB|942.39|ICD9CM|3rd deg burn trunk NEC|3rd deg burn trunk NEC +C0161132|T037|AB|942.40|ICD9CM|Deep 3rd burn trunk NOS|Deep 3rd burn trunk NOS +C0161133|T037|AB|942.41|ICD9CM|Deep 3rd deg burn breast|Deep 3rd deg burn breast +C0161134|T037|AB|942.42|ICD9CM|Deep 3rd burn chest wall|Deep 3rd burn chest wall +C0375675|T037|AB|942.43|ICD9CM|Deep 3rd burn abdom wall|Deep 3rd burn abdom wall +C0375676|T047|AB|942.44|ICD9CM|Deep 3rd deg burn back|Deep 3rd deg burn back +C0375677|T047|AB|942.45|ICD9CM|Deep 3rd burn genitalia|Deep 3rd burn genitalia +C0161138|T037|AB|942.49|ICD9CM|Deep 3rd burn trunk NEC|Deep 3rd burn trunk NEC +C0161140|T037|AB|942.50|ICD9CM|3rd brn w loss-trunk NOS|3rd brn w loss-trunk NOS +C0161141|T037|AB|942.51|ICD9CM|3rd burn w loss-breast|3rd burn w loss-breast +C0161141|T037|PT|942.51|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of breast|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of breast +C0161142|T037|AB|942.52|ICD9CM|3rd brn w loss-chest wll|3rd brn w loss-chest wll +C0375678|T037|AB|942.53|ICD9CM|3rd brn w loss-abdom wll|3rd brn w loss-abdom wll +C0375678|T037|PT|942.53|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of abdominal wall|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of abdominal wall +C0375679|T037|AB|942.54|ICD9CM|3rd deg burn w loss-back|3rd deg burn w loss-back +C0375679|T037|PT|942.54|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of back [any part]|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of back [any part] +C0375680|T037|AB|942.55|ICD9CM|3rd brn w loss-genitalia|3rd brn w loss-genitalia +C0375680|T037|PT|942.55|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of genitalia|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of genitalia +C0161146|T037|AB|942.59|ICD9CM|3rd brn w loss-trunk NEC|3rd brn w loss-trunk NEC +C0433193|T037|HT|943|ICD9CM|Burn of upper limb, except wrist and hand|Burn of upper limb, except wrist and hand +C0375681|T037|HT|943.0|ICD9CM|Burn of upper limb, except wrist and hand, unspecified degree|Burn of upper limb, except wrist and hand, unspecified degree +C0274035|T037|AB|943.00|ICD9CM|Burn NOS arm-unspec|Burn NOS arm-unspec +C0274035|T037|PT|943.00|ICD9CM|Burn of unspecified degree of upper limb, except wrist and hand, unspecified site|Burn of unspecified degree of upper limb, except wrist and hand, unspecified site +C0274071|T037|AB|943.01|ICD9CM|Burn NOS forearm|Burn NOS forearm +C0274071|T037|PT|943.01|ICD9CM|Burn of unspecified degree of forearm|Burn of unspecified degree of forearm +C0274065|T037|AB|943.02|ICD9CM|Burn NOS elbow|Burn NOS elbow +C0274065|T037|PT|943.02|ICD9CM|Burn of unspecified degree of elbow|Burn of unspecified degree of elbow +C0161151|T037|AB|943.03|ICD9CM|Burn NOS upper arm|Burn NOS upper arm +C0161151|T037|PT|943.03|ICD9CM|Burn of unspecified degree of upper arm|Burn of unspecified degree of upper arm +C0274053|T037|AB|943.04|ICD9CM|Burn NOS axilla|Burn NOS axilla +C0274053|T037|PT|943.04|ICD9CM|Burn of unspecified degree of axilla|Burn of unspecified degree of axilla +C0274041|T037|AB|943.05|ICD9CM|Burn NOS shoulder|Burn NOS shoulder +C0274041|T037|PT|943.05|ICD9CM|Burn of unspecified degree of shoulder|Burn of unspecified degree of shoulder +C0274047|T037|AB|943.06|ICD9CM|Burn NOS scapula|Burn NOS scapula +C0274047|T037|PT|943.06|ICD9CM|Burn of unspecified degree of scapular region|Burn of unspecified degree of scapular region +C0161155|T037|AB|943.09|ICD9CM|Burn NOS arm-multiple|Burn NOS arm-multiple +C0161155|T037|PT|943.09|ICD9CM|Burn of unspecified degree of multiple sites of upper limb, except wrist and hand|Burn of unspecified degree of multiple sites of upper limb, except wrist and hand +C0161156|T037|HT|943.1|ICD9CM|Erythema due to burn [first degree] of upper limb, except wrist and hand|Erythema due to burn [first degree] of upper limb, except wrist and hand +C0161157|T037|AB|943.10|ICD9CM|1st deg burn arm NOS|1st deg burn arm NOS +C0161157|T037|PT|943.10|ICD9CM|Erythema [first degree] of upper limb, unspecified site|Erythema [first degree] of upper limb, unspecified site +C0161158|T037|AB|943.11|ICD9CM|1st deg burn forearm|1st deg burn forearm +C0161158|T037|PT|943.11|ICD9CM|Erythema [first degree] of forearm|Erythema [first degree] of forearm +C0161159|T037|AB|943.12|ICD9CM|1st deg burn elbow|1st deg burn elbow +C0161159|T037|PT|943.12|ICD9CM|Erythema [first degree] of elbow|Erythema [first degree] of elbow +C0161160|T037|AB|943.13|ICD9CM|1st deg burn upper arm|1st deg burn upper arm +C0161160|T037|PT|943.13|ICD9CM|Erythema [first degree] of upper arm|Erythema [first degree] of upper arm +C0161161|T037|AB|943.14|ICD9CM|1st deg burn axilla|1st deg burn axilla +C0161161|T037|PT|943.14|ICD9CM|Erythema [first degree] of axilla|Erythema [first degree] of axilla +C0161162|T037|AB|943.15|ICD9CM|1st deg burn shoulder|1st deg burn shoulder +C0161162|T037|PT|943.15|ICD9CM|Erythema [first degree] of shoulder|Erythema [first degree] of shoulder +C0161163|T037|AB|943.16|ICD9CM|1st deg burn scapula|1st deg burn scapula +C0161163|T037|PT|943.16|ICD9CM|Erythema [first degree] of scapular region|Erythema [first degree] of scapular region +C0161164|T037|AB|943.19|ICD9CM|1st deg burn arm-mult|1st deg burn arm-mult +C0161164|T037|PT|943.19|ICD9CM|Erythema [first degree] of multiple sites of upper limb, except wrist and hand|Erythema [first degree] of multiple sites of upper limb, except wrist and hand +C0161165|T037|HT|943.2|ICD9CM|Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand|Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand +C0161166|T037|AB|943.20|ICD9CM|2nd deg burn arm NOS|2nd deg burn arm NOS +C0161166|T037|PT|943.20|ICD9CM|Blisters, epidermal loss [second degree] of upper limb, unspecified site|Blisters, epidermal loss [second degree] of upper limb, unspecified site +C0161167|T037|AB|943.21|ICD9CM|2nd deg burn forearm|2nd deg burn forearm +C0161167|T037|PT|943.21|ICD9CM|Blisters, epidermal loss [second degree] of forearm|Blisters, epidermal loss [second degree] of forearm +C0161168|T037|AB|943.22|ICD9CM|2nd deg burn elbow|2nd deg burn elbow +C0161168|T037|PT|943.22|ICD9CM|Blisters, epidermal loss [second degree] of elbow|Blisters, epidermal loss [second degree] of elbow +C0161169|T037|AB|943.23|ICD9CM|2nd deg burn upper arm|2nd deg burn upper arm +C0161169|T037|PT|943.23|ICD9CM|Blisters, epidermal loss [second degree] of upper arm|Blisters, epidermal loss [second degree] of upper arm +C0161170|T037|AB|943.24|ICD9CM|2nd deg burn axilla|2nd deg burn axilla +C0161170|T037|PT|943.24|ICD9CM|Blisters, epidermal loss [second degree] of axilla|Blisters, epidermal loss [second degree] of axilla +C0161171|T037|AB|943.25|ICD9CM|2nd deg burn shoulder|2nd deg burn shoulder +C0161171|T037|PT|943.25|ICD9CM|Blisters, epidermal loss [second degree] of shoulder|Blisters, epidermal loss [second degree] of shoulder +C0161172|T037|AB|943.26|ICD9CM|2nd deg burn scapula|2nd deg burn scapula +C0161172|T037|PT|943.26|ICD9CM|Blisters, epidermal loss [second degree] of scapular region|Blisters, epidermal loss [second degree] of scapular region +C0161173|T037|AB|943.29|ICD9CM|2nd deg burn arm-mult|2nd deg burn arm-mult +C0161173|T037|PT|943.29|ICD9CM|Blisters, epidermal loss [second degree] of multiple sites of upper limb, except wrist and hand|Blisters, epidermal loss [second degree] of multiple sites of upper limb, except wrist and hand +C0161174|T037|HT|943.3|ICD9CM|Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand|Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand +C0161175|T037|AB|943.30|ICD9CM|3rd deg burn arm NOS|3rd deg burn arm NOS +C0161175|T037|PT|943.30|ICD9CM|Full-thickness skin [third degree, not otherwise specified] of upper limb, unspecified site|Full-thickness skin [third degree, not otherwise specified] of upper limb, unspecified site +C0161176|T037|AB|943.31|ICD9CM|3rd deg burn forearm|3rd deg burn forearm +C0161176|T037|PT|943.31|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of forearm|Full-thickness skin loss [third degree, not otherwise specified] of forearm +C0161177|T037|AB|943.32|ICD9CM|3rd deg burn elbow|3rd deg burn elbow +C0161177|T037|PT|943.32|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of elbow|Full-thickness skin loss [third degree, not otherwise specified] of elbow +C0161178|T037|AB|943.33|ICD9CM|3rd deg burn upper arm|3rd deg burn upper arm +C0161178|T037|PT|943.33|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of upper arm|Full-thickness skin loss [third degree, not otherwise specified] of upper arm +C0274056|T037|AB|943.34|ICD9CM|3rd deg burn axilla|3rd deg burn axilla +C0274056|T037|PT|943.34|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of axilla|Full-thickness skin loss [third degree, not otherwise specified] of axilla +C0161180|T037|AB|943.35|ICD9CM|3rd deg burn shoulder|3rd deg burn shoulder +C0161180|T037|PT|943.35|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of shoulder|Full-thickness skin loss [third degree, not otherwise specified] of shoulder +C0161181|T037|AB|943.36|ICD9CM|3rd deg burn scapula|3rd deg burn scapula +C0161181|T037|PT|943.36|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of scapular region|Full-thickness skin loss [third degree, not otherwise specified] of scapular region +C0161182|T037|AB|943.39|ICD9CM|3rd deg burn arm-mult|3rd deg burn arm-mult +C0161184|T037|AB|943.40|ICD9CM|Deep 3 deg burn arm NOS|Deep 3 deg burn arm NOS +C0161185|T037|AB|943.41|ICD9CM|Deep 3 deg burn forearm|Deep 3 deg burn forearm +C0161186|T037|AB|943.42|ICD9CM|Deep 3 deg burn elbow|Deep 3 deg burn elbow +C0161187|T037|AB|943.43|ICD9CM|Deep 3 deg brn upper arm|Deep 3 deg brn upper arm +C0161188|T037|AB|943.44|ICD9CM|Deep 3 deg burn axilla|Deep 3 deg burn axilla +C0161189|T037|AB|943.45|ICD9CM|Deep 3 deg burn shoulder|Deep 3 deg burn shoulder +C0161190|T037|AB|943.46|ICD9CM|Deep 3 deg burn scapula|Deep 3 deg burn scapula +C0161191|T037|AB|943.49|ICD9CM|Deep 3 deg burn arm-mult|Deep 3 deg burn arm-mult +C0161193|T037|AB|943.50|ICD9CM|3rd burn w loss-arm NOS|3rd burn w loss-arm NOS +C0161194|T037|AB|943.51|ICD9CM|3rd burn w loss-forearm|3rd burn w loss-forearm +C0161194|T037|PT|943.51|ICD9CM|Deep necrosis of underlying tissues [deep third degree) with loss of a body part, of forearm|Deep necrosis of underlying tissues [deep third degree) with loss of a body part, of forearm +C0161195|T037|AB|943.52|ICD9CM|3rd burn w loss-elbow|3rd burn w loss-elbow +C0161195|T037|PT|943.52|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of elbow|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of elbow +C0161196|T037|AB|943.53|ICD9CM|3rd brn w loss-upper arm|3rd brn w loss-upper arm +C0161196|T037|PT|943.53|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of upper arm|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of upper arm +C0161197|T037|AB|943.54|ICD9CM|3rd burn w loss-axilla|3rd burn w loss-axilla +C0161197|T037|PT|943.54|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of axilla|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of axilla +C0161198|T037|AB|943.55|ICD9CM|3rd burn w loss-shoulder|3rd burn w loss-shoulder +C0161198|T037|PT|943.55|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of shoulder|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of shoulder +C0161199|T037|AB|943.56|ICD9CM|3rd burn w loss-scapula|3rd burn w loss-scapula +C0161199|T037|PT|943.56|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of scapular region|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of scapular region +C0161200|T037|AB|943.59|ICD9CM|3rd burn w loss arm-mult|3rd burn w loss arm-mult +C0433205|T037|HT|944|ICD9CM|Burn of wrist(s) and hand(s)|Burn of wrist(s) and hand(s) +C1812619|T037|HT|944.0|ICD9CM|Burn of wrist(s) and hand(s), unspecified degree|Burn of wrist(s) and hand(s), unspecified degree +C0274089|T037|AB|944.00|ICD9CM|Burn NOS hand-unspec|Burn NOS hand-unspec +C0274089|T037|PT|944.00|ICD9CM|Burn of unspecified degree of hand, unspecified site|Burn of unspecified degree of hand, unspecified site +C0161203|T037|AB|944.01|ICD9CM|Burn NOS finger|Burn NOS finger +C0161203|T037|PT|944.01|ICD9CM|Burn of unspecified degree of single digit (finger (nail) other than thumb|Burn of unspecified degree of single digit (finger (nail) other than thumb +C0161204|T037|AB|944.02|ICD9CM|Burn NOS thumb|Burn NOS thumb +C0161204|T037|PT|944.02|ICD9CM|Burn of unspecified degree of thumb (nail)|Burn of unspecified degree of thumb (nail) +C0161205|T037|AB|944.03|ICD9CM|Burn NOS mult fingers|Burn NOS mult fingers +C0161205|T037|PT|944.03|ICD9CM|Burn of unspecified degree of two or more digits of hand, not including thumb|Burn of unspecified degree of two or more digits of hand, not including thumb +C0161206|T037|AB|944.04|ICD9CM|Burn NOS finger w thumb|Burn NOS finger w thumb +C0161206|T037|PT|944.04|ICD9CM|Burn of unspecified degree of two or more digits of hand, including thumb|Burn of unspecified degree of two or more digits of hand, including thumb +C0161207|T037|AB|944.05|ICD9CM|Burn NOS palm|Burn NOS palm +C0161207|T037|PT|944.05|ICD9CM|Burn of unspecified degree of palm|Burn of unspecified degree of palm +C0161208|T037|AB|944.06|ICD9CM|Burn NOS back of hand|Burn NOS back of hand +C0161208|T037|PT|944.06|ICD9CM|Burn of unspecified degree of back of hand|Burn of unspecified degree of back of hand +C0274083|T037|AB|944.07|ICD9CM|Burn NOS wrist|Burn NOS wrist +C0274083|T037|PT|944.07|ICD9CM|Burn of unspecified degree of wrist|Burn of unspecified degree of wrist +C0161210|T037|AB|944.08|ICD9CM|Burn NOS hand-multiple|Burn NOS hand-multiple +C0161210|T037|PT|944.08|ICD9CM|Burn of unspecified degree of multiple sites of wrist(s) and hand(s)|Burn of unspecified degree of multiple sites of wrist(s) and hand(s) +C0161211|T037|HT|944.1|ICD9CM|Erythema due to burn [first degree] of wrist(s) and hand(s)|Erythema due to burn [first degree] of wrist(s) and hand(s) +C0274090|T037|AB|944.10|ICD9CM|1st deg burn hand NOS|1st deg burn hand NOS +C0274090|T037|PT|944.10|ICD9CM|Erythema [first degree] of hand, unspecified site|Erythema [first degree] of hand, unspecified site +C0161213|T037|AB|944.11|ICD9CM|1st deg burn finger|1st deg burn finger +C0161213|T037|PT|944.11|ICD9CM|Erythema [first degree] of single digit (finger (nail)) other than thumb|Erythema [first degree] of single digit (finger (nail)) other than thumb +C0161214|T037|AB|944.12|ICD9CM|1st deg burn thumb|1st deg burn thumb +C0161214|T037|PT|944.12|ICD9CM|Erythema [first degree] of thumb (nail)|Erythema [first degree] of thumb (nail) +C0161215|T037|AB|944.13|ICD9CM|1st deg burn mult finger|1st deg burn mult finger +C0161215|T037|PT|944.13|ICD9CM|Erythema [first degree] of two or more digits of hand, not including thumb|Erythema [first degree] of two or more digits of hand, not including thumb +C1112529|T037|AB|944.14|ICD9CM|1 deg burn fingr w thumb|1 deg burn fingr w thumb +C1112529|T037|PT|944.14|ICD9CM|Erythema [first degree] of two or more digits of hand including thumb|Erythema [first degree] of two or more digits of hand including thumb +C0161217|T037|AB|944.15|ICD9CM|1st deg burn palm|1st deg burn palm +C0161217|T037|PT|944.15|ICD9CM|Erythema [first degree] of palm|Erythema [first degree] of palm +C0433333|T037|AB|944.16|ICD9CM|1 deg burn back of hand|1 deg burn back of hand +C0433333|T037|PT|944.16|ICD9CM|Erythema [first degree] of back of hand|Erythema [first degree] of back of hand +C0274084|T037|AB|944.17|ICD9CM|1st deg burn wrist|1st deg burn wrist +C0274084|T037|PT|944.17|ICD9CM|Erythema [first degree] of wrist|Erythema [first degree] of wrist +C0161220|T037|AB|944.18|ICD9CM|1st deg burn hand-mult|1st deg burn hand-mult +C0161220|T037|PT|944.18|ICD9CM|Erythema [first degree] of multiple sites of wrist(s) and hand(s)|Erythema [first degree] of multiple sites of wrist(s) and hand(s) +C0161221|T037|HT|944.2|ICD9CM|Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s)|Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) +C0433361|T037|AB|944.20|ICD9CM|2nd deg burn hand NOS|2nd deg burn hand NOS +C0433361|T037|PT|944.20|ICD9CM|Blisters, epidermal loss [second degree] of hand, unspecified site|Blisters, epidermal loss [second degree] of hand, unspecified site +C0161223|T037|AB|944.21|ICD9CM|2nd deg burn finger|2nd deg burn finger +C0161223|T037|PT|944.21|ICD9CM|Blisters, epidermal loss [second degree] of single digit [finger (nail)] other than thumb|Blisters, epidermal loss [second degree] of single digit [finger (nail)] other than thumb +C0161224|T037|AB|944.22|ICD9CM|2nd deg burn thumb|2nd deg burn thumb +C0161224|T037|PT|944.22|ICD9CM|Blisters, epidermal loss [second degree] of thumb (nail)|Blisters, epidermal loss [second degree] of thumb (nail) +C0161225|T037|AB|944.23|ICD9CM|2nd deg burn mult finger|2nd deg burn mult finger +C0161225|T037|PT|944.23|ICD9CM|Blisters, epidermal loss [second degree] of two or more digits of hand, not including thumb|Blisters, epidermal loss [second degree] of two or more digits of hand, not including thumb +C0161226|T037|AB|944.24|ICD9CM|2 deg burn fingr w thumb|2 deg burn fingr w thumb +C0161226|T037|PT|944.24|ICD9CM|Blisters, epidermal loss [second degree] of two or more digits of hand including thumb|Blisters, epidermal loss [second degree] of two or more digits of hand including thumb +C0161227|T037|AB|944.25|ICD9CM|2nd deg burn palm|2nd deg burn palm +C0161227|T037|PT|944.25|ICD9CM|Blisters, epidermal loss [second degree] of palm|Blisters, epidermal loss [second degree] of palm +C0161228|T037|AB|944.26|ICD9CM|2 deg burn back of hand|2 deg burn back of hand +C0161228|T037|PT|944.26|ICD9CM|Blisters , epidermal loss [second degree] of back of hand|Blisters , epidermal loss [second degree] of back of hand +C1443011|T037|AB|944.27|ICD9CM|2nd deg burn wrist|2nd deg burn wrist +C1443011|T037|PT|944.27|ICD9CM|Blisters, epidermal loss [second degree] of wrist|Blisters, epidermal loss [second degree] of wrist +C0161230|T037|AB|944.28|ICD9CM|2nd deg burn hand-mult|2nd deg burn hand-mult +C0161230|T037|PT|944.28|ICD9CM|Blisters, epidermal loss [second degree] of multiple sites of wrist(s) and hand(s)|Blisters, epidermal loss [second degree] of multiple sites of wrist(s) and hand(s) +C0274134|T037|HT|944.3|ICD9CM|Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s)|Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) +C0161232|T037|AB|944.30|ICD9CM|3rd deg burn hand NOS|3rd deg burn hand NOS +C0161232|T037|PT|944.30|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of hand, unspecified site|Full-thickness skin loss [third degree, not otherwise specified] of hand, unspecified site +C0161233|T037|AB|944.31|ICD9CM|3rd deg burn finger|3rd deg burn finger +C0161234|T037|AB|944.32|ICD9CM|3rd deg burn thumb|3rd deg burn thumb +C0161234|T037|PT|944.32|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of thumb (nail)|Full-thickness skin loss [third degree, not otherwise specified] of thumb (nail) +C0161235|T037|AB|944.33|ICD9CM|3rd deg burn mult finger|3rd deg burn mult finger +C0161236|T037|AB|944.34|ICD9CM|3 deg burn fingr w thumb|3 deg burn fingr w thumb +C0161237|T037|AB|944.35|ICD9CM|3rd deg burn palm|3rd deg burn palm +C0161237|T037|PT|944.35|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of palm of hand|Full-thickness skin loss [third degree, not otherwise specified] of palm of hand +C0161238|T037|AB|944.36|ICD9CM|3 deg burn back of hand|3 deg burn back of hand +C0161238|T037|PT|944.36|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of back of hand|Full-thickness skin loss [third degree, not otherwise specified] of back of hand +C1443010|T037|AB|944.37|ICD9CM|3rd deg burn wrist|3rd deg burn wrist +C1443010|T037|PT|944.37|ICD9CM|Full-thickness skin loss [third degree, not otherwise specified] of wrist|Full-thickness skin loss [third degree, not otherwise specified] of wrist +C0161240|T037|AB|944.38|ICD9CM|3rd deg burn hand-mult|3rd deg burn hand-mult +C0161242|T037|AB|944.40|ICD9CM|Deep 3 deg brn hand NOS|Deep 3 deg brn hand NOS +C0161243|T037|AB|944.41|ICD9CM|Deep 3 deg burn finger|Deep 3 deg burn finger +C0161244|T037|AB|944.42|ICD9CM|Deep 3 deg burn thumb|Deep 3 deg burn thumb +C0161245|T037|AB|944.43|ICD9CM|Deep 3rd brn mult finger|Deep 3rd brn mult finger +C0161246|T037|AB|944.44|ICD9CM|Deep 3rd brn fngr w thmb|Deep 3rd brn fngr w thmb +C0161247|T037|AB|944.45|ICD9CM|Deep 3 deg burn palm|Deep 3 deg burn palm +C0161248|T037|AB|944.46|ICD9CM|Deep 3rd brn back of hnd|Deep 3rd brn back of hnd +C0161249|T037|AB|944.47|ICD9CM|Deep 3 deg burn wrist|Deep 3 deg burn wrist +C0161250|T037|AB|944.48|ICD9CM|Deep 3 deg brn hand-mult|Deep 3 deg brn hand-mult +C0161252|T037|AB|944.50|ICD9CM|3rd brn w loss-hand NOS|3rd brn w loss-hand NOS +C0161253|T037|AB|944.51|ICD9CM|3rd burn w loss-finger|3rd burn w loss-finger +C0161254|T037|AB|944.52|ICD9CM|3rd burn w loss-thumb|3rd burn w loss-thumb +C0161254|T037|PT|944.52|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of thumb (nail)|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of thumb (nail) +C0161255|T037|AB|944.53|ICD9CM|3rd brn w loss-mult fngr|3rd brn w loss-mult fngr +C0161256|T037|AB|944.54|ICD9CM|3rd brn w loss-fngr/thmb|3rd brn w loss-fngr/thmb +C0161257|T037|AB|944.55|ICD9CM|3rd burn w loss-palm|3rd burn w loss-palm +C0161257|T037|PT|944.55|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of palm of hand|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of palm of hand +C0161258|T037|AB|944.56|ICD9CM|3rd brn w loss-bk of hnd|3rd brn w loss-bk of hnd +C0161258|T037|PT|944.56|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of back of hand|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of back of hand +C0161259|T037|AB|944.57|ICD9CM|3rd burn w loss-wrist|3rd burn w loss-wrist +C0161259|T037|PT|944.57|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of wrist|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of wrist +C0161260|T037|AB|944.58|ICD9CM|3rd brn w loss hand-mult|3rd brn w loss hand-mult +C0274137|T037|HT|945|ICD9CM|Burn of lower limb(s)|Burn of lower limb(s) +C1812618|T037|HT|945.0|ICD9CM|Burn of lower limb(s), unspecified degree|Burn of lower limb(s), unspecified degree +C1812617|T037|AB|945.00|ICD9CM|Burn NOS leg-unspec|Burn NOS leg-unspec +C1812617|T037|PT|945.00|ICD9CM|Burn of unspecified degree of lower limb [leg], unspecified site|Burn of unspecified degree of lower limb [leg], unspecified site +C0161263|T037|AB|945.01|ICD9CM|Burn NOS toe|Burn NOS toe +C0161263|T037|PT|945.01|ICD9CM|Burn of unspecified degree of toe(s) (nail)|Burn of unspecified degree of toe(s) (nail) +C0274167|T037|AB|945.02|ICD9CM|Burn NOS foot|Burn NOS foot +C0274167|T037|PT|945.02|ICD9CM|Burn of unspecified degree of foot|Burn of unspecified degree of foot +C0274161|T037|AB|945.03|ICD9CM|Burn NOS ankle|Burn NOS ankle +C0274161|T037|PT|945.03|ICD9CM|Burn of unspecified degree of ankle|Burn of unspecified degree of ankle +C0274155|T037|AB|945.04|ICD9CM|Burn NOS lower leg|Burn NOS lower leg +C0274155|T037|PT|945.04|ICD9CM|Burn of unspecified degree of lower leg|Burn of unspecified degree of lower leg +C0274149|T037|AB|945.05|ICD9CM|Burn NOS knee|Burn NOS knee +C0274149|T037|PT|945.05|ICD9CM|Burn of unspecified degree of knee|Burn of unspecified degree of knee +C0274143|T037|AB|945.06|ICD9CM|Burn NOS thigh|Burn NOS thigh +C0274143|T037|PT|945.06|ICD9CM|Burn of unspecified degree of thigh [any part]|Burn of unspecified degree of thigh [any part] +C0161269|T037|AB|945.09|ICD9CM|Burn NOS leg-multiple|Burn NOS leg-multiple +C0161269|T037|PT|945.09|ICD9CM|Burn of unspecified degree of multiple sites of lower limb(s)|Burn of unspecified degree of multiple sites of lower limb(s) +C0161270|T037|HT|945.1|ICD9CM|Erythema due to burn [first degree] of lower limb(s)|Erythema due to burn [first degree] of lower limb(s) +C0161271|T037|AB|945.10|ICD9CM|1st deg burn leg NOS|1st deg burn leg NOS +C0161271|T037|PT|945.10|ICD9CM|Erythema [first degree] of lower limb [leg], unspecified site|Erythema [first degree] of lower limb [leg], unspecified site +C0161272|T037|AB|945.11|ICD9CM|1st deg burn toe|1st deg burn toe +C0161272|T037|PT|945.11|ICD9CM|Erythema [first degree] of toe(s) (nail)|Erythema [first degree] of toe(s) (nail) +C0161273|T037|AB|945.12|ICD9CM|1st deg burn foot|1st deg burn foot +C0161273|T037|PT|945.12|ICD9CM|Erythema [first degree] of foot|Erythema [first degree] of foot +C0161274|T037|AB|945.13|ICD9CM|1st deg burn ankle|1st deg burn ankle +C0161274|T037|PT|945.13|ICD9CM|Erythema [first degree] of ankle|Erythema [first degree] of ankle +C0161275|T037|AB|945.14|ICD9CM|1st deg burn lower leg|1st deg burn lower leg +C0161275|T037|PT|945.14|ICD9CM|Erythema [first degree] of lower leg|Erythema [first degree] of lower leg +C0161276|T037|AB|945.15|ICD9CM|1st deg burn knee|1st deg burn knee +C0161276|T037|PT|945.15|ICD9CM|Erythema [first degree] of knee|Erythema [first degree] of knee +C0161277|T037|AB|945.16|ICD9CM|1st deg burn thigh|1st deg burn thigh +C0161277|T037|PT|945.16|ICD9CM|Erythema [first degree] of thigh [any part]|Erythema [first degree] of thigh [any part] +C0161278|T037|AB|945.19|ICD9CM|1st deg burn leg-mult|1st deg burn leg-mult +C0161278|T037|PT|945.19|ICD9CM|Erythema [first degree] of multiple sites of lower limb(s)|Erythema [first degree] of multiple sites of lower limb(s) +C0161279|T037|HT|945.2|ICD9CM|Blisters with epidermal loss due to burn [second degree] of lower limb(s)|Blisters with epidermal loss due to burn [second degree] of lower limb(s) +C0161280|T037|AB|945.20|ICD9CM|2nd deg burn leg NOS|2nd deg burn leg NOS +C0161280|T037|PT|945.20|ICD9CM|Blisters, epidermal loss [second degree] of lower limb [leg], unspecified site|Blisters, epidermal loss [second degree] of lower limb [leg], unspecified site +C0161281|T037|AB|945.21|ICD9CM|2nd deg burn toe|2nd deg burn toe +C0161281|T037|PT|945.21|ICD9CM|Blisters, epidermal loss [second degree] of toe(s) (nail)|Blisters, epidermal loss [second degree] of toe(s) (nail) +C0161282|T037|AB|945.22|ICD9CM|2nd deg burn foot|2nd deg burn foot +C0161282|T037|PT|945.22|ICD9CM|Blisters, epidermal loss [second degree] of foot|Blisters, epidermal loss [second degree] of foot +C0161283|T037|AB|945.23|ICD9CM|2nd deg burn ankle|2nd deg burn ankle +C0161283|T037|PT|945.23|ICD9CM|Blisters, epidermal loss [second degree] of ankle|Blisters, epidermal loss [second degree] of ankle +C0161284|T037|AB|945.24|ICD9CM|2nd deg burn lower leg|2nd deg burn lower leg +C0161284|T037|PT|945.24|ICD9CM|Blisters, epidermal loss [second degree] of lower leg|Blisters, epidermal loss [second degree] of lower leg +C0161285|T037|AB|945.25|ICD9CM|2nd deg burn knee|2nd deg burn knee +C0161285|T037|PT|945.25|ICD9CM|Blisters, epidermal loss [second degree] of knee|Blisters, epidermal loss [second degree] of knee +C0161286|T037|AB|945.26|ICD9CM|2nd deg burn thigh|2nd deg burn thigh +C0161286|T037|PT|945.26|ICD9CM|Blisters, epidermal loss [second degree] of thigh [any part]|Blisters, epidermal loss [second degree] of thigh [any part] +C0161287|T037|AB|945.29|ICD9CM|2nd deg burn leg-mult|2nd deg burn leg-mult +C0161287|T037|PT|945.29|ICD9CM|Blisters, epidermal loss [second degree] of multiple sites of lower limb(s)|Blisters, epidermal loss [second degree] of multiple sites of lower limb(s) +C0161288|T037|HT|945.3|ICD9CM|Full-thickness skin loss due to burn [third degree NOS] of lower limb(s)|Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) +C0161289|T037|AB|945.30|ICD9CM|3rd deg burn leg NOS|3rd deg burn leg NOS +C0161289|T037|PT|945.30|ICD9CM|Full-thickness skin loss [third degree NOS] of lower limb [leg] unspecified site|Full-thickness skin loss [third degree NOS] of lower limb [leg] unspecified site +C0161290|T037|AB|945.31|ICD9CM|3rd deg burn toe|3rd deg burn toe +C0161290|T037|PT|945.31|ICD9CM|Full-thickness skin loss [third degree NOS] of toe(s) (nail)|Full-thickness skin loss [third degree NOS] of toe(s) (nail) +C0161291|T037|AB|945.32|ICD9CM|3rd deg burn foot|3rd deg burn foot +C0161291|T037|PT|945.32|ICD9CM|Full-thickness skin loss [third degree NOS] of foot|Full-thickness skin loss [third degree NOS] of foot +C0161292|T037|AB|945.33|ICD9CM|3rd deg burn ankle|3rd deg burn ankle +C0161292|T037|PT|945.33|ICD9CM|Full-thickness skin loss [third degree NOS] of ankle|Full-thickness skin loss [third degree NOS] of ankle +C0161293|T037|AB|945.34|ICD9CM|3rd deg burn low leg|3rd deg burn low leg +C0161293|T037|PT|945.34|ICD9CM|Full-thickness skin loss [third degree nos] of lower leg|Full-thickness skin loss [third degree nos] of lower leg +C0161294|T037|AB|945.35|ICD9CM|3rd deg burn knee|3rd deg burn knee +C0161294|T037|PT|945.35|ICD9CM|Full-thickness skin loss [third degree NOS] of knee|Full-thickness skin loss [third degree NOS] of knee +C0161295|T037|AB|945.36|ICD9CM|3rd deg burn thigh|3rd deg burn thigh +C0161295|T037|PT|945.36|ICD9CM|Full-thickness skin loss [third degree NOS] of thigh [any part]|Full-thickness skin loss [third degree NOS] of thigh [any part] +C0161296|T037|AB|945.39|ICD9CM|3rd deg burn leg-mult|3rd deg burn leg-mult +C0161296|T037|PT|945.39|ICD9CM|Full-thickness skin loss [third degree NOS] of multiple sites of lower limb(s)|Full-thickness skin loss [third degree NOS] of multiple sites of lower limb(s) +C0161298|T037|AB|945.40|ICD9CM|Deep 3rd deg brn leg NOS|Deep 3rd deg brn leg NOS +C0375683|T037|AB|945.41|ICD9CM|Deep 3rd deg burn toe|Deep 3rd deg burn toe +C0161300|T037|AB|945.42|ICD9CM|Deep 3rd deg burn foot|Deep 3rd deg burn foot +C0161301|T037|AB|945.43|ICD9CM|Deep 3rd deg burn ankle|Deep 3rd deg burn ankle +C0161302|T037|AB|945.44|ICD9CM|Deep 3rd deg brn low leg|Deep 3rd deg brn low leg +C0161303|T037|AB|945.45|ICD9CM|Deep 3rd deg burn knee|Deep 3rd deg burn knee +C0161304|T037|AB|945.46|ICD9CM|Deep 3rd deg burn thigh|Deep 3rd deg burn thigh +C0161305|T037|AB|945.49|ICD9CM|Deep 3 deg burn leg-mult|Deep 3 deg burn leg-mult +C0161307|T037|AB|945.50|ICD9CM|3 deg brn w loss-leg NOS|3 deg brn w loss-leg NOS +C0375684|T037|AB|945.51|ICD9CM|3 deg burn w loss-toe|3 deg burn w loss-toe +C0375684|T037|PT|945.51|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of toe(s) (nail)|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of toe(s) (nail) +C0161309|T037|AB|945.52|ICD9CM|3 deg burn w loss-foot|3 deg burn w loss-foot +C0161309|T037|PT|945.52|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of foot|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of foot +C0161310|T037|AB|945.53|ICD9CM|3 deg burn w loss-ankle|3 deg burn w loss-ankle +C0161310|T037|PT|945.53|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ankle|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ankle +C0161311|T037|AB|945.54|ICD9CM|3 deg brn w loss-low leg|3 deg brn w loss-low leg +C0161311|T037|PT|945.54|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lower leg|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lower leg +C0161312|T037|AB|945.55|ICD9CM|3 deg burn w loss-knee|3 deg burn w loss-knee +C0161312|T037|PT|945.55|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of knee|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of knee +C0161313|T037|AB|945.56|ICD9CM|3 deg burn w loss-thigh|3 deg burn w loss-thigh +C0161314|T037|AB|945.59|ICD9CM|3 deg brn w loss leg-mlt|3 deg brn w loss leg-mlt +C3665447|T037|HT|946|ICD9CM|Burns of multiple specified sites|Burns of multiple specified sites +C1812616|T037|AB|946.0|ICD9CM|Burn NOS multiple site|Burn NOS multiple site +C1812616|T037|PT|946.0|ICD9CM|Burns of multiple specified sites, unspecified degree|Burns of multiple specified sites, unspecified degree +C0161316|T037|AB|946.1|ICD9CM|1st deg burn mult site|1st deg burn mult site +C0161316|T037|PT|946.1|ICD9CM|Erythema [first degree] of multiple specified sites|Erythema [first degree] of multiple specified sites +C0161317|T037|AB|946.2|ICD9CM|2nd deg burn mult site|2nd deg burn mult site +C0161317|T037|PT|946.2|ICD9CM|Blisters, epidermal loss [second degree] of multiple specified sites|Blisters, epidermal loss [second degree] of multiple specified sites +C0161318|T037|AB|946.3|ICD9CM|3rd deg burn mult site|3rd deg burn mult site +C0161318|T037|PT|946.3|ICD9CM|Full-thickness skin loss [third degree NOS] of multiple specified sites|Full-thickness skin loss [third degree NOS] of multiple specified sites +C0161319|T037|AB|946.4|ICD9CM|Deep 3 deg brn mult site|Deep 3 deg brn mult site +C0161320|T037|AB|946.5|ICD9CM|3rd brn w loss-mult site|3rd brn w loss-mult site +C0006420|T037|HT|947|ICD9CM|Burn of internal organs|Burn of internal organs +C0161321|T037|AB|947.0|ICD9CM|Burn of mouth & pharynx|Burn of mouth & pharynx +C0161321|T037|PT|947.0|ICD9CM|Burn of mouth and pharynx|Burn of mouth and pharynx +C0161322|T037|AB|947.1|ICD9CM|Burn larynx/trachea/lung|Burn larynx/trachea/lung +C0161322|T037|PT|947.1|ICD9CM|Burn of larynx, trachea, and lung|Burn of larynx, trachea, and lung +C0162286|T037|AB|947.2|ICD9CM|Burn of esophagus|Burn of esophagus +C0162286|T037|PT|947.2|ICD9CM|Burn of esophagus|Burn of esophagus +C0161323|T037|PT|947.3|ICD9CM|Burn of gastrointestinal tract|Burn of gastrointestinal tract +C0161323|T037|AB|947.3|ICD9CM|Burn of GI tract|Burn of GI tract +C0433217|T037|AB|947.4|ICD9CM|Burn of vagina & uterus|Burn of vagina & uterus +C0433217|T037|PT|947.4|ICD9CM|Burn of vagina and uterus|Burn of vagina and uterus +C0161325|T037|AB|947.8|ICD9CM|Burn internal organ NEC|Burn internal organ NEC +C0161325|T037|PT|947.8|ICD9CM|Burn of other specified sites of internal organs|Burn of other specified sites of internal organs +C0006420|T037|AB|947.9|ICD9CM|Burn internal organ NOS|Burn internal organ NOS +C0006420|T037|PT|947.9|ICD9CM|Burn of internal organs, unspecified site|Burn of internal organs, unspecified site +C0433219|T037|HT|948|ICD9CM|Burns classified according to extent of body surface involved|Burns classified according to extent of body surface involved +C0161327|T037|HT|948.0|ICD9CM|Burn [any degree] involving less than 10 percent of body surface|Burn [any degree] involving less than 10 percent of body surface +C0161328|T037|AB|948.00|ICD9CM|Bdy brn < 10%/3d deg NOS|Bdy brn < 10%/3d deg NOS +C0161329|T037|HT|948.1|ICD9CM|Burn [any degree] involving 10-19 percent of body surface|Burn [any degree] involving 10-19 percent of body surface +C0161330|T037|AB|948.10|ICD9CM|10-19% bdy brn/3 deg NOS|10-19% bdy brn/3 deg NOS +C0161331|T037|AB|948.11|ICD9CM|10-19% bdy brn/10-19% 3d|10-19% bdy brn/10-19% 3d +C0161331|T037|PT|948.11|ICD9CM|Burn [any degree] involving 10-19 percent of body surface with third degree burn, 10-19%|Burn [any degree] involving 10-19 percent of body surface with third degree burn, 10-19% +C0161332|T037|HT|948.2|ICD9CM|Burn [any degree] involving 20-29 percent of body surface|Burn [any degree] involving 20-29 percent of body surface +C0161333|T037|AB|948.20|ICD9CM|20-29% bdy brn/3 deg NOS|20-29% bdy brn/3 deg NOS +C0161334|T037|AB|948.21|ICD9CM|20-29% bdy brn/10-19% 3d|20-29% bdy brn/10-19% 3d +C0161334|T037|PT|948.21|ICD9CM|Burn [any degree] involving 20-29 percent of body surface with third degree burn, 10-19%|Burn [any degree] involving 20-29 percent of body surface with third degree burn, 10-19% +C0161335|T037|AB|948.22|ICD9CM|20-29% bdy brn/20-29% 3d|20-29% bdy brn/20-29% 3d +C0161335|T037|PT|948.22|ICD9CM|Burn [any degree] involving 20-29 percent of body surface with third degree burn, 20-29%|Burn [any degree] involving 20-29 percent of body surface with third degree burn, 20-29% +C0161336|T037|HT|948.3|ICD9CM|Burn [any degree] involving 30-39 percent of body surface|Burn [any degree] involving 30-39 percent of body surface +C0161337|T037|AB|948.30|ICD9CM|30-39% bdy brn/3 deg NOS|30-39% bdy brn/3 deg NOS +C0161338|T037|AB|948.31|ICD9CM|30-39% bdy brn/10-19% 3d|30-39% bdy brn/10-19% 3d +C0161338|T037|PT|948.31|ICD9CM|Burn [any degree] involving 30-39 percent of body surface with third degree burn, 10-19%|Burn [any degree] involving 30-39 percent of body surface with third degree burn, 10-19% +C0161339|T037|AB|948.32|ICD9CM|30-39% bdy brn/20-29% 3d|30-39% bdy brn/20-29% 3d +C0161339|T037|PT|948.32|ICD9CM|Burn [any degree] involving 30-39 percent of body surface with third degree burn, 20-29%|Burn [any degree] involving 30-39 percent of body surface with third degree burn, 20-29% +C0161340|T037|AB|948.33|ICD9CM|30-39% bdy brn/30-39% 3d|30-39% bdy brn/30-39% 3d +C0161340|T037|PT|948.33|ICD9CM|Burn [any degree] involving 30-39 percent of body surface with third degree burn, 30-39%|Burn [any degree] involving 30-39 percent of body surface with third degree burn, 30-39% +C0161341|T037|HT|948.4|ICD9CM|Burn [any degree] involving 40-49 percent of body surface|Burn [any degree] involving 40-49 percent of body surface +C0161342|T037|AB|948.40|ICD9CM|40-49% bdy brn/3 deg NOS|40-49% bdy brn/3 deg NOS +C0161343|T037|AB|948.41|ICD9CM|40-49% bdy brn/10-19% 3d|40-49% bdy brn/10-19% 3d +C0161343|T037|PT|948.41|ICD9CM|Burn [any degree] involving 40-49 percent of body surface with third degree burn, 10-19%|Burn [any degree] involving 40-49 percent of body surface with third degree burn, 10-19% +C0161344|T037|AB|948.42|ICD9CM|40-49% bdy brn/20-29% 3d|40-49% bdy brn/20-29% 3d +C0161344|T037|PT|948.42|ICD9CM|Burn [any degree] involving 40-49 percent of body surface with third degree burn, 20-29%|Burn [any degree] involving 40-49 percent of body surface with third degree burn, 20-29% +C0161345|T037|AB|948.43|ICD9CM|40-49% bdy brn/30-39% 3d|40-49% bdy brn/30-39% 3d +C0161345|T037|PT|948.43|ICD9CM|Burn [any degree] involving 40-49 percent of body surface with third degree burn, 30-39%|Burn [any degree] involving 40-49 percent of body surface with third degree burn, 30-39% +C0161346|T037|AB|948.44|ICD9CM|40-49% bdy brn/40-49% 3d|40-49% bdy brn/40-49% 3d +C0161346|T037|PT|948.44|ICD9CM|Burn [any degree] involving 40-49 percent of body surface with third degree burn, 40-49%|Burn [any degree] involving 40-49 percent of body surface with third degree burn, 40-49% +C0161347|T037|HT|948.5|ICD9CM|Burn [any degree] involving 50-59 percent of body surface|Burn [any degree] involving 50-59 percent of body surface +C0161348|T037|AB|948.50|ICD9CM|50-59% bdy brn/3 deg NOS|50-59% bdy brn/3 deg NOS +C0161349|T037|AB|948.51|ICD9CM|50-59% bdy brn/10-19% 3d|50-59% bdy brn/10-19% 3d +C0161349|T037|PT|948.51|ICD9CM|Burn [any degree] involving 50-59 percent of body surface with third degree burn, 10-19%|Burn [any degree] involving 50-59 percent of body surface with third degree burn, 10-19% +C0161350|T037|AB|948.52|ICD9CM|50-59% bdy brn/20-29% 3d|50-59% bdy brn/20-29% 3d +C0161350|T037|PT|948.52|ICD9CM|Burn [any degree] involving 50-59 percent of body surface with third degree burn, 20-29%|Burn [any degree] involving 50-59 percent of body surface with third degree burn, 20-29% +C0161351|T037|AB|948.53|ICD9CM|50-59% bdy brn/30-39% 3d|50-59% bdy brn/30-39% 3d +C0161351|T037|PT|948.53|ICD9CM|Burn [any degree] involving 50-59 percent of body surface with third degree burn, 30-39%|Burn [any degree] involving 50-59 percent of body surface with third degree burn, 30-39% +C0161352|T037|AB|948.54|ICD9CM|50-59% bdy brn/40-49% 3d|50-59% bdy brn/40-49% 3d +C0161352|T037|PT|948.54|ICD9CM|Burn [any degree] involving 50-59 percent of body surface with third degree burn, 40-49%|Burn [any degree] involving 50-59 percent of body surface with third degree burn, 40-49% +C0161353|T037|AB|948.55|ICD9CM|50-59% bdy brn/50-59% 3d|50-59% bdy brn/50-59% 3d +C0161353|T037|PT|948.55|ICD9CM|Burn [any degree] involving 50-59 percent of body surface with third degree burn, 50-59%|Burn [any degree] involving 50-59 percent of body surface with third degree burn, 50-59% +C0161354|T037|HT|948.6|ICD9CM|Burn [any degree] involving 60-69 percent of body surface|Burn [any degree] involving 60-69 percent of body surface +C0161355|T037|AB|948.60|ICD9CM|60-69% bdy brn/3 deg NOS|60-69% bdy brn/3 deg NOS +C0161356|T037|AB|948.61|ICD9CM|60-69% bdy brn/10-19% 3d|60-69% bdy brn/10-19% 3d +C0161356|T037|PT|948.61|ICD9CM|Burn [any degree] involving 60-69 percent of body surface with third degree burn, 10-19%|Burn [any degree] involving 60-69 percent of body surface with third degree burn, 10-19% +C0161357|T037|AB|948.62|ICD9CM|60-69% bdy brn/20-29% 3d|60-69% bdy brn/20-29% 3d +C0161357|T037|PT|948.62|ICD9CM|Burn [any degree] involving 60-69 percent of body surface with third degree burn, 20-29%|Burn [any degree] involving 60-69 percent of body surface with third degree burn, 20-29% +C0161358|T037|AB|948.63|ICD9CM|60-69% bdy brn/30-39% 3d|60-69% bdy brn/30-39% 3d +C0161358|T037|PT|948.63|ICD9CM|Burn [any degree] involving 60-69 percent of body surface with third degree burn, 30-39%|Burn [any degree] involving 60-69 percent of body surface with third degree burn, 30-39% +C0161359|T037|AB|948.64|ICD9CM|60-69% bdy brn/40-49% 3d|60-69% bdy brn/40-49% 3d +C0161359|T037|PT|948.64|ICD9CM|Burn [any degree] involving 60-69 percent of body surface with third degree burn, 40-49%|Burn [any degree] involving 60-69 percent of body surface with third degree burn, 40-49% +C0161360|T037|AB|948.65|ICD9CM|60-69% bdy brn/50-59% 3d|60-69% bdy brn/50-59% 3d +C0161360|T037|PT|948.65|ICD9CM|Burn (any degree) involving 60-69 percent of body surface with third degree burn, 50-59%|Burn (any degree) involving 60-69 percent of body surface with third degree burn, 50-59% +C0161361|T037|AB|948.66|ICD9CM|60-69% bdy brn/60-69% 3d|60-69% bdy brn/60-69% 3d +C0161361|T037|PT|948.66|ICD9CM|Burn [any degree] involving 60-69 percent of body surface with third degree burn, 60-69%|Burn [any degree] involving 60-69 percent of body surface with third degree burn, 60-69% +C0161362|T037|HT|948.7|ICD9CM|Burn [any degree] involving 70-79 percent of body surface|Burn [any degree] involving 70-79 percent of body surface +C0161363|T037|AB|948.70|ICD9CM|70-79% bdy brn/3 deg NOS|70-79% bdy brn/3 deg NOS +C0161364|T037|AB|948.71|ICD9CM|70-79% bdy brn/10-19% 3d|70-79% bdy brn/10-19% 3d +C0161364|T037|PT|948.71|ICD9CM|Burn [any degree] involving 70-79 percent of body surface with third degree burn, 10-19%|Burn [any degree] involving 70-79 percent of body surface with third degree burn, 10-19% +C0161365|T037|AB|948.72|ICD9CM|70-79% bdy brn/20-29% 3d|70-79% bdy brn/20-29% 3d +C0161365|T037|PT|948.72|ICD9CM|Burn [any degree] involving 70-79 percent of body surface with third degree burn, 20-29%|Burn [any degree] involving 70-79 percent of body surface with third degree burn, 20-29% +C0161366|T037|AB|948.73|ICD9CM|70-79% bdy brn/30-39% 3d|70-79% bdy brn/30-39% 3d +C0161366|T037|PT|948.73|ICD9CM|Burn [any degree] involving 70-79 percent of body surface with third degree burn, 30-39%|Burn [any degree] involving 70-79 percent of body surface with third degree burn, 30-39% +C0161367|T037|AB|948.74|ICD9CM|70-79% bdy brn/40-49% 3d|70-79% bdy brn/40-49% 3d +C0161367|T037|PT|948.74|ICD9CM|Burn [any degree] involving 70-79 percent of body surface with third degree burn, 40-49%|Burn [any degree] involving 70-79 percent of body surface with third degree burn, 40-49% +C0161368|T037|AB|948.75|ICD9CM|70-79% bdy brn/50-59% 3d|70-79% bdy brn/50-59% 3d +C0161368|T037|PT|948.75|ICD9CM|Burn [any degree] involving 70-79 percent of body surface with third degree burn, 50-59%|Burn [any degree] involving 70-79 percent of body surface with third degree burn, 50-59% +C0161369|T037|AB|948.76|ICD9CM|70-79% bdy brn/60-69% 3d|70-79% bdy brn/60-69% 3d +C0161369|T037|PT|948.76|ICD9CM|Burn [any degree] involving 70-79 percent of body surface with third degree burn, 60-69%|Burn [any degree] involving 70-79 percent of body surface with third degree burn, 60-69% +C0161370|T037|AB|948.77|ICD9CM|70-79% bdy brn/70-79% 3d|70-79% bdy brn/70-79% 3d +C0161370|T037|PT|948.77|ICD9CM|Burn [any degree] involving 70-79 percent of body surface with third degree burn, 70-79%|Burn [any degree] involving 70-79 percent of body surface with third degree burn, 70-79% +C0161371|T037|HT|948.8|ICD9CM|Burn [any degree] involving 80-89 percent of body surface|Burn [any degree] involving 80-89 percent of body surface +C0161372|T037|AB|948.80|ICD9CM|80-89% bdy brn/3 deg NOS|80-89% bdy brn/3 deg NOS +C0161373|T037|AB|948.81|ICD9CM|80-89% bdy brn/10-19% 3d|80-89% bdy brn/10-19% 3d +C0161373|T037|PT|948.81|ICD9CM|Burn [any degree] involving 80-89 percent of body surface with third degree burn, 10-19%|Burn [any degree] involving 80-89 percent of body surface with third degree burn, 10-19% +C0161374|T037|AB|948.82|ICD9CM|80-89% bdy brn/20-29% 3d|80-89% bdy brn/20-29% 3d +C0161374|T037|PT|948.82|ICD9CM|Burn [any degree] involving 80-89 percent of body surface with third degree burn, 20-29%|Burn [any degree] involving 80-89 percent of body surface with third degree burn, 20-29% +C0161375|T037|AB|948.83|ICD9CM|80-89% bdy brn/30-39% 3d|80-89% bdy brn/30-39% 3d +C0161375|T037|PT|948.83|ICD9CM|Burn [any degree] involving 80-89 percent of body surface with third degree burn, 30-39%|Burn [any degree] involving 80-89 percent of body surface with third degree burn, 30-39% +C0161376|T037|AB|948.84|ICD9CM|80-89% bdy brn/40-49% 3d|80-89% bdy brn/40-49% 3d +C0161376|T037|PT|948.84|ICD9CM|Burn [any degree] involving 80-89 percent of body surface with third degree burn, 40-49%|Burn [any degree] involving 80-89 percent of body surface with third degree burn, 40-49% +C0161377|T037|AB|948.85|ICD9CM|80-89% bdy brn/50-59% 3d|80-89% bdy brn/50-59% 3d +C0161377|T037|PT|948.85|ICD9CM|Burn [any degree] involving 80-89 percent of body surface with third degree burn, 50-59%|Burn [any degree] involving 80-89 percent of body surface with third degree burn, 50-59% +C0161378|T037|AB|948.86|ICD9CM|80-89% bdy brn/60-69% 3d|80-89% bdy brn/60-69% 3d +C0161378|T037|PT|948.86|ICD9CM|Burn [any degree] involving 80-89 percent of body surface with third degree burn, 60-69%|Burn [any degree] involving 80-89 percent of body surface with third degree burn, 60-69% +C0161379|T037|AB|948.87|ICD9CM|80-89% bdy brn/70-79% 3d|80-89% bdy brn/70-79% 3d +C0161379|T037|PT|948.87|ICD9CM|Burn [any degree] involving 80-89 percent of body surface with third degree burn, 70-79%|Burn [any degree] involving 80-89 percent of body surface with third degree burn, 70-79% +C0161380|T037|AB|948.88|ICD9CM|80-89% bdy brn/80-89% 3d|80-89% bdy brn/80-89% 3d +C0161380|T037|PT|948.88|ICD9CM|Burn [any degree] involving 80-89 percent of body surface with third degree burn, 80-89%|Burn [any degree] involving 80-89 percent of body surface with third degree burn, 80-89% +C0161381|T037|HT|948.9|ICD9CM|Burn [any degree] involving 90 percent or more of body surface|Burn [any degree] involving 90 percent or more of body surface +C0161382|T037|AB|948.90|ICD9CM|90% + bdy brn/3d deg NOS|90% + bdy brn/3d deg NOS +C0161383|T037|AB|948.91|ICD9CM|90% + bdy brn/10-19% 3rd|90% + bdy brn/10-19% 3rd +C0161383|T037|PT|948.91|ICD9CM|Burn [any degree] involving 90 percent or more of body surface with third degree burn, 10-19%|Burn [any degree] involving 90 percent or more of body surface with third degree burn, 10-19% +C0161384|T037|AB|948.92|ICD9CM|90% + bdy brn/20-29% 3rd|90% + bdy brn/20-29% 3rd +C0161384|T037|PT|948.92|ICD9CM|Burn [any degree] involving 90 percent or more of body surface with third degree burn, 20-29%|Burn [any degree] involving 90 percent or more of body surface with third degree burn, 20-29% +C0161385|T037|AB|948.93|ICD9CM|90% + bdy brn/30-39% 3rd|90% + bdy brn/30-39% 3rd +C0161385|T037|PT|948.93|ICD9CM|Burn [any degree] involving 90 percent or more of body surface with third degree burn, 30-39%|Burn [any degree] involving 90 percent or more of body surface with third degree burn, 30-39% +C0161386|T037|AB|948.94|ICD9CM|90% + bdy brn/40-49% 3rd|90% + bdy brn/40-49% 3rd +C0161386|T037|PT|948.94|ICD9CM|Burn [any degree] involving 90 percent or more of body surface with third degree burn, 40-49%|Burn [any degree] involving 90 percent or more of body surface with third degree burn, 40-49% +C0161387|T037|AB|948.95|ICD9CM|90% + bdy brn/50-59% 3rd|90% + bdy brn/50-59% 3rd +C0161387|T037|PT|948.95|ICD9CM|Burn [any degree] involving 90 percent or more of body surface with third degree burn, 50-59%|Burn [any degree] involving 90 percent or more of body surface with third degree burn, 50-59% +C0161388|T037|AB|948.96|ICD9CM|90% + bdy brn/60-69% 3rd|90% + bdy brn/60-69% 3rd +C0161388|T037|PT|948.96|ICD9CM|Burn [any degree] involving 90 percent or more of body surface with third degree burn, 60-69%|Burn [any degree] involving 90 percent or more of body surface with third degree burn, 60-69% +C0161389|T037|AB|948.97|ICD9CM|90% + bdy brn/70-79% 3rd|90% + bdy brn/70-79% 3rd +C0161389|T037|PT|948.97|ICD9CM|Burn [any degree] involving 90 percent or more of body surface with third degree burn, 70-79%|Burn [any degree] involving 90 percent or more of body surface with third degree burn, 70-79% +C0161390|T037|AB|948.98|ICD9CM|90% + bdy brn/80-89% 3rd|90% + bdy brn/80-89% 3rd +C0161390|T037|PT|948.98|ICD9CM|Burn [any degree] involving 90 percent or more of body surface with third degree burn, 80-89%|Burn [any degree] involving 90 percent or more of body surface with third degree burn, 80-89% +C0161391|T037|AB|948.99|ICD9CM|90% + bdy brn/90% + 3rd|90% + bdy brn/90% + 3rd +C1812606|T037|HT|949|ICD9CM|Burn, unspecified site|Burn, unspecified site +C0006434|T037|AB|949.0|ICD9CM|Burn NOS|Burn NOS +C0006434|T037|PT|949.0|ICD9CM|Burn of unspecified site, unspecified degree|Burn of unspecified site, unspecified degree +C0332686|T037|AB|949.1|ICD9CM|1st degree burn NOS|1st degree burn NOS +C0332686|T037|PT|949.1|ICD9CM|Erythema [first degree], unspecified site|Erythema [first degree], unspecified site +C0332687|T037|AB|949.2|ICD9CM|2nd degree burn NOS|2nd degree burn NOS +C0332687|T037|PT|949.2|ICD9CM|Blisters, epidermal loss [second degree], unspecified site|Blisters, epidermal loss [second degree], unspecified site +C0375688|T037|AB|949.3|ICD9CM|3rd degree burn NOS|3rd degree burn NOS +C0375688|T037|PT|949.3|ICD9CM|Full-thickness skin loss [third degree nos]|Full-thickness skin loss [third degree nos] +C0161395|T037|AB|949.4|ICD9CM|Deep 3rd deg burn NOS|Deep 3rd deg burn NOS +C0161396|T037|AB|949.5|ICD9CM|3rd burn w loss-site NOS|3rd burn w loss-site NOS +C0161396|T037|PT|949.5|ICD9CM|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, unspecified|Deep necrosis of underlying tissues [deep third degree] with loss of a body part, unspecified +C0161397|T037|HT|950|ICD9CM|Injury to optic nerve and pathways|Injury to optic nerve and pathways +C0178330|T037|HT|950-957.99|ICD9CM|INJURY TO NERVES AND SPINAL CORD|INJURY TO NERVES AND SPINAL CORD +C0161398|T037|AB|950.0|ICD9CM|Optic nerve injury|Optic nerve injury +C0161398|T037|PT|950.0|ICD9CM|Optic nerve injury|Optic nerve injury +C0161399|T037|AB|950.1|ICD9CM|Injury to optic chiasm|Injury to optic chiasm +C0161399|T037|PT|950.1|ICD9CM|Injury to optic chiasm|Injury to optic chiasm +C0161400|T037|AB|950.2|ICD9CM|Injury to optic pathways|Injury to optic pathways +C0161400|T037|PT|950.2|ICD9CM|Injury to optic pathways|Injury to optic pathways +C0161401|T037|AB|950.3|ICD9CM|Injury to visual cortex|Injury to visual cortex +C0161401|T037|PT|950.3|ICD9CM|Injury to visual cortex|Injury to visual cortex +C0161397|T037|AB|950.9|ICD9CM|Inj optic nerv/path NOS|Inj optic nerv/path NOS +C0161397|T037|PT|950.9|ICD9CM|Injury to unspecified optic nerve and pathways|Injury to unspecified optic nerve and pathways +C0478205|T037|HT|951|ICD9CM|Injury to other cranial nerve(s)|Injury to other cranial nerve(s) +C1321926|T037|AB|951.0|ICD9CM|Injury oculomotor nerve|Injury oculomotor nerve +C1321926|T037|PT|951.0|ICD9CM|Injury to oculomotor nerve|Injury to oculomotor nerve +C0161405|T037|PT|951.1|ICD9CM|Injury to trochlear nerve|Injury to trochlear nerve +C0161405|T037|AB|951.1|ICD9CM|Injury trochlear nerve|Injury trochlear nerve +C0161406|T037|PT|951.2|ICD9CM|Injury to trigeminal nerve|Injury to trigeminal nerve +C0161406|T037|AB|951.2|ICD9CM|Injury trigeminal nerve|Injury trigeminal nerve +C0161407|T037|AB|951.3|ICD9CM|Injury abducens nerve|Injury abducens nerve +C0161407|T037|PT|951.3|ICD9CM|Injury to abducens nerve|Injury to abducens nerve +C0161408|T037|AB|951.4|ICD9CM|Injury to facial nerve|Injury to facial nerve +C0161408|T037|PT|951.4|ICD9CM|Injury to facial nerve|Injury to facial nerve +C0161409|T037|AB|951.5|ICD9CM|Injury to acoustic nerve|Injury to acoustic nerve +C0161409|T037|PT|951.5|ICD9CM|Injury to acoustic nerve|Injury to acoustic nerve +C0161410|T037|AB|951.6|ICD9CM|Injury accessory nerve|Injury accessory nerve +C0161410|T037|PT|951.6|ICD9CM|Injury to accessory nerve|Injury to accessory nerve +C0161411|T037|AB|951.7|ICD9CM|Injury hypoglossal nerve|Injury hypoglossal nerve +C0161411|T037|PT|951.7|ICD9CM|Injury to hypoglossal nerve|Injury to hypoglossal nerve +C0161412|T037|AB|951.8|ICD9CM|Injury cranial nerve NEC|Injury cranial nerve NEC +C0161412|T037|PT|951.8|ICD9CM|Injury to other specified cranial nerves|Injury to other specified cranial nerves +C0273483|T037|AB|951.9|ICD9CM|Injury cranial nerve NOS|Injury cranial nerve NOS +C0273483|T037|PT|951.9|ICD9CM|Injury to unspecified cranial nerve|Injury to unspecified cranial nerve +C0161414|T037|HT|952|ICD9CM|Spinal cord injury without evidence of spinal bone injury|Spinal cord injury without evidence of spinal bone injury +C0433858|T037|HT|952.0|ICD9CM|Cervical spinal cord injury without evidence of spinal bone injury|Cervical spinal cord injury without evidence of spinal bone injury +C0161416|T037|PT|952.00|ICD9CM|C1-C4 level with unspecified spinal cord injury|C1-C4 level with unspecified spinal cord injury +C0161416|T037|AB|952.00|ICD9CM|C1-c4 spin cord inj NOS|C1-c4 spin cord inj NOS +C0161417|T037|PT|952.01|ICD9CM|C1-C4 level with complete lesion of spinal cord|C1-C4 level with complete lesion of spinal cord +C0161417|T037|AB|952.01|ICD9CM|Complete les cord/c1-c4|Complete les cord/c1-c4 +C0161418|T037|AB|952.02|ICD9CM|Anterior cord synd/c1-c4|Anterior cord synd/c1-c4 +C0161418|T037|PT|952.02|ICD9CM|C1-C4 level with anterior cord syndrome|C1-C4 level with anterior cord syndrome +C0161419|T037|PT|952.03|ICD9CM|C1-C4 level with central cord syndrome|C1-C4 level with central cord syndrome +C0161419|T037|AB|952.03|ICD9CM|Central cord synd/c1-c4|Central cord synd/c1-c4 +C0161420|T037|PT|952.04|ICD9CM|C1-C4 level with other specified spinal cord injury|C1-C4 level with other specified spinal cord injury +C0161420|T037|AB|952.04|ICD9CM|C1-c4 spin cord inj NEC|C1-c4 spin cord inj NEC +C0161421|T037|PT|952.05|ICD9CM|C5-C7 level with unspecified spinal cord injury|C5-C7 level with unspecified spinal cord injury +C0161421|T037|AB|952.05|ICD9CM|C5-c7 spin cord inj NOS|C5-c7 spin cord inj NOS +C0161422|T037|PT|952.06|ICD9CM|C5-C7 level with complete lesion of spinal cord|C5-C7 level with complete lesion of spinal cord +C0161422|T037|AB|952.06|ICD9CM|Complete les cord/c5-c7|Complete les cord/c5-c7 +C0161423|T037|AB|952.07|ICD9CM|Anterior cord synd/c5-c7|Anterior cord synd/c5-c7 +C0161423|T037|PT|952.07|ICD9CM|C5-C7 level with anterior cord syndrome|C5-C7 level with anterior cord syndrome +C0161424|T037|PT|952.08|ICD9CM|C5-C7 level with central cord syndrome|C5-C7 level with central cord syndrome +C0161424|T037|AB|952.08|ICD9CM|Central cord synd/c5-c7|Central cord synd/c5-c7 +C0161425|T037|PT|952.09|ICD9CM|C5-C7 level with other specified spinal cord injury|C5-C7 level with other specified spinal cord injury +C0161425|T037|AB|952.09|ICD9CM|C5-c7 spin cord inj NEC|C5-c7 spin cord inj NEC +C0161426|T037|HT|952.1|ICD9CM|Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury|Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury +C0161427|T037|PT|952.10|ICD9CM|T1-T6 level with unspecified spinal cord injury|T1-T6 level with unspecified spinal cord injury +C0161427|T037|AB|952.10|ICD9CM|T1-t6 spin cord inj NOS|T1-t6 spin cord inj NOS +C0859375|T037|AB|952.11|ICD9CM|Complete les cord/t1-t6|Complete les cord/t1-t6 +C0859375|T037|PT|952.11|ICD9CM|T1-T6 level with complete lesion of spinal cord|T1-T6 level with complete lesion of spinal cord +C0859376|T037|AB|952.12|ICD9CM|Anterior cord synd/t1-t6|Anterior cord synd/t1-t6 +C0859376|T037|PT|952.12|ICD9CM|T1-T6 level with anterior cord syndrome|T1-T6 level with anterior cord syndrome +C0859377|T037|AB|952.13|ICD9CM|Central cord synd/t1-t6|Central cord synd/t1-t6 +C0859377|T037|PT|952.13|ICD9CM|T1-T6 level with central cord syndrome|T1-T6 level with central cord syndrome +C0859378|T037|PT|952.14|ICD9CM|T1-T6 level with other specified spinal cord injury|T1-T6 level with other specified spinal cord injury +C0859378|T037|AB|952.14|ICD9CM|T1-t6 spin cord inj NEC|T1-t6 spin cord inj NEC +C0161432|T037|PT|952.15|ICD9CM|T7-T12 level with unspecified spinal cord injury|T7-T12 level with unspecified spinal cord injury +C0161432|T037|AB|952.15|ICD9CM|T7-t12 spin cord inj NOS|T7-t12 spin cord inj NOS +C0859379|T037|AB|952.16|ICD9CM|Complete les cord/t7-t12|Complete les cord/t7-t12 +C0859379|T037|PT|952.16|ICD9CM|T7-T12 level with complete lesion of spinal cord|T7-T12 level with complete lesion of spinal cord +C0859380|T037|AB|952.17|ICD9CM|Anterior cord syn/t7-t12|Anterior cord syn/t7-t12 +C0859380|T037|PT|952.17|ICD9CM|T7-T12 level with anterior cord syndrome|T7-T12 level with anterior cord syndrome +C0859381|T037|AB|952.18|ICD9CM|Central cord syn/t7-t12|Central cord syn/t7-t12 +C0859381|T037|PT|952.18|ICD9CM|T7-T12 level with central cord syndrome|T7-T12 level with central cord syndrome +C0161436|T037|PT|952.19|ICD9CM|T7-T12 level with other specified spinal cord injury|T7-T12 level with other specified spinal cord injury +C0161436|T037|AB|952.19|ICD9CM|T7-t12 spin cord inj NEC|T7-t12 spin cord inj NEC +C0273520|T037|AB|952.2|ICD9CM|Lumbar spinal cord injur|Lumbar spinal cord injur +C0273520|T037|PT|952.2|ICD9CM|Lumbar spinal cord injury without evidence of spinal bone injury|Lumbar spinal cord injury without evidence of spinal bone injury +C0273521|T037|AB|952.3|ICD9CM|Sacral spinal cord injur|Sacral spinal cord injur +C0273521|T037|PT|952.3|ICD9CM|Sacral spinal cord injury without evidence of spinal bone injury|Sacral spinal cord injury without evidence of spinal bone injury +C0161439|T037|AB|952.4|ICD9CM|Cauda equina injury|Cauda equina injury +C0161439|T037|PT|952.4|ICD9CM|Cauda equina spinal cord injury without evidence of spinal bone injury|Cauda equina spinal cord injury without evidence of spinal bone injury +C0161440|T037|PT|952.8|ICD9CM|Multiple sites of spinal cord injury without evidence of spinal bone injury|Multiple sites of spinal cord injury without evidence of spinal bone injury +C0161440|T037|AB|952.8|ICD9CM|Spin cord inj-mult site|Spin cord inj-mult site +C0859273|T037|AB|952.9|ICD9CM|Spinal cord injury NOS|Spinal cord injury NOS +C0859273|T037|PT|952.9|ICD9CM|Unspecified site of spinal cord injury without evidence of spinal bone injury|Unspecified site of spinal cord injury without evidence of spinal bone injury +C0161441|T037|HT|953|ICD9CM|Injury to nerve roots and spinal plexus|Injury to nerve roots and spinal plexus +C0161442|T037|AB|953.0|ICD9CM|Cervical root injury|Cervical root injury +C0161442|T037|PT|953.0|ICD9CM|Injury to cervical nerve root|Injury to cervical nerve root +C1536686|T037|AB|953.1|ICD9CM|Dorsal root injury|Dorsal root injury +C1536686|T037|PT|953.1|ICD9CM|Injury to dorsal nerve root|Injury to dorsal nerve root +C0161444|T037|PT|953.2|ICD9CM|Injury to lumbar nerve root|Injury to lumbar nerve root +C0161444|T037|AB|953.2|ICD9CM|Lumbar root injury|Lumbar root injury +C0161445|T037|PT|953.3|ICD9CM|Injury to sacral nerve root|Injury to sacral nerve root +C0161445|T037|AB|953.3|ICD9CM|Sacral root injury|Sacral root injury +C0161446|T037|AB|953.4|ICD9CM|Brachial plexus injury|Brachial plexus injury +C0161446|T037|PT|953.4|ICD9CM|Injury to brachial plexus|Injury to brachial plexus +C0161447|T037|PT|953.5|ICD9CM|Injury to lumbosacral plexus|Injury to lumbosacral plexus +C0161447|T037|AB|953.5|ICD9CM|Lumbosacral plex injury|Lumbosacral plex injury +C0161448|T037|PT|953.8|ICD9CM|Injury to multiple sites of nerve roots and spinal plexus|Injury to multiple sites of nerve roots and spinal plexus +C0161448|T037|AB|953.8|ICD9CM|Mult nerve root/plex inj|Mult nerve root/plex inj +C0161441|T037|AB|953.9|ICD9CM|Inj nerve root/plex NOS|Inj nerve root/plex NOS +C0161441|T037|PT|953.9|ICD9CM|Injury to unspecified site of nerve roots and spinal plexus|Injury to unspecified site of nerve roots and spinal plexus +C0433857|T037|HT|954|ICD9CM|Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles|Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles +C0161451|T037|AB|954.0|ICD9CM|Inj cerv sympath nerve|Inj cerv sympath nerve +C0161451|T037|PT|954.0|ICD9CM|Injury to cervical sympathetic nerve, excluding shoulder and pelvic girdles|Injury to cervical sympathetic nerve, excluding shoulder and pelvic girdles +C0161452|T037|AB|954.1|ICD9CM|Inj sympath nerve NEC|Inj sympath nerve NEC +C0161452|T037|PT|954.1|ICD9CM|Injury to other sympathetic nerve, excluding shoulder and pelvic girdles|Injury to other sympathetic nerve, excluding shoulder and pelvic girdles +C0161453|T037|PT|954.8|ICD9CM|Injury to other specified nerve(s) of trunk, excluding shoulder and pelvic girdles|Injury to other specified nerve(s) of trunk, excluding shoulder and pelvic girdles +C0161453|T037|AB|954.8|ICD9CM|Injury trunk nerve NEC|Injury trunk nerve NEC +C0161454|T037|PT|954.9|ICD9CM|Injury to unspecified nerve of trunk, excluding shoulder and pelvic girdles|Injury to unspecified nerve of trunk, excluding shoulder and pelvic girdles +C0161454|T037|AB|954.9|ICD9CM|Injury trunk nerve NOS|Injury trunk nerve NOS +C0273529|T037|HT|955|ICD9CM|Injury to peripheral nerve(s) of shoulder girdle and upper limb|Injury to peripheral nerve(s) of shoulder girdle and upper limb +C0161456|T037|AB|955.0|ICD9CM|Injury axillary nerve|Injury axillary nerve +C0161456|T037|PT|955.0|ICD9CM|Injury to axillary nerve|Injury to axillary nerve +C0161457|T037|AB|955.1|ICD9CM|Injury median nerve|Injury median nerve +C0161457|T037|PT|955.1|ICD9CM|Injury to median nerve|Injury to median nerve +C0161458|T037|PT|955.2|ICD9CM|Injury to ulnar nerve|Injury to ulnar nerve +C0161458|T037|AB|955.2|ICD9CM|Injury ulnar nerve|Injury ulnar nerve +C0161459|T037|AB|955.3|ICD9CM|Injury radial nerve|Injury radial nerve +C0161459|T037|PT|955.3|ICD9CM|Injury to radial nerve|Injury to radial nerve +C0161460|T037|AB|955.4|ICD9CM|Inj musculocutan nerve|Inj musculocutan nerve +C0161460|T037|PT|955.4|ICD9CM|Injury to musculocutaneous nerve|Injury to musculocutaneous nerve +C0161461|T037|AB|955.5|ICD9CM|Inj cutan senso nerv/arm|Inj cutan senso nerv/arm +C0161461|T037|PT|955.5|ICD9CM|Injury to cutaneous sensory nerve, upper limb|Injury to cutaneous sensory nerve, upper limb +C0161462|T037|AB|955.6|ICD9CM|Injury digital nerve|Injury digital nerve +C0161462|T037|PT|955.6|ICD9CM|Injury to digital nerve, upper limb|Injury to digital nerve, upper limb +C0161463|T037|AB|955.7|ICD9CM|Inj nerve shldr/arm NEC|Inj nerve shldr/arm NEC +C0161463|T037|PT|955.7|ICD9CM|Injury to other specified nerve(s) of shoulder girdle and upper limb|Injury to other specified nerve(s) of shoulder girdle and upper limb +C2053768|T037|AB|955.8|ICD9CM|Inj mult nerve shldr/arm|Inj mult nerve shldr/arm +C2053768|T037|PT|955.8|ICD9CM|Injury to multiple nerves of shoulder girdle and upper limb|Injury to multiple nerves of shoulder girdle and upper limb +C0273529|T037|AB|955.9|ICD9CM|Inj nerve shldr/arm NOS|Inj nerve shldr/arm NOS +C0273529|T037|PT|955.9|ICD9CM|Injury to unspecified nerve of shoulder girdle and upper limb|Injury to unspecified nerve of shoulder girdle and upper limb +C1260908|T037|HT|956|ICD9CM|Injury to peripheral nerve(s) of pelvic girdle and lower limb|Injury to peripheral nerve(s) of pelvic girdle and lower limb +C0161467|T037|AB|956.0|ICD9CM|Injury sciatic nerve|Injury sciatic nerve +C0161467|T037|PT|956.0|ICD9CM|Injury to sciatic nerve|Injury to sciatic nerve +C0161468|T037|AB|956.1|ICD9CM|Injury femoral nerve|Injury femoral nerve +C0161468|T037|PT|956.1|ICD9CM|Injury to femoral nerve|Injury to femoral nerve +C0273532|T037|AB|956.2|ICD9CM|Inj posterior tib nerve|Inj posterior tib nerve +C0273532|T037|PT|956.2|ICD9CM|Injury to posterior tibial nerve|Injury to posterior tibial nerve +C1321896|T037|AB|956.3|ICD9CM|Injury peroneal nerve|Injury peroneal nerve +C1321896|T037|PT|956.3|ICD9CM|Injury to peroneal nerve|Injury to peroneal nerve +C0161471|T037|AB|956.4|ICD9CM|Inj cutan senso nerv/leg|Inj cutan senso nerv/leg +C0161471|T037|PT|956.4|ICD9CM|Injury to cutaneous sensory nerve, lower limb|Injury to cutaneous sensory nerve, lower limb +C0273533|T037|AB|956.5|ICD9CM|Inj nerve pelv/leg NEC|Inj nerve pelv/leg NEC +C0273533|T037|PT|956.5|ICD9CM|Injury to other specified nerve(s) of pelvic girdle and lower limb|Injury to other specified nerve(s) of pelvic girdle and lower limb +C0161473|T037|AB|956.8|ICD9CM|Inj mult nerve pelv/leg|Inj mult nerve pelv/leg +C0161473|T037|PT|956.8|ICD9CM|Injury to multiple nerves of pelvic girdle and lower limb|Injury to multiple nerves of pelvic girdle and lower limb +C0273531|T037|AB|956.9|ICD9CM|Inj nerve pelv/leg NOS|Inj nerve pelv/leg NOS +C0273531|T037|PT|956.9|ICD9CM|Injury to unspecified nerve of pelvic girdle and lower limb|Injury to unspecified nerve of pelvic girdle and lower limb +C0161475|T037|HT|957|ICD9CM|Injury to other and unspecified nerves|Injury to other and unspecified nerves +C0161476|T037|AB|957.0|ICD9CM|Inj superf nerv head/nck|Inj superf nerv head/nck +C0161476|T037|PT|957.0|ICD9CM|Injury to superficial nerves of head and neck|Injury to superficial nerves of head and neck +C0434291|T037|AB|957.1|ICD9CM|Injury to nerve NEC|Injury to nerve NEC +C0434291|T037|PT|957.1|ICD9CM|Injury to other specified nerve(s)|Injury to other specified nerve(s) +C0161478|T037|AB|957.8|ICD9CM|Injury to mult nerves|Injury to mult nerves +C0161478|T037|PT|957.8|ICD9CM|Injury to multiple nerves in several parts|Injury to multiple nerves in several parts +C0161479|T037|AB|957.9|ICD9CM|Injury to nerve NOS|Injury to nerve NOS +C0161479|T037|PT|957.9|ICD9CM|Injury to nerves, unspecified site|Injury to nerves, unspecified site +C0161480|T046|HT|958|ICD9CM|Certain early complications of trauma|Certain early complications of trauma +C0178331|T037|HT|958-959.99|ICD9CM|CERTAIN TRAUMATIC COMPLICATIONS AND UNSPECIFIED INJURIES|CERTAIN TRAUMATIC COMPLICATIONS AND UNSPECIFIED INJURIES +C0274265|T037|AB|958.0|ICD9CM|Air embolism|Air embolism +C0274265|T037|PT|958.0|ICD9CM|Air embolism|Air embolism +C1533618|T046|AB|958.1|ICD9CM|Fat embolism|Fat embolism +C1533618|T046|PT|958.1|ICD9CM|Fat embolism|Fat embolism +C0274267|T046|PT|958.2|ICD9CM|Secondary and recurrent hemorrhage|Secondary and recurrent hemorrhage +C0274267|T046|AB|958.2|ICD9CM|Secondary/recur hemorr|Secondary/recur hemorr +C0868767|T047|AB|958.3|ICD9CM|Posttraum wnd infec NEC|Posttraum wnd infec NEC +C0868767|T047|PT|958.3|ICD9CM|Posttraumatic wound infection not elsewhere classified|Posttraumatic wound infection not elsewhere classified +C0036986|T046|AB|958.4|ICD9CM|Traumatic shock|Traumatic shock +C0036986|T046|PT|958.4|ICD9CM|Traumatic shock|Traumatic shock +C0040793|T037|AB|958.5|ICD9CM|Traumatic anuria|Traumatic anuria +C0040793|T037|PT|958.5|ICD9CM|Traumatic anuria|Traumatic anuria +C0042951|T047|AB|958.6|ICD9CM|Volkmann's isch contract|Volkmann's isch contract +C0042951|T047|PT|958.6|ICD9CM|Volkmann's ischemic contracture|Volkmann's ischemic contracture +C0040799|T037|AB|958.7|ICD9CM|Traum subcutan emphysema|Traum subcutan emphysema +C0040799|T037|PT|958.7|ICD9CM|Traumatic subcutaneous emphysema|Traumatic subcutaneous emphysema +C0029603|T037|AB|958.8|ICD9CM|Early complic trauma NEC|Early complic trauma NEC +C0029603|T037|PT|958.8|ICD9CM|Other early complications of trauma|Other early complications of trauma +C1719662|T037|HT|958.9|ICD9CM|Traumatic compartment syndrome|Traumatic compartment syndrome +C0009492|T047|AB|958.90|ICD9CM|Compartment syndrome NOS|Compartment syndrome NOS +C0009492|T047|PT|958.90|ICD9CM|Compartment syndrome, unspecified|Compartment syndrome, unspecified +C1719657|T037|AB|958.91|ICD9CM|Trauma comp synd up ext|Trauma comp synd up ext +C1719657|T037|PT|958.91|ICD9CM|Traumatic compartment syndrome of upper extremity|Traumatic compartment syndrome of upper extremity +C1719659|T037|AB|958.92|ICD9CM|Trauma comp synd low ext|Trauma comp synd low ext +C1719659|T037|PT|958.92|ICD9CM|Traumatic compartment syndrome of lower extremity|Traumatic compartment syndrome of lower extremity +C1719660|T037|AB|958.93|ICD9CM|Trauma compart synd abd|Trauma compart synd abd +C1719660|T037|PT|958.93|ICD9CM|Traumatic compartment syndrome of abdomen|Traumatic compartment syndrome of abdomen +C1719661|T037|AB|958.99|ICD9CM|Trauma compart synd NEC|Trauma compart synd NEC +C1719661|T037|PT|958.99|ICD9CM|Traumatic compartment syndrome of other sites|Traumatic compartment syndrome of other sites +C0302401|T037|HT|959|ICD9CM|Injury, other and unspecified|Injury, other and unspecified +C0490041|T037|HT|959.0|ICD9CM|Other and unspecified injury to head, face, and neck|Other and unspecified injury to head, face, and neck +C0018674|T037|AB|959.01|ICD9CM|Head injury NOS|Head injury NOS +C0018674|T037|PT|959.01|ICD9CM|Head injury, unspecified|Head injury, unspecified +C0272422|T037|AB|959.09|ICD9CM|Face & neck injury|Face & neck injury +C0272422|T037|PT|959.09|ICD9CM|Injury of face and neck|Injury of face and neck +C0029508|T037|HT|959.1|ICD9CM|Other and unspecified injury to trunk|Other and unspecified injury to trunk +C0436055|T037|AB|959.11|ICD9CM|Injury of chest wall NEC|Injury of chest wall NEC +C0436055|T037|PT|959.11|ICD9CM|Other injury of chest wall|Other injury of chest wall +C1260446|T037|AB|959.12|ICD9CM|Injury of abdomen NEC|Injury of abdomen NEC +C1260446|T037|PT|959.12|ICD9CM|Other injury of abdomen|Other injury of abdomen +C1260447|T037|PT|959.13|ICD9CM|Fracture of corpus cavernosum penis|Fracture of corpus cavernosum penis +C1260447|T037|AB|959.13|ICD9CM|Fx corpus cavrnosm penis|Fx corpus cavrnosm penis +C0436064|T037|AB|959.14|ICD9CM|Inj external genital NEC|Inj external genital NEC +C0436064|T037|PT|959.14|ICD9CM|Other injury of external genitals|Other injury of external genitals +C1260449|T037|PT|959.19|ICD9CM|Other injury of other sites of trunk|Other injury of other sites of trunk +C1260449|T037|AB|959.19|ICD9CM|Trunk injury-sites NEC|Trunk injury-sites NEC +C0161483|T037|AB|959.2|ICD9CM|Shldr/upper arm inj NOS|Shldr/upper arm inj NOS +C0161483|T037|PT|959.2|ICD9CM|Shoulder and upper arm injury|Shoulder and upper arm injury +C0272443|T037|AB|959.3|ICD9CM|Elb/forearm/wrst inj NOS|Elb/forearm/wrst inj NOS +C0272443|T037|PT|959.3|ICD9CM|Elbow, forearm, and wrist injury|Elbow, forearm, and wrist injury +C0029505|T037|AB|959.4|ICD9CM|Hand injury NOS|Hand injury NOS +C0029505|T037|PT|959.4|ICD9CM|Hand, except finger injury|Hand, except finger injury +C0016124|T037|PT|959.5|ICD9CM|Finger injury|Finger injury +C0016124|T037|AB|959.5|ICD9CM|Finger injury NOS|Finger injury NOS +C0161484|T037|AB|959.6|ICD9CM|Hip & thigh injury NOS|Hip & thigh injury NOS +C0161484|T037|PT|959.6|ICD9CM|Hip and thigh injury|Hip and thigh injury +C0029506|T037|PT|959.7|ICD9CM|Knee, leg, ankle, and foot injury|Knee, leg, ankle, and foot injury +C0029506|T037|AB|959.7|ICD9CM|Lower leg injury NOS|Lower leg injury NOS +C0029507|T037|AB|959.8|ICD9CM|Injury mlt site/site NEC|Injury mlt site/site NEC +C0029507|T037|PT|959.8|ICD9CM|Other specified sites, including multiple injury|Other specified sites, including multiple injury +C0029509|T037|AB|959.9|ICD9CM|Injury-site NOS|Injury-site NOS +C0029509|T037|PT|959.9|ICD9CM|Unspecified site injury|Unspecified site injury +C0161485|T037|HT|960|ICD9CM|Poisoning by antibiotics|Poisoning by antibiotics +C0178332|T037|HT|960-979.99|ICD9CM|POISONING BY DRUGS, MEDICINAL AND BIOLOGICAL SUBSTANCES|POISONING BY DRUGS, MEDICINAL AND BIOLOGICAL SUBSTANCES +C0161486|T037|PT|960.0|ICD9CM|Poisoning by penicillins|Poisoning by penicillins +C0161486|T037|AB|960.0|ICD9CM|Poisoning-penicillins|Poisoning-penicillins +C0161487|T037|AB|960.1|ICD9CM|Pois-antifungal antibiot|Pois-antifungal antibiot +C0161487|T037|PT|960.1|ICD9CM|Poisoning by antifungal antibiotics|Poisoning by antifungal antibiotics +C0161488|T037|AB|960.2|ICD9CM|Poison-chloramphenicol|Poison-chloramphenicol +C0161488|T037|PT|960.2|ICD9CM|Poisoning by chloramphenicol group|Poisoning by chloramphenicol group +C0161489|T037|AB|960.3|ICD9CM|Pois-erythromyc/macrolid|Pois-erythromyc/macrolid +C0161489|T037|PT|960.3|ICD9CM|Poisoning by erythromycin and other macrolides|Poisoning by erythromycin and other macrolides +C0274507|T037|PT|960.4|ICD9CM|Poisoning by tetracycline group|Poisoning by tetracycline group +C0274507|T037|AB|960.4|ICD9CM|Poisoning-tetracycline|Poisoning-tetracycline +C0274511|T037|AB|960.5|ICD9CM|Pois-cephalosporin group|Pois-cephalosporin group +C0274511|T037|PT|960.5|ICD9CM|Poisoning of cephalosporin group|Poisoning of cephalosporin group +C0274484|T037|AB|960.6|ICD9CM|Pois-antimycobac antibio|Pois-antimycobac antibio +C0274484|T037|PT|960.6|ICD9CM|Poisoning of antimycobacterial antibiotics|Poisoning of antimycobacterial antibiotics +C0161493|T037|AB|960.7|ICD9CM|Pois-antineop antibiotic|Pois-antineop antibiotic +C0161493|T037|PT|960.7|ICD9CM|Poisoning by antineoplastic antibiotics|Poisoning by antineoplastic antibiotics +C0161494|T037|PT|960.8|ICD9CM|Poisoning by other specified antibiotics|Poisoning by other specified antibiotics +C0161494|T037|AB|960.8|ICD9CM|Poisoning-antibiotic NEC|Poisoning-antibiotic NEC +C0161485|T037|PT|960.9|ICD9CM|Poisoning by unspecified antibiotic|Poisoning by unspecified antibiotic +C0161485|T037|AB|960.9|ICD9CM|Poisoning-antibiotic NOS|Poisoning-antibiotic NOS +C0161496|T037|HT|961|ICD9CM|Poisoning by other anti-infectives|Poisoning by other anti-infectives +C0161497|T037|PT|961.0|ICD9CM|Poisoning by sulfonamides|Poisoning by sulfonamides +C0161497|T037|AB|961.0|ICD9CM|Poisoning-sulfonamides|Poisoning-sulfonamides +C0161498|T037|AB|961.1|ICD9CM|Pois-arsenic anti-infec|Pois-arsenic anti-infec +C0161498|T037|PT|961.1|ICD9CM|Poisoning by arsenical anti-infectives|Poisoning by arsenical anti-infectives +C0161499|T037|AB|961.2|ICD9CM|Pois-heav met anti-infec|Pois-heav met anti-infec +C0161499|T037|PT|961.2|ICD9CM|Poisoning by heavy metal anti-infectives|Poisoning by heavy metal anti-infectives +C0347966|T037|AB|961.3|ICD9CM|Pois-quinoline/hydroxyqu|Pois-quinoline/hydroxyqu +C0347966|T037|PT|961.3|ICD9CM|Poisoning by quinoline and hydroxyquinoline derivatives|Poisoning by quinoline and hydroxyquinoline derivatives +C0161501|T037|PT|961.4|ICD9CM|Poisoning by antimalarials and drugs acting on other blood protozoa|Poisoning by antimalarials and drugs acting on other blood protozoa +C0161501|T037|AB|961.4|ICD9CM|Poisoning-antimalarials|Poisoning-antimalarials +C0161502|T037|AB|961.5|ICD9CM|Pois-antiprotoz drug NEC|Pois-antiprotoz drug NEC +C0161502|T037|PT|961.5|ICD9CM|Poisoning by other antiprotozoal drugs|Poisoning by other antiprotozoal drugs +C0496964|T037|PT|961.6|ICD9CM|Poisoning by anthelmintics|Poisoning by anthelmintics +C0496964|T037|AB|961.6|ICD9CM|Poisoning-anthelmintics|Poisoning-anthelmintics +C0161504|T037|PT|961.7|ICD9CM|Poisoning by antiviral drugs|Poisoning by antiviral drugs +C0161504|T037|AB|961.7|ICD9CM|Poisoning-antiviral drug|Poisoning-antiviral drug +C0161505|T037|AB|961.8|ICD9CM|Pois-antimycobac drg NEC|Pois-antimycobac drg NEC +C0161505|T037|PT|961.8|ICD9CM|Poisoning by other antimycobacterial drugs|Poisoning by other antimycobacterial drugs +C0161506|T037|AB|961.9|ICD9CM|Pois-anti-infect NEC/NOS|Pois-anti-infect NEC/NOS +C0161506|T037|PT|961.9|ICD9CM|Poisoning by other and unspecified anti-infectives|Poisoning by other and unspecified anti-infectives +C0274526|T037|HT|962|ICD9CM|Poisoning by hormones and synthetic substitutes|Poisoning by hormones and synthetic substitutes +C0161508|T037|AB|962.0|ICD9CM|Pois-corticosteroids|Pois-corticosteroids +C0161508|T037|PT|962.0|ICD9CM|Poisoning by adrenal cortical steroids|Poisoning by adrenal cortical steroids +C0161509|T037|PT|962.1|ICD9CM|Poisoning by androgens and anabolic congeners|Poisoning by androgens and anabolic congeners +C0161509|T037|AB|962.1|ICD9CM|Poisoning-androgens|Poisoning-androgens +C0274535|T037|PT|962.2|ICD9CM|Poisoning by ovarian hormones and synthetic substitutes|Poisoning by ovarian hormones and synthetic substitutes +C0274535|T037|AB|962.2|ICD9CM|Poisoning-ovarian hormon|Poisoning-ovarian hormon +C0496967|T037|AB|962.3|ICD9CM|Poison-insulin/antidiab|Poison-insulin/antidiab +C0496967|T037|PT|962.3|ICD9CM|Poisoning by insulins and antidiabetic agents|Poisoning by insulins and antidiabetic agents +C0161512|T037|AB|962.4|ICD9CM|Pois-ant pituitary horm|Pois-ant pituitary horm +C0161512|T037|PT|962.4|ICD9CM|Poisoning by anterior pituitary hormones|Poisoning by anterior pituitary hormones +C0161513|T037|AB|962.5|ICD9CM|Pois-post pituitary horm|Pois-post pituitary horm +C0161513|T037|PT|962.5|ICD9CM|Poisoning by posterior pituitary hormones|Poisoning by posterior pituitary hormones +C0161514|T037|PT|962.6|ICD9CM|Poisoning by parathyroid and parathyroid derivatives|Poisoning by parathyroid and parathyroid derivatives +C0161514|T037|AB|962.6|ICD9CM|Poisoning-parathyroids|Poisoning-parathyroids +C0161515|T037|PT|962.7|ICD9CM|Poisoning by thyroid and thyroid derivatives|Poisoning by thyroid and thyroid derivatives +C0161515|T037|AB|962.7|ICD9CM|Poisoning-thyroid/deriv|Poisoning-thyroid/deriv +C0161516|T037|AB|962.8|ICD9CM|Poison-antithyroid agent|Poison-antithyroid agent +C0161516|T037|PT|962.8|ICD9CM|Poisoning by antithyroid agents|Poisoning by antithyroid agents +C0161517|T037|PT|962.9|ICD9CM|Poisoning by other and unspecified hormones and synthetic substitutes|Poisoning by other and unspecified hormones and synthetic substitutes +C0161517|T037|AB|962.9|ICD9CM|Poisoning hormon NEC/NOS|Poisoning hormon NEC/NOS +C0161518|T037|HT|963|ICD9CM|Poisoning by primarily systemic agents|Poisoning by primarily systemic agents +C0161519|T037|AB|963.0|ICD9CM|Pois-antiallrg/antiemet|Pois-antiallrg/antiemet +C0161519|T037|PT|963.0|ICD9CM|Poisoning by antiallergic and antiemetic drugs|Poisoning by antiallergic and antiemetic drugs +C0412836|T037|AB|963.1|ICD9CM|Pois-antineopl/immunosup|Pois-antineopl/immunosup +C0412836|T037|PT|963.1|ICD9CM|Poisoning by antineoplastic and immunosuppressive drugs|Poisoning by antineoplastic and immunosuppressive drugs +C0161521|T037|PT|963.2|ICD9CM|Poisoning by acidifying agents|Poisoning by acidifying agents +C0161521|T037|AB|963.2|ICD9CM|Poisoning-acidifying agt|Poisoning-acidifying agt +C0161522|T037|PT|963.3|ICD9CM|Poisoning by alkalizing agents|Poisoning by alkalizing agents +C0161522|T037|AB|963.3|ICD9CM|Poisoning-alkalizing agt|Poisoning-alkalizing agt +C0869507|T037|PT|963.4|ICD9CM|Poisoning by enzymes, not elsewhere classified|Poisoning by enzymes, not elsewhere classified +C0869507|T037|AB|963.4|ICD9CM|Poisoning-enzymes NEC|Poisoning-enzymes NEC +C0869511|T037|PT|963.5|ICD9CM|Poisoning by vitamins, not elsewhere classified|Poisoning by vitamins, not elsewhere classified +C0869511|T037|AB|963.5|ICD9CM|Poisoning-vitamins NEC|Poisoning-vitamins NEC +C0161525|T037|PT|963.8|ICD9CM|Poisoning by other specified systemic agents|Poisoning by other specified systemic agents +C0161525|T037|AB|963.8|ICD9CM|Poisoning-system agt NEC|Poisoning-system agt NEC +C0161518|T037|PT|963.9|ICD9CM|Poisoning by unspecified systemic agent|Poisoning by unspecified systemic agent +C0161518|T037|AB|963.9|ICD9CM|Poisoning-system agt NOS|Poisoning-system agt NOS +C0161527|T037|HT|964|ICD9CM|Poisoning by agents primarily affecting blood constituents|Poisoning by agents primarily affecting blood constituents +C0412842|T037|PT|964.0|ICD9CM|Poisoning by iron and its compounds|Poisoning by iron and its compounds +C0412842|T037|AB|964.0|ICD9CM|Poisoning-iron/compounds|Poisoning-iron/compounds +C0161529|T037|AB|964.1|ICD9CM|Poison-liver/antianemics|Poison-liver/antianemics +C0161529|T037|PT|964.1|ICD9CM|Poisoning by liver preparations and other antianemic agents|Poisoning by liver preparations and other antianemic agents +C0161530|T037|PT|964.2|ICD9CM|Poisoning by anticoagulants|Poisoning by anticoagulants +C0161530|T037|AB|964.2|ICD9CM|Poisoning-anticoagulants|Poisoning-anticoagulants +C0274594|T037|PT|964.3|ICD9CM|Poisoning by vitamin K (phytonadione)|Poisoning by vitamin K (phytonadione) +C0274594|T037|AB|964.3|ICD9CM|Poisoning-vitamin k|Poisoning-vitamin k +C0412845|T037|AB|964.4|ICD9CM|Poison-fibrinolysis agnt|Poison-fibrinolysis agnt +C0412845|T037|PT|964.4|ICD9CM|Poisoning by fibrinolysis-affecting drugs|Poisoning by fibrinolysis-affecting drugs +C0161533|T037|PT|964.5|ICD9CM|Poisoning by anticoagulant antagonists and other coagulants|Poisoning by anticoagulant antagonists and other coagulants +C0161533|T037|AB|964.5|ICD9CM|Poisoning-coagulants|Poisoning-coagulants +C0161534|T037|PT|964.6|ICD9CM|Poisoning by gamma globulin|Poisoning by gamma globulin +C0161534|T037|AB|964.6|ICD9CM|Poisoning-gamma globulin|Poisoning-gamma globulin +C0274602|T037|PT|964.7|ICD9CM|Poisoning by natural blood and blood products|Poisoning by natural blood and blood products +C0274602|T037|AB|964.7|ICD9CM|Poisoning-blood product|Poisoning-blood product +C0161536|T037|PT|964.8|ICD9CM|Poisoning by other specified agents affecting blood constituents|Poisoning by other specified agents affecting blood constituents +C0161536|T037|AB|964.8|ICD9CM|Poisoning-blood agt NEC|Poisoning-blood agt NEC +C0161537|T037|PT|964.9|ICD9CM|Poisoning by unspecified agent affecting blood constituents|Poisoning by unspecified agent affecting blood constituents +C0161537|T037|AB|964.9|ICD9CM|Poisoning-blood agt NOS|Poisoning-blood agt NOS +C0161538|T037|HT|965|ICD9CM|Poisoning by analgesics, antipyretics, and antirheumatics|Poisoning by analgesics, antipyretics, and antirheumatics +C1443030|T037|HT|965.0|ICD9CM|Poisoning by opiates and related narcotics|Poisoning by opiates and related narcotics +C0161540|T037|PT|965.00|ICD9CM|Poisoning by opium (alkaloids), unspecified|Poisoning by opium (alkaloids), unspecified +C0161540|T037|AB|965.00|ICD9CM|Poisoning-opium NOS|Poisoning-opium NOS +C0161541|T037|PT|965.01|ICD9CM|Poisoning by heroin|Poisoning by heroin +C0161541|T037|AB|965.01|ICD9CM|Poisoning-heroin|Poisoning-heroin +C0161542|T037|PT|965.02|ICD9CM|Poisoning by methadone|Poisoning by methadone +C0161542|T037|AB|965.02|ICD9CM|Poisoning-methadone|Poisoning-methadone +C0161543|T037|PT|965.09|ICD9CM|Poisoning by other opiates and related narcotics|Poisoning by other opiates and related narcotics +C0161543|T037|AB|965.09|ICD9CM|Poisoning-opiates NEC|Poisoning-opiates NEC +C0161544|T037|PT|965.1|ICD9CM|Poisoning by salicylates|Poisoning by salicylates +C0161544|T037|AB|965.1|ICD9CM|Poisoning-salicylates|Poisoning-salicylates +C0868775|T037|AB|965.4|ICD9CM|Pois-arom analgesics NEC|Pois-arom analgesics NEC +C0868775|T037|PT|965.4|ICD9CM|Poisoning by aromatic analgesics, not elsewhere classified|Poisoning by aromatic analgesics, not elsewhere classified +C0161546|T037|PT|965.5|ICD9CM|Poisoning by pyrazole derivatives|Poisoning by pyrazole derivatives +C0161546|T037|AB|965.5|ICD9CM|Poisoning-pyrazole deriv|Poisoning-pyrazole deriv +C0344128|T037|HT|965.6|ICD9CM|Poisoning by antirheumatics [antiphlogistics]|Poisoning by antirheumatics [antiphlogistics] +C0695274|T037|AB|965.61|ICD9CM|Pois-propionic acid derv|Pois-propionic acid derv +C0695274|T037|PT|965.61|ICD9CM|Poisoning by propionic acid derivatives|Poisoning by propionic acid derivatives +C0695253|T037|AB|965.69|ICD9CM|Poison-antirheumatic NEC|Poison-antirheumatic NEC +C0695253|T037|PT|965.69|ICD9CM|Poisoning by other antirheumatics|Poisoning by other antirheumatics +C0161548|T037|AB|965.7|ICD9CM|Pois-no-narc analges NEC|Pois-no-narc analges NEC +C0161548|T037|PT|965.7|ICD9CM|Poisoning by other non-narcotic analgesics|Poisoning by other non-narcotic analgesics +C0161549|T037|AB|965.8|ICD9CM|Pois-analges/antipyr NEC|Pois-analges/antipyr NEC +C0161549|T037|PT|965.8|ICD9CM|Poisoning by other specified analgesics and antipyretics|Poisoning by other specified analgesics and antipyretics +C0274609|T037|AB|965.9|ICD9CM|Pois-analges/antipyr NOS|Pois-analges/antipyr NOS +C0274609|T037|PT|965.9|ICD9CM|Poisoning by unspecified analgesic and antipyretic|Poisoning by unspecified analgesic and antipyretic +C0412928|T037|HT|966|ICD9CM|Poisoning by anticonvulsants and anti-Parkinsonism drugs|Poisoning by anticonvulsants and anti-Parkinsonism drugs +C0161552|T037|AB|966.0|ICD9CM|Poison-oxazolidine deriv|Poison-oxazolidine deriv +C0161552|T037|PT|966.0|ICD9CM|Poisoning by oxazolidine derivatives|Poisoning by oxazolidine derivatives +C0161553|T037|AB|966.1|ICD9CM|Poison-hydantoin derivat|Poison-hydantoin derivat +C0161553|T037|PT|966.1|ICD9CM|Poisoning by hydantoin derivatives|Poisoning by hydantoin derivatives +C0161554|T037|PT|966.2|ICD9CM|Poisoning by succinimides|Poisoning by succinimides +C0161554|T037|AB|966.2|ICD9CM|Poisoning-succinimides|Poisoning-succinimides +C0161555|T037|AB|966.3|ICD9CM|Pois-anticonvul NEC/NOS|Pois-anticonvul NEC/NOS +C0161555|T037|PT|966.3|ICD9CM|Poisoning by other and unspecified anticonvulsants|Poisoning by other and unspecified anticonvulsants +C0161556|T037|AB|966.4|ICD9CM|Pois-anti-parkinson drug|Pois-anti-parkinson drug +C0161556|T037|PT|966.4|ICD9CM|Poisoning by anti-Parkinsonism drugs|Poisoning by anti-Parkinsonism drugs +C0274638|T037|HT|967|ICD9CM|Poisoning by sedatives and hypnotics|Poisoning by sedatives and hypnotics +C0161558|T037|PT|967.0|ICD9CM|Poisoning by barbiturates|Poisoning by barbiturates +C0161558|T037|AB|967.0|ICD9CM|Poisoning-barbiturates|Poisoning-barbiturates +C0344156|T037|PT|967.1|ICD9CM|Poisoning by chloral hydrate group|Poisoning by chloral hydrate group +C0344156|T037|AB|967.1|ICD9CM|Poisoning-chloral hydrat|Poisoning-chloral hydrat +C0161560|T037|PT|967.2|ICD9CM|Poisoning by paraldehyde|Poisoning by paraldehyde +C0161560|T037|AB|967.2|ICD9CM|Poisoning-paraldehyde|Poisoning-paraldehyde +C1533166|T037|PT|967.3|ICD9CM|Poisoning by bromine compounds|Poisoning by bromine compounds +C1533166|T037|AB|967.3|ICD9CM|Poisoning-bromine compnd|Poisoning-bromine compnd +C0161562|T037|PT|967.4|ICD9CM|Poisoning by methaqualone compounds|Poisoning by methaqualone compounds +C0161562|T037|AB|967.4|ICD9CM|Poisoning-methaqualone|Poisoning-methaqualone +C0161563|T037|PT|967.5|ICD9CM|Poisoning by glutethimide group|Poisoning by glutethimide group +C0161563|T037|AB|967.5|ICD9CM|Poisoning-glutethimide|Poisoning-glutethimide +C0868780|T037|AB|967.6|ICD9CM|Poison-mix sedative NEC|Poison-mix sedative NEC +C0868780|T037|PT|967.6|ICD9CM|Poisoning by mixed sedatives, not elsewhere classified|Poisoning by mixed sedatives, not elsewhere classified +C0161565|T037|AB|967.8|ICD9CM|Pois-sedative/hypnot NEC|Pois-sedative/hypnot NEC +C0161565|T037|PT|967.8|ICD9CM|Poisoning by other sedatives and hypnotics|Poisoning by other sedatives and hypnotics +C0274638|T037|AB|967.9|ICD9CM|Pois-sedative/hypnot NOS|Pois-sedative/hypnot NOS +C0274638|T037|PT|967.9|ICD9CM|Poisoning by unspecified sedative or hypnotic|Poisoning by unspecified sedative or hypnotic +C0161567|T037|HT|968|ICD9CM|Poisoning by other central nervous system depressants and anesthetics|Poisoning by other central nervous system depressants and anesthetics +C0161568|T037|AB|968.0|ICD9CM|Pois-cns muscle depress|Pois-cns muscle depress +C0161568|T037|PT|968.0|ICD9CM|Poisoning by central nervous system muscle-tone depressants|Poisoning by central nervous system muscle-tone depressants +C0161569|T037|PT|968.1|ICD9CM|Poisoning by halothane|Poisoning by halothane +C0161569|T037|AB|968.1|ICD9CM|Poisoning-halothane|Poisoning-halothane +C0473975|T037|AB|968.2|ICD9CM|Poison-gas anesthet NEC|Poison-gas anesthet NEC +C0473975|T037|PT|968.2|ICD9CM|Poisoning by other gaseous anesthetics|Poisoning by other gaseous anesthetics +C0161571|T037|AB|968.3|ICD9CM|Poison-intraven anesthet|Poison-intraven anesthet +C0161571|T037|PT|968.3|ICD9CM|Poisoning by intravenous anesthetics|Poisoning by intravenous anesthetics +C0161572|T037|AB|968.4|ICD9CM|Pois-gen anesth NEC/NOS|Pois-gen anesth NEC/NOS +C0161572|T037|PT|968.4|ICD9CM|Poisoning by other and unspecified general anesthetics|Poisoning by other and unspecified general anesthetics +C0161573|T037|PT|968.5|ICD9CM|Surface (topical) and infiltration anesthetics|Surface (topical) and infiltration anesthetics +C0161573|T037|AB|968.5|ICD9CM|Surfce-topic/infilt anes|Surfce-topic/infilt anes +C0161574|T037|AB|968.6|ICD9CM|Pois-nerve/plex-blk anes|Pois-nerve/plex-blk anes +C0161574|T037|PT|968.6|ICD9CM|Poisoning by peripheral nerve- and plexus-blocking anesthetics|Poisoning by peripheral nerve- and plexus-blocking anesthetics +C0161575|T037|AB|968.7|ICD9CM|Poison-spinal anesthetic|Poison-spinal anesthetic +C0161575|T037|PT|968.7|ICD9CM|Poisoning by spinal anesthetics|Poisoning by spinal anesthetics +C0161576|T037|AB|968.9|ICD9CM|Pois-local anest NEC/NOS|Pois-local anest NEC/NOS +C0161576|T037|PT|968.9|ICD9CM|Poisoning by other and unspecified local anesthetics|Poisoning by other and unspecified local anesthetics +C0161577|T037|HT|969|ICD9CM|Poisoning by psychotropic agents|Poisoning by psychotropic agents +C0161578|T037|HT|969.0|ICD9CM|Poisoning by antidepressants|Poisoning by antidepressants +C2712374|T037|AB|969.00|ICD9CM|Poison-antidepresnt NOS|Poison-antidepresnt NOS +C2712374|T037|PT|969.00|ICD9CM|Poisoning by antidepressant, unspecified|Poisoning by antidepressant, unspecified +C0274669|T037|AB|969.01|ICD9CM|Pois monoamine oxidase|Pois monoamine oxidase +C0274669|T037|PT|969.01|ICD9CM|Poisoning by monoamine oxidase inhibitors|Poisoning by monoamine oxidase inhibitors +C2712375|T037|AB|969.02|ICD9CM|Pois serotn/norepinephrn|Pois serotn/norepinephrn +C2712375|T037|PT|969.02|ICD9CM|Poisoning by selective serotonin and norepinephrine reuptake inhibitors|Poisoning by selective serotonin and norepinephrine reuptake inhibitors +C2712376|T037|AB|969.03|ICD9CM|Pois serotinin reuptake|Pois serotinin reuptake +C2712376|T037|PT|969.03|ICD9CM|Poisoning by selective serotonin reuptake inhibitors|Poisoning by selective serotonin reuptake inhibitors +C2712377|T037|AB|969.04|ICD9CM|Pois tetracyclc andepres|Pois tetracyclc andepres +C2712377|T037|PT|969.04|ICD9CM|Poisoning by tetracyclic antidepressants|Poisoning by tetracyclic antidepressants +C0496978|T037|AB|969.05|ICD9CM|Pois tricyclc antidepres|Pois tricyclc antidepres +C0496978|T037|PT|969.05|ICD9CM|Poisoning by tricyclic antidepressants|Poisoning by tricyclic antidepressants +C2712378|T037|AB|969.09|ICD9CM|Pois antidepressants NEC|Pois antidepressants NEC +C2712378|T037|PT|969.09|ICD9CM|Poisoning by other antidepressants|Poisoning by other antidepressants +C0274967|T037|AB|969.1|ICD9CM|Pois-phenothiazine tranq|Pois-phenothiazine tranq +C0274967|T037|PT|969.1|ICD9CM|Poisoning by phenothiazine-based tranquilizers|Poisoning by phenothiazine-based tranquilizers +C0344133|T037|AB|969.2|ICD9CM|Pois-butyrophenone tranq|Pois-butyrophenone tranq +C0344133|T037|PT|969.2|ICD9CM|Poisoning by butyrophenone-based tranquilizers|Poisoning by butyrophenone-based tranquilizers +C0161581|T037|AB|969.3|ICD9CM|Poison-antipsychotic NEC|Poison-antipsychotic NEC +C0161581|T037|PT|969.3|ICD9CM|Poisoning by other antipsychotics, neuroleptics, and major tranquilizers|Poisoning by other antipsychotics, neuroleptics, and major tranquilizers +C0412862|T037|AB|969.4|ICD9CM|Pois-benzodiazepine tran|Pois-benzodiazepine tran +C0412862|T037|PT|969.4|ICD9CM|Poisoning by benzodiazepine-based tranquilizers|Poisoning by benzodiazepine-based tranquilizers +C0161583|T037|AB|969.5|ICD9CM|Poison-tranquilizer NEC|Poison-tranquilizer NEC +C0161583|T037|PT|969.5|ICD9CM|Poisoning by other tranquilizers|Poisoning by other tranquilizers +C0161584|T037|PT|969.6|ICD9CM|Poisoning by psychodysleptics (hallucinogens)|Poisoning by psychodysleptics (hallucinogens) +C0161584|T037|AB|969.6|ICD9CM|Poisoning-hallucinogens|Poisoning-hallucinogens +C0161585|T037|HT|969.7|ICD9CM|Poisoning by psychostimulants|Poisoning by psychostimulants +C2712379|T037|AB|969.70|ICD9CM|Pois psychostimulant NOS|Pois psychostimulant NOS +C2712379|T037|PT|969.70|ICD9CM|Poisoning by psychostimulant, unspecified|Poisoning by psychostimulant, unspecified +C0274693|T037|PT|969.71|ICD9CM|Poisoning by caffeine|Poisoning by caffeine +C0274693|T037|AB|969.71|ICD9CM|Poisoning by caffeine|Poisoning by caffeine +C0274692|T037|AB|969.72|ICD9CM|Poisoning by amphetamine|Poisoning by amphetamine +C0274692|T037|PT|969.72|ICD9CM|Poisoning by amphetamines|Poisoning by amphetamines +C2712380|T037|AB|969.73|ICD9CM|Poison by methylphendate|Poison by methylphendate +C2712380|T037|PT|969.73|ICD9CM|Poisoning by methylphenidate|Poisoning by methylphenidate +C2712381|T037|AB|969.79|ICD9CM|Poison by psychostim NEC|Poison by psychostim NEC +C2712381|T037|PT|969.79|ICD9CM|Poisoning by other psychostimulants|Poisoning by other psychostimulants +C0161586|T037|AB|969.8|ICD9CM|Poison-psychotropic NEC|Poison-psychotropic NEC +C0161586|T037|PT|969.8|ICD9CM|Poisoning by other specified psychotropic agents|Poisoning by other specified psychotropic agents +C0161577|T037|AB|969.9|ICD9CM|Poison-psychotropic NOS|Poison-psychotropic NOS +C0161577|T037|PT|969.9|ICD9CM|Poisoning by unspecified psychotropic agent|Poisoning by unspecified psychotropic agent +C0161588|T037|HT|970|ICD9CM|Poisoning by central nervous system stimulants|Poisoning by central nervous system stimulants +C0161589|T037|PT|970.0|ICD9CM|Poisoning by analeptics|Poisoning by analeptics +C0161589|T037|AB|970.0|ICD9CM|Poisoning-analeptics|Poisoning-analeptics +C0161590|T037|AB|970.1|ICD9CM|Poison-opiate antagonist|Poison-opiate antagonist +C0161590|T037|PT|970.1|ICD9CM|Poisoning by opiate antagonists|Poisoning by opiate antagonists +C0161591|T037|HT|970.8|ICD9CM|Poisoning by other specified central nervous system stimulants|Poisoning by other specified central nervous system stimulants +C0274659|T037|PT|970.81|ICD9CM|Poisoning by cocaine|Poisoning by cocaine +C0274659|T037|AB|970.81|ICD9CM|Poisoning by cocaine|Poisoning by cocaine +C0412869|T037|AB|970.89|ICD9CM|Poison-CNS stimulant NEC|Poison-CNS stimulant NEC +C0412869|T037|PT|970.89|ICD9CM|Poisoning by other central nervous system stimulants|Poisoning by other central nervous system stimulants +C0161588|T037|AB|970.9|ICD9CM|Pois-cns stimulant NOS|Pois-cns stimulant NOS +C0161588|T037|PT|970.9|ICD9CM|Poisoning by unspecified central nervous system stimulant|Poisoning by unspecified central nervous system stimulant +C0161593|T037|HT|971|ICD9CM|Poisoning by drugs primarily affecting the autonomic nervous system|Poisoning by drugs primarily affecting the autonomic nervous system +C0274702|T037|AB|971.0|ICD9CM|Pois-parasympathomimetic|Pois-parasympathomimetic +C0274702|T037|PT|971.0|ICD9CM|Poisoning by parasympathomimetics (cholinergics)|Poisoning by parasympathomimetics (cholinergics) +C0412870|T037|AB|971.1|ICD9CM|Pois-parasympatholytics|Pois-parasympatholytics +C0412870|T037|PT|971.1|ICD9CM|Poisoning by parasympatholytics (anticholinergics and antimuscarinics) and spasmolytics|Poisoning by parasympatholytics (anticholinergics and antimuscarinics) and spasmolytics +C0274714|T037|AB|971.2|ICD9CM|Poison-sympathomimetics|Poison-sympathomimetics +C0274714|T037|PT|971.2|ICD9CM|Poisoning by sympathomimetics [adrenergics]|Poisoning by sympathomimetics [adrenergics] +C0274717|T037|PT|971.3|ICD9CM|Poisoning by sympatholytics [antiadrenergics]|Poisoning by sympatholytics [antiadrenergics] +C0274717|T037|AB|971.3|ICD9CM|Poisoning-sympatholytics|Poisoning-sympatholytics +C0161598|T037|AB|971.9|ICD9CM|Pois-autonomic agent NOS|Pois-autonomic agent NOS +C0161598|T037|PT|971.9|ICD9CM|Poisoning by unspecified drug primarily affecting autonomic nervous system|Poisoning by unspecified drug primarily affecting autonomic nervous system +C0161599|T037|HT|972|ICD9CM|Poisoning by agents primarily affecting the cardiovascular system|Poisoning by agents primarily affecting the cardiovascular system +C0412873|T037|AB|972.0|ICD9CM|Pois-card rhythm regulat|Pois-card rhythm regulat +C0412873|T037|PT|972.0|ICD9CM|Poisoning by cardiac rhythm regulators|Poisoning by cardiac rhythm regulators +C0161601|T037|PT|972.1|ICD9CM|Poisoning by cardiotonic glycosides and drugs of similar action|Poisoning by cardiotonic glycosides and drugs of similar action +C0161601|T037|AB|972.1|ICD9CM|Poisoning-cardiotonics|Poisoning-cardiotonics +C0161602|T037|PT|972.2|ICD9CM|Poisoning by antilipemic and antiarteriosclerotic drugs|Poisoning by antilipemic and antiarteriosclerotic drugs +C0161602|T037|AB|972.2|ICD9CM|Poisoning-antilipemics|Poisoning-antilipemics +C0161603|T037|AB|972.3|ICD9CM|Pois-ganglion block agt|Pois-ganglion block agt +C0161603|T037|PT|972.3|ICD9CM|Poisoning by ganglion-blocking agents|Poisoning by ganglion-blocking agents +C0161604|T037|AB|972.4|ICD9CM|Pois-coronary vasodilat|Pois-coronary vasodilat +C0161604|T037|PT|972.4|ICD9CM|Poisoning by coronary vasodilators|Poisoning by coronary vasodilators +C0161605|T037|AB|972.5|ICD9CM|Poison-vasodilator NEC|Poison-vasodilator NEC +C0161605|T037|PT|972.5|ICD9CM|Poisoning by other vasodilators|Poisoning by other vasodilators +C0161606|T037|AB|972.6|ICD9CM|Pois-antihyperten agent|Pois-antihyperten agent +C0161606|T037|PT|972.6|ICD9CM|Poisoning by other antihypertensive agents|Poisoning by other antihypertensive agents +C0161607|T037|AB|972.7|ICD9CM|Poison-antivaricose drug|Poison-antivaricose drug +C0161607|T037|PT|972.7|ICD9CM|Poisoning by antivaricose drugs, including sclerosing agents|Poisoning by antivaricose drugs, including sclerosing agents +C0161608|T037|AB|972.8|ICD9CM|Poison-capillary act agt|Poison-capillary act agt +C0161608|T037|PT|972.8|ICD9CM|Poisoning by capillary-active drugs|Poisoning by capillary-active drugs +C0161609|T037|AB|972.9|ICD9CM|Pois-cardiovasc agt NEC|Pois-cardiovasc agt NEC +C0161609|T037|PT|972.9|ICD9CM|Poisoning by other and unspecified agents primarily affecting the cardiovascular system|Poisoning by other and unspecified agents primarily affecting the cardiovascular system +C0161610|T037|HT|973|ICD9CM|Poisoning by agents primarily affecting the gastrointestinal system|Poisoning by agents primarily affecting the gastrointestinal system +C0161611|T037|AB|973.0|ICD9CM|Pois-antacid/antigastric|Pois-antacid/antigastric +C0161611|T037|PT|973.0|ICD9CM|Poisoning by antacids and antigastric secretion drugs|Poisoning by antacids and antigastric secretion drugs +C0161612|T037|AB|973.1|ICD9CM|Pois-irritant cathartics|Pois-irritant cathartics +C0161612|T037|PT|973.1|ICD9CM|Poisoning by irritant cathartics|Poisoning by irritant cathartics +C0161613|T037|AB|973.2|ICD9CM|Pois-emollient cathartic|Pois-emollient cathartic +C0161613|T037|PT|973.2|ICD9CM|Poisoning by emollient cathartics|Poisoning by emollient cathartics +C3161460|T037|PT|973.3|ICD9CM|Poisoning by other cathartics, including intestinal atonia|Poisoning by other cathartics, including intestinal atonia +C3161460|T037|AB|973.3|ICD9CM|Poisoning-cathartic NEC|Poisoning-cathartic NEC +C0161615|T037|PT|973.4|ICD9CM|Poisoning by digestants|Poisoning by digestants +C0161615|T037|AB|973.4|ICD9CM|Poisoning-digestants|Poisoning-digestants +C0161616|T037|PT|973.5|ICD9CM|Poisoning by antidiarrheal drugs|Poisoning by antidiarrheal drugs +C0161616|T037|AB|973.5|ICD9CM|Poisoning-antidiarrh agt|Poisoning-antidiarrh agt +C0161617|T037|PT|973.6|ICD9CM|Poisoning by emetics|Poisoning by emetics +C0161617|T037|AB|973.6|ICD9CM|Poisoning-emetics|Poisoning-emetics +C0161618|T037|PT|973.8|ICD9CM|Poisoning by other specified agents primarily affecting the gastrointestinal system|Poisoning by other specified agents primarily affecting the gastrointestinal system +C0161618|T037|AB|973.8|ICD9CM|Poisoning-gi agents NEC|Poisoning-gi agents NEC +C0161619|T037|PT|973.9|ICD9CM|Poisoning by unspecified agent primarily affecting the gastrointestinal system|Poisoning by unspecified agent primarily affecting the gastrointestinal system +C0161619|T037|AB|973.9|ICD9CM|Poisoning-gi agent NOS|Poisoning-gi agent NOS +C0859760|T037|HT|974|ICD9CM|Poisoning by water, mineral, and uric acid metabolism drugs|Poisoning by water, mineral, and uric acid metabolism drugs +C0161621|T037|AB|974.0|ICD9CM|Pois-mercurial diuretics|Pois-mercurial diuretics +C0161621|T037|PT|974.0|ICD9CM|Poisoning by mercurial diuretics|Poisoning by mercurial diuretics +C0161622|T037|AB|974.1|ICD9CM|Pois-purine diuretics|Pois-purine diuretics +C0161622|T037|PT|974.1|ICD9CM|Poisoning by purine derivative diuretics|Poisoning by purine derivative diuretics +C0161623|T037|AB|974.2|ICD9CM|Pois-h2co3 anhydra inhib|Pois-h2co3 anhydra inhib +C0161623|T037|PT|974.2|ICD9CM|Poisoning by carbonic acid anhydrase inhibitors|Poisoning by carbonic acid anhydrase inhibitors +C0161624|T037|PT|974.3|ICD9CM|Poisoning by saluretics|Poisoning by saluretics +C0161624|T037|AB|974.3|ICD9CM|Poisoning-saluretics|Poisoning-saluretics +C0161625|T037|PT|974.4|ICD9CM|Poisoning by other diuretics|Poisoning by other diuretics +C0161625|T037|AB|974.4|ICD9CM|Poisoning-diuretics NEC|Poisoning-diuretics NEC +C0161626|T037|AB|974.5|ICD9CM|Pois-electro/cal/wat agt|Pois-electro/cal/wat agt +C0161626|T037|PT|974.5|ICD9CM|Poisoning by electrolytic, caloric, and water-balance agents|Poisoning by electrolytic, caloric, and water-balance agents +C0302406|T037|AB|974.6|ICD9CM|Poison-mineral salts NEC|Poison-mineral salts NEC +C0302406|T037|PT|974.6|ICD9CM|Poisoning by other mineral salts, not elsewhere classified|Poisoning by other mineral salts, not elsewhere classified +C0161628|T037|AB|974.7|ICD9CM|Pois-uric acid metabol|Pois-uric acid metabol +C0161628|T037|PT|974.7|ICD9CM|Poisoning by uric acid metabolism drugs|Poisoning by uric acid metabolism drugs +C0161629|T037|HT|975|ICD9CM|Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system|Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system +C0161630|T037|PT|975.0|ICD9CM|Poisoning by oxytocic agents|Poisoning by oxytocic agents +C0161630|T037|AB|975.0|ICD9CM|Poisoning-oxytocic agent|Poisoning-oxytocic agent +C0161631|T037|AB|975.1|ICD9CM|Pois-smooth muscle relax|Pois-smooth muscle relax +C0161631|T037|PT|975.1|ICD9CM|Poisoning by smooth muscle relaxants|Poisoning by smooth muscle relaxants +C0161632|T037|AB|975.2|ICD9CM|Pois-skelet muscle relax|Pois-skelet muscle relax +C0161632|T037|PT|975.2|ICD9CM|Poisoning by skeletal muscle relaxants|Poisoning by skeletal muscle relaxants +C0161633|T037|AB|975.3|ICD9CM|Poison-muscle agent NEC|Poison-muscle agent NEC +C0161633|T037|PT|975.3|ICD9CM|Poisoning by other and unspecified drugs acting on muscles|Poisoning by other and unspecified drugs acting on muscles +C0161634|T037|PT|975.4|ICD9CM|Poisoning by antitussives|Poisoning by antitussives +C0161634|T037|AB|975.4|ICD9CM|Poisoning-antitussives|Poisoning-antitussives +C0161635|T037|PT|975.5|ICD9CM|Poisoning by expectorants|Poisoning by expectorants +C0161635|T037|AB|975.5|ICD9CM|Poisoning-expectorants|Poisoning-expectorants +C0161636|T037|AB|975.6|ICD9CM|Pois-anti-cold drugs|Pois-anti-cold drugs +C0161636|T037|PT|975.6|ICD9CM|Poisoning by anti-common cold drugs|Poisoning by anti-common cold drugs +C0161637|T037|PT|975.7|ICD9CM|Poisoning by antiasthmatics|Poisoning by antiasthmatics +C0161637|T037|AB|975.7|ICD9CM|Poisoning-antiasthmatics|Poisoning-antiasthmatics +C0478453|T037|AB|975.8|ICD9CM|Pois-respir drug NEC/NOS|Pois-respir drug NEC/NOS +C0478453|T037|PT|975.8|ICD9CM|Poisoning by other and unspecified respiratory drugs|Poisoning by other and unspecified respiratory drugs +C0161640|T037|AB|976.0|ICD9CM|Pois-local anti-infect|Pois-local anti-infect +C0161640|T037|PT|976.0|ICD9CM|Poisoning by local anti-infectives and anti-inflammatory drugs|Poisoning by local anti-infectives and anti-inflammatory drugs +C0161641|T037|PT|976.1|ICD9CM|Poisoning by antipruritics|Poisoning by antipruritics +C0161641|T037|AB|976.1|ICD9CM|Poisoning-antipruritics|Poisoning-antipruritics +C0161642|T037|AB|976.2|ICD9CM|Pois-loc astring/deterg|Pois-loc astring/deterg +C0161642|T037|PT|976.2|ICD9CM|Poisoning by local astringents and local detergents|Poisoning by local astringents and local detergents +C0161643|T037|AB|976.3|ICD9CM|Pois-emol/demul/protect|Pois-emol/demul/protect +C0161643|T037|PT|976.3|ICD9CM|Poisoning by emollients, demulcents, and protectants|Poisoning by emollients, demulcents, and protectants +C0161644|T037|AB|976.4|ICD9CM|Poison-hair/scalp prep|Poison-hair/scalp prep +C0161644|T037|PT|976.4|ICD9CM|Poisoning by keratolytics, keratoplastics, other hair treatment drugs and preparations|Poisoning by keratolytics, keratoplastics, other hair treatment drugs and preparations +C0161645|T037|AB|976.5|ICD9CM|Pois-eye anti-infec/drug|Pois-eye anti-infec/drug +C0161645|T037|PT|976.5|ICD9CM|Poisoning by eye anti-infectives and other eye drugs|Poisoning by eye anti-infectives and other eye drugs +C0161646|T037|AB|976.6|ICD9CM|Poison-ent preparation|Poison-ent preparation +C0161646|T037|PT|976.6|ICD9CM|Poisoning by anti-infectives and other drugs and preparations for ear, nose, and throat|Poisoning by anti-infectives and other drugs and preparations for ear, nose, and throat +C0161647|T037|AB|976.7|ICD9CM|Pois-topical dental drug|Pois-topical dental drug +C0161647|T037|PT|976.7|ICD9CM|Poisoning by dental drugs topically applied|Poisoning by dental drugs topically applied +C0161648|T037|AB|976.8|ICD9CM|Pois-skin/membr agnt NEC|Pois-skin/membr agnt NEC +C0161648|T037|PT|976.8|ICD9CM|Poisoning by other agents primarily affecting skin and mucous membrane|Poisoning by other agents primarily affecting skin and mucous membrane +C0161649|T037|AB|976.9|ICD9CM|Pois-skin/membr agnt NOS|Pois-skin/membr agnt NOS +C0161649|T037|PT|976.9|ICD9CM|Poisoning by unspecified agent primarily affecting skin and mucous membrane|Poisoning by unspecified agent primarily affecting skin and mucous membrane +C0412909|T037|HT|977|ICD9CM|Poisoning by other and unspecified drugs and medicinal substances|Poisoning by other and unspecified drugs and medicinal substances +C0161651|T037|PT|977.0|ICD9CM|Poisoning by dietetics|Poisoning by dietetics +C0161651|T037|AB|977.0|ICD9CM|Poisoning-dietetics|Poisoning-dietetics +C0161652|T037|AB|977.1|ICD9CM|Poison-lipotropic drugs|Poison-lipotropic drugs +C0161652|T037|PT|977.1|ICD9CM|Poisoning by lipotropic drugs|Poisoning by lipotropic drugs +C0869440|T037|PT|977.2|ICD9CM|Poisoning by antidotes and chelating agents, not elsewhere classified|Poisoning by antidotes and chelating agents, not elsewhere classified +C0869440|T037|AB|977.2|ICD9CM|Poisoning-antidotes NEC|Poisoning-antidotes NEC +C0161654|T037|AB|977.3|ICD9CM|Poison-alcohol deterrent|Poison-alcohol deterrent +C0161654|T037|PT|977.3|ICD9CM|Poisoning by alcohol deterrents|Poisoning by alcohol deterrents +C0161655|T037|AB|977.4|ICD9CM|Pois-pharmaceut excipien|Pois-pharmaceut excipien +C0161655|T037|PT|977.4|ICD9CM|Poisoning by pharmaceutical excipients|Poisoning by pharmaceutical excipients +C0161656|T037|AB|977.8|ICD9CM|Poison-medicinal agt NEC|Poison-medicinal agt NEC +C0161656|T037|PT|977.8|ICD9CM|Poisoning by other specified drugs and medicinal substances|Poisoning by other specified drugs and medicinal substances +C0013221|T037|AB|977.9|ICD9CM|Poison-medicinal agt NOS|Poison-medicinal agt NOS +C0013221|T037|PT|977.9|ICD9CM|Poisoning by unspecified drug or medicinal substance|Poisoning by unspecified drug or medicinal substance +C0161658|T037|HT|978|ICD9CM|Poisoning by bacterial vaccines|Poisoning by bacterial vaccines +C0161659|T037|PT|978.0|ICD9CM|Poisoning by BCG vaccine|Poisoning by BCG vaccine +C0161659|T037|AB|978.0|ICD9CM|Poisoning-bcg vaccine|Poisoning-bcg vaccine +C0412915|T037|AB|978.1|ICD9CM|Pois-typh/paratyph vacc|Pois-typh/paratyph vacc +C0412915|T037|PT|978.1|ICD9CM|Poisoning by typhoid and paratyphoid vaccine|Poisoning by typhoid and paratyphoid vaccine +C0161661|T037|PT|978.2|ICD9CM|Poisoning by cholera vaccine|Poisoning by cholera vaccine +C0161661|T037|AB|978.2|ICD9CM|Poisoning-cholera vaccin|Poisoning-cholera vaccin +C0161662|T037|PT|978.3|ICD9CM|Poisoning by plague vaccine|Poisoning by plague vaccine +C0161662|T037|AB|978.3|ICD9CM|Poisoning-plague vaccine|Poisoning-plague vaccine +C0161663|T037|PT|978.4|ICD9CM|Poisoning by tetanus vaccine|Poisoning by tetanus vaccine +C0161663|T037|AB|978.4|ICD9CM|Poisoning-tetanus vaccin|Poisoning-tetanus vaccin +C0161664|T037|AB|978.5|ICD9CM|Pois-diphtheria vaccine|Pois-diphtheria vaccine +C0161664|T037|PT|978.5|ICD9CM|Poisoning by diphtheria vaccine|Poisoning by diphtheria vaccine +C0412916|T037|AB|978.6|ICD9CM|Pois-pertussis vaccine|Pois-pertussis vaccine +C0412916|T037|PT|978.6|ICD9CM|Poisoning by pertussis vaccine, including combinations with a pertussis component|Poisoning by pertussis vaccine, including combinations with a pertussis component +C0161666|T037|AB|978.8|ICD9CM|Pois-bact vaccin NEC/NOS|Pois-bact vaccin NEC/NOS +C0161666|T037|PT|978.8|ICD9CM|Poisoning by other and unspecified bacterial vaccines|Poisoning by other and unspecified bacterial vaccines +C0412917|T037|AB|978.9|ICD9CM|Pois-mix bacter vaccines|Pois-mix bacter vaccines +C0412917|T037|PT|978.9|ICD9CM|Poisoning by mixed bacterial vaccines, except combinations with a pertussis component|Poisoning by mixed bacterial vaccines, except combinations with a pertussis component +C0161677|T037|HT|979|ICD9CM|Poisoning by other vaccines and biological substances|Poisoning by other vaccines and biological substances +C0161669|T037|AB|979.0|ICD9CM|Poison-smallpox vaccine|Poison-smallpox vaccine +C0161669|T037|PT|979.0|ICD9CM|Poisoning by smallpox vaccine|Poisoning by smallpox vaccine +C0161670|T037|AB|979.1|ICD9CM|Poison-rabies vaccine|Poison-rabies vaccine +C0161670|T037|PT|979.1|ICD9CM|Poisoning by rabies vaccine|Poisoning by rabies vaccine +C0161671|T037|AB|979.2|ICD9CM|Poison-typhus vaccine|Poison-typhus vaccine +C0161671|T037|PT|979.2|ICD9CM|Poisoning by typhus vaccine|Poisoning by typhus vaccine +C0161672|T037|AB|979.3|ICD9CM|Pois-yellow fever vaccin|Pois-yellow fever vaccin +C0161672|T037|PT|979.3|ICD9CM|Poisoning by yellow fever vaccine|Poisoning by yellow fever vaccine +C0161673|T037|PT|979.4|ICD9CM|Poisoning by measles vaccine|Poisoning by measles vaccine +C0161673|T037|AB|979.4|ICD9CM|Poisoning-measles vaccin|Poisoning-measles vaccin +C0161674|T037|AB|979.5|ICD9CM|Pois-poliomyelit vaccine|Pois-poliomyelit vaccine +C0161674|T037|PT|979.5|ICD9CM|Poisoning by poliomyelitis vaccine|Poisoning by poliomyelitis vaccine +C0161675|T037|AB|979.6|ICD9CM|Pois-viral/rick vacc NEC|Pois-viral/rick vacc NEC +C0161675|T037|PT|979.6|ICD9CM|Poisoning by other and unspecified viral and rickettsial vaccines|Poisoning by other and unspecified viral and rickettsial vaccines +C0161676|T037|AB|979.7|ICD9CM|Poisoning-mixed vaccine|Poisoning-mixed vaccine +C0161677|T037|AB|979.9|ICD9CM|Pois-vaccine/biolog NEC|Pois-vaccine/biolog NEC +C0161677|T037|PT|979.9|ICD9CM|Poisoning by other and unspecified vaccines and biological substances|Poisoning by other and unspecified vaccines and biological substances +C0161678|T037|HT|980|ICD9CM|Toxic effect of alcohol|Toxic effect of alcohol +C0274829|T037|HT|980-989.99|ICD9CM|TOXIC EFFECTS OF SUBSTANCES CHIEFLY NONMEDICINAL AS TO SOURCE|TOXIC EFFECTS OF SUBSTANCES CHIEFLY NONMEDICINAL AS TO SOURCE +C0161679|T037|AB|980.0|ICD9CM|Toxic eff ethyl alcohol|Toxic eff ethyl alcohol +C0161679|T037|PT|980.0|ICD9CM|Toxic effect of ethyl alcohol|Toxic effect of ethyl alcohol +C0161680|T037|AB|980.1|ICD9CM|Toxic eff methyl alcohol|Toxic eff methyl alcohol +C0161680|T037|PT|980.1|ICD9CM|Toxic effect of methyl alcohol|Toxic effect of methyl alcohol +C0161681|T037|AB|980.2|ICD9CM|Toxic eff isopropyl alc|Toxic eff isopropyl alc +C0161681|T037|PT|980.2|ICD9CM|Toxic effect of isopropyl alcohol|Toxic effect of isopropyl alcohol +C0161682|T037|AB|980.3|ICD9CM|Toxic effect fusel oil|Toxic effect fusel oil +C0161682|T037|PT|980.3|ICD9CM|Toxic effect of fusel oil|Toxic effect of fusel oil +C0161683|T037|AB|980.8|ICD9CM|Toxic effect alcohol NEC|Toxic effect alcohol NEC +C0161683|T037|PT|980.8|ICD9CM|Toxic effect of other specified alcohols|Toxic effect of other specified alcohols +C0161678|T037|AB|980.9|ICD9CM|Toxic effect alcohol NOS|Toxic effect alcohol NOS +C0161678|T037|PT|980.9|ICD9CM|Toxic effect of unspecified alcohol|Toxic effect of unspecified alcohol +C0161685|T037|AB|981|ICD9CM|Toxic eff petroleum prod|Toxic eff petroleum prod +C0161685|T037|PT|981|ICD9CM|Toxic effect of petroleum products|Toxic effect of petroleum products +C0274842|T037|HT|982|ICD9CM|Toxic effect of solvents other than petroleum based|Toxic effect of solvents other than petroleum based +C0161687|T037|AB|982.0|ICD9CM|Toxic effect benzene|Toxic effect benzene +C0161687|T037|PT|982.0|ICD9CM|Toxic effect of benzene and homologues|Toxic effect of benzene and homologues +C0392622|T037|AB|982.1|ICD9CM|Toxic eff carbon tetrach|Toxic eff carbon tetrach +C0392622|T037|PT|982.1|ICD9CM|Toxic effect of carbon tetrachloride|Toxic effect of carbon tetrachloride +C0161689|T037|AB|982.2|ICD9CM|Toxic eff carbon disulfi|Toxic eff carbon disulfi +C0161689|T037|PT|982.2|ICD9CM|Toxic effect of carbon disulfide|Toxic effect of carbon disulfide +C0412954|T037|PT|982.3|ICD9CM|Toxic effect of other chlorinated hydrocarbon solvents|Toxic effect of other chlorinated hydrocarbon solvents +C0412954|T037|AB|982.3|ICD9CM|Tx ef cl-hydcarb slv NEC|Tx ef cl-hydcarb slv NEC +C0161691|T037|AB|982.4|ICD9CM|Toxic effect nitroglycol|Toxic effect nitroglycol +C0161691|T037|PT|982.4|ICD9CM|Toxic effect of nitroglycol|Toxic effect of nitroglycol +C0161692|T037|AB|982.8|ICD9CM|Toxic eff nonpetrol solv|Toxic eff nonpetrol solv +C0161692|T037|PT|982.8|ICD9CM|Toxic effect of other nonpetroleum-based solvents|Toxic effect of other nonpetroleum-based solvents +C0161693|T037|HT|983|ICD9CM|Toxic effect of corrosive aromatics, acids, and caustic alkalis|Toxic effect of corrosive aromatics, acids, and caustic alkalis +C0161694|T037|AB|983.0|ICD9CM|Tox eff corrosive aromat|Tox eff corrosive aromat +C0161694|T037|PT|983.0|ICD9CM|Toxic effect of corrosive aromatics|Toxic effect of corrosive aromatics +C0161695|T037|AB|983.1|ICD9CM|Toxic effect acids|Toxic effect acids +C0161695|T037|PT|983.1|ICD9CM|Toxic effect of acids|Toxic effect of acids +C0161696|T037|AB|983.2|ICD9CM|Toxic eff caustic alkali|Toxic eff caustic alkali +C0161696|T037|PT|983.2|ICD9CM|Toxic effect of caustic alkalis|Toxic effect of caustic alkalis +C0375691|T037|AB|983.9|ICD9CM|Toxic effect caustic NOS|Toxic effect caustic NOS +C0375691|T037|PT|983.9|ICD9CM|Toxic effect of caustic, unspecified|Toxic effect of caustic, unspecified +C0023176|T037|HT|984|ICD9CM|Toxic effect of lead and its compounds (including fumes)|Toxic effect of lead and its compounds (including fumes) +C0161699|T037|PT|984.0|ICD9CM|Toxic effect of inorganic lead compounds|Toxic effect of inorganic lead compounds +C0161699|T037|AB|984.0|ICD9CM|Tx eff inorg lead compnd|Tx eff inorg lead compnd +C0161700|T037|AB|984.1|ICD9CM|Tox eff org lead compnd|Tox eff org lead compnd +C0161700|T037|PT|984.1|ICD9CM|Toxic effect of organic lead compounds|Toxic effect of organic lead compounds +C0161701|T037|AB|984.8|ICD9CM|Tox eff lead compnd NEC|Tox eff lead compnd NEC +C0161701|T037|PT|984.8|ICD9CM|Toxic effect of other lead compounds|Toxic effect of other lead compounds +C0023176|T037|AB|984.9|ICD9CM|Tox eff lead compnd NOS|Tox eff lead compnd NOS +C0023176|T037|PT|984.9|ICD9CM|Toxic effect of unspecified lead compound|Toxic effect of unspecified lead compound +C0274869|T037|HT|985|ICD9CM|Toxic effect of other metals|Toxic effect of other metals +C0025427|T037|AB|985.0|ICD9CM|Toxic effect mercury|Toxic effect mercury +C0025427|T037|PT|985.0|ICD9CM|Toxic effect of mercury and its compounds|Toxic effect of mercury and its compounds +C0311375|T037|AB|985.1|ICD9CM|Toxic effect arsenic|Toxic effect arsenic +C0311375|T037|PT|985.1|ICD9CM|Toxic effect of arsenic and its compounds|Toxic effect of arsenic and its compounds +C0412991|T037|AB|985.2|ICD9CM|Toxic effect manganese|Toxic effect manganese +C0412991|T037|PT|985.2|ICD9CM|Toxic effect of manganese and its compounds|Toxic effect of manganese and its compounds +C0412992|T037|AB|985.3|ICD9CM|Toxic effect beryllium|Toxic effect beryllium +C0412992|T037|PT|985.3|ICD9CM|Toxic effect of beryllium and its compounds|Toxic effect of beryllium and its compounds +C0412993|T037|AB|985.4|ICD9CM|Toxic effect antimony|Toxic effect antimony +C0412993|T037|PT|985.4|ICD9CM|Toxic effect of antimony and its compounds|Toxic effect of antimony and its compounds +C0412994|T037|AB|985.5|ICD9CM|Toxic effect cadmium|Toxic effect cadmium +C0412994|T037|PT|985.5|ICD9CM|Toxic effect of cadmium and its compounds|Toxic effect of cadmium and its compounds +C0161708|T037|AB|985.6|ICD9CM|Toxic effect chromium|Toxic effect chromium +C0161708|T037|PT|985.6|ICD9CM|Toxic effect of chromium|Toxic effect of chromium +C0040531|T037|AB|985.8|ICD9CM|Toxic effect metals NEC|Toxic effect metals NEC +C0040531|T037|PT|985.8|ICD9CM|Toxic effect of other specified metals|Toxic effect of other specified metals +C0161709|T037|AB|985.9|ICD9CM|Toxic effect metal NOS|Toxic effect metal NOS +C0161709|T037|PT|985.9|ICD9CM|Toxic effect of unspecified metal|Toxic effect of unspecified metal +C1370867|T037|AB|986|ICD9CM|Tox eff carbon monoxide|Tox eff carbon monoxide +C1370867|T037|PT|986|ICD9CM|Toxic effect of carbon monoxide|Toxic effect of carbon monoxide +C0413000|T037|HT|987|ICD9CM|Toxic effect of other gases, fumes, or vapors|Toxic effect of other gases, fumes, or vapors +C0413005|T037|AB|987.0|ICD9CM|Toxic eff liq petrol gas|Toxic eff liq petrol gas +C0413005|T037|PT|987.0|ICD9CM|Toxic effect of liquefied petroleum gases|Toxic effect of liquefied petroleum gases +C0413004|T037|AB|987.1|ICD9CM|Tox ef hydrocarb gas NEC|Tox ef hydrocarb gas NEC +C0413004|T037|PT|987.1|ICD9CM|Toxic effect of other hydrocarbon gas|Toxic effect of other hydrocarbon gas +C0161713|T037|AB|987.2|ICD9CM|Toxic eff nitrogen oxide|Toxic eff nitrogen oxide +C0161713|T037|PT|987.2|ICD9CM|Toxic effect of nitrogen oxides|Toxic effect of nitrogen oxides +C0161714|T037|AB|987.3|ICD9CM|Toxic eff sulfur dioxide|Toxic eff sulfur dioxide +C0161714|T037|PT|987.3|ICD9CM|Toxic effect of sulfur dioxide|Toxic effect of sulfur dioxide +C0161715|T037|AB|987.4|ICD9CM|Toxic effect freon|Toxic effect freon +C0161715|T037|PT|987.4|ICD9CM|Toxic effect of freon|Toxic effect of freon +C0161716|T037|AB|987.5|ICD9CM|Tox eff lacrimogenic gas|Tox eff lacrimogenic gas +C0161716|T037|PT|987.5|ICD9CM|Toxic effect of lacrimogenic gas|Toxic effect of lacrimogenic gas +C0161717|T037|AB|987.6|ICD9CM|Toxic eff chlorine gas|Toxic eff chlorine gas +C0161717|T037|PT|987.6|ICD9CM|Toxic effect of chlorine gas|Toxic effect of chlorine gas +C0161718|T037|AB|987.7|ICD9CM|Tox eff hydrocyan acd gs|Tox eff hydrocyan acd gs +C0161718|T037|PT|987.7|ICD9CM|Toxic effect of hydrocyanic acid gas|Toxic effect of hydrocyanic acid gas +C0161719|T037|AB|987.8|ICD9CM|Toxic eff gas/vapor NEC|Toxic eff gas/vapor NEC +C0161719|T037|PT|987.8|ICD9CM|Toxic effect of other specified gases, fumes, or vapors|Toxic effect of other specified gases, fumes, or vapors +C0274870|T037|AB|987.9|ICD9CM|Toxic eff gas/vapor NOS|Toxic eff gas/vapor NOS +C0274870|T037|PT|987.9|ICD9CM|Toxic effect of unspecified gas, fume, or vapor|Toxic effect of unspecified gas, fume, or vapor +C0161721|T037|HT|988|ICD9CM|Toxic effect of noxious substances eaten as food|Toxic effect of noxious substances eaten as food +C0161722|T037|AB|988.0|ICD9CM|Toxic eff fish/shellfish|Toxic eff fish/shellfish +C0161722|T037|PT|988.0|ICD9CM|Toxic effect of fish and shellfish eaten as food|Toxic effect of fish and shellfish eaten as food +C0497026|T037|AB|988.1|ICD9CM|Toxic effect mushrooms|Toxic effect mushrooms +C0497026|T037|PT|988.1|ICD9CM|Toxic effect of mushrooms eaten as food|Toxic effect of mushrooms eaten as food +C0040528|T037|AB|988.2|ICD9CM|Tox eff berry/plant NEC|Tox eff berry/plant NEC +C0040528|T037|PT|988.2|ICD9CM|Toxic effect of berries and other plants eaten as food|Toxic effect of berries and other plants eaten as food +C0161723|T037|AB|988.8|ICD9CM|Tox eff noxious food NEC|Tox eff noxious food NEC +C0161723|T037|PT|988.8|ICD9CM|Toxic effect of other specified noxious substances eaten as food|Toxic effect of other specified noxious substances eaten as food +C0161721|T037|AB|988.9|ICD9CM|Tox eff noxious food NOS|Tox eff noxious food NOS +C0161721|T037|PT|988.9|ICD9CM|Toxic effect of unspecified noxious substance eaten as food|Toxic effect of unspecified noxious substance eaten as food +C0161725|T037|HT|989|ICD9CM|Toxic effect of other substances, chiefly nonmedicinal as to source|Toxic effect of other substances, chiefly nonmedicinal as to source +C0161726|T037|AB|989.0|ICD9CM|Toxic effect cyanides|Toxic effect cyanides +C0161726|T037|PT|989.0|ICD9CM|Toxic effect of hydrocyanic acid and cyanides|Toxic effect of hydrocyanic acid and cyanides +C0161727|T037|PT|989.1|ICD9CM|Toxic effect of strychnine and salts|Toxic effect of strychnine and salts +C0161727|T037|AB|989.1|ICD9CM|Toxic effect strychnine|Toxic effect strychnine +C0275016|T037|AB|989.2|ICD9CM|Tox eff chlor hydrocarb|Tox eff chlor hydrocarb +C0275016|T037|PT|989.2|ICD9CM|Toxic effect of chlorinated hydrocarbons|Toxic effect of chlorinated hydrocarbons +C0413040|T037|AB|989.3|ICD9CM|Tox eff organphos/carbam|Tox eff organphos/carbam +C0413040|T037|PT|989.3|ICD9CM|Toxic effect of organophosphate and carbamate|Toxic effect of organophosphate and carbamate +C0302408|T037|AB|989.4|ICD9CM|Toxic eff pesticides NEC|Toxic eff pesticides NEC +C0302408|T037|PT|989.4|ICD9CM|Toxic effect of other pesticides, not elsewhere classified|Toxic effect of other pesticides, not elsewhere classified +C0040533|T037|PT|989.5|ICD9CM|Toxic effect of venom|Toxic effect of venom +C0040533|T037|AB|989.5|ICD9CM|Toxic effect venom|Toxic effect venom +C0274908|T037|AB|989.6|ICD9CM|Toxic eff soap/detergent|Toxic eff soap/detergent +C0274908|T037|PT|989.6|ICD9CM|Toxic effect of soaps and detergents|Toxic effect of soaps and detergents +C0161732|T037|AB|989.7|ICD9CM|Tox eff aflatox/mycotox|Tox eff aflatox/mycotox +C0161732|T037|PT|989.7|ICD9CM|Toxic effect of aflatoxin and other mycotoxin (food contaminants)|Toxic effect of aflatoxin and other mycotoxin (food contaminants) +C0161725|T037|HT|989.8|ICD9CM|Toxic effect of other substances, chiefly nonmedicinal as to source|Toxic effect of other substances, chiefly nonmedicinal as to source +C0375692|T037|AB|989.81|ICD9CM|Toxic effect of asbestos|Toxic effect of asbestos +C0375692|T037|PT|989.81|ICD9CM|Toxic effect of asbestos|Toxic effect of asbestos +C0375693|T037|AB|989.82|ICD9CM|Toxic effect of latex|Toxic effect of latex +C0375693|T037|PT|989.82|ICD9CM|Toxic effect of latex|Toxic effect of latex +C0375694|T037|AB|989.83|ICD9CM|Toxic effect of silicone|Toxic effect of silicone +C0375694|T037|PT|989.83|ICD9CM|Toxic effect of silicone|Toxic effect of silicone +C0375695|T037|AB|989.84|ICD9CM|Toxic effect of tobacco|Toxic effect of tobacco +C0375695|T037|PT|989.84|ICD9CM|Toxic effect of tobacco|Toxic effect of tobacco +C0161725|T037|AB|989.89|ICD9CM|Tox eff nonmed subst NEC|Tox eff nonmed subst NEC +C0161725|T037|PT|989.89|ICD9CM|Toxic effect of other substance, chiefly nonmedicinal as to source, not elsewhere classified|Toxic effect of other substance, chiefly nonmedicinal as to source, not elsewhere classified +C0274829|T037|AB|989.9|ICD9CM|Tox eff nonmed subst NOS|Tox eff nonmed subst NOS +C0274829|T037|PT|989.9|ICD9CM|Toxic effect of unspecified substance, chiefly nonmedicinal as to source|Toxic effect of unspecified substance, chiefly nonmedicinal as to source +C0013679|T037|HT|990-995.99|ICD9CM|OTHER AND UNSPECIFIED EFFECTS OF EXTERNAL CAUSES|OTHER AND UNSPECIFIED EFFECTS OF EXTERNAL CAUSES +C0161734|T037|HT|991|ICD9CM|Effects of reduced temperature|Effects of reduced temperature +C0161735|T037|AB|991.0|ICD9CM|Frostbite of face|Frostbite of face +C0161735|T037|PT|991.0|ICD9CM|Frostbite of face|Frostbite of face +C0161736|T037|AB|991.1|ICD9CM|Frostbite of hand|Frostbite of hand +C0161736|T037|PT|991.1|ICD9CM|Frostbite of hand|Frostbite of hand +C0161737|T037|AB|991.2|ICD9CM|Frostbite of foot|Frostbite of foot +C0161737|T037|PT|991.2|ICD9CM|Frostbite of foot|Frostbite of foot +C0016737|T037|AB|991.3|ICD9CM|Frostbite NEC/NOS|Frostbite NEC/NOS +C0016737|T037|PT|991.3|ICD9CM|Frostbite of other and unspecified sites|Frostbite of other and unspecified sites +C0020941|T037|AB|991.4|ICD9CM|Immersion foot|Immersion foot +C0020941|T037|PT|991.4|ICD9CM|Immersion foot|Immersion foot +C0008058|T047|AB|991.5|ICD9CM|Chilblains|Chilblains +C0008058|T047|PT|991.5|ICD9CM|Chilblains|Chilblains +C0413252|T037|AB|991.6|ICD9CM|Hypothermia|Hypothermia +C0413252|T037|PT|991.6|ICD9CM|Hypothermia|Hypothermia +C0161738|T037|AB|991.8|ICD9CM|Effect reduced temp NEC|Effect reduced temp NEC +C0161738|T037|PT|991.8|ICD9CM|Other specified effects of reduced temperature|Other specified effects of reduced temperature +C0161734|T037|AB|991.9|ICD9CM|Effect reduced temp NOS|Effect reduced temp NOS +C0161734|T037|PT|991.9|ICD9CM|Unspecified effect of reduced temperature|Unspecified effect of reduced temperature +C0274287|T037|HT|992|ICD9CM|Effects of heat and light|Effects of heat and light +C0018844|T037|AB|992.0|ICD9CM|Heat stroke & sunstroke|Heat stroke & sunstroke +C0018844|T037|PT|992.0|ICD9CM|Heat stroke and sunstroke|Heat stroke and sunstroke +C0018845|T037|AB|992.1|ICD9CM|Heat syncope|Heat syncope +C0018845|T037|PT|992.1|ICD9CM|Heat syncope|Heat syncope +C0085592|T037|AB|992.2|ICD9CM|Heat cramps|Heat cramps +C0085592|T037|PT|992.2|ICD9CM|Heat cramps|Heat cramps +C0274288|T037|AB|992.3|ICD9CM|Heat exhaust-anhydrotic|Heat exhaust-anhydrotic +C0274288|T037|PT|992.3|ICD9CM|Heat exhaustion, anhydrotic|Heat exhaustion, anhydrotic +C0152144|T037|AB|992.4|ICD9CM|Heat exhaust-salt deple|Heat exhaust-salt deple +C0152144|T037|PT|992.4|ICD9CM|Heat exhaustion due to salt depletion|Heat exhaustion due to salt depletion +C0018839|T037|AB|992.5|ICD9CM|Heat exhaustion NOS|Heat exhaustion NOS +C0018839|T037|PT|992.5|ICD9CM|Heat exhaustion, unspecified|Heat exhaustion, unspecified +C0152145|T037|AB|992.6|ICD9CM|Heat fatigue, transient|Heat fatigue, transient +C0152145|T037|PT|992.6|ICD9CM|Heat fatigue, transient|Heat fatigue, transient +C0161741|T046|AB|992.7|ICD9CM|Heat edema|Heat edema +C0161741|T046|PT|992.7|ICD9CM|Heat edema|Heat edema +C0161742|T037|AB|992.8|ICD9CM|Heat effect NEC|Heat effect NEC +C0161742|T037|PT|992.8|ICD9CM|Other specified heat effects|Other specified heat effects +C0274287|T037|AB|992.9|ICD9CM|Heat effect NOS|Heat effect NOS +C0274287|T037|PT|992.9|ICD9CM|Unspecified effects of heat and light|Unspecified effects of heat and light +C1306873|T037|HT|993|ICD9CM|Effects of air pressure|Effects of air pressure +C0161744|T037|AB|993.0|ICD9CM|Barotrauma, otitic|Barotrauma, otitic +C0161744|T037|PT|993.0|ICD9CM|Barotrauma, otitic|Barotrauma, otitic +C0161745|T037|AB|993.1|ICD9CM|Barotrauma, sinus|Barotrauma, sinus +C0161745|T037|PT|993.1|ICD9CM|Barotrauma, sinus|Barotrauma, sinus +C0029499|T037|AB|993.2|ICD9CM|Eff high altitud NEC/NOS|Eff high altitud NEC/NOS +C0029499|T037|PT|993.2|ICD9CM|Other and unspecified effects of high altitude|Other and unspecified effects of high altitude +C0011119|T047|AB|993.3|ICD9CM|Caisson disease|Caisson disease +C0011119|T047|PT|993.3|ICD9CM|Caisson disease|Caisson disease +C0005700|T037|AB|993.4|ICD9CM|Eff air press by explos|Eff air press by explos +C0005700|T037|PT|993.4|ICD9CM|Effects of air pressure caused by explosion|Effects of air pressure caused by explosion +C0161747|T037|AB|993.8|ICD9CM|Effect air pressure NEC|Effect air pressure NEC +C0161747|T037|PT|993.8|ICD9CM|Other specified effects of air pressure|Other specified effects of air pressure +C0161748|T037|AB|993.9|ICD9CM|Effect air pressure NOS|Effect air pressure NOS +C0161748|T037|PT|993.9|ICD9CM|Unspecified effect of air pressure|Unspecified effect of air pressure +C0013679|T037|HT|994|ICD9CM|Effects of other external causes|Effects of other external causes +C0023702|T037|AB|994.0|ICD9CM|Effects of lightning|Effects of lightning +C0023702|T037|PT|994.0|ICD9CM|Effects of lightning|Effects of lightning +C0013143|T037|PT|994.1|ICD9CM|Drowning and nonfatal submersion|Drowning and nonfatal submersion +C0013143|T037|AB|994.1|ICD9CM|Drowning/nonfatal submer|Drowning/nonfatal submer +C0311274|T037|AB|994.2|ICD9CM|Effects of hunger|Effects of hunger +C0311274|T037|PT|994.2|ICD9CM|Effects of hunger|Effects of hunger +C0013680|T047|AB|994.3|ICD9CM|Effects of thirst|Effects of thirst +C0013680|T047|PT|994.3|ICD9CM|Effects of thirst|Effects of thirst +C0161749|T037|PT|994.4|ICD9CM|Exhaustion due to exposure|Exhaustion due to exposure +C0161749|T037|AB|994.4|ICD9CM|Exhaustion-exposure|Exhaustion-exposure +C0161750|T037|PT|994.5|ICD9CM|Exhaustion due to excessive exertion|Exhaustion due to excessive exertion +C0161750|T037|AB|994.5|ICD9CM|Exhaustion-excess exert|Exhaustion-excess exert +C0026603|T047|AB|994.6|ICD9CM|Motion sickness|Motion sickness +C0026603|T047|PT|994.6|ICD9CM|Motion sickness|Motion sickness +C0161751|T037|PT|994.7|ICD9CM|Asphyxiation and strangulation|Asphyxiation and strangulation +C0161751|T037|AB|994.7|ICD9CM|Asphyxiation/strangulat|Asphyxiation/strangulat +C0161752|T037|AB|994.8|ICD9CM|Effects electric current|Effects electric current +C0161752|T037|PT|994.8|ICD9CM|Electrocution and nonfatal effects of electric current|Electrocution and nonfatal effects of electric current +C2240397|T037|AB|994.9|ICD9CM|Effect external caus NEC|Effect external caus NEC +C2240397|T037|PT|994.9|ICD9CM|Other effects of external causes|Other effects of external causes +C0302409|T037|HT|995|ICD9CM|Certain adverse effects not elsewhere classified|Certain adverse effects not elsewhere classified +C3161335|T037|AB|995.0|ICD9CM|Other anaphylactic react|Other anaphylactic react +C3161335|T037|PT|995.0|ICD9CM|Other anaphylactic reaction|Other anaphylactic reaction +C0877771|T046|AB|995.1|ICD9CM|Angioneurotic edema|Angioneurotic edema +C0877771|T046|PT|995.1|ICD9CM|Angioneurotic edema, not elsewhere classified|Angioneurotic edema, not elsewhere classified +C2921193|T037|HT|995.2|ICD9CM|Other and unspecified adverse effect of drug, medicinal and biological substance|Other and unspecified adverse effect of drug, medicinal and biological substance +C1719666|T046|AB|995.20|ICD9CM|Adv eff med/biol sub NOS|Adv eff med/biol sub NOS +C1719666|T046|PT|995.20|ICD9CM|Unspecified adverse effect of unspecified drug, medicinal and biological substance|Unspecified adverse effect of unspecified drug, medicinal and biological substance +C0003907|T047|PT|995.21|ICD9CM|Arthus phenomenon|Arthus phenomenon +C0003907|T047|AB|995.21|ICD9CM|Arthus phenomenon|Arthus phenomenon +C1719667|T046|AB|995.22|ICD9CM|Adv eff anesthesia NOS|Adv eff anesthesia NOS +C1719667|T046|PT|995.22|ICD9CM|Unspecified adverse effect of anesthesia|Unspecified adverse effect of anesthesia +C1719668|T046|AB|995.23|ICD9CM|Adverse eff insulin NOS|Adverse eff insulin NOS +C1719668|T046|PT|995.23|ICD9CM|Unspecified adverse effect of insulin|Unspecified adverse effect of insulin +C2712382|T037|AB|995.24|ICD9CM|Fail mod sedate dur proc|Fail mod sedate dur proc +C2712382|T037|PT|995.24|ICD9CM|Failed moderate sedation during procedure|Failed moderate sedation during procedure +C1719669|T047|AB|995.27|ICD9CM|Drug allergy NEC|Drug allergy NEC +C1719669|T047|PT|995.27|ICD9CM|Other drug allergy|Other drug allergy +C1719670|T046|AB|995.29|ICD9CM|Adv eff med/biol NEC/NOS|Adv eff med/biol NEC/NOS +C1719670|T046|PT|995.29|ICD9CM|Unspecified adverse effect of other drug, medicinal and biological substance|Unspecified adverse effect of other drug, medicinal and biological substance +C0700625|T047|AB|995.3|ICD9CM|Allergy, unspecified|Allergy, unspecified +C0700625|T047|PT|995.3|ICD9CM|Allergy, unspecified, not elsewhere classified|Allergy, unspecified, not elsewhere classified +C0812420|T037|AB|995.4|ICD9CM|Shock due to anesthesia|Shock due to anesthesia +C0812420|T037|PT|995.4|ICD9CM|Shock due to anesthesia, not elsewhere classified|Shock due to anesthesia, not elsewhere classified +C0008060|T048|HT|995.5|ICD9CM|Child maltreatment syndrome|Child maltreatment syndrome +C0008060|T048|AB|995.50|ICD9CM|Child abuse NOS|Child abuse NOS +C0008060|T048|PT|995.50|ICD9CM|Child abuse, unspecified|Child abuse, unspecified +C0375699|T048|PT|995.51|ICD9CM|Child emotional/psychological abuse|Child emotional/psychological abuse +C0375699|T048|AB|995.51|ICD9CM|Child emotnl/psych abuse|Child emotnl/psych abuse +C0375700|T033|PT|995.52|ICD9CM|Child neglect (nutritional)|Child neglect (nutritional) +C0375700|T033|AB|995.52|ICD9CM|Child neglect-nutrition|Child neglect-nutrition +C0008062|T048|AB|995.53|ICD9CM|Child sexual abuse|Child sexual abuse +C0008062|T048|PT|995.53|ICD9CM|Child sexual abuse|Child sexual abuse +C0236861|T033|AB|995.54|ICD9CM|Child physical abuse|Child physical abuse +C0236861|T033|PT|995.54|ICD9CM|Child physical abuse|Child physical abuse +C0686721|T037|PT|995.55|ICD9CM|Shaken baby syndrome|Shaken baby syndrome +C0686721|T037|AB|995.55|ICD9CM|Shaken infant syndrome|Shaken infant syndrome +C0375702|T037|AB|995.59|ICD9CM|Child abuse/neglect NEC|Child abuse/neglect NEC +C0375702|T037|PT|995.59|ICD9CM|Other child abuse and neglect|Other child abuse and neglect +C0685898|T047|HT|995.6|ICD9CM|Anaphylactic reaction due to food|Anaphylactic reaction due to food +C0375703|T037|PT|995.60|ICD9CM|Anaphylactic reaction due to unspecified food|Anaphylactic reaction due to unspecified food +C0375703|T037|AB|995.60|ICD9CM|Anphylct react food NOS|Anphylct react food NOS +C0859855|T046|PT|995.61|ICD9CM|Anaphylactic reaction due to peanuts|Anaphylactic reaction due to peanuts +C0859855|T046|AB|995.61|ICD9CM|Anphylct react peanuts|Anphylct react peanuts +C0859856|T046|PT|995.62|ICD9CM|Anaphylactic reaction due to crustaceans|Anaphylactic reaction due to crustaceans +C0859856|T046|AB|995.62|ICD9CM|Anphylct react crstacns|Anphylct react crstacns +C0859857|T046|PT|995.63|ICD9CM|Anaphylactic reaction due to fruits and vegetables|Anaphylactic reaction due to fruits and vegetables +C0859857|T046|AB|995.63|ICD9CM|Anphylct react frts veg|Anphylct react frts veg +C0375707|T046|PT|995.64|ICD9CM|Anaphylactic reaction due to tree nuts and seeds|Anaphylactic reaction due to tree nuts and seeds +C0375707|T046|AB|995.64|ICD9CM|Anphyl react tr nts seed|Anphyl react tr nts seed +C0859858|T046|PT|995.65|ICD9CM|Anaphylactic reaction due to fish|Anaphylactic reaction due to fish +C0859858|T046|AB|995.65|ICD9CM|Anphylct reaction fish|Anphylct reaction fish +C0859859|T046|PT|995.66|ICD9CM|Anaphylactic reaction due to food additives|Anaphylactic reaction due to food additives +C0859859|T046|AB|995.66|ICD9CM|Anphylct react food addv|Anphylct react food addv +C0859860|T046|PT|995.67|ICD9CM|Anaphylactic reaction due to milk products|Anaphylactic reaction due to milk products +C0859860|T046|AB|995.67|ICD9CM|Anphylct react milk prod|Anphylct react milk prod +C0859861|T046|PT|995.68|ICD9CM|Anaphylactic reaction due to eggs|Anaphylactic reaction due to eggs +C0859861|T046|AB|995.68|ICD9CM|Anphylct reaction eggs|Anphylct reaction eggs +C3161345|T046|PT|995.69|ICD9CM|Anaphylactic reaction due to other specified food|Anaphylactic reaction due to other specified food +C3161345|T046|AB|995.69|ICD9CM|Anphyl react oth sp food|Anphyl react oth sp food +C0869098|T037|AB|995.7|ICD9CM|Adverse food react NEC|Adverse food react NEC +C0869098|T037|PT|995.7|ICD9CM|Other adverse food reactions, not elsewhere classified|Other adverse food reactions, not elsewhere classified +C1561653|T037|HT|995.8|ICD9CM|Other specified adverse effects, not elsewhere classified|Other specified adverse effects, not elsewhere classified +C0375714|T037|AB|995.80|ICD9CM|Adult maltreatment NOS|Adult maltreatment NOS +C0375714|T037|PT|995.80|ICD9CM|Adult maltreatment, unspecified|Adult maltreatment, unspecified +C0236859|T037|AB|995.81|ICD9CM|Adult physical abuse|Adult physical abuse +C0236859|T037|PT|995.81|ICD9CM|Adult physical abuse|Adult physical abuse +C0375715|T048|PT|995.82|ICD9CM|Adult emotional/psychological abuse|Adult emotional/psychological abuse +C0375715|T048|AB|995.82|ICD9CM|Adult emotnl/psych abuse|Adult emotnl/psych abuse +C0236860|T048|AB|995.83|ICD9CM|Adult sexual abuse|Adult sexual abuse +C0236860|T048|PT|995.83|ICD9CM|Adult sexual abuse|Adult sexual abuse +C0375716|T033|PT|995.84|ICD9CM|Adult neglect (nutritional)|Adult neglect (nutritional) +C0375716|T033|AB|995.84|ICD9CM|Adult neglect-nutrition|Adult neglect-nutrition +C0375717|T048|AB|995.85|ICD9CM|Oth adult abuse/neglect|Oth adult abuse/neglect +C0375717|T048|PT|995.85|ICD9CM|Other adult abuse and neglect|Other adult abuse and neglect +C0024591|T047|AB|995.86|ICD9CM|Malignant hyperthermia|Malignant hyperthermia +C0024591|T047|PT|995.86|ICD9CM|Malignant hyperthermia|Malignant hyperthermia +C1561653|T037|AB|995.89|ICD9CM|Adverse effect NEC|Adverse effect NEC +C1561653|T037|PT|995.89|ICD9CM|Other specified adverse effects, not elsewhere classified|Other specified adverse effects, not elsewhere classified +C0242966|T047|HT|995.9|ICD9CM|Systemic inflammatory response syndrome (SIRS)|Systemic inflammatory response syndrome (SIRS) +C0242966|T047|AB|995.90|ICD9CM|SIRS, NOS|SIRS, NOS +C0242966|T047|PT|995.90|ICD9CM|Systemic inflammatory response syndrome, unspecified|Systemic inflammatory response syndrome, unspecified +C0243026|T047|PT|995.91|ICD9CM|Sepsis|Sepsis +C0243026|T047|AB|995.91|ICD9CM|Sepsis|Sepsis +C1719672|T047|PT|995.92|ICD9CM|Severe sepsis|Severe sepsis +C1719672|T047|AB|995.92|ICD9CM|Severe sepsis|Severe sepsis +C1719676|T047|AB|995.93|ICD9CM|SIRS-noninf w/o ac or ds|SIRS-noninf w/o ac or ds +C1719676|T047|PT|995.93|ICD9CM|Systemic inflammatory response syndrome due to noninfectious process without acute organ dysfunction|Systemic inflammatory response syndrome due to noninfectious process without acute organ dysfunction +C1719677|T037|AB|995.94|ICD9CM|SIRS-noninf w ac org dys|SIRS-noninf w ac org dys +C1719677|T037|PT|995.94|ICD9CM|Systemic inflammatory response syndrome due to noninfectious process with acute organ dysfunction|Systemic inflammatory response syndrome due to noninfectious process with acute organ dysfunction +C0496137|T046|HT|996|ICD9CM|Complications peculiar to certain specified procedures|Complications peculiar to certain specified procedures +C0869272|T046|HT|996-999.99|ICD9CM|COMPLICATIONS OF SURGICAL AND MEDICAL CARE, NOT ELSEWHERE CLASSIFIED|COMPLICATIONS OF SURGICAL AND MEDICAL CARE, NOT ELSEWHERE CLASSIFIED +C0274323|T046|HT|996.0|ICD9CM|Mechanical complication of cardiac device, implant, and graft|Mechanical complication of cardiac device, implant, and graft +C0274323|T046|AB|996.00|ICD9CM|Malfunc card dev/grf NOS|Malfunc card dev/grf NOS +C0274323|T046|PT|996.00|ICD9CM|Mechanical complication of unspecified cardiac device, implant, and graft|Mechanical complication of unspecified cardiac device, implant, and graft +C0161759|T037|AB|996.01|ICD9CM|Malfunc cardiac pacemake|Malfunc cardiac pacemake +C0161759|T037|PT|996.01|ICD9CM|Mechanical complication due to cardiac pacemaker (electrode)|Mechanical complication due to cardiac pacemaker (electrode) +C0161760|T046|AB|996.02|ICD9CM|Malfunc prosth hrt valve|Malfunc prosth hrt valve +C0161760|T046|PT|996.02|ICD9CM|Mechanical complication due to heart valve prosthesis|Mechanical complication due to heart valve prosthesis +C0161761|T037|AB|996.03|ICD9CM|Malfunc coron bypass grf|Malfunc coron bypass grf +C0161761|T037|PT|996.03|ICD9CM|Mechanical complication due to coronary bypass graft|Mechanical complication due to coronary bypass graft +C0375718|T046|AB|996.04|ICD9CM|Mch cmp autm mplnt dfbrl|Mch cmp autm mplnt dfbrl +C0375718|T046|PT|996.04|ICD9CM|Mechanical complication of automatic implantable cardiac defibrillator|Mechanical complication of automatic implantable cardiac defibrillator +C0161762|T046|AB|996.09|ICD9CM|Malfunc card dev/grf NEC|Malfunc card dev/grf NEC +C0161762|T046|PT|996.09|ICD9CM|Other mechanical complication of cardiac device, implant, and graft|Other mechanical complication of cardiac device, implant, and graft +C0161763|T046|AB|996.1|ICD9CM|Malfunc vasc device/graf|Malfunc vasc device/graf +C0161763|T046|PT|996.1|ICD9CM|Mechanical complication of other vascular device, implant, and graft|Mechanical complication of other vascular device, implant, and graft +C0274338|T037|AB|996.2|ICD9CM|Malfun neuro device/graf|Malfun neuro device/graf +C0274338|T037|PT|996.2|ICD9CM|Mechanical complication of nervous system device, implant, and graft|Mechanical complication of nervous system device, implant, and graft +C0274344|T046|HT|996.3|ICD9CM|Mechanical complication of genitourinary device, implant, and graft|Mechanical complication of genitourinary device, implant, and graft +C0274344|T046|AB|996.30|ICD9CM|Malfunc gu dev/graft NOS|Malfunc gu dev/graft NOS +C0274344|T046|PT|996.30|ICD9CM|Mechanical complication of unspecified genitourinary device, implant, and graft|Mechanical complication of unspecified genitourinary device, implant, and graft +C0161767|T046|AB|996.31|ICD9CM|Malfunc urethral cath|Malfunc urethral cath +C0161767|T046|PT|996.31|ICD9CM|Mechanical complication due to urethral (indwelling) catheter|Mechanical complication due to urethral (indwelling) catheter +C0161768|T046|AB|996.32|ICD9CM|Malfunction iud|Malfunction iud +C0161768|T046|PT|996.32|ICD9CM|Mechanical complication due to intrauterine contraceptive device|Mechanical complication due to intrauterine contraceptive device +C0161769|T037|AB|996.39|ICD9CM|Malfunc gu dev/graft NEC|Malfunc gu dev/graft NEC +C0161769|T037|PT|996.39|ICD9CM|Other mechanical complication of genitourinary device, implant, and graft|Other mechanical complication of genitourinary device, implant, and graft +C0161770|T046|HT|996.4|ICD9CM|Mechanical complication of internal orthopedic device, implant, and graft|Mechanical complication of internal orthopedic device, implant, and graft +C1561654|T046|AB|996.40|ICD9CM|Cmp int orth dev/gft NOS|Cmp int orth dev/gft NOS +C1561654|T046|PT|996.40|ICD9CM|Unspecified mechanical complication of internal orthopedic device, implant, and graft|Unspecified mechanical complication of internal orthopedic device, implant, and graft +C1561655|T046|AB|996.41|ICD9CM|Mech loosening pros jt|Mech loosening pros jt +C1561655|T046|PT|996.41|ICD9CM|Mechanical loosening of prosthetic joint|Mechanical loosening of prosthetic joint +C0410807|T033|AB|996.42|ICD9CM|Dislocate prosthetic jt|Dislocate prosthetic jt +C0410807|T033|PT|996.42|ICD9CM|Dislocation of prosthetic joint|Dislocation of prosthetic joint +C2712383|T037|AB|996.43|ICD9CM|Broke prosthtc jt implnt|Broke prosthtc jt implnt +C2712383|T037|PT|996.43|ICD9CM|Broken prosthetic joint implant|Broken prosthetic joint implant +C1561661|T046|PT|996.44|ICD9CM|Peri-prosthetic fracture around prosthetic joint|Peri-prosthetic fracture around prosthetic joint +C1561661|T046|AB|996.44|ICD9CM|Periprosthetc fx-pros jt|Periprosthetc fx-pros jt +C0948364|T046|PT|996.45|ICD9CM|Peri-prosthetic osteolysis|Peri-prosthetic osteolysis +C0948364|T046|AB|996.45|ICD9CM|Periprosthetc osteolysis|Periprosthetc osteolysis +C2711887|T046|PT|996.46|ICD9CM|Articular bearing surface wear of prosthetic joint|Articular bearing surface wear of prosthetic joint +C2711887|T046|AB|996.46|ICD9CM|Articular wear prosth jt|Articular wear prosth jt +C1561664|T046|AB|996.47|ICD9CM|Mech com pros jt implant|Mech com pros jt implant +C1561664|T046|PT|996.47|ICD9CM|Other mechanical complication of prosthetic joint implant|Other mechanical complication of prosthetic joint implant +C1561666|T046|AB|996.49|ICD9CM|Mech com orth dev NEC|Mech com orth dev NEC +C1561666|T046|PT|996.49|ICD9CM|Other mechanical complication of other internal orthopedic device, implant, and graft|Other mechanical complication of other internal orthopedic device, implant, and graft +C0161771|T037|HT|996.5|ICD9CM|Mechanical complication of other specified prosthetic device, implant, and graft|Mechanical complication of other specified prosthetic device, implant, and graft +C0274354|T046|AB|996.51|ICD9CM|Corneal grft malfunction|Corneal grft malfunction +C0274354|T046|PT|996.51|ICD9CM|Mechanical complication due to corneal graft|Mechanical complication due to corneal graft +C0302411|T046|PT|996.52|ICD9CM|Mechanical complication due to graft of other tissue, not elsewhere classified|Mechanical complication due to graft of other tissue, not elsewhere classified +C0302411|T046|AB|996.52|ICD9CM|Oth tissue graft malfunc|Oth tissue graft malfunc +C0274356|T046|AB|996.53|ICD9CM|Lens prosthesis malfunc|Lens prosthesis malfunc +C0274356|T046|PT|996.53|ICD9CM|Mechanical complication due to ocular lens prosthesis|Mechanical complication due to ocular lens prosthesis +C0274357|T046|AB|996.54|ICD9CM|Breast prosth malfunc|Breast prosth malfunc +C0274357|T046|PT|996.54|ICD9CM|Mechanical complication due to breast prosthesis|Mechanical complication due to breast prosthesis +C0695254|T046|AB|996.55|ICD9CM|Comp-artificial skin grf|Comp-artificial skin grf +C0695254|T046|PT|996.55|ICD9CM|Mechanical complication due to artificial skin graft and decellularized allodermis|Mechanical complication due to artificial skin graft and decellularized allodermis +C0695255|T046|AB|996.56|ICD9CM|Comp-periton dialys cath|Comp-periton dialys cath +C0695255|T046|PT|996.56|ICD9CM|Mechanical complication due to peritoneal dialysis catheter|Mechanical complication due to peritoneal dialysis catheter +C2228890|T037|AB|996.57|ICD9CM|Complcation-insulin pump|Complcation-insulin pump +C2228890|T037|PT|996.57|ICD9CM|Mechanical complication due to insulin pump|Mechanical complication due to insulin pump +C0302412|T046|AB|996.59|ICD9CM|Malfunc oth device/graft|Malfunc oth device/graft +C0302412|T046|PT|996.59|ICD9CM|Mechanical complication due to other implant and internal device, not elsewhere classified|Mechanical complication due to other implant and internal device, not elsewhere classified +C0161777|T047|HT|996.6|ICD9CM|Infection and inflammatory reaction due to internal prosthetic device, implant, and graft|Infection and inflammatory reaction due to internal prosthetic device, implant, and graft +C0161778|T047|PT|996.60|ICD9CM|Infection and inflammatory reaction due to unspecified device, implant, and graft|Infection and inflammatory reaction due to unspecified device, implant, and graft +C0161778|T047|AB|996.60|ICD9CM|Reaction-unsp devic/grft|Reaction-unsp devic/grft +C0161779|T047|PT|996.61|ICD9CM|Infection and inflammatory reaction due to cardiac device, implant, and graft|Infection and inflammatory reaction due to cardiac device, implant, and graft +C0161779|T047|AB|996.61|ICD9CM|React-cardiac dev/graft|React-cardiac dev/graft +C0161780|T047|PT|996.62|ICD9CM|Infection and inflammatory reaction due to other vascular device, implant, and graft|Infection and inflammatory reaction due to other vascular device, implant, and graft +C0161780|T047|AB|996.62|ICD9CM|React-oth vasc dev/graft|React-oth vasc dev/graft +C0161781|T046|PT|996.63|ICD9CM|Infection and inflammatory reaction due to nervous system device, implant, and graft|Infection and inflammatory reaction due to nervous system device, implant, and graft +C0161781|T046|AB|996.63|ICD9CM|React-nerv sys dev/graft|React-nerv sys dev/graft +C0161782|T047|PT|996.64|ICD9CM|Infection and inflammatory reaction due to indwelling urinary catheter|Infection and inflammatory reaction due to indwelling urinary catheter +C0161782|T047|AB|996.64|ICD9CM|React-indwell urin cath|React-indwell urin cath +C0161783|T047|PT|996.65|ICD9CM|Infection and inflammatory reaction due to other genitourinary device, implant, and graft|Infection and inflammatory reaction due to other genitourinary device, implant, and graft +C0161783|T047|AB|996.65|ICD9CM|React-oth genitourin dev|React-oth genitourin dev +C0161784|T047|PT|996.66|ICD9CM|Infection and inflammatory reaction due to internal joint prosthesis|Infection and inflammatory reaction due to internal joint prosthesis +C0161784|T047|AB|996.66|ICD9CM|React-inter joint prost|React-inter joint prost +C0161785|T047|PT|996.67|ICD9CM|Infection and inflammatory reaction due to other internal orthopedic device, implant, and graft|Infection and inflammatory reaction due to other internal orthopedic device, implant, and graft +C0161785|T047|AB|996.67|ICD9CM|React-oth int ortho dev|React-oth int ortho dev +C0695256|T046|PT|996.68|ICD9CM|Infection and inflammatory reaction due to peritoneal dialysis catheter|Infection and inflammatory reaction due to peritoneal dialysis catheter +C0695256|T046|AB|996.68|ICD9CM|React-periton dialy cath|React-periton dialy cath +C0161786|T046|PT|996.69|ICD9CM|Infection and inflammatory reaction due to other internal prosthetic device, implant, and graft|Infection and inflammatory reaction due to other internal prosthetic device, implant, and graft +C0161786|T046|AB|996.69|ICD9CM|React-int pros devic NEC|React-int pros devic NEC +C0161787|T046|HT|996.7|ICD9CM|Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft|Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft +C0161788|T047|AB|996.70|ICD9CM|Comp-unsp device/graft|Comp-unsp device/graft +C0161788|T047|PT|996.70|ICD9CM|Other complications due to unspecified device, implant, and graft|Other complications due to unspecified device, implant, and graft +C0161789|T047|AB|996.71|ICD9CM|Comp-heart valve prosth|Comp-heart valve prosth +C0161789|T047|PT|996.71|ICD9CM|Other complications due to heart valve prosthesis|Other complications due to heart valve prosthesis +C0161790|T047|AB|996.72|ICD9CM|Comp-oth cardiac device|Comp-oth cardiac device +C0161790|T047|PT|996.72|ICD9CM|Other complications due to other cardiac device, implant, and graft|Other complications due to other cardiac device, implant, and graft +C0161791|T047|AB|996.73|ICD9CM|Comp-ren dialys dev/grft|Comp-ren dialys dev/grft +C0161791|T047|PT|996.73|ICD9CM|Other complications due to renal dialysis device, implant, and graft|Other complications due to renal dialysis device, implant, and graft +C0161792|T047|AB|996.74|ICD9CM|Comp-oth vasc dev/graft|Comp-oth vasc dev/graft +C0161792|T047|PT|996.74|ICD9CM|Other complications due to other vascular device, implant, and graft|Other complications due to other vascular device, implant, and graft +C0840880|T046|AB|996.75|ICD9CM|Comp-nerv sys dev/graft|Comp-nerv sys dev/graft +C0840880|T046|PT|996.75|ICD9CM|Other complications due to nervous system device, implant, and graft|Other complications due to nervous system device, implant, and graft +C0161794|T047|AB|996.76|ICD9CM|Comp-genitourin dev/grft|Comp-genitourin dev/grft +C0161794|T047|PT|996.76|ICD9CM|Other complications due to genitourinary device, implant, and graft|Other complications due to genitourinary device, implant, and graft +C0161795|T047|AB|996.77|ICD9CM|Comp-internal joint pros|Comp-internal joint pros +C0161795|T047|PT|996.77|ICD9CM|Other complications due to internal joint prosthesis|Other complications due to internal joint prosthesis +C0161796|T047|AB|996.78|ICD9CM|Comp-oth int ortho devic|Comp-oth int ortho devic +C0161796|T047|PT|996.78|ICD9CM|Other complications due to other internal orthopedic device, implant, and graft|Other complications due to other internal orthopedic device, implant, and graft +C0161797|T047|AB|996.79|ICD9CM|Comp-int prost devic NEC|Comp-int prost devic NEC +C0161797|T047|PT|996.79|ICD9CM|Other complications due to other internal prosthetic device, implant, and graft|Other complications due to other internal prosthetic device, implant, and graft +C0009568|T046|HT|996.8|ICD9CM|Complications of transplanted organ|Complications of transplanted organ +C0375720|T046|AB|996.80|ICD9CM|Comp organ transplnt NOS|Comp organ transplnt NOS +C0375720|T046|PT|996.80|ICD9CM|Complications of transplanted organ, unspecified|Complications of transplanted organ, unspecified +C1261281|T046|AB|996.81|ICD9CM|Compl kidney transplant|Compl kidney transplant +C1261281|T046|PT|996.81|ICD9CM|Complications of transplanted kidney|Complications of transplanted kidney +C1261282|T046|AB|996.82|ICD9CM|Compl liver transplant|Compl liver transplant +C1261282|T046|PT|996.82|ICD9CM|Complications of transplanted liver|Complications of transplanted liver +C0340529|T046|AB|996.83|ICD9CM|Compl heart transplant|Compl heart transplant +C0340529|T046|PT|996.83|ICD9CM|Complications of transplanted heart|Complications of transplanted heart +C0161801|T046|AB|996.84|ICD9CM|Compl lung transplant|Compl lung transplant +C0161801|T046|PT|996.84|ICD9CM|Complications of transplanted lung|Complications of transplanted lung +C0161802|T046|AB|996.85|ICD9CM|Compl marrow transplant|Compl marrow transplant +C0161802|T046|PT|996.85|ICD9CM|Complications of transplanted bone marrow|Complications of transplanted bone marrow +C0161803|T046|AB|996.86|ICD9CM|Compl pancreas transplnt|Compl pancreas transplnt +C0161803|T046|PT|996.86|ICD9CM|Complications of transplanted pancreas|Complications of transplanted pancreas +C0274370|T046|AB|996.87|ICD9CM|Comp intestine transplnt|Comp intestine transplnt +C0274370|T046|PT|996.87|ICD9CM|Complications of transplanted intestine|Complications of transplanted intestine +C3251587|T046|AB|996.88|ICD9CM|Comp tp organ-stem cell|Comp tp organ-stem cell +C3251587|T046|PT|996.88|ICD9CM|Complications of transplanted organ, stem cell|Complications of transplanted organ, stem cell +C0161804|T046|AB|996.89|ICD9CM|Comp oth organ transplnt|Comp oth organ transplnt +C0161804|T046|PT|996.89|ICD9CM|Complications of other specified transplanted organ|Complications of other specified transplanted organ +C0161805|T047|HT|996.9|ICD9CM|Complications of reattached extremity or body part|Complications of reattached extremity or body part +C1439344|T037|AB|996.90|ICD9CM|Comp reattach extrem NOS|Comp reattach extrem NOS +C1439344|T037|PT|996.90|ICD9CM|Complications of unspecified reattached extremity|Complications of unspecified reattached extremity +C0161807|T047|AB|996.91|ICD9CM|Compl reattached forearm|Compl reattached forearm +C0161807|T047|PT|996.91|ICD9CM|Complications of reattached forearm|Complications of reattached forearm +C0161808|T046|AB|996.92|ICD9CM|Compl reattached hand|Compl reattached hand +C0161808|T046|PT|996.92|ICD9CM|Complications of reattached hand|Complications of reattached hand +C0274372|T046|AB|996.93|ICD9CM|Compl reattached finger|Compl reattached finger +C0274372|T046|PT|996.93|ICD9CM|Complications of reattached finger(s)|Complications of reattached finger(s) +C0489974|T037|AB|996.94|ICD9CM|Compl reattached arm NEC|Compl reattached arm NEC +C0489974|T037|PT|996.94|ICD9CM|Complications of reattached upper extremity, other and unspecified|Complications of reattached upper extremity, other and unspecified +C0274373|T046|AB|996.95|ICD9CM|Compl reattached foot|Compl reattached foot +C0274373|T046|PT|996.95|ICD9CM|Complication of reattached foot and toe(s)|Complication of reattached foot and toe(s) +C2240398|T046|AB|996.96|ICD9CM|Compl reattached leg NEC|Compl reattached leg NEC +C2240398|T046|PT|996.96|ICD9CM|Complication of reattached lower extremity, other and unspecified|Complication of reattached lower extremity, other and unspecified +C0161813|T037|AB|996.99|ICD9CM|Compl reattach part NEC|Compl reattach part NEC +C0161813|T037|PT|996.99|ICD9CM|Complication of other specified reattached body part|Complication of other specified reattached body part +C0868769|T037|HT|997|ICD9CM|Complications affecting specified body systems, not elsewhere classified|Complications affecting specified body systems, not elsewhere classified +C0302414|T037|HT|997.0|ICD9CM|Central nervous system complications, not elsewhere classified|Central nervous system complications, not elsewhere classified +C0235029|T046|AB|997.00|ICD9CM|Nervous syst complc NOS|Nervous syst complc NOS +C0235029|T046|PT|997.00|ICD9CM|Nervous system complication, unspecified|Nervous system complication, unspecified +C0161815|T046|PT|997.01|ICD9CM|Central nervous system complication|Central nervous system complication +C0161815|T046|AB|997.01|ICD9CM|Surg complication - cns|Surg complication - cns +C0375722|T047|AB|997.02|ICD9CM|Iatrogen CV infarc/hmrhg|Iatrogen CV infarc/hmrhg +C0375722|T047|PT|997.02|ICD9CM|Iatrogenic cerebrovascular infarction or hemorrhage|Iatrogenic cerebrovascular infarction or hemorrhage +C0375723|T046|PT|997.09|ICD9CM|Other nervous system complications|Other nervous system complications +C0375723|T046|AB|997.09|ICD9CM|Surg comp nerv systm NEC|Surg comp nerv systm NEC +C0549147|T046|PT|997.1|ICD9CM|Cardiac complications, not elsewhere classified|Cardiac complications, not elsewhere classified +C0549147|T046|AB|997.1|ICD9CM|Surg compl-heart|Surg compl-heart +C0877738|T046|PT|997.2|ICD9CM|Peripheral vascular complications, not elsewhere classified|Peripheral vascular complications, not elsewhere classified +C0877738|T046|AB|997.2|ICD9CM|Surg comp-peri vasc syst|Surg comp-peri vasc syst +C0729250|T037|HT|997.3|ICD9CM|Respiratory complications, not elsewhere classified|Respiratory complications, not elsewhere classified +C1701940|T047|PT|997.31|ICD9CM|Ventilator associated pneumonia|Ventilator associated pneumonia +C1701940|T047|AB|997.31|ICD9CM|Ventltr assoc pneumonia|Ventltr assoc pneumonia +C3161132|T047|AB|997.32|ICD9CM|Postproc aspiration pneu|Postproc aspiration pneu +C3161132|T047|PT|997.32|ICD9CM|Postprocedural aspiration pneumonia|Postprocedural aspiration pneumonia +C2349769|T047|PT|997.39|ICD9CM|Other respiratory complications|Other respiratory complications +C2349769|T047|AB|997.39|ICD9CM|Respiratory comp NEC|Respiratory comp NEC +C0161819|T046|HT|997.4|ICD9CM|Digestive system complications|Digestive system complications +C3161133|T046|AB|997.41|ICD9CM|Ret cholelh fol cholecys|Ret cholelh fol cholecys +C3161133|T046|PT|997.41|ICD9CM|Retained cholelithiasis following cholecystectomy|Retained cholelithiasis following cholecystectomy +C3161134|T046|AB|997.49|ICD9CM|Oth digestv system comp|Oth digestv system comp +C3161134|T046|PT|997.49|ICD9CM|Other digestive system complications|Other digestive system complications +C0595943|T046|AB|997.5|ICD9CM|Surg compl-urinary tract|Surg compl-urinary tract +C0595943|T046|PT|997.5|ICD9CM|Urinary complications, not elsewhere classified|Urinary complications, not elsewhere classified +C0302473|T046|HT|997.6|ICD9CM|Amputation stump complication|Amputation stump complication +C0161821|T037|AB|997.60|ICD9CM|Amputat stump compl NOS|Amputat stump compl NOS +C0161821|T037|PT|997.60|ICD9CM|Unspecified complication of amputation stump|Unspecified complication of amputation stump +C0392617|T047|AB|997.61|ICD9CM|Neuroma amputation stump|Neuroma amputation stump +C0392617|T047|PT|997.61|ICD9CM|Neuroma of amputation stump|Neuroma of amputation stump +C0161824|T046|PT|997.62|ICD9CM|Infection (chronic) of amputation stump|Infection (chronic) of amputation stump +C0161824|T046|AB|997.62|ICD9CM|Infection amputat stump|Infection amputat stump +C2891341|T046|AB|997.69|ICD9CM|Amputat stump compl NEC|Amputat stump compl NEC +C2891341|T046|PT|997.69|ICD9CM|Other amputation stump complication|Other amputation stump complication +C0949152|T047|HT|997.7|ICD9CM|Vascular complications of other vessels|Vascular complications of other vessels +C0949150|T047|AB|997.71|ICD9CM|Vasc comp mesenteric art|Vasc comp mesenteric art +C0949150|T047|PT|997.71|ICD9CM|Vascular complications of mesenteric artery|Vascular complications of mesenteric artery +C0949151|T047|AB|997.72|ICD9CM|Vasc comp renal artery|Vasc comp renal artery +C0949151|T047|PT|997.72|ICD9CM|Vascular complications of renal artery|Vascular complications of renal artery +C0949152|T047|AB|997.79|ICD9CM|Vascular comp vessel NEC|Vascular comp vessel NEC +C0949152|T047|PT|997.79|ICD9CM|Vascular complications of other vessels|Vascular complications of other vessels +C0302415|T037|HT|997.9|ICD9CM|Complications affecting other specified body systems, not elsewhere classified|Complications affecting other specified body systems, not elsewhere classified +C0020538|T047|PT|997.91|ICD9CM|Complications affecting other specified body systems, not elsewhere classified, hypertension|Complications affecting other specified body systems, not elsewhere classified, hypertension +C0020538|T047|AB|997.91|ICD9CM|Surg comp - hypertension|Surg comp - hypertension +C0375724|T037|PT|997.99|ICD9CM|Complications affecting other specified body systems, not elsewhere classified|Complications affecting other specified body systems, not elsewhere classified +C0375724|T037|AB|997.99|ICD9CM|Surg compl-body syst NEC|Surg compl-body syst NEC +C0869286|T037|HT|998|ICD9CM|Other complications of procedures, NEC|Other complications of procedures, NEC +C0032792|T046|HT|998.0|ICD9CM|Postoperative shock|Postoperative shock +C0032792|T046|AB|998.00|ICD9CM|Postoperative shock, NOS|Postoperative shock, NOS +C0032792|T046|PT|998.00|ICD9CM|Postoperative shock, unspecified|Postoperative shock, unspecified +C3161135|T047|AB|998.01|ICD9CM|Postop shock,cardiogenic|Postop shock,cardiogenic +C3161135|T047|PT|998.01|ICD9CM|Postoperative shock, cardiogenic|Postoperative shock, cardiogenic +C0342957|T047|AB|998.02|ICD9CM|Postop shock, septic|Postop shock, septic +C0342957|T047|PT|998.02|ICD9CM|Postoperative shock, septic|Postoperative shock, septic +C3161136|T046|AB|998.09|ICD9CM|Postop shock, other|Postop shock, other +C3161136|T046|PT|998.09|ICD9CM|Postoperative shock, other|Postoperative shock, other +C0274397|T047|HT|998.1|ICD9CM|Hemorrhage or hematoma complicating a procedure|Hemorrhage or hematoma complicating a procedure +C0375725|T046|AB|998.11|ICD9CM|Hemorrhage complic proc|Hemorrhage complic proc +C0375725|T046|PT|998.11|ICD9CM|Hemorrhage complicating a procedure|Hemorrhage complicating a procedure +C0375726|T046|AB|998.12|ICD9CM|Hematoma complic proc|Hematoma complic proc +C0375726|T046|PT|998.12|ICD9CM|Hematoma complicating a procedure|Hematoma complicating a procedure +C0375727|T046|PT|998.13|ICD9CM|Seroma complicating a procedure|Seroma complicating a procedure +C0375727|T046|AB|998.13|ICD9CM|Seroma complicting proc|Seroma complicting proc +C0161829|T037|AB|998.2|ICD9CM|Accidental op laceration|Accidental op laceration +C0161829|T037|PT|998.2|ICD9CM|Accidental puncture or laceration during a procedure, not elsewhere classified|Accidental puncture or laceration during a procedure, not elsewhere classified +C0259768|T046|HT|998.3|ICD9CM|Disruption of wound|Disruption of wound +C0259768|T046|PT|998.30|ICD9CM|Disruption of wound, unspecified|Disruption of wound, unspecified +C0259768|T046|AB|998.30|ICD9CM|Wound disruption NOS|Wound disruption NOS +C1135269|T047|AB|998.31|ICD9CM|Disrup internal op wound|Disrup internal op wound +C1135269|T047|PT|998.31|ICD9CM|Disruption of internal operation (surgical) wound|Disruption of internal operation (surgical) wound +C1135270|T047|AB|998.32|ICD9CM|Disrup-external op wound|Disrup-external op wound +C1135270|T047|PT|998.32|ICD9CM|Disruption of external operation (surgical) wound|Disruption of external operation (surgical) wound +C2349787|T046|AB|998.33|ICD9CM|Disrpt trauma wound repr|Disrpt trauma wound repr +C2349787|T046|PT|998.33|ICD9CM|Disruption of traumatic injury wound repair|Disruption of traumatic injury wound repair +C0161831|T037|AB|998.4|ICD9CM|FB left during procedure|FB left during procedure +C0161831|T037|PT|998.4|ICD9CM|Foreign body accidentally left during a procedure|Foreign body accidentally left during a procedure +C0392618|T046|HT|998.5|ICD9CM|Postoperative infection|Postoperative infection +C0375728|T047|AB|998.51|ICD9CM|Infected postop seroma|Infected postop seroma +C0375728|T047|PT|998.51|ICD9CM|Infected postoperative seroma|Infected postoperative seroma +C0375729|T047|AB|998.59|ICD9CM|Other postop infection|Other postop infection +C0375729|T047|PT|998.59|ICD9CM|Other postoperative infection|Other postoperative infection +C0161832|T020|AB|998.6|ICD9CM|Persist postop fistula|Persist postop fistula +C0161832|T020|PT|998.6|ICD9CM|Persistent postoperative fistula|Persistent postoperative fistula +C0161833|T047|PT|998.7|ICD9CM|Acute reaction to foreign substance accidentally left during a procedure|Acute reaction to foreign substance accidentally left during a procedure +C0161833|T047|AB|998.7|ICD9CM|Postop forgn subst react|Postop forgn subst react +C0302422|T037|HT|998.8|ICD9CM|Other specified complications of procedures, not elsewhere classified|Other specified complications of procedures, not elsewhere classified +C0274411|T046|PT|998.81|ICD9CM|Emphysema (subcutaneous) (surgical) resulting from procedure|Emphysema (subcutaneous) (surgical) resulting from procedure +C0274411|T046|AB|998.81|ICD9CM|Emphysema rsult frm proc|Emphysema rsult frm proc +C0375731|T020|PT|998.82|ICD9CM|Cataract fragments in eye following cataract surgery|Cataract fragments in eye following cataract surgery +C0375731|T020|AB|998.82|ICD9CM|Ctrct frgmt frm ctr surg|Ctrct frgmt frm ctr surg +C0375732|T046|AB|998.83|ICD9CM|Non-healing surgcl wound|Non-healing surgcl wound +C0375732|T046|PT|998.83|ICD9CM|Non-healing surgical wound|Non-healing surgical wound +C0161834|T046|AB|998.89|ICD9CM|Oth spcf cmplc procd NEC|Oth spcf cmplc procd NEC +C0161834|T046|PT|998.89|ICD9CM|Other specified complications of procedures not elsewhere classified|Other specified complications of procedures not elsewhere classified +C0869442|T046|AB|998.9|ICD9CM|Surgical complicat NOS|Surgical complicat NOS +C0869442|T046|PT|998.9|ICD9CM|Unspecified complication of procedure, not elsewhere classified|Unspecified complication of procedure, not elsewhere classified +C0546949|T037|HT|999|ICD9CM|Complications of medical care, not elsewhere classified|Complications of medical care, not elsewhere classified +C0302424|T047|AB|999.0|ICD9CM|Generalized vaccinia|Generalized vaccinia +C0302424|T047|PT|999.0|ICD9CM|Generalized vaccinia as a complication of medical care, not elsewhere classified|Generalized vaccinia as a complication of medical care, not elsewhere classified +C0302425|T046|AB|999.1|ICD9CM|Air embol comp med care|Air embol comp med care +C0302425|T046|PT|999.1|ICD9CM|Air embolism as a complication of medical care, not elsewhere classified|Air embolism as a complication of medical care, not elsewhere classified +C0302426|T046|PT|999.2|ICD9CM|Other vascular complications of medical care, not elsewhere classified|Other vascular complications of medical care, not elsewhere classified +C0302426|T046|AB|999.2|ICD9CM|Vasc comp med care NEC|Vasc comp med care NEC +C0302427|T037|HT|999.3|ICD9CM|Other infection due to medical care, not elsewhere classified|Other infection due to medical care, not elsewhere classified +C1955545|T046|AB|999.31|ICD9CM|Oth/uns inf-cen ven cath|Oth/uns inf-cen ven cath +C1955545|T046|PT|999.31|ICD9CM|Other and unspecified infection due to central venous catheter|Other and unspecified infection due to central venous catheter +C3161137|T046|AB|999.32|ICD9CM|Blood inf dt cen ven cth|Blood inf dt cen ven cth +C3161137|T046|PT|999.32|ICD9CM|Bloodstream infection due to central venous catheter|Bloodstream infection due to central venous catheter +C3161138|T046|AB|999.33|ICD9CM|Lcl inf dt cen ven cth|Lcl inf dt cen ven cth +C3161138|T046|PT|999.33|ICD9CM|Local infection due to central venous catheter|Local infection due to central venous catheter +C3161139|T046|AB|999.34|ICD9CM|Ac inf fol trans,inf bld|Ac inf fol trans,inf bld +C3161139|T046|PT|999.34|ICD9CM|Acute infection following transfusion, infusion, or injection of blood and blood products|Acute infection following transfusion, infusion, or injection of blood and blood products +C1955550|T047|AB|999.39|ICD9CM|Infect fol infus/inj/vac|Infect fol infus/inj/vac +C1955550|T047|PT|999.39|ICD9CM|Infection following other infusion, injection, transfusion, or vaccination|Infection following other infusion, injection, transfusion, or vaccination +C3161458|T046|HT|999.4|ICD9CM|Anaphylactic reaction due to serum, not elsewhere classified|Anaphylactic reaction due to serum, not elsewhere classified +C3161140|T046|AB|999.41|ICD9CM|Anaphyl d/t adm bld/prod|Anaphyl d/t adm bld/prod +C3161140|T046|PT|999.41|ICD9CM|Anaphylactic reaction due to administration of blood and blood products|Anaphylactic reaction due to administration of blood and blood products +C3161141|T046|AB|999.42|ICD9CM|Anaphyl react d/t vaccin|Anaphyl react d/t vaccin +C3161141|T046|PT|999.42|ICD9CM|Anaphylactic reaction due to vaccination|Anaphylactic reaction due to vaccination +C3161142|T046|AB|999.49|ICD9CM|Anaph react d/t ot serum|Anaph react d/t ot serum +C3161142|T046|PT|999.49|ICD9CM|Anaphylactic reaction due to other serum|Anaphylactic reaction due to other serum +C0302428|T046|HT|999.5|ICD9CM|Other serum reaction, not elsewhere classified|Other serum reaction, not elsewhere classified +C3161143|T046|AB|999.51|ICD9CM|Ot serum react d/t blood|Ot serum react d/t blood +C3161143|T046|PT|999.51|ICD9CM|Other serum reaction due to administration of blood and blood products|Other serum reaction due to administration of blood and blood products +C3161144|T046|AB|999.52|ICD9CM|Ot serum react d/t vacc|Ot serum react d/t vacc +C3161144|T046|PT|999.52|ICD9CM|Other serum reaction due to vaccination|Other serum reaction due to vaccination +C0478483|T046|AB|999.59|ICD9CM|Other serum reaction|Other serum reaction +C0478483|T046|PT|999.59|ICD9CM|Other serum reaction|Other serum reaction +C2886803|T046|HT|999.6|ICD9CM|ABO incompatibility reaction due to transfusion of blood or blood products|ABO incompatibility reaction due to transfusion of blood or blood products +C2921199|T046|AB|999.60|ICD9CM|Abo incompat react NOS|Abo incompat react NOS +C2921199|T046|PT|999.60|ICD9CM|ABO incompatibility reaction, unspecified|ABO incompatibility reaction, unspecified +C2921202|T046|AB|999.61|ICD9CM|Abo incomp/HTR NEC|Abo incomp/HTR NEC +C2921202|T046|PT|999.61|ICD9CM|ABO incompatibility with hemolytic transfusion reaction not specified as acute or delayed|ABO incompatibility with hemolytic transfusion reaction not specified as acute or delayed +C2921204|T046|AB|999.62|ICD9CM|Abo incompat/acute HTR|Abo incompat/acute HTR +C2921204|T046|PT|999.62|ICD9CM|ABO incompatibility with acute hemolytic transfusion reaction|ABO incompatibility with acute hemolytic transfusion reaction +C2921207|T046|AB|999.63|ICD9CM|Abo incompat/delay HTR|Abo incompat/delay HTR +C2921207|T046|PT|999.63|ICD9CM|ABO incompatibility with delayed hemolytic transfusion reaction|ABO incompatibility with delayed hemolytic transfusion reaction +C2921211|T046|AB|999.69|ICD9CM|Abo incompat reactn NEC|Abo incompat reactn NEC +C2921211|T046|PT|999.69|ICD9CM|Other ABO incompatibility reaction|Other ABO incompatibility reaction +C2921214|T046|HT|999.7|ICD9CM|Rh and other non-ABO incompatibility reaction due to transfusion of blood or blood products|Rh and other non-ABO incompatibility reaction due to transfusion of blood or blood products +C2921216|T046|AB|999.70|ICD9CM|Rh incompat reaction NOS|Rh incompat reaction NOS +C2921216|T046|PT|999.70|ICD9CM|Rh incompatibility reaction, unspecified|Rh incompatibility reaction, unspecified +C2921222|T046|AB|999.71|ICD9CM|Rh incomp/HTR NEC|Rh incomp/HTR NEC +C2921222|T046|PT|999.71|ICD9CM|Rh incompatibility with hemolytic transfusion reaction not specified as acute or delayed|Rh incompatibility with hemolytic transfusion reaction not specified as acute or delayed +C2921225|T046|AB|999.72|ICD9CM|Rh incompat/acute HTR|Rh incompat/acute HTR +C2921225|T046|PT|999.72|ICD9CM|Rh incompatibility with acute hemolytic transfusion reaction|Rh incompatibility with acute hemolytic transfusion reaction +C2921229|T046|AB|999.73|ICD9CM|Rh incompat/delay HTR|Rh incompat/delay HTR +C2921229|T046|PT|999.73|ICD9CM|Rh incompatibility with delayed hemolytic transfusion reaction|Rh incompatibility with delayed hemolytic transfusion reaction +C2921232|T047|PT|999.74|ICD9CM|Other Rh incompatibility reaction|Other Rh incompatibility reaction +C2921232|T047|AB|999.74|ICD9CM|Rh incompat reaction NEC|Rh incompat reaction NEC +C2921235|T047|AB|999.75|ICD9CM|Non-abo incomp react NOS|Non-abo incomp react NOS +C2921235|T047|PT|999.75|ICD9CM|Non-ABO incompatibility reaction, unspecified|Non-ABO incompatibility reaction, unspecified +C2921242|T047|AB|999.76|ICD9CM|Non-abo incomp/HTR NEC|Non-abo incomp/HTR NEC +C2921242|T047|PT|999.76|ICD9CM|Non-ABO incompatibility with hemolytic transfusion reaction not specified as acute or delayed|Non-ABO incompatibility with hemolytic transfusion reaction not specified as acute or delayed +C2921245|T046|AB|999.77|ICD9CM|Non-abo incomp/acute HTR|Non-abo incomp/acute HTR +C2921245|T046|PT|999.77|ICD9CM|Non-ABO incompatibility with acute hemolytic transfusion reaction|Non-ABO incompatibility with acute hemolytic transfusion reaction +C2921249|T046|AB|999.78|ICD9CM|Non-abo incomp/delay HTR|Non-abo incomp/delay HTR +C2921249|T046|PT|999.78|ICD9CM|Non-ABO incompatibility with delayed hemolytic transfusion reaction|Non-ABO incompatibility with delayed hemolytic transfusion reaction +C2921252|T047|AB|999.79|ICD9CM|Non-abo incomp react NEC|Non-abo incomp react NEC +C2921252|T047|PT|999.79|ICD9CM|Other non-ABO incompatibility reaction|Other non-ABO incompatibility reaction +C2349800|T037|HT|999.8|ICD9CM|Other infusion and transfusion reaction, not elsewhere classified|Other infusion and transfusion reaction, not elsewhere classified +C0274435|T046|AB|999.80|ICD9CM|Transfusion reaction NOS|Transfusion reaction NOS +C0274435|T046|PT|999.80|ICD9CM|Transfusion reaction, unspecified|Transfusion reaction, unspecified +C2349794|T037|PT|999.81|ICD9CM|Extravasation of vesicant chemotherapy|Extravasation of vesicant chemotherapy +C2349794|T037|AB|999.81|ICD9CM|Extravstn vesicant chemo|Extravstn vesicant chemo +C2349796|T037|PT|999.82|ICD9CM|Extravasation of other vesicant agent|Extravasation of other vesicant agent +C2349796|T037|AB|999.82|ICD9CM|Extravasn vesicant NEC|Extravasn vesicant NEC +C2921258|T046|AB|999.83|ICD9CM|Hemolytc trans react NOS|Hemolytc trans react NOS +C2921258|T046|PT|999.83|ICD9CM|Hemolytic transfusion reaction, incompatibility unspecified|Hemolytic transfusion reaction, incompatibility unspecified +C2921260|T046|PT|999.84|ICD9CM|Acute hemolytic transfusion reaction, incompatibility unspecified|Acute hemolytic transfusion reaction, incompatibility unspecified +C2921260|T046|AB|999.84|ICD9CM|Acute HTR NOS|Acute HTR NOS +C2921262|T046|PT|999.85|ICD9CM|Delayed hemolytic transfusion reaction, incompatibility unspecified|Delayed hemolytic transfusion reaction, incompatibility unspecified +C2921262|T046|AB|999.85|ICD9CM|Delayed HTR NOS|Delayed HTR NOS +C2349798|T047|AB|999.88|ICD9CM|Infusion reaction NEC|Infusion reaction NEC +C2349798|T047|PT|999.88|ICD9CM|Other infusion reaction|Other infusion reaction +C2349799|T046|PT|999.89|ICD9CM|Other transfusion reaction|Other transfusion reaction +C2349799|T046|AB|999.89|ICD9CM|Transfusion reaction NEC|Transfusion reaction NEC +C0302430|T037|AB|999.9|ICD9CM|Complic med care NEC/NOS|Complic med care NEC/NOS +C0302430|T037|PT|999.9|ICD9CM|Other and unspecified complications of medical care, not elsewhere classified|Other and unspecified complications of medical care, not elsewhere classified +C2712898|T033|HT|E000|ICD9CM|External cause status|External cause status +C2712898|T033|HT|E000-E000.9|ICD9CM|EXTERNAL CAUSE STATUS|EXTERNAL CAUSE STATUS +C2712384|T037|PT|E000.0|ICD9CM|Civilian activity done for income or pay|Civilian activity done for income or pay +C2712384|T037|AB|E000.0|ICD9CM|Civilian activity-income|Civilian activity-income +C2712385|T037|PT|E000.1|ICD9CM|Military activity|Military activity +C2712385|T037|AB|E000.1|ICD9CM|Military activity|Military activity +C2712386|T033|AB|E000.8|ICD9CM|Externl cause status NEC|Externl cause status NEC +C2712386|T033|PT|E000.8|ICD9CM|Other external cause status|Other external cause status +C2712387|T037|AB|E000.9|ICD9CM|Externl cause status NOS|Externl cause status NOS +C2712387|T037|PT|E000.9|ICD9CM|Unspecified external cause status|Unspecified external cause status +C0260969|T037|HT|E800|ICD9CM|Railway accident involving collision with rolling stock|Railway accident involving collision with rolling stock +C0414085|T037|HT|E800-E807.9|ICD9CM|RAILWAY ACCIDENTS|RAILWAY ACCIDENTS +C0362049|T037|HT|E800-E848.9|ICD9CM|TRANSPORT ACCIDENTS|TRANSPORT ACCIDENTS +C0260970|T037|PT|E800.0|ICD9CM|Railway accident involving collision with rolling stock and injuring railway employee|Railway accident involving collision with rolling stock and injuring railway employee +C0260970|T037|AB|E800.0|ICD9CM|RR collision NOS-employ|RR collision NOS-employ +C0260971|T037|PT|E800.1|ICD9CM|Railway accident involving collision with rolling stock and injuring passenger on railway|Railway accident involving collision with rolling stock and injuring passenger on railway +C0260971|T037|AB|E800.1|ICD9CM|RR coll NOS-passenger|RR coll NOS-passenger +C0260972|T037|PT|E800.2|ICD9CM|Railway accident involving collision with rolling stock and injuring pedestrian|Railway accident involving collision with rolling stock and injuring pedestrian +C0260972|T037|AB|E800.2|ICD9CM|RR coll NOS-pedestrian|RR coll NOS-pedestrian +C0260973|T037|PT|E800.3|ICD9CM|Railway accident involving collision with rolling stock and injuring pedal cyclist|Railway accident involving collision with rolling stock and injuring pedal cyclist +C0260973|T037|AB|E800.3|ICD9CM|RR coll NOS-ped cyclist|RR coll NOS-ped cyclist +C0260974|T037|PT|E800.8|ICD9CM|Railway accident involving collision with rolling stock and injuring other specified person|Railway accident involving collision with rolling stock and injuring other specified person +C0260974|T037|AB|E800.8|ICD9CM|RR coll NOS-person NEC|RR coll NOS-person NEC +C0260975|T037|PT|E800.9|ICD9CM|Railway accident involving collision with rolling stock and injuring unspecified person|Railway accident involving collision with rolling stock and injuring unspecified person +C0260975|T037|AB|E800.9|ICD9CM|RR coll NOS-person NOS|RR coll NOS-person NOS +C0260976|T037|HT|E801|ICD9CM|Railway accident involving collision with other object|Railway accident involving collision with other object +C0414276|T037|HT|E804|ICD9CM|Fall in, on, or from railway train|Fall in, on, or from railway train +C0414302|T037|HT|E805|ICD9CM|Hit by rolling stock|Hit by rolling stock +C0261012|T037|PT|E806.0|ICD9CM|Other specified railway accident injuring railway employee|Other specified railway accident injuring railway employee +C0261012|T037|AB|E806.0|ICD9CM|RR acc NEC-employee|RR acc NEC-employee +C0261016|T037|PT|E806.8|ICD9CM|Other specified railway accident injuring other specified person|Other specified railway accident injuring other specified person +C0261016|T037|AB|E806.8|ICD9CM|RR acc NEC-person NEC|RR acc NEC-person NEC +C0261017|T037|PT|E806.9|ICD9CM|Other specified railway accident injuring unspecified person|Other specified railway accident injuring unspecified person +C0261017|T037|AB|E806.9|ICD9CM|RR acc NEC-person NOS|RR acc NEC-person NOS +C0414085|T037|HT|E807|ICD9CM|Railway accident of unspecified nature|Railway accident of unspecified nature +C0414438|T037|HT|E810|ICD9CM|Motor vehicle traffic accident involving collision with train|Motor vehicle traffic accident involving collision with train +C4760746|T037|HT|E810-E819.9|ICD9CM|MOTOR VEHICLE TRAFFIC ACCIDENTS|MOTOR VEHICLE TRAFFIC ACCIDENTS +C0261028|T037|PT|E810.2|ICD9CM|Motor vehicle traffic accident involving collision with train injuring motorcyclist|Motor vehicle traffic accident involving collision with train injuring motorcyclist +C0261028|T037|AB|E810.2|ICD9CM|Mv-train coll-motorcycl|Mv-train coll-motorcycl +C0261029|T037|PT|E810.3|ICD9CM|Motor vehicle traffic accident involving collision with train injuring passenger on motorcycle|Motor vehicle traffic accident involving collision with train injuring passenger on motorcycle +C0261029|T037|AB|E810.3|ICD9CM|Mv-train coll-mcycl psgr|Mv-train coll-mcycl psgr +C0261030|T037|PT|E810.4|ICD9CM|Motor vehicle traffic accident involving collision with train injuring occupant of streetcar|Motor vehicle traffic accident involving collision with train injuring occupant of streetcar +C0261030|T037|AB|E810.4|ICD9CM|Mv-train coll-st car|Mv-train coll-st car +C0414441|T037|PT|E810.6|ICD9CM|Motor vehicle traffic accident involving collision with train injuring pedal cyclist|Motor vehicle traffic accident involving collision with train injuring pedal cyclist +C0414441|T037|AB|E810.6|ICD9CM|Mv-train coll-ped cycl|Mv-train coll-ped cycl +C0414440|T037|PT|E810.7|ICD9CM|Motor vehicle traffic accident involving collision with train injuring pedestrian|Motor vehicle traffic accident involving collision with train injuring pedestrian +C0414440|T037|AB|E810.7|ICD9CM|Mv-train coll-pedest|Mv-train coll-pedest +C0414439|T037|PT|E810.8|ICD9CM|Motor vehicle traffic accident involving collision with train injuring other specified person|Motor vehicle traffic accident involving collision with train injuring other specified person +C0414439|T037|AB|E810.8|ICD9CM|Mv-train coll-pers NEC|Mv-train coll-pers NEC +C0414438|T037|PT|E810.9|ICD9CM|Motor vehicle traffic accident involving collision with train injuring unspecified person|Motor vehicle traffic accident involving collision with train injuring unspecified person +C0414438|T037|AB|E810.9|ICD9CM|Mv-train coll-pers NOS|Mv-train coll-pers NOS +C0261036|T037|HT|E811|ICD9CM|Motor vehicle traffic accident involving re-entrant collision with another motor vehicle|Motor vehicle traffic accident involving re-entrant collision with another motor vehicle +C0261039|T037|AB|E811.2|ICD9CM|Reentrant coll-motcycl|Reentrant coll-motcycl +C0261040|T037|AB|E811.3|ICD9CM|Reentrant coll-mcyc psgr|Reentrant coll-mcyc psgr +C0261041|T037|AB|E811.4|ICD9CM|Reentrant coll-st car|Reentrant coll-st car +C0261043|T037|AB|E811.6|ICD9CM|Reentrant coll-ped cycl|Reentrant coll-ped cycl +C0261045|T037|AB|E811.8|ICD9CM|Reentrant coll-pers NEC|Reentrant coll-pers NEC +C0261046|T037|AB|E811.9|ICD9CM|Reentrant coll-pers NOS|Reentrant coll-pers NOS +C0261061|T037|PT|E813.2|ICD9CM|Motor vehicle traffic accident involving collision with other vehicle injuring motorcyclist|Motor vehicle traffic accident involving collision with other vehicle injuring motorcyclist +C0261061|T037|AB|E813.2|ICD9CM|Mv-oth veh coll-motcycl|Mv-oth veh coll-motcycl +C0261062|T037|AB|E813.3|ICD9CM|Mv-oth veh coll-mcyc psg|Mv-oth veh coll-mcyc psg +C0261063|T037|PT|E813.4|ICD9CM|Motor vehicle traffic accident involving collision with other vehicle injuring occupant of streetcar|Motor vehicle traffic accident involving collision with other vehicle injuring occupant of streetcar +C0261063|T037|AB|E813.4|ICD9CM|Mv-oth veh coll-st car|Mv-oth veh coll-st car +C0414471|T037|PT|E813.9|ICD9CM|Motor vehicle traffic accident involving collision with other vehicle injuring unspecified person|Motor vehicle traffic accident involving collision with other vehicle injuring unspecified person +C0414471|T037|AB|E813.9|ICD9CM|Mv-oth veh coll-pers NOS|Mv-oth veh coll-pers NOS +C0261069|T037|HT|E814|ICD9CM|Motor vehicle traffic accident involving collision with pedestrian|Motor vehicle traffic accident involving collision with pedestrian +C0261080|T037|HT|E815|ICD9CM|Other motor vehicle traffic accident involving collision on the highway|Other motor vehicle traffic accident involving collision on the highway +C0261091|T037|HT|E816|ICD9CM|Motor vehicle traffic accident due to loss of control, without collision on the highway|Motor vehicle traffic accident due to loss of control, without collision on the highway +C0414740|T037|AB|E816.2|ICD9CM|Loss control mv-mocycl|Loss control mv-mocycl +C0261095|T037|AB|E816.3|ICD9CM|Loss control mv-mcyc psg|Loss control mv-mcyc psg +C0261096|T037|AB|E816.4|ICD9CM|Loss cont mv acc-st car|Loss cont mv acc-st car +C0414736|T037|AB|E816.6|ICD9CM|Loss control mv-ped cycl|Loss control mv-ped cycl +C0414735|T037|AB|E816.7|ICD9CM|Loss control mv-pedest|Loss control mv-pedest +C0414734|T037|AB|E816.8|ICD9CM|Loss control mv-pers NEC|Loss control mv-pers NEC +C0414733|T037|AB|E816.9|ICD9CM|Loss control mv-pers NOS|Loss control mv-pers NOS +C0261102|T037|HT|E817|ICD9CM|Noncollision motor vehicle traffic accident while boarding or alighting|Noncollision motor vehicle traffic accident while boarding or alighting +C0026614|T037|HT|E819|ICD9CM|Motor vehicle traffic accident of unspecified nature|Motor vehicle traffic accident of unspecified nature +C0415270|T037|HT|E820|ICD9CM|Nontraffic accident involving motor-driven snow vehicle|Nontraffic accident involving motor-driven snow vehicle +C0178348|T037|HT|E820-E825.9|ICD9CM|MOTOR VEHICLE NONTRAFFIC ACCIDENTS|MOTOR VEHICLE NONTRAFFIC ACCIDENTS +C0261141|T037|PT|E820.6|ICD9CM|Nontraffic accident involving motor-driven snow vehicle injuring pedal cyclist|Nontraffic accident involving motor-driven snow vehicle injuring pedal cyclist +C0261141|T037|AB|E820.6|ICD9CM|Snow veh acc-ped cycl|Snow veh acc-ped cycl +C0261142|T037|PT|E820.7|ICD9CM|Nontraffic accident involving motor-driven snow vehicle injuring pedestrian|Nontraffic accident involving motor-driven snow vehicle injuring pedestrian +C0261142|T037|AB|E820.7|ICD9CM|Snow veh acc-pedest|Snow veh acc-pedest +C0261143|T037|PT|E820.8|ICD9CM|Nontraffic accident involving motor-driven snow vehicle injuring other specified person|Nontraffic accident involving motor-driven snow vehicle injuring other specified person +C0261143|T037|AB|E820.8|ICD9CM|Snow veh acc-pers NEC|Snow veh acc-pers NEC +C0261144|T037|PT|E820.9|ICD9CM|Nontraffic accident involving motor-driven snow vehicle injuring unspecified person|Nontraffic accident involving motor-driven snow vehicle injuring unspecified person +C0261144|T037|AB|E820.9|ICD9CM|Snow veh acc-pers NOS|Snow veh acc-pers NOS +C0261156|T037|HT|E822|ICD9CM|Other motor vehicle nontraffic accident involving collision with moving object|Other motor vehicle nontraffic accident involving collision with moving object +C0261167|T037|HT|E823|ICD9CM|Other motor vehicle nontraffic accident involving collision with stationary object|Other motor vehicle nontraffic accident involving collision with stationary object +C0261178|T037|HT|E824|ICD9CM|Other motor vehicle nontraffic accident while boarding and alighting|Other motor vehicle nontraffic accident while boarding and alighting +C0261189|T037|HT|E825|ICD9CM|Other motor vehicle nontraffic accident of other and unspecified nature|Other motor vehicle nontraffic accident of other and unspecified nature +C0261200|T037|HT|E826|ICD9CM|Pedal cycle accident|Pedal cycle accident +C0176004|T037|HT|E826-E829.9|ICD9CM|OTHER ROAD VEHICLE ACCIDENTS|OTHER ROAD VEHICLE ACCIDENTS +C0261201|T037|AB|E826.0|ICD9CM|Pedal cycle acc-pedest|Pedal cycle acc-pedest +C0261201|T037|PT|E826.0|ICD9CM|Pedal cycle accident injuring pedestrian|Pedal cycle accident injuring pedestrian +C0261202|T037|AB|E826.1|ICD9CM|Ped cycl acc-ped cyclist|Ped cycl acc-ped cyclist +C0261202|T037|PT|E826.1|ICD9CM|Pedal cycle accident injuring pedal cyclist|Pedal cycle accident injuring pedal cyclist +C0261203|T037|AB|E826.2|ICD9CM|Ped cycle acc-anim rider|Ped cycle acc-anim rider +C0261203|T037|PT|E826.2|ICD9CM|Pedal cycle accident injuring rider of animal|Pedal cycle accident injuring rider of animal +C0415505|T037|AB|E826.3|ICD9CM|Ped cyc acc-occ anim veh|Ped cyc acc-occ anim veh +C0415505|T037|PT|E826.3|ICD9CM|Pedal cycle accident injuring occupant of animal-drawn vehicle|Pedal cycle accident injuring occupant of animal-drawn vehicle +C0261205|T037|AB|E826.4|ICD9CM|Ped cycle acc-occ st car|Ped cycle acc-occ st car +C0261205|T037|PT|E826.4|ICD9CM|Pedal cycle accident injuring occupant of streetcar|Pedal cycle accident injuring occupant of streetcar +C0261206|T037|AB|E826.8|ICD9CM|Ped cycle acc-pers NEC|Ped cycle acc-pers NEC +C0261206|T037|PT|E826.8|ICD9CM|Pedal cycle accident injuring other specified person|Pedal cycle accident injuring other specified person +C0261207|T037|AB|E826.9|ICD9CM|Ped cycle acc-pers NOS|Ped cycle acc-pers NOS +C0261207|T037|PT|E826.9|ICD9CM|Pedal cycle accident injuring unspecified person|Pedal cycle accident injuring unspecified person +C0261208|T037|HT|E827|ICD9CM|Animal-drawn vehicle accident|Animal-drawn vehicle accident +C0261209|T037|AB|E827.0|ICD9CM|Animal drawn veh-pedest|Animal drawn veh-pedest +C0261209|T037|PT|E827.0|ICD9CM|Animal-drawn vehicle accident injuring pedestrian|Animal-drawn vehicle accident injuring pedestrian +C0261210|T037|AB|E827.2|ICD9CM|Anim drawn veh-anim rid|Anim drawn veh-anim rid +C0261210|T037|PT|E827.2|ICD9CM|Animal-drawn vehicle accident injuring rider of animal|Animal-drawn vehicle accident injuring rider of animal +C0261211|T037|AB|E827.3|ICD9CM|Animal drawn veh-occupan|Animal drawn veh-occupan +C0261211|T037|PT|E827.3|ICD9CM|Animal-drawn vehicle accident injuring occupant of animal drawn vehicle|Animal-drawn vehicle accident injuring occupant of animal drawn vehicle +C0261212|T037|AB|E827.4|ICD9CM|Anim drawn-occ st car|Anim drawn-occ st car +C0261212|T037|PT|E827.4|ICD9CM|Animal-drawn vehicle accident injuring occupant of streetcar|Animal-drawn vehicle accident injuring occupant of streetcar +C0261213|T037|AB|E827.8|ICD9CM|Anim drawn veh-pers NEC|Anim drawn veh-pers NEC +C0261213|T037|PT|E827.8|ICD9CM|Animal-drawn vehicle accident injuring other specified person|Animal-drawn vehicle accident injuring other specified person +C0261214|T037|AB|E827.9|ICD9CM|Anim drawn veh-pers NOS|Anim drawn veh-pers NOS +C0261214|T037|PT|E827.9|ICD9CM|Animal-drawn vehicle accident injuring unspecified person|Animal-drawn vehicle accident injuring unspecified person +C0261215|T037|HT|E828|ICD9CM|Accident involving animal being ridden|Accident involving animal being ridden +C0415659|T037|PT|E828.0|ICD9CM|Accident involving animal being ridden injuring pedestrian|Accident involving animal being ridden injuring pedestrian +C0415659|T037|AB|E828.0|ICD9CM|Ridden animal acc-pedest|Ridden animal acc-pedest +C0415658|T037|PT|E828.2|ICD9CM|Accident involving animal being ridden injuring rider of animal|Accident involving animal being ridden injuring rider of animal +C0415658|T037|AB|E828.2|ICD9CM|Ridden animal acc-rider|Ridden animal acc-rider +C0261218|T037|PT|E828.4|ICD9CM|Accident involving animal being ridden injuring occupant of streetcar|Accident involving animal being ridden injuring occupant of streetcar +C0261218|T037|AB|E828.4|ICD9CM|Ridden animal acc-st car|Ridden animal acc-st car +C0176004|T037|HT|E829|ICD9CM|Other road vehicle accidents|Other road vehicle accidents +C0261221|T037|AB|E829.0|ICD9CM|Oth road veh acc-pedest|Oth road veh acc-pedest +C0261221|T037|PT|E829.0|ICD9CM|Other road vehicle accidents injuring pedestrian|Other road vehicle accidents injuring pedestrian +C0414364|T037|AB|E829.8|ICD9CM|Oth rd veh acc-pers NEC|Oth rd veh acc-pers NEC +C0414364|T037|PT|E829.8|ICD9CM|Other road vehicle accidents injuring other specified person|Other road vehicle accidents injuring other specified person +C0261225|T037|HT|E830|ICD9CM|Accident to watercraft causing submersion|Accident to watercraft causing submersion +C2712469|T037|PT|E830.7|ICD9CM|Accident to watercraft causing submersion, occupant of military watercraft, any type|Accident to watercraft causing submersion, occupant of military watercraft, any type +C2712469|T037|AB|E830.7|ICD9CM|Boat submers-military|Boat submers-military +C0261235|T037|HT|E831|ICD9CM|Accident to watercraft causing other injury|Accident to watercraft causing other injury +C2712470|T037|PT|E831.7|ICD9CM|Accident to watercraft causing other injury, occupant of military watercraft, any type|Accident to watercraft causing other injury, occupant of military watercraft, any type +C2712470|T037|AB|E831.7|ICD9CM|Boat acc inj NEC-militry|Boat acc inj NEC-militry +C0261245|T037|HT|E832|ICD9CM|Other accidental submersion or drowning in water transport accident|Other accidental submersion or drowning in water transport accident +C2712471|T037|AB|E832.7|ICD9CM|Submersion NEC-military|Submersion NEC-military +C0261255|T037|HT|E833|ICD9CM|Fall on stairs or ladders in water transport|Fall on stairs or ladders in water transport +C0261256|T037|PT|E833.0|ICD9CM|Fall on stairs or ladders in water transport injuring occupant of small boat, unpowered|Fall on stairs or ladders in water transport injuring occupant of small boat, unpowered +C0261256|T037|AB|E833.0|ICD9CM|W/craft stair fall-unpow|W/craft stair fall-unpow +C0261257|T037|PT|E833.1|ICD9CM|Fall on stairs or ladders in water transport injuring occupant of small boat, powered|Fall on stairs or ladders in water transport injuring occupant of small boat, powered +C0261257|T037|AB|E833.1|ICD9CM|W/craft stair fall-power|W/craft stair fall-power +C0261258|T037|PT|E833.2|ICD9CM|Fall on stairs or ladders in water transport injuring occupant of other watercraft -- crew|Fall on stairs or ladders in water transport injuring occupant of other watercraft -- crew +C0261258|T037|AB|E833.2|ICD9CM|Wtrcraft stair fall-crew|Wtrcraft stair fall-crew +C0261259|T037|AB|E833.3|ICD9CM|Wtrcraft stair fall-psgr|Wtrcraft stair fall-psgr +C0261260|T037|PT|E833.4|ICD9CM|Fall on stairs or ladders in water transport injuring water skier|Fall on stairs or ladders in water transport injuring water skier +C0261260|T037|AB|E833.4|ICD9CM|W/craft stair fall-skier|W/craft stair fall-skier +C0261261|T037|PT|E833.5|ICD9CM|Fall on stairs or ladders in water transport injuring swimmer|Fall on stairs or ladders in water transport injuring swimmer +C0261261|T037|AB|E833.5|ICD9CM|W/craft stair fall-swim|W/craft stair fall-swim +C0261262|T037|PT|E833.6|ICD9CM|Fall on stairs or ladders in water transport injuring dockers, stevedores|Fall on stairs or ladders in water transport injuring dockers, stevedores +C0261262|T037|AB|E833.6|ICD9CM|W/crf stair fall-docker|W/crf stair fall-docker +C2712472|T037|PT|E833.7|ICD9CM|Fall on stairs or ladders in water transport, occupant of military watercraft, any type|Fall on stairs or ladders in water transport, occupant of military watercraft, any type +C2712472|T037|AB|E833.7|ICD9CM|W/crf stair fall-militry|W/crf stair fall-militry +C0261263|T037|PT|E833.8|ICD9CM|Fall on stairs or ladders in water transport injuring other specified person|Fall on stairs or ladders in water transport injuring other specified person +C0261263|T037|AB|E833.8|ICD9CM|W/crf stair fall-per NEC|W/crf stair fall-per NEC +C0261264|T037|PT|E833.9|ICD9CM|Fall on stairs or ladders in water transport injuring unspecified person|Fall on stairs or ladders in water transport injuring unspecified person +C0261264|T037|AB|E833.9|ICD9CM|W/crf stair fall-per NOS|W/crf stair fall-per NOS +C2712473|T037|PT|E834.7|ICD9CM|Other fall from one level to another in water transport, occupant of military watercraft, any type|Other fall from one level to another in water transport, occupant of military watercraft, any type +C2712473|T037|AB|E834.7|ICD9CM|W/crft fall NEC-military|W/crft fall NEC-military +C0261273|T037|PT|E834.8|ICD9CM|Other fall from one level to another in water transport injuring other specified person|Other fall from one level to another in water transport injuring other specified person +C0261273|T037|AB|E834.8|ICD9CM|W/crft fall NEC-pers NEC|W/crft fall NEC-pers NEC +C2712474|T037|PT|E835.7|ICD9CM|Other and unspecified fall in water transport, occupant of military watercraft, any type|Other and unspecified fall in water transport, occupant of military watercraft, any type +C2712474|T037|AB|E835.7|ICD9CM|W/crft fall NEC/NOS-mil|W/crft fall NEC/NOS-mil +C0261285|T037|HT|E836|ICD9CM|Machinery accident in water transport|Machinery accident in water transport +C0261286|T037|AB|E836.0|ICD9CM|Machine acc-unpow boat|Machine acc-unpow boat +C0261286|T037|PT|E836.0|ICD9CM|Machinery accident in water transport injuring occupant of small boat, unpowered|Machinery accident in water transport injuring occupant of small boat, unpowered +C0261287|T037|AB|E836.1|ICD9CM|Mach acc-occ power boat|Mach acc-occ power boat +C0261287|T037|PT|E836.1|ICD9CM|Machinery accident in water transport injuring occupant of small boat, powered|Machinery accident in water transport injuring occupant of small boat, powered +C0261288|T037|PT|E836.2|ICD9CM|Machinery accident in water transport injuring occupant of other watercraft -- crew|Machinery accident in water transport injuring occupant of other watercraft -- crew +C0261288|T037|AB|E836.2|ICD9CM|Machinery accident-crew|Machinery accident-crew +C0261289|T037|AB|E836.3|ICD9CM|Machinery acc-pasngr|Machinery acc-pasngr +C0261289|T037|PT|E836.3|ICD9CM|Machinery accident in water transport injuring occupant of other watercraft -- other than crew|Machinery accident in water transport injuring occupant of other watercraft -- other than crew +C0261290|T037|AB|E836.4|ICD9CM|Machine accident-skier|Machine accident-skier +C0261290|T037|PT|E836.4|ICD9CM|Machinery accident in water transport injuring water skier|Machinery accident in water transport injuring water skier +C0261291|T037|AB|E836.5|ICD9CM|Machine accident-swim|Machine accident-swim +C0261291|T037|PT|E836.5|ICD9CM|Machinery accident in water transport injuring swimmer|Machinery accident in water transport injuring swimmer +C0261292|T037|AB|E836.6|ICD9CM|Machinery acc-docker|Machinery acc-docker +C0261292|T037|PT|E836.6|ICD9CM|Machinery accident in water transport injuring dockers, stevedores|Machinery accident in water transport injuring dockers, stevedores +C2712475|T037|PT|E836.7|ICD9CM|Machinery accident in water transport, occupant of military watercraft, any type|Machinery accident in water transport, occupant of military watercraft, any type +C2712475|T037|AB|E836.7|ICD9CM|W/crft machine-military|W/crft machine-military +C0261293|T037|AB|E836.8|ICD9CM|Machinery acc-pers NEC|Machinery acc-pers NEC +C0261293|T037|PT|E836.8|ICD9CM|Machinery accident in water transport injuring other specified person|Machinery accident in water transport injuring other specified person +C0261294|T037|AB|E836.9|ICD9CM|Machinery acc-pers NOS|Machinery acc-pers NOS +C0261294|T037|PT|E836.9|ICD9CM|Machinery accident in water transport injuring unspecified person|Machinery accident in water transport injuring unspecified person +C0261295|T037|HT|E837|ICD9CM|Explosion, fire, or burning in watercraft|Explosion, fire, or burning in watercraft +C2712476|T037|PT|E837.7|ICD9CM|Explosion, fire, or burning in watercraft, occupant of military watercraft, any type|Explosion, fire, or burning in watercraft, occupant of military watercraft, any type +C2712476|T037|AB|E837.7|ICD9CM|W/crft explosn-military|W/crft explosn-military +C0261314|T037|HT|E838|ICD9CM|Other and unspecified water transport accident|Other and unspecified water transport accident +C0261306|T037|PT|E838.0|ICD9CM|Other and unspecified water transport accident injuring occupant of small boat, unpowered|Other and unspecified water transport accident injuring occupant of small boat, unpowered +C0261306|T037|AB|E838.0|ICD9CM|Watercraft acc NEC-unpow|Watercraft acc NEC-unpow +C0261307|T037|PT|E838.1|ICD9CM|Other and unspecified water transport accident injuring occupant of small boat, powered|Other and unspecified water transport accident injuring occupant of small boat, powered +C0261307|T037|AB|E838.1|ICD9CM|Watercraft acc NEC-power|Watercraft acc NEC-power +C0261308|T037|PT|E838.2|ICD9CM|Other and unspecified water transport accident injuring occupant of other watercraft -- crew|Other and unspecified water transport accident injuring occupant of other watercraft -- crew +C0261308|T037|AB|E838.2|ICD9CM|Watercraft acc NEC-crew|Watercraft acc NEC-crew +C0261309|T037|AB|E838.3|ICD9CM|Watercrft acc NEC-pasngr|Watercrft acc NEC-pasngr +C2712477|T037|PT|E838.7|ICD9CM|Other and unspecified water transport accident, occupant of military watercraft, any type|Other and unspecified water transport accident, occupant of military watercraft, any type +C2712477|T037|AB|E838.7|ICD9CM|W/crft-military NEC/NOS|W/crft-military NEC/NOS +C0261313|T037|PT|E838.8|ICD9CM|Other and unspecified water transport accident injuring other specified person|Other and unspecified water transport accident injuring other specified person +C0261313|T037|AB|E838.8|ICD9CM|Wtrcrft acc NEC-pers NEC|Wtrcrft acc NEC-pers NEC +C0261314|T037|PT|E838.9|ICD9CM|Other and unspecified water transport accident injuring unspecified person|Other and unspecified water transport accident injuring unspecified person +C0261314|T037|AB|E838.9|ICD9CM|Wtrcrft acc NEC-pers NOS|Wtrcrft acc NEC-pers NOS +C0261315|T037|HT|E840|ICD9CM|Accident to powered aircraft at takeoff or landing|Accident to powered aircraft at takeoff or landing +C0178350|T037|HT|E840-E845.9|ICD9CM|AIR AND SPACE TRANSPORT ACCIDENTS|AIR AND SPACE TRANSPORT ACCIDENTS +C0416143|T037|HT|E841|ICD9CM|Accident to powered aircraft, other and unspecified|Accident to powered aircraft, other and unspecified +C0261337|T037|HT|E842|ICD9CM|Accident to unpowered aircraft|Accident to unpowered aircraft +C0261342|T037|HT|E843|ICD9CM|Fall in, on, or from aircraft|Fall in, on, or from aircraft +C0261351|T037|AB|E843.8|ICD9CM|Aircrft fall-ground crew|Aircrft fall-ground crew +C0261351|T037|PT|E843.8|ICD9CM|Fall in, on, or from aircraft injuring ground crew, airline employee|Fall in, on, or from aircraft injuring ground crew, airline employee +C0261353|T037|HT|E844|ICD9CM|Other specified air transport accidents|Other specified air transport accidents +C0261371|T033|HT|E849-E849.9|ICD9CM|PLACE OF OCCURRENCE|PLACE OF OCCURRENCE +C0261377|T037|AB|E849.6|ICD9CM|Accident in public bldg|Accident in public bldg +C0261377|T037|PT|E849.6|ICD9CM|Accidents occurring in public building|Accidents occurring in public building +C0261378|T033|AB|E849.7|ICD9CM|Accid in resident instit|Accid in resident instit +C0261378|T033|PT|E849.7|ICD9CM|Accidents occurring in residential institution|Accidents occurring in residential institution +C0261381|T037|HT|E850|ICD9CM|Accidental poisoning by analgesics, antipyretics, and antirheumatics|Accidental poisoning by analgesics, antipyretics, and antirheumatics +C0178352|T037|HT|E850-E858.9|ICD9CM|ACCIDENTAL POISONING BY DRUGS, MEDICINAL SUBSTANCES, AND BIOLOGICALS|ACCIDENTAL POISONING BY DRUGS, MEDICINAL SUBSTANCES, AND BIOLOGICALS +C0261382|T037|AB|E850.0|ICD9CM|Acc poison-heroin|Acc poison-heroin +C0261382|T037|PT|E850.0|ICD9CM|Accidental poisoning by heroin|Accidental poisoning by heroin +C0261383|T037|AB|E850.1|ICD9CM|Acc poison-methadone|Acc poison-methadone +C0261383|T037|PT|E850.1|ICD9CM|Accidental poisoning by methadone|Accidental poisoning by methadone +C0261384|T037|AB|E850.2|ICD9CM|Acc poison-opiates NEC|Acc poison-opiates NEC +C0261384|T037|PT|E850.2|ICD9CM|Accidental poisoning by other opiates and related narcotics|Accidental poisoning by other opiates and related narcotics +C0261385|T037|AB|E850.3|ICD9CM|Acc poison-salicylates|Acc poison-salicylates +C0261385|T037|PT|E850.3|ICD9CM|Accidental poisoning by salicylates|Accidental poisoning by salicylates +C0869513|T037|AB|E850.4|ICD9CM|Acc poison-arom analgesc|Acc poison-arom analgesc +C0869513|T037|PT|E850.4|ICD9CM|Accidental poisoning by aromatic analgesics, not elsewhere classified|Accidental poisoning by aromatic analgesics, not elsewhere classified +C0261387|T037|AB|E850.5|ICD9CM|Acc poison-pyrazole derv|Acc poison-pyrazole derv +C0261387|T037|PT|E850.5|ICD9CM|Accidental poisoning by pyrazole derivatives|Accidental poisoning by pyrazole derivatives +C0416598|T037|AB|E850.6|ICD9CM|Acc poison-antirheumatic|Acc poison-antirheumatic +C0416598|T037|PT|E850.6|ICD9CM|Accidental poisoning by antirheumatics (antiphlogistics)|Accidental poisoning by antirheumatics (antiphlogistics) +C0261389|T037|AB|E850.7|ICD9CM|Acc poison-nonnarc analg|Acc poison-nonnarc analg +C0261389|T037|PT|E850.7|ICD9CM|Accidental poisoning by other non-narcotic analgesics|Accidental poisoning by other non-narcotic analgesics +C0261390|T037|AB|E850.8|ICD9CM|Acc poison-analgesic NEC|Acc poison-analgesic NEC +C0261390|T037|PT|E850.8|ICD9CM|Accidental poisoning by other specified analgesics and antipyretics|Accidental poisoning by other specified analgesics and antipyretics +C0261391|T037|AB|E850.9|ICD9CM|Acc poison-analgesic NOS|Acc poison-analgesic NOS +C0261391|T037|PT|E850.9|ICD9CM|Accidental poisoning by unspecified analgesic or antipyretic|Accidental poisoning by unspecified analgesic or antipyretic +C0261392|T037|AB|E851|ICD9CM|Acc poison-barbiturates|Acc poison-barbiturates +C0261392|T037|PT|E851|ICD9CM|Accidental poisoning by barbiturates|Accidental poisoning by barbiturates +C0261393|T037|HT|E852|ICD9CM|Accidental poisoning by other sedatives and hypnotics|Accidental poisoning by other sedatives and hypnotics +C0261394|T037|AB|E852.0|ICD9CM|Acc poisn-chlorl hydrate|Acc poisn-chlorl hydrate +C0261394|T037|PT|E852.0|ICD9CM|Accidental poisoning by chloral hydrate group|Accidental poisoning by chloral hydrate group +C0261395|T037|AB|E852.1|ICD9CM|Acc poison-paraldehyde|Acc poison-paraldehyde +C0261395|T037|PT|E852.1|ICD9CM|Accidental poisoning by paraldehyde|Accidental poisoning by paraldehyde +C0261396|T037|AB|E852.2|ICD9CM|Acc poison-bromine cmpnd|Acc poison-bromine cmpnd +C0261396|T037|PT|E852.2|ICD9CM|Accidental poisoning by bromine compounds|Accidental poisoning by bromine compounds +C0261397|T037|AB|E852.3|ICD9CM|Acc poison-methaqualone|Acc poison-methaqualone +C0261397|T037|PT|E852.3|ICD9CM|Accidental poisoning by methaqualone compounds|Accidental poisoning by methaqualone compounds +C0261398|T037|AB|E852.4|ICD9CM|Acc poison-glutethimide|Acc poison-glutethimide +C0261398|T037|PT|E852.4|ICD9CM|Accidental poisoning by glutethimide group|Accidental poisoning by glutethimide group +C0869445|T037|AB|E852.5|ICD9CM|Acc poison-mix sedtv NEC|Acc poison-mix sedtv NEC +C0869445|T037|PT|E852.5|ICD9CM|Accidental poisoning by mixed sedatives, not elsewhere classified|Accidental poisoning by mixed sedatives, not elsewhere classified +C0261400|T037|AB|E852.8|ICD9CM|Acc poison-sedatives NEC|Acc poison-sedatives NEC +C0261400|T037|PT|E852.8|ICD9CM|Accidental poisoning by other specified sedatives and hypnotics|Accidental poisoning by other specified sedatives and hypnotics +C0261401|T037|AB|E852.9|ICD9CM|Acc poison-sedatives NOS|Acc poison-sedatives NOS +C0261401|T037|PT|E852.9|ICD9CM|Accidental poisoning by unspecified sedative or hypnotic|Accidental poisoning by unspecified sedative or hypnotic +C0261402|T037|HT|E853|ICD9CM|Accidental poisoning by tranquilizers|Accidental poisoning by tranquilizers +C0261403|T037|AB|E853.0|ICD9CM|Acc pois-phenthiaz tranq|Acc pois-phenthiaz tranq +C0261403|T037|PT|E853.0|ICD9CM|Accidental poisoning by phenothiazine-based tranquilizers|Accidental poisoning by phenothiazine-based tranquilizers +C0261404|T037|AB|E853.1|ICD9CM|Acc pois-butyrphen tranq|Acc pois-butyrphen tranq +C0261404|T037|PT|E853.1|ICD9CM|Accidental poisoning by butyrophenone-based tranquilizers|Accidental poisoning by butyrophenone-based tranquilizers +C0261405|T037|AB|E853.2|ICD9CM|Acc poisn-benzdiaz tranq|Acc poisn-benzdiaz tranq +C0261405|T037|PT|E853.2|ICD9CM|Accidental poisoning by benzodiazepine-based tranquilizers|Accidental poisoning by benzodiazepine-based tranquilizers +C0261406|T037|AB|E853.8|ICD9CM|Acc poisn-tranquilzr NEC|Acc poisn-tranquilzr NEC +C0261406|T037|PT|E853.8|ICD9CM|Accidental poisoning by other specified tranquilizers|Accidental poisoning by other specified tranquilizers +C0261407|T037|AB|E853.9|ICD9CM|Acc poisn-tranquilzr NOS|Acc poisn-tranquilzr NOS +C0261407|T037|PT|E853.9|ICD9CM|Accidental poisoning by unspecified tranquilizer|Accidental poisoning by unspecified tranquilizer +C0261408|T037|HT|E854|ICD9CM|Accidental poisoning by other psychotropic agents|Accidental poisoning by other psychotropic agents +C0261409|T037|AB|E854.0|ICD9CM|Acc poison-antidepressnt|Acc poison-antidepressnt +C0261409|T037|PT|E854.0|ICD9CM|Accidental poisoning by antidepressants|Accidental poisoning by antidepressants +C0480040|T037|AB|E854.1|ICD9CM|Acc poison-hallucinogens|Acc poison-hallucinogens +C0480040|T037|PT|E854.1|ICD9CM|Accidental poisoning by psychodysleptics [hallucinogens]|Accidental poisoning by psychodysleptics [hallucinogens] +C0261411|T037|AB|E854.2|ICD9CM|Acc poisn-psychstimulant|Acc poisn-psychstimulant +C0261411|T037|PT|E854.2|ICD9CM|Accidental poisoning by psychostimulants|Accidental poisoning by psychostimulants +C0261412|T037|AB|E854.3|ICD9CM|Acc poison-cns stimulant|Acc poison-cns stimulant +C0261412|T037|PT|E854.3|ICD9CM|Accidental poisoning by central nervous system stimulants|Accidental poisoning by central nervous system stimulants +C0261408|T037|AB|E854.8|ICD9CM|Acc poisn psychotrop NEC|Acc poisn psychotrop NEC +C0261408|T037|PT|E854.8|ICD9CM|Accidental poisoning by other psychotropic agents|Accidental poisoning by other psychotropic agents +C0261413|T037|HT|E855|ICD9CM|Accidental poisoning by other drugs acting on central and autonomic nervous system|Accidental poisoning by other drugs acting on central and autonomic nervous system +C0261414|T037|AB|E855.0|ICD9CM|Acc poisn-anticonvulsant|Acc poisn-anticonvulsant +C0261414|T037|PT|E855.0|ICD9CM|Accidental poisoning by anticonvulsant and anti-parkinsonism drugs|Accidental poisoning by anticonvulsant and anti-parkinsonism drugs +C0261415|T037|AB|E855.1|ICD9CM|Acc poisn-cns depres NEC|Acc poisn-cns depres NEC +C0261415|T037|PT|E855.1|ICD9CM|Accidental poisoning by other central nervous system depressants|Accidental poisoning by other central nervous system depressants +C0261416|T037|AB|E855.2|ICD9CM|Acc poisn-local anesthet|Acc poisn-local anesthet +C0261416|T037|PT|E855.2|ICD9CM|Accidental poisoning by local anesthetics|Accidental poisoning by local anesthetics +C0416665|T037|AB|E855.3|ICD9CM|Acc poison-cholinergics|Acc poison-cholinergics +C0416665|T037|PT|E855.3|ICD9CM|Accidental poisoning by parasympathomimetics [cholinergics]|Accidental poisoning by parasympathomimetics [cholinergics] +C0261418|T037|AB|E855.4|ICD9CM|Acc poisn-anticholinerg|Acc poisn-anticholinerg +C0261418|T037|PT|E855.4|ICD9CM|Accidental poisoning by parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics|Accidental poisoning by parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics +C0416674|T037|AB|E855.5|ICD9CM|Acc poison-adrenergics|Acc poison-adrenergics +C0416674|T037|PT|E855.5|ICD9CM|Accidental poisoning by sympathomimetics [adrenergics]|Accidental poisoning by sympathomimetics [adrenergics] +C0416678|T037|AB|E855.6|ICD9CM|Acc poisn-sympatholytics|Acc poisn-sympatholytics +C0416678|T037|PT|E855.6|ICD9CM|Accidental poisoning by sympatholytics [antiadrenergics]|Accidental poisoning by sympatholytics [antiadrenergics] +C0261421|T037|AB|E855.8|ICD9CM|Acc poison-cns drug NEC|Acc poison-cns drug NEC +C0261421|T037|PT|E855.8|ICD9CM|Accidental poisoning by other specified drugs acting on central and autonomic nervous systems|Accidental poisoning by other specified drugs acting on central and autonomic nervous systems +C0261422|T037|AB|E855.9|ICD9CM|Acc poison-cns drug NOS|Acc poison-cns drug NOS +C0261422|T037|PT|E855.9|ICD9CM|Accidental poisoning by unspecified drug acting on central and autonomic nervous systems|Accidental poisoning by unspecified drug acting on central and autonomic nervous systems +C0261423|T037|AB|E856|ICD9CM|Acc poison-antibiotics|Acc poison-antibiotics +C0261423|T037|PT|E856|ICD9CM|Accidental poisoning by antibiotics|Accidental poisoning by antibiotics +C0261424|T037|AB|E857|ICD9CM|Acc pois-oth anti-infect|Acc pois-oth anti-infect +C0261424|T037|PT|E857|ICD9CM|Accidental poisoning by other anti-infectives|Accidental poisoning by other anti-infectives +C0261425|T037|HT|E858|ICD9CM|Accidental poisoning by other drugs|Accidental poisoning by other drugs +C0261426|T037|AB|E858.0|ICD9CM|Acc poison-hormones|Acc poison-hormones +C0261426|T037|PT|E858.0|ICD9CM|Accidental poisoning by hormones and synthetic substitutes|Accidental poisoning by hormones and synthetic substitutes +C0261427|T037|AB|E858.1|ICD9CM|Acc poisn-systemic agent|Acc poisn-systemic agent +C0261427|T037|PT|E858.1|ICD9CM|Accidental poisoning by primarily systemic agents|Accidental poisoning by primarily systemic agents +C0261428|T037|AB|E858.2|ICD9CM|Acc poison-blood agent|Acc poison-blood agent +C0261428|T037|PT|E858.2|ICD9CM|Accidental poisoning by agents primarily affecting blood constituents|Accidental poisoning by agents primarily affecting blood constituents +C0261429|T037|AB|E858.3|ICD9CM|Acc poisn-cardiovasc agt|Acc poisn-cardiovasc agt +C0261429|T037|PT|E858.3|ICD9CM|Accidental poisoning by agents primarily affecting cardiovascular system|Accidental poisoning by agents primarily affecting cardiovascular system +C0261430|T037|AB|E858.4|ICD9CM|Acc poison-gi agent|Acc poison-gi agent +C0261430|T037|PT|E858.4|ICD9CM|Accidental poisoning by agents primarily affecting gastrointestinal system|Accidental poisoning by agents primarily affecting gastrointestinal system +C0261431|T037|AB|E858.5|ICD9CM|Acc poisn-metabol agnt|Acc poisn-metabol agnt +C0261431|T037|PT|E858.5|ICD9CM|Accidental poisoning by water, mineral, and uric acid metabolism drugs|Accidental poisoning by water, mineral, and uric acid metabolism drugs +C0261432|T037|AB|E858.6|ICD9CM|Acc poisn-muscl/resp agt|Acc poisn-muscl/resp agt +C1384500|T033|AB|E858.7|ICD9CM|Acc poisn-skin/eent agnt|Acc poisn-skin/eent agnt +C0261434|T037|AB|E858.8|ICD9CM|Acc poisoning-drug NEC|Acc poisoning-drug NEC +C0261434|T037|PT|E858.8|ICD9CM|Accidental poisoning by other specified drugs|Accidental poisoning by other specified drugs +C0261435|T037|AB|E858.9|ICD9CM|Acc poisoning-drug NOS|Acc poisoning-drug NOS +C0261435|T037|PT|E858.9|ICD9CM|Accidental poisoning by unspecified drug|Accidental poisoning by unspecified drug +C0868867|T037|HT|E860|ICD9CM|Accidental poisoning by alcohol, not elsewhere classified|Accidental poisoning by alcohol, not elsewhere classified +C0178353|T037|HT|E860-E869.9|ICD9CM|ACCIDENTAL POISONING BY OTHER SOLID AND LIQUID SUBSTANCES, GASES, AND VAPORS|ACCIDENTAL POISONING BY OTHER SOLID AND LIQUID SUBSTANCES, GASES, AND VAPORS +C0261437|T037|AB|E860.0|ICD9CM|Acc poisn-alcohol bevrag|Acc poisn-alcohol bevrag +C0261437|T037|PT|E860.0|ICD9CM|Accidental poisoning by alcoholic beverages|Accidental poisoning by alcoholic beverages +C0261438|T037|AB|E860.1|ICD9CM|Acc poison-ethyl alcohol|Acc poison-ethyl alcohol +C0261438|T037|PT|E860.1|ICD9CM|Accidental poisoning by other and unspecified ethyl alcohol and its products|Accidental poisoning by other and unspecified ethyl alcohol and its products +C0261439|T037|AB|E860.2|ICD9CM|Acc poisn-methyl alcohol|Acc poisn-methyl alcohol +C0261439|T037|PT|E860.2|ICD9CM|Accidental poisoning by methyl alcohol|Accidental poisoning by methyl alcohol +C0261440|T037|AB|E860.3|ICD9CM|Acc poisn-isopropyl alc|Acc poisn-isopropyl alc +C0261440|T037|PT|E860.3|ICD9CM|Accidental poisoning by isopropyl alcohol|Accidental poisoning by isopropyl alcohol +C0261441|T037|AB|E860.4|ICD9CM|Acc poison-fusel oil|Acc poison-fusel oil +C0261441|T037|PT|E860.4|ICD9CM|Accidental poisoning by fusel oil|Accidental poisoning by fusel oil +C0261442|T037|AB|E860.8|ICD9CM|Acc poison-alcohol NEC|Acc poison-alcohol NEC +C0261442|T037|PT|E860.8|ICD9CM|Accidental poisoning by other specified alcohols|Accidental poisoning by other specified alcohols +C0480073|T037|AB|E860.9|ICD9CM|Acc poison-alcohol NOS|Acc poison-alcohol NOS +C0480073|T037|PT|E860.9|ICD9CM|Accidental poisoning by unspecified alcohol|Accidental poisoning by unspecified alcohol +C0261444|T037|HT|E861|ICD9CM|Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes|Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes +C0261445|T037|AB|E861.0|ICD9CM|Acc pois-synth detergent|Acc pois-synth detergent +C0261445|T037|PT|E861.0|ICD9CM|Accidental poisoning by synthetic detergents and shampoos|Accidental poisoning by synthetic detergents and shampoos +C0261446|T037|AB|E861.1|ICD9CM|Acc poison-soap products|Acc poison-soap products +C0261446|T037|PT|E861.1|ICD9CM|Accidental poisoning by soap products|Accidental poisoning by soap products +C0261447|T037|AB|E861.2|ICD9CM|Acc poison-polishes|Acc poison-polishes +C0261447|T037|PT|E861.2|ICD9CM|Accidental poisoning by polishes|Accidental poisoning by polishes +C0416707|T037|AB|E861.3|ICD9CM|Acc poison-cleanser NEC|Acc poison-cleanser NEC +C0416707|T037|PT|E861.3|ICD9CM|Accidental poisoning by other cleansing and polishing agents|Accidental poisoning by other cleansing and polishing agents +C0261449|T037|AB|E861.4|ICD9CM|Acc poison-disinfectants|Acc poison-disinfectants +C0261449|T037|PT|E861.4|ICD9CM|Accidental poisoning by disinfectants|Accidental poisoning by disinfectants +C0261450|T037|AB|E861.5|ICD9CM|Acc poison-lead paints|Acc poison-lead paints +C0261450|T037|PT|E861.5|ICD9CM|Accidental poisoning by lead paints|Accidental poisoning by lead paints +C0261451|T037|AB|E861.6|ICD9CM|Acc poison-paints NEC|Acc poison-paints NEC +C0261451|T037|PT|E861.6|ICD9CM|Accidental poisoning by other paints and varnishes|Accidental poisoning by other paints and varnishes +C0261452|T037|AB|E861.9|ICD9CM|Acc poison-cleanser NOS|Acc poison-cleanser NOS +C0261454|T037|AB|E862.0|ICD9CM|Acc poisn-petrol solvent|Acc poisn-petrol solvent +C0261454|T037|PT|E862.0|ICD9CM|Accidental poisoning by petroleum solvents|Accidental poisoning by petroleum solvents +C0416882|T037|AB|E862.1|ICD9CM|Acc poisn-petroleum fuel|Acc poisn-petroleum fuel +C0416882|T037|PT|E862.1|ICD9CM|Accidental poisoning by petroleum fuels and cleaners|Accidental poisoning by petroleum fuels and cleaners +C0261456|T037|AB|E862.2|ICD9CM|Acc pois-lubricating oil|Acc pois-lubricating oil +C0261456|T037|PT|E862.2|ICD9CM|Accidental poisoning by lubricating oils|Accidental poisoning by lubricating oils +C0261457|T037|AB|E862.3|ICD9CM|Acc pois-petroleum solid|Acc pois-petroleum solid +C0261457|T037|PT|E862.3|ICD9CM|Accidental poisoning by petroleum solids|Accidental poisoning by petroleum solids +C0302441|T037|AB|E862.4|ICD9CM|Acc poisn-solvents NEC|Acc poisn-solvents NEC +C0302441|T037|PT|E862.4|ICD9CM|Accidental poisoning by other specified solvents, not elsewhere classified|Accidental poisoning by other specified solvents, not elsewhere classified +C0302442|T037|AB|E862.9|ICD9CM|Acc poisn-solvent NOS|Acc poisn-solvent NOS +C0302442|T037|PT|E862.9|ICD9CM|Accidental poisoning by unspecified solvent, not elsewhere classified|Accidental poisoning by unspecified solvent, not elsewhere classified +C0261461|T037|AB|E863.0|ICD9CM|Acc pois-chlorine pestic|Acc pois-chlorine pestic +C0261461|T037|PT|E863.0|ICD9CM|Accidental poisoning by insecticides of organochlorine compounds|Accidental poisoning by insecticides of organochlorine compounds +C0261462|T037|AB|E863.1|ICD9CM|Acc pois-phosph pesticid|Acc pois-phosph pesticid +C0261462|T037|PT|E863.1|ICD9CM|Accidental poisoning by insecticides of organophosphorus compounds|Accidental poisoning by insecticides of organophosphorus compounds +C0261463|T037|AB|E863.2|ICD9CM|Acc poison-carbamates|Acc poison-carbamates +C0261463|T037|PT|E863.2|ICD9CM|Accidental poisoning by carbamates|Accidental poisoning by carbamates +C0261464|T037|AB|E863.3|ICD9CM|Acc poisn-mixed pesticid|Acc poisn-mixed pesticid +C0261464|T037|PT|E863.3|ICD9CM|Accidental poisoning by mixtures of insecticides|Accidental poisoning by mixtures of insecticides +C0261465|T037|AB|E863.4|ICD9CM|Acc poison-pesticide NEC|Acc poison-pesticide NEC +C0261465|T037|PT|E863.4|ICD9CM|Accidental poisoning by other and unspecified insecticides|Accidental poisoning by other and unspecified insecticides +C0261466|T037|AB|E863.5|ICD9CM|Acc poison-herbicides|Acc poison-herbicides +C0261466|T037|PT|E863.5|ICD9CM|Accidental poisoning by herbicides|Accidental poisoning by herbicides +C0261467|T037|AB|E863.6|ICD9CM|Acc poison-fungicides|Acc poison-fungicides +C0261467|T037|PT|E863.6|ICD9CM|Accidental poisoning by fungicides|Accidental poisoning by fungicides +C0261468|T037|AB|E863.7|ICD9CM|Acc poison-rodenticides|Acc poison-rodenticides +C0261468|T037|PT|E863.7|ICD9CM|Accidental poisoning by rodenticides|Accidental poisoning by rodenticides +C0261469|T037|AB|E863.8|ICD9CM|Acc poison-fumigants|Acc poison-fumigants +C0261469|T037|PT|E863.8|ICD9CM|Accidental poisoning by fumigants|Accidental poisoning by fumigants +C0261470|T037|AB|E863.9|ICD9CM|Acc pois-agrcult NEC/NOS|Acc pois-agrcult NEC/NOS +C0869267|T037|HT|E864|ICD9CM|Accidental poisoning by corrosives and caustics, not elsewhere classified|Accidental poisoning by corrosives and caustics, not elsewhere classified +C0302444|T037|AB|E864.0|ICD9CM|Acc pois-corrosiv aromat|Acc pois-corrosiv aromat +C0302444|T037|PT|E864.0|ICD9CM|Accidental poisoning by corrosive aromatics not elsewhere classified|Accidental poisoning by corrosive aromatics not elsewhere classified +C0302445|T037|AB|E864.1|ICD9CM|Acc poison-acids|Acc poison-acids +C0302445|T037|PT|E864.1|ICD9CM|Accidental poisoning by acids not elsewhere classified|Accidental poisoning by acids not elsewhere classified +C0302446|T037|AB|E864.2|ICD9CM|Acc poisn-caustic alkali|Acc poisn-caustic alkali +C0302446|T037|PT|E864.2|ICD9CM|Accidental poisoning by caustic alkalis not elsewhere classified|Accidental poisoning by caustic alkalis not elsewhere classified +C0302447|T037|AB|E864.3|ICD9CM|Acc poison-caustic NEC|Acc poison-caustic NEC +C0302447|T037|PT|E864.3|ICD9CM|Accidental poisoning by other specified corrosives and caustics not elsewhere classified|Accidental poisoning by other specified corrosives and caustics not elsewhere classified +C0302448|T037|AB|E864.4|ICD9CM|Acc poison-caustic NOS|Acc poison-caustic NOS +C0302448|T037|PT|E864.4|ICD9CM|Accidental poisoning by unspecified corrosives and caustics not elsewhere classified|Accidental poisoning by unspecified corrosives and caustics not elsewhere classified +C0375733|T037|HT|E865|ICD9CM|Accidental poisoning from poisonous foodstuffs and poisonous plants|Accidental poisoning from poisonous foodstuffs and poisonous plants +C0416786|T037|AB|E865.0|ICD9CM|Acc poison-meat|Acc poison-meat +C0416786|T037|PT|E865.0|ICD9CM|Accidental poisoning by meat|Accidental poisoning by meat +C0261479|T037|AB|E865.1|ICD9CM|Acc poison-shellfish|Acc poison-shellfish +C0261479|T037|PT|E865.1|ICD9CM|Accidental poisoning by shellfish|Accidental poisoning by shellfish +C0000923|T037|AB|E865.2|ICD9CM|Acc poison-fish NEC|Acc poison-fish NEC +C0000923|T037|PT|E865.2|ICD9CM|Accidental poisoning from other fish|Accidental poisoning from other fish +C1535481|T037|AB|E865.3|ICD9CM|Acc poison-berries/seeds|Acc poison-berries/seeds +C1535481|T037|PT|E865.3|ICD9CM|Accidental poisoning from berries and seeds|Accidental poisoning from berries and seeds +C0261481|T037|AB|E865.4|ICD9CM|Acc poison-plants NEC|Acc poison-plants NEC +C0261481|T037|PT|E865.4|ICD9CM|Accidental poisoning from other specified plants|Accidental poisoning from other specified plants +C0261482|T037|AB|E865.5|ICD9CM|Acc poison-mushrooms|Acc poison-mushrooms +C0261482|T037|PT|E865.5|ICD9CM|Accidental poisoning from mushrooms and other fungi|Accidental poisoning from mushrooms and other fungi +C0261483|T037|AB|E865.8|ICD9CM|Acc poison-food NEC|Acc poison-food NEC +C0261483|T037|PT|E865.8|ICD9CM|Accidental poisoning from other specified foods|Accidental poisoning from other specified foods +C0261484|T037|AB|E865.9|ICD9CM|Acc poisn-food/plant NOS|Acc poisn-food/plant NOS +C0261484|T037|PT|E865.9|ICD9CM|Accidental poisoning from unspecified foodstuff or poisonous plant|Accidental poisoning from unspecified foodstuff or poisonous plant +C0261485|T037|HT|E866|ICD9CM|Accidental poisoning by other and unspecified solid and liquid substances|Accidental poisoning by other and unspecified solid and liquid substances +C0261486|T037|AB|E866.0|ICD9CM|Acc poisoning-lead|Acc poisoning-lead +C0261486|T037|PT|E866.0|ICD9CM|Accidental poisoning by lead and its compounds and fumes|Accidental poisoning by lead and its compounds and fumes +C0261487|T037|AB|E866.1|ICD9CM|Acc poisoning-mercury|Acc poisoning-mercury +C0261487|T037|PT|E866.1|ICD9CM|Accidental poisoning by mercury and its compounds and fumes|Accidental poisoning by mercury and its compounds and fumes +C0261488|T037|AB|E866.2|ICD9CM|Acc poisoning-antimony|Acc poisoning-antimony +C0261488|T037|PT|E866.2|ICD9CM|Accidental poisoning by antimony and its compounds and fumes|Accidental poisoning by antimony and its compounds and fumes +C0261489|T037|AB|E866.3|ICD9CM|Acc poisoning-arsenic|Acc poisoning-arsenic +C0261489|T037|PT|E866.3|ICD9CM|Accidental poisoning by arsenic and its compounds and fumes|Accidental poisoning by arsenic and its compounds and fumes +C0261490|T037|AB|E866.4|ICD9CM|Acc poison-metals NEC|Acc poison-metals NEC +C0261490|T037|PT|E866.4|ICD9CM|Accidental poisoning by other metals and their compounds and fumes|Accidental poisoning by other metals and their compounds and fumes +C0261491|T037|AB|E866.5|ICD9CM|Acc poison-plant food|Acc poison-plant food +C0261491|T037|PT|E866.5|ICD9CM|Accidental poisoning by plant foods and fertilizers|Accidental poisoning by plant foods and fertilizers +C0261492|T037|AB|E866.6|ICD9CM|Acc poison-glues|Acc poison-glues +C0261492|T037|PT|E866.6|ICD9CM|Accidental poisoning by glues and adhesives|Accidental poisoning by glues and adhesives +C0261493|T037|AB|E866.7|ICD9CM|Acc poison-cosmetics|Acc poison-cosmetics +C0261493|T037|PT|E866.7|ICD9CM|Accidental poisoning by cosmetics|Accidental poisoning by cosmetics +C0261494|T037|AB|E866.8|ICD9CM|Acc pois-solid/liq NEC|Acc pois-solid/liq NEC +C0261494|T037|PT|E866.8|ICD9CM|Accidental poisoning by other specified solid or liquid substances|Accidental poisoning by other specified solid or liquid substances +C0261495|T037|AB|E866.9|ICD9CM|Acc pois-solid/liq NOS|Acc pois-solid/liq NOS +C0261495|T037|PT|E866.9|ICD9CM|Accidental poisoning by unspecified solid or liquid substance|Accidental poisoning by unspecified solid or liquid substance +C0261496|T037|AB|E867|ICD9CM|Acc poison-piped gas|Acc poison-piped gas +C0261496|T037|PT|E867|ICD9CM|Accidental poisoning by gas distributed by pipeline|Accidental poisoning by gas distributed by pipeline +C0261497|T037|HT|E868|ICD9CM|Accidental poisoning by other utility gas and other carbon monoxide|Accidental poisoning by other utility gas and other carbon monoxide +C0261498|T037|AB|E868.0|ICD9CM|Acc pois-liq petrol gas|Acc pois-liq petrol gas +C0261498|T037|PT|E868.0|ICD9CM|Accidental poisoning by liquefied petroleum gas distributed in mobile containers|Accidental poisoning by liquefied petroleum gas distributed in mobile containers +C0261499|T037|AB|E868.1|ICD9CM|Acc pois-utl gas NEC/NOS|Acc pois-utl gas NEC/NOS +C0261499|T037|PT|E868.1|ICD9CM|Accidental poisoning by other and unspecified utility gas|Accidental poisoning by other and unspecified utility gas +C0261500|T037|AB|E868.2|ICD9CM|Acc poison-exhaust gas|Acc poison-exhaust gas +C0261500|T037|PT|E868.2|ICD9CM|Accidental poisoning by motor vehicle exhaust gas|Accidental poisoning by motor vehicle exhaust gas +C0261501|T037|AB|E868.3|ICD9CM|Acc pois-co/domestc fuel|Acc pois-co/domestc fuel +C0261501|T037|PT|E868.3|ICD9CM|Accidental poisoning by carbon monoxide from incomplete combustion of other domestic fuels|Accidental poisoning by carbon monoxide from incomplete combustion of other domestic fuels +C0261502|T037|AB|E868.8|ICD9CM|Acc pois-carbn monox NEC|Acc pois-carbn monox NEC +C0261502|T037|PT|E868.8|ICD9CM|Accidental poisoning by carbon monoxide from other sources|Accidental poisoning by carbon monoxide from other sources +C0261503|T037|AB|E868.9|ICD9CM|Acc pois-carbn monox NOS|Acc pois-carbn monox NOS +C0261503|T037|PT|E868.9|ICD9CM|Accidental poisoning by unspecified carbon monoxide|Accidental poisoning by unspecified carbon monoxide +C0261504|T037|HT|E869|ICD9CM|Accidental poisoning by other gases and vapors|Accidental poisoning by other gases and vapors +C0261505|T037|AB|E869.0|ICD9CM|Acc poisn-nitrogen oxide|Acc poisn-nitrogen oxide +C0261505|T037|PT|E869.0|ICD9CM|Accidental poisoning by nitrogen oxides|Accidental poisoning by nitrogen oxides +C0261506|T037|AB|E869.1|ICD9CM|Acc poisn-sulfur dioxide|Acc poisn-sulfur dioxide +C0261506|T037|PT|E869.1|ICD9CM|Accidental poisoning by sulfur dioxide|Accidental poisoning by sulfur dioxide +C0261507|T037|AB|E869.2|ICD9CM|Acc poison-freon|Acc poison-freon +C0261507|T037|PT|E869.2|ICD9CM|Accidental poisoning by freon|Accidental poisoning by freon +C0416973|T037|AB|E869.3|ICD9CM|Acc poison-tear gas|Acc poison-tear gas +C0416973|T037|PT|E869.3|ICD9CM|Accidental poisoning by lacrimogenic gas [tear gas]|Accidental poisoning by lacrimogenic gas [tear gas] +C0375734|T037|AB|E869.4|ICD9CM|Scndhnd tbcco smoke|Scndhnd tbcco smoke +C0375734|T037|PT|E869.4|ICD9CM|Second hand tobacco smoke|Second hand tobacco smoke +C0261509|T037|AB|E869.8|ICD9CM|Acc poison-gas/vapor NEC|Acc poison-gas/vapor NEC +C0261509|T037|PT|E869.8|ICD9CM|Accidental poisoning by other specified gases and vapors|Accidental poisoning by other specified gases and vapors +C0261510|T037|AB|E869.9|ICD9CM|Acc poison-gas/vapor NOS|Acc poison-gas/vapor NOS +C0261510|T037|PT|E869.9|ICD9CM|Accidental poisoning by unspecified gases and vapors|Accidental poisoning by unspecified gases and vapors +C0261513|T037|HT|E870|ICD9CM|Accidental cut, puncture, perforation, or hemorrhage during medical care|Accidental cut, puncture, perforation, or hemorrhage during medical care +C0481263|T037|HT|E870-E876.9|ICD9CM|MISADVENTURES TO PATIENTS DURING SURGICAL AND MEDICAL CARE|MISADVENTURES TO PATIENTS DURING SURGICAL AND MEDICAL CARE +C0481222|T037|AB|E870.0|ICD9CM|Acc cut/hem in surgery|Acc cut/hem in surgery +C0481222|T037|PT|E870.0|ICD9CM|Accidental cut, puncture, perforation or hemorrhage during surgical operation|Accidental cut, puncture, perforation or hemorrhage during surgical operation +C2939422|T037|AB|E870.1|ICD9CM|Acc cut/hem in infusion|Acc cut/hem in infusion +C2939422|T037|PT|E870.1|ICD9CM|Accidental cut, puncture, perforation or hemorrhage during infusion or transfusion|Accidental cut, puncture, perforation or hemorrhage during infusion or transfusion +C0261514|T037|AB|E870.2|ICD9CM|Acc cut/hem-perfusn NEC|Acc cut/hem-perfusn NEC +C0261514|T037|PT|E870.2|ICD9CM|Accidental cut, puncture, perforation or hemorrhage during kidney dialysis or other perfusion|Accidental cut, puncture, perforation or hemorrhage during kidney dialysis or other perfusion +C0261515|T037|AB|E870.3|ICD9CM|Acc cut/hem in injection|Acc cut/hem in injection +C0261515|T037|PT|E870.3|ICD9CM|Accidental cut, puncture, perforation or hemorrhage during injection or vaccination|Accidental cut, puncture, perforation or hemorrhage during injection or vaccination +C0261516|T037|AB|E870.4|ICD9CM|Acc cut/hem w scope exam|Acc cut/hem w scope exam +C0261516|T037|PT|E870.4|ICD9CM|Accidental cut, puncture, perforation or hemorrhage during endoscopic examination|Accidental cut, puncture, perforation or hemorrhage during endoscopic examination +C0261517|T037|AB|E870.5|ICD9CM|Acc cut/hem w catheteriz|Acc cut/hem w catheteriz +C0261518|T037|AB|E870.6|ICD9CM|Acc cut/hem w heart cath|Acc cut/hem w heart cath +C0261518|T037|PT|E870.6|ICD9CM|Accidental cut, puncture, perforation or hemorrhage during heart catheterization|Accidental cut, puncture, perforation or hemorrhage during heart catheterization +C0261519|T037|AB|E870.7|ICD9CM|Acc cut/hem w enema|Acc cut/hem w enema +C0261519|T037|PT|E870.7|ICD9CM|Accidental cut, puncture, perforation or hemorrhage during administration of enema|Accidental cut, puncture, perforation or hemorrhage during administration of enema +C0261520|T037|AB|E870.8|ICD9CM|Acc cut in med care NEC|Acc cut in med care NEC +C0261520|T037|PT|E870.8|ICD9CM|Accidental cut, puncture, perforation or hemorrhage during other specified medical care|Accidental cut, puncture, perforation or hemorrhage during other specified medical care +C0261513|T037|AB|E870.9|ICD9CM|Acc cut in med care NOS|Acc cut in med care NOS +C0261513|T037|PT|E870.9|ICD9CM|Accidental cut, puncture, perforation or hemorrhage during unspecified medical care|Accidental cut, puncture, perforation or hemorrhage during unspecified medical care +C0261522|T037|HT|E871|ICD9CM|Foreign object left in body during procedure|Foreign object left in body during procedure +C0702090|T037|PT|E871.0|ICD9CM|Foreign object left in body during surgical operation|Foreign object left in body during surgical operation +C0702090|T037|AB|E871.0|ICD9CM|Post-surgical forgn body|Post-surgical forgn body +C0481232|T037|PT|E871.1|ICD9CM|Foreign object left in body during infusion or transfusion|Foreign object left in body during infusion or transfusion +C0481232|T037|AB|E871.1|ICD9CM|Postinfusion foreign bdy|Postinfusion foreign bdy +C0481233|T037|PT|E871.2|ICD9CM|Foreign object left in body during kidney dialysis or other perfusion|Foreign object left in body during kidney dialysis or other perfusion +C0481233|T037|AB|E871.2|ICD9CM|Postperfusion forgn body|Postperfusion forgn body +C0481234|T037|PT|E871.3|ICD9CM|Foreign object left in body during injection or vaccination|Foreign object left in body during injection or vaccination +C0481234|T037|AB|E871.3|ICD9CM|Postinjection forgn body|Postinjection forgn body +C0481235|T037|PT|E871.4|ICD9CM|Foreign object left in body during endoscopic examination|Foreign object left in body during endoscopic examination +C0481235|T037|AB|E871.4|ICD9CM|Postendoscopy forgn body|Postendoscopy forgn body +C0481237|T037|PT|E871.5|ICD9CM|Foreign object left in body during aspiration of fluid or tissue, puncture, and catheterization|Foreign object left in body during aspiration of fluid or tissue, puncture, and catheterization +C0481237|T037|AB|E871.5|ICD9CM|Postcatheter forgn body|Postcatheter forgn body +C0481236|T037|AB|E871.6|ICD9CM|FB post heart catheter|FB post heart catheter +C0481236|T037|PT|E871.6|ICD9CM|Foreign object left in body during heart catheterization|Foreign object left in body during heart catheterization +C0496530|T037|AB|E871.7|ICD9CM|FB post-catheter removal|FB post-catheter removal +C0496530|T037|PT|E871.7|ICD9CM|Foreign object left in body during removal of catheter or packing|Foreign object left in body during removal of catheter or packing +C0261531|T037|PT|E871.8|ICD9CM|Foreign object left in body during other specified procedures|Foreign object left in body during other specified procedures +C0261531|T037|AB|E871.8|ICD9CM|Post-op foreign body NEC|Post-op foreign body NEC +C0261532|T037|PT|E871.9|ICD9CM|Foreign object left in body during unspecified procedure|Foreign object left in body during unspecified procedure +C0261532|T037|AB|E871.9|ICD9CM|Post-op foreign body NOS|Post-op foreign body NOS +C0261533|T037|HT|E872|ICD9CM|Failure of sterile precautions during procedure|Failure of sterile precautions during procedure +C0261533|T037|PT|E872.0|ICD9CM|Failure of sterile precautions during surgical operation|Failure of sterile precautions during surgical operation +C0261533|T037|AB|E872.0|ICD9CM|Failure sterile surgery|Failure sterile surgery +C0497080|T037|PT|E872.1|ICD9CM|Failure of sterile precautions during infusion or transfusion|Failure of sterile precautions during infusion or transfusion +C0497080|T037|AB|E872.1|ICD9CM|Failure sterile infusion|Failure sterile infusion +C0261536|T037|AB|E872.2|ICD9CM|Fail sterile perfusn NEC|Fail sterile perfusn NEC +C0261536|T037|PT|E872.2|ICD9CM|Failure of sterile precautions during kidney dialysis and other perfusion|Failure of sterile precautions during kidney dialysis and other perfusion +C0497081|T037|AB|E872.3|ICD9CM|Fail sterile injection|Fail sterile injection +C0497081|T037|PT|E872.3|ICD9CM|Failure of sterile precautions during injection or vaccination|Failure of sterile precautions during injection or vaccination +C0497082|T037|AB|E872.4|ICD9CM|Fail sterile endoscopy|Fail sterile endoscopy +C0497082|T037|PT|E872.4|ICD9CM|Failure of sterile precautions during endoscopic examination|Failure of sterile precautions during endoscopic examination +C0261539|T037|AB|E872.5|ICD9CM|Fail sterile catheter|Fail sterile catheter +C0261539|T037|PT|E872.5|ICD9CM|Failure of sterile precautions during aspiration of fluid or tissue, puncture, and catheterization|Failure of sterile precautions during aspiration of fluid or tissue, puncture, and catheterization +C0497083|T037|AB|E872.6|ICD9CM|Fail sterile heart cath|Fail sterile heart cath +C0497083|T037|PT|E872.6|ICD9CM|Failure of sterile precautions during heart catheterization|Failure of sterile precautions during heart catheterization +C0261541|T033|AB|E872.8|ICD9CM|Fail sterile proced NEC|Fail sterile proced NEC +C0261541|T033|PT|E872.8|ICD9CM|Failure of sterile precautions during other specified procedures|Failure of sterile precautions during other specified procedures +C0261542|T033|AB|E872.9|ICD9CM|Fail sterile proced NOS|Fail sterile proced NOS +C0261542|T033|PT|E872.9|ICD9CM|Failure of sterile precautions during unspecified procedure|Failure of sterile precautions during unspecified procedure +C0261543|T033|HT|E873|ICD9CM|Failure in dosage|Failure in dosage +C0481246|T037|AB|E873.0|ICD9CM|Excess fluid in infusion|Excess fluid in infusion +C0481246|T037|PT|E873.0|ICD9CM|Excessive amount of blood or other fluid during transfusion or infusion|Excessive amount of blood or other fluid during transfusion or infusion +C0481247|T037|AB|E873.1|ICD9CM|Incor dilut infusn fluid|Incor dilut infusn fluid +C0481247|T037|PT|E873.1|ICD9CM|Incorrect dilution of fluid during infusion|Incorrect dilution of fluid during infusion +C0481248|T037|PT|E873.2|ICD9CM|Overdose of radiation in therapy|Overdose of radiation in therapy +C0481248|T037|AB|E873.2|ICD9CM|Therap radiation overdos|Therap radiation overdos +C0261547|T037|AB|E873.3|ICD9CM|Inadv radiat exp-medical|Inadv radiat exp-medical +C0261547|T037|PT|E873.3|ICD9CM|Inadvertent exposure of patient to radiation during medical care|Inadvertent exposure of patient to radiation during medical care +C0261548|T037|AB|E873.4|ICD9CM|Dosag fail-shock therapy|Dosag fail-shock therapy +C0261548|T037|PT|E873.4|ICD9CM|Failure in dosage in electroshock or insulin-shock therapy|Failure in dosage in electroshock or insulin-shock therapy +C0418626|T037|PT|E873.5|ICD9CM|Inappropriate [too hot or too cold] temperature in local application and packing|Inappropriate [too hot or too cold] temperature in local application and packing +C0418626|T037|AB|E873.5|ICD9CM|Wrng temp in applic/pack|Wrng temp in applic/pack +C0418624|T033|AB|E873.6|ICD9CM|Nonadmin necess medicine|Nonadmin necess medicine +C0418624|T033|PT|E873.6|ICD9CM|Nonadministration of necessary drug or medicinal substance|Nonadministration of necessary drug or medicinal substance +C0261551|T033|AB|E873.8|ICD9CM|Failure in dosage NEC|Failure in dosage NEC +C0261551|T033|PT|E873.8|ICD9CM|Other specified failure in dosage|Other specified failure in dosage +C0261543|T033|AB|E873.9|ICD9CM|Failure in dosage NOS|Failure in dosage NOS +C0261543|T033|PT|E873.9|ICD9CM|Unspecified failure in dosage|Unspecified failure in dosage +C0261553|T037|HT|E874|ICD9CM|Mechanical failure of instrument or apparatus during procedure|Mechanical failure of instrument or apparatus during procedure +C0261554|T037|AB|E874.0|ICD9CM|Instrmnt fail in surgery|Instrmnt fail in surgery +C0261554|T037|PT|E874.0|ICD9CM|Mechanical failure of instrument or apparatus during surgical operation|Mechanical failure of instrument or apparatus during surgical operation +C0261557|T037|AB|E874.3|ICD9CM|Instrumnt fail-endoscopy|Instrumnt fail-endoscopy +C0261557|T037|PT|E874.3|ICD9CM|Mechanical failure of instrument or apparatus during endoscopic examination|Mechanical failure of instrument or apparatus during endoscopic examination +C0261558|T037|AB|E874.4|ICD9CM|Instrmnt fail-catheteriz|Instrmnt fail-catheteriz +C0261559|T037|AB|E874.5|ICD9CM|Instrmnt fail-heart cath|Instrmnt fail-heart cath +C0261559|T037|PT|E874.5|ICD9CM|Mechanical failure of instrument or apparatus during heart catheterization|Mechanical failure of instrument or apparatus during heart catheterization +C0481253|T037|PT|E875.0|ICD9CM|Contaminated substance transfused or infused|Contaminated substance transfused or infused +C0481253|T037|AB|E875.0|ICD9CM|Contaminated transfusion|Contaminated transfusion +C0481254|T037|AB|E875.1|ICD9CM|Contaminated injection|Contaminated injection +C0481254|T037|PT|E875.1|ICD9CM|Contaminated substance injected or used for vaccination|Contaminated substance injected or used for vaccination +C0261567|T037|AB|E875.9|ICD9CM|Contamination NOS|Contamination NOS +C0261567|T037|PT|E875.9|ICD9CM|Misadventure to patient from unspecified contamination|Misadventure to patient from unspecified contamination +C0161841|T037|AB|E876.0|ICD9CM|Mismatch blood-transfusn|Mismatch blood-transfusn +C0161841|T037|PT|E876.0|ICD9CM|Mismatched blood in transfusion|Mismatched blood in transfusion +C0261570|T033|AB|E876.1|ICD9CM|Wrong fluid in infusion|Wrong fluid in infusion +C0261570|T033|PT|E876.1|ICD9CM|Wrong fluid in infusion|Wrong fluid in infusion +C0481259|T037|AB|E876.2|ICD9CM|Failure in suture|Failure in suture +C0481259|T037|PT|E876.2|ICD9CM|Failure in suture and ligature during surgical operation|Failure in suture and ligature during surgical operation +C0261572|T037|PT|E876.3|ICD9CM|Endotracheal tube wrongly placed during anesthetic procedure|Endotracheal tube wrongly placed during anesthetic procedure +C0261572|T037|AB|E876.3|ICD9CM|Misplaced endotrach tube|Misplaced endotrach tube +C0261573|T037|AB|E876.4|ICD9CM|Fail introd/remove tube|Fail introd/remove tube +C0261573|T037|PT|E876.4|ICD9CM|Failure to introduce or to remove other tube or instrument|Failure to introduce or to remove other tube or instrument +C2712478|T037|PT|E876.5|ICD9CM|Performance of wrong operation (procedure) on correct patient|Performance of wrong operation (procedure) on correct patient +C2712478|T037|AB|E876.5|ICD9CM|Perfrm wrong op/right pt|Perfrm wrong op/right pt +C2712479|T037|PT|E876.6|ICD9CM|Performance of operation (procedure) on patient not scheduled for surgery|Performance of operation (procedure) on patient not scheduled for surgery +C2712479|T037|AB|E876.6|ICD9CM|Proc-pt not sched surg|Proc-pt not sched surg +C2712480|T037|PT|E876.7|ICD9CM|Performance of correct operation (procedure) on wrong side/body part|Performance of correct operation (procedure) on wrong side/body part +C2712480|T037|AB|E876.7|ICD9CM|Rt proc-wrong side/part|Rt proc-wrong side/part +C0418593|T037|AB|E876.9|ICD9CM|Medical misadventure NOS|Medical misadventure NOS +C0418593|T037|PT|E876.9|ICD9CM|Unspecified misadventure during medical care|Unspecified misadventure during medical care +C0496542|T037|AB|E878.3|ICD9CM|Abn react-external stoma|Abn react-external stoma +C0418696|T037|AB|E878.4|ICD9CM|Abn react-plast surg NEC|Abn react-plast surg NEC +C0418697|T046|AB|E878.5|ICD9CM|Abn react-limb amputat|Abn react-limb amputat +C0261586|T037|AB|E878.9|ICD9CM|Abn react-surg proc NOS|Abn react-surg proc NOS +C0261588|T037|AB|E879.0|ICD9CM|Abn react-cardiac cath|Abn react-cardiac cath +C0261589|T037|AB|E879.1|ICD9CM|Abn react-renal dialysis|Abn react-renal dialysis +C0261590|T037|AB|E879.2|ICD9CM|Abn react-radiotherapy|Abn react-radiotherapy +C0261591|T037|AB|E879.3|ICD9CM|Abn react-shock therapy|Abn react-shock therapy +C0261592|T037|AB|E879.4|ICD9CM|Abn react-fluid aspirat|Abn react-fluid aspirat +C0481350|T037|AB|E879.5|ICD9CM|Abn react-gastric sound|Abn react-gastric sound +C0261594|T037|AB|E879.6|ICD9CM|Abn react-urinary cath|Abn react-urinary cath +C0261595|T037|AB|E879.7|ICD9CM|Abn react-blood sampling|Abn react-blood sampling +C0261596|T037|AB|E879.8|ICD9CM|Abn react-procedure NEC|Abn react-procedure NEC +C0261597|T037|AB|E879.9|ICD9CM|Abn react-procedure NOS|Abn react-procedure NOS +C0000921|T037|HT|E880-E888.9|ICD9CM|ACCIDENTAL FALLS|ACCIDENTAL FALLS +C0337212|T033|PT|E881.0|ICD9CM|Accidental fall from ladder|Accidental fall from ladder +C0337212|T033|AB|E881.0|ICD9CM|Fall from ladder|Fall from ladder +C0478874|T037|HT|E884|ICD9CM|Other accidental falls from one level to another|Other accidental falls from one level to another +C0337231|T037|PT|E884.3|ICD9CM|Accidental fall from wheelchair|Accidental fall from wheelchair +C0337231|T037|AB|E884.3|ICD9CM|Fall from wheelchair|Fall from wheelchair +C0337228|T037|PT|E884.4|ICD9CM|Accidental fall from bed|Accidental fall from bed +C0337228|T037|AB|E884.4|ICD9CM|Fall from bed|Fall from bed +C0375736|T037|PT|E884.5|ICD9CM|Accidental fall from other furniture|Accidental fall from other furniture +C0375736|T037|AB|E884.5|ICD9CM|Fall from furniture NEC|Fall from furniture NEC +C0478874|T037|AB|E884.9|ICD9CM|Fall-1 level to oth NEC|Fall-1 level to oth NEC +C0478874|T037|PT|E884.9|ICD9CM|Other accidental fall from one level to another|Other accidental fall from one level to another +C1135313|T037|PT|E885.0|ICD9CM|Fall from (nonmotorized) scooter|Fall from (nonmotorized) scooter +C1135313|T037|AB|E885.0|ICD9CM|Fall-nonmotor scooter|Fall-nonmotor scooter +C0878747|T037|AB|E885.2|ICD9CM|Fall from skateboard|Fall from skateboard +C0878747|T037|PT|E885.2|ICD9CM|Fall from skateboard|Fall from skateboard +C0878749|T037|AB|E885.4|ICD9CM|Fall from snowboard|Fall from snowboard +C0878749|T037|PT|E885.4|ICD9CM|Fall from snowboard|Fall from snowboard +C0261618|T037|AB|E886.9|ICD9CM|Fall on level NEC/NOS|Fall on level NEC/NOS +C0016658|T037|AB|E887|ICD9CM|Fracture, cause NOS|Fracture, cause NOS +C0016658|T037|PT|E887|ICD9CM|Fracture, cause unspecified|Fracture, cause unspecified +C0949159|T033|PT|E888.0|ICD9CM|Fall resulting in striking against sharp object|Fall resulting in striking against sharp object +C0949159|T033|AB|E888.0|ICD9CM|Fall striking sharp obj|Fall striking sharp obj +C0949160|T033|PT|E888.1|ICD9CM|Fall resulting in striking against other object|Fall resulting in striking against other object +C0949160|T033|AB|E888.1|ICD9CM|Fall striking object NEC|Fall striking object NEC +C0416980|T037|AB|E888.8|ICD9CM|Fall NEC|Fall NEC +C0416980|T037|PT|E888.8|ICD9CM|Other fall|Other fall +C0085639|T033|AB|E888.9|ICD9CM|Fall NOS|Fall NOS +C0085639|T033|PT|E888.9|ICD9CM|Unspecified fall|Unspecified fall +C0261620|T037|HT|E890|ICD9CM|Conflagration in private dwelling|Conflagration in private dwelling +C0417090|T037|AB|E891.8|ICD9CM|Fire in bldg-accid NEC|Fire in bldg-accid NEC +C0417090|T037|PT|E891.8|ICD9CM|Other accident resulting from conflagration in other and unspecified building or structure|Other accident resulting from conflagration in other and unspecified building or structure +C0417413|T037|PT|E893.9|ICD9CM|Accident caused by ignition of clothing by unspecified source|Accident caused by ignition of clothing by unspecified source +C0417413|T037|AB|E893.9|ICD9CM|Clothing fire NOS|Clothing fire NOS +C0261642|T037|PT|E895|ICD9CM|Accident caused by controlled fire in private dwelling|Accident caused by controlled fire in private dwelling +C0261642|T037|AB|E895|ICD9CM|Burn acc in privat dwell|Burn acc in privat dwell +C0417496|T037|PT|E898.0|ICD9CM|Accident caused by burning bedclothes|Accident caused by burning bedclothes +C0417496|T037|AB|E898.0|ICD9CM|Burning bedclothes|Burning bedclothes +C0261648|T037|HT|E900|ICD9CM|Accident caused by excessive heat|Accident caused by excessive heat +C0178357|T037|HT|E900-E909.9|ICD9CM|ACCIDENTS DUE TO NATURAL AND ENVIRONMENTAL FACTORS|ACCIDENTS DUE TO NATURAL AND ENVIRONMENTAL FACTORS +C0000909|T037|PT|E900.0|ICD9CM|Accident caused by excessive heat due to weather conditions|Accident caused by excessive heat due to weather conditions +C0000909|T037|AB|E900.0|ICD9CM|Excessive heat: weather|Excessive heat: weather +C0000926|T037|PT|E900.9|ICD9CM|Accidents due to excessive heat of unspecified origin|Accidents due to excessive heat of unspecified origin +C0000926|T037|AB|E900.9|ICD9CM|Excessive heat NOS|Excessive heat NOS +C0261650|T037|HT|E901|ICD9CM|Accidents due to excessive cold|Accidents due to excessive cold +C0161734|T037|PT|E901.9|ICD9CM|Accident due to excessive cold of unspecified origin|Accident due to excessive cold of unspecified origin +C0161734|T037|AB|E901.9|ICD9CM|Excessive cold NOS|Excessive cold NOS +C0000916|T037|PT|E902.0|ICD9CM|Accident due to residence or prolonged visit at high altitude|Accident due to residence or prolonged visit at high altitude +C0000916|T037|AB|E902.0|ICD9CM|High altitude residence|High altitude residence +C0000914|T037|PT|E902.2|ICD9CM|Accident due to changes in air pressure due to diving|Accident due to changes in air pressure due to diving +C0000914|T037|AB|E902.2|ICD9CM|Air press change: diving|Air press change: diving +C0480147|T037|PT|E903|ICD9CM|Accident caused by travel and motion|Accident caused by travel and motion +C0480147|T037|AB|E903|ICD9CM|Travel and motion|Travel and motion +C0417672|T037|PT|E904.1|ICD9CM|Accident due to lack of food|Accident due to lack of food +C0417672|T037|AB|E904.1|ICD9CM|Lack of food|Lack of food +C0417673|T033|PT|E904.2|ICD9CM|Accident due to lack of water|Accident due to lack of water +C0417673|T033|AB|E904.2|ICD9CM|Lack of water|Lack of water +C0546841|T037|PT|E904.3|ICD9CM|Accident due to exposure (to weather conditions), not elsewhere classifiable|Accident due to exposure (to weather conditions), not elsewhere classifiable +C0546841|T037|AB|E904.3|ICD9CM|Exposure NEC|Exposure NEC +C0417584|T037|PT|E904.9|ICD9CM|Accident due to privation, unqualified|Accident due to privation, unqualified +C0417584|T037|AB|E904.9|ICD9CM|Privation NOS|Privation NOS +C0261662|T037|HT|E905|ICD9CM|Venomous animals and plants as the cause of poisoning and toxic reactions|Venomous animals and plants as the cause of poisoning and toxic reactions +C0042477|T037|AB|E905.0|ICD9CM|Venomous snake bite|Venomous snake bite +C0042477|T037|PT|E905.0|ICD9CM|Venomous snakes and lizards causing poisoning and toxic reactions|Venomous snakes and lizards causing poisoning and toxic reactions +C0042478|T037|AB|E905.1|ICD9CM|Venomous spider bite|Venomous spider bite +C0042478|T037|PT|E905.1|ICD9CM|Venomous spiders causing poisoning and toxic reactions|Venomous spiders causing poisoning and toxic reactions +C0261663|T037|AB|E905.2|ICD9CM|Scorpion sting|Scorpion sting +C0261663|T037|PT|E905.2|ICD9CM|Scorpion sting causing poisoning and toxic reactions|Scorpion sting causing poisoning and toxic reactions +C0261664|T037|AB|E905.3|ICD9CM|Hornet/wasp/bee sting|Hornet/wasp/bee sting +C0261664|T037|PT|E905.3|ICD9CM|Sting of hornets, wasps, and bees causing poisoning and toxic reactions|Sting of hornets, wasps, and bees causing poisoning and toxic reactions +C0261665|T037|PT|E905.4|ICD9CM|Centipede and venomous millipede (tropical) bite causing poisoning and toxic reactions|Centipede and venomous millipede (tropical) bite causing poisoning and toxic reactions +C0261665|T037|AB|E905.4|ICD9CM|Centipede bite|Centipede bite +C0261666|T037|PT|E905.5|ICD9CM|Other venomous arthropods causing poisoning and toxic reactions|Other venomous arthropods causing poisoning and toxic reactions +C0261666|T037|AB|E905.5|ICD9CM|Venomous arthropods NEC|Venomous arthropods NEC +C0261667|T037|AB|E905.6|ICD9CM|Venom sea animals/plants|Venom sea animals/plants +C0261667|T037|PT|E905.6|ICD9CM|Venomous marine animals and plants causing poisoning and toxic reactions|Venomous marine animals and plants causing poisoning and toxic reactions +C0261668|T037|PT|E905.7|ICD9CM|Poisoning and toxic reactions caused by other plants|Poisoning and toxic reactions caused by other plants +C0261668|T037|AB|E905.7|ICD9CM|Poisoning by other plant|Poisoning by other plant +C0261669|T037|PT|E905.8|ICD9CM|Poisoning and toxic reactions caused by other specified animals and plants|Poisoning and toxic reactions caused by other specified animals and plants +C0261669|T037|AB|E905.8|ICD9CM|Venomous bite/sting NEC|Venomous bite/sting NEC +C0261670|T037|PT|E905.9|ICD9CM|Poisoning and toxic reactions caused by unspecified animals and plants|Poisoning and toxic reactions caused by unspecified animals and plants +C0261670|T037|AB|E905.9|ICD9CM|Venomous bite/sting NOS|Venomous bite/sting NOS +C0417758|T037|HT|E906|ICD9CM|Other injury caused by animals|Other injury caused by animals +C0259797|T037|AB|E906.0|ICD9CM|Dog bite|Dog bite +C0259797|T037|PT|E906.0|ICD9CM|Dog bite|Dog bite +C0479196|T037|AB|E906.1|ICD9CM|Rat bite|Rat bite +C0479196|T037|PT|E906.1|ICD9CM|Rat bite|Rat bite +C0546830|T037|PT|E906.2|ICD9CM|Bite of nonvenomous snakes and lizards|Bite of nonvenomous snakes and lizards +C0546830|T037|AB|E906.2|ICD9CM|Nonvenomous snake bite|Nonvenomous snake bite +C0005656|T037|AB|E906.3|ICD9CM|Animal bite NEC|Animal bite NEC +C0005656|T037|PT|E906.3|ICD9CM|Bite of other animal except arthropod|Bite of other animal except arthropod +C0332815|T037|PT|E906.4|ICD9CM|Bite of nonvenomous arthropod|Bite of nonvenomous arthropod +C0332815|T037|AB|E906.4|ICD9CM|Nonvenom arthropod bite|Nonvenom arthropod bite +C0003044|T037|AB|E906.5|ICD9CM|Animal bite NOS|Animal bite NOS +C0003044|T037|PT|E906.5|ICD9CM|Bite by unspecified animal|Bite by unspecified animal +C0261675|T037|AB|E906.9|ICD9CM|Inj NOS caused by animal|Inj NOS caused by animal +C0261675|T037|PT|E906.9|ICD9CM|Unspecified injury caused by animal|Unspecified injury caused by animal +C0000915|T037|AB|E907|ICD9CM|Acc due to lightning|Acc due to lightning +C0000915|T037|PT|E907|ICD9CM|Accident due to lightning|Accident due to lightning +C0375739|T037|AB|E908.0|ICD9CM|Accident d/t hurricane|Accident d/t hurricane +C0375739|T037|PT|E908.0|ICD9CM|Hurricane|Hurricane +C0375740|T037|AB|E908.1|ICD9CM|Accident d/t tornado|Accident d/t tornado +C0375740|T037|PT|E908.1|ICD9CM|Tornado|Tornado +C0375741|T037|AB|E908.2|ICD9CM|Accident d/t floods|Accident d/t floods +C0375741|T037|PT|E908.2|ICD9CM|Floods|Floods +C0375742|T037|AB|E908.3|ICD9CM|Acc d/t snow blizzard|Acc d/t snow blizzard +C0375742|T037|PT|E908.3|ICD9CM|Blizzard (snow) (ice)|Blizzard (snow) (ice) +C0375743|T037|AB|E908.4|ICD9CM|Accident d/t dust storm|Accident d/t dust storm +C0375743|T037|PT|E908.4|ICD9CM|Dust storm|Dust storm +C0375744|T037|AB|E908.8|ICD9CM|Accident d/t storm NEC|Accident d/t storm NEC +C0375744|T037|PT|E908.8|ICD9CM|Other cataclysmic storms|Other cataclysmic storms +C0417614|T037|AB|E909.0|ICD9CM|Acc d/t earthquakes|Acc d/t earthquakes +C0417614|T037|PT|E909.0|ICD9CM|Earthquakes|Earthquakes +C0375746|T037|AB|E909.1|ICD9CM|Acc d/t volcanic erupt|Acc d/t volcanic erupt +C0375746|T037|PT|E909.1|ICD9CM|Volcanic eruptions|Volcanic eruptions +C0375747|T037|AB|E909.2|ICD9CM|Acc d/t avalanche|Acc d/t avalanche +C0375747|T037|PT|E909.2|ICD9CM|Avalanche, landslide, or mudslide|Avalanche, landslide, or mudslide +C0261678|T037|HT|E910|ICD9CM|Accidental drowning and submersion|Accidental drowning and submersion +C0261679|T037|PT|E910.0|ICD9CM|Accidental drowning and submersion while water-skiing|Accidental drowning and submersion while water-skiing +C0261679|T037|AB|E910.0|ICD9CM|Water-skiing accident|Water-skiing accident +C0417794|T037|AB|E910.1|ICD9CM|Skin/scuba diving acc|Skin/scuba diving acc +C0261681|T037|AB|E910.2|ICD9CM|Swimming accident NOS|Swimming accident NOS +C0261683|T037|PT|E910.4|ICD9CM|Accidental drowning and submersion in bathtub|Accidental drowning and submersion in bathtub +C0261683|T037|AB|E910.4|ICD9CM|Drowning in bathtub|Drowning in bathtub +C0029483|T037|AB|E910.8|ICD9CM|Accidental drowning NEC|Accidental drowning NEC +C0029483|T037|PT|E910.8|ICD9CM|Other accidental drowning or submersion|Other accidental drowning or submersion +C0261684|T037|AB|E910.9|ICD9CM|Accidental drowning NOS|Accidental drowning NOS +C0261684|T037|PT|E910.9|ICD9CM|Unspecified accidental drowning or submersion|Unspecified accidental drowning or submersion +C0261685|T037|PT|E911|ICD9CM|Inhalation and ingestion of food causing obstruction of respiratory tract or suffocation|Inhalation and ingestion of food causing obstruction of respiratory tract or suffocation +C0261685|T037|AB|E911|ICD9CM|Resp obstr-food inhal|Resp obstr-food inhal +C0261686|T037|PT|E912|ICD9CM|Inhalation and ingestion of other object causing obstruction of respiratory tract or suffocation|Inhalation and ingestion of other object causing obstruction of respiratory tract or suffocation +C0261686|T037|AB|E912|ICD9CM|Resp obstr-inhal obj NEC|Resp obstr-inhal obj NEC +C0559051|T037|HT|E913|ICD9CM|Accidental mechanical suffocation|Accidental mechanical suffocation +C0261688|T037|PT|E913.0|ICD9CM|Accidental mechanical suffocation in bed or cradle|Accidental mechanical suffocation in bed or cradle +C0261688|T037|AB|E913.0|ICD9CM|Suffocat in bed/cradle|Suffocat in bed/cradle +C0261689|T037|PT|E913.1|ICD9CM|Accidental mechanical suffocation by plastic bag|Accidental mechanical suffocation by plastic bag +C0261689|T037|AB|E913.1|ICD9CM|Suffocation-plastic bag|Suffocation-plastic bag +C0261690|T037|PT|E913.2|ICD9CM|Accidental mechanical suffocation due to lack of air (in closed place)|Accidental mechanical suffocation due to lack of air (in closed place) +C0261690|T037|AB|E913.2|ICD9CM|Suffocation-lack of air|Suffocation-lack of air +C0261691|T037|PT|E913.3|ICD9CM|Accidental mechanical suffocation by falling earth or other substance|Accidental mechanical suffocation by falling earth or other substance +C0261691|T037|AB|E913.3|ICD9CM|Cave-in NOS|Cave-in NOS +C0261692|T037|PT|E913.8|ICD9CM|Accidental mechanical suffocation by other specified means|Accidental mechanical suffocation by other specified means +C0261692|T037|AB|E913.8|ICD9CM|Suffocation NEC|Suffocation NEC +C0000922|T037|PT|E913.9|ICD9CM|Accidental mechanical suffocation by unspecified means|Accidental mechanical suffocation by unspecified means +C0000922|T037|AB|E913.9|ICD9CM|Suffocation NOS|Suffocation NOS +C0261693|T037|AB|E914|ICD9CM|FB entering eye|FB entering eye +C0261693|T037|PT|E914|ICD9CM|Foreign body accidentally entering eye and adnexa|Foreign body accidentally entering eye and adnexa +C0261694|T037|AB|E915|ICD9CM|FB entering oth orifice|FB entering oth orifice +C0261694|T037|PT|E915|ICD9CM|Foreign body accidentally entering other orifice|Foreign body accidentally entering other orifice +C0261695|T037|PT|E916|ICD9CM|Struck accidentally by falling object|Struck accidentally by falling object +C0261695|T037|AB|E916|ICD9CM|Struck by falling object|Struck by falling object +C0029484|T037|HT|E916-E928.9|ICD9CM|OTHER ACCIDENTS|OTHER ACCIDENTS +C0949169|T037|AB|E917.0|ICD9CM|Sports acc w/o sub fall|Sports acc w/o sub fall +C0949169|T037|PT|E917.0|ICD9CM|Striking against or struck accidentally by objects or persons in sports|Striking against or struck accidentally by objects or persons in sports +C0949170|T037|AB|E917.1|ICD9CM|Crowd w/o sub fall|Crowd w/o sub fall +C0949170|T037|PT|E917.1|ICD9CM|Striking against or struck accidentally by a crowd, by collective fear or panic|Striking against or struck accidentally by a crowd, by collective fear or panic +C0949171|T037|AB|E917.2|ICD9CM|Run water w/o sub fall|Run water w/o sub fall +C0949171|T037|PT|E917.2|ICD9CM|Striking against or struck accidentally in running water|Striking against or struck accidentally in running water +C0949161|T037|AB|E917.3|ICD9CM|Furnit w/o sub fall|Furnit w/o sub fall +C0949161|T037|PT|E917.3|ICD9CM|Striking against or struck accidentally by furniture without subsequent fall|Striking against or struck accidentally by furniture without subsequent fall +C0949162|T037|AB|E917.4|ICD9CM|Stat ob w/o sub fall NEC|Stat ob w/o sub fall NEC +C0949162|T037|PT|E917.4|ICD9CM|Striking against or struck accidentally by other stationary object without subsequent fall|Striking against or struck accidentally by other stationary object without subsequent fall +C0949163|T037|AB|E917.5|ICD9CM|Sports acc w sub fall|Sports acc w sub fall +C0949163|T037|PT|E917.5|ICD9CM|Striking against or struck accidentally by object in sports with subsequent fall|Striking against or struck accidentally by object in sports with subsequent fall +C0949164|T037|AB|E917.6|ICD9CM|Crowd accidnt w sub fall|Crowd accidnt w sub fall +C0949165|T037|AB|E917.7|ICD9CM|Furniture acc w sub fall|Furniture acc w sub fall +C0949165|T037|PT|E917.7|ICD9CM|Striking against or struck accidentally by furniture with subsequent fall|Striking against or struck accidentally by furniture with subsequent fall +C0949166|T037|AB|E917.8|ICD9CM|Stat obj w sub fall NEC|Stat obj w sub fall NEC +C0949166|T037|PT|E917.8|ICD9CM|Striking against or struck accidentally by other stationary object with subsequent fall|Striking against or struck accidentally by other stationary object with subsequent fall +C0949172|T037|AB|E917.9|ICD9CM|Obj w-w/o sub fall NEC|Obj w-w/o sub fall NEC +C0949172|T037|PT|E917.9|ICD9CM|Other accident caused by striking against or being struck accidentally by objects or persons|Other accident caused by striking against or being struck accidentally by objects or persons +C1278558|T037|PT|E918|ICD9CM|Caught accidentally in or between objects|Caught accidentally in or between objects +C1278558|T037|AB|E918|ICD9CM|Caught between objects|Caught between objects +C0261712|T037|HT|E919|ICD9CM|Accidents caused by machinery|Accidents caused by machinery +C0261703|T037|PT|E919.0|ICD9CM|Accidents caused by agricultural machines|Accidents caused by agricultural machines +C0261703|T037|AB|E919.0|ICD9CM|Machine accid-agricult|Machine accid-agricult +C0261704|T037|PT|E919.1|ICD9CM|Accidents caused by mining and earth-drilling machinery|Accidents caused by mining and earth-drilling machinery +C0261704|T037|AB|E919.1|ICD9CM|Machine accid-mining|Machine accid-mining +C0261706|T037|PT|E919.3|ICD9CM|Accidents caused by metalworking machines|Accidents caused by metalworking machines +C0261706|T037|AB|E919.3|ICD9CM|Metalworking machine acc|Metalworking machine acc +C0261708|T037|PT|E919.5|ICD9CM|Accidents caused by prime movers, except electrical motors|Accidents caused by prime movers, except electrical motors +C0261708|T037|AB|E919.5|ICD9CM|Prime mover machine acc|Prime mover machine acc +C0261709|T037|PT|E919.6|ICD9CM|Accidents caused by transmission machinery|Accidents caused by transmission machinery +C0261709|T037|AB|E919.6|ICD9CM|Transmission machine acc|Transmission machine acc +C0261710|T037|PT|E919.7|ICD9CM|Accidents caused by earth moving, scraping, and other excavating machines|Accidents caused by earth moving, scraping, and other excavating machines +C0261710|T037|AB|E919.7|ICD9CM|Earth moving machine acc|Earth moving machine acc +C0261711|T037|PT|E919.8|ICD9CM|Accidents caused by other specified machinery|Accidents caused by other specified machinery +C0261711|T037|AB|E919.8|ICD9CM|Machinery accident NEC|Machinery accident NEC +C0261712|T037|PT|E919.9|ICD9CM|Accidents caused by unspecified machinery|Accidents caused by unspecified machinery +C0261712|T037|AB|E919.9|ICD9CM|Machinery accident NOS|Machinery accident NOS +C0261713|T037|HT|E920|ICD9CM|Accidents caused by cutting and piercing instruments or objects|Accidents caused by cutting and piercing instruments or objects +C0261714|T037|AB|E920.0|ICD9CM|Acc-powered lawn mower|Acc-powered lawn mower +C0261714|T037|PT|E920.0|ICD9CM|Accidents caused by powered lawn mower|Accidents caused by powered lawn mower +C0261715|T037|AB|E920.1|ICD9CM|Acc-power hand tool NEC|Acc-power hand tool NEC +C0261715|T037|PT|E920.1|ICD9CM|Accidents caused by other powered hand tools|Accidents caused by other powered hand tools +C0261716|T037|AB|E920.2|ICD9CM|Acc-power house applianc|Acc-power house applianc +C0261716|T037|PT|E920.2|ICD9CM|Accidents caused by powered household appliances and implements|Accidents caused by powered household appliances and implements +C0261717|T037|PT|E920.3|ICD9CM|Accidents caused by knives, swords, and daggers|Accidents caused by knives, swords, and daggers +C0261717|T037|AB|E920.3|ICD9CM|Knife/sword/dagger acc|Knife/sword/dagger acc +C0261718|T037|AB|E920.4|ICD9CM|Accid-other hand tools|Accid-other hand tools +C0261718|T037|PT|E920.4|ICD9CM|Accidents caused by other hand tools and implements|Accidents caused by other hand tools and implements +C0375752|T037|AB|E920.5|ICD9CM|Acc-hypodermic needle|Acc-hypodermic needle +C0375752|T037|PT|E920.5|ICD9CM|Accidents caused by hypodermic needle|Accidents caused by hypodermic needle +C0261719|T037|AB|E920.8|ICD9CM|Acc-cutting instrum NEC|Acc-cutting instrum NEC +C0261719|T037|PT|E920.8|ICD9CM|Accidents caused by other specified cutting and piercing instruments or objects|Accidents caused by other specified cutting and piercing instruments or objects +C0261713|T037|AB|E920.9|ICD9CM|Acc-cutting instrum NOS|Acc-cutting instrum NOS +C0261713|T037|PT|E920.9|ICD9CM|Accidents caused by unspecified cutting and piercing instrument or object|Accidents caused by unspecified cutting and piercing instrument or object +C0261724|T037|HT|E921|ICD9CM|Accident caused by explosion of pressure vessel|Accident caused by explosion of pressure vessel +C0261721|T037|PT|E921.0|ICD9CM|Accident caused by explosion of boilers|Accident caused by explosion of boilers +C0261721|T037|AB|E921.0|ICD9CM|Boiler explosion|Boiler explosion +C0261722|T037|PT|E921.1|ICD9CM|Accident caused by explosion of gas cylinders|Accident caused by explosion of gas cylinders +C0261722|T037|AB|E921.1|ICD9CM|Gas cylinder explosion|Gas cylinder explosion +C0261724|T037|PT|E921.9|ICD9CM|Accident caused by explosion of unspecified pressure vessel|Accident caused by explosion of unspecified pressure vessel +C0261724|T037|AB|E921.9|ICD9CM|Press vessel explos NOS|Press vessel explos NOS +C0490042|T037|HT|E922|ICD9CM|Accident caused by firearm, and air gun missile|Accident caused by firearm, and air gun missile +C0261726|T037|PT|E922.0|ICD9CM|Accident caused by handgun|Accident caused by handgun +C0261726|T037|AB|E922.0|ICD9CM|Handgun accident|Handgun accident +C0565898|T037|PT|E922.1|ICD9CM|Accident caused by shotgun (automatic)|Accident caused by shotgun (automatic) +C0565898|T037|AB|E922.1|ICD9CM|Shotgun accident|Shotgun accident +C0261728|T037|PT|E922.2|ICD9CM|Accident caused by hunting rifle|Accident caused by hunting rifle +C0261728|T037|AB|E922.2|ICD9CM|Hunting rifle accident|Hunting rifle accident +C0261729|T037|PT|E922.3|ICD9CM|Accident caused by military firearms|Accident caused by military firearms +C0261729|T037|AB|E922.3|ICD9CM|Military firearm accid|Military firearm accid +C0490035|T037|AB|E922.4|ICD9CM|Accident - air gun|Accident - air gun +C0490035|T037|PT|E922.4|ICD9CM|Accident caused by air gun|Accident caused by air gun +C1135314|T037|PT|E922.5|ICD9CM|Accident caused by paintball gun|Accident caused by paintball gun +C1135314|T037|AB|E922.5|ICD9CM|Accident-paintball gun|Accident-paintball gun +C0261725|T037|PT|E922.9|ICD9CM|Accident caused by unspecified firearm missile|Accident caused by unspecified firearm missile +C0261725|T037|AB|E922.9|ICD9CM|Firearm accident NOS|Firearm accident NOS +C0261731|T037|HT|E923|ICD9CM|Accident caused by explosive material|Accident caused by explosive material +C0261732|T037|PT|E923.0|ICD9CM|Accident caused by fireworks|Accident caused by fireworks +C0261732|T037|AB|E923.0|ICD9CM|Fireworks accident|Fireworks accident +C0261733|T037|PT|E923.1|ICD9CM|Accident caused by blasting materials|Accident caused by blasting materials +C0261733|T037|AB|E923.1|ICD9CM|Blasting materials accid|Blasting materials accid +C0261734|T037|PT|E923.2|ICD9CM|Accident caused by explosive gases|Accident caused by explosive gases +C0261734|T037|AB|E923.2|ICD9CM|Explosive gases accident|Explosive gases accident +C0261735|T037|PT|E923.8|ICD9CM|Accident caused by other explosive materials|Accident caused by other explosive materials +C0261735|T037|AB|E923.8|ICD9CM|Explosives accident NEC|Explosives accident NEC +C0261731|T037|PT|E923.9|ICD9CM|Accident caused by unspecified explosive material|Accident caused by unspecified explosive material +C0261731|T037|AB|E923.9|ICD9CM|Explosives accident NOS|Explosives accident NOS +C0261736|T037|HT|E924|ICD9CM|Accident caused by hot substance or object, caustic or corrosive material, and steam|Accident caused by hot substance or object, caustic or corrosive material, and steam +C0261737|T037|AB|E924.0|ICD9CM|Acc-hot liquid & steam|Acc-hot liquid & steam +C0261737|T037|PT|E924.0|ICD9CM|Accident caused by hot liquids and vapors, including steam|Accident caused by hot liquids and vapors, including steam +C0000908|T037|AB|E924.1|ICD9CM|Accid-caustic substance|Accid-caustic substance +C0000908|T037|PT|E924.1|ICD9CM|Accident caused by caustic and corrosive substances|Accident caused by caustic and corrosive substances +C0375753|T037|AB|E924.2|ICD9CM|Acc-hot tap water|Acc-hot tap water +C0375753|T037|PT|E924.2|ICD9CM|Accident caused by hot (boiling) tap water|Accident caused by hot (boiling) tap water +C0261738|T037|PT|E924.8|ICD9CM|Accident caused by other hot substance or object|Accident caused by other hot substance or object +C0261738|T037|AB|E924.8|ICD9CM|Hot substance accid NEC|Hot substance accid NEC +C0261740|T037|HT|E925|ICD9CM|Accident caused by electric current|Accident caused by electric current +C0261744|T037|PT|E925.8|ICD9CM|Accident caused by other electric current|Accident caused by other electric current +C0261744|T037|AB|E925.8|ICD9CM|Electric current acc NEC|Electric current acc NEC +C0261740|T037|PT|E925.9|ICD9CM|Accident caused by unspecified electric current|Accident caused by unspecified electric current +C0261740|T037|AB|E925.9|ICD9CM|Electric current acc NOS|Electric current acc NOS +C0015333|T037|HT|E926|ICD9CM|Exposure to radiation|Exposure to radiation +C0261746|T037|PT|E926.0|ICD9CM|Exposure to radiofrequency radiation|Exposure to radiofrequency radiation +C0261746|T037|AB|E926.0|ICD9CM|Radiofreq radiat exposur|Radiofreq radiat exposur +C0261747|T037|PT|E926.1|ICD9CM|Exposure to infra-red radiation from heaters and lamps|Exposure to infra-red radiation from heaters and lamps +C0261747|T037|AB|E926.1|ICD9CM|Infra-red appl rad exos|Infra-red appl rad exos +C0015335|T037|PT|E926.2|ICD9CM|Exposure to visible and ultraviolet light sources|Exposure to visible and ultraviolet light sources +C0015335|T037|AB|E926.2|ICD9CM|Vis/ultraviol lght expos|Vis/ultraviol lght expos +C0261748|T037|PT|E926.3|ICD9CM|Exposure to x-rays and other electromagnetic ionizing radiation|Exposure to x-rays and other electromagnetic ionizing radiation +C0261748|T037|AB|E926.3|ICD9CM|X-ray/gamma ray exposure|X-ray/gamma ray exposure +C0261749|T037|PT|E926.4|ICD9CM|Exposure to lasers|Exposure to lasers +C0261749|T037|AB|E926.4|ICD9CM|Laser exposure|Laser exposure +C0261750|T037|PT|E926.5|ICD9CM|Exposure to radioactive isotopes|Exposure to radioactive isotopes +C0261750|T037|AB|E926.5|ICD9CM|Radioact isotope exposur|Radioact isotope exposur +C0015332|T037|PT|E926.8|ICD9CM|Exposure to other specified radiation|Exposure to other specified radiation +C0015332|T037|AB|E926.8|ICD9CM|Radiation exposure NEC|Radiation exposure NEC +C0015333|T037|PT|E926.9|ICD9CM|Exposure to unspecified radiation|Exposure to unspecified radiation +C0015333|T037|AB|E926.9|ICD9CM|Radiation exposure NOS|Radiation exposure NOS +C2349815|T033|HT|E927|ICD9CM|Overexertion and strenuous and repetitive movements or loads|Overexertion and strenuous and repetitive movements or loads +C2349803|T047|PT|E927.0|ICD9CM|Overexertion from sudden strenuous movement|Overexertion from sudden strenuous movement +C2349803|T047|AB|E927.0|ICD9CM|Overxrt-sudn stren mvmt|Overxrt-sudn stren mvmt +C2349805|T047|PT|E927.1|ICD9CM|Overexertion from prolonged static position|Overexertion from prolonged static position +C2349805|T047|AB|E927.1|ICD9CM|Overxrt-prolng stc postn|Overxrt-prolng stc postn +C2349809|T037|AB|E927.2|ICD9CM|Excess physical exert|Excess physical exert +C2349809|T037|PT|E927.2|ICD9CM|Excessive physical exertion|Excessive physical exertion +C2349810|T037|AB|E927.3|ICD9CM|Cumltv trma-repetv motn|Cumltv trma-repetv motn +C2349810|T037|PT|E927.3|ICD9CM|Cumulative trauma from repetitive motion|Cumulative trauma from repetitive motion +C2349812|T037|AB|E927.4|ICD9CM|Cumltv trma-repetv impct|Cumltv trma-repetv impct +C2349812|T037|PT|E927.4|ICD9CM|Cumulative trauma from repetitive impact|Cumulative trauma from repetitive impact +C2349813|T047|PT|E927.8|ICD9CM|Other overexertion and strenuous and repetitive movements or loads|Other overexertion and strenuous and repetitive movements or loads +C2349813|T047|AB|E927.8|ICD9CM|Overexert reptv mvmt NEC|Overexert reptv mvmt NEC +C2349814|T047|AB|E927.9|ICD9CM|Overexert reptv mvmt NOS|Overexert reptv mvmt NOS +C2349814|T047|PT|E927.9|ICD9CM|Unspecified overexertion and strenuous and repetitive movements or loads|Unspecified overexertion and strenuous and repetitive movements or loads +C0261752|T037|AB|E928.0|ICD9CM|Acc d/t weightless envir|Acc d/t weightless envir +C0261752|T037|PT|E928.0|ICD9CM|Prolonged stay in weightless environment|Prolonged stay in weightless environment +C0700522|T037|AB|E928.1|ICD9CM|Exposure to noise|Exposure to noise +C0700522|T037|PT|E928.1|ICD9CM|Exposure to noise|Exposure to noise +C0677519|T037|AB|E928.2|ICD9CM|Exposure to vibration|Exposure to vibration +C0677519|T037|PT|E928.2|ICD9CM|Vibration|Vibration +C0005660|T037|PT|E928.3|ICD9CM|Human bite|Human bite +C0005660|T037|AB|E928.3|ICD9CM|Human bite - accidental|Human bite - accidental +C1260473|T037|AB|E928.4|ICD9CM|Ext constriction-hair|Ext constriction-hair +C1260473|T037|PT|E928.4|ICD9CM|External constriction caused by hair|External constriction caused by hair +C1260474|T037|AB|E928.5|ICD9CM|Ext constriction-obj NEC|Ext constriction-obj NEC +C1260474|T037|PT|E928.5|ICD9CM|External constriction caused by other object|External constriction caused by other object +C1955556|T047|AB|E928.6|ICD9CM|Envir expose algae/toxin|Envir expose algae/toxin +C1955556|T047|PT|E928.6|ICD9CM|Environmental exposure to harmful algae and toxins|Environmental exposure to harmful algae and toxins +C2712481|T037|AB|E928.7|ICD9CM|Accidnt-mech firearm/gun|Accidnt-mech firearm/gun +C2712481|T037|PT|E928.7|ICD9CM|Environmental and accidental causes, mechanism or component of firearm and air gun|Environmental and accidental causes, mechanism or component of firearm and air gun +C0029484|T037|AB|E928.8|ICD9CM|Accident NEC|Accident NEC +C0029484|T037|PT|E928.8|ICD9CM|Other accidents|Other accidents +C4759661|T037|AB|E928.9|ICD9CM|Accident NOS|Accident NOS +C4759661|T037|PT|E928.9|ICD9CM|Unspecified accident|Unspecified accident +C0176005|T033|HT|E929|ICD9CM|Late effects of accidental injury|Late effects of accidental injury +C0176005|T033|HT|E929-E929.9|ICD9CM|LATE EFFECTS OF ACCIDENTAL INJURY|LATE EFFECTS OF ACCIDENTAL INJURY +C0481354|T037|AB|E929.0|ICD9CM|Late eff motor vehic acc|Late eff motor vehic acc +C0481354|T037|PT|E929.0|ICD9CM|Late effects of motor vehicle accident|Late effects of motor vehicle accident +C0481355|T037|AB|E929.1|ICD9CM|Late eff transport acc|Late eff transport acc +C0481355|T037|PT|E929.1|ICD9CM|Late effects of other transport accident|Late effects of other transport accident +C0261755|T046|AB|E929.2|ICD9CM|Late eff acc poisoning|Late eff acc poisoning +C0261755|T046|PT|E929.2|ICD9CM|Late effects of accidental poisoning|Late effects of accidental poisoning +C0261756|T046|AB|E929.3|ICD9CM|Late eff accidental fall|Late eff accidental fall +C0261756|T046|PT|E929.3|ICD9CM|Late effects of accidental fall|Late effects of accidental fall +C0261757|T046|AB|E929.4|ICD9CM|Late eff fire acc|Late eff fire acc +C0261757|T046|PT|E929.4|ICD9CM|Late effects of accident caused by fire|Late effects of accident caused by fire +C0261758|T046|AB|E929.5|ICD9CM|Late eff environment acc|Late eff environment acc +C0261758|T046|PT|E929.5|ICD9CM|Late effects of accident due to natural and environmental factors|Late effects of accident due to natural and environmental factors +C2733645|T046|AB|E929.8|ICD9CM|Late eff accident NEC|Late eff accident NEC +C2733645|T046|PT|E929.8|ICD9CM|Late effects of other accidents|Late effects of other accidents +C0274271|T046|AB|E929.9|ICD9CM|Late eff accident NOS|Late eff accident NOS +C0274271|T046|PT|E929.9|ICD9CM|Late effects of unspecified accident|Late effects of unspecified accident +C0261771|T037|HT|E930|ICD9CM|Antibiotics causing adverse effects in therapeutic use|Antibiotics causing adverse effects in therapeutic use +C0178359|T046|HT|E930-E949.9|ICD9CM|DRUGS, MEDICINAL AND BIOLOGICAL SUBSTANCES CAUSING ADVERSE EFFECTS IN THERAPEUTIC USE|DRUGS, MEDICINAL AND BIOLOGICAL SUBSTANCES CAUSING ADVERSE EFFECTS IN THERAPEUTIC USE +C0413443|T046|AB|E930.0|ICD9CM|Adv eff penicillins|Adv eff penicillins +C0413443|T046|PT|E930.0|ICD9CM|Penicillins causing adverse effects in therapeutic use|Penicillins causing adverse effects in therapeutic use +C0481115|T037|AB|E930.1|ICD9CM|Adv eff antifung antbiot|Adv eff antifung antbiot +C0481115|T037|PT|E930.1|ICD9CM|Antifungal antibiotics causing adverse effects in therapeutic use|Antifungal antibiotics causing adverse effects in therapeutic use +C0851330|T037|AB|E930.2|ICD9CM|Adv eff chloramphenicol|Adv eff chloramphenicol +C0851330|T037|PT|E930.2|ICD9CM|Chloramphenicol group causing adverse effects in therapeutic use|Chloramphenicol group causing adverse effects in therapeutic use +C0261765|T037|AB|E930.3|ICD9CM|Adv eff erythromycin|Adv eff erythromycin +C0261765|T037|PT|E930.3|ICD9CM|Erythromycin and other macrolides causing adverse effects in therapeutic use|Erythromycin and other macrolides causing adverse effects in therapeutic use +C0261766|T037|AB|E930.4|ICD9CM|Adv eff tetracycline|Adv eff tetracycline +C0261766|T037|PT|E930.4|ICD9CM|Tetracycline group causing adverse effects in therapeutic use|Tetracycline group causing adverse effects in therapeutic use +C0261767|T037|AB|E930.5|ICD9CM|Adv eff cephalosporin|Adv eff cephalosporin +C0261767|T037|PT|E930.5|ICD9CM|Cephalosporin group causing adverse effects in therapeutic use|Cephalosporin group causing adverse effects in therapeutic use +C0261768|T037|AB|E930.6|ICD9CM|Adv eff antmycob antbiot|Adv eff antmycob antbiot +C0261768|T037|PT|E930.6|ICD9CM|Antimycobacterial antibiotics causing adverse effects in therapeutic use|Antimycobacterial antibiotics causing adverse effects in therapeutic use +C0261769|T037|AB|E930.7|ICD9CM|Adv eff antineop antbiot|Adv eff antineop antbiot +C0261769|T037|PT|E930.7|ICD9CM|Antineoplastic antibiotics causing adverse effects in therapeutic use|Antineoplastic antibiotics causing adverse effects in therapeutic use +C0261770|T037|AB|E930.8|ICD9CM|Adv eff antibiotics NEC|Adv eff antibiotics NEC +C0261770|T037|PT|E930.8|ICD9CM|Other specified antibiotics causing adverse effects in therapeutic use|Other specified antibiotics causing adverse effects in therapeutic use +C0261771|T037|AB|E930.9|ICD9CM|Adv eff antibiotic NOS|Adv eff antibiotic NOS +C0261771|T037|PT|E930.9|ICD9CM|Unspecified antibiotic causing adverse effects in therapeutic use|Unspecified antibiotic causing adverse effects in therapeutic use +C0261772|T037|HT|E931|ICD9CM|Other anti-infectives causing adverse effects in therapeutic use|Other anti-infectives causing adverse effects in therapeutic use +C0261773|T046|AB|E931.0|ICD9CM|Adv eff sulfonamides|Adv eff sulfonamides +C0261773|T046|PT|E931.0|ICD9CM|Sulfonamides causing adverse effects in therapeutic use|Sulfonamides causing adverse effects in therapeutic use +C0261774|T037|AB|E931.1|ICD9CM|Adv eff arsenic anti-inf|Adv eff arsenic anti-inf +C0261774|T037|PT|E931.1|ICD9CM|Arsenical anti-infectives causing adverse effects in therapeutic use|Arsenical anti-infectives causing adverse effects in therapeutic use +C0261775|T037|AB|E931.2|ICD9CM|Adv eff metal anti-inf|Adv eff metal anti-inf +C0261775|T037|PT|E931.2|ICD9CM|Heavy metal anti-infectives causing adverse effects in therapeutic use|Heavy metal anti-infectives causing adverse effects in therapeutic use +C0261776|T037|AB|E931.3|ICD9CM|Adv eff quinoline|Adv eff quinoline +C0261776|T037|PT|E931.3|ICD9CM|Quinoline and hydroxyquinoline derivatives causing adverse effects in therapeutic use|Quinoline and hydroxyquinoline derivatives causing adverse effects in therapeutic use +C0261777|T037|AB|E931.4|ICD9CM|Adv eff antimalarials|Adv eff antimalarials +C0261777|T037|PT|E931.4|ICD9CM|Antimalarials and drugs acting on other blood protozoa causing adverse effects in therapeutic use|Antimalarials and drugs acting on other blood protozoa causing adverse effects in therapeutic use +C0261778|T037|AB|E931.5|ICD9CM|Adv eff antprotazoal NEC|Adv eff antprotazoal NEC +C0261778|T037|PT|E931.5|ICD9CM|Other antiprotozoal drugs causing adverse effects in therapeutic use|Other antiprotozoal drugs causing adverse effects in therapeutic use +C0413512|T046|AB|E931.6|ICD9CM|Adv eff anthelmintics|Adv eff anthelmintics +C0413512|T046|PT|E931.6|ICD9CM|Anthelmintics causing adverse effects in therapeutic use|Anthelmintics causing adverse effects in therapeutic use +C0261780|T046|AB|E931.7|ICD9CM|Adv eff antiviral drugs|Adv eff antiviral drugs +C0261780|T046|PT|E931.7|ICD9CM|Antiviral drugs causing adverse effects in therapeutic use|Antiviral drugs causing adverse effects in therapeutic use +C0261781|T037|AB|E931.8|ICD9CM|Adv eff antimycobac NEC|Adv eff antimycobac NEC +C0261781|T037|PT|E931.8|ICD9CM|Other antimycobacterial drugs causing adverse effects in therapeutic use|Other antimycobacterial drugs causing adverse effects in therapeutic use +C0261782|T037|AB|E931.9|ICD9CM|Adv eff antinfct NEC/NOS|Adv eff antinfct NEC/NOS +C0261782|T037|PT|E931.9|ICD9CM|Other and unspecified anti-infectives causing adverse effects in therapeutic use|Other and unspecified anti-infectives causing adverse effects in therapeutic use +C0261783|T037|HT|E932|ICD9CM|Hormones and synthetic substitutes causing adverse effects in therapeutic use|Hormones and synthetic substitutes causing adverse effects in therapeutic use +C0261784|T037|PT|E932.0|ICD9CM|Adrenal cortical steroids causing adverse effects in therapeutic use|Adrenal cortical steroids causing adverse effects in therapeutic use +C0261784|T037|AB|E932.0|ICD9CM|Adv eff corticosteroids|Adv eff corticosteroids +C0261785|T037|AB|E932.1|ICD9CM|Adv eff androgens|Adv eff androgens +C0261785|T037|PT|E932.1|ICD9CM|Androgens and anabolic congeners causing adverse effects in therapeutic use|Androgens and anabolic congeners causing adverse effects in therapeutic use +C0261786|T037|AB|E932.2|ICD9CM|Adv eff ovarian hormones|Adv eff ovarian hormones +C0261786|T037|PT|E932.2|ICD9CM|Ovarian hormones and synthetic substitutes causing adverse effects in therapeutic use|Ovarian hormones and synthetic substitutes causing adverse effects in therapeutic use +C0261787|T037|AB|E932.3|ICD9CM|Adv eff insulin/antidiab|Adv eff insulin/antidiab +C0261787|T037|PT|E932.3|ICD9CM|Insulins and antidiabetic agents causing adverse effects in therapeutic use|Insulins and antidiabetic agents causing adverse effects in therapeutic use +C0261788|T037|AB|E932.4|ICD9CM|Adv eff ant pituitary|Adv eff ant pituitary +C0261788|T037|PT|E932.4|ICD9CM|Anterior pituitary hormones causing adverse effects in therapeutic use|Anterior pituitary hormones causing adverse effects in therapeutic use +C0261789|T037|AB|E932.5|ICD9CM|Adv eff post pituitary|Adv eff post pituitary +C0261789|T037|PT|E932.5|ICD9CM|Posterior pituitary hormones causing adverse effects in therapeutic use|Posterior pituitary hormones causing adverse effects in therapeutic use +C0261790|T037|AB|E932.6|ICD9CM|Adv eff parathyroid|Adv eff parathyroid +C0261790|T037|PT|E932.6|ICD9CM|Parathyroid and parathyroid derivatives causing adverse effects in therapeutic use|Parathyroid and parathyroid derivatives causing adverse effects in therapeutic use +C0261791|T037|AB|E932.7|ICD9CM|Adv eff thyroid & deriv|Adv eff thyroid & deriv +C0261791|T037|PT|E932.7|ICD9CM|Thyroid and thyroid derivatives causing adverse effects in therapeutic use|Thyroid and thyroid derivatives causing adverse effects in therapeutic use +C0851314|T037|AB|E932.8|ICD9CM|Adv eff antithyroid agnt|Adv eff antithyroid agnt +C0851314|T037|PT|E932.8|ICD9CM|Antithyroid agents causing adverse effects in therapeutic use|Antithyroid agents causing adverse effects in therapeutic use +C0261793|T037|AB|E932.9|ICD9CM|Adv eff hormones NEC/NOS|Adv eff hormones NEC/NOS +C0261793|T037|PT|E932.9|ICD9CM|Other and unspecified hormones and synthetic substitutes causing adverse effects in therapeutic use|Other and unspecified hormones and synthetic substitutes causing adverse effects in therapeutic use +C0261794|T046|HT|E933|ICD9CM|Primarily systemic agents causing adverse effects in therapeutic use|Primarily systemic agents causing adverse effects in therapeutic use +C0261795|T046|AB|E933.0|ICD9CM|Adv eff anallrg/antemet|Adv eff anallrg/antemet +C0261795|T046|PT|E933.0|ICD9CM|Antiallergic and antiemetic drugs causing adverse effects in therapeutic use|Antiallergic and antiemetic drugs causing adverse effects in therapeutic use +C0261796|T037|AB|E933.1|ICD9CM|Adv eff antineoplastic|Adv eff antineoplastic +C0261796|T037|PT|E933.1|ICD9CM|Antineoplastic and immunosuppressive drugs causing adverse effects in therapeutic use|Antineoplastic and immunosuppressive drugs causing adverse effects in therapeutic use +C0261797|T037|PT|E933.2|ICD9CM|Acidifying agents causing adverse effects in therapeutic use|Acidifying agents causing adverse effects in therapeutic use +C0261797|T037|AB|E933.2|ICD9CM|Adv eff acidifying agent|Adv eff acidifying agent +C0261798|T037|AB|E933.3|ICD9CM|Adv eff alkalizing agent|Adv eff alkalizing agent +C0261798|T037|PT|E933.3|ICD9CM|Alkalizing agents causing adverse effects in therapeutic use|Alkalizing agents causing adverse effects in therapeutic use +C0869502|T037|AB|E933.4|ICD9CM|Adv eff enzymes NEC|Adv eff enzymes NEC +C0869502|T037|PT|E933.4|ICD9CM|Enzymes, not elsewhere classified, causing adverse effects in therapeutic use|Enzymes, not elsewhere classified, causing adverse effects in therapeutic use +C0869504|T037|AB|E933.5|ICD9CM|Adv eff vitamins NEC|Adv eff vitamins NEC +C0869504|T037|PT|E933.5|ICD9CM|Vitamins, not elsewhere classified, causing adverse effects in therapeutic use|Vitamins, not elsewhere classified, causing adverse effects in therapeutic use +C1955565|T037|AB|E933.6|ICD9CM|Oral bisphosphonates|Oral bisphosphonates +C1955565|T037|PT|E933.6|ICD9CM|Oral bisphosphonates|Oral bisphosphonates +C1955566|T047|PT|E933.7|ICD9CM|Intravenous bisphosphonates|Intravenous bisphosphonates +C1955566|T047|AB|E933.7|ICD9CM|IV bisphosphonates|IV bisphosphonates +C0261801|T037|AB|E933.8|ICD9CM|Adv eff systemic agt NEC|Adv eff systemic agt NEC +C0261801|T037|PT|E933.8|ICD9CM|Other systemic agents, not elsewhere classified, causing adverse effects in therapeutic use|Other systemic agents, not elsewhere classified, causing adverse effects in therapeutic use +C0261802|T037|AB|E933.9|ICD9CM|Adv eff systemic agt NOS|Adv eff systemic agt NOS +C0261802|T037|PT|E933.9|ICD9CM|Unspecified systemic agent causing adverse effects in therapeutic use|Unspecified systemic agent causing adverse effects in therapeutic use +C0261803|T046|HT|E934|ICD9CM|Agents primarily affecting blood constituents causing adverse effects in therapeutic use|Agents primarily affecting blood constituents causing adverse effects in therapeutic use +C0261804|T037|AB|E934.0|ICD9CM|Adv eff iron & compounds|Adv eff iron & compounds +C0261804|T037|PT|E934.0|ICD9CM|Iron and its compounds causing adverse effects in therapeutic use|Iron and its compounds causing adverse effects in therapeutic use +C0261805|T037|AB|E934.1|ICD9CM|Adv eff liver/antianemic|Adv eff liver/antianemic +C0261805|T037|PT|E934.1|ICD9CM|Liver preparations and other antianemic agents causing adverse effects in therapeutic use|Liver preparations and other antianemic agents causing adverse effects in therapeutic use +C0261806|T037|AB|E934.2|ICD9CM|Adv eff anticoagulants|Adv eff anticoagulants +C0261806|T037|PT|E934.2|ICD9CM|Anticoagulants causing adverse effects in therapeutic use|Anticoagulants causing adverse effects in therapeutic use +C0261807|T037|AB|E934.3|ICD9CM|Adv eff vitamin k|Adv eff vitamin k +C0261807|T037|PT|E934.3|ICD9CM|Vitamin k [phytonadione] causing adverse effects in therapeutic use|Vitamin k [phytonadione] causing adverse effects in therapeutic use +C0261808|T037|AB|E934.4|ICD9CM|Adv eff fibrinolysis agt|Adv eff fibrinolysis agt +C0261808|T037|PT|E934.4|ICD9CM|Fibrinolysis-affecting drugs causing adverse effects in therapeutic use|Fibrinolysis-affecting drugs causing adverse effects in therapeutic use +C0261809|T037|AB|E934.5|ICD9CM|Adv eff coagulants|Adv eff coagulants +C0261809|T037|PT|E934.5|ICD9CM|Anticoagulant antagonists and other coagulants causing adverse effects in therapeutic use|Anticoagulant antagonists and other coagulants causing adverse effects in therapeutic use +C0261810|T037|AB|E934.6|ICD9CM|Adv eff gamma globulin|Adv eff gamma globulin +C0261810|T037|PT|E934.6|ICD9CM|Gamma globulin causing adverse effects in therapeutic use|Gamma globulin causing adverse effects in therapeutic use +C0261811|T046|AB|E934.7|ICD9CM|Adv eff blood products|Adv eff blood products +C0261811|T046|PT|E934.7|ICD9CM|Natural blood and blood products causing adverse effects in therapeutic use|Natural blood and blood products causing adverse effects in therapeutic use +C0261812|T037|AB|E934.8|ICD9CM|Adv eff blood agent NEC|Adv eff blood agent NEC +C0261812|T037|PT|E934.8|ICD9CM|Other agents affecting blood constituents causing adverse effects in therapeutic use|Other agents affecting blood constituents causing adverse effects in therapeutic use +C0261813|T037|AB|E934.9|ICD9CM|Adv eff blood agent NOS|Adv eff blood agent NOS +C0261813|T037|PT|E934.9|ICD9CM|Unspecified agent affecting blood constituents causing adverse effects in therapeutic use|Unspecified agent affecting blood constituents causing adverse effects in therapeutic use +C0261814|T037|HT|E935|ICD9CM|Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use|Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use +C0261815|T037|AB|E935.0|ICD9CM|Adv eff heroin|Adv eff heroin +C0261815|T037|PT|E935.0|ICD9CM|Heroin causing adverse effects in therapeutic use|Heroin causing adverse effects in therapeutic use +C0261816|T046|AB|E935.1|ICD9CM|Adv eff methadone|Adv eff methadone +C0261816|T046|PT|E935.1|ICD9CM|Methadone causing averse effects in therapeutic use|Methadone causing averse effects in therapeutic use +C0261817|T037|AB|E935.2|ICD9CM|Adv eff opiates|Adv eff opiates +C0261817|T037|PT|E935.2|ICD9CM|Other opiates and related narcotics causing adverse effects in therapeutic use|Other opiates and related narcotics causing adverse effects in therapeutic use +C0851323|T037|AB|E935.3|ICD9CM|Adv eff salicylates|Adv eff salicylates +C0851323|T037|PT|E935.3|ICD9CM|Salicylates causing adverse effects in therapeutic use|Salicylates causing adverse effects in therapeutic use +C0261819|T037|AB|E935.4|ICD9CM|Adv eff arom analgsc NEC|Adv eff arom analgsc NEC +C0261819|T037|PT|E935.4|ICD9CM|Aromatic analgesics, not elsewhere classified, causing adverse effects in therapeutic use|Aromatic analgesics, not elsewhere classified, causing adverse effects in therapeutic use +C0261820|T037|AB|E935.5|ICD9CM|Adv eff pyrazole deriv|Adv eff pyrazole deriv +C0261820|T037|PT|E935.5|ICD9CM|Pyrazole derivatives causing adverse effects in therapeutic use|Pyrazole derivatives causing adverse effects in therapeutic use +C0481138|T046|AB|E935.6|ICD9CM|Adv eff antirheumatics|Adv eff antirheumatics +C0481138|T046|PT|E935.6|ICD9CM|Antirheumatics [antiphlogistics] causing adverse effects in therapeutic use|Antirheumatics [antiphlogistics] causing adverse effects in therapeutic use +C0261822|T037|AB|E935.7|ICD9CM|Adv eff non-narc analgsc|Adv eff non-narc analgsc +C0261822|T037|PT|E935.7|ICD9CM|Other non-narcotic analgesics causing adverse effects in therapeutic use|Other non-narcotic analgesics causing adverse effects in therapeutic use +C0261823|T037|AB|E935.8|ICD9CM|Adv eff analgesics NEC|Adv eff analgesics NEC +C0261823|T037|PT|E935.8|ICD9CM|Other specified analgesics and antipyretics causing adverse effects in therapeutic use|Other specified analgesics and antipyretics causing adverse effects in therapeutic use +C0261824|T037|AB|E935.9|ICD9CM|Adv eff analgesic NOS|Adv eff analgesic NOS +C0261824|T037|PT|E935.9|ICD9CM|Unspecified analgesic and antipyretic causing adverse effects in therapeutic use|Unspecified analgesic and antipyretic causing adverse effects in therapeutic use +C0481142|T037|HT|E936|ICD9CM|Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use|Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use +C0261826|T037|AB|E936.0|ICD9CM|Adv eff oxazolidin deriv|Adv eff oxazolidin deriv +C0261826|T037|PT|E936.0|ICD9CM|Oxazolidine derivatives causing adverse effects in therapeutic use|Oxazolidine derivatives causing adverse effects in therapeutic use +C0261827|T037|AB|E936.1|ICD9CM|Adv eff hydantoin deriv|Adv eff hydantoin deriv +C0261827|T037|PT|E936.1|ICD9CM|Hydantoin derivatives causing adverse effects in therapeutic use|Hydantoin derivatives causing adverse effects in therapeutic use +C0851324|T037|AB|E936.2|ICD9CM|Adv eff succinimides|Adv eff succinimides +C0851324|T037|PT|E936.2|ICD9CM|Succinimides causing adverse effects in therapeutic use|Succinimides causing adverse effects in therapeutic use +C0261829|T037|AB|E936.3|ICD9CM|Adv eff antconvl NEC/NOS|Adv eff antconvl NEC/NOS +C0261829|T037|PT|E936.3|ICD9CM|Other and unspecified anticonvulsants causing adverse effects in therapeutic use|Other and unspecified anticonvulsants causing adverse effects in therapeutic use +C0481147|T046|AB|E936.4|ICD9CM|Adv eff anti-parkinson|Adv eff anti-parkinson +C0481147|T046|PT|E936.4|ICD9CM|Anti-parkinsonism drugs causing adverse effects in therapeutic use|Anti-parkinsonism drugs causing adverse effects in therapeutic use +C0261831|T037|HT|E937|ICD9CM|Sedatives and hypnotics causing adverse effects in therapeutic use|Sedatives and hypnotics causing adverse effects in therapeutic use +C0261832|T037|AB|E937.0|ICD9CM|Adv eff barbiturates|Adv eff barbiturates +C0261832|T037|PT|E937.0|ICD9CM|Barbiturates causing adverse effects in therapeutic use|Barbiturates causing adverse effects in therapeutic use +C0261833|T037|AB|E937.1|ICD9CM|Adv eff chloral hydrate|Adv eff chloral hydrate +C0261833|T037|PT|E937.1|ICD9CM|Chloral hydrate group causing adverse effects in therapeutic use|Chloral hydrate group causing adverse effects in therapeutic use +C0851325|T037|AB|E937.2|ICD9CM|Adv eff paraldehyde|Adv eff paraldehyde +C0851325|T037|PT|E937.2|ICD9CM|Paraldehyde causing adverse effects in therapeutic use|Paraldehyde causing adverse effects in therapeutic use +C0261835|T037|AB|E937.3|ICD9CM|Adv eff bromine compnds|Adv eff bromine compnds +C0261835|T037|PT|E937.3|ICD9CM|Bromine compounds causing adverse effects in therapeutic use|Bromine compounds causing adverse effects in therapeutic use +C0261836|T037|AB|E937.4|ICD9CM|Adv eff methaqualone|Adv eff methaqualone +C0261836|T037|PT|E937.4|ICD9CM|Methaqualone compounds causing adverse effects in therapeutic use|Methaqualone compounds causing adverse effects in therapeutic use +C0261837|T037|AB|E937.5|ICD9CM|Adv eff glutethimide|Adv eff glutethimide +C0261837|T037|PT|E937.5|ICD9CM|Glutethimide group causing adverse effects in therapeutic use|Glutethimide group causing adverse effects in therapeutic use +C0261838|T037|AB|E937.6|ICD9CM|Adv eff mix sedative|Adv eff mix sedative +C0261838|T037|PT|E937.6|ICD9CM|Mixed sedatives, not elsewhere classified, causing adverse effects in therapeutic use|Mixed sedatives, not elsewhere classified, causing adverse effects in therapeutic use +C0261839|T037|AB|E937.8|ICD9CM|Adv eff sedat/hypnot NEC|Adv eff sedat/hypnot NEC +C0261839|T037|PT|E937.8|ICD9CM|Other sedatives and hypnotics causing adverse effects in therapeutic use|Other sedatives and hypnotics causing adverse effects in therapeutic use +C0261840|T037|AB|E937.9|ICD9CM|Adv eff sedat/hypnot NOS|Adv eff sedat/hypnot NOS +C0261840|T037|PT|E937.9|ICD9CM|Unspecified sedatives and hypnotics causing adverse effects in therapeutic use|Unspecified sedatives and hypnotics causing adverse effects in therapeutic use +C0261841|T037|HT|E938|ICD9CM|Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use|Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use +C0261842|T037|AB|E938.0|ICD9CM|Adv eff cns muscl depres|Adv eff cns muscl depres +C0261842|T037|PT|E938.0|ICD9CM|Central nervous system muscle-tone depressants causing adverse effects in therapeutic use|Central nervous system muscle-tone depressants causing adverse effects in therapeutic use +C0261843|T037|AB|E938.1|ICD9CM|Adv eff halothane|Adv eff halothane +C0261843|T037|PT|E938.1|ICD9CM|Halothane causing adverse effects in therapeutic use|Halothane causing adverse effects in therapeutic use +C0261844|T037|AB|E938.2|ICD9CM|Adv eff gas anesthet NEC|Adv eff gas anesthet NEC +C0261844|T037|PT|E938.2|ICD9CM|Other gaseous anesthetics causing adverse effects in therapeutic use|Other gaseous anesthetics causing adverse effects in therapeutic use +C0261845|T037|AB|E938.3|ICD9CM|Adv eff intraven anesth|Adv eff intraven anesth +C0261845|T037|PT|E938.3|ICD9CM|Intravenous anesthetics causing adverse effects in therapeutic use|Intravenous anesthetics causing adverse effects in therapeutic use +C0261846|T037|AB|E938.4|ICD9CM|Adv eff gen anes NEC/NOS|Adv eff gen anes NEC/NOS +C0261846|T037|PT|E938.4|ICD9CM|Other and unspecified general anesthetics causing adverse effects in therapeutic use|Other and unspecified general anesthetics causing adverse effects in therapeutic use +C0474019|T046|AB|E938.5|ICD9CM|Adv eff topic/infil anes|Adv eff topic/infil anes +C0474019|T046|PT|E938.5|ICD9CM|Surface and infiltration anesthetics causing adverse effects in therapeutic use|Surface and infiltration anesthetics causing adverse effects in therapeutic use +C0261848|T037|AB|E938.6|ICD9CM|Adv eff nerve-block anes|Adv eff nerve-block anes +C0261848|T037|PT|E938.6|ICD9CM|Peripheral nerve- and plexus-blocking anesthetics causing adverse effects in therapeutic use|Peripheral nerve- and plexus-blocking anesthetics causing adverse effects in therapeutic use +C0261849|T037|AB|E938.7|ICD9CM|Adv eff spinal anesthet|Adv eff spinal anesthet +C0261849|T037|PT|E938.7|ICD9CM|Spinal anesthetics causing adverse effects in therapeutic use|Spinal anesthetics causing adverse effects in therapeutic use +C0261850|T037|AB|E938.9|ICD9CM|Adv eff loc anes NEC/NOS|Adv eff loc anes NEC/NOS +C0261850|T037|PT|E938.9|ICD9CM|Other and unspecified local anesthetics causing adverse effects in therapeutic use|Other and unspecified local anesthetics causing adverse effects in therapeutic use +C0261851|T037|HT|E939|ICD9CM|Psychotropic agents causing adverse effects in therapeutic use|Psychotropic agents causing adverse effects in therapeutic use +C0261852|T037|AB|E939.0|ICD9CM|Adv eff antidepressants|Adv eff antidepressants +C0261852|T037|PT|E939.0|ICD9CM|Antidepressants causing adverse effects in therapeutic use|Antidepressants causing adverse effects in therapeutic use +C0261853|T037|AB|E939.1|ICD9CM|Adv eff phenothiaz tranq|Adv eff phenothiaz tranq +C0261853|T037|PT|E939.1|ICD9CM|Phenothiazine-based tranquilizers causing adverse effects in therapeutic use|Phenothiazine-based tranquilizers causing adverse effects in therapeutic use +C0261854|T037|AB|E939.2|ICD9CM|Adv eff butyrophen tranq|Adv eff butyrophen tranq +C0261854|T037|PT|E939.2|ICD9CM|Butyrophenone-based tranquilizers causing adverse effects in therapeutic use|Butyrophenone-based tranquilizers causing adverse effects in therapeutic use +C0261855|T037|AB|E939.3|ICD9CM|Adv eff antipsychotc NEC|Adv eff antipsychotc NEC +C0261856|T037|AB|E939.4|ICD9CM|Adv eff benzodiaz tranq|Adv eff benzodiaz tranq +C0261856|T037|PT|E939.4|ICD9CM|Benzodiazepine-based tranquilizers causing adverse effects in therapeutic use|Benzodiazepine-based tranquilizers causing adverse effects in therapeutic use +C0261857|T037|AB|E939.5|ICD9CM|Adv eff tranquilizer NEC|Adv eff tranquilizer NEC +C0261857|T037|PT|E939.5|ICD9CM|Other tranquilizers causing adverse effects in therapeutic use|Other tranquilizers causing adverse effects in therapeutic use +C0261858|T037|AB|E939.6|ICD9CM|Adv eff hallucinogens|Adv eff hallucinogens +C0261858|T037|PT|E939.6|ICD9CM|Psychodysleptics [hallucinogens] causing adverse effects in therapeutic use|Psychodysleptics [hallucinogens] causing adverse effects in therapeutic use +C0261859|T037|AB|E939.7|ICD9CM|Adv eff psychostimulants|Adv eff psychostimulants +C0261859|T037|PT|E939.7|ICD9CM|Psychostimulants causing adverse effects in therapeutic use|Psychostimulants causing adverse effects in therapeutic use +C0261860|T037|AB|E939.8|ICD9CM|Adv eff psychotropic NEC|Adv eff psychotropic NEC +C0261860|T037|PT|E939.8|ICD9CM|Other psychotropic agents causing adverse effects in therapeutic use|Other psychotropic agents causing adverse effects in therapeutic use +C0261861|T037|AB|E939.9|ICD9CM|Adv eff psychotropic NOS|Adv eff psychotropic NOS +C0261861|T037|PT|E939.9|ICD9CM|Unspecified psychotropic agent causing adverse effects in therapeutic use|Unspecified psychotropic agent causing adverse effects in therapeutic use +C0569621|T046|HT|E940|ICD9CM|Central nervous system stimulants causing adverse effects in therapeutic use|Central nervous system stimulants causing adverse effects in therapeutic use +C0261863|T046|AB|E940.0|ICD9CM|Adv eff analeptics|Adv eff analeptics +C0261863|T046|PT|E940.0|ICD9CM|Analeptics causing adverse effects in therapeutic use|Analeptics causing adverse effects in therapeutic use +C0261864|T037|AB|E940.1|ICD9CM|Adv eff opiat antagonist|Adv eff opiat antagonist +C0261864|T037|PT|E940.1|ICD9CM|Opiate antagonists causing adverse effects in therapeutic use|Opiate antagonists causing adverse effects in therapeutic use +C0261865|T037|AB|E940.8|ICD9CM|Adv eff cns stimulnt NEC|Adv eff cns stimulnt NEC +C0261865|T037|PT|E940.8|ICD9CM|Other specified central nervous system stimulants causing adverse effects in therapeutic use|Other specified central nervous system stimulants causing adverse effects in therapeutic use +C0569621|T046|AB|E940.9|ICD9CM|Adv eff cns stimulnt NOS|Adv eff cns stimulnt NOS +C0569621|T046|PT|E940.9|ICD9CM|Unspecified central nervous system stimulant causing adverse effects in therapeutic use|Unspecified central nervous system stimulant causing adverse effects in therapeutic use +C0543418|T046|HT|E941|ICD9CM|Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use|Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use +C0261868|T037|AB|E941.0|ICD9CM|Adv eff cholinergics|Adv eff cholinergics +C0261868|T037|PT|E941.0|ICD9CM|Parasympathomimetics [cholinergics] causing adverse effects in therapeutic use|Parasympathomimetics [cholinergics] causing adverse effects in therapeutic use +C0261869|T037|AB|E941.1|ICD9CM|Adv eff parasympatholytc|Adv eff parasympatholytc +C0261870|T037|AB|E941.2|ICD9CM|Adv eff sympathomimetics|Adv eff sympathomimetics +C0261870|T037|PT|E941.2|ICD9CM|Sympathomimetics [adrenergics] causing adverse effects in therapeutic use|Sympathomimetics [adrenergics] causing adverse effects in therapeutic use +C0261871|T037|AB|E941.3|ICD9CM|Adv eff sympatholytics|Adv eff sympatholytics +C0261871|T037|PT|E941.3|ICD9CM|Sympatholytics [antiadrenergics] causing adverse effects in therapeutic use|Sympatholytics [antiadrenergics] causing adverse effects in therapeutic use +C0261872|T037|AB|E941.9|ICD9CM|Adv eff autonom agnt NOS|Adv eff autonom agnt NOS +C1533672|T046|HT|E942|ICD9CM|Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use|Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use +C0261874|T037|AB|E942.0|ICD9CM|Adv eff card rhyth regul|Adv eff card rhyth regul +C0261874|T037|PT|E942.0|ICD9CM|Cardiac rhythm regulators causing adverse effects in therapeutic use|Cardiac rhythm regulators causing adverse effects in therapeutic use +C0261875|T037|AB|E942.1|ICD9CM|Adv eff cardiotonics|Adv eff cardiotonics +C0261875|T037|PT|E942.1|ICD9CM|Cardiotonic glycosides and drugs of similar action causing adverse effects in therapeutic use|Cardiotonic glycosides and drugs of similar action causing adverse effects in therapeutic use +C0481188|T037|AB|E942.2|ICD9CM|Adv eff antilipemics|Adv eff antilipemics +C0481188|T037|PT|E942.2|ICD9CM|Antilipemic and antiarteriosclerotic drugs causing adverse effects in therapeutic use|Antilipemic and antiarteriosclerotic drugs causing adverse effects in therapeutic use +C0261877|T037|AB|E942.3|ICD9CM|Adv eff ganglion-block|Adv eff ganglion-block +C0261877|T037|PT|E942.3|ICD9CM|Ganglion-blocking agents causing adverse effects in therapeutic use|Ganglion-blocking agents causing adverse effects in therapeutic use +C0261878|T037|AB|E942.4|ICD9CM|Adv eff coronary vasodil|Adv eff coronary vasodil +C0261878|T037|PT|E942.4|ICD9CM|Coronary vasodilators causing adverse effects in therapeutic use|Coronary vasodilators causing adverse effects in therapeutic use +C0261879|T037|AB|E942.5|ICD9CM|Adv eff vasodilators NEC|Adv eff vasodilators NEC +C0261879|T037|PT|E942.5|ICD9CM|Other vasodilators causing adverse effects in therapeutic use|Other vasodilators causing adverse effects in therapeutic use +C0261880|T037|AB|E942.6|ICD9CM|Adv eff antihyperten agt|Adv eff antihyperten agt +C0261880|T037|PT|E942.6|ICD9CM|Other antihypertensive agents causing adverse effects in therapeutic use|Other antihypertensive agents causing adverse effects in therapeutic use +C0497073|T037|AB|E942.7|ICD9CM|Adv eff antivaricose|Adv eff antivaricose +C0497073|T037|PT|E942.7|ICD9CM|Antivaricose drugs, including sclerosing agents, causing adverse effects in therapeutic use|Antivaricose drugs, including sclerosing agents, causing adverse effects in therapeutic use +C0261882|T037|AB|E942.8|ICD9CM|Adv eff capillary-act|Adv eff capillary-act +C0261882|T037|PT|E942.8|ICD9CM|Capillary-active drugs causing adverse effects in therapeutic use|Capillary-active drugs causing adverse effects in therapeutic use +C0497074|T037|AB|E942.9|ICD9CM|Adv eff cardiovasc NEC|Adv eff cardiovasc NEC +C0413956|T046|HT|E943|ICD9CM|Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use|Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use +C0261885|T037|AB|E943.0|ICD9CM|Adv eff antacids|Adv eff antacids +C0261885|T037|PT|E943.0|ICD9CM|Antacids and antigastric secretion drugs causing adverse effects in therapeutic use|Antacids and antigastric secretion drugs causing adverse effects in therapeutic use +C0261886|T037|AB|E943.1|ICD9CM|Adv eff irrit cathartic|Adv eff irrit cathartic +C0261886|T037|PT|E943.1|ICD9CM|Irritant cathartics causing adverse effects in therapeutic use|Irritant cathartics causing adverse effects in therapeutic use +C0261887|T037|AB|E943.2|ICD9CM|Adv eff emoll cathartics|Adv eff emoll cathartics +C0261887|T037|PT|E943.2|ICD9CM|Emollient cathartics causing adverse effects in therapeutic use|Emollient cathartics causing adverse effects in therapeutic use +C0261888|T037|AB|E943.3|ICD9CM|Adv eff cathartics NEC|Adv eff cathartics NEC +C0261888|T037|PT|E943.3|ICD9CM|Other cathartics, including intestinal atonia drugs, causing adverse effects in therapeutic use|Other cathartics, including intestinal atonia drugs, causing adverse effects in therapeutic use +C0261889|T046|AB|E943.4|ICD9CM|Adv eff digestants|Adv eff digestants +C0261889|T046|PT|E943.4|ICD9CM|Digestants causing adverse effects in therapeutic use|Digestants causing adverse effects in therapeutic use +C0474035|T046|AB|E943.5|ICD9CM|Adv eff antidiarrhea agt|Adv eff antidiarrhea agt +C0474035|T046|PT|E943.5|ICD9CM|Antidiarrheal drugs causing adverse effects in therapeutic use|Antidiarrheal drugs causing adverse effects in therapeutic use +C0261891|T046|AB|E943.6|ICD9CM|Adv eff emetics|Adv eff emetics +C0261891|T046|PT|E943.6|ICD9CM|Emetics causing adverse effects in therapeutic use|Emetics causing adverse effects in therapeutic use +C0261892|T037|AB|E943.8|ICD9CM|Adv eff GI agent NEC|Adv eff GI agent NEC +C0413956|T046|AB|E943.9|ICD9CM|Adv eff GI agent NOS|Adv eff GI agent NOS +C0261894|T037|HT|E944|ICD9CM|Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use|Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use +C0261895|T037|AB|E944.0|ICD9CM|Adv eff mercury diuretic|Adv eff mercury diuretic +C0261895|T037|PT|E944.0|ICD9CM|Mercurial diuretics causing adverse effects in therapeutic use|Mercurial diuretics causing adverse effects in therapeutic use +C0261896|T037|AB|E944.1|ICD9CM|Adv eff purine diuretics|Adv eff purine diuretics +C0261896|T037|PT|E944.1|ICD9CM|Purine derivative diuretics causing adverse effects in therapeutic use|Purine derivative diuretics causing adverse effects in therapeutic use +C0481197|T037|AB|E944.2|ICD9CM|Adv eff acetazolamide|Adv eff acetazolamide +C0481197|T037|PT|E944.2|ICD9CM|Carbonic acid anhydrase inhibitors causing adverse effects in therapeutic use|Carbonic acid anhydrase inhibitors causing adverse effects in therapeutic use +C0261898|T037|AB|E944.3|ICD9CM|Adv eff saluretics|Adv eff saluretics +C0261898|T037|PT|E944.3|ICD9CM|Saluretics causing adverse effects in therapeutic use|Saluretics causing adverse effects in therapeutic use +C0261899|T037|AB|E944.4|ICD9CM|Adv eff diuretics NEC|Adv eff diuretics NEC +C0261899|T037|PT|E944.4|ICD9CM|Other diuretics causing adverse effects in therapeutic use|Other diuretics causing adverse effects in therapeutic use +C0497076|T046|AB|E944.5|ICD9CM|Adv eff electrolyte agnt|Adv eff electrolyte agnt +C0497076|T046|PT|E944.5|ICD9CM|Electrolytic, caloric, and water-balance agents causing adverse effects in therapeutic use|Electrolytic, caloric, and water-balance agents causing adverse effects in therapeutic use +C0261901|T037|AB|E944.6|ICD9CM|Adv eff mineral salt NEC|Adv eff mineral salt NEC +C0261901|T037|PT|E944.6|ICD9CM|Other mineral salts, not elsewhere classified, causing adverse effects in therapeutic use|Other mineral salts, not elsewhere classified, causing adverse effects in therapeutic use +C0261902|T037|AB|E944.7|ICD9CM|Adv eff uric acid metab|Adv eff uric acid metab +C0261902|T037|PT|E944.7|ICD9CM|Uric acid metabolism drugs causing adverse effects in therapeutic use|Uric acid metabolism drugs causing adverse effects in therapeutic use +C0414020|T046|AB|E945.0|ICD9CM|Adv eff oxytocic agents|Adv eff oxytocic agents +C0414020|T046|PT|E945.0|ICD9CM|Oxytocic agents causing adverse effects in therapeutic use|Oxytocic agents causing adverse effects in therapeutic use +C0261905|T037|AB|E945.1|ICD9CM|Adv eff smooth musc relx|Adv eff smooth musc relx +C0261905|T037|PT|E945.1|ICD9CM|Smooth muscle relaxants causing adverse effects in therapeutic use|Smooth muscle relaxants causing adverse effects in therapeutic use +C0481202|T037|AB|E945.2|ICD9CM|Adv eff skelet musc relx|Adv eff skelet musc relx +C0481202|T037|PT|E945.2|ICD9CM|Skeletal muscle relaxants causing adverse effects in therapeutic use|Skeletal muscle relaxants causing adverse effects in therapeutic use +C0261907|T037|AB|E945.3|ICD9CM|Adv eff musc agt NEC/NOS|Adv eff musc agt NEC/NOS +C0261907|T037|PT|E945.3|ICD9CM|Other and unspecified drugs acting on muscles causing adverse effects in therapeutic use|Other and unspecified drugs acting on muscles causing adverse effects in therapeutic use +C0261908|T046|AB|E945.4|ICD9CM|Adv eff antitussives|Adv eff antitussives +C0261908|T046|PT|E945.4|ICD9CM|Antitussives causing adverse effects in therapeutic use|Antitussives causing adverse effects in therapeutic use +C0851326|T037|AB|E945.5|ICD9CM|Adv eff expectorants|Adv eff expectorants +C0851326|T037|PT|E945.5|ICD9CM|Expectorants causing adverse effects in therapeutic use|Expectorants causing adverse effects in therapeutic use +C0414040|T046|AB|E945.6|ICD9CM|Adv eff anti-common cold|Adv eff anti-common cold +C0414040|T046|PT|E945.6|ICD9CM|Anti-common cold drugs causing adverse effects in therapeutic use|Anti-common cold drugs causing adverse effects in therapeutic use +C0261911|T037|AB|E945.7|ICD9CM|Adv eff antiasthmatics|Adv eff antiasthmatics +C0261911|T037|PT|E945.7|ICD9CM|Antiasthmatics causing adverse effects in therapeutic use|Antiasthmatics causing adverse effects in therapeutic use +C0261912|T037|AB|E945.8|ICD9CM|Adv eff resp drg NEC/NOS|Adv eff resp drg NEC/NOS +C0261912|T037|PT|E945.8|ICD9CM|Other and unspecified respiratory drugs causing adverse effects in therapeutic use|Other and unspecified respiratory drugs causing adverse effects in therapeutic use +C0261914|T037|AB|E946.0|ICD9CM|Adv eff loc anti-infectv|Adv eff loc anti-infectv +C0261914|T037|PT|E946.0|ICD9CM|Local anti-infectives and anti-inflammatory drugs causing adverse effects in therapeutic use|Local anti-infectives and anti-inflammatory drugs causing adverse effects in therapeutic use +C0261915|T046|AB|E946.1|ICD9CM|Adv eff antipruritics|Adv eff antipruritics +C0261915|T046|PT|E946.1|ICD9CM|Antipruritics causing adverse effects in therapeutic use|Antipruritics causing adverse effects in therapeutic use +C0414053|T046|AB|E946.2|ICD9CM|Adv eff local astringent|Adv eff local astringent +C0414053|T046|PT|E946.2|ICD9CM|Local astringents and local detergents causing adverse effects in therapeutic use|Local astringents and local detergents causing adverse effects in therapeutic use +C0414054|T046|AB|E946.3|ICD9CM|Adv eff emollient/demulc|Adv eff emollient/demulc +C0414054|T046|PT|E946.3|ICD9CM|Emollients, demulcents, and protectants causing adverse effects in therapeutic use|Emollients, demulcents, and protectants causing adverse effects in therapeutic use +C0414055|T046|AB|E946.4|ICD9CM|Adv eff hair/scalp prep|Adv eff hair/scalp prep +C0261919|T037|AB|E946.5|ICD9CM|Adv eff eye anti-inf/drg|Adv eff eye anti-inf/drg +C0261919|T037|PT|E946.5|ICD9CM|Eye anti-infectives and other eye drugs causing adverse effects in therapeutic use|Eye anti-infectives and other eye drugs causing adverse effects in therapeutic use +C0261920|T037|AB|E946.6|ICD9CM|Adv eff ent anti-inf/drg|Adv eff ent anti-inf/drg +C0261921|T046|AB|E946.7|ICD9CM|Adv eff topic dental drg|Adv eff topic dental drg +C0261921|T046|PT|E946.7|ICD9CM|Dental drugs topically applied causing adverse effects in therapeutic use|Dental drugs topically applied causing adverse effects in therapeutic use +C0261922|T037|AB|E946.8|ICD9CM|Adv eff skin agent NEC|Adv eff skin agent NEC +C0261922|T037|PT|E946.8|ICD9CM|Other agents primarily affecting skin and mucous membrane causing adverse effects in therapeutic use|Other agents primarily affecting skin and mucous membrane causing adverse effects in therapeutic use +C0261923|T037|AB|E946.9|ICD9CM|Adv eff skin agent NOS|Adv eff skin agent NOS +C0261930|T037|HT|E947|ICD9CM|Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use|Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use +C0261925|T037|AB|E947.0|ICD9CM|Adv eff dietetics|Adv eff dietetics +C0261925|T037|PT|E947.0|ICD9CM|Dietetics causing adverse effects in therapeutic use|Dietetics causing adverse effects in therapeutic use +C0261926|T046|AB|E947.1|ICD9CM|Adv eff lipotropic drugs|Adv eff lipotropic drugs +C0261926|T046|PT|E947.1|ICD9CM|Lipotropic drugs causing adverse effects in therapeutic use|Lipotropic drugs causing adverse effects in therapeutic use +C1963710|T037|AB|E947.2|ICD9CM|Adv eff antidotes NEC|Adv eff antidotes NEC +C1963710|T037|PT|E947.2|ICD9CM|Antidotes and chelating agents, not elsewhere classified, causing adverse effects in therapeutic use|Antidotes and chelating agents, not elsewhere classified, causing adverse effects in therapeutic use +C0261928|T046|AB|E947.3|ICD9CM|Adv eff alcohol deter|Adv eff alcohol deter +C0261928|T046|PT|E947.3|ICD9CM|Alcohol deterrents causing adverse effects in therapeutic use|Alcohol deterrents causing adverse effects in therapeutic use +C0261929|T046|AB|E947.4|ICD9CM|Adv eff pharmaceut excip|Adv eff pharmaceut excip +C0261929|T046|PT|E947.4|ICD9CM|Pharmaceutical excipients causing adverse effects in therapeutic use|Pharmaceutical excipients causing adverse effects in therapeutic use +C0261930|T037|AB|E947.8|ICD9CM|Adv eff medicinal NEC|Adv eff medicinal NEC +C0261930|T037|PT|E947.8|ICD9CM|Other drugs and medicinal substances causing adverse effects in therapeutic use|Other drugs and medicinal substances causing adverse effects in therapeutic use +C0041831|T037|AB|E947.9|ICD9CM|Adv eff medicinal NOS|Adv eff medicinal NOS +C0041831|T037|PT|E947.9|ICD9CM|Unspecified drug or medicinal substance causing adverse effects in therapeutic use|Unspecified drug or medicinal substance causing adverse effects in therapeutic use +C0851327|T037|HT|E948|ICD9CM|Bacterial vaccines causing adverse effects in therapeutic use|Bacterial vaccines causing adverse effects in therapeutic use +C0851328|T046|AB|E948.0|ICD9CM|Adv eff bcg vaccine|Adv eff bcg vaccine +C0851328|T046|PT|E948.0|ICD9CM|Bcg vaccine causing adverse effects in therapeutic use|Bcg vaccine causing adverse effects in therapeutic use +C0261933|T046|AB|E948.1|ICD9CM|Adv eff typhoid vaccine|Adv eff typhoid vaccine +C0261933|T046|PT|E948.1|ICD9CM|Typhoid and paratyphoid vaccines causing adverse effects in therapeutic use|Typhoid and paratyphoid vaccines causing adverse effects in therapeutic use +C0261934|T037|AB|E948.2|ICD9CM|Adv eff cholera vaccine|Adv eff cholera vaccine +C0261934|T037|PT|E948.2|ICD9CM|Cholera vaccine causing adverse effects in therapeutic use|Cholera vaccine causing adverse effects in therapeutic use +C0851329|T037|AB|E948.3|ICD9CM|Adv eff plague vaccine|Adv eff plague vaccine +C0851329|T037|PT|E948.3|ICD9CM|Plague vaccine causing adverse effects in therapeutic use|Plague vaccine causing adverse effects in therapeutic use +C0261936|T037|AB|E948.4|ICD9CM|Adv eff tetanus vaccine|Adv eff tetanus vaccine +C0261936|T037|PT|E948.4|ICD9CM|Tetanus vaccine causing adverse effects in therapeutic use|Tetanus vaccine causing adverse effects in therapeutic use +C0261937|T037|AB|E948.5|ICD9CM|Adv eff diphther vaccine|Adv eff diphther vaccine +C0261937|T037|PT|E948.5|ICD9CM|Diphtheria vaccine causing adverse effects in therapeutic use|Diphtheria vaccine causing adverse effects in therapeutic use +C0261938|T046|AB|E948.6|ICD9CM|Adv eff pertussis vaccin|Adv eff pertussis vaccin +C0261939|T037|AB|E948.8|ICD9CM|Adv eff bact vac NEC/NOS|Adv eff bact vac NEC/NOS +C0261939|T037|PT|E948.8|ICD9CM|Other and unspecified bacterial vaccines causing adverse effects in therapeutic use|Other and unspecified bacterial vaccines causing adverse effects in therapeutic use +C0261940|T046|AB|E948.9|ICD9CM|Adv eff mix bact vaccine|Adv eff mix bact vaccine +C0261950|T046|HT|E949|ICD9CM|Other vaccines and biological substances causing adverse effects in therapeutic use|Other vaccines and biological substances causing adverse effects in therapeutic use +C0261942|T037|AB|E949.0|ICD9CM|Adv eff smallpox vaccine|Adv eff smallpox vaccine +C0261942|T037|PT|E949.0|ICD9CM|Smallpox vaccine causing adverse effects in therapeutic use|Smallpox vaccine causing adverse effects in therapeutic use +C0261943|T037|AB|E949.1|ICD9CM|Adv eff rabies vaccine|Adv eff rabies vaccine +C0261943|T037|PT|E949.1|ICD9CM|Rabies vaccine causing adverse effects in therapeutic use|Rabies vaccine causing adverse effects in therapeutic use +C0261944|T037|AB|E949.2|ICD9CM|Adv eff typhus vaccine|Adv eff typhus vaccine +C0261944|T037|PT|E949.2|ICD9CM|Typhus vaccine causing adverse effects in therapeutic use|Typhus vaccine causing adverse effects in therapeutic use +C0261945|T037|AB|E949.3|ICD9CM|Adv eff yellow fever vac|Adv eff yellow fever vac +C0261945|T037|PT|E949.3|ICD9CM|Yellow fever vaccine causing adverse effects in therapeutic use|Yellow fever vaccine causing adverse effects in therapeutic use +C0261946|T037|AB|E949.4|ICD9CM|Adv eff measles vaccine|Adv eff measles vaccine +C0261946|T037|PT|E949.4|ICD9CM|Measles vaccine causing adverse effects in therapeutic use|Measles vaccine causing adverse effects in therapeutic use +C0261947|T037|AB|E949.5|ICD9CM|Adv eff polio vaccine|Adv eff polio vaccine +C0261947|T037|PT|E949.5|ICD9CM|Poliomyelitis vaccine causing adverse effects in therapeutic use|Poliomyelitis vaccine causing adverse effects in therapeutic use +C0261948|T037|AB|E949.6|ICD9CM|Adv eff viral vacc NEC|Adv eff viral vacc NEC +C0261948|T037|PT|E949.6|ICD9CM|Other and unspecified viral and rickettsial vaccines causing adverse effects in therapeutic use|Other and unspecified viral and rickettsial vaccines causing adverse effects in therapeutic use +C0261949|T037|AB|E949.7|ICD9CM|Adv eff mixed viral-bact|Adv eff mixed viral-bact +C0261950|T046|AB|E949.9|ICD9CM|Adv eff biologic NEC/NOS|Adv eff biologic NEC/NOS +C0261950|T046|PT|E949.9|ICD9CM|Other and unspecified vaccines and biological substances causing adverse effects in therapeutic use|Other and unspecified vaccines and biological substances causing adverse effects in therapeutic use +C0261951|T037|HT|E950|ICD9CM|Suicide and self-inflicted poisoning by solid or liquid substances|Suicide and self-inflicted poisoning by solid or liquid substances +C0178360|T037|HT|E950-E959.9|ICD9CM|SUICIDE AND SELF-INFLICTED INJURY|SUICIDE AND SELF-INFLICTED INJURY +C0261952|T037|AB|E950.0|ICD9CM|Poison-analgesics|Poison-analgesics +C0261952|T037|PT|E950.0|ICD9CM|Suicide and self-inflicted poisoning by analgesics, antipyretics, and antirheumatics|Suicide and self-inflicted poisoning by analgesics, antipyretics, and antirheumatics +C0261953|T037|AB|E950.1|ICD9CM|Poison-barbiturates|Poison-barbiturates +C0261953|T037|PT|E950.1|ICD9CM|Suicide and self-inflicted poisoning by barbiturates|Suicide and self-inflicted poisoning by barbiturates +C0261954|T037|AB|E950.2|ICD9CM|Poison-sedat/hypnotic|Poison-sedat/hypnotic +C0261954|T037|PT|E950.2|ICD9CM|Suicide and self-inflicted poisoning by other sedatives and hypnotics|Suicide and self-inflicted poisoning by other sedatives and hypnotics +C0261955|T037|AB|E950.3|ICD9CM|Poison-psychotropic agt|Poison-psychotropic agt +C0261955|T037|PT|E950.3|ICD9CM|Suicide and self-inflicted poisoning by tranquilizers and other psychotropic agents|Suicide and self-inflicted poisoning by tranquilizers and other psychotropic agents +C0261956|T037|AB|E950.4|ICD9CM|Poison-drug/medicin NEC|Poison-drug/medicin NEC +C0261956|T037|PT|E950.4|ICD9CM|Suicide and self-inflicted poisoning by other specified drugs and medicinal substances|Suicide and self-inflicted poisoning by other specified drugs and medicinal substances +C0261957|T037|AB|E950.5|ICD9CM|Poison-drug/medicin NOS|Poison-drug/medicin NOS +C0261957|T037|PT|E950.5|ICD9CM|Suicide and self-inflicted poisoning by unspecified drug or medicinal substance|Suicide and self-inflicted poisoning by unspecified drug or medicinal substance +C0261958|T037|AB|E950.6|ICD9CM|Poison-agricult agent|Poison-agricult agent +C0261959|T037|AB|E950.7|ICD9CM|Poison-corrosiv/caustic|Poison-corrosiv/caustic +C0261959|T037|PT|E950.7|ICD9CM|Suicide and self-inflicted poisoning by corrosive and caustic substances|Suicide and self-inflicted poisoning by corrosive and caustic substances +C0261960|T037|AB|E950.8|ICD9CM|Poison-arsenic|Poison-arsenic +C0261960|T037|PT|E950.8|ICD9CM|Suicide and self-inflicted poisoning by arsenic and its compounds|Suicide and self-inflicted poisoning by arsenic and its compounds +C0261961|T037|AB|E950.9|ICD9CM|Poison-solid/liquid NEC|Poison-solid/liquid NEC +C0261961|T037|PT|E950.9|ICD9CM|Suicide and self-inflicted poisoning by other and unspecified solid and liquid substances|Suicide and self-inflicted poisoning by other and unspecified solid and liquid substances +C0261962|T037|HT|E951|ICD9CM|Suicide and self-inflicted poisoning by gases in domestic use|Suicide and self-inflicted poisoning by gases in domestic use +C0261963|T037|AB|E951.0|ICD9CM|Poison-piped gas|Poison-piped gas +C0261963|T037|PT|E951.0|ICD9CM|Suicide and self-inflicted poisoning by gas distributed by pipeline|Suicide and self-inflicted poisoning by gas distributed by pipeline +C0261964|T037|AB|E951.1|ICD9CM|Poison-gas in container|Poison-gas in container +C0261964|T037|PT|E951.1|ICD9CM|Suicide and self-inflicted poisoning by liquefied petroleum gas distributed in mobile containers|Suicide and self-inflicted poisoning by liquefied petroleum gas distributed in mobile containers +C0261965|T037|AB|E951.8|ICD9CM|Poison-utility gas NEC|Poison-utility gas NEC +C0261965|T037|PT|E951.8|ICD9CM|Suicide and self-inflicted poisoning by other utility gas|Suicide and self-inflicted poisoning by other utility gas +C0261966|T037|HT|E952|ICD9CM|Suicide and self-inflicted poisoning by other gases and vapors|Suicide and self-inflicted poisoning by other gases and vapors +C0261967|T037|AB|E952.0|ICD9CM|Poison-exhaust gas|Poison-exhaust gas +C0261967|T037|PT|E952.0|ICD9CM|Suicide and self-inflicted poisoning by motor vehicle exhaust gas|Suicide and self-inflicted poisoning by motor vehicle exhaust gas +C0261968|T037|AB|E952.1|ICD9CM|Poison-co NEC|Poison-co NEC +C0261968|T037|PT|E952.1|ICD9CM|Suicide and self-inflicted poisoning by other carbon monoxide|Suicide and self-inflicted poisoning by other carbon monoxide +C0261969|T037|AB|E952.8|ICD9CM|Poison-gas/vapor NEC|Poison-gas/vapor NEC +C0261969|T037|PT|E952.8|ICD9CM|Suicide and self-inflicted poisoning by other specified gases and vapors|Suicide and self-inflicted poisoning by other specified gases and vapors +C0261970|T037|AB|E952.9|ICD9CM|Poison-gas/vapor NOS|Poison-gas/vapor NOS +C0261970|T037|PT|E952.9|ICD9CM|Suicide and self-inflicted poisoning by unspecified gases and vapors|Suicide and self-inflicted poisoning by unspecified gases and vapors +C0261971|T037|HT|E953|ICD9CM|Suicide and self-inflicted injury by hanging, strangulation, and suffocation|Suicide and self-inflicted injury by hanging, strangulation, and suffocation +C0261972|T037|AB|E953.0|ICD9CM|Injury-hanging|Injury-hanging +C0261972|T037|PT|E953.0|ICD9CM|Suicide and self-inflicted injury by hanging|Suicide and self-inflicted injury by hanging +C0261973|T037|AB|E953.1|ICD9CM|Injury-suff w plas bag|Injury-suff w plas bag +C0261973|T037|PT|E953.1|ICD9CM|Suicide and self-inflicted injury by suffocation by plastic bag|Suicide and self-inflicted injury by suffocation by plastic bag +C0261974|T037|AB|E953.8|ICD9CM|Injury-strang/suff NEC|Injury-strang/suff NEC +C0261974|T037|PT|E953.8|ICD9CM|Suicide and self-inflicted injury by other specified means|Suicide and self-inflicted injury by other specified means +C0038662|T037|AB|E953.9|ICD9CM|Injury-strang/suff NOS|Injury-strang/suff NOS +C0038662|T037|PT|E953.9|ICD9CM|Suicide and self-inflicted injury by unspecified means|Suicide and self-inflicted injury by unspecified means +C0558960|T037|AB|E954|ICD9CM|Injury-submersion|Injury-submersion +C0558960|T037|PT|E954|ICD9CM|Suicide and self-inflicted injury by submersion [drowning]|Suicide and self-inflicted injury by submersion [drowning] +C0490043|T037|HT|E955|ICD9CM|Suicide and self-inflicted injury by firearms, air guns, and explosives|Suicide and self-inflicted injury by firearms, air guns, and explosives +C0261977|T037|AB|E955.0|ICD9CM|Injury-handgun|Injury-handgun +C0261977|T037|PT|E955.0|ICD9CM|Suicide and self-inflicted injury by handgun|Suicide and self-inflicted injury by handgun +C0261978|T037|AB|E955.1|ICD9CM|Injury-shotgun|Injury-shotgun +C0261978|T037|PT|E955.1|ICD9CM|Suicide and self-inflicted injury by shotgun|Suicide and self-inflicted injury by shotgun +C0261979|T037|AB|E955.2|ICD9CM|Injury-hunting rifle|Injury-hunting rifle +C0261979|T037|PT|E955.2|ICD9CM|Suicide and self-inflicted injury by hunting rifle|Suicide and self-inflicted injury by hunting rifle +C0261980|T037|AB|E955.3|ICD9CM|Injury-military firearm|Injury-military firearm +C0261980|T037|PT|E955.3|ICD9CM|Suicide and self-inflicted injury by military firearms|Suicide and self-inflicted injury by military firearms +C0261981|T037|AB|E955.4|ICD9CM|Injury-firearm NEC|Injury-firearm NEC +C0261981|T037|PT|E955.4|ICD9CM|Suicide and self-inflicted injury by other and unspecified firearm|Suicide and self-inflicted injury by other and unspecified firearm +C0261982|T037|AB|E955.5|ICD9CM|Injury-explosives|Injury-explosives +C0261982|T037|PT|E955.5|ICD9CM|Suicide and self-inflicted injury by explosives|Suicide and self-inflicted injury by explosives +C0490036|T037|AB|E955.6|ICD9CM|Self inflict acc-air gun|Self inflict acc-air gun +C0490036|T037|PT|E955.6|ICD9CM|Suicide and self-inflicted injury by air gun|Suicide and self-inflicted injury by air gun +C1135315|T037|AB|E955.7|ICD9CM|Self inj-paintball gun|Self inj-paintball gun +C1135315|T037|PT|E955.7|ICD9CM|Suicide and self-inflicted injury by paintball gun|Suicide and self-inflicted injury by paintball gun +C0375754|T037|AB|E955.9|ICD9CM|Injury-firearm/expl NOS|Injury-firearm/expl NOS +C0375754|T037|PT|E955.9|ICD9CM|Suicide and self-inflicted injury by firearms and explosives, unspecified|Suicide and self-inflicted injury by firearms and explosives, unspecified +C0261983|T037|AB|E956|ICD9CM|Injury-cut instrument|Injury-cut instrument +C0261983|T037|PT|E956|ICD9CM|Suicide and self-inflicted injury by cutting and piercing instrument|Suicide and self-inflicted injury by cutting and piercing instrument +C0261984|T037|HT|E957|ICD9CM|Suicide and self-inflicted injuries by jumping from high place|Suicide and self-inflicted injuries by jumping from high place +C0261985|T037|AB|E957.0|ICD9CM|Injury-jump fm residence|Injury-jump fm residence +C0261985|T037|PT|E957.0|ICD9CM|Suicide and self-inflicted injuries by jumping from residential premises|Suicide and self-inflicted injuries by jumping from residential premises +C0546831|T037|AB|E957.1|ICD9CM|Injury-jump fm struc NEC|Injury-jump fm struc NEC +C0546831|T037|PT|E957.1|ICD9CM|Suicide and self-inflicted injuries by jumping from other man-made structures|Suicide and self-inflicted injuries by jumping from other man-made structures +C0261987|T037|AB|E957.2|ICD9CM|Injury-jump fm natur sit|Injury-jump fm natur sit +C0261987|T037|PT|E957.2|ICD9CM|Suicide and self-inflicted injuries by jumping from natural sites|Suicide and self-inflicted injuries by jumping from natural sites +C0261988|T037|AB|E957.9|ICD9CM|Injury-jump NEC|Injury-jump NEC +C0261988|T037|PT|E957.9|ICD9CM|Suicide and self-inflicted injuries by jumping from unspecified site|Suicide and self-inflicted injuries by jumping from unspecified site +C0261989|T037|HT|E958|ICD9CM|Suicide and self-inflicted injury by other and unspecified means|Suicide and self-inflicted injury by other and unspecified means +C0261990|T037|AB|E958.0|ICD9CM|Injury-moving object|Injury-moving object +C0261990|T037|PT|E958.0|ICD9CM|Suicide and self-inflicted injury by jumping or lying before moving object|Suicide and self-inflicted injury by jumping or lying before moving object +C0261991|T037|AB|E958.1|ICD9CM|Injury-burn, fire|Injury-burn, fire +C0261991|T037|PT|E958.1|ICD9CM|Suicide and self-inflicted injury by burns, fire|Suicide and self-inflicted injury by burns, fire +C0261992|T037|AB|E958.2|ICD9CM|Injury-scald|Injury-scald +C0261992|T037|PT|E958.2|ICD9CM|Suicide and self-inflicted injury by scald|Suicide and self-inflicted injury by scald +C0261993|T037|AB|E958.3|ICD9CM|Injury-extreme cold|Injury-extreme cold +C0261993|T037|PT|E958.3|ICD9CM|Suicide and self-inflicted injury by extremes of cold|Suicide and self-inflicted injury by extremes of cold +C0261994|T037|AB|E958.4|ICD9CM|Injury-electrocution|Injury-electrocution +C0261994|T037|PT|E958.4|ICD9CM|Suicide and self-inflicted injury by electrocution|Suicide and self-inflicted injury by electrocution +C0261995|T037|AB|E958.5|ICD9CM|Injury-motor veh crash|Injury-motor veh crash +C0261995|T037|PT|E958.5|ICD9CM|Suicide and self-inflicted injury by crashing of motor vehicle|Suicide and self-inflicted injury by crashing of motor vehicle +C0261996|T037|AB|E958.6|ICD9CM|Injury-aircraft crash|Injury-aircraft crash +C0261996|T037|PT|E958.6|ICD9CM|Suicide and self-inflicted injury by crashing of aircraft|Suicide and self-inflicted injury by crashing of aircraft +C0261997|T037|AB|E958.7|ICD9CM|Injury-caustic substance|Injury-caustic substance +C0261997|T037|PT|E958.7|ICD9CM|Suicide and self-inflicted injury by caustic substances, except poisoning|Suicide and self-inflicted injury by caustic substances, except poisoning +C0261974|T037|AB|E958.8|ICD9CM|Injury-NEC|Injury-NEC +C0261974|T037|PT|E958.8|ICD9CM|Suicide and self-inflicted injury by other specified means|Suicide and self-inflicted injury by other specified means +C0038662|T037|AB|E958.9|ICD9CM|Injury-NOS|Injury-NOS +C0038662|T037|PT|E958.9|ICD9CM|Suicide and self-inflicted injury by unspecified means|Suicide and self-inflicted injury by unspecified means +C0481358|T037|AB|E959|ICD9CM|Late eff of self-injury|Late eff of self-injury +C0481358|T037|PT|E959|ICD9CM|Late effects of self-inflicted injury|Late effects of self-inflicted injury +C0261999|T037|HT|E960|ICD9CM|Fight, brawl, rape|Fight, brawl, rape +C0178361|T033|HT|E960-E969.9|ICD9CM|HOMICIDE AND INJURY PURPOSELY INFLICTED BY OTHER PERSONS|HOMICIDE AND INJURY PURPOSELY INFLICTED BY OTHER PERSONS +C0262001|T037|PT|E961|ICD9CM|Assault by corrosive or caustic substance, except poisoning|Assault by corrosive or caustic substance, except poisoning +C0262001|T037|AB|E961|ICD9CM|Assault-corrosiv/caust|Assault-corrosiv/caust +C0262002|T037|HT|E962|ICD9CM|Assault by poisoning|Assault by poisoning +C0262003|T037|PT|E962.0|ICD9CM|Assault by drugs and medicinal substances|Assault by drugs and medicinal substances +C0262003|T037|AB|E962.0|ICD9CM|Assault-pois w medic agt|Assault-pois w medic agt +C0262004|T037|PT|E962.1|ICD9CM|Assault by other solid and liquid substances|Assault by other solid and liquid substances +C0262004|T037|AB|E962.1|ICD9CM|Assault-pois w solid/liq|Assault-pois w solid/liq +C0262005|T037|PT|E962.2|ICD9CM|Assault by other gases and vapors|Assault by other gases and vapors +C0262005|T037|AB|E962.2|ICD9CM|Assault-pois w gas/vapor|Assault-pois w gas/vapor +C0262002|T037|PT|E962.9|ICD9CM|Assault by unspecified poisoning|Assault by unspecified poisoning +C0262002|T037|AB|E962.9|ICD9CM|Assault-poisoning NOS|Assault-poisoning NOS +C0262007|T037|PT|E963|ICD9CM|Assault by hanging and strangulation|Assault by hanging and strangulation +C0262007|T037|AB|E963|ICD9CM|Assault-hanging/strangul|Assault-hanging/strangul +C0262008|T037|PT|E964|ICD9CM|Assault by submersion [drowning]|Assault by submersion [drowning] +C0262008|T037|AB|E964|ICD9CM|Assault-submersion|Assault-submersion +C0262009|T037|HT|E965|ICD9CM|Assault by firearms and explosives|Assault by firearms and explosives +C0262010|T037|PT|E965.0|ICD9CM|Assault by handgun|Assault by handgun +C0262010|T037|AB|E965.0|ICD9CM|Assault-handgun|Assault-handgun +C0262011|T037|PT|E965.1|ICD9CM|Assault by shotgun|Assault by shotgun +C0262011|T037|AB|E965.1|ICD9CM|Assault-shotgun|Assault-shotgun +C0262012|T037|PT|E965.2|ICD9CM|Assault by hunting rifle|Assault by hunting rifle +C0262012|T037|AB|E965.2|ICD9CM|Assault-hunting rifle|Assault-hunting rifle +C0262013|T037|PT|E965.3|ICD9CM|Assault by military firearms|Assault by military firearms +C0262013|T037|AB|E965.3|ICD9CM|Assault-military weapon|Assault-military weapon +C0480620|T037|PT|E965.4|ICD9CM|Assault by other and unspecified firearm|Assault by other and unspecified firearm +C0480620|T037|AB|E965.4|ICD9CM|Assault-firearm NEC|Assault-firearm NEC +C0262015|T037|PT|E965.5|ICD9CM|Assault by antipersonnel bomb|Assault by antipersonnel bomb +C0262015|T037|AB|E965.5|ICD9CM|Assault-antiperson bomb|Assault-antiperson bomb +C0418380|T037|PT|E965.6|ICD9CM|Assault by gasoline bomb|Assault by gasoline bomb +C0418380|T037|AB|E965.6|ICD9CM|Assault-gasoline bomb|Assault-gasoline bomb +C0262017|T037|PT|E965.7|ICD9CM|Assault by letter bomb|Assault by letter bomb +C0262017|T037|AB|E965.7|ICD9CM|Assault-letter bomb|Assault-letter bomb +C0262018|T037|PT|E965.8|ICD9CM|Assault by other specified explosive|Assault by other specified explosive +C0262018|T037|AB|E965.8|ICD9CM|Assault-explosive NEC|Assault-explosive NEC +C0262019|T037|PT|E965.9|ICD9CM|Assault by unspecified explosive|Assault by unspecified explosive +C0262019|T037|AB|E965.9|ICD9CM|Assault-explosive NOS|Assault-explosive NOS +C0418384|T037|PT|E966|ICD9CM|Assault by cutting and piercing instrument|Assault by cutting and piercing instrument +C0418384|T037|AB|E966|ICD9CM|Assault-cutting instr|Assault-cutting instr +C0878756|T033|HT|E967|ICD9CM|Perpetrator of child and adult abuse|Perpetrator of child and adult abuse +C0878757|T033|AB|E967.0|ICD9CM|Abuse by fther/stpfth/bf|Abuse by fther/stpfth/bf +C0878757|T033|PT|E967.0|ICD9CM|Perpetrator of child and adult abuse, by father, stepfather, or boyfriend|Perpetrator of child and adult abuse, by father, stepfather, or boyfriend +C0262023|T037|AB|E967.1|ICD9CM|Child abuse by pers NEC|Child abuse by pers NEC +C0262023|T037|PT|E967.1|ICD9CM|Perpetrator of child and adult abuse, by other specified person|Perpetrator of child and adult abuse, by other specified person +C0878758|T033|AB|E967.2|ICD9CM|Abuse by mther/stpmth/gf|Abuse by mther/stpmth/gf +C0878758|T033|PT|E967.2|ICD9CM|Perpetrator of child and adult abuse, by mother, stepmother, or girlfriend|Perpetrator of child and adult abuse, by mother, stepmother, or girlfriend +C0375757|T037|AB|E967.3|ICD9CM|Batter by spouse/partner|Batter by spouse/partner +C0375757|T037|PT|E967.3|ICD9CM|Perpetrator of child and adult abuse, by spouse or partner|Perpetrator of child and adult abuse, by spouse or partner +C0375758|T037|AB|E967.4|ICD9CM|Battering by child|Battering by child +C0375758|T037|PT|E967.4|ICD9CM|Perpetrator of child and adult abuse, by child|Perpetrator of child and adult abuse, by child +C0375759|T037|AB|E967.5|ICD9CM|Battering by sibling|Battering by sibling +C0375759|T037|PT|E967.5|ICD9CM|Perpetrator of child and adult abuse, by sibling|Perpetrator of child and adult abuse, by sibling +C0375760|T037|AB|E967.6|ICD9CM|Battering by grandparent|Battering by grandparent +C0375760|T037|PT|E967.6|ICD9CM|Perpetrator of child and adult abuse, by grandparent|Perpetrator of child and adult abuse, by grandparent +C0375761|T037|AB|E967.7|ICD9CM|Batter by other relative|Batter by other relative +C0375761|T037|PT|E967.7|ICD9CM|Perpetrator of child and adult abuse, by other relative|Perpetrator of child and adult abuse, by other relative +C0375762|T037|AB|E967.8|ICD9CM|Batter by non-relative|Batter by non-relative +C0375762|T037|PT|E967.8|ICD9CM|Perpetrator of child and adult abuse, by non-related caregiver|Perpetrator of child and adult abuse, by non-related caregiver +C0375763|T037|AB|E967.9|ICD9CM|Child abuse NOS|Child abuse NOS +C0375763|T037|PT|E967.9|ICD9CM|Perpetrator of child and adult abuse, by unspecified person|Perpetrator of child and adult abuse, by unspecified person +C0262024|T037|HT|E968|ICD9CM|Assault by other and unspecified means|Assault by other and unspecified means +C0262025|T037|PT|E968.0|ICD9CM|Assault by fire|Assault by fire +C0262025|T037|AB|E968.0|ICD9CM|Assault-fire|Assault-fire +C0480686|T037|PT|E968.1|ICD9CM|Assault by pushing from a high place|Assault by pushing from a high place +C0480686|T037|AB|E968.1|ICD9CM|Asslt-push from hi place|Asslt-push from hi place +C0262027|T037|PT|E968.2|ICD9CM|Assault by striking by blunt or thrown object|Assault by striking by blunt or thrown object +C0262027|T037|AB|E968.2|ICD9CM|Assault-striking w obj|Assault-striking w obj +C0262028|T037|PT|E968.3|ICD9CM|Assault by hot liquid|Assault by hot liquid +C0262028|T037|AB|E968.3|ICD9CM|Assault-hot liquid|Assault-hot liquid +C0418343|T033|PT|E968.4|ICD9CM|Assault by criminal neglect|Assault by criminal neglect +C0418343|T033|AB|E968.4|ICD9CM|Assault-criminal neglect|Assault-criminal neglect +C0375764|T037|PT|E968.5|ICD9CM|Assault by transport vehicle|Assault by transport vehicle +C0375764|T037|AB|E968.5|ICD9CM|Asslt-transport vehicle|Asslt-transport vehicle +C0490037|T037|AB|E968.6|ICD9CM|Assault - air gun|Assault - air gun +C0490037|T037|PT|E968.6|ICD9CM|Assault by air gun|Assault by air gun +C0418414|T037|PT|E968.7|ICD9CM|Assault by human bite|Assault by human bite +C0418414|T037|AB|E968.7|ICD9CM|Human bite - assault|Human bite - assault +C0262030|T037|PT|E968.8|ICD9CM|Assault by other specified means|Assault by other specified means +C0262030|T037|AB|E968.8|ICD9CM|Assault NEC|Assault NEC +C0004063|T037|PT|E968.9|ICD9CM|Assault by unspecified means|Assault by unspecified means +C0004063|T037|AB|E968.9|ICD9CM|Assault NOS|Assault NOS +C0418456|T037|AB|E969|ICD9CM|Late effect assault|Late effect assault +C0418456|T037|PT|E969|ICD9CM|Late effects of injury purposely inflicted by other person|Late effects of injury purposely inflicted by other person +C0262032|T037|PT|E970|ICD9CM|Injury due to legal intervention by firearms|Injury due to legal intervention by firearms +C0262032|T037|AB|E970|ICD9CM|Legal intervent-firearm|Legal intervent-firearm +C0178362|T037|HT|E970-E978.9|ICD9CM|LEGAL INTERVENTION|LEGAL INTERVENTION +C0262033|T037|PT|E971|ICD9CM|Injury due to legal intervention by explosives|Injury due to legal intervention by explosives +C0262033|T037|AB|E971|ICD9CM|Legal intervent-explosiv|Legal intervent-explosiv +C0262034|T037|PT|E972|ICD9CM|Injury due to legal intervention by gas|Injury due to legal intervention by gas +C0262034|T037|AB|E972|ICD9CM|Legal intervent-gas|Legal intervent-gas +C0262035|T037|PT|E973|ICD9CM|Injury due to legal intervention by blunt object|Injury due to legal intervention by blunt object +C0262035|T037|AB|E973|ICD9CM|Legal interven-blunt obj|Legal interven-blunt obj +C0418479|T037|PT|E974|ICD9CM|Injury due to legal intervention by cutting and piercing instrument|Injury due to legal intervention by cutting and piercing instrument +C0418479|T037|AB|E974|ICD9CM|Legal interven-cut instr|Legal interven-cut instr +C0262037|T037|PT|E975|ICD9CM|Injury due to legal intervention by other specified means|Injury due to legal intervention by other specified means +C0262037|T037|AB|E975|ICD9CM|Legal intervention NEC|Legal intervention NEC +C0262038|T037|PT|E976|ICD9CM|Injury due to legal intervention by unspecified means|Injury due to legal intervention by unspecified means +C0262038|T037|AB|E976|ICD9CM|Legal intervention NOS|Legal intervention NOS +C0481367|T037|AB|E977|ICD9CM|Late eff-legal intervent|Late eff-legal intervent +C0481367|T037|PT|E977|ICD9CM|Late effects of injuries due to legal intervention|Late effects of injuries due to legal intervention +C2077104|T037|HT|E979|ICD9CM|Terrorism|Terrorism +C2077104|T037|HT|E979-E979.9|ICD9CM|TERRORISM|TERRORISM +C1135316|T037|PT|E979.0|ICD9CM|Terrorism involving explosion of marine weapons|Terrorism involving explosion of marine weapons +C1135316|T037|AB|E979.0|ICD9CM|Terrorism,marine weapons|Terrorism,marine weapons +C1135317|T037|PT|E979.1|ICD9CM|Terrorism involving destruction of aircraft|Terrorism involving destruction of aircraft +C1135317|T037|AB|E979.1|ICD9CM|Terrorism,dest aircraft|Terrorism,dest aircraft +C1135318|T037|PT|E979.2|ICD9CM|Terrorism involving other explosions and fragments|Terrorism involving other explosions and fragments +C1135318|T037|AB|E979.2|ICD9CM|Terrorism,explosions|Terrorism,explosions +C1135319|T037|PT|E979.3|ICD9CM|Terrorism involving fires|Terrorism involving fires +C1135319|T037|AB|E979.3|ICD9CM|Terrorism, fires|Terrorism, fires +C1135320|T037|PT|E979.4|ICD9CM|Terrorism involving firearms|Terrorism involving firearms +C1135320|T037|AB|E979.4|ICD9CM|Terrorism, firearms|Terrorism, firearms +C1135321|T037|PT|E979.5|ICD9CM|Terrorism involving nuclear weapons|Terrorism involving nuclear weapons +C1135321|T037|AB|E979.5|ICD9CM|Terrorism, nuc weapons|Terrorism, nuc weapons +C1135322|T037|PT|E979.6|ICD9CM|Terrorism involving biological weapons|Terrorism involving biological weapons +C1135322|T037|AB|E979.6|ICD9CM|Terrorism, biologicals|Terrorism, biologicals +C1135323|T037|PT|E979.7|ICD9CM|Terrorism involving chemical weapons|Terrorism involving chemical weapons +C1135323|T037|AB|E979.7|ICD9CM|Terrorism, chemicals|Terrorism, chemicals +C1135324|T037|PT|E979.8|ICD9CM|Terrorism involving other means|Terrorism involving other means +C1135324|T037|AB|E979.8|ICD9CM|Terrorism, NEC/NOS|Terrorism, NEC/NOS +C1135325|T037|PT|E979.9|ICD9CM|Terrorism secondary effects|Terrorism secondary effects +C1135325|T037|AB|E979.9|ICD9CM|Terrorism, secondary|Terrorism, secondary +C0262040|T037|HT|E980|ICD9CM|Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted|Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted +C0178363|T037|HT|E980-E989.9|ICD9CM|INJURY UNDETERMINED WHETHER ACCIDENTALLY OR PURPOSELY INFLICTED|INJURY UNDETERMINED WHETHER ACCIDENTALLY OR PURPOSELY INFLICTED +C0262041|T037|AB|E980.0|ICD9CM|Undeterm pois-analgesics|Undeterm pois-analgesics +C0262042|T037|PT|E980.1|ICD9CM|Poisoning by barbiturates, undetermined whether accidentally or purposely inflicted|Poisoning by barbiturates, undetermined whether accidentally or purposely inflicted +C0262042|T037|AB|E980.1|ICD9CM|Undeterm pois-barbiturat|Undeterm pois-barbiturat +C0262043|T037|PT|E980.2|ICD9CM|Poisoning by other sedatives and hypnotics, undetermined whether accidentally or purposely inflicted|Poisoning by other sedatives and hypnotics, undetermined whether accidentally or purposely inflicted +C0262043|T037|AB|E980.2|ICD9CM|Undet pois-sed/hypn NEC|Undet pois-sed/hypn NEC +C0262044|T037|AB|E980.3|ICD9CM|Undeterm pois-psychotrop|Undeterm pois-psychotrop +C0262045|T037|AB|E980.4|ICD9CM|Undet pois-med agnt NEC|Undet pois-med agnt NEC +C0262046|T037|AB|E980.5|ICD9CM|Undet pois-med agnt NOS|Undet pois-med agnt NOS +C0262047|T037|AB|E980.6|ICD9CM|Undet pois-corros/caust|Undet pois-corros/caust +C0262048|T037|AB|E980.7|ICD9CM|Undet pois-agricult agnt|Undet pois-agricult agnt +C0262049|T037|PT|E980.8|ICD9CM|Poisoning by arsenic and its compounds, undetermined whether accidentally or purposely inflicted|Poisoning by arsenic and its compounds, undetermined whether accidentally or purposely inflicted +C0262049|T037|AB|E980.8|ICD9CM|Undeter pois-arsenic|Undeter pois-arsenic +C0262050|T037|AB|E980.9|ICD9CM|Undeter pois-sol/liq NEC|Undeter pois-sol/liq NEC +C0262051|T037|HT|E981|ICD9CM|Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted|Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted +C0262052|T037|PT|E981.0|ICD9CM|Poisoning by gas distributed by pipeline, undetermined whether accidentally or purposely inflicted|Poisoning by gas distributed by pipeline, undetermined whether accidentally or purposely inflicted +C0262052|T037|AB|E981.0|ICD9CM|Undeter pois-piped gas|Undeter pois-piped gas +C0262053|T037|AB|E981.1|ICD9CM|Undet pois-container gas|Undet pois-container gas +C0262054|T037|PT|E981.8|ICD9CM|Poisoning by other utility gas, undetermined whether accidentally or purposely inflicted|Poisoning by other utility gas, undetermined whether accidentally or purposely inflicted +C0262054|T037|AB|E981.8|ICD9CM|Undet pois-util gas NEC|Undet pois-util gas NEC +C0262055|T037|HT|E982|ICD9CM|Poisoning by other gases, undetermined whether accidentally or purposely inflicted|Poisoning by other gases, undetermined whether accidentally or purposely inflicted +C0262056|T037|PT|E982.0|ICD9CM|Poisoning by motor vehicle exhaust gas, undetermined whether accidentally or purposely inflicted|Poisoning by motor vehicle exhaust gas, undetermined whether accidentally or purposely inflicted +C0262056|T037|AB|E982.0|ICD9CM|Undeter pois-exhaust gas|Undeter pois-exhaust gas +C0262057|T037|PT|E982.1|ICD9CM|Poisoning by other carbon monoxide, undetermined whether accidentally or purposely inflicted|Poisoning by other carbon monoxide, undetermined whether accidentally or purposely inflicted +C0262057|T037|AB|E982.1|ICD9CM|Undetermin poison-co NEC|Undetermin poison-co NEC +C0262058|T037|AB|E982.8|ICD9CM|Undet pois-gas/vapor NEC|Undet pois-gas/vapor NEC +C0262059|T037|PT|E982.9|ICD9CM|Poisoning by unspecified gases and vapors, undetermined whether accidentally or purposely inflicted|Poisoning by unspecified gases and vapors, undetermined whether accidentally or purposely inflicted +C0262059|T037|AB|E982.9|ICD9CM|Undet pois-gas/vapor NOS|Undet pois-gas/vapor NOS +C0262060|T037|HT|E983|ICD9CM|Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted|Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted +C0262061|T037|PT|E983.0|ICD9CM|Hanging, undetermined whether accidentally or purposely inflicted|Hanging, undetermined whether accidentally or purposely inflicted +C0262061|T037|AB|E983.0|ICD9CM|Undetermin circ-hanging|Undetermin circ-hanging +C0262062|T037|PT|E983.1|ICD9CM|Suffocation by plastic bag, undetermined whether accidentally or purposely inflicted|Suffocation by plastic bag, undetermined whether accidentally or purposely inflicted +C0262062|T037|AB|E983.1|ICD9CM|Undet circ-suf plast bag|Undet circ-suf plast bag +C0262063|T037|AB|E983.8|ICD9CM|Undet circ-suffocate NEC|Undet circ-suffocate NEC +C0262064|T037|AB|E983.9|ICD9CM|Undet circ-suffocate NOS|Undet circ-suffocate NOS +C0262065|T037|PT|E984|ICD9CM|Submersion (drowning), undetermined whether accidentally or purposely inflicted|Submersion (drowning), undetermined whether accidentally or purposely inflicted +C0262065|T037|AB|E984|ICD9CM|Undeterm circ-submersion|Undeterm circ-submersion +C0262067|T037|PT|E985.0|ICD9CM|Injury by handgun, undetermined whether accidentally or purposely inflicted|Injury by handgun, undetermined whether accidentally or purposely inflicted +C0262067|T037|AB|E985.0|ICD9CM|Undetermin circ-handgun|Undetermin circ-handgun +C0262068|T037|PT|E985.1|ICD9CM|Injury by shotgun, undetermined whether accidentally or purposely inflicted|Injury by shotgun, undetermined whether accidentally or purposely inflicted +C0262068|T037|AB|E985.1|ICD9CM|Undetermin circ-shotgun|Undetermin circ-shotgun +C0262069|T037|PT|E985.2|ICD9CM|Injury by hunting rifle, undetermined whether accidentally or purposely inflicted|Injury by hunting rifle, undetermined whether accidentally or purposely inflicted +C0262069|T037|AB|E985.2|ICD9CM|Undet circ-hunting rifle|Undet circ-hunting rifle +C0262070|T037|PT|E985.3|ICD9CM|Injury by military firearms, undetermined whether accidentally or purposely inflicted|Injury by military firearms, undetermined whether accidentally or purposely inflicted +C0262070|T037|AB|E985.3|ICD9CM|Undet circ-military arms|Undet circ-military arms +C0262071|T037|PT|E985.4|ICD9CM|Injury by other and unspecified firearm, undetermined whether accidentally or purposely inflicted|Injury by other and unspecified firearm, undetermined whether accidentally or purposely inflicted +C0262071|T037|AB|E985.4|ICD9CM|Undeter circ-firearm NEC|Undeter circ-firearm NEC +C0262072|T037|PT|E985.5|ICD9CM|Injury by explosives, undetermined whether accidentally or purposely inflicted|Injury by explosives, undetermined whether accidentally or purposely inflicted +C0262072|T037|AB|E985.5|ICD9CM|Undeterm circ-explosive|Undeterm circ-explosive +C0490038|T037|PT|E985.6|ICD9CM|Injury by air gun, undetermined whether accidental or purposely inflicted|Injury by air gun, undetermined whether accidental or purposely inflicted +C0490038|T037|AB|E985.6|ICD9CM|Undetrmine accid-air gun|Undetrmine accid-air gun +C1135326|T037|PT|E985.7|ICD9CM|Injury by paintball gun, undetermined whether accidental or purposely inflicted|Injury by paintball gun, undetermined whether accidental or purposely inflicted +C1135326|T037|AB|E985.7|ICD9CM|Injury paintball gun NOS|Injury paintball gun NOS +C0262073|T037|PT|E986|ICD9CM|Injury by cutting and piercing instruments, undetermined whether accidentally or purposely inflicted|Injury by cutting and piercing instruments, undetermined whether accidentally or purposely inflicted +C0262073|T037|AB|E986|ICD9CM|Undet circ-cut instrumnt|Undet circ-cut instrumnt +C0262075|T037|PT|E987.0|ICD9CM|Falling from residential premises, undetermined whether accidentally or purposely inflicted|Falling from residential premises, undetermined whether accidentally or purposely inflicted +C0262075|T037|AB|E987.0|ICD9CM|Undet circ-fall residenc|Undet circ-fall residenc +C0262088|T037|HT|E988|ICD9CM|Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted|Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted +C0262080|T037|AB|E988.0|ICD9CM|Undeterm circ-moving obj|Undeterm circ-moving obj +C0262081|T037|PT|E988.1|ICD9CM|Injury by burns or fire, undetermined whether accidentally or purposely inflicted|Injury by burns or fire, undetermined whether accidentally or purposely inflicted +C0262081|T037|AB|E988.1|ICD9CM|Undeterm circ-burn, fire|Undeterm circ-burn, fire +C0332691|T037|PT|E988.2|ICD9CM|Injury by scald, undetermined whether accidentally or purposely inflicted|Injury by scald, undetermined whether accidentally or purposely inflicted +C0332691|T037|AB|E988.2|ICD9CM|Undeterm circ-scald|Undeterm circ-scald +C0262083|T037|PT|E988.3|ICD9CM|Injury by extremes of cold, undetermined whether accidentally or purposely inflicted|Injury by extremes of cold, undetermined whether accidentally or purposely inflicted +C0262083|T037|AB|E988.3|ICD9CM|Undeterm circ-extrm cold|Undeterm circ-extrm cold +C0262084|T037|PT|E988.4|ICD9CM|Injury by electrocution, undetermined whether accidentally or purposely inflicted|Injury by electrocution, undetermined whether accidentally or purposely inflicted +C0262084|T037|AB|E988.4|ICD9CM|Undeterm circ-electrocut|Undeterm circ-electrocut +C0262085|T037|PT|E988.5|ICD9CM|Injury by crashing of motor vehicle, undetermined whether accidentally or purposely inflicted|Injury by crashing of motor vehicle, undetermined whether accidentally or purposely inflicted +C0262085|T037|AB|E988.5|ICD9CM|Undet circ-mot veh crash|Undet circ-mot veh crash +C0262086|T037|PT|E988.6|ICD9CM|Injury by crashing of aircraft, undetermined whether accidentally or purposely inflicted|Injury by crashing of aircraft, undetermined whether accidentally or purposely inflicted +C0262086|T037|AB|E988.6|ICD9CM|Undet circ-aircrft crash|Undet circ-aircrft crash +C0262087|T037|AB|E988.7|ICD9CM|Undet circ-caustic subst|Undet circ-caustic subst +C0262088|T037|PT|E988.8|ICD9CM|Injury by other specified means, undetermined whether accidentally or purposely inflicted|Injury by other specified means, undetermined whether accidentally or purposely inflicted +C0262088|T037|AB|E988.8|ICD9CM|Undetermin circumst NEC|Undetermin circumst NEC +C0262089|T037|PT|E988.9|ICD9CM|Injury by unspecified means, undetermined whether accidentally or purposely inflicted|Injury by unspecified means, undetermined whether accidentally or purposely inflicted +C0262089|T037|AB|E988.9|ICD9CM|Undetermin circumst NOS|Undetermin circumst NOS +C0481360|T037|AB|E989|ICD9CM|Late eff inj-undet circ|Late eff inj-undet circ +C0481360|T037|PT|E989|ICD9CM|Late effects of injury, undetermined whether accidentally or purposely inflicted|Late effects of injury, undetermined whether accidentally or purposely inflicted +C0262091|T037|HT|E990|ICD9CM|Injury due to war operations by fires and conflagrations|Injury due to war operations by fires and conflagrations +C0178364|T037|HT|E990-E999.9|ICD9CM|INJURY RESULTING FROM OPERATIONS OF WAR|INJURY RESULTING FROM OPERATIONS OF WAR +C0262092|T037|PT|E990.0|ICD9CM|Injury due to war operations from gasoline bomb|Injury due to war operations from gasoline bomb +C0262092|T037|AB|E990.0|ICD9CM|War inj:gasoline bomb|War inj:gasoline bomb +C2712482|T037|PT|E990.1|ICD9CM|Injury due to war operations from flamethrower|Injury due to war operations from flamethrower +C2712482|T037|AB|E990.1|ICD9CM|War inj:flamethrower|War inj:flamethrower +C2712483|T037|PT|E990.2|ICD9CM|Injury due to war operations from incendiary bullet|Injury due to war operations from incendiary bullet +C2712483|T037|AB|E990.2|ICD9CM|War inj:incndiary bullet|War inj:incndiary bullet +C2712484|T037|PT|E990.3|ICD9CM|Injury due to war operations from fire caused indirectly from conventional weapon|Injury due to war operations from fire caused indirectly from conventional weapon +C2712484|T037|AB|E990.3|ICD9CM|War inj:ind convn weapn|War inj:ind convn weapn +C0262093|T037|PT|E990.9|ICD9CM|Injury due to war operations from other and unspecified source|Injury due to war operations from other and unspecified source +C0262093|T037|AB|E990.9|ICD9CM|War injury:fire NEC|War injury:fire NEC +C0262094|T037|HT|E991|ICD9CM|Injury due to war operations by bullets and fragments|Injury due to war operations by bullets and fragments +C0262095|T037|PT|E991.0|ICD9CM|Injury due to war operations from rubber bullets (rifle)|Injury due to war operations from rubber bullets (rifle) +C0262095|T037|AB|E991.0|ICD9CM|War inj:rubber bullet|War inj:rubber bullet +C0262096|T037|PT|E991.1|ICD9CM|Injury due to war operations from pellets (rifle)|Injury due to war operations from pellets (rifle) +C0262096|T037|AB|E991.1|ICD9CM|War injury:pellets|War injury:pellets +C0262097|T037|PT|E991.2|ICD9CM|Injury due to war operations from other bullets|Injury due to war operations from other bullets +C0262097|T037|AB|E991.2|ICD9CM|War injury:bullet NEC|War injury:bullet NEC +C0262098|T037|PT|E991.3|ICD9CM|Injury due to war operations from antipersonnel bomb (fragments)|Injury due to war operations from antipersonnel bomb (fragments) +C0262098|T037|AB|E991.3|ICD9CM|War inj:antiperson bomb|War inj:antiperson bomb +C2712485|T037|PT|E991.4|ICD9CM|Injury due to war operations by fragments from munitions|Injury due to war operations by fragments from munitions +C2712485|T037|AB|E991.4|ICD9CM|War inj:munition fragmnt|War inj:munition fragmnt +C2712486|T037|PT|E991.5|ICD9CM|Injury due to war operations by fragments from person-borne improvised explosive device [IED]|Injury due to war operations by fragments from person-borne improvised explosive device [IED] +C2712486|T037|AB|E991.5|ICD9CM|War inj:prsn-brn fragmnt|War inj:prsn-brn fragmnt +C2712487|T037|PT|E991.6|ICD9CM|Injury due to war operations by fragments from vehicle-borne improvised explosive device [IED]|Injury due to war operations by fragments from vehicle-borne improvised explosive device [IED] +C2712487|T037|AB|E991.6|ICD9CM|War inj:vehic-borne IED|War inj:vehic-borne IED +C2712488|T037|PT|E991.7|ICD9CM|Injury due to war operations by fragments from other improvised explosive device [IED]|Injury due to war operations by fragments from other improvised explosive device [IED] +C2712488|T037|AB|E991.7|ICD9CM|War inj:fragment IED NEC|War inj:fragment IED NEC +C2712489|T037|PT|E991.8|ICD9CM|Injury due to war operations by fragments from weapons|Injury due to war operations by fragments from weapons +C2712489|T037|AB|E991.8|ICD9CM|War inj:weapon fragments|War inj:weapon fragments +C0262099|T037|PT|E991.9|ICD9CM|Injury due to war operations from other and unspecified fragments|Injury due to war operations from other and unspecified fragments +C0262099|T037|AB|E991.9|ICD9CM|War inj:fragments NEC|War inj:fragments NEC +C0262100|T037|HT|E992|ICD9CM|Injury due to war operations by explosion of marine weapons|Injury due to war operations by explosion of marine weapons +C2712490|T037|PT|E992.0|ICD9CM|Injury due to torpedo|Injury due to torpedo +C2712490|T037|AB|E992.0|ICD9CM|War inj:torpedo|War inj:torpedo +C2712491|T037|PT|E992.1|ICD9CM|Injury due to depth charge|Injury due to depth charge +C2712491|T037|AB|E992.1|ICD9CM|War inj:depth charge|War inj:depth charge +C2712492|T037|PT|E992.2|ICD9CM|Injury due to marine mines|Injury due to marine mines +C2712492|T037|AB|E992.2|ICD9CM|War inj:marine mines|War inj:marine mines +C2712493|T037|PT|E992.3|ICD9CM|Injury due to sea-based artillery shell|Injury due to sea-based artillery shell +C2712493|T037|AB|E992.3|ICD9CM|War inj:seabase art shel|War inj:seabase art shel +C2712494|T037|PT|E992.8|ICD9CM|Injury due to war operations by other marine weapons|Injury due to war operations by other marine weapons +C2712494|T037|AB|E992.8|ICD9CM|War inj:marine weapn NEC|War inj:marine weapn NEC +C2712495|T037|PT|E992.9|ICD9CM|Injury due to war operations by unspecified marine weapon|Injury due to war operations by unspecified marine weapon +C2712495|T037|AB|E992.9|ICD9CM|War inj:marine weapn NOS|War inj:marine weapn NOS +C0262101|T037|HT|E993|ICD9CM|Injury due to war operations by other explosion|Injury due to war operations by other explosion +C2712496|T037|PT|E993.0|ICD9CM|Injury due to war operations by aerial bomb|Injury due to war operations by aerial bomb +C2712496|T037|AB|E993.0|ICD9CM|War inj:aerial bomb|War inj:aerial bomb +C2712497|T037|PT|E993.1|ICD9CM|Injury due to war operations by guided missile|Injury due to war operations by guided missile +C2712497|T037|AB|E993.1|ICD9CM|War inj:guided missile|War inj:guided missile +C2712498|T037|PT|E993.2|ICD9CM|Injury due to war operations by mortar|Injury due to war operations by mortar +C2712498|T037|AB|E993.2|ICD9CM|War inj:mortar|War inj:mortar +C2712499|T037|PT|E993.3|ICD9CM|Injury due to war operations by person-borne improvised explosive device [IED]|Injury due to war operations by person-borne improvised explosive device [IED] +C2712499|T037|AB|E993.3|ICD9CM|War inj:person IED|War inj:person IED +C2712500|T037|PT|E993.4|ICD9CM|Injury due to war operations by vehicle-borne improvised explosive device [IED]|Injury due to war operations by vehicle-borne improvised explosive device [IED] +C2712500|T037|AB|E993.4|ICD9CM|War inj:vehicle IED|War inj:vehicle IED +C2712501|T037|PT|E993.5|ICD9CM|Injury due to war operations by other improvised explosive device [IED]|Injury due to war operations by other improvised explosive device [IED] +C2712501|T037|AB|E993.5|ICD9CM|War inj:IED NEC|War inj:IED NEC +C2712502|T037|PT|E993.6|ICD9CM|Injury due to war operations by unintentional detonation of own munitions|Injury due to war operations by unintentional detonation of own munitions +C2712502|T037|AB|E993.6|ICD9CM|War inj:acc own munition|War inj:acc own munition +C2712503|T037|PT|E993.7|ICD9CM|Injury due to war operations by unintentional discharge of own munitions launch device|Injury due to war operations by unintentional discharge of own munitions launch device +C2712503|T037|AB|E993.7|ICD9CM|War inj:acc disch launch|War inj:acc disch launch +C2712504|T037|PT|E993.8|ICD9CM|Injury due to war operations by other specified explosion|Injury due to war operations by other specified explosion +C2712504|T037|AB|E993.8|ICD9CM|War inj:explosion NEC|War inj:explosion NEC +C0418717|T037|PT|E993.9|ICD9CM|Injury due to war operations by unspecified explosion|Injury due to war operations by unspecified explosion +C0418717|T037|AB|E993.9|ICD9CM|War inj:explosion NOS|War inj:explosion NOS +C0262102|T037|HT|E994|ICD9CM|Injury due to war operations by destruction of aircraft|Injury due to war operations by destruction of aircraft +C2712505|T037|PT|E994.0|ICD9CM|Injury due to war operations by destruction of aircraft due to enemy fire or explosives|Injury due to war operations by destruction of aircraft due to enemy fire or explosives +C2712505|T037|AB|E994.0|ICD9CM|War inj:aircrft des-enmy|War inj:aircrft des-enmy +C2712506|T037|PT|E994.1|ICD9CM|Injury due to war operations by unintentional destruction of aircraft due to own onboard explosives|Injury due to war operations by unintentional destruction of aircraft due to own onboard explosives +C2712506|T037|AB|E994.1|ICD9CM|War inj:aircrft-own expl|War inj:aircrft-own expl +C2712507|T037|PT|E994.2|ICD9CM|Injury due to war operations by destruction of aircraft due to collision with other aircraft|Injury due to war operations by destruction of aircraft due to collision with other aircraft +C2712507|T037|AB|E994.2|ICD9CM|War inj:aircrft collisn|War inj:aircrft collisn +C2712508|T037|PT|E994.3|ICD9CM|Injury due to war operations by destruction of aircraft due to onboard fire|Injury due to war operations by destruction of aircraft due to onboard fire +C2712508|T037|AB|E994.3|ICD9CM|War inj:aircraft fire|War inj:aircraft fire +C2712509|T037|PT|E994.8|ICD9CM|Injury due to war operations by other destruction of aircraft|Injury due to war operations by other destruction of aircraft +C2712509|T037|AB|E994.8|ICD9CM|War inj:aircrft dest NEC|War inj:aircrft dest NEC +C2712510|T037|PT|E994.9|ICD9CM|Injury due to war operations by unspecified destruction of aircraft|Injury due to war operations by unspecified destruction of aircraft +C2712510|T037|AB|E994.9|ICD9CM|War inj:aircrft dest NOS|War inj:aircrft dest NOS +C0262103|T037|HT|E995|ICD9CM|Injury due to war operations by other and unspecified forms of conventional warfare|Injury due to war operations by other and unspecified forms of conventional warfare +C2712511|T037|PT|E995.0|ICD9CM|Injury due to war operations by unarmed hand-to-hand combat|Injury due to war operations by unarmed hand-to-hand combat +C2712511|T037|AB|E995.0|ICD9CM|War inj:hnd-hnd combat|War inj:hnd-hnd combat +C2712512|T037|PT|E995.1|ICD9CM|Injury due to war operations, struck by blunt object|Injury due to war operations, struck by blunt object +C2712512|T037|AB|E995.1|ICD9CM|War inj:blunt object|War inj:blunt object +C2712513|T037|PT|E995.2|ICD9CM|Injury due to war operations by piercing object|Injury due to war operations by piercing object +C2712513|T037|AB|E995.2|ICD9CM|War inj:piercing object|War inj:piercing object +C2712514|T037|PT|E995.3|ICD9CM|Injury due to war operations by intentional restriction of air and airway|Injury due to war operations by intentional restriction of air and airway +C2712514|T037|AB|E995.3|ICD9CM|War inj:intn restrct air|War inj:intn restrct air +C2712515|T037|PT|E995.4|ICD9CM|Injury due to war operations by unintentional drowning due to inability to surface or obtain air|Injury due to war operations by unintentional drowning due to inability to surface or obtain air +C2712515|T037|AB|E995.4|ICD9CM|War inj:unintentl drown|War inj:unintentl drown +C2712516|T037|PT|E995.8|ICD9CM|Injury due to war operations by other forms of conventional warfare|Injury due to war operations by other forms of conventional warfare +C2712516|T037|AB|E995.8|ICD9CM|War inj:con warfare NEC|War inj:con warfare NEC +C2712517|T037|PT|E995.9|ICD9CM|Injury due to war operations by unspecified form of conventional warfare|Injury due to war operations by unspecified form of conventional warfare +C2712517|T037|AB|E995.9|ICD9CM|War inj:con warfare NOS|War inj:con warfare NOS +C0418710|T037|HT|E996|ICD9CM|Injury due to war operations by nuclear weapons|Injury due to war operations by nuclear weapons +C2712518|T037|PT|E996.0|ICD9CM|Injury due to war operations by direct blast effect of nuclear weapon|Injury due to war operations by direct blast effect of nuclear weapon +C2712518|T037|AB|E996.0|ICD9CM|War inj:dir nucl weapon|War inj:dir nucl weapon +C2712519|T037|PT|E996.1|ICD9CM|Injury due to war operations by indirect blast effect of nuclear weapon|Injury due to war operations by indirect blast effect of nuclear weapon +C2712519|T037|AB|E996.1|ICD9CM|War inj:indir nucl weapn|War inj:indir nucl weapn +C2712520|T037|PT|E996.2|ICD9CM|Injury due to war operations by thermal radiation effect of nuclear weapon|Injury due to war operations by thermal radiation effect of nuclear weapon +C2712520|T037|AB|E996.2|ICD9CM|War inj:therml radiation|War inj:therml radiation +C2712521|T037|PT|E996.3|ICD9CM|Injury due to war operations by nuclear radiation effects|Injury due to war operations by nuclear radiation effects +C2712521|T037|AB|E996.3|ICD9CM|War inj:nuclear rad eff|War inj:nuclear rad eff +C2712522|T037|PT|E996.8|ICD9CM|Injury due to war operations by other effects of nuclear weapons|Injury due to war operations by other effects of nuclear weapons +C2712522|T037|AB|E996.8|ICD9CM|War inj:nucl weapon NEC|War inj:nucl weapon NEC +C2712523|T037|PT|E996.9|ICD9CM|Injury due to war operations by unspecified effect of nuclear weapon|Injury due to war operations by unspecified effect of nuclear weapon +C2712523|T037|AB|E996.9|ICD9CM|War inj:nucl weapon NOS|War inj:nucl weapon NOS +C0262105|T037|HT|E997|ICD9CM|Injury due to war operations by other forms of unconventional warfare|Injury due to war operations by other forms of unconventional warfare +C0262106|T037|PT|E997.0|ICD9CM|Injury due to war operations by lasers|Injury due to war operations by lasers +C0262106|T037|AB|E997.0|ICD9CM|War injury:lasers|War injury:lasers +C0262107|T037|PT|E997.1|ICD9CM|Injury due to war operations by biological warfare|Injury due to war operations by biological warfare +C0262107|T037|AB|E997.1|ICD9CM|War injury:biol warfare|War injury:biol warfare +C0262108|T037|PT|E997.2|ICD9CM|Injury due to war operations by gases, fumes, and chemicals|Injury due to war operations by gases, fumes, and chemicals +C0262108|T037|AB|E997.2|ICD9CM|War injury:gas/fum/chem|War injury:gas/fum/chem +C2712524|T037|PT|E997.3|ICD9CM|Injury due to war operations by weapon of mass destruction [WMD], unspecified|Injury due to war operations by weapon of mass destruction [WMD], unspecified +C2712524|T037|AB|E997.3|ICD9CM|War inj:WMD NOS|War inj:WMD NOS +C0262109|T037|PT|E997.8|ICD9CM|Injury due to other specified forms of unconventional warfare|Injury due to other specified forms of unconventional warfare +C0262109|T037|AB|E997.8|ICD9CM|War inj-unconven war NEC|War inj-unconven war NEC +C0262110|T037|PT|E997.9|ICD9CM|Injury due to unspecified form of unconventional warfare|Injury due to unspecified form of unconventional warfare +C0262110|T037|AB|E997.9|ICD9CM|War inj-unconven war NOS|War inj-unconven war NOS +C0262111|T037|HT|E998|ICD9CM|Injury due to war operations but occurring after cessation of hostilities|Injury due to war operations but occurring after cessation of hostilities +C2712525|T037|PT|E998.0|ICD9CM|Injury due to war operations but occurring after cessation of hostilities by explosion of mines|Injury due to war operations but occurring after cessation of hostilities by explosion of mines +C2712525|T037|AB|E998.0|ICD9CM|War inj:expl mine-cease|War inj:expl mine-cease +C2712526|T037|PT|E998.1|ICD9CM|Injury due to war operations but occurring after cessation of hostilities by explosion of bombs|Injury due to war operations but occurring after cessation of hostilities by explosion of bombs +C2712526|T037|AB|E998.1|ICD9CM|War inj:expl bomb-cease|War inj:expl bomb-cease +C2712527|T037|PT|E998.8|ICD9CM|Injury due to other war operations but occurring after cessation of hostilities|Injury due to other war operations but occurring after cessation of hostilities +C2712527|T037|AB|E998.8|ICD9CM|War inj:after cease NEC|War inj:after cease NEC +C2712528|T037|PT|E998.9|ICD9CM|Injury due to unspecified war operations but occurring after cessation of hostilities|Injury due to unspecified war operations but occurring after cessation of hostilities +C2712528|T037|AB|E998.9|ICD9CM|War inj:after cease NOS|War inj:after cease NOS +C1135340|T037|HT|E999|ICD9CM|Late effect of injury due to war operations and terrorism|Late effect of injury due to war operations and terrorism +C0481368|T046|PT|E999.0|ICD9CM|Late effect of injury due to war operations|Late effect of injury due to war operations +C0481368|T046|AB|E999.0|ICD9CM|Late effect, war injury|Late effect, war injury +C1135327|T046|PT|E999.1|ICD9CM|Late effect of injury due to terrorism|Late effect of injury due to terrorism +C1135327|T046|AB|E999.1|ICD9CM|Late effect, terrorism|Late effect, terrorism +C0260339|T033|HT|V01|ICD9CM|Contact with or exposure to communicable diseases|Contact with or exposure to communicable diseases +C0178337|T033|HT|V01-V06.99|ICD9CM|PERSONS WITH POTENTIAL HEALTH HAZARDS RELATED TO COMMUNICABLE DISEASES|PERSONS WITH POTENTIAL HEALTH HAZARDS RELATED TO COMMUNICABLE DISEASES +C0260340|T033|AB|V01.0|ICD9CM|Cholera contact|Cholera contact +C0260340|T033|PT|V01.0|ICD9CM|Contact with or exposure to cholera|Contact with or exposure to cholera +C0260341|T033|PT|V01.1|ICD9CM|Contact with or exposure to tuberculosis|Contact with or exposure to tuberculosis +C0260341|T033|AB|V01.1|ICD9CM|Tuberculosis contact|Tuberculosis contact +C0260342|T033|PT|V01.2|ICD9CM|Contact with or exposure to poliomyelitis|Contact with or exposure to poliomyelitis +C0260342|T033|AB|V01.2|ICD9CM|Poliomyelitis contact|Poliomyelitis contact +C0260343|T033|PT|V01.3|ICD9CM|Contact with or exposure to smallpox|Contact with or exposure to smallpox +C0260343|T033|AB|V01.3|ICD9CM|Smallpox contact|Smallpox contact +C0260344|T033|PT|V01.4|ICD9CM|Contact with or exposure to rubella|Contact with or exposure to rubella +C0260344|T033|AB|V01.4|ICD9CM|Rubella contact|Rubella contact +C0260345|T033|PT|V01.5|ICD9CM|Contact with or exposure to rabies|Contact with or exposure to rabies +C0260345|T033|AB|V01.5|ICD9CM|Rabies contact|Rabies contact +C0260346|T033|PT|V01.6|ICD9CM|Contact with or exposure to venereal diseases|Contact with or exposure to venereal diseases +C0260346|T033|AB|V01.6|ICD9CM|Venereal dis contact|Venereal dis contact +C0260347|T033|HT|V01.7|ICD9CM|Contact with or exposure to other viral diseases|Contact with or exposure to other viral diseases +C1455968|T033|PT|V01.71|ICD9CM|Contact with or exposure to varicella|Contact with or exposure to varicella +C1455968|T033|AB|V01.71|ICD9CM|Varicella contact/exp|Varicella contact/exp +C0260347|T033|PT|V01.79|ICD9CM|Contact with or exposure to other viral diseases|Contact with or exposure to other viral diseases +C0260347|T033|AB|V01.79|ICD9CM|Viral dis contact NEC|Viral dis contact NEC +C0260348|T033|HT|V01.8|ICD9CM|Contact with or exposure to other communicable diseases|Contact with or exposure to other communicable diseases +C1135271|T033|PT|V01.81|ICD9CM|Contact with or exposure to anthrax|Contact with or exposure to anthrax +C1135271|T033|AB|V01.81|ICD9CM|Contact/exposure-anthrax|Contact/exposure-anthrax +C1260451|T033|AB|V01.82|ICD9CM|Exposure to SARS|Exposure to SARS +C1260451|T033|PT|V01.82|ICD9CM|Exposure to SARS-associated coronavirus|Exposure to SARS-associated coronavirus +C1455969|T033|PT|V01.83|ICD9CM|Contact with or exposure to escherichia coli (E. coli)|Contact with or exposure to escherichia coli (E. coli) +C1455969|T033|AB|V01.83|ICD9CM|E. coli contact/exp|E. coli contact/exp +C1455970|T033|PT|V01.84|ICD9CM|Contact with or exposure to meningococcus|Contact with or exposure to meningococcus +C1455970|T033|AB|V01.84|ICD9CM|Meningococcus contact|Meningococcus contact +C0260348|T033|AB|V01.89|ICD9CM|Communic dis contact NEC|Communic dis contact NEC +C0260348|T033|PT|V01.89|ICD9CM|Contact with or exposure to other communicable diseases|Contact with or exposure to other communicable diseases +C0260339|T033|AB|V01.9|ICD9CM|Communic dis contact NOS|Communic dis contact NOS +C0260339|T033|PT|V01.9|ICD9CM|Contact with or exposure to unspecified communicable disease|Contact with or exposure to unspecified communicable disease +C0481551|T033|HT|V02|ICD9CM|Carrier or suspected carrier of infectious diseases|Carrier or suspected carrier of infectious diseases +C0260351|T033|PT|V02.0|ICD9CM|Carrier or suspected carrier of cholera|Carrier or suspected carrier of cholera +C0260351|T033|AB|V02.0|ICD9CM|Cholera carrier|Cholera carrier +C0260352|T033|PT|V02.1|ICD9CM|Carrier or suspected carrier of typhoid|Carrier or suspected carrier of typhoid +C0260352|T033|AB|V02.1|ICD9CM|Typhoid carrier|Typhoid carrier +C0481434|T033|AB|V02.2|ICD9CM|Amebiasis carrier|Amebiasis carrier +C0481434|T033|PT|V02.2|ICD9CM|Carrier or suspected carrier of amebiasis|Carrier or suspected carrier of amebiasis +C0260354|T033|PT|V02.3|ICD9CM|Carrier or suspected carrier of other gastrointestinal pathogens|Carrier or suspected carrier of other gastrointestinal pathogens +C0260354|T033|AB|V02.3|ICD9CM|GI pathogen carrier NEC|GI pathogen carrier NEC +C0260355|T033|PT|V02.4|ICD9CM|Carrier or suspected carrier of diphtheria|Carrier or suspected carrier of diphtheria +C0260355|T033|AB|V02.4|ICD9CM|Diphtheria carrier|Diphtheria carrier +C0260356|T033|HT|V02.5|ICD9CM|Carrier or suspected carrier of other specified bacterial diseases|Carrier or suspected carrier of other specified bacterial diseases +C0700297|T033|PT|V02.51|ICD9CM|Carrier or suspected carrier of group B streptococcus|Carrier or suspected carrier of group B streptococcus +C0700297|T033|AB|V02.51|ICD9CM|Group b streptoc carrier|Group b streptoc carrier +C0695257|T033|PT|V02.52|ICD9CM|Carrier or suspected carrier of other streptococcus|Carrier or suspected carrier of other streptococcus +C0695257|T033|AB|V02.52|ICD9CM|Streptococus carrier NEC|Streptococus carrier NEC +C2355591|T033|PT|V02.53|ICD9CM|Carrier or suspected carrier of Methicillin susceptible Staphylococcus aureus|Carrier or suspected carrier of Methicillin susceptible Staphylococcus aureus +C2355591|T033|AB|V02.53|ICD9CM|Meth susc Staph carrier|Meth susc Staph carrier +C2350012|T033|PT|V02.54|ICD9CM|Carrier or suspected carrier of Methicillin resistant Staphylococcus aureus|Carrier or suspected carrier of Methicillin resistant Staphylococcus aureus +C2350012|T033|AB|V02.54|ICD9CM|Meth resis Staph carrier|Meth resis Staph carrier +C0260356|T033|AB|V02.59|ICD9CM|Bacteria dis carrier NEC|Bacteria dis carrier NEC +C0260356|T033|PT|V02.59|ICD9CM|Carrier or suspected carrier of other specified bacterial diseases|Carrier or suspected carrier of other specified bacterial diseases +C0543428|T033|HT|V02.6|ICD9CM|Carrier or suspected carrier of viral hepatitis|Carrier or suspected carrier of viral hepatitis +C0549126|T033|AB|V02.60|ICD9CM|Viral hep carrier NOS|Viral hep carrier NOS +C0549126|T033|PT|V02.60|ICD9CM|Viral hepatitis carrier, unspecified|Viral hepatitis carrier, unspecified +C2911652|T033|AB|V02.61|ICD9CM|Hepatitis B carrier|Hepatitis B carrier +C2911652|T033|PT|V02.61|ICD9CM|Hepatitis B carrier|Hepatitis B carrier +C0840990|T033|AB|V02.62|ICD9CM|Hepatitis C carrier|Hepatitis C carrier +C0840990|T033|PT|V02.62|ICD9CM|Hepatitis C carrier|Hepatitis C carrier +C0490013|T033|PT|V02.69|ICD9CM|Other viral hepatitis carrier|Other viral hepatitis carrier +C0490013|T033|AB|V02.69|ICD9CM|Viral hep carrier NEC|Viral hep carrier NEC +C0481436|T033|PT|V02.7|ICD9CM|Carrier or suspected carrier of gonorrhea|Carrier or suspected carrier of gonorrhea +C0481436|T033|AB|V02.7|ICD9CM|Gonorrhea carrier|Gonorrhea carrier +C0260359|T033|PT|V02.8|ICD9CM|Carrier or suspected carrier of other venereal diseases|Carrier or suspected carrier of other venereal diseases +C0260359|T033|AB|V02.8|ICD9CM|Venereal dis carrier NEC|Venereal dis carrier NEC +C0260360|T033|AB|V02.9|ICD9CM|Carrier NEC|Carrier NEC +C0260360|T033|PT|V02.9|ICD9CM|Carrier or suspected carrier of other specified infectious organism|Carrier or suspected carrier of other specified infectious organism +C0260361|T033|HT|V03|ICD9CM|Need for prophylactic vaccination and inoculation against bacterial diseases|Need for prophylactic vaccination and inoculation against bacterial diseases +C0260362|T033|PT|V03.0|ICD9CM|Need for prophylactic vaccination and inoculation against cholera alone|Need for prophylactic vaccination and inoculation against cholera alone +C0260362|T033|AB|V03.0|ICD9CM|Vaccin for cholera|Vaccin for cholera +C0260363|T033|PT|V03.1|ICD9CM|Need for prophylactic vaccination and inoculation against typhoid-paratyphoid alone [TAB]|Need for prophylactic vaccination and inoculation against typhoid-paratyphoid alone [TAB] +C0260363|T033|AB|V03.1|ICD9CM|Vacc-typhoid-paratyphoid|Vacc-typhoid-paratyphoid +C0260364|T033|PT|V03.2|ICD9CM|Need for prophylactic vaccination and inoculation against tuberculosis [BCG]|Need for prophylactic vaccination and inoculation against tuberculosis [BCG] +C0260364|T033|AB|V03.2|ICD9CM|Vaccin for tuberculosis|Vaccin for tuberculosis +C0496613|T033|PT|V03.3|ICD9CM|Need for prophylactic vaccination and inoculation against plague|Need for prophylactic vaccination and inoculation against plague +C0496613|T033|AB|V03.3|ICD9CM|Vaccin for plague|Vaccin for plague +C0496614|T033|PT|V03.4|ICD9CM|Need for prophylactic vaccination and inoculation against tularemia|Need for prophylactic vaccination and inoculation against tularemia +C0496614|T033|AB|V03.4|ICD9CM|Vaccin for tularemia|Vaccin for tularemia +C0260367|T033|PT|V03.5|ICD9CM|Need for prophylactic vaccination and inoculation against diphtheria alone|Need for prophylactic vaccination and inoculation against diphtheria alone +C0260367|T033|AB|V03.5|ICD9CM|Vaccin for diphtheria|Vaccin for diphtheria +C0260368|T033|PT|V03.6|ICD9CM|Need for prophylactic vaccination and inoculation against pertussis alone|Need for prophylactic vaccination and inoculation against pertussis alone +C0260368|T033|AB|V03.6|ICD9CM|Vaccin for pertussis|Vaccin for pertussis +C0496615|T033|PT|V03.7|ICD9CM|Need for prophylactic vaccination and inoculation against tetanus toxoid alone|Need for prophylactic vaccination and inoculation against tetanus toxoid alone +C0496615|T033|AB|V03.7|ICD9CM|Tetanus toxoid inoculat|Tetanus toxoid inoculat +C0740080|T033|HT|V03.8|ICD9CM|Need for other specified vaccinations against single bacterial diseases|Need for other specified vaccinations against single bacterial diseases +C0375765|T033|AB|V03.81|ICD9CM|Nd vac hmophlus inflnz b|Nd vac hmophlus inflnz b +C0375765|T033|PT|V03.81|ICD9CM|Other specified vaccinations against hemophilus influenza, type B [Hib]|Other specified vaccinations against hemophilus influenza, type B [Hib] +C0375766|T033|AB|V03.82|ICD9CM|Nd vac strptcs pneumni b|Nd vac strptcs pneumni b +C0375766|T033|PT|V03.82|ICD9CM|Other specified vaccinations against streptococcus pneumoniae [pneumococcus]|Other specified vaccinations against streptococcus pneumoniae [pneumococcus] +C0478550|T033|AB|V03.89|ICD9CM|Nd other specf vacnation|Nd other specf vacnation +C0478550|T033|PT|V03.89|ICD9CM|Other specified vaccination|Other specified vaccination +C0260371|T033|PT|V03.9|ICD9CM|Need for prophylactic vaccination and inoculation against unspecified single bacterial disease|Need for prophylactic vaccination and inoculation against unspecified single bacterial disease +C0260371|T033|AB|V03.9|ICD9CM|Vaccin for bact dis NOS|Vaccin for bact dis NOS +C0375767|T033|HT|V04|ICD9CM|Need for prophylactic vaccination and inoculation against certain diseases|Need for prophylactic vaccination and inoculation against certain diseases +C1962940|T033|PT|V04.0|ICD9CM|Need for prophylactic vaccination and inoculation against poliomyelitis|Need for prophylactic vaccination and inoculation against poliomyelitis +C1962940|T033|AB|V04.0|ICD9CM|Vaccin for poliomyelitis|Vaccin for poliomyelitis +C0260374|T033|PT|V04.1|ICD9CM|Need for prophylactic vaccination and inoculation against smallpox|Need for prophylactic vaccination and inoculation against smallpox +C0260374|T033|AB|V04.1|ICD9CM|Vaccin for smallpox|Vaccin for smallpox +C0700173|T033|PT|V04.2|ICD9CM|Need for prophylactic vaccination and inoculation against measles alone|Need for prophylactic vaccination and inoculation against measles alone +C0700173|T033|AB|V04.2|ICD9CM|Vaccin for measles|Vaccin for measles +C0700174|T033|PT|V04.3|ICD9CM|Need for prophylactic vaccination and inoculation against rubella alone|Need for prophylactic vaccination and inoculation against rubella alone +C0700174|T033|AB|V04.3|ICD9CM|Vaccin for rubella|Vaccin for rubella +C0496621|T033|PT|V04.4|ICD9CM|Need for prophylactic vaccination and inoculation against yellow fever|Need for prophylactic vaccination and inoculation against yellow fever +C0496621|T033|AB|V04.4|ICD9CM|Vaccin for yellow fever|Vaccin for yellow fever +C0728859|T033|PT|V04.5|ICD9CM|Need for prophylactic vaccination and inoculation against rabies|Need for prophylactic vaccination and inoculation against rabies +C0728859|T033|AB|V04.5|ICD9CM|Vaccin for rabies|Vaccin for rabies +C0700172|T033|PT|V04.6|ICD9CM|Need for prophylactic vaccination and inoculation against mumps alone|Need for prophylactic vaccination and inoculation against mumps alone +C0700172|T033|AB|V04.6|ICD9CM|Vaccin for mumps|Vaccin for mumps +C0260380|T033|PT|V04.7|ICD9CM|Need for prophylactic vaccination and inoculation against common cold|Need for prophylactic vaccination and inoculation against common cold +C0260380|T033|AB|V04.7|ICD9CM|Vaccin for common cold|Vaccin for common cold +C1260454|T033|HT|V04.8|ICD9CM|Need for prophylactic vaccination and inoculation against other viral diseases|Need for prophylactic vaccination and inoculation against other viral diseases +C1260452|T033|PT|V04.81|ICD9CM|Need for prophylactic vaccination and inoculation against influenza|Need for prophylactic vaccination and inoculation against influenza +C1260452|T033|AB|V04.81|ICD9CM|Vaccin for influenza|Vaccin for influenza +C1260453|T033|PT|V04.82|ICD9CM|Need for prophylactic vaccination and inoculation against respiratory syncytial virus (RSV)|Need for prophylactic vaccination and inoculation against respiratory syncytial virus (RSV) +C1260453|T033|AB|V04.82|ICD9CM|Vaccination for RSV|Vaccination for RSV +C1260454|T033|PT|V04.89|ICD9CM|Need for prophylactic vaccination and inoculation against other viral diseases|Need for prophylactic vaccination and inoculation against other viral diseases +C1260454|T033|AB|V04.89|ICD9CM|Vaccn/inoc viral dis NEC|Vaccn/inoc viral dis NEC +C0375768|T033|HT|V05|ICD9CM|Need for prophylactic vaccination and inoculation against single diseases|Need for prophylactic vaccination and inoculation against single diseases +C1962938|T033|AB|V05.0|ICD9CM|Arbovirus enceph vaccin|Arbovirus enceph vaccin +C1962938|T033|PT|V05.0|ICD9CM|Need for prophylactic vaccination and inoculation against arthropod-borne viral encephalitis|Need for prophylactic vaccination and inoculation against arthropod-borne viral encephalitis +C0260384|T033|PT|V05.1|ICD9CM|Need for prophylactic vaccination and inoculation against other arthropod-borne viral diseases|Need for prophylactic vaccination and inoculation against other arthropod-borne viral diseases +C0260384|T033|AB|V05.1|ICD9CM|Vacc arboviral dis NEC|Vacc arboviral dis NEC +C0476556|T033|PT|V05.2|ICD9CM|Need for prophylactic vaccination and inoculation against leishmaniasis|Need for prophylactic vaccination and inoculation against leishmaniasis +C0476556|T033|AB|V05.2|ICD9CM|Vaccin for leishmaniasis|Vaccin for leishmaniasis +C0476555|T033|PT|V05.3|ICD9CM|Need for prophylactic vaccination and inoculation against viral hepatitis|Need for prophylactic vaccination and inoculation against viral hepatitis +C0476555|T033|AB|V05.3|ICD9CM|Need prphyl vc vrl hepat|Need prphyl vc vrl hepat +C0375770|T033|PT|V05.4|ICD9CM|Need for prophylactic vaccination and inoculation against varicella|Need for prophylactic vaccination and inoculation against varicella +C0375770|T033|AB|V05.4|ICD9CM|Need prphyl vc varicella|Need prphyl vc varicella +C0260386|T033|PT|V05.8|ICD9CM|Need for prophylactic vaccination and inoculation against other specified disease|Need for prophylactic vaccination and inoculation against other specified disease +C0260386|T033|AB|V05.8|ICD9CM|Vaccin for disease NEC|Vaccin for disease NEC +C0260387|T033|PT|V05.9|ICD9CM|Need for prophylactic vaccination and inoculation against unspecified single disease|Need for prophylactic vaccination and inoculation against unspecified single disease +C0260387|T033|AB|V05.9|ICD9CM|Vaccin for singl dis NOS|Vaccin for singl dis NOS +C0260388|T033|HT|V06|ICD9CM|Need for prophylactic vaccination and inoculation against combinations of diseases|Need for prophylactic vaccination and inoculation against combinations of diseases +C0260389|T033|AB|V06.0|ICD9CM|Vaccin for cholera + tab|Vaccin for cholera + tab +C0260390|T033|AB|V06.1|ICD9CM|Vaccination for DTP-DTaP|Vaccination for DTP-DTaP +C0260391|T033|AB|V06.2|ICD9CM|Vaccin for dtp + tab|Vaccin for dtp + tab +C0260392|T033|AB|V06.3|ICD9CM|Vaccin for dtp + polio|Vaccin for dtp + polio +C0496634|T033|PT|V06.4|ICD9CM|Need for prophylactic vaccination and inoculation against measles-mumps-rubella (MMR)|Need for prophylactic vaccination and inoculation against measles-mumps-rubella (MMR) +C0496634|T033|AB|V06.4|ICD9CM|Vac-measle-mumps-rubella|Vac-measle-mumps-rubella +C0375771|T033|PT|V06.5|ICD9CM|Need for prophylactic vaccination and inoculation against tetanus-diphtheria [Td] (DT)|Need for prophylactic vaccination and inoculation against tetanus-diphtheria [Td] (DT) +C0375771|T033|AB|V06.5|ICD9CM|Vaccination for Td-DT|Vaccination for Td-DT +C0375772|T033|AB|V06.6|ICD9CM|Nd vac strp pnumn/inflnz|Nd vac strp pnumn/inflnz +C0260394|T033|PT|V06.8|ICD9CM|Need for prophylactic vaccination and inoculation against other combinations of diseases|Need for prophylactic vaccination and inoculation against other combinations of diseases +C0260394|T033|AB|V06.8|ICD9CM|Vac-dis combinations NEC|Vac-dis combinations NEC +C0260395|T033|PT|V06.9|ICD9CM|Unspecified combined vaccine|Unspecified combined vaccine +C0260395|T033|AB|V06.9|ICD9CM|Vac-dis combinations NOS|Vac-dis combinations NOS +C2921269|T033|HT|V07|ICD9CM|Need for isolation and other prophylactic or treatment measures|Need for isolation and other prophylactic or treatment measures +C0260397|T033|PT|V07.0|ICD9CM|Need for isolation|Need for isolation +C0260397|T033|AB|V07.0|ICD9CM|Prophylactic isolation|Prophylactic isolation +C0260398|T033|AB|V07.1|ICD9CM|Desensitiza to allergens|Desensitiza to allergens +C0260398|T033|PT|V07.1|ICD9CM|Need for desensitization to allergens|Need for desensitization to allergens +C0260399|T033|PT|V07.2|ICD9CM|Need for prophylactic immunotherapy|Need for prophylactic immunotherapy +C0260399|T033|AB|V07.2|ICD9CM|Prophylact immunotherapy|Prophylact immunotherapy +C0260400|T033|HT|V07.3|ICD9CM|Need for other prophylactic chemotherapy|Need for other prophylactic chemotherapy +C0260400|T033|PT|V07.39|ICD9CM|Need for other prophylactic chemotherapy|Need for other prophylactic chemotherapy +C0260400|T033|AB|V07.39|ICD9CM|Other prophylac chemothr|Other prophylac chemothr +C2911677|T033|AB|V07.4|ICD9CM|Hormone replace postmeno|Hormone replace postmeno +C2911677|T033|PT|V07.4|ICD9CM|Hormone replacement therapy (postmenopausal)|Hormone replacement therapy (postmenopausal) +C2921270|T033|HT|V07.5|ICD9CM|Use of agents affecting estrogen receptors and estrogen levels|Use of agents affecting estrogen receptors and estrogen levels +C2921271|T033|PT|V07.51|ICD9CM|Use of selective estrogen receptor modulators (SERMs)|Use of selective estrogen receptor modulators (SERMs) +C2921271|T033|AB|V07.51|ICD9CM|Use of SERMs|Use of SERMs +C2349826|T033|AB|V07.52|ICD9CM|Use aromatase inhibitors|Use aromatase inhibitors +C2349826|T033|PT|V07.52|ICD9CM|Use of aromatase inhibitors|Use of aromatase inhibitors +C2349833|T033|PT|V07.59|ICD9CM|Use of other agents affecting estrogen receptors and estrogen levels|Use of other agents affecting estrogen receptors and estrogen levels +C2349833|T033|AB|V07.59|ICD9CM|Use oth agnt af estrogen|Use oth agnt af estrogen +C2921272|T033|PT|V07.8|ICD9CM|Other specified prophylactic or treatment measure|Other specified prophylactic or treatment measure +C2921272|T033|AB|V07.8|ICD9CM|Prophyl or tx meas NEC|Prophyl or tx meas NEC +C0260402|T033|AB|V07.9|ICD9CM|Prophyl or tx meas NOS|Prophyl or tx meas NOS +C0260402|T033|PT|V07.9|ICD9CM|Unspecified prophylactic or treatment measure|Unspecified prophylactic or treatment measure +C0476550|T033|AB|V08|ICD9CM|Asymp hiv infectn status|Asymp hiv infectn status +C0476550|T033|PT|V08|ICD9CM|Asymptomatic human immunodeficiency virus [HIV] infection status|Asymptomatic human immunodeficiency virus [HIV] infection status +C0375792|T033|HT|V09|ICD9CM|Infection with drug-resistant microorganisms|Infection with drug-resistant microorganisms +C0375777|T033|AB|V09.0|ICD9CM|Inf mcrg rstn pncllins|Inf mcrg rstn pncllins +C0375777|T033|PT|V09.0|ICD9CM|Infection with microorganisms resistant to penicillins|Infection with microorganisms resistant to penicillins +C0375778|T033|AB|V09.1|ICD9CM|Inf mcrg rstn b-lactam|Inf mcrg rstn b-lactam +C0375778|T033|PT|V09.1|ICD9CM|Infection with microorganisms resistant to cephalosporins and other B-lactam antibiotics|Infection with microorganisms resistant to cephalosporins and other B-lactam antibiotics +C0375779|T033|AB|V09.2|ICD9CM|Inf mcrg rstn macrolides|Inf mcrg rstn macrolides +C0375779|T033|PT|V09.2|ICD9CM|Infection with microorganisms resistant to macrolides|Infection with microorganisms resistant to macrolides +C0375780|T033|AB|V09.3|ICD9CM|Inf mcrg rstn ttrcycln|Inf mcrg rstn ttrcycln +C0375780|T033|PT|V09.3|ICD9CM|Infection with microorganisms resistant to tetracyclines|Infection with microorganisms resistant to tetracyclines +C0375781|T033|AB|V09.4|ICD9CM|Inf mcrg rstn amnglcsds|Inf mcrg rstn amnglcsds +C0375781|T033|PT|V09.4|ICD9CM|Infection with microorganisms resistant to aminoglycosides|Infection with microorganisms resistant to aminoglycosides +C0375782|T033|HT|V09.5|ICD9CM|Infection with microorganisms resistant to quinolones and fluoroquinolones|Infection with microorganisms resistant to quinolones and fluoroquinolones +C0375783|T033|AB|V09.50|ICD9CM|Inf mcr rst qn flr nt ml|Inf mcr rst qn flr nt ml +C0375784|T033|AB|V09.51|ICD9CM|Inf mcrg rstn qn flrq ml|Inf mcrg rstn qn flrq ml +C0375784|T033|PT|V09.51|ICD9CM|Infection with microorganisms with resistance to multiple quinolones and fluroquinolones|Infection with microorganisms with resistance to multiple quinolones and fluroquinolones +C0375785|T033|AB|V09.6|ICD9CM|Inf mcrg rstn sulfnmides|Inf mcrg rstn sulfnmides +C0375785|T033|PT|V09.6|ICD9CM|Infection with microorganisms resistant to sulfonamides|Infection with microorganisms resistant to sulfonamides +C0375786|T033|HT|V09.7|ICD9CM|Infection with microorganisms resistant to other specified antimycobacterial agents|Infection with microorganisms resistant to other specified antimycobacterial agents +C0375787|T033|AB|V09.70|ICD9CM|Inf mcr rst oth ag nt ml|Inf mcr rst oth ag nt ml +C0375787|T033|PT|V09.70|ICD9CM|Infection with microorganisms without mention of resistance to multiple antimycobacterial agents|Infection with microorganisms without mention of resistance to multiple antimycobacterial agents +C0375788|T033|AB|V09.71|ICD9CM|Inf mcrg rstn oth ag mlt|Inf mcrg rstn oth ag mlt +C0375788|T033|PT|V09.71|ICD9CM|Infection with microorganisms with resistance to multiple antimycobacterial agents|Infection with microorganisms with resistance to multiple antimycobacterial agents +C0375789|T033|HT|V09.8|ICD9CM|Infection with microorganisms resistant to other specified drugs|Infection with microorganisms resistant to other specified drugs +C0375790|T033|AB|V09.80|ICD9CM|Inf mcr rst ot drg nt ml|Inf mcr rst ot drg nt ml +C0375790|T033|PT|V09.80|ICD9CM|Infection with microorganisms without mention of resistance to multiple drugs|Infection with microorganisms without mention of resistance to multiple drugs +C0375791|T033|AB|V09.81|ICD9CM|Inf mcrg rstn oth drg ml|Inf mcrg rstn oth drg ml +C0375791|T033|PT|V09.81|ICD9CM|Infection with microorganisms with resistance to multiple drugs|Infection with microorganisms with resistance to multiple drugs +C0375792|T033|HT|V09.9|ICD9CM|Infection with drug-resistant microorganisms, unspecified|Infection with drug-resistant microorganisms, unspecified +C0375793|T033|AB|V09.90|ICD9CM|Infc mcrg drgrst nt mult|Infc mcrg drgrst nt mult +C0375794|T033|AB|V09.91|ICD9CM|Infc mcrg drgrst mult|Infc mcrg drgrst mult +C0375794|T033|PT|V09.91|ICD9CM|Infection with drug-resistant microorganisms, unspecified, with multiple drug resistance|Infection with drug-resistant microorganisms, unspecified, with multiple drug resistance +C0260455|T033|HT|V10|ICD9CM|Personal history of malignant neoplasm|Personal history of malignant neoplasm +C0260405|T033|HT|V10.0|ICD9CM|Personal history of malignant neoplasm of gastrointestinal tract|Personal history of malignant neoplasm of gastrointestinal tract +C0260405|T033|AB|V10.00|ICD9CM|Hx of GI malignancy NOS|Hx of GI malignancy NOS +C0260405|T033|PT|V10.00|ICD9CM|Personal history of malignant neoplasm of gastrointestinal tract, unspecified|Personal history of malignant neoplasm of gastrointestinal tract, unspecified +C0260406|T033|AB|V10.01|ICD9CM|Hx of tongue malignancy|Hx of tongue malignancy +C0260406|T033|PT|V10.01|ICD9CM|Personal history of malignant neoplasm of tongue|Personal history of malignant neoplasm of tongue +C0260407|T033|AB|V10.02|ICD9CM|Hx-oral/pharynx malg NEC|Hx-oral/pharynx malg NEC +C0260407|T033|PT|V10.02|ICD9CM|Personal history of malignant neoplasm of other and unspecified oral cavity and pharynx|Personal history of malignant neoplasm of other and unspecified oral cavity and pharynx +C0260408|T033|AB|V10.03|ICD9CM|Hx-esophageal malignancy|Hx-esophageal malignancy +C0260408|T033|PT|V10.03|ICD9CM|Personal history of malignant neoplasm of esophagus|Personal history of malignant neoplasm of esophagus +C0260409|T033|AB|V10.04|ICD9CM|Hx of gastric malignancy|Hx of gastric malignancy +C0260409|T033|PT|V10.04|ICD9CM|Personal history of malignant neoplasm of stomach|Personal history of malignant neoplasm of stomach +C0260410|T033|AB|V10.05|ICD9CM|Hx of colonic malignancy|Hx of colonic malignancy +C0260410|T033|PT|V10.05|ICD9CM|Personal history of malignant neoplasm of large intestine|Personal history of malignant neoplasm of large intestine +C0260411|T033|AB|V10.06|ICD9CM|Hx-rectal & anal malign|Hx-rectal & anal malign +C0260411|T033|PT|V10.06|ICD9CM|Personal history of malignant neoplasm of rectum, rectosigmoid junction, and anus|Personal history of malignant neoplasm of rectum, rectosigmoid junction, and anus +C0260412|T033|AB|V10.07|ICD9CM|Hx of liver malignancy|Hx of liver malignancy +C0260412|T033|PT|V10.07|ICD9CM|Personal history of malignant neoplasm of liver|Personal history of malignant neoplasm of liver +C0260413|T033|AB|V10.09|ICD9CM|Hx of GI malignancy NEC|Hx of GI malignancy NEC +C0260413|T033|PT|V10.09|ICD9CM|Personal history of malignant neoplasm of other gastrointestinal tract|Personal history of malignant neoplasm of other gastrointestinal tract +C0260414|T033|HT|V10.1|ICD9CM|Personal history of malignant neoplasm of trachea, bronchus, and lung|Personal history of malignant neoplasm of trachea, bronchus, and lung +C0260415|T033|AB|V10.11|ICD9CM|Hx-bronchogenic malignan|Hx-bronchogenic malignan +C0260415|T033|PT|V10.11|ICD9CM|Personal history of malignant neoplasm of bronchus and lung|Personal history of malignant neoplasm of bronchus and lung +C0260416|T033|AB|V10.12|ICD9CM|Hx-tracheal malignancy|Hx-tracheal malignancy +C0260416|T033|PT|V10.12|ICD9CM|Personal history of malignant neoplasm of trachea|Personal history of malignant neoplasm of trachea +C0260417|T033|HT|V10.2|ICD9CM|Personal history of malignant neoplasm of other respiratory and intrathoracic organs|Personal history of malignant neoplasm of other respiratory and intrathoracic organs +C0260418|T033|AB|V10.20|ICD9CM|Hx-resp org malignan NOS|Hx-resp org malignan NOS +C0260418|T033|PT|V10.20|ICD9CM|Personal history of malignant neoplasm of respiratory organ, unspecified|Personal history of malignant neoplasm of respiratory organ, unspecified +C0260419|T033|AB|V10.21|ICD9CM|Hx-laryngeal malignancy|Hx-laryngeal malignancy +C0260419|T033|PT|V10.21|ICD9CM|Personal history of malignant neoplasm of larynx|Personal history of malignant neoplasm of larynx +C0260420|T033|AB|V10.22|ICD9CM|Hx-nose/ear/sinus malig|Hx-nose/ear/sinus malig +C0260420|T033|PT|V10.22|ICD9CM|Personal history of malignant neoplasm of nasal cavities, middle ear, and accessory sinuses|Personal history of malignant neoplasm of nasal cavities, middle ear, and accessory sinuses +C0260417|T033|AB|V10.29|ICD9CM|Hx-intrathoracic mal NEC|Hx-intrathoracic mal NEC +C0260417|T033|PT|V10.29|ICD9CM|Personal history of malignant neoplasm of other respiratory and intrathoracic organs|Personal history of malignant neoplasm of other respiratory and intrathoracic organs +C0260421|T033|AB|V10.3|ICD9CM|Hx of breast malignancy|Hx of breast malignancy +C0260421|T033|PT|V10.3|ICD9CM|Personal history of malignant neoplasm of breast|Personal history of malignant neoplasm of breast +C0260422|T033|HT|V10.4|ICD9CM|Personal history of malignant neoplasm of genital organs|Personal history of malignant neoplasm of genital organs +C0260423|T033|AB|V10.40|ICD9CM|Hx-female genit malg NOS|Hx-female genit malg NOS +C0260423|T033|PT|V10.40|ICD9CM|Personal history of malignant neoplasm of female genital organ, unspecified|Personal history of malignant neoplasm of female genital organ, unspecified +C0260424|T033|AB|V10.41|ICD9CM|Hx-cervical malignancy|Hx-cervical malignancy +C0260424|T033|PT|V10.41|ICD9CM|Personal history of malignant neoplasm of cervix uteri|Personal history of malignant neoplasm of cervix uteri +C0260425|T033|AB|V10.42|ICD9CM|Hx-uterus malignancy NEC|Hx-uterus malignancy NEC +C0260425|T033|PT|V10.42|ICD9CM|Personal history of malignant neoplasm of other parts of uterus|Personal history of malignant neoplasm of other parts of uterus +C0260426|T033|AB|V10.43|ICD9CM|Hx of ovarian malignancy|Hx of ovarian malignancy +C0260426|T033|PT|V10.43|ICD9CM|Personal history of malignant neoplasm of ovary|Personal history of malignant neoplasm of ovary +C0260427|T033|AB|V10.44|ICD9CM|Hx-female genit malg NEC|Hx-female genit malg NEC +C0260427|T033|PT|V10.44|ICD9CM|Personal history of malignant neoplasm of other female genital organs|Personal history of malignant neoplasm of other female genital organs +C0260428|T033|AB|V10.45|ICD9CM|Hx-male genit malig NOS|Hx-male genit malig NOS +C0260428|T033|PT|V10.45|ICD9CM|Personal history of malignant neoplasm of male genital organ, unspecified|Personal history of malignant neoplasm of male genital organ, unspecified +C0260429|T033|AB|V10.46|ICD9CM|Hx-prostatic malignancy|Hx-prostatic malignancy +C0260429|T033|PT|V10.46|ICD9CM|Personal history of malignant neoplasm of prostate|Personal history of malignant neoplasm of prostate +C0260430|T033|AB|V10.47|ICD9CM|Hx-testicular malignancy|Hx-testicular malignancy +C0260430|T033|PT|V10.47|ICD9CM|Personal history of malignant neoplasm of testis|Personal history of malignant neoplasm of testis +C0700112|T033|AB|V10.48|ICD9CM|Hx-epididymis malignancy|Hx-epididymis malignancy +C0700112|T033|PT|V10.48|ICD9CM|Personal history of malignant neoplasm of epididymis|Personal history of malignant neoplasm of epididymis +C0260431|T033|AB|V10.49|ICD9CM|Hx-male genit malig NEC|Hx-male genit malig NEC +C0260431|T033|PT|V10.49|ICD9CM|Personal history of malignant neoplasm of other male genital organs|Personal history of malignant neoplasm of other male genital organs +C0260432|T033|HT|V10.5|ICD9CM|Personal history of malignant neoplasm of urinary organs|Personal history of malignant neoplasm of urinary organs +C0260433|T033|AB|V10.50|ICD9CM|Hx-urinary malignan NOS|Hx-urinary malignan NOS +C0260433|T033|PT|V10.50|ICD9CM|Personal history of malignant neoplasm of urinary organ, unspecified|Personal history of malignant neoplasm of urinary organ, unspecified +C0260434|T033|AB|V10.51|ICD9CM|Hx of bladder malignancy|Hx of bladder malignancy +C0260434|T033|PT|V10.51|ICD9CM|Personal history of malignant neoplasm of bladder|Personal history of malignant neoplasm of bladder +C0260435|T033|AB|V10.52|ICD9CM|Hx of kidney malignancy|Hx of kidney malignancy +C0260435|T033|PT|V10.52|ICD9CM|Personal history of malignant neoplasm of kidney|Personal history of malignant neoplasm of kidney +C0949153|T033|AB|V10.53|ICD9CM|Hx malig renal pelvis|Hx malig renal pelvis +C0949153|T033|PT|V10.53|ICD9CM|Personal history of malignant neoplasm of renal pelvis|Personal history of malignant neoplasm of renal pelvis +C2911290|T033|AB|V10.59|ICD9CM|Hx-urinary malignan NEC|Hx-urinary malignan NEC +C2911290|T033|PT|V10.59|ICD9CM|Personal history of malignant neoplasm of other urinary organs|Personal history of malignant neoplasm of other urinary organs +C0260437|T033|HT|V10.6|ICD9CM|Personal history of leukemia|Personal history of leukemia +C0475686|T033|AB|V10.60|ICD9CM|Hx of leukemia NOS|Hx of leukemia NOS +C0475686|T033|PT|V10.60|ICD9CM|Personal history of leukemia, unspecified|Personal history of leukemia, unspecified +C0260439|T033|AB|V10.61|ICD9CM|Hx of lymphoid leukemia|Hx of lymphoid leukemia +C0260439|T033|PT|V10.61|ICD9CM|Personal history of lymphoid leukemia|Personal history of lymphoid leukemia +C0260440|T033|AB|V10.62|ICD9CM|Hx of myeloid leukemia|Hx of myeloid leukemia +C0260440|T033|PT|V10.62|ICD9CM|Personal history of myeloid leukemia|Personal history of myeloid leukemia +C0260441|T033|AB|V10.63|ICD9CM|Hx of monocytic leukemia|Hx of monocytic leukemia +C0260441|T033|PT|V10.63|ICD9CM|Personal history of monocytic leukemia|Personal history of monocytic leukemia +C0260442|T033|AB|V10.69|ICD9CM|Hx of leukemia NEC|Hx of leukemia NEC +C0260442|T033|PT|V10.69|ICD9CM|Personal history of other leukemia|Personal history of other leukemia +C0349403|T033|HT|V10.7|ICD9CM|Personal history of other lymphatic and hematopoietic neoplasms|Personal history of other lymphatic and hematopoietic neoplasms +C0260444|T033|AB|V10.71|ICD9CM|Hx-lymphosarcoma|Hx-lymphosarcoma +C0260444|T033|PT|V10.71|ICD9CM|Personal history of lymphosarcoma and reticulosarcoma|Personal history of lymphosarcoma and reticulosarcoma +C0260445|T033|AB|V10.72|ICD9CM|Hx-hodgkin's disease|Hx-hodgkin's disease +C0260445|T033|PT|V10.72|ICD9CM|Personal history of hodgkin's disease|Personal history of hodgkin's disease +C0349403|T033|AB|V10.79|ICD9CM|Hx-lymphatic malign NEC|Hx-lymphatic malign NEC +C0349403|T033|PT|V10.79|ICD9CM|Personal history of other lymphatic and hematopoietic neoplasms|Personal history of other lymphatic and hematopoietic neoplasms +C0260446|T033|HT|V10.8|ICD9CM|Personal history of malignant neoplasm of other sites|Personal history of malignant neoplasm of other sites +C0260447|T033|AB|V10.81|ICD9CM|Hx of bone malignancy|Hx of bone malignancy +C0260447|T033|PT|V10.81|ICD9CM|Personal history of malignant neoplasm of bone|Personal history of malignant neoplasm of bone +C0260448|T033|AB|V10.82|ICD9CM|Hx-malig skin melanoma|Hx-malig skin melanoma +C0260448|T033|PT|V10.82|ICD9CM|Personal history of malignant melanoma of skin|Personal history of malignant melanoma of skin +C0260449|T033|AB|V10.83|ICD9CM|Hx-skin malignancy NEC|Hx-skin malignancy NEC +C0260449|T033|PT|V10.83|ICD9CM|Personal history of other malignant neoplasm of skin|Personal history of other malignant neoplasm of skin +C0260450|T033|AB|V10.84|ICD9CM|Hx of eye malignancy|Hx of eye malignancy +C0260450|T033|PT|V10.84|ICD9CM|Personal history of malignant neoplasm of eye|Personal history of malignant neoplasm of eye +C0260451|T033|AB|V10.85|ICD9CM|Hx of brain malignancy|Hx of brain malignancy +C0260451|T033|PT|V10.85|ICD9CM|Personal history of malignant neoplasm of brain|Personal history of malignant neoplasm of brain +C0260452|T033|AB|V10.86|ICD9CM|Hx-malign nerve syst NEC|Hx-malign nerve syst NEC +C0260452|T033|PT|V10.86|ICD9CM|Personal history of malignant neoplasm of other parts of nervous system|Personal history of malignant neoplasm of other parts of nervous system +C0260453|T033|AB|V10.87|ICD9CM|Hx of thyroid malignancy|Hx of thyroid malignancy +C0260453|T033|PT|V10.87|ICD9CM|Personal history of malignant neoplasm of thyroid|Personal history of malignant neoplasm of thyroid +C0260454|T033|AB|V10.88|ICD9CM|Hx-endocrine malign NEC|Hx-endocrine malign NEC +C0260454|T033|PT|V10.88|ICD9CM|Personal history of malignant neoplasm of other endocrine glands and related structures|Personal history of malignant neoplasm of other endocrine glands and related structures +C0260446|T033|AB|V10.89|ICD9CM|Hx of malignancy NEC|Hx of malignancy NEC +C0260446|T033|PT|V10.89|ICD9CM|Personal history of malignant neoplasm of other sites|Personal history of malignant neoplasm of other sites +C2712731|T033|HT|V10.9|ICD9CM|Other and unspecified personal history of malignant neoplasm|Other and unspecified personal history of malignant neoplasm +C0260455|T033|AB|V10.90|ICD9CM|Hx malig neoplasm NOS|Hx malig neoplasm NOS +C0260455|T033|PT|V10.90|ICD9CM|Personal history of unspecified malignant neoplasm|Personal history of unspecified malignant neoplasm +C2712771|T033|AB|V10.91|ICD9CM|Hx malig neuroendo tumor|Hx malig neuroendo tumor +C2712771|T033|PT|V10.91|ICD9CM|Personal history of malignant neuroendocrine tumor|Personal history of malignant neuroendocrine tumor +C0260462|T033|HT|V11|ICD9CM|Personal history of mental disorder|Personal history of mental disorder +C0260457|T033|AB|V11.0|ICD9CM|Hx of schizophrenia|Hx of schizophrenia +C0260457|T033|PT|V11.0|ICD9CM|Personal history of schizophrenia|Personal history of schizophrenia +C0260458|T033|AB|V11.1|ICD9CM|Hx of affective disorder|Hx of affective disorder +C0260458|T033|PT|V11.1|ICD9CM|Personal history of affective disorders|Personal history of affective disorders +C0260459|T033|AB|V11.2|ICD9CM|Hx of neurosis|Hx of neurosis +C0260459|T033|PT|V11.2|ICD9CM|Personal history of neurosis|Personal history of neurosis +C0260460|T033|AB|V11.3|ICD9CM|Hx of alcoholism|Hx of alcoholism +C0260460|T033|PT|V11.3|ICD9CM|Personal history of alcoholism|Personal history of alcoholism +C2921273|T033|AB|V11.4|ICD9CM|Hx combat/stress reactn|Hx combat/stress reactn +C2921273|T033|PT|V11.4|ICD9CM|Personal history of combat and operational stress reaction|Personal history of combat and operational stress reaction +C0260461|T033|AB|V11.8|ICD9CM|Hx-mental disorder NEC|Hx-mental disorder NEC +C0260461|T033|PT|V11.8|ICD9CM|Personal history of other mental disorders|Personal history of other mental disorders +C0260462|T033|AB|V11.9|ICD9CM|Hx-mental disorder NOS|Hx-mental disorder NOS +C0260462|T033|PT|V11.9|ICD9CM|Personal history of unspecified mental disorder|Personal history of unspecified mental disorder +C0260463|T033|HT|V12|ICD9CM|Personal history of certain other diseases|Personal history of certain other diseases +C0260464|T033|HT|V12.0|ICD9CM|Personal history of infectious and parasitic diseases|Personal history of infectious and parasitic diseases +C0375795|T033|PT|V12.00|ICD9CM|Personal history of unspecified infectious and parasitic disease|Personal history of unspecified infectious and parasitic disease +C0375795|T033|AB|V12.00|ICD9CM|Prsnl hst unsp nfct prst|Prsnl hst unsp nfct prst +C0375796|T033|PT|V12.01|ICD9CM|Personal history of tuberculosis|Personal history of tuberculosis +C0375796|T033|AB|V12.01|ICD9CM|Prsnl hst tuberculosis|Prsnl hst tuberculosis +C0375797|T033|PT|V12.02|ICD9CM|Personal history of poliomyelitis|Personal history of poliomyelitis +C0375797|T033|AB|V12.02|ICD9CM|Prsnl hst poliomyelitis|Prsnl hst poliomyelitis +C0375798|T033|PT|V12.03|ICD9CM|Personal history of malaria|Personal history of malaria +C0375798|T033|AB|V12.03|ICD9CM|Personal histry malaria|Personal histry malaria +C2350012|T033|AB|V12.04|ICD9CM|Hx Methicln resist Staph|Hx Methicln resist Staph +C2350012|T033|PT|V12.04|ICD9CM|Personal history of Methicillin resistant Staphylococcus aureus|Personal history of Methicillin resistant Staphylococcus aureus +C0375799|T033|PT|V12.09|ICD9CM|Personal history of other infectious and parasitic diseases|Personal history of other infectious and parasitic diseases +C0375799|T033|AB|V12.09|ICD9CM|Prsnl hst oth nfct parst|Prsnl hst oth nfct parst +C0260465|T033|AB|V12.1|ICD9CM|Hx-nutrition deficiency|Hx-nutrition deficiency +C0260465|T033|PT|V12.1|ICD9CM|Personal history of nutritional deficiency|Personal history of nutritional deficiency +C0260466|T033|HT|V12.2|ICD9CM|Personal history of endocrine, metabolic, and immunity disorders|Personal history of endocrine, metabolic, and immunity disorders +C3161145|T033|AB|V12.21|ICD9CM|Hx gestational diabetes|Hx gestational diabetes +C3161145|T033|PT|V12.21|ICD9CM|Personal history of gestational diabetes|Personal history of gestational diabetes +C3161146|T033|AB|V12.29|ICD9CM|Hx-endocr/meta/immun dis|Hx-endocr/meta/immun dis +C3161146|T033|PT|V12.29|ICD9CM|Personal history of other endocrine, metabolic, and immunity disorders|Personal history of other endocrine, metabolic, and immunity disorders +C0260467|T033|AB|V12.3|ICD9CM|Hx-blood diseases|Hx-blood diseases +C0260467|T033|PT|V12.3|ICD9CM|Personal history of diseases of blood and blood-forming organs|Personal history of diseases of blood and blood-forming organs +C0496723|T033|HT|V12.4|ICD9CM|Personal history of disorders of nervous system and sense organs|Personal history of disorders of nervous system and sense organs +C0496723|T033|AB|V12.40|ICD9CM|Hx nerv sys/snse org NOS|Hx nerv sys/snse org NOS +C0496723|T033|PT|V12.40|ICD9CM|Personal history of unspecified disorder of nervous system and sense organs|Personal history of unspecified disorder of nervous system and sense organs +C0490014|T033|AB|V12.41|ICD9CM|Hx benign neoplasm brain|Hx benign neoplasm brain +C0490014|T033|PT|V12.41|ICD9CM|Personal history of benign neoplasm of the brain|Personal history of benign neoplasm of the brain +C2921394|T033|PT|V12.42|ICD9CM|Personal history of infections of the central nervous system|Personal history of infections of the central nervous system +C2921394|T033|AB|V12.42|ICD9CM|Personl hx infection CNS|Personl hx infection CNS +C0490015|T033|AB|V12.49|ICD9CM|Hx nerv sys/snse org NEC|Hx nerv sys/snse org NEC +C0490015|T033|PT|V12.49|ICD9CM|Personal history of other disorders of nervous system and sense organs|Personal history of other disorders of nervous system and sense organs +C0260469|T033|HT|V12.5|ICD9CM|Personal history of diseases of circulatory system|Personal history of diseases of circulatory system +C0740088|T033|AB|V12.50|ICD9CM|Hx-circulatory dis NOS|Hx-circulatory dis NOS +C0740088|T033|PT|V12.50|ICD9CM|Personal history of unspecified circulatory disease|Personal history of unspecified circulatory disease +C0375800|T033|AB|V12.51|ICD9CM|Hx-ven thrombosis/embols|Hx-ven thrombosis/embols +C0375800|T033|PT|V12.51|ICD9CM|Personal history of venous thrombosis and embolism|Personal history of venous thrombosis and embolism +C0375801|T033|AB|V12.52|ICD9CM|Hx-thrombophlebitis|Hx-thrombophlebitis +C0375801|T033|PT|V12.52|ICD9CM|Personal history of thrombophlebitis|Personal history of thrombophlebitis +C1961116|T033|AB|V12.53|ICD9CM|Hx sudden cardiac arrest|Hx sudden cardiac arrest +C1961116|T033|PT|V12.53|ICD9CM|Personal history of sudden cardiac arrest|Personal history of sudden cardiac arrest +C1955570|T033|AB|V12.54|ICD9CM|Hx TIA/stroke w/o resid|Hx TIA/stroke w/o resid +C0585968|T033|AB|V12.55|ICD9CM|Hx pulmonary embolism|Hx pulmonary embolism +C0585968|T033|PT|V12.55|ICD9CM|Personal history of pulmonary embolism|Personal history of pulmonary embolism +C0375802|T033|AB|V12.59|ICD9CM|Hx-circulatory dis NEC|Hx-circulatory dis NEC +C0375802|T033|PT|V12.59|ICD9CM|Personal history of other diseases of circulatory system|Personal history of other diseases of circulatory system +C0260470|T033|HT|V12.6|ICD9CM|Personal history of diseases of respiratory system|Personal history of diseases of respiratory system +C0035204|T047|AB|V12.60|ICD9CM|Hx resp system dis NOS|Hx resp system dis NOS +C0035204|T047|PT|V12.60|ICD9CM|Personal history of unspecified disease of respiratory system|Personal history of unspecified disease of respiratory system +C2911331|T033|PT|V12.61|ICD9CM|Personal history of pneumonia (recurrent)|Personal history of pneumonia (recurrent) +C2911331|T033|AB|V12.61|ICD9CM|Prsnl hx recur pneumonia|Prsnl hx recur pneumonia +C2921392|T033|AB|V12.69|ICD9CM|Hx resp system dis NEC|Hx resp system dis NEC +C2921392|T033|PT|V12.69|ICD9CM|Personal history of other diseases of respiratory system|Personal history of other diseases of respiratory system +C0260471|T033|HT|V12.7|ICD9CM|Personal history of diseases of digestive system|Personal history of diseases of digestive system +C0740089|T033|PT|V12.70|ICD9CM|Personal history of unspecified digestive disease|Personal history of unspecified digestive disease +C0740089|T033|AB|V12.70|ICD9CM|Prsnl hst unspc dgstv ds|Prsnl hst unspc dgstv ds +C0375803|T033|PT|V12.71|ICD9CM|Personal history of peptic ulcer disease|Personal history of peptic ulcer disease +C0375803|T033|AB|V12.71|ICD9CM|Prsnl hst peptic ulcr ds|Prsnl hst peptic ulcr ds +C0375804|T033|PT|V12.72|ICD9CM|Personal history of colonic polyps|Personal history of colonic polyps +C0375804|T033|AB|V12.72|ICD9CM|Prsnl hst colonic polyps|Prsnl hst colonic polyps +C0375805|T033|PT|V12.79|ICD9CM|Personal history of other diseases of digestive system|Personal history of other diseases of digestive system +C0375805|T033|AB|V12.79|ICD9CM|Prsnl hst ot spf dgst ds|Prsnl hst ot spf dgst ds +C0260472|T033|HT|V13|ICD9CM|Personal history of other diseases|Personal history of other diseases +C0700516|T033|HT|V13.0|ICD9CM|Personal history of disorders of urinary system|Personal history of disorders of urinary system +C0260473|T033|PT|V13.00|ICD9CM|Personal history of unspecified urinary disorder|Personal history of unspecified urinary disorder +C0260473|T033|AB|V13.00|ICD9CM|Prsnl hst urnr dsrd unsp|Prsnl hst urnr dsrd unsp +C0375806|T033|PT|V13.01|ICD9CM|Personal history of urinary calculi|Personal history of urinary calculi +C0375806|T033|AB|V13.01|ICD9CM|Prsnl hst urnr dsrd calc|Prsnl hst urnr dsrd calc +C2921372|T033|AB|V13.02|ICD9CM|Personal history UTI|Personal history UTI +C2921372|T033|PT|V13.02|ICD9CM|Personal history, urinary (tract) infection|Personal history, urinary (tract) infection +C2921393|T033|PT|V13.03|ICD9CM|Personal history, nephrotic syndrome|Personal history, nephrotic syndrome +C2921393|T033|AB|V13.03|ICD9CM|Personl hx nephrotic syn|Personl hx nephrotic syn +C0375807|T033|PT|V13.09|ICD9CM|Personal history of other specified urinary system disorders|Personal history of other specified urinary system disorders +C0375807|T033|AB|V13.09|ICD9CM|Prsn hst ot spf urn dsrd|Prsn hst ot spf urn dsrd +C0260474|T033|AB|V13.1|ICD9CM|Hx-trophoblastic disease|Hx-trophoblastic disease +C0260474|T033|PT|V13.1|ICD9CM|Personal history of trophoblastic disease|Personal history of trophoblastic disease +C0260475|T033|HT|V13.2|ICD9CM|Personal history of other genital system and obstetric disorders|Personal history of other genital system and obstetric disorders +C1135273|T033|AB|V13.21|ICD9CM|History-pre-term labor|History-pre-term labor +C1135273|T033|PT|V13.21|ICD9CM|Personal history of pre-term labor|Personal history of pre-term labor +C1955573|T033|AB|V13.22|ICD9CM|Hx of cervical dysplasia|Hx of cervical dysplasia +C1955573|T033|PT|V13.22|ICD9CM|Personal history of cervical dysplasia|Personal history of cervical dysplasia +C2921279|T033|AB|V13.23|ICD9CM|Hx vaginal dysplasia|Hx vaginal dysplasia +C2921279|T033|PT|V13.23|ICD9CM|Personal history of vaginal dysplasia|Personal history of vaginal dysplasia +C2921281|T033|AB|V13.24|ICD9CM|Hx vulvar dysplasia|Hx vulvar dysplasia +C2921281|T033|PT|V13.24|ICD9CM|Personal history of vulvar dysplasia|Personal history of vulvar dysplasia +C0260475|T033|AB|V13.29|ICD9CM|Hx-genital/obs dis NEC|Hx-genital/obs dis NEC +C0260475|T033|PT|V13.29|ICD9CM|Personal history of other genital system and obstetric disorders|Personal history of other genital system and obstetric disorders +C0260476|T033|AB|V13.3|ICD9CM|Hx-skin/subcutan tis dis|Hx-skin/subcutan tis dis +C0260476|T033|PT|V13.3|ICD9CM|Personal history of diseases of skin and subcutaneous tissue|Personal history of diseases of skin and subcutaneous tissue +C0260477|T033|AB|V13.4|ICD9CM|Hx of arthritis|Hx of arthritis +C0260477|T033|PT|V13.4|ICD9CM|Personal history of arthritis|Personal history of arthritis +C0260478|T033|HT|V13.5|ICD9CM|Personal history of other musculoskeletal disorders|Personal history of other musculoskeletal disorders +C0016663|T046|AB|V13.51|ICD9CM|Hx pathological fracture|Hx pathological fracture +C0016663|T046|PT|V13.51|ICD9CM|Personal history of pathologic fracture|Personal history of pathologic fracture +C2921408|T033|AB|V13.52|ICD9CM|Hx stress fracture|Hx stress fracture +C2921408|T033|PT|V13.52|ICD9CM|Personal history of stress fracture|Personal history of stress fracture +C0260478|T033|AB|V13.59|ICD9CM|Hx musculoskletl dis NEC|Hx musculoskletl dis NEC +C0260478|T033|PT|V13.59|ICD9CM|Personal history of other musculoskeletal disorders|Personal history of other musculoskeletal disorders +C2921283|T033|HT|V13.6|ICD9CM|Personal history of congenital (corrected) malformations|Personal history of congenital (corrected) malformations +C2921284|T033|AB|V13.61|ICD9CM|Hx-hypospadias|Hx-hypospadias +C2921284|T033|PT|V13.61|ICD9CM|Personal history of (corrected) hypospadias|Personal history of (corrected) hypospadias +C2921285|T033|AB|V13.62|ICD9CM|Hx-cong malform-gu|Hx-cong malform-gu +C2921285|T033|PT|V13.62|ICD9CM|Personal history of other (corrected) congenital malformations of genitourinary system|Personal history of other (corrected) congenital malformations of genitourinary system +C2921286|T033|AB|V13.63|ICD9CM|Hx-cong malform-nervous|Hx-cong malform-nervous +C2921286|T033|PT|V13.63|ICD9CM|Personal history of (corrected) congenital malformations of nervous system|Personal history of (corrected) congenital malformations of nervous system +C2921288|T033|AB|V13.64|ICD9CM|Hx-cong malform-eye,face|Hx-cong malform-eye,face +C2921288|T033|PT|V13.64|ICD9CM|Personal history of (corrected) congenital malformations of eye, ear, face and neck|Personal history of (corrected) congenital malformations of eye, ear, face and neck +C2921289|T033|AB|V13.65|ICD9CM|Hx-cong malform-heart|Hx-cong malform-heart +C2921289|T033|PT|V13.65|ICD9CM|Personal history of (corrected) congenital malformations of heart and circulatory system|Personal history of (corrected) congenital malformations of heart and circulatory system +C2921290|T033|AB|V13.66|ICD9CM|Hx-cong malform-resp sys|Hx-cong malform-resp sys +C2921290|T033|PT|V13.66|ICD9CM|Personal history of (corrected) congenital malformations of respiratory system|Personal history of (corrected) congenital malformations of respiratory system +C2921291|T033|AB|V13.67|ICD9CM|Hx-cong malform-digest|Hx-cong malform-digest +C2921291|T033|PT|V13.67|ICD9CM|Personal history of (corrected) congenital malformations of digestive system|Personal history of (corrected) congenital malformations of digestive system +C2921292|T033|AB|V13.68|ICD9CM|Hx-cong malform-skin,ms|Hx-cong malform-skin,ms +C0700232|T033|AB|V13.69|ICD9CM|Hx-congenital malfor NEC|Hx-congenital malfor NEC +C0700232|T033|PT|V13.69|ICD9CM|Personal history of other (corrected) congenital malformations|Personal history of other (corrected) congenital malformations +C0260480|T033|AB|V13.7|ICD9CM|Hx-perinatal problems|Hx-perinatal problems +C0260480|T033|PT|V13.7|ICD9CM|Personal history of perinatal problems|Personal history of perinatal problems +C0260481|T033|HT|V13.8|ICD9CM|Personal history of other specified diseases|Personal history of other specified diseases +C3161147|T033|AB|V13.81|ICD9CM|Hx of anaphylaxis|Hx of anaphylaxis +C3161147|T033|PT|V13.81|ICD9CM|Personal history of anaphylaxis|Personal history of anaphylaxis +C0260481|T033|AB|V13.89|ICD9CM|Hx diseases NEC|Hx diseases NEC +C0260481|T033|PT|V13.89|ICD9CM|Personal history of other specified diseases|Personal history of other specified diseases +C0260482|T033|AB|V13.9|ICD9CM|Hx of disease NOS|Hx of disease NOS +C0260482|T033|PT|V13.9|ICD9CM|Personal history of unspecified disease|Personal history of unspecified disease +C0260483|T033|HT|V14|ICD9CM|Personal history of allergy to medicinal agents|Personal history of allergy to medicinal agents +C0260484|T033|AB|V14.0|ICD9CM|Hx-penicillin allergy|Hx-penicillin allergy +C0260484|T033|PT|V14.0|ICD9CM|Personal history of allergy to penicillin|Personal history of allergy to penicillin +C0260485|T033|AB|V14.1|ICD9CM|Hx-antibiot allergy NEC|Hx-antibiot allergy NEC +C0260485|T033|PT|V14.1|ICD9CM|Personal history of allergy to other antibiotic agent|Personal history of allergy to other antibiotic agent +C0260486|T033|AB|V14.2|ICD9CM|Hx-sulfonamides allergy|Hx-sulfonamides allergy +C0260486|T033|PT|V14.2|ICD9CM|Personal history of allergy to sulfonamides|Personal history of allergy to sulfonamides +C0260487|T033|AB|V14.3|ICD9CM|Hx-anti-infect allergy|Hx-anti-infect allergy +C0260487|T033|PT|V14.3|ICD9CM|Personal history of allergy to other anti-infective agent|Personal history of allergy to other anti-infective agent +C0260488|T033|AB|V14.4|ICD9CM|Hx-anesthetic allergy|Hx-anesthetic allergy +C0260488|T033|PT|V14.4|ICD9CM|Personal history of allergy to anesthetic agent|Personal history of allergy to anesthetic agent +C0260489|T033|AB|V14.5|ICD9CM|Hx-narcotic allergy|Hx-narcotic allergy +C0260489|T033|PT|V14.5|ICD9CM|Personal history of allergy to narcotic agent|Personal history of allergy to narcotic agent +C0260490|T033|AB|V14.6|ICD9CM|Hx-analgesic allergy|Hx-analgesic allergy +C0260490|T033|PT|V14.6|ICD9CM|Personal history of allergy to analgesic agent|Personal history of allergy to analgesic agent +C0260491|T033|AB|V14.7|ICD9CM|Hx-vaccine allergy|Hx-vaccine allergy +C0260491|T033|PT|V14.7|ICD9CM|Personal history of allergy to serum or vaccine|Personal history of allergy to serum or vaccine +C0260492|T033|AB|V14.8|ICD9CM|Hx-drug allergy NEC|Hx-drug allergy NEC +C0260492|T033|PT|V14.8|ICD9CM|Personal history of allergy to other specified medicinal agents|Personal history of allergy to other specified medicinal agents +C0260493|T033|AB|V14.9|ICD9CM|Hx-drug allergy NOS|Hx-drug allergy NOS +C0260493|T033|PT|V14.9|ICD9CM|Personal history of allergy to unspecified medicinal agent|Personal history of allergy to unspecified medicinal agent +C0260494|T033|HT|V15|ICD9CM|Other personal history presenting hazards to health|Other personal history presenting hazards to health +C0877841|T033|HT|V15.0|ICD9CM|Personal history of allergy, other than to medicinal agents, presenting hazards to health|Personal history of allergy, other than to medicinal agents, presenting hazards to health +C0917918|T033|PT|V15.01|ICD9CM|Allergy to peanuts|Allergy to peanuts +C0917918|T033|AB|V15.01|ICD9CM|Hx-peanut allergy|Hx-peanut allergy +C0878710|T033|PT|V15.02|ICD9CM|Allergy to milk products|Allergy to milk products +C0878710|T033|AB|V15.02|ICD9CM|Hx-milk prod allergy|Hx-milk prod allergy +C0917919|T033|PT|V15.03|ICD9CM|Allergy to eggs|Allergy to eggs +C0917919|T033|AB|V15.03|ICD9CM|Hx-eggs allergy|Hx-eggs allergy +C0917920|T033|PT|V15.04|ICD9CM|Allergy to seafood|Allergy to seafood +C0917920|T033|AB|V15.04|ICD9CM|Hx-seafood allergy|Hx-seafood allergy +C0878711|T033|PT|V15.05|ICD9CM|Allergy to other foods|Allergy to other foods +C0878711|T033|AB|V15.05|ICD9CM|Hx-other food allergy|Hx-other food allergy +C2712538|T033|PT|V15.06|ICD9CM|Allergy to insects and arachnids|Allergy to insects and arachnids +C2712538|T033|AB|V15.06|ICD9CM|Hx-allergy insct/arachnd|Hx-allergy insct/arachnd +C0917921|T033|PT|V15.07|ICD9CM|Allergy to latex|Allergy to latex +C0917921|T033|AB|V15.07|ICD9CM|Hx-latex allergy|Hx-latex allergy +C0878713|T033|PT|V15.08|ICD9CM|Allergy to radiographic dye|Allergy to radiographic dye +C0878713|T033|AB|V15.08|ICD9CM|Hx-radiogrphc dye allrgy|Hx-radiogrphc dye allrgy +C0878714|T033|AB|V15.09|ICD9CM|Hx-allergy NEC|Hx-allergy NEC +C0878714|T033|PT|V15.09|ICD9CM|Other allergy, other than to medicinal agents|Other allergy, other than to medicinal agents +C0260495|T033|AB|V15.1|ICD9CM|Hx-major cardiovasc surg|Hx-major cardiovasc surg +C0260495|T033|PT|V15.1|ICD9CM|Personal history of surgery to heart and great vessels, presenting hazards to health|Personal history of surgery to heart and great vessels, presenting hazards to health +C0260496|T033|HT|V15.2|ICD9CM|Personal history of surgery to other organs, presenting hazards to health|Personal history of surgery to other organs, presenting hazards to health +C2911571|T033|AB|V15.21|ICD9CM|Hx in utero proc in preg|Hx in utero proc in preg +C2911571|T033|PT|V15.21|ICD9CM|Personal history of undergoing in utero procedure during pregnancy|Personal history of undergoing in utero procedure during pregnancy +C2911572|T033|AB|V15.22|ICD9CM|Hx in utero proc fetus|Hx in utero proc fetus +C2911572|T033|PT|V15.22|ICD9CM|Personal history of undergoing in utero procedure while a fetus|Personal history of undergoing in utero procedure while a fetus +C0260496|T033|AB|V15.29|ICD9CM|Hx surgery to organs NEC|Hx surgery to organs NEC +C0260496|T033|PT|V15.29|ICD9CM|Personal history of surgery to other organs|Personal history of surgery to other organs +C0260497|T033|AB|V15.3|ICD9CM|Hx of irradiation|Hx of irradiation +C0260497|T033|PT|V15.3|ICD9CM|Personal history of irradiation, presenting hazards to health|Personal history of irradiation, presenting hazards to health +C0260498|T033|HT|V15.4|ICD9CM|Personal history of psychological trauma, presenting hazards to health|Personal history of psychological trauma, presenting hazards to health +C0730554|T033|PT|V15.41|ICD9CM|History of physical abuse|History of physical abuse +C0730554|T033|AB|V15.41|ICD9CM|Hx of physical abuse|Hx of physical abuse +C0730556|T033|PT|V15.42|ICD9CM|History of emotional abuse|History of emotional abuse +C0730556|T033|AB|V15.42|ICD9CM|Hx of emotional abuse|Hx of emotional abuse +C0375810|T033|PT|V15.49|ICD9CM|Other psychological trauma|Other psychological trauma +C0375810|T033|AB|V15.49|ICD9CM|Psychological trauma NEC|Psychological trauma NEC +C0260499|T033|HT|V15.5|ICD9CM|Personal history of injury, presenting hazards to health|Personal history of injury, presenting hazards to health +C2349852|T033|AB|V15.51|ICD9CM|Hx traumatic fracture|Hx traumatic fracture +C2349852|T033|PT|V15.51|ICD9CM|Personal history of traumatic fracture|Personal history of traumatic fracture +C2712539|T033|AB|V15.52|ICD9CM|Hx traumatc brain injury|Hx traumatc brain injury +C2712539|T033|PT|V15.52|ICD9CM|Personal history of traumatic brain injury|Personal history of traumatic brain injury +C2921301|T033|AB|V15.53|ICD9CM|Hx retained FB, rem|Hx retained FB, rem +C2921301|T033|PT|V15.53|ICD9CM|Personal history of retained foreign body fully removed|Personal history of retained foreign body fully removed +C2349854|T033|AB|V15.59|ICD9CM|Hx injury NEC|Hx injury NEC +C2349854|T033|PT|V15.59|ICD9CM|Personal history of other injury|Personal history of other injury +C0260500|T033|AB|V15.6|ICD9CM|Hx of poisoning|Hx of poisoning +C0260500|T033|PT|V15.6|ICD9CM|Personal history of poisoning, presenting hazards to health|Personal history of poisoning, presenting hazards to health +C0260501|T033|AB|V15.7|ICD9CM|Hx of contraception|Hx of contraception +C0260501|T033|PT|V15.7|ICD9CM|Personal history of contraception, presenting hazards to health|Personal history of contraception, presenting hazards to health +C0260502|T033|HT|V15.8|ICD9CM|Other specified personal history presenting hazards to health|Other specified personal history presenting hazards to health +C2712540|T033|AB|V15.80|ICD9CM|Hx failed mod sedation|Hx failed mod sedation +C2712540|T033|PT|V15.80|ICD9CM|Personal history of failed moderate sedation|Personal history of failed moderate sedation +C0260503|T033|AB|V15.81|ICD9CM|Hx of past noncompliance|Hx of past noncompliance +C0260503|T033|PT|V15.81|ICD9CM|Personal history of noncompliance with medical treatment, presenting hazards to health|Personal history of noncompliance with medical treatment, presenting hazards to health +C0040335|T033|AB|V15.82|ICD9CM|History of tobacco use|History of tobacco use +C0040335|T033|PT|V15.82|ICD9CM|Personal history of tobacco use|Personal history of tobacco use +C2712541|T033|AB|V15.83|ICD9CM|Hx underimmunizn status|Hx underimmunizn status +C2712541|T033|PT|V15.83|ICD9CM|Personal history of underimmunization status|Personal history of underimmunization status +C2712542|T033|AB|V15.84|ICD9CM|Hx-contct/expos asbestos|Hx-contct/expos asbestos +C2712542|T033|PT|V15.84|ICD9CM|Personal history of contact with and (suspected) exposure to asbestos|Personal history of contact with and (suspected) exposure to asbestos +C2712543|T033|AB|V15.85|ICD9CM|Hx-cont/exps haz bdy fld|Hx-cont/exps haz bdy fld +C2712543|T033|PT|V15.85|ICD9CM|Personal history of contact with and (suspected) exposure to potentially hazardous body fluids|Personal history of contact with and (suspected) exposure to potentially hazardous body fluids +C2911144|T033|AB|V15.86|ICD9CM|Hx-contact/exposure lead|Hx-contact/exposure lead +C2911144|T033|PT|V15.86|ICD9CM|Personal history of contact with and (suspected) exposure to lead|Personal history of contact with and (suspected) exposure to lead +C1260455|T033|PT|V15.87|ICD9CM|History of extracorporeal membrane oxygenation (ECMO)|History of extracorporeal membrane oxygenation (ECMO) +C1260455|T033|AB|V15.87|ICD9CM|Hx of ECMO|Hx of ECMO +C2919132|T033|PT|V15.88|ICD9CM|History of fall|History of fall +C2919132|T033|AB|V15.88|ICD9CM|Personal history of fall|Personal history of fall +C0260502|T033|AB|V15.89|ICD9CM|Hx-health hazards NEC|Hx-health hazards NEC +C0260502|T033|PT|V15.89|ICD9CM|Other specified personal history presenting hazards to health|Other specified personal history presenting hazards to health +C0260504|T033|AB|V15.9|ICD9CM|Hx-health hazard NOS|Hx-health hazard NOS +C0260504|T033|PT|V15.9|ICD9CM|Unspecified personal history presenting hazards to health|Unspecified personal history presenting hazards to health +C1261378|T033|HT|V16|ICD9CM|Family history of malignant neoplasm|Family history of malignant neoplasm +C0260506|T033|PT|V16.0|ICD9CM|Family history of malignant neoplasm of gastrointestinal tract|Family history of malignant neoplasm of gastrointestinal tract +C0260506|T033|AB|V16.0|ICD9CM|Family hx-gi malignancy|Family hx-gi malignancy +C0260507|T033|PT|V16.1|ICD9CM|Family history of malignant neoplasm of trachea, bronchus, and lung|Family history of malignant neoplasm of trachea, bronchus, and lung +C0260507|T033|AB|V16.1|ICD9CM|Fm hx-trach/bronchog mal|Fm hx-trach/bronchog mal +C0260508|T033|AB|V16.2|ICD9CM|Fam hx-intrathoracic mal|Fam hx-intrathoracic mal +C0260508|T033|PT|V16.2|ICD9CM|Family history of malignant neoplasm of other respiratory and intrathoracic organs|Family history of malignant neoplasm of other respiratory and intrathoracic organs +C1261325|T033|PT|V16.3|ICD9CM|Family history of malignant neoplasm of breast|Family history of malignant neoplasm of breast +C1261325|T033|AB|V16.3|ICD9CM|Family hx-breast malig|Family hx-breast malig +C0260510|T033|HT|V16.4|ICD9CM|Family history of malignant neoplasm of genital organs|Family history of malignant neoplasm of genital organs +C0260510|T033|PT|V16.40|ICD9CM|Family history of malignant neoplasm of genital organ, unspecified|Family history of malignant neoplasm of genital organ, unspecified +C0260510|T033|AB|V16.40|ICD9CM|Fm hx genital malig NOS|Fm hx genital malig NOS +C0490017|T033|PT|V16.41|ICD9CM|Family history of malignant neoplasm of ovary|Family history of malignant neoplasm of ovary +C0490017|T033|AB|V16.41|ICD9CM|Fm hx ovary malignancy|Fm hx ovary malignancy +C1532320|T033|PT|V16.42|ICD9CM|Family history of malignant neoplasm of prostate|Family history of malignant neoplasm of prostate +C1532320|T033|AB|V16.42|ICD9CM|Fm hx prostate malig|Fm hx prostate malig +C0490019|T033|PT|V16.43|ICD9CM|Family history of malignant neoplasm of testis|Family history of malignant neoplasm of testis +C0490019|T033|AB|V16.43|ICD9CM|Fm hx testis malig|Fm hx testis malig +C0490020|T033|PT|V16.49|ICD9CM|Family history of malignant neoplasm of other genital organs|Family history of malignant neoplasm of other genital organs +C0490020|T033|AB|V16.49|ICD9CM|Fm hx genital malig NEC|Fm hx genital malig NEC +C0260511|T033|HT|V16.5|ICD9CM|Family history of malignant neoplasm of urinary organs|Family history of malignant neoplasm of urinary organs +C0700102|T033|PT|V16.51|ICD9CM|Family history of malignant neoplasm of kidney|Family history of malignant neoplasm of kidney +C0700102|T033|AB|V16.51|ICD9CM|Family hx-kidney malig|Family hx-kidney malig +C1955574|T033|AB|V16.52|ICD9CM|Fam hx-bladder malig|Fam hx-bladder malig +C1955574|T033|PT|V16.52|ICD9CM|Family history of malignant neoplasm, bladder|Family history of malignant neoplasm, bladder +C2911212|T033|AB|V16.59|ICD9CM|Fam hx-urinry malig NEC|Fam hx-urinry malig NEC +C2911212|T033|PT|V16.59|ICD9CM|Family history of malignant neoplasm of other urinary organs|Family history of malignant neoplasm of other urinary organs +C0260512|T033|PT|V16.6|ICD9CM|Family history of leukemia|Family history of leukemia +C0260512|T033|AB|V16.6|ICD9CM|Family hx-leukemia|Family hx-leukemia +C2586326|T033|AB|V16.7|ICD9CM|Fam hx-lymph neoplas NEC|Fam hx-lymph neoplas NEC +C2586326|T033|PT|V16.7|ICD9CM|Family history of other lymphatic and hematopoietic neoplasms|Family history of other lymphatic and hematopoietic neoplasms +C0260514|T033|PT|V16.8|ICD9CM|Family history of other specified malignant neoplasm|Family history of other specified malignant neoplasm +C0260514|T033|AB|V16.8|ICD9CM|Family hx-malignancy NEC|Family hx-malignancy NEC +C1261378|T033|PT|V16.9|ICD9CM|Family history of unspecified malignant neoplasm|Family history of unspecified malignant neoplasm +C1261378|T033|AB|V16.9|ICD9CM|Family hx-malignancy NOS|Family hx-malignancy NOS +C0260516|T033|HT|V17|ICD9CM|Family history of certain chronic disabling diseases|Family history of certain chronic disabling diseases +C0260517|T033|AB|V17.0|ICD9CM|Fam hx-psychiatric cond|Fam hx-psychiatric cond +C0260517|T033|PT|V17.0|ICD9CM|Family history of psychiatric condition|Family history of psychiatric condition +C0260518|T033|PT|V17.1|ICD9CM|Family history of stroke (cerebrovascular)|Family history of stroke (cerebrovascular) +C0260518|T033|AB|V17.1|ICD9CM|Family hx-stroke|Family hx-stroke +C0260519|T033|AB|V17.2|ICD9CM|Fam hx-neurolog dis NEC|Fam hx-neurolog dis NEC +C0260519|T033|PT|V17.2|ICD9CM|Family history of other neurological diseases|Family history of other neurological diseases +C0260520|T033|AB|V17.3|ICD9CM|Fam hx-ischem heart dis|Fam hx-ischem heart dis +C0260520|T033|PT|V17.3|ICD9CM|Family history of ischemic heart disease|Family history of ischemic heart disease +C1963706|T033|HT|V17.4|ICD9CM|Family history of other cardiovascular diseases|Family history of other cardiovascular diseases +C2825161|T033|AB|V17.41|ICD9CM|Fam hx sudden card death|Fam hx sudden card death +C2825161|T033|PT|V17.41|ICD9CM|Family history of sudden cardiac death (SCD)|Family history of sudden cardiac death (SCD) +C1963707|T033|AB|V17.49|ICD9CM|Fam hx-cardiovas dis NEC|Fam hx-cardiovas dis NEC +C1963707|T033|PT|V17.49|ICD9CM|Family history of other cardiovascular diseases|Family history of other cardiovascular diseases +C0260522|T033|PT|V17.5|ICD9CM|Family history of asthma|Family history of asthma +C0260522|T033|AB|V17.5|ICD9CM|Family hx-asthma|Family hx-asthma +C0260523|T033|AB|V17.6|ICD9CM|Fam hx-chr resp cond NEC|Fam hx-chr resp cond NEC +C0260523|T033|PT|V17.6|ICD9CM|Family history of other chronic respiratory conditions|Family history of other chronic respiratory conditions +C0221565|T033|PT|V17.7|ICD9CM|Family history of arthritis|Family history of arthritis +C0221565|T033|AB|V17.7|ICD9CM|Family hx-arthritis|Family hx-arthritis +C0260524|T033|HT|V17.8|ICD9CM|Family history of other musculoskeletal diseases|Family history of other musculoskeletal diseases +C2911643|T033|PT|V17.81|ICD9CM|Family history of osteoporosis|Family history of osteoporosis +C2911643|T033|AB|V17.81|ICD9CM|Family hx osteoporosis|Family hx osteoporosis +C0260524|T033|AB|V17.89|ICD9CM|Fam hx musculosk dis NEC|Fam hx musculosk dis NEC +C0260524|T033|PT|V17.89|ICD9CM|Family history of other musculoskeletal diseases|Family history of other musculoskeletal diseases +C0260525|T033|HT|V18|ICD9CM|Family history of certain other specific conditions|Family history of certain other specific conditions +C0260526|T033|AB|V18.0|ICD9CM|Fam hx-diabetes mellitus|Fam hx-diabetes mellitus +C0260526|T033|PT|V18.0|ICD9CM|Family history of diabetes mellitus|Family history of diabetes mellitus +C1955577|T033|HT|V18.1|ICD9CM|Family history of other endocrine and metabolic diseases|Family history of other endocrine and metabolic diseases +C1955576|T033|AB|V18.11|ICD9CM|Fam hx MEN syndrome|Fam hx MEN syndrome +C1955576|T033|PT|V18.11|ICD9CM|Family history of multiple endocrine neoplasia [MEN] syndrome|Family history of multiple endocrine neoplasia [MEN] syndrome +C1955577|T033|PT|V18.19|ICD9CM|Family history of other endocrine and metabolic diseases|Family history of other endocrine and metabolic diseases +C1955577|T033|AB|V18.19|ICD9CM|Fm hx endo/metab dis NEC|Fm hx endo/metab dis NEC +C0260528|T033|PT|V18.2|ICD9CM|Family history of anemia|Family history of anemia +C0260528|T033|AB|V18.2|ICD9CM|Family hx-anemia|Family hx-anemia +C0260529|T033|AB|V18.3|ICD9CM|Fam hx-blood disord NEC|Fam hx-blood disord NEC +C0260529|T033|PT|V18.3|ICD9CM|Family history of other blood disorders|Family history of other blood disorders +C0260530|T033|PT|V18.4|ICD9CM|Family history of intellectual disabilities|Family history of intellectual disabilities +C0260530|T033|AB|V18.4|ICD9CM|Fm hx-intellect disablty|Fm hx-intellect disablty +C0496716|T033|HT|V18.5|ICD9CM|Family history of digestive disorders|Family history of digestive disorders +C2911243|T033|PT|V18.51|ICD9CM|Family history of colonic polyps|Family history of colonic polyps +C2911243|T033|AB|V18.51|ICD9CM|Family hx colonic polyps|Family hx colonic polyps +C2911244|T033|AB|V18.59|ICD9CM|Fam hx digest disord NEC|Fam hx digest disord NEC +C2911244|T033|PT|V18.59|ICD9CM|Family history of other digestive disorders|Family history of other digestive disorders +C1261328|T033|HT|V18.6|ICD9CM|Family history of kidney diseases|Family history of kidney diseases +C0455422|T033|AB|V18.61|ICD9CM|Fam hx-polycystic kidney|Fam hx-polycystic kidney +C0455422|T033|PT|V18.61|ICD9CM|Family history of polycystic kidney|Family history of polycystic kidney +C0695259|T033|AB|V18.69|ICD9CM|Fam hx-kidney dis NEC|Fam hx-kidney dis NEC +C0695259|T033|PT|V18.69|ICD9CM|Family history of other kidney diseases|Family history of other kidney diseases +C0260533|T033|PT|V18.7|ICD9CM|Family history of other genitourinary diseases|Family history of other genitourinary diseases +C0260533|T033|AB|V18.7|ICD9CM|Family hx-gu disease NEC|Family hx-gu disease NEC +C0260534|T033|PT|V18.8|ICD9CM|Family history of infectious and parasitic diseases|Family history of infectious and parasitic diseases +C0260534|T033|AB|V18.8|ICD9CM|Fm hx-infect/parasit dis|Fm hx-infect/parasit dis +C0007294|T033|AB|V18.9|ICD9CM|Fam hx genet dis carrier|Fam hx genet dis carrier +C0007294|T033|PT|V18.9|ICD9CM|Family history of genetic disease carrier|Family history of genetic disease carrier +C0260535|T033|HT|V19|ICD9CM|Family history of other conditions|Family history of other conditions +C0496709|T033|PT|V19.0|ICD9CM|Family history of blindness or visual loss|Family history of blindness or visual loss +C0496709|T033|AB|V19.0|ICD9CM|Family hx-blindness|Family hx-blindness +C0260537|T033|HT|V19.1|ICD9CM|Family history of other eye disorders|Family history of other eye disorders +C0455397|T033|AB|V19.11|ICD9CM|Family history glaucoma|Family history glaucoma +C0455397|T033|PT|V19.11|ICD9CM|Family history of glaucoma|Family history of glaucoma +C3161148|T033|PT|V19.19|ICD9CM|Family history of other specified eye disorder|Family history of other specified eye disorder +C3161148|T033|AB|V19.19|ICD9CM|Family hx-eye disord NEC|Family hx-eye disord NEC +C0260538|T033|PT|V19.2|ICD9CM|Family history of deafness or hearing loss|Family history of deafness or hearing loss +C0260538|T033|AB|V19.2|ICD9CM|Family hx-deafness|Family hx-deafness +C0260539|T033|PT|V19.3|ICD9CM|Family history of other ear disorders|Family history of other ear disorders +C0260539|T033|AB|V19.3|ICD9CM|Family hx-ear disord NEC|Family hx-ear disord NEC +C0260540|T033|PT|V19.4|ICD9CM|Family history of skin conditions|Family history of skin conditions +C0260540|T033|AB|V19.4|ICD9CM|Family hx-skin condition|Family hx-skin condition +C0260541|T033|AB|V19.5|ICD9CM|Fam hx-congen anomalies|Fam hx-congen anomalies +C0260541|T033|PT|V19.5|ICD9CM|Family history of congenital anomalies|Family history of congenital anomalies +C0260542|T033|PT|V19.6|ICD9CM|Family history of allergic disorders|Family history of allergic disorders +C0260542|T033|AB|V19.6|ICD9CM|Family hx-allergic dis|Family hx-allergic dis +C0015584|T033|AB|V19.7|ICD9CM|Consanguinity|Consanguinity +C0015584|T033|PT|V19.7|ICD9CM|Family history of consanguinity|Family history of consanguinity +C0260535|T033|PT|V19.8|ICD9CM|Family history of other condition|Family history of other condition +C0260535|T033|AB|V19.8|ICD9CM|Family hx-condition NEC|Family hx-condition NEC +C0260543|T033|HT|V20|ICD9CM|Health supervision of infant or child|Health supervision of infant or child +C0476707|T033|AB|V20.0|ICD9CM|Foundling health care|Foundling health care +C0476707|T033|PT|V20.0|ICD9CM|Health supervision of foundling|Health supervision of foundling +C0029629|T033|AB|V20.1|ICD9CM|Care of healthy chld NEC|Care of healthy chld NEC +C0029629|T033|PT|V20.1|ICD9CM|Other healthy infant or child receiving care|Other healthy infant or child receiving care +C0260545|T033|AB|V20.2|ICD9CM|Routin child health exam|Routin child health exam +C0260545|T033|PT|V20.2|ICD9CM|Routine infant or child health check|Routine infant or child health check +C2712857|T033|HT|V20.3|ICD9CM|Newborn health supervision|Newborn health supervision +C2712545|T033|PT|V20.31|ICD9CM|Health supervision for newborn under 8 days old|Health supervision for newborn under 8 days old +C2712545|T033|AB|V20.31|ICD9CM|Health supvsn nb <8 days|Health supvsn nb <8 days +C2712546|T033|PT|V20.32|ICD9CM|Health supervision for newborn 8 to 28 days old|Health supervision for newborn 8 to 28 days old +C2712546|T033|AB|V20.32|ICD9CM|Health supv nb 8-28 days|Health supv nb 8-28 days +C0260546|T033|HT|V21|ICD9CM|Constitutional states in development|Constitutional states in development +C1399001|T033|PT|V21.0|ICD9CM|Period of rapid growth in childhood|Period of rapid growth in childhood +C1399001|T033|AB|V21.0|ICD9CM|Rapid childhood growth|Rapid childhood growth +C0677548|T033|AB|V21.1|ICD9CM|Puberty|Puberty +C0677548|T033|PT|V21.1|ICD9CM|Puberty|Puberty +C0029575|T033|AB|V21.2|ICD9CM|Adolescence growth NEC|Adolescence growth NEC +C0029575|T033|PT|V21.2|ICD9CM|Other development of adolescence|Other development of adolescence +C0878715|T033|HT|V21.3|ICD9CM|Low birth weight status|Low birth weight status +C0878716|T033|PT|V21.30|ICD9CM|Low birth weight status, unspecified|Low birth weight status, unspecified +C0878716|T033|AB|V21.30|ICD9CM|Low birthwt status NOS|Low birthwt status NOS +C0878717|T033|PT|V21.31|ICD9CM|Low birth weight status, less than 500 grams|Low birth weight status, less than 500 grams +C0878717|T033|AB|V21.31|ICD9CM|Low birthwt status <500g|Low birthwt status <500g +C0878718|T033|PT|V21.32|ICD9CM|Low birth weight status, 500-999 grams|Low birth weight status, 500-999 grams +C0878718|T033|AB|V21.32|ICD9CM|Low birthwt 500-999g|Low birthwt 500-999g +C0878719|T033|PT|V21.33|ICD9CM|Low birth weight status, 1000-1499 grams|Low birth weight status, 1000-1499 grams +C0878719|T033|AB|V21.33|ICD9CM|Low birthwt 1000-1499g|Low birthwt 1000-1499g +C0878720|T033|PT|V21.34|ICD9CM|Low birth weight status, 1500-1999 grams|Low birth weight status, 1500-1999 grams +C0878720|T033|AB|V21.34|ICD9CM|Low birthwt 1500-1999g|Low birthwt 1500-1999g +C0878721|T033|PT|V21.35|ICD9CM|Low birth weight status, 2000-2500 grams|Low birth weight status, 2000-2500 grams +C0878721|T033|AB|V21.35|ICD9CM|Low birthwt 2000-2500g|Low birthwt 2000-2500g +C0260548|T033|AB|V21.8|ICD9CM|Constit state in dev NEC|Constit state in dev NEC +C0260548|T033|PT|V21.8|ICD9CM|Other specified constitutional states in development|Other specified constitutional states in development +C0260549|T033|AB|V21.9|ICD9CM|Constit state in dev NOS|Constit state in dev NOS +C0260549|T033|PT|V21.9|ICD9CM|Unspecified constitutional state in development|Unspecified constitutional state in development +C0700573|T033|HT|V22|ICD9CM|Normal pregnancy|Normal pregnancy +C0260550|T033|AB|V22.0|ICD9CM|Supervis normal 1st preg|Supervis normal 1st preg +C0260550|T033|PT|V22.0|ICD9CM|Supervision of normal first pregnancy|Supervision of normal first pregnancy +C0038843|T033|AB|V22.1|ICD9CM|Supervis oth normal preg|Supervis oth normal preg +C0038843|T033|PT|V22.1|ICD9CM|Supervision of other normal pregnancy|Supervision of other normal pregnancy +C0451636|T033|AB|V22.2|ICD9CM|Preg state, incidental|Preg state, incidental +C0451636|T033|PT|V22.2|ICD9CM|Pregnant state, incidental|Pregnant state, incidental +C0260551|T033|HT|V23|ICD9CM|Supervision of high-risk pregnancy|Supervision of high-risk pregnancy +C0260552|T033|AB|V23.0|ICD9CM|Preg w hx of infertility|Preg w hx of infertility +C0260552|T033|PT|V23.0|ICD9CM|Supervision of high-risk pregnancy with history of infertility|Supervision of high-risk pregnancy with history of infertility +C0260553|T033|AB|V23.1|ICD9CM|Preg w hx-trophoblas dis|Preg w hx-trophoblas dis +C0260553|T033|PT|V23.1|ICD9CM|Supervision of high-risk pregnancy with history of trophoblastic disease|Supervision of high-risk pregnancy with history of trophoblastic disease +C0260554|T033|AB|V23.2|ICD9CM|Preg w hx of abortion|Preg w hx of abortion +C0260554|T033|PT|V23.2|ICD9CM|Supervision of high-risk pregnancy with history of abortion|Supervision of high-risk pregnancy with history of abortion +C0260555|T033|AB|V23.3|ICD9CM|Grand multiparity|Grand multiparity +C0260555|T033|PT|V23.3|ICD9CM|Supervision of high-risk pregnancy with grand multiparity|Supervision of high-risk pregnancy with grand multiparity +C0260556|T033|HT|V23.4|ICD9CM|Supervision of high-risk pregnancy with other poor obstetric history|Supervision of high-risk pregnancy with other poor obstetric history +C1135275|T033|AB|V23.41|ICD9CM|Preg w hx pre-term labor|Preg w hx pre-term labor +C1135275|T033|PT|V23.41|ICD9CM|Pregnancy with history of pre-term labor|Pregnancy with history of pre-term labor +C3161149|T033|AB|V23.42|ICD9CM|Preg w hx ectopic preg|Preg w hx ectopic preg +C3161149|T033|PT|V23.42|ICD9CM|Pregnancy with history of ectopic pregnancy|Pregnancy with history of ectopic pregnancy +C0481651|T033|AB|V23.49|ICD9CM|Preg w poor obs hx NEC|Preg w poor obs hx NEC +C0481651|T033|PT|V23.49|ICD9CM|Pregnancy with other poor obstetric history|Pregnancy with other poor obstetric history +C0260557|T033|AB|V23.5|ICD9CM|Preg w poor reproduct hx|Preg w poor reproduct hx +C0260557|T033|PT|V23.5|ICD9CM|Supervision of high-risk pregnancy with other poor reproductive history|Supervision of high-risk pregnancy with other poor reproductive history +C0695231|T033|AB|V23.7|ICD9CM|Insufficnt prenatal care|Insufficnt prenatal care +C0695231|T033|PT|V23.7|ICD9CM|Supervision of high-risk pregnancy with insufficient prenatal care|Supervision of high-risk pregnancy with insufficient prenatal care +C0260559|T033|HT|V23.8|ICD9CM|Supervision of other high-risk pregnancy|Supervision of other high-risk pregnancy +C0740177|T033|PT|V23.81|ICD9CM|Supervision of high-risk pregnancy with elderly primigravida|Supervision of high-risk pregnancy with elderly primigravida +C0740177|T033|AB|V23.81|ICD9CM|Suprv elderly primigrav|Suprv elderly primigrav +C0695244|T033|PT|V23.82|ICD9CM|Supervision of high-risk pregnancy with elderly multigravida|Supervision of high-risk pregnancy with elderly multigravida +C0695244|T033|AB|V23.82|ICD9CM|Suprv elderly multigrav|Suprv elderly multigrav +C0695260|T033|PT|V23.83|ICD9CM|Supervision of high-risk pregnancy with young primigravida|Supervision of high-risk pregnancy with young primigravida +C0695260|T033|AB|V23.83|ICD9CM|Suprv young primigravida|Suprv young primigravida +C0695261|T033|PT|V23.84|ICD9CM|Supervision of high-risk pregnancy with young multigravida|Supervision of high-risk pregnancy with young multigravida +C0695261|T033|AB|V23.84|ICD9CM|Suprv young multigravida|Suprv young multigravida +C2349859|T033|PT|V23.85|ICD9CM|Pregnancy resulting from assisted reproductive technology|Pregnancy resulting from assisted reproductive technology +C2349859|T033|AB|V23.85|ICD9CM|Pregnt-assist repro tech|Pregnt-assist repro tech +C2349861|T047|AB|V23.86|ICD9CM|Preg-hx in utro prev prg|Preg-hx in utro prev prg +C2349861|T047|PT|V23.86|ICD9CM|Pregnancy with history of in utero procedure during previous pregnancy|Pregnancy with history of in utero procedure during previous pregnancy +C3161150|T033|AB|V23.87|ICD9CM|Preg w incon fetl viabil|Preg w incon fetl viabil +C3161150|T033|PT|V23.87|ICD9CM|Pregnancy with inconclusive fetal viability|Pregnancy with inconclusive fetal viability +C0260559|T033|PT|V23.89|ICD9CM|Supervision of other high-risk pregnancy|Supervision of other high-risk pregnancy +C0260559|T033|AB|V23.89|ICD9CM|Suprv high-risk preg NEC|Suprv high-risk preg NEC +C3714588|T033|PT|V23.9|ICD9CM|Supervision of unspecified high-risk pregnancy|Supervision of unspecified high-risk pregnancy +C3714588|T033|AB|V23.9|ICD9CM|Suprv high-risk preg NOS|Suprv high-risk preg NOS +C0260561|T033|HT|V24|ICD9CM|Postpartum care and examination|Postpartum care and examination +C0496662|T033|AB|V24.0|ICD9CM|Postpart care after del|Postpart care after del +C0496662|T033|PT|V24.0|ICD9CM|Postpartum care and examination immediately after delivery|Postpartum care and examination immediately after delivery +C0260563|T033|AB|V24.1|ICD9CM|Postpart care-lactation|Postpart care-lactation +C0260563|T033|PT|V24.1|ICD9CM|Postpartum care and examination of lactating mother|Postpartum care and examination of lactating mother +C0260564|T033|AB|V24.2|ICD9CM|Rout postpart follow-up|Rout postpart follow-up +C0260564|T033|PT|V24.2|ICD9CM|Routine postpartum follow-up|Routine postpartum follow-up +C0375815|T033|HT|V25|ICD9CM|Encounter for contraceptive management|Encounter for contraceptive management +C0375816|T033|HT|V25.0|ICD9CM|Encounter for general counseling and advice on contraceptive management|Encounter for general counseling and advice on contraceptive management +C0375817|T033|PT|V25.01|ICD9CM|General counseling on prescription of oral contraceptives|General counseling on prescription of oral contraceptives +C0375817|T033|AB|V25.01|ICD9CM|Prescrip-oral contracept|Prescrip-oral contracept +C0375818|T033|PT|V25.02|ICD9CM|General counseling on initiation of other contraceptive measures|General counseling on initiation of other contraceptive measures +C0375818|T033|AB|V25.02|ICD9CM|Initiate contracept NEC|Initiate contracept NEC +C1955578|T033|PT|V25.04|ICD9CM|Counseling and instruction in natural family planning to avoid pregnancy|Counseling and instruction in natural family planning to avoid pregnancy +C1955578|T033|AB|V25.04|ICD9CM|Natrl fam pln-avoid preg|Natrl fam pln-avoid preg +C0029624|T033|AB|V25.09|ICD9CM|Contraceptive mangmt NEC|Contraceptive mangmt NEC +C0029624|T033|PT|V25.09|ICD9CM|Other general counseling and advice on contraceptive management|Other general counseling and advice on contraceptive management +C2921302|T033|HT|V25.1|ICD9CM|Encounter for insertion or removal of intrauterine contraceptive device|Encounter for insertion or removal of intrauterine contraceptive device +C0375820|T033|PT|V25.11|ICD9CM|Encounter for insertion of intrauterine contraceptive device|Encounter for insertion of intrauterine contraceptive device +C0375820|T033|AB|V25.11|ICD9CM|Insertion of iud|Insertion of iud +C2921303|T033|PT|V25.12|ICD9CM|Encounter for removal of intrauterine contraceptive device|Encounter for removal of intrauterine contraceptive device +C2921303|T033|AB|V25.12|ICD9CM|Removal of iud|Removal of iud +C2921304|T033|PT|V25.13|ICD9CM|Encounter for removal and reinsertion of intrauterine contraceptive device|Encounter for removal and reinsertion of intrauterine contraceptive device +C2921304|T033|AB|V25.13|ICD9CM|Remove/insert iud|Remove/insert iud +C0362065|T033|AB|V25.2|ICD9CM|Sterilization|Sterilization +C0362065|T033|PT|V25.2|ICD9CM|Sterilization|Sterilization +C0362068|T033|AB|V25.3|ICD9CM|Menstrual extraction|Menstrual extraction +C0362068|T033|PT|V25.3|ICD9CM|Menstrual extraction|Menstrual extraction +C0375823|T033|HT|V25.4|ICD9CM|Encounter for surveillance of previously prescribed contraceptive methods|Encounter for surveillance of previously prescribed contraceptive methods +C0375824|T033|AB|V25.40|ICD9CM|Contracept surveill NOS|Contracept surveill NOS +C0375824|T033|PT|V25.40|ICD9CM|Contraceptive surveillance, unspecified|Contraceptive surveillance, unspecified +C0375825|T033|AB|V25.41|ICD9CM|Contracept pill surveill|Contracept pill surveill +C0375825|T033|PT|V25.41|ICD9CM|Surveillance of contraceptive pill|Surveillance of contraceptive pill +C0260572|T033|AB|V25.42|ICD9CM|Iud surveillance|Iud surveillance +C0260572|T033|PT|V25.42|ICD9CM|Surveillance of intrauterine contraceptive device|Surveillance of intrauterine contraceptive device +C0375827|T033|AB|V25.43|ICD9CM|Srvl mplnt sbdrm cntrcep|Srvl mplnt sbdrm cntrcep +C0375827|T033|PT|V25.43|ICD9CM|Surveillance of implantable subdermal contraceptive|Surveillance of implantable subdermal contraceptive +C0375828|T033|AB|V25.49|ICD9CM|Contracept surveill NEC|Contracept surveill NEC +C0375828|T033|PT|V25.49|ICD9CM|Surveillance of other contraceptive method|Surveillance of other contraceptive method +C0375829|T033|PT|V25.5|ICD9CM|Insertion of implantable subdermal contraceptive|Insertion of implantable subdermal contraceptive +C0375829|T033|AB|V25.5|ICD9CM|Nsrt mplnt sbdrm cntrcep|Nsrt mplnt sbdrm cntrcep +C0260574|T033|AB|V25.8|ICD9CM|Contraceptive mangmt NEC|Contraceptive mangmt NEC +C0260574|T033|PT|V25.8|ICD9CM|Other specified contraceptive management|Other specified contraceptive management +C0375815|T033|AB|V25.9|ICD9CM|Contraceptive mangmt NOS|Contraceptive mangmt NOS +C0375815|T033|PT|V25.9|ICD9CM|Unspecified contraceptive management|Unspecified contraceptive management +C0260576|T033|HT|V26|ICD9CM|Procreative management|Procreative management +C1961128|T033|AB|V26.0|ICD9CM|Tuboplasty or vasoplasty|Tuboplasty or vasoplasty +C1961128|T033|PT|V26.0|ICD9CM|Tuboplasty or vasoplasty after previous sterilization|Tuboplasty or vasoplasty after previous sterilization +C0699895|T033|AB|V26.1|ICD9CM|Artificial insemination|Artificial insemination +C0699895|T033|PT|V26.1|ICD9CM|Artificial insemination|Artificial insemination +C0877842|T033|HT|V26.2|ICD9CM|Procreation management investigation and testing|Procreation management investigation and testing +C0886496|T033|AB|V26.21|ICD9CM|Fertility testing|Fertility testing +C0886496|T033|PT|V26.21|ICD9CM|Fertility testing|Fertility testing +C0878722|T033|PT|V26.22|ICD9CM|Aftercare following sterilization reversal|Aftercare following sterilization reversal +C0878722|T033|AB|V26.22|ICD9CM|Sterilzation rev aftcare|Sterilzation rev aftcare +C0878723|T033|AB|V26.29|ICD9CM|Investigate & test NEC|Investigate & test NEC +C0878723|T033|PT|V26.29|ICD9CM|Other investigation and testing|Other investigation and testing +C0878754|T033|HT|V26.3|ICD9CM|Genetic counseling and testing on procreative management|Genetic counseling and testing on procreative management +C0599986|T033|AB|V26.33|ICD9CM|Genetic counseling|Genetic counseling +C0599986|T033|PT|V26.33|ICD9CM|Genetic counseling|Genetic counseling +C2921306|T033|PT|V26.35|ICD9CM|Encounter for testing of male partner of female with recurrent pregnancy loss|Encounter for testing of male partner of female with recurrent pregnancy loss +C2921306|T033|AB|V26.35|ICD9CM|Test male/fem preg loss|Test male/fem preg loss +C0496640|T033|HT|V26.4|ICD9CM|General counseling and advice on procreative management|General counseling and advice on procreative management +C1955579|T033|AB|V26.41|ICD9CM|Natrl family plan counsl|Natrl family plan counsl +C1955579|T033|PT|V26.41|ICD9CM|Procreative counseling and advice using natural family planning|Procreative counseling and advice using natural family planning +C2712547|T033|PT|V26.42|ICD9CM|Encounter for fertility preservation counseling|Encounter for fertility preservation counseling +C2712547|T033|AB|V26.42|ICD9CM|Fertlity preserv counsel|Fertlity preserv counsel +C1955580|T033|PT|V26.49|ICD9CM|Other procreative management counseling and advice|Other procreative management counseling and advice +C1955580|T033|AB|V26.49|ICD9CM|Procr mgmt cnsl/adv NEC|Procr mgmt cnsl/adv NEC +C0695263|T033|HT|V26.5|ICD9CM|Sterilization status|Sterilization status +C0695264|T033|AB|V26.51|ICD9CM|Tubal ligation status|Tubal ligation status +C0695264|T033|PT|V26.51|ICD9CM|Tubal ligation status|Tubal ligation status +C0695265|T033|AB|V26.52|ICD9CM|Vasectomy status|Vasectomy status +C0695265|T033|PT|V26.52|ICD9CM|Vasectomy status|Vasectomy status +C0478559|T033|HT|V26.8|ICD9CM|Other specified procreative management|Other specified procreative management +C1955581|T033|AB|V26.81|ICD9CM|Assist repro fertility|Assist repro fertility +C1955581|T033|PT|V26.81|ICD9CM|Encounter for assisted reproductive fertility procedure cycle|Encounter for assisted reproductive fertility procedure cycle +C2712548|T033|PT|V26.82|ICD9CM|Encounter for fertility preservation procedure|Encounter for fertility preservation procedure +C2712548|T033|AB|V26.82|ICD9CM|Fertility preserv proc|Fertility preserv proc +C1955583|T033|PT|V26.89|ICD9CM|Other specified procreative management|Other specified procreative management +C1955583|T033|AB|V26.89|ICD9CM|Procreative managemt NEC|Procreative managemt NEC +C0260576|T033|AB|V26.9|ICD9CM|Procreative mangmt NOS|Procreative mangmt NOS +C0260576|T033|PT|V26.9|ICD9CM|Unspecified procreative management|Unspecified procreative management +C1313895|T033|AB|V27.0|ICD9CM|Deliver-single liveborn|Deliver-single liveborn +C1313895|T033|PT|V27.0|ICD9CM|Outcome of delivery, single liveborn|Outcome of delivery, single liveborn +C1313896|T033|AB|V27.1|ICD9CM|Deliver-single stillborn|Deliver-single stillborn +C1313896|T033|PT|V27.1|ICD9CM|Outcome of delivery, single stillborn|Outcome of delivery, single stillborn +C0481459|T033|AB|V27.2|ICD9CM|Deliver-twins, both live|Deliver-twins, both live +C0481459|T033|PT|V27.2|ICD9CM|Outcome of delivery, twins, both liveborn|Outcome of delivery, twins, both liveborn +C0481466|T033|AB|V27.3|ICD9CM|Del-twins, 1 nb, 1 sb|Del-twins, 1 nb, 1 sb +C0481466|T033|PT|V27.3|ICD9CM|Outcome of delivery, twins, one liveborn and one stillborn|Outcome of delivery, twins, one liveborn and one stillborn +C0419377|T033|AB|V27.4|ICD9CM|Deliver-twins, both sb|Deliver-twins, both sb +C0419377|T033|PT|V27.4|ICD9CM|Outcome of delivery, twins, both stillborn|Outcome of delivery, twins, both stillborn +C0260587|T033|AB|V27.5|ICD9CM|Del-mult birth, all live|Del-mult birth, all live +C0260587|T033|PT|V27.5|ICD9CM|Outcome of delivery, other multiple birth, all liveborn|Outcome of delivery, other multiple birth, all liveborn +C0260588|T033|AB|V27.6|ICD9CM|Del-mult brth, some live|Del-mult brth, some live +C0260588|T033|PT|V27.6|ICD9CM|Outcome of delivery, other multiple birth, some liveborn|Outcome of delivery, other multiple birth, some liveborn +C0481671|T033|AB|V27.7|ICD9CM|Del-mult birth, all sb|Del-mult birth, all sb +C0481671|T033|PT|V27.7|ICD9CM|Outcome of delivery, other multiple birth, all stillborn|Outcome of delivery, other multiple birth, all stillborn +C0260590|T033|AB|V27.9|ICD9CM|Outcome of delivery NOS|Outcome of delivery NOS +C0260590|T033|PT|V27.9|ICD9CM|Outcome of delivery, unspecified outcome of delivery|Outcome of delivery, unspecified outcome of delivery +C1719685|T033|HT|V28|ICD9CM|Encounter for antenatal screening of mother|Encounter for antenatal screening of mother +C1962919|T033|PT|V28.0|ICD9CM|Antenatal screening for chromosomal anomalies by amniocentesis|Antenatal screening for chromosomal anomalies by amniocentesis +C1962919|T033|AB|V28.0|ICD9CM|Screening-chromosom anom|Screening-chromosom anom +C0496648|T033|PT|V28.1|ICD9CM|Antenatal screening for raised alpha-fetoprotein levels in amniotic fluid|Antenatal screening for raised alpha-fetoprotein levels in amniotic fluid +C0496648|T033|AB|V28.1|ICD9CM|Screen-alphafetoprotein|Screen-alphafetoprotein +C0260594|T033|PT|V28.2|ICD9CM|Other antenatal screening based on amniocentesis|Other antenatal screening based on amniocentesis +C0260594|T033|AB|V28.2|ICD9CM|Screen by amniocent NEC|Screen by amniocent NEC +C2349862|T033|PT|V28.3|ICD9CM|Encounter for routine screening for malformation using ultrasonics|Encounter for routine screening for malformation using ultrasonics +C2349862|T033|AB|V28.3|ICD9CM|Scr fetl malfrm-ultrasnd|Scr fetl malfrm-ultrasnd +C0260596|T033|PT|V28.4|ICD9CM|Antenatal screening for fetal growth retardation using ultrasonics|Antenatal screening for fetal growth retardation using ultrasonics +C0260596|T033|AB|V28.4|ICD9CM|Screen-fetal retardation|Screen-fetal retardation +C0490021|T033|AB|V28.6|ICD9CM|Antenatal screen strep b|Antenatal screen strep b +C0490021|T033|PT|V28.6|ICD9CM|Antenatal screening for Streptococcus B|Antenatal screening for Streptococcus B +C0260598|T033|HT|V28.8|ICD9CM|Other specified antenatal screening|Other specified antenatal screening +C2349864|T033|PT|V28.81|ICD9CM|Encounter for fetal anatomic survey|Encounter for fetal anatomic survey +C2349864|T033|AB|V28.81|ICD9CM|Scrn fetal anatmc survey|Scrn fetal anatmc survey +C2349865|T033|PT|V28.82|ICD9CM|Encounter for screening for risk of pre-term labor|Encounter for screening for risk of pre-term labor +C2349865|T033|AB|V28.82|ICD9CM|Scrn risk preterm labor|Scrn risk preterm labor +C0260598|T033|AB|V28.89|ICD9CM|Antenatal screening NEC|Antenatal screening NEC +C0260598|T033|PT|V28.89|ICD9CM|Other specified antenatal screening|Other specified antenatal screening +C0260591|T033|AB|V28.9|ICD9CM|Antenatal screening NOS|Antenatal screening NOS +C0260591|T033|PT|V28.9|ICD9CM|Unspecified antenatal screening|Unspecified antenatal screening +C0375832|T033|HT|V29|ICD9CM|Observation and evaluation of newborns for suspected condition not found|Observation and evaluation of newborns for suspected condition not found +C0375833|T033|AB|V29.0|ICD9CM|NB obsrv suspct infect|NB obsrv suspct infect +C0375833|T033|PT|V29.0|ICD9CM|Observation for suspected infectious condition|Observation for suspected infectious condition +C0375834|T033|AB|V29.1|ICD9CM|NB obsrv suspct neurlgcl|NB obsrv suspct neurlgcl +C0375834|T033|PT|V29.1|ICD9CM|Observation for suspected neurological conditions|Observation for suspected neurological conditions +C0375835|T033|PT|V29.2|ICD9CM|Observation and evaluation of newborn for suspected respiratory condition|Observation and evaluation of newborn for suspected respiratory condition +C0375835|T033|AB|V29.2|ICD9CM|Obsrv NB suspc resp cond|Obsrv NB suspc resp cond +C0695266|T033|AB|V29.3|ICD9CM|NB obs genetc/metabl cnd|NB obs genetc/metabl cnd +C0695266|T033|PT|V29.3|ICD9CM|Observation for suspected genetic or metabolic condition|Observation for suspected genetic or metabolic condition +C0481850|T033|AB|V29.8|ICD9CM|NB obsrv oth suspct cond|NB obsrv oth suspct cond +C0481850|T033|PT|V29.8|ICD9CM|Observation for other specified suspected conditions|Observation for other specified suspected conditions +C0490064|T033|AB|V29.9|ICD9CM|NB obsrv unsp suspct cnd|NB obsrv unsp suspct cnd +C0490064|T033|PT|V29.9|ICD9CM|Observation for unspecified suspected conditions|Observation for unspecified suspected conditions +C1313895|T033|HT|V30|ICD9CM|Single liveborn|Single liveborn +C0260601|T033|HT|V30.0|ICD9CM|Single liveborn, born in hospital|Single liveborn, born in hospital +C0260602|T033|AB|V30.00|ICD9CM|Single lb in-hosp w/o cs|Single lb in-hosp w/o cs +C0260602|T033|PT|V30.00|ICD9CM|Single liveborn, born in hospital, delivered without mention of cesarean section|Single liveborn, born in hospital, delivered without mention of cesarean section +C0260603|T033|AB|V30.01|ICD9CM|Single lb in-hosp w cs|Single lb in-hosp w cs +C0260603|T033|PT|V30.01|ICD9CM|Single liveborn, born in hospital, delivered by cesarean section|Single liveborn, born in hospital, delivered by cesarean section +C0260604|T033|AB|V30.1|ICD9CM|Singl livebrn-before adm|Singl livebrn-before adm +C0260604|T033|PT|V30.1|ICD9CM|Single liveborn, born before admission to hospital|Single liveborn, born before admission to hospital +C0481686|T033|AB|V30.2|ICD9CM|Single liveborn-nonhosp|Single liveborn-nonhosp +C0481686|T033|PT|V30.2|ICD9CM|Single liveborn, born outside hospital and not hospitalized|Single liveborn, born outside hospital and not hospitalized +C0481689|T033|HT|V31|ICD9CM|Twin birth, mate liveborn|Twin birth, mate liveborn +C0260607|T033|HT|V31.0|ICD9CM|Twin, mate liveborn, born in hospital|Twin, mate liveborn, born in hospital +C0260608|T033|PT|V31.00|ICD9CM|Twin birth, mate liveborn, born in hospital, delivered without mention of cesarean section|Twin birth, mate liveborn, born in hospital, delivered without mention of cesarean section +C0260608|T033|AB|V31.00|ICD9CM|Twin-mate lb-hosp w/o cs|Twin-mate lb-hosp w/o cs +C0260609|T033|PT|V31.01|ICD9CM|Twin birth, mate liveborn, born in hospital, delivered by cesarean section|Twin birth, mate liveborn, born in hospital, delivered by cesarean section +C0260609|T033|AB|V31.01|ICD9CM|Twin-mate lb-in hos w cs|Twin-mate lb-in hos w cs +C0260610|T033|PT|V31.1|ICD9CM|Twin birth, mate liveborn, born before admission to hospital|Twin birth, mate liveborn, born before admission to hospital +C0260610|T033|AB|V31.1|ICD9CM|Twin, mate lb-before adm|Twin, mate lb-before adm +C0260611|T033|PT|V31.2|ICD9CM|Twin birth, mate liveborn, born outside hospital and not hospitalized|Twin birth, mate liveborn, born outside hospital and not hospitalized +C0260611|T033|AB|V31.2|ICD9CM|Twin, mate lb-nonhosp|Twin, mate lb-nonhosp +C0260612|T033|HT|V32|ICD9CM|Twin birth, mate stillborn|Twin birth, mate stillborn +C0260613|T033|HT|V32.0|ICD9CM|Twin, mate stillborn, born in hospital|Twin, mate stillborn, born in hospital +C0260614|T033|PT|V32.00|ICD9CM|Twin birth, mate stillborn, born in hospital, delivered without mention of cesarean section|Twin birth, mate stillborn, born in hospital, delivered without mention of cesarean section +C0260614|T033|AB|V32.00|ICD9CM|Twin-mate sb-hosp w/o cs|Twin-mate sb-hosp w/o cs +C0260615|T033|PT|V32.01|ICD9CM|Twin birth, mate stillborn, born in hospital, delivered by cesarean section|Twin birth, mate stillborn, born in hospital, delivered by cesarean section +C0260615|T033|AB|V32.01|ICD9CM|Twin-mate sb-hosp w cs|Twin-mate sb-hosp w cs +C0260616|T033|PT|V32.1|ICD9CM|Twin birth, mate stillborn, born before admission to hospital|Twin birth, mate stillborn, born before admission to hospital +C0260616|T033|AB|V32.1|ICD9CM|Twin, mate sb-before adm|Twin, mate sb-before adm +C0260617|T033|PT|V32.2|ICD9CM|Twin birth, mate stillborn, born outside hospital and not hospitalized|Twin birth, mate stillborn, born outside hospital and not hospitalized +C0260617|T033|AB|V32.2|ICD9CM|Twin, mate sb-nonhosp|Twin, mate sb-nonhosp +C0041423|T033|HT|V33|ICD9CM|Twin birth, unspecified whether mate liveborn or stillborn|Twin birth, unspecified whether mate liveborn or stillborn +C0496656|T033|HT|V33.0|ICD9CM|Twin, unspecified, born in hospital|Twin, unspecified, born in hospital +C0260619|T033|AB|V33.00|ICD9CM|Twin-NOS-in hosp w/o cs|Twin-NOS-in hosp w/o cs +C0260620|T033|AB|V33.01|ICD9CM|Twin-NOS-in hosp w cs|Twin-NOS-in hosp w cs +C0260621|T033|PT|V33.1|ICD9CM|Twin birth, unspecified whether mate liveborn or stillborn, born before admission to hospital|Twin birth, unspecified whether mate liveborn or stillborn, born before admission to hospital +C0260621|T033|AB|V33.1|ICD9CM|Twin NOS-before admissn|Twin NOS-before admissn +C0260622|T033|AB|V33.2|ICD9CM|Twin NOS-nonhosp|Twin NOS-nonhosp +C0260623|T033|HT|V34|ICD9CM|Other multiple birth (three or more), mates all liveborn|Other multiple birth (three or more), mates all liveborn +C0260624|T033|HT|V34.0|ICD9CM|Other multiple, mates all liveborn, born in hospital|Other multiple, mates all liveborn, born in hospital +C0260625|T033|AB|V34.00|ICD9CM|Oth mult lb-hosp w/o cs|Oth mult lb-hosp w/o cs +C0260626|T033|AB|V34.01|ICD9CM|Oth mult lb-in hosp w cs|Oth mult lb-in hosp w cs +C0260627|T033|AB|V34.1|ICD9CM|Oth mult nb-before adm|Oth mult nb-before adm +C0260627|T033|PT|V34.1|ICD9CM|Other multiple birth (three or more), mates all liveborn, born before admission to hospital|Other multiple birth (three or more), mates all liveborn, born before admission to hospital +C0260628|T033|AB|V34.2|ICD9CM|Oth multiple nb-nonhosp|Oth multiple nb-nonhosp +C0260628|T033|PT|V34.2|ICD9CM|Other multiple birth (three or more), mates all liveborn, born outside hospital and not hospitalized|Other multiple birth (three or more), mates all liveborn, born outside hospital and not hospitalized +C0260629|T033|HT|V35|ICD9CM|Other multiple birth (three or more), mates all stillborn|Other multiple birth (three or more), mates all stillborn +C0260630|T033|HT|V35.0|ICD9CM|Other multiple, mates all stillborn, born in hospital|Other multiple, mates all stillborn, born in hospital +C0260631|T033|AB|V35.00|ICD9CM|Oth mult sb-hosp w/o cs|Oth mult sb-hosp w/o cs +C0260632|T033|AB|V35.01|ICD9CM|Oth mult sb-in hosp w cs|Oth mult sb-in hosp w cs +C0260633|T033|AB|V35.1|ICD9CM|Oth mult sb-before adm|Oth mult sb-before adm +C0260633|T033|PT|V35.1|ICD9CM|Other multiple birth (three or more), mates all stillborn, born before admission to hospital|Other multiple birth (three or more), mates all stillborn, born before admission to hospital +C0260634|T033|AB|V35.2|ICD9CM|Oth multiple sb-nonhosp|Oth multiple sb-nonhosp +C0260635|T033|HT|V36|ICD9CM|Other multiple birth (three or more), mates liveborn and stillborn|Other multiple birth (three or more), mates liveborn and stillborn +C0260636|T033|HT|V36.0|ICD9CM|Other multiple, mates liveborn and stillborn, born in hospital|Other multiple, mates liveborn and stillborn, born in hospital +C0260637|T033|AB|V36.00|ICD9CM|Mult lb/sb-in hos w/o cs|Mult lb/sb-in hos w/o cs +C0260638|T033|AB|V36.01|ICD9CM|Mult lb/sb-in hosp w cs|Mult lb/sb-in hosp w cs +C0260639|T033|AB|V36.1|ICD9CM|Mult nb/sb-before adm|Mult nb/sb-before adm +C0260640|T033|AB|V36.2|ICD9CM|Multiple nb/sb-nonhosp|Multiple nb/sb-nonhosp +C0260641|T033|HT|V37|ICD9CM|Other multiple birth (three or more), unspecified whether mates liveborn or stillborn|Other multiple birth (three or more), unspecified whether mates liveborn or stillborn +C0260642|T033|HT|V37.0|ICD9CM|Other multiple, unspecified, born in hospital|Other multiple, unspecified, born in hospital +C0260643|T033|AB|V37.00|ICD9CM|Mult brth NOS-hos w/o cs|Mult brth NOS-hos w/o cs +C0260644|T033|AB|V37.01|ICD9CM|Mult birth NOS-hosp w cs|Mult birth NOS-hosp w cs +C0260645|T033|AB|V37.1|ICD9CM|Mult brth NOS-before adm|Mult brth NOS-before adm +C0260646|T033|AB|V37.2|ICD9CM|Mult birth NOS-nonhosp|Mult birth NOS-nonhosp +C0260647|T033|HT|V39|ICD9CM|Liveborn, unspecified whether single, twin, or multiple|Liveborn, unspecified whether single, twin, or multiple +C0260648|T033|HT|V39.0|ICD9CM|Other liveborn, unspecified, born in hospital|Other liveborn, unspecified, born in hospital +C0260649|T033|AB|V39.00|ICD9CM|Liveborn NOS-hosp w/o cs|Liveborn NOS-hosp w/o cs +C0260650|T033|AB|V39.01|ICD9CM|Liveborn NOS-hosp w cs|Liveborn NOS-hosp w cs +C0260651|T033|AB|V39.1|ICD9CM|Liveborn NOS-before adm|Liveborn NOS-before adm +C0260651|T033|PT|V39.1|ICD9CM|Liveborn, unspecified whether single, twin or multiple, born before admission to hospital|Liveborn, unspecified whether single, twin or multiple, born before admission to hospital +C0260652|T033|AB|V39.2|ICD9CM|Liveborn NOS-nonhosp|Liveborn NOS-nonhosp +C0260652|T033|PT|V39.2|ICD9CM|Liveborn, unspecified whether single, twin or multiple, born outside hospital and not hospitalized|Liveborn, unspecified whether single, twin or multiple, born outside hospital and not hospitalized +C0260658|T033|HT|V40|ICD9CM|Mental and behavioral problems|Mental and behavioral problems +C0260654|T033|PT|V40.0|ICD9CM|Mental and behavioral problems with learning|Mental and behavioral problems with learning +C0260654|T033|AB|V40.0|ICD9CM|Problems with learning|Problems with learning +C0260655|T048|PT|V40.1|ICD9CM|Mental and behavioral problems with communication [including speech]|Mental and behavioral problems with communication [including speech] +C0260655|T048|AB|V40.1|ICD9CM|Prob with communication|Prob with communication +C0260656|T033|AB|V40.2|ICD9CM|Mental problems NEC|Mental problems NEC +C0260656|T033|PT|V40.2|ICD9CM|Other mental problems|Other mental problems +C0260657|T033|HT|V40.3|ICD9CM|Other behavioral problems|Other behavioral problems +C3161151|T033|PT|V40.31|ICD9CM|Wandering in diseases classified elsewhere|Wandering in diseases classified elsewhere +C3161151|T033|AB|V40.31|ICD9CM|Wandering-dis elsewhere|Wandering-dis elsewhere +C3161152|T048|AB|V40.39|ICD9CM|Oth spc behavior problem|Oth spc behavior problem +C3161152|T048|PT|V40.39|ICD9CM|Other specified behavioral problem|Other specified behavioral problem +C0260658|T033|AB|V40.9|ICD9CM|Mental/behavior prob NOS|Mental/behavior prob NOS +C0260658|T033|PT|V40.9|ICD9CM|Unspecified mental or behavioral problem|Unspecified mental or behavioral problem +C0260659|T033|HT|V41|ICD9CM|Problems with special senses and other special functions|Problems with special senses and other special functions +C0728984|T033|AB|V41.0|ICD9CM|Problems with sight|Problems with sight +C0728984|T033|PT|V41.0|ICD9CM|Problems with sight|Problems with sight +C0260661|T033|AB|V41.1|ICD9CM|Eye problems NEC|Eye problems NEC +C0260661|T033|PT|V41.1|ICD9CM|Other eye problems|Other eye problems +C0438989|T033|AB|V41.2|ICD9CM|Problems with hearing|Problems with hearing +C0438989|T033|PT|V41.2|ICD9CM|Problems with hearing|Problems with hearing +C0260663|T033|AB|V41.3|ICD9CM|Ear problems NEC|Ear problems NEC +C0260663|T033|PT|V41.3|ICD9CM|Other ear problems|Other ear problems +C0260664|T033|PT|V41.4|ICD9CM|Problems with voice production|Problems with voice production +C0260664|T033|AB|V41.4|ICD9CM|Voice production problem|Voice production problem +C0260665|T033|PT|V41.5|ICD9CM|Problems with smell and taste|Problems with smell and taste +C0260665|T033|AB|V41.5|ICD9CM|Smell and taste problem|Smell and taste problem +C0481706|T033|AB|V41.6|ICD9CM|Problem w swallowing|Problem w swallowing +C0481706|T033|PT|V41.6|ICD9CM|Problems with swallowing and mastication|Problems with swallowing and mastication +C0260667|T033|PT|V41.7|ICD9CM|Problems with sexual function|Problems with sexual function +C0260667|T033|AB|V41.7|ICD9CM|Sexual function problem|Sexual function problem +C0260668|T033|PT|V41.8|ICD9CM|Other problems with special functions|Other problems with special functions +C0260668|T033|AB|V41.8|ICD9CM|Probl w special func NEC|Probl w special func NEC +C0260669|T033|AB|V41.9|ICD9CM|Probl w special func NOS|Probl w special func NOS +C0260669|T033|PT|V41.9|ICD9CM|Unspecified problem with special functions|Unspecified problem with special functions +C0041866|T033|HT|V42|ICD9CM|Organ or tissue replaced by transplant|Organ or tissue replaced by transplant +C0677491|T033|PT|V42.0|ICD9CM|Kidney replaced by transplant|Kidney replaced by transplant +C0677491|T033|AB|V42.0|ICD9CM|Kidney transplant status|Kidney transplant status +C0018812|T033|PT|V42.1|ICD9CM|Heart replaced by transplant|Heart replaced by transplant +C0018812|T033|AB|V42.1|ICD9CM|Heart transplant status|Heart transplant status +C0677631|T033|PT|V42.2|ICD9CM|Heart valve replaced by transplant|Heart valve replaced by transplant +C0677631|T033|AB|V42.2|ICD9CM|Heart valve transplant|Heart valve transplant +C0392099|T033|PT|V42.3|ICD9CM|Skin replaced by transplant|Skin replaced by transplant +C0392099|T033|AB|V42.3|ICD9CM|Skin transplant status|Skin transplant status +C0040750|T033|PT|V42.4|ICD9CM|Bone replaced by transplant|Bone replaced by transplant +C0040750|T033|AB|V42.4|ICD9CM|Bone transplant status|Bone transplant status +C1384683|T033|PT|V42.5|ICD9CM|Cornea replaced by transplant|Cornea replaced by transplant +C1384683|T033|AB|V42.5|ICD9CM|Cornea transplant status|Cornea transplant status +C0392098|T033|PT|V42.6|ICD9CM|Lung replaced by transplant|Lung replaced by transplant +C0392098|T033|AB|V42.6|ICD9CM|Lung transplant status|Lung transplant status +C0023908|T033|PT|V42.7|ICD9CM|Liver replaced by transplant|Liver replaced by transplant +C0023908|T033|AB|V42.7|ICD9CM|Liver transplant status|Liver transplant status +C0490023|T033|HT|V42.8|ICD9CM|Other specified organ or tissue replaced by transplant|Other specified organ or tissue replaced by transplant +C0740179|T033|PT|V42.81|ICD9CM|Bone marrow replaced by transplant|Bone marrow replaced by transplant +C0740179|T033|AB|V42.81|ICD9CM|Trnspl status-bne marrow|Trnspl status-bne marrow +C0490022|T033|PT|V42.82|ICD9CM|Peripheral stem cells replaced by transplant|Peripheral stem cells replaced by transplant +C0490022|T033|AB|V42.82|ICD9CM|Trspl sts-perip stm cell|Trspl sts-perip stm cell +C0684250|T033|PT|V42.83|ICD9CM|Pancreas replaced by transplant|Pancreas replaced by transplant +C0684250|T033|AB|V42.83|ICD9CM|Trnspl status-pancreas|Trnspl status-pancreas +C0728908|T033|PT|V42.84|ICD9CM|Organ or tissue replaced by transplant, intestines|Organ or tissue replaced by transplant, intestines +C0728908|T033|AB|V42.84|ICD9CM|Trnspl status-intestines|Trnspl status-intestines +C0490023|T033|PT|V42.89|ICD9CM|Other specified organ or tissue replaced by transplant|Other specified organ or tissue replaced by transplant +C0490023|T033|AB|V42.89|ICD9CM|Trnspl status organ NEC|Trnspl status organ NEC +C0041866|T033|AB|V42.9|ICD9CM|Transplant status NOS|Transplant status NOS +C0041866|T033|PT|V42.9|ICD9CM|Unspecified organ or tissue replaced by transplant|Unspecified organ or tissue replaced by transplant +C0260672|T033|HT|V43|ICD9CM|Organ or tissue replaced by other means|Organ or tissue replaced by other means +C0260673|T033|PT|V43.0|ICD9CM|Eye globe replaced by other means|Eye globe replaced by other means +C0260673|T033|AB|V43.0|ICD9CM|Eye replacement NEC|Eye replacement NEC +C0033825|T033|PT|V43.1|ICD9CM|Lens replaced by other means|Lens replaced by other means +C0033825|T033|AB|V43.1|ICD9CM|Lens replacement NEC|Lens replacement NEC +C0260674|T033|HT|V43.2|ICD9CM|Heart replaced by other means|Heart replaced by other means +C1260458|T033|AB|V43.22|ICD9CM|Artficial heart replace|Artficial heart replace +C1260458|T033|PT|V43.22|ICD9CM|Organ or tissue replaced by other means, fully implantable artificial heart|Organ or tissue replaced by other means, fully implantable artificial heart +C0260675|T033|AB|V43.3|ICD9CM|Heart valve replac NEC|Heart valve replac NEC +C0260675|T033|PT|V43.3|ICD9CM|Heart valve replaced by other means|Heart valve replaced by other means +C0260676|T033|AB|V43.4|ICD9CM|Blood vessel replac NEC|Blood vessel replac NEC +C0260676|T033|PT|V43.4|ICD9CM|Blood vessel replaced by other means|Blood vessel replaced by other means +C0481487|T033|PT|V43.5|ICD9CM|Bladder replaced by other means|Bladder replaced by other means +C0481487|T033|AB|V43.5|ICD9CM|Bladder replacement NEC|Bladder replacement NEC +C0260678|T033|HT|V43.6|ICD9CM|Joint replaced by other means|Joint replaced by other means +C0375836|T033|AB|V43.60|ICD9CM|Joint replaced unspcf|Joint replaced unspcf +C0375836|T033|PT|V43.60|ICD9CM|Unspecified joint replacement|Unspecified joint replacement +C2186390|T033|AB|V43.61|ICD9CM|Joint replaced shoulder|Joint replaced shoulder +C2186390|T033|PT|V43.61|ICD9CM|Shoulder joint replacement|Shoulder joint replacement +C0375838|T033|PT|V43.62|ICD9CM|Elbow joint replacement|Elbow joint replacement +C0375838|T033|AB|V43.62|ICD9CM|Joint replaced elbow|Joint replaced elbow +C0375839|T033|AB|V43.63|ICD9CM|Joint replaced wrist|Joint replaced wrist +C0375839|T033|PT|V43.63|ICD9CM|Wrist joint replacement|Wrist joint replacement +C0850128|T033|PT|V43.64|ICD9CM|Hip joint replacement|Hip joint replacement +C0850128|T033|AB|V43.64|ICD9CM|Joint replaced hip|Joint replaced hip +C0375841|T033|AB|V43.65|ICD9CM|Joint replaced knee|Joint replaced knee +C0375841|T033|PT|V43.65|ICD9CM|Knee joint replacement|Knee joint replacement +C0375842|T033|PT|V43.66|ICD9CM|Ankle joint replacement|Ankle joint replacement +C0375842|T033|AB|V43.66|ICD9CM|Joint replaced ankle|Joint replaced ankle +C0375843|T033|AB|V43.69|ICD9CM|Oth spcf joint replaced|Oth spcf joint replaced +C0375843|T033|PT|V43.69|ICD9CM|Other joint replacement|Other joint replacement +C0260679|T033|PT|V43.7|ICD9CM|Limb replaced by other means|Limb replaced by other means +C0260679|T033|AB|V43.7|ICD9CM|Limb replacement NEC|Limb replacement NEC +C0260680|T033|HT|V43.8|ICD9CM|Other organ or tissue replaced by other means|Other organ or tissue replaced by other means +C0375844|T033|AB|V43.81|ICD9CM|Larynx replacement|Larynx replacement +C0375844|T033|PT|V43.81|ICD9CM|Larynx replacement|Larynx replacement +C0375845|T033|AB|V43.82|ICD9CM|Breast replacement|Breast replacement +C0375845|T033|PT|V43.82|ICD9CM|Breast replacement|Breast replacement +C0695273|T033|AB|V43.83|ICD9CM|Artific skin repl status|Artific skin repl status +C0695273|T033|PT|V43.83|ICD9CM|Artificial skin replacement|Artificial skin replacement +C0260680|T033|AB|V43.89|ICD9CM|Organ/tiss replacmnt NEC|Organ/tiss replacmnt NEC +C0260680|T033|PT|V43.89|ICD9CM|Other organ or tissue replaced by other means|Other organ or tissue replaced by other means +C0260691|T033|HT|V44|ICD9CM|Artificial opening status|Artificial opening status +C0260682|T033|AB|V44.0|ICD9CM|Tracheostomy status|Tracheostomy status +C0260682|T033|PT|V44.0|ICD9CM|Tracheostomy status|Tracheostomy status +C0260683|T033|AB|V44.1|ICD9CM|Gastrostomy status|Gastrostomy status +C0260683|T033|PT|V44.1|ICD9CM|Gastrostomy status|Gastrostomy status +C0260684|T033|AB|V44.2|ICD9CM|Ileostomy status|Ileostomy status +C0260684|T033|PT|V44.2|ICD9CM|Ileostomy status|Ileostomy status +C0260685|T033|AB|V44.3|ICD9CM|Colostomy status|Colostomy status +C0260685|T033|PT|V44.3|ICD9CM|Colostomy status|Colostomy status +C0260686|T033|AB|V44.4|ICD9CM|Enterostomy status NEC|Enterostomy status NEC +C0260686|T033|PT|V44.4|ICD9CM|Status of other artificial opening of gastrointestinal tract|Status of other artificial opening of gastrointestinal tract +C0260687|T033|HT|V44.5|ICD9CM|Cystostomy status|Cystostomy status +C0260687|T033|AB|V44.50|ICD9CM|Cystostomy status NOS|Cystostomy status NOS +C0260687|T033|PT|V44.50|ICD9CM|Cystostomy, unspecified|Cystostomy, unspecified +C2911489|T033|AB|V44.51|ICD9CM|Cutaneous-vesicos status|Cutaneous-vesicos status +C2911489|T033|PT|V44.51|ICD9CM|Cutaneous-vesicostomy|Cutaneous-vesicostomy +C2911490|T033|AB|V44.52|ICD9CM|Appendico-vesicos status|Appendico-vesicos status +C2911490|T033|PT|V44.52|ICD9CM|Appendico-vesicostomy|Appendico-vesicostomy +C2911491|T033|AB|V44.59|ICD9CM|Cystostomy status NEC|Cystostomy status NEC +C2911491|T033|PT|V44.59|ICD9CM|Other cystostomy|Other cystostomy +C0260688|T033|PT|V44.6|ICD9CM|Other artificial opening of urinary tract status|Other artificial opening of urinary tract status +C0260688|T033|AB|V44.6|ICD9CM|Urinostomy status NEC|Urinostomy status NEC +C0260689|T033|AB|V44.7|ICD9CM|Artificial vagina status|Artificial vagina status +C0260689|T033|PT|V44.7|ICD9CM|Artificial vagina status|Artificial vagina status +C0260690|T033|AB|V44.8|ICD9CM|Artif open status NEC|Artif open status NEC +C0260690|T033|PT|V44.8|ICD9CM|Other artificial opening status|Other artificial opening status +C0260691|T033|AB|V44.9|ICD9CM|Artif open status NOS|Artif open status NOS +C0260691|T033|PT|V44.9|ICD9CM|Unspecified artificial opening status|Unspecified artificial opening status +C0260698|T033|HT|V45|ICD9CM|Other postprocedural states|Other postprocedural states +C2712998|T033|HT|V45.0|ICD9CM|Cardiac pacemaker in situ|Cardiac pacemaker in situ +C0375846|T033|AB|V45.00|ICD9CM|Status cardc dvce unspcf|Status cardc dvce unspcf +C0375846|T033|PT|V45.00|ICD9CM|Unspecified cardiac device in situ|Unspecified cardiac device in situ +C2240369|T033|PT|V45.01|ICD9CM|Cardiac pacemaker in situ|Cardiac pacemaker in situ +C2240369|T033|AB|V45.01|ICD9CM|Status cardiac pacemaker|Status cardiac pacemaker +C2911500|T033|PT|V45.02|ICD9CM|Automatic implantable cardiac defibrillator in situ|Automatic implantable cardiac defibrillator in situ +C2911500|T033|AB|V45.02|ICD9CM|Status autm crd dfbrltr|Status autm crd dfbrltr +C0375848|T033|PT|V45.09|ICD9CM|Other specified cardiac device in situ|Other specified cardiac device in situ +C0375848|T033|AB|V45.09|ICD9CM|Status oth spcf crdc dvc|Status oth spcf crdc dvc +C0260694|T033|HT|V45.1|ICD9CM|Postsurgical renal dialysis status|Postsurgical renal dialysis status +C0481496|T033|AB|V45.11|ICD9CM|Renal dialysis status|Renal dialysis status +C0481496|T033|PT|V45.11|ICD9CM|Renal dialysis status|Renal dialysis status +C2349872|T033|AB|V45.12|ICD9CM|Noncmplnt w renal dialys|Noncmplnt w renal dialys +C2349872|T033|PT|V45.12|ICD9CM|Noncompliance with renal dialysis|Noncompliance with renal dialysis +C0496750|T033|PT|V45.2|ICD9CM|Presence of cerebrospinal fluid drainage device|Presence of cerebrospinal fluid drainage device +C0496750|T033|AB|V45.2|ICD9CM|Ventricular shunt status|Ventricular shunt status +C1401143|T033|PT|V45.3|ICD9CM|Intestinal bypass or anastomosis status|Intestinal bypass or anastomosis status +C1401143|T033|AB|V45.3|ICD9CM|Intestinal bypass status|Intestinal bypass status +C0391994|T033|AB|V45.4|ICD9CM|Arthrodesis status|Arthrodesis status +C0391994|T033|PT|V45.4|ICD9CM|Arthrodesis status|Arthrodesis status +C0375849|T033|HT|V45.5|ICD9CM|Presence of contraceptive device|Presence of contraceptive device +C0344225|T033|PT|V45.51|ICD9CM|Presence of intrauterine contraceptive device|Presence of intrauterine contraceptive device +C0344225|T033|AB|V45.51|ICD9CM|Prsc ntrutr cntrcptv dvc|Prsc ntrutr cntrcptv dvc +C0375850|T033|PT|V45.52|ICD9CM|Presence of subdermal contraceptive implant|Presence of subdermal contraceptive implant +C0375850|T033|AB|V45.52|ICD9CM|Prsc sbdrml cntrcp mplnt|Prsc sbdrml cntrcp mplnt +C0375851|T033|PT|V45.59|ICD9CM|Presence of other contraceptive device|Presence of other contraceptive device +C0375851|T033|AB|V45.59|ICD9CM|Prsc other cntrcptv dvc|Prsc other cntrcptv dvc +C0490025|T033|HT|V45.6|ICD9CM|States following surgery of eye and adnexa|States following surgery of eye and adnexa +C0490024|T033|AB|V45.61|ICD9CM|Cataract extract status|Cataract extract status +C0490024|T033|PT|V45.61|ICD9CM|Cataract extraction status|Cataract extraction status +C0490025|T033|PT|V45.69|ICD9CM|Other states following surgery of eye and adnexa|Other states following surgery of eye and adnexa +C0490025|T033|AB|V45.69|ICD9CM|Post-proc st eye/adn NEC|Post-proc st eye/adn NEC +C0476700|T033|HT|V45.7|ICD9CM|Acquired absence of organ|Acquired absence of organ +C2349873|T033|AB|V45.71|ICD9CM|Acq absnce breast/nipple|Acq absnce breast/nipple +C2349873|T033|PT|V45.71|ICD9CM|Acquired absence of breast and nipple|Acquired absence of breast and nipple +C0490027|T033|AB|V45.72|ICD9CM|Acquire absnce intestine|Acquire absnce intestine +C0490027|T033|PT|V45.72|ICD9CM|Acquired absence of intestine (large) (small)|Acquired absence of intestine (large) (small) +C0476705|T033|AB|V45.73|ICD9CM|Acquired absence kidney|Acquired absence kidney +C0476705|T033|PT|V45.73|ICD9CM|Acquired absence of kidney|Acquired absence of kidney +C0878725|T033|AB|V45.74|ICD9CM|Acq absence urinary trct|Acq absence urinary trct +C0878725|T033|PT|V45.74|ICD9CM|Acquired absence of organ, other parts of urinary tract|Acquired absence of organ, other parts of urinary tract +C0878726|T033|AB|V45.75|ICD9CM|Acq absence of stomach|Acq absence of stomach +C0878726|T033|PT|V45.75|ICD9CM|Acquired absence of organ, stomach|Acquired absence of organ, stomach +C0878727|T033|AB|V45.76|ICD9CM|Acq absence of lung|Acq absence of lung +C0878727|T033|PT|V45.76|ICD9CM|Acquired absence of organ, lung|Acquired absence of organ, lung +C0476706|T033|AB|V45.77|ICD9CM|Acq absnce genital organ|Acq absnce genital organ +C0476706|T033|PT|V45.77|ICD9CM|Acquired absence of organ, genital organs|Acquired absence of organ, genital organs +C0917922|T033|AB|V45.78|ICD9CM|Acquired absence of eye|Acquired absence of eye +C0917922|T033|PT|V45.78|ICD9CM|Acquired absence of organ, eye|Acquired absence of organ, eye +C0886366|T033|AB|V45.79|ICD9CM|Acq absence of organ NEC|Acq absence of organ NEC +C0886366|T033|PT|V45.79|ICD9CM|Other acquired absence of organ|Other acquired absence of organ +C0260698|T033|HT|V45.8|ICD9CM|Other postprocedural status|Other postprocedural status +C0032811|T033|AB|V45.81|ICD9CM|Aortocoronary bypass|Aortocoronary bypass +C0032811|T033|PT|V45.81|ICD9CM|Aortocoronary bypass status|Aortocoronary bypass status +C0375852|T033|PT|V45.82|ICD9CM|Percutaneous transluminal coronary angioplasty status|Percutaneous transluminal coronary angioplasty status +C0375852|T033|AB|V45.82|ICD9CM|Status-post ptca|Status-post ptca +C0375853|T033|AB|V45.83|ICD9CM|Breast impl remov status|Breast impl remov status +C0375853|T033|PT|V45.83|ICD9CM|Breast implant removal status|Breast implant removal status +C2911565|T033|PT|V45.84|ICD9CM|Dental restoration status|Dental restoration status +C2911565|T033|AB|V45.84|ICD9CM|Dental restoratn status|Dental restoratn status +C1260459|T033|AB|V45.85|ICD9CM|Insulin pump status|Insulin pump status +C1260459|T033|PT|V45.85|ICD9CM|Insulin pump status|Insulin pump status +C1719686|T033|PT|V45.86|ICD9CM|Bariatric surgery status|Bariatric surgery status +C1719686|T033|AB|V45.86|ICD9CM|Bariatric surgery status|Bariatric surgery status +C2349874|T033|PT|V45.87|ICD9CM|Transplanted organ removal status|Transplanted organ removal status +C2349874|T033|AB|V45.87|ICD9CM|Trnsplnt orgn rem status|Trnsplnt orgn rem status +C2349876|T033|AB|V45.88|ICD9CM|TPA adm status 24 hr pta|TPA adm status 24 hr pta +C0260698|T033|PT|V45.89|ICD9CM|Other postprocedural status|Other postprocedural status +C0260698|T033|AB|V45.89|ICD9CM|Post-proc states NEC|Post-proc states NEC +C2349878|T033|HT|V46|ICD9CM|Other dependence on machines and devices|Other dependence on machines and devices +C0260700|T033|AB|V46.0|ICD9CM|Dependence on aspirator|Dependence on aspirator +C0260700|T033|PT|V46.0|ICD9CM|Dependence on aspirator|Dependence on aspirator +C1321831|T033|HT|V46.1|ICD9CM|Dependence on respirator [Ventilator]|Dependence on respirator [Ventilator] +C1455974|T033|PT|V46.11|ICD9CM|Dependence on respirator, status|Dependence on respirator, status +C1455974|T033|AB|V46.11|ICD9CM|Respirator depend status|Respirator depend status +C1455975|T033|PT|V46.12|ICD9CM|Encounter for respirator dependence during power failure|Encounter for respirator dependence during power failure +C1455975|T033|AB|V46.12|ICD9CM|Resp depend-powr failure|Resp depend-powr failure +C1561673|T033|PT|V46.13|ICD9CM|Encounter for weaning from respirator [ventilator]|Encounter for weaning from respirator [ventilator] +C1561673|T033|AB|V46.13|ICD9CM|Weaning from respirator|Weaning from respirator +C1561674|T033|AB|V46.14|ICD9CM|Mech comp respirator|Mech comp respirator +C1561674|T033|PT|V46.14|ICD9CM|Mechanical complication of respirator [ventilator]|Mechanical complication of respirator [ventilator] +C2363337|T033|AB|V46.2|ICD9CM|Depend-supplement oxygen|Depend-supplement oxygen +C2363337|T033|PT|V46.2|ICD9CM|Other dependence on machines, supplemental oxygen|Other dependence on machines, supplemental oxygen +C0476582|T033|AB|V46.3|ICD9CM|Wheelchair dependence|Wheelchair dependence +C0476582|T033|PT|V46.3|ICD9CM|Wheelchair dependence|Wheelchair dependence +C0260702|T033|PT|V46.8|ICD9CM|Dependence on other enabling machines|Dependence on other enabling machines +C0260702|T033|AB|V46.8|ICD9CM|Machine dependence NEC|Machine dependence NEC +C0260703|T033|AB|V46.9|ICD9CM|Machine dependence NOS|Machine dependence NOS +C0260703|T033|PT|V46.9|ICD9CM|Unspecified machine dependence|Unspecified machine dependence +C0260704|T033|HT|V47|ICD9CM|Other problems with internal organs|Other problems with internal organs +C0260705|T033|PT|V47.0|ICD9CM|Deficiencies of internal organs|Deficiencies of internal organs +C0260705|T033|AB|V47.0|ICD9CM|Intern organ deficiency|Intern organ deficiency +C0260706|T033|AB|V47.1|ICD9CM|Mech prob w internal org|Mech prob w internal org +C0260706|T033|PT|V47.1|ICD9CM|Mechanical and motor problems with internal organs|Mechanical and motor problems with internal organs +C0260707|T033|AB|V47.2|ICD9CM|Cardiorespirat probl NEC|Cardiorespirat probl NEC +C0260707|T033|PT|V47.2|ICD9CM|Other cardiorespiratory problems|Other cardiorespiratory problems +C0260708|T033|AB|V47.3|ICD9CM|Digestive problems NEC|Digestive problems NEC +C0260708|T033|PT|V47.3|ICD9CM|Other digestive problems|Other digestive problems +C0260709|T033|PT|V47.4|ICD9CM|Other urinary problems|Other urinary problems +C0260709|T033|AB|V47.4|ICD9CM|Urinary problems NEC|Urinary problems NEC +C0260710|T033|AB|V47.5|ICD9CM|Genital problems NEC|Genital problems NEC +C0260710|T033|PT|V47.5|ICD9CM|Other genital problems|Other genital problems +C0260711|T033|AB|V47.9|ICD9CM|Probl w internal org NOS|Probl w internal org NOS +C0260711|T033|PT|V47.9|ICD9CM|Unspecified problems with internal organs|Unspecified problems with internal organs +C0260712|T033|HT|V48|ICD9CM|Problems with head, neck, and trunk|Problems with head, neck, and trunk +C0260713|T033|AB|V48.0|ICD9CM|Deficiencies of head|Deficiencies of head +C0260713|T033|PT|V48.0|ICD9CM|Deficiencies of head|Deficiencies of head +C0260714|T033|AB|V48.1|ICD9CM|Deficiencies neck/trunk|Deficiencies neck/trunk +C0260714|T033|PT|V48.1|ICD9CM|Deficiencies of neck and trunk|Deficiencies of neck and trunk +C0260715|T033|PT|V48.2|ICD9CM|Mechanical and motor problems with head|Mechanical and motor problems with head +C0260715|T033|AB|V48.2|ICD9CM|Mechanical prob w head|Mechanical prob w head +C0260716|T033|AB|V48.3|ICD9CM|Mech prob w neck & trunk|Mech prob w neck & trunk +C0260716|T033|PT|V48.3|ICD9CM|Mechanical and motor problems with neck and trunk|Mechanical and motor problems with neck and trunk +C0260717|T033|AB|V48.4|ICD9CM|Sensory problem w head|Sensory problem w head +C0260717|T033|PT|V48.4|ICD9CM|Sensory problem with head|Sensory problem with head +C0260718|T033|AB|V48.5|ICD9CM|Sensor prob w neck/trunk|Sensor prob w neck/trunk +C0260718|T033|PT|V48.5|ICD9CM|Sensory problem with neck and trunk|Sensory problem with neck and trunk +C0260719|T033|AB|V48.6|ICD9CM|Disfigurements of head|Disfigurements of head +C0260719|T033|PT|V48.6|ICD9CM|Disfigurements of head|Disfigurements of head +C0260720|T033|AB|V48.7|ICD9CM|Disfigurement neck/trunk|Disfigurement neck/trunk +C0260720|T033|PT|V48.7|ICD9CM|Disfigurements of neck and trunk|Disfigurements of neck and trunk +C0260721|T033|PT|V48.8|ICD9CM|Other problems with head, neck, and trunk|Other problems with head, neck, and trunk +C0260721|T033|AB|V48.8|ICD9CM|Prob-head/neck/trunk NEC|Prob-head/neck/trunk NEC +C0260722|T033|AB|V48.9|ICD9CM|Prob-head/neck/trunk NOS|Prob-head/neck/trunk NOS +C0260722|T033|PT|V48.9|ICD9CM|Unspecified problem with head, neck, or trunk|Unspecified problem with head, neck, or trunk +C0878755|T033|HT|V49|ICD9CM|Other conditions influencing health status|Other conditions influencing health status +C0260724|T033|AB|V49.0|ICD9CM|Deficiencies of limbs|Deficiencies of limbs +C0260724|T033|PT|V49.0|ICD9CM|Deficiencies of limbs|Deficiencies of limbs +C0260725|T033|AB|V49.1|ICD9CM|Mechanical prob w limbs|Mechanical prob w limbs +C0260725|T033|PT|V49.1|ICD9CM|Mechanical problems with limbs|Mechanical problems with limbs +C0260726|T033|AB|V49.2|ICD9CM|Motor problems w limbs|Motor problems w limbs +C0260726|T033|PT|V49.2|ICD9CM|Motor problems with limbs|Motor problems with limbs +C0260727|T033|AB|V49.3|ICD9CM|Sensory problems w limbs|Sensory problems w limbs +C0260727|T033|PT|V49.3|ICD9CM|Sensory problems with limbs|Sensory problems with limbs +C0260728|T033|AB|V49.4|ICD9CM|Disfigurements of limbs|Disfigurements of limbs +C0260728|T033|PT|V49.4|ICD9CM|Disfigurements of limbs|Disfigurements of limbs +C2586328|T033|AB|V49.5|ICD9CM|Limb problems NEC|Limb problems NEC +C2586328|T033|PT|V49.5|ICD9CM|Other problems of limbs|Other problems of limbs +C0376137|T033|HT|V49.6|ICD9CM|Status post amputation of upper limb|Status post amputation of upper limb +C0376138|T033|AB|V49.60|ICD9CM|Status amput up lmb NOS|Status amput up lmb NOS +C0376138|T033|PT|V49.60|ICD9CM|Unspecified level upper limb amputation status|Unspecified level upper limb amputation status +C0376139|T033|AB|V49.61|ICD9CM|Status amput thumb|Status amput thumb +C0376139|T033|PT|V49.61|ICD9CM|Thumb amputation status|Thumb amputation status +C0375854|T033|PT|V49.62|ICD9CM|Other finger(s) amputation status|Other finger(s) amputation status +C0375854|T033|AB|V49.62|ICD9CM|Status amput oth fingers|Status amput oth fingers +C0376140|T033|PT|V49.63|ICD9CM|Hand amputation status|Hand amputation status +C0376140|T033|AB|V49.63|ICD9CM|Status amput hand|Status amput hand +C0376141|T033|AB|V49.64|ICD9CM|Status amput wrist|Status amput wrist +C0376141|T033|PT|V49.64|ICD9CM|Wrist amputation status|Wrist amputation status +C0376142|T033|PT|V49.65|ICD9CM|Below elbow amputation status|Below elbow amputation status +C0376142|T033|AB|V49.65|ICD9CM|Status amput below elbow|Status amput below elbow +C0376143|T033|PT|V49.66|ICD9CM|Above elbow amputation status|Above elbow amputation status +C0376143|T033|AB|V49.66|ICD9CM|Status amput above elbow|Status amput above elbow +C0376144|T033|PT|V49.67|ICD9CM|Shoulder amputation status|Shoulder amputation status +C0376144|T033|AB|V49.67|ICD9CM|Status amput shoulder|Status amput shoulder +C1955601|T033|HT|V49.7|ICD9CM|Lower limb amputation status|Lower limb amputation status +C1955592|T033|AB|V49.70|ICD9CM|Status amput lwr lmb NOS|Status amput lwr lmb NOS +C1955592|T033|PT|V49.70|ICD9CM|Unspecified level lower limb amputation status|Unspecified level lower limb amputation status +C1955593|T033|PT|V49.71|ICD9CM|Great toe amputation status|Great toe amputation status +C1955593|T033|AB|V49.71|ICD9CM|Status amput great toe|Status amput great toe +C1955594|T033|PT|V49.72|ICD9CM|Other toe(s) amputation status|Other toe(s) amputation status +C1955594|T033|AB|V49.72|ICD9CM|Status amput othr toe(s)|Status amput othr toe(s) +C1955595|T033|PT|V49.73|ICD9CM|Foot amputation status|Foot amputation status +C1955595|T033|AB|V49.73|ICD9CM|Status amput foot|Status amput foot +C1955596|T033|PT|V49.74|ICD9CM|Ankle amputation status|Ankle amputation status +C1955596|T033|AB|V49.74|ICD9CM|Status amput ankle|Status amput ankle +C0376124|T033|PT|V49.75|ICD9CM|Below knee amputation status|Below knee amputation status +C0376124|T033|AB|V49.75|ICD9CM|Status amput below knee|Status amput below knee +C0376125|T033|PT|V49.76|ICD9CM|Above knee amputation status|Above knee amputation status +C0376125|T033|AB|V49.76|ICD9CM|Status amput above knee|Status amput above knee +C1955599|T033|PT|V49.77|ICD9CM|Hip amputation status|Hip amputation status +C1955599|T033|AB|V49.77|ICD9CM|Status amput hip|Status amput hip +C0878729|T033|HT|V49.8|ICD9CM|Other specified conditions influencing health status|Other specified conditions influencing health status +C1135338|T033|AB|V49.81|ICD9CM|Asympt postmeno status|Asympt postmeno status +C1135338|T033|PT|V49.81|ICD9CM|Asymptomatic postmenopausal status (age-related) (natural)|Asymptomatic postmenopausal status (age-related) (natural) +C0949155|T033|AB|V49.82|ICD9CM|Dental sealant status|Dental sealant status +C0949155|T033|PT|V49.82|ICD9CM|Dental sealant status|Dental sealant status +C1455976|T033|AB|V49.83|ICD9CM|Await organ transplnt st|Await organ transplnt st +C1455976|T033|PT|V49.83|ICD9CM|Awaiting organ transplant status|Awaiting organ transplant status +C1561676|T033|AB|V49.84|ICD9CM|Bed confinement status|Bed confinement status +C1561676|T033|PT|V49.84|ICD9CM|Bed confinement status|Bed confinement status +C1955602|T033|PT|V49.85|ICD9CM|Dual sensory impairment|Dual sensory impairment +C1955602|T033|AB|V49.85|ICD9CM|Dual sensory impairment|Dual sensory impairment +C0582114|T033|PT|V49.86|ICD9CM|Do not resuscitate status|Do not resuscitate status +C0582114|T033|AB|V49.86|ICD9CM|Do not resusctate status|Do not resusctate status +C2921308|T033|AB|V49.87|ICD9CM|Physical restrain status|Physical restrain status +C2921308|T033|PT|V49.87|ICD9CM|Physical restraints status|Physical restraints status +C0878729|T033|AB|V49.89|ICD9CM|Conditn influ health NEC|Conditn influ health NEC +C0878729|T033|PT|V49.89|ICD9CM|Other specified conditions influencing health status|Other specified conditions influencing health status +C0260729|T033|AB|V49.9|ICD9CM|Probl influ health NOS|Probl influ health NOS +C0260729|T033|PT|V49.9|ICD9CM|Unspecified problems with limbs and other problems|Unspecified problems with limbs and other problems +C0260731|T033|HT|V50|ICD9CM|Elective surgery for purposes other than remedying health states|Elective surgery for purposes other than remedying health states +C0740181|T033|PT|V50.0|ICD9CM|Elective hair transplant for purposes other than remedying health states|Elective hair transplant for purposes other than remedying health states +C0740181|T033|AB|V50.0|ICD9CM|Hair transplant|Hair transplant +C0029711|T033|PT|V50.1|ICD9CM|Other plastic surgery for unacceptable cosmetic appearance|Other plastic surgery for unacceptable cosmetic appearance +C0029711|T033|AB|V50.1|ICD9CM|Plastic surgery NEC|Plastic surgery NEC +C1971613|T033|AB|V50.2|ICD9CM|Routine circumcision|Routine circumcision +C1971613|T033|PT|V50.2|ICD9CM|Routine or ritual circumcision|Routine or ritual circumcision +C0700645|T033|AB|V50.3|ICD9CM|Ear piercing|Ear piercing +C0700645|T033|PT|V50.3|ICD9CM|Ear piercing|Ear piercing +C2910787|T033|PT|V50.41|ICD9CM|Prophylactic breast removal|Prophylactic breast removal +C2910787|T033|AB|V50.41|ICD9CM|Prphylct orgn rmvl brst|Prphylct orgn rmvl brst +C2910788|T033|PT|V50.42|ICD9CM|Prophylactic ovary removal|Prophylactic ovary removal +C2910788|T033|AB|V50.42|ICD9CM|Prphylct orgn rmvl ovary|Prphylct orgn rmvl ovary +C2910789|T033|PT|V50.49|ICD9CM|Other prophylactic gland removal|Other prophylactic gland removal +C2910789|T033|AB|V50.49|ICD9CM|Prphylct orgn rmvl other|Prphylct orgn rmvl other +C0260734|T033|AB|V50.8|ICD9CM|Elective surgery NEC|Elective surgery NEC +C0260734|T033|PT|V50.8|ICD9CM|Other elective surgery for purposes other than remedying health states|Other elective surgery for purposes other than remedying health states +C0260735|T033|AB|V50.9|ICD9CM|Elective surgery NOS|Elective surgery NOS +C0260735|T033|PT|V50.9|ICD9CM|Unspecified elective surgery for purposes other than remedying health states|Unspecified elective surgery for purposes other than remedying health states +C0260736|T033|HT|V51|ICD9CM|Aftercare involving the use of plastic surgery|Aftercare involving the use of plastic surgery +C2349879|T033|AB|V51.0|ICD9CM|Brst reconst fol mastect|Brst reconst fol mastect +C2349879|T033|PT|V51.0|ICD9CM|Encounter for breast reconstruction following mastectomy|Encounter for breast reconstruction following mastectomy +C2349880|T033|AB|V51.8|ICD9CM|Aftercre plastc surg NEC|Aftercre plastc surg NEC +C2349880|T033|PT|V51.8|ICD9CM|Other aftercare involving the use of plastic surgery|Other aftercare involving the use of plastic surgery +C0375859|T033|HT|V52|ICD9CM|Fitting and adjustment of prosthetic device and implant|Fitting and adjustment of prosthetic device and implant +C0260738|T033|PT|V52.0|ICD9CM|Fitting and adjustment of artificial arm (complete) (partial)|Fitting and adjustment of artificial arm (complete) (partial) +C0260738|T033|AB|V52.0|ICD9CM|Fitting artificial arm|Fitting artificial arm +C0260739|T033|PT|V52.1|ICD9CM|Fitting and adjustment of artificial leg (complete) (partial)|Fitting and adjustment of artificial leg (complete) (partial) +C0260739|T033|AB|V52.1|ICD9CM|Fitting artificial leg|Fitting artificial leg +C1971617|T033|PT|V52.2|ICD9CM|Fitting and adjustment of artificial eye|Fitting and adjustment of artificial eye +C1971617|T033|AB|V52.2|ICD9CM|Fitting artificial eye|Fitting artificial eye +C0481749|T033|PT|V52.3|ICD9CM|Fitting and adjustment of dental prosthetic device|Fitting and adjustment of dental prosthetic device +C0481749|T033|AB|V52.3|ICD9CM|Fitting dental prosthes|Fitting dental prosthes +C0375860|T033|AB|V52.4|ICD9CM|Fit/adj breast pros/impl|Fit/adj breast pros/impl +C0375860|T033|PT|V52.4|ICD9CM|Fitting and adjustment of breast prosthesis and implant|Fitting and adjustment of breast prosthesis and implant +C0260743|T033|PT|V52.8|ICD9CM|Fitting and adjustment of other specified prosthetic device|Fitting and adjustment of other specified prosthetic device +C0260743|T033|AB|V52.8|ICD9CM|Fitting prosthesis NEC|Fitting prosthesis NEC +C0260744|T033|PT|V52.9|ICD9CM|Fitting and adjustment of unspecified prosthetic device|Fitting and adjustment of unspecified prosthetic device +C0260744|T033|AB|V52.9|ICD9CM|Fitting prosthesis NOS|Fitting prosthesis NOS +C0260746|T033|HT|V53.0|ICD9CM|Fitting and adjustment of devices related to nervous system and special senses|Fitting and adjustment of devices related to nervous system and special senses +C0490028|T033|AB|V53.01|ICD9CM|Adj cerebral vent shunt|Adj cerebral vent shunt +C0490028|T033|PT|V53.01|ICD9CM|Fitting and adjustment of cerebral ventricular (communicating) shunt|Fitting and adjustment of cerebral ventricular (communicating) shunt +C0490029|T033|AB|V53.02|ICD9CM|Adjust neuropacemaker|Adjust neuropacemaker +C0490029|T033|PT|V53.02|ICD9CM|Fitting and adjustment of neuropacemaker (brain) (peripheral nerve) (spinal cord)|Fitting and adjustment of neuropacemaker (brain) (peripheral nerve) (spinal cord) +C0478576|T033|AB|V53.09|ICD9CM|Adj nerv syst device NEC|Adj nerv syst device NEC +C0478576|T033|PT|V53.09|ICD9CM|Fitting and adjustment of other devices related to nervous system and special senses|Fitting and adjustment of other devices related to nervous system and special senses +C0260747|T033|AB|V53.1|ICD9CM|Fit contact lens/glasses|Fit contact lens/glasses +C0260747|T033|PT|V53.1|ICD9CM|Fitting and adjustment of spectacles and contact lenses|Fitting and adjustment of spectacles and contact lenses +C0260748|T033|AB|V53.2|ICD9CM|Adjustment hearing aid|Adjustment hearing aid +C0260748|T033|PT|V53.2|ICD9CM|Fitting and adjustment of hearing aid|Fitting and adjustment of hearing aid +C0260749|T033|HT|V53.3|ICD9CM|Fitting and adjustment of cardiac pacemaker|Fitting and adjustment of cardiac pacemaker +C0260749|T033|PT|V53.31|ICD9CM|Fitting and adjustment of cardiac pacemaker|Fitting and adjustment of cardiac pacemaker +C0260749|T033|AB|V53.31|ICD9CM|Ftng cardiac pacemaker|Ftng cardiac pacemaker +C0375861|T033|PT|V53.32|ICD9CM|Fitting and adjustment of automatic implantable cardiac defibrillator|Fitting and adjustment of automatic implantable cardiac defibrillator +C0375861|T033|AB|V53.32|ICD9CM|Ftng autmtc dfibrillator|Ftng autmtc dfibrillator +C0375862|T033|PT|V53.39|ICD9CM|Fitting and adjustment of other cardiac device|Fitting and adjustment of other cardiac device +C0375862|T033|AB|V53.39|ICD9CM|Ftng oth cardiac device|Ftng oth cardiac device +C0260750|T033|AB|V53.4|ICD9CM|Fit orthodontic device|Fit orthodontic device +C0260750|T033|PT|V53.4|ICD9CM|Fitting and adjustment of orthodontic devices|Fitting and adjustment of orthodontic devices +C2712802|T033|HT|V53.5|ICD9CM|Fitting and adjustment of other gastrointestinal appliance and device|Fitting and adjustment of other gastrointestinal appliance and device +C2712549|T033|AB|V53.50|ICD9CM|Fit/adjust intestinl dev|Fit/adjust intestinl dev +C2712549|T033|PT|V53.50|ICD9CM|Fitting and adjustment of intestinal appliance and device|Fitting and adjustment of intestinal appliance and device +C2910897|T033|AB|V53.51|ICD9CM|Fit/adj gastric lap band|Fit/adj gastric lap band +C2910897|T033|PT|V53.51|ICD9CM|Fitting and adjustment of gastric lap band|Fitting and adjustment of gastric lap band +C2712802|T033|AB|V53.59|ICD9CM|Fit/adjust gi app-device|Fit/adjust gi app-device +C2712802|T033|PT|V53.59|ICD9CM|Fitting and adjustment of other gastrointestinal appliance and device|Fitting and adjustment of other gastrointestinal appliance and device +C0260752|T033|PT|V53.6|ICD9CM|Fitting and adjustment of urinary devices|Fitting and adjustment of urinary devices +C0260752|T033|AB|V53.6|ICD9CM|Fitting urinary devices|Fitting urinary devices +C0481768|T033|AB|V53.8|ICD9CM|Adjustment of wheelchair|Adjustment of wheelchair +C0481768|T033|PT|V53.8|ICD9CM|Fitting and adjustment of wheelchair|Fitting and adjustment of wheelchair +C0260755|T033|HT|V53.9|ICD9CM|Fitting and adjustment of other and unspecified device|Fitting and adjustment of other and unspecified device +C0496668|T033|AB|V53.90|ICD9CM|Fit/adjust device NOS|Fit/adjust device NOS +C0496668|T033|PT|V53.90|ICD9CM|Fitting and adjustment, unspecified device|Fitting and adjustment, unspecified device +C0260756|T033|HT|V54|ICD9CM|Other orthopedic aftercare|Other orthopedic aftercare +C0260757|T033|HT|V54.0|ICD9CM|Aftercare involving internal fixation device|Aftercare involving internal fixation device +C1260461|T033|PT|V54.01|ICD9CM|Encounter for removal of internal fixation device|Encounter for removal of internal fixation device +C1260461|T033|AB|V54.01|ICD9CM|Removal int fixation dev|Removal int fixation dev +C1135277|T033|HT|V54.1|ICD9CM|Aftercare for healing traumatic fracture|Aftercare for healing traumatic fracture +C1135278|T033|PT|V54.10|ICD9CM|Aftercare for healing traumatic fracture of arm, unspecified|Aftercare for healing traumatic fracture of arm, unspecified +C1135278|T033|AB|V54.10|ICD9CM|Aftrcre traum fx arm NOS|Aftrcre traum fx arm NOS +C1135279|T033|PT|V54.11|ICD9CM|Aftercare for healing traumatic fracture of upper arm|Aftercare for healing traumatic fracture of upper arm +C1135279|T033|AB|V54.11|ICD9CM|Aftrcare traum fx up arm|Aftrcare traum fx up arm +C1135280|T033|PT|V54.12|ICD9CM|Aftercare for healing traumatic fracture of lower arm|Aftercare for healing traumatic fracture of lower arm +C1135280|T033|AB|V54.12|ICD9CM|Aftrcre traum fx low arm|Aftrcre traum fx low arm +C1135281|T033|PT|V54.13|ICD9CM|Aftercare for healing traumatic fracture of hip|Aftercare for healing traumatic fracture of hip +C1135281|T033|AB|V54.13|ICD9CM|Aftrcre traumatic fx hip|Aftrcre traumatic fx hip +C1135282|T033|PT|V54.14|ICD9CM|Aftercare for healing traumatic fracture of leg, unspecified|Aftercare for healing traumatic fracture of leg, unspecified +C1135282|T033|AB|V54.14|ICD9CM|Aftrcre traum fx leg NOS|Aftrcre traum fx leg NOS +C1135283|T033|PT|V54.15|ICD9CM|Aftercare for healing traumatic fracture of upper leg|Aftercare for healing traumatic fracture of upper leg +C1135283|T033|AB|V54.15|ICD9CM|Aftrcare traum fx up leg|Aftrcare traum fx up leg +C1135284|T033|PT|V54.16|ICD9CM|Aftercare for healing traumatic fracture of lower leg|Aftercare for healing traumatic fracture of lower leg +C1135284|T033|AB|V54.16|ICD9CM|Aftrcre traum fx low leg|Aftrcre traum fx low leg +C1135285|T033|PT|V54.17|ICD9CM|Aftercare for healing traumatic fracture of vertebrae|Aftercare for healing traumatic fracture of vertebrae +C1135285|T033|AB|V54.17|ICD9CM|Aftrcre traum fx vertebr|Aftrcre traum fx vertebr +C1135286|T033|PT|V54.19|ICD9CM|Aftercare for healing traumatic fracture of other bone|Aftercare for healing traumatic fracture of other bone +C1135286|T033|AB|V54.19|ICD9CM|Aftrce traum fx bone NEC|Aftrce traum fx bone NEC +C1135287|T033|HT|V54.2|ICD9CM|Aftercare for healing pathologic fracture|Aftercare for healing pathologic fracture +C1135288|T033|PT|V54.20|ICD9CM|Aftercare for healing pathologic fracture of arm, unspecified|Aftercare for healing pathologic fracture of arm, unspecified +C1135288|T033|AB|V54.20|ICD9CM|Aftrcare path fx arm NOS|Aftrcare path fx arm NOS +C1135289|T033|PT|V54.21|ICD9CM|Aftercare for healing pathologic fracture of upper arm|Aftercare for healing pathologic fracture of upper arm +C1135289|T033|AB|V54.21|ICD9CM|Aftercare path fx up arm|Aftercare path fx up arm +C1135290|T033|PT|V54.22|ICD9CM|Aftercare for healing pathologic fracture of lower arm|Aftercare for healing pathologic fracture of lower arm +C1135290|T033|AB|V54.22|ICD9CM|Aftrcare path fx low arm|Aftrcare path fx low arm +C1135291|T033|PT|V54.23|ICD9CM|Aftercare for healing pathologic fracture of hip|Aftercare for healing pathologic fracture of hip +C1135291|T033|AB|V54.23|ICD9CM|Aftercare path fx hip|Aftercare path fx hip +C1135292|T033|PT|V54.24|ICD9CM|Aftercare for healing pathologic fracture of leg, unspecified|Aftercare for healing pathologic fracture of leg, unspecified +C1135292|T033|AB|V54.24|ICD9CM|Aftrcare path fx leg NOS|Aftrcare path fx leg NOS +C1135293|T033|PT|V54.25|ICD9CM|Aftercare for healing pathologic fracture of upper leg|Aftercare for healing pathologic fracture of upper leg +C1135293|T033|AB|V54.25|ICD9CM|Aftrcare path fx up leg|Aftrcare path fx up leg +C1135294|T033|PT|V54.26|ICD9CM|Aftercare for healing pathologic fracture of lower leg|Aftercare for healing pathologic fracture of lower leg +C1135294|T033|AB|V54.26|ICD9CM|Aftrcare path fx low leg|Aftrcare path fx low leg +C1135295|T033|PT|V54.27|ICD9CM|Aftercare for healing pathologic fracture of vertebrae|Aftercare for healing pathologic fracture of vertebrae +C1135295|T033|AB|V54.27|ICD9CM|Aftrcare path fx vertebr|Aftrcare path fx vertebr +C1135296|T033|PT|V54.29|ICD9CM|Aftercare for healing pathologic fracture of other bone|Aftercare for healing pathologic fracture of other bone +C1135296|T033|AB|V54.29|ICD9CM|Aftrcre path fx bone NEC|Aftrcre path fx bone NEC +C0260756|T033|HT|V54.8|ICD9CM|Other orthopedic aftercare|Other orthopedic aftercare +C1135297|T033|PT|V54.81|ICD9CM|Aftercare following joint replacement|Aftercare following joint replacement +C1135297|T033|AB|V54.81|ICD9CM|Aftercare joint replace|Aftercare joint replace +C3161153|T033|AB|V54.82|ICD9CM|Aftcr explantatn jt pros|Aftcr explantatn jt pros +C3161153|T033|PT|V54.82|ICD9CM|Aftercare following explantation of joint prosthesis|Aftercare following explantation of joint prosthesis +C0260756|T033|AB|V54.89|ICD9CM|Orthopedic aftercare NEC|Orthopedic aftercare NEC +C0260756|T033|PT|V54.89|ICD9CM|Other orthopedic aftercare|Other orthopedic aftercare +C0260758|T033|AB|V54.9|ICD9CM|Orthopedic aftercare NOS|Orthopedic aftercare NOS +C0260758|T033|PT|V54.9|ICD9CM|Unspecified orthopedic aftercare|Unspecified orthopedic aftercare +C0740203|T033|HT|V55|ICD9CM|Attention to artificial openings|Attention to artificial openings +C0260760|T033|AB|V55.0|ICD9CM|Atten to tracheostomy|Atten to tracheostomy +C0260760|T033|PT|V55.0|ICD9CM|Attention to tracheostomy|Attention to tracheostomy +C0260761|T033|AB|V55.1|ICD9CM|Atten to gastrostomy|Atten to gastrostomy +C0260761|T033|PT|V55.1|ICD9CM|Attention to gastrostomy|Attention to gastrostomy +C0260762|T033|AB|V55.2|ICD9CM|Atten to ileostomy|Atten to ileostomy +C0260762|T033|PT|V55.2|ICD9CM|Attention to ileostomy|Attention to ileostomy +C0260763|T033|AB|V55.3|ICD9CM|Atten to colostomy|Atten to colostomy +C0260763|T033|PT|V55.3|ICD9CM|Attention to colostomy|Attention to colostomy +C0260764|T033|AB|V55.4|ICD9CM|Atten to enterostomy NEC|Atten to enterostomy NEC +C0260764|T033|PT|V55.4|ICD9CM|Attention to other artificial opening of digestive tract|Attention to other artificial opening of digestive tract +C0260765|T033|AB|V55.5|ICD9CM|Atten to cystostomy|Atten to cystostomy +C0260765|T033|PT|V55.5|ICD9CM|Attention to cystostomy|Attention to cystostomy +C0260766|T033|AB|V55.6|ICD9CM|Atten to urinostomy NEC|Atten to urinostomy NEC +C0260766|T033|PT|V55.6|ICD9CM|Attention to other artificial opening of urinary tract|Attention to other artificial opening of urinary tract +C0260767|T033|AB|V55.7|ICD9CM|Atten artificial vagina|Atten artificial vagina +C0260767|T033|PT|V55.7|ICD9CM|Attention to artificial vagina|Attention to artificial vagina +C0260768|T033|PT|V55.8|ICD9CM|Attention to other specified artificial opening|Attention to other specified artificial opening +C0260768|T033|AB|V55.8|ICD9CM|Attn to artif open NEC|Attn to artif open NEC +C0740203|T033|PT|V55.9|ICD9CM|Attention to unspecified artificial opening|Attention to unspecified artificial opening +C0740203|T033|AB|V55.9|ICD9CM|Attn to artif open NOS|Attn to artif open NOS +C0375864|T033|HT|V56|ICD9CM|Encounter for dialysis and dialysis catheter care|Encounter for dialysis and dialysis catheter care +C0260771|T033|PT|V56.0|ICD9CM|Encounter for extracorporeal dialysis|Encounter for extracorporeal dialysis +C0260771|T033|AB|V56.0|ICD9CM|Renal dialysis encounter|Renal dialysis encounter +C2910939|T033|PT|V56.1|ICD9CM|Fitting and adjustment of extracorporeal dialysis catheter|Fitting and adjustment of extracorporeal dialysis catheter +C2910939|T033|AB|V56.1|ICD9CM|Ft/adj xtrcorp dial cath|Ft/adj xtrcorp dial cath +C2910940|T033|AB|V56.2|ICD9CM|Fit/adj perit dial cath|Fit/adj perit dial cath +C2910940|T033|PT|V56.2|ICD9CM|Fitting and adjustment of peritoneal dialysis catheter|Fitting and adjustment of peritoneal dialysis catheter +C0878730|T033|HT|V56.3|ICD9CM|Encounter for adequacy testing for dialysis|Encounter for adequacy testing for dialysis +C0878731|T033|PT|V56.31|ICD9CM|Encounter for adequacy testing for hemodialysis|Encounter for adequacy testing for hemodialysis +C0878731|T033|AB|V56.31|ICD9CM|Hemodialysis testing|Hemodialysis testing +C0878732|T033|PT|V56.32|ICD9CM|Encounter for adequacy testing for peritoneal dialysis|Encounter for adequacy testing for peritoneal dialysis +C0878732|T033|AB|V56.32|ICD9CM|Peritoneal dialysis test|Peritoneal dialysis test +C0478581|T033|AB|V56.8|ICD9CM|Dialysis encounter, NEC|Dialysis encounter, NEC +C0478581|T033|PT|V56.8|ICD9CM|Encounter for other dialysis|Encounter for other dialysis +C0007237|T033|HT|V57|ICD9CM|Care involving use of rehabilitation procedures|Care involving use of rehabilitation procedures +C0007233|T033|AB|V57.0|ICD9CM|Breathing exercises|Breathing exercises +C0007233|T033|PT|V57.0|ICD9CM|Care involving breathing exercises|Care involving breathing exercises +C0007235|T033|PT|V57.1|ICD9CM|Care involving other physical therapy|Care involving other physical therapy +C0007235|T033|AB|V57.1|ICD9CM|Physical therapy NEC|Physical therapy NEC +C0007234|T033|HT|V57.2|ICD9CM|Care involving occupational therapy and vocational rehabilitation|Care involving occupational therapy and vocational rehabilitation +C1971612|T033|AB|V57.21|ICD9CM|Encntr occupatnal thrpy|Encntr occupatnal thrpy +C1971612|T033|PT|V57.21|ICD9CM|Encounter for occupational therapy|Encounter for occupational therapy +C0375866|T033|AB|V57.22|ICD9CM|Encntr vocational thrpy|Encntr vocational thrpy +C0375866|T033|PT|V57.22|ICD9CM|Encounter for vocational therapy|Encounter for vocational therapy +C0260774|T033|PT|V57.4|ICD9CM|Care involving orthoptic training|Care involving orthoptic training +C0260774|T033|AB|V57.4|ICD9CM|Orthoptic training|Orthoptic training +C0260775|T033|HT|V57.8|ICD9CM|Care involving other specified rehabilitation procedure|Care involving other specified rehabilitation procedure +C0260776|T033|PT|V57.81|ICD9CM|Care involving orthotic training|Care involving orthotic training +C0260776|T033|AB|V57.81|ICD9CM|Orthotic training|Orthotic training +C0260775|T033|PT|V57.89|ICD9CM|Care involving other specified rehabilitation procedure|Care involving other specified rehabilitation procedure +C0260775|T033|AB|V57.89|ICD9CM|Rehabilitation proc NEC|Rehabilitation proc NEC +C0007237|T033|PT|V57.9|ICD9CM|Care involving unspecified rehabilitation procedure|Care involving unspecified rehabilitation procedure +C0007237|T033|AB|V57.9|ICD9CM|Rehabilitation proc NOS|Rehabilitation proc NOS +C0260777|T033|HT|V58|ICD9CM|Encounter for other and unspecified procedures and aftercare|Encounter for other and unspecified procedures and aftercare +C0260778|T033|PT|V58.0|ICD9CM|Encounter for radiotherapy|Encounter for radiotherapy +C0260778|T033|AB|V58.0|ICD9CM|Radiotherapy encounter|Radiotherapy encounter +C0476658|T033|HT|V58.1|ICD9CM|Encounter for antineoplastic chemotherapy and immunotherapy|Encounter for antineoplastic chemotherapy and immunotherapy +C1561677|T033|AB|V58.11|ICD9CM|Antineoplastic chemo enc|Antineoplastic chemo enc +C1561677|T033|PT|V58.11|ICD9CM|Encounter for antineoplastic chemotherapy|Encounter for antineoplastic chemotherapy +C1561678|T033|PT|V58.12|ICD9CM|Encounter for antineoplastic immunotherapy|Encounter for antineoplastic immunotherapy +C1561678|T033|AB|V58.12|ICD9CM|Immunotherapy encounter|Immunotherapy encounter +C0260780|T033|AB|V58.2|ICD9CM|Blood transfusion, no dx|Blood transfusion, no dx +C0260780|T033|PT|V58.2|ICD9CM|Blood transfusion, without reported diagnosis|Blood transfusion, without reported diagnosis +C1719694|T033|HT|V58.3|ICD9CM|Attention to dressings and sutures|Attention to dressings and sutures +C1719690|T033|AB|V58.30|ICD9CM|Attn rem nonsurg dressng|Attn rem nonsurg dressng +C1719690|T033|PT|V58.30|ICD9CM|Encounter for change or removal of nonsurgical wound dressing|Encounter for change or removal of nonsurgical wound dressing +C1719692|T033|AB|V58.31|ICD9CM|Attn rem surg dressing|Attn rem surg dressing +C1719692|T033|PT|V58.31|ICD9CM|Encounter for change or removal of surgical wound dressing|Encounter for change or removal of surgical wound dressing +C1719693|T033|AB|V58.32|ICD9CM|Attn removal of sutures|Attn removal of sutures +C1719693|T033|PT|V58.32|ICD9CM|Encounter for removal of sutures|Encounter for removal of sutures +C0260782|T033|HT|V58.4|ICD9CM|Other aftercare following surgery|Other aftercare following surgery +C0375867|T033|AB|V58.41|ICD9CM|Encntr plnd po wnd clsr|Encntr plnd po wnd clsr +C0375867|T033|PT|V58.41|ICD9CM|Encounter for planned post-operative wound closure|Encounter for planned post-operative wound closure +C1135298|T033|PT|V58.42|ICD9CM|Aftercare following surgery for neoplasm|Aftercare following surgery for neoplasm +C1135298|T033|AB|V58.42|ICD9CM|Aftercare neoplasm surg|Aftercare neoplasm surg +C1135299|T033|PT|V58.43|ICD9CM|Aftercare following surgery for injury and trauma|Aftercare following surgery for injury and trauma +C1135299|T033|AB|V58.43|ICD9CM|Aftrcare inj/trauma surg|Aftrcare inj/trauma surg +C0375868|T033|PT|V58.49|ICD9CM|Other specified aftercare following surgery|Other specified aftercare following surgery +C0375868|T033|AB|V58.49|ICD9CM|Postop oth specfd aftrcr|Postop oth specfd aftrcr +C0029336|T033|AB|V58.5|ICD9CM|Orthodontics aftercare|Orthodontics aftercare +C0029336|T033|PT|V58.5|ICD9CM|Orthodontics aftercare|Orthodontics aftercare +C0375869|T033|HT|V58.6|ICD9CM|Encounter for long-term (current) drug use|Encounter for long-term (current) drug use +C2911178|T033|PT|V58.61|ICD9CM|Long-term (current) use of anticoagulants|Long-term (current) use of anticoagulants +C2911178|T033|AB|V58.61|ICD9CM|Long-term use anticoagul|Long-term use anticoagul +C2911181|T033|PT|V58.62|ICD9CM|Long-term (current) use of antibiotics|Long-term (current) use of antibiotics +C2911181|T033|AB|V58.62|ICD9CM|Long-term use antibiotic|Long-term use antibiotic +C2911179|T033|AB|V58.63|ICD9CM|Lng use antiplte/thrmbtc|Lng use antiplte/thrmbtc +C2911179|T033|PT|V58.63|ICD9CM|Long-term (current) use of antiplatelet/antithrombotic|Long-term (current) use of antiplatelet/antithrombotic +C2911180|T033|PT|V58.64|ICD9CM|Long-term (current) use of non-steroidal anti-inflammatories (NSAID)|Long-term (current) use of non-steroidal anti-inflammatories (NSAID) +C2911180|T033|AB|V58.64|ICD9CM|Long-term anti-inflamtry|Long-term anti-inflamtry +C1260466|T033|PT|V58.65|ICD9CM|Long-term (current) use of steroids|Long-term (current) use of steroids +C1260466|T033|AB|V58.65|ICD9CM|Long-term use steroids|Long-term use steroids +C2911205|T033|PT|V58.66|ICD9CM|Long-term (current) use of aspirin|Long-term (current) use of aspirin +C2911205|T033|AB|V58.66|ICD9CM|Long-term use of aspirin|Long-term use of aspirin +C1455979|T033|PT|V58.67|ICD9CM|Long-term (current) use of insulin|Long-term (current) use of insulin +C1455979|T033|AB|V58.67|ICD9CM|Long-term use of insulin|Long-term use of insulin +C3161154|T033|AB|V58.68|ICD9CM|Lng term bisphosphonates|Lng term bisphosphonates +C3161154|T033|PT|V58.68|ICD9CM|Long term (current) use of bisphosphonates|Long term (current) use of bisphosphonates +C0375871|T033|PT|V58.69|ICD9CM|Long-term (current) use of other medications|Long-term (current) use of other medications +C0375871|T033|AB|V58.69|ICD9CM|Long-term use meds NEC|Long-term use meds NEC +C1135300|T033|HT|V58.7|ICD9CM|Aftercare following surgery to specified body systems, not elsewhere classified|Aftercare following surgery to specified body systems, not elsewhere classified +C1135301|T033|AB|V58.71|ICD9CM|Aft surg sense org NEC|Aft surg sense org NEC +C1135301|T033|PT|V58.71|ICD9CM|Aftercare following surgery of the sense organs, NEC|Aftercare following surgery of the sense organs, NEC +C1135302|T033|AB|V58.72|ICD9CM|Aftcre surg nerv sys NEC|Aftcre surg nerv sys NEC +C1135302|T033|PT|V58.72|ICD9CM|Aftercare following surgery of the nervous system, NEC|Aftercare following surgery of the nervous system, NEC +C1135303|T033|AB|V58.73|ICD9CM|Aft surg circ syst NEC|Aft surg circ syst NEC +C1135303|T033|PT|V58.73|ICD9CM|Aftercare following surgery of the circulatory system, NEC|Aftercare following surgery of the circulatory system, NEC +C1135304|T033|PT|V58.74|ICD9CM|Aftercare following surgery of the respiratory system, NEC|Aftercare following surgery of the respiratory system, NEC +C1135304|T033|AB|V58.74|ICD9CM|Aftrcre surg respsys NEC|Aftrcre surg respsys NEC +C1135305|T033|AB|V58.75|ICD9CM|Aft oral cav/dig sys NEC|Aft oral cav/dig sys NEC +C1135305|T033|PT|V58.75|ICD9CM|Aftercare following surgery of the teeth, oral cavity and digestive system, NEC|Aftercare following surgery of the teeth, oral cavity and digestive system, NEC +C1135306|T033|PT|V58.76|ICD9CM|Aftercare following surgery of the genitourinary system, NEC|Aftercare following surgery of the genitourinary system, NEC +C1135306|T033|AB|V58.76|ICD9CM|Aftrcre surg GU syst NEC|Aftrcre surg GU syst NEC +C1135307|T033|AB|V58.77|ICD9CM|Aft surg skin/subcu NEC|Aft surg skin/subcu NEC +C1135307|T033|PT|V58.77|ICD9CM|Aftercare following surgery of the skin and subcutaneous tissue, NEC|Aftercare following surgery of the skin and subcutaneous tissue, NEC +C1135308|T033|PT|V58.78|ICD9CM|Aftercare following surgery of the musculoskeletal system, NEC|Aftercare following surgery of the musculoskeletal system, NEC +C1135308|T033|AB|V58.78|ICD9CM|Aftrcre surg MS syst NEC|Aftrcre surg MS syst NEC +C0375872|T033|HT|V58.8|ICD9CM|Encounter for other specified procedures and aftercare|Encounter for other specified procedures and aftercare +C0375873|T033|AB|V58.81|ICD9CM|Fit/adj vascular cathetr|Fit/adj vascular cathetr +C0375873|T033|PT|V58.81|ICD9CM|Fitting and adjustment of vascular catheter|Fitting and adjustment of vascular catheter +C0375874|T033|AB|V58.82|ICD9CM|Fit/adj non-vsc cath NEC|Fit/adj non-vsc cath NEC +C0375874|T033|PT|V58.82|ICD9CM|Fitting and adjustment of nonvascular catheter, NEC|Fitting and adjustment of nonvascular catheter, NEC +C2910943|T033|PT|V58.83|ICD9CM|Encounter for therapeutic drug monitoring|Encounter for therapeutic drug monitoring +C2910943|T033|AB|V58.83|ICD9CM|Therapeutic drug monitor|Therapeutic drug monitor +C0260783|T033|AB|V58.89|ICD9CM|Other specfied aftercare|Other specfied aftercare +C0260783|T033|PT|V58.89|ICD9CM|Other specified aftercare|Other specified aftercare +C0260784|T033|AB|V58.9|ICD9CM|Aftercare NOS|Aftercare NOS +C0260784|T033|PT|V58.9|ICD9CM|Unspecified aftercare|Unspecified aftercare +C1527169|T033|HT|V59|ICD9CM|Donors|Donors +C1313951|T033|HT|V59.0|ICD9CM|Blood donors|Blood donors +C2830121|T033|AB|V59.01|ICD9CM|Blood donor-whole blood|Blood donor-whole blood +C2830121|T033|PT|V59.01|ICD9CM|Blood donors, whole blood|Blood donors, whole blood +C2830119|T033|AB|V59.02|ICD9CM|Blood donor-stem cells|Blood donor-stem cells +C2830119|T033|PT|V59.02|ICD9CM|Blood donors, stem cells|Blood donors, stem cells +C0375878|T033|AB|V59.09|ICD9CM|Blood donor NEC|Blood donor NEC +C0375878|T033|PT|V59.09|ICD9CM|Other blood donors|Other blood donors +C0260785|T033|AB|V59.1|ICD9CM|Skin donor|Skin donor +C0260785|T033|PT|V59.1|ICD9CM|Skin donors|Skin donors +C1313933|T033|AB|V59.2|ICD9CM|Bone donor|Bone donor +C1313933|T033|PT|V59.2|ICD9CM|Bone donors|Bone donors +C1313934|T033|AB|V59.3|ICD9CM|Bone marrow donor|Bone marrow donor +C1313934|T033|PT|V59.3|ICD9CM|Bone marrow donors|Bone marrow donors +C1313935|T033|AB|V59.4|ICD9CM|Kidney donor|Kidney donor +C1313935|T033|PT|V59.4|ICD9CM|Kidney donors|Kidney donors +C0260789|T033|AB|V59.5|ICD9CM|Cornea donor|Cornea donor +C0260789|T033|PT|V59.5|ICD9CM|Cornea donors|Cornea donors +C2830120|T033|AB|V59.6|ICD9CM|Liver donor|Liver donor +C2830120|T033|PT|V59.6|ICD9CM|Liver donors|Liver donors +C1561686|T033|HT|V59.7|ICD9CM|Egg (oocyte) (ovum)|Egg (oocyte) (ovum) +C2910967|T033|PT|V59.70|ICD9CM|Egg (oocyte) (ovum) donor, unspecified|Egg (oocyte) (ovum) donor, unspecified +C2910967|T033|AB|V59.70|ICD9CM|Egg donor NEC|Egg donor NEC +C1561680|T033|PT|V59.71|ICD9CM|Egg (oocyte) (ovum) donor, under age 35, anonymous recipient|Egg (oocyte) (ovum) donor, under age 35, anonymous recipient +C1561680|T033|AB|V59.71|ICD9CM|Egg donor age <35 anon|Egg donor age <35 anon +C2910964|T033|PT|V59.72|ICD9CM|Egg (oocyte) (ovum) donor, under age 35, designated recipient|Egg (oocyte) (ovum) donor, under age 35, designated recipient +C2910964|T033|AB|V59.72|ICD9CM|Egg donor age <35 desig|Egg donor age <35 desig +C1561683|T033|PT|V59.73|ICD9CM|Egg (oocyte) (ovum) donor, age 35 and over, anonymous recipient|Egg (oocyte) (ovum) donor, age 35 and over, anonymous recipient +C1561683|T033|AB|V59.73|ICD9CM|Egg donor age 35+ anon|Egg donor age 35+ anon +C2910966|T033|PT|V59.74|ICD9CM|Egg (oocyte) (ovum) donor, age 35 and over, designated recipient|Egg (oocyte) (ovum) donor, age 35 and over, designated recipient +C2910966|T033|AB|V59.74|ICD9CM|Egg donor age 35+ desig|Egg donor age 35+ desig +C0260790|T033|PT|V59.8|ICD9CM|Donors of other specified organ or tissue|Donors of other specified organ or tissue +C0260790|T033|AB|V59.8|ICD9CM|Org or tissue donor NEC|Org or tissue donor NEC +C0013019|T033|PT|V59.9|ICD9CM|Donors of unspecified organ or tissue|Donors of unspecified organ or tissue +C0013019|T033|AB|V59.9|ICD9CM|Org or tissue donor NOS|Org or tissue donor NOS +C0260791|T033|HT|V60|ICD9CM|Housing, household, and economic circumstances|Housing, household, and economic circumstances +C0178343|T033|HT|V60-V69.99|ICD9CM|PERSONS ENCOUNTERING HEALTH SERVICES IN OTHER CIRCUMSTANCES|PERSONS ENCOUNTERING HEALTH SERVICES IN OTHER CIRCUMSTANCES +C0687129|T033|AB|V60.0|ICD9CM|Lack of housing|Lack of housing +C0687129|T033|PT|V60.0|ICD9CM|Lack of housing|Lack of housing +C0260793|T033|AB|V60.1|ICD9CM|Inadequate housing|Inadequate housing +C0260793|T033|PT|V60.1|ICD9CM|Inadequate housing|Inadequate housing +C0021138|T033|AB|V60.2|ICD9CM|Economic problem|Economic problem +C0021138|T033|PT|V60.2|ICD9CM|Inadequate material resources|Inadequate material resources +C0260794|T033|AB|V60.3|ICD9CM|Person living alone|Person living alone +C0260794|T033|PT|V60.3|ICD9CM|Person living alone|Person living alone +C0260795|T033|AB|V60.4|ICD9CM|No family able to care|No family able to care +C0260795|T033|PT|V60.4|ICD9CM|No other household member able to render care|No other household member able to render care +C0260796|T033|AB|V60.5|ICD9CM|Holiday relief care|Holiday relief care +C0260796|T033|PT|V60.5|ICD9CM|Holiday relief care|Holiday relief care +C0260797|T033|AB|V60.6|ICD9CM|Person in resident inst|Person in resident inst +C0260797|T033|PT|V60.6|ICD9CM|Person living in residential institution|Person living in residential institution +C0260798|T033|HT|V60.8|ICD9CM|Other specified housing or economic circumstances|Other specified housing or economic circumstances +C2712551|T033|AB|V60.81|ICD9CM|Foster care (status)|Foster care (status) +C2712551|T033|PT|V60.81|ICD9CM|Foster care (status)|Foster care (status) +C2712997|T033|AB|V60.89|ICD9CM|Housing/econo circum NEC|Housing/econo circum NEC +C2712997|T033|PT|V60.89|ICD9CM|Other specified housing or economic circumstances|Other specified housing or economic circumstances +C0260799|T033|AB|V60.9|ICD9CM|Housing/econo circum NOS|Housing/econo circum NOS +C0260799|T033|PT|V60.9|ICD9CM|Unspecified housing or economic circumstance|Unspecified housing or economic circumstance +C0481797|T033|HT|V61|ICD9CM|Other family circumstances|Other family circumstances +C0481798|T033|HT|V61.0|ICD9CM|Family disruption|Family disruption +C2349886|T033|PT|V61.01|ICD9CM|Family disruption due to family member on military deployment|Family disruption due to family member on military deployment +C2349886|T033|AB|V61.01|ICD9CM|Fmily dsrpt-fam military|Fmily dsrpt-fam military +C2349888|T033|PT|V61.02|ICD9CM|Family disruption due to return of family member from military deployment|Family disruption due to return of family member from military deployment +C2349888|T033|AB|V61.02|ICD9CM|Fmily dsrpt-ret military|Fmily dsrpt-ret military +C2349890|T033|PT|V61.03|ICD9CM|Family disruption due to divorce or legal separation|Family disruption due to divorce or legal separation +C2349890|T033|AB|V61.03|ICD9CM|Fmily dsrpt- divorce/sep|Fmily dsrpt- divorce/sep +C2349891|T033|PT|V61.04|ICD9CM|Family disruption due to parent-child estrangement|Family disruption due to parent-child estrangement +C2349891|T033|AB|V61.04|ICD9CM|Family dsrpt-estrangmemt|Family dsrpt-estrangmemt +C2349892|T033|PT|V61.05|ICD9CM|Family disruption due to child in welfare custody|Family disruption due to child in welfare custody +C2349892|T033|AB|V61.05|ICD9CM|Famly dsrpt-chld custody|Famly dsrpt-chld custody +C2349893|T033|PT|V61.06|ICD9CM|Family disruption due to child in foster care or in care of non-parental family member|Family disruption due to child in foster care or in care of non-parental family member +C2349893|T033|AB|V61.06|ICD9CM|Family dsrpt-foster care|Family dsrpt-foster care +C2712552|T033|PT|V61.07|ICD9CM|Family disruption due to death of family member|Family disruption due to death of family member +C2712552|T033|AB|V61.07|ICD9CM|Family dsrpt-death membr|Family dsrpt-death membr +C2712553|T033|PT|V61.08|ICD9CM|Family disruption due to other extended absence of family member|Family disruption due to other extended absence of family member +C2712553|T033|AB|V61.08|ICD9CM|Fmly dsrp-fam absnce NEC|Fmly dsrp-fam absnce NEC +C2349894|T033|AB|V61.09|ICD9CM|Family disruption NEC|Family disruption NEC +C2349894|T033|PT|V61.09|ICD9CM|Other family disruption|Other family disruption +C0375879|T033|HT|V61.1|ICD9CM|Counseling for marital and partner problems|Counseling for marital and partner problems +C0375880|T033|AB|V61.10|ICD9CM|Consl partner prob|Consl partner prob +C0375880|T033|PT|V61.10|ICD9CM|Counseling for marital and partner problems, unspecified|Counseling for marital and partner problems, unspecified +C2911077|T033|AB|V61.11|ICD9CM|Cnsl victm partner abuse|Cnsl victm partner abuse +C2911077|T033|PT|V61.11|ICD9CM|Counseling for victim of spousal and partner abuse|Counseling for victim of spousal and partner abuse +C0795786|T033|AB|V61.12|ICD9CM|Cnsl perp partner abuse|Cnsl perp partner abuse +C0795786|T033|PT|V61.12|ICD9CM|Counseling for perpetrator of spousal and partner abuse|Counseling for perpetrator of spousal and partner abuse +C0700498|T033|HT|V61.2|ICD9CM|Parent-child problems|Parent-child problems +C0375882|T033|AB|V61.20|ICD9CM|Cnsl prnt-chld prob NOS|Cnsl prnt-chld prob NOS +C0375882|T033|PT|V61.20|ICD9CM|Counseling for parent-child problem, unspecified|Counseling for parent-child problem, unspecified +C0375883|T033|AB|V61.21|ICD9CM|Cnsl victim child abuse|Cnsl victim child abuse +C0375883|T033|PT|V61.21|ICD9CM|Counseling for victim of child abuse|Counseling for victim of child abuse +C0795786|T033|AB|V61.22|ICD9CM|Cnsl perp parent chld ab|Cnsl perp parent chld ab +C0795786|T033|PT|V61.22|ICD9CM|Counseling for perpetrator of spousal and partner abuse|Counseling for perpetrator of spousal and partner abuse +C2712554|T033|AB|V61.23|ICD9CM|Cnsl prnt-biol chld prob|Cnsl prnt-biol chld prob +C2712554|T033|PT|V61.23|ICD9CM|Counseling for parent-biological child problem|Counseling for parent-biological child problem +C2712555|T033|AB|V61.24|ICD9CM|Cnsl prnt-adpt chld prob|Cnsl prnt-adpt chld prob +C2712555|T033|PT|V61.24|ICD9CM|Counseling for parent-adopted child problem|Counseling for parent-adopted child problem +C2712556|T033|AB|V61.25|ICD9CM|Cnsl prnt-fstr chld prob|Cnsl prnt-fstr chld prob +C2712556|T033|PT|V61.25|ICD9CM|Counseling for parent (guardian)-foster child problem|Counseling for parent (guardian)-foster child problem +C0029699|T033|AB|V61.29|ICD9CM|Oth parent-child problem|Oth parent-child problem +C0029699|T033|PT|V61.29|ICD9CM|Other parent-child problems|Other parent-child problems +C0260801|T033|AB|V61.3|ICD9CM|Problem w aged parent|Problem w aged parent +C0260801|T033|PT|V61.3|ICD9CM|Problems with aged parents or in-laws|Problems with aged parents or in-laws +C0481514|T033|HT|V61.4|ICD9CM|Health problems within family|Health problems within family +C0476560|T033|AB|V61.41|ICD9CM|Alcoholism in family|Alcoholism in family +C0476560|T033|PT|V61.41|ICD9CM|Alcoholism in family|Alcoholism in family +C2712557|T033|PT|V61.42|ICD9CM|Substance abuse in family|Substance abuse in family +C2712557|T033|AB|V61.42|ICD9CM|Substance abuse-family|Substance abuse-family +C0260804|T033|AB|V61.49|ICD9CM|Family health probl NEC|Family health probl NEC +C0260804|T033|PT|V61.49|ICD9CM|Other health problems within the family|Other health problems within the family +C0700322|T033|AB|V61.5|ICD9CM|Multiparity|Multiparity +C0700322|T033|PT|V61.5|ICD9CM|Multiparity|Multiparity +C1313860|T033|PT|V61.6|ICD9CM|Illegitimacy or illegitimate pregnancy|Illegitimacy or illegitimate pregnancy +C1313860|T033|AB|V61.6|ICD9CM|Illegitimate pregnancy|Illegitimate pregnancy +C0029865|T033|PT|V61.7|ICD9CM|Other unwanted pregnancy|Other unwanted pregnancy +C0029865|T033|AB|V61.7|ICD9CM|Unwanted pregnancy NEC|Unwanted pregnancy NEC +C0481799|T033|AB|V61.8|ICD9CM|Family circumstances NEC|Family circumstances NEC +C0481799|T033|PT|V61.8|ICD9CM|Other specified family circumstances|Other specified family circumstances +C0029795|T033|AB|V61.9|ICD9CM|Family circumstance NOS|Family circumstance NOS +C0029795|T033|PT|V61.9|ICD9CM|Unspecified family circumstance|Unspecified family circumstance +C0260805|T033|HT|V62|ICD9CM|Other psychosocial circumstances|Other psychosocial circumstances +C0496682|T033|AB|V62.0|ICD9CM|Unemployment|Unemployment +C0496682|T033|PT|V62.0|ICD9CM|Unemployment|Unemployment +C0260806|T033|AB|V62.1|ICD9CM|Adverse eff-work environ|Adverse eff-work environ +C0260806|T033|PT|V62.1|ICD9CM|Adverse effects of work environment|Adverse effects of work environment +C0029680|T033|HT|V62.2|ICD9CM|Other occupational circumstances or maladjustment|Other occupational circumstances or maladjustment +C2349895|T033|AB|V62.21|ICD9CM|Hx military deployment|Hx military deployment +C2349895|T033|PT|V62.21|ICD9CM|Personal current military deployment status|Personal current military deployment status +C2349897|T033|AB|V62.22|ICD9CM|Hx retrn military deploy|Hx retrn military deploy +C2349897|T033|PT|V62.22|ICD9CM|Personal history of return from military deployment|Personal history of return from military deployment +C0029680|T033|AB|V62.29|ICD9CM|Occupationl circumst NEC|Occupationl circumst NEC +C0029680|T033|PT|V62.29|ICD9CM|Other occupational circumstances or maladjustment|Other occupational circumstances or maladjustment +C0013654|T033|AB|V62.3|ICD9CM|Educational circumstance|Educational circumstance +C0013654|T033|PT|V62.3|ICD9CM|Educational circumstances|Educational circumstances +C0677639|T033|AB|V62.4|ICD9CM|Social maladjustment|Social maladjustment +C0677639|T033|PT|V62.4|ICD9CM|Social maladjustment|Social maladjustment +C0260807|T033|AB|V62.5|ICD9CM|Legal circumstances|Legal circumstances +C0260807|T033|PT|V62.5|ICD9CM|Legal circumstances|Legal circumstances +C0080099|T033|AB|V62.6|ICD9CM|Refusal of treatment|Refusal of treatment +C0080099|T033|PT|V62.6|ICD9CM|Refusal of treatment for reasons of religion or conscience|Refusal of treatment for reasons of religion or conscience +C0302431|T033|HT|V62.8|ICD9CM|Other psychological or physical stress, not elsewhere classified|Other psychological or physical stress, not elsewhere classified +C0869289|T033|AB|V62.81|ICD9CM|Interpersonal probl NEC|Interpersonal probl NEC +C0869289|T033|PT|V62.81|ICD9CM|Interpersonal problems, not elsewhere classified|Interpersonal problems, not elsewhere classified +C0684255|T033|AB|V62.82|ICD9CM|Bereavement, uncomplicat|Bereavement, uncomplicat +C0684255|T033|PT|V62.82|ICD9CM|Bereavement, uncomplicated|Bereavement, uncomplicated +C0375885|T033|AB|V62.83|ICD9CM|Cnsl perp phys/sex abuse|Cnsl perp phys/sex abuse +C0375885|T033|PT|V62.83|ICD9CM|Counseling for perpetrator of physical/sexual abuse|Counseling for perpetrator of physical/sexual abuse +C0424000|T033|AB|V62.84|ICD9CM|Suicidal ideation|Suicidal ideation +C0424000|T033|PT|V62.84|ICD9CM|Suicidal ideation|Suicidal ideation +C0455204|T033|AB|V62.85|ICD9CM|Homicidal ideation|Homicidal ideation +C0455204|T033|PT|V62.85|ICD9CM|Homicidal ideation|Homicidal ideation +C0302431|T033|PT|V62.89|ICD9CM|Other psychological or physical stress, not elsewhere classified|Other psychological or physical stress, not elsewhere classified +C0302431|T033|AB|V62.89|ICD9CM|Psychological stress NEC|Psychological stress NEC +C0260808|T033|AB|V62.9|ICD9CM|Psychosocial circum NOS|Psychosocial circum NOS +C0260808|T033|PT|V62.9|ICD9CM|Unspecified psychosocial circumstance|Unspecified psychosocial circumstance +C0260809|T033|HT|V63|ICD9CM|Unavailability of other medical facilities for care|Unavailability of other medical facilities for care +C0260810|T033|AB|V63.0|ICD9CM|Home remote from hospitl|Home remote from hospitl +C0260810|T033|PT|V63.0|ICD9CM|Residence remote from hospital or other health care facility|Residence remote from hospital or other health care facility +C0420585|T033|PT|V63.1|ICD9CM|Medical services in home not available|Medical services in home not available +C0420585|T033|AB|V63.1|ICD9CM|No medical serv in home|No medical serv in home +C0260812|T033|PT|V63.2|ICD9CM|Person awaiting admission to adequate facility elsewhere|Person awaiting admission to adequate facility elsewhere +C0260812|T033|AB|V63.2|ICD9CM|Wait adm to oth facility|Wait adm to oth facility +C0260813|T033|AB|V63.8|ICD9CM|No med facilities NEC|No med facilities NEC +C0260813|T033|PT|V63.8|ICD9CM|Other specified reasons for unavailability of medical facilities|Other specified reasons for unavailability of medical facilities +C0260814|T033|AB|V63.9|ICD9CM|No med facilities NOS|No med facilities NOS +C0260814|T033|PT|V63.9|ICD9CM|Unspecified reason for unavailability of medical facilities|Unspecified reason for unavailability of medical facilities +C0260815|T033|HT|V64|ICD9CM|Persons encountering health services for specific procedures, not carried out|Persons encountering health services for specific procedures, not carried out +C2919035|T033|HT|V64.0|ICD9CM|Vaccination not carried out|Vaccination not carried out +C0476665|T033|AB|V64.00|ICD9CM|No vaccination NOS|No vaccination NOS +C0476665|T033|PT|V64.00|ICD9CM|Vaccination not carried out, unspecified reason|Vaccination not carried out, unspecified reason +C2910670|T033|AB|V64.01|ICD9CM|No vaccin-acute illness|No vaccin-acute illness +C2910670|T033|PT|V64.01|ICD9CM|Vaccination not carried out because of acute illness|Vaccination not carried out because of acute illness +C2910671|T033|AB|V64.02|ICD9CM|No vaccin-chronc illness|No vaccin-chronc illness +C2910671|T033|PT|V64.02|ICD9CM|Vaccination not carried out because of chronic illness or condition|Vaccination not carried out because of chronic illness or condition +C2910672|T033|AB|V64.03|ICD9CM|No vaccin-immune comp|No vaccin-immune comp +C2910672|T033|PT|V64.03|ICD9CM|Vaccination not carried out because of immune compromised state|Vaccination not carried out because of immune compromised state +C1561694|T033|AB|V64.04|ICD9CM|No vaccin-allergy to vac|No vaccin-allergy to vac +C1561694|T033|PT|V64.04|ICD9CM|Vaccination not carried out because of allergy to vaccine or component|Vaccination not carried out because of allergy to vaccine or component +C1561695|T033|AB|V64.05|ICD9CM|No vaccin-caregiv refuse|No vaccin-caregiv refuse +C1561695|T033|PT|V64.05|ICD9CM|Vaccination not carried out because of caregiver refusal|Vaccination not carried out because of caregiver refusal +C1561696|T033|AB|V64.06|ICD9CM|No vaccination-pt refuse|No vaccination-pt refuse +C1561696|T033|PT|V64.06|ICD9CM|Vaccination not carried out because of patient refusal|Vaccination not carried out because of patient refusal +C1561697|T033|AB|V64.07|ICD9CM|No vaccination-religion|No vaccination-religion +C1561697|T033|PT|V64.07|ICD9CM|Vaccination not carried out for religious reasons|Vaccination not carried out for religious reasons +C1561698|T033|AB|V64.08|ICD9CM|No vaccin-prev disease|No vaccin-prev disease +C1561698|T033|PT|V64.08|ICD9CM|Vaccination not carried out because patient had disease being vaccinated against|Vaccination not carried out because patient had disease being vaccinated against +C0476664|T033|AB|V64.09|ICD9CM|No vaccination NEC|No vaccination NEC +C0476664|T033|PT|V64.09|ICD9CM|Vaccination not carried out for other reason|Vaccination not carried out for other reason +C0260817|T033|AB|V64.1|ICD9CM|No proc/contraindication|No proc/contraindication +C0260817|T033|PT|V64.1|ICD9CM|Surgical or other procedure not carried out because of contraindication|Surgical or other procedure not carried out because of contraindication +C0260818|T033|AB|V64.2|ICD9CM|No proc/patient decision|No proc/patient decision +C0260818|T033|PT|V64.2|ICD9CM|Surgical or other procedure not carried out because of patient's decision|Surgical or other procedure not carried out because of patient's decision +C0260819|T033|AB|V64.3|ICD9CM|No proc for reasons NEC|No proc for reasons NEC +C0260819|T033|PT|V64.3|ICD9CM|Procedure not carried out for other reasons|Procedure not carried out for other reasons +C0490030|T033|HT|V64.4|ICD9CM|Closed surgical procedure converted to open procedure|Closed surgical procedure converted to open procedure +C1260467|T033|AB|V64.41|ICD9CM|Lap surg convert to open|Lap surg convert to open +C1260467|T033|PT|V64.41|ICD9CM|Laparoscopic surgical procedure converted to open procedure|Laparoscopic surgical procedure converted to open procedure +C1260468|T033|AB|V64.42|ICD9CM|Thoracoscop conv to open|Thoracoscop conv to open +C1260468|T033|PT|V64.42|ICD9CM|Thoracoscopic surgical procedure converted to open procedure|Thoracoscopic surgical procedure converted to open procedure +C1260469|T033|AB|V64.43|ICD9CM|Arthroscopc conv to open|Arthroscopc conv to open +C1260469|T033|PT|V64.43|ICD9CM|Arthroscopic surgical procedure converted to open procedure|Arthroscopic surgical procedure converted to open procedure +C0260820|T033|HT|V65|ICD9CM|Other persons seeking consultation|Other persons seeking consultation +C0260821|T033|PT|V65.0|ICD9CM|Healthy person accompanying sick person|Healthy person accompanying sick person +C0260821|T033|AB|V65.0|ICD9CM|Healthy person w sick|Healthy person w sick +C0260822|T033|HT|V65.1|ICD9CM|Person consulting on behalf of another person|Person consulting on behalf of another person +C2911138|T033|AB|V65.11|ICD9CM|Ped pre-brth vst-parent|Ped pre-brth vst-parent +C2911138|T033|PT|V65.11|ICD9CM|Pediatric pre-birth visit for expectant parent(s)|Pediatric pre-birth visit for expectant parent(s) +C0496703|T033|AB|V65.2|ICD9CM|Person feigning illness|Person feigning illness +C0496703|T033|PT|V65.2|ICD9CM|Person feigning illness|Person feigning illness +C0260823|T033|AB|V65.3|ICD9CM|Dietary surveil/counsel|Dietary surveil/counsel +C0260823|T033|PT|V65.3|ICD9CM|Dietary surveillance and counseling|Dietary surveillance and counseling +C0869481|T033|HT|V65.4|ICD9CM|Other counseling, not elsewhere classified|Other counseling, not elsewhere classified +C0740209|T033|AB|V65.40|ICD9CM|Counseling NOS|Counseling NOS +C0740209|T033|PT|V65.40|ICD9CM|Counseling NOS|Counseling NOS +C0375886|T033|AB|V65.41|ICD9CM|Exercise counseling|Exercise counseling +C0375886|T033|PT|V65.41|ICD9CM|Exercise counseling|Exercise counseling +C0375888|T033|AB|V65.43|ICD9CM|Counseling injry prevent|Counseling injry prevent +C0375888|T033|PT|V65.43|ICD9CM|Counseling on injury prevention|Counseling on injury prevention +C0476681|T033|AB|V65.44|ICD9CM|Hiv counseling|Hiv counseling +C0476681|T033|PT|V65.44|ICD9CM|Human immunodeficiency virus (HIV) counseling|Human immunodeficiency virus (HIV) counseling +C0375890|T033|AB|V65.45|ICD9CM|Consln ot sex trnsmt dis|Consln ot sex trnsmt dis +C0375890|T033|PT|V65.45|ICD9CM|Counseling on other sexually transmitted diseases|Counseling on other sexually transmitted diseases +C0348773|T033|AB|V65.49|ICD9CM|Other specfd counseling|Other specfd counseling +C0348773|T033|PT|V65.49|ICD9CM|Other specified counseling|Other specified counseling +C0851311|T033|AB|V65.5|ICD9CM|Persn w feared complaint|Persn w feared complaint +C0851311|T033|PT|V65.5|ICD9CM|Person with feared complaint in whom no diagnosis was made|Person with feared complaint in whom no diagnosis was made +C0260825|T033|PT|V65.8|ICD9CM|Other reasons for seeking consultation|Other reasons for seeking consultation +C0260825|T033|AB|V65.8|ICD9CM|Reason for consult NEC|Reason for consult NEC +C0041880|T033|AB|V65.9|ICD9CM|Reason for consult NOS|Reason for consult NOS +C0041880|T033|PT|V65.9|ICD9CM|Unspecified reason for consultation|Unspecified reason for consultation +C0375891|T033|HT|V66|ICD9CM|Convalescence and palliative care|Convalescence and palliative care +C0260826|T033|PT|V66.0|ICD9CM|Convalescence following surgery|Convalescence following surgery +C0260826|T033|AB|V66.0|ICD9CM|Surgical convalescence|Surgical convalescence +C0260827|T033|PT|V66.1|ICD9CM|Convalescence following radiotherapy|Convalescence following radiotherapy +C0260827|T033|AB|V66.1|ICD9CM|Radiotherapy convalescen|Radiotherapy convalescen +C0260828|T033|AB|V66.2|ICD9CM|Chemotherapy convalescen|Chemotherapy convalescen +C0260828|T033|PT|V66.2|ICD9CM|Convalescence following chemotherapy|Convalescence following chemotherapy +C0481522|T033|PT|V66.3|ICD9CM|Convalescence following psychotherapy and other treatment for mental disorder|Convalescence following psychotherapy and other treatment for mental disorder +C0481522|T033|AB|V66.3|ICD9CM|Mental dis convalescence|Mental dis convalescence +C0260830|T033|PT|V66.4|ICD9CM|Convalescence following treatment of fracture|Convalescence following treatment of fracture +C0260830|T033|AB|V66.4|ICD9CM|Fracture treatmnt conval|Fracture treatmnt conval +C0009941|T033|PT|V66.5|ICD9CM|Convalescence following other treatment|Convalescence following other treatment +C0009941|T033|AB|V66.5|ICD9CM|Convalescence NEC|Convalescence NEC +C0375892|T033|PT|V66.7|ICD9CM|Encounter for palliative care|Encounter for palliative care +C0375892|T033|AB|V66.7|ICD9CM|Encountr palliative care|Encountr palliative care +C0677614|T033|AB|V66.9|ICD9CM|Convalescence NOS|Convalescence NOS +C0677614|T033|PT|V66.9|ICD9CM|Unspecified convalescence|Unspecified convalescence +C0260832|T033|HT|V67|ICD9CM|Follow-up examination|Follow-up examination +C0260833|T033|HT|V67.0|ICD9CM|Follow-up examination following surgery|Follow-up examination following surgery +C0878734|T033|PT|V67.00|ICD9CM|Follow-up examination, following surgery, unspecified|Follow-up examination, following surgery, unspecified +C0878734|T033|AB|V67.00|ICD9CM|Follow-up surgery NOS|Follow-up surgery NOS +C0878735|T033|AB|V67.01|ICD9CM|Follow-up vag pap smear|Follow-up vag pap smear +C0878735|T033|PT|V67.01|ICD9CM|Following surgery, follow-up vaginal pap smear|Following surgery, follow-up vaginal pap smear +C0878736|T033|PT|V67.09|ICD9CM|Follow-up examination, following other surgery|Follow-up examination, following other surgery +C0878736|T033|AB|V67.09|ICD9CM|Follow-up surgery NEC|Follow-up surgery NEC +C0260834|T033|PT|V67.1|ICD9CM|Follow-up examination, following radiotherapy|Follow-up examination, following radiotherapy +C0260834|T033|AB|V67.1|ICD9CM|Radiotherapy follow-up|Radiotherapy follow-up +C1261324|T033|AB|V67.2|ICD9CM|Chemotherapy follow-up|Chemotherapy follow-up +C1261324|T033|PT|V67.2|ICD9CM|Follow-up examination, following chemotherapy|Follow-up examination, following chemotherapy +C0260836|T033|PT|V67.3|ICD9CM|Follow-up examination, following psychotherapy and other treatment for mental disorder|Follow-up examination, following psychotherapy and other treatment for mental disorder +C0260836|T033|AB|V67.3|ICD9CM|Psychiatric follow-up|Psychiatric follow-up +C0481525|T033|PT|V67.4|ICD9CM|Follow-up examination, following treatment of healed fracture|Follow-up examination, following treatment of healed fracture +C0481525|T033|AB|V67.4|ICD9CM|FU exam treatd healed fx|FU exam treatd healed fx +C0260838|T033|HT|V67.5|ICD9CM|Follow-up examination following other treatment|Follow-up examination following other treatment +C0302433|T033|AB|V67.51|ICD9CM|High-risk rx NEC exam|High-risk rx NEC exam +C0260840|T033|AB|V67.59|ICD9CM|Follow-up exam NEC|Follow-up exam NEC +C0260840|T033|PT|V67.59|ICD9CM|Other follow-up examination|Other follow-up examination +C0260841|T033|AB|V67.6|ICD9CM|Comb treatment follow-up|Comb treatment follow-up +C0260841|T033|PT|V67.6|ICD9CM|Follow-up examination, following combined treatment|Follow-up examination, following combined treatment +C0260832|T033|AB|V67.9|ICD9CM|Follow-up exam NOS|Follow-up exam NOS +C0260832|T033|PT|V67.9|ICD9CM|Unspecified follow-up examination|Unspecified follow-up examination +C0260843|T033|HT|V68|ICD9CM|Encounters for administrative purposes|Encounters for administrative purposes +C0260844|T033|HT|V68.0|ICD9CM|Issue of medical certificates|Issue of medical certificates +C1955613|T033|AB|V68.01|ICD9CM|Disability examination|Disability examination +C1955613|T033|PT|V68.01|ICD9CM|Disability examination|Disability examination +C2910517|T033|AB|V68.09|ICD9CM|Issue of med certif NEC|Issue of med certif NEC +C2910517|T033|PT|V68.09|ICD9CM|Other issue of medical certificates|Other issue of medical certificates +C0260845|T033|PT|V68.1|ICD9CM|Issue of repeat prescriptions|Issue of repeat prescriptions +C0260845|T033|AB|V68.1|ICD9CM|Issue repeat prescript|Issue repeat prescript +C0260846|T033|AB|V68.2|ICD9CM|Request expert evidence|Request expert evidence +C0260846|T033|PT|V68.2|ICD9CM|Request for expert evidence|Request for expert evidence +C0260847|T033|HT|V68.8|ICD9CM|Encounters for other specified administrative purpose|Encounters for other specified administrative purpose +C0260848|T033|PT|V68.81|ICD9CM|Referral of patient without examination or treatment|Referral of patient without examination or treatment +C0260848|T033|AB|V68.81|ICD9CM|Referral-no exam/treat|Referral-no exam/treat +C0260847|T033|AB|V68.89|ICD9CM|Administrtve encount NEC|Administrtve encount NEC +C0260847|T033|PT|V68.89|ICD9CM|Encounters for other specified administrative purpose|Encounters for other specified administrative purpose +C0260849|T033|AB|V68.9|ICD9CM|Administrtve encount NOS|Administrtve encount NOS +C0260849|T033|PT|V68.9|ICD9CM|Encounters for unspecified administrative purpose|Encounters for unspecified administrative purpose +C0348087|T033|HT|V69|ICD9CM|Problems related to lifestyle|Problems related to lifestyle +C1306891|T033|PT|V69.0|ICD9CM|Lack of physical exercise|Lack of physical exercise +C1306891|T033|AB|V69.0|ICD9CM|Lack of physical exercse|Lack of physical exercse +C3537062|T033|PT|V69.1|ICD9CM|Inappropriate diet and eating habits|Inappropriate diet and eating habits +C3537062|T033|AB|V69.1|ICD9CM|Inapprt diet eat habits|Inapprt diet eat habits +C0348089|T033|PT|V69.2|ICD9CM|High-risk sexual behavior|High-risk sexual behavior +C0348089|T033|AB|V69.2|ICD9CM|High-risk sexual behavr|High-risk sexual behavr +C0348090|T033|AB|V69.3|ICD9CM|Gambling and betting|Gambling and betting +C0348090|T033|PT|V69.3|ICD9CM|Gambling and betting|Gambling and betting +C1455980|T033|AB|V69.4|ICD9CM|Lack of adequate sleep|Lack of adequate sleep +C1455980|T033|PT|V69.4|ICD9CM|Lack of adequate sleep|Lack of adequate sleep +C4317290|T033|AB|V69.5|ICD9CM|Behav insomnia-childhood|Behav insomnia-childhood +C4317290|T033|PT|V69.5|ICD9CM|Behavioral insomnia of childhood|Behavioral insomnia of childhood +C0348774|T033|AB|V69.8|ICD9CM|Oth prblms rltd lfstyle|Oth prblms rltd lfstyle +C0348774|T033|PT|V69.8|ICD9CM|Other problems related to lifestyle|Other problems related to lifestyle +C0348775|T033|AB|V69.9|ICD9CM|Prblm rltd lfstyle NOS|Prblm rltd lfstyle NOS +C0348775|T033|PT|V69.9|ICD9CM|Unspecified problem related to lifestyle|Unspecified problem related to lifestyle +C0260860|T033|HT|V70|ICD9CM|General medical examination|General medical examination +C0260851|T033|PT|V70.0|ICD9CM|Routine general medical examination at a health care facility|Routine general medical examination at a health care facility +C0260851|T033|AB|V70.0|ICD9CM|Routine medical exam|Routine medical exam +C0260852|T033|PT|V70.1|ICD9CM|General psychiatric examination, requested by the authority|General psychiatric examination, requested by the authority +C0260852|T033|AB|V70.1|ICD9CM|Psych exam-authority req|Psych exam-authority req +C0302434|T033|AB|V70.2|ICD9CM|Gen psychiatric exam NEC|Gen psychiatric exam NEC +C0302434|T033|PT|V70.2|ICD9CM|General psychiatric examination, other and unspecified|General psychiatric examination, other and unspecified +C0481845|T033|AB|V70.3|ICD9CM|Med exam NEC-admin purp|Med exam NEC-admin purp +C0481845|T033|PT|V70.3|ICD9CM|Other general medical examination for administrative purposes|Other general medical examination for administrative purposes +C0260855|T033|AB|V70.4|ICD9CM|Exam-medicolegal reasons|Exam-medicolegal reasons +C0260855|T033|PT|V70.4|ICD9CM|Examination for medicolegal reasons|Examination for medicolegal reasons +C0260857|T033|AB|V70.6|ICD9CM|Health exam-pop survey|Health exam-pop survey +C0260857|T033|PT|V70.6|ICD9CM|Health examination in population surveys|Health examination in population surveys +C0260859|T033|AB|V70.8|ICD9CM|General medical exam NEC|General medical exam NEC +C0260859|T033|PT|V70.8|ICD9CM|Other specified general medical examinations|Other specified general medical examinations +C0260860|T033|AB|V70.9|ICD9CM|General medical exam NOS|General medical exam NOS +C0260860|T033|PT|V70.9|ICD9CM|Unspecified general medical examination|Unspecified general medical examination +C0375893|T033|HT|V71|ICD9CM|Observation and evaluation for suspected conditions not found|Observation and evaluation for suspected conditions not found +C0260862|T033|HT|V71.0|ICD9CM|Observation for suspected mental condition|Observation for suspected mental condition +C0260863|T033|PT|V71.01|ICD9CM|Observation for adult antisocial behavior|Observation for adult antisocial behavior +C0260863|T033|AB|V71.01|ICD9CM|Obsv-adult antisoc behav|Obsv-adult antisoc behav +C0260864|T033|PT|V71.02|ICD9CM|Observation for childhood or adolescent antisocial behavior|Observation for childhood or adolescent antisocial behavior +C0260864|T033|AB|V71.02|ICD9CM|Obsv-adolesc antisoc beh|Obsv-adolesc antisoc beh +C0260865|T033|AB|V71.09|ICD9CM|Observ-mental cond NEC|Observ-mental cond NEC +C0260865|T033|PT|V71.09|ICD9CM|Observation for other suspected mental condition|Observation for other suspected mental condition +C0260866|T033|PT|V71.1|ICD9CM|Observation for suspected malignant neoplasm|Observation for suspected malignant neoplasm +C0260866|T033|AB|V71.1|ICD9CM|Obsv-suspct mal neoplasm|Obsv-suspct mal neoplasm +C0260867|T033|AB|V71.2|ICD9CM|Observ-suspect TB|Observ-suspect TB +C0260867|T033|PT|V71.2|ICD9CM|Observation for suspected tuberculosis|Observation for suspected tuberculosis +C0260868|T033|AB|V71.3|ICD9CM|Observ-work accident|Observ-work accident +C0260868|T033|PT|V71.3|ICD9CM|Observation following accident at work|Observation following accident at work +C0260869|T033|AB|V71.4|ICD9CM|Observ-accident NEC|Observ-accident NEC +C0260869|T033|PT|V71.4|ICD9CM|Observation following other accident|Observation following other accident +C0260870|T033|AB|V71.5|ICD9CM|Observ following rape|Observ following rape +C0260870|T033|PT|V71.5|ICD9CM|Observation following alleged rape or seduction|Observation following alleged rape or seduction +C0260871|T033|AB|V71.6|ICD9CM|Observ-inflicted inj NEC|Observ-inflicted inj NEC +C0260871|T033|PT|V71.6|ICD9CM|Observation following other inflicted injury|Observation following other inflicted injury +C0260872|T033|AB|V71.7|ICD9CM|Obs-susp cardiovasc dis|Obs-susp cardiovasc dis +C0260872|T033|PT|V71.7|ICD9CM|Observation for suspected cardiovascular disease|Observation for suspected cardiovascular disease +C0481850|T033|HT|V71.8|ICD9CM|Observation and evaluation for other specified suspected conditions|Observation and evaluation for other specified suspected conditions +C1135309|T033|AB|V71.82|ICD9CM|Obs/eval sus exp anthrax|Obs/eval sus exp anthrax +C1135309|T033|PT|V71.82|ICD9CM|Observation and evaluation for suspected exposure to anthrax|Observation and evaluation for suspected exposure to anthrax +C1135310|T033|AB|V71.83|ICD9CM|Obs/eval exp biol NEC|Obs/eval exp biol NEC +C1135310|T033|PT|V71.83|ICD9CM|Observation and evaluation for suspected exposure to other biological agent|Observation and evaluation for suspected exposure to other biological agent +C0481850|T033|AB|V71.89|ICD9CM|Observ-suspect cond NEC|Observ-suspect cond NEC +C0481850|T033|PT|V71.89|ICD9CM|Observation and evaluation for other specified suspected conditions|Observation and evaluation for other specified suspected conditions +C0490065|T033|AB|V71.9|ICD9CM|Observ-suspect cond NOS|Observ-suspect cond NOS +C0490065|T033|PT|V71.9|ICD9CM|Observation for unspecified suspected condition|Observation for unspecified suspected condition +C0260875|T033|HT|V72|ICD9CM|Special investigations and examinations|Special investigations and examinations +C1961134|T033|PT|V72.0|ICD9CM|Examination of eyes and vision|Examination of eyes and vision +C1961134|T033|AB|V72.0|ICD9CM|Eye & vision examination|Eye & vision examination +C0015222|T033|HT|V72.1|ICD9CM|Examination of ears and hearing|Examination of ears and hearing +C1719698|T033|PT|V72.11|ICD9CM|Encounter for hearing examination following failed hearing screening|Encounter for hearing examination following failed hearing screening +C1719698|T033|AB|V72.11|ICD9CM|Hearing exam-fail screen|Hearing exam-fail screen +C1955615|T033|PT|V72.12|ICD9CM|Encounter for hearing conservation and treatment|Encounter for hearing conservation and treatment +C1955615|T033|AB|V72.12|ICD9CM|Hearing conservatn/trtmt|Hearing conservatn/trtmt +C0490066|T033|AB|V72.2|ICD9CM|Dental examination|Dental examination +C0490066|T033|PT|V72.2|ICD9CM|Dental examination|Dental examination +C1455986|T033|HT|V72.3|ICD9CM|Special investigations and examinations - Gynecological examination|Special investigations and examinations - Gynecological examination +C1455982|T033|AB|V72.31|ICD9CM|Routine gyn examination|Routine gyn examination +C1455982|T033|PT|V72.31|ICD9CM|Routine gynecological examination|Routine gynecological examination +C1455985|T033|AB|V72.32|ICD9CM|Pap smear confirmation|Pap smear confirmation +C0260876|T033|PT|V72.40|ICD9CM|Pregnancy examination or test, pregnancy unconfirmed|Pregnancy examination or test, pregnancy unconfirmed +C0260876|T033|AB|V72.40|ICD9CM|Pregnancy test unconfirm|Pregnancy test unconfirm +C1455988|T033|PT|V72.41|ICD9CM|Pregnancy examination or test, negative result|Pregnancy examination or test, negative result +C1455988|T033|AB|V72.41|ICD9CM|Pregnancy test negative|Pregnancy test negative +C0869291|T033|AB|V72.5|ICD9CM|Radiological exam NEC|Radiological exam NEC +C0869291|T033|PT|V72.5|ICD9CM|Radiological examination, not elsewhere classified|Radiological examination, not elsewhere classified +C0260877|T033|HT|V72.6|ICD9CM|Laboratory examination|Laboratory examination +C2712559|T033|AB|V72.60|ICD9CM|Laboratory exam NOS|Laboratory exam NOS +C2712559|T033|PT|V72.60|ICD9CM|Laboratory examination, unspecified|Laboratory examination, unspecified +C2712560|T033|AB|V72.61|ICD9CM|Antibody response exam|Antibody response exam +C2712560|T033|PT|V72.61|ICD9CM|Antibody response examination|Antibody response examination +C2712561|T033|PT|V72.62|ICD9CM|Laboratory examination ordered as part of a routine general medical examination|Laboratory examination ordered as part of a routine general medical examination +C2712561|T033|AB|V72.62|ICD9CM|Routine physicl lab exam|Routine physicl lab exam +C2712562|T033|PT|V72.63|ICD9CM|Pre-procedural laboratory examination|Pre-procedural laboratory examination +C2712562|T033|AB|V72.63|ICD9CM|Pre-procedure lab exam|Pre-procedure lab exam +C2712563|T033|AB|V72.69|ICD9CM|Laboratory exam NEC|Laboratory exam NEC +C2712563|T033|PT|V72.69|ICD9CM|Other laboratory examination|Other laboratory examination +C0362085|T033|PT|V72.7|ICD9CM|Diagnostic skin and sensitization tests|Diagnostic skin and sensitization tests +C0362085|T033|AB|V72.7|ICD9CM|Skin/sensitization tests|Skin/sensitization tests +C0260879|T033|HT|V72.8|ICD9CM|Other specified examinations|Other specified examinations +C0375894|T033|PT|V72.81|ICD9CM|Pre-operative cardiovascular examination|Pre-operative cardiovascular examination +C0375894|T033|AB|V72.81|ICD9CM|Preop cardiovsclr exam|Preop cardiovsclr exam +C0375895|T033|PT|V72.82|ICD9CM|Pre-operative respiratory examination|Pre-operative respiratory examination +C0375895|T033|AB|V72.82|ICD9CM|Preop respiratory exam|Preop respiratory exam +C0375896|T033|AB|V72.83|ICD9CM|Oth spcf preop exam|Oth spcf preop exam +C0375896|T033|PT|V72.83|ICD9CM|Other specified pre-operative examination|Other specified pre-operative examination +C0375897|T033|PT|V72.84|ICD9CM|Pre-operative examination, unspecified|Pre-operative examination, unspecified +C0375897|T033|AB|V72.84|ICD9CM|Preop exam unspcf|Preop exam unspcf +C0260879|T033|AB|V72.85|ICD9CM|Oth specified exam|Oth specified exam +C0260879|T033|PT|V72.85|ICD9CM|Other specified examination|Other specified examination +C1561709|T033|AB|V72.86|ICD9CM|Blood typing encounter|Blood typing encounter +C1561709|T033|PT|V72.86|ICD9CM|Encounter for blood typing|Encounter for blood typing +C0260880|T033|AB|V72.9|ICD9CM|Examination NOS|Examination NOS +C0260880|T033|PT|V72.9|ICD9CM|Unspecified examination|Unspecified examination +C0375898|T033|HT|V73|ICD9CM|Special screening examination for viral and chlamydial diseases|Special screening examination for viral and chlamydial diseases +C0260882|T033|PT|V73.0|ICD9CM|Screening examination for poliomyelitis|Screening examination for poliomyelitis +C0260882|T033|AB|V73.0|ICD9CM|Screening-poliomyelitis|Screening-poliomyelitis +C0260883|T033|PT|V73.1|ICD9CM|Screening examination for smallpox|Screening examination for smallpox +C0260883|T033|AB|V73.1|ICD9CM|Screening for smallpox|Screening for smallpox +C0260884|T033|PT|V73.2|ICD9CM|Screening examination for measles|Screening examination for measles +C0260884|T033|AB|V73.2|ICD9CM|Screening for measles|Screening for measles +C0419585|T033|PT|V73.3|ICD9CM|Screening examination for rubella|Screening examination for rubella +C0419585|T033|AB|V73.3|ICD9CM|Screening for rubella|Screening for rubella +C1313924|T033|PT|V73.4|ICD9CM|Screening examination for yellow fever|Screening examination for yellow fever +C1313924|T033|AB|V73.4|ICD9CM|Screening-yellow fever|Screening-yellow fever +C0260887|T033|PT|V73.5|ICD9CM|Screening examination for other arthropod-borne viral diseases|Screening examination for other arthropod-borne viral diseases +C0260887|T033|AB|V73.5|ICD9CM|Screening-arbovirus dis|Screening-arbovirus dis +C0455701|T033|PT|V73.6|ICD9CM|Screening examination for trachoma|Screening examination for trachoma +C0455701|T033|AB|V73.6|ICD9CM|Screening for trachoma|Screening for trachoma +C1955616|T033|HT|V73.8|ICD9CM|Screening examination for other specified viral and chlamydial diseases|Screening examination for other specified viral and chlamydial diseases +C1959639|T033|AB|V73.81|ICD9CM|Special screen exam HPV|Special screen exam HPV +C1959639|T033|PT|V73.81|ICD9CM|Special screening examination for Human papillomavirus (HPV)|Special screening examination for Human papillomavirus (HPV) +C0375899|T033|AB|V73.88|ICD9CM|Scrn oth spcf chlmyd dis|Scrn oth spcf chlmyd dis +C0375899|T033|PT|V73.88|ICD9CM|Special screening examination for other specified chlamydial diseases|Special screening examination for other specified chlamydial diseases +C0260889|T033|AB|V73.89|ICD9CM|Scrn oth spcf viral dis|Scrn oth spcf viral dis +C0260889|T033|PT|V73.89|ICD9CM|Special screening examination for other specified viral diseases|Special screening examination for other specified viral diseases +C0700433|T033|HT|V73.9|ICD9CM|Screening examination for unspecified viral disease|Screening examination for unspecified viral disease +C0375900|T033|AB|V73.98|ICD9CM|Scrn unspcf chlmyd dis|Scrn unspcf chlmyd dis +C0375900|T033|PT|V73.98|ICD9CM|Special screening examination for unspecified chlamydial disease|Special screening examination for unspecified chlamydial disease +C0700433|T033|AB|V73.99|ICD9CM|Scrn unspcf viral dis|Scrn unspcf viral dis +C0700433|T033|PT|V73.99|ICD9CM|Special screening examination for unspecified viral disease|Special screening examination for unspecified viral disease +C0260899|T033|HT|V74|ICD9CM|Special screening examination for bacterial and spirochetal diseases|Special screening examination for bacterial and spirochetal diseases +C0260892|T033|PT|V74.0|ICD9CM|Screening examination for cholera|Screening examination for cholera +C0260892|T033|AB|V74.0|ICD9CM|Screening for cholera|Screening for cholera +C2910575|T033|PT|V74.1|ICD9CM|Screening examination for pulmonary tuberculosis|Screening examination for pulmonary tuberculosis +C2910575|T033|AB|V74.1|ICD9CM|Screening-pulmonary TB|Screening-pulmonary TB +C0420007|T033|PT|V74.2|ICD9CM|Screening examination for leprosy (Hansen's disease)|Screening examination for leprosy (Hansen's disease) +C0420007|T033|AB|V74.2|ICD9CM|Screening for leprosy|Screening for leprosy +C0260894|T033|PT|V74.3|ICD9CM|Screening examination for diphtheria|Screening examination for diphtheria +C0260894|T033|AB|V74.3|ICD9CM|Screening for diphtheria|Screening for diphtheria +C0260895|T033|AB|V74.4|ICD9CM|Screen-bact conjunctivit|Screen-bact conjunctivit +C0260895|T033|PT|V74.4|ICD9CM|Screening examination for bacterial conjunctivitis|Screening examination for bacterial conjunctivitis +C1961127|T033|AB|V74.5|ICD9CM|Screen for veneral dis|Screen for veneral dis +C1961127|T033|PT|V74.5|ICD9CM|Screening examination for venereal disease|Screening examination for venereal disease +C0260897|T033|PT|V74.6|ICD9CM|Screening examination for yaws|Screening examination for yaws +C0260897|T033|AB|V74.6|ICD9CM|Screening for yaws|Screening for yaws +C0260898|T033|AB|V74.8|ICD9CM|Screen-bacterial dis NEC|Screen-bacterial dis NEC +C0260898|T033|PT|V74.8|ICD9CM|Screening examination for other specified bacterial and spirochetal diseases|Screening examination for other specified bacterial and spirochetal diseases +C0260899|T033|AB|V74.9|ICD9CM|Screen-bacterial dis NOS|Screen-bacterial dis NOS +C0260899|T033|PT|V74.9|ICD9CM|Screening examination for unspecified bacterial and spirochetal diseases|Screening examination for unspecified bacterial and spirochetal diseases +C0260900|T033|HT|V75|ICD9CM|Special screening examination for other infectious diseases|Special screening examination for other infectious diseases +C0260901|T033|AB|V75.0|ICD9CM|Screen-rickettsial dis|Screen-rickettsial dis +C0260901|T033|PT|V75.0|ICD9CM|Screening examination for rickettsial diseases|Screening examination for rickettsial diseases +C0260902|T033|PT|V75.1|ICD9CM|Screening examination for malaria|Screening examination for malaria +C0260902|T033|AB|V75.1|ICD9CM|Screening for malaria|Screening for malaria +C0420015|T033|AB|V75.2|ICD9CM|Screen for leishmaniasis|Screen for leishmaniasis +C0420015|T033|PT|V75.2|ICD9CM|Screening examination for leishmaniasis|Screening examination for leishmaniasis +C0481870|T033|AB|V75.3|ICD9CM|Screen-trypanosomiasis|Screen-trypanosomiasis +C0481870|T033|PT|V75.3|ICD9CM|Screening examination for trypanosomiasis|Screening examination for trypanosomiasis +C0260905|T033|AB|V75.4|ICD9CM|Screen-mycotic infect|Screen-mycotic infect +C0260905|T033|PT|V75.4|ICD9CM|Screening examination for mycotic infections|Screening examination for mycotic infections +C0260906|T033|AB|V75.5|ICD9CM|Screen-schistosomiasis|Screen-schistosomiasis +C0260906|T033|PT|V75.5|ICD9CM|Screening examination for schistosomiasis|Screening examination for schistosomiasis +C0260907|T033|AB|V75.6|ICD9CM|Screen for filariasis|Screen for filariasis +C0260907|T033|PT|V75.6|ICD9CM|Screening examination for filariasis|Screening examination for filariasis +C1399262|T033|AB|V75.7|ICD9CM|Screen for helminthiasis|Screen for helminthiasis +C1399262|T033|PT|V75.7|ICD9CM|Screening examination for intestinal helminthiasis|Screening examination for intestinal helminthiasis +C0260909|T033|AB|V75.8|ICD9CM|Screen-parasitic dis NEC|Screen-parasitic dis NEC +C0260909|T033|PT|V75.8|ICD9CM|Screening examination for other specified parasitic infections|Screening examination for other specified parasitic infections +C0260910|T033|AB|V75.9|ICD9CM|Screen for infec dis NOS|Screen for infec dis NOS +C0260910|T033|PT|V75.9|ICD9CM|Screening examination for unspecified infectious disease|Screening examination for unspecified infectious disease +C0260922|T033|HT|V76|ICD9CM|Special screening for malignant neoplasms|Special screening for malignant neoplasms +C0481873|T033|AB|V76.0|ICD9CM|Screen mal neop-resp org|Screen mal neop-resp org +C0481873|T033|PT|V76.0|ICD9CM|Special screening for malignant neoplasms of respiratory organs|Special screening for malignant neoplasms of respiratory organs +C2921311|T033|HT|V76.1|ICD9CM|Screening examination for malignant neoplasms of the breast|Screening examination for malignant neoplasms of the breast +C0490031|T033|PT|V76.10|ICD9CM|Breast screening, unspecified|Breast screening, unspecified +C0490031|T033|AB|V76.10|ICD9CM|Scrn mal neo breast NOS|Scrn mal neo breast NOS +C0490033|T033|PT|V76.12|ICD9CM|Other screening mammogram|Other screening mammogram +C0490033|T033|AB|V76.12|ICD9CM|Screen mammogram NEC|Screen mammogram NEC +C0490034|T033|PT|V76.19|ICD9CM|Other screening breast examination|Other screening breast examination +C0490034|T033|AB|V76.19|ICD9CM|Scrn mal neo breast NEC|Scrn mal neo breast NEC +C0260914|T033|AB|V76.2|ICD9CM|Screen mal neop-cervix|Screen mal neop-cervix +C0260914|T033|PT|V76.2|ICD9CM|Screening for malignant neoplasms of cervix|Screening for malignant neoplasms of cervix +C0260915|T033|AB|V76.3|ICD9CM|Screen mal neop-bladder|Screen mal neop-bladder +C0260915|T033|PT|V76.3|ICD9CM|Screening for malignant neoplasms of bladder|Screening for malignant neoplasms of bladder +C0877843|T033|HT|V76.4|ICD9CM|Screening for malignant neoplasms of other sites|Screening for malignant neoplasms of other sites +C0260917|T033|AB|V76.41|ICD9CM|Screen mal neop-rectum|Screen mal neop-rectum +C0260917|T033|PT|V76.41|ICD9CM|Screening for malignant neoplasms of rectum|Screening for malignant neoplasms of rectum +C0260918|T033|AB|V76.42|ICD9CM|Screen mal neop-oral cav|Screen mal neop-oral cav +C0260918|T033|PT|V76.42|ICD9CM|Screening for malignant neoplasms of oral cavity|Screening for malignant neoplasms of oral cavity +C0260919|T033|AB|V76.43|ICD9CM|Screen mal neop-skin|Screen mal neop-skin +C0260919|T033|PT|V76.43|ICD9CM|Screening for malignant neoplasms of skin|Screening for malignant neoplasms of skin +C0699916|T033|PT|V76.44|ICD9CM|Screening for malignant neoplasms of prostate|Screening for malignant neoplasms of prostate +C0699916|T033|AB|V76.44|ICD9CM|Scrn malig neop-prostate|Scrn malig neop-prostate +C2910598|T033|AB|V76.45|ICD9CM|Screen malig neop-testis|Screen malig neop-testis +C2910598|T033|PT|V76.45|ICD9CM|Screening for malignant neoplasms of testis|Screening for malignant neoplasms of testis +C0878739|T033|AB|V76.47|ICD9CM|Screen malig neop-vagina|Screen malig neop-vagina +C0878739|T033|PT|V76.47|ICD9CM|Special screening for malignant neoplasms of vagina|Special screening for malignant neoplasms of vagina +C0877843|T033|AB|V76.49|ICD9CM|Screen mal neop oth site|Screen mal neop oth site +C0877843|T033|PT|V76.49|ICD9CM|Special screening for malignant neoplasms of other sites|Special screening for malignant neoplasms of other sites +C0878740|T033|HT|V76.5|ICD9CM|Screening for malignant neoplasms of intestine|Screening for malignant neoplasms of intestine +C0878741|T033|AB|V76.50|ICD9CM|Scrn malig neo-intes NOS|Scrn malig neo-intes NOS +C0878741|T033|PT|V76.50|ICD9CM|Special screening for malignant neoplasms for intestine, unspecified|Special screening for malignant neoplasms for intestine, unspecified +C0878742|T033|AB|V76.51|ICD9CM|Screen malig neop-colon|Screen malig neop-colon +C0878742|T033|PT|V76.51|ICD9CM|Special screening for malignant neoplasms of colon|Special screening for malignant neoplasms of colon +C2910590|T033|AB|V76.52|ICD9CM|Scrn mal neo-small intes|Scrn mal neo-small intes +C2910590|T033|PT|V76.52|ICD9CM|Special screening for malignant neoplasms of small intestine|Special screening for malignant neoplasms of small intestine +C0877844|T033|HT|V76.8|ICD9CM|Screening for other malignant neoplasms|Screening for other malignant neoplasms +C2910603|T033|AB|V76.81|ICD9CM|Screen neop-nervous syst|Screen neop-nervous syst +C2910603|T033|PT|V76.81|ICD9CM|Special screening for malignant neoplasms of nervous system|Special screening for malignant neoplasms of nervous system +C0260922|T033|AB|V76.9|ICD9CM|Screen-neoplasm NOS|Screen-neoplasm NOS +C0260922|T033|PT|V76.9|ICD9CM|Special screening for unspecified malignant neoplasms|Special screening for unspecified malignant neoplasms +C0260923|T033|HT|V77|ICD9CM|Special screening for endocrine, nutritional, metabolic, and immunity disorders|Special screening for endocrine, nutritional, metabolic, and immunity disorders +C0260924|T033|AB|V77.0|ICD9CM|Screen-thyroid disorder|Screen-thyroid disorder +C0260924|T033|PT|V77.0|ICD9CM|Screening for thyroid disorders|Screening for thyroid disorders +C0260925|T033|AB|V77.1|ICD9CM|Screen-diabetes mellitus|Screen-diabetes mellitus +C0260925|T033|PT|V77.1|ICD9CM|Screening for diabetes mellitus|Screening for diabetes mellitus +C0260926|T033|AB|V77.2|ICD9CM|Screen for malnutrition|Screen for malnutrition +C0260926|T033|PT|V77.2|ICD9CM|Screening for malnutrition|Screening for malnutrition +C0260927|T033|AB|V77.3|ICD9CM|Screen-phenylketonuria|Screen-phenylketonuria +C0260927|T033|PT|V77.3|ICD9CM|Screening for phenylketonuria (PKU)|Screening for phenylketonuria (PKU) +C0260928|T033|AB|V77.4|ICD9CM|Screen for galactosemia|Screen for galactosemia +C0260928|T033|PT|V77.4|ICD9CM|Screening for galactosemia|Screening for galactosemia +C0260929|T033|AB|V77.5|ICD9CM|Screening for gout|Screening for gout +C0260929|T033|PT|V77.5|ICD9CM|Screening for gout|Screening for gout +C0260930|T033|AB|V77.6|ICD9CM|Screen-cystic fibrosis|Screen-cystic fibrosis +C0260930|T033|PT|V77.6|ICD9CM|Screening for cystic fibrosis|Screening for cystic fibrosis +C0260931|T033|AB|V77.7|ICD9CM|Screen-inborn err metab|Screen-inborn err metab +C0260931|T033|PT|V77.7|ICD9CM|Screening for other inborn errors of metabolism|Screening for other inborn errors of metabolism +C0260932|T033|AB|V77.8|ICD9CM|Screening for obesity|Screening for obesity +C0260932|T033|PT|V77.8|ICD9CM|Screening for obesity|Screening for obesity +C0877845|T033|HT|V77.9|ICD9CM|Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders|Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders +C2910614|T033|AB|V77.91|ICD9CM|Screen lipoid disorders|Screen lipoid disorders +C2910614|T033|PT|V77.91|ICD9CM|Screening for lipoid disorders|Screening for lipoid disorders +C0877845|T033|AB|V77.99|ICD9CM|Screen-endoc/nut/met NEC|Screen-endoc/nut/met NEC +C0877845|T033|PT|V77.99|ICD9CM|Screening for other and unspecified endocrine, nutritional, metabolic, and immunity disorders|Screening for other and unspecified endocrine, nutritional, metabolic, and immunity disorders +C0260934|T033|HT|V78|ICD9CM|Special screening for disorders of blood and blood-forming organs|Special screening for disorders of blood and blood-forming organs +C0260935|T033|AB|V78.0|ICD9CM|Screen-iron defic anemia|Screen-iron defic anemia +C0260935|T033|PT|V78.0|ICD9CM|Screening for iron deficiency anemia|Screening for iron deficiency anemia +C0260936|T033|AB|V78.1|ICD9CM|Screen-defic anemia NEC|Screen-defic anemia NEC +C0260936|T033|PT|V78.1|ICD9CM|Screening for other and unspecified deficiency anemia|Screening for other and unspecified deficiency anemia +C0260937|T033|AB|V78.2|ICD9CM|Screen-sickle cell dis|Screen-sickle cell dis +C0260937|T033|PT|V78.2|ICD9CM|Screening for sickle-cell disease or trait|Screening for sickle-cell disease or trait +C2586327|T033|PT|V78.3|ICD9CM|Screening for other hemoglobinopathies|Screening for other hemoglobinopathies +C2586327|T033|AB|V78.3|ICD9CM|Scrn-hemoglobinopath NEC|Scrn-hemoglobinopath NEC +C0260939|T033|AB|V78.8|ICD9CM|Screen-blood dis NEC|Screen-blood dis NEC +C0260939|T033|PT|V78.8|ICD9CM|Screening for other disorders of blood and blood-forming organs|Screening for other disorders of blood and blood-forming organs +C0260940|T033|AB|V78.9|ICD9CM|Screen-blood dis NOS|Screen-blood dis NOS +C0260940|T033|PT|V78.9|ICD9CM|Screening for unspecified disorder of blood and blood-forming organs|Screening for unspecified disorder of blood and blood-forming organs +C0260941|T033|HT|V79|ICD9CM|Special screening for mental disorders and developmental handicaps|Special screening for mental disorders and developmental handicaps +C0260942|T033|AB|V79.0|ICD9CM|Screening for depression|Screening for depression +C0260942|T033|PT|V79.0|ICD9CM|Screening for depression|Screening for depression +C0260943|T033|AB|V79.1|ICD9CM|Screening for alcoholism|Screening for alcoholism +C0260943|T033|PT|V79.1|ICD9CM|Screening for alcoholism|Screening for alcoholism +C0260944|T033|AB|V79.2|ICD9CM|Scrn intellect disabilty|Scrn intellect disabilty +C0260944|T033|PT|V79.2|ICD9CM|Special screening for intellectual disabilities|Special screening for intellectual disabilities +C0260945|T033|AB|V79.3|ICD9CM|Screen-development prob|Screen-development prob +C0260945|T033|PT|V79.3|ICD9CM|Screening for developmental handicaps in early childhood|Screening for developmental handicaps in early childhood +C0260946|T033|AB|V79.8|ICD9CM|Screen-mental dis NEC|Screen-mental dis NEC +C0260946|T033|PT|V79.8|ICD9CM|Screening for other specified mental disorders and developmental handicaps|Screening for other specified mental disorders and developmental handicaps +C0600027|T033|AB|V79.9|ICD9CM|Screen-mental dis NOS|Screen-mental dis NOS +C0600027|T033|PT|V79.9|ICD9CM|Screening for unspecified mental disorder and developmental handicap|Screening for unspecified mental disorder and developmental handicap +C0260948|T033|HT|V80|ICD9CM|Special screening for neurological, eye, and ear diseases|Special screening for neurological, eye, and ear diseases +C0260949|T033|HT|V80.0|ICD9CM|Screening for neurological conditions|Screening for neurological conditions +C2921402|T033|AB|V80.01|ICD9CM|Screen-traumtc brain inj|Screen-traumtc brain inj +C2921402|T033|PT|V80.01|ICD9CM|Special screening for traumatic brain injury|Special screening for traumatic brain injury +C2712564|T033|AB|V80.09|ICD9CM|Screen-neuro condition|Screen-neuro condition +C2712564|T033|PT|V80.09|ICD9CM|Special screening for other neurological conditions|Special screening for other neurological conditions +C0260950|T033|AB|V80.1|ICD9CM|Screening for glaucoma|Screening for glaucoma +C0260950|T033|PT|V80.1|ICD9CM|Screening for glaucoma|Screening for glaucoma +C0260951|T033|PT|V80.2|ICD9CM|Screening for other eye conditions|Screening for other eye conditions +C0260951|T033|AB|V80.2|ICD9CM|Screening-eye cond NEC|Screening-eye cond NEC +C0260952|T033|AB|V80.3|ICD9CM|Screening for ear dis|Screening for ear dis +C0260952|T033|PT|V80.3|ICD9CM|Screening for ear diseases|Screening for ear diseases +C0260953|T033|HT|V81|ICD9CM|Special screening for cardiovascular, respiratory, and genitourinary diseases|Special screening for cardiovascular, respiratory, and genitourinary diseases +C0260954|T033|PT|V81.0|ICD9CM|Screening for ischemic heart disease|Screening for ischemic heart disease +C0260954|T033|AB|V81.0|ICD9CM|Scrn-ischemic heart dis|Scrn-ischemic heart dis +C0260955|T033|AB|V81.1|ICD9CM|Screen for hypertension|Screen for hypertension +C0260955|T033|PT|V81.1|ICD9CM|Screening for hypertension|Screening for hypertension +C0260956|T033|AB|V81.2|ICD9CM|Screen-cardiovasc NEC|Screen-cardiovasc NEC +C0260956|T033|PT|V81.2|ICD9CM|Screening for other and unspecified cardiovascular conditions|Screening for other and unspecified cardiovascular conditions +C0260957|T033|AB|V81.3|ICD9CM|Screen-bronch/emphysema|Screen-bronch/emphysema +C0260957|T033|PT|V81.3|ICD9CM|Screening for chronic bronchitis and emphysema|Screening for chronic bronchitis and emphysema +C0260958|T033|AB|V81.4|ICD9CM|Screen-respir cond NEC|Screen-respir cond NEC +C0260958|T033|PT|V81.4|ICD9CM|Screening for other and unspecified respiratory conditions|Screening for other and unspecified respiratory conditions +C0260959|T033|AB|V81.5|ICD9CM|Screen for nephropathy|Screen for nephropathy +C0260959|T033|PT|V81.5|ICD9CM|Screening for nephropathy|Screening for nephropathy +C0260960|T033|AB|V81.6|ICD9CM|Screen for gu cond NEC|Screen for gu cond NEC +C0260960|T033|PT|V81.6|ICD9CM|Screening for other and unspecified genitourinary conditions|Screening for other and unspecified genitourinary conditions +C0260961|T033|HT|V82|ICD9CM|Special screening for other conditions|Special screening for other conditions +C0260962|T033|AB|V82.0|ICD9CM|Screen for skin cond|Screen for skin cond +C0260962|T033|PT|V82.0|ICD9CM|Screening for skin conditions|Screening for skin conditions +C0260963|T033|AB|V82.1|ICD9CM|Screen-rheumatoid arthr|Screen-rheumatoid arthr +C0260963|T033|PT|V82.1|ICD9CM|Screening for rheumatoid arthritis|Screening for rheumatoid arthritis +C0260964|T033|AB|V82.2|ICD9CM|Screen-rheumat dis NEC|Screen-rheumat dis NEC +C0260964|T033|PT|V82.2|ICD9CM|Screening for other rheumatic disorders|Screening for other rheumatic disorders +C0260965|T033|AB|V82.3|ICD9CM|Screen-cong hip dislocat|Screen-cong hip dislocat +C0260965|T033|PT|V82.3|ICD9CM|Screening for congenital dislocation of hip|Screening for congenital dislocation of hip +C0695272|T033|AB|V82.4|ICD9CM|Mat pstntl scr-chrm anom|Mat pstntl scr-chrm anom +C0695272|T033|PT|V82.4|ICD9CM|Maternal postnatal screening for chromosomal anomalies|Maternal postnatal screening for chromosomal anomalies +C0260967|T033|AB|V82.5|ICD9CM|Screen-contamination NEC|Screen-contamination NEC +C0260967|T033|PT|V82.5|ICD9CM|Screening for chemical poisoning and other contamination|Screening for chemical poisoning and other contamination +C0740225|T033|AB|V82.6|ICD9CM|Multiphasic screening|Multiphasic screening +C0740225|T033|PT|V82.6|ICD9CM|Multiphasic screening|Multiphasic screening +C0017394|T033|HT|V82.7|ICD9CM|Genetic screening|Genetic screening +C0017394|T033|AB|V82.79|ICD9CM|Genetic screening NEC|Genetic screening NEC +C0017394|T033|PT|V82.79|ICD9CM|Other genetic screening|Other genetic screening +C0036464|T033|HT|V82.8|ICD9CM|Screening for other specified conditions|Screening for other specified conditions +C2910630|T033|AB|V82.81|ICD9CM|Screen - osteoporosis|Screen - osteoporosis +C2910630|T033|PT|V82.81|ICD9CM|Special screening for osteoporosis|Special screening for osteoporosis +C0036464|T033|AB|V82.89|ICD9CM|Screen for condition NEC|Screen for condition NEC +C0036464|T033|PT|V82.89|ICD9CM|Special screening for other specified conditions|Special screening for other specified conditions +C0949156|T033|HT|V83|ICD9CM|Genetic carrier status|Genetic carrier status +C2919122|T033|HT|V83.0|ICD9CM|Hemophilia A carrier|Hemophilia A carrier +C2911654|T033|AB|V83.01|ICD9CM|Asympt hemoph a carrier|Asympt hemoph a carrier +C2911654|T033|PT|V83.01|ICD9CM|Asymptomatic hemophilia A carrier|Asymptomatic hemophilia A carrier +C2911655|T033|AB|V83.02|ICD9CM|Sympt hemophil a carrier|Sympt hemophil a carrier +C2911655|T033|PT|V83.02|ICD9CM|Symptomatic hemophilia A carrier|Symptomatic hemophilia A carrier +C1135312|T033|HT|V83.8|ICD9CM|Other genetic carrier status|Other genetic carrier status +C2711060|T033|AB|V83.81|ICD9CM|Cystic fibrosis gene car|Cystic fibrosis gene car +C2711060|T033|PT|V83.81|ICD9CM|Cystic fibrosis gene carrier|Cystic fibrosis gene carrier +C1135312|T033|AB|V83.89|ICD9CM|Genetic carrier stat NEC|Genetic carrier stat NEC +C1135312|T033|PT|V83.89|ICD9CM|Other genetic carrier status|Other genetic carrier status +C2919134|T033|HT|V84|ICD9CM|Genetic susceptibility to disease|Genetic susceptibility to disease +C1455995|T033|HT|V84.0|ICD9CM|Genetic susceptibility to malignant neoplasm|Genetic susceptibility to malignant neoplasm +C1455990|T033|AB|V84.01|ICD9CM|Genetc sus mal neo brest|Genetc sus mal neo brest +C1455990|T033|PT|V84.01|ICD9CM|Genetic susceptibility to malignant neoplasm of breast|Genetic susceptibility to malignant neoplasm of breast +C1455991|T033|AB|V84.02|ICD9CM|Genetc sus mal neo ovary|Genetc sus mal neo ovary +C1455991|T033|PT|V84.02|ICD9CM|Genetic susceptibility to malignant neoplasm of ovary|Genetic susceptibility to malignant neoplasm of ovary +C1455992|T033|AB|V84.03|ICD9CM|Genetc sus mal neo prost|Genetc sus mal neo prost +C1455992|T033|PT|V84.03|ICD9CM|Genetic susceptibility to malignant neoplasm of prostate|Genetic susceptibility to malignant neoplasm of prostate +C1455993|T033|AB|V84.04|ICD9CM|Genetc susc mal neo endo|Genetc susc mal neo endo +C1455993|T033|PT|V84.04|ICD9CM|Genetic susceptibility to malignant neoplasm of endometrium|Genetic susceptibility to malignant neoplasm of endometrium +C1455994|T033|AB|V84.09|ICD9CM|Genetic susc mal neo NEC|Genetic susc mal neo NEC +C1455994|T033|PT|V84.09|ICD9CM|Genetic susceptibility to other malignant neoplasm|Genetic susceptibility to other malignant neoplasm +C1455996|T033|HT|V84.8|ICD9CM|Genetic susceptibility to other disease|Genetic susceptibility to other disease +C1955618|T033|AB|V84.81|ICD9CM|Genetc sus mult endo neo|Genetc sus mult endo neo +C1955618|T033|PT|V84.81|ICD9CM|Genetic susceptibility to multiple endocrine neoplasia [MEN]|Genetic susceptibility to multiple endocrine neoplasia [MEN] +C1455996|T033|AB|V84.89|ICD9CM|Genetic suscept dis NEC|Genetic suscept dis NEC +C1455996|T033|PT|V84.89|ICD9CM|Genetic susceptibility to other disease|Genetic susceptibility to other disease +C2240399|T033|HT|V85|ICD9CM|Body mass index [BMI]|Body mass index [BMI] +C2240399|T033|HT|V85-V85.99|ICD9CM|BODY MASS INDEX|BODY MASS INDEX +C1561710|T033|AB|V85.0|ICD9CM|BMI less than 19,adult|BMI less than 19,adult +C1561710|T033|PT|V85.0|ICD9CM|Body Mass Index less than 19, adult|Body Mass Index less than 19, adult +C1561711|T033|AB|V85.1|ICD9CM|BMI between 19-24,adult|BMI between 19-24,adult +C1561711|T033|PT|V85.1|ICD9CM|Body Mass Index between 19-24, adult|Body Mass Index between 19-24, adult +C1561717|T033|HT|V85.2|ICD9CM|Body Mass Index between 25-29, adult|Body Mass Index between 25-29, adult +C2911045|T033|AB|V85.21|ICD9CM|BMI 25.0-25.9,adult|BMI 25.0-25.9,adult +C2911045|T033|PT|V85.21|ICD9CM|Body Mass Index 25.0-25.9, adult|Body Mass Index 25.0-25.9, adult +C2911046|T033|AB|V85.22|ICD9CM|BMI 26.0-26.9,adult|BMI 26.0-26.9,adult +C2911046|T033|PT|V85.22|ICD9CM|Body Mass Index 26.0-26.9, adult|Body Mass Index 26.0-26.9, adult +C2911047|T033|AB|V85.23|ICD9CM|BMI 27.0-27.9,adult|BMI 27.0-27.9,adult +C2911047|T033|PT|V85.23|ICD9CM|Body Mass Index 27.0-27.9, adult|Body Mass Index 27.0-27.9, adult +C2911048|T033|AB|V85.24|ICD9CM|BMI 28.0-28.9,adult|BMI 28.0-28.9,adult +C2911048|T033|PT|V85.24|ICD9CM|Body Mass Index 28.0-28.9, adult|Body Mass Index 28.0-28.9, adult +C2911049|T033|AB|V85.25|ICD9CM|BMI 29.0-29.9,adult|BMI 29.0-29.9,adult +C2911049|T033|PT|V85.25|ICD9CM|Body Mass Index 29.0-29.9, adult|Body Mass Index 29.0-29.9, adult +C1561728|T033|HT|V85.3|ICD9CM|Body Mass Index between 30-39, adult|Body Mass Index between 30-39, adult +C2911051|T033|AB|V85.30|ICD9CM|BMI 30.0-30.9,adult|BMI 30.0-30.9,adult +C2911051|T033|PT|V85.30|ICD9CM|Body Mass Index 30.0-30.9, adult|Body Mass Index 30.0-30.9, adult +C2911052|T033|AB|V85.31|ICD9CM|BMI 31.0-31.9,adult|BMI 31.0-31.9,adult +C2911052|T033|PT|V85.31|ICD9CM|Body Mass Index 31.0-31.9, adult|Body Mass Index 31.0-31.9, adult +C2911053|T033|AB|V85.32|ICD9CM|BMI 32.0-32.9,adult|BMI 32.0-32.9,adult +C2911053|T033|PT|V85.32|ICD9CM|Body Mass Index 32.0-32.9, adult|Body Mass Index 32.0-32.9, adult +C2911054|T033|AB|V85.33|ICD9CM|BMI 33.0-33.9,adult|BMI 33.0-33.9,adult +C2911054|T033|PT|V85.33|ICD9CM|Body Mass Index 33.0-33.9, adult|Body Mass Index 33.0-33.9, adult +C2911055|T033|AB|V85.34|ICD9CM|BMI 34.0-34.9,adult|BMI 34.0-34.9,adult +C2911055|T033|PT|V85.34|ICD9CM|Body Mass Index 34.0-34.9, adult|Body Mass Index 34.0-34.9, adult +C2911056|T033|AB|V85.35|ICD9CM|BMI 35.0-35.9,adult|BMI 35.0-35.9,adult +C2911056|T033|PT|V85.35|ICD9CM|Body Mass Index 35.0-35.9, adult|Body Mass Index 35.0-35.9, adult +C2911057|T033|AB|V85.36|ICD9CM|BMI 36.0-36.9,adult|BMI 36.0-36.9,adult +C2911057|T033|PT|V85.36|ICD9CM|Body Mass Index 36.0-36.9, adult|Body Mass Index 36.0-36.9, adult +C2911058|T033|AB|V85.37|ICD9CM|BMI 37.0-37.9,adult|BMI 37.0-37.9,adult +C2911058|T033|PT|V85.37|ICD9CM|Body Mass Index 37.0-37.9, adult|Body Mass Index 37.0-37.9, adult +C2911059|T033|AB|V85.38|ICD9CM|BMI 38.0-38.9,adult|BMI 38.0-38.9,adult +C2911059|T033|PT|V85.38|ICD9CM|Body Mass Index 38.0-38.9, adult|Body Mass Index 38.0-38.9, adult +C2911060|T033|AB|V85.39|ICD9CM|BMI 39.0-39.9,adult|BMI 39.0-39.9,adult +C2911060|T033|PT|V85.39|ICD9CM|Body Mass Index 39.0-39.9, adult|Body Mass Index 39.0-39.9, adult +C1561729|T033|HT|V85.4|ICD9CM|Body Mass Index 40 and over, adult|Body Mass Index 40 and over, adult +C2921312|T033|AB|V85.41|ICD9CM|BMI 40.0-44.9, adult|BMI 40.0-44.9, adult +C2921312|T033|PT|V85.41|ICD9CM|Body Mass Index 40.0-44.9, adult|Body Mass Index 40.0-44.9, adult +C2921313|T033|AB|V85.42|ICD9CM|BMI 45.0-49.9, adult|BMI 45.0-49.9, adult +C2921313|T033|PT|V85.42|ICD9CM|Body Mass Index 45.0-49.9, adult|Body Mass Index 45.0-49.9, adult +C2921314|T033|AB|V85.43|ICD9CM|BMI 50.0-59.9, adult|BMI 50.0-59.9, adult +C2921314|T033|PT|V85.43|ICD9CM|Body Mass Index 50.0-59.9, adult|Body Mass Index 50.0-59.9, adult +C2921315|T033|AB|V85.44|ICD9CM|BMI 60.0-69.9, adult|BMI 60.0-69.9, adult +C2921315|T033|PT|V85.44|ICD9CM|Body Mass Index 60.0-69.9, adult|Body Mass Index 60.0-69.9, adult +C2921316|T033|AB|V85.45|ICD9CM|BMI 70 and over, adult|BMI 70 and over, adult +C2921316|T033|PT|V85.45|ICD9CM|Body Mass Index 70 and over, adult|Body Mass Index 70 and over, adult +C2911062|T033|HT|V85.5|ICD9CM|Body Mass Index, pediatric|Body Mass Index, pediatric +C2911063|T033|AB|V85.51|ICD9CM|BMI,pediatric <5%|BMI,pediatric <5% +C2911063|T033|PT|V85.51|ICD9CM|Body Mass Index, pediatric, less than 5th percentile for age|Body Mass Index, pediatric, less than 5th percentile for age +C2911064|T033|AB|V85.52|ICD9CM|BMI,pediatric 5% - <85%|BMI,pediatric 5% - <85% +C2911064|T033|PT|V85.52|ICD9CM|Body Mass Index, pediatric, 5th percentile to less than 85th percentile for age|Body Mass Index, pediatric, 5th percentile to less than 85th percentile for age +C2911065|T033|AB|V85.53|ICD9CM|BMI,pediatric 85% - <95%|BMI,pediatric 85% - <95% +C2911065|T033|PT|V85.53|ICD9CM|Body Mass Index, pediatric, 85th percentile to less than 95th percentile for age|Body Mass Index, pediatric, 85th percentile to less than 95th percentile for age +C2911066|T033|AB|V85.54|ICD9CM|BMI,pediatric >= 95%|BMI,pediatric >= 95% +C2911066|T033|PT|V85.54|ICD9CM|Body Mass Index, pediatric, greater than or equal to 95th percentile for age|Body Mass Index, pediatric, greater than or equal to 95th percentile for age +C2919114|T033|HT|V86|ICD9CM|Estrogen receptor status|Estrogen receptor status +C2919114|T033|HT|V86-V86.99|ICD9CM|ESTROGEN RECEPTOR STATUS|ESTROGEN RECEPTOR STATUS +C1719706|T033|AB|V86.0|ICD9CM|Estrogen recep pstv stat|Estrogen recep pstv stat +C1719706|T033|PT|V86.0|ICD9CM|Estrogen receptor positive status [ER+]|Estrogen receptor positive status [ER+] +C1719707|T033|AB|V86.1|ICD9CM|Estrogen recep neg stat|Estrogen recep neg stat +C1719707|T033|PT|V86.1|ICD9CM|Estrogen receptor negative status [ER-]|Estrogen receptor negative status [ER-] +C2349917|T047|HT|V87|ICD9CM|Other specified personal exposures and history presenting hazards to health|Other specified personal exposures and history presenting hazards to health +C2349917|T047|HT|V87-V87.99|ICD9CM|OTHER SPECIFIED PERSONAL EXPOSURES AND HISTORY PRESENTING HAZARDS TO HEALTH|OTHER SPECIFIED PERSONAL EXPOSURES AND HISTORY PRESENTING HAZARDS TO HEALTH +C2349903|T033|HT|V87.0|ICD9CM|Contact with and (suspected) exposure to hazardous metals|Contact with and (suspected) exposure to hazardous metals +C2349899|T033|PT|V87.01|ICD9CM|Contact with and (suspected) exposure to arsenic|Contact with and (suspected) exposure to arsenic +C2349899|T033|AB|V87.01|ICD9CM|Contact/exposure arsenic|Contact/exposure arsenic +C3161155|T033|AB|V87.02|ICD9CM|Cont/susp expose uranium|Cont/susp expose uranium +C3161155|T033|PT|V87.02|ICD9CM|Contact with and (suspected) exposure to uranium|Contact with and (suspected) exposure to uranium +C2349900|T033|AB|V87.09|ICD9CM|Cntct/exp hazrd metl NEC|Cntct/exp hazrd metl NEC +C2349900|T033|PT|V87.09|ICD9CM|Contact with and (suspected) exposure to other hazardous metals|Contact with and (suspected) exposure to other hazardous metals +C2349909|T033|HT|V87.1|ICD9CM|Contact with and (suspected) exposure to hazardous aromatic compounds|Contact with and (suspected) exposure to hazardous aromatic compounds +C2349904|T033|AB|V87.11|ICD9CM|Cntct/exp aromatc amines|Cntct/exp aromatc amines +C2349904|T033|PT|V87.11|ICD9CM|Contact with and (suspected) exposure to aromatic amines|Contact with and (suspected) exposure to aromatic amines +C2349905|T033|PT|V87.12|ICD9CM|Contact with and (suspected) exposure to benzene|Contact with and (suspected) exposure to benzene +C2349905|T033|AB|V87.12|ICD9CM|Contact/exposure benzene|Contact/exposure benzene +C2349906|T033|AB|V87.19|ICD9CM|Cont/exp haz aromat NEC|Cont/exp haz aromat NEC +C2349906|T033|PT|V87.19|ICD9CM|Contact with and (suspected) exposure to other hazardous aromatic compounds|Contact with and (suspected) exposure to other hazardous aromatic compounds +C2349910|T033|AB|V87.2|ICD9CM|Cont/exp hazard chem NEC|Cont/exp hazard chem NEC +C2349910|T033|PT|V87.2|ICD9CM|Contact with and (suspected) exposure to other potentially hazardous chemicals|Contact with and (suspected) exposure to other potentially hazardous chemicals +C2349912|T033|HT|V87.3|ICD9CM|Contact with and (suspected ) exposure to other potentially hazardous substances|Contact with and (suspected ) exposure to other potentially hazardous substances +C2362603|T033|PT|V87.31|ICD9CM|Contact with and (suspected) exposure to mold|Contact with and (suspected) exposure to mold +C2362603|T033|AB|V87.31|ICD9CM|Contact/exposure mold|Contact/exposure mold +C2712565|T033|PT|V87.32|ICD9CM|Contact with and (suspected) exposure to algae bloom|Contact with and (suspected) exposure to algae bloom +C2712565|T033|AB|V87.32|ICD9CM|Contact/exp algae bloom|Contact/exp algae bloom +C2349912|T033|AB|V87.39|ICD9CM|Cont/exp hazard sub NEC|Cont/exp hazard sub NEC +C2349912|T033|PT|V87.39|ICD9CM|Contact with and (suspected) exposure to other potentially hazardous substances|Contact with and (suspected) exposure to other potentially hazardous substances +C2349916|T033|HT|V87.4|ICD9CM|Personal history of drug therapy|Personal history of drug therapy +C2349913|T033|AB|V87.41|ICD9CM|Hx antineoplastic chemo|Hx antineoplastic chemo +C2349913|T033|PT|V87.41|ICD9CM|Personal history of antineoplastic chemotherapy|Personal history of antineoplastic chemotherapy +C2349914|T033|AB|V87.42|ICD9CM|Hx monoclonal drug thrpy|Hx monoclonal drug thrpy +C2349914|T033|PT|V87.42|ICD9CM|Personal history of monoclonal drug therapy|Personal history of monoclonal drug therapy +C2712566|T033|AB|V87.43|ICD9CM|Hx estrogen therapy|Hx estrogen therapy +C2712566|T033|PT|V87.43|ICD9CM|Personal history of estrogen therapy|Personal history of estrogen therapy +C2712567|T033|AB|V87.44|ICD9CM|Hx inhaled steroid thrpy|Hx inhaled steroid thrpy +C2712567|T033|PT|V87.44|ICD9CM|Personal history of inhaled steroid therapy|Personal history of inhaled steroid therapy +C2712644|T033|AB|V87.45|ICD9CM|Hx systemc steroid thrpy|Hx systemc steroid thrpy +C2712644|T033|PT|V87.45|ICD9CM|Personal history of systemic steroid therapy|Personal history of systemic steroid therapy +C2911483|T033|AB|V87.46|ICD9CM|Hx immunosuppres thrpy|Hx immunosuppres thrpy +C2911483|T033|PT|V87.46|ICD9CM|Personal history of immunosuppressive therapy|Personal history of immunosuppressive therapy +C2349915|T033|AB|V87.49|ICD9CM|Hx drug therapy NEC|Hx drug therapy NEC +C2349915|T033|PT|V87.49|ICD9CM|Personal history of other drug therapy|Personal history of other drug therapy +C2349918|T033|HT|V88|ICD9CM|Acquired absence of other organs and tissue|Acquired absence of other organs and tissue +C2349918|T033|HT|V88-V88.99|ICD9CM|ACQUIRED ABSENCE OF OTHER ORGANS AND TISSUE|ACQUIRED ABSENCE OF OTHER ORGANS AND TISSUE +C2349925|T020|HT|V88.0|ICD9CM|Acquired absence of cervix and uterus|Acquired absence of cervix and uterus +C2349919|T033|AB|V88.01|ICD9CM|Acq absnce cervix/uterus|Acq absnce cervix/uterus +C2349919|T033|PT|V88.01|ICD9CM|Acquired absence of both cervix and uterus|Acquired absence of both cervix and uterus +C2349922|T033|AB|V88.02|ICD9CM|Acq ab ut remn cerv stmp|Acq ab ut remn cerv stmp +C2349922|T033|PT|V88.02|ICD9CM|Acquired absence of uterus with remaining cervical stump|Acquired absence of uterus with remaining cervical stump +C2349924|T033|AB|V88.03|ICD9CM|Acq absnc cerv/remain ut|Acq absnc cerv/remain ut +C2349924|T033|PT|V88.03|ICD9CM|Acquired absence of cervix with remaining uterus|Acquired absence of cervix with remaining uterus +C1386808|T020|HT|V88.1|ICD9CM|Acquired absence of pancreas|Acquired absence of pancreas +C2921317|T033|AB|V88.11|ICD9CM|Acq total absnc pancreas|Acq total absnc pancreas +C2921317|T033|PT|V88.11|ICD9CM|Acquired total absence of pancreas|Acquired total absence of pancreas +C2921318|T033|AB|V88.12|ICD9CM|Acq part absnce pancreas|Acq part absnce pancreas +C2921318|T033|PT|V88.12|ICD9CM|Acquired partial absence of pancreas|Acquired partial absence of pancreas +C3161260|T020|HT|V88.2|ICD9CM|Acquired absence of joint|Acquired absence of joint +C3161156|T020|AB|V88.21|ICD9CM|Acq absence of hip joint|Acq absence of hip joint +C3161156|T020|PT|V88.21|ICD9CM|Acquired absence of hip joint|Acquired absence of hip joint +C3161157|T020|AB|V88.22|ICD9CM|Acq absence knee joint|Acq absence knee joint +C3161157|T020|PT|V88.22|ICD9CM|Acquired absence of knee joint|Acquired absence of knee joint +C3161158|T020|AB|V88.29|ICD9CM|Acq absence of oth joint|Acq absence of oth joint +C3161158|T020|PT|V88.29|ICD9CM|Acquired absence of other joint|Acquired absence of other joint +C2349935|T047|HT|V89|ICD9CM|Other suspected conditions not found|Other suspected conditions not found +C2349935|T047|HT|V89-V89.99|ICD9CM|OTHER SUSPECTED CONDITIONS NOT FOUND|OTHER SUSPECTED CONDITIONS NOT FOUND +C2349934|T033|HT|V89.0|ICD9CM|Suspected maternal and fetal conditions not found|Suspected maternal and fetal conditions not found +C2349926|T033|AB|V89.01|ICD9CM|Sus amntc cav/mem nt fnd|Sus amntc cav/mem nt fnd +C2349926|T033|PT|V89.01|ICD9CM|Suspected problem with amniotic cavity and membrane not found|Suspected problem with amniotic cavity and membrane not found +C2349929|T033|AB|V89.02|ICD9CM|Sus placentl prob nt fnd|Sus placentl prob nt fnd +C2349929|T033|PT|V89.02|ICD9CM|Suspected placental problem not found|Suspected placental problem not found +C2349930|T033|AB|V89.03|ICD9CM|Sus fetal anomaly nt fnd|Sus fetal anomaly nt fnd +C2349930|T033|PT|V89.03|ICD9CM|Suspected fetal anomaly not found|Suspected fetal anomaly not found +C2349931|T033|AB|V89.04|ICD9CM|Sus fetal growth not fnd|Sus fetal growth not fnd +C2349931|T033|PT|V89.04|ICD9CM|Suspected problem with fetal growth not found|Suspected problem with fetal growth not found +C2349932|T033|AB|V89.05|ICD9CM|Sus cervcl shortn nt fnd|Sus cervcl shortn nt fnd +C2349932|T033|PT|V89.05|ICD9CM|Suspected cervical shortening not found|Suspected cervical shortening not found +C2349933|T033|AB|V89.09|ICD9CM|Oth sus mat/ftl nt fnd|Oth sus mat/ftl nt fnd +C2349933|T033|PT|V89.09|ICD9CM|Other suspected maternal and fetal condition not found|Other suspected maternal and fetal condition not found +C0865505|T037|HT|V90|ICD9CM|Retained foreign body|Retained foreign body +C0865505|T037|HT|V90-V90.99|ICD9CM|RETAINED FOREIGN BODY|RETAINED FOREIGN BODY +C2921322|T033|HT|V90.0|ICD9CM|Retained radioactive fragment|Retained radioactive fragment +C2921323|T033|AB|V90.01|ICD9CM|Retain deplete uran frag|Retain deplete uran frag +C2921323|T033|PT|V90.01|ICD9CM|Retained depleted uranium fragments|Retained depleted uranium fragments +C2921325|T033|PT|V90.09|ICD9CM|Other retained radioactive fragments|Other retained radioactive fragments +C2921325|T033|AB|V90.09|ICD9CM|Retain radioac frag NEC|Retain radioac frag NEC +C2921327|T033|HT|V90.1|ICD9CM|Retained metal fragments|Retained metal fragments +C2921327|T033|AB|V90.10|ICD9CM|Retained metal frag NOS|Retained metal frag NOS +C2921327|T033|PT|V90.10|ICD9CM|Retained metal fragments, unspecified|Retained metal fragments, unspecified +C2921328|T033|AB|V90.11|ICD9CM|Retain magnet metal frag|Retain magnet metal frag +C2921328|T033|PT|V90.11|ICD9CM|Retained magnetic metal fragments|Retained magnetic metal fragments +C2921329|T033|AB|V90.12|ICD9CM|Retain nonmag meta frag|Retain nonmag meta frag +C2921329|T033|PT|V90.12|ICD9CM|Retained nonmagnetic metal fragments|Retained nonmagnetic metal fragments +C2921333|T033|AB|V90.2|ICD9CM|Retain plastic fragments|Retain plastic fragments +C2921333|T033|PT|V90.2|ICD9CM|Retained plastic fragments|Retained plastic fragments +C2921334|T033|HT|V90.3|ICD9CM|Retained organic fragments|Retained organic fragments +C2921335|T033|PT|V90.31|ICD9CM|Retained animal quills or spines|Retained animal quills or spines +C2921335|T033|AB|V90.31|ICD9CM|Retained quills/spines|Retained quills/spines +C4721538|T033|PT|V90.32|ICD9CM|Retained tooth|Retained tooth +C4721538|T033|AB|V90.32|ICD9CM|Retained tooth|Retained tooth +C2921337|T033|PT|V90.33|ICD9CM|Retained wood fragments|Retained wood fragments +C2921337|T033|AB|V90.33|ICD9CM|Retained wood fragments|Retained wood fragments +C2921338|T033|PT|V90.39|ICD9CM|Other retained organic fragments|Other retained organic fragments +C2921338|T033|AB|V90.39|ICD9CM|Retain organic frag NEC|Retain organic frag NEC +C2921339|T033|HT|V90.8|ICD9CM|Other specified retained foreign body|Other specified retained foreign body +C2921340|T033|AB|V90.81|ICD9CM|Retained glass fragments|Retained glass fragments +C2921340|T033|PT|V90.81|ICD9CM|Retained glass fragments|Retained glass fragments +C2921342|T033|AB|V90.83|ICD9CM|Retain stone/crystl frag|Retain stone/crystl frag +C2921342|T033|PT|V90.83|ICD9CM|Retained stone or crystalline fragments|Retained stone or crystalline fragments +C2921339|T033|PT|V90.89|ICD9CM|Other specified retained foreign body|Other specified retained foreign body +C2921339|T033|AB|V90.89|ICD9CM|Retain FB NEC|Retain FB NEC +C2921343|T033|AB|V90.9|ICD9CM|Retain FB, mat NOS|Retain FB, mat NOS +C2921343|T033|PT|V90.9|ICD9CM|Retained foreign body, unspecified material|Retained foreign body, unspecified material +C2921344|T033|HT|V91|ICD9CM|Multiple gestation placenta status|Multiple gestation placenta status +C2921344|T033|HT|V91-V91.99|ICD9CM|MULTIPLE GESTATION PLACENTA STATUS|MULTIPLE GESTATION PLACENTA STATUS +C2921345|T033|HT|V91.0|ICD9CM|Twin gestation placenta status|Twin gestation placenta status +C2921346|T033|AB|V91.00|ICD9CM|Twin gest-plac/sac NOS|Twin gest-plac/sac NOS +C2921346|T033|PT|V91.00|ICD9CM|Twin gestation, unspecified number of placenta, unspecified number of amniotic sacs|Twin gestation, unspecified number of placenta, unspecified number of amniotic sacs +C2921347|T033|AB|V91.01|ICD9CM|Twin gest-monochr/monoam|Twin gest-monochr/monoam +C2921347|T033|PT|V91.01|ICD9CM|Twin gestation, monochorionic/monoamniotic (one placenta, one amniotic sac)|Twin gestation, monochorionic/monoamniotic (one placenta, one amniotic sac) +C2921348|T033|AB|V91.02|ICD9CM|Twin gest-monochr/diamni|Twin gest-monochr/diamni +C2921348|T033|PT|V91.02|ICD9CM|Twin gestation, monochorionic/diamniotic (one placenta, two amniotic sacs)|Twin gestation, monochorionic/diamniotic (one placenta, two amniotic sacs) +C2921349|T033|AB|V91.03|ICD9CM|Twin gest-dich/diamniotc|Twin gest-dich/diamniotc +C2921349|T033|PT|V91.03|ICD9CM|Twin gestation, dichorionic/diamniotic (two placentae, two amniotic sacs)|Twin gestation, dichorionic/diamniotic (two placentae, two amniotic sacs) +C2921350|T033|AB|V91.09|ICD9CM|Twin gest-plac/sac undet|Twin gest-plac/sac undet +C2921350|T033|PT|V91.09|ICD9CM|Twin gestation, unable to determine number of placenta and number of amniotic sacs|Twin gestation, unable to determine number of placenta and number of amniotic sacs +C2921351|T033|HT|V91.1|ICD9CM|Triplet gestation placenta status|Triplet gestation placenta status +C2921352|T033|AB|V91.10|ICD9CM|Tripl gest-plac/sac NOS|Tripl gest-plac/sac NOS +C2921352|T033|PT|V91.10|ICD9CM|Triplet gestation, unspecified number of placenta and unspecified number of amniotic sacs|Triplet gestation, unspecified number of placenta and unspecified number of amniotic sacs +C2921353|T033|AB|V91.11|ICD9CM|Triplet gest 2+ monochor|Triplet gest 2+ monochor +C2921353|T033|PT|V91.11|ICD9CM|Triplet gestation, with two or more monochorionic fetuses|Triplet gestation, with two or more monochorionic fetuses +C2921354|T033|AB|V91.12|ICD9CM|Triplet gest 2+ monoamn|Triplet gest 2+ monoamn +C2921354|T033|PT|V91.12|ICD9CM|Triplet gestation, with two or more monoamniotic fetuses|Triplet gestation, with two or more monoamniotic fetuses +C2921355|T033|AB|V91.19|ICD9CM|Tripl gest-plac/sac und|Tripl gest-plac/sac und +C2921355|T033|PT|V91.19|ICD9CM|Triplet gestation, unable to determine number of placenta and number of amniotic sacs|Triplet gestation, unable to determine number of placenta and number of amniotic sacs +C2921356|T033|HT|V91.2|ICD9CM|Quadruplet gestation placenta status|Quadruplet gestation placenta status +C2921357|T033|AB|V91.20|ICD9CM|Quad gest-plac/sac NOS|Quad gest-plac/sac NOS +C2921357|T033|PT|V91.20|ICD9CM|Quadruplet gestation, unspecified number of placenta and unspecified number of amniotic sacs|Quadruplet gestation, unspecified number of placenta and unspecified number of amniotic sacs +C2921358|T033|AB|V91.21|ICD9CM|Quad gest 2+ monochorion|Quad gest 2+ monochorion +C2921358|T033|PT|V91.21|ICD9CM|Quadruplet gestation, with two or more monochorionic fetuses|Quadruplet gestation, with two or more monochorionic fetuses +C2921359|T033|AB|V91.22|ICD9CM|Quad gest 2+ monoamniotc|Quad gest 2+ monoamniotc +C2921359|T033|PT|V91.22|ICD9CM|Quadruplet gestation, with two or more monoamniotic fetuses|Quadruplet gestation, with two or more monoamniotic fetuses +C2921360|T033|AB|V91.29|ICD9CM|Quad gest-plac/sac undet|Quad gest-plac/sac undet +C2921360|T033|PT|V91.29|ICD9CM|Quadruplet gestation, unable to determine number of placenta and number of amniotic sacs|Quadruplet gestation, unable to determine number of placenta and number of amniotic sacs +C2921361|T033|HT|V91.9|ICD9CM|Other specified multiple gestation placenta status|Other specified multiple gestation placenta status +C2921363|T033|AB|V91.90|ICD9CM|Mult gest-plac/sac NOS|Mult gest-plac/sac NOS +C2921364|T033|AB|V91.91|ICD9CM|Mult gest 2+ monochr NEC|Mult gest 2+ monochr NEC +C2921364|T033|PT|V91.91|ICD9CM|Other specified multiple gestation, with two or more monochorionic fetuses|Other specified multiple gestation, with two or more monochorionic fetuses +C2921365|T033|AB|V91.92|ICD9CM|Mult gest 2+ monoamn NEC|Mult gest 2+ monoamn NEC +C2921365|T033|PT|V91.92|ICD9CM|Other specified multiple gestation, with two or more monoamniotic fetuses|Other specified multiple gestation, with two or more monoamniotic fetuses +C2921366|T033|AB|V91.99|ICD9CM|Mult gest-plac/sac undet|Mult gest-plac/sac undet diff --git a/cumulus_library/studies/vocab/icd_legend.sql b/cumulus_library/studies/vocab/icd_legend.sql new file mode 100644 index 00000000..5279fc63 --- /dev/null +++ b/cumulus_library/studies/vocab/icd_legend.sql @@ -0,0 +1,20 @@ +CREATE OR REPLACE VIEW vocab__icd_legend AS +SELECT + code, + display, + code_display, + code_system +FROM ( + SELECT + code, + str AS display, + CONCAT(code, ' ', str) AS code_display, + sab AS code_system, + ROW_NUMBER() + OVER ( + PARTITION BY sab, code + ORDER BY LENGTH(str) ASC + ) AS pref + FROM vocab__icd +) +WHERE pref = 1; diff --git a/cumulus_library/studies/vocab/manifest.toml b/cumulus_library/studies/vocab/manifest.toml new file mode 100644 index 00000000..20a18972 --- /dev/null +++ b/cumulus_library/studies/vocab/manifest.toml @@ -0,0 +1,11 @@ +study_prefix = "vocab" + +[python_config] +file_names = [ + "vocab_icd_builder.py", +] + +[sql_config] +file_names = [ + "icd_legend.sql", +] diff --git a/cumulus_library/studies/vocab/vocab_icd_builder.py b/cumulus_library/studies/vocab/vocab_icd_builder.py new file mode 100644 index 00000000..46eabdb8 --- /dev/null +++ b/cumulus_library/studies/vocab/vocab_icd_builder.py @@ -0,0 +1,126 @@ +""" Module for directly loading ICD bsvs into athena tables """ +import csv + +from pathlib import Path + +from rich.progress import Progress + +from cumulus_library.base_runner import BaseRunner +from cumulus_library.helper import query_console_output +from cumulus_library.template_sql.templates import ( + get_ctas_query, + get_insert_into_query, +) + + +class VocabIcdRunner(BaseRunner): + def run_executor(self, cursor: object, schema: str, verbose: bool): + self.create_icd_legend(self, cursor, schema, verbose) + + @staticmethod + def clean_row(row, filename): + """Removes non-SQL safe charatcers from the input row. + + WARNING: This function, for the intended datasource specifically, drops the last + column since it is a known duplicate. This should be re-examined for other + datasources + """ + for i in range(len(row) - 1): + cell = str(row[i]).replace("'", "").replace(";", ",") + row[i] = cell + return row[:-1] + + def create_icd_legend( + self, cursor: object, schema: str, verbose: bool, partition_size: int = 2000 + ): + """input point from make.execute_sql_template. + + :param cursor: A database cursor object + :param schema: the schema/db name, matching the cursor + :param verbose: if true, outputs raw query, else displays progress bar + :partition_size: number of lines to read. Athena queries have a char limit. + """ + table_name = "vocab__icd" + icd_files = ["ICD10", "ICD9"] + path = Path(__file__).parent + query_count = 1 # accounts for static CTAS query + for filename in icd_files: + query_count += ( + sum(1 for i in open(f"{path}/{filename}.bsv", "rb")) / partition_size + ) + + with Progress(disable=verbose) as progress: + task = progress.add_task( + f"Uploading {table_name} data...", + total=query_count, + visible=not verbose, + ) + self.build_vocab_icd( + self, + cursor, + schema, + verbose, + partition_size, + table_name, + path, + icd_files, + progress, + task, + ) + + @staticmethod + def build_vocab_icd( + self, + cursor, + schema, + verbose, + partition_size, + table_name, + path, + icd_files, + progress, + task, + ): + """Constructs queries and posts to athena.""" + headers = ["CUI", "TUI", "TTY", "CODE", "SAB", "STR"] + header_types = [f"{x} string" for x in headers] + rows_processed = 0 + dataset = [] + created = False + for filename in icd_files: + with open(f"{path}/{filename}.bsv", "r") as file: + # For the first row in the dataset, we want to coerce types from + # varchar(len(item)) athena default to to an unrestricted varchar, so + # we'll create a table with one row - this make the recast faster, and + # lets us set the partition_size a little higher by limiting the + # character bloat to keep queries under athena's limit of 262144. + reader = csv.reader(file, delimiter="|") + if not created: + row = self.clean_row(next(reader), filename) + ctas_query = get_ctas_query( + schema_name=schema, + table_name=table_name, + dataset=[row], + table_cols=headers, + ) + cursor.execute(ctas_query) + query_console_output(verbose, ctas_query, progress, task) + created = True + for row in reader: + row = self.clean_row(row, filename) + dataset.append(row) + rows_processed += 1 + if rows_processed == partition_size: + insert_into_query = get_insert_into_query( + table_name=table_name, table_cols=headers, dataset=dataset + ) + query_console_output(verbose, insert_into_query, progress, task) + cursor.execute(insert_into_query) + dataset = [] + rows_processed = 0 + if rows_processed > 0: + insert_into_query = get_insert_into_query( + table_name=table_name, table_cols=headers, dataset=dataset + ) + cursor.execute(insert_into_query) + query_console_output(verbose, insert_into_query, progress, task) diff --git a/cumulus_library/study_parser.py b/cumulus_library/study_parser.py new file mode 100644 index 00000000..119ebe89 --- /dev/null +++ b/cumulus_library/study_parser.py @@ -0,0 +1,332 @@ +""" Contains classes for loading study data based on manifest.toml files """ +import inspect +import sys + +from importlib.machinery import SourceFileLoader +from pathlib import Path +from typing import List, Optional + +import toml + +from rich.progress import Progress, TaskID, track + +from cumulus_library.base_runner import BaseRunner +from cumulus_library.helper import query_console_output, load_text, parse_sql +from cumulus_library.template_sql.templates import ( + get_show_tables, + get_show_views, + get_drop_view_table, +) + +StrList = List[str] + + +class StudyManifestParsingError(Exception): + """Basic error for StudyManifestParser""" + + +class StudyManifestParser: + """Handles loading of study data from manifest files. + + The goal of this class is to make it so that a researcher can contribute a study + definition without touching the main python infrastructure. It provides + mechanisms for IDing studies/files of interest, and for executing queries, but + specifically it should never be in charge of instantiation a cursor itself - + this will help to future proof against other database implementations in the + future, assuming those DBs have a PEP-249 cursor available (and this is why we + are hinting generic objects for cursors). + + """ + + _study_path = None + _study_config = {} + + def __init__(self, study_path: Optional[Path] = None): + """Instantiates a StudyManifestParser. + + :param study_path: A pathlib Path object, optional + """ + if study_path is not None: + self.load_study_manifest(study_path) + + def __repr__(self): + return str(self._study_config) + + ### toml parsing helper functions + def load_study_manifest(self, study_path: Path) -> None: + """Reads in a config object from a directory containing a manifest.toml + + :param study_path: A pathlib.Path object pointing to a study directory + :raises StudyManifestParsingError: the manifest.toml is malformed or missing. + """ + try: + with open(f"{study_path}/manifest.toml", encoding="UTF-8") as file: + config = toml.load(file) + if not config.get("study_prefix") or not isinstance( + config["study_prefix"], str + ): + raise StudyManifestParsingError( + f"Invalid prefix in manifest at {study_path}" + ) + self._study_config = config + self._study_path = study_path + except FileNotFoundError: + raise StudyManifestParsingError( # pylint: disable=raise-missing-from + f"Missing or invalid manifest found at {study_path}" + ) + + def get_study_prefix(self) -> Optional[str]: + """Reads the name of a study prefix from the in-memory study config + + :returns: A string of the prefix in the manifest, or None if not found + """ + return self._study_config.get("study_prefix") + + def get_sql_file_list(self) -> Optional[StrList]: + """Reads the contents of the sql_config array from the manifest + + :returns: An array of sql files from the manifest, or None if not found. + """ + sql_config = self._study_config.get("sql_config", {}) + return sql_config.get("file_names", []) + + def get_python_file_list(self) -> Optional[StrList]: + """Reads the contents of the python_config array from the manifest + + :returns: An array of sql files from the manifest, or None if not found. + """ + sql_config = self._study_config.get("python_config", {}) + return sql_config.get("file_names", []) + + def get_export_table_list(self) -> Optional[StrList]: + """Reads the contents of the export_list array from the manifest + + :returns: An array of tables to export from the manifest, or None if not found. + """ + export_config = self._study_config.get("export_config", {}) + export_table_list = export_config.get("export_list", []) + for table in export_table_list: + if not table.startswith(f"{self.get_study_prefix()}__"): + raise StudyManifestParsingError( + f"{table} in export list does not start with prefix " + f"{self.get_study_prefix()}__ - check your manifest file." + ) + return export_table_list + + def reset_export_dir(self) -> None: + """ + Removes exports associated with this study from the ../data_export directory. + """ + project_path = Path(__file__).resolve().parents[1] + path = Path(f"{str(project_path)}/data_export/{self.get_study_prefix()}/") + if path.exists(): + for file in path.glob("*"): + file.unlink() + + # SQL related functions + def clean_study( + self, cursor: object, schema_name: str, verbose: bool = False + ) -> List: + """Removes tables beginning with the study prefix from the database schema + + :param cursor: A PEP-249 compatible cursor object + :param schema_name: The name of the schema containing the study tables + :verbose: toggle from progress bar to query output, optional + :returns: list of dropped tables (for unit testing only) + + TODO: If we need to support additional databases, we may need to investigate + additional ways to get a list of table prefixes + """ + if not schema_name: + raise ValueError("No schema name provided") + prefix = self.get_study_prefix() + view_sql = get_show_views(schema_name, prefix) + table_sql = get_show_tables(schema_name, prefix) + view_table_list = [] + for query_and_type in [[view_sql, "VIEW"], [table_sql, "TABLE"]]: + cursor.execute(query_and_type[0]) + for db_row_tuple in cursor: + # this check handles athena reporting views as also being tables, + # so we don't waste time dropping things that don't exist + if query_and_type[1] == "TABLE": + if not any( + db_row_tuple[0] in query_and_type + for query_and_type in view_table_list + ): + view_table_list.append([db_row_tuple[0], query_and_type[1]]) + else: + view_table_list.append([db_row_tuple[0], query_and_type[1]]) + if not view_table_list: + return view_table_list + + # We want to only show a progress bar if we are :not: printing SQL lines + with Progress(disable=verbose) as progress: + task = progress.add_task( + f"Removing {self.get_study_prefix()} study artifacts...", + total=len(view_table_list), + visible=not verbose, + ) + self._execute_drop_queries(cursor, verbose, view_table_list, progress, task) + return view_table_list + + def _execute_drop_queries( + self, + cursor: object, + verbose: bool, + view_table_list: List, + progress: Progress, + task: TaskID, + ) -> None: + """Handler for executing drop view/table queries and displaying console output. + + :param cursor: A PEP-249 compatible cursor object + :param verbose: toggle from progress bar to query output + :param view_table_list: a list of views and tables beginning with the study prefix + :param progress: a rich progress bar renderer + :param task: a TaskID for a given progress bar + """ + for view_table in view_table_list: + drop_view_table = get_drop_view_table( + name=view_table[0], view_or_table=view_table[1] + ) + cursor.execute(drop_view_table) + query_console_output(verbose, drop_view_table, progress, task) + + def run_python_builder( + self, cursor: object, schema: str, verbose: bool = False + ) -> None: + """Loads arbitrary modules from a manifest and executes code via BaseRunners + + :param cursor: A PEP-249 compatible cursor object + :param schema: The name of the schema to write tables to + :param verbose: toggle from progress bar to query output + """ + for file in self.get_python_file_list(): + # Grab the baserunner class from the manifest-defined module + # TODO: if we need to support python 3.12, cutover to exec_modules + # (warning: it sounds like this is non-trivial) + runner_module = SourceFileLoader( # pylint: disable=deprecated-method, no-value-for-parameter + "BaseRunner", f"{self._study_path}/{file}" + ).load_module() + + # We're going to find all subclasses of BaseRunner in this file. + # Since BaseRunner itself is a valid subclass of BaseRunner, we'll + # detect and skip it. If we don't find exactly one subclass, we'll punt. + runner_subclasses = [] + for _, cls_obj in inspect.getmembers(runner_module, inspect.isclass): + if issubclass(cls_obj, BaseRunner) and cls_obj != BaseRunner: + runner_subclasses.append(cls_obj) + if len(runner_subclasses) != 1: + raise StudyManifestParsingError( + f"Error loading {self._study_path}/{file}\n" + "Custom runners must extend the BaseRunner class exactly once per module." + ) + + # We'll get the subclass, run the executor code, and then remove it + # so it doesn't interfere with the next python module to execute, since + # the subclass would otherwise hang around. + runner = runner_subclasses[0] + runner.run_executor(runner, cursor, schema, verbose) + del sys.modules[runner_module.__name__] + del runner_module + + def build_study(self, cursor: object, verbose: bool = False) -> List: + """Creates tables in the schema by iterating through the sql_config.file_names + + :param cursor: A PEP-249 compatible cursor object + :param schema: The name of the schema to write tables to + :param verbose: toggle from progress bar to query output, optional + :returns: loaded queries (for unit testing only) + """ + queries = [] + for file in self.get_sql_file_list(): + for query in parse_sql(load_text(f"{self._study_path}/{file}")): + queries.append([query, file]) + if len(queries) == 0: + return [] + # We want to only show a progress bar if we are :not: printing SQL lines + with Progress(disable=verbose) as progress: + task = progress.add_task( + f"Creating {self.get_study_prefix()} study in db...", + total=len(queries), + visible=not verbose, + ) + self._execute_build_queries( + cursor, + verbose, + queries, + progress, + task, + ) + return queries + + def _query_error(self, query_and_filename: List, exit_message: str) -> None: + print( + f"An error occured executing the following query in {query_and_filename[1]}:", + file=sys.stderr, + ) + print("--------", file=sys.stderr) + print(query_and_filename[0], file=sys.stderr) + print("--------", file=sys.stderr) + sys.exit(exit_message) + + def _execute_build_queries( + self, + cursor: object, + verbose: bool, + queries: list, + progress: Progress, + task: TaskID, + ) -> None: + """Handler for executing create table queries and displaying console output. + + :param cursor: A PEP-249 compatible cursor object + :param verbose: toggle from progress bar to query output + :param queries: a list of queries read from files in sql_config.file_names + :param progress: a rich progress bar renderer + :param task: a TaskID for a given progress bar + """ + for query in queries: + if f"{self.get_study_prefix()}__" not in query[0].split("\n")[0]: + self._query_error( + query, + "This query does not contain the study prefix. All tables should " + "start with a string like `study_prefix__`.", + ) + try: + cursor.execute(query[0]) + query_console_output(verbose, query[0], progress, task) + except Exception as e: # pylint: disable=broad-exception-caught + self._query_error( + query, + "You can debug issues with this query using `sqlfluff lint`, " + "or by executing the query directly against the database.\n" + f"Error: {e}", + ) + + # Database exporting functions + + def export_study(self, cursor: object) -> List: + """Exports csvs/parquet extracts of tables listed in export_list + + :param cursor: A PEP-249 compatible cursor object + :returns: list of executed queries (for unit testing only) + + TODO: If we need to support additional databases, we may need to investigate + additional ways to convert the query to a pandas object + """ + self.reset_export_dir() + queries = [] + for table in track( + self.get_export_table_list(), + description=f"Exporting {self.get_study_prefix()} counts...", + ): + query = f"select * from {table}" + dataframe = cursor.execute(query).as_pandas() + project_path = Path(__file__).resolve().parents[1] + path = Path(f"{str(project_path)}/data_export/{self.get_study_prefix()}/") + path.mkdir(parents=True, exist_ok=True) + dataframe.to_csv(f"{path}/{table}.csv", index=False) + dataframe.to_parquet(f"{path}/{table}.parquet", index=False) + queries.append(query) + return queries diff --git a/cumulus_library/template_sql/ctas.sql.jinja b/cumulus_library/template_sql/ctas.sql.jinja new file mode 100644 index 00000000..a3f208f1 --- /dev/null +++ b/cumulus_library/template_sql/ctas.sql.jinja @@ -0,0 +1,27 @@ +CREATE TABLE "{{ schema_name }}"."{{ table_name }}" AS ( + SELECT * FROM ( + VALUES + {%- for row in dataset %} + (( + {%- for field in row -%} + cast('{{ field }}' AS varchar) + {%- if not loop.last -%} + , + {%- endif -%} + {%- endfor -%} + )) + {%- if not loop.last -%} + , + {%- endif -%} + {%- endfor %} + ) + AS t -- noqa: L025 + ( + {%- for col in table_cols -%} + {{ col }} + {%- if not loop.last -%} + , + {%- endif -%} + {%- endfor -%} + ) +); diff --git a/cumulus_library/template_sql/drop_view_table.sql.jinja b/cumulus_library/template_sql/drop_view_table.sql.jinja new file mode 100644 index 00000000..98906a8e --- /dev/null +++ b/cumulus_library/template_sql/drop_view_table.sql.jinja @@ -0,0 +1 @@ +DROP {{ view_or_table }} IF EXISTS {{ view_or_table_name }}; diff --git a/cumulus_library/template_sql/insert_into.sql.jinja b/cumulus_library/template_sql/insert_into.sql.jinja new file mode 100644 index 00000000..28e89ecb --- /dev/null +++ b/cumulus_library/template_sql/insert_into.sql.jinja @@ -0,0 +1,23 @@ +INSERT INTO {{ table_name }} +( + {%- for col in table_cols -%} + {{ col }} + {%- if not loop.last -%} + , + {%- endif -%} + {%- endfor -%} +) +VALUES +{%- for row in dataset %} +(( + {%- for field in row -%} + '{{ field }}' + {%- if not loop.last -%} + , + {%- endif -%} + {%- endfor -%} +)) +{%- if not loop.last -%} +, +{%- endif -%} +{%- endfor %}; diff --git a/cumulus_library/template_sql/show_tables.sql.jinja b/cumulus_library/template_sql/show_tables.sql.jinja new file mode 100644 index 00000000..286c9f0b --- /dev/null +++ b/cumulus_library/template_sql/show_tables.sql.jinja @@ -0,0 +1 @@ +SHOW TABLES FROM `{{schema_name}}` '{{prefix}}__*'; diff --git a/cumulus_library/template_sql/show_views.sql.jinja b/cumulus_library/template_sql/show_views.sql.jinja new file mode 100644 index 00000000..63284f8c --- /dev/null +++ b/cumulus_library/template_sql/show_views.sql.jinja @@ -0,0 +1 @@ +SHOW VIEWS IN "{{schema_name}}" LIKE '{{prefix}}__*'; diff --git a/cumulus_library/template_sql/templates.py b/cumulus_library/template_sql/templates.py new file mode 100644 index 00000000..f44c5771 --- /dev/null +++ b/cumulus_library/template_sql/templates.py @@ -0,0 +1,95 @@ +""" Collection of jinja template getters for common SQL queries """ +from enum import Enum +from pathlib import Path +from typing import List + +from jinja2 import Template + + +class TableView(Enum): + TABLE = "TABLE" + VIEW = "VIEW" + + +def get_drop_view_table(name: str, view_or_table: str) -> str: + """Generates a drop table if exists query""" + if view_or_table in [e.value for e in TableView]: + path = Path(__file__).parent + with open(f"{path}/drop_view_table.sql.jinja") as drop_view_table: + return Template(drop_view_table.read()).render( + view_or_table_name=name, view_or_table=view_or_table + ) + + +def get_show_tables(schema_name: str, prefix: str) -> str: + """Generates a show tables query, filtered by prefix + + The intended use case for this function is to get a list of manifest study + tables, so that they can be individually dropped during a clean call. + + :param schema_name: The athena schema to query + :param table_name: The prefix to filter by. Jinja template auto adds '__'. + """ + path = Path(__file__).parent + with open(f"{path}/show_tables.sql.jinja") as show_tables: + return Template(show_tables.read()).render( + schema_name=schema_name, prefix=prefix + ) + + +def get_show_views(schema_name: str, prefix: str) -> str: + """Generates a show vies query, filtered by prefix + + The intended use case for this function is to get a list of manifest study + views, so that they can be individually dropped during a clean call. + + :param schema_name: The athena schema to query + :param table_name: The prefix to filter by. Jinja template auto adds '__'. + """ + path = Path(__file__).parent + with open(f"{path}/show_views.sql.jinja") as show_tables: + return Template(show_tables.read()).render( + schema_name=schema_name, prefix=prefix + ) + + +def get_ctas_query( + schema_name: str, table_name: str, dataset: List[List[str]], table_cols: List[str] +) -> str: + """Generates a create table as query for inserting static data into athena + + Note that unlike other queries, the nature of the CTAS implementation in athena + requires a schema name. This schema name should match the schema of your cursor, + or the other queries in this template will not function correctly. All columns + will be specified as varchar type. + + :param schema_name: The athena schema to create the table in + :param table_name: The name of the athena table to create + :param dataset: Array of data arrays to insert, i.e. [['1','3'],['2','4']] + :param table_cols: Comma deleniated column names, i.e. ['first,second'] + """ + path = Path(__file__).parent + with open(f"{path}/ctas.sql.jinja") as ctas: + return Template(ctas.read()).render( + schema_name=schema_name, + table_name=table_name, + dataset=dataset, + table_cols=table_cols, + ) + + +def get_insert_into_query( + table_name: str, table_cols: List[str], dataset: List[List[str]] +) -> str: + """Generates an insert query for adding data to an existing athena table + + :param schema_name: The athena query to create the table in + :param table_name: The name of the athena table to create + :param table_cols: Comma deleniated column names, i.e. ['first','second'] + :param dataset: Array of data arrays to insert, i.e. [['1','3'],['2','4']] + """ + path = Path(__file__).parent + with open(f"{path}/insert_into.sql.jinja") as insert_into: + return Template(insert_into.read()).render( + table_name=table_name, table_cols=table_cols, dataset=dataset + ) diff --git a/docs/aws-setup.md b/docs/aws-setup.md new file mode 100644 index 00000000..3c8808a4 --- /dev/null +++ b/docs/aws-setup.md @@ -0,0 +1,52 @@ + +# AWS setup + +Cumulus library executes queries against an +[Amazon Athena](https://aws.amazon.com/athena/) datastore. A +[sample database](https://github.com/smart-on-fhir/cumulus-library-sample-database) +for creating such a datastore is available for testing purposes if you don't +already have one. + +The cloudformation template in the sample database's Cloudformation template should +have the appropriate permissions set for all the services. If you need to configure +an IAM policy manually, you will need to ensure the AWS profile you are using has +the following permissions: + +- Glue access to starting/stopping crawlers +- Glue Get/create database permission for your glue catalog and the database +- Glue CRUD permissions for tables and partitions for the catalog, database, and all tables +- Athena CRUD query access and queing permissions +- S3 CRUD access to your ETL bucket (along with any secrets/kms keys) + +A [sample IAM policy](./sample-iam-policy.json) for this use case is available as +a starting point. + +## Local AWS configuration + +The [AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html) +has some built in hooks that allow applications to seamlessly connect to AWS services. +If you are going to be using AWS services for more than just Cumulus, we recommend +following the +[CLI installation guide](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html) +as well as the +[configuration and credentials guide](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) +so that anything on your system can successfully communicate with AWS. + +If you are only using AWS for Cumulus, it may be simpler to configure environment +variables containing your credential information. The relevant ones are: +- `CUMULUS_LIBRARY_PROFILE` : The profile name ('default' is usually the right value, +unless your organization is using advanced credential management.) +- `CUMULUS_LIBRARY_REGION` : The AWS region your bucket is in (e.g., us-east-1) + +In both cases, there are several additional parameters you will need to configure +to specify where your database information lives. Unless you are using multiple +library instances, you will want to specify these values +- `CUMULUS_LIBRARY_SCHEMA` : The name of the schema Athena will use ('cumulus_library_sample_db' if using the sample DB) +- `CUMULUS_LIBRARY_S3` : The URL of your S3 bucket + ('s3://cumulus_library_sample_db-(AWS account ID)-(AWS region)' if using sample db) +- `CUMULUS_LIBRARY_PROFILE` : the Athena profile to execute queries in ('cumulus_library_sample_db' if using the sample DB) + +Configuring environment variables on your system is out of scope of this document, but several guides are available elsewhere. [This guide](https://www.twilio.com/blog/2017/01/how-to-set-environment-variables.html), for example, covers Mac, Windows, and Linux. And, as a plus, it has a picture of an adorable puppy at the top of it. \ No newline at end of file diff --git a/docs/core-study-details.md b/docs/core-study-details.md new file mode 100644 index 00000000..dbb9ff38 --- /dev/null +++ b/docs/core-study-details.md @@ -0,0 +1,92 @@ + +# Core study details + +The core study calculates the **patient count** for every patient group using the [SQL CUBE function](https://prestodb.io/docs/current/sql/select.html#group-by-clause). +*THRESHOLDS* are applied to ensure *no patient group has < 10 patients*. + +Patient count can be the +- number of **unique patients** +- number of **unique patient encounters** +- number of **unique patient encounters with documented medical note** +- Other types of counts are also possible, these are the most common. + +Example + + #count (total) = + #count patients age 9 = + #count patients age 9 and rtPCR POS = + #count patients age 9 and rtPCR NEG = + #count rtPCR POS = + #count rtPCR NEG = + +[SQL CUBE](https://prestodb.io/docs/current/sql/select.html#group-by-clause) produces a "[Mathematical Power Set](http://en.wikipedia.org/wiki/Power_set)" for every patient subgroup. +These numbers are useful inputs for maths that leverage [Joint Probability Distributions](https://en.wikipedia.org/wiki/Joint_probability_distribution). + +Examples: + +- [Odds Ratio](https://en.wikipedia.org/wiki/Odds_ratio) of patient group A vs B +- [Relative Risk Ratio](https://en.wikipedia.org/wiki/Relative_risk) of patient group A vs B +- [Chi-Squared Test](https://en.wikipedia.org/wiki/Chi-squared_test) significance of difference between patient groups +- [Entropy and Mutual Information](https://en.wikipedia.org/wiki/Mutual_information) (core information theory measures) +- [Decision Tree](https://en.wikipedia.org/wiki/Decision_tree) sorts patients into different predicted classes, with visualized tree +- [Naive Bayes Classifier](https://en.wikipedia.org/wiki/Naive_Bayes_classifier) very fast probabilistic classifier +- others + +## Core study exportable counts tables + +### count_core_condition_icd10_month +| Variable | Description | +| -------- | -------- | +| cnt | Count | +| cond_month | Month condition recorded | +| cond_code_display | Condition code | +| enc_class_code | Encounter Code (Healthcare Setting) | + + +### count_core_documentreference_month +| Variable | Description | +| -------- | -------- | +| cnt | Count | +| author_month | Month document was authored | +| enc_class_code | Encounter Code (Healthcare Setting) | +| doc_type_display | Type of Document (display) | + + +### count_core_encounter_day +| Variable | Description | +| -------- | -------- | +| cnt | Count | +| enc_class_code | Encounter Code (Healthcare Setting) | +| start_date | Day patient encounter started | + + +### count_core_encounter_month +| Variable | Description | +| -------- | -------- | +| cnt | Count | +| enc_class_code | Encounter Code (Healthcare Setting) | +| start_month | Month patient encounter started | +| age_at_visit | Patient Age at Encounter | +| gender | Biological sex at birth | +| race_display | Patient reported race | +| postalcode3 | Patient 3 digit zip | + + +### count_core_observation_lab_month +| Variable | Description | +| -------- | -------- | +| cnt | Count | +| lab_month | Month of lab result | +| lab_code | Laboratory Code | +| lab_result_display | Laboratory result | +| enc_class_code | Encounter Code (Healthcare Setting) | + + +### count_core_patient +| Variable | Description | +| -------- | -------- | +| cnt | Count | +| gender | Biological sex at birth | +| age | Age in years calculated since DOB | +| race_display | Patient reported race | +| postalcode3 | Patient 3 digit zip | diff --git a/docs/creating-studies.md b/docs/creating-studies.md new file mode 100644 index 00000000..80810fe0 --- /dev/null +++ b/docs/creating-studies.md @@ -0,0 +1,121 @@ + +# Creating Library Studies + +The following guide talks about how to use the Cumulus Library to create new +aggregations in support of ongoing projects. + +## Forking this repo + +We're recommending the Github fork methodology to allow you to stay up to date +with Cumulus while working on configuring your own projects. + +In the upper right of the Github webpage, you'll see a button labeled `fork`. +Click on it, and it will bring you to a page allowing you to configure how your +copy associated with your github account will work - for most use cases, the +defaults are fine. Click `Create fork` and you'll have your own private copy. +Use that copy for cloning the code to your personal machine. + +If there are new commits to the primary Cumulus Library repo, you'll see a note +about this just under the green `Code` button - you can click `sync fork` to get +any changes and apply them to your copy, after which you can pull them down to +machines your team is using to develop. + +## Creating a new study + +Studies are automatically detected by Cumulus Library when they are placed in the +`/cumulus-library/studies` directory, assuming they have a manifest file. The +easiest way to make a new study is to copy the template study to a new directory, +which you can do via the command line or via your system's file system GUI, and +rename the folder to something relevant to your study (we'll use `my_study` for +this document. The folder name is the same thing you will supply to the +`cumulus-library` command as a target when you want to bulk update data. + +Once you've made a new study, the `manifest.toml` is the place you let cumulus +library know how you want your study to be run against the remote database. The +template manifest has comments describing all the possible configuration parameters +you can supply, but for most studies you'll have something that looks like this: + +``` +study_prefix = "my_study" + +[sql_config] +file_names = [ + "my_setup.sql", + "my_cross_tables.sql", + "my_counts.sql", +] + +[export_config] +export_list = [ + "my_study__counts_month", +] +``` + +Talking about what these three sections do: + - `study_prefix` is the expected prefix you will be adding to all tables your + study creates. We'll autocheck this to make sure in several places - this helps + to guarantee another researcher doesn't have a study artifact that collides + with yours. + - `sql_config.file_names` is a list of sql files, in order, that your study should + create. We recommend having one sql file per topic. They should all be in the same + location as your manifest file. + - `export_config.export_list` defines a list of tables to write to csv/parquet when + data is exported. Cumulus is designed with the idea of shipping around aggregate + counts to reduce exposure of limited datasets, and so we recommend only exporting + count tables. + +### Writing SQL queries + +Most users have a workflow that looks like this: + - Write queries in the [AWS Athena console](https://aws.amazon.com/athena/) while + you are exploring the data + - Move queries to a file as you finalize them + - Build your study with the CLI to make sure your queries load correctly. + +We use [sqlfluff](https://github.com/sqlfluff/sqlfluff) to help maintain a consistent +style across many different SQL query authors. There are two commands you may want to +run inside your study's directory: + - `sqlfluff lint` will show you any variations from the expected styling rules + - `sqlfluff fix` will try to make your autocorrect your queries to match the + expected style + +In order to both make your queries parsable to other humans, and to have sqlfluff +be maximally helpful, we have a few requirements and some suggestions for query +styling. + +**Hard Requirement** + - All your tables **must** start with a string like `my_study__`. Cumulus Library + will notify you if you try to create a table that doesn't match this pattern. + +**Requirements for accepting PRs** + - Count tables MUST use the CUBE function to create powersets of data. See the + [CUBE section of groupby](https://prestodb.io/docs/current/sql/select.html#group-by-clause) + for more information about this groupby type. The core and template projects + provide an example of its usage. + - For PHI reverse identification protection, exclude rows from count tables if + they have a small number of members, i.e. less than 10. + +**Recommended** + - You may want to select a SQL style guide as a reference. + [Gitlab's data team](https://about.gitlab.com/handbook/business-technology/data-team/platform/sql-style-guide/) + has an example of this, though their are other choices. + - Don't implicitly reference columns tables. Either use the full table name, + or give the table an alias, and use that any time you are referencing a column. + - Don't use the * wildcard in your final tables. Explictly list the columns + with table name/alias - sqlfluff has a hard time inferring what's going on otherwise. + - We are currently asking for all caps for sql keywords like SELECT and 4 space + nesting for queries. `sqlfluff fix` will apply this for you, but it may be easier + to find other problems if you lightly adhere to this from the start. + - Agggregate count tables should have the first word after the study prefix be + `count`, and otherwise the word `count` should not be used. + - Creating a table called `my_study__meta_date` with two columns, `min date` and + `max date`, and populating it with the start and end date of your study, will + allow other Cumulus tools to detect study date ranges, and otherwise bakes the + study date range into your SQL for future reference. + +## Sharing studies + +If you want to share your study as part of a publication, you can open a PR - one +of the optional targets will be the main `cumulus-library-core` repo, and the +maintainers will be notified of it. If you write a paper using the Cumulus library, +please cite us. \ No newline at end of file diff --git a/docs/first-time-setup.md b/docs/first-time-setup.md new file mode 100644 index 00000000..073bcf56 --- /dev/null +++ b/docs/first-time-setup.md @@ -0,0 +1,86 @@ + + +# First Time Setup + +## Installation + +As a prerequesite, you'll need a copy of python 3.9 or later installed on +your system, and you'll need access to an account with access to AWS cloud services. + +If you are using the library just to execute existing studies, you can install +the Cumulus library CLI with `pip install -e .`. + +If you are going to be designing queries, you should instead install cumulus with +the dev dependencies, with `pip install -e .[dev]`. After you've done this, you +should install the pre-commit hooks with `pre-commit install`, so that your queries +will have linting automatically run. + +You will also need to make sure your machine is configured correctly to talk to AWS +services. See the [AWS setup guide](./aws-setup.md) for more information on this. + +## Command line usage + +Installing adds a `cumulus-library` command for interacting with +athena. There are two primary modes most users will be interested in: + +- `--build` will create new study tables, replacing previously created versions +(more information on this in [Creating studies](./creating-studies.md)). +- `--export` will output the data in the tables to both a `.csv` and +`.parquet` file. The former is intended for human review, while the latter is +more compressed and should be preferred (if supported) for use when transmitting +data/loading data into analytics packages. + +By default, all available studies will be used by these commands, but you can use +or `--target` to specify a specific study to be run. You can use it multiple +times to configure several studies in order. The `vocab`, in particular, can take a +bit of time to generate, so we recommend using targets after your initial configuration. + +There are several other options - use `--help` to get a detailed list of commands. + +## Example usage: building and exporting the template study + +Let's walk through configuring and creating a template study in Athena. With +this completed, you'll be ready to move on to [Creating studies](./creating-studies.md)). + +- First, follow the instructions in the readme of the +[Sample Database](https://github.com/smart-on-fhir/cumulus-library-sample-database), +if you haven't already. Our follown steps assume you use the default names and +deploy in Amazon's US-East zone. +- Configure your system to talk to AWS as mentioned in the [AWS setup guide](./aws-setup.md) +- Now we'll build the tables we'll need to run the template study. The `vocab` +study creates mappings of system codes to strings, and the `core` study creates +tables for commonly used base FHIR resources like `Patient` and `Observation` +using that vocab. To do this, run the following command: +``` +./cumulus_library/cli.py --build --target vocab --target core +``` +This usually takes around five minutes, but once it's done, you won't need build +`vocab` again unless there's a coding system addition, and you'll only need to build +`core` again if data changes (and only if you're using the synthetic dataset). You +should see some progress bars like this while the tables are being created: +``` +Uploading vocab__icd data... ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 100% 0:00:00 +Creating vocab study in db... ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100% 0:00:00 +Creating core study in db... ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100% 0:00:00 +``` +- Now, we'll build the template study. Run a very similar command to target `template`: +``` +./cumulus_library/cli.py --build --target template +``` +This should be much faster - these tables will be created in around 15 seconds. +- You can use the AWS Athena console to view these tables directly, but you can also +download designated study artifacts. To do the latter, run the following command: +``` +./cumulus_library/cli.py --build --target export +``` +And this will download some example count aggregates to the `data_export` directory +inside of this repository. There's only a few bins, but this will give you an idea +of what kind of output to expect. Here's the first few lines: +``` +cnt,influenza_lab_code,influenza_result_display,influenza_test_month +102,,, +70,,NEGATIVE (QUALIFIER VALUE), +70,"{code=92142-9, display=Influenza virus A RNA [Presence] in Respiratory specimen by NAA with probe detection, system=http://loinc.org}",, +70,"{code=92141-1, display=Influenza virus B RNA [Presence] in Respiratory specimen by NAA with probe detection, system=http://loinc.org}",, +69,"{code=92141-1, display=Influenza virus B RNA [Presence] in Respiratory specimen by NAA with probe detection, system=http://loinc.org}",NEGATIVE (QUALIFIER VALUE), +``` \ No newline at end of file diff --git a/docs/sample-iam-policy.json b/docs/sample-iam-policy.json new file mode 100644 index 00000000..e31bba08 --- /dev/null +++ b/docs/sample-iam-policy.json @@ -0,0 +1,116 @@ +{ + "Version": "2012-10-17", + "Statement": [ + { + "Effect": "Allow", + "Action": [ + "glue:BatchGetCrawlers", + "glue:GetCrawler", + "glue:GetCrawlerMetrics", + "glue:GetCrawlers", + "glue:ListCrawls", + "glue:ListCrawlers", + "glue:StartCrawler", + "glue:StopCrawler" + ], + "Resource": [ + "*" + ] + }, + { + "Effect": "Allow", + "Action": [ + "glue:GetDatabase", + "glue:CreateDatabase" + ], + "Resource": [ + "arn:aws:glue:*:*:catalog", + "arn:aws:glue:*:*:database/---your database name---" + ] + }, + { + "Effect": "Allow", + "Action": [ + "glue:CreatePartition", + "glue:CreateTable", + "glue:DeletePartition", + "glue:DeleteTable", + "glue:GetDatabase", + "glue:GetDatabases", + "glue:GetPartition", + "glue:GetPartitions", + "glue:GetTable", + "glue:GetTables", + "glue:UpdatePartition", + "glue:UpdateTable" + ], + "Resource": [ + "arn:aws:glue:*:*:catalog", + "arn:aws:glue:*:*:database/---Your database name---", + "arn:aws:glue:*:*:table/*" + ] + }, + { + "Effect": "Allow", + "Action": [ + "athena:BatchGetNamedQuery", + "athena:BatchGetPreparedStatement", + "athena:BatchGetQueryExecution", + "athena:CreateNamedQuery", + "athena:CreatePreparedStatement", + "athena:DeleteNamedQuery", + "athena:DeletePreparedStatement", + "athena:GetDatabase", + "athena:GetDataCatalog", + "athena:GetNamedQuery", + "athena:GetPreparedStatement", + "athena:GetQueryExecution", + "athena:GetQueryResults", + "athena:GetQueryRuntimeStatistics", + "athena:GetTableMetadata", + "athena:GetWorkGroup", + "athena:ListDatabases", + "athena:ListDataCatalogs", + "athena:ListEngineVersions", + "athena:ListNamedQueries", + "athena:ListPreparedStatements", + "athena:ListQueryExecutions", + "athena:ListTableMetadata", + "athena:ListTagsForResource", + "athena:ListWorkGroups", + "athena:StartQueryExecution", + "athena:StopQueryExecution", + "athena:UpdateNamedQuery", + "athena:UpdatePreparedStatement" + ], + "Resource": [ + "arn:aws:athena:*:*:workgroup/cumulus*" + ] + }, + { + "Action": [ + "s3:ListBucket", + "s3:GetObject", + "s3:PutObject", + "s3:PutObjectAcl", + "---Any S3 secretsmanager/KMS key info---" + ], + "Resource": [ + "arn:aws:s3:::---Your bucket name---", + "arn:aws:s3:::---Your bucket name---/*", + "---Any secretsmanager/KMS ARNs---" + ], + "Effect": "Allow" + }, + { + "Effect": "Allow", + "Action": [ + "s3:GetBucketLocation" + ], + "Resource": [ + "arn:aws:s3:::---Your bucket name---", + "arn:aws:s3:::---Your bucket name---/*" + ] + } + ] +} \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..d0194f23 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,74 @@ +[project] +name = "cumulus-library" +version = "0.1.0" +# In order to support 3.12, we wil need to refactor out load_module, which is +# targeted for deprecation in that version. +requires-python = ">= 3.9, <3.12" +dependencies = [ + "ctakesclient >= 1.3", + "fhirclient >= 4.1", + "Jinja2 > 3", + "pandas <2, >=1.5.0", + "pyarrow >= 11.0", + "pyathena >= 2.23", + "requests >= 2.28", + "rich >= 13.2", + "toml >= 0.10" +] +description = "SQL generation for cumulus clinical studies" +readme = "README.md" +license = { text="Apache License 2.0" } +classifiers = [ + "License :: OSI Approved :: Apache Software License", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3", + "Topic :: Software Development :: Libraries :: Python Modules", +] + +[project.scripts] +cumulus-library = "cumulus_library.cli:main" + +[build-system] +requires = ["flit_core >=3.4,<4"] +build-backend = "flit_core.buildapi" + +[project.optional-dependencies] + +dev = [ + "black", + "pylint", + # There are some bugfix actions occuring in sqlfluff that are currently + # breaking autoformatting for CTAS queries - pinning until this shakes out + "sqlfluff == 2.0.2" +] + +test = [ + "pytest", +] + +[tool.sqlfluff.core] +templater = "jinja" +dialect = "athena" +sql_file_exts = ".sql,.sql.jinja" +# this rule overfires on athena nested arrays +exclude_rules="references.from,structure.column_order" +max_line_length = 88 + +[tool.sqlfluff.indentation] +template_blocks_indent = false + +[tool.sqlfluff.rules.layout.long_lines] +ignore_comment_lines = true + +[tool.sqlfluff.rules.capitalisation.keywords] +capitalisation_policy = "upper" + +[tool.sqlfluff.templater.jinja.context] +schema_name = "test_schema" +table_name = "test_table" +view_or_table_name = "test_view_or_table" +view_or_table = "TABLE" +prefix = "Test" +dataset = [["foo","foo"],["bar","bar"]] +table_cols = ["a","b"] +col_type_list = ["a string","b string"] diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/test_cli.py b/tests/test_cli.py new file mode 100644 index 00000000..2f2fe34b --- /dev/null +++ b/tests/test_cli.py @@ -0,0 +1,46 @@ +import pytest + +from unittest import mock + +import botocore + +from cumulus_library import cli + +""" +def test_cli_invalid_study(): + with pytest.raises(SystemExit): + builder = cli.main(cli_args=["-t", "foo"]) +""" + + +@mock.patch("pyathena.connect") +@pytest.mark.parametrize( + "args", + [ + ([]), + (["-t", "all"]), + ], +) +def test_cli_no_reads_or_writes(mock_connect, args): + with pytest.raises(SystemExit): + builder = cli.main(cli_args=args) + builder.cursor.execute.assert_called_once() + + +@mock.patch("pyathena.connect") +@pytest.mark.parametrize( + "args,cursor_calls,pandas_cursor_calls", + [ + (["-t", "all", "-b", "-d", "test"], 139, 0), + (["-t", "vocab", "-b", "-d", "test"], 119, 0), + (["-t", "core", "-b", "-d", "test"], 21, 0), + (["-t", "all", "-e", "-d", "test"], 1, 7), + (["-t", "core", "-e", "-d", "test"], 1, 6), + (["-t", "core", "-e", "-b", "-d", "test"], 21, 6), + ], +) +def test_cli_executes_queries(mock_connect, args, cursor_calls, pandas_cursor_calls): + mock_connect.side_effect = [mock.MagicMock(), mock.MagicMock()] + builder = cli.main(cli_args=args) + assert builder.cursor.execute.call_count == cursor_calls + assert builder.pandas_cursor.execute.call_count == pandas_cursor_calls diff --git a/tests/test_data/__init__.py b/tests/test_data/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/test_data/count_synthea_patient.csv b/tests/test_data/count_synthea_patient.csv new file mode 100644 index 00000000..ce59d3f4 --- /dev/null +++ b/tests/test_data/count_synthea_patient.csv @@ -0,0 +1,254 @@ +cnt,gender,age,race_display +1103,,, +1008,,,Not Hispanic or Latino +980,,,White +552,male,, +551,female,, +511,male,,Not Hispanic or Latino +500,female,,White +497,female,,Not Hispanic or Latino +480,male,,White +95,,,Hispanic or Latino +65,,,Black or African American +54,female,,Hispanic or Latino +43,male,,Black or African American +41,male,,Hispanic or Latino +22,,16, +22,female,,Black or African American +21,,74,Not Hispanic or Latino +21,,11, +21,,46, +21,,74,White +21,,74, +21,,46,Not Hispanic or Latino +20,,16,Not Hispanic or Latino +20,,2, +20,,,Asian +20,,22, +19,,48, +19,,2,Not Hispanic or Latino +19,,21, +19,,40, +19,,40,Not Hispanic or Latino +19,,20, +19,,46,White +19,,20,Not Hispanic or Latino +19,,14, +18,,16,White +18,,10,White +18,,48,Not Hispanic or Latino +18,,32, +18,,62, +18,,11,White +18,,62,Not Hispanic or Latino +18,,10, +18,,22,Not Hispanic or Latino +18,,11,Not Hispanic or Latino +17,,62,White +17,,63, +17,,14,Not Hispanic or Latino +17,,10,Not Hispanic or Latino +17,,53,White +17,,53, +17,,14,White +17,,32,White +17,,65,Not Hispanic or Latino +17,,20,White +17,,65, +16,,88,White +16,male,46,Not Hispanic or Latino +16,,22,White +16,,24,Not Hispanic or Latino +16,,40,White +16,,75, +16,,53,Not Hispanic or Latino +16,,4, +16,,88, +16,,24,White +16,,24, +16,male,46, +16,,48,White +16,,32,Not Hispanic or Latino +16,,33, +16,,61,Not Hispanic or Latino +16,,88,Not Hispanic or Latino +16,,61, +15,,3, +15,,25, +15,,43, +15,,4,Not Hispanic or Latino +15,,,Unknown +15,,33,White +15,male,46,White +15,,51, +15,,25,White +15,,65,White +15,,2,White +15,,58, +15,,21,White +14,,3,White +14,,63,White +14,,25,Not Hispanic or Latino +14,,5, +14,,,Native Hawaiian or Other Pacific Islander +14,,4,White +14,,5,White +14,,33,Not Hispanic or Latino +14,,51,White +14,female,75,White +14,,37, +14,,58,Not Hispanic or Latino +14,,27, +14,,75,White +14,,27,White +14,female,75, +14,,21,Not Hispanic or Latino +13,female,16,Not Hispanic or Latino +13,,18, +13,,50, +13,,75,Not Hispanic or Latino +13,,1, +13,,51,Not Hispanic or Latino +13,,82,White +13,,59, +13,,8, +13,female,75,Not Hispanic or Latino +13,,41, +13,,58,White +13,,18,Not Hispanic or Latino +13,,30, +13,,82, +13,,82,Not Hispanic or Latino +13,,15, +13,,3,Not Hispanic or Latino +13,,67, +13,female,16, +13,,27,Not Hispanic or Latino +13,,63,Not Hispanic or Latino +12,,66, +12,,43,Not Hispanic or Latino +12,,52,White +12,,8,White +12,,31,Not Hispanic or Latino +12,,30,White +12,,61,White +12,male,82,Not Hispanic or Latino +12,,44, +12,,31, +12,female,,Asian +12,male,82,White +12,,38, +12,,19,Not Hispanic or Latino +12,,9,Not Hispanic or Latino +12,,50,White +12,,64,Not Hispanic or Latino +12,,67,Not Hispanic or Latino +12,,37,White +12,,19, +12,,52, +12,,42,White +12,,9, +12,,64,White +12,male,2,Not Hispanic or Latino +12,,50,Not Hispanic or Latino +12,,42, +12,,64, +12,,8,Not Hispanic or Latino +12,male,11, +12,,59,Not Hispanic or Latino +12,,43,White +12,,6, +12,,6,Not Hispanic or Latino +12,,52,Not Hispanic or Latino +12,,5,Not Hispanic or Latino +12,,36, +12,male,82, +12,,1,White +12,,12, +12,,41,White +12,male,2, +11,,45, +11,,15,White +11,female,88,White +11,female,20, +11,,78, +11,,36,White +11,male,74,Not Hispanic or Latino +11,female,16,White +11,,35, +11,,45,Not Hispanic or Latino +11,female,40,Not Hispanic or Latino +11,,29, +11,,45,White +11,,68, +11,,67,White +11,male,48,Not Hispanic or Latino +11,female,63, +11,male,22, +11,,41,Not Hispanic or Latino +11,,7,Not Hispanic or Latino +11,,66,White +11,,37,Not Hispanic or Latino +11,female,88, +11,,55, +11,male,74,White +11,,30,Not Hispanic or Latino +11,,44,Not Hispanic or Latino +11,,6,White +11,,47,White +11,male,74, +11,female,88,Not Hispanic or Latino +11,,29,Not Hispanic or Latino +11,female,20,Not Hispanic or Latino +11,,12,Not Hispanic or Latino +11,,18,White +11,female,40, +11,,13, +11,,47, +11,male,11,Not Hispanic or Latino +11,male,22,Not Hispanic or Latino +11,,12,White +11,male,48, +11,,38,White +11,,7, +11,,77, +11,,15,Not Hispanic or Latino +11,,78,White +10,,69,Not Hispanic or Latino +10,,29,White +10,,26, +10,,26,White +10,,78,Not Hispanic or Latino +10,female,51, +10,female,33, +10,,39, +10,female,20,White +10,male,,Unknown +10,male,14, +10,,68,Not Hispanic or Latino +10,male,10, +10,female,74,Not Hispanic or Latino +10,male,10,Not Hispanic or Latino +10,female,74,White +10,male,65, +10,female,40,White +10,,57, +10,,69, +10,,17, +10,,17,Not Hispanic or Latino +10,,36,Not Hispanic or Latino +10,,66,Not Hispanic or Latino +10,,56, +10,,42,Not Hispanic or Latino +10,male,11,White +10,,35,White +10,,1,Not Hispanic or Latino +10,,55,Not Hispanic or Latino +10,female,21, +10,,57,White +10,male,65,Not Hispanic or Latino +10,female,74, +10,,7,White +10,,69,White +10,male,10,White +10,,68,White diff --git a/tests/test_data/count_synthea_patient.parquet b/tests/test_data/count_synthea_patient.parquet new file mode 100644 index 0000000000000000000000000000000000000000..cd71471e68aafd3438318dd098cac7ecf84bda4e GIT binary patch literal 3967 zcmcJSdu&tJ8NkoAuN}K2%rUvfPBXZ5gKJ7iZ6^+OppNv5KLtVy*V*+Jd?io!58H`ObH~?>k8bn5dH?sk3V8pG1V}qL2}xD}-(zi8KUxU9G7j(fbWL z(yr1Q&;!u;7XgjGHt5h_fL{Qk`pqO_pwR_v1GWMtfC8F;4S*471Ps7ufb~EFP~V{2 zwGJuYJ++!blth)-}DlT66I#wbkMaYYT~4K<-@ppP*N9{ZQy zIa&VmH~zk9-f+Rp9e4V-zWiJ?y!AKF8#c5yHB(ko+s0w@W0pv>?HRI#A}wwM(pt=F zPO4BU(+#!hb&Y9(w7sOV>HeE@SlZxD5v4*<7@$H3`mK~bf`{RTjXl_+JS*~AsIxq7 z!PNcKfn|1g9aY;&EHP`988Ef|RT@goKfWGCbp$!P32kKvm5x^L(H*-q?_=LpoxMq% z))S4X57xa_Y8fGH->hq)>T6bM$9O5jmlVUU5vD&8w&%3A%bJ$en$|SnvX1%=8KD*k z*@iPDX+U}ch4m04>%f`qfC|9QcK|p5>;Mh|?C^U48rTgy3b+9rI0?WE>;*{RKHw2R z4OjpiR2@J!paHf3_X0SmTmS(?ft`R3zyY`kz=7riyg(59kG&0Z0qvfk18q&*1N2rNX}diJJOAz09R%U7{v5 z>xf#*WVf#|3c^1U*Z)94-GVe9-aJ5PZe1NF)VEF%P&`P~Ju*9cz@V!~^K(avduZbm z^QyBBNAui;({%3PrY~Idy*b-TpJ14|#a;Hsr!of)47W9YPxI`H!`kNh`Lmw=E#~!4 z4*f9FeeVz6?(m@9r$WK|n@`wY{{F>Q;|uNf*^4K>dnUN;+1|HPPo-Yjs5|=m^TS`= zcpNRf8JrvR+lCHiPaD3{bLIuB{-DS=k{LSeQeXd zfm4=L_tkg*_7-uZt8dHVz^_b4deNNW*3q|;3+4?!^S<$f!Fc&YlSjD<+oEw<3bJFo z5~-IOOc(UF*BWf^;T-&rFL2EeenmwcS4F7xas+>gSTup={z8Qg3gsdz2^?K0(Gj*H zNCgc@;yIzhL%JgWW<*<{_KGYwLAdNpwj^+@L^F9_qbGJ9W6A<6)xm@jX+kPYNn4@W z58F)gbda551&|Uuhxb)-e2E@lIUx(0LS>Pa(-BdZ2F*~+WE%e(R082`OU8hC(k{4^LMWfUHkE_s~3O$#p=PUo7CHMbGeg85jjT^ z23l_<85Qb#ruE2%)*zyF2zxh)BYSbWhX4r&S;&=2{^rZ7-RZo{ahu z%kiTbxE+z5QQYxc(sYTm&6{jjHnglh=vudK+3!YXZJEo#J4eC0KyFdVFD#shTg&+!+qt9?tU>Hp5m}*jB2F;^S@fk{abV-D*us<13U^ zA^8g#ezm$ndYtFvGk=^u2-wxiYJ)2@{Xb?c&&JjIR!UbW{vS+~om=ABN}&X|eAp@q z=@MI-!Hz7>u%%LA3ZG(!8M)ct>yreONgH^SwJld9j)b#5xnM{>gMOR!K{J!al*9P7F2dH0uZV38NwF#$@1IP; z`LI1}oM|$dFN(>I+L_}qM=~DGWdgnU9;=!7bU6!m$E&pZW?qbsAnW)*f`iyyxz~*D)nUC>dE%s(oala$o z5yJNfKAkQmrErduCgeDQxPW$eGBYFJqbrpNA7bO4s_e7z-s#9VQ|6|H% zllqHkSEsy3-%zJBGTtX-<$Ouv{HWb|AGGnHuK)$Z;-W`RLdZ9U;RhgJae57o$SWba za7Qk2ffJbthI2_*ESn05hq%CWj+e#0GEVh_ch-mGQAl$5mexbcGE4wsWYCwy^JVb} zE_+65eXlnvk8-$_^I7gP0bJdVd1%6U2NgL?0zGilBv{E{0~H}|;4N};y>dU